From f300bdf1683615d9d06082f6cb751a2c733f4f94 Mon Sep 17 00:00:00 2001 From: "marcin p. joachimiak" <4625870+realmarcin@users.noreply.github.com> Date: Thu, 24 Sep 2026 19:21:47 -0700 Subject: [PATCH 01/16] Add a skill for refreshing the X-Mech page from the Mechs as they are now There was no procedure for this, only the pipeline reference in _fleet/README.md, and the last refreshes show what that costs: a census taken from one checkout and card stats from another, a census that read a shared checkout's uncommitted files, and figures on five other pages left behind the cards. The skill pins every Mech and CLAW once, builds a sparse shared snapshot at those commits instead of pulling the shared checkouts, runs the pipeline canary-first with the side effects checked after each stage, re-checks every hand-curated claim against the live sites and the pinned repos, propagates the figures to every page that repeats them, rewrites the provenance record, and stops at a reviewed PR. It keeps the methodology fixed; census scope changes (#84, #87) stay out. Co-Authored-By: Claude Opus 5.5 (1M context) --- .claude/skills/update-xmech-page/SKILL.md | 228 ++++++++++++++++++++++ 1 file changed, 228 insertions(+) create mode 100644 .claude/skills/update-xmech-page/SKILL.md diff --git a/.claude/skills/update-xmech-page/SKILL.md b/.claude/skills/update-xmech-page/SKILL.md new file mode 100644 index 0000000..dcea060 --- /dev/null +++ b/.claude/skills/update-xmech-page/SKILL.md @@ -0,0 +1,228 @@ +--- +name: update-xmech-page +description: Refresh the X-Mech Suite page (/mechs/) and every page that repeats its figures from each Mech's current GitHub main and live GitHub Pages site — full fleet pipeline at pinned revisions, a verified re-check of every hand-curated claim, propagation to the other pages, provenance, and a reviewed PR. Use when asked to update, refresh or re-sync the X-Mech page or its numbers. Not for changing what the page measures (new census vocabularies, adding a Mech to the census), and never a licence to merge. +category: workflow +requires_database: false +requires_internet: true +version: 1.0.0 +--- + +# Update the X-Mech page + +Refresh `/mechs/` so every claim on it is true of the Mechs **as they are now**: +each Mech's `main` on GitHub and its live GitHub Pages browser. A refresh keeps +the page's methodology fixed and changes only the facts. + +The page has two layers, and a refresh must redo both from one moment in time: + +| layer | what | refreshed by | +|---|---|---| +| **derived** | census heatmap, overlap chords, `assets/fleet/`, reviewed and merged-PR counts, the stat strip, capability table | the pipeline in `scripts/fleet/`, run over pinned checkouts | +| **hand-curated** | card headline figures and their secondary figure, tag lines, vocab chips, graph panels (`MECHS`), cross-references (`XREFS` and the template list), kg-microbe ties (`HUB`), Explore links | a person or agent, re-checked claim by claim against the live sites and the pinned repos | + +Read `_fleet/README.md` first. It is the pipeline reference; this skill is the +procedure around it. + +**When NOT to use:** adding prefixes to the census or columns to the heatmap +(#84), adding a Mech to the census (#87), or redesigning the page. Those change +what the page measures, need their own decision, and belong in their own PR. +A refresh that also changes methodology cannot be reviewed, because every number +moves for two reasons at once. + +## Ground rules + +- **One set of revisions for everything.** Pin every Mech and CLAW once, at the + start, and derive every number from those commits. The census, the stats and + the site audit each record the revision they read, and + `RefreshProvenanceTests` fails if they disagree. A partial rerun is the failure + this exists to catch: a census from one checkout and stats from another put 364 + and 396 CommunityMech records on the same page. +- **Never pull or reset the shared checkouts** under `MECHS_ROOT`. Other sessions + work in them; ProteinTraitsMech has carried tens of thousands of uncommitted + files. Build a snapshot from their object stores instead (step 2), which reads + them and writes nothing into them. +- **`mechs.md` is generated.** Edit `_fleet/`, never `mechs.md`. +- **The three numbers** differ legitimately; know which one a figure is before + changing it. Card figures are *published-site totals*. The census and stats are + *pinned-checkout counts*. They disagree whenever a Mech's site lags its repo, + and the page says so rather than forcing them equal. +- **Evidence for every changed figure.** A URL or `path@sha` and a verbatim + excerpt. "Looks right" is not a source. +- **Branch, PR, adversarial review, issues from the review, triage** — per the + global git workflow. **Merging is the user's call**, every time. + +## Procedure + +Work from the site root. Put the snapshot and logs in the session scratchpad, +here `$SNAP`. + +### 1. Branch and pin + +```bash +git switch -c update/xmech-refresh-$(date +%Y%m%d) main +``` + +For each Mech in `_fleet/data/manifest.json` plus `culturebotai-claw`: +`git -C "$MECHS_ROOT/" fetch -q origin`, take `origin/main`, and +cross-check it against `gh api repos/CultureBotAI//commits/main --jq .sha`. +The repository name is not always the Mech name (`proteintraitsmech`). Write the +pins to `$SNAP/revisions.json` with the pin time. Corpora move within minutes, so +pin once and do not re-pin mid-run. + +### 2. Snapshot at the pins + +A sparse, shared clone per Mech, checked out detached at its pin: + +```bash +git clone -q --shared --no-checkout "$MECHS_ROOT/$m" "$SNAP/mechs/$m" +git -C "$SNAP/mechs/$m" sparse-checkout set --cone src +git -C "$SNAP/mechs/$m" checkout -q --detach "$sha" +``` + +The directories each Mech needs are its `roots.RECORD_GLOBS` directories (plus +`mech_stats.EXTRA_GLOBS` for Mechs outside the census), `src` for the schema that +`mech_stats.py` reads, and HabitatMech's `pages/habitats`, which +`build_subsets.py` matches record links against. About 3 GB and a million +files; TaxonMech and ProteinTraitsMech are most of it. + +macOS ships bash 3.2: no associative arrays, so write the per-Mech directory map +as a `case`, not `declare -A`. + +### 3. Free checks before any scan + +With `MECHS_ROOT=$SNAP/mechs`: + +- `roots.revision(m)` equals the pin and is not `+dirty`, for every Mech; +- every path `roots.record_paths(m)` returns is a file git tracks at the pin. + Compare against `git ls-tree -r -z --name-only ` and NFC-normalize both + sides. **Without `-z`, git quotes non-ASCII paths** and every `α` or `ß` in a + filename reads as a mismatch. + +These catch a wrong pin, a sparse set missing a directory, and a glob sweeping +up files that are not records, before four minutes of scanning. + +### 4. Pipeline, canary first + +Run each stage the same way, in the same environment and from the same launcher, +and verify its output before starting the next. The first stage is the canary: + +```bash +MECHS_ROOT=$SNAP/mechs python3 scripts/fleet/prefix_census.py # ~2-4 min +MECHS_ROOT=$SNAP/mechs python3 scripts/fleet/build_subsets.py # ~2-4 min +python3 scripts/fleet/build_data.py +MECHS_ROOT=$SNAP/mechs python3 scripts/fleet/mech_stats.py # needs gh +python3 scripts/fleet/refresh_manifest.py --claw-root "$SNAP/claw" # CLAW cloned at its pin +``` + +After each, check the side effects, not the exit code: the file changed, it +parses, every census Mech has a row, `_revisions` equals the pins, `files` per +Mech equals the step 3 count, `mech_stats.json` names the same revisions and +counts. Run `build_subsets.py` twice and compare bytes; since #107 two runs over +the same snapshot must be identical, and a difference means a new ordering leak. + +Long scripts piped to `tail` print nothing until they exit. Check the process, +not the empty log. Exit codes through pipes are the last command's, so use +`${PIPESTATUS[0]}` or write to a log file. + +### 5. Re-check the hand-curated layer + +Every hand-curated claim, for every Mech, against its live site and its repo at +the pin. That means the card, the `MECHS` entry, the Explore bullets, `HUB`, both +cross-reference lists, the licence bullet, the Orchestration section, and each +page listed in step 6. For a large fleet this fans out well: one read-only +auditor per Mech, one for fleet-wide claims, one for cross-references, and an +independent skeptic per auditor who re-derives each proposed change and tries to +refute it. Apply only changes that survive, with one editor making all the edits +so shared files do not conflict. + +Traps that have produced wrong figures here: + +- **Meta-refresh roots.** Several `https://culturebotai.github.io//` roots + are client-side redirects that return 200; `curl -L` stops at the shell. Read + the `pages/` or `app/` URL. +- **Runtime counts.** MediaIngredientMech's headline comes from + `data/ingredients.json` and ProteinTraitsMech's from `data/facets.json`. The + static HTML carries a placeholder or a stale fallback. +- **A tile can match nothing.** CultureMech's `app/` landing tile is a legacy + hand-typed figure; `scripts/fleet/check_cards.py` `SOURCES` records where each + card's figure really comes from. Keep `SOURCES` in step with the cards. +- **Site vs repo.** CommunityMech's site counts `kb/communities` while the fleet + glob also takes `data/isolates`, so the two never match. A Mech's site can lag + its repo by a deploy; the card follows the site and the census follows the repo. +- **Schema, not records, says what a record is.** Check a `MECHS` entry's `root` + against the schema's `tree_root`, and its licence against the LICENSE files. +- The two cross-reference lists, `XREFS` in the fragment and the template's list, + must describe the same references. + +### 6. Propagate + +The card figures are repeated across the site. Update every occurrence, and every +"checked on" date and pinned README permalink next to them: + +- `index.md` (X-Mech sentence), `resources.md` (each Mech's section), + `research.md`, `microgrowagents.md`; +- the dedicated pages `culturemech.md`, `mediaingredientmech.md`, + `communitymech.md`; +- `_fleet/README.md` "Published-site refresh" section, retitled to the run date; +- the card-section intro in `_fleet/mechs_template.md`, which states the date the + cards were checked. + +Find stragglers by searching the *old* figures across the whole tree, gitignored +files included (`grep -rn`, not `rg`), excluding `_site/` and generated files. +A page that still states an old figure contradicts `/mechs/`, which is worse than +either being stale alone. + +### 7. Provenance + +Rewrite `_fleet/data/site_audit.json` for the run: per repository the pinned +`sha` and its commit date, the URL each card figure is read from, the figure, the +sha256 of the fetched HTML and of any data file, merged PRs, and short notes on +how the site figure relates to the repo count. Set `checked_at_utc`, +`local_date` and `scope`. The provenance tests require its SHAs to equal the +stats' `source_revision`. + +`../CLAUDE.md` is untracked and above the repository, but it records when the +page was last computed. Update that sentence so the next session is not misled, +and say in the PR that it was changed outside the diff. + +### 8. Assemble and gate + +```bash +python3 scripts/fleet/assemble_page.py +python3 -m unittest discover -s tests -v +python3 scripts/fleet/assemble_page.py --check +python3 scripts/fleet/refresh_manifest.py --claw-root "$SNAP/claw" --check +python3 scripts/fleet/check_cards.py # must report 0 drifted +``` + +Rerun `check_cards.py` immediately before opening the PR and again before any +merge. A Mech can publish between the audit and the merge; the check reads the +live site, so it is the only gate that sees that. + +Emoji headings render with a leading hyphen in their id on GitHub Pages. Verify +anchors against the deployed HTML, not a local kramdown. + +### 9. Read the diff before the PR + +A refresh touches about forty data files. Before opening the PR, account for +every class of change: records per Mech against the pins, edges gained or lost, +the vocabulary tile, per-Mech reviewed and PR deltas, each hand-curated edit +against its evidence. An unexplained change is a finding, not noise. + +### 10. PR, review, issues + +Open the PR with the pins, what changed and why, the canary result, what was +left out and why (methodology issues stay open), and the evidence table for +hand-curated edits. Then review it adversarially as a separate read-only pass, +file every finding as an issue, fix the ones that belong in this PR, and leave +the rest filed with a reason. Report and stop: **do not merge without the user's +explicit go-ahead in the current conversation.** After a merge, delete the branch +locally and remotely, and close issues the PR resolved that GitHub did not +auto-close. GitHub honours only the first number after a closing keyword. + +## Related + +- `_fleet/README.md` — the pipeline and what each script reads and writes. +- `review-open-issues` — read-only triage of the backlog; its "three numbers" and + measurement-discipline sections apply here too. +- `scripts/fleet/check_cards.py` — card-vs-site drift check, nightly in CI. From ac622b6308cb168a3052a39e6f9cbf9bfbaf0e0f Mon Sep 17 00:00:00 2001 From: "marcin p. joachimiak" <4625870+realmarcin@users.noreply.github.com> Date: Thu, 24 Sep 2026 19:21:48 -0700 Subject: [PATCH 02/16] Record the revision each count was read at, and make subset output stable The census and the card stats are written by different scripts, and nothing said which checkout either had read. The last refresh put 364 CommunityMech records in the census and 396 in the stats, and its ProteinTraitsMech census counted 770,276 UniProt references where the commit it claimed holds 657,598, because it read a shared checkout's uncommitted files. roots.revision() now names the commit, marked +dirty for a checkout with local changes; prefix_census.py writes it per Mech under _revisions and mech_stats.py writes it as source_revision. The latter field was already in the committed file, added by hand, so rerunning the script would have dropped it. build_subsets.py wrote two orders that came from iterating a set of strings, which changes with each process's hash seed: tied prefixes in each edge's "by" breakdown (#107) and, not in that issue, the order of the per-cell summary, which reaches subsets_summary.json and the page's embedded data. Both now sort. Two runs over the same snapshot under different seeds are byte-identical. Closes #107. Co-Authored-By: Claude Opus 5.5 (1M context) --- scripts/fleet/build_subsets.py | 14 +++++++++++--- scripts/fleet/mech_stats.py | 8 ++++++-- scripts/fleet/prefix_census.py | 5 ++++- scripts/fleet/roots.py | 22 ++++++++++++++++++++++ 4 files changed, 43 insertions(+), 6 deletions(-) diff --git a/scripts/fleet/build_subsets.py b/scripts/fleet/build_subsets.py index 6b3fd6b..fb37fb0 100644 --- a/scripts/fleet/build_subsets.py +++ b/scripts/fleet/build_subsets.py @@ -185,12 +185,20 @@ def main(): rows.append({"id":t,"l":labels.get(t,""),"na":len(ra),"nb":len(rb),"a":ra[:6],"b":rb[:6]}) rows.sort(key=lambda r:(-(min(r["na"],r["nb"])),-(r["na"]+r["nb"]),r["id"])) byp=collections.Counter(t.split(":")[0] for t in shared) - doc={"a":a,"b":b,"base":{a:MECHS[a]["base"],b:MECHS[b]["base"]},"n":len(shared),"by":dict(byp.most_common()),"terms":rows} + # Counter.most_common() breaks ties by insertion order, which here is + # the iteration order of a set of strings and so changes with every + # process's hash seed. Ties go by name instead, so two runs over the + # same checkouts write the same bytes (#107). + by=dict(sorted(byp.items(), key=lambda kv:(-kv[1], kv[0]))) + doc={"a":a,"b":b,"base":{a:MECHS[a]["base"],b:MECHS[b]["base"]},"n":len(shared),"by":by,"terms":rows} fn=f"{a}--{b}.json"; json.dump(doc,open(f"{OUT}/edges/{fn}","w"),separators=(",",":"),ensure_ascii=False) - summary["edges"][f"{a}|{b}"]={"n":len(shared),"by":dict(byp.most_common()),"ex":[{"id":r["id"],"label":r["l"]} for r in rows if r["l"] and r["id"].split(":")[0] not in CITATION][:3]} + summary["edges"][f"{a}|{b}"]={"n":len(shared),"by":by,"ex":[{"id":r["id"],"label":r["l"]} for r in rows if r["l"] and r["id"].split(":")[0] not in CITATION][:3]} print("edge",a,b,len(shared),os.path.getsize(f"{OUT}/edges/{fn}")//1024,"KB") for m in ORDER: - for p,(n,refs) in idx[m]["cells"].items(): + # Sorted for the same reason: cells are keyed in the order a set of + # prefixes happened to iterate, and that order reaches + # subsets_summary.json and the page's embedded data (#107). + for p,(n,refs) in sorted(idx[m]["cells"].items()): if p in CITATION: continue fn=f"{m}--{p}.json" json.dump({"mech":m,"prefix":p,"base":MECHS[m]["base"],"total":n,"records":refs},open(f"{OUT}/cells/{fn}","w"),separators=(",",":"),ensure_ascii=False) diff --git a/scripts/fleet/mech_stats.py b/scripts/fleet/mech_stats.py index e731cff..2f255e6 100644 --- a/scripts/fleet/mech_stats.py +++ b/scripts/fleet/mech_stats.py @@ -44,7 +44,7 @@ sys.path.insert(0, os.path.dirname(os.path.abspath(__file__))) -from roots import RECORD_GLOBS, mech_root, record_paths +from roots import RECORD_GLOBS, mech_root, record_paths, revision REPO = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) OUT = os.path.join(REPO, "_fleet", "data", "mech_stats.json") @@ -140,8 +140,12 @@ def main() -> None: for name in MEMBERS: records, reviewed, field = review_census(name) prs = old[name]["merged_prs"] if keep_prs and name in old else merged_prs(name) + # The revision is derived here rather than typed into the output: the + # previous refresh added source_revision by hand, so rerunning this + # script would have silently dropped it. mechs.append({"mech": name, "repo": GH_REPO.get(name, name), "records": records, - "reviewed": reviewed, "status_field": field, "merged_prs": prs}) + "reviewed": reviewed, "status_field": field, "merged_prs": prs, + "source_revision": revision(name)}) shown = "not tracked" if reviewed is None else f"{reviewed:,} reviewed" print(f"{name:<22} {records:>8,} records {shown:<16} {prs:>5,} merged PRs") diff --git a/scripts/fleet/prefix_census.py b/scripts/fleet/prefix_census.py index 152daf1..d8ee265 100644 --- a/scripts/fleet/prefix_census.py +++ b/scripts/fleet/prefix_census.py @@ -12,7 +12,7 @@ import json import re -from roots import ORDER, record_paths +from roots import ORDER, record_paths, revision P="CHEBI|pubchem\\.compound|PubChem|METPO|ENVO|NCBITaxon|GO|PR|UniProtKB|UniProt|cas|CAS|MESH|mesh|OBI|PATO|UBERON|FOODON|MICRO|MicrO|OMP|ECO|RO|BFO|IAO|ARO|NCIT|RHEA|KEGG|EC|Pfam|PFAM|InterPro|IPR|MediaDive|mediadive\\.compound|KOMODO|BacDive|GTDB|IMG|GOLD|DSMZ|ATCC|drugbank|DrugBank|PDB|TCDB|SO|CL|GAZ|PO|BTO|EMDB|CHEMBL\\.COMPOUND|PMID|DOI|doi|PHIPO|NCBIfam|ComplexPortal|SNOMED|gold\\.ecosystem|bacdive\\.isolation_source|mibig|MIBiG|npatlas|NPAtlas" rx=re.compile(r"\b("+P+r"):[A-Za-z0-9_.\-]+") @@ -35,6 +35,9 @@ def census(): # so a fresh clone would otherwise make the page claim the corpora were # counted on the day someone cloned it (CultureBotAI.github.io#74). out["_as_of"]=datetime.date.today().isoformat() + # And the revision each corpus was read at, so the census can be checked + # against mech_stats.json, which counts the same files (#85). + out["_revisions"]={m: revision(m) for m in ORDER} return out diff --git a/scripts/fleet/roots.py b/scripts/fleet/roots.py index 13e4a13..9e14230 100644 --- a/scripts/fleet/roots.py +++ b/scripts/fleet/roots.py @@ -17,6 +17,7 @@ import glob import os +import subprocess MECHS_ROOT = os.environ.get( "MECHS_ROOT", "/Users/marcin/Documents/VIMSS/ontology/Mechs" @@ -85,6 +86,27 @@ def record_paths(name: str) -> list[str]: return sorted(paths) +def revision(name: str) -> str | None: + """The commit a checkout's records were read at, or None outside git. + + Recorded by both prefix_census.py and mech_stats.py so the committed + outputs say which revision each number came from, and a test can check the + two were taken from the same one. The census and the stats had drifted to + different checkouts before anything recorded that: 364 CommunityMech + records in one and 396 in the other (CultureBotAI.github.io#85). A checkout + with uncommitted changes is marked, since its records are not that commit's. + """ + root = mech_root(name) + def git(*args: str) -> str: + return subprocess.run(["git", "-C", root, *args], capture_output=True, + text=True, check=True).stdout.strip() + try: + sha = git("rev-parse", "HEAD") + except (subprocess.CalledProcessError, FileNotFoundError): + return None + return sha + ("+dirty" if git("status", "--porcelain") else "") + + def summary() -> str: return "\n".join(f"{name:22s} {len(record_paths(name)):>7,} records" for name in ORDER) From 37c43f29348c45de5ba18b8d13c4769734800ce7 Mon Sep 17 00:00:00 2001 From: "marcin p. joachimiak" <4625870+realmarcin@users.noreply.github.com> Date: Thu, 24 Sep 2026 20:33:14 -0700 Subject: [PATCH 03/16] Fold the first run's lessons into the update skill What the 2026-09-24 run hit that the procedure did not yet say: scanning with resource warnings as errors floods the log because the census never closes its files (#118); git grep -E has no \b; three cross-references pointed the wrong way, so direction needs checking as well as existence; HUB text renders after a prefix; and two sites published new records mid-run. For the last, the skill now says to keep the page a consistent snapshot at the pins and record the live figure in the audit, rather than re-pinning one Mech, which would be a partial rerun. Co-Authored-By: Claude Opus 5.5 (1M context) --- .claude/skills/update-xmech-page/SKILL.md | 25 +++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/.claude/skills/update-xmech-page/SKILL.md b/.claude/skills/update-xmech-page/SKILL.md index dcea060..0eccaee 100644 --- a/.claude/skills/update-xmech-page/SKILL.md +++ b/.claude/skills/update-xmech-page/SKILL.md @@ -124,6 +124,11 @@ Long scripts piped to `tail` print nothing until they exit. Check the process, not the empty log. Exit codes through pipes are the last command's, so use `${PIPESTATUS[0]}` or write to a log file. +Do not run the scans with `-W error::ResourceWarning`. The census opens every +record without closing it (#118), so each of ~450,000 files prints a traceback: +tens of megabytes of log and a much slower scan. The census writes only after +the scan finishes, so killing such a run leaves the committed file untouched. + ### 5. Re-check the hand-curated layer Every hand-curated claim, for every Mech, against its live site and its repo at @@ -152,7 +157,14 @@ Traps that have produced wrong figures here: - **Schema, not records, says what a record is.** Check a `MECHS` entry's `root` against the schema's `tree_root`, and its licence against the LICENSE files. - The two cross-reference lists, `XREFS` in the fragment and the template's list, - must describe the same references. + must describe the same references, and each arrow points at the Mech that + consumes. Check direction as well as existence: three entries once pointed + the wrong way. +- `HUB` entries render after a prefix ("Exports ", "Receives ", "Namespace: "), + so write each `what` to read correctly after it. A Mech with an exporter but no + published release is a namespace tie, not an export. +- `git grep -E` has no `\b`; a pattern using it matches nothing and reads as a + zero count. ### 6. Propagate @@ -178,7 +190,9 @@ Rewrite `_fleet/data/site_audit.json` for the run: per repository the pinned `sha` and its commit date, the URL each card figure is read from, the figure, the sha256 of the fetched HTML and of any data file, merged PRs, and short notes on how the site figure relates to the repo count. Set `checked_at_utc`, -`local_date` and `scope`. The provenance tests require its SHAs to equal the +`local_date`, `pinned_at_utc` and `scope`. Derive the mechanical fields rather +than typing them: the figure through `check_cards.published()`, merged PRs and +revisions from `mech_stats.json`, commit dates from the pins. The provenance tests require its SHAs to equal the stats' `source_revision`. `../CLAUDE.md` is untracked and above the repository, but it records when the @@ -199,6 +213,13 @@ Rerun `check_cards.py` immediately before opening the PR and again before any merge. A Mech can publish between the audit and the merge; the check reads the live site, so it is the only gate that sees that. +When a site has moved past its pin, do not re-pin that one Mech: the census and +overlaps are computed across Mechs, so a single re-pin is a partial rerun, and a +fast Mech moves again before the rerun finishes. Keep the page a consistent +snapshot at the pins, record the live figure as `site_figure_at_check` in that +Mech's `site_audit.json` entry, and say in the PR which cards will show as +drifted. Re-pin everything only if the drift is large enough to mislead. + Emoji headings render with a leading hyphen in their id on GitHub Pages. Verify anchors against the deployed HTML, not a local kramdown. From dd378f4b84b1f117fa869a91b416fe8fe5169a26 Mon Sep 17 00:00:00 2001 From: "marcin p. joachimiak" <4625870+realmarcin@users.noreply.github.com> Date: Thu, 24 Sep 2026 20:33:30 -0700 Subject: [PATCH 04/16] Refresh the X-Mech page from the Mechs as they are on 2026-09-24 Every number was re-derived from one set of revisions: each Mech's GitHub main and CLAW's, pinned once and read from sparse clones of the shared checkouts, never their working trees. Several of those lagged their remotes by up to 121 commits, and ProteinTraitsMech's carried 45,049 uncommitted files. Derived layer. The census, subsets, fleet data and card stats were regenerated at the pins, and the manifest snapshot advanced to CLAW's pin (semantically unchanged). The census now names its revisions, and RefreshProvenanceTests pins the census, the stats and the site audit to the same commits and record counts. On the old data that test fails for exactly the known partial rerun, 364 vs 396 CommunityMech records; each of its four invariants was mutation-tested. The #105 citation filter takes effect: 379 citation matches leave the edge weights and all 36 edges survive. The previous census's ProteinTraitsMech counts had been read from a dirty checkout (770,276 UniProt references where the revision the last audit pinned holds 657,598), so the lower figures are a correction. Hand-curated layer. Twelve read-only auditors checked 533 claims against the live sites and the pinned repositories; an independent skeptic re-derived each proposed change, and a second round verified what the first round had missed. Beyond the moved figures (CommunityMech 422 and 15 categories, TraitMech 763, CellStructureMech 542, MediaIngredientMech 2,953 / 2,611 mapped, CultureMech 6,288, ProteinTraitsMech 429,293): - three cross-references pointed away from the consumer and now point at it; three new ones are implemented upstream (TraitMech into ProteinTraitsMech, TraitMech and HabitatMech into TaxonMech), and the list now matches XREFS; - the kg-microbe ties claimed exports that do not exist: only MediaIngredientMech feeds the graph, CultureMech and CommunityMech have exporters but no release, and TraitMech receives embeddings rather than exporting SSSOM; - "ENVO-grounded", "a superset of TraitMech's node vocabulary", "one node vocabulary", "content-hashed CURIE" and "evidence with PMIDs or DOIs" were fleet-wide generalizations the sources contradict, and now say what holds; - CultureMech's pages/ index is live again, so its Browse link and card cite it. The figures are propagated to every page that repeats them, and the three dedicated pages' permalinks move to the pins (all 33 anchors checked). CellStructureMech (544) and TraitMech (764) published after the pins; their cards keep the pinned figures and site_audit.json records what the sites showed. Closes #85, #113. Co-Authored-By: Claude Opus 5.5 (1M context) --- .claude/skills/review-open-issues/SKILL.md | 4 +- _fleet/README.md | 75 +++-- _fleet/data/fleet_data.json | 2 +- _fleet/data/manifest.json | 4 +- _fleet/data/mech_stats.json | 58 ++-- _fleet/data/prefix_census.json | 104 ++++--- _fleet/data/site_audit.json | 254 ++++++++-------- _fleet/data/subsets_summary.json | 283 +++++++++--------- _fleet/fleet_fragment.html | 51 ++-- _fleet/mechs_template.md | 52 ++-- .../fleet/cells/CellStructureMech--CHEBI.json | 2 +- assets/fleet/cells/CellStructureMech--GO.json | 2 +- .../cells/CellStructureMech--InterPro.json | 2 +- .../cells/CellStructureMech--NCBITaxon.json | 2 +- .../fleet/cells/CellStructureMech--PDB.json | 2 +- .../cells/CellStructureMech--UniProt.json | 2 +- assets/fleet/cells/CommunityMech--CHEBI.json | 2 +- assets/fleet/cells/CommunityMech--ENVO.json | 2 +- assets/fleet/cells/CommunityMech--GO.json | 2 +- assets/fleet/cells/CommunityMech--GTDB.json | 2 +- .../fleet/cells/CommunityMech--NCBITaxon.json | 2 +- assets/fleet/cells/CultureMech--CHEBI.json | 2 +- assets/fleet/cells/CultureMech--FOODON.json | 2 +- .../fleet/cells/CultureMech--NCBITaxon.json | 2 +- assets/fleet/cells/CultureMech--UBERON.json | 2 +- .../fleet/cells/MediaIngredientMech--CAS.json | 2 +- .../cells/MediaIngredientMech--CHEBI.json | 2 +- .../cells/MediaIngredientMech--FOODON.json | 2 +- .../cells/MediaIngredientMech--UBERON.json | 2 +- .../cells/ProteinTraitsMech--NCBITaxon.json | 2 +- .../fleet/cells/ProteinTraitsMech--PATO.json | 2 +- assets/fleet/cells/TraitMech--METPO.json | 2 +- assets/fleet/cells/TraitMech--NCBITaxon.json | 2 +- .../edges/AntibioticMech--CultureMech.json | 2 +- .../AntibioticMech--MediaIngredientMech.json | 2 +- .../CellStructureMech--AntibioticMech.json | 2 +- .../edges/CellStructureMech--CultureMech.json | 2 +- ...ellStructureMech--MediaIngredientMech.json | 2 +- ...CellStructureMech--NaturalProductMech.json | 2 +- .../CellStructureMech--ProteinTraitsMech.json | 2 +- .../edges/CommunityMech--AntibioticMech.json | 2 +- .../CommunityMech--CellStructureMech.json | 2 +- .../edges/CommunityMech--CultureMech.json | 2 +- .../CommunityMech--MediaIngredientMech.json | 2 +- .../CommunityMech--NaturalProductMech.json | 2 +- .../CommunityMech--ProteinTraitsMech.json | 2 +- .../fleet/edges/CommunityMech--TraitMech.json | 2 +- .../edges/HabitatMech--AntibioticMech.json | 2 +- .../edges/HabitatMech--CellStructureMech.json | 2 +- .../edges/HabitatMech--CommunityMech.json | 2 +- .../fleet/edges/HabitatMech--CultureMech.json | 2 +- .../HabitatMech--NaturalProductMech.json | 2 +- .../edges/HabitatMech--ProteinTraitsMech.json | 2 +- .../fleet/edges/HabitatMech--TraitMech.json | 2 +- .../MediaIngredientMech--CultureMech.json | 2 +- .../NaturalProductMech--AntibioticMech.json | 2 +- .../NaturalProductMech--CultureMech.json | 2 +- .../ProteinTraitsMech--AntibioticMech.json | 2 +- .../edges/ProteinTraitsMech--CultureMech.json | 2 +- ...roteinTraitsMech--MediaIngredientMech.json | 2 +- ...ProteinTraitsMech--NaturalProductMech.json | 2 +- .../edges/TraitMech--AntibioticMech.json | 2 +- .../edges/TraitMech--CellStructureMech.json | 2 +- .../fleet/edges/TraitMech--CultureMech.json | 2 +- .../edges/TraitMech--MediaIngredientMech.json | 2 +- .../edges/TraitMech--NaturalProductMech.json | 2 +- .../edges/TraitMech--ProteinTraitsMech.json | 2 +- communitymech.md | 28 +- culturemech.md | 22 +- index.md | 2 +- mechs.md | 131 ++++---- mediaingredientmech.md | 26 +- microgrowagents.md | 4 +- research.md | 2 +- resources.md | 22 +- tests/test_fleet_page.py | 44 +++ 76 files changed, 684 insertions(+), 598 deletions(-) diff --git a/.claude/skills/review-open-issues/SKILL.md b/.claude/skills/review-open-issues/SKILL.md index c259a52..a045c3d 100644 --- a/.claude/skills/review-open-issues/SKILL.md +++ b/.claude/skills/review-open-issues/SKILL.md @@ -83,7 +83,7 @@ Before quoting any figure, say which it is: | **local-checkout count** | `record_paths()` over `MECHS_ROOT` | `prefix_census.py` / `mech_stats.py` | | **census/heatmap count** | `_fleet/data/prefix_census.json` | the full pipeline | -They legitimately disagree. CultureMech publishes 6,286 merged canonical media +They legitimately disagree. CultureMech publishes 6,288 merged canonical media and serves 15,878 normalized records from the same site. CommunityMech's hero counts `kb/communities` only while the fleet glob also takes `data/isolates`, so the site is permanently four below the fleet number. A local checkout can be @@ -93,7 +93,7 @@ Two traps specifically: - **A landing page can contradict its own data.** ProteinTraitsMech ships `408,978 records` as static HTML and overwrites it at runtime from - `data/facets.json`, which serves 429,291. A scraper and a visitor see different + `data/facets.json`, which serves 429,293. A scraper and a visitor see different numbers. Read the number the page *renders*. - **A published tile can match nothing at all.** CultureMech's `10,657` is a hand-typed figure from a March 2026 merge input; nothing regenerates it. diff --git a/_fleet/README.md b/_fleet/README.md index ee19c81..8fd4ef6 100644 --- a/_fleet/README.md +++ b/_fleet/README.md @@ -9,7 +9,7 @@ hand-curated at the top of the script. - `data/manifest.json` — membership and all capability declarations from a pinned commit of CLAW's canonical manifest, plus the canonical artifact count. -- Other `data/` files — derived numbers: `prefix_census.json`, `subsets_summary.json`, `fleet_data.json`. +- Other `data/` files — derived numbers: `prefix_census.json`, `subsets_summary.json`, `fleet_data.json`, `mech_stats.json`; `site_audit.json` is the hand-written provenance record. ## Membership and capability updates @@ -58,7 +58,7 @@ python3 scripts/fleet/assemble_page.py --check Membership updates do not require rescanning the record corpora. The current September 2026 vocabulary census covers nine Mechs; TaxonMech is shown in the -graph and cards with its published 625,960-taxon total (checked September 20, 2026), but its vocabulary counts have not +graph and cards with its published 625,960-taxon total (checked September 24, 2026), but its vocabulary counts have not been measured by this pipeline. The heatmap uses the measured `fleet_data.json` order, and the page states this limitation. Add TaxonMech to the census roots and scanners before publishing measured vocabulary cells or overlap counts for it. @@ -81,6 +81,7 @@ python3 scripts/fleet/roots.py python3 scripts/fleet/prefix_census.py # heatmap counts python3 scripts/fleet/build_subsets.py # assets/fleet/{edges,cells}/*.json + subsets_summary.json python3 scripts/fleet/build_data.py # _fleet/data/fleet_data.json +python3 scripts/fleet/mech_stats.py # _fleet/data/mech_stats.json (needs gh) python3 scripts/fleet/assemble_page.py # mechs.md ``` @@ -91,7 +92,9 @@ Jekyll ignores `_fleet/` (leading underscore) and `scripts/` is excluded in `_co Record links resolve to each Mech's published page where one exists (TraitMech, CellStructureMech, AntibioticMech, HabitatMech, CommunityMech, ProteinTraitsMech hash routes) and to the record's source file on GitHub for CultureMech, -MediaIngredientMech and NaturalProductMech in the existing census indexes. +MediaIngredientMech and NaturalProductMech in the existing census indexes, +although CultureMech (`pages/media/`) and NaturalProductMech (`pages//`) +now publish per-record pages. NaturalProductMech and TaxonMech both publish browse sites linked from their cards; these links are separate from the historical census's record-link routes. @@ -106,39 +109,57 @@ be incomplete: TOGO, UTEX and CCAP are absent although comparable registries structured namespace at 2,833 occurrences, so the heatmap currently understates it. Adding a prefix changes the heatmap's columns, so it needs a full rescan. -## Published-site refresh (September 20, 2026) +## Published-site refresh (September 24, 2026) -`data/site_audit.json` records the checked public repository revisions, resolved -Pages URLs, response hashes, count sources and merged pull-request totals. The -three dedicated pages link their descriptions and commands to those immutable -repository revisions. Refresh the audit when changing current-state claims. +Every number on the page was re-derived from one set of pinned revisions: each +Mech's GitHub `main` and CLAW's, fetched once at the start of the run. The +census, the card stats and `data/site_audit.json` each record the revision they +read, and `RefreshProvenanceTests` fails if they disagree. The corpora were read +from sparse clones of the shared checkouts at those commits, never from the +checkouts' working trees, several of which lagged their remotes by dozens of +commits or carried uncommitted files. `.claude/skills/update-xmech-page/` is the +procedure. + +`data/site_audit.json` records, per repository, the pinned revision, the Pages +URL each card figure is read from, the figure, response hashes and merged +pull-request totals. The three dedicated pages link their descriptions and +commands to those same revisions. Follow client-side meta refreshes from site roots to `pages/` or `app/`. Read JavaScript-backed headline counts from the data files they load: MIM uses -`data/ingredients.json` (2,951 ingredients; 2,616 MAPPED), and ProteinTraitsMech -uses `data/facets.json` (429,291 records; 34 source labels). The latter's static +`data/ingredients.json` (2,953 ingredients; 2,611 MAPPED), and ProteinTraitsMech +uses `data/facets.json` (429,293 records; 34 source labels). The latter's static HTML still has a legacy fallback count. -CommunityMech publishes 392 communities; its pinned source tree also contains -four isolate records, so `mech_stats.json` counts 396 source records. TraitMech -has 723 records in both its pinned source tree and published landing page. - -CultureMech's current README inventory reports 15,878 normalized records and -6,286 merged records. Its landing tile still reads 10,657, and the formerly -available `/pages/index.html` returned 404 during this refresh. The card uses -the repository's canonical count and links to the working normalized browser. - -Published review counts were checked against the current TraitMech and -TaxonMech READMEs, ProteinTraitsMech's live facet index, and the AntibioticMech -and HabitatMech pages. CellStructureMech and NaturalProductMech review counts -were recounted from clean local checkouts matching the pinned remote revisions. -Merged PR totals come from GitHub search at the time of the audit. +Card figures follow the published sites, and the census follows the pinned +repositories. At this refresh they agree for every Mech except CommunityMech: +its site lists 422 communities, while its record glob also takes four isolate +records, so the census and `mech_stats.json` count 426. CellStructureMech and +TraitMech published new records after the pins were taken; their cards keep the +pinned figures, and `site_audit.json` records what the two sites showed when it +was written. `check_cards.py` will report both as drifted until the next refresh. + +CultureMech's README inventory at the pinned revision reports 15,878 normalized +records and 6,288 merged records. `/pages/` is live again and lists the same +6,288 merged media records, so the card links there and `check_cards.py` reads +it. The `app/` landing tile, which the site root redirects to, still reads +10,657; the `app/` browser itself serves the 15,878 normalized records. + +Reviewed-record counts come from `mech_stats.py`, which counts a record as +reviewed only where the Mech's schema has a status that can say REVIEWED; the +card secondary figures were checked against each live site. Merged pull-request +totals come from GitHub search at run time and were cross-checked against the +GraphQL `pullRequests(states: MERGED)` count for every repository. The CLAW manifest's projected membership and capabilities are unchanged; the -snapshot now points to the checked main revision. Its README distinguishes +snapshot now points to the pinned main revision. Its README distinguishes supported discovery, validation and dry-run tools from unimplemented CLI agent execution and disabled cross-repository apply modes. Capability adoption must not be described as proof that those workflows execute unattended. -The vocabulary census and overlap assets remain a separate dated snapshot. -This refresh does not relabel those counts as a new corpus scan. +The vocabulary census and overlap assets were rescanned at the same pinned +revisions for the nine measured Mechs; TaxonMech remains outside the census. +The previous census's ProteinTraitsMech counts had been read from a checkout +with uncommitted files: it reported 770,276 UniProt references where the +revision the September 20 audit pinned (`700b6f7`) holds 657,598. The rescan's +lower figures are a correction, not a loss of data. diff --git a/_fleet/data/fleet_data.json b/_fleet/data/fleet_data.json index 127ccfa..bbae8cf 100644 --- a/_fleet/data/fleet_data.json +++ b/_fleet/data/fleet_data.json @@ -1 +1 @@ -{"order":["HabitatMech","CommunityMech","TraitMech","CellStructureMech","ProteinTraitsMech","NaturalProductMech","AntibioticMech","MediaIngredientMech","CultureMech"],"voc":["NCBITaxon","CHEBI","GO","UniProt","ENVO","UBERON","InterPro","PDB","CAS","METPO","KEGG","FOODON","PATO","Pfam","RHEA","ARO","BTO","MIBiG","NPAtlas","GTDB","PMID","DOI"],"heat":{"HabitatMech":{"CHEBI":24,"NCBITaxon":13227,"GO":7,"ENVO":3368,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":4,"UBERON":1123,"FOODON":198,"BTO":1367,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":516,"DOI":116},"CommunityMech":{"CHEBI":2746,"NCBITaxon":3641,"GO":1430,"ENVO":416,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":10,"FOODON":0,"BTO":0,"GTDB":1788,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":5876,"DOI":1078},"TraitMech":{"CHEBI":673,"NCBITaxon":975,"GO":886,"ENVO":22,"METPO":3541,"ARO":0,"UniProt":399,"InterPro":115,"Pfam":0,"RHEA":0,"PDB":0,"PATO":99,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":412,"DOI":6749},"CellStructureMech":{"CHEBI":48,"NCBITaxon":1211,"GO":8623,"ENVO":0,"METPO":14,"ARO":0,"UniProt":284,"InterPro":58,"Pfam":22,"RHEA":0,"PDB":67,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":308,"DOI":5931},"ProteinTraitsMech":{"CHEBI":374424,"NCBITaxon":371580,"GO":421586,"ENVO":0,"METPO":244,"ARO":397717,"UniProt":770276,"InterPro":1558488,"Pfam":558504,"RHEA":613456,"PDB":235957,"PATO":120,"UBERON":43,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":245,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":657527,"DOI":193845},"NaturalProductMech":{"CHEBI":1659,"NCBITaxon":13960,"GO":0,"ENVO":0,"METPO":0,"ARO":0,"UniProt":613,"InterPro":0,"Pfam":0,"RHEA":14,"PDB":0,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":10133,"NPAtlas":1756,"PMID":5703,"DOI":8437},"AntibioticMech":{"CHEBI":22104,"NCBITaxon":1057,"GO":3,"ENVO":0,"METPO":0,"ARO":16653,"UniProt":278,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":6,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":1823,"MIBiG":0,"NPAtlas":0,"PMID":1207,"DOI":216},"MediaIngredientMech":{"CHEBI":7895,"NCBITaxon":1,"GO":0,"ENVO":110,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":23,"FOODON":271,"BTO":3,"GTDB":0,"KEGG":61,"CAS":689,"MIBiG":0,"NPAtlas":0,"PMID":29,"DOI":5},"CultureMech":{"CHEBI":160649,"NCBITaxon":63,"GO":0,"ENVO":13,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":138,"FOODON":214,"BTO":0,"GTDB":0,"KEGG":1406,"CAS":1,"MIBiG":0,"NPAtlas":0,"PMID":68,"DOI":76}},"cells":{"HabitatMech--NCBITaxon":896,"HabitatMech--ENVO":1296,"HabitatMech--CHEBI":11,"HabitatMech--UBERON":704,"HabitatMech--PATO":3,"HabitatMech--FOODON":85,"HabitatMech--BTO":587,"HabitatMech--GO":2,"CommunityMech--GO":351,"CommunityMech--NCBITaxon":364,"CommunityMech--ENVO":350,"CommunityMech--CHEBI":320,"CommunityMech--GTDB":338,"CommunityMech--UBERON":10,"TraitMech--GO":292,"TraitMech--NCBITaxon":463,"TraitMech--METPO":681,"TraitMech--UniProt":182,"TraitMech--CHEBI":183,"TraitMech--InterPro":61,"TraitMech--ENVO":14,"TraitMech--PATO":49,"CellStructureMech--GO":414,"CellStructureMech--NCBITaxon":417,"CellStructureMech--UniProt":52,"CellStructureMech--METPO":5,"CellStructureMech--InterPro":21,"CellStructureMech--PDB":6,"CellStructureMech--Pfam":8,"CellStructureMech--CHEBI":21,"ProteinTraitsMech--GO":110744,"ProteinTraitsMech--CHEBI":30122,"ProteinTraitsMech--METPO":119,"ProteinTraitsMech--UniProt":159595,"ProteinTraitsMech--RHEA":29550,"ProteinTraitsMech--KEGG":231,"ProteinTraitsMech--NCBITaxon":111963,"ProteinTraitsMech--InterPro":120090,"ProteinTraitsMech--Pfam":107455,"ProteinTraitsMech--UBERON":43,"ProteinTraitsMech--PATO":79,"ProteinTraitsMech--ARO":7452,"ProteinTraitsMech--PDB":51718,"NaturalProductMech--NCBITaxon":3115,"NaturalProductMech--MIBiG":3115,"NaturalProductMech--NPAtlas":1740,"NaturalProductMech--CHEBI":405,"NaturalProductMech--UniProt":102,"NaturalProductMech--RHEA":1,"AntibioticMech--CHEBI":2814,"AntibioticMech--CAS":1797,"AntibioticMech--ARO":568,"AntibioticMech--UniProt":47,"AntibioticMech--NCBITaxon":163,"AntibioticMech--PDB":5,"AntibioticMech--GO":3,"MediaIngredientMech--CHEBI":2226,"MediaIngredientMech--CAS":278,"MediaIngredientMech--KEGG":58,"MediaIngredientMech--FOODON":100,"MediaIngredientMech--ENVO":26,"MediaIngredientMech--UBERON":10,"MediaIngredientMech--BTO":1,"MediaIngredientMech--NCBITaxon":1,"CultureMech--FOODON":200,"CultureMech--CHEBI":6123,"CultureMech--UBERON":72,"CultureMech--NCBITaxon":30,"CultureMech--ENVO":12,"CultureMech--KEGG":329,"CultureMech--CAS":1},"vocab_edges":[{"a":"HabitatMech","b":"CommunityMech","n":276,"by":{"NCBITaxon":229,"ENVO":41,"UBERON":4,"CHEBI":2},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"ENVO:00001998","label":"soil"},{"id":"NCBITaxon:1386","label":"Bacillus "}]},{"a":"HabitatMech","b":"TraitMech","n":124,"by":{"NCBITaxon":115,"ENVO":4,"DOI":2,"PATO":2,"CHEBI":1},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"HabitatMech","b":"CellStructureMech","n":39,"by":{"NCBITaxon":39},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1117","label":"Cyanobacteriota"}]},{"a":"HabitatMech","b":"ProteinTraitsMech","n":1285,"by":{"NCBITaxon":1269,"UBERON":12,"CHEBI":2,"GO":2},"ex":[{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1396","label":"Bacillus cereus"}]},{"a":"HabitatMech","b":"NaturalProductMech","n":312,"by":{"NCBITaxon":312},"ex":[{"id":"NCBITaxon:56","label":"Sorangium cellulosum"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1931","label":"Streptomyces sp."}]},{"a":"HabitatMech","b":"AntibioticMech","n":32,"by":{"NCBITaxon":32},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:573","label":"Klebsiella pneumoniae"}]},{"a":"HabitatMech","b":"MediaIngredientMech","n":22,"by":{"ENVO":15,"UBERON":4,"CHEBI":3},"ex":[{"id":"ENVO:00002149","label":"sea water"},{"id":"ENVO:00001998","label":"soil"},{"id":"ENVO:00002263","label":"garden soil"}]},{"a":"HabitatMech","b":"CultureMech","n":25,"by":{"NCBITaxon":13,"ENVO":7,"UBERON":4,"FOODON":1},"ex":[{"id":"UBERON:0000948","label":"heart"},{"id":"UBERON:0000955","label":"brain"},{"id":"UBERON:0000178","label":"blood"}]},{"a":"CommunityMech","b":"TraitMech","n":153,"by":{"CHEBI":61,"NCBITaxon":57,"GO":35},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:15379","label":"dioxygen"},{"id":"GO:0015977","label":"carbon fixation"}]},{"a":"CommunityMech","b":"CellStructureMech","n":55,"by":{"NCBITaxon":32,"CHEBI":13,"GO":10},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:2157","label":"Archaea"},{"id":"NCBITaxon:562","label":"Escherichia coli"}]},{"a":"CommunityMech","b":"ProteinTraitsMech","n":650,"by":{"CHEBI":268,"NCBITaxon":192,"GO":189,"UBERON":1},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:30089","label":"acetate"},{"id":"GO:0015979","label":"photosynthesis"}]},{"a":"CommunityMech","b":"NaturalProductMech","n":105,"by":{"NCBITaxon":100,"CHEBI":5},"ex":[{"id":"NCBITaxon:286","label":"Pseudomonas"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"}]},{"a":"CommunityMech","b":"AntibioticMech","n":58,"by":{"CHEBI":39,"NCBITaxon":19},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"CHEBI:33709","label":"amino acid"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"CommunityMech","b":"MediaIngredientMech","n":234,"by":{"CHEBI":232,"ENVO":2},"ex":[{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:33709","label":"amino acid"},{"id":"CHEBI:26710","label":"sodium chloride"}]},{"a":"CommunityMech","b":"CultureMech","n":153,"by":{"CHEBI":138,"NCBITaxon":8,"ENVO":5,"DOI":2},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:30089","label":"acetate"}]},{"a":"TraitMech","b":"CellStructureMech","n":123,"by":{"GO":44,"NCBITaxon":37,"DOI":21,"CHEBI":7,"UniProt":6,"METPO":5,"InterPro":3},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:83333","label":"Escherichia coli (strain K12)"},{"id":"GO:0009767","label":"photosynthetic electron transport chain"}]},{"a":"TraitMech","b":"ProteinTraitsMech","n":807,"by":{"GO":248,"NCBITaxon":136,"METPO":111,"CHEBI":109,"DOI":100,"UniProt":56,"InterPro":47},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"METPO:1000631","label":"trophic type"}]},{"a":"TraitMech","b":"NaturalProductMech","n":57,"by":{"NCBITaxon":52,"CHEBI":4,"DOI":1},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"TraitMech","b":"AntibioticMech","n":31,"by":{"NCBITaxon":21,"CHEBI":10},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"TraitMech","b":"MediaIngredientMech","n":58,"by":{"CHEBI":58},"ex":[{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:16526","label":"carbon dioxide"}]},{"a":"TraitMech","b":"CultureMech","n":36,"by":{"CHEBI":26,"NCBITaxon":10},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:17234","label":"glucose"}]},{"a":"CellStructureMech","b":"ProteinTraitsMech","n":989,"by":{"GO":576,"DOI":145,"UniProt":143,"NCBITaxon":72,"InterPro":29,"CHEBI":14,"Pfam":10},"ex":[{"id":"GO:0032991","label":"protein-containing complex"},{"id":"NCBITaxon:3055","label":"Chlamydomonas reinhardtii"},{"id":"GO:0016020","label":"membrane"}]},{"a":"CellStructureMech","b":"NaturalProductMech","n":20,"by":{"NCBITaxon":20},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"CellStructureMech","b":"AntibioticMech","n":17,"by":{"NCBITaxon":12,"CHEBI":5},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:4932","label":"Saccharomyces cerevisiae"},{"id":"NCBITaxon:90371","label":"Salmonella enterica subsp. enterica serovar Typhimurium"}]},{"a":"CellStructureMech","b":"MediaIngredientMech","n":13,"by":{"CHEBI":13},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:17029","label":"chitin"},{"id":"CHEBI:33403","label":"elemental sulfur"}]},{"a":"CellStructureMech","b":"CultureMech","n":6,"by":{"NCBITaxon":3,"CHEBI":3},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:33403","label":"elemental sulfur"},{"id":"NCBITaxon:1148","label":"Synechocystis sp. PCC 6803"}]},{"a":"ProteinTraitsMech","b":"NaturalProductMech","n":900,"by":{"NCBITaxon":497,"UniProt":156,"CHEBI":148,"DOI":96,"RHEA":3},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:100226","label":"Streptomyces coelicolor A3(2)"},{"id":"NCBITaxon:227321","label":"Emericella nidulans (strain FGSC A4 / ATCC 38163 / CBS 112.46 / NRRL 194 / M139)"}]},{"a":"ProteinTraitsMech","b":"AntibioticMech","n":2437,"by":{"ARO":1740,"CHEBI":594,"NCBITaxon":79,"UniProt":20,"GO":2,"DOI":2},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:573","label":"Klebsiella pneumoniae"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"}]},{"a":"ProteinTraitsMech","b":"MediaIngredientMech","n":792,"by":{"CHEBI":791,"UBERON":1},"ex":[{"id":"CHEBI:15377","label":"water"},{"id":"CHEBI:15740","label":"formate"},{"id":"CHEBI:33709","label":"amino acid"}]},{"a":"ProteinTraitsMech","b":"CultureMech","n":233,"by":{"CHEBI":221,"NCBITaxon":10,"UBERON":2},"ex":[{"id":"CHEBI:15377","label":"water"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:17754","label":"glycerol"}]},{"a":"NaturalProductMech","b":"AntibioticMech","n":288,"by":{"CHEBI":180,"NCBITaxon":96,"DOI":10,"UniProt":2},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"},{"id":"NCBITaxon:330879","label":"Aspergillus fumigatus (strain ATCC MYA-4609 / CBS 101355 / FGSC A1100 / Af293)"}]},{"a":"NaturalProductMech","b":"MediaIngredientMech","n":51,"by":{"CHEBI":51},"ex":[{"id":"CHEBI:15956","label":"biotin"},{"id":"CHEBI:16349","label":"L-citrulline"},{"id":"CHEBI:27592","label":"ectoine"}]},{"a":"NaturalProductMech","b":"CultureMech","n":5,"by":{"CHEBI":3,"NCBITaxon":2},"ex":[{"id":"CHEBI:15956","label":"biotin"},{"id":"CHEBI:16349","label":"L-citrulline"},{"id":"CHEBI:27592","label":"ectoine"}]},{"a":"AntibioticMech","b":"MediaIngredientMech","n":324,"by":{"CHEBI":324},"ex":[{"id":"CHEBI:33709","label":"amino acid"},{"id":"CHEBI:30746","label":"benzoic acid"},{"id":"CHEBI:17334","label":"penicillin"}]},{"a":"AntibioticMech","b":"CultureMech","n":29,"by":{"CHEBI":29},"ex":[{"id":"CHEBI:17334","label":"penicillin"},{"id":"CHEBI:48923","label":"erythromycin"},{"id":"CHEBI:30746","label":"benzoic acid"}]},{"a":"MediaIngredientMech","b":"CultureMech","n":611,"by":{"CHEBI":544,"KEGG":56,"FOODON":6,"UBERON":3,"CAS":1,"ENVO":1},"ex":[{"id":"FOODON:03315426","label":"yeast extract"},{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:2509","label":"agar"}]}]} \ No newline at end of file +{"order":["HabitatMech","CommunityMech","TraitMech","CellStructureMech","ProteinTraitsMech","NaturalProductMech","AntibioticMech","MediaIngredientMech","CultureMech"],"voc":["NCBITaxon","CHEBI","GO","UniProt","ENVO","UBERON","InterPro","PDB","CAS","METPO","KEGG","FOODON","PATO","Pfam","RHEA","ARO","BTO","MIBiG","NPAtlas","GTDB","PMID","DOI"],"heat":{"HabitatMech":{"CHEBI":24,"NCBITaxon":13227,"GO":7,"ENVO":3368,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":4,"UBERON":1123,"FOODON":198,"BTO":1367,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":516,"DOI":116},"CommunityMech":{"CHEBI":2971,"NCBITaxon":4253,"GO":1537,"ENVO":538,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":10,"FOODON":0,"BTO":0,"GTDB":2037,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":7320,"DOI":1223},"TraitMech":{"CHEBI":673,"NCBITaxon":996,"GO":886,"ENVO":22,"METPO":3617,"ARO":0,"UniProt":399,"InterPro":115,"Pfam":0,"RHEA":0,"PDB":0,"PATO":99,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":621,"DOI":7190},"CellStructureMech":{"CHEBI":65,"NCBITaxon":1438,"GO":11688,"ENVO":0,"METPO":14,"ARO":0,"UniProt":337,"InterPro":206,"Pfam":22,"RHEA":0,"PDB":277,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":698,"DOI":6636},"ProteinTraitsMech":{"CHEBI":374424,"NCBITaxon":358320,"GO":421586,"ENVO":0,"METPO":244,"ARO":397717,"UniProt":658574,"InterPro":1480044,"Pfam":521966,"RHEA":613456,"PDB":235957,"PATO":124,"UBERON":43,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":245,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":657527,"DOI":193845},"NaturalProductMech":{"CHEBI":1659,"NCBITaxon":13960,"GO":0,"ENVO":0,"METPO":0,"ARO":0,"UniProt":613,"InterPro":0,"Pfam":0,"RHEA":14,"PDB":0,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":10133,"NPAtlas":1756,"PMID":5703,"DOI":8437},"AntibioticMech":{"CHEBI":22104,"NCBITaxon":1085,"GO":3,"ENVO":0,"METPO":0,"ARO":16653,"UniProt":278,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":6,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":1823,"MIBiG":0,"NPAtlas":0,"PMID":1207,"DOI":216},"MediaIngredientMech":{"CHEBI":8220,"NCBITaxon":1,"GO":0,"ENVO":110,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":23,"FOODON":273,"BTO":3,"GTDB":0,"KEGG":61,"CAS":727,"MIBiG":0,"NPAtlas":0,"PMID":29,"DOI":9},"CultureMech":{"CHEBI":160678,"NCBITaxon":63,"GO":0,"ENVO":13,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":138,"FOODON":223,"BTO":0,"GTDB":0,"KEGG":1406,"CAS":1,"MIBiG":0,"NPAtlas":0,"PMID":68,"DOI":76}},"cells":{"HabitatMech--BTO":587,"HabitatMech--CHEBI":11,"HabitatMech--ENVO":1296,"HabitatMech--FOODON":85,"HabitatMech--GO":2,"HabitatMech--NCBITaxon":896,"HabitatMech--PATO":3,"HabitatMech--UBERON":704,"CommunityMech--CHEBI":361,"CommunityMech--ENVO":412,"CommunityMech--GO":398,"CommunityMech--GTDB":370,"CommunityMech--NCBITaxon":426,"CommunityMech--UBERON":10,"TraitMech--CHEBI":183,"TraitMech--ENVO":14,"TraitMech--GO":292,"TraitMech--InterPro":61,"TraitMech--METPO":749,"TraitMech--NCBITaxon":484,"TraitMech--PATO":49,"TraitMech--UniProt":182,"CellStructureMech--CHEBI":24,"CellStructureMech--GO":535,"CellStructureMech--InterPro":33,"CellStructureMech--METPO":5,"CellStructureMech--NCBITaxon":531,"CellStructureMech--PDB":19,"CellStructureMech--Pfam":8,"CellStructureMech--UniProt":65,"ProteinTraitsMech--ARO":7452,"ProteinTraitsMech--CHEBI":30122,"ProteinTraitsMech--GO":110744,"ProteinTraitsMech--InterPro":120090,"ProteinTraitsMech--KEGG":231,"ProteinTraitsMech--METPO":119,"ProteinTraitsMech--NCBITaxon":98697,"ProteinTraitsMech--PATO":81,"ProteinTraitsMech--PDB":51718,"ProteinTraitsMech--Pfam":107455,"ProteinTraitsMech--RHEA":29550,"ProteinTraitsMech--UBERON":43,"ProteinTraitsMech--UniProt":159595,"NaturalProductMech--CHEBI":405,"NaturalProductMech--MIBiG":3115,"NaturalProductMech--NCBITaxon":3115,"NaturalProductMech--NPAtlas":1740,"NaturalProductMech--RHEA":1,"NaturalProductMech--UniProt":102,"AntibioticMech--ARO":568,"AntibioticMech--CAS":1797,"AntibioticMech--CHEBI":2814,"AntibioticMech--GO":3,"AntibioticMech--NCBITaxon":163,"AntibioticMech--PDB":5,"AntibioticMech--UniProt":47,"MediaIngredientMech--BTO":1,"MediaIngredientMech--CAS":287,"MediaIngredientMech--CHEBI":2232,"MediaIngredientMech--ENVO":26,"MediaIngredientMech--FOODON":99,"MediaIngredientMech--KEGG":58,"MediaIngredientMech--NCBITaxon":1,"MediaIngredientMech--UBERON":10,"CultureMech--CAS":1,"CultureMech--CHEBI":6125,"CultureMech--ENVO":12,"CultureMech--FOODON":203,"CultureMech--KEGG":329,"CultureMech--NCBITaxon":30,"CultureMech--UBERON":72},"vocab_edges":[{"a":"HabitatMech","b":"CommunityMech","n":313,"by":{"NCBITaxon":265,"ENVO":42,"UBERON":4,"CHEBI":2},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"ENVO:00001998","label":"soil"},{"id":"ENVO:01001001","label":"plant-associated environment"}]},{"a":"HabitatMech","b":"TraitMech","n":122,"by":{"NCBITaxon":115,"ENVO":4,"PATO":2,"CHEBI":1},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"HabitatMech","b":"CellStructureMech","n":41,"by":{"NCBITaxon":41},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1117","label":"Cyanobacteriota"}]},{"a":"HabitatMech","b":"ProteinTraitsMech","n":1250,"by":{"NCBITaxon":1234,"UBERON":12,"CHEBI":2,"GO":2},"ex":[{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1869227","label":"bacterium"}]},{"a":"HabitatMech","b":"NaturalProductMech","n":312,"by":{"NCBITaxon":312},"ex":[{"id":"NCBITaxon:56","label":"Sorangium cellulosum"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1931","label":"Streptomyces sp."}]},{"a":"HabitatMech","b":"AntibioticMech","n":32,"by":{"NCBITaxon":32},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:573","label":"Klebsiella pneumoniae"}]},{"a":"HabitatMech","b":"MediaIngredientMech","n":22,"by":{"ENVO":15,"UBERON":4,"CHEBI":3},"ex":[{"id":"ENVO:00002149","label":"sea water"},{"id":"ENVO:00001998","label":"soil"},{"id":"ENVO:00002263","label":"garden soil"}]},{"a":"HabitatMech","b":"CultureMech","n":25,"by":{"NCBITaxon":13,"ENVO":7,"UBERON":4,"FOODON":1},"ex":[{"id":"UBERON:0000948","label":"heart"},{"id":"UBERON:0000955","label":"brain"},{"id":"UBERON:0000178","label":"blood"}]},{"a":"CommunityMech","b":"TraitMech","n":157,"by":{"CHEBI":61,"NCBITaxon":61,"GO":35},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:15379","label":"dioxygen"},{"id":"GO:0015977","label":"carbon fixation"}]},{"a":"CommunityMech","b":"CellStructureMech","n":60,"by":{"NCBITaxon":36,"CHEBI":13,"GO":11},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:2157","label":"Archaea"},{"id":"NCBITaxon:562","label":"Escherichia coli"}]},{"a":"CommunityMech","b":"ProteinTraitsMech","n":698,"by":{"CHEBI":280,"NCBITaxon":227,"GO":190,"UBERON":1},"ex":[{"id":"CHEBI:30089","label":"acetate"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"GO:0015979","label":"photosynthesis"}]},{"a":"CommunityMech","b":"NaturalProductMech","n":129,"by":{"NCBITaxon":124,"CHEBI":5},"ex":[{"id":"NCBITaxon:286","label":"Pseudomonas"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:562","label":"Escherichia coli"}]},{"a":"CommunityMech","b":"AntibioticMech","n":64,"by":{"CHEBI":42,"NCBITaxon":22},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"},{"id":"CHEBI:33709","label":"amino acid"}]},{"a":"CommunityMech","b":"MediaIngredientMech","n":240,"by":{"CHEBI":238,"ENVO":2},"ex":[{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:33709","label":"amino acid"},{"id":"CHEBI:3312","label":"calcium dichloride"}]},{"a":"CommunityMech","b":"CultureMech","n":151,"by":{"CHEBI":138,"NCBITaxon":8,"ENVO":5},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:30089","label":"acetate"}]},{"a":"TraitMech","b":"CellStructureMech","n":114,"by":{"GO":53,"NCBITaxon":40,"CHEBI":7,"UniProt":6,"METPO":5,"InterPro":3},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:83333","label":"Escherichia coli (strain K12)"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"}]},{"a":"TraitMech","b":"ProteinTraitsMech","n":707,"by":{"GO":248,"NCBITaxon":136,"METPO":111,"CHEBI":109,"UniProt":56,"InterPro":47},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"METPO:1000631","label":"trophic type"}]},{"a":"TraitMech","b":"NaturalProductMech","n":57,"by":{"NCBITaxon":53,"CHEBI":4},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"TraitMech","b":"AntibioticMech","n":31,"by":{"NCBITaxon":21,"CHEBI":10},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"TraitMech","b":"MediaIngredientMech","n":59,"by":{"CHEBI":59},"ex":[{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:16526","label":"carbon dioxide"}]},{"a":"TraitMech","b":"CultureMech","n":36,"by":{"CHEBI":26,"NCBITaxon":10},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:17234","label":"glucose"}]},{"a":"CellStructureMech","b":"ProteinTraitsMech","n":1058,"by":{"GO":737,"UniProt":155,"NCBITaxon":77,"InterPro":64,"CHEBI":15,"Pfam":10},"ex":[{"id":"GO:0032991","label":"protein-containing complex"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:3055","label":"Chlamydomonas reinhardtii"}]},{"a":"CellStructureMech","b":"NaturalProductMech","n":23,"by":{"NCBITaxon":23},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:9606","label":"Homo sapiens"}]},{"a":"CellStructureMech","b":"AntibioticMech","n":18,"by":{"NCBITaxon":13,"CHEBI":5},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:4932","label":"Saccharomyces cerevisiae"},{"id":"NCBITaxon:90371","label":"Salmonella enterica subsp. enterica serovar Typhimurium"}]},{"a":"CellStructureMech","b":"MediaIngredientMech","n":14,"by":{"CHEBI":14},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:17029","label":"chitin"},{"id":"CHEBI:33403","label":"elemental sulfur"}]},{"a":"CellStructureMech","b":"CultureMech","n":7,"by":{"CHEBI":4,"NCBITaxon":3},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:16261","label":"chitosan"},{"id":"CHEBI:33403","label":"elemental sulfur"}]},{"a":"ProteinTraitsMech","b":"NaturalProductMech","n":794,"by":{"NCBITaxon":487,"UniProt":156,"CHEBI":148,"RHEA":3},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:100226","label":"Streptomyces coelicolor A3(2)"},{"id":"NCBITaxon:227321","label":"Emericella nidulans (strain FGSC A4 / ATCC 38163 / CBS 112.46 / NRRL 194 / M139)"}]},{"a":"ProteinTraitsMech","b":"AntibioticMech","n":2435,"by":{"ARO":1740,"CHEBI":594,"NCBITaxon":79,"UniProt":20,"GO":2},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:573","label":"Klebsiella pneumoniae"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"}]},{"a":"ProteinTraitsMech","b":"MediaIngredientMech","n":798,"by":{"CHEBI":797,"UBERON":1},"ex":[{"id":"CHEBI:15377","label":"water"},{"id":"CHEBI:15740","label":"formate"},{"id":"CHEBI:33709","label":"amino acid"}]},{"a":"ProteinTraitsMech","b":"CultureMech","n":233,"by":{"CHEBI":221,"NCBITaxon":10,"UBERON":2},"ex":[{"id":"CHEBI:15377","label":"water"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:17754","label":"glycerol"}]},{"a":"NaturalProductMech","b":"AntibioticMech","n":278,"by":{"CHEBI":180,"NCBITaxon":96,"UniProt":2},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"},{"id":"NCBITaxon:330879","label":"Aspergillus fumigatus (strain ATCC MYA-4609 / CBS 101355 / FGSC A1100 / Af293)"}]},{"a":"NaturalProductMech","b":"MediaIngredientMech","n":51,"by":{"CHEBI":51},"ex":[{"id":"CHEBI:15956","label":"biotin"},{"id":"CHEBI:16349","label":"L-citrulline"},{"id":"CHEBI:27592","label":"ectoine"}]},{"a":"NaturalProductMech","b":"CultureMech","n":5,"by":{"CHEBI":3,"NCBITaxon":2},"ex":[{"id":"CHEBI:15956","label":"biotin"},{"id":"CHEBI:16349","label":"L-citrulline"},{"id":"CHEBI:27592","label":"ectoine"}]},{"a":"AntibioticMech","b":"MediaIngredientMech","n":324,"by":{"CHEBI":324},"ex":[{"id":"CHEBI:33709","label":"amino acid"},{"id":"CHEBI:30746","label":"benzoic acid"},{"id":"CHEBI:17334","label":"penicillin"}]},{"a":"AntibioticMech","b":"CultureMech","n":29,"by":{"CHEBI":29},"ex":[{"id":"CHEBI:17334","label":"penicillin"},{"id":"CHEBI:48923","label":"erythromycin"},{"id":"CHEBI:30746","label":"benzoic acid"}]},{"a":"MediaIngredientMech","b":"CultureMech","n":612,"by":{"CHEBI":545,"KEGG":56,"FOODON":6,"UBERON":3,"CAS":1,"ENVO":1},"ex":[{"id":"FOODON:03315426","label":"yeast extract"},{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:2509","label":"agar"}]}]} \ No newline at end of file diff --git a/_fleet/data/manifest.json b/_fleet/data/manifest.json index b5b4082..1d51e4e 100644 --- a/_fleet/data/manifest.json +++ b/_fleet/data/manifest.json @@ -2,8 +2,8 @@ "version": 1, "source": { "repository": "CultureBotAI/culturebotai-claw", - "revision": "44db08d59226073425b206a36a257b2b6a8900df", - "url": "https://github.com/CultureBotAI/culturebotai-claw/blob/44db08d59226073425b206a36a257b2b6a8900df/src/kg_microbe_fleet/fleet.yaml" + "revision": "2637172e6fdbfacf163f0b12d289a9828dda2f30", + "url": "https://github.com/CultureBotAI/culturebotai-claw/blob/2637172e6fdbfacf163f0b12d289a9828dda2f30/src/kg_microbe_fleet/fleet.yaml" }, "capability_catalogue": { "id_label_validation": {}, diff --git a/_fleet/data/mech_stats.json b/_fleet/data/mech_stats.json index 4aea147..91e265d 100644 --- a/_fleet/data/mech_stats.json +++ b/_fleet/data/mech_stats.json @@ -1,51 +1,51 @@ { - "as_of": "2026-09-20", - "merged_prs_total": 3082, + "as_of": "2026-09-24", + "merged_prs_total": 3744, "mechs": [ { "mech": "CultureMech", "repo": "CultureMech", - "records": 6286, + "records": 6288, "reviewed": null, "status_field": null, - "merged_prs": 251, - "source_revision": "866b335301a53838c2868515e68ec96a11528f17" + "merged_prs": 253, + "source_revision": "faaf033b8c5386aaf2cb6f28fc527678d00cf83b" }, { "mech": "MediaIngredientMech", "repo": "MediaIngredientMech", - "records": 2951, + "records": 2953, "reviewed": null, "status_field": null, - "merged_prs": 363, - "source_revision": "1f12dd79637f8d518099b31b36fe7482651b8070" + "merged_prs": 379, + "source_revision": "dfce1c9342ca7aec41b50d0f6db8adb950bb72fe" }, { "mech": "CommunityMech", "repo": "CommunityMech", - "records": 396, + "records": 426, "reviewed": null, "status_field": null, - "merged_prs": 548, - "source_revision": "f4c11ab38ae39b9a50abe194ef69b1fc4ec007f2" + "merged_prs": 578, + "source_revision": "8505a56d644b02fe87f776be9d667db4cf3f5c5d" }, { "mech": "TraitMech", "repo": "TraitMech", - "records": 723, + "records": 763, "reviewed": 427, "status_field": "mapping_status", - "merged_prs": 615, - "source_revision": "d3b9444a799560654160b65b52d1632dd15eccf8" + "merged_prs": 656, + "source_revision": "a21c5aa34a876c43ea1e8053a58bc63d53be30a1" }, { "mech": "ProteinTraitsMech", "repo": "proteintraitsmech", - "records": 429291, + "records": 429293, "reviewed": 39591, "status_field": "mapping_status", - "merged_prs": 319, - "source_revision": "700b6f7bcedc4c414b1ba0d8d9e0b66e7236dda8" + "merged_prs": 326, + "source_revision": "5f05fca10a59867751877d1f566fad30e238b28c" }, { "mech": "AntibioticMech", @@ -53,17 +53,17 @@ "records": 2939, "reviewed": 80, "status_field": "curation_status", - "merged_prs": 266, - "source_revision": "659cf7fe438425771812ff07b9aa6f8c8d193a46" + "merged_prs": 422, + "source_revision": "66d68c2a8d99230ab729267e6cd8ae1051b85225" }, { "mech": "CellStructureMech", "repo": "CellStructureMech", - "records": 421, + "records": 542, "reviewed": 0, "status_field": "mapping_status", - "merged_prs": 468, - "source_revision": "f0d3b345f6700d0182ae512c592642c7a96a92ab" + "merged_prs": 611, + "source_revision": "42cc23b90b6c48c49efd94b7ee6efb808dded7e6" }, { "mech": "HabitatMech", @@ -71,8 +71,8 @@ "records": 3206, "reviewed": 686, "status_field": "mapping_status", - "merged_prs": 153, - "source_revision": "87c2308eac50599820994f0090324ebd7f576351" + "merged_prs": 417, + "source_revision": "b16e3099478a7ea55b82142836e9a118ae062cf6" }, { "mech": "NaturalProductMech", @@ -80,8 +80,8 @@ "records": 3115, "reviewed": 0, "status_field": "curation_status", - "merged_prs": 82, - "source_revision": "d06c8b3ec605bc234c0ea91ee770f791cba05889" + "merged_prs": 84, + "source_revision": "36662aa8fcdcac9d3ddf4acba0f430e39bc2da2e" }, { "mech": "TaxonMech", @@ -89,8 +89,8 @@ "records": 625960, "reviewed": 0, "status_field": "mapping_status", - "merged_prs": 17, - "source_revision": "cfa827a0cfbc9cda1df09fed69595abf947957a2" + "merged_prs": 18, + "source_revision": "972fbd7b85a052c6b95bf1437f672168bd6d8970" } ] -} +} \ No newline at end of file diff --git a/_fleet/data/prefix_census.json b/_fleet/data/prefix_census.json index 1738dfe..5334110 100644 --- a/_fleet/data/prefix_census.json +++ b/_fleet/data/prefix_census.json @@ -20,30 +20,30 @@ } }, "CommunityMech": { - "files": 364, + "files": 426, "prefixes": { - "PMID": 5876, - "NCBITaxon": 3641, - "CHEBI": 2746, - "GTDB": 1788, - "GO": 1430, - "DOI": 1078, - "ENVO": 416, + "PMID": 7320, + "NCBITaxon": 4253, + "CHEBI": 2971, + "GTDB": 2037, + "GO": 1537, + "DOI": 1223, + "ENVO": 538, "IMG": 28, "UBERON": 10, "BacDive": 1 } }, "TraitMech": { - "files": 694, + "files": 763, "prefixes": { - "DOI": 6749, - "METPO": 3541, - "RO": 2559, - "NCBITaxon": 975, + "DOI": 7190, + "METPO": 3617, + "RO": 2678, + "NCBITaxon": 996, "GO": 886, "CHEBI": 673, - "PMID": 412, + "PMID": 621, "UniProt": 399, "InterPro": 115, "PATO": 99, @@ -54,44 +54,45 @@ } }, "CellStructureMech": { - "files": 421, + "files": 542, "prefixes": { - "GO": 8623, - "DOI": 5931, - "NCBITaxon": 1211, - "PMID": 308, - "UniProt": 284, + "GO": 11688, + "DOI": 6636, + "NCBITaxon": 1438, + "PMID": 698, + "UniProt": 337, + "PDB": 277, + "InterPro": 206, "ECO": 145, - "PDB": 67, - "InterPro": 58, - "CHEBI": 48, + "SO": 69, + "CHEBI": 65, "Pfam": 22, "ComplexPortal": 16, "METPO": 14, "RO": 7, - "SO": 5, "MICRO": 4, "EMDB": 3, + "EC": 2, "BFO": 1 } }, "ProteinTraitsMech": { - "files": 429291, + "files": 429293, "prefixes": { - "InterPro": 1558488, - "UniProt": 770276, + "InterPro": 1480044, + "UniProt": 658574, "PMID": 657527, "RHEA": 613456, - "Pfam": 558504, + "Pfam": 521966, "GO": 421586, "ARO": 397717, "CHEBI": 374424, - "NCBITaxon": 371580, + "NCBITaxon": 358320, "RO": 278407, "PDB": 235957, "DOI": 193845, - "NCBIfam": 141317, - "EC": 120016, + "NCBIfam": 139525, + "EC": 119999, "BFO": 74488, "ComplexPortal": 20753, "SO": 19302, @@ -99,7 +100,7 @@ "CL": 260, "KEGG": 245, "METPO": 244, - "PATO": 120, + "PATO": 124, "PO": 53, "UBERON": 43, "ECO": 4, @@ -126,7 +127,7 @@ "ARO": 16653, "CAS": 1823, "PMID": 1207, - "NCBITaxon": 1057, + "NCBITaxon": 1085, "PubChem": 592, "DrugBank": 508, "UniProt": 278, @@ -137,31 +138,31 @@ } }, "MediaIngredientMech": { - "files": 2951, + "files": 2953, "prefixes": { - "CHEBI": 7895, - "CAS": 689, - "MICRO": 345, - "MESH": 301, - "NCIT": 287, - "FOODON": 271, + "CHEBI": 8220, + "CAS": 727, + "MICRO": 351, + "MESH": 326, + "NCIT": 306, + "FOODON": 273, "ENVO": 110, "KEGG": 61, "PMID": 29, "MediaDive": 24, "UBERON": 23, - "DOI": 5, + "DOI": 9, "BTO": 3, "NCBITaxon": 1 } }, "CultureMech": { - "files": 6286, + "files": 6288, "prefixes": { - "CHEBI": 160649, + "CHEBI": 160678, "KEGG": 1406, - "MICRO": 276, - "FOODON": 214, + "MICRO": 356, + "FOODON": 223, "UBERON": 138, "DOI": 76, "PMID": 68, @@ -174,5 +175,16 @@ "CAS": 1 } }, - "_as_of": "2026-09-20" + "_as_of": "2026-09-24", + "_revisions": { + "HabitatMech": "b16e3099478a7ea55b82142836e9a118ae062cf6", + "CommunityMech": "8505a56d644b02fe87f776be9d667db4cf3f5c5d", + "TraitMech": "a21c5aa34a876c43ea1e8053a58bc63d53be30a1", + "CellStructureMech": "42cc23b90b6c48c49efd94b7ee6efb808dded7e6", + "ProteinTraitsMech": "5f05fca10a59867751877d1f566fad30e238b28c", + "NaturalProductMech": "36662aa8fcdcac9d3ddf4acba0f430e39bc2da2e", + "AntibioticMech": "66d68c2a8d99230ab729267e6cd8ae1051b85225", + "MediaIngredientMech": "dfce1c9342ca7aec41b50d0f6db8adb950bb72fe", + "CultureMech": "faaf033b8c5386aaf2cb6f28fc527678d00cf83b" + } } \ No newline at end of file diff --git a/_fleet/data/site_audit.json b/_fleet/data/site_audit.json index e5b915e..a996c35 100644 --- a/_fleet/data/site_audit.json +++ b/_fleet/data/site_audit.json @@ -1,127 +1,131 @@ { - "checked_at_utc": "2026-09-21T06:36:32.135077+00:00", - "local_date": "2026-09-20", - "scope": "Public main revisions and deployed GitHub Pages responses; vocabulary census not rerun.", - "repositories": [ - { - "repo": "AntibioticMech", - "sha": "659cf7fe438425771812ff07b9aa6f8c8d193a46", - "commit_date": "2026-09-21T05:49:57Z", - "site": "https://culturebotai.github.io/AntibioticMech/pages/index.html", - "readme_url": "https://github.com/CultureBotAI/AntibioticMech/blob/659cf7fe438425771812ff07b9aa6f8c8d193a46/README.md", - "card_records": 2939, - "site_html_sha256": "426d439768e46f5e3c65b0241762359d06dffb3b217a3bba01e2552b65991ae9", - "merged_prs": 266 - }, - { - "repo": "CellStructureMech", - "sha": "f0d3b345f6700d0182ae512c592642c7a96a92ab", - "commit_date": "2026-09-21T00:51:02Z", - "site": "https://culturebotai.github.io/CellStructureMech/pages/index.html", - "readme_url": "https://github.com/CultureBotAI/CellStructureMech/blob/f0d3b345f6700d0182ae512c592642c7a96a92ab/README.md", - "card_records": 421, - "site_html_sha256": "7b173cd532ee5478059e08317e3ca79521a44e3fa2947ffcd63805e0c154099a", - "merged_prs": 468 - }, - { - "repo": "CommunityMech", - "sha": "f4c11ab38ae39b9a50abe194ef69b1fc4ec007f2", - "commit_date": "2026-09-21T05:03:49Z", - "site": "https://culturebotai.github.io/CommunityMech/", - "readme_url": "https://github.com/CultureBotAI/CommunityMech/blob/f4c11ab38ae39b9a50abe194ef69b1fc4ec007f2/README.md", - "card_records": 392, - "site_html_sha256": "112dad8898141137e4386c6dc13affb1636211edc5cd39c0143055508442cea8", - "merged_prs": 548, - "notes": "392 kb/communities YAML records, matching published landing count; four additional data/isolates YAML records. Remote tree complete (not truncated)." - }, - { - "repo": "CultureMech", - "sha": "866b335301a53838c2868515e68ec96a11528f17", - "commit_date": "2026-09-21T00:56:59Z", - "site": "https://culturebotai.github.io/CultureMech/app/", - "readme_url": "https://github.com/CultureBotAI/CultureMech/blob/866b335301a53838c2868515e68ec96a11528f17/README.md", - "card_records": 6286, - "site_html_sha256": "23b96a26b6ac394ea47a0e87cbf36235e5a12f42e594c284bc5ff959055375bc", - "merged_prs": 251, - "notes": "Repository: 15,878 normalized / 6,286 merged. Deployed landing tile remains 10,657; /pages/index.html returned 404." - }, - { - "repo": "HabitatMech", - "sha": "87c2308eac50599820994f0090324ebd7f576351", - "commit_date": "2026-09-21T06:18:43Z", - "site": "https://culturebotai.github.io/HabitatMech/pages/index.html", - "readme_url": "https://github.com/CultureBotAI/HabitatMech/blob/87c2308eac50599820994f0090324ebd7f576351/README.md", - "card_records": 3206, - "site_html_sha256": "53564300e6d0aaf2a5b1144fceab088024586941f197113c57c42c17eefbc8e9", - "merged_prs": 153 - }, - { - "repo": "MediaIngredientMech", - "sha": "1f12dd79637f8d518099b31b36fe7482651b8070", - "commit_date": "2026-09-21T00:19:21Z", - "site": "https://culturebotai.github.io/MediaIngredientMech/", - "readme_url": "https://github.com/CultureBotAI/MediaIngredientMech/blob/1f12dd79637f8d518099b31b36fe7482651b8070/README.md", - "card_records": 2951, - "site_html_sha256": "e98a1ac81f8faafad3aae291782b32e22e78e8f20cd822effc4cba4c22ce7b09", - "merged_prs": 363, - "data_url": "https://culturebotai.github.io/MediaIngredientMech/data/ingredients.json", - "mapping_counts": { - "MAPPED": 2616, - "UNMAPPED": 261, - "REJECTED": 74 - }, - "data_sha256": "d6e87751837ac6cb94967b75efcd7f1676aad6fa908b70b4d41913635e7c985f" - }, - { - "repo": "NaturalProductMech", - "sha": "d06c8b3ec605bc234c0ea91ee770f791cba05889", - "commit_date": "2026-09-21T01:05:08Z", - "site": "https://culturebotai.github.io/NaturalProductMech/pages/index.html", - "readme_url": "https://github.com/CultureBotAI/NaturalProductMech/blob/d06c8b3ec605bc234c0ea91ee770f791cba05889/README.md", - "card_records": 3115, - "site_html_sha256": "b9123f9351433aeaf040e7215bace8fb4f7a4edce062ccc356115db69f035292", - "merged_prs": 82 - }, - { - "repo": "TaxonMech", - "sha": "cfa827a0cfbc9cda1df09fed69595abf947957a2", - "commit_date": "2026-09-21T02:45:21Z", - "site": "https://culturebotai.github.io/TaxonMech/pages/index.html", - "readme_url": "https://github.com/CultureBotAI/TaxonMech/blob/cfa827a0cfbc9cda1df09fed69595abf947957a2/README.md", - "card_records": 625960, - "site_html_sha256": "53aab681e40bafb9326b320858660a4273c7df8b9a19ad561d4730b5b32c6a89", - "merged_prs": 17 - }, - { - "repo": "TraitMech", - "sha": "d3b9444a799560654160b65b52d1632dd15eccf8", - "commit_date": "2026-09-21T06:22:42Z", - "site": "https://culturebotai.github.io/TraitMech/pages/index.html", - "readme_url": "https://github.com/CultureBotAI/TraitMech/blob/d3b9444a799560654160b65b52d1632dd15eccf8/README.md", - "card_records": 723, - "site_html_sha256": "689cba669d68671b720a79ea3e93a4af0d9e139574c7591afaa60e0c2e44622a", - "merged_prs": 615, - "notes": "723 source records and published traits; 427 REVIEWED, 479 causal graphs; published embedding coverage 66.0%." - }, - { - "repo": "culturebotai-claw", - "sha": "44db08d59226073425b206a36a257b2b6a8900df", - "commit_date": "2026-09-21T00:11:38Z", - "readme_url": "https://github.com/CultureBotAI/culturebotai-claw/blob/44db08d59226073425b206a36a257b2b6a8900df/README.md", - "notes": "10 fleet members and 16 governed artifacts. Projected capabilities unchanged from previous snapshot; provenance advanced to checked main revision." - }, - { - "repo": "proteintraitsmech", - "sha": "700b6f7bcedc4c414b1ba0d8d9e0b66e7236dda8", - "commit_date": "2026-09-21T01:15:12Z", - "site": "https://culturebotai.github.io/proteintraitsmech/", - "readme_url": "https://github.com/CultureBotAI/proteintraitsmech/blob/700b6f7bcedc4c414b1ba0d8d9e0b66e7236dda8/README.md", - "card_records": 429291, - "site_html_sha256": "cb05b422261e624bbec0787efaa8be851fc7427eaf83a7f9fc2b624d282bfbcf", - "merged_prs": 319, - "data_url": "https://culturebotai.github.io/proteintraitsmech/data/facets.json", - "data_sha256": "aa03d33f1186a4f5e421a7126b62ea0418ad02c52a5848bc74d5656ad8ddecd0", - "notes": "429,291 live-index records, 34 source labels; HTML fallback still 408,978 / 29. Sequence map linked from published landing page." - } - ] + "checked_at_utc": "2026-09-25T03:31:02+00:00", + "local_date": "2026-09-24", + "pinned_at_utc": "2026-09-25T02:06:03+00:00", + "scope": "Public main revisions pinned once for the whole refresh, and the deployed GitHub Pages responses; the vocabulary census, subsets and card stats were regenerated at the same pins.", + "repositories": [ + { + "repo": "AntibioticMech", + "sha": "66d68c2a8d99230ab729267e6cd8ae1051b85225", + "commit_date": "2026-09-25T01:30:31Z", + "readme_url": "https://github.com/CultureBotAI/AntibioticMech/blob/66d68c2a8d99230ab729267e6cd8ae1051b85225/README.md", + "card_records": 2939, + "merged_prs": 422, + "site": "https://culturebotai.github.io/AntibioticMech/pages/index.html", + "site_html_sha256": "426d439768e46f5e3c65b0241762359d06dffb3b217a3bba01e2552b65991ae9", + "notes": "2,939 data/antibiotics records at the pin (2,669 ontology-grounded, 270 minted; 80 REVIEWED, 30 PROPOSED, 2,829 SEEDED), equal to the stat tile. The live page is byte-identical to pages/index.html at the pin and unchanged since September 13." + }, + { + "repo": "CellStructureMech", + "sha": "42cc23b90b6c48c49efd94b7ee6efb808dded7e6", + "commit_date": "2026-09-25T01:58:24Z", + "readme_url": "https://github.com/CultureBotAI/CellStructureMech/blob/42cc23b90b6c48c49efd94b7ee6efb808dded7e6/README.md", + "card_records": 542, + "merged_prs": 611, + "site": "https://culturebotai.github.io/CellStructureMech/pages/index.html", + "site_html_sha256": "52a1fc196d845f0a7b09c13078e78483f784d33b8a97a57204784044f18f0d9f", + "notes": "542 data/structures records at the pin, equal to the stat tile (13 categories, 475 GO-grounded, 196 membrane organelles). All 542 are PROPOSED, so none is reviewed. The live page is byte-identical to pages/index.html at the pin. The site moved past the pin during the refresh and showed 544 when this audit was written; the card keeps the pinned figure, 542.", + "site_figure_at_check": 544 + }, + { + "repo": "CommunityMech", + "sha": "8505a56d644b02fe87f776be9d667db4cf3f5c5d", + "commit_date": "2026-09-24T14:00:15Z", + "readme_url": "https://github.com/CultureBotAI/CommunityMech/blob/8505a56d644b02fe87f776be9d667db4cf3f5c5d/README.md", + "card_records": 422, + "merged_prs": 578, + "site": "https://culturebotai.github.io/CommunityMech/", + "site_html_sha256": "5c7aba370a7e7bd50590eb16005c4e3bdd31b1f17d933b8106de7506d67d07dd", + "notes": "The landing tile counts 422 kb/communities records, equal to the pin. data/isolates adds four more, so the census and mech_stats.json count 426. The landing's '16 categories' tile is hard-coded upstream; the schema enum, the records and the browser facet all have 15. No GitHub release has been published." + }, + { + "repo": "culturebotai-claw", + "sha": "2637172e6fdbfacf163f0b12d289a9828dda2f30", + "commit_date": "2026-09-22T07:18:11Z", + "readme_url": "https://github.com/CultureBotAI/culturebotai-claw/blob/2637172e6fdbfacf163f0b12d289a9828dda2f30/README.md", + "notes": "10 fleet members and 16 governed artifacts. Projected membership and capabilities are unchanged from the previous snapshot; provenance advanced to the pinned main revision. Every Mech vendors claw at 44db08d, and fleet.yaml, README.md and vendored_artifacts.json are identical between 44db08d and this pin." + }, + { + "repo": "CultureMech", + "sha": "faaf033b8c5386aaf2cb6f28fc527678d00cf83b", + "commit_date": "2026-09-22T06:24:22Z", + "readme_url": "https://github.com/CultureBotAI/CultureMech/blob/faaf033b8c5386aaf2cb6f28fc527678d00cf83b/README.md", + "card_records": 6288, + "merged_prs": 253, + "site": "https://culturebotai.github.io/CultureMech/pages/", + "site_html_sha256": "253608644e3542df93206f8480a1d5d39aafe43456aaabcd9d4d3141befb794a", + "notes": "pages/ states 6,288 media records, equal to data/merge_yaml/merged at the pin and to the README corpus snapshot (15,878 normalized, 6,288 merged). The app/ landing tile still reads 10,657, a legacy figure that matches no data layer." + }, + { + "repo": "HabitatMech", + "sha": "b16e3099478a7ea55b82142836e9a118ae062cf6", + "commit_date": "2026-09-25T01:40:32Z", + "readme_url": "https://github.com/CultureBotAI/HabitatMech/blob/b16e3099478a7ea55b82142836e9a118ae062cf6/README.md", + "card_records": 3206, + "merged_prs": 417, + "site": "https://culturebotai.github.io/HabitatMech/pages/index.html", + "site_html_sha256": "53564300e6d0aaf2a5b1144fceab088024586941f197113c57c42c17eefbc8e9", + "notes": "3,206 data/habitats records at the pin (686 REVIEWED, 2,520 SEEDED), equal to the stat tile. The 263 commits since the previous audit add only record-review reports; the live page is byte-identical to the one audited on September 20." + }, + { + "repo": "MediaIngredientMech", + "sha": "dfce1c9342ca7aec41b50d0f6db8adb950bb72fe", + "commit_date": "2026-09-24T08:38:41Z", + "readme_url": "https://github.com/CultureBotAI/MediaIngredientMech/blob/dfce1c9342ca7aec41b50d0f6db8adb950bb72fe/README.md", + "card_records": 2953, + "merged_prs": 379, + "site": "https://culturebotai.github.io/MediaIngredientMech/", + "site_html_sha256": "e98a1ac81f8faafad3aae291782b32e22e78e8f20cd822effc4cba4c22ce7b09", + "data_url": "https://culturebotai.github.io/MediaIngredientMech/data/ingredients.json", + "data_sha256": "fcf9ecfd27503745e2246cc71af6415f1f9f8c3c85b0f9609a3c6dac384c7c88", + "notes": "The landing tiles are computed from data/ingredients.json: 2,953 ingredients, 2,611 MAPPED (88%), 261 UNMAPPED, 80 REJECTED, 1 AMBIGUOUS. The data file is byte-identical to docs/data/ingredients.json at the pin, which holds 2,953 records. browser.html reads directory counts instead (2,680 under mapped/)." + }, + { + "repo": "NaturalProductMech", + "sha": "36662aa8fcdcac9d3ddf4acba0f430e39bc2da2e", + "commit_date": "2026-09-24T07:48:18Z", + "readme_url": "https://github.com/CultureBotAI/NaturalProductMech/blob/36662aa8fcdcac9d3ddf4acba0f430e39bc2da2e/README.md", + "card_records": 3115, + "merged_prs": 84, + "site": "https://culturebotai.github.io/NaturalProductMech/pages/index.html", + "site_html_sha256": "28d335df6bfeb065940fad9e5ae783d6cd3ed7eacabd8c46c94ee4a9aecdbabd", + "notes": "The landing prose states 3,115 natural product structures, equal to data/natural_products at the pin; all are SEEDED. The live page is byte-identical to pages/index.html at the pin." + }, + { + "repo": "proteintraitsmech", + "sha": "5f05fca10a59867751877d1f566fad30e238b28c", + "commit_date": "2026-09-25T01:36:06Z", + "readme_url": "https://github.com/CultureBotAI/proteintraitsmech/blob/5f05fca10a59867751877d1f566fad30e238b28c/README.md", + "card_records": 429293, + "merged_prs": 326, + "site": "https://culturebotai.github.io/proteintraitsmech/", + "site_html_sha256": "cb05b422261e624bbec0787efaa8be851fc7427eaf83a7f9fc2b624d282bfbcf", + "data_url": "https://culturebotai.github.io/proteintraitsmech/data/facets.json", + "data_sha256": "6544ba4f059705c713ff48a3ccc2b3c4141aae7976062c99f677306ad9b05fb3", + "notes": "429,293 records and 34 source labels, computed at runtime from data/facets.json and equal to data/traits at the pin. The static HTML still carries a legacy fallback of 408,978 / 29." + }, + { + "repo": "TaxonMech", + "sha": "972fbd7b85a052c6b95bf1437f672168bd6d8970", + "commit_date": "2026-09-21T08:37:02Z", + "readme_url": "https://github.com/CultureBotAI/TaxonMech/blob/972fbd7b85a052c6b95bf1437f672168bd6d8970/README.md", + "card_records": 625960, + "merged_prs": 18, + "site": "https://culturebotai.github.io/TaxonMech/pages/index.html", + "site_html_sha256": "53aab681e40bafb9326b320858660a4273c7df8b9a19ad561d4730b5b32c6a89", + "notes": "625,960 data/taxa records at the pin, equal to the stat tile and including 14 retained DEPRECATED records; none is REVIEWED. The live page is byte-identical to pages/index.html at the pin." + }, + { + "repo": "TraitMech", + "sha": "a21c5aa34a876c43ea1e8053a58bc63d53be30a1", + "commit_date": "2026-09-22T15:30:43Z", + "readme_url": "https://github.com/CultureBotAI/TraitMech/blob/a21c5aa34a876c43ea1e8053a58bc63d53be30a1/README.md", + "card_records": 763, + "merged_prs": 656, + "site": "https://culturebotai.github.io/TraitMech/pages/index.html", + "site_html_sha256": "7144c4bcfe0c88987fa504ecfee56094401cc7be5c8c749d3eeb797dd3dbcf3c", + "notes": "763 data/traits records at the pin (427 REVIEWED, 248 PROPOSED, 50 DEPRECATED, 38 SEEDED; 519 with causal graphs), equal to the landing page, which shows 62.5% embedded (477 of 763). The live page is byte-identical to pages/index.html at the pin. The site moved past the pin during the refresh and showed 764 when this audit was written; the card keeps the pinned figure, 763.", + "site_figure_at_check": 764 + } + ] } diff --git a/_fleet/data/subsets_summary.json b/_fleet/data/subsets_summary.json index 014326e..88624a3 100644 --- a/_fleet/data/subsets_summary.json +++ b/_fleet/data/subsets_summary.json @@ -1,10 +1,10 @@ { "edges": { "HabitatMech|CommunityMech": { - "n": 276, + "n": 313, "by": { - "NCBITaxon": 229, - "ENVO": 41, + "NCBITaxon": 265, + "ENVO": 42, "UBERON": 4, "CHEBI": 2 }, @@ -18,17 +18,16 @@ "label": "soil" }, { - "id": "NCBITaxon:1386", - "label": "Bacillus " + "id": "ENVO:01001001", + "label": "plant-associated environment" } ] }, "HabitatMech|TraitMech": { - "n": 124, + "n": 122, "by": { "NCBITaxon": 115, "ENVO": 4, - "DOI": 2, "PATO": 2, "CHEBI": 1 }, @@ -48,9 +47,9 @@ ] }, "HabitatMech|CellStructureMech": { - "n": 39, + "n": 41, "by": { - "NCBITaxon": 39 + "NCBITaxon": 41 }, "ex": [ { @@ -68,9 +67,9 @@ ] }, "HabitatMech|ProteinTraitsMech": { - "n": 1285, + "n": 1250, "by": { - "NCBITaxon": 1269, + "NCBITaxon": 1234, "UBERON": 12, "CHEBI": 2, "GO": 2 @@ -85,8 +84,8 @@ "label": "Escherichia coli" }, { - "id": "NCBITaxon:1396", - "label": "Bacillus cereus" + "id": "NCBITaxon:1869227", + "label": "bacterium" } ] }, @@ -176,10 +175,10 @@ ] }, "CommunityMech|TraitMech": { - "n": 153, + "n": 157, "by": { "CHEBI": 61, - "NCBITaxon": 57, + "NCBITaxon": 61, "GO": 35 }, "ex": [ @@ -198,11 +197,11 @@ ] }, "CommunityMech|CellStructureMech": { - "n": 55, + "n": 60, "by": { - "NCBITaxon": 32, + "NCBITaxon": 36, "CHEBI": 13, - "GO": 10 + "GO": 11 }, "ex": [ { @@ -220,22 +219,22 @@ ] }, "CommunityMech|ProteinTraitsMech": { - "n": 650, + "n": 698, "by": { - "CHEBI": 268, - "NCBITaxon": 192, - "GO": 189, + "CHEBI": 280, + "NCBITaxon": 227, + "GO": 190, "UBERON": 1 }, "ex": [ - { - "id": "CHEBI:16526", - "label": "carbon dioxide" - }, { "id": "CHEBI:30089", "label": "acetate" }, + { + "id": "CHEBI:16526", + "label": "carbon dioxide" + }, { "id": "GO:0015979", "label": "photosynthesis" @@ -243,9 +242,9 @@ ] }, "CommunityMech|NaturalProductMech": { - "n": 105, + "n": 129, "by": { - "NCBITaxon": 100, + "NCBITaxon": 124, "CHEBI": 5 }, "ex": [ @@ -253,41 +252,41 @@ "id": "NCBITaxon:286", "label": "Pseudomonas" }, - { - "id": "NCBITaxon:562", - "label": "Escherichia coli" - }, { "id": "NCBITaxon:1423", "label": "Bacillus subtilis" + }, + { + "id": "NCBITaxon:562", + "label": "Escherichia coli" } ] }, "CommunityMech|AntibioticMech": { - "n": 58, + "n": 64, "by": { - "CHEBI": 39, - "NCBITaxon": 19 + "CHEBI": 42, + "NCBITaxon": 22 }, "ex": [ { "id": "NCBITaxon:562", "label": "Escherichia coli" }, - { - "id": "CHEBI:33709", - "label": "amino acid" - }, { "id": "NCBITaxon:287", "label": "Pseudomonas aeruginosa" + }, + { + "id": "CHEBI:33709", + "label": "amino acid" } ] }, "CommunityMech|MediaIngredientMech": { - "n": 234, + "n": 240, "by": { - "CHEBI": 232, + "CHEBI": 238, "ENVO": 2 }, "ex": [ @@ -300,18 +299,17 @@ "label": "amino acid" }, { - "id": "CHEBI:26710", - "label": "sodium chloride" + "id": "CHEBI:3312", + "label": "calcium dichloride" } ] }, "CommunityMech|CultureMech": { - "n": 153, + "n": 151, "by": { "CHEBI": 138, "NCBITaxon": 8, - "ENVO": 5, - "DOI": 2 + "ENVO": 5 }, "ex": [ { @@ -329,11 +327,10 @@ ] }, "TraitMech|CellStructureMech": { - "n": 123, + "n": 114, "by": { - "GO": 44, - "NCBITaxon": 37, - "DOI": 21, + "GO": 53, + "NCBITaxon": 40, "CHEBI": 7, "UniProt": 6, "METPO": 5, @@ -349,19 +346,18 @@ "label": "Escherichia coli (strain K12)" }, { - "id": "GO:0009767", - "label": "photosynthetic electron transport chain" + "id": "NCBITaxon:1423", + "label": "Bacillus subtilis" } ] }, "TraitMech|ProteinTraitsMech": { - "n": 807, + "n": 707, "by": { "GO": 248, "NCBITaxon": 136, "METPO": 111, "CHEBI": 109, - "DOI": 100, "UniProt": 56, "InterPro": 47 }, @@ -383,9 +379,8 @@ "TraitMech|NaturalProductMech": { "n": 57, "by": { - "NCBITaxon": 52, - "CHEBI": 4, - "DOI": 1 + "NCBITaxon": 53, + "CHEBI": 4 }, "ex": [ { @@ -424,9 +419,9 @@ ] }, "TraitMech|MediaIngredientMech": { - "n": 58, + "n": 59, "by": { - "CHEBI": 58 + "CHEBI": 59 }, "ex": [ { @@ -465,14 +460,13 @@ ] }, "CellStructureMech|ProteinTraitsMech": { - "n": 989, - "by": { - "GO": 576, - "DOI": 145, - "UniProt": 143, - "NCBITaxon": 72, - "InterPro": 29, - "CHEBI": 14, + "n": 1058, + "by": { + "GO": 737, + "UniProt": 155, + "NCBITaxon": 77, + "InterPro": 64, + "CHEBI": 15, "Pfam": 10 }, "ex": [ @@ -481,19 +475,19 @@ "label": "protein-containing complex" }, { - "id": "NCBITaxon:3055", - "label": "Chlamydomonas reinhardtii" + "id": "NCBITaxon:562", + "label": "Escherichia coli" }, { - "id": "GO:0016020", - "label": "membrane" + "id": "NCBITaxon:3055", + "label": "Chlamydomonas reinhardtii" } ] }, "CellStructureMech|NaturalProductMech": { - "n": 20, + "n": 23, "by": { - "NCBITaxon": 20 + "NCBITaxon": 23 }, "ex": [ { @@ -505,15 +499,15 @@ "label": "Bacillus subtilis" }, { - "id": "NCBITaxon:287", - "label": "Pseudomonas aeruginosa" + "id": "NCBITaxon:9606", + "label": "Homo sapiens" } ] }, "CellStructureMech|AntibioticMech": { - "n": 17, + "n": 18, "by": { - "NCBITaxon": 12, + "NCBITaxon": 13, "CHEBI": 5 }, "ex": [ @@ -532,9 +526,9 @@ ] }, "CellStructureMech|MediaIngredientMech": { - "n": 13, + "n": 14, "by": { - "CHEBI": 13 + "CHEBI": 14 }, "ex": [ { @@ -552,10 +546,10 @@ ] }, "CellStructureMech|CultureMech": { - "n": 6, + "n": 7, "by": { - "NCBITaxon": 3, - "CHEBI": 3 + "CHEBI": 4, + "NCBITaxon": 3 }, "ex": [ { @@ -563,22 +557,21 @@ "label": "carbon dioxide" }, { - "id": "CHEBI:33403", - "label": "elemental sulfur" + "id": "CHEBI:16261", + "label": "chitosan" }, { - "id": "NCBITaxon:1148", - "label": "Synechocystis sp. PCC 6803" + "id": "CHEBI:33403", + "label": "elemental sulfur" } ] }, "ProteinTraitsMech|NaturalProductMech": { - "n": 900, + "n": 794, "by": { - "NCBITaxon": 497, + "NCBITaxon": 487, "UniProt": 156, "CHEBI": 148, - "DOI": 96, "RHEA": 3 }, "ex": [ @@ -597,14 +590,13 @@ ] }, "ProteinTraitsMech|AntibioticMech": { - "n": 2437, + "n": 2435, "by": { "ARO": 1740, "CHEBI": 594, "NCBITaxon": 79, "UniProt": 20, - "GO": 2, - "DOI": 2 + "GO": 2 }, "ex": [ { @@ -622,9 +614,9 @@ ] }, "ProteinTraitsMech|MediaIngredientMech": { - "n": 792, + "n": 798, "by": { - "CHEBI": 791, + "CHEBI": 797, "UBERON": 1 }, "ex": [ @@ -665,11 +657,10 @@ ] }, "NaturalProductMech|AntibioticMech": { - "n": 288, + "n": 278, "by": { "CHEBI": 180, "NCBITaxon": 96, - "DOI": 10, "UniProt": 2 }, "ex": [ @@ -769,9 +760,9 @@ ] }, "MediaIngredientMech|CultureMech": { - "n": 611, + "n": 612, "by": { - "CHEBI": 544, + "CHEBI": 545, "KEGG": 56, "FOODON": 6, "UBERON": 3, @@ -795,76 +786,76 @@ } }, "cells": { - "HabitatMech|NCBITaxon": 896, - "HabitatMech|ENVO": 1296, + "HabitatMech|BTO": 587, "HabitatMech|CHEBI": 11, - "HabitatMech|UBERON": 704, - "HabitatMech|PATO": 3, + "HabitatMech|ENVO": 1296, "HabitatMech|FOODON": 85, - "HabitatMech|BTO": 587, "HabitatMech|GO": 2, - "CommunityMech|GO": 351, - "CommunityMech|NCBITaxon": 364, - "CommunityMech|ENVO": 350, - "CommunityMech|CHEBI": 320, - "CommunityMech|GTDB": 338, + "HabitatMech|NCBITaxon": 896, + "HabitatMech|PATO": 3, + "HabitatMech|UBERON": 704, + "CommunityMech|CHEBI": 361, + "CommunityMech|ENVO": 412, + "CommunityMech|GO": 398, + "CommunityMech|GTDB": 370, + "CommunityMech|NCBITaxon": 426, "CommunityMech|UBERON": 10, - "TraitMech|GO": 292, - "TraitMech|NCBITaxon": 463, - "TraitMech|METPO": 681, - "TraitMech|UniProt": 182, "TraitMech|CHEBI": 183, - "TraitMech|InterPro": 61, "TraitMech|ENVO": 14, + "TraitMech|GO": 292, + "TraitMech|InterPro": 61, + "TraitMech|METPO": 749, + "TraitMech|NCBITaxon": 484, "TraitMech|PATO": 49, - "CellStructureMech|GO": 414, - "CellStructureMech|NCBITaxon": 417, - "CellStructureMech|UniProt": 52, + "TraitMech|UniProt": 182, + "CellStructureMech|CHEBI": 24, + "CellStructureMech|GO": 535, + "CellStructureMech|InterPro": 33, "CellStructureMech|METPO": 5, - "CellStructureMech|InterPro": 21, - "CellStructureMech|PDB": 6, + "CellStructureMech|NCBITaxon": 531, + "CellStructureMech|PDB": 19, "CellStructureMech|Pfam": 8, - "CellStructureMech|CHEBI": 21, - "ProteinTraitsMech|GO": 110744, + "CellStructureMech|UniProt": 65, + "ProteinTraitsMech|ARO": 7452, "ProteinTraitsMech|CHEBI": 30122, - "ProteinTraitsMech|METPO": 119, - "ProteinTraitsMech|UniProt": 159595, - "ProteinTraitsMech|RHEA": 29550, - "ProteinTraitsMech|KEGG": 231, - "ProteinTraitsMech|NCBITaxon": 111963, + "ProteinTraitsMech|GO": 110744, "ProteinTraitsMech|InterPro": 120090, + "ProteinTraitsMech|KEGG": 231, + "ProteinTraitsMech|METPO": 119, + "ProteinTraitsMech|NCBITaxon": 98697, + "ProteinTraitsMech|PATO": 81, + "ProteinTraitsMech|PDB": 51718, "ProteinTraitsMech|Pfam": 107455, + "ProteinTraitsMech|RHEA": 29550, "ProteinTraitsMech|UBERON": 43, - "ProteinTraitsMech|PATO": 79, - "ProteinTraitsMech|ARO": 7452, - "ProteinTraitsMech|PDB": 51718, - "NaturalProductMech|NCBITaxon": 3115, + "ProteinTraitsMech|UniProt": 159595, + "NaturalProductMech|CHEBI": 405, "NaturalProductMech|MIBiG": 3115, + "NaturalProductMech|NCBITaxon": 3115, "NaturalProductMech|NPAtlas": 1740, - "NaturalProductMech|CHEBI": 405, - "NaturalProductMech|UniProt": 102, "NaturalProductMech|RHEA": 1, - "AntibioticMech|CHEBI": 2814, - "AntibioticMech|CAS": 1797, + "NaturalProductMech|UniProt": 102, "AntibioticMech|ARO": 568, - "AntibioticMech|UniProt": 47, + "AntibioticMech|CAS": 1797, + "AntibioticMech|CHEBI": 2814, + "AntibioticMech|GO": 3, "AntibioticMech|NCBITaxon": 163, "AntibioticMech|PDB": 5, - "AntibioticMech|GO": 3, - "MediaIngredientMech|CHEBI": 2226, - "MediaIngredientMech|CAS": 278, - "MediaIngredientMech|KEGG": 58, - "MediaIngredientMech|FOODON": 100, - "MediaIngredientMech|ENVO": 26, - "MediaIngredientMech|UBERON": 10, + "AntibioticMech|UniProt": 47, "MediaIngredientMech|BTO": 1, + "MediaIngredientMech|CAS": 287, + "MediaIngredientMech|CHEBI": 2232, + "MediaIngredientMech|ENVO": 26, + "MediaIngredientMech|FOODON": 99, + "MediaIngredientMech|KEGG": 58, "MediaIngredientMech|NCBITaxon": 1, - "CultureMech|FOODON": 200, - "CultureMech|CHEBI": 6123, - "CultureMech|UBERON": 72, - "CultureMech|NCBITaxon": 30, + "MediaIngredientMech|UBERON": 10, + "CultureMech|CAS": 1, + "CultureMech|CHEBI": 6125, "CultureMech|ENVO": 12, + "CultureMech|FOODON": 203, "CultureMech|KEGG": 329, - "CultureMech|CAS": 1 + "CultureMech|NCBITaxon": 30, + "CultureMech|UBERON": 72 } } \ No newline at end of file diff --git a/_fleet/fleet_fragment.html b/_fleet/fleet_fragment.html index 968d797..f6256fd 100644 --- a/_fleet/fleet_fragment.html +++ b/_fleet/fleet_fragment.html @@ -365,7 +365,7 @@

Shared vocabulary

-

This vocabulary census covers of the Mechs; TaxonMech is a fleet member whose vocabulary has not yet been measured, so it has no row. Counts are prefix occurrences in the canonical record directories (merged recipes for CultureMech, communities for CommunityMech, habitat records for HabitatMech) as of . Columns are ordered by how many Mechs ground anything in each vocabulary, then by the total records citing it across the fleet; PMID and DOI sit at the right because every Mech cites literature. ChEBI binds the chemistry arm (media, ingredients, antibiotics, proteins); NCBITaxon and ENVO bind the organism arm (habitat, community, traits); GO and METPO bridge phenotype, structure and protein.

+

This vocabulary census covers of the Mechs; TaxonMech is a fleet member whose vocabulary has not yet been measured, so it has no row. Counts are prefix occurrences in the canonical record directories (merged recipes for CultureMech, communities and isolate records for CommunityMech, habitat records for HabitatMech) as of . Columns are ordered by how many Mechs ground anything in each vocabulary, then by the total records citing it across the fleet; PMID and DOI sit at the right because every Mech cites literature. ChEBI binds the chemistry arm (media, ingredients, antibiotics, proteins); NCBITaxon and ENVO bind the organism arm (habitat, community, traits); GO and METPO bridge phenotype, structure and protein.

@@ -442,42 +442,45 @@

Shared vocabulary

var MANIFEST = /*FLEET_MANIFEST*/{}/*END_MANIFEST*/; var MECHS = { - HabitatMech: { key: "habitatmech", scale: "Habitat", tag: "Four habitat vocabularies harmonized into ENVO-grounded records that keep every source's attestation.", records: 3206, unit: "habitat records", root: "HabitatRecord", vocab: ["ENVO", "NCBITaxon", "BTO", "UBERON", "FOODON"], github: "https://github.com/CultureBotAI/HabitatMech", site: "https://culturebotai.github.io/HabitatMech/", page: "", license: "CC0-1.0", sources: "JGI GOLD ecosystem paths, BacDive isolation sources, PREGO, Madin et al.; ENVO/UBERON/FOODON/BTO via kg-microbe", extra: "686 curator-reviewed; 2,151 ontology-grounded; 176 corroborated by two or more sources. Browse habitat records or explore the semantic text map." }, - CommunityMech: { key: "communitymech", scale: "Community", tag: "Autonomous knowledge factory for microbial communities, their interactions, cultivation and evidence.", records: 392, unit: "community records", root: "MicrobialCommunity", vocab: ["NCBITaxon", "CHEBI", "GO", "ENVO", "GTDB"], github: "https://github.com/CultureBotAI/CommunityMech", site: "https://culturebotai.github.io/CommunityMech/", page: "/communitymech/", license: "BSD-3-Clause", sources: "PubMed literature, GTDB, IMG, BioModels, CultureMech media, MediaIngredientMech ingredients", extra: "392 communities across 16 categories, with faceted record browsing, a PaCMAP embedding browser and a graph layout." }, - TaxonMech: { key: "taxonmech", scale: "Taxa and strains", tag: "Microbial taxa and strains identified by NCBI Taxonomy and harmonized with GTDB, LPSN and BacDive.", records: 625960, unit: "taxon records", root: "TaxonRecord", vocab: ["NCBITaxon", "GTDB", "LPSN", "BacDive", "NCBI Assembly"], github: "https://github.com/CultureBotAI/TaxonMech", site: "https://culturebotai.github.io/TaxonMech/", page: "", license: "CC0-1.0 project content; upstream terms apply", sources: "NCBI Taxonomy, GTDB, LPSN, BacDive, MediaDive, GOLD, Madin and BactoTraits through kg-microbe transforms", extra: "625,960 taxa, 100,745 distinct listed strains and 20,648 taxa with a type strain. 21,071 listed strains have genome identifier links. Taxon pages show NCBI, GTDB, BV-BRC/PATRIC, IMG and AllTheBacteria links, plus StrainInfo references and evidence." }, - TraitMech: { key: "traitmech", scale: "Traits", tag: "Autonomous knowledge factory for microbial ecophysiological traits, seeded from METPO, with one curated YAML per trait.", records: 723, unit: "trait records", root: "TraitRecord", vocab: ["METPO", "GO", "NCBITaxon", "CHEBI", "UniProt"], github: "https://github.com/CultureBotAI/TraitMech", site: "https://culturebotai.github.io/TraitMech/", page: "", license: "CC0-1.0", sources: "METPO (vendored OWL), GapMind and GTDB genome tables as candidates", extra: "723 traits across 10 categories; 66.0% embedded. Browse definitions, causal graphs, kg-microbe matches and nearest neighbors, or explore PaCMAP and graph layouts." }, - CellStructureMech: { key: "cellstructuremech", scale: "Cell structures", tag: "Ontology-grounded microbial cell structures: components, distribution, function and causal mechanism.", records: 421, unit: "structure records", root: "CellStructureRecord", vocab: ["GO", "NCBITaxon", "UniProt", "METPO", "Pfam"], github: "https://github.com/CultureBotAI/CellStructureMech", site: "https://culturebotai.github.io/CellStructureMech/", page: "", license: "CC0-1.0 project content; upstream terms apply", sources: "GO cellular component, UniProt subcellular location, Complex Portal, EMDB/EMPIAR, PDB, TraitMech", extra: "421 structures across 13 categories, including 177 membrane organelles; 367 records are GO-grounded. Browse by category, kind and grounding status." }, - ProteinTraitsMech: { key: "proteintraitsmech", scale: "Proteins", tag: "Protein sequence, structure and function trait classes, one curated YAML per trait, evidence-backed.", records: 429291, unit: "protein trait records", root: "ProteinTraitRecord", vocab: ["InterPro", "UniProt", "RHEA", "Pfam", "GO", "CHEBI", "ARO"], github: "https://github.com/CultureBotAI/proteintraitsmech", site: "https://culturebotai.github.io/proteintraitsmech/", page: "", license: "CC0-1.0 project content; upstream terms apply", sources: "InterPro, Pfam, CATH, SCOPe, ECOD, Rhea, ExPASy ENZYME, CARD/ARO, PROSITE, TCDB, COG, Reactome, METPO", extra: "118,281 structure, 147,091 sequence, 384 sequence-structure, 163,526 function and 9 evolution records. The corpus map uses text embeddings; a protein map covers 68,657 Swiss-Prot proteins, and an ESM-2 sequence map covers canonical-example proteins." }, + HabitatMech: { key: "habitatmech", scale: "Habitat", tag: "Four habitat vocabularies harmonized into ontology-grounded records that keep every source's attestation.", records: 3206, unit: "habitat records", root: "HabitatRecord", vocab: ["ENVO", "NCBITaxon", "BTO", "UBERON", "FOODON"], github: "https://github.com/CultureBotAI/HabitatMech", site: "https://culturebotai.github.io/HabitatMech/", page: "", license: "CC0-1.0", sources: "JGI GOLD ecosystem paths, BacDive isolation sources, PREGO, Madin et al.; ENVO/UBERON/FOODON/BTO via kg-microbe", extra: "686 curator-reviewed; 2,151 ontology-grounded; 176 corroborated by two or more sources. Browse habitat records or explore the semantic text map." }, + CommunityMech: { key: "communitymech", scale: "Community", tag: "Autonomous knowledge factory for microbial communities, their interactions, cultivation and evidence.", records: 422, unit: "community records", root: "MicrobialCommunity", vocab: ["NCBITaxon", "CHEBI", "GO", "ENVO", "GTDB"], github: "https://github.com/CultureBotAI/CommunityMech", site: "https://culturebotai.github.io/CommunityMech/", page: "/communitymech/", license: "BSD-3-Clause", sources: "PubMed literature, GTDB, IMG, BioModels, CultureMech media, MediaIngredientMech ingredients", extra: "422 communities across 15 categories, with faceted record browsing, a PaCMAP embedding browser and a graph layout." }, + TaxonMech: { key: "taxonmech", scale: "Taxa and strains", tag: "Microbial taxa and strains identified by NCBI Taxonomy and harmonized with GTDB, LPSN and BacDive.", records: 625960, unit: "taxon records", root: "TaxonRecord", vocab: ["NCBITaxon", "GTDB", "LPSN", "BacDive", "NCBI Assembly"], github: "https://github.com/CultureBotAI/TaxonMech", site: "https://culturebotai.github.io/TaxonMech/", page: "", license: "CC0-1.0 project content; upstream terms apply", sources: "NCBI Taxonomy and Assembly, BacDive, BV-BRC, AllTheBacteria, StrainInfo and the GOLD workbook as primary snapshots; GTDB, LPSN, MediaDive, GOLD organisms, Madin and BactoTraits through kg-microbe", extra: "625,960 taxa, 100,745 distinct listed strains and 20,648 taxa with a type strain. 21,071 listed strains have genome identifier links. Taxon pages show NCBI, GTDB, BV-BRC/PATRIC, IMG and AllTheBacteria links, plus StrainInfo references and evidence." }, + TraitMech: { key: "traitmech", scale: "Traits", tag: "Autonomous knowledge factory for microbial ecophysiological traits, seeded from METPO, with one curated YAML per trait.", records: 763, unit: "trait records", root: "TraitRecord", vocab: ["METPO", "GO", "NCBITaxon", "CHEBI", "UniProt"], github: "https://github.com/CultureBotAI/TraitMech", site: "https://culturebotai.github.io/TraitMech/", page: "", license: "CC0-1.0", sources: "METPO (vendored OWL), GapMind and GTDB genome tables as candidates", extra: "763 traits across 10 categories; 62.5% embedded. Browse definitions, causal graphs, kg-microbe matches and nearest neighbors, or explore PaCMAP and graph layouts." }, + CellStructureMech: { key: "cellstructuremech", scale: "Cell structures", tag: "Ontology-grounded microbial cell structures: components, distribution, function and causal mechanism.", records: 542, unit: "structure records", root: "CellStructureRecord", vocab: ["GO", "NCBITaxon", "UniProt", "METPO", "Pfam"], github: "https://github.com/CultureBotAI/CellStructureMech", site: "https://culturebotai.github.io/CellStructureMech/", page: "", license: "CC0-1.0 project content; upstream terms apply", sources: "GO cellular component, UniProt subcellular location, Complex Portal, EMDB/EMPIAR, PDB, TraitMech", extra: "542 structures across 13 categories, including 196 membrane organelles; 475 records are GO-grounded. Browse records by category, view the GO-grounded list, or explore the text embedding map." }, + ProteinTraitsMech: { key: "proteintraitsmech", scale: "Proteins", tag: "Protein sequence, structure and function trait classes seeded from InterPro, Pfam, Rhea, CATH and more, one YAML per trait. Reviewed records carry evidence-backed causal graphs.", records: 429293, unit: "protein trait records", root: "ProteinTraitRecord", vocab: ["InterPro", "UniProt", "RHEA", "Pfam", "GO", "CHEBI", "ARO"], github: "https://github.com/CultureBotAI/proteintraitsmech", site: "https://culturebotai.github.io/proteintraitsmech/", page: "", license: "CC0-1.0 project content; upstream terms apply", sources: "InterPro, Pfam, CATH, SCOPe, ECOD, Rhea, ExPASy ENZYME, CARD/ARO, PROSITE, TCDB, COG, Reactome, METPO", extra: "118,283 structure, 147,091 sequence, 384 sequence-structure, 163,526 function and 9 evolution records. The corpus map uses text embeddings; a protein map covers 68,657 Swiss-Prot proteins, and an ESM-2 sequence map covers canonical-example proteins." }, NaturalProductMech: { key: "naturalproductmech", scale: "Natural products", tag: "One record per natural product structure: who makes it, from which gene cluster, and what it does.", records: 3115, unit: "natural product structures", root: "NaturalProductRecord", vocab: ["MIBiG", "NCBITaxon", "ChEBI", "NPAtlas", "PubChem", "UniProt"], github: "https://github.com/CultureBotAI/NaturalProductMech", site: "https://culturebotai.github.io/NaturalProductMech/", page: "", license: "CC0-1.0 code · CC BY 4.0 data", sources: "ChEBI, MIBiG gene clusters, LOTUS occurrences, CyanoMetDB, NPClassifier, PubChem BioAssay, BindingDB, NCBI Taxonomy, AntibioticMech", extra: "3,407 producer claims, including 805 supported by evidence addressing the organism; 2,342 records carry cited occurrences. Structure and corpus maps complement the record browser." }, - AntibioticMech: { key: "antibioticmech", scale: "Antibiotics", tag: "One record per antimicrobial structure, harmonizing ChEBI and CARD with mechanism and evidence.", records: 2939, unit: "antimicrobial structures", root: "AntibioticRecord", vocab: ["CHEBI", "ARO", "CAS", "NCBITaxon", "PubChem", "DrugBank"], github: "https://github.com/CultureBotAI/AntibioticMech", site: "https://culturebotai.github.io/AntibioticMech/", page: "", license: "CC0-1.0 code · CC BY 4.0 data", sources: "ChEBI 3-star antimicrobial roles, CARD/ARO antibiotic molecules, PubChem structures, PHI-base, MIBiG", extra: "2,669 ontology-grounded and 270 minted identities; 454 records with mode of action, 282 with molecular targets and 16 with causal graphs. The chemical map places all 2,939 records by chiral molecular fingerprints." }, - MediaIngredientMech: { key: "mediaingredientmech", scale: "Ingredients", tag: "LLM-assisted curation of media-ingredient ontology mappings with full audit trails.", records: 2951, unit: "ingredient records", root: "IngredientRecord", vocab: ["CHEBI", "CAS", "NCIT", "FOODON", "ENVO"], github: "https://github.com/CultureBotAI/MediaIngredientMech", site: "https://culturebotai.github.io/MediaIngredientMech/", page: "/mediaingredientmech/", license: "CC0-1.0", sources: "MIM-owned ingredient records; CultureMech recipe changes as diagnostic inputs; OAK/OLS term services; ChEBI, FOODON, NCIT, MeSH, METPO", extra: "2,616 of 2,951 ingredients mapped (89%). Search by mapping status and quality, or explore ingredient PaCMAP and graph layouts." }, - CultureMech: { key: "culturemech", scale: "Media", tag: "Autonomous knowledge factory curating versioned, ontology-grounded microbial culture-media recipes.", records: 6286, unit: "canonical media", root: "MediaRecipe", vocab: ["CHEBI", "KEGG", "FOODON", "UBERON", "CAS"], github: "https://github.com/CultureBotAI/CultureMech", site: "https://culturebotai.github.io/CultureMech/", page: "/culturemech/", license: "CC0-1.0", sources: "MediaDive/DSMZ, TogoMedium, KOMODO, ATCC, JCM, BacDive (queued)", extra: "6,286 deduplicated canonical media, merged from 15,878 source-specific normalized records that the published browser serves across five categories, with filters for target organisms and ingredients. Explore derived ingredient-based and direct medium-node embeddings, plus a graph layout." } + AntibioticMech: { key: "antibioticmech", scale: "Antibiotics", tag: "One record per antimicrobial structure, harmonizing ChEBI and CARD with mechanism and evidence.", records: 2939, unit: "antimicrobial structures", root: "AntibioticRecord", vocab: ["CHEBI", "ARO", "CAS", "NCBITaxon", "PubChem", "DrugBank"], github: "https://github.com/CultureBotAI/AntibioticMech", site: "https://culturebotai.github.io/AntibioticMech/", page: "", license: "CC0-1.0 code · CC BY 4.0 data", sources: "ChEBI 3-star antimicrobial roles, CARD/ARO antibiotic molecules, PubChem structures, PHI-base, MIBiG, BindingDB, Drugs@FDA", extra: "2,669 ontology-grounded and 270 minted identities; 454 records with mode of action, 282 with molecular targets and 16 with causal graphs. The chemical map places all 2,939 records by chiral molecular fingerprints; a corpus map places them by record text." }, + MediaIngredientMech: { key: "mediaingredientmech", scale: "Ingredients", tag: "LLM-assisted curation of media-ingredient ontology mappings with full audit trails.", records: 2953, unit: "ingredient records", root: "IngredientRecord", vocab: ["CHEBI", "CAS", "NCIT", "FOODON", "ENVO"], github: "https://github.com/CultureBotAI/MediaIngredientMech", site: "https://culturebotai.github.io/MediaIngredientMech/", page: "/mediaingredientmech/", license: "CC0-1.0", sources: "MIM-owned ingredient records; CultureMech recipe changes as diagnostic inputs; OAK/OLS term services; ChEBI, FOODON, NCIT, MeSH, METPO", extra: "2,611 of 2,953 ingredients mapped (88%). Search by mapping status and quality, or explore ingredient PaCMAP and graph layouts." }, + CultureMech: { key: "culturemech", scale: "Media", tag: "Autonomous knowledge factory curating versioned, ontology-grounded microbial culture-media recipes.", records: 6288, unit: "canonical media", root: "MediaRecipe", vocab: ["CHEBI", "KEGG", "FOODON", "UBERON", "CAS"], github: "https://github.com/CultureBotAI/CultureMech", site: "https://culturebotai.github.io/CultureMech/", page: "/culturemech/", license: "CC0-1.0", sources: "MediaDive/DSMZ, TogoMedium, KOMODO, ATCC, JCM, BacDive (queued)", extra: "6,288 deduplicated canonical media, merged from 15,878 source-specific normalized records that the published browser serves across five categories, with filters for target organisms and ingredients. Explore derived ingredient-based and direct medium-node embeddings, plus a graph layout." } }; // Directed cross-references between Mech records, schemas and curation practice. var XREFS = [ { from: "CultureMech", to: "MediaIngredientMech", kind: "data", what: "Ingredient strings and occurrence counts inform scoped MIM curation; MIM records carry CultureMech:NNNNNN back-links by stable id.", ev: "MIM schema CultureMechReference; claw ingredient_curation_pipeline", url: "https://github.com/CultureBotAI/MediaIngredientMech/blob/main/src/mediaingredientmech/schema/mediaingredientmech.yaml" }, { from: "MediaIngredientMech", to: "CultureMech", kind: "data", what: "Curated ChEBI/FOODON artifacts support scoped recipe updates; CultureMech vendors MIM's ingredient-role enums and consumes its label index.", ev: "CultureMech src/culturemech/schema/mim_roles.yaml", url: "https://github.com/CultureBotAI/CultureMech/blob/main/src/culturemech/schema/mim_roles.yaml" }, - { from: "CommunityMech", to: "CultureMech", kind: "data", what: "Community records name the medium they were grown in by CultureMech id (through culturemech_id).", ev: "CommunityMech docs/cross_repo_linking.md", url: "https://github.com/CultureBotAI/CommunityMech/blob/main/docs/cross_repo_linking.md" }, - { from: "CommunityMech", to: "MediaIngredientMech", kind: "schema", what: "RelatedIngredient.mediaingredientmech_id slot is declared for MIM ingredient ids.", ev: "CommunityMech docs/cross_repo_linking.md" }, - { from: "CellStructureMech", to: "TraitMech", kind: "data", what: "Structures list the phenotypes they confer as TraitMech / METPO terms; causal-graph node vocabulary is TraitMech's plus STRUCTURE.", ev: "CellStructureMech schema associated_traits", url: "https://github.com/CultureBotAI/CellStructureMech/blob/main/src/cellstructuremech/schema/cellstructuremech.yaml" }, + { from: "CommunityMech", to: "CultureMech", kind: "data", what: "Community records name the medium they were grown in by CultureMech id (through culturemech_id); CultureMech imported media from CommunityMech with their community ids and backfilled recipe source environments through that link.", ev: "CommunityMech docs/cross_repo_linking.md", url: "https://github.com/CultureBotAI/CommunityMech/blob/main/docs/cross_repo_linking.md" }, + { from: "CommunityMech", to: "MediaIngredientMech", kind: "data", what: "MIM imported CommunityMech's unmapped growth-media ingredient strings as MIM records (source communitymech-unmapped); CommunityMech's own MIM-id slots are marked vestigial, with chebi_term as the join.", ev: "MIM data/ingredients (communitymech-unmapped); CommunityMech schema GrowthMediaComponent, RelatedIngredient", url: "https://github.com/CultureBotAI/MediaIngredientMech/blob/main/docs/CURIE_STANDARD.md" }, + { from: "TraitMech", to: "CellStructureMech", kind: "data", what: "Structures list the phenotypes they confer as TraitMech / METPO terms; causal-graph node vocabulary is TraitMech's plus STRUCTURE.", ev: "CellStructureMech schema associated_traits", url: "https://github.com/CultureBotAI/CellStructureMech/blob/main/src/cellstructuremech/schema/cellstructuremech.yaml" }, { from: "CellStructureMech", to: "ProteinTraitsMech", kind: "schema", what: "A single protein is a component, not a record: it grounds to InterPro / UniProtKB and hands off to ProteinTraitsMech.", ev: "CellStructureMech docs/CURATION.md", url: "https://github.com/CultureBotAI/CellStructureMech/blob/main/docs/CURATION.md" }, - { from: "HabitatMech", to: "TraitMech", kind: "schema", what: "Habitat causal graphs use a superset of TraitMech's node vocabulary so graphs stay comparable; a node may be a TraitMech or METPO term.", ev: "HabitatMech schema CausalNode", url: "https://github.com/CultureBotAI/HabitatMech/blob/main/src/habitatmech/schema/habitatmech.yaml" }, - { from: "HabitatMech", to: "CultureMech", kind: "practice", what: "The one overlapping concept, BTO:0000316 culture medium, is handed to CultureMech rather than curated twice.", ev: "HabitatMech curation/decisions.tsv", url: "https://github.com/CultureBotAI/HabitatMech/blob/main/curation/decisions.tsv" }, - { from: "AntibioticMech", to: "NaturalProductMech", kind: "data", what: "Antimicrobial classification comes from AntibioticMech: its structures are matched on InChIKey to say which natural products are antimicrobial.", ev: "NaturalProductMech data/raw/antibioticmech_inchikeys.tsv", url: "https://github.com/CultureBotAI/NaturalProductMech/blob/main/PLAN.md" }, + { from: "TraitMech", to: "HabitatMech", kind: "schema", what: "Habitat causal graphs reuse most of TraitMech's node vocabulary so graphs stay comparable; a node may be a TraitMech or METPO term.", ev: "HabitatMech schema CausalNode", url: "https://github.com/CultureBotAI/HabitatMech/blob/main/src/habitatmech/schema/habitatmech.yaml" }, + { from: "HabitatMech", to: "CultureMech", kind: "practice", what: "HabitatMech grounds GOLD's culture-media habitat to BTO:0000316 culture medium; the curation decision points to CultureMech for related curation.", ev: "HabitatMech curation/decisions.tsv", url: "https://github.com/CultureBotAI/HabitatMech/blob/main/curation/decisions.tsv" }, + { from: "HabitatMech", to: "TaxonMech", kind: "schema", what: "TaxonMech's schema lets a habitat node in a causal graph be a HabitatMech or ENVO term and declares the habitatmech: prefix; no TaxonMech record has a causal graph yet.", ev: "TaxonMech schema CausalNodeTypeEnum and prefixes", url: "https://github.com/CultureBotAI/TaxonMech/blob/main/src/taxonmech/schema/taxonmech.yaml" }, + { from: "AntibioticMech", to: "NaturalProductMech", kind: "data", what: "Natural products that share an InChIKey with an AntibioticMech structure link to that record and take its antimicrobial class, not its targets or mechanism; NaturalProductMech also adapted AntibioticMech's source-queue pattern.", ev: "NaturalProductMech data/raw/antibioticmech_inchikeys.tsv; .claude/skills/source-queue", url: "https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/raw/antibioticmech_inchikeys.tsv" }, { from: "AntibioticMech", to: "CellStructureMech", kind: "practice", what: "The licensed source-queue curation pattern was written here and adapted by CellStructureMech.", ev: "claw docs/guides/SOURCE_QUEUE.md", url: "https://github.com/CultureBotAI/culturebotai-claw/blob/main/docs/guides/SOURCE_QUEUE.md" }, - { from: "ProteinTraitsMech", to: "TraitMech", kind: "practice", what: "TraitMech adopted ProteinTraitsMech's download.yaml source catalogue shape; a drift audit keeps shared trait tokens aligned.", ev: "TraitMech download.yaml; ProteinTraitsMech justfile", url: "https://github.com/CultureBotAI/TraitMech/blob/main/download.yaml" } + { from: "ProteinTraitsMech", to: "TraitMech", kind: "practice", what: "TraitMech's download.yaml source catalogue follows ProteinTraitsMech's shape, and its check_sources.py validator is adapted from ProteinTraitsMech's.", ev: "TraitMech download.yaml; scripts/check_sources.py", url: "https://github.com/CultureBotAI/TraitMech/blob/main/download.yaml" }, + { from: "TraitMech", to: "ProteinTraitsMech", kind: "schema", what: "ProteinTraitsMech keeps a reviewed snapshot of TraitMech's TraitCategoryEnum; a CI audit reports a non-blocking notice when UPPER or OTHER, the only tokens both vocabularies use, is described differently.", ev: "ProteinTraitsMech conf/traitmech_category_vocabulary.yaml; scripts/audit_cross_mech_categories.py", url: "https://github.com/CultureBotAI/proteintraitsmech/blob/main/conf/traitmech_category_vocabulary.yaml" }, + { from: "TraitMech", to: "TaxonMech", kind: "schema", what: "TaxonMech's schema lets a trait node in a causal graph be a TraitMech or METPO term and declares the traitmech: prefix; no TaxonMech record has a causal graph yet.", ev: "TaxonMech schema CausalNodeTypeEnum and prefixes", url: "https://github.com/CultureBotAI/TaxonMech/blob/main/src/taxonmech/schema/taxonmech.yaml" } ]; // Exchange with the central kg-microbe knowledge graph. var HUB = [ - { mech: "CultureMech", dir: "out", kind: "export", what: "SSSOM mapping sets (11 files) and a KGX sample" }, + { mech: "CultureMech", dir: "out", kind: "namespace", what: "shares the kg-microbe mech-shared schema modules; its SSSOM and KGX exporters have not published a release yet" }, { mech: "MediaIngredientMech", dir: "out", kind: "export", what: "canonical ingredient SSSOM, the mapping contract kg-microbe consumes" }, - { mech: "CommunityMech", dir: "out", kind: "export", what: "KGX nodes and edges release" }, - { mech: "TraitMech", dir: "out", kind: "export", what: "METPO term proposals as SSSOM" }, - { mech: "TaxonMech", dir: "in", kind: "input", what: "taxon identities, mappings, nomenclature and strain assertions from kg-microbe transforms" }, + { mech: "CommunityMech", dir: "out", kind: "namespace", what: "shares the kg-microbe mech-shared schema modules; its KGX exporter and release workflow have not published a release yet" }, + { mech: "TraitMech", dir: "in", kind: "input", what: "DeepWalk graph embeddings of kg-microbe's trait nodes, vendored for the kg-microbe matches and nearest neighbors on the trait pages" }, + { mech: "TaxonMech", dir: "in", kind: "input", what: "GTDB mappings, LPSN nomenclature and MediaDive, GOLD, Madin and BactoTraits attestations from kg-microbe transforms" }, { mech: "HabitatMech", dir: "in", kind: "input", what: "ENVO / UBERON / FOODON / BTO in KGX form plus the curated isolation-source table" }, - { mech: "CommunityMech", dir: "in", kind: "input", what: "merged knowledge-graph edges vendored for the browser" }, + { mech: "CommunityMech", dir: "in", kind: "input", what: "the NCBI-to-GTDB crosswalk from a kg-microbe checkout for GTDB grounding, and kg-microbe taxon embeddings for the community map" }, { mech: "MediaIngredientMech", dir: "in", kind: "input", what: "unified entity mappings and alternate labels" }, { mech: "CultureMech", dir: "in", kind: "input", what: "grounding checks against kg-microbe entities (match-kg-microbe)" }, { mech: "AntibioticMech", dir: "out", kind: "namespace", what: "schema minted under the kg-microbe namespace (w3id.org/kg-microbe/antibioticmech); no data release into the graph yet" }, @@ -779,7 +782,7 @@

Shared vocabulary

} function selectHub() { state.sel = { type: "hub" }; render(); - detail.innerHTML = '

Hub

kg-microbe

The Mechs are curated upstream of kg-microbe and publish into it as SSSOM mapping sets or KGX graphs; in turn, kg-microbe supplies harmonized ontologies and mapping tables back to the Mechs that need them. Some Mechs currently share the kg-microbe namespace without releasing data into the graph; the exchange list records each relationship.

' + + detail.innerHTML = '

Hub

kg-microbe

Only MediaIngredientMech feeds kg-microbe today. Its ingredient SSSOM is loaded when kg-microbe builds its chemical mappings. CultureMech and CommunityMech have SSSOM or KGX exporters but no published release. TraitMech addresses its METPO class proposals to METPO, not to the graph. The other six share the kg-microbe namespace but release no data into the graph. In the other direction, kg-microbe supplies harmonized ontologies, transformed source data, mapping tables and graph embeddings to the Mechs that need them. The exchange list records each relationship.

' + '

Exchange

    ' + HUB.map(function (h) { return '
  • ' + esc(h.mech) + (h.dir === "out" ? ' →' : ' ←') + ' ' + esc(h.what) + '
  • '; }).join("") + '
'; } // Re-render whatever is selected after a filter change. @@ -848,7 +851,7 @@

Shared vocabulary

if (cellSel !== key) return; // a later click replaced this one var cap = doc.records.length < doc.total; cellPanel.innerHTML = '

' + esc(m) + ' · ' + esc(v) + '

' + fmt(doc.total) + ' record' + (doc.total === 1 ? '' : 's') + ' in ' + esc(m) + ' cite ' + esc(v) + ' identifiers

' + - '

' + (cap ? 'Showing the first ' + fmt(doc.records.length) + '. ' : '') + 'Each link opens the record' + (m === "CultureMech" || m === "MediaIngredientMech" ? ' source file on GitHub' : ' page') + '.

' + + '

' + (cap ? 'Showing the first ' + fmt(doc.records.length) + '. ' : '') + 'Each link opens the record' + (m === "CultureMech" || m === "MediaIngredientMech" || m === "NaturalProductMech" ? ' source file on GitHub' : ' page') + '.

' + '

' + recLinks(doc.base, doc.records, doc.records.length) + '

'; })["catch"](function () { if (cellSel !== key) return; cellPanel.innerHTML = '

' + esc(m) + ' · ' + esc(v) + '

' + loadFailed() + '

'; }); }); diff --git a/_fleet/mechs_template.md b/_fleet/mechs_template.md index 3a5c9ca..743fc84 100644 --- a/_fleet/mechs_template.md +++ b/_fleet/mechs_template.md @@ -15,12 +15,12 @@ Each X-Mech is an **autonomous knowledge factory** that curates, validates, and ## The Mechs -Each card carries its Mech's own site color. Hover a card to trace its ties in the graph above; use "Show in graph" to select it. The small print under each headline number gives reviewed records and merged pull requests; a Mech whose schema has no field recording review shows only the pull-request count, rather than a zero that would claim more than it knows. Card and graph totals reflect the published Mech pages checked on September 20, 2026. Each Browse link is the source for its card, except CultureMech, whose count comes from its current repository inventory; its published landing tile is stale. CommunityMech lists 392 communities online and keeps four additional isolate records in its repository. These published-browser totals may differ from the older record-corpus census below. Fleet membership and capability declarations come from . +Each card carries its Mech's own site color. Hover a card to trace its ties in the graph above; use "Show in graph" to select it. The small print under each headline number gives reviewed records and merged pull requests; a Mech whose schema has no field recording review shows only the pull-request count, rather than a zero that would claim more than it knows. Card and graph totals reflect the published Mech pages checked on September 24, 2026. Each Browse link is the source for its card. For CultureMech that is its index of merged media records, not its landing page, whose recipe total is stale. CommunityMech lists 422 communities online and keeps four additional isolate records in its repository. These published-browser totals may differ from the record-corpus census below. Fleet membership and capability declarations come from .

HabitatMech

Habitat
-

Four habitat vocabularies harmonized into ENVO-grounded records that keep every source's attestation.

+

Four habitat vocabularies harmonized into ontology-grounded records that keep every source's attestation.

3,206habitat records · 686 reviewed

ENVONCBITaxonBTOUBERONFOODONGOLDBacDive
@@ -29,7 +29,7 @@ Each card carries its Mech's own site color. Hover a card to trace its ties in t

CommunityMech

Community

Autonomous knowledge factory for microbial communities, their interactions, cultivation conditions and evidence.

-
392community records · 16 categories
+
422community records · 15 categories

NCBITaxonChEBIGOENVOGTDBPMID
@@ -45,7 +45,7 @@ Each card carries its Mech's own site color. Hover a card to trace its ties in t

TraitMech

Traits

Autonomous knowledge factory for microbial ecophysiological traits, seeded from METPO, with one curated YAML per trait and causal mechanism graphs.

-
723trait records · 10 categories
+
763trait records · 10 categories

METPOGONCBITaxonChEBIUniProtPATO
@@ -53,7 +53,7 @@ Each card carries its Mech's own site color. Hover a card to trace its ties in t

CellStructureMech

Cell structures

Organelles, envelope layers, appendages, microcompartments and complexes: components, distribution, function and causal mechanism.

-
421structure records · 367 GO-grounded
+
542structure records · 475 GO-grounded

GONCBITaxonUniProtMETPOPfamPDB
@@ -61,7 +61,7 @@ Each card carries its Mech's own site color. Hover a card to trace its ties in t

ProteinTraitsMech

Proteins

Protein sequence, structure and function trait classes seeded from InterPro, Pfam, Rhea, CATH, SCOPe, CARD and more.

-
429,291protein trait records · 34 sources
+
429,293protein trait records · 34 sources

InterProUniProtRheaPfamGOChEBIARO
@@ -85,7 +85,7 @@ Each card carries its Mech's own site color. Hover a card to trace its ties in t

MediaIngredientMech

Ingredients

LLM-assisted curation of media-ingredient ontology mappings with full audit trails; owns ingredient identity for the fleet.

-
2,951ingredient records · 2,616 mapped
+
2,953ingredient records · 2,611 mapped

ChEBICASNCITFOODONENVOMeSH
@@ -93,10 +93,10 @@ Each card carries its Mech's own site color. Hover a card to trace its ties in t

CultureMech

Media

Autonomous knowledge factory curating versioned, ontology-grounded culture-media recipes from MediaDive, TogoMedium, KOMODO and the major collections.

-
6,286canonical media · 5 categories
+
6,288canonical media · 5 categories

ChEBIKEGGFOODONUBERONCASNCBITaxon
- +
@@ -105,9 +105,9 @@ Each card carries its Mech's own site color. Hover a card to trace its ties in t Alongside record browsing, the Mechs publish complementary ways to explore their data: - **Taxa and strains:** TaxonMech lists the [20,648 taxa with a type strain](https://culturebotai.github.io/TaxonMech/pages/type-strains.html), each naming the BacDive deposit that LPSN records as the type. Taxon pages carry strain-level NCBI, GTDB, BV-BRC/PATRIC, IMG and AllTheBacteria genome identifiers, plus StrainInfo references and their evidence. The [source catalogue](https://culturebotai.github.io/TaxonMech/pages/sources.html) describes provenance. -- **Community, trait and media similarity:** explore [CommunityMech](https://culturebotai.github.io/CommunityMech/community_umap.html), [TraitMech](https://culturebotai.github.io/TraitMech/pages/umap.html), [ingredients](https://culturebotai.github.io/MediaIngredientMech/ingredient_umap.html) and [culture media](https://culturebotai.github.io/CultureMech/app/umap.html) through their embedding browsers. +- **Community, trait, cell structure and media similarity:** explore [CommunityMech](https://culturebotai.github.io/CommunityMech/community_umap.html), [TraitMech](https://culturebotai.github.io/TraitMech/pages/umap.html), [cell structures](https://culturebotai.github.io/CellStructureMech/pages/embedding-map.html), [ingredients](https://culturebotai.github.io/MediaIngredientMech/ingredient_umap.html) and [culture media](https://culturebotai.github.io/CultureMech/app/umap.html) through their embedding browsers. - **Protein traits, proteins and sequences:** ProteinTraitsMech provides a [text-embedding corpus map](https://culturebotai.github.io/proteintraitsmech/map.html), a [map of 68,657 Swiss-Prot proteins by their traits](https://culturebotai.github.io/proteintraitsmech/map.html#proteins), and an [ESM-2 sequence map](https://culturebotai.github.io/proteintraitsmech/map.html#sequences) of canonical-example proteins. -- **Chemical structures:** compare compounds in the [AntibioticMech chemical map](https://culturebotai.github.io/AntibioticMech/pages/chemical-map.html) and the [NaturalProductMech structure map](https://culturebotai.github.io/NaturalProductMech/pages/chemical-map.html); NaturalProductMech also offers a [corpus map](https://culturebotai.github.io/NaturalProductMech/pages/map.html). +- **Chemical structures:** compare compounds in the [AntibioticMech chemical map](https://culturebotai.github.io/AntibioticMech/pages/chemical-map.html) and the [NaturalProductMech structure map](https://culturebotai.github.io/NaturalProductMech/pages/chemical-map.html). Both Mechs also offer a corpus map that places compounds by their record text rather than their structure: [AntibioticMech](https://culturebotai.github.io/AntibioticMech/pages/map.html) and [NaturalProductMech](https://culturebotai.github.io/NaturalProductMech/pages/map.html). - **Habitat meaning:** HabitatMech offers a [semantic text map](https://culturebotai.github.io/HabitatMech/pages/text-map/) alongside its ontology-grounded record browser. @@ -118,14 +118,18 @@ Beyond shared vocabulary, Mechs name one another directly, in record fields, in
CultureMech→MediaIngredientMech
Ingredient strings and occurrence counts inform scoped MIM curation; retired collection writers no longer overwrite MIM-owned records from CultureMech aggregates; MIM records link back to recipes by stable id with the CultureMechReference class.Record data · claw ingredient_curation_pipeline
MediaIngredientMech→CultureMech
Curated ChEBI and FOODON mapping artifacts support scoped recipe updates. CultureMech vendors MIM's ingredient-role enums and consumes MIM's immutable label index.Record data · src/culturemech/schema/mim_roles.yaml
-
CommunityMech→CultureMech
Community records name the medium they were cultivated in through culturemech_id references.Record data · docs/cross_repo_linking.md
-
CommunityMech→MediaIngredientMech
The RelatedIngredient.mediaingredientmech_id slot is declared for MIM ingredient ids.Schema slot · docs/cross_repo_linking.md
-
CellStructureMech→TraitMech
A structure lists the phenotypes it confers as TraitMech or METPO terms, and its causal-graph node vocabulary is TraitMech's plus a STRUCTURE node type.Record data · schema slot associated_traits
+
CommunityMech→CultureMech
Community records name the medium they were cultivated in through culturemech_id references. CultureMech imported media from CommunityMech with their community ids, and backfilled recipe source environments through that link.Record data · docs/cross_repo_linking.md
+
CommunityMech→MediaIngredientMech
MIM imported CommunityMech's unmapped growth-media ingredient strings as MIM records, citing communitymech-unmapped as their source. CommunityMech's own MIM-id slots (media_ingredient_mech_id, mediaingredientmech_id) are marked vestigial, with chebi_term as the join.Record data · MIM data/ingredients
+
TraitMech→CellStructureMech
A structure lists the phenotypes it confers as TraitMech or METPO terms, and its causal-graph node vocabulary is TraitMech's plus a STRUCTURE node type.Record data · schema slot associated_traits
CellStructureMech→ProteinTraitsMech
A single protein is a component of a structure, never a record of its own: it grounds to InterPro or UniProtKB and hands off to ProteinTraitsMech.Scope boundary · docs/CURATION.md
-
HabitatMech→TraitMech
Habitat causal graphs use a superset of TraitMech's node vocabulary so the graphs stay comparable; a node may be a TraitMech or METPO trait.Schema · CausalNode enum
-
HabitatMech→CultureMech
The single overlapping concept, BTO:0000316 culture medium, is handed to CultureMech rather than curated twice. A culture medium is a synthetic habitat.Curation decision · curation/decisions.tsv
+
TraitMech→HabitatMech
Habitat causal graphs reuse most of TraitMech's node vocabulary so the graphs stay comparable; a node may be a TraitMech or METPO trait.Schema · CausalNodeTypeEnum
+
HabitatMech→CultureMech
HabitatMech grounds GOLD's culture-media habitat to BTO:0000316 culture medium, and the curation decision points to CultureMech for related curation.Curation decision · curation/decisions.tsv
+
HabitatMech→TaxonMech
TaxonMech's schema lets a habitat node in a causal graph be a HabitatMech or ENVO term, and it declares the habitatmech: prefix. No TaxonMech record has a causal graph yet.Schema · CausalNodeTypeEnum
+
AntibioticMech→NaturalProductMech
A natural product that shares an InChIKey with an AntibioticMech structure links to that record and takes its antimicrobial class. Only the class is copied, not AntibioticMech's targets, mode of action or resistance mechanisms. NaturalProductMech also adapted AntibioticMech's licensed source-queue pattern.Record data · data/raw/antibioticmech_inchikeys.tsv
AntibioticMech→CellStructureMech
AntibioticMech wrote the licensed source-queue pattern (rank candidate sources, verify licences, record decisions); CellStructureMech adapted it.Practice · claw docs/guides/SOURCE_QUEUE.md
-
ProteinTraitsMech→TraitMech
TraitMech adopted ProteinTraitsMech's licence-bearing download.yaml source catalogue, and a drift audit keeps the trait tokens the two share aligned in meaning.Practice · TraitMech download.yaml
+
ProteinTraitsMech→TraitMech
TraitMech's download.yaml source catalogue follows the shape of ProteinTraitsMech's, so the two can be read side by side. TraitMech's check_sources.py validator is adapted from ProteinTraitsMech's and, unlike the original, fails a source that records no licence.Practice · TraitMech download.yaml and scripts/check_sources.py
+
TraitMech→ProteinTraitsMech
ProteinTraitsMech keeps a reviewed snapshot of TraitMech's TraitCategoryEnum. The two category vocabularies share only UPPER and OTHER. A CI audit reports a notice, never a failure, when either is described differently in the two Mechs.Schema · conf/traitmech_category_vocabulary.yaml
+
TraitMech→TaxonMech
TaxonMech's schema lets a trait node in a causal graph be a TraitMech or METPO term, and it declares the traitmech: prefix. No TaxonMech record has a causal graph yet.Schema · CausalNodeTypeEnum
## Orchestration: culturebotai-claw @@ -133,14 +137,14 @@ Beyond shared vocabulary, Mechs name one another directly, in record fields, in [culturebotai-claw](https://github.com/CultureBotAI/culturebotai-claw) is the fleet's coordinator. It does not hold science of its own; it holds the definition of the fleet, the artifacts every Mech must share byte-for-byte, and tooling for cross-repository curation and validation.
-

Fleet manifest

fleet.yaml is the single source of truth for which repositories form the fleet. All Mechs shown here are declared, including NaturalProductMech and TaxonMech. Every member declares every capability exactly once as enabled, disabled or not applicable, with a reason that names the files behind it, so nothing is silently off.

+

Fleet manifest

fleet.yaml is the single source of truth for which repositories form the fleet. All Mechs shown here are declared, including NaturalProductMech and TaxonMech. Every member declares every capability exactly once as enabled, disabled or not applicable, and every disabled or not-applicable entry gives a reason, so nothing is silently off.

Vendored governance

Shared LinkML modules (mech_shared.yaml, history.yaml), validators and behavioral contracts live in claw and are vendored into each Mech byte-identically, pinned to one immutable claw commit and checked in CI. The canonical registry defines artifacts, with each Mech receiving the contracts that apply to it.

Pipelines and skills

CLAW provides pipeline discovery, repository checks, shared curation tools and validated dry runs. Agent and pipeline execution through openclaw-cli is not implemented; environment-curation and unified ingredient-mapping apply modes are disabled pending transactional writers. Deep-research tooling supports provider triage and dry-run result capture; provider execution is not implemented.

The current support matrix distinguishes supported tools from planned execution. The autonomous knowledge factory label describes each Mech's curation model with human oversight; it does not imply that every CLAW workflow runs unattended. -Which fleet contracts each member has adopted, from the manifest. Every disabled entry records a file-level reason, such as no download.yaml or no source queue yet: +Which fleet contracts each member has adopted, from the manifest. Every disabled entry records a reason, such as no download.yaml or no source queue yet:
@@ -159,17 +163,17 @@ The Mechs share curation conventions, with adoption recorded per capability in t
  • One YAML record per entityA recipe, an ingredient, a community, a taxon, a trait, a structure, a protein trait, a natural product, an antibiotic, a habitat. The file is the unit of curation, review and history.
  • A LinkML schema per MechRecords validate against the Mech's schema; every schema imports the same vendored mech_shared.yaml for discussions and datasets.
  • -
  • Ontology-grounded identityRecords are keyed by a public CURIE (ChEBI, GO, METPO, ENVO, NCBITaxon) where one exists, otherwise a minted content-hashed CURIE that can be re-grounded later.
  • -
  • The ID–label invariantEvery identifier is stored with its label, and CI checks that the pair still agrees with the source ontology.
  • -
  • Evidence and provenanceAssertions carry evidence items with PMIDs or DOIs; sources are catalogued with their licences before they are ingested.
  • -
  • Causal mechanism graphsTraits, structures, antibiotics and habitats can carry directed, evidence-backed graphs of mechanism, sharing one node vocabulary so graphs compare across Mechs.
  • +
  • Ontology-grounded identityRecords are keyed by a public CURIE (ChEBI, GO, METPO, ENVO, NCBITaxon) where one exists, otherwise by a local identifier whose form varies by Mech.
  • +
  • The ID–label invariantWhere a record stores an identifier with its label, most Mechs check in CI that the pair still agrees with the source ontology.
  • +
  • Evidence and provenanceEvidence cites its source, such as a publication (PMID or DOI), a database record or a web page, as each Mech's schema allows. Mechs that adopt the source-catalogue or source-queue contract record each source's licence before ingesting it.
  • +
  • Causal mechanism graphsTraits, protein traits, structures, natural products, antibiotics and habitats can carry directed, evidence-backed graphs of mechanism. Each of these Mechs defines its own node types; most share a core set, such as chemical, pathway and biological process.
  • Append-only curation historyMechs adopting the history contract record changes as append-only events, preserving provenance across agent and human curation.
  • A static browser and an open licenceEach Mech publishes a GitHub Pages browser. Licences vary: project-authored content is commonly CC0-1.0, CommunityMech uses BSD-3-Clause, and AntibioticMech and NaturalProductMech records use CC BY 4.0. Redistributed source material retains its applicable terms.
## Related resources -- **[kg-microbe](/kg-microbe/)** - The central knowledge graph the Mechs publish into and draw from +- **[kg-microbe](/kg-microbe/)** - The central knowledge graph several Mechs draw from; MediaIngredientMech's ingredient mappings feed into it - **[MicroGrowAgents](/microgrowagents/)** - Multi-agent media design built on CultureMech, MediaIngredientMech and kg-microbe - **[Resources](/resources/#-ai-curation-tools)** - The full tool catalogue, including MicroMediaParam and the kg-microbe utilities - **[METPO](https://github.com/berkeleybop/metpo)** - The Microbial Ecophysiological Trait and Phenotype Ontology that seeds TraitMech and grounds trait references across the fleet diff --git a/assets/fleet/cells/CellStructureMech--CHEBI.json b/assets/fleet/cells/CellStructureMech--CHEBI.json index 3c22683..d63f485 100644 --- a/assets/fleet/cells/CellStructureMech--CHEBI.json +++ b/assets/fleet/cells/CellStructureMech--CHEBI.json @@ -1 +1 @@ -{"mech":"CellStructureMech","prefix":"CHEBI","base":"https://culturebotai.github.io/CellStructureMech/pages/structures/","total":21,"records":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/cell_outer_membrane.html","cell outer membrane"],["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["envelope/mycolate_outer_membrane.html","mycolate outer membrane"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"],["envelope/peptidoglycan_based_cell_wall.html","peptidoglycan-based cell wall"],["inclusion/cyanophycin_granule.html","cyanophycin granule"],["inclusion/glycogen_granule.html","glycogen granule"],["inclusion/lipid_droplet.html","lipid droplet"],["inclusion/monolayer_surrounded_lipid_storage_body_outer_lipid_monolayer.html","monolayer-surrounded lipid storage body outer lipid monolayer"],["inclusion/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"],["inclusion/sulfur_globule.html","sulfur globule"],["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/trichocyst.html","trichocyst"],["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"],["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"],["other/pyrenoid.html","pyrenoid"],["spore/microsporidian_type_endospore.html","microsporidian-type endospore"]]} \ No newline at end of file +{"mech":"CellStructureMech","prefix":"CHEBI","base":"https://culturebotai.github.io/CellStructureMech/pages/structures/","total":24,"records":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/cell_outer_membrane.html","cell outer membrane"],["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["envelope/mycolate_outer_membrane.html","mycolate outer membrane"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"],["envelope/peptidoglycan_based_cell_wall.html","peptidoglycan-based cell wall"],["inclusion/cyanophycin_granule.html","cyanophycin granule"],["inclusion/glycogen_granule.html","glycogen granule"],["inclusion/lipid_droplet.html","lipid droplet"],["inclusion/monolayer_surrounded_lipid_storage_body_outer_lipid_monolayer.html","monolayer-surrounded lipid storage body outer lipid monolayer"],["inclusion/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"],["inclusion/sulfur_globule.html","sulfur globule"],["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/chitosome.html","chitosome"],["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/trichocyst.html","trichocyst"],["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"],["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"],["other/pyrenoid.html","pyrenoid"],["spore/ascospore_wall.html","ascospore wall"],["spore/chitosan_layer_of_spore_wall.html","chitosan layer of spore wall"],["spore/microsporidian_type_endospore.html","microsporidian-type endospore"]]} \ No newline at end of file diff --git a/assets/fleet/cells/CellStructureMech--GO.json b/assets/fleet/cells/CellStructureMech--GO.json index 956ff5f..8d641a9 100644 --- a/assets/fleet/cells/CellStructureMech--GO.json +++ b/assets/fleet/cells/CellStructureMech--GO.json @@ -1 +1 @@ -{"mech":"CellStructureMech","prefix":"GO","base":"https://culturebotai.github.io/CellStructureMech/pages/structures/","total":414,"records":[["appendage/archaeal_cannula.html","archaeal cannula"],["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"],["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"],["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"],["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"],["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"],["appendage/ciliary_membrane.html","ciliary membrane"],["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"],["appendage/curli.html","curli"],["appendage/hamus.html","hamus"],["appendage/mastigoneme.html","mastigoneme"],["appendage/p_pilus.html","P pilus"],["appendage/paraflagellar_rod.html","paraflagellar rod"],["appendage/periplasmic_flagellum.html","periplasmic flagellum"],["appendage/pilus.html","pilus"],["appendage/prostheca.html","prostheca"],["appendage/stalk_crossband.html","stalk crossband"],["appendage/tad_pilus.html","Tad pilus"],["appendage/type_i_pilus.html","type I pilus"],["appendage/type_iv_pilus.html","type IV pilus"],["cytoskeleton/actin_cortical_patch.html","actin cortical patch"],["cytoskeleton/actomyosin_contractile_ring.html","actomyosin contractile ring"],["cytoskeleton/axoneme.html","axoneme"],["cytoskeleton/bactofilin_filament.html","bactofilin filament"],["cytoskeleton/bilobe_structure.html","bilobe structure"],["cytoskeleton/btubab_bacterial_microtubule.html","BtubAB bacterial microtubule"],["cytoskeleton/cetz_filament.html","CetZ filament"],["cytoskeleton/ciliary_basal_body.html","ciliary basal body"],["cytoskeleton/ciliary_pocket_collar.html","ciliary pocket collar"],["cytoskeleton/conoid.html","conoid"],["cytoskeleton/crescentin_filament.html","crescentin filament"],["cytoskeleton/cytoophidium.html","cytoophidium"],["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/flagellum_attachment_zone.html","flagellum attachment zone"],["cytoskeleton/mamk_filament.html","MamK filament"],["cytoskeleton/microtubule.html","microtubule"],["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/mreb_filament.html","MreB filament"],["cytoskeleton/parm_filament.html","ParM filament"],["cytoskeleton/phuz_spindle.html","PhuZ spindle"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["cytoskeleton/septin_ring.html","septin ring"],["cytoskeleton/spindle_pole_body.html","spindle pole body"],["cytoskeleton/tripartite_attachment_complex.html","tripartite attachment complex"],["cytoskeleton/tubz_filament.html","TubZ filament"],["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_crossbridge.html","ventral disc crossbridge"],["cytoskeleton/ventral_disc_dorsal_microribbon.html","ventral disc dorsal microribbon"],["cytoskeleton/ventral_disc_lateral_crest.html","ventral disc lateral crest"],["cytoskeleton/ventral_disc_microtubule_array.html","ventral disc microtubule array"],["cytoskeleton/ventral_disc_overlap_zone.html","ventral disc overlap zone"],["cytoskeleton/ventral_disc_supernumerary_microtubule_array.html","ventral disc supernumerary microtubule array"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["energy_complex/rc_lh1_pufx_core_complex.html","RC-LH1-PufX core complex"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v0_domain.html","vacuolar proton-transporting V-type ATPase, V0 domain"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v1_domain.html","vacuolar proton-transporting V-type ATPase, V1 domain"],["envelope/capsule.html","capsule"],["envelope/cell_outer_membrane.html","cell outer membrane"],["envelope/cellular_bud_membrane.html","cellular bud membrane"],["envelope/dolipore_septum.html","dolipore septum"],["envelope/eisosome_membrane_domain_mcc.html","eisosome membrane domain/MCC"],["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["envelope/glycocalyx.html","glycocalyx"],["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["envelope/mycolate_outer_membrane.html","mycolate outer membrane"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"],["envelope/peptidoglycan_based_cell_wall.html","peptidoglycan-based cell wall"],["envelope/plasma_membrane.html","plasma membrane"],["envelope/s_layer.html","S-layer"],["envelope/slime_layer.html","slime layer"],["inclusion/gas_vesicle.html","gas vesicle"],["inclusion/gas_vesicle_shell.html","gas vesicle shell"],["inclusion/lipid_droplet.html","lipid droplet"],["inclusion/monolayer_surrounded_lipid_storage_body_outer_lipid_monolayer.html","monolayer-surrounded lipid storage body outer lipid monolayer"],["inclusion/plastoglobule.html","plastoglobule"],["inclusion/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"],["inclusion/r_body.html","R-body"],["inclusion/sulfur_globule.html","sulfur globule"],["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"],["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"],["membrane_organelle/apicomplexan_dense_granule.html","apicomplexan dense granule"],["membrane_organelle/apicomplexan_dense_granule_membrane.html","apicomplexan dense granule membrane"],["membrane_organelle/apicoplast.html","apicoplast"],["membrane_organelle/apicoplast_membrane.html","apicoplast membrane"],["membrane_organelle/autophagosome.html","autophagosome"],["membrane_organelle/autophagosome_lumen.html","autophagosome lumen"],["membrane_organelle/autophagosome_membrane.html","autophagosome membrane"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_inner_membrane.html","chloroplast inner membrane"],["membrane_organelle/chloroplast_intermembrane_space.html","chloroplast intermembrane space"],["membrane_organelle/chloroplast_membrane.html","chloroplast membrane"],["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"],["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"],["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"],["membrane_organelle/chloroplast_thylakoid_lumen.html","chloroplast thylakoid lumen"],["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"],["membrane_organelle/cis_golgi_network.html","cis-Golgi network"],["membrane_organelle/cis_golgi_network_membrane.html","cis-Golgi network membrane"],["membrane_organelle/clathrin_coated_endocytic_vesicle.html","clathrin-coated endocytic vesicle"],["membrane_organelle/clathrin_coated_endocytic_vesicle_lumen.html","clathrin-coated endocytic vesicle lumen"],["membrane_organelle/clathrin_coated_endocytic_vesicle_membrane.html","clathrin-coated endocytic vesicle membrane"],["membrane_organelle/clathrin_coated_vesicle.html","clathrin-coated vesicle"],["membrane_organelle/clathrin_coated_vesicle_lumen.html","clathrin-coated vesicle lumen"],["membrane_organelle/clathrin_coated_vesicle_membrane.html","clathrin-coated vesicle membrane"],["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"],["membrane_organelle/contractile_vacuolar_membrane.html","contractile vacuolar membrane"],["membrane_organelle/contractile_vacuole.html","contractile vacuole"],["membrane_organelle/contractile_vacuole_lumen.html","contractile vacuole lumen"],["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/copi_coated_vesicle_lumen.html","COPI-coated vesicle lumen"],["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"],["membrane_organelle/copii_coated_vesicle_lumen.html","COPII-coated vesicle lumen"],["membrane_organelle/cvt_vesicle.html","Cvt vesicle"],["membrane_organelle/cvt_vesicle_lumen.html","Cvt vesicle lumen"],["membrane_organelle/cvt_vesicle_membrane.html","Cvt vesicle membrane"],["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/cyanelle_thylakoid_lumen.html","cyanelle thylakoid lumen"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"],["membrane_organelle/cytoplasmic_vesicle.html","cytoplasmic vesicle"],["membrane_organelle/cytoplasmic_vesicle_lumen.html","cytoplasmic vesicle lumen"],["membrane_organelle/cytoplasmic_vesicle_membrane.html","cytoplasmic vesicle membrane"],["membrane_organelle/endocytic_vesicle.html","endocytic vesicle"],["membrane_organelle/endocytic_vesicle_lumen.html","endocytic vesicle lumen"],["membrane_organelle/endocytic_vesicle_membrane.html","endocytic vesicle membrane"],["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"],["membrane_organelle/endoplasmic_reticulum_lumen.html","endoplasmic reticulum lumen"],["membrane_organelle/endoplasmic_reticulum_membrane.html","endoplasmic reticulum membrane"],["membrane_organelle/endosome.html","endosome"],["membrane_organelle/endosome_lumen.html","endosome lumen"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"],["membrane_organelle/esterosome.html","esterosome"],["membrane_organelle/esterosome_lumen.html","esterosome lumen"],["membrane_organelle/esterosome_membrane.html","esterosome membrane"],["membrane_organelle/exoneme.html","exoneme"],["membrane_organelle/eyespot_apparatus.html","eyespot apparatus"],["membrane_organelle/ferrosome.html","ferrosome"],["membrane_organelle/flagellar_pocket.html","flagellar pocket"],["membrane_organelle/food_vacuole.html","food vacuole"],["membrane_organelle/fungal_type_vacuole.html","fungal-type vacuole"],["membrane_organelle/fungal_type_vacuole_lumen.html","fungal-type vacuole lumen"],["membrane_organelle/fungal_type_vacuole_membrane.html","fungal-type vacuole membrane"],["membrane_organelle/glycosome.html","glycosome"],["membrane_organelle/glycosome_lumen.html","glycosome lumen"],["membrane_organelle/glycosome_membrane.html","glycosome membrane"],["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysomal_membrane.html","glyoxysomal membrane"],["membrane_organelle/glyoxysome.html","glyoxysome"],["membrane_organelle/golgi_apparatus.html","Golgi apparatus"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"],["membrane_organelle/golgi_cisterna.html","Golgi cisterna"],["membrane_organelle/golgi_cisterna_membrane.html","Golgi cisterna membrane"],["membrane_organelle/golgi_membrane.html","Golgi membrane"],["membrane_organelle/hydrogenosomal_membrane.html","hydrogenosomal membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/hydrogenosome_lumen.html","hydrogenosome lumen"],["membrane_organelle/inner_membrane_pellicle_complex.html","inner membrane pellicle complex"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"],["membrane_organelle/methane_oxidizing_organelle.html","methane-oxidizing organelle"],["membrane_organelle/microneme.html","microneme"],["membrane_organelle/microneme_lumen.html","microneme lumen"],["membrane_organelle/microneme_membrane.html","microneme membrane"],["membrane_organelle/microsporidian_posterior_vacuole.html","microsporidian posterior vacuole"],["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"],["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrial_intermembrane_space.html","mitochondrial intermembrane space"],["membrane_organelle/mitochondrial_matrix.html","mitochondrial matrix"],["membrane_organelle/mitochondrial_membrane.html","mitochondrial membrane"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"],["membrane_organelle/mitosome.html","mitosome"],["membrane_organelle/mitosome_envelope.html","mitosome envelope"],["membrane_organelle/mitosome_inner_membrane.html","mitosome inner membrane"],["membrane_organelle/mitosome_matrix.html","mitosome matrix"],["membrane_organelle/mitosome_outer_membrane.html","mitosome outer membrane"],["membrane_organelle/mucocyst.html","mucocyst"],["membrane_organelle/multivesicular_body.html","multivesicular body"],["membrane_organelle/multivesicular_body_lumen.html","multivesicular body lumen"],["membrane_organelle/multivesicular_body_membrane.html","multivesicular body membrane"],["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nuclear_envelope_lumen.html","nuclear envelope lumen"],["membrane_organelle/nuclear_inner_membrane.html","nuclear inner membrane"],["membrane_organelle/nuclear_lumen.html","nuclear lumen"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"],["membrane_organelle/nucleomorph.html","nucleomorph"],["membrane_organelle/nucleus.html","nucleus"],["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_inner_membrane.html","organellar chromatophore inner membrane"],["membrane_organelle/organellar_chromatophore_intermembrane_space.html","organellar chromatophore intermembrane space"],["membrane_organelle/organellar_chromatophore_membrane.html","organellar chromatophore membrane"],["membrane_organelle/organellar_chromatophore_outer_membrane.html","organellar chromatophore outer membrane"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"],["membrane_organelle/organellar_chromatophore_thylakoid_lumen.html","organellar chromatophore thylakoid lumen"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"],["membrane_organelle/parasitophorous_vacuole.html","parasitophorous vacuole"],["membrane_organelle/parasitophorous_vacuole_lumen.html","parasitophorous vacuole lumen"],["membrane_organelle/parasitophorous_vacuole_membrane.html","parasitophorous vacuole membrane"],["membrane_organelle/peroxisomal_matrix.html","peroxisomal matrix"],["membrane_organelle/peroxisomal_membrane.html","peroxisomal membrane"],["membrane_organelle/peroxisome.html","peroxisome"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"],["membrane_organelle/plasma_membrane_derived_chromatophore_membrane.html","plasma membrane-derived chromatophore membrane"],["membrane_organelle/plasma_membrane_derived_thylakoid_lumen.html","plasma membrane-derived thylakoid lumen"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"],["membrane_organelle/plastid.html","plastid"],["membrane_organelle/plastid_envelope.html","plastid envelope"],["membrane_organelle/plastid_inner_membrane.html","plastid inner membrane"],["membrane_organelle/plastid_intermembrane_space.html","plastid intermembrane space"],["membrane_organelle/plastid_membrane.html","plastid membrane"],["membrane_organelle/plastid_outer_membrane.html","plastid outer membrane"],["membrane_organelle/plastid_stroma.html","plastid stroma"],["membrane_organelle/plastid_thylakoid.html","plastid thylakoid"],["membrane_organelle/plastid_thylakoid_lumen.html","plastid thylakoid lumen"],["membrane_organelle/plastid_thylakoid_membrane.html","plastid thylakoid membrane"],["membrane_organelle/polaroplast.html","polaroplast"],["membrane_organelle/pyrenoid_tubule.html","pyrenoid tubule"],["membrane_organelle/reservosome.html","reservosome"],["membrane_organelle/rhoptry.html","rhoptry"],["membrane_organelle/rhoptry_lumen.html","rhoptry lumen"],["membrane_organelle/rhoptry_membrane.html","rhoptry membrane"],["membrane_organelle/rhoptry_neck.html","rhoptry neck"],["membrane_organelle/spongiome.html","spongiome"],["membrane_organelle/thylakoid.html","thylakoid"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"],["membrane_organelle/trans_golgi_network.html","trans-Golgi network"],["membrane_organelle/trans_golgi_network_membrane.html","trans-Golgi network membrane"],["membrane_organelle/trans_golgi_network_transport_vesicle_membrane.html","trans-Golgi network transport vesicle membrane"],["membrane_organelle/trichocyst.html","trichocyst"],["membrane_organelle/vacuolar_lumen.html","vacuolar lumen"],["membrane_organelle/vacuolar_membrane.html","vacuolar membrane"],["membrane_organelle/vacuole.html","vacuole"],["membrane_organelle/woronin_body.html","Woronin body"],["microcompartment/bacterial_microcompartment.html","bacterial microcompartment"],["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"],["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"],["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"],["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"],["nucleoid/chloroplast_nucleoid.html","chloroplast nucleoid"],["nucleoid/kinetoplast.html","kinetoplast"],["nucleoid/mitochondrial_nucleoid.html","mitochondrial nucleoid"],["nucleoid/nucleoid.html","nucleoid"],["nucleoid/plastid_nucleoid.html","plastid nucleoid"],["other/1_3_beta_d_glucan_synthase_complex.html","1,3-beta-D-glucan synthase complex"],["other/ap_1_adaptor_complex.html","AP-1 adaptor complex"],["other/ap_2_adaptor_complex.html","AP-2 adaptor complex"],["other/ap_3_adaptor_complex.html","AP-3 adaptor complex"],["other/ap_4_adaptor_complex.html","AP-4 adaptor complex"],["other/ap_5_adaptor_complex.html","AP-5 adaptor complex"],["other/ap_type_membrane_coat_adaptor_complex.html","AP-type membrane coat adaptor complex"],["other/apical_complex.html","apical complex"]]} \ No newline at end of file +{"mech":"CellStructureMech","prefix":"GO","base":"https://culturebotai.github.io/CellStructureMech/pages/structures/","total":535,"records":[["appendage/archaeal_cannula.html","archaeal cannula"],["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"],["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"],["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"],["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"],["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"],["appendage/ciliary_membrane.html","ciliary membrane"],["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"],["appendage/curli.html","curli"],["appendage/hamus.html","hamus"],["appendage/mastigoneme.html","mastigoneme"],["appendage/p_pilus.html","P pilus"],["appendage/paraflagellar_rod.html","paraflagellar rod"],["appendage/periplasmic_flagellum.html","periplasmic flagellum"],["appendage/pilus.html","pilus"],["appendage/prostheca.html","prostheca"],["appendage/stalk_crossband.html","stalk crossband"],["appendage/tad_pilus.html","Tad pilus"],["appendage/type_i_pilus.html","type I pilus"],["appendage/type_iv_pilus.html","type IV pilus"],["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/actin_cortical_patch.html","actin cortical patch"],["cytoskeleton/actomyosin_contractile_ring.html","actomyosin contractile ring"],["cytoskeleton/alfa_filament.html","AlfA filament"],["cytoskeleton/axonemal_a_tubule_inner_sheath.html","axonemal A tubule inner sheath"],["cytoskeleton/axonemal_b_tubule_inner_sheath.html","axonemal B tubule inner sheath"],["cytoskeleton/axonemal_central_apparatus.html","axonemal central apparatus"],["cytoskeleton/axonemal_central_bridge.html","axonemal central bridge"],["cytoskeleton/axonemal_central_pair.html","axonemal central pair"],["cytoskeleton/axonemal_central_pair_projection.html","axonemal central pair projection"],["cytoskeleton/axonemal_doublet_microtubule.html","axonemal doublet microtubule"],["cytoskeleton/axonemal_dynein_complex.html","axonemal dynein complex"],["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"],["cytoskeleton/axonemal_microtubule_doublet_inner_junction.html","axonemal microtubule doublet inner junction"],["cytoskeleton/axonemal_microtubule_doublet_inner_sheath.html","axonemal microtubule doublet inner sheath"],["cytoskeleton/axonemal_microtubule_doublet_outer_junction.html","axonemal microtubule doublet outer junction"],["cytoskeleton/axonemal_microtubule_doublet_ribbon.html","axonemal microtubule doublet ribbon"],["cytoskeleton/axonemal_nexin_link.html","axonemal nexin link"],["cytoskeleton/axoneme.html","axoneme"],["cytoskeleton/b_axonemal_microtubule.html","B axonemal microtubule"],["cytoskeleton/bactofilin_filament.html","bactofilin filament"],["cytoskeleton/bilobe_structure.html","bilobe structure"],["cytoskeleton/btubab_bacterial_microtubule.html","BtubAB bacterial microtubule"],["cytoskeleton/c1_axonemal_microtubule.html","C1 axonemal microtubule"],["cytoskeleton/c2_axonemal_microtubule.html","C2 axonemal microtubule"],["cytoskeleton/cetz_filament.html","CetZ filament"],["cytoskeleton/ciliary_basal_body.html","ciliary basal body"],["cytoskeleton/ciliary_pocket_collar.html","ciliary pocket collar"],["cytoskeleton/ciliary_rootlet.html","ciliary rootlet"],["cytoskeleton/conoid.html","conoid"],["cytoskeleton/crescentin_filament.html","crescentin filament"],["cytoskeleton/cytoophidium.html","cytoophidium"],["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/flagellum_attachment_zone.html","flagellum attachment zone"],["cytoskeleton/funis.html","funis"],["cytoskeleton/inner_dynein_arm.html","inner dynein arm"],["cytoskeleton/intraconoid_microtubule.html","intraconoid microtubule"],["cytoskeleton/mamk_filament.html","MamK filament"],["cytoskeleton/median_body.html","median body"],["cytoskeleton/microtubule.html","microtubule"],["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/mreb_filament.html","MreB filament"],["cytoskeleton/outer_dynein_arm.html","outer dynein arm"],["cytoskeleton/parm_filament.html","ParM filament"],["cytoskeleton/phuz_spindle.html","PhuZ spindle"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["cytoskeleton/radial_spoke.html","radial spoke"],["cytoskeleton/septin_ring.html","septin ring"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"],["cytoskeleton/spindle_pole_body.html","spindle pole body"],["cytoskeleton/subpellicular_microtubule.html","subpellicular microtubule"],["cytoskeleton/tripartite_attachment_complex.html","tripartite attachment complex"],["cytoskeleton/tubz_filament.html","TubZ filament"],["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_crossbridge.html","ventral disc crossbridge"],["cytoskeleton/ventral_disc_dorsal_microribbon.html","ventral disc dorsal microribbon"],["cytoskeleton/ventral_disc_lateral_crest.html","ventral disc lateral crest"],["cytoskeleton/ventral_disc_microtubule_array.html","ventral disc microtubule array"],["cytoskeleton/ventral_disc_overlap_zone.html","ventral disc overlap zone"],["cytoskeleton/ventral_disc_supernumerary_microtubule_array.html","ventral disc supernumerary microtubule array"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"],["energy_complex/cytochrome_o_ubiquinol_oxidase_complex.html","cytochrome o ubiquinol oxidase complex"],["energy_complex/fumarate_reductase_complex.html","fumarate reductase complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"],["energy_complex/nitrogenase_complex.html","nitrogenase complex"],["energy_complex/photosystem_i.html","photosystem I"],["energy_complex/photosystem_ii.html","photosystem II"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["energy_complex/rc_lh1_pufx_core_complex.html","RC-LH1-PufX core complex"],["energy_complex/respiratory_chain_complex_i.html","respiratory chain complex I"],["energy_complex/respiratory_chain_complex_ii_succinate_dehydrogenase.html","respiratory chain complex II (succinate dehydrogenase)"],["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"],["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"],["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v0_domain.html","vacuolar proton-transporting V-type ATPase, V0 domain"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v1_domain.html","vacuolar proton-transporting V-type ATPase, V1 domain"],["envelope/capsule.html","capsule"],["envelope/cell_outer_membrane.html","cell outer membrane"],["envelope/cellular_bud_membrane.html","cellular bud membrane"],["envelope/division_septum.html","division septum"],["envelope/dolipore_septum.html","dolipore septum"],["envelope/eisosome_membrane_domain_mcc.html","eisosome membrane domain/MCC"],["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["envelope/glycocalyx.html","glycocalyx"],["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["envelope/mycolate_outer_membrane.html","mycolate outer membrane"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"],["envelope/peptidoglycan_based_cell_wall.html","peptidoglycan-based cell wall"],["envelope/periplasmic_space.html","periplasmic space"],["envelope/plasma_membrane.html","plasma membrane"],["envelope/s_layer.html","S-layer"],["envelope/slime_layer.html","slime layer"],["inclusion/gas_vesicle.html","gas vesicle"],["inclusion/gas_vesicle_shell.html","gas vesicle shell"],["inclusion/lipid_droplet.html","lipid droplet"],["inclusion/monolayer_surrounded_lipid_storage_body_outer_lipid_monolayer.html","monolayer-surrounded lipid storage body outer lipid monolayer"],["inclusion/parasporal_crystal.html","parasporal crystal"],["inclusion/plastoglobule.html","plastoglobule"],["inclusion/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"],["inclusion/r_body.html","R-body"],["inclusion/sulfur_globule.html","sulfur globule"],["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"],["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"],["membrane_organelle/apicomplexan_dense_granule.html","apicomplexan dense granule"],["membrane_organelle/apicomplexan_dense_granule_membrane.html","apicomplexan dense granule membrane"],["membrane_organelle/apicoplast.html","apicoplast"],["membrane_organelle/apicoplast_membrane.html","apicoplast membrane"],["membrane_organelle/autophagosome.html","autophagosome"],["membrane_organelle/autophagosome_lumen.html","autophagosome lumen"],["membrane_organelle/autophagosome_membrane.html","autophagosome membrane"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/chitosome.html","chitosome"],["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_inner_membrane.html","chloroplast inner membrane"],["membrane_organelle/chloroplast_intermembrane_space.html","chloroplast intermembrane space"],["membrane_organelle/chloroplast_membrane.html","chloroplast membrane"],["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"],["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"],["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"],["membrane_organelle/chloroplast_thylakoid_lumen.html","chloroplast thylakoid lumen"],["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"],["membrane_organelle/cis_golgi_network.html","cis-Golgi network"],["membrane_organelle/cis_golgi_network_membrane.html","cis-Golgi network membrane"],["membrane_organelle/clathrin_coated_endocytic_vesicle.html","clathrin-coated endocytic vesicle"],["membrane_organelle/clathrin_coated_endocytic_vesicle_lumen.html","clathrin-coated endocytic vesicle lumen"],["membrane_organelle/clathrin_coated_endocytic_vesicle_membrane.html","clathrin-coated endocytic vesicle membrane"],["membrane_organelle/clathrin_coated_vesicle.html","clathrin-coated vesicle"],["membrane_organelle/clathrin_coated_vesicle_lumen.html","clathrin-coated vesicle lumen"],["membrane_organelle/clathrin_coated_vesicle_membrane.html","clathrin-coated vesicle membrane"],["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"],["membrane_organelle/contractile_vacuolar_membrane.html","contractile vacuolar membrane"],["membrane_organelle/contractile_vacuole.html","contractile vacuole"],["membrane_organelle/contractile_vacuole_complex.html","contractile vacuole complex"],["membrane_organelle/contractile_vacuole_lumen.html","contractile vacuole lumen"],["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/copi_coated_vesicle_lumen.html","COPI-coated vesicle lumen"],["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"],["membrane_organelle/copii_coated_vesicle_lumen.html","COPII-coated vesicle lumen"],["membrane_organelle/cvt_vesicle.html","Cvt vesicle"],["membrane_organelle/cvt_vesicle_lumen.html","Cvt vesicle lumen"],["membrane_organelle/cvt_vesicle_membrane.html","Cvt vesicle membrane"],["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/cyanelle_thylakoid_lumen.html","cyanelle thylakoid lumen"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"],["membrane_organelle/cytoplasmic_vesicle.html","cytoplasmic vesicle"],["membrane_organelle/cytoplasmic_vesicle_lumen.html","cytoplasmic vesicle lumen"],["membrane_organelle/cytoplasmic_vesicle_membrane.html","cytoplasmic vesicle membrane"],["membrane_organelle/early_endosome.html","early endosome"],["membrane_organelle/early_endosome_lumen.html","early endosome lumen"],["membrane_organelle/early_endosome_membrane.html","early endosome membrane"],["membrane_organelle/endocytic_vesicle.html","endocytic vesicle"],["membrane_organelle/endocytic_vesicle_lumen.html","endocytic vesicle lumen"],["membrane_organelle/endocytic_vesicle_membrane.html","endocytic vesicle membrane"],["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"],["membrane_organelle/endoplasmic_reticulum_lumen.html","endoplasmic reticulum lumen"],["membrane_organelle/endoplasmic_reticulum_membrane.html","endoplasmic reticulum membrane"],["membrane_organelle/endosome.html","endosome"],["membrane_organelle/endosome_lumen.html","endosome lumen"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"],["membrane_organelle/esterosome.html","esterosome"],["membrane_organelle/esterosome_lumen.html","esterosome lumen"],["membrane_organelle/esterosome_membrane.html","esterosome membrane"],["membrane_organelle/exoneme.html","exoneme"],["membrane_organelle/eyespot_apparatus.html","eyespot apparatus"],["membrane_organelle/ferrosome.html","ferrosome"],["membrane_organelle/flagellar_pocket.html","flagellar pocket"],["membrane_organelle/food_vacuole.html","food vacuole"],["membrane_organelle/fungal_type_vacuole.html","fungal-type vacuole"],["membrane_organelle/fungal_type_vacuole_lumen.html","fungal-type vacuole lumen"],["membrane_organelle/fungal_type_vacuole_membrane.html","fungal-type vacuole membrane"],["membrane_organelle/glycosome.html","glycosome"],["membrane_organelle/glycosome_lumen.html","glycosome lumen"],["membrane_organelle/glycosome_membrane.html","glycosome membrane"],["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysomal_membrane.html","glyoxysomal membrane"],["membrane_organelle/glyoxysome.html","glyoxysome"],["membrane_organelle/golgi_apparatus.html","Golgi apparatus"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"],["membrane_organelle/golgi_cisterna.html","Golgi cisterna"],["membrane_organelle/golgi_cisterna_membrane.html","Golgi cisterna membrane"],["membrane_organelle/golgi_lumen.html","Golgi lumen"],["membrane_organelle/golgi_membrane.html","Golgi membrane"],["membrane_organelle/hydrogenosomal_membrane.html","hydrogenosomal membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/hydrogenosome_lumen.html","hydrogenosome lumen"],["membrane_organelle/inner_membrane_pellicle_complex.html","inner membrane pellicle complex"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/late_endosome_lumen.html","late endosome lumen"],["membrane_organelle/late_endosome_membrane.html","late endosome membrane"],["membrane_organelle/macronucleus.html","macronucleus"],["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"],["membrane_organelle/maurer_s_cleft.html","Maurer's cleft"],["membrane_organelle/methane_oxidizing_organelle.html","methane-oxidizing organelle"],["membrane_organelle/microneme.html","microneme"],["membrane_organelle/microneme_lumen.html","microneme lumen"],["membrane_organelle/microneme_membrane.html","microneme membrane"],["membrane_organelle/micronucleus.html","micronucleus"],["membrane_organelle/microsporidian_posterior_vacuole.html","microsporidian posterior vacuole"],["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"],["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrial_intermembrane_space.html","mitochondrial intermembrane space"],["membrane_organelle/mitochondrial_matrix.html","mitochondrial matrix"],["membrane_organelle/mitochondrial_membrane.html","mitochondrial membrane"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"],["membrane_organelle/mitosome.html","mitosome"],["membrane_organelle/mitosome_envelope.html","mitosome envelope"],["membrane_organelle/mitosome_inner_membrane.html","mitosome inner membrane"],["membrane_organelle/mitosome_matrix.html","mitosome matrix"],["membrane_organelle/mitosome_outer_membrane.html","mitosome outer membrane"],["membrane_organelle/mononeme.html","mononeme"],["membrane_organelle/mucocyst.html","mucocyst"],["membrane_organelle/multivesicular_body.html","multivesicular body"],["membrane_organelle/multivesicular_body_intraluminal_vesicle.html","multivesicular body intraluminal vesicle"],["membrane_organelle/multivesicular_body_lumen.html","multivesicular body lumen"],["membrane_organelle/multivesicular_body_membrane.html","multivesicular body membrane"],["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nuclear_envelope_lumen.html","nuclear envelope lumen"],["membrane_organelle/nuclear_inner_membrane.html","nuclear inner membrane"],["membrane_organelle/nuclear_lumen.html","nuclear lumen"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"],["membrane_organelle/nucleomorph.html","nucleomorph"],["membrane_organelle/nucleus.html","nucleus"],["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_inner_membrane.html","organellar chromatophore inner membrane"],["membrane_organelle/organellar_chromatophore_intermembrane_space.html","organellar chromatophore intermembrane space"],["membrane_organelle/organellar_chromatophore_membrane.html","organellar chromatophore membrane"],["membrane_organelle/organellar_chromatophore_outer_membrane.html","organellar chromatophore outer membrane"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"],["membrane_organelle/organellar_chromatophore_thylakoid_lumen.html","organellar chromatophore thylakoid lumen"]]} \ No newline at end of file diff --git a/assets/fleet/cells/CellStructureMech--InterPro.json b/assets/fleet/cells/CellStructureMech--InterPro.json index 9085907..c33ebce 100644 --- a/assets/fleet/cells/CellStructureMech--InterPro.json +++ b/assets/fleet/cells/CellStructureMech--InterPro.json @@ -1 +1 @@ -{"mech":"CellStructureMech","prefix":"InterPro","base":"https://culturebotai.github.io/CellStructureMech/pages/structures/","total":21,"records":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"],["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"],["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"],["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"],["appendage/paraflagellar_rod.html","paraflagellar rod"],["cytoskeleton/ciliary_pocket_collar.html","ciliary pocket collar"],["cytoskeleton/eisosome_filament.html","eisosome filament"],["envelope/peptidoglycan_based_cell_wall.html","peptidoglycan-based cell wall"],["envelope/s_layer.html","S-layer"],["membrane_organelle/magnetosome.html","magnetosome"],["other/bam_protein_complex.html","Bam protein complex"],["other/eisosome.html","eisosome"]]} \ No newline at end of file +{"mech":"CellStructureMech","prefix":"InterPro","base":"https://culturebotai.github.io/CellStructureMech/pages/structures/","total":33,"records":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"],["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"],["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"],["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"],["appendage/paraflagellar_rod.html","paraflagellar rod"],["cytoskeleton/ciliary_pocket_collar.html","ciliary pocket collar"],["cytoskeleton/eisosome_filament.html","eisosome filament"],["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"],["energy_complex/cytochrome_o_ubiquinol_oxidase_complex.html","cytochrome o ubiquinol oxidase complex"],["energy_complex/fumarate_reductase_complex.html","fumarate reductase complex"],["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"],["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"],["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"],["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"],["envelope/peptidoglycan_based_cell_wall.html","peptidoglycan-based cell wall"],["envelope/s_layer.html","S-layer"],["membrane_organelle/magnetosome.html","magnetosome"],["other/bam_protein_complex.html","Bam protein complex"],["other/dna_gyrase_complex.html","DNA gyrase complex"],["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"],["other/eisosome.html","eisosome"],["other/exodeoxyribonuclease_v_complex.html","exodeoxyribonuclease V complex"],["other/single_stranded_dna_binding_protein_complex.html","single-stranded DNA-binding protein complex"],["ribonucleoprotein/dimeric_ribonuclease_p_complex.html","dimeric ribonuclease P complex"]]} \ No newline at end of file diff --git a/assets/fleet/cells/CellStructureMech--NCBITaxon.json b/assets/fleet/cells/CellStructureMech--NCBITaxon.json index b779fdb..85d2d30 100644 --- a/assets/fleet/cells/CellStructureMech--NCBITaxon.json +++ b/assets/fleet/cells/CellStructureMech--NCBITaxon.json @@ -1 +1 @@ -{"mech":"CellStructureMech","prefix":"NCBITaxon","base":"https://culturebotai.github.io/CellStructureMech/pages/structures/","total":417,"records":[["appendage/archaeal_cannula.html","archaeal cannula"],["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"],["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"],["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"],["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"],["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"],["appendage/ciliary_membrane.html","ciliary membrane"],["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"],["appendage/curli.html","curli"],["appendage/hamus.html","hamus"],["appendage/haptonema.html","haptonema"],["appendage/mastigoneme.html","mastigoneme"],["appendage/omce_cytochrome_nanowire.html","OmcE cytochrome nanowire"],["appendage/omcs_cytochrome_nanowire.html","OmcS cytochrome nanowire"],["appendage/omcz_cytochrome_nanowire.html","OmcZ cytochrome nanowire"],["appendage/p_pilus.html","P pilus"],["appendage/paraflagellar_rod.html","paraflagellar rod"],["appendage/periplasmic_flagellum.html","periplasmic flagellum"],["appendage/pilus.html","pilus"],["appendage/prostheca.html","prostheca"],["appendage/stalk_crossband.html","stalk crossband"],["appendage/tad_pilus.html","Tad pilus"],["appendage/type_i_pilus.html","type I pilus"],["appendage/type_iv_pilus.html","type IV pilus"],["cytoskeleton/actin_cortical_patch.html","actin cortical patch"],["cytoskeleton/actomyosin_contractile_ring.html","actomyosin contractile ring"],["cytoskeleton/axoneme.html","axoneme"],["cytoskeleton/bactofilin_filament.html","bactofilin filament"],["cytoskeleton/bilobe_structure.html","bilobe structure"],["cytoskeleton/btubab_bacterial_microtubule.html","BtubAB bacterial microtubule"],["cytoskeleton/cetz_filament.html","CetZ filament"],["cytoskeleton/ciliary_basal_body.html","ciliary basal body"],["cytoskeleton/ciliary_pocket_collar.html","ciliary pocket collar"],["cytoskeleton/conoid.html","conoid"],["cytoskeleton/crescentin_filament.html","crescentin filament"],["cytoskeleton/cytoophidium.html","cytoophidium"],["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/flagellum_attachment_zone.html","flagellum attachment zone"],["cytoskeleton/mamk_filament.html","MamK filament"],["cytoskeleton/microtubule.html","microtubule"],["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/mreb_filament.html","MreB filament"],["cytoskeleton/parm_filament.html","ParM filament"],["cytoskeleton/phuz_spindle.html","PhuZ spindle"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["cytoskeleton/septin_ring.html","septin ring"],["cytoskeleton/spindle_pole_body.html","spindle pole body"],["cytoskeleton/tripartite_attachment_complex.html","tripartite attachment complex"],["cytoskeleton/tubz_filament.html","TubZ filament"],["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_crossbridge.html","ventral disc crossbridge"],["cytoskeleton/ventral_disc_dorsal_microribbon.html","ventral disc dorsal microribbon"],["cytoskeleton/ventral_disc_lateral_crest.html","ventral disc lateral crest"],["cytoskeleton/ventral_disc_microtubule_array.html","ventral disc microtubule array"],["cytoskeleton/ventral_disc_overlap_zone.html","ventral disc overlap zone"],["cytoskeleton/ventral_disc_supernumerary_microtubule_array.html","ventral disc supernumerary microtubule array"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["energy_complex/rc_lh1_pufx_core_complex.html","RC-LH1-PufX core complex"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v0_domain.html","vacuolar proton-transporting V-type ATPase, V0 domain"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v1_domain.html","vacuolar proton-transporting V-type ATPase, V1 domain"],["envelope/capsule.html","capsule"],["envelope/cell_outer_membrane.html","cell outer membrane"],["envelope/cellular_bud_membrane.html","cellular bud membrane"],["envelope/dolipore_septum.html","dolipore septum"],["envelope/eisosome_membrane_domain_mcc.html","eisosome membrane domain/MCC"],["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["envelope/glycocalyx.html","glycocalyx"],["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["envelope/mycolate_outer_membrane.html","mycolate outer membrane"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"],["envelope/peptidoglycan_based_cell_wall.html","peptidoglycan-based cell wall"],["envelope/plasma_membrane.html","plasma membrane"],["envelope/s_layer.html","S-layer"],["envelope/slime_layer.html","slime layer"],["inclusion/cyanophycin_granule.html","cyanophycin granule"],["inclusion/gas_vesicle.html","gas vesicle"],["inclusion/gas_vesicle_shell.html","gas vesicle shell"],["inclusion/glycogen_granule.html","glycogen granule"],["inclusion/lipid_droplet.html","lipid droplet"],["inclusion/monolayer_surrounded_lipid_storage_body_outer_lipid_monolayer.html","monolayer-surrounded lipid storage body outer lipid monolayer"],["inclusion/plastoglobule.html","plastoglobule"],["inclusion/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"],["inclusion/r_body.html","R-body"],["inclusion/sulfur_globule.html","sulfur globule"],["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"],["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"],["membrane_organelle/apicomplexan_dense_granule.html","apicomplexan dense granule"],["membrane_organelle/apicomplexan_dense_granule_membrane.html","apicomplexan dense granule membrane"],["membrane_organelle/apicoplast.html","apicoplast"],["membrane_organelle/apicoplast_membrane.html","apicoplast membrane"],["membrane_organelle/autophagosome.html","autophagosome"],["membrane_organelle/autophagosome_lumen.html","autophagosome lumen"],["membrane_organelle/autophagosome_membrane.html","autophagosome membrane"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_inner_membrane.html","chloroplast inner membrane"],["membrane_organelle/chloroplast_intermembrane_space.html","chloroplast intermembrane space"],["membrane_organelle/chloroplast_membrane.html","chloroplast membrane"],["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"],["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"],["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"],["membrane_organelle/chloroplast_thylakoid_lumen.html","chloroplast thylakoid lumen"],["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"],["membrane_organelle/cis_golgi_network.html","cis-Golgi network"],["membrane_organelle/cis_golgi_network_membrane.html","cis-Golgi network membrane"],["membrane_organelle/clathrin_coated_endocytic_vesicle.html","clathrin-coated endocytic vesicle"],["membrane_organelle/clathrin_coated_endocytic_vesicle_lumen.html","clathrin-coated endocytic vesicle lumen"],["membrane_organelle/clathrin_coated_endocytic_vesicle_membrane.html","clathrin-coated endocytic vesicle membrane"],["membrane_organelle/clathrin_coated_vesicle.html","clathrin-coated vesicle"],["membrane_organelle/clathrin_coated_vesicle_lumen.html","clathrin-coated vesicle lumen"],["membrane_organelle/clathrin_coated_vesicle_membrane.html","clathrin-coated vesicle membrane"],["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"],["membrane_organelle/contractile_vacuolar_membrane.html","contractile vacuolar membrane"],["membrane_organelle/contractile_vacuole.html","contractile vacuole"],["membrane_organelle/contractile_vacuole_lumen.html","contractile vacuole lumen"],["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/copi_coated_vesicle_lumen.html","COPI-coated vesicle lumen"],["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"],["membrane_organelle/copii_coated_vesicle_lumen.html","COPII-coated vesicle lumen"],["membrane_organelle/cvt_vesicle.html","Cvt vesicle"],["membrane_organelle/cvt_vesicle_lumen.html","Cvt vesicle lumen"],["membrane_organelle/cvt_vesicle_membrane.html","Cvt vesicle membrane"],["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/cyanelle_thylakoid_lumen.html","cyanelle thylakoid lumen"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"],["membrane_organelle/cytoplasmic_vesicle.html","cytoplasmic vesicle"],["membrane_organelle/cytoplasmic_vesicle_lumen.html","cytoplasmic vesicle lumen"],["membrane_organelle/cytoplasmic_vesicle_membrane.html","cytoplasmic vesicle membrane"],["membrane_organelle/endocytic_vesicle.html","endocytic vesicle"],["membrane_organelle/endocytic_vesicle_lumen.html","endocytic vesicle lumen"],["membrane_organelle/endocytic_vesicle_membrane.html","endocytic vesicle membrane"],["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"],["membrane_organelle/endoplasmic_reticulum_lumen.html","endoplasmic reticulum lumen"],["membrane_organelle/endoplasmic_reticulum_membrane.html","endoplasmic reticulum membrane"],["membrane_organelle/endosome.html","endosome"],["membrane_organelle/endosome_lumen.html","endosome lumen"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"],["membrane_organelle/esterosome.html","esterosome"],["membrane_organelle/esterosome_lumen.html","esterosome lumen"],["membrane_organelle/esterosome_membrane.html","esterosome membrane"],["membrane_organelle/exoneme.html","exoneme"],["membrane_organelle/eyespot_apparatus.html","eyespot apparatus"],["membrane_organelle/ferrosome.html","ferrosome"],["membrane_organelle/flagellar_pocket.html","flagellar pocket"],["membrane_organelle/food_vacuole.html","food vacuole"],["membrane_organelle/fungal_type_vacuole.html","fungal-type vacuole"],["membrane_organelle/fungal_type_vacuole_lumen.html","fungal-type vacuole lumen"],["membrane_organelle/fungal_type_vacuole_membrane.html","fungal-type vacuole membrane"],["membrane_organelle/glycosome.html","glycosome"],["membrane_organelle/glycosome_lumen.html","glycosome lumen"],["membrane_organelle/glycosome_membrane.html","glycosome membrane"],["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysomal_membrane.html","glyoxysomal membrane"],["membrane_organelle/glyoxysome.html","glyoxysome"],["membrane_organelle/golgi_apparatus.html","Golgi apparatus"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"],["membrane_organelle/golgi_cisterna.html","Golgi cisterna"],["membrane_organelle/golgi_cisterna_membrane.html","Golgi cisterna membrane"],["membrane_organelle/golgi_membrane.html","Golgi membrane"],["membrane_organelle/hydrogenosomal_membrane.html","hydrogenosomal membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/hydrogenosome_lumen.html","hydrogenosome lumen"],["membrane_organelle/inner_membrane_pellicle_complex.html","inner membrane pellicle complex"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"],["membrane_organelle/methane_oxidizing_organelle.html","methane-oxidizing organelle"],["membrane_organelle/microneme.html","microneme"],["membrane_organelle/microneme_lumen.html","microneme lumen"],["membrane_organelle/microneme_membrane.html","microneme membrane"],["membrane_organelle/microsporidian_posterior_vacuole.html","microsporidian posterior vacuole"],["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"],["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrial_intermembrane_space.html","mitochondrial intermembrane space"],["membrane_organelle/mitochondrial_matrix.html","mitochondrial matrix"],["membrane_organelle/mitochondrial_membrane.html","mitochondrial membrane"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"],["membrane_organelle/mitosome.html","mitosome"],["membrane_organelle/mitosome_envelope.html","mitosome envelope"],["membrane_organelle/mitosome_inner_membrane.html","mitosome inner membrane"],["membrane_organelle/mitosome_intermembrane_space.html","mitosome intermembrane space"],["membrane_organelle/mitosome_matrix.html","mitosome matrix"],["membrane_organelle/mitosome_outer_membrane.html","mitosome outer membrane"],["membrane_organelle/mucocyst.html","mucocyst"],["membrane_organelle/multivesicular_body.html","multivesicular body"],["membrane_organelle/multivesicular_body_lumen.html","multivesicular body lumen"],["membrane_organelle/multivesicular_body_membrane.html","multivesicular body membrane"],["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nuclear_envelope_lumen.html","nuclear envelope lumen"],["membrane_organelle/nuclear_inner_membrane.html","nuclear inner membrane"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"],["membrane_organelle/nucleomorph.html","nucleomorph"],["membrane_organelle/nucleus.html","nucleus"],["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_inner_membrane.html","organellar chromatophore inner membrane"],["membrane_organelle/organellar_chromatophore_intermembrane_space.html","organellar chromatophore intermembrane space"],["membrane_organelle/organellar_chromatophore_membrane.html","organellar chromatophore membrane"],["membrane_organelle/organellar_chromatophore_outer_membrane.html","organellar chromatophore outer membrane"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"],["membrane_organelle/organellar_chromatophore_thylakoid_lumen.html","organellar chromatophore thylakoid lumen"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"],["membrane_organelle/parasitophorous_vacuole.html","parasitophorous vacuole"],["membrane_organelle/parasitophorous_vacuole_lumen.html","parasitophorous vacuole lumen"],["membrane_organelle/parasitophorous_vacuole_membrane.html","parasitophorous vacuole membrane"],["membrane_organelle/peroxisomal_matrix.html","peroxisomal matrix"],["membrane_organelle/peroxisomal_membrane.html","peroxisomal membrane"],["membrane_organelle/peroxisome.html","peroxisome"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"],["membrane_organelle/plasma_membrane_derived_chromatophore_membrane.html","plasma membrane-derived chromatophore membrane"],["membrane_organelle/plasma_membrane_derived_thylakoid_lumen.html","plasma membrane-derived thylakoid lumen"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"],["membrane_organelle/plastid.html","plastid"],["membrane_organelle/plastid_envelope.html","plastid envelope"],["membrane_organelle/plastid_inner_membrane.html","plastid inner membrane"],["membrane_organelle/plastid_intermembrane_space.html","plastid intermembrane space"],["membrane_organelle/plastid_membrane.html","plastid membrane"],["membrane_organelle/plastid_outer_membrane.html","plastid outer membrane"],["membrane_organelle/plastid_stroma.html","plastid stroma"],["membrane_organelle/plastid_thylakoid.html","plastid thylakoid"],["membrane_organelle/plastid_thylakoid_lumen.html","plastid thylakoid lumen"],["membrane_organelle/plastid_thylakoid_membrane.html","plastid thylakoid membrane"],["membrane_organelle/polaroplast.html","polaroplast"],["membrane_organelle/pyrenoid_tubule.html","pyrenoid tubule"],["membrane_organelle/reservosome.html","reservosome"],["membrane_organelle/rhoptry.html","rhoptry"],["membrane_organelle/rhoptry_lumen.html","rhoptry lumen"],["membrane_organelle/rhoptry_membrane.html","rhoptry membrane"],["membrane_organelle/rhoptry_neck.html","rhoptry neck"],["membrane_organelle/spongiome.html","spongiome"],["membrane_organelle/thylakoid.html","thylakoid"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"],["membrane_organelle/trans_golgi_network.html","trans-Golgi network"],["membrane_organelle/trans_golgi_network_membrane.html","trans-Golgi network membrane"],["membrane_organelle/trans_golgi_network_transport_vesicle_membrane.html","trans-Golgi network transport vesicle membrane"],["membrane_organelle/trichocyst.html","trichocyst"],["membrane_organelle/vacuolar_lumen.html","vacuolar lumen"],["membrane_organelle/vacuolar_membrane.html","vacuolar membrane"],["membrane_organelle/vacuole.html","vacuole"],["membrane_organelle/woronin_body.html","Woronin body"],["microcompartment/bacterial_microcompartment.html","bacterial microcompartment"],["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"],["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"],["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"],["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"],["nucleoid/chloroplast_nucleoid.html","chloroplast nucleoid"],["nucleoid/kinetoplast.html","kinetoplast"],["nucleoid/mitochondrial_nucleoid.html","mitochondrial nucleoid"],["nucleoid/nucleoid.html","nucleoid"],["nucleoid/plastid_nucleoid.html","plastid nucleoid"],["other/1_3_beta_d_glucan_synthase_complex.html","1,3-beta-D-glucan synthase complex"],["other/ap_1_adaptor_complex.html","AP-1 adaptor complex"]]} \ No newline at end of file +{"mech":"CellStructureMech","prefix":"NCBITaxon","base":"https://culturebotai.github.io/CellStructureMech/pages/structures/","total":531,"records":[["appendage/archaeal_cannula.html","archaeal cannula"],["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"],["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"],["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"],["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"],["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"],["appendage/ciliary_membrane.html","ciliary membrane"],["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"],["appendage/curli.html","curli"],["appendage/hamus.html","hamus"],["appendage/haptonema.html","haptonema"],["appendage/mastigoneme.html","mastigoneme"],["appendage/omce_cytochrome_nanowire.html","OmcE cytochrome nanowire"],["appendage/omcs_cytochrome_nanowire.html","OmcS cytochrome nanowire"],["appendage/omcz_cytochrome_nanowire.html","OmcZ cytochrome nanowire"],["appendage/p_pilus.html","P pilus"],["appendage/paraflagellar_rod.html","paraflagellar rod"],["appendage/periplasmic_flagellum.html","periplasmic flagellum"],["appendage/pilus.html","pilus"],["appendage/prostheca.html","prostheca"],["appendage/stalk_crossband.html","stalk crossband"],["appendage/tad_pilus.html","Tad pilus"],["appendage/type_i_pilus.html","type I pilus"],["appendage/type_iv_pilus.html","type IV pilus"],["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/actin_cortical_patch.html","actin cortical patch"],["cytoskeleton/actomyosin_contractile_ring.html","actomyosin contractile ring"],["cytoskeleton/alfa_filament.html","AlfA filament"],["cytoskeleton/axonemal_a_tubule_inner_sheath.html","axonemal A tubule inner sheath"],["cytoskeleton/axonemal_b_tubule_inner_sheath.html","axonemal B tubule inner sheath"],["cytoskeleton/axonemal_central_apparatus.html","axonemal central apparatus"],["cytoskeleton/axonemal_central_bridge.html","axonemal central bridge"],["cytoskeleton/axonemal_central_pair.html","axonemal central pair"],["cytoskeleton/axonemal_central_pair_projection.html","axonemal central pair projection"],["cytoskeleton/axonemal_doublet_microtubule.html","axonemal doublet microtubule"],["cytoskeleton/axonemal_dynein_complex.html","axonemal dynein complex"],["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"],["cytoskeleton/axonemal_microtubule_doublet_inner_junction.html","axonemal microtubule doublet inner junction"],["cytoskeleton/axonemal_microtubule_doublet_inner_sheath.html","axonemal microtubule doublet inner sheath"],["cytoskeleton/axonemal_microtubule_doublet_outer_junction.html","axonemal microtubule doublet outer junction"],["cytoskeleton/axonemal_microtubule_doublet_ribbon.html","axonemal microtubule doublet ribbon"],["cytoskeleton/axonemal_nexin_link.html","axonemal nexin link"],["cytoskeleton/axoneme.html","axoneme"],["cytoskeleton/b_axonemal_microtubule.html","B axonemal microtubule"],["cytoskeleton/bactofilin_filament.html","bactofilin filament"],["cytoskeleton/bilobe_structure.html","bilobe structure"],["cytoskeleton/btubab_bacterial_microtubule.html","BtubAB bacterial microtubule"],["cytoskeleton/c1_axonemal_microtubule.html","C1 axonemal microtubule"],["cytoskeleton/c2_axonemal_microtubule.html","C2 axonemal microtubule"],["cytoskeleton/cetz_filament.html","CetZ filament"],["cytoskeleton/ciliary_basal_body.html","ciliary basal body"],["cytoskeleton/ciliary_pocket_collar.html","ciliary pocket collar"],["cytoskeleton/ciliary_rootlet.html","ciliary rootlet"],["cytoskeleton/conoid.html","conoid"],["cytoskeleton/crescentin_filament.html","crescentin filament"],["cytoskeleton/cytoophidium.html","cytoophidium"],["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/flagellum_attachment_zone.html","flagellum attachment zone"],["cytoskeleton/funis.html","funis"],["cytoskeleton/inner_dynein_arm.html","inner dynein arm"],["cytoskeleton/intraconoid_microtubule.html","intraconoid microtubule"],["cytoskeleton/mamk_filament.html","MamK filament"],["cytoskeleton/median_body.html","median body"],["cytoskeleton/microtubule.html","microtubule"],["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/mreb_filament.html","MreB filament"],["cytoskeleton/outer_dynein_arm.html","outer dynein arm"],["cytoskeleton/parm_filament.html","ParM filament"],["cytoskeleton/phuz_spindle.html","PhuZ spindle"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["cytoskeleton/radial_spoke.html","radial spoke"],["cytoskeleton/septin_ring.html","septin ring"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"],["cytoskeleton/spindle_pole_body.html","spindle pole body"],["cytoskeleton/subpellicular_microtubule.html","subpellicular microtubule"],["cytoskeleton/tripartite_attachment_complex.html","tripartite attachment complex"],["cytoskeleton/tubz_filament.html","TubZ filament"],["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_crossbridge.html","ventral disc crossbridge"],["cytoskeleton/ventral_disc_dorsal_microribbon.html","ventral disc dorsal microribbon"],["cytoskeleton/ventral_disc_lateral_crest.html","ventral disc lateral crest"],["cytoskeleton/ventral_disc_microtubule_array.html","ventral disc microtubule array"],["cytoskeleton/ventral_disc_overlap_zone.html","ventral disc overlap zone"],["cytoskeleton/ventral_disc_supernumerary_microtubule_array.html","ventral disc supernumerary microtubule array"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"],["energy_complex/cytochrome_o_ubiquinol_oxidase_complex.html","cytochrome o ubiquinol oxidase complex"],["energy_complex/fumarate_reductase_complex.html","fumarate reductase complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"],["energy_complex/nitrogenase_complex.html","nitrogenase complex"],["energy_complex/photosystem_i.html","photosystem I"],["energy_complex/photosystem_ii.html","photosystem II"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["energy_complex/rc_lh1_pufx_core_complex.html","RC-LH1-PufX core complex"],["energy_complex/respiratory_chain_complex_i.html","respiratory chain complex I"],["energy_complex/respiratory_chain_complex_ii_succinate_dehydrogenase.html","respiratory chain complex II (succinate dehydrogenase)"],["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"],["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"],["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v0_domain.html","vacuolar proton-transporting V-type ATPase, V0 domain"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v1_domain.html","vacuolar proton-transporting V-type ATPase, V1 domain"],["envelope/capsule.html","capsule"],["envelope/cell_outer_membrane.html","cell outer membrane"],["envelope/cellular_bud_membrane.html","cellular bud membrane"],["envelope/division_septum.html","division septum"],["envelope/dolipore_septum.html","dolipore septum"],["envelope/eisosome_membrane_domain_mcc.html","eisosome membrane domain/MCC"],["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["envelope/glycocalyx.html","glycocalyx"],["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["envelope/mycolate_outer_membrane.html","mycolate outer membrane"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"],["envelope/peptidoglycan_based_cell_wall.html","peptidoglycan-based cell wall"],["envelope/periplasmic_space.html","periplasmic space"],["envelope/plasma_membrane.html","plasma membrane"],["envelope/s_layer.html","S-layer"],["envelope/slime_layer.html","slime layer"],["inclusion/cyanophycin_granule.html","cyanophycin granule"],["inclusion/gas_vesicle.html","gas vesicle"],["inclusion/gas_vesicle_shell.html","gas vesicle shell"],["inclusion/glycogen_granule.html","glycogen granule"],["inclusion/lipid_droplet.html","lipid droplet"],["inclusion/monolayer_surrounded_lipid_storage_body_outer_lipid_monolayer.html","monolayer-surrounded lipid storage body outer lipid monolayer"],["inclusion/parasporal_crystal.html","parasporal crystal"],["inclusion/plastoglobule.html","plastoglobule"],["inclusion/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"],["inclusion/r_body.html","R-body"],["inclusion/sulfur_globule.html","sulfur globule"],["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"],["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"],["membrane_organelle/apicomplexan_dense_granule.html","apicomplexan dense granule"],["membrane_organelle/apicomplexan_dense_granule_membrane.html","apicomplexan dense granule membrane"],["membrane_organelle/apicoplast.html","apicoplast"],["membrane_organelle/apicoplast_membrane.html","apicoplast membrane"],["membrane_organelle/autophagosome.html","autophagosome"],["membrane_organelle/autophagosome_lumen.html","autophagosome lumen"],["membrane_organelle/autophagosome_membrane.html","autophagosome membrane"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/chitosome.html","chitosome"],["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_inner_membrane.html","chloroplast inner membrane"],["membrane_organelle/chloroplast_intermembrane_space.html","chloroplast intermembrane space"],["membrane_organelle/chloroplast_membrane.html","chloroplast membrane"],["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"],["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"],["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"],["membrane_organelle/chloroplast_thylakoid_lumen.html","chloroplast thylakoid lumen"],["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"],["membrane_organelle/cis_golgi_network.html","cis-Golgi network"],["membrane_organelle/cis_golgi_network_membrane.html","cis-Golgi network membrane"],["membrane_organelle/clathrin_coated_endocytic_vesicle.html","clathrin-coated endocytic vesicle"],["membrane_organelle/clathrin_coated_endocytic_vesicle_lumen.html","clathrin-coated endocytic vesicle lumen"],["membrane_organelle/clathrin_coated_endocytic_vesicle_membrane.html","clathrin-coated endocytic vesicle membrane"],["membrane_organelle/clathrin_coated_vesicle.html","clathrin-coated vesicle"],["membrane_organelle/clathrin_coated_vesicle_lumen.html","clathrin-coated vesicle lumen"],["membrane_organelle/clathrin_coated_vesicle_membrane.html","clathrin-coated vesicle membrane"],["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"],["membrane_organelle/contractile_vacuolar_membrane.html","contractile vacuolar membrane"],["membrane_organelle/contractile_vacuole.html","contractile vacuole"],["membrane_organelle/contractile_vacuole_complex.html","contractile vacuole complex"],["membrane_organelle/contractile_vacuole_lumen.html","contractile vacuole lumen"],["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/copi_coated_vesicle_lumen.html","COPI-coated vesicle lumen"],["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"],["membrane_organelle/copii_coated_vesicle_lumen.html","COPII-coated vesicle lumen"],["membrane_organelle/cvt_vesicle.html","Cvt vesicle"],["membrane_organelle/cvt_vesicle_lumen.html","Cvt vesicle lumen"],["membrane_organelle/cvt_vesicle_membrane.html","Cvt vesicle membrane"],["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/cyanelle_thylakoid_lumen.html","cyanelle thylakoid lumen"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"],["membrane_organelle/cytoplasmic_vesicle.html","cytoplasmic vesicle"],["membrane_organelle/cytoplasmic_vesicle_lumen.html","cytoplasmic vesicle lumen"],["membrane_organelle/cytoplasmic_vesicle_membrane.html","cytoplasmic vesicle membrane"],["membrane_organelle/early_endosome.html","early endosome"],["membrane_organelle/early_endosome_lumen.html","early endosome lumen"],["membrane_organelle/early_endosome_membrane.html","early endosome membrane"],["membrane_organelle/endocytic_vesicle.html","endocytic vesicle"],["membrane_organelle/endocytic_vesicle_lumen.html","endocytic vesicle lumen"],["membrane_organelle/endocytic_vesicle_membrane.html","endocytic vesicle membrane"],["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"],["membrane_organelle/endoplasmic_reticulum_lumen.html","endoplasmic reticulum lumen"],["membrane_organelle/endoplasmic_reticulum_membrane.html","endoplasmic reticulum membrane"],["membrane_organelle/endosome.html","endosome"],["membrane_organelle/endosome_lumen.html","endosome lumen"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"],["membrane_organelle/esterosome.html","esterosome"],["membrane_organelle/esterosome_lumen.html","esterosome lumen"],["membrane_organelle/esterosome_membrane.html","esterosome membrane"],["membrane_organelle/exoneme.html","exoneme"],["membrane_organelle/eyespot_apparatus.html","eyespot apparatus"],["membrane_organelle/ferrosome.html","ferrosome"],["membrane_organelle/flagellar_pocket.html","flagellar pocket"],["membrane_organelle/food_vacuole.html","food vacuole"],["membrane_organelle/fungal_type_vacuole.html","fungal-type vacuole"],["membrane_organelle/fungal_type_vacuole_lumen.html","fungal-type vacuole lumen"],["membrane_organelle/fungal_type_vacuole_membrane.html","fungal-type vacuole membrane"],["membrane_organelle/glycosome.html","glycosome"],["membrane_organelle/glycosome_lumen.html","glycosome lumen"],["membrane_organelle/glycosome_membrane.html","glycosome membrane"],["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysomal_membrane.html","glyoxysomal membrane"],["membrane_organelle/glyoxysome.html","glyoxysome"],["membrane_organelle/golgi_apparatus.html","Golgi apparatus"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"],["membrane_organelle/golgi_cisterna.html","Golgi cisterna"],["membrane_organelle/golgi_cisterna_membrane.html","Golgi cisterna membrane"],["membrane_organelle/golgi_lumen.html","Golgi lumen"],["membrane_organelle/golgi_membrane.html","Golgi membrane"],["membrane_organelle/hydrogenosomal_membrane.html","hydrogenosomal membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/hydrogenosome_lumen.html","hydrogenosome lumen"],["membrane_organelle/inner_membrane_pellicle_complex.html","inner membrane pellicle complex"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/late_endosome_lumen.html","late endosome lumen"],["membrane_organelle/late_endosome_membrane.html","late endosome membrane"],["membrane_organelle/macronucleus.html","macronucleus"],["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"],["membrane_organelle/maurer_s_cleft.html","Maurer's cleft"],["membrane_organelle/methane_oxidizing_organelle.html","methane-oxidizing organelle"],["membrane_organelle/microneme.html","microneme"],["membrane_organelle/microneme_lumen.html","microneme lumen"],["membrane_organelle/microneme_membrane.html","microneme membrane"],["membrane_organelle/micronucleus.html","micronucleus"],["membrane_organelle/microsporidian_posterior_vacuole.html","microsporidian posterior vacuole"],["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"],["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrial_intermembrane_space.html","mitochondrial intermembrane space"],["membrane_organelle/mitochondrial_matrix.html","mitochondrial matrix"],["membrane_organelle/mitochondrial_membrane.html","mitochondrial membrane"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"],["membrane_organelle/mitosome.html","mitosome"],["membrane_organelle/mitosome_envelope.html","mitosome envelope"],["membrane_organelle/mitosome_inner_membrane.html","mitosome inner membrane"],["membrane_organelle/mitosome_intermembrane_space.html","mitosome intermembrane space"],["membrane_organelle/mitosome_matrix.html","mitosome matrix"],["membrane_organelle/mitosome_outer_membrane.html","mitosome outer membrane"],["membrane_organelle/mononeme.html","mononeme"],["membrane_organelle/mucocyst.html","mucocyst"],["membrane_organelle/multivesicular_body.html","multivesicular body"],["membrane_organelle/multivesicular_body_intraluminal_vesicle.html","multivesicular body intraluminal vesicle"],["membrane_organelle/multivesicular_body_lumen.html","multivesicular body lumen"],["membrane_organelle/multivesicular_body_membrane.html","multivesicular body membrane"],["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nuclear_envelope_lumen.html","nuclear envelope lumen"],["membrane_organelle/nuclear_inner_membrane.html","nuclear inner membrane"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"],["membrane_organelle/nucleomorph.html","nucleomorph"],["membrane_organelle/nucleus.html","nucleus"],["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"]]} \ No newline at end of file diff --git a/assets/fleet/cells/CellStructureMech--PDB.json b/assets/fleet/cells/CellStructureMech--PDB.json index d40c112..782b3e4 100644 --- a/assets/fleet/cells/CellStructureMech--PDB.json +++ b/assets/fleet/cells/CellStructureMech--PDB.json @@ -1 +1 @@ -{"mech":"CellStructureMech","prefix":"PDB","base":"https://culturebotai.github.io/CellStructureMech/pages/structures/","total":6,"records":[["appendage/omce_cytochrome_nanowire.html","OmcE cytochrome nanowire"],["appendage/omcs_cytochrome_nanowire.html","OmcS cytochrome nanowire"],["appendage/omcz_cytochrome_nanowire.html","OmcZ cytochrome nanowire"],["cytoskeleton/mamk_filament.html","MamK filament"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["secretion_system/esx_3_type_vii_secretion_system_membrane_complex.html","ESX-3 type VII secretion system membrane complex"]]} \ No newline at end of file +{"mech":"CellStructureMech","prefix":"PDB","base":"https://culturebotai.github.io/CellStructureMech/pages/structures/","total":19,"records":[["appendage/omce_cytochrome_nanowire.html","OmcE cytochrome nanowire"],["appendage/omcs_cytochrome_nanowire.html","OmcS cytochrome nanowire"],["appendage/omcz_cytochrome_nanowire.html","OmcZ cytochrome nanowire"],["cytoskeleton/mamk_filament.html","MamK filament"],["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"],["energy_complex/cytochrome_o_ubiquinol_oxidase_complex.html","cytochrome o ubiquinol oxidase complex"],["energy_complex/fumarate_reductase_complex.html","fumarate reductase complex"],["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"],["energy_complex/nitrogenase_complex.html","nitrogenase complex"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["energy_complex/respiratory_chain_complex_i.html","respiratory chain complex I"],["energy_complex/respiratory_chain_complex_ii_succinate_dehydrogenase.html","respiratory chain complex II (succinate dehydrogenase)"],["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"],["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"],["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"],["other/dna_gyrase_complex.html","DNA gyrase complex"],["other/exodeoxyribonuclease_v_complex.html","exodeoxyribonuclease V complex"],["other/single_stranded_dna_binding_protein_complex.html","single-stranded DNA-binding protein complex"],["secretion_system/esx_3_type_vii_secretion_system_membrane_complex.html","ESX-3 type VII secretion system membrane complex"]]} \ No newline at end of file diff --git a/assets/fleet/cells/CellStructureMech--UniProt.json b/assets/fleet/cells/CellStructureMech--UniProt.json index 3d4a3da..2f8ec9a 100644 --- a/assets/fleet/cells/CellStructureMech--UniProt.json +++ b/assets/fleet/cells/CellStructureMech--UniProt.json @@ -1 +1 @@ -{"mech":"CellStructureMech","prefix":"UniProt","base":"https://culturebotai.github.io/CellStructureMech/pages/structures/","total":52,"records":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/attachment_organelle.html","attachment organelle"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"],["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"],["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"],["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"],["appendage/omce_cytochrome_nanowire.html","OmcE cytochrome nanowire"],["appendage/omcs_cytochrome_nanowire.html","OmcS cytochrome nanowire"],["appendage/omcz_cytochrome_nanowire.html","OmcZ cytochrome nanowire"],["appendage/paraflagellar_rod.html","paraflagellar rod"],["appendage/periplasmic_flagellum.html","periplasmic flagellum"],["cytoskeleton/cytoophidium.html","cytoophidium"],["cytoskeleton/mamk_filament.html","MamK filament"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/esterosome.html","esterosome"],["membrane_organelle/magnetosome.html","magnetosome"],["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"],["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"],["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"],["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"],["other/cellulosome.html","cellulosome"],["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"],["other/proteasome_core_complex.html","proteasome core complex"],["ribonucleoprotein/ribosome.html","ribosome"],["secretion_system/esx_3_type_vii_secretion_system_membrane_complex.html","ESX-3 type VII secretion system membrane complex"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"],["secretion_system/secyeg_translocon_complex.html","SecYEG translocon complex"],["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"],["secretion_system/type_iii_protein_secretion_system_complex.html","type III protein secretion system complex"],["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"],["spore/microsporidian_type_endospore.html","microsporidian-type endospore"],["spore/microsporidian_type_exospore.html","microsporidian-type exospore"],["spore/polar_tube_anchoring_disc.html","polar tube anchoring disc"]]} \ No newline at end of file +{"mech":"CellStructureMech","prefix":"UniProt","base":"https://culturebotai.github.io/CellStructureMech/pages/structures/","total":65,"records":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/attachment_organelle.html","attachment organelle"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"],["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"],["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"],["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"],["appendage/omce_cytochrome_nanowire.html","OmcE cytochrome nanowire"],["appendage/omcs_cytochrome_nanowire.html","OmcS cytochrome nanowire"],["appendage/omcz_cytochrome_nanowire.html","OmcZ cytochrome nanowire"],["appendage/paraflagellar_rod.html","paraflagellar rod"],["appendage/periplasmic_flagellum.html","periplasmic flagellum"],["cytoskeleton/cytoophidium.html","cytoophidium"],["cytoskeleton/mamk_filament.html","MamK filament"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"],["energy_complex/cytochrome_o_ubiquinol_oxidase_complex.html","cytochrome o ubiquinol oxidase complex"],["energy_complex/fumarate_reductase_complex.html","fumarate reductase complex"],["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"],["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"],["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"],["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/esterosome.html","esterosome"],["membrane_organelle/magnetosome.html","magnetosome"],["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"],["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"],["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"],["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"],["other/cellulosome.html","cellulosome"],["other/dna_gyrase_complex.html","DNA gyrase complex"],["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"],["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"],["other/exodeoxyribonuclease_v_complex.html","exodeoxyribonuclease V complex"],["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"],["other/proteasome_core_complex.html","proteasome core complex"],["other/single_stranded_dna_binding_protein_complex.html","single-stranded DNA-binding protein complex"],["ribonucleoprotein/dimeric_ribonuclease_p_complex.html","dimeric ribonuclease P complex"],["ribonucleoprotein/ribosome.html","ribosome"],["secretion_system/esx_3_type_vii_secretion_system_membrane_complex.html","ESX-3 type VII secretion system membrane complex"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"],["secretion_system/secyeg_translocon_complex.html","SecYEG translocon complex"],["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"],["secretion_system/type_iii_protein_secretion_system_complex.html","type III protein secretion system complex"],["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"],["spore/microsporidian_type_endospore.html","microsporidian-type endospore"],["spore/microsporidian_type_exospore.html","microsporidian-type exospore"],["spore/polar_tube_anchoring_disc.html","polar tube anchoring disc"]]} \ No newline at end of file diff --git a/assets/fleet/cells/CommunityMech--CHEBI.json b/assets/fleet/cells/CommunityMech--CHEBI.json index 7426f64..a135bfc 100644 --- a/assets/fleet/cells/CommunityMech--CHEBI.json +++ b/assets/fleet/cells/CommunityMech--CHEBI.json @@ -1 +1 @@ -{"mech":"CommunityMech","prefix":"CHEBI","base":"https://culturebotai.github.io/CommunityMech/communities/","total":320,"records":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["DVM_Triculture.html","DVM Tri-culture"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["Horonobe_Mizunami_URL_Subsurface_Microbiome.html","Horonobe and Mizunami Underground Research Laboratory Subsurface Microbiome"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"],["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Maize_Benzoxazinoid_Metabolizing_SynComs.html","Maize Benzoxazinoid-Metabolizing SynComs"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"],["Pelagerythrobacter_Salinicola_PES_Pyrene_Degradation_SynCom.html","Pelagerythrobacter-Salinicola PES Pyrene-Degradation SynCom"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Phosphitivorax_Methanoculleus_Lithosyntrophy_Phosphite_Coculture.html","Phosphitivorax-Methanoculleus Lithosyntrophic Phosphite-Oxidizing Methanogenic Culture"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Rice_Acid_Soil_Bioinoculant_SynCom.html","Rice Acid Soil Bioinoculant SynCom"],["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"],["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["SPRUCE_Peatland_Methane_Cycling_Community.html","SPRUCE Peatland Methane-Cycling Microbial Community"],["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"],["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Sedimenting_Arabinose_Glucose_Saccharomyces_Coculture.html","Sedimenting Arabinose-Glucose Saccharomyces Coculture"],["Shewanella_Denitrifying_Richness_SynComs.html","Shewanella Denitrifying Richness SynComs"],["Shewanella_Pseudomonas_Fe0_Electrosyntrophic_Denitrifying_Consortium.html","Shewanella oneidensis + Pseudomonas aeruginosa Fe0-dependent Electro-syntrophic Denitrifying Consortium"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"],["Soil_Corrinoid_B12_Reservoir_Community.html","Soil Corrinoid Reservoir Microbial Community"],["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["South_Bay_Salt_Pond_Methane_Restoration_Community.html","South Bay Salt Pond Methane Restoration Microbial Community"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"],["Sphingobium_Nitrososphaera_Phenanthrene_Carbon_SynCom.html","Sphingobium-Nitrososphaera Phenanthrene-Carbon SynCom"],["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"],["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"],["Subsurface_Carboxydocella_CO_Aquifer_Community.html","Subsurface Carboxydocella CO-Oxidation Aquifer Community"],["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"],["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"],["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"],["SynCom_Chlorella_sorokiniana_Biogas_Slurry_Coupling_System.html","SynCom + Chlorella sorokiniana Biogas-slurry Coupling System"],["SynCom_Pseudomonas_Rahnella_Artemisia_Phytoremediation.html","Pseudomonas-Rahnella native rhizosphere SynCom for Artemisia argyi phytoremediation"],["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"],["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"],["Synechococcus_Bacillus_SPC.html","Synechococcus-Bacillus Synthetic Photosynthetic Consortium"],["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"],["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"],["Synechococcus_Saccharomyces_SPC.html","Synechococcus-Saccharomyces Synthetic Photosynthetic Consortium"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"],["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"],["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"],["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"],["Thiocyanate_Afipia_Thiobacillus_Bioreactor_Community.html","Thiocyanate-Degrading Afipia and Thiobacillus Bioreactor Community"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"],["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]]} \ No newline at end of file +{"mech":"CommunityMech","prefix":"CHEBI","base":"https://culturebotai.github.io/CommunityMech/communities/","total":361,"records":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["DVM_Triculture.html","DVM Tri-culture"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["Horonobe_Mizunami_URL_Subsurface_Microbiome.html","Horonobe and Mizunami Underground Research Laboratory Subsurface Microbiome"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"],["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Magnetite_Sulfate_Stress_Anaerobic_Microbiome.html","Magnetite Sulfate-Stress Anaerobic Microbiome"],["Maize_Benzoxazinoid_Metabolizing_SynComs.html","Maize Benzoxazinoid-Metabolizing SynComs"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Meghalaya_Bacillus_Consortia_A22ED9.html","Meghalaya Bacillus Consortia-A22ED9"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"],["Pelagerythrobacter_Salinicola_PES_Pyrene_Degradation_SynCom.html","Pelagerythrobacter-Salinicola PES Pyrene-Degradation SynCom"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Phosphitivorax_Methanoculleus_Lithosyntrophy_Phosphite_Coculture.html","Phosphitivorax-Methanoculleus Lithosyntrophic Phosphite-Oxidizing Methanogenic Culture"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"],["QY2S1_Dehalogenimonas_BFR_Bioremediation_Consortium.html","QY2-S1 Dehalogenimonas-Rich Brominated-Flame-Retardant Consortium"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"],["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Rice_Acid_Soil_Bioinoculant_SynCom.html","Rice Acid Soil Bioinoculant SynCom"],["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"],["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"],["SPRUCE_Peatland_Methane_Cycling_Community.html","SPRUCE Peatland Methane-Cycling Microbial Community"],["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"],["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Sedimenting_Arabinose_Glucose_Saccharomyces_Coculture.html","Sedimenting Arabinose-Glucose Saccharomyces Coculture"],["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"],["Shewanella_Denitrifying_Richness_SynComs.html","Shewanella Denitrifying Richness SynComs"],["Shewanella_Pseudomonas_Fe0_Electrosyntrophic_Denitrifying_Consortium.html","Shewanella oneidensis + Pseudomonas aeruginosa Fe0-dependent Electro-syntrophic Denitrifying Consortium"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"],["Sichuan_Shai_Vinegar_Yeast_Flavor_SynCom.html","Sichuan Shai Vinegar Yeast Flavor SynCom"],["Soil_Corrinoid_B12_Reservoir_Community.html","Soil Corrinoid Reservoir Microbial Community"],["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["South_Bay_Salt_Pond_Methane_Restoration_Community.html","South Bay Salt Pond Methane Restoration Microbial Community"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"],["Sphingobium_Nitrososphaera_Phenanthrene_Carbon_SynCom.html","Sphingobium-Nitrososphaera Phenanthrene-Carbon SynCom"],["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"],["Staged_Cattle_Manure_Ensifer_Bacillus_SynCom.html","Staged Ensifer-Bacillus Cattle-Manure Wastewater SynCom"]]} \ No newline at end of file diff --git a/assets/fleet/cells/CommunityMech--ENVO.json b/assets/fleet/cells/CommunityMech--ENVO.json index 1575250..58372be 100644 --- a/assets/fleet/cells/CommunityMech--ENVO.json +++ b/assets/fleet/cells/CommunityMech--ENVO.json @@ -1 +1 @@ -{"mech":"CommunityMech","prefix":"ENVO","base":"https://culturebotai.github.io/CommunityMech/communities/","total":350,"records":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Cultivated_Meat_Contaminant_SynCom.html","Cultivated Meat Contaminant SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["DVM_Triculture.html","DVM Tri-culture"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Horonobe_Mizunami_URL_Subsurface_Microbiome.html","Horonobe and Mizunami Underground Research Laboratory Subsurface Microbiome"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"],["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Komagataella_Ecoli_Coinducible_Biosynthesis_Coculture.html","Komagataella-E. coli Co-inducible Biosynthesis Coculture"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["LBNL_Switchgrass_Soil_SynCom16.html","LBNL Switchgrass Soil SynCom16"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Maize_Benzoxazinoid_Metabolizing_SynComs.html","Maize Benzoxazinoid-Metabolizing SynComs"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Mediterranean_AM_Fungal_SixSpecies_SynCom.html","Mediterranean AM Fungal Six-Species SynCom"],["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"],["Nitratireductor_Gordonia_Z123_LDPE_Degradation_SynCom.html","Nitratireductor-Gordonia Z123 LDPE-Degradation SynCom"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["PMI_Variovorax_Thermotolerance_Collection.html","PMI Variovorax Thermotolerance Collection"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"],["Pelagerythrobacter_Salinicola_PES_Pyrene_Degradation_SynCom.html","Pelagerythrobacter-Salinicola PES Pyrene-Degradation SynCom"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Phosphitivorax_Methanoculleus_Lithosyntrophy_Phosphite_Coculture.html","Phosphitivorax-Methanoculleus Lithosyntrophic Phosphite-Oxidizing Methanogenic Culture"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Pichia_Lactiplantibacillus_CCMA_Plant_Beverage_Coculture.html","Pichia-Lactiplantibacillus CCMA Plant Beverage Coculture"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Rice_Acid_Soil_Bioinoculant_SynCom.html","Rice Acid Soil Bioinoculant SynCom"],["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"],["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["SPRUCE_Peatland_Methane_Cycling_Community.html","SPRUCE Peatland Methane-Cycling Microbial Community"],["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"],["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"],["Sedimenting_Arabinose_Glucose_Saccharomyces_Coculture.html","Sedimenting Arabinose-Glucose Saccharomyces Coculture"],["Shewanella_Denitrifying_Richness_SynComs.html","Shewanella Denitrifying Richness SynComs"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"],["Shewanella_Pseudomonas_Fe0_Electrosyntrophic_Denitrifying_Consortium.html","Shewanella oneidensis + Pseudomonas aeruginosa Fe0-dependent Electro-syntrophic Denitrifying Consortium"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"],["Soil_BGC_Phylum_Depth_Vegetation_Community.html","Soil Biosynthetic Gene Cluster Phylum-Depth-Vegetation Community"],["Soil_CPR_Nanoarchaea_Rare_Biosphere_Community.html","Soil CPR Bacteria and Nanoarchaea Rare-Biosphere Community"],["Soil_Corrinoid_B12_Reservoir_Community.html","Soil Corrinoid Reservoir Microbial Community"],["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["South_Bay_Salt_Pond_Methane_Restoration_Community.html","South Bay Salt Pond Methane Restoration Microbial Community"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"],["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"],["Sphingobium_Nitrososphaera_Phenanthrene_Carbon_SynCom.html","Sphingobium-Nitrososphaera Phenanthrene-Carbon SynCom"],["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"],["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"],["Subsurface_Carboxydocella_CO_Aquifer_Community.html","Subsurface Carboxydocella CO-Oxidation Aquifer Community"],["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"],["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"],["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"],["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"],["SynCom_Chlorella_sorokiniana_Biogas_Slurry_Coupling_System.html","SynCom + Chlorella sorokiniana Biogas-slurry Coupling System"],["SynCom_MetG2_Rhizobacteria_Sugarcane_Stress_Resilience.html","SynCom MetG2 Rhizobacteria Sugarcane Stress Resilience"],["SynCom_Pseudomonas_Rahnella_Artemisia_Phytoremediation.html","Pseudomonas-Rahnella native rhizosphere SynCom for Artemisia argyi phytoremediation"],["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]]} \ No newline at end of file +{"mech":"CommunityMech","prefix":"ENVO","base":"https://culturebotai.github.io/CommunityMech/communities/","total":412,"records":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"],["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Chlorella_Vulgaris_Whey_Coculture.html","Chlorella vulgaris Whey Co-culture"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Clostridial_isoDCA_Mini_Consortium.html","Clostridial isoDCA Mini Consortium"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Cultivated_Meat_Contaminant_SynCom.html","Cultivated Meat Contaminant SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["DVM_Triculture.html","DVM Tri-culture"],["Dairy_Wastewater_Algal_Cyanobacterial_Cultivation_Panel.html","Dairy Wastewater Algal-Cyanobacterial Cultivation Panel"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["FourSpecies_Aerobic_Lung_Microbiome_Model.html","Four-Species Aerobic Lung Microbiome Model"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Horonobe_Mizunami_URL_Subsurface_Microbiome.html","Horonobe and Mizunami Underground Research Laboratory Subsurface Microbiome"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"],["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Komagataella_Ecoli_Coinducible_Biosynthesis_Coculture.html","Komagataella-E. coli Co-inducible Biosynthesis Coculture"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["LBNL_Switchgrass_Soil_SynCom16.html","LBNL Switchgrass Soil SynCom16"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Magnetite_Sulfate_Stress_Anaerobic_Microbiome.html","Magnetite Sulfate-Stress Anaerobic Microbiome"],["Maize_Benzoxazinoid_Metabolizing_SynComs.html","Maize Benzoxazinoid-Metabolizing SynComs"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Mediterranean_AM_Fungal_SixSpecies_SynCom.html","Mediterranean AM Fungal Six-Species SynCom"],["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"],["Meghalaya_Bacillus_Consortia_A22ED9.html","Meghalaya Bacillus Consortia-A22ED9"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"],["Microalgae_Cyanobacteria_Bioactive_Peptide_Consortia.html","Microalgae-Cyanobacteria Bioactive Peptide Consortia"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"],["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"],["Nitratireductor_Gordonia_Z123_LDPE_Degradation_SynCom.html","Nitratireductor-Gordonia Z123 LDPE-Degradation SynCom"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"],["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["PMI_Variovorax_Thermotolerance_Collection.html","PMI Variovorax Thermotolerance Collection"],["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"],["Pelagerythrobacter_Salinicola_PES_Pyrene_Degradation_SynCom.html","Pelagerythrobacter-Salinicola PES Pyrene-Degradation SynCom"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Phosphitivorax_Methanoculleus_Lithosyntrophy_Phosphite_Coculture.html","Phosphitivorax-Methanoculleus Lithosyntrophic Phosphite-Oxidizing Methanogenic Culture"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Pichia_Lactiplantibacillus_CCMA_Plant_Beverage_Coculture.html","Pichia-Lactiplantibacillus CCMA Plant Beverage Coculture"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["QY2S1_Dehalogenimonas_BFR_Bioremediation_Consortium.html","QY2-S1 Dehalogenimonas-Rich Brominated-Flame-Retardant Consortium"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["Rhizorhabdus_Cupriavidus_BDE47_Degradation_SynCom.html","Rhizorhabdus-Cupriavidus BDE-47 Degradation SynCom"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"],["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"]]} \ No newline at end of file diff --git a/assets/fleet/cells/CommunityMech--GO.json b/assets/fleet/cells/CommunityMech--GO.json index c9394fa..376e2cb 100644 --- a/assets/fleet/cells/CommunityMech--GO.json +++ b/assets/fleet/cells/CommunityMech--GO.json @@ -1 +1 @@ -{"mech":"CommunityMech","prefix":"GO","base":"https://culturebotai.github.io/CommunityMech/communities/","total":351,"records":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"],["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Cultivated_Meat_Contaminant_SynCom.html","Cultivated Meat Contaminant SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["DVM_Triculture.html","DVM Tri-culture"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["Horonobe_Mizunami_URL_Subsurface_Microbiome.html","Horonobe and Mizunami Underground Research Laboratory Subsurface Microbiome"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["LBNL_Switchgrass_Soil_SynCom16.html","LBNL Switchgrass Soil SynCom16"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Maize_Benzoxazinoid_Metabolizing_SynComs.html","Maize Benzoxazinoid-Metabolizing SynComs"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Mediterranean_AM_Fungal_SixSpecies_SynCom.html","Mediterranean AM Fungal Six-Species SynCom"],["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"],["Nitratireductor_Gordonia_Z123_LDPE_Degradation_SynCom.html","Nitratireductor-Gordonia Z123 LDPE-Degradation SynCom"],["OMM12_Gnotobiotic_Mouse_Gut_Community.html","OMM12 Gnotobiotic Mouse Gut Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["PMI_Variovorax_Thermotolerance_Collection.html","PMI Variovorax Thermotolerance Collection"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Phosphitivorax_Methanoculleus_Lithosyntrophy_Phosphite_Coculture.html","Phosphitivorax-Methanoculleus Lithosyntrophic Phosphite-Oxidizing Methanogenic Culture"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Rice_Acid_Soil_Bioinoculant_SynCom.html","Rice Acid Soil Bioinoculant SynCom"],["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"],["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["SPRUCE_Peatland_Methane_Cycling_Community.html","SPRUCE Peatland Methane-Cycling Microbial Community"],["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"],["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"],["Sedimenting_Arabinose_Glucose_Saccharomyces_Coculture.html","Sedimenting Arabinose-Glucose Saccharomyces Coculture"],["Shewanella_Denitrifying_Richness_SynComs.html","Shewanella Denitrifying Richness SynComs"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"],["Shewanella_Pseudomonas_Fe0_Electrosyntrophic_Denitrifying_Consortium.html","Shewanella oneidensis + Pseudomonas aeruginosa Fe0-dependent Electro-syntrophic Denitrifying Consortium"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"],["SkinCom_Synthetic_Skin_Community.html","SkinCom Synthetic Skin Community"],["Soil_BGC_Phylum_Depth_Vegetation_Community.html","Soil Biosynthetic Gene Cluster Phylum-Depth-Vegetation Community"],["Soil_CPR_Nanoarchaea_Rare_Biosphere_Community.html","Soil CPR Bacteria and Nanoarchaea Rare-Biosphere Community"],["Soil_Corrinoid_B12_Reservoir_Community.html","Soil Corrinoid Reservoir Microbial Community"],["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["South_Bay_Salt_Pond_Methane_Restoration_Community.html","South Bay Salt Pond Methane Restoration Microbial Community"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"],["Sphingobium_Nitrososphaera_Phenanthrene_Carbon_SynCom.html","Sphingobium-Nitrososphaera Phenanthrene-Carbon SynCom"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"],["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"],["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"],["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"],["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"],["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"],["SynCom_Chlorella_sorokiniana_Biogas_Slurry_Coupling_System.html","SynCom + Chlorella sorokiniana Biogas-slurry Coupling System"],["SynCom_MetG2_Rhizobacteria_Sugarcane_Stress_Resilience.html","SynCom MetG2 Rhizobacteria Sugarcane Stress Resilience"],["SynCom_Pseudomonas_Rahnella_Artemisia_Phytoremediation.html","Pseudomonas-Rahnella native rhizosphere SynCom for Artemisia argyi phytoremediation"]]} \ No newline at end of file +{"mech":"CommunityMech","prefix":"GO","base":"https://culturebotai.github.io/CommunityMech/communities/","total":398,"records":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"],["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Cultivated_Meat_Contaminant_SynCom.html","Cultivated Meat Contaminant SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["DVM_Triculture.html","DVM Tri-culture"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["Horonobe_Mizunami_URL_Subsurface_Microbiome.html","Horonobe and Mizunami Underground Research Laboratory Subsurface Microbiome"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["LBNL_Switchgrass_Soil_SynCom16.html","LBNL Switchgrass Soil SynCom16"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Magnetite_Sulfate_Stress_Anaerobic_Microbiome.html","Magnetite Sulfate-Stress Anaerobic Microbiome"],["Maize_Benzoxazinoid_Metabolizing_SynComs.html","Maize Benzoxazinoid-Metabolizing SynComs"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Mediterranean_AM_Fungal_SixSpecies_SynCom.html","Mediterranean AM Fungal Six-Species SynCom"],["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"],["Nitratireductor_Gordonia_Z123_LDPE_Degradation_SynCom.html","Nitratireductor-Gordonia Z123 LDPE-Degradation SynCom"],["OMM12_Gnotobiotic_Mouse_Gut_Community.html","OMM12 Gnotobiotic Mouse Gut Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"],["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["PMI_Variovorax_Thermotolerance_Collection.html","PMI Variovorax Thermotolerance Collection"],["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Phosphitivorax_Methanoculleus_Lithosyntrophy_Phosphite_Coculture.html","Phosphitivorax-Methanoculleus Lithosyntrophic Phosphite-Oxidizing Methanogenic Culture"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["QY2S1_Dehalogenimonas_BFR_Bioremediation_Consortium.html","QY2-S1 Dehalogenimonas-Rich Brominated-Flame-Retardant Consortium"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["Rhizorhabdus_Cupriavidus_BDE47_Degradation_SynCom.html","Rhizorhabdus-Cupriavidus BDE-47 Degradation SynCom"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"],["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Rice_Acid_Soil_Bioinoculant_SynCom.html","Rice Acid Soil Bioinoculant SynCom"],["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"],["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"],["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"],["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]} \ No newline at end of file diff --git a/assets/fleet/cells/CommunityMech--GTDB.json b/assets/fleet/cells/CommunityMech--GTDB.json index 98fea04..2e44780 100644 --- a/assets/fleet/cells/CommunityMech--GTDB.json +++ b/assets/fleet/cells/CommunityMech--GTDB.json @@ -1 +1 @@ -{"mech":"CommunityMech","prefix":"GTDB","base":"https://culturebotai.github.io/CommunityMech/communities/","total":338,"records":[["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"],["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"],["Cultivated_Meat_Contaminant_SynCom.html","Cultivated Meat Contaminant SynCom"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["DVM_Triculture.html","DVM Tri-culture"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"],["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Komagataella_Ecoli_Coinducible_Biosynthesis_Coculture.html","Komagataella-E. coli Co-inducible Biosynthesis Coculture"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["LBNL_Switchgrass_Soil_SynCom16.html","LBNL Switchgrass Soil SynCom16"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Maize_Benzoxazinoid_Metabolizing_SynComs.html","Maize Benzoxazinoid-Metabolizing SynComs"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"],["OMM12_Gnotobiotic_Mouse_Gut_Community.html","OMM12 Gnotobiotic Mouse Gut Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["PMI_Variovorax_Thermotolerance_Collection.html","PMI Variovorax Thermotolerance Collection"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Phosphitivorax_Methanoculleus_Lithosyntrophy_Phosphite_Coculture.html","Phosphitivorax-Methanoculleus Lithosyntrophic Phosphite-Oxidizing Methanogenic Culture"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Pichia_Lactiplantibacillus_CCMA_Plant_Beverage_Coculture.html","Pichia-Lactiplantibacillus CCMA Plant Beverage Coculture"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Rice_Acid_Soil_Bioinoculant_SynCom.html","Rice Acid Soil Bioinoculant SynCom"],["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"],["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["SPRUCE_Peatland_Methane_Cycling_Community.html","SPRUCE Peatland Methane-Cycling Microbial Community"],["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"],["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"],["Shewanella_Denitrifying_Richness_SynComs.html","Shewanella Denitrifying Richness SynComs"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"],["Shewanella_Pseudomonas_Fe0_Electrosyntrophic_Denitrifying_Consortium.html","Shewanella oneidensis + Pseudomonas aeruginosa Fe0-dependent Electro-syntrophic Denitrifying Consortium"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"],["SkinCom_Synthetic_Skin_Community.html","SkinCom Synthetic Skin Community"],["Soil_BGC_Phylum_Depth_Vegetation_Community.html","Soil Biosynthetic Gene Cluster Phylum-Depth-Vegetation Community"],["Soil_Corrinoid_B12_Reservoir_Community.html","Soil Corrinoid Reservoir Microbial Community"],["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["South_Bay_Salt_Pond_Methane_Restoration_Community.html","South Bay Salt Pond Methane Restoration Microbial Community"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"],["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"],["Sphingobium_Nitrososphaera_Phenanthrene_Carbon_SynCom.html","Sphingobium-Nitrososphaera Phenanthrene-Carbon SynCom"],["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"],["Subsurface_Carboxydocella_CO_Aquifer_Community.html","Subsurface Carboxydocella CO-Oxidation Aquifer Community"],["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"],["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"],["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"],["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"],["SynCom_Chlorella_sorokiniana_Biogas_Slurry_Coupling_System.html","SynCom + Chlorella sorokiniana Biogas-slurry Coupling System"],["SynCom_MetG2_Rhizobacteria_Sugarcane_Stress_Resilience.html","SynCom MetG2 Rhizobacteria Sugarcane Stress Resilience"],["SynCom_Pseudomonas_Rahnella_Artemisia_Phytoremediation.html","Pseudomonas-Rahnella native rhizosphere SynCom for Artemisia argyi phytoremediation"],["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"],["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"],["Synechococcus_Bacillus_SPC.html","Synechococcus-Bacillus Synthetic Photosynthetic Consortium"],["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"],["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"],["Synechococcus_Saccharomyces_SPC.html","Synechococcus-Saccharomyces Synthetic Photosynthetic Consortium"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"],["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"]]} \ No newline at end of file +{"mech":"CommunityMech","prefix":"GTDB","base":"https://culturebotai.github.io/CommunityMech/communities/","total":370,"records":[["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"],["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Clostridial_isoDCA_Mini_Consortium.html","Clostridial isoDCA Mini Consortium"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"],["Cultivated_Meat_Contaminant_SynCom.html","Cultivated Meat Contaminant SynCom"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["DVM_Triculture.html","DVM Tri-culture"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"],["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Komagataella_Ecoli_Coinducible_Biosynthesis_Coculture.html","Komagataella-E. coli Co-inducible Biosynthesis Coculture"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["LBNL_Switchgrass_Soil_SynCom16.html","LBNL Switchgrass Soil SynCom16"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Magnetite_Sulfate_Stress_Anaerobic_Microbiome.html","Magnetite Sulfate-Stress Anaerobic Microbiome"],["Maize_Benzoxazinoid_Metabolizing_SynComs.html","Maize Benzoxazinoid-Metabolizing SynComs"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"],["Microalgae_Cyanobacteria_Bioactive_Peptide_Consortia.html","Microalgae-Cyanobacteria Bioactive Peptide Consortia"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"],["OMM12_Gnotobiotic_Mouse_Gut_Community.html","OMM12 Gnotobiotic Mouse Gut Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["PMI_Variovorax_Thermotolerance_Collection.html","PMI Variovorax Thermotolerance Collection"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Phosphitivorax_Methanoculleus_Lithosyntrophy_Phosphite_Coculture.html","Phosphitivorax-Methanoculleus Lithosyntrophic Phosphite-Oxidizing Methanogenic Culture"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Pichia_Lactiplantibacillus_CCMA_Plant_Beverage_Coculture.html","Pichia-Lactiplantibacillus CCMA Plant Beverage Coculture"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"],["QY2S1_Dehalogenimonas_BFR_Bioremediation_Consortium.html","QY2-S1 Dehalogenimonas-Rich Brominated-Flame-Retardant Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"],["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Rice_Acid_Soil_Bioinoculant_SynCom.html","Rice Acid Soil Bioinoculant SynCom"],["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"],["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"],["SPRUCE_Peatland_Methane_Cycling_Community.html","SPRUCE Peatland Methane-Cycling Microbial Community"],["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"],["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"],["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"],["Shewanella_Denitrifying_Richness_SynComs.html","Shewanella Denitrifying Richness SynComs"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"],["Shewanella_Pseudomonas_Fe0_Electrosyntrophic_Denitrifying_Consortium.html","Shewanella oneidensis + Pseudomonas aeruginosa Fe0-dependent Electro-syntrophic Denitrifying Consortium"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"],["SkinCom_Synthetic_Skin_Community.html","SkinCom Synthetic Skin Community"],["Soil_BGC_Phylum_Depth_Vegetation_Community.html","Soil Biosynthetic Gene Cluster Phylum-Depth-Vegetation Community"],["Soil_Corrinoid_B12_Reservoir_Community.html","Soil Corrinoid Reservoir Microbial Community"],["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["South_Bay_Salt_Pond_Methane_Restoration_Community.html","South Bay Salt Pond Methane Restoration Microbial Community"]]} \ No newline at end of file diff --git a/assets/fleet/cells/CommunityMech--NCBITaxon.json b/assets/fleet/cells/CommunityMech--NCBITaxon.json index 1c08be4..0424005 100644 --- a/assets/fleet/cells/CommunityMech--NCBITaxon.json +++ b/assets/fleet/cells/CommunityMech--NCBITaxon.json @@ -1 +1 @@ -{"mech":"CommunityMech","prefix":"NCBITaxon","base":"https://culturebotai.github.io/CommunityMech/communities/","total":364,"records":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"],["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Cultivated_Meat_Contaminant_SynCom.html","Cultivated Meat Contaminant SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["DVM_Triculture.html","DVM Tri-culture"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["Horonobe_Mizunami_URL_Subsurface_Microbiome.html","Horonobe and Mizunami Underground Research Laboratory Subsurface Microbiome"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"],["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Komagataella_Ecoli_Coinducible_Biosynthesis_Coculture.html","Komagataella-E. coli Co-inducible Biosynthesis Coculture"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["LBNL_Switchgrass_Soil_SynCom16.html","LBNL Switchgrass Soil SynCom16"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Maize_Benzoxazinoid_Metabolizing_SynComs.html","Maize Benzoxazinoid-Metabolizing SynComs"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Mediterranean_AM_Fungal_SixSpecies_SynCom.html","Mediterranean AM Fungal Six-Species SynCom"],["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"],["Nitratireductor_Gordonia_Z123_LDPE_Degradation_SynCom.html","Nitratireductor-Gordonia Z123 LDPE-Degradation SynCom"],["OMM12_Gnotobiotic_Mouse_Gut_Community.html","OMM12 Gnotobiotic Mouse Gut Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["PMI_Variovorax_Thermotolerance_Collection.html","PMI Variovorax Thermotolerance Collection"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"],["Pelagerythrobacter_Salinicola_PES_Pyrene_Degradation_SynCom.html","Pelagerythrobacter-Salinicola PES Pyrene-Degradation SynCom"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Phosphitivorax_Methanoculleus_Lithosyntrophy_Phosphite_Coculture.html","Phosphitivorax-Methanoculleus Lithosyntrophic Phosphite-Oxidizing Methanogenic Culture"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Pichia_Lactiplantibacillus_CCMA_Plant_Beverage_Coculture.html","Pichia-Lactiplantibacillus CCMA Plant Beverage Coculture"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Rice_Acid_Soil_Bioinoculant_SynCom.html","Rice Acid Soil Bioinoculant SynCom"],["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"],["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["SPRUCE_Peatland_Methane_Cycling_Community.html","SPRUCE Peatland Methane-Cycling Microbial Community"],["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"],["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"],["Sedimenting_Arabinose_Glucose_Saccharomyces_Coculture.html","Sedimenting Arabinose-Glucose Saccharomyces Coculture"],["Shewanella_Denitrifying_Richness_SynComs.html","Shewanella Denitrifying Richness SynComs"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"],["Shewanella_Pseudomonas_Fe0_Electrosyntrophic_Denitrifying_Consortium.html","Shewanella oneidensis + Pseudomonas aeruginosa Fe0-dependent Electro-syntrophic Denitrifying Consortium"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"],["SkinCom_Synthetic_Skin_Community.html","SkinCom Synthetic Skin Community"],["Soil_BGC_Phylum_Depth_Vegetation_Community.html","Soil Biosynthetic Gene Cluster Phylum-Depth-Vegetation Community"],["Soil_CPR_Nanoarchaea_Rare_Biosphere_Community.html","Soil CPR Bacteria and Nanoarchaea Rare-Biosphere Community"],["Soil_Corrinoid_B12_Reservoir_Community.html","Soil Corrinoid Reservoir Microbial Community"],["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["South_Bay_Salt_Pond_Methane_Restoration_Community.html","South Bay Salt Pond Methane Restoration Microbial Community"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"],["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"],["Sphingobium_Nitrososphaera_Phenanthrene_Carbon_SynCom.html","Sphingobium-Nitrososphaera Phenanthrene-Carbon SynCom"],["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]]} \ No newline at end of file +{"mech":"CommunityMech","prefix":"NCBITaxon","base":"https://culturebotai.github.io/CommunityMech/communities/","total":426,"records":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"],["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"],["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Chlorella_Vulgaris_Whey_Coculture.html","Chlorella vulgaris Whey Co-culture"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Clostridial_isoDCA_Mini_Consortium.html","Clostridial isoDCA Mini Consortium"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Cultivated_Meat_Contaminant_SynCom.html","Cultivated Meat Contaminant SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["DVM_Triculture.html","DVM Tri-culture"],["Dairy_Wastewater_Algal_Cyanobacterial_Cultivation_Panel.html","Dairy Wastewater Algal-Cyanobacterial Cultivation Panel"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["FourSpecies_Aerobic_Lung_Microbiome_Model.html","Four-Species Aerobic Lung Microbiome Model"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["Horonobe_Mizunami_URL_Subsurface_Microbiome.html","Horonobe and Mizunami Underground Research Laboratory Subsurface Microbiome"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"],["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Komagataella_Ecoli_Coinducible_Biosynthesis_Coculture.html","Komagataella-E. coli Co-inducible Biosynthesis Coculture"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["LBNL_Switchgrass_Soil_SynCom16.html","LBNL Switchgrass Soil SynCom16"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Magnetite_Sulfate_Stress_Anaerobic_Microbiome.html","Magnetite Sulfate-Stress Anaerobic Microbiome"],["Maize_Benzoxazinoid_Metabolizing_SynComs.html","Maize Benzoxazinoid-Metabolizing SynComs"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Mediterranean_AM_Fungal_SixSpecies_SynCom.html","Mediterranean AM Fungal Six-Species SynCom"],["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"],["Meghalaya_Bacillus_Consortia_A22ED9.html","Meghalaya Bacillus Consortia-A22ED9"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"],["Microalgae_Cyanobacteria_Bioactive_Peptide_Consortia.html","Microalgae-Cyanobacteria Bioactive Peptide Consortia"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"],["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"],["Nitratireductor_Gordonia_Z123_LDPE_Degradation_SynCom.html","Nitratireductor-Gordonia Z123 LDPE-Degradation SynCom"],["OMM12_Gnotobiotic_Mouse_Gut_Community.html","OMM12 Gnotobiotic Mouse Gut Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"],["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["PMI_Variovorax_Thermotolerance_Collection.html","PMI Variovorax Thermotolerance Collection"],["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"],["Pelagerythrobacter_Salinicola_PES_Pyrene_Degradation_SynCom.html","Pelagerythrobacter-Salinicola PES Pyrene-Degradation SynCom"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Phosphitivorax_Methanoculleus_Lithosyntrophy_Phosphite_Coculture.html","Phosphitivorax-Methanoculleus Lithosyntrophic Phosphite-Oxidizing Methanogenic Culture"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Pichia_Lactiplantibacillus_CCMA_Plant_Beverage_Coculture.html","Pichia-Lactiplantibacillus CCMA Plant Beverage Coculture"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]]} \ No newline at end of file diff --git a/assets/fleet/cells/CultureMech--CHEBI.json b/assets/fleet/cells/CultureMech--CHEBI.json index 153a4eb..e277603 100644 --- a/assets/fleet/cells/CultureMech--CHEBI.json +++ b/assets/fleet/cells/CultureMech--CHEBI.json @@ -1 +1 @@ -{"mech":"CultureMech","prefix":"CHEBI","base":"https://github.com/CultureBotAI/CultureMech/blob/main/data/merge_yaml/merged/","total":6123,"records":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["10_mh_medium.yaml","10_mh_medium"],["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["1298.yaml","1298"],["15_mgm_medium.yaml","15_mgm_medium"],["15_mh_medium.yaml","15_mh_medium"],["15_mh_medium__b586cb85.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_MB_agar.yaml","1_10_mb_agar"],["1_10_PYGV_MEDIUM_modified.yaml","1_10_pygv_medium_modified"],["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"],["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"],["1_10_r2a_broth__effd6b5a.yaml","1_10_r2a_broth"],["1_10_r2a_medium_modified_yeast_extract.yaml","1_10_r2a_medium_modified_yeast_extract"],["1_10_r2a_with_mes_ph6.yaml","1_10_r2a_with_mes_ph6"],["1_10_sabourauds_agar.yaml","1_10_sabourauds_agar"],["1_10_sabourauds_agar__6d784de4.yaml","1_10_sabourauds_agar"],["1_10_strength_ytss_agar.yaml","1_10_strength_ytss_agar"],["1_2MY.yaml","1_2my"],["1_2_GY_AGAR.yaml","1_2_gy_agar"],["1_2_R2A_Agar.yaml","1_2_r2a_agar"],["1_2_SME_MEDIUM.yaml","1_2_sme_medium"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["1_2_YTSS_MEDIUM.yaml","1_2_ytss_medium"],["1_2_gy_agar__1efdf1be.yaml","1_2_gy_agar"],["1_2_isp_2_15_nacl.yaml","1_2_isp_2_15_nacl"],["1_2_mrs_1_2_bhi_agar.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_mrs_1_2_bhi_agar__56430c33.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_r2a_75_asw.yaml","1_2_r2a_75_asw"],["1_2_r2a_medium_with_75_artificial_seawater.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["1_2_r2a_medium_with_75_artificial_seawater__5b6dd332.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["1_2_tryptic_soy_broth_anaerobe.yaml","1_2_tryptic_soy_broth_anaerobe"],["1_2_tryptic_soy_broth_anaerobic.yaml","1_2_tryptic_soy_broth_anaerobic"],["1_2_tryptic_soy_broth_anaerobic__d70593aa.yaml","1_2_tryptic_soy_broth_anaerobic"],["1_3_Diluted_LB_Medium_with_Biphenyl.yaml","1_3_diluted_lb_medium_with_biphenyl"],["1_5_Nutrient_agar.yaml","1_5_nutrient_agar"],["1_5_nutrient_agar_no_2.yaml","1_5_nutrient_agar_no_2"],["1_5_nutrient_agar_no_2__b809c568.yaml","1_5_nutrient_agar_no_2"],["1_ogawa_medium.yaml","1_ogawa_medium"],["1_ogawa_medium__65d0ae34.yaml","1_ogawa_medium"],["1_tryptone_agar.yaml","1_tryptone_agar"],["1_tryptone_agar__551e7d77.yaml","1_tryptone_agar"],["1_tryptone_agar__cfec473e.yaml","1_tryptone_agar"],["1a_Medium.yaml","1a_medium"],["225M1_MEDIUM.yaml","225m1_medium"],["225m1_medium__5109009b.yaml","225m1_medium"],["225m1_medium__936a42af.yaml","225m1_medium"],["23_mgm_medium.yaml","23_mgm_medium"],["25_glucose_medium.yaml","25_glucose_medium"],["25_glucose_medium__2c0720bc.yaml","25_glucose_medium"],["28_mh_medium.yaml","28_mh_medium"],["2ASW.yaml","2asw"],["2_5_nacl_bpg_agar.yaml","2_5_nacl_bpg_agar"],["2_5_nacl_bpg_agar__bf5a0a80.yaml","2_5_nacl_bpg_agar"],["2_5_nacl_gypfk_agar_broth.yaml","2_5_nacl_gypfk_agar_broth"],["2_5_nacl_heart_infusion_hi_medium.yaml","2_5_nacl_heart_infusion_hi_medium"],["2_glucose_yeast_extract_peptone_agar.yaml","2_glucose_yeast_extract_peptone_agar"],["2_glucose_yeast_extract_peptone_agar__32ac0304.yaml","2_glucose_yeast_extract_peptone_agar"],["2_mh_medium.yaml","2_mh_medium"],["2_nacl_ypg_agar.yaml","2_nacl_ypg_agar"],["2_x_YT_Medium.yaml","2_x_yt_medium"],["2asw__59e92e67.yaml","2asw"],["2xYTG.yaml","2xytg"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["3n_bbm_v.yaml","3n_bbm_v"],["3n_bbm_v_recipe_for_customer_orders.yaml","3n_bbm_v_recipe_for_customer_orders"],["480G_MEDIUM.yaml","480g_medium"],["480g_medium__e94698e7.yaml","480g_medium"],["4_malt_agar.yaml","4_malt_agar"],["4_yaco_media.yaml","4_yaco_media"],["573C_Medium.yaml","573c_medium"],["5_G_MEDIUM.yaml","5_g_medium"],["5_g_medium__8aa8a45a.yaml","5_g_medium"],["5_salt_water_growth_medium.yaml","5_salt_water_growth_medium"],["5_sorbitol_medium.yaml","5_sorbitol_medium"],["5_sorbitol_medium__c395a410.yaml","5_sorbitol_medium"],["5_x_R2A_Agar.yaml","5_x_r2a_agar"],["6_B_MEDIUM.yaml","6_b_medium"],["6_b_medium__990e4708.yaml","6_b_medium"],["70_30_sporulation_medium.yaml","70_30_sporulation_medium"],["7H9.yaml","7H9"],["802_5_nacl.yaml","802_5_nacl"],["8kg_4_medium.yaml","8kg_4_medium"],["948_oxoid_nutrient_broth_with_additonal_salt.yaml","948_oxoid_nutrient_broth_with_additonal_salt"],["9K_MEDIUM.yaml","9k_medium"],["9K_WITH_SULFUR_MEDIUM.yaml","9k_with_sulfur_medium"],["9_K_medium.yaml","9_k_medium"],["9_k_medium__c97a7f66.yaml","9_k_medium"],["9k_medium__4af6025b.yaml","9k_medium"],["A1_MARINE_MEDIUM.yaml","a1_marine_medium"],["A1_MEDIUM.yaml","a1_medium"],["A2_MEDIUM.yaml","a2_medium"],["A3.yaml","a3"],["A7_MEDIUM.yaml","a7_medium"],["AAM_MEDIUM.yaml","aam_medium"],["ABB.yaml","ABB"],["ABM.yaml","abm"],["ABSS2.yaml","abss2"],["ABYSSISOLIBACTER_MEDIUM.yaml","abyssisolibacter_medium"],["ACANTHAMOEBA_MEDIUM.yaml","acanthamoeba_medium"],["ACETIC_ACID_BACTERIUM_MEDIUM.yaml","acetic_acid_bacterium_medium"],["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"],["ACETIVIBRIO_ALKALICELLULOSI_MEDIUM.yaml","acetivibrio_alkalicellulosi_medium"],["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["ACETIVIBRIO_MEDIUM.yaml","acetivibrio_medium"],["ACETOANAEROBIUM_MEDIUM.yaml","acetoanaerobium_medium"],["ACETOBACTERIUM_DEHALOGENANS_MEDIUM.yaml","acetobacterium_dehalogenans_medium"],["ACETOBACTERIUM_FIMETARIUM_MEDIUM.yaml","acetobacterium_fimetarium_medium"],["ACETOBACTERIUM_MEDIUM.yaml","acetobacterium_medium"],["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["ACETOBACTERIUM_TUNDRAE_MEDIUM.yaml","acetobacterium_tundrae_medium"],["ACETOBACTEROIDES_GLYCINOPHILUS_MEDIUM.yaml","acetobacteroides_glycinophilus_medium"],["ACETOBACTEROIDES_MEDIUM.yaml","acetobacteroides_medium"],["ACETOBACTER_PEROXYDANS_MEDIUM.yaml","acetobacter_peroxydans_medium"],["ACETOHALOBIUM_MEDIUM.yaml","acetohalobium_medium"],["ACETOMICROBIUM_FAECALE_MEDIUM.yaml","acetomicrobium_faecale_medium"],["ACETOMICROBIUM_FAECALIS_MEDIUM.yaml","acetomicrobium_faecalis_medium"],["ACE_MEDIUM.yaml","ace_medium"],["ACIDAMINOBACTER_MEDIUM.yaml","acidaminobacter_medium"],["ACIDAMINOCOCCUS_FERMENTANS_MEDIUM.yaml","acidaminococcus_fermentans_medium"],["ACIDIANUS_BRIERLEYI_MEDIUM.yaml","acidianus_brierleyi_medium"],["ACIDICALDUS_MEDIUM.yaml","acidicaldus_medium"],["ACIDIC_DILUTED_ASM_MEDIUM.yaml","acidic_diluted_asm_medium"],["ACIDIFERROBACTER_MEDIUM.yaml","acidiferrobacter_medium"],["ACIDIFFEROBACTER_MURCIENSIS_MEDIUM.yaml","acidifferobacter_murciensis_medium"],["ACIDIFIED_MPOB_MEDIUM.yaml","acidified_mpob_medium"],["ACIDIHALOBACTER_MEDIUM.yaml","acidihalobacter_medium"],["ACIDIHALOBACTER_PROSPERUS_F5_MEDIUM.yaml","acidihalobacter_prosperus_f5_medium"],["ACIDIHALOBACTER_PROSPERUS_MEDIUM.yaml","acidihalobacter_prosperus_medium"],["ACIDILOBUS_MEDIUM.yaml","acidilobus_medium"],["ACIDIMICROBIUM_MEDIUM.yaml","acidimicrobium_medium"],["ACIDIPHILIUM_ACIDOPHILUM_MEDIUM.yaml","acidiphilium_acidophilum_medium"],["ACIDIPHILIUM_MEDIUM.yaml","acidiphilium_medium"],["ACIDITHIOBACILLUS_CALDUS_MEDIUM.yaml","acidithiobacillus_caldus_medium"],["ACIDITHIOBACILLUS_FERRIVORANS_MEDIUM.yaml","acidithiobacillus_ferrivorans_medium"],["ACIDITHIOBACILLUS_FERROOXIDANS_MEDIUM.yaml","acidithiobacillus_ferrooxidans_medium"],["ACIDITHIOBACILLUS_MEDIUM.yaml","acidithiobacillus_medium"],["ACIDITHIOBACILLUS_THIOOXIDANS_MEDIUM.yaml","acidithiobacillus_thiooxidans_medium"],["ACIDITHRIX_FERROOYDANS_MEDIUM.yaml","acidithrix_ferrooydans_medium"],["ACIDOBACTERIUM_MEDIUM.yaml","acidobacterium_medium"],["ACIDOLOBUS_ACETICUS_MEDIUM.yaml","acidolobus_aceticus_medium"],["ACIDOSOMA_MEDIUM.yaml","acidosoma_medium"],["ACIDULIPROFUNDUM_MEDIUM.yaml","aciduliprofundum_medium"],["ACTINOBACTERIA_MEDIUM.yaml","actinobacteria_medium"],["ACTIVATED_CARBON_MEDIUM.yaml","activated_carbon_medium"],["ACY.yaml","ACY"],["AEROBIC_SULFOLOBALES_MEDIUM.yaml","aerobic_sulfolobales_medium"],["AEROBIC_SULFOLOBALES_MEDIUM_WITHOUT_SULFUR.yaml","aerobic_sulfolobales_medium_without_sulfur"],["AE_BROTH.yaml","ae_broth"],["AE_MEDIUM.yaml","ae_medium"],["AGC2_Medium.yaml","agc2_medium"],["AG_MEDIUM.yaml","ag_medium"],["AIDINGIMONAS_MEDIUM.yaml","aidingimonas_medium"],["ALB_Medium.yaml","alb_medium"],["ALCALIGENES_MEDIUM.yaml","alcaligenes_medium"],["ALCALIGENES_XYLOSOXYDANS_MEDIUM_WITH_BENZOATE.yaml","alcaligenes_xylosoxydans_medium_with_benzoate"],["ALCALIPHILIC_AMPHIBACILLUS_STRAINS_MEDIUM.yaml","alcaliphilic_amphibacillus_strains_medium"],["ALCANIVORAX_BORKUMENSIS_MEDIUM.yaml","alcanivorax_borkumensis_medium"],["ALGINATE_MEDIUM.yaml","alginate_medium"],["ALGORIPHAGUS_ALKALIPHILUS_MEDIUM.yaml","algoriphagus_alkaliphilus_medium"],["ALGORIPHAGUS_AQUAEDUCTUS_MEDIUM.yaml","algoriphagus_aquaeductus_medium"],["ALICYCLIPHILUS_DENITRIFICANS_MEDIUM.yaml","alicycliphilus_denitrificans_medium"],["ALICYCLOBACILLUS_FERROOXYDANS_MEDIUM.yaml","alicyclobacillus_ferrooxydans_medium"],["ALICYCLOBACILLUS_MEDIUM.yaml","alicyclobacillus_medium"],["ALICYCOBACILLUS_POHLIAE_MEDIUM.yaml","alicycobacillus_pohliae_medium"],["ALKALIBACTERIUM_OLIVAPOVLITICUS.yaml","alkalibacterium_olivapovliticus"],["ALKALIFLEXUS_MEDIUM.yaml","alkaliflexus_medium"],["ALKALINE_AGAR.yaml","alkaline_agar"],["ALKALINE_CELLULOSE_AGAR.yaml","alkaline_cellulose_agar"],["ALKALINE_CLOSTRIDIAL_NUTRIENT_MEDIUM.yaml","alkaline_clostridial_nutrient_medium"],["ALKALINE_LACTOSE_AGAR.yaml","alkaline_lactose_agar"],["ALKALINE_LB_AGAR.yaml","alkaline_lb_agar"],["ALKALINE_NUTRIENT_AGAR.yaml","alkaline_nutrient_agar"],["ALKALINE_TRYPTONE_SOYA_BROTH_MEDIUM.yaml","alkaline_tryptone_soya_broth_medium"],["ALKALINE_VOGESELLA_MEDIUM.yaml","alkaline_vogesella_medium"],["ALKALINE_XYLAN_AGAR.yaml","alkaline_xylan_agar"],["ALKALINE_XYLAN_MEDIUM.yaml","alkaline_xylan_medium"],["ALKALINUS_ABYSSINIESE_MEDIUM.yaml","alkalinus_abyssiniese_medium"],["ALKALIPHILIC_HALOMONAS_MEDIUM.yaml","alkaliphilic_halomonas_medium"],["ALKALIPHILIC_SPIROCHAETE_MEDIUM.yaml","alkaliphilic_spirochaete_medium"],["ALKALIPHILIC_THERMOCOCCUS_MEDIUM.yaml","alkaliphilic_thermococcus_medium"],["ALKALIPHILUS_CROTONATOXIDANS_MEDIUM.yaml","alkaliphilus_crotonatoxidans_medium"],["ALKALIPHILUS_HYDROTHERMALIS_MEDIUM.yaml","alkaliphilus_hydrothermalis_medium"],["ALKALIPHILUS_LACT_MEDIUM.yaml","alkaliphilus_lact_medium"],["ALKALIPHILUS_LACV_MEDIUM.yaml","alkaliphilus_lacv_medium"],["ALKALIPHILUS_MEDIUM.yaml","alkaliphilus_medium"],["ALKALIPHILUS_NAMSARAEVII_MEDIUM.yaml","alkaliphilus_namsaraevii_medium"],["ALKALIPHILUS_SUCCINACIDUS_MEDIUM.yaml","alkaliphilus_succinacidus_medium"],["ALKALIPHILUS_TRANSVAALENSIS_MEDIUM.yaml","alkaliphilus_transvaalensis_medium"],["ALKALISPIRILLUM_MOBILE_MEDIUM.yaml","alkalispirillum_mobile_medium"],["ALKALITHERMOBACTER_MEDIUM.yaml","alkalithermobacter_medium"],["ALKALOPHILIC_HALOPHILE_MEDIUM.yaml","alkalophilic_halophile_medium"],["ALLANTOIN_MINERAL_MEDIUM.yaml","allantoin_mineral_medium"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALLOCATENOCOCCUS_MEDIUM.yaml","allocatenococcus_medium"],["ALP_defined.yaml","ALP defined"],["ALP_defined_chlorate.yaml","ALP defined chlorate"],["ALP_defined_noN.yaml","ALP defined noN"],["ALP_defined_perchlorate.yaml","ALP defined perchlorate"],["ALP_rich.yaml","ALP rich"],["ALP_richB.yaml","ALP richB"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["ALTEROMONAS_MEDIUM.yaml","alteromonas_medium"],["ALTERYTHROBACTER_MEDIUM_216L.yaml","alterythrobacter_medium_216l"],["AMB_MEDIUM.yaml","amb_medium"],["AMINIPHILUS_CIRCUMSRIPTUS_MEDIUM.yaml","aminiphilus_circumsriptus_medium"],["AMINIPHILUS_MEDIUM.yaml","aminiphilus_medium"],["AMINITHIOPHILUS_MEDIUM.yaml","aminithiophilus_medium"],["AMINIVIBRIO_ASINOENSIS_MEDIUM.yaml","aminivibrio_asinoensis_medium"],["AMINOBACTERIUM_SHUIJINGFANGII_MEDIUM.yaml","aminobacterium_shuijingfangii_medium"],["AMINOMONAS_MEDIUM.yaml","aminomonas_medium"],["AML60_MEDIUM.yaml","aml60_medium"],["AMMONIFEX_DEGENSII_MEDIUM.yaml","ammonifex_degensii_medium"],["AMMONIFEX_THIOPHILUS_MEDIUM.yaml","ammonifex_thiophilus_medium"],["AMOEBOBACTER_MEDIUM.yaml","amoebobacter_medium"],["AMPHIBACILLUS_MEDIUM.yaml","amphibacillus_medium"],["AMS_medium.yaml","ams_medium"],["AN1_MEDIUM.yaml","an1_medium"],["ANAEROBACCA_MEDIUM.yaml","anaerobacca_medium"],["ANAEROBACILLUS_ARSENICISELENATIS_MEDIUM.yaml","anaerobacillus_arseniciselenatis_medium"],["ANAEROBACTERIUM_MEDIUM.yaml","anaerobacterium_medium"],["ANAEROBACTER_MEDIUM.yaml","anaerobacter_medium"],["ANAEROBACULUM_MEDIUM.yaml","anaerobaculum_medium"],["ANAEROBIC_ALKALINE_LB_MEDIUM.yaml","anaerobic_alkaline_lb_medium"],["ANAEROBIC_AZOSPIRILLUM_MEDIUM.yaml","anaerobic_azospirillum_medium"],["ANAEROBIC_CHOLESTEROL_MEDIUM.yaml","anaerobic_cholesterol_medium"],["ANAEROBIC_THAUERA_MEDIUM.yaml","anaerobic_thauera_medium"],["ANAEROBIC_TRYPTIC_SOY_BROTH_MEDIUM.yaml","anaerobic_tryptic_soy_broth_medium"],["ANAEROBIC_TYEG_MEDIUM.yaml","anaerobic_tyeg_medium"],["ANAEROBIOSPIRILLUM_THOMASII_MEDIUM.yaml","anaerobiospirillum_thomasii_medium"],["ANAEROBRANCA_GOTTSCHALKII_MEDIUM.yaml","anaerobranca_gottschalkii_medium"],["ANAEROBRANCA_MEDIUM.yaml","anaerobranca_medium"],["ANAEROCELLA_MEDIUM.yaml","anaerocella_medium"],["ANAEROCELLUM_MEDIUM.yaml","anaerocellum_medium"],["ANAEROCOLUMNA_MEDIUM.yaml","anaerocolumna_medium"],["ANAEROFILUM_MEDIUM.yaml","anaerofilum_medium"],["ANAEROLINEA_MEDIUM.yaml","anaerolinea_medium"],["ANAEROLINEA_MEDIUM_C.yaml","anaerolinea_medium_c"],["ANAEROTIGNUM_MEDIUM.yaml","anaerotignum_medium"],["ANAEROTIGNUM_NEOPROPIONICUM_MEDIUM.yaml","anaerotignum_neopropionicum_medium"],["ANB_aerobic.yaml","anb_aerobic"],["ANCALOMICROBIUM_MEDIUM.yaml","ancalomicrobium_medium"],["ANNWOODIA_MEDIUM.yaml","annwoodia_medium"],["ANOXYBACILLUS_AMYLOLYTICUS_MEDIUM.yaml","anoxybacillus_amylolyticus_medium"],["ANOXYBACILLUS_MEDIUM.yaml","anoxybacillus_medium"],["ANOXYBACILLUS_TUNISIENSE_MEDIUM.yaml","anoxybacillus_tunisiense_medium"],["ANOXYNATRONUM_MEDIUM.yaml","anoxynatronum_medium"],["ANOYXNATRONUM_MEDIUM.yaml","anoyxnatronum_medium"],["ANT.yaml","ant"],["ANTARCTIC_BACTERIAL_MEDIUM.yaml","antarctic_bacterial_medium"],["ANTIBIOTIC_MEDIUM_1.yaml","antibiotic_medium_1"],["AP11MH_medium.yaml","ap11mh_medium"],["AQUASPIRILLUM_MEDIUM.yaml","aquaspirillum_medium"],["AQUASPIRILLUM_MEDIUM_II.yaml","aquaspirillum_medium_ii"],["AQUIFEX_MEDIUM.yaml","aquifex_medium"],["AQUINCOLA_MEDIUM.yaml","aquincola_medium"],["ARCHAEOGLOBUS_FULGIDUS_MEDIUM.yaml","archaeoglobus_fulgidus_medium"],["ARCHAEOGLOBUS_INFECTUS_MEDIUM.yaml","archaeoglobus_infectus_medium"],["ARCHAEOGLOBUS_MEDIUM.yaml","archaeoglobus_medium"],["ARCHAEOGLOBUS_NEPTUNIUS_MEDIUM.yaml","archaeoglobus_neptunius_medium"],["ARCHAEOGLOBUS_PROFUNDUS_MEDIUM.yaml","archaeoglobus_profundus_medium"],["ARCHAEOGLOBUS_SULFATICALLIDUS_MEDIUM.yaml","archaeoglobus_sulfaticallidus_medium"],["ARCHAEOGLOBUS_VENEFICUS_MEDIUM.yaml","archaeoglobus_veneficus_medium"],["ARCOBACTER_ANAEROPHILUS_MEDIUM.yaml","arcobacter_anaerophilus_medium"],["ARHODOMONAS_MEDIUM_RS91.yaml","arhodomonas_medium_rs91"],["AROMATOLEUM_MEDIUM.yaml","aromatoleum_medium"],["ARTFICIAL_FRESHWATER_MEDIUM_I.yaml","artficial_freshwater_medium_i"],["ARTFICIAL_FRESHWATER_MEDIUM_II.yaml","artficial_freshwater_medium_ii"],["ARTFICIAL_MARINE_WATER_MEDIUM.yaml","artficial_marine_water_medium"],["ARTHROBACTER_MEDIUM.yaml","arthrobacter_medium"],["ARTIFICIAL_DEEP_LAKE_VITAMIN_MEDIUM.yaml","artificial_deep_lake_vitamin_medium"],["ARTIFICIAL_PILOT_PLANT_WATER_MEDIUM.yaml","artificial_pilot_plant_water_medium"],["ARTIFICIAL_SEAWATER_FOR_HALOPHILES.yaml","artificial_seawater_for_halophiles"],["ARTIFICIAL_SEAWATER_MEDIUM_WITH_PULLULAN.yaml","artificial_seawater_medium_with_pullulan"],["ARTIFICIAL_SOIL_AGAR.yaml","artificial_soil_agar"],["ASAIA_GYP_MEDIUM.yaml","asaia_gyp_medium"],["ASPERGILLUS_NIDULANS_MINIMAL_MEDIUM.yaml","aspergillus_nidulans_minimal_medium"],["ASW.yaml","asw"],["ASWP.yaml","aswp"],["AS_medium.yaml","as_medium"],["ATALASSOTOGA_AZC2201_MEDIUM.yaml","atalassotoga_azc2201_medium"],["ATHALASSOTOGA_MEDIUM.yaml","athalassotoga_medium"],["ATRIBACTERIUM_MEDIUM.yaml","atribacterium_medium"],["ATYP_MEDIUM.yaml","atyp_medium"],["AURANTIMONAS_MANGANOXYDANS_MEDIUM.yaml","aurantimonas_manganoxydans_medium"],["AURANTIMONAS_MEDIUM.yaml","aurantimonas_medium"],["AUREOBACTERIUM_TERREGENS_MEDIUM.yaml","aureobacterium_terregens_medium"],["AZC_1502_MEDIUM.yaml","azc_1502_medium"],["AZOARCUS_TAIWANENSIS_MEDIUM.yaml","azoarcus_taiwanensis_medium"],["AZOSPIRILLUM_AMAZONENSE_MEDIUM.yaml","azospirillum_amazonense_medium"],["AZOSPIRILLUM_MEDIUM.yaml","azospirillum_medium"],["AZOTOBACTER_MEDIUM.yaml","azotobacter_medium"],["A_medium.yaml","a_medium"]]} \ No newline at end of file +{"mech":"CultureMech","prefix":"CHEBI","base":"https://github.com/CultureBotAI/CultureMech/blob/main/data/merge_yaml/merged/","total":6125,"records":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["10_mh_medium.yaml","10_mh_medium"],["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["1298.yaml","1298"],["15_mgm_medium.yaml","15_mgm_medium"],["15_mh_medium.yaml","15_mh_medium"],["15_mh_medium__b586cb85.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_MB_agar.yaml","1_10_mb_agar"],["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"],["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["1_10_r2a_broth__effd6b5a.yaml","1_10_r2a_broth"],["1_10_r2a_medium_modified_yeast_extract.yaml","1_10_r2a_medium_modified_yeast_extract"],["1_10_r2a_with_mes_ph6.yaml","1_10_r2a_with_mes_ph6"],["1_10_sabourauds_agar.yaml","1_10_sabourauds_agar"],["1_10_sabourauds_agar__6d784de4.yaml","1_10_sabourauds_agar"],["1_10_strength_ytss_agar.yaml","1_10_strength_ytss_agar"],["1_2MY.yaml","1_2my"],["1_2_GY_AGAR.yaml","1_2_gy_agar"],["1_2_R2A_Agar.yaml","1_2_r2a_agar"],["1_2_SME_MEDIUM.yaml","1_2_sme_medium"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["1_2_YTSS_MEDIUM.yaml","1_2_ytss_medium"],["1_2_gy_agar__1efdf1be.yaml","1_2_gy_agar"],["1_2_isp_2_15_nacl.yaml","1_2_isp_2_15_nacl"],["1_2_mrs_1_2_bhi_agar.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_mrs_1_2_bhi_agar__56430c33.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_r2a_75_asw.yaml","1_2_r2a_75_asw"],["1_2_r2a_medium_with_75_artificial_seawater.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["1_2_r2a_medium_with_75_artificial_seawater__5b6dd332.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["1_2_tryptic_soy_broth_anaerobe.yaml","1_2_tryptic_soy_broth_anaerobe"],["1_2_tryptic_soy_broth_anaerobic.yaml","1_2_tryptic_soy_broth_anaerobic"],["1_2_tryptic_soy_broth_anaerobic__d70593aa.yaml","1_2_tryptic_soy_broth_anaerobic"],["1_3_Diluted_LB_Medium_with_Biphenyl.yaml","1_3_diluted_lb_medium_with_biphenyl"],["1_5_Nutrient_agar.yaml","1_5_nutrient_agar"],["1_5_nutrient_agar_no_2.yaml","1_5_nutrient_agar_no_2"],["1_5_nutrient_agar_no_2__b809c568.yaml","1_5_nutrient_agar_no_2"],["1_ogawa_medium.yaml","1_ogawa_medium"],["1_ogawa_medium__65d0ae34.yaml","1_ogawa_medium"],["1_tryptone_agar.yaml","1_tryptone_agar"],["1_tryptone_agar__551e7d77.yaml","1_tryptone_agar"],["1_tryptone_agar__cfec473e.yaml","1_tryptone_agar"],["1a_Medium.yaml","1a_medium"],["225M1_MEDIUM.yaml","225m1_medium"],["225m1_medium__5109009b.yaml","225m1_medium"],["225m1_medium__936a42af.yaml","225m1_medium"],["23_mgm_medium.yaml","23_mgm_medium"],["25_glucose_medium.yaml","25_glucose_medium"],["25_glucose_medium__2c0720bc.yaml","25_glucose_medium"],["28_mh_medium.yaml","28_mh_medium"],["2ASW.yaml","2asw"],["2_5_nacl_bpg_agar.yaml","2_5_nacl_bpg_agar"],["2_5_nacl_bpg_agar__bf5a0a80.yaml","2_5_nacl_bpg_agar"],["2_5_nacl_gypfk_agar_broth.yaml","2_5_nacl_gypfk_agar_broth"],["2_5_nacl_heart_infusion_hi_medium.yaml","2_5_nacl_heart_infusion_hi_medium"],["2_glucose_yeast_extract_peptone_agar.yaml","2_glucose_yeast_extract_peptone_agar"],["2_glucose_yeast_extract_peptone_agar__32ac0304.yaml","2_glucose_yeast_extract_peptone_agar"],["2_mh_medium.yaml","2_mh_medium"],["2_nacl_ypg_agar.yaml","2_nacl_ypg_agar"],["2_x_YT_Medium.yaml","2_x_yt_medium"],["2asw__59e92e67.yaml","2asw"],["2xYTG.yaml","2xytg"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["3n_bbm_v.yaml","3n_bbm_v"],["3n_bbm_v_recipe_for_customer_orders.yaml","3n_bbm_v_recipe_for_customer_orders"],["480G_MEDIUM.yaml","480g_medium"],["480g_medium__e94698e7.yaml","480g_medium"],["4_malt_agar.yaml","4_malt_agar"],["4_yaco_media.yaml","4_yaco_media"],["573C_Medium.yaml","573c_medium"],["5_G_MEDIUM.yaml","5_g_medium"],["5_g_medium__8aa8a45a.yaml","5_g_medium"],["5_salt_water_growth_medium.yaml","5_salt_water_growth_medium"],["5_sorbitol_medium.yaml","5_sorbitol_medium"],["5_sorbitol_medium__c395a410.yaml","5_sorbitol_medium"],["5_x_R2A_Agar.yaml","5_x_r2a_agar"],["6_B_MEDIUM.yaml","6_b_medium"],["6_b_medium__990e4708.yaml","6_b_medium"],["70_30_sporulation_medium.yaml","70_30_sporulation_medium"],["7H9.yaml","7H9"],["802_5_nacl.yaml","802_5_nacl"],["8kg_4_medium.yaml","8kg_4_medium"],["948_oxoid_nutrient_broth_with_additonal_salt.yaml","948_oxoid_nutrient_broth_with_additonal_salt"],["9K_MEDIUM.yaml","9k_medium"],["9K_WITH_SULFUR_MEDIUM.yaml","9k_with_sulfur_medium"],["9_K_medium.yaml","9_k_medium"],["9_k_medium__c97a7f66.yaml","9_k_medium"],["9k_medium__4af6025b.yaml","9k_medium"],["A1_MARINE_MEDIUM.yaml","a1_marine_medium"],["A1_MEDIUM.yaml","a1_medium"],["A2_MEDIUM.yaml","a2_medium"],["A3.yaml","a3"],["A7_MEDIUM.yaml","a7_medium"],["AAM_MEDIUM.yaml","aam_medium"],["ABB.yaml","ABB"],["ABM.yaml","abm"],["ABSS2.yaml","abss2"],["ABYSSISOLIBACTER_MEDIUM.yaml","abyssisolibacter_medium"],["ACANTHAMOEBA_MEDIUM.yaml","acanthamoeba_medium"],["ACETIC_ACID_BACTERIUM_MEDIUM.yaml","acetic_acid_bacterium_medium"],["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"],["ACETIVIBRIO_ALKALICELLULOSI_MEDIUM.yaml","acetivibrio_alkalicellulosi_medium"],["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["ACETIVIBRIO_MEDIUM.yaml","acetivibrio_medium"],["ACETOANAEROBIUM_MEDIUM.yaml","acetoanaerobium_medium"],["ACETOBACTERIUM_DEHALOGENANS_MEDIUM.yaml","acetobacterium_dehalogenans_medium"],["ACETOBACTERIUM_FIMETARIUM_MEDIUM.yaml","acetobacterium_fimetarium_medium"],["ACETOBACTERIUM_MEDIUM.yaml","acetobacterium_medium"],["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["ACETOBACTERIUM_TUNDRAE_MEDIUM.yaml","acetobacterium_tundrae_medium"],["ACETOBACTEROIDES_GLYCINOPHILUS_MEDIUM.yaml","acetobacteroides_glycinophilus_medium"],["ACETOBACTEROIDES_MEDIUM.yaml","acetobacteroides_medium"],["ACETOBACTER_PEROXYDANS_MEDIUM.yaml","acetobacter_peroxydans_medium"],["ACETOHALOBIUM_MEDIUM.yaml","acetohalobium_medium"],["ACETOMICROBIUM_FAECALE_MEDIUM.yaml","acetomicrobium_faecale_medium"],["ACETOMICROBIUM_FAECALIS_MEDIUM.yaml","acetomicrobium_faecalis_medium"],["ACE_MEDIUM.yaml","ace_medium"],["ACIDAMINOBACTER_MEDIUM.yaml","acidaminobacter_medium"],["ACIDAMINOCOCCUS_FERMENTANS_MEDIUM.yaml","acidaminococcus_fermentans_medium"],["ACIDIANUS_BRIERLEYI_MEDIUM.yaml","acidianus_brierleyi_medium"],["ACIDICALDUS_MEDIUM.yaml","acidicaldus_medium"],["ACIDIC_DILUTED_ASM_MEDIUM.yaml","acidic_diluted_asm_medium"],["ACIDIFERROBACTER_MEDIUM.yaml","acidiferrobacter_medium"],["ACIDIFFEROBACTER_MURCIENSIS_MEDIUM.yaml","acidifferobacter_murciensis_medium"],["ACIDIFIED_MPOB_MEDIUM.yaml","acidified_mpob_medium"],["ACIDIHALOBACTER_MEDIUM.yaml","acidihalobacter_medium"],["ACIDIHALOBACTER_PROSPERUS_F5_MEDIUM.yaml","acidihalobacter_prosperus_f5_medium"],["ACIDIHALOBACTER_PROSPERUS_MEDIUM.yaml","acidihalobacter_prosperus_medium"],["ACIDILOBUS_MEDIUM.yaml","acidilobus_medium"],["ACIDIMICROBIUM_MEDIUM.yaml","acidimicrobium_medium"],["ACIDIPHILIUM_ACIDOPHILUM_MEDIUM.yaml","acidiphilium_acidophilum_medium"],["ACIDIPHILIUM_MEDIUM.yaml","acidiphilium_medium"],["ACIDITHIOBACILLUS_CALDUS_MEDIUM.yaml","acidithiobacillus_caldus_medium"],["ACIDITHIOBACILLUS_FERRIVORANS_MEDIUM.yaml","acidithiobacillus_ferrivorans_medium"],["ACIDITHIOBACILLUS_FERROOXIDANS_MEDIUM.yaml","acidithiobacillus_ferrooxidans_medium"],["ACIDITHIOBACILLUS_MEDIUM.yaml","acidithiobacillus_medium"],["ACIDITHIOBACILLUS_THIOOXIDANS_MEDIUM.yaml","acidithiobacillus_thiooxidans_medium"],["ACIDITHRIX_FERROOYDANS_MEDIUM.yaml","acidithrix_ferrooydans_medium"],["ACIDOBACTERIUM_MEDIUM.yaml","acidobacterium_medium"],["ACIDOLOBUS_ACETICUS_MEDIUM.yaml","acidolobus_aceticus_medium"],["ACIDOSOMA_MEDIUM.yaml","acidosoma_medium"],["ACIDULIPROFUNDUM_MEDIUM.yaml","aciduliprofundum_medium"],["ACTINOBACTERIA_MEDIUM.yaml","actinobacteria_medium"],["ACTIVATED_CARBON_MEDIUM.yaml","activated_carbon_medium"],["ACY.yaml","ACY"],["AEROBIC_SULFOLOBALES_MEDIUM.yaml","aerobic_sulfolobales_medium"],["AEROBIC_SULFOLOBALES_MEDIUM_WITHOUT_SULFUR.yaml","aerobic_sulfolobales_medium_without_sulfur"],["AE_BROTH.yaml","ae_broth"],["AE_MEDIUM.yaml","ae_medium"],["AGC2_Medium.yaml","agc2_medium"],["AG_MEDIUM.yaml","ag_medium"],["AIDINGIMONAS_MEDIUM.yaml","aidingimonas_medium"],["ALB_Medium.yaml","alb_medium"],["ALCALIGENES_MEDIUM.yaml","alcaligenes_medium"],["ALCALIGENES_XYLOSOXYDANS_MEDIUM_WITH_BENZOATE.yaml","alcaligenes_xylosoxydans_medium_with_benzoate"],["ALCALIPHILIC_AMPHIBACILLUS_STRAINS_MEDIUM.yaml","alcaliphilic_amphibacillus_strains_medium"],["ALCANIVORAX_BORKUMENSIS_MEDIUM.yaml","alcanivorax_borkumensis_medium"],["ALGINATE_MEDIUM.yaml","alginate_medium"],["ALGORIPHAGUS_ALKALIPHILUS_MEDIUM.yaml","algoriphagus_alkaliphilus_medium"],["ALGORIPHAGUS_AQUAEDUCTUS_MEDIUM.yaml","algoriphagus_aquaeductus_medium"],["ALICYCLIPHILUS_DENITRIFICANS_MEDIUM.yaml","alicycliphilus_denitrificans_medium"],["ALICYCLOBACILLUS_FERROOXYDANS_MEDIUM.yaml","alicyclobacillus_ferrooxydans_medium"],["ALICYCLOBACILLUS_MEDIUM.yaml","alicyclobacillus_medium"],["ALICYCOBACILLUS_POHLIAE_MEDIUM.yaml","alicycobacillus_pohliae_medium"],["ALKALIBACTERIUM_OLIVAPOVLITICUS.yaml","alkalibacterium_olivapovliticus"],["ALKALIFLEXUS_MEDIUM.yaml","alkaliflexus_medium"],["ALKALINE_AGAR.yaml","alkaline_agar"],["ALKALINE_CELLULOSE_AGAR.yaml","alkaline_cellulose_agar"],["ALKALINE_CLOSTRIDIAL_NUTRIENT_MEDIUM.yaml","alkaline_clostridial_nutrient_medium"],["ALKALINE_LACTOSE_AGAR.yaml","alkaline_lactose_agar"],["ALKALINE_LB_AGAR.yaml","alkaline_lb_agar"],["ALKALINE_NUTRIENT_AGAR.yaml","alkaline_nutrient_agar"],["ALKALINE_TRYPTONE_SOYA_BROTH_MEDIUM.yaml","alkaline_tryptone_soya_broth_medium"],["ALKALINE_VOGESELLA_MEDIUM.yaml","alkaline_vogesella_medium"],["ALKALINE_XYLAN_AGAR.yaml","alkaline_xylan_agar"],["ALKALINE_XYLAN_MEDIUM.yaml","alkaline_xylan_medium"],["ALKALINUS_ABYSSINIESE_MEDIUM.yaml","alkalinus_abyssiniese_medium"],["ALKALIPHILIC_HALOMONAS_MEDIUM.yaml","alkaliphilic_halomonas_medium"],["ALKALIPHILIC_SPIROCHAETE_MEDIUM.yaml","alkaliphilic_spirochaete_medium"],["ALKALIPHILIC_THERMOCOCCUS_MEDIUM.yaml","alkaliphilic_thermococcus_medium"],["ALKALIPHILUS_CROTONATOXIDANS_MEDIUM.yaml","alkaliphilus_crotonatoxidans_medium"],["ALKALIPHILUS_HYDROTHERMALIS_MEDIUM.yaml","alkaliphilus_hydrothermalis_medium"],["ALKALIPHILUS_LACT_MEDIUM.yaml","alkaliphilus_lact_medium"],["ALKALIPHILUS_LACV_MEDIUM.yaml","alkaliphilus_lacv_medium"],["ALKALIPHILUS_MEDIUM.yaml","alkaliphilus_medium"],["ALKALIPHILUS_NAMSARAEVII_MEDIUM.yaml","alkaliphilus_namsaraevii_medium"],["ALKALIPHILUS_SUCCINACIDUS_MEDIUM.yaml","alkaliphilus_succinacidus_medium"],["ALKALIPHILUS_TRANSVAALENSIS_MEDIUM.yaml","alkaliphilus_transvaalensis_medium"],["ALKALISPIRILLUM_MOBILE_MEDIUM.yaml","alkalispirillum_mobile_medium"],["ALKALITHERMOBACTER_MEDIUM.yaml","alkalithermobacter_medium"],["ALKALOPHILIC_HALOPHILE_MEDIUM.yaml","alkalophilic_halophile_medium"],["ALLANTOIN_MINERAL_MEDIUM.yaml","allantoin_mineral_medium"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALLOCATENOCOCCUS_MEDIUM.yaml","allocatenococcus_medium"],["ALP_defined.yaml","ALP defined"],["ALP_defined_chlorate.yaml","ALP defined chlorate"],["ALP_defined_noN.yaml","ALP defined noN"],["ALP_defined_perchlorate.yaml","ALP defined perchlorate"],["ALP_rich.yaml","ALP rich"],["ALP_richB.yaml","ALP richB"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["ALTEROMONAS_MEDIUM.yaml","alteromonas_medium"],["ALTERYTHROBACTER_MEDIUM_216L.yaml","alterythrobacter_medium_216l"],["AMB_MEDIUM.yaml","amb_medium"],["AMINIPHILUS_CIRCUMSRIPTUS_MEDIUM.yaml","aminiphilus_circumsriptus_medium"],["AMINIPHILUS_MEDIUM.yaml","aminiphilus_medium"],["AMINITHIOPHILUS_MEDIUM.yaml","aminithiophilus_medium"],["AMINIVIBRIO_ASINOENSIS_MEDIUM.yaml","aminivibrio_asinoensis_medium"],["AMINOBACTERIUM_SHUIJINGFANGII_MEDIUM.yaml","aminobacterium_shuijingfangii_medium"],["AMINOMONAS_MEDIUM.yaml","aminomonas_medium"],["AML60_MEDIUM.yaml","aml60_medium"],["AMMONIFEX_DEGENSII_MEDIUM.yaml","ammonifex_degensii_medium"],["AMMONIFEX_THIOPHILUS_MEDIUM.yaml","ammonifex_thiophilus_medium"],["AMOEBOBACTER_MEDIUM.yaml","amoebobacter_medium"],["AMPHIBACILLUS_MEDIUM.yaml","amphibacillus_medium"],["AMS_medium.yaml","ams_medium"],["AN1_MEDIUM.yaml","an1_medium"],["ANAEROBACCA_MEDIUM.yaml","anaerobacca_medium"],["ANAEROBACILLUS_ARSENICISELENATIS_MEDIUM.yaml","anaerobacillus_arseniciselenatis_medium"],["ANAEROBACTERIUM_MEDIUM.yaml","anaerobacterium_medium"],["ANAEROBACTER_MEDIUM.yaml","anaerobacter_medium"],["ANAEROBACULUM_MEDIUM.yaml","anaerobaculum_medium"],["ANAEROBIC_ALKALINE_LB_MEDIUM.yaml","anaerobic_alkaline_lb_medium"],["ANAEROBIC_AZOSPIRILLUM_MEDIUM.yaml","anaerobic_azospirillum_medium"],["ANAEROBIC_CHOLESTEROL_MEDIUM.yaml","anaerobic_cholesterol_medium"],["ANAEROBIC_THAUERA_MEDIUM.yaml","anaerobic_thauera_medium"],["ANAEROBIC_TRYPTIC_SOY_BROTH_MEDIUM.yaml","anaerobic_tryptic_soy_broth_medium"],["ANAEROBIC_TYEG_MEDIUM.yaml","anaerobic_tyeg_medium"],["ANAEROBIOSPIRILLUM_THOMASII_MEDIUM.yaml","anaerobiospirillum_thomasii_medium"],["ANAEROBRANCA_GOTTSCHALKII_MEDIUM.yaml","anaerobranca_gottschalkii_medium"],["ANAEROBRANCA_MEDIUM.yaml","anaerobranca_medium"],["ANAEROCELLUM_MEDIUM.yaml","anaerocellum_medium"],["ANAEROCOLUMNA_MEDIUM.yaml","anaerocolumna_medium"],["ANAEROFILUM_MEDIUM.yaml","anaerofilum_medium"],["ANAEROLINEA_MEDIUM.yaml","anaerolinea_medium"],["ANAEROLINEA_MEDIUM_C.yaml","anaerolinea_medium_c"],["ANAEROTIGNUM_MEDIUM.yaml","anaerotignum_medium"],["ANAEROTIGNUM_NEOPROPIONICUM_MEDIUM.yaml","anaerotignum_neopropionicum_medium"],["ANB_aerobic.yaml","anb_aerobic"],["ANCALOMICROBIUM_MEDIUM.yaml","ancalomicrobium_medium"],["ANNWOODIA_MEDIUM.yaml","annwoodia_medium"],["ANOXYBACILLUS_AMYLOLYTICUS_MEDIUM.yaml","anoxybacillus_amylolyticus_medium"],["ANOXYBACILLUS_MEDIUM.yaml","anoxybacillus_medium"],["ANOXYBACILLUS_TUNISIENSE_MEDIUM.yaml","anoxybacillus_tunisiense_medium"],["ANOXYNATRONUM_MEDIUM.yaml","anoxynatronum_medium"],["ANOYXNATRONUM_MEDIUM.yaml","anoyxnatronum_medium"],["ANT.yaml","ant"],["ANTARCTIC_BACTERIAL_MEDIUM.yaml","antarctic_bacterial_medium"],["ANTIBIOTIC_MEDIUM_1.yaml","antibiotic_medium_1"],["AP11MH_medium.yaml","ap11mh_medium"],["AQUASPIRILLUM_MEDIUM.yaml","aquaspirillum_medium"],["AQUASPIRILLUM_MEDIUM_II.yaml","aquaspirillum_medium_ii"],["AQUIFEX_MEDIUM.yaml","aquifex_medium"],["AQUINCOLA_MEDIUM.yaml","aquincola_medium"],["ARCHAEOGLOBUS_FULGIDUS_MEDIUM.yaml","archaeoglobus_fulgidus_medium"],["ARCHAEOGLOBUS_INFECTUS_MEDIUM.yaml","archaeoglobus_infectus_medium"],["ARCHAEOGLOBUS_MEDIUM.yaml","archaeoglobus_medium"],["ARCHAEOGLOBUS_NEPTUNIUS_MEDIUM.yaml","archaeoglobus_neptunius_medium"],["ARCHAEOGLOBUS_PROFUNDUS_MEDIUM.yaml","archaeoglobus_profundus_medium"],["ARCHAEOGLOBUS_SULFATICALLIDUS_MEDIUM.yaml","archaeoglobus_sulfaticallidus_medium"],["ARCHAEOGLOBUS_VENEFICUS_MEDIUM.yaml","archaeoglobus_veneficus_medium"],["ARCOBACTER_ANAEROPHILUS_MEDIUM.yaml","arcobacter_anaerophilus_medium"],["ARHODOMONAS_MEDIUM_RS91.yaml","arhodomonas_medium_rs91"],["AROMATOLEUM_MEDIUM.yaml","aromatoleum_medium"],["ARTFICIAL_FRESHWATER_MEDIUM_I.yaml","artficial_freshwater_medium_i"],["ARTFICIAL_FRESHWATER_MEDIUM_II.yaml","artficial_freshwater_medium_ii"],["ARTFICIAL_MARINE_WATER_MEDIUM.yaml","artficial_marine_water_medium"],["ARTHROBACTER_MEDIUM.yaml","arthrobacter_medium"],["ARTIFICIAL_DEEP_LAKE_VITAMIN_MEDIUM.yaml","artificial_deep_lake_vitamin_medium"],["ARTIFICIAL_PILOT_PLANT_WATER_MEDIUM.yaml","artificial_pilot_plant_water_medium"],["ARTIFICIAL_SEAWATER_FOR_HALOPHILES.yaml","artificial_seawater_for_halophiles"],["ARTIFICIAL_SEAWATER_MEDIUM_WITH_PULLULAN.yaml","artificial_seawater_medium_with_pullulan"],["ARTIFICIAL_SOIL_AGAR.yaml","artificial_soil_agar"],["ASAIA_GYP_MEDIUM.yaml","asaia_gyp_medium"],["ASPERGILLUS_NIDULANS_MINIMAL_MEDIUM.yaml","aspergillus_nidulans_minimal_medium"],["ASW.yaml","asw"],["ASWP.yaml","aswp"],["AS_medium.yaml","as_medium"],["ATALASSOTOGA_AZC2201_MEDIUM.yaml","atalassotoga_azc2201_medium"],["ATHALASSOTOGA_MEDIUM.yaml","athalassotoga_medium"],["ATRIBACTERIUM_MEDIUM.yaml","atribacterium_medium"],["ATYP_MEDIUM.yaml","atyp_medium"],["AURANTIMONAS_MANGANOXYDANS_MEDIUM.yaml","aurantimonas_manganoxydans_medium"],["AURANTIMONAS_MEDIUM.yaml","aurantimonas_medium"],["AUREOBACTERIUM_TERREGENS_MEDIUM.yaml","aureobacterium_terregens_medium"],["AZC_1502_MEDIUM.yaml","azc_1502_medium"],["AZOARCUS_TAIWANENSIS_MEDIUM.yaml","azoarcus_taiwanensis_medium"],["AZOSPIRILLUM_AMAZONENSE_MEDIUM.yaml","azospirillum_amazonense_medium"],["AZOSPIRILLUM_MEDIUM.yaml","azospirillum_medium"],["AZOTOBACTER_MEDIUM.yaml","azotobacter_medium"],["A_medium.yaml","a_medium"],["Abbs1_Medium.yaml","abbs1_medium"]]} \ No newline at end of file diff --git a/assets/fleet/cells/CultureMech--FOODON.json b/assets/fleet/cells/CultureMech--FOODON.json index 48c2c24..1bd4968 100644 --- a/assets/fleet/cells/CultureMech--FOODON.json +++ b/assets/fleet/cells/CultureMech--FOODON.json @@ -1 +1 @@ -{"mech":"CultureMech","prefix":"FOODON","base":"https://github.com/CultureBotAI/CultureMech/blob/main/data/merge_yaml/merged/","total":200,"records":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["1_2_tryptic_soy_broth_anaerobe.yaml","1_2_tryptic_soy_broth_anaerobe"],["1_2_tryptic_soy_broth_anaerobic.yaml","1_2_tryptic_soy_broth_anaerobic"],["1_5_Nutrient_agar.yaml","1_5_nutrient_agar"],["ACANTHAMOEBA_MEDIUM.yaml","acanthamoeba_medium"],["ACIDIPHILIUM_MEDIUM.yaml","acidiphilium_medium"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["ANAEROFILUM_MEDIUM.yaml","anaerofilum_medium"],["BACTO_MIDDLEBROOK_7H9_BROTH.yaml","bacto_middlebrook_7h9_broth"],["BSK_II_Medium.yaml","bsk_ii_medium"],["BSK_MEDIUM.yaml","bsk_medium"],["CGM.yaml","cgm"],["CHOCOLATE_AGAR.yaml","chocolate_agar"],["CMA.yaml","cma"],["COLLIMONAS_MEDIUM.yaml","collimonas_medium"],["Columbia.yaml","Columbia"],["DESULFUROBACTERIUM_MEDIUM.yaml","desulfurobacterium_medium"],["EG.yaml","eg"],["ETSA_medium.yaml","etsa_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"],["HAEMOPHILUS_MEDIUM.yaml","haemophilus_medium"],["HALISCOMENOBACTER_MEDIUM.yaml","haliscomenobacter_medium"],["HATHEWAYA_MEDIUM.yaml","hathewaya_medium"],["LB_Medium.yaml","lb_medium"],["MADCTw_medium.yaml","madctw_medium"],["MEDIUM_WITH_BIPHENYL.yaml","medium_with_biphenyl"],["MEDIUM_WITH_CHLOROACRYLIC_ACID.yaml","medium_with_chloroacrylic_acid"],["MEDIUM_WITH_POLYHYDROXYBUTYRIC_ACID_AS_CARBON_SOURCE.yaml","medium_with_polyhydroxybutyric_acid_as_carbon_source"],["METHANOBREVIBACTER_MEDIUM.yaml","methanobrevibacter_medium"],["METHANOFOLLIS_MEDIUM.yaml","methanofollis_medium"],["METHANOMASSILIICOCCUS_MEDIUM.yaml","methanomassiliicoccus_medium"],["METHANOMICROBIUM_MOBILE_MEDIUM.yaml","methanomicrobium_mobile_medium"],["MICROCELLA_ALKALIPHILA_MEDIUM.yaml","microcella_alkaliphila_medium"],["MIDDLEBROCK_7H11_AGAR.yaml","middlebrock_7h11_agar"],["MIDDLEBROOK_MEDIUM.yaml","middlebrook_medium"],["MINERAL_MEDIUM_WITH_ATRAZIN.yaml","mineral_medium_with_atrazin"],["MINERAL_MEDIUM_WITH_DIBENZOFURAN.yaml","mineral_medium_with_dibenzofuran"],["MINERAL_MEDIUM_WITH_PCP.yaml","mineral_medium_with_pcp"],["MINERAL_MEDIUM_WITH_SULFOBENZOIC_ACID.yaml","mineral_medium_with_sulfobenzoic_acid"],["MODIFIED_MEDIUM_92.yaml","modified_medium_92"],["MODIFIED_NOS_MEDIUM.yaml","modified_nos_medium"],["MODIFIED_TRYPTONE_SOYA_BROTH.yaml","modified_tryptone_soya_broth"],["MRS.yaml","MRS"],["MY75S.yaml","my75s"],["Middle_Brook_Medium.yaml","middle_brook_medium"],["Middlebrook_7H10_with_OADC.yaml","middlebrook_7h10_with_oadc"],["Middlebrook_7H11_Agar.yaml","middlebrook_7h11_agar"],["Middlebrook_7H9_Broth_w_ADC_Enrichment.yaml","middlebrook_7h9_broth_w_adc_enrichment"],["Modified_LB_medium.yaml","modified_lb_medium"],["Mucispirillum_Spezial.yaml","mucispirillum_spezial"],["PLATES_WITH_FLUORANTHENE.yaml","plates_with_fluoranthene"],["PM.yaml","pm"],["PPY.yaml","ppy"],["PYE.yaml","PYE"],["PYG_MEDIUM_WITH_VOLATILE_FATTY_ACIDS.yaml","pyg_medium_with_volatile_fatty_acids"],["Planctomyces_medium_DSMZ1560.yaml","Planctomyces medium DSMZ1560"],["Potato_Dextrose_Broth.yaml","Potato Dextrose Broth"],["R2A_.1x.yaml","R2A_.1x"],["RUMINOCOCCUS_ALBUS_MEDIUM.yaml","ruminococcus_albus_medium"],["SC_MEDIUM.yaml","sc_medium"],["SERPULINA_MURDOCHII_MEDIUM.yaml","serpulina_murdochii_medium"],["SNA_5.yaml","sna_5"],["SODALIS_GLOSSINIDIUS_MEDIUM.yaml","sodalis_glossinidius_medium"],["SULFOPHOBOCOCCUS_MEDIUM.yaml","sulfophobococcus_medium"],["Streptomyces_growth_medium_65.yaml","Streptomyces growth medium 65"],["Supplemented_Middlebrook.yaml","supplemented_middlebrook"],["THERMODESULFOBACTERIUM_HYDROGENIPHILUM_MEDIUM.yaml","thermodesulfobacterium_hydrogeniphilum_medium"],["TREPONEMA_DENTICOLA_MEDIUM.yaml","treponema_denticola_medium"],["TREPONEMA_RECTALE_MEDIUM.yaml","treponema_rectale_medium"],["TREPONEMA_SACCHAROPHILUM_MEDIUM.yaml","treponema_saccharophilum_medium"],["TRYPTICASE_GLUCOSE_MEDIUM.yaml","trypticase_glucose_medium"],["TRYPTICASE_SOY_BLOOD_AGAR.yaml","trypticase_soy_blood_agar"],["TRYPTICASE_SOY_BROTH_AGAR.yaml","trypticase_soy_broth_agar"],["TRYPTICASE_SOY_YEAST_EXTRACT_MEDIUM.yaml","trypticase_soy_yeast_extract_medium"],["TRYPTICASE_STARCH_AGAR.yaml","trypticase_starch_agar"],["TSBY_MEDIUM.yaml","tsby_medium"],["TSBY_SALT_MEDIUM.yaml","tsby_salt_medium"],["TSB_YeastExtract.yaml","TSB_YeastExtract"],["TTL.yaml","ttl"],["YM.yaml","YM"],["ZM_10.yaml","zm_10"],["acidiphilium_medium__5f04eb89.yaml","acidiphilium_medium"],["am5_medium_elusimicrobium_medium.yaml","am5_medium_elusimicrobium_medium"],["barbour_sfoenner_kelly_bsk_ii_medium.yaml","barbour_sfoenner_kelly_bsk_ii_medium"],["blood_agar__45bfc12d.yaml","blood_agar"],["blood_agar_tsa_with_5_sheep_blood_remel.yaml","blood_agar_tsa_with_5_sheep_blood_remel"],["bsk_medium__0411c628.yaml","bsk_medium"],["bsk_medium__55a97aaf.yaml","bsk_medium"],["bsk_medium__b3c2010e.yaml","bsk_medium"],["bsk_medium__d6555dbb.yaml","bsk_medium"],["bskii_medium_borrelia.yaml","bskii_medium_borrelia"],["bsm_9_1_mixture_v_v_of_bsm_plus_lb.yaml","bsm_9_1_mixture_v_v_of_bsm_plus_lb"],["chopped_meat_medium_for_fretibacterium_sp.yaml","chopped_meat_medium_for_fretibacterium_sp"],["columbia_blood_agar_with_5_horse_blood__65a36f66.yaml","columbia_blood_agar_with_5_horse_blood"],["columbia_blood_agar_with_5_rabbit_blood__0ed590f0.yaml","columbia_blood_agar_with_5_rabbit_blood"],["columbia_blood_agar_with_5_sheep_blood__5f55f46d.yaml","columbia_blood_agar_with_5_sheep_blood"],["defined_freshwater_medium_cocl2__840efe34.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__a30bb78a.yaml","defined_freshwater_medium_coso4"],["desulfurobacterium_medium__edb237d2.yaml","desulfurobacterium_medium"],["eg_jm.yaml","eg_jm"],["endomicrobium_proavitum_rsa_medium__51692939.yaml","endomicrobium_proavitum_rsa_medium"],["growth_medium_707.yaml","growth medium 707"],["html_trypticase_soy_broth_agar_with_10_mgcl_sub_2_sub_183_6h_sub_2_sub_o_html.yaml","html_trypticase_soy_broth_agar_with_10_mgcl_sub_2_sub_183_6h_sub_2_sub_o_html"],["html_trypticase_soy_broth_agar_with_2_mgso_sub_4_sub_and_3_nacl_html.yaml","html_trypticase_soy_broth_agar_with_2_mgso_sub_4_sub_and_3_nacl_html"],["lb_agar_miller.yaml","lb_agar_miller"],["lb_agar_supplemented_with_ampicillin.yaml","lb_agar_supplemented_with_ampicillin"],["lb_broth_0_05_w_v_na2co3.yaml","lb_broth_0_05_w_v_na2co3"],["lb_broth_miller.yaml","lb_broth_miller"],["lb_glucose_10_g_l_medium.yaml","lb_glucose_10_g_l_medium"],["lowenstein_jensen_medium__f8a67c53.yaml","lowenstein_jensen_medium"],["luria_bertani_lb_antibiotics.yaml","luria_bertani_lb_antibiotics"],["luria_bertani_lb_medium_buffered_mops.yaml","luria_bertani_lb_medium_buffered_mops"],["luria_bertani_medium_supplemented_with_50_mm_dl_lactate.yaml","luria_bertani_medium_supplemented_with_50_mm_dl_lactate"],["luria_broth_lb_medium_supplemented_with_the_appropriate_antibiotics.yaml","luria_broth_lb_medium_supplemented_with_the_appropriate_antibiotics"],["mGAM.yaml","mGAM"],["marine_broth_2216__d86c6025.yaml","marine broth 2216"],["marine_chloroflexi_medium__0b1ebc83.yaml","marine_chloroflexi_medium"],["mcn_medium_whitman.yaml","mcn_medium_whitman"],["mcna_medium_lupa.yaml","mcna_medium_lupa"],["medium_869_modified_for_dsm_12992.yaml","medium_869_modified_for_dsm_12992"],["methanobacterium_medium__783676b6.yaml","methanobacterium_medium"],["methanobacterium_medium__a360cbf3.yaml","methanobacterium_medium"],["methanobacterium_medium_vi__27ca4797.yaml","methanobacterium_medium_vi"],["methanobacterum_medium_ix__66b5a244.yaml","methanobacterum_medium_ix"],["methanomicrobium_mobile_medium__f0b7882e.yaml","methanomicrobium_mobile_medium"],["microcella_alkaliphila_medium__b71dfbd6.yaml","microcella_alkaliphila_medium"],["middlebrook_7h10_plates_difco_supplemented_with_middlebrook_albumin_dextrose_catalase_and_tween_80.yaml","middlebrook_7h10_plates_difco_supplemented_with_middlebrook_albumin_dextrose_catalase_and_tween_80"],["middlebrook_7h11_agar_difco.yaml","middlebrook_7h11_agar_difco"],["middlebrook_7h11_solid_medium_supplemented_with_10_albumin_dextrose_and_catalase.yaml","middlebrook_7h11_solid_medium_supplemented_with_10_albumin_dextrose_and_catalase"],["middlebrook_7h9_broth_supplemented_with_oleic_acid_albumin_dextrose_catalase_difco.yaml","middlebrook_7h9_broth_supplemented_with_oleic_acid_albumin_dextrose_catalase_difco"],["middlebrook_7h9_difco_liquid_medium_supplemented_with_middlebrook_albumin_dextrose_catalase_and_tween_80.yaml","middlebrook_7h9_difco_liquid_medium_supplemented_with_middlebrook_albumin_dextrose_catalase_and_tween_80"],["middlebrook_7h9_liquid_medium_supplemented_with_10_albumin_dextrose_and_catalase.yaml","middlebrook_7h9_liquid_medium_supplemented_with_10_albumin_dextrose_and_catalase"],["mineral_medium_brunner__4f5b47fd.yaml","mineral_medium_brunner"],["mineral_medium_brunner_with_vitamins.yaml","mineral_medium_brunner_with_vitamins"],["mineral_medium_ph_7_25.yaml","mineral_medium_ph_7_25"],["mineral_medium_with_2_chlorobenzoate.yaml","mineral_medium_with_2_chlorobenzoate"],["mineral_medium_with_2_chlorobenzoate__3b4ec207.yaml","mineral_medium_with_2_chlorobenzoate"],["mineral_medium_with_2_hydroxybiphenyl.yaml","mineral_medium_with_2_hydroxybiphenyl"],["mineral_medium_with_3_aminophenol.yaml","mineral_medium_with_3_aminophenol"],["mineralmedium_with_6_methylnicotinate.yaml","mineralmedium_with_6_methylnicotinate"],["mitsuhashi_maramorosch_m_m_medium.yaml","mitsuhashi_maramorosch_m_m_medium"],["modified_nos_medium__77993301.yaml","modified_nos_medium"],["modified_nos_medium__d7a7be7b.yaml","modified_nos_medium"],["modified_trypticase_soy_broth_mtsb.yaml","modified_trypticase_soy_broth_mtsb"],["mueller_hinton_medium.yaml","mueller_hinton_medium"],["mueller_hinton_medium_with_10_rabbit_serum_agar.yaml","mueller_hinton_medium_with_10_rabbit_serum_agar"],["mueller_hinton_mh_difco_agar.yaml","mueller_hinton_mh_difco_agar"],["nutrient_agar__b9a5b042.yaml","nutrient_agar"],["nutrient_broth__3e8602c5.yaml","nutrient broth"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"],["oteb_medium.yaml","oteb_medium"],["reactivation_with_liquid_medium__3255c8e8.yaml","reactivation_with_liquid_medium"],["rumen_bacteria_medium__b6ddc39f.yaml","rumen_bacteria_medium"],["ruminococcus_albus_medium__11635e7b.yaml","ruminococcus_albus_medium"],["ruminococcus_albus_medium__388724ba.yaml","ruminococcus_albus_medium"],["ruminococcus_albus_medium_maltose_1g_l_starch_1g_l.yaml","ruminococcus_albus_medium_maltose_1g_l_starch_1g_l"],["sc_medium__a7e17620.yaml","sc_medium"],["sc_medium__bb5cb0f5.yaml","sc_medium"],["scy_medium.yaml","scy_medium"],["serpulina_murdochii_medium__ccf063ac.yaml","serpulina_murdochii_medium"],["serpulina_murdochii_medium__cfc0b7f9.yaml","serpulina_murdochii_medium"],["sna_5__a63033ae.yaml","sna_5"],["sulfophobococcus_medium__4b48ea64.yaml","sulfophobococcus_medium"],["td3_medium__4a2d4552.yaml","td3_medium"],["terrific_broth.yaml","terrific broth"],["thermodesulfobacterium_hydrogenophilum_medium__c1daf6d7.yaml","thermodesulfobacterium_hydrogenophilum_medium"],["togo_medium_m1470.yaml","togo_medium_m1470"],["togo_medium_m1833.yaml","togo_medium_m1833"],["treponema_saccharophilum_medium__99fe1ffe.yaml","treponema_saccharophilum_medium"],["treponema_saccharophilum_medium__ad64b847.yaml","treponema_saccharophilum_medium"],["tryptic_soy_agar_broth_with_5_sheep_blood_defibrinated.yaml","tryptic_soy_agar_broth_with_5_sheep_blood_defibrinated"],["tryptic_soy_agar_supplemented_with_5_sheep_blood.yaml","tryptic_soy_agar_supplemented_with_5_sheep_blood"],["tryptic_soy_agar_tsa_plates.yaml","tryptic_soy_agar_tsa_plates"],["tryptic_soy_broth_medium_supplemented_with_0_5_yeast_extract_0_05_cysteine_hcl_h2o_0_5_mg_ml_of_hemin_2_g_ml_of_vitamin_k1_and_5_sheep_blood.yaml","tryptic_soy_broth_medium_supplemented_with_0_5_yeast_extract_0_05_cysteine_hcl_h2o_0_5_mg_ml_of_hemin_2_g_ml_of_vitamin_k1_and_5_sheep_blood"],["tryptic_soy_broth_soybean_casein_digest_medium_usp.yaml","tryptic_soy_broth_soybean_casein_digest_medium_usp"],["tryptic_soy_broth_supplemented_with_10_nad_and_5_bovine_serum.yaml","tryptic_soy_broth_supplemented_with_10_nad_and_5_bovine_serum"],["tryptic_soy_broth_supplemented_with_hemin_5_g_ml_and_menadione_1_g_ml.yaml","tryptic_soy_broth_supplemented_with_hemin_5_g_ml_and_menadione_1_g_ml"],["tryptic_soy_broth_with_5_sheep_blood_defibrinated.yaml","tryptic_soy_broth_with_5_sheep_blood_defibrinated"],["trypticase_glucose_medium__db729b4e.yaml","trypticase_glucose_medium"],["trypticase_soy_agar_containing_5_v_v_defibrinated_ovine_blood.yaml","trypticase_soy_agar_containing_5_v_v_defibrinated_ovine_blood"],["trypticase_soy_agar_with_0_5_x_artificial_seawater.yaml","trypticase_soy_agar_with_0_5_x_artificial_seawater"],["trypticase_soy_broth_agar__befb0afa.yaml","trypticase_soy_broth_agar"],["trypticase_soy_broth_agar_blood.yaml","trypticase_soy_broth_agar_blood"],["trypticase_soy_broth_agar_with_10_kcl.yaml","trypticase_soy_broth_agar_with_10_kcl"],["trypticase_soy_broth_agar_with_10_kcl__eab271cd.yaml","trypticase_soy_broth_agar_with_10_kcl"],["trypticase_soy_broth_agar_with_10_mgcl_sub_2_sub_183_6h_sub_2_sub_o.yaml","trypticase_soy_broth_agar_with_10_mgcl_sub_2_sub_183_6h_sub_2_sub_o"],["trypticase_soy_broth_agar_with_2_mgso_sub_4_sub_and_3_nacl.yaml","trypticase_soy_broth_agar_with_2_mgso_sub_4_sub_and_3_nacl"],["trypticase_soy_broth_with_5_nacl.yaml","trypticase_soy_broth_with_5_nacl"],["trypticase_soy_yeast_extract_medium__90457748.yaml","trypticase_soy_yeast_extract_medium"],["trypticase_soy_yeast_extract_medium__ed939013.yaml","trypticase_soy_yeast_extract_medium"],["tsa_hemin_menadione_medium__f2bb4f66.yaml","tsa_hemin_menadione_medium"],["tsb_glucose_medium.yaml","tsb_glucose_medium"],["tsb_ph_9_0_with_k2co3.yaml","tsb_ph_9_0_with_k2co3"],["tsby_medium__51fb20cf.yaml","tsby_medium"],["tsby_salt_medium__a18bc8e4.yaml","tsby_salt_medium"],["tsby_salt_medium__ad92ca9e.yaml","tsby_salt_medium"],["wmy.yaml","wmy"],["ypd_agar.yaml","ypd_agar"]]} \ No newline at end of file +{"mech":"CultureMech","prefix":"FOODON","base":"https://github.com/CultureBotAI/CultureMech/blob/main/data/merge_yaml/merged/","total":203,"records":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["1_2_tryptic_soy_broth_anaerobe.yaml","1_2_tryptic_soy_broth_anaerobe"],["1_2_tryptic_soy_broth_anaerobic.yaml","1_2_tryptic_soy_broth_anaerobic"],["1_5_Nutrient_agar.yaml","1_5_nutrient_agar"],["948_oxoid_nutrient_broth_with_additonal_salt.yaml","948_oxoid_nutrient_broth_with_additonal_salt"],["ACANTHAMOEBA_MEDIUM.yaml","acanthamoeba_medium"],["ACIDIPHILIUM_MEDIUM.yaml","acidiphilium_medium"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["ANAEROFILUM_MEDIUM.yaml","anaerofilum_medium"],["BACTO_MIDDLEBROOK_7H9_BROTH.yaml","bacto_middlebrook_7h9_broth"],["BSK_II_Medium.yaml","bsk_ii_medium"],["BSK_MEDIUM.yaml","bsk_medium"],["CGM.yaml","cgm"],["CHOCOLATE_AGAR.yaml","chocolate_agar"],["CMA.yaml","cma"],["COLLIMONAS_MEDIUM.yaml","collimonas_medium"],["Columbia.yaml","Columbia"],["DESULFUROBACTERIUM_MEDIUM.yaml","desulfurobacterium_medium"],["EG.yaml","eg"],["ETSA_medium.yaml","etsa_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"],["HAEMOPHILUS_MEDIUM.yaml","haemophilus_medium"],["HALISCOMENOBACTER_MEDIUM.yaml","haliscomenobacter_medium"],["HATHEWAYA_MEDIUM.yaml","hathewaya_medium"],["LB_Medium.yaml","lb_medium"],["MADCTw_medium.yaml","madctw_medium"],["MEDIUM_WITH_BIPHENYL.yaml","medium_with_biphenyl"],["MEDIUM_WITH_CHLOROACRYLIC_ACID.yaml","medium_with_chloroacrylic_acid"],["MEDIUM_WITH_POLYHYDROXYBUTYRIC_ACID_AS_CARBON_SOURCE.yaml","medium_with_polyhydroxybutyric_acid_as_carbon_source"],["METHANOBREVIBACTER_MEDIUM.yaml","methanobrevibacter_medium"],["METHANOMASSILIICOCCUS_MEDIUM.yaml","methanomassiliicoccus_medium"],["METHANOMICROBIUM_MOBILE_MEDIUM.yaml","methanomicrobium_mobile_medium"],["MICROCELLA_ALKALIPHILA_MEDIUM.yaml","microcella_alkaliphila_medium"],["MIDDLEBROCK_7H11_AGAR.yaml","middlebrock_7h11_agar"],["MIDDLEBROOK_MEDIUM.yaml","middlebrook_medium"],["MINERAL_MEDIUM_WITH_ATRAZIN.yaml","mineral_medium_with_atrazin"],["MINERAL_MEDIUM_WITH_DIBENZOFURAN.yaml","mineral_medium_with_dibenzofuran"],["MINERAL_MEDIUM_WITH_PCP.yaml","mineral_medium_with_pcp"],["MINERAL_MEDIUM_WITH_SULFOBENZOIC_ACID.yaml","mineral_medium_with_sulfobenzoic_acid"],["MODIFIED_MEDIUM_92.yaml","modified_medium_92"],["MODIFIED_NOS_MEDIUM.yaml","modified_nos_medium"],["MODIFIED_TRYPTONE_SOYA_BROTH.yaml","modified_tryptone_soya_broth"],["MRS.yaml","MRS"],["MY75S.yaml","my75s"],["Middle_Brook_Medium.yaml","middle_brook_medium"],["Middlebrook_7H10_with_OADC.yaml","middlebrook_7h10_with_oadc"],["Middlebrook_7H11_Agar.yaml","middlebrook_7h11_agar"],["Middlebrook_7H9_Broth_w_ADC_Enrichment.yaml","middlebrook_7h9_broth_w_adc_enrichment"],["Modified_LB_medium.yaml","modified_lb_medium"],["Mucispirillum_Spezial.yaml","mucispirillum_spezial"],["PLATES_WITH_FLUORANTHENE.yaml","plates_with_fluoranthene"],["PM.yaml","pm"],["PPY.yaml","ppy"],["PYE.yaml","PYE"],["Planctomyces_medium_DSMZ1560.yaml","Planctomyces medium DSMZ1560"],["Potato_Dextrose_Broth.yaml","Potato Dextrose Broth"],["R2A_.1x.yaml","R2A_.1x"],["RUMINOCOCCUS_ALBUS_MEDIUM.yaml","ruminococcus_albus_medium"],["SC_MEDIUM.yaml","sc_medium"],["SERPULINA_MURDOCHII_MEDIUM.yaml","serpulina_murdochii_medium"],["SNA_5.yaml","sna_5"],["SODALIS_GLOSSINIDIUS_MEDIUM.yaml","sodalis_glossinidius_medium"],["SULFOPHOBOCOCCUS_MEDIUM.yaml","sulfophobococcus_medium"],["Streptomyces_growth_medium_65.yaml","Streptomyces growth medium 65"],["Supplemented_Middlebrook.yaml","supplemented_middlebrook"],["THERMODESULFOBACTERIUM_HYDROGENIPHILUM_MEDIUM.yaml","thermodesulfobacterium_hydrogeniphilum_medium"],["TREPONEMA_RECTALE_MEDIUM.yaml","treponema_rectale_medium"],["TREPONEMA_SACCHAROPHILUM_MEDIUM.yaml","treponema_saccharophilum_medium"],["TRYPTICASE_GLUCOSE_MEDIUM.yaml","trypticase_glucose_medium"],["TRYPTICASE_SOY_BLOOD_AGAR.yaml","trypticase_soy_blood_agar"],["TRYPTICASE_SOY_BROTH_AGAR.yaml","trypticase_soy_broth_agar"],["TRYPTICASE_SOY_YEAST_EXTRACT_MEDIUM.yaml","trypticase_soy_yeast_extract_medium"],["TRYPTICASE_STARCH_AGAR.yaml","trypticase_starch_agar"],["TSBY_MEDIUM.yaml","tsby_medium"],["TSBY_SALT_MEDIUM.yaml","tsby_salt_medium"],["TSB_YeastExtract.yaml","TSB_YeastExtract"],["TTL.yaml","ttl"],["YM.yaml","YM"],["ZM_10.yaml","zm_10"],["acidiphilium_medium__5f04eb89.yaml","acidiphilium_medium"],["am5_medium_elusimicrobium_medium.yaml","am5_medium_elusimicrobium_medium"],["barbour_sfoenner_kelly_bsk_ii_medium.yaml","barbour_sfoenner_kelly_bsk_ii_medium"],["blood_agar__45bfc12d.yaml","blood_agar"],["blood_agar_tsa_with_5_sheep_blood_remel.yaml","blood_agar_tsa_with_5_sheep_blood_remel"],["bsk_medium__0411c628.yaml","bsk_medium"],["bsk_medium__55a97aaf.yaml","bsk_medium"],["bsk_medium__b3c2010e.yaml","bsk_medium"],["bsk_medium__d6555dbb.yaml","bsk_medium"],["bskii_medium_borrelia.yaml","bskii_medium_borrelia"],["bsm_9_1_mixture_v_v_of_bsm_plus_lb.yaml","bsm_9_1_mixture_v_v_of_bsm_plus_lb"],["chopped_meat_medium_for_fretibacterium_sp.yaml","chopped_meat_medium_for_fretibacterium_sp"],["clostridium_estertheticum_medium.yaml","clostridium_estertheticum_medium"],["clostridium_longisporum_medium.yaml","clostridium_longisporum_medium"],["columbia_blood_agar_with_5_horse_blood__65a36f66.yaml","columbia_blood_agar_with_5_horse_blood"],["columbia_blood_agar_with_5_rabbit_blood__0ed590f0.yaml","columbia_blood_agar_with_5_rabbit_blood"],["columbia_blood_agar_with_5_sheep_blood__5f55f46d.yaml","columbia_blood_agar_with_5_sheep_blood"],["defined_freshwater_medium_cocl2__840efe34.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__a30bb78a.yaml","defined_freshwater_medium_coso4"],["desulfurobacterium_medium__edb237d2.yaml","desulfurobacterium_medium"],["eg_jm.yaml","eg_jm"],["endomicrobium_proavitum_rsa_medium__51692939.yaml","endomicrobium_proavitum_rsa_medium"],["growth_medium_707.yaml","growth medium 707"],["html_trypticase_soy_broth_agar_with_10_mgcl_sub_2_sub_183_6h_sub_2_sub_o_html.yaml","html_trypticase_soy_broth_agar_with_10_mgcl_sub_2_sub_183_6h_sub_2_sub_o_html"],["html_trypticase_soy_broth_agar_with_2_mgso_sub_4_sub_and_3_nacl_html.yaml","html_trypticase_soy_broth_agar_with_2_mgso_sub_4_sub_and_3_nacl_html"],["lb_agar_miller.yaml","lb_agar_miller"],["lb_agar_supplemented_with_ampicillin.yaml","lb_agar_supplemented_with_ampicillin"],["lb_broth_0_05_w_v_na2co3.yaml","lb_broth_0_05_w_v_na2co3"],["lb_broth_miller.yaml","lb_broth_miller"],["lb_glucose_10_g_l_medium.yaml","lb_glucose_10_g_l_medium"],["lowenstein_jensen_medium__f8a67c53.yaml","lowenstein_jensen_medium"],["luria_bertani_lb_antibiotics.yaml","luria_bertani_lb_antibiotics"],["luria_bertani_lb_medium_buffered_mops.yaml","luria_bertani_lb_medium_buffered_mops"],["luria_bertani_medium_supplemented_with_50_mm_dl_lactate.yaml","luria_bertani_medium_supplemented_with_50_mm_dl_lactate"],["luria_broth_lb_medium_supplemented_with_the_appropriate_antibiotics.yaml","luria_broth_lb_medium_supplemented_with_the_appropriate_antibiotics"],["mGAM.yaml","mGAM"],["marine_broth_2216__d86c6025.yaml","marine broth 2216"],["marine_chloroflexi_medium__0b1ebc83.yaml","marine_chloroflexi_medium"],["mcn_medium_whitman.yaml","mcn_medium_whitman"],["mcna_medium_lupa.yaml","mcna_medium_lupa"],["medium_869_modified_for_dsm_12992.yaml","medium_869_modified_for_dsm_12992"],["methanobacterium_medium__783676b6.yaml","methanobacterium_medium"],["methanobacterium_medium__a360cbf3.yaml","methanobacterium_medium"],["methanobacterium_medium_vi__27ca4797.yaml","methanobacterium_medium_vi"],["methanobacterum_medium_ix__66b5a244.yaml","methanobacterum_medium_ix"],["methanofollis_medium.yaml","methanofollis_medium"],["methanomicrobium_mobile_medium__f0b7882e.yaml","methanomicrobium_mobile_medium"],["microcella_alkaliphila_medium__b71dfbd6.yaml","microcella_alkaliphila_medium"],["middlebrook_7h10_plates_difco_supplemented_with_middlebrook_albumin_dextrose_catalase_and_tween_80.yaml","middlebrook_7h10_plates_difco_supplemented_with_middlebrook_albumin_dextrose_catalase_and_tween_80"],["middlebrook_7h11_agar_difco.yaml","middlebrook_7h11_agar_difco"],["middlebrook_7h11_solid_medium_supplemented_with_10_albumin_dextrose_and_catalase.yaml","middlebrook_7h11_solid_medium_supplemented_with_10_albumin_dextrose_and_catalase"],["middlebrook_7h9_broth_supplemented_with_oleic_acid_albumin_dextrose_catalase_difco.yaml","middlebrook_7h9_broth_supplemented_with_oleic_acid_albumin_dextrose_catalase_difco"],["middlebrook_7h9_difco_liquid_medium_supplemented_with_middlebrook_albumin_dextrose_catalase_and_tween_80.yaml","middlebrook_7h9_difco_liquid_medium_supplemented_with_middlebrook_albumin_dextrose_catalase_and_tween_80"],["middlebrook_7h9_liquid_medium_supplemented_with_10_albumin_dextrose_and_catalase.yaml","middlebrook_7h9_liquid_medium_supplemented_with_10_albumin_dextrose_and_catalase"],["mineral_medium_brunner__4f5b47fd.yaml","mineral_medium_brunner"],["mineral_medium_brunner_with_vitamins.yaml","mineral_medium_brunner_with_vitamins"],["mineral_medium_ph_7_25.yaml","mineral_medium_ph_7_25"],["mineral_medium_with_2_chlorobenzoate.yaml","mineral_medium_with_2_chlorobenzoate"],["mineral_medium_with_2_chlorobenzoate__3b4ec207.yaml","mineral_medium_with_2_chlorobenzoate"],["mineral_medium_with_2_hydroxybiphenyl.yaml","mineral_medium_with_2_hydroxybiphenyl"],["mineral_medium_with_3_aminophenol.yaml","mineral_medium_with_3_aminophenol"],["mineralmedium_with_6_methylnicotinate.yaml","mineralmedium_with_6_methylnicotinate"],["mitsuhashi_maramorosch_m_m_medium.yaml","mitsuhashi_maramorosch_m_m_medium"],["modified_nos_medium__77993301.yaml","modified_nos_medium"],["modified_nos_medium__d7a7be7b.yaml","modified_nos_medium"],["modified_trypticase_soy_broth_mtsb.yaml","modified_trypticase_soy_broth_mtsb"],["mueller_hinton_medium.yaml","mueller_hinton_medium"],["mueller_hinton_medium_with_10_rabbit_serum_agar.yaml","mueller_hinton_medium_with_10_rabbit_serum_agar"],["mueller_hinton_mh_difco_agar.yaml","mueller_hinton_mh_difco_agar"],["nutrient_agar__b9a5b042.yaml","nutrient_agar"],["nutrient_broth__3e8602c5.yaml","nutrient broth"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"],["oteb_medium.yaml","oteb_medium"],["pyg_medium_with_volatile_fatty_acids.yaml","pyg_medium_with_volatile_fatty_acids"],["reactivation_with_liquid_medium__3255c8e8.yaml","reactivation_with_liquid_medium"],["rumen_bacteria_medium__b6ddc39f.yaml","rumen_bacteria_medium"],["ruminococcus_albus_medium__11635e7b.yaml","ruminococcus_albus_medium"],["ruminococcus_albus_medium__388724ba.yaml","ruminococcus_albus_medium"],["ruminococcus_albus_medium_maltose_1g_l_starch_1g_l.yaml","ruminococcus_albus_medium_maltose_1g_l_starch_1g_l"],["sc_medium__a7e17620.yaml","sc_medium"],["sc_medium__bb5cb0f5.yaml","sc_medium"],["scy_medium.yaml","scy_medium"],["serpulina_murdochii_medium__ccf063ac.yaml","serpulina_murdochii_medium"],["serpulina_murdochii_medium__cfc0b7f9.yaml","serpulina_murdochii_medium"],["sna_5__a63033ae.yaml","sna_5"],["sulfophobococcus_medium__4b48ea64.yaml","sulfophobococcus_medium"],["td3_medium__4a2d4552.yaml","td3_medium"],["terrific_broth.yaml","terrific broth"],["thermodesulfobacterium_hydrogenophilum_medium__c1daf6d7.yaml","thermodesulfobacterium_hydrogenophilum_medium"],["togo_medium_m1470.yaml","togo_medium_m1470"],["togo_medium_m1833.yaml","togo_medium_m1833"],["treponema_denticola_medium.yaml","treponema_denticola_medium"],["treponema_saccharophilum_medium__99fe1ffe.yaml","treponema_saccharophilum_medium"],["treponema_saccharophilum_medium__ad64b847.yaml","treponema_saccharophilum_medium"],["tryptic_soy_agar_broth_with_5_sheep_blood_defibrinated.yaml","tryptic_soy_agar_broth_with_5_sheep_blood_defibrinated"],["tryptic_soy_agar_supplemented_with_5_sheep_blood.yaml","tryptic_soy_agar_supplemented_with_5_sheep_blood"],["tryptic_soy_agar_tsa_plates.yaml","tryptic_soy_agar_tsa_plates"],["tryptic_soy_broth_medium_supplemented_with_0_5_yeast_extract_0_05_cysteine_hcl_h2o_0_5_mg_ml_of_hemin_2_g_ml_of_vitamin_k1_and_5_sheep_blood.yaml","tryptic_soy_broth_medium_supplemented_with_0_5_yeast_extract_0_05_cysteine_hcl_h2o_0_5_mg_ml_of_hemin_2_g_ml_of_vitamin_k1_and_5_sheep_blood"],["tryptic_soy_broth_soybean_casein_digest_medium_usp.yaml","tryptic_soy_broth_soybean_casein_digest_medium_usp"],["tryptic_soy_broth_supplemented_with_10_nad_and_5_bovine_serum.yaml","tryptic_soy_broth_supplemented_with_10_nad_and_5_bovine_serum"],["tryptic_soy_broth_supplemented_with_hemin_5_g_ml_and_menadione_1_g_ml.yaml","tryptic_soy_broth_supplemented_with_hemin_5_g_ml_and_menadione_1_g_ml"],["tryptic_soy_broth_with_5_sheep_blood_defibrinated.yaml","tryptic_soy_broth_with_5_sheep_blood_defibrinated"],["trypticase_glucose_medium__db729b4e.yaml","trypticase_glucose_medium"],["trypticase_soy_agar_containing_5_v_v_defibrinated_ovine_blood.yaml","trypticase_soy_agar_containing_5_v_v_defibrinated_ovine_blood"],["trypticase_soy_agar_with_0_5_x_artificial_seawater.yaml","trypticase_soy_agar_with_0_5_x_artificial_seawater"],["trypticase_soy_broth_agar__befb0afa.yaml","trypticase_soy_broth_agar"],["trypticase_soy_broth_agar_blood.yaml","trypticase_soy_broth_agar_blood"],["trypticase_soy_broth_agar_with_10_kcl.yaml","trypticase_soy_broth_agar_with_10_kcl"],["trypticase_soy_broth_agar_with_10_kcl__eab271cd.yaml","trypticase_soy_broth_agar_with_10_kcl"],["trypticase_soy_broth_agar_with_10_mgcl_sub_2_sub_183_6h_sub_2_sub_o.yaml","trypticase_soy_broth_agar_with_10_mgcl_sub_2_sub_183_6h_sub_2_sub_o"],["trypticase_soy_broth_agar_with_2_mgso_sub_4_sub_and_3_nacl.yaml","trypticase_soy_broth_agar_with_2_mgso_sub_4_sub_and_3_nacl"],["trypticase_soy_broth_with_5_nacl.yaml","trypticase_soy_broth_with_5_nacl"],["trypticase_soy_yeast_extract_medium__90457748.yaml","trypticase_soy_yeast_extract_medium"],["trypticase_soy_yeast_extract_medium__ed939013.yaml","trypticase_soy_yeast_extract_medium"],["tsa_hemin_menadione_medium__f2bb4f66.yaml","tsa_hemin_menadione_medium"],["tsb_glucose_medium.yaml","tsb_glucose_medium"],["tsb_ph_9_0_with_k2co3.yaml","tsb_ph_9_0_with_k2co3"],["tsby_medium__51fb20cf.yaml","tsby_medium"],["tsby_salt_medium__a18bc8e4.yaml","tsby_salt_medium"],["tsby_salt_medium__ad92ca9e.yaml","tsby_salt_medium"],["wmy.yaml","wmy"],["ypd_agar.yaml","ypd_agar"]]} \ No newline at end of file diff --git a/assets/fleet/cells/CultureMech--NCBITaxon.json b/assets/fleet/cells/CultureMech--NCBITaxon.json index 5d66b18..8f80128 100644 --- a/assets/fleet/cells/CultureMech--NCBITaxon.json +++ b/assets/fleet/cells/CultureMech--NCBITaxon.json @@ -1 +1 @@ -{"mech":"CultureMech","prefix":"NCBITaxon","base":"https://github.com/CultureBotAI/CultureMech/blob/main/data/merge_yaml/merged/","total":30,"records":[["2ASW.yaml","2asw"],["BHIS__8d771a65.yaml","BHIS"],["BRUCELLA_BROTH.yaml","brucella_broth"],["FRIIS_MEDIUM.yaml","friis_medium"],["F_2_Medium.yaml","f_2_medium"],["GEOBACTER_SULFURREDUCENS_MEDIUM.yaml","geobacter_sulfurreducens_medium"],["HALOTHERMOTHRIX_ORENII.yaml","halothermothrix_orenii"],["LB_Medium.yaml","lb_medium"],["METHYLOTROPH_MEDIUM.yaml","methylotroph_medium"],["Marine_Agar_2216.yaml","marine_agar_2216"],["RHODOBACTER_SPHAEROIDES_MEDIUM.yaml","rhodobacter_sphaeroides_medium"],["SPOROHALOBACTER_LORTETII_MEDIUM.yaml","sporohalobacter_lortetii_medium"],["acidiphilium_medium__9ab0ce72.yaml","acidiphilium_medium"],["archaeoglobus_medium_dsm_399.yaml","archaeoglobus_medium_dsm_399"],["bacto_marine_broth_difco_2216_for_dsm_11879.yaml","bacto_marine_broth_difco_2216_for_dsm_11879"],["bg11__f771062f.yaml","bg11"],["caldicellulosiruptor_medium_for_dsm_10319.yaml","caldicellulosiruptor_medium_for_dsm_10319"],["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"],["columbia_blood_agar__e1a4386f.yaml","columbia_blood_agar"],["ignicoccus_medium_for_dsm_18386.yaml","ignicoccus_medium_for_dsm_18386"],["magnetospirillum_gryphiswaldense_medium__6f77a326.yaml","magnetospirillum_gryphiswaldense_medium"],["medium_for_co_culture_of_strain_jt_with_methanospirillum_hungatei_nbrc_100397.yaml","medium_for_co_culture_of_strain_jt_with_methanospirillum_hungatei_nbrc_100397"],["methanosarcina_medium__046448c4.yaml","methanosarcina_medium"],["nutrient_broth__3e8602c5.yaml","nutrient broth"],["pyrococcus_medium__6ffabef8.yaml","pyrococcus_medium"],["sulfolobus_medium_anaerobic_for_dsm_2162.yaml","sulfolobus_medium_anaerobic_for_dsm_2162"],["sulfolobus_medium_for_dsm_5348.yaml","sulfolobus_medium_for_dsm_5348"],["sulfolobus_medium_for_dsm_9790.yaml","sulfolobus_medium_for_dsm_9790"],["tap_medium.yaml","tap_medium"],["thermus_medium__6b1d1914.yaml","thermus_medium"]]} \ No newline at end of file +{"mech":"CultureMech","prefix":"NCBITaxon","base":"https://github.com/CultureBotAI/CultureMech/blob/main/data/merge_yaml/merged/","total":30,"records":[["2ASW.yaml","2asw"],["BHIS__8d771a65.yaml","BHIS"],["BRUCELLA_BROTH.yaml","brucella_broth"],["FRIIS_MEDIUM.yaml","friis_medium"],["F_2_Medium.yaml","f_2_medium"],["GEOBACTER_SULFURREDUCENS_MEDIUM.yaml","geobacter_sulfurreducens_medium"],["LB_Medium.yaml","lb_medium"],["METHYLOTROPH_MEDIUM.yaml","methylotroph_medium"],["Marine_Agar_2216.yaml","marine_agar_2216"],["RHODOBACTER_SPHAEROIDES_MEDIUM.yaml","rhodobacter_sphaeroides_medium"],["SPOROHALOBACTER_LORTETII_MEDIUM.yaml","sporohalobacter_lortetii_medium"],["acidiphilium_medium__9ab0ce72.yaml","acidiphilium_medium"],["archaeoglobus_medium_dsm_399.yaml","archaeoglobus_medium_dsm_399"],["bacto_marine_broth_difco_2216_for_dsm_11879.yaml","bacto_marine_broth_difco_2216_for_dsm_11879"],["bg11__f771062f.yaml","bg11"],["caldicellulosiruptor_medium_for_dsm_10319.yaml","caldicellulosiruptor_medium_for_dsm_10319"],["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"],["columbia_blood_agar__e1a4386f.yaml","columbia_blood_agar"],["halothermothrix_orenii.yaml","halothermothrix_orenii"],["ignicoccus_medium_for_dsm_18386.yaml","ignicoccus_medium_for_dsm_18386"],["magnetospirillum_gryphiswaldense_medium__6f77a326.yaml","magnetospirillum_gryphiswaldense_medium"],["medium_for_co_culture_of_strain_jt_with_methanospirillum_hungatei_nbrc_100397.yaml","medium_for_co_culture_of_strain_jt_with_methanospirillum_hungatei_nbrc_100397"],["methanosarcina_medium__046448c4.yaml","methanosarcina_medium"],["nutrient_broth__3e8602c5.yaml","nutrient broth"],["pyrococcus_medium__6ffabef8.yaml","pyrococcus_medium"],["sulfolobus_medium_anaerobic_for_dsm_2162.yaml","sulfolobus_medium_anaerobic_for_dsm_2162"],["sulfolobus_medium_for_dsm_5348.yaml","sulfolobus_medium_for_dsm_5348"],["sulfolobus_medium_for_dsm_9790.yaml","sulfolobus_medium_for_dsm_9790"],["tap_medium.yaml","tap_medium"],["thermus_medium__6b1d1914.yaml","thermus_medium"]]} \ No newline at end of file diff --git a/assets/fleet/cells/CultureMech--UBERON.json b/assets/fleet/cells/CultureMech--UBERON.json index a4006d5..92d74fe 100644 --- a/assets/fleet/cells/CultureMech--UBERON.json +++ b/assets/fleet/cells/CultureMech--UBERON.json @@ -1 +1 @@ -{"mech":"CultureMech","prefix":"UBERON","base":"https://github.com/CultureBotAI/CultureMech/blob/main/data/merge_yaml/merged/","total":72,"records":[["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"],["1_2_mrs_1_2_bhi_agar.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_mrs_1_2_bhi_agar__56430c33.yaml","1_2_mrs_1_2_bhi_agar"],["70_30_sporulation_medium.yaml","70_30_sporulation_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Anaerobic_Brain_Heart_Infusion_Broth.yaml","anaerobic_brain_heart_infusion_broth"],["BHI.yaml","BHI"],["BHIS.yaml","bhis"],["BHIY_AGAR.yaml","bhiy_agar"],["BHI_1_MEDIUM.yaml","bhi_1_medium"],["BHI_2_MEDIUM.yaml","bhi_2_medium"],["BHI_3_MEDIUM.yaml","bhi_3_medium"],["BHI_MEDIUM_FOR_STRICT_ANAEROBES.yaml","bhi_medium_for_strict_anaerobes"],["BHI_MEDIUM_WITH_ADDITIONAL_GLUCOSE.yaml","bhi_medium_with_additional_glucose"],["BLOOD_AGAR_I.yaml","blood_agar_i"],["BRAIN_HEART_INFUSION_AGAR_WITH_SOIL_EXTRACT.yaml","brain_heart_infusion_agar_with_soil_extract"],["Brain_Heart_Infusion_Broth.yaml","brain_heart_infusion_broth"],["COLUMBIA_BLOOD_AGAR_WITH_CHARCOAL.yaml","columbia_blood_agar_with_charcoal"],["COLUMBIA_BLOOD_MEDIUM.yaml","columbia_blood_medium"],["Columbia.yaml","Columbia"],["FRANCISELLA_HALIOTICIDA_MEDIUM.yaml","francisella_halioticida_medium"],["FRIIS_MEDIUM.yaml","friis_medium"],["MODIFIED_BHI.yaml","modified_bhi"],["Mucispirillum_Spezial.yaml","mucispirillum_spezial"],["TREPONEMA_DENTICOLA_MEDIUM.yaml","treponema_denticola_medium"],["TSBY_MEDIUM.yaml","tsby_medium"],["bhi_2_medium__b5331467.yaml","bhi_2_medium"],["bhi_2_medium__c2263538.yaml","bhi_2_medium"],["bhi_agar_with_5_bovine_blood.yaml","bhi_agar_with_5_bovine_blood"],["bhi_medium_modified.yaml","bhi_medium_modified"],["bhi_s_medium.yaml","bhi_s_medium"],["bhi_s_medium__e71412b8.yaml","bhi_s_medium"],["bhi_supplemented_with_0_1_tween_80_ph_8_0.yaml","bhi_supplemented_with_0_1_tween_80_ph_8_0"],["bhi_w_heat_inactivated_fetal_bovine_serum_and_glucose.yaml","bhi_w_heat_inactivated_fetal_bovine_serum_and_glucose"],["bhiy_agar__c89652dd.yaml","bhiy_agar"],["blood_agar__45bfc12d.yaml","blood_agar"],["brain_heart_infusion_2_nacl.yaml","brain_heart_infusion_2_nacl"],["brain_heart_infusion_agar_amended_with_5_v_v_laked_horse_blood.yaml","brain_heart_infusion_agar_amended_with_5_v_v_laked_horse_blood"],["brain_heart_infusion_agar_containing_7_horse_blood_and_0_4_isovitalex.yaml","brain_heart_infusion_agar_containing_7_horse_blood_and_0_4_isovitalex"],["brain_heart_infusion_agar_with_2_nacl.yaml","brain_heart_infusion_agar_with_2_nacl"],["brain_heart_infusion_agar_with_5_rabbit_blood.yaml","brain_heart_infusion_agar_with_5_rabbit_blood"],["brain_heart_infusion_agar_with_5_rabbit_blood__490a0131.yaml","brain_heart_infusion_agar_with_5_rabbit_blood"],["brain_heart_infusion_bhi_agar_supplemented_with_haemin_and_nad.yaml","brain_heart_infusion_bhi_agar_supplemented_with_haemin_and_nad"],["brain_heart_infusion_bhi_broth_containing_c_difficile_supplement_and_0_04_cysteine.yaml","brain_heart_infusion_bhi_broth_containing_c_difficile_supplement_and_0_04_cysteine"],["brain_heart_infusion_bhi_broth_oxoid.yaml","brain_heart_infusion_bhi_broth_oxoid"],["brain_heart_infusion_bhi_broth_supplemented_with_haemin_and_nad.yaml","brain_heart_infusion_bhi_broth_supplemented_with_haemin_and_nad"],["brain_heart_infusion_bhi_medium_supplemented_with_antibiotics.yaml","brain_heart_infusion_bhi_medium_supplemented_with_antibiotics"],["brain_heart_infusion_bhi_with_sodium_acetate.yaml","brain_heart_infusion_bhi_with_sodium_acetate"],["brain_heart_infusion_bhi_with_sodium_acetate__06710ab8.yaml","brain_heart_infusion_bhi_with_sodium_acetate"],["brain_heart_infusion_broth_supplemented_with_5_g_ml_hemin_1_g_l_cysteine_and_nahco3_bhis.yaml","brain_heart_infusion_broth_supplemented_with_5_g_ml_hemin_1_g_l_cysteine_and_nahco3_bhis"],["brain_heart_infusion_difco_medium_supplemented_with_dl_threonine_and_glucose.yaml","brain_heart_infusion_difco_medium_supplemented_with_dl_threonine_and_glucose"],["brain_heart_infusion_media_bhi_supplemented_with_0_5_of_tween_80.yaml","brain_heart_infusion_media_bhi_supplemented_with_0_5_of_tween_80"],["brain_heart_infusion_medium_with_added_nad_and_hemin.yaml","brain_heart_infusion_medium_with_added_nad_and_hemin"],["chocolate_agar__3b7e698b.yaml","chocolate_agar"],["columbia_blood_agar__06261cb5.yaml","columbia_blood_agar"],["columbia_blood_agar__e1a4386f.yaml","columbia_blood_agar"],["columbia_blood_agar_with_5_horse_blood__65a36f66.yaml","columbia_blood_agar_with_5_horse_blood"],["columbia_blood_agar_with_5_rabbit_blood__0ed590f0.yaml","columbia_blood_agar_with_5_rabbit_blood"],["columbia_blood_agar_with_5_sheep_blood__5f55f46d.yaml","columbia_blood_agar_with_5_sheep_blood"],["columbia_glucose_cysteine_agar.yaml","columbia_glucose_cysteine_agar"],["for_dsm_15692.yaml","for_dsm_15692"],["friis_medium__627cc545.yaml","friis_medium"],["km2_cell_free_medium.yaml","km2_cell_free_medium"],["mGAM.yaml","mGAM"],["methanobacterium_medium_vii.yaml","methanobacterium_medium_vii"],["methanobacterium_medium_vii__fe4003e3.yaml","methanobacterium_medium_vii"],["modified_methanobacterium_medium__3288cf7e.yaml","modified_methanobacterium_medium"],["modified_methanobacterium_medium__6e3500bd.yaml","modified_methanobacterium_medium"],["modified_methanobacterium_medium_for_dsm_1093.yaml","modified_methanobacterium_medium_for_dsm_1093"],["r_agar_with_0_5_tween_80__19de1be9.yaml","r_agar_with_0_5_tween_80"],["togo_medium_m1527.yaml","togo_medium_m1527"],["tsby_medium__51fb20cf.yaml","tsby_medium"]]} \ No newline at end of file +{"mech":"CultureMech","prefix":"UBERON","base":"https://github.com/CultureBotAI/CultureMech/blob/main/data/merge_yaml/merged/","total":72,"records":[["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"],["1_2_mrs_1_2_bhi_agar.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_mrs_1_2_bhi_agar__56430c33.yaml","1_2_mrs_1_2_bhi_agar"],["70_30_sporulation_medium.yaml","70_30_sporulation_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Anaerobic_Brain_Heart_Infusion_Broth.yaml","anaerobic_brain_heart_infusion_broth"],["BHI.yaml","BHI"],["BHIS.yaml","bhis"],["BHIY_AGAR.yaml","bhiy_agar"],["BHI_1_MEDIUM.yaml","bhi_1_medium"],["BHI_2_MEDIUM.yaml","bhi_2_medium"],["BHI_3_MEDIUM.yaml","bhi_3_medium"],["BHI_MEDIUM_FOR_STRICT_ANAEROBES.yaml","bhi_medium_for_strict_anaerobes"],["BHI_MEDIUM_WITH_ADDITIONAL_GLUCOSE.yaml","bhi_medium_with_additional_glucose"],["BLOOD_AGAR_I.yaml","blood_agar_i"],["BRAIN_HEART_INFUSION_AGAR_WITH_SOIL_EXTRACT.yaml","brain_heart_infusion_agar_with_soil_extract"],["Brain_Heart_Infusion_Broth.yaml","brain_heart_infusion_broth"],["COLUMBIA_BLOOD_AGAR_WITH_CHARCOAL.yaml","columbia_blood_agar_with_charcoal"],["COLUMBIA_BLOOD_MEDIUM.yaml","columbia_blood_medium"],["Columbia.yaml","Columbia"],["FRANCISELLA_HALIOTICIDA_MEDIUM.yaml","francisella_halioticida_medium"],["FRIIS_MEDIUM.yaml","friis_medium"],["MODIFIED_BHI.yaml","modified_bhi"],["Mucispirillum_Spezial.yaml","mucispirillum_spezial"],["TSBY_MEDIUM.yaml","tsby_medium"],["bhi_2_medium__b5331467.yaml","bhi_2_medium"],["bhi_2_medium__c2263538.yaml","bhi_2_medium"],["bhi_agar_with_5_bovine_blood.yaml","bhi_agar_with_5_bovine_blood"],["bhi_medium_modified.yaml","bhi_medium_modified"],["bhi_s_medium.yaml","bhi_s_medium"],["bhi_s_medium__e71412b8.yaml","bhi_s_medium"],["bhi_supplemented_with_0_1_tween_80_ph_8_0.yaml","bhi_supplemented_with_0_1_tween_80_ph_8_0"],["bhi_w_heat_inactivated_fetal_bovine_serum_and_glucose.yaml","bhi_w_heat_inactivated_fetal_bovine_serum_and_glucose"],["bhiy_agar__c89652dd.yaml","bhiy_agar"],["blood_agar__45bfc12d.yaml","blood_agar"],["brain_heart_infusion_2_nacl.yaml","brain_heart_infusion_2_nacl"],["brain_heart_infusion_agar_amended_with_5_v_v_laked_horse_blood.yaml","brain_heart_infusion_agar_amended_with_5_v_v_laked_horse_blood"],["brain_heart_infusion_agar_containing_7_horse_blood_and_0_4_isovitalex.yaml","brain_heart_infusion_agar_containing_7_horse_blood_and_0_4_isovitalex"],["brain_heart_infusion_agar_with_2_nacl.yaml","brain_heart_infusion_agar_with_2_nacl"],["brain_heart_infusion_agar_with_5_rabbit_blood.yaml","brain_heart_infusion_agar_with_5_rabbit_blood"],["brain_heart_infusion_agar_with_5_rabbit_blood__490a0131.yaml","brain_heart_infusion_agar_with_5_rabbit_blood"],["brain_heart_infusion_bhi_agar_supplemented_with_haemin_and_nad.yaml","brain_heart_infusion_bhi_agar_supplemented_with_haemin_and_nad"],["brain_heart_infusion_bhi_broth_containing_c_difficile_supplement_and_0_04_cysteine.yaml","brain_heart_infusion_bhi_broth_containing_c_difficile_supplement_and_0_04_cysteine"],["brain_heart_infusion_bhi_broth_oxoid.yaml","brain_heart_infusion_bhi_broth_oxoid"],["brain_heart_infusion_bhi_broth_supplemented_with_haemin_and_nad.yaml","brain_heart_infusion_bhi_broth_supplemented_with_haemin_and_nad"],["brain_heart_infusion_bhi_medium_supplemented_with_antibiotics.yaml","brain_heart_infusion_bhi_medium_supplemented_with_antibiotics"],["brain_heart_infusion_bhi_with_sodium_acetate.yaml","brain_heart_infusion_bhi_with_sodium_acetate"],["brain_heart_infusion_bhi_with_sodium_acetate__06710ab8.yaml","brain_heart_infusion_bhi_with_sodium_acetate"],["brain_heart_infusion_broth_supplemented_with_5_g_ml_hemin_1_g_l_cysteine_and_nahco3_bhis.yaml","brain_heart_infusion_broth_supplemented_with_5_g_ml_hemin_1_g_l_cysteine_and_nahco3_bhis"],["brain_heart_infusion_difco_medium_supplemented_with_dl_threonine_and_glucose.yaml","brain_heart_infusion_difco_medium_supplemented_with_dl_threonine_and_glucose"],["brain_heart_infusion_media_bhi_supplemented_with_0_5_of_tween_80.yaml","brain_heart_infusion_media_bhi_supplemented_with_0_5_of_tween_80"],["brain_heart_infusion_medium_with_added_nad_and_hemin.yaml","brain_heart_infusion_medium_with_added_nad_and_hemin"],["chocolate_agar__3b7e698b.yaml","chocolate_agar"],["columbia_blood_agar__06261cb5.yaml","columbia_blood_agar"],["columbia_blood_agar__e1a4386f.yaml","columbia_blood_agar"],["columbia_blood_agar_with_5_horse_blood__65a36f66.yaml","columbia_blood_agar_with_5_horse_blood"],["columbia_blood_agar_with_5_rabbit_blood__0ed590f0.yaml","columbia_blood_agar_with_5_rabbit_blood"],["columbia_blood_agar_with_5_sheep_blood__5f55f46d.yaml","columbia_blood_agar_with_5_sheep_blood"],["columbia_glucose_cysteine_agar.yaml","columbia_glucose_cysteine_agar"],["for_dsm_15692.yaml","for_dsm_15692"],["friis_medium__627cc545.yaml","friis_medium"],["km2_cell_free_medium.yaml","km2_cell_free_medium"],["mGAM.yaml","mGAM"],["methanobacterium_medium_vii.yaml","methanobacterium_medium_vii"],["methanobacterium_medium_vii__fe4003e3.yaml","methanobacterium_medium_vii"],["modified_methanobacterium_medium__3288cf7e.yaml","modified_methanobacterium_medium"],["modified_methanobacterium_medium__6e3500bd.yaml","modified_methanobacterium_medium"],["modified_methanobacterium_medium_for_dsm_1093.yaml","modified_methanobacterium_medium_for_dsm_1093"],["r_agar_with_0_5_tween_80__19de1be9.yaml","r_agar_with_0_5_tween_80"],["togo_medium_m1527.yaml","togo_medium_m1527"],["treponema_denticola_medium.yaml","treponema_denticola_medium"],["tsby_medium__51fb20cf.yaml","tsby_medium"]]} \ No newline at end of file diff --git a/assets/fleet/cells/MediaIngredientMech--CAS.json b/assets/fleet/cells/MediaIngredientMech--CAS.json index 1253869..70fffe2 100644 --- a/assets/fleet/cells/MediaIngredientMech--CAS.json +++ b/assets/fleet/cells/MediaIngredientMech--CAS.json @@ -1 +1 @@ -{"mech":"MediaIngredientMech","prefix":"CAS","base":"https://github.com/CultureBotAI/MediaIngredientMech/blob/main/data/ingredients/","total":278,"records":[["mapped/1-ethyl-3-methylimidazolium_Acetate.yaml","1-ethyl-3-methylimidazolium acetate"],["mapped/13-Hexanediol.yaml","1,3-Hexanediol"],["mapped/14-B-D-Galactobiose.yaml","1,4-B-D-Galactobiose"],["mapped/16-Hexanediamine.yaml","1,6-Hexanediamine"],["mapped/2-6-dihydroxybenzoic_Acid.yaml","2,6-dihydroxybenzoic acid"],["mapped/2-Deoxy-D-ribonic_Acid_Lithium_Salt.yaml","2-Deoxy-D-ribonic acid lithium salt"],["mapped/2-Deoxyadenosine_Monohydrate.yaml","2-Deoxyadenosine monohydrate"],["mapped/2-Hydroxybutyric_Acid_Sodium_Salt.yaml","2-Hydroxybutyric acid sodium salt"],["mapped/2-Keto-D-gluconic_Acid_Hemicalcium_Salt_Hydrate.yaml","2-Keto-D-gluconic acid hemicalcium salt hydrate"],["mapped/2-Keto-D-gluconic_Acid_Hemicalcium_Salt_Monohydrate.yaml","2-Keto-D-gluconic acid hemicalcium salt monohydrate"],["mapped/2-oxobutyric_Acid_Sodium_Salt.yaml","2-oxobutyric acid sodium salt"],["mapped/22-dibromo-2-cyanoacetamide.yaml","2,2-dibromo-2-cyanoacetamide"],["mapped/25-Dihydroxy-4-Methoxychalcone.yaml","2',5'-Dihydroxy-4-Methoxychalcone"],["mapped/3-O-Methyl-D-glucopyranose.yaml","3-O-Methyl-D-glucopyranose"],["mapped/3-Pyridinesulfonic_Acid.yaml","3-Pyridinesulfonic acid"],["mapped/3-fucosyllactose.yaml","3'-fucosyllactose"],["mapped/3-sialyllactose_Sodium_Salt.yaml","3'-sialyllactose sodium salt"],["mapped/34-Dihydroxyflavone.yaml","3,4'-Dihydroxyflavone"],["mapped/36-Dihydroxyflavone.yaml","3',6-Dihydroxyflavone"],["mapped/4-Hydroxymandelic_Acid_Monohydrate.yaml","4-Hydroxymandelic acid monohydrate"],["mapped/4-Methoxyflavone.yaml","4'-Methoxyflavone"],["mapped/4-Methyl-2-oxopentanoic_Acid_Sodium_Salt.yaml","4-Methyl-2-oxopentanoic acid sodium salt"],["mapped/5-Fluoroorotic_Acid_Hydrate.yaml","5-Fluoroorotic acid hydrate"],["mapped/5-Keto-D-Gluconic_Acid_Potassium_Salt.yaml","5-Keto-D-Gluconic Acid potassium salt"],["mapped/5-_2-thienyl-pentanoic_Acid.yaml","5-(2-thienyl)-pentanoic acid"],["mapped/574-Trimethoxyisoflavone.yaml","5,7,4'-Trimethoxyisoflavone"],["mapped/5z-4-bromo-5-_Bromomethylene-2_5h-furanone.yaml","(5z)-4-bromo-5-(bromomethylene)-2(5h)-furanone"],["mapped/6-O-sialyllactose_Sodium_Salt.yaml","6'-O-sialyllactose sodium salt"],["mapped/6-Pentyl-2H-pyran-2-one.yaml","6-Pentyl-2H-pyran-2-one"],["mapped/72-Dihydroxyflavone.yaml","7,2'-Dihydroxyflavone"],["mapped/A-Ketoglutaric_Acid_Disodium_Salt_Hydrate.yaml","a-Ketoglutaric acid disodium salt hydrate"],["mapped/AQDS.yaml","AQDS"],["mapped/Acriflavine.yaml","Acriflavine"],["mapped/Adenine_Hydrochloride_Hydrate.yaml","Adenine hydrochloride hydrate"],["mapped/Aesculetin.yaml","Aesculetin"],["mapped/Aluminum_Chloride_Hydrate.yaml","Aluminum chloride hydrate"],["mapped/Ammonium_Molybdate_Tetrahydrate.yaml","ammonium molybdate tetrahydrate"],["mapped/Ammonium_Sulfide_Solution.yaml","ammonium sulfide solution"],["mapped/Ammonium_Sulfite_Monohydrate.yaml","Ammonium sulfite monohydrate"],["mapped/Anabasine_Hydrochloride.yaml","Anabasine Hydrochloride"],["mapped/Andirobin.yaml","Andirobin"],["mapped/Anisodamine_Hydrobromide.yaml","Anisodamine Hydrobromide ()"],["mapped/Apigenin_Dimethyl_Ether.yaml","Apigenin Dimethyl Ether"],["mapped/Apramycin_Sulfate_Salt.yaml","Apramycin sulfate salt"],["mapped/Arabinan_From_Sugar_Beet.yaml","Arabinan from Sugar Beet"],["mapped/Arabinobiose.yaml","Arabinobiose"],["mapped/Arabinotriose.yaml","Arabinotriose"],["mapped/Artepaulin.yaml","Artepaulin"],["mapped/Atrazin.yaml","Atrazin"],["mapped/Avidin.yaml","Avidin"],["mapped/B-Mannan_Borohydrate_Reduced_Carob_Seed.yaml","b-Mannan borohydrate reduced carob seed"],["mapped/Bathocuproine_Disulfonic_Acid_Disodium_Salt.yaml","Bathocuproine disulfonic acid disodium salt"],["mapped/Benzylhydrazine_Hydrochloride.yaml","Benzylhydrazine Hydrochloride"],["mapped/Beta-Glycerophosphate_Disodium_Salt_Hydrate.yaml","Beta-Glycerophosphate disodium salt hydrate"],["mapped/Betaine_Hydrochloride.yaml","Betaine hydrochloride"],["mapped/Biochanin_A_Diacetate.yaml","Biochanin a diacetate"],["mapped/Bismuth_Iii_Chloride.yaml","bismuth(III) chloride"],["mapped/Bovine_Serum_Albumin.yaml","bovine serum albumin"],["mapped/Cadmium_Acetate_Dihydrate.yaml","Cadmium acetate dihydrate"],["mapped/Caffeine_Hydrobromide.yaml","Caffeine Hydrobromide"],["mapped/Carboxymethyl_Cellulose.yaml","Carboxymethyl cellulose"],["mapped/Carnitine_Dl_Hydrochloride.yaml","Carnitine (Dl) Hydrochloride"],["mapped/Carnitine_Hydrochloride.yaml","Carnitine Hydrochloride"],["mapped/Ceftazidime_Hydrate.yaml","Ceftazidime hydrate"],["mapped/Cetomacrogol_1000.yaml","Cetomacrogol 1000"],["mapped/Cholin_Acetate.yaml","Cholin acetate"],["mapped/Cholinium_Dihydrogen_Phosphate.yaml","Cholinium dihydrogen phosphate"],["mapped/Chondroitin_Sulfate_A_Sodium_Salt_From_Bovine_Trachea.yaml","Chondroitin sulfate A sodium salt from bovine trachea"],["mapped/Chrysanthemic_Acid_Ethyl_Ester.yaml","Chrysanthemic Acid, Ethyl Ester"],["mapped/Cimicifugoside_H1.yaml","Cimicifugoside H1"],["mapped/Corn_Steep_Liquor_Glucose_Fumarate.yaml","Corn Steep Liquor + Glucose + Fumarate"],["mapped/Cotarnine_Chloride.yaml","Cotarnine Chloride"],["mapped/CrKSO42_X_12_H2O.yaml","CrKSO42 x 12 H2O"],["mapped/Curdlan.yaml","Curdlan"],["mapped/D-Fructose_6-phosphate_Disodium_Salt_Hydrate.yaml","D-Fructose 6-phosphate disodium salt hydrate"],["mapped/D-Galacturonic_Acid_Monohydrate.yaml","D-Galacturonic Acid monohydrate"],["mapped/D-Glucosamine_Hydrochloride.yaml","D-Glucosamine Hydrochloride"],["mapped/D-Glucose-6-Phosphate_Sodium_Salt.yaml","D-Glucose-6-Phosphate sodium salt"],["mapped/D-Glucuronic_Acid_Sodium_Salt_Monohydrate.yaml","D-Glucuronic acid sodium salt monohydrate"],["mapped/D-Leucrose.yaml","D-Leucrose"],["mapped/D-Maltose_Monohydrate.yaml","D-Maltose monohydrate"],["mapped/D-Mannose_6-phosphate_Sodium_Salt.yaml","D-Mannose 6-phosphate sodium salt"],["mapped/D-Raffinose_Pentahydrate.yaml","D-Raffinose pentahydrate"],["mapped/D-Saccharic_Acid_Potassium_Salt.yaml","D-Saccharic acid potassium salt"],["mapped/D-_-melezitose_Hydrate.yaml","D-(+)-Melezitose hydrate"],["mapped/D-_-melezitose_Monohydrate.yaml","D-(+)-melezitose monohydrate"],["mapped/D-limonene.yaml","d-limonene"],["mapped/D-xylose_5-phosphate_Lithium_Salt.yaml","D-xylose 5-phosphate lithium salt"],["mapped/DAMPA.yaml","DAMPA"],["mapped/DEANONOate.yaml","DEANONOate"],["mapped/DL-2-Aminobutyric_Acid.yaml","DL-2-Aminobutyric acid"],["mapped/DL-3-Aminoisobutyric_Acid.yaml","DL-3-Aminoisobutyric acid"],["mapped/DL-3-Hydroxyisobutyric_Acid_Sodium_Salt.yaml","DL-3-Hydroxyisobutyric acid sodium salt"],["mapped/DL-Glyceraldehyde_3-phosphate.yaml","DL-Glyceraldehyde 3-phosphate"],["mapped/DL-Glycerol_1-phosphate_Sodium_Salt_Hydrate.yaml","DL-Glycerol 1-phosphate sodium salt hydrate"],["mapped/DL-Histidine_Monohydrochloride_Monohydrate.yaml","DL-Histidine monohydrochloride monohydrate"],["mapped/DL-glyceraldehyde.yaml","DL-glyceraldehyde"],["mapped/DNA_From_Salmon.yaml","DNA from Salmon"],["mapped/Deuterated_Glucose.yaml","deuterated glucose"],["mapped/Dimethylfraxetin.yaml","Dimethylfraxetin"],["mapped/Dimethylsulfoniopropionate_Hydrochloride.yaml","Dimethylsulfoniopropionate hydrochloride"],["mapped/Disodium_Glutarate.yaml","Disodium Glutarate"],["mapped/Duartin.yaml","Duartin (-)"],["mapped/EDTA_Tetrasodium_Tetrahydrate_Salt.yaml","EDTA tetrasodium tetrahydrate salt"],["mapped/Ethylenediamine-NN-disuccinic_Acid.yaml","Ethylenediamine-N,N'-disuccinic acid"],["mapped/Europium_Iii_Chloride.yaml","Europium(III) chloride"],["mapped/FSL.yaml","FSL"],["mapped/Fosmidomycin_Sodium_Salt_Hydrate.yaml","Fosmidomycin sodium salt hydrate"],["mapped/Fructooligosaccharides_Fos.yaml","Fructooligosaccharides (FOS)"],["mapped/Fructose-asparagine.yaml","Fructose-asparagine"],["mapped/Furaltadone_Hydrochloride.yaml","Furaltadone hydrochloride"],["mapped/Fusidic_Acid_Sodium_Salt.yaml","Fusidic acid sodium salt"],["mapped/G418_Disulfate_Salt_Solution.yaml","G418 disulfate salt solution"],["mapped/Galactomannan_From_Guar.yaml","Galactomannan from guar"],["mapped/Galactose_1-phosphate_Dipotassium_Salt_Pentahydrate.yaml","Galactose 1-phosphate dipotassium salt pentahydrate"],["mapped/Gallium_Iiichloride.yaml","Gallium(III)chloride"],["mapped/Gepotidacin.yaml","Gepotidacin"],["mapped/Glucomannan_Konjac.yaml","Glucomannan (konjac)"],["mapped/Glucuronamide.yaml","Glucuronamide"],["mapped/Gly-DL-Asp.yaml","Gly-DL-Asp"],["mapped/Gly-Gln_Monohydrate.yaml","Gly-Gln monohydrate"],["mapped/Glycerol_Phosphate_Disodium_Salt_Hydrate.yaml","Glycerol phosphate disodium salt hydrate"],["mapped/Glycogen_From_Bovine_Liver.yaml","Glycogen from bovine liver"],["mapped/Glycyrrhizic_Acid_Ammonium_Salt.yaml","Glycyrrhizic Acid, Ammonium Salt"],["mapped/Gold_Iii_Chloride_Hydrate.yaml","gold (III) chloride hydrate"],["mapped/Gramicidin.yaml","Gramicidin"],["mapped/Guanidine_Hydrochloride.yaml","Guanidine Hydrochloride"],["mapped/Gum_Arabic_From_Acacia_Tree.yaml","Gum arabic from acacia tree"],["mapped/HOMOPIPES.yaml","HOMOPIPES"],["mapped/Harmol_Hydrochloride.yaml","Harmol Hydrochloride"],["mapped/Hyaluronic_Acid_Sodium_Salt_From_Streptococcus_Equi.yaml","Hyaluronic acid sodium salt from Streptococcus equi"],["mapped/Hymecromone_Methyl_Ether.yaml","Hymecromone Methyl Ether"],["mapped/Indole-3-pyruvic_Acid.yaml","Indole-3-pyruvic acid"],["mapped/Indole_3-acetic_Acid_Sodium_Salt.yaml","indole 3-acetic acid sodium salt"],["mapped/Izalpinin.yaml","Izalpinin"],["mapped/KH2PO3.yaml","KH2PO3"],["mapped/Kcl.yaml","KCl"],["mapped/L-Asparagine_Monohydrate.yaml","L-Asparagine monohydrate"],["mapped/L-Aspartic_Acid_Potassium_Salt.yaml","L-Aspartic acid potassium salt"],["mapped/L-Aspartic_Acid_Sodium_Salt_Monohydrate.yaml","L-Aspartic acid sodium salt monohydrate"],["mapped/L-Cysteic_Acid_Monohydrate.yaml","L-Cysteic acid monohydrate"],["mapped/L-Glutamic_Acid_Monopotassium_Salt_Monohydrate.yaml","L-Glutamic acid monopotassium salt monohydrate"],["mapped/L-Histidine_Monohydrochloride_Monohydrate.yaml","L-Histidine monohydrochloride monohydrate"],["mapped/L-Malic_Acid_Disodium_Salt_Monohydrate.yaml","L-Malic acid disodium salt monohydrate"],["mapped/L-Meta-tyrosine.yaml","L-Meta-tyrosine"],["mapped/L-Rhamnose_Monohydrate.yaml","L-Rhamnose monohydrate"],["mapped/L-%CE%B1-phosphatidylinositol_From_Glycine_Max_Soybean.yaml","L-α-Phosphatidylinositol from Glycine max (soybean)"],["mapped/Lacto-N-fucopentaose_I.yaml","Lacto-N-fucopentaose I"],["mapped/Lacto-N-fucopentaose_III.yaml","Lacto-N-fucopentaose III"],["mapped/Lacto-N-tetraose.yaml","Lacto-N-tetraose"],["mapped/Lanthanum_Iii_Chloride.yaml","Lanthanum (III) chloride"],["mapped/Lignin_Alkali.yaml","Lignin alkali"],["mapped/Lithium_Chloride_Hydrate.yaml","Lithium chloride hydrate"],["mapped/Locust_Bean_Gum.yaml","Locust bean gum"],["mapped/Lysozyme.yaml","Lysozyme"],["mapped/MES_Hydrat.yaml","MES Hydrat"],["mapped/MME_Trace_Minerals.yaml","MME Trace Minerals"],["mapped/Magnesium_Nitrate_Hexahydrate.yaml","magnesium nitrate hexahydrate"],["mapped/Malondialdehyde_Tetrabutylammonium_Salt.yaml","Malondialdehyde tetrabutylammonium salt"],["mapped/Maltotriose_Hydrate.yaml","Maltotriose hydrate"],["mapped/Mannan_From_Saccharomyces_Cerevisiae.yaml","Mannan from Saccharomyces cerevisiae"],["mapped/Mc_trace_minerals.yaml","Mc_trace_minerals"],["mapped/Mc_trace_minerals_SO4free.yaml","Mc_trace_minerals_SO4free"],["mapped/Menthol.yaml","Menthol"],["mapped/Methyl-2-Hydroxy-Phenylproprionate.yaml","Methyl-2-Hydroxy-Phenylproprionate"],["mapped/Methyl-alpha-D-xylopyranoside.yaml","methyl-alpha-D-xylopyranoside"],["mapped/Methyl-beta-D-xylopyranoside.yaml","methyl-beta-D-xylopyranoside"],["mapped/Methyl-beta-L-arabinopyranoside.yaml","methyl-beta-L-arabinopyranoside"],["mapped/Methyl-trans-p-coumarate.yaml","methyl-trans-p-coumarate"],["mapped/Methyl_Ferulate.yaml","methyl ferulate"],["mapped/Methylxanthoxylin.yaml","Methylxanthoxylin"],["mapped/Mexicanolide.yaml","Mexicanolide"],["mapped/MreB_Perturbing_Compound_A22.yaml","MreB Perturbing Compound A22"],["mapped/Mucin_Bovine_Submaxillary_Gland_Type_I-S.yaml","Mucin, Bovine Submaxillary Gland, type I-S"],["mapped/Mucin_From_Porcine_StomachType_II.yaml","Mucin from porcine stomach,Type II"],["mapped/Mucin_From_Porcine_Stomach_Type_III.yaml","Mucin from porcine stomach type III"],["mapped/N-_3-oxohexanoyl-dl-homoserine_Lactone.yaml","N-(3-oxohexanoyl)-DL-homoserine lactone"],["mapped/N-lauroylsarcosine_Sodium_Salt.yaml","N-lauroylsarcosine sodium salt"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Na2glycerophosphate5h2o.yaml","Na2glycerophosphate•5H2O"],["mapped/Nah2po4h2o.yaml","NaH2PO4•H2O"],["mapped/Nalidixic_Acid_Sodium_Salt.yaml","Nalidixic acid sodium salt"],["mapped/Nigericin_Sodium_Salt.yaml","Nigericin sodium salt"],["mapped/Nitrilotriacetic_Acid_Disodium_Salt.yaml","Nitrilotriacetic acid disodium salt"],["mapped/P-lacto-N-neo-hexaose.yaml","p-lacto-N-neo-hexaose"],["mapped/PIPES_Sesquisodium_Salt.yaml","PIPES sesquisodium salt"],["mapped/Palatinose_Hydrate.yaml","palatinose hydrate"],["mapped/Palmatine_Chloride.yaml","Palmatine chloride"],["mapped/Parachlorophenylalanine.yaml","Parachlorophenylalanine"],["mapped/Pediocin.yaml","Pediocin"],["mapped/Pentasodium_Tripolyphosphate_Hexahydrate.yaml","Pentasodium tripolyphosphate hexahydrate"],["mapped/Peucenin.yaml","Peucenin"],["mapped/Phenazine_Ethosulfate.yaml","Phenazine ethosulfate"],["mapped/Phosphomycin_Disodium_Salt.yaml","Phosphomycin disodium salt"],["mapped/Piperic_Acid.yaml","Piperic acid"],["mapped/Platinum_Iv_Chloride.yaml","platinum (IV) chloride"],["mapped/Poly_3-hydroxybutyric_Acid.yaml","Poly(3-hydroxybutyric acid)"],["mapped/Polygalacturonic_Acid_Sodium_Salt.yaml","Polygalacturonic acid sodium salt"],["mapped/Potassium_4-aminobenzoate.yaml","Potassium 4-aminobenzoate"],["mapped/Potassium_Aluminum_Chloride.yaml","Potassium aluminum chloride"],["mapped/Potassium_Citramalate_Monohydrate.yaml","potassium citramalate monohydrate"],["mapped/Potassium_Hexahydroxoantimonate.yaml","potassium hexahydroxoantimonate"],["mapped/Potassium_Oxalate_Monohydrate.yaml","Potassium oxalate monohydrate"],["mapped/Potassium_Phosphate_Dibasic_Trihydrate.yaml","Potassium phosphate dibasic trihydrate"],["mapped/Potassium_Polysulfide.yaml","potassium (poly)sulfide"],["mapped/Potassium_Tellurate_Hydrate.yaml","potassium tellurate hydrate"],["mapped/Potassium_Tellurite_Hydrate.yaml","Potassium tellurite hydrate"],["mapped/Prenyletin.yaml","Prenyletin"],["mapped/Pretomanid.yaml","Pretomanid"],["mapped/Pustulan_B-1-6_Glucan.yaml","Pustulan (b-1-6 glucan)"],["mapped/Putrescine_Dihydrochloride.yaml","Putrescine Dihydrochloride"],["mapped/Quinine_Hdrochloride.yaml","Quinine Hdrochloride"],["mapped/Rac-3-Hydroxypentanoic_Acid.yaml","rac-3-Hydroxypentanoic Acid"],["mapped/Rhamnogalacturonan_From_Soy_Bean_Pectic_Fibre.yaml","Rhamnogalacturonan from soy bean pectic fibre"],["mapped/Rhamnogalacturonan_I_From_Potato_Pectic_Fiber.yaml","Rhamnogalacturonan I from potato pectic fiber"],["mapped/Rhodinyl_Acetate.yaml","Rhodinyl Acetate"],["mapped/Robustic_Acid.yaml","Robustic Acid"],["mapped/Rutilantinone.yaml","Rutilantinone"],["mapped/S-adenosyl_Homocysteine.yaml","S-adenosyl Homocysteine"],["mapped/Sclareolide.yaml","Sclareolide"],["mapped/Sialyllacto-N-tetraose_D.yaml","Sialyllacto-N-tetraose d"],["mapped/Silver_Sulfate.yaml","silver sulfate"],["mapped/Simvastatin_Hydroxy_Acid_Ammonium_Salt.yaml","Simvastatin Hydroxy Acid Ammonium Salt"],["mapped/Sisomicin_Sulfate_Salt.yaml","Sisomicin sulfate salt"],["mapped/Sn-Glycerol_3-phosphate_Lithium_Salt.yaml","sn-Glycerol 3-phosphate lithium salt"],["mapped/Sn-glycerol_3-phosphate_Bis_Cyclohexylammonium_Salt.yaml","sn-Glycerol 3-phosphate bis(cyclohexylammonium) salt"],["mapped/Sodium_2-bromoethanesulfonate.yaml","Sodium 2-bromoethanesulfonate"],["mapped/Sodium_Adipate.yaml","Sodium adipate"],["mapped/Sodium_Antimonate.yaml","Sodium antimonate"],["mapped/Sodium_Carbonate_Monohydrate.yaml","sodium carbonate monohydrate"],["mapped/Sodium_Cholate_Hydrate.yaml","Sodium cholate hydrate"],["mapped/Sodium_D-Lactate.yaml","Sodium D-Lactate"],["mapped/Sodium_Deoxycholate_Monohydrate.yaml","Sodium deoxycholate monohydrate"],["mapped/Sodium_Ethyl_Sulfate.yaml","Sodium ethyl sulfate"],["mapped/Sodium_Hypophosphite_Monohydrate.yaml","Sodium hypophosphite monohydrate"],["mapped/Sodium_Isethionate.yaml","sodium isethionate"],["mapped/Sodium_Methanesulfonate.yaml","Sodium methanesulfonate"],["mapped/Sodium_Perchlorate_Monohydrate.yaml","Sodium perchlorate monohydrate"],["mapped/Sodium_Persulfate.yaml","Sodium Persulfate"],["mapped/Sodium_Phosphite_Dibasic_Pentahydrate.yaml","Sodium phosphite dibasic pentahydrate"],["mapped/Sodium_Pyrophosphate_Dibasic.yaml","Sodium pyrophosphate dibasic"],["mapped/Sodium_Succinate_Dibasic.yaml","Sodium succinate dibasic"],["mapped/Sodium_Thiophosphate_Tribasic_Hydrate.yaml","Sodium thiophosphate tribasic hydrate"],["mapped/Soya_Peptone.yaml","Soya peptone"],["mapped/Sparassol.yaml","Sparassol"],["mapped/Spiramycin.yaml","Spiramycin"],["mapped/Stachyose_Hydrate.yaml","Stachyose hydrate"],["mapped/Sucrose-6-monophosphate_Dipotassium_Salt.yaml","Sucrose-6-monophosphate dipotassium salt"],["mapped/Sulfamethazine_Sodium_Salt.yaml","Sulfamethazine sodium salt"],["mapped/Sulfaquinoxaline.yaml","Sulfaquinoxaline"],["mapped/Sulfaquinoxaline_Sodium_Salt.yaml","Sulfaquinoxaline sodium salt"],["mapped/Sulfur-free_DL_Minerals.yaml","Sulfur-free DL minerals"],["mapped/Sunflower_Oil.yaml","Sunflower oil"],["mapped/Sutezolid.yaml","Sutezolid"],["mapped/Synephrine_Tartrate.yaml","Synephrine Tartrate"],["mapped/TAPS_Sodium_Salt.yaml","TAPS sodium salt"],["mapped/Tapso.yaml","TAPSO"],["mapped/Tara_Gum.yaml","Tara gum"],["mapped/Terpene_Hydrate.yaml","Terpene hydrate"],["mapped/Tetrakis_Hydroxymethylphosphonium_Sulfate.yaml","Tetrakis(hydroxymethyl)phosphonium sulfate"],["mapped/Theaflavin_Digallate.yaml","Theaflavin Digallate"],["mapped/Timentin.yaml","Timentin"],["mapped/TitaniumIII_Chloride.yaml","TitaniumIII chloride"],["mapped/Tobramycin_Sulfate_Salt.yaml","Tobramycin sulfate salt"],["mapped/Tomatidine_Hydrochloride.yaml","Tomatidine Hydrochloride"],["mapped/UW_Concentrated_Base.yaml","UW concentrated base"],["mapped/UW_Concentrated_Base_No_Sulfur.yaml","UW concentrated base no sulfur"],["mapped/Uranyl_Acetate.yaml","Uranyl acetate"],["mapped/Uranyl_Acetate_Dihydrate.yaml","Uranyl Acetate Dihydrate"],["mapped/Uridine_5-monophosphate_Disodium_Salt.yaml","Uridine 5-monophosphate disodium salt"],["mapped/Ursololactone_Acetate.yaml","Ursololactone Acetate"],["mapped/Vanadium_Chloride.yaml","vanadium chloride"],["mapped/Vancomycin_Hydrochloride_Hydrate.yaml","Vancomycin Hydrochloride Hydrate"],["mapped/Veratrine_Hydrochloride.yaml","Veratrine hydrochloride"],["mapped/Xanthan_From_Xanthomonas_Campestris.yaml","Xanthan from Xanthomonas campestris"],["mapped/Xyloglucan_From_Tamarind.yaml","Xyloglucan from tamarind"],["mapped/Zymosan.yaml","Zymosan"],["mapped/%CE%911-Acid_Glycoprotein_From_Bovine_Plasma.yaml","α1-Acid Glycoprotein from bovine plasma"]]} \ No newline at end of file +{"mech":"MediaIngredientMech","prefix":"CAS","base":"https://github.com/CultureBotAI/MediaIngredientMech/blob/main/data/ingredients/","total":287,"records":[["mapped/05_M_Nitrilotriacetic_Acid_Disodium_Salt.yaml","0.5 M Nitrilotriacetic acid, disodium salt"],["mapped/1-ethyl-3-methylimidazolium_Acetate.yaml","1-ethyl-3-methylimidazolium acetate"],["mapped/13-Hexanediol.yaml","1,3-Hexanediol"],["mapped/14-B-D-Galactobiose.yaml","1,4-B-D-Galactobiose"],["mapped/16-Hexanediamine.yaml","1,6-Hexanediamine"],["mapped/2-6-dihydroxybenzoic_Acid.yaml","2,6-dihydroxybenzoic acid"],["mapped/2-Deoxy-D-ribonic_Acid_Lithium_Salt.yaml","2-Deoxy-D-ribonic acid lithium salt"],["mapped/2-Deoxyadenosine_Monohydrate.yaml","2-Deoxyadenosine monohydrate"],["mapped/2-Hydroxybutyric_Acid_Sodium_Salt.yaml","2-Hydroxybutyric acid sodium salt"],["mapped/2-Keto-D-gluconic_Acid_Hemicalcium_Salt_Hydrate.yaml","2-Keto-D-gluconic acid hemicalcium salt hydrate"],["mapped/2-Keto-D-gluconic_Acid_Hemicalcium_Salt_Monohydrate.yaml","2-Keto-D-gluconic acid hemicalcium salt monohydrate"],["mapped/2-chloro-4ethylamino-6-isopropylamino-135-triazine.yaml","2-chloro-4ethylamino-6-isopropylamino-1,3,5-triazine"],["mapped/2-oxobutyric_Acid_Sodium_Salt.yaml","2-oxobutyric acid sodium salt"],["mapped/22-dibromo-2-cyanoacetamide.yaml","2,2-dibromo-2-cyanoacetamide"],["mapped/25-Dihydroxy-4-Methoxychalcone.yaml","2',5'-Dihydroxy-4-Methoxychalcone"],["mapped/3-O-Methyl-D-glucopyranose.yaml","3-O-Methyl-D-glucopyranose"],["mapped/3-Pyridinesulfonic_Acid.yaml","3-Pyridinesulfonic acid"],["mapped/3-fucosyllactose.yaml","3'-fucosyllactose"],["mapped/3-sialyllactose_Sodium_Salt.yaml","3'-sialyllactose sodium salt"],["mapped/34-Dihydroxyflavone.yaml","3,4'-Dihydroxyflavone"],["mapped/36-Dihydroxyflavone.yaml","3',6-Dihydroxyflavone"],["mapped/4-Hydroxymandelic_Acid_Monohydrate.yaml","4-Hydroxymandelic acid monohydrate"],["mapped/4-Methoxyflavone.yaml","4'-Methoxyflavone"],["mapped/4-Methyl-2-oxopentanoic_Acid_Sodium_Salt.yaml","4-Methyl-2-oxopentanoic acid sodium salt"],["mapped/5-Fluoroorotic_Acid_Hydrate.yaml","5-Fluoroorotic acid hydrate"],["mapped/5-Keto-D-Gluconic_Acid_Potassium_Salt.yaml","5-Keto-D-Gluconic Acid potassium salt"],["mapped/5-_2-thienyl-pentanoic_Acid.yaml","5-(2-thienyl)-pentanoic acid"],["mapped/574-Trimethoxyisoflavone.yaml","5,7,4'-Trimethoxyisoflavone"],["mapped/5z-4-bromo-5-_Bromomethylene-2_5h-furanone.yaml","(5z)-4-bromo-5-(bromomethylene)-2(5h)-furanone"],["mapped/6-O-sialyllactose_Sodium_Salt.yaml","6'-O-sialyllactose sodium salt"],["mapped/6-Pentyl-2H-pyran-2-one.yaml","6-Pentyl-2H-pyran-2-one"],["mapped/72-Dihydroxyflavone.yaml","7,2'-Dihydroxyflavone"],["mapped/A-Ketoglutaric_Acid_Disodium_Salt_Hydrate.yaml","a-Ketoglutaric acid disodium salt hydrate"],["mapped/AQDS.yaml","AQDS"],["mapped/Acriflavine.yaml","Acriflavine"],["mapped/Adenine_Hydrochloride_Hydrate.yaml","Adenine hydrochloride hydrate"],["mapped/Aesculetin.yaml","Aesculetin"],["mapped/Aluminum_Chloride_Hydrate.yaml","Aluminum chloride hydrate"],["mapped/Ammonium_Molybdate_Tetrahydrate.yaml","ammonium molybdate tetrahydrate"],["mapped/Ammonium_Sulfide_Solution.yaml","ammonium sulfide solution"],["mapped/Ammonium_Sulfite_Monohydrate.yaml","Ammonium sulfite monohydrate"],["mapped/Anabasine_Hydrochloride.yaml","Anabasine Hydrochloride"],["mapped/Andirobin.yaml","Andirobin"],["mapped/Anisodamine_Hydrobromide.yaml","Anisodamine Hydrobromide"],["mapped/Apigenin_Dimethyl_Ether.yaml","Apigenin Dimethyl Ether"],["mapped/Apramycin_Sulfate_Salt.yaml","Apramycin sulfate salt"],["mapped/Arabinan_From_Sugar_Beet.yaml","Arabinan from Sugar Beet"],["mapped/Arabinobiose.yaml","Arabinobiose"],["mapped/Arabinotriose.yaml","Arabinotriose"],["mapped/Artepaulin.yaml","Artepaulin"],["mapped/Atrazin.yaml","Atrazin"],["mapped/Avidin.yaml","Avidin"],["mapped/B-Mannan_Borohydrate_Reduced_Carob_Seed.yaml","b-Mannan borohydrate reduced carob seed"],["mapped/Bathocuproine_Disulfonic_Acid_Disodium_Salt.yaml","Bathocuproine disulfonic acid disodium salt"],["mapped/Benzylhydrazine_Hydrochloride.yaml","Benzylhydrazine Hydrochloride"],["mapped/Bergenin.yaml","Bergenin"],["mapped/Beta-Glycerophosphate_Disodium_Salt_Hydrate.yaml","Beta-Glycerophosphate disodium salt hydrate"],["mapped/Betaine_Hydrochloride.yaml","Betaine hydrochloride"],["mapped/Biochanin_A_Diacetate.yaml","Biochanin a diacetate"],["mapped/Bismuth_Iii_Chloride.yaml","bismuth(III) chloride"],["mapped/Bovine_Serum_Albumin.yaml","bovine serum albumin"],["mapped/Cadmium_Acetate_Dihydrate.yaml","Cadmium acetate dihydrate"],["mapped/Caffeine_Hydrobromide.yaml","Caffeine Hydrobromide"],["mapped/Carboxymethyl_Cellulose.yaml","Carboxymethyl cellulose"],["mapped/Carnitine_Dl_Hydrochloride.yaml","Carnitine (Dl) Hydrochloride"],["mapped/Carnitine_Hydrochloride.yaml","Carnitine Hydrochloride"],["mapped/Catalase.yaml","Catalase"],["mapped/Ceftazidime_Hydrate.yaml","Ceftazidime hydrate"],["mapped/Cetomacrogol_1000.yaml","Cetomacrogol 1000"],["mapped/Cholin_Acetate.yaml","Cholin acetate"],["mapped/Cholinium_Dihydrogen_Phosphate.yaml","Cholinium dihydrogen phosphate"],["mapped/Chondroitin_Sulfate_A_Sodium_Salt_From_Bovine_Trachea.yaml","Chondroitin sulfate A sodium salt from bovine trachea"],["mapped/Chrysanthemic_Acid_Ethyl_Ester.yaml","Chrysanthemic Acid, Ethyl Ester"],["mapped/Cimicifugoside_H1.yaml","Cimicifugoside H1"],["mapped/Corn_Steep_Liquor_Glucose_Fumarate.yaml","Corn Steep Liquor + Glucose + Fumarate"],["mapped/Cotarnine_Chloride.yaml","Cotarnine Chloride"],["mapped/CrKSO42_X_12_H2O.yaml","CrKSO42 x 12 H2O"],["mapped/Curdlan.yaml","Curdlan"],["mapped/D-Fructose_6-phosphate_Disodium_Salt_Hydrate.yaml","D-Fructose 6-phosphate disodium salt hydrate"],["mapped/D-Galacturonic_Acid_Monohydrate.yaml","D-Galacturonic Acid monohydrate"],["mapped/D-Glucosamine_Hydrochloride.yaml","D-Glucosamine Hydrochloride"],["mapped/D-Glucose-6-Phosphate_Sodium_Salt.yaml","D-Glucose-6-Phosphate sodium salt"],["mapped/D-Glucuronic_Acid_Sodium_Salt_Monohydrate.yaml","D-Glucuronic acid sodium salt monohydrate"],["mapped/D-Leucrose.yaml","D-Leucrose"],["mapped/D-Maltose_Monohydrate.yaml","D-Maltose monohydrate"],["mapped/D-Mannose_6-phosphate_Sodium_Salt.yaml","D-Mannose 6-phosphate sodium salt"],["mapped/D-Raffinose_Pentahydrate.yaml","D-Raffinose pentahydrate"],["mapped/D-Saccharic_Acid_Potassium_Salt.yaml","D-Saccharic acid potassium salt"],["mapped/D-_-melezitose_Hydrate.yaml","D-(+)-Melezitose hydrate"],["mapped/D-_-melezitose_Monohydrate.yaml","D-(+)-melezitose monohydrate"],["mapped/D-limonene.yaml","d-limonene"],["mapped/D-xylose_5-phosphate_Lithium_Salt.yaml","D-xylose 5-phosphate lithium salt"],["mapped/DAMPA.yaml","DAMPA"],["mapped/DEANONOate.yaml","DEANONOate"],["mapped/DL-2-Aminoadipic_Acid.yaml","DL-2-Aminoadipic acid"],["mapped/DL-2-Aminobutyric_Acid.yaml","DL-2-Aminobutyric acid"],["mapped/DL-3-Aminoisobutyric_Acid.yaml","DL-3-Aminoisobutyric acid"],["mapped/DL-3-Hydroxyisobutyric_Acid_Sodium_Salt.yaml","DL-3-Hydroxyisobutyric acid sodium salt"],["mapped/DL-Glyceraldehyde_3-phosphate.yaml","DL-Glyceraldehyde 3-phosphate"],["mapped/DL-Glycerol_1-phosphate_Sodium_Salt_Hydrate.yaml","DL-Glycerol 1-phosphate sodium salt hydrate"],["mapped/DL-Histidine_Monohydrochloride_Monohydrate.yaml","DL-Histidine monohydrochloride monohydrate"],["mapped/DL-glyceraldehyde.yaml","DL-glyceraldehyde"],["mapped/DNA_From_Salmon.yaml","DNA from Salmon"],["mapped/Deuterated_Glucose.yaml","deuterated glucose"],["mapped/Dimethylfraxetin.yaml","Dimethylfraxetin"],["mapped/Dimethylsulfoniopropionate_Hydrochloride.yaml","Dimethylsulfoniopropionate hydrochloride"],["mapped/Disodium_Glutarate.yaml","Disodium Glutarate"],["mapped/Duartin.yaml","Duartin (-)"],["mapped/EDTA_Tetrasodium_Tetrahydrate_Salt.yaml","EDTA tetrasodium tetrahydrate salt"],["mapped/Ethylenediamine-NN-disuccinic_Acid.yaml","Ethylenediamine-N,N'-disuccinic acid"],["mapped/Europium_Iii_Chloride.yaml","Europium(III) chloride"],["mapped/FSL.yaml","FSL"],["mapped/Fosmidomycin_Sodium_Salt_Hydrate.yaml","Fosmidomycin sodium salt hydrate"],["mapped/Fructooligosaccharides_Fos.yaml","Fructooligosaccharides (FOS)"],["mapped/Fructose-asparagine.yaml","Fructose-asparagine"],["mapped/Furaltadone_Hydrochloride.yaml","Furaltadone hydrochloride"],["mapped/Fusidic_Acid_Sodium_Salt.yaml","Fusidic acid sodium salt"],["mapped/G418_Disulfate_Salt_Solution.yaml","G418 disulfate salt solution"],["mapped/Galactomannan_From_Guar.yaml","Galactomannan from guar"],["mapped/Galactose_1-phosphate_Dipotassium_Salt_Pentahydrate.yaml","Galactose 1-phosphate dipotassium salt pentahydrate"],["mapped/Gallium_Iiichloride.yaml","Gallium(III)chloride"],["mapped/Gepotidacin.yaml","Gepotidacin"],["mapped/Glucomannan_Konjac.yaml","Glucomannan (konjac)"],["mapped/Glucuronamide.yaml","Glucuronamide"],["mapped/Gly-DL-Asp.yaml","Gly-DL-Asp"],["mapped/Gly-Gln_Monohydrate.yaml","Gly-Gln monohydrate"],["mapped/Glycerol_Phosphate_Disodium_Salt_Hydrate.yaml","Glycerol phosphate disodium salt hydrate"],["mapped/Glycogen_From_Bovine_Liver.yaml","Glycogen from bovine liver"],["mapped/Glycyrrhizic_Acid_Ammonium_Salt.yaml","Glycyrrhizic Acid, Ammonium Salt"],["mapped/Gold_Iii_Chloride_Hydrate.yaml","gold (III) chloride hydrate"],["mapped/Gramicidin.yaml","Gramicidin"],["mapped/Guanidine_Hydrochloride.yaml","Guanidine Hydrochloride"],["mapped/Gum_Arabic_From_Acacia_Tree.yaml","Gum arabic from acacia tree"],["mapped/HOMOPIPES.yaml","HOMOPIPES"],["mapped/Harmol_Hydrochloride.yaml","Harmol Hydrochloride"],["mapped/Hyaluronic_Acid_Sodium_Salt_From_Streptococcus_Equi.yaml","Hyaluronic acid sodium salt from Streptococcus equi"],["mapped/Hydroxystreptomycin.yaml","Hydroxystreptomycin"],["mapped/Hymecromone_Methyl_Ether.yaml","Hymecromone Methyl Ether"],["mapped/Indole-3-pyruvic_Acid.yaml","Indole-3-pyruvic acid"],["mapped/Indole_3-acetic_Acid_Sodium_Salt.yaml","indole 3-acetic acid sodium salt"],["mapped/Izalpinin.yaml","Izalpinin"],["mapped/KH2PO3.yaml","KH2PO3"],["mapped/Kcl.yaml","KCl"],["mapped/L-Asparagine_Monohydrate.yaml","L-Asparagine monohydrate"],["mapped/L-Aspartic_Acid_Potassium_Salt.yaml","L-Aspartic acid potassium salt"],["mapped/L-Aspartic_Acid_Sodium_Salt_Monohydrate.yaml","L-Aspartic acid sodium salt monohydrate"],["mapped/L-Cysteic_Acid_Monohydrate.yaml","L-Cysteic acid monohydrate"],["mapped/L-Glutamic_Acid_Monopotassium_Salt_Monohydrate.yaml","L-Glutamic acid monopotassium salt monohydrate"],["mapped/L-Histidine_Monohydrochloride_Monohydrate.yaml","L-Histidine monohydrochloride monohydrate"],["mapped/L-Malic_Acid_Disodium_Salt_Monohydrate.yaml","L-Malic acid disodium salt monohydrate"],["mapped/L-Meta-tyrosine.yaml","L-Meta-tyrosine"],["mapped/L-Rhamnose_Monohydrate.yaml","L-Rhamnose monohydrate"],["mapped/L-%CE%B1-phosphatidylinositol_From_Glycine_Max_Soybean.yaml","L-α-Phosphatidylinositol from Glycine max (soybean)"],["mapped/Lacto-N-fucopentaose_I.yaml","Lacto-N-fucopentaose I"],["mapped/Lacto-N-fucopentaose_III.yaml","Lacto-N-fucopentaose III"],["mapped/Lacto-N-tetraose.yaml","Lacto-N-tetraose"],["mapped/Lanthanum_Iii_Chloride.yaml","Lanthanum (III) chloride"],["mapped/Lignin_Alkali.yaml","Lignin alkali"],["mapped/Lithium_Chloride_Hydrate.yaml","Lithium chloride hydrate"],["mapped/Locust_Bean_Gum.yaml","Locust bean gum"],["mapped/Lysozyme.yaml","Lysozyme"],["mapped/MES_Hydrat.yaml","MES Hydrat"],["mapped/MME_Trace_Minerals.yaml","MME Trace Minerals"],["mapped/Magnesium_Nitrate_Hexahydrate.yaml","magnesium nitrate hexahydrate"],["mapped/Malondialdehyde_Tetrabutylammonium_Salt.yaml","Malondialdehyde tetrabutylammonium salt"],["mapped/Maltotriose_Hydrate.yaml","Maltotriose hydrate"],["mapped/Mannan_From_Saccharomyces_Cerevisiae.yaml","Mannan from Saccharomyces cerevisiae"],["mapped/Mc_trace_minerals.yaml","Mc_trace_minerals"],["mapped/Mc_trace_minerals_SO4free.yaml","Mc_trace_minerals_SO4free"],["mapped/Menthol.yaml","Menthol"],["mapped/Methyl-2-Hydroxy-Phenylproprionate.yaml","Methyl-2-Hydroxy-Phenylproprionate"],["mapped/Methyl-alpha-D-xylopyranoside.yaml","methyl-alpha-D-xylopyranoside"],["mapped/Methyl-beta-D-xylopyranoside.yaml","methyl-beta-D-xylopyranoside"],["mapped/Methyl-beta-L-arabinopyranoside.yaml","methyl-beta-L-arabinopyranoside"],["mapped/Methyl-trans-p-coumarate.yaml","methyl-trans-p-coumarate"],["mapped/Methyl_Ferulate.yaml","methyl ferulate"],["mapped/Methylxanthoxylin.yaml","Methylxanthoxylin"],["mapped/Mexicanolide.yaml","Mexicanolide"],["mapped/MreB_Perturbing_Compound_A22.yaml","MreB Perturbing Compound A22"],["mapped/Mucin_Bovine_Submaxillary_Gland_Type_I-S.yaml","Mucin, Bovine Submaxillary Gland, type I-S"],["mapped/Mucin_From_Porcine_StomachType_II.yaml","Mucin from porcine stomach,Type II"],["mapped/Mucin_From_Porcine_Stomach_Type_III.yaml","Mucin from porcine stomach type III"],["mapped/N-_3-oxohexanoyl-dl-homoserine_Lactone.yaml","N-(3-oxohexanoyl)-DL-homoserine lactone"],["mapped/N-lauroylsarcosine_Sodium_Salt.yaml","N-lauroylsarcosine sodium salt"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Na2-citrate.yaml","Na2-citrate"],["mapped/Na2glycerophosphate5h2o.yaml","Na2glycerophosphate•5H2O"],["mapped/Nah2po4h2o.yaml","NaH2PO4•H2O"],["mapped/Nalidixic_Acid_Sodium_Salt.yaml","Nalidixic acid sodium salt"],["mapped/Nigericin_Sodium_Salt.yaml","Nigericin sodium salt"],["mapped/Nitrilotriacetic_Acid_Disodium_Salt.yaml","Nitrilotriacetic acid disodium salt"],["mapped/P-lacto-N-neo-hexaose.yaml","p-lacto-N-neo-hexaose"],["mapped/PIPES_Sesquisodium_Salt.yaml","PIPES sesquisodium salt"],["mapped/Palatinose_Hydrate.yaml","palatinose hydrate"],["mapped/Palmatine_Chloride.yaml","Palmatine chloride"],["mapped/Parachlorophenylalanine.yaml","Parachlorophenylalanine"],["mapped/Pediocin.yaml","Pediocin"],["mapped/Pentasodium_Tripolyphosphate_Hexahydrate.yaml","Pentasodium tripolyphosphate hexahydrate"],["mapped/Peucenin.yaml","Peucenin"],["mapped/Phenazine_Ethosulfate.yaml","Phenazine ethosulfate"],["mapped/Phosphomycin_Disodium_Salt.yaml","Phosphomycin disodium salt"],["mapped/Piperic_Acid.yaml","Piperic acid"],["mapped/Platinum_Iv_Chloride.yaml","platinum (IV) chloride"],["mapped/Poly_3-hydroxybutyric_Acid.yaml","Poly(3-hydroxybutyric acid)"],["mapped/Polygalacturonic_Acid_Sodium_Salt.yaml","Polygalacturonic acid sodium salt"],["mapped/Potassium_4-aminobenzoate.yaml","Potassium 4-aminobenzoate"],["mapped/Potassium_Aluminum_Chloride.yaml","Potassium aluminum chloride"],["mapped/Potassium_Citramalate_Monohydrate.yaml","potassium citramalate monohydrate"],["mapped/Potassium_Hexahydroxoantimonate.yaml","potassium hexahydroxoantimonate"],["mapped/Potassium_Oxalate_Monohydrate.yaml","Potassium oxalate monohydrate"],["mapped/Potassium_Phosphate_Dibasic_Trihydrate.yaml","Potassium phosphate dibasic trihydrate"],["mapped/Potassium_Polysulfide.yaml","potassium (poly)sulfide"],["mapped/Potassium_Tellurate_Hydrate.yaml","potassium tellurate hydrate"],["mapped/Potassium_Tellurite_Hydrate.yaml","Potassium tellurite hydrate"],["mapped/Prenyletin.yaml","Prenyletin"],["mapped/Pretomanid.yaml","Pretomanid"],["mapped/Pustulan_B-1-6_Glucan.yaml","Pustulan (b-1-6 glucan)"],["mapped/Putrescine_Dihydrochloride.yaml","Putrescine Dihydrochloride"],["mapped/Quinine_Hdrochloride.yaml","Quinine Hdrochloride"],["mapped/Rac-3-Hydroxypentanoic_Acid.yaml","rac-3-Hydroxypentanoic Acid"],["mapped/Rhamnogalacturonan_From_Soy_Bean_Pectic_Fibre.yaml","Rhamnogalacturonan from soy bean pectic fibre"],["mapped/Rhamnogalacturonan_I_From_Potato_Pectic_Fiber.yaml","Rhamnogalacturonan I from potato pectic fiber"],["mapped/Rhodinyl_Acetate.yaml","Rhodinyl Acetate"],["mapped/Robustic_Acid.yaml","Robustic Acid"],["mapped/Rutilantinone.yaml","Rutilantinone"],["mapped/S-adenosyl_Homocysteine.yaml","S-adenosyl Homocysteine"],["mapped/Sclareolide.yaml","Sclareolide"],["mapped/Sialyllacto-N-tetraose_D.yaml","Sialyllacto-N-tetraose d"],["mapped/Silver_Sulfate.yaml","silver sulfate"],["mapped/Simvastatin_Hydroxy_Acid_Ammonium_Salt.yaml","Simvastatin Hydroxy Acid Ammonium Salt"],["mapped/Sisomicin_Sulfate_Salt.yaml","Sisomicin sulfate salt"],["mapped/Sn-Glycerol_3-phosphate_Lithium_Salt.yaml","sn-Glycerol 3-phosphate lithium salt"],["mapped/Sn-glycerol_3-phosphate_Bis_Cyclohexylammonium_Salt.yaml","sn-Glycerol 3-phosphate bis(cyclohexylammonium) salt"],["mapped/Sodium_2-bromoethanesulfonate.yaml","Sodium 2-bromoethanesulfonate"],["mapped/Sodium_Adipate.yaml","Sodium adipate"],["mapped/Sodium_Antimonate.yaml","Sodium antimonate"],["mapped/Sodium_Carbonate_Monohydrate.yaml","sodium carbonate monohydrate"],["mapped/Sodium_Cholate_Hydrate.yaml","Sodium cholate hydrate"],["mapped/Sodium_D-Lactate.yaml","Sodium D-Lactate"],["mapped/Sodium_Deoxycholate_Monohydrate.yaml","Sodium deoxycholate monohydrate"],["mapped/Sodium_Ethyl_Sulfate.yaml","Sodium ethyl sulfate"],["mapped/Sodium_Hypophosphite_Monohydrate.yaml","Sodium hypophosphite monohydrate"],["mapped/Sodium_Isethionate.yaml","sodium isethionate"],["mapped/Sodium_Methanesulfonate.yaml","Sodium methanesulfonate"],["mapped/Sodium_Perchlorate_Monohydrate.yaml","Sodium perchlorate monohydrate"],["mapped/Sodium_Persulfate.yaml","Sodium Persulfate"],["mapped/Sodium_Phosphite_Dibasic_Pentahydrate.yaml","Sodium phosphite dibasic pentahydrate"],["mapped/Sodium_Pyrophosphate_Dibasic.yaml","Sodium pyrophosphate dibasic"],["mapped/Sodium_Succinate_Dibasic.yaml","Sodium succinate dibasic"],["mapped/Sodium_Thiophosphate_Tribasic_Hydrate.yaml","Sodium thiophosphate tribasic hydrate"],["mapped/Sodium_phosphate_monobasic_monohydrate.yaml","Sodium phosphate monobasic monohydrate"],["mapped/Soya_Peptone.yaml","Soya peptone"],["mapped/Sparassol.yaml","Sparassol"],["mapped/Spiramycin.yaml","Spiramycin"],["mapped/Stachyose_Hydrate.yaml","Stachyose hydrate"],["mapped/Sucrose-6-monophosphate_Dipotassium_Salt.yaml","Sucrose-6-monophosphate dipotassium salt"],["mapped/Sulfamethazine_Sodium_Salt.yaml","Sulfamethazine sodium salt"],["mapped/Sulfaquinoxaline.yaml","Sulfaquinoxaline"],["mapped/Sulfaquinoxaline_Sodium_Salt.yaml","Sulfaquinoxaline sodium salt"],["mapped/Sulfur-free_DL_Minerals.yaml","Sulfur-free DL minerals"],["mapped/Sunflower_Oil.yaml","Sunflower oil"],["mapped/Sutezolid.yaml","Sutezolid"],["mapped/Synephrine_Tartrate.yaml","Synephrine Tartrate"],["mapped/TAPS_Sodium_Salt.yaml","TAPS sodium salt"],["mapped/Tapso.yaml","TAPSO"],["mapped/Tara_Gum.yaml","Tara gum"],["mapped/Terpene_Hydrate.yaml","Terpene hydrate"],["mapped/Tetrakis_Hydroxymethylphosphonium_Sulfate.yaml","Tetrakis(hydroxymethyl)phosphonium sulfate"],["mapped/Theaflavin_Digallate.yaml","Theaflavin Digallate"],["mapped/Timentin.yaml","Timentin"],["mapped/TitaniumIII_Chloride.yaml","TitaniumIII chloride"],["mapped/Tobramycin_Sulfate_Salt.yaml","Tobramycin sulfate salt"],["mapped/Tomatidine_Hydrochloride.yaml","Tomatidine Hydrochloride"],["mapped/Tricine.yaml","Tricine"],["mapped/UW_Concentrated_Base.yaml","UW concentrated base"],["mapped/UW_Concentrated_Base_No_Sulfur.yaml","UW concentrated base no sulfur"],["mapped/Uranyl_Acetate.yaml","Uranyl acetate"],["mapped/Uranyl_Acetate_Dihydrate.yaml","Uranyl Acetate Dihydrate"],["mapped/Uridine_5-monophosphate_Disodium_Salt.yaml","Uridine 5-monophosphate disodium salt"],["mapped/Ursololactone_Acetate.yaml","Ursololactone Acetate"],["mapped/Vanadium_Chloride.yaml","vanadium chloride"],["mapped/Vancomycin_Hydrochloride_Hydrate.yaml","Vancomycin Hydrochloride Hydrate"],["mapped/Veratrine_Hydrochloride.yaml","Veratrine hydrochloride"],["mapped/Xanthan_From_Xanthomonas_Campestris.yaml","Xanthan from Xanthomonas campestris"],["mapped/Xyloglucan_From_Tamarind.yaml","Xyloglucan from tamarind"],["mapped/Zymosan.yaml","Zymosan"],["mapped/%CE%911-Acid_Glycoprotein_From_Bovine_Plasma.yaml","α1-Acid Glycoprotein from bovine plasma"]]} \ No newline at end of file diff --git a/assets/fleet/cells/MediaIngredientMech--CHEBI.json b/assets/fleet/cells/MediaIngredientMech--CHEBI.json index a2eaad2..3962c77 100644 --- a/assets/fleet/cells/MediaIngredientMech--CHEBI.json +++ b/assets/fleet/cells/MediaIngredientMech--CHEBI.json @@ -1 +1 @@ -{"mech":"MediaIngredientMech","prefix":"CHEBI","base":"https://github.com/CultureBotAI/MediaIngredientMech/blob/main/data/ingredients/","total":2226,"records":[["mapped/%28-%29-anisomycin.yaml","(-)-anisomycin"],["mapped/%28-%29-quinic_Acid.yaml","(-)-quinic Acid"],["mapped/%282%29-D-lyxose.yaml","D-lyxose"],["mapped/%28R%29-amygdalin.yaml","(R)-amygdalin"],["mapped/%28R%29-lactate.yaml","(R)-lactate"],["mapped/%28R%29-malic_Acid.yaml","(R)-malic Acid"],["mapped/%28S%29-azetidine-2-carboxylic_Acid.yaml","(S)-azetidine-2-carboxylic Acid"],["mapped/%28S%29-mandelic_Acid.yaml","(S)-mandelic Acid"],["mapped/02_Thiamine_Pyrophosphate.yaml","0.2% Thiamine pyrophosphate"],["mapped/05_M_Nitrilotriacetic_Acid_Disodium_Salt.yaml","0.5 M Nitrilotriacetic acid, disodium salt"],["mapped/1-Kestose.yaml","1-Kestose"],["mapped/1-Pentanol.yaml","1-Pentanol"],["mapped/1-aminocyclopropane-1-carboxylate.yaml","1-aminocyclopropane-1-carboxylate"],["mapped/1-butanolCO2.yaml","1-butanol+CO2"],["mapped/1-chlorobutane.yaml","1-chlorobutane"],["mapped/1-chloropropane.yaml","1-chloropropane"],["mapped/1-ethyl-3-methylimidazolium_Acetate.yaml","1-ethyl-3-methylimidazolium acetate"],["mapped/1-ethyl-3-methylimidazolium_Chloride.yaml","1-ethyl-3-methylimidazolium chloride"],["mapped/1-ethyl-3-methylimidazolium_Lysine.yaml","1-ethyl-3-methylimidazolium lysine"],["mapped/1-methylphenanthrene.yaml","1-methylphenanthrene"],["mapped/1-naphtylacetic_Acid.yaml","1-Naphthylacetic acid"],["mapped/1-o-methyl_Alpha-galactopyranoside.yaml","1-o-methyl Alpha-galactopyranoside"],["mapped/1-octen-3-ol.yaml","1-octen-3-ol"],["mapped/1-phenazinecarboxamide.yaml","1-phenazinecarboxamide"],["mapped/1-propanolCO2.yaml","1-propanol+CO2"],["mapped/11-Biphenyl-2-ol.yaml","[1,1′-Biphenyl]-2-ol"],["mapped/112-trichloroethane.yaml","1,1,2-Trichloroethane"],["mapped/1122-Tetrachloroethane.yaml","1,1,2,2-Tetrachloroethane"],["mapped/12-Propanediol.yaml","1,2-Propanediol"],["mapped/12-dichloropropane.yaml","1,2-Dichloropropane"],["mapped/13-Butandiol.yaml","1,3-Butanediol"],["mapped/13-Propanediol.yaml","1,3-Propanediol"],["mapped/14-B-D-Galactobiose.yaml","1,4-B-D-Galactobiose"],["mapped/14-Butanediol.yaml","1,4-Butanediol"],["mapped/14-naphthoquinone.yaml","1,4-Naphthoquinone"],["mapped/15-Pentanediol.yaml","1,5-Pentanediol"],["mapped/18-Crown-6.yaml","18-Crown-6"],["mapped/2-Acetylpyrrole.yaml","2-Acetylpyrrole"],["mapped/2-Aminoethylphosphonate.yaml","2-Aminoethylphosphonate"],["mapped/2-Azetidinone.yaml","2-Azetidinone"],["mapped/2-Chlorobenzoic_acid.yaml","2-Chlorobenzoic acid"],["mapped/2-Deoxy-D-Ribose.yaml","2-Deoxy-D-Ribose"],["mapped/2-Deoxy-D-glucose.yaml","2-Deoxy-D-glucose"],["mapped/2-Deoxy-D-ribonic_Acid_Lithium_Salt.yaml","2-Deoxy-D-ribonic acid lithium salt"],["mapped/2-Deoxyadenosine_5-monophosphate.yaml","2-Deoxyadenosine 5-monophosphate"],["mapped/2-Deoxyadenosine_Monohydrate.yaml","2-Deoxyadenosine monohydrate"],["mapped/2-Deoxycytidine.yaml","2'-Deoxycytidine"],["mapped/2-Deoxycytidine_5-monophosphate.yaml","2-Deoxycytidine 5-monophosphate"],["mapped/2-Ethylhexanol.yaml","2-Ethylhexanol"],["mapped/2-Furfuraldehyde.yaml","2-Furfuraldehyde"],["mapped/2-Hydroxy-34-Dimethoxybenzoic_Acid.yaml","2-Hydroxy-3,4-Dimethoxybenzoic Acid"],["mapped/2-Hydroxybutyric_Acid_Sodium_Salt.yaml","2-Hydroxybutyric acid sodium salt"],["mapped/2-Hydroxypyridine.yaml","2-Hydroxypyridine"],["mapped/2-Keto-D-gluconic_Acid_Hemicalcium_Salt_Hydrate.yaml","2-Keto-D-gluconic acid hemicalcium salt hydrate"],["mapped/2-Keto-D-gluconic_Acid_Hemicalcium_Salt_Monohydrate.yaml","2-Keto-D-gluconic acid hemicalcium salt monohydrate"],["mapped/2-Mercaptopyridine_N-oxide_Sodium_Salt.yaml","2-Mercaptopyridine N-oxide sodium salt"],["mapped/2-Nitrophenol.yaml","2-Nitrophenol"],["mapped/2-Piperidinone.yaml","2-Piperidinone"],["mapped/2-_Methylthioethanol.yaml","2-(Methylthio)ethanol"],["mapped/2-aminobenzoate.yaml","2-aminobenzoate"],["mapped/2-aminopentanoic_Acid.yaml","2-aminopentanoic Acid"],["mapped/2-bromo-2-nitro-13-propanediol.yaml","2-bromo-2-nitro-1,3-propanediol"],["mapped/2-butanolCO2.yaml","2-butanol+CO2"],["mapped/2-chloro-4ethylamino-6-isopropylamino-135-triazine.yaml","2-chloro-4ethylamino-6-isopropylamino-1,3,5-triazine"],["mapped/2-dehydro-D-gluconate.yaml","2-dehydro-D-gluconate"],["mapped/2-deoxyadenosine.yaml","2-deoxyadenosine"],["mapped/2-deoxyinosine.yaml","2'-Deoxyinosine"],["mapped/2-deoxyuridine.yaml","2'-Deoxyuridine"],["mapped/2-dichloroethane.yaml","1,2-dichloroethane"],["mapped/2-dimethylsuccinic_Acid.yaml","2-dimethylsuccinic Acid"],["mapped/2-fucosyllactose.yaml","2'-fucosyllactose"],["mapped/2-furoic_Acid.yaml","2-Furoic acid"],["mapped/2-hydroxybutyrate.yaml","2-hydroxybutyrate"],["mapped/2-mercaptoethanesulfonate.yaml","2-Mercaptoethanesulfonate"],["mapped/2-mercaptoethanol.yaml","2-Mercaptoethanol"],["mapped/2-methyl-1-butanol.yaml","2-methyl-1-butanol"],["mapped/2-methyl-4-isothizaolin-3-one.yaml","2-methyl-4-isothizaolin-3-one"],["mapped/2-n-Heptyl-4-hydroxyquinoline_N-oxide.yaml","2-n-Heptyl-4-hydroxyquinoline N-oxide"],["mapped/2-naphthyl_Dihydrogen_Phosphate.yaml","2-naphthyl Dihydrogen Phosphate"],["mapped/2-naphthyl_Tetradecanoate.yaml","2-naphthyl Tetradecanoate"],["mapped/2-oxobutanoate.yaml","2-oxobutanoate"],["mapped/2-oxobutyric_Acid_Sodium_Salt.yaml","2-oxobutyric acid sodium salt"],["mapped/2-oxopentanoate.yaml","2-oxopentanoate"],["mapped/2-pentyl-furan.yaml","2-pentyl-furan"],["mapped/2-propanolCO2.yaml","2-propanol+CO2"],["mapped/2-undecanol.yaml","2-undecanol"],["mapped/22-Dipyridyl.yaml","2,2'-Dipyridyl"],["mapped/2244688-heptamethylnonane.yaml","2,2,4,4,6,8,8-Heptamethylnonane"],["mapped/23-butanediol.yaml","2,3-butanediol"],["mapped/23-dihydroxybenzoic_Acid.yaml","2,3-dihydroxybenzoic acid"],["mapped/235-Triphenyltetrazolium_Chloride.yaml","2,3,5-Triphenyltetrazolium chloride"],["mapped/24-Dichlorophenoxyacetic_acid.yaml","2,4-Dichlorophenoxyacetic acid"],["mapped/24-Dihydroxybenzoic_acid.yaml","2,4-Dihydroxybenzoic acid"],["mapped/24-Dinitrophenol.yaml","2,4-Dinitrophenol"],["mapped/24-diamino-67-di-iso-propylpteridine_phosphate.yaml","2,4-diamino-6,7-di-iso-propylpteridine phosphate"],["mapped/3-Aminophenol.yaml","3-Aminophenol"],["mapped/3-Aminopropionitrile_Fumarate.yaml","3-Aminopropionitrile Fumarate"],["mapped/3-Chloro-4-hydroxyphenylacetic_acid.yaml","3-Chloro-4-hydroxyphenylacetic acid"],["mapped/3-Chloro-L-tyrosine.yaml","3-Chloro-L-tyrosine"],["mapped/3-Chloroacrylic_acid.yaml","3-Chloroacrylic acid"],["mapped/3-Hydroxydecanoic_Acid.yaml","3-Hydroxydecanoic acid"],["mapped/3-Hydroxyhexanoic_Acid.yaml","3-Hydroxyhexanoic acid"],["mapped/3-Hydroxypropanal.yaml","3-Hydroxypropanal"],["mapped/3-Hydroxypropionate.yaml","3-Hydroxypropionate"],["mapped/3-Methyl-2-Oxobutanoic_Acid.yaml","3-Methyl-2-Oxobutanoic Acid"],["mapped/3-Methyl-2-oxobutanoic_Acid_Sodium_Salt.yaml","3-Methyl-2-oxobutanoic acid sodium salt"],["mapped/3-Methylcatechol.yaml","3-Methylcatechol"],["mapped/3-Methylglutaric_Acid.yaml","3-Methylglutaric acid"],["mapped/3-O-methyl-glucose.yaml","3-O-methyl-glucose"],["mapped/3-O-methylgallate.yaml","3-O-methylgallate"],["mapped/3-_N-morpholinopropanesulfonic_Acid.yaml","3-(N-morpholino)propanesulfonic acid"],["mapped/3-acetylpyridine.yaml","3-acetylpyridine"],["mapped/3-aminobenzoate.yaml","3-aminobenzoate"],["mapped/3-aminobutyrate.yaml","3-aminobutyrate"],["mapped/3-aminobutyric_Acid.yaml","3-aminobutyric acid"],["mapped/3-beta-d-glucan.yaml","3-beta-D-glucan"],["mapped/3-dehydro-D-gluconate.yaml","3-dehydro-D-gluconate"],["mapped/3-fucosyllactose.yaml","3'-fucosyllactose"],["mapped/3-hydroxybenzoate.yaml","3-hydroxybenzoate"],["mapped/3-hydroxybenzoic_Acid.yaml","3-Hydroxybenzoic acid"],["mapped/3-hydroxybutyrate.yaml","3-hydroxybutyrate"],["mapped/3-hydroxybutyric_Acid.yaml","3-hydroxybutyric acid"],["mapped/3-indolyl_Acetic_Acid.yaml","3-Indolyl acetic acid"],["mapped/3-methyl-1-butanol.yaml","3-methyl-1-butanol"],["mapped/3-methyl-2-butenol.yaml","3-methyl-2-butenol"],["mapped/3-methyl-2-oxopentanoic_Acid.yaml","3-methyl-2-oxopentanoic acid"],["mapped/3-methyl-3-butenol.yaml","3-methyl-3-butenol"],["mapped/3-nitropropanoate.yaml","3-nitropropanoate"],["mapped/3-octanone.yaml","3-octanone"],["mapped/3-phenylpropionate.yaml","3-phenylpropionate"],["mapped/3-sialyllactose_Sodium_Salt.yaml","3'-sialyllactose sodium salt"],["mapped/3-trehalosamine.yaml","3-trehalosamine"],["mapped/3-trichloropropane.yaml","1,2,3-trichloropropane"],["mapped/34-Dihydroxyphenylacetate.yaml","3,4-Dihydroxyphenylacetate"],["mapped/34-Dimethoxyflavone.yaml","3,4'-Dimethoxyflavone"],["mapped/345-Trimethoxycinnamic_acid.yaml","3,4,5-Trimethoxycinnamic acid"],["mapped/35-Dihydroxybenzoic_acid.yaml","3,5-Dihydroxybenzoic acid"],["mapped/35-Dinitrosalicylic_Acid.yaml","3,5-Dinitrosalicylic acid"],["mapped/36-Dihydroxyflavone.yaml","3',6-Dihydroxyflavone"],["mapped/4-Acetoxy-3-methoxycinnamic_Acid.yaml","4-Acetoxy-3-methoxycinnamic acid"],["mapped/4-Amino-5-hydroxymethyl-2-methylpyrimidine.yaml","4-Amino-5-hydroxymethyl-2-methylpyrimidine"],["mapped/4-Anisaldehyde.yaml","4-Anisaldehyde"],["mapped/4-Cresol.yaml","4-Cresol"],["mapped/4-Deoxypyridoxine.yaml","4-Deoxypyridoxine"],["mapped/4-Hydroxyacetophenone.yaml","4-Hydroxyacetophenone"],["mapped/4-Hydroxybenzaldehyde.yaml","4-Hydroxybenzaldehyde"],["mapped/4-Hydroxymandelic_Acid_Monohydrate.yaml","4-Hydroxymandelic acid monohydrate"],["mapped/4-Hydroxynonanoic_Acid.yaml","4-Hydroxynonanoic acid"],["mapped/4-Hydroxynonenal.yaml","4-Hydroxynonenal"],["mapped/4-Hydroxyphenylpropionic_Acid.yaml","4-Hydroxyphenylpropionic acid"],["mapped/4-Methoxyflavone.yaml","4'-Methoxyflavone"],["mapped/4-Methyl-2-oxopentanoic_Acid_Sodium_Salt.yaml","4-Methyl-2-oxopentanoic acid sodium salt"],["mapped/4-Methyl-2-oxovaleric_Acid.yaml","4-Methyl-2-oxovaleric acid"],["mapped/4-Methylimidazole.yaml","4-Methylimidazole"],["mapped/4-Pyridoxic_Acid.yaml","4-Pyridoxic acid"],["mapped/4-acetoxyphenol.yaml","4-acetoxyphenol"],["mapped/4-aminobenzoate.yaml","4-Aminobenzoate"],["mapped/4-aminobutyrate.yaml","4-aminobutyrate"],["mapped/4-azido-L-phenylalanine.yaml","4-azido-L-phenylalanine"],["mapped/4-benzoyl-L-phenylalanine.yaml","4-benzoyl-L-phenylalanine"],["mapped/4-coumarate.yaml","4-coumarate"],["mapped/4-dihydroxy-biphenyl.yaml","4,4'-dihydroxybiphenyl"],["mapped/4-guanidinobutyric_Acid.yaml","4-Guanidinobutyric acid"],["mapped/4-hydroxy-L-proline.yaml","4-hydroxy-L-proline"],["mapped/4-hydroxybenzoic_Acid.yaml","4-Hydroxybenzoic acid"],["mapped/4-hydroxybutyrate.yaml","4-hydroxybutyrate"],["mapped/4-hydroxybutyric_Acid.yaml","4-hydroxybutyric acid"],["mapped/4-hydroxychalcone.yaml","4-hydroxychalcone"],["mapped/4-hydroxyphenyl_Acetic_Acid.yaml","4-Hydroxyphenyl acetic acid"],["mapped/4-methylumbelliferone_Beta-d-glucuronide.yaml","4-methylumbelliferone Beta-D-glucuronide"],["mapped/4-nitrophenyl_6-O-phosphono-beta-D-galactoside.yaml","4-nitrophenyl 6-O-phosphono-beta-D-galactoside"],["mapped/4-nitrophenyl_Alpha-D-galactoside.yaml","4-nitrophenyl Alpha-D-galactoside"],["mapped/4-nitrophenyl_Alpha-D-glucopyranoside.yaml","4-nitrophenyl Alpha-D-glucopyranoside"],["mapped/4-nitrophenyl_Beta-D-galactopyranoside.yaml","4-nitrophenyl beta-D-galactopyranoside"],["mapped/4-nitrophenyl_Beta-D-glucopyranoside.yaml","4-nitrophenyl Beta-D-glucopyranoside"],["mapped/4-nitrophenyl_Beta-D-glucuronide.yaml","4-nitrophenyl Beta-D-glucuronide"],["mapped/4-nitrophenyl_Beta-D-xylopyranoside.yaml","4-nitrophenyl Beta-D-xylopyranoside"],["mapped/4-nitrophenyl_N-acetyl-beta-D-glucosaminide.yaml","4-nitrophenyl N-acetyl-beta-D-glucosaminide"],["mapped/4-nitrophenyl_Phosphate.yaml","4-nitrophenyl Phosphate"],["mapped/4-oxopentanoate.yaml","4-oxopentanoate"],["mapped/4-vinylphenol.yaml","4-vinylphenol"],["mapped/4_Carbon_Mix.yaml","4 Carbon Mix"],["mapped/4h-pyran-4-one.yaml","4h-pyran-4-one"],["mapped/5-Aminolevulinic_Acid.yaml","5-Aminolevulinic acid"],["mapped/5-Azacytidine.yaml","5-Azacytidine"],["mapped/5-Deoxy-5-fluorocytidine.yaml","5'-Deoxy-5-fluorocytidine"],["mapped/5-Fluorodihydropyrimidine-24-dione.yaml","5-Fluorodihydropyrimidine-2,4-dione"],["mapped/5-Fluoroorotic_Acid_Hydrate.yaml","5-Fluoroorotic acid hydrate"],["mapped/5-Hydroxydodecanoate.yaml","5-Hydroxydodecanoate"],["mapped/5-Hydroxymethylfurfural.yaml","5-Hydroxymethylfurfural"],["mapped/5-Hydroxyoctanoate.yaml","5-Hydroxyoctanoate"],["mapped/5-Keto-D-Gluconic_Acid_Potassium_Salt.yaml","5-Keto-D-Gluconic Acid potassium salt"],["mapped/5-aminovaleric_Acid.yaml","5-Aminovaleric acid"],["mapped/5-dehydro-D-gluconate.yaml","5-dehydro-D-gluconate"],["mapped/5-deoxy-5-_Methylthioadenosine.yaml","5'-Deoxy-5'-(methylthio)adenosine"],["mapped/5-didehydro-D-gluconic_Acid.yaml","2,5-didehydro-D-gluconic acid"],["mapped/5-fluorouracil.yaml","5-fluorouracil"],["mapped/5-methyluridine.yaml","5-methyluridine"],["mapped/5-oxoproline.yaml","5-oxoproline"],["mapped/5-trimethoxybenzoate.yaml","3,4,5-trimethoxybenzoate"],["mapped/6-Hydroxyflavone.yaml","6-Hydroxyflavone"],["mapped/6-O-Acetyl-D-glucose.yaml","6-O-Acetyl-D-glucose"],["mapped/6-O-sialyllactose_Sodium_Salt.yaml","6'-O-sialyllactose sodium salt"],["mapped/6-Pentyl-2H-pyran-2-one.yaml","6-Pentyl-2H-pyran-2-one"],["mapped/6-deoxy-d-galactose.yaml","6-deoxy-D-galactose"],["mapped/6-hydroxypyridine-3-carboxylic_Acid.yaml","6-hydroxypyridine-3-carboxylic acid"],["mapped/6-methoxy-2_3h-benzoxazolone.yaml","6-methoxy-2(3H)-benzoxazolone"],["mapped/7-hydroxyflavone.yaml","7-hydroxyflavone"],["mapped/72-Dihydroxyflavone.yaml","7,2'-Dihydroxyflavone"],["mapped/8-azaguanine.yaml","8-azaguanine"],["mapped/8-hydroxy-nitroquinoline.yaml","8-hydroxy-nitroquinoline"],["mapped/84_GL_NaHCO3_Solution.yaml","84 g/L NaHCO3 solution"],["mapped/A-Cyclodextrin.yaml","a-Cyclodextrin"],["mapped/A-Ketoglutaric_Acid_Disodium_Salt_Hydrate.yaml","a-Ketoglutaric acid disodium salt hydrate"],["mapped/AQDS.yaml","AQDS"],["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/Abietic_Acid.yaml","Abietic Acid"],["mapped/Abikoviromycin.yaml","Abikoviromycin"],["mapped/Abscisic_Acid.yaml","Abscisic acid"],["mapped/Aburamycin_A.yaml","Aburamycin A"],["mapped/Abyssomicin_B.yaml","Abyssomicin B"],["mapped/Abyssomicin_D.yaml","Abyssomicin D"],["mapped/Abyssomicin_G.yaml","Abyssomicin G"],["mapped/Abyssomicin_H.yaml","Abyssomicin H"],["mapped/Acacetin.yaml","Acacetin"],["mapped/Aces.yaml","ACES"],["mapped/Acetaldehyde.yaml","acetaldehyde"],["mapped/Acetamide.yaml","Acetamide"],["mapped/Acetate.yaml","Acetate"],["mapped/Acetate_Carbon_Source.yaml","Acetate (carbon source)"],["mapped/Acetic_Acid.yaml","Acetic acid"],["mapped/Acetoacetate.yaml","Acetoacetate"],["mapped/Acetoin.yaml","Acetoin"],["mapped/Acetomycin.yaml","Acetomycin"],["mapped/Acetone.yaml","acetone"],["mapped/Acetosyringone.yaml","Acetosyringone"],["mapped/Acetovanillone.yaml","Acetovanillone"],["mapped/Acetylated_Xylan.yaml","Acetylated xylan"],["mapped/Acetylene.yaml","Acetylene"],["mapped/Aconitate.yaml","Aconitate"],["mapped/Acridine_Orange.yaml","Acridine orange"],["mapped/Actein.yaml","Actein"],["mapped/Actinomycin_A.yaml","Actinomycin A"],["mapped/Actinomycin_D.yaml","Actinomycin D"],["mapped/Adenine.yaml","Adenine"],["mapped/Adenine_Hydrochloride_Hydrate.yaml","Adenine hydrochloride hydrate"],["mapped/Adenosine.yaml","Adenosine"],["mapped/Adenosine_35-Cyclic_Monophosphate.yaml","Adenosine 3,5-Cyclic Monophosphate"],["mapped/Adenosine_5-monophosphate.yaml","Adenosine 5'-monophosphate"],["mapped/Adipate.yaml","Adipate"],["mapped/Adipic_Acid.yaml","Adipic acid"],["mapped/Agar.yaml","Agar"],["mapped/Agarose.yaml","Agarose"],["mapped/Al2_So43_X_18_H2o.yaml","Al2(SO4)3 x 18 H2O"],["mapped/Alanosine.yaml","alanosine"],["mapped/Alazopeptin.yaml","Alazopeptin"],["mapped/Alcl3.yaml","AlCl3"],["mapped/Alcl3_X_6_H2o.yaml","AlCl3 x 6 H2O"],["mapped/Alginate.yaml","Alginate"],["mapped/Alk_So42.yaml","AlK(SO4)2"],["mapped/Alk_So42_X_12_H2o.yaml","AlK(SO4)2 x 12 H2O"],["mapped/Allantoin.yaml","Allantoin"],["mapped/Allopurinol.yaml","Allopurinol"],["mapped/Allura_Red_AC.yaml","Allura Red AC"],["mapped/Aloin.yaml","Aloin"],["mapped/Alpha-D-glucose_6-phosphate.yaml","Alpha-D-glucose 6-phosphate"],["mapped/Alpha-L-rhamnose.yaml","Alpha-L-rhamnose"],["mapped/Alpha-Lactose.yaml","alpha-Lactose"],["mapped/Alpha-Tocopherol.yaml","alpha-Tocopherol"],["mapped/Alpha-aminobutyrate.yaml","Alpha-aminobutyrate"],["mapped/Alpha-bisabolol.yaml","(-)-alpha-bisabolol"],["mapped/Alpha-d-glucose.yaml","alpha-D-Glucose"],["mapped/Alpha-hydroxyglutarate-gamma-lactone.yaml","Alpha-hydroxyglutarate-gamma-lactone"],["mapped/Alpha-ketoglutaric_Acid.yaml","alpha-ketoglutaric acid"],["mapped/Alpha-toxicarol_Dl.yaml","Alpha-Toxicarol (Dl)"],["mapped/Alphaalpha-Trehalose.yaml","alpha,alpha-Trehalose"],["mapped/Althiomycin.yaml","Althiomycin"],["mapped/Aluminium_Sulfate.yaml","Aluminium sulfate"],["mapped/Amicoumacin_B.yaml","Amicoumacin B"],["mapped/Amikacin.yaml","Amikacin"],["mapped/Amikacin_Disulfate_Salt.yaml","Amikacin disulfate salt"],["mapped/Amino_Acid.yaml","Amino Acid"],["mapped/Aminoglycoside_Antibiotic.yaml","Aminoglycoside Antibiotic"],["mapped/Aminophenazone.yaml","Aminophenazone"],["mapped/Ammonia.yaml","Ammonia"],["mapped/Ammonium.yaml","Ammonium"],["mapped/Ammonium_Acetate.yaml","Ammonium acetate"],["mapped/Ammonium_Chloride_Nitrogen_Source.yaml","Ammonium chloride (nitrogen source)"],["mapped/Ammonium_Molybdate_Tetrahydrate.yaml","ammonium molybdate tetrahydrate"],["mapped/Ammonium_Persulfate.yaml","ammonium persulfate"],["mapped/Ammonium_Sulfamate.yaml","Ammonium Sulfamate"],["mapped/Amoxicillin.yaml","Amoxicillin"],["mapped/Amphomycin.yaml","Amphomycin"],["mapped/Amphotericin_A.yaml","Amphotericin A"],["mapped/Amphotericin_B.yaml","Amphotericin B"],["mapped/Ampicillin.yaml","Ampicillin"],["mapped/Ampicillin_Sodium_Salt.yaml","Ampicillin sodium salt"],["mapped/Amygdalin.yaml","Amygdalin"],["mapped/Amylopectin_From_Maize.yaml","amylopectin from maize"]]} \ No newline at end of file +{"mech":"MediaIngredientMech","prefix":"CHEBI","base":"https://github.com/CultureBotAI/MediaIngredientMech/blob/main/data/ingredients/","total":2232,"records":[["mapped/%28-%29-anisomycin.yaml","(-)-anisomycin"],["mapped/%28-%29-quinic_Acid.yaml","(-)-quinic Acid"],["mapped/%282%29-D-lyxose.yaml","D-lyxose"],["mapped/%28R%29-amygdalin.yaml","(R)-amygdalin"],["mapped/%28R%29-lactate.yaml","(R)-lactate"],["mapped/%28R%29-malic_Acid.yaml","(R)-malic Acid"],["mapped/%28S%29-azetidine-2-carboxylic_Acid.yaml","(S)-azetidine-2-carboxylic Acid"],["mapped/%28S%29-mandelic_Acid.yaml","(S)-mandelic Acid"],["mapped/02_Thiamine_Pyrophosphate.yaml","0.2% Thiamine pyrophosphate"],["mapped/05_M_Nitrilotriacetic_Acid_Disodium_Salt.yaml","0.5 M Nitrilotriacetic acid, disodium salt"],["mapped/1-Kestose.yaml","1-Kestose"],["mapped/1-Pentanol.yaml","1-Pentanol"],["mapped/1-aminocyclopropane-1-carboxylate.yaml","1-aminocyclopropane-1-carboxylate"],["mapped/1-butanolCO2.yaml","1-butanol+CO2"],["mapped/1-chlorobutane.yaml","1-chlorobutane"],["mapped/1-chloropropane.yaml","1-chloropropane"],["mapped/1-ethyl-3-methylimidazolium_Acetate.yaml","1-ethyl-3-methylimidazolium acetate"],["mapped/1-ethyl-3-methylimidazolium_Chloride.yaml","1-ethyl-3-methylimidazolium chloride"],["mapped/1-ethyl-3-methylimidazolium_Lysine.yaml","1-ethyl-3-methylimidazolium lysine"],["mapped/1-methylphenanthrene.yaml","1-methylphenanthrene"],["mapped/1-naphtylacetic_Acid.yaml","1-Naphthylacetic acid"],["mapped/1-o-methyl_Alpha-galactopyranoside.yaml","1-o-methyl Alpha-galactopyranoside"],["mapped/1-octen-3-ol.yaml","1-octen-3-ol"],["mapped/1-phenazinecarboxamide.yaml","1-phenazinecarboxamide"],["mapped/1-propanolCO2.yaml","1-propanol+CO2"],["mapped/11-Biphenyl-2-ol.yaml","[1,1′-Biphenyl]-2-ol"],["mapped/112-trichloroethane.yaml","1,1,2-Trichloroethane"],["mapped/1122-Tetrachloroethane.yaml","1,1,2,2-tetrachloroethane"],["mapped/12-Propanediol.yaml","1,2-Propanediol"],["mapped/12-dichloropropane.yaml","1,2-Dichloropropane"],["mapped/13-Butandiol.yaml","1,3-Butanediol"],["mapped/13-Propanediol.yaml","1,3-Propanediol"],["mapped/14-B-D-Galactobiose.yaml","1,4-B-D-Galactobiose"],["mapped/14-Butanediol.yaml","1,4-Butanediol"],["mapped/14-naphthoquinone.yaml","1,4-Naphthoquinone"],["mapped/15-Pentanediol.yaml","1,5-Pentanediol"],["mapped/18-Crown-6.yaml","18-Crown-6"],["mapped/2-Acetylpyrrole.yaml","2-Acetylpyrrole"],["mapped/2-Aminoethylphosphonate.yaml","2-Aminoethylphosphonate"],["mapped/2-Azetidinone.yaml","2-Azetidinone"],["mapped/2-Chlorobenzoic_acid.yaml","2-Chlorobenzoic acid"],["mapped/2-Deoxy-D-Ribose.yaml","2-Deoxy-D-Ribose"],["mapped/2-Deoxy-D-glucose.yaml","2-Deoxy-D-glucose"],["mapped/2-Deoxy-D-ribonic_Acid_Lithium_Salt.yaml","2-Deoxy-D-ribonic acid lithium salt"],["mapped/2-Deoxyadenosine_5-monophosphate.yaml","2-Deoxyadenosine 5-monophosphate"],["mapped/2-Deoxyadenosine_Monohydrate.yaml","2-Deoxyadenosine monohydrate"],["mapped/2-Deoxycytidine.yaml","2'-Deoxycytidine"],["mapped/2-Deoxycytidine_5-monophosphate.yaml","2-Deoxycytidine 5-monophosphate"],["mapped/2-Ethylhexanol.yaml","2-Ethylhexanol"],["mapped/2-Furfuraldehyde.yaml","2-Furfuraldehyde"],["mapped/2-Hydroxy-34-Dimethoxybenzoic_Acid.yaml","2-Hydroxy-3,4-Dimethoxybenzoic Acid"],["mapped/2-Hydroxybutyric_Acid_Sodium_Salt.yaml","2-Hydroxybutyric acid sodium salt"],["mapped/2-Hydroxypyridine.yaml","2-Hydroxypyridine"],["mapped/2-Keto-D-gluconic_Acid_Hemicalcium_Salt_Hydrate.yaml","2-Keto-D-gluconic acid hemicalcium salt hydrate"],["mapped/2-Keto-D-gluconic_Acid_Hemicalcium_Salt_Monohydrate.yaml","2-Keto-D-gluconic acid hemicalcium salt monohydrate"],["mapped/2-Mercaptopyridine_N-oxide_Sodium_Salt.yaml","2-Mercaptopyridine N-oxide sodium salt"],["mapped/2-Nitrophenol.yaml","2-Nitrophenol"],["mapped/2-Piperidinone.yaml","2-Piperidinone"],["mapped/2-_Methylthioethanol.yaml","2-(Methylthio)ethanol"],["mapped/2-aminobenzoate.yaml","2-aminobenzoate"],["mapped/2-aminopentanoic_Acid.yaml","2-aminopentanoic Acid"],["mapped/2-bromo-2-nitro-13-propanediol.yaml","2-bromo-2-nitro-1,3-propanediol"],["mapped/2-butanolCO2.yaml","2-butanol+CO2"],["mapped/2-chloro-4ethylamino-6-isopropylamino-135-triazine.yaml","2-chloro-4ethylamino-6-isopropylamino-1,3,5-triazine"],["mapped/2-dehydro-D-gluconate.yaml","2-dehydro-D-gluconate"],["mapped/2-deoxyadenosine.yaml","2-deoxyadenosine"],["mapped/2-deoxyinosine.yaml","2'-Deoxyinosine"],["mapped/2-deoxyuridine.yaml","2'-Deoxyuridine"],["mapped/2-dichloroethane.yaml","1,2-dichloroethane"],["mapped/2-dimethylsuccinic_Acid.yaml","2,2-dimethylsuccinic acid"],["mapped/2-fucosyllactose.yaml","2'-fucosyllactose"],["mapped/2-furoic_Acid.yaml","2-Furoic acid"],["mapped/2-hydroxybutyrate.yaml","2-hydroxybutyrate"],["mapped/2-mercaptoethanesulfonate.yaml","2-Mercaptoethanesulfonate"],["mapped/2-mercaptoethanol.yaml","2-Mercaptoethanol"],["mapped/2-methyl-1-butanol.yaml","2-methyl-1-butanol"],["mapped/2-methyl-4-isothizaolin-3-one.yaml","2-methyl-4-isothizaolin-3-one"],["mapped/2-n-Heptyl-4-hydroxyquinoline_N-oxide.yaml","2-n-Heptyl-4-hydroxyquinoline N-oxide"],["mapped/2-naphthyl_Dihydrogen_Phosphate.yaml","2-naphthyl Dihydrogen Phosphate"],["mapped/2-naphthyl_Tetradecanoate.yaml","2-naphthyl Tetradecanoate"],["mapped/2-oxobutanoate.yaml","2-oxobutanoate"],["mapped/2-oxobutyric_Acid_Sodium_Salt.yaml","2-oxobutyric acid sodium salt"],["mapped/2-oxopentanoate.yaml","2-oxopentanoate"],["mapped/2-pentyl-furan.yaml","2-pentyl-furan"],["mapped/2-propanolCO2.yaml","2-propanol+CO2"],["mapped/2-undecanol.yaml","2-undecanol"],["mapped/22-Dipyridyl.yaml","2,2'-Dipyridyl"],["mapped/2244688-heptamethylnonane.yaml","2,2,4,4,6,8,8-Heptamethylnonane"],["mapped/23-butanediol.yaml","2,3-butanediol"],["mapped/23-dihydroxybenzoic_Acid.yaml","2,3-dihydroxybenzoic acid"],["mapped/235-Triphenyltetrazolium_Chloride.yaml","2,3,5-Triphenyltetrazolium chloride"],["mapped/24-Dichlorophenoxyacetic_acid.yaml","2,4-Dichlorophenoxyacetic acid"],["mapped/24-Dihydroxybenzoic_acid.yaml","2,4-Dihydroxybenzoic acid"],["mapped/24-Dinitrophenol.yaml","2,4-Dinitrophenol"],["mapped/24-diamino-67-di-iso-propylpteridine_phosphate.yaml","2,4-diamino-6,7-di-iso-propylpteridine phosphate"],["mapped/3-Aminophenol.yaml","3-Aminophenol"],["mapped/3-Aminopropionitrile_Fumarate.yaml","3-Aminopropionitrile Fumarate"],["mapped/3-Chloro-4-hydroxyphenylacetic_acid.yaml","3-Chloro-4-hydroxyphenylacetic acid"],["mapped/3-Chloro-L-tyrosine.yaml","3-Chloro-L-tyrosine"],["mapped/3-Chloroacrylic_acid.yaml","3-Chloroacrylic acid"],["mapped/3-Hydroxydecanoic_Acid.yaml","3-Hydroxydecanoic acid"],["mapped/3-Hydroxyhexanoic_Acid.yaml","3-Hydroxyhexanoic acid"],["mapped/3-Hydroxypropanal.yaml","3-Hydroxypropanal"],["mapped/3-Hydroxypropionate.yaml","3-Hydroxypropionate"],["mapped/3-Methyl-2-Oxobutanoic_Acid.yaml","3-Methyl-2-Oxobutanoic Acid"],["mapped/3-Methyl-2-oxobutanoic_Acid_Sodium_Salt.yaml","3-Methyl-2-oxobutanoic acid sodium salt"],["mapped/3-Methylcatechol.yaml","3-Methylcatechol"],["mapped/3-Methylglutaric_Acid.yaml","3-Methylglutaric acid"],["mapped/3-O-methyl-glucose.yaml","3-O-methyl-glucose"],["mapped/3-O-methylgallate.yaml","3-O-methylgallate"],["mapped/3-_N-morpholinopropanesulfonic_Acid.yaml","3-(N-morpholino)propanesulfonic acid"],["mapped/3-acetylpyridine.yaml","3-acetylpyridine"],["mapped/3-aminobenzoate.yaml","3-aminobenzoate"],["mapped/3-aminobutyrate.yaml","3-aminobutyrate"],["mapped/3-aminobutyric_Acid.yaml","3-aminobutyric acid"],["mapped/3-beta-d-glucan.yaml","3-beta-D-glucan"],["mapped/3-dehydro-D-gluconate.yaml","3-dehydro-D-gluconate"],["mapped/3-fucosyllactose.yaml","3'-fucosyllactose"],["mapped/3-hydroxybenzoate.yaml","3-hydroxybenzoate"],["mapped/3-hydroxybenzoic_Acid.yaml","3-Hydroxybenzoic acid"],["mapped/3-hydroxybutyrate.yaml","3-hydroxybutyrate"],["mapped/3-hydroxybutyric_Acid.yaml","3-hydroxybutyric acid"],["mapped/3-indolyl_Acetic_Acid.yaml","3-Indolyl acetic acid"],["mapped/3-methyl-1-butanol.yaml","3-methyl-1-butanol"],["mapped/3-methyl-2-butenol.yaml","3-methyl-2-butenol"],["mapped/3-methyl-2-oxopentanoic_Acid.yaml","3-methyl-2-oxopentanoic acid"],["mapped/3-methyl-3-butenol.yaml","3-methyl-3-butenol"],["mapped/3-nitropropanoate.yaml","3-nitropropanoate"],["mapped/3-octanone.yaml","3-octanone"],["mapped/3-phenylpropionate.yaml","3-phenylpropionate"],["mapped/3-sialyllactose_Sodium_Salt.yaml","3'-sialyllactose sodium salt"],["mapped/3-trehalosamine.yaml","3-trehalosamine"],["mapped/3-trichloropropane.yaml","1,2,3-trichloropropane"],["mapped/34-Dihydroxyphenylacetate.yaml","3,4-Dihydroxyphenylacetate"],["mapped/34-Dimethoxyflavone.yaml","3,4'-Dimethoxyflavone"],["mapped/345-Trimethoxycinnamic_acid.yaml","3,4,5-Trimethoxycinnamic acid"],["mapped/35-Dihydroxybenzoic_acid.yaml","3,5-Dihydroxybenzoic acid"],["mapped/35-Dinitrosalicylic_Acid.yaml","3,5-Dinitrosalicylic acid"],["mapped/36-Dihydroxyflavone.yaml","3',6-Dihydroxyflavone"],["mapped/4-Acetoxy-3-methoxycinnamic_Acid.yaml","4-Acetoxy-3-methoxycinnamic acid"],["mapped/4-Amino-5-hydroxymethyl-2-methylpyrimidine.yaml","4-Amino-5-hydroxymethyl-2-methylpyrimidine"],["mapped/4-Anisaldehyde.yaml","4-Anisaldehyde"],["mapped/4-Cresol.yaml","4-Cresol"],["mapped/4-Deoxypyridoxine.yaml","4-Deoxypyridoxine"],["mapped/4-Hydroxyacetophenone.yaml","4-Hydroxyacetophenone"],["mapped/4-Hydroxybenzaldehyde.yaml","4-Hydroxybenzaldehyde"],["mapped/4-Hydroxymandelic_Acid_Monohydrate.yaml","4-Hydroxymandelic acid monohydrate"],["mapped/4-Hydroxynonanoic_Acid.yaml","4-Hydroxynonanoic acid"],["mapped/4-Hydroxynonenal.yaml","4-Hydroxynonenal"],["mapped/4-Hydroxyphenylpropionic_Acid.yaml","4-Hydroxyphenylpropionic acid"],["mapped/4-Methoxyflavone.yaml","4'-Methoxyflavone"],["mapped/4-Methyl-2-oxopentanoic_Acid_Sodium_Salt.yaml","4-Methyl-2-oxopentanoic acid sodium salt"],["mapped/4-Methyl-2-oxovaleric_Acid.yaml","4-Methyl-2-oxovaleric acid"],["mapped/4-Methylimidazole.yaml","4-Methylimidazole"],["mapped/4-Pyridoxic_Acid.yaml","4-Pyridoxic acid"],["mapped/4-acetoxyphenol.yaml","4-acetoxyphenol"],["mapped/4-aminobenzoate.yaml","4-Aminobenzoate"],["mapped/4-aminobutyrate.yaml","4-aminobutyrate"],["mapped/4-azido-L-phenylalanine.yaml","4-azido-L-phenylalanine"],["mapped/4-benzoyl-L-phenylalanine.yaml","4-benzoyl-L-phenylalanine"],["mapped/4-coumarate.yaml","4-coumarate"],["mapped/4-dihydroxy-biphenyl.yaml","4,4'-dihydroxybiphenyl"],["mapped/4-guanidinobutyric_Acid.yaml","4-Guanidinobutyric acid"],["mapped/4-hydroxy-L-proline.yaml","4-hydroxy-L-proline"],["mapped/4-hydroxybenzoic_Acid.yaml","4-Hydroxybenzoic acid"],["mapped/4-hydroxybutyrate.yaml","4-hydroxybutyrate"],["mapped/4-hydroxybutyric_Acid.yaml","4-hydroxybutyric acid"],["mapped/4-hydroxychalcone.yaml","4-hydroxychalcone"],["mapped/4-hydroxyphenyl_Acetic_Acid.yaml","4-Hydroxyphenyl acetic acid"],["mapped/4-methylumbelliferone_Beta-d-glucuronide.yaml","4-methylumbelliferone Beta-D-glucuronide"],["mapped/4-nitrophenyl_6-O-phosphono-beta-D-galactoside.yaml","4-nitrophenyl 6-O-phosphono-beta-D-galactoside"],["mapped/4-nitrophenyl_Alpha-D-galactoside.yaml","4-nitrophenyl Alpha-D-galactoside"],["mapped/4-nitrophenyl_Alpha-D-glucopyranoside.yaml","4-nitrophenyl Alpha-D-glucopyranoside"],["mapped/4-nitrophenyl_Beta-D-galactopyranoside.yaml","4-nitrophenyl beta-D-galactopyranoside"],["mapped/4-nitrophenyl_Beta-D-glucopyranoside.yaml","4-nitrophenyl Beta-D-glucopyranoside"],["mapped/4-nitrophenyl_Beta-D-glucuronide.yaml","4-nitrophenyl Beta-D-glucuronide"],["mapped/4-nitrophenyl_Beta-D-xylopyranoside.yaml","4-nitrophenyl Beta-D-xylopyranoside"],["mapped/4-nitrophenyl_N-acetyl-beta-D-glucosaminide.yaml","4-nitrophenyl N-acetyl-beta-D-glucosaminide"],["mapped/4-nitrophenyl_Phosphate.yaml","4-nitrophenyl Phosphate"],["mapped/4-oxopentanoate.yaml","4-oxopentanoate"],["mapped/4-vinylphenol.yaml","4-vinylphenol"],["mapped/4_Carbon_Mix.yaml","4 Carbon Mix"],["mapped/4h-pyran-4-one.yaml","4h-pyran-4-one"],["mapped/5-Aminolevulinic_Acid.yaml","5-Aminolevulinic acid"],["mapped/5-Azacytidine.yaml","5-Azacytidine"],["mapped/5-Deoxy-5-fluorocytidine.yaml","5'-Deoxy-5-fluorocytidine"],["mapped/5-Fluorodihydropyrimidine-24-dione.yaml","5-Fluorodihydropyrimidine-2,4-dione"],["mapped/5-Fluoroorotic_Acid_Hydrate.yaml","5-Fluoroorotic acid hydrate"],["mapped/5-Hydroxydodecanoate.yaml","5-Hydroxydodecanoate"],["mapped/5-Hydroxymethylfurfural.yaml","5-Hydroxymethylfurfural"],["mapped/5-Hydroxyoctanoate.yaml","5-Hydroxyoctanoate"],["mapped/5-Keto-D-Gluconic_Acid_Potassium_Salt.yaml","5-Keto-D-Gluconic Acid potassium salt"],["mapped/5-aminovaleric_Acid.yaml","5-Aminovaleric acid"],["mapped/5-dehydro-D-gluconate.yaml","5-dehydro-D-gluconate"],["mapped/5-deoxy-5-_Methylthioadenosine.yaml","5'-Deoxy-5'-(methylthio)adenosine"],["mapped/5-didehydro-D-gluconic_Acid.yaml","2,5-didehydro-D-gluconic acid"],["mapped/5-fluorouracil.yaml","5-fluorouracil"],["mapped/5-methyluridine.yaml","5-methyluridine"],["mapped/5-oxoproline.yaml","5-oxoproline"],["mapped/5-trimethoxybenzoate.yaml","3,4,5-trimethoxybenzoate"],["mapped/6-Hydroxyflavone.yaml","6-Hydroxyflavone"],["mapped/6-O-Acetyl-D-glucose.yaml","6-O-Acetyl-D-glucose"],["mapped/6-O-sialyllactose_Sodium_Salt.yaml","6'-O-sialyllactose sodium salt"],["mapped/6-Pentyl-2H-pyran-2-one.yaml","6-Pentyl-2H-pyran-2-one"],["mapped/6-deoxy-d-galactose.yaml","6-deoxy-D-galactose"],["mapped/6-hydroxypyridine-3-carboxylic_Acid.yaml","6-hydroxypyridine-3-carboxylic acid"],["mapped/6-methoxy-2_3h-benzoxazolone.yaml","6-methoxy-2(3H)-benzoxazolone"],["mapped/7-hydroxyflavone.yaml","7-hydroxyflavone"],["mapped/72-Dihydroxyflavone.yaml","7,2'-Dihydroxyflavone"],["mapped/8-azaguanine.yaml","8-azaguanine"],["mapped/8-hydroxy-nitroquinoline.yaml","8-hydroxy-nitroquinoline"],["mapped/84_GL_NaHCO3_Solution.yaml","84 g/L NaHCO3 solution"],["mapped/A-Cyclodextrin.yaml","a-Cyclodextrin"],["mapped/A-Ketoglutaric_Acid_Disodium_Salt_Hydrate.yaml","a-Ketoglutaric acid disodium salt hydrate"],["mapped/AQDS.yaml","AQDS"],["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/Abietic_Acid.yaml","Abietic Acid"],["mapped/Abikoviromycin.yaml","Abikoviromycin"],["mapped/Abscisic_Acid.yaml","Abscisic acid"],["mapped/Aburamycin_A.yaml","Aburamycin A"],["mapped/Abyssomicin_B.yaml","Abyssomicin B"],["mapped/Abyssomicin_D.yaml","Abyssomicin D"],["mapped/Abyssomicin_G.yaml","Abyssomicin G"],["mapped/Abyssomicin_H.yaml","Abyssomicin H"],["mapped/Acacetin.yaml","Acacetin"],["mapped/Aces.yaml","ACES"],["mapped/Acetaldehyde.yaml","acetaldehyde"],["mapped/Acetamide.yaml","Acetamide"],["mapped/Acetate.yaml","Acetate"],["mapped/Acetate_Carbon_Source.yaml","Acetate (carbon source)"],["mapped/Acetic_Acid.yaml","Acetic acid"],["mapped/Acetoacetate.yaml","Acetoacetate"],["mapped/Acetoin.yaml","Acetoin"],["mapped/Acetomycin.yaml","Acetomycin"],["mapped/Acetone.yaml","acetone"],["mapped/Acetosyringone.yaml","Acetosyringone"],["mapped/Acetovanillone.yaml","Acetovanillone"],["mapped/Acetylated_Xylan.yaml","Acetylated xylan"],["mapped/Acetylene.yaml","Acetylene"],["mapped/Aconitate.yaml","Aconitate"],["mapped/Acridine_Orange.yaml","Acridine orange"],["mapped/Actein.yaml","Actein"],["mapped/Actinomycin_A.yaml","Actinomycin A"],["mapped/Actinomycin_D.yaml","Actinomycin D"],["mapped/Adenine.yaml","Adenine"],["mapped/Adenine_Hydrochloride_Hydrate.yaml","Adenine hydrochloride hydrate"],["mapped/Adenosine.yaml","Adenosine"],["mapped/Adenosine_35-Cyclic_Monophosphate.yaml","Adenosine 3,5-Cyclic Monophosphate"],["mapped/Adenosine_5-monophosphate.yaml","Adenosine 5'-monophosphate"],["mapped/Adipate.yaml","Adipate"],["mapped/Adipic_Acid.yaml","Adipic acid"],["mapped/Agar.yaml","Agar"],["mapped/Agarose.yaml","Agarose"],["mapped/Al2_So43_X_18_H2o.yaml","Al2(SO4)3 x 18 H2O"],["mapped/Alanosine.yaml","alanosine"],["mapped/Alazopeptin.yaml","Alazopeptin"],["mapped/Alcl3.yaml","AlCl3"],["mapped/Alcl3_X_6_H2o.yaml","AlCl3 x 6 H2O"],["mapped/Alginate.yaml","Alginate"],["mapped/Alk_So42.yaml","AlK(SO4)2"],["mapped/Alk_So42_X_12_H2o.yaml","AlK(SO4)2 x 12 H2O"],["mapped/Allantoin.yaml","Allantoin"],["mapped/Allopurinol.yaml","Allopurinol"],["mapped/Allura_Red_AC.yaml","Allura Red AC"],["mapped/Aloin.yaml","Aloin"],["mapped/Alpha-D-glucose_6-phosphate.yaml","Alpha-D-glucose 6-phosphate"],["mapped/Alpha-L-rhamnose.yaml","Alpha-L-rhamnose"],["mapped/Alpha-Lactose.yaml","alpha-Lactose"],["mapped/Alpha-Tocopherol.yaml","alpha-Tocopherol"],["mapped/Alpha-aminobutyrate.yaml","Alpha-aminobutyrate"],["mapped/Alpha-bisabolol.yaml","(-)-alpha-bisabolol"],["mapped/Alpha-d-glucose.yaml","alpha-D-Glucose"],["mapped/Alpha-hydroxyglutarate-gamma-lactone.yaml","Alpha-hydroxyglutarate-gamma-lactone"],["mapped/Alpha-ketoglutaric_Acid.yaml","alpha-ketoglutaric acid"],["mapped/Alpha-toxicarol_Dl.yaml","Alpha-Toxicarol (Dl)"],["mapped/Alphaalpha-Trehalose.yaml","alpha,alpha-Trehalose"],["mapped/Althiomycin.yaml","Althiomycin"],["mapped/Aluminium_Sulfate.yaml","Aluminium sulfate"],["mapped/Amicoumacin_B.yaml","Amicoumacin B"],["mapped/Amikacin.yaml","Amikacin"],["mapped/Amikacin_Disulfate_Salt.yaml","Amikacin disulfate salt"],["mapped/Amino_Acid.yaml","Amino Acid"],["mapped/Aminoglycoside_Antibiotic.yaml","Aminoglycoside Antibiotic"],["mapped/Aminophenazone.yaml","Aminophenazone"],["mapped/Ammonia.yaml","Ammonia"],["mapped/Ammonium.yaml","Ammonium"],["mapped/Ammonium_Acetate.yaml","Ammonium acetate"],["mapped/Ammonium_Chloride_Nitrogen_Source.yaml","Ammonium chloride (nitrogen source)"],["mapped/Ammonium_Molybdate_Tetrahydrate.yaml","ammonium molybdate tetrahydrate"],["mapped/Ammonium_Persulfate.yaml","ammonium persulfate"],["mapped/Ammonium_Sulfamate.yaml","Ammonium Sulfamate"],["mapped/Amoxicillin.yaml","Amoxicillin"],["mapped/Amphomycin.yaml","Amphomycin"],["mapped/Amphotericin_A.yaml","Amphotericin A"],["mapped/Amphotericin_B.yaml","Amphotericin B"],["mapped/Ampicillin.yaml","Ampicillin"],["mapped/Ampicillin_Sodium_Salt.yaml","Ampicillin sodium salt"],["mapped/Amygdalin.yaml","Amygdalin"],["mapped/Amylopectin_From_Maize.yaml","amylopectin from maize"]]} \ No newline at end of file diff --git a/assets/fleet/cells/MediaIngredientMech--FOODON.json b/assets/fleet/cells/MediaIngredientMech--FOODON.json index e33c404..bd11273 100644 --- a/assets/fleet/cells/MediaIngredientMech--FOODON.json +++ b/assets/fleet/cells/MediaIngredientMech--FOODON.json @@ -1 +1 @@ -{"mech":"MediaIngredientMech","prefix":"FOODON","base":"https://github.com/CultureBotAI/MediaIngredientMech/blob/main/data/ingredients/","total":100,"records":[["mapped/Agave.yaml","Agave"],["mapped/Apple_Juice.yaml","Apple Juice"],["mapped/Arabinan_From_Sugar_Beet.yaml","Arabinan from Sugar Beet"],["mapped/Arabinoxylan_Rye_Flour.yaml","Arabinoxylan (Rye Flour)"],["mapped/Bacto-tryptone.yaml","Bacto-tryptone"],["mapped/Bacto_Peptone.yaml","Bacto peptone"],["mapped/Bacto_Soytone.yaml","Bacto Soytone"],["mapped/Bakers_Yeast.yaml","Baker's yeast"],["mapped/Beef_Brain_Powder.yaml","Beef brain powder"],["mapped/Beef_Extract.yaml","Beef extract"],["mapped/Beef_Heart.yaml","Beef heart"],["mapped/Beef_Heart_Infusion.yaml","Beef Heart Infusion"],["mapped/CMC_PY_Horse_Serum.yaml","CMC + PY + Horse Serum"],["mapped/Calcium_lactate.yaml","Calcium lactate"],["mapped/Calcium_malate.yaml","Calcium malate"],["mapped/Carboxymethyl_Cellulose.yaml","Carboxymethyl cellulose"],["mapped/Casamino_Acids.yaml","Casamino acids"],["mapped/Casein.yaml","Casein"],["mapped/Casein_Peptone.yaml","Casein peptone"],["mapped/Casitone.yaml","Casitone"],["mapped/Casitone_Yeast_Extract_Rumen_Fluid.yaml","Casitone + Yeast Extract + Rumen Fluid"],["mapped/Cellulose_powder.yaml","Cellulose powder"],["mapped/Cooked_Meat_Medium.yaml","Cooked meat medium"],["mapped/Corn_Meal.yaml","Corn meal"],["mapped/Cows_Milk.yaml","Cow's milk"],["mapped/Dry_Cow-manure.yaml","Dry cow-manure"],["mapped/Egg_Yolk.yaml","Egg yolk"],["mapped/Fastidious_Anaerobe_Broth_With_Meat_Granules.yaml","Fastidious Anaerobe Broth With Meat Granules"],["mapped/GYPS.yaml","GYPS"],["mapped/Glucose_Cellobiose_Starch_Trypticase_Yeast_Extract.yaml","Glucose + Cellobiose + Starch + Trypticase + Yeast Extract"],["mapped/Glucose_Peptone-yeast_Extract.yaml","Glucose Peptone-yeast Extract"],["mapped/Glucose_Yeast_Extract.yaml","Glucose + Yeast Extract"],["mapped/Ground_Beef.yaml","Ground beef"],["mapped/Gum_Arabic_From_Acacia_Tree.yaml","Gum arabic from acacia tree"],["mapped/Liver_powder.yaml","liver powder"],["mapped/Locust_Bean_Gum.yaml","Locust bean gum"],["mapped/Lysozyme.yaml","Lysozyme"],["mapped/Malt_Extract.yaml","Malt extract"],["mapped/Malt_Extract_Agar.yaml","Malt extract agar"],["mapped/Malt_Extract_Agar_Nissui.yaml","Malt Extract Agar (Nissui)"],["mapped/Malt_Extract_Agar_Oxoid.yaml","Malt extract agar (Oxoid)"],["mapped/Malt_Extract_Broth.yaml","Malt extract broth"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Meat_Extract.yaml","Meat Extract"],["mapped/Mineral_Water.yaml","Mineral water"],["mapped/Modified_Cooked_Meat_Medium.yaml","Modified Cooked Meat Medium"],["mapped/Oat_Flour_B-glucan.yaml","Oat flour B-glucan"],["mapped/Oat_flakes.yaml","Oat flakes"],["mapped/Olive_oil.yaml","Olive oil"],["mapped/PY-cellobiose.yaml","PY-cellobiose"],["mapped/PY-fructose.yaml","PY-fructose"],["mapped/PY-glucose-rumen_Fluid.yaml","PY-glucose-rumen Fluid"],["mapped/PY-maltose.yaml","PY-maltose"],["mapped/PY-pectin.yaml","PY-pectin"],["mapped/PYEG.yaml","PYEG"],["mapped/PYG-002_Tween_80.yaml","PYG-0.02% Tween 80"],["mapped/PYG.yaml","PYG"],["mapped/PYGS.yaml","PYGS"],["mapped/PYG_Rumen_Fluid.yaml","PYG + Rumen Fluid"],["mapped/Pentasodium_Tripolyphosphate_Hexahydrate.yaml","Pentasodium tripolyphosphate hexahydrate"],["mapped/Peptone-yeast_Extract-glucose.yaml","Peptone-yeast Extract-glucose"],["mapped/Peptone_Beef_Extract_Yeast_Extract.yaml","Peptone + Beef Extract + Yeast Extract"],["mapped/Peptone_Yeast_Extract.yaml","Peptone + Yeast Extract"],["mapped/Phytone.yaml","Phytone"],["mapped/Polypeptone.yaml","Polypeptone"],["mapped/Potato_Flour.yaml","Potato flour"],["mapped/Proteose_Peptone.yaml","Proteose Peptone"],["mapped/Rolled_Oats.yaml","Rolled oats"],["mapped/Rye-bran.yaml","Rye-bran"],["mapped/Sake.yaml","Sake"],["mapped/Skimmed_Milk.yaml","Skimmed milk"],["mapped/Sodium_Adipate.yaml","Sodium adipate"],["mapped/Soy_Flour.yaml","Soy flour"],["mapped/Soy_Peptone.yaml","Soy peptone"],["mapped/Soya_Pepton.yaml","Soya pepton"],["mapped/Soya_Peptone.yaml","Soya peptone"],["mapped/Soyton.yaml","Soyton"],["mapped/Sucrose_Yeast_Extract.yaml","Sucrose + Yeast Extract"],["mapped/Sugar_Beet_Molasses.yaml","Sugar beet molasses"],["mapped/TYGVS_Glucose.yaml","TYGVS + Glucose"],["mapped/Table_wine.yaml","Table wine"],["mapped/Tara_Gum.yaml","Tara gum"],["mapped/Tea.yaml","Tea"],["mapped/Tomato_Juice.yaml","Tomato juice"],["mapped/Trypticase-glucose-yeast_Extract.yaml","Trypticase-glucose-yeast Extract"],["mapped/Trypticase.yaml","Trypticase"],["mapped/Trypticase_Peptone.yaml","Trypticase peptone"],["mapped/Tryptone.yaml","Tryptone"],["mapped/Tryptoneyeastbeef_%28tyb%29.yaml","Tryptone/yeast/beef (tyb)"],["mapped/V-8_Juice.yaml","V-8 Juice"],["mapped/Yeast.yaml","Yeast"],["mapped/Yeast_Extract-malt_Extract_Agar.yaml","Yeast extract-malt extract agar"],["mapped/Yeast_Extract.yaml","Yeast extract"],["mapped/Yeast_Extract_Gluconate.yaml","Yeast Extract + Gluconate"],["mapped/Yeast_Extract_Glucose.yaml","Yeast Extract + Glucose"],["mapped/Yeast_Extract_Peptone.yaml","Yeast Extract + Peptone"],["mapped/Yeast_Extract_Sulfur.yaml","Yeast Extract + Sulfur"],["mapped/Yeast_Meat_Extract_H2.yaml","Yeast + Meat Extract + H2"],["unmapped/Plain_Flour.yaml","Plain flour"]]} \ No newline at end of file +{"mech":"MediaIngredientMech","prefix":"FOODON","base":"https://github.com/CultureBotAI/MediaIngredientMech/blob/main/data/ingredients/","total":99,"records":[["mapped/Agave.yaml","Agave"],["mapped/Apple_Juice.yaml","Apple Juice"],["mapped/Arabinan_From_Sugar_Beet.yaml","Arabinan from Sugar Beet"],["mapped/Arabinoxylan_Rye_Flour.yaml","Arabinoxylan (Rye Flour)"],["mapped/Bacto-tryptone.yaml","Bacto-tryptone"],["mapped/Bacto_Peptone.yaml","Bacto peptone"],["mapped/Bacto_Soytone.yaml","Bacto Soytone"],["mapped/Bakers_Yeast.yaml","Baker's yeast"],["mapped/Beef_Brain_Powder.yaml","Beef brain powder"],["mapped/Beef_Extract.yaml","Beef extract"],["mapped/Beef_Heart.yaml","Beef heart"],["mapped/Beef_Heart_Infusion.yaml","Beef Heart Infusion"],["mapped/Calcium_lactate.yaml","Calcium lactate"],["mapped/Calcium_malate.yaml","Calcium malate"],["mapped/Carboxymethyl_Cellulose.yaml","Carboxymethyl cellulose"],["mapped/Casamino_Acids.yaml","Casamino acids"],["mapped/Casein.yaml","Casein"],["mapped/Casein_Peptone.yaml","Casein peptone"],["mapped/Casitone.yaml","Casitone"],["mapped/Casitone_Yeast_Extract_Rumen_Fluid.yaml","Casitone + Yeast Extract + Rumen Fluid"],["mapped/Cellulose_powder.yaml","Cellulose powder"],["mapped/Cooked_Meat_Medium.yaml","Cooked meat medium"],["mapped/Corn_Meal.yaml","Corn meal"],["mapped/Cows_Milk.yaml","Cow's milk"],["mapped/Dry_Cow-manure.yaml","Dry cow-manure"],["mapped/Egg_Yolk.yaml","Egg yolk"],["mapped/Fastidious_Anaerobe_Broth_With_Meat_Granules.yaml","Fastidious Anaerobe Broth With Meat Granules"],["mapped/GYPS.yaml","GYPS"],["mapped/Glucose_Cellobiose_Starch_Trypticase_Yeast_Extract.yaml","Glucose + Cellobiose + Starch + Trypticase + Yeast Extract"],["mapped/Glucose_Peptone-yeast_Extract.yaml","Glucose Peptone-yeast Extract"],["mapped/Glucose_Yeast_Extract.yaml","Glucose + Yeast Extract"],["mapped/Ground_Beef.yaml","Ground beef"],["mapped/Gum_Arabic_From_Acacia_Tree.yaml","Gum arabic from acacia tree"],["mapped/Liver_powder.yaml","liver powder"],["mapped/Locust_Bean_Gum.yaml","Locust bean gum"],["mapped/Lysozyme.yaml","Lysozyme"],["mapped/Malt_Extract.yaml","Malt extract"],["mapped/Malt_Extract_Agar.yaml","Malt extract agar"],["mapped/Malt_Extract_Agar_Nissui.yaml","Malt Extract Agar (Nissui)"],["mapped/Malt_Extract_Agar_Oxoid.yaml","Malt extract agar (Oxoid)"],["mapped/Malt_Extract_Broth.yaml","Malt extract broth"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Meat_Extract.yaml","Meat Extract"],["mapped/Mineral_Water.yaml","Mineral water"],["mapped/Modified_Cooked_Meat_Medium.yaml","Modified Cooked Meat Medium"],["mapped/Oat_Flour_B-glucan.yaml","Oat flour B-glucan"],["mapped/Oat_flakes.yaml","Oat flakes"],["mapped/Olive_oil.yaml","Olive oil"],["mapped/PY-cellobiose.yaml","PY-cellobiose"],["mapped/PY-fructose.yaml","PY-fructose"],["mapped/PY-glucose-rumen_Fluid.yaml","PY-glucose-rumen Fluid"],["mapped/PY-maltose.yaml","PY-maltose"],["mapped/PY-pectin.yaml","PY-pectin"],["mapped/PYEG.yaml","PYEG"],["mapped/PYG-002_Tween_80.yaml","PYG-0.02% Tween 80"],["mapped/PYG.yaml","PYG"],["mapped/PYGS.yaml","PYGS"],["mapped/PYG_Rumen_Fluid.yaml","PYG + Rumen Fluid"],["mapped/Pentasodium_Tripolyphosphate_Hexahydrate.yaml","Pentasodium tripolyphosphate hexahydrate"],["mapped/Peptone-yeast_Extract-glucose.yaml","Peptone-yeast Extract-glucose"],["mapped/Peptone_Beef_Extract_Yeast_Extract.yaml","Peptone + Beef Extract + Yeast Extract"],["mapped/Peptone_Yeast_Extract.yaml","Peptone + Yeast Extract"],["mapped/Phytone.yaml","Phytone"],["mapped/Polypeptone.yaml","Polypeptone"],["mapped/Potato_Flour.yaml","Potato flour"],["mapped/Proteose_Peptone.yaml","Proteose Peptone"],["mapped/Rolled_Oats.yaml","Rolled oats"],["mapped/Rye-bran.yaml","Rye-bran"],["mapped/Sake.yaml","Sake"],["mapped/Skimmed_Milk.yaml","Skimmed milk"],["mapped/Sodium_Adipate.yaml","Sodium adipate"],["mapped/Soy_Flour.yaml","Soy flour"],["mapped/Soy_Peptone.yaml","Soy peptone"],["mapped/Soya_Pepton.yaml","Soya pepton"],["mapped/Soya_Peptone.yaml","Soya peptone"],["mapped/Soyton.yaml","Soyton"],["mapped/Sucrose_Yeast_Extract.yaml","Sucrose + Yeast Extract"],["mapped/Sugar_Beet_Molasses.yaml","Sugar beet molasses"],["mapped/TYGVS_Glucose.yaml","TYGVS + Glucose"],["mapped/Table_wine.yaml","Table wine"],["mapped/Tara_Gum.yaml","Tara gum"],["mapped/Tea.yaml","Tea"],["mapped/Tomato_Juice.yaml","Tomato juice"],["mapped/Trypticase-glucose-yeast_Extract.yaml","Trypticase-glucose-yeast Extract"],["mapped/Trypticase.yaml","Trypticase"],["mapped/Trypticase_Peptone.yaml","Trypticase peptone"],["mapped/Tryptone.yaml","Tryptone"],["mapped/Tryptoneyeastbeef_%28tyb%29.yaml","Tryptone/yeast/beef (tyb)"],["mapped/V-8_Juice.yaml","V-8 Juice"],["mapped/Yeast.yaml","Yeast"],["mapped/Yeast_Extract-malt_Extract_Agar.yaml","Yeast extract-malt extract agar"],["mapped/Yeast_Extract.yaml","Yeast extract"],["mapped/Yeast_Extract_Gluconate.yaml","Yeast Extract + Gluconate"],["mapped/Yeast_Extract_Glucose.yaml","Yeast Extract + Glucose"],["mapped/Yeast_Extract_Peptone.yaml","Yeast Extract + Peptone"],["mapped/Yeast_Extract_Sulfur.yaml","Yeast Extract + Sulfur"],["mapped/Yeast_Meat_Extract_H2.yaml","Yeast + Meat Extract + H2"],["unmapped/Plain_Flour.yaml","Plain flour"]]} \ No newline at end of file diff --git a/assets/fleet/cells/MediaIngredientMech--UBERON.json b/assets/fleet/cells/MediaIngredientMech--UBERON.json index d8b5f63..ed7758e 100644 --- a/assets/fleet/cells/MediaIngredientMech--UBERON.json +++ b/assets/fleet/cells/MediaIngredientMech--UBERON.json @@ -1 +1 @@ -{"mech":"MediaIngredientMech","prefix":"UBERON","base":"https://github.com/CultureBotAI/MediaIngredientMech/blob/main/data/ingredients/","total":10,"records":[["mapped/Blood.yaml","Blood"],["mapped/CMC_PY_Horse_Serum.yaml","CMC + PY + Horse Serum"],["mapped/Milk.yaml","Milk"],["mapped/PY-glucose-rumen_Fluid.yaml","PY-glucose-rumen Fluid"],["mapped/Rabbit_Serum.yaml","Rabbit serum"],["mapped/Rumen_Fluid.yaml","Rumen fluid"],["mapped/Serum.yaml","Serum"],["unmapped/Calf_Brains.yaml","Calf brains"],["unmapped/Desicatted_Ox-bile.yaml","Desicatted Ox-bile"],["unmapped/Sterile_Serum.yaml","Sterile serum"]]} \ No newline at end of file +{"mech":"MediaIngredientMech","prefix":"UBERON","base":"https://github.com/CultureBotAI/MediaIngredientMech/blob/main/data/ingredients/","total":10,"records":[["mapped/Blood.yaml","Blood"],["mapped/Milk.yaml","Milk"],["mapped/PY-glucose-rumen_Fluid.yaml","PY-glucose-rumen Fluid"],["mapped/Rabbit_Serum.yaml","Rabbit serum"],["mapped/Rumen_Fluid.yaml","Rumen fluid"],["mapped/Serum.yaml","Serum"],["unmapped/CMC_PY_Horse_Serum.yaml","CMC + PY + Horse Serum"],["unmapped/Calf_Brains.yaml","Calf brains"],["unmapped/Desicatted_Ox-bile.yaml","Desicatted Ox-bile"],["unmapped/Sterile_Serum.yaml","Sterile serum"]]} \ No newline at end of file diff --git a/assets/fleet/cells/ProteinTraitsMech--NCBITaxon.json b/assets/fleet/cells/ProteinTraitsMech--NCBITaxon.json index b43f3ea..47f8d1e 100644 --- a/assets/fleet/cells/ProteinTraitsMech--NCBITaxon.json +++ b/assets/fleet/cells/ProteinTraitsMech--NCBITaxon.json @@ -1 +1 @@ -{"mech":"ProteinTraitsMech","prefix":"NCBITaxon","base":"https://culturebotai.github.io/proteintraitsmech/browse.html#record=","total":111963,"records":[["EC%3A1.1.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.1.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.1.98.-","With other, known, acceptors"],["EC%3A1.1.99.-","With other acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.10.3.-","With oxygen as acceptor"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.12.99.-","With other acceptors"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"],["EC%3A1.13.12.-","With incorporation of one atom of oxygen (internal monooxygenases or internal mixed function oxidases)"],["EC%3A1.14.11.-","With 2-oxoglutarate as one donor, and incorporation of one atom each of oxygen into both donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.14.-","With reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.15.-","With reduced iron-sulfur protein as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.17.-","With reduced ascorbate as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.18.-","With another compound as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.19.-","With oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water"],["EC%3A1.14.99.-","Miscellaneous"],["EC%3A1.14.-.-","Acting on paired donors, with incorporation or reduction of molecular oxygen. The oxygen incorporated need not be derived from O2"],["EC%3A1.16.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.16.-.-","Oxidizing metal ions"],["EC%3A1.17.4.-","With a disulfide as acceptor"],["EC%3A1.17.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.18.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.4.-","With a disulfide as acceptor"],["EC%3A1.2.7.-","With an iron-sulfur protein as acceptor"],["EC%3A1.21.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.21.98.-","With other, known acceptors"],["EC%3A1.23.1.-","With NADH or NADPH as donor"],["EC%3A1.3.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.3.3.-","With oxygen as acceptor"],["EC%3A1.3.99.-","With other acceptors"],["EC%3A1.3.-.-","Acting on the CH-CH group of donors"],["EC%3A1.4.3.-","With oxygen as acceptor"],["EC%3A1.4.99.-","With other acceptors"],["EC%3A1.5.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.5.3.-","With oxygen as acceptor"],["EC%3A1.5.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.6.3.-","With oxygen as acceptor"],["EC%3A1.6.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.6.99.-","With other acceptors"],["EC%3A1.6.-.-","Acting on NADH or NADPH"],["EC%3A1.7.2.-","With a cytochrome as acceptor"],["EC%3A1.7.-.-","Acting on other nitrogenous compounds as donors"],["EC%3A1.8.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.8.4.-","With a disulfide as acceptor"],["EC%3A1.8.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.8.98.-","With other, known, acceptors"],["EC%3A1.8.99.-","With other acceptors"],["EC%3A1.8.-.-","Acting on a sulfur group of donors"],["EC%3A1.97.1.-","Other oxidoreductases"],["EC%3A1.-.-.-","Oxidoreductases"],["EC%3A2.1.1.-","Methyltransferases"],["EC%3A2.1.2.-","Hydroxymethyl-, formyl- and related transferases"],["EC%3A2.1.3.-","Carboxy- and carbamoyltransferases"],["EC%3A2.1.-.-","Transferring one-carbon groups"],["EC%3A2.3.1.-","Transferring groups other than amino-acyl groups"],["EC%3A2.3.2.-","Aminoacyltransferases"],["EC%3A2.3.3.-","Acyl groups converted into alkyl groups on transfer"],["EC%3A2.3.-.-","Acyltransferases"],["EC%3A2.4.1.-","Hexosyltransferases"],["EC%3A2.4.2.-","Pentosyltransferases"],["EC%3A2.4.3.-","Sialyltransferases"],["EC%3A2.4.99.-","Transferring other glycosyl groups"],["EC%3A2.4.-.-","Glycosyltransferases"],["EC%3A2.5.1.-","Transferring alkyl or aryl groups, other than methyl groups"],["EC%3A2.6.1.-","Transaminases"],["EC%3A2.6.-.-","Transferring nitrogenous groups"],["EC%3A2.7.1.-","Phosphotransferases with an alcohol group as acceptor"],["EC%3A2.7.10.-","Protein-tyrosine kinases"],["EC%3A2.7.11.-","Protein-serine/threonine kinases"],["EC%3A2.7.2.-","Phosphotransferases with a carboxy group as acceptor"],["EC%3A2.7.4.-","Phosphotransferases with a phosphate group as acceptor"],["EC%3A2.7.6.-","Diphosphotransferases"],["EC%3A2.7.7.-","Nucleotidyltransferases"],["EC%3A2.7.8.-","Transferases for other substituted phosphate groups"],["EC%3A2.7.-.-","Transferring phosphorus-containing groups"],["EC%3A2.8.1.-","Sulfurtransferases"],["EC%3A2.8.2.-","Sulfotransferases"],["EC%3A2.8.3.-","CoA-transferases"],["EC%3A2.-.-.-","Transferases"],["EC%3A3.1.1.-","Carboxylic ester hydrolases"],["EC%3A3.1.11.-","Exodeoxyribonucleases producing 5'-phosphomonoesters"],["EC%3A3.1.13.-","Exoribonucleases producing 5'-phosphomonoesters"],["EC%3A3.1.15.-","Exonucleases active with either ribo- or deoxyribonucleic acids and producing 5'-phosphomonoesters"],["EC%3A3.1.2.-","Thiolester hydrolases"],["EC%3A3.1.21.-","Endodeoxyribonucleases producing 5'-phosphomonoesters"],["EC%3A3.1.22.-","Endodeoxyribonucleases producing other than 5'-phosphomonoesters"],["EC%3A3.1.24.-","Site specific endodeoxyribonucleases: cleavage is not sequence specific"],["EC%3A3.1.25.-","Site-specific endodeoxyribonucleases specific for altered bases"],["EC%3A3.1.26.-","Endoribonucleases producing 5'-phosphomonoesters"],["EC%3A3.1.27.-","Endoribonucleases producing other than 5'-phosphomonoesters"],["EC%3A3.1.3.-","Phosphoric monoester hydrolases"],["EC%3A3.1.30.-","Endoribonucleases active with either ribo- or deoxyribonucleic acids and producing 5'-phosphomonoesters"],["EC%3A3.1.31.-","Endoribonucleases active with either ribo- or deoxyribonucleic acids and producing 3'-phosphomonoesters"],["EC%3A3.1.4.-","Phosphoric diester hydrolases"],["EC%3A3.1.5.-","Triphosphoric monoester hydrolases"],["EC%3A3.1.6.-","Sulfuric ester hydrolases"],["EC%3A3.1.-.-","Acting on ester bonds"],["EC%3A3.2.1.-","Glycosidases, i.e. enzymes hydrolyzing O- and S-glycosyl compounds"],["EC%3A3.2.2.-","Hydrolyzing N-glycosyl compounds"],["EC%3A3.2.-.-","Glycosylases"],["EC%3A3.3.-.-","Acting on ether bonds"],["EC%3A3.4.11.-","Aminopeptidases"],["EC%3A3.4.13.-","Dipeptidases"],["EC%3A3.4.14.-","Dipeptidyl-peptidases and tripeptidyl-peptidases"],["EC%3A3.4.16.-","Serine-type carboxypeptidases"],["EC%3A3.4.17.-","Metallocarboxypeptidases"],["EC%3A3.4.19.-","Omega peptidases"],["EC%3A3.4.21.-","Serine endopeptidases"],["EC%3A3.4.22.-","Cysteine endopeptidases"],["EC%3A3.4.23.-","Aspartic endopeptidases"],["EC%3A3.4.24.-","Metalloendopeptidases"],["EC%3A3.4.25.-","Threonine endopeptidases"],["EC%3A3.4.-.-","Acting on peptide bonds (peptidases)"],["EC%3A3.5.1.-","In linear amides"],["EC%3A3.5.2.-","In cyclic amides"],["EC%3A3.5.3.-","In linear amidines"],["EC%3A3.5.4.-","In cyclic amidines"],["EC%3A3.5.99.-","In other compounds"],["EC%3A3.5.-.-","Acting on carbon-nitrogen bonds, other than peptide bonds"],["EC%3A3.6.1.-","In phosphorus-containing anhydrides"],["EC%3A3.6.3.-","Acting on acid anhydrides; catalyzing transmembrane movement of substances"],["EC%3A3.6.4.-","Acting on ATP; involved in cellular and subcellular movement"],["EC%3A3.6.5.-","Acting on GTP; involved in cellular and subcellular movement"],["EC%3A3.6.-.-","Acting on acid anhydrides"],["EC%3A3.9.1.-","Acting on phosphorus-nitrogen bonds"],["EC%3A3.-.-.-","Hydrolases"],["EC%3A4.1.1.-","Carboxy-lyases"],["EC%3A4.1.2.-","Aldehyde-lyases"],["EC%3A4.1.3.-","Oxo-acid-lyases"],["EC%3A4.1.-.-","Carbon-carbon lyases"],["EC%3A4.2.1.-","Hydro-lyases"],["EC%3A4.2.2.-","Acting on polysaccharides"],["EC%3A4.2.3.-","Acting on phosphates"],["EC%3A4.2.99.-","Other carbon-oxygen lyases"],["EC%3A4.2.-.-","Carbon-oxygen lyases"],["EC%3A4.4.1.-","Carbon-sulfur lyases"],["EC%3A4.6.1.-","Phosphorus-oxygen lyases"],["EC%3A4.-.-.-","Lyases"],["EC%3A5.1.3.-","Acting on carbohydrates and derivatives"],["EC%3A5.1.-.-","Racemases and epimerases"],["EC%3A5.3.1.-","Interconverting aldoses and ketoses"],["EC%3A5.3.2.-","Interconverting keto- and enol-groups"],["EC%3A5.3.3.-","Transposing C=C bonds"],["EC%3A5.4.2.-","Phosphotransferases (phosphomutases)"],["EC%3A5.4.3.-","Transferring amino groups"],["EC%3A5.4.99.-","Transferring other groups"],["EC%3A5.4.-.-","Intramolecular transferases"],["EC%3A5.6.2.-","Enzymes altering nucleic acid conformation"],["EC%3A5.99.-.-","Other isomerases"],["EC%3A5.-.-.-","Isomerases"],["EC%3A6.1.1.-","Ligases forming aminoacyl-tRNA and related compounds"],["EC%3A6.1.-.-","Forming carbon-oxygen bonds"],["EC%3A6.2.1.-","Acid--thiol ligases"],["EC%3A6.2.-.-","Forming carbon-sulfur bonds"],["EC%3A6.3.1.-","Acid--ammonia (or amine) ligases (amide synthases)"],["EC%3A6.3.2.-","Acid--amino-acid ligases (peptide synthases)"],["EC%3A6.3.4.-","Other carbon--nitrogen ligases"],["EC%3A6.3.5.-","Carbon--nitrogen ligases with glutamine as amido-N-donor"],["EC%3A6.4.1.-","Forming carbon-carbon bonds"],["EC%3A6.5.1.-","Forming phosphoric ester bonds"],["EC%3A6.-.-.-","Ligases"],["EC%3A7.1.1.-","Hydron translocation or charge separation linked to oxidoreductase reactions"],["EC%3A7.2.1.-","Linked to oxidoreductase reactions"],["EC%3A7.2.2.-","Linked to the hydrolysis of a nucleoside triphosphate"],["EC%3A7.4.2.-","Linked to the hydrolysis of a nucleoside triphosphate"],["EC%3A7.5.2.-","Linked to the hydrolysis of a nucleoside triphosphate"],["EC%3A7.6.2.-","Linked to the hydrolysis of a nucleoside triphosphate"],["EC%3A7.6.-.-","Catalysing the translocation of other compounds"],["EC%3A7.-.-.-","Translocases"],["GO%3A0000148","1,3-beta-D-glucan synthase complex"],["GO%3A0008247","1-alkyl-2-acetylglycerophosphocholine esterase complex"],["GO%3A0120513","2-(3-amino-3-carboxypropyl)histidine synthase complex"],["GO%3A1902508","2-iminoacetate synthase complex"],["GO%3A0005729","2-micrometer circle DNA"],["GO%3A0009316","3-isopropylmalate dehydratase complex"],["GO%3A1990393","3M complex"],["GO%3A0032144","4-aminobutyrate transaminase complex"],["GO%3A0043540","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase complex"],["GO%3A0005945","6-phosphofructokinase complex"],["GO%3A0120259","7SK snRNP"],["GO%3A0097728","9+0 motile cilium"],["GO%3A0097731","9+0 non-motile cilium"],["GO%3A0097729","9+2 motile cilium"],["GO%3A0030686","90S preribosome"],["GO%3A0031672","A band"],["GO%3A0009329","acetate CoA-transferase complex"],["GO%3A0005948","acetolactate synthase complex"],["GO%3A0009317","acetyl-CoA carboxylase complex"],["GO%3A0005892","acetylcholine-gated channel complex"],["GO%3A0016590","ACF complex"],["GO%3A1904097","acid phosphatase complex"],["GO%3A0036063","acroblast"],["GO%3A0043160","acrosomal lumen"],["GO%3A0043159","acrosomal matrix"],["GO%3A0002080","acrosomal membrane"],["GO%3A0001669","acrosomal vesicle"],["GO%3A0098858","actin-based cell projection"],["GO%3A0030478","actin cap"],["GO%3A0030479","actin cortical patch"],["GO%3A0015629","actin cytoskeleton"],["GO%3A1990964","actin cytoskeleton-regulatory complex"],["GO%3A0061834","actin filament branch point"],["GO%3A0032432","actin filament bundle"],["GO%3A0005884","actin filament"],["GO%3A0008232","activator ecdysone receptor complex"],["GO%3A0043509","activin A complex"],["GO%3A0048179","activin receptor complex"],["GO%3A0032444","activin responsive factor complex"],["GO%3A1903144","actomyosin contractile ring actin filament"],["GO%3A0005826","actomyosin contractile ring"],["GO%3A0042641","actomyosin"],["GO%3A0042642","actomyosin, myosin complex part"],["GO%3A0061576","acyl-CoA ceramide synthase complex"],["GO%3A0140671","ADA complex"],["GO%3A1902503","adenylyltransferase complex"],["GO%3A0005912","adherens junction"],["GO%3A1903143","adrenomedullin receptor complex"],["GO%3A0016235","aggresome"],["GO%3A0097169","AIM2 inflammasome complex"],["GO%3A0110131","Aim21-Tda2 complex"],["GO%3A1990597","AIP1-IRE1 complex"],["GO%3A0060111","alae of collagen and cuticulin-based cuticle extracellular matrix"],["GO%3A1990201","alkanesulfonate monooxygenase complex"],["GO%3A0009321","alkyl hydroperoxide reductase complex"],["GO%3A0005946","alpha,alpha-trehalose-phosphate synthase complex (UDP-forming)"],["GO%3A0042105","alpha-beta T cell receptor complex"],["GO%3A0061694","alpha-D-ribose 1-methylphosphonate 5-triphosphate synthase complex"],["GO%3A0005658","alpha DNA polymerase:primase complex"],["GO%3A0005723","alpha-heterochromatin"],["GO%3A0071133","alpha9-beta1 integrin-ADAM8 complex"],["GO%3A0071065","alpha9-beta1 integrin-vascular cell adhesion molecule-1 complex"],["GO%3A0035868","alphav-beta3 integrin-HMGB1 complex"],["GO%3A0035867","alphav-beta3 integrin-IGF-1-IGF1R complex"],["GO%3A0035866","alphav-beta3 integrin-PKCalpha complex"],["GO%3A0071062","alphav-beta3 integrin-vitronectin complex"],["GO%3A0097208","alveolar lamellar body"],["GO%3A0097233","alveolar lamellar body membrane"],["GO%3A1990184","amino acid transport complex"],["GO%3A0017101","aminoacyl-tRNA synthetase multienzyme complex"],["GO%3A0009356","aminodeoxychorismate synthase complex"],["GO%3A0032281","AMPA glutamate receptor complex"],["GO%3A0044753","amphisome"],["GO%3A1904930","amphisome membrane"],["GO%3A0150056","amylin receptor complex 1"],["GO%3A0150057","amylin receptor complex 2"],["GO%3A0150058","amylin receptor complex 3"],["GO%3A0106003","amyloid-beta complex"],["GO%3A0009501","amyloplast"],["GO%3A0033097","amyloplast membrane"],["GO%3A0031250","anaerobic ribonucleoside-triphosphate reductase complex"],["GO%3A0005680","anaphase-promoting complex"],["GO%3A0070161","anchoring junction"],["GO%3A0032311","angiogenin-PRI complex"],["GO%3A0170014","ankyrin-1 complex"],["GO%3A0060108","annular furrow extracellular matrix"],["GO%3A0005642","annulate lamellae"],["GO%3A0060107","annuli extracellular matrix"],["GO%3A0061802","anterior cell cortex"],["GO%3A0005950","anthranilate synthase complex"],["GO%3A1990665","AnxA2-p11 complex"],["GO%3A0030121","AP-1 adaptor complex"],["GO%3A0030122","AP-2 adaptor complex"],["GO%3A0030123","AP-3 adaptor complex"],["GO%3A0030124","AP-4 adaptor complex"],["GO%3A0044599","AP-5 adaptor complex"],["GO%3A0030119","AP-type membrane coat adaptor complex"],["GO%3A0020007","apical complex"],["GO%3A0045179","apical cortex"],["GO%3A0090651","apical cytoplasm"],["GO%3A0097440","apical dendrite"],["GO%3A0150014","apical distal dendrite"],["GO%3A0061831","apical ectoplasmic specialization"],["GO%3A0043296","apical junction complex"],["GO%3A0045177","apical part of cell"],["GO%3A0016324","apical plasma membrane"],["GO%3A0120001","apical plasma membrane urothelial plaque"],["GO%3A0044225","apical pole of neuron"],["GO%3A0061828","apical tubulobulbar complex"],["GO%3A0016327","apicolateral plasma membrane"],["GO%3A0106037","apicomedial cortex"],["GO%3A0020026","apicomplexan dense granule"],["GO%3A0020011","apicoplast"],["GO%3A0030895","apolipoprotein B mRNA editing enzyme complex"],["GO%3A0048046","apoplast"],["GO%3A0043293","apoptosome"],["GO%3A0097589","archaeal-type flagellum"],["GO%3A0005885","Arp2/3 protein complex"],["GO%3A0034751","aryl hydrocarbon receptor complex"],["GO%3A0061574","ASAP complex"],["GO%3A0042764","ascospore-type prospore"],["GO%3A0005619","ascospore wall"],["GO%3A0005633","ascus lipid droplet"],["GO%3A0097658","Asi complex"],["GO%3A0009347","aspartate carbamoyltransferase complex"],["GO%3A0005818","aster"],["GO%3A0000235","astral microtubule"]]} \ No newline at end of file +{"mech":"ProteinTraitsMech","prefix":"NCBITaxon","base":"https://culturebotai.github.io/proteintraitsmech/browse.html#record=","total":98697,"records":[["EC%3A1.1.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.1.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.1.98.-","With other, known, acceptors"],["EC%3A1.1.99.-","With other acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.10.3.-","With oxygen as acceptor"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.12.99.-","With other acceptors"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"],["EC%3A1.13.12.-","With incorporation of one atom of oxygen (internal monooxygenases or internal mixed function oxidases)"],["EC%3A1.14.11.-","With 2-oxoglutarate as one donor, and incorporation of one atom each of oxygen into both donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.14.-","With reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.15.-","With reduced iron-sulfur protein as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.17.-","With reduced ascorbate as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.18.-","With another compound as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.19.-","With oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water"],["EC%3A1.14.99.-","Miscellaneous"],["EC%3A1.14.-.-","Acting on paired donors, with incorporation or reduction of molecular oxygen. The oxygen incorporated need not be derived from O2"],["EC%3A1.16.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.16.-.-","Oxidizing metal ions"],["EC%3A1.17.4.-","With a disulfide as acceptor"],["EC%3A1.17.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.18.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.4.-","With a disulfide as acceptor"],["EC%3A1.2.7.-","With an iron-sulfur protein as acceptor"],["EC%3A1.21.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.21.98.-","With other, known acceptors"],["EC%3A1.23.1.-","With NADH or NADPH as donor"],["EC%3A1.3.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.3.3.-","With oxygen as acceptor"],["EC%3A1.3.99.-","With other acceptors"],["EC%3A1.3.-.-","Acting on the CH-CH group of donors"],["EC%3A1.4.3.-","With oxygen as acceptor"],["EC%3A1.4.99.-","With other acceptors"],["EC%3A1.5.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.5.3.-","With oxygen as acceptor"],["EC%3A1.5.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.6.3.-","With oxygen as acceptor"],["EC%3A1.6.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.6.99.-","With other acceptors"],["EC%3A1.6.-.-","Acting on NADH or NADPH"],["EC%3A1.7.2.-","With a cytochrome as acceptor"],["EC%3A1.7.-.-","Acting on other nitrogenous compounds as donors"],["EC%3A1.8.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.8.4.-","With a disulfide as acceptor"],["EC%3A1.8.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.8.98.-","With other, known, acceptors"],["EC%3A1.8.99.-","With other acceptors"],["EC%3A1.8.-.-","Acting on a sulfur group of donors"],["EC%3A1.97.1.-","Other oxidoreductases"],["EC%3A1.-.-.-","Oxidoreductases"],["EC%3A2.1.1.-","Methyltransferases"],["EC%3A2.1.2.-","Hydroxymethyl-, formyl- and related transferases"],["EC%3A2.1.3.-","Carboxy- and carbamoyltransferases"],["EC%3A2.1.-.-","Transferring one-carbon groups"],["EC%3A2.3.1.-","Transferring groups other than amino-acyl groups"],["EC%3A2.3.2.-","Aminoacyltransferases"],["EC%3A2.3.3.-","Acyl groups converted into alkyl groups on transfer"],["EC%3A2.3.-.-","Acyltransferases"],["EC%3A2.4.1.-","Hexosyltransferases"],["EC%3A2.4.2.-","Pentosyltransferases"],["EC%3A2.4.3.-","Sialyltransferases"],["EC%3A2.4.99.-","Transferring other glycosyl groups"],["EC%3A2.4.-.-","Glycosyltransferases"],["EC%3A2.5.1.-","Transferring alkyl or aryl groups, other than methyl groups"],["EC%3A2.6.1.-","Transaminases"],["EC%3A2.6.-.-","Transferring nitrogenous groups"],["EC%3A2.7.1.-","Phosphotransferases with an alcohol group as acceptor"],["EC%3A2.7.10.-","Protein-tyrosine kinases"],["EC%3A2.7.11.-","Protein-serine/threonine kinases"],["EC%3A2.7.2.-","Phosphotransferases with a carboxy group as acceptor"],["EC%3A2.7.4.-","Phosphotransferases with a phosphate group as acceptor"],["EC%3A2.7.6.-","Diphosphotransferases"],["EC%3A2.7.7.-","Nucleotidyltransferases"],["EC%3A2.7.8.-","Transferases for other substituted phosphate groups"],["EC%3A2.7.-.-","Transferring phosphorus-containing groups"],["EC%3A2.8.1.-","Sulfurtransferases"],["EC%3A2.8.2.-","Sulfotransferases"],["EC%3A2.8.3.-","CoA-transferases"],["EC%3A2.-.-.-","Transferases"],["EC%3A3.1.1.-","Carboxylic ester hydrolases"],["EC%3A3.1.11.-","Exodeoxyribonucleases producing 5'-phosphomonoesters"],["EC%3A3.1.13.-","Exoribonucleases producing 5'-phosphomonoesters"],["EC%3A3.1.15.-","Exonucleases active with either ribo- or deoxyribonucleic acids and producing 5'-phosphomonoesters"],["EC%3A3.1.2.-","Thiolester hydrolases"],["EC%3A3.1.21.-","Endodeoxyribonucleases producing 5'-phosphomonoesters"],["EC%3A3.1.22.-","Endodeoxyribonucleases producing other than 5'-phosphomonoesters"],["EC%3A3.1.24.-","Site specific endodeoxyribonucleases: cleavage is not sequence specific"],["EC%3A3.1.25.-","Site-specific endodeoxyribonucleases specific for altered bases"],["EC%3A3.1.26.-","Endoribonucleases producing 5'-phosphomonoesters"],["EC%3A3.1.27.-","Endoribonucleases producing other than 5'-phosphomonoesters"],["EC%3A3.1.3.-","Phosphoric monoester hydrolases"],["EC%3A3.1.30.-","Endoribonucleases active with either ribo- or deoxyribonucleic acids and producing 5'-phosphomonoesters"],["EC%3A3.1.31.-","Endoribonucleases active with either ribo- or deoxyribonucleic acids and producing 3'-phosphomonoesters"],["EC%3A3.1.4.-","Phosphoric diester hydrolases"],["EC%3A3.1.5.-","Triphosphoric monoester hydrolases"],["EC%3A3.1.6.-","Sulfuric ester hydrolases"],["EC%3A3.1.-.-","Acting on ester bonds"],["EC%3A3.2.1.-","Glycosidases, i.e. enzymes hydrolyzing O- and S-glycosyl compounds"],["EC%3A3.2.2.-","Hydrolyzing N-glycosyl compounds"],["EC%3A3.2.-.-","Glycosylases"],["EC%3A3.3.-.-","Acting on ether bonds"],["EC%3A3.4.11.-","Aminopeptidases"],["EC%3A3.4.13.-","Dipeptidases"],["EC%3A3.4.14.-","Dipeptidyl-peptidases and tripeptidyl-peptidases"],["EC%3A3.4.16.-","Serine-type carboxypeptidases"],["EC%3A3.4.17.-","Metallocarboxypeptidases"],["EC%3A3.4.19.-","Omega peptidases"],["EC%3A3.4.21.-","Serine endopeptidases"],["EC%3A3.4.22.-","Cysteine endopeptidases"],["EC%3A3.4.23.-","Aspartic endopeptidases"],["EC%3A3.4.24.-","Metalloendopeptidases"],["EC%3A3.4.25.-","Threonine endopeptidases"],["EC%3A3.4.-.-","Acting on peptide bonds (peptidases)"],["EC%3A3.5.1.-","In linear amides"],["EC%3A3.5.2.-","In cyclic amides"],["EC%3A3.5.3.-","In linear amidines"],["EC%3A3.5.4.-","In cyclic amidines"],["EC%3A3.5.99.-","In other compounds"],["EC%3A3.5.-.-","Acting on carbon-nitrogen bonds, other than peptide bonds"],["EC%3A3.6.1.-","In phosphorus-containing anhydrides"],["EC%3A3.6.3.-","Acting on acid anhydrides; catalyzing transmembrane movement of substances"],["EC%3A3.6.4.-","Acting on ATP; involved in cellular and subcellular movement"],["EC%3A3.6.5.-","Acting on GTP; involved in cellular and subcellular movement"],["EC%3A3.6.-.-","Acting on acid anhydrides"],["EC%3A3.9.1.-","Acting on phosphorus-nitrogen bonds"],["EC%3A3.-.-.-","Hydrolases"],["EC%3A4.1.1.-","Carboxy-lyases"],["EC%3A4.1.2.-","Aldehyde-lyases"],["EC%3A4.1.3.-","Oxo-acid-lyases"],["EC%3A4.1.-.-","Carbon-carbon lyases"],["EC%3A4.2.1.-","Hydro-lyases"],["EC%3A4.2.2.-","Acting on polysaccharides"],["EC%3A4.2.3.-","Acting on phosphates"],["EC%3A4.2.99.-","Other carbon-oxygen lyases"],["EC%3A4.2.-.-","Carbon-oxygen lyases"],["EC%3A4.4.1.-","Carbon-sulfur lyases"],["EC%3A4.6.1.-","Phosphorus-oxygen lyases"],["EC%3A4.-.-.-","Lyases"],["EC%3A5.1.3.-","Acting on carbohydrates and derivatives"],["EC%3A5.1.-.-","Racemases and epimerases"],["EC%3A5.3.1.-","Interconverting aldoses and ketoses"],["EC%3A5.3.2.-","Interconverting keto- and enol-groups"],["EC%3A5.3.3.-","Transposing C=C bonds"],["EC%3A5.4.2.-","Phosphotransferases (phosphomutases)"],["EC%3A5.4.3.-","Transferring amino groups"],["EC%3A5.4.99.-","Transferring other groups"],["EC%3A5.4.-.-","Intramolecular transferases"],["EC%3A5.6.2.-","Enzymes altering nucleic acid conformation"],["EC%3A5.99.-.-","Other isomerases"],["EC%3A5.-.-.-","Isomerases"],["EC%3A6.1.1.-","Ligases forming aminoacyl-tRNA and related compounds"],["EC%3A6.1.-.-","Forming carbon-oxygen bonds"],["EC%3A6.2.1.-","Acid--thiol ligases"],["EC%3A6.2.-.-","Forming carbon-sulfur bonds"],["EC%3A6.3.1.-","Acid--ammonia (or amine) ligases (amide synthases)"],["EC%3A6.3.2.-","Acid--amino-acid ligases (peptide synthases)"],["EC%3A6.3.4.-","Other carbon--nitrogen ligases"],["EC%3A6.3.5.-","Carbon--nitrogen ligases with glutamine as amido-N-donor"],["EC%3A6.4.1.-","Forming carbon-carbon bonds"],["EC%3A6.5.1.-","Forming phosphoric ester bonds"],["EC%3A6.-.-.-","Ligases"],["EC%3A7.1.1.-","Hydron translocation or charge separation linked to oxidoreductase reactions"],["EC%3A7.2.1.-","Linked to oxidoreductase reactions"],["EC%3A7.2.2.-","Linked to the hydrolysis of a nucleoside triphosphate"],["EC%3A7.4.2.-","Linked to the hydrolysis of a nucleoside triphosphate"],["EC%3A7.5.2.-","Linked to the hydrolysis of a nucleoside triphosphate"],["EC%3A7.6.2.-","Linked to the hydrolysis of a nucleoside triphosphate"],["EC%3A7.6.-.-","Catalysing the translocation of other compounds"],["EC%3A7.-.-.-","Translocases"],["GO%3A0000148","1,3-beta-D-glucan synthase complex"],["GO%3A0008247","1-alkyl-2-acetylglycerophosphocholine esterase complex"],["GO%3A0120513","2-(3-amino-3-carboxypropyl)histidine synthase complex"],["GO%3A1902508","2-iminoacetate synthase complex"],["GO%3A0005729","2-micrometer circle DNA"],["GO%3A0009316","3-isopropylmalate dehydratase complex"],["GO%3A1990393","3M complex"],["GO%3A0032144","4-aminobutyrate transaminase complex"],["GO%3A0043540","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase complex"],["GO%3A0005945","6-phosphofructokinase complex"],["GO%3A0120259","7SK snRNP"],["GO%3A0097728","9+0 motile cilium"],["GO%3A0097731","9+0 non-motile cilium"],["GO%3A0097729","9+2 motile cilium"],["GO%3A0030686","90S preribosome"],["GO%3A0031672","A band"],["GO%3A0009329","acetate CoA-transferase complex"],["GO%3A0005948","acetolactate synthase complex"],["GO%3A0009317","acetyl-CoA carboxylase complex"],["GO%3A0005892","acetylcholine-gated channel complex"],["GO%3A0016590","ACF complex"],["GO%3A1904097","acid phosphatase complex"],["GO%3A0036063","acroblast"],["GO%3A0043160","acrosomal lumen"],["GO%3A0043159","acrosomal matrix"],["GO%3A0002080","acrosomal membrane"],["GO%3A0001669","acrosomal vesicle"],["GO%3A0098858","actin-based cell projection"],["GO%3A0030478","actin cap"],["GO%3A0030479","actin cortical patch"],["GO%3A0015629","actin cytoskeleton"],["GO%3A1990964","actin cytoskeleton-regulatory complex"],["GO%3A0061834","actin filament branch point"],["GO%3A0032432","actin filament bundle"],["GO%3A0005884","actin filament"],["GO%3A0008232","activator ecdysone receptor complex"],["GO%3A0043509","activin A complex"],["GO%3A0048179","activin receptor complex"],["GO%3A0032444","activin responsive factor complex"],["GO%3A1903144","actomyosin contractile ring actin filament"],["GO%3A0005826","actomyosin contractile ring"],["GO%3A0042641","actomyosin"],["GO%3A0042642","actomyosin, myosin complex part"],["GO%3A0061576","acyl-CoA ceramide synthase complex"],["GO%3A0140671","ADA complex"],["GO%3A1902503","adenylyltransferase complex"],["GO%3A0005912","adherens junction"],["GO%3A1903143","adrenomedullin receptor complex"],["GO%3A0016235","aggresome"],["GO%3A0097169","AIM2 inflammasome complex"],["GO%3A0110131","Aim21-Tda2 complex"],["GO%3A1990597","AIP1-IRE1 complex"],["GO%3A0060111","alae of collagen and cuticulin-based cuticle extracellular matrix"],["GO%3A1990201","alkanesulfonate monooxygenase complex"],["GO%3A0009321","alkyl hydroperoxide reductase complex"],["GO%3A0005946","alpha,alpha-trehalose-phosphate synthase complex (UDP-forming)"],["GO%3A0042105","alpha-beta T cell receptor complex"],["GO%3A0061694","alpha-D-ribose 1-methylphosphonate 5-triphosphate synthase complex"],["GO%3A0005658","alpha DNA polymerase:primase complex"],["GO%3A0005723","alpha-heterochromatin"],["GO%3A0071133","alpha9-beta1 integrin-ADAM8 complex"],["GO%3A0071065","alpha9-beta1 integrin-vascular cell adhesion molecule-1 complex"],["GO%3A0035868","alphav-beta3 integrin-HMGB1 complex"],["GO%3A0035867","alphav-beta3 integrin-IGF-1-IGF1R complex"],["GO%3A0035866","alphav-beta3 integrin-PKCalpha complex"],["GO%3A0071062","alphav-beta3 integrin-vitronectin complex"],["GO%3A0097208","alveolar lamellar body"],["GO%3A0097233","alveolar lamellar body membrane"],["GO%3A1990184","amino acid transport complex"],["GO%3A0017101","aminoacyl-tRNA synthetase multienzyme complex"],["GO%3A0009356","aminodeoxychorismate synthase complex"],["GO%3A0032281","AMPA glutamate receptor complex"],["GO%3A0044753","amphisome"],["GO%3A1904930","amphisome membrane"],["GO%3A0150056","amylin receptor complex 1"],["GO%3A0150057","amylin receptor complex 2"],["GO%3A0150058","amylin receptor complex 3"],["GO%3A0106003","amyloid-beta complex"],["GO%3A0009501","amyloplast"],["GO%3A0033097","amyloplast membrane"],["GO%3A0031250","anaerobic ribonucleoside-triphosphate reductase complex"],["GO%3A0005680","anaphase-promoting complex"],["GO%3A0070161","anchoring junction"],["GO%3A0032311","angiogenin-PRI complex"],["GO%3A0170014","ankyrin-1 complex"],["GO%3A0060108","annular furrow extracellular matrix"],["GO%3A0005642","annulate lamellae"],["GO%3A0060107","annuli extracellular matrix"],["GO%3A0061802","anterior cell cortex"],["GO%3A0005950","anthranilate synthase complex"],["GO%3A1990665","AnxA2-p11 complex"],["GO%3A0030121","AP-1 adaptor complex"],["GO%3A0030122","AP-2 adaptor complex"],["GO%3A0030123","AP-3 adaptor complex"],["GO%3A0030124","AP-4 adaptor complex"],["GO%3A0044599","AP-5 adaptor complex"],["GO%3A0030119","AP-type membrane coat adaptor complex"],["GO%3A0020007","apical complex"],["GO%3A0045179","apical cortex"],["GO%3A0090651","apical cytoplasm"],["GO%3A0097440","apical dendrite"],["GO%3A0150014","apical distal dendrite"],["GO%3A0061831","apical ectoplasmic specialization"],["GO%3A0043296","apical junction complex"],["GO%3A0045177","apical part of cell"],["GO%3A0016324","apical plasma membrane"],["GO%3A0120001","apical plasma membrane urothelial plaque"],["GO%3A0044225","apical pole of neuron"],["GO%3A0061828","apical tubulobulbar complex"],["GO%3A0016327","apicolateral plasma membrane"],["GO%3A0106037","apicomedial cortex"],["GO%3A0020026","apicomplexan dense granule"],["GO%3A0020011","apicoplast"],["GO%3A0030895","apolipoprotein B mRNA editing enzyme complex"],["GO%3A0048046","apoplast"],["GO%3A0043293","apoptosome"],["GO%3A0097589","archaeal-type flagellum"],["GO%3A0005885","Arp2/3 protein complex"],["GO%3A0034751","aryl hydrocarbon receptor complex"],["GO%3A0061574","ASAP complex"],["GO%3A0042764","ascospore-type prospore"],["GO%3A0005619","ascospore wall"],["GO%3A0005633","ascus lipid droplet"],["GO%3A0097658","Asi complex"],["GO%3A0009347","aspartate carbamoyltransferase complex"],["GO%3A0005818","aster"],["GO%3A0000235","astral microtubule"]]} \ No newline at end of file diff --git a/assets/fleet/cells/ProteinTraitsMech--PATO.json b/assets/fleet/cells/ProteinTraitsMech--PATO.json index 26529c2..7ee11d2 100644 --- a/assets/fleet/cells/ProteinTraitsMech--PATO.json +++ b/assets/fleet/cells/ProteinTraitsMech--PATO.json @@ -1 +1 @@ -{"mech":"ProteinTraitsMech","prefix":"PATO","base":"https://culturebotai.github.io/proteintraitsmech/browse.html#record=","total":79,"records":[["GO%3A0031413","regulation of buoyancy"],["ARO%3A3003421","antibiotic resistant mprF"],["ARO%3A3003324","Bacillus subtilis mprF"],["ARO%3A3003772","Brucella suis mprF"],["ARO%3A3003773","Clostridium perfringens mprF"],["ARO%3A3003091","daptomycin resistant mprF"],["ARO%3A3000863","defensin resistant mprF"],["ARO%3A3003770","Listeria monocytogenes mprF"],["ARO%3A3003769","Staphylococcus aureus mprF"],["ARO%3A3003319","Staphylococcus aureus mprF with mutation conferring resistance to daptomycin"],["ARO%3A3003774","Streptococcus agalactiae mprF"],["PATO%3A0002288","decreased elasticity"],["PATO%3A0001777","decreased flexibility"],["PATO%3A0002303","decreased object quality"],["PATO%3A0001171","elastic"],["PATO%3A0001031","elasticity"],["PATO%3A0001543","flexibility"],["PATO%3A0001544","flexible"],["PATO%3A0002287","increased elasticity"],["PATO%3A0001776","increased flexibility"],["PATO%3A0002305","increased object quality"],["PATO%3A0001172","inelastic"],["PATO%3A0001545","inflexible"],["PATO%3A0045016","normal elasticity"],["PATO%3A0045021","normal flexibility"],["PATO%3A0045001","normal object quality"],["PATO%3A0001018","physical quality"],["PATO%3A0001546","quality of a solid"],["proteintraitsmech%3ASTABILITY_ACIDIC","stable under acidic conditions"],["proteintraitsmech%3ASTABILITY_ALKALINE","stable under alkaline conditions"],["proteintraitsmech%3ASTABILITY_CHEMICAL","stable under chemical-denaturant conditions"],["proteintraitsmech%3ASTABILITY_ACIDIC_DECREASED","decreased stability under acidic conditions"],["proteintraitsmech%3ASTABILITY_ALKALINE_DECREASED","decreased stability under alkaline conditions"],["proteintraitsmech%3ASTABILITY_CHEMICAL_DECREASED","decreased stability under chemical-denaturant conditions"],["proteintraitsmech%3ASTABILITY_DESICCATION_DECREASED","decreased stability under desiccating conditions"],["proteintraitsmech%3ASTABILITY_PRESSURE_DECREASED","decreased stability under high hydrostatic pressure"],["proteintraitsmech%3ASTABILITY_MECHANICAL_DECREASED","decreased stability under mechanical stress"],["proteintraitsmech%3ASTABILITY_OSMOTIC_DECREASED","decreased stability under osmotic stress"],["proteintraitsmech%3ASTABILITY_OXIDATIVE_DECREASED","decreased stability under oxidative conditions"],["proteintraitsmech%3ASTABILITY_PROTEOLYTIC_DECREASED","decreased stability under proteolytic conditions"],["proteintraitsmech%3ASTABILITY_SALINE_DECREASED","decreased stability under saline (high-salt) conditions"],["proteintraitsmech%3ASTABILITY_THERMAL_DECREASED","decreased stability under thermal conditions"],["proteintraitsmech%3ASTABILITY_DESICCATION","stable under desiccating conditions"],["proteintraitsmech%3ASTABILITY_PRESSURE","stable under high hydrostatic pressure"],["proteintraitsmech%3ASTABILITY_ACIDIC_INCREASED","increased stability under acidic conditions"],["proteintraitsmech%3ASTABILITY_ALKALINE_INCREASED","increased stability under alkaline conditions"],["proteintraitsmech%3ASTABILITY_CHEMICAL_INCREASED","increased stability under chemical-denaturant conditions"],["proteintraitsmech%3ASTABILITY_DESICCATION_INCREASED","increased stability under desiccating conditions"],["proteintraitsmech%3ASTABILITY_PRESSURE_INCREASED","increased stability under high hydrostatic pressure"],["proteintraitsmech%3ASTABILITY_MECHANICAL_INCREASED","increased stability under mechanical stress"],["proteintraitsmech%3ASTABILITY_OSMOTIC_INCREASED","increased stability under osmotic stress"],["proteintraitsmech%3ASTABILITY_OXIDATIVE_INCREASED","increased stability under oxidative conditions"],["proteintraitsmech%3ASTABILITY_PROTEOLYTIC_INCREASED","increased stability under proteolytic conditions"],["proteintraitsmech%3ASTABILITY_SALINE_INCREASED","increased stability under saline (high-salt) conditions"],["proteintraitsmech%3ASTABILITY_THERMAL_INCREASED","increased stability under thermal conditions"],["proteintraitsmech%3ASTABILITY_MECHANICAL","stable under mechanical stress"],["proteintraitsmech%3ASTABILITY_OSMOTIC","stable under osmotic stress"],["proteintraitsmech%3ASTABILITY_OXIDATIVE","stable under oxidative conditions"],["proteintraitsmech%3ASTABILITY_PROTEOLYTIC","stable under proteolytic conditions"],["proteintraitsmech%3ASTABILITY_SALINE","stable under saline (high-salt) conditions"],["proteintraitsmech%3ASTABILITY_THERMAL","stable under thermal conditions"],["PATO%3A0015028","decreased stability"],["PATO%3A0015027","increased stability"],["PATO%3A0015026","stability"],["PATO%3A0000141","structure"],["PATO%3A0001664","decreased solubility"],["PATO%3A0001986","dissolved"],["PATO%3A0002193","electric charge"],["PATO%3A0001885","hydrophobic"],["PATO%3A0001884","hydrophobicity"],["PATO%3A0001663","increased solubility"],["PATO%3A0001538","insoluble in"],["PATO%3A0002182","molecular quality"],["PATO%3A0002196","negative charge"],["PATO%3A0002194","neutral charge"],["PATO%3A0045062","normal solubility"],["PATO%3A0002195","positive charge"],["PATO%3A0001536","solubility"],["PATO%3A0001537","soluble in"]]} \ No newline at end of file +{"mech":"ProteinTraitsMech","prefix":"PATO","base":"https://culturebotai.github.io/proteintraitsmech/browse.html#record=","total":81,"records":[["GO%3A0031413","regulation of buoyancy"],["ARO%3A3003421","antibiotic resistant mprF"],["ARO%3A3003324","Bacillus subtilis mprF"],["ARO%3A3003772","Brucella suis mprF"],["ARO%3A3003773","Clostridium perfringens mprF"],["ARO%3A3003091","daptomycin resistant mprF"],["ARO%3A3000863","defensin resistant mprF"],["ARO%3A3003770","Listeria monocytogenes mprF"],["ARO%3A3003769","Staphylococcus aureus mprF"],["ARO%3A3003319","Staphylococcus aureus mprF with mutation conferring resistance to daptomycin"],["ARO%3A3003774","Streptococcus agalactiae mprF"],["PATO%3A0002288","decreased elasticity"],["PATO%3A0001777","decreased flexibility"],["PATO%3A0002303","decreased object quality"],["PATO%3A0001171","elastic"],["PATO%3A0001031","elasticity"],["PATO%3A0001543","flexibility"],["PATO%3A0001544","flexible"],["PATO%3A0002287","increased elasticity"],["PATO%3A0001776","increased flexibility"],["PATO%3A0002305","increased object quality"],["PATO%3A0001172","inelastic"],["PATO%3A0001545","inflexible"],["PATO%3A0045016","normal elasticity"],["PATO%3A0045021","normal flexibility"],["PATO%3A0045001","normal object quality"],["PATO%3A0001018","physical quality"],["PATO%3A0001546","quality of a solid"],["proteintraitsmech%3ASTABILITY_ACIDIC","stable under acidic conditions"],["proteintraitsmech%3ASTABILITY_ALKALINE","stable under alkaline conditions"],["proteintraitsmech%3ASTABILITY_CHEMICAL","stable under chemical-denaturant conditions"],["proteintraitsmech%3ASTABILITY_ACIDIC_DECREASED","decreased stability under acidic conditions"],["proteintraitsmech%3ASTABILITY_ALKALINE_DECREASED","decreased stability under alkaline conditions"],["proteintraitsmech%3ASTABILITY_CHEMICAL_DECREASED","decreased stability under chemical-denaturant conditions"],["proteintraitsmech%3ASTABILITY_DESICCATION_DECREASED","decreased stability under desiccating conditions"],["proteintraitsmech%3ASTABILITY_PRESSURE_DECREASED","decreased stability under high hydrostatic pressure"],["proteintraitsmech%3ASTABILITY_MECHANICAL_DECREASED","decreased stability under mechanical stress"],["proteintraitsmech%3ASTABILITY_OSMOTIC_DECREASED","decreased stability under osmotic stress"],["proteintraitsmech%3ASTABILITY_OXIDATIVE_DECREASED","decreased stability under oxidative conditions"],["proteintraitsmech%3ASTABILITY_PROTEOLYTIC_DECREASED","decreased stability under proteolytic conditions"],["proteintraitsmech%3ASTABILITY_SALINE_DECREASED","decreased stability under saline (high-salt) conditions"],["proteintraitsmech%3ASTABILITY_THERMAL_DECREASED","decreased stability under thermal conditions"],["proteintraitsmech%3ASTABILITY_DESICCATION","stable under desiccating conditions"],["proteintraitsmech%3ASTABILITY_PRESSURE","stable under high hydrostatic pressure"],["proteintraitsmech%3ASTABILITY_ACIDIC_INCREASED","increased stability under acidic conditions"],["proteintraitsmech%3ASTABILITY_ALKALINE_INCREASED","increased stability under alkaline conditions"],["proteintraitsmech%3ASTABILITY_CHEMICAL_INCREASED","increased stability under chemical-denaturant conditions"],["proteintraitsmech%3ASTABILITY_DESICCATION_INCREASED","increased stability under desiccating conditions"],["proteintraitsmech%3ASTABILITY_PRESSURE_INCREASED","increased stability under high hydrostatic pressure"],["proteintraitsmech%3ASTABILITY_MECHANICAL_INCREASED","increased stability under mechanical stress"],["proteintraitsmech%3ASTABILITY_OSMOTIC_INCREASED","increased stability under osmotic stress"],["proteintraitsmech%3ASTABILITY_OXIDATIVE_INCREASED","increased stability under oxidative conditions"],["proteintraitsmech%3ASTABILITY_PROTEOLYTIC_INCREASED","increased stability under proteolytic conditions"],["proteintraitsmech%3ASTABILITY_SALINE_INCREASED","increased stability under saline (high-salt) conditions"],["proteintraitsmech%3ASTABILITY_THERMAL_INCREASED","increased stability under thermal conditions"],["proteintraitsmech%3ASTABILITY_MECHANICAL","stable under mechanical stress"],["proteintraitsmech%3ASTABILITY_OSMOTIC","stable under osmotic stress"],["proteintraitsmech%3ASTABILITY_OXIDATIVE","stable under oxidative conditions"],["proteintraitsmech%3ASTABILITY_PROTEOLYTIC","stable under proteolytic conditions"],["proteintraitsmech%3ASTABILITY_SALINE","stable under saline (high-salt) conditions"],["proteintraitsmech%3ASTABILITY_THERMAL","stable under thermal conditions"],["PATO%3A0015028","decreased stability"],["PATO%3A0015027","increased stability"],["PATO%3A0015026","stability"],["PATO%3A0000141","structure"],["PATO%3A0001664","decreased solubility"],["PATO%3A0001986","dissolved"],["PATO%3A0002193","electric charge"],["PATO%3A0001887","hydrophilic"],["PATO%3A0001886","hydrophilicity"],["PATO%3A0001885","hydrophobic"],["PATO%3A0001884","hydrophobicity"],["PATO%3A0001663","increased solubility"],["PATO%3A0001538","insoluble in"],["PATO%3A0002182","molecular quality"],["PATO%3A0002196","negative charge"],["PATO%3A0002194","neutral charge"],["PATO%3A0045062","normal solubility"],["PATO%3A0002195","positive charge"],["PATO%3A0001536","solubility"],["PATO%3A0001537","soluble in"]]} \ No newline at end of file diff --git a/assets/fleet/cells/TraitMech--METPO.json b/assets/fleet/cells/TraitMech--METPO.json index 246bbcc..eab9f28 100644 --- a/assets/fleet/cells/TraitMech--METPO.json +++ b/assets/fleet/cells/TraitMech--METPO.json @@ -1 +1 @@ -{"mech":"TraitMech","prefix":"METPO","base":"https://culturebotai.github.io/TraitMech/pages/traits/","total":681,"records":[["ecology/animal_pathogen.html","animal pathogen"],["ecology/biofilm_formation.html","biofilm formation"],["ecology/biosafety_level.html","biosafety level"],["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/biosafety_level_2.html","biosafety level 2"],["ecology/biosafety_level_3.html","biosafety level 3"],["ecology/biosafety_level_4.html","biosafety level 4"],["ecology/biosafety_level_5.html","biosafety level 5"],["ecology/commensalism.html","commensalism"],["ecology/endosymbiosis.html","endosymbiosis"],["ecology/free_living.html","free-living"],["ecology/gut_associated.html","gut-associated"],["ecology/habitat_association.html","habitat association"],["ecology/host_associated.html","host-associated"],["ecology/human_pathogen.html","human pathogen"],["ecology/mutualism.html","mutualism"],["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["ecology/opportunistic_pathogen.html","opportunistic pathogen"],["ecology/parasitism.html","parasitism"],["ecology/pathogenic_to_host.html","pathogenic to host"],["ecology/plant_pathogen.html","plant pathogen"],["ecology/predatory_bacterium.html","predatory bacterium"],["ecology/rhizosphere_association.html","rhizosphere association"],["ecology/saprotrophy.html","saprotrophy"],["ecology/symbiosis.html","symbiosis"],["environment/acidophilic.html","acidophilic"],["environment/acidotolerant.html","acidotolerant"],["environment/aerobic.html","aerobic"],["environment/aerotolerant.html","aerotolerant"],["environment/alkalotolerant.html","alkalotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/anaerobic.html","anaerobic"],["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/capnophilic.html","capnophilic"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/copper_tolerant.html","copper tolerant"],["environment/delta_phenotype_with_numerical_limits.html","delta phenotype with numerical limits"],["environment/desiccation_tolerant.html","desiccation tolerant"],["environment/euryhaline.html","euryhaline"],["environment/extreme_hyperthermophilic.html","extreme hyperthermophilic"],["environment/extremely_halophilic.html","extremely halophilic"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultative_psychrophilic.html","facultative psychrophilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/facultatively_aerobic.html","facultatively aerobic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/growth_range_phenotype_with_numerical_limits.html","growth range phenotype with numerical limits"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/halotolerant.html","halotolerant"],["environment/hyperthermophilic.html","hyperthermophilic"],["environment/ionizing_radiation_tolerant.html","ionizing radiation tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["environment/mesophilic.html","mesophilic"],["environment/metal_tolerant.html","metal tolerant"],["environment/microaerophilic.html","microaerophilic"],["environment/microaerotolerant.html","microaerotolerant"],["environment/moderately_halophilic.html","moderately halophilic"],["environment/nacl_delta.html","NaCl delta"],["environment/nacl_delta_high.html","NaCl delta high"],["environment/nacl_delta_low.html","NaCl delta low"],["environment/nacl_delta_mid1.html","NaCl delta mid1"],["environment/nacl_delta_mid2.html","NaCl delta mid2"],["environment/nacl_optimum.html","NaCl optimum"],["environment/nacl_optimum_high.html","NaCl optimum high"],["environment/nacl_optimum_low.html","NaCl optimum low"],["environment/nacl_optimum_mid1.html","NaCl optimum mid1"],["environment/nacl_optimum_mid2.html","NaCl optimum mid2"],["environment/nacl_range.html","NaCl range"],["environment/nacl_range_high.html","NaCl range high"],["environment/nacl_range_low.html","NaCl range low"],["environment/nacl_range_mid1.html","NaCl range mid1"],["environment/nacl_range_mid2.html","NaCl range mid2"],["environment/neutrophilic.html","neutrophilic"],["environment/non_halophilic.html","non halophilic"],["environment/obligately_acidophilic.html","obligately acidophilic"],["environment/obligately_aerobic.html","obligately aerobic"],["environment/obligately_alkaphilic.html","obligately alkaliphilic"],["environment/obligately_anaerobic.html","obligately anaerobic"],["environment/obligately_piezophilic.html","obligately piezophilic"],["environment/optimum_phenotype_with_numerical_limits.html","optimum phenotype with numerical limits"],["environment/oxygen_preference.html","oxygen preference"],["environment/ph_delta.html","pH delta"],["environment/ph_delta_high.html","pH delta high"],["environment/ph_delta_low.html","pH delta low"],["environment/ph_delta_mid1.html","pH delta mid1"],["environment/ph_delta_mid2.html","pH delta mid2"],["environment/ph_delta_mid3.html","pH delta mid3"],["environment/ph_delta_very_low.html","pH delta very low"],["environment/ph_growth_preference.html","pH growth preference"],["environment/ph_optimum.html","pH optimum"],["environment/ph_optimum_high.html","pH optimum high"],["environment/ph_optimum_low.html","pH optimum low"],["environment/ph_optimum_mid1.html","pH optimum mid1"],["environment/ph_optimum_mid2.html","pH optimum mid2"],["environment/ph_phenotype_with_numerical_limits.html","pH phenotype with numerical limits"],["environment/ph_range.html","pH range"],["environment/ph_range_high.html","pH range high"],["environment/ph_range_low.html","pH range low"],["environment/ph_range_mid1.html","pH range mid1"],["environment/ph_range_mid2.html","pH range mid2"],["environment/ph_range_mid3.html","pH range mid3"],["environment/ph_range_very_low.html","pH range very low"],["environment/piezophilic.html","piezophilic"],["environment/piezotolerant.html","piezotolerant"],["environment/pressure_delta.html","pressure delta"],["environment/pressure_optimum.html","pressure optimum"],["environment/pressure_range.html","pressure range"],["environment/psychrophilic.html","psychrophilic"],["environment/psychrotolerant.html","psychrotolerant"],["environment/radiotolerant.html","radiotolerant"],["environment/salinity_phenotype_with_numerical_limits.html","salinity phenotype with numerical limits"],["environment/slightly_halophilic.html","slightly halophilic"],["environment/stenohaline.html","stenohaline"],["environment/strictly_anaerobic.html","strictly anaerobic"],["environment/temperature_delta.html","temperature delta"],["environment/temperature_delta_high.html","temperature delta high"],["environment/temperature_delta_low.html","temperature delta low"],["environment/temperature_delta_mid1.html","temperature delta mid1"],["environment/temperature_delta_mid2.html","temperature delta mid2"],["environment/temperature_delta_very_low.html","temperature delta very low"],["environment/temperature_optimum.html","temperature optimum"],["environment/temperature_optimum_high.html","temperature optimum high"],["environment/temperature_optimum_low.html","temperature optimum low"],["environment/temperature_optimum_mid1.html","temperature optimum mid1"],["environment/temperature_optimum_mid2.html","temperature optimum mid2"],["environment/temperature_optimum_mid3.html","temperature optimum mid3"],["environment/temperature_optimum_mid4.html","temperature optimum mid4"],["environment/temperature_optimum_very_low.html","temperature optimum very low"],["environment/temperature_phenotype_with_numerical_limits.html","temperature phenotype with numerical limits"],["environment/temperature_preference.html","temperature preference"],["environment/temperature_range.html","temperature range"],["environment/temperature_range_high.html","temperature range high"],["environment/temperature_range_low.html","temperature range low"],["environment/temperature_range_mid1.html","temperature range mid1"],["environment/temperature_range_mid2.html","temperature range mid2"],["environment/temperature_range_mid3.html","temperature range mid3"],["environment/temperature_range_mid4.html","temperature range mid4"],["environment/temperature_range_very_low.html","temperature range very low"],["environment/thermophilic.html","thermophilic"],["environment/thermotolerant.html","thermotolerant"],["environment/uv_radiation_tolerant.html","UV radiation tolerant"],["environment/xerophilic.html","xerophilic"],["environment/zinc_tolerant.html","zinc tolerant"],["genomics/abie_system.html","AbiE system"],["genomics/abik_system.html","AbiK system"],["genomics/abiq_system.html","AbiQ system"],["genomics/abit_system.html","AbiT system"],["genomics/abiz_system.html","AbiZ system"],["genomics/abortive_infection_system.html","abortive infection system"],["genomics/aditi_system.html","Aditi system"],["genomics/avast_system.html","AVAST system"],["genomics/azaca_system.html","Azaca system"],["genomics/belenos_system.html","Belenos system"],["genomics/belisama_system.html","Belisama system"],["genomics/borvo_system.html","Borvo system"],["genomics/brex_system.html","BREX system"],["genomics/brigantia_system.html","Brigantia system"],["genomics/bunzi_system.html","Bunzi system"],["genomics/butters_gp30_gp31_system.html","Butters gp30-gp31 system"],["genomics/butters_gp57r_system.html","Butters gp57r system"],["genomics/caprel_system.html","CapRel system"],["genomics/cbass_system.html","CBASS system"],["genomics/ceres_system.html","Ceres system"],["genomics/cernunnos_system.html","Cernunnos system"],["genomics/charlie_gp32_system.html","Charlie gp32 system"],["genomics/codon_usage_bias.html","codon usage bias"],["genomics/crispr_cas_system.html","CRISPR-Cas system"],["genomics/damona_system.html","Damona system"],["genomics/darna_system.html","DARNA system"],["genomics/dartg_system.html","DarTG system"],["genomics/dazbog_system.html","Dazbog system"],["genomics/dctpdeaminase_system.html","dCTPdeaminase system"],["genomics/ddmde_system.html","DdmDE system"],["genomics/dgtpase_system.html","dGTPase system"],["genomics/disarm_system.html","DISARM system"],["genomics/divona_system.html","Divona system"],["genomics/dnd_system.html","Dnd system"],["genomics/dndcdea_pbeabcd_system.html","DndCDEA-PbeABCD system"],["genomics/dodola_system.html","Dodola system"],["genomics/dpd_system.html","Dpd system"],["genomics/drt_system.html","DRT system"],["genomics/druantia_system.html","Druantia system"],["genomics/dsr_system.html","Dsr system"],["genomics/eleos_system.html","Eleos system"],["genomics/epona_system.html","Epona system"],["genomics/esos_system.html","Esos system"],["genomics/gabija_system.html","Gabija system"],["genomics/gc_content.html","GC content"],["genomics/gc_high.html","GC high"],["genomics/gc_low.html","GC low"],["genomics/gc_mid1.html","GC mid1"],["genomics/gc_mid2.html","GC mid2"],["genomics/gc_skew.html","GC skew"],["genomics/geb_system.html","Geb system"],["genomics/genome_size.html","genome size"],["genomics/genome_streamlining.html","genome streamlining"],["genomics/hachiman_system.html","Hachiman system"],["genomics/hailong_system.html","Hailong system"],["genomics/hna_system.html","Hna system"],["genomics/kiwa_system.html","Kiwa system"],["genomics/lamassu_system.html","Lamassu system"],["genomics/lugos_system.html","Lugos system"],["genomics/menshen_system.html","Menshen system"],["genomics/mmb_gp29_gp30_system.html","MMB gp29-gp30 system"],["genomics/mobile_genetic_element.html","mobile genetic element"],["genomics/mokosh_system.html","Mokosh system"],["genomics/nantosuelta_system.html","Nantosuelta system"],["genomics/nemetona_system.html","Nemetona system"],["genomics/ogmios_system.html","Ogmios system"],["genomics/olokun_system.html","Olokun system"],["genomics/oshun_system.html","Oshun system"],["genomics/panchino_gp28_system.html","Panchino gp28 system"],["genomics/pangenome_openness.html","pangenome openness"],["genomics/paris_system.html","PARIS system"],["genomics/phage_defense_system.html","phage defense system"],["genomics/phosphorothioate_defense_system.html","phosphorothioate defense system"],["genomics/phrann_gp29_gp30_system.html","Phrann gp29-gp30 system"],["genomics/plasmid_carriage.html","plasmid carriage"],["genomics/ploidy.html","ploidy"],["genomics/prithvi_system.html","Prithvi system"],["genomics/prometheus_system.html","Prometheus system"],["genomics/psyrta_system.html","PsyrTA system"],["genomics/pycsar_system.html","Pycsar system"],["genomics/radar_system.html","RADAR system"],["genomics/restriction_modification_system.html","restriction-modification system"],["genomics/retron_system.html","Retron system"],["genomics/rosmerta_system.html","RosmerTA system"],["genomics/rrna_operon_copy_number.html","rRNA operon copy number"],["genomics/sefir_system.html","SEFIR system"],["genomics/septu_system.html","Septu system"],["genomics/shango_system.html","Shango system"],["genomics/shedu_system.html","Shedu system"],["genomics/shosta_system.html","ShosTA system"],["genomics/sirona_system.html","Sirona system"],["genomics/sofic_system.html","SoFIC system"],["genomics/sparta_system.html","SPARTA system"],["genomics/sspabcd_sspe_system.html","SspABCD-SspE system"],["genomics/sspabcd_sspfgh_system.html","SspABCD-SspFGH system"],["genomics/sucellos_system.html","Sucellos system"],["genomics/taranis_system.html","Taranis system"],["genomics/thoeris_system.html","Thoeris system"],["genomics/tiamat_system.html","Tiamat system"],["genomics/toutatis_system.html","Toutatis system"],["genomics/toxin_system.html","ToxIN system"],["genomics/ukko_system.html","Ukko system"],["genomics/uzume_system.html","Uzume system"],["genomics/veles_system.html","Veles system"],["genomics/viperin_system.html","Viperin system"],["genomics/wadjet_system.html","Wadjet system"],["genomics/zorya_system.html","Zorya system"],["metabolism/accumulates.html","accumulates"],["metabolism/acetoclastic_methanogenesis.html","acetoclastic methanogenesis"],["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/acetone_butanol_ethanol_fermentation.html","acetone-butanol-ethanol fermentation"],["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/anaerobic_ammonium_oxidation.html","anaerobic ammonium oxidation"],["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/aromatic_compound_degradation.html","aromatic compound degradation"],["metabolism/arsenate_respiration.html","arsenate respiration"],["metabolism/arsenite_oxidation.html","arsenite oxidation"],["metabolism/assimilates.html","assimilates"],["metabolism/biopolymer_degradation.html","biopolymer degradation"],["metabolism/builds_acid_from.html","builds acid from"],["metabolism/builds_base_from.html","builds base from"],["metabolism/builds_gas_from.html","builds gas from"],["metabolism/butanediol_fermentation.html","2,3-butanediol fermentation"],["metabolism/butyric_acid_fermentation.html","butyric acid fermentation"],["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"],["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/capable_of.html","capable of"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/cellulolysis.html","cellulolysis"],["metabolism/chitinolysis.html","chitinolysis"],["metabolism/chlorate_respiration.html","chlorate respiration"],["metabolism/citrate_fermentation.html","citrate fermentation"],["metabolism/compartmentalizes.html","compartmentalizes"],["metabolism/complete_ammonia_oxidation.html","complete ammonia oxidation"],["metabolism/dark_hydrogen_oxidation.html","dark hydrogen oxidation"],["metabolism/degrades.html","degrades"],["metabolism/denitrification.html","denitrification"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/dimethyl_sulfoxide_respiration.html","dimethyl sulfoxide respiration"],["metabolism/disproportionates.html","disproportionates"],["metabolism/disproportionation.html","Disproportionation"],["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"],["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"],["metabolism/does_not_accumulate.html","does not accumulate"],["metabolism/does_not_assimilate.html","does not assimilate"],["metabolism/does_not_build_acid_from.html","does not build acid from"],["metabolism/does_not_build_base_from.html","does not build base from"],["metabolism/does_not_build_gas_from.html","does not build gas from"]]} \ No newline at end of file +{"mech":"TraitMech","prefix":"METPO","base":"https://culturebotai.github.io/TraitMech/pages/traits/","total":749,"records":[["ecology/animal_pathogen.html","animal pathogen"],["ecology/biofilm_formation.html","biofilm formation"],["ecology/biosafety_level.html","biosafety level"],["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/biosafety_level_2.html","biosafety level 2"],["ecology/biosafety_level_3.html","biosafety level 3"],["ecology/biosafety_level_4.html","biosafety level 4"],["ecology/biosafety_level_5.html","biosafety level 5"],["ecology/commensalism.html","commensalism"],["ecology/endosymbiosis.html","endosymbiosis"],["ecology/free_living.html","free-living"],["ecology/gut_associated.html","gut-associated"],["ecology/habitat_association.html","habitat association"],["ecology/host_associated.html","host-associated"],["ecology/human_pathogen.html","human pathogen"],["ecology/mutualism.html","mutualism"],["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["ecology/opportunistic_pathogen.html","opportunistic pathogen"],["ecology/parasitism.html","parasitism"],["ecology/pathogenic_to_host.html","pathogenic to host"],["ecology/plant_pathogen.html","plant pathogen"],["ecology/predatory_bacterium.html","predatory bacterium"],["ecology/rhizosphere_association.html","rhizosphere association"],["ecology/saprotrophy.html","saprotrophy"],["ecology/symbiosis.html","symbiosis"],["environment/acidophilic.html","acidophilic"],["environment/acidotolerant.html","acidotolerant"],["environment/aerobic.html","aerobic"],["environment/aerotolerant.html","aerotolerant"],["environment/alkalotolerant.html","alkalotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/anaerobic.html","anaerobic"],["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/capnophilic.html","capnophilic"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/copper_tolerant.html","copper tolerant"],["environment/delta_phenotype_with_numerical_limits.html","delta phenotype with numerical limits"],["environment/desiccation_tolerant.html","desiccation tolerant"],["environment/euryhaline.html","euryhaline"],["environment/extreme_hyperthermophilic.html","extreme hyperthermophilic"],["environment/extremely_halophilic.html","extremely halophilic"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultative_psychrophilic.html","facultative psychrophilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/facultatively_aerobic.html","facultatively aerobic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/growth_range_phenotype_with_numerical_limits.html","growth range phenotype with numerical limits"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/halotolerant.html","halotolerant"],["environment/hyperthermophilic.html","hyperthermophilic"],["environment/ionizing_radiation_tolerant.html","ionizing radiation tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["environment/mesophilic.html","mesophilic"],["environment/metal_tolerant.html","metal tolerant"],["environment/microaerophilic.html","microaerophilic"],["environment/microaerotolerant.html","microaerotolerant"],["environment/moderately_halophilic.html","moderately halophilic"],["environment/nacl_delta.html","NaCl delta"],["environment/nacl_delta_high.html","NaCl delta high"],["environment/nacl_delta_low.html","NaCl delta low"],["environment/nacl_delta_mid1.html","NaCl delta mid1"],["environment/nacl_delta_mid2.html","NaCl delta mid2"],["environment/nacl_optimum.html","NaCl optimum"],["environment/nacl_optimum_high.html","NaCl optimum high"],["environment/nacl_optimum_low.html","NaCl optimum low"],["environment/nacl_optimum_mid1.html","NaCl optimum mid1"],["environment/nacl_optimum_mid2.html","NaCl optimum mid2"],["environment/nacl_range.html","NaCl range"],["environment/nacl_range_high.html","NaCl range high"],["environment/nacl_range_low.html","NaCl range low"],["environment/nacl_range_mid1.html","NaCl range mid1"],["environment/nacl_range_mid2.html","NaCl range mid2"],["environment/neutrophilic.html","neutrophilic"],["environment/non_halophilic.html","non halophilic"],["environment/obligately_acidophilic.html","obligately acidophilic"],["environment/obligately_aerobic.html","obligately aerobic"],["environment/obligately_alkaphilic.html","obligately alkaliphilic"],["environment/obligately_anaerobic.html","obligately anaerobic"],["environment/obligately_piezophilic.html","obligately piezophilic"],["environment/optimum_phenotype_with_numerical_limits.html","optimum phenotype with numerical limits"],["environment/oxygen_preference.html","oxygen preference"],["environment/ph_delta.html","pH delta"],["environment/ph_delta_high.html","pH delta high"],["environment/ph_delta_low.html","pH delta low"],["environment/ph_delta_mid1.html","pH delta mid1"],["environment/ph_delta_mid2.html","pH delta mid2"],["environment/ph_delta_mid3.html","pH delta mid3"],["environment/ph_delta_very_low.html","pH delta very low"],["environment/ph_growth_preference.html","pH growth preference"],["environment/ph_optimum.html","pH optimum"],["environment/ph_optimum_high.html","pH optimum high"],["environment/ph_optimum_low.html","pH optimum low"],["environment/ph_optimum_mid1.html","pH optimum mid1"],["environment/ph_optimum_mid2.html","pH optimum mid2"],["environment/ph_phenotype_with_numerical_limits.html","pH phenotype with numerical limits"],["environment/ph_range.html","pH range"],["environment/ph_range_high.html","pH range high"],["environment/ph_range_low.html","pH range low"],["environment/ph_range_mid1.html","pH range mid1"],["environment/ph_range_mid2.html","pH range mid2"],["environment/ph_range_mid3.html","pH range mid3"],["environment/ph_range_very_low.html","pH range very low"],["environment/piezophilic.html","piezophilic"],["environment/piezotolerant.html","piezotolerant"],["environment/pressure_delta.html","pressure delta"],["environment/pressure_optimum.html","pressure optimum"],["environment/pressure_range.html","pressure range"],["environment/psychrophilic.html","psychrophilic"],["environment/psychrotolerant.html","psychrotolerant"],["environment/radiotolerant.html","radiotolerant"],["environment/salinity_phenotype_with_numerical_limits.html","salinity phenotype with numerical limits"],["environment/slightly_halophilic.html","slightly halophilic"],["environment/stenohaline.html","stenohaline"],["environment/strictly_anaerobic.html","strictly anaerobic"],["environment/temperature_delta.html","temperature delta"],["environment/temperature_delta_high.html","temperature delta high"],["environment/temperature_delta_low.html","temperature delta low"],["environment/temperature_delta_mid1.html","temperature delta mid1"],["environment/temperature_delta_mid2.html","temperature delta mid2"],["environment/temperature_delta_very_low.html","temperature delta very low"],["environment/temperature_optimum.html","temperature optimum"],["environment/temperature_optimum_high.html","temperature optimum high"],["environment/temperature_optimum_low.html","temperature optimum low"],["environment/temperature_optimum_mid1.html","temperature optimum mid1"],["environment/temperature_optimum_mid2.html","temperature optimum mid2"],["environment/temperature_optimum_mid3.html","temperature optimum mid3"],["environment/temperature_optimum_mid4.html","temperature optimum mid4"],["environment/temperature_optimum_very_low.html","temperature optimum very low"],["environment/temperature_phenotype_with_numerical_limits.html","temperature phenotype with numerical limits"],["environment/temperature_preference.html","temperature preference"],["environment/temperature_range.html","temperature range"],["environment/temperature_range_high.html","temperature range high"],["environment/temperature_range_low.html","temperature range low"],["environment/temperature_range_mid1.html","temperature range mid1"],["environment/temperature_range_mid2.html","temperature range mid2"],["environment/temperature_range_mid3.html","temperature range mid3"],["environment/temperature_range_mid4.html","temperature range mid4"],["environment/temperature_range_very_low.html","temperature range very low"],["environment/thermophilic.html","thermophilic"],["environment/thermotolerant.html","thermotolerant"],["environment/uv_radiation_tolerant.html","UV radiation tolerant"],["environment/xerophilic.html","xerophilic"],["environment/zinc_tolerant.html","zinc tolerant"],["genomics/abi2_system.html","Abi2 system"],["genomics/abia_system.html","AbiA system"],["genomics/abialpha_system.html","AbiAlpha system"],["genomics/abib_system.html","AbiB system"],["genomics/abic_system.html","AbiC system"],["genomics/abid_system.html","AbiD system"],["genomics/abie_system.html","AbiE system"],["genomics/abig_system.html","AbiG system"],["genomics/abih_system.html","AbiH system"],["genomics/abii_system.html","AbiI system"],["genomics/abij_system.html","AbiJ system"],["genomics/abik_system.html","AbiK system"],["genomics/abil_system.html","AbiL system"],["genomics/abin_system.html","AbiN system"],["genomics/abio_system.html","AbiO system"],["genomics/abip2_system.html","AbiP2 system"],["genomics/abiq_system.html","AbiQ system"],["genomics/abir_system.html","AbiR system"],["genomics/abit_system.html","AbiT system"],["genomics/abiu_system.html","AbiU system"],["genomics/abiv_system.html","AbiV system"],["genomics/abiz_system.html","AbiZ system"],["genomics/abortive_infection_system.html","abortive infection system"],["genomics/aditi_system.html","Aditi system"],["genomics/ambrosia_system.html","Ambrosia system"],["genomics/apsab_system.html","ApsAB system"],["genomics/aristaios_system.html","Aristaios system"],["genomics/audmula_system.html","Audmula system"],["genomics/avast_system.html","AVAST system"],["genomics/azaca_system.html","Azaca system"],["genomics/belenos_system.html","Belenos system"],["genomics/belisama_system.html","Belisama system"],["genomics/borvo_system.html","Borvo system"],["genomics/brex_system.html","BREX system"],["genomics/brig1_system.html","Brig1 system"],["genomics/brigantia_system.html","Brigantia system"],["genomics/bsta_system.html","BstA system"],["genomics/bunzi_system.html","Bunzi system"],["genomics/butters_gp30_gp31_system.html","Butters gp30-gp31 system"],["genomics/butters_gp57r_system.html","Butters gp57r system"],["genomics/caprel_system.html","CapRel system"],["genomics/card_nlr_system.html","CARD-NLR system"],["genomics/cbass_system.html","CBASS system"],["genomics/ceres_system.html","Ceres system"],["genomics/cernunnos_system.html","Cernunnos system"],["genomics/charlie_gp32_system.html","Charlie gp32 system"],["genomics/cmdtac_system.html","CmdTAC system"],["genomics/codon_usage_bias.html","codon usage bias"],["genomics/crispr_cas_system.html","CRISPR-Cas system"],["genomics/damona_system.html","Damona system"],["genomics/darna_system.html","DARNA system"],["genomics/dartg_system.html","DarTG system"],["genomics/dazbog_system.html","Dazbog system"],["genomics/dctpdeaminase_system.html","dCTPdeaminase system"],["genomics/ddmde_system.html","DdmDE system"],["genomics/detocs_system.html","Detocs system"],["genomics/dgtpase_system.html","dGTPase system"],["genomics/dionysus_system.html","Dionysus system"],["genomics/disarm_system.html","DISARM system"],["genomics/divona_system.html","Divona system"],["genomics/dnd_system.html","Dnd system"],["genomics/dndcdea_pbeabcd_system.html","DndCDEA-PbeABCD system"],["genomics/dodola_system.html","Dodola system"],["genomics/dpd_system.html","Dpd system"],["genomics/drt_system.html","DRT system"],["genomics/druantia_system.html","Druantia system"],["genomics/dsr_system.html","Dsr system"],["genomics/eleos_system.html","Eleos system"],["genomics/epona_system.html","Epona system"],["genomics/erebus_system.html","Erebus system"],["genomics/esos_system.html","Esos system"],["genomics/fliodhais_system.html","Fliodhais system"],["genomics/fs_giy_yig_system.html","FS-GIY-YIG system"],["genomics/fs_hepn_tm_system.html","FS-HEPN-TM system"],["genomics/fs_hp_sdh_sah_system.html","FS-HP-SDH-sah system"],["genomics/fs_hp_system.html","FS-HP system"],["genomics/fs_hsdr_like_system.html","FS-HsdR-like system"],["genomics/fs_sma_system.html","FS-Sma system"],["genomics/gabija_system.html","Gabija system"],["genomics/gao_ape_system.html","ApeA system"],["genomics/gao_her_duf_system.html","Gao-Her-DUF system"],["genomics/gao_her_sir_system.html","Gao-Her-SIR system"],["genomics/gao_hhe_system.html","Gao-Hhe system"],["genomics/gao_iet_system.html","Gao-Iet system"],["genomics/gao_mza_system.html","Gao-Mza system"],["genomics/gao_ppl_system.html","Gao-Ppl system"],["genomics/gao_qat_system.html","Gao-Qat system"],["genomics/gao_rl_system.html","Gao-RL system"],["genomics/gao_tery_system.html","Gao-TerY system"],["genomics/gao_tmn_system.html","Gao-Tmn system"],["genomics/gao_upx_system.html","Gao-Upx system"],["genomics/gc_content.html","GC content"],["genomics/gc_high.html","GC high"],["genomics/gc_low.html","GC low"],["genomics/gc_mid1.html","GC mid1"],["genomics/gc_mid2.html","GC mid2"],["genomics/gc_skew.html","GC skew"],["genomics/geb_system.html","Geb system"],["genomics/genome_size.html","genome size"],["genomics/genome_streamlining.html","genome streamlining"],["genomics/hachiman_system.html","Hachiman system"],["genomics/hailong_system.html","Hailong system"],["genomics/hesat_system.html","Hesat system"],["genomics/hna_system.html","Hna system"],["genomics/hypnos_system.html","Hypnos system"],["genomics/jukab_system.html","JukAB system"],["genomics/kamadhenu_system.html","Kamadhenu system"],["genomics/kiwa_system.html","Kiwa system"],["genomics/lamassu_system.html","Lamassu system"],["genomics/lit_system.html","Lit system"],["genomics/lugos_system.html","Lugos system"],["genomics/mazef_system.html","MazEF system"],["genomics/menshen_system.html","Menshen system"],["genomics/mmb_gp29_gp30_system.html","MMB gp29-gp30 system"],["genomics/mobile_genetic_element.html","mobile genetic element"],["genomics/mokosh_system.html","Mokosh system"],["genomics/mqsrac_system.html","MqsRAC system"],["genomics/nantosuelta_system.html","Nantosuelta system"],["genomics/nemetona_system.html","Nemetona system"],["genomics/nhi_system.html","Nhi system"],["genomics/nixi_system.html","NixI system"],["genomics/ogmios_system.html","Ogmios system"],["genomics/olokun_system.html","Olokun system"],["genomics/ophion_system.html","Ophion system"],["genomics/oshun_system.html","Oshun system"],["genomics/panchino_gp28_system.html","Panchino gp28 system"],["genomics/pangenome_openness.html","pangenome openness"],["genomics/paris_system.html","PARIS system"],["genomics/pfiat_system.html","PfiAT system"],["genomics/phage_defense_system.html","phage defense system"],["genomics/phosphorothioate_defense_system.html","phosphorothioate defense system"],["genomics/phrann_gp29_gp30_system.html","Phrann gp29-gp30 system"],["genomics/pif_system.html","Pif system"],["genomics/plasmid_carriage.html","plasmid carriage"],["genomics/ploidy.html","ploidy"],["genomics/prithvi_system.html","Prithvi system"],["genomics/prometheus_system.html","Prometheus system"],["genomics/prrc_system.html","PrrC system"],["genomics/psyrta_system.html","PsyrTA system"],["genomics/pycsar_system.html","Pycsar system"],["genomics/radar_system.html","RADAR system"],["genomics/restriction_modification_system.html","restriction-modification system"],["genomics/retron_system.html","Retron system"],["genomics/rexab_system.html","RexAB system"],["genomics/rhea_system.html","Rhea system"],["genomics/rloc_system.html","RloC system"],["genomics/rnlab_system.html","RnlAB system"],["genomics/rosmerta_system.html","RosmerTA system"],["genomics/rrna_operon_copy_number.html","rRNA operon copy number"],["genomics/rugutis_system.html","Rugutis system"],["genomics/sefir_system.html","SEFIR system"],["genomics/septu_system.html","Septu system"],["genomics/shango_system.html","Shango system"]]} \ No newline at end of file diff --git a/assets/fleet/cells/TraitMech--NCBITaxon.json b/assets/fleet/cells/TraitMech--NCBITaxon.json index bdfb120..0ec423d 100644 --- a/assets/fleet/cells/TraitMech--NCBITaxon.json +++ b/assets/fleet/cells/TraitMech--NCBITaxon.json @@ -1 +1 @@ -{"mech":"TraitMech","prefix":"NCBITaxon","base":"https://culturebotai.github.io/TraitMech/pages/traits/","total":463,"records":[["ecology/animal_pathogen.html","animal pathogen"],["ecology/biofilm_formation.html","biofilm formation"],["ecology/biosafety_level.html","biosafety level"],["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/biosafety_level_2.html","biosafety level 2"],["ecology/biosafety_level_3.html","biosafety level 3"],["ecology/biosafety_level_4.html","biosafety level 4"],["ecology/commensalism.html","commensalism"],["ecology/endosymbiosis.html","endosymbiosis"],["ecology/free_living.html","free-living"],["ecology/gut_associated.html","gut-associated"],["ecology/habitat_association.html","habitat association"],["ecology/host_associated.html","host-associated"],["ecology/human_pathogen.html","human pathogen"],["ecology/mutualism.html","mutualism"],["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["ecology/opportunistic_pathogen.html","opportunistic pathogen"],["ecology/parasitism.html","parasitism"],["ecology/pathogenic_to_host.html","pathogenic to host"],["ecology/plant_pathogen.html","plant pathogen"],["ecology/predatory_bacterium.html","predatory bacterium"],["ecology/rhizosphere_association.html","rhizosphere association"],["ecology/saprotrophy.html","saprotrophy"],["ecology/soil_dwelling.html","soil-dwelling"],["ecology/symbiosis.html","symbiosis"],["environment/acidophilic.html","acidophilic"],["environment/acidotolerant.html","acidotolerant"],["environment/aerobic.html","aerobic"],["environment/aerotolerant.html","aerotolerant"],["environment/alkalotolerant.html","alkalotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/anaerobic.html","anaerobic"],["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/capnophilic.html","capnophilic"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/copper_tolerant.html","copper tolerant"],["environment/delta_phenotype_with_numerical_limits.html","delta phenotype with numerical limits"],["environment/desiccation_tolerant.html","desiccation tolerant"],["environment/euryhaline.html","euryhaline"],["environment/extreme_hyperthermophilic.html","extreme hyperthermophilic"],["environment/extremely_halophilic.html","extremely halophilic"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultative_psychrophilic.html","facultative psychrophilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/facultatively_aerobic.html","facultatively aerobic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/growth_range_phenotype_with_numerical_limits.html","growth range phenotype with numerical limits"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/halotolerant.html","halotolerant"],["environment/hyperthermophilic.html","hyperthermophilic"],["environment/ionizing_radiation_tolerant.html","ionizing radiation tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["environment/mesophilic.html","mesophilic"],["environment/metal_tolerant.html","metal tolerant"],["environment/microaerophilic.html","microaerophilic"],["environment/microaerotolerant.html","microaerotolerant"],["environment/moderately_halophilic.html","moderately halophilic"],["environment/nacl_delta.html","NaCl delta"],["environment/nacl_delta_high.html","NaCl delta high"],["environment/nacl_delta_low.html","NaCl delta low"],["environment/nacl_delta_mid1.html","NaCl delta mid1"],["environment/nacl_delta_mid2.html","NaCl delta mid2"],["environment/nacl_optimum.html","NaCl optimum"],["environment/nacl_optimum_high.html","NaCl optimum high"],["environment/nacl_optimum_low.html","NaCl optimum low"],["environment/nacl_optimum_mid1.html","NaCl optimum mid1"],["environment/nacl_optimum_mid2.html","NaCl optimum mid2"],["environment/nacl_range.html","NaCl range"],["environment/nacl_range_high.html","NaCl range high"],["environment/nacl_range_low.html","NaCl range low"],["environment/nacl_range_mid1.html","NaCl range mid1"],["environment/nacl_range_mid2.html","NaCl range mid2"],["environment/neutrophilic.html","neutrophilic"],["environment/non_halophilic.html","non halophilic"],["environment/obligately_acidophilic.html","obligately acidophilic"],["environment/obligately_aerobic.html","obligately aerobic"],["environment/obligately_alkaphilic.html","obligately alkaliphilic"],["environment/obligately_anaerobic.html","obligately anaerobic"],["environment/obligately_piezophilic.html","obligately piezophilic"],["environment/optimum_phenotype_with_numerical_limits.html","optimum phenotype with numerical limits"],["environment/oxygen_preference.html","oxygen preference"],["environment/ph_delta.html","pH delta"],["environment/ph_delta_high.html","pH delta high"],["environment/ph_delta_low.html","pH delta low"],["environment/ph_delta_mid1.html","pH delta mid1"],["environment/ph_delta_mid2.html","pH delta mid2"],["environment/ph_delta_mid3.html","pH delta mid3"],["environment/ph_delta_very_low.html","pH delta very low"],["environment/ph_growth_preference.html","pH growth preference"],["environment/ph_optimum.html","pH optimum"],["environment/ph_optimum_high.html","pH optimum high"],["environment/ph_optimum_low.html","pH optimum low"],["environment/ph_optimum_mid1.html","pH optimum mid1"],["environment/ph_optimum_mid2.html","pH optimum mid2"],["environment/ph_phenotype_with_numerical_limits.html","pH phenotype with numerical limits"],["environment/ph_range.html","pH range"],["environment/ph_range_low.html","pH range low"],["environment/ph_range_mid1.html","pH range mid1"],["environment/ph_range_mid2.html","pH range mid2"],["environment/ph_range_mid3.html","pH range mid3"],["environment/ph_range_very_low.html","pH range very low"],["environment/piezophilic.html","piezophilic"],["environment/piezotolerant.html","piezotolerant"],["environment/pressure_delta.html","pressure delta"],["environment/pressure_optimum.html","pressure optimum"],["environment/pressure_range.html","pressure range"],["environment/psychrophilic.html","psychrophilic"],["environment/psychrotolerant.html","psychrotolerant"],["environment/radiotolerant.html","radiotolerant"],["environment/salinity_phenotype_with_numerical_limits.html","salinity phenotype with numerical limits"],["environment/slightly_halophilic.html","slightly halophilic"],["environment/stenohaline.html","stenohaline"],["environment/strictly_anaerobic.html","strictly anaerobic"],["environment/temperature_delta.html","temperature delta"],["environment/temperature_delta_high.html","temperature delta high"],["environment/temperature_delta_mid1.html","temperature delta mid1"],["environment/temperature_delta_mid2.html","temperature delta mid2"],["environment/temperature_optimum.html","temperature optimum"],["environment/temperature_optimum_high.html","temperature optimum high"],["environment/temperature_optimum_low.html","temperature optimum low"],["environment/temperature_optimum_mid1.html","temperature optimum mid1"],["environment/temperature_optimum_mid2.html","temperature optimum mid2"],["environment/temperature_optimum_mid3.html","temperature optimum mid3"],["environment/temperature_optimum_mid4.html","temperature optimum mid4"],["environment/temperature_optimum_very_low.html","temperature optimum very low"],["environment/temperature_phenotype_with_numerical_limits.html","temperature phenotype with numerical limits"],["environment/temperature_preference.html","temperature preference"],["environment/temperature_range.html","temperature range"],["environment/temperature_range_high.html","temperature range high"],["environment/temperature_range_low.html","temperature range low"],["environment/temperature_range_mid1.html","temperature range mid1"],["environment/temperature_range_mid2.html","temperature range mid2"],["environment/temperature_range_mid3.html","temperature range mid3"],["environment/temperature_range_mid4.html","temperature range mid4"],["environment/temperature_range_very_low.html","temperature range very low"],["environment/thermophilic.html","thermophilic"],["environment/thermotolerant.html","thermotolerant"],["environment/uv_radiation_tolerant.html","UV radiation tolerant"],["environment/xerophilic.html","xerophilic"],["environment/zinc_tolerant.html","zinc tolerant"],["genomics/abie_system.html","AbiE system"],["genomics/abik_system.html","AbiK system"],["genomics/abiq_system.html","AbiQ system"],["genomics/abit_system.html","AbiT system"],["genomics/abiz_system.html","AbiZ system"],["genomics/abortive_infection_system.html","abortive infection system"],["genomics/avast_system.html","AVAST system"],["genomics/brex_system.html","BREX system"],["genomics/cbass_system.html","CBASS system"],["genomics/codon_usage_bias.html","codon usage bias"],["genomics/crispr_cas_system.html","CRISPR-Cas system"],["genomics/dartg_system.html","DarTG system"],["genomics/ddmde_system.html","DdmDE system"],["genomics/disarm_system.html","DISARM system"],["genomics/dnd_system.html","Dnd system"],["genomics/dndcdea_pbeabcd_system.html","DndCDEA-PbeABCD system"],["genomics/druantia_system.html","Druantia system"],["genomics/gabija_system.html","Gabija system"],["genomics/gc_content.html","GC content"],["genomics/gc_high.html","GC high"],["genomics/gc_low.html","GC low"],["genomics/gc_mid1.html","GC mid1"],["genomics/gc_mid2.html","GC mid2"],["genomics/gc_skew.html","GC skew"],["genomics/genome_size.html","genome size"],["genomics/genome_streamlining.html","genome streamlining"],["genomics/genomic_island.html","genomic island"],["genomics/hachiman_system.html","Hachiman system"],["genomics/hailong_system.html","Hailong system"],["genomics/hna_system.html","Hna system"],["genomics/kiwa_system.html","Kiwa system"],["genomics/lamassu_system.html","Lamassu system"],["genomics/mobile_genetic_element.html","mobile genetic element"],["genomics/pangenome_openness.html","pangenome openness"],["genomics/paris_system.html","PARIS system"],["genomics/phage_defense_system.html","phage defense system"],["genomics/phosphorothioate_defense_system.html","phosphorothioate defense system"],["genomics/plasmid_carriage.html","plasmid carriage"],["genomics/ploidy.html","ploidy"],["genomics/prophage.html","prophage"],["genomics/pycsar_system.html","Pycsar system"],["genomics/radar_system.html","RADAR system"],["genomics/restriction_modification_system.html","restriction-modification system"],["genomics/retron_system.html","Retron system"],["genomics/rrna_operon_copy_number.html","rRNA operon copy number"],["genomics/septu_system.html","Septu system"],["genomics/shedu_system.html","Shedu system"],["genomics/sspabcd_sspe_system.html","SspABCD-SspE system"],["genomics/sspabcd_sspfgh_system.html","SspABCD-SspFGH system"],["genomics/thoeris_system.html","Thoeris system"],["genomics/toxin_system.html","ToxIN system"],["genomics/transposable_element.html","transposable element"],["genomics/wadjet_system.html","Wadjet system"],["genomics/zorya_system.html","Zorya system"],["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/acetone_butanol_ethanol_fermentation.html","acetone-butanol-ethanol fermentation"],["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/arsenate_respiration.html","arsenate respiration"],["metabolism/biopolymer_degradation.html","biopolymer degradation"],["metabolism/butanediol_fermentation.html","2,3-butanediol fermentation"],["metabolism/butyric_acid_fermentation.html","butyric acid fermentation"],["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"],["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/cellulolysis.html","cellulolysis"],["metabolism/chitinolysis.html","chitinolysis"],["metabolism/chlorate_respiration.html","chlorate respiration"],["metabolism/citrate_fermentation.html","citrate fermentation"],["metabolism/complete_ammonia_oxidation.html","complete ammonia oxidation"],["metabolism/denitrification.html","denitrification"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/dimethyl_sulfoxide_respiration.html","dimethyl sulfoxide respiration"],["metabolism/disproportionation.html","Disproportionation"],["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"],["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"],["metabolism/electron_transfer.html","Electron transfer"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"],["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"],["metabolism/fumarate_respiration.html","fumarate respiration"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/iodate_respiration.html","iodate respiration"],["metabolism/iron_oxidation.html","iron oxidation"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/lignin_degradation.html","lignin degradation"],["metabolism/manganese_oxidation.html","manganese oxidation"],["metabolism/metabolism.html","metabolism"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/nitrogen_fixation.html","nitrogen fixation"],["metabolism/organohalide_respiration.html","organohalide respiration"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"],["metabolism/proteolysis.html","proteolysis"],["metabolism/proteorhodopsin_phototrophy.html","proteorhodopsin phototrophy"],["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"],["metabolism/respiration.html","respiration"],["metabolism/selenate_respiration.html","selenate respiration"],["metabolism/starch_degradation.html","starch degradation"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"],["metabolism/sulfur_oxidation.html","sulfur oxidation"],["metabolism/syntrophy.html","Syntrophy"],["metabolism/tetrathionate_respiration.html","tetrathionate respiration"],["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"],["metabolism/trimethylamine_n_oxide_respiration.html","trimethylamine N-oxide respiration"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"],["metabolism/xylan_degradation.html","xylan degradation"],["morphology/akinete.html","akinete"],["morphology/amphitrichous.html","amphitrichous"],["morphology/axially_filamented.html","axially filamented"],["morphology/bacillus_shaped.html","bacillus shaped"],["morphology/black_pigmented.html","black pigmented"],["morphology/branched_shaped.html","branched shaped"],["morphology/brown_pigmented.html","brown pigmented"],["morphology/capsule.html","capsule"],["morphology/carboxysome.html","carboxysome"],["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/cell_length.html","cell length"],["morphology/cell_length_large.html","cell length large"],["morphology/cell_length_medium.html","cell length medium"],["morphology/cell_length_small.html","cell length small"],["morphology/cell_length_very_small.html","cell length very small"],["morphology/cell_shape.html","cell shape"],["morphology/cell_width.html","cell width"],["morphology/cell_width_large.html","cell width large"],["morphology/cell_width_medium.html","cell width medium"],["morphology/cell_width_small.html","cell width small"],["morphology/cell_width_very_small.html","cell width very small"],["morphology/coccobacillus_shaped.html","coccobacillus shaped"],["morphology/coccus_shaped.html","coccus shaped"],["morphology/cream_pigmented.html","cream pigmented"],["morphology/crescent_shaped.html","crescent shaped"],["morphology/curved_shaped.html","curved shaped"],["morphology/diplococcus_shaped.html","diplococcus shaped"],["morphology/disc_shaped.html","disc shaped"],["morphology/dumbbell_shaped.html","dumbbell shaped"],["morphology/ellipsoidal.html","ellipsoidal"],["morphology/filament_shaped.html","filament shaped"],["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/flagellated.html","flagellated"],["morphology/flask_shaped.html","flask shaped"],["morphology/fusiform_shaped.html","fusiform shaped"],["morphology/gas_vesicle.html","gas vesicle"],["morphology/gliding.html","gliding"],["morphology/gram_negative.html","gram negative"]]} \ No newline at end of file +{"mech":"TraitMech","prefix":"NCBITaxon","base":"https://culturebotai.github.io/TraitMech/pages/traits/","total":484,"records":[["ecology/animal_pathogen.html","animal pathogen"],["ecology/biofilm_formation.html","biofilm formation"],["ecology/biosafety_level.html","biosafety level"],["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/biosafety_level_2.html","biosafety level 2"],["ecology/biosafety_level_3.html","biosafety level 3"],["ecology/biosafety_level_4.html","biosafety level 4"],["ecology/commensalism.html","commensalism"],["ecology/endosymbiosis.html","endosymbiosis"],["ecology/free_living.html","free-living"],["ecology/gut_associated.html","gut-associated"],["ecology/habitat_association.html","habitat association"],["ecology/host_associated.html","host-associated"],["ecology/human_pathogen.html","human pathogen"],["ecology/mutualism.html","mutualism"],["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["ecology/opportunistic_pathogen.html","opportunistic pathogen"],["ecology/parasitism.html","parasitism"],["ecology/pathogenic_to_host.html","pathogenic to host"],["ecology/plant_pathogen.html","plant pathogen"],["ecology/predatory_bacterium.html","predatory bacterium"],["ecology/rhizosphere_association.html","rhizosphere association"],["ecology/saprotrophy.html","saprotrophy"],["ecology/soil_dwelling.html","soil-dwelling"],["ecology/symbiosis.html","symbiosis"],["environment/acidophilic.html","acidophilic"],["environment/acidotolerant.html","acidotolerant"],["environment/aerobic.html","aerobic"],["environment/aerotolerant.html","aerotolerant"],["environment/alkalotolerant.html","alkalotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/anaerobic.html","anaerobic"],["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/capnophilic.html","capnophilic"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/copper_tolerant.html","copper tolerant"],["environment/delta_phenotype_with_numerical_limits.html","delta phenotype with numerical limits"],["environment/desiccation_tolerant.html","desiccation tolerant"],["environment/euryhaline.html","euryhaline"],["environment/extreme_hyperthermophilic.html","extreme hyperthermophilic"],["environment/extremely_halophilic.html","extremely halophilic"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultative_psychrophilic.html","facultative psychrophilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/facultatively_aerobic.html","facultatively aerobic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/growth_range_phenotype_with_numerical_limits.html","growth range phenotype with numerical limits"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/halotolerant.html","halotolerant"],["environment/hyperthermophilic.html","hyperthermophilic"],["environment/ionizing_radiation_tolerant.html","ionizing radiation tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["environment/mesophilic.html","mesophilic"],["environment/metal_tolerant.html","metal tolerant"],["environment/microaerophilic.html","microaerophilic"],["environment/microaerotolerant.html","microaerotolerant"],["environment/moderately_halophilic.html","moderately halophilic"],["environment/nacl_delta.html","NaCl delta"],["environment/nacl_delta_high.html","NaCl delta high"],["environment/nacl_delta_low.html","NaCl delta low"],["environment/nacl_delta_mid1.html","NaCl delta mid1"],["environment/nacl_delta_mid2.html","NaCl delta mid2"],["environment/nacl_optimum.html","NaCl optimum"],["environment/nacl_optimum_high.html","NaCl optimum high"],["environment/nacl_optimum_low.html","NaCl optimum low"],["environment/nacl_optimum_mid1.html","NaCl optimum mid1"],["environment/nacl_optimum_mid2.html","NaCl optimum mid2"],["environment/nacl_range.html","NaCl range"],["environment/nacl_range_high.html","NaCl range high"],["environment/nacl_range_low.html","NaCl range low"],["environment/nacl_range_mid1.html","NaCl range mid1"],["environment/nacl_range_mid2.html","NaCl range mid2"],["environment/neutrophilic.html","neutrophilic"],["environment/non_halophilic.html","non halophilic"],["environment/obligately_acidophilic.html","obligately acidophilic"],["environment/obligately_aerobic.html","obligately aerobic"],["environment/obligately_alkaphilic.html","obligately alkaliphilic"],["environment/obligately_anaerobic.html","obligately anaerobic"],["environment/obligately_piezophilic.html","obligately piezophilic"],["environment/optimum_phenotype_with_numerical_limits.html","optimum phenotype with numerical limits"],["environment/oxygen_preference.html","oxygen preference"],["environment/ph_delta.html","pH delta"],["environment/ph_delta_high.html","pH delta high"],["environment/ph_delta_low.html","pH delta low"],["environment/ph_delta_mid1.html","pH delta mid1"],["environment/ph_delta_mid2.html","pH delta mid2"],["environment/ph_delta_mid3.html","pH delta mid3"],["environment/ph_delta_very_low.html","pH delta very low"],["environment/ph_growth_preference.html","pH growth preference"],["environment/ph_optimum.html","pH optimum"],["environment/ph_optimum_high.html","pH optimum high"],["environment/ph_optimum_low.html","pH optimum low"],["environment/ph_optimum_mid1.html","pH optimum mid1"],["environment/ph_optimum_mid2.html","pH optimum mid2"],["environment/ph_phenotype_with_numerical_limits.html","pH phenotype with numerical limits"],["environment/ph_range.html","pH range"],["environment/ph_range_low.html","pH range low"],["environment/ph_range_mid1.html","pH range mid1"],["environment/ph_range_mid2.html","pH range mid2"],["environment/ph_range_mid3.html","pH range mid3"],["environment/ph_range_very_low.html","pH range very low"],["environment/piezophilic.html","piezophilic"],["environment/piezotolerant.html","piezotolerant"],["environment/pressure_delta.html","pressure delta"],["environment/pressure_optimum.html","pressure optimum"],["environment/pressure_range.html","pressure range"],["environment/psychrophilic.html","psychrophilic"],["environment/psychrotolerant.html","psychrotolerant"],["environment/radiotolerant.html","radiotolerant"],["environment/salinity_phenotype_with_numerical_limits.html","salinity phenotype with numerical limits"],["environment/slightly_halophilic.html","slightly halophilic"],["environment/stenohaline.html","stenohaline"],["environment/strictly_anaerobic.html","strictly anaerobic"],["environment/temperature_delta.html","temperature delta"],["environment/temperature_delta_high.html","temperature delta high"],["environment/temperature_delta_mid1.html","temperature delta mid1"],["environment/temperature_delta_mid2.html","temperature delta mid2"],["environment/temperature_optimum.html","temperature optimum"],["environment/temperature_optimum_high.html","temperature optimum high"],["environment/temperature_optimum_low.html","temperature optimum low"],["environment/temperature_optimum_mid1.html","temperature optimum mid1"],["environment/temperature_optimum_mid2.html","temperature optimum mid2"],["environment/temperature_optimum_mid3.html","temperature optimum mid3"],["environment/temperature_optimum_mid4.html","temperature optimum mid4"],["environment/temperature_optimum_very_low.html","temperature optimum very low"],["environment/temperature_phenotype_with_numerical_limits.html","temperature phenotype with numerical limits"],["environment/temperature_preference.html","temperature preference"],["environment/temperature_range.html","temperature range"],["environment/temperature_range_high.html","temperature range high"],["environment/temperature_range_low.html","temperature range low"],["environment/temperature_range_mid1.html","temperature range mid1"],["environment/temperature_range_mid2.html","temperature range mid2"],["environment/temperature_range_mid3.html","temperature range mid3"],["environment/temperature_range_mid4.html","temperature range mid4"],["environment/temperature_range_very_low.html","temperature range very low"],["environment/thermophilic.html","thermophilic"],["environment/thermotolerant.html","thermotolerant"],["environment/uv_radiation_tolerant.html","UV radiation tolerant"],["environment/xerophilic.html","xerophilic"],["environment/zinc_tolerant.html","zinc tolerant"],["genomics/abia_system.html","AbiA system"],["genomics/abialpha_system.html","AbiAlpha system"],["genomics/abib_system.html","AbiB system"],["genomics/abic_system.html","AbiC system"],["genomics/abid_system.html","AbiD system"],["genomics/abie_system.html","AbiE system"],["genomics/abig_system.html","AbiG system"],["genomics/abih_system.html","AbiH system"],["genomics/abii_system.html","AbiI system"],["genomics/abik_system.html","AbiK system"],["genomics/abiq_system.html","AbiQ system"],["genomics/abir_system.html","AbiR system"],["genomics/abit_system.html","AbiT system"],["genomics/abiu_system.html","AbiU system"],["genomics/abiv_system.html","AbiV system"],["genomics/abiz_system.html","AbiZ system"],["genomics/abortive_infection_system.html","abortive infection system"],["genomics/apsab_system.html","ApsAB system"],["genomics/avast_system.html","AVAST system"],["genomics/brex_system.html","BREX system"],["genomics/bsta_system.html","BstA system"],["genomics/cbass_system.html","CBASS system"],["genomics/cmdtac_system.html","CmdTAC system"],["genomics/codon_usage_bias.html","codon usage bias"],["genomics/crispr_cas_system.html","CRISPR-Cas system"],["genomics/dartg_system.html","DarTG system"],["genomics/ddmde_system.html","DdmDE system"],["genomics/disarm_system.html","DISARM system"],["genomics/dnd_system.html","Dnd system"],["genomics/dndcdea_pbeabcd_system.html","DndCDEA-PbeABCD system"],["genomics/druantia_system.html","Druantia system"],["genomics/gabija_system.html","Gabija system"],["genomics/gasdermin_system.html","GasderMIN system"],["genomics/gc_content.html","GC content"],["genomics/gc_high.html","GC high"],["genomics/gc_low.html","GC low"],["genomics/gc_mid1.html","GC mid1"],["genomics/gc_mid2.html","GC mid2"],["genomics/gc_skew.html","GC skew"],["genomics/genome_size.html","genome size"],["genomics/genome_streamlining.html","genome streamlining"],["genomics/genomic_island.html","genomic island"],["genomics/hachiman_system.html","Hachiman system"],["genomics/hailong_system.html","Hailong system"],["genomics/hna_system.html","Hna system"],["genomics/jukab_system.html","JukAB system"],["genomics/kiwa_system.html","Kiwa system"],["genomics/lamassu_system.html","Lamassu system"],["genomics/mazef_system.html","MazEF system"],["genomics/mobile_genetic_element.html","mobile genetic element"],["genomics/nhi_system.html","Nhi system"],["genomics/nixi_system.html","NixI system"],["genomics/pangenome_openness.html","pangenome openness"],["genomics/paris_system.html","PARIS system"],["genomics/phage_defense_system.html","phage defense system"],["genomics/phosphorothioate_defense_system.html","phosphorothioate defense system"],["genomics/plasmid_carriage.html","plasmid carriage"],["genomics/ploidy.html","ploidy"],["genomics/prophage.html","prophage"],["genomics/pycsar_system.html","Pycsar system"],["genomics/radar_system.html","RADAR system"],["genomics/restriction_modification_system.html","restriction-modification system"],["genomics/retron_system.html","Retron system"],["genomics/rnlab_system.html","RnlAB system"],["genomics/rrna_operon_copy_number.html","rRNA operon copy number"],["genomics/septu_system.html","Septu system"],["genomics/shedu_system.html","Shedu system"],["genomics/spbk_system.html","SpbK system"],["genomics/sspabcd_sspe_system.html","SspABCD-SspE system"],["genomics/sspabcd_sspfgh_system.html","SspABCD-SspFGH system"],["genomics/thoeris_system.html","Thoeris system"],["genomics/toxin_system.html","ToxIN system"],["genomics/transposable_element.html","transposable element"],["genomics/wadjet_system.html","Wadjet system"],["genomics/zorya_system.html","Zorya system"],["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/acetone_butanol_ethanol_fermentation.html","acetone-butanol-ethanol fermentation"],["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/arsenate_respiration.html","arsenate respiration"],["metabolism/biopolymer_degradation.html","biopolymer degradation"],["metabolism/butanediol_fermentation.html","2,3-butanediol fermentation"],["metabolism/butyric_acid_fermentation.html","butyric acid fermentation"],["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"],["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/cellulolysis.html","cellulolysis"],["metabolism/chitinolysis.html","chitinolysis"],["metabolism/chlorate_respiration.html","chlorate respiration"],["metabolism/citrate_fermentation.html","citrate fermentation"],["metabolism/complete_ammonia_oxidation.html","complete ammonia oxidation"],["metabolism/denitrification.html","denitrification"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/dimethyl_sulfoxide_respiration.html","dimethyl sulfoxide respiration"],["metabolism/disproportionation.html","Disproportionation"],["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"],["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"],["metabolism/electron_transfer.html","Electron transfer"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"],["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"],["metabolism/fumarate_respiration.html","fumarate respiration"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/iodate_respiration.html","iodate respiration"],["metabolism/iron_oxidation.html","iron oxidation"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/lignin_degradation.html","lignin degradation"],["metabolism/manganese_oxidation.html","manganese oxidation"],["metabolism/metabolism.html","metabolism"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/nitrogen_fixation.html","nitrogen fixation"],["metabolism/organohalide_respiration.html","organohalide respiration"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"],["metabolism/proteolysis.html","proteolysis"],["metabolism/proteorhodopsin_phototrophy.html","proteorhodopsin phototrophy"],["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"],["metabolism/respiration.html","respiration"],["metabolism/selenate_respiration.html","selenate respiration"],["metabolism/starch_degradation.html","starch degradation"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"],["metabolism/sulfur_oxidation.html","sulfur oxidation"],["metabolism/syntrophy.html","Syntrophy"],["metabolism/tetrathionate_respiration.html","tetrathionate respiration"],["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"],["metabolism/trimethylamine_n_oxide_respiration.html","trimethylamine N-oxide respiration"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"],["metabolism/xylan_degradation.html","xylan degradation"],["morphology/akinete.html","akinete"],["morphology/amphitrichous.html","amphitrichous"],["morphology/axially_filamented.html","axially filamented"],["morphology/bacillus_shaped.html","bacillus shaped"],["morphology/black_pigmented.html","black pigmented"],["morphology/branched_shaped.html","branched shaped"],["morphology/brown_pigmented.html","brown pigmented"],["morphology/capsule.html","capsule"],["morphology/carboxysome.html","carboxysome"],["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/cell_length.html","cell length"],["morphology/cell_length_large.html","cell length large"],["morphology/cell_length_medium.html","cell length medium"],["morphology/cell_length_small.html","cell length small"],["morphology/cell_length_very_small.html","cell length very small"],["morphology/cell_shape.html","cell shape"],["morphology/cell_width.html","cell width"]]} \ No newline at end of file diff --git a/assets/fleet/edges/AntibioticMech--CultureMech.json b/assets/fleet/edges/AntibioticMech--CultureMech.json index 736bd0b..871ffa6 100644 --- a/assets/fleet/edges/AntibioticMech--CultureMech.json +++ b/assets/fleet/edges/AntibioticMech--CultureMech.json @@ -1 +1 @@ -{"a":"AntibioticMech","b":"CultureMech","base":{"AntibioticMech":"https://culturebotai.github.io/AntibioticMech/pages/","CultureMech":"https://github.com/CultureBotAI/CultureMech/blob/main/data/merge_yaml/merged/"},"n":29,"by":{"CHEBI":29},"terms":[{"id":"CHEBI:17334","l":"penicillin","na":38,"nb":4,"a":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/azidocillin.html","azidocillin"],["antibacterial/azlocillin.html","azlocillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/carbenicillin.html","carbenicillin"]],"b":[["eagles_minimum_essential_medium_mem_containing_antibiotics_and_fetal_bovine_serum.yaml","eagles_minimum_essential_medium_mem_containing_antibiotics_and_fetal_bovine_serum"],["modified_pleuropneumonia_like_organism_pplo_medium.yaml","modified_pleuropneumonia_like_organism_pplo_medium"],["pplo_glucose_broth.yaml","pplo_glucose_broth"],["pplo_glucose_broth__66449f8d.yaml","pplo_glucose_broth"]]},{"id":"CHEBI:48923","l":"erythromycin","na":6,"nb":4,"a":[["antibacterial/erythromycin-a.html","erythromycin A"],["unspecified/erythromycin-b.html","erythromycin B"],["unspecified/erythromycin-c.html","erythromycin C"],["unspecified/erythromycin-d.html","erythromycin D"],["unspecified/erythromycin-e.html","erythromycin E"],["unspecified/erythromycin-n-methyl-14c.html","erythromycin-[N-methyl-14C]"]],"b":[["T2U_MEDIUM.yaml","t2u_medium"],["bhi_medium_modified.yaml","bhi_medium_modified"],["brain_heart_infusion_bhi_medium_supplemented_with_antibiotics.yaml","brain_heart_infusion_bhi_medium_supplemented_with_antibiotics"],["mrs_medium_containing_erythromycin.yaml","mrs_medium_containing_erythromycin"]]},{"id":"CHEBI:30746","l":"benzoic acid","na":2,"nb":2,"a":[["biocide/benzoic-acid.html","benzoic acid"],["biocide/carboxy-ptio.html","carboxy-PTIO"]],"b":[["UGA_defined_4CarbonMix_Nitrate_anaerobic_pH_7.1.yaml","UGA defined 4CarbonMix Nitrate anaerobic pH 7.1"],["togo_medium_m1949.yaml","togo_medium_m1949"]]},{"id":"CHEBI:49976","l":"zinc dichloride","na":1,"nb":1018,"a":[["biocide/zinc-dichloride.html","zinc dichloride"]],"b":[["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["3n_bbm_v.yaml","3n_bbm_v"],["3n_bbm_v_recipe_for_customer_orders.yaml","3n_bbm_v_recipe_for_customer_orders"],["A1_MEDIUM.yaml","a1_medium"],["ABM.yaml","abm"],["ACETIVIBRIO_ALKALICELLULOSI_MEDIUM.yaml","acetivibrio_alkalicellulosi_medium"]]},{"id":"CHEBI:32150","l":"sodium thiosulfate pentahydrate","na":1,"nb":312,"a":[["antifungal/sodium-thiosulfate-pentahydrate.html","sodium thiosulfate pentahydrate"]],"b":[["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["ACIDITHIOBACILLUS_THIOOXIDANS_MEDIUM.yaml","acidithiobacillus_thiooxidans_medium"],["ALKALIPHILUS_LACT_MEDIUM.yaml","alkaliphilus_lact_medium"],["ALKALIPHILUS_LACV_MEDIUM.yaml","alkaliphilus_lacv_medium"],["ALKALIPHILUS_TRANSVAALENSIS_MEDIUM.yaml","alkaliphilus_transvaalensis_medium"],["AMMONIFEX_THIOPHILUS_MEDIUM.yaml","ammonifex_thiophilus_medium"]]},{"id":"CHEBI:33403","l":"elemental sulfur","na":1,"nb":82,"a":[["antifungal/polysulfur.html","polysulfur"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["ACIDIFERROBACTER_MEDIUM.yaml","acidiferrobacter_medium"],["ACIDILOBUS_MEDIUM.yaml","acidilobus_medium"],["AEROBIC_SULFOLOBALES_MEDIUM.yaml","aerobic_sulfolobales_medium"],["AS_medium.yaml","as_medium"]]},{"id":"CHEBI:16236","l":"ethanol","na":1,"nb":70,"a":[["biocide/ethanol.html","ethanol"]],"b":[["ACETOBACTER_PEROXYDANS_MEDIUM.yaml","acetobacter_peroxydans_medium"],["AE_BROTH.yaml","ae_broth"],["ANAEROTIGNUM_NEOPROPIONICUM_MEDIUM.yaml","anaerotignum_neopropionicum_medium"],["Acetobacter_Europaeus_Medium.yaml","acetobacter_europaeus_medium"],["BTU_MEDIUM.yaml","btu_medium"],["CLOSTRIDIUM_KLUYVERI_MEDIUM.yaml","clostridium_kluyveri_medium"]]},{"id":"CHEBI:30769","l":"citric acid","na":1,"nb":55,"a":[["unspecified/citric-acid.html","citric acid"]],"b":[["Azospira_Medium.yaml","azospira_medium"],["BG11.yaml","bg11"],["BG11_medium.yaml","bg11_medium"],["CTM_MEDIUM.yaml","ctm_medium"],["ETHANOLOGENBACTERIUM_MEDIUM.yaml","ethanologenbacterium_medium"],["GINGER_BEER_PLANT_MEDIUM.yaml","ginger_beer_plant_medium"]]},{"id":"CHEBI:132112","l":"sodium thiosulfate","na":1,"nb":45,"a":[["antifungal/sodium-thiosulfate.html","sodium thiosulfate"]],"b":[["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["ALKALISPIRILLUM_MOBILE_MEDIUM.yaml","alkalispirillum_mobile_medium"],["ANAEROBACULUM_MEDIUM.yaml","anaerobaculum_medium"],["CHROMATIUM_SALEXIGENS_MEDIUM.yaml","chromatium_salexigens_medium"],["ECTOTHIORHODOSPIRA_MAGNA_MEDIUM.yaml","ectothiorhodospira_magna_medium"],["HALOANAEROBIUM_CONGOLENSE_MEDIUM.yaml","haloanaerobium_congolense_medium"]]},{"id":"CHEBI:15366","l":"acetic acid","na":1,"nb":26,"a":[["biocide/acetic-acid.html","acetic acid"]],"b":[["ACY.yaml","ACY"],["AE_BROTH.yaml","ae_broth"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Acetobacter_Europaeus_Medium.yaml","acetobacter_europaeus_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"]]},{"id":"CHEBI:113455","l":"sodium benzoate","na":1,"nb":22,"a":[["biocide/sodium-benzoate.html","sodium benzoate"]],"b":[["ALCALIGENES_XYLOSOXYDANS_MEDIUM_WITH_BENZOATE.yaml","alcaligenes_xylosoxydans_medium_with_benzoate"],["AROMATOLEUM_MEDIUM.yaml","aromatoleum_medium"],["BENZOATE_MEDIUM.yaml","benzoate_medium"],["DESULFALLAS_MEDIUM.yaml","desulfallas_medium"],["DESULFATIRHABDIUM_MEDIUM.yaml","desulfatirhabdium_medium"],["DESULFOCARBO_INDIANENSIS_MEDIUM.yaml","desulfocarbo_indianensis_medium"]]},{"id":"CHEBI:30768","l":"propionic acid","na":1,"nb":21,"a":[["antifungal/propionic-acid.html","propionic acid"]],"b":[["ACY.yaml","ACY"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"],["MEDIUM_10.yaml","medium_10"],["Mega.yaml","Mega"]]},{"id":"CHEBI:78870","l":"sodium nitrite","na":1,"nb":17,"a":[["biocide/sodium-nitrite.html","sodium nitrite"]],"b":[["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["Autotrophic_Nitrobacter_Medium.yaml","autotrophic_nitrobacter_medium"],["HETEROTROPHIC_NITROBACTER_MEDIUM.yaml","heterotrophic_nitrobacter_medium"],["MIXOTROPHIC_NITROBACTER_MEDIUM.yaml","mixotrophic_nitrobacter_medium"],["MODIFIED_THIOCAPSA_MEDIUM.yaml","modified_thiocapsa_medium"],["Medium_for_nitrite_oxidizer.yaml","medium_for_nitrite_oxidizer"]]},{"id":"CHEBI:132106","l":"sodium propionate","na":1,"nb":15,"a":[["antifungal/sodium-propionate.html","sodium propionate"]],"b":[["DESULFOBULBUS_MEDIUM.yaml","desulfobulbus_medium"],["DESULFOFABA_HANSENII_MEDIUM.yaml","desulfofaba_hansenii_medium"],["DESULFOFABA_MEDIUM.yaml","desulfofaba_medium"],["DESULFORHABDUS_AMNIGENA_MEDIUM.yaml","desulforhabdus_amnigena_medium"],["DESULFOSALSIMONAS_MEDIUM.yaml","desulfosalsimonas_medium"],["DPM_MEDIUM.yaml","dpm_medium"]]},{"id":"CHEBI:28971","l":"ampicillin","na":1,"nb":14,"a":[["antibacterial/ampicillin.html","ampicillin"]],"b":[["2_5_nacl_heart_infusion_hi_medium.yaml","2_5_nacl_heart_infusion_hi_medium"],["PPLO_broth.yaml","pplo_broth"],["brain_heart_infusion_bhi_medium_supplemented_with_antibiotics.yaml","brain_heart_infusion_bhi_medium_supplemented_with_antibiotics"],["dehalogenimonas_medium__6a926cbc.yaml","dehalogenimonas_medium"],["ip3_3_medium__726cb47b.yaml","ip3_3_medium"],["lb_agar_supplemented_with_ampicillin.yaml","lb_agar_supplemented_with_ampicillin"]]},{"id":"CHEBI:81862","l":"potassium hydrogencarbonate","na":1,"nb":13,"a":[["antifungal/potassium-hydrogencarbonate.html","potassium hydrogencarbonate"]],"b":[["ANAEROTIGNUM_NEOPROPIONICUM_MEDIUM.yaml","anaerotignum_neopropionicum_medium"],["METHANOTHRIX_MEDIUM.yaml","methanothrix_medium"],["Methanosaeta_Brevibacterium_Medium.yaml","methanosaeta_brevibacterium_medium"],["Methanosaeta_harundinacea_medium.yaml","methanosaeta_harundinacea_medium"],["PELOBACTER_ACIDIGALLICI_MEDIUM.yaml","pelobacter_acidigallici_medium"],["SULFURIMONAS_JS_MEDIUM.yaml","sulfurimonas_js_medium"]]},{"id":"CHEBI:72449","l":"malachite green","na":1,"nb":9,"a":[["antibacterial/malachite-green.html","malachite green"]],"b":[["1_ogawa_medium.yaml","1_ogawa_medium"],["Lowenstein_Jenson_medium.yaml","lowenstein_jenson_medium"],["MIDDLEBROCK_7H11_AGAR.yaml","middlebrock_7h11_agar"],["MIDDLEBROOK_MEDIUM.yaml","middlebrook_medium"],["Middlebrook_7H11_Agar.yaml","middlebrook_7h11_agar"],["l_wenstein_jensen_medium.yaml","l_wenstein_jensen_medium"]]},{"id":"CHEBI:16196","l":"oleic acid","na":1,"nb":6,"a":[["antibacterial/oleic-acid.html","oleic acid"]],"b":[["MIDDLEBROCK_7H11_AGAR.yaml","middlebrock_7h11_agar"],["MIDDLEBROOK_MEDIUM.yaml","middlebrook_medium"],["Middle_Brook_Medium.yaml","middle_brook_medium"],["Middlebrook_7H11_Agar.yaml","middlebrook_7h11_agar"],["middlebrook_7h11_agar_difco.yaml","middlebrook_7h11_agar_difco"],["modified_dixon_s_agar.yaml","modified_dixon_s_agar"]]},{"id":"CHEBI:27641","l":"cycloheximide","na":1,"nb":6,"a":[["antifungal/cycloheximide.html","cycloheximide"]],"b":[["PPM.yaml","ppm"],["R2A_Kan50_Tween01_Cycloheximide200.yaml","R2A_Kan50_Tween01_Cycloheximide200"],["alkaliphiles_pirellula_medium_m1py.yaml","alkaliphiles_pirellula_medium_m1py"],["chlamydia_serpentis_poikilotherma_medium.yaml","chlamydia_serpentis_poikilotherma_medium"],["pirellula_medium_m31py.yaml","pirellula_medium_m31py"],["ppm__7a6a33ba.yaml","ppm"]]},{"id":"CHEBI:15882","l":"phenol","na":1,"nb":4,"a":[["biocide/phenol.html","phenol"]],"b":[["MEDIUM_FOR_BACILLUS_STEAROTHERMOPHILUS.yaml","medium_for_bacillus_stearothermophilus"],["anaerobic_bicarbonate_buffered_medium_with_phenol.yaml","anaerobic_bicarbonate_buffered_medium_with_phenol"],["defined_freshwater_medium_cocl2__ac506908.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__0930ab53.yaml","defined_freshwater_medium_coso4"]]},{"id":"CHEBI:28631","l":"3-phenylpropionic acid","na":1,"nb":4,"a":[["antifungal/3-phenylpropionic-acid.html","3-phenylpropionic acid"]],"b":[["ENDOMICROBIUM_PROAVITUM_RSA_MEDIUM.yaml","endomicrobium_proavitum_rsa_medium"],["MODIFIED_AM5_MEDIUM_2.yaml","modified_am5_medium_2"],["am5_medium_elusimicrobium_medium.yaml","am5_medium_elusimicrobium_medium"],["endomicrobium_proavitum_rsa_medium__51692939.yaml","endomicrobium_proavitum_rsa_medium"]]},{"id":"CHEBI:41688","l":"crystal violet","na":1,"nb":4,"a":[["antibacterial/crystal-violet.html","crystal violet"]],"b":[["1298.yaml","1298"],["ALKALINE_CELLULOSE_AGAR.yaml","alkaline_cellulose_agar"],["acido_thermophile_medium.yaml","acido_thermophile_medium"],["modified_eggerth_gagnon_medium.yaml","modified_eggerth_gagnon_medium"]]},{"id":"CHEBI:17909","l":"polysulfur","na":1,"nb":3,"a":[["antifungal/polysulfur.html","polysulfur"]],"b":[["THERMOCOCCUS_MEDIUM.yaml","thermococcus_medium"],["THERMOCOCCUS_WAIOTAPUENSE_MEDIUM.yaml","thermococcus_waiotapuense_medium"],["desulfurococcus_medium__dbcbba45.yaml","desulfurococcus_medium"]]},{"id":"CHEBI:2682","l":"amphotericin B","na":1,"nb":3,"a":[["antifungal/amphotericin-b.html","amphotericin B"]],"b":[["HELICOBACTER_MEDIUM.yaml","helicobacter_medium"],["brain_heart_infusion_agar_upplemented_with_10_calf_blood_and_antibiotics.yaml","brain_heart_infusion_agar_upplemented_with_10_calf_blood_and_antibiotics"],["eagles_minimum_essential_medium_mem_containing_antibiotics_and_fetal_bovine_serum.yaml","eagles_minimum_essential_medium_mem_containing_antibiotics_and_fetal_bovine_serum"]]},{"id":"CHEBI:6109","l":"kanamycin A sulfate","na":1,"nb":3,"a":[["antibacterial/kanamycin-a-sulfate.html","kanamycin A sulfate"]],"b":[["R2A_Kan10_Lactate.yaml","R2A_Kan10_Lactate"],["R2A_Kan50_Tween01_Cycloheximide200.yaml","R2A_Kan50_Tween01_Cycloheximide200"],["lb_luria_bertani_agar_with_kanamycin_and_rifampicin__0472ff8f.yaml","lb_luria_bertani_agar_with_kanamycin_and_rifampicin"]]},{"id":"CHEBI:6872","l":"methylene blue","na":1,"nb":3,"a":[["antiprotozoal/methylene-blue.html","methylene blue"]],"b":[["HALANAEROBIUM_HYDROGENIFORMANS_MEDIUM.yaml","halanaerobium_hydrogeniformans_medium"],["halanaerobium_hydrogeniformans_medium__4da99b2d.yaml","halanaerobium_hydrogeniformans_medium"],["togo_medium_m2562.yaml","togo_medium_m2562"]]},{"id":"CHEBI:28077","l":"rifampicin","na":1,"nb":2,"a":[["antimycobacterial/rifampicin.html","rifampicin"]],"b":[["lb_luria_bertani_agar_with_kanamycin_and_rifampicin__0472ff8f.yaml","lb_luria_bertani_agar_with_kanamycin_and_rifampicin"],["luria_bertani_lb_antibiotics.yaml","luria_bertani_lb_antibiotics"]]},{"id":"CHEBI:24536","l":"hexachlorocyclohexane","na":1,"nb":1,"a":[["antibacterial/%CE%B3-hexachlorocyclohexane.html","γ-hexachlorocyclohexane"]],"b":[["LINDANE_MEDIUM.yaml","lindane_medium"]]},{"id":"CHEBI:30751","l":"formic acid","na":1,"nb":1,"a":[["antibacterial/formic-acid.html","formic acid"]],"b":[["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]}]} \ No newline at end of file +{"a":"AntibioticMech","b":"CultureMech","base":{"AntibioticMech":"https://culturebotai.github.io/AntibioticMech/pages/","CultureMech":"https://github.com/CultureBotAI/CultureMech/blob/main/data/merge_yaml/merged/"},"n":29,"by":{"CHEBI":29},"terms":[{"id":"CHEBI:17334","l":"penicillin","na":38,"nb":4,"a":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/azidocillin.html","azidocillin"],["antibacterial/azlocillin.html","azlocillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/carbenicillin.html","carbenicillin"]],"b":[["eagles_minimum_essential_medium_mem_containing_antibiotics_and_fetal_bovine_serum.yaml","eagles_minimum_essential_medium_mem_containing_antibiotics_and_fetal_bovine_serum"],["modified_pleuropneumonia_like_organism_pplo_medium.yaml","modified_pleuropneumonia_like_organism_pplo_medium"],["pplo_glucose_broth.yaml","pplo_glucose_broth"],["pplo_glucose_broth__66449f8d.yaml","pplo_glucose_broth"]]},{"id":"CHEBI:48923","l":"erythromycin","na":6,"nb":4,"a":[["antibacterial/erythromycin-a.html","erythromycin A"],["unspecified/erythromycin-b.html","erythromycin B"],["unspecified/erythromycin-c.html","erythromycin C"],["unspecified/erythromycin-d.html","erythromycin D"],["unspecified/erythromycin-e.html","erythromycin E"],["unspecified/erythromycin-n-methyl-14c.html","erythromycin-[N-methyl-14C]"]],"b":[["T2U_MEDIUM.yaml","t2u_medium"],["bhi_medium_modified.yaml","bhi_medium_modified"],["brain_heart_infusion_bhi_medium_supplemented_with_antibiotics.yaml","brain_heart_infusion_bhi_medium_supplemented_with_antibiotics"],["mrs_medium_containing_erythromycin.yaml","mrs_medium_containing_erythromycin"]]},{"id":"CHEBI:30746","l":"benzoic acid","na":2,"nb":2,"a":[["biocide/benzoic-acid.html","benzoic acid"],["biocide/carboxy-ptio.html","carboxy-PTIO"]],"b":[["UGA_defined_4CarbonMix_Nitrate_anaerobic_pH_7.1.yaml","UGA defined 4CarbonMix Nitrate anaerobic pH 7.1"],["togo_medium_m1949.yaml","togo_medium_m1949"]]},{"id":"CHEBI:49976","l":"zinc dichloride","na":1,"nb":1018,"a":[["biocide/zinc-dichloride.html","zinc dichloride"]],"b":[["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["3n_bbm_v.yaml","3n_bbm_v"],["3n_bbm_v_recipe_for_customer_orders.yaml","3n_bbm_v_recipe_for_customer_orders"],["A1_MEDIUM.yaml","a1_medium"],["ABM.yaml","abm"],["ACETIVIBRIO_ALKALICELLULOSI_MEDIUM.yaml","acetivibrio_alkalicellulosi_medium"]]},{"id":"CHEBI:32150","l":"sodium thiosulfate pentahydrate","na":1,"nb":312,"a":[["antifungal/sodium-thiosulfate-pentahydrate.html","sodium thiosulfate pentahydrate"]],"b":[["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["ACIDITHIOBACILLUS_THIOOXIDANS_MEDIUM.yaml","acidithiobacillus_thiooxidans_medium"],["ALKALIPHILUS_LACT_MEDIUM.yaml","alkaliphilus_lact_medium"],["ALKALIPHILUS_LACV_MEDIUM.yaml","alkaliphilus_lacv_medium"],["ALKALIPHILUS_TRANSVAALENSIS_MEDIUM.yaml","alkaliphilus_transvaalensis_medium"],["AMMONIFEX_THIOPHILUS_MEDIUM.yaml","ammonifex_thiophilus_medium"]]},{"id":"CHEBI:33403","l":"elemental sulfur","na":1,"nb":82,"a":[["antifungal/polysulfur.html","polysulfur"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["ACIDIFERROBACTER_MEDIUM.yaml","acidiferrobacter_medium"],["ACIDILOBUS_MEDIUM.yaml","acidilobus_medium"],["AEROBIC_SULFOLOBALES_MEDIUM.yaml","aerobic_sulfolobales_medium"],["AS_medium.yaml","as_medium"]]},{"id":"CHEBI:16236","l":"ethanol","na":1,"nb":70,"a":[["biocide/ethanol.html","ethanol"]],"b":[["ACETOBACTER_PEROXYDANS_MEDIUM.yaml","acetobacter_peroxydans_medium"],["AE_BROTH.yaml","ae_broth"],["ANAEROTIGNUM_NEOPROPIONICUM_MEDIUM.yaml","anaerotignum_neopropionicum_medium"],["Acetobacter_Europaeus_Medium.yaml","acetobacter_europaeus_medium"],["BTU_MEDIUM.yaml","btu_medium"],["CLOSTRIDIUM_KLUYVERI_MEDIUM.yaml","clostridium_kluyveri_medium"]]},{"id":"CHEBI:30769","l":"citric acid","na":1,"nb":55,"a":[["unspecified/citric-acid.html","citric acid"]],"b":[["Azospira_Medium.yaml","azospira_medium"],["BG11.yaml","bg11"],["BG11_medium.yaml","bg11_medium"],["CTM_MEDIUM.yaml","ctm_medium"],["ETHANOLOGENBACTERIUM_MEDIUM.yaml","ethanologenbacterium_medium"],["GINGER_BEER_PLANT_MEDIUM.yaml","ginger_beer_plant_medium"]]},{"id":"CHEBI:132112","l":"sodium thiosulfate","na":1,"nb":45,"a":[["antifungal/sodium-thiosulfate.html","sodium thiosulfate"]],"b":[["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["ALKALISPIRILLUM_MOBILE_MEDIUM.yaml","alkalispirillum_mobile_medium"],["ANAEROBACULUM_MEDIUM.yaml","anaerobaculum_medium"],["CHROMATIUM_SALEXIGENS_MEDIUM.yaml","chromatium_salexigens_medium"],["ECTOTHIORHODOSPIRA_MAGNA_MEDIUM.yaml","ectothiorhodospira_magna_medium"],["HALOPHILIC_SOB_MEDIUM.yaml","halophilic_sob_medium"]]},{"id":"CHEBI:15366","l":"acetic acid","na":1,"nb":26,"a":[["biocide/acetic-acid.html","acetic acid"]],"b":[["ACY.yaml","ACY"],["AE_BROTH.yaml","ae_broth"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Acetobacter_Europaeus_Medium.yaml","acetobacter_europaeus_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"]]},{"id":"CHEBI:113455","l":"sodium benzoate","na":1,"nb":22,"a":[["biocide/sodium-benzoate.html","sodium benzoate"]],"b":[["ALCALIGENES_XYLOSOXYDANS_MEDIUM_WITH_BENZOATE.yaml","alcaligenes_xylosoxydans_medium_with_benzoate"],["AROMATOLEUM_MEDIUM.yaml","aromatoleum_medium"],["BENZOATE_MEDIUM.yaml","benzoate_medium"],["DESULFALLAS_MEDIUM.yaml","desulfallas_medium"],["DESULFATIRHABDIUM_MEDIUM.yaml","desulfatirhabdium_medium"],["DESULFOCARBO_INDIANENSIS_MEDIUM.yaml","desulfocarbo_indianensis_medium"]]},{"id":"CHEBI:30768","l":"propionic acid","na":1,"nb":21,"a":[["antifungal/propionic-acid.html","propionic acid"]],"b":[["ACY.yaml","ACY"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"],["MEDIUM_10.yaml","medium_10"],["Mega.yaml","Mega"]]},{"id":"CHEBI:78870","l":"sodium nitrite","na":1,"nb":17,"a":[["biocide/sodium-nitrite.html","sodium nitrite"]],"b":[["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["Autotrophic_Nitrobacter_Medium.yaml","autotrophic_nitrobacter_medium"],["HETEROTROPHIC_NITROBACTER_MEDIUM.yaml","heterotrophic_nitrobacter_medium"],["MIXOTROPHIC_NITROBACTER_MEDIUM.yaml","mixotrophic_nitrobacter_medium"],["MODIFIED_THIOCAPSA_MEDIUM.yaml","modified_thiocapsa_medium"],["Medium_for_nitrite_oxidizer.yaml","medium_for_nitrite_oxidizer"]]},{"id":"CHEBI:132106","l":"sodium propionate","na":1,"nb":15,"a":[["antifungal/sodium-propionate.html","sodium propionate"]],"b":[["DESULFOBULBUS_MEDIUM.yaml","desulfobulbus_medium"],["DESULFOFABA_HANSENII_MEDIUM.yaml","desulfofaba_hansenii_medium"],["DESULFOFABA_MEDIUM.yaml","desulfofaba_medium"],["DESULFORHABDUS_AMNIGENA_MEDIUM.yaml","desulforhabdus_amnigena_medium"],["DESULFOSALSIMONAS_MEDIUM.yaml","desulfosalsimonas_medium"],["DPM_MEDIUM.yaml","dpm_medium"]]},{"id":"CHEBI:28971","l":"ampicillin","na":1,"nb":14,"a":[["antibacterial/ampicillin.html","ampicillin"]],"b":[["2_5_nacl_heart_infusion_hi_medium.yaml","2_5_nacl_heart_infusion_hi_medium"],["PPLO_broth.yaml","pplo_broth"],["brain_heart_infusion_bhi_medium_supplemented_with_antibiotics.yaml","brain_heart_infusion_bhi_medium_supplemented_with_antibiotics"],["dehalogenimonas_medium__6a926cbc.yaml","dehalogenimonas_medium"],["ip3_3_medium__726cb47b.yaml","ip3_3_medium"],["lb_agar_supplemented_with_ampicillin.yaml","lb_agar_supplemented_with_ampicillin"]]},{"id":"CHEBI:81862","l":"potassium hydrogencarbonate","na":1,"nb":13,"a":[["antifungal/potassium-hydrogencarbonate.html","potassium hydrogencarbonate"]],"b":[["ANAEROTIGNUM_NEOPROPIONICUM_MEDIUM.yaml","anaerotignum_neopropionicum_medium"],["METHANOTHRIX_MEDIUM.yaml","methanothrix_medium"],["Methanosaeta_Brevibacterium_Medium.yaml","methanosaeta_brevibacterium_medium"],["Methanosaeta_harundinacea_medium.yaml","methanosaeta_harundinacea_medium"],["PELOBACTER_ACIDIGALLICI_MEDIUM.yaml","pelobacter_acidigallici_medium"],["SULFURIMONAS_JS_MEDIUM.yaml","sulfurimonas_js_medium"]]},{"id":"CHEBI:72449","l":"malachite green","na":1,"nb":9,"a":[["antibacterial/malachite-green.html","malachite green"]],"b":[["1_ogawa_medium.yaml","1_ogawa_medium"],["Lowenstein_Jenson_medium.yaml","lowenstein_jenson_medium"],["MIDDLEBROCK_7H11_AGAR.yaml","middlebrock_7h11_agar"],["MIDDLEBROOK_MEDIUM.yaml","middlebrook_medium"],["Middlebrook_7H11_Agar.yaml","middlebrook_7h11_agar"],["l_wenstein_jensen_medium.yaml","l_wenstein_jensen_medium"]]},{"id":"CHEBI:16196","l":"oleic acid","na":1,"nb":6,"a":[["antibacterial/oleic-acid.html","oleic acid"]],"b":[["MIDDLEBROCK_7H11_AGAR.yaml","middlebrock_7h11_agar"],["MIDDLEBROOK_MEDIUM.yaml","middlebrook_medium"],["Middle_Brook_Medium.yaml","middle_brook_medium"],["Middlebrook_7H11_Agar.yaml","middlebrook_7h11_agar"],["middlebrook_7h11_agar_difco.yaml","middlebrook_7h11_agar_difco"],["modified_dixon_s_agar.yaml","modified_dixon_s_agar"]]},{"id":"CHEBI:27641","l":"cycloheximide","na":1,"nb":6,"a":[["antifungal/cycloheximide.html","cycloheximide"]],"b":[["PPM.yaml","ppm"],["R2A_Kan50_Tween01_Cycloheximide200.yaml","R2A_Kan50_Tween01_Cycloheximide200"],["alkaliphiles_pirellula_medium_m1py.yaml","alkaliphiles_pirellula_medium_m1py"],["chlamydia_serpentis_poikilotherma_medium.yaml","chlamydia_serpentis_poikilotherma_medium"],["pirellula_medium_m31py.yaml","pirellula_medium_m31py"],["ppm__7a6a33ba.yaml","ppm"]]},{"id":"CHEBI:15882","l":"phenol","na":1,"nb":4,"a":[["biocide/phenol.html","phenol"]],"b":[["MEDIUM_FOR_BACILLUS_STEAROTHERMOPHILUS.yaml","medium_for_bacillus_stearothermophilus"],["anaerobic_bicarbonate_buffered_medium_with_phenol.yaml","anaerobic_bicarbonate_buffered_medium_with_phenol"],["defined_freshwater_medium_cocl2__ac506908.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__0930ab53.yaml","defined_freshwater_medium_coso4"]]},{"id":"CHEBI:28631","l":"3-phenylpropionic acid","na":1,"nb":4,"a":[["antifungal/3-phenylpropionic-acid.html","3-phenylpropionic acid"]],"b":[["ENDOMICROBIUM_PROAVITUM_RSA_MEDIUM.yaml","endomicrobium_proavitum_rsa_medium"],["MODIFIED_AM5_MEDIUM_2.yaml","modified_am5_medium_2"],["am5_medium_elusimicrobium_medium.yaml","am5_medium_elusimicrobium_medium"],["endomicrobium_proavitum_rsa_medium__51692939.yaml","endomicrobium_proavitum_rsa_medium"]]},{"id":"CHEBI:41688","l":"crystal violet","na":1,"nb":4,"a":[["antibacterial/crystal-violet.html","crystal violet"]],"b":[["1298.yaml","1298"],["ALKALINE_CELLULOSE_AGAR.yaml","alkaline_cellulose_agar"],["acido_thermophile_medium.yaml","acido_thermophile_medium"],["modified_eggerth_gagnon_medium.yaml","modified_eggerth_gagnon_medium"]]},{"id":"CHEBI:17909","l":"polysulfur","na":1,"nb":3,"a":[["antifungal/polysulfur.html","polysulfur"]],"b":[["THERMOCOCCUS_WAIOTAPUENSE_MEDIUM.yaml","thermococcus_waiotapuense_medium"],["desulfurococcus_medium__dbcbba45.yaml","desulfurococcus_medium"],["thermococcus_medium.yaml","thermococcus_medium"]]},{"id":"CHEBI:2682","l":"amphotericin B","na":1,"nb":3,"a":[["antifungal/amphotericin-b.html","amphotericin B"]],"b":[["HELICOBACTER_MEDIUM.yaml","helicobacter_medium"],["brain_heart_infusion_agar_upplemented_with_10_calf_blood_and_antibiotics.yaml","brain_heart_infusion_agar_upplemented_with_10_calf_blood_and_antibiotics"],["eagles_minimum_essential_medium_mem_containing_antibiotics_and_fetal_bovine_serum.yaml","eagles_minimum_essential_medium_mem_containing_antibiotics_and_fetal_bovine_serum"]]},{"id":"CHEBI:6109","l":"kanamycin A sulfate","na":1,"nb":3,"a":[["antibacterial/kanamycin-a-sulfate.html","kanamycin A sulfate"]],"b":[["R2A_Kan10_Lactate.yaml","R2A_Kan10_Lactate"],["R2A_Kan50_Tween01_Cycloheximide200.yaml","R2A_Kan50_Tween01_Cycloheximide200"],["lb_luria_bertani_agar_with_kanamycin_and_rifampicin__0472ff8f.yaml","lb_luria_bertani_agar_with_kanamycin_and_rifampicin"]]},{"id":"CHEBI:6872","l":"methylene blue","na":1,"nb":3,"a":[["antiprotozoal/methylene-blue.html","methylene blue"]],"b":[["HALANAEROBIUM_HYDROGENIFORMANS_MEDIUM.yaml","halanaerobium_hydrogeniformans_medium"],["halanaerobium_hydrogeniformans_medium__4da99b2d.yaml","halanaerobium_hydrogeniformans_medium"],["togo_medium_m2562.yaml","togo_medium_m2562"]]},{"id":"CHEBI:28077","l":"rifampicin","na":1,"nb":2,"a":[["antimycobacterial/rifampicin.html","rifampicin"]],"b":[["lb_luria_bertani_agar_with_kanamycin_and_rifampicin__0472ff8f.yaml","lb_luria_bertani_agar_with_kanamycin_and_rifampicin"],["luria_bertani_lb_antibiotics.yaml","luria_bertani_lb_antibiotics"]]},{"id":"CHEBI:24536","l":"hexachlorocyclohexane","na":1,"nb":1,"a":[["antibacterial/%CE%B3-hexachlorocyclohexane.html","γ-hexachlorocyclohexane"]],"b":[["LINDANE_MEDIUM.yaml","lindane_medium"]]},{"id":"CHEBI:30751","l":"formic acid","na":1,"nb":1,"a":[["antibacterial/formic-acid.html","formic acid"]],"b":[["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/AntibioticMech--MediaIngredientMech.json b/assets/fleet/edges/AntibioticMech--MediaIngredientMech.json index 7576f23..48581c7 100644 --- a/assets/fleet/edges/AntibioticMech--MediaIngredientMech.json +++ b/assets/fleet/edges/AntibioticMech--MediaIngredientMech.json @@ -1 +1 @@ -{"a":"AntibioticMech","b":"MediaIngredientMech","base":{"AntibioticMech":"https://culturebotai.github.io/AntibioticMech/pages/","MediaIngredientMech":"https://github.com/CultureBotAI/MediaIngredientMech/blob/main/data/ingredients/"},"n":324,"by":{"CHEBI":324},"terms":[{"id":"CHEBI:35505","l":"","na":21,"nb":74,"a":[["antibacterial/amoxicillin-trihydrate.html","amoxicillin trihydrate"],["antibacterial/cefepime-hydrochloride.html","cefepime hydrochloride"],["antibacterial/ceftaroline-fosamil-acetate-monohydrate.html","ceftaroline fosamil acetate monohydrate"],["antibacterial/ceftibuten-dihydrate.html","ceftibuten dihydrate"],["antibacterial/cephalexin-monohydrate.html","cephalexin monohydrate"],["antibacterial/ciprofloxacin-hydrochloride-hydrate.html","ciprofloxacin hydrochloride hydrate"]],"b":[["mapped/2-Deoxyadenosine_Monohydrate.yaml","2-Deoxyadenosine monohydrate"],["mapped/2-Keto-D-gluconic_Acid_Hemicalcium_Salt_Hydrate.yaml","2-Keto-D-gluconic acid hemicalcium salt hydrate"],["mapped/2-Keto-D-gluconic_Acid_Hemicalcium_Salt_Monohydrate.yaml","2-Keto-D-gluconic acid hemicalcium salt monohydrate"],["mapped/4-Hydroxymandelic_Acid_Monohydrate.yaml","4-Hydroxymandelic acid monohydrate"],["mapped/5-Fluoroorotic_Acid_Hydrate.yaml","5-Fluoroorotic acid hydrate"],["mapped/A-Ketoglutaric_Acid_Disodium_Salt_Hydrate.yaml","a-Ketoglutaric acid disodium salt hydrate"]]},{"id":"CHEBI:33709","l":"amino acid","na":8,"nb":54,"a":[["antibacterial/7-3-aminopyrrolidin-1-yl-1-2-4-difluorophenyl-6-fluoro-4-oxo-1-4-dihyd.html","7-(3-aminopyrrolidin-1-yl)-1-(2,4-difluorophenyl)-6-fluoro-4-oxo-1,4-dihydro-1,8-naphthyridine-3-carboxylic"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/pipemidic-acid.html","pipemidic acid"],["antibacterial/trovafloxacin.html","trovafloxacin"],["antifungal/mediomycin-a.html","mediomycin A"],["antifungal/mediomycin-b.html","mediomycin B"]],"b":[["mapped/1-aminocyclopropane-1-carboxylate.yaml","1-aminocyclopropane-1-carboxylate"],["mapped/3-Chloro-L-tyrosine.yaml","3-Chloro-L-tyrosine"],["mapped/3-aminobutyric_Acid.yaml","3-aminobutyric acid"],["mapped/4-azido-L-phenylalanine.yaml","4-azido-L-phenylalanine"],["mapped/5-Aminolevulinic_Acid.yaml","5-Aminolevulinic acid"],["mapped/5-aminovaleric_Acid.yaml","5-Aminovaleric acid"]]},{"id":"CHEBI:26218","l":"","na":3,"nb":2,"a":[["antibacterial/potassium-clavulanate.html","potassium clavulanate"],["antifungal/potassium-hydrogencarbonate.html","potassium hydrogencarbonate"],["biocide/potassium-sorbate.html","potassium sorbate"]],"b":[["mapped/5-Keto-D-Gluconic_Acid_Potassium_Salt.yaml","5-Keto-D-Gluconic Acid potassium salt"],["mapped/D-Saccharic_Acid_Potassium_Salt.yaml","D-Saccharic acid potassium salt"]]},{"id":"CHEBI:30746","l":"benzoic acid","na":2,"nb":2,"a":[["biocide/benzoic-acid.html","benzoic acid"],["biocide/carboxy-ptio.html","carboxy-PTIO"]],"b":[["mapped/4_Carbon_Mix.yaml","4 Carbon Mix"],["mapped/Benzoic_Acid.yaml","benzoic acid"]]},{"id":"CHEBI:23066","l":"","na":66,"nb":1,"a":[["antibacterial/cefacetrile.html","cefacetrile"],["antibacterial/cefaclor.html","cefaclor"],["antibacterial/cefadroxil.html","cefadroxil"],["antibacterial/cefaloram.html","cefaloram"],["antibacterial/cefaloridine.html","cefaloridine"],["antibacterial/cefalotin.html","cefalotin"]],"b":[["mapped/Cephalosporin.yaml","Cephalosporin"]]},{"id":"CHEBI:25105","l":"","na":58,"nb":1,"a":[["antibacterial/5-o-mycaminosyltylonolide.html","5-O-mycaminosyltylonolide"],["antibacterial/aplasmomycin.html","(+)-aplasmomycin"],["antibacterial/azithromycin.html","azithromycin"],["antibacterial/boromycin.html","boromycin"],["antibacterial/brefeldin-a.html","brefeldin A"],["antibacterial/cethromycin.html","cethromycin"]],"b":[["mapped/Macrolide_Antibiotic.yaml","Macrolide Antibiotic"]]},{"id":"CHEBI:17334","l":"penicillin","na":38,"nb":1,"a":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/azidocillin.html","azidocillin"],["antibacterial/azlocillin.html","azlocillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/carbenicillin.html","carbenicillin"]],"b":[["mapped/Penicillin.yaml","Penicillin"]]},{"id":"CHEBI:35358","l":"","na":33,"nb":1,"a":[["antibacterial/prontosil.html","prontosil"],["antibacterial/sulfabenzamide.html","sulfabenzamide"],["antibacterial/sulfabromomethazine.html","sulfabromomethazine"],["antibacterial/sulfachloropyridazine.html","sulfachloropyridazine"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfaethoxypyridazine.html","sulfaethoxypyridazine"]],"b":[["mapped/Sulfonamide.yaml","Sulfonamide"]]},{"id":"CHEBI:25000","l":"","na":22,"nb":1,"a":[["antifungal/callipeltin-a.html","callipeltin A"],["antifungal/eugeniin.html","eugeniin"],["antifungal/fenpicoxamid.html","fenpicoxamid"],["antifungal/multiplolide-a.html","multiplolide A"],["antifungal/multiplolide-b.html","multiplolide B"],["antifungal/neothyonidioside.html","neothyonidioside"]],"b":[["mapped/Lactone.yaml","Lactone"]]},{"id":"CHEBI:87228","l":"","na":22,"nb":1,"a":[["antibacterial/sulfabenzamide.html","sulfabenzamide"],["antibacterial/sulfamerazine.html","sulfamerazine"],["antibacterial/sulfamethazine.html","sulfamethazine"],["antibacterial/sulfamethizole.html","sulfamethizole"],["antibacterial/sulfamethoxazole.html","sulfamethoxazole"],["antibacterial/sulfanilamide.html","sulfanilamide"]],"b":[["mapped/Sulfonamide.yaml","Sulfonamide"]]},{"id":"CHEBI:49322","l":"","na":18,"nb":1,"a":[["antimycobacterial/nothramicin.html","nothramicin"],["unspecified/10-carboxy-13-deoxycarminomycin.html","10-carboxy-13-deoxycarminomycin"],["unspecified/10-carboxy-13-deoxydaunorubicin.html","10-carboxy-13-deoxydaunorubicin"],["unspecified/13-deoxycarminomycin.html","13-deoxycarminomycin"],["unspecified/13r-13-dihydrocarminomycin.html","(13R)-13-dihydrocarminomycin"],["unspecified/4-epidoxorubicin.html","4'-epidoxorubicin"]],"b":[["mapped/Anthracycline_Antibiotic.yaml","Anthracycline Antibiotic"]]},{"id":"CHEBI:22507","l":"","na":17,"nb":1,"a":[["antibacterial/astromicin.html","astromicin"],["antibacterial/etimicin.html","etimicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"],["antibacterial/sisomycin.html","sisomycin"]],"b":[["mapped/Aminoglycoside_Antibiotic.yaml","Aminoglycoside Antibiotic"]]},{"id":"CHEBI:49976","l":"zinc dichloride","na":1,"nb":8,"a":[["biocide/zinc-dichloride.html","zinc dichloride"]],"b":[["mapped/MME_Trace_Minerals.yaml","MME Trace Minerals"],["mapped/Mc_trace_minerals_SO4free.yaml","Mc_trace_minerals_SO4free"],["mapped/P-iv_Metal_Solution.yaml","P-IV Metal Solution"],["mapped/Sulfur-free_DL_Minerals.yaml","Sulfur-free DL minerals"],["mapped/Trace_Element_Solution_SL-10.yaml","Trace element solution SL-10"],["mapped/UW_Concentrated_Base_No_Sulfur.yaml","UW concentrated base no sulfur"]]},{"id":"CHEBI:59062","l":"","na":8,"nb":1,"a":[["antibacterial/colistimethate-a.html","colistimethate A"],["antibacterial/colistimethate-b.html","colistimethate B"],["antibacterial/colistin-a-sodium-methanesulfonate.html","colistin A sodium methanesulfonate"],["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b-sodium-methanesulfonate.html","colistin B sodium methanesulfonate"],["antibacterial/colistin-b.html","colistin B"]],"b":[["mapped/Polymyxin.yaml","Polymyxin"]]},{"id":"CHEBI:48923","l":"erythromycin","na":6,"nb":1,"a":[["antibacterial/erythromycin-a.html","erythromycin A"],["unspecified/erythromycin-b.html","erythromycin B"],["unspecified/erythromycin-c.html","erythromycin C"],["unspecified/erythromycin-d.html","erythromycin D"],["unspecified/erythromycin-e.html","erythromycin E"],["unspecified/erythromycin-n-methyl-14c.html","erythromycin-[N-methyl-14C]"]],"b":[["mapped/Erythromycin.yaml","erythromycin"]]},{"id":"CHEBI:24698","l":"hydroxyflavone","na":5,"nb":1,"a":[["antibacterial/ochnaflavone.html","ochnaflavone"],["antiviral/agathisflavone.html","agathisflavone"],["antiviral/amentoflavone.html","amentoflavone"],["antiviral/ginkgetin.html","ginkgetin"],["antiviral/robustaflavone.html","robustaflavone"]],"b":[["mapped/36-Dihydroxyflavone.yaml","3',6-Dihydroxyflavone"]]},{"id":"CHEBI:28600","l":"farnesol","na":5,"nb":1,"a":[["unspecified/2-cis-6-cis-farnesol.html","(2-cis,6-cis)-farnesol"],["unspecified/2-cis-6-trans-farnesol.html","(2-cis,6-trans)-farnesol"],["unspecified/2-trans-6-cis-farnesol.html","(2-trans,6-cis)-farnesol"],["unspecified/2-trans-6-trans-farnesol.html","(2-trans,6-trans)-farnesol"],["unspecified/farnesol.html","farnesol"]],"b":[["mapped/TransTrans-Farnesol.yaml","Trans,Trans-Farnesol"]]},{"id":"CHEBI:35273","l":"quaternary ammonium salt","na":5,"nb":1,"a":[["antibacterial/benzethonium-chloride.html","benzethonium chloride"],["antibacterial/quaternium-15.html","quaternium-15"],["antifungal/rezafungin-acetate.html","rezafungin acetate"],["biocide/benzododecinium-bromide.html","benzododecinium bromide"],["biocide/benzododecinium-chloride.html","benzododecinium chloride"]],"b":[["mapped/Tetramethyl_Ammonium.yaml","Tetramethyl ammonium"]]},{"id":"CHEBI:30769","l":"citric acid","na":1,"nb":4,"a":[["unspecified/citric-acid.html","citric acid"]],"b":[["mapped/Citric_Acid.yaml","Citric acid"],["mapped/Citric_Acid_X_H2o.yaml","Citric acid x H2O"],["mapped/Citric_Acidh2o.yaml","Citric Acid•H2O"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:33403","l":"elemental sulfur","na":1,"nb":4,"a":[["antifungal/polysulfur.html","polysulfur"]],"b":[["mapped/Sulfur.yaml","Sulfur"],["mapped/Sulfur_Powder.yaml","Sulfur (powder)"],["mapped/Sulphur.yaml","Sulphur"],["mapped/Yeast_Extract_Sulfur.yaml","Yeast Extract + Sulfur"]]},{"id":"CHEBI:55429","l":"cephamycin","na":4,"nb":1,"a":[["antibacterial/cefminox.html","cefminox"],["antibacterial/cefotetan.html","cefotetan"],["antibacterial/cefoxitin.html","cefoxitin"],["unspecified/cephamycin-c.html","cephamycin C"]],"b":[["mapped/Cephamycin_A.yaml","Cephamycin A"]]},{"id":"CHEBI:17012","l":"N-acetylneuraminic acid","na":3,"nb":1,"a":[["antiviral/n-acetyl-%CE%B1-neuraminic-acid.html","N-acetyl-α-neuraminic acid"],["antiviral/n-acetyl-%CE%B2-neuraminic-acid.html","N-acetyl-β-neuraminic acid"],["antiviral/n-acetylneuraminic-acid.html","N-acetylneuraminic acid"]],"b":[["mapped/N-acetylneuraminic_Acid.yaml","N-acetylneuraminic acid"]]},{"id":"CHEBI:17580","l":"linalool","na":3,"nb":1,"a":[["unspecified/linalool.html","linalool"],["unspecified/r-linalool.html","(R)-linalool"],["unspecified/s-linalool.html","(S)-linalool"]],"b":[["mapped/Linalool.yaml","Linalool"]]},{"id":"CHEBI:22907","l":"","na":3,"nb":1,"a":[["antibacterial/bleomycin-a2.html","bleomycin A2"],["antibacterial/bleomycin.html","bleomycin"],["unspecified/bleomycin-a5.html","bleomycin A5"]],"b":[["mapped/Bleomycin.yaml","Bleomycin"]]},{"id":"CHEBI:25399","l":"","na":3,"nb":1,"a":[["antifungal/m-cresol.html","m-cresol"],["antifungal/o-cresol.html","o-cresol"],["antifungal/p-cresol.html","p-cresol"]],"b":[["mapped/Cresol.yaml","Cresol"]]},{"id":"CHEBI:34118","l":"oct-1-en-3-ol","na":3,"nb":1,"a":[["unspecified/oct-1-en-3-ol.html","oct-1-en-3-ol"],["unspecified/r-oct-1-en-3-ol.html","(R)-oct-1-en-3-ol"],["unspecified/s-oct-1-en-3-ol.html","(S)-oct-1-en-3-ol"]],"b":[["mapped/1-octen-3-ol.yaml","1-octen-3-ol"]]},{"id":"CHEBI:35825","l":"mandelic acid","na":3,"nb":1,"a":[["antibacterial/mandelic-acid.html","mandelic acid"],["antibacterial/r-mandelic-acid.html","(R)-mandelic acid"],["antibacterial/s-mandelic-acid.html","(S)-mandelic acid"]],"b":[["mapped/Mandelic_Acid.yaml","Mandelic acid"]]},{"id":"CHEBI:38319","l":"usnic acid","na":3,"nb":1,"a":[["antifungal/usnic-acid-38319.html","usnic acid"],["antifungal/usnic-acid-38320.html","(+)-usnic acid"],["antifungal/usnic-acid.html","(−)-usnic acid"]],"b":[["mapped/Usnic_Acid.yaml","Usnic Acid"]]},{"id":"CHEBI:48844","l":"roxithromycin","na":3,"nb":1,"a":[["antibacterial/e-roxithromycin.html","(E)-roxithromycin"],["antibacterial/roxithromycin.html","roxithromycin"],["antibacterial/z-roxithromycin.html","(Z)-roxithromycin"]],"b":[["mapped/Roxithromycin.yaml","Roxithromycin"]]},{"id":"CHEBI:83230","l":"","na":3,"nb":1,"a":[["antifungal/pradimicin-a.html","pradimicin A"],["antifungal/pradimicin-b.html","pradimicin B"],["antifungal/pradimicin-c.html","pradimicin C"]],"b":[["mapped/Pradimicin.yaml","Pradimicin"]]},{"id":"CHEBI:17909","l":"polysulfur","na":1,"nb":2,"a":[["antifungal/polysulfur.html","polysulfur"]],"b":[["mapped/Sulfur_Powder.yaml","Sulfur (powder)"],["mapped/Sulphur.yaml","Sulphur"]]},{"id":"CHEBI:24753","l":"","na":2,"nb":1,"a":[["antibacterial/hygromycin-b.html","hygromycin B"],["unspecified/7-o-phosphohygromycin-b.html","7'-O-phosphohygromycin B"]],"b":[["mapped/Hygromycin.yaml","Hygromycin"]]},{"id":"CHEBI:26401","l":"purines","na":2,"nb":1,"a":[["antiviral/mercaptopurine.html","mercaptopurine"],["antiviral/valganciclovir.html","valganciclovir"]],"b":[["mapped/Purines.yaml","Purines"]]},{"id":"CHEBI:2682","l":"amphotericin B","na":1,"nb":2,"a":[["antifungal/amphotericin-b.html","amphotericin B"]],"b":[["mapped/Amphotericin_B.yaml","Amphotericin B"],["unmapped/Amphotericin.yaml","Amphotericin"]]},{"id":"CHEBI:28034","l":"","na":2,"nb":1,"a":[["antifungal/kaempferol-3-o-%CE%B2-d-galactoside.html","kaempferol 3-O-β-D-galactoside"],["antiviral/acacetin-7-o-%CE%B2-d-galactopyranoside.html","acacetin-7-O-β-D-galactopyranoside"]],"b":[["mapped/Beta-D-galactoside.yaml","Beta-D-galactoside"]]},{"id":"CHEBI:28831","l":"","na":1,"nb":2,"a":[["antifungal/4-5-6-7-tetrachloro-2-benzofuran-1-3h-one.html","4,5,6,7-tetrachloro-2-benzofuran-1(3H)-one"]],"b":[["mapped/1-propanolCO2.yaml","1-propanol+CO2"],["mapped/Propan-1-ol.yaml","Propan-1-ol"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":1,"nb":2,"a":[["antibacterial/daptomycin.html","daptomycin"]],"b":[["mapped/Calcium%282%29.yaml","Calcium(2+)"],["mapped/Calcium.yaml","Calcium"]]},{"id":"CHEBI:32150","l":"sodium thiosulfate pentahydrate","na":1,"nb":2,"a":[["antifungal/sodium-thiosulfate-pentahydrate.html","sodium thiosulfate pentahydrate"]],"b":[["mapped/Na2s2o3_X_5_H2o.yaml","Na2S2O3 x 5 H2O"],["mapped/Sodium_Thiosulfate_Pentahydrate.yaml","Sodium Thiosulfate Pentahydrate"]]},{"id":"CHEBI:3508","l":"ceftazidime","na":1,"nb":2,"a":[["antibacterial/ceftazidime.html","ceftazidime"]],"b":[["mapped/Ceftazidime.yaml","Ceftazidime"],["mapped/Ceftazidime_Hydrate.yaml","Ceftazidime hydrate"]]},{"id":"CHEBI:39207","l":"","na":2,"nb":1,"a":[["unspecified/spinosyn-a.html","spinosyn A"],["unspecified/spinosyn-d.html","spinosyn D"]],"b":[["mapped/Spinosyn.yaml","Spinosyn"]]},{"id":"CHEBI:44976","l":"phosphonic acid","na":2,"nb":1,"a":[["antifungal/glyphosate.html","glyphosate"],["antifungal/phosphonic-acid.html","phosphonic acid"]],"b":[["mapped/KH2PO3.yaml","KH2PO3"]]},{"id":"CHEBI:45285","l":"pyrazinecarboxamide","na":2,"nb":1,"a":[["antimycobacterial/n-butyl-5-4-hydroxyphenyl-6-oxo-1-6-dihydropyrazine-2-carboxamide.html","N-butyl-5-(4-hydroxyphenyl)-6-oxo-1,6-dihydropyrazine-2-carboxamide"],["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]],"b":[["mapped/Pyrazinamide.yaml","Pyrazinamide"]]},{"id":"CHEBI:4917","l":"eugenol","na":2,"nb":1,"a":[["antibacterial/dihydroconiferyl-alcohol.html","dihydroconiferyl alcohol"],["antibacterial/eugenol.html","eugenol"]],"b":[["mapped/Eugenol.yaml","Eugenol"]]},{"id":"CHEBI:73908","l":"2,4-diamino-6,7-diisopropylpteridine","na":1,"nb":2,"a":[["antibacterial/2-4-diamino-6-7-diisopropylpteridine.html","2,4-diamino-6,7-diisopropylpteridine"]],"b":[["mapped/24-diamino-67-di-iso-propylpteridine_phosphate.yaml","2,4-diamino-6,7-di-iso-propylpteridine phosphate"],["mapped/Vibriostat.yaml","Vibriostat"]]},{"id":"CHEBI:7524","l":"nerolidol","na":2,"nb":1,"a":[["antifungal/6z-nerolidol.html","(6Z)-nerolidol"],["antifungal/nerolidol.html","nerolidol"]],"b":[["mapped/Nerolidol.yaml","Nerolidol"]]},{"id":"CHEBI:100147","l":"nalidixic acid","na":1,"nb":1,"a":[["antibacterial/nalidixic-acid.html","nalidixic acid"]],"b":[["mapped/Nalidixic_Acid_Sodium_Salt.yaml","Nalidixic acid sodium salt"]]},{"id":"CHEBI:100241","l":"ciprofloxacin","na":1,"nb":1,"a":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]],"b":[["mapped/Ciprofloxacin.yaml","Ciprofloxacin"]]},{"id":"CHEBI:100246","l":"norfloxacin","na":1,"nb":1,"a":[["antibacterial/norfloxacin.html","norfloxacin"]],"b":[["mapped/Norfloxacin.yaml","Norfloxacin"]]},{"id":"CHEBI:102130","l":"sulfamerazine","na":1,"nb":1,"a":[["antibacterial/sulfamerazine.html","sulfamerazine"]],"b":[["mapped/Sulfamerazine.yaml","Sulfamerazine"]]},{"id":"CHEBI:102265","l":"sulfamethazine","na":1,"nb":1,"a":[["antibacterial/sulfamethazine.html","sulfamethazine"]],"b":[["mapped/Sulfamethazine_Sodium_Salt.yaml","Sulfamethazine sodium salt"]]},{"id":"CHEBI:102484","l":"sulfisoxazole","na":1,"nb":1,"a":[["antibacterial/sulfisoxazole.html","sulfisoxazole"]],"b":[["mapped/Sulfisoxazole.yaml","Sulfisoxazole"]]},{"id":"CHEBI:113455","l":"sodium benzoate","na":1,"nb":1,"a":[["biocide/sodium-benzoate.html","sodium benzoate"]],"b":[["mapped/Na-benzoate.yaml","Na-benzoate"]]},{"id":"CHEBI:116278","l":"lomefloxacin","na":1,"nb":1,"a":[["antimycobacterial/lomefloxacin.html","lomefloxacin"]],"b":[["mapped/Lomefloxacin.yaml","Lomefloxacin"]]},{"id":"CHEBI:124991","l":"cefalotin","na":1,"nb":1,"a":[["antibacterial/cefalotin.html","cefalotin"]],"b":[["mapped/Cefalotin.yaml","Cefalotin"]]},{"id":"CHEBI:132106","l":"sodium propionate","na":1,"nb":1,"a":[["antifungal/sodium-propionate.html","sodium propionate"]],"b":[["mapped/Na-propionate.yaml","Na-propionate"]]},{"id":"CHEBI:132112","l":"sodium thiosulfate","na":1,"nb":1,"a":[["antifungal/sodium-thiosulfate.html","sodium thiosulfate"]],"b":[["mapped/Na2s2o3.yaml","Na2S2O3"]]},{"id":"CHEBI:134107","l":"CHIR-090","na":1,"nb":1,"a":[["unspecified/chir-090.html","CHIR-090"]],"b":[["mapped/CHIR-090.yaml","CHIR-090"]]},{"id":"CHEBI:134606","l":"toyocamycin","na":1,"nb":1,"a":[["antifungal/toyocamycin.html","toyocamycin"]],"b":[["mapped/Toyocamycin.yaml","Toyocamycin"]]},{"id":"CHEBI:134742","l":"delamanid","na":1,"nb":1,"a":[["antibacterial/delamanid.html","delamanid"]],"b":[["mapped/Delamanid.yaml","Delamanid"]]},{"id":"CHEBI:135817","l":"cefminox","na":1,"nb":1,"a":[["antibacterial/cefminox.html","cefminox"]],"b":[["mapped/Cefminox.yaml","Cefminox"]]},{"id":"CHEBI:135928","l":"doripenem","na":1,"nb":1,"a":[["antibacterial/doripenem.html","doripenem"]],"b":[["mapped/Doripenem.yaml","Doripenem"]]},{"id":"CHEBI:136609","l":"theaflavin","na":1,"nb":1,"a":[["antibacterial/theaflavin.html","theaflavin"]],"b":[["mapped/Theaflavin.yaml","Theaflavin"]]},{"id":"CHEBI:141155","l":"dimetridazole","na":1,"nb":1,"a":[["antiprotozoal/dimetridazole.html","dimetridazole"]],"b":[["mapped/Dimetridazole.yaml","Dimetridazole"]]},{"id":"CHEBI:141991","l":"cinnamycin","na":1,"nb":1,"a":[["unspecified/cinnamycin.html","cinnamycin"]],"b":[["mapped/Cinnamycin.yaml","Cinnamycin"]]},{"id":"CHEBI:143552","l":"hexanol","na":1,"nb":1,"a":[["antibacterial/hexan-1-ol.html","hexan-1-ol"]],"b":[["mapped/Hexanol.yaml","hexanol"]]},{"id":"CHEBI:149836","l":"tigecycline","na":1,"nb":1,"a":[["antibacterial/tigecycline.html","tigecycline"]],"b":[["mapped/Tigecycline.yaml","Tigecycline"]]},{"id":"CHEBI:15353","l":"blasticidin S","na":1,"nb":1,"a":[["antifungal/blasticidin-s.html","blasticidin S"]],"b":[["mapped/Blasticidin_S.yaml","Blasticidin S"]]},{"id":"CHEBI:15366","l":"acetic acid","na":1,"nb":1,"a":[["biocide/acetic-acid.html","acetic acid"]],"b":[["mapped/Acetic_Acid.yaml","Acetic acid"]]},{"id":"CHEBI:15369","l":"actinomycin","na":1,"nb":1,"a":[["antibacterial/actinomycin-d.html","actinomycin D"]],"b":[["mapped/Actinomycin_A.yaml","Actinomycin A"]]},{"id":"CHEBI:15399","l":"(+)-carvone","na":1,"nb":1,"a":[["antifungal/carvone.html","(+)-carvone"]],"b":[["mapped/D_-carvone.yaml","D(+)-Carvone"]]},{"id":"CHEBI:156387","l":"aspyrone","na":1,"nb":1,"a":[["antibacterial/aspyrone.html","aspyrone"]],"b":[["mapped/4-hydroxyphenyl_Acetic_Acid.yaml","4-Hydroxyphenyl acetic acid"]]},{"id":"CHEBI:156421","l":"","na":1,"nb":1,"a":[["antibacterial/celesticetin.html","celesticetin"]],"b":[["mapped/Celesticetin.yaml","Celesticetin"]]},{"id":"CHEBI:156450","l":"thiolutin","na":1,"nb":1,"a":[["antibacterial/thiolutin.html","thiolutin"]],"b":[["mapped/Thiolutin.yaml","Thiolutin"]]},{"id":"CHEBI:156452","l":"aureothricin","na":1,"nb":1,"a":[["antibacterial/aureothricin.html","aureothricin"]],"b":[["mapped/Aureothricin.yaml","Aureothricin"]]},{"id":"CHEBI:156550","l":"pyrrolomycin A","na":1,"nb":1,"a":[["antibacterial/pyrrolomycin-a.html","pyrrolomycin A"]],"b":[["mapped/Pyrrolomycin_A.yaml","Pyrrolomycin A"]]},{"id":"CHEBI:157175","l":"enoxacin","na":1,"nb":1,"a":[["antibacterial/enoxacin.html","enoxacin"]],"b":[["mapped/Enoxacin.yaml","Enoxacin"]]},{"id":"CHEBI:15756","l":"palmitic acid","na":1,"nb":1,"a":[["antibacterial/palmitic-acid.html","palmitic acid"]],"b":[["mapped/Palmitic_Acid.yaml","Palmitic acid"]]},{"id":"CHEBI:157683","l":"althiomycin","na":1,"nb":1,"a":[["antibacterial/althiomycin.html","althiomycin"]],"b":[["mapped/Althiomycin.yaml","Althiomycin"]]},{"id":"CHEBI:15782","l":"viomycin","na":1,"nb":1,"a":[["antimycobacterial/viomycin.html","viomycin"]],"b":[["mapped/Viomycin.yaml","Viomycin"]]},{"id":"CHEBI:15837","l":"isoamylol","na":1,"nb":1,"a":[["antifungal/isoamylol.html","isoamylol"]],"b":[["mapped/3-methyl-1-butanol.yaml","3-methyl-1-butanol"]]},{"id":"CHEBI:15882","l":"phenol","na":1,"nb":1,"a":[["biocide/phenol.html","phenol"]],"b":[["mapped/Phenol.yaml","Phenol"]]},{"id":"CHEBI:16016","l":"dihydroxyacetone","na":1,"nb":1,"a":[["antifungal/dihydroxyacetone.html","dihydroxyacetone"]],"b":[["mapped/Dihydroxyacetone.yaml","Dihydroxyacetone"]]},{"id":"CHEBI:16118","l":"berberine","na":1,"nb":1,"a":[["antifungal/berberine.html","berberine"]],"b":[["mapped/Berberine.yaml","Berberine"]]},{"id":"CHEBI:161680","l":"aztreonam","na":1,"nb":1,"a":[["antibacterial/aztreonam.html","aztreonam"]],"b":[["mapped/Aztreonam.yaml","Aztreonam"]]},{"id":"CHEBI:16196","l":"oleic acid","na":1,"nb":1,"a":[["antibacterial/oleic-acid.html","oleic acid"]],"b":[["mapped/Oleic_Acid.yaml","Oleic acid"]]},{"id":"CHEBI:16236","l":"ethanol","na":1,"nb":1,"a":[["biocide/ethanol.html","ethanol"]],"b":[["mapped/Ethanol.yaml","Ethanol"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":1,"nb":1,"a":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]],"b":[["mapped/Hydrogen_Peroxide.yaml","Hydrogen peroxide"]]},{"id":"CHEBI:16243","l":"quercetin","na":1,"nb":1,"a":[["antibacterial/quercetin.html","quercetin"]],"b":[["mapped/Quercetin.yaml","Quercetin"]]},{"id":"CHEBI:16247","l":"","na":1,"nb":1,"a":[["antifungal/miltefosine.html","miltefosine"]],"b":[["mapped/Bacto_Soytone.yaml","Bacto Soytone"]]},{"id":"CHEBI:164200","l":"triclosan","na":1,"nb":1,"a":[["antibacterial/triclosan.html","triclosan"]],"b":[["mapped/Irgasan.yaml","Irgasan"]]},{"id":"CHEBI:16547","l":"coniferyl aldehyde","na":1,"nb":1,"a":[["antifungal/coniferyl-aldehyde.html","coniferyl aldehyde"]],"b":[["mapped/Coniferyl_Aldehyde.yaml","coniferyl aldehyde"]]},{"id":"CHEBI:16619","l":"(2-trans,6-trans)-farnesol","na":1,"nb":1,"a":[["unspecified/2-trans-6-trans-farnesol.html","(2-trans,6-trans)-farnesol"]],"b":[["mapped/TransTrans-Farnesol.yaml","Trans,Trans-Farnesol"]]},{"id":"CHEBI:166872","l":"nucleocidin","na":1,"nb":1,"a":[["antibacterial/nucleocidin.html","nucleocidin"]],"b":[["mapped/Nucleocidin.yaml","Nucleocidin"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":1,"nb":1,"a":[["biocide/formaldehyde.html","formaldehyde"]],"b":[["mapped/Formaldehyde.yaml","Formaldehyde"]]},{"id":"CHEBI:16869","l":"oleandomycin","na":1,"nb":1,"a":[["antibacterial/oleandomycin.html","oleandomycin"]],"b":[["mapped/Oleandomycin.yaml","Oleandomycin"]]},{"id":"CHEBI:16914","l":"salicylic acid","na":1,"nb":1,"a":[["antifungal/salicylic-acid.html","salicylic acid"]],"b":[["mapped/Salicylic_Acid.yaml","Salicylic acid"]]},{"id":"CHEBI:16976","l":"hygromycin B","na":1,"nb":1,"a":[["antibacterial/hygromycin-b.html","hygromycin B"]],"b":[["mapped/Hygromycin_B.yaml","Hygromycin B"]]},{"id":"CHEBI:17043","l":"biphenyl-2-ol","na":1,"nb":1,"a":[["antifungal/biphenyl-2-ol.html","biphenyl-2-ol"]],"b":[["mapped/11-Biphenyl-2-ol.yaml","[1,1′-Biphenyl]-2-ol"]]},{"id":"CHEBI:17076","l":"streptomycin","na":1,"nb":1,"a":[["antibacterial/streptomycin.html","streptomycin"]],"b":[["mapped/Streptomycin.yaml","Streptomycin"]]},{"id":"CHEBI:17097","l":"biphenyl","na":1,"nb":1,"a":[["antifungal/biphenyl.html","biphenyl"]],"b":[["mapped/Biphenyl.yaml","Biphenyl"]]},{"id":"CHEBI:171741","l":"cerulenin","na":1,"nb":1,"a":[["antifungal/cerulenin.html","cerulenin"]],"b":[["mapped/Cerulenin.yaml","Cerulenin"]]},{"id":"CHEBI:17484","l":"benzyl isothiocyanate","na":1,"nb":1,"a":[["antibacterial/benzyl-isothiocyanate.html","benzyl isothiocyanate"]],"b":[["mapped/Benzyl_Isothiocyanate.yaml","Benzyl isothiocyanate"]]},{"id":"CHEBI:17642","l":"pentachlorophenol","na":1,"nb":1,"a":[["antifungal/pentachlorophenol.html","pentachlorophenol"]],"b":[["mapped/Pentachlorophenol.yaml","Pentachlorophenol"]]},{"id":"CHEBI:17698","l":"chloramphenicol","na":1,"nb":1,"a":[["antibacterial/chloramphenicol.html","chloramphenicol"]],"b":[["mapped/Chloramphenicol.yaml","Chloramphenicol"]]},{"id":"CHEBI:17833","l":"","na":1,"nb":1,"a":[["antibacterial/gentamycin-a.html","gentamycin A"]],"b":[["mapped/Gentamicin.yaml","Gentamicin"]]},{"id":"CHEBI:17847","l":"p-cresol","na":1,"nb":1,"a":[["antifungal/p-cresol.html","p-cresol"]],"b":[["mapped/4-Cresol.yaml","4-Cresol"]]},{"id":"CHEBI:17939","l":"puromycin","na":1,"nb":1,"a":[["antibacterial/puromycin.html","puromycin"]],"b":[["mapped/Puromycin.yaml","Puromycin"]]},{"id":"CHEBI:18145","l":"(R,R,R)-α-tocopherol","na":1,"nb":1,"a":[["antiviral/r-r-r-%CE%B1-tocopherol.html","(R,R,R)-α-tocopherol"]],"b":[["mapped/Alpha-Tocopherol.yaml","alpha-Tocopherol"]]},{"id":"CHEBI:193161","l":"isovanillin","na":1,"nb":1,"a":[["antifungal/isovanillin.html","isovanillin"]],"b":[["mapped/Isovanillin.yaml","Isovanillin"]]},{"id":"CHEBI:197511","l":"","na":1,"nb":1,"a":[["antiviral/docosan-1-ol.html","docosan-1-ol"]],"b":[["mapped/Docosanol.yaml","Docosanol"]]},{"id":"CHEBI:201898","l":"Magainin I","na":1,"nb":1,"a":[["antibacterial/magainin-1.html","magainin 1"]],"b":[["mapped/Magainin_I.yaml","Magainin I"]]},{"id":"CHEBI:204928","l":"cefotaxime","na":1,"nb":1,"a":[["antibacterial/cefotaxime.html","cefotaxime"]],"b":[["mapped/Cefotaxime.yaml","Cefotaxime"]]},{"id":"CHEBI:209807","l":"cefoxitin","na":1,"nb":1,"a":[["antibacterial/cefoxitin.html","cefoxitin"]],"b":[["mapped/Cefoxitin.yaml","Cefoxitin"]]},{"id":"CHEBI:220052","l":"Pyrrolomycin B","na":1,"nb":1,"a":[["antibacterial/pyrrolomycin-b.html","pyrrolomycin B"]],"b":[["mapped/Pyrrolomycin_B.yaml","Pyrrolomycin B"]]},{"id":"CHEBI:24536","l":"hexachlorocyclohexane","na":1,"nb":1,"a":[["antibacterial/%CE%B3-hexachlorocyclohexane.html","γ-hexachlorocyclohexane"]],"b":[["mapped/Hexachlorocyclo-hexane.yaml","Hexachlorocyclo-hexane"]]},{"id":"CHEBI:24750","l":"","na":1,"nb":1,"a":[["unspecified/5-hydroxystreptomycin.html","5'-hydroxystreptomycin"]],"b":[["mapped/Hydroxystreptomycin.yaml","Hydroxystreptomycin"]]},{"id":"CHEBI:2596","l":"alliin","na":1,"nb":1,"a":[["unspecified/alliin.html","alliin"]],"b":[["mapped/L-alliin.yaml","L-alliin"]]},{"id":"CHEBI:2637","l":"amikacin","na":1,"nb":1,"a":[["antibacterial/amikacin.html","amikacin"]],"b":[["mapped/Amikacin.yaml","Amikacin"]]},{"id":"CHEBI:2638","l":"amikacin disulfate","na":1,"nb":1,"a":[["antibacterial/amikacin-disulfate.html","amikacin disulfate"]],"b":[["mapped/Amikacin_Disulfate_Salt.yaml","Amikacin disulfate salt"]]},{"id":"CHEBI:2676","l":"amoxicillin","na":1,"nb":1,"a":[["antibacterial/amoxicillin.html","amoxicillin"]],"b":[["mapped/Amoxicillin.yaml","Amoxicillin"]]},{"id":"CHEBI:27446","l":"phenoxymethylpenicillin","na":1,"nb":1,"a":[["antibacterial/phenoxymethylpenicillin.html","phenoxymethylpenicillin"]],"b":[["mapped/Phenoxymethylpenicillin.yaml","Phenoxymethylpenicillin"]]},{"id":"CHEBI:27565","l":"4-aminosalicylic acid","na":1,"nb":1,"a":[["antimycobacterial/4-aminosalicylic-acid.html","4-aminosalicylic acid"]],"b":[["mapped/Para-aminosalicylic_Acid.yaml","para-aminosalicylic acid"]]},{"id":"CHEBI:27617","l":"monensin A","na":1,"nb":1,"a":[["antifungal/monensin-a.html","monensin A"]],"b":[["mapped/Monensin.yaml","Monensin"]]},{"id":"CHEBI:2762","l":"antimycin A","na":1,"nb":1,"a":[["antifungal/antimycin-a.html","antimycin A"]],"b":[["mapped/Antimycin_A.yaml","Antimycin A"]]},{"id":"CHEBI:27641","l":"cycloheximide","na":1,"nb":1,"a":[["antifungal/cycloheximide.html","cycloheximide"]],"b":[["mapped/Cycloheximid.yaml","Cycloheximid"]]},{"id":"CHEBI:27644","l":"chlortetracycline","na":1,"nb":1,"a":[["antibacterial/chlortetracycline.html","chlortetracycline"]],"b":[["mapped/Chlortetracycline.yaml","Chlortetracycline"]]},{"id":"CHEBI:2766","l":"aphidicolin","na":1,"nb":1,"a":[["antiviral/aphidicolin.html","aphidicolin"]],"b":[["mapped/Aphidicolin.yaml","Aphidicolin"]]},{"id":"CHEBI:27666","l":"actinomycin D","na":1,"nb":1,"a":[["antibacterial/actinomycin-d.html","actinomycin D"]],"b":[["mapped/Actinomycin_D.yaml","Actinomycin D"]]},{"id":"CHEBI:27701","l":"oxytetracycline","na":1,"nb":1,"a":[["antibacterial/oxytetracycline.html","oxytetracycline"]],"b":[["mapped/Oxytetracycline.yaml","Oxytetracycline"]]},{"id":"CHEBI:278547","l":"sodium azide","na":1,"nb":1,"a":[["antibacterial/sodium-azide.html","sodium azide"]],"b":[["mapped/Sodium_Azide.yaml","Sodium azide"]]},{"id":"CHEBI:27856","l":"","na":1,"nb":1,"a":[["unspecified/acetylblasticidin-s.html","acetylblasticidin S"]],"b":[["mapped/Acetamide.yaml","Acetamide"]]},{"id":"CHEBI:27864","l":"2,6-dichloro-4-nitroaniline","na":1,"nb":1,"a":[["antifungal/2-6-dichloro-4-nitroaniline.html","2,6-dichloro-4-nitroaniline"]],"b":[["mapped/Dichloran_02_in_ethanol.yaml","Dichloran (0.2% in ethanol)"]]},{"id":"CHEBI:2790","l":"apramycin","na":1,"nb":1,"a":[["antibacterial/apramycin.html","apramycin"]],"b":[["mapped/Apramycin.yaml","Apramycin"]]},{"id":"CHEBI:27902","l":"tetracycline","na":1,"nb":1,"a":[["antibacterial/tetracycline.html","tetracycline"]],"b":[["mapped/Tetracycline.yaml","Tetracycline"]]},{"id":"CHEBI:27949","l":"(E)-sinapaldehyde","na":1,"nb":1,"a":[["antifungal/e-sinapaldehyde.html","(E)-sinapaldehyde"]],"b":[["mapped/Sinapinaldehyde.yaml","sinapinaldehyde"]]},{"id":"CHEBI:27965","l":"conessine","na":1,"nb":1,"a":[["antibacterial/conessine.html","conessine"]],"b":[["mapped/Conessine.yaml","Conessine"]]},{"id":"CHEBI:28001","l":"vancomycin","na":1,"nb":1,"a":[["antibacterial/vancomycin.html","vancomycin"]],"b":[["mapped/Vancomycin.yaml","Vancomycin"]]},{"id":"CHEBI:28077","l":"rifampicin","na":1,"nb":1,"a":[["antimycobacterial/rifampicin.html","rifampicin"]],"b":[["mapped/Rifampicin.yaml","Rifampicin"]]},{"id":"CHEBI:28121","l":"harmine","na":1,"nb":1,"a":[["antiviral/harmine.html","harmine"]],"b":[["mapped/Harmine.yaml","Harmine"]]},{"id":"CHEBI:28196","l":"erythromycin B","na":1,"nb":1,"a":[["unspecified/erythromycin-b.html","erythromycin B"]],"b":[["mapped/Erythromycin_B.yaml","Erythromycin B"]]},{"id":"CHEBI:28368","l":"novobiocin","na":1,"nb":1,"a":[["antibacterial/novobiocin.html","novobiocin"]],"b":[["mapped/Novobiocin.yaml","Novobiocin"]]},{"id":"CHEBI:28460","l":"maltotetraose","na":1,"nb":1,"a":[["antibacterial/maltotetraose.html","maltotetraose"]],"b":[["mapped/Maltotetraose.yaml","Maltotetraose"]]},{"id":"CHEBI:28591","l":"guaiacol","na":1,"nb":1,"a":[["biocide/guaiacol.html","guaiacol"]],"b":[["mapped/Guaiacol.yaml","Guaiacol"]]},{"id":"CHEBI:28631","l":"3-phenylpropionic acid","na":1,"nb":1,"a":[["antifungal/3-phenylpropionic-acid.html","3-phenylpropionic acid"]],"b":[["mapped/Phenyl_Propionic_Acid.yaml","Phenyl propionic acid"]]},{"id":"CHEBI:28748","l":"doxorubicin","na":1,"nb":1,"a":[["unspecified/doxorubicin.html","doxorubicin"]],"b":[["mapped/Doxorubicin.yaml","Doxorubicin"]]},{"id":"CHEBI:28837","l":"octanoic acid","na":1,"nb":1,"a":[["antibacterial/octanoic-acid.html","octanoic acid"]],"b":[["mapped/Octanoic_Acid.yaml","Octanoic acid"]]},{"id":"CHEBI:28864","l":"tobramycin","na":1,"nb":1,"a":[["antibacterial/tobramycin.html","tobramycin"]],"b":[["mapped/Tobramycin.yaml","Tobramycin"]]},{"id":"CHEBI:28908","l":"bambermycin","na":1,"nb":1,"a":[["unspecified/bambermycin.html","bambermycin"]],"b":[["mapped/Flavomycin.yaml","Flavomycin"]]},{"id":"CHEBI:28915","l":"fosfomycin","na":1,"nb":1,"a":[["antibacterial/fosfomycin.html","fosfomycin"]],"b":[["mapped/Fosfomycin.yaml","Fosfomycin"]]},{"id":"CHEBI:28948","l":"gramine","na":1,"nb":1,"a":[["antibacterial/gramine.html","gramine"]],"b":[["mapped/Gramine.yaml","Gramine"]]},{"id":"CHEBI:28971","l":"ampicillin","na":1,"nb":1,"a":[["antibacterial/ampicillin.html","ampicillin"]],"b":[["mapped/Ampicillin.yaml","Ampicillin"]]},{"id":"CHEBI:29007","l":"ceftriaxone","na":1,"nb":1,"a":[["antibacterial/ceftriaxone.html","ceftriaxone"]],"b":[["mapped/Ceftriaxone.yaml","Ceftriaxone"]]},{"id":"CHEBI:29013","l":"fusidic acid","na":1,"nb":1,"a":[["antibacterial/fusidic-acid.html","fusidic acid"]],"b":[["mapped/Fusidic_Acid_Sodium_Salt.yaml","Fusidic acid sodium salt"]]},{"id":"CHEBI:2955","l":"azithromycin","na":1,"nb":1,"a":[["antibacterial/azithromycin.html","azithromycin"]],"b":[["mapped/Azithromycin.yaml","Azithromycin"]]},{"id":"CHEBI:2956","l":"azlocillin","na":1,"nb":1,"a":[["antibacterial/azlocillin.html","azlocillin"]],"b":[["mapped/Azlocillin.yaml","azlocillin"]]},{"id":"CHEBI:29582","l":"ascomycin","na":1,"nb":1,"a":[["antifungal/ascomycin.html","ascomycin"]],"b":[["mapped/Ascomycin.yaml","Ascomycin"]]},{"id":"CHEBI:29649","l":"narbomycin","na":1,"nb":1,"a":[["antibacterial/narbomycin.html","narbomycin"]],"b":[["mapped/Narbomycin.yaml","Narbomycin"]]},{"id":"CHEBI:29670","l":"Ramoplanin","na":1,"nb":1,"a":[["antibacterial/ramoplanin.html","ramoplanin"]],"b":[["mapped/Ramoplanin.yaml","Ramoplanin"]]},{"id":"CHEBI:29673","l":"rifamycin SV","na":1,"nb":1,"a":[["antimycobacterial/rifamycin-sv.html","rifamycin SV"]],"b":[["mapped/Rifamycin_Sv.yaml","Rifamycin Sv"]]},{"id":"CHEBI:29678","l":"sodium arsenite","na":1,"nb":1,"a":[["antibacterial/sodium-arsenite.html","sodium arsenite"]],"b":[["mapped/Sodium_M-arsenite.yaml","Sodium m-arsenite"]]},{"id":"CHEBI:29687","l":"","na":1,"nb":1,"a":[["antibacterial/teicoplanin.html","teicoplanin"]],"b":[["mapped/Teicoplanin.yaml","Teicoplanin"]]},{"id":"CHEBI:29693","l":"thiostrepton","na":1,"nb":1,"a":[["antibacterial/thiostrepton.html","thiostrepton"]],"b":[["mapped/Thiostrepton.yaml","Thiostrepton"]]},{"id":"CHEBI:29699","l":"","na":1,"nb":1,"a":[["antibacterial/tunicamycin.html","tunicamycin"]],"b":[["mapped/Tunicamycin.yaml","Tunicamycin"]]},{"id":"CHEBI:2979","l":"baicalein","na":1,"nb":1,"a":[["antibacterial/baicalein.html","baicalein"]],"b":[["mapped/Baicalein.yaml","Baicalein"]]},{"id":"CHEBI:3020","l":"","na":1,"nb":1,"a":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"]],"b":[["mapped/Benzalkonium_Chloride.yaml","Benzalkonium Chloride"]]},{"id":"CHEBI:30751","l":"formic acid","na":1,"nb":1,"a":[["antibacterial/formic-acid.html","formic acid"]],"b":[["mapped/Formic_Acid.yaml","Formic acid"]]},{"id":"CHEBI:30768","l":"propionic acid","na":1,"nb":1,"a":[["antifungal/propionic-acid.html","propionic acid"]],"b":[["mapped/Propionic_Acid.yaml","Propionic acid"]]},{"id":"CHEBI:30805","l":"dodecanoic acid","na":1,"nb":1,"a":[["antibacterial/dodecanoic-acid.html","dodecanoic acid"]],"b":[["mapped/Lauric_Acid.yaml","Lauric acid"]]},{"id":"CHEBI:30813","l":"decanoic acid","na":1,"nb":1,"a":[["antibacterial/decanoic-acid.html","decanoic acid"]],"b":[["mapped/Decanoic_Acid.yaml","Decanoic acid"]]},{"id":"CHEBI:31168","l":"spiramycin II","na":1,"nb":1,"a":[["antibacterial/spiramycin-ii.html","spiramycin II"]],"b":[["mapped/Spiramycin_II.yaml","Spiramycin II"]]},{"id":"CHEBI:31264","l":"benzethonium chloride","na":1,"nb":1,"a":[["antibacterial/benzethonium-chloride.html","benzethonium chloride"]],"b":[["mapped/Benzethonium_Chloride.yaml","Benzethonium chloride"]]},{"id":"CHEBI:31359","l":"carminomycin","na":1,"nb":1,"a":[["unspecified/carminomycin.html","carminomycin"]],"b":[["mapped/Carminomycin.yaml","Carminomycin"]]},{"id":"CHEBI:31810","l":"fleroxacin","na":1,"nb":1,"a":[["antibacterial/fleroxacin.html","fleroxacin"]],"b":[["mapped/Fleroxacin.yaml","Fleroxacin"]]},{"id":"CHEBI:31845","l":"Midecamycin","na":1,"nb":1,"a":[["antibacterial/midecamycin.html","midecamycin"]],"b":[["mapped/Midecamycin.yaml","Midecamycin"]]},{"id":"CHEBI:31908","l":"Niddamycin","na":1,"nb":1,"a":[["antibacterial/niddamycin.html","niddamycin"]],"b":[["mapped/Niddamycin.yaml","Niddamycin"]]},{"id":"CHEBI:32146","l":"sodium hypochlorite","na":1,"nb":1,"a":[["biocide/sodium-hypochlorite.html","sodium hypochlorite"]],"b":[["mapped/Sodium_Hypochlorite.yaml","Sodium hypochlorite"]]},{"id":"CHEBI:32161","l":"sulfadimethoxine","na":1,"nb":1,"a":[["unspecified/sulfadimethoxine.html","sulfadimethoxine"]],"b":[["mapped/Sulfadimethoxine.yaml","Sulfadimethoxine"]]},{"id":"CHEBI:3259","l":"CCCP","na":1,"nb":1,"a":[["antibacterial/cccp.html","CCCP"]],"b":[["mapped/CCCP.yaml","CCCP"]]},{"id":"CHEBI:327119","l":"azetidin-2-one","na":1,"nb":1,"a":[["unspecified/azetidin-2-one.html","azetidin-2-one"]],"b":[["mapped/2-Azetidinone.yaml","2-Azetidinone"]]},{"id":"CHEBI:32800","l":"(S)-mandelic acid","na":1,"nb":1,"a":[["antibacterial/s-mandelic-acid.html","(S)-mandelic acid"]],"b":[["mapped/%28S%29-mandelic_Acid.yaml","(S)-mandelic Acid"]]},{"id":"CHEBI:338412","l":"(-)-anisomycin","na":1,"nb":1,"a":[["antiviral/anisomycin.html","(−)-anisomycin"]],"b":[["mapped/%28-%29-anisomycin.yaml","(-)-anisomycin"]]},{"id":"CHEBI:3393","l":"carbenicillin","na":1,"nb":1,"a":[["antibacterial/carbenicillin.html","carbenicillin"]],"b":[["mapped/Carbenicillin.yaml","Carbenicillin"]]},{"id":"CHEBI:34730","l":"doxycycline hyclate","na":1,"nb":1,"a":[["antibacterial/doxycycline-hyclate.html","doxycycline hyclate"]],"b":[["mapped/Doxycycline_Hyclate.yaml","Doxycycline hyclate"]]},{"id":"CHEBI:3478","l":"cefaclor","na":1,"nb":1,"a":[["antibacterial/cefaclor.html","cefaclor"]],"b":[["mapped/Cefaclor.yaml","Cefaclor"]]},{"id":"CHEBI:3479","l":"cefadroxil","na":1,"nb":1,"a":[["antibacterial/cefadroxil.html","cefadroxil"]],"b":[["mapped/Cefadroxil.yaml","Cefadroxil"]]},{"id":"CHEBI:3480","l":"cefamandole","na":1,"nb":1,"a":[["antibacterial/cefamandole.html","cefamandole"]],"b":[["mapped/Cefamandole.yaml","Cefamandole"]]},{"id":"CHEBI:3489","l":"cefmetazole","na":1,"nb":1,"a":[["antibacterial/cefmetazole.html","cefmetazole"]],"b":[["mapped/Cefmetazole.yaml","Cefmetazole"]]},{"id":"CHEBI:3493","l":"cefoperazone","na":1,"nb":1,"a":[["antibacterial/cefoperazone.html","cefoperazone"]],"b":[["mapped/Cefoperazone.yaml","Cefoperazone"]]},{"id":"CHEBI:3499","l":"cefotetan","na":1,"nb":1,"a":[["antibacterial/cefotetan.html","cefotetan"]],"b":[["mapped/Cefotetan.yaml","Cefotetan"]]},{"id":"CHEBI:3504","l":"cefpodoxime","na":1,"nb":1,"a":[["antibacterial/cefpodoxime.html","cefpodoxime"]],"b":[["mapped/Cefpodoxime.yaml","Cefpodoxime"]]},{"id":"CHEBI:3506","l":"cefprozil","na":1,"nb":1,"a":[["antibacterial/cefprozil.html","cefprozil"]],"b":[["mapped/Cefprozil.yaml","Cefprozil"]]},{"id":"CHEBI:3515","l":"cefuroxime","na":1,"nb":1,"a":[["antibacterial/cefuroxime.html","cefuroxime"]],"b":[["mapped/Cefuroxime.yaml","Cefuroxime"]]},{"id":"CHEBI:3534","l":"cephalexin","na":1,"nb":1,"a":[["antibacterial/cephalexin.html","cephalexin"]],"b":[["mapped/Cephalexin.yaml","Cephalexin"]]},{"id":"CHEBI:3537","l":"cefaloridine","na":1,"nb":1,"a":[["antibacterial/cefaloridine.html","cefaloridine"]],"b":[["mapped/Cefaloridine.yaml","Cefaloridine"]]},{"id":"CHEBI:3547","l":"cephradine","na":1,"nb":1,"a":[["antibacterial/cephradine.html","cephradine"]],"b":[["mapped/Cephradine.yaml","Cephradine"]]},{"id":"CHEBI:355510","l":"cefotiam","na":1,"nb":1,"a":[["antibacterial/cefotiam.html","cefotiam"]],"b":[["mapped/Cefotiam.yaml","Cefotiam"]]},{"id":"CHEBI:35720","l":"enrofloxacin","na":1,"nb":1,"a":[["antibacterial/enrofloxacin.html","enrofloxacin"]],"b":[["mapped/Enrofloxacin.yaml","Enrofloxacin"]]},{"id":"CHEBI:36336","l":"","na":1,"nb":1,"a":[["antiprotozoal/suramin.html","suramin"]],"b":[["mapped/Naphthalene_Sulfonic_Acid.yaml","Naphthalene sulfonic acid"]]},{"id":"CHEBI:3649","l":"chlorpromazine hydrochloride","na":1,"nb":1,"a":[["antiviral/chlorpromazine-hydrochloride.html","chlorpromazine hydrochloride"]],"b":[["mapped/Chlorpromazine_Hydrochloride.yaml","Chlorpromazine hydrochloride"]]},{"id":"CHEBI:3687","l":"chrysophanol","na":1,"nb":1,"a":[["antiviral/chrysophanol.html","chrysophanol"]],"b":[["mapped/Chrysophanol.yaml","Chrysophanol"]]},{"id":"CHEBI:3716","l":"cinoxacin","na":1,"nb":1,"a":[["antibacterial/cinoxacin.html","cinoxacin"]],"b":[["mapped/Cinoxacin.yaml","Cinoxacin"]]},{"id":"CHEBI:3732","l":"clarithromycin","na":1,"nb":1,"a":[["antibacterial/clarithromycin.html","clarithromycin"]],"b":[["mapped/Clarithromycin.yaml","Clarithromycin"]]},{"id":"CHEBI:3745","l":"clindamycin","na":1,"nb":1,"a":[["antibacterial/clindamycin.html","clindamycin"]],"b":[["mapped/Clindamycin.yaml","Clindamycin"]]},{"id":"CHEBI:3749","l":"clofazimine","na":1,"nb":1,"a":[["antimycobacterial/clofazimine.html","clofazimine"]],"b":[["mapped/Clofazimine.yaml","Clofazimine"]]},{"id":"CHEBI:3764","l":"clotrimazole","na":1,"nb":1,"a":[["antifungal/clotrimazole.html","clotrimazole"]],"b":[["mapped/Clotrimazole.yaml","Clotrimazole"]]},{"id":"CHEBI:37868","l":"octanol","na":1,"nb":1,"a":[["antifungal/octan-1-ol.html","octan-1-ol"]],"b":[["mapped/Octanol.yaml","octanol"]]},{"id":"CHEBI:37923","l":"astromicin","na":1,"nb":1,"a":[["antibacterial/astromicin.html","astromicin"]],"b":[["mapped/Astromicin.yaml","Astromicin"]]},{"id":"CHEBI:38167","l":"physcion","na":1,"nb":1,"a":[["antibacterial/physcion.html","physcion"]],"b":[["mapped/Physcion.yaml","Physcion"]]},{"id":"CHEBI:38291","l":"dihydrostreptomycin","na":1,"nb":1,"a":[["unspecified/dihydrostreptomycin.html","dihydrostreptomycin"]],"b":[["mapped/Dihydrostreptomycin.yaml","Dihydrostreptomycin"]]},{"id":"CHEBI:3962","l":"curcumin","na":1,"nb":1,"a":[["antifungal/curcumin.html","curcumin"]],"b":[["mapped/Curcumin.yaml","Curcumin"]]},{"id":"CHEBI:40009","l":"D-cycloserine","na":1,"nb":1,"a":[["antimycobacterial/d-cycloserine.html","D-cycloserine"]],"b":[["mapped/D-Cycloserine.yaml","D-Cycloserine"]]},{"id":"CHEBI:404903","l":"ertapenem","na":1,"nb":1,"a":[["antibacterial/ertapenem.html","ertapenem"]],"b":[["mapped/Ertapenem.yaml","Ertapenem"]]},{"id":"CHEBI:41688","l":"crystal violet","na":1,"nb":1,"a":[["antibacterial/crystal-violet.html","crystal violet"]],"b":[["mapped/Crystal_Violet.yaml","Crystal Violet"]]},{"id":"CHEBI:41977","l":"daunorubicin","na":1,"nb":1,"a":[["unspecified/daunorubicin.html","daunorubicin"]],"b":[["mapped/Daunorubicin.yaml","Daunorubicin"]]},{"id":"CHEBI:42355","l":"erythromycin A","na":1,"nb":1,"a":[["antibacterial/erythromycin-a.html","erythromycin A"]],"b":[["mapped/Erythromycin_A.yaml","Erythromycin A"]]},{"id":"CHEBI:42768","l":"geneticin","na":1,"nb":1,"a":[["antiprotozoal/geneticin.html","geneticin"]],"b":[["mapped/Geneticin_G418.yaml","Geneticin G418"]]},{"id":"CHEBI:43968","l":"meropenem","na":1,"nb":1,"a":[["antibacterial/meropenem.html","meropenem"]],"b":[["mapped/Meropenem.yaml","Meropenem"]]},{"id":"CHEBI:44137","l":"tiamulin","na":1,"nb":1,"a":[["antibacterial/tiamulin.html","tiamulin"]],"b":[["mapped/Tiamulin.yaml","Tiamulin"]]},{"id":"CHEBI:44368","l":"nitrofurazone","na":1,"nb":1,"a":[["antibacterial/nitrofurazone.html","nitrofurazone"]],"b":[["mapped/Nitrofurazone.yaml","Nitrofurazone"]]},{"id":"CHEBI:44401","l":"lawsone","na":1,"nb":1,"a":[["antifungal/lawsone.html","lawsone"]],"b":[["mapped/Lawsone.yaml","Lawsone"]]},{"id":"CHEBI:44504","l":"nogalamycin","na":1,"nb":1,"a":[["unspecified/nogalamycin.html","nogalamycin"]],"b":[["mapped/Nogalamycin.yaml","Nogalamycin"]]},{"id":"CHEBI:45367","l":"rifabutin","na":1,"nb":1,"a":[["antibacterial/rifabutin.html","rifabutin"]],"b":[["mapped/Rifabutin.yaml","Rifabutin"]]},{"id":"CHEBI:45373","l":"sulfanilamide","na":1,"nb":1,"a":[["antibacterial/sulfanilamide.html","sulfanilamide"]],"b":[["mapped/Sulfanilamide.yaml","Sulfanilamide"]]},{"id":"CHEBI:45395","l":"pyrithiamine pyrophosphate","na":1,"nb":1,"a":[["unspecified/pyrithiamine-pyrophosphate.html","pyrithiamine pyrophosphate"]],"b":[["mapped/Thiamine_pyrophosphate.yaml","Thiamine pyrophosphate"]]},{"id":"CHEBI:45735","l":"troleandomycin","na":1,"nb":1,"a":[["unspecified/troleandomycin.html","troleandomycin"]],"b":[["mapped/Troleandomycin.yaml","Troleandomycin"]]},{"id":"CHEBI:45773","l":"streptolydigin","na":1,"nb":1,"a":[["unspecified/streptolydigin.html","streptolydigin"]],"b":[["mapped/Streptolydigin.yaml","Streptolydigin"]]},{"id":"CHEBI:45924","l":"trimethoprim","na":1,"nb":1,"a":[["antibacterial/trimethoprim.html","trimethoprim"]],"b":[["mapped/Trimethoprim.yaml","Trimethoprim"]]},{"id":"CHEBI:4629","l":"diosgenin","na":1,"nb":1,"a":[["antiviral/diosgenin.html","diosgenin"]],"b":[["mapped/Diosgenin.yaml","Diosgenin"]]},{"id":"CHEBI:46345","l":"5-fluorouracil","na":1,"nb":1,"a":[["antifungal/5-fluorouracil.html","5-Fluorouracil"]],"b":[["mapped/5-fluorouracil.yaml","5-fluorouracil"]]},{"id":"CHEBI:46742","l":"Nutlin-3","na":1,"nb":1,"a":[["antiviral/nutlin-3.html","Nutlin-3"]],"b":[["mapped/Trypticase-glucose-yeast_Extract.yaml","Trypticase-glucose-yeast Extract"]]},{"id":"CHEBI:471744","l":"imipenem","na":1,"nb":1,"a":[["antibacterial/imipenem.html","imipenem"]],"b":[["mapped/Imipenem.yaml","Imipenem"]]},{"id":"CHEBI:472657","l":"cefixime","na":1,"nb":1,"a":[["antibacterial/cefixime.html","cefixime"]],"b":[["mapped/Cefixime.yaml","Cefixime"]]},{"id":"CHEBI:474053","l":"cefazolin","na":1,"nb":1,"a":[["antibacterial/cefazolin.html","cefazolin"]],"b":[["mapped/Cefazolin.yaml","Cefazolin"]]},{"id":"CHEBI:478164","l":"cefepime","na":1,"nb":1,"a":[["antibacterial/cefepime.html","cefepime"]],"b":[["mapped/Cefepime.yaml","Cefepime"]]},{"id":"CHEBI:48131","l":"nonanedioic acid","na":1,"nb":1,"a":[["antibacterial/nonanedioic-acid.html","nonanedioic acid"]],"b":[["mapped/Azelaic_Acid.yaml","Azelaic acid"]]},{"id":"CHEBI:48267","l":"tubercidin","na":1,"nb":1,"a":[["antifungal/tubercidin.html","tubercidin"]],"b":[["mapped/Tubercidin.yaml","Tubercidin"]]},{"id":"CHEBI:4877","l":"ethambutol","na":1,"nb":1,"a":[["antimycobacterial/ethambutol.html","ethambutol"]],"b":[["mapped/Ethambutol.yaml","Ethambutol"]]},{"id":"CHEBI:4878","l":"ethambutol dihydrochloride","na":1,"nb":1,"a":[["antimycobacterial/ethambutol-dihydrochloride.html","ethambutol dihydrochloride"]],"b":[["mapped/Ethambutol_Dihydrochloride.yaml","Ethambutol dihydrochloride"]]},{"id":"CHEBI:4883","l":"ethidium bromide","na":1,"nb":1,"a":[["antiprotozoal/ethidium-bromide.html","ethidium bromide"]],"b":[["mapped/Ethidium_Bromide.yaml","Ethidium Bromide"]]},{"id":"CHEBI:4885","l":"ethionamide","na":1,"nb":1,"a":[["antimycobacterial/ethionamide.html","ethionamide"]],"b":[["mapped/Ethionamide.yaml","Ethionamide"]]},{"id":"CHEBI:48947","l":"clavulanic acid","na":1,"nb":1,"a":[["antibacterial/clavulanic-acid.html","clavulanic acid"]],"b":[["mapped/Clavulanic_Acid.yaml","Clavulanic Acid"]]},{"id":"CHEBI:49566","l":"cloxacillin","na":1,"nb":1,"a":[["antibacterial/cloxacillin.html","cloxacillin"]],"b":[["mapped/Cloxacillin.yaml","Cloxacillin"]]},{"id":"CHEBI:50199","l":"pefloxacin","na":1,"nb":1,"a":[["antibacterial/pefloxacin.html","pefloxacin"]],"b":[["mapped/Pefloxacin.yaml","Pefloxacin"]]},{"id":"CHEBI:50694","l":"minocycline","na":1,"nb":1,"a":[["antibacterial/minocycline.html","minocycline"]],"b":[["mapped/Minocycline.yaml","Minocycline"]]},{"id":"CHEBI:50845","l":"doxycycline","na":1,"nb":1,"a":[["antibacterial/doxycycline.html","doxycycline"]],"b":[["mapped/Doxycycline.yaml","Doxycycline"]]},{"id":"CHEBI:5098","l":"flucloxacillin","na":1,"nb":1,"a":[["antibacterial/flucloxacillin.html","flucloxacillin"]],"b":[["mapped/Flucloxacillin.yaml","flucloxacillin"]]},{"id":"CHEBI:51208","l":"mecillinam","na":1,"nb":1,"a":[["antibacterial/mecillinam.html","mecillinam"]],"b":[["mapped/Mecillinam.yaml","Mecillinam"]]},{"id":"CHEBI:5169","l":"fraxetin","na":1,"nb":1,"a":[["antibacterial/fraxetin.html","fraxetin"]],"b":[["mapped/Fraxetin.yaml","Fraxetin"]]},{"id":"CHEBI:51799","l":"imipenem hydrate","na":1,"nb":1,"a":[["antibacterial/imipenem-hydrate.html","imipenem hydrate"]],"b":[["mapped/Impenum_Monohydrate.yaml","Impenum monohydrate"]]},{"id":"CHEBI:5195","l":"furazolidone","na":1,"nb":1,"a":[["antibacterial/furazolidone.html","furazolidone"]],"b":[["mapped/Furazolidone.yaml","Furazolidone"]]},{"id":"CHEBI:51963","l":"","na":1,"nb":1,"a":[["unspecified/bacteriohopane-32-33-34-35-tetrol.html","bacteriohopane-32,33,34,35-tetrol"]],"b":[["mapped/Hopanoid.yaml","Hopanoid"]]},{"id":"CHEBI:53620","l":"methylisothiazolinone","na":1,"nb":1,"a":[["antifungal/methylisothiazolinone.html","methylisothiazolinone"]],"b":[["mapped/2-methyl-4-isothizaolin-3-one.yaml","2-methyl-4-isothizaolin-3-one"]]},{"id":"CHEBI:53727","l":"sulfamethoxydiazine","na":1,"nb":1,"a":[["antimycobacterial/sulfamethoxydiazine.html","sulfamethoxydiazine"]],"b":[["mapped/Sulfamethoxydiazine.yaml","Sulfamethoxydiazine"]]},{"id":"CHEBI:5533","l":"granaticin","na":1,"nb":1,"a":[["unspecified/granaticin.html","granaticin"]],"b":[["mapped/Granaticin.yaml","Granaticin"]]},{"id":"CHEBI:556075","l":"radicicol","na":1,"nb":1,"a":[["antifungal/radicicol.html","radicicol"]],"b":[["mapped/Radicicol.yaml","Radicicol"]]},{"id":"CHEBI:5623","l":"harman","na":1,"nb":1,"a":[["antiviral/harman.html","harman"]],"b":[["mapped/Harmane.yaml","Harmane"]]},{"id":"CHEBI:59936","l":"ciprofloxacin hydrochloride hydrate","na":1,"nb":1,"a":[["antibacterial/ciprofloxacin-hydrochloride-hydrate.html","ciprofloxacin hydrochloride hydrate"]],"b":[["mapped/Ciprofloxacin_Hydrochloride.yaml","Ciprofloxacin Hydrochloride"]]},{"id":"CHEBI:600103","l":"daptomycin","na":1,"nb":1,"a":[["antibacterial/daptomycin.html","daptomycin"]],"b":[["mapped/Daptomycin.yaml","Daptomycin"]]},{"id":"CHEBI:6030","l":"isoniazide","na":1,"nb":1,"a":[["antimycobacterial/isoniazide.html","isoniazide"]],"b":[["mapped/Isoniazid.yaml","Isoniazid"]]},{"id":"CHEBI:60584","l":"bicozamycin","na":1,"nb":1,"a":[["antibacterial/bicozamycin.html","bicozamycin"]],"b":[["mapped/Bicyclomycin.yaml","Bicyclomycin"]]},{"id":"CHEBI:6109","l":"kanamycin A sulfate","na":1,"nb":1,"a":[["antibacterial/kanamycin-a-sulfate.html","kanamycin A sulfate"]],"b":[["mapped/Kanamycin_Sulfate.yaml","Kanamycin sulfate"]]},{"id":"CHEBI:62412","l":"phenazine-1-carboxylic acid","na":1,"nb":1,"a":[["antifungal/phenazine-1-carboxylic-acid.html","phenazine-1-carboxylic acid"]],"b":[["mapped/Phenazine-1-carboxylic_Acid.yaml","Phenazine-1-carboxylic acid"]]},{"id":"CHEBI:63598","l":"levofloxacin","na":1,"nb":1,"a":[["antibacterial/levofloxacin.html","levofloxacin"]],"b":[["mapped/Levofloxacin.yaml","Levofloxacin"]]},{"id":"CHEBI:63607","l":"linezolid","na":1,"nb":1,"a":[["antibacterial/linezolid.html","linezolid"]],"b":[["mapped/Linezolid.yaml","Linezolid"]]},{"id":"CHEBI:63611","l":"moxifloxacin","na":1,"nb":1,"a":[["antibacterial/moxifloxacin.html","moxifloxacin"]],"b":[["mapped/Moxifloxacin.yaml","Moxifloxacin"]]},{"id":"CHEBI:6377","l":"lapachol","na":1,"nb":1,"a":[["antibacterial/lapachol.html","lapachol"]],"b":[["mapped/Lapachol.yaml","Lapachol"]]},{"id":"CHEBI:64276","l":"glutaraldehyde","na":1,"nb":1,"a":[["biocide/glutaraldehyde.html","glutaraldehyde"]],"b":[["mapped/Glutaraldehyde.yaml","Glutaraldehyde"]]},{"id":"CHEBI:6472","l":"lincomycin","na":1,"nb":1,"a":[["antibacterial/lincomycin.html","lincomycin"]],"b":[["mapped/Lincomycin.yaml","Lincomycin"]]},{"id":"CHEBI:6518","l":"lomefloxacin hydrochloride","na":1,"nb":1,"a":[["antimycobacterial/lomefloxacin-hydrochloride.html","lomefloxacin hydrochloride"]],"b":[["mapped/Lomefloxacin_Hydrochloride.yaml","Lomefloxacin hydrochloride"]]},{"id":"CHEBI:65408","l":"andrographolide","na":1,"nb":1,"a":[["antiviral/andrographolide.html","andrographolide"]],"b":[["mapped/Andrographolide.yaml","Andrographolide"]]},{"id":"CHEBI:65585","l":"carnosic acid","na":1,"nb":1,"a":[["antiviral/carnosic-acid.html","carnosic acid"]],"b":[["mapped/Carnosic_Acid.yaml","Carnosic Acid"]]},{"id":"CHEBI:66279","l":"tubelactomicin A","na":1,"nb":1,"a":[["antimycobacterial/tubelactomicin-a.html","tubelactomicin A"]],"b":[["mapped/Tubelactomicin_A.yaml","Tubelactomicin A"]]},{"id":"CHEBI:67121","l":"nitroxoline","na":1,"nb":1,"a":[["antifungal/nitroxoline.html","nitroxoline"]],"b":[["mapped/8-hydroxy-nitroquinoline.yaml","8-hydroxy-nitroquinoline"]]},{"id":"CHEBI:67135","l":"2-nitroimidazole","na":1,"nb":1,"a":[["antimycobacterial/2-nitroimidazole.html","2-nitroimidazole"]],"b":[["mapped/Azomycin.yaml","Azomycin"]]},{"id":"CHEBI:6770","l":"meropenem trihydrate","na":1,"nb":1,"a":[["antibacterial/meropenem-trihydrate.html","meropenem trihydrate"]],"b":[["mapped/Meropenem.yaml","Meropenem"]]},{"id":"CHEBI:6805","l":"methacycline","na":1,"nb":1,"a":[["antibacterial/methacycline.html","methacycline"]],"b":[["mapped/Methacycline.yaml","Methacycline"]]},{"id":"CHEBI:6827","l":"methicillin","na":1,"nb":1,"a":[["antibacterial/methicillin.html","methicillin"]],"b":[["mapped/Methicillin.yaml","Methicillin"]]},{"id":"CHEBI:68590","l":"fidaxomicin","na":1,"nb":1,"a":[["antibacterial/fidaxomicin.html","fidaxomicin"]],"b":[["mapped/Fidaxomicin.yaml","Fidaxomicin"]]},{"id":"CHEBI:6872","l":"methylene blue","na":1,"nb":1,"a":[["antiprotozoal/methylene-blue.html","methylene blue"]],"b":[["mapped/Methylene_Blue.yaml","Methylene blue"]]},{"id":"CHEBI:6909","l":"metronidazole","na":1,"nb":1,"a":[["antibacterial/metronidazole.html","metronidazole"]],"b":[["mapped/Metronidazole.yaml","Metronidazole"]]},{"id":"CHEBI:6919","l":"mezlocillin","na":1,"nb":1,"a":[["antibacterial/mezlocillin.html","mezlocillin"]],"b":[["mapped/Mezlocillin.yaml","Mezlocillin"]]},{"id":"CHEBI:69196","l":"brazilein","na":1,"nb":1,"a":[["antibacterial/brazilein.html","brazilein"]],"b":[["mapped/Brazilein.yaml","Brazilein"]]},{"id":"CHEBI:69414","l":"hygromycin A","na":1,"nb":1,"a":[["antibacterial/hygromycin-a.html","hygromycin A"]],"b":[["mapped/Hygromycin_A.yaml","Hygromycin A"]]},{"id":"CHEBI:71415","l":"nitrofurantoin","na":1,"nb":1,"a":[["antibacterial/nitrofurantoin.html","nitrofurantoin"]],"b":[["mapped/Nitrofurantoin.yaml","Nitrofurantoin"]]},{"id":"CHEBI:71629","l":"nisin","na":1,"nb":1,"a":[["antibacterial/nisin.html","nisin"]],"b":[["mapped/Nisin.yaml","Nisin"]]},{"id":"CHEBI:71987","l":"curamycin A","na":1,"nb":1,"a":[["unspecified/curamycin-a.html","curamycin A"]],"b":[["mapped/Curamycin_A.yaml","Curamycin A"]]},{"id":"CHEBI:72292","l":"bedaquiline","na":1,"nb":1,"a":[["antimycobacterial/bedaquiline.html","bedaquiline"]],"b":[["mapped/Bedaquiline.yaml","Bedaquiline"]]},{"id":"CHEBI:72346","l":"roseoflavin","na":1,"nb":1,"a":[["unspecified/roseoflavin.html","roseoflavin"]],"b":[["mapped/Roseoflavin.yaml","Roseoflavin"]]},{"id":"CHEBI:72449","l":"malachite green","na":1,"nb":1,"a":[["antibacterial/malachite-green.html","malachite green"]],"b":[["mapped/Malachite_Green.yaml","Malachite green"]]},{"id":"CHEBI:74846","l":"azaserine","na":1,"nb":1,"a":[["antifungal/azaserine.html","azaserine"]],"b":[["mapped/Azaserine.yaml","Azaserine"]]},{"id":"CHEBI:7488","l":"natamycin","na":1,"nb":1,"a":[["antifungal/natamycin.html","natamycin"]],"b":[["mapped/Natamycin.yaml","Natamycin"]]},{"id":"CHEBI:7508","l":"framycetin","na":1,"nb":1,"a":[["antibacterial/framycetin.html","framycetin"]],"b":[["mapped/Framycetin.yaml","Framycetin"]]},{"id":"CHEBI:75092","l":"morin","na":1,"nb":1,"a":[["antibacterial/morin.html","morin"]],"b":[["mapped/Morin.yaml","Morin"]]},{"id":"CHEBI:7528","l":"netilmycin","na":1,"nb":1,"a":[["antibacterial/netilmycin.html","netilmycin"]],"b":[["mapped/Netilmycin.yaml","Netilmycin"]]},{"id":"CHEBI:7660","l":"","na":1,"nb":1,"a":[["antifungal/nystatin.html","nystatin"]],"b":[["mapped/Nystatin.yaml","Nystatin"]]},{"id":"CHEBI:7731","l":"","na":1,"nb":1,"a":[["antibacterial/ofloxacin.html","ofloxacin"]],"b":[["mapped/Ofloxacin.yaml","Ofloxacin"]]},{"id":"CHEBI:77543","l":"ebselen","na":1,"nb":1,"a":[["antibacterial/ebselen.html","ebselen"]],"b":[["mapped/Ebselen.yaml","Ebselen"]]},{"id":"CHEBI:77735","l":"ossamycin","na":1,"nb":1,"a":[["unspecified/ossamycin.html","ossamycin"]],"b":[["mapped/Ossamycin.yaml","Ossamycin"]]},{"id":"CHEBI:7809","l":"oxacillin","na":1,"nb":1,"a":[["antibacterial/oxacillin.html","oxacillin"]],"b":[["mapped/Oxacillin.yaml","Oxacillin"]]},{"id":"CHEBI:78661","l":"borrelidin","na":1,"nb":1,"a":[["antifungal/borrelidin.html","borrelidin"]],"b":[["mapped/Borrelidin.yaml","Borrelidin"]]},{"id":"CHEBI:78870","l":"sodium nitrite","na":1,"nb":1,"a":[["biocide/sodium-nitrite.html","sodium nitrite"]],"b":[["mapped/Nano2.yaml","NaNO2"]]},{"id":"CHEBI:7934","l":"paromomycin","na":1,"nb":1,"a":[["antibacterial/paromomycin.html","paromomycin"]],"b":[["mapped/Paromomycin.yaml","Paromomycin"]]},{"id":"CHEBI:7935","l":"paromomycin sulfate","na":1,"nb":1,"a":[["antibacterial/paromomycin-sulfate.html","paromomycin sulfate"]],"b":[["mapped/Paromomycin_Sulfate_Salt.yaml","Paromomycin sulfate salt"]]},{"id":"CHEBI:79394","l":"indolmycin","na":1,"nb":1,"a":[["antibacterial/indolmycin.html","indolmycin"]],"b":[["mapped/Indolmycin.yaml","Indolmycin"]]},{"id":"CHEBI:80025","l":"Salinomycin","na":1,"nb":1,"a":[["antibacterial/salinomycin.html","salinomycin"]],"b":[["mapped/Salinomycin.yaml","Salinomycin"]]},{"id":"CHEBI:81419","l":"kasugamycin","na":1,"nb":1,"a":[["antifungal/kasugamycin.html","kasugamycin"]],"b":[["mapped/Kasugamycin.yaml","Kasugamycin"]]},{"id":"CHEBI:81711","l":"chlorhexidine acetate","na":1,"nb":1,"a":[["antibacterial/chlorhexidine-acetate.html","chlorhexidine acetate"]],"b":[["mapped/Chlorhexidine_Diacetate_Salt_Hydrate.yaml","Chlorhexidine diacetate salt hydrate"]]},{"id":"CHEBI:81862","l":"potassium hydrogencarbonate","na":1,"nb":1,"a":[["antifungal/potassium-hydrogencarbonate.html","potassium hydrogencarbonate"]],"b":[["mapped/Khco3.yaml","KHCO3"]]},{"id":"CHEBI:8232","l":"piperacillin","na":1,"nb":1,"a":[["antibacterial/piperacillin.html","piperacillin"]],"b":[["mapped/Piperacillin.yaml","Piperacillin"]]},{"id":"CHEBI:85129","l":"ristocetin","na":1,"nb":1,"a":[["antibacterial/ristocetin.html","ristocetin"]],"b":[["mapped/Ristocetin_B.yaml","Ristocetin B"]]},{"id":"CHEBI:86431","l":"sodium fluorophosphate","na":1,"nb":1,"a":[["antibacterial/sodium-fluorophosphate.html","sodium fluorophosphate"]],"b":[["mapped/Sodium_Fluorophosphate.yaml","Sodium Fluorophosphate"]]},{"id":"CHEBI:8653","l":"pyocyanine","na":1,"nb":1,"a":[["antibacterial/pyocyanine.html","pyocyanine"]],"b":[["mapped/Pyocyanin.yaml","Pyocyanin"]]},{"id":"CHEBI:8673","l":"pyrimethamine","na":1,"nb":1,"a":[["antiprotozoal/pyrimethamine.html","pyrimethamine"]],"b":[["mapped/Pyrimethamine.yaml","Pyrimethamine"]]},{"id":"CHEBI:86904","l":"4-coumaric acid methyl ester","na":1,"nb":1,"a":[["antifungal/4-coumaric-acid-methyl-ester.html","4-coumaric acid methyl ester"]],"b":[["mapped/Methyl-cis-p-coumarate.yaml","methyl-cis-p-coumarate"]]},{"id":"CHEBI:87084","l":"rosaramicin","na":1,"nb":1,"a":[["antibacterial/rosaramicin.html","rosaramicin"]],"b":[["mapped/Rosaramicin.yaml","Rosaramicin"]]},{"id":"CHEBI:9215","l":"spectinomycin","na":1,"nb":1,"a":[["antibacterial/spectinomycin.html","spectinomycin"]],"b":[["mapped/Spectinomycin.yaml","Spectinomycin"]]},{"id":"CHEBI:9217","l":"spectinomycin hydrochloride hydrate","na":1,"nb":1,"a":[["antibacterial/spectinomycin-hydrochloride-hydrate.html","spectinomycin hydrochloride hydrate"]],"b":[["mapped/Spectinomycin_Dihydrochloride_Pentahydrate.yaml","Spectinomycin dihydrochloride pentahydrate"]]},{"id":"CHEBI:9287","l":"streptonigrin","na":1,"nb":1,"a":[["unspecified/streptonigrin.html","streptonigrin"]],"b":[["mapped/Streptonigrin.yaml","Streptonigrin"]]},{"id":"CHEBI:9321","l":"sulbactam","na":1,"nb":1,"a":[["unspecified/sulbactam.html","sulbactam"]],"b":[["mapped/Sulbactam.yaml","Sulbactam"]]},{"id":"CHEBI:9331","l":"sulfamethizole","na":1,"nb":1,"a":[["antibacterial/sulfamethizole.html","sulfamethizole"]],"b":[["mapped/Sulfamethizole.yaml","Sulfamethizole"]]},{"id":"CHEBI:9332","l":"sulfamethoxazole","na":1,"nb":1,"a":[["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]],"b":[["mapped/Sulfamethoxazole.yaml","Sulfamethoxazole"]]},{"id":"CHEBI:9334","l":"sulfasalazine","na":1,"nb":1,"a":[["antibacterial/sulfasalazine.html","sulfasalazine"]],"b":[["mapped/Sulfasalazine.yaml","Sulfasalazine"]]},{"id":"CHEBI:9421","l":"tazobactam","na":1,"nb":1,"a":[["unspecified/tazobactam.html","tazobactam"]],"b":[["mapped/Tazobactam.yaml","Tazobactam"]]},{"id":"CHEBI:9587","l":"ticarcillin","na":1,"nb":1,"a":[["antibacterial/ticarcillin.html","ticarcillin"]],"b":[["mapped/Ticarcillin.yaml","Ticarcillin"]]}]} \ No newline at end of file +{"a":"AntibioticMech","b":"MediaIngredientMech","base":{"AntibioticMech":"https://culturebotai.github.io/AntibioticMech/pages/","MediaIngredientMech":"https://github.com/CultureBotAI/MediaIngredientMech/blob/main/data/ingredients/"},"n":324,"by":{"CHEBI":324},"terms":[{"id":"CHEBI:35505","l":"","na":21,"nb":73,"a":[["antibacterial/amoxicillin-trihydrate.html","amoxicillin trihydrate"],["antibacterial/cefepime-hydrochloride.html","cefepime hydrochloride"],["antibacterial/ceftaroline-fosamil-acetate-monohydrate.html","ceftaroline fosamil acetate monohydrate"],["antibacterial/ceftibuten-dihydrate.html","ceftibuten dihydrate"],["antibacterial/cephalexin-monohydrate.html","cephalexin monohydrate"],["antibacterial/ciprofloxacin-hydrochloride-hydrate.html","ciprofloxacin hydrochloride hydrate"]],"b":[["mapped/2-Deoxyadenosine_Monohydrate.yaml","2-Deoxyadenosine monohydrate"],["mapped/2-Keto-D-gluconic_Acid_Hemicalcium_Salt_Hydrate.yaml","2-Keto-D-gluconic acid hemicalcium salt hydrate"],["mapped/4-Hydroxymandelic_Acid_Monohydrate.yaml","4-Hydroxymandelic acid monohydrate"],["mapped/5-Fluoroorotic_Acid_Hydrate.yaml","5-Fluoroorotic acid hydrate"],["mapped/A-Ketoglutaric_Acid_Disodium_Salt_Hydrate.yaml","a-Ketoglutaric acid disodium salt hydrate"],["mapped/Adenine_Hydrochloride_Hydrate.yaml","Adenine hydrochloride hydrate"]]},{"id":"CHEBI:33709","l":"amino acid","na":8,"nb":54,"a":[["antibacterial/7-3-aminopyrrolidin-1-yl-1-2-4-difluorophenyl-6-fluoro-4-oxo-1-4-dihyd.html","7-(3-aminopyrrolidin-1-yl)-1-(2,4-difluorophenyl)-6-fluoro-4-oxo-1,4-dihydro-1,8-naphthyridine-3-carboxylic"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/pipemidic-acid.html","pipemidic acid"],["antibacterial/trovafloxacin.html","trovafloxacin"],["antifungal/mediomycin-a.html","mediomycin A"],["antifungal/mediomycin-b.html","mediomycin B"]],"b":[["mapped/1-aminocyclopropane-1-carboxylate.yaml","1-aminocyclopropane-1-carboxylate"],["mapped/3-Chloro-L-tyrosine.yaml","3-Chloro-L-tyrosine"],["mapped/3-aminobutyric_Acid.yaml","3-aminobutyric acid"],["mapped/4-azido-L-phenylalanine.yaml","4-azido-L-phenylalanine"],["mapped/5-Aminolevulinic_Acid.yaml","5-Aminolevulinic acid"],["mapped/5-aminovaleric_Acid.yaml","5-Aminovaleric acid"]]},{"id":"CHEBI:26218","l":"","na":3,"nb":2,"a":[["antibacterial/potassium-clavulanate.html","potassium clavulanate"],["antifungal/potassium-hydrogencarbonate.html","potassium hydrogencarbonate"],["biocide/potassium-sorbate.html","potassium sorbate"]],"b":[["mapped/5-Keto-D-Gluconic_Acid_Potassium_Salt.yaml","5-Keto-D-Gluconic Acid potassium salt"],["mapped/D-Saccharic_Acid_Potassium_Salt.yaml","D-Saccharic acid potassium salt"]]},{"id":"CHEBI:30746","l":"benzoic acid","na":2,"nb":2,"a":[["biocide/benzoic-acid.html","benzoic acid"],["biocide/carboxy-ptio.html","carboxy-PTIO"]],"b":[["mapped/4_Carbon_Mix.yaml","4 Carbon Mix"],["mapped/Benzoic_Acid.yaml","benzoic acid"]]},{"id":"CHEBI:23066","l":"","na":66,"nb":1,"a":[["antibacterial/cefacetrile.html","cefacetrile"],["antibacterial/cefaclor.html","cefaclor"],["antibacterial/cefadroxil.html","cefadroxil"],["antibacterial/cefaloram.html","cefaloram"],["antibacterial/cefaloridine.html","cefaloridine"],["antibacterial/cefalotin.html","cefalotin"]],"b":[["mapped/Cephalosporin.yaml","Cephalosporin"]]},{"id":"CHEBI:25105","l":"","na":58,"nb":1,"a":[["antibacterial/5-o-mycaminosyltylonolide.html","5-O-mycaminosyltylonolide"],["antibacterial/aplasmomycin.html","(+)-aplasmomycin"],["antibacterial/azithromycin.html","azithromycin"],["antibacterial/boromycin.html","boromycin"],["antibacterial/brefeldin-a.html","brefeldin A"],["antibacterial/cethromycin.html","cethromycin"]],"b":[["mapped/Macrolide_Antibiotic.yaml","Macrolide Antibiotic"]]},{"id":"CHEBI:17334","l":"penicillin","na":38,"nb":1,"a":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/azidocillin.html","azidocillin"],["antibacterial/azlocillin.html","azlocillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/carbenicillin.html","carbenicillin"]],"b":[["mapped/Penicillin.yaml","Penicillin"]]},{"id":"CHEBI:35358","l":"","na":33,"nb":1,"a":[["antibacterial/prontosil.html","prontosil"],["antibacterial/sulfabenzamide.html","sulfabenzamide"],["antibacterial/sulfabromomethazine.html","sulfabromomethazine"],["antibacterial/sulfachloropyridazine.html","sulfachloropyridazine"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfaethoxypyridazine.html","sulfaethoxypyridazine"]],"b":[["mapped/Sulfonamide.yaml","Sulfonamide"]]},{"id":"CHEBI:25000","l":"","na":22,"nb":1,"a":[["antifungal/callipeltin-a.html","callipeltin A"],["antifungal/eugeniin.html","eugeniin"],["antifungal/fenpicoxamid.html","fenpicoxamid"],["antifungal/multiplolide-a.html","multiplolide A"],["antifungal/multiplolide-b.html","multiplolide B"],["antifungal/neothyonidioside.html","neothyonidioside"]],"b":[["mapped/Lactone.yaml","Lactone"]]},{"id":"CHEBI:87228","l":"","na":22,"nb":1,"a":[["antibacterial/sulfabenzamide.html","sulfabenzamide"],["antibacterial/sulfamerazine.html","sulfamerazine"],["antibacterial/sulfamethazine.html","sulfamethazine"],["antibacterial/sulfamethizole.html","sulfamethizole"],["antibacterial/sulfamethoxazole.html","sulfamethoxazole"],["antibacterial/sulfanilamide.html","sulfanilamide"]],"b":[["mapped/Sulfonamide.yaml","Sulfonamide"]]},{"id":"CHEBI:49322","l":"","na":18,"nb":1,"a":[["antimycobacterial/nothramicin.html","nothramicin"],["unspecified/10-carboxy-13-deoxycarminomycin.html","10-carboxy-13-deoxycarminomycin"],["unspecified/10-carboxy-13-deoxydaunorubicin.html","10-carboxy-13-deoxydaunorubicin"],["unspecified/13-deoxycarminomycin.html","13-deoxycarminomycin"],["unspecified/13r-13-dihydrocarminomycin.html","(13R)-13-dihydrocarminomycin"],["unspecified/4-epidoxorubicin.html","4'-epidoxorubicin"]],"b":[["mapped/Anthracycline_Antibiotic.yaml","Anthracycline Antibiotic"]]},{"id":"CHEBI:22507","l":"","na":17,"nb":1,"a":[["antibacterial/astromicin.html","astromicin"],["antibacterial/etimicin.html","etimicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"],["antibacterial/sisomycin.html","sisomycin"]],"b":[["mapped/Aminoglycoside_Antibiotic.yaml","Aminoglycoside Antibiotic"]]},{"id":"CHEBI:49976","l":"zinc dichloride","na":1,"nb":8,"a":[["biocide/zinc-dichloride.html","zinc dichloride"]],"b":[["mapped/MME_Trace_Minerals.yaml","MME Trace Minerals"],["mapped/Mc_trace_minerals_SO4free.yaml","Mc_trace_minerals_SO4free"],["mapped/P-iv_Metal_Solution.yaml","P-IV Metal Solution"],["mapped/Sulfur-free_DL_Minerals.yaml","Sulfur-free DL minerals"],["mapped/Trace_Element_Solution_SL-10.yaml","Trace element solution SL-10"],["mapped/UW_Concentrated_Base_No_Sulfur.yaml","UW concentrated base no sulfur"]]},{"id":"CHEBI:59062","l":"","na":8,"nb":1,"a":[["antibacterial/colistimethate-a.html","colistimethate A"],["antibacterial/colistimethate-b.html","colistimethate B"],["antibacterial/colistin-a-sodium-methanesulfonate.html","colistin A sodium methanesulfonate"],["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b-sodium-methanesulfonate.html","colistin B sodium methanesulfonate"],["antibacterial/colistin-b.html","colistin B"]],"b":[["mapped/Polymyxin.yaml","Polymyxin"]]},{"id":"CHEBI:30769","l":"citric acid","na":1,"nb":6,"a":[["unspecified/citric-acid.html","citric acid"]],"b":[["mapped/Citric_Acid.yaml","Citric acid"],["mapped/Citric_Acid_X_H2o.yaml","Citric acid x H2O"],["mapped/Citric_Acidh2o.yaml","Citric Acid•H2O"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Na2-citrate.yaml","Na2-citrate"],["mapped/Trisodium_Citrate.yaml","Trisodium citrate"]]},{"id":"CHEBI:48923","l":"erythromycin","na":6,"nb":1,"a":[["antibacterial/erythromycin-a.html","erythromycin A"],["unspecified/erythromycin-b.html","erythromycin B"],["unspecified/erythromycin-c.html","erythromycin C"],["unspecified/erythromycin-d.html","erythromycin D"],["unspecified/erythromycin-e.html","erythromycin E"],["unspecified/erythromycin-n-methyl-14c.html","erythromycin-[N-methyl-14C]"]],"b":[["mapped/Erythromycin.yaml","erythromycin"]]},{"id":"CHEBI:24698","l":"hydroxyflavone","na":5,"nb":1,"a":[["antibacterial/ochnaflavone.html","ochnaflavone"],["antiviral/agathisflavone.html","agathisflavone"],["antiviral/amentoflavone.html","amentoflavone"],["antiviral/ginkgetin.html","ginkgetin"],["antiviral/robustaflavone.html","robustaflavone"]],"b":[["mapped/36-Dihydroxyflavone.yaml","3',6-Dihydroxyflavone"]]},{"id":"CHEBI:28600","l":"farnesol","na":5,"nb":1,"a":[["unspecified/2-cis-6-cis-farnesol.html","(2-cis,6-cis)-farnesol"],["unspecified/2-cis-6-trans-farnesol.html","(2-cis,6-trans)-farnesol"],["unspecified/2-trans-6-cis-farnesol.html","(2-trans,6-cis)-farnesol"],["unspecified/2-trans-6-trans-farnesol.html","(2-trans,6-trans)-farnesol"],["unspecified/farnesol.html","farnesol"]],"b":[["mapped/TransTrans-Farnesol.yaml","Trans,Trans-Farnesol"]]},{"id":"CHEBI:33403","l":"elemental sulfur","na":1,"nb":5,"a":[["antifungal/polysulfur.html","polysulfur"]],"b":[["mapped/GYPS.yaml","GYPS"],["mapped/Sulfur.yaml","Sulfur"],["mapped/Sulfur_Powder.yaml","Sulfur (powder)"],["mapped/Sulphur.yaml","Sulphur"],["mapped/Yeast_Extract_Sulfur.yaml","Yeast Extract + Sulfur"]]},{"id":"CHEBI:35273","l":"quaternary ammonium salt","na":5,"nb":1,"a":[["antibacterial/benzethonium-chloride.html","benzethonium chloride"],["antibacterial/quaternium-15.html","quaternium-15"],["antifungal/rezafungin-acetate.html","rezafungin acetate"],["biocide/benzododecinium-bromide.html","benzododecinium bromide"],["biocide/benzododecinium-chloride.html","benzododecinium chloride"]],"b":[["mapped/Tetramethyl_Ammonium.yaml","Tetramethyl ammonium"]]},{"id":"CHEBI:55429","l":"cephamycin","na":4,"nb":1,"a":[["antibacterial/cefminox.html","cefminox"],["antibacterial/cefotetan.html","cefotetan"],["antibacterial/cefoxitin.html","cefoxitin"],["unspecified/cephamycin-c.html","cephamycin C"]],"b":[["mapped/Cephamycin_A.yaml","Cephamycin A"]]},{"id":"CHEBI:17012","l":"N-acetylneuraminic acid","na":3,"nb":1,"a":[["antiviral/n-acetyl-%CE%B1-neuraminic-acid.html","N-acetyl-α-neuraminic acid"],["antiviral/n-acetyl-%CE%B2-neuraminic-acid.html","N-acetyl-β-neuraminic acid"],["antiviral/n-acetylneuraminic-acid.html","N-acetylneuraminic acid"]],"b":[["mapped/N-acetylneuraminic_Acid.yaml","N-acetylneuraminic acid"]]},{"id":"CHEBI:17580","l":"linalool","na":3,"nb":1,"a":[["unspecified/linalool.html","linalool"],["unspecified/r-linalool.html","(R)-linalool"],["unspecified/s-linalool.html","(S)-linalool"]],"b":[["mapped/Linalool.yaml","Linalool"]]},{"id":"CHEBI:22907","l":"","na":3,"nb":1,"a":[["antibacterial/bleomycin-a2.html","bleomycin A2"],["antibacterial/bleomycin.html","bleomycin"],["unspecified/bleomycin-a5.html","bleomycin A5"]],"b":[["mapped/Bleomycin.yaml","Bleomycin"]]},{"id":"CHEBI:25399","l":"","na":3,"nb":1,"a":[["antifungal/m-cresol.html","m-cresol"],["antifungal/o-cresol.html","o-cresol"],["antifungal/p-cresol.html","p-cresol"]],"b":[["mapped/Cresol.yaml","Cresol"]]},{"id":"CHEBI:34118","l":"oct-1-en-3-ol","na":3,"nb":1,"a":[["unspecified/oct-1-en-3-ol.html","oct-1-en-3-ol"],["unspecified/r-oct-1-en-3-ol.html","(R)-oct-1-en-3-ol"],["unspecified/s-oct-1-en-3-ol.html","(S)-oct-1-en-3-ol"]],"b":[["mapped/1-octen-3-ol.yaml","1-octen-3-ol"]]},{"id":"CHEBI:35825","l":"mandelic acid","na":3,"nb":1,"a":[["antibacterial/mandelic-acid.html","mandelic acid"],["antibacterial/r-mandelic-acid.html","(R)-mandelic acid"],["antibacterial/s-mandelic-acid.html","(S)-mandelic acid"]],"b":[["mapped/Mandelic_Acid.yaml","Mandelic acid"]]},{"id":"CHEBI:38319","l":"usnic acid","na":3,"nb":1,"a":[["antifungal/usnic-acid-38319.html","usnic acid"],["antifungal/usnic-acid-38320.html","(+)-usnic acid"],["antifungal/usnic-acid.html","(−)-usnic acid"]],"b":[["mapped/Usnic_Acid.yaml","Usnic Acid"]]},{"id":"CHEBI:48844","l":"roxithromycin","na":3,"nb":1,"a":[["antibacterial/e-roxithromycin.html","(E)-roxithromycin"],["antibacterial/roxithromycin.html","roxithromycin"],["antibacterial/z-roxithromycin.html","(Z)-roxithromycin"]],"b":[["mapped/Roxithromycin.yaml","Roxithromycin"]]},{"id":"CHEBI:83230","l":"","na":3,"nb":1,"a":[["antifungal/pradimicin-a.html","pradimicin A"],["antifungal/pradimicin-b.html","pradimicin B"],["antifungal/pradimicin-c.html","pradimicin C"]],"b":[["mapped/Pradimicin.yaml","Pradimicin"]]},{"id":"CHEBI:17909","l":"polysulfur","na":1,"nb":2,"a":[["antifungal/polysulfur.html","polysulfur"]],"b":[["mapped/Sulfur_Powder.yaml","Sulfur (powder)"],["mapped/Sulphur.yaml","Sulphur"]]},{"id":"CHEBI:24753","l":"","na":2,"nb":1,"a":[["antibacterial/hygromycin-b.html","hygromycin B"],["unspecified/7-o-phosphohygromycin-b.html","7'-O-phosphohygromycin B"]],"b":[["mapped/Hygromycin.yaml","Hygromycin"]]},{"id":"CHEBI:26401","l":"purines","na":2,"nb":1,"a":[["antiviral/mercaptopurine.html","mercaptopurine"],["antiviral/valganciclovir.html","valganciclovir"]],"b":[["mapped/Purines.yaml","Purines"]]},{"id":"CHEBI:2682","l":"amphotericin B","na":1,"nb":2,"a":[["antifungal/amphotericin-b.html","amphotericin B"]],"b":[["mapped/Amphotericin_B.yaml","Amphotericin B"],["unmapped/Amphotericin.yaml","Amphotericin"]]},{"id":"CHEBI:28034","l":"","na":2,"nb":1,"a":[["antifungal/kaempferol-3-o-%CE%B2-d-galactoside.html","kaempferol 3-O-β-D-galactoside"],["antiviral/acacetin-7-o-%CE%B2-d-galactopyranoside.html","acacetin-7-O-β-D-galactopyranoside"]],"b":[["mapped/Beta-D-galactoside.yaml","Beta-D-galactoside"]]},{"id":"CHEBI:28831","l":"","na":1,"nb":2,"a":[["antifungal/4-5-6-7-tetrachloro-2-benzofuran-1-3h-one.html","4,5,6,7-tetrachloro-2-benzofuran-1(3H)-one"]],"b":[["mapped/1-propanolCO2.yaml","1-propanol+CO2"],["mapped/Propan-1-ol.yaml","Propan-1-ol"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":1,"nb":2,"a":[["antibacterial/daptomycin.html","daptomycin"]],"b":[["mapped/Calcium%282%29.yaml","Calcium(2+)"],["mapped/Calcium.yaml","Calcium"]]},{"id":"CHEBI:32150","l":"sodium thiosulfate pentahydrate","na":1,"nb":2,"a":[["antifungal/sodium-thiosulfate-pentahydrate.html","sodium thiosulfate pentahydrate"]],"b":[["mapped/Na2s2o3_X_5_H2o.yaml","Na2S2O3 x 5 H2O"],["mapped/Sodium_Thiosulfate_Pentahydrate.yaml","Sodium Thiosulfate Pentahydrate"]]},{"id":"CHEBI:3508","l":"ceftazidime","na":1,"nb":2,"a":[["antibacterial/ceftazidime.html","ceftazidime"]],"b":[["mapped/Ceftazidime.yaml","Ceftazidime"],["mapped/Ceftazidime_Hydrate.yaml","Ceftazidime hydrate"]]},{"id":"CHEBI:39207","l":"","na":2,"nb":1,"a":[["unspecified/spinosyn-a.html","spinosyn A"],["unspecified/spinosyn-d.html","spinosyn D"]],"b":[["mapped/Spinosyn.yaml","Spinosyn"]]},{"id":"CHEBI:44976","l":"phosphonic acid","na":2,"nb":1,"a":[["antifungal/glyphosate.html","glyphosate"],["antifungal/phosphonic-acid.html","phosphonic acid"]],"b":[["mapped/KH2PO3.yaml","KH2PO3"]]},{"id":"CHEBI:45285","l":"pyrazinecarboxamide","na":2,"nb":1,"a":[["antimycobacterial/n-butyl-5-4-hydroxyphenyl-6-oxo-1-6-dihydropyrazine-2-carboxamide.html","N-butyl-5-(4-hydroxyphenyl)-6-oxo-1,6-dihydropyrazine-2-carboxamide"],["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]],"b":[["mapped/Pyrazinamide.yaml","Pyrazinamide"]]},{"id":"CHEBI:4917","l":"eugenol","na":2,"nb":1,"a":[["antibacterial/dihydroconiferyl-alcohol.html","dihydroconiferyl alcohol"],["antibacterial/eugenol.html","eugenol"]],"b":[["mapped/Eugenol.yaml","Eugenol"]]},{"id":"CHEBI:73908","l":"2,4-diamino-6,7-diisopropylpteridine","na":1,"nb":2,"a":[["antibacterial/2-4-diamino-6-7-diisopropylpteridine.html","2,4-diamino-6,7-diisopropylpteridine"]],"b":[["mapped/24-diamino-67-di-iso-propylpteridine_phosphate.yaml","2,4-diamino-6,7-di-iso-propylpteridine phosphate"],["mapped/Vibriostat.yaml","Vibriostat"]]},{"id":"CHEBI:7524","l":"nerolidol","na":2,"nb":1,"a":[["antifungal/6z-nerolidol.html","(6Z)-nerolidol"],["antifungal/nerolidol.html","nerolidol"]],"b":[["mapped/Nerolidol.yaml","Nerolidol"]]},{"id":"CHEBI:100147","l":"nalidixic acid","na":1,"nb":1,"a":[["antibacterial/nalidixic-acid.html","nalidixic acid"]],"b":[["mapped/Nalidixic_Acid_Sodium_Salt.yaml","Nalidixic acid sodium salt"]]},{"id":"CHEBI:100241","l":"ciprofloxacin","na":1,"nb":1,"a":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]],"b":[["mapped/Ciprofloxacin.yaml","Ciprofloxacin"]]},{"id":"CHEBI:100246","l":"norfloxacin","na":1,"nb":1,"a":[["antibacterial/norfloxacin.html","norfloxacin"]],"b":[["mapped/Norfloxacin.yaml","Norfloxacin"]]},{"id":"CHEBI:102130","l":"sulfamerazine","na":1,"nb":1,"a":[["antibacterial/sulfamerazine.html","sulfamerazine"]],"b":[["mapped/Sulfamerazine.yaml","Sulfamerazine"]]},{"id":"CHEBI:102265","l":"sulfamethazine","na":1,"nb":1,"a":[["antibacterial/sulfamethazine.html","sulfamethazine"]],"b":[["mapped/Sulfamethazine_Sodium_Salt.yaml","Sulfamethazine sodium salt"]]},{"id":"CHEBI:102484","l":"sulfisoxazole","na":1,"nb":1,"a":[["antibacterial/sulfisoxazole.html","sulfisoxazole"]],"b":[["mapped/Sulfisoxazole.yaml","Sulfisoxazole"]]},{"id":"CHEBI:113455","l":"sodium benzoate","na":1,"nb":1,"a":[["biocide/sodium-benzoate.html","sodium benzoate"]],"b":[["mapped/Na-benzoate.yaml","Na-benzoate"]]},{"id":"CHEBI:116278","l":"lomefloxacin","na":1,"nb":1,"a":[["antimycobacterial/lomefloxacin.html","lomefloxacin"]],"b":[["mapped/Lomefloxacin.yaml","Lomefloxacin"]]},{"id":"CHEBI:124991","l":"cefalotin","na":1,"nb":1,"a":[["antibacterial/cefalotin.html","cefalotin"]],"b":[["mapped/Cefalotin.yaml","Cefalotin"]]},{"id":"CHEBI:132106","l":"sodium propionate","na":1,"nb":1,"a":[["antifungal/sodium-propionate.html","sodium propionate"]],"b":[["mapped/Na-propionate.yaml","Na-propionate"]]},{"id":"CHEBI:132112","l":"sodium thiosulfate","na":1,"nb":1,"a":[["antifungal/sodium-thiosulfate.html","sodium thiosulfate"]],"b":[["mapped/Na2s2o3.yaml","Na2S2O3"]]},{"id":"CHEBI:134107","l":"CHIR-090","na":1,"nb":1,"a":[["unspecified/chir-090.html","CHIR-090"]],"b":[["mapped/CHIR-090.yaml","CHIR-090"]]},{"id":"CHEBI:134606","l":"toyocamycin","na":1,"nb":1,"a":[["antifungal/toyocamycin.html","toyocamycin"]],"b":[["mapped/Toyocamycin.yaml","Toyocamycin"]]},{"id":"CHEBI:134742","l":"delamanid","na":1,"nb":1,"a":[["antibacterial/delamanid.html","delamanid"]],"b":[["mapped/Delamanid.yaml","Delamanid"]]},{"id":"CHEBI:135817","l":"cefminox","na":1,"nb":1,"a":[["antibacterial/cefminox.html","cefminox"]],"b":[["mapped/Cefminox.yaml","Cefminox"]]},{"id":"CHEBI:135928","l":"doripenem","na":1,"nb":1,"a":[["antibacterial/doripenem.html","doripenem"]],"b":[["mapped/Doripenem.yaml","Doripenem"]]},{"id":"CHEBI:136609","l":"theaflavin","na":1,"nb":1,"a":[["antibacterial/theaflavin.html","theaflavin"]],"b":[["mapped/Theaflavin.yaml","Theaflavin"]]},{"id":"CHEBI:141155","l":"dimetridazole","na":1,"nb":1,"a":[["antiprotozoal/dimetridazole.html","dimetridazole"]],"b":[["mapped/Dimetridazole.yaml","Dimetridazole"]]},{"id":"CHEBI:141991","l":"cinnamycin","na":1,"nb":1,"a":[["unspecified/cinnamycin.html","cinnamycin"]],"b":[["mapped/Cinnamycin.yaml","Cinnamycin"]]},{"id":"CHEBI:143552","l":"hexanol","na":1,"nb":1,"a":[["antibacterial/hexan-1-ol.html","hexan-1-ol"]],"b":[["mapped/Hexanol.yaml","hexanol"]]},{"id":"CHEBI:149836","l":"tigecycline","na":1,"nb":1,"a":[["antibacterial/tigecycline.html","tigecycline"]],"b":[["mapped/Tigecycline.yaml","Tigecycline"]]},{"id":"CHEBI:15353","l":"blasticidin S","na":1,"nb":1,"a":[["antifungal/blasticidin-s.html","blasticidin S"]],"b":[["mapped/Blasticidin_S.yaml","Blasticidin S"]]},{"id":"CHEBI:15366","l":"acetic acid","na":1,"nb":1,"a":[["biocide/acetic-acid.html","acetic acid"]],"b":[["mapped/Acetic_Acid.yaml","Acetic acid"]]},{"id":"CHEBI:15369","l":"actinomycin","na":1,"nb":1,"a":[["antibacterial/actinomycin-d.html","actinomycin D"]],"b":[["mapped/Actinomycin_A.yaml","Actinomycin A"]]},{"id":"CHEBI:15399","l":"(+)-carvone","na":1,"nb":1,"a":[["antifungal/carvone.html","(+)-carvone"]],"b":[["mapped/D_-carvone.yaml","D(+)-Carvone"]]},{"id":"CHEBI:156387","l":"aspyrone","na":1,"nb":1,"a":[["antibacterial/aspyrone.html","aspyrone"]],"b":[["mapped/4-hydroxyphenyl_Acetic_Acid.yaml","4-Hydroxyphenyl acetic acid"]]},{"id":"CHEBI:156421","l":"","na":1,"nb":1,"a":[["antibacterial/celesticetin.html","celesticetin"]],"b":[["mapped/Celesticetin.yaml","Celesticetin"]]},{"id":"CHEBI:156450","l":"thiolutin","na":1,"nb":1,"a":[["antibacterial/thiolutin.html","thiolutin"]],"b":[["mapped/Thiolutin.yaml","Thiolutin"]]},{"id":"CHEBI:156452","l":"aureothricin","na":1,"nb":1,"a":[["antibacterial/aureothricin.html","aureothricin"]],"b":[["mapped/Aureothricin.yaml","Aureothricin"]]},{"id":"CHEBI:156550","l":"pyrrolomycin A","na":1,"nb":1,"a":[["antibacterial/pyrrolomycin-a.html","pyrrolomycin A"]],"b":[["mapped/Pyrrolomycin_A.yaml","Pyrrolomycin A"]]},{"id":"CHEBI:157175","l":"enoxacin","na":1,"nb":1,"a":[["antibacterial/enoxacin.html","enoxacin"]],"b":[["mapped/Enoxacin.yaml","Enoxacin"]]},{"id":"CHEBI:15756","l":"palmitic acid","na":1,"nb":1,"a":[["antibacterial/palmitic-acid.html","palmitic acid"]],"b":[["mapped/Palmitic_Acid.yaml","Palmitic acid"]]},{"id":"CHEBI:157683","l":"althiomycin","na":1,"nb":1,"a":[["antibacterial/althiomycin.html","althiomycin"]],"b":[["mapped/Althiomycin.yaml","Althiomycin"]]},{"id":"CHEBI:15782","l":"viomycin","na":1,"nb":1,"a":[["antimycobacterial/viomycin.html","viomycin"]],"b":[["mapped/Viomycin.yaml","Viomycin"]]},{"id":"CHEBI:15837","l":"isoamylol","na":1,"nb":1,"a":[["antifungal/isoamylol.html","isoamylol"]],"b":[["mapped/3-methyl-1-butanol.yaml","3-methyl-1-butanol"]]},{"id":"CHEBI:15882","l":"phenol","na":1,"nb":1,"a":[["biocide/phenol.html","phenol"]],"b":[["mapped/Phenol.yaml","Phenol"]]},{"id":"CHEBI:16016","l":"dihydroxyacetone","na":1,"nb":1,"a":[["antifungal/dihydroxyacetone.html","dihydroxyacetone"]],"b":[["mapped/Dihydroxyacetone.yaml","Dihydroxyacetone"]]},{"id":"CHEBI:16118","l":"berberine","na":1,"nb":1,"a":[["antifungal/berberine.html","berberine"]],"b":[["mapped/Berberine.yaml","Berberine"]]},{"id":"CHEBI:161680","l":"aztreonam","na":1,"nb":1,"a":[["antibacterial/aztreonam.html","aztreonam"]],"b":[["mapped/Aztreonam.yaml","Aztreonam"]]},{"id":"CHEBI:16196","l":"oleic acid","na":1,"nb":1,"a":[["antibacterial/oleic-acid.html","oleic acid"]],"b":[["mapped/Oleic_Acid.yaml","Oleic acid"]]},{"id":"CHEBI:16236","l":"ethanol","na":1,"nb":1,"a":[["biocide/ethanol.html","ethanol"]],"b":[["mapped/Ethanol.yaml","Ethanol"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":1,"nb":1,"a":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]],"b":[["mapped/Hydrogen_Peroxide.yaml","Hydrogen peroxide"]]},{"id":"CHEBI:16243","l":"quercetin","na":1,"nb":1,"a":[["antibacterial/quercetin.html","quercetin"]],"b":[["mapped/Quercetin.yaml","Quercetin"]]},{"id":"CHEBI:16247","l":"","na":1,"nb":1,"a":[["antifungal/miltefosine.html","miltefosine"]],"b":[["mapped/Bacto_Soytone.yaml","Bacto Soytone"]]},{"id":"CHEBI:164200","l":"triclosan","na":1,"nb":1,"a":[["antibacterial/triclosan.html","triclosan"]],"b":[["mapped/Irgasan.yaml","Irgasan"]]},{"id":"CHEBI:16547","l":"coniferyl aldehyde","na":1,"nb":1,"a":[["antifungal/coniferyl-aldehyde.html","coniferyl aldehyde"]],"b":[["mapped/Coniferyl_Aldehyde.yaml","coniferyl aldehyde"]]},{"id":"CHEBI:16619","l":"(2-trans,6-trans)-farnesol","na":1,"nb":1,"a":[["unspecified/2-trans-6-trans-farnesol.html","(2-trans,6-trans)-farnesol"]],"b":[["mapped/TransTrans-Farnesol.yaml","Trans,Trans-Farnesol"]]},{"id":"CHEBI:166872","l":"nucleocidin","na":1,"nb":1,"a":[["antibacterial/nucleocidin.html","nucleocidin"]],"b":[["mapped/Nucleocidin.yaml","Nucleocidin"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":1,"nb":1,"a":[["biocide/formaldehyde.html","formaldehyde"]],"b":[["mapped/Formaldehyde.yaml","Formaldehyde"]]},{"id":"CHEBI:16869","l":"oleandomycin","na":1,"nb":1,"a":[["antibacterial/oleandomycin.html","oleandomycin"]],"b":[["mapped/Oleandomycin.yaml","Oleandomycin"]]},{"id":"CHEBI:16914","l":"salicylic acid","na":1,"nb":1,"a":[["antifungal/salicylic-acid.html","salicylic acid"]],"b":[["mapped/Salicylic_Acid.yaml","Salicylic acid"]]},{"id":"CHEBI:16976","l":"hygromycin B","na":1,"nb":1,"a":[["antibacterial/hygromycin-b.html","hygromycin B"]],"b":[["mapped/Hygromycin_B.yaml","Hygromycin B"]]},{"id":"CHEBI:17043","l":"biphenyl-2-ol","na":1,"nb":1,"a":[["antifungal/biphenyl-2-ol.html","biphenyl-2-ol"]],"b":[["mapped/11-Biphenyl-2-ol.yaml","[1,1′-Biphenyl]-2-ol"]]},{"id":"CHEBI:17076","l":"streptomycin","na":1,"nb":1,"a":[["antibacterial/streptomycin.html","streptomycin"]],"b":[["mapped/Streptomycin.yaml","Streptomycin"]]},{"id":"CHEBI:17097","l":"biphenyl","na":1,"nb":1,"a":[["antifungal/biphenyl.html","biphenyl"]],"b":[["mapped/Biphenyl.yaml","Biphenyl"]]},{"id":"CHEBI:171741","l":"cerulenin","na":1,"nb":1,"a":[["antifungal/cerulenin.html","cerulenin"]],"b":[["mapped/Cerulenin.yaml","Cerulenin"]]},{"id":"CHEBI:17484","l":"benzyl isothiocyanate","na":1,"nb":1,"a":[["antibacterial/benzyl-isothiocyanate.html","benzyl isothiocyanate"]],"b":[["mapped/Benzyl_Isothiocyanate.yaml","Benzyl isothiocyanate"]]},{"id":"CHEBI:17642","l":"pentachlorophenol","na":1,"nb":1,"a":[["antifungal/pentachlorophenol.html","pentachlorophenol"]],"b":[["mapped/Pentachlorophenol.yaml","Pentachlorophenol"]]},{"id":"CHEBI:17698","l":"chloramphenicol","na":1,"nb":1,"a":[["antibacterial/chloramphenicol.html","chloramphenicol"]],"b":[["mapped/Chloramphenicol.yaml","Chloramphenicol"]]},{"id":"CHEBI:17833","l":"","na":1,"nb":1,"a":[["antibacterial/gentamycin-a.html","gentamycin A"]],"b":[["mapped/Gentamicin.yaml","Gentamicin"]]},{"id":"CHEBI:17847","l":"p-cresol","na":1,"nb":1,"a":[["antifungal/p-cresol.html","p-cresol"]],"b":[["mapped/4-Cresol.yaml","4-Cresol"]]},{"id":"CHEBI:17939","l":"puromycin","na":1,"nb":1,"a":[["antibacterial/puromycin.html","puromycin"]],"b":[["mapped/Puromycin.yaml","Puromycin"]]},{"id":"CHEBI:18145","l":"(R,R,R)-α-tocopherol","na":1,"nb":1,"a":[["antiviral/r-r-r-%CE%B1-tocopherol.html","(R,R,R)-α-tocopherol"]],"b":[["mapped/Alpha-Tocopherol.yaml","alpha-Tocopherol"]]},{"id":"CHEBI:193161","l":"isovanillin","na":1,"nb":1,"a":[["antifungal/isovanillin.html","isovanillin"]],"b":[["mapped/Isovanillin.yaml","Isovanillin"]]},{"id":"CHEBI:197511","l":"","na":1,"nb":1,"a":[["antiviral/docosan-1-ol.html","docosan-1-ol"]],"b":[["mapped/Docosanol.yaml","Docosanol"]]},{"id":"CHEBI:201898","l":"Magainin I","na":1,"nb":1,"a":[["antibacterial/magainin-1.html","magainin 1"]],"b":[["mapped/Magainin_I.yaml","Magainin I"]]},{"id":"CHEBI:204928","l":"cefotaxime","na":1,"nb":1,"a":[["antibacterial/cefotaxime.html","cefotaxime"]],"b":[["mapped/Cefotaxime.yaml","Cefotaxime"]]},{"id":"CHEBI:209807","l":"cefoxitin","na":1,"nb":1,"a":[["antibacterial/cefoxitin.html","cefoxitin"]],"b":[["mapped/Cefoxitin.yaml","Cefoxitin"]]},{"id":"CHEBI:220052","l":"Pyrrolomycin B","na":1,"nb":1,"a":[["antibacterial/pyrrolomycin-b.html","pyrrolomycin B"]],"b":[["mapped/Pyrrolomycin_B.yaml","Pyrrolomycin B"]]},{"id":"CHEBI:24536","l":"hexachlorocyclohexane","na":1,"nb":1,"a":[["antibacterial/%CE%B3-hexachlorocyclohexane.html","γ-hexachlorocyclohexane"]],"b":[["mapped/Hexachlorocyclo-hexane.yaml","Hexachlorocyclo-hexane"]]},{"id":"CHEBI:24750","l":"","na":1,"nb":1,"a":[["unspecified/5-hydroxystreptomycin.html","5'-hydroxystreptomycin"]],"b":[["mapped/Hydroxystreptomycin.yaml","Hydroxystreptomycin"]]},{"id":"CHEBI:2596","l":"alliin","na":1,"nb":1,"a":[["unspecified/alliin.html","alliin"]],"b":[["mapped/L-alliin.yaml","L-alliin"]]},{"id":"CHEBI:2637","l":"amikacin","na":1,"nb":1,"a":[["antibacterial/amikacin.html","amikacin"]],"b":[["mapped/Amikacin.yaml","Amikacin"]]},{"id":"CHEBI:2638","l":"amikacin disulfate","na":1,"nb":1,"a":[["antibacterial/amikacin-disulfate.html","amikacin disulfate"]],"b":[["mapped/Amikacin_Disulfate_Salt.yaml","Amikacin disulfate salt"]]},{"id":"CHEBI:2676","l":"amoxicillin","na":1,"nb":1,"a":[["antibacterial/amoxicillin.html","amoxicillin"]],"b":[["mapped/Amoxicillin.yaml","Amoxicillin"]]},{"id":"CHEBI:27446","l":"phenoxymethylpenicillin","na":1,"nb":1,"a":[["antibacterial/phenoxymethylpenicillin.html","phenoxymethylpenicillin"]],"b":[["mapped/Phenoxymethylpenicillin.yaml","Phenoxymethylpenicillin"]]},{"id":"CHEBI:27565","l":"4-aminosalicylic acid","na":1,"nb":1,"a":[["antimycobacterial/4-aminosalicylic-acid.html","4-aminosalicylic acid"]],"b":[["mapped/Para-aminosalicylic_Acid.yaml","para-aminosalicylic acid"]]},{"id":"CHEBI:27617","l":"monensin A","na":1,"nb":1,"a":[["antifungal/monensin-a.html","monensin A"]],"b":[["mapped/Monensin.yaml","Monensin"]]},{"id":"CHEBI:2762","l":"antimycin A","na":1,"nb":1,"a":[["antifungal/antimycin-a.html","antimycin A"]],"b":[["mapped/Antimycin_A.yaml","Antimycin A"]]},{"id":"CHEBI:27641","l":"cycloheximide","na":1,"nb":1,"a":[["antifungal/cycloheximide.html","cycloheximide"]],"b":[["mapped/Cycloheximid.yaml","Cycloheximid"]]},{"id":"CHEBI:27644","l":"chlortetracycline","na":1,"nb":1,"a":[["antibacterial/chlortetracycline.html","chlortetracycline"]],"b":[["mapped/Chlortetracycline.yaml","Chlortetracycline"]]},{"id":"CHEBI:2766","l":"aphidicolin","na":1,"nb":1,"a":[["antiviral/aphidicolin.html","aphidicolin"]],"b":[["mapped/Aphidicolin.yaml","Aphidicolin"]]},{"id":"CHEBI:27666","l":"actinomycin D","na":1,"nb":1,"a":[["antibacterial/actinomycin-d.html","actinomycin D"]],"b":[["mapped/Actinomycin_D.yaml","Actinomycin D"]]},{"id":"CHEBI:27701","l":"oxytetracycline","na":1,"nb":1,"a":[["antibacterial/oxytetracycline.html","oxytetracycline"]],"b":[["mapped/Oxytetracycline.yaml","Oxytetracycline"]]},{"id":"CHEBI:278547","l":"sodium azide","na":1,"nb":1,"a":[["antibacterial/sodium-azide.html","sodium azide"]],"b":[["mapped/Sodium_Azide.yaml","Sodium azide"]]},{"id":"CHEBI:27856","l":"","na":1,"nb":1,"a":[["unspecified/acetylblasticidin-s.html","acetylblasticidin S"]],"b":[["mapped/Acetamide.yaml","Acetamide"]]},{"id":"CHEBI:27864","l":"2,6-dichloro-4-nitroaniline","na":1,"nb":1,"a":[["antifungal/2-6-dichloro-4-nitroaniline.html","2,6-dichloro-4-nitroaniline"]],"b":[["mapped/Dichloran_02_in_ethanol.yaml","Dichloran (0.2% in ethanol)"]]},{"id":"CHEBI:2790","l":"apramycin","na":1,"nb":1,"a":[["antibacterial/apramycin.html","apramycin"]],"b":[["mapped/Apramycin.yaml","Apramycin"]]},{"id":"CHEBI:27902","l":"tetracycline","na":1,"nb":1,"a":[["antibacterial/tetracycline.html","tetracycline"]],"b":[["mapped/Tetracycline.yaml","Tetracycline"]]},{"id":"CHEBI:27949","l":"(E)-sinapaldehyde","na":1,"nb":1,"a":[["antifungal/e-sinapaldehyde.html","(E)-sinapaldehyde"]],"b":[["mapped/Sinapinaldehyde.yaml","sinapinaldehyde"]]},{"id":"CHEBI:27965","l":"conessine","na":1,"nb":1,"a":[["antibacterial/conessine.html","conessine"]],"b":[["mapped/Conessine.yaml","Conessine"]]},{"id":"CHEBI:28001","l":"vancomycin","na":1,"nb":1,"a":[["antibacterial/vancomycin.html","vancomycin"]],"b":[["mapped/Vancomycin.yaml","Vancomycin"]]},{"id":"CHEBI:28077","l":"rifampicin","na":1,"nb":1,"a":[["antimycobacterial/rifampicin.html","rifampicin"]],"b":[["mapped/Rifampicin.yaml","Rifampicin"]]},{"id":"CHEBI:28121","l":"harmine","na":1,"nb":1,"a":[["antiviral/harmine.html","harmine"]],"b":[["mapped/Harmine.yaml","Harmine"]]},{"id":"CHEBI:28196","l":"erythromycin B","na":1,"nb":1,"a":[["unspecified/erythromycin-b.html","erythromycin B"]],"b":[["mapped/Erythromycin_B.yaml","Erythromycin B"]]},{"id":"CHEBI:28368","l":"novobiocin","na":1,"nb":1,"a":[["antibacterial/novobiocin.html","novobiocin"]],"b":[["mapped/Novobiocin.yaml","Novobiocin"]]},{"id":"CHEBI:28460","l":"maltotetraose","na":1,"nb":1,"a":[["antibacterial/maltotetraose.html","maltotetraose"]],"b":[["mapped/Maltotetraose.yaml","Maltotetraose"]]},{"id":"CHEBI:28591","l":"guaiacol","na":1,"nb":1,"a":[["biocide/guaiacol.html","guaiacol"]],"b":[["mapped/Guaiacol.yaml","Guaiacol"]]},{"id":"CHEBI:28631","l":"3-phenylpropionic acid","na":1,"nb":1,"a":[["antifungal/3-phenylpropionic-acid.html","3-phenylpropionic acid"]],"b":[["mapped/Phenyl_Propionic_Acid.yaml","Phenyl propionic acid"]]},{"id":"CHEBI:28748","l":"doxorubicin","na":1,"nb":1,"a":[["unspecified/doxorubicin.html","doxorubicin"]],"b":[["mapped/Doxorubicin.yaml","Doxorubicin"]]},{"id":"CHEBI:28837","l":"octanoic acid","na":1,"nb":1,"a":[["antibacterial/octanoic-acid.html","octanoic acid"]],"b":[["mapped/Octanoic_Acid.yaml","Octanoic acid"]]},{"id":"CHEBI:28864","l":"tobramycin","na":1,"nb":1,"a":[["antibacterial/tobramycin.html","tobramycin"]],"b":[["mapped/Tobramycin.yaml","Tobramycin"]]},{"id":"CHEBI:28908","l":"bambermycin","na":1,"nb":1,"a":[["unspecified/bambermycin.html","bambermycin"]],"b":[["mapped/Flavomycin.yaml","Flavomycin"]]},{"id":"CHEBI:28915","l":"fosfomycin","na":1,"nb":1,"a":[["antibacterial/fosfomycin.html","fosfomycin"]],"b":[["mapped/Fosfomycin.yaml","Fosfomycin"]]},{"id":"CHEBI:28948","l":"gramine","na":1,"nb":1,"a":[["antibacterial/gramine.html","gramine"]],"b":[["mapped/Gramine.yaml","Gramine"]]},{"id":"CHEBI:28971","l":"ampicillin","na":1,"nb":1,"a":[["antibacterial/ampicillin.html","ampicillin"]],"b":[["mapped/Ampicillin.yaml","Ampicillin"]]},{"id":"CHEBI:29007","l":"ceftriaxone","na":1,"nb":1,"a":[["antibacterial/ceftriaxone.html","ceftriaxone"]],"b":[["mapped/Ceftriaxone.yaml","Ceftriaxone"]]},{"id":"CHEBI:29013","l":"fusidic acid","na":1,"nb":1,"a":[["antibacterial/fusidic-acid.html","fusidic acid"]],"b":[["mapped/Fusidic_Acid_Sodium_Salt.yaml","Fusidic acid sodium salt"]]},{"id":"CHEBI:2955","l":"azithromycin","na":1,"nb":1,"a":[["antibacterial/azithromycin.html","azithromycin"]],"b":[["mapped/Azithromycin.yaml","Azithromycin"]]},{"id":"CHEBI:2956","l":"azlocillin","na":1,"nb":1,"a":[["antibacterial/azlocillin.html","azlocillin"]],"b":[["mapped/Azlocillin.yaml","azlocillin"]]},{"id":"CHEBI:29582","l":"ascomycin","na":1,"nb":1,"a":[["antifungal/ascomycin.html","ascomycin"]],"b":[["mapped/Ascomycin.yaml","Ascomycin"]]},{"id":"CHEBI:29649","l":"narbomycin","na":1,"nb":1,"a":[["antibacterial/narbomycin.html","narbomycin"]],"b":[["mapped/Narbomycin.yaml","Narbomycin"]]},{"id":"CHEBI:29670","l":"Ramoplanin","na":1,"nb":1,"a":[["antibacterial/ramoplanin.html","ramoplanin"]],"b":[["mapped/Ramoplanin.yaml","Ramoplanin"]]},{"id":"CHEBI:29673","l":"rifamycin SV","na":1,"nb":1,"a":[["antimycobacterial/rifamycin-sv.html","rifamycin SV"]],"b":[["mapped/Rifamycin_Sv.yaml","Rifamycin Sv"]]},{"id":"CHEBI:29678","l":"sodium arsenite","na":1,"nb":1,"a":[["antibacterial/sodium-arsenite.html","sodium arsenite"]],"b":[["mapped/Sodium_M-arsenite.yaml","Sodium m-arsenite"]]},{"id":"CHEBI:29687","l":"","na":1,"nb":1,"a":[["antibacterial/teicoplanin.html","teicoplanin"]],"b":[["mapped/Teicoplanin.yaml","Teicoplanin"]]},{"id":"CHEBI:29693","l":"thiostrepton","na":1,"nb":1,"a":[["antibacterial/thiostrepton.html","thiostrepton"]],"b":[["mapped/Thiostrepton.yaml","Thiostrepton"]]},{"id":"CHEBI:29699","l":"","na":1,"nb":1,"a":[["antibacterial/tunicamycin.html","tunicamycin"]],"b":[["mapped/Tunicamycin.yaml","Tunicamycin"]]},{"id":"CHEBI:2979","l":"baicalein","na":1,"nb":1,"a":[["antibacterial/baicalein.html","baicalein"]],"b":[["mapped/Baicalein.yaml","Baicalein"]]},{"id":"CHEBI:3020","l":"","na":1,"nb":1,"a":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"]],"b":[["mapped/Benzalkonium_Chloride.yaml","Benzalkonium Chloride"]]},{"id":"CHEBI:30751","l":"formic acid","na":1,"nb":1,"a":[["antibacterial/formic-acid.html","formic acid"]],"b":[["mapped/Formic_Acid.yaml","Formic acid"]]},{"id":"CHEBI:30768","l":"propionic acid","na":1,"nb":1,"a":[["antifungal/propionic-acid.html","propionic acid"]],"b":[["mapped/Propionic_Acid.yaml","Propionic acid"]]},{"id":"CHEBI:30805","l":"dodecanoic acid","na":1,"nb":1,"a":[["antibacterial/dodecanoic-acid.html","dodecanoic acid"]],"b":[["mapped/Lauric_Acid.yaml","Lauric acid"]]},{"id":"CHEBI:30813","l":"decanoic acid","na":1,"nb":1,"a":[["antibacterial/decanoic-acid.html","decanoic acid"]],"b":[["mapped/Decanoic_Acid.yaml","Decanoic acid"]]},{"id":"CHEBI:31168","l":"spiramycin II","na":1,"nb":1,"a":[["antibacterial/spiramycin-ii.html","spiramycin II"]],"b":[["mapped/Spiramycin_II.yaml","Spiramycin II"]]},{"id":"CHEBI:31264","l":"benzethonium chloride","na":1,"nb":1,"a":[["antibacterial/benzethonium-chloride.html","benzethonium chloride"]],"b":[["mapped/Benzethonium_Chloride.yaml","Benzethonium chloride"]]},{"id":"CHEBI:31359","l":"carminomycin","na":1,"nb":1,"a":[["unspecified/carminomycin.html","carminomycin"]],"b":[["mapped/Carminomycin.yaml","Carminomycin"]]},{"id":"CHEBI:31810","l":"fleroxacin","na":1,"nb":1,"a":[["antibacterial/fleroxacin.html","fleroxacin"]],"b":[["mapped/Fleroxacin.yaml","Fleroxacin"]]},{"id":"CHEBI:31845","l":"Midecamycin","na":1,"nb":1,"a":[["antibacterial/midecamycin.html","midecamycin"]],"b":[["mapped/Midecamycin.yaml","Midecamycin"]]},{"id":"CHEBI:31908","l":"Niddamycin","na":1,"nb":1,"a":[["antibacterial/niddamycin.html","niddamycin"]],"b":[["mapped/Niddamycin.yaml","Niddamycin"]]},{"id":"CHEBI:32146","l":"sodium hypochlorite","na":1,"nb":1,"a":[["biocide/sodium-hypochlorite.html","sodium hypochlorite"]],"b":[["mapped/Sodium_Hypochlorite.yaml","Sodium hypochlorite"]]},{"id":"CHEBI:32161","l":"sulfadimethoxine","na":1,"nb":1,"a":[["unspecified/sulfadimethoxine.html","sulfadimethoxine"]],"b":[["mapped/Sulfadimethoxine.yaml","Sulfadimethoxine"]]},{"id":"CHEBI:3259","l":"CCCP","na":1,"nb":1,"a":[["antibacterial/cccp.html","CCCP"]],"b":[["mapped/CCCP.yaml","CCCP"]]},{"id":"CHEBI:327119","l":"azetidin-2-one","na":1,"nb":1,"a":[["unspecified/azetidin-2-one.html","azetidin-2-one"]],"b":[["mapped/2-Azetidinone.yaml","2-Azetidinone"]]},{"id":"CHEBI:32800","l":"(S)-mandelic acid","na":1,"nb":1,"a":[["antibacterial/s-mandelic-acid.html","(S)-mandelic acid"]],"b":[["mapped/%28S%29-mandelic_Acid.yaml","(S)-mandelic Acid"]]},{"id":"CHEBI:338412","l":"(-)-anisomycin","na":1,"nb":1,"a":[["antiviral/anisomycin.html","(−)-anisomycin"]],"b":[["mapped/%28-%29-anisomycin.yaml","(-)-anisomycin"]]},{"id":"CHEBI:3393","l":"carbenicillin","na":1,"nb":1,"a":[["antibacterial/carbenicillin.html","carbenicillin"]],"b":[["mapped/Carbenicillin.yaml","Carbenicillin"]]},{"id":"CHEBI:34730","l":"doxycycline hyclate","na":1,"nb":1,"a":[["antibacterial/doxycycline-hyclate.html","doxycycline hyclate"]],"b":[["mapped/Doxycycline_Hyclate.yaml","Doxycycline hyclate"]]},{"id":"CHEBI:3478","l":"cefaclor","na":1,"nb":1,"a":[["antibacterial/cefaclor.html","cefaclor"]],"b":[["mapped/Cefaclor.yaml","Cefaclor"]]},{"id":"CHEBI:3479","l":"cefadroxil","na":1,"nb":1,"a":[["antibacterial/cefadroxil.html","cefadroxil"]],"b":[["mapped/Cefadroxil.yaml","Cefadroxil"]]},{"id":"CHEBI:3480","l":"cefamandole","na":1,"nb":1,"a":[["antibacterial/cefamandole.html","cefamandole"]],"b":[["mapped/Cefamandole.yaml","Cefamandole"]]},{"id":"CHEBI:3489","l":"cefmetazole","na":1,"nb":1,"a":[["antibacterial/cefmetazole.html","cefmetazole"]],"b":[["mapped/Cefmetazole.yaml","Cefmetazole"]]},{"id":"CHEBI:3493","l":"cefoperazone","na":1,"nb":1,"a":[["antibacterial/cefoperazone.html","cefoperazone"]],"b":[["mapped/Cefoperazone.yaml","Cefoperazone"]]},{"id":"CHEBI:3499","l":"cefotetan","na":1,"nb":1,"a":[["antibacterial/cefotetan.html","cefotetan"]],"b":[["mapped/Cefotetan.yaml","Cefotetan"]]},{"id":"CHEBI:3504","l":"cefpodoxime","na":1,"nb":1,"a":[["antibacterial/cefpodoxime.html","cefpodoxime"]],"b":[["mapped/Cefpodoxime.yaml","Cefpodoxime"]]},{"id":"CHEBI:3506","l":"cefprozil","na":1,"nb":1,"a":[["antibacterial/cefprozil.html","cefprozil"]],"b":[["mapped/Cefprozil.yaml","Cefprozil"]]},{"id":"CHEBI:3515","l":"cefuroxime","na":1,"nb":1,"a":[["antibacterial/cefuroxime.html","cefuroxime"]],"b":[["mapped/Cefuroxime.yaml","Cefuroxime"]]},{"id":"CHEBI:3534","l":"cephalexin","na":1,"nb":1,"a":[["antibacterial/cephalexin.html","cephalexin"]],"b":[["mapped/Cephalexin.yaml","Cephalexin"]]},{"id":"CHEBI:3537","l":"cefaloridine","na":1,"nb":1,"a":[["antibacterial/cefaloridine.html","cefaloridine"]],"b":[["mapped/Cefaloridine.yaml","Cefaloridine"]]},{"id":"CHEBI:3547","l":"cephradine","na":1,"nb":1,"a":[["antibacterial/cephradine.html","cephradine"]],"b":[["mapped/Cephradine.yaml","Cephradine"]]},{"id":"CHEBI:355510","l":"cefotiam","na":1,"nb":1,"a":[["antibacterial/cefotiam.html","cefotiam"]],"b":[["mapped/Cefotiam.yaml","Cefotiam"]]},{"id":"CHEBI:35720","l":"enrofloxacin","na":1,"nb":1,"a":[["antibacterial/enrofloxacin.html","enrofloxacin"]],"b":[["mapped/Enrofloxacin.yaml","Enrofloxacin"]]},{"id":"CHEBI:36336","l":"","na":1,"nb":1,"a":[["antiprotozoal/suramin.html","suramin"]],"b":[["mapped/Naphthalene_Sulfonic_Acid.yaml","Naphthalene sulfonic acid"]]},{"id":"CHEBI:3649","l":"chlorpromazine hydrochloride","na":1,"nb":1,"a":[["antiviral/chlorpromazine-hydrochloride.html","chlorpromazine hydrochloride"]],"b":[["mapped/Chlorpromazine_Hydrochloride.yaml","Chlorpromazine hydrochloride"]]},{"id":"CHEBI:3687","l":"chrysophanol","na":1,"nb":1,"a":[["antiviral/chrysophanol.html","chrysophanol"]],"b":[["mapped/Chrysophanol.yaml","Chrysophanol"]]},{"id":"CHEBI:3716","l":"cinoxacin","na":1,"nb":1,"a":[["antibacterial/cinoxacin.html","cinoxacin"]],"b":[["mapped/Cinoxacin.yaml","Cinoxacin"]]},{"id":"CHEBI:3732","l":"clarithromycin","na":1,"nb":1,"a":[["antibacterial/clarithromycin.html","clarithromycin"]],"b":[["mapped/Clarithromycin.yaml","Clarithromycin"]]},{"id":"CHEBI:3745","l":"clindamycin","na":1,"nb":1,"a":[["antibacterial/clindamycin.html","clindamycin"]],"b":[["mapped/Clindamycin.yaml","Clindamycin"]]},{"id":"CHEBI:3749","l":"clofazimine","na":1,"nb":1,"a":[["antimycobacterial/clofazimine.html","clofazimine"]],"b":[["mapped/Clofazimine.yaml","Clofazimine"]]},{"id":"CHEBI:3764","l":"clotrimazole","na":1,"nb":1,"a":[["antifungal/clotrimazole.html","clotrimazole"]],"b":[["mapped/Clotrimazole.yaml","Clotrimazole"]]},{"id":"CHEBI:37868","l":"octanol","na":1,"nb":1,"a":[["antifungal/octan-1-ol.html","octan-1-ol"]],"b":[["mapped/Octanol.yaml","octanol"]]},{"id":"CHEBI:37923","l":"astromicin","na":1,"nb":1,"a":[["antibacterial/astromicin.html","astromicin"]],"b":[["mapped/Astromicin.yaml","Astromicin"]]},{"id":"CHEBI:38167","l":"physcion","na":1,"nb":1,"a":[["antibacterial/physcion.html","physcion"]],"b":[["mapped/Physcion.yaml","Physcion"]]},{"id":"CHEBI:38291","l":"dihydrostreptomycin","na":1,"nb":1,"a":[["unspecified/dihydrostreptomycin.html","dihydrostreptomycin"]],"b":[["mapped/Dihydrostreptomycin.yaml","Dihydrostreptomycin"]]},{"id":"CHEBI:3962","l":"curcumin","na":1,"nb":1,"a":[["antifungal/curcumin.html","curcumin"]],"b":[["mapped/Curcumin.yaml","Curcumin"]]},{"id":"CHEBI:40009","l":"D-cycloserine","na":1,"nb":1,"a":[["antimycobacterial/d-cycloserine.html","D-cycloserine"]],"b":[["mapped/D-Cycloserine.yaml","D-Cycloserine"]]},{"id":"CHEBI:404903","l":"ertapenem","na":1,"nb":1,"a":[["antibacterial/ertapenem.html","ertapenem"]],"b":[["mapped/Ertapenem.yaml","Ertapenem"]]},{"id":"CHEBI:41688","l":"crystal violet","na":1,"nb":1,"a":[["antibacterial/crystal-violet.html","crystal violet"]],"b":[["mapped/Crystal_Violet.yaml","Crystal Violet"]]},{"id":"CHEBI:41977","l":"daunorubicin","na":1,"nb":1,"a":[["unspecified/daunorubicin.html","daunorubicin"]],"b":[["mapped/Daunorubicin.yaml","Daunorubicin"]]},{"id":"CHEBI:42355","l":"erythromycin A","na":1,"nb":1,"a":[["antibacterial/erythromycin-a.html","erythromycin A"]],"b":[["mapped/Erythromycin_A.yaml","Erythromycin A"]]},{"id":"CHEBI:42768","l":"geneticin","na":1,"nb":1,"a":[["antiprotozoal/geneticin.html","geneticin"]],"b":[["mapped/Geneticin_G418.yaml","Geneticin G418"]]},{"id":"CHEBI:43968","l":"meropenem","na":1,"nb":1,"a":[["antibacterial/meropenem.html","meropenem"]],"b":[["mapped/Meropenem.yaml","Meropenem"]]},{"id":"CHEBI:44137","l":"tiamulin","na":1,"nb":1,"a":[["antibacterial/tiamulin.html","tiamulin"]],"b":[["mapped/Tiamulin.yaml","Tiamulin"]]},{"id":"CHEBI:44368","l":"nitrofurazone","na":1,"nb":1,"a":[["antibacterial/nitrofurazone.html","nitrofurazone"]],"b":[["mapped/Nitrofurazone.yaml","Nitrofurazone"]]},{"id":"CHEBI:44401","l":"lawsone","na":1,"nb":1,"a":[["antifungal/lawsone.html","lawsone"]],"b":[["mapped/Lawsone.yaml","Lawsone"]]},{"id":"CHEBI:44504","l":"nogalamycin","na":1,"nb":1,"a":[["unspecified/nogalamycin.html","nogalamycin"]],"b":[["mapped/Nogalamycin.yaml","Nogalamycin"]]},{"id":"CHEBI:45367","l":"rifabutin","na":1,"nb":1,"a":[["antibacterial/rifabutin.html","rifabutin"]],"b":[["mapped/Rifabutin.yaml","Rifabutin"]]},{"id":"CHEBI:45373","l":"sulfanilamide","na":1,"nb":1,"a":[["antibacterial/sulfanilamide.html","sulfanilamide"]],"b":[["mapped/Sulfanilamide.yaml","Sulfanilamide"]]},{"id":"CHEBI:45395","l":"pyrithiamine pyrophosphate","na":1,"nb":1,"a":[["unspecified/pyrithiamine-pyrophosphate.html","pyrithiamine pyrophosphate"]],"b":[["mapped/Thiamine_pyrophosphate.yaml","Thiamine pyrophosphate"]]},{"id":"CHEBI:45735","l":"troleandomycin","na":1,"nb":1,"a":[["unspecified/troleandomycin.html","troleandomycin"]],"b":[["mapped/Troleandomycin.yaml","Troleandomycin"]]},{"id":"CHEBI:45773","l":"streptolydigin","na":1,"nb":1,"a":[["unspecified/streptolydigin.html","streptolydigin"]],"b":[["mapped/Streptolydigin.yaml","Streptolydigin"]]},{"id":"CHEBI:45924","l":"trimethoprim","na":1,"nb":1,"a":[["antibacterial/trimethoprim.html","trimethoprim"]],"b":[["mapped/Trimethoprim.yaml","Trimethoprim"]]},{"id":"CHEBI:4629","l":"diosgenin","na":1,"nb":1,"a":[["antiviral/diosgenin.html","diosgenin"]],"b":[["mapped/Diosgenin.yaml","Diosgenin"]]},{"id":"CHEBI:46345","l":"5-fluorouracil","na":1,"nb":1,"a":[["antifungal/5-fluorouracil.html","5-Fluorouracil"]],"b":[["mapped/5-fluorouracil.yaml","5-fluorouracil"]]},{"id":"CHEBI:46742","l":"Nutlin-3","na":1,"nb":1,"a":[["antiviral/nutlin-3.html","Nutlin-3"]],"b":[["mapped/Trypticase-glucose-yeast_Extract.yaml","Trypticase-glucose-yeast Extract"]]},{"id":"CHEBI:471744","l":"imipenem","na":1,"nb":1,"a":[["antibacterial/imipenem.html","imipenem"]],"b":[["mapped/Imipenem.yaml","Imipenem"]]},{"id":"CHEBI:472657","l":"cefixime","na":1,"nb":1,"a":[["antibacterial/cefixime.html","cefixime"]],"b":[["mapped/Cefixime.yaml","Cefixime"]]},{"id":"CHEBI:474053","l":"cefazolin","na":1,"nb":1,"a":[["antibacterial/cefazolin.html","cefazolin"]],"b":[["mapped/Cefazolin.yaml","Cefazolin"]]},{"id":"CHEBI:478164","l":"cefepime","na":1,"nb":1,"a":[["antibacterial/cefepime.html","cefepime"]],"b":[["mapped/Cefepime.yaml","Cefepime"]]},{"id":"CHEBI:48131","l":"nonanedioic acid","na":1,"nb":1,"a":[["antibacterial/nonanedioic-acid.html","nonanedioic acid"]],"b":[["mapped/Azelaic_Acid.yaml","Azelaic acid"]]},{"id":"CHEBI:48267","l":"tubercidin","na":1,"nb":1,"a":[["antifungal/tubercidin.html","tubercidin"]],"b":[["mapped/Tubercidin.yaml","Tubercidin"]]},{"id":"CHEBI:4877","l":"ethambutol","na":1,"nb":1,"a":[["antimycobacterial/ethambutol.html","ethambutol"]],"b":[["mapped/Ethambutol.yaml","Ethambutol"]]},{"id":"CHEBI:4878","l":"ethambutol dihydrochloride","na":1,"nb":1,"a":[["antimycobacterial/ethambutol-dihydrochloride.html","ethambutol dihydrochloride"]],"b":[["mapped/Ethambutol_Dihydrochloride.yaml","Ethambutol dihydrochloride"]]},{"id":"CHEBI:4883","l":"ethidium bromide","na":1,"nb":1,"a":[["antiprotozoal/ethidium-bromide.html","ethidium bromide"]],"b":[["mapped/Ethidium_Bromide.yaml","Ethidium Bromide"]]},{"id":"CHEBI:4885","l":"ethionamide","na":1,"nb":1,"a":[["antimycobacterial/ethionamide.html","ethionamide"]],"b":[["mapped/Ethionamide.yaml","Ethionamide"]]},{"id":"CHEBI:48947","l":"clavulanic acid","na":1,"nb":1,"a":[["antibacterial/clavulanic-acid.html","clavulanic acid"]],"b":[["mapped/Clavulanic_Acid.yaml","Clavulanic Acid"]]},{"id":"CHEBI:49566","l":"cloxacillin","na":1,"nb":1,"a":[["antibacterial/cloxacillin.html","cloxacillin"]],"b":[["mapped/Cloxacillin.yaml","Cloxacillin"]]},{"id":"CHEBI:50199","l":"pefloxacin","na":1,"nb":1,"a":[["antibacterial/pefloxacin.html","pefloxacin"]],"b":[["mapped/Pefloxacin.yaml","Pefloxacin"]]},{"id":"CHEBI:50694","l":"minocycline","na":1,"nb":1,"a":[["antibacterial/minocycline.html","minocycline"]],"b":[["mapped/Minocycline.yaml","Minocycline"]]},{"id":"CHEBI:50845","l":"doxycycline","na":1,"nb":1,"a":[["antibacterial/doxycycline.html","doxycycline"]],"b":[["mapped/Doxycycline.yaml","Doxycycline"]]},{"id":"CHEBI:5098","l":"flucloxacillin","na":1,"nb":1,"a":[["antibacterial/flucloxacillin.html","flucloxacillin"]],"b":[["mapped/Flucloxacillin.yaml","flucloxacillin"]]},{"id":"CHEBI:51208","l":"mecillinam","na":1,"nb":1,"a":[["antibacterial/mecillinam.html","mecillinam"]],"b":[["mapped/Mecillinam.yaml","Mecillinam"]]},{"id":"CHEBI:5169","l":"fraxetin","na":1,"nb":1,"a":[["antibacterial/fraxetin.html","fraxetin"]],"b":[["mapped/Fraxetin.yaml","Fraxetin"]]},{"id":"CHEBI:51799","l":"imipenem hydrate","na":1,"nb":1,"a":[["antibacterial/imipenem-hydrate.html","imipenem hydrate"]],"b":[["mapped/Impenum_Monohydrate.yaml","Impenum monohydrate"]]},{"id":"CHEBI:5195","l":"furazolidone","na":1,"nb":1,"a":[["antibacterial/furazolidone.html","furazolidone"]],"b":[["mapped/Furazolidone.yaml","Furazolidone"]]},{"id":"CHEBI:51963","l":"","na":1,"nb":1,"a":[["unspecified/bacteriohopane-32-33-34-35-tetrol.html","bacteriohopane-32,33,34,35-tetrol"]],"b":[["mapped/Hopanoid.yaml","Hopanoid"]]},{"id":"CHEBI:53620","l":"methylisothiazolinone","na":1,"nb":1,"a":[["antifungal/methylisothiazolinone.html","methylisothiazolinone"]],"b":[["mapped/2-methyl-4-isothizaolin-3-one.yaml","2-methyl-4-isothizaolin-3-one"]]},{"id":"CHEBI:53727","l":"sulfamethoxydiazine","na":1,"nb":1,"a":[["antimycobacterial/sulfamethoxydiazine.html","sulfamethoxydiazine"]],"b":[["mapped/Sulfamethoxydiazine.yaml","Sulfamethoxydiazine"]]},{"id":"CHEBI:5533","l":"granaticin","na":1,"nb":1,"a":[["unspecified/granaticin.html","granaticin"]],"b":[["mapped/Granaticin.yaml","Granaticin"]]},{"id":"CHEBI:556075","l":"radicicol","na":1,"nb":1,"a":[["antifungal/radicicol.html","radicicol"]],"b":[["mapped/Radicicol.yaml","Radicicol"]]},{"id":"CHEBI:5623","l":"harman","na":1,"nb":1,"a":[["antiviral/harman.html","harman"]],"b":[["mapped/Harmane.yaml","Harmane"]]},{"id":"CHEBI:59936","l":"ciprofloxacin hydrochloride hydrate","na":1,"nb":1,"a":[["antibacterial/ciprofloxacin-hydrochloride-hydrate.html","ciprofloxacin hydrochloride hydrate"]],"b":[["mapped/Ciprofloxacin_Hydrochloride.yaml","Ciprofloxacin Hydrochloride"]]},{"id":"CHEBI:600103","l":"daptomycin","na":1,"nb":1,"a":[["antibacterial/daptomycin.html","daptomycin"]],"b":[["mapped/Daptomycin.yaml","Daptomycin"]]},{"id":"CHEBI:6030","l":"isoniazide","na":1,"nb":1,"a":[["antimycobacterial/isoniazide.html","isoniazide"]],"b":[["mapped/Isoniazid.yaml","Isoniazid"]]},{"id":"CHEBI:60584","l":"bicozamycin","na":1,"nb":1,"a":[["antibacterial/bicozamycin.html","bicozamycin"]],"b":[["mapped/Bicyclomycin.yaml","Bicyclomycin"]]},{"id":"CHEBI:6109","l":"kanamycin A sulfate","na":1,"nb":1,"a":[["antibacterial/kanamycin-a-sulfate.html","kanamycin A sulfate"]],"b":[["mapped/Kanamycin_Sulfate.yaml","Kanamycin sulfate"]]},{"id":"CHEBI:62412","l":"phenazine-1-carboxylic acid","na":1,"nb":1,"a":[["antifungal/phenazine-1-carboxylic-acid.html","phenazine-1-carboxylic acid"]],"b":[["mapped/Phenazine-1-carboxylic_Acid.yaml","Phenazine-1-carboxylic acid"]]},{"id":"CHEBI:63598","l":"levofloxacin","na":1,"nb":1,"a":[["antibacterial/levofloxacin.html","levofloxacin"]],"b":[["mapped/Levofloxacin.yaml","Levofloxacin"]]},{"id":"CHEBI:63607","l":"linezolid","na":1,"nb":1,"a":[["antibacterial/linezolid.html","linezolid"]],"b":[["mapped/Linezolid.yaml","Linezolid"]]},{"id":"CHEBI:63611","l":"moxifloxacin","na":1,"nb":1,"a":[["antibacterial/moxifloxacin.html","moxifloxacin"]],"b":[["mapped/Moxifloxacin.yaml","Moxifloxacin"]]},{"id":"CHEBI:6377","l":"lapachol","na":1,"nb":1,"a":[["antibacterial/lapachol.html","lapachol"]],"b":[["mapped/Lapachol.yaml","Lapachol"]]},{"id":"CHEBI:64276","l":"glutaraldehyde","na":1,"nb":1,"a":[["biocide/glutaraldehyde.html","glutaraldehyde"]],"b":[["mapped/Glutaraldehyde.yaml","Glutaraldehyde"]]},{"id":"CHEBI:6472","l":"lincomycin","na":1,"nb":1,"a":[["antibacterial/lincomycin.html","lincomycin"]],"b":[["mapped/Lincomycin.yaml","Lincomycin"]]},{"id":"CHEBI:6518","l":"lomefloxacin hydrochloride","na":1,"nb":1,"a":[["antimycobacterial/lomefloxacin-hydrochloride.html","lomefloxacin hydrochloride"]],"b":[["mapped/Lomefloxacin_Hydrochloride.yaml","Lomefloxacin hydrochloride"]]},{"id":"CHEBI:65408","l":"andrographolide","na":1,"nb":1,"a":[["antiviral/andrographolide.html","andrographolide"]],"b":[["mapped/Andrographolide.yaml","Andrographolide"]]},{"id":"CHEBI:65585","l":"carnosic acid","na":1,"nb":1,"a":[["antiviral/carnosic-acid.html","carnosic acid"]],"b":[["mapped/Carnosic_Acid.yaml","Carnosic Acid"]]},{"id":"CHEBI:66279","l":"tubelactomicin A","na":1,"nb":1,"a":[["antimycobacterial/tubelactomicin-a.html","tubelactomicin A"]],"b":[["mapped/Tubelactomicin_A.yaml","Tubelactomicin A"]]},{"id":"CHEBI:67121","l":"nitroxoline","na":1,"nb":1,"a":[["antifungal/nitroxoline.html","nitroxoline"]],"b":[["mapped/8-hydroxy-nitroquinoline.yaml","8-hydroxy-nitroquinoline"]]},{"id":"CHEBI:67135","l":"2-nitroimidazole","na":1,"nb":1,"a":[["antimycobacterial/2-nitroimidazole.html","2-nitroimidazole"]],"b":[["mapped/Azomycin.yaml","Azomycin"]]},{"id":"CHEBI:6770","l":"meropenem trihydrate","na":1,"nb":1,"a":[["antibacterial/meropenem-trihydrate.html","meropenem trihydrate"]],"b":[["mapped/Meropenem.yaml","Meropenem"]]},{"id":"CHEBI:6805","l":"methacycline","na":1,"nb":1,"a":[["antibacterial/methacycline.html","methacycline"]],"b":[["mapped/Methacycline.yaml","Methacycline"]]},{"id":"CHEBI:6827","l":"methicillin","na":1,"nb":1,"a":[["antibacterial/methicillin.html","methicillin"]],"b":[["mapped/Methicillin.yaml","Methicillin"]]},{"id":"CHEBI:68590","l":"fidaxomicin","na":1,"nb":1,"a":[["antibacterial/fidaxomicin.html","fidaxomicin"]],"b":[["mapped/Fidaxomicin.yaml","Fidaxomicin"]]},{"id":"CHEBI:6872","l":"methylene blue","na":1,"nb":1,"a":[["antiprotozoal/methylene-blue.html","methylene blue"]],"b":[["mapped/Methylene_Blue.yaml","Methylene blue"]]},{"id":"CHEBI:6909","l":"metronidazole","na":1,"nb":1,"a":[["antibacterial/metronidazole.html","metronidazole"]],"b":[["mapped/Metronidazole.yaml","Metronidazole"]]},{"id":"CHEBI:6919","l":"mezlocillin","na":1,"nb":1,"a":[["antibacterial/mezlocillin.html","mezlocillin"]],"b":[["mapped/Mezlocillin.yaml","Mezlocillin"]]},{"id":"CHEBI:69196","l":"brazilein","na":1,"nb":1,"a":[["antibacterial/brazilein.html","brazilein"]],"b":[["mapped/Brazilein.yaml","Brazilein"]]},{"id":"CHEBI:69414","l":"hygromycin A","na":1,"nb":1,"a":[["antibacterial/hygromycin-a.html","hygromycin A"]],"b":[["mapped/Hygromycin_A.yaml","Hygromycin A"]]},{"id":"CHEBI:71415","l":"nitrofurantoin","na":1,"nb":1,"a":[["antibacterial/nitrofurantoin.html","nitrofurantoin"]],"b":[["mapped/Nitrofurantoin.yaml","Nitrofurantoin"]]},{"id":"CHEBI:71629","l":"nisin","na":1,"nb":1,"a":[["antibacterial/nisin.html","nisin"]],"b":[["mapped/Nisin.yaml","Nisin"]]},{"id":"CHEBI:71987","l":"curamycin A","na":1,"nb":1,"a":[["unspecified/curamycin-a.html","curamycin A"]],"b":[["mapped/Curamycin_A.yaml","Curamycin A"]]},{"id":"CHEBI:72292","l":"bedaquiline","na":1,"nb":1,"a":[["antimycobacterial/bedaquiline.html","bedaquiline"]],"b":[["mapped/Bedaquiline.yaml","Bedaquiline"]]},{"id":"CHEBI:72346","l":"roseoflavin","na":1,"nb":1,"a":[["unspecified/roseoflavin.html","roseoflavin"]],"b":[["mapped/Roseoflavin.yaml","Roseoflavin"]]},{"id":"CHEBI:72449","l":"malachite green","na":1,"nb":1,"a":[["antibacterial/malachite-green.html","malachite green"]],"b":[["mapped/Malachite_Green.yaml","Malachite green"]]},{"id":"CHEBI:74846","l":"azaserine","na":1,"nb":1,"a":[["antifungal/azaserine.html","azaserine"]],"b":[["mapped/Azaserine.yaml","Azaserine"]]},{"id":"CHEBI:7488","l":"natamycin","na":1,"nb":1,"a":[["antifungal/natamycin.html","natamycin"]],"b":[["mapped/Natamycin.yaml","Natamycin"]]},{"id":"CHEBI:7508","l":"framycetin","na":1,"nb":1,"a":[["antibacterial/framycetin.html","framycetin"]],"b":[["mapped/Framycetin.yaml","Framycetin"]]},{"id":"CHEBI:75092","l":"morin","na":1,"nb":1,"a":[["antibacterial/morin.html","morin"]],"b":[["mapped/Morin.yaml","Morin"]]},{"id":"CHEBI:7528","l":"netilmycin","na":1,"nb":1,"a":[["antibacterial/netilmycin.html","netilmycin"]],"b":[["mapped/Netilmycin.yaml","Netilmycin"]]},{"id":"CHEBI:7660","l":"","na":1,"nb":1,"a":[["antifungal/nystatin.html","nystatin"]],"b":[["mapped/Nystatin.yaml","Nystatin"]]},{"id":"CHEBI:7731","l":"","na":1,"nb":1,"a":[["antibacterial/ofloxacin.html","ofloxacin"]],"b":[["mapped/Ofloxacin.yaml","Ofloxacin"]]},{"id":"CHEBI:77543","l":"ebselen","na":1,"nb":1,"a":[["antibacterial/ebselen.html","ebselen"]],"b":[["mapped/Ebselen.yaml","Ebselen"]]},{"id":"CHEBI:77735","l":"ossamycin","na":1,"nb":1,"a":[["unspecified/ossamycin.html","ossamycin"]],"b":[["mapped/Ossamycin.yaml","Ossamycin"]]},{"id":"CHEBI:7809","l":"oxacillin","na":1,"nb":1,"a":[["antibacterial/oxacillin.html","oxacillin"]],"b":[["mapped/Oxacillin.yaml","Oxacillin"]]},{"id":"CHEBI:78661","l":"borrelidin","na":1,"nb":1,"a":[["antifungal/borrelidin.html","borrelidin"]],"b":[["mapped/Borrelidin.yaml","Borrelidin"]]},{"id":"CHEBI:78870","l":"sodium nitrite","na":1,"nb":1,"a":[["biocide/sodium-nitrite.html","sodium nitrite"]],"b":[["mapped/Nano2.yaml","NaNO2"]]},{"id":"CHEBI:7934","l":"paromomycin","na":1,"nb":1,"a":[["antibacterial/paromomycin.html","paromomycin"]],"b":[["mapped/Paromomycin.yaml","Paromomycin"]]},{"id":"CHEBI:7935","l":"paromomycin sulfate","na":1,"nb":1,"a":[["antibacterial/paromomycin-sulfate.html","paromomycin sulfate"]],"b":[["mapped/Paromomycin_Sulfate_Salt.yaml","Paromomycin sulfate salt"]]},{"id":"CHEBI:79394","l":"indolmycin","na":1,"nb":1,"a":[["antibacterial/indolmycin.html","indolmycin"]],"b":[["mapped/Indolmycin.yaml","Indolmycin"]]},{"id":"CHEBI:80025","l":"Salinomycin","na":1,"nb":1,"a":[["antibacterial/salinomycin.html","salinomycin"]],"b":[["mapped/Salinomycin.yaml","Salinomycin"]]},{"id":"CHEBI:81419","l":"kasugamycin","na":1,"nb":1,"a":[["antifungal/kasugamycin.html","kasugamycin"]],"b":[["mapped/Kasugamycin.yaml","Kasugamycin"]]},{"id":"CHEBI:81711","l":"chlorhexidine acetate","na":1,"nb":1,"a":[["antibacterial/chlorhexidine-acetate.html","chlorhexidine acetate"]],"b":[["mapped/Chlorhexidine_Diacetate_Salt_Hydrate.yaml","Chlorhexidine diacetate salt hydrate"]]},{"id":"CHEBI:81862","l":"potassium hydrogencarbonate","na":1,"nb":1,"a":[["antifungal/potassium-hydrogencarbonate.html","potassium hydrogencarbonate"]],"b":[["mapped/Khco3.yaml","KHCO3"]]},{"id":"CHEBI:8232","l":"piperacillin","na":1,"nb":1,"a":[["antibacterial/piperacillin.html","piperacillin"]],"b":[["mapped/Piperacillin.yaml","Piperacillin"]]},{"id":"CHEBI:85129","l":"ristocetin","na":1,"nb":1,"a":[["antibacterial/ristocetin.html","ristocetin"]],"b":[["mapped/Ristocetin_B.yaml","Ristocetin B"]]},{"id":"CHEBI:86431","l":"sodium fluorophosphate","na":1,"nb":1,"a":[["antibacterial/sodium-fluorophosphate.html","sodium fluorophosphate"]],"b":[["mapped/Sodium_Fluorophosphate.yaml","Sodium Fluorophosphate"]]},{"id":"CHEBI:8653","l":"pyocyanine","na":1,"nb":1,"a":[["antibacterial/pyocyanine.html","pyocyanine"]],"b":[["mapped/Pyocyanin.yaml","Pyocyanin"]]},{"id":"CHEBI:8673","l":"pyrimethamine","na":1,"nb":1,"a":[["antiprotozoal/pyrimethamine.html","pyrimethamine"]],"b":[["mapped/Pyrimethamine.yaml","Pyrimethamine"]]},{"id":"CHEBI:86904","l":"4-coumaric acid methyl ester","na":1,"nb":1,"a":[["antifungal/4-coumaric-acid-methyl-ester.html","4-coumaric acid methyl ester"]],"b":[["mapped/Methyl-cis-p-coumarate.yaml","methyl-cis-p-coumarate"]]},{"id":"CHEBI:87084","l":"rosaramicin","na":1,"nb":1,"a":[["antibacterial/rosaramicin.html","rosaramicin"]],"b":[["mapped/Rosaramicin.yaml","Rosaramicin"]]},{"id":"CHEBI:9215","l":"spectinomycin","na":1,"nb":1,"a":[["antibacterial/spectinomycin.html","spectinomycin"]],"b":[["mapped/Spectinomycin.yaml","Spectinomycin"]]},{"id":"CHEBI:9217","l":"spectinomycin hydrochloride hydrate","na":1,"nb":1,"a":[["antibacterial/spectinomycin-hydrochloride-hydrate.html","spectinomycin hydrochloride hydrate"]],"b":[["mapped/Spectinomycin_Dihydrochloride_Pentahydrate.yaml","Spectinomycin dihydrochloride pentahydrate"]]},{"id":"CHEBI:9287","l":"streptonigrin","na":1,"nb":1,"a":[["unspecified/streptonigrin.html","streptonigrin"]],"b":[["mapped/Streptonigrin.yaml","Streptonigrin"]]},{"id":"CHEBI:9321","l":"sulbactam","na":1,"nb":1,"a":[["unspecified/sulbactam.html","sulbactam"]],"b":[["mapped/Sulbactam.yaml","Sulbactam"]]},{"id":"CHEBI:9331","l":"sulfamethizole","na":1,"nb":1,"a":[["antibacterial/sulfamethizole.html","sulfamethizole"]],"b":[["mapped/Sulfamethizole.yaml","Sulfamethizole"]]},{"id":"CHEBI:9332","l":"sulfamethoxazole","na":1,"nb":1,"a":[["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]],"b":[["mapped/Sulfamethoxazole.yaml","Sulfamethoxazole"]]},{"id":"CHEBI:9334","l":"sulfasalazine","na":1,"nb":1,"a":[["antibacterial/sulfasalazine.html","sulfasalazine"]],"b":[["mapped/Sulfasalazine.yaml","Sulfasalazine"]]},{"id":"CHEBI:9421","l":"tazobactam","na":1,"nb":1,"a":[["unspecified/tazobactam.html","tazobactam"]],"b":[["mapped/Tazobactam.yaml","Tazobactam"]]},{"id":"CHEBI:9587","l":"ticarcillin","na":1,"nb":1,"a":[["antibacterial/ticarcillin.html","ticarcillin"]],"b":[["mapped/Ticarcillin.yaml","Ticarcillin"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/CellStructureMech--AntibioticMech.json b/assets/fleet/edges/CellStructureMech--AntibioticMech.json index 49d3852..5d2679a 100644 --- a/assets/fleet/edges/CellStructureMech--AntibioticMech.json +++ b/assets/fleet/edges/CellStructureMech--AntibioticMech.json @@ -1 +1 @@ -{"a":"CellStructureMech","b":"AntibioticMech","base":{"CellStructureMech":"https://culturebotai.github.io/CellStructureMech/pages/structures/","AntibioticMech":"https://culturebotai.github.io/AntibioticMech/pages/"},"n":17,"by":{"NCBITaxon":12,"CHEBI":5},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":19,"nb":30,"a":[["appendage/curli.html","curli"],["appendage/p_pilus.html","P pilus"],["appendage/pilus.html","pilus"],["appendage/type_i_pilus.html","type I pilus"],["cytoskeleton/parm_filament.html","ParM filament"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":159,"nb":8,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"],["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/septin_ring.html","septin ring"],["cytoskeleton/spindle_pole_body.html","spindle pole body"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"]],"b":[["antifungal/anidulafungin.html","anidulafungin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/caspofungin.html","caspofungin"],["antifungal/cycloheximide.html","cycloheximide"],["antifungal/micafungin.html","micafungin"],["antifungal/oligomycin-a.html","oligomycin A"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":15,"nb":4,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]],"b":[["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":3,"nb":12,"a":[["appendage/type_iv_pilus.html","type IV pilus"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":8,"nb":3,"a":[["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["spore/endospore_coat.html","endospore coat"],["spore/endospore_cortex.html","endospore cortex"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"NCBITaxon:5207","l":"Cryptococcus neoformans","na":2,"nb":4,"a":[["envelope/capsule.html","capsule"],["envelope/fungal_type_cell_wall.html","fungal-type cell wall"]],"b":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfanilamide.html","sulfanilamide"],["antifungal/fluconazole.html","fluconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:274","l":"Thermus thermophilus","na":2,"nb":3,"a":[["ribonucleoprotein/ribosome.html","ribosome"],["ribonucleoprotein/small_ribosomal_subunit.html","small ribosomal subunit"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"],["antibacterial/streptomycin.html","streptomycin"],["unspecified/streptolydigin.html","streptolydigin"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":1,"nb":13,"a":[["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/bromodeoxytopsentin.html","bromodeoxytopsentin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":7,"nb":1,"a":[["membrane_organelle/apicoplast.html","apicoplast"],["membrane_organelle/apicoplast_membrane.html","apicoplast membrane"],["membrane_organelle/exoneme.html","exoneme"],["membrane_organelle/food_vacuole.html","food vacuole"],["membrane_organelle/inner_membrane_pellicle_complex.html","inner membrane pellicle complex"],["membrane_organelle/parasitophorous_vacuole.html","parasitophorous vacuole"]],"b":[["antiprotozoal/emetine.html","emetine"]]},{"id":"NCBITaxon:5141","l":"Neurospora crassa","na":6,"nb":1,"a":[["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysomal_membrane.html","glyoxysomal membrane"],["membrane_organelle/glyoxysome.html","glyoxysome"],["membrane_organelle/woronin_body.html","Woronin body"],["other/polarisome.html","polarisome"],["other/spitzenkorper.html","spitzenkorper"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":5,"nb":1,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"],["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:1773","l":"Mycobacterium tuberculosis","na":1,"nb":2,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]],"b":[["antibacterial/sulfanilamide.html","sulfanilamide"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"CHEBI:16247","l":"","na":1,"nb":1,"a":[["inclusion/monolayer_surrounded_lipid_storage_body_outer_lipid_monolayer.html","monolayer-surrounded lipid storage body outer lipid monolayer"]],"b":[["antifungal/miltefosine.html","miltefosine"]]},{"id":"CHEBI:17855","l":"triglyceride","na":1,"nb":1,"a":[["inclusion/lipid_droplet.html","lipid droplet"]],"b":[["antifungal/triacetin.html","triacetin"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":1,"nb":1,"a":[["membrane_organelle/trichocyst.html","trichocyst"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"CHEBI:33403","l":"elemental sulfur","na":1,"nb":1,"a":[["inclusion/sulfur_globule.html","sulfur globule"]],"b":[["antifungal/polysulfur.html","polysulfur"]]},{"id":"CHEBI:35915","l":"","na":1,"nb":1,"a":[["inclusion/lipid_droplet.html","lipid droplet"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]}]} \ No newline at end of file +{"a":"CellStructureMech","b":"AntibioticMech","base":{"CellStructureMech":"https://culturebotai.github.io/CellStructureMech/pages/structures/","AntibioticMech":"https://culturebotai.github.io/AntibioticMech/pages/"},"n":18,"by":{"NCBITaxon":13,"CHEBI":5},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":31,"nb":30,"a":[["appendage/curli.html","curli"],["appendage/p_pilus.html","P pilus"],["appendage/pilus.html","pilus"],["appendage/type_i_pilus.html","type I pilus"],["cytoskeleton/parm_filament.html","ParM filament"],["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":190,"nb":8,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"],["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/septin_ring.html","septin ring"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"],["cytoskeleton/spindle_pole_body.html","spindle pole body"]],"b":[["antifungal/anidulafungin.html","anidulafungin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/caspofungin.html","caspofungin"],["antifungal/cycloheximide.html","cycloheximide"],["antifungal/micafungin.html","micafungin"],["antifungal/oligomycin-a.html","oligomycin A"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":15,"nb":7,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":14,"nb":3,"a":[["cytoskeleton/alfa_filament.html","AlfA filament"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":3,"nb":12,"a":[["appendage/type_iv_pilus.html","type IV pilus"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"NCBITaxon:274","l":"Thermus thermophilus","na":3,"nb":3,"a":[["energy_complex/respiratory_chain_complex_i.html","respiratory chain complex I"],["ribonucleoprotein/ribosome.html","ribosome"],["ribonucleoprotein/small_ribosomal_subunit.html","small ribosomal subunit"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"],["antibacterial/streptomycin.html","streptomycin"],["unspecified/streptolydigin.html","streptolydigin"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":13,"a":[["envelope/periplasmic_space.html","periplasmic space"],["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/bromodeoxytopsentin.html","bromodeoxytopsentin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"NCBITaxon:5207","l":"Cryptococcus neoformans","na":2,"nb":4,"a":[["envelope/capsule.html","capsule"],["envelope/fungal_type_cell_wall.html","fungal-type cell wall"]],"b":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfanilamide.html","sulfanilamide"],["antifungal/fluconazole.html","fluconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":9,"nb":1,"a":[["membrane_organelle/apicoplast.html","apicoplast"],["membrane_organelle/apicoplast_membrane.html","apicoplast membrane"],["membrane_organelle/exoneme.html","exoneme"],["membrane_organelle/food_vacuole.html","food vacuole"],["membrane_organelle/inner_membrane_pellicle_complex.html","inner membrane pellicle complex"],["membrane_organelle/maurer_s_cleft.html","Maurer's cleft"]],"b":[["antiprotozoal/emetine.html","emetine"]]},{"id":"NCBITaxon:5141","l":"Neurospora crassa","na":6,"nb":1,"a":[["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysomal_membrane.html","glyoxysomal membrane"],["membrane_organelle/glyoxysome.html","glyoxysome"],["membrane_organelle/woronin_body.html","Woronin body"],["other/polarisome.html","polarisome"],["other/spitzenkorper.html","spitzenkorper"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":5,"nb":1,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"],["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":4,"a":[["spore/exosporium.html","exosporium"]],"b":[["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/trimethoprim.html","trimethoprim"],["antiprotozoal/suramin.html","suramin"],["antiviral/tilorone.html","tilorone"]]},{"id":"NCBITaxon:1773","l":"Mycobacterium tuberculosis","na":1,"nb":2,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]],"b":[["antibacterial/sulfanilamide.html","sulfanilamide"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"CHEBI:16247","l":"","na":1,"nb":1,"a":[["inclusion/monolayer_surrounded_lipid_storage_body_outer_lipid_monolayer.html","monolayer-surrounded lipid storage body outer lipid monolayer"]],"b":[["antifungal/miltefosine.html","miltefosine"]]},{"id":"CHEBI:17855","l":"triglyceride","na":1,"nb":1,"a":[["inclusion/lipid_droplet.html","lipid droplet"]],"b":[["antifungal/triacetin.html","triacetin"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":1,"nb":1,"a":[["membrane_organelle/trichocyst.html","trichocyst"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"CHEBI:33403","l":"elemental sulfur","na":1,"nb":1,"a":[["inclusion/sulfur_globule.html","sulfur globule"]],"b":[["antifungal/polysulfur.html","polysulfur"]]},{"id":"CHEBI:35915","l":"","na":1,"nb":1,"a":[["inclusion/lipid_droplet.html","lipid droplet"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/CellStructureMech--CultureMech.json b/assets/fleet/edges/CellStructureMech--CultureMech.json index 9d89af1..1d85a25 100644 --- a/assets/fleet/edges/CellStructureMech--CultureMech.json +++ b/assets/fleet/edges/CellStructureMech--CultureMech.json @@ -1 +1 @@ -{"a":"CellStructureMech","b":"CultureMech","base":{"CellStructureMech":"https://culturebotai.github.io/CellStructureMech/pages/structures/","CultureMech":"https://github.com/CultureBotAI/CultureMech/blob/main/data/merge_yaml/merged/"},"n":6,"by":{"NCBITaxon":3,"CHEBI":3},"terms":[{"id":"CHEBI:16526","l":"carbon dioxide","na":3,"nb":709,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"],["other/pyrenoid.html","pyrenoid"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["4_yaco_media.yaml","4_yaco_media"],["8kg_4_medium.yaml","8kg_4_medium"],["ABSS2.yaml","abss2"],["ABYSSISOLIBACTER_MEDIUM.yaml","abyssisolibacter_medium"]]},{"id":"CHEBI:33403","l":"elemental sulfur","na":1,"nb":82,"a":[["inclusion/sulfur_globule.html","sulfur globule"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["ACIDIFERROBACTER_MEDIUM.yaml","acidiferrobacter_medium"],["ACIDILOBUS_MEDIUM.yaml","acidilobus_medium"],["AEROBIC_SULFOLOBALES_MEDIUM.yaml","aerobic_sulfolobales_medium"],["AS_medium.yaml","as_medium"]]},{"id":"NCBITaxon:1148","l":"Synechocystis sp. PCC 6803","na":11,"nb":1,"a":[["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["inclusion/cyanophycin_granule.html","cyanophycin granule"],["inclusion/glycogen_granule.html","glycogen granule"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"]],"b":[["bg11__f771062f.yaml","bg11"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":6,"nb":1,"a":[["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/rc_lh1_pufx_core_complex.html","RC-LH1-PufX core complex"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"],["membrane_organelle/plasma_membrane_derived_chromatophore_membrane.html","plasma membrane-derived chromatophore membrane"]],"b":[["RHODOBACTER_SPHAEROIDES_MEDIUM.yaml","rhodobacter_sphaeroides_medium"]]},{"id":"CHEBI:18248","l":"iron atom","na":1,"nb":1,"a":[["membrane_organelle/magnetosome.html","magnetosome"]],"b":[["methanopyrus_medium_for_strain_116__7463935f.yaml","methanopyrus_medium_for_strain_116"]]},{"id":"NCBITaxon:2261","l":"Pyrococcus furiosus","na":1,"nb":1,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"]],"b":[["pyrococcus_medium__6ffabef8.yaml","pyrococcus_medium"]]}]} \ No newline at end of file +{"a":"CellStructureMech","b":"CultureMech","base":{"CellStructureMech":"https://culturebotai.github.io/CellStructureMech/pages/structures/","CultureMech":"https://github.com/CultureBotAI/CultureMech/blob/main/data/merge_yaml/merged/"},"n":7,"by":{"CHEBI":4,"NCBITaxon":3},"terms":[{"id":"CHEBI:16526","l":"carbon dioxide","na":3,"nb":711,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"],["other/pyrenoid.html","pyrenoid"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["4_yaco_media.yaml","4_yaco_media"],["8kg_4_medium.yaml","8kg_4_medium"],["ABSS2.yaml","abss2"],["ABYSSISOLIBACTER_MEDIUM.yaml","abyssisolibacter_medium"]]},{"id":"CHEBI:16261","l":"chitosan","na":2,"nb":2,"a":[["spore/ascospore_wall.html","ascospore wall"],["spore/chitosan_layer_of_spore_wall.html","chitosan layer of spore wall"]],"b":[["HALOACTINOMYCES_HALOPHILUS_MEDIUM.yaml","haloactinomyces_halophilus_medium"],["Matsuaria_Medium.yaml","matsuaria_medium"]]},{"id":"CHEBI:33403","l":"elemental sulfur","na":1,"nb":82,"a":[["inclusion/sulfur_globule.html","sulfur globule"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["ACIDIFERROBACTER_MEDIUM.yaml","acidiferrobacter_medium"],["ACIDILOBUS_MEDIUM.yaml","acidilobus_medium"],["AEROBIC_SULFOLOBALES_MEDIUM.yaml","aerobic_sulfolobales_medium"],["AS_medium.yaml","as_medium"]]},{"id":"NCBITaxon:1148","l":"Synechocystis sp. PCC 6803","na":11,"nb":1,"a":[["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["inclusion/cyanophycin_granule.html","cyanophycin granule"],["inclusion/glycogen_granule.html","glycogen granule"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"]],"b":[["bg11__f771062f.yaml","bg11"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":7,"nb":1,"a":[["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/rc_lh1_pufx_core_complex.html","RC-LH1-PufX core complex"],["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"]],"b":[["RHODOBACTER_SPHAEROIDES_MEDIUM.yaml","rhodobacter_sphaeroides_medium"]]},{"id":"NCBITaxon:2261","l":"Pyrococcus furiosus","na":2,"nb":1,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"]],"b":[["pyrococcus_medium__6ffabef8.yaml","pyrococcus_medium"]]},{"id":"CHEBI:18248","l":"iron atom","na":1,"nb":1,"a":[["membrane_organelle/magnetosome.html","magnetosome"]],"b":[["methanopyrus_medium_for_strain_116__7463935f.yaml","methanopyrus_medium_for_strain_116"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/CellStructureMech--MediaIngredientMech.json b/assets/fleet/edges/CellStructureMech--MediaIngredientMech.json index a29ab3a..a82af08 100644 --- a/assets/fleet/edges/CellStructureMech--MediaIngredientMech.json +++ b/assets/fleet/edges/CellStructureMech--MediaIngredientMech.json @@ -1 +1 @@ -{"a":"CellStructureMech","b":"MediaIngredientMech","base":{"CellStructureMech":"https://culturebotai.github.io/CellStructureMech/pages/structures/","MediaIngredientMech":"https://github.com/CultureBotAI/MediaIngredientMech/blob/main/data/ingredients/"},"n":13,"by":{"CHEBI":13},"terms":[{"id":"CHEBI:16526","l":"carbon dioxide","na":3,"nb":7,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"],["other/pyrenoid.html","pyrenoid"]],"b":[["mapped/1-butanolCO2.yaml","1-butanol+CO2"],["mapped/1-propanolCO2.yaml","1-propanol+CO2"],["mapped/2-butanolCO2.yaml","2-butanol+CO2"],["mapped/2-propanolCO2.yaml","2-propanol+CO2"],["mapped/Carbon_dioxide_gas.yaml","Carbon dioxide gas"],["mapped/CyclopentanolCO2.yaml","Cyclopentanol+CO2"]]},{"id":"CHEBI:17029","l":"chitin","na":2,"nb":3,"a":[["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["spore/microsporidian_type_endospore.html","microsporidian-type endospore"]],"b":[["mapped/Chitin.yaml","Chitin"],["unmapped/Chitin_From_Shrimp_Shells.yaml","Chitin from shrimp shells"],["unmapped/Colloidal_Chitin.yaml","Colloidal chitin"]]},{"id":"CHEBI:33403","l":"elemental sulfur","na":1,"nb":4,"a":[["inclusion/sulfur_globule.html","sulfur globule"]],"b":[["mapped/Sulfur.yaml","Sulfur"],["mapped/Sulfur_Powder.yaml","Sulfur (powder)"],["mapped/Sulphur.yaml","Sulphur"],["mapped/Yeast_Extract_Sulfur.yaml","Yeast Extract + Sulfur"]]},{"id":"CHEBI:16412","l":"","na":2,"nb":1,"a":[["envelope/cell_outer_membrane.html","cell outer membrane"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"]],"b":[["mapped/Lipopolysaccharide.yaml","Lipopolysaccharide"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":2,"nb":1,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["mapped/Bicarbonate.yaml","Bicarbonate"]]},{"id":"CHEBI:28087","l":"glycogen","na":1,"nb":2,"a":[["inclusion/glycogen_granule.html","glycogen granule"]],"b":[["mapped/Glycogen.yaml","Glycogen"],["mapped/Glycogen_From_Bovine_Liver.yaml","Glycogen from bovine liver"]]},{"id":"CHEBI:28793","l":"","na":1,"nb":2,"a":[["envelope/fungal_type_cell_wall.html","fungal-type cell wall"]],"b":[["mapped/3-beta-d-glucan.yaml","3-beta-D-glucan"],["mapped/B-Glucan_From_Oat.yaml","b-Glucan from Oat"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":1,"nb":2,"a":[["membrane_organelle/trichocyst.html","trichocyst"]],"b":[["mapped/Calcium%282%29.yaml","Calcium(2+)"],["mapped/Calcium.yaml","Calcium"]]},{"id":"CHEBI:16247","l":"","na":1,"nb":1,"a":[["inclusion/monolayer_surrounded_lipid_storage_body_outer_lipid_monolayer.html","monolayer-surrounded lipid storage body outer lipid monolayer"]],"b":[["mapped/Bacto_Soytone.yaml","Bacto Soytone"]]},{"id":"CHEBI:18248","l":"iron atom","na":1,"nb":1,"a":[["membrane_organelle/magnetosome.html","magnetosome"]],"b":[["mapped/Iron.yaml","Iron"]]},{"id":"CHEBI:27569","l":"","na":1,"nb":1,"a":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]],"b":[["mapped/Arabinogalactan.yaml","(+)-Arabinogalactan"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":1,"nb":1,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]],"b":[["mapped/Ferrous_Ion.yaml","Ferrous Ion"]]},{"id":"CHEBI:30033","l":"","na":1,"nb":1,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"]],"b":[["mapped/Bacteriochlorophyll_A.yaml","Bacteriochlorophyll A"]]}]} \ No newline at end of file +{"a":"CellStructureMech","b":"MediaIngredientMech","base":{"CellStructureMech":"https://culturebotai.github.io/CellStructureMech/pages/structures/","MediaIngredientMech":"https://github.com/CultureBotAI/MediaIngredientMech/blob/main/data/ingredients/"},"n":14,"by":{"CHEBI":14},"terms":[{"id":"CHEBI:16526","l":"carbon dioxide","na":3,"nb":7,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"],["other/pyrenoid.html","pyrenoid"]],"b":[["mapped/1-butanolCO2.yaml","1-butanol+CO2"],["mapped/1-propanolCO2.yaml","1-propanol+CO2"],["mapped/2-butanolCO2.yaml","2-butanol+CO2"],["mapped/2-propanolCO2.yaml","2-propanol+CO2"],["mapped/Carbon_dioxide_gas.yaml","Carbon dioxide gas"],["mapped/CyclopentanolCO2.yaml","Cyclopentanol+CO2"]]},{"id":"CHEBI:17029","l":"chitin","na":3,"nb":3,"a":[["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["membrane_organelle/chitosome.html","chitosome"],["spore/microsporidian_type_endospore.html","microsporidian-type endospore"]],"b":[["mapped/Chitin.yaml","Chitin"],["unmapped/Chitin_From_Shrimp_Shells.yaml","Chitin from shrimp shells"],["unmapped/Colloidal_Chitin.yaml","Colloidal chitin"]]},{"id":"CHEBI:33403","l":"elemental sulfur","na":1,"nb":5,"a":[["inclusion/sulfur_globule.html","sulfur globule"]],"b":[["mapped/GYPS.yaml","GYPS"],["mapped/Sulfur.yaml","Sulfur"],["mapped/Sulfur_Powder.yaml","Sulfur (powder)"],["mapped/Sulphur.yaml","Sulphur"],["mapped/Yeast_Extract_Sulfur.yaml","Yeast Extract + Sulfur"]]},{"id":"CHEBI:16261","l":"chitosan","na":2,"nb":1,"a":[["spore/ascospore_wall.html","ascospore wall"],["spore/chitosan_layer_of_spore_wall.html","chitosan layer of spore wall"]],"b":[["mapped/Chitosan.yaml","Chitosan"]]},{"id":"CHEBI:16412","l":"","na":2,"nb":1,"a":[["envelope/cell_outer_membrane.html","cell outer membrane"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"]],"b":[["mapped/Lipopolysaccharide.yaml","Lipopolysaccharide"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":2,"nb":1,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["mapped/Bicarbonate.yaml","Bicarbonate"]]},{"id":"CHEBI:28087","l":"glycogen","na":1,"nb":2,"a":[["inclusion/glycogen_granule.html","glycogen granule"]],"b":[["mapped/Glycogen.yaml","Glycogen"],["mapped/Glycogen_From_Bovine_Liver.yaml","Glycogen from bovine liver"]]},{"id":"CHEBI:28793","l":"''beta-D-glucan''","na":1,"nb":2,"a":[["envelope/fungal_type_cell_wall.html","fungal-type cell wall"]],"b":[["mapped/3-beta-d-glucan.yaml","3-beta-D-glucan"],["mapped/B-Glucan_From_Oat.yaml","b-Glucan from Oat"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":1,"nb":2,"a":[["membrane_organelle/trichocyst.html","trichocyst"]],"b":[["mapped/Calcium%282%29.yaml","Calcium(2+)"],["mapped/Calcium.yaml","Calcium"]]},{"id":"CHEBI:16247","l":"","na":1,"nb":1,"a":[["inclusion/monolayer_surrounded_lipid_storage_body_outer_lipid_monolayer.html","monolayer-surrounded lipid storage body outer lipid monolayer"]],"b":[["mapped/Bacto_Soytone.yaml","Bacto Soytone"]]},{"id":"CHEBI:18248","l":"iron atom","na":1,"nb":1,"a":[["membrane_organelle/magnetosome.html","magnetosome"]],"b":[["mapped/Iron.yaml","Iron"]]},{"id":"CHEBI:27569","l":"","na":1,"nb":1,"a":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]],"b":[["mapped/Arabinogalactan.yaml","(+)-Arabinogalactan"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":1,"nb":1,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]],"b":[["mapped/Ferrous_Ion.yaml","Ferrous Ion"]]},{"id":"CHEBI:30033","l":"","na":1,"nb":1,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"]],"b":[["mapped/Bacteriochlorophyll_A.yaml","Bacteriochlorophyll A"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/CellStructureMech--NaturalProductMech.json b/assets/fleet/edges/CellStructureMech--NaturalProductMech.json index af5da71..2d12f00 100644 --- a/assets/fleet/edges/CellStructureMech--NaturalProductMech.json +++ b/assets/fleet/edges/CellStructureMech--NaturalProductMech.json @@ -1 +1 @@ -{"a":"CellStructureMech","b":"NaturalProductMech","base":{"CellStructureMech":"https://culturebotai.github.io/CellStructureMech/pages/structures/","NaturalProductMech":"https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/natural_products/"},"n":20,"by":{"NCBITaxon":20},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":19,"nb":24,"a":[["appendage/curli.html","curli"],["appendage/p_pilus.html","P pilus"],["appendage/pilus.html","pilus"],["appendage/type_i_pilus.html","type I pilus"],["cytoskeleton/parm_filament.html","ParM filament"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":8,"nb":16,"a":[["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["spore/endospore_coat.html","endospore coat"],["spore/endospore_cortex.html","endospore cortex"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["amino_acids_and_peptides/ericin-s.yaml","ericin S"],["amino_acids_and_peptides/iturin.yaml","iturin"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":3,"nb":12,"a":[["appendage/type_iv_pilus.html","type IV pilus"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":10,"nb":3,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"],["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"],["unclassified/telomestatin.yaml","telomestatin"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":4,"nb":2,"a":[["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"],["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]],"b":[["alkaloids/agrobactin.yaml","agrobactin"],["amino_acids_and_peptides/aztreonam.yaml","aztreonam"]]},{"id":"NCBITaxon:224308","l":"Bacillus subtilis (strain 168)","na":3,"nb":2,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["division_machinery/divisome_complex.html","divisome complex"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]],"b":[["unclassified/corynebactin.yaml","corynebactin"],["unclassified/pulcherriminic-acid.yaml","pulcherriminic acid"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":2,"nb":2,"a":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"],["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"]],"b":[["alkaloids/vibriobactin-2.yaml","vibriobactin"],["alkaloids/vibriobactin.yaml","vibriobactin"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":159,"nb":1,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"],["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/septin_ring.html","septin ring"],["cytoskeleton/spindle_pole_body.html","spindle pole body"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":1,"nb":13,"a":[["other/ap_5_adaptor_complex.html","AP-5 adaptor complex"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/congocidine.yaml","congocidine"],["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]]},{"id":"NCBITaxon:4751","l":"Fungi","na":10,"nb":1,"a":[["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/septin_ring.html","septin ring"],["envelope/capsule.html","capsule"],["envelope/eisosome_membrane_domain_mcc.html","eisosome membrane domain/MCC"],["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["envelope/plasma_membrane.html","plasma membrane"]],"b":[["shikimates_and_phenylpropanoids/atromentin.yaml","atromentin"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":7,"nb":1,"a":[["membrane_organelle/apicoplast.html","apicoplast"],["membrane_organelle/apicoplast_membrane.html","apicoplast membrane"],["membrane_organelle/exoneme.html","exoneme"],["membrane_organelle/food_vacuole.html","food vacuole"],["membrane_organelle/inner_membrane_pellicle_complex.html","inner membrane pellicle complex"],["membrane_organelle/parasitophorous_vacuole.html","parasitophorous vacuole"]],"b":[["alkaloids/congocidine.yaml","congocidine"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":6,"nb":1,"a":[["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/rc_lh1_pufx_core_complex.html","RC-LH1-PufX core complex"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"],["membrane_organelle/plasma_membrane_derived_chromatophore_membrane.html","plasma membrane-derived chromatophore membrane"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":1,"nb":5,"a":[["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"],["unclassified/leuvalin.yaml","leuvalin"],["unclassified/phevalin.yaml","phevalin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":5,"nb":1,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"],["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]],"b":[["unclassified/mycobactin.yaml","mycobactin"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":3,"nb":1,"a":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":1,"nb":2,"a":[["cytoskeleton/tubz_filament.html","TubZ filament"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["unclassified/andalusicin-a.yaml","andalusicin A"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":2,"a":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:243277","l":"Vibrio cholerae serotype O1 (strain ATCC 39315 / El Tor Inaba N16961)","na":1,"nb":1,"a":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"]],"b":[["alkaloids/vibriobactin-2.yaml","vibriobactin"]]},{"id":"NCBITaxon:381666","l":"Cupriavidus necator H16","na":1,"nb":1,"a":[["inclusion/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]],"b":[["amino_acids_and_peptides/cupriachelin.yaml","cupriachelin"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":1,"nb":1,"a":[["microcompartment/bacterial_microcompartment.html","bacterial microcompartment"]],"b":[["polyketides/haliamide.yaml","haliamide"]]}]} \ No newline at end of file +{"a":"CellStructureMech","b":"NaturalProductMech","base":{"CellStructureMech":"https://culturebotai.github.io/CellStructureMech/pages/structures/","NaturalProductMech":"https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/natural_products/"},"n":23,"by":{"NCBITaxon":23},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":31,"nb":24,"a":[["appendage/curli.html","curli"],["appendage/p_pilus.html","P pilus"],["appendage/pilus.html","pilus"],["appendage/type_i_pilus.html","type I pilus"],["cytoskeleton/parm_filament.html","ParM filament"],["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":14,"nb":16,"a":[["cytoskeleton/alfa_filament.html","AlfA filament"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["amino_acids_and_peptides/ericin-s.yaml","ericin S"],["amino_acids_and_peptides/iturin.yaml","iturin"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":8,"nb":13,"a":[["other/ap_5_adaptor_complex.html","AP-5 adaptor complex"],["ribonucleoprotein/u11_snrnp.html","U11 snRNP"],["ribonucleoprotein/u11_u12_snrnp.html","U11/U12 snRNP"],["ribonucleoprotein/u12_snrnp.html","U12 snRNP"],["ribonucleoprotein/u4atac_snrnp.html","U4atac snRNP"],["ribonucleoprotein/u4atac_u6atac_snrnp.html","U4atac/U6atac snRNP"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/congocidine.yaml","congocidine"],["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":15,"nb":3,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]],"b":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"],["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"],["unclassified/telomestatin.yaml","telomestatin"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":3,"nb":12,"a":[["appendage/type_iv_pilus.html","type IV pilus"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":6,"nb":2,"a":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"],["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"],["secretion_system/type_vi_secretion_system_baseplate.html","type VI secretion system baseplate"],["secretion_system/type_vi_secretion_system_contractile_sheath.html","type VI secretion system contractile sheath"],["secretion_system/type_vi_secretion_system_hcp_tube.html","type VI secretion system Hcp tube"],["secretion_system/type_vi_secretion_system_vgrg_paar_spike_complex.html","type VI secretion system VgrG/PAAR spike complex"]],"b":[["alkaloids/vibriobactin-2.yaml","vibriobactin"],["alkaloids/vibriobactin.yaml","vibriobactin"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":5,"a":[["envelope/periplasmic_space.html","periplasmic space"],["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"],["unclassified/leuvalin.yaml","leuvalin"],["unclassified/phevalin.yaml","phevalin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":4,"nb":2,"a":[["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"],["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]],"b":[["alkaloids/agrobactin.yaml","agrobactin"],["amino_acids_and_peptides/aztreonam.yaml","aztreonam"]]},{"id":"NCBITaxon:224308","l":"Bacillus subtilis (strain 168)","na":3,"nb":2,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["division_machinery/divisome_complex.html","divisome complex"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]],"b":[["unclassified/corynebactin.yaml","corynebactin"],["unclassified/pulcherriminic-acid.yaml","pulcherriminic acid"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":2,"nb":2,"a":[["cytoskeleton/tubz_filament.html","TubZ filament"],["inclusion/parasporal_crystal.html","parasporal crystal"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["unclassified/andalusicin-a.yaml","andalusicin A"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":190,"nb":1,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"],["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/septin_ring.html","septin ring"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"],["cytoskeleton/spindle_pole_body.html","spindle pole body"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:4751","l":"Fungi","na":11,"nb":1,"a":[["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/septin_ring.html","septin ring"],["envelope/capsule.html","capsule"],["envelope/eisosome_membrane_domain_mcc.html","eisosome membrane domain/MCC"],["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["envelope/plasma_membrane.html","plasma membrane"]],"b":[["shikimates_and_phenylpropanoids/atromentin.yaml","atromentin"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":9,"nb":1,"a":[["membrane_organelle/apicoplast.html","apicoplast"],["membrane_organelle/apicoplast_membrane.html","apicoplast membrane"],["membrane_organelle/exoneme.html","exoneme"],["membrane_organelle/food_vacuole.html","food vacuole"],["membrane_organelle/inner_membrane_pellicle_complex.html","inner membrane pellicle complex"],["membrane_organelle/maurer_s_cleft.html","Maurer's cleft"]],"b":[["alkaloids/congocidine.yaml","congocidine"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":7,"nb":1,"a":[["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/rc_lh1_pufx_core_complex.html","RC-LH1-PufX core complex"],["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":1,"nb":5,"a":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"]],"b":[["alkaloids/aminochelin.yaml","aminochelin"],["alkaloids/azotochelin.yaml","azotochelin"],["alkaloids/protochelin.yaml","protochelin"],["amino_acids_and_peptides/azotobactin-d.yaml","azotobactin D"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":5,"nb":1,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"],["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]],"b":[["unclassified/mycobactin.yaml","mycobactin"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":3,"nb":1,"a":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":2,"a":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":1,"a":[["spore/exosporium.html","exosporium"]],"b":[["alkaloids/petrobactin.yaml","petrobactin"]]},{"id":"NCBITaxon:243277","l":"Vibrio cholerae serotype O1 (strain ATCC 39315 / El Tor Inaba N16961)","na":1,"nb":1,"a":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"]],"b":[["alkaloids/vibriobactin-2.yaml","vibriobactin"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":1,"a":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]],"b":[["alkaloids/parabactin.yaml","parabactin"]]},{"id":"NCBITaxon:381666","l":"Cupriavidus necator H16","na":1,"nb":1,"a":[["inclusion/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]],"b":[["amino_acids_and_peptides/cupriachelin.yaml","cupriachelin"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":1,"nb":1,"a":[["microcompartment/bacterial_microcompartment.html","bacterial microcompartment"]],"b":[["polyketides/haliamide.yaml","haliamide"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/CellStructureMech--ProteinTraitsMech.json b/assets/fleet/edges/CellStructureMech--ProteinTraitsMech.json index 3bff2f2..1ba19db 100644 --- a/assets/fleet/edges/CellStructureMech--ProteinTraitsMech.json +++ b/assets/fleet/edges/CellStructureMech--ProteinTraitsMech.json @@ -1 +1 @@ -{"a":"CellStructureMech","b":"ProteinTraitsMech","base":{"CellStructureMech":"https://culturebotai.github.io/CellStructureMech/pages/structures/","ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record="},"n":989,"by":{"GO":576,"DOI":145,"UniProt":143,"NCBITaxon":72,"InterPro":29,"CHEBI":14,"Pfam":10},"terms":[{"id":"GO:0032991","l":"protein-containing complex","na":28,"nb":17037,"a":[["appendage/stalk_crossband.html","stalk crossband"],["cytoskeleton/eisosome_filament.html","eisosome filament"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["other/chaperonin_containing_t_complex.html","chaperonin-containing T-complex"],["other/exomer_complex.html","exomer complex"],["other/gator1_complex.html","GATOR1 complex"]],"b":[["ComplexPortal%3ACPX-5225","28S mitochondrial small ribosomal subunit"],["ComplexPortal%3ACPX-5301","28S mitochondrial small ribosomal subunit"],["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["ComplexPortal%3ACPX-10315","37S mitochondrial small ribosomal subunit"],["ComplexPortal%3ACPX-1603","37S mitochondrial small ribosomal subunit"],["ComplexPortal%3ACPX-5226","39S mitochondrial large ribosomal subunit"]]},{"id":"NCBITaxon:3055","l":"Chlamydomonas reinhardtii","na":37,"nb":28,"a":[["appendage/ciliary_membrane.html","ciliary membrane"],["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"],["appendage/mastigoneme.html","mastigoneme"],["cytoskeleton/axoneme.html","axoneme"],["cytoskeleton/ciliary_basal_body.html","ciliary basal body"]],"b":[["Pfam%3APF01333","Apocytochrome F, C-terminal"],["Pfam%3APF16639","Apocytochrome F, N-terminal"],["Pfam%3APF00430","ATP synthase B/B' CF(0)"],["Pfam%3APF00401","ATP synthase, Delta/Epsilon chain, long alpha-helix domain"],["Pfam%3APF21771","CFAP58 central coiled coil"],["Pfam%3APF27956","CFAP99 V-shaped coiled-coil domain"]]},{"id":"GO:0016020","l":"membrane","na":21,"nb":3003,"a":[["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["envelope/cell_outer_membrane.html","cell outer membrane"],["envelope/cellular_bud_membrane.html","cellular bud membrane"],["envelope/plasma_membrane.html","plasma membrane"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"]],"b":[["ComplexPortal%3ACPX-1813","1,3-beta-D-glucan synthase complex, FKS2-RHO1 variant"],["ComplexPortal%3ACPX-4313","Aliphatic sulfonate ABC transporter complex"],["ComplexPortal%3ACPX-4314","Arabinose ABC transporter complex"],["ComplexPortal%3ACPX-4318","Arginine ABC transporter complex, artI variant"],["ComplexPortal%3ACPX-4319","Arginine ABC transporter complex, artJ variant"],["ComplexPortal%3ACPX-6308","ATP10B-CDC50A P4-ATPase complex"]]},{"id":"GO:0043231","l":"intracellular membrane-bounded organelle","na":19,"nb":930,"a":[["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"],["membrane_organelle/exoneme.html","exoneme"],["membrane_organelle/ferrosome.html","ferrosome"],["membrane_organelle/golgi_apparatus.html","Golgi apparatus"]],"b":[["GO%3A0020022","acidocalcisome"],["GO%3A0044222","anammoxosome"],["GO%3A0033099","attachment organelle"],["GO%3A0005801","cis-Golgi network"],["GO%3A0005783","endoplasmic reticulum"],["GO%3A0005793","endoplasmic reticulum-Golgi intermediate compartment"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":19,"nb":156,"a":[["appendage/curli.html","curli"],["appendage/p_pilus.html","P pilus"],["appendage/pilus.html","pilus"],["appendage/type_i_pilus.html","type I pilus"],["cytoskeleton/parm_filament.html","ParM filament"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["IDPO%3A0000033","flexible linker"],["IDPO%3A0000014","order to disorder"],["IDPO%3A0000004","pre-molten globule"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"]]},{"id":"NCBITaxon:99287","l":"Salmonella typhimurium (strain LT2 / SGSC1412 / ATCC 700720)","na":16,"nb":178,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"],["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"]],"b":[["Pfam%3APF16031","TonB polyproline region"],["Pfam%3APF13521","AAA domain"],["Pfam%3APF26341","tRNA 2-selenouridine synthase AAA domain"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"],["Pfam%3APF09317","Acyl-CoA dehydrogenase, C-terminal, bacterial type"],["Pfam%3APF06315","Isocitrate dehydrogenase kinase/phosphatase (AceK) kinase domain"]]},{"id":"GO:0005856","l":"cytoskeleton","na":13,"nb":148,"a":[["cytoskeleton/bactofilin_filament.html","bactofilin filament"],["cytoskeleton/bilobe_structure.html","bilobe structure"],["cytoskeleton/btubab_bacterial_microtubule.html","BtubAB bacterial microtubule"],["cytoskeleton/cetz_filament.html","CetZ filament"],["cytoskeleton/ciliary_basal_body.html","ciliary basal body"],["cytoskeleton/conoid.html","conoid"]],"b":[["GO%3A0015629","actin cytoskeleton"],["GO%3A0030863","cortical cytoskeleton"],["GO%3A0005856","cytoskeleton"],["GO%3A0045111","intermediate filament cytoskeleton"],["GO%3A0015630","microtubule cytoskeleton"],["GO%3A0033011","perinuclear theca"]]},{"id":"GO:0005743","l":"mitochondrial inner membrane","na":13,"nb":108,"a":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"],["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrial_intermembrane_space.html","mitochondrial intermembrane space"],["membrane_organelle/mitochondrial_matrix.html","mitochondrial matrix"]],"b":[["ComplexPortal%3ACPX-5225","28S mitochondrial small ribosomal subunit"],["ComplexPortal%3ACPX-5301","28S mitochondrial small ribosomal subunit"],["ComplexPortal%3ACPX-1603","37S mitochondrial small ribosomal subunit"],["ComplexPortal%3ACPX-5226","39S mitochondrial large ribosomal subunit"],["ComplexPortal%3ACPX-5302","39S mitochondrial large ribosomal subunit"],["ComplexPortal%3ACPX-1602","54S mitochondrial large ribosomal subunit"]]},{"id":"GO:0005789","l":"endoplasmic reticulum membrane","na":12,"nb":218,"a":[["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"],["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"],["membrane_organelle/endoplasmic_reticulum_lumen.html","endoplasmic reticulum lumen"],["membrane_organelle/endoplasmic_reticulum_membrane.html","endoplasmic reticulum membrane"],["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"],["other/copii_vesicle_coat.html","COPII vesicle coat"]],"b":[["ComplexPortal%3ACPX-8021","BOS complex, NOMO1 variant"],["ComplexPortal%3ACPX-8022","BOS complex, NOMO2 variant"],["ComplexPortal%3ACPX-8023","BOS complex, NOMO3 variant"],["ComplexPortal%3ACPX-2211","Commander complex"],["ComplexPortal%3ACPX-6701","Dehydrodolichyl diphosphate synthase complex"],["ComplexPortal%3ACPX-6268","Dolichol-phosphate mannosyltransferase complex"]]},{"id":"GO:0042651","l":"thylakoid membrane","na":12,"nb":14,"a":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/phycobilisome.html","phycobilisome"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"]],"b":[["GO%3A0070118","organellar chromatophore thylakoid membrane"],["GO%3A0031676","plasma membrane-derived thylakoid membrane"],["GO%3A0055035","plastid thylakoid membrane"],["GO%3A0042651","thylakoid membrane"],["NCBIfam%3ANF013497","Apocytochrome F, C-terminal"],["NCBIfam%3ATIGR01156","cytochrome b6-f complex subunit IV"]]},{"id":"GO:0005737","l":"cytoplasm","na":11,"nb":2018,"a":[["envelope/plasma_membrane.html","plasma membrane"],["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"],["membrane_organelle/mitosome.html","mitosome"]],"b":[["ComplexPortal%3ACPX-3921","2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["ComplexPortal%3ACPX-1599","40S cytosolic small ribosomal subunit"],["ComplexPortal%3ACPX-5223","40S cytosolic small ribosomal subunit"],["ComplexPortal%3ACPX-5261","40S cytosolic small ribosomal subunit"],["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"]]},{"id":"GO:0000139","l":"Golgi membrane","na":11,"nb":67,"a":[["membrane_organelle/cis_golgi_network_membrane.html","cis-Golgi network membrane"],["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/golgi_apparatus.html","Golgi apparatus"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"]],"b":[["ComplexPortal%3ACPX-7803","COPI vesicle coat complex, COPG1-COPZ1 variant"],["ComplexPortal%3ACPX-7970","COPI vesicle coat complex, COPG1-COPZ2 variant"],["ComplexPortal%3ACPX-7969","COPI vesicle coat complex, COPG2-COPZ1 variant"],["ComplexPortal%3ACPX-5424","Endosomal SNARE complex PEP12-VTI1-SYN8-SNC1"],["ComplexPortal%3ACPX-5461","Endosomal SNARE complex PEP12-VTI1-SYN8-SNC2"],["ComplexPortal%3ACPX-5421","Endosomal SNARE complex PEP12-VTI1-SYN8-YKT6"]]},{"id":"GO:0043233","l":"organelle lumen","na":11,"nb":36,"a":[["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/endoplasmic_reticulum_lumen.html","endoplasmic reticulum lumen"],["membrane_organelle/esterosome_lumen.html","esterosome lumen"],["membrane_organelle/glycosome_lumen.html","glycosome lumen"],["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/hydrogenosome_lumen.html","hydrogenosome lumen"]],"b":[["GO%3A0070013","intracellular organelle lumen"],["GO%3A0043233","organelle lumen"],["GO%3A0034591","rhoptry lumen"],["GO%3A0120203","rod photoreceptor disc lumen"],["GO%3A0031983","vesicle lumen"],["PANTHER%3APTHR13457","BAP28"]]},{"id":"GO:0030659","l":"cytoplasmic vesicle membrane","na":11,"nb":24,"a":[["membrane_organelle/autophagosome_membrane.html","autophagosome membrane"],["membrane_organelle/clathrin_coated_vesicle_membrane.html","clathrin-coated vesicle membrane"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"],["membrane_organelle/cvt_vesicle_membrane.html","Cvt vesicle membrane"],["membrane_organelle/cytoplasmic_vesicle.html","cytoplasmic vesicle"],["membrane_organelle/cytoplasmic_vesicle_lumen.html","cytoplasmic vesicle lumen"]],"b":[["ComplexPortal%3ACPX-8427","ZNT1-ZNT3 proton-coupled zinc antiporter complex"],["ComplexPortal%3ACPX-8428","ZNT2-ZNT3 proton-coupled zinc antiporter complex"],["GO%3A0032578","aleurone grain membrane"],["GO%3A0030661","chitosome membrane"],["GO%3A0030662","coated vesicle membrane"],["GO%3A0031164","contractile vacuolar membrane"]]},{"id":"GO:0009767","l":"photosynthetic electron transport chain","na":11,"nb":13,"a":[["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"],["energy_complex/rc_lh1_pufx_core_complex.html","RC-LH1-PufX core complex"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"]],"b":[["GO%3A0009767","photosynthetic electron transport chain"],["GO%3A0009773","photosynthetic electron transport in photosystem I"],["GO%3A0009772","photosynthetic electron transport in photosystem II"],["NCBIfam%3ATIGR01332","cytochrome b559 subunit alpha"],["NCBIfam%3ATIGR01333","cytochrome b559 subunit beta"],["NCBIfam%3ATIGR01156","cytochrome b6-f complex subunit IV"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":10,"nb":17633,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["EC%3A1.1.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.16.-.-","Oxidizing metal ions"],["EC%3A1.18.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.7.-","With an iron-sulfur protein as acceptor"]]},{"id":"GO:0009536","l":"plastid","na":10,"nb":33,"a":[["membrane_organelle/apicoplast.html","apicoplast"],["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/nucleomorph.html","nucleomorph"],["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/plastid.html","plastid"]],"b":[["GO%3A0009501","amyloplast"],["GO%3A0020011","apicoplast"],["GO%3A0009507","chloroplast"],["GO%3A0009509","chromoplast"],["GO%3A0009842","cyanelle"],["GO%3A0009513","etioplast"]]},{"id":"GO:0031410","l":"cytoplasmic vesicle","na":9,"nb":138,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/cvt_vesicle.html","Cvt vesicle"],["membrane_organelle/cytoplasmic_vesicle.html","cytoplasmic vesicle"],["membrane_organelle/cytoplasmic_vesicle_lumen.html","cytoplasmic vesicle lumen"],["membrane_organelle/cytoplasmic_vesicle_membrane.html","cytoplasmic vesicle membrane"],["membrane_organelle/endocytic_vesicle.html","endocytic vesicle"]],"b":[["GO%3A0033095","aleurone grain"],["GO%3A1990006","amorphous vesicle"],["GO%3A0043702","carotenoid vesicle"],["GO%3A0045009","chitosome"],["GO%3A0062247","chloroplast vesicle"],["GO%3A0097721","ciliary vesicle"]]},{"id":"GO:0005794","l":"Golgi apparatus","na":9,"nb":93,"a":[["membrane_organelle/cis_golgi_network.html","cis-Golgi network"],["membrane_organelle/cis_golgi_network_membrane.html","cis-Golgi network membrane"],["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"],["membrane_organelle/golgi_apparatus.html","Golgi apparatus"],["membrane_organelle/golgi_cisterna.html","Golgi cisterna"],["membrane_organelle/golgi_cisterna_membrane.html","Golgi cisterna membrane"]],"b":[["ComplexPortal%3ACPX-26603","ATP9A-DOP1B-MON2, golgi transporter complex"],["ComplexPortal%3ACPX-26602","DOP1A-MON2, golgi-endosome traffic complex"],["ComplexPortal%3ACPX-8422","HAS1-HAS2 hyaluronan biosynthesis complex"],["ComplexPortal%3ACPX-8410","HAS1-HAS3 hyaluronan biosynthesis complex"],["ComplexPortal%3ACPX-8481","HAS1 hyaluronan biosynthesis complex"],["ComplexPortal%3ACPX-8424","HAS2-HAS3 hyaluronan biosynthesis complex"]]},{"id":"GO:0010008","l":"endosome membrane","na":9,"nb":60,"a":[["membrane_organelle/endosome.html","endosome"],["membrane_organelle/endosome_lumen.html","endosome lumen"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/multivesicular_body_membrane.html","multivesicular body membrane"],["other/corvet_complex.html","CORVET complex"]],"b":[["ComplexPortal%3ACPX-2211","Commander complex"],["ComplexPortal%3ACPX-5424","Endosomal SNARE complex PEP12-VTI1-SYN8-SNC1"],["ComplexPortal%3ACPX-5461","Endosomal SNARE complex PEP12-VTI1-SYN8-SNC2"],["ComplexPortal%3ACPX-5421","Endosomal SNARE complex PEP12-VTI1-SYN8-YKT6"],["ComplexPortal%3ACPX-5423","Endosomal SNARE complex PEP12-VTI1-TLG1-SNC1"],["ComplexPortal%3ACPX-5462","Endosomal SNARE complex PEP12-VTI1-TLG1-SNC2"]]},{"id":"GO:0005768","l":"endosome","na":9,"nb":50,"a":[["membrane_organelle/endosome.html","endosome"],["membrane_organelle/endosome_lumen.html","endosome lumen"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/trans_golgi_network.html","trans-Golgi network"],["membrane_organelle/trans_golgi_network_membrane.html","trans-Golgi network membrane"]],"b":[["ComplexPortal%3ACPX-1153","BLOC-1 complex"],["ComplexPortal%3ACPX-6241","CHEVI tethering complex"],["ComplexPortal%3ACPX-362","Heparanase complex"],["GO%3A0005769","early endosome"],["GO%3A0036019","endolysosome"],["GO%3A0005768","endosome"]]},{"id":"GO:0005643","l":"nuclear pore","na":9,"nb":41,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nucleus.html","nucleus"],["other/nuclear_pore.html","nuclear pore"],["other/nuclear_pore_central_transport_channel.html","nuclear pore central transport channel"],["other/nuclear_pore_cytoplasmic_filaments.html","nuclear pore cytoplasmic filaments"],["other/nuclear_pore_inner_ring.html","nuclear pore inner ring"]],"b":[["ComplexPortal%3ACPX-4747","E3 ligase (RANBP2) complex"],["ComplexPortal%3ACPX-4921","E3 ligase (RANBP2) complex"],["ComplexPortal%3ACPX-2568","Nuclear pore complex"],["ComplexPortal%3ACPX-4474","Nuclear pore complex"],["ComplexPortal%3ACPX-824","Nuclear pore complex"],["ComplexPortal%3ACPX-873","Nuclear pore complex"]]},{"id":"GO:0019684","l":"photosynthesis, light reaction","na":9,"nb":39,"a":[["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"]],"b":[["GO%3A0019684","photosynthesis, light reaction"],["NCBIfam%3ANF058510","bifunctional rod-capping linker CpcD/ferredoxin--NADP reductase PetH"],["NCBIfam%3ATIGR01332","cytochrome b559 subunit alpha"],["NCBIfam%3ATIGR01333","cytochrome b559 subunit beta"],["NCBIfam%3ANF043009","cytochrome c-554 Puf2C"],["NCBIfam%3ANF040862","light-harvesting antenna LH1, beta subunit"]]},{"id":"GO:0009288","l":"bacterial-type flagellum","na":9,"nb":31,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009288","bacterial-type flagellum"]]},{"id":"GO:0072583","l":"clathrin-dependent endocytosis","na":9,"nb":18,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle.html","clathrin-coated endocytic vesicle"],["membrane_organelle/clathrin_coated_endocytic_vesicle_membrane.html","clathrin-coated endocytic vesicle membrane"],["membrane_organelle/clathrin_coated_vesicle.html","clathrin-coated vesicle"],["other/ap_2_adaptor_complex.html","AP-2 adaptor complex"],["other/clathrin_coat.html","clathrin coat"],["other/clathrin_coat_of_coated_pit.html","clathrin coat of coated pit"]],"b":[["ComplexPortal%3ACPX-5149","AP-2 Adaptor complex, alpha1 variant"],["ComplexPortal%3ACPX-5152","AP-2 Adaptor complex, alpha1 variant"],["ComplexPortal%3ACPX-5150","AP-2 Adaptor complex, alpha2 variant"],["ComplexPortal%3ACPX-5153","AP-2 Adaptor complex, alpha2 variant"],["ComplexPortal%3ACPX-26725","Clathrin, endocytosis-mediating complex, CLTA-CLTB mixed lattice variant"],["ComplexPortal%3ACPX-26726","Clathrin, endocytosis-mediating complex, CLTA-CLTB mixed lattice variant"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":15,"nb":9,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]],"b":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF25954","CusB-like, beta-barrel domain"],["Pfam%3APF13438","Domain of unknown function (DUF4113)"],["Pfam%3APF03767","HAD superfamily, subfamily IIIB (Acid phosphatase)"],["Pfam%3APF03496","ADP-ribosyltransferase exoenzyme"]]},{"id":"GO:0009941","l":"chloroplast envelope","na":9,"nb":12,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_inner_membrane.html","chloroplast inner membrane"],["membrane_organelle/chloroplast_intermembrane_space.html","chloroplast intermembrane space"],["membrane_organelle/chloroplast_membrane.html","chloroplast membrane"],["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"]],"b":[["GO%3A0009941","chloroplast envelope"],["PANTHER%3APTHR47283","ENT-KAURENE OXIDASE, CHLOROPLASTIC"],["PANTHER%3APTHR36737","EXPRESSED PROTEIN"],["PANTHER%3APTHR31038","EXPRESSED PROTEIN-RELATED"],["PANTHER%3APTHR34048","LOW-DENSITY RECEPTOR-LIKE PROTEIN"],["PANTHER%3APTHR34809","MALTOSE EXCESS PROTEIN 1, CHLOROPLASTIC-RELATED"]]},{"id":"GO:0030119","l":"AP-type membrane coat adaptor complex","na":9,"nb":12,"a":[["other/ap_3_adaptor_complex.html","AP-3 adaptor complex"],["other/ap_4_adaptor_complex.html","AP-4 adaptor complex"],["other/ap_5_adaptor_complex.html","AP-5 adaptor complex"],["other/ap_type_membrane_coat_adaptor_complex.html","AP-type membrane coat adaptor complex"],["other/clathrin_coat.html","clathrin coat"],["other/clathrin_coat_of_endocytic_vesicle.html","clathrin coat of endocytic vesicle"]],"b":[["GO%3A0030123","AP-3 adaptor complex"],["GO%3A0030124","AP-4 adaptor complex"],["GO%3A0044599","AP-5 adaptor complex"],["GO%3A0030119","AP-type membrane coat adaptor complex"],["GO%3A0030131","clathrin adaptor complex"],["PANTHER%3APTHR22780","ADAPTIN, ALPHA/GAMMA/EPSILON"]]},{"id":"GO:0009425","l":"bacterial-type flagellum basal body","na":10,"nb":9,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"],["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"]],"b":[["GO%3A0009425","bacterial-type flagellum basal body"],["NCBIfam%3ANF005435","flagellar basal body-associated protein FliL"],["NCBIfam%3ANF005995","flagellar motor switch phosphatase FliY"],["NCBIfam%3ANF005194","flagellar motor switch protein FliM"],["NCBIfam%3ANF006273","flagellar motor switch protein FliN"],["NCBIfam%3ANF006272","flagellar motor switch protein FliY"]]},{"id":"GO:0005886","l":"plasma membrane","na":8,"nb":861,"a":[["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["appendage/prostheca.html","prostheca"],["envelope/cellular_bud_membrane.html","cellular bud membrane"],["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"],["envelope/plasma_membrane.html","plasma membrane"]],"b":[["ComplexPortal%3ACPX-2838","3M complex"],["ComplexPortal%3ACPX-850","AHNAK - Annexin A2 - S100-A10 complex"],["ComplexPortal%3ACPX-6581","Alpha-beta T cell receptor complex, TRBC1 variant"],["ComplexPortal%3ACPX-6482","Alpha-beta T cell receptor complex, TRBC2 variant"],["ComplexPortal%3ACPX-2188","Amiloride-sensitive sodium channel complex, alpha-beta-gamma"],["ComplexPortal%3ACPX-3582","AMT1-1 - AMT1-3 heterotrimer, variant 1"]]},{"id":"GO:0031090","l":"organelle membrane","na":8,"nb":270,"a":[["membrane_organelle/apicomplexan_dense_granule_membrane.html","apicomplexan dense granule membrane"],["membrane_organelle/microneme_membrane.html","microneme membrane"],["membrane_organelle/mitosome_inner_membrane.html","mitosome inner membrane"],["membrane_organelle/mitosome_outer_membrane.html","mitosome outer membrane"],["membrane_organelle/nuclear_inner_membrane.html","nuclear inner membrane"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"]],"b":[["GO%3A0098588","bounding membrane of organelle"],["GO%3A0005789","endoplasmic reticulum membrane"],["GO%3A0032580","Golgi cisterna membrane"],["GO%3A0110146","magnetosome membrane"],["GO%3A0031966","mitochondrial membrane"],["GO%3A0031965","nuclear membrane"]]},{"id":"GO:0005783","l":"endoplasmic reticulum","na":8,"nb":226,"a":[["membrane_organelle/cis_golgi_network.html","cis-Golgi network"],["membrane_organelle/cis_golgi_network_membrane.html","cis-Golgi network membrane"],["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"],["membrane_organelle/endoplasmic_reticulum_lumen.html","endoplasmic reticulum lumen"],["membrane_organelle/endoplasmic_reticulum_membrane.html","endoplasmic reticulum membrane"]],"b":[["ComplexPortal%3ACPX-2360","COPII vesicle coat complex"],["ComplexPortal%3ACPX-2400","COPII vesicle coat complex"],["ComplexPortal%3ACPX-2523","COPII vesicle coat complex"],["ComplexPortal%3ACPX-26602","DOP1A-MON2, golgi-endosome traffic complex"],["ComplexPortal%3ACPX-8736","ERAP1-ERAP2 endoplasmic reticulum aminopeptidase complex"],["ComplexPortal%3ACPX-4236","Gamma-secretase complex, Aph1a-Psen2 variant"]]},{"id":"GO:0009279","l":"cell outer membrane","na":8,"nb":67,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/prostheca.html","prostheca"],["envelope/cell_outer_membrane.html","cell outer membrane"],["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["envelope/mycolate_outer_membrane.html","mycolate outer membrane"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"]],"b":[["ComplexPortal%3ACPX-1083","Cobalamin outer membrane transporter complex"],["ComplexPortal%3ACPX-4743","Curli secretion complex"],["ComplexPortal%3ACPX-1093","LptDE outer membrane translocon complex"],["ComplexPortal%3ACPX-5890","Translocation and assembly module complex"],["GO%3A0009279","cell outer membrane"],["GO%3A0036407","mycolate outer membrane"]]},{"id":"GO:0000776","l":"kinetochore","na":8,"nb":59,"a":[["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["other/cbf3_complex.html","CBF3 complex"],["other/coma_complex.html","COMA complex"],["other/dash_complex.html","DASH complex"],["other/kinetochore.html","kinetochore"],["other/mis12_mind_type_complex.html","MIS12/MIND type complex"]],"b":[["ComplexPortal%3ACPX-1898","CBF3 complex"],["ComplexPortal%3ACPX-1156","Central kinetochore CTF19 complex"],["ComplexPortal%3ACPX-10081","DASH complex"],["ComplexPortal%3ACPX-5644","Kinetochore KNL1 complex"],["ComplexPortal%3ACPX-5702","Kinetochore KNL1 complex"],["ComplexPortal%3ACPX-1186","Kinetochore MIS12 complex"]]},{"id":"GO:0005741","l":"mitochondrial outer membrane","na":8,"nb":38,"a":[["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_intermembrane_space.html","mitochondrial intermembrane space"],["membrane_organelle/mitochondrial_membrane.html","mitochondrial membrane"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"],["other/ermes_complex.html","ERMES complex"]],"b":[["ComplexPortal%3ACPX-1989","BAK1 oligomer"],["ComplexPortal%3ACPX-2033","BAK1 oligomer"],["ComplexPortal%3ACPX-2034","BAK1 oligomer"],["ComplexPortal%3ACPX-6133","SAM mitochondrial sorting and assembly machinery complex"],["ComplexPortal%3ACPX-6101","SARS-CoV 9b complex"],["ComplexPortal%3ACPX-6121","TOM40 mitochondrial outer membrane translocase complex"]]},{"id":"GO:0005774","l":"vacuolar membrane","na":8,"nb":23,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v0_domain.html","vacuolar proton-transporting V-type ATPase, V0 domain"],["membrane_organelle/contractile_vacuolar_membrane.html","contractile vacuolar membrane"],["membrane_organelle/fungal_type_vacuole_membrane.html","fungal-type vacuole membrane"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"],["membrane_organelle/vacuolar_lumen.html","vacuolar lumen"]],"b":[["ComplexPortal%3ACPX-26523","GATOR1 complex"],["ComplexPortal%3ACPX-3231","SEA complex"],["ComplexPortal%3ACPX-5401","Vacuolar SNARE complex VAM3-VTI1-VAM7-NYV1"],["ComplexPortal%3ACPX-1887","Vacuolar SNARE complex VAM3-VTI1-VAM7-YKT6"],["GO%3A0000421","autophagosome membrane"],["GO%3A0031164","contractile vacuolar membrane"]]},{"id":"GO:0030126","l":"COPI vesicle coat","na":8,"nb":19,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"],["membrane_organelle/golgi_membrane.html","Golgi membrane"]],"b":[["ComplexPortal%3ACPX-7803","COPI vesicle coat complex, COPG1-COPZ1 variant"],["ComplexPortal%3ACPX-7970","COPI vesicle coat complex, COPG1-COPZ2 variant"],["ComplexPortal%3ACPX-7969","COPI vesicle coat complex, COPG2-COPZ1 variant"],["ComplexPortal%3ACPX-1652","COPI vesicle coat complex"],["ComplexPortal%3ACPX-2820","COPI vesicle coat complex"],["GO%3A0030126","COPI vesicle coat"]]},{"id":"GO:0060205","l":"cytoplasmic vesicle lumen","na":8,"nb":18,"a":[["membrane_organelle/autophagosome_lumen.html","autophagosome lumen"],["membrane_organelle/clathrin_coated_vesicle_lumen.html","clathrin-coated vesicle lumen"],["membrane_organelle/copi_coated_vesicle_lumen.html","COPI-coated vesicle lumen"],["membrane_organelle/copii_coated_vesicle_lumen.html","COPII-coated vesicle lumen"],["membrane_organelle/cvt_vesicle_lumen.html","Cvt vesicle lumen"],["membrane_organelle/cytoplasmic_vesicle.html","cytoplasmic vesicle"]],"b":[["GO%3A0034422","aleurone grain lumen"],["GO%3A0060202","clathrin-sculpted acetylcholine transport vesicle lumen"],["GO%3A0061201","clathrin-sculpted gamma-aminobutyric acid transport vesicle lumen"],["GO%3A0060204","clathrin-sculpted glutamate transport vesicle lumen"],["GO%3A0070082","clathrin-sculpted monoamine transport vesicle lumen"],["GO%3A0106172","COPI-coated vesicle lumen"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":8,"nb":18,"a":[["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["spore/endospore_coat.html","endospore coat"],["spore/endospore_cortex.html","endospore cortex"]],"b":[["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["Pfam%3APF14562","Restriction endonuclease BglI"],["Pfam%3APF09195","Restriction endonuclease BglII/BglIII"],["Pfam%3APF09208","Restriction endonuclease MspI"]]},{"id":"GO:0030125","l":"clathrin vesicle coat","na":8,"nb":9,"a":[["membrane_organelle/clathrin_coated_vesicle.html","clathrin-coated vesicle"],["membrane_organelle/clathrin_coated_vesicle_membrane.html","clathrin-coated vesicle membrane"],["membrane_organelle/coated_vesicle.html","coated vesicle"],["other/clathrin_coat.html","clathrin coat"],["other/clathrin_coat_of_endocytic_vesicle.html","clathrin coat of endocytic vesicle"],["other/clathrin_coat_of_trans_golgi_network_vesicle.html","clathrin coat of trans-Golgi network vesicle"]],"b":[["ComplexPortal%3ACPX-2792","Clathrin complex"],["GO%3A0030128","clathrin coat of endocytic vesicle"],["GO%3A0030129","clathrin coat of synaptic vesicle"],["GO%3A0030130","clathrin coat of trans-Golgi network vesicle"],["GO%3A0030125","clathrin vesicle coat"],["PANTHER%3APTHR16156","AFTIPHILIN A-RELATED"]]},{"id":"GO:0000329","l":"fungal-type vacuole membrane","na":8,"nb":8,"a":[["membrane_organelle/fungal_type_vacuole.html","fungal-type vacuole"],["membrane_organelle/fungal_type_vacuole_lumen.html","fungal-type vacuole lumen"],["membrane_organelle/fungal_type_vacuole_membrane.html","fungal-type vacuole membrane"],["membrane_organelle/vacuole.html","vacuole"],["other/gator1_complex.html","GATOR1 complex"],["other/gtr1_gtr2_gtpase_complex.html","Gtr1-Gtr2 GTPase complex"]],"b":[["ComplexPortal%3ACPX-3172","EGO complex"],["ComplexPortal%3ACPX-869","FET5-FTH1 high affinity iron exporter complex"],["ComplexPortal%3ACPX-1304","MYO2-VAC17-VAC8 transport complex"],["ComplexPortal%3ACPX-1193","Vacuolar proton translocating ATPase complex, vacuole variant"],["ComplexPortal%3ACPX-5521","Vacuolar SNARE complex SSO1-SEC9-NYV1"],["GO%3A0000329","fungal-type vacuole membrane"]]},{"id":"NCBITaxon:565050","l":"Caulobacter vibrioides NA1000","na":8,"nb":8,"a":[["appendage/prostheca.html","prostheca"],["appendage/stalk_crossband.html","stalk crossband"],["appendage/tad_pilus.html","Tad pilus"],["cytoskeleton/bactofilin_filament.html","bactofilin filament"],["cytoskeleton/crescentin_filament.html","crescentin filament"],["cytoskeleton/cytoophidium.html","cytoophidium"]],"b":[["Pfam%3APF02767","DNA polymerase III beta subunit, central domain"],["Pfam%3APF02768","DNA polymerase III beta subunit, C-terminal domain"],["Pfam%3APF00712","DNA polymerase III beta subunit, N-terminal domain"],["Pfam%3APF21249","GyrB, hook"],["Pfam%3APF07378","Flagellar protein FlbT"],["Pfam%3APF03748","Flagellar basal body-associated protein FliL"]]},{"id":"GO:0030120","l":"vesicle coat","na":7,"nb":18,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"],["other/clathrin_vesicle_coat.html","clathrin vesicle coat"],["other/copi_vesicle_coat.html","COPI vesicle coat"],["other/copii_vesicle_coat.html","COPII vesicle coat"],["other/membrane_coat.html","membrane coat"]],"b":[["GO%3A0030125","clathrin vesicle coat"],["GO%3A0030126","COPI vesicle coat"],["GO%3A0030127","COPII vesicle coat"],["GO%3A0030120","vesicle coat"],["PANTHER%3APTHR16156","AFTIPHILIN A-RELATED"],["PANTHER%3APTHR15463","AP1 GAMMA SUBUNIT BINDING PROTEIN 1"]]},{"id":"NCBITaxon:5811","l":"Toxoplasma gondii","na":16,"nb":7,"a":[["cytoskeleton/conoid.html","conoid"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["membrane_organelle/apicomplexan_dense_granule.html","apicomplexan dense granule"],["membrane_organelle/apicomplexan_dense_granule_membrane.html","apicomplexan dense granule membrane"],["membrane_organelle/apicoplast.html","apicoplast"],["membrane_organelle/apicoplast_membrane.html","apicoplast membrane"]],"b":[["Pfam%3APF24633","Domain of unknown function (DUF7630)"],["Pfam%3APF24634","Domain of unknown function (DUF7631)"],["Pfam%3APF05084","Granule antigen protein (GRA6)"],["Pfam%3APF14531","Kinase-like"],["Pfam%3APF10564","Sialic-acid binding micronemal adhesive repeat"],["MCSA%3A209","adenosine kinase"]]},{"id":"GO:0009526","l":"plastid envelope","na":7,"nb":11,"a":[["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/plastid_envelope.html","plastid envelope"],["membrane_organelle/plastid_inner_membrane.html","plastid inner membrane"],["membrane_organelle/plastid_intermembrane_space.html","plastid intermembrane space"],["membrane_organelle/plastid_membrane.html","plastid membrane"]],"b":[["GO%3A0033096","amyloplast envelope"],["GO%3A0009941","chloroplast envelope"],["GO%3A0031898","chromoplast envelope"],["GO%3A0033112","cyanelle envelope"],["GO%3A0034425","etioplast envelope"],["GO%3A0009526","plastid envelope"]]},{"id":"GO:0009579","l":"thylakoid","na":7,"nb":11,"a":[["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_lumen.html","plasma membrane-derived thylakoid lumen"],["membrane_organelle/plastid_thylakoid.html","plastid thylakoid"]],"b":[["GO%3A0030075","bacterial thylakoid"],["GO%3A0070116","organellar chromatophore thylakoid"],["GO%3A0031976","plastid thylakoid"],["GO%3A0009579","thylakoid"],["NCBIfam%3ANF014449","photosystem I assembly protein Ycf4"],["NCBIfam%3ATIGR01336","photosystem I core protein PsaB"]]},{"id":"GO:0030136","l":"clathrin-coated vesicle","na":7,"nb":10,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle.html","clathrin-coated endocytic vesicle"],["membrane_organelle/clathrin_coated_endocytic_vesicle_lumen.html","clathrin-coated endocytic vesicle lumen"],["membrane_organelle/clathrin_coated_vesicle.html","clathrin-coated vesicle"],["membrane_organelle/clathrin_coated_vesicle_lumen.html","clathrin-coated vesicle lumen"],["membrane_organelle/clathrin_coated_vesicle_membrane.html","clathrin-coated vesicle membrane"],["membrane_organelle/coated_vesicle.html","coated vesicle"]],"b":[["GO%3A0045334","clathrin-coated endocytic vesicle"],["GO%3A0030136","clathrin-coated vesicle"],["GO%3A0060198","clathrin-sculpted vesicle"],["GO%3A0030140","trans-Golgi network transport vesicle"],["GO%3A0033093","Weibel-Palade body"],["PANTHER%3APTHR10639","CLATHRIN LIGHT CHAIN"]]},{"id":"GO:0009532","l":"plastid stroma","na":7,"nb":9,"a":[["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"],["membrane_organelle/plastid.html","plastid"],["membrane_organelle/plastid_envelope.html","plastid envelope"],["membrane_organelle/plastid_inner_membrane.html","plastid inner membrane"],["membrane_organelle/plastid_stroma.html","plastid stroma"]],"b":[["GO%3A0009570","chloroplast stroma"],["GO%3A0009575","chromoplast stroma"],["GO%3A0034060","cyanelle stroma"],["GO%3A0009577","elaioplast stroma"],["GO%3A0009578","etioplast stroma"],["GO%3A1905506","gerontoplast stroma"]]},{"id":"GO:0009535","l":"chloroplast thylakoid membrane","na":7,"nb":9,"a":[["inclusion/plastoglobule.html","plastoglobule"],["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_membrane.html","chloroplast membrane"],["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"],["membrane_organelle/chloroplast_thylakoid_lumen.html","chloroplast thylakoid lumen"],["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"]],"b":[["GO%3A0009535","chloroplast thylakoid membrane"],["PANTHER%3APTHR34048","LOW-DENSITY RECEPTOR-LIKE PROTEIN"],["PANTHER%3APTHR35733","OS02G0307800 PROTEIN"],["PANTHER%3APTHR36814","PHOTOSYSTEM I REACTION CENTER SUBUNIT N, CHLOROPLASTIC"],["PANTHER%3APTHR34787","PHOTOSYSTEM I REACTION CENTER SUBUNIT VI-2, CHLOROPLASTIC"],["PANTHER%3APTHR33149","PHOTOSYSTEM II PROTEIN D1"]]},{"id":"GO:0030137","l":"COPI-coated vesicle","na":7,"nb":9,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/copi_coated_vesicle_lumen.html","COPI-coated vesicle lumen"],["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"]],"b":[["GO%3A0030142","COPI-coated Golgi to ER transport vesicle"],["GO%3A0030143","COPI-coated inter-Golgi transport vesicle"],["GO%3A0030137","COPI-coated vesicle"],["PANTHER%3APTHR19876","COATOMER"],["PANTHER%3APTHR10635","COATOMER SUBUNIT BETA"],["PANTHER%3APTHR10121","COATOMER SUBUNIT DELTA"]]},{"id":"GO:0009274","l":"peptidoglycan-based cell wall","na":7,"nb":8,"a":[["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"],["appendage/prostheca.html","prostheca"],["division_machinery/elongasome.html","elongasome"],["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]],"b":[["GO%3A0009276","Gram-negative-bacterium-type cell wall"],["GO%3A0009275","Gram-positive-bacterium-type cell wall"],["GO%3A0009274","peptidoglycan-based cell wall"],["NCBIfam%3ANF007061","bifunctional glycosyl transferase/transpeptidase"],["NCBIfam%3ATIGR03656","heme uptake protein IsdC"],["NCBIfam%3ATIGR02070","monofunctional biosynthetic peptidoglycan transglycosylase"]]},{"id":"GO:0030665","l":"clathrin-coated vesicle membrane","na":7,"nb":7,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle_membrane.html","clathrin-coated endocytic vesicle membrane"],["membrane_organelle/clathrin_coated_vesicle.html","clathrin-coated vesicle"],["membrane_organelle/clathrin_coated_vesicle_lumen.html","clathrin-coated vesicle lumen"],["membrane_organelle/clathrin_coated_vesicle_membrane.html","clathrin-coated vesicle membrane"],["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"]],"b":[["GO%3A0030669","clathrin-coated endocytic vesicle membrane"],["GO%3A0030665","clathrin-coated vesicle membrane"],["GO%3A0060201","clathrin-sculpted acetylcholine transport vesicle membrane"],["GO%3A0061202","clathrin-sculpted gamma-aminobutyric acid transport vesicle membrane"],["GO%3A0060203","clathrin-sculpted glutamate transport vesicle membrane"],["GO%3A0070083","clathrin-sculpted monoamine transport vesicle membrane"]]},{"id":"GO:0098800","l":"inner mitochondrial membrane protein complex","na":6,"nb":88,"a":[["other/micos_complex.html","MICOS complex"],["other/mitochondrial_inner_membrane_peptidase_complex.html","mitochondrial inner membrane peptidase complex"],["other/mitochondrial_prohibitin_complex.html","mitochondrial prohibitin complex"],["other/pam_complex_tim23_associated_import_motor.html","PAM complex, Tim23 associated import motor"],["other/tim22_mitochondrial_import_inner_membrane_insertion_complex.html","TIM22 mitochondrial import inner membrane insertion complex"],["other/tim23_mitochondrial_import_inner_membrane_translocase_complex.html","TIM23 mitochondrial import inner membrane translocase complex"]],"b":[["ComplexPortal%3ACPX-6154","Mitochondrial pyruvate carrier complex"],["ComplexPortal%3ACPX-8068","Mitochondrial pyruvate carrier complex"],["ComplexPortal%3ACPX-8062","Mitochondrial pyruvate carrier complex, testis variant"],["ComplexPortal%3ACPX-302","Mitochondrial pyruvate carrier, fermentative isoform"],["ComplexPortal%3ACPX-303","Mitochondrial pyruvate carrier, respiratory isoform"],["GO%3A0032478","heterotetrameric polyprenyl diphosphate synthase complex"]]},{"id":"GO:0005740","l":"mitochondrial envelope","na":6,"nb":54,"a":[["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrial_intermembrane_space.html","mitochondrial intermembrane space"],["membrane_organelle/mitochondrial_membrane.html","mitochondrial membrane"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"]],"b":[["GO%3A0005740","mitochondrial envelope"],["Pfam%3APF01215","Cytochrome c oxidase subunit Vb"],["PANTHER%3APTHR15487","ADP-RIBOSYLATION FACTOR-LIKE PROTEIN 2-BINDING PROTEIN"],["PANTHER%3APTHR36959","ALTERED INHERITANCE OF MITOCHONDRIA PROTEIN 24, MITOCHONDRIAL"],["PANTHER%3APTHR28202","ASSEMBLY FACTOR CBP4"],["PANTHER%3APTHR37278","AUTOPHAGY-RELATED PROTEIN 33-RELATED"]]},{"id":"GO:0009507","l":"chloroplast","na":6,"nb":32,"a":[["inclusion/plastoglobule.html","plastoglobule"],["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"],["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"],["other/pyrenoid.html","pyrenoid"]],"b":[["ComplexPortal%3ACPX-1337","WHY1 complex"],["ComplexPortal%3ACPX-3586","WHY3 complex"],["GO%3A0009507","chloroplast"],["NCBIfam%3ANF018787","photosystem II reaction center protein PsbW"],["PANTHER%3APTHR31899","BETA-CAROTENE 3-HYDROXYLASE 1, CHLOROPLASTIC"],["PANTHER%3APTHR36404","EMBRYO DEFECTIVE 2737"]]},{"id":"GO:0000813","l":"ESCRT I complex","na":6,"nb":27,"a":[["membrane_organelle/endosome.html","endosome"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/multivesicular_body.html","multivesicular body"],["other/escrt_0_complex.html","ESCRT-0 complex"],["other/escrt_i_complex.html","ESCRT I complex"]],"b":[["ComplexPortal%3ACPX-940","ESCRT-I complex"],["ComplexPortal%3ACPX-7162","ESCRT-I complex, VPS37A-MVB12A variant"],["ComplexPortal%3ACPX-7146","ESCRT-I complex, VPS37A-MVB12B variant"],["ComplexPortal%3ACPX-7181","ESCRT-I complex, VPS37A-UBAP1 variant"],["ComplexPortal%3ACPX-2460","ESCRT-I complex, Vps37A variant"],["ComplexPortal%3ACPX-2505","ESCRT-I complex, VPS37B-MVB12A variant"]]},{"id":"GO:0005802","l":"trans-Golgi network","na":6,"nb":24,"a":[["membrane_organelle/trans_golgi_network.html","trans-Golgi network"],["membrane_organelle/trans_golgi_network_membrane.html","trans-Golgi network membrane"],["membrane_organelle/trans_golgi_network_transport_vesicle_membrane.html","trans-Golgi network transport vesicle membrane"],["other/clathrin_coat_of_trans_golgi_network_vesicle.html","clathrin coat of trans-Golgi network vesicle"],["other/exomer_complex.html","exomer complex"],["other/garp_complex.html","GARP complex"]],"b":[["ComplexPortal%3ACPX-5151","AP-4 Adaptor complex"],["ComplexPortal%3ACPX-5154","AP-4 Adaptor complex"],["ComplexPortal%3ACPX-8167","OSBPL9-OSBPL10 oxysterol-binding protein-related complex"],["ComplexPortal%3ACPX-8168","OSBPL9-OSBPL11 oxysterol-binding protein-related complex"],["GO%3A0005802","trans-Golgi network"],["InterPro%3AIPR028129","Consortin, C-terminal domain"]]},{"id":"GO:0030150","l":"protein import into mitochondrial matrix","na":6,"nb":17,"a":[["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"],["other/mitochondrial_outer_membrane_translocase_complex.html","mitochondrial outer membrane translocase complex"],["other/pam_complex_tim23_associated_import_motor.html","PAM complex, Tim23 associated import motor"],["other/tim23_mitochondrial_import_inner_membrane_translocase_complex.html","TIM23 mitochondrial import inner membrane translocase complex"]],"b":[["ComplexPortal%3ACPX-1744","Mitochondrial sorting and assembly machinery complex"],["ComplexPortal%3ACPX-6127","TIM23 mitochondrial inner membrane pre-sequence translocase complex, sort variant"],["GO%3A0030150","protein import into mitochondrial matrix"],["Pfam%3APF02064","MAS20 protein import receptor"],["Pfam%3APF08294","TIM21"],["PANTHER%3APTHR20922","DNL-TYPE ZINC FINGER PROTEIN"]]},{"id":"GO:0005635","l":"nuclear envelope","na":6,"nb":16,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nuclear_envelope_lumen.html","nuclear envelope lumen"],["membrane_organelle/nuclear_inner_membrane.html","nuclear inner membrane"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"],["membrane_organelle/nucleus.html","nucleus"],["other/nuclear_pore.html","nuclear pore"]],"b":[["ComplexPortal%3ACPX-1068","Importin complex, KAP60-KAP95"],["ComplexPortal%3ACPX-1287","MPS2-BBP1 spindle pole body anchor complex"],["ComplexPortal%3ACPX-2568","Nuclear pore complex"],["ComplexPortal%3ACPX-4474","Nuclear pore complex"],["ComplexPortal%3ACPX-824","Nuclear pore complex"],["ComplexPortal%3ACPX-873","Nuclear pore complex"]]},{"id":"GO:0005742","l":"mitochondrial outer membrane translocase complex","na":6,"nb":16,"a":[["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"],["other/mitochondrial_outer_membrane_translocase_complex.html","mitochondrial outer membrane translocase complex"],["other/sam_complex.html","SAM complex"],["other/tim23_mitochondrial_import_inner_membrane_translocase_complex.html","TIM23 mitochondrial import inner membrane translocase complex"]],"b":[["ComplexPortal%3ACPX-473","TOM40 mitochondrial outer membrane translocase core complex"],["ComplexPortal%3ACPX-474","TOM40 mitochondrial outer membrane translocase holocomplex"],["GO%3A0005742","mitochondrial outer membrane translocase complex"],["GO%3A0001401","SAM complex"],["GO%3A0140596","TOM complex"],["Pfam%3APF02064","MAS20 protein import receptor"]]},{"id":"GO:0030127","l":"COPII vesicle coat","na":6,"nb":16,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"],["membrane_organelle/endoplasmic_reticulum_membrane.html","endoplasmic reticulum membrane"],["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"],["other/copii_vesicle_coat.html","COPII vesicle coat"],["other/vesicle_coat.html","vesicle coat"]],"b":[["ComplexPortal%3ACPX-2360","COPII vesicle coat complex"],["ComplexPortal%3ACPX-2400","COPII vesicle coat complex"],["ComplexPortal%3ACPX-2523","COPII vesicle coat complex"],["ComplexPortal%3ACPX-1341","SEC23-LST1 COPII cargo recruitment complex"],["GO%3A0030127","COPII vesicle coat"],["NCBIfam%3ANF016683","Sec23/Sec24 zinc finger-containing protein"]]},{"id":"GO:0042170","l":"plastid membrane","na":6,"nb":13,"a":[["membrane_organelle/chloroplast_membrane.html","chloroplast membrane"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/plastid.html","plastid"],["membrane_organelle/plastid_inner_membrane.html","plastid inner membrane"],["membrane_organelle/plastid_membrane.html","plastid membrane"],["membrane_organelle/plastid_outer_membrane.html","plastid outer membrane"]],"b":[["GO%3A0033097","amyloplast membrane"],["GO%3A0160211","apicoplast membrane"],["GO%3A0031969","chloroplast membrane"],["GO%3A0046862","chromoplast membrane"],["GO%3A0033113","cyanelle membrane"],["GO%3A7770040","epiplastidial membrane"]]},{"id":"GO:0005775","l":"vacuolar lumen","na":6,"nb":10,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["membrane_organelle/contractile_vacuole_lumen.html","contractile vacuole lumen"],["membrane_organelle/fungal_type_vacuole_lumen.html","fungal-type vacuole lumen"],["membrane_organelle/vacuolar_lumen.html","vacuolar lumen"],["membrane_organelle/vacuolar_membrane.html","vacuolar membrane"],["membrane_organelle/vacuole.html","vacuole"]],"b":[["GO%3A0120282","autolysosome lumen"],["GO%3A0034423","autophagosome lumen"],["GO%3A0035578","azurophil granule lumen"],["GO%3A1904856","cytolytic granule lumen"],["GO%3A0160318","endolysosomal intralumenal vesicle lumen"],["GO%3A0000328","fungal-type vacuole lumen"]]},{"id":"GO:0071985","l":"multivesicular body sorting pathway","na":10,"nb":6,"a":[["membrane_organelle/endosome_lumen.html","endosome lumen"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/multivesicular_body.html","multivesicular body"],["membrane_organelle/multivesicular_body_lumen.html","multivesicular body lumen"],["membrane_organelle/multivesicular_body_membrane.html","multivesicular body membrane"]],"b":[["ComplexPortal%3ACPX-329","ESCRT-III complex"],["ComplexPortal%3ACPX-332","ESCRT-III complex, variant Chmp1b1"],["ComplexPortal%3ACPX-333","ESCRT-III complex, variant Chmp1b2"],["GO%3A0032509","endosome transport via multivesicular body sorting pathway"],["GO%3A0071985","multivesicular body sorting pathway"],["Pfam%3APF05871","ESCRT-II complex subunit"]]},{"id":"NCBITaxon:2762","l":"Cyanophora paradoxa","na":10,"nb":6,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"]],"b":[["Pfam%3APF06799","Conserved in the green lineage and diatoms 27"],["Pfam%3APF06868","Protein of unknown function (DUF1257)"],["Pfam%3APF10693","Protein of unknown function (DUF2499)"],["Pfam%3APF10726","Protein of function (DUF2518)"],["Pfam%3APF04481","Protein of unknown function (DUF561)"],["Pfam%3APF05421","Protein of unknown function (DUF751)"]]},{"id":"DOI:10.1073/pnas.2135385100","l":"","na":6,"nb":8,"a":[["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrial_matrix.html","mitochondrial matrix"],["membrane_organelle/mitochondrial_membrane.html","mitochondrial membrane"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"]],"b":[["InterPro%3AIPR063511","SOV1, C-terminal domain"],["InterPro%3AIPR063435","SOV1, middle domain"],["InterPro%3AIPR062675","SOV1, N-terminal domain"],["InterPro%3AIPR062614","Uncharacterised protein YJR039W, C-terminal domain"],["InterPro%3AIPR063509","Uncharacterised protein YJR039W, middle domain"],["InterPro%3AIPR062671","Uncharacterised protein YJR039W, N-terminal domain"]]},{"id":"GO:0038202","l":"TORC1 signaling","na":6,"nb":7,"a":[["other/gator1_complex.html","GATOR1 complex"],["other/gator2_complex.html","GATOR2 complex"],["other/gtr1_gtr2_gtpase_complex.html","Gtr1-Gtr2 GTPase complex"],["other/ragulator_complex.html","Ragulator complex"],["other/seh1_associated_complex.html","Seh1-associated complex"],["other/torc1_complex.html","TORC1 complex"]],"b":[["ComplexPortal%3ACPX-26528","Ragulator complex"],["ComplexPortal%3ACPX-2709","Ragulator complex"],["ComplexPortal%3ACPX-4741","Ragulator complex"],["ComplexPortal%3ACPX-4761","Ragulator complex"],["ComplexPortal%3ACPX-2265","TORC1 complex"],["GO%3A0038202","TORC1 signaling"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":7,"nb":6,"a":[["membrane_organelle/apicoplast.html","apicoplast"],["membrane_organelle/apicoplast_membrane.html","apicoplast membrane"],["membrane_organelle/exoneme.html","exoneme"],["membrane_organelle/food_vacuole.html","food vacuole"],["membrane_organelle/inner_membrane_pellicle_complex.html","inner membrane pellicle complex"],["membrane_organelle/parasitophorous_vacuole.html","parasitophorous vacuole"]],"b":[["IDPO%3A0000037","molecular recognition display site"],["Pfam%3APF05403","Plasmodium histidine-rich protein (HRPII/III)"],["Pfam%3APF17986","EMP3-KAHRP-like N-terminal domain"],["Pfam%3APF03805","Cytoadherence-linked asexual protein"],["Pfam%3APF06589","Circumsporozoite-related antigen (CRA)"],["TED%3AAF-Q9U431-F1-model_v4_TED01","TED novel fold AF-Q9U431-F1-model_v4_TED01"]]},{"id":"GO:0009706","l":"chloroplast inner membrane","na":6,"nb":6,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_inner_membrane.html","chloroplast inner membrane"],["membrane_organelle/chloroplast_intermembrane_space.html","chloroplast intermembrane space"],["membrane_organelle/chloroplast_membrane.html","chloroplast membrane"],["other/tic_complex.html","Tic complex"]],"b":[["GO%3A0009706","chloroplast inner membrane"],["PANTHER%3APTHR31038","EXPRESSED PROTEIN-RELATED"],["PANTHER%3APTHR34048","LOW-DENSITY RECEPTOR-LIKE PROTEIN"],["PANTHER%3APTHR36317","PROTEIN MULTIPLE CHLOROPLAST DIVISION SITE 1"],["PANTHER%3APTHR47296","PROTEIN TIC 40, CHLOROPLASTIC"],["PANTHER%3APTHR37755","PROTEIN TIC 56, CHLOROPLASTIC"]]},{"id":"GO:0030662","l":"coated vesicle membrane","na":6,"nb":6,"a":[["membrane_organelle/clathrin_coated_vesicle_membrane.html","clathrin-coated vesicle membrane"],["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"],["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"],["other/vesicle_coat.html","vesicle coat"]],"b":[["GO%3A0030665","clathrin-coated vesicle membrane"],["GO%3A0030662","coated vesicle membrane"],["GO%3A0030663","COPI-coated vesicle membrane"],["GO%3A0012507","ER to Golgi transport vesicle membrane"],["PANTHER%3APTHR45837","VESICLE-TRAFFICKING PROTEIN SEC22B"],["PANTHER%3APTHR21230","VESICLE TRANSPORT V-SNARE PROTEIN VTI1-RELATED"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":6,"nb":6,"a":[["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/rc_lh1_pufx_core_complex.html","RC-LH1-PufX core complex"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"],["membrane_organelle/plasma_membrane_derived_chromatophore_membrane.html","plasma membrane-derived chromatophore membrane"]],"b":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF02963","Restriction endonuclease EcoRI"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["PROSITE%3APS00974","Mannitol dehydrogenases signature"],["PROSITE%3APS00567","Phosphoribulokinase signature"],["MCSA%3A701","dimethylsulfoxide reductase"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":5,"nb":2669,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"],["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]],"b":[["IDPO%3A0000002","disorder"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000045","phosphorylation display site"],["IDPO%3A0000059","self-inhibition"],["Pfam%3APF17837","4'-phosphopantetheinyl transferase N-terminal domain"]]},{"id":"GO:0098796","l":"membrane protein complex","na":5,"nb":234,"a":[["other/ap_type_membrane_coat_adaptor_complex.html","AP-type membrane coat adaptor complex"],["other/emc_complex.html","EMC complex"],["other/hops_complex.html","HOPS complex"],["other/membrane_coat.html","membrane coat"],["other/retromer_complex.html","retromer complex"]],"b":[["GO%3A0002180","5-lipoxygenase complex"],["GO%3A0170014","ankyrin-1 complex"],["GO%3A0030119","AP-type membrane coat adaptor complex"],["GO%3A0097658","Asi complex"],["GO%3A0062079","ATG2-ATG18 complex"],["GO%3A1990063","Bam protein complex"]]},{"id":"GO:0005739","l":"mitochondrion","na":5,"nb":233,"a":[["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_matrix.html","mitochondrial matrix"],["membrane_organelle/mitochondrial_membrane.html","mitochondrial membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"],["nucleoid/kinetoplast.html","kinetoplast"]],"b":[["ComplexPortal%3ACPX-3034","Acetolactate synthase complex"],["ComplexPortal%3ACPX-1331","bI3 intron splicing factor complex"],["ComplexPortal%3ACPX-1314","bI4 intron splicing factor complex"],["ComplexPortal%3ACPX-6928","BOL1-GRX5 iron-sulfur cluster assembly complex"],["ComplexPortal%3ACPX-6930","BOL3-GRX5 iron-sulfur cluster assembly complex"],["ComplexPortal%3ACPX-384","CBP3-CBP6 complex"]]},{"id":"NCBITaxon:44689","l":"Dictyostelium discoideum","na":5,"nb":153,"a":[["membrane_organelle/contractile_vacuole.html","contractile vacuole"],["membrane_organelle/esterosome.html","esterosome"],["membrane_organelle/esterosome_lumen.html","esterosome lumen"],["membrane_organelle/esterosome_membrane.html","esterosome membrane"],["membrane_organelle/spongiome.html","spongiome"]],"b":[["IDPO%3A0000002","disorder"],["IDPO%3A0000030","entropic chain"],["IDPO%3A0000006","order"],["IDPO%3A0000058","self-activation"],["Pfam%3APF23297","Highly reducing polyketide synthase sdgA, C-terminal ACP domain"],["Pfam%3APF09192","Actin-fragmin kinase, catalytic"]]},{"id":"GO:0015979","l":"photosynthesis","na":5,"nb":146,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"],["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"]],"b":[["GO%3A0015979","photosynthesis"],["NCBIfam%3ATIGR01337","allophycocyanin subunit beta"],["NCBIfam%3ATIGR03056","alpha/beta fold hydrolase BchO"],["NCBIfam%3ANF013497","Apocytochrome F, C-terminal"],["NCBIfam%3ANF014391","Bacteriochlorophyll A protein"],["NCBIfam%3ANF058502","C-phycocyanin alpha-cysteine-84 phycocyanobilin lyase subunit CpcE"]]},{"id":"GO:0005929","l":"cilium","na":5,"nb":101,"a":[["appendage/ciliary_membrane.html","ciliary membrane"],["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"],["appendage/mastigoneme.html","mastigoneme"],["cytoskeleton/ciliary_basal_body.html","ciliary basal body"]],"b":[["ComplexPortal%3ACPX-2747","BBSome complex"],["ComplexPortal%3ACPX-428","BBSome complex"],["ComplexPortal%3ACPX-5001","CPLANE complex"],["ComplexPortal%3ACPX-5026","CPLANE complex"],["ComplexPortal%3ACPX-26357","Dynein-2 complex, light-chain variant 1"],["ComplexPortal%3ACPX-26360","Dynein-2 complex, light-chain variant 2"]]},{"id":"GO:0005759","l":"mitochondrial matrix","na":5,"nb":55,"a":[["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrial_matrix.html","mitochondrial matrix"],["membrane_organelle/mitochondrion.html","mitochondrion"],["nucleoid/mitochondrial_nucleoid.html","mitochondrial nucleoid"],["other/pam_complex_tim23_associated_import_motor.html","PAM complex, Tim23 associated import motor"]],"b":[["ComplexPortal%3ACPX-865","Electron transfer flavoprotein complex"],["ComplexPortal%3ACPX-6957","GRX5 iron-sulfur cluster assembly homodimer complex"],["ComplexPortal%3ACPX-6236","Methylcrotonyl-CoA carboxylase complex"],["ComplexPortal%3ACPX-2216","Mitochondrial 2-oxoisovalerate dehydrogenase complex"],["ComplexPortal%3ACPX-26685","Mitochondrial 2-oxoisovalerate dehydrogenase complex"],["ComplexPortal%3ACPX-949","Mitochondrial 3-oxoacyl-[acyl-carrier-protein] reductase"]]},{"id":"GO:0045259","l":"proton-transporting ATP synthase complex","na":5,"nb":52,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["ComplexPortal%3ACPX-25764","Mitochondrial proton translocating ATP synthase complex"],["ComplexPortal%3ACPX-3281","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-6151","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-8618","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-8619","Mitochondrial proton-transporting ATP synthase complex, testis-specific variant"]]},{"id":"GO:0005874","l":"microtubule","na":5,"nb":50,"a":[["cytoskeleton/ciliary_basal_body.html","ciliary basal body"],["cytoskeleton/microtubule.html","microtubule"],["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/ventral_disc_microtubule_array.html","ventral disc microtubule array"],["cytoskeleton/ventral_disc_supernumerary_microtubule_array.html","ventral disc supernumerary microtubule array"]],"b":[["ComplexPortal%3ACPX-806","Ndc80 complex"],["ComplexPortal%3ACPX-4143","Pyrin inflammasome"],["ComplexPortal%3ACPX-4244","Pyrin inflammasome"],["ComplexPortal%3ACPX-811","Ska1 complex"],["ComplexPortal%3ACPX-2572","Tubulin polyglutamylase complex"],["GO%3A0005881","cytoplasmic microtubule"]]},{"id":"GO:0005777","l":"peroxisome","na":5,"nb":34,"a":[["membrane_organelle/glycosome.html","glycosome"],["membrane_organelle/glyoxysome.html","glyoxysome"],["membrane_organelle/peroxisomal_matrix.html","peroxisomal matrix"],["membrane_organelle/peroxisomal_membrane.html","peroxisomal membrane"],["membrane_organelle/peroxisome.html","peroxisome"]],"b":[["ComplexPortal%3ACPX-4742","Catalase complex"],["ComplexPortal%3ACPX-4767","Catalase complex"],["ComplexPortal%3ACPX-4768","Catalase complex"],["GO%3A0020015","glycosome"],["GO%3A0009514","glyoxysome"],["GO%3A0042580","mannosome"]]},{"id":"GO:0009289","l":"pilus","na":5,"nb":31,"a":[["appendage/curli.html","curli"],["appendage/p_pilus.html","P pilus"],["appendage/pilus.html","pilus"],["appendage/type_i_pilus.html","type I pilus"],["appendage/type_iv_pilus.html","type IV pilus"]],"b":[["GO%3A0098774","curli"],["GO%3A0009289","pilus"],["GO%3A0140621","type I pilus"],["GO%3A0044096","type IV pilus"],["NCBIfam%3ANF058558","amyloid-like fimbrin subunit FapC"],["NCBIfam%3ANF016344","CS1 type fimbrial major subunit"]]},{"id":"GO:0005778","l":"peroxisomal membrane","na":5,"nb":29,"a":[["membrane_organelle/glycosome_membrane.html","glycosome membrane"],["membrane_organelle/glyoxysomal_membrane.html","glyoxysomal membrane"],["membrane_organelle/peroxisomal_matrix.html","peroxisomal matrix"],["membrane_organelle/peroxisomal_membrane.html","peroxisomal membrane"],["membrane_organelle/peroxisome.html","peroxisome"]],"b":[["ComplexPortal%3ACPX-1730","Peroxisomal ABC transporter complex PXA1-PXA2"],["ComplexPortal%3ACPX-10001","Peroxisomal PEX13-PEX14 docking complex"],["ComplexPortal%3ACPX-10021","Peroxisomal PEX13-PEX14 docking complex"],["ComplexPortal%3ACPX-1904","Peroxisomal PEX13-PEX14-PEX17 docking complex"],["ComplexPortal%3ACPX-1905","Peroxisomal PEX7-PEX18 receptor complex"],["ComplexPortal%3ACPX-1906","Peroxisomal PEX7-PEX21 receptor complex"]]},{"id":"GO:0042995","l":"cell projection","na":5,"nb":18,"a":[["appendage/archaeal_cannula.html","archaeal cannula"],["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/attachment_organelle.html","attachment organelle"],["appendage/hamus.html","hamus"],["appendage/prostheca.html","prostheca"]],"b":[["GO%3A0097589","archaeal-type flagellum"],["GO%3A0009288","bacterial-type flagellum"],["GO%3A0042995","cell projection"],["GO%3A0085035","haustorium"],["GO%3A0009289","pilus"],["GO%3A0090395","plant cell papilla"]]},{"id":"GO:0005758","l":"mitochondrial intermembrane space","na":5,"nb":17,"a":[["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrial_intermembrane_space.html","mitochondrial intermembrane space"],["membrane_organelle/mitochondrial_membrane.html","mitochondrial membrane"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"]],"b":[["ComplexPortal%3ACPX-2371","TIM8-TIM13 mitochondrial intermembrane space protein transporter complex"],["ComplexPortal%3ACPX-6131","TIM8A-TIM13 mitochondrial intermembrane space protein transporter complex"],["ComplexPortal%3ACPX-6132","TIM8B-TIM13 mitochondrial intermembrane space protein transporter complex"],["ComplexPortal%3ACPX-2268","TIM9-TIM10 mitochondrial intermembrane space protein transporter complex"],["ComplexPortal%3ACPX-6125","TIM9-TIM10 mitochondrial intermembrane space protein transporter complex"],["ComplexPortal%3ACPX-6126","TIM9-TIM10-TIM10B mitochondrial intermembrane space protein transporter complex"]]},{"id":"GO:0009512","l":"cytochrome b6f complex","na":5,"nb":12,"a":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["GO%3A0009512","cytochrome b6f complex"],["NCBIfam%3ANF014576","cytochrome b6-f complex subunit PetG"],["NCBIfam%3ANF016971","cytochrome b6-f complex subunit PetL"],["NCBIfam%3ANF015687","cytochrome b6-f complex subunit PetN"],["NCBIfam%3ANF050003","cytochrome b6f subunit PetP"],["NCBIfam%3ANF019653","PetM family cytochrome b6-f complex subunit 7"]]},{"id":"GO:0005637","l":"nuclear inner membrane","na":5,"nb":11,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nuclear_envelope_lumen.html","nuclear envelope lumen"],["membrane_organelle/nuclear_inner_membrane.html","nuclear inner membrane"],["membrane_organelle/nuclear_lumen.html","nuclear lumen"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"]],"b":[["ComplexPortal%3ACPX-3248","Asi ubiquitin ligase complex"],["GO%3A0005637","nuclear inner membrane"],["InterPro%3AIPR018861","Transmembrane protein 201, C-terminal"],["NCBIfam%3ANF021959","DUF2448 domain-containing protein"],["PANTHER%3APTHR38044","BOUQUET FORMATION PROTEIN 4"],["PANTHER%3APTHR31488","DPY-19-LIKE 1, LIKE (H. SAPIENS)"]]},{"id":"GO:0016471","l":"vacuolar proton-transporting V-type ATPase complex","na":5,"nb":9,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v0_domain.html","vacuolar proton-transporting V-type ATPase, V0 domain"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v1_domain.html","vacuolar proton-transporting V-type ATPase, V1 domain"],["membrane_organelle/fungal_type_vacuole_membrane.html","fungal-type vacuole membrane"],["membrane_organelle/vacuolar_membrane.html","vacuolar membrane"]],"b":[["ComplexPortal%3ACPX-1193","Vacuolar proton translocating ATPase complex, vacuole variant"],["GO%3A0046611","lysosomal proton-transporting V-type ATPase complex"],["GO%3A0016471","vacuolar proton-transporting V-type ATPase complex"],["NCBIfam%3ATIGR01042","V-type ATPase subunit A"],["NCBIfam%3ATIGR01040","V-type ATPase subunit B"],["NCBIfam%3ATIGR01100","V-type ATPase subunit C"]]},{"id":"GO:0030135","l":"coated vesicle","na":5,"nb":9,"a":[["membrane_organelle/clathrin_coated_vesicle.html","clathrin-coated vesicle"],["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"],["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"]],"b":[["GO%3A0030136","clathrin-coated vesicle"],["GO%3A0030135","coated vesicle"],["GO%3A0030137","COPI-coated vesicle"],["GO%3A0030134","COPII-coated ER to Golgi transport vesicle"],["PANTHER%3APTHR31975","BUD SITE SELECTION PROTEIN 7-RELATED"],["PANTHER%3APTHR10261","COATOMER SUBUNIT GAMMA"]]},{"id":"NCBITaxon:5741","l":"Giardia intestinalis","na":9,"nb":5,"a":[["cytoskeleton/microtubule.html","microtubule"],["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_crossbridge.html","ventral disc crossbridge"],["cytoskeleton/ventral_disc_dorsal_microribbon.html","ventral disc dorsal microribbon"],["cytoskeleton/ventral_disc_lateral_crest.html","ventral disc lateral crest"],["cytoskeleton/ventral_disc_microtubule_array.html","ventral disc microtubule array"]],"b":[["Pfam%3APF22293","Annexin E1, fourth repeat"],["Pfam%3APF17529","Family of unknown function (DUF5450)"],["MCSA%3A802","adenine phosphoribosyltransferase"],["TED%3AAF-V6TFM4-F1-model_v4_TED01","TED novel fold AF-V6TFM4-F1-model_v4_TED01"],["TED%3AAF-V6TNW5-F1-model_v4_TED02","TED novel fold AF-V6TNW5-F1-model_v4_TED02"]]},{"id":"GO:0009528","l":"plastid inner membrane","na":7,"nb":5,"a":[["membrane_organelle/chloroplast_inner_membrane.html","chloroplast inner membrane"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/organellar_chromatophore_inner_membrane.html","organellar chromatophore inner membrane"],["membrane_organelle/plastid_envelope.html","plastid envelope"],["membrane_organelle/plastid_inner_membrane.html","plastid inner membrane"],["membrane_organelle/plastid_intermembrane_space.html","plastid intermembrane space"]],"b":[["GO%3A0033098","amyloplast inner membrane"],["GO%3A0009706","chloroplast inner membrane"],["GO%3A0031899","chromoplast inner membrane"],["GO%3A0036012","cyanelle inner membrane"],["GO%3A0009528","plastid inner membrane"]]},{"id":"GO:0009570","l":"chloroplast stroma","na":7,"nb":5,"a":[["inclusion/plastoglobule.html","plastoglobule"],["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_inner_membrane.html","chloroplast inner membrane"],["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"],["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"]],"b":[["GO%3A0009570","chloroplast stroma"],["PANTHER%3APTHR34113","INACTIVE PURPLE ACID PHOSPHATASE-LIKE PROTEIN"],["PANTHER%3APTHR36803","PROTEIN CHLORORESPIRATORY REDUCTION 7, CHLOROPLASTIC"],["PANTHER%3APTHR47317","PROTEIN LHCP TRANSLOCATION DEFECT"],["PANTHER%3APTHR34669","THIOREDOXIN-LIKE FOLD DOMAIN-CONTAINING PROTEIN MRL7L, CHLOROPLASTIC"]]},{"id":"GO:0000324","l":"fungal-type vacuole","na":6,"nb":5,"a":[["membrane_organelle/autophagosome.html","autophagosome"],["membrane_organelle/cvt_vesicle.html","Cvt vesicle"],["membrane_organelle/fungal_type_vacuole.html","fungal-type vacuole"],["membrane_organelle/fungal_type_vacuole_lumen.html","fungal-type vacuole lumen"],["membrane_organelle/fungal_type_vacuole_membrane.html","fungal-type vacuole membrane"],["membrane_organelle/vacuole.html","vacuole"]],"b":[["ComplexPortal%3ACPX-1278","LMA1 complex, TRX1 variant"],["ComplexPortal%3ACPX-1279","LMA1 complex, TRX2 variant"],["GO%3A0000324","fungal-type vacuole"],["InterPro%3AIPR033819","Saccharopepsin"],["PANTHER%3APTHR36819","REGULATOR OF PHOSPHOLIPASE D SRF1"]]},{"id":"GO:0005784","l":"Sec61 translocon complex","na":5,"nb":6,"a":[["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"],["membrane_organelle/endoplasmic_reticulum_lumen.html","endoplasmic reticulum lumen"],["membrane_organelle/endoplasmic_reticulum_membrane.html","endoplasmic reticulum membrane"],["other/emc_complex.html","EMC complex"],["other/sec61_translocon_complex.html","Sec61 translocon complex"]],"b":[["ComplexPortal%3ACPX-1833","SEC61 protein-conducting channel complex"],["ComplexPortal%3ACPX-8073","SEC61 protein-conducting channel complex, SEC1A1 variant"],["ComplexPortal%3ACPX-8169","SEC61 protein-conducting channel complex, SEC1A2 variant"],["ComplexPortal%3ACPX-2647","SEC61 translocon complex, SEC61G1 variant"],["ComplexPortal%3ACPX-2650","SEC61 translocon complex, SEC61G2 variant"],["GO%3A0005784","Sec61 translocon complex"]]},{"id":"GO:0030076","l":"light-harvesting complex","na":5,"nb":6,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/phycobilisome.html","phycobilisome"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"]],"b":[["GO%3A0030076","light-harvesting complex"],["GO%3A0030089","phycobilisome"],["GO%3A0030077","plasma membrane light-harvesting complex"],["GO%3A0009503","thylakoid light-harvesting complex"],["Pfam%3APF02429","Peridinin-chlorophyll A binding protein"],["InterPro%3AIPR036550","Peridinin-chlorophyll A binding superfamily"]]},{"id":"GO:0030694","l":"bacterial-type flagellum basal body, rod","na":6,"nb":5,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"],["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"],["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"]],"b":[["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["GO%3A0030694","bacterial-type flagellum basal body, rod"],["NCBIfam%3ATIGR01396","flagellar basal body rod protein FlgB"],["NCBIfam%3ATIGR01395","flagellar basal body rod protein FlgC"],["NCBIfam%3ATIGR02490","flagellar basal-body rod protein FlgF"]]},{"id":"GO:0030134","l":"COPII-coated ER to Golgi transport vesicle","na":5,"nb":5,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"],["membrane_organelle/copii_coated_vesicle_lumen.html","COPII-coated vesicle lumen"],["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"],["other/copii_vesicle_coat.html","COPII vesicle coat"]],"b":[["GO%3A0030134","COPII-coated ER to Golgi transport vesicle"],["PANTHER%3APTHR10984","ENDOPLASMIC RETICULUM-GOLGI INTERMEDIATE COMPARTMENT PROTEIN"],["PANTHER%3APTHR15858","IMMEDIATE EARLY RESPONSE 3-INTERACTING PROTEIN 1"],["PANTHER%3APTHR13144","TEX261 PROTEIN"],["PANTHER%3APTHR14083","YIP1 INTERACTING FACTOR HOMOLOG YIF1 PROTEIN"]]},{"id":"GO:0031904","l":"endosome lumen","na":5,"nb":5,"a":[["membrane_organelle/endosome.html","endosome"],["membrane_organelle/endosome_lumen.html","endosome lumen"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/multivesicular_body_lumen.html","multivesicular body lumen"]],"b":[["GO%3A0031905","early endosome lumen"],["GO%3A0036021","endolysosome lumen"],["GO%3A0031904","endosome lumen"],["GO%3A0031906","late endosome lumen"],["GO%3A0034777","recycling endosome lumen"]]},{"id":"GO:0090114","l":"COPII-coated vesicle budding","na":5,"nb":5,"a":[["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"],["membrane_organelle/endoplasmic_reticulum_membrane.html","endoplasmic reticulum membrane"],["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"],["other/copii_vesicle_coat.html","COPII vesicle coat"],["other/vesicle_coat.html","vesicle coat"]],"b":[["GO%3A0090114","COPII-coated vesicle budding"],["InterPro%3AIPR037550","Sec23, C-terminal"],["PANTHER%3APTHR11141","PROTEIN TRANSPORT PROTEIN SEC23"],["PANTHER%3APTHR13803","SEC24-RELATED PROTEIN"],["PANTHER%3APTHR13923","SEC31-RELATED PROTEIN"]]},{"id":"GO:0043232","l":"intracellular membraneless organelle","na":4,"nb":237,"a":[["membrane_organelle/chlorosome.html","chlorosome"],["microcompartment/bacterial_microcompartment.html","bacterial microcompartment"],["other/phage_nucleus.html","phage nucleus"],["other/pyrenoid.html","pyrenoid"]],"b":[["GO%3A0098682","arciform density"],["GO%3A0005818","aster"],["GO%3A0031469","bacterial microcompartment"],["GO%3A0043590","bacterial nucleoid"],["GO%3A0097727","blepharoplast"],["GO%3A0005814","centriole"]]},{"id":"GO:0031981","l":"nuclear lumen","na":4,"nb":147,"a":[["membrane_organelle/nuclear_lumen.html","nuclear lumen"],["membrane_organelle/nucleus.html","nucleus"],["other/nuclear_chromosome.html","nuclear chromosome"],["other/nucleolus.html","nucleolus"]],"b":[["GO%3A0031981","nuclear lumen"],["PANTHER%3APTHR28028","60S RIBOSOMAL SUBUNIT ASSEMBLY/EXPORT PROTEIN LOC1"],["PANTHER%3APTHR15565","AATF PROTEIN APOPTOSIS ANTAGONIZING TRANSCRIPTION FACTOR"],["PANTHER%3APTHR12311","ACTIVATOR OF BASAL TRANSCRIPTION 1"],["PANTHER%3APTHR31454","ACTIVE REGULATOR OF SIRT1"],["PANTHER%3APTHR46627","AMINOPEPTIDASE O"]]},{"id":"GO:0070013","l":"intracellular organelle lumen","na":4,"nb":124,"a":[["membrane_organelle/endosome_lumen.html","endosome lumen"],["membrane_organelle/mitochondrial_matrix.html","mitochondrial matrix"],["membrane_organelle/nuclear_lumen.html","nuclear lumen"],["membrane_organelle/vacuolar_lumen.html","vacuolar lumen"]],"b":[["GO%3A0033985","acidocalcisome lumen"],["GO%3A0060205","cytoplasmic vesicle lumen"],["GO%3A0071682","endocytic vesicle lumen"],["GO%3A0005788","endoplasmic reticulum lumen"],["GO%3A0160315","endosomal intralumenal vesicle lumen"],["GO%3A0031904","endosome lumen"]]},{"id":"GO:0060271","l":"cilium assembly","na":4,"nb":94,"a":[["appendage/ciliary_membrane.html","ciliary membrane"],["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"],["cytoskeleton/ciliary_basal_body.html","ciliary basal body"]],"b":[["ComplexPortal%3ACPX-1908","BBSome complex"],["ComplexPortal%3ACPX-1909","BBSome complex"],["ComplexPortal%3ACPX-2747","BBSome complex"],["ComplexPortal%3ACPX-428","BBSome complex"],["ComplexPortal%3ACPX-2789","CEP290 complex"],["ComplexPortal%3ACPX-1289","Intraflagellar transport complex A"]]},{"id":"GO:0071973","l":"bacterial-type flagellum-dependent cell motility","na":4,"nb":60,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/periplasmic_flagellum.html","periplasmic flagellum"]],"b":[["ComplexPortal%3ACPX-4886","DNA-directed RNA polymerase holoenzyme complex, SigmaF variant"],["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["GO%3A0071973","bacterial-type flagellum-dependent cell motility"],["GO%3A0071978","bacterial-type flagellum-dependent swarming motility"]]},{"id":"GO:0031967","l":"organelle envelope","na":4,"nb":31,"a":[["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitosome_envelope.html","mitosome envelope"],["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/plastid_envelope.html","plastid envelope"]],"b":[["GO%3A0005740","mitochondrial envelope"],["GO%3A0005635","nuclear envelope"],["GO%3A0031967","organelle envelope"],["GO%3A0009526","plastid envelope"],["GO%3A0070732","spindle envelope"],["PANTHER%3APTHR36959","ALTERED INHERITANCE OF MITOCHONDRIA PROTEIN 24, MITOCHONDRIAL"]]},{"id":"GO:0006890","l":"retrograde vesicle-mediated transport, Golgi to endoplasmic reticulum","na":4,"nb":30,"a":[["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["other/copi_vesicle_coat.html","COPI vesicle coat"],["other/dsl1_nzr_complex.html","Dsl1/NZR complex"]],"b":[["ComplexPortal%3ACPX-7803","COPI vesicle coat complex, COPG1-COPZ1 variant"],["ComplexPortal%3ACPX-7970","COPI vesicle coat complex, COPG1-COPZ2 variant"],["ComplexPortal%3ACPX-7969","COPI vesicle coat complex, COPG2-COPZ1 variant"],["ComplexPortal%3ACPX-1652","COPI vesicle coat complex"],["ComplexPortal%3ACPX-2820","COPI vesicle coat complex"],["ComplexPortal%3ACPX-1786","Dsl1 tethering complex"]]},{"id":"GO:0005773","l":"vacuole","na":4,"nb":29,"a":[["membrane_organelle/fungal_type_vacuole.html","fungal-type vacuole"],["membrane_organelle/vacuolar_lumen.html","vacuolar lumen"],["membrane_organelle/vacuolar_membrane.html","vacuolar membrane"],["membrane_organelle/vacuole.html","vacuole"]],"b":[["GO%3A0005776","autophagosome"],["GO%3A0000331","contractile vacuole"],["GO%3A0000323","lytic vacuole"],["GO%3A0000325","plant-type vacuole"],["GO%3A0032195","post-lysosomal vacuole"],["GO%3A0000322","storage vacuole"]]},{"id":"GO:0005930","l":"axoneme","na":4,"nb":26,"a":[["appendage/cilium.html","cilium"],["appendage/paraflagellar_rod.html","paraflagellar rod"],["cytoskeleton/axoneme.html","axoneme"],["cytoskeleton/ciliary_basal_body.html","ciliary basal body"]],"b":[["ComplexPortal%3ACPX-8086","Nexin-dynein regulatory complex"],["ComplexPortal%3ACPX-2626","Outer dynein arm-docking complex"],["ComplexPortal%3ACPX-8163","Radial spoke complex, ciliiar variant"],["GO%3A0005930","axoneme"],["Pfam%3APF24161","Coiled-coil domain-containing protein 39"],["PANTHER%3APTHR46625","72 KDA INOSITOL POLYPHOSPHATE 5-PHOSPHATASE"]]},{"id":"GO:0099023","l":"vesicle tethering complex","na":4,"nb":20,"a":[["other/cog_complex.html","COG complex"],["other/corvet_complex.html","CORVET complex"],["other/dsl1_nzr_complex.html","Dsl1/NZR complex"],["other/garp_complex.html","GARP complex"]],"b":[["ComplexPortal%3ACPX-6241","CHEVI tethering complex"],["GO%3A0017119","COG complex"],["GO%3A0106103","COPII vesicles tethering complex"],["GO%3A0033263","CORVET complex"],["GO%3A0070939","Dsl1/NZR complex"],["GO%3A0000145","exocyst"]]},{"id":"GO:0110143","l":"magnetosome","na":4,"nb":17,"a":[["cytoskeleton/mamk_filament.html","MamK filament"],["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]],"b":[["GO%3A0110143","magnetosome"],["NCBIfam%3ANF040997","liposome tubulation protein MamY"],["NCBIfam%3ANF040917","magnetic particle specific iron-binding protein Mms6"],["NCBIfam%3ANF040986","magnetosome biogenesis transporter MamH"],["NCBIfam%3ANF040989","magnetosome biogenesis transporter MamN"],["NCBIfam%3ANF040998","magnetosome biogenesis transporter MamZ"]]},{"id":"GO:0005788","l":"endoplasmic reticulum lumen","na":4,"nb":15,"a":[["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"],["membrane_organelle/endoplasmic_reticulum_lumen.html","endoplasmic reticulum lumen"],["membrane_organelle/endoplasmic_reticulum_membrane.html","endoplasmic reticulum membrane"],["membrane_organelle/nuclear_envelope_lumen.html","nuclear envelope lumen"]],"b":[["ComplexPortal%3ACPX-6822","Glucosidase II complex"],["ComplexPortal%3ACPX-1283","HTM1-PDI1 exomannosidase complex"],["GO%3A0099021","cortical endoplasmic reticulum lumen"],["GO%3A0005788","endoplasmic reticulum lumen"],["GO%3A0099020","perinuclear endoplasmic reticulum lumen"],["GO%3A0048237","rough endoplasmic reticulum lumen"]]},{"id":"GO:0030117","l":"membrane coat","na":4,"nb":13,"a":[["other/ap_type_membrane_coat_adaptor_complex.html","AP-type membrane coat adaptor complex"],["other/clathrin_coat.html","clathrin coat"],["other/membrane_coat.html","membrane coat"],["other/vesicle_coat.html","vesicle coat"]],"b":[["GO%3A0030118","clathrin coat"],["GO%3A0030117","membrane coat"],["GO%3A0030120","vesicle coat"],["InterPro%3AIPR000804","Clathrin adaptor complex, small chain"],["InterPro%3AIPR002553","Clathrin/coatomer adaptor, adaptin-like, N-terminal"],["InterPro%3AIPR006692","COPA/B, second beta-propeller domain"]]},{"id":"GO:0031469","l":"bacterial microcompartment","na":4,"nb":12,"a":[["microcompartment/bacterial_microcompartment.html","bacterial microcompartment"],["microcompartment/carboxysome.html","carboxysome"],["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"],["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]],"b":[["GO%3A0031469","bacterial microcompartment"],["GO%3A0031470","carboxysome"],["GO%3A0031471","ethanolamine degradation polyhedral organelle"],["GO%3A0031472","propanediol degradation polyhedral organelle"],["NCBIfam%3ATIGR02704","carboxysome peptide B"],["NCBIfam%3ANF011934","ethanolamine utilization microcompartment protein EutL"]]},{"id":"GO:0030139","l":"endocytic vesicle","na":4,"nb":11,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle.html","clathrin-coated endocytic vesicle"],["membrane_organelle/endocytic_vesicle.html","endocytic vesicle"],["membrane_organelle/endocytic_vesicle_lumen.html","endocytic vesicle lumen"],["membrane_organelle/endocytic_vesicle_membrane.html","endocytic vesicle membrane"]],"b":[["ComplexPortal%3ACPX-5774","Cubam cobalamin uptake receptor complex"],["ComplexPortal%3ACPX-5847","Cubam cobalamin uptake receptor complex"],["GO%3A0045334","clathrin-coated endocytic vesicle"],["GO%3A0030139","endocytic vesicle"],["GO%3A0045335","phagocytic vesicle"],["GO%3A0032195","post-lysosomal vacuole"]]},{"id":"GO:0030660","l":"Golgi-associated vesicle membrane","na":4,"nb":11,"a":[["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"],["membrane_organelle/trans_golgi_network_transport_vesicle_membrane.html","trans-Golgi network transport vesicle membrane"]],"b":[["GO%3A0030663","COPI-coated vesicle membrane"],["GO%3A0030660","Golgi-associated vesicle membrane"],["GO%3A0012510","trans-Golgi network transport vesicle membrane"],["PANTHER%3APTHR16156","AFTIPHILIN A-RELATED"],["PANTHER%3APTHR15463","AP1 GAMMA SUBUNIT BINDING PROTEIN 1"],["PANTHER%3APTHR19876","COATOMER"]]},{"id":"GO:0006119","l":"oxidative phosphorylation","na":4,"nb":8,"a":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"]],"b":[["ComplexPortal%3ACPX-268","Cytochrome bd-I ubiquinol oxidase complex"],["ComplexPortal%3ACPX-269","Cytochrome bd-II ubiquinol oxidase complex"],["GO%3A0006119","oxidative phosphorylation"],["PANTHER%3APTHR12448","ATP SYNTHASE EPSILON CHAIN, MITOCHONDRIAL"],["PANTHER%3APTHR13080","ATP SYNTHASE F CHAIN, MITOCHONDRIAL-RELATED"],["PANTHER%3APTHR43141","CYTOCHROME BD2 SUBUNIT II"]]},{"id":"InterPro:IPR001492","l":"","na":4,"nb":8,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["Pfam%3APF00700","Bacterial flagellin C-terminal helical region"],["Pfam%3APF08884","Flagellin D3 domain"],["Pfam%3APF21504","Flagellin, barrel domain"],["Pfam%3APF22370","Flagellin, beta sheet domain"],["PANTHER%3APTHR42792","FLAGELLIN"],["Pfam%3APF00669","Bacterial flagellin N-terminal helical region"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":4,"nb":8,"a":[["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"],["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]],"b":[["Pfam%3APF19443","DAHL domain"],["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"],["Pfam%3APF03524","Conjugal transfer protein"],["Pfam%3APF27439","Chaperone protein DnaJ C-terminal region"],["Pfam%3APF10907","Protein of unknown function (DUF2749)"],["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]]},{"id":"GO:0000815","l":"ESCRT III complex","na":7,"nb":4,"a":[["membrane_organelle/endosome.html","endosome"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/multivesicular_body.html","multivesicular body"],["membrane_organelle/multivesicular_body_membrane.html","multivesicular body membrane"],["other/escrt_ii_complex.html","ESCRT II complex"]],"b":[["ComplexPortal%3ACPX-1624","ESCRT-III complex"],["ComplexPortal%3ACPX-2459","ESCRT-III complex"],["ComplexPortal%3ACPX-329","ESCRT-III complex"],["GO%3A0000815","ESCRT III complex"]]},{"id":"GO:0009424","l":"bacterial-type flagellum hook","na":4,"nb":7,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["GO%3A0009424","bacterial-type flagellum hook"],["NCBIfam%3ATIGR02492","flagellar hook-associated protein FlgK"],["NCBIfam%3ATIGR02550","flagellar hook-associated protein FlgL"],["NCBIfam%3ANF007514","flagellar hook length control protein FliK"],["InterPro%3AIPR003481","Flagellar hook-associated protein 2, N-terminal"],["NCBIfam%3ANF014518","flagellar cap protein FliD N-terminal domain-containing protein"]]},{"id":"GO:0009527","l":"plastid outer membrane","na":7,"nb":4,"a":[["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"],["membrane_organelle/organellar_chromatophore_outer_membrane.html","organellar chromatophore outer membrane"],["membrane_organelle/plastid_envelope.html","plastid envelope"],["membrane_organelle/plastid_intermembrane_space.html","plastid intermembrane space"],["membrane_organelle/plastid_membrane.html","plastid membrane"]],"b":[["GO%3A0009707","chloroplast outer membrane"],["GO%3A0031900","chromoplast outer membrane"],["GO%3A0036013","cyanelle outer membrane"],["GO%3A0009527","plastid outer membrane"]]},{"id":"GO:0009529","l":"plastid intermembrane space","na":7,"nb":4,"a":[["membrane_organelle/chloroplast_intermembrane_space.html","chloroplast intermembrane space"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/organellar_chromatophore_intermembrane_space.html","organellar chromatophore intermembrane space"],["membrane_organelle/plastid_envelope.html","plastid envelope"],["membrane_organelle/plastid_inner_membrane.html","plastid inner membrane"],["membrane_organelle/plastid_intermembrane_space.html","plastid intermembrane space"]],"b":[["GO%3A0031972","chloroplast intermembrane space"],["GO%3A0031973","chromoplast intermembrane space"],["GO%3A0036014","cyanelle intermembrane space"],["GO%3A0009529","plastid intermembrane space"]]},{"id":"GO:0012507","l":"ER to Golgi transport vesicle membrane","na":4,"nb":7,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"],["membrane_organelle/copii_coated_vesicle_lumen.html","COPII-coated vesicle lumen"],["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"]],"b":[["GO%3A0012507","ER to Golgi transport vesicle membrane"],["PANTHER%3APTHR11141","PROTEIN TRANSPORT PROTEIN SEC23"],["PANTHER%3APTHR45684","RE74312P"],["PANTHER%3APTHR13803","SEC24-RELATED PROTEIN"],["PANTHER%3APTHR13923","SEC31-RELATED PROTEIN"],["PANTHER%3APTHR45837","VESICLE-TRAFFICKING PROTEIN SEC22B"]]},{"id":"GO:0031985","l":"Golgi cisterna","na":4,"nb":7,"a":[["membrane_organelle/golgi_apparatus.html","Golgi apparatus"],["membrane_organelle/golgi_cisterna.html","Golgi cisterna"],["membrane_organelle/golgi_cisterna_membrane.html","Golgi cisterna membrane"],["membrane_organelle/golgi_membrane.html","Golgi membrane"]],"b":[["GO%3A0000137","Golgi cis cisterna"],["GO%3A0031985","Golgi cisterna"],["GO%3A0005797","Golgi medial cisterna"],["GO%3A0000138","Golgi trans cisterna"],["PANTHER%3APTHR13815","GOLGIN-84"],["PANTHER%3APTHR21094","GOS-28 SNARE- RELATED"]]},{"id":"GO:0055035","l":"plastid thylakoid membrane","na":7,"nb":4,"a":[["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"],["membrane_organelle/plastid_membrane.html","plastid membrane"],["membrane_organelle/plastid_thylakoid.html","plastid thylakoid"],["membrane_organelle/plastid_thylakoid_lumen.html","plastid thylakoid lumen"]],"b":[["GO%3A0009535","chloroplast thylakoid membrane"],["GO%3A0033115","cyanelle thylakoid membrane"],["GO%3A0055035","plastid thylakoid membrane"],["GO%3A0042650","prothylakoid membrane"]]},{"id":"DOI:10.1093/emboj/20.21.5971","l":"","na":4,"nb":6,"a":[["membrane_organelle/autophagosome.html","autophagosome"],["membrane_organelle/autophagosome_lumen.html","autophagosome lumen"],["membrane_organelle/autophagosome_membrane.html","autophagosome membrane"],["other/phagophore_assembly_site.html","phagophore assembly site"]],"b":[["InterPro%3AIPR040455","Atg6, BARA domain"],["InterPro%3AIPR041691","Atg6/beclin, coiled-coil domain"],["InterPro%3AIPR048318","Autophagy protein ATG5, UblB domain"],["InterPro%3AIPR013923","Autophagy-related protein 16 domain"],["InterPro%3AIPR042526","Autophagy protein Atg5, helix rich domain"],["InterPro%3AIPR042527","Autophagy protein Atg5, UblA domain superfamily"]]},{"id":"GO:0009534","l":"chloroplast thylakoid","na":4,"nb":6,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"],["membrane_organelle/chloroplast_thylakoid_lumen.html","chloroplast thylakoid lumen"],["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"]],"b":[["GO%3A0009533","chloroplast stromal thylakoid"],["GO%3A0009534","chloroplast thylakoid"],["GO%3A0009515","granal stacked thylakoid"],["PANTHER%3APTHR47862","PEPTIDYL-PROLYL CIS-TRANS ISOMERASE FKBP18, CHLOROPLASTIC"],["PANTHER%3APTHR34790","PHOTOSYSTEM II CORE COMPLEX PROTEINS PSBY, CHLOROPLASTIC"],["PANTHER%3APTHR36734","YCF37-LIKE PROTEIN"]]},{"id":"GO:0030663","l":"COPI-coated vesicle membrane","na":6,"nb":4,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"],["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/copi_coated_vesicle_lumen.html","COPI-coated vesicle lumen"],["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"]],"b":[["ComplexPortal%3ACPX-1303","MST27-MST28 vesicle formation complex"],["GO%3A0030663","COPI-coated vesicle membrane"],["GO%3A0012508","Golgi to ER transport vesicle membrane"],["GO%3A0012509","inter-Golgi transport vesicle membrane"]]},{"id":"GO:0070112","l":"organellar chromatophore membrane","na":6,"nb":4,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_inner_membrane.html","organellar chromatophore inner membrane"],["membrane_organelle/organellar_chromatophore_membrane.html","organellar chromatophore membrane"],["membrane_organelle/organellar_chromatophore_outer_membrane.html","organellar chromatophore outer membrane"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"],["membrane_organelle/plasma_membrane_derived_chromatophore_membrane.html","plasma membrane-derived chromatophore membrane"]],"b":[["GO%3A0070113","organellar chromatophore inner membrane"],["GO%3A0070112","organellar chromatophore membrane"],["GO%3A0070114","organellar chromatophore outer membrane"],["GO%3A0070118","organellar chromatophore thylakoid membrane"]]},{"id":"NCBITaxon:5759","l":"Entamoeba histolytica","na":6,"nb":4,"a":[["membrane_organelle/mitosome.html","mitosome"],["membrane_organelle/mitosome_envelope.html","mitosome envelope"],["membrane_organelle/mitosome_inner_membrane.html","mitosome inner membrane"],["membrane_organelle/mitosome_intermembrane_space.html","mitosome intermembrane space"],["membrane_organelle/mitosome_matrix.html","mitosome matrix"],["membrane_organelle/mitosome_outer_membrane.html","mitosome outer membrane"]],"b":[["IDPO%3A0000012","molten globule to order"],["TED%3AAF-C4LXE1-F1-model_v4_TED01","TED highly-symmetric fold AF-C4LXE1-F1-model_v4_TED01"],["TED%3AAF-C4LXH3-F1-model_v4_TED02","TED novel fold AF-C4LXH3-F1-model_v4_TED02"],["TED%3AAF-C4MBN2-F1-model_v4_TED03","TED novel fold AF-C4MBN2-F1-model_v4_TED03"]]},{"id":"DOI:10.1038/nature02823","l":"","na":5,"nb":4,"a":[["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/rc_lh1_pufx_core_complex.html","RC-LH1-PufX core complex"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"],["membrane_organelle/plasma_membrane_derived_chromatophore_membrane.html","plasma membrane-derived chromatophore membrane"]],"b":[["InterPro%3AIPR015810","Photosynthetic reaction centre, H subunit, N-terminal"],["InterPro%3AIPR014747","Bacterial photosynthetic reaction centre, H-chain, C-terminal"],["InterPro%3AIPR037097","Photosynthetic reaction centre, H subunit, N-terminal domain superfamily"],["InterPro%3AIPR036854","Photosystem II protein D1/D2 superfamily"]]},{"id":"DOI:10.1038/s41564-020-0788-8","l":"","na":5,"nb":4,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"]],"b":[["NCBIfam%3ANF005997","flagellar motor stator protein MotA"],["InterPro%3AIPR002898","MotA/TolQ/ExbB proton channel"],["InterPro%3AIPR046786","Motility protein A, N-terminal"],["NCBIfam%3ANF042601","motility-associated protein"]]},{"id":"GO:0000814","l":"ESCRT II complex","na":4,"nb":5,"a":[["membrane_organelle/endosome.html","endosome"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/multivesicular_body.html","multivesicular body"],["other/escrt_ii_complex.html","ESCRT II complex"]],"b":[["ComplexPortal%3ACPX-1623","ESCRT-II complex"],["ComplexPortal%3ACPX-2458","ESCRT-II complex"],["ComplexPortal%3ACPX-2506","ESCRT-II complex"],["GO%3A0000814","ESCRT II complex"],["Pfam%3APF05871","ESCRT-II complex subunit"]]},{"id":"GO:0009421","l":"bacterial-type flagellum filament cap","na":4,"nb":5,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["GO%3A0009421","bacterial-type flagellum filament cap"],["NCBIfam%3ANF005955","flagellar filament capping protein FliD"],["NCBIfam%3ANF006282","flagellar filament capping protein FliD"],["NCBIfam%3ANF006435","flagellar filament capping protein FliD"],["NCBIfam%3ANF009400","flagellar filament capping protein FliD"]]},{"id":"GO:0030130","l":"clathrin coat of trans-Golgi network vesicle","na":4,"nb":5,"a":[["membrane_organelle/trans_golgi_network_transport_vesicle_membrane.html","trans-Golgi network transport vesicle membrane"],["other/ap_1_adaptor_complex.html","AP-1 adaptor complex"],["other/clathrin_coat_of_endocytic_vesicle.html","clathrin coat of endocytic vesicle"],["other/clathrin_coat_of_trans_golgi_network_vesicle.html","clathrin coat of trans-Golgi network vesicle"]],"b":[["GO%3A0030130","clathrin coat of trans-Golgi network vesicle"],["InterPro%3AIPR015348","Clathrin, heavy chain, linker, core motif"],["Pfam%3APF01086","Clathrin light chain"],["InterPro%3AIPR016025","Clathrin heavy chain, N-terminal"],["Pfam%3APF09268","Clathrin, heavy-chain linker"]]},{"id":"GO:0031976","l":"plastid thylakoid","na":5,"nb":4,"a":[["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/plastid_thylakoid.html","plastid thylakoid"],["membrane_organelle/plastid_thylakoid_lumen.html","plastid thylakoid lumen"],["membrane_organelle/plastid_thylakoid_membrane.html","plastid thylakoid membrane"]],"b":[["GO%3A0009534","chloroplast thylakoid"],["GO%3A0009843","cyanelle thylakoid"],["GO%3A0031976","plastid thylakoid"],["GO%3A0042649","prothylakoid"]]},{"id":"GO:0061700","l":"GATOR2 complex","na":5,"nb":4,"a":[["other/gator1_complex.html","GATOR1 complex"],["other/gator2_complex.html","GATOR2 complex"],["other/gtr1_gtr2_gtpase_complex.html","Gtr1-Gtr2 GTPase complex"],["other/seh1_associated_complex.html","Seh1-associated complex"],["other/torc1_complex.html","TORC1 complex"]],"b":[["ComplexPortal%3ACPX-26527","GATOR2 complex"],["ComplexPortal%3ACPX-2664","GATOR2 complex"],["ComplexPortal%3ACPX-6227","GATOR2 complex"],["GO%3A0061700","GATOR2 complex"]]},{"id":"GO:1990130","l":"GATOR1 complex","na":5,"nb":4,"a":[["other/gator1_complex.html","GATOR1 complex"],["other/gator2_complex.html","GATOR2 complex"],["other/gtr1_gtr2_gtpase_complex.html","Gtr1-Gtr2 GTPase complex"],["other/seh1_associated_complex.html","Seh1-associated complex"],["other/torc1_complex.html","TORC1 complex"]],"b":[["ComplexPortal%3ACPX-26523","GATOR1 complex"],["ComplexPortal%3ACPX-2781","GATOR1 complex"],["ComplexPortal%3ACPX-6226","GATOR1 complex"],["GO%3A1990130","GATOR1 complex"]]},{"id":"DOI:10.1083/jcb.135.3.725","l":"","na":4,"nb":4,"a":[["envelope/cellular_bud_membrane.html","cellular bud membrane"],["other/cellular_bud.html","cellular bud"],["other/cellular_bud_tip.html","cellular bud tip"],["other/polarisome.html","polarisome"]],"b":[["InterPro%3AIPR063286","PEA2, C-terminal domain"],["InterPro%3AIPR062713","PEA2, middle domain"],["InterPro%3AIPR062629","PEA2, N-terminal domain"],["NCBIfam%3ANF056289","PEA2 C-terminal domain"]]},{"id":"GO:0030096","l":"plasma membrane-derived thylakoid photosystem II","na":4,"nb":4,"a":[["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["GO%3A0030096","plasma membrane-derived thylakoid photosystem II"],["NCBIfam%3ANF040894","photosynthetic complex putative assembly protein PuhB"],["NCBIfam%3ATIGR03069","photosystem II electron transport protein, Sll1252 family"],["NCBIfam%3ATIGR03042","photosystem II protein PsbQ"]]},{"id":"GO:0030666","l":"endocytic vesicle membrane","na":4,"nb":4,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle_membrane.html","clathrin-coated endocytic vesicle membrane"],["membrane_organelle/endocytic_vesicle.html","endocytic vesicle"],["membrane_organelle/endocytic_vesicle_lumen.html","endocytic vesicle lumen"],["membrane_organelle/endocytic_vesicle_membrane.html","endocytic vesicle membrane"]],"b":[["GO%3A0030669","clathrin-coated endocytic vesicle membrane"],["GO%3A0030666","endocytic vesicle membrane"],["GO%3A0043661","peribacteroid membrane"],["GO%3A0030670","phagocytic vesicle membrane"]]},{"id":"NCBITaxon:431944","l":"Magnetospirillum gryphiswaldense MSR-1","na":4,"nb":4,"a":[["cytoskeleton/mamk_filament.html","MamK filament"],["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]],"b":[["Pfam%3APF12728","Helix-turn-helix domain"],["IEDB%3A158794","epitope GKMVAPSFTAEEKAQK"],["Pfam%3APF04011","LemA family"],["Pfam%3APF07219","HemY protein N-terminus"]]},{"id":"NCBITaxon:224308","l":"Bacillus subtilis (strain 168)","na":3,"nb":11323,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["division_machinery/divisome_complex.html","divisome complex"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]],"b":[["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.10.3.-","With oxygen as acceptor"],["EC%3A1.13.12.-","With incorporation of one atom of oxygen (internal monooxygenases or internal mixed function oxidases)"],["EC%3A1.14.19.-","With oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water"],["EC%3A1.17.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.21.98.-","With other, known acceptors"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":3,"nb":1616,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"],["other/pyrenoid.html","pyrenoid"]],"b":[["EC%3A1.1.1.170","3beta-hydroxysteroid-4alpha-carboxylate 3-dehydrogenase (decarboxylating)"],["EC%3A1.1.1.262","4-hydroxythreonine-4-phosphate dehydrogenase"],["EC%3A1.1.1.276","serine 3-dehydrogenase (NADP(+))"],["EC%3A1.1.1.286","isocitrate--homoisocitrate dehydrogenase"],["EC%3A1.1.1.305","UDP-glucuronic acid oxidase (UDP-4-keto-hexauronic acid decarboxylating)"],["EC%3A1.1.1.343","phosphogluconate dehydrogenase (NAD(+)-dependent, decarboxylating)"]]},{"id":"GO:0005634","l":"nucleus","na":3,"nb":1580,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nuclear_lumen.html","nuclear lumen"],["membrane_organelle/nucleus.html","nucleus"]],"b":[["ComplexPortal%3ACPX-9003","20S immunoproteasome complex"],["ComplexPortal%3ACPX-2829","ACF chromatin remodeling complex"],["ComplexPortal%3ACPX-434","ACF chromatin remodeling complex"],["ComplexPortal%3ACPX-444","ACF chromatin remodeling complex"],["ComplexPortal%3ACPX-2824","ADA complex"],["ComplexPortal%3ACPX-608","ADA complex"]]},{"id":"GO:0140513","l":"nuclear protein-containing complex","na":3,"nb":495,"a":[["other/cbf3_complex.html","CBF3 complex"],["other/coma_complex.html","COMA complex"],["other/dash_complex.html","DASH complex"]],"b":[["GO%3A0002180","5-lipoxygenase complex"],["GO%3A1990354","activated SUMO-E1 ligase complex"],["GO%3A0030895","apolipoprotein B mRNA editing enzyme complex"],["GO%3A0033167","ARC complex"],["GO%3A0070310","ATR-ATRIP complex"],["GO%3A0072589","box H/ACA scaRNP complex"]]},{"id":"GO:0005840","l":"ribosome","na":3,"nb":418,"a":[["ribonucleoprotein/large_ribosomal_subunit.html","large ribosomal subunit"],["ribonucleoprotein/ribosome.html","ribosome"],["ribonucleoprotein/small_ribosomal_subunit.html","small ribosomal subunit"]],"b":[["ComplexPortal%3ACPX-2854","Elongation Factor eEF1 complex, variant CAM1"],["ComplexPortal%3ACPX-425","Elongation Factor eEF1 complex, variant TEF4"],["ComplexPortal%3ACPX-427","Eukaryotic translation initiation factor 2 complex"],["ComplexPortal%3ACPX-430","Eukaryotic translation initiation factor 4F complex, variant TIF4631"],["ComplexPortal%3ACPX-431","Eukaryotic translation initiation factor 4F complex, variant TIF4632"],["ComplexPortal%3ACPX-1295","MKT1-PBP1 translation regulation complex"]]},{"id":"GO:0016236","l":"macroautophagy","na":3,"nb":53,"a":[["membrane_organelle/autophagosome.html","autophagosome"],["membrane_organelle/autophagosome_membrane.html","autophagosome membrane"],["other/trappiii_protein_complex.html","TRAPPIII protein complex"]],"b":[["ComplexPortal%3ACPX-3863","atg-5-atg-12-atg-16.1-atg-16.2 complex"],["ComplexPortal%3ACPX-3865","atg-5-atg-12-atg-16.1 complex"],["ComplexPortal%3ACPX-3866","atg-5-atg-12-atg-16.2 complex"],["ComplexPortal%3ACPX-1849","ATG12-ATG5-ATG16 complex"],["ComplexPortal%3ACPX-200","ATG12-ATG5-ATG16L1 complex"],["ComplexPortal%3ACPX-328","Atg12-Atg5-Atg16l1 complex"]]},{"id":"GO:0036064","l":"ciliary basal body","na":3,"nb":42,"a":[["appendage/cilium.html","cilium"],["cytoskeleton/ciliary_basal_body.html","ciliary basal body"],["cytoskeleton/tripartite_attachment_complex.html","tripartite attachment complex"]],"b":[["GO%3A0036064","ciliary basal body"],["GO%3A1902636","kinociliary basal body"],["GO%3A1902671","left anterior basal body"],["GO%3A1902677","left caudal basal body"],["GO%3A1902673","left posteriolateral basal body"],["GO%3A1902675","left ventral basal body"]]},{"id":"GO:0009522","l":"photosystem I","na":3,"nb":33,"a":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["GO%3A0030093","chloroplast photosystem I"],["GO%3A0009522","photosystem I"],["GO%3A0030094","plasma membrane-derived photosystem I"],["NCBIfam%3ANF014449","photosystem I assembly protein Ycf4"],["NCBIfam%3ATIGR01336","photosystem I core protein PsaB"],["NCBIfam%3ANF014578","photosystem I reaction center subunit II"]]},{"id":"GO:0000502","l":"proteasome complex","na":3,"nb":27,"a":[["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"]],"b":[["ComplexPortal%3ACPX-9082","19S-20S-PA28-alphabeta hybrid proteasome complex"],["ComplexPortal%3ACPX-9085","19S-20S-PA28-gamma hybrid proteasome complex"],["ComplexPortal%3ACPX-9003","20S immunoproteasome complex"],["ComplexPortal%3ACPX-8806","20S proteasome complex"],["ComplexPortal%3ACPX-9004","20S thymoproteasome complex"],["ComplexPortal%3ACPX-2262","26S proteasome complex"]]},{"id":"GO:0000228","l":"nuclear chromosome","na":3,"nb":26,"a":[["membrane_organelle/nuclear_lumen.html","nuclear lumen"],["other/coma_complex.html","COMA complex"],["other/nuclear_chromosome.html","nuclear chromosome"]],"b":[["ComplexPortal%3ACPX-2340","Male specific lethal complex"],["ComplexPortal%3ACPX-1288","MEI5-SAE3 recombination assembly factor complex"],["ComplexPortal%3ACPX-26610","slx1-slx4 structure-specific endonuclease complex"],["ComplexPortal%3ACPX-3159","SLX1-SLX4 structure-specific endonuclease complex"],["ComplexPortal%3ACPX-8175","SLX1-SLX4 structure-specific endonuclease complex"],["ComplexPortal%3ACPX-8093","SWI5-SFR1 recombination accessory factor complex"]]},{"id":"GO:0030089","l":"phycobilisome","na":3,"nb":26,"a":[["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["GO%3A0030089","phycobilisome"],["NCBIfam%3ATIGR01337","allophycocyanin subunit beta"],["NCBIfam%3ANF058510","bifunctional rod-capping linker CpcD/ferredoxin--NADP reductase PetH"],["NCBIfam%3ATIGR01338","C-phycocyanin subunit alpha"],["NCBIfam%3ATIGR01339","C-phycocyanin subunit beta"],["NCBIfam%3ANF058511","phycobilisome rod-core linker protein CpcG1"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":3,"nb":26,"a":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]],"b":[["Pfam%3APF27270","Alr1449"],["Pfam%3APF27301","Alr2735 N-terminal domain"],["Pfam%3APF27288","Alr2735"],["Pfam%3APF21571","Arginine dihydrolase ArgZ-like, C-terminal, first region"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF13205","Bacterial Ig-like domain"]]},{"id":"GO:0098791","l":"Golgi apparatus subcompartment","na":3,"nb":22,"a":[["membrane_organelle/cis_golgi_network.html","cis-Golgi network"],["membrane_organelle/golgi_cisterna.html","Golgi cisterna"],["membrane_organelle/trans_golgi_network.html","trans-Golgi network"]],"b":[["GO%3A0098791","Golgi apparatus subcompartment"],["GO%3A0031985","Golgi cisterna"],["GO%3A0005795","Golgi stack"],["GO%3A0005802","trans-Golgi network"],["PANTHER%3APTHR47180","ADP-RIBOSYLATION FACTOR-BINDING PROTEIN GGA1-RELATED"],["PANTHER%3APTHR21514","AP-4 COMPLEX ACCESSORY SUBUNIT TEPSIN"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":3,"nb":20,"a":[["appendage/type_iv_pilus.html","type IV pilus"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]],"b":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"],["Pfam%3APF18173","Bacterial HORMA domain 2"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["Pfam%3APF27322","Cap8 HORMA domain"],["Pfam%3APF01526","Tn3 transposase DDE domain"]]},{"id":"GO:0031966","l":"mitochondrial membrane","na":3,"nb":15,"a":[["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrial_membrane.html","mitochondrial membrane"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"]],"b":[["ComplexPortal%3ACPX-8302","ABCB10-ABCB7-FECH ABC transporter"],["ComplexPortal%3ACPX-1721","Mitochondrial respiratory chain complex IV, COX5A variant"],["ComplexPortal%3ACPX-1722","Mitochondrial respiratory chain complex IV, COX5B variant"],["ComplexPortal%3ACPX-6123","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-8620","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-9641","Mitochondrial respiratory chain complex IV"]]},{"id":"GO:0030008","l":"TRAPP complex","na":3,"nb":14,"a":[["other/trappi_protein_complex.html","TRAPPI protein complex"],["other/trappii_protein_complex.html","TRAPPII protein complex"],["other/trappiii_protein_complex.html","TRAPPIII protein complex"]],"b":[["GO%3A0030008","TRAPP complex"],["GO%3A1990070","TRAPPI protein complex"],["GO%3A1990071","TRAPPII protein complex"],["GO%3A1990072","TRAPPIII protein complex"],["PANTHER%3APTHR20902","41-2 PROTEIN ANTIGEN-RELATED"],["PANTHER%3APTHR13251","EPILEPSY HOLOPROSENCEPHALY CANDIDATE 1/TMEM1"]]},{"id":"GO:0000421","l":"autophagosome membrane","na":3,"nb":13,"a":[["membrane_organelle/autophagosome.html","autophagosome"],["membrane_organelle/autophagosome_lumen.html","autophagosome lumen"],["membrane_organelle/autophagosome_membrane.html","autophagosome membrane"]],"b":[["ComplexPortal%3ACPX-25783","SNARE complex STX17-SNAP29-VAMP7"],["ComplexPortal%3ACPX-25782","SNARE complex STX17-SNAP29-VAMP8"],["ComplexPortal%3ACPX-26400","SNARE complex STX17-SNAP47-VAMP7"],["ComplexPortal%3ACPX-26401","SNARE complex STX17-SNAP47-VAMP8"],["ComplexPortal%3ACPX-26524","SNARE complex STX4-SNAP29-SEC22b"],["ComplexPortal%3ACPX-25786","SNARE priming complex STX17-SNAP29-YKT6"]]},{"id":"GO:0005776","l":"autophagosome","na":3,"nb":12,"a":[["membrane_organelle/autophagosome.html","autophagosome"],["membrane_organelle/autophagosome_lumen.html","autophagosome lumen"],["membrane_organelle/autophagosome_membrane.html","autophagosome membrane"]],"b":[["ComplexPortal%3ACPX-362","Heparanase complex"],["ComplexPortal%3ACPX-363","Heparanase complex"],["ComplexPortal%3ACPX-4821","unc-51-atg-13 complex"],["GO%3A0044753","amphisome"],["GO%3A0005776","autophagosome"],["PANTHER%3APTHR13038","APG9 AUTOPHAGY 9"]]},{"id":"GO:0060170","l":"ciliary membrane","na":3,"nb":12,"a":[["appendage/ciliary_membrane.html","ciliary membrane"],["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"]],"b":[["ComplexPortal%3ACPX-1908","BBSome complex"],["ComplexPortal%3ACPX-1909","BBSome complex"],["GO%3A0060170","ciliary membrane"],["GO%3A0020018","ciliary pocket membrane"],["GO%3A0120201","cone photoreceptor disc membrane"],["GO%3A0098804","non-motile cilium membrane"]]},{"id":"GO:0061617","l":"MICOS complex","na":3,"nb":12,"a":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"],["other/micos_complex.html","MICOS complex"]],"b":[["ComplexPortal%3ACPX-140","MICOS mitochondrial contact site and cristae organizing system complex"],["ComplexPortal%3ACPX-25732","MICOS mitochondrial contact site and cristae organizing system complex, MIC10A variant"],["ComplexPortal%3ACPX-25733","MICOS mitochondrial contact site and cristae organizing system complex, MIC10B variant"],["ComplexPortal%3ACPX-25735","MICOS mitochondrial contact site and cristae organizing system complex, MIC10C variant"],["ComplexPortal%3ACPX-6141","MICOS mitochondrial contact site and cristae organizing system complex"],["GO%3A0061617","MICOS complex"]]},{"id":"GO:0000940","l":"outer kinetochore","na":3,"nb":10,"a":[["other/dash_complex.html","DASH complex"],["other/mis12_mind_type_complex.html","MIS12/MIND type complex"],["other/ndc80_complex.html","Ndc80 complex"]],"b":[["GO%3A0000444","MIS12/MIND type complex"],["GO%3A0000940","outer kinetochore"],["PANTHER%3APTHR14778","KINETOCHORE-ASSOCIATED PROTEIN DSN1 HOMOLOG"],["PANTHER%3APTHR31749","KINETOCHORE-ASSOCIATED PROTEIN NSL1 HOMOLOG"],["PANTHER%3APTHR10643","KINETOCHORE PROTEIN NDC80"],["PANTHER%3APTHR14281","KINETOCHORE PROTEIN SPC25-RELATED"]]},{"id":"GO:0009295","l":"nucleoid","na":3,"nb":10,"a":[["nucleoid/mitochondrial_nucleoid.html","mitochondrial nucleoid"],["nucleoid/nucleoid.html","nucleoid"],["nucleoid/plastid_nucleoid.html","plastid nucleoid"]],"b":[["GO%3A0043590","bacterial nucleoid"],["GO%3A0042645","mitochondrial nucleoid"],["GO%3A0009295","nucleoid"],["GO%3A0042646","plastid nucleoid"],["NCBIfam%3ANF016217","MukB N-terminal"],["NCBIfam%3ANF001557","nucleoid-associated protein YejK"]]},{"id":"GO:0009427","l":"bacterial-type flagellum basal body, distal rod, L ring","na":3,"nb":10,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]],"b":[["GO%3A0009427","bacterial-type flagellum basal body, distal rod, L ring"],["NCBIfam%3ANF001301","flagellar basal body L-ring protein FlgH"],["NCBIfam%3ANF001304","flagellar basal body L-ring protein FlgH"],["NCBIfam%3ANF001305","flagellar basal body L-ring protein FlgH"],["NCBIfam%3ANF009072","flagellar basal body L-ring protein FlgH"],["NCBIfam%3ANF009337","flagellar basal body L-ring protein FlgH"]]},{"id":"GO:0071986","l":"Ragulator complex","na":3,"nb":10,"a":[["other/gtr1_gtr2_gtpase_complex.html","Gtr1-Gtr2 GTPase complex"],["other/ragulator_complex.html","Ragulator complex"],["other/torc1_complex.html","TORC1 complex"]],"b":[["ComplexPortal%3ACPX-3172","EGO complex"],["ComplexPortal%3ACPX-3233","GSE complex"],["ComplexPortal%3ACPX-26528","Ragulator complex"],["ComplexPortal%3ACPX-2709","Ragulator complex"],["ComplexPortal%3ACPX-4741","Ragulator complex"],["ComplexPortal%3ACPX-4761","Ragulator complex"]]},{"id":"GO:0005816","l":"spindle pole body","na":3,"nb":9,"a":[["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/spindle_pole_body.html","spindle pole body"],["spore/prospore_membrane_spindle_pole_body_attachment_site.html","prospore membrane spindle pole body attachment site"]],"b":[["ComplexPortal%3ACPX-1198","Gamma tubulin small complex"],["ComplexPortal%3ACPX-1287","MPS2-BBP1 spindle pole body anchor complex"],["ComplexPortal%3ACPX-26510","SID2-MOB1 protein kinase complex"],["GO%3A0035974","meiotic spindle pole body"],["GO%3A0044732","mitotic spindle pole body"],["GO%3A0005816","spindle pole body"]]},{"id":"GO:0005839","l":"proteasome core complex","na":3,"nb":9,"a":[["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"]],"b":[["ComplexPortal%3ACPX-8806","20S proteasome complex"],["GO%3A0031603","cytosolic proteasome core complex"],["GO%3A0031601","nuclear proteasome core complex"],["GO%3A0005839","proteasome core complex"],["NCBIfam%3ATIGR03634","archaeal proteasome endopeptidase complex subunit beta"],["NCBIfam%3ATIGR03690","proteasome subunit beta"]]},{"id":"GO:0007035","l":"vacuolar acidification","na":3,"nb":9,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["membrane_organelle/fungal_type_vacuole_membrane.html","fungal-type vacuole membrane"],["membrane_organelle/vacuolar_membrane.html","vacuolar membrane"]],"b":[["ComplexPortal%3ACPX-10301","RAVE complex, DMXL1 variant"],["ComplexPortal%3ACPX-10303","RAVE complex, DMXL2 variant"],["ComplexPortal%3ACPX-6905","Vacuolar proton translocating ATPase complex, ATP6V0A3 variant"],["ComplexPortal%3ACPX-1193","Vacuolar proton translocating ATPase complex, vacuole variant"],["GO%3A0007042","lysosomal lumen acidification"],["GO%3A0007035","vacuolar acidification"]]},{"id":"GO:0031160","l":"spore wall","na":3,"nb":9,"a":[["spore/microsporidian_type_endospore.html","microsporidian-type endospore"],["spore/microsporidian_type_exospore.html","microsporidian-type exospore"],["spore/polar_tube_anchoring_disc.html","polar tube anchoring disc"]],"b":[["ComplexPortal%3ACPX-3028","1,3-beta-D-glucan synthase complex, FKS3-RHO1 variant"],["GO%3A0005619","ascospore wall"],["GO%3A0097515","asexual spore wall"],["GO%3A0043591","endospore external encapsulating structure"],["GO%3A0097514","sexual spore wall"],["GO%3A0031160","spore wall"]]},{"id":"GO:0005798","l":"Golgi-associated vesicle","na":3,"nb":8,"a":[["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"]],"b":[["ComplexPortal%3ACPX-1698","EMP24 complex"],["GO%3A0030137","COPI-coated vesicle"],["GO%3A0005798","Golgi-associated vesicle"],["GO%3A0030140","trans-Golgi network transport vesicle"],["PANTHER%3APTHR31975","BUD SITE SELECTION PROTEIN 7-RELATED"],["PANTHER%3APTHR10261","COATOMER SUBUNIT GAMMA"]]},{"id":"GO:0031969","l":"chloroplast membrane","na":3,"nb":8,"a":[["membrane_organelle/chloroplast_inner_membrane.html","chloroplast inner membrane"],["membrane_organelle/chloroplast_membrane.html","chloroplast membrane"],["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"]],"b":[["GO%3A0009706","chloroplast inner membrane"],["GO%3A0031969","chloroplast membrane"],["GO%3A0009707","chloroplast outer membrane"],["PANTHER%3APTHR31038","EXPRESSED PROTEIN-RELATED"],["PANTHER%3APTHR34048","LOW-DENSITY RECEPTOR-LIKE PROTEIN"],["PANTHER%3APTHR36317","PROTEIN MULTIPLE CHLOROPLAST DIVISION SITE 1"]]},{"id":"GO:0098799","l":"outer mitochondrial membrane protein complex","na":3,"nb":8,"a":[["other/ermes_complex.html","ERMES complex"],["other/mitochondrial_outer_membrane_translocase_complex.html","mitochondrial outer membrane translocase complex"],["other/sam_complex.html","SAM complex"]],"b":[["ComplexPortal%3ACPX-3196","ERMES complex"],["ComplexPortal%3ACPX-6100","SARS-CoV-2 9b complex"],["ComplexPortal%3ACPX-6101","SARS-CoV 9b complex"],["GO%3A0036266","Cdc48p-Npl4p-Vms1p AAA ATPase complex"],["GO%3A0032865","ERMES complex"],["GO%3A0140595","MIM complex"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":3,"nb":8,"a":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"]],"b":[["Pfam%3APF04439","Streptomycin adenylyltransferase"],["MCSA%3A840","alpha-2,3-sialyltransferase"],["TED%3AAF-A0A696J2C3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A696J2C3-F1-model_v4_TED01"],["TED%3AAF-A0A825M6H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A825M6H4-F1-model_v4_TED01"],["TED%3AAF-A0A5T0SBG5-F1-model_v4_TED01","TED novel fold AF-A0A5T0SBG5-F1-model_v4_TED01"],["TED%3AAF-A0A698JVM3-F1-model_v4_TED03","TED novel fold AF-A0A698JVM3-F1-model_v4_TED03"]]},{"id":"GO:0030112","l":"glycocalyx","na":3,"nb":7,"a":[["envelope/capsule.html","capsule"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]],"b":[["GO%3A0042603","capsule"],["GO%3A0030112","glycocalyx"],["GO%3A0120240","platelet glycocalyx"],["GO%3A0030114","slime layer"],["GO%3A0120238","sperm glycocalyx"],["GO%3A0120234","stereocilium coat"]]},{"id":"GO:0035859","l":"Seh1-associated complex","na":3,"nb":7,"a":[["other/gator1_complex.html","GATOR1 complex"],["other/gator2_complex.html","GATOR2 complex"],["other/seh1_associated_complex.html","Seh1-associated complex"]],"b":[["ComplexPortal%3ACPX-3231","SEA complex"],["GO%3A0035859","Seh1-associated complex"],["PANTHER%3APTHR13153","CGTHBA PROTEIN -14 GENE PROTEIN"],["PANTHER%3APTHR13179","DEP DOMAIN CONTAINING PROTEIN 5"],["PANTHER%3APTHR46200","GATOR COMPLEX PROTEIN WDR24"],["PANTHER%3APTHR46170","GATOR COMPLEX PROTEIN WDR59"]]},{"id":"GO:0044284","l":"mitochondrial crista junction","na":3,"nb":7,"a":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"],["other/micos_complex.html","MICOS complex"]],"b":[["ComplexPortal%3ACPX-140","MICOS mitochondrial contact site and cristae organizing system complex"],["ComplexPortal%3ACPX-25732","MICOS mitochondrial contact site and cristae organizing system complex, MIC10A variant"],["ComplexPortal%3ACPX-25733","MICOS mitochondrial contact site and cristae organizing system complex, MIC10B variant"],["ComplexPortal%3ACPX-25735","MICOS mitochondrial contact site and cristae organizing system complex, MIC10C variant"],["ComplexPortal%3ACPX-6141","MICOS mitochondrial contact site and cristae organizing system complex"],["GO%3A0044284","mitochondrial crista junction"]]},{"id":"GO:1990131","l":"Gtr1-Gtr2 GTPase complex","na":3,"nb":7,"a":[["other/gtr1_gtr2_gtpase_complex.html","Gtr1-Gtr2 GTPase complex"],["other/ragulator_complex.html","Ragulator complex"],["other/torc1_complex.html","TORC1 complex"]],"b":[["ComplexPortal%3ACPX-26516","RAG guanosine triphosphatase complex"],["ComplexPortal%3ACPX-26517","RAG guanosine triphosphatase complex"],["ComplexPortal%3ACPX-2542","RAG guanosine triphosphatase complex, RAGA-RAGC variant"],["ComplexPortal%3ACPX-2513","RAG guanosine triphosphatase complex, RAGA-RAGD variant"],["ComplexPortal%3ACPX-2514","RAG guanosine triphosphatase complex, RAGB-RAGC variant"],["ComplexPortal%3ACPX-767","RAG guanosine triphosphatase complex, RAGB-RAGD variant"]]},{"id":"NCBITaxon:5722","l":"Trichomonas vaginalis","na":3,"nb":7,"a":[["membrane_organelle/hydrogenosomal_membrane.html","hydrogenosomal membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/hydrogenosome_lumen.html","hydrogenosome lumen"]],"b":[["TED%3AAF-A2F3M7-F1-model_v4_TED03","TED highly-symmetric fold AF-A2F3M7-F1-model_v4_TED03"],["TED%3AAF-A2HEW4-F1-model_v4_TED01","TED highly-symmetric fold AF-A2HEW4-F1-model_v4_TED01"],["TED%3AAF-A2DT59-F1-model_v4_TED01","TED novel fold AF-A2DT59-F1-model_v4_TED01"],["TED%3AAF-A2E7I9-F1-model_v4_TED02","TED novel fold AF-A2E7I9-F1-model_v4_TED02"],["TED%3AAF-A2F6I8-F1-model_v4_TED02","TED novel fold AF-A2F6I8-F1-model_v4_TED02"],["TED%3AAF-A2FV33-F1-model_v4_TED01","TED novel fold AF-A2FV33-F1-model_v4_TED01"]]},{"id":"DOI:10.1016/j.cell.2021.03.057","l":"","na":6,"nb":3,"a":[["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"],["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"],["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"]],"b":[["NCBIfam%3ATIGR00205","flagellar hook-basal body complex protein FliE"],["InterPro%3AIPR063443","FliF, N-terminal domain"],["NCBIfam%3ANF056363","FliF N-terminal domain"]]},{"id":"GO:0030122","l":"AP-2 adaptor complex","na":3,"nb":6,"a":[["other/ap_2_adaptor_complex.html","AP-2 adaptor complex"],["other/clathrin_coat_of_coated_pit.html","clathrin coat of coated pit"],["other/clathrin_coat_of_endocytic_vesicle.html","clathrin coat of endocytic vesicle"]],"b":[["ComplexPortal%3ACPX-534","Adapter complex AP-2"],["ComplexPortal%3ACPX-5149","AP-2 Adaptor complex, alpha1 variant"],["ComplexPortal%3ACPX-5152","AP-2 Adaptor complex, alpha1 variant"],["ComplexPortal%3ACPX-5150","AP-2 Adaptor complex, alpha2 variant"],["ComplexPortal%3ACPX-5153","AP-2 Adaptor complex, alpha2 variant"],["GO%3A0030122","AP-2 adaptor complex"]]},{"id":"GO:0031978","l":"plastid thylakoid lumen","na":6,"nb":3,"a":[["membrane_organelle/chloroplast_thylakoid_lumen.html","chloroplast thylakoid lumen"],["membrane_organelle/cyanelle_thylakoid_lumen.html","cyanelle thylakoid lumen"],["membrane_organelle/organellar_chromatophore_thylakoid_lumen.html","organellar chromatophore thylakoid lumen"],["membrane_organelle/plastid_thylakoid.html","plastid thylakoid"],["membrane_organelle/plastid_thylakoid_lumen.html","plastid thylakoid lumen"],["membrane_organelle/plastid_thylakoid_membrane.html","plastid thylakoid membrane"]],"b":[["GO%3A0009543","chloroplast thylakoid lumen"],["GO%3A0033114","cyanelle thylakoid lumen"],["GO%3A0031978","plastid thylakoid lumen"]]},{"id":"GO:0036452","l":"ESCRT complex","na":3,"nb":6,"a":[["other/escrt_0_complex.html","ESCRT-0 complex"],["other/escrt_i_complex.html","ESCRT I complex"],["other/escrt_ii_complex.html","ESCRT II complex"]],"b":[["GO%3A0033565","ESCRT-0 complex"],["GO%3A0036452","ESCRT complex"],["GO%3A0000813","ESCRT I complex"],["GO%3A0000814","ESCRT II complex"],["GO%3A0000815","ESCRT III complex"],["GO%3A1990621","ESCRT IV complex"]]},{"id":"GO:1990072","l":"TRAPPIII protein complex","na":3,"nb":6,"a":[["other/trappi_protein_complex.html","TRAPPI protein complex"],["other/trappii_protein_complex.html","TRAPPII protein complex"],["other/trappiii_protein_complex.html","TRAPPIII protein complex"]],"b":[["ComplexPortal%3ACPX-4766","TRAPP III complex"],["ComplexPortal%3ACPX-4750","TRAPP III complex, TRAPPC2 variant"],["ComplexPortal%3ACPX-6903","TRAPP III complex, TRAPPC2B variant"],["ComplexPortal%3ACPX-2279","TRAPPIII complex"],["ComplexPortal%3ACPX-1383","TRAPPIII protein complex"],["GO%3A1990072","TRAPPIII protein complex"]]},{"id":"NCBITaxon:284813","l":"Encephalitozoon cuniculi (strain GB-M1)","na":3,"nb":6,"a":[["spore/microsporidian_type_endospore.html","microsporidian-type endospore"],["spore/microsporidian_type_exospore.html","microsporidian-type exospore"],["spore/polar_tube_anchoring_disc.html","polar tube anchoring disc"]],"b":[["Pfam%3APF17027","Histone-fold protein"],["Pfam%3APF10455","Bin/amphiphysin/Rvs domain for vesicular trafficking"],["Pfam%3APF07753","Protein of unknown function (DUF1609)"],["Pfam%3APF09591","Protein of unknown function (DUF2463)"],["Pfam%3APF12376","Protein of unknown function (DUF3654)"],["TED%3AAF-Q8SVN2-F1-model_v4_TED01","TED novel fold AF-Q8SVN2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:5693","l":"Trypanosoma cruzi","na":3,"nb":6,"a":[["membrane_organelle/contractile_vacuole.html","contractile vacuole"],["membrane_organelle/reservosome.html","reservosome"],["other/cytostome.html","cytostome"]],"b":[["Pfam%3APF22592","FCaBP EF-hand domain"],["Pfam%3APF09394","Chagasin family peptidase inhibitor I42"],["Pfam%3APF12131","Protein of unknown function (DUF3586)"],["Pfam%3APF11052","Trans-sialidase of Trypanosoma hydrophobic C-terminal"],["Pfam%3APF13859","BNR repeat-like domain"],["TED%3AAF-A0A2V2XJY2-F1-model_v4_TED02","TED novel fold AF-A0A2V2XJY2-F1-model_v4_TED02"]]},{"id":"DOI:10.1016/0022-2836(90)90365-S","l":"","na":3,"nb":5,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"]],"b":[["InterPro%3AIPR019776","Flagellar basal body rod protein, conserved site"],["InterPro%3AIPR001444","Flagellar basal body rod protein, N-terminal"],["InterPro%3AIPR006182","Flagellar M-ring, N-terminal"],["NCBIfam%3ANF018168","flagellar basal body rod C-terminal domain-containing protein"],["PROSITE%3APDOC00508","Flagella basal body rod proteins"]]},{"id":"DOI:10.1078/S0171-9335(04)70009-6","l":"","na":3,"nb":5,"a":[["other/trappi_protein_complex.html","TRAPPI protein complex"],["other/trappii_protein_complex.html","TRAPPII protein complex"],["other/trappiii_protein_complex.html","TRAPPIII protein complex"]],"b":[["InterPro%3AIPR058565","Trs120/TRAPPC9, first Ig-like domain"],["InterPro%3AIPR058568","Trs120/TRAPPC9, fourth Ig-like domain"],["InterPro%3AIPR058563","Trs120/TRAPPC9, N-terminal domain"],["InterPro%3AIPR058567","Trs120/TRAPPC9, third Ig-like domain"],["InterPro%3AIPR058564","Trs120/TRAPPC9, TPR region"]]},{"id":"GO:0009431","l":"bacterial-type flagellum basal body, MS ring","na":5,"nb":3,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"],["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"],["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["GO%3A0009431","bacterial-type flagellum basal body, MS ring"],["NCBIfam%3ATIGR00206","flagellar basal-body MS-ring/collar protein FliF"],["NCBIfam%3ATIGR00205","flagellar hook-basal body complex protein FliE"]]},{"id":"GO:0030118","l":"clathrin coat","na":5,"nb":3,"a":[["other/clathrin_coat.html","clathrin coat"],["other/clathrin_coat_of_coated_pit.html","clathrin coat of coated pit"],["other/clathrin_coat_of_endocytic_vesicle.html","clathrin coat of endocytic vesicle"],["other/clathrin_coat_of_trans_golgi_network_vesicle.html","clathrin coat of trans-Golgi network vesicle"],["other/membrane_coat.html","membrane coat"]],"b":[["GO%3A0030118","clathrin coat"],["GO%3A0030132","clathrin coat of coated pit"],["GO%3A0030125","clathrin vesicle coat"]]},{"id":"GO:0030132","l":"clathrin coat of coated pit","na":3,"nb":5,"a":[["other/ap_2_adaptor_complex.html","AP-2 adaptor complex"],["other/clathrin_coat.html","clathrin coat"],["other/clathrin_coat_of_coated_pit.html","clathrin coat of coated pit"]],"b":[["GO%3A0030132","clathrin coat of coated pit"],["InterPro%3AIPR015348","Clathrin, heavy chain, linker, core motif"],["Pfam%3APF01086","Clathrin light chain"],["InterPro%3AIPR016025","Clathrin heavy chain, N-terminal"],["Pfam%3APF09268","Clathrin, heavy-chain linker"]]},{"id":"GO:0033113","l":"cyanelle membrane","na":5,"nb":3,"a":[["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"],["membrane_organelle/plastid_membrane.html","plastid membrane"]],"b":[["GO%3A0036012","cyanelle inner membrane"],["GO%3A0033113","cyanelle membrane"],["GO%3A0036013","cyanelle outer membrane"]]},{"id":"GO:0045037","l":"protein import into chloroplast stroma","na":5,"nb":3,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"],["other/tic_complex.html","Tic complex"],["other/toc_complex.html","Toc complex"]],"b":[["GO%3A0045037","protein import into chloroplast stroma"],["PANTHER%3APTHR47296","PROTEIN TIC 40, CHLOROPLASTIC"],["PANTHER%3APTHR37755","PROTEIN TIC 56, CHLOROPLASTIC"]]},{"id":"InterPro:IPR020013","l":"","na":3,"nb":5,"a":[["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"]],"b":[["Pfam%3APF06429","Flagellar basal body rod FlgEFG protein C-terminal"],["Pfam%3APF22367","Flagellar hook protein FlgE, third domain"],["Pfam%3APF07559","Flagellar basal body protein FlaE D2 domain"],["Pfam%3APF00460","Flagella basal body rod protein"],["PROSITE%3APS00588","Flagella basal body rod proteins signature"]]},{"id":"DOI:10.1038/nature09300","l":"","na":3,"nb":4,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"]],"b":[["InterPro%3AIPR032779","Flagellar motor switch protein FliG, middle domain"],["InterPro%3AIPR028263","Flagellar motor switch protein FliG, N-terminal domain"],["NCBIfam%3ANF026191","FliG middle domain"],["NCBIfam%3ANF026192","FliG N-terminal domain"]]},{"id":"GO:0005782","l":"peroxisomal matrix","na":3,"nb":4,"a":[["membrane_organelle/peroxisomal_matrix.html","peroxisomal matrix"],["membrane_organelle/peroxisomal_membrane.html","peroxisomal membrane"],["membrane_organelle/peroxisome.html","peroxisome"]],"b":[["GO%3A0034468","glycosome lumen"],["GO%3A0031908","glyoxysomal lumen"],["GO%3A0005782","peroxisomal matrix"],["PANTHER%3APTHR46027","PEROXISOMAL TARGETING SIGNAL 2 RECEPTOR"]]},{"id":"GO:0009428","l":"bacterial-type flagellum basal body, distal rod, P ring","na":3,"nb":4,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]],"b":[["GO%3A0009428","bacterial-type flagellum basal body, distal rod, P ring"],["NCBIfam%3ATIGR03170","flagellar basal body P-ring formation chaperone FlgA"],["NCBIfam%3ANF014206","flagellar basal body P-ring protein FlgI"],["Pfam%3APF02119","Flagellar P-ring protein"]]},{"id":"GO:0009433","l":"bacterial-type flagellum basal body, C ring","na":4,"nb":3,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"]],"b":[["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009433","bacterial-type flagellum basal body, C ring"]]},{"id":"GO:0009765","l":"photosynthesis, light harvesting","na":3,"nb":4,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"]],"b":[["GO%3A0009765","photosynthesis, light harvesting"],["GO%3A0009768","photosynthesis, light harvesting in photosystem I"],["GO%3A0009769","photosynthesis, light harvesting in photosystem II"],["NCBIfam%3ATIGR03041","chlorophyll a/b binding light-harvesting protein"]]},{"id":"GO:0032585","l":"multivesicular body membrane","na":3,"nb":4,"a":[["membrane_organelle/multivesicular_body.html","multivesicular body"],["membrane_organelle/multivesicular_body_lumen.html","multivesicular body lumen"],["membrane_organelle/multivesicular_body_membrane.html","multivesicular body membrane"]],"b":[["ComplexPortal%3ACPX-329","ESCRT-III complex"],["ComplexPortal%3ACPX-332","ESCRT-III complex, variant Chmp1b1"],["ComplexPortal%3ACPX-333","ESCRT-III complex, variant Chmp1b2"],["GO%3A0032585","multivesicular body membrane"]]},{"id":"GO:0071682","l":"endocytic vesicle lumen","na":4,"nb":3,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle_lumen.html","clathrin-coated endocytic vesicle lumen"],["membrane_organelle/endocytic_vesicle.html","endocytic vesicle"],["membrane_organelle/endocytic_vesicle_lumen.html","endocytic vesicle lumen"],["membrane_organelle/endocytic_vesicle_membrane.html","endocytic vesicle membrane"]],"b":[["GO%3A0106176","clathrin-coated endocytic vesicle lumen"],["GO%3A0071682","endocytic vesicle lumen"],["GO%3A0097013","phagocytic vesicle lumen"]]},{"id":"GO:0005628","l":"prospore membrane","na":3,"nb":3,"a":[["spore/prospore_membrane.html","prospore membrane"],["spore/prospore_membrane_leading_edge.html","prospore membrane leading edge"],["spore/prospore_membrane_spindle_pole_body_attachment_site.html","prospore membrane spindle pole body attachment site"]],"b":[["ComplexPortal%3ACPX-5464","Vesicular SNARE complex SSO1-SPO20-SNC1"],["ComplexPortal%3ACPX-5466","Vesicular SNARE complex SSO1-SPO20-SNC2"],["GO%3A0005628","prospore membrane"]]},{"id":"GO:0034357","l":"photosynthetic membrane","na":3,"nb":3,"a":[["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"],["membrane_organelle/plasma_membrane_derived_chromatophore_membrane.html","plasma membrane-derived chromatophore membrane"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["GO%3A0034357","photosynthetic membrane"],["GO%3A0042717","plasma membrane-derived chromatophore membrane"],["GO%3A0042651","thylakoid membrane"]]},{"id":"GO:0110165","l":"cellular anatomical structure","na":2,"nb":1312,"a":[["other/phagophore_assembly_site.html","phagophore assembly site"],["other/popz_polar_microdomain.html","PopZ polar microdomain"]],"b":[["GO%3A0031672","A band"],["GO%3A0036063","acroblast"],["GO%3A0043159","acrosomal matrix"],["GO%3A0099079","actin body"],["GO%3A0030478","actin cap"],["GO%3A0061834","actin filament branch point"]]},{"id":"GO:0140535","l":"intracellular protein-containing complex","na":2,"nb":262,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"],["other/proteasome_complex.html","proteasome complex"]],"b":[["ComplexPortal%3ACPX-15604","VCP-remodelling complex"],["GO%3A0032144","4-aminobutyrate transaminase complex"],["GO%3A0034977","ABIN2-NFKB1-MAP3K8 complex"],["GO%3A0030929","ADPG pyrophosphorylase complex"],["GO%3A0017101","aminoacyl-tRNA synthetase multienzyme complex"],["GO%3A0009356","aminodeoxychorismate synthase complex"]]},{"id":"NCBITaxon:83334","l":"Escherichia coli O157:H7","na":2,"nb":220,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"]],"b":[["IDPO%3A0000011","disorder to order"],["IDPO%3A0000014","order to disorder"],["Pfam%3APF12343","DeaD helicase C-terminal disordered region"],["Pfam%3APF26539","YhiD C-terminal ACT domain"],["Pfam%3APF01081","KDPG and KHG aldolase"],["Pfam%3APF10423","Bacterial AMP nucleoside phosphorylase N-terminus"]]},{"id":"GO:0098797","l":"plasma membrane protein complex","na":2,"nb":216,"a":[["division_machinery/elongasome.html","elongasome"],["other/ap_2_adaptor_complex.html","AP-2 adaptor complex"]],"b":[["ComplexPortal%3ACPX-850","AHNAK - Annexin A2 - S100-A10 complex"],["ComplexPortal%3ACPX-905","AHNAK - Annexin A2 - S100-A10 complex"],["ComplexPortal%3ACPX-853","Annexin A2 - S100-A10 complex"],["ComplexPortal%3ACPX-898","Annexin A2 - S100-A10 complex"],["ComplexPortal%3ACPX-9322","B-T lymphocyte attenuator, BTLA-TNFRSF14 complex"],["ComplexPortal%3ACPX-4602","FtsEX ABC cell division complex"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":159,"nb":2,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"],["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/septin_ring.html","septin ring"],["cytoskeleton/spindle_pole_body.html","spindle pole body"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"]],"b":[["PROSITE%3APS00820","Glucoamylase active site region signature"],["TED%3AAF-A0A7I9G6Y3-F1-model_v4_TED02","TED novel fold AF-A0A7I9G6Y3-F1-model_v4_TED02"]]},{"id":"GO:0015934","l":"large ribosomal subunit","na":2,"nb":130,"a":[["ribonucleoprotein/large_ribosomal_subunit.html","large ribosomal subunit"],["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["GO%3A0022625","cytosolic large ribosomal subunit"],["GO%3A0015934","large ribosomal subunit"],["GO%3A0000315","organellar large ribosomal subunit"],["NCBIfam%3ATIGR01169","50S ribosomal protein L1"],["NCBIfam%3ANF000955","50S ribosomal protein L10"],["NCBIfam%3ATIGR01077","50S ribosomal protein L13"]]},{"id":"GO:0005730","l":"nucleolus","na":2,"nb":121,"a":[["membrane_organelle/nuclear_lumen.html","nuclear lumen"],["other/nucleolus.html","nucleolus"]],"b":[["ComplexPortal%3ACPX-1099","B-WICH chromatin remodelling complex"],["ComplexPortal%3ACPX-1133","B-WICH chromatin remodelling complex"],["ComplexPortal%3ACPX-26423","Box C/D snoRNA-guided RNP methyltransferase complex, FBL variant"],["ComplexPortal%3ACPX-26377","Box C/D snoRNA-Guided RNP methyltransferase complex, FBLL1 variant"],["ComplexPortal%3ACPX-3905","Caspase-2 PIDDosome"],["ComplexPortal%3ACPX-3963","Caspase-2 PIDDosome"]]},{"id":"GO:0015935","l":"small ribosomal subunit","na":2,"nb":113,"a":[["ribonucleoprotein/ribosome.html","ribosome"],["ribonucleoprotein/small_ribosomal_subunit.html","small ribosomal subunit"]],"b":[["GO%3A0022627","cytosolic small ribosomal subunit"],["GO%3A0000314","organellar small ribosomal subunit"],["GO%3A0015935","small ribosomal subunit"],["NCBIfam%3ATIGR01046","30S ribosomal protein S10"],["NCBIfam%3ATIGR00981","30S ribosomal protein S12"],["NCBIfam%3ATIGR00982","30S ribosomal protein S12"]]},{"id":"GO:0012505","l":"endomembrane system","na":2,"nb":109,"a":[["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"],["membrane_organelle/golgi_apparatus.html","Golgi apparatus"]],"b":[["ComplexPortal%3ACPX-1627","RAVE complex"],["ComplexPortal%3ACPX-25781","RAVE complex"],["ComplexPortal%3ACPX-1653","Retromer complex"],["ComplexPortal%3ACPX-2610","Retromer complex"],["ComplexPortal%3ACPX-26687","Retromer complex"],["GO%3A0012505","endomembrane system"]]},{"id":"GO:0098588","l":"bounding membrane of organelle","na":2,"nb":94,"a":[["appendage/ciliary_membrane.html","ciliary membrane"],["membrane_organelle/endocytic_vesicle_membrane.html","endocytic vesicle membrane"]],"b":[["GO%3A0033102","acidocalcisome membrane"],["GO%3A0032578","aleurone grain membrane"],["GO%3A0033111","attachment organelle membrane"],["GO%3A0098588","bounding membrane of organelle"],["GO%3A0030661","chitosome membrane"],["GO%3A0060170","ciliary membrane"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":2,"nb":93,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17544","requires hydrogencarbonate"],["EC%3A1.13.11.73","methylphosphonate synthase"],["EC%3A1.2.1.27","methylmalonate-semialdehyde dehydrogenase (CoA acylating)"],["EC%3A2.5.1.120","aminodeoxyfutalosine synthase"],["EC%3A2.5.1.143","pyridinium-3,5-biscarboxylic acid mononucleotide synthase"],["EC%3A2.7.2.2","carbamate kinase"]]},{"id":"GO:0009252","l":"peptidoglycan biosynthetic process","na":2,"nb":90,"a":[["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/elongasome.html","elongasome"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["GO%3A0009252","peptidoglycan biosynthetic process"],["GO%3A0018104","peptidoglycan-protein cross-linking"],["NCBIfam%3ATIGR00492","alanine racemase"],["NCBIfam%3ANF007061","bifunctional glycosyl transferase/transpeptidase"],["NCBIfam%3ANF006986","bifunctional UDP-N-acetylglucosamine diphosphorylase/glucosamine-1-phosphate N-acetyltransferase GlmU"]]},{"id":"GO:0140534","l":"endoplasmic reticulum protein-containing complex","na":2,"nb":72,"a":[["other/get_complex.html","GET complex"],["other/sec62_sec63_complex.html","Sec62/Sec63 complex"]],"b":[["GO%3A0036513","Derlin-1 retrotranslocation complex"],["GO%3A0036502","Derlin-1-VIMP complex"],["GO%3A0031502","dolichyl-phosphate-mannose-protein mannosyltransferase complex"],["GO%3A0070939","Dsl1/NZR complex"],["GO%3A0070385","egasyn-beta-glucuronidase complex"],["GO%3A0072546","EMC complex"]]},{"id":"GO:0030288","l":"outer membrane-bounded periplasmic space","na":2,"nb":62,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"]],"b":[["ComplexPortal%3ACPX-319","Trimethylamine-N-oxide reductase TorAC complex"],["GO%3A0030288","outer membrane-bounded periplasmic space"],["NCBIfam%3ATIGR03227","2-aminoethylphosphonate ABC transporter substrate-binding protein"],["NCBIfam%3ANF000397","ACC family cephalosporin-hydrolyzing class C beta-lactamase"],["NCBIfam%3ATIGR01672","acid phosphatase AphA"],["NCBIfam%3ANF000385","ACT family cephalosporin-hydrolyzing class C beta-lactamase"]]},{"id":"GO:0006888","l":"endoplasmic reticulum to Golgi vesicle-mediated transport","na":2,"nb":60,"a":[["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"],["other/trappi_protein_complex.html","TRAPPI protein complex"]],"b":[["ComplexPortal%3ACPX-1698","EMP24 complex"],["ComplexPortal%3ACPX-7221","ERGIC2-ERGIC3 retrograde receptor complex"],["ComplexPortal%3ACPX-1854","Golgi SNARE complex SED5-BOS1-BET1-SEC22"],["ComplexPortal%3ACPX-1855","Golgi SNARE complex SED5-GOS1-SFT1-YKT6"],["ComplexPortal%3ACPX-8001","LMAN1-MCFD2 cargo receptor complex"],["ComplexPortal%3ACPX-4764","TRAPP II complex"]]},{"id":"GO:0010498","l":"proteasomal protein catabolic process","na":2,"nb":60,"a":[["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"]],"b":[["ComplexPortal%3ACPX-9003","20S immunoproteasome complex"],["ComplexPortal%3ACPX-8806","20S proteasome complex"],["ComplexPortal%3ACPX-9021","20S spermatoproteasome complex"],["ComplexPortal%3ACPX-9004","20S thymoproteasome complex"],["ComplexPortal%3ACPX-9077","26S proteasome complex"],["ComplexPortal%3ACPX-9087","26S proteasome complex, testis-specific variant"]]},{"id":"GO:0009523","l":"photosystem II","na":2,"nb":59,"a":[["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["GO%3A0030095","chloroplast photosystem II"],["GO%3A0009523","photosystem II"],["GO%3A0030096","plasma membrane-derived thylakoid photosystem II"],["NCBIfam%3ATIGR01332","cytochrome b559 subunit alpha"],["NCBIfam%3ATIGR01333","cytochrome b559 subunit beta"],["NCBIfam%3ANF012505","Lumenal portion of Cytochrome b559, alpha (gene psbE) subunit"]]},{"id":"GO:0007059","l":"chromosome segregation","na":2,"nb":58,"a":[["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["other/kinetochore.html","kinetochore"]],"b":[["ComplexPortal%3ACPX-26706","CLTA-CLTC-CKAP5-TACC3, mitotic spindle organizing complex"],["ComplexPortal%3ACPX-26711","CLTB-CLTC-CKAP5-TACC3, mitotic spindle organizing complex"],["ComplexPortal%3ACPX-2533","Kinetochore CCAN complex"],["ComplexPortal%3ACPX-5646","Kinetochore CCAN complex"],["ComplexPortal%3ACPX-5704","Kinetochore CCAN complex"],["ComplexPortal%3ACPX-26614","NDC80 complex"]]},{"id":"GO:0005938","l":"cell cortex","na":2,"nb":49,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"],["cytoskeleton/septin_ring.html","septin ring"]],"b":[["ComplexPortal%3ACPX-977","CDC24-FAR1-Gbetagamma complex"],["ComplexPortal%3ACPX-26690","Cortical microtubule stabilization complex, KANK1 variant"],["ComplexPortal%3ACPX-20447","Cortical microtubule stabilization complex, KANK2 variant"],["ComplexPortal%3ACPX-3381","Egg-3/4/5 MBK-2 complex"],["ComplexPortal%3ACPX-26666","GNAI1-GPSM2-NUMA1, spindle orientation complex"],["ComplexPortal%3ACPX-4027","gpr-1-gpr-2-lin-5 complex"]]},{"id":"GO:0051276","l":"chromosome organization","na":2,"nb":49,"a":[["nucleoid/nucleoid.html","nucleoid"],["other/nuclear_chromosome.html","nuclear chromosome"]],"b":[["ComplexPortal%3ACPX-1249","SDS22-GLC7 phosphatase complex"],["ComplexPortal%3ACPX-1260","SDS22-GLC7-YPI1 phosphatase complex"],["GO%3A0036386","bacterial nucleoid DNA packaging"],["GO%3A0141112","broken chromosome clustering"],["GO%3A0030261","chromosome condensation"],["GO%3A0051276","chromosome organization"]]},{"id":"GO:0000932","l":"P-body","na":2,"nb":48,"a":[["ribonucleoprotein/cytoplasmic_stress_granule.html","cytoplasmic stress granule"],["ribonucleoprotein/p_body.html","P-body"]],"b":[["ComplexPortal%3ACPX-1185","DCS1-DCS2 regulator of decapping scavenger complex"],["ComplexPortal%3ACPX-45","LSM1-7 complex"],["ComplexPortal%3ACPX-112","LSM1-7-PAT1 complex"],["ComplexPortal%3ACPX-1308","LSM1-7-PAT1 complex, variant LSM1A-LSM3A-LSM6A-PAT1"],["ComplexPortal%3ACPX-1391","LSM1-7-PAT1 complex, variant LSM1A-LSM3A-LSM6A-PAT1H1"],["ComplexPortal%3ACPX-1399","LSM1-7-PAT1 complex, variant LSM1A-LSM3A-LSM6A-PAT1H2"]]},{"id":"GO:0042147","l":"retrograde transport, endosome to Golgi","na":2,"nb":41,"a":[["other/garp_complex.html","GARP complex"],["other/retromer_complex.html","retromer complex"]],"b":[["ComplexPortal%3ACPX-5322","Endosomal SNARE complex TLG2-VTI1-TLG1-SNC1"],["ComplexPortal%3ACPX-5321","Endosomal SNARE complex TLG2-VTI1-TLG1-SNC2"],["ComplexPortal%3ACPX-1718","GARP tethering complex"],["ComplexPortal%3ACPX-365","GARP tethering complex"],["ComplexPortal%3ACPX-6208","GARP tethering complex"],["ComplexPortal%3ACPX-2788","GARP tethering complex, Vps50 variant"]]},{"id":"GO:0006402","l":"mRNA catabolic process","na":2,"nb":39,"a":[["ribonucleoprotein/bacterial_degradosome.html","bacterial degradosome"],["ribonucleoprotein/p_body.html","P-body"]],"b":[["ComplexPortal%3ACPX-2771","CCR4-NOT mRNA deadenylase complex"],["ComplexPortal%3ACPX-11781","Lyric-SND1 RNA regulator complex"],["ComplexPortal%3ACPX-2733","miRNA RISC complex"],["ComplexPortal%3ACPX-1040","SKI complex"],["GO%3A0141065","maternal mRNA clearance"],["GO%3A0000958","mitochondrial mRNA catabolic process"]]},{"id":"NCBITaxon:272634","l":"Mycoplasmoides pneumoniae (strain ATCC 29342 / M129 / Subtype 1)","na":2,"nb":39,"a":[["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"]],"b":[["Pfam%3APF01812","5-formyltetrahydrofolate cyclo-ligase family"],["Pfam%3APF03257","Mycoplasma adhesin P1, C-terminal"],["Pfam%3APF22509","CARDS D2, beta trefoil domain"],["Pfam%3APF22346","ADP-ribosylating toxin CARDS, C-terminal beta-trefoil domain"],["Pfam%3APF21694","DNA polymerase III delta subunit, C-terminal domain"],["Pfam%3APF01519","Protein of unknown function DUF16"]]},{"id":"GO:0008360","l":"regulation of cell shape","na":2,"nb":35,"a":[["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/elongasome.html","elongasome"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["ComplexPortal%3ACPX-2499","Erythrocyte spectrin complex"],["GO%3A0071963","establishment or maintenance of cell polarity regulating cell shape"],["GO%3A0008360","regulation of cell shape"],["GO%3A0061389","regulation of direction of cell growth"],["GO%3A0016476","regulation of embryonic cell shape"]]},{"id":"GO:0030141","l":"secretory granule","na":2,"nb":33,"a":[["membrane_organelle/apicomplexan_dense_granule.html","apicomplexan dense granule"],["membrane_organelle/mucocyst.html","mucocyst"]],"b":[["GO%3A0001669","acrosomal vesicle"],["GO%3A0020026","apicomplexan dense granule"],["GO%3A0042582","azurophil granule"],["GO%3A0042583","chromaffin granule"],["GO%3A0060473","cortical granule"],["GO%3A0031045","dense core granule"]]},{"id":"GO:0015977","l":"carbon fixation","na":2,"nb":30,"a":[["microcompartment/carboxysome.html","carboxysome"],["other/pyrenoid.html","pyrenoid"]],"b":[["GO%3A0009760","C4 photosynthesis"],["GO%3A0009761","CAM photosynthesis"],["GO%3A0043427","carbon fixation by 3-hydroxypropionate cycle"],["GO%3A0030634","carbon fixation by acetyl-CoA pathway"],["GO%3A0015977","carbon fixation"],["GO%3A0019643","reductive tricarboxylic acid cycle"]]},{"id":"GO:0005770","l":"late endosome","na":2,"nb":27,"a":[["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/multivesicular_body.html","multivesicular body"]],"b":[["ComplexPortal%3ACPX-5181","AP-5 Adaptor complex"],["ComplexPortal%3ACPX-5182","AP-5 Adaptor complex"],["ComplexPortal%3ACPX-20045","AP5-Spastizin-spatacsin complex"],["ComplexPortal%3ACPX-3233","GSE complex"],["ComplexPortal%3ACPX-8153","MON1-CCZ1 guanyl-nucleotide exchange factor complex, MON1A variant"],["ComplexPortal%3ACPX-8152","MON1-CCZ1 guanyl-nucleotide exchange factor complex, MON1B variant"]]},{"id":"GO:0046961","l":"proton-transporting ATPase activity, rotational mechanism","na":2,"nb":26,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v1_domain.html","vacuolar proton-transporting V-type ATPase, V1 domain"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["ComplexPortal%3ACPX-2470","Vacuolar proton translocating ATPase complex, ATP6V0A1 variant"],["ComplexPortal%3ACPX-6904","Vacuolar proton translocating ATPase complex, ATP6V0A2 variant"],["ComplexPortal%3ACPX-6905","Vacuolar proton translocating ATPase complex, ATP6V0A3 variant"],["ComplexPortal%3ACPX-6912","Vacuolar proton translocating ATPase complex, ATP6V0A4 variant"],["ComplexPortal%3ACPX-1192","Vacuolar proton translocating ATPase complex, Golgi variant"]]},{"id":"GO:0000145","l":"exocyst","na":2,"nb":25,"a":[["other/cellular_bud_tip.html","cellular bud tip"],["other/exocyst.html","exocyst"]],"b":[["ComplexPortal%3ACPX-1890","Exocyst complex"],["ComplexPortal%3ACPX-26496","Exocyst complex"],["ComplexPortal%3ACPX-2465","Exocyst"],["ComplexPortal%3ACPX-712","Exocyst"],["ComplexPortal%3ACPX-4943","Exocyst, EXOC6 variant"],["ComplexPortal%3ACPX-4982","Exocyst, Exoc6 variant"]]},{"id":"GO:0030658","l":"transport vesicle membrane","na":2,"nb":20,"a":[["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"],["membrane_organelle/trans_golgi_network_transport_vesicle_membrane.html","trans-Golgi network transport vesicle membrane"]],"b":[["GO%3A0060201","clathrin-sculpted acetylcholine transport vesicle membrane"],["GO%3A0060203","clathrin-sculpted glutamate transport vesicle membrane"],["GO%3A0070083","clathrin-sculpted monoamine transport vesicle membrane"],["GO%3A0012507","ER to Golgi transport vesicle membrane"],["GO%3A0099501","exocytic vesicle membrane"],["GO%3A0012508","Golgi to ER transport vesicle membrane"]]},{"id":"GO:0000048","l":"peptidyltransferase activity","na":2,"nb":18,"a":[["ribonucleoprotein/large_ribosomal_subunit.html","large ribosomal subunit"],["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["EC%3A2.3.2.12","peptidyltransferase"],["ComplexPortal%3ACPX-5226","39S mitochondrial large ribosomal subunit"],["ComplexPortal%3ACPX-5302","39S mitochondrial large ribosomal subunit"],["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["ComplexPortal%3ACPX-1602","54S mitochondrial large ribosomal subunit"],["ComplexPortal%3ACPX-1601","60S cytosolic large ribosomal subunit"]]},{"id":"GO:0031411","l":"gas vesicle","na":2,"nb":18,"a":[["inclusion/gas_vesicle.html","gas vesicle"],["inclusion/gas_vesicle_shell.html","gas vesicle shell"]],"b":[["GO%3A0031411","gas vesicle"],["NCBIfam%3ANF041667","gas vesicle accessory protein GvpU"],["NCBIfam%3ANF046092","gas vesicle protein GvpA"],["NCBIfam%3ANF045779","gas vesicle protein GvpG"],["NCBIfam%3ANF046090","gas vesicle protein GvpJ"],["NCBIfam%3ANF045778","gas vesicle protein GvpL"]]},{"id":"GO:0035869","l":"ciliary transition zone","na":2,"nb":17,"a":[["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"]],"b":[["ComplexPortal%3ACPX-2789","CEP290 complex"],["ComplexPortal%3ACPX-2536","CEP290-NPHP5 transition zone complex"],["ComplexPortal%3ACPX-2339","MKS complex"],["ComplexPortal%3ACPX-2531","MKS transition zone complex"],["ComplexPortal%3ACPX-2806","NPHP transition zone complex"],["GO%3A0035869","ciliary transition zone"]]},{"id":"GO:0005811","l":"lipid droplet","na":2,"nb":15,"a":[["inclusion/lipid_droplet.html","lipid droplet"],["inclusion/monolayer_surrounded_lipid_storage_body_outer_lipid_monolayer.html","monolayer-surrounded lipid storage body outer lipid monolayer"]],"b":[["ComplexPortal%3ACPX-2148","Phosphatidylinositol transporter complex"],["ComplexPortal%3ACPX-3342","Seipin complex"],["GO%3A0005633","ascus lipid droplet"],["GO%3A0005811","lipid droplet"],["GO%3A0012511","monolayer-surrounded lipid storage body"],["NCBIfam%3ATIGR04278","antiviral radical SAM protein viperin"]]},{"id":"GO:0016234","l":"inclusion body","na":2,"nb":15,"a":[["inclusion/r_body.html","R-body"],["inclusion/sulfur_globule.html","sulfur globule"]],"b":[["GO%3A0016235","aggresome"],["GO%3A0097407","Bunina body"],["GO%3A0097408","fibrillary inclusion"],["GO%3A0097409","glial cytoplasmic inclusion"],["GO%3A0097412","hyaline inclusion"],["GO%3A0016234","inclusion body"]]},{"id":"GO:0009277","l":"fungal-type cell wall","na":2,"nb":14,"a":[["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["other/1_3_beta_d_glucan_synthase_complex.html","1,3-beta-D-glucan synthase complex"]],"b":[["ComplexPortal%3ACPX-1812","1,3-beta-D-glucan synthase complex, FKS1-RHO1 variant"],["GO%3A0005619","ascospore wall"],["GO%3A0009277","fungal-type cell wall"],["GO%3A0030446","hyphal cell wall"],["GO%3A0030445","yeast-form cell wall"],["InterPro%3AIPR019778","Class I Hydrophobin, conserved site"]]},{"id":"GO:0032588","l":"trans-Golgi network membrane","na":2,"nb":14,"a":[["membrane_organelle/trans_golgi_network.html","trans-Golgi network"],["membrane_organelle/trans_golgi_network_membrane.html","trans-Golgi network membrane"]],"b":[["ComplexPortal%3ACPX-5050","Endothelial AP-1 Adaptor complex, sigma1a variant"],["ComplexPortal%3ACPX-5144","Endothelial AP-1 Adaptor complex, sigma1a variant"],["ComplexPortal%3ACPX-5047","Ubiquitous AP-1 Adaptor complex, sigma1a variant"],["ComplexPortal%3ACPX-5141","Ubiquitous AP-1 Adaptor complex, sigma1a variant"],["ComplexPortal%3ACPX-5048","Ubiquitous AP-1 Adaptor complex, sigma1b variant"],["ComplexPortal%3ACPX-5142","Ubiquitous AP-1 Adaptor complex, sigma1b variant"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":2,"nb":14,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF02224","Cytidylate kinase"],["Pfam%3APF03319","Ethanolamine utilisation protein EutN/carboxysome"],["Pfam%3APF22019","alpha-1,4-glucan branching enzyme GlgB, N-terminal domain"],["Pfam%3APF21714","Circadian clock protein KaiA, N-terminal domain"],["Pfam%3APF07688","KaiA C-terminal domain"]]},{"id":"GO:0005744","l":"TIM23 mitochondrial import inner membrane translocase complex","na":2,"nb":13,"a":[["other/pam_complex_tim23_associated_import_motor.html","PAM complex, Tim23 associated import motor"],["other/tim23_mitochondrial_import_inner_membrane_translocase_complex.html","TIM23 mitochondrial import inner membrane translocase complex"]],"b":[["ComplexPortal%3ACPX-540","Mitochondrial inner membrane pre-sequence translocase complex"],["ComplexPortal%3ACPX-539","TIM23 mitochondrial inner membrane pre-sequence translocase complex, motor variant"],["ComplexPortal%3ACPX-6127","TIM23 mitochondrial inner membrane pre-sequence translocase complex, sort variant"],["ComplexPortal%3ACPX-6129","TIM23 mitochondrial inner membrane pre-sequence translocase complex, TIM17A variant"],["ComplexPortal%3ACPX-6130","TIM23 mitochondrial inner membrane pre-sequence translocase complex, TIM17B variant"],["GO%3A0005744","TIM23 mitochondrial import inner membrane translocase complex"]]},{"id":"GO:0007007","l":"inner mitochondrial membrane organization","na":2,"nb":13,"a":[["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"],["other/micos_complex.html","MICOS complex"]],"b":[["GO%3A0042407","cristae formation"],["GO%3A0007007","inner mitochondrial membrane organization"],["GO%3A1990627","mitochondrial inner membrane fusion"],["GO%3A0032979","protein insertion into mitochondrial inner membrane from matrix"],["GO%3A0045039","protein insertion into mitochondrial inner membrane"],["PANTHER%3APTHR36959","ALTERED INHERITANCE OF MITOCHONDRIA PROTEIN 24, MITOCHONDRIAL"]]},{"id":"GO:0005940","l":"septin ring","na":2,"nb":12,"a":[["cytoskeleton/septin_ring.html","septin ring"],["other/cellular_bud_neck.html","cellular bud neck"]],"b":[["ComplexPortal%3ACPX-26526","Septin1-Septin2-pnut complex"],["ComplexPortal%3ACPX-26529","Septin4-Septin5-pnut complex"],["GO%3A0000144","cellular bud neck septin ring"],["GO%3A0032172","germ tube septin ring"],["GO%3A0032168","hyphal septin ring"],["GO%3A0032175","mating projection septin ring"]]},{"id":"GO:0006913","l":"nucleocytoplasmic transport","na":2,"nb":12,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nucleus.html","nucleus"]],"b":[["ComplexPortal%3ACPX-2568","Nuclear pore complex"],["ComplexPortal%3ACPX-4474","Nuclear pore complex"],["ComplexPortal%3ACPX-824","Nuclear pore complex"],["ComplexPortal%3ACPX-873","Nuclear pore complex"],["GO%3A0051170","import into nucleus"],["GO%3A0051168","nuclear export"]]},{"id":"GO:0031262","l":"Ndc80 complex","na":2,"nb":11,"a":[["other/kinetochore.html","kinetochore"],["other/ndc80_complex.html","Ndc80 complex"]],"b":[["ComplexPortal%3ACPX-26614","NDC80 complex"],["ComplexPortal%3ACPX-548","NDC80 complex"],["ComplexPortal%3ACPX-549","Ndc80 complex"],["ComplexPortal%3ACPX-550","Ndc80 complex"],["ComplexPortal%3ACPX-551","Ndc80 complex"],["ComplexPortal%3ACPX-806","Ndc80 complex"]]},{"id":"GO:0000444","l":"MIS12/MIND type complex","na":2,"nb":10,"a":[["other/kinetochore.html","kinetochore"],["other/mis12_mind_type_complex.html","MIS12/MIND type complex"]],"b":[["ComplexPortal%3ACPX-1186","Kinetochore MIS12 complex"],["ComplexPortal%3ACPX-5643","Kinetochore MIS12 complex"],["ComplexPortal%3ACPX-5701","Kinetochore MIS12 complex"],["ComplexPortal%3ACPX-807","Kinetochore Mis12 complex"],["ComplexPortal%3ACPX-7681","Kinetochore MIS12 complex, Nnf1a variant"],["ComplexPortal%3ACPX-8928","Kinetochore MIS12 complex, Nnf1b variant"]]},{"id":"GO:0031470","l":"carboxysome","na":2,"nb":10,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["GO%3A0031470","carboxysome"],["NCBIfam%3ANF053791","alpha-carboxysome major shell protein CsoS1"],["NCBIfam%3ANF049993","beta-carboxysome assembly chaperone CcmS"],["NCBIfam%3ANF053792","beta-carboxysome assembly protein CcmO"],["NCBIfam%3ANF053796","beta-carboxysome protein CcmP"],["NCBIfam%3ANF053793","beta-carboxysome scaffolding protein CcmN"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":2,"nb":10,"a":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["TED%3AAF-A0A5T2E4X7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5T2E4X7-F1-model_v4_TED01"],["TED%3AAF-A0A5Y4BP44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Y4BP44-F1-model_v4_TED01"],["TED%3AAF-A0A623P6F3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A623P6F3-F1-model_v4_TED02"],["TED%3AAF-A0A721BDS7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A721BDS7-F1-model_v4_TED02"],["TED%3AAF-A0A743P324-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A743P324-F1-model_v4_TED01"],["TED%3AAF-A0A757VWR3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A757VWR3-F1-model_v4_TED02"]]},{"id":"DOI:10.1126/science.289.5481.905","l":"","na":2,"nb":9,"a":[["ribonucleoprotein/large_ribosomal_subunit.html","large ribosomal subunit"],["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["NCBIfam%3ANF003303","50S ribosomal protein L21e"],["InterPro%3AIPR020052","Large ribosomal subunit protein eL31, conserved site"],["InterPro%3AIPR018263","Large ribosomal subunit protein eL32, conserved site"],["InterPro%3AIPR018260","Large ribosomal subunit protein uL22, conserved site"],["InterPro%3AIPR000988","Large ribosomal subunit protein eL24-related, N-terminal"],["InterPro%3AIPR035808","Large ribosomal subunit protein uL30, eukaryota/archaea"]]},{"id":"GO:0005935","l":"cellular bud neck","na":2,"nb":9,"a":[["other/cellular_bud.html","cellular bud"],["other/cellular_bud_neck.html","cellular bud neck"]],"b":[["ComplexPortal%3ACPX-1684","CBK1-MOB2 kinase complex"],["ComplexPortal%3ACPX-1140","HICS complex"],["ComplexPortal%3ACPX-36","Kelch-containing Formin Regulatory Complex"],["ComplexPortal%3ACPX-1426","Myosin class II complex"],["ComplexPortal%3ACPX-1695","PCL1-PHO85 kinase complex"],["ComplexPortal%3ACPX-1694","PCL2-PHO85 kinase complex"]]},{"id":"GO:0006097","l":"glyoxylate cycle","na":2,"nb":9,"a":[["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysome.html","glyoxysome"]],"b":[["GO%3A0006097","glyoxylate cycle"],["proteintraitsmech%3ASEED_SUBSYSTEM_Glyoxylate_bypass","Glyoxylate bypass"],["NCBIfam%3ATIGR02924","isocitrate dehydrogenase"],["NCBIfam%3ATIGR01344","malate synthase A"],["NCBIfam%3ANF041315","malate synthase AceB"],["NCBIfam%3ANF002825","malate synthase G"]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":2,"nb":9,"a":[["envelope/capsule.html","capsule"],["envelope/glycocalyx.html","glycocalyx"]],"b":[["Pfam%3APF19567","Capsular polysaccharide synthesis, CpsB/CapC"],["Pfam%3APF07501","G5 domain"],["Pfam%3APF13551","Winged helix-turn helix"],["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF03047","COMC family"],["Pfam%3APF04556","DpnII restriction endonuclease"]]},{"id":"CHEBI:17029","l":"chitin","na":2,"nb":8,"a":[["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["spore/microsporidian_type_endospore.html","microsporidian-type endospore"]],"b":[["EC%3A2.4.1.16","chitin synthase"],["EC%3A3.5.1.41","chitin deacetylase"],["RHEA%3A85463","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-1)-N-acetyl-alpha-D-glucosamine"],["RHEA%3A50672","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-2) + N,N'-diacetylchitobiose"],["RHEA%3A85003","[(1->4)-N-acetyl-beta-D-glucosaminyl](n)-N-acetyl-alpha-D-glucosamine + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n) + N-acetyl-alpha-D-glucosamine"],["RHEA%3A10464","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + n H2O = chitosan + n acetate"]]},{"id":"DOI:10.1016/s1097-2765(01)00190-3","l":"","na":2,"nb":8,"a":[["other/trappi_protein_complex.html","TRAPPI protein complex"],["other/trappii_protein_complex.html","TRAPPII protein complex"]],"b":[["InterPro%3AIPR055425","Trafficking protein particle complex II-specific subunit 65, IgD1"],["InterPro%3AIPR055426","Trafficking protein particle complex II-specific subunit 65, IgD2"],["InterPro%3AIPR055420","Trafficking protein particle complex II-specific subunit 65, IgD3"],["InterPro%3AIPR056917","TRAPPC10, Ig-like domain"],["InterPro%3AIPR022233","TRAPPC10/Trs130, C-terminal"],["InterPro%3AIPR056913","TRAPPC10/Trs130, N-terminal"]]},{"id":"GO:0005801","l":"cis-Golgi network","na":2,"nb":8,"a":[["membrane_organelle/cis_golgi_network.html","cis-Golgi network"],["membrane_organelle/cis_golgi_network_membrane.html","cis-Golgi network membrane"]],"b":[["ComplexPortal%3ACPX-6092","GRASP55-GM45 Golgi stacking complex"],["ComplexPortal%3ACPX-874","GRASP65-GM130 Golgi stacking complex"],["GO%3A0005801","cis-Golgi network"],["InterPro%3AIPR043937","Golgin subfamily A , C-terminal binding motif"],["PANTHER%3APTHR14759","STOP PROTEIN"],["PANTHER%3APTHR13048","TRAFFICKING PROTEIN PARTICLE COMPLEX SUBUNIT 3"]]},{"id":"GO:0030131","l":"clathrin adaptor complex","na":2,"nb":8,"a":[["other/ap_1_adaptor_complex.html","AP-1 adaptor complex"],["other/ap_2_adaptor_complex.html","AP-2 adaptor complex"]],"b":[["GO%3A0030121","AP-1 adaptor complex"],["GO%3A0030122","AP-2 adaptor complex"],["GO%3A0030131","clathrin adaptor complex"],["InterPro%3AIPR018240","Clathrin adaptor, mu subunit, conserved site"],["InterPro%3AIPR015151","Beta-adaptin appendage, C-terminal subdomain"],["InterPro%3AIPR003164","Clathrin adaptor, alpha-adaptin, appendage, C-terminal subdomain"]]},{"id":"GO:0031931","l":"TORC1 complex","na":2,"nb":8,"a":[["other/torc1_complex.html","TORC1 complex"],["other/torc2_complex.html","TORC2 complex"]],"b":[["ComplexPortal%3ACPX-4473","mTORC1 complex"],["ComplexPortal%3ACPX-503","mTORC1 complex"],["ComplexPortal%3ACPX-2265","TORC1 complex"],["ComplexPortal%3ACPX-26512","TORC1 serine/threonine protein kinase complex"],["ComplexPortal%3ACPX-1715","TORC1 serine/threonine-protein kinase complex, TOR1 variant"],["ComplexPortal%3ACPX-1716","TORC1 serine/threonine-protein kinase complex, TOR2 variant"]]},{"id":"GO:0033176","l":"proton-transporting V-type ATPase complex","na":2,"nb":8,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["other/rave_complex.html","RAVE complex"]],"b":[["ComplexPortal%3ACPX-2470","Vacuolar proton translocating ATPase complex, ATP6V0A1 variant"],["ComplexPortal%3ACPX-6904","Vacuolar proton translocating ATPase complex, ATP6V0A2 variant"],["ComplexPortal%3ACPX-6905","Vacuolar proton translocating ATPase complex, ATP6V0A3 variant"],["ComplexPortal%3ACPX-6912","Vacuolar proton translocating ATPase complex, ATP6V0A4 variant"],["ComplexPortal%3ACPX-1192","Vacuolar proton translocating ATPase complex, Golgi variant"],["GO%3A0033181","plasma membrane proton-transporting V-type ATPase complex"]]},{"id":"GO:1903561","l":"extracellular vesicle","na":2,"nb":8,"a":[["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"],["other/bacterial_outer_membrane_vesicle.html","bacterial outer membrane vesicle"]],"b":[["GO%3A0097189","apoptotic body"],["GO%3A0097691","bacterial extracellular vesicle"],["GO%3A0061701","bacterial outer membrane vesicle"],["GO%3A0160014","exopher"],["GO%3A0070062","extracellular exosome"],["GO%3A1903561","extracellular vesicle"]]},{"id":"GO:0009276","l":"Gram-negative-bacterium-type cell wall","na":2,"nb":7,"a":[["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"]],"b":[["GO%3A0009276","Gram-negative-bacterium-type cell wall"],["NCBIfam%3ATIGR02208","lauroyl-Kdo(2)-lipid IV(A) myristoyltransferase"],["NCBIfam%3ATIGR02314","methionine ABC transporter ATP-binding protein MetN"],["NCBIfam%3ATIGR01937","NADH:ubiquinone reductase (Na(+)-transporting) subunit B"],["NCBIfam%3ATIGR02162","pentaheme c-type cytochrome TorC"],["NCBIfam%3ATIGR01709","type II secretion system protein GspL"]]},{"id":"GO:0033179","l":"proton-transporting V-type ATPase, V0 domain","na":2,"nb":7,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_v0_domain.html","vacuolar proton-transporting V-type ATPase, V0 domain"],["other/rave_complex.html","RAVE complex"]],"b":[["GO%3A0000222","plasma membrane proton-transporting V-type ATPase, V0 domain"],["GO%3A0033179","proton-transporting V-type ATPase, V0 domain"],["GO%3A0000220","vacuolar proton-transporting V-type ATPase, V0 domain"],["NCBIfam%3ATIGR02923","ATP synthase A1 subunit C"],["NCBIfam%3ANF013647","V-type ATPase 116kDa subunit family protein"],["Pfam%3APF05493","ATP synthase subunit H"]]},{"id":"NCBITaxon:194439","l":"Chlorobaculum tepidum TLS","na":2,"nb":7,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["membrane_organelle/chlorosome.html","chlorosome"]],"b":[["Pfam%3APF02327","Bacteriochlorophyll A protein"],["Pfam%3APF27499","CsmB chlorosome envelope protein"],["Pfam%3APF28537","Probable trigger factor, FKBP-like domain"],["Pfam%3APF02043","Bacteriochlorophyll C binding protein"],["Pfam%3APF11098","Chlorosome envelope protein C"],["Pfam%3APF10643","Photosystem P840 reaction-centre cytochrome c-551"]]},{"id":"NCBITaxon:555778","l":"","na":2,"nb":7,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["Pfam%3APF08936","Carboxysome Shell Carbonic Anhydrase, C-terminal"],["Pfam%3APF20686","Carboxysome Shell Carbonic Anhydrase, catalytic domain"],["Pfam%3APF20687","Carboxysome Shell Carbonic Anhydrase, N-terminal"],["Pfam%3APF12288","Carboxysome shell peptide mid-region"],["Pfam%3APF10070","Probable inorganic carbon transporter subunit DabA"],["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"GO:0009707","l":"chloroplast outer membrane","na":6,"nb":2,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_intermembrane_space.html","chloroplast intermembrane space"],["membrane_organelle/chloroplast_membrane.html","chloroplast membrane"],["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"],["other/toc_complex.html","Toc complex"]],"b":[["GO%3A0009707","chloroplast outer membrane"],["PANTHER%3APTHR47283","ENT-KAURENE OXIDASE, CHLOROPLASTIC"]]},{"id":"GO:0030140","l":"trans-Golgi network transport vesicle","na":2,"nb":6,"a":[["membrane_organelle/trans_golgi_network_transport_vesicle_membrane.html","trans-Golgi network transport vesicle membrane"],["other/clathrin_coat_of_trans_golgi_network_vesicle.html","clathrin coat of trans-Golgi network vesicle"]],"b":[["GO%3A0030140","trans-Golgi network transport vesicle"],["PANTHER%3APTHR16156","AFTIPHILIN A-RELATED"],["PANTHER%3APTHR15463","AP1 GAMMA SUBUNIT BINDING PROTEIN 1"],["PANTHER%3APTHR31975","BUD SITE SELECTION PROTEIN 7-RELATED"],["PANTHER%3APTHR47351","CHITIN BIOSYNTHESIS PROTEIN CHS5"],["PANTHER%3APTHR16528","GOLGI-ASSOCIATED PDZ AND COILED-COIL MOTIF-CONTAINING"]]},{"id":"GO:0031932","l":"TORC2 complex","na":2,"nb":6,"a":[["other/torc1_complex.html","TORC1 complex"],["other/torc2_complex.html","TORC2 complex"]],"b":[["ComplexPortal%3ACPX-4402","mTORC2 complex"],["ComplexPortal%3ACPX-4472","mTORC2 complex"],["ComplexPortal%3ACPX-1717","TORC2 complex"],["ComplexPortal%3ACPX-2269","TORC2 complex"],["ComplexPortal%3ACPX-26513","TORC2 serine/threonine protein kinase complex"],["GO%3A0031932","TORC2 complex"]]},{"id":"GO:0032580","l":"Golgi cisterna membrane","na":2,"nb":6,"a":[["membrane_organelle/golgi_cisterna.html","Golgi cisterna"],["membrane_organelle/golgi_cisterna_membrane.html","Golgi cisterna membrane"]],"b":[["GO%3A1990674","Golgi cis cisterna membrane"],["GO%3A0032580","Golgi cisterna membrane"],["GO%3A1990675","Golgi medial cisterna membrane"],["GO%3A1990676","Golgi trans cisterna membrane"],["NCBIfam%3ANF017491","Chondroitin N-acetylgalactosaminyltransferase"],["Pfam%3APF05679","Chondroitin N-acetylgalactosaminyltransferase"]]},{"id":"GO:1990071","l":"TRAPPII protein complex","na":2,"nb":6,"a":[["other/trappi_protein_complex.html","TRAPPI protein complex"],["other/trappii_protein_complex.html","TRAPPII protein complex"]],"b":[["ComplexPortal%3ACPX-1939","TRAPP II complex"],["ComplexPortal%3ACPX-4764","TRAPP II complex"],["ComplexPortal%3ACPX-4749","TRAPP II complex, TRAPPC2 variant"],["ComplexPortal%3ACPX-6902","TRAPP II complex, TRAPPC2B variant"],["ComplexPortal%3ACPX-2271","TRAPPII complex"],["GO%3A1990071","TRAPPII protein complex"]]},{"id":"DOI:10.1016/j.cell.2011.06.039","l":"","na":2,"nb":5,"a":[["other/nuclear_pore_inner_ring.html","nuclear pore inner ring"],["other/nuclear_pore_linkers.html","nuclear pore linkers"]],"b":[["InterPro%3AIPR062246","CTHT_0071780, C-terminal domain"],["InterPro%3AIPR060279","Nucleoporin NUP37, beta-propeller domain"],["InterPro%3AIPR059837","Nucleoporin NUP53, C-terminal domain"],["NCBIfam%3ANF055603","Nucleoporin NUP37 N-terminal domain"],["NCBIfam%3ANF055604","Nucleoporin NUP53 C-terminal domain"]]},{"id":"DOI:10.1038/s41467-021-24507-9","l":"","na":5,"nb":2,"a":[["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"],["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"]],"b":[["InterPro%3AIPR063443","FliF, N-terminal domain"],["NCBIfam%3ANF056363","FliF N-terminal domain"]]},{"id":"GO:0000221","l":"vacuolar proton-transporting V-type ATPase, V1 domain","na":2,"nb":5,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v1_domain.html","vacuolar proton-transporting V-type ATPase, V1 domain"]],"b":[["GO%3A0046612","lysosomal proton-transporting V-type ATPase, V1 domain"],["GO%3A0000221","vacuolar proton-transporting V-type ATPase, V1 domain"],["InterPro%3AIPR011987","ATPase, V1 complex, subunit H, C-terminal"],["Pfam%3APF11698","V-ATPase subunit H"],["Pfam%3APF03224","V-ATPase subunit H"]]},{"id":"GO:0005640","l":"nuclear outer membrane","na":5,"nb":2,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nuclear_envelope_lumen.html","nuclear envelope lumen"],["membrane_organelle/nuclear_inner_membrane.html","nuclear inner membrane"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"],["membrane_organelle/vacuolar_membrane.html","vacuolar membrane"]],"b":[["ComplexPortal%3ACPX-1381","NVJ1-VAC8 nucleus-vacuole junction complex"],["GO%3A0005640","nuclear outer membrane"]]},{"id":"GO:0009426","l":"bacterial-type flagellum basal body, distal rod","na":5,"nb":2,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"],["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"]],"b":[["GO%3A0009426","bacterial-type flagellum basal body, distal rod"],["NCBIfam%3ATIGR02488","flagellar basal-body rod protein FlgG"]]},{"id":"GO:0030669","l":"clathrin-coated endocytic vesicle membrane","na":5,"nb":2,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle.html","clathrin-coated endocytic vesicle"],["membrane_organelle/clathrin_coated_endocytic_vesicle_lumen.html","clathrin-coated endocytic vesicle lumen"],["membrane_organelle/clathrin_coated_endocytic_vesicle_membrane.html","clathrin-coated endocytic vesicle membrane"],["membrane_organelle/endocytic_vesicle_membrane.html","endocytic vesicle membrane"],["other/clathrin_coat_of_endocytic_vesicle.html","clathrin coat of endocytic vesicle"]],"b":[["GO%3A0030669","clathrin-coated endocytic vesicle membrane"],["GO%3A0030671","clathrin-coated phagocytic vesicle membrane"]]},{"id":"GO:0033180","l":"proton-transporting V-type ATPase, V1 domain","na":2,"nb":5,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_v1_domain.html","vacuolar proton-transporting V-type ATPase, V1 domain"],["other/rave_complex.html","RAVE complex"]],"b":[["GO%3A0000223","plasma membrane proton-transporting V-type ATPase, V1 domain"],["GO%3A0033180","proton-transporting V-type ATPase, V1 domain"],["GO%3A0000221","vacuolar proton-transporting V-type ATPase, V1 domain"],["Pfam%3APF03223","V-ATPase subunit C"],["InterPro%3AIPR036132","Vacuolar ATP synthase subunit C superfamily"]]},{"id":"GO:0042717","l":"plasma membrane-derived chromatophore membrane","na":5,"nb":2,"a":[["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/rc_lh1_pufx_core_complex.html","RC-LH1-PufX core complex"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"],["membrane_organelle/plasma_membrane_derived_chromatophore_membrane.html","plasma membrane-derived chromatophore membrane"]],"b":[["GO%3A0042717","plasma membrane-derived chromatophore membrane"],["GO%3A0031676","plasma membrane-derived thylakoid membrane"]]},{"id":"GO:0044222","l":"anammoxosome","na":2,"nb":5,"a":[["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"]],"b":[["GO%3A0044222","anammoxosome"],["NCBIfam%3ANF052343","hydrazine dehydrogenase"],["NCBIfam%3ANF052339","hydrazine synthase subunit alpha"],["NCBIfam%3ANF052340","hydrazine synthase subunit beta"],["NCBIfam%3ANF052341","hydrazine synthase subunit gamma"]]},{"id":"GO:0045334","l":"clathrin-coated endocytic vesicle","na":5,"nb":2,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle.html","clathrin-coated endocytic vesicle"],["membrane_organelle/clathrin_coated_endocytic_vesicle_lumen.html","clathrin-coated endocytic vesicle lumen"],["membrane_organelle/clathrin_coated_endocytic_vesicle_membrane.html","clathrin-coated endocytic vesicle membrane"],["membrane_organelle/endocytic_vesicle.html","endocytic vesicle"],["other/clathrin_coat_of_endocytic_vesicle.html","clathrin coat of endocytic vesicle"]],"b":[["GO%3A0045334","clathrin-coated endocytic vesicle"],["GO%3A0045336","clathrin-coated phagocytic vesicle"]]},{"id":"GO:0110146","l":"magnetosome membrane","na":2,"nb":5,"a":[["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]],"b":[["GO%3A0110146","magnetosome membrane"],["NCBIfam%3ANF040960","magnetosome formation protease MamE"],["NCBIfam%3ANF040959","magnetosome protein MamA"],["NCBIfam%3ANF040961","magnetosome protein MamO"],["NCBIfam%3ANF040966","magnetosome protein MamQ"]]},{"id":"NCBITaxon:274","l":"Thermus thermophilus","na":2,"nb":5,"a":[["ribonucleoprotein/ribosome.html","ribosome"],["ribonucleoprotein/small_ribosomal_subunit.html","small ribosomal subunit"]],"b":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF01861","Branched-chain polyamine synthase A C-terminal domain"],["Pfam%3APF07736","Chorismate mutase type I"],["MCSA%3A479","4-alpha-glucanotransferase"],["MCSA%3A539","phenylalanine---tRNA ligase"]]},{"id":"UniProt:P27434","l":"","na":2,"nb":5,"a":[["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/elongasome.html","elongasome"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["NCBIfam%3ANF008109","cytoskeleton protein RodZ"],["InterPro%3AIPR025194","Cytoskeleton protein RodZ-like, C-terminal domain"],["Pfam%3APF13413","Helix-turn-helix domain"],["Pfam%3APF13464","RodZ C-terminal domain"]]},{"id":"DOI:10.1002/pro.2246","l":"","na":2,"nb":4,"a":[["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"],["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]],"b":[["InterPro%3AIPR044870","Bacterial microcompartment (BMC) circularly permuted domain"],["InterPro%3AIPR044872","CcmK/CsoS1, bacterial microcompartment domain"],["PROSITE%3APDOC00876","Bacterial microcompartment (BMC)"],["PROSITE%3APDOC51932","Bacterial microcompartment vertex (BMV)"]]},{"id":"DOI:10.1038/nature13983","l":"","na":2,"nb":4,"a":[["cytoskeleton/cetz_filament.html","CetZ filament"],["cytoskeleton/microtubule.html","microtubule"]],"b":[["InterPro%3AIPR003008","Tubulin/FtsZ, GTPase domain"],["InterPro%3AIPR048737","Tubulin-like CetZ, C-terminal"],["NCBIfam%3ANF044377","Tubulin-like CetZ, C-terminal domain"],["InterPro%3AIPR036525","Tubulin/FtsZ, GTPase domain superfamily"]]},{"id":"DOI:10.1126/science.289.5481.920","l":"","na":2,"nb":4,"a":[["ribonucleoprotein/large_ribosomal_subunit.html","large ribosomal subunit"],["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["InterPro%3AIPR018263","Large ribosomal subunit protein eL32, conserved site"],["InterPro%3AIPR018254","Large ribosomal subunit protein uL29, conserved site"],["InterPro%3AIPR036351","Large ribosomal subunit protein eL32 superfamily"],["InterPro%3AIPR036049","Large ribosomal subunit protein uL29 superfamily"]]},{"id":"GO:0031970","l":"organelle envelope lumen","na":2,"nb":4,"a":[["membrane_organelle/mitochondrial_intermembrane_space.html","mitochondrial intermembrane space"],["membrane_organelle/nuclear_envelope_lumen.html","nuclear envelope lumen"]],"b":[["GO%3A0005758","mitochondrial intermembrane space"],["GO%3A0005641","nuclear envelope lumen"],["GO%3A0031970","organelle envelope lumen"],["GO%3A0009529","plastid intermembrane space"]]},{"id":"GO:0097589","l":"archaeal-type flagellum","na":2,"nb":4,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/cilium.html","cilium"]],"b":[["GO%3A0097589","archaeal-type flagellum"],["NCBIfam%3ANF052589","archaellum protein ArlH"],["NCBIfam%3ANF052590","archaellum stator protein ArlF"],["NCBIfam%3ANF052591","archaellum stator protein ArlG"]]},{"id":"GO:0120101","l":"bacterial-type flagellum stator complex","na":4,"nb":2,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"]],"b":[["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["GO%3A0120101","bacterial-type flagellum stator complex"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":2,"nb":4,"a":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"],["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"]],"b":[["Pfam%3APF01375","Heat-labile enterotoxin alpha chain"],["Pfam%3APF09101","Exotoxin A binding"],["Pfam%3APF09009","Exotoxin A catalytic"],["Pfam%3APF09102","Exotoxin A, targeting"]]},{"id":"Pfam:PF00741","l":"Gas vesicle protein","na":2,"nb":4,"a":[["inclusion/gas_vesicle.html","gas vesicle"],["inclusion/gas_vesicle_shell.html","gas vesicle shell"]],"b":[["Pfam%3APF05121","Gas vesicle protein K"],["Pfam%3APF00741","Gas vesicle protein"],["PROSITE%3APS00234","Gas vesicles protein GVPa signature 1"],["PROSITE%3APS00669","Gas vesicles protein GVPa signature 2"]]},{"id":"DOI:10.1016/s1097-2765(02)00636-6","l":"","na":2,"nb":3,"a":[["other/torc1_complex.html","TORC1 complex"],["other/torc2_complex.html","TORC2 complex"]],"b":[["InterPro%3AIPR056385","AVO1/Sin1, ubiquitin-like domain"],["InterPro%3AIPR024585","Serine/threonine-protein kinase mTOR domain"],["NCBIfam%3ANF023293","mTOR domain-containing protein"]]},{"id":"DOI:10.1038/35030006","l":"","na":2,"nb":3,"a":[["ribonucleoprotein/ribosome.html","ribosome"],["ribonucleoprotein/small_ribosomal_subunit.html","small ribosomal subunit"]],"b":[["NCBIfam%3ANF028380","30S ribosomal protein Thx"],["InterPro%3AIPR015946","K homology domain-like, alpha/beta"],["InterPro%3AIPR009019","K homology domain superfamily, prokaryotic type"]]},{"id":"DOI:10.1038/s41564-021-00895-y","l":"","na":3,"nb":2,"a":[["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"]],"b":[["InterPro%3AIPR063443","FliF, N-terminal domain"],["NCBIfam%3ANF056363","FliF N-terminal domain"]]},{"id":"DOI:10.1073/pnas.89.14.6304","l":"","na":2,"nb":3,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"]],"b":[["InterPro%3AIPR023087","Flagellar motor switch protein FliG, C-terminal"],["InterPro%3AIPR060008","Flagellar motor switch protein FliM, N-terminal domain"],["InterPro%3AIPR001543","Flagellar motor switch protein FliN-like, C-terminal domain"]]},{"id":"DOI:10.1101/gad.1144403","l":"","na":3,"nb":2,"a":[["other/coma_complex.html","COMA complex"],["other/kinetochore.html","kinetochore"],["other/mis12_mind_type_complex.html","MIS12/MIND type complex"]],"b":[["InterPro%3AIPR048743","Inner kinetochore subunit AME1"],["InterPro%3AIPR063510","Inner kinetochore subunit CNN1, C-terminal domain"]]},{"id":"DOI:10.1128/jb.171.7.3890-3900.1989","l":"","na":3,"nb":2,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"],["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"]],"b":[["NCBIfam%3ANF001301","flagellar basal body L-ring protein FlgH"],["InterPro%3AIPR006182","Flagellar M-ring, N-terminal"]]},{"id":"DOI:10.1146/annurev-biophys-052118-115308","l":"","na":2,"nb":3,"a":[["other/nuclear_pore_inner_ring.html","nuclear pore inner ring"],["other/nuclear_pore_outer_ring.html","nuclear pore outer ring"]],"b":[["InterPro%3AIPR021967","Nuclear pore complex protein NUP96, C-terminal domain"],["InterPro%3AIPR007230","Nuclear pore complex protein Nup98-Nup96-like, autopeptidase S59 domain"],["InterPro%3AIPR036903","Nuclear pore complex protein Nup98-Nup96-like, autopeptidase S59 domain superfamily"]]},{"id":"GO:0000220","l":"vacuolar proton-transporting V-type ATPase, V0 domain","na":3,"nb":2,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v0_domain.html","vacuolar proton-transporting V-type ATPase, V0 domain"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v1_domain.html","vacuolar proton-transporting V-type ATPase, V1 domain"]],"b":[["GO%3A0046610","lysosomal proton-transporting V-type ATPase, V0 domain"],["GO%3A0000220","vacuolar proton-transporting V-type ATPase, V0 domain"]]},{"id":"GO:0005934","l":"cellular bud tip","na":2,"nb":3,"a":[["other/cellular_bud.html","cellular bud"],["other/cellular_bud_tip.html","cellular bud tip"]],"b":[["ComplexPortal%3ACPX-1684","CBK1-MOB2 kinase complex"],["ComplexPortal%3ACPX-36","Kelch-containing Formin Regulatory Complex"],["GO%3A0005934","cellular bud tip"]]},{"id":"GO:0020022","l":"acidocalcisome","na":3,"nb":2,"a":[["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"]],"b":[["GO%3A0020022","acidocalcisome"],["GO%3A0106117","acidocalcisome organization"]]},{"id":"GO:0022624","l":"proteasome accessory complex","na":2,"nb":3,"a":[["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"]],"b":[["ComplexPortal%3ACPX-8962","19S proteasome regulatory complex"],["ComplexPortal%3ACPX-8964","19S proteasome regulatory complex"],["GO%3A0022624","proteasome accessory complex"]]},{"id":"GO:0042646","l":"plastid nucleoid","na":2,"nb":3,"a":[["nucleoid/chloroplast_nucleoid.html","chloroplast nucleoid"],["nucleoid/plastid_nucleoid.html","plastid nucleoid"]],"b":[["GO%3A0042644","chloroplast nucleoid"],["GO%3A0042646","plastid nucleoid"],["GO%3A0042647","proplastid nucleoid"]]},{"id":"GO:0043593","l":"endospore coat","na":3,"nb":2,"a":[["spore/endospore_coat.html","endospore coat"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"],["spore/outer_endospore_membrane.html","outer endospore membrane"]],"b":[["GO%3A0043593","endospore coat"],["NCBIfam%3ANF022572","CotD family spore coat protein"]]},{"id":"GO:0120107","l":"bacterial-type flagellum rotor complex","na":2,"nb":3,"a":[["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"]],"b":[["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0120107","bacterial-type flagellum rotor complex"]]},{"id":"NCBITaxon:174633","l":"","na":2,"nb":3,"a":[["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"]],"b":[["Pfam%3APF22142","Hydroxylamine oxidoreductase, C-terminal domain"],["Pfam%3APF18582","Hydrazine synthase alpha subunit middle domain"],["Pfam%3APF21783","YNCE-like beta-propeller"]]},{"id":"NCBITaxon:243231","l":"Geobacter sulfurreducens PCA","na":3,"nb":2,"a":[["appendage/omce_cytochrome_nanowire.html","OmcE cytochrome nanowire"],["appendage/omcs_cytochrome_nanowire.html","OmcS cytochrome nanowire"],["appendage/omcz_cytochrome_nanowire.html","OmcZ cytochrome nanowire"]],"b":[["Pfam%3APF01930","Domain of unknown function DUF83"],["Pfam%3APF13435","Cytochrome c554 and c-prime"]]},{"id":"NCBITaxon:342108","l":"","na":2,"nb":3,"a":[["cytoskeleton/mamk_filament.html","MamK filament"],["membrane_organelle/magnetosome.html","magnetosome"]],"b":[["Pfam%3APF08269","Cache domain"],["Pfam%3APF08849","BrxA"],["Pfam%3APF04011","LemA family"]]},{"id":"NCBITaxon:4922","l":"Komagataella pastoris","na":2,"nb":3,"a":[["membrane_organelle/cis_golgi_network.html","cis-Golgi network"],["membrane_organelle/cis_golgi_network_membrane.html","cis-Golgi network membrane"]],"b":[["Pfam%3APF26001","Peroxin 8 protein-like, N-terminal domain"],["Pfam%3APF27812","PEX8 central TPR-like domain"],["TED%3AAF-A0A1B2J8F2-F1-model_v4_TED02","TED novel fold AF-A0A1B2J8F2-F1-model_v4_TED02"]]},{"id":"DOI:10.1016/j.celrep.2017.07.064","l":"","na":2,"nb":2,"a":[["cytoskeleton/phuz_spindle.html","PhuZ spindle"],["other/phage_nucleus.html","phage nucleus"]],"b":[["InterPro%3AIPR054768","Phage tubulin-like protein, C-terminal domain"],["NCBIfam%3ANF046735","GTPase activation domain-containing protein"]]},{"id":"DOI:10.1111/1574-6976.12014","l":"","na":2,"nb":2,"a":[["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"]],"b":[["RHEA%3A23232","hydrazine + 4 Fe(III)-[cytochrome c] = N2 + 4 Fe(II)-[cytochrome c] + 4 H(+)"],["NCBIfam%3ANF052343","hydrazine dehydrogenase"]]},{"id":"DOI:10.1128/ecosalplus.ESP-0007-2017","l":"","na":2,"nb":2,"a":[["appendage/p_pilus.html","P pilus"],["appendage/type_i_pilus.html","type I pilus"]],"b":[["InterPro%3AIPR057010","Fimbrial adhesin MrpH, C-terminal domain"],["NCBIfam%3ANF048321","MrpH family fimbial adhesin"]]},{"id":"DOI:10.1146/annurev.cellbio.20.022003.114106","l":"","na":2,"nb":2,"a":[["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/spindle_pole_body.html","spindle pole body"]],"b":[["InterPro%3AIPR029330","Spindle pole body component Bbp1, C-terminal"],["InterPro%3AIPR029328","Spindle pole component Bbp1, N-terminal"]]},{"id":"GO:0000817","l":"COMA complex","na":2,"nb":2,"a":[["other/coma_complex.html","COMA complex"],["other/kinetochore.html","kinetochore"]],"b":[["ComplexPortal%3ACPX-1187","COMA complex"],["GO%3A0000817","COMA complex"]]},{"id":"GO:0033106","l":"cis-Golgi network membrane","na":2,"nb":2,"a":[["membrane_organelle/cis_golgi_network.html","cis-Golgi network"],["membrane_organelle/cis_golgi_network_membrane.html","cis-Golgi network membrane"]],"b":[["ComplexPortal%3ACPX-1125","BUG1-GRH1 complex"],["GO%3A0033106","cis-Golgi network membrane"]]},{"id":"GO:0120102","l":"bacterial-type flagellum secretion apparatus","na":2,"nb":2,"a":[["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"],["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["ComplexPortal%3ACPX-5885","Flagellar export complex"],["GO%3A0120102","bacterial-type flagellum secretion apparatus"]]},{"id":"InterPro:IPR006300","l":"","na":2,"nb":2,"a":[["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"]],"b":[["Pfam%3APF00460","Flagella basal body rod protein"],["PROSITE%3APS00588","Flagella basal body rod proteins signature"]]},{"id":"InterPro:IPR012834","l":"","na":2,"nb":2,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"]],"b":[["Pfam%3APF06429","Flagellar basal body rod FlgEFG protein C-terminal"],["PROSITE%3APS00588","Flagella basal body rod proteins signature"]]},{"id":"InterPro:IPR028245","l":"","na":2,"nb":2,"a":[["cytoskeleton/eisosome_filament.html","eisosome filament"],["other/eisosome.html","eisosome"]],"b":[["PANTHER%3APTHR31962","SPHINGOLIPID LONG CHAIN BASE-RESPONSIVE PROTEIN PIL1"],["Pfam%3APF13805","Eisosome component PIL1"]]},{"id":"Pfam:PF01304","l":"Gas vesicles protein GVPc repeated domain","na":2,"nb":2,"a":[["inclusion/gas_vesicle.html","gas vesicle"],["inclusion/gas_vesicle_shell.html","gas vesicle shell"]],"b":[["PROSITE%3APS00235","Gas vesicles protein GVPc repeated domain signature"],["Pfam%3APF01304","Gas vesicles protein GVPc repeated domain"]]},{"id":"UniProt:P06179","l":"","na":2,"nb":2,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"]],"b":[["Pfam%3APF08884","Flagellin D3 domain"],["Pfam%3APF21504","Flagellin, barrel domain"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":1,"nb":50101,"a":[["other/ap_5_adaptor_complex.html","AP-5 adaptor complex"]],"b":[["EC%3A1.1.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.1.98.-","With other, known, acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"]]},{"id":"GO:0003735","l":"structural constituent of ribosome","na":1,"nb":466,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["GO%3A0003735","structural constituent of ribosome"],["NCBIfam%3ANF004951","30S ribosomal protein S1"],["NCBIfam%3ANF004954","30S ribosomal protein S1"],["NCBIfam%3ANF004955","30S ribosomal protein S1"],["NCBIfam%3ATIGR00717","30S ribosomal protein S1"],["NCBIfam%3ANF001861","30S ribosomal protein S10"]]},{"id":"GO:0005829","l":"cytosol","na":1,"nb":457,"a":[["other/chaperonin_containing_t_complex.html","chaperonin-containing T-complex"]],"b":[["ComplexPortal%3ACPX-9082","19S-20S-PA28-alphabeta hybrid proteasome complex"],["ComplexPortal%3ACPX-9085","19S-20S-PA28-gamma hybrid proteasome complex"],["ComplexPortal%3ACPX-26562","Anamorsin-NDOR1 complex"],["ComplexPortal%3ACPX-1848","ATG12-ATG5 complex"],["ComplexPortal%3ACPX-3864","ATG12-ATG5 complex"],["ComplexPortal%3ACPX-132","BAT3 complex"]]},{"id":"GO:0006412","l":"translation","na":1,"nb":455,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["GO%3A0002181","cytoplasmic translation"],["GO%3A0032543","mitochondrial translation"],["GO%3A0032544","plastid translation"],["GO%3A0140241","translation at synapse"],["GO%3A0006412","translation"],["Reactome%3AR-HSA-72766","Translation"]]},{"id":"GO:0071944","l":"cell periphery","na":1,"nb":440,"a":[["envelope/plasma_membrane.html","plasma membrane"]],"b":[["GO%3A0071944","cell periphery"],["PANTHER%3APTHR31468","1,3-BETA-GLUCANOSYLTRANSFERASE GAS1"],["PANTHER%3APTHR28145","12 KDA HEAT SHOCK PROTEIN"],["PANTHER%3APTHR42755","3-DEOXY-MANNO-OCTULOSONATE CYTIDYLYLTRANSFERASE"],["PANTHER%3APTHR46574","43 KDA RECEPTOR-ASSOCIATED PROTEIN OF THE SYNAPSE"],["PANTHER%3APTHR15182","A-KINASE ANCHOR PROTEIN 5-RELATED"]]},{"id":"GO:0055085","l":"transmembrane transport","na":1,"nb":439,"a":[["envelope/plasma_membrane.html","plasma membrane"]],"b":[["ComplexPortal%3ACPX-271","5-hydroxytryptamine-3A/B receptor complex"],["ComplexPortal%3ACPX-275","5-hydroxytryptamine-3A/B receptor complex"],["ComplexPortal%3ACPX-277","5-hydroxytryptamine-3A/B receptor complex"],["ComplexPortal%3ACPX-276","5-hydroxytryptamine-3A/C receptor complex"],["ComplexPortal%3ACPX-272","5-hydroxytryptamine-3A/D receptor complex"],["ComplexPortal%3ACPX-273","5-hydroxytryptamine-3A/E receptor complex"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":1,"nb":396,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29033","requires iron(2+)"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.11","glucoside 3-dehydrogenase (cytochrome c)"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.2.3","L-lactate dehydrogenase (cytochrome)"],["EC%3A1.1.2.4","D-lactate dehydrogenase (cytochrome)"]]},{"id":"GO:0016192","l":"vesicle-mediated transport","na":1,"nb":172,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"]],"b":[["ComplexPortal%3ACPX-2510","Adaptor complex AP-1"],["ComplexPortal%3ACPX-26626","Adaptor complex AP-2"],["ComplexPortal%3ACPX-2725","Adaptor complex AP-2"],["ComplexPortal%3ACPX-26627","Adaptor complex AP-3"],["ComplexPortal%3ACPX-2727","Adaptor complex AP-3"],["ComplexPortal%3ACPX-5149","AP-2 Adaptor complex, alpha1 variant"]]},{"id":"GO:0006364","l":"rRNA processing","na":1,"nb":139,"a":[["other/nucleolus.html","nucleolus"]],"b":[["ComplexPortal%3ACPX-44","LSM2-8 complex"],["ComplexPortal%3ACPX-885","MTERF4-NSUN4 mitochondrial ribosomal assembly complex"],["ComplexPortal%3ACPX-1862","PeBoW complex"],["ComplexPortal%3ACPX-2846","PeBoW complex"],["GO%3A1901259","chloroplast rRNA processing"],["GO%3A0000450","cleavage of bicistronic rRNA transcript (SSU-rRNA, LSU-rRNA)"]]},{"id":"GO:0006396","l":"RNA processing","na":1,"nb":131,"a":[["ribonucleoprotein/exosome_rnase_complex.html","exosome (RNase complex)"]],"b":[["ComplexPortal%3ACPX-603","Cytoplasmic exosome complex, DIS3 variant"],["ComplexPortal%3ACPX-600","Cytoplasmic exosome complex, DIS3L-EXOSC10 variant"],["ComplexPortal%3ACPX-601","Cytoplasmic exosome complex, Dis3l-Exosc10 variant"],["ComplexPortal%3ACPX-592","Cytoplasmic exosome complex, DIS3L variant"],["ComplexPortal%3ACPX-596","Cytoplasmic exosome complex, Dis3l variant"],["ComplexPortal%3ACPX-593","Exosome complex, DIS3 variant"]]},{"id":"GO:0006457","l":"protein folding","na":1,"nb":129,"a":[["other/chaperonin_containing_t_complex.html","chaperonin-containing T-complex"]],"b":[["ComplexPortal%3ACPX-2156","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-2772","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-6030","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-2113","GroEL-GroES complex"],["ComplexPortal%3ACPX-1671","Prefoldin co-chaperone complex"],["ComplexPortal%3ACPX-2389","Prefoldin co-chaperone complex"]]},{"id":"NCBITaxon:246196","l":"Mycolicibacterium smegmatis (strain ATCC 700084 / mc(2)155)","na":1,"nb":106,"a":[["secretion_system/esx_3_type_vii_secretion_system_membrane_complex.html","ESX-3 type VII secretion system membrane complex"]],"b":[["Pfam%3APF12806","Acetyl-CoA dehydrogenase C-terminal like"],["Pfam%3APF12897","Aspartate amino-transferase"],["Pfam%3APF05088","Bacterial NAD-glutamate dehydrogenase, catalytic domain"],["Pfam%3APF26519","Biotin synthase auxiliary protein family"],["Pfam%3APF21095","CarD, C-terminal domain"],["Pfam%3APF24607","Arabinofuranosyltransferase D, third carbohydrate binding module"]]},{"id":"GO:0005694","l":"chromosome","na":1,"nb":101,"a":[["other/nuclear_chromosome.html","nuclear chromosome"]],"b":[["ComplexPortal%3ACPX-26662","SPO11 DNA endo-reduplication complex"],["ComplexPortal%3ACPX-26657","SPO11 meiotic recombination initiation complex"],["ComplexPortal%3ACPX-26658","SPO11 meiotic recombination initiation complex"],["ComplexPortal%3ACPX-26659","SPO11 meiotic recombination initiation complex"],["ComplexPortal%3ACPX-26664","SPO11, meiotic recombination initiation complex"],["ComplexPortal%3ACPX-3388","Synaptonemal complex"]]},{"id":"GO:0015986","l":"proton motive force-driven ATP synthesis","na":1,"nb":96,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-25764","Mitochondrial proton translocating ATP synthase complex"],["ComplexPortal%3ACPX-3281","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-6151","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-8618","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-8619","Mitochondrial proton-transporting ATP synthase complex, testis-specific variant"],["GO%3A0015986","proton motive force-driven ATP synthesis"]]},{"id":"NCBITaxon:224326","l":"Borreliella burgdorferi (strain ATCC 35210 / DSM 4680 / CIP 102532 / B31)","na":1,"nb":94,"a":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]],"b":[["Pfam%3APF09822","ABC-type uncharacterized transport system"],["Pfam%3APF02352","Decorin binding protein"],["Pfam%3APF23357","Domain of unknown function (DUF7088)"],["Pfam%3APF27167","GRAD helix-turn-helix domain"],["IEDB%3A156229","epitope AAAIALRGMAKDGK"],["IEDB%3A156230","epitope AAEQDGKKPEEAKN"]]},{"id":"GO:0051301","l":"cell division","na":1,"nb":86,"a":[["division_machinery/divisome_complex.html","divisome complex"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["ComplexPortal%3ACPX-5782","Tol-Pal cell envelope complex"],["GO%3A0090510","anticlinal cell division"],["GO%3A0008356","asymmetric cell division"],["GO%3A0007114","cell budding"],["GO%3A0051301","cell division"]]},{"id":"GO:0030254","l":"protein secretion by the type III secretion system","na":1,"nb":85,"a":[["secretion_system/type_iii_protein_secretion_system_complex.html","type III protein secretion system complex"]],"b":[["ComplexPortal%3ACPX-5885","Flagellar export complex"],["GO%3A0030254","protein secretion by the type III secretion system"],["NCBIfam%3ANF041307","AvrBs1/Avra family type III secretion system effector"],["NCBIfam%3ATIGR02501","EscE/YscE/SsaE family type III secretion system needle protein co-chaperone"],["NCBIfam%3ANF005535","flagellar protein export ATPase FliI"],["NCBIfam%3ANF006290","flagellar protein export ATPase FliI"]]},{"id":"NCBITaxon:2","l":"Bacteria","na":80,"nb":1,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2","Bacteria orthologous groups (OrthoDB)"]]},{"id":"GO:0006401","l":"RNA catabolic process","na":1,"nb":76,"a":[["ribonucleoprotein/exosome_rnase_complex.html","exosome (RNase complex)"]],"b":[["ComplexPortal%3ACPX-603","Cytoplasmic exosome complex, DIS3 variant"],["ComplexPortal%3ACPX-600","Cytoplasmic exosome complex, DIS3L-EXOSC10 variant"],["ComplexPortal%3ACPX-601","Cytoplasmic exosome complex, Dis3l-Exosc10 variant"],["ComplexPortal%3ACPX-592","Cytoplasmic exosome complex, DIS3L variant"],["ComplexPortal%3ACPX-596","Cytoplasmic exosome complex, Dis3l variant"],["ComplexPortal%3ACPX-2596","Cytoplasmic exosome"]]},{"id":"GO:0042597","l":"periplasmic space","na":1,"nb":76,"a":[["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"]],"b":[["ComplexPortal%3ACPX-3447","NapAB nitrate reductase complex"],["ComplexPortal%3ACPX-4281","PaoABC periplasmic aldehyde oxidoreductase"],["GO%3A0030287","cell wall-bounded periplasmic space"],["GO%3A0030288","outer membrane-bounded periplasmic space"],["GO%3A0042597","periplasmic space"],["GO%3A0036240","septal periplasm"]]},{"id":"GO:0048193","l":"Golgi vesicle transport","na":1,"nb":70,"a":[["other/cog_complex.html","COG complex"]],"b":[["GO%3A0034498","early endosome to Golgi transport"],["GO%3A0006888","endoplasmic reticulum to Golgi vesicle-mediated transport"],["GO%3A0048193","Golgi vesicle transport"],["GO%3A0006891","intra-Golgi vesicle-mediated transport"],["GO%3A0034499","late endosome to Golgi transport"],["GO%3A0006892","post-Golgi vesicle-mediated transport"]]},{"id":"CHEBI:15422","l":"ATP","na":1,"nb":68,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15422","requires ATP"],["ARO%3A3002628","aad(6)"],["ARO%3A3002601","aadA"],["ARO%3A3004692","aadA10"],["ARO%3A3002611","aadA11"],["ARO%3A3002612","aadA12"]]},{"id":"GO:0006935","l":"chemotaxis","na":1,"nb":64,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009454","aerotaxis"]]},{"id":"GO:0031012","l":"extracellular matrix","na":1,"nb":64,"a":[["other/holdfast.html","holdfast"]],"b":[["ComplexPortal%3ACPX-461","155 kDa platelet multimerin complex"],["ComplexPortal%3ACPX-960","Collagen type II trimer"],["ComplexPortal%3ACPX-1749","Collagen type X trimer"],["ComplexPortal%3ACPX-2971","Collagen type X trimer"],["ComplexPortal%3ACPX-1750","Collagen type XI trimer variant 1"],["ComplexPortal%3ACPX-2975","Collagen type XI trimer variant 1"]]},{"id":"NCBITaxon:1111708","l":"Synechocystis sp. (strain ATCC 27184 / PCC 6803 / Kazusa)","na":1,"nb":62,"a":[["energy_complex/phycobilisome.html","phycobilisome"]],"b":[["Pfam%3APF07698","7TM receptor with intracellular HD hydrolase"],["Pfam%3APF07697","7TM-HD extracellular"],["Pfam%3APF11266","Long-chain fatty aldehyde decarbonylase"],["Pfam%3APF21571","Arginine dihydrolase ArgZ-like, C-terminal, first region"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF17886","HSP20-like domain found in ArsA"]]},{"id":"GO:0015629","l":"actin cytoskeleton","na":1,"nb":61,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"]],"b":[["ComplexPortal%3ACPX-2586","Actin-related protein 2/3 complex, ARPC1A-ACTR3-ARPC5 variant"],["ComplexPortal%3ACPX-2592","Actin-related protein 2/3 complex, ARPC1A-ACTR3-ARPC5L variant"],["ComplexPortal%3ACPX-2490","Actin-related protein 2/3 complex, ARPC1A-ACTR3B-ARPC5 variant"],["ComplexPortal%3ACPX-2579","Actin-related protein 2/3 complex, ARPC1B-ACTR3-ARPC5 variant"],["ComplexPortal%3ACPX-2663","Actin-related protein 2/3 complex, ARPC1B-ACTR3-ARPC5L variant"],["ComplexPortal%3ACPX-2583","Actin-related protein 2/3 complex, ARPC1B-ACTR3B-ARPC5 variant"]]},{"id":"InterPro:IPR001460","l":"Penicillin-binding protein, transpeptidase","na":1,"nb":61,"a":[["envelope/peptidoglycan_based_cell_wall.html","peptidoglycan-based cell wall"]],"b":[["GO%3A0009274","peptidoglycan-based cell wall"],["GO%3A0008800","beta-lactamase activity"],["GO%3A0008658","penicillin binding"],["GO%3A0008955","peptidoglycan glycosyltransferase activity"],["GO%3A0071972","peptidoglycan L,D-transpeptidase activity"],["GO%3A0009002","serine-type D-Ala-D-Ala carboxypeptidase activity"]]},{"id":"GO:0016197","l":"endosomal transport","na":1,"nb":60,"a":[["membrane_organelle/endosome.html","endosome"]],"b":[["ComplexPortal%3ACPX-479","Bloc-1 complex"],["ComplexPortal%3ACPX-11549","Huntingtin-HAP40 endosomal complex"],["ComplexPortal%3ACPX-26674","Huntingtin-HAP40 endosomal complex"],["ComplexPortal%3ACPX-1059","Sorf-1-Sorf-2 complex"],["ComplexPortal%3ACPX-2562","WASH complex"],["ComplexPortal%3ACPX-1173","WASH complex, variant WASH2P/WASHC2A"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":1,"nb":51,"a":[["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"]],"b":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF13166","AAA domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF27533","CapK C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"]]},{"id":"GO:0007005","l":"mitochondrion organization","na":1,"nb":50,"a":[["other/mitochondrial_prohibitin_complex.html","mitochondrial prohibitin complex"]],"b":[["ComplexPortal%3ACPX-3196","ERMES complex"],["ComplexPortal%3ACPX-1703","Prohibitin complex"],["ComplexPortal%3ACPX-4114","Prohibitin complex"],["ComplexPortal%3ACPX-5741","Prohibitin complex"],["ComplexPortal%3ACPX-5743","Prohibitin complex"],["GO%3A0008637","apoptotic mitochondrial changes"]]},{"id":"NCBITaxon:243277","l":"Vibrio cholerae serotype O1 (strain ATCC 39315 / El Tor Inaba N16961)","na":1,"nb":48,"a":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"]],"b":[["IDPO%3A0000011","disorder to order"],["IDPO%3A0000014","order to disorder"],["Pfam%3APF16671","Actin cross-linking domain"],["Pfam%3APF00842","Alanine racemase, C-terminal domain"],["Pfam%3APF06228","Haem utilisation ChuX/HutX"],["Pfam%3APF19425","Csd3 second domain"]]},{"id":"NCBITaxon:2759","l":"Eukaryota","na":48,"nb":1,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"],["cytoskeleton/conoid.html","conoid"],["cytoskeleton/cytoophidium.html","cytoophidium"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2759","Eukaryota orthologous groups (OrthoDB)"]]},{"id":"GO:0006897","l":"endocytosis","na":1,"nb":44,"a":[["membrane_organelle/endocytic_vesicle.html","endocytic vesicle"]],"b":[["ComplexPortal%3ACPX-5322","Endosomal SNARE complex TLG2-VTI1-TLG1-SNC1"],["ComplexPortal%3ACPX-5321","Endosomal SNARE complex TLG2-VTI1-TLG1-SNC2"],["ComplexPortal%3ACPX-4024","MTM6-MTM9 myotubularin lipid phosphatase complex"],["ComplexPortal%3ACPX-1500","Myosin class I complex, MYO3 variant"],["ComplexPortal%3ACPX-1470","Myosin class I complex, MYO5 variant"],["ComplexPortal%3ACPX-426","PAN1 actin cytoskeleton-regulatory complex"]]},{"id":"GO:0042254","l":"ribosome biogenesis","na":1,"nb":44,"a":[["other/nucleolus.html","nucleolus"]],"b":[["ComplexPortal%3ACPX-8940","Ribosome biogenesis complex"],["GO%3A0042254","ribosome biogenesis"],["NCBIfam%3ANF012679","50S ribosomal protein L10"],["NCBIfam%3ANF016308","Gar1/Naf1 RNA binding region"],["NCBIfam%3ANF016057","nucleolar RNA-binding Nop10p family protein"],["NCBIfam%3ATIGR01575","ribosomal protein S18-alanine N-acetyltransferase"]]},{"id":"GO:0000045","l":"autophagosome assembly","na":1,"nb":40,"a":[["other/phagophore_assembly_site.html","phagophore assembly site"]],"b":[["ComplexPortal%3ACPX-3863","atg-5-atg-12-atg-16.1-atg-16.2 complex"],["ComplexPortal%3ACPX-3865","atg-5-atg-12-atg-16.1 complex"],["ComplexPortal%3ACPX-3866","atg-5-atg-12-atg-16.2 complex"],["ComplexPortal%3ACPX-2745","ATG1 protein kinase complex"],["ComplexPortal%3ACPX-1676","ATG1/ULK1 protein kinase complex"],["ComplexPortal%3ACPX-1849","ATG12-ATG5-ATG16 complex"]]},{"id":"GO:0019866","l":"organelle inner membrane","na":1,"nb":40,"a":[["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"]],"b":[["GO%3A0005743","mitochondrial inner membrane"],["GO%3A0005637","nuclear inner membrane"],["GO%3A0019866","organelle inner membrane"],["GO%3A0009528","plastid inner membrane"],["InterPro%3AIPR002361","Antenna complex, alpha subunit conserved site"],["InterPro%3AIPR010974","Phosphotransferase system, N-acetylglucosamine-specific IIBC component"]]},{"id":"GO:0036503","l":"ERAD pathway","na":1,"nb":39,"a":[["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"]],"b":[["ComplexPortal%3ACPX-6597","bZIP transcription factor complex, ATF6-XBP1"],["ComplexPortal%3ACPX-2946","CDC48-NPL4-UFD1 AAA ATPase complex"],["ComplexPortal%3ACPX-1323","CDC48-RAD23-UFD2 complex"],["ComplexPortal%3ACPX-2948","CUE1-UBC7 ubiquitin-conjugating enzyme complex"],["ComplexPortal%3ACPX-3074","Doa10 E3 ubiquitin ligase complex"],["ComplexPortal%3ACPX-7121","ERLIN1-ERLIN2 complex"]]},{"id":"NCBITaxon:2157","l":"Archaea","na":37,"nb":1,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2157","Archaea orthologous groups (OrthoDB)"]]},{"id":"CHEBI:17855","l":"triglyceride","na":1,"nb":34,"a":[["inclusion/lipid_droplet.html","lipid droplet"]],"b":[["EC%3A2.3.1.158","phospholipid:diacylglycerol acyltransferase"],["EC%3A2.3.1.77","triacylglycerol--sterol O-acyltransferase"],["EC%3A3.1.1.3","triacylglycerol lipase"],["EC%3A3.1.1.34","lipoprotein lipase"],["EC%3A3.1.1.79","hormone-sensitive lipase"],["RHEA%3A77987","9-hydroxy-octadecanoate + a triacylglycerol = 9-(acyloxy)-octadecanoate + a 1,3-diacylglycerol"]]},{"id":"GO:0030312","l":"external encapsulating structure","na":1,"nb":34,"a":[["envelope/glycocalyx.html","glycocalyx"]],"b":[["GO%3A0009279","cell outer membrane"],["GO%3A0005618","cell wall"],["GO%3A0140143","collagenous component of basement membrane"],["GO%3A0140152","collagenous component of interstitial matrix"],["GO%3A0042600","egg chorion"],["GO%3A0030312","external encapsulating structure"]]},{"id":"GO:0008608","l":"attachment of spindle microtubules to kinetochore","na":1,"nb":33,"a":[["other/dash_complex.html","DASH complex"]],"b":[["ComplexPortal%3ACPX-1156","Central kinetochore CTF19 complex"],["ComplexPortal%3ACPX-1187","COMA complex"],["ComplexPortal%3ACPX-1186","Kinetochore MIS12 complex"],["ComplexPortal%3ACPX-5643","Kinetochore MIS12 complex"],["ComplexPortal%3ACPX-5701","Kinetochore MIS12 complex"],["ComplexPortal%3ACPX-807","Kinetochore Mis12 complex"]]},{"id":"GO:0032040","l":"small-subunit processome","na":1,"nb":33,"a":[["other/nucleolus.html","nucleolus"]],"b":[["ComplexPortal%3ACPX-1604","Small ribosomal subunit processome"],["ComplexPortal%3ACPX-2511","Small ribosomal subunit processome"],["GO%3A0032040","small-subunit processome"],["NCBIfam%3ANF016770","Fcf1"],["InterPro%3AIPR013934","U3 small nucleolar RNA-associated protein 13, C-terminal"],["InterPro%3AIPR007319","WDR36/Utp21, C-terminal domain"]]},{"id":"GO:0006635","l":"fatty acid beta-oxidation","na":1,"nb":32,"a":[["membrane_organelle/peroxisomal_matrix.html","peroxisomal matrix"]],"b":[["ComplexPortal%3ACPX-3964","fadBA fatty acid oxidation complex, aerobic conditions"],["ComplexPortal%3ACPX-3966","fadJI fatty acid oxidation complex, anaerobic conditions"],["ComplexPortal%3ACPX-6245","Mitochondrial trifunctional enzyme complex"],["GO%3A0006635","fatty acid beta-oxidation"],["GO%3A0033539","fatty acid beta-oxidation using acyl-CoA dehydrogenase"],["GO%3A0033540","fatty acid beta-oxidation using acyl-CoA oxidase"]]},{"id":"GO:0015630","l":"microtubule cytoskeleton","na":1,"nb":32,"a":[["cytoskeleton/microtubule.html","microtubule"]],"b":[["ComplexPortal%3ACPX-116","Chromosomal passenger complex, AURKB variant"],["ComplexPortal%3ACPX-20753","Chromosomal passenger complex, AURKC variant"],["ComplexPortal%3ACPX-119","Chromosomal passenger complex"],["ComplexPortal%3ACPX-3461","Chromosomal passenger complex"],["ComplexPortal%3ACPX-6365","Katanin complex, KATNA1-KATNB1 variant"],["ComplexPortal%3ACPX-6366","Katanin complex, KATNA1-KATNBL1 variant"]]},{"id":"UniProt:P07363","l":"","na":1,"nb":32,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["ComplexPortal%3ACPX-1077","Chemotaxis phosphorelay complex CheA-CheY"],["GO%3A0098561","methyl accepting chemotaxis protein complex"],["GO%3A0004673","protein histidine kinase activity"],["GO%3A0009454","aerotaxis"],["GO%3A0071977","bacterial-type flagellum-dependent swimming motility"],["GO%3A0051649","establishment of localization in cell"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":1,"nb":31,"a":[["envelope/s_layer.html","S-layer"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF27529","AMPT"],["Pfam%3APF24856","L-arabinose isomerase central domain"],["Pfam%3APF02610","L-arabinose isomerase N-terminal domain"],["Pfam%3APF11762","L-arabinose isomerase C-terminal domain"],["Pfam%3APF17727","CtsR C-terminal dimerization domain"]]},{"id":"GO:0004298","l":"threonine-type endopeptidase activity","na":1,"nb":30,"a":[["other/proteasome_core_complex.html","proteasome core complex"]],"b":[["ComplexPortal%3ACPX-9082","19S-20S-PA28-alphabeta hybrid proteasome complex"],["ComplexPortal%3ACPX-9085","19S-20S-PA28-gamma hybrid proteasome complex"],["ComplexPortal%3ACPX-9021","20S spermatoproteasome complex"],["ComplexPortal%3ACPX-9004","20S thymoproteasome complex"],["ComplexPortal%3ACPX-2262","26S proteasome complex"],["ComplexPortal%3ACPX-5993","26S proteasome complex"]]},{"id":"GO:0006887","l":"exocytosis","na":1,"nb":30,"a":[["other/exocyst.html","exocyst"]],"b":[["GO%3A0160192","autophagosome-dependent secretion"],["GO%3A0045054","constitutive secretory pathway"],["GO%3A0098967","exocytic insertion of neurotransmitter receptor to postsynaptic membrane"],["GO%3A0006887","exocytosis"],["GO%3A1990182","exosomal secretion"],["GO%3A0045055","regulated exocytosis"]]},{"id":"GO:0090148","l":"membrane fission","na":1,"nb":30,"a":[["other/escrt_iii_complex.html","ESCRT III complex"]],"b":[["ComplexPortal%3ACPX-2452","ESCRT-0 complex"],["ComplexPortal%3ACPX-2825","ESCRT-0 complex, STAM variant"],["ComplexPortal%3ACPX-7143","ESCRT-0 complex, STAM2 variant"],["ComplexPortal%3ACPX-7162","ESCRT-I complex, VPS37A-MVB12A variant"],["ComplexPortal%3ACPX-7146","ESCRT-I complex, VPS37A-MVB12B variant"],["ComplexPortal%3ACPX-7181","ESCRT-I complex, VPS37A-UBAP1 variant"]]},{"id":"GO:0099513","l":"polymeric cytoskeletal fiber","na":1,"nb":29,"a":[["cytoskeleton/microtubule.html","microtubule"]],"b":[["GO%3A0005884","actin filament"],["GO%3A0005882","intermediate filament"],["GO%3A0005874","microtubule"],["GO%3A0001520","outer dense fiber"],["GO%3A0099513","polymeric cytoskeletal fiber"],["PANTHER%3APTHR12607","ADENOMATOUS POLYPOSIS COLI PROTEIN FAMILY"]]},{"id":"GO:1905370","l":"serine-type endopeptidase complex","na":1,"nb":28,"a":[["other/mitochondrial_inner_membrane_peptidase_complex.html","mitochondrial inner membrane peptidase complex"]],"b":[["ComplexPortal%3ACPX-6224","Active Protein C complex"],["ComplexPortal%3ACPX-6222","alpha-thrombin complex"],["ComplexPortal%3ACPX-6181","CL-LK-MASP1 lectin-protease complex"],["ComplexPortal%3ACPX-6240","CL-LK-MASP2 lectin-protease complex"],["ComplexPortal%3ACPX-6221","Coagulation factor Va-Xa complex"],["ComplexPortal%3ACPX-279","Coagulation factor VIIa - tissue factor complex"]]},{"id":"Pfam:PF00015","l":"Methyl-accepting chemotaxis protein (MCP) signalling domain","na":1,"nb":28,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["GO%3A0009454","aerotaxis"],["CDD%3Acd01068","globin_sensor"],["CDD%3Acd19411","MCP2201-like_sensor"],["CDD%3Acd11386","MCP_signal"],["InterPro%3AIPR007891","CHASE3"],["InterPro%3AIPR024478","Chemotaxis methyl-accepting receptor HlyB-like, 4HB MCP domain"]]},{"id":"GO:0015627","l":"type II protein secretion system complex","na":1,"nb":26,"a":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"]],"b":[["GO%3A0015627","type II protein secretion system complex"],["NCBIfam%3ATIGR02533","type II secretion system ATPase GspE"],["NCBIfam%3ATIGR02120","type II secretion system inner membrane protein GspF"],["NCBIfam%3ATIGR01710","type II secretion system major pseudopilin GspG"],["NCBIfam%3ATIGR01708","type II secretion system minor pseudopilin GspH"],["NCBIfam%3ATIGR01707","type II secretion system minor pseudopilin GspI"]]},{"id":"GO:0005885","l":"Arp2/3 protein complex","na":1,"nb":25,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"]],"b":[["ComplexPortal%3ACPX-2586","Actin-related protein 2/3 complex, ARPC1A-ACTR3-ARPC5 variant"],["ComplexPortal%3ACPX-2592","Actin-related protein 2/3 complex, ARPC1A-ACTR3-ARPC5L variant"],["ComplexPortal%3ACPX-2490","Actin-related protein 2/3 complex, ARPC1A-ACTR3B-ARPC5 variant"],["ComplexPortal%3ACPX-2579","Actin-related protein 2/3 complex, ARPC1B-ACTR3-ARPC5 variant"],["ComplexPortal%3ACPX-2663","Actin-related protein 2/3 complex, ARPC1B-ACTR3-ARPC5L variant"],["ComplexPortal%3ACPX-2583","Actin-related protein 2/3 complex, ARPC1B-ACTR3B-ARPC5 variant"]]},{"id":"GO:0005618","l":"cell wall","na":1,"nb":24,"a":[["envelope/fungal_type_cell_wall.html","fungal-type cell wall"]],"b":[["GO%3A0005618","cell wall"],["GO%3A0097570","cyst wall"],["GO%3A0009277","fungal-type cell wall"],["GO%3A0009274","peptidoglycan-based cell wall"],["GO%3A0009505","plant-type cell wall"],["GO%3A0031160","spore wall"]]},{"id":"GO:0006893","l":"Golgi to plasma membrane transport","na":1,"nb":24,"a":[["other/exomer_complex.html","exomer complex"]],"b":[["ComplexPortal%3ACPX-1719","Exomer complex"],["ComplexPortal%3ACPX-26504","Exomer complex"],["ComplexPortal%3ACPX-1365","Vesicular SNARE complex SSO1-SEC9-SNC1"],["ComplexPortal%3ACPX-5463","Vesicular SNARE complex SSO1-SEC9-SNC2"],["ComplexPortal%3ACPX-1369","Vesicular SNARE complex SSO2-SEC9-SNC1"],["ComplexPortal%3ACPX-5465","Vesicular SNARE complex SSO2-SEC9-SNC2"]]},{"id":"GO:0031968","l":"organelle outer membrane","na":1,"nb":24,"a":[["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"]],"b":[["GO%3A0009535","chloroplast thylakoid membrane"],["GO%3A0005741","mitochondrial outer membrane"],["GO%3A0005640","nuclear outer membrane"],["GO%3A0031968","organelle outer membrane"],["GO%3A0009527","plastid outer membrane"],["PANTHER%3APTHR37278","AUTOPHAGY-RELATED PROTEIN 33-RELATED"]]},{"id":"GO:0072686","l":"mitotic spindle","na":1,"nb":24,"a":[["cytoskeleton/mitotic_spindle.html","mitotic spindle"]],"b":[["ComplexPortal%3ACPX-1041","DASH complex"],["ComplexPortal%3ACPX-4027","gpr-1-gpr-2-lin-5 complex"],["GO%3A0072686","mitotic spindle"],["PANTHER%3APTHR46930","CDK5 REGULATORY SUBUNIT-ASSOCIATED PROTEIN 2"],["PANTHER%3APTHR47078","CYTOSKELETON-ASSOCIATED PROTEIN 2-LIKE"],["PANTHER%3APTHR28036","DASH COMPLEX SUBUNIT DAD2"]]},{"id":"GO:0097729","l":"9+2 motile cilium","na":1,"nb":23,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["ComplexPortal%3ACPX-8161","Radial spoke complex, ciliiar variant"],["ComplexPortal%3ACPX-8163","Radial spoke complex, ciliiar variant"],["ComplexPortal%3ACPX-8162","Radial spoke complex, flagellar variant"],["ComplexPortal%3ACPX-8164","Radial spoke complex, flagellar variant"],["GO%3A0097729","9+2 motile cilium"],["GO%3A0097554","left anterior flagellum"]]},{"id":"GO:0000775","l":"chromosome, centromeric region","na":1,"nb":22,"a":[["other/cbf3_complex.html","CBF3 complex"]],"b":[["ComplexPortal%3ACPX-26413","CENP-A recruiting complex"],["ComplexPortal%3ACPX-3272","CENP-A recruiting complex"],["ComplexPortal%3ACPX-3273","CENP-A recruiting complex"],["GO%3A0000775","chromosome, centromeric region"],["GO%3A0000779","condensed chromosome, centromeric region"],["InterPro%3AIPR009361","Centromere/kinetochore protein zw10, N-terminal"]]},{"id":"GO:0006891","l":"intra-Golgi vesicle-mediated transport","na":1,"nb":22,"a":[["other/trappii_protein_complex.html","TRAPPII protein complex"]],"b":[["ComplexPortal%3ACPX-1939","TRAPP II complex"],["GO%3A0045057","cisternal progression"],["GO%3A0048219","inter-Golgi cisterna vesicle-mediated transport"],["GO%3A0006891","intra-Golgi vesicle-mediated transport"],["GO%3A0000301","retrograde transport, vesicle recycling within Golgi"],["InterPro%3AIPR012955","CASP, C-terminal"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":1,"nb":21,"a":[["membrane_organelle/trichocyst.html","trichocyst"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29108","requires calcium(2+)"],["EC%3A1.13.12.24","calcium-regulated photoprotein"],["EC%3A7.2.2.10","P-type Ca(2+) transporter"],["RHEA%3A72631","3 Li(+)(out) + Ca(2+)(in) = 3 Li(+)(in) + Ca(2+)(out)"],["RHEA%3A55884","[aequorin] + 3 Ca(2+) = [aequorin]--dioxetanone"],["RHEA%3A55888","[aequorin]--dioxetanone = excited state-[aequorin] + CO2"]]},{"id":"GO:0042729","l":"DASH complex","na":1,"nb":21,"a":[["other/dash_complex.html","DASH complex"]],"b":[["ComplexPortal%3ACPX-10081","DASH complex"],["ComplexPortal%3ACPX-1041","DASH complex"],["GO%3A0042729","DASH complex"],["PANTHER%3APTHR28200","DASH COMPLEX SUBUNIT ASK1"],["PANTHER%3APTHR28025","DASH COMPLEX SUBUNIT DAD1"],["PANTHER%3APTHR28036","DASH COMPLEX SUBUNIT DAD2"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":1,"nb":21,"a":[["cytoskeleton/tubz_filament.html","TubZ filament"]],"b":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF28265","Lipoprotein N-acylation protein LnsA-like"],["Pfam%3APF16403","Bacterial surface protein, Ig-like domain"],["Pfam%3APF03944","delta endotoxin"],["Pfam%3APF03945","delta endotoxin, N-terminal domain"],["IEDB%3A125782","epitope CLRIPMTDK"]]},{"id":"GO:0005819","l":"spindle","na":1,"nb":20,"a":[["cytoskeleton/mitotic_spindle.html","mitotic spindle"]],"b":[["ComplexPortal%3ACPX-3463","Central spindlin complex"],["GO%3A0072687","meiotic spindle"],["GO%3A0072686","mitotic spindle"],["GO%3A0005819","spindle"],["PANTHER%3APTHR31022","CENTRIOLE, CILIA AND SPINDLE-ASSOCIATED PROTEIN"],["PANTHER%3APTHR46725","COILED-COIL DOMAIN-CONTAINING PROTEIN 57"]]},{"id":"GO:0000178","l":"exosome (RNase complex)","na":1,"nb":19,"a":[["ribonucleoprotein/exosome_rnase_complex.html","exosome (RNase complex)"]],"b":[["ComplexPortal%3ACPX-603","Cytoplasmic exosome complex, DIS3 variant"],["ComplexPortal%3ACPX-2596","Cytoplasmic exosome"],["ComplexPortal%3ACPX-593","Exosome complex, DIS3 variant"],["ComplexPortal%3ACPX-598","Exosome complex, Dis3 variant"],["ComplexPortal%3ACPX-2595","Nuclear exosome"],["ComplexPortal%3ACPX-599","Nuclear/nucleolar exosome complex, DIS3-RRP6 variant"]]},{"id":"GO:0044232","l":"organelle membrane contact site","na":1,"nb":19,"a":[["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"]],"b":[["GO%3A0140284","endoplasmic reticulum-endosome membrane contact site"],["GO%3A0140268","endoplasmic reticulum-plasma membrane contact site"],["GO%3A0160258","endoplasmic reticulum-trans-Golgi network membrane contact site"],["GO%3A0098853","endoplasmic reticulum-vacuole membrane contact site"],["GO%3A0044233","mitochondria-associated endoplasmic reticulum membrane contact site"],["GO%3A0044284","mitochondrial crista junction"]]},{"id":"GO:0099512","l":"supramolecular fiber","na":1,"nb":19,"a":[["cytoskeleton/cytoophidium.html","cytoophidium"]],"b":[["GO%3A0098647","collagen beaded filament"],["GO%3A0043292","contractile muscle fiber"],["GO%3A0097268","cytoophidium"],["GO%3A0071953","elastic fiber"],["GO%3A0061800","fibronectin fibril"],["GO%3A0061836","intranuclear rod"]]},{"id":"NCBITaxon:330779","l":"Sulfolobus acidocaldarius (strain ATCC 33909 / DSM 639 / JCM 8929 / NBRC 15157 / NCIMB 11770)","na":1,"nb":19,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"]],"b":[["Pfam%3APF12846","AAA-like domain"],["Pfam%3APF27338","Cytochrome b558/566 subunit B"],["Pfam%3APF18822","CdvA-like coiled-coil domain"],["Pfam%3APF27303","Cell division protein CdvB, C-terminal HTH domain"],["Pfam%3APF27251","DNA import protein CedA1"],["Pfam%3APF18533","Domain of unknown function (DUF5622)"]]},{"id":"UniProt:P02942","l":"","na":1,"nb":19,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["GO%3A0098561","methyl accepting chemotaxis protein complex"],["GO%3A0009593","detection of chemical stimulus"],["GO%3A1902021","regulation of bacterial-type flagellum-dependent cell motility"],["NCBIfam%3ANF011615","methyl-accepting chemotaxis protein"],["CDD%3Acd06225","HAMP"],["CDD%3Acd19407","Tar_Tsr_sensor"]]},{"id":"UniProt:P07017","l":"","na":1,"nb":19,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["GO%3A0098561","methyl accepting chemotaxis protein complex"],["GO%3A0043424","protein histidine kinase binding"],["GO%3A0009593","detection of chemical stimulus"],["NCBIfam%3ANF011622","methyl-accepting chemotaxis protein II"],["CDD%3Acd06225","HAMP"],["CDD%3Acd19407","Tar_Tsr_sensor"]]},{"id":"UniProt:P60723","l":"Large ribosomal subunit protein uL4","na":1,"nb":19,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["GO%3A0022625","cytosolic large ribosomal subunit"],["GO%3A0015934","large ribosomal subunit"],["GO%3A0060698","endoribonuclease inhibitor activity"],["GO%3A0048027","mRNA 5'-UTR binding"],["GO%3A0001070","RNA-binding transcription regulator activity"]]},{"id":"CHEBI:16838","l":"polyphosphate","na":1,"nb":18,"a":[["membrane_organelle/acidocalcisome.html","acidocalcisome"]],"b":[["EC%3A2.7.1.63","polyphosphate--glucose phosphotransferase"],["EC%3A2.7.4.1","ATP-polyphosphate phosphotransferase"],["EC%3A2.7.4.17","3-phosphoglyceroyl-phosphate--polyphosphate phosphotransferase"],["EC%3A2.7.4.20","dolichyl-diphosphate--polyphosphate phosphotransferase"],["EC%3A2.7.4.33","AMP-polyphosphate phosphotransferase"],["EC%3A2.7.4.34","GDP-polyphosphate phosphotransferase"]]},{"id":"GO:0005876","l":"spindle microtubule","na":1,"nb":18,"a":[["cytoskeleton/mitotic_spindle.html","mitotic spindle"]],"b":[["GO%3A0000235","astral microtubule"],["GO%3A0005828","kinetochore microtubule"],["GO%3A1990498","mitotic spindle microtubule"],["GO%3A0005827","polar microtubule"],["GO%3A0005876","spindle microtubule"],["PANTHER%3APTHR46725","COILED-COIL DOMAIN-CONTAINING PROTEIN 57"]]},{"id":"GO:0030257","l":"type III protein secretion system complex","na":1,"nb":18,"a":[["secretion_system/type_iii_protein_secretion_system_complex.html","type III protein secretion system complex"]],"b":[["ComplexPortal%3ACPX-5885","Flagellar export complex"],["GO%3A0030257","type III protein secretion system complex"],["NCBIfam%3ANF006290","flagellar protein export ATPase FliI"],["NCBIfam%3ATIGR03498","flagellar protein export ATPase FliI"],["NCBIfam%3ATIGR01026","FliI/YscN family ATPase"],["NCBIfam%3ATIGR02554","PrgH/EprH family type III secretion apparatus protein"]]},{"id":"GO:0031253","l":"cell projection membrane","na":1,"nb":18,"a":[["appendage/ciliary_membrane.html","ciliary membrane"]],"b":[["GO%3A0031526","brush border membrane"],["GO%3A0031253","cell projection membrane"],["GO%3A0060170","ciliary membrane"],["GO%3A0031527","filopodium membrane"],["GO%3A0031258","lamellipodium membrane"],["GO%3A0070686","macropinocytic cup membrane"]]},{"id":"GO:0031982","l":"vesicle","na":1,"nb":18,"a":[["membrane_organelle/cytoplasmic_vesicle.html","cytoplasmic vesicle"]],"b":[["GO%3A1903561","extracellular vesicle"],["GO%3A0097708","intracellular vesicle"],["GO%3A0031982","vesicle"],["PANTHER%3APTHR47395","BPI FOLD-CONTAINING FAMILY B MEMBER 1"],["PANTHER%3APTHR15152","CD70 ANTIGEN"],["PANTHER%3APTHR44314","CILIA- AND FLAGELLA-ASSOCIATED PROTEIN 70"]]},{"id":"GO:0045048","l":"protein insertion into ER membrane","na":1,"nb":18,"a":[["other/emc_complex.html","EMC complex"]],"b":[["ComplexPortal%3ACPX-6464","GET complex"],["ComplexPortal%3ACPX-956","GET complex"],["ComplexPortal%3ACPX-7020","PAT intramembrane chaperone complex"],["GO%3A0160063","multi-pass transmembrane protein insertion into ER membrane"],["GO%3A0045051","protein insertion into ER membrane by internal uncleaved signal-anchor sequence"],["GO%3A0045049","protein insertion into ER membrane by N-terminal cleaved signal sequence"]]},{"id":"GO:0140737","l":"encapsulin nanocompartment","na":1,"nb":18,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]],"b":[["GO%3A0140737","encapsulin nanocompartment"],["NCBIfam%3ATIGR04535","encapsulin-associated ferritin-like protein"],["NCBIfam%3ANF058680","encapsulin nanocompartment cargo ferric reductase EncD"],["NCBIfam%3ANF058678","encapsulin nanocompartment ferritin-like cargo protein EncB"],["NCBIfam%3ANF058679","encapsulin nanocompartment ferritin-likeEncB family encapsulin nanocompartment ferritin-like cargo protein cargo protein"],["NCBIfam%3ANF041155","family 1 encapsulin nanocompartment shell protein"]]},{"id":"GO:0160303","l":"protein secretion by the type IX secretion system","na":1,"nb":18,"a":[["secretion_system/type_ix_protein_secretion_system_complex.html","type IX protein secretion system complex"]],"b":[["GO%3A0160303","protein secretion by the type IX secretion system"],["NCBIfam%3ANF052230","PorE family type IX secretion system protein"],["NCBIfam%3ATIGR03519","PorP/SprF family type IX secretion system membrane protein"],["NCBIfam%3ANF052314","PorY family sensor histidine kinase"],["NCBIfam%3ATIGR04189","T9SS outer membrane translocon Sov/SprA"],["NCBIfam%3ANF052313","T9SS response regulator signal transducer PorX"]]},{"id":"UniProt:P24073","l":"","na":1,"nb":18,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["EC%3A3.-.-.-","Hydrolases"],["GO%3A0009425","bacterial-type flagellum basal body"],["GO%3A0003774","cytoskeletal motor activity"],["GO%3A0044780","bacterial-type flagellum assembly"],["GO%3A0071978","bacterial-type flagellum-dependent swarming motility"],["GO%3A0016311","dephosphorylation"]]},{"id":"GO:0000407","l":"phagophore assembly site","na":1,"nb":17,"a":[["other/phagophore_assembly_site.html","phagophore assembly site"]],"b":[["ComplexPortal%3ACPX-1383","TRAPPIII protein complex"],["ComplexPortal%3ACPX-373","ULK1-ATG13-RB1CC1-ATG101 autophagy initiation complex"],["ComplexPortal%3ACPX-380","ULK1-ATG13-RB1CC1-ATG101 autophagy initiation complex"],["GO%3A0000407","phagophore assembly site"],["PANTHER%3APTHR13038","APG9 AUTOPHAGY 9"],["PANTHER%3APTHR13385","AUTOPHAGY PROTEIN 12"]]},{"id":"GO:0030863","l":"cortical cytoskeleton","na":1,"nb":17,"a":[["cytoskeleton/eisosome_filament.html","eisosome filament"]],"b":[["ComplexPortal%3ACPX-658","Actin junctional complex"],["GO%3A0030864","cortical actin cytoskeleton"],["GO%3A0030863","cortical cytoskeleton"],["GO%3A0030981","cortical microtubule cytoskeleton"],["GO%3A0048788","cytoskeleton of presynaptic active zone"],["PANTHER%3APTHR15012","APICAL PROTEIN/SHROOM-RELATED"]]},{"id":"GO:0033103","l":"protein secretion by the type VI secretion system","na":1,"nb":17,"a":[["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"]],"b":[["GO%3A0033103","protein secretion by the type VI secretion system"],["NCBIfam%3ATIGR03354","type VI secretion system-associated FHA domain protein TagH"],["NCBIfam%3ATIGR03345","type VI secretion system ATPase TssH"],["NCBIfam%3ATIGR03357","type VI secretion system baseplate subunit TssE"],["NCBIfam%3ATIGR03359","type VI secretion system baseplate subunit TssF"],["NCBIfam%3ATIGR03347","type VI secretion system baseplate subunit TssG"]]},{"id":"GO:0072546","l":"EMC complex","na":1,"nb":17,"a":[["other/emc_complex.html","EMC complex"]],"b":[["ComplexPortal%3ACPX-307","Endoplasmic Reticulum Membrane Complex"],["ComplexPortal%3ACPX-2445","Endoplasmic reticulum membrane complex, EMC2A variant"],["ComplexPortal%3ACPX-2451","Endoplasmic reticulum membrane complex, EMC2B variant"],["ComplexPortal%3ACPX-5848","Endoplasmic reticulum membrane complex, EMC8 variant"],["ComplexPortal%3ACPX-5882","Endoplasmic reticulum membrane complex, EMC8 variant"],["ComplexPortal%3ACPX-5881","Endoplasmic reticulum membrane complex, EMC9 variant"]]},{"id":"GO:1905369","l":"endopeptidase complex","na":1,"nb":17,"a":[["other/proteasome_complex.html","proteasome complex"]],"b":[["ComplexPortal%3ACPX-3905","Caspase-2 PIDDosome"],["ComplexPortal%3ACPX-3963","Caspase-2 PIDDosome"],["ComplexPortal%3ACPX-5777","MERS-CoV main protease complex"],["ComplexPortal%3ACPX-5685","SARS-CoV-2 main protease complex"],["ComplexPortal%3ACPX-5706","SARS-CoV main protease complex"],["GO%3A0008303","caspase complex"]]},{"id":"NCBITaxon:208963","l":"Pseudomonas aeruginosa (strain UCBPP-PA14)","na":1,"nb":17,"a":[["inclusion/r_body.html","R-body"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF21384","CRISPR-associated nuclease/helicase Cas3, I-F/YPEST, Cas2 domain"],["Pfam%3APF21802","CRISPR-associated Cas3 subtype I-F/YPEST-like, C-terminal domain"],["Pfam%3APF20975","DGC-associated coil"],["Pfam%3APF19502","Nucleotidyltransferase of unknown function (DUF6036)"]]},{"id":"NCBITaxon:5888","l":"Paramecium tetraurelia","na":1,"nb":17,"a":[["membrane_organelle/trichocyst.html","trichocyst"]],"b":[["Pfam%3APF14926","Cilia- and flagella-associated protein 300"],["TED%3AAF-A0C038-F1-model_v4_TED07","TED highly-symmetric fold AF-A0C038-F1-model_v4_TED07"],["TED%3AAF-A0CFS1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0CFS1-F1-model_v4_TED02"],["TED%3AAF-A0CHQ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0CHQ8-F1-model_v4_TED01"],["TED%3AAF-A0CHQ8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0CHQ8-F1-model_v4_TED02"],["TED%3AAF-A0CHR9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0CHR9-F1-model_v4_TED02"]]},{"id":"Pfam:PF01584","l":"CheW-like domain","na":1,"nb":17,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["GO%3A0098561","methyl accepting chemotaxis protein complex"],["GO%3A0009454","aerotaxis"],["GO%3A0042333","chemotaxis to oxidizable substrate"],["GO%3A0051649","establishment of localization in cell"],["NCBIfam%3ANF007903","chemotaxis protein CheW"],["CDD%3Acd00732","CheW"]]},{"id":"UniProt:P0A7V8","l":"Small ribosomal subunit protein uS4","na":1,"nb":17,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["GO%3A1990145","maintenance of translational fidelity"],["GO%3A0000028","ribosomal small subunit assembly"],["GO%3A0031564","transcription antitermination"],["NCBIfam%3ANF003717","30S ribosomal protein S4"],["NCBIfam%3ATIGR01017","30S ribosomal protein S4"]]},{"id":"UniProt:P35149","l":"","na":1,"nb":17,"a":[["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]],"b":[["EC%3A3.6.1.-","In phosphorus-containing anhydrides"],["GO%3A0043595","endospore cortex"],["GO%3A0042601","endospore-forming forespore"],["GO%3A0031160","spore wall"],["GO%3A0000270","peptidoglycan metabolic process"],["GO%3A0009847","spore germination"]]},{"id":"CHEBI:16247","l":"","na":1,"nb":16,"a":[["inclusion/monolayer_surrounded_lipid_storage_body_outer_lipid_monolayer.html","monolayer-surrounded lipid storage body outer lipid monolayer"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.A.79","The Autophagosomal Phospholipid Transmembrane Translocase (Atg9) Family"],["TCDB%3A9.A.36","The Ca2+-dependent Phospholipid Scramblase (Scramblase) Family"],["TCDB%3A1.A.17","The Calcium-dependent Chloride Channel (Ca-ClC) Family"],["TCDB%3A9.B.27","The Death Effector Domain A (DedA) Family"],["TCDB%3A8.A.97","The EPG-3/VMP1 (EPG/VPM) Scramblase Family"]]},{"id":"DOI:10.1128/ecosalplus.ESP-0034-2018","l":"","na":1,"nb":16,"a":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"]],"b":[["NCBIfam%3ANF037978","type II secretion system assembly factor GspB"],["NCBIfam%3ATIGR02533","type II secretion system ATPase GspE"],["NCBIfam%3ATIGR01710","type II secretion system major pseudopilin GspG"],["NCBIfam%3ATIGR01708","type II secretion system minor pseudopilin GspH"],["NCBIfam%3ATIGR01707","type II secretion system minor pseudopilin GspI"],["NCBIfam%3ATIGR01711","type II secretion system minor pseudopilin GspJ"]]},{"id":"GO:0030968","l":"endoplasmic reticulum unfolded protein response","na":1,"nb":16,"a":[["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"]],"b":[["GO%3A0036500","ATF6-mediated unfolded protein response"],["GO%3A0030968","endoplasmic reticulum unfolded protein response"],["GO%3A0036498","IRE1-mediated unfolded protein response"],["GO%3A0036499","PERK-mediated unfolded protein response"],["Reactome%3AR-HSA-8874177","ATF6B (ATF6-beta) activates chaperones"],["Reactome%3AR-HSA-381119","Unfolded Protein Response (UPR)"]]},{"id":"GO:1904262","l":"negative regulation of TORC1 signaling","na":1,"nb":16,"a":[["other/gator1_complex.html","GATOR1 complex"]],"b":[["ComplexPortal%3ACPX-2665","CASTOR1 arginine-sensing complex"],["ComplexPortal%3ACPX-2667","CASTOR1-CASTOR2 arginine binding complex"],["ComplexPortal%3ACPX-26523","GATOR1 complex"],["ComplexPortal%3ACPX-2781","GATOR1 complex"],["ComplexPortal%3ACPX-6226","GATOR1 complex"],["ComplexPortal%3ACPX-26527","GATOR2 complex"]]},{"id":"GO:1904263","l":"positive regulation of TORC1 signaling","na":1,"nb":16,"a":[["other/gator2_complex.html","GATOR2 complex"]],"b":[["ComplexPortal%3ACPX-26527","GATOR2 complex"],["ComplexPortal%3ACPX-6227","GATOR2 complex"],["ComplexPortal%3ACPX-26516","RAG guanosine triphosphatase complex"],["ComplexPortal%3ACPX-26517","RAG guanosine triphosphatase complex"],["ComplexPortal%3ACPX-2542","RAG guanosine triphosphatase complex, RAGA-RAGC variant"],["ComplexPortal%3ACPX-2513","RAG guanosine triphosphatase complex, RAGA-RAGD variant"]]},{"id":"UniProt:P0A7S3","l":"Small ribosomal subunit protein uS12","na":1,"nb":16,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["GO%3A0022627","cytosolic small ribosomal subunit"],["GO%3A0005840","ribosome"],["GO%3A0034336","misfolded RNA binding"],["GO%3A0019843","rRNA binding"],["GO%3A0000049","tRNA binding"]]},{"id":"DOI:10.1038/nrmicro1887","l":"","na":15,"nb":1,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]],"b":[["NCBIfam%3ANF024544","flagella basal body P-ring formation protein FlgA"]]},{"id":"GO:0030121","l":"AP-1 adaptor complex","na":1,"nb":15,"a":[["other/ap_1_adaptor_complex.html","AP-1 adaptor complex"]],"b":[["ComplexPortal%3ACPX-2510","Adaptor complex AP-1"],["ComplexPortal%3ACPX-26625","Adaptor complex AP-1"],["ComplexPortal%3ACPX-532","Adaptor complex AP-1"],["ComplexPortal%3ACPX-533","Adaptor complex AP-1R"],["ComplexPortal%3ACPX-26626","Adaptor complex AP-2"],["ComplexPortal%3ACPX-2725","Adaptor complex AP-2"]]},{"id":"GO:0045039","l":"protein insertion into mitochondrial inner membrane","na":1,"nb":15,"a":[["other/tim22_mitochondrial_import_inner_membrane_insertion_complex.html","TIM22 mitochondrial import inner membrane insertion complex"]],"b":[["ComplexPortal%3ACPX-1629","TIM22 mitochondrial inner membrane twin-pore carrier translocase complex"],["ComplexPortal%3ACPX-6124","TIM22 mitochondrial inner membrane twin-pore carrier translocase complex"],["ComplexPortal%3ACPX-6127","TIM23 mitochondrial inner membrane pre-sequence translocase complex, sort variant"],["ComplexPortal%3ACPX-2371","TIM8-TIM13 mitochondrial intermembrane space protein transporter complex"],["ComplexPortal%3ACPX-6131","TIM8A-TIM13 mitochondrial intermembrane space protein transporter complex"],["ComplexPortal%3ACPX-6132","TIM8B-TIM13 mitochondrial intermembrane space protein transporter complex"]]},{"id":"UniProt:P0A7J7","l":"Large ribosomal subunit protein uL11","na":1,"nb":15,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["GO%3A0015968","stringent response"],["GO%3A0006415","translational termination"],["NCBIfam%3ATIGR01632","50S ribosomal protein L11"],["InterPro%3AIPR020785","Large ribosomal subunit protein uL11, conserved site"],["CDD%3Acd00349","Ribosomal_L11"]]},{"id":"GO:0003843","l":"1,3-beta-D-glucan synthase activity","na":1,"nb":14,"a":[["other/1_3_beta_d_glucan_synthase_complex.html","1,3-beta-D-glucan synthase complex"]],"b":[["EC%3A2.4.1.34","1,3-beta-glucan synthase"],["RHEA%3A21476","[(1->3)-beta-D-glucosyl](n) + UDP-alpha-D-glucose = [(1->3)-beta-D-glucosyl](n+1) + UDP + H(+)"],["ComplexPortal%3ACPX-1812","1,3-beta-D-glucan synthase complex, FKS1-RHO1 variant"],["ComplexPortal%3ACPX-1813","1,3-beta-D-glucan synthase complex, FKS2-RHO1 variant"],["ComplexPortal%3ACPX-3028","1,3-beta-D-glucan synthase complex, FKS3-RHO1 variant"],["GO%3A0003843","1,3-beta-D-glucan synthase activity"]]},{"id":"GO:0006360","l":"transcription by RNA polymerase I","na":1,"nb":14,"a":[["other/nucleolus.html","nucleolus"]],"b":[["GO%3A0042790","nucleolar large rRNA transcription by RNA polymerase I"],["GO%3A0006360","transcription by RNA polymerase I"],["Reactome%3AR-HSA-73864","RNA Polymerase I Transcription"],["PANTHER%3APTHR14440","DNA-DIRECTED RNA POLYMERASE I SUBUNIT RPA49"],["PANTHER%3APTHR47227","DNA-DIRECTED RNA POLYMERASE SUBUNIT K"],["PANTHER%3APTHR10535","DNA-DIRECTED RNA POLYMERASES I, II, AND III SUBUNIT RPABC1"]]},{"id":"GO:0010494","l":"cytoplasmic stress granule","na":1,"nb":14,"a":[["ribonucleoprotein/cytoplasmic_stress_granule.html","cytoplasmic stress granule"]],"b":[["ComplexPortal%3ACPX-21432","CAPRIN1-G3BP1, stress granules assembly regulating complex"],["ComplexPortal%3ACPX-18979","CAPRIN1-G3BP2, stress granules assembly regulating complex"],["ComplexPortal%3ACPX-8306","FMR1-FXR1 RNA-binding complex"],["ComplexPortal%3ACPX-8322","FMR1-FXR2 RNA-binding complex"],["ComplexPortal%3ACPX-8305","FMR1 RNA-binding homodimer"],["ComplexPortal%3ACPX-8342","FXR1-FXR2 RNA-binding complex"]]},{"id":"GO:0030123","l":"AP-3 adaptor complex","na":1,"nb":14,"a":[["other/ap_3_adaptor_complex.html","AP-3 adaptor complex"]],"b":[["ComplexPortal%3ACPX-535","Adapter complex AP-3"],["ComplexPortal%3ACPX-26627","Adaptor complex AP-3"],["ComplexPortal%3ACPX-2727","Adaptor complex AP-3"],["ComplexPortal%3ACPX-5055","Neuronal AP-3 Adaptor complex, sigma3a variant"],["ComplexPortal%3ACPX-5147","Neuronal AP-3 Adaptor complex, sigma3a variant"],["ComplexPortal%3ACPX-5053","Neuronal AP-3 Adaptor complex, sigma3b variant"]]},{"id":"NCBITaxon:5702","l":"Trypanosoma brucei brucei","na":1,"nb":14,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF05887","Procyclic acidic repetitive protein (PARP)"],["Pfam%3APF18526","Thymine dioxygenase JBP1 DNA-binding domain"],["Pfam%3APF22592","FCaBP EF-hand domain"],["Pfam%3APF12131","Protein of unknown function (DUF3586)"]]},{"id":"UniProt:P0A7R5","l":"Small ribosomal subunit protein uS10","na":1,"nb":14,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["ComplexPortal%3ACPX-5780","lambdaN-dependent processive transcription antitermination complex"],["ComplexPortal%3ACPX-5674","Transcription elongation complex"],["GO%3A0001072","transcription antitermination factor activity, RNA binding"],["GO%3A0032784","regulation of DNA-templated transcription elongation"],["GO%3A0031564","transcription antitermination"]]},{"id":"UniProt:P23446","l":"","na":1,"nb":14,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0030694","bacterial-type flagellum basal body, rod"],["GO%3A0009424","bacterial-type flagellum hook"],["NCBIfam%3ATIGR02490","flagellar basal-body rod protein FlgF"],["NCBIfam%3ANF009278","flagellar basal body rod protein FlgG"],["NCBIfam%3ATIGR03506","flagellar hook-basal body complex protein"],["InterPro%3AIPR019776","Flagellar basal body rod protein, conserved site"]]},{"id":"GO:0030990","l":"intraciliary transport particle","na":1,"nb":13,"a":[["appendage/cilium.html","cilium"]],"b":[["GO%3A0030990","intraciliary transport particle"],["PANTHER%3APTHR16011","IFT57/HIPPI"],["PANTHER%3APTHR31978","INTRAFLAGELLAR TRANSPORT PROTEIN 20 HOMOLOG"],["PANTHER%3APTHR33724","INTRAFLAGELLAR TRANSPORT PROTEIN 43 HOMOLOG"],["PANTHER%3APTHR13376","INTRAFLAGELLAR TRANSPORT PROTEIN 46 HOMOLOG"],["PANTHER%3APTHR14781","INTRAFLAGELLAR TRANSPORT PROTEIN 56"]]},{"id":"GO:0032153","l":"cell division site","na":1,"nb":13,"a":[["division_machinery/divisome_complex.html","divisome complex"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["GO%3A0032153","cell division site"],["PANTHER%3APTHR36419","ARRESTIN FAMILY PROTEIN 1"],["PANTHER%3APTHR30474","CELL CYCLE PROTEIN"],["PANTHER%3APTHR37479","CELL DIVISION PROTEIN FTSL"],["PANTHER%3APTHR30314","CELL DIVISION PROTEIN FTSZ-RELATED"]]},{"id":"GO:0033104","l":"type VI protein secretion system complex","na":1,"nb":13,"a":[["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"]],"b":[["GO%3A0033104","type VI protein secretion system complex"],["NCBIfam%3ANF053769","CIS1 family contractile injection system inner tube protein"],["NCBIfam%3ANF053768","CIS12 family contractile injection system protein"],["NCBIfam%3ANF053767","CIS13 family contractile injection system protein"],["NCBIfam%3ANF053770","CIS5 family contractile injection system inner tube adaptor"],["NCBIfam%3ATIGR03345","type VI secretion system ATPase TssH"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus ATCC 27405","na":1,"nb":13,"a":[["other/cellulosome.html","cellulosome"]],"b":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["Pfam%3APF00942","Cellulose binding domain"],["Pfam%3APF17996","Carbohydrate esterase 2 N-terminal"],["Pfam%3APF00963","Cohesin domain"],["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF00404","Dockerin type I domain"]]},{"id":"UniProt:P0A7L8","l":"Large ribosomal subunit protein bL27","na":1,"nb":13,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["GO%3A0022625","cytosolic large ribosomal subunit"],["GO%3A0043022","ribosome binding"],["GO%3A0000049","tRNA binding"],["GO%3A1902626","assembly of large subunit precursor of preribosome"],["GO%3A0002181","cytoplasmic translation"]]},{"id":"UniProt:P0AG67","l":"Small ribosomal subunit protein bS1","na":1,"nb":13,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ANF004951","30S ribosomal protein S1"],["NCBIfam%3ANF004952","30S ribosomal protein S1"],["NCBIfam%3ANF004954","30S ribosomal protein S1"],["NCBIfam%3ATIGR00717","30S ribosomal protein S1"],["proteintraitsmech%3AMEROPS_CLEAVAGE_A02_011","human endogenous retrovirus K retropepsin cleavage specificity"]]},{"id":"UniProt:P0AGA2","l":"","na":1,"nb":13,"a":[["secretion_system/secyeg_translocon_complex.html","SecYEG translocon complex"]],"b":[["ComplexPortal%3ACPX-1095","Holo-translocon SecYEG-SecDF-YajC-YidC complex"],["ComplexPortal%3ACPX-1096","Protein-conducting channel SecYEG complex"],["GO%3A0031522","cell envelope Sec protein transport complex"],["GO%3A0005048","signal sequence receptor activity"],["GO%3A0043952","protein transport by the Sec complex"],["GO%3A0006616","SRP-dependent cotranslational protein targeting to membrane, translocation"]]},{"id":"UniProt:P61175","l":"Large ribosomal subunit protein uL22","na":1,"nb":13,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["GO%3A0015934","large ribosomal subunit"],["GO%3A0070180","large ribosomal subunit rRNA binding"],["GO%3A1902626","assembly of large subunit precursor of preribosome"],["GO%3A0042256","cytosolic ribosome assembly"],["GO%3A0042255","ribosome assembly"]]},{"id":"GO:0017119","l":"COG complex","na":1,"nb":12,"a":[["other/cog_complex.html","COG complex"]],"b":[["ComplexPortal%3ACPX-1840","COG Golgi transport complex"],["ComplexPortal%3ACPX-2794","COG tethering complex"],["ComplexPortal%3ACPX-6199","COG tethering complex"],["GO%3A0017119","COG complex"],["PANTHER%3APTHR21506","COMPONENT OF OLIGOMERIC GOLGI COMPLEX 6"],["PANTHER%3APTHR12961","CONSERVED OLIGOMERIC GOLGI COMPLEX COMPONENT 2"]]},{"id":"GO:0045040","l":"protein insertion into mitochondrial outer membrane","na":1,"nb":12,"a":[["other/sam_complex.html","SAM complex"]],"b":[["ComplexPortal%3ACPX-2281","MIM mitochondrial import complex"],["ComplexPortal%3ACPX-26566","MIM mitochondrial import complex"],["ComplexPortal%3ACPX-6133","SAM mitochondrial sorting and assembly machinery complex"],["ComplexPortal%3ACPX-6121","TOM40 mitochondrial outer membrane translocase complex"],["ComplexPortal%3ACPX-8921","TOM40 mitochondrial outer membrane translocase complex"],["ComplexPortal%3ACPX-8926","TOM40 mitochondrial outer membrane translocase complex, testis-specific variant"]]},{"id":"UniProt:P0A7R1","l":"Large ribosomal subunit protein bL9","na":1,"nb":12,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00158","50S ribosomal protein L9"],["InterPro%3AIPR020069","Large ribosomal subunit protein bL9, C-terminal"],["InterPro%3AIPR020070","Large ribosomal subunit protein bL9, N-terminal"],["Pfam%3APF03948","Ribosomal protein L9, C-terminal domain"],["Pfam%3APF01281","Ribosomal protein L9, N-terminal domain"]]},{"id":"UniProt:P0AG96","l":"","na":1,"nb":12,"a":[["secretion_system/secyeg_translocon_complex.html","SecYEG translocon complex"]],"b":[["ComplexPortal%3ACPX-1095","Holo-translocon SecYEG-SecDF-YajC-YidC complex"],["ComplexPortal%3ACPX-1096","Protein-conducting channel SecYEG complex"],["GO%3A0031522","cell envelope Sec protein transport complex"],["GO%3A0043952","protein transport by the Sec complex"],["GO%3A0006616","SRP-dependent cotranslational protein targeting to membrane, translocation"],["NCBIfam%3ANF004372","preprotein translocase subunit SecE"]]},{"id":"UniProt:P23448","l":"","na":1,"nb":12,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0009425","bacterial-type flagellum basal body"],["GO%3A0071973","bacterial-type flagellum-dependent cell motility"],["GO%3A0071978","bacterial-type flagellum-dependent swarming motility"],["NCBIfam%3ATIGR00207","flagellar motor switch protein FliG"],["InterPro%3AIPR023087","Flagellar motor switch protein FliG, C-terminal"],["InterPro%3AIPR032779","Flagellar motor switch protein FliG, middle domain"]]},{"id":"UniProt:P60422","l":"Large ribosomal subunit protein uL2","na":1,"nb":12,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["ComplexPortal%3ACPX-1944","DnaA-L2 DNA replication initiation inhibitory complex"],["GO%3A0032297","negative regulation of DNA-templated DNA replication initiation"],["NCBIfam%3ATIGR01171","50S ribosomal protein L2"],["InterPro%3AIPR022671","Large ribosomal subunit protein uL2, conserved site"],["InterPro%3AIPR022669","Large ribosomal subunit protein uL2, C-terminal"]]},{"id":"DOI:10.1016/j.cell.2006.10.037","l":"","na":1,"nb":11,"a":[["ribonucleoprotein/exosome_rnase_complex.html","exosome (RNase complex)"]],"b":[["InterPro%3AIPR001247","Exoribonuclease, phosphorolytic domain 1"],["InterPro%3AIPR015847","Exoribonuclease, phosphorolytic domain 2"],["InterPro%3AIPR012588","Exosome-associated factor Rrp6, N-terminal"],["InterPro%3AIPR019495","Exosome complex component CSL4, C-terminal"],["InterPro%3AIPR048541","Exosome complex component RRP40, N-terminal domain"],["InterPro%3AIPR049469","Exosome complex component RRP40, type I KH domain"]]},{"id":"DOI:10.1038/nature00769","l":"","na":1,"nb":11,"a":[["other/nucleolus.html","nucleolus"]],"b":[["InterPro%3AIPR018972","Sas10 C-terminal domain"],["InterPro%3AIPR007148","Small-subunit processome, Utp12"],["InterPro%3AIPR022125","U3 small nucleolar RNA-associated protein 10, N-terminal"],["InterPro%3AIPR013934","U3 small nucleolar RNA-associated protein 13, C-terminal"],["InterPro%3AIPR018983","U3 small nucleolar RNA-associated protein 15, C-terminal"],["InterPro%3AIPR056907","U3 small nucleolar RNA-associated protein 6 homolog, C-terminal"]]},{"id":"GO:1990586","l":"divisome complex","na":1,"nb":11,"a":[["division_machinery/divisome_complex.html","divisome complex"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["ComplexPortal%3ACPX-3299","FtsBL complex"],["ComplexPortal%3ACPX-3099","FtsQBL complex"],["GO%3A1990586","divisome complex"],["GO%3A1990588","FtsBL complex"],["GO%3A1990587","FtsQBL complex"]]},{"id":"UniProt:O32062","l":"","na":1,"nb":11,"a":[["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]],"b":[["GO%3A0043595","endospore cortex"],["GO%3A0042763","intracellular immature spore"],["GO%3A0008932","lytic endotransglycosylase activity"],["CDD%3Acd00118","LysM"],["InterPro%3AIPR018392","LysM domain"],["InterPro%3AIPR014248","Spore coat assembly protein SafA"]]},{"id":"UniProt:P02359","l":"Small ribosomal subunit protein uS7","na":1,"nb":11,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["GO%3A0022627","cytosolic small ribosomal subunit"],["GO%3A0000028","ribosomal small subunit assembly"],["NCBIfam%3ATIGR01029","30S ribosomal protein S7"],["InterPro%3AIPR020606","Small ribosomal subunit protein uS7, conserved site"],["CDD%3Acd14869","uS7_Bacteria"]]},{"id":"UniProt:P0A6E6","l":"","na":1,"nb":11,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["NCBIfam%3ATIGR01216","ATP synthase F1 subunit epsilon"],["NCBIfam%3ANF001847","F0F1 ATP synthase subunit epsilon"],["CDD%3Acd12152","F1-ATPase_delta"],["InterPro%3AIPR020547","ATP synthase epsilon subunit, C-terminal domain"],["InterPro%3AIPR020546","ATP synthase, F1 complex, delta/epsilon subunit, N-terminal"]]},{"id":"UniProt:P0A7J3","l":"Large ribosomal subunit protein uL10","na":1,"nb":11,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ANF000955","50S ribosomal protein L10"],["InterPro%3AIPR002363","Large ribosomal subunit protein uL10, conserved site, bacteria"],["CDD%3Acd05797","Ribosomal_L10"],["InterPro%3AIPR001790","Large ribosomal subunit protein uL10, N-terminal"],["Pfam%3APF00466","Ribosomal protein L10"]]},{"id":"UniProt:P0A7K2","l":"Large ribosomal subunit protein bL12","na":1,"nb":11,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00855","50S ribosomal protein L7/L12"],["CDD%3Acd00387","Ribosomal_L7_L12"],["InterPro%3AIPR013823","Large ribosomal subunit protein bL12, C-terminal"],["InterPro%3AIPR008932","Large ribosomal subunit protein bL12, oligomerization"],["Pfam%3APF16320","Ribosomal protein L7/L12 dimerisation domain"]]},{"id":"UniProt:P68699","l":"","na":1,"nb":11,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["RHEA%3A57720","ATP + H2O + 4 H(+)(in) = ADP + phosphate + 5 H(+)(out)"],["ComplexPortal%3ACPX-4022","ATP synthase complex"],["GO%3A0033177","proton-transporting two-sector ATPase complex, proton-transporting domain"],["GO%3A0042777","proton motive force-driven plasma membrane ATP synthesis"],["NCBIfam%3ATIGR01260","ATP synthase F0 subunit C"],["NCBIfam%3ANF005363","F0F1 ATP synthase subunit C"]]},{"id":"GO:0005736","l":"RNA polymerase I complex","na":1,"nb":10,"a":[["other/nucleolus.html","nucleolus"]],"b":[["ComplexPortal%3ACPX-1664","DNA-directed RNA Polymerase I complex"],["ComplexPortal%3ACPX-2386","DNA-directed RNA polymerase I complex"],["ComplexPortal%3ACPX-2602","DNA-directed RNA polymerase I complex"],["ComplexPortal%3ACPX-8907","DNA-directed RNA polymerase I complex"],["ComplexPortal%3ACPX-8913","DNA-directed RNA polymerase I complex"],["GO%3A0005736","RNA polymerase I complex"]]},{"id":"GO:0043952","l":"protein transport by the Sec complex","na":1,"nb":10,"a":[["secretion_system/secyeg_translocon_complex.html","SecYEG translocon complex"]],"b":[["ComplexPortal%3ACPX-1095","Holo-translocon SecYEG-SecDF-YajC-YidC complex"],["ComplexPortal%3ACPX-1096","Protein-conducting channel SecYEG complex"],["GO%3A0043952","protein transport by the Sec complex"],["NCBIfam%3ATIGR00963","preprotein translocase subunit SecA"],["NCBIfam%3ATIGR00964","preprotein translocase subunit SecE"],["NCBIfam%3ATIGR00967","preprotein translocase subunit SecY"]]},{"id":"NCBITaxon:190650","l":"Caulobacter vibrioides (strain ATCC 19089 / CIP 103742 / CB 15)","na":1,"nb":10,"a":[["cytoskeleton/cytoophidium.html","cytoophidium"]],"b":[["IDPO%3A0000060","self-assembly"],["Pfam%3APF27198","FlaEY third domain"],["Pfam%3APF22367","Flagellar hook protein FlgE, third domain"],["Pfam%3APF03799","Cell division protein FtsQ/DivIB, C-terminal"],["Pfam%3APF27294","HfaA"],["Pfam%3APF27277","Holdfast attachment protein D"]]},{"id":"Pfam:PF03023","l":"Lipid II flippase MurJ","na":1,"nb":10,"a":[["envelope/peptidoglycan_based_cell_wall.html","peptidoglycan-based cell wall"]],"b":[["GO%3A0000935","division septum"],["GO%3A0015648","lipid-linked peptidoglycan transporter activity"],["GO%3A0034203","glycolipid translocation"],["GO%3A0015836","lipid-linked peptidoglycan transport"],["GO%3A0034204","lipid translocation"],["GO%3A0009252","peptidoglycan biosynthetic process"]]},{"id":"UniProt:P0A7L0","l":"Large ribosomal subunit protein uL1","na":1,"nb":10,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01169","50S ribosomal protein L1"],["InterPro%3AIPR023673","Large ribosomal subunit protein uL1, conserved site"],["CDD%3Acd00403","Ribosomal_L1"],["Pfam%3APF00687","Ribosomal protein L1p/L10e family"],["InterPro%3AIPR016095","Large ribosomal subunit protein uL1, 3-layer alpha/beta-sandwich domain"]]},{"id":"UniProt:P0A7M9","l":"Large ribosomal subunit protein bL31","na":1,"nb":10,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["GO%3A1904689","negative regulation of cytoplasmic translational initiation"],["NCBIfam%3ANF000612","50S ribosomal protein L31"],["NCBIfam%3ANF001809","50S ribosomal protein L31"],["NCBIfam%3ATIGR00105","50S ribosomal protein L31"],["Pfam%3APF01197","Ribosomal protein L31"]]},{"id":"UniProt:P0A7S9","l":"Small ribosomal subunit protein uS13","na":1,"nb":10,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR03631","30S ribosomal protein S13"],["InterPro%3AIPR018269","Small ribosomal subunit protein uS13, conserved site"],["Pfam%3APF00416","Ribosomal protein S13/S18"],["InterPro%3AIPR027437","Small ribosomal subunit protein uS13, C-terminal"],["InterPro%3AIPR010979","Small ribosomal subunit protein uS13-like, H2TH"]]},{"id":"UniProt:P0A7V3","l":"Small ribosomal subunit protein uS3","na":1,"nb":10,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR01009","30S ribosomal protein S3"],["InterPro%3AIPR018280","Small ribosomal subunit protein uS3, conserved site"],["CDD%3Acd02412","KH-II_30S_S3"],["InterPro%3AIPR001351","Small ribosomal subunit protein uS3, C-terminal"],["Pfam%3APF07650","KH domain"]]},{"id":"UniProt:P0A964","l":"","na":1,"nb":10,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["GO%3A0098561","methyl accepting chemotaxis protein complex"],["GO%3A0009454","aerotaxis"],["GO%3A0051649","establishment of localization in cell"],["NCBIfam%3ANF007903","chemotaxis protein CheW"],["CDD%3Acd00732","CheW"],["InterPro%3AIPR002545","CheW-like domain"]]},{"id":"UniProt:P0AB98","l":"","na":1,"nb":10,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["NCBIfam%3ANF004477","F0F1 ATP synthase subunit A"],["NCBIfam%3ATIGR01131","F0F1 ATP synthase subunit A"],["InterPro%3AIPR023011","ATP synthase, F0 complex, subunit A, active site"],["CDD%3Acd00310","ATP-synt_Fo_a_6"],["Pfam%3APF00119","ATP synthase A chain"]]},{"id":"UniProt:P0ABA6","l":"","na":1,"nb":10,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["GO%3A0042777","proton motive force-driven plasma membrane ATP synthesis"],["NCBIfam%3ATIGR01146","ATP synthase F1 subunit gamma"],["NCBIfam%3ANF004144","F0F1 ATP synthase subunit gamma"],["InterPro%3AIPR023632","ATP synthase, F1 complex, gamma subunit conserved site"],["CDD%3Acd12151","F1-ATPase_gamma"]]},{"id":"UniProt:P0ABB0","l":"","na":1,"nb":10,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["NCBIfam%3ANF009884","F0F1 ATP synthase subunit alpha"],["NCBIfam%3ATIGR00962","F0F1 ATP synthase subunit alpha"],["CDD%3Acd18113","ATP-synt_F1_alpha_C"],["CDD%3Acd18116","ATP-synt_F1_alpha_N"],["CDD%3Acd01132","F1-ATPase_alpha_CD"]]},{"id":"UniProt:P0AD65","l":"","na":1,"nb":10,"a":[["division_machinery/elongasome.html","elongasome"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["GO%3A0071972","peptidoglycan L,D-transpeptidase activity"],["NCBIfam%3ATIGR03423","penicillin-binding protein 2"],["NCBIfam%3ANF008061","peptidoglycan DD-transpeptidase MrdA"],["InterPro%3AIPR005311","Penicillin-binding protein, dimerisation domain"],["Pfam%3APF03717","Penicillin-binding Protein dimerisation domain"]]},{"id":"UniProt:P0ADY7","l":"Large ribosomal subunit protein uL16","na":1,"nb":10,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01164","50S ribosomal protein L16"],["InterPro%3AIPR020798","Large ribosomal subunit protein uL16, conserved site"],["CDD%3Acd01433","Ribosomal_L16_L10e"],["InterPro%3AIPR016180","Large ribosomal subunit protein uL16 domain"],["Pfam%3APF00252","Ribosomal protein L16p/L10e"]]},{"id":"UniProt:P28612","l":"","na":1,"nb":10,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0120101","bacterial-type flagellum stator complex"],["NCBIfam%3ANF005831","flagellar motor protein MotB"],["CDD%3Acd07185","OmpA_C-like"],["InterPro%3AIPR025713","Motility protein B-like, N-terminal domain"],["InterPro%3AIPR006665","OmpA-like domain"],["Pfam%3APF13677","Membrane MotB of proton-channel complex MotA/MotB"]]},{"id":"UniProt:P35620","l":"","na":1,"nb":10,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["NCBIfam%3ATIGR01398","flagellar biosynthesis protein FlhA"],["InterPro%3AIPR025505","FHIPEP conserved site"],["Pfam%3APF00771","FHIPEP family"],["InterPro%3AIPR042194","FHIPEP, domain 1"],["InterPro%3AIPR042193","FHIPEP, domain 3"],["InterPro%3AIPR042196","FHIPEP, domain 4"]]},{"id":"UniProt:P39064","l":"","na":1,"nb":10,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0120101","bacterial-type flagellum stator complex"],["NCBIfam%3ANF005382","flagellar motor protein MotS"],["CDD%3Acd07185","OmpA_C-like"],["InterPro%3AIPR025713","Motility protein B-like, N-terminal domain"],["InterPro%3AIPR006665","OmpA-like domain"],["Pfam%3APF13677","Membrane MotB of proton-channel complex MotA/MotB"]]},{"id":"UniProt:P62399","l":"Large ribosomal subunit protein uL5","na":1,"nb":10,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ANF000585","50S ribosomal protein L5"],["InterPro%3AIPR020929","Large ribosomal subunit protein uL5, conserved site"],["InterPro%3AIPR031309","Large ribosomal subunit protein uL5, C-terminal"],["InterPro%3AIPR031310","Large ribosomal subunit protein uL5, N-terminal"],["Pfam%3APF00673","ribosomal L5P family C-terminus"]]},{"id":"CHEBI:18248","l":"iron atom","na":1,"nb":9,"a":[["membrane_organelle/magnetosome.html","magnetosome"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18248","requires Fe"],["proteintraitsmech%3AMETALPDB_FE_DINUCLEAR","dinuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_HEPTANUCLEAR","heptanuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_HEXANUCLEAR","hexanuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_MONONUCLEAR","mononuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_OCTANUCLEAR","octanuclear iron site"]]},{"id":"DOI:10.1038/nsmb.1548","l":"","na":1,"nb":9,"a":[["other/dsl1_nzr_complex.html","Dsl1/NZR complex"]],"b":[["InterPro%3AIPR021876","Retrograde transport protein Dsl1, C-terminal domain"],["InterPro%3AIPR021875","Retrograde transport protein Dsl1 N-terminal domain"],["InterPro%3AIPR038442","Dsl1, N-terminal domain superfamily"],["InterPro%3AIPR042044","EXOC6/PINT-1/Sec15/Tip20, C-terminal, domain 2"],["InterPro%3AIPR042041","Protein transport protein Tip20, domain A"],["InterPro%3AIPR042042","Protein transport protein Tip20, domain B"]]},{"id":"GO:0016255","l":"attachment of GPI anchor to protein","na":1,"nb":9,"a":[["other/gpi_anchor_transamidase_complex.html","GPI-anchor transamidase complex"]],"b":[["ComplexPortal%3ACPX-10141","GPI-anchor transamidase complex"],["ComplexPortal%3ACPX-1275","GPI-anchor transamidase complex"],["ComplexPortal%3ACPX-2687","GPI-anchor transamidase complex"],["ComplexPortal%3ACPX-6503","GPI-anchor transamidase complex"],["GO%3A0016255","attachment of GPI anchor to protein"],["Reactome%3AR-HSA-162791","Attachment of GPI anchor to uPAR"]]},{"id":"GO:0031105","l":"septin complex","na":1,"nb":9,"a":[["cytoskeleton/septin_ring.html","septin ring"]],"b":[["ComplexPortal%3ACPX-1675","Septin complex"],["ComplexPortal%3ACPX-25766","Septin complex, hexamer variant, SEPT2-SEPT6-SEPT-7"],["ComplexPortal%3ACPX-25761","Septin complex, octamer variant, SEPT2-SEPT6-SEPT-7-SEPT3"],["ComplexPortal%3ACPX-25758","Septin complex, octamer variant, SEPT2-SEPT6-SEPT-7-SEPT9"],["ComplexPortal%3ACPX-26526","Septin1-Septin2-pnut complex"],["ComplexPortal%3ACPX-26529","Septin4-Septin5-pnut complex"]]},{"id":"GO:0042144","l":"vacuole fusion, non-autophagic","na":1,"nb":9,"a":[["other/hops_complex.html","HOPS complex"]],"b":[["ComplexPortal%3ACPX-1136","HOPS tethering complex"],["ComplexPortal%3ACPX-1625","HOPS tethering complex"],["ComplexPortal%3ACPX-1278","LMA1 complex, TRX1 variant"],["ComplexPortal%3ACPX-1279","LMA1 complex, TRX2 variant"],["ComplexPortal%3ACPX-5401","Vacuolar SNARE complex VAM3-VTI1-VAM7-NYV1"],["GO%3A0042144","vacuole fusion, non-autophagic"]]},{"id":"GO:0042407","l":"cristae formation","na":1,"nb":9,"a":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"]],"b":[["ComplexPortal%3ACPX-140","MICOS mitochondrial contact site and cristae organizing system complex"],["ComplexPortal%3ACPX-25732","MICOS mitochondrial contact site and cristae organizing system complex, MIC10A variant"],["ComplexPortal%3ACPX-25733","MICOS mitochondrial contact site and cristae organizing system complex, MIC10B variant"],["ComplexPortal%3ACPX-25735","MICOS mitochondrial contact site and cristae organizing system complex, MIC10C variant"],["ComplexPortal%3ACPX-6141","MICOS mitochondrial contact site and cristae organizing system complex"],["GO%3A0042407","cristae formation"]]},{"id":"GO:0042765","l":"GPI-anchor transamidase complex","na":1,"nb":9,"a":[["other/gpi_anchor_transamidase_complex.html","GPI-anchor transamidase complex"]],"b":[["ComplexPortal%3ACPX-10141","GPI-anchor transamidase complex"],["ComplexPortal%3ACPX-1275","GPI-anchor transamidase complex"],["ComplexPortal%3ACPX-2687","GPI-anchor transamidase complex"],["ComplexPortal%3ACPX-6503","GPI-anchor transamidase complex"],["GO%3A0042765","GPI-anchor transamidase complex"],["Pfam%3APF04113","Gpi16 subunit, GPI transamidase component"]]},{"id":"GO:0097546","l":"ciliary base","na":1,"nb":9,"a":[["appendage/cilium.html","cilium"]],"b":[["GO%3A0097546","ciliary base"],["PANTHER%3APTHR38326","CHROMOSOME 11 OPEN READING FRAME 97"],["PANTHER%3APTHR31978","INTRAFLAGELLAR TRANSPORT PROTEIN 20 HOMOLOG"],["PANTHER%3APTHR14781","INTRAFLAGELLAR TRANSPORT PROTEIN 56"],["PANTHER%3APTHR44117","INTRAFLAGELLAR TRANSPORT PROTEIN 88 HOMOLOG"],["PANTHER%3APTHR21532","PHOSPHODIESTERASE HL"]]},{"id":"GO:1905354","l":"exoribonuclease complex","na":1,"nb":9,"a":[["ribonucleoprotein/exosome_rnase_complex.html","exosome (RNase complex)"]],"b":[["ComplexPortal%3ACPX-5783","MERS-CoV 3'-5' exoribonuclease proof-reading complex"],["ComplexPortal%3ACPX-5692","SARS-CoV-2 3'-5' exoribonuclease proof-reading complex"],["ComplexPortal%3ACPX-5707","SARS-CoV 3'-5' exoribonuclease proof-reading complex"],["GO%3A1905354","exoribonuclease complex"],["GO%3A0000178","exosome (RNase complex)"],["GO%3A0090730","Las1 complex"]]},{"id":"NCBITaxon:5691","l":"Trypanosoma brucei","na":9,"nb":1,"a":[["cytoskeleton/bilobe_structure.html","bilobe structure"],["cytoskeleton/ciliary_pocket_collar.html","ciliary pocket collar"],["cytoskeleton/flagellum_attachment_zone.html","flagellum attachment zone"],["cytoskeleton/tripartite_attachment_complex.html","tripartite attachment complex"],["membrane_organelle/flagellar_pocket.html","flagellar pocket"],["membrane_organelle/glycosome.html","glycosome"]],"b":[["TED%3AAF-A0A1J0R543-F1-model_v4_TED02","TED novel fold AF-A0A1J0R543-F1-model_v4_TED02"]]},{"id":"UniProt:P02358","l":"Small ribosomal subunit protein bS6","na":1,"nb":9,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR00166","30S ribosomal protein S6"],["InterPro%3AIPR020815","Small ribosomal subunit protein bS6, conserved site"],["CDD%3Acd00473","bS6"],["Pfam%3APF01250","Ribosomal protein S6"],["InterPro%3AIPR035980","Small ribosomal subunit protein bS6 superfamily"]]},{"id":"UniProt:P0A7L3","l":"Large ribosomal subunit protein bL20","na":1,"nb":9,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01032","50S ribosomal protein L20"],["InterPro%3AIPR049946","Large ribosomal subunit protein bL20, conserved site"],["CDD%3Acd07026","Ribosomal_L20"],["Pfam%3APF00453","Ribosomal protein L20"],["InterPro%3AIPR035566","Ribosomal protein bL20, C-terminal"]]},{"id":"UniProt:P0A9X4","l":"","na":1,"nb":9,"a":[["cytoskeleton/mreb_filament.html","MreB filament"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["GO%3A0099513","polymeric cytoskeletal fiber"],["GO%3A0043093","FtsZ-dependent cytokinesis"],["GO%3A0009252","peptidoglycan biosynthetic process"],["GO%3A0051983","regulation of chromosome segregation"],["NCBIfam%3ATIGR00904","MreB/Mrl family cell shape determining protein"]]},{"id":"UniProt:P0AA10","l":"Large ribosomal subunit protein uL13","na":1,"nb":9,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["GO%3A0070180","large ribosomal subunit rRNA binding"],["NCBIfam%3ATIGR01066","50S ribosomal protein L13"],["InterPro%3AIPR023563","Large ribosomal subunit protein uL13, conserved site"],["CDD%3Acd00392","Ribosomal_L13"],["Pfam%3APF00572","Ribosomal protein L13"]]},{"id":"UniProt:P0ADZ4","l":"Small ribosomal subunit protein uS15","na":1,"nb":9,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["GO%3A0070181","small ribosomal subunit rRNA binding"],["NCBIfam%3ATIGR00952","30S ribosomal protein S15"],["CDD%3Acd00353","Ribosomal_S15p_S13e"],["Pfam%3APF00312","Ribosomal protein S15"],["InterPro%3AIPR009068","uS15/NS1, RNA-binding domain superfamily"]]},{"id":"UniProt:P23453","l":"","na":1,"nb":9,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0009425","bacterial-type flagellum basal body"],["NCBIfam%3ATIGR01397","flagellar motor switch protein FliM"],["CDD%3Acd17908","FliM"],["InterPro%3AIPR001543","Flagellar motor switch protein FliN-like, C-terminal domain"],["Pfam%3APF02154","Flagellar motor switch protein FliM"],["InterPro%3AIPR028976","CheC-like superfamily"]]},{"id":"DOI:10.1038/s41467-017-02784-7","l":"","na":1,"nb":8,"a":[["secretion_system/type_ix_protein_secretion_system_complex.html","type IX protein secretion system complex"]],"b":[["NCBIfam%3ATIGR03517","type IX secretion system motor protein PorM/GldM"],["InterPro%3AIPR022719","Gliding motility-associated protein GldM, C-terminal"],["InterPro%3AIPR048405","Type IX secretion system motor protein PorM/GldM, first immunoglobulin-like domain"],["InterPro%3AIPR022720","Type IX secretion system motor protein PorM/GldM, N-terminal"],["InterPro%3AIPR048406","Type IX secretion system motor protein PorM/GldM, second immunoglobulin-like domain"],["NCBIfam%3ANF023503","GldM family protein"]]},{"id":"DOI:10.7554/eLife.57887","l":"","na":1,"nb":8,"a":[["other/emc_complex.html","EMC complex"]],"b":[["InterPro%3AIPR058545","EMC1, first beta-propeller domain"],["InterPro%3AIPR055217","EMC2, TPR-like domain"],["InterPro%3AIPR011678","ER membrane protein complex subunit 1, C-terminal"],["InterPro%3AIPR019008","ER membrane protein complex subunit 7, beta-sandwich domain"],["NCBIfam%3ANF018157","DUF1077 domain-containing protein"],["NCBIfam%3ANF051548","EMC1 N-terminal beta-propeller domain"]]},{"id":"GO:0000917","l":"division septum assembly","na":1,"nb":8,"a":[["division_machinery/divisome_complex.html","divisome complex"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["GO%3A0000917","division septum assembly"],["GO%3A0140278","mitotic division septum assembly"],["NCBIfam%3ATIGR02205","cell division protein ZipA"],["NCBIfam%3ATIGR00172","Maf family nucleotide pyrophosphatase"],["PANTHER%3APTHR36419","ARRESTIN FAMILY PROTEIN 1"]]},{"id":"GO:0071816","l":"tail-anchored membrane protein insertion into ER membrane","na":1,"nb":8,"a":[["other/get_complex.html","GET complex"]],"b":[["ComplexPortal%3ACPX-2445","Endoplasmic reticulum membrane complex, EMC2A variant"],["ComplexPortal%3ACPX-2451","Endoplasmic reticulum membrane complex, EMC2B variant"],["ComplexPortal%3ACPX-5848","Endoplasmic reticulum membrane complex, EMC8 variant"],["ComplexPortal%3ACPX-5882","Endoplasmic reticulum membrane complex, EMC8 variant"],["ComplexPortal%3ACPX-5881","Endoplasmic reticulum membrane complex, EMC9 variant"],["ComplexPortal%3ACPX-5883","Endoplasmic reticulum membrane complex, EMC9 variant"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":8,"a":[["other/cellulosome.html","cellulosome"]],"b":[["Pfam%3APF02927","Cellulase N-terminal ig-like domain"],["Pfam%3APF00404","Dockerin type I domain"],["PROSITE%3APS00448","Clostridium cellulosome enzymes repeated domain signature"],["PROSITE%3APS60032","Glycosyl hydrolases family 9 (GH9) active site signature 1"],["PROSITE%3APS00592","Glycosyl hydrolases family 9 (GH9) active site signature 2"],["PROSITE%3APS00698","Glycosyl hydrolases family 9 (GH9) active site signature 3"]]},{"id":"NCBITaxon:572477","l":"Allochromatium vinosum (strain ATCC 17899 / DSM 180 / NBRC 103801 / NCIMB 10441 / D)","na":1,"nb":8,"a":[["inclusion/sulfur_globule.html","sulfur globule"]],"b":[["Pfam%3APF01322","Cytochrome C'"],["Pfam%3APF02635","DsrE/DsrF-like family"],["Pfam%3APF21706","Sulfide dehydrogenase [flavocytochrome c] flavoprotein chain, central"],["Pfam%3APF09242","Flavocytochrome c sulphide dehydrogenase, flavin-binding"],["Pfam%3APF01355","High potential iron-sulfur protein"],["Pfam%3APF13686","DsrE/DsrF/DrsH-like family"]]},{"id":"UniProt:P05704","l":"","na":1,"nb":8,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["GO%3A0098561","methyl accepting chemotaxis protein complex"],["CDD%3Acd19407","Tar_Tsr_sensor"],["InterPro%3AIPR003122","Chemotaxis methyl-accepting receptor Tar-related, ligand-binding"],["Pfam%3APF02203","Tar ligand binding domain homologue"],["InterPro%3AIPR035440","Methyl-accepting chemotaxis protein, four helix bundle domain superfamily"],["PROSITE%3APS00538","Bacterial chemotaxis sensory transducers signature"]]},{"id":"UniProt:P07018","l":"","na":1,"nb":8,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["NCBIfam%3ANF007309","methyl-accepting chemotaxis protein IV"],["CDD%3Acd19407","Tar_Tsr_sensor"],["InterPro%3AIPR003122","Chemotaxis methyl-accepting receptor Tar-related, ligand-binding"],["Pfam%3APF02203","Tar ligand binding domain homologue"],["InterPro%3AIPR035440","Methyl-accepting chemotaxis protein, four helix bundle domain superfamily"],["PROSITE%3APS00538","Bacterial chemotaxis sensory transducers signature"]]},{"id":"UniProt:P0A7M6","l":"Large ribosomal subunit protein uL29","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00012","50S ribosomal protein L29"],["InterPro%3AIPR018254","Large ribosomal subunit protein uL29, conserved site"],["CDD%3Acd00427","Ribosomal_L29_HIP"],["Pfam%3APF00831","Ribosomal L29 protein"],["InterPro%3AIPR036049","Large ribosomal subunit protein uL29 superfamily"]]},{"id":"UniProt:P0A7N9","l":"Large ribosomal subunit protein bL33","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ANF001860","50S ribosomal protein L33"],["NCBIfam%3ATIGR01023","50S ribosomal protein L33"],["InterPro%3AIPR018264","Large ribosomal subunit protein bL33, conserved site"],["Pfam%3APF00471","Ribosomal protein L33"],["InterPro%3AIPR038584","Large ribosomal subunit protein bL33 superfamily"]]},{"id":"UniProt:P0A7R9","l":"Small ribosomal subunit protein uS11","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ANF003698","30S ribosomal protein S11"],["NCBIfam%3ATIGR03632","30S ribosomal protein S11"],["InterPro%3AIPR018102","Small ribosomal subunit protein uS11, conserved site"],["Pfam%3APF00411","Ribosomal protein S11"],["InterPro%3AIPR036967","Small ribosomal subunit protein uS11 superfamily"]]},{"id":"UniProt:P0A7W1","l":"Small ribosomal subunit protein uS5","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR01021","30S ribosomal protein S5"],["InterPro%3AIPR018192","Small ribosomal subunit protein uS5, N-terminal, conserved site"],["InterPro%3AIPR005324","Small ribosomal subunit protein uS5, C-terminal"],["InterPro%3AIPR013810","Small ribosomal subunit protein uS5, N-terminal"],["Pfam%3APF03719","Ribosomal protein S5, C-terminal domain"]]},{"id":"UniProt:P0A7W7","l":"Small ribosomal subunit protein uS8","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ANF001109","30S ribosomal protein S8"],["InterPro%3AIPR047863","Small ribosomal subunit protein uS8, conserved site"],["Pfam%3APF00410","Ribosomal protein S8"],["InterPro%3AIPR035987","Small ribosomal subunit protein uS8 superfamily"],["PROSITE%3APS00053","Ribosomal protein S8 signature"]]},{"id":"UniProt:P0ABA0","l":"","na":1,"nb":8,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["NCBIfam%3ANF004411","F0F1 ATP synthase subunit B"],["NCBIfam%3ANF004413","F0F1 ATP synthase subunit B"],["NCBIfam%3ATIGR01144","F0F1 ATP synthase subunit B"],["CDD%3Acd06503","ATP-synt_Fo_b"],["Pfam%3APF00430","ATP synthase B/B' CF(0)"]]},{"id":"UniProt:P0ABA4","l":"","na":1,"nb":8,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["NCBIfam%3ATIGR01145","ATP synthase F1 subunit delta"],["NCBIfam%3ANF004402","F0F1 ATP synthase subunit delta"],["NCBIfam%3ANF004404","F0F1 ATP synthase subunit delta"],["InterPro%3AIPR020781","ATPase, OSCP/delta subunit, conserved site"],["Pfam%3APF00213","ATP synthase delta (OSCP) subunit"]]},{"id":"UniProt:P0ABG7","l":"","na":1,"nb":8,"a":[["division_machinery/elongasome.html","elongasome"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["GO%3A0015648","lipid-linked peptidoglycan transporter activity"],["GO%3A0031504","peptidoglycan-based cell wall organization"],["NCBIfam%3ANF008060","peptidoglycan glycosyltransferase MrdB"],["NCBIfam%3ATIGR02210","rod shape-determining protein RodA"],["InterPro%3AIPR018365","Cell cycle, FtsW / RodA / SpoVE, conserved site"]]},{"id":"UniProt:P0ABH0","l":"","na":1,"nb":8,"a":[["division_machinery/divisome_complex.html","divisome complex"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["NCBIfam%3ANF007009","cell division protein FtsA"],["NCBIfam%3ATIGR01174","cell division protein FtsA"],["CDD%3Acd24048","ASKHA_NBD_FtsA"],["InterPro%3AIPR003494","SHS2 domain inserted in FtsA"],["Pfam%3APF14450","Cell division protein FtsA"]]},{"id":"UniProt:P0ADY3","l":"Large ribosomal subunit protein uL14","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01067","50S ribosomal protein L14"],["InterPro%3AIPR019972","Large ribosomal subunit protein uL14, conserved site"],["CDD%3Acd00337","Ribosomal_uL14"],["Pfam%3APF00238","Ribosomal protein L14p/L23e"],["InterPro%3AIPR036853","Large ribosomal subunit protein uL14 superfamily"]]},{"id":"UniProt:P0AG51","l":"Large ribosomal subunit protein uL30","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01308","50S ribosomal protein L30"],["InterPro%3AIPR018038","Large ribosomal subunit protein uL30, conserved site"],["CDD%3Acd01658","Ribosomal_L30"],["InterPro%3AIPR016082","Large ribosomal subunit protein uL30-like, ferredoxin-like fold domain"],["Pfam%3APF00327","Ribosomal protein L30p/L7e"]]},{"id":"UniProt:P0AG55","l":"Large ribosomal subunit protein uL6","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR03654","50S ribosomal protein L6"],["InterPro%3AIPR002358","Large ribosomal subunit protein uL6, conserved site"],["InterPro%3AIPR020040","Large ribosomal subunit protein uL6, alpha-beta domain"],["Pfam%3APF00347","Ribosomal protein L6"],["InterPro%3AIPR036789","Large ribosomal subunit protein uL6-like, alpha-beta domain superfamily"]]},{"id":"UniProt:P16926","l":"","na":1,"nb":8,"a":[["division_machinery/elongasome.html","elongasome"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["NCBIfam%3ATIGR00219","rod shape-determining protein MreC"],["InterPro%3AIPR055342","Rod shape-determining protein MreC, beta-barrel core"],["Pfam%3APF04085","Rod shape-determining protein MreC, barrel core"],["InterPro%3AIPR042177","Cell/Rod shape-determining protein MreC, domain 1"],["InterPro%3AIPR042175","Cell/Rod shape-determining protein MreC, domain 2"]]},{"id":"UniProt:P60624","l":"Large ribosomal subunit protein uL24","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01079","50S ribosomal protein L24"],["InterPro%3AIPR005825","Large ribosomal subunit protein uL24, conserved site"],["CDD%3Acd06089","KOW_RPL26"],["InterPro%3AIPR057264","Large ribosomal subunit protein uL24, C-terminal domain"],["InterPro%3AIPR041988","Large ribosomal subunit protein uL24, KOW domain"]]},{"id":"UniProt:P68919","l":"Large ribosomal subunit protein bL25","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ANF004612","50S ribosomal protein L25"],["CDD%3Acd00495","Ribosomal_L25_TL5_CTC"],["InterPro%3AIPR029751","Large ribosomal subunit protein bL25, L25 domain"],["Pfam%3APF01386","Ribosomal L25p family"],["InterPro%3AIPR011035","Large ribosomal subunit protein bL25/Gln-tRNA synthetase, anti-codon-binding domain superfamily"]]},{"id":"DOI:10.1371/journal.pbio.1001170","l":"","na":1,"nb":7,"a":[["other/ap_5_adaptor_complex.html","AP-5 adaptor complex"]],"b":[["InterPro%3AIPR048980","AP-5 complex subunit beta-1, beta-barrel domain"],["InterPro%3AIPR048978","AP-5 complex subunit beta-1, N-terminal domain"],["InterPro%3AIPR055450","AP-5 complex subunit zeta-1, ARM repeats domain"],["InterPro%3AIPR056856","AP-5 complex subunit zeta-1, C-terminal TPR domain"],["InterPro%3AIPR056857","AP-5 complex subunit zeta-1, N-terminal TPR domain"],["InterPro%3AIPR048981","AP5B1, C-terminal domain"]]},{"id":"GO:0005771","l":"multivesicular body","na":7,"nb":1,"a":[["membrane_organelle/endosome.html","endosome"],["membrane_organelle/endosome_lumen.html","endosome lumen"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/multivesicular_body.html","multivesicular body"],["membrane_organelle/multivesicular_body_lumen.html","multivesicular body lumen"]],"b":[["GO%3A0005771","multivesicular body"]]},{"id":"GO:0006901","l":"vesicle coat assembly","na":1,"nb":7,"a":[["other/vesicle_coat.html","vesicle coat"]],"b":[["ComplexPortal%3ACPX-4764","TRAPP II complex"],["ComplexPortal%3ACPX-4749","TRAPP II complex, TRAPPC2 variant"],["ComplexPortal%3ACPX-6902","TRAPP II complex, TRAPPC2B variant"],["GO%3A0048208","COPII vesicle coat assembly"],["GO%3A0048200","Golgi transport vesicle coating"],["GO%3A0016183","synaptic vesicle coating"]]},{"id":"GO:0030128","l":"clathrin coat of endocytic vesicle","na":7,"nb":1,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle.html","clathrin-coated endocytic vesicle"],["membrane_organelle/clathrin_coated_endocytic_vesicle_membrane.html","clathrin-coated endocytic vesicle membrane"],["membrane_organelle/endocytic_vesicle.html","endocytic vesicle"],["membrane_organelle/endocytic_vesicle_membrane.html","endocytic vesicle membrane"],["other/ap_2_adaptor_complex.html","AP-2 adaptor complex"],["other/clathrin_coat_of_coated_pit.html","clathrin coat of coated pit"]],"b":[["GO%3A0030128","clathrin coat of endocytic vesicle"]]},{"id":"GO:0030479","l":"actin cortical patch","na":1,"nb":7,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"]],"b":[["ComplexPortal%3ACPX-3541","AIM21-TDA2 actin assembly regulator complex"],["ComplexPortal%3ACPX-1500","Myosin class I complex, MYO3 variant"],["ComplexPortal%3ACPX-1470","Myosin class I complex, MYO5 variant"],["ComplexPortal%3ACPX-1335","RVS161-RVS167 amphiphysin complex"],["GO%3A0030479","actin cortical patch"],["PANTHER%3APTHR47789","LAS SEVENTEEN-BINDING PROTEIN 5"]]},{"id":"GO:0030897","l":"HOPS complex","na":1,"nb":7,"a":[["other/hops_complex.html","HOPS complex"]],"b":[["ComplexPortal%3ACPX-1136","HOPS tethering complex"],["ComplexPortal%3ACPX-1625","HOPS tethering complex"],["ComplexPortal%3ACPX-6212","HOPS tethering complex"],["ComplexPortal%3ACPX-936","HOPS tethering complex"],["GO%3A0030897","HOPS complex"],["GO%3A1902502","multivesicular body HOPS complex"]]},{"id":"GO:0030905","l":"retromer, tubulation complex","na":1,"nb":7,"a":[["other/retromer_complex.html","retromer complex"]],"b":[["ComplexPortal%3ACPX-8837","SNX1-SNX32 sorting nexin complex"],["ComplexPortal%3ACPX-8823","SNX1-SNX5 sorting nexin complex"],["ComplexPortal%3ACPX-8835","SNX1-SNX6 sorting nexin complex"],["ComplexPortal%3ACPX-8840","SNX2-SNX32 sorting nexin complex"],["ComplexPortal%3ACPX-8838","SNX2-SNX5 sorting nexin complex"],["ComplexPortal%3ACPX-8839","SNX2-SNX6 sorting nexin complex"]]},{"id":"GO:0032156","l":"septin cytoskeleton","na":1,"nb":7,"a":[["cytoskeleton/septin_ring.html","septin ring"]],"b":[["GO%3A0150050","postsynaptic septin cytoskeleton"],["GO%3A0032159","septin cap"],["GO%3A0032173","septin collar"],["GO%3A0032156","septin cytoskeleton"],["GO%3A0032160","septin filament array"],["GO%3A0005940","septin ring"]]},{"id":"GO:0033115","l":"cyanelle thylakoid membrane","na":7,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/cyanelle_thylakoid_lumen.html","cyanelle thylakoid lumen"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"]],"b":[["GO%3A0033115","cyanelle thylakoid membrane"]]},{"id":"GO:0035964","l":"COPI-coated vesicle budding","na":7,"nb":1,"a":[["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"],["membrane_organelle/golgi_membrane.html","Golgi membrane"],["other/copi_vesicle_coat.html","COPI vesicle coat"]],"b":[["GO%3A0035964","COPI-coated vesicle budding"]]},{"id":"GO:0043953","l":"protein transport by the Tat complex","na":1,"nb":7,"a":[["secretion_system/tat_protein_transport_complex.html","TAT protein transport complex"]],"b":[["ComplexPortal%3ACPX-3445","Twin-arginine translocation complex"],["GO%3A0043953","protein transport by the Tat complex"],["NCBIfam%3ANF001854","Sec-independent protein translocase subunit TatA"],["NCBIfam%3ANF002813","Sec-independent protein translocase subunit TatA"],["NCBIfam%3ATIGR01912","Sec-independent protein translocase TatC"],["NCBIfam%3ANF001940","twin-arginine translocase TatA/TatE family subunit"]]},{"id":"GO:0097597","l":"ventral disc","na":7,"nb":1,"a":[["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_crossbridge.html","ventral disc crossbridge"],["cytoskeleton/ventral_disc_dorsal_microribbon.html","ventral disc dorsal microribbon"],["cytoskeleton/ventral_disc_lateral_crest.html","ventral disc lateral crest"],["cytoskeleton/ventral_disc_microtubule_array.html","ventral disc microtubule array"],["cytoskeleton/ventral_disc_overlap_zone.html","ventral disc overlap zone"]],"b":[["GO%3A0097597","ventral disc"]]},{"id":"InterPro:IPR001119","l":"S-layer homology domain","na":1,"nb":7,"a":[["envelope/s_layer.html","S-layer"]],"b":[["InterPro%3AIPR011459","Domain of unknown function DUF1565"],["InterPro%3AIPR001119","S-layer homology domain"],["Pfam%3APF13205","Bacterial Ig-like domain"],["Pfam%3APF03424","Carbohydrate binding domain (family 17/28)"],["Pfam%3APF06452","Carbohydrate family 9 binding domain-like"],["Pfam%3APF07602","Protein of unknown function (DUF1565)"]]},{"id":"NCBITaxon:837","l":"Porphyromonas gingivalis","na":1,"nb":7,"a":[["secretion_system/type_ix_protein_secretion_system_complex.html","type IX protein secretion system complex"]],"b":[["Pfam%3APF07675","Cleaved Adhesin Domain"],["Pfam%3APF22492","FimA4 pilin C-terminal domain"],["Pfam%3APF15495","Major fimbrial subunit protein type IV, Fimbrillin, C-terminal"],["Pfam%3APF26306","FimD protein third domain"],["Pfam%3APF27397","FimE C-terminal domain"],["Pfam%3APF10365","Domain of unknown function (DUF2436)"]]},{"id":"Pfam:PF04728","l":"Lipoprotein leucine-zipper","na":1,"nb":7,"a":[["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"]],"b":[["GO%3A0043580","periplasmic space organization"],["NCBIfam%3ANF007428","lipoprotein YqhH"],["NCBIfam%3ANF040598","Lpp/OprI family alanine-zipper lipoprotein"],["NCBIfam%3ANF011925","major outer membrane lipoprotein"],["InterPro%3AIPR006817","Lipoprotein leucine-zipper"],["Pfam%3APF04728","Lipoprotein leucine-zipper"]]},{"id":"UniProt:P0A7K6","l":"Large ribosomal subunit protein bL19","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01024","50S ribosomal protein L19"],["InterPro%3AIPR018257","Large ribosomal subunit protein bL19, conserved site"],["Pfam%3APF01245","Ribosomal protein L19"],["InterPro%3AIPR038657","Large ribosomal subunit protein bL19 superfamily"],["PROSITE%3APS01015","Ribosomal protein L19 signature"]]},{"id":"UniProt:P0A7N1","l":"Large ribosomal subunit protein bL31B","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00105","50S ribosomal protein L31"],["NCBIfam%3ANF002462","type B 50S ribosomal protein L31"],["Pfam%3APF01197","Ribosomal protein L31"],["InterPro%3AIPR042105","Large ribosomal subunit protein bL31 superfamily"],["PROSITE%3APS01143","Ribosomal protein L31 signature"]]},{"id":"UniProt:P0A7Q1","l":"Large ribosomal subunit protein bL35","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00001","50S ribosomal protein L35"],["InterPro%3AIPR018265","Large ribosomal subunit protein bL35, conserved site"],["Pfam%3APF01632","Ribosomal protein L35"],["InterPro%3AIPR037229","Large ribosomal subunit protein bL35 superfamily"],["PROSITE%3APS00936","Ribosomal protein L35 signature"]]},{"id":"UniProt:P0A7T3","l":"Small ribosomal subunit protein bS16","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR00002","30S ribosomal protein S16"],["InterPro%3AIPR020592","Small ribosomal subunit protein bS16, conserved site"],["Pfam%3APF00886","Ribosomal protein S16"],["InterPro%3AIPR023803","Small ribosomal subunit protein bS16 domain superfamily"],["PROSITE%3APS00732","Ribosomal protein S16 signature"]]},{"id":"UniProt:P0A7T7","l":"Small ribosomal subunit protein bS18","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR00165","30S ribosomal protein S18"],["InterPro%3AIPR018275","Small ribosomal subunit protein bS18, conserved site"],["Pfam%3APF01084","Ribosomal protein S18"],["InterPro%3AIPR036870","Small ribosomal subunit protein bS18 superfamily"],["PROSITE%3APS00057","Ribosomal protein S18 signature"]]},{"id":"UniProt:P0A7U3","l":"Small ribosomal subunit protein uS19","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR01050","30S ribosomal protein S19"],["InterPro%3AIPR020934","Small ribosomal subunit protein uS19, conserved site"],["Pfam%3APF00203","Ribosomal protein S19"],["InterPro%3AIPR023575","Small ribosomal subunit protein uS19, superfamily"],["PROSITE%3APS00323","Ribosomal protein S19 signature"]]},{"id":"UniProt:P0A7U7","l":"Small ribosomal subunit protein bS20","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["GO%3A0008073","ornithine decarboxylase inhibitor activity"],["GO%3A0070181","small ribosomal subunit rRNA binding"],["NCBIfam%3ATIGR00029","30S ribosomal protein S20"],["Pfam%3APF01649","Ribosomal protein S20"],["InterPro%3AIPR036510","Small ribosomal subunit protein bS20 superfamily"]]},{"id":"UniProt:P0A9A6","l":"","na":1,"nb":7,"a":[["division_machinery/divisome_complex.html","divisome complex"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["NCBIfam%3ATIGR00065","cell division protein FtsZ"],["InterPro%3AIPR020805","Cell division protein FtsZ, conserved site"],["CDD%3Acd02201","FtsZ_type1"],["InterPro%3AIPR024757","Cell division protein FtsZ, C-terminal"],["PROSITE%3APS01134","FtsZ protein signature 1"]]},{"id":"UniProt:P0AG44","l":"Large ribosomal subunit protein bL17","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00059","50S ribosomal protein L17"],["InterPro%3AIPR047859","Large ribosomal subunit protein bL17, conserved site"],["Pfam%3APF01196","Ribosomal protein L17"],["InterPro%3AIPR036373","Large ribosomal subunit protein bL17 superfamily"],["PROSITE%3APS01167","Ribosomal protein L17 signature"]]},{"id":"UniProt:P0AG63","l":"Small ribosomal subunit protein uS17","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ANF004123","30S ribosomal protein S17"],["NCBIfam%3ATIGR03635","30S ribosomal protein S17"],["InterPro%3AIPR019979","Small ribosomal subunit protein uS17, conserved site"],["CDD%3Acd00364","Ribosomal_uS17"],["Pfam%3APF00366","Ribosomal protein S17"]]},{"id":"UniProt:P23447","l":"","na":1,"nb":7,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0009431","bacterial-type flagellum basal body, MS ring"],["NCBIfam%3ATIGR00206","flagellar basal-body MS-ring/collar protein FliF"],["InterPro%3AIPR013556","Flagellar M-ring C-terminal"],["InterPro%3AIPR006182","Flagellar M-ring, N-terminal"],["Pfam%3APF08345","Flagellar M-ring protein C-terminal"],["Pfam%3APF01514","Secretory protein of YscJ/FliF RBM domain"]]},{"id":"UniProt:P28611","l":"","na":1,"nb":7,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["NCBIfam%3ANF005997","flagellar motor stator protein MotA"],["InterPro%3AIPR000540","Flagellar motor protein MotA, conserved site"],["InterPro%3AIPR002898","MotA/TolQ/ExbB proton channel"],["InterPro%3AIPR046786","Motility protein A, N-terminal"],["Pfam%3APF20560","Motility protein A N-terminal"],["Pfam%3APF01618","MotA/TolQ/ExbB proton channel family"]]},{"id":"UniProt:P68679","l":"Small ribosomal subunit protein bS21","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR00030","30S ribosomal protein S21"],["InterPro%3AIPR018278","Small ribosomal subunit protein bS21, conserved site"],["Pfam%3APF01165","Ribosomal protein S21"],["InterPro%3AIPR038380","Small ribosomal subunit protein bS21 superfamily"],["PROSITE%3APS01181","Ribosomal protein S21 signature"]]},{"id":"UniProt:P77173","l":"","na":1,"nb":7,"a":[["division_machinery/divisome_complex.html","divisome complex"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["NCBIfam%3ATIGR02205","cell division protein ZipA"],["CDD%3Acd00231","ZipA"],["InterPro%3AIPR007449","ZipA, C-terminal FtsZ-binding domain"],["Pfam%3APF04354","ZipA, C-terminal FtsZ-binding domain"],["InterPro%3AIPR036765","ZipA, C-terminal FtsZ-binding domain superfamily"]]},{"id":"CHEBI:35915","l":"","na":1,"nb":6,"a":[["inclusion/lipid_droplet.html","lipid droplet"]],"b":[["EC%3A2.3.1.43","phosphatidylcholine--sterol O-acyltransferase"],["EC%3A2.3.1.73","diacylglycerol--sterol O-acyltransferase"],["EC%3A3.1.1.13","sterol esterase"],["RHEA%3A21204","a sterol + a 1,2-diacyl-sn-glycero-3-phosphocholine = a sterol ester + a 1-acyl-sn-glycero-3-phosphocholine"],["RHEA%3A13301","a sterol + a 1,2-diacyl-sn-glycerol = a sterol ester + a 1-acyl-sn-glycerol"],["RHEA%3A10100","a sterol ester + H2O = a sterol + a fatty acid + H(+)"]]},{"id":"DOI:10.1126/science.1188919","l":"","na":1,"nb":6,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["InterPro%3AIPR010653","Outer membrane protein assembly factor BamC-like"],["InterPro%3AIPR064009","Outer membrane protein assembly factor BamC-like, N-terminal domain"],["NCBIfam%3ANF018509","NlpB/DapX family lipoprotein"],["NCBIfam%3ANF056544","Outer membrane protein assembly factor BamC-like N-terminal domain"],["InterPro%3AIPR037873","BamE-like"],["InterPro%3AIPR042268","Outer membrane protein assembly factor BamC, C-terminal"]]},{"id":"GO:0000133","l":"polarisome","na":1,"nb":6,"a":[["other/polarisome.html","polarisome"]],"b":[["ComplexPortal%3ACPX-3188","Polarisome"],["GO%3A0031560","cellular bud neck polarisome"],["GO%3A0031561","cellular bud tip polarisome"],["GO%3A0031562","hyphal tip polarisome"],["GO%3A0031563","mating projection tip polarisome"],["GO%3A0000133","polarisome"]]},{"id":"GO:0000148","l":"1,3-beta-D-glucan synthase complex","na":1,"nb":6,"a":[["other/1_3_beta_d_glucan_synthase_complex.html","1,3-beta-D-glucan synthase complex"]],"b":[["ComplexPortal%3ACPX-1812","1,3-beta-D-glucan synthase complex, FKS1-RHO1 variant"],["ComplexPortal%3ACPX-1813","1,3-beta-D-glucan synthase complex, FKS2-RHO1 variant"],["ComplexPortal%3ACPX-3028","1,3-beta-D-glucan synthase complex, FKS3-RHO1 variant"],["GO%3A0000148","1,3-beta-D-glucan synthase complex"],["InterPro%3AIPR003440","Glycosyl transferase 48 domain"],["Pfam%3APF02364","1,3-beta-glucan synthase component"]]},{"id":"GO:0000938","l":"GARP complex","na":1,"nb":6,"a":[["other/garp_complex.html","GARP complex"]],"b":[["ComplexPortal%3ACPX-1718","GARP tethering complex"],["ComplexPortal%3ACPX-365","GARP tethering complex"],["ComplexPortal%3ACPX-6208","GARP tethering complex"],["ComplexPortal%3ACPX-2788","GARP tethering complex, Vps50 variant"],["ComplexPortal%3ACPX-2793","GARP tethering complex, Vps54 variant"],["GO%3A0000938","GARP complex"]]},{"id":"GO:0001401","l":"SAM complex","na":1,"nb":6,"a":[["other/sam_complex.html","SAM complex"]],"b":[["ComplexPortal%3ACPX-1744","Mitochondrial sorting and assembly machinery complex"],["ComplexPortal%3ACPX-6133","SAM mitochondrial sorting and assembly machinery complex"],["GO%3A0001401","SAM complex"],["InterPro%3AIPR019564","Mitochondrial outer membrane transport complex Sam37/metaxin, N-terminal domain"],["NCBIfam%3ANF022041","Tom37 metaxin N-terminal-like domain-containing protein"],["Pfam%3APF10568","Outer mitochondrial membrane transport complex protein"]]},{"id":"GO:0006797","l":"polyphosphate metabolic process","na":1,"nb":6,"a":[["membrane_organelle/acidocalcisome.html","acidocalcisome"]],"b":[["GO%3A0006799","polyphosphate biosynthetic process"],["GO%3A0006798","polyphosphate catabolic process"],["GO%3A0006797","polyphosphate metabolic process"],["NCBIfam%3ANF042973","ADP-polyphosphate phosphotransferase"],["NCBIfam%3ATIGR03708","polyphosphate:AMP phosphotransferase"],["NCBIfam%3ATIGR03709","PPK2 family polyphosphate kinase"]]},{"id":"GO:0006998","l":"nuclear envelope organization","na":1,"nb":6,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"]],"b":[["ComplexPortal%3ACPX-1787","Nem1-Spo7 phosphatase complex"],["GO%3A0006998","nuclear envelope organization"],["GO%3A0018985","pronuclear envelope synthesis"],["PANTHER%3APTHR47808","INNER NUCLEAR MEMBRANE PROTEIN HEH2-RELATED"],["PANTHER%3APTHR28538","INTEGRAL INNER NUCLEAR MEMBRANE PROTEIN IMA1"],["PANTHER%3APTHR28136","NUCLEUS EXPORT PROTEIN BRR6"]]},{"id":"GO:0020007","l":"apical complex","na":6,"nb":1,"a":[["cytoskeleton/conoid.html","conoid"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["membrane_organelle/exoneme.html","exoneme"],["membrane_organelle/microneme.html","microneme"],["membrane_organelle/rhoptry.html","rhoptry"],["other/apical_complex.html","apical complex"]],"b":[["GO%3A0020007","apical complex"]]},{"id":"GO:0033112","l":"cyanelle envelope","na":6,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"]],"b":[["GO%3A0033112","cyanelle envelope"]]},{"id":"GO:0033565","l":"ESCRT-0 complex","na":1,"nb":6,"a":[["other/escrt_0_complex.html","ESCRT-0 complex"]],"b":[["ComplexPortal%3ACPX-1622","ESCRT-0 complex"],["ComplexPortal%3ACPX-2452","ESCRT-0 complex"],["ComplexPortal%3ACPX-26631","ESCRT-0 complex"],["ComplexPortal%3ACPX-2825","ESCRT-0 complex, STAM variant"],["ComplexPortal%3ACPX-7143","ESCRT-0 complex, STAM2 variant"],["GO%3A0033565","ESCRT-0 complex"]]},{"id":"GO:0036012","l":"cyanelle inner membrane","na":6,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"]],"b":[["GO%3A0036012","cyanelle inner membrane"]]},{"id":"GO:0038203","l":"TORC2 signaling","na":1,"nb":6,"a":[["other/torc2_complex.html","TORC2 complex"]],"b":[["ComplexPortal%3ACPX-2269","TORC2 complex"],["ComplexPortal%3ACPX-26513","TORC2 serine/threonine protein kinase complex"],["GO%3A0038203","TORC2 signaling"],["PANTHER%3APTHR13298","CYTOSOLIC REGULATOR PIANISSIMO"],["PANTHER%3APTHR32428","TARGET OF RAPAMYCIN COMPLEX 2 SUBUNIT BIT61-RELATED"],["PANTHER%3APTHR13335","TARGET OF RAPAMYCIN COMPLEX 2 SUBUNIT MAPKAP1"]]},{"id":"GO:0043264","l":"extracellular membraneless organelle","na":1,"nb":6,"a":[["other/cellulosome.html","cellulosome"]],"b":[["GO%3A0043263","cellulosome"],["GO%3A0043264","extracellular membraneless organelle"],["GO%3A0140644","neutrophil extracellular trap"],["GO%3A0055040","periplasmic flagellum"],["GO%3A0055039","trichocyst"],["GO%3A0085026","tubovesicular membrane network"]]},{"id":"GO:0070111","l":"organellar chromatophore","na":6,"nb":1,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_inner_membrane.html","organellar chromatophore inner membrane"],["membrane_organelle/organellar_chromatophore_intermembrane_space.html","organellar chromatophore intermembrane space"],["membrane_organelle/organellar_chromatophore_membrane.html","organellar chromatophore membrane"],["membrane_organelle/organellar_chromatophore_outer_membrane.html","organellar chromatophore outer membrane"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"]],"b":[["GO%3A0070111","organellar chromatophore"]]},{"id":"GO:0070118","l":"organellar chromatophore thylakoid membrane","na":6,"nb":1,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_membrane.html","organellar chromatophore membrane"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"],["membrane_organelle/organellar_chromatophore_thylakoid_lumen.html","organellar chromatophore thylakoid lumen"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"],["membrane_organelle/plastid_thylakoid_membrane.html","plastid thylakoid membrane"]],"b":[["GO%3A0070118","organellar chromatophore thylakoid membrane"]]},{"id":"NCBITaxon:5141","l":"Neurospora crassa","na":6,"nb":1,"a":[["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysomal_membrane.html","glyoxysomal membrane"],["membrane_organelle/glyoxysome.html","glyoxysome"],["membrane_organelle/woronin_body.html","Woronin body"],["other/polarisome.html","polarisome"],["other/spitzenkorper.html","spitzenkorper"]],"b":[["TED%3AAF-A0A0B0E1R4-F1-model_v4_TED01","TED novel fold AF-A0A0B0E1R4-F1-model_v4_TED01"]]},{"id":"UniProt:P02968","l":"","na":1,"nb":6,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["NCBIfam%3ANF009446","flagellin Hag"],["InterPro%3AIPR046358","Flagellin, C-terminal domain"],["InterPro%3AIPR001029","Flagellin, N-terminal domain"],["Pfam%3APF00700","Bacterial flagellin C-terminal helical region"],["Pfam%3APF00669","Bacterial flagellin N-terminal helical region"],["CATH%3A1.20.1330.10","f41 fragment of flagellin, N-terminal domain"]]},{"id":"UniProt:P0A7M2","l":"Large ribosomal subunit protein bL28","na":1,"nb":6,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00009","50S ribosomal protein L28"],["Pfam%3APF00830","Ribosomal L28 family"],["InterPro%3AIPR034704","Large ribosomal subunit protein bL28/bL31-like superfamily"],["InterPro%3AIPR037147","Large ribosomal subunit protein bL28 superfamily"],["CATH%3A2.30.170.40","Ribosomal protein L28/L24"]]},{"id":"UniProt:P0A7P5","l":"Large ribosomal subunit protein bL34","na":1,"nb":6,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01030","50S ribosomal protein L34"],["InterPro%3AIPR020939","Large ribosomal subunit protein bL34, conserved site"],["Pfam%3APF00468","Ribosomal protein L34"],["PROSITE%3APS00784","Ribosomal protein L34 signature"],["CATH%3A1.10.287.3980","CATH homologous superfamily 1.10.287.3980"]]},{"id":"UniProt:P0ADZ0","l":"Large ribosomal subunit protein uL23","na":1,"nb":6,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ANF004358","50S ribosomal protein L23"],["NCBIfam%3ANF004359","50S ribosomal protein L23"],["NCBIfam%3ANF004363","50S ribosomal protein L23"],["InterPro%3AIPR001014","Large ribosomal subunit protein uL23, conserved site"],["PROSITE%3APS00050","Ribosomal protein L23 signature"]]},{"id":"UniProt:P0AG48","l":"Large ribosomal subunit protein bL21","na":1,"nb":6,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00061","50S ribosomal protein L21"],["InterPro%3AIPR018258","Large ribosomal subunit protein bL21, conserved site"],["Pfam%3APF00829","Ribosomal prokaryotic L21 protein"],["InterPro%3AIPR036164","Large ribosomal subunit protein bL21-like superfamily"],["PROSITE%3APS01169","Ribosomal protein L21 signature"]]},{"id":"UniProt:P0AG59","l":"Small ribosomal subunit protein uS14","na":1,"nb":6,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ANF006477","30S ribosomal protein S14"],["InterPro%3AIPR018271","Small ribosomal subunit protein uS14, conserved site"],["Pfam%3APF00253","Ribosomal protein S14p/S29e"],["PROSITE%3APS00527","Ribosomal protein S14 signature"],["CATH%3A1.10.287.1480","CATH homologous superfamily 1.10.287.1480"]]},{"id":"UniProt:P24500","l":"","na":1,"nb":6,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0030694","bacterial-type flagellum basal body, rod"],["NCBIfam%3ATIGR01396","flagellar basal body rod protein FlgB"],["InterPro%3AIPR019776","Flagellar basal body rod protein, conserved site"],["InterPro%3AIPR001444","Flagellar basal body rod protein, N-terminal"],["Pfam%3APF00460","Flagella basal body rod protein"],["PROSITE%3APS00588","Flagella basal body rod proteins signature"]]},{"id":"UniProt:P35528","l":"","na":1,"nb":6,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0009425","bacterial-type flagellum basal body"],["NCBIfam%3ANF009438","EscR/YscR/HrcR family type III secretion system export apparatus protein"],["NCBIfam%3ATIGR01103","flagellar type III secretion system pore protein FliP"],["Pfam%3APF00813","FliP family"],["PROSITE%3APS01060","Flagella transport protein fliP family signature 1"],["PROSITE%3APS01061","Flagella transport protein fliP family signature 2"]]},{"id":"UniProt:P69776","l":"","na":1,"nb":6,"a":[["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"]],"b":[["GO%3A0043580","periplasmic space organization"],["NCBIfam%3ANF040598","Lpp/OprI family alanine-zipper lipoprotein"],["NCBIfam%3ANF011925","major outer membrane lipoprotein"],["proteintraitsmech%3AMEROPS_CLEAVAGE_A08_001","signal peptidase II cleavage specificity"],["InterPro%3AIPR006817","Lipoprotein leucine-zipper"],["Pfam%3APF04728","Lipoprotein leucine-zipper"]]},{"id":"DOI:10.1016/j.cell.2018.10.009","l":"","na":1,"nb":5,"a":[["other/emc_complex.html","EMC complex"]],"b":[["InterPro%3AIPR058545","EMC1, first beta-propeller domain"],["InterPro%3AIPR011678","ER membrane protein complex subunit 1, C-terminal"],["InterPro%3AIPR019008","ER membrane protein complex subunit 7, beta-sandwich domain"],["NCBIfam%3ANF051548","EMC1 N-terminal beta-propeller domain"],["NCBIfam%3ANF020983","beta-sandwich domain-containing protein"]]},{"id":"DOI:10.1016/j.molcel.2023.08.025","l":"","na":1,"nb":5,"a":[["other/nuclear_pore_linkers.html","nuclear pore linkers"]],"b":[["InterPro%3AIPR056542","Nucleoporin POM152, first Ig-like domain"],["InterPro%3AIPR056541","Nucleoporin POM152, Ig-like domain"],["InterPro%3AIPR056544","Nucleoporin POM152, immunoglobulin-like domain"],["InterPro%3AIPR056540","Nucleoporin POM152, N-terminal transmembrane domain"],["InterPro%3AIPR056543","Nucleoporin POM152, ninth Ig-like domain"]]},{"id":"DOI:10.1016/s0092-8674(00)80432-8","l":"","na":1,"nb":5,"a":[["ribonucleoprotein/exosome_rnase_complex.html","exosome (RNase complex)"]],"b":[["InterPro%3AIPR001247","Exoribonuclease, phosphorolytic domain 1"],["InterPro%3AIPR015847","Exoribonuclease, phosphorolytic domain 2"],["NCBIfam%3ANF013318","3' exoribonuclease family, domain 1"],["NCBIfam%3ANF015670","3' exoribonuclease family, domain 2"],["InterPro%3AIPR036345","Exoribonuclease, PH domain 2 superfamily"]]},{"id":"DOI:10.1038/ncomms12454","l":"","na":5,"nb":1,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"]],"b":[["NCBIfam%3ANF014138","bacteriochlorophyll c-binding family protein"]]},{"id":"DOI:10.1038/s41586-024-07041-8","l":"","na":1,"nb":5,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["NCBIfam%3ANF052287","AOC03_06830 family ribosome hibernation factor"],["NCBIfam%3ANF052288","MSMEG_1130 family ribosome hibernation factor"],["NCBIfam%3ANF052289","Rv2629 family ribosome hibernation factor"],["InterPro%3AIPR041289","Ribosome hibernation factor Balon, middle domain"],["InterPro%3AIPR040701","Ribosome hibernation factor Rv2629-like, middle domain"]]},{"id":"DOI:10.1074/mcp.M110.006478","l":"","na":1,"nb":5,"a":[["other/seh1_associated_complex.html","Seh1-associated complex"]],"b":[["InterPro%3AIPR057068","IML1, N-terminal domain, fungi"],["InterPro%3AIPR063086","IML1, small domain"],["InterPro%3AIPR049092","MIOS-like, alpha-solenoid domain"],["InterPro%3AIPR048255","Vacuolar membrane-associated protein Iml1, N-terminal domain"],["NCBIfam%3ANF023678","vacuolar membrane-associated protein Iml1 domain-containing protein"]]},{"id":"DOI:10.1083/jcb.200202016","l":"","na":1,"nb":5,"a":[["other/cog_complex.html","COG complex"]],"b":[["InterPro%3AIPR024603","COG complex component, COG2, C-terminal"],["InterPro%3AIPR048368","Conserved oligomeric complex COG6, N-terminal"],["InterPro%3AIPR024602","Conserved oligomeric Golgi complex, subunit 2, N-terminal"],["InterPro%3AIPR048369","Conserved Oligomeric Golgi complex subunit 6, C-terminal"],["NCBIfam%3ANF023447","COG complex component COG2 domain-containing protein"]]},{"id":"DOI:10.1093/emboj/17.9.2494","l":"","na":1,"nb":5,"a":[["other/trappi_protein_complex.html","TRAPPI protein complex"]],"b":[["InterPro%3AIPR055425","Trafficking protein particle complex II-specific subunit 65, IgD1"],["InterPro%3AIPR055426","Trafficking protein particle complex II-specific subunit 65, IgD2"],["InterPro%3AIPR055420","Trafficking protein particle complex II-specific subunit 65, IgD3"],["InterPro%3AIPR022233","TRAPPC10/Trs130, C-terminal"],["InterPro%3AIPR024096","NO signalling/Golgi transport ligand-binding domain superfamily"]]},{"id":"DOI:10.15252/embj.201488566","l":"","na":1,"nb":5,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]],"b":[["NCBIfam%3ANF058680","encapsulin nanocompartment cargo ferric reductase EncD"],["NCBIfam%3ANF058679","encapsulin nanocompartment ferritin-likeEncB family encapsulin nanocompartment ferritin-like cargo protein cargo protein"],["NCBIfam%3ANF041155","family 1 encapsulin nanocompartment shell protein"],["NCBIfam%3ANF041162","family 2A encapsulin nanocompartment shell protein"],["NCBIfam%3ANF041163","family 2B encapsulin nanocompartment shell protein"]]},{"id":"GO:0009420","l":"bacterial-type flagellum filament","na":5,"nb":1,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["GO%3A0009420","bacterial-type flagellum filament"]]},{"id":"GO:0009843","l":"cyanelle thylakoid","na":5,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/cyanelle_thylakoid_lumen.html","cyanelle thylakoid lumen"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"]],"b":[["GO%3A0009843","cyanelle thylakoid"]]},{"id":"GO:0020008","l":"rhoptry","na":5,"nb":1,"a":[["membrane_organelle/rhoptry.html","rhoptry"],["membrane_organelle/rhoptry_lumen.html","rhoptry lumen"],["membrane_organelle/rhoptry_membrane.html","rhoptry membrane"],["membrane_organelle/rhoptry_neck.html","rhoptry neck"],["other/apical_complex.html","apical complex"]],"b":[["GO%3A0020008","rhoptry"]]},{"id":"GO:0030075","l":"bacterial thylakoid","na":5,"nb":1,"a":[["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_lumen.html","plasma membrane-derived thylakoid lumen"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"]],"b":[["GO%3A0030075","bacterial thylakoid"]]},{"id":"GO:0030904","l":"retromer complex","na":1,"nb":5,"a":[["other/retromer_complex.html","retromer complex"]],"b":[["ComplexPortal%3ACPX-1653","Retromer complex"],["ComplexPortal%3ACPX-2610","Retromer complex"],["ComplexPortal%3ACPX-26687","Retromer complex"],["GO%3A0030904","retromer complex"],["InterPro%3AIPR037918","SNX2, PX domain"]]},{"id":"GO:0031207","l":"Sec62/Sec63 complex","na":1,"nb":5,"a":[["other/sec62_sec63_complex.html","Sec62/Sec63 complex"]],"b":[["ComplexPortal%3ACPX-26617","SEC62-SEC63 complex"],["ComplexPortal%3ACPX-26618","SEC62-SEC63 complex"],["ComplexPortal%3ACPX-3056","SEC62-SEC63 complex"],["GO%3A0031207","Sec62/Sec63 complex"],["Pfam%3APF09802","Preprotein translocase subunit Sec66"]]},{"id":"GO:0031522","l":"cell envelope Sec protein transport complex","na":1,"nb":5,"a":[["secretion_system/secyeg_translocon_complex.html","SecYEG translocon complex"]],"b":[["ComplexPortal%3ACPX-1095","Holo-translocon SecYEG-SecDF-YajC-YidC complex"],["ComplexPortal%3ACPX-1096","Protein-conducting channel SecYEG complex"],["GO%3A0031522","cell envelope Sec protein transport complex"],["NCBIfam%3ATIGR01129","protein translocase subunit SecD"],["NCBIfam%3ATIGR00966","protein translocase subunit SecF"]]},{"id":"GO:0031676","l":"plasma membrane-derived thylakoid membrane","na":5,"nb":1,"a":[["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_lumen.html","plasma membrane-derived thylakoid lumen"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"]],"b":[["GO%3A0031676","plasma membrane-derived thylakoid membrane"]]},{"id":"GO:0033114","l":"cyanelle thylakoid lumen","na":5,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/cyanelle_thylakoid_lumen.html","cyanelle thylakoid lumen"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"]],"b":[["GO%3A0033114","cyanelle thylakoid lumen"]]},{"id":"GO:0033263","l":"CORVET complex","na":1,"nb":5,"a":[["other/corvet_complex.html","CORVET complex"]],"b":[["ComplexPortal%3ACPX-1137","CORVET tethering complex"],["ComplexPortal%3ACPX-1626","CORVET tethering complex"],["ComplexPortal%3ACPX-6213","CORVET tethering complex"],["ComplexPortal%3ACPX-8877","CORVET tethering complex"],["GO%3A0033263","CORVET complex"]]},{"id":"GO:0034982","l":"mitochondrial protein processing","na":1,"nb":5,"a":[["other/mitochondrial_inner_membrane_peptidase_complex.html","mitochondrial inner membrane peptidase complex"]],"b":[["ComplexPortal%3ACPX-10319","m-AAA protease complex, AFG3L2-SPG7 variant"],["ComplexPortal%3ACPX-10318","m-AAA protease complex, AFG3L2 variant"],["GO%3A0034982","mitochondrial protein processing"],["PANTHER%3APTHR21711","MITOCHONDRIAL INNER MEMBRANE PROTEASE"],["PANTHER%3APTHR46041","MITOCHONDRIAL INNER MEMBRANE PROTEASE SUBUNIT 2"]]},{"id":"GO:0035632","l":"mitochondrial prohibitin complex","na":1,"nb":5,"a":[["other/mitochondrial_prohibitin_complex.html","mitochondrial prohibitin complex"]],"b":[["ComplexPortal%3ACPX-1703","Prohibitin complex"],["ComplexPortal%3ACPX-4114","Prohibitin complex"],["ComplexPortal%3ACPX-5741","Prohibitin complex"],["ComplexPortal%3ACPX-5743","Prohibitin complex"],["GO%3A0035632","mitochondrial prohibitin complex"]]},{"id":"GO:0036013","l":"cyanelle outer membrane","na":5,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"]],"b":[["GO%3A0036013","cyanelle outer membrane"]]},{"id":"GO:0036014","l":"cyanelle intermembrane space","na":5,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"]],"b":[["GO%3A0036014","cyanelle intermembrane space"]]},{"id":"GO:0043291","l":"RAVE complex","na":1,"nb":5,"a":[["other/rave_complex.html","RAVE complex"]],"b":[["ComplexPortal%3ACPX-1627","RAVE complex"],["ComplexPortal%3ACPX-25781","RAVE complex"],["ComplexPortal%3ACPX-10301","RAVE complex, DMXL1 variant"],["ComplexPortal%3ACPX-10303","RAVE complex, DMXL2 variant"],["GO%3A0043291","RAVE complex"]]},{"id":"GO:0043591","l":"endospore external encapsulating structure","na":5,"nb":1,"a":[["spore/endospore_coat.html","endospore coat"],["spore/endospore_cortex.html","endospore cortex"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"],["spore/microsporidian_type_endospore.html","microsporidian-type endospore"],["spore/outer_endospore_membrane.html","outer endospore membrane"]],"b":[["GO%3A0043591","endospore external encapsulating structure"]]},{"id":"GO:0043684","l":"type IV secretion system complex","na":1,"nb":5,"a":[["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]],"b":[["GO%3A0043684","type IV secretion system complex"],["NCBIfam%3ANF049884","Dot/Icm T4SS effector Ceg23"],["NCBIfam%3ATIGR02788","P-type DNA transfer ATPase VirB11"],["NCBIfam%3ATIGR02791","P-type DNA transfer protein VirB5"],["NCBIfam%3ANF047983","T4SS effector phosphatidylinositol 3-Kinase RisK1"]]},{"id":"GO:0046336","l":"ethanolamine catabolic process","na":1,"nb":5,"a":[["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"]],"b":[["ComplexPortal%3ACPX-2313","Ethanolamine ammonia-lyase complex"],["GO%3A0046336","ethanolamine catabolic process"],["NCBIfam%3ATIGR04502","ethanolamine utilization microcompartment protein EutL"],["NCBIfam%3ATIGR02526","ethanolamine utilization microcompartment shell protein"],["NCBIfam%3ATIGR02528","EutP/PduV family microcompartment system protein"]]},{"id":"GO:0050215","l":"propanediol dehydratase activity","na":1,"nb":5,"a":[["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]],"b":[["EC%3A4.2.1.28","propanediol dehydratase"],["RHEA%3A14569","propane-1,2-diol = propanal + H2O"],["GO%3A0050215","propanediol dehydratase activity"],["MCSA%3A494","propanediol dehydratase"],["proteintraitsmech%3ABIOLIP_FWK","FWK-binding site"]]},{"id":"GO:0071256","l":"translocon complex","na":1,"nb":5,"a":[["other/ssh1_translocon_complex.html","Ssh1 translocon complex"]],"b":[["ComplexPortal%3ACPX-8024","Translocon-associated protein complex"],["ComplexPortal%3ACPX-3055","Translocon complex"],["GO%3A0005784","Sec61 translocon complex"],["GO%3A0071261","Ssh1 translocon complex"],["GO%3A0071256","translocon complex"]]},{"id":"GO:0097593","l":"ventral disc microtubule array","na":5,"nb":1,"a":[["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_dorsal_microribbon.html","ventral disc dorsal microribbon"],["cytoskeleton/ventral_disc_microtubule_array.html","ventral disc microtubule array"],["cytoskeleton/ventral_disc_overlap_zone.html","ventral disc overlap zone"],["cytoskeleton/ventral_disc_supernumerary_microtubule_array.html","ventral disc supernumerary microtubule array"]],"b":[["GO%3A0097593","ventral disc microtubule array"]]},{"id":"InterPro:IPR000090","l":"","na":1,"nb":5,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]],"b":[["Pfam%3APF01706","FliG C-terminal domain"],["PANTHER%3APTHR30534","FLAGELLAR MOTOR SWITCH PROTEIN FLIG"],["Pfam%3APF14841","FliG middle domain"],["Pfam%3APF14842","FliG N-terminal domain"],["PRINTS%3APR00954","Flagellar motor switch protein FliG signature"]]},{"id":"UniProt:I6WZG6","l":"","na":1,"nb":5,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]],"b":[["IEDB%3A197918","epitope AARTFKRHIAGRRVV"],["IEDB%3A213387","epitope KPLVRLRVPFTLSRN"],["IEDB%3A218534","epitope RTIFEGYSAASIEGI"],["IEDB%3A219874","epitope TEAAWAEIELEAART"],["Pfam%3APF04454","Encapsulating protein for peroxidase"]]},{"id":"UniProt:I6Y4U9","l":"","na":1,"nb":5,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]],"b":[["IEDB%3A200082","epitope AGSCYVHVQKYVHDM"],["IEDB%3A203626","epitope AVTGGLFFSPTIDFL"],["IEDB%3A205003","epitope DGTERKIVRHNMPFG"],["IEDB%3A211489","epitope HGFRFFDNRDLLGFV"],["IEDB%3A212746","epitope IVRHNMPFGEVGKGE"]]},{"id":"UniProt:P02413","l":"Large ribosomal subunit protein uL15","na":1,"nb":5,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01071","50S ribosomal protein L15"],["InterPro%3AIPR001196","Large ribosomal subunit protein uL15, conserved site"],["Pfam%3APF00828","Ribosomal proteins 50S-L15, 50S-L18e, 60S-L27A"],["PROSITE%3APS00475","Ribosomal protein L15 signature"]]},{"id":"UniProt:P0A7Q6","l":"Large ribosomal subunit protein bL36A","na":1,"nb":5,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01022","50S ribosomal protein L36"],["Pfam%3APF00444","Ribosomal protein L36"],["InterPro%3AIPR035977","Large ribosomal subunit protein bL36 superfamily"],["PROSITE%3APS00828","Ribosomal protein L36 signature"]]},{"id":"UniProt:P0A7X3","l":"Small ribosomal subunit protein uS9","na":1,"nb":5,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ANF001099","30S ribosomal protein S9"],["InterPro%3AIPR020574","Small ribosomal subunit protein uS9, conserved site"],["Pfam%3APF00380","Ribosomal protein S9/S16"],["PROSITE%3APS00360","Ribosomal protein S9 signature"]]},{"id":"UniProt:P24501","l":"","na":1,"nb":5,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0030694","bacterial-type flagellum basal body, rod"],["NCBIfam%3ATIGR01395","flagellar basal body rod protein FlgC"],["InterPro%3AIPR019776","Flagellar basal body rod protein, conserved site"],["InterPro%3AIPR010930","Flagellar basal-body/hook protein, C-terminal domain"],["InterPro%3AIPR001444","Flagellar basal body rod protein, N-terminal"]]},{"id":"UniProt:P35538","l":"","na":1,"nb":5,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["NCBIfam%3ATIGR00328","flagellar biosynthesis protein FlhB"],["Pfam%3APF01312","FlhB HrpN YscU SpaS Family"],["InterPro%3AIPR029025","Type III secretion system substrate exporter, C-terminal"],["CATH%3A6.10.250.2080","CATH homologous superfamily 6.10.250.2080"],["CATH%3A3.40.1690.10","secretion proteins EscU"]]},{"id":"UniProt:P39063","l":"","na":1,"nb":5,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["NCBIfam%3ANF005383","flagellar motor protein MotP"],["InterPro%3AIPR000540","Flagellar motor protein MotA, conserved site"],["InterPro%3AIPR002898","MotA/TolQ/ExbB proton channel"],["Pfam%3APF01618","MotA/TolQ/ExbB proton channel family"],["PROSITE%3APS01307","Flagellar motor protein motA family signature"]]},{"id":"UniProt:P60438","l":"Large ribosomal subunit protein uL3","na":1,"nb":5,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR03625","50S ribosomal protein L3"],["InterPro%3AIPR019926","Large ribosomal subunit protein uL3, conserved site"],["Pfam%3APF00297","Ribosomal protein L3"],["CATH%3A3.30.160.810","CATH homologous superfamily 3.30.160.810"]]},{"id":"DOI:10.1038/nature14667","l":"","na":1,"nb":4,"a":[["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"]],"b":[["InterPro%3AIPR009612","IcmF-related"],["InterPro%3AIPR048677","Type VI secretion system component TssM1, helical domain"],["InterPro%3AIPR025743","Type VI secretion system component TssM1, N-terminal domain"],["NCBIfam%3ANF045283","Type VI secretion protein IcmF helical domain"]]},{"id":"DOI:10.1038/nrmicro.2017.40","l":"","na":4,"nb":1,"a":[["appendage/p_pilus.html","P pilus"],["appendage/pilus.html","pilus"],["appendage/type_i_pilus.html","type I pilus"],["appendage/type_iv_pilus.html","type IV pilus"]],"b":[["NCBIfam%3ANF007470","curli major subunit CsgA"]]},{"id":"DOI:10.1038/s41586-018-0693-y","l":"","na":1,"nb":4,"a":[["secretion_system/type_ix_protein_secretion_system_complex.html","type IX protein secretion system complex"]],"b":[["InterPro%3AIPR031345","Type 9 secretion system plug protein, N-terminal domain"],["InterPro%3AIPR045741","Type IX secretion system protein PorV"],["NCBIfam%3ANF040321","Type IX secretion system protein PorV"],["NCBIfam%3ANF028426","type IX secretion system plug protein domain-containing protein"]]},{"id":"DOI:10.1038/sj.embor.7400833","l":"","na":1,"nb":4,"a":[["appendage/p_pilus.html","P pilus"]],"b":[["InterPro%3AIPR018046","Pili assembly chaperone, conserved site"],["InterPro%3AIPR016148","Pili assembly chaperone, C-terminal"],["InterPro%3AIPR016147","Pili assembly chaperone, N-terminal"],["InterPro%3AIPR036316","Pili assembly chaperone, C-terminal domain superfamily"]]},{"id":"DOI:10.1073/pnas.2309984121","l":"","na":1,"nb":4,"a":[["cytoskeleton/crescentin_filament.html","crescentin filament"]],"b":[["InterPro%3AIPR043652","Crescentin, coiled-coil domain"],["InterPro%3AIPR057274","Crescentin, N-terminal domain"],["NCBIfam%3ANF051659","Crescentin, N-terminal segment"],["NCBIfam%3ANF039892","Crescentin, rod domain"]]},{"id":"DOI:10.1091/mbc.11.7.2445","l":"","na":4,"nb":1,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"],["membrane_organelle/nucleus.html","nucleus"],["membrane_organelle/vacuolar_membrane.html","vacuolar membrane"]],"b":[["InterPro%3AIPR063276","VAB2, coiled coil domain"]]},{"id":"DOI:10.1126/science.1067484","l":"","na":1,"nb":4,"a":[["appendage/curli.html","curli"]],"b":[["NCBIfam%3ANF022082","curli assembly protein CsgF"],["NCBIfam%3ANF007701","curli production assembly/transport protein CsgE"],["NCBIfam%3ANF007469","curli production assembly/transport protein CsgF"],["NCBIfam%3ANF022094","CsgE family curli-type amyloid fiber assembly protein"]]},{"id":"DOI:10.1128/JB.00112-19","l":"","na":1,"nb":4,"a":[["other/holdfast.html","holdfast"]],"b":[["NCBIfam%3ANF037936","holdfast anchor protein HfaD"],["NCBIfam%3ANF037934","holdfast anchoring protein HfaA"],["NCBIfam%3ANF037935","holdfast anchoring protein HfaB"],["InterPro%3AIPR060143","HfaA domain"]]},{"id":"GO:0000328","l":"fungal-type vacuole lumen","na":4,"nb":1,"a":[["membrane_organelle/fungal_type_vacuole.html","fungal-type vacuole"],["membrane_organelle/fungal_type_vacuole_lumen.html","fungal-type vacuole lumen"],["membrane_organelle/fungal_type_vacuole_membrane.html","fungal-type vacuole membrane"],["membrane_organelle/vacuole.html","vacuole"]],"b":[["GO%3A0000328","fungal-type vacuole lumen"]]},{"id":"GO:0005641","l":"nuclear envelope lumen","na":4,"nb":1,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nuclear_envelope_lumen.html","nuclear envelope lumen"],["membrane_organelle/nuclear_inner_membrane.html","nuclear inner membrane"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"]],"b":[["GO%3A0005641","nuclear envelope lumen"]]},{"id":"GO:0005832","l":"chaperonin-containing T-complex","na":1,"nb":4,"a":[["other/chaperonin_containing_t_complex.html","chaperonin-containing T-complex"]],"b":[["ComplexPortal%3ACPX-2156","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-2772","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-6030","Chaperonin-containing T-complex"],["GO%3A0005832","chaperonin-containing T-complex"]]},{"id":"GO:0005933","l":"cellular bud","na":4,"nb":1,"a":[["envelope/cellular_bud_membrane.html","cellular bud membrane"],["other/cellular_bud.html","cellular bud"],["other/cellular_bud_neck.html","cellular bud neck"],["other/cellular_bud_tip.html","cellular bud tip"]],"b":[["GO%3A0005933","cellular bud"]]},{"id":"GO:0009543","l":"chloroplast thylakoid lumen","na":4,"nb":1,"a":[["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"],["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"],["membrane_organelle/chloroplast_thylakoid_lumen.html","chloroplast thylakoid lumen"],["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"]],"b":[["GO%3A0009543","chloroplast thylakoid lumen"]]},{"id":"GO:0009842","l":"cyanelle","na":4,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"]],"b":[["GO%3A0009842","cyanelle"]]},{"id":"GO:0010006","l":"Toc complex","na":4,"nb":1,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["other/tic_complex.html","Tic complex"],["other/toc_complex.html","Toc complex"]],"b":[["GO%3A0010006","Toc complex"]]},{"id":"GO:0020009","l":"microneme","na":4,"nb":1,"a":[["membrane_organelle/microneme.html","microneme"],["membrane_organelle/microneme_lumen.html","microneme lumen"],["membrane_organelle/microneme_membrane.html","microneme membrane"],["other/apical_complex.html","apical complex"]],"b":[["GO%3A0020009","microneme"]]},{"id":"GO:0030094","l":"plasma membrane-derived photosystem I","na":4,"nb":1,"a":[["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["GO%3A0030094","plasma membrane-derived photosystem I"]]},{"id":"GO:0030115","l":"S-layer","na":1,"nb":4,"a":[["envelope/s_layer.html","S-layer"]],"b":[["GO%3A0030115","S-layer"],["NCBIfam%3ANF041335","ArtA-dependent S-layer glycoprotein"],["NCBIfam%3ANF053619","BT1927 family outer membrane S-layer protein"],["NCBIfam%3ANF041073","S-layer protein SlaA"]]},{"id":"GO:0030906","l":"retromer, cargo-selective complex","na":1,"nb":4,"a":[["other/retromer_complex.html","retromer complex"]],"b":[["ComplexPortal%3ACPX-7842","Retromer complex, VPS26A variant"],["ComplexPortal%3ACPX-7843","Retromer complex, VPS26B variant"],["GO%3A0030906","retromer, cargo-selective complex"],["Pfam%3APF03635","Vacuolar protein sorting-associated protein 35"]]},{"id":"GO:0031429","l":"box H/ACA snoRNP complex","na":1,"nb":4,"a":[["other/nucleolus.html","nucleolus"]],"b":[["ComplexPortal%3ACPX-26592","Box H/ACA ribonucleoprotein complex"],["ComplexPortal%3ACPX-2675","Box H/ACA ribonucleoprotein complex"],["ComplexPortal%3ACPX-737","Box H/ACA ribonucleoprotein complex"],["GO%3A0031429","box H/ACA snoRNP complex"]]},{"id":"GO:0031897","l":"Tic complex","na":4,"nb":1,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["other/tic_complex.html","Tic complex"],["other/toc_complex.html","Toc complex"]],"b":[["GO%3A0031897","Tic complex"]]},{"id":"GO:0031972","l":"chloroplast intermembrane space","na":4,"nb":1,"a":[["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_inner_membrane.html","chloroplast inner membrane"],["membrane_organelle/chloroplast_intermembrane_space.html","chloroplast intermembrane space"],["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"]],"b":[["GO%3A0031972","chloroplast intermembrane space"]]},{"id":"GO:0031977","l":"thylakoid lumen","na":1,"nb":4,"a":[["membrane_organelle/plastid_thylakoid_lumen.html","plastid thylakoid lumen"]],"b":[["GO%3A0070117","organellar chromatophore thylakoid lumen"],["GO%3A0031979","plasma membrane-derived thylakoid lumen"],["GO%3A0031978","plastid thylakoid lumen"],["GO%3A0031977","thylakoid lumen"]]},{"id":"GO:0032865","l":"ERMES complex","na":1,"nb":4,"a":[["other/ermes_complex.html","ERMES complex"]],"b":[["ComplexPortal%3ACPX-3196","ERMES complex"],["GO%3A0032865","ERMES complex"],["Pfam%3APF26544","Mitochondrial distribution and morphology protein 12"],["Pfam%3APF12519","Mitochondrial distribution and morphology protein 10"]]},{"id":"GO:0033962","l":"P-body assembly","na":1,"nb":4,"a":[["ribonucleoprotein/p_body.html","P-body"]],"b":[["GO%3A0033962","P-body assembly"],["PANTHER%3APTHR13612","ENHANCER OF MRNA-DECAPPING PROTEIN 3"],["PANTHER%3APTHR21551","TOPOISOMERASE II-ASSOCIATED PROTEIN PAT1"],["PANTHER%3APTHR13110","U6 SNRNA-ASSOCIATED SM-LIKE PROTEIN LSM3"]]},{"id":"GO:0034060","l":"cyanelle stroma","na":4,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"]],"b":[["GO%3A0034060","cyanelle stroma"]]},{"id":"GO:0042720","l":"mitochondrial inner membrane peptidase complex","na":1,"nb":4,"a":[["other/mitochondrial_inner_membrane_peptidase_complex.html","mitochondrial inner membrane peptidase complex"]],"b":[["ComplexPortal%3ACPX-1892","Mitochondrial inner membrane peptidase complex"],["ComplexPortal%3ACPX-6244","Mitochondrial inner membrane peptidase complex"],["GO%3A0042720","mitochondrial inner membrane peptidase complex"],["Pfam%3APF11093","Mitochondrial export protein Som1"]]},{"id":"GO:0042721","l":"TIM22 mitochondrial import inner membrane insertion complex","na":1,"nb":4,"a":[["other/tim22_mitochondrial_import_inner_membrane_insertion_complex.html","TIM22 mitochondrial import inner membrane insertion complex"]],"b":[["ComplexPortal%3ACPX-1629","TIM22 mitochondrial inner membrane twin-pore carrier translocase complex"],["ComplexPortal%3ACPX-6124","TIM22 mitochondrial inner membrane twin-pore carrier translocase complex"],["GO%3A0042721","TIM22 mitochondrial import inner membrane insertion complex"],["Pfam%3APF10171","Translocase of the Inner Mitochondrial membrane 29"]]},{"id":"GO:0043107","l":"type IV pilus-dependent motility","na":1,"nb":4,"a":[["appendage/type_iv_pilus.html","type IV pilus"]],"b":[["GO%3A0043107","type IV pilus-dependent motility"],["NCBIfam%3ATIGR01420","PilT/PilU family type 4a pilus ATPase"],["NCBIfam%3ANF016253","type 4a pilus biogenesis protein PilO"],["Pfam%3APF04350","Type IVa pilus alignment subcomplex PilO C-terminal domain"]]},{"id":"GO:0043595","l":"endospore cortex","na":4,"nb":1,"a":[["spore/endospore_coat.html","endospore coat"],["spore/endospore_cortex.html","endospore cortex"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"],["spore/outer_endospore_membrane.html","outer endospore membrane"]],"b":[["GO%3A0043595","endospore cortex"]]},{"id":"GO:0044099","l":"polar tube","na":4,"nb":1,"a":[["membrane_organelle/microsporidian_posterior_vacuole.html","microsporidian posterior vacuole"],["membrane_organelle/polaroplast.html","polaroplast"],["spore/polar_tube.html","polar tube"],["spore/polar_tube_anchoring_disc.html","polar tube anchoring disc"]],"b":[["GO%3A0044099","polar tube"]]},{"id":"GO:0044853","l":"plasma membrane raft","na":1,"nb":4,"a":[["envelope/eisosome_membrane_domain_mcc.html","eisosome membrane domain/MCC"]],"b":[["GO%3A0005901","caveola"],["GO%3A0090512","eisosome membrane domain/MCC"],["GO%3A0044853","plasma membrane raft"],["PANTHER%3APTHR16529","CD177 ANTIGEN"]]},{"id":"GO:0060285","l":"cilium-dependent cell motility","na":1,"nb":4,"a":[["appendage/cilium.html","cilium"]],"b":[["GO%3A0060285","cilium-dependent cell motility"],["GO%3A0030317","flagellated sperm motility"],["PANTHER%3APTHR18962","COILED-COIL DOMAIN-CONTAINING PROTEIN 39"],["PANTHER%3APTHR21625","NYD-SP28 PROTEIN"]]},{"id":"GO:0070113","l":"organellar chromatophore inner membrane","na":4,"nb":1,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_inner_membrane.html","organellar chromatophore inner membrane"],["membrane_organelle/organellar_chromatophore_intermembrane_space.html","organellar chromatophore intermembrane space"],["membrane_organelle/organellar_chromatophore_membrane.html","organellar chromatophore membrane"]],"b":[["GO%3A0070113","organellar chromatophore inner membrane"]]},{"id":"GO:0070114","l":"organellar chromatophore outer membrane","na":4,"nb":1,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_intermembrane_space.html","organellar chromatophore intermembrane space"],["membrane_organelle/organellar_chromatophore_membrane.html","organellar chromatophore membrane"],["membrane_organelle/organellar_chromatophore_outer_membrane.html","organellar chromatophore outer membrane"]],"b":[["GO%3A0070114","organellar chromatophore outer membrane"]]},{"id":"GO:0070116","l":"organellar chromatophore thylakoid","na":4,"nb":1,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"],["membrane_organelle/organellar_chromatophore_thylakoid_lumen.html","organellar chromatophore thylakoid lumen"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"]],"b":[["GO%3A0070116","organellar chromatophore thylakoid"]]},{"id":"GO:0070117","l":"organellar chromatophore thylakoid lumen","na":4,"nb":1,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"],["membrane_organelle/organellar_chromatophore_thylakoid_lumen.html","organellar chromatophore thylakoid lumen"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"]],"b":[["GO%3A0070117","organellar chromatophore thylakoid lumen"]]},{"id":"GO:0070939","l":"Dsl1/NZR complex","na":1,"nb":4,"a":[["other/dsl1_nzr_complex.html","Dsl1/NZR complex"]],"b":[["ComplexPortal%3ACPX-1786","Dsl1 tethering complex"],["ComplexPortal%3ACPX-6201","NRZ tethering complex"],["GO%3A0070939","Dsl1/NZR complex"],["Pfam%3APF04437","RINT-1/TIP-1 family"]]},{"id":"GO:0097590","l":"archaeal-type flagellum-dependent cell motility","na":1,"nb":4,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"]],"b":[["GO%3A0097590","archaeal-type flagellum-dependent cell motility"],["NCBIfam%3ANF052589","archaellum protein ArlH"],["NCBIfam%3ANF052590","archaellum stator protein ArlF"],["NCBIfam%3ANF052591","archaellum stator protein ArlG"]]},{"id":"GO:0097594","l":"ventral disc dorsal microribbon","na":4,"nb":1,"a":[["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_crossbridge.html","ventral disc crossbridge"],["cytoskeleton/ventral_disc_dorsal_microribbon.html","ventral disc dorsal microribbon"],["cytoskeleton/ventral_disc_microtubule_array.html","ventral disc microtubule array"]],"b":[["GO%3A0097594","ventral disc dorsal microribbon"]]},{"id":"GO:0120100","l":"bacterial-type flagellum motor","na":4,"nb":1,"a":[["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"],["appendage/periplasmic_flagellum.html","periplasmic flagellum"]],"b":[["GO%3A0120100","bacterial-type flagellum motor"]]},{"id":"InterPro:IPR000527","l":"","na":1,"nb":4,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"]],"b":[["HAMAP%3AMF_00415","Flagellar L-ring protein [flgH]"],["PANTHER%3APTHR34933","FLAGELLAR L-RING PROTEIN"],["Pfam%3APF02107","Flagellar L-ring protein"],["PRINTS%3APR01008","Flagellar L-ring protein signature"]]},{"id":"InterPro:IPR001782","l":"","na":1,"nb":4,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]],"b":[["HAMAP%3AMF_00416","Flagellar P-ring protein [flgI]"],["PANTHER%3APTHR30381","FLAGELLAR P-RING PERIPLASMIC PROTEIN FLGI"],["Pfam%3APF02119","Flagellar P-ring protein"],["PRINTS%3APR01010","Flagellar P-ring protein signature"]]},{"id":"InterPro:IPR005837","l":"","na":1,"nb":4,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF00813","FliP family"],["PRINTS%3APR00951","Flagellar biosynthetic protein FliP signature"],["PROSITE%3APS01060","Flagella transport protein fliP family signature 1"],["PROSITE%3APS01061","Flagella transport protein fliP family signature 2"]]},{"id":"InterPro:IPR040026","l":"","na":1,"nb":4,"a":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"]],"b":[["PANTHER%3APTHR30288","FLAGELLAR CAP/ASSEMBLY PROTEIN FLID"],["Pfam%3APF07195","Flagellar hook-associated protein 2 C-terminus"],["Pfam%3APF02465","Flagellar hook-associated protein 2 N-terminus"],["Pfam%3APF07196","Flagellin hook IN motif"]]},{"id":"NCBITaxon:32053","l":"Thermostichus vulcanus","na":1,"nb":4,"a":[["energy_complex/phycobilisome.html","phycobilisome"]],"b":[["Pfam%3APF14495","Cytochrome c-550 domain"],["Pfam%3APF00283","Cytochrome b559, alpha (gene psbE) and beta (gene psbF)subunits"],["Pfam%3APF00284","Lumenal portion of Cytochrome b559, alpha (gene psbE) subunit"],["PROSITE%3APS00537","Cytochrome b559 subunits heme-binding site signature"]]},{"id":"UniProt:P0A7N4","l":"Large ribosomal subunit protein bL32","na":1,"nb":4,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01031","50S ribosomal protein L32"],["Pfam%3APF01783","Ribosomal L32p protein family"],["InterPro%3AIPR011332","Zinc-binding ribosomal protein"]]},{"id":"UniProt:P0A7V0","l":"Small ribosomal subunit protein uS2","na":1,"nb":4,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR01011","30S ribosomal protein S2"],["CDD%3Acd01425","RPS2"],["CATH%3A1.10.287.610","Helix hairpin bin"]]},{"id":"UniProt:P0ABH4","l":"","na":1,"nb":4,"a":[["division_machinery/elongasome.html","elongasome"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["NCBIfam%3ANF008282","rod shape-determining protein MreD"],["NCBIfam%3ATIGR03426","rod shape-determining protein MreD"],["Pfam%3APF04093","rod shape-determining protein MreD"]]},{"id":"UniProt:P0C2S5","l":"","na":1,"nb":4,"a":[["other/cellulosome.html","cellulosome"]],"b":[["EC%3A3.2.1.176","cellulose 1,4-beta-cellobiosidase (reducing end)"],["Pfam%3APF00404","Dockerin type I domain"],["PROSITE%3APS00448","Clostridium cellulosome enzymes repeated domain signature"],["Pfam%3APF02011","Glycosyl hydrolase family 48"]]},{"id":"UniProt:Q1PX48","l":"","na":1,"nb":4,"a":[["membrane_organelle/anammoxosome.html","anammoxosome"]],"b":[["EC%3A1.7.2.9","hydroxylamine oxidase"],["RHEA%3A45036","hydroxylamine + 3 Fe(III)-[cytochrome c] = nitric oxide + 3 Fe(II)-[cytochrome c] + 3 H(+)"],["Pfam%3APF22142","Hydroxylamine oxidoreductase, C-terminal domain"],["proteintraitsmech%3ABIOLIP_HG1","HG1-binding site"]]},{"id":"DOI:10.1016/j.ijpara.2005.10.005","l":"","na":1,"nb":3,"a":[["spore/microsporidian_type_endospore.html","microsporidian-type endospore"]],"b":[["InterPro%3AIPR062190","Microsporidian spore wall protein EnP1, C-terminal domain"],["InterPro%3AIPR062175","Microsporidian spore wall protein EnP1, N-terminal domain"],["NCBIfam%3ANF056854","Microsporidian spore wall protein EnP1 N-terminal domain"]]},{"id":"DOI:10.1016/j.jmb.2005.07.030","l":"","na":1,"nb":3,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["NCBIfam%3ANF005831","flagellar motor protein MotB"],["NCBIfam%3ANF005383","flagellar motor protein MotP"],["NCBIfam%3ANF005382","flagellar motor protein MotS"]]},{"id":"DOI:10.1016/j.protis.2007.08.005","l":"","na":1,"nb":3,"a":[["cytoskeleton/flagellum_attachment_zone.html","flagellum attachment zone"]],"b":[["InterPro%3AIPR056615","FAZ1, C-terminal region"],["InterPro%3AIPR056614","Flagellar attachment zone protein 1, conserved domain"],["NCBIfam%3ANF049004","FAZ1, C-terminal"]]},{"id":"DOI:10.1038/367654a0","l":"","na":1,"nb":3,"a":[["other/sec61_translocon_complex.html","Sec61 translocon complex"]],"b":[["InterPro%3AIPR030659","SecY conserved site"],["PROSITE%3APDOC00818","Protein secE/sec61-gamma"],["PROSITE%3APDOC00612","Protein secY signature"]]},{"id":"DOI:10.1038/ncomms13425","l":"","na":1,"nb":3,"a":[["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"]],"b":[["InterPro%3AIPR053967","Flagellar hook protein FlgE/F/G-like, D1 domain"],["NCBIfam%3ANF045377","Flagellar hook protein FlgE, D3 domain"],["NCBIfam%3ANF046894","Flagellar hook protein FlgE/F/G D1 domain"]]},{"id":"DOI:10.1038/nsb910","l":"","na":1,"nb":3,"a":[["membrane_organelle/woronin_body.html","Woronin body"]],"b":[["InterPro%3AIPR037318","Hex1, S1 domain"],["InterPro%3AIPR048670","Translation initiation factor 5A-like, N-terminal"],["NCBIfam%3ANF045075","Translation initiation factor 5A-like, N-terminal"]]},{"id":"DOI:10.1091/mbc.11.1.305","l":"","na":1,"nb":3,"a":[["other/garp_complex.html","GARP complex"]],"b":[["InterPro%3AIPR048361","Vps52, C-terminal"],["InterPro%3AIPR007234","Vps53, N-terminal"],["InterPro%3AIPR038260","Vps53, C-terminal domain superfamily"]]},{"id":"DOI:10.1091/mbc.e02-10-0654","l":"","na":1,"nb":3,"a":[["other/garp_complex.html","GARP complex"]],"b":[["InterPro%3AIPR048036","Tlg1p-like, N-terminal domain"],["InterPro%3AIPR048361","Vps52, C-terminal"],["InterPro%3AIPR048319","Vps52, coiled-coil domain"]]},{"id":"DOI:10.1101/cshperspect.a028134","l":"","na":1,"nb":3,"a":[["appendage/ciliary_transition_zone.html","ciliary transition zone"]],"b":[["InterPro%3AIPR011677","Tectonic-1-3 domain"],["InterPro%3AIPR057724","Tectonic-1-3, N-terminal domain"],["NCBIfam%3ANF019391","tectonic domain-containing protein"]]},{"id":"DOI:10.1111/j.1365-2958.2005.04997.x","l":"","na":1,"nb":3,"a":[["appendage/curli.html","curli"]],"b":[["NCBIfam%3ANF007701","curli production assembly/transport protein CsgE"],["NCBIfam%3ANF007469","curli production assembly/transport protein CsgF"],["NCBIfam%3ANF022094","CsgE family curli-type amyloid fiber assembly protein"]]},{"id":"DOI:10.1128/EC.00113-07","l":"","na":1,"nb":3,"a":[["spore/polar_tube_anchoring_disc.html","polar tube anchoring disc"]],"b":[["InterPro%3AIPR062190","Microsporidian spore wall protein EnP1, C-terminal domain"],["InterPro%3AIPR062175","Microsporidian spore wall protein EnP1, N-terminal domain"],["NCBIfam%3ANF056854","Microsporidian spore wall protein EnP1 N-terminal domain"]]},{"id":"DOI:10.1128/JB.184.5.1253-1261.2002","l":"","na":1,"nb":3,"a":[["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]],"b":[["InterPro%3AIPR020808","Bacterial microcompartments protein, conserved site"],["InterPro%3AIPR000249","Bacterial microcompartment domain"],["InterPro%3AIPR037233","CcmK-like superfamily"]]},{"id":"DOI:10.1128/microbiolspec.PSIB-0012-2018","l":"","na":1,"nb":3,"a":[["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]],"b":[["NCBIfam%3ANF038092","DNA type IV secretion system protein ComB10"],["NCBIfam%3ANF010424","type IV secretion system ATPase VirD4"],["NCBIfam%3ANF038091","type IV secretion system protein VirB10"]]},{"id":"DOI:10.1146/annurev.micro.57.030502.091022","l":"","na":1,"nb":3,"a":[["other/cellulosome.html","cellulosome"]],"b":[["InterPro%3AIPR016134","Dockerin domain"],["PROSITE%3APDOC51766","Dockerin"],["InterPro%3AIPR036439","Dockerin domain superfamily"]]},{"id":"GO:0000002","l":"","na":1,"nb":3,"a":[["nucleoid/mitochondrial_nucleoid.html","mitochondrial nucleoid"]],"b":[["PANTHER%3APTHR45829","MITOCHONDRIAL CARRIER PROTEIN RIM2"],["PANTHER%3APTHR32198","MITOCHONDRIAL ESCAPE PROTEIN 2"],["PANTHER%3APTHR31404","MITOCHONDRIAL GENOME MAINTENANCE PROTEIN MGM101"]]},{"id":"GO:0000331","l":"contractile vacuole","na":3,"nb":1,"a":[["membrane_organelle/contractile_vacuolar_membrane.html","contractile vacuolar membrane"],["membrane_organelle/contractile_vacuole.html","contractile vacuole"],["membrane_organelle/contractile_vacuole_lumen.html","contractile vacuole lumen"]],"b":[["GO%3A0000331","contractile vacuole"]]},{"id":"GO:0005826","l":"actomyosin contractile ring","na":1,"nb":3,"a":[["cytoskeleton/actomyosin_contractile_ring.html","actomyosin contractile ring"]],"b":[["GO%3A0005826","actomyosin contractile ring"],["GO%3A0110086","meiotic actomyosin contractile ring"],["GO%3A0110085","mitotic actomyosin contractile ring"]]},{"id":"GO:0009290","l":"DNA import into cell involved in transformation","na":1,"nb":3,"a":[["appendage/type_iv_pilus.html","type IV pilus"]],"b":[["GO%3A0009290","DNA import into cell involved in transformation"],["NCBIfam%3ANF041796","DNA import protein CedA"],["NCBIfam%3ATIGR00361","DNA internalization-related competence protein ComEC/Rec2"]]},{"id":"GO:0009422","l":"bacterial-type flagellum hook-filament junction","na":3,"nb":1,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["GO%3A0009422","bacterial-type flagellum hook-filament junction"]]},{"id":"GO:0009429","l":"bacterial-type flagellum basal body, proximal rod","na":3,"nb":1,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"]],"b":[["GO%3A0009429","bacterial-type flagellum basal body, proximal rod"]]},{"id":"GO:0009514","l":"glyoxysome","na":3,"nb":1,"a":[["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysomal_membrane.html","glyoxysomal membrane"],["membrane_organelle/glyoxysome.html","glyoxysome"]],"b":[["GO%3A0009514","glyoxysome"]]},{"id":"GO:0012510","l":"trans-Golgi network transport vesicle membrane","na":3,"nb":1,"a":[["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"],["membrane_organelle/trans_golgi_network_transport_vesicle_membrane.html","trans-Golgi network transport vesicle membrane"],["other/clathrin_coat_of_trans_golgi_network_vesicle.html","clathrin coat of trans-Golgi network vesicle"]],"b":[["GO%3A0012510","trans-Golgi network transport vesicle membrane"]]},{"id":"GO:0020015","l":"glycosome","na":3,"nb":1,"a":[["membrane_organelle/glycosome.html","glycosome"],["membrane_organelle/glycosome_lumen.html","glycosome lumen"],["membrane_organelle/glycosome_membrane.html","glycosome membrane"]],"b":[["GO%3A0020015","glycosome"]]},{"id":"GO:0030061","l":"mitochondrial crista","na":3,"nb":1,"a":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"],["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"]],"b":[["GO%3A0030061","mitochondrial crista"]]},{"id":"GO:0030124","l":"AP-4 adaptor complex","na":1,"nb":3,"a":[["other/ap_4_adaptor_complex.html","AP-4 adaptor complex"]],"b":[["ComplexPortal%3ACPX-5151","AP-4 Adaptor complex"],["ComplexPortal%3ACPX-5154","AP-4 Adaptor complex"],["GO%3A0030124","AP-4 adaptor complex"]]},{"id":"GO:0030256","l":"type I protein secretion system complex","na":1,"nb":3,"a":[["secretion_system/type_i_protein_secretion_system_complex.html","type I protein secretion system complex"]],"b":[["GO%3A0030256","type I protein secretion system complex"],["NCBIfam%3ATIGR01842","type I secretion system permease/ATPase"],["NCBIfam%3ATIGR01846","type I secretion system permease/ATPase"]]},{"id":"GO:0030874","l":"nucleolar chromatin","na":1,"nb":3,"a":[["other/nucleolus.html","nucleolus"]],"b":[["GO%3A0030874","nucleolar chromatin"],["GO%3A0097424","nucleolus-associated heterochromatin"],["GO%3A0005731","nucleolus organizer region"]]},{"id":"GO:0031164","l":"contractile vacuolar membrane","na":3,"nb":1,"a":[["membrane_organelle/contractile_vacuolar_membrane.html","contractile vacuolar membrane"],["membrane_organelle/contractile_vacuole.html","contractile vacuole"],["membrane_organelle/contractile_vacuole_lumen.html","contractile vacuole lumen"]],"b":[["GO%3A0031164","contractile vacuolar membrane"]]},{"id":"GO:0031321","l":"ascospore-type prospore assembly","na":1,"nb":3,"a":[["spore/prospore_membrane.html","prospore membrane"]],"b":[["ComplexPortal%3ACPX-5464","Vesicular SNARE complex SSO1-SPO20-SNC1"],["ComplexPortal%3ACPX-5466","Vesicular SNARE complex SSO1-SPO20-SNC2"],["GO%3A0031321","ascospore-type prospore assembly"]]},{"id":"GO:0031908","l":"glyoxysomal lumen","na":3,"nb":1,"a":[["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysomal_membrane.html","glyoxysomal membrane"],["membrane_organelle/glyoxysome.html","glyoxysome"]],"b":[["GO%3A0031908","glyoxysomal lumen"]]},{"id":"GO:0031979","l":"plasma membrane-derived thylakoid lumen","na":3,"nb":1,"a":[["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_lumen.html","plasma membrane-derived thylakoid lumen"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"]],"b":[["GO%3A0031979","plasma membrane-derived thylakoid lumen"]]},{"id":"GO:0031983","l":"vesicle lumen","na":1,"nb":3,"a":[["membrane_organelle/cytoplasmic_vesicle_lumen.html","cytoplasmic vesicle lumen"]],"b":[["GO%3A0060205","cytoplasmic vesicle lumen"],["GO%3A0097489","multivesicular body, internal vesicle lumen"],["GO%3A0031983","vesicle lumen"]]},{"id":"GO:0032047","l":"mitosome","na":3,"nb":1,"a":[["membrane_organelle/mitosome.html","mitosome"],["membrane_organelle/mitosome_envelope.html","mitosome envelope"],["membrane_organelle/mitosome_matrix.html","mitosome matrix"]],"b":[["GO%3A0032047","mitosome"]]},{"id":"GO:0032126","l":"eisosome","na":3,"nb":1,"a":[["cytoskeleton/eisosome_filament.html","eisosome filament"],["envelope/eisosome_membrane_domain_mcc.html","eisosome membrane domain/MCC"],["other/eisosome.html","eisosome"]],"b":[["GO%3A0032126","eisosome"]]},{"id":"GO:0033016","l":"rhoptry membrane","na":3,"nb":1,"a":[["membrane_organelle/rhoptry.html","rhoptry"],["membrane_organelle/rhoptry_lumen.html","rhoptry lumen"],["membrane_organelle/rhoptry_membrane.html","rhoptry membrane"]],"b":[["GO%3A0033016","rhoptry membrane"]]},{"id":"GO:0033107","l":"Cvt vesicle","na":3,"nb":1,"a":[["membrane_organelle/cvt_vesicle.html","Cvt vesicle"],["membrane_organelle/cvt_vesicle_lumen.html","Cvt vesicle lumen"],["membrane_organelle/cvt_vesicle_membrane.html","Cvt vesicle membrane"]],"b":[["GO%3A0033107","Cvt vesicle"]]},{"id":"GO:0033110","l":"Cvt vesicle membrane","na":3,"nb":1,"a":[["membrane_organelle/cvt_vesicle.html","Cvt vesicle"],["membrane_organelle/cvt_vesicle_lumen.html","Cvt vesicle lumen"],["membrane_organelle/cvt_vesicle_membrane.html","Cvt vesicle membrane"]],"b":[["GO%3A0033110","Cvt vesicle membrane"]]},{"id":"GO:0033117","l":"esterosome","na":3,"nb":1,"a":[["membrane_organelle/esterosome.html","esterosome"],["membrane_organelle/esterosome_lumen.html","esterosome lumen"],["membrane_organelle/esterosome_membrane.html","esterosome membrane"]],"b":[["GO%3A0033117","esterosome"]]},{"id":"GO:0033118","l":"esterosome membrane","na":3,"nb":1,"a":[["membrane_organelle/esterosome.html","esterosome"],["membrane_organelle/esterosome_lumen.html","esterosome lumen"],["membrane_organelle/esterosome_membrane.html","esterosome membrane"]],"b":[["GO%3A0033118","esterosome membrane"]]},{"id":"GO:0033163","l":"microneme membrane","na":3,"nb":1,"a":[["membrane_organelle/microneme.html","microneme"],["membrane_organelle/microneme_lumen.html","microneme lumen"],["membrane_organelle/microneme_membrane.html","microneme membrane"]],"b":[["GO%3A0033163","microneme membrane"]]},{"id":"GO:0033281","l":"TAT protein transport complex","na":1,"nb":3,"a":[["secretion_system/tat_protein_transport_complex.html","TAT protein transport complex"]],"b":[["ComplexPortal%3ACPX-3445","Twin-arginine translocation complex"],["GO%3A0033281","TAT protein transport complex"],["NCBIfam%3ATIGR01912","Sec-independent protein translocase TatC"]]},{"id":"GO:0034044","l":"exomer complex","na":1,"nb":3,"a":[["other/exomer_complex.html","exomer complex"]],"b":[["ComplexPortal%3ACPX-1719","Exomer complex"],["ComplexPortal%3ACPX-26504","Exomer complex"],["GO%3A0034044","exomer complex"]]},{"id":"GO:0034423","l":"autophagosome lumen","na":3,"nb":1,"a":[["membrane_organelle/autophagosome.html","autophagosome"],["membrane_organelle/autophagosome_lumen.html","autophagosome lumen"],["membrane_organelle/autophagosome_membrane.html","autophagosome membrane"]],"b":[["GO%3A0034423","autophagosome lumen"]]},{"id":"GO:0034430","l":"monolayer-surrounded lipid storage body outer lipid monolayer","na":3,"nb":1,"a":[["inclusion/lipid_droplet.html","lipid droplet"],["inclusion/monolayer_surrounded_lipid_storage_body_outer_lipid_monolayer.html","monolayer-surrounded lipid storage body outer lipid monolayer"],["inclusion/plastoglobule.html","plastoglobule"]],"b":[["GO%3A0034430","monolayer-surrounded lipid storage body outer lipid monolayer"]]},{"id":"GO:0034467","l":"esterosome lumen","na":3,"nb":1,"a":[["membrane_organelle/esterosome.html","esterosome"],["membrane_organelle/esterosome_lumen.html","esterosome lumen"],["membrane_organelle/esterosome_membrane.html","esterosome membrane"]],"b":[["GO%3A0034467","esterosome lumen"]]},{"id":"GO:0034468","l":"glycosome lumen","na":3,"nb":1,"a":[["membrane_organelle/glycosome.html","glycosome"],["membrane_organelle/glycosome_lumen.html","glycosome lumen"],["membrane_organelle/glycosome_membrane.html","glycosome membrane"]],"b":[["GO%3A0034468","glycosome lumen"]]},{"id":"GO:0034492","l":"hydrogenosome lumen","na":3,"nb":1,"a":[["membrane_organelle/hydrogenosomal_membrane.html","hydrogenosomal membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/hydrogenosome_lumen.html","hydrogenosome lumen"]],"b":[["GO%3A0034492","hydrogenosome lumen"]]},{"id":"GO:0034494","l":"microneme lumen","na":3,"nb":1,"a":[["membrane_organelle/microneme.html","microneme"],["membrane_organelle/microneme_lumen.html","microneme lumen"],["membrane_organelle/microneme_membrane.html","microneme membrane"]],"b":[["GO%3A0034494","microneme lumen"]]},{"id":"GO:0034591","l":"rhoptry lumen","na":3,"nb":1,"a":[["membrane_organelle/rhoptry.html","rhoptry"],["membrane_organelle/rhoptry_lumen.html","rhoptry lumen"],["membrane_organelle/rhoptry_membrane.html","rhoptry membrane"]],"b":[["GO%3A0034591","rhoptry lumen"]]},{"id":"GO:0036286","l":"eisosome filament","na":3,"nb":1,"a":[["cytoskeleton/eisosome_filament.html","eisosome filament"],["envelope/eisosome_membrane_domain_mcc.html","eisosome membrane domain/MCC"],["other/eisosome.html","eisosome"]],"b":[["GO%3A0036286","eisosome filament"]]},{"id":"GO:0042566","l":"hydrogenosome","na":3,"nb":1,"a":[["membrane_organelle/hydrogenosomal_membrane.html","hydrogenosomal membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/hydrogenosome_lumen.html","hydrogenosome lumen"]],"b":[["GO%3A0042566","hydrogenosome"]]},{"id":"GO:0042603","l":"capsule","na":3,"nb":1,"a":[["envelope/capsule.html","capsule"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]],"b":[["GO%3A0042603","capsule"]]},{"id":"GO:0043529","l":"GET complex","na":1,"nb":3,"a":[["other/get_complex.html","GET complex"]],"b":[["ComplexPortal%3ACPX-6464","GET complex"],["ComplexPortal%3ACPX-956","GET complex"],["GO%3A0043529","GET complex"]]},{"id":"GO:0044599","l":"AP-5 adaptor complex","na":1,"nb":3,"a":[["other/ap_5_adaptor_complex.html","AP-5 adaptor complex"]],"b":[["ComplexPortal%3ACPX-5181","AP-5 Adaptor complex"],["ComplexPortal%3ACPX-5182","AP-5 Adaptor complex"],["GO%3A0044599","AP-5 adaptor complex"]]},{"id":"GO:0046858","l":"chlorosome","na":3,"nb":1,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"]],"b":[["GO%3A0046858","chlorosome"]]},{"id":"GO:0046859","l":"hydrogenosomal membrane","na":3,"nb":1,"a":[["membrane_organelle/hydrogenosomal_membrane.html","hydrogenosomal membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/hydrogenosome_lumen.html","hydrogenosome lumen"]],"b":[["GO%3A0046859","hydrogenosomal membrane"]]},{"id":"GO:0046860","l":"glycosome membrane","na":3,"nb":1,"a":[["membrane_organelle/glycosome.html","glycosome"],["membrane_organelle/glycosome_lumen.html","glycosome lumen"],["membrane_organelle/glycosome_membrane.html","glycosome membrane"]],"b":[["GO%3A0046860","glycosome membrane"]]},{"id":"GO:0046861","l":"glyoxysomal membrane","na":3,"nb":1,"a":[["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysomal_membrane.html","glyoxysomal membrane"],["membrane_organelle/glyoxysome.html","glyoxysome"]],"b":[["GO%3A0046861","glyoxysomal membrane"]]},{"id":"GO:0048492","l":"ribulose bisphosphate carboxylase complex","na":1,"nb":3,"a":[["other/pyrenoid.html","pyrenoid"]],"b":[["GO%3A0009573","chloroplast ribulose bisphosphate carboxylase complex"],["GO%3A0048494","chromatophore ribulose bisphosphate carboxylase complex"],["GO%3A0048492","ribulose bisphosphate carboxylase complex"]]},{"id":"GO:0070088","l":"polyhydroxyalkanoate granule","na":1,"nb":3,"a":[["inclusion/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]],"b":[["GO%3A0070088","polyhydroxyalkanoate granule"],["NCBIfam%3ANF045536","polyhydroxyalkanoate granule-associated phasin"],["NCBIfam%3ANF045537","polyhydroxyalkanoate granule-associated phasin"]]},{"id":"GO:0070115","l":"organellar chromatophore intermembrane space","na":3,"nb":1,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_inner_membrane.html","organellar chromatophore inner membrane"],["membrane_organelle/organellar_chromatophore_intermembrane_space.html","organellar chromatophore intermembrane space"]],"b":[["GO%3A0070115","organellar chromatophore intermembrane space"]]},{"id":"GO:0090512","l":"eisosome membrane domain/MCC","na":3,"nb":1,"a":[["cytoskeleton/eisosome_filament.html","eisosome filament"],["envelope/eisosome_membrane_domain_mcc.html","eisosome membrane domain/MCC"],["other/eisosome.html","eisosome"]],"b":[["GO%3A0090512","eisosome membrane domain/MCC"]]},{"id":"GO:0097595","l":"ventral disc crossbridge","na":3,"nb":1,"a":[["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_crossbridge.html","ventral disc crossbridge"],["cytoskeleton/ventral_disc_dorsal_microribbon.html","ventral disc dorsal microribbon"]],"b":[["GO%3A0097595","ventral disc crossbridge"]]},{"id":"GO:0106234","l":"outer membrane protein complex","na":1,"nb":3,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["GO%3A0106234","outer membrane protein complex"],["NCBIfam%3ANF033942","outer membrane porin GjpA"],["NCBIfam%3ANF053618","PopA family porin-like outer membrane protein"]]},{"id":"GO:0160211","l":"apicoplast membrane","na":3,"nb":1,"a":[["membrane_organelle/apicoplast.html","apicoplast"],["membrane_organelle/apicoplast_membrane.html","apicoplast membrane"],["membrane_organelle/plastid_membrane.html","plastid membrane"]],"b":[["GO%3A0160211","apicoplast membrane"]]},{"id":"GO:1990900","l":"ciliary pocket collar","na":3,"nb":1,"a":[["cytoskeleton/bilobe_structure.html","bilobe structure"],["cytoskeleton/ciliary_pocket_collar.html","ciliary pocket collar"],["membrane_organelle/flagellar_pocket.html","flagellar pocket"]],"b":[["GO%3A1990900","ciliary pocket collar"]]},{"id":"InterPro:IPR001182","l":"","na":1,"nb":3,"a":[["envelope/peptidoglycan_based_cell_wall.html","peptidoglycan-based cell wall"]],"b":[["PANTHER%3APTHR30474","CELL CYCLE PROTEIN"],["Pfam%3APF01098","Cell cycle protein"],["PROSITE%3APS00428","Cell cycle proteins ftsW / rodA / spoVE signature"]]},{"id":"InterPro:IPR001689","l":"","na":1,"nb":3,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]],"b":[["Pfam%3APF02154","Flagellar motor switch protein FliM"],["Pfam%3APF01052","Type III flagellar switch regulator (C-ring) FliN C-term"],["PRINTS%3APR00955","Flagellar motor switch protein FliM signature"]]},{"id":"InterPro:IPR012826","l":"","na":1,"nb":3,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]],"b":[["Pfam%3APF04509","CheC-like family"],["Pfam%3APF01052","Type III flagellar switch regulator (C-ring) FliN C-term"],["Pfam%3APF16973","Flagellar motor switch protein FliN N-terminal"]]},{"id":"InterPro:IPR026592","l":"","na":1,"nb":3,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["Pfam%3APF04355","Outer membrane protein assembly factor BamE domain"],["HAMAP%3AMF_00925","Outer membrane protein assembly factor BamE [bamE]"],["PANTHER%3APTHR37482","OUTER MEMBRANE PROTEIN ASSEMBLY FACTOR BAME"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":3,"a":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]],"b":[["TED%3AAF-A0A142EAM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142EAM9-F1-model_v4_TED03"],["TED%3AAF-A0A1Q3DTY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3DTY6-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3DNE3-F1-model_v4_TED01","TED novel fold AF-A0A1Q3DNE3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":1,"nb":3,"a":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]],"b":[["Pfam%3APF03069","Acetamidase/Formamidase family"],["PROSITE%3APS00818","Dps protein family signature 1"],["Pfam%3APF13810","Domain of unknown function (DUF4185)"]]},{"id":"NCBITaxon:243233","l":"Methylococcus capsulatus Bath","na":1,"nb":3,"a":[["membrane_organelle/methane_oxidizing_organelle.html","methane-oxidizing organelle"]],"b":[["Pfam%3APF17850","CysA C-terminal regulatory domain"],["Pfam%3APF02461","Ammonia monooxygenase"],["TED%3AAF-Q604F4-F1-model_v4_TED02","TED novel fold AF-Q604F4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:381666","l":"Cupriavidus necator H16","na":1,"nb":3,"a":[["inclusion/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]],"b":[["Pfam%3APF13473","Cupredoxin-like domain"],["Pfam%3APF10605","3HB-oligomer hydrolase (3HBOH)"],["Pfam%3APF21783","YNCE-like beta-propeller"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":1,"nb":3,"a":[["microcompartment/bacterial_microcompartment.html","bacterial microcompartment"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF22277","EncFtn-like"],["TED%3AAF-D0LJ11-F1-model_v4_TED04","TED highly-symmetric fold AF-D0LJ11-F1-model_v4_TED04"]]},{"id":"NCBITaxon:5334","l":"Schizophyllum commune","na":1,"nb":3,"a":[["envelope/dolipore_septum.html","dolipore septum"]],"b":[["Pfam%3APF04611","Mating type protein A alpha Y mating type dependent binding region"],["Pfam%3APF01185","Fungal hydrophobin"],["PROSITE%3APS00956","Fungal hydrophobins signature"]]},{"id":"NCBITaxon:55529","l":"Guillardia theta","na":1,"nb":3,"a":[["membrane_organelle/nucleomorph.html","nucleomorph"]],"b":[["Pfam%3APF06868","Protein of unknown function (DUF1257)"],["Pfam%3APF05421","Protein of unknown function (DUF751)"],["TED%3AAF-A0A7S4PQE0-F1-model_v4_TED01","TED novel fold AF-A0A7S4PQE0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:5911","l":"Tetrahymena thermophila","na":3,"nb":1,"a":[["membrane_organelle/mucocyst.html","mucocyst"],["other/ap_3_adaptor_complex.html","AP-3 adaptor complex"],["other/ap_type_membrane_coat_adaptor_complex.html","AP-type membrane coat adaptor complex"]],"b":[["Pfam%3APF10699","Male gamete fusion factor"]]},{"id":"UniProt:O31728","l":"","na":1,"nb":3,"a":[["division_machinery/divisome_complex.html","divisome complex"]],"b":[["Pfam%3APF04472","Cell division protein SepF"],["InterPro%3AIPR038594","SepF-like superfamily"],["CATH%3A3.30.110.150","SepF-like protein"]]},{"id":"UniProt:P0C018","l":"Large ribosomal subunit protein uL18","na":1,"nb":3,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00060","50S ribosomal protein L18"],["Pfam%3APF00861","Ribosomal L18 of archaea, bacteria, mitoch. and chloroplast"]]},{"id":"UniProt:P35535","l":"","na":1,"nb":3,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0009425","bacterial-type flagellum basal body"],["NCBIfam%3ATIGR01402","flagellar biosynthesis protein FliQ"],["Pfam%3APF01313","Bacterial export proteins, family 3"]]},{"id":"UniProt:P35537","l":"","na":1,"nb":3,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0009425","bacterial-type flagellum basal body"],["NCBIfam%3ATIGR01400","flagellar biosynthetic protein FliR"],["Pfam%3APF01311","Bacterial export proteins, family 1"]]},{"id":"UniProt:P54700","l":"","na":1,"nb":3,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF00813","FliP family"],["PROSITE%3APS01060","Flagella transport protein fliP family signature 1"],["PROSITE%3APS01061","Flagella transport protein fliP family signature 2"]]},{"id":"UniProt:Q9ZFU8","l":"","na":1,"nb":3,"a":[["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"]],"b":[["Pfam%3APF00936","BMC domain"],["Pfam%3APF16365","Ethanolamine utilization protein EutK C-terminus"],["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"CHEBI:16412","l":"","na":2,"nb":1,"a":[["envelope/cell_outer_membrane.html","cell outer membrane"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:25438","l":"","na":1,"nb":2,"a":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]]},{"id":"DOI:10.1002/yea.954","l":"","na":1,"nb":2,"a":[["other/sec62_sec63_complex.html","Sec62/Sec63 complex"]],"b":[["InterPro%3AIPR038744","Hri1, N-terminal"],["InterPro%3AIPR043047","Hri1, N-terminal domain superfamily"]]},{"id":"DOI:10.1016/j.cell.2010.05.006","l":"","na":2,"nb":1,"a":[["other/ap_2_adaptor_complex.html","AP-2 adaptor complex"],["other/clathrin_coat_of_coated_pit.html","clathrin coat of coated pit"]],"b":[["InterPro%3AIPR043512","Mu2, C-terminal domain"]]},{"id":"DOI:10.1016/j.cub.2007.06.044","l":"","na":1,"nb":2,"a":[["other/monopolin_complex.html","monopolin complex"]],"b":[["InterPro%3AIPR020981","Monopolin complex subunit Csm1/Pcs1, C-terminal"],["InterPro%3AIPR038608","Csm1/Pcs1, C-terminal domain superfamily"]]},{"id":"DOI:10.1016/j.str.2015.03.001","l":"","na":1,"nb":2,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"]],"b":[["InterPro%3AIPR054458","Conserved flagellar protein F, immunoglobulin-like domain"],["NCBIfam%3ANF046693","Conserved flagellar protein F, immunoglobulin-like domain"]]},{"id":"DOI:10.1016/j.str.2019.01.017","l":"","na":1,"nb":2,"a":[["microcompartment/bacterial_microcompartment.html","bacterial microcompartment"]],"b":[["InterPro%3AIPR060394","CsoS1D-like, N-terminal domain"],["NCBIfam%3ANF054747","CsoS1D N-terminal domain"]]},{"id":"DOI:10.1016/j.str.2023.03.011","l":"","na":2,"nb":1,"a":[["inclusion/gas_vesicle.html","gas vesicle"],["inclusion/gas_vesicle_shell.html","gas vesicle shell"]],"b":[["InterPro%3AIPR018493","Gas vesicle protein A-like, conserved site"]]},{"id":"DOI:10.1038/nrmicro2762","l":"","na":1,"nb":2,"a":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"]],"b":[["NCBIfam%3ANF027851","general secretion pathway protein GspB"],["NCBIfam%3ANF021227","Type II secretion system pilotin lipoprotein (PulS_OutS)"]]},{"id":"DOI:10.1073/pnas.0912010107","l":"","na":1,"nb":2,"a":[["secretion_system/type_ix_protein_secretion_system_complex.html","type IX protein secretion system complex"]],"b":[["NCBIfam%3ATIGR03519","PorP/SprF family type IX secretion system membrane protein"],["NCBIfam%3ANF023179","type IX secretion system membrane protein PorP/SprF"]]},{"id":"DOI:10.1073/pnas.1003817107","l":"","na":1,"nb":2,"a":[["cytoskeleton/tubz_filament.html","TubZ filament"]],"b":[["InterPro%3AIPR054719","Tubulin-like protein TubZ-like, C-terminal domain"],["NCBIfam%3ANF046669","Tubulin/FtsZ-like protein TubZ-like, C-terminal domain"]]},{"id":"DOI:10.1073/pnas.1010176107","l":"","na":1,"nb":2,"a":[["cytoskeleton/tubz_filament.html","TubZ filament"]],"b":[["InterPro%3AIPR054719","Tubulin-like protein TubZ-like, C-terminal domain"],["NCBIfam%3ANF046669","Tubulin/FtsZ-like protein TubZ-like, C-terminal domain"]]},{"id":"DOI:10.1073/pnas.97.17.9402","l":"","na":1,"nb":2,"a":[["other/hops_complex.html","HOPS complex"]],"b":[["InterPro%3AIPR057780","Vps41, beta-propeller"],["InterPro%3AIPR057779","Vps41, C-terminal RING finger"]]},{"id":"DOI:10.1074/jbc.M112.414383","l":"","na":1,"nb":2,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"]],"b":[["NCBIfam%3ANF058591","archaellum flagellar motor scaffold protein FlaX"],["NCBIfam%3ANF048748","ArlX"]]},{"id":"DOI:10.1074/jbc.M809196200","l":"","na":1,"nb":2,"a":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"]],"b":[["InterPro%3AIPR057415","Cytochrome b6-f complex iron-sulfur subunit-like, transmembrane anchor"],["NCBIfam%3ANF051756","Iron-sulfur subunit PetC transmembrane anchor"]]},{"id":"DOI:10.1083/jcb.130.2.299","l":"","na":2,"nb":1,"a":[["other/cellular_bud_tip.html","cellular bud tip"],["other/exocyst.html","exocyst"]],"b":[["InterPro%3AIPR039481","Exocyst complex component EXOC2/Sec5, N-terminal domain"]]},{"id":"DOI:10.1083/jcb.142.3.665","l":"","na":1,"nb":2,"a":[["other/retromer_complex.html","retromer complex"]],"b":[["InterPro%3AIPR035803","Sorting nexin Vps5, BAR domain"],["InterPro%3AIPR037907","Vps17, PX domain"]]},{"id":"DOI:10.1083/jcb.200504008","l":"","na":2,"nb":1,"a":[["appendage/ciliary_membrane.html","ciliary membrane"],["appendage/cilium.html","cilium"]],"b":[["NCBIfam%3ANF026175","CFAP77 family protein"]]},{"id":"DOI:10.1091/mbc.6.6.649","l":"","na":1,"nb":2,"a":[["membrane_organelle/trichocyst.html","trichocyst"]],"b":[["InterPro%3AIPR059991","Trichocyst matrix protein T1-F, coiled-coil"],["NCBIfam%3ANF055117","Trichocyst matrix protein T1-F"]]},{"id":"DOI:10.1091/mbc.e02-12-0794","l":"","na":1,"nb":2,"a":[["other/gpi_anchor_transamidase_complex.html","GPI-anchor transamidase complex"]],"b":[["RHEA%3A60544","a 2-acyl-6-[6-phosphoethanolamine-alpha-D-mannosyl-(1->2)-6-phosphoethanolamine-alpha-D-mannosyl-(1->6)-2-phosphoethanolamine-alpha-D-mannosyl-(1->4)-alpha-D-glucosaminyl]-1-(1-radyl,2-acyl-sn-glycero-3-phospho)-1D-myo-inositol + [protein]-C-terminal L-amino acid = [protein]-C-terminal carboxyl phosphoethanolamide-GPI(H8) + H2O"],["RHEA%3A83791","a 2-acyl-6-[6-phosphoethanolamine-alpha-D-mannosyl-(1->2)-alpha-D-mannosyl-(1->6)-2-phosphoethanolamine-alpha-D-mannosyl-(1->4)-alpha-D-glucosaminyl]-1-(1-radyl,2-acyl-sn-glycero-3-phospho)-1D-myo-inositol + [protein]-C-terminal L-amino acid = [protein]-C-terminal carboxyl phosphoethanolamide-GPI(H7) + H2O"]]},{"id":"DOI:10.1093/emboj/20.24.6946","l":"","na":2,"nb":1,"a":[["spore/prospore_membrane.html","prospore membrane"],["spore/prospore_membrane_leading_edge.html","prospore membrane leading edge"]],"b":[["InterPro%3AIPR063784","Sporulation-specific protein 1, conserved domain"]]},{"id":"DOI:10.1111/mmi.12422","l":"","na":1,"nb":2,"a":[["appendage/prostheca.html","prostheca"]],"b":[["NCBIfam%3ANF051885","multimodular transpeptidase-transglycosylase PbpC"],["NCBIfam%3ANF051869","stalk-specific protein StpX"]]},{"id":"DOI:10.1111/mmi.13260","l":"","na":1,"nb":2,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"]],"b":[["NCBIfam%3ANF058587","archaellum flagellar ATPase motor FlaI"],["InterPro%3AIPR014774","KaiC-like domain"]]},{"id":"DOI:10.1126/science.1175088","l":"","na":1,"nb":2,"a":[["other/ermes_complex.html","ERMES complex"]],"b":[["InterPro%3AIPR058825","MDM34, N-terminal domain"],["InterPro%3AIPR019411","MMM1 domain"]]},{"id":"DOI:10.1126/science.1232044","l":"","na":2,"nb":1,"a":[["other/gator1_complex.html","GATOR1 complex"],["other/gator2_complex.html","GATOR2 complex"]],"b":[["InterPro%3AIPR039456","WDR59, modified RING finger, H2 subclass, C3H3C2-type"]]},{"id":"DOI:10.1126/science.1254522","l":"","na":1,"nb":2,"a":[["envelope/peptidoglycan_based_cell_wall.html","peptidoglycan-based cell wall"]],"b":[["COG%3ACOG0299","Folate-dependent phosphoribosylglycinamide formyltransferase PurN"],["COG%3ACOG0728","Lipid II flippase MurJ/MviN (peptidoglycan biosynthesis)"]]},{"id":"DOI:10.1126/science.aan3289","l":"","na":1,"nb":2,"a":[["microcompartment/bacterial_microcompartment.html","bacterial microcompartment"]],"b":[["InterPro%3AIPR060394","CsoS1D-like, N-terminal domain"],["NCBIfam%3ANF054747","CsoS1D N-terminal domain"]]},{"id":"DOI:10.1128/JB.00779-12","l":"","na":1,"nb":2,"a":[["inclusion/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]],"b":[["NCBIfam%3ANF045536","polyhydroxyalkanoate granule-associated phasin"],["NCBIfam%3ANF045537","polyhydroxyalkanoate granule-associated phasin"]]},{"id":"DOI:10.1128/spectrum.01602-21","l":"","na":1,"nb":2,"a":[["secretion_system/type_ix_protein_secretion_system_complex.html","type IX protein secretion system complex"]],"b":[["NCBIfam%3ANF052312","type IX secretion system periplasmic lipoprotein PorW/SprE"],["NCBIfam%3ANF052317","type IX secretion system protein PorD"]]},{"id":"DOI:10.1371/journal.pgen.1005545","l":"","na":1,"nb":2,"a":[["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"]],"b":[["NCBIfam%3ANF017733","type VI secretion system baseplate subunit TssF"],["NCBIfam%3ANF018675","type VI secretion system baseplate subunit TssG"]]},{"id":"GO:0000934","l":"porous cell septum","na":1,"nb":2,"a":[["envelope/dolipore_septum.html","dolipore septum"]],"b":[["GO%3A0000937","dolipore septum"],["GO%3A0000934","porous cell septum"]]},{"id":"GO:0001405","l":"PAM complex, Tim23 associated import motor","na":1,"nb":2,"a":[["other/pam_complex_tim23_associated_import_motor.html","PAM complex, Tim23 associated import motor"]],"b":[["GO%3A0001405","PAM complex, Tim23 associated import motor"],["Pfam%3APF08566","Mitochondrial import protein Pam17"]]},{"id":"GO:0010287","l":"plastoglobule","na":2,"nb":1,"a":[["inclusion/plastoglobule.html","plastoglobule"],["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"]],"b":[["GO%3A0010287","plastoglobule"]]},{"id":"GO:0020005","l":"symbiont-containing vacuole membrane","na":2,"nb":1,"a":[["membrane_organelle/parasitophorous_vacuole.html","parasitophorous vacuole"],["membrane_organelle/parasitophorous_vacuole_membrane.html","parasitophorous vacuole membrane"]],"b":[["GO%3A0020005","symbiont-containing vacuole membrane"]]},{"id":"GO:0020010","l":"conoid","na":2,"nb":1,"a":[["cytoskeleton/conoid.html","conoid"],["other/apical_complex.html","apical complex"]],"b":[["GO%3A0020010","conoid"]]},{"id":"GO:0020011","l":"apicoplast","na":2,"nb":1,"a":[["membrane_organelle/apicoplast.html","apicoplast"],["membrane_organelle/apicoplast_membrane.html","apicoplast membrane"]],"b":[["GO%3A0020011","apicoplast"]]},{"id":"GO:0020016","l":"flagellar pocket","na":2,"nb":1,"a":[["cytoskeleton/ciliary_pocket_collar.html","ciliary pocket collar"],["membrane_organelle/flagellar_pocket.html","flagellar pocket"]],"b":[["GO%3A0020016","ciliary pocket"]]},{"id":"GO:0020023","l":"kinetoplast","na":1,"nb":2,"a":[["nucleoid/kinetoplast.html","kinetoplast"]],"b":[["GO%3A0140525","antipodal site"],["GO%3A0020023","kinetoplast"]]},{"id":"GO:0020026","l":"apicomplexan dense granule","na":2,"nb":1,"a":[["membrane_organelle/apicomplexan_dense_granule.html","apicomplexan dense granule"],["membrane_organelle/apicomplexan_dense_granule_membrane.html","apicomplexan dense granule membrane"]],"b":[["GO%3A0020026","apicomplexan dense granule"]]},{"id":"GO:0020031","l":"polar ring of apical complex","na":2,"nb":1,"a":[["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["other/apical_complex.html","apical complex"]],"b":[["GO%3A0020031","polar ring of apical complex"]]},{"id":"GO:0030114","l":"slime layer","na":2,"nb":1,"a":[["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]],"b":[["GO%3A0030114","slime layer"]]},{"id":"GO:0030668","l":"apicomplexan dense granule membrane","na":2,"nb":1,"a":[["membrane_organelle/apicomplexan_dense_granule.html","apicomplexan dense granule"],["membrane_organelle/apicomplexan_dense_granule_membrane.html","apicomplexan dense granule membrane"]],"b":[["GO%3A0030668","apicomplexan dense granule membrane"]]},{"id":"GO:0031518","l":"CBF3 complex","na":1,"nb":2,"a":[["other/cbf3_complex.html","CBF3 complex"]],"b":[["ComplexPortal%3ACPX-1898","CBF3 complex"],["GO%3A0031518","CBF3 complex"]]},{"id":"GO:0031561","l":"cellular bud tip polarisome","na":2,"nb":1,"a":[["other/cellular_bud_tip.html","cellular bud tip"],["other/polarisome.html","polarisome"]],"b":[["GO%3A0031561","cellular bud tip polarisome"]]},{"id":"GO:0031903","l":"microbody membrane","na":1,"nb":2,"a":[["membrane_organelle/peroxisomal_membrane.html","peroxisomal membrane"]],"b":[["GO%3A0031903","microbody membrane"],["GO%3A0005778","peroxisomal membrane"]]},{"id":"GO:0031907","l":"microbody lumen","na":1,"nb":2,"a":[["membrane_organelle/peroxisomal_matrix.html","peroxisomal matrix"]],"b":[["GO%3A0031907","microbody lumen"],["GO%3A0005782","peroxisomal matrix"]]},{"id":"GO:0032258","l":"cytoplasm to vacuole targeting by the Cvt pathway","na":2,"nb":1,"a":[["membrane_organelle/cvt_vesicle.html","Cvt vesicle"],["membrane_organelle/cvt_vesicle_membrane.html","Cvt vesicle membrane"]],"b":[["GO%3A0032258","cytoplasm to vacuole targeting by the Cvt pathway"]]},{"id":"GO:0033099","l":"attachment organelle","na":2,"nb":1,"a":[["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"]],"b":[["GO%3A0033099","attachment organelle"]]},{"id":"GO:0033101","l":"cellular bud membrane","na":2,"nb":1,"a":[["envelope/cellular_bud_membrane.html","cellular bud membrane"],["other/cellular_bud.html","cellular bud"]],"b":[["GO%3A0033101","cellular bud membrane"]]},{"id":"GO:0033102","l":"acidocalcisome membrane","na":2,"nb":1,"a":[["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"]],"b":[["GO%3A0033102","acidocalcisome membrane"]]},{"id":"GO:0033105","l":"chlorosome envelope","na":2,"nb":1,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"]],"b":[["GO%3A0033105","chlorosome envelope"]]},{"id":"GO:0033111","l":"attachment organelle membrane","na":2,"nb":1,"a":[["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"]],"b":[["GO%3A0033111","attachment organelle membrane"]]},{"id":"GO:0033551","l":"monopolin complex","na":1,"nb":2,"a":[["other/monopolin_complex.html","monopolin complex"]],"b":[["ComplexPortal%3ACPX-1681","Monopolin complex"],["GO%3A0033551","monopolin complex"]]},{"id":"GO:0034063","l":"stress granule assembly","na":1,"nb":2,"a":[["ribonucleoprotein/cytoplasmic_stress_granule.html","cytoplasmic stress granule"]],"b":[["ComplexPortal%3ACPX-1412","UBP3-BRE5 ubiquitin hydrolase complex"],["GO%3A0034063","stress granule assembly"]]},{"id":"GO:0034270","l":"Cvt complex","na":2,"nb":1,"a":[["membrane_organelle/cvt_vesicle.html","Cvt vesicle"],["membrane_organelle/cvt_vesicle_membrane.html","Cvt vesicle membrane"]],"b":[["GO%3A0034270","Cvt complex"]]},{"id":"GO:0042644","l":"chloroplast nucleoid","na":2,"nb":1,"a":[["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"],["nucleoid/chloroplast_nucleoid.html","chloroplast nucleoid"]],"b":[["GO%3A0042644","chloroplast nucleoid"]]},{"id":"GO:0043594","l":"outer endospore membrane","na":2,"nb":1,"a":[["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"],["spore/outer_endospore_membrane.html","outer endospore membrane"]],"b":[["GO%3A0043594","outer endospore membrane"]]},{"id":"GO:0044096","l":"type IV pilus","na":2,"nb":1,"a":[["appendage/tad_pilus.html","Tad pilus"],["appendage/type_iv_pilus.html","type IV pilus"]],"b":[["GO%3A0044096","type IV pilus"]]},{"id":"GO:0044315","l":"protein secretion by the type VII secretion system","na":2,"nb":1,"a":[["secretion_system/esx_3_type_vii_secretion_system_membrane_complex.html","ESX-3 type VII secretion system membrane complex"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]],"b":[["GO%3A0044315","protein secretion by the type VII secretion system"]]},{"id":"GO:0051144","l":"1,2-propanediol catabolic process","na":1,"nb":2,"a":[["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]],"b":[["GO%3A0051144","1,2-propanediol catabolic process"],["NCBIfam%3ANF047788","transcriptional regulator PocR"]]},{"id":"GO:0055040","l":"periplasmic flagellum","na":1,"nb":2,"a":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]],"b":[["GO%3A0055040","periplasmic flagellum"],["NCBIfam%3ANF047448","flagellar coiling protein FcpA"]]},{"id":"GO:0061701","l":"bacterial outer membrane vesicle","na":1,"nb":2,"a":[["other/bacterial_outer_membrane_vesicle.html","bacterial outer membrane vesicle"]],"b":[["GO%3A0061701","bacterial outer membrane vesicle"],["NCBIfam%3ANF049843","BAR domain-like protein A BdpA"]]},{"id":"GO:0062155","l":"curli secretion complex","na":1,"nb":2,"a":[["appendage/curli.html","curli"]],"b":[["ComplexPortal%3ACPX-4743","Curli secretion complex"],["GO%3A0062155","curli secretion complex"]]},{"id":"GO:0062159","l":"contractile vacuole complex","na":2,"nb":1,"a":[["membrane_organelle/contractile_vacuole.html","contractile vacuole"],["membrane_organelle/spongiome.html","spongiome"]],"b":[["GO%3A0062159","contractile vacuole complex"]]},{"id":"GO:0070056","l":"prospore membrane leading edge","na":2,"nb":1,"a":[["spore/prospore_membrane.html","prospore membrane"],["spore/prospore_membrane_leading_edge.html","prospore membrane leading edge"]],"b":[["GO%3A0070056","prospore membrane leading edge"]]},{"id":"GO:0070057","l":"prospore membrane spindle pole body attachment site","na":2,"nb":1,"a":[["spore/prospore_membrane.html","prospore membrane"],["spore/prospore_membrane_spindle_pole_body_attachment_site.html","prospore membrane spindle pole body attachment site"]],"b":[["GO%3A0070057","prospore membrane spindle pole body attachment site"]]},{"id":"GO:0070070","l":"proton-transporting V-type ATPase complex assembly","na":1,"nb":2,"a":[["other/rave_complex.html","RAVE complex"]],"b":[["GO%3A0070070","proton-transporting V-type ATPase complex assembly"],["GO%3A0070072","vacuolar proton-transporting V-type ATPase complex assembly"]]},{"id":"GO:0071261","l":"Ssh1 translocon complex","na":1,"nb":2,"a":[["other/ssh1_translocon_complex.html","Ssh1 translocon complex"]],"b":[["ComplexPortal%3ACPX-1834","SSH1 translocon complex"],["GO%3A0071261","Ssh1 translocon complex"]]},{"id":"GO:0071970","l":"fungal-type cell wall (1->3)-beta-D-glucan biosynthetic process","na":1,"nb":2,"a":[["other/1_3_beta_d_glucan_synthase_complex.html","1,3-beta-D-glucan synthase complex"]],"b":[["GO%3A0034413","ascospore wall (1->3)-beta-D-glucan biosynthetic process"],["GO%3A0071970","fungal-type cell wall (1->3)-beta-D-glucan biosynthetic process"]]},{"id":"GO:0090641","l":"microsporidian-type endospore","na":2,"nb":1,"a":[["spore/microsporidian_type_endospore.html","microsporidian-type endospore"],["spore/microsporidian_type_exospore.html","microsporidian-type exospore"]],"b":[["GO%3A0090641","microsporidian-type endospore"]]},{"id":"GO:0090642","l":"microsporidian-type exospore","na":2,"nb":1,"a":[["spore/microsporidian_type_endospore.html","microsporidian-type endospore"],["spore/microsporidian_type_exospore.html","microsporidian-type exospore"]],"b":[["GO%3A0090642","microsporidian-type exospore"]]},{"id":"GO:0097002","l":"mitochondrial inner boundary membrane","na":2,"nb":1,"a":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"]],"b":[["GO%3A0097002","mitochondrial inner boundary membrane"]]},{"id":"GO:0097591","l":"ventral disc lateral crest","na":2,"nb":1,"a":[["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_lateral_crest.html","ventral disc lateral crest"]],"b":[["GO%3A0097591","ventral disc lateral crest"]]},{"id":"GO:0097592","l":"ventral disc overlap zone","na":2,"nb":1,"a":[["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_overlap_zone.html","ventral disc overlap zone"]],"b":[["GO%3A0097592","ventral disc overlap zone"]]},{"id":"GO:0097596","l":"ventral disc supernumerary microtubule array","na":2,"nb":1,"a":[["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_supernumerary_microtubule_array.html","ventral disc supernumerary microtubule array"]],"b":[["GO%3A0097596","ventral disc supernumerary microtubule array"]]},{"id":"GO:0098775","l":"curli assembly","na":1,"nb":2,"a":[["appendage/curli.html","curli"]],"b":[["ComplexPortal%3ACPX-4743","Curli secretion complex"],["GO%3A0098775","curli assembly"]]},{"id":"GO:0106176","l":"clathrin-coated endocytic vesicle lumen","na":2,"nb":1,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle_lumen.html","clathrin-coated endocytic vesicle lumen"],["membrane_organelle/endocytic_vesicle_lumen.html","endocytic vesicle lumen"]],"b":[["GO%3A0106176","clathrin-coated endocytic vesicle lumen"]]},{"id":"GO:0120119","l":"flagellum attachment zone","na":2,"nb":1,"a":[["cytoskeleton/bilobe_structure.html","bilobe structure"],["cytoskeleton/flagellum_attachment_zone.html","flagellum attachment zone"]],"b":[["GO%3A0120119","flagellum attachment zone"]]},{"id":"GO:0160223","l":"pyrenoid tubule","na":2,"nb":1,"a":[["membrane_organelle/pyrenoid_tubule.html","pyrenoid tubule"],["other/pyrenoid.html","pyrenoid"]],"b":[["GO%3A0160223","pyrenoid tubule"]]},{"id":"GO:1990061","l":"bacterial degradosome","na":1,"nb":2,"a":[["ribonucleoprotein/bacterial_degradosome.html","bacterial degradosome"]],"b":[["ComplexPortal%3ACPX-403","RNA degradosome"],["GO%3A1990061","bacterial degradosome"]]},{"id":"GO:1990063","l":"Bam protein complex","na":1,"nb":2,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["ComplexPortal%3ACPX-1923","BAM complex"],["GO%3A1990063","Bam protein complex"]]},{"id":"GO:1990070","l":"TRAPPI protein complex","na":1,"nb":2,"a":[["other/trappi_protein_complex.html","TRAPPI protein complex"]],"b":[["ComplexPortal%3ACPX-1940","TRAPPI protein complex"],["GO%3A1990070","TRAPPI protein complex"]]},{"id":"GO:1990732","l":"pyrenoid","na":2,"nb":1,"a":[["membrane_organelle/pyrenoid_tubule.html","pyrenoid tubule"],["other/pyrenoid.html","pyrenoid"]],"b":[["GO%3A1990732","pyrenoid"]]},{"id":"InterPro:IPR000563","l":"","na":1,"nb":2,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF02108","Flagellar assembly protein FliH"],["PRINTS%3APR01003","Flagellar assembly protein FliH signature"]]},{"id":"InterPro:IPR006301","l":"","na":1,"nb":2,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF00771","FHIPEP family"],["PROSITE%3APS00994","Bacterial export FHIPEP family signature"]]},{"id":"InterPro:IPR014524","l":"","na":1,"nb":2,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["Pfam%3APF06804","Outer membrane protein assembly factor BamC-like C-terminal domain"],["HAMAP%3AMF_00924","Outer membrane protein assembly factor BamC [bamC]"]]},{"id":"InterPro:IPR017687","l":"","na":1,"nb":2,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["HAMAP%3AMF_00923","Outer membrane protein assembly factor BamB [bamB]"],["Pfam%3APF13360","Outer membrane protein assembly factor BamB"]]},{"id":"InterPro:IPR017689","l":"","na":1,"nb":2,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["HAMAP%3AMF_00922","Outer membrane protein assembly factor BamD [bamD]"],["Pfam%3APF13525","Outer membrane lipoprotein"]]},{"id":"InterPro:IPR040747","l":"BILBO1, N-terminal domain","na":1,"nb":2,"a":[["cytoskeleton/ciliary_pocket_collar.html","ciliary pocket collar"]],"b":[["InterPro%3AIPR040747","BILBO1, N-terminal domain"],["Pfam%3APF18281","BILBO1 N-terminal domain"]]},{"id":"NCBITaxon:198110","l":"Pseudomonas phage 201phi2-1","na":2,"nb":1,"a":[["cytoskeleton/phuz_spindle.html","PhuZ spindle"],["other/phage_nucleus.html","phage nucleus"]],"b":[["Pfam%3APF25677","Phikzvirus chimallin family"]]},{"id":"NCBITaxon:264462","l":"Bdellovibrio bacteriovorus HD100","na":1,"nb":2,"a":[["appendage/type_iv_pilus.html","type IV pilus"]],"b":[["TED%3AAF-Q6MMM6-F1-model_v4_TED01","TED novel fold AF-Q6MMM6-F1-model_v4_TED01"],["TED%3AAF-Q6MPT8-F1-model_v4_TED01","TED novel fold AF-Q6MPT8-F1-model_v4_TED01"]]},{"id":"Pfam:PF04454","l":"Encapsulating protein for peroxidase","na":1,"nb":2,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]],"b":[["Pfam%3APF04454","Encapsulating protein for peroxidase"],["proteintraitsmech%3AINTERFACE_PF04454_PF04454","Linocin_M18–Linocin_M18 domain interface"]]},{"id":"Pfam:PF06386","l":"Gas vesicle synthesis protein GvpL/GvpF","na":1,"nb":2,"a":[["inclusion/gas_vesicle.html","gas vesicle"]],"b":[["Pfam%3APF06386","Gas vesicle synthesis protein GvpL/GvpF"],["proteintraitsmech%3AINTERFACE_PF06386_PF06386","GvpL_GvpF–GvpL_GvpF domain interface"]]},{"id":"Pfam:PF18281","l":"BILBO1 N-terminal domain","na":1,"nb":2,"a":[["cytoskeleton/ciliary_pocket_collar.html","ciliary pocket collar"]],"b":[["Pfam%3APF18281","BILBO1 N-terminal domain"],["proteintraitsmech%3AINTERFACE_PF18281_PF18281","BILBO1_N–BILBO1_N domain interface"]]},{"id":"UniProt:P16328","l":"","na":1,"nb":2,"a":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"]],"b":[["Pfam%3APF07195","Flagellar hook-associated protein 2 C-terminus"],["Pfam%3APF02465","Flagellar hook-associated protein 2 N-terminus"]]},{"id":"UniProt:P26462","l":"","na":2,"nb":1,"a":[["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"]],"b":[["Pfam%3APF02049","Flagellar hook-basal body complex protein FliE"]]},{"id":"UniProt:P37093","l":"","na":1,"nb":2,"a":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"]],"b":[["Pfam%3APF22341","GSPII protein E, N1E domain"],["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]]},{"id":"UniProt:P45689","l":"","na":2,"nb":1,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"UniProt:P52616","l":"","na":2,"nb":1,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"]],"b":[["Pfam%3APF21504","Flagellin, barrel domain"]]},{"id":"UniProt:Q03511","l":"","na":2,"nb":1,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"UniProt:Q03512","l":"","na":2,"nb":1,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["Pfam%3APF03319","Ethanolamine utilisation protein EutN/carboxysome"]]},{"id":"UniProt:Q31QW7","l":"","na":2,"nb":1,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"]]},{"id":"CHEBI:30033","l":"","na":1,"nb":1,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"]],"b":[["proteintraitsmech%3ABIOLIP_BCL","BCL-binding site"]]},{"id":"DOI:10.1002/pro.2979","l":"","na":1,"nb":1,"a":[["cytoskeleton/mamk_filament.html","MamK filament"]],"b":[["NCBIfam%3ANF040964","MamK family actin-like protein"]]},{"id":"DOI:10.1006/fgbi.2000.1230","l":"","na":1,"nb":1,"a":[["membrane_organelle/woronin_body.html","Woronin body"]],"b":[["InterPro%3AIPR037318","Hex1, S1 domain"]]},{"id":"DOI:10.1016/j.cell.2008.06.025","l":"","na":1,"nb":1,"a":[["other/get_complex.html","GET complex"]],"b":[["InterPro%3AIPR025723","ArsA/GET3, Anion-transporting ATPase-like domain"]]},{"id":"DOI:10.1016/j.cell.2008.07.016","l":"","na":1,"nb":1,"a":[["other/popz_polar_microdomain.html","PopZ polar microdomain"]],"b":[["NCBIfam%3ANF052660","PopZ family protein"]]},{"id":"DOI:10.1016/j.cell.2010.07.017","l":"","na":1,"nb":1,"a":[["other/monopolin_complex.html","monopolin complex"]],"b":[["InterPro%3AIPR041671","Csm1 N-terminal domain"]]},{"id":"DOI:10.1021/bi060776y","l":"","na":1,"nb":1,"a":[["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"]],"b":[["NCBIfam%3ANF022548","Chlorosome envelope protein C"]]},{"id":"DOI:10.1038/35024105","l":"","na":1,"nb":1,"a":[["appendage/type_iv_pilus.html","type IV pilus"]],"b":[["NCBIfam%3ATIGR01420","PilT/PilU family type 4a pilus ATPase"]]},{"id":"DOI:10.1038/35070067","l":"","na":1,"nb":1,"a":[["other/rave_complex.html","RAVE complex"]],"b":[["InterPro%3AIPR063312","F-box protein UCC1, N-terminal domain"]]},{"id":"DOI:10.1038/emboj.2009.358","l":"","na":1,"nb":1,"a":[["cytoskeleton/bactofilin_filament.html","bactofilin filament"]],"b":[["NCBIfam%3ANF016408","polymer-forming cytoskeletal protein"]]},{"id":"DOI:10.1038/nature01753","l":"","na":1,"nb":1,"a":[["other/sam_complex.html","SAM complex"]],"b":[["InterPro%3AIPR019564","Mitochondrial outer membrane transport complex Sam37/metaxin, N-terminal domain"]]},{"id":"DOI:10.1038/nature10846","l":"","na":1,"nb":1,"a":[["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"]],"b":[["NCBIfam%3ANF017723","type VI secretion system baseplate subunit TssK"]]},{"id":"DOI:10.1038/nature17199","l":"","na":1,"nb":1,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["NCBIfam%3ATIGR03300","outer membrane protein assembly factor BamB"]]},{"id":"DOI:10.1038/nature19331","l":"","na":1,"nb":1,"a":[["division_machinery/elongasome.html","elongasome"]],"b":[["InterPro%3AIPR018365","Cell cycle, FtsW / RodA / SpoVE, conserved site"]]},{"id":"DOI:10.1038/ncomms12865","l":"","na":1,"nb":1,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["NCBIfam%3ANF024753","outer membrane protein assembly factor BamB family protein"]]},{"id":"DOI:10.1038/ncomms4726","l":"","na":1,"nb":1,"a":[["membrane_organelle/exoneme.html","exoneme"]],"b":[["InterPro%3AIPR041089","SUB1 protease prodomain ProdP9"]]},{"id":"DOI:10.1038/nmicrobiol.2017.29","l":"","na":1,"nb":1,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]],"b":[["NCBIfam%3ATIGR04536","IMEF encapsulin system ferritin-like cargo protein"]]},{"id":"DOI:10.1038/nsmb.1473","l":"","na":1,"nb":1,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]],"b":[["NCBIfam%3ANF016349","encapsulin"]]},{"id":"DOI:10.1038/s41467-019-14145-7","l":"","na":1,"nb":1,"a":[["appendage/curli.html","curli"]],"b":[["NCBIfam%3ANF007506","curli minor subunit CsgB"]]},{"id":"DOI:10.1038/s41467-020-15489-1","l":"","na":1,"nb":1,"a":[["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"]],"b":[["NCBIfam%3ANF040598","Lpp/OprI family alanine-zipper lipoprotein"]]},{"id":"DOI:10.1038/s41564-018-0345-x","l":"","na":1,"nb":1,"a":[["envelope/peptidoglycan_based_cell_wall.html","peptidoglycan-based cell wall"]],"b":[["COG%3ACOG0772","Peptodoglycan polymerase FtsW/RodA/SpoVE"]]},{"id":"DOI:10.1038/s41586-022-05013-4","l":"","na":1,"nb":1,"a":[["other/phage_nucleus.html","phage nucleus"]],"b":[["NCBIfam%3ANF051970","Phikzvirus chimallin family"]]},{"id":"DOI:10.1038/s41594-018-0154-1","l":"","na":1,"nb":1,"a":[["other/cbf3_complex.html","CBF3 complex"]],"b":[["InterPro%3AIPR063542","CTF13, C-terminal domain"]]},{"id":"DOI:10.1038/sj.emboj.7601007","l":"","na":1,"nb":1,"a":[["other/exomer_complex.html","exomer complex"]],"b":[["NCBIfam%3ANF020855","ChAPs (Chs5p-Arf1p-binding proteins)"]]},{"id":"DOI:10.1073/pnas.012516899","l":"","na":1,"nb":1,"a":[["cytoskeleton/btubab_bacterial_microtubule.html","BtubAB bacterial microtubule"]],"b":[["InterPro%3AIPR023123","Tubulin, C-terminal"]]},{"id":"DOI:10.1073/pnas.0907453106","l":"","na":1,"nb":1,"a":[["other/nuclear_pore_outer_ring.html","nuclear pore outer ring"]],"b":[["InterPro%3AIPR055090","Nucleoporin NUP120, helical domain, saccharomycetes"]]},{"id":"DOI:10.1073/pnas.1204593109","l":"","na":1,"nb":1,"a":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"]],"b":[["InterPro%3AIPR048938","F1F0-ATP synthase subunit delta, C-terminal domain, fungi"]]},{"id":"DOI:10.1074/jbc.M200682200","l":"","na":1,"nb":1,"a":[["other/rave_complex.html","RAVE complex"]],"b":[["InterPro%3AIPR022033","RAVE complex protein Rav1 C-terminal"]]},{"id":"DOI:10.1074/jbc.M400662200","l":"","na":1,"nb":1,"a":[["other/cog_complex.html","COG complex"]],"b":[["InterPro%3AIPR062390","Conserved oligomeric Golgi complex subunit 7, C-terminal domain"]]},{"id":"DOI:10.1074/jbc.M505553200","l":"","na":1,"nb":1,"a":[["other/torc2_complex.html","TORC2 complex"]],"b":[["InterPro%3AIPR056385","AVO1/Sin1, ubiquitin-like domain"]]},{"id":"DOI:10.1091/mbc.10.11.3643","l":"","na":1,"nb":1,"a":[["other/ap_1_adaptor_complex.html","AP-1 adaptor complex"]],"b":[["InterPro%3AIPR027200","Adaptin medium chain homologue Apm2, N-terminal domain"]]},{"id":"DOI:10.1091/mbc.E17-06-0397","l":"","na":1,"nb":1,"a":[["cytoskeleton/spindle_pole_body.html","spindle pole body"]],"b":[["InterPro%3AIPR040593","Spindle pole body component 110, C-terminal"]]},{"id":"DOI:10.1091/mbc.e06-03-0210","l":"","na":1,"nb":1,"a":[["other/exomer_complex.html","exomer complex"]],"b":[["InterPro%3AIPR031673","Chitin biosynthesis protein Chs5, N-terminal"]]},{"id":"DOI:10.1091/mbc.e06-07-0588","l":"","na":1,"nb":1,"a":[["other/escrt_i_complex.html","ESCRT I complex"]],"b":[["InterPro%3AIPR019014","Multivesicular body sorting factor 12"]]},{"id":"DOI:10.1093/emboj/cdg485","l":"","na":1,"nb":1,"a":[["other/pam_complex_tim23_associated_import_motor.html","PAM complex, Tim23 associated import motor"]],"b":[["InterPro%3AIPR061970","TIM14, N-terminal domain"]]},{"id":"DOI:10.1093/genetics/152.3.853","l":"","na":1,"nb":1,"a":[["other/gtr1_gtr2_gtpase_complex.html","Gtr1-Gtr2 GTPase complex"]],"b":[["NCBIfam%3ANF016548","Gtr1/RagA G protein conserved region"]]},{"id":"DOI:10.1111/febs.12534","l":"","na":1,"nb":1,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"]],"b":[["NCBIfam%3ANF048748","ArlX"]]},{"id":"DOI:10.1126/science.1123231","l":"","na":1,"nb":1,"a":[["cytoskeleton/mamk_filament.html","MamK filament"]],"b":[["NCBIfam%3ANF040964","MamK family actin-like protein"]]},{"id":"DOI:10.1126/science.290.5499.2148","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"]],"b":[["NCBIfam%3ANF005955","flagellar filament capping protein FliD"]]},{"id":"DOI:10.1126/scisignal.2004112","l":"","na":1,"nb":1,"a":[["other/gator1_complex.html","GATOR1 complex"]],"b":[["InterPro%3AIPR057068","IML1, N-terminal domain, fungi"]]},{"id":"DOI:10.1128/JB.06529-11","l":"","na":1,"nb":1,"a":[["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]],"b":[["NCBIfam%3ATIGR04493","PduM family microcompartment protein"]]},{"id":"DOI:10.1128/JB.181.5.1388-1394.1999","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["NCBIfam%3ANF016250","flagellar biosynthetic protein FliO"]]},{"id":"DOI:10.1128/JB.182.15.4207-4215.2000","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["NCBIfam%3ATIGR02473","flagellar export protein FliJ"]]},{"id":"DOI:10.1128/JB.185.17.5086-5095.2003","l":"","na":1,"nb":1,"a":[["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]],"b":[["InterPro%3AIPR036677","EutN/Ccml superfamily"]]},{"id":"DOI:10.1128/MMBR.67.4.593-656.2003","l":"","na":1,"nb":1,"a":[["envelope/cell_outer_membrane.html","cell outer membrane"]],"b":[["InterPro%3AIPR033900","Porin domain, Gram-negative type"]]},{"id":"DOI:10.1128/jb.176.12.3559-3567.1994","l":"","na":1,"nb":1,"a":[["inclusion/r_body.html","R-body"]],"b":[["NCBIfam%3ANF023175","RebB family R body protein"]]},{"id":"DOI:10.1146/annurev.genet.33.1.261","l":"","na":1,"nb":1,"a":[["other/nucleolus.html","nucleolus"]],"b":[["NCBIfam%3ANF016308","Gar1/Naf1 RNA binding region"]]},{"id":"DOI:10.1371/journal.pone.0043871","l":"","na":1,"nb":1,"a":[["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["NCBIfam%3ANF053792","beta-carboxysome assembly protein CcmO"]]},{"id":"DOI:10.15252/embj.201798134","l":"","na":1,"nb":1,"a":[["other/cbf3_complex.html","CBF3 complex"]],"b":[["InterPro%3AIPR063542","CTF13, C-terminal domain"]]},{"id":"DOI:10.3389/fmicb.2020.610179","l":"","na":1,"nb":1,"a":[["inclusion/gas_vesicle.html","gas vesicle"]],"b":[["NCBIfam%3ANF056470","Gas vesicle protein I"]]},{"id":"DOI:10.3390/microorganisms8081173","l":"","na":1,"nb":1,"a":[["secretion_system/type_ix_protein_secretion_system_complex.html","type IX protein secretion system complex"]],"b":[["NCBIfam%3ATIGR04189","T9SS outer membrane translocon Sov/SprA"]]},{"id":"GO:0000147","l":"actin cortical patch assembly","na":1,"nb":1,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"]],"b":[["GO%3A0000147","actin cortical patch assembly"]]},{"id":"GO:0000937","l":"dolipore septum","na":1,"nb":1,"a":[["envelope/dolipore_septum.html","dolipore septum"]],"b":[["GO%3A0000937","dolipore septum"]]},{"id":"GO:0001411","l":"hyphal tip","na":1,"nb":1,"a":[["other/spitzenkorper.html","spitzenkorper"]],"b":[["GO%3A0001411","hyphal tip"]]},{"id":"GO:0005905","l":"clathrin-coated pit","na":1,"nb":1,"a":[["other/clathrin_coat_of_coated_pit.html","clathrin coat of coated pit"]],"b":[["GO%3A0005905","clathrin-coated pit"]]},{"id":"GO:0020003","l":"symbiont-containing vacuole","na":1,"nb":1,"a":[["membrane_organelle/parasitophorous_vacuole.html","parasitophorous vacuole"]],"b":[["GO%3A0020003","symbiont-containing vacuole"]]},{"id":"GO:0020004","l":"symbiont-containing vacuolar space","na":1,"nb":1,"a":[["membrane_organelle/parasitophorous_vacuole_lumen.html","parasitophorous vacuole lumen"]],"b":[["GO%3A0020004","symbiont-containing vacuolar space"]]},{"id":"GO:0020018","l":"ciliary pocket membrane","na":1,"nb":1,"a":[["membrane_organelle/flagellar_pocket.html","flagellar pocket"]],"b":[["GO%3A0020018","ciliary pocket membrane"]]},{"id":"GO:0020020","l":"food vacuole","na":1,"nb":1,"a":[["membrane_organelle/food_vacuole.html","food vacuole"]],"b":[["GO%3A0020020","food vacuole"]]},{"id":"GO:0031080","l":"nuclear pore outer ring","na":1,"nb":1,"a":[["other/nuclear_pore_outer_ring.html","nuclear pore outer ring"]],"b":[["GO%3A0031080","nuclear pore outer ring"]]},{"id":"GO:0031205","l":"endoplasmic reticulum Sec complex","na":1,"nb":1,"a":[["other/sec62_sec63_complex.html","Sec62/Sec63 complex"]],"b":[["GO%3A0031205","endoplasmic reticulum Sec complex"]]},{"id":"GO:0031471","l":"ethanolamine degradation polyhedral organelle","na":1,"nb":1,"a":[["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"]],"b":[["GO%3A0031471","ethanolamine degradation polyhedral organelle"]]},{"id":"GO:0031472","l":"propanediol degradation polyhedral organelle","na":1,"nb":1,"a":[["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]],"b":[["GO%3A0031472","propanediol degradation polyhedral organelle"]]},{"id":"GO:0031521","l":"spitzenkorper","na":1,"nb":1,"a":[["other/spitzenkorper.html","spitzenkorper"]],"b":[["GO%3A0031521","spitzenkorper"]]},{"id":"GO:0031560","l":"cellular bud neck polarisome","na":1,"nb":1,"a":[["other/polarisome.html","polarisome"]],"b":[["GO%3A0031560","cellular bud neck polarisome"]]},{"id":"GO:0031562","l":"hyphal tip polarisome","na":1,"nb":1,"a":[["other/polarisome.html","polarisome"]],"b":[["GO%3A0031562","hyphal tip polarisome"]]},{"id":"GO:0031563","l":"mating projection tip polarisome","na":1,"nb":1,"a":[["other/polarisome.html","polarisome"]],"b":[["GO%3A0031563","mating projection tip polarisome"]]},{"id":"GO:0031910","l":"cytostome","na":1,"nb":1,"a":[["other/cytostome.html","cytostome"]],"b":[["GO%3A0031910","cytostome"]]},{"id":"GO:0032120","l":"ascospore-type prospore membrane formation","na":1,"nb":1,"a":[["spore/prospore_membrane.html","prospore membrane"]],"b":[["GO%3A0032120","ascospore-type prospore membrane formation"]]},{"id":"GO:0033009","l":"nucleomorph","na":1,"nb":1,"a":[["membrane_organelle/nucleomorph.html","nucleomorph"]],"b":[["GO%3A0033009","nucleomorph"]]},{"id":"GO:0033172","l":"gas vesicle shell","na":1,"nb":1,"a":[["inclusion/gas_vesicle_shell.html","gas vesicle shell"]],"b":[["GO%3A0033172","gas vesicle shell"]]},{"id":"GO:0033985","l":"acidocalcisome lumen","na":1,"nb":1,"a":[["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"]],"b":[["GO%3A0033985","acidocalcisome lumen"]]},{"id":"GO:0036000","l":"mucocyst","na":1,"nb":1,"a":[["membrane_organelle/mucocyst.html","mucocyst"]],"b":[["GO%3A0036000","mucocyst"]]},{"id":"GO:0036407","l":"mycolate outer membrane","na":1,"nb":1,"a":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]],"b":[["GO%3A0036407","mycolate outer membrane"]]},{"id":"GO:0042645","l":"mitochondrial nucleoid","na":1,"nb":1,"a":[["nucleoid/mitochondrial_nucleoid.html","mitochondrial nucleoid"]],"b":[["GO%3A0042645","mitochondrial nucleoid"]]},{"id":"GO:0042764","l":"ascospore-type prospore","na":1,"nb":1,"a":[["spore/prospore_membrane.html","prospore membrane"]],"b":[["GO%3A0042764","ascospore-type prospore"]]},{"id":"GO:0043263","l":"cellulosome","na":1,"nb":1,"a":[["other/cellulosome.html","cellulosome"]],"b":[["GO%3A0043263","cellulosome"]]},{"id":"GO:0044227","l":"methane-oxidizing organelle","na":1,"nb":1,"a":[["membrane_organelle/methane_oxidizing_organelle.html","methane-oxidizing organelle"]],"b":[["GO%3A0044227","methane-oxidizing organelle"]]},{"id":"GO:0044311","l":"exoneme","na":1,"nb":1,"a":[["membrane_organelle/exoneme.html","exoneme"]],"b":[["GO%3A0044311","exoneme"]]},{"id":"GO:0044611","l":"nuclear pore inner ring","na":1,"nb":1,"a":[["other/nuclear_pore_inner_ring.html","nuclear pore inner ring"]],"b":[["GO%3A0044611","nuclear pore inner ring"]]},{"id":"GO:0044612","l":"nuclear pore linkers","na":1,"nb":1,"a":[["other/nuclear_pore_linkers.html","nuclear pore linkers"]],"b":[["GO%3A0044612","nuclear pore linkers"]]},{"id":"GO:0044613","l":"nuclear pore central transport channel","na":1,"nb":1,"a":[["other/nuclear_pore_central_transport_channel.html","nuclear pore central transport channel"]],"b":[["GO%3A0044613","nuclear pore central transport channel"]]},{"id":"GO:0044614","l":"nuclear pore cytoplasmic filaments","na":1,"nb":1,"a":[["other/nuclear_pore_cytoplasmic_filaments.html","nuclear pore cytoplasmic filaments"]],"b":[["GO%3A0044614","nuclear pore cytoplasmic filaments"]]},{"id":"GO:0044615","l":"nuclear pore nuclear basket","na":1,"nb":1,"a":[["other/nuclear_pore_nuclear_basket.html","nuclear pore nuclear basket"]],"b":[["GO%3A0044615","nuclear pore nuclear basket"]]},{"id":"GO:0046188","l":"methane catabolic process","na":1,"nb":1,"a":[["membrane_organelle/methane_oxidizing_organelle.html","methane-oxidizing organelle"]],"b":[["GO%3A0046188","methane catabolic process"]]},{"id":"GO:0055039","l":"trichocyst","na":1,"nb":1,"a":[["membrane_organelle/trichocyst.html","trichocyst"]],"b":[["GO%3A0055039","trichocyst"]]},{"id":"GO:0061909","l":"autophagosome-lysosome fusion","na":1,"nb":1,"a":[["membrane_organelle/autophagosome.html","autophagosome"]],"b":[["GO%3A0061909","autophagosome-lysosome fusion"]]},{"id":"GO:0061927","l":"TOC-TIC supercomplex I","na":1,"nb":1,"a":[["membrane_organelle/chloroplast.html","chloroplast"]],"b":[["GO%3A0061927","TOC-TIC supercomplex I"]]},{"id":"GO:0062160","l":"spongiome","na":1,"nb":1,"a":[["membrane_organelle/spongiome.html","spongiome"]],"b":[["GO%3A0062160","spongiome"]]},{"id":"GO:0070258","l":"inner membrane pellicle complex","na":1,"nb":1,"a":[["membrane_organelle/inner_membrane_pellicle_complex.html","inner membrane pellicle complex"]],"b":[["GO%3A0070258","inner membrane pellicle complex"]]},{"id":"GO:0097268","l":"cytoophidium","na":1,"nb":1,"a":[["cytoskeleton/cytoophidium.html","cytoophidium"]],"b":[["GO%3A0097268","cytoophidium"]]},{"id":"GO:0097691","l":"bacterial extracellular vesicle","na":1,"nb":1,"a":[["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"]],"b":[["GO%3A0097691","bacterial extracellular vesicle"]]},{"id":"GO:0097740","l":"paraflagellar rod","na":1,"nb":1,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["GO%3A0097740","paraflagellar rod"]]},{"id":"GO:0097741","l":"mastigoneme","na":1,"nb":1,"a":[["appendage/mastigoneme.html","mastigoneme"]],"b":[["GO%3A0097741","mastigoneme"]]},{"id":"GO:0098561","l":"methyl accepting chemotaxis protein complex","na":1,"nb":1,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["GO%3A0098561","methyl accepting chemotaxis protein complex"]]},{"id":"GO:0098774","l":"curli","na":1,"nb":1,"a":[["appendage/curli.html","curli"]],"b":[["GO%3A0098774","curli"]]},{"id":"GO:0110145","l":"magnetosome lumen","na":1,"nb":1,"a":[["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"]],"b":[["GO%3A0110145","magnetosome lumen"]]},{"id":"GO:0120120","l":"bilobe structure","na":1,"nb":1,"a":[["cytoskeleton/bilobe_structure.html","bilobe structure"]],"b":[["GO%3A0120120","bilobe structure"]]},{"id":"GO:0120121","l":"tripartite attachment complex","na":1,"nb":1,"a":[["cytoskeleton/tripartite_attachment_complex.html","tripartite attachment complex"]],"b":[["GO%3A0120121","tripartite attachment complex"]]},{"id":"GO:0120234","l":"stereocilium coat","na":1,"nb":1,"a":[["envelope/glycocalyx.html","glycocalyx"]],"b":[["GO%3A0120234","stereocilium coat"]]},{"id":"GO:0120238","l":"sperm glycocalyx","na":1,"nb":1,"a":[["envelope/glycocalyx.html","glycocalyx"]],"b":[["GO%3A0120238","sperm glycocalyx"]]},{"id":"GO:0120239","l":"vascular endothelial glycocalyx","na":1,"nb":1,"a":[["envelope/glycocalyx.html","glycocalyx"]],"b":[["GO%3A0120239","vascular endothelial glycocalyx"]]},{"id":"GO:0120240","l":"platelet glycocalyx","na":1,"nb":1,"a":[["envelope/glycocalyx.html","glycocalyx"]],"b":[["GO%3A0120240","platelet glycocalyx"]]},{"id":"GO:0140266","l":"Woronin body","na":1,"nb":1,"a":[["membrane_organelle/woronin_body.html","Woronin body"]],"b":[["GO%3A0140266","Woronin body"]]},{"id":"GO:0140621","l":"type I pilus","na":1,"nb":1,"a":[["appendage/type_i_pilus.html","type I pilus"]],"b":[["GO%3A0140621","type I pilus"]]},{"id":"GO:0140623","l":"type I pilus assembly","na":1,"nb":1,"a":[["appendage/type_i_pilus.html","type I pilus"]],"b":[["GO%3A0140623","type I pilus assembly"]]},{"id":"GO:0160201","l":"polaroplast","na":1,"nb":1,"a":[["membrane_organelle/polaroplast.html","polaroplast"]],"b":[["GO%3A0160201","polaroplast"]]},{"id":"GO:0160202","l":"polar tube anchoring disc","na":1,"nb":1,"a":[["spore/polar_tube_anchoring_disc.html","polar tube anchoring disc"]],"b":[["GO%3A0160202","polar tube anchoring disc"]]},{"id":"GO:1990131)","l":"","na":1,"nb":1,"a":[["other/ragulator_complex.html","Ragulator complex"]],"b":[["GO%3A0071986","Ragulator complex"]]},{"id":"GO:1990225","l":"rhoptry neck","na":1,"nb":1,"a":[["membrane_organelle/rhoptry_neck.html","rhoptry neck"]],"b":[["GO%3A1990225","rhoptry neck"]]},{"id":"GO:1990413","l":"eyespot apparatus","na":1,"nb":1,"a":[["membrane_organelle/eyespot_apparatus.html","eyespot apparatus"]],"b":[["GO%3A1990413","eyespot apparatus"]]},{"id":"InterPro:IPR000067","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"]],"b":[["PRINTS%3APR01009","Flagellar M-ring protein signature"]]},{"id":"InterPro:IPR006136","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF01312","FlhB HrpN YscU SpaS Family"]]},{"id":"InterPro:IPR006303","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF01311","Bacterial export proteins, family 1"]]},{"id":"InterPro:IPR006305","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF01313","Bacterial export proteins, family 3"]]},{"id":"InterPro:IPR007824","l":"","na":1,"nb":1,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["Pfam%3APF05149","Paraflagellar rod protein"]]},{"id":"InterPro:IPR012823","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF02050","Flagellar FliJ protein"]]},{"id":"InterPro:IPR023707","l":"","na":1,"nb":1,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["HAMAP%3AMF_01430","Outer membrane protein assembly factor BamA [bamA]"]]},{"id":"NCBITaxon:5665","l":"Leishmania mexicana","na":1,"nb":1,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["MCSA%3A593","glycerol-3-phosphate dehydrogenase (NAD+)"]]},{"id":"Pfam:PF05149","l":"Paraflagellar rod protein","na":1,"nb":1,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["Pfam%3APF05149","Paraflagellar rod protein"]]},{"id":"UniProt:A0QQ46","l":"","na":1,"nb":1,"a":[["secretion_system/esx_3_type_vii_secretion_system_membrane_complex.html","ESX-3 type VII secretion system membrane complex"]],"b":[["Pfam%3APF19053","EccD-like transmembrane domain"]]},{"id":"UniProt:O85041","l":"","na":1,"nb":1,"a":[["microcompartment/carboxysome.html","carboxysome"]],"b":[["Pfam%3APF12288","Carboxysome shell peptide mid-region"]]},{"id":"UniProt:P0A1C7","l":"","na":1,"nb":1,"a":[["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]],"b":[["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"UniProt:P0A1K1","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF02050","Flagellar FliJ protein"]]},{"id":"UniProt:P0A1N8","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"]],"b":[["proteintraitsmech%3ABIOLIP_TQN","TQN-binding site"]]},{"id":"UniProt:P0A314","l":"","na":1,"nb":1,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"]],"b":[["Pfam%3APF02043","Bacteriochlorophyll C binding protein"]]},{"id":"UniProt:P0A3F8","l":"","na":1,"nb":1,"a":[["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]],"b":[["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]]},{"id":"UniProt:P0A3W0","l":"","na":1,"nb":1,"a":[["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]],"b":[["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"]]},{"id":"UniProt:P0ABB4","l":"","na":1,"nb":1,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"]]},{"id":"UniProt:P14016","l":"","na":1,"nb":1,"a":[["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]],"b":[["Pfam%3APF10628","Outer spore coat protein E (CotE)"]]},{"id":"UniProt:P22225","l":"","na":1,"nb":1,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["Pfam%3APF05149","Paraflagellar rod protein"]]},{"id":"UniProt:P26418","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]],"b":[["Pfam%3APF02154","Flagellar motor switch protein FliM"]]},{"id":"UniProt:P26419","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]],"b":[["Pfam%3APF16973","Flagellar motor switch protein FliN N-terminal"]]},{"id":"UniProt:P27134","l":"","na":1,"nb":1,"a":[["microcompartment/carboxysome.html","carboxysome"]],"b":[["PROSITE%3APS00704","Prokaryotic-type carbonic anhydrases signature 1"]]},{"id":"UniProt:P40727","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF01312","FlhB HrpN YscU SpaS Family"]]},{"id":"UniProt:P41784","l":"","na":1,"nb":1,"a":[["secretion_system/type_iii_protein_secretion_system_complex.html","type III protein secretion system complex"]],"b":[["proteintraitsmech%3ABIOLIP_DXC","DXC-binding site"]]},{"id":"UniProt:P41791","l":"","na":1,"nb":1,"a":[["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"]],"b":[["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"UniProt:P41792","l":"","na":1,"nb":1,"a":[["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"]],"b":[["Pfam%3APF03319","Ethanolamine utilisation protein EutN/carboxysome"]]},{"id":"UniProt:P54702","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF01311","Bacterial export proteins, family 1"]]},{"id":"UniProt:P70856","l":"","na":1,"nb":1,"a":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]],"b":[["Pfam%3APF04620","Flagellar filament outer layer protein Flaa"]]},{"id":"UniProt:P75471","l":"","na":1,"nb":1,"a":[["appendage/attachment_organelle.html","attachment organelle"]],"b":[["Pfam%3APF27734","Cytadherence high molecular weight protein 2"]]},{"id":"UniProt:P9WHT9","l":"","na":1,"nb":1,"a":[["other/proteasome_core_complex.html","proteasome core complex"]],"b":[["proteintraitsmech%3ABIOLIP_SA6","SA6-binding site"]]},{"id":"UniProt:Q06851","l":"","na":1,"nb":1,"a":[["other/cellulosome.html","cellulosome"]],"b":[["Pfam%3APF00963","Cohesin domain"]]},{"id":"UniProt:Q26789","l":"","na":1,"nb":1,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["Pfam%3APF05149","Paraflagellar rod protein"]]},{"id":"UniProt:Q46367","l":"","na":1,"nb":1,"a":[["membrane_organelle/chlorosome.html","chlorosome"]],"b":[["Pfam%3APF11098","Chlorosome envelope protein C"]]},{"id":"UniProt:Q46383","l":"","na":1,"nb":1,"a":[["membrane_organelle/chlorosome.html","chlorosome"]],"b":[["Pfam%3APF27499","CsmB chlorosome envelope protein"]]},{"id":"UniProt:Q46386","l":"","na":1,"nb":1,"a":[["membrane_organelle/chlorosome.html","chlorosome"]],"b":[["Pfam%3APF02043","Bacteriochlorophyll C binding protein"]]},{"id":"UniProt:Q9XDM8","l":"","na":1,"nb":1,"a":[["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]],"b":[["Pfam%3APF00936","BMC domain"]]}]} \ No newline at end of file +{"a":"CellStructureMech","b":"ProteinTraitsMech","base":{"CellStructureMech":"https://culturebotai.github.io/CellStructureMech/pages/structures/","ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record="},"n":1058,"by":{"GO":737,"UniProt":155,"NCBITaxon":77,"InterPro":64,"CHEBI":15,"Pfam":10},"terms":[{"id":"GO:0032991","l":"protein-containing complex","na":37,"nb":17037,"a":[["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/stalk_crossband.html","stalk crossband"],["cytoskeleton/eisosome_filament.html","eisosome filament"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["other/chaperonin_containing_t_complex.html","chaperonin-containing T-complex"],["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["ComplexPortal%3ACPX-5225","28S mitochondrial small ribosomal subunit"],["ComplexPortal%3ACPX-5301","28S mitochondrial small ribosomal subunit"],["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["ComplexPortal%3ACPX-10315","37S mitochondrial small ribosomal subunit"],["ComplexPortal%3ACPX-1603","37S mitochondrial small ribosomal subunit"],["ComplexPortal%3ACPX-5226","39S mitochondrial large ribosomal subunit"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":31,"nb":145,"a":[["appendage/curli.html","curli"],["appendage/p_pilus.html","P pilus"],["appendage/pilus.html","pilus"],["appendage/type_i_pilus.html","type I pilus"],["cytoskeleton/parm_filament.html","ParM filament"],["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]],"b":[["IDPO%3A0000033","flexible linker"],["IDPO%3A0000014","order to disorder"],["IDPO%3A0000004","pre-molten globule"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"]]},{"id":"NCBITaxon:3055","l":"Chlamydomonas reinhardtii","na":58,"nb":27,"a":[["appendage/ciliary_membrane.html","ciliary membrane"],["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"],["appendage/mastigoneme.html","mastigoneme"],["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_a_tubule_inner_sheath.html","axonemal A tubule inner sheath"]],"b":[["Pfam%3APF01333","Apocytochrome F, C-terminal"],["Pfam%3APF16639","Apocytochrome F, N-terminal"],["Pfam%3APF00430","ATP synthase B/B' CF(0)"],["Pfam%3APF00401","ATP synthase, Delta/Epsilon chain, long alpha-helix domain"],["Pfam%3APF21771","CFAP58 central coiled coil"],["Pfam%3APF27956","CFAP99 V-shaped coiled-coil domain"]]},{"id":"GO:0016020","l":"membrane","na":23,"nb":3003,"a":[["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["envelope/cell_outer_membrane.html","cell outer membrane"],["envelope/cellular_bud_membrane.html","cellular bud membrane"],["envelope/plasma_membrane.html","plasma membrane"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"]],"b":[["ComplexPortal%3ACPX-1813","1,3-beta-D-glucan synthase complex, FKS2-RHO1 variant"],["ComplexPortal%3ACPX-4313","Aliphatic sulfonate ABC transporter complex"],["ComplexPortal%3ACPX-4314","Arabinose ABC transporter complex"],["ComplexPortal%3ACPX-4318","Arginine ABC transporter complex, artI variant"],["ComplexPortal%3ACPX-4319","Arginine ABC transporter complex, artJ variant"],["ComplexPortal%3ACPX-6308","ATP10B-CDC50A P4-ATPase complex"]]},{"id":"GO:0043231","l":"intracellular membrane-bounded organelle","na":22,"nb":930,"a":[["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"],["membrane_organelle/exoneme.html","exoneme"],["membrane_organelle/ferrosome.html","ferrosome"],["membrane_organelle/golgi_apparatus.html","Golgi apparatus"]],"b":[["GO%3A0020022","acidocalcisome"],["GO%3A0044222","anammoxosome"],["GO%3A0033099","attachment organelle"],["GO%3A0005801","cis-Golgi network"],["GO%3A0005783","endoplasmic reticulum"],["GO%3A0005793","endoplasmic reticulum-Golgi intermediate compartment"]]},{"id":"NCBITaxon:99287","l":"Salmonella typhimurium (strain LT2 / SGSC1412 / ATCC 700720)","na":16,"nb":167,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"],["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"]],"b":[["Pfam%3APF16031","TonB polyproline region"],["Pfam%3APF13521","AAA domain"],["Pfam%3APF26341","tRNA 2-selenouridine synthase AAA domain"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"],["Pfam%3APF09317","Acyl-CoA dehydrogenase, C-terminal, bacterial type"],["Pfam%3APF06315","Isocitrate dehydrogenase kinase/phosphatase (AceK) kinase domain"]]},{"id":"GO:0005856","l":"cytoskeleton","na":16,"nb":148,"a":[["cytoskeleton/alfa_filament.html","AlfA filament"],["cytoskeleton/bactofilin_filament.html","bactofilin filament"],["cytoskeleton/bilobe_structure.html","bilobe structure"],["cytoskeleton/btubab_bacterial_microtubule.html","BtubAB bacterial microtubule"],["cytoskeleton/cetz_filament.html","CetZ filament"],["cytoskeleton/ciliary_basal_body.html","ciliary basal body"]],"b":[["GO%3A0015629","actin cytoskeleton"],["GO%3A0030863","cortical cytoskeleton"],["GO%3A0005856","cytoskeleton"],["GO%3A0045111","intermediate filament cytoskeleton"],["GO%3A0015630","microtubule cytoskeleton"],["GO%3A0033011","perinuclear theca"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":15,"nb":17470,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]],"b":[["EC%3A1.1.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.16.-.-","Oxidizing metal ions"],["EC%3A1.18.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.7.-","With an iron-sulfur protein as acceptor"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":14,"nb":15,"a":[["cytoskeleton/alfa_filament.html","AlfA filament"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]],"b":[["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["Pfam%3APF14562","Restriction endonuclease BglI"],["Pfam%3APF09195","Restriction endonuclease BglII/BglIII"],["Pfam%3APF09208","Restriction endonuclease MspI"]]},{"id":"GO:0005737","l":"cytoplasm","na":13,"nb":2018,"a":[["envelope/plasma_membrane.html","plasma membrane"],["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"],["membrane_organelle/mitosome.html","mitosome"]],"b":[["ComplexPortal%3ACPX-3921","2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["ComplexPortal%3ACPX-1599","40S cytosolic small ribosomal subunit"],["ComplexPortal%3ACPX-5223","40S cytosolic small ribosomal subunit"],["ComplexPortal%3ACPX-5261","40S cytosolic small ribosomal subunit"],["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"]]},{"id":"GO:0005789","l":"endoplasmic reticulum membrane","na":13,"nb":218,"a":[["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"],["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"],["membrane_organelle/endoplasmic_reticulum_lumen.html","endoplasmic reticulum lumen"],["membrane_organelle/endoplasmic_reticulum_membrane.html","endoplasmic reticulum membrane"],["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"],["other/copii_vesicle_coat.html","COPII vesicle coat"]],"b":[["ComplexPortal%3ACPX-8021","BOS complex, NOMO1 variant"],["ComplexPortal%3ACPX-8022","BOS complex, NOMO2 variant"],["ComplexPortal%3ACPX-8023","BOS complex, NOMO3 variant"],["ComplexPortal%3ACPX-2211","Commander complex"],["ComplexPortal%3ACPX-6701","Dehydrodolichyl diphosphate synthase complex"],["ComplexPortal%3ACPX-6268","Dolichol-phosphate mannosyltransferase complex"]]},{"id":"GO:0005743","l":"mitochondrial inner membrane","na":13,"nb":108,"a":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"],["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrial_intermembrane_space.html","mitochondrial intermembrane space"],["membrane_organelle/mitochondrial_matrix.html","mitochondrial matrix"]],"b":[["ComplexPortal%3ACPX-5225","28S mitochondrial small ribosomal subunit"],["ComplexPortal%3ACPX-5301","28S mitochondrial small ribosomal subunit"],["ComplexPortal%3ACPX-1603","37S mitochondrial small ribosomal subunit"],["ComplexPortal%3ACPX-5226","39S mitochondrial large ribosomal subunit"],["ComplexPortal%3ACPX-5302","39S mitochondrial large ribosomal subunit"],["ComplexPortal%3ACPX-1602","54S mitochondrial large ribosomal subunit"]]},{"id":"GO:0010008","l":"endosome membrane","na":13,"nb":60,"a":[["membrane_organelle/early_endosome_membrane.html","early endosome membrane"],["membrane_organelle/endosome.html","endosome"],["membrane_organelle/endosome_lumen.html","endosome lumen"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/late_endosome_membrane.html","late endosome membrane"]],"b":[["ComplexPortal%3ACPX-2211","Commander complex"],["ComplexPortal%3ACPX-5424","Endosomal SNARE complex PEP12-VTI1-SYN8-SNC1"],["ComplexPortal%3ACPX-5461","Endosomal SNARE complex PEP12-VTI1-SYN8-SNC2"],["ComplexPortal%3ACPX-5421","Endosomal SNARE complex PEP12-VTI1-SYN8-YKT6"],["ComplexPortal%3ACPX-5423","Endosomal SNARE complex PEP12-VTI1-TLG1-SNC1"],["ComplexPortal%3ACPX-5462","Endosomal SNARE complex PEP12-VTI1-TLG1-SNC2"]]},{"id":"GO:0009767","l":"photosynthetic electron transport chain","na":13,"nb":13,"a":[["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/photosystem_i.html","photosystem I"],["energy_complex/photosystem_ii.html","photosystem II"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]],"b":[["GO%3A0009767","photosynthetic electron transport chain"],["GO%3A0009773","photosynthetic electron transport in photosystem I"],["GO%3A0009772","photosynthetic electron transport in photosystem II"],["NCBIfam%3ATIGR01332","cytochrome b559 subunit alpha"],["NCBIfam%3ATIGR01333","cytochrome b559 subunit beta"],["NCBIfam%3ATIGR01156","cytochrome b6-f complex subunit IV"]]},{"id":"GO:0000139","l":"Golgi membrane","na":12,"nb":67,"a":[["membrane_organelle/cis_golgi_network_membrane.html","cis-Golgi network membrane"],["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/golgi_apparatus.html","Golgi apparatus"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"]],"b":[["ComplexPortal%3ACPX-7803","COPI vesicle coat complex, COPG1-COPZ1 variant"],["ComplexPortal%3ACPX-7970","COPI vesicle coat complex, COPG1-COPZ2 variant"],["ComplexPortal%3ACPX-7969","COPI vesicle coat complex, COPG2-COPZ1 variant"],["ComplexPortal%3ACPX-5424","Endosomal SNARE complex PEP12-VTI1-SYN8-SNC1"],["ComplexPortal%3ACPX-5461","Endosomal SNARE complex PEP12-VTI1-SYN8-SNC2"],["ComplexPortal%3ACPX-5421","Endosomal SNARE complex PEP12-VTI1-SYN8-YKT6"]]},{"id":"GO:0005768","l":"endosome","na":12,"nb":50,"a":[["membrane_organelle/early_endosome.html","early endosome"],["membrane_organelle/endosome.html","endosome"],["membrane_organelle/endosome_lumen.html","endosome lumen"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/recycling_endosome.html","recycling endosome"]],"b":[["ComplexPortal%3ACPX-1153","BLOC-1 complex"],["ComplexPortal%3ACPX-6241","CHEVI tethering complex"],["ComplexPortal%3ACPX-362","Heparanase complex"],["GO%3A0005769","early endosome"],["GO%3A0036019","endolysosome"],["GO%3A0005768","endosome"]]},{"id":"GO:0005930","l":"axoneme","na":12,"nb":26,"a":[["appendage/cilium.html","cilium"],["appendage/paraflagellar_rod.html","paraflagellar rod"],["cytoskeleton/axonemal_central_apparatus.html","axonemal central apparatus"],["cytoskeleton/axonemal_doublet_microtubule.html","axonemal doublet microtubule"],["cytoskeleton/axonemal_dynein_complex.html","axonemal dynein complex"],["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"]],"b":[["ComplexPortal%3ACPX-8086","Nexin-dynein regulatory complex"],["ComplexPortal%3ACPX-2626","Outer dynein arm-docking complex"],["ComplexPortal%3ACPX-8163","Radial spoke complex, ciliiar variant"],["GO%3A0005930","axoneme"],["Pfam%3APF24161","Coiled-coil domain-containing protein 39"],["PANTHER%3APTHR46625","72 KDA INOSITOL POLYPHOSPHATE 5-PHOSPHATASE"]]},{"id":"GO:0030659","l":"cytoplasmic vesicle membrane","na":12,"nb":24,"a":[["membrane_organelle/autophagosome_membrane.html","autophagosome membrane"],["membrane_organelle/clathrin_coated_vesicle_membrane.html","clathrin-coated vesicle membrane"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"],["membrane_organelle/cvt_vesicle_membrane.html","Cvt vesicle membrane"],["membrane_organelle/cytoplasmic_vesicle.html","cytoplasmic vesicle"],["membrane_organelle/cytoplasmic_vesicle_lumen.html","cytoplasmic vesicle lumen"]],"b":[["ComplexPortal%3ACPX-8427","ZNT1-ZNT3 proton-coupled zinc antiporter complex"],["ComplexPortal%3ACPX-8428","ZNT2-ZNT3 proton-coupled zinc antiporter complex"],["GO%3A0032578","aleurone grain membrane"],["GO%3A0030661","chitosome membrane"],["GO%3A0030662","coated vesicle membrane"],["GO%3A0031164","contractile vacuolar membrane"]]},{"id":"GO:0097525","l":"spliceosomal snRNP complex","na":12,"nb":18,"a":[["ribonucleoprotein/u11_snrnp.html","U11 snRNP"],["ribonucleoprotein/u11_u12_snrnp.html","U11/U12 snRNP"],["ribonucleoprotein/u12_snrnp.html","U12 snRNP"],["ribonucleoprotein/u1_snrnp.html","U1 snRNP"],["ribonucleoprotein/u2_snrnp.html","U2 snRNP"],["ribonucleoprotein/u4_snrnp.html","U4 snRNP"]],"b":[["GO%3A0071003","penta-snRNP complex"],["GO%3A0071024","SL snRNP"],["GO%3A0097525","spliceosomal snRNP complex"],["GO%3A0097526","spliceosomal tri-snRNP complex"],["GO%3A0005685","U1 snRNP"],["GO%3A0005692","U11 snRNP"]]},{"id":"GO:0042651","l":"thylakoid membrane","na":12,"nb":14,"a":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/phycobilisome.html","phycobilisome"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"]],"b":[["GO%3A0070118","organellar chromatophore thylakoid membrane"],["GO%3A0031676","plasma membrane-derived thylakoid membrane"],["GO%3A0055035","plastid thylakoid membrane"],["GO%3A0042651","thylakoid membrane"],["NCBIfam%3ANF013497","Apocytochrome F, C-terminal"],["NCBIfam%3ATIGR01156","cytochrome b6-f complex subunit IV"]]},{"id":"GO:0031410","l":"cytoplasmic vesicle","na":11,"nb":138,"a":[["membrane_organelle/chitosome.html","chitosome"],["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/cvt_vesicle.html","Cvt vesicle"],["membrane_organelle/cytoplasmic_vesicle.html","cytoplasmic vesicle"],["membrane_organelle/cytoplasmic_vesicle_lumen.html","cytoplasmic vesicle lumen"],["membrane_organelle/cytoplasmic_vesicle_membrane.html","cytoplasmic vesicle membrane"]],"b":[["GO%3A0033095","aleurone grain"],["GO%3A1990006","amorphous vesicle"],["GO%3A0043702","carotenoid vesicle"],["GO%3A0045009","chitosome"],["GO%3A0062247","chloroplast vesicle"],["GO%3A0097721","ciliary vesicle"]]},{"id":"GO:0043233","l":"organelle lumen","na":11,"nb":36,"a":[["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/endoplasmic_reticulum_lumen.html","endoplasmic reticulum lumen"],["membrane_organelle/esterosome_lumen.html","esterosome lumen"],["membrane_organelle/glycosome_lumen.html","glycosome lumen"],["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/hydrogenosome_lumen.html","hydrogenosome lumen"]],"b":[["GO%3A0070013","intracellular organelle lumen"],["GO%3A0043233","organelle lumen"],["GO%3A0034591","rhoptry lumen"],["GO%3A0120203","rod photoreceptor disc lumen"],["GO%3A0031983","vesicle lumen"],["PANTHER%3APTHR13457","BAP28"]]},{"id":"GO:0005886","l":"plasma membrane","na":10,"nb":861,"a":[["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["appendage/prostheca.html","prostheca"],["envelope/cellular_bud_membrane.html","cellular bud membrane"],["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"],["envelope/plasma_membrane.html","plasma membrane"]],"b":[["ComplexPortal%3ACPX-2838","3M complex"],["ComplexPortal%3ACPX-850","AHNAK - Annexin A2 - S100-A10 complex"],["ComplexPortal%3ACPX-6581","Alpha-beta T cell receptor complex, TRBC1 variant"],["ComplexPortal%3ACPX-6482","Alpha-beta T cell receptor complex, TRBC2 variant"],["ComplexPortal%3ACPX-2188","Amiloride-sensitive sodium channel complex, alpha-beta-gamma"],["ComplexPortal%3ACPX-3582","AMT1-1 - AMT1-3 heterotrimer, variant 1"]]},{"id":"GO:0005794","l":"Golgi apparatus","na":10,"nb":93,"a":[["membrane_organelle/cis_golgi_network.html","cis-Golgi network"],["membrane_organelle/cis_golgi_network_membrane.html","cis-Golgi network membrane"],["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"],["membrane_organelle/golgi_apparatus.html","Golgi apparatus"],["membrane_organelle/golgi_cisterna.html","Golgi cisterna"],["membrane_organelle/golgi_cisterna_membrane.html","Golgi cisterna membrane"]],"b":[["ComplexPortal%3ACPX-26603","ATP9A-DOP1B-MON2, golgi transporter complex"],["ComplexPortal%3ACPX-26602","DOP1A-MON2, golgi-endosome traffic complex"],["ComplexPortal%3ACPX-8422","HAS1-HAS2 hyaluronan biosynthesis complex"],["ComplexPortal%3ACPX-8410","HAS1-HAS3 hyaluronan biosynthesis complex"],["ComplexPortal%3ACPX-8481","HAS1 hyaluronan biosynthesis complex"],["ComplexPortal%3ACPX-8424","HAS2-HAS3 hyaluronan biosynthesis complex"]]},{"id":"GO:0000776","l":"kinetochore","na":10,"nb":59,"a":[["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"],["other/cbf3_complex.html","CBF3 complex"],["other/coma_complex.html","COMA complex"],["other/dash_complex.html","DASH complex"],["other/kinetochore.html","kinetochore"]],"b":[["ComplexPortal%3ACPX-1898","CBF3 complex"],["ComplexPortal%3ACPX-1156","Central kinetochore CTF19 complex"],["ComplexPortal%3ACPX-10081","DASH complex"],["ComplexPortal%3ACPX-5644","Kinetochore KNL1 complex"],["ComplexPortal%3ACPX-5702","Kinetochore KNL1 complex"],["ComplexPortal%3ACPX-1186","Kinetochore MIS12 complex"]]},{"id":"GO:0005874","l":"microtubule","na":10,"nb":50,"a":[["cytoskeleton/ciliary_basal_body.html","ciliary basal body"],["cytoskeleton/funis.html","funis"],["cytoskeleton/intraconoid_microtubule.html","intraconoid microtubule"],["cytoskeleton/median_body.html","median body"],["cytoskeleton/microtubule.html","microtubule"],["cytoskeleton/mitotic_spindle.html","mitotic spindle"]],"b":[["ComplexPortal%3ACPX-806","Ndc80 complex"],["ComplexPortal%3ACPX-4143","Pyrin inflammasome"],["ComplexPortal%3ACPX-4244","Pyrin inflammasome"],["ComplexPortal%3ACPX-811","Ska1 complex"],["ComplexPortal%3ACPX-2572","Tubulin polyglutamylase complex"],["GO%3A0005881","cytoplasmic microtubule"]]},{"id":"GO:0009536","l":"plastid","na":10,"nb":33,"a":[["membrane_organelle/apicoplast.html","apicoplast"],["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/nucleomorph.html","nucleomorph"],["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/plastid.html","plastid"]],"b":[["GO%3A0009501","amyloplast"],["GO%3A0020011","apicoplast"],["GO%3A0009507","chloroplast"],["GO%3A0009509","chromoplast"],["GO%3A0009842","cyanelle"],["GO%3A0009513","etioplast"]]},{"id":"GO:0072583","l":"clathrin-dependent endocytosis","na":10,"nb":18,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle.html","clathrin-coated endocytic vesicle"],["membrane_organelle/clathrin_coated_endocytic_vesicle_membrane.html","clathrin-coated endocytic vesicle membrane"],["membrane_organelle/clathrin_coated_vesicle.html","clathrin-coated vesicle"],["other/ap_2_adaptor_complex.html","AP-2 adaptor complex"],["other/clathrin_coat.html","clathrin coat"],["other/clathrin_coat_of_coated_pit.html","clathrin coat of coated pit"]],"b":[["ComplexPortal%3ACPX-5149","AP-2 Adaptor complex, alpha1 variant"],["ComplexPortal%3ACPX-5152","AP-2 Adaptor complex, alpha1 variant"],["ComplexPortal%3ACPX-5150","AP-2 Adaptor complex, alpha2 variant"],["ComplexPortal%3ACPX-5153","AP-2 Adaptor complex, alpha2 variant"],["ComplexPortal%3ACPX-26725","Clathrin, endocytosis-mediating complex, CLTA-CLTB mixed lattice variant"],["ComplexPortal%3ACPX-26726","Clathrin, endocytosis-mediating complex, CLTA-CLTB mixed lattice variant"]]},{"id":"GO:0005682","l":"U5 snRNP","na":10,"nb":13,"a":[["ribonucleoprotein/u12_type_catalytic_step_1_spliceosome.html","U12-type catalytic step 1 spliceosome"],["ribonucleoprotein/u12_type_catalytic_step_2_spliceosome.html","U12-type catalytic step 2 spliceosome"],["ribonucleoprotein/u12_type_post_mrna_release_spliceosomal_complex.html","U12-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u12_type_post_spliceosomal_complex.html","U12-type post-spliceosomal complex"],["ribonucleoprotein/u2_type_catalytic_step_1_spliceosome.html","U2-type catalytic step 1 spliceosome"],["ribonucleoprotein/u2_type_catalytic_step_2_spliceosome.html","U2-type catalytic step 2 spliceosome"]],"b":[["ComplexPortal%3ACPX-43","Sm complex"],["ComplexPortal%3ACPX-6033","Sm complex"],["ComplexPortal%3ACPX-26421","U5 small nuclear ribonucleoprotein complete complex"],["ComplexPortal%3ACPX-26552","U5 small nuclear ribonucleoprotein complex, AAR2 variant"],["ComplexPortal%3ACPX-30","U5 small nuclear ribonucleoprotein complex, AAR2 variant"],["ComplexPortal%3ACPX-29","U5 small nuclear ribonucleoprotein complex"]]},{"id":"NCBITaxon:44689","l":"Dictyostelium discoideum","na":9,"nb":151,"a":[["membrane_organelle/contractile_vacuole.html","contractile vacuole"],["membrane_organelle/contractile_vacuole_complex.html","contractile vacuole complex"],["membrane_organelle/esterosome.html","esterosome"],["membrane_organelle/esterosome_lumen.html","esterosome lumen"],["membrane_organelle/esterosome_membrane.html","esterosome membrane"],["membrane_organelle/phagocytic_vesicle.html","phagocytic vesicle"]],"b":[["IDPO%3A0000002","disorder"],["IDPO%3A0000030","entropic chain"],["IDPO%3A0000006","order"],["IDPO%3A0000058","self-activation"],["Pfam%3APF23297","Highly reducing polyketide synthase sdgA, C-terminal ACP domain"],["Pfam%3APF09192","Actin-fragmin kinase, catalytic"]]},{"id":"GO:0005643","l":"nuclear pore","na":9,"nb":41,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nucleus.html","nucleus"],["other/nuclear_pore.html","nuclear pore"],["other/nuclear_pore_central_transport_channel.html","nuclear pore central transport channel"],["other/nuclear_pore_cytoplasmic_filaments.html","nuclear pore cytoplasmic filaments"],["other/nuclear_pore_inner_ring.html","nuclear pore inner ring"]],"b":[["ComplexPortal%3ACPX-4747","E3 ligase (RANBP2) complex"],["ComplexPortal%3ACPX-4921","E3 ligase (RANBP2) complex"],["ComplexPortal%3ACPX-2568","Nuclear pore complex"],["ComplexPortal%3ACPX-4474","Nuclear pore complex"],["ComplexPortal%3ACPX-824","Nuclear pore complex"],["ComplexPortal%3ACPX-873","Nuclear pore complex"]]},{"id":"GO:0019684","l":"photosynthesis, light reaction","na":9,"nb":39,"a":[["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"]],"b":[["GO%3A0019684","photosynthesis, light reaction"],["NCBIfam%3ANF058510","bifunctional rod-capping linker CpcD/ferredoxin--NADP reductase PetH"],["NCBIfam%3ATIGR01332","cytochrome b559 subunit alpha"],["NCBIfam%3ATIGR01333","cytochrome b559 subunit beta"],["NCBIfam%3ANF043009","cytochrome c-554 Puf2C"],["NCBIfam%3ANF040862","light-harvesting antenna LH1, beta subunit"]]},{"id":"GO:0060205","l":"cytoplasmic vesicle lumen","na":9,"nb":18,"a":[["membrane_organelle/autophagosome_lumen.html","autophagosome lumen"],["membrane_organelle/clathrin_coated_vesicle_lumen.html","clathrin-coated vesicle lumen"],["membrane_organelle/copi_coated_vesicle_lumen.html","COPI-coated vesicle lumen"],["membrane_organelle/copii_coated_vesicle_lumen.html","COPII-coated vesicle lumen"],["membrane_organelle/cvt_vesicle_lumen.html","Cvt vesicle lumen"],["membrane_organelle/cytoplasmic_vesicle.html","cytoplasmic vesicle"]],"b":[["GO%3A0034422","aleurone grain lumen"],["GO%3A0060202","clathrin-sculpted acetylcholine transport vesicle lumen"],["GO%3A0061201","clathrin-sculpted gamma-aminobutyric acid transport vesicle lumen"],["GO%3A0060204","clathrin-sculpted glutamate transport vesicle lumen"],["GO%3A0070082","clathrin-sculpted monoamine transport vesicle lumen"],["GO%3A0106172","COPI-coated vesicle lumen"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":15,"nb":9,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]],"b":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF25954","CusB-like, beta-barrel domain"],["Pfam%3APF13438","Domain of unknown function (DUF4113)"],["Pfam%3APF03767","HAD superfamily, subfamily IIIB (Acid phosphatase)"],["Pfam%3APF03496","ADP-ribosyltransferase exoenzyme"]]},{"id":"GO:0009941","l":"chloroplast envelope","na":9,"nb":12,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_inner_membrane.html","chloroplast inner membrane"],["membrane_organelle/chloroplast_intermembrane_space.html","chloroplast intermembrane space"],["membrane_organelle/chloroplast_membrane.html","chloroplast membrane"],["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"]],"b":[["GO%3A0009941","chloroplast envelope"],["PANTHER%3APTHR47283","ENT-KAURENE OXIDASE, CHLOROPLASTIC"],["PANTHER%3APTHR36737","EXPRESSED PROTEIN"],["PANTHER%3APTHR31038","EXPRESSED PROTEIN-RELATED"],["PANTHER%3APTHR34048","LOW-DENSITY RECEPTOR-LIKE PROTEIN"],["PANTHER%3APTHR34809","MALTOSE EXCESS PROTEIN 1, CHLOROPLASTIC-RELATED"]]},{"id":"GO:0030119","l":"AP-type membrane coat adaptor complex","na":9,"nb":12,"a":[["other/ap_3_adaptor_complex.html","AP-3 adaptor complex"],["other/ap_4_adaptor_complex.html","AP-4 adaptor complex"],["other/ap_5_adaptor_complex.html","AP-5 adaptor complex"],["other/ap_type_membrane_coat_adaptor_complex.html","AP-type membrane coat adaptor complex"],["other/clathrin_coat.html","clathrin coat"],["other/clathrin_coat_of_endocytic_vesicle.html","clathrin coat of endocytic vesicle"]],"b":[["GO%3A0030123","AP-3 adaptor complex"],["GO%3A0030124","AP-4 adaptor complex"],["GO%3A0044599","AP-5 adaptor complex"],["GO%3A0030119","AP-type membrane coat adaptor complex"],["GO%3A0030131","clathrin adaptor complex"],["PANTHER%3APTHR22780","ADAPTIN, ALPHA/GAMMA/EPSILON"]]},{"id":"GO:0009425","l":"bacterial-type flagellum basal body","na":10,"nb":9,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"],["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"]],"b":[["GO%3A0009425","bacterial-type flagellum basal body"],["NCBIfam%3ANF005435","flagellar basal body-associated protein FliL"],["NCBIfam%3ANF005995","flagellar motor switch phosphatase FliY"],["NCBIfam%3ANF005194","flagellar motor switch protein FliM"],["NCBIfam%3ANF006273","flagellar motor switch protein FliN"],["NCBIfam%3ANF006272","flagellar motor switch protein FliY"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":8,"nb":49554,"a":[["other/ap_5_adaptor_complex.html","AP-5 adaptor complex"],["ribonucleoprotein/u11_snrnp.html","U11 snRNP"],["ribonucleoprotein/u11_u12_snrnp.html","U11/U12 snRNP"],["ribonucleoprotein/u12_snrnp.html","U12 snRNP"],["ribonucleoprotein/u4atac_snrnp.html","U4atac snRNP"],["ribonucleoprotein/u4atac_u6atac_snrnp.html","U4atac/U6atac snRNP"]],"b":[["EC%3A1.1.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.1.98.-","With other, known, acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"]]},{"id":"GO:0031090","l":"organelle membrane","na":8,"nb":270,"a":[["membrane_organelle/apicomplexan_dense_granule_membrane.html","apicomplexan dense granule membrane"],["membrane_organelle/microneme_membrane.html","microneme membrane"],["membrane_organelle/mitosome_inner_membrane.html","mitosome inner membrane"],["membrane_organelle/mitosome_outer_membrane.html","mitosome outer membrane"],["membrane_organelle/nuclear_inner_membrane.html","nuclear inner membrane"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"]],"b":[["GO%3A0098588","bounding membrane of organelle"],["GO%3A0005789","endoplasmic reticulum membrane"],["GO%3A0032580","Golgi cisterna membrane"],["GO%3A0110146","magnetosome membrane"],["GO%3A0031966","mitochondrial membrane"],["GO%3A0031965","nuclear membrane"]]},{"id":"GO:0005783","l":"endoplasmic reticulum","na":8,"nb":226,"a":[["membrane_organelle/cis_golgi_network.html","cis-Golgi network"],["membrane_organelle/cis_golgi_network_membrane.html","cis-Golgi network membrane"],["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"],["membrane_organelle/endoplasmic_reticulum_lumen.html","endoplasmic reticulum lumen"],["membrane_organelle/endoplasmic_reticulum_membrane.html","endoplasmic reticulum membrane"]],"b":[["ComplexPortal%3ACPX-2360","COPII vesicle coat complex"],["ComplexPortal%3ACPX-2400","COPII vesicle coat complex"],["ComplexPortal%3ACPX-2523","COPII vesicle coat complex"],["ComplexPortal%3ACPX-26602","DOP1A-MON2, golgi-endosome traffic complex"],["ComplexPortal%3ACPX-8736","ERAP1-ERAP2 endoplasmic reticulum aminopeptidase complex"],["ComplexPortal%3ACPX-4236","Gamma-secretase complex, Aph1a-Psen2 variant"]]},{"id":"GO:0009279","l":"cell outer membrane","na":8,"nb":67,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/prostheca.html","prostheca"],["envelope/cell_outer_membrane.html","cell outer membrane"],["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["envelope/mycolate_outer_membrane.html","mycolate outer membrane"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"]],"b":[["ComplexPortal%3ACPX-1083","Cobalamin outer membrane transporter complex"],["ComplexPortal%3ACPX-4743","Curli secretion complex"],["ComplexPortal%3ACPX-1093","LptDE outer membrane translocon complex"],["ComplexPortal%3ACPX-5890","Translocation and assembly module complex"],["GO%3A0009279","cell outer membrane"],["GO%3A0036407","mycolate outer membrane"]]},{"id":"GO:0005741","l":"mitochondrial outer membrane","na":8,"nb":38,"a":[["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_intermembrane_space.html","mitochondrial intermembrane space"],["membrane_organelle/mitochondrial_membrane.html","mitochondrial membrane"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"],["other/ermes_complex.html","ERMES complex"]],"b":[["ComplexPortal%3ACPX-1989","BAK1 oligomer"],["ComplexPortal%3ACPX-2033","BAK1 oligomer"],["ComplexPortal%3ACPX-2034","BAK1 oligomer"],["ComplexPortal%3ACPX-6133","SAM mitochondrial sorting and assembly machinery complex"],["ComplexPortal%3ACPX-6101","SARS-CoV 9b complex"],["ComplexPortal%3ACPX-6121","TOM40 mitochondrial outer membrane translocase complex"]]},{"id":"GO:0009288","l":"bacterial-type flagellum","na":8,"nb":31,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009288","bacterial-type flagellum"]]},{"id":"GO:0005774","l":"vacuolar membrane","na":8,"nb":23,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v0_domain.html","vacuolar proton-transporting V-type ATPase, V0 domain"],["membrane_organelle/contractile_vacuolar_membrane.html","contractile vacuolar membrane"],["membrane_organelle/fungal_type_vacuole_membrane.html","fungal-type vacuole membrane"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"],["membrane_organelle/vacuolar_lumen.html","vacuolar lumen"]],"b":[["ComplexPortal%3ACPX-26523","GATOR1 complex"],["ComplexPortal%3ACPX-3231","SEA complex"],["ComplexPortal%3ACPX-5401","Vacuolar SNARE complex VAM3-VTI1-VAM7-NYV1"],["ComplexPortal%3ACPX-1887","Vacuolar SNARE complex VAM3-VTI1-VAM7-YKT6"],["GO%3A0000421","autophagosome membrane"],["GO%3A0031164","contractile vacuolar membrane"]]},{"id":"GO:0030126","l":"COPI vesicle coat","na":8,"nb":19,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"],["membrane_organelle/golgi_membrane.html","Golgi membrane"]],"b":[["ComplexPortal%3ACPX-7803","COPI vesicle coat complex, COPG1-COPZ1 variant"],["ComplexPortal%3ACPX-7970","COPI vesicle coat complex, COPG1-COPZ2 variant"],["ComplexPortal%3ACPX-7969","COPI vesicle coat complex, COPG2-COPZ1 variant"],["ComplexPortal%3ACPX-1652","COPI vesicle coat complex"],["ComplexPortal%3ACPX-2820","COPI vesicle coat complex"],["GO%3A0030126","COPI vesicle coat"]]},{"id":"GO:0098803","l":"respiratory chain complex","na":8,"nb":14,"a":[["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"],["energy_complex/cytochrome_o_ubiquinol_oxidase_complex.html","cytochrome o ubiquinol oxidase complex"],["energy_complex/fumarate_reductase_complex.html","fumarate reductase complex"],["energy_complex/respiratory_chain_complex_i.html","respiratory chain complex I"],["energy_complex/respiratory_chain_complex_ii_succinate_dehydrogenase.html","respiratory chain complex II (succinate dehydrogenase)"],["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"]],"b":[["GO%3A0009319","cytochrome o ubiquinol oxidase complex"],["GO%3A0045283","fumarate reductase complex"],["GO%3A0044799","NarGHI complex"],["GO%3A0045259","proton-transporting ATP synthase complex"],["GO%3A0098803","respiratory chain complex"],["GO%3A0045271","respiratory chain complex I"]]},{"id":"GO:0030125","l":"clathrin vesicle coat","na":8,"nb":9,"a":[["membrane_organelle/clathrin_coated_vesicle.html","clathrin-coated vesicle"],["membrane_organelle/clathrin_coated_vesicle_membrane.html","clathrin-coated vesicle membrane"],["membrane_organelle/coated_vesicle.html","coated vesicle"],["other/clathrin_coat.html","clathrin coat"],["other/clathrin_coat_of_endocytic_vesicle.html","clathrin coat of endocytic vesicle"],["other/clathrin_coat_of_trans_golgi_network_vesicle.html","clathrin coat of trans-Golgi network vesicle"]],"b":[["ComplexPortal%3ACPX-2792","Clathrin complex"],["GO%3A0030128","clathrin coat of endocytic vesicle"],["GO%3A0030129","clathrin coat of synaptic vesicle"],["GO%3A0030130","clathrin coat of trans-Golgi network vesicle"],["GO%3A0030125","clathrin vesicle coat"],["PANTHER%3APTHR16156","AFTIPHILIN A-RELATED"]]},{"id":"GO:0000329","l":"fungal-type vacuole membrane","na":8,"nb":8,"a":[["membrane_organelle/fungal_type_vacuole.html","fungal-type vacuole"],["membrane_organelle/fungal_type_vacuole_lumen.html","fungal-type vacuole lumen"],["membrane_organelle/fungal_type_vacuole_membrane.html","fungal-type vacuole membrane"],["membrane_organelle/vacuole.html","vacuole"],["other/gator1_complex.html","GATOR1 complex"],["other/gtr1_gtr2_gtpase_complex.html","Gtr1-Gtr2 GTPase complex"]],"b":[["ComplexPortal%3ACPX-3172","EGO complex"],["ComplexPortal%3ACPX-869","FET5-FTH1 high affinity iron exporter complex"],["ComplexPortal%3ACPX-1304","MYO2-VAC17-VAC8 transport complex"],["ComplexPortal%3ACPX-1193","Vacuolar proton translocating ATPase complex, vacuole variant"],["ComplexPortal%3ACPX-5521","Vacuolar SNARE complex SSO1-SEC9-NYV1"],["GO%3A0000329","fungal-type vacuole membrane"]]},{"id":"GO:0098796","l":"membrane protein complex","na":7,"nb":234,"a":[["other/ap_type_membrane_coat_adaptor_complex.html","AP-type membrane coat adaptor complex"],["other/emc_complex.html","EMC complex"],["other/hops_complex.html","HOPS complex"],["other/membrane_coat.html","membrane coat"],["other/retromer_cargo_selective_complex.html","retromer, cargo-selective complex"],["other/retromer_complex.html","retromer complex"]],"b":[["GO%3A0002180","5-lipoxygenase complex"],["GO%3A0170014","ankyrin-1 complex"],["GO%3A0030119","AP-type membrane coat adaptor complex"],["GO%3A0097658","Asi complex"],["GO%3A0062079","ATG2-ATG18 complex"],["GO%3A1990063","Bam protein complex"]]},{"id":"GO:0000813","l":"ESCRT I complex","na":7,"nb":27,"a":[["membrane_organelle/endosome.html","endosome"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/multivesicular_body.html","multivesicular body"],["other/escrt_0_complex.html","ESCRT-0 complex"],["other/escrt_complex.html","ESCRT complex"]],"b":[["ComplexPortal%3ACPX-940","ESCRT-I complex"],["ComplexPortal%3ACPX-7162","ESCRT-I complex, VPS37A-MVB12A variant"],["ComplexPortal%3ACPX-7146","ESCRT-I complex, VPS37A-MVB12B variant"],["ComplexPortal%3ACPX-7181","ESCRT-I complex, VPS37A-UBAP1 variant"],["ComplexPortal%3ACPX-2460","ESCRT-I complex, Vps37A variant"],["ComplexPortal%3ACPX-2505","ESCRT-I complex, VPS37B-MVB12A variant"]]},{"id":"GO:0030120","l":"vesicle coat","na":7,"nb":18,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"],["other/clathrin_vesicle_coat.html","clathrin vesicle coat"],["other/copi_vesicle_coat.html","COPI vesicle coat"],["other/copii_vesicle_coat.html","COPII vesicle coat"],["other/membrane_coat.html","membrane coat"]],"b":[["GO%3A0030125","clathrin vesicle coat"],["GO%3A0030126","COPI vesicle coat"],["GO%3A0030127","COPII vesicle coat"],["GO%3A0030120","vesicle coat"],["PANTHER%3APTHR16156","AFTIPHILIN A-RELATED"],["PANTHER%3APTHR15463","AP1 GAMMA SUBUNIT BINDING PROTEIN 1"]]},{"id":"GO:0009526","l":"plastid envelope","na":7,"nb":11,"a":[["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/plastid_envelope.html","plastid envelope"],["membrane_organelle/plastid_inner_membrane.html","plastid inner membrane"],["membrane_organelle/plastid_intermembrane_space.html","plastid intermembrane space"],["membrane_organelle/plastid_membrane.html","plastid membrane"]],"b":[["GO%3A0033096","amyloplast envelope"],["GO%3A0009941","chloroplast envelope"],["GO%3A0031898","chromoplast envelope"],["GO%3A0033112","cyanelle envelope"],["GO%3A0034425","etioplast envelope"],["GO%3A0009526","plastid envelope"]]},{"id":"GO:0009579","l":"thylakoid","na":7,"nb":11,"a":[["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_lumen.html","plasma membrane-derived thylakoid lumen"],["membrane_organelle/plastid_thylakoid.html","plastid thylakoid"]],"b":[["GO%3A0030075","bacterial thylakoid"],["GO%3A0070116","organellar chromatophore thylakoid"],["GO%3A0031976","plastid thylakoid"],["GO%3A0009579","thylakoid"],["NCBIfam%3ANF014449","photosystem I assembly protein Ycf4"],["NCBIfam%3ATIGR01336","photosystem I core protein PsaB"]]},{"id":"GO:0030136","l":"clathrin-coated vesicle","na":7,"nb":10,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle.html","clathrin-coated endocytic vesicle"],["membrane_organelle/clathrin_coated_endocytic_vesicle_lumen.html","clathrin-coated endocytic vesicle lumen"],["membrane_organelle/clathrin_coated_vesicle.html","clathrin-coated vesicle"],["membrane_organelle/clathrin_coated_vesicle_lumen.html","clathrin-coated vesicle lumen"],["membrane_organelle/clathrin_coated_vesicle_membrane.html","clathrin-coated vesicle membrane"],["membrane_organelle/coated_vesicle.html","coated vesicle"]],"b":[["GO%3A0045334","clathrin-coated endocytic vesicle"],["GO%3A0030136","clathrin-coated vesicle"],["GO%3A0060198","clathrin-sculpted vesicle"],["GO%3A0030140","trans-Golgi network transport vesicle"],["GO%3A0033093","Weibel-Palade body"],["PANTHER%3APTHR10639","CLATHRIN LIGHT CHAIN"]]},{"id":"GO:0009532","l":"plastid stroma","na":7,"nb":9,"a":[["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"],["membrane_organelle/plastid.html","plastid"],["membrane_organelle/plastid_envelope.html","plastid envelope"],["membrane_organelle/plastid_inner_membrane.html","plastid inner membrane"],["membrane_organelle/plastid_stroma.html","plastid stroma"]],"b":[["GO%3A0009570","chloroplast stroma"],["GO%3A0009575","chromoplast stroma"],["GO%3A0034060","cyanelle stroma"],["GO%3A0009577","elaioplast stroma"],["GO%3A0009578","etioplast stroma"],["GO%3A1905506","gerontoplast stroma"]]},{"id":"GO:0009535","l":"chloroplast thylakoid membrane","na":7,"nb":9,"a":[["inclusion/plastoglobule.html","plastoglobule"],["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_membrane.html","chloroplast membrane"],["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"],["membrane_organelle/chloroplast_thylakoid_lumen.html","chloroplast thylakoid lumen"],["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"]],"b":[["GO%3A0009535","chloroplast thylakoid membrane"],["PANTHER%3APTHR34048","LOW-DENSITY RECEPTOR-LIKE PROTEIN"],["PANTHER%3APTHR35733","OS02G0307800 PROTEIN"],["PANTHER%3APTHR36814","PHOTOSYSTEM I REACTION CENTER SUBUNIT N, CHLOROPLASTIC"],["PANTHER%3APTHR34787","PHOTOSYSTEM I REACTION CENTER SUBUNIT VI-2, CHLOROPLASTIC"],["PANTHER%3APTHR33149","PHOTOSYSTEM II PROTEIN D1"]]},{"id":"GO:0030137","l":"COPI-coated vesicle","na":7,"nb":9,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/copi_coated_vesicle_lumen.html","COPI-coated vesicle lumen"],["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"]],"b":[["GO%3A0030142","COPI-coated Golgi to ER transport vesicle"],["GO%3A0030143","COPI-coated inter-Golgi transport vesicle"],["GO%3A0030137","COPI-coated vesicle"],["PANTHER%3APTHR19876","COATOMER"],["PANTHER%3APTHR10635","COATOMER SUBUNIT BETA"],["PANTHER%3APTHR10121","COATOMER SUBUNIT DELTA"]]},{"id":"GO:0009274","l":"peptidoglycan-based cell wall","na":7,"nb":8,"a":[["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"],["appendage/prostheca.html","prostheca"],["division_machinery/elongasome.html","elongasome"],["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]],"b":[["GO%3A0009276","Gram-negative-bacterium-type cell wall"],["GO%3A0009275","Gram-positive-bacterium-type cell wall"],["GO%3A0009274","peptidoglycan-based cell wall"],["NCBIfam%3ANF007061","bifunctional glycosyl transferase/transpeptidase"],["NCBIfam%3ATIGR03656","heme uptake protein IsdC"],["NCBIfam%3ATIGR02070","monofunctional biosynthetic peptidoglycan transglycosylase"]]},{"id":"NCBITaxon:565050","l":"Caulobacter vibrioides NA1000","na":7,"nb":8,"a":[["appendage/prostheca.html","prostheca"],["appendage/stalk_crossband.html","stalk crossband"],["appendage/tad_pilus.html","Tad pilus"],["cytoskeleton/bactofilin_filament.html","bactofilin filament"],["cytoskeleton/cytoophidium.html","cytoophidium"],["other/holdfast.html","holdfast"]],"b":[["Pfam%3APF02767","DNA polymerase III beta subunit, central domain"],["Pfam%3APF02768","DNA polymerase III beta subunit, C-terminal domain"],["Pfam%3APF00712","DNA polymerase III beta subunit, N-terminal domain"],["Pfam%3APF21249","GyrB, hook"],["Pfam%3APF07378","Flagellar protein FlbT"],["Pfam%3APF03748","Flagellar basal body-associated protein FliL"]]},{"id":"GO:0030665","l":"clathrin-coated vesicle membrane","na":7,"nb":7,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle_membrane.html","clathrin-coated endocytic vesicle membrane"],["membrane_organelle/clathrin_coated_vesicle.html","clathrin-coated vesicle"],["membrane_organelle/clathrin_coated_vesicle_lumen.html","clathrin-coated vesicle lumen"],["membrane_organelle/clathrin_coated_vesicle_membrane.html","clathrin-coated vesicle membrane"],["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"]],"b":[["GO%3A0030669","clathrin-coated endocytic vesicle membrane"],["GO%3A0030665","clathrin-coated vesicle membrane"],["GO%3A0060201","clathrin-sculpted acetylcholine transport vesicle membrane"],["GO%3A0061202","clathrin-sculpted gamma-aminobutyric acid transport vesicle membrane"],["GO%3A0060203","clathrin-sculpted glutamate transport vesicle membrane"],["GO%3A0070083","clathrin-sculpted monoamine transport vesicle membrane"]]},{"id":"GO:0098800","l":"inner mitochondrial membrane protein complex","na":6,"nb":88,"a":[["other/micos_complex.html","MICOS complex"],["other/mitochondrial_inner_membrane_peptidase_complex.html","mitochondrial inner membrane peptidase complex"],["other/mitochondrial_prohibitin_complex.html","mitochondrial prohibitin complex"],["other/pam_complex_tim23_associated_import_motor.html","PAM complex, Tim23 associated import motor"],["other/tim22_mitochondrial_import_inner_membrane_insertion_complex.html","TIM22 mitochondrial import inner membrane insertion complex"],["other/tim23_mitochondrial_import_inner_membrane_translocase_complex.html","TIM23 mitochondrial import inner membrane translocase complex"]],"b":[["ComplexPortal%3ACPX-6154","Mitochondrial pyruvate carrier complex"],["ComplexPortal%3ACPX-8068","Mitochondrial pyruvate carrier complex"],["ComplexPortal%3ACPX-8062","Mitochondrial pyruvate carrier complex, testis variant"],["ComplexPortal%3ACPX-302","Mitochondrial pyruvate carrier, fermentative isoform"],["ComplexPortal%3ACPX-303","Mitochondrial pyruvate carrier, respiratory isoform"],["GO%3A0032478","heterotetrameric polyprenyl diphosphate synthase complex"]]},{"id":"GO:0005740","l":"mitochondrial envelope","na":6,"nb":54,"a":[["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrial_intermembrane_space.html","mitochondrial intermembrane space"],["membrane_organelle/mitochondrial_membrane.html","mitochondrial membrane"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"]],"b":[["GO%3A0005740","mitochondrial envelope"],["Pfam%3APF01215","Cytochrome c oxidase subunit Vb"],["PANTHER%3APTHR15487","ADP-RIBOSYLATION FACTOR-LIKE PROTEIN 2-BINDING PROTEIN"],["PANTHER%3APTHR36959","ALTERED INHERITANCE OF MITOCHONDRIA PROTEIN 24, MITOCHONDRIAL"],["PANTHER%3APTHR28202","ASSEMBLY FACTOR CBP4"],["PANTHER%3APTHR37278","AUTOPHAGY-RELATED PROTEIN 33-RELATED"]]},{"id":"GO:0009507","l":"chloroplast","na":6,"nb":32,"a":[["inclusion/plastoglobule.html","plastoglobule"],["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"],["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"],["other/pyrenoid.html","pyrenoid"]],"b":[["ComplexPortal%3ACPX-1337","WHY1 complex"],["ComplexPortal%3ACPX-3586","WHY3 complex"],["GO%3A0009507","chloroplast"],["NCBIfam%3ANF018787","photosystem II reaction center protein PsbW"],["PANTHER%3APTHR31899","BETA-CAROTENE 3-HYDROXYLASE 1, CHLOROPLASTIC"],["PANTHER%3APTHR36404","EMBRYO DEFECTIVE 2737"]]},{"id":"GO:0005802","l":"trans-Golgi network","na":6,"nb":24,"a":[["membrane_organelle/trans_golgi_network.html","trans-Golgi network"],["membrane_organelle/trans_golgi_network_membrane.html","trans-Golgi network membrane"],["membrane_organelle/trans_golgi_network_transport_vesicle_membrane.html","trans-Golgi network transport vesicle membrane"],["other/clathrin_coat_of_trans_golgi_network_vesicle.html","clathrin coat of trans-Golgi network vesicle"],["other/exomer_complex.html","exomer complex"],["other/garp_complex.html","GARP complex"]],"b":[["ComplexPortal%3ACPX-5151","AP-4 Adaptor complex"],["ComplexPortal%3ACPX-5154","AP-4 Adaptor complex"],["ComplexPortal%3ACPX-8167","OSBPL9-OSBPL10 oxysterol-binding protein-related complex"],["ComplexPortal%3ACPX-8168","OSBPL9-OSBPL11 oxysterol-binding protein-related complex"],["GO%3A0005802","trans-Golgi network"],["InterPro%3AIPR028129","Consortin, C-terminal domain"]]},{"id":"GO:0042995","l":"cell projection","na":6,"nb":18,"a":[["appendage/archaeal_cannula.html","archaeal cannula"],["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/attachment_organelle.html","attachment organelle"],["appendage/hamus.html","hamus"],["appendage/prostheca.html","prostheca"]],"b":[["GO%3A0097589","archaeal-type flagellum"],["GO%3A0009288","bacterial-type flagellum"],["GO%3A0042995","cell projection"],["GO%3A0085035","haustorium"],["GO%3A0009289","pilus"],["GO%3A0090395","plant cell papilla"]]},{"id":"GO:0030150","l":"protein import into mitochondrial matrix","na":6,"nb":17,"a":[["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"],["other/mitochondrial_outer_membrane_translocase_complex.html","mitochondrial outer membrane translocase complex"],["other/pam_complex_tim23_associated_import_motor.html","PAM complex, Tim23 associated import motor"],["other/tim23_mitochondrial_import_inner_membrane_translocase_complex.html","TIM23 mitochondrial import inner membrane translocase complex"]],"b":[["ComplexPortal%3ACPX-1744","Mitochondrial sorting and assembly machinery complex"],["ComplexPortal%3ACPX-6127","TIM23 mitochondrial inner membrane pre-sequence translocase complex, sort variant"],["GO%3A0030150","protein import into mitochondrial matrix"],["Pfam%3APF02064","MAS20 protein import receptor"],["Pfam%3APF08294","TIM21"],["PANTHER%3APTHR20922","DNL-TYPE ZINC FINGER PROTEIN"]]},{"id":"GO:0005635","l":"nuclear envelope","na":6,"nb":16,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nuclear_envelope_lumen.html","nuclear envelope lumen"],["membrane_organelle/nuclear_inner_membrane.html","nuclear inner membrane"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"],["membrane_organelle/nucleus.html","nucleus"],["other/nuclear_pore.html","nuclear pore"]],"b":[["ComplexPortal%3ACPX-1068","Importin complex, KAP60-KAP95"],["ComplexPortal%3ACPX-1287","MPS2-BBP1 spindle pole body anchor complex"],["ComplexPortal%3ACPX-2568","Nuclear pore complex"],["ComplexPortal%3ACPX-4474","Nuclear pore complex"],["ComplexPortal%3ACPX-824","Nuclear pore complex"],["ComplexPortal%3ACPX-873","Nuclear pore complex"]]},{"id":"GO:0005742","l":"mitochondrial outer membrane translocase complex","na":6,"nb":16,"a":[["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"],["other/mitochondrial_outer_membrane_translocase_complex.html","mitochondrial outer membrane translocase complex"],["other/sam_complex.html","SAM complex"],["other/tim23_mitochondrial_import_inner_membrane_translocase_complex.html","TIM23 mitochondrial import inner membrane translocase complex"]],"b":[["ComplexPortal%3ACPX-473","TOM40 mitochondrial outer membrane translocase core complex"],["ComplexPortal%3ACPX-474","TOM40 mitochondrial outer membrane translocase holocomplex"],["GO%3A0005742","mitochondrial outer membrane translocase complex"],["GO%3A0001401","SAM complex"],["GO%3A0140596","TOM complex"],["Pfam%3APF02064","MAS20 protein import receptor"]]},{"id":"GO:0030127","l":"COPII vesicle coat","na":6,"nb":16,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"],["membrane_organelle/endoplasmic_reticulum_membrane.html","endoplasmic reticulum membrane"],["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"],["other/copii_vesicle_coat.html","COPII vesicle coat"],["other/vesicle_coat.html","vesicle coat"]],"b":[["ComplexPortal%3ACPX-2360","COPII vesicle coat complex"],["ComplexPortal%3ACPX-2400","COPII vesicle coat complex"],["ComplexPortal%3ACPX-2523","COPII vesicle coat complex"],["ComplexPortal%3ACPX-1341","SEC23-LST1 COPII cargo recruitment complex"],["GO%3A0030127","COPII vesicle coat"],["NCBIfam%3ANF016683","Sec23/Sec24 zinc finger-containing protein"]]},{"id":"GO:0005686","l":"U2 snRNP","na":6,"nb":14,"a":[["ribonucleoprotein/u2_snrnp.html","U2 snRNP"],["ribonucleoprotein/u2_type_catalytic_step_1_spliceosome.html","U2-type catalytic step 1 spliceosome"],["ribonucleoprotein/u2_type_catalytic_step_2_spliceosome.html","U2-type catalytic step 2 spliceosome"],["ribonucleoprotein/u2_type_post_mrna_release_spliceosomal_complex.html","U2-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u2_type_precatalytic_spliceosome.html","U2-type precatalytic spliceosome"],["ribonucleoprotein/u2_type_prespliceosome.html","U2-type prespliceosome"]],"b":[["ComplexPortal%3ACPX-43","Sm complex"],["ComplexPortal%3ACPX-6033","Sm complex"],["ComplexPortal%3ACPX-2539","U2 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-26","U2 small nuclear ribonucleoprotein complex"],["GO%3A0005686","U2 snRNP"],["PANTHER%3APTHR13120","PHD FINGER-LIKE DOMAIN-CONTAINING PROTEIN 5A"]]},{"id":"GO:0071985","l":"multivesicular body sorting pathway","na":14,"nb":6,"a":[["membrane_organelle/endosome_lumen.html","endosome lumen"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/late_endosome_lumen.html","late endosome lumen"],["membrane_organelle/late_endosome_membrane.html","late endosome membrane"],["membrane_organelle/multivesicular_body.html","multivesicular body"]],"b":[["ComplexPortal%3ACPX-329","ESCRT-III complex"],["ComplexPortal%3ACPX-332","ESCRT-III complex, variant Chmp1b1"],["ComplexPortal%3ACPX-333","ESCRT-III complex, variant Chmp1b2"],["GO%3A0032509","endosome transport via multivesicular body sorting pathway"],["GO%3A0071985","multivesicular body sorting pathway"],["Pfam%3APF05871","ESCRT-II complex subunit"]]},{"id":"GO:0005689","l":"U12-type spliceosomal complex","na":6,"nb":13,"a":[["ribonucleoprotein/u12_type_catalytic_step_1_spliceosome.html","U12-type catalytic step 1 spliceosome"],["ribonucleoprotein/u12_type_catalytic_step_2_spliceosome.html","U12-type catalytic step 2 spliceosome"],["ribonucleoprotein/u12_type_post_mrna_release_spliceosomal_complex.html","U12-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u12_type_post_spliceosomal_complex.html","U12-type post-spliceosomal complex"],["ribonucleoprotein/u12_type_precatalytic_spliceosome.html","U12-type precatalytic spliceosome"],["ribonucleoprotein/u12_type_prespliceosome.html","U12-type prespliceosome"]],"b":[["ComplexPortal%3ACPX-26485","U11 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-26487","U12 small nuclear ribonucleoprotein complex"],["GO%3A0071017","U12-type catalytic step 1 spliceosome"],["GO%3A0071018","U12-type catalytic step 2 spliceosome"],["GO%3A0071019","U12-type post-mRNA release spliceosomal complex"],["GO%3A0071022","U12-type post-spliceosomal complex"]]},{"id":"GO:0033104","l":"type VI protein secretion system complex","na":6,"nb":13,"a":[["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"],["secretion_system/type_vi_secretion_system_baseplate.html","type VI secretion system baseplate"],["secretion_system/type_vi_secretion_system_contractile_sheath.html","type VI secretion system contractile sheath"],["secretion_system/type_vi_secretion_system_hcp_tube.html","type VI secretion system Hcp tube"],["secretion_system/type_vi_secretion_system_membrane_complex.html","type VI secretion system membrane complex"],["secretion_system/type_vi_secretion_system_vgrg_paar_spike_complex.html","type VI secretion system VgrG/PAAR spike complex"]],"b":[["GO%3A0033104","type VI protein secretion system complex"],["NCBIfam%3ANF053769","CIS1 family contractile injection system inner tube protein"],["NCBIfam%3ANF053768","CIS12 family contractile injection system protein"],["NCBIfam%3ANF053767","CIS13 family contractile injection system protein"],["NCBIfam%3ANF053770","CIS5 family contractile injection system inner tube adaptor"],["NCBIfam%3ATIGR03345","type VI secretion system ATPase TssH"]]},{"id":"GO:0042170","l":"plastid membrane","na":6,"nb":13,"a":[["membrane_organelle/chloroplast_membrane.html","chloroplast membrane"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/plastid.html","plastid"],["membrane_organelle/plastid_inner_membrane.html","plastid inner membrane"],["membrane_organelle/plastid_membrane.html","plastid membrane"],["membrane_organelle/plastid_outer_membrane.html","plastid outer membrane"]],"b":[["GO%3A0033097","amyloplast membrane"],["GO%3A0160211","apicoplast membrane"],["GO%3A0031969","chloroplast membrane"],["GO%3A0046862","chromoplast membrane"],["GO%3A0033113","cyanelle membrane"],["GO%3A7770040","epiplastidial membrane"]]},{"id":"GO:0005775","l":"vacuolar lumen","na":6,"nb":10,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["membrane_organelle/contractile_vacuole_lumen.html","contractile vacuole lumen"],["membrane_organelle/fungal_type_vacuole_lumen.html","fungal-type vacuole lumen"],["membrane_organelle/vacuolar_lumen.html","vacuolar lumen"],["membrane_organelle/vacuolar_membrane.html","vacuolar membrane"],["membrane_organelle/vacuole.html","vacuole"]],"b":[["GO%3A0120282","autolysosome lumen"],["GO%3A0034423","autophagosome lumen"],["GO%3A0035578","azurophil granule lumen"],["GO%3A1904856","cytolytic granule lumen"],["GO%3A0160318","endolysosomal intralumenal vesicle lumen"],["GO%3A0000328","fungal-type vacuole lumen"]]},{"id":"NCBITaxon:2762","l":"Cyanophora paradoxa","na":10,"nb":6,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"]],"b":[["Pfam%3APF06799","Conserved in the green lineage and diatoms 27"],["Pfam%3APF06868","Protein of unknown function (DUF1257)"],["Pfam%3APF10693","Protein of unknown function (DUF2499)"],["Pfam%3APF10726","Protein of function (DUF2518)"],["Pfam%3APF04481","Protein of unknown function (DUF561)"],["Pfam%3APF05421","Protein of unknown function (DUF751)"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":9,"nb":6,"a":[["membrane_organelle/apicoplast.html","apicoplast"],["membrane_organelle/apicoplast_membrane.html","apicoplast membrane"],["membrane_organelle/exoneme.html","exoneme"],["membrane_organelle/food_vacuole.html","food vacuole"],["membrane_organelle/inner_membrane_pellicle_complex.html","inner membrane pellicle complex"],["membrane_organelle/maurer_s_cleft.html","Maurer's cleft"]],"b":[["IDPO%3A0000037","molecular recognition display site"],["Pfam%3APF05403","Plasmodium histidine-rich protein (HRPII/III)"],["Pfam%3APF17986","EMP3-KAHRP-like N-terminal domain"],["Pfam%3APF03805","Cytoadherence-linked asexual protein"],["Pfam%3APF06589","Circumsporozoite-related antigen (CRA)"],["TED%3AAF-Q9U431-F1-model_v4_TED01","TED novel fold AF-Q9U431-F1-model_v4_TED01"]]},{"id":"GO:0038202","l":"TORC1 signaling","na":6,"nb":7,"a":[["other/gator1_complex.html","GATOR1 complex"],["other/gator2_complex.html","GATOR2 complex"],["other/gtr1_gtr2_gtpase_complex.html","Gtr1-Gtr2 GTPase complex"],["other/ragulator_complex.html","Ragulator complex"],["other/seh1_associated_complex.html","Seh1-associated complex"],["other/torc1_complex.html","TORC1 complex"]],"b":[["ComplexPortal%3ACPX-26528","Ragulator complex"],["ComplexPortal%3ACPX-2709","Ragulator complex"],["ComplexPortal%3ACPX-4741","Ragulator complex"],["ComplexPortal%3ACPX-4761","Ragulator complex"],["ComplexPortal%3ACPX-2265","TORC1 complex"],["GO%3A0038202","TORC1 signaling"]]},{"id":"GO:0005784","l":"Sec61 translocon complex","na":6,"nb":6,"a":[["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"],["membrane_organelle/endoplasmic_reticulum_lumen.html","endoplasmic reticulum lumen"],["membrane_organelle/endoplasmic_reticulum_membrane.html","endoplasmic reticulum membrane"],["other/emc_complex.html","EMC complex"],["other/endoplasmic_reticulum_sec_complex.html","endoplasmic reticulum Sec complex"],["other/sec61_translocon_complex.html","Sec61 translocon complex"]],"b":[["ComplexPortal%3ACPX-1833","SEC61 protein-conducting channel complex"],["ComplexPortal%3ACPX-8073","SEC61 protein-conducting channel complex, SEC1A1 variant"],["ComplexPortal%3ACPX-8169","SEC61 protein-conducting channel complex, SEC1A2 variant"],["ComplexPortal%3ACPX-2647","SEC61 translocon complex, SEC61G1 variant"],["ComplexPortal%3ACPX-2650","SEC61 translocon complex, SEC61G2 variant"],["GO%3A0005784","Sec61 translocon complex"]]},{"id":"GO:0009706","l":"chloroplast inner membrane","na":6,"nb":6,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_inner_membrane.html","chloroplast inner membrane"],["membrane_organelle/chloroplast_intermembrane_space.html","chloroplast intermembrane space"],["membrane_organelle/chloroplast_membrane.html","chloroplast membrane"],["other/tic_complex.html","Tic complex"]],"b":[["GO%3A0009706","chloroplast inner membrane"],["PANTHER%3APTHR31038","EXPRESSED PROTEIN-RELATED"],["PANTHER%3APTHR34048","LOW-DENSITY RECEPTOR-LIKE PROTEIN"],["PANTHER%3APTHR36317","PROTEIN MULTIPLE CHLOROPLAST DIVISION SITE 1"],["PANTHER%3APTHR47296","PROTEIN TIC 40, CHLOROPLASTIC"],["PANTHER%3APTHR37755","PROTEIN TIC 56, CHLOROPLASTIC"]]},{"id":"GO:0030662","l":"coated vesicle membrane","na":6,"nb":6,"a":[["membrane_organelle/clathrin_coated_vesicle_membrane.html","clathrin-coated vesicle membrane"],["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"],["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"],["other/vesicle_coat.html","vesicle coat"]],"b":[["GO%3A0030665","clathrin-coated vesicle membrane"],["GO%3A0030662","coated vesicle membrane"],["GO%3A0030663","COPI-coated vesicle membrane"],["GO%3A0012507","ER to Golgi transport vesicle membrane"],["PANTHER%3APTHR45837","VESICLE-TRAFFICKING PROTEIN SEC22B"],["PANTHER%3APTHR21230","VESICLE TRANSPORT V-SNARE PROTEIN VTI1-RELATED"]]},{"id":"GO:0036452","l":"ESCRT complex","na":6,"nb":6,"a":[["other/escrt_0_complex.html","ESCRT-0 complex"],["other/escrt_complex.html","ESCRT complex"],["other/escrt_i_complex.html","ESCRT I complex"],["other/escrt_ii_complex.html","ESCRT II complex"],["other/escrt_iii_complex.html","ESCRT III complex"],["other/escrt_iv_complex.html","ESCRT IV complex"]],"b":[["GO%3A0033565","ESCRT-0 complex"],["GO%3A0036452","ESCRT complex"],["GO%3A0000813","ESCRT I complex"],["GO%3A0000814","ESCRT II complex"],["GO%3A0000815","ESCRT III complex"],["GO%3A1990621","ESCRT IV complex"]]},{"id":"NCBITaxon:5693","l":"Trypanosoma cruzi","na":6,"nb":6,"a":[["membrane_organelle/contractile_vacuole.html","contractile vacuole"],["membrane_organelle/early_endosome.html","early endosome"],["membrane_organelle/early_endosome_lumen.html","early endosome lumen"],["membrane_organelle/early_endosome_membrane.html","early endosome membrane"],["membrane_organelle/reservosome.html","reservosome"],["other/cytostome.html","cytostome"]],"b":[["Pfam%3APF22592","FCaBP EF-hand domain"],["Pfam%3APF09394","Chagasin family peptidase inhibitor I42"],["Pfam%3APF12131","Protein of unknown function (DUF3586)"],["Pfam%3APF11052","Trans-sialidase of Trypanosoma hydrophobic C-terminal"],["Pfam%3APF13859","BNR repeat-like domain"],["TED%3AAF-A0A2V2XJY2-F1-model_v4_TED02","TED novel fold AF-A0A2V2XJY2-F1-model_v4_TED02"]]},{"id":"GO:0005634","l":"nucleus","na":5,"nb":1580,"a":[["membrane_organelle/macronucleus.html","macronucleus"],["membrane_organelle/micronucleus.html","micronucleus"],["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nuclear_lumen.html","nuclear lumen"],["membrane_organelle/nucleus.html","nucleus"]],"b":[["ComplexPortal%3ACPX-9003","20S immunoproteasome complex"],["ComplexPortal%3ACPX-2829","ACF chromatin remodeling complex"],["ComplexPortal%3ACPX-434","ACF chromatin remodeling complex"],["ComplexPortal%3ACPX-444","ACF chromatin remodeling complex"],["ComplexPortal%3ACPX-2824","ADA complex"],["ComplexPortal%3ACPX-608","ADA complex"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":5,"nb":297,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"],["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]],"b":[["IDPO%3A0000002","disorder"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000045","phosphorylation display site"],["IDPO%3A0000059","self-inhibition"],["Pfam%3APF17837","4'-phosphopantetheinyl transferase N-terminal domain"]]},{"id":"GO:0043232","l":"intracellular membraneless organelle","na":5,"nb":237,"a":[["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/contractile_vacuole_complex.html","contractile vacuole complex"],["microcompartment/bacterial_microcompartment.html","bacterial microcompartment"],["other/phage_nucleus.html","phage nucleus"],["other/pyrenoid.html","pyrenoid"]],"b":[["GO%3A0098682","arciform density"],["GO%3A0005818","aster"],["GO%3A0031469","bacterial microcompartment"],["GO%3A0043590","bacterial nucleoid"],["GO%3A0097727","blepharoplast"],["GO%3A0005814","centriole"]]},{"id":"GO:0005739","l":"mitochondrion","na":5,"nb":233,"a":[["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_matrix.html","mitochondrial matrix"],["membrane_organelle/mitochondrial_membrane.html","mitochondrial membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"],["nucleoid/kinetoplast.html","kinetoplast"]],"b":[["ComplexPortal%3ACPX-3034","Acetolactate synthase complex"],["ComplexPortal%3ACPX-1331","bI3 intron splicing factor complex"],["ComplexPortal%3ACPX-1314","bI4 intron splicing factor complex"],["ComplexPortal%3ACPX-6928","BOL1-GRX5 iron-sulfur cluster assembly complex"],["ComplexPortal%3ACPX-6930","BOL3-GRX5 iron-sulfur cluster assembly complex"],["ComplexPortal%3ACPX-384","CBP3-CBP6 complex"]]},{"id":"GO:0015979","l":"photosynthesis","na":5,"nb":146,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"],["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"]],"b":[["GO%3A0015979","photosynthesis"],["NCBIfam%3ATIGR01337","allophycocyanin subunit beta"],["NCBIfam%3ATIGR03056","alpha/beta fold hydrolase BchO"],["NCBIfam%3ANF013497","Apocytochrome F, C-terminal"],["NCBIfam%3ANF014391","Bacteriochlorophyll A protein"],["NCBIfam%3ANF058502","C-phycocyanin alpha-cysteine-84 phycocyanobilin lyase subunit CpcE"]]},{"id":"GO:0070013","l":"intracellular organelle lumen","na":5,"nb":124,"a":[["membrane_organelle/endosome_lumen.html","endosome lumen"],["membrane_organelle/golgi_lumen.html","Golgi lumen"],["membrane_organelle/mitochondrial_matrix.html","mitochondrial matrix"],["membrane_organelle/nuclear_lumen.html","nuclear lumen"],["membrane_organelle/vacuolar_lumen.html","vacuolar lumen"]],"b":[["GO%3A0033985","acidocalcisome lumen"],["GO%3A0060205","cytoplasmic vesicle lumen"],["GO%3A0071682","endocytic vesicle lumen"],["GO%3A0005788","endoplasmic reticulum lumen"],["GO%3A0160315","endosomal intralumenal vesicle lumen"],["GO%3A0031904","endosome lumen"]]},{"id":"GO:0005929","l":"cilium","na":5,"nb":101,"a":[["appendage/ciliary_membrane.html","ciliary membrane"],["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"],["appendage/mastigoneme.html","mastigoneme"],["cytoskeleton/ciliary_basal_body.html","ciliary basal body"]],"b":[["ComplexPortal%3ACPX-2747","BBSome complex"],["ComplexPortal%3ACPX-428","BBSome complex"],["ComplexPortal%3ACPX-5001","CPLANE complex"],["ComplexPortal%3ACPX-5026","CPLANE complex"],["ComplexPortal%3ACPX-26357","Dynein-2 complex, light-chain variant 1"],["ComplexPortal%3ACPX-26360","Dynein-2 complex, light-chain variant 2"]]},{"id":"GO:0005759","l":"mitochondrial matrix","na":5,"nb":55,"a":[["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrial_matrix.html","mitochondrial matrix"],["membrane_organelle/mitochondrion.html","mitochondrion"],["nucleoid/mitochondrial_nucleoid.html","mitochondrial nucleoid"],["other/pam_complex_tim23_associated_import_motor.html","PAM complex, Tim23 associated import motor"]],"b":[["ComplexPortal%3ACPX-865","Electron transfer flavoprotein complex"],["ComplexPortal%3ACPX-6957","GRX5 iron-sulfur cluster assembly homodimer complex"],["ComplexPortal%3ACPX-6236","Methylcrotonyl-CoA carboxylase complex"],["ComplexPortal%3ACPX-2216","Mitochondrial 2-oxoisovalerate dehydrogenase complex"],["ComplexPortal%3ACPX-26685","Mitochondrial 2-oxoisovalerate dehydrogenase complex"],["ComplexPortal%3ACPX-949","Mitochondrial 3-oxoacyl-[acyl-carrier-protein] reductase"]]},{"id":"GO:0045259","l":"proton-transporting ATP synthase complex","na":5,"nb":52,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["ComplexPortal%3ACPX-25764","Mitochondrial proton translocating ATP synthase complex"],["ComplexPortal%3ACPX-3281","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-6151","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-8618","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-8619","Mitochondrial proton-transporting ATP synthase complex, testis-specific variant"]]},{"id":"GO:0005777","l":"peroxisome","na":5,"nb":34,"a":[["membrane_organelle/glycosome.html","glycosome"],["membrane_organelle/glyoxysome.html","glyoxysome"],["membrane_organelle/peroxisomal_matrix.html","peroxisomal matrix"],["membrane_organelle/peroxisomal_membrane.html","peroxisomal membrane"],["membrane_organelle/peroxisome.html","peroxisome"]],"b":[["ComplexPortal%3ACPX-4742","Catalase complex"],["ComplexPortal%3ACPX-4767","Catalase complex"],["ComplexPortal%3ACPX-4768","Catalase complex"],["GO%3A0020015","glycosome"],["GO%3A0009514","glyoxysome"],["GO%3A0042580","mannosome"]]},{"id":"GO:0009289","l":"pilus","na":5,"nb":31,"a":[["appendage/curli.html","curli"],["appendage/p_pilus.html","P pilus"],["appendage/pilus.html","pilus"],["appendage/type_i_pilus.html","type I pilus"],["appendage/type_iv_pilus.html","type IV pilus"]],"b":[["GO%3A0098774","curli"],["GO%3A0009289","pilus"],["GO%3A0140621","type I pilus"],["GO%3A0044096","type IV pilus"],["NCBIfam%3ANF058558","amyloid-like fimbrin subunit FapC"],["NCBIfam%3ANF016344","CS1 type fimbrial major subunit"]]},{"id":"GO:0005778","l":"peroxisomal membrane","na":5,"nb":29,"a":[["membrane_organelle/glycosome_membrane.html","glycosome membrane"],["membrane_organelle/glyoxysomal_membrane.html","glyoxysomal membrane"],["membrane_organelle/peroxisomal_matrix.html","peroxisomal matrix"],["membrane_organelle/peroxisomal_membrane.html","peroxisomal membrane"],["membrane_organelle/peroxisome.html","peroxisome"]],"b":[["ComplexPortal%3ACPX-1730","Peroxisomal ABC transporter complex PXA1-PXA2"],["ComplexPortal%3ACPX-10001","Peroxisomal PEX13-PEX14 docking complex"],["ComplexPortal%3ACPX-10021","Peroxisomal PEX13-PEX14 docking complex"],["ComplexPortal%3ACPX-1904","Peroxisomal PEX13-PEX14-PEX17 docking complex"],["ComplexPortal%3ACPX-1905","Peroxisomal PEX7-PEX18 receptor complex"],["ComplexPortal%3ACPX-1906","Peroxisomal PEX7-PEX21 receptor complex"]]},{"id":"GO:0000228","l":"nuclear chromosome","na":5,"nb":26,"a":[["membrane_organelle/macronucleus.html","macronucleus"],["membrane_organelle/micronucleus.html","micronucleus"],["membrane_organelle/nuclear_lumen.html","nuclear lumen"],["other/coma_complex.html","COMA complex"],["other/nuclear_chromosome.html","nuclear chromosome"]],"b":[["ComplexPortal%3ACPX-2340","Male specific lethal complex"],["ComplexPortal%3ACPX-1288","MEI5-SAE3 recombination assembly factor complex"],["ComplexPortal%3ACPX-26610","slx1-slx4 structure-specific endonuclease complex"],["ComplexPortal%3ACPX-3159","SLX1-SLX4 structure-specific endonuclease complex"],["ComplexPortal%3ACPX-8175","SLX1-SLX4 structure-specific endonuclease complex"],["ComplexPortal%3ACPX-8093","SWI5-SFR1 recombination accessory factor complex"]]},{"id":"GO:0005684","l":"U2-type spliceosomal complex","na":5,"nb":26,"a":[["ribonucleoprotein/u2_type_catalytic_step_1_spliceosome.html","U2-type catalytic step 1 spliceosome"],["ribonucleoprotein/u2_type_catalytic_step_2_spliceosome.html","U2-type catalytic step 2 spliceosome"],["ribonucleoprotein/u2_type_post_mrna_release_spliceosomal_complex.html","U2-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u2_type_precatalytic_spliceosome.html","U2-type precatalytic spliceosome"],["ribonucleoprotein/u2_type_prespliceosome.html","U2-type prespliceosome"]],"b":[["ComplexPortal%3ACPX-2565","SF3A complex"],["ComplexPortal%3ACPX-1647","SF3B complex"],["ComplexPortal%3ACPX-2227","SF3B complex"],["GO%3A0000243","commitment complex"],["GO%3A0071006","U2-type catalytic step 1 spliceosome"],["GO%3A0071007","U2-type catalytic step 2 spliceosome"]]},{"id":"NCBITaxon:5811","l":"Toxoplasma gondii","na":18,"nb":5,"a":[["cytoskeleton/conoid.html","conoid"],["cytoskeleton/intraconoid_microtubule.html","intraconoid microtubule"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["cytoskeleton/subpellicular_microtubule.html","subpellicular microtubule"],["membrane_organelle/apicomplexan_dense_granule.html","apicomplexan dense granule"],["membrane_organelle/apicomplexan_dense_granule_membrane.html","apicomplexan dense granule membrane"]],"b":[["Pfam%3APF24633","Domain of unknown function (DUF7630)"],["Pfam%3APF24634","Domain of unknown function (DUF7631)"],["Pfam%3APF05084","Granule antigen protein (GRA6)"],["Pfam%3APF14531","Kinase-like"],["Pfam%3APF10564","Sialic-acid binding micronemal adhesive repeat"]]},{"id":"GO:0005758","l":"mitochondrial intermembrane space","na":5,"nb":17,"a":[["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrial_intermembrane_space.html","mitochondrial intermembrane space"],["membrane_organelle/mitochondrial_membrane.html","mitochondrial membrane"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"]],"b":[["ComplexPortal%3ACPX-2371","TIM8-TIM13 mitochondrial intermembrane space protein transporter complex"],["ComplexPortal%3ACPX-6131","TIM8A-TIM13 mitochondrial intermembrane space protein transporter complex"],["ComplexPortal%3ACPX-6132","TIM8B-TIM13 mitochondrial intermembrane space protein transporter complex"],["ComplexPortal%3ACPX-2268","TIM9-TIM10 mitochondrial intermembrane space protein transporter complex"],["ComplexPortal%3ACPX-6125","TIM9-TIM10 mitochondrial intermembrane space protein transporter complex"],["ComplexPortal%3ACPX-6126","TIM9-TIM10-TIM10B mitochondrial intermembrane space protein transporter complex"]]},{"id":"GO:0009512","l":"cytochrome b6f complex","na":5,"nb":12,"a":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["GO%3A0009512","cytochrome b6f complex"],["NCBIfam%3ANF014576","cytochrome b6-f complex subunit PetG"],["NCBIfam%3ANF016971","cytochrome b6-f complex subunit PetL"],["NCBIfam%3ANF015687","cytochrome b6-f complex subunit PetN"],["NCBIfam%3ANF050003","cytochrome b6f subunit PetP"],["NCBIfam%3ANF019653","PetM family cytochrome b6-f complex subunit 7"]]},{"id":"GO:0005637","l":"nuclear inner membrane","na":5,"nb":11,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nuclear_envelope_lumen.html","nuclear envelope lumen"],["membrane_organelle/nuclear_inner_membrane.html","nuclear inner membrane"],["membrane_organelle/nuclear_lumen.html","nuclear lumen"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"]],"b":[["ComplexPortal%3ACPX-3248","Asi ubiquitin ligase complex"],["GO%3A0005637","nuclear inner membrane"],["InterPro%3AIPR018861","Transmembrane protein 201, C-terminal"],["NCBIfam%3ANF021959","DUF2448 domain-containing protein"],["PANTHER%3APTHR38044","BOUQUET FORMATION PROTEIN 4"],["PANTHER%3APTHR31488","DPY-19-LIKE 1, LIKE (H. SAPIENS)"]]},{"id":"GO:0005688","l":"U6 snRNP","na":5,"nb":10,"a":[["ribonucleoprotein/u2_type_catalytic_step_1_spliceosome.html","U2-type catalytic step 1 spliceosome"],["ribonucleoprotein/u2_type_catalytic_step_2_spliceosome.html","U2-type catalytic step 2 spliceosome"],["ribonucleoprotein/u2_type_post_mrna_release_spliceosomal_complex.html","U2-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u4_u6_snrnp.html","U4/U6 snRNP"],["ribonucleoprotein/u6_snrnp.html","U6 snRNP"]],"b":[["ComplexPortal%3ACPX-44","LSM2-8 complex"],["ComplexPortal%3ACPX-24","U6 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-26411","U6 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-26415","U6 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-26483","U6 small nuclear ribonucleoprotein complex"],["GO%3A0005688","U6 snRNP"]]},{"id":"GO:0005879","l":"axonemal microtubule","na":5,"nb":10,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"],["cytoskeleton/b_axonemal_microtubule.html","B axonemal microtubule"],["cytoskeleton/c1_axonemal_microtubule.html","C1 axonemal microtubule"],["cytoskeleton/c2_axonemal_microtubule.html","C2 axonemal microtubule"]],"b":[["GO%3A0097649","A axonemal microtubule"],["GO%3A0005879","axonemal microtubule"],["GO%3A0097650","B axonemal microtubule"],["GO%3A1990719","C1 axonemal microtubule"],["GO%3A1990720","C2 axonemal microtubule"],["NCBIfam%3ANF026242","microtubule wall 1/2 piercer family protein"]]},{"id":"GO:0016471","l":"vacuolar proton-transporting V-type ATPase complex","na":5,"nb":9,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v0_domain.html","vacuolar proton-transporting V-type ATPase, V0 domain"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v1_domain.html","vacuolar proton-transporting V-type ATPase, V1 domain"],["membrane_organelle/fungal_type_vacuole_membrane.html","fungal-type vacuole membrane"],["membrane_organelle/vacuolar_membrane.html","vacuolar membrane"]],"b":[["ComplexPortal%3ACPX-1193","Vacuolar proton translocating ATPase complex, vacuole variant"],["GO%3A0046611","lysosomal proton-transporting V-type ATPase complex"],["GO%3A0016471","vacuolar proton-transporting V-type ATPase complex"],["NCBIfam%3ATIGR01042","V-type ATPase subunit A"],["NCBIfam%3ATIGR01040","V-type ATPase subunit B"],["NCBIfam%3ATIGR01100","V-type ATPase subunit C"]]},{"id":"GO:0030135","l":"coated vesicle","na":5,"nb":9,"a":[["membrane_organelle/clathrin_coated_vesicle.html","clathrin-coated vesicle"],["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"],["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"]],"b":[["GO%3A0030136","clathrin-coated vesicle"],["GO%3A0030135","coated vesicle"],["GO%3A0030137","COPI-coated vesicle"],["GO%3A0030134","COPII-coated ER to Golgi transport vesicle"],["PANTHER%3APTHR31975","BUD SITE SELECTION PROTEIN 7-RELATED"],["PANTHER%3APTHR10261","COATOMER SUBUNIT GAMMA"]]},{"id":"GO:0031904","l":"endosome lumen","na":8,"nb":5,"a":[["membrane_organelle/early_endosome_lumen.html","early endosome lumen"],["membrane_organelle/endosome.html","endosome"],["membrane_organelle/endosome_lumen.html","endosome lumen"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/late_endosome_lumen.html","late endosome lumen"]],"b":[["GO%3A0031905","early endosome lumen"],["GO%3A0036021","endolysosome lumen"],["GO%3A0031904","endosome lumen"],["GO%3A0031906","late endosome lumen"],["GO%3A0034777","recycling endosome lumen"]]},{"id":"GO:0009528","l":"plastid inner membrane","na":7,"nb":5,"a":[["membrane_organelle/chloroplast_inner_membrane.html","chloroplast inner membrane"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/organellar_chromatophore_inner_membrane.html","organellar chromatophore inner membrane"],["membrane_organelle/plastid_envelope.html","plastid envelope"],["membrane_organelle/plastid_inner_membrane.html","plastid inner membrane"],["membrane_organelle/plastid_intermembrane_space.html","plastid intermembrane space"]],"b":[["GO%3A0033098","amyloplast inner membrane"],["GO%3A0009706","chloroplast inner membrane"],["GO%3A0031899","chromoplast inner membrane"],["GO%3A0036012","cyanelle inner membrane"],["GO%3A0009528","plastid inner membrane"]]},{"id":"GO:0009570","l":"chloroplast stroma","na":7,"nb":5,"a":[["inclusion/plastoglobule.html","plastoglobule"],["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_inner_membrane.html","chloroplast inner membrane"],["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"],["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"]],"b":[["GO%3A0009570","chloroplast stroma"],["PANTHER%3APTHR34113","INACTIVE PURPLE ACID PHOSPHATASE-LIKE PROTEIN"],["PANTHER%3APTHR36803","PROTEIN CHLORORESPIRATORY REDUCTION 7, CHLOROPLASTIC"],["PANTHER%3APTHR47317","PROTEIN LHCP TRANSLOCATION DEFECT"],["PANTHER%3APTHR34669","THIOREDOXIN-LIKE FOLD DOMAIN-CONTAINING PROTEIN MRL7L, CHLOROPLASTIC"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":7,"nb":5,"a":[["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/rc_lh1_pufx_core_complex.html","RC-LH1-PufX core complex"],["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"]],"b":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF02963","Restriction endonuclease EcoRI"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["PROSITE%3APS00974","Mannitol dehydrogenases signature"],["PROSITE%3APS00567","Phosphoribulokinase signature"]]},{"id":"GO:0000324","l":"fungal-type vacuole","na":6,"nb":5,"a":[["membrane_organelle/autophagosome.html","autophagosome"],["membrane_organelle/cvt_vesicle.html","Cvt vesicle"],["membrane_organelle/fungal_type_vacuole.html","fungal-type vacuole"],["membrane_organelle/fungal_type_vacuole_lumen.html","fungal-type vacuole lumen"],["membrane_organelle/fungal_type_vacuole_membrane.html","fungal-type vacuole membrane"],["membrane_organelle/vacuole.html","vacuole"]],"b":[["ComplexPortal%3ACPX-1278","LMA1 complex, TRX1 variant"],["ComplexPortal%3ACPX-1279","LMA1 complex, TRX2 variant"],["GO%3A0000324","fungal-type vacuole"],["InterPro%3AIPR033819","Saccharopepsin"],["PANTHER%3APTHR36819","REGULATOR OF PHOSPHOLIPASE D SRF1"]]},{"id":"GO:0030076","l":"light-harvesting complex","na":5,"nb":6,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/phycobilisome.html","phycobilisome"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"]],"b":[["GO%3A0030076","light-harvesting complex"],["GO%3A0030089","phycobilisome"],["GO%3A0030077","plasma membrane light-harvesting complex"],["GO%3A0009503","thylakoid light-harvesting complex"],["Pfam%3APF02429","Peridinin-chlorophyll A binding protein"],["InterPro%3AIPR036550","Peridinin-chlorophyll A binding superfamily"]]},{"id":"GO:0030694","l":"bacterial-type flagellum basal body, rod","na":6,"nb":5,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"],["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"],["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"]],"b":[["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["GO%3A0030694","bacterial-type flagellum basal body, rod"],["NCBIfam%3ATIGR01396","flagellar basal body rod protein FlgB"],["NCBIfam%3ATIGR01395","flagellar basal body rod protein FlgC"],["NCBIfam%3ATIGR02490","flagellar basal-body rod protein FlgF"]]},{"id":"GO:0000814","l":"ESCRT II complex","na":5,"nb":5,"a":[["membrane_organelle/endosome.html","endosome"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/multivesicular_body.html","multivesicular body"],["other/escrt_complex.html","ESCRT complex"],["other/escrt_ii_complex.html","ESCRT II complex"]],"b":[["ComplexPortal%3ACPX-1623","ESCRT-II complex"],["ComplexPortal%3ACPX-2458","ESCRT-II complex"],["ComplexPortal%3ACPX-2506","ESCRT-II complex"],["GO%3A0000814","ESCRT II complex"],["Pfam%3APF05871","ESCRT-II complex subunit"]]},{"id":"GO:0030134","l":"COPII-coated ER to Golgi transport vesicle","na":5,"nb":5,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"],["membrane_organelle/copii_coated_vesicle_lumen.html","COPII-coated vesicle lumen"],["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"],["other/copii_vesicle_coat.html","COPII vesicle coat"]],"b":[["GO%3A0030134","COPII-coated ER to Golgi transport vesicle"],["PANTHER%3APTHR10984","ENDOPLASMIC RETICULUM-GOLGI INTERMEDIATE COMPARTMENT PROTEIN"],["PANTHER%3APTHR15858","IMMEDIATE EARLY RESPONSE 3-INTERACTING PROTEIN 1"],["PANTHER%3APTHR13144","TEX261 PROTEIN"],["PANTHER%3APTHR14083","YIP1 INTERACTING FACTOR HOMOLOG YIF1 PROTEIN"]]},{"id":"GO:0090114","l":"COPII-coated vesicle budding","na":5,"nb":5,"a":[["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"],["membrane_organelle/endoplasmic_reticulum_membrane.html","endoplasmic reticulum membrane"],["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"],["other/copii_vesicle_coat.html","COPII vesicle coat"],["other/vesicle_coat.html","vesicle coat"]],"b":[["GO%3A0090114","COPII-coated vesicle budding"],["InterPro%3AIPR037550","Sec23, C-terminal"],["PANTHER%3APTHR11141","PROTEIN TRANSPORT PROTEIN SEC23"],["PANTHER%3APTHR13803","SEC24-RELATED PROTEIN"],["PANTHER%3APTHR13923","SEC31-RELATED PROTEIN"]]},{"id":"GO:0140535","l":"intracellular protein-containing complex","na":4,"nb":262,"a":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"],["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"],["other/exodeoxyribonuclease_v_complex.html","exodeoxyribonuclease V complex"],["other/proteasome_complex.html","proteasome complex"]],"b":[["ComplexPortal%3ACPX-15604","VCP-remodelling complex"],["GO%3A0032144","4-aminobutyrate transaminase complex"],["GO%3A0034977","ABIN2-NFKB1-MAP3K8 complex"],["GO%3A0030929","ADPG pyrophosphorylase complex"],["GO%3A0017101","aminoacyl-tRNA synthetase multienzyme complex"],["GO%3A0009356","aminodeoxychorismate synthase complex"]]},{"id":"GO:0031981","l":"nuclear lumen","na":4,"nb":147,"a":[["membrane_organelle/nuclear_lumen.html","nuclear lumen"],["membrane_organelle/nucleus.html","nucleus"],["other/nuclear_chromosome.html","nuclear chromosome"],["other/nucleolus.html","nucleolus"]],"b":[["GO%3A0031981","nuclear lumen"],["PANTHER%3APTHR28028","60S RIBOSOMAL SUBUNIT ASSEMBLY/EXPORT PROTEIN LOC1"],["PANTHER%3APTHR15565","AATF PROTEIN APOPTOSIS ANTAGONIZING TRANSCRIPTION FACTOR"],["PANTHER%3APTHR12311","ACTIVATOR OF BASAL TRANSCRIPTION 1"],["PANTHER%3APTHR31454","ACTIVE REGULATOR OF SIRT1"],["PANTHER%3APTHR46627","AMINOPEPTIDASE O"]]},{"id":"GO:0060271","l":"cilium assembly","na":4,"nb":94,"a":[["appendage/ciliary_membrane.html","ciliary membrane"],["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"],["cytoskeleton/ciliary_basal_body.html","ciliary basal body"]],"b":[["ComplexPortal%3ACPX-1908","BBSome complex"],["ComplexPortal%3ACPX-1909","BBSome complex"],["ComplexPortal%3ACPX-2747","BBSome complex"],["ComplexPortal%3ACPX-428","BBSome complex"],["ComplexPortal%3ACPX-2789","CEP290 complex"],["ComplexPortal%3ACPX-1289","Intraflagellar transport complex A"]]},{"id":"GO:0071973","l":"bacterial-type flagellum-dependent cell motility","na":4,"nb":60,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/periplasmic_flagellum.html","periplasmic flagellum"]],"b":[["ComplexPortal%3ACPX-4886","DNA-directed RNA polymerase holoenzyme complex, SigmaF variant"],["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["GO%3A0071973","bacterial-type flagellum-dependent cell motility"],["GO%3A0071978","bacterial-type flagellum-dependent swarming motility"]]},{"id":"GO:0036064","l":"ciliary basal body","na":4,"nb":42,"a":[["appendage/cilium.html","cilium"],["cytoskeleton/ciliary_basal_body.html","ciliary basal body"],["cytoskeleton/ciliary_rootlet.html","ciliary rootlet"],["cytoskeleton/tripartite_attachment_complex.html","tripartite attachment complex"]],"b":[["GO%3A0036064","ciliary basal body"],["GO%3A1902636","kinociliary basal body"],["GO%3A1902671","left anterior basal body"],["GO%3A1902677","left caudal basal body"],["GO%3A1902673","left posteriolateral basal body"],["GO%3A1902675","left ventral basal body"]]},{"id":"GO:0009522","l":"photosystem I","na":4,"nb":33,"a":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/photosystem_i.html","photosystem I"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["GO%3A0030093","chloroplast photosystem I"],["GO%3A0009522","photosystem I"],["GO%3A0030094","plasma membrane-derived photosystem I"],["NCBIfam%3ANF014449","photosystem I assembly protein Ycf4"],["NCBIfam%3ATIGR01336","photosystem I core protein PsaB"],["NCBIfam%3ANF014578","photosystem I reaction center subunit II"]]},{"id":"GO:0031967","l":"organelle envelope","na":4,"nb":31,"a":[["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitosome_envelope.html","mitosome envelope"],["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/plastid_envelope.html","plastid envelope"]],"b":[["GO%3A0005740","mitochondrial envelope"],["GO%3A0005635","nuclear envelope"],["GO%3A0031967","organelle envelope"],["GO%3A0009526","plastid envelope"],["GO%3A0070732","spindle envelope"],["PANTHER%3APTHR36959","ALTERED INHERITANCE OF MITOCHONDRIA PROTEIN 24, MITOCHONDRIAL"]]},{"id":"GO:0006890","l":"retrograde vesicle-mediated transport, Golgi to endoplasmic reticulum","na":4,"nb":30,"a":[["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["other/copi_vesicle_coat.html","COPI vesicle coat"],["other/dsl1_nzr_complex.html","Dsl1/NZR complex"]],"b":[["ComplexPortal%3ACPX-7803","COPI vesicle coat complex, COPG1-COPZ1 variant"],["ComplexPortal%3ACPX-7970","COPI vesicle coat complex, COPG1-COPZ2 variant"],["ComplexPortal%3ACPX-7969","COPI vesicle coat complex, COPG2-COPZ1 variant"],["ComplexPortal%3ACPX-1652","COPI vesicle coat complex"],["ComplexPortal%3ACPX-2820","COPI vesicle coat complex"],["ComplexPortal%3ACPX-1786","Dsl1 tethering complex"]]},{"id":"GO:0005773","l":"vacuole","na":4,"nb":29,"a":[["membrane_organelle/fungal_type_vacuole.html","fungal-type vacuole"],["membrane_organelle/vacuolar_lumen.html","vacuolar lumen"],["membrane_organelle/vacuolar_membrane.html","vacuolar membrane"],["membrane_organelle/vacuole.html","vacuole"]],"b":[["GO%3A0005776","autophagosome"],["GO%3A0000331","contractile vacuole"],["GO%3A0000323","lytic vacuole"],["GO%3A0000325","plant-type vacuole"],["GO%3A0032195","post-lysosomal vacuole"],["GO%3A0000322","storage vacuole"]]},{"id":"GO:0005770","l":"late endosome","na":4,"nb":27,"a":[["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/late_endosome_lumen.html","late endosome lumen"],["membrane_organelle/late_endosome_membrane.html","late endosome membrane"],["membrane_organelle/multivesicular_body.html","multivesicular body"]],"b":[["ComplexPortal%3ACPX-5181","AP-5 Adaptor complex"],["ComplexPortal%3ACPX-5182","AP-5 Adaptor complex"],["ComplexPortal%3ACPX-20045","AP5-Spastizin-spatacsin complex"],["ComplexPortal%3ACPX-3233","GSE complex"],["ComplexPortal%3ACPX-8153","MON1-CCZ1 guanyl-nucleotide exchange factor complex, MON1A variant"],["ComplexPortal%3ACPX-8152","MON1-CCZ1 guanyl-nucleotide exchange factor complex, MON1B variant"]]},{"id":"GO:0099023","l":"vesicle tethering complex","na":4,"nb":20,"a":[["other/cog_complex.html","COG complex"],["other/corvet_complex.html","CORVET complex"],["other/dsl1_nzr_complex.html","Dsl1/NZR complex"],["other/garp_complex.html","GARP complex"]],"b":[["ComplexPortal%3ACPX-6241","CHEVI tethering complex"],["GO%3A0017119","COG complex"],["GO%3A0106103","COPII vesicles tethering complex"],["GO%3A0033263","CORVET complex"],["GO%3A0070939","Dsl1/NZR complex"],["GO%3A0000145","exocyst"]]},{"id":"GO:0110143","l":"magnetosome","na":4,"nb":17,"a":[["cytoskeleton/mamk_filament.html","MamK filament"],["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]],"b":[["GO%3A0110143","magnetosome"],["NCBIfam%3ANF040997","liposome tubulation protein MamY"],["NCBIfam%3ANF040917","magnetic particle specific iron-binding protein Mms6"],["NCBIfam%3ANF040986","magnetosome biogenesis transporter MamH"],["NCBIfam%3ANF040989","magnetosome biogenesis transporter MamN"],["NCBIfam%3ANF040998","magnetosome biogenesis transporter MamZ"]]},{"id":"GO:0005788","l":"endoplasmic reticulum lumen","na":4,"nb":15,"a":[["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"],["membrane_organelle/endoplasmic_reticulum_lumen.html","endoplasmic reticulum lumen"],["membrane_organelle/endoplasmic_reticulum_membrane.html","endoplasmic reticulum membrane"],["membrane_organelle/nuclear_envelope_lumen.html","nuclear envelope lumen"]],"b":[["ComplexPortal%3ACPX-6822","Glucosidase II complex"],["ComplexPortal%3ACPX-1283","HTM1-PDI1 exomannosidase complex"],["GO%3A0099021","cortical endoplasmic reticulum lumen"],["GO%3A0005788","endoplasmic reticulum lumen"],["GO%3A0099020","perinuclear endoplasmic reticulum lumen"],["GO%3A0048237","rough endoplasmic reticulum lumen"]]},{"id":"GO:0030117","l":"membrane coat","na":4,"nb":13,"a":[["other/ap_type_membrane_coat_adaptor_complex.html","AP-type membrane coat adaptor complex"],["other/clathrin_coat.html","clathrin coat"],["other/membrane_coat.html","membrane coat"],["other/vesicle_coat.html","vesicle coat"]],"b":[["GO%3A0030118","clathrin coat"],["GO%3A0030117","membrane coat"],["GO%3A0030120","vesicle coat"],["InterPro%3AIPR000804","Clathrin adaptor complex, small chain"],["InterPro%3AIPR002553","Clathrin/coatomer adaptor, adaptin-like, N-terminal"],["InterPro%3AIPR006692","COPA/B, second beta-propeller domain"]]},{"id":"GO:0031469","l":"bacterial microcompartment","na":4,"nb":12,"a":[["microcompartment/bacterial_microcompartment.html","bacterial microcompartment"],["microcompartment/carboxysome.html","carboxysome"],["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"],["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]],"b":[["GO%3A0031469","bacterial microcompartment"],["GO%3A0031470","carboxysome"],["GO%3A0031471","ethanolamine degradation polyhedral organelle"],["GO%3A0031472","propanediol degradation polyhedral organelle"],["NCBIfam%3ATIGR02704","carboxysome peptide B"],["NCBIfam%3ANF011934","ethanolamine utilization microcompartment protein EutL"]]},{"id":"GO:0030139","l":"endocytic vesicle","na":4,"nb":11,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle.html","clathrin-coated endocytic vesicle"],["membrane_organelle/endocytic_vesicle.html","endocytic vesicle"],["membrane_organelle/endocytic_vesicle_lumen.html","endocytic vesicle lumen"],["membrane_organelle/endocytic_vesicle_membrane.html","endocytic vesicle membrane"]],"b":[["ComplexPortal%3ACPX-5774","Cubam cobalamin uptake receptor complex"],["ComplexPortal%3ACPX-5847","Cubam cobalamin uptake receptor complex"],["GO%3A0045334","clathrin-coated endocytic vesicle"],["GO%3A0030139","endocytic vesicle"],["GO%3A0045335","phagocytic vesicle"],["GO%3A0032195","post-lysosomal vacuole"]]},{"id":"GO:0030660","l":"Golgi-associated vesicle membrane","na":4,"nb":11,"a":[["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"],["membrane_organelle/trans_golgi_network_transport_vesicle_membrane.html","trans-Golgi network transport vesicle membrane"]],"b":[["GO%3A0030663","COPI-coated vesicle membrane"],["GO%3A0030660","Golgi-associated vesicle membrane"],["GO%3A0012510","trans-Golgi network transport vesicle membrane"],["PANTHER%3APTHR16156","AFTIPHILIN A-RELATED"],["PANTHER%3APTHR15463","AP1 GAMMA SUBUNIT BINDING PROTEIN 1"],["PANTHER%3APTHR19876","COATOMER"]]},{"id":"NCBITaxon:5741","l":"Giardia intestinalis","na":11,"nb":4,"a":[["cytoskeleton/funis.html","funis"],["cytoskeleton/median_body.html","median body"],["cytoskeleton/microtubule.html","microtubule"],["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_crossbridge.html","ventral disc crossbridge"],["cytoskeleton/ventral_disc_dorsal_microribbon.html","ventral disc dorsal microribbon"]],"b":[["Pfam%3APF22293","Annexin E1, fourth repeat"],["Pfam%3APF17529","Family of unknown function (DUF5450)"],["TED%3AAF-V6TFM4-F1-model_v4_TED01","TED novel fold AF-V6TFM4-F1-model_v4_TED01"],["TED%3AAF-V6TNW5-F1-model_v4_TED02","TED novel fold AF-V6TNW5-F1-model_v4_TED02"]]},{"id":"GO:0000815","l":"ESCRT III complex","na":10,"nb":4,"a":[["membrane_organelle/endosome.html","endosome"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/multivesicular_body.html","multivesicular body"],["membrane_organelle/multivesicular_body_intraluminal_vesicle.html","multivesicular body intraluminal vesicle"],["membrane_organelle/multivesicular_body_membrane.html","multivesicular body membrane"]],"b":[["ComplexPortal%3ACPX-1624","ESCRT-III complex"],["ComplexPortal%3ACPX-2459","ESCRT-III complex"],["ComplexPortal%3ACPX-329","ESCRT-III complex"],["GO%3A0000815","ESCRT III complex"]]},{"id":"GO:0000940","l":"outer kinetochore","na":4,"nb":10,"a":[["other/dash_complex.html","DASH complex"],["other/mis12_mind_type_complex.html","MIS12/MIND type complex"],["other/ndc80_complex.html","Ndc80 complex"],["other/outer_kinetochore.html","outer kinetochore"]],"b":[["GO%3A0000444","MIS12/MIND type complex"],["GO%3A0000940","outer kinetochore"],["PANTHER%3APTHR14778","KINETOCHORE-ASSOCIATED PROTEIN DSN1 HOMOLOG"],["PANTHER%3APTHR31749","KINETOCHORE-ASSOCIATED PROTEIN NSL1 HOMOLOG"],["PANTHER%3APTHR10643","KINETOCHORE PROTEIN NDC80"],["PANTHER%3APTHR14281","KINETOCHORE PROTEIN SPC25-RELATED"]]},{"id":"GO:0009295","l":"nucleoid","na":4,"nb":10,"a":[["nucleoid/mitochondrial_nucleoid.html","mitochondrial nucleoid"],["nucleoid/nucleoid.html","nucleoid"],["nucleoid/plastid_nucleoid.html","plastid nucleoid"],["other/single_stranded_dna_binding_protein_complex.html","single-stranded DNA-binding protein complex"]],"b":[["GO%3A0043590","bacterial nucleoid"],["GO%3A0042645","mitochondrial nucleoid"],["GO%3A0009295","nucleoid"],["GO%3A0042646","plastid nucleoid"],["NCBIfam%3ANF016217","MukB N-terminal"],["NCBIfam%3ANF001557","nucleoid-associated protein YejK"]]},{"id":"GO:0005816","l":"spindle pole body","na":4,"nb":9,"a":[["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"],["cytoskeleton/spindle_pole_body.html","spindle pole body"],["spore/prospore_membrane_spindle_pole_body_attachment_site.html","prospore membrane spindle pole body attachment site"]],"b":[["ComplexPortal%3ACPX-1198","Gamma tubulin small complex"],["ComplexPortal%3ACPX-1287","MPS2-BBP1 spindle pole body anchor complex"],["ComplexPortal%3ACPX-26510","SID2-MOB1 protein kinase complex"],["GO%3A0035974","meiotic spindle pole body"],["GO%3A0044732","mitotic spindle pole body"],["GO%3A0005816","spindle pole body"]]},{"id":"GO:0031160","l":"spore wall","na":4,"nb":9,"a":[["spore/microsporidian_type_endospore.html","microsporidian-type endospore"],["spore/microsporidian_type_exospore.html","microsporidian-type exospore"],["spore/polar_tube_anchoring_disc.html","polar tube anchoring disc"],["spore/spore_wall.html","spore wall"]],"b":[["ComplexPortal%3ACPX-3028","1,3-beta-D-glucan synthase complex, FKS3-RHO1 variant"],["GO%3A0005619","ascospore wall"],["GO%3A0097515","asexual spore wall"],["GO%3A0043591","endospore external encapsulating structure"],["GO%3A0097514","sexual spore wall"],["GO%3A0031160","spore wall"]]},{"id":"GO:0001534","l":"radial spoke","na":4,"nb":8,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_central_pair_projection.html","axonemal central pair projection"],["cytoskeleton/axoneme.html","axoneme"],["cytoskeleton/radial_spoke.html","radial spoke"]],"b":[["ComplexPortal%3ACPX-8161","Radial spoke complex, ciliiar variant"],["ComplexPortal%3ACPX-8162","Radial spoke complex, flagellar variant"],["ComplexPortal%3ACPX-8164","Radial spoke complex, flagellar variant"],["GO%3A0120333","radial spoke 1"],["GO%3A0120334","radial spoke 2"],["GO%3A0120335","radial spoke 3"]]},{"id":"GO:0006119","l":"oxidative phosphorylation","na":4,"nb":8,"a":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"]],"b":[["ComplexPortal%3ACPX-268","Cytochrome bd-I ubiquinol oxidase complex"],["ComplexPortal%3ACPX-269","Cytochrome bd-II ubiquinol oxidase complex"],["GO%3A0006119","oxidative phosphorylation"],["PANTHER%3APTHR12448","ATP SYNTHASE EPSILON CHAIN, MITOCHONDRIAL"],["PANTHER%3APTHR13080","ATP SYNTHASE F CHAIN, MITOCHONDRIAL-RELATED"],["PANTHER%3APTHR43141","CYTOCHROME BD2 SUBUNIT II"]]},{"id":"InterPro:IPR001492","l":"","na":4,"nb":8,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["Pfam%3APF00700","Bacterial flagellin C-terminal helical region"],["Pfam%3APF08884","Flagellin D3 domain"],["Pfam%3APF21504","Flagellin, barrel domain"],["Pfam%3APF22370","Flagellin, beta sheet domain"],["PANTHER%3APTHR42792","FLAGELLIN"],["Pfam%3APF00669","Bacterial flagellin N-terminal helical region"]]},{"id":"GO:0009424","l":"bacterial-type flagellum hook","na":4,"nb":7,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["GO%3A0009424","bacterial-type flagellum hook"],["NCBIfam%3ATIGR02492","flagellar hook-associated protein FlgK"],["NCBIfam%3ATIGR02550","flagellar hook-associated protein FlgL"],["NCBIfam%3ANF007514","flagellar hook length control protein FliK"],["InterPro%3AIPR003481","Flagellar hook-associated protein 2, N-terminal"],["NCBIfam%3ANF014518","flagellar cap protein FliD N-terminal domain-containing protein"]]},{"id":"GO:0009527","l":"plastid outer membrane","na":7,"nb":4,"a":[["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"],["membrane_organelle/organellar_chromatophore_outer_membrane.html","organellar chromatophore outer membrane"],["membrane_organelle/plastid_envelope.html","plastid envelope"],["membrane_organelle/plastid_intermembrane_space.html","plastid intermembrane space"],["membrane_organelle/plastid_membrane.html","plastid membrane"]],"b":[["GO%3A0009707","chloroplast outer membrane"],["GO%3A0031900","chromoplast outer membrane"],["GO%3A0036013","cyanelle outer membrane"],["GO%3A0009527","plastid outer membrane"]]},{"id":"GO:0009529","l":"plastid intermembrane space","na":7,"nb":4,"a":[["membrane_organelle/chloroplast_intermembrane_space.html","chloroplast intermembrane space"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/organellar_chromatophore_intermembrane_space.html","organellar chromatophore intermembrane space"],["membrane_organelle/plastid_envelope.html","plastid envelope"],["membrane_organelle/plastid_inner_membrane.html","plastid inner membrane"],["membrane_organelle/plastid_intermembrane_space.html","plastid intermembrane space"]],"b":[["GO%3A0031972","chloroplast intermembrane space"],["GO%3A0031973","chromoplast intermembrane space"],["GO%3A0036014","cyanelle intermembrane space"],["GO%3A0009529","plastid intermembrane space"]]},{"id":"GO:0012507","l":"ER to Golgi transport vesicle membrane","na":4,"nb":7,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"],["membrane_organelle/copii_coated_vesicle_lumen.html","COPII-coated vesicle lumen"],["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"]],"b":[["GO%3A0012507","ER to Golgi transport vesicle membrane"],["PANTHER%3APTHR11141","PROTEIN TRANSPORT PROTEIN SEC23"],["PANTHER%3APTHR45684","RE74312P"],["PANTHER%3APTHR13803","SEC24-RELATED PROTEIN"],["PANTHER%3APTHR13923","SEC31-RELATED PROTEIN"],["PANTHER%3APTHR45837","VESICLE-TRAFFICKING PROTEIN SEC22B"]]},{"id":"GO:0031985","l":"Golgi cisterna","na":4,"nb":7,"a":[["membrane_organelle/golgi_apparatus.html","Golgi apparatus"],["membrane_organelle/golgi_cisterna.html","Golgi cisterna"],["membrane_organelle/golgi_cisterna_membrane.html","Golgi cisterna membrane"],["membrane_organelle/golgi_membrane.html","Golgi membrane"]],"b":[["GO%3A0000137","Golgi cis cisterna"],["GO%3A0031985","Golgi cisterna"],["GO%3A0005797","Golgi medial cisterna"],["GO%3A0000138","Golgi trans cisterna"],["PANTHER%3APTHR13815","GOLGIN-84"],["PANTHER%3APTHR21094","GOS-28 SNARE- RELATED"]]},{"id":"GO:0055035","l":"plastid thylakoid membrane","na":7,"nb":4,"a":[["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"],["membrane_organelle/plastid_membrane.html","plastid membrane"],["membrane_organelle/plastid_thylakoid.html","plastid thylakoid"],["membrane_organelle/plastid_thylakoid_lumen.html","plastid thylakoid lumen"]],"b":[["GO%3A0009535","chloroplast thylakoid membrane"],["GO%3A0033115","cyanelle thylakoid membrane"],["GO%3A0055035","plastid thylakoid membrane"],["GO%3A0042650","prothylakoid membrane"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":4,"nb":7,"a":[["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"],["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]],"b":[["Pfam%3APF19443","DAHL domain"],["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"],["Pfam%3APF03524","Conjugal transfer protein"],["Pfam%3APF27439","Chaperone protein DnaJ C-terminal region"],["Pfam%3APF10907","Protein of unknown function (DUF2749)"],["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]]},{"id":"GO:0009534","l":"chloroplast thylakoid","na":4,"nb":6,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"],["membrane_organelle/chloroplast_thylakoid_lumen.html","chloroplast thylakoid lumen"],["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"]],"b":[["GO%3A0009533","chloroplast stromal thylakoid"],["GO%3A0009534","chloroplast thylakoid"],["GO%3A0009515","granal stacked thylakoid"],["PANTHER%3APTHR47862","PEPTIDYL-PROLYL CIS-TRANS ISOMERASE FKBP18, CHLOROPLASTIC"],["PANTHER%3APTHR34790","PHOTOSYSTEM II CORE COMPLEX PROTEINS PSBY, CHLOROPLASTIC"],["PANTHER%3APTHR36734","YCF37-LIKE PROTEIN"]]},{"id":"GO:0030663","l":"COPI-coated vesicle membrane","na":6,"nb":4,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"],["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/copi_coated_vesicle_lumen.html","COPI-coated vesicle lumen"],["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"]],"b":[["ComplexPortal%3ACPX-1303","MST27-MST28 vesicle formation complex"],["GO%3A0030663","COPI-coated vesicle membrane"],["GO%3A0012508","Golgi to ER transport vesicle membrane"],["GO%3A0012509","inter-Golgi transport vesicle membrane"]]},{"id":"GO:0070112","l":"organellar chromatophore membrane","na":6,"nb":4,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_inner_membrane.html","organellar chromatophore inner membrane"],["membrane_organelle/organellar_chromatophore_membrane.html","organellar chromatophore membrane"],["membrane_organelle/organellar_chromatophore_outer_membrane.html","organellar chromatophore outer membrane"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"],["membrane_organelle/plasma_membrane_derived_chromatophore_membrane.html","plasma membrane-derived chromatophore membrane"]],"b":[["GO%3A0070113","organellar chromatophore inner membrane"],["GO%3A0070112","organellar chromatophore membrane"],["GO%3A0070114","organellar chromatophore outer membrane"],["GO%3A0070118","organellar chromatophore thylakoid membrane"]]},{"id":"NCBITaxon:5759","l":"Entamoeba histolytica","na":6,"nb":4,"a":[["membrane_organelle/mitosome.html","mitosome"],["membrane_organelle/mitosome_envelope.html","mitosome envelope"],["membrane_organelle/mitosome_inner_membrane.html","mitosome inner membrane"],["membrane_organelle/mitosome_intermembrane_space.html","mitosome intermembrane space"],["membrane_organelle/mitosome_matrix.html","mitosome matrix"],["membrane_organelle/mitosome_outer_membrane.html","mitosome outer membrane"]],"b":[["IDPO%3A0000012","molten globule to order"],["TED%3AAF-C4LXE1-F1-model_v4_TED01","TED highly-symmetric fold AF-C4LXE1-F1-model_v4_TED01"],["TED%3AAF-C4LXH3-F1-model_v4_TED02","TED novel fold AF-C4LXH3-F1-model_v4_TED02"],["TED%3AAF-C4MBN2-F1-model_v4_TED03","TED novel fold AF-C4MBN2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":6,"nb":4,"a":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"],["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"],["secretion_system/type_vi_secretion_system_baseplate.html","type VI secretion system baseplate"],["secretion_system/type_vi_secretion_system_contractile_sheath.html","type VI secretion system contractile sheath"],["secretion_system/type_vi_secretion_system_hcp_tube.html","type VI secretion system Hcp tube"],["secretion_system/type_vi_secretion_system_vgrg_paar_spike_complex.html","type VI secretion system VgrG/PAAR spike complex"]],"b":[["Pfam%3APF01375","Heat-labile enterotoxin alpha chain"],["Pfam%3APF09101","Exotoxin A binding"],["Pfam%3APF09009","Exotoxin A catalytic"],["Pfam%3APF09102","Exotoxin A, targeting"]]},{"id":"GO:0009421","l":"bacterial-type flagellum filament cap","na":4,"nb":5,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["GO%3A0009421","bacterial-type flagellum filament cap"],["NCBIfam%3ANF005955","flagellar filament capping protein FliD"],["NCBIfam%3ANF006282","flagellar filament capping protein FliD"],["NCBIfam%3ANF006435","flagellar filament capping protein FliD"],["NCBIfam%3ANF009400","flagellar filament capping protein FliD"]]},{"id":"GO:0030130","l":"clathrin coat of trans-Golgi network vesicle","na":4,"nb":5,"a":[["membrane_organelle/trans_golgi_network_transport_vesicle_membrane.html","trans-Golgi network transport vesicle membrane"],["other/ap_1_adaptor_complex.html","AP-1 adaptor complex"],["other/clathrin_coat_of_endocytic_vesicle.html","clathrin coat of endocytic vesicle"],["other/clathrin_coat_of_trans_golgi_network_vesicle.html","clathrin coat of trans-Golgi network vesicle"]],"b":[["GO%3A0030130","clathrin coat of trans-Golgi network vesicle"],["InterPro%3AIPR015348","Clathrin, heavy chain, linker, core motif"],["Pfam%3APF01086","Clathrin light chain"],["InterPro%3AIPR016025","Clathrin heavy chain, N-terminal"],["Pfam%3APF09268","Clathrin, heavy-chain linker"]]},{"id":"GO:0030132","l":"clathrin coat of coated pit","na":4,"nb":5,"a":[["other/ap_2_adaptor_complex.html","AP-2 adaptor complex"],["other/clathrin_coat.html","clathrin coat"],["other/clathrin_coat_of_coated_pit.html","clathrin coat of coated pit"],["other/clathrin_coated_pit.html","clathrin-coated pit"]],"b":[["GO%3A0030132","clathrin coat of coated pit"],["InterPro%3AIPR015348","Clathrin, heavy chain, linker, core motif"],["Pfam%3APF01086","Clathrin light chain"],["InterPro%3AIPR016025","Clathrin heavy chain, N-terminal"],["Pfam%3APF09268","Clathrin, heavy-chain linker"]]},{"id":"GO:0031976","l":"plastid thylakoid","na":5,"nb":4,"a":[["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/plastid_thylakoid.html","plastid thylakoid"],["membrane_organelle/plastid_thylakoid_lumen.html","plastid thylakoid lumen"],["membrane_organelle/plastid_thylakoid_membrane.html","plastid thylakoid membrane"]],"b":[["GO%3A0009534","chloroplast thylakoid"],["GO%3A0009843","cyanelle thylakoid"],["GO%3A0031976","plastid thylakoid"],["GO%3A0042649","prothylakoid"]]},{"id":"GO:0061700","l":"GATOR2 complex","na":5,"nb":4,"a":[["other/gator1_complex.html","GATOR1 complex"],["other/gator2_complex.html","GATOR2 complex"],["other/gtr1_gtr2_gtpase_complex.html","Gtr1-Gtr2 GTPase complex"],["other/seh1_associated_complex.html","Seh1-associated complex"],["other/torc1_complex.html","TORC1 complex"]],"b":[["ComplexPortal%3ACPX-26527","GATOR2 complex"],["ComplexPortal%3ACPX-2664","GATOR2 complex"],["ComplexPortal%3ACPX-6227","GATOR2 complex"],["GO%3A0061700","GATOR2 complex"]]},{"id":"GO:1990130","l":"GATOR1 complex","na":5,"nb":4,"a":[["other/gator1_complex.html","GATOR1 complex"],["other/gator2_complex.html","GATOR2 complex"],["other/gtr1_gtr2_gtpase_complex.html","Gtr1-Gtr2 GTPase complex"],["other/seh1_associated_complex.html","Seh1-associated complex"],["other/torc1_complex.html","TORC1 complex"]],"b":[["ComplexPortal%3ACPX-26523","GATOR1 complex"],["ComplexPortal%3ACPX-2781","GATOR1 complex"],["ComplexPortal%3ACPX-6226","GATOR1 complex"],["GO%3A1990130","GATOR1 complex"]]},{"id":"GO:0030096","l":"plasma membrane-derived thylakoid photosystem II","na":4,"nb":4,"a":[["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["GO%3A0030096","plasma membrane-derived thylakoid photosystem II"],["NCBIfam%3ANF040894","photosynthetic complex putative assembly protein PuhB"],["NCBIfam%3ATIGR03069","photosystem II electron transport protein, Sll1252 family"],["NCBIfam%3ATIGR03042","photosystem II protein PsbQ"]]},{"id":"GO:0030666","l":"endocytic vesicle membrane","na":4,"nb":4,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle_membrane.html","clathrin-coated endocytic vesicle membrane"],["membrane_organelle/endocytic_vesicle.html","endocytic vesicle"],["membrane_organelle/endocytic_vesicle_lumen.html","endocytic vesicle lumen"],["membrane_organelle/endocytic_vesicle_membrane.html","endocytic vesicle membrane"]],"b":[["GO%3A0030669","clathrin-coated endocytic vesicle membrane"],["GO%3A0030666","endocytic vesicle membrane"],["GO%3A0043661","peribacteroid membrane"],["GO%3A0030670","phagocytic vesicle membrane"]]},{"id":"GO:0032585","l":"multivesicular body membrane","na":4,"nb":4,"a":[["membrane_organelle/multivesicular_body.html","multivesicular body"],["membrane_organelle/multivesicular_body_intraluminal_vesicle.html","multivesicular body intraluminal vesicle"],["membrane_organelle/multivesicular_body_lumen.html","multivesicular body lumen"],["membrane_organelle/multivesicular_body_membrane.html","multivesicular body membrane"]],"b":[["ComplexPortal%3ACPX-329","ESCRT-III complex"],["ComplexPortal%3ACPX-332","ESCRT-III complex, variant Chmp1b1"],["ComplexPortal%3ACPX-333","ESCRT-III complex, variant Chmp1b2"],["GO%3A0032585","multivesicular body membrane"]]},{"id":"GO:0097589","l":"archaeal-type flagellum","na":4,"nb":4,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/cilium.html","cilium"]],"b":[["GO%3A0097589","archaeal-type flagellum"],["NCBIfam%3ANF052589","archaellum protein ArlH"],["NCBIfam%3ANF052590","archaellum stator protein ArlF"],["NCBIfam%3ANF052591","archaellum stator protein ArlG"]]},{"id":"NCBITaxon:224308","l":"Bacillus subtilis (strain 168)","na":3,"nb":11310,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["division_machinery/divisome_complex.html","divisome complex"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]],"b":[["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.10.3.-","With oxygen as acceptor"],["EC%3A1.13.12.-","With incorporation of one atom of oxygen (internal monooxygenases or internal mixed function oxidases)"],["EC%3A1.14.19.-","With oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water"],["EC%3A1.17.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.21.98.-","With other, known acceptors"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":3,"nb":1616,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"],["other/pyrenoid.html","pyrenoid"]],"b":[["EC%3A1.1.1.170","3beta-hydroxysteroid-4alpha-carboxylate 3-dehydrogenase (decarboxylating)"],["EC%3A1.1.1.262","4-hydroxythreonine-4-phosphate dehydrogenase"],["EC%3A1.1.1.276","serine 3-dehydrogenase (NADP(+))"],["EC%3A1.1.1.286","isocitrate--homoisocitrate dehydrogenase"],["EC%3A1.1.1.305","UDP-glucuronic acid oxidase (UDP-4-keto-hexauronic acid decarboxylating)"],["EC%3A1.1.1.343","phosphogluconate dehydrogenase (NAD(+)-dependent, decarboxylating)"]]},{"id":"GO:0140513","l":"nuclear protein-containing complex","na":3,"nb":495,"a":[["other/cbf3_complex.html","CBF3 complex"],["other/coma_complex.html","COMA complex"],["other/dash_complex.html","DASH complex"]],"b":[["GO%3A0002180","5-lipoxygenase complex"],["GO%3A1990354","activated SUMO-E1 ligase complex"],["GO%3A0030895","apolipoprotein B mRNA editing enzyme complex"],["GO%3A0033167","ARC complex"],["GO%3A0070310","ATR-ATRIP complex"],["GO%3A0072589","box H/ACA scaRNP complex"]]},{"id":"GO:0005840","l":"ribosome","na":3,"nb":418,"a":[["ribonucleoprotein/large_ribosomal_subunit.html","large ribosomal subunit"],["ribonucleoprotein/ribosome.html","ribosome"],["ribonucleoprotein/small_ribosomal_subunit.html","small ribosomal subunit"]],"b":[["ComplexPortal%3ACPX-2854","Elongation Factor eEF1 complex, variant CAM1"],["ComplexPortal%3ACPX-425","Elongation Factor eEF1 complex, variant TEF4"],["ComplexPortal%3ACPX-427","Eukaryotic translation initiation factor 2 complex"],["ComplexPortal%3ACPX-430","Eukaryotic translation initiation factor 4F complex, variant TIF4631"],["ComplexPortal%3ACPX-431","Eukaryotic translation initiation factor 4F complex, variant TIF4632"],["ComplexPortal%3ACPX-1295","MKT1-PBP1 translation regulation complex"]]},{"id":"GO:0140534","l":"endoplasmic reticulum protein-containing complex","na":3,"nb":72,"a":[["other/endoplasmic_reticulum_sec_complex.html","endoplasmic reticulum Sec complex"],["other/get_complex.html","GET complex"],["other/sec62_sec63_complex.html","Sec62/Sec63 complex"]],"b":[["GO%3A0036513","Derlin-1 retrotranslocation complex"],["GO%3A0036502","Derlin-1-VIMP complex"],["GO%3A0031502","dolichyl-phosphate-mannose-protein mannosyltransferase complex"],["GO%3A0070939","Dsl1/NZR complex"],["GO%3A0070385","egasyn-beta-glucuronidase complex"],["GO%3A0072546","EMC complex"]]},{"id":"GO:0030288","l":"outer membrane-bounded periplasmic space","na":3,"nb":62,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"],["envelope/periplasmic_space.html","periplasmic space"]],"b":[["ComplexPortal%3ACPX-319","Trimethylamine-N-oxide reductase TorAC complex"],["GO%3A0030288","outer membrane-bounded periplasmic space"],["NCBIfam%3ATIGR03227","2-aminoethylphosphonate ABC transporter substrate-binding protein"],["NCBIfam%3ANF000397","ACC family cephalosporin-hydrolyzing class C beta-lactamase"],["NCBIfam%3ATIGR01672","acid phosphatase AphA"],["NCBIfam%3ANF000385","ACT family cephalosporin-hydrolyzing class C beta-lactamase"]]},{"id":"GO:0009523","l":"photosystem II","na":3,"nb":59,"a":[["energy_complex/photosystem_ii.html","photosystem II"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["GO%3A0030095","chloroplast photosystem II"],["GO%3A0009523","photosystem II"],["GO%3A0030096","plasma membrane-derived thylakoid photosystem II"],["NCBIfam%3ATIGR01332","cytochrome b559 subunit alpha"],["NCBIfam%3ATIGR01333","cytochrome b559 subunit beta"],["NCBIfam%3ANF012505","Lumenal portion of Cytochrome b559, alpha (gene psbE) subunit"]]},{"id":"GO:0007059","l":"chromosome segregation","na":3,"nb":58,"a":[["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"],["other/kinetochore.html","kinetochore"]],"b":[["ComplexPortal%3ACPX-26706","CLTA-CLTC-CKAP5-TACC3, mitotic spindle organizing complex"],["ComplexPortal%3ACPX-26711","CLTB-CLTC-CKAP5-TACC3, mitotic spindle organizing complex"],["ComplexPortal%3ACPX-2533","Kinetochore CCAN complex"],["ComplexPortal%3ACPX-5646","Kinetochore CCAN complex"],["ComplexPortal%3ACPX-5704","Kinetochore CCAN complex"],["ComplexPortal%3ACPX-26614","NDC80 complex"]]},{"id":"GO:0016236","l":"macroautophagy","na":3,"nb":53,"a":[["membrane_organelle/autophagosome.html","autophagosome"],["membrane_organelle/autophagosome_membrane.html","autophagosome membrane"],["other/trappiii_protein_complex.html","TRAPPIII protein complex"]],"b":[["ComplexPortal%3ACPX-3863","atg-5-atg-12-atg-16.1-atg-16.2 complex"],["ComplexPortal%3ACPX-3865","atg-5-atg-12-atg-16.1 complex"],["ComplexPortal%3ACPX-3866","atg-5-atg-12-atg-16.2 complex"],["ComplexPortal%3ACPX-1849","ATG12-ATG5-ATG16 complex"],["ComplexPortal%3ACPX-200","ATG12-ATG5-ATG16L1 complex"],["ComplexPortal%3ACPX-328","Atg12-Atg5-Atg16l1 complex"]]},{"id":"GO:0005938","l":"cell cortex","na":3,"nb":49,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"],["cytoskeleton/septin_ring.html","septin ring"],["other/cell_cortex.html","cell cortex"]],"b":[["ComplexPortal%3ACPX-977","CDC24-FAR1-Gbetagamma complex"],["ComplexPortal%3ACPX-26690","Cortical microtubule stabilization complex, KANK1 variant"],["ComplexPortal%3ACPX-20447","Cortical microtubule stabilization complex, KANK2 variant"],["ComplexPortal%3ACPX-3381","Egg-3/4/5 MBK-2 complex"],["ComplexPortal%3ACPX-26666","GNAI1-GPSM2-NUMA1, spindle orientation complex"],["ComplexPortal%3ACPX-4027","gpr-1-gpr-2-lin-5 complex"]]},{"id":"GO:0005769","l":"early endosome","na":3,"nb":44,"a":[["membrane_organelle/early_endosome.html","early endosome"],["membrane_organelle/early_endosome_lumen.html","early endosome lumen"],["membrane_organelle/early_endosome_membrane.html","early endosome membrane"]],"b":[["ComplexPortal%3ACPX-5044","BLOC-2 complex"],["ComplexPortal%3ACPX-5084","BLOC-2 complex"],["ComplexPortal%3ACPX-2540","FERRY RAB5 effector complex"],["ComplexPortal%3ACPX-11549","Huntingtin-HAP40 endosomal complex"],["ComplexPortal%3ACPX-26674","Huntingtin-HAP40 endosomal complex"],["ComplexPortal%3ACPX-5055","Neuronal AP-3 Adaptor complex, sigma3a variant"]]},{"id":"GO:0000502","l":"proteasome complex","na":3,"nb":27,"a":[["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"]],"b":[["ComplexPortal%3ACPX-9082","19S-20S-PA28-alphabeta hybrid proteasome complex"],["ComplexPortal%3ACPX-9085","19S-20S-PA28-gamma hybrid proteasome complex"],["ComplexPortal%3ACPX-9003","20S immunoproteasome complex"],["ComplexPortal%3ACPX-8806","20S proteasome complex"],["ComplexPortal%3ACPX-9004","20S thymoproteasome complex"],["ComplexPortal%3ACPX-2262","26S proteasome complex"]]},{"id":"GO:0030089","l":"phycobilisome","na":3,"nb":26,"a":[["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["GO%3A0030089","phycobilisome"],["NCBIfam%3ATIGR01337","allophycocyanin subunit beta"],["NCBIfam%3ANF058510","bifunctional rod-capping linker CpcD/ferredoxin--NADP reductase PetH"],["NCBIfam%3ATIGR01338","C-phycocyanin subunit alpha"],["NCBIfam%3ATIGR01339","C-phycocyanin subunit beta"],["NCBIfam%3ANF058511","phycobilisome rod-core linker protein CpcG1"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":3,"nb":26,"a":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]],"b":[["Pfam%3APF27270","Alr1449"],["Pfam%3APF27301","Alr2735 N-terminal domain"],["Pfam%3APF27288","Alr2735"],["Pfam%3APF21571","Arginine dihydrolase ArgZ-like, C-terminal, first region"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF13205","Bacterial Ig-like domain"]]},{"id":"GO:0031901","l":"early endosome membrane","na":3,"nb":25,"a":[["membrane_organelle/early_endosome.html","early endosome"],["membrane_organelle/early_endosome_lumen.html","early endosome lumen"],["membrane_organelle/early_endosome_membrane.html","early endosome membrane"]],"b":[["ComplexPortal%3ACPX-6311","ATP11B-CDC50A P4-ATPase complex"],["ComplexPortal%3ACPX-1137","CORVET tethering complex"],["ComplexPortal%3ACPX-1626","CORVET tethering complex"],["ComplexPortal%3ACPX-2562","WASH complex"],["ComplexPortal%3ACPX-1173","WASH complex, variant WASH2P/WASHC2A"],["ComplexPortal%3ACPX-1168","WASH complex, variant WASH2P/WASHC2C"]]},{"id":"GO:0005618","l":"cell wall","na":3,"nb":24,"a":[["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["spore/exosporium.html","exosporium"],["spore/spore_wall.html","spore wall"]],"b":[["GO%3A0005618","cell wall"],["GO%3A0097570","cyst wall"],["GO%3A0009277","fungal-type cell wall"],["GO%3A0009274","peptidoglycan-based cell wall"],["GO%3A0009505","plant-type cell wall"],["GO%3A0031160","spore wall"]]},{"id":"GO:0098791","l":"Golgi apparatus subcompartment","na":3,"nb":22,"a":[["membrane_organelle/cis_golgi_network.html","cis-Golgi network"],["membrane_organelle/golgi_cisterna.html","Golgi cisterna"],["membrane_organelle/trans_golgi_network.html","trans-Golgi network"]],"b":[["GO%3A0098791","Golgi apparatus subcompartment"],["GO%3A0031985","Golgi cisterna"],["GO%3A0005795","Golgi stack"],["GO%3A0005802","trans-Golgi network"],["PANTHER%3APTHR47180","ADP-RIBOSYLATION FACTOR-BINDING PROTEIN GGA1-RELATED"],["PANTHER%3APTHR21514","AP-4 COMPLEX ACCESSORY SUBUNIT TEPSIN"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":3,"nb":19,"a":[["appendage/type_iv_pilus.html","type IV pilus"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]],"b":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"],["Pfam%3APF18173","Bacterial HORMA domain 2"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["Pfam%3APF27322","Cap8 HORMA domain"],["Pfam%3APF01526","Tn3 transposase DDE domain"]]},{"id":"GO:0016234","l":"inclusion body","na":3,"nb":15,"a":[["inclusion/parasporal_crystal.html","parasporal crystal"],["inclusion/r_body.html","R-body"],["inclusion/sulfur_globule.html","sulfur globule"]],"b":[["GO%3A0016235","aggresome"],["GO%3A0097407","Bunina body"],["GO%3A0097408","fibrillary inclusion"],["GO%3A0097409","glial cytoplasmic inclusion"],["GO%3A0097412","hyaline inclusion"],["GO%3A0016234","inclusion body"]]},{"id":"GO:0031966","l":"mitochondrial membrane","na":3,"nb":15,"a":[["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrial_membrane.html","mitochondrial membrane"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"]],"b":[["ComplexPortal%3ACPX-8302","ABCB10-ABCB7-FECH ABC transporter"],["ComplexPortal%3ACPX-1721","Mitochondrial respiratory chain complex IV, COX5A variant"],["ComplexPortal%3ACPX-1722","Mitochondrial respiratory chain complex IV, COX5B variant"],["ComplexPortal%3ACPX-6123","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-8620","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-9641","Mitochondrial respiratory chain complex IV"]]},{"id":"GO:0009277","l":"fungal-type cell wall","na":3,"nb":14,"a":[["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["other/1_3_beta_d_glucan_synthase_complex.html","1,3-beta-D-glucan synthase complex"],["spore/ascospore_wall.html","ascospore wall"]],"b":[["ComplexPortal%3ACPX-1812","1,3-beta-D-glucan synthase complex, FKS1-RHO1 variant"],["GO%3A0005619","ascospore wall"],["GO%3A0009277","fungal-type cell wall"],["GO%3A0030446","hyphal cell wall"],["GO%3A0030445","yeast-form cell wall"],["InterPro%3AIPR019778","Class I Hydrophobin, conserved site"]]},{"id":"GO:0030008","l":"TRAPP complex","na":3,"nb":14,"a":[["other/trappi_protein_complex.html","TRAPPI protein complex"],["other/trappii_protein_complex.html","TRAPPII protein complex"],["other/trappiii_protein_complex.html","TRAPPIII protein complex"]],"b":[["GO%3A0030008","TRAPP complex"],["GO%3A1990070","TRAPPI protein complex"],["GO%3A1990071","TRAPPII protein complex"],["GO%3A1990072","TRAPPIII protein complex"],["PANTHER%3APTHR20902","41-2 PROTEIN ANTIGEN-RELATED"],["PANTHER%3APTHR13251","EPILEPSY HOLOPROSENCEPHALY CANDIDATE 1/TMEM1"]]},{"id":"GO:0055037","l":"recycling endosome","na":3,"nb":14,"a":[["membrane_organelle/recycling_endosome.html","recycling endosome"],["membrane_organelle/recycling_endosome_lumen.html","recycling endosome lumen"],["membrane_organelle/recycling_endosome_membrane.html","recycling endosome membrane"]],"b":[["ComplexPortal%3ACPX-6207","EARP tethering complex"],["GO%3A0090653","apical recycling endosome"],["GO%3A0090654","basolateral recycling endosome"],["GO%3A0098832","peri-centrosomal recycling endosome"],["GO%3A0098837","postsynaptic recycling endosome"],["GO%3A0055037","recycling endosome"]]},{"id":"GO:0000421","l":"autophagosome membrane","na":3,"nb":13,"a":[["membrane_organelle/autophagosome.html","autophagosome"],["membrane_organelle/autophagosome_lumen.html","autophagosome lumen"],["membrane_organelle/autophagosome_membrane.html","autophagosome membrane"]],"b":[["ComplexPortal%3ACPX-25783","SNARE complex STX17-SNAP29-VAMP7"],["ComplexPortal%3ACPX-25782","SNARE complex STX17-SNAP29-VAMP8"],["ComplexPortal%3ACPX-26400","SNARE complex STX17-SNAP47-VAMP7"],["ComplexPortal%3ACPX-26401","SNARE complex STX17-SNAP47-VAMP8"],["ComplexPortal%3ACPX-26524","SNARE complex STX4-SNAP29-SEC22b"],["ComplexPortal%3ACPX-25786","SNARE priming complex STX17-SNAP29-YKT6"]]},{"id":"GO:0005776","l":"autophagosome","na":3,"nb":12,"a":[["membrane_organelle/autophagosome.html","autophagosome"],["membrane_organelle/autophagosome_lumen.html","autophagosome lumen"],["membrane_organelle/autophagosome_membrane.html","autophagosome membrane"]],"b":[["ComplexPortal%3ACPX-362","Heparanase complex"],["ComplexPortal%3ACPX-363","Heparanase complex"],["ComplexPortal%3ACPX-4821","unc-51-atg-13 complex"],["GO%3A0044753","amphisome"],["GO%3A0005776","autophagosome"],["PANTHER%3APTHR13038","APG9 AUTOPHAGY 9"]]},{"id":"GO:0005940","l":"septin ring","na":3,"nb":12,"a":[["cytoskeleton/septin_ring.html","septin ring"],["other/cell_cortex.html","cell cortex"],["other/cellular_bud_neck.html","cellular bud neck"]],"b":[["ComplexPortal%3ACPX-26526","Septin1-Septin2-pnut complex"],["ComplexPortal%3ACPX-26529","Septin4-Septin5-pnut complex"],["GO%3A0000144","cellular bud neck septin ring"],["GO%3A0032172","germ tube septin ring"],["GO%3A0032168","hyphal septin ring"],["GO%3A0032175","mating projection septin ring"]]},{"id":"GO:0060170","l":"ciliary membrane","na":3,"nb":12,"a":[["appendage/ciliary_membrane.html","ciliary membrane"],["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"]],"b":[["ComplexPortal%3ACPX-1908","BBSome complex"],["ComplexPortal%3ACPX-1909","BBSome complex"],["GO%3A0060170","ciliary membrane"],["GO%3A0020018","ciliary pocket membrane"],["GO%3A0120201","cone photoreceptor disc membrane"],["GO%3A0098804","non-motile cilium membrane"]]},{"id":"GO:0061617","l":"MICOS complex","na":3,"nb":12,"a":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"],["other/micos_complex.html","MICOS complex"]],"b":[["ComplexPortal%3ACPX-140","MICOS mitochondrial contact site and cristae organizing system complex"],["ComplexPortal%3ACPX-25732","MICOS mitochondrial contact site and cristae organizing system complex, MIC10A variant"],["ComplexPortal%3ACPX-25733","MICOS mitochondrial contact site and cristae organizing system complex, MIC10B variant"],["ComplexPortal%3ACPX-25735","MICOS mitochondrial contact site and cristae organizing system complex, MIC10C variant"],["ComplexPortal%3ACPX-6141","MICOS mitochondrial contact site and cristae organizing system complex"],["GO%3A0061617","MICOS complex"]]},{"id":"GO:0005685","l":"U1 snRNP","na":3,"nb":11,"a":[["ribonucleoprotein/u1_snrnp.html","U1 snRNP"],["ribonucleoprotein/u2_type_precatalytic_spliceosome.html","U2-type precatalytic spliceosome"],["ribonucleoprotein/u2_type_prespliceosome.html","U2-type prespliceosome"]],"b":[["ComplexPortal%3ACPX-43","Sm complex"],["ComplexPortal%3ACPX-6033","Sm complex"],["ComplexPortal%3ACPX-23","U1 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-2392","U1 small nuclear ribonucleoprotein complex"],["GO%3A0005685","U1 snRNP"],["PANTHER%3APTHR11864","PRE-MRNA-PROCESSING PROTEIN PRP40"]]},{"id":"GO:0031262","l":"Ndc80 complex","na":3,"nb":11,"a":[["other/kinetochore.html","kinetochore"],["other/ndc80_complex.html","Ndc80 complex"],["other/outer_kinetochore.html","outer kinetochore"]],"b":[["ComplexPortal%3ACPX-26614","NDC80 complex"],["ComplexPortal%3ACPX-548","NDC80 complex"],["ComplexPortal%3ACPX-549","Ndc80 complex"],["ComplexPortal%3ACPX-550","Ndc80 complex"],["ComplexPortal%3ACPX-551","Ndc80 complex"],["ComplexPortal%3ACPX-806","Ndc80 complex"]]},{"id":"GO:0000444","l":"MIS12/MIND type complex","na":3,"nb":10,"a":[["other/kinetochore.html","kinetochore"],["other/mis12_mind_type_complex.html","MIS12/MIND type complex"],["other/outer_kinetochore.html","outer kinetochore"]],"b":[["ComplexPortal%3ACPX-1186","Kinetochore MIS12 complex"],["ComplexPortal%3ACPX-5643","Kinetochore MIS12 complex"],["ComplexPortal%3ACPX-5701","Kinetochore MIS12 complex"],["ComplexPortal%3ACPX-807","Kinetochore Mis12 complex"],["ComplexPortal%3ACPX-7681","Kinetochore MIS12 complex, Nnf1a variant"],["ComplexPortal%3ACPX-8928","Kinetochore MIS12 complex, Nnf1b variant"]]},{"id":"GO:0009427","l":"bacterial-type flagellum basal body, distal rod, L ring","na":3,"nb":10,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]],"b":[["GO%3A0009427","bacterial-type flagellum basal body, distal rod, L ring"],["NCBIfam%3ANF001301","flagellar basal body L-ring protein FlgH"],["NCBIfam%3ANF001304","flagellar basal body L-ring protein FlgH"],["NCBIfam%3ANF001305","flagellar basal body L-ring protein FlgH"],["NCBIfam%3ANF009072","flagellar basal body L-ring protein FlgH"],["NCBIfam%3ANF009337","flagellar basal body L-ring protein FlgH"]]},{"id":"GO:0071986","l":"Ragulator complex","na":3,"nb":10,"a":[["other/gtr1_gtr2_gtpase_complex.html","Gtr1-Gtr2 GTPase complex"],["other/ragulator_complex.html","Ragulator complex"],["other/torc1_complex.html","TORC1 complex"]],"b":[["ComplexPortal%3ACPX-3172","EGO complex"],["ComplexPortal%3ACPX-3233","GSE complex"],["ComplexPortal%3ACPX-26528","Ragulator complex"],["ComplexPortal%3ACPX-2709","Ragulator complex"],["ComplexPortal%3ACPX-4741","Ragulator complex"],["ComplexPortal%3ACPX-4761","Ragulator complex"]]},{"id":"GO:0005839","l":"proteasome core complex","na":3,"nb":9,"a":[["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"]],"b":[["ComplexPortal%3ACPX-8806","20S proteasome complex"],["GO%3A0031603","cytosolic proteasome core complex"],["GO%3A0031601","nuclear proteasome core complex"],["GO%3A0005839","proteasome core complex"],["NCBIfam%3ATIGR03634","archaeal proteasome endopeptidase complex subunit beta"],["NCBIfam%3ATIGR03690","proteasome subunit beta"]]},{"id":"GO:0007035","l":"vacuolar acidification","na":3,"nb":9,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["membrane_organelle/fungal_type_vacuole_membrane.html","fungal-type vacuole membrane"],["membrane_organelle/vacuolar_membrane.html","vacuolar membrane"]],"b":[["ComplexPortal%3ACPX-10301","RAVE complex, DMXL1 variant"],["ComplexPortal%3ACPX-10303","RAVE complex, DMXL2 variant"],["ComplexPortal%3ACPX-6905","Vacuolar proton translocating ATPase complex, ATP6V0A3 variant"],["ComplexPortal%3ACPX-1193","Vacuolar proton translocating ATPase complex, vacuole variant"],["GO%3A0007042","lysosomal lumen acidification"],["GO%3A0007035","vacuolar acidification"]]},{"id":"CHEBI:17029","l":"chitin","na":3,"nb":8,"a":[["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["membrane_organelle/chitosome.html","chitosome"],["spore/microsporidian_type_endospore.html","microsporidian-type endospore"]],"b":[["EC%3A2.4.1.16","chitin synthase"],["EC%3A3.5.1.41","chitin deacetylase"],["RHEA%3A85463","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-1)-N-acetyl-alpha-D-glucosamine"],["RHEA%3A50672","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-2) + N,N'-diacetylchitobiose"],["RHEA%3A85003","[(1->4)-N-acetyl-beta-D-glucosaminyl](n)-N-acetyl-alpha-D-glucosamine + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n) + N-acetyl-alpha-D-glucosamine"],["RHEA%3A10464","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + n H2O = chitosan + n acetate"]]},{"id":"GO:0005798","l":"Golgi-associated vesicle","na":3,"nb":8,"a":[["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"]],"b":[["ComplexPortal%3ACPX-1698","EMP24 complex"],["GO%3A0030137","COPI-coated vesicle"],["GO%3A0005798","Golgi-associated vesicle"],["GO%3A0030140","trans-Golgi network transport vesicle"],["PANTHER%3APTHR31975","BUD SITE SELECTION PROTEIN 7-RELATED"],["PANTHER%3APTHR10261","COATOMER SUBUNIT GAMMA"]]},{"id":"GO:0031969","l":"chloroplast membrane","na":3,"nb":8,"a":[["membrane_organelle/chloroplast_inner_membrane.html","chloroplast inner membrane"],["membrane_organelle/chloroplast_membrane.html","chloroplast membrane"],["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"]],"b":[["GO%3A0009706","chloroplast inner membrane"],["GO%3A0031969","chloroplast membrane"],["GO%3A0009707","chloroplast outer membrane"],["PANTHER%3APTHR31038","EXPRESSED PROTEIN-RELATED"],["PANTHER%3APTHR34048","LOW-DENSITY RECEPTOR-LIKE PROTEIN"],["PANTHER%3APTHR36317","PROTEIN MULTIPLE CHLOROPLAST DIVISION SITE 1"]]},{"id":"GO:0045335","l":"phagocytic vesicle","na":3,"nb":8,"a":[["membrane_organelle/phagocytic_vesicle.html","phagocytic vesicle"],["membrane_organelle/phagocytic_vesicle_lumen.html","phagocytic vesicle lumen"],["membrane_organelle/phagocytic_vesicle_membrane.html","phagocytic vesicle membrane"]],"b":[["GO%3A0045336","clathrin-coated phagocytic vesicle"],["GO%3A0032009","early phagosome"],["GO%3A1990457","pexophagosome"],["GO%3A0045335","phagocytic vesicle"],["GO%3A0032010","phagolysosome"],["PANTHER%3APTHR31093","CELL SURFACE GLYCOPROTEIN GP138-RELATED-RELATED"]]},{"id":"GO:0098799","l":"outer mitochondrial membrane protein complex","na":3,"nb":8,"a":[["other/ermes_complex.html","ERMES complex"],["other/mitochondrial_outer_membrane_translocase_complex.html","mitochondrial outer membrane translocase complex"],["other/sam_complex.html","SAM complex"]],"b":[["ComplexPortal%3ACPX-3196","ERMES complex"],["ComplexPortal%3ACPX-6100","SARS-CoV-2 9b complex"],["ComplexPortal%3ACPX-6101","SARS-CoV 9b complex"],["GO%3A0036266","Cdc48p-Npl4p-Vms1p AAA ATPase complex"],["GO%3A0032865","ERMES complex"],["GO%3A0140595","MIM complex"]]},{"id":"GO:0030112","l":"glycocalyx","na":3,"nb":7,"a":[["envelope/capsule.html","capsule"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]],"b":[["GO%3A0042603","capsule"],["GO%3A0030112","glycocalyx"],["GO%3A0120240","platelet glycocalyx"],["GO%3A0030114","slime layer"],["GO%3A0120238","sperm glycocalyx"],["GO%3A0120234","stereocilium coat"]]},{"id":"GO:0035859","l":"Seh1-associated complex","na":3,"nb":7,"a":[["other/gator1_complex.html","GATOR1 complex"],["other/gator2_complex.html","GATOR2 complex"],["other/seh1_associated_complex.html","Seh1-associated complex"]],"b":[["ComplexPortal%3ACPX-3231","SEA complex"],["GO%3A0035859","Seh1-associated complex"],["PANTHER%3APTHR13153","CGTHBA PROTEIN -14 GENE PROTEIN"],["PANTHER%3APTHR13179","DEP DOMAIN CONTAINING PROTEIN 5"],["PANTHER%3APTHR46200","GATOR COMPLEX PROTEIN WDR24"],["PANTHER%3APTHR46170","GATOR COMPLEX PROTEIN WDR59"]]},{"id":"GO:0044284","l":"mitochondrial crista junction","na":3,"nb":7,"a":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"],["other/micos_complex.html","MICOS complex"]],"b":[["ComplexPortal%3ACPX-140","MICOS mitochondrial contact site and cristae organizing system complex"],["ComplexPortal%3ACPX-25732","MICOS mitochondrial contact site and cristae organizing system complex, MIC10A variant"],["ComplexPortal%3ACPX-25733","MICOS mitochondrial contact site and cristae organizing system complex, MIC10B variant"],["ComplexPortal%3ACPX-25735","MICOS mitochondrial contact site and cristae organizing system complex, MIC10C variant"],["ComplexPortal%3ACPX-6141","MICOS mitochondrial contact site and cristae organizing system complex"],["GO%3A0044284","mitochondrial crista junction"]]},{"id":"GO:0120115","l":"Lsm2-8 complex","na":3,"nb":7,"a":[["ribonucleoprotein/u4atac_u6atac_snrnp.html","U4atac/U6atac snRNP"],["ribonucleoprotein/u6_snrnp.html","U6 snRNP"],["ribonucleoprotein/u6atac_snrnp.html","U6atac snRNP"]],"b":[["ComplexPortal%3ACPX-26553","LSM2-8 complex"],["ComplexPortal%3ACPX-26555","LSM2-8 complex"],["ComplexPortal%3ACPX-1309","LSM2-8 complex, variant LSM3A-LSM6A"],["ComplexPortal%3ACPX-1352","LSM2-8 complex, variant LSM3A-LSM6B"],["ComplexPortal%3ACPX-1353","LSM2-8 complex, variant LSM3B-LSM6A"],["ComplexPortal%3ACPX-1354","LSM2-8 complex, variant LSM3B-LSM6B"]]},{"id":"GO:1990131","l":"Gtr1-Gtr2 GTPase complex","na":3,"nb":7,"a":[["other/gtr1_gtr2_gtpase_complex.html","Gtr1-Gtr2 GTPase complex"],["other/ragulator_complex.html","Ragulator complex"],["other/torc1_complex.html","TORC1 complex"]],"b":[["ComplexPortal%3ACPX-26516","RAG guanosine triphosphatase complex"],["ComplexPortal%3ACPX-26517","RAG guanosine triphosphatase complex"],["ComplexPortal%3ACPX-2542","RAG guanosine triphosphatase complex, RAGA-RAGC variant"],["ComplexPortal%3ACPX-2513","RAG guanosine triphosphatase complex, RAGA-RAGD variant"],["ComplexPortal%3ACPX-2514","RAG guanosine triphosphatase complex, RAGB-RAGC variant"],["ComplexPortal%3ACPX-767","RAG guanosine triphosphatase complex, RAGB-RAGD variant"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":3,"nb":7,"a":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"]],"b":[["Pfam%3APF04439","Streptomycin adenylyltransferase"],["TED%3AAF-A0A696J2C3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A696J2C3-F1-model_v4_TED01"],["TED%3AAF-A0A825M6H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A825M6H4-F1-model_v4_TED01"],["TED%3AAF-A0A5T0SBG5-F1-model_v4_TED01","TED novel fold AF-A0A5T0SBG5-F1-model_v4_TED01"],["TED%3AAF-A0A698JVM3-F1-model_v4_TED03","TED novel fold AF-A0A698JVM3-F1-model_v4_TED03"],["TED%3AAF-A0A824N1N8-F1-model_v4_TED01","TED novel fold AF-A0A824N1N8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:5722","l":"Trichomonas vaginalis","na":3,"nb":7,"a":[["membrane_organelle/hydrogenosomal_membrane.html","hydrogenosomal membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/hydrogenosome_lumen.html","hydrogenosome lumen"]],"b":[["TED%3AAF-A2F3M7-F1-model_v4_TED03","TED highly-symmetric fold AF-A2F3M7-F1-model_v4_TED03"],["TED%3AAF-A2HEW4-F1-model_v4_TED01","TED highly-symmetric fold AF-A2HEW4-F1-model_v4_TED01"],["TED%3AAF-A2DT59-F1-model_v4_TED01","TED novel fold AF-A2DT59-F1-model_v4_TED01"],["TED%3AAF-A2E7I9-F1-model_v4_TED02","TED novel fold AF-A2E7I9-F1-model_v4_TED02"],["TED%3AAF-A2F6I8-F1-model_v4_TED02","TED novel fold AF-A2F6I8-F1-model_v4_TED02"],["TED%3AAF-A2FV33-F1-model_v4_TED01","TED novel fold AF-A2FV33-F1-model_v4_TED01"]]},{"id":"GO:0005628","l":"prospore membrane","na":6,"nb":3,"a":[["spore/ascospore_wall.html","ascospore wall"],["spore/endospore_forming_forespore.html","endospore-forming forespore"],["spore/prospore_membrane.html","prospore membrane"],["spore/prospore_membrane_leading_edge.html","prospore membrane leading edge"],["spore/prospore_membrane_spindle_pole_body_attachment_site.html","prospore membrane spindle pole body attachment site"],["spore/spore_inner_membrane.html","spore inner membrane"]],"b":[["ComplexPortal%3ACPX-5464","Vesicular SNARE complex SSO1-SPO20-SNC1"],["ComplexPortal%3ACPX-5466","Vesicular SNARE complex SSO1-SPO20-SNC2"],["GO%3A0005628","prospore membrane"]]},{"id":"GO:0030122","l":"AP-2 adaptor complex","na":3,"nb":6,"a":[["other/ap_2_adaptor_complex.html","AP-2 adaptor complex"],["other/clathrin_coat_of_coated_pit.html","clathrin coat of coated pit"],["other/clathrin_coat_of_endocytic_vesicle.html","clathrin coat of endocytic vesicle"]],"b":[["ComplexPortal%3ACPX-534","Adapter complex AP-2"],["ComplexPortal%3ACPX-5149","AP-2 Adaptor complex, alpha1 variant"],["ComplexPortal%3ACPX-5152","AP-2 Adaptor complex, alpha1 variant"],["ComplexPortal%3ACPX-5150","AP-2 Adaptor complex, alpha2 variant"],["ComplexPortal%3ACPX-5153","AP-2 Adaptor complex, alpha2 variant"],["GO%3A0030122","AP-2 adaptor complex"]]},{"id":"GO:0031978","l":"plastid thylakoid lumen","na":6,"nb":3,"a":[["membrane_organelle/chloroplast_thylakoid_lumen.html","chloroplast thylakoid lumen"],["membrane_organelle/cyanelle_thylakoid_lumen.html","cyanelle thylakoid lumen"],["membrane_organelle/organellar_chromatophore_thylakoid_lumen.html","organellar chromatophore thylakoid lumen"],["membrane_organelle/plastid_thylakoid.html","plastid thylakoid"],["membrane_organelle/plastid_thylakoid_lumen.html","plastid thylakoid lumen"],["membrane_organelle/plastid_thylakoid_membrane.html","plastid thylakoid membrane"]],"b":[["GO%3A0009543","chloroplast thylakoid lumen"],["GO%3A0033114","cyanelle thylakoid lumen"],["GO%3A0031978","plastid thylakoid lumen"]]},{"id":"GO:1990072","l":"TRAPPIII protein complex","na":3,"nb":6,"a":[["other/trappi_protein_complex.html","TRAPPI protein complex"],["other/trappii_protein_complex.html","TRAPPII protein complex"],["other/trappiii_protein_complex.html","TRAPPIII protein complex"]],"b":[["ComplexPortal%3ACPX-4766","TRAPP III complex"],["ComplexPortal%3ACPX-4750","TRAPP III complex, TRAPPC2 variant"],["ComplexPortal%3ACPX-6903","TRAPP III complex, TRAPPC2B variant"],["ComplexPortal%3ACPX-2279","TRAPPIII complex"],["ComplexPortal%3ACPX-1383","TRAPPIII protein complex"],["GO%3A1990072","TRAPPIII protein complex"]]},{"id":"NCBITaxon:284813","l":"Encephalitozoon cuniculi (strain GB-M1)","na":3,"nb":6,"a":[["spore/microsporidian_type_endospore.html","microsporidian-type endospore"],["spore/microsporidian_type_exospore.html","microsporidian-type exospore"],["spore/polar_tube_anchoring_disc.html","polar tube anchoring disc"]],"b":[["Pfam%3APF17027","Histone-fold protein"],["Pfam%3APF10455","Bin/amphiphysin/Rvs domain for vesicular trafficking"],["Pfam%3APF07753","Protein of unknown function (DUF1609)"],["Pfam%3APF09591","Protein of unknown function (DUF2463)"],["Pfam%3APF12376","Protein of unknown function (DUF3654)"],["TED%3AAF-Q8SVN2-F1-model_v4_TED01","TED novel fold AF-Q8SVN2-F1-model_v4_TED01"]]},{"id":"GO:0009431","l":"bacterial-type flagellum basal body, MS ring","na":5,"nb":3,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"],["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"],["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["GO%3A0009431","bacterial-type flagellum basal body, MS ring"],["NCBIfam%3ATIGR00206","flagellar basal-body MS-ring/collar protein FliF"],["NCBIfam%3ATIGR00205","flagellar hook-basal body complex protein FliE"]]},{"id":"GO:0030118","l":"clathrin coat","na":5,"nb":3,"a":[["other/clathrin_coat.html","clathrin coat"],["other/clathrin_coat_of_coated_pit.html","clathrin coat of coated pit"],["other/clathrin_coat_of_endocytic_vesicle.html","clathrin coat of endocytic vesicle"],["other/clathrin_coat_of_trans_golgi_network_vesicle.html","clathrin coat of trans-Golgi network vesicle"],["other/membrane_coat.html","membrane coat"]],"b":[["GO%3A0030118","clathrin coat"],["GO%3A0030132","clathrin coat of coated pit"],["GO%3A0030125","clathrin vesicle coat"]]},{"id":"GO:0030904","l":"retromer complex","na":3,"nb":5,"a":[["other/retromer_cargo_selective_complex.html","retromer, cargo-selective complex"],["other/retromer_complex.html","retromer complex"],["other/retromer_tubulation_complex.html","retromer, tubulation complex"]],"b":[["ComplexPortal%3ACPX-1653","Retromer complex"],["ComplexPortal%3ACPX-2610","Retromer complex"],["ComplexPortal%3ACPX-26687","Retromer complex"],["GO%3A0030904","retromer complex"],["InterPro%3AIPR037918","SNX2, PX domain"]]},{"id":"GO:0033113","l":"cyanelle membrane","na":5,"nb":3,"a":[["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"],["membrane_organelle/plastid_membrane.html","plastid membrane"]],"b":[["GO%3A0036012","cyanelle inner membrane"],["GO%3A0033113","cyanelle membrane"],["GO%3A0036013","cyanelle outer membrane"]]},{"id":"GO:0045037","l":"protein import into chloroplast stroma","na":5,"nb":3,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"],["other/tic_complex.html","Tic complex"],["other/toc_complex.html","Toc complex"]],"b":[["GO%3A0045037","protein import into chloroplast stroma"],["PANTHER%3APTHR47296","PROTEIN TIC 40, CHLOROPLASTIC"],["PANTHER%3APTHR37755","PROTEIN TIC 56, CHLOROPLASTIC"]]},{"id":"InterPro:IPR020013","l":"","na":3,"nb":5,"a":[["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"]],"b":[["Pfam%3APF06429","Flagellar basal body rod FlgEFG protein C-terminal"],["Pfam%3APF22367","Flagellar hook protein FlgE, third domain"],["Pfam%3APF07559","Flagellar basal body protein FlaE D2 domain"],["Pfam%3APF00460","Flagella basal body rod protein"],["PROSITE%3APS00588","Flagella basal body rod proteins signature"]]},{"id":"GO:0005782","l":"peroxisomal matrix","na":3,"nb":4,"a":[["membrane_organelle/peroxisomal_matrix.html","peroxisomal matrix"],["membrane_organelle/peroxisomal_membrane.html","peroxisomal membrane"],["membrane_organelle/peroxisome.html","peroxisome"]],"b":[["GO%3A0034468","glycosome lumen"],["GO%3A0031908","glyoxysomal lumen"],["GO%3A0005782","peroxisomal matrix"],["PANTHER%3APTHR46027","PEROXISOMAL TARGETING SIGNAL 2 RECEPTOR"]]},{"id":"GO:0005858","l":"axonemal dynein complex","na":3,"nb":4,"a":[["cytoskeleton/axonemal_dynein_complex.html","axonemal dynein complex"],["cytoskeleton/inner_dynein_arm.html","inner dynein arm"],["cytoskeleton/outer_dynein_arm.html","outer dynein arm"]],"b":[["GO%3A0005858","axonemal dynein complex"],["GO%3A0036156","inner dynein arm"],["GO%3A0036157","outer dynein arm"],["PANTHER%3APTHR46532","MALE FERTILITY FACTOR KL5"]]},{"id":"GO:0009428","l":"bacterial-type flagellum basal body, distal rod, P ring","na":3,"nb":4,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]],"b":[["GO%3A0009428","bacterial-type flagellum basal body, distal rod, P ring"],["NCBIfam%3ATIGR03170","flagellar basal body P-ring formation chaperone FlgA"],["NCBIfam%3ANF014206","flagellar basal body P-ring protein FlgI"],["Pfam%3APF02119","Flagellar P-ring protein"]]},{"id":"GO:0009433","l":"bacterial-type flagellum basal body, C ring","na":4,"nb":3,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"]],"b":[["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009433","bacterial-type flagellum basal body, C ring"]]},{"id":"GO:0009765","l":"photosynthesis, light harvesting","na":3,"nb":4,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"]],"b":[["GO%3A0009765","photosynthesis, light harvesting"],["GO%3A0009768","photosynthesis, light harvesting in photosystem I"],["GO%3A0009769","photosynthesis, light harvesting in photosystem II"],["NCBIfam%3ATIGR03041","chlorophyll a/b binding light-harvesting protein"]]},{"id":"GO:0030670","l":"phagocytic vesicle membrane","na":3,"nb":4,"a":[["membrane_organelle/phagocytic_vesicle.html","phagocytic vesicle"],["membrane_organelle/phagocytic_vesicle_lumen.html","phagocytic vesicle lumen"],["membrane_organelle/phagocytic_vesicle_membrane.html","phagocytic vesicle membrane"]],"b":[["GO%3A0030671","clathrin-coated phagocytic vesicle membrane"],["GO%3A0036186","early phagosome membrane"],["GO%3A0030670","phagocytic vesicle membrane"],["GO%3A0061474","phagolysosome membrane"]]},{"id":"GO:0071682","l":"endocytic vesicle lumen","na":4,"nb":3,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle_lumen.html","clathrin-coated endocytic vesicle lumen"],["membrane_organelle/endocytic_vesicle.html","endocytic vesicle"],["membrane_organelle/endocytic_vesicle_lumen.html","endocytic vesicle lumen"],["membrane_organelle/endocytic_vesicle_membrane.html","endocytic vesicle membrane"]],"b":[["GO%3A0106176","clathrin-coated endocytic vesicle lumen"],["GO%3A0071682","endocytic vesicle lumen"],["GO%3A0097013","phagocytic vesicle lumen"]]},{"id":"NCBITaxon:431944","l":"Magnetospirillum gryphiswaldense MSR-1","na":4,"nb":3,"a":[["cytoskeleton/mamk_filament.html","MamK filament"],["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]],"b":[["Pfam%3APF12728","Helix-turn-helix domain"],["Pfam%3APF04011","LemA family"],["Pfam%3APF07219","HemY protein N-terminus"]]},{"id":"GO:0034357","l":"photosynthetic membrane","na":3,"nb":3,"a":[["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"],["membrane_organelle/plasma_membrane_derived_chromatophore_membrane.html","plasma membrane-derived chromatophore membrane"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["GO%3A0034357","photosynthetic membrane"],["GO%3A0042717","plasma membrane-derived chromatophore membrane"],["GO%3A0042651","thylakoid membrane"]]},{"id":"GO:0051012","l":"microtubule sliding","na":3,"nb":3,"a":[["cytoskeleton/axonemal_dynein_complex.html","axonemal dynein complex"],["cytoskeleton/inner_dynein_arm.html","inner dynein arm"],["cytoskeleton/outer_dynein_arm.html","outer dynein arm"]],"b":[["GO%3A0051012","microtubule sliding"],["GO%3A0031534","minus-end directed microtubule sliding"],["GO%3A0031535","plus-end directed microtubule sliding"]]},{"id":"GO:0055038","l":"recycling endosome membrane","na":3,"nb":3,"a":[["membrane_organelle/recycling_endosome.html","recycling endosome"],["membrane_organelle/recycling_endosome_lumen.html","recycling endosome lumen"],["membrane_organelle/recycling_endosome_membrane.html","recycling endosome membrane"]],"b":[["GO%3A0055038","recycling endosome membrane"],["PANTHER%3APTHR15726","RAB11-FAMILY INTERACTING PROTEIN"],["PANTHER%3APTHR10687","SECRETORY CARRIER-ASSOCIATED MEMBRANE PROTEIN SCAMP"]]},{"id":"GO:0097013","l":"phagocytic vesicle lumen","na":3,"nb":3,"a":[["membrane_organelle/phagocytic_vesicle.html","phagocytic vesicle"],["membrane_organelle/phagocytic_vesicle_lumen.html","phagocytic vesicle lumen"],["membrane_organelle/phagocytic_vesicle_membrane.html","phagocytic vesicle membrane"]],"b":[["GO%3A0062113","early phagosome lumen"],["GO%3A0097013","phagocytic vesicle lumen"],["GO%3A0106174","phagolysosome vesicle lumen"]]},{"id":"NCBITaxon:274","l":"Thermus thermophilus","na":3,"nb":3,"a":[["energy_complex/respiratory_chain_complex_i.html","respiratory chain complex I"],["ribonucleoprotein/ribosome.html","ribosome"],["ribonucleoprotein/small_ribosomal_subunit.html","small ribosomal subunit"]],"b":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF01861","Branched-chain polyamine synthase A C-terminal domain"],["Pfam%3APF07736","Chorismate mutase type I"]]},{"id":"GO:0110165","l":"cellular anatomical structure","na":2,"nb":1312,"a":[["other/phagophore_assembly_site.html","phagophore assembly site"],["other/popz_polar_microdomain.html","PopZ polar microdomain"]],"b":[["GO%3A0031672","A band"],["GO%3A0036063","acroblast"],["GO%3A0043159","acrosomal matrix"],["GO%3A0099079","actin body"],["GO%3A0030478","actin cap"],["GO%3A0061834","actin filament branch point"]]},{"id":"GO:0006260","l":"DNA replication","na":2,"nb":311,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"],["other/single_stranded_dna_binding_protein_complex.html","single-stranded DNA-binding protein complex"]],"b":[["ComplexPortal%3ACPX-6641","ASCC DNA alkylation repair complex"],["ComplexPortal%3ACPX-568","Chromatin assembly factor 1 complex"],["ComplexPortal%3ACPX-2671","CMG helicase complex"],["ComplexPortal%3ACPX-297","CMG helicase complex"],["ComplexPortal%3ACPX-4526","CMG helicase complex"],["ComplexPortal%3ACPX-4541","CMG helicase complex"]]},{"id":"GO:0098797","l":"plasma membrane protein complex","na":2,"nb":216,"a":[["division_machinery/elongasome.html","elongasome"],["other/ap_2_adaptor_complex.html","AP-2 adaptor complex"]],"b":[["ComplexPortal%3ACPX-850","AHNAK - Annexin A2 - S100-A10 complex"],["ComplexPortal%3ACPX-905","AHNAK - Annexin A2 - S100-A10 complex"],["ComplexPortal%3ACPX-853","Annexin A2 - S100-A10 complex"],["ComplexPortal%3ACPX-898","Annexin A2 - S100-A10 complex"],["ComplexPortal%3ACPX-9322","B-T lymphocyte attenuator, BTLA-TNFRSF14 complex"],["ComplexPortal%3ACPX-4602","FtsEX ABC cell division complex"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":190,"nb":2,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"],["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/septin_ring.html","septin ring"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"],["cytoskeleton/spindle_pole_body.html","spindle pole body"]],"b":[["PROSITE%3APS00820","Glucoamylase active site region signature"],["TED%3AAF-A0A7I9G6Y3-F1-model_v4_TED02","TED novel fold AF-A0A7I9G6Y3-F1-model_v4_TED02"]]},{"id":"GO:0015934","l":"large ribosomal subunit","na":2,"nb":130,"a":[["ribonucleoprotein/large_ribosomal_subunit.html","large ribosomal subunit"],["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["GO%3A0022625","cytosolic large ribosomal subunit"],["GO%3A0015934","large ribosomal subunit"],["GO%3A0000315","organellar large ribosomal subunit"],["NCBIfam%3ATIGR01169","50S ribosomal protein L1"],["NCBIfam%3ANF000955","50S ribosomal protein L10"],["NCBIfam%3ATIGR01077","50S ribosomal protein L13"]]},{"id":"NCBITaxon:83334","l":"Escherichia coli O157:H7","na":2,"nb":130,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"]],"b":[["IDPO%3A0000011","disorder to order"],["IDPO%3A0000014","order to disorder"],["Pfam%3APF12343","DeaD helicase C-terminal disordered region"],["Pfam%3APF26539","YhiD C-terminal ACT domain"],["Pfam%3APF01081","KDPG and KHG aldolase"],["Pfam%3APF10423","Bacterial AMP nucleoside phosphorylase N-terminus"]]},{"id":"GO:0005730","l":"nucleolus","na":2,"nb":121,"a":[["membrane_organelle/nuclear_lumen.html","nuclear lumen"],["other/nucleolus.html","nucleolus"]],"b":[["ComplexPortal%3ACPX-1099","B-WICH chromatin remodelling complex"],["ComplexPortal%3ACPX-1133","B-WICH chromatin remodelling complex"],["ComplexPortal%3ACPX-26423","Box C/D snoRNA-guided RNP methyltransferase complex, FBL variant"],["ComplexPortal%3ACPX-26377","Box C/D snoRNA-Guided RNP methyltransferase complex, FBLL1 variant"],["ComplexPortal%3ACPX-3905","Caspase-2 PIDDosome"],["ComplexPortal%3ACPX-3963","Caspase-2 PIDDosome"]]},{"id":"GO:0015935","l":"small ribosomal subunit","na":2,"nb":113,"a":[["ribonucleoprotein/ribosome.html","ribosome"],["ribonucleoprotein/small_ribosomal_subunit.html","small ribosomal subunit"]],"b":[["GO%3A0022627","cytosolic small ribosomal subunit"],["GO%3A0000314","organellar small ribosomal subunit"],["GO%3A0015935","small ribosomal subunit"],["NCBIfam%3ATIGR01046","30S ribosomal protein S10"],["NCBIfam%3ATIGR00981","30S ribosomal protein S12"],["NCBIfam%3ATIGR00982","30S ribosomal protein S12"]]},{"id":"GO:0003918","l":"DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) activity","na":2,"nb":109,"a":[["other/dna_gyrase_complex.html","DNA gyrase complex"],["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["EC%3A5.6.2.2","DNA topoisomerase (ATP-hydrolyzing)"],["ComplexPortal%3ACPX-2177","GyrA-GyrB DNA Gyrase complex"],["ComplexPortal%3ACPX-26662","SPO11 DNA endo-reduplication complex"],["ComplexPortal%3ACPX-26657","SPO11 meiotic recombination initiation complex"],["ComplexPortal%3ACPX-26658","SPO11 meiotic recombination initiation complex"],["ComplexPortal%3ACPX-26659","SPO11 meiotic recombination initiation complex"]]},{"id":"GO:0012505","l":"endomembrane system","na":2,"nb":109,"a":[["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"],["membrane_organelle/golgi_apparatus.html","Golgi apparatus"]],"b":[["ComplexPortal%3ACPX-1627","RAVE complex"],["ComplexPortal%3ACPX-25781","RAVE complex"],["ComplexPortal%3ACPX-1653","Retromer complex"],["ComplexPortal%3ACPX-2610","Retromer complex"],["ComplexPortal%3ACPX-26687","Retromer complex"],["GO%3A0012505","endomembrane system"]]},{"id":"GO:0098588","l":"bounding membrane of organelle","na":2,"nb":94,"a":[["appendage/ciliary_membrane.html","ciliary membrane"],["membrane_organelle/endocytic_vesicle_membrane.html","endocytic vesicle membrane"]],"b":[["GO%3A0033102","acidocalcisome membrane"],["GO%3A0032578","aleurone grain membrane"],["GO%3A0033111","attachment organelle membrane"],["GO%3A0098588","bounding membrane of organelle"],["GO%3A0030661","chitosome membrane"],["GO%3A0060170","ciliary membrane"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":2,"nb":93,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17544","requires hydrogencarbonate"],["EC%3A1.13.11.73","methylphosphonate synthase"],["EC%3A1.2.1.27","methylmalonate-semialdehyde dehydrogenase (CoA acylating)"],["EC%3A2.5.1.120","aminodeoxyfutalosine synthase"],["EC%3A2.5.1.143","pyridinium-3,5-biscarboxylic acid mononucleotide synthase"],["EC%3A2.7.2.2","carbamate kinase"]]},{"id":"GO:0009252","l":"peptidoglycan biosynthetic process","na":2,"nb":90,"a":[["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/elongasome.html","elongasome"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["GO%3A0009252","peptidoglycan biosynthetic process"],["GO%3A0018104","peptidoglycan-protein cross-linking"],["NCBIfam%3ATIGR00492","alanine racemase"],["NCBIfam%3ANF007061","bifunctional glycosyl transferase/transpeptidase"],["NCBIfam%3ANF006986","bifunctional UDP-N-acetylglucosamine diphosphorylase/glucosamine-1-phosphate N-acetyltransferase GlmU"]]},{"id":"GO:0042597","l":"periplasmic space","na":2,"nb":76,"a":[["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"],["envelope/periplasmic_space.html","periplasmic space"]],"b":[["ComplexPortal%3ACPX-3447","NapAB nitrate reductase complex"],["ComplexPortal%3ACPX-4281","PaoABC periplasmic aldehyde oxidoreductase"],["GO%3A0030287","cell wall-bounded periplasmic space"],["GO%3A0030288","outer membrane-bounded periplasmic space"],["GO%3A0042597","periplasmic space"],["GO%3A0036240","septal periplasm"]]},{"id":"GO:0006888","l":"endoplasmic reticulum to Golgi vesicle-mediated transport","na":2,"nb":60,"a":[["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"],["other/trappi_protein_complex.html","TRAPPI protein complex"]],"b":[["ComplexPortal%3ACPX-1698","EMP24 complex"],["ComplexPortal%3ACPX-7221","ERGIC2-ERGIC3 retrograde receptor complex"],["ComplexPortal%3ACPX-1854","Golgi SNARE complex SED5-BOS1-BET1-SEC22"],["ComplexPortal%3ACPX-1855","Golgi SNARE complex SED5-GOS1-SFT1-YKT6"],["ComplexPortal%3ACPX-8001","LMAN1-MCFD2 cargo receptor complex"],["ComplexPortal%3ACPX-4764","TRAPP II complex"]]},{"id":"GO:0010498","l":"proteasomal protein catabolic process","na":2,"nb":60,"a":[["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"]],"b":[["ComplexPortal%3ACPX-9003","20S immunoproteasome complex"],["ComplexPortal%3ACPX-8806","20S proteasome complex"],["ComplexPortal%3ACPX-9021","20S spermatoproteasome complex"],["ComplexPortal%3ACPX-9004","20S thymoproteasome complex"],["ComplexPortal%3ACPX-9077","26S proteasome complex"],["ComplexPortal%3ACPX-9087","26S proteasome complex, testis-specific variant"]]},{"id":"GO:0051276","l":"chromosome organization","na":2,"nb":49,"a":[["nucleoid/nucleoid.html","nucleoid"],["other/nuclear_chromosome.html","nuclear chromosome"]],"b":[["ComplexPortal%3ACPX-1249","SDS22-GLC7 phosphatase complex"],["ComplexPortal%3ACPX-1260","SDS22-GLC7-YPI1 phosphatase complex"],["GO%3A0036386","bacterial nucleoid DNA packaging"],["GO%3A0141112","broken chromosome clustering"],["GO%3A0030261","chromosome condensation"],["GO%3A0051276","chromosome organization"]]},{"id":"GO:0000932","l":"P-body","na":2,"nb":48,"a":[["ribonucleoprotein/cytoplasmic_stress_granule.html","cytoplasmic stress granule"],["ribonucleoprotein/p_body.html","P-body"]],"b":[["ComplexPortal%3ACPX-1185","DCS1-DCS2 regulator of decapping scavenger complex"],["ComplexPortal%3ACPX-45","LSM1-7 complex"],["ComplexPortal%3ACPX-112","LSM1-7-PAT1 complex"],["ComplexPortal%3ACPX-1308","LSM1-7-PAT1 complex, variant LSM1A-LSM3A-LSM6A-PAT1"],["ComplexPortal%3ACPX-1391","LSM1-7-PAT1 complex, variant LSM1A-LSM3A-LSM6A-PAT1H1"],["ComplexPortal%3ACPX-1399","LSM1-7-PAT1 complex, variant LSM1A-LSM3A-LSM6A-PAT1H2"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":46,"a":[["envelope/periplasmic_space.html","periplasmic space"],["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"]],"b":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF13166","AAA domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF27533","CapK C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"]]},{"id":"GO:0042147","l":"retrograde transport, endosome to Golgi","na":2,"nb":41,"a":[["other/garp_complex.html","GARP complex"],["other/retromer_complex.html","retromer complex"]],"b":[["ComplexPortal%3ACPX-5322","Endosomal SNARE complex TLG2-VTI1-TLG1-SNC1"],["ComplexPortal%3ACPX-5321","Endosomal SNARE complex TLG2-VTI1-TLG1-SNC2"],["ComplexPortal%3ACPX-1718","GARP tethering complex"],["ComplexPortal%3ACPX-365","GARP tethering complex"],["ComplexPortal%3ACPX-6208","GARP tethering complex"],["ComplexPortal%3ACPX-2788","GARP tethering complex, Vps50 variant"]]},{"id":"GO:0006402","l":"mRNA catabolic process","na":2,"nb":39,"a":[["ribonucleoprotein/bacterial_degradosome.html","bacterial degradosome"],["ribonucleoprotein/p_body.html","P-body"]],"b":[["ComplexPortal%3ACPX-2771","CCR4-NOT mRNA deadenylase complex"],["ComplexPortal%3ACPX-11781","Lyric-SND1 RNA regulator complex"],["ComplexPortal%3ACPX-2733","miRNA RISC complex"],["ComplexPortal%3ACPX-1040","SKI complex"],["GO%3A0141065","maternal mRNA clearance"],["GO%3A0000958","mitochondrial mRNA catabolic process"]]},{"id":"NCBITaxon:272634","l":"Mycoplasmoides pneumoniae (strain ATCC 29342 / M129 / Subtype 1)","na":2,"nb":38,"a":[["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"]],"b":[["Pfam%3APF01812","5-formyltetrahydrofolate cyclo-ligase family"],["Pfam%3APF03257","Mycoplasma adhesin P1, C-terminal"],["Pfam%3APF22509","CARDS D2, beta trefoil domain"],["Pfam%3APF22346","ADP-ribosylating toxin CARDS, C-terminal beta-trefoil domain"],["Pfam%3APF21694","DNA polymerase III delta subunit, C-terminal domain"],["Pfam%3APF01519","Protein of unknown function DUF16"]]},{"id":"GO:0008360","l":"regulation of cell shape","na":2,"nb":35,"a":[["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/elongasome.html","elongasome"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["ComplexPortal%3ACPX-2499","Erythrocyte spectrin complex"],["GO%3A0071963","establishment or maintenance of cell polarity regulating cell shape"],["GO%3A0008360","regulation of cell shape"],["GO%3A0061389","regulation of direction of cell growth"],["GO%3A0016476","regulation of embryonic cell shape"]]},{"id":"GO:0030141","l":"secretory granule","na":2,"nb":33,"a":[["membrane_organelle/apicomplexan_dense_granule.html","apicomplexan dense granule"],["membrane_organelle/mucocyst.html","mucocyst"]],"b":[["GO%3A0001669","acrosomal vesicle"],["GO%3A0020026","apicomplexan dense granule"],["GO%3A0042582","azurophil granule"],["GO%3A0042583","chromaffin granule"],["GO%3A0060473","cortical granule"],["GO%3A0031045","dense core granule"]]},{"id":"GO:0015977","l":"carbon fixation","na":2,"nb":30,"a":[["microcompartment/carboxysome.html","carboxysome"],["other/pyrenoid.html","pyrenoid"]],"b":[["GO%3A0009760","C4 photosynthesis"],["GO%3A0009761","CAM photosynthesis"],["GO%3A0043427","carbon fixation by 3-hydroxypropionate cycle"],["GO%3A0030634","carbon fixation by acetyl-CoA pathway"],["GO%3A0015977","carbon fixation"],["GO%3A0019643","reductive tricarboxylic acid cycle"]]},{"id":"GO:0071013","l":"catalytic step 2 spliceosome","na":2,"nb":29,"a":[["ribonucleoprotein/u12_type_catalytic_step_2_spliceosome.html","U12-type catalytic step 2 spliceosome"],["ribonucleoprotein/u2_type_catalytic_step_2_spliceosome.html","U2-type catalytic step 2 spliceosome"]],"b":[["GO%3A0071013","catalytic step 2 spliceosome"],["GO%3A0071018","U12-type catalytic step 2 spliceosome"],["GO%3A0071007","U2-type catalytic step 2 spliceosome"],["PANTHER%3APTHR13296","BCAS2 PROTEIN"],["PANTHER%3APTHR12718","CELL CYCLE CONTROL PROTEIN CWF15"],["PANTHER%3APTHR12940","ES-2 PROTEIN - RELATED"]]},{"id":"GO:0046961","l":"proton-transporting ATPase activity, rotational mechanism","na":2,"nb":26,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v1_domain.html","vacuolar proton-transporting V-type ATPase, V1 domain"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["ComplexPortal%3ACPX-2470","Vacuolar proton translocating ATPase complex, ATP6V0A1 variant"],["ComplexPortal%3ACPX-6904","Vacuolar proton translocating ATPase complex, ATP6V0A2 variant"],["ComplexPortal%3ACPX-6905","Vacuolar proton translocating ATPase complex, ATP6V0A3 variant"],["ComplexPortal%3ACPX-6912","Vacuolar proton translocating ATPase complex, ATP6V0A4 variant"],["ComplexPortal%3ACPX-1192","Vacuolar proton translocating ATPase complex, Golgi variant"]]},{"id":"GO:0000145","l":"exocyst","na":2,"nb":25,"a":[["other/cellular_bud_tip.html","cellular bud tip"],["other/exocyst.html","exocyst"]],"b":[["ComplexPortal%3ACPX-1890","Exocyst complex"],["ComplexPortal%3ACPX-26496","Exocyst complex"],["ComplexPortal%3ACPX-2465","Exocyst"],["ComplexPortal%3ACPX-712","Exocyst"],["ComplexPortal%3ACPX-4943","Exocyst, EXOC6 variant"],["ComplexPortal%3ACPX-4982","Exocyst, Exoc6 variant"]]},{"id":"GO:0071011","l":"precatalytic spliceosome","na":2,"nb":24,"a":[["ribonucleoprotein/u12_type_precatalytic_spliceosome.html","U12-type precatalytic spliceosome"],["ribonucleoprotein/u2_type_precatalytic_spliceosome.html","U2-type precatalytic spliceosome"]],"b":[["ComplexPortal%3ACPX-26435","Major Spliceosomal B complex"],["ComplexPortal%3ACPX-26429","Major Spliceosomal Pre-B complex"],["GO%3A0071011","precatalytic spliceosome"],["GO%3A0071016","U12-type precatalytic spliceosome"],["GO%3A0071005","U2-type precatalytic spliceosome"],["PANTHER%3APTHR46589","APOPTOTIC CHROMATIN CONDENSATION INDUCER IN THE NUCLEUS"]]},{"id":"GO:0072686","l":"mitotic spindle","na":2,"nb":24,"a":[["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"]],"b":[["ComplexPortal%3ACPX-1041","DASH complex"],["ComplexPortal%3ACPX-4027","gpr-1-gpr-2-lin-5 complex"],["GO%3A0072686","mitotic spindle"],["PANTHER%3APTHR46930","CDK5 REGULATORY SUBUNIT-ASSOCIATED PROTEIN 2"],["PANTHER%3APTHR47078","CYTOSKELETON-ASSOCIATED PROTEIN 2-LIKE"],["PANTHER%3APTHR28036","DASH COMPLEX SUBUNIT DAD2"]]},{"id":"GO:0005819","l":"spindle","na":2,"nb":20,"a":[["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"]],"b":[["ComplexPortal%3ACPX-3463","Central spindlin complex"],["GO%3A0072687","meiotic spindle"],["GO%3A0072686","mitotic spindle"],["GO%3A0005819","spindle"],["PANTHER%3APTHR31022","CENTRIOLE, CILIA AND SPINDLE-ASSOCIATED PROTEIN"],["PANTHER%3APTHR46725","COILED-COIL DOMAIN-CONTAINING PROTEIN 57"]]},{"id":"GO:0030658","l":"transport vesicle membrane","na":2,"nb":20,"a":[["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"],["membrane_organelle/trans_golgi_network_transport_vesicle_membrane.html","trans-Golgi network transport vesicle membrane"]],"b":[["GO%3A0060201","clathrin-sculpted acetylcholine transport vesicle membrane"],["GO%3A0060203","clathrin-sculpted glutamate transport vesicle membrane"],["GO%3A0070083","clathrin-sculpted monoamine transport vesicle membrane"],["GO%3A0012507","ER to Golgi transport vesicle membrane"],["GO%3A0099501","exocytic vesicle membrane"],["GO%3A0012508","Golgi to ER transport vesicle membrane"]]},{"id":"GO:0000048","l":"peptidyltransferase activity","na":2,"nb":18,"a":[["ribonucleoprotein/large_ribosomal_subunit.html","large ribosomal subunit"],["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["EC%3A2.3.2.12","peptidyltransferase"],["ComplexPortal%3ACPX-5226","39S mitochondrial large ribosomal subunit"],["ComplexPortal%3ACPX-5302","39S mitochondrial large ribosomal subunit"],["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["ComplexPortal%3ACPX-1602","54S mitochondrial large ribosomal subunit"],["ComplexPortal%3ACPX-1601","60S cytosolic large ribosomal subunit"]]},{"id":"GO:0005876","l":"spindle microtubule","na":2,"nb":18,"a":[["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"]],"b":[["GO%3A0000235","astral microtubule"],["GO%3A0005828","kinetochore microtubule"],["GO%3A1990498","mitotic spindle microtubule"],["GO%3A0005827","polar microtubule"],["GO%3A0005876","spindle microtubule"],["PANTHER%3APTHR46725","COILED-COIL DOMAIN-CONTAINING PROTEIN 57"]]},{"id":"GO:0031411","l":"gas vesicle","na":2,"nb":18,"a":[["inclusion/gas_vesicle.html","gas vesicle"],["inclusion/gas_vesicle_shell.html","gas vesicle shell"]],"b":[["GO%3A0031411","gas vesicle"],["NCBIfam%3ANF041667","gas vesicle accessory protein GvpU"],["NCBIfam%3ANF046092","gas vesicle protein GvpA"],["NCBIfam%3ANF045779","gas vesicle protein GvpG"],["NCBIfam%3ANF046090","gas vesicle protein GvpJ"],["NCBIfam%3ANF045778","gas vesicle protein GvpL"]]},{"id":"GO:0031982","l":"vesicle","na":2,"nb":18,"a":[["membrane_organelle/cytoplasmic_vesicle.html","cytoplasmic vesicle"],["membrane_organelle/multivesicular_body_intraluminal_vesicle.html","multivesicular body intraluminal vesicle"]],"b":[["GO%3A1903561","extracellular vesicle"],["GO%3A0097708","intracellular vesicle"],["GO%3A0031982","vesicle"],["PANTHER%3APTHR47395","BPI FOLD-CONTAINING FAMILY B MEMBER 1"],["PANTHER%3APTHR15152","CD70 ANTIGEN"],["PANTHER%3APTHR44314","CILIA- AND FLAGELLA-ASSOCIATED PROTEIN 70"]]},{"id":"GO:0046540","l":"U4/U6 x U5 tri-snRNP complex","na":2,"nb":18,"a":[["ribonucleoprotein/u2_type_precatalytic_spliceosome.html","U2-type precatalytic spliceosome"],["ribonucleoprotein/u4_u6_x_u5_tri_snrnp_complex.html","U4/U6 x U5 tri-snRNP complex"]],"b":[["ComplexPortal%3ACPX-2391","U4/U6.U5 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-25","U4/U6.U5 tri-small nuclear ribonucleoprotein complex"],["GO%3A0046540","U4/U6 x U5 tri-snRNP complex"],["NCBIfam%3ANF014962","Mitosis protein DIM1"],["InterPro%3AIPR045347","HIND motif"],["InterPro%3AIPR034103","Sm-like protein Lsm8"]]},{"id":"GO:0033103","l":"protein secretion by the type VI secretion system","na":2,"nb":17,"a":[["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"],["secretion_system/type_vi_secretion_system_contractile_sheath.html","type VI secretion system contractile sheath"]],"b":[["GO%3A0033103","protein secretion by the type VI secretion system"],["NCBIfam%3ATIGR03354","type VI secretion system-associated FHA domain protein TagH"],["NCBIfam%3ATIGR03345","type VI secretion system ATPase TssH"],["NCBIfam%3ATIGR03357","type VI secretion system baseplate subunit TssE"],["NCBIfam%3ATIGR03359","type VI secretion system baseplate subunit TssF"],["NCBIfam%3ATIGR03347","type VI secretion system baseplate subunit TssG"]]},{"id":"GO:0035869","l":"ciliary transition zone","na":2,"nb":17,"a":[["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"]],"b":[["ComplexPortal%3ACPX-2789","CEP290 complex"],["ComplexPortal%3ACPX-2536","CEP290-NPHP5 transition zone complex"],["ComplexPortal%3ACPX-2339","MKS complex"],["ComplexPortal%3ACPX-2531","MKS transition zone complex"],["ComplexPortal%3ACPX-2806","NPHP transition zone complex"],["GO%3A0035869","ciliary transition zone"]]},{"id":"NCBITaxon:5888","l":"Paramecium tetraurelia","na":2,"nb":17,"a":[["cytoskeleton/ciliary_rootlet.html","ciliary rootlet"],["membrane_organelle/trichocyst.html","trichocyst"]],"b":[["Pfam%3APF14926","Cilia- and flagella-associated protein 300"],["TED%3AAF-A0C038-F1-model_v4_TED07","TED highly-symmetric fold AF-A0C038-F1-model_v4_TED07"],["TED%3AAF-A0CFS1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0CFS1-F1-model_v4_TED02"],["TED%3AAF-A0CHQ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0CHQ8-F1-model_v4_TED01"],["TED%3AAF-A0CHQ8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0CHQ8-F1-model_v4_TED02"],["TED%3AAF-A0CHR9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0CHR9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":2,"nb":16,"a":[["cytoskeleton/tubz_filament.html","TubZ filament"],["inclusion/parasporal_crystal.html","parasporal crystal"]],"b":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF28265","Lipoprotein N-acylation protein LnsA-like"],["Pfam%3APF16403","Bacterial surface protein, Ig-like domain"],["Pfam%3APF03944","delta endotoxin"],["Pfam%3APF03945","delta endotoxin, N-terminal domain"],["Pfam%3APF06355","Aegerolysin"]]},{"id":"GO:0005811","l":"lipid droplet","na":2,"nb":15,"a":[["inclusion/lipid_droplet.html","lipid droplet"],["inclusion/monolayer_surrounded_lipid_storage_body_outer_lipid_monolayer.html","monolayer-surrounded lipid storage body outer lipid monolayer"]],"b":[["ComplexPortal%3ACPX-2148","Phosphatidylinositol transporter complex"],["ComplexPortal%3ACPX-3342","Seipin complex"],["GO%3A0005633","ascus lipid droplet"],["GO%3A0005811","lipid droplet"],["GO%3A0012511","monolayer-surrounded lipid storage body"],["NCBIfam%3ATIGR04278","antiviral radical SAM protein viperin"]]},{"id":"GO:0031902","l":"late endosome membrane","na":2,"nb":15,"a":[["membrane_organelle/late_endosome_lumen.html","late endosome lumen"],["membrane_organelle/late_endosome_membrane.html","late endosome membrane"]],"b":[["ComplexPortal%3ACPX-6308","ATP10B-CDC50A P4-ATPase complex"],["ComplexPortal%3ACPX-4741","Ragulator complex"],["ComplexPortal%3ACPX-4761","Ragulator complex"],["GO%3A0031902","late endosome membrane"],["GO%3A0032585","multivesicular body membrane"],["PANTHER%3APTHR12897","COLON CANCER-ASSOCIATED PROTEIN MIC1"]]},{"id":"GO:0032588","l":"trans-Golgi network membrane","na":2,"nb":14,"a":[["membrane_organelle/trans_golgi_network.html","trans-Golgi network"],["membrane_organelle/trans_golgi_network_membrane.html","trans-Golgi network membrane"]],"b":[["ComplexPortal%3ACPX-5050","Endothelial AP-1 Adaptor complex, sigma1a variant"],["ComplexPortal%3ACPX-5144","Endothelial AP-1 Adaptor complex, sigma1a variant"],["ComplexPortal%3ACPX-5047","Ubiquitous AP-1 Adaptor complex, sigma1a variant"],["ComplexPortal%3ACPX-5141","Ubiquitous AP-1 Adaptor complex, sigma1a variant"],["ComplexPortal%3ACPX-5048","Ubiquitous AP-1 Adaptor complex, sigma1b variant"],["ComplexPortal%3ACPX-5142","Ubiquitous AP-1 Adaptor complex, sigma1b variant"]]},{"id":"GO:0097526","l":"spliceosomal tri-snRNP complex","na":2,"nb":14,"a":[["ribonucleoprotein/u4_u6_x_u5_tri_snrnp_complex.html","U4/U6 x U5 tri-snRNP complex"],["ribonucleoprotein/u4atac_u6atac_x_u5_tri_snrnp_complex.html","U4atac/U6atac x U5 tri-snRNP complex"]],"b":[["GO%3A0097526","spliceosomal tri-snRNP complex"],["GO%3A0046540","U4/U6 x U5 tri-snRNP complex"],["GO%3A0071009","U4atac/U6atac x U5 tri-snRNP complex"],["PANTHER%3APTHR13904","PRE-MRNA SPLICING FACTOR PRP31"],["PANTHER%3APTHR13007","PRE-MRNA SPLICING FACTOR-RELATED"],["PANTHER%3APTHR11193","SMALL NUCLEAR RIBONUCLEOPROTEIN E"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":2,"nb":14,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF02224","Cytidylate kinase"],["Pfam%3APF03319","Ethanolamine utilisation protein EutN/carboxysome"],["Pfam%3APF22019","alpha-1,4-glucan branching enzyme GlgB, N-terminal domain"],["Pfam%3APF21714","Circadian clock protein KaiA, N-terminal domain"],["Pfam%3APF07688","KaiA C-terminal domain"]]},{"id":"GO:0005744","l":"TIM23 mitochondrial import inner membrane translocase complex","na":2,"nb":13,"a":[["other/pam_complex_tim23_associated_import_motor.html","PAM complex, Tim23 associated import motor"],["other/tim23_mitochondrial_import_inner_membrane_translocase_complex.html","TIM23 mitochondrial import inner membrane translocase complex"]],"b":[["ComplexPortal%3ACPX-540","Mitochondrial inner membrane pre-sequence translocase complex"],["ComplexPortal%3ACPX-539","TIM23 mitochondrial inner membrane pre-sequence translocase complex, motor variant"],["ComplexPortal%3ACPX-6127","TIM23 mitochondrial inner membrane pre-sequence translocase complex, sort variant"],["ComplexPortal%3ACPX-6129","TIM23 mitochondrial inner membrane pre-sequence translocase complex, TIM17A variant"],["ComplexPortal%3ACPX-6130","TIM23 mitochondrial inner membrane pre-sequence translocase complex, TIM17B variant"],["GO%3A0005744","TIM23 mitochondrial import inner membrane translocase complex"]]},{"id":"GO:0007007","l":"inner mitochondrial membrane organization","na":2,"nb":13,"a":[["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"],["other/micos_complex.html","MICOS complex"]],"b":[["GO%3A0042407","cristae formation"],["GO%3A0007007","inner mitochondrial membrane organization"],["GO%3A1990627","mitochondrial inner membrane fusion"],["GO%3A0032979","protein insertion into mitochondrial inner membrane from matrix"],["GO%3A0045039","protein insertion into mitochondrial inner membrane"],["PANTHER%3APTHR36959","ALTERED INHERITANCE OF MITOCHONDRIA PROTEIN 24, MITOCHONDRIAL"]]},{"id":"GO:0032153","l":"cell division site","na":2,"nb":13,"a":[["division_machinery/divisome_complex.html","divisome complex"],["envelope/division_septum.html","division septum"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["GO%3A0032153","cell division site"],["PANTHER%3APTHR36419","ARRESTIN FAMILY PROTEIN 1"],["PANTHER%3APTHR30474","CELL CYCLE PROTEIN"],["PANTHER%3APTHR37479","CELL DIVISION PROTEIN FTSL"],["PANTHER%3APTHR30314","CELL DIVISION PROTEIN FTSZ-RELATED"]]},{"id":"GO:0006913","l":"nucleocytoplasmic transport","na":2,"nb":12,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nucleus.html","nucleus"]],"b":[["ComplexPortal%3ACPX-2568","Nuclear pore complex"],["ComplexPortal%3ACPX-4474","Nuclear pore complex"],["ComplexPortal%3ACPX-824","Nuclear pore complex"],["ComplexPortal%3ACPX-873","Nuclear pore complex"],["GO%3A0051170","import into nucleus"],["GO%3A0051168","nuclear export"]]},{"id":"GO:1990586","l":"divisome complex","na":2,"nb":11,"a":[["division_machinery/divisome_complex.html","divisome complex"],["envelope/division_septum.html","division septum"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["ComplexPortal%3ACPX-3299","FtsBL complex"],["ComplexPortal%3ACPX-3099","FtsQBL complex"],["GO%3A1990586","divisome complex"],["GO%3A1990588","FtsBL complex"],["GO%3A1990587","FtsQBL complex"]]},{"id":"GO:0009330","l":"DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) complex","na":2,"nb":10,"a":[["other/dna_gyrase_complex.html","DNA gyrase complex"],["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["ComplexPortal%3ACPX-26662","SPO11 DNA endo-reduplication complex"],["ComplexPortal%3ACPX-26657","SPO11 meiotic recombination initiation complex"],["ComplexPortal%3ACPX-26658","SPO11 meiotic recombination initiation complex"],["ComplexPortal%3ACPX-26659","SPO11 meiotic recombination initiation complex"],["ComplexPortal%3ACPX-26664","SPO11, meiotic recombination initiation complex"],["ComplexPortal%3ACPX-1104","Topoisomerase IV"]]},{"id":"GO:0030428","l":"cell septum","na":2,"nb":10,"a":[["envelope/division_septum.html","division septum"],["membrane_organelle/chitosome.html","chitosome"]],"b":[["GO%3A0000933","adventitious septum"],["GO%3A0030428","cell septum"],["GO%3A0000935","division septum"],["GO%3A0000934","porous cell septum"],["NCBIfam%3ANF008641","cell division protein DedD"],["NCBIfam%3ATIGR00172","Maf family nucleotide pyrophosphatase"]]},{"id":"GO:0031470","l":"carboxysome","na":2,"nb":10,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["GO%3A0031470","carboxysome"],["NCBIfam%3ANF053791","alpha-carboxysome major shell protein CsoS1"],["NCBIfam%3ANF049993","beta-carboxysome assembly chaperone CcmS"],["NCBIfam%3ANF053792","beta-carboxysome assembly protein CcmO"],["NCBIfam%3ANF053796","beta-carboxysome protein CcmP"],["NCBIfam%3ANF053793","beta-carboxysome scaffolding protein CcmN"]]},{"id":"GO:0071014","l":"post-mRNA release spliceosomal complex","na":2,"nb":10,"a":[["ribonucleoprotein/u12_type_post_mrna_release_spliceosomal_complex.html","U12-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u2_type_post_mrna_release_spliceosomal_complex.html","U2-type post-mRNA release spliceosomal complex"]],"b":[["ComplexPortal%3ACPX-26480","Intron Lariat Spliceosome, type 1 complex"],["ComplexPortal%3ACPX-26481","Intron Lariat Spliceosome, type 2 complex"],["GO%3A0071014","post-mRNA release spliceosomal complex"],["GO%3A0071019","U12-type post-mRNA release spliceosomal complex"],["GO%3A0071008","U2-type post-mRNA release spliceosomal complex"],["PANTHER%3APTHR12072","CWF19, CELL CYCLE CONTROL PROTEIN"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":2,"nb":10,"a":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["TED%3AAF-A0A5T2E4X7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5T2E4X7-F1-model_v4_TED01"],["TED%3AAF-A0A5Y4BP44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Y4BP44-F1-model_v4_TED01"],["TED%3AAF-A0A623P6F3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A623P6F3-F1-model_v4_TED02"],["TED%3AAF-A0A721BDS7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A721BDS7-F1-model_v4_TED02"],["TED%3AAF-A0A743P324-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A743P324-F1-model_v4_TED01"],["TED%3AAF-A0A757VWR3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A757VWR3-F1-model_v4_TED02"]]},{"id":"GO:0005935","l":"cellular bud neck","na":2,"nb":9,"a":[["other/cellular_bud.html","cellular bud"],["other/cellular_bud_neck.html","cellular bud neck"]],"b":[["ComplexPortal%3ACPX-1684","CBK1-MOB2 kinase complex"],["ComplexPortal%3ACPX-1140","HICS complex"],["ComplexPortal%3ACPX-36","Kelch-containing Formin Regulatory Complex"],["ComplexPortal%3ACPX-1426","Myosin class II complex"],["ComplexPortal%3ACPX-1695","PCL1-PHO85 kinase complex"],["ComplexPortal%3ACPX-1694","PCL2-PHO85 kinase complex"]]},{"id":"GO:0006097","l":"glyoxylate cycle","na":2,"nb":9,"a":[["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysome.html","glyoxysome"]],"b":[["GO%3A0006097","glyoxylate cycle"],["proteintraitsmech%3ASEED_SUBSYSTEM_Glyoxylate_bypass","Glyoxylate bypass"],["NCBIfam%3ATIGR02924","isocitrate dehydrogenase"],["NCBIfam%3ATIGR01344","malate synthase A"],["NCBIfam%3ANF041315","malate synthase AceB"],["NCBIfam%3ANF002825","malate synthase G"]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":2,"nb":9,"a":[["envelope/capsule.html","capsule"],["envelope/glycocalyx.html","glycocalyx"]],"b":[["Pfam%3APF19567","Capsular polysaccharide synthesis, CpsB/CapC"],["Pfam%3APF07501","G5 domain"],["Pfam%3APF13551","Winged helix-turn helix"],["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF03047","COMC family"],["Pfam%3APF04556","DpnII restriction endonuclease"]]},{"id":"GO:0003352","l":"regulation of cilium movement","na":2,"nb":8,"a":[["cytoskeleton/axonemal_nexin_link.html","axonemal nexin link"],["cytoskeleton/radial_spoke.html","radial spoke"]],"b":[["GO%3A0120221","maintenance of ciliary planar beating movement pattern"],["GO%3A0003354","negative regulation of cilium movement"],["GO%3A0003353","positive regulation of cilium movement"],["GO%3A0003356","regulation of cilium beat frequency"],["GO%3A0003352","regulation of cilium movement"],["GO%3A0060295","regulation of cilium movement involved in cell motility"]]},{"id":"GO:0005801","l":"cis-Golgi network","na":2,"nb":8,"a":[["membrane_organelle/cis_golgi_network.html","cis-Golgi network"],["membrane_organelle/cis_golgi_network_membrane.html","cis-Golgi network membrane"]],"b":[["ComplexPortal%3ACPX-6092","GRASP55-GM45 Golgi stacking complex"],["ComplexPortal%3ACPX-874","GRASP65-GM130 Golgi stacking complex"],["GO%3A0005801","cis-Golgi network"],["InterPro%3AIPR043937","Golgin subfamily A , C-terminal binding motif"],["PANTHER%3APTHR14759","STOP PROTEIN"],["PANTHER%3APTHR13048","TRAFFICKING PROTEIN PARTICLE COMPLEX SUBUNIT 3"]]},{"id":"GO:0030131","l":"clathrin adaptor complex","na":2,"nb":8,"a":[["other/ap_1_adaptor_complex.html","AP-1 adaptor complex"],["other/ap_2_adaptor_complex.html","AP-2 adaptor complex"]],"b":[["GO%3A0030121","AP-1 adaptor complex"],["GO%3A0030122","AP-2 adaptor complex"],["GO%3A0030131","clathrin adaptor complex"],["InterPro%3AIPR018240","Clathrin adaptor, mu subunit, conserved site"],["InterPro%3AIPR015151","Beta-adaptin appendage, C-terminal subdomain"],["InterPro%3AIPR003164","Clathrin adaptor, alpha-adaptin, appendage, C-terminal subdomain"]]},{"id":"GO:0031931","l":"TORC1 complex","na":2,"nb":8,"a":[["other/torc1_complex.html","TORC1 complex"],["other/torc2_complex.html","TORC2 complex"]],"b":[["ComplexPortal%3ACPX-4473","mTORC1 complex"],["ComplexPortal%3ACPX-503","mTORC1 complex"],["ComplexPortal%3ACPX-2265","TORC1 complex"],["ComplexPortal%3ACPX-26512","TORC1 serine/threonine protein kinase complex"],["ComplexPortal%3ACPX-1715","TORC1 serine/threonine-protein kinase complex, TOR1 variant"],["ComplexPortal%3ACPX-1716","TORC1 serine/threonine-protein kinase complex, TOR2 variant"]]},{"id":"GO:0033176","l":"proton-transporting V-type ATPase complex","na":2,"nb":8,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["other/rave_complex.html","RAVE complex"]],"b":[["ComplexPortal%3ACPX-2470","Vacuolar proton translocating ATPase complex, ATP6V0A1 variant"],["ComplexPortal%3ACPX-6904","Vacuolar proton translocating ATPase complex, ATP6V0A2 variant"],["ComplexPortal%3ACPX-6905","Vacuolar proton translocating ATPase complex, ATP6V0A3 variant"],["ComplexPortal%3ACPX-6912","Vacuolar proton translocating ATPase complex, ATP6V0A4 variant"],["ComplexPortal%3ACPX-1192","Vacuolar proton translocating ATPase complex, Golgi variant"],["GO%3A0033181","plasma membrane proton-transporting V-type ATPase complex"]]},{"id":"GO:1903561","l":"extracellular vesicle","na":2,"nb":8,"a":[["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"],["other/bacterial_outer_membrane_vesicle.html","bacterial outer membrane vesicle"]],"b":[["GO%3A0097189","apoptotic body"],["GO%3A0097691","bacterial extracellular vesicle"],["GO%3A0061701","bacterial outer membrane vesicle"],["GO%3A0160014","exopher"],["GO%3A0070062","extracellular exosome"],["GO%3A1903561","extracellular vesicle"]]},{"id":"GO:0005687","l":"U4 snRNP","na":2,"nb":7,"a":[["ribonucleoprotein/u4_snrnp.html","U4 snRNP"],["ribonucleoprotein/u4_u6_snrnp.html","U4/U6 snRNP"]],"b":[["ComplexPortal%3ACPX-43","Sm complex"],["ComplexPortal%3ACPX-6033","Sm complex"],["ComplexPortal%3ACPX-26417","U4 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-31","U4 small nuclear ribonucleoprotein complex"],["GO%3A0005687","U4 snRNP"],["PANTHER%3APTHR13904","PRE-MRNA SPLICING FACTOR PRP31"]]},{"id":"GO:0009276","l":"Gram-negative-bacterium-type cell wall","na":2,"nb":7,"a":[["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"]],"b":[["GO%3A0009276","Gram-negative-bacterium-type cell wall"],["NCBIfam%3ATIGR02208","lauroyl-Kdo(2)-lipid IV(A) myristoyltransferase"],["NCBIfam%3ATIGR02314","methionine ABC transporter ATP-binding protein MetN"],["NCBIfam%3ATIGR01937","NADH:ubiquinone reductase (Na(+)-transporting) subunit B"],["NCBIfam%3ATIGR02162","pentaheme c-type cytochrome TorC"],["NCBIfam%3ATIGR01709","type II secretion system protein GspL"]]},{"id":"GO:0030479","l":"actin cortical patch","na":2,"nb":7,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"],["other/cell_cortex.html","cell cortex"]],"b":[["ComplexPortal%3ACPX-3541","AIM21-TDA2 actin assembly regulator complex"],["ComplexPortal%3ACPX-1500","Myosin class I complex, MYO3 variant"],["ComplexPortal%3ACPX-1470","Myosin class I complex, MYO5 variant"],["ComplexPortal%3ACPX-1335","RVS161-RVS167 amphiphysin complex"],["GO%3A0030479","actin cortical patch"],["PANTHER%3APTHR47789","LAS SEVENTEEN-BINDING PROTEIN 5"]]},{"id":"GO:0030905","l":"retromer, tubulation complex","na":2,"nb":7,"a":[["other/retromer_complex.html","retromer complex"],["other/retromer_tubulation_complex.html","retromer, tubulation complex"]],"b":[["ComplexPortal%3ACPX-8837","SNX1-SNX32 sorting nexin complex"],["ComplexPortal%3ACPX-8823","SNX1-SNX5 sorting nexin complex"],["ComplexPortal%3ACPX-8835","SNX1-SNX6 sorting nexin complex"],["ComplexPortal%3ACPX-8840","SNX2-SNX32 sorting nexin complex"],["ComplexPortal%3ACPX-8838","SNX2-SNX5 sorting nexin complex"],["ComplexPortal%3ACPX-8839","SNX2-SNX6 sorting nexin complex"]]},{"id":"GO:0033179","l":"proton-transporting V-type ATPase, V0 domain","na":2,"nb":7,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_v0_domain.html","vacuolar proton-transporting V-type ATPase, V0 domain"],["other/rave_complex.html","RAVE complex"]],"b":[["GO%3A0000222","plasma membrane proton-transporting V-type ATPase, V0 domain"],["GO%3A0033179","proton-transporting V-type ATPase, V0 domain"],["GO%3A0000220","vacuolar proton-transporting V-type ATPase, V0 domain"],["NCBIfam%3ATIGR02923","ATP synthase A1 subunit C"],["NCBIfam%3ANF013647","V-type ATPase 116kDa subunit family protein"],["Pfam%3APF05493","ATP synthase subunit H"]]},{"id":"GO:0071004","l":"U2-type prespliceosome","na":2,"nb":7,"a":[["ribonucleoprotein/u2_type_precatalytic_spliceosome.html","U2-type precatalytic spliceosome"],["ribonucleoprotein/u2_type_prespliceosome.html","U2-type prespliceosome"]],"b":[["ComplexPortal%3ACPX-1648","SF3A complex"],["GO%3A0071004","U2-type prespliceosome"],["PANTHER%3APTHR11864","PRE-MRNA-PROCESSING PROTEIN PRP40"],["PANTHER%3APTHR12375","RNA-BINDING PROTEIN LUC7-RELATED"],["PANTHER%3APTHR15316","SPLICEOSOME ASSOCIATED PROTEIN 114/SWAP SPLICING FACTOR-RELATED"],["PANTHER%3APTHR23205","SPLICING FACTOR 3A SUBUNIT 2"]]},{"id":"NCBITaxon:555778","l":"","na":2,"nb":7,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["Pfam%3APF08936","Carboxysome Shell Carbonic Anhydrase, C-terminal"],["Pfam%3APF20686","Carboxysome Shell Carbonic Anhydrase, catalytic domain"],["Pfam%3APF20687","Carboxysome Shell Carbonic Anhydrase, N-terminal"],["Pfam%3APF12288","Carboxysome shell peptide mid-region"],["Pfam%3APF10070","Probable inorganic carbon transporter subunit DabA"],["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"GO:0005619","l":"ascospore wall","na":6,"nb":2,"a":[["spore/ascospore_wall.html","ascospore wall"],["spore/chitosan_layer_of_spore_wall.html","chitosan layer of spore wall"],["spore/dityrosine_layer_of_spore_wall.html","dityrosine layer of spore wall"],["spore/inner_layer_of_spore_wall.html","inner layer of spore wall"],["spore/isp3_layer_of_spore_wall.html","Isp3 layer of spore wall"],["spore/spore_wall.html","spore wall"]],"b":[["ComplexPortal%3ACPX-1675","Septin complex"],["GO%3A0005619","ascospore wall"]]},{"id":"GO:0005691","l":"U6atac snRNP","na":6,"nb":2,"a":[["ribonucleoprotein/u12_type_catalytic_step_1_spliceosome.html","U12-type catalytic step 1 spliceosome"],["ribonucleoprotein/u12_type_catalytic_step_2_spliceosome.html","U12-type catalytic step 2 spliceosome"],["ribonucleoprotein/u12_type_post_mrna_release_spliceosomal_complex.html","U12-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u12_type_post_spliceosomal_complex.html","U12-type post-spliceosomal complex"],["ribonucleoprotein/u4atac_u6atac_snrnp.html","U4atac/U6atac snRNP"],["ribonucleoprotein/u6atac_snrnp.html","U6atac snRNP"]],"b":[["ComplexPortal%3ACPX-26499","U6atac small nuclear ribonucleoprotein complex"],["GO%3A0005691","U6atac snRNP"]]},{"id":"GO:0009521","l":"photosystem","na":2,"nb":6,"a":[["energy_complex/photosystem_i.html","photosystem I"],["energy_complex/photosystem_ii.html","photosystem II"]],"b":[["GO%3A0009521","photosystem"],["GO%3A0009522","photosystem I"],["GO%3A0009523","photosystem II"],["NCBIfam%3ANF012637","Photosystem II protein"],["Pfam%3APF00421","Photosystem II protein"],["InterPro%3AIPR036001","Photosystem antenna protein-like superfamily"]]},{"id":"GO:0009707","l":"chloroplast outer membrane","na":6,"nb":2,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_intermembrane_space.html","chloroplast intermembrane space"],["membrane_organelle/chloroplast_membrane.html","chloroplast membrane"],["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"],["other/toc_complex.html","Toc complex"]],"b":[["GO%3A0009707","chloroplast outer membrane"],["PANTHER%3APTHR47283","ENT-KAURENE OXIDASE, CHLOROPLASTIC"]]},{"id":"GO:0030140","l":"trans-Golgi network transport vesicle","na":2,"nb":6,"a":[["membrane_organelle/trans_golgi_network_transport_vesicle_membrane.html","trans-Golgi network transport vesicle membrane"],["other/clathrin_coat_of_trans_golgi_network_vesicle.html","clathrin coat of trans-Golgi network vesicle"]],"b":[["GO%3A0030140","trans-Golgi network transport vesicle"],["PANTHER%3APTHR16156","AFTIPHILIN A-RELATED"],["PANTHER%3APTHR15463","AP1 GAMMA SUBUNIT BINDING PROTEIN 1"],["PANTHER%3APTHR31975","BUD SITE SELECTION PROTEIN 7-RELATED"],["PANTHER%3APTHR47351","CHITIN BIOSYNTHESIS PROTEIN CHS5"],["PANTHER%3APTHR16528","GOLGI-ASSOCIATED PDZ AND COILED-COIL MOTIF-CONTAINING"]]},{"id":"GO:0031932","l":"TORC2 complex","na":2,"nb":6,"a":[["other/torc1_complex.html","TORC1 complex"],["other/torc2_complex.html","TORC2 complex"]],"b":[["ComplexPortal%3ACPX-4402","mTORC2 complex"],["ComplexPortal%3ACPX-4472","mTORC2 complex"],["ComplexPortal%3ACPX-1717","TORC2 complex"],["ComplexPortal%3ACPX-2269","TORC2 complex"],["ComplexPortal%3ACPX-26513","TORC2 serine/threonine protein kinase complex"],["GO%3A0031932","TORC2 complex"]]},{"id":"GO:0032580","l":"Golgi cisterna membrane","na":2,"nb":6,"a":[["membrane_organelle/golgi_cisterna.html","Golgi cisterna"],["membrane_organelle/golgi_cisterna_membrane.html","Golgi cisterna membrane"]],"b":[["GO%3A1990674","Golgi cis cisterna membrane"],["GO%3A0032580","Golgi cisterna membrane"],["GO%3A1990675","Golgi medial cisterna membrane"],["GO%3A1990676","Golgi trans cisterna membrane"],["NCBIfam%3ANF017491","Chondroitin N-acetylgalactosaminyltransferase"],["Pfam%3APF05679","Chondroitin N-acetylgalactosaminyltransferase"]]},{"id":"GO:0033565","l":"ESCRT-0 complex","na":2,"nb":6,"a":[["other/escrt_0_complex.html","ESCRT-0 complex"],["other/escrt_complex.html","ESCRT complex"]],"b":[["ComplexPortal%3ACPX-1622","ESCRT-0 complex"],["ComplexPortal%3ACPX-2452","ESCRT-0 complex"],["ComplexPortal%3ACPX-26631","ESCRT-0 complex"],["ComplexPortal%3ACPX-2825","ESCRT-0 complex, STAM variant"],["ComplexPortal%3ACPX-7143","ESCRT-0 complex, STAM2 variant"],["GO%3A0033565","ESCRT-0 complex"]]},{"id":"GO:0045334","l":"clathrin-coated endocytic vesicle","na":6,"nb":2,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle.html","clathrin-coated endocytic vesicle"],["membrane_organelle/clathrin_coated_endocytic_vesicle_lumen.html","clathrin-coated endocytic vesicle lumen"],["membrane_organelle/clathrin_coated_endocytic_vesicle_membrane.html","clathrin-coated endocytic vesicle membrane"],["membrane_organelle/endocytic_vesicle.html","endocytic vesicle"],["other/clathrin_coat_of_endocytic_vesicle.html","clathrin coat of endocytic vesicle"],["other/clathrin_coated_pit.html","clathrin-coated pit"]],"b":[["GO%3A0045334","clathrin-coated endocytic vesicle"],["GO%3A0045336","clathrin-coated phagocytic vesicle"]]},{"id":"GO:0071006","l":"U2-type catalytic step 1 spliceosome","na":2,"nb":6,"a":[["ribonucleoprotein/u2_type_catalytic_step_1_spliceosome.html","U2-type catalytic step 1 spliceosome"],["ribonucleoprotein/u2_type_catalytic_step_2_spliceosome.html","U2-type catalytic step 2 spliceosome"]],"b":[["ComplexPortal%3ACPX-26463","Major Spliceosomal C complex"],["ComplexPortal%3ACPX-26458","Major Spliceosomal Post-B-act complex"],["ComplexPortal%3ACPX-26441","Major Spliceosomal Pre-B-act complex"],["ComplexPortal%3ACPX-26465","Major Spliceosomal Pre-C*-I complex"],["ComplexPortal%3ACPX-26467","Major Spliceosomal Pre-C*-II complex"],["GO%3A0071006","U2-type catalytic step 1 spliceosome"]]},{"id":"GO:1990071","l":"TRAPPII protein complex","na":2,"nb":6,"a":[["other/trappi_protein_complex.html","TRAPPI protein complex"],["other/trappii_protein_complex.html","TRAPPII protein complex"]],"b":[["ComplexPortal%3ACPX-1939","TRAPP II complex"],["ComplexPortal%3ACPX-4764","TRAPP II complex"],["ComplexPortal%3ACPX-4749","TRAPP II complex, TRAPPC2 variant"],["ComplexPortal%3ACPX-6902","TRAPP II complex, TRAPPC2B variant"],["ComplexPortal%3ACPX-2271","TRAPPII complex"],["GO%3A1990071","TRAPPII protein complex"]]},{"id":"NCBITaxon:194439","l":"Chlorobaculum tepidum TLS","na":2,"nb":6,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["membrane_organelle/chlorosome.html","chlorosome"]],"b":[["Pfam%3APF02327","Bacteriochlorophyll A protein"],["Pfam%3APF27499","CsmB chlorosome envelope protein"],["Pfam%3APF28537","Probable trigger factor, FKBP-like domain"],["Pfam%3APF02043","Bacteriochlorophyll C binding protein"],["Pfam%3APF11098","Chlorosome envelope protein C"],["Pfam%3APF10643","Photosystem P840 reaction-centre cytochrome c-551"]]},{"id":"GO:0000221","l":"vacuolar proton-transporting V-type ATPase, V1 domain","na":2,"nb":5,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v1_domain.html","vacuolar proton-transporting V-type ATPase, V1 domain"]],"b":[["GO%3A0046612","lysosomal proton-transporting V-type ATPase, V1 domain"],["GO%3A0000221","vacuolar proton-transporting V-type ATPase, V1 domain"],["InterPro%3AIPR011987","ATPase, V1 complex, subunit H, C-terminal"],["Pfam%3APF11698","V-ATPase subunit H"],["Pfam%3APF03224","V-ATPase subunit H"]]},{"id":"GO:0005640","l":"nuclear outer membrane","na":5,"nb":2,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nuclear_envelope_lumen.html","nuclear envelope lumen"],["membrane_organelle/nuclear_inner_membrane.html","nuclear inner membrane"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"],["membrane_organelle/vacuolar_membrane.html","vacuolar membrane"]],"b":[["ComplexPortal%3ACPX-1381","NVJ1-VAC8 nucleus-vacuole junction complex"],["GO%3A0005640","nuclear outer membrane"]]},{"id":"GO:0009426","l":"bacterial-type flagellum basal body, distal rod","na":5,"nb":2,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"],["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"]],"b":[["GO%3A0009426","bacterial-type flagellum basal body, distal rod"],["NCBIfam%3ATIGR02488","flagellar basal-body rod protein FlgG"]]},{"id":"GO:0030669","l":"clathrin-coated endocytic vesicle membrane","na":5,"nb":2,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle.html","clathrin-coated endocytic vesicle"],["membrane_organelle/clathrin_coated_endocytic_vesicle_lumen.html","clathrin-coated endocytic vesicle lumen"],["membrane_organelle/clathrin_coated_endocytic_vesicle_membrane.html","clathrin-coated endocytic vesicle membrane"],["membrane_organelle/endocytic_vesicle_membrane.html","endocytic vesicle membrane"],["other/clathrin_coat_of_endocytic_vesicle.html","clathrin coat of endocytic vesicle"]],"b":[["GO%3A0030669","clathrin-coated endocytic vesicle membrane"],["GO%3A0030671","clathrin-coated phagocytic vesicle membrane"]]},{"id":"GO:0031207","l":"Sec62/Sec63 complex","na":2,"nb":5,"a":[["other/endoplasmic_reticulum_sec_complex.html","endoplasmic reticulum Sec complex"],["other/sec62_sec63_complex.html","Sec62/Sec63 complex"]],"b":[["ComplexPortal%3ACPX-26617","SEC62-SEC63 complex"],["ComplexPortal%3ACPX-26618","SEC62-SEC63 complex"],["ComplexPortal%3ACPX-3056","SEC62-SEC63 complex"],["GO%3A0031207","Sec62/Sec63 complex"],["Pfam%3APF09802","Preprotein translocase subunit Sec66"]]},{"id":"GO:0033180","l":"proton-transporting V-type ATPase, V1 domain","na":2,"nb":5,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_v1_domain.html","vacuolar proton-transporting V-type ATPase, V1 domain"],["other/rave_complex.html","RAVE complex"]],"b":[["GO%3A0000223","plasma membrane proton-transporting V-type ATPase, V1 domain"],["GO%3A0033180","proton-transporting V-type ATPase, V1 domain"],["GO%3A0000221","vacuolar proton-transporting V-type ATPase, V1 domain"],["Pfam%3APF03223","V-ATPase subunit C"],["InterPro%3AIPR036132","Vacuolar ATP synthase subunit C superfamily"]]},{"id":"GO:0042717","l":"plasma membrane-derived chromatophore membrane","na":5,"nb":2,"a":[["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/rc_lh1_pufx_core_complex.html","RC-LH1-PufX core complex"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"],["membrane_organelle/plasma_membrane_derived_chromatophore_membrane.html","plasma membrane-derived chromatophore membrane"]],"b":[["GO%3A0042717","plasma membrane-derived chromatophore membrane"],["GO%3A0031676","plasma membrane-derived thylakoid membrane"]]},{"id":"GO:0043593","l":"endospore coat","na":5,"nb":2,"a":[["spore/endospore_coat.html","endospore coat"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"],["spore/exosporium.html","exosporium"],["spore/outer_endospore_membrane.html","outer endospore membrane"],["spore/spore_wall.html","spore wall"]],"b":[["GO%3A0043593","endospore coat"],["NCBIfam%3ANF022572","CotD family spore coat protein"]]},{"id":"GO:0044222","l":"anammoxosome","na":2,"nb":5,"a":[["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"]],"b":[["GO%3A0044222","anammoxosome"],["NCBIfam%3ANF052343","hydrazine dehydrogenase"],["NCBIfam%3ANF052339","hydrazine synthase subunit alpha"],["NCBIfam%3ANF052340","hydrazine synthase subunit beta"],["NCBIfam%3ANF052341","hydrazine synthase subunit gamma"]]},{"id":"GO:0110146","l":"magnetosome membrane","na":2,"nb":5,"a":[["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]],"b":[["GO%3A0110146","magnetosome membrane"],["NCBIfam%3ANF040960","magnetosome formation protease MamE"],["NCBIfam%3ANF040959","magnetosome protein MamA"],["NCBIfam%3ANF040961","magnetosome protein MamO"],["NCBIfam%3ANF040966","magnetosome protein MamQ"]]},{"id":"GO:1990716","l":"axonemal central apparatus","na":5,"nb":2,"a":[["cytoskeleton/axonemal_central_apparatus.html","axonemal central apparatus"],["cytoskeleton/axonemal_central_bridge.html","axonemal central bridge"],["cytoskeleton/axonemal_central_pair.html","axonemal central pair"],["cytoskeleton/axonemal_central_pair_projection.html","axonemal central pair projection"],["cytoskeleton/axoneme.html","axoneme"]],"b":[["GO%3A1990716","axonemal central apparatus"],["PANTHER%3APTHR21963","PF6"]]},{"id":"UniProt:P27434","l":"","na":2,"nb":5,"a":[["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/elongasome.html","elongasome"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["NCBIfam%3ANF008109","cytoskeleton protein RodZ"],["InterPro%3AIPR025194","Cytoskeleton protein RodZ-like, C-terminal domain"],["Pfam%3APF13413","Helix-turn-helix domain"],["Pfam%3APF13464","RodZ C-terminal domain"]]},{"id":"GO:0030906","l":"retromer, cargo-selective complex","na":2,"nb":4,"a":[["other/retromer_cargo_selective_complex.html","retromer, cargo-selective complex"],["other/retromer_complex.html","retromer complex"]],"b":[["ComplexPortal%3ACPX-7842","Retromer complex, VPS26A variant"],["ComplexPortal%3ACPX-7843","Retromer complex, VPS26B variant"],["GO%3A0030906","retromer, cargo-selective complex"],["Pfam%3APF03635","Vacuolar protein sorting-associated protein 35"]]},{"id":"GO:0031970","l":"organelle envelope lumen","na":2,"nb":4,"a":[["membrane_organelle/mitochondrial_intermembrane_space.html","mitochondrial intermembrane space"],["membrane_organelle/nuclear_envelope_lumen.html","nuclear envelope lumen"]],"b":[["GO%3A0005758","mitochondrial intermembrane space"],["GO%3A0005641","nuclear envelope lumen"],["GO%3A0031970","organelle envelope lumen"],["GO%3A0009529","plastid intermembrane space"]]},{"id":"GO:0097590","l":"archaeal-type flagellum-dependent cell motility","na":2,"nb":4,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"]],"b":[["GO%3A0097590","archaeal-type flagellum-dependent cell motility"],["NCBIfam%3ANF052589","archaellum protein ArlH"],["NCBIfam%3ANF052590","archaellum stator protein ArlF"],["NCBIfam%3ANF052591","archaellum stator protein ArlG"]]},{"id":"GO:0120101","l":"bacterial-type flagellum stator complex","na":4,"nb":2,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"]],"b":[["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["GO%3A0120101","bacterial-type flagellum stator complex"]]},{"id":"NCBITaxon:32053","l":"Thermostichus vulcanus","na":2,"nb":4,"a":[["energy_complex/photosystem_ii.html","photosystem II"],["energy_complex/phycobilisome.html","phycobilisome"]],"b":[["Pfam%3APF14495","Cytochrome c-550 domain"],["Pfam%3APF00283","Cytochrome b559, alpha (gene psbE) and beta (gene psbF)subunits"],["Pfam%3APF00284","Lumenal portion of Cytochrome b559, alpha (gene psbE) subunit"],["PROSITE%3APS00537","Cytochrome b559 subunits heme-binding site signature"]]},{"id":"Pfam:PF00741","l":"Gas vesicle protein","na":2,"nb":4,"a":[["inclusion/gas_vesicle.html","gas vesicle"],["inclusion/gas_vesicle_shell.html","gas vesicle shell"]],"b":[["Pfam%3APF05121","Gas vesicle protein K"],["Pfam%3APF00741","Gas vesicle protein"],["PROSITE%3APS00234","Gas vesicles protein GVPa signature 1"],["PROSITE%3APS00669","Gas vesicles protein GVPa signature 2"]]},{"id":"GO:0000220","l":"vacuolar proton-transporting V-type ATPase, V0 domain","na":3,"nb":2,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v0_domain.html","vacuolar proton-transporting V-type ATPase, V0 domain"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v1_domain.html","vacuolar proton-transporting V-type ATPase, V1 domain"]],"b":[["GO%3A0046610","lysosomal proton-transporting V-type ATPase, V0 domain"],["GO%3A0000220","vacuolar proton-transporting V-type ATPase, V0 domain"]]},{"id":"GO:0005934","l":"cellular bud tip","na":2,"nb":3,"a":[["other/cellular_bud.html","cellular bud"],["other/cellular_bud_tip.html","cellular bud tip"]],"b":[["ComplexPortal%3ACPX-1684","CBK1-MOB2 kinase complex"],["ComplexPortal%3ACPX-36","Kelch-containing Formin Regulatory Complex"],["GO%3A0005934","cellular bud tip"]]},{"id":"GO:0020022","l":"acidocalcisome","na":3,"nb":2,"a":[["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"]],"b":[["GO%3A0020022","acidocalcisome"],["GO%3A0106117","acidocalcisome organization"]]},{"id":"GO:0022624","l":"proteasome accessory complex","na":2,"nb":3,"a":[["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"]],"b":[["ComplexPortal%3ACPX-8962","19S proteasome regulatory complex"],["ComplexPortal%3ACPX-8964","19S proteasome regulatory complex"],["GO%3A0022624","proteasome accessory complex"]]},{"id":"GO:0031905","l":"early endosome lumen","na":3,"nb":2,"a":[["membrane_organelle/early_endosome.html","early endosome"],["membrane_organelle/early_endosome_lumen.html","early endosome lumen"],["membrane_organelle/early_endosome_membrane.html","early endosome membrane"]],"b":[["ComplexPortal%3ACPX-1059","Sorf-1-Sorf-2 complex"],["GO%3A0031905","early endosome lumen"]]},{"id":"GO:0031906","l":"late endosome lumen","na":2,"nb":3,"a":[["membrane_organelle/late_endosome_lumen.html","late endosome lumen"],["membrane_organelle/late_endosome_membrane.html","late endosome membrane"]],"b":[["ComplexPortal%3ACPX-1059","Sorf-1-Sorf-2 complex"],["GO%3A0031906","late endosome lumen"],["GO%3A0097486","multivesicular body lumen"]]},{"id":"GO:0034693","l":"U11/U12 snRNP","na":3,"nb":2,"a":[["ribonucleoprotein/u11_u12_snrnp.html","U11/U12 snRNP"],["ribonucleoprotein/u12_type_precatalytic_spliceosome.html","U12-type precatalytic spliceosome"],["ribonucleoprotein/u12_type_prespliceosome.html","U12-type prespliceosome"]],"b":[["ComplexPortal%3ACPX-26489","U11/U12 di-small nuclear ribonucleoprotein complex"],["GO%3A0034693","U11/U12 snRNP"]]},{"id":"GO:0042646","l":"plastid nucleoid","na":2,"nb":3,"a":[["nucleoid/chloroplast_nucleoid.html","chloroplast nucleoid"],["nucleoid/plastid_nucleoid.html","plastid nucleoid"]],"b":[["GO%3A0042644","chloroplast nucleoid"],["GO%3A0042646","plastid nucleoid"],["GO%3A0042647","proplastid nucleoid"]]},{"id":"GO:0071001","l":"U4/U6 snRNP","na":2,"nb":3,"a":[["ribonucleoprotein/u4_u6_snrnp.html","U4/U6 snRNP"],["ribonucleoprotein/u4_u6_x_u5_tri_snrnp_complex.html","U4/U6 x U5 tri-snRNP complex"]],"b":[["ComplexPortal%3ACPX-26418","U4/U6 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-32","U4/U6 small nuclear ribonucleoprotein complex"],["GO%3A0071001","U4/U6 snRNP"]]},{"id":"GO:0071010","l":"prespliceosome","na":2,"nb":3,"a":[["ribonucleoprotein/u12_type_prespliceosome.html","U12-type prespliceosome"],["ribonucleoprotein/u2_type_prespliceosome.html","U2-type prespliceosome"]],"b":[["GO%3A0071010","prespliceosome"],["GO%3A0071015","U12-type prespliceosome"],["GO%3A0071004","U2-type prespliceosome"]]},{"id":"GO:0120107","l":"bacterial-type flagellum rotor complex","na":2,"nb":3,"a":[["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"]],"b":[["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0120107","bacterial-type flagellum rotor complex"]]},{"id":"NCBITaxon:174633","l":"","na":2,"nb":3,"a":[["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"]],"b":[["Pfam%3APF22142","Hydroxylamine oxidoreductase, C-terminal domain"],["Pfam%3APF18582","Hydrazine synthase alpha subunit middle domain"],["Pfam%3APF21783","YNCE-like beta-propeller"]]},{"id":"NCBITaxon:243231","l":"Geobacter sulfurreducens PCA","na":3,"nb":2,"a":[["appendage/omce_cytochrome_nanowire.html","OmcE cytochrome nanowire"],["appendage/omcs_cytochrome_nanowire.html","OmcS cytochrome nanowire"],["appendage/omcz_cytochrome_nanowire.html","OmcZ cytochrome nanowire"]],"b":[["Pfam%3APF01930","Domain of unknown function DUF83"],["Pfam%3APF13435","Cytochrome c554 and c-prime"]]},{"id":"NCBITaxon:342108","l":"","na":2,"nb":3,"a":[["cytoskeleton/mamk_filament.html","MamK filament"],["membrane_organelle/magnetosome.html","magnetosome"]],"b":[["Pfam%3APF08269","Cache domain"],["Pfam%3APF08849","BrxA"],["Pfam%3APF04011","LemA family"]]},{"id":"NCBITaxon:4922","l":"Komagataella pastoris","na":2,"nb":3,"a":[["membrane_organelle/cis_golgi_network.html","cis-Golgi network"],["membrane_organelle/cis_golgi_network_membrane.html","cis-Golgi network membrane"]],"b":[["Pfam%3APF26001","Peroxin 8 protein-like, N-terminal domain"],["Pfam%3APF27812","PEX8 central TPR-like domain"],["TED%3AAF-A0A1B2J8F2-F1-model_v4_TED02","TED novel fold AF-A0A1B2J8F2-F1-model_v4_TED02"]]},{"id":"GO:0000817","l":"COMA complex","na":2,"nb":2,"a":[["other/coma_complex.html","COMA complex"],["other/kinetochore.html","kinetochore"]],"b":[["ComplexPortal%3ACPX-1187","COMA complex"],["GO%3A0000817","COMA complex"]]},{"id":"GO:0005690","l":"U4atac snRNP","na":2,"nb":2,"a":[["ribonucleoprotein/u4atac_snrnp.html","U4atac snRNP"],["ribonucleoprotein/u4atac_u6atac_snrnp.html","U4atac/U6atac snRNP"]],"b":[["ComplexPortal%3ACPX-26495","U4atac small nuclear ribonucleoprotein complex"],["GO%3A0005690","U4atac snRNP"]]},{"id":"GO:0005931","l":"axonemal nexin link","na":2,"nb":2,"a":[["cytoskeleton/axonemal_nexin_link.html","axonemal nexin link"],["cytoskeleton/axoneme.html","axoneme"]],"b":[["ComplexPortal%3ACPX-8086","Nexin-dynein regulatory complex"],["GO%3A0005931","axonemal nexin link"]]},{"id":"GO:0033106","l":"cis-Golgi network membrane","na":2,"nb":2,"a":[["membrane_organelle/cis_golgi_network.html","cis-Golgi network"],["membrane_organelle/cis_golgi_network_membrane.html","cis-Golgi network membrane"]],"b":[["ComplexPortal%3ACPX-1125","BUG1-GRH1 complex"],["GO%3A0033106","cis-Golgi network membrane"]]},{"id":"GO:0071002","l":"U4atac/U6atac snRNP","na":2,"nb":2,"a":[["ribonucleoprotein/u4atac_u6atac_snrnp.html","U4atac/U6atac snRNP"],["ribonucleoprotein/u4atac_u6atac_x_u5_tri_snrnp_complex.html","U4atac/U6atac x U5 tri-snRNP complex"]],"b":[["ComplexPortal%3ACPX-26500","U4atac/U6atac small nuclear ribonucleoprotein complex"],["GO%3A0071002","U4atac/U6atac snRNP"]]},{"id":"GO:0071009","l":"U4atac/U6atac x U5 tri-snRNP complex","na":2,"nb":2,"a":[["ribonucleoprotein/u12_type_precatalytic_spliceosome.html","U12-type precatalytic spliceosome"],["ribonucleoprotein/u4atac_u6atac_x_u5_tri_snrnp_complex.html","U4atac/U6atac x U5 tri-snRNP complex"]],"b":[["ComplexPortal%3ACPX-26502","U4atac/U6atac.U5 small nuclear ribonucleoprotein complex"],["GO%3A0071009","U4atac/U6atac x U5 tri-snRNP complex"]]},{"id":"GO:0071016","l":"U12-type precatalytic spliceosome","na":2,"nb":2,"a":[["ribonucleoprotein/u12_type_catalytic_step_1_spliceosome.html","U12-type catalytic step 1 spliceosome"],["ribonucleoprotein/u12_type_precatalytic_spliceosome.html","U12-type precatalytic spliceosome"]],"b":[["ComplexPortal%3ACPX-26506","Minor Spliceosomal Pre-B complex"],["GO%3A0071016","U12-type precatalytic spliceosome"]]},{"id":"GO:0090382","l":"phagosome maturation","na":2,"nb":2,"a":[["membrane_organelle/phagocytic_vesicle.html","phagocytic vesicle"],["membrane_organelle/phagocytic_vesicle_membrane.html","phagocytic vesicle membrane"]],"b":[["GO%3A0090382","phagosome maturation"],["GO%3A0090386","phagosome maturation involved in apoptotic cell clearance"]]},{"id":"GO:0120102","l":"bacterial-type flagellum secretion apparatus","na":2,"nb":2,"a":[["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"],["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["ComplexPortal%3ACPX-5885","Flagellar export complex"],["GO%3A0120102","bacterial-type flagellum secretion apparatus"]]},{"id":"GO:1990621","l":"ESCRT IV complex","na":2,"nb":2,"a":[["other/escrt_complex.html","ESCRT complex"],["other/escrt_iv_complex.html","ESCRT IV complex"]],"b":[["ComplexPortal%3ACPX-2462","VPS4-VTA1 compex"],["GO%3A1990621","ESCRT IV complex"]]},{"id":"InterPro:IPR006300","l":"","na":2,"nb":2,"a":[["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"]],"b":[["Pfam%3APF00460","Flagella basal body rod protein"],["PROSITE%3APS00588","Flagella basal body rod proteins signature"]]},{"id":"InterPro:IPR012834","l":"","na":2,"nb":2,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"]],"b":[["Pfam%3APF06429","Flagellar basal body rod FlgEFG protein C-terminal"],["PROSITE%3APS00588","Flagella basal body rod proteins signature"]]},{"id":"InterPro:IPR028245","l":"","na":2,"nb":2,"a":[["cytoskeleton/eisosome_filament.html","eisosome filament"],["other/eisosome.html","eisosome"]],"b":[["PANTHER%3APTHR31962","SPHINGOLIPID LONG CHAIN BASE-RESPONSIVE PROTEIN PIL1"],["Pfam%3APF13805","Eisosome component PIL1"]]},{"id":"Pfam:PF01304","l":"Gas vesicles protein GVPc repeated domain","na":2,"nb":2,"a":[["inclusion/gas_vesicle.html","gas vesicle"],["inclusion/gas_vesicle_shell.html","gas vesicle shell"]],"b":[["PROSITE%3APS00235","Gas vesicles protein GVPc repeated domain signature"],["Pfam%3APF01304","Gas vesicles protein GVPc repeated domain"]]},{"id":"UniProt:P06179","l":"","na":2,"nb":2,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"]],"b":[["Pfam%3APF08884","Flagellin D3 domain"],["Pfam%3APF21504","Flagellin, barrel domain"]]},{"id":"GO:0005576","l":"extracellular region","na":1,"nb":472,"a":[["envelope/periplasmic_space.html","periplasmic space"]],"b":[["ComplexPortal%3ACPX-4984","Complement C1 complex, C1ra-C1sa variant"],["ComplexPortal%3ACPX-4985","Complement C1 complex, C1rb-C1sb variant"],["ComplexPortal%3ACPX-1920","Complement C1 complex"],["ComplexPortal%3ACPX-1919","Complement component C1q complex"],["ComplexPortal%3ACPX-4981","Complement component C1q complex"],["ComplexPortal%3ACPX-7321","Crotoxin complex, aCA1/2/4-bCA1-CBa variant"]]},{"id":"GO:0003735","l":"structural constituent of ribosome","na":1,"nb":466,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["GO%3A0003735","structural constituent of ribosome"],["NCBIfam%3ANF004951","30S ribosomal protein S1"],["NCBIfam%3ANF004954","30S ribosomal protein S1"],["NCBIfam%3ANF004955","30S ribosomal protein S1"],["NCBIfam%3ATIGR00717","30S ribosomal protein S1"],["NCBIfam%3ANF001861","30S ribosomal protein S10"]]},{"id":"GO:0005829","l":"cytosol","na":1,"nb":457,"a":[["other/chaperonin_containing_t_complex.html","chaperonin-containing T-complex"]],"b":[["ComplexPortal%3ACPX-9082","19S-20S-PA28-alphabeta hybrid proteasome complex"],["ComplexPortal%3ACPX-9085","19S-20S-PA28-gamma hybrid proteasome complex"],["ComplexPortal%3ACPX-26562","Anamorsin-NDOR1 complex"],["ComplexPortal%3ACPX-1848","ATG12-ATG5 complex"],["ComplexPortal%3ACPX-3864","ATG12-ATG5 complex"],["ComplexPortal%3ACPX-132","BAT3 complex"]]},{"id":"GO:0006412","l":"translation","na":1,"nb":455,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["GO%3A0002181","cytoplasmic translation"],["GO%3A0032543","mitochondrial translation"],["GO%3A0032544","plastid translation"],["GO%3A0140241","translation at synapse"],["GO%3A0006412","translation"],["Reactome%3AR-HSA-72766","Translation"]]},{"id":"GO:0071944","l":"cell periphery","na":1,"nb":440,"a":[["envelope/plasma_membrane.html","plasma membrane"]],"b":[["GO%3A0071944","cell periphery"],["PANTHER%3APTHR31468","1,3-BETA-GLUCANOSYLTRANSFERASE GAS1"],["PANTHER%3APTHR28145","12 KDA HEAT SHOCK PROTEIN"],["PANTHER%3APTHR42755","3-DEOXY-MANNO-OCTULOSONATE CYTIDYLYLTRANSFERASE"],["PANTHER%3APTHR46574","43 KDA RECEPTOR-ASSOCIATED PROTEIN OF THE SYNAPSE"],["PANTHER%3APTHR15182","A-KINASE ANCHOR PROTEIN 5-RELATED"]]},{"id":"GO:0055085","l":"transmembrane transport","na":1,"nb":439,"a":[["envelope/plasma_membrane.html","plasma membrane"]],"b":[["ComplexPortal%3ACPX-271","5-hydroxytryptamine-3A/B receptor complex"],["ComplexPortal%3ACPX-275","5-hydroxytryptamine-3A/B receptor complex"],["ComplexPortal%3ACPX-277","5-hydroxytryptamine-3A/B receptor complex"],["ComplexPortal%3ACPX-276","5-hydroxytryptamine-3A/C receptor complex"],["ComplexPortal%3ACPX-272","5-hydroxytryptamine-3A/D receptor complex"],["ComplexPortal%3ACPX-273","5-hydroxytryptamine-3A/E receptor complex"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":1,"nb":396,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29033","requires iron(2+)"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.11","glucoside 3-dehydrogenase (cytochrome c)"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.2.3","L-lactate dehydrogenase (cytochrome)"],["EC%3A1.1.2.4","D-lactate dehydrogenase (cytochrome)"]]},{"id":"GO:0016887","l":"ATP hydrolysis activity","na":1,"nb":375,"a":[["other/escrt_iv_complex.html","ESCRT IV complex"]],"b":[["RHEA%3A13065","ATP + H2O = ADP + phosphate + H(+)"],["ComplexPortal%3ACPX-2262","26S proteasome complex"],["ComplexPortal%3ACPX-5993","26S proteasome complex"],["ComplexPortal%3ACPX-4314","Arabinose ABC transporter complex"],["ComplexPortal%3ACPX-6307","ATP10A-CDC50A P4-ATPase complex"],["ComplexPortal%3ACPX-6308","ATP10B-CDC50A P4-ATPase complex"]]},{"id":"GO:1902494","l":"catalytic complex","na":1,"nb":320,"a":[["other/exodeoxyribonuclease_v_complex.html","exodeoxyribonuclease V complex"]],"b":[["ComplexPortal%3ACPX-2581","2-(3-amino-3-carboxypropyl)histidine synthase complex"],["ComplexPortal%3ACPX-7849","2-(3-amino-3-carboxypropyl)histidine synthase complex"],["ComplexPortal%3ACPX-7850","2-(3-amino-3-carboxypropyl)histidine synthase complex"],["ComplexPortal%3ACPX-2833","Camalexin biosynthetic metabolon complex"],["ComplexPortal%3ACPX-2345","Cholera toxin"],["ComplexPortal%3ACPX-944","DNA (cytosine-5)-methyltransferase 3A complex"]]},{"id":"GO:0016192","l":"vesicle-mediated transport","na":1,"nb":172,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"]],"b":[["ComplexPortal%3ACPX-2510","Adaptor complex AP-1"],["ComplexPortal%3ACPX-26626","Adaptor complex AP-2"],["ComplexPortal%3ACPX-2725","Adaptor complex AP-2"],["ComplexPortal%3ACPX-26627","Adaptor complex AP-3"],["ComplexPortal%3ACPX-2727","Adaptor complex AP-3"],["ComplexPortal%3ACPX-5149","AP-2 Adaptor complex, alpha1 variant"]]},{"id":"GO:0003887","l":"DNA-directed DNA polymerase activity","na":1,"nb":153,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"]],"b":[["EC%3A2.7.7.7","DNA-directed DNA polymerase"],["ComplexPortal%3ACPX-1556","CMG-Pol epsilon complex"],["ComplexPortal%3ACPX-2097","DNA polymerase delta complex"],["ComplexPortal%3ACPX-2098","DNA polymerase delta complex"],["ComplexPortal%3ACPX-2099","DNA polymerase delta complex"],["ComplexPortal%3ACPX-2100","DNA polymerase delta complex"]]},{"id":"GO:0006364","l":"rRNA processing","na":1,"nb":139,"a":[["other/nucleolus.html","nucleolus"]],"b":[["ComplexPortal%3ACPX-44","LSM2-8 complex"],["ComplexPortal%3ACPX-885","MTERF4-NSUN4 mitochondrial ribosomal assembly complex"],["ComplexPortal%3ACPX-1862","PeBoW complex"],["ComplexPortal%3ACPX-2846","PeBoW complex"],["GO%3A1901259","chloroplast rRNA processing"],["GO%3A0000450","cleavage of bicistronic rRNA transcript (SSU-rRNA, LSU-rRNA)"]]},{"id":"GO:0006396","l":"RNA processing","na":1,"nb":131,"a":[["ribonucleoprotein/exosome_rnase_complex.html","exosome (RNase complex)"]],"b":[["ComplexPortal%3ACPX-603","Cytoplasmic exosome complex, DIS3 variant"],["ComplexPortal%3ACPX-600","Cytoplasmic exosome complex, DIS3L-EXOSC10 variant"],["ComplexPortal%3ACPX-601","Cytoplasmic exosome complex, Dis3l-Exosc10 variant"],["ComplexPortal%3ACPX-592","Cytoplasmic exosome complex, DIS3L variant"],["ComplexPortal%3ACPX-596","Cytoplasmic exosome complex, Dis3l variant"],["ComplexPortal%3ACPX-593","Exosome complex, DIS3 variant"]]},{"id":"GO:0006457","l":"protein folding","na":1,"nb":129,"a":[["other/chaperonin_containing_t_complex.html","chaperonin-containing T-complex"]],"b":[["ComplexPortal%3ACPX-2156","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-2772","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-6030","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-2113","GroEL-GroES complex"],["ComplexPortal%3ACPX-1671","Prefoldin co-chaperone complex"],["ComplexPortal%3ACPX-2389","Prefoldin co-chaperone complex"]]},{"id":"GO:0003697","l":"single-stranded DNA binding","na":1,"nb":119,"a":[["other/single_stranded_dna_binding_protein_complex.html","single-stranded DNA-binding protein complex"]],"b":[["ComplexPortal%3ACPX-2363","BCDX2 complex"],["ComplexPortal%3ACPX-1005","Cascade complex"],["ComplexPortal%3ACPX-2671","CMG helicase complex"],["ComplexPortal%3ACPX-297","CMG helicase complex"],["ComplexPortal%3ACPX-4526","CMG helicase complex"],["ComplexPortal%3ACPX-4541","CMG helicase complex"]]},{"id":"GO:1990234","l":"transferase complex","na":1,"nb":109,"a":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]],"b":[["ComplexPortal%3ACPX-1848","ATG12-ATG5 complex"],["ComplexPortal%3ACPX-3864","ATG12-ATG5 complex"],["ComplexPortal%3ACPX-356","ATG5-ATG12 complex"],["ComplexPortal%3ACPX-357","Atg5-Atg12 complex"],["ComplexPortal%3ACPX-6231","Coagulation factor XIIIa complex"],["ComplexPortal%3ACPX-2634","Dha Kinase"]]},{"id":"GO:0005694","l":"chromosome","na":1,"nb":101,"a":[["other/nuclear_chromosome.html","nuclear chromosome"]],"b":[["ComplexPortal%3ACPX-26662","SPO11 DNA endo-reduplication complex"],["ComplexPortal%3ACPX-26657","SPO11 meiotic recombination initiation complex"],["ComplexPortal%3ACPX-26658","SPO11 meiotic recombination initiation complex"],["ComplexPortal%3ACPX-26659","SPO11 meiotic recombination initiation complex"],["ComplexPortal%3ACPX-26664","SPO11, meiotic recombination initiation complex"],["ComplexPortal%3ACPX-3388","Synaptonemal complex"]]},{"id":"GO:0015986","l":"proton motive force-driven ATP synthesis","na":1,"nb":96,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-25764","Mitochondrial proton translocating ATP synthase complex"],["ComplexPortal%3ACPX-3281","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-6151","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-8618","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-8619","Mitochondrial proton-transporting ATP synthase complex, testis-specific variant"],["GO%3A0015986","proton motive force-driven ATP synthesis"]]},{"id":"NCBITaxon:2","l":"Bacteria","na":89,"nb":1,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2","Bacteria orthologous groups (OrthoDB)"]]},{"id":"GO:0051301","l":"cell division","na":1,"nb":86,"a":[["division_machinery/divisome_complex.html","divisome complex"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["ComplexPortal%3ACPX-5782","Tol-Pal cell envelope complex"],["GO%3A0090510","anticlinal cell division"],["GO%3A0008356","asymmetric cell division"],["GO%3A0007114","cell budding"],["GO%3A0051301","cell division"]]},{"id":"GO:0030254","l":"protein secretion by the type III secretion system","na":1,"nb":85,"a":[["secretion_system/type_iii_protein_secretion_system_complex.html","type III protein secretion system complex"]],"b":[["ComplexPortal%3ACPX-5885","Flagellar export complex"],["GO%3A0030254","protein secretion by the type III secretion system"],["NCBIfam%3ANF041307","AvrBs1/Avra family type III secretion system effector"],["NCBIfam%3ATIGR02501","EscE/YscE/SsaE family type III secretion system needle protein co-chaperone"],["NCBIfam%3ANF005535","flagellar protein export ATPase FliI"],["NCBIfam%3ANF006290","flagellar protein export ATPase FliI"]]},{"id":"GO:0006401","l":"RNA catabolic process","na":1,"nb":76,"a":[["ribonucleoprotein/exosome_rnase_complex.html","exosome (RNase complex)"]],"b":[["ComplexPortal%3ACPX-603","Cytoplasmic exosome complex, DIS3 variant"],["ComplexPortal%3ACPX-600","Cytoplasmic exosome complex, DIS3L-EXOSC10 variant"],["ComplexPortal%3ACPX-601","Cytoplasmic exosome complex, Dis3l-Exosc10 variant"],["ComplexPortal%3ACPX-592","Cytoplasmic exosome complex, DIS3L variant"],["ComplexPortal%3ACPX-596","Cytoplasmic exosome complex, Dis3l variant"],["ComplexPortal%3ACPX-2596","Cytoplasmic exosome"]]},{"id":"GO:0048193","l":"Golgi vesicle transport","na":1,"nb":70,"a":[["other/cog_complex.html","COG complex"]],"b":[["GO%3A0034498","early endosome to Golgi transport"],["GO%3A0006888","endoplasmic reticulum to Golgi vesicle-mediated transport"],["GO%3A0048193","Golgi vesicle transport"],["GO%3A0006891","intra-Golgi vesicle-mediated transport"],["GO%3A0034499","late endosome to Golgi transport"],["GO%3A0006892","post-Golgi vesicle-mediated transport"]]},{"id":"CHEBI:15422","l":"ATP","na":1,"nb":68,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15422","requires ATP"],["ARO%3A3002628","aad(6)"],["ARO%3A3002601","aadA"],["ARO%3A3004692","aadA10"],["ARO%3A3002611","aadA11"],["ARO%3A3002612","aadA12"]]},{"id":"NCBITaxon:246196","l":"Mycolicibacterium smegmatis (strain ATCC 700084 / mc(2)155)","na":1,"nb":66,"a":[["secretion_system/esx_3_type_vii_secretion_system_membrane_complex.html","ESX-3 type VII secretion system membrane complex"]],"b":[["Pfam%3APF12806","Acetyl-CoA dehydrogenase C-terminal like"],["Pfam%3APF12897","Aspartate amino-transferase"],["Pfam%3APF05088","Bacterial NAD-glutamate dehydrogenase, catalytic domain"],["Pfam%3APF26519","Biotin synthase auxiliary protein family"],["Pfam%3APF21095","CarD, C-terminal domain"],["Pfam%3APF24607","Arabinofuranosyltransferase D, third carbohydrate binding module"]]},{"id":"GO:0006935","l":"chemotaxis","na":1,"nb":64,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009454","aerotaxis"]]},{"id":"GO:0031012","l":"extracellular matrix","na":1,"nb":64,"a":[["other/holdfast.html","holdfast"]],"b":[["ComplexPortal%3ACPX-461","155 kDa platelet multimerin complex"],["ComplexPortal%3ACPX-960","Collagen type II trimer"],["ComplexPortal%3ACPX-1749","Collagen type X trimer"],["ComplexPortal%3ACPX-2971","Collagen type X trimer"],["ComplexPortal%3ACPX-1750","Collagen type XI trimer variant 1"],["ComplexPortal%3ACPX-2975","Collagen type XI trimer variant 1"]]},{"id":"GO:1990204","l":"oxidoreductase complex","na":1,"nb":63,"a":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"]],"b":[["ComplexPortal%3ACPX-1020","BLI-3/DOXA-1/TSP-15 dual oxidase complex"],["ComplexPortal%3ACPX-6573","L-lactate dehydrogenase A complex"],["ComplexPortal%3ACPX-6599","L-lactate dehydrogenase B complex"],["ComplexPortal%3ACPX-6602","L-lactate dehydrogenase C complex"],["ComplexPortal%3ACPX-6598","L-lactate dehydrogenase complex, A1B3 variant"],["ComplexPortal%3ACPX-6594","L-lactate dehydrogenase complex, A2B2 variant"]]},{"id":"GO:0015629","l":"actin cytoskeleton","na":1,"nb":61,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"]],"b":[["ComplexPortal%3ACPX-2586","Actin-related protein 2/3 complex, ARPC1A-ACTR3-ARPC5 variant"],["ComplexPortal%3ACPX-2592","Actin-related protein 2/3 complex, ARPC1A-ACTR3-ARPC5L variant"],["ComplexPortal%3ACPX-2490","Actin-related protein 2/3 complex, ARPC1A-ACTR3B-ARPC5 variant"],["ComplexPortal%3ACPX-2579","Actin-related protein 2/3 complex, ARPC1B-ACTR3-ARPC5 variant"],["ComplexPortal%3ACPX-2663","Actin-related protein 2/3 complex, ARPC1B-ACTR3-ARPC5L variant"],["ComplexPortal%3ACPX-2583","Actin-related protein 2/3 complex, ARPC1B-ACTR3B-ARPC5 variant"]]},{"id":"InterPro:IPR001460","l":"Penicillin-binding protein, transpeptidase","na":1,"nb":61,"a":[["envelope/peptidoglycan_based_cell_wall.html","peptidoglycan-based cell wall"]],"b":[["GO%3A0009274","peptidoglycan-based cell wall"],["GO%3A0008800","beta-lactamase activity"],["GO%3A0008658","penicillin binding"],["GO%3A0008955","peptidoglycan glycosyltransferase activity"],["GO%3A0071972","peptidoglycan L,D-transpeptidase activity"],["GO%3A0009002","serine-type D-Ala-D-Ala carboxypeptidase activity"]]},{"id":"NCBITaxon:1111708","l":"Synechocystis sp. (strain ATCC 27184 / PCC 6803 / Kazusa)","na":1,"nb":61,"a":[["energy_complex/phycobilisome.html","phycobilisome"]],"b":[["Pfam%3APF07698","7TM receptor with intracellular HD hydrolase"],["Pfam%3APF07697","7TM-HD extracellular"],["Pfam%3APF11266","Long-chain fatty aldehyde decarbonylase"],["Pfam%3APF21571","Arginine dihydrolase ArgZ-like, C-terminal, first region"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF17886","HSP20-like domain found in ArsA"]]},{"id":"GO:0016197","l":"endosomal transport","na":1,"nb":60,"a":[["membrane_organelle/endosome.html","endosome"]],"b":[["ComplexPortal%3ACPX-479","Bloc-1 complex"],["ComplexPortal%3ACPX-11549","Huntingtin-HAP40 endosomal complex"],["ComplexPortal%3ACPX-26674","Huntingtin-HAP40 endosomal complex"],["ComplexPortal%3ACPX-1059","Sorf-1-Sorf-2 complex"],["ComplexPortal%3ACPX-2562","WASH complex"],["ComplexPortal%3ACPX-1173","WASH complex, variant WASH2P/WASHC2A"]]},{"id":"GO:1990904","l":"ribonucleoprotein complex","na":1,"nb":58,"a":[["ribonucleoprotein/signal_recognition_particle.html","signal recognition particle"]],"b":[["ComplexPortal%3ACPX-10181","Vault ribonucleoprotein complex"],["GO%3A0070993","cytosolic translation preinitiation complex"],["GO%3A0071204","histone pre-mRNA 3'end processing complex"],["GO%3A0033620","Mei2 nuclear dot complex"],["GO%3A0180053","mitochondrial translation preinitiation complex"],["GO%3A0043614","multi-eIF complex"]]},{"id":"GO:0008137","l":"NADH dehydrogenase (ubiquinone) activity","na":1,"nb":53,"a":[["energy_complex/respiratory_chain_complex_i.html","respiratory chain complex I"]],"b":[["EC%3A7.1.1.2","NADH:ubiquinone reductase (H(+)-translocating)"],["RHEA%3A29091","a ubiquinone + NADH + 5 H(+)(in) = a ubiquinol + NAD(+) + 4 H(+)(out)"],["ComplexPortal%3ACPX-266","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-577","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-8628","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-8638","Mitochondrial respiratory chain complex I, testis-specific variant"]]},{"id":"GO:0007005","l":"mitochondrion organization","na":1,"nb":50,"a":[["other/mitochondrial_prohibitin_complex.html","mitochondrial prohibitin complex"]],"b":[["ComplexPortal%3ACPX-3196","ERMES complex"],["ComplexPortal%3ACPX-1703","Prohibitin complex"],["ComplexPortal%3ACPX-4114","Prohibitin complex"],["ComplexPortal%3ACPX-5741","Prohibitin complex"],["ComplexPortal%3ACPX-5743","Prohibitin complex"],["GO%3A0008637","apoptotic mitochondrial changes"]]},{"id":"NCBITaxon:2759","l":"Eukaryota","na":49,"nb":1,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"],["cytoskeleton/conoid.html","conoid"],["cytoskeleton/cytoophidium.html","cytoophidium"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2759","Eukaryota orthologous groups (OrthoDB)"]]},{"id":"GO:0006897","l":"endocytosis","na":1,"nb":44,"a":[["membrane_organelle/endocytic_vesicle.html","endocytic vesicle"]],"b":[["ComplexPortal%3ACPX-5322","Endosomal SNARE complex TLG2-VTI1-TLG1-SNC1"],["ComplexPortal%3ACPX-5321","Endosomal SNARE complex TLG2-VTI1-TLG1-SNC2"],["ComplexPortal%3ACPX-4024","MTM6-MTM9 myotubularin lipid phosphatase complex"],["ComplexPortal%3ACPX-1500","Myosin class I complex, MYO3 variant"],["ComplexPortal%3ACPX-1470","Myosin class I complex, MYO5 variant"],["ComplexPortal%3ACPX-426","PAN1 actin cytoskeleton-regulatory complex"]]},{"id":"GO:0042254","l":"ribosome biogenesis","na":1,"nb":44,"a":[["other/nucleolus.html","nucleolus"]],"b":[["ComplexPortal%3ACPX-8940","Ribosome biogenesis complex"],["GO%3A0042254","ribosome biogenesis"],["NCBIfam%3ANF012679","50S ribosomal protein L10"],["NCBIfam%3ANF016308","Gar1/Naf1 RNA binding region"],["NCBIfam%3ANF016057","nucleolar RNA-binding Nop10p family protein"],["NCBIfam%3ATIGR01575","ribosomal protein S18-alanine N-acetyltransferase"]]},{"id":"NCBITaxon:243277","l":"Vibrio cholerae serotype O1 (strain ATCC 39315 / El Tor Inaba N16961)","na":1,"nb":44,"a":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"]],"b":[["IDPO%3A0000011","disorder to order"],["IDPO%3A0000014","order to disorder"],["Pfam%3APF16671","Actin cross-linking domain"],["Pfam%3APF00842","Alanine racemase, C-terminal domain"],["Pfam%3APF06228","Haem utilisation ChuX/HutX"],["Pfam%3APF19425","Csd3 second domain"]]},{"id":"GO:0045271","l":"respiratory chain complex I","na":1,"nb":43,"a":[["energy_complex/respiratory_chain_complex_i.html","respiratory chain complex I"]],"b":[["ComplexPortal%3ACPX-266","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-577","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-8628","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-8638","Mitochondrial respiratory chain complex I, testis-specific variant"],["ComplexPortal%3ACPX-243","Respiratory chain complex I"],["GO%3A0045271","respiratory chain complex I"]]},{"id":"GO:0004129","l":"cytochrome-c oxidase activity","na":1,"nb":41,"a":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]],"b":[["EC%3A7.1.1.9","cytochrome-c oxidase"],["METPO%3A1007086","oxidase negative"],["METPO%3A1007085","oxidase positive"],["RHEA%3A11436","4 Fe(II)-[cytochrome c] + O2 + 8 H(+)(in) = 4 Fe(III)-[cytochrome c] + 2 H2O + 4 H(+)(out)"],["ComplexPortal%3ACPX-1721","Mitochondrial respiratory chain complex IV, COX5A variant"],["ComplexPortal%3ACPX-1722","Mitochondrial respiratory chain complex IV, COX5B variant"]]},{"id":"GO:0000045","l":"autophagosome assembly","na":1,"nb":40,"a":[["other/phagophore_assembly_site.html","phagophore assembly site"]],"b":[["ComplexPortal%3ACPX-3863","atg-5-atg-12-atg-16.1-atg-16.2 complex"],["ComplexPortal%3ACPX-3865","atg-5-atg-12-atg-16.1 complex"],["ComplexPortal%3ACPX-3866","atg-5-atg-12-atg-16.2 complex"],["ComplexPortal%3ACPX-2745","ATG1 protein kinase complex"],["ComplexPortal%3ACPX-1676","ATG1/ULK1 protein kinase complex"],["ComplexPortal%3ACPX-1849","ATG12-ATG5-ATG16 complex"]]},{"id":"GO:0019866","l":"organelle inner membrane","na":1,"nb":40,"a":[["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"]],"b":[["GO%3A0005743","mitochondrial inner membrane"],["GO%3A0005637","nuclear inner membrane"],["GO%3A0019866","organelle inner membrane"],["GO%3A0009528","plastid inner membrane"],["InterPro%3AIPR002361","Antenna complex, alpha subunit conserved site"],["InterPro%3AIPR010974","Phosphotransferase system, N-acetylglucosamine-specific IIBC component"]]},{"id":"GO:0036503","l":"ERAD pathway","na":1,"nb":39,"a":[["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"]],"b":[["ComplexPortal%3ACPX-6597","bZIP transcription factor complex, ATF6-XBP1"],["ComplexPortal%3ACPX-2946","CDC48-NPL4-UFD1 AAA ATPase complex"],["ComplexPortal%3ACPX-1323","CDC48-RAD23-UFD2 complex"],["ComplexPortal%3ACPX-2948","CUE1-UBC7 ubiquitin-conjugating enzyme complex"],["ComplexPortal%3ACPX-3074","Doa10 E3 ubiquitin ligase complex"],["ComplexPortal%3ACPX-7121","ERLIN1-ERLIN2 complex"]]},{"id":"NCBITaxon:2157","l":"Archaea","na":39,"nb":1,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2157","Archaea orthologous groups (OrthoDB)"]]},{"id":"CHEBI:17855","l":"triglyceride","na":1,"nb":34,"a":[["inclusion/lipid_droplet.html","lipid droplet"]],"b":[["EC%3A2.3.1.158","phospholipid:diacylglycerol acyltransferase"],["EC%3A2.3.1.77","triacylglycerol--sterol O-acyltransferase"],["EC%3A3.1.1.3","triacylglycerol lipase"],["EC%3A3.1.1.34","lipoprotein lipase"],["EC%3A3.1.1.79","hormone-sensitive lipase"],["RHEA%3A77987","9-hydroxy-octadecanoate + a triacylglycerol = 9-(acyloxy)-octadecanoate + a 1,3-diacylglycerol"]]},{"id":"GO:0030312","l":"external encapsulating structure","na":1,"nb":34,"a":[["envelope/glycocalyx.html","glycocalyx"]],"b":[["GO%3A0009279","cell outer membrane"],["GO%3A0005618","cell wall"],["GO%3A0140143","collagenous component of basement membrane"],["GO%3A0140152","collagenous component of interstitial matrix"],["GO%3A0042600","egg chorion"],["GO%3A0030312","external encapsulating structure"]]},{"id":"GO:0008608","l":"attachment of spindle microtubules to kinetochore","na":1,"nb":33,"a":[["other/dash_complex.html","DASH complex"]],"b":[["ComplexPortal%3ACPX-1156","Central kinetochore CTF19 complex"],["ComplexPortal%3ACPX-1187","COMA complex"],["ComplexPortal%3ACPX-1186","Kinetochore MIS12 complex"],["ComplexPortal%3ACPX-5643","Kinetochore MIS12 complex"],["ComplexPortal%3ACPX-5701","Kinetochore MIS12 complex"],["ComplexPortal%3ACPX-807","Kinetochore Mis12 complex"]]},{"id":"GO:0032040","l":"small-subunit processome","na":1,"nb":33,"a":[["other/nucleolus.html","nucleolus"]],"b":[["ComplexPortal%3ACPX-1604","Small ribosomal subunit processome"],["ComplexPortal%3ACPX-2511","Small ribosomal subunit processome"],["GO%3A0032040","small-subunit processome"],["NCBIfam%3ANF016770","Fcf1"],["InterPro%3AIPR013934","U3 small nucleolar RNA-associated protein 13, C-terminal"],["InterPro%3AIPR007319","WDR36/Utp21, C-terminal domain"]]},{"id":"GO:0006635","l":"fatty acid beta-oxidation","na":1,"nb":32,"a":[["membrane_organelle/peroxisomal_matrix.html","peroxisomal matrix"]],"b":[["ComplexPortal%3ACPX-3964","fadBA fatty acid oxidation complex, aerobic conditions"],["ComplexPortal%3ACPX-3966","fadJI fatty acid oxidation complex, anaerobic conditions"],["ComplexPortal%3ACPX-6245","Mitochondrial trifunctional enzyme complex"],["GO%3A0006635","fatty acid beta-oxidation"],["GO%3A0033539","fatty acid beta-oxidation using acyl-CoA dehydrogenase"],["GO%3A0033540","fatty acid beta-oxidation using acyl-CoA oxidase"]]},{"id":"GO:0015630","l":"microtubule cytoskeleton","na":1,"nb":32,"a":[["cytoskeleton/microtubule.html","microtubule"]],"b":[["ComplexPortal%3ACPX-116","Chromosomal passenger complex, AURKB variant"],["ComplexPortal%3ACPX-20753","Chromosomal passenger complex, AURKC variant"],["ComplexPortal%3ACPX-119","Chromosomal passenger complex"],["ComplexPortal%3ACPX-3461","Chromosomal passenger complex"],["ComplexPortal%3ACPX-6365","Katanin complex, KATNA1-KATNB1 variant"],["ComplexPortal%3ACPX-6366","Katanin complex, KATNA1-KATNBL1 variant"]]},{"id":"GO:0050524","l":"coenzyme-B sulfoethylthiotransferase activity","na":1,"nb":32,"a":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]],"b":[["EC%3A2.8.4.1","coenzyme-B sulfoethylthiotransferase"],["RHEA%3A12532","coenzyme B + methyl-coenzyme M = methane + coenzyme M-coenzyme B heterodisulfide"],["GO%3A0050524","coenzyme-B sulfoethylthiotransferase activity"],["NCBIfam%3ATIGR03256","coenzyme-B sulfoethylthiotransferase subunit alpha"],["NCBIfam%3ATIGR03257","coenzyme-B sulfoethylthiotransferase subunit beta"],["NCBIfam%3ANF014313","coenzyme-B sulfoethylthiotransferase subunit gamma"]]},{"id":"UniProt:P07363","l":"","na":1,"nb":32,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["ComplexPortal%3ACPX-1077","Chemotaxis phosphorelay complex CheA-CheY"],["GO%3A0098561","methyl accepting chemotaxis protein complex"],["GO%3A0004673","protein histidine kinase activity"],["GO%3A0009454","aerotaxis"],["GO%3A0071977","bacterial-type flagellum-dependent swimming motility"],["GO%3A0051649","establishment of localization in cell"]]},{"id":"GO:0009360","l":"DNA polymerase III complex","na":1,"nb":31,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"]],"b":[["ComplexPortal%3ACPX-1924","DNA polymerase III holoenzyme complex"],["GO%3A0009360","DNA polymerase III complex"],["NCBIfam%3ANF014787","DNA polymerase III beta subunit, C-terminal domain"],["NCBIfam%3ANF012915","DNA polymerase III beta subunit, N-terminal domain"],["NCBIfam%3ANF017911","DNA polymerase III, delta subunit"],["NCBIfam%3ATIGR01405","DNA polymerase III subunit alpha"]]},{"id":"GO:0004298","l":"threonine-type endopeptidase activity","na":1,"nb":30,"a":[["other/proteasome_core_complex.html","proteasome core complex"]],"b":[["ComplexPortal%3ACPX-9082","19S-20S-PA28-alphabeta hybrid proteasome complex"],["ComplexPortal%3ACPX-9085","19S-20S-PA28-gamma hybrid proteasome complex"],["ComplexPortal%3ACPX-9021","20S spermatoproteasome complex"],["ComplexPortal%3ACPX-9004","20S thymoproteasome complex"],["ComplexPortal%3ACPX-2262","26S proteasome complex"],["ComplexPortal%3ACPX-5993","26S proteasome complex"]]},{"id":"GO:0006887","l":"exocytosis","na":1,"nb":30,"a":[["other/exocyst.html","exocyst"]],"b":[["GO%3A0160192","autophagosome-dependent secretion"],["GO%3A0045054","constitutive secretory pathway"],["GO%3A0098967","exocytic insertion of neurotransmitter receptor to postsynaptic membrane"],["GO%3A0006887","exocytosis"],["GO%3A1990182","exosomal secretion"],["GO%3A0045055","regulated exocytosis"]]},{"id":"GO:0090148","l":"membrane fission","na":1,"nb":30,"a":[["other/escrt_iii_complex.html","ESCRT III complex"]],"b":[["ComplexPortal%3ACPX-2452","ESCRT-0 complex"],["ComplexPortal%3ACPX-2825","ESCRT-0 complex, STAM variant"],["ComplexPortal%3ACPX-7143","ESCRT-0 complex, STAM2 variant"],["ComplexPortal%3ACPX-7162","ESCRT-I complex, VPS37A-MVB12A variant"],["ComplexPortal%3ACPX-7146","ESCRT-I complex, VPS37A-MVB12B variant"],["ComplexPortal%3ACPX-7181","ESCRT-I complex, VPS37A-UBAP1 variant"]]},{"id":"GO:0099513","l":"polymeric cytoskeletal fiber","na":1,"nb":29,"a":[["cytoskeleton/microtubule.html","microtubule"]],"b":[["GO%3A0005884","actin filament"],["GO%3A0005882","intermediate filament"],["GO%3A0005874","microtubule"],["GO%3A0001520","outer dense fiber"],["GO%3A0099513","polymeric cytoskeletal fiber"],["PANTHER%3APTHR12607","ADENOMATOUS POLYPOSIS COLI PROTEIN FAMILY"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":29,"a":[["spore/exosporium.html","exosporium"]],"b":[["Pfam%3APF09156","Anthrax toxin lethal factor, middle domain"],["Pfam%3APF08401","N-terminal domain of anti-restriction factor ArdC"],["Pfam%3APF07737","Anthrax toxin lethal factor, N- and C-terminal domain"],["Pfam%3APF27053","Bacillus anthracis plasmid pXO2 protein 26"],["Pfam%3APF13205","Bacterial Ig-like domain"],["Pfam%3APF17475","Clostridial binary toxin B/anthrax toxin PA domain 2"]]},{"id":"GO:1905370","l":"serine-type endopeptidase complex","na":1,"nb":28,"a":[["other/mitochondrial_inner_membrane_peptidase_complex.html","mitochondrial inner membrane peptidase complex"]],"b":[["ComplexPortal%3ACPX-6224","Active Protein C complex"],["ComplexPortal%3ACPX-6222","alpha-thrombin complex"],["ComplexPortal%3ACPX-6181","CL-LK-MASP1 lectin-protease complex"],["ComplexPortal%3ACPX-6240","CL-LK-MASP2 lectin-protease complex"],["ComplexPortal%3ACPX-6221","Coagulation factor Va-Xa complex"],["ComplexPortal%3ACPX-279","Coagulation factor VIIa - tissue factor complex"]]},{"id":"Pfam:PF00015","l":"Methyl-accepting chemotaxis protein (MCP) signalling domain","na":1,"nb":28,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["GO%3A0009454","aerotaxis"],["CDD%3Acd01068","globin_sensor"],["CDD%3Acd19411","MCP2201-like_sensor"],["CDD%3Acd11386","MCP_signal"],["InterPro%3AIPR007891","CHASE3"],["InterPro%3AIPR024478","Chemotaxis methyl-accepting receptor HlyB-like, 4HB MCP domain"]]},{"id":"GO:0015627","l":"type II protein secretion system complex","na":1,"nb":26,"a":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"]],"b":[["GO%3A0015627","type II protein secretion system complex"],["NCBIfam%3ATIGR02533","type II secretion system ATPase GspE"],["NCBIfam%3ATIGR02120","type II secretion system inner membrane protein GspF"],["NCBIfam%3ATIGR01710","type II secretion system major pseudopilin GspG"],["NCBIfam%3ATIGR01708","type II secretion system minor pseudopilin GspH"],["NCBIfam%3ATIGR01707","type II secretion system minor pseudopilin GspI"]]},{"id":"UniProt:P0AES6","l":"","na":1,"nb":26,"a":[["other/dna_gyrase_complex.html","DNA gyrase complex"]],"b":[["ComplexPortal%3ACPX-2177","GyrA-GyrB DNA Gyrase complex"],["GO%3A0009330","DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) complex"],["GO%3A0034335","DNA negative supercoiling activity"],["GO%3A0003918","DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) activity"],["NCBIfam%3ANF004189","DNA gyrase subunit B"],["NCBIfam%3ANF011501","DNA gyrase subunit B"]]},{"id":"GO:0005885","l":"Arp2/3 protein complex","na":1,"nb":25,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"]],"b":[["ComplexPortal%3ACPX-2586","Actin-related protein 2/3 complex, ARPC1A-ACTR3-ARPC5 variant"],["ComplexPortal%3ACPX-2592","Actin-related protein 2/3 complex, ARPC1A-ACTR3-ARPC5L variant"],["ComplexPortal%3ACPX-2490","Actin-related protein 2/3 complex, ARPC1A-ACTR3B-ARPC5 variant"],["ComplexPortal%3ACPX-2579","Actin-related protein 2/3 complex, ARPC1B-ACTR3-ARPC5 variant"],["ComplexPortal%3ACPX-2663","Actin-related protein 2/3 complex, ARPC1B-ACTR3-ARPC5L variant"],["ComplexPortal%3ACPX-2583","Actin-related protein 2/3 complex, ARPC1B-ACTR3B-ARPC5 variant"]]},{"id":"GO:0016163","l":"nitrogenase activity","na":1,"nb":25,"a":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"]],"b":[["EC%3A1.18.6.1","nitrogenase"],["EC%3A1.18.6.2","vanadium-dependent nitrogenase"],["RHEA%3A21448","N2 + 8 reduced [2Fe-2S]-[ferredoxin] + 16 ATP + 16 H2O = H2 + 8 oxidized [2Fe-2S]-[ferredoxin] + 2 NH4(+) + 16 ADP + 16 phosphate + 6 H(+)"],["GO%3A0016163","nitrogenase activity"],["NCBIfam%3ATIGR02931","Fe-only nitrogenase subunit beta"],["NCBIfam%3ATIGR02929","Fe-only nitrogenase subunit delta"]]},{"id":"GO:1902555","l":"endoribonuclease complex","na":1,"nb":25,"a":[["ribonucleoprotein/ribonuclease_mrp_complex.html","ribonuclease MRP complex"]],"b":[["ComplexPortal%3ACPX-4629","C3PO endoribonuclease complex"],["ComplexPortal%3ACPX-890","C3PO endoribonuclease complex"],["ComplexPortal%3ACPX-5785","MERS-CoV NSP15 complex"],["ComplexPortal%3ACPX-2240","Mitochondrial RNase Z complex"],["ComplexPortal%3ACPX-8565","PUCH ribonuclease complex, slfl-3 variant"],["ComplexPortal%3ACPX-8569","PUCH ribonuclease complex, slfl-4 variant"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":1,"nb":25,"a":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"]],"b":[["Pfam%3APF13372","Alginate export"],["Pfam%3APF25965","ALG44 beta-barrel domain"],["Pfam%3APF25964","ALG44, barrel-sandwich hybrid domain"],["Pfam%3APF16844","Dinitrogenase iron-molybdenum cofactor, N-terminal"],["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"]]},{"id":"GO:0006893","l":"Golgi to plasma membrane transport","na":1,"nb":24,"a":[["other/exomer_complex.html","exomer complex"]],"b":[["ComplexPortal%3ACPX-1719","Exomer complex"],["ComplexPortal%3ACPX-26504","Exomer complex"],["ComplexPortal%3ACPX-1365","Vesicular SNARE complex SSO1-SEC9-SNC1"],["ComplexPortal%3ACPX-5463","Vesicular SNARE complex SSO1-SEC9-SNC2"],["ComplexPortal%3ACPX-1369","Vesicular SNARE complex SSO2-SEC9-SNC1"],["ComplexPortal%3ACPX-5465","Vesicular SNARE complex SSO2-SEC9-SNC2"]]},{"id":"GO:0031968","l":"organelle outer membrane","na":1,"nb":24,"a":[["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"]],"b":[["GO%3A0009535","chloroplast thylakoid membrane"],["GO%3A0005741","mitochondrial outer membrane"],["GO%3A0005640","nuclear outer membrane"],["GO%3A0031968","organelle outer membrane"],["GO%3A0009527","plastid outer membrane"],["PANTHER%3APTHR37278","AUTOPHAGY-RELATED PROTEIN 33-RELATED"]]},{"id":"UniProt:P0AES4","l":"","na":1,"nb":24,"a":[["other/dna_gyrase_complex.html","DNA gyrase complex"]],"b":[["ComplexPortal%3ACPX-5906","CcdB-poisoned gyrase complex"],["ComplexPortal%3ACPX-2177","GyrA-GyrB DNA Gyrase complex"],["GO%3A0009330","DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) complex"],["GO%3A0008094","ATP-dependent activity, acting on DNA"],["GO%3A0034335","DNA negative supercoiling activity"],["GO%3A0003918","DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) activity"]]},{"id":"GO:0097729","l":"9+2 motile cilium","na":1,"nb":23,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["ComplexPortal%3ACPX-8161","Radial spoke complex, ciliiar variant"],["ComplexPortal%3ACPX-8163","Radial spoke complex, ciliiar variant"],["ComplexPortal%3ACPX-8162","Radial spoke complex, flagellar variant"],["ComplexPortal%3ACPX-8164","Radial spoke complex, flagellar variant"],["GO%3A0097729","9+2 motile cilium"],["GO%3A0097554","left anterior flagellum"]]},{"id":"GO:0000775","l":"chromosome, centromeric region","na":1,"nb":22,"a":[["other/cbf3_complex.html","CBF3 complex"]],"b":[["ComplexPortal%3ACPX-26413","CENP-A recruiting complex"],["ComplexPortal%3ACPX-3272","CENP-A recruiting complex"],["ComplexPortal%3ACPX-3273","CENP-A recruiting complex"],["GO%3A0000775","chromosome, centromeric region"],["GO%3A0000779","condensed chromosome, centromeric region"],["InterPro%3AIPR009361","Centromere/kinetochore protein zw10, N-terminal"]]},{"id":"GO:0006891","l":"intra-Golgi vesicle-mediated transport","na":1,"nb":22,"a":[["other/trappii_protein_complex.html","TRAPPII protein complex"]],"b":[["ComplexPortal%3ACPX-1939","TRAPP II complex"],["GO%3A0045057","cisternal progression"],["GO%3A0048219","inter-Golgi cisterna vesicle-mediated transport"],["GO%3A0006891","intra-Golgi vesicle-mediated transport"],["GO%3A0000301","retrograde transport, vesicle recycling within Golgi"],["InterPro%3AIPR012955","CASP, C-terminal"]]},{"id":"GO:0008121","l":"quinol-cytochrome-c reductase activity","na":1,"nb":22,"a":[["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"]],"b":[["EC%3A7.1.1.8","quinol--cytochrome-c reductase"],["RHEA%3A11484","a quinol + 2 Fe(III)-[cytochrome c](out) = a quinone + 2 Fe(II)-[cytochrome c](out) + 2 H(+)(out)"],["ComplexPortal%3ACPX-560","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-563","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-567","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-8730","Mitochondrial respiratory chain complex III"]]},{"id":"GO:0019953","l":"sexual reproduction","na":1,"nb":22,"a":[["membrane_organelle/micronucleus.html","micronucleus"]],"b":[["GO%3A0000747","conjugation with cellular fusion"],["GO%3A0000748","conjugation with mutual genetic exchange"],["GO%3A0019953","sexual reproduction"],["InterPro%3AIPR007689","A-alpha-Y mating type-dependent binding domain"],["PANTHER%3APTHR22655","ATP-DEPENDENT RNA HELICASE TDRD12-RELATED"],["PANTHER%3APTHR47193","CATION CHANNEL SPERM-ASSOCIATED PROTEIN 1"]]},{"id":"GO:0030286","l":"dynein complex","na":1,"nb":22,"a":[["cytoskeleton/axonemal_dynein_complex.html","axonemal dynein complex"]],"b":[["ComplexPortal%3ACPX-5699","Cytoplasmic dynein complex, variant 1"],["ComplexPortal%3ACPX-26357","Dynein-2 complex, light-chain variant 1"],["ComplexPortal%3ACPX-26360","Dynein-2 complex, light-chain variant 2"],["ComplexPortal%3ACPX-26361","Dynein-2 complex, light-chain variant 3"],["ComplexPortal%3ACPX-26362","Dynein-2 complex, light-chain variant 4"],["ComplexPortal%3ACPX-26363","Dynein-2 complex, light-chain variant 5"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":1,"nb":21,"a":[["membrane_organelle/trichocyst.html","trichocyst"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29108","requires calcium(2+)"],["EC%3A1.13.12.24","calcium-regulated photoprotein"],["EC%3A7.2.2.10","P-type Ca(2+) transporter"],["RHEA%3A72631","3 Li(+)(out) + Ca(2+)(in) = 3 Li(+)(in) + Ca(2+)(out)"],["RHEA%3A55884","[aequorin] + 3 Ca(2+) = [aequorin]--dioxetanone"],["RHEA%3A55888","[aequorin]--dioxetanone = excited state-[aequorin] + CO2"]]},{"id":"GO:0016682","l":"oxidoreductase activity, acting on diphenols and related substances as donors, oxygen as acceptor","na":1,"nb":21,"a":[["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]],"b":[["ComplexPortal%3ACPX-268","Cytochrome bd-I ubiquinol oxidase complex"],["ComplexPortal%3ACPX-269","Cytochrome bd-II ubiquinol oxidase complex"],["GO%3A0047561","3-hydroxyanthranilate oxidase activity"],["GO%3A0009916","alternative oxidase activity"],["GO%3A0004097","catechol oxidase activity"],["GO%3A0052716","hydroquinone:oxygen oxidoreductase activity"]]},{"id":"GO:0042729","l":"DASH complex","na":1,"nb":21,"a":[["other/dash_complex.html","DASH complex"]],"b":[["ComplexPortal%3ACPX-10081","DASH complex"],["ComplexPortal%3ACPX-1041","DASH complex"],["GO%3A0042729","DASH complex"],["PANTHER%3APTHR28200","DASH COMPLEX SUBUNIT ASK1"],["PANTHER%3APTHR28025","DASH COMPLEX SUBUNIT DAD1"],["PANTHER%3APTHR28036","DASH COMPLEX SUBUNIT DAD2"]]},{"id":"UniProt:P06710","l":"","na":1,"nb":21,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"]],"b":[["ComplexPortal%3ACPX-1926","DNA polymerase III clamp loader complex"],["GO%3A0043846","DNA polymerase III, clamp loader complex"],["GO%3A0009360","DNA polymerase III complex"],["GO%3A0044776","DNA polymerase III, core complex"],["GO%3A0003689","DNA clamp loader activity"],["GO%3A0030337","DNA polymerase processivity factor activity"]]},{"id":"GO:0008177","l":"succinate dehydrogenase (quinone) activity","na":1,"nb":20,"a":[["energy_complex/respiratory_chain_complex_ii_succinate_dehydrogenase.html","respiratory chain complex II (succinate dehydrogenase)"]],"b":[["EC%3A1.3.5.1","succinate dehydrogenase"],["RHEA%3A27834","a menaquinone + succinate = a menaquinol + fumarate"],["RHEA%3A40523","a quinone + succinate = fumarate + a quinol"],["RHEA%3A75711","a rhodoquinone + succinate = a rhodoquinol + fumarate"],["RHEA%3A13713","a ubiquinone + succinate = a ubiquinol + fumarate"],["ComplexPortal%3ACPX-561","Mitochondrial respiratory chain complex II"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":1,"nb":20,"a":[["envelope/s_layer.html","S-layer"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF27529","AMPT"],["Pfam%3APF24856","L-arabinose isomerase central domain"],["Pfam%3APF02610","L-arabinose isomerase N-terminal domain"],["Pfam%3APF11762","L-arabinose isomerase C-terminal domain"],["Pfam%3APF17727","CtsR C-terminal dimerization domain"]]},{"id":"GO:0000178","l":"exosome (RNase complex)","na":1,"nb":19,"a":[["ribonucleoprotein/exosome_rnase_complex.html","exosome (RNase complex)"]],"b":[["ComplexPortal%3ACPX-603","Cytoplasmic exosome complex, DIS3 variant"],["ComplexPortal%3ACPX-2596","Cytoplasmic exosome"],["ComplexPortal%3ACPX-593","Exosome complex, DIS3 variant"],["ComplexPortal%3ACPX-598","Exosome complex, Dis3 variant"],["ComplexPortal%3ACPX-2595","Nuclear exosome"],["ComplexPortal%3ACPX-599","Nuclear/nucleolar exosome complex, DIS3-RRP6 variant"]]},{"id":"GO:0030677","l":"ribonuclease P complex","na":1,"nb":19,"a":[["ribonucleoprotein/dimeric_ribonuclease_p_complex.html","dimeric ribonuclease P complex"]],"b":[["GO%3A0030680","dimeric ribonuclease P complex"],["GO%3A0030678","mitochondrial ribonuclease P complex"],["GO%3A0030681","multimeric ribonuclease P complex"],["GO%3A0030677","ribonuclease P complex"],["NCBIfam%3ANF046110","ribonuclease P protein component 1"],["NCBIfam%3ANF046108","ribonuclease P protein component 3"]]},{"id":"GO:0044232","l":"organelle membrane contact site","na":1,"nb":19,"a":[["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"]],"b":[["GO%3A0140284","endoplasmic reticulum-endosome membrane contact site"],["GO%3A0140268","endoplasmic reticulum-plasma membrane contact site"],["GO%3A0160258","endoplasmic reticulum-trans-Golgi network membrane contact site"],["GO%3A0098853","endoplasmic reticulum-vacuole membrane contact site"],["GO%3A0044233","mitochondria-associated endoplasmic reticulum membrane contact site"],["GO%3A0044284","mitochondrial crista junction"]]},{"id":"GO:0045277","l":"respiratory chain complex IV","na":1,"nb":19,"a":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]],"b":[["ComplexPortal%3ACPX-1721","Mitochondrial respiratory chain complex IV, COX5A variant"],["ComplexPortal%3ACPX-1722","Mitochondrial respiratory chain complex IV, COX5B variant"],["ComplexPortal%3ACPX-6123","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-8620","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-9641","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-8621","Mitochondrial respiratory chain complex IV, testis-specific variant"]]},{"id":"GO:0070069","l":"cytochrome complex","na":1,"nb":19,"a":[["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]],"b":[["ComplexPortal%3ACPX-268","Cytochrome bd-I ubiquinol oxidase complex"],["ComplexPortal%3ACPX-269","Cytochrome bd-II ubiquinol oxidase complex"],["GO%3A0009512","cytochrome b6f complex"],["GO%3A0070069","cytochrome complex"],["GO%3A0009319","cytochrome o ubiquinol oxidase complex"],["GO%3A0045275","respiratory chain complex III"]]},{"id":"GO:0099512","l":"supramolecular fiber","na":1,"nb":19,"a":[["cytoskeleton/cytoophidium.html","cytoophidium"]],"b":[["GO%3A0098647","collagen beaded filament"],["GO%3A0043292","contractile muscle fiber"],["GO%3A0097268","cytoophidium"],["GO%3A0071953","elastic fiber"],["GO%3A0061800","fibronectin fibril"],["GO%3A0061836","intranuclear rod"]]},{"id":"InterPro:IPR006317","l":"Ubiquinol-cytochrome c reductase, iron-sulphur subunit","na":1,"nb":19,"a":[["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"]],"b":[["GO%3A0008121","quinol-cytochrome-c reductase activity"],["NCBIfam%3ATIGR01416","ubiquinol-cytochrome c reductase iron-sulfur subunit"],["CDD%3Acd03470","Rieske_cytochrome_bc1"],["InterPro%3AIPR004192","Cytochrome b-c1 complex subunit Rieske, transmembrane domain"],["InterPro%3AIPR017941","Rieske [2Fe-2S] iron-sulphur domain"],["InterPro%3AIPR005805","Rieske iron-sulphur protein, C-terminal"]]},{"id":"NCBITaxon:330779","l":"Sulfolobus acidocaldarius (strain ATCC 33909 / DSM 639 / JCM 8929 / NBRC 15157 / NCIMB 11770)","na":1,"nb":19,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"]],"b":[["Pfam%3APF12846","AAA-like domain"],["Pfam%3APF27338","Cytochrome b558/566 subunit B"],["Pfam%3APF18822","CdvA-like coiled-coil domain"],["Pfam%3APF27303","Cell division protein CdvB, C-terminal HTH domain"],["Pfam%3APF27251","DNA import protein CedA1"],["Pfam%3APF18533","Domain of unknown function (DUF5622)"]]},{"id":"UniProt:P02942","l":"","na":1,"nb":19,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["GO%3A0098561","methyl accepting chemotaxis protein complex"],["GO%3A0009593","detection of chemical stimulus"],["GO%3A1902021","regulation of bacterial-type flagellum-dependent cell motility"],["NCBIfam%3ANF011615","methyl-accepting chemotaxis protein"],["CDD%3Acd06225","HAMP"],["CDD%3Acd19407","Tar_Tsr_sensor"]]},{"id":"UniProt:P07017","l":"","na":1,"nb":19,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["GO%3A0098561","methyl accepting chemotaxis protein complex"],["GO%3A0043424","protein histidine kinase binding"],["GO%3A0009593","detection of chemical stimulus"],["NCBIfam%3ANF011622","methyl-accepting chemotaxis protein II"],["CDD%3Acd06225","HAMP"],["CDD%3Acd19407","Tar_Tsr_sensor"]]},{"id":"UniProt:P60723","l":"Large ribosomal subunit protein uL4","na":1,"nb":19,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["GO%3A0022625","cytosolic large ribosomal subunit"],["GO%3A0015934","large ribosomal subunit"],["GO%3A0060698","endoribonuclease inhibitor activity"],["GO%3A0048027","mRNA 5'-UTR binding"],["GO%3A0001070","RNA-binding transcription regulator activity"]]},{"id":"CHEBI:16838","l":"polyphosphate","na":1,"nb":18,"a":[["membrane_organelle/acidocalcisome.html","acidocalcisome"]],"b":[["EC%3A2.7.1.63","polyphosphate--glucose phosphotransferase"],["EC%3A2.7.4.1","ATP-polyphosphate phosphotransferase"],["EC%3A2.7.4.17","3-phosphoglyceroyl-phosphate--polyphosphate phosphotransferase"],["EC%3A2.7.4.20","dolichyl-diphosphate--polyphosphate phosphotransferase"],["EC%3A2.7.4.33","AMP-polyphosphate phosphotransferase"],["EC%3A2.7.4.34","GDP-polyphosphate phosphotransferase"]]},{"id":"GO:0030257","l":"type III protein secretion system complex","na":1,"nb":18,"a":[["secretion_system/type_iii_protein_secretion_system_complex.html","type III protein secretion system complex"]],"b":[["ComplexPortal%3ACPX-5885","Flagellar export complex"],["GO%3A0030257","type III protein secretion system complex"],["NCBIfam%3ANF006290","flagellar protein export ATPase FliI"],["NCBIfam%3ATIGR03498","flagellar protein export ATPase FliI"],["NCBIfam%3ATIGR01026","FliI/YscN family ATPase"],["NCBIfam%3ATIGR02554","PrgH/EprH family type III secretion apparatus protein"]]},{"id":"GO:0031253","l":"cell projection membrane","na":1,"nb":18,"a":[["appendage/ciliary_membrane.html","ciliary membrane"]],"b":[["GO%3A0031526","brush border membrane"],["GO%3A0031253","cell projection membrane"],["GO%3A0060170","ciliary membrane"],["GO%3A0031527","filopodium membrane"],["GO%3A0031258","lamellipodium membrane"],["GO%3A0070686","macropinocytic cup membrane"]]},{"id":"GO:0045048","l":"protein insertion into ER membrane","na":1,"nb":18,"a":[["other/emc_complex.html","EMC complex"]],"b":[["ComplexPortal%3ACPX-6464","GET complex"],["ComplexPortal%3ACPX-956","GET complex"],["ComplexPortal%3ACPX-7020","PAT intramembrane chaperone complex"],["GO%3A0160063","multi-pass transmembrane protein insertion into ER membrane"],["GO%3A0045051","protein insertion into ER membrane by internal uncleaved signal-anchor sequence"],["GO%3A0045049","protein insertion into ER membrane by N-terminal cleaved signal sequence"]]},{"id":"GO:0140737","l":"encapsulin nanocompartment","na":1,"nb":18,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]],"b":[["GO%3A0140737","encapsulin nanocompartment"],["NCBIfam%3ATIGR04535","encapsulin-associated ferritin-like protein"],["NCBIfam%3ANF058680","encapsulin nanocompartment cargo ferric reductase EncD"],["NCBIfam%3ANF058678","encapsulin nanocompartment ferritin-like cargo protein EncB"],["NCBIfam%3ANF058679","encapsulin nanocompartment ferritin-likeEncB family encapsulin nanocompartment ferritin-like cargo protein cargo protein"],["NCBIfam%3ANF041155","family 1 encapsulin nanocompartment shell protein"]]},{"id":"GO:0160303","l":"protein secretion by the type IX secretion system","na":1,"nb":18,"a":[["secretion_system/type_ix_protein_secretion_system_complex.html","type IX protein secretion system complex"]],"b":[["GO%3A0160303","protein secretion by the type IX secretion system"],["NCBIfam%3ANF052230","PorE family type IX secretion system protein"],["NCBIfam%3ATIGR03519","PorP/SprF family type IX secretion system membrane protein"],["NCBIfam%3ANF052314","PorY family sensor histidine kinase"],["NCBIfam%3ATIGR04189","T9SS outer membrane translocon Sov/SprA"],["NCBIfam%3ANF052313","T9SS response regulator signal transducer PorX"]]},{"id":"InterPro:IPR014222","l":"Cytochrome c oxidase, subunit II","na":1,"nb":18,"a":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]],"b":[["GO%3A0098803","respiratory chain complex"],["GO%3A0004129","cytochrome-c oxidase activity"],["NCBIfam%3ATIGR02866","cytochrome c oxidase subunit II"],["InterPro%3AIPR001505","Copper centre Cu(A)"],["CDD%3Acd13912","CcO_II_C"],["CDD%3Acd04213","CuRO_CcO_Caa3_II"]]},{"id":"UniProt:P24073","l":"","na":1,"nb":18,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["EC%3A3.-.-.-","Hydrolases"],["GO%3A0009425","bacterial-type flagellum basal body"],["GO%3A0003774","cytoskeletal motor activity"],["GO%3A0044780","bacterial-type flagellum assembly"],["GO%3A0071978","bacterial-type flagellum-dependent swarming motility"],["GO%3A0016311","dephosphorylation"]]},{"id":"GO:0000407","l":"phagophore assembly site","na":1,"nb":17,"a":[["other/phagophore_assembly_site.html","phagophore assembly site"]],"b":[["ComplexPortal%3ACPX-1383","TRAPPIII protein complex"],["ComplexPortal%3ACPX-373","ULK1-ATG13-RB1CC1-ATG101 autophagy initiation complex"],["ComplexPortal%3ACPX-380","ULK1-ATG13-RB1CC1-ATG101 autophagy initiation complex"],["GO%3A0000407","phagophore assembly site"],["PANTHER%3APTHR13038","APG9 AUTOPHAGY 9"],["PANTHER%3APTHR13385","AUTOPHAGY PROTEIN 12"]]},{"id":"GO:0003689","l":"DNA clamp loader activity","na":1,"nb":17,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"]],"b":[["ComplexPortal%3ACPX-1926","DNA polymerase III clamp loader complex"],["ComplexPortal%3ACPX-472","DNA replication factor C complex"],["ComplexPortal%3ACPX-26445","DNA replication factor C complex, ctf18 variant"],["ComplexPortal%3ACPX-2441","DNA replication factor C complex, elg1 variant"],["ComplexPortal%3ACPX-26452","DNA replication factor C complex, elg1 variant"],["ComplexPortal%3ACPX-26444","DNA replication factor C complex, rad17 variant"]]},{"id":"GO:0030863","l":"cortical cytoskeleton","na":1,"nb":17,"a":[["cytoskeleton/eisosome_filament.html","eisosome filament"]],"b":[["ComplexPortal%3ACPX-658","Actin junctional complex"],["GO%3A0030864","cortical actin cytoskeleton"],["GO%3A0030863","cortical cytoskeleton"],["GO%3A0030981","cortical microtubule cytoskeleton"],["GO%3A0048788","cytoskeleton of presynaptic active zone"],["PANTHER%3APTHR15012","APICAL PROTEIN/SHROOM-RELATED"]]},{"id":"GO:0072546","l":"EMC complex","na":1,"nb":17,"a":[["other/emc_complex.html","EMC complex"]],"b":[["ComplexPortal%3ACPX-307","Endoplasmic Reticulum Membrane Complex"],["ComplexPortal%3ACPX-2445","Endoplasmic reticulum membrane complex, EMC2A variant"],["ComplexPortal%3ACPX-2451","Endoplasmic reticulum membrane complex, EMC2B variant"],["ComplexPortal%3ACPX-5848","Endoplasmic reticulum membrane complex, EMC8 variant"],["ComplexPortal%3ACPX-5882","Endoplasmic reticulum membrane complex, EMC8 variant"],["ComplexPortal%3ACPX-5881","Endoplasmic reticulum membrane complex, EMC9 variant"]]},{"id":"GO:1905369","l":"endopeptidase complex","na":1,"nb":17,"a":[["other/proteasome_complex.html","proteasome complex"]],"b":[["ComplexPortal%3ACPX-3905","Caspase-2 PIDDosome"],["ComplexPortal%3ACPX-3963","Caspase-2 PIDDosome"],["ComplexPortal%3ACPX-5777","MERS-CoV main protease complex"],["ComplexPortal%3ACPX-5685","SARS-CoV-2 main protease complex"],["ComplexPortal%3ACPX-5706","SARS-CoV main protease complex"],["GO%3A0008303","caspase complex"]]},{"id":"NCBITaxon:208963","l":"Pseudomonas aeruginosa (strain UCBPP-PA14)","na":1,"nb":17,"a":[["inclusion/r_body.html","R-body"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF21384","CRISPR-associated nuclease/helicase Cas3, I-F/YPEST, Cas2 domain"],["Pfam%3APF21802","CRISPR-associated Cas3 subtype I-F/YPEST-like, C-terminal domain"],["Pfam%3APF20975","DGC-associated coil"],["Pfam%3APF19502","Nucleotidyltransferase of unknown function (DUF6036)"]]},{"id":"Pfam:PF01584","l":"CheW-like domain","na":1,"nb":17,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["GO%3A0098561","methyl accepting chemotaxis protein complex"],["GO%3A0009454","aerotaxis"],["GO%3A0042333","chemotaxis to oxidizable substrate"],["GO%3A0051649","establishment of localization in cell"],["NCBIfam%3ANF007903","chemotaxis protein CheW"],["CDD%3Acd00732","CheW"]]},{"id":"UniProt:P0A7V8","l":"Small ribosomal subunit protein uS4","na":1,"nb":17,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["GO%3A1990145","maintenance of translational fidelity"],["GO%3A0000028","ribosomal small subunit assembly"],["GO%3A0031564","transcription antitermination"],["NCBIfam%3ANF003717","30S ribosomal protein S4"],["NCBIfam%3ATIGR01017","30S ribosomal protein S4"]]},{"id":"UniProt:P0AFI2","l":"","na":1,"nb":17,"a":[["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["ComplexPortal%3ACPX-1104","Topoisomerase IV"],["GO%3A0009330","DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) complex"],["GO%3A0030541","plasmid partitioning"],["NCBIfam%3ANF004044","DNA topoisomerase (ATP-hydrolyzing)"],["NCBIfam%3ATIGR01062","DNA topoisomerase IV subunit A"],["CDD%3Acd00187","TOP4c"]]},{"id":"UniProt:P35149","l":"","na":1,"nb":17,"a":[["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]],"b":[["EC%3A3.6.1.-","In phosphorus-containing anhydrides"],["GO%3A0043595","endospore cortex"],["GO%3A0042601","endospore-forming forespore"],["GO%3A0031160","spore wall"],["GO%3A0000270","peptidoglycan metabolic process"],["GO%3A0009847","spore germination"]]},{"id":"CHEBI:16247","l":"","na":1,"nb":16,"a":[["inclusion/monolayer_surrounded_lipid_storage_body_outer_lipid_monolayer.html","monolayer-surrounded lipid storage body outer lipid monolayer"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.A.79","The Autophagosomal Phospholipid Transmembrane Translocase (Atg9) Family"],["TCDB%3A9.A.36","The Ca2+-dependent Phospholipid Scramblase (Scramblase) Family"],["TCDB%3A1.A.17","The Calcium-dependent Chloride Channel (Ca-ClC) Family"],["TCDB%3A9.B.27","The Death Effector Domain A (DedA) Family"],["TCDB%3A8.A.97","The EPG-3/VMP1 (EPG/VPM) Scramblase Family"]]},{"id":"GO:0004526","l":"ribonuclease P activity","na":1,"nb":16,"a":[["ribonucleoprotein/dimeric_ribonuclease_p_complex.html","dimeric ribonuclease P complex"]],"b":[["EC%3A3.1.26.5","ribonuclease P"],["ComplexPortal%3ACPX-1294","Mitochondrial ribonuclease P complex"],["ComplexPortal%3ACPX-2632","Mitochondrial ribonuclease P complex"],["ComplexPortal%3ACPX-6155","Mitochondrial ribonuclease P complex"],["ComplexPortal%3ACPX-1873","Nucleolar ribonuclease P complex"],["ComplexPortal%3ACPX-2637","Nucleolar ribonuclease P complex"]]},{"id":"GO:0030968","l":"endoplasmic reticulum unfolded protein response","na":1,"nb":16,"a":[["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"]],"b":[["GO%3A0036500","ATF6-mediated unfolded protein response"],["GO%3A0030968","endoplasmic reticulum unfolded protein response"],["GO%3A0036498","IRE1-mediated unfolded protein response"],["GO%3A0036499","PERK-mediated unfolded protein response"],["Reactome%3AR-HSA-8874177","ATF6B (ATF6-beta) activates chaperones"],["Reactome%3AR-HSA-381119","Unfolded Protein Response (UPR)"]]},{"id":"GO:1904262","l":"negative regulation of TORC1 signaling","na":1,"nb":16,"a":[["other/gator1_complex.html","GATOR1 complex"]],"b":[["ComplexPortal%3ACPX-2665","CASTOR1 arginine-sensing complex"],["ComplexPortal%3ACPX-2667","CASTOR1-CASTOR2 arginine binding complex"],["ComplexPortal%3ACPX-26523","GATOR1 complex"],["ComplexPortal%3ACPX-2781","GATOR1 complex"],["ComplexPortal%3ACPX-6226","GATOR1 complex"],["ComplexPortal%3ACPX-26527","GATOR2 complex"]]},{"id":"GO:1904263","l":"positive regulation of TORC1 signaling","na":1,"nb":16,"a":[["other/gator2_complex.html","GATOR2 complex"]],"b":[["ComplexPortal%3ACPX-26527","GATOR2 complex"],["ComplexPortal%3ACPX-6227","GATOR2 complex"],["ComplexPortal%3ACPX-26516","RAG guanosine triphosphatase complex"],["ComplexPortal%3ACPX-26517","RAG guanosine triphosphatase complex"],["ComplexPortal%3ACPX-2542","RAG guanosine triphosphatase complex, RAGA-RAGC variant"],["ComplexPortal%3ACPX-2513","RAG guanosine triphosphatase complex, RAGA-RAGD variant"]]},{"id":"UniProt:P0A7S3","l":"Small ribosomal subunit protein uS12","na":1,"nb":16,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["GO%3A0022627","cytosolic small ribosomal subunit"],["GO%3A0005840","ribosome"],["GO%3A0034336","misfolded RNA binding"],["GO%3A0019843","rRNA binding"],["GO%3A0000049","tRNA binding"]]},{"id":"UniProt:P20083","l":"","na":1,"nb":16,"a":[["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["ComplexPortal%3ACPX-1104","Topoisomerase IV"],["GO%3A0030541","plasmid partitioning"],["NCBIfam%3ATIGR01055","DNA topoisomerase IV subunit B"],["InterPro%3AIPR018522","DNA topoisomerase, type IIA, conserved site"],["CDD%3Acd16928","HATPase_GyrB-like"],["CDD%3Acd00822","TopoII_Trans_DNA_gyrase"]]},{"id":"GO:0000479","l":"endonucleolytic cleavage of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)","na":1,"nb":15,"a":[["ribonucleoprotein/ribonuclease_mrp_complex.html","ribonuclease MRP complex"]],"b":[["GO%3A0000448","cleavage in ITS2 between 5.8S rRNA and LSU-rRNA of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)"],["GO%3A0000471","endonucleolytic cleavage in 3'-ETS of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)"],["GO%3A0000480","endonucleolytic cleavage in 5'-ETS of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)"],["GO%3A0000447","endonucleolytic cleavage in ITS1 to separate SSU-rRNA from 5.8S rRNA and LSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)"],["GO%3A0000464","endonucleolytic cleavage in ITS1 upstream of 5.8S rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)"],["GO%3A0000479","endonucleolytic cleavage of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)"]]},{"id":"GO:0005881","l":"cytoplasmic microtubule","na":1,"nb":15,"a":[["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"]],"b":[["GO%3A0000235","astral microtubule"],["GO%3A0005879","axonemal microtubule"],["GO%3A0055028","cortical microtubule"],["GO%3A0005881","cytoplasmic microtubule"],["PANTHER%3APTHR12607","ADENOMATOUS POLYPOSIS COLI PROTEIN FAMILY"],["PANTHER%3APTHR34031","CENTROSOMAL PROTEIN OF 162 KDA"]]},{"id":"GO:0009486","l":"cytochrome bo3 ubiquinol oxidase activity","na":1,"nb":15,"a":[["energy_complex/cytochrome_o_ubiquinol_oxidase_complex.html","cytochrome o ubiquinol oxidase complex"]],"b":[["EC%3A7.1.1.3","ubiquinol oxidase (H(+)-transporting)"],["RHEA%3A30251","2 a ubiquinol + O2 + n H(+)(in) = 2 a ubiquinone + 2 H2O + n H(+)(out)"],["ComplexPortal%3ACPX-2102","Cytochrome bo3 ubiquinol oxidase complex"],["GO%3A0009486","cytochrome bo3 ubiquinol oxidase activity"],["NCBIfam%3ATIGR01432","cytochrome aa3 quinol oxidase subunit II"],["NCBIfam%3ATIGR02843","cytochrome o ubiquinol oxidase subunit I"]]},{"id":"GO:0030121","l":"AP-1 adaptor complex","na":1,"nb":15,"a":[["other/ap_1_adaptor_complex.html","AP-1 adaptor complex"]],"b":[["ComplexPortal%3ACPX-2510","Adaptor complex AP-1"],["ComplexPortal%3ACPX-26625","Adaptor complex AP-1"],["ComplexPortal%3ACPX-532","Adaptor complex AP-1"],["ComplexPortal%3ACPX-533","Adaptor complex AP-1R"],["ComplexPortal%3ACPX-26626","Adaptor complex AP-2"],["ComplexPortal%3ACPX-2725","Adaptor complex AP-2"]]},{"id":"GO:0042575","l":"DNA polymerase complex","na":1,"nb":15,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"]],"b":[["GO%3A0005658","alpha DNA polymerase:primase complex"],["GO%3A0043625","delta DNA polymerase complex"],["GO%3A0042575","DNA polymerase complex"],["GO%3A0009360","DNA polymerase III complex"],["GO%3A0009355","DNA polymerase V complex"],["GO%3A0008622","epsilon DNA polymerase complex"]]},{"id":"GO:0045039","l":"protein insertion into mitochondrial inner membrane","na":1,"nb":15,"a":[["other/tim22_mitochondrial_import_inner_membrane_insertion_complex.html","TIM22 mitochondrial import inner membrane insertion complex"]],"b":[["ComplexPortal%3ACPX-1629","TIM22 mitochondrial inner membrane twin-pore carrier translocase complex"],["ComplexPortal%3ACPX-6124","TIM22 mitochondrial inner membrane twin-pore carrier translocase complex"],["ComplexPortal%3ACPX-6127","TIM23 mitochondrial inner membrane pre-sequence translocase complex, sort variant"],["ComplexPortal%3ACPX-2371","TIM8-TIM13 mitochondrial intermembrane space protein transporter complex"],["ComplexPortal%3ACPX-6131","TIM8A-TIM13 mitochondrial intermembrane space protein transporter complex"],["ComplexPortal%3ACPX-6132","TIM8B-TIM13 mitochondrial intermembrane space protein transporter complex"]]},{"id":"GO:0045273","l":"respiratory chain complex II (succinate dehydrogenase)","na":1,"nb":15,"a":[["energy_complex/respiratory_chain_complex_ii_succinate_dehydrogenase.html","respiratory chain complex II (succinate dehydrogenase)"]],"b":[["ComplexPortal%3ACPX-561","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-562","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-564","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-565","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-566","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-8622","Mitochondrial respiratory chain complex II"]]},{"id":"GO:0048500","l":"signal recognition particle","na":1,"nb":15,"a":[["ribonucleoprotein/signal_recognition_particle.html","signal recognition particle"]],"b":[["GO%3A0080085","signal recognition particle, chloroplast targeting"],["GO%3A0005786","signal recognition particle, endoplasmic reticulum targeting"],["GO%3A0048500","signal recognition particle"],["GO%3A0048501","signal recognition particle, plasma membrane targeting"],["NCBIfam%3ANF014032","signal recognition particle subunit SRP19/SEC65 family protein"],["NCBIfam%3ANF045758","YlxM family DNA-binding protein"]]},{"id":"UniProt:P0A7J7","l":"Large ribosomal subunit protein uL11","na":1,"nb":15,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["GO%3A0015968","stringent response"],["GO%3A0006415","translational termination"],["NCBIfam%3ATIGR01632","50S ribosomal protein L11"],["InterPro%3AIPR020785","Large ribosomal subunit protein uL11, conserved site"],["CDD%3Acd00349","Ribosomal_L11"]]},{"id":"GO:0000172","l":"ribonuclease MRP complex","na":1,"nb":14,"a":[["ribonucleoprotein/ribonuclease_mrp_complex.html","ribonuclease MRP complex"]],"b":[["ComplexPortal%3ACPX-2629","Ribonuclease MRP complex"],["ComplexPortal%3ACPX-26688","Ribonuclease MRP complex"],["ComplexPortal%3ACPX-2876","Ribonuclease MRP complex"],["ComplexPortal%3ACPX-3284","Ribonuclease MRP complex"],["GO%3A0000172","ribonuclease MRP complex"],["InterPro%3AIPR047204","RNase MRP protein 1, RNA binding domain"]]},{"id":"GO:0001682","l":"","na":1,"nb":14,"a":[["ribonucleoprotein/dimeric_ribonuclease_p_complex.html","dimeric ribonuclease P complex"]],"b":[["ComplexPortal%3ACPX-1294","Mitochondrial ribonuclease P complex"],["ComplexPortal%3ACPX-1873","Nucleolar ribonuclease P complex"],["ComplexPortal%3ACPX-2637","Nucleolar ribonuclease P complex"],["ComplexPortal%3ACPX-2877","Nucleolar ribonuclease P complex"],["GO%3A0001682","tRNA 5'-leader removal"],["NCBIfam%3ANF046110","ribonuclease P protein component 1"]]},{"id":"GO:0003843","l":"1,3-beta-D-glucan synthase activity","na":1,"nb":14,"a":[["other/1_3_beta_d_glucan_synthase_complex.html","1,3-beta-D-glucan synthase complex"]],"b":[["EC%3A2.4.1.34","1,3-beta-glucan synthase"],["RHEA%3A21476","[(1->3)-beta-D-glucosyl](n) + UDP-alpha-D-glucose = [(1->3)-beta-D-glucosyl](n+1) + UDP + H(+)"],["ComplexPortal%3ACPX-1812","1,3-beta-D-glucan synthase complex, FKS1-RHO1 variant"],["ComplexPortal%3ACPX-1813","1,3-beta-D-glucan synthase complex, FKS2-RHO1 variant"],["ComplexPortal%3ACPX-3028","1,3-beta-D-glucan synthase complex, FKS3-RHO1 variant"],["GO%3A0003843","1,3-beta-D-glucan synthase activity"]]},{"id":"GO:0006360","l":"transcription by RNA polymerase I","na":1,"nb":14,"a":[["other/nucleolus.html","nucleolus"]],"b":[["GO%3A0042790","nucleolar large rRNA transcription by RNA polymerase I"],["GO%3A0006360","transcription by RNA polymerase I"],["Reactome%3AR-HSA-73864","RNA Polymerase I Transcription"],["PANTHER%3APTHR14440","DNA-DIRECTED RNA POLYMERASE I SUBUNIT RPA49"],["PANTHER%3APTHR47227","DNA-DIRECTED RNA POLYMERASE SUBUNIT K"],["PANTHER%3APTHR10535","DNA-DIRECTED RNA POLYMERASES I, II, AND III SUBUNIT RPABC1"]]},{"id":"GO:0010494","l":"cytoplasmic stress granule","na":1,"nb":14,"a":[["ribonucleoprotein/cytoplasmic_stress_granule.html","cytoplasmic stress granule"]],"b":[["ComplexPortal%3ACPX-21432","CAPRIN1-G3BP1, stress granules assembly regulating complex"],["ComplexPortal%3ACPX-18979","CAPRIN1-G3BP2, stress granules assembly regulating complex"],["ComplexPortal%3ACPX-8306","FMR1-FXR1 RNA-binding complex"],["ComplexPortal%3ACPX-8322","FMR1-FXR2 RNA-binding complex"],["ComplexPortal%3ACPX-8305","FMR1 RNA-binding homodimer"],["ComplexPortal%3ACPX-8342","FXR1-FXR2 RNA-binding complex"]]},{"id":"GO:0030123","l":"AP-3 adaptor complex","na":1,"nb":14,"a":[["other/ap_3_adaptor_complex.html","AP-3 adaptor complex"]],"b":[["ComplexPortal%3ACPX-535","Adapter complex AP-3"],["ComplexPortal%3ACPX-26627","Adaptor complex AP-3"],["ComplexPortal%3ACPX-2727","Adaptor complex AP-3"],["ComplexPortal%3ACPX-5055","Neuronal AP-3 Adaptor complex, sigma3a variant"],["ComplexPortal%3ACPX-5147","Neuronal AP-3 Adaptor complex, sigma3a variant"],["ComplexPortal%3ACPX-5053","Neuronal AP-3 Adaptor complex, sigma3b variant"]]},{"id":"UniProt:P0A7R5","l":"Small ribosomal subunit protein uS10","na":1,"nb":14,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["ComplexPortal%3ACPX-5780","lambdaN-dependent processive transcription antitermination complex"],["ComplexPortal%3ACPX-5674","Transcription elongation complex"],["GO%3A0001072","transcription antitermination factor activity, RNA binding"],["GO%3A0032784","regulation of DNA-templated transcription elongation"],["GO%3A0031564","transcription antitermination"]]},{"id":"UniProt:P23446","l":"","na":1,"nb":14,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0030694","bacterial-type flagellum basal body, rod"],["GO%3A0009424","bacterial-type flagellum hook"],["NCBIfam%3ATIGR02490","flagellar basal-body rod protein FlgF"],["NCBIfam%3ANF009278","flagellar basal body rod protein FlgG"],["NCBIfam%3ATIGR03506","flagellar hook-basal body complex protein"],["InterPro%3AIPR019776","Flagellar basal body rod protein, conserved site"]]},{"id":"GO:0030990","l":"intraciliary transport particle","na":1,"nb":13,"a":[["appendage/cilium.html","cilium"]],"b":[["GO%3A0030990","intraciliary transport particle"],["PANTHER%3APTHR16011","IFT57/HIPPI"],["PANTHER%3APTHR31978","INTRAFLAGELLAR TRANSPORT PROTEIN 20 HOMOLOG"],["PANTHER%3APTHR33724","INTRAFLAGELLAR TRANSPORT PROTEIN 43 HOMOLOG"],["PANTHER%3APTHR13376","INTRAFLAGELLAR TRANSPORT PROTEIN 46 HOMOLOG"],["PANTHER%3APTHR14781","INTRAFLAGELLAR TRANSPORT PROTEIN 56"]]},{"id":"UniProt:P0A7L8","l":"Large ribosomal subunit protein bL27","na":1,"nb":13,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["GO%3A0022625","cytosolic large ribosomal subunit"],["GO%3A0043022","ribosome binding"],["GO%3A0000049","tRNA binding"],["GO%3A1902626","assembly of large subunit precursor of preribosome"],["GO%3A0002181","cytoplasmic translation"]]},{"id":"UniProt:P0AG67","l":"Small ribosomal subunit protein bS1","na":1,"nb":13,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ANF004951","30S ribosomal protein S1"],["NCBIfam%3ANF004952","30S ribosomal protein S1"],["NCBIfam%3ANF004954","30S ribosomal protein S1"],["NCBIfam%3ATIGR00717","30S ribosomal protein S1"],["proteintraitsmech%3AMEROPS_CLEAVAGE_A02_011","human endogenous retrovirus K retropepsin cleavage specificity"]]},{"id":"UniProt:P0AGA2","l":"","na":1,"nb":13,"a":[["secretion_system/secyeg_translocon_complex.html","SecYEG translocon complex"]],"b":[["ComplexPortal%3ACPX-1095","Holo-translocon SecYEG-SecDF-YajC-YidC complex"],["ComplexPortal%3ACPX-1096","Protein-conducting channel SecYEG complex"],["GO%3A0031522","cell envelope Sec protein transport complex"],["GO%3A0005048","signal sequence receptor activity"],["GO%3A0043952","protein transport by the Sec complex"],["GO%3A0006616","SRP-dependent cotranslational protein targeting to membrane, translocation"]]},{"id":"UniProt:P61175","l":"Large ribosomal subunit protein uL22","na":1,"nb":13,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["GO%3A0015934","large ribosomal subunit"],["GO%3A0070180","large ribosomal subunit rRNA binding"],["GO%3A1902626","assembly of large subunit precursor of preribosome"],["GO%3A0042256","cytosolic ribosome assembly"],["GO%3A0042255","ribosome assembly"]]},{"id":"GO:0017119","l":"COG complex","na":1,"nb":12,"a":[["other/cog_complex.html","COG complex"]],"b":[["ComplexPortal%3ACPX-1840","COG Golgi transport complex"],["ComplexPortal%3ACPX-2794","COG tethering complex"],["ComplexPortal%3ACPX-6199","COG tethering complex"],["GO%3A0017119","COG complex"],["PANTHER%3APTHR21506","COMPONENT OF OLIGOMERIC GOLGI COMPLEX 6"],["PANTHER%3APTHR12961","CONSERVED OLIGOMERIC GOLGI COMPLEX COMPONENT 2"]]},{"id":"GO:0045040","l":"protein insertion into mitochondrial outer membrane","na":1,"nb":12,"a":[["other/sam_complex.html","SAM complex"]],"b":[["ComplexPortal%3ACPX-2281","MIM mitochondrial import complex"],["ComplexPortal%3ACPX-26566","MIM mitochondrial import complex"],["ComplexPortal%3ACPX-6133","SAM mitochondrial sorting and assembly machinery complex"],["ComplexPortal%3ACPX-6121","TOM40 mitochondrial outer membrane translocase complex"],["ComplexPortal%3ACPX-8921","TOM40 mitochondrial outer membrane translocase complex"],["ComplexPortal%3ACPX-8926","TOM40 mitochondrial outer membrane translocase complex, testis-specific variant"]]},{"id":"GO:0045275","l":"respiratory chain complex III","na":1,"nb":12,"a":[["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"]],"b":[["ComplexPortal%3ACPX-560","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-563","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-567","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-8730","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-9308","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-8737","Mitochondrial respiratory chain complex III, testis-specific variant"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus (strain ATCC 27405 / DSM 1237 / JCM 9322 / NBRC 103400 / NCIMB 10682 / NRRL B-4536 / VPI 7372)","na":1,"nb":12,"a":[["other/cellulosome.html","cellulosome"]],"b":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["Pfam%3APF00942","Cellulose binding domain"],["Pfam%3APF17996","Carbohydrate esterase 2 N-terminal"],["Pfam%3APF00963","Cohesin domain"],["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF00404","Dockerin type I domain"]]},{"id":"NCBITaxon:224326","l":"Borreliella burgdorferi (strain ATCC 35210 / DSM 4680 / CIP 102532 / B31)","na":1,"nb":12,"a":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]],"b":[["Pfam%3APF09822","ABC-type uncharacterized transport system"],["Pfam%3APF02352","Decorin binding protein"],["Pfam%3APF23357","Domain of unknown function (DUF7088)"],["Pfam%3APF27167","GRAD helix-turn-helix domain"],["Pfam%3APF28090","BB0208-like"],["Pfam%3APF02999","Borrelia orf-D family"]]},{"id":"NCBITaxon:5691","l":"Trypanosoma brucei","na":12,"nb":1,"a":[["cytoskeleton/bilobe_structure.html","bilobe structure"],["cytoskeleton/ciliary_pocket_collar.html","ciliary pocket collar"],["cytoskeleton/flagellum_attachment_zone.html","flagellum attachment zone"],["cytoskeleton/tripartite_attachment_complex.html","tripartite attachment complex"],["membrane_organelle/flagellar_pocket.html","flagellar pocket"],["membrane_organelle/glycosome.html","glycosome"]],"b":[["TED%3AAF-A0A1J0R543-F1-model_v4_TED02","TED novel fold AF-A0A1J0R543-F1-model_v4_TED02"]]},{"id":"NCBITaxon:5702","l":"Trypanosoma brucei brucei","na":1,"nb":12,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF05887","Procyclic acidic repetitive protein (PARP)"],["Pfam%3APF18526","Thymine dioxygenase JBP1 DNA-binding domain"],["Pfam%3APF22592","FCaBP EF-hand domain"],["Pfam%3APF12131","Protein of unknown function (DUF3586)"]]},{"id":"UniProt:P0A7R1","l":"Large ribosomal subunit protein bL9","na":1,"nb":12,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00158","50S ribosomal protein L9"],["InterPro%3AIPR020069","Large ribosomal subunit protein bL9, C-terminal"],["InterPro%3AIPR020070","Large ribosomal subunit protein bL9, N-terminal"],["Pfam%3APF03948","Ribosomal protein L9, C-terminal domain"],["Pfam%3APF01281","Ribosomal protein L9, N-terminal domain"]]},{"id":"UniProt:P0AG96","l":"","na":1,"nb":12,"a":[["secretion_system/secyeg_translocon_complex.html","SecYEG translocon complex"]],"b":[["ComplexPortal%3ACPX-1095","Holo-translocon SecYEG-SecDF-YajC-YidC complex"],["ComplexPortal%3ACPX-1096","Protein-conducting channel SecYEG complex"],["GO%3A0031522","cell envelope Sec protein transport complex"],["GO%3A0043952","protein transport by the Sec complex"],["GO%3A0006616","SRP-dependent cotranslational protein targeting to membrane, translocation"],["NCBIfam%3ANF004372","preprotein translocase subunit SecE"]]},{"id":"UniProt:P23448","l":"","na":1,"nb":12,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0009425","bacterial-type flagellum basal body"],["GO%3A0071973","bacterial-type flagellum-dependent cell motility"],["GO%3A0071978","bacterial-type flagellum-dependent swarming motility"],["NCBIfam%3ATIGR00207","flagellar motor switch protein FliG"],["InterPro%3AIPR023087","Flagellar motor switch protein FliG, C-terminal"],["InterPro%3AIPR032779","Flagellar motor switch protein FliG, middle domain"]]},{"id":"UniProt:P60422","l":"Large ribosomal subunit protein uL2","na":1,"nb":12,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["ComplexPortal%3ACPX-1944","DnaA-L2 DNA replication initiation inhibitory complex"],["GO%3A0032297","negative regulation of DNA-templated DNA replication initiation"],["NCBIfam%3ATIGR01171","50S ribosomal protein L2"],["InterPro%3AIPR022671","Large ribosomal subunit protein uL2, conserved site"],["InterPro%3AIPR022669","Large ribosomal subunit protein uL2, C-terminal"]]},{"id":"GO:0006612","l":"protein targeting to membrane","na":1,"nb":11,"a":[["ribonucleoprotein/signal_recognition_particle.html","signal recognition particle"]],"b":[["GO%3A0006613","cotranslational protein targeting to membrane"],["GO%3A0006620","post-translational protein targeting to endoplasmic reticulum membrane"],["GO%3A0006612","protein targeting to membrane"],["GO%3A0044395","protein targeting to vacuolar membrane"],["PANTHER%3APTHR13254","GOLGI AUTOANTIGEN, GOLGIN SUBFAMILY A, 7"],["PANTHER%3APTHR45831","LD24721P"]]},{"id":"GO:0042601","l":"endospore-forming forespore","na":1,"nb":11,"a":[["spore/endospore_forming_forespore.html","endospore-forming forespore"]],"b":[["GO%3A0042601","endospore-forming forespore"],["NCBIfam%3ANF019784","small acid-soluble spore protein K"],["NCBIfam%3ATIGR03091","small, acid-soluble spore protein K"],["NCBIfam%3ANF019785","small acid-soluble spore protein N"],["NCBIfam%3ATIGR02864","small acid-soluble spore protein SspO"],["NCBIfam%3ANF053738","stage II sporulation protein SpoIIQ"]]},{"id":"UniProt:O32062","l":"","na":1,"nb":11,"a":[["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]],"b":[["GO%3A0043595","endospore cortex"],["GO%3A0042763","intracellular immature spore"],["GO%3A0008932","lytic endotransglycosylase activity"],["CDD%3Acd00118","LysM"],["InterPro%3AIPR018392","LysM domain"],["InterPro%3AIPR014248","Spore coat assembly protein SafA"]]},{"id":"UniProt:P02359","l":"Small ribosomal subunit protein uS7","na":1,"nb":11,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["GO%3A0022627","cytosolic small ribosomal subunit"],["GO%3A0000028","ribosomal small subunit assembly"],["NCBIfam%3ATIGR01029","30S ribosomal protein S7"],["InterPro%3AIPR020606","Small ribosomal subunit protein uS7, conserved site"],["CDD%3Acd14869","uS7_Bacteria"]]},{"id":"UniProt:P0A6E6","l":"","na":1,"nb":11,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["NCBIfam%3ATIGR01216","ATP synthase F1 subunit epsilon"],["NCBIfam%3ANF001847","F0F1 ATP synthase subunit epsilon"],["CDD%3Acd12152","F1-ATPase_delta"],["InterPro%3AIPR020547","ATP synthase epsilon subunit, C-terminal domain"],["InterPro%3AIPR020546","ATP synthase, F1 complex, delta/epsilon subunit, N-terminal"]]},{"id":"UniProt:P0A7J3","l":"Large ribosomal subunit protein uL10","na":1,"nb":11,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ANF000955","50S ribosomal protein L10"],["InterPro%3AIPR002363","Large ribosomal subunit protein uL10, conserved site, bacteria"],["CDD%3Acd05797","Ribosomal_L10"],["InterPro%3AIPR001790","Large ribosomal subunit protein uL10, N-terminal"],["Pfam%3APF00466","Ribosomal protein L10"]]},{"id":"UniProt:P0A7K2","l":"Large ribosomal subunit protein bL12","na":1,"nb":11,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00855","50S ribosomal protein L7/L12"],["CDD%3Acd00387","Ribosomal_L7_L12"],["InterPro%3AIPR013823","Large ribosomal subunit protein bL12, C-terminal"],["InterPro%3AIPR008932","Large ribosomal subunit protein bL12, oligomerization"],["Pfam%3APF16320","Ribosomal protein L7/L12 dimerisation domain"]]},{"id":"UniProt:P68699","l":"","na":1,"nb":11,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["RHEA%3A57720","ATP + H2O + 4 H(+)(in) = ADP + phosphate + 5 H(+)(out)"],["ComplexPortal%3ACPX-4022","ATP synthase complex"],["GO%3A0033177","proton-transporting two-sector ATPase complex, proton-transporting domain"],["GO%3A0042777","proton motive force-driven plasma membrane ATP synthesis"],["NCBIfam%3ATIGR01260","ATP synthase F0 subunit C"],["NCBIfam%3ANF005363","F0F1 ATP synthase subunit C"]]},{"id":"GO:0005736","l":"RNA polymerase I complex","na":1,"nb":10,"a":[["other/nucleolus.html","nucleolus"]],"b":[["ComplexPortal%3ACPX-1664","DNA-directed RNA Polymerase I complex"],["ComplexPortal%3ACPX-2386","DNA-directed RNA polymerase I complex"],["ComplexPortal%3ACPX-2602","DNA-directed RNA polymerase I complex"],["ComplexPortal%3ACPX-8907","DNA-directed RNA polymerase I complex"],["ComplexPortal%3ACPX-8913","DNA-directed RNA polymerase I complex"],["GO%3A0005736","RNA polymerase I complex"]]},{"id":"GO:0005771","l":"multivesicular body","na":10,"nb":1,"a":[["membrane_organelle/endosome.html","endosome"],["membrane_organelle/endosome_lumen.html","endosome lumen"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/late_endosome_lumen.html","late endosome lumen"],["membrane_organelle/late_endosome_membrane.html","late endosome membrane"]],"b":[["GO%3A0005771","multivesicular body"]]},{"id":"GO:0043952","l":"protein transport by the Sec complex","na":1,"nb":10,"a":[["secretion_system/secyeg_translocon_complex.html","SecYEG translocon complex"]],"b":[["ComplexPortal%3ACPX-1095","Holo-translocon SecYEG-SecDF-YajC-YidC complex"],["ComplexPortal%3ACPX-1096","Protein-conducting channel SecYEG complex"],["GO%3A0043952","protein transport by the Sec complex"],["NCBIfam%3ATIGR00963","preprotein translocase subunit SecA"],["NCBIfam%3ATIGR00964","preprotein translocase subunit SecE"],["NCBIfam%3ATIGR00967","preprotein translocase subunit SecY"]]},{"id":"GO:0097545","l":"axonemal doublet microtubule","na":10,"nb":1,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_doublet_microtubule.html","axonemal doublet microtubule"],["cytoskeleton/axonemal_dynein_complex.html","axonemal dynein complex"],["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"],["cytoskeleton/axonemal_microtubule_doublet_inner_junction.html","axonemal microtubule doublet inner junction"],["cytoskeleton/axonemal_microtubule_doublet_inner_sheath.html","axonemal microtubule doublet inner sheath"]],"b":[["GO%3A0097545","axonemal doublet microtubule"]]},{"id":"NCBITaxon:190650","l":"Caulobacter vibrioides (strain ATCC 19089 / CIP 103742 / CB 15)","na":1,"nb":10,"a":[["cytoskeleton/cytoophidium.html","cytoophidium"]],"b":[["IDPO%3A0000060","self-assembly"],["Pfam%3APF27198","FlaEY third domain"],["Pfam%3APF22367","Flagellar hook protein FlgE, third domain"],["Pfam%3APF03799","Cell division protein FtsQ/DivIB, C-terminal"],["Pfam%3APF27294","HfaA"],["Pfam%3APF27277","Holdfast attachment protein D"]]},{"id":"NCBITaxon:345073","l":"Vibrio cholerae serotype O1 (strain ATCC 39541 / Classical Ogawa 395 / O395)","na":1,"nb":10,"a":[["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"]],"b":[["IDPO%3A0000048","limited proteolysis display site"],["Pfam%3APF16671","Actin cross-linking domain"],["Pfam%3APF26759","AcfD helical domain"],["Pfam%3APF00165","Bacterial regulatory helix-turn-helix proteins, AraC family"],["Pfam%3APF08328","Adenylosuccinate lyase C-terminal"],["Pfam%3APF07208","Protein of unknown function (DUF1414)"]]},{"id":"Pfam:PF03023","l":"Lipid II flippase MurJ","na":1,"nb":10,"a":[["envelope/peptidoglycan_based_cell_wall.html","peptidoglycan-based cell wall"]],"b":[["GO%3A0000935","division septum"],["GO%3A0015648","lipid-linked peptidoglycan transporter activity"],["GO%3A0034203","glycolipid translocation"],["GO%3A0015836","lipid-linked peptidoglycan transport"],["GO%3A0034204","lipid translocation"],["GO%3A0009252","peptidoglycan biosynthetic process"]]},{"id":"UniProt:P0A7L0","l":"Large ribosomal subunit protein uL1","na":1,"nb":10,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01169","50S ribosomal protein L1"],["InterPro%3AIPR023673","Large ribosomal subunit protein uL1, conserved site"],["CDD%3Acd00403","Ribosomal_L1"],["Pfam%3APF00687","Ribosomal protein L1p/L10e family"],["InterPro%3AIPR016095","Large ribosomal subunit protein uL1, 3-layer alpha/beta-sandwich domain"]]},{"id":"UniProt:P0A7M9","l":"Large ribosomal subunit protein bL31","na":1,"nb":10,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["GO%3A1904689","negative regulation of cytoplasmic translational initiation"],["NCBIfam%3ANF000612","50S ribosomal protein L31"],["NCBIfam%3ANF001809","50S ribosomal protein L31"],["NCBIfam%3ATIGR00105","50S ribosomal protein L31"],["Pfam%3APF01197","Ribosomal protein L31"]]},{"id":"UniProt:P0A7S9","l":"Small ribosomal subunit protein uS13","na":1,"nb":10,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR03631","30S ribosomal protein S13"],["InterPro%3AIPR018269","Small ribosomal subunit protein uS13, conserved site"],["Pfam%3APF00416","Ribosomal protein S13/S18"],["InterPro%3AIPR027437","Small ribosomal subunit protein uS13, C-terminal"],["InterPro%3AIPR010979","Small ribosomal subunit protein uS13-like, H2TH"]]},{"id":"UniProt:P0A7V3","l":"Small ribosomal subunit protein uS3","na":1,"nb":10,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR01009","30S ribosomal protein S3"],["InterPro%3AIPR018280","Small ribosomal subunit protein uS3, conserved site"],["CDD%3Acd02412","KH-II_30S_S3"],["InterPro%3AIPR001351","Small ribosomal subunit protein uS3, C-terminal"],["Pfam%3APF07650","KH domain"]]},{"id":"UniProt:P0A964","l":"","na":1,"nb":10,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["GO%3A0098561","methyl accepting chemotaxis protein complex"],["GO%3A0009454","aerotaxis"],["GO%3A0051649","establishment of localization in cell"],["NCBIfam%3ANF007903","chemotaxis protein CheW"],["CDD%3Acd00732","CheW"],["InterPro%3AIPR002545","CheW-like domain"]]},{"id":"UniProt:P0AB98","l":"","na":1,"nb":10,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["NCBIfam%3ANF004477","F0F1 ATP synthase subunit A"],["NCBIfam%3ATIGR01131","F0F1 ATP synthase subunit A"],["InterPro%3AIPR023011","ATP synthase, F0 complex, subunit A, active site"],["CDD%3Acd00310","ATP-synt_Fo_a_6"],["Pfam%3APF00119","ATP synthase A chain"]]},{"id":"UniProt:P0ABA6","l":"","na":1,"nb":10,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["GO%3A0042777","proton motive force-driven plasma membrane ATP synthesis"],["NCBIfam%3ATIGR01146","ATP synthase F1 subunit gamma"],["NCBIfam%3ANF004144","F0F1 ATP synthase subunit gamma"],["InterPro%3AIPR023632","ATP synthase, F1 complex, gamma subunit conserved site"],["CDD%3Acd12151","F1-ATPase_gamma"]]},{"id":"UniProt:P0ABB0","l":"","na":1,"nb":10,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["NCBIfam%3ANF009884","F0F1 ATP synthase subunit alpha"],["NCBIfam%3ATIGR00962","F0F1 ATP synthase subunit alpha"],["CDD%3Acd18113","ATP-synt_F1_alpha_C"],["CDD%3Acd18116","ATP-synt_F1_alpha_N"],["CDD%3Acd01132","F1-ATPase_alpha_CD"]]},{"id":"UniProt:P0AD65","l":"","na":1,"nb":10,"a":[["division_machinery/elongasome.html","elongasome"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["GO%3A0071972","peptidoglycan L,D-transpeptidase activity"],["NCBIfam%3ATIGR03423","penicillin-binding protein 2"],["NCBIfam%3ANF008061","peptidoglycan DD-transpeptidase MrdA"],["InterPro%3AIPR005311","Penicillin-binding protein, dimerisation domain"],["Pfam%3APF03717","Penicillin-binding Protein dimerisation domain"]]},{"id":"UniProt:P0ADY7","l":"Large ribosomal subunit protein uL16","na":1,"nb":10,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01164","50S ribosomal protein L16"],["InterPro%3AIPR020798","Large ribosomal subunit protein uL16, conserved site"],["CDD%3Acd01433","Ribosomal_L16_L10e"],["InterPro%3AIPR016180","Large ribosomal subunit protein uL16 domain"],["Pfam%3APF00252","Ribosomal protein L16p/L10e"]]},{"id":"UniProt:P28612","l":"","na":1,"nb":10,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0120101","bacterial-type flagellum stator complex"],["NCBIfam%3ANF005831","flagellar motor protein MotB"],["CDD%3Acd07185","OmpA_C-like"],["InterPro%3AIPR025713","Motility protein B-like, N-terminal domain"],["InterPro%3AIPR006665","OmpA-like domain"],["Pfam%3APF13677","Membrane MotB of proton-channel complex MotA/MotB"]]},{"id":"UniProt:P35620","l":"","na":1,"nb":10,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["NCBIfam%3ATIGR01398","flagellar biosynthesis protein FlhA"],["InterPro%3AIPR025505","FHIPEP conserved site"],["Pfam%3APF00771","FHIPEP family"],["InterPro%3AIPR042194","FHIPEP, domain 1"],["InterPro%3AIPR042193","FHIPEP, domain 3"],["InterPro%3AIPR042196","FHIPEP, domain 4"]]},{"id":"UniProt:P39064","l":"","na":1,"nb":10,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0120101","bacterial-type flagellum stator complex"],["NCBIfam%3ANF005382","flagellar motor protein MotS"],["CDD%3Acd07185","OmpA_C-like"],["InterPro%3AIPR025713","Motility protein B-like, N-terminal domain"],["InterPro%3AIPR006665","OmpA-like domain"],["Pfam%3APF13677","Membrane MotB of proton-channel complex MotA/MotB"]]},{"id":"UniProt:P62399","l":"Large ribosomal subunit protein uL5","na":1,"nb":10,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ANF000585","50S ribosomal protein L5"],["InterPro%3AIPR020929","Large ribosomal subunit protein uL5, conserved site"],["InterPro%3AIPR031309","Large ribosomal subunit protein uL5, C-terminal"],["InterPro%3AIPR031310","Large ribosomal subunit protein uL5, N-terminal"],["Pfam%3APF00673","ribosomal L5P family C-terminus"]]},{"id":"CHEBI:18248","l":"iron atom","na":1,"nb":9,"a":[["membrane_organelle/magnetosome.html","magnetosome"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18248","requires Fe"],["proteintraitsmech%3AMETALPDB_FE_DINUCLEAR","dinuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_HEPTANUCLEAR","heptanuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_HEXANUCLEAR","hexanuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_MONONUCLEAR","mononuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_OCTANUCLEAR","octanuclear iron site"]]},{"id":"GO:0008854","l":"exodeoxyribonuclease V activity","na":1,"nb":9,"a":[["other/exodeoxyribonuclease_v_complex.html","exodeoxyribonuclease V complex"]],"b":[["EC%3A3.1.11.5","exodeoxyribonuclease V"],["ComplexPortal%3ACPX-2197","Exodeoxyribonuclease V complex"],["GO%3A0008854","exodeoxyribonuclease V activity"],["NCBIfam%3ANF008127","exodeoxyribonuclease V subunit alpha"],["NCBIfam%3ATIGR01447","exodeoxyribonuclease V subunit alpha"],["NCBIfam%3ANF008128","exodeoxyribonuclease V subunit beta"]]},{"id":"GO:0016255","l":"attachment of GPI anchor to protein","na":1,"nb":9,"a":[["other/gpi_anchor_transamidase_complex.html","GPI-anchor transamidase complex"]],"b":[["ComplexPortal%3ACPX-10141","GPI-anchor transamidase complex"],["ComplexPortal%3ACPX-1275","GPI-anchor transamidase complex"],["ComplexPortal%3ACPX-2687","GPI-anchor transamidase complex"],["ComplexPortal%3ACPX-6503","GPI-anchor transamidase complex"],["GO%3A0016255","attachment of GPI anchor to protein"],["Reactome%3AR-HSA-162791","Attachment of GPI anchor to uPAR"]]},{"id":"GO:0020007","l":"apical complex","na":9,"nb":1,"a":[["cytoskeleton/conoid.html","conoid"],["cytoskeleton/intraconoid_microtubule.html","intraconoid microtubule"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["cytoskeleton/subpellicular_microtubule.html","subpellicular microtubule"],["membrane_organelle/exoneme.html","exoneme"],["membrane_organelle/microneme.html","microneme"]],"b":[["GO%3A0020007","apical complex"]]},{"id":"GO:0031105","l":"septin complex","na":1,"nb":9,"a":[["cytoskeleton/septin_ring.html","septin ring"]],"b":[["ComplexPortal%3ACPX-1675","Septin complex"],["ComplexPortal%3ACPX-25766","Septin complex, hexamer variant, SEPT2-SEPT6-SEPT-7"],["ComplexPortal%3ACPX-25761","Septin complex, octamer variant, SEPT2-SEPT6-SEPT-7-SEPT3"],["ComplexPortal%3ACPX-25758","Septin complex, octamer variant, SEPT2-SEPT6-SEPT-7-SEPT9"],["ComplexPortal%3ACPX-26526","Septin1-Septin2-pnut complex"],["ComplexPortal%3ACPX-26529","Septin4-Septin5-pnut complex"]]},{"id":"GO:0042144","l":"vacuole fusion, non-autophagic","na":1,"nb":9,"a":[["other/hops_complex.html","HOPS complex"]],"b":[["ComplexPortal%3ACPX-1136","HOPS tethering complex"],["ComplexPortal%3ACPX-1625","HOPS tethering complex"],["ComplexPortal%3ACPX-1278","LMA1 complex, TRX1 variant"],["ComplexPortal%3ACPX-1279","LMA1 complex, TRX2 variant"],["ComplexPortal%3ACPX-5401","Vacuolar SNARE complex VAM3-VTI1-VAM7-NYV1"],["GO%3A0042144","vacuole fusion, non-autophagic"]]},{"id":"GO:0042407","l":"cristae formation","na":1,"nb":9,"a":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"]],"b":[["ComplexPortal%3ACPX-140","MICOS mitochondrial contact site and cristae organizing system complex"],["ComplexPortal%3ACPX-25732","MICOS mitochondrial contact site and cristae organizing system complex, MIC10A variant"],["ComplexPortal%3ACPX-25733","MICOS mitochondrial contact site and cristae organizing system complex, MIC10B variant"],["ComplexPortal%3ACPX-25735","MICOS mitochondrial contact site and cristae organizing system complex, MIC10C variant"],["ComplexPortal%3ACPX-6141","MICOS mitochondrial contact site and cristae organizing system complex"],["GO%3A0042407","cristae formation"]]},{"id":"GO:0042765","l":"GPI-anchor transamidase complex","na":1,"nb":9,"a":[["other/gpi_anchor_transamidase_complex.html","GPI-anchor transamidase complex"]],"b":[["ComplexPortal%3ACPX-10141","GPI-anchor transamidase complex"],["ComplexPortal%3ACPX-1275","GPI-anchor transamidase complex"],["ComplexPortal%3ACPX-2687","GPI-anchor transamidase complex"],["ComplexPortal%3ACPX-6503","GPI-anchor transamidase complex"],["GO%3A0042765","GPI-anchor transamidase complex"],["Pfam%3APF04113","Gpi16 subunit, GPI transamidase component"]]},{"id":"GO:0097546","l":"ciliary base","na":1,"nb":9,"a":[["appendage/cilium.html","cilium"]],"b":[["GO%3A0097546","ciliary base"],["PANTHER%3APTHR38326","CHROMOSOME 11 OPEN READING FRAME 97"],["PANTHER%3APTHR31978","INTRAFLAGELLAR TRANSPORT PROTEIN 20 HOMOLOG"],["PANTHER%3APTHR14781","INTRAFLAGELLAR TRANSPORT PROTEIN 56"],["PANTHER%3APTHR44117","INTRAFLAGELLAR TRANSPORT PROTEIN 88 HOMOLOG"],["PANTHER%3APTHR21532","PHOSPHODIESTERASE HL"]]},{"id":"GO:1905354","l":"exoribonuclease complex","na":1,"nb":9,"a":[["ribonucleoprotein/exosome_rnase_complex.html","exosome (RNase complex)"]],"b":[["ComplexPortal%3ACPX-5783","MERS-CoV 3'-5' exoribonuclease proof-reading complex"],["ComplexPortal%3ACPX-5692","SARS-CoV-2 3'-5' exoribonuclease proof-reading complex"],["ComplexPortal%3ACPX-5707","SARS-CoV 3'-5' exoribonuclease proof-reading complex"],["GO%3A1905354","exoribonuclease complex"],["GO%3A0000178","exosome (RNase complex)"],["GO%3A0090730","Las1 complex"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":9,"a":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]],"b":[["Pfam%3APF07835","Bacterial aa3 type cytochrome c oxidase subunit IV"],["Pfam%3APF04828","Glutathione-dependent formaldehyde-activating enzyme"],["Pfam%3APF16448","LapD/MoxY periplasmic domain"],["Pfam%3APF17267","Family of unknown function (DUF5333)"],["Pfam%3APF17272","Family of unknown function (DUF5337)"],["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"]]},{"id":"NCBITaxon:79929","l":"Methanothermobacter marburgensis (strain ATCC BAA-927 / DSM 2133 / JCM 14651 / NBRC 100331 / OCM 82 / Marburg)","na":1,"nb":9,"a":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]],"b":[["Pfam%3APF23902","PRS2 AAA+ lid C-terminal domain"],["Pfam%3APF02754","Cysteine-rich domain"],["Pfam%3APF12798","4Fe-4S binding domain"],["Pfam%3APF13183","4Fe-4S dicluster domain"],["Pfam%3APF22616","HMD N-terminal domain"],["Pfam%3APF03201","H2-forming N5,N10-methylene-tetrahydromethanopterin dehydrogenase"]]},{"id":"UniProt:P02358","l":"Small ribosomal subunit protein bS6","na":1,"nb":9,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR00166","30S ribosomal protein S6"],["InterPro%3AIPR020815","Small ribosomal subunit protein bS6, conserved site"],["CDD%3Acd00473","bS6"],["Pfam%3APF01250","Ribosomal protein S6"],["InterPro%3AIPR035980","Small ribosomal subunit protein bS6 superfamily"]]},{"id":"UniProt:P0A7L3","l":"Large ribosomal subunit protein bL20","na":1,"nb":9,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01032","50S ribosomal protein L20"],["InterPro%3AIPR049946","Large ribosomal subunit protein bL20, conserved site"],["CDD%3Acd07026","Ribosomal_L20"],["Pfam%3APF00453","Ribosomal protein L20"],["InterPro%3AIPR035566","Ribosomal protein bL20, C-terminal"]]},{"id":"UniProt:P0A9X4","l":"","na":1,"nb":9,"a":[["cytoskeleton/mreb_filament.html","MreB filament"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["GO%3A0099513","polymeric cytoskeletal fiber"],["GO%3A0043093","FtsZ-dependent cytokinesis"],["GO%3A0009252","peptidoglycan biosynthetic process"],["GO%3A0051983","regulation of chromosome segregation"],["NCBIfam%3ATIGR00904","MreB/Mrl family cell shape determining protein"]]},{"id":"UniProt:P0AA10","l":"Large ribosomal subunit protein uL13","na":1,"nb":9,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["GO%3A0070180","large ribosomal subunit rRNA binding"],["NCBIfam%3ATIGR01066","50S ribosomal protein L13"],["InterPro%3AIPR023563","Large ribosomal subunit protein uL13, conserved site"],["CDD%3Acd00392","Ribosomal_L13"],["Pfam%3APF00572","Ribosomal protein L13"]]},{"id":"UniProt:P0ADZ4","l":"Small ribosomal subunit protein uS15","na":1,"nb":9,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["GO%3A0070181","small ribosomal subunit rRNA binding"],["NCBIfam%3ATIGR00952","30S ribosomal protein S15"],["CDD%3Acd00353","Ribosomal_S15p_S13e"],["Pfam%3APF00312","Ribosomal protein S15"],["InterPro%3AIPR009068","uS15/NS1, RNA-binding domain superfamily"]]},{"id":"UniProt:P23453","l":"","na":1,"nb":9,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0009425","bacterial-type flagellum basal body"],["NCBIfam%3ATIGR01397","flagellar motor switch protein FliM"],["CDD%3Acd17908","FliM"],["InterPro%3AIPR001543","Flagellar motor switch protein FliN-like, C-terminal domain"],["Pfam%3APF02154","Flagellar motor switch protein FliM"],["InterPro%3AIPR028976","CheC-like superfamily"]]},{"id":"GO:0000917","l":"division septum assembly","na":1,"nb":8,"a":[["division_machinery/divisome_complex.html","divisome complex"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["GO%3A0000917","division septum assembly"],["GO%3A0140278","mitotic division septum assembly"],["NCBIfam%3ATIGR02205","cell division protein ZipA"],["NCBIfam%3ATIGR00172","Maf family nucleotide pyrophosphatase"],["PANTHER%3APTHR36419","ARRESTIN FAMILY PROTEIN 1"]]},{"id":"GO:0043591","l":"endospore external encapsulating structure","na":8,"nb":1,"a":[["spore/endospore_coat.html","endospore coat"],["spore/endospore_core.html","endospore core"],["spore/endospore_cortex.html","endospore cortex"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"],["spore/exosporium.html","exosporium"],["spore/microsporidian_type_endospore.html","microsporidian-type endospore"]],"b":[["GO%3A0043591","endospore external encapsulating structure"]]},{"id":"GO:0071816","l":"tail-anchored membrane protein insertion into ER membrane","na":1,"nb":8,"a":[["other/get_complex.html","GET complex"]],"b":[["ComplexPortal%3ACPX-2445","Endoplasmic reticulum membrane complex, EMC2A variant"],["ComplexPortal%3ACPX-2451","Endoplasmic reticulum membrane complex, EMC2B variant"],["ComplexPortal%3ACPX-5848","Endoplasmic reticulum membrane complex, EMC8 variant"],["ComplexPortal%3ACPX-5882","Endoplasmic reticulum membrane complex, EMC8 variant"],["ComplexPortal%3ACPX-5881","Endoplasmic reticulum membrane complex, EMC9 variant"],["ComplexPortal%3ACPX-5883","Endoplasmic reticulum membrane complex, EMC9 variant"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":8,"a":[["other/cellulosome.html","cellulosome"]],"b":[["Pfam%3APF02927","Cellulase N-terminal ig-like domain"],["Pfam%3APF00404","Dockerin type I domain"],["PROSITE%3APS00448","Clostridium cellulosome enzymes repeated domain signature"],["PROSITE%3APS60032","Glycosyl hydrolases family 9 (GH9) active site signature 1"],["PROSITE%3APS00592","Glycosyl hydrolases family 9 (GH9) active site signature 2"],["PROSITE%3APS00698","Glycosyl hydrolases family 9 (GH9) active site signature 3"]]},{"id":"NCBITaxon:572477","l":"Allochromatium vinosum (strain ATCC 17899 / DSM 180 / NBRC 103801 / NCIMB 10441 / D)","na":1,"nb":8,"a":[["inclusion/sulfur_globule.html","sulfur globule"]],"b":[["Pfam%3APF01322","Cytochrome C'"],["Pfam%3APF02635","DsrE/DsrF-like family"],["Pfam%3APF21706","Sulfide dehydrogenase [flavocytochrome c] flavoprotein chain, central"],["Pfam%3APF09242","Flavocytochrome c sulphide dehydrogenase, flavin-binding"],["Pfam%3APF01355","High potential iron-sulfur protein"],["Pfam%3APF13686","DsrE/DsrF/DrsH-like family"]]},{"id":"UniProt:P05704","l":"","na":1,"nb":8,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["GO%3A0098561","methyl accepting chemotaxis protein complex"],["CDD%3Acd19407","Tar_Tsr_sensor"],["InterPro%3AIPR003122","Chemotaxis methyl-accepting receptor Tar-related, ligand-binding"],["Pfam%3APF02203","Tar ligand binding domain homologue"],["InterPro%3AIPR035440","Methyl-accepting chemotaxis protein, four helix bundle domain superfamily"],["PROSITE%3APS00538","Bacterial chemotaxis sensory transducers signature"]]},{"id":"UniProt:P07018","l":"","na":1,"nb":8,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["NCBIfam%3ANF007309","methyl-accepting chemotaxis protein IV"],["CDD%3Acd19407","Tar_Tsr_sensor"],["InterPro%3AIPR003122","Chemotaxis methyl-accepting receptor Tar-related, ligand-binding"],["Pfam%3APF02203","Tar ligand binding domain homologue"],["InterPro%3AIPR035440","Methyl-accepting chemotaxis protein, four helix bundle domain superfamily"],["PROSITE%3APS00538","Bacterial chemotaxis sensory transducers signature"]]},{"id":"UniProt:P0A7M6","l":"Large ribosomal subunit protein uL29","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00012","50S ribosomal protein L29"],["InterPro%3AIPR018254","Large ribosomal subunit protein uL29, conserved site"],["CDD%3Acd00427","Ribosomal_L29_HIP"],["Pfam%3APF00831","Ribosomal L29 protein"],["InterPro%3AIPR036049","Large ribosomal subunit protein uL29 superfamily"]]},{"id":"UniProt:P0A7N9","l":"Large ribosomal subunit protein bL33","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ANF001860","50S ribosomal protein L33"],["NCBIfam%3ATIGR01023","50S ribosomal protein L33"],["InterPro%3AIPR018264","Large ribosomal subunit protein bL33, conserved site"],["Pfam%3APF00471","Ribosomal protein L33"],["InterPro%3AIPR038584","Large ribosomal subunit protein bL33 superfamily"]]},{"id":"UniProt:P0A7R9","l":"Small ribosomal subunit protein uS11","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ANF003698","30S ribosomal protein S11"],["NCBIfam%3ATIGR03632","30S ribosomal protein S11"],["InterPro%3AIPR018102","Small ribosomal subunit protein uS11, conserved site"],["Pfam%3APF00411","Ribosomal protein S11"],["InterPro%3AIPR036967","Small ribosomal subunit protein uS11 superfamily"]]},{"id":"UniProt:P0A7W1","l":"Small ribosomal subunit protein uS5","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR01021","30S ribosomal protein S5"],["InterPro%3AIPR018192","Small ribosomal subunit protein uS5, N-terminal, conserved site"],["InterPro%3AIPR005324","Small ribosomal subunit protein uS5, C-terminal"],["InterPro%3AIPR013810","Small ribosomal subunit protein uS5, N-terminal"],["Pfam%3APF03719","Ribosomal protein S5, C-terminal domain"]]},{"id":"UniProt:P0A7W7","l":"Small ribosomal subunit protein uS8","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ANF001109","30S ribosomal protein S8"],["InterPro%3AIPR047863","Small ribosomal subunit protein uS8, conserved site"],["Pfam%3APF00410","Ribosomal protein S8"],["InterPro%3AIPR035987","Small ribosomal subunit protein uS8 superfamily"],["PROSITE%3APS00053","Ribosomal protein S8 signature"]]},{"id":"UniProt:P0A7Y8","l":"","na":1,"nb":8,"a":[["ribonucleoprotein/dimeric_ribonuclease_p_complex.html","dimeric ribonuclease P complex"]],"b":[["GO%3A0030677","ribonuclease P complex"],["GO%3A0042781","3'-tRNA processing endoribonuclease activity"],["NCBIfam%3ATIGR00188","ribonuclease P protein component"],["InterPro%3AIPR020539","Ribonuclease P, conserved site"],["Pfam%3APF00825","Ribonuclease P"],["InterPro%3AIPR014721","Small ribosomal subunit protein uS5 domain 2-type fold, subgroup"]]},{"id":"UniProt:P0ABA0","l":"","na":1,"nb":8,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["NCBIfam%3ANF004411","F0F1 ATP synthase subunit B"],["NCBIfam%3ANF004413","F0F1 ATP synthase subunit B"],["NCBIfam%3ATIGR01144","F0F1 ATP synthase subunit B"],["CDD%3Acd06503","ATP-synt_Fo_b"],["Pfam%3APF00430","ATP synthase B/B' CF(0)"]]},{"id":"UniProt:P0ABA4","l":"","na":1,"nb":8,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["NCBIfam%3ATIGR01145","ATP synthase F1 subunit delta"],["NCBIfam%3ANF004402","F0F1 ATP synthase subunit delta"],["NCBIfam%3ANF004404","F0F1 ATP synthase subunit delta"],["InterPro%3AIPR020781","ATPase, OSCP/delta subunit, conserved site"],["Pfam%3APF00213","ATP synthase delta (OSCP) subunit"]]},{"id":"UniProt:P0ABG7","l":"","na":1,"nb":8,"a":[["division_machinery/elongasome.html","elongasome"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["GO%3A0015648","lipid-linked peptidoglycan transporter activity"],["GO%3A0031504","peptidoglycan-based cell wall organization"],["NCBIfam%3ANF008060","peptidoglycan glycosyltransferase MrdB"],["NCBIfam%3ATIGR02210","rod shape-determining protein RodA"],["InterPro%3AIPR018365","Cell cycle, FtsW / RodA / SpoVE, conserved site"]]},{"id":"UniProt:P0ABH0","l":"","na":1,"nb":8,"a":[["division_machinery/divisome_complex.html","divisome complex"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["NCBIfam%3ANF007009","cell division protein FtsA"],["NCBIfam%3ATIGR01174","cell division protein FtsA"],["CDD%3Acd24048","ASKHA_NBD_FtsA"],["InterPro%3AIPR003494","SHS2 domain inserted in FtsA"],["Pfam%3APF14450","Cell division protein FtsA"]]},{"id":"UniProt:P0ABJ6","l":"","na":1,"nb":8,"a":[["energy_complex/cytochrome_o_ubiquinol_oxidase_complex.html","cytochrome o ubiquinol oxidase complex"]],"b":[["ComplexPortal%3ACPX-2102","Cytochrome bo3 ubiquinol oxidase complex"],["GO%3A0009319","cytochrome o ubiquinol oxidase complex"],["GO%3A0009486","cytochrome bo3 ubiquinol oxidase activity"],["GO%3A0015453","oxidoreduction-driven active transmembrane transporter activity"],["GO%3A0015990","electron transport coupled proton transport"],["NCBIfam%3ANF007878","cytochrome o ubiquinol oxidase subunit IV"]]},{"id":"UniProt:P0ADY3","l":"Large ribosomal subunit protein uL14","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01067","50S ribosomal protein L14"],["InterPro%3AIPR019972","Large ribosomal subunit protein uL14, conserved site"],["CDD%3Acd00337","Ribosomal_uL14"],["Pfam%3APF00238","Ribosomal protein L14p/L23e"],["InterPro%3AIPR036853","Large ribosomal subunit protein uL14 superfamily"]]},{"id":"UniProt:P0AG51","l":"Large ribosomal subunit protein uL30","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01308","50S ribosomal protein L30"],["InterPro%3AIPR018038","Large ribosomal subunit protein uL30, conserved site"],["CDD%3Acd01658","Ribosomal_L30"],["InterPro%3AIPR016082","Large ribosomal subunit protein uL30-like, ferredoxin-like fold domain"],["Pfam%3APF00327","Ribosomal protein L30p/L7e"]]},{"id":"UniProt:P0AG55","l":"Large ribosomal subunit protein uL6","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR03654","50S ribosomal protein L6"],["InterPro%3AIPR002358","Large ribosomal subunit protein uL6, conserved site"],["InterPro%3AIPR020040","Large ribosomal subunit protein uL6, alpha-beta domain"],["Pfam%3APF00347","Ribosomal protein L6"],["InterPro%3AIPR036789","Large ribosomal subunit protein uL6-like, alpha-beta domain superfamily"]]},{"id":"UniProt:P16926","l":"","na":1,"nb":8,"a":[["division_machinery/elongasome.html","elongasome"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["NCBIfam%3ATIGR00219","rod shape-determining protein MreC"],["InterPro%3AIPR055342","Rod shape-determining protein MreC, beta-barrel core"],["Pfam%3APF04085","Rod shape-determining protein MreC, barrel core"],["InterPro%3AIPR042177","Cell/Rod shape-determining protein MreC, domain 1"],["InterPro%3AIPR042175","Cell/Rod shape-determining protein MreC, domain 2"]]},{"id":"UniProt:P60624","l":"Large ribosomal subunit protein uL24","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01079","50S ribosomal protein L24"],["InterPro%3AIPR005825","Large ribosomal subunit protein uL24, conserved site"],["CDD%3Acd06089","KOW_RPL26"],["InterPro%3AIPR057264","Large ribosomal subunit protein uL24, C-terminal domain"],["InterPro%3AIPR041988","Large ribosomal subunit protein uL24, KOW domain"]]},{"id":"UniProt:P68919","l":"Large ribosomal subunit protein bL25","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ANF004612","50S ribosomal protein L25"],["CDD%3Acd00495","Ribosomal_L25_TL5_CTC"],["InterPro%3AIPR029751","Large ribosomal subunit protein bL25, L25 domain"],["Pfam%3APF01386","Ribosomal L25p family"],["InterPro%3AIPR011035","Large ribosomal subunit protein bL25/Gln-tRNA synthetase, anti-codon-binding domain superfamily"]]},{"id":"GO:0006901","l":"vesicle coat assembly","na":1,"nb":7,"a":[["other/vesicle_coat.html","vesicle coat"]],"b":[["ComplexPortal%3ACPX-4764","TRAPP II complex"],["ComplexPortal%3ACPX-4749","TRAPP II complex, TRAPPC2 variant"],["ComplexPortal%3ACPX-6902","TRAPP II complex, TRAPPC2B variant"],["GO%3A0048208","COPII vesicle coat assembly"],["GO%3A0048200","Golgi transport vesicle coating"],["GO%3A0016183","synaptic vesicle coating"]]},{"id":"GO:0009338","l":"exodeoxyribonuclease V complex","na":1,"nb":7,"a":[["other/exodeoxyribonuclease_v_complex.html","exodeoxyribonuclease V complex"]],"b":[["ComplexPortal%3ACPX-2197","Exodeoxyribonuclease V complex"],["GO%3A0009338","exodeoxyribonuclease V complex"],["NCBIfam%3ANF008127","exodeoxyribonuclease V subunit alpha"],["NCBIfam%3ATIGR01447","exodeoxyribonuclease V subunit alpha"],["NCBIfam%3ATIGR00609","exodeoxyribonuclease V subunit beta"],["NCBIfam%3ANF008289","exodeoxyribonuclease V subunit gamma"]]},{"id":"GO:0030128","l":"clathrin coat of endocytic vesicle","na":7,"nb":1,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle.html","clathrin-coated endocytic vesicle"],["membrane_organelle/clathrin_coated_endocytic_vesicle_membrane.html","clathrin-coated endocytic vesicle membrane"],["membrane_organelle/endocytic_vesicle.html","endocytic vesicle"],["membrane_organelle/endocytic_vesicle_membrane.html","endocytic vesicle membrane"],["other/ap_2_adaptor_complex.html","AP-2 adaptor complex"],["other/clathrin_coat_of_coated_pit.html","clathrin coat of coated pit"]],"b":[["GO%3A0030128","clathrin coat of endocytic vesicle"]]},{"id":"GO:0030897","l":"HOPS complex","na":1,"nb":7,"a":[["other/hops_complex.html","HOPS complex"]],"b":[["ComplexPortal%3ACPX-1136","HOPS tethering complex"],["ComplexPortal%3ACPX-1625","HOPS tethering complex"],["ComplexPortal%3ACPX-6212","HOPS tethering complex"],["ComplexPortal%3ACPX-936","HOPS tethering complex"],["GO%3A0030897","HOPS complex"],["GO%3A1902502","multivesicular body HOPS complex"]]},{"id":"GO:0032156","l":"septin cytoskeleton","na":1,"nb":7,"a":[["cytoskeleton/septin_ring.html","septin ring"]],"b":[["GO%3A0150050","postsynaptic septin cytoskeleton"],["GO%3A0032159","septin cap"],["GO%3A0032173","septin collar"],["GO%3A0032156","septin cytoskeleton"],["GO%3A0032160","septin filament array"],["GO%3A0005940","septin ring"]]},{"id":"GO:0033115","l":"cyanelle thylakoid membrane","na":7,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/cyanelle_thylakoid_lumen.html","cyanelle thylakoid lumen"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"]],"b":[["GO%3A0033115","cyanelle thylakoid membrane"]]},{"id":"GO:0035964","l":"COPI-coated vesicle budding","na":7,"nb":1,"a":[["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"],["membrane_organelle/golgi_membrane.html","Golgi membrane"],["other/copi_vesicle_coat.html","COPI vesicle coat"]],"b":[["GO%3A0035964","COPI-coated vesicle budding"]]},{"id":"GO:0043953","l":"protein transport by the Tat complex","na":1,"nb":7,"a":[["secretion_system/tat_protein_transport_complex.html","TAT protein transport complex"]],"b":[["ComplexPortal%3ACPX-3445","Twin-arginine translocation complex"],["GO%3A0043953","protein transport by the Tat complex"],["NCBIfam%3ANF001854","Sec-independent protein translocase subunit TatA"],["NCBIfam%3ANF002813","Sec-independent protein translocase subunit TatA"],["NCBIfam%3ATIGR01912","Sec-independent protein translocase TatC"],["NCBIfam%3ANF001940","twin-arginine translocase TatA/TatE family subunit"]]},{"id":"GO:0097540","l":"axonemal central pair","na":7,"nb":1,"a":[["cytoskeleton/axonemal_central_apparatus.html","axonemal central apparatus"],["cytoskeleton/axonemal_central_pair.html","axonemal central pair"],["cytoskeleton/axonemal_central_pair_projection.html","axonemal central pair projection"],["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"],["cytoskeleton/c1_axonemal_microtubule.html","C1 axonemal microtubule"],["cytoskeleton/c2_axonemal_microtubule.html","C2 axonemal microtubule"]],"b":[["GO%3A0097540","axonemal central pair"]]},{"id":"GO:0097597","l":"ventral disc","na":7,"nb":1,"a":[["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_crossbridge.html","ventral disc crossbridge"],["cytoskeleton/ventral_disc_dorsal_microribbon.html","ventral disc dorsal microribbon"],["cytoskeleton/ventral_disc_lateral_crest.html","ventral disc lateral crest"],["cytoskeleton/ventral_disc_microtubule_array.html","ventral disc microtubule array"],["cytoskeleton/ventral_disc_overlap_zone.html","ventral disc overlap zone"]],"b":[["GO%3A0097597","ventral disc"]]},{"id":"GO:0097649","l":"A axonemal microtubule","na":7,"nb":1,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_a_tubule_inner_sheath.html","axonemal A tubule inner sheath"],["cytoskeleton/axonemal_doublet_microtubule.html","axonemal doublet microtubule"],["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"],["cytoskeleton/axonemal_microtubule_doublet_inner_junction.html","axonemal microtubule doublet inner junction"],["cytoskeleton/axonemal_microtubule_doublet_outer_junction.html","axonemal microtubule doublet outer junction"]],"b":[["GO%3A0097649","A axonemal microtubule"]]},{"id":"GO:0097650","l":"B axonemal microtubule","na":7,"nb":1,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_b_tubule_inner_sheath.html","axonemal B tubule inner sheath"],["cytoskeleton/axonemal_doublet_microtubule.html","axonemal doublet microtubule"],["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"],["cytoskeleton/axonemal_microtubule_doublet_inner_junction.html","axonemal microtubule doublet inner junction"],["cytoskeleton/axonemal_microtubule_doublet_outer_junction.html","axonemal microtubule doublet outer junction"]],"b":[["GO%3A0097650","B axonemal microtubule"]]},{"id":"InterPro:IPR001119","l":"S-layer homology domain","na":1,"nb":7,"a":[["envelope/s_layer.html","S-layer"]],"b":[["InterPro%3AIPR011459","Domain of unknown function DUF1565"],["InterPro%3AIPR001119","S-layer homology domain"],["Pfam%3APF13205","Bacterial Ig-like domain"],["Pfam%3APF03424","Carbohydrate binding domain (family 17/28)"],["Pfam%3APF06452","Carbohydrate family 9 binding domain-like"],["Pfam%3APF07602","Protein of unknown function (DUF1565)"]]},{"id":"InterPro:IPR001241","l":"","na":1,"nb":7,"a":[["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["Pfam%3APF00204","DNA gyrase B"],["Pfam%3APF00521","DNA gyrase/topoisomerase IV, subunit A"],["Pfam%3APF21249","GyrB, hook"],["Pfam%3APF18053","DNA gyrase B subunit insert domain"],["Pfam%3APF00986","DNA gyrase B subunit, carboxyl terminus"],["Pfam%3APF08070","DTHCT (NUC029) region"]]},{"id":"InterPro:IPR004489","l":"","na":1,"nb":7,"a":[["energy_complex/fumarate_reductase_complex.html","fumarate reductase complex"]],"b":[["Pfam%3APF02754","Cysteine-rich domain"],["Pfam%3APF13085","2Fe-2S iron-sulfur cluster binding domain"],["Pfam%3APF13237","4Fe-4S dicluster domain"],["Pfam%3APF13534","4Fe-4S dicluster domain"],["Pfam%3APF13183","4Fe-4S dicluster domain"],["PROSITE%3APS00197","2Fe-2S ferredoxin-type iron-sulfur binding region signature"]]},{"id":"NCBITaxon:837","l":"Porphyromonas gingivalis","na":1,"nb":7,"a":[["secretion_system/type_ix_protein_secretion_system_complex.html","type IX protein secretion system complex"]],"b":[["Pfam%3APF07675","Cleaved Adhesin Domain"],["Pfam%3APF22492","FimA4 pilin C-terminal domain"],["Pfam%3APF15495","Major fimbrial subunit protein type IV, Fimbrillin, C-terminal"],["Pfam%3APF26306","FimD protein third domain"],["Pfam%3APF27397","FimE C-terminal domain"],["Pfam%3APF10365","Domain of unknown function (DUF2436)"]]},{"id":"Pfam:PF04728","l":"Lipoprotein leucine-zipper","na":1,"nb":7,"a":[["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"]],"b":[["GO%3A0043580","periplasmic space organization"],["NCBIfam%3ANF007428","lipoprotein YqhH"],["NCBIfam%3ANF040598","Lpp/OprI family alanine-zipper lipoprotein"],["NCBIfam%3ANF011925","major outer membrane lipoprotein"],["InterPro%3AIPR006817","Lipoprotein leucine-zipper"],["Pfam%3APF04728","Lipoprotein leucine-zipper"]]},{"id":"UniProt:P0A7K6","l":"Large ribosomal subunit protein bL19","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01024","50S ribosomal protein L19"],["InterPro%3AIPR018257","Large ribosomal subunit protein bL19, conserved site"],["Pfam%3APF01245","Ribosomal protein L19"],["InterPro%3AIPR038657","Large ribosomal subunit protein bL19 superfamily"],["PROSITE%3APS01015","Ribosomal protein L19 signature"]]},{"id":"UniProt:P0A7N1","l":"Large ribosomal subunit protein bL31B","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00105","50S ribosomal protein L31"],["NCBIfam%3ANF002462","type B 50S ribosomal protein L31"],["Pfam%3APF01197","Ribosomal protein L31"],["InterPro%3AIPR042105","Large ribosomal subunit protein bL31 superfamily"],["PROSITE%3APS01143","Ribosomal protein L31 signature"]]},{"id":"UniProt:P0A7Q1","l":"Large ribosomal subunit protein bL35","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00001","50S ribosomal protein L35"],["InterPro%3AIPR018265","Large ribosomal subunit protein bL35, conserved site"],["Pfam%3APF01632","Ribosomal protein L35"],["InterPro%3AIPR037229","Large ribosomal subunit protein bL35 superfamily"],["PROSITE%3APS00936","Ribosomal protein L35 signature"]]},{"id":"UniProt:P0A7T3","l":"Small ribosomal subunit protein bS16","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR00002","30S ribosomal protein S16"],["InterPro%3AIPR020592","Small ribosomal subunit protein bS16, conserved site"],["Pfam%3APF00886","Ribosomal protein S16"],["InterPro%3AIPR023803","Small ribosomal subunit protein bS16 domain superfamily"],["PROSITE%3APS00732","Ribosomal protein S16 signature"]]},{"id":"UniProt:P0A7T7","l":"Small ribosomal subunit protein bS18","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR00165","30S ribosomal protein S18"],["InterPro%3AIPR018275","Small ribosomal subunit protein bS18, conserved site"],["Pfam%3APF01084","Ribosomal protein S18"],["InterPro%3AIPR036870","Small ribosomal subunit protein bS18 superfamily"],["PROSITE%3APS00057","Ribosomal protein S18 signature"]]},{"id":"UniProt:P0A7U3","l":"Small ribosomal subunit protein uS19","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR01050","30S ribosomal protein S19"],["InterPro%3AIPR020934","Small ribosomal subunit protein uS19, conserved site"],["Pfam%3APF00203","Ribosomal protein S19"],["InterPro%3AIPR023575","Small ribosomal subunit protein uS19, superfamily"],["PROSITE%3APS00323","Ribosomal protein S19 signature"]]},{"id":"UniProt:P0A7U7","l":"Small ribosomal subunit protein bS20","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["GO%3A0008073","ornithine decarboxylase inhibitor activity"],["GO%3A0070181","small ribosomal subunit rRNA binding"],["NCBIfam%3ATIGR00029","30S ribosomal protein S20"],["Pfam%3APF01649","Ribosomal protein S20"],["InterPro%3AIPR036510","Small ribosomal subunit protein bS20 superfamily"]]},{"id":"UniProt:P0A9A6","l":"","na":1,"nb":7,"a":[["division_machinery/divisome_complex.html","divisome complex"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["NCBIfam%3ATIGR00065","cell division protein FtsZ"],["InterPro%3AIPR020805","Cell division protein FtsZ, conserved site"],["CDD%3Acd02201","FtsZ_type1"],["InterPro%3AIPR024757","Cell division protein FtsZ, C-terminal"],["PROSITE%3APS01134","FtsZ protein signature 1"]]},{"id":"UniProt:P0AG44","l":"Large ribosomal subunit protein bL17","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00059","50S ribosomal protein L17"],["InterPro%3AIPR047859","Large ribosomal subunit protein bL17, conserved site"],["Pfam%3APF01196","Ribosomal protein L17"],["InterPro%3AIPR036373","Large ribosomal subunit protein bL17 superfamily"],["PROSITE%3APS01167","Ribosomal protein L17 signature"]]},{"id":"UniProt:P0AG63","l":"Small ribosomal subunit protein uS17","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ANF004123","30S ribosomal protein S17"],["NCBIfam%3ATIGR03635","30S ribosomal protein S17"],["InterPro%3AIPR019979","Small ribosomal subunit protein uS17, conserved site"],["CDD%3Acd00364","Ribosomal_uS17"],["Pfam%3APF00366","Ribosomal protein S17"]]},{"id":"UniProt:P0AGE0","l":"","na":1,"nb":7,"a":[["other/single_stranded_dna_binding_protein_complex.html","single-stranded DNA-binding protein complex"]],"b":[["ComplexPortal%3ACPX-1928","SSB single-stranded DNA binding complex"],["GO%3A0044777","single-stranded DNA-binding protein complex"],["NCBIfam%3ANF006533","single-stranded DNA-binding protein"],["NCBIfam%3ATIGR00621","single-stranded DNA-binding protein"],["CDD%3Acd04496","SSB_OBF"],["Pfam%3APF00436","Single-strand binding protein family"]]},{"id":"UniProt:P23447","l":"","na":1,"nb":7,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0009431","bacterial-type flagellum basal body, MS ring"],["NCBIfam%3ATIGR00206","flagellar basal-body MS-ring/collar protein FliF"],["InterPro%3AIPR013556","Flagellar M-ring C-terminal"],["InterPro%3AIPR006182","Flagellar M-ring, N-terminal"],["Pfam%3APF08345","Flagellar M-ring protein C-terminal"],["Pfam%3APF01514","Secretory protein of YscJ/FliF RBM domain"]]},{"id":"UniProt:P28611","l":"","na":1,"nb":7,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["NCBIfam%3ANF005997","flagellar motor stator protein MotA"],["InterPro%3AIPR000540","Flagellar motor protein MotA, conserved site"],["InterPro%3AIPR002898","MotA/TolQ/ExbB proton channel"],["InterPro%3AIPR046786","Motility protein A, N-terminal"],["Pfam%3APF20560","Motility protein A N-terminal"],["Pfam%3APF01618","MotA/TolQ/ExbB proton channel family"]]},{"id":"UniProt:P68679","l":"Small ribosomal subunit protein bS21","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR00030","30S ribosomal protein S21"],["InterPro%3AIPR018278","Small ribosomal subunit protein bS21, conserved site"],["Pfam%3APF01165","Ribosomal protein S21"],["InterPro%3AIPR038380","Small ribosomal subunit protein bS21 superfamily"],["PROSITE%3APS01181","Ribosomal protein S21 signature"]]},{"id":"UniProt:P77173","l":"","na":1,"nb":7,"a":[["division_machinery/divisome_complex.html","divisome complex"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["NCBIfam%3ATIGR02205","cell division protein ZipA"],["CDD%3Acd00231","ZipA"],["InterPro%3AIPR007449","ZipA, C-terminal FtsZ-binding domain"],["Pfam%3APF04354","ZipA, C-terminal FtsZ-binding domain"],["InterPro%3AIPR036765","ZipA, C-terminal FtsZ-binding domain superfamily"]]},{"id":"CHEBI:35915","l":"","na":1,"nb":6,"a":[["inclusion/lipid_droplet.html","lipid droplet"]],"b":[["EC%3A2.3.1.43","phosphatidylcholine--sterol O-acyltransferase"],["EC%3A2.3.1.73","diacylglycerol--sterol O-acyltransferase"],["EC%3A3.1.1.13","sterol esterase"],["RHEA%3A21204","a sterol + a 1,2-diacyl-sn-glycero-3-phosphocholine = a sterol ester + a 1-acyl-sn-glycero-3-phosphocholine"],["RHEA%3A13301","a sterol + a 1,2-diacyl-sn-glycerol = a sterol ester + a 1-acyl-sn-glycerol"],["RHEA%3A10100","a sterol ester + H2O = a sterol + a fatty acid + H(+)"]]},{"id":"GO:0000133","l":"polarisome","na":1,"nb":6,"a":[["other/polarisome.html","polarisome"]],"b":[["ComplexPortal%3ACPX-3188","Polarisome"],["GO%3A0031560","cellular bud neck polarisome"],["GO%3A0031561","cellular bud tip polarisome"],["GO%3A0031562","hyphal tip polarisome"],["GO%3A0031563","mating projection tip polarisome"],["GO%3A0000133","polarisome"]]},{"id":"GO:0000148","l":"1,3-beta-D-glucan synthase complex","na":1,"nb":6,"a":[["other/1_3_beta_d_glucan_synthase_complex.html","1,3-beta-D-glucan synthase complex"]],"b":[["ComplexPortal%3ACPX-1812","1,3-beta-D-glucan synthase complex, FKS1-RHO1 variant"],["ComplexPortal%3ACPX-1813","1,3-beta-D-glucan synthase complex, FKS2-RHO1 variant"],["ComplexPortal%3ACPX-3028","1,3-beta-D-glucan synthase complex, FKS3-RHO1 variant"],["GO%3A0000148","1,3-beta-D-glucan synthase complex"],["InterPro%3AIPR003440","Glycosyl transferase 48 domain"],["Pfam%3APF02364","1,3-beta-glucan synthase component"]]},{"id":"GO:0000938","l":"GARP complex","na":1,"nb":6,"a":[["other/garp_complex.html","GARP complex"]],"b":[["ComplexPortal%3ACPX-1718","GARP tethering complex"],["ComplexPortal%3ACPX-365","GARP tethering complex"],["ComplexPortal%3ACPX-6208","GARP tethering complex"],["ComplexPortal%3ACPX-2788","GARP tethering complex, Vps50 variant"],["ComplexPortal%3ACPX-2793","GARP tethering complex, Vps54 variant"],["GO%3A0000938","GARP complex"]]},{"id":"GO:0001401","l":"SAM complex","na":1,"nb":6,"a":[["other/sam_complex.html","SAM complex"]],"b":[["ComplexPortal%3ACPX-1744","Mitochondrial sorting and assembly machinery complex"],["ComplexPortal%3ACPX-6133","SAM mitochondrial sorting and assembly machinery complex"],["GO%3A0001401","SAM complex"],["InterPro%3AIPR019564","Mitochondrial outer membrane transport complex Sam37/metaxin, N-terminal domain"],["NCBIfam%3ANF022041","Tom37 metaxin N-terminal-like domain-containing protein"],["Pfam%3APF10568","Outer mitochondrial membrane transport complex protein"]]},{"id":"GO:0005693","l":"U12 snRNP","na":6,"nb":1,"a":[["ribonucleoprotein/u11_u12_snrnp.html","U11/U12 snRNP"],["ribonucleoprotein/u12_snrnp.html","U12 snRNP"],["ribonucleoprotein/u12_type_catalytic_step_1_spliceosome.html","U12-type catalytic step 1 spliceosome"],["ribonucleoprotein/u12_type_catalytic_step_2_spliceosome.html","U12-type catalytic step 2 spliceosome"],["ribonucleoprotein/u12_type_post_mrna_release_spliceosomal_complex.html","U12-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u12_type_post_spliceosomal_complex.html","U12-type post-spliceosomal complex"]],"b":[["GO%3A0005693","U12 snRNP"]]},{"id":"GO:0006797","l":"polyphosphate metabolic process","na":1,"nb":6,"a":[["membrane_organelle/acidocalcisome.html","acidocalcisome"]],"b":[["GO%3A0006799","polyphosphate biosynthetic process"],["GO%3A0006798","polyphosphate catabolic process"],["GO%3A0006797","polyphosphate metabolic process"],["NCBIfam%3ANF042973","ADP-polyphosphate phosphotransferase"],["NCBIfam%3ATIGR03708","polyphosphate:AMP phosphotransferase"],["NCBIfam%3ATIGR03709","PPK2 family polyphosphate kinase"]]},{"id":"GO:0006998","l":"nuclear envelope organization","na":1,"nb":6,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"]],"b":[["ComplexPortal%3ACPX-1787","Nem1-Spo7 phosphatase complex"],["GO%3A0006998","nuclear envelope organization"],["GO%3A0018985","pronuclear envelope synthesis"],["PANTHER%3APTHR47808","INNER NUCLEAR MEMBRANE PROTEIN HEH2-RELATED"],["PANTHER%3APTHR28538","INTEGRAL INNER NUCLEAR MEMBRANE PROTEIN IMA1"],["PANTHER%3APTHR28136","NUCLEUS EXPORT PROTEIN BRR6"]]},{"id":"GO:0009843","l":"cyanelle thylakoid","na":6,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/cyanelle_thylakoid_lumen.html","cyanelle thylakoid lumen"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"],["membrane_organelle/plastid_thylakoid.html","plastid thylakoid"]],"b":[["GO%3A0009843","cyanelle thylakoid"]]},{"id":"GO:0020008","l":"rhoptry","na":6,"nb":1,"a":[["membrane_organelle/mononeme.html","mononeme"],["membrane_organelle/rhoptry.html","rhoptry"],["membrane_organelle/rhoptry_lumen.html","rhoptry lumen"],["membrane_organelle/rhoptry_membrane.html","rhoptry membrane"],["membrane_organelle/rhoptry_neck.html","rhoptry neck"],["other/apical_complex.html","apical complex"]],"b":[["GO%3A0020008","rhoptry"]]},{"id":"GO:0033112","l":"cyanelle envelope","na":6,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"]],"b":[["GO%3A0033112","cyanelle envelope"]]},{"id":"GO:0033114","l":"cyanelle thylakoid lumen","na":6,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/cyanelle_thylakoid_lumen.html","cyanelle thylakoid lumen"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"],["membrane_organelle/plastid_thylakoid_lumen.html","plastid thylakoid lumen"]],"b":[["GO%3A0033114","cyanelle thylakoid lumen"]]},{"id":"GO:0036012","l":"cyanelle inner membrane","na":6,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"]],"b":[["GO%3A0036012","cyanelle inner membrane"]]},{"id":"GO:0038203","l":"TORC2 signaling","na":1,"nb":6,"a":[["other/torc2_complex.html","TORC2 complex"]],"b":[["ComplexPortal%3ACPX-2269","TORC2 complex"],["ComplexPortal%3ACPX-26513","TORC2 serine/threonine protein kinase complex"],["GO%3A0038203","TORC2 signaling"],["PANTHER%3APTHR13298","CYTOSOLIC REGULATOR PIANISSIMO"],["PANTHER%3APTHR32428","TARGET OF RAPAMYCIN COMPLEX 2 SUBUNIT BIT61-RELATED"],["PANTHER%3APTHR13335","TARGET OF RAPAMYCIN COMPLEX 2 SUBUNIT MAPKAP1"]]},{"id":"GO:0043264","l":"extracellular membraneless organelle","na":1,"nb":6,"a":[["other/cellulosome.html","cellulosome"]],"b":[["GO%3A0043263","cellulosome"],["GO%3A0043264","extracellular membraneless organelle"],["GO%3A0140644","neutrophil extracellular trap"],["GO%3A0055040","periplasmic flagellum"],["GO%3A0055039","trichocyst"],["GO%3A0085026","tubovesicular membrane network"]]},{"id":"GO:0043595","l":"endospore cortex","na":6,"nb":1,"a":[["spore/endospore_coat.html","endospore coat"],["spore/endospore_core.html","endospore core"],["spore/endospore_cortex.html","endospore cortex"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"],["spore/outer_endospore_membrane.html","outer endospore membrane"],["spore/spore_inner_membrane.html","spore inner membrane"]],"b":[["GO%3A0043595","endospore cortex"]]},{"id":"GO:0070111","l":"organellar chromatophore","na":6,"nb":1,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_inner_membrane.html","organellar chromatophore inner membrane"],["membrane_organelle/organellar_chromatophore_intermembrane_space.html","organellar chromatophore intermembrane space"],["membrane_organelle/organellar_chromatophore_membrane.html","organellar chromatophore membrane"],["membrane_organelle/organellar_chromatophore_outer_membrane.html","organellar chromatophore outer membrane"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"]],"b":[["GO%3A0070111","organellar chromatophore"]]},{"id":"GO:0070118","l":"organellar chromatophore thylakoid membrane","na":6,"nb":1,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_membrane.html","organellar chromatophore membrane"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"],["membrane_organelle/organellar_chromatophore_thylakoid_lumen.html","organellar chromatophore thylakoid lumen"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"],["membrane_organelle/plastid_thylakoid_membrane.html","plastid thylakoid membrane"]],"b":[["GO%3A0070118","organellar chromatophore thylakoid membrane"]]},{"id":"NCBITaxon:1430","l":"Bacillus thuringiensis subsp. israelensis","na":1,"nb":6,"a":[["inclusion/parasporal_crystal.html","parasporal crystal"]],"b":[["Pfam%3APF01338","Bacillus thuringiensis toxin"],["Pfam%3APF17997","Insecticidal delta-endotoxin CryIA(c) domain 5"],["Pfam%3APF21463","Cry1Ac, domain VII"],["Pfam%3APF03944","delta endotoxin"],["Pfam%3APF03945","delta endotoxin, N-terminal domain"],["Pfam%3APF00555","delta endotoxin"]]},{"id":"NCBITaxon:5141","l":"Neurospora crassa","na":6,"nb":1,"a":[["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysomal_membrane.html","glyoxysomal membrane"],["membrane_organelle/glyoxysome.html","glyoxysome"],["membrane_organelle/woronin_body.html","Woronin body"],["other/polarisome.html","polarisome"],["other/spitzenkorper.html","spitzenkorper"]],"b":[["TED%3AAF-A0A0B0E1R4-F1-model_v4_TED01","TED novel fold AF-A0A0B0E1R4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:5911","l":"Tetrahymena thermophila","na":6,"nb":1,"a":[["cytoskeleton/axonemal_microtubule_doublet_outer_junction.html","axonemal microtubule doublet outer junction"],["membrane_organelle/macronucleus.html","macronucleus"],["membrane_organelle/micronucleus.html","micronucleus"],["membrane_organelle/mucocyst.html","mucocyst"],["other/ap_3_adaptor_complex.html","AP-3 adaptor complex"],["other/ap_type_membrane_coat_adaptor_complex.html","AP-type membrane coat adaptor complex"]],"b":[["Pfam%3APF10699","Male gamete fusion factor"]]},{"id":"UniProt:P02968","l":"","na":1,"nb":6,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["NCBIfam%3ANF009446","flagellin Hag"],["InterPro%3AIPR046358","Flagellin, C-terminal domain"],["InterPro%3AIPR001029","Flagellin, N-terminal domain"],["Pfam%3APF00700","Bacterial flagellin C-terminal helical region"],["Pfam%3APF00669","Bacterial flagellin N-terminal helical region"],["CATH%3A1.20.1330.10","f41 fragment of flagellin, N-terminal domain"]]},{"id":"UniProt:P0A7M2","l":"Large ribosomal subunit protein bL28","na":1,"nb":6,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00009","50S ribosomal protein L28"],["Pfam%3APF00830","Ribosomal L28 family"],["InterPro%3AIPR034704","Large ribosomal subunit protein bL28/bL31-like superfamily"],["InterPro%3AIPR037147","Large ribosomal subunit protein bL28 superfamily"],["CATH%3A2.30.170.40","Ribosomal protein L28/L24"]]},{"id":"UniProt:P0A7P5","l":"Large ribosomal subunit protein bL34","na":1,"nb":6,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01030","50S ribosomal protein L34"],["InterPro%3AIPR020939","Large ribosomal subunit protein bL34, conserved site"],["Pfam%3APF00468","Ribosomal protein L34"],["PROSITE%3APS00784","Ribosomal protein L34 signature"],["CATH%3A1.10.287.3980","CATH homologous superfamily 1.10.287.3980"]]},{"id":"UniProt:P0ADZ0","l":"Large ribosomal subunit protein uL23","na":1,"nb":6,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ANF004358","50S ribosomal protein L23"],["NCBIfam%3ANF004359","50S ribosomal protein L23"],["NCBIfam%3ANF004363","50S ribosomal protein L23"],["InterPro%3AIPR001014","Large ribosomal subunit protein uL23, conserved site"],["PROSITE%3APS00050","Ribosomal protein L23 signature"]]},{"id":"UniProt:P0AG48","l":"Large ribosomal subunit protein bL21","na":1,"nb":6,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00061","50S ribosomal protein L21"],["InterPro%3AIPR018258","Large ribosomal subunit protein bL21, conserved site"],["Pfam%3APF00829","Ribosomal prokaryotic L21 protein"],["InterPro%3AIPR036164","Large ribosomal subunit protein bL21-like superfamily"],["PROSITE%3APS01169","Ribosomal protein L21 signature"]]},{"id":"UniProt:P0AG59","l":"Small ribosomal subunit protein uS14","na":1,"nb":6,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ANF006477","30S ribosomal protein S14"],["InterPro%3AIPR018271","Small ribosomal subunit protein uS14, conserved site"],["Pfam%3APF00253","Ribosomal protein S14p/S29e"],["PROSITE%3APS00527","Ribosomal protein S14 signature"],["CATH%3A1.10.287.1480","CATH homologous superfamily 1.10.287.1480"]]},{"id":"UniProt:P24500","l":"","na":1,"nb":6,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0030694","bacterial-type flagellum basal body, rod"],["NCBIfam%3ATIGR01396","flagellar basal body rod protein FlgB"],["InterPro%3AIPR019776","Flagellar basal body rod protein, conserved site"],["InterPro%3AIPR001444","Flagellar basal body rod protein, N-terminal"],["Pfam%3APF00460","Flagella basal body rod protein"],["PROSITE%3APS00588","Flagella basal body rod proteins signature"]]},{"id":"UniProt:P35528","l":"","na":1,"nb":6,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0009425","bacterial-type flagellum basal body"],["NCBIfam%3ANF009438","EscR/YscR/HrcR family type III secretion system export apparatus protein"],["NCBIfam%3ATIGR01103","flagellar type III secretion system pore protein FliP"],["Pfam%3APF00813","FliP family"],["PROSITE%3APS01060","Flagella transport protein fliP family signature 1"],["PROSITE%3APS01061","Flagella transport protein fliP family signature 2"]]},{"id":"UniProt:P69776","l":"","na":1,"nb":6,"a":[["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"]],"b":[["GO%3A0043580","periplasmic space organization"],["NCBIfam%3ANF040598","Lpp/OprI family alanine-zipper lipoprotein"],["NCBIfam%3ANF011925","major outer membrane lipoprotein"],["proteintraitsmech%3AMEROPS_CLEAVAGE_A08_001","signal peptidase II cleavage specificity"],["InterPro%3AIPR006817","Lipoprotein leucine-zipper"],["Pfam%3APF04728","Lipoprotein leucine-zipper"]]},{"id":"GO:0000171","l":"ribonuclease MRP activity","na":1,"nb":5,"a":[["ribonucleoprotein/ribonuclease_mrp_complex.html","ribonuclease MRP complex"]],"b":[["ComplexPortal%3ACPX-2629","Ribonuclease MRP complex"],["ComplexPortal%3ACPX-26688","Ribonuclease MRP complex"],["ComplexPortal%3ACPX-2876","Ribonuclease MRP complex"],["ComplexPortal%3ACPX-3284","Ribonuclease MRP complex"],["GO%3A0000171","ribonuclease MRP activity"]]},{"id":"GO:0005630","l":"dityrosine layer of spore wall","na":5,"nb":1,"a":[["spore/ascospore_wall.html","ascospore wall"],["spore/chitosan_layer_of_spore_wall.html","chitosan layer of spore wall"],["spore/dityrosine_layer_of_spore_wall.html","dityrosine layer of spore wall"],["spore/inner_layer_of_spore_wall.html","inner layer of spore wall"],["spore/isp3_layer_of_spore_wall.html","Isp3 layer of spore wall"]],"b":[["GO%3A0005630","dityrosine layer of spore wall"]]},{"id":"GO:0005631","l":"chitosan layer of spore wall","na":5,"nb":1,"a":[["spore/ascospore_wall.html","ascospore wall"],["spore/chitosan_layer_of_spore_wall.html","chitosan layer of spore wall"],["spore/dityrosine_layer_of_spore_wall.html","dityrosine layer of spore wall"],["spore/inner_layer_of_spore_wall.html","inner layer of spore wall"],["spore/isp3_layer_of_spore_wall.html","Isp3 layer of spore wall"]],"b":[["GO%3A0005631","chitosan layer of spore wall"]]},{"id":"GO:0009420","l":"bacterial-type flagellum filament","na":5,"nb":1,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["GO%3A0009420","bacterial-type flagellum filament"]]},{"id":"GO:0016610","l":"nitrogenase complex","na":1,"nb":5,"a":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"]],"b":[["GO%3A0016611","iron-iron nitrogenase complex"],["GO%3A0016612","molybdenum-iron nitrogenase complex"],["GO%3A0016610","nitrogenase complex"],["GO%3A0016613","vanadium-iron nitrogenase complex"],["NCBIfam%3ATIGR01287","nitrogenase iron protein"]]},{"id":"GO:0020009","l":"microneme","na":5,"nb":1,"a":[["membrane_organelle/microneme.html","microneme"],["membrane_organelle/microneme_lumen.html","microneme lumen"],["membrane_organelle/microneme_membrane.html","microneme membrane"],["membrane_organelle/mononeme.html","mononeme"],["other/apical_complex.html","apical complex"]],"b":[["GO%3A0020009","microneme"]]},{"id":"GO:0030075","l":"bacterial thylakoid","na":5,"nb":1,"a":[["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_lumen.html","plasma membrane-derived thylakoid lumen"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"]],"b":[["GO%3A0030075","bacterial thylakoid"]]},{"id":"GO:0031522","l":"cell envelope Sec protein transport complex","na":1,"nb":5,"a":[["secretion_system/secyeg_translocon_complex.html","SecYEG translocon complex"]],"b":[["ComplexPortal%3ACPX-1095","Holo-translocon SecYEG-SecDF-YajC-YidC complex"],["ComplexPortal%3ACPX-1096","Protein-conducting channel SecYEG complex"],["GO%3A0031522","cell envelope Sec protein transport complex"],["NCBIfam%3ATIGR01129","protein translocase subunit SecD"],["NCBIfam%3ATIGR00966","protein translocase subunit SecF"]]},{"id":"GO:0031676","l":"plasma membrane-derived thylakoid membrane","na":5,"nb":1,"a":[["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_lumen.html","plasma membrane-derived thylakoid lumen"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"]],"b":[["GO%3A0031676","plasma membrane-derived thylakoid membrane"]]},{"id":"GO:0033263","l":"CORVET complex","na":1,"nb":5,"a":[["other/corvet_complex.html","CORVET complex"]],"b":[["ComplexPortal%3ACPX-1137","CORVET tethering complex"],["ComplexPortal%3ACPX-1626","CORVET tethering complex"],["ComplexPortal%3ACPX-6213","CORVET tethering complex"],["ComplexPortal%3ACPX-8877","CORVET tethering complex"],["GO%3A0033263","CORVET complex"]]},{"id":"GO:0034982","l":"mitochondrial protein processing","na":1,"nb":5,"a":[["other/mitochondrial_inner_membrane_peptidase_complex.html","mitochondrial inner membrane peptidase complex"]],"b":[["ComplexPortal%3ACPX-10319","m-AAA protease complex, AFG3L2-SPG7 variant"],["ComplexPortal%3ACPX-10318","m-AAA protease complex, AFG3L2 variant"],["GO%3A0034982","mitochondrial protein processing"],["PANTHER%3APTHR21711","MITOCHONDRIAL INNER MEMBRANE PROTEASE"],["PANTHER%3APTHR46041","MITOCHONDRIAL INNER MEMBRANE PROTEASE SUBUNIT 2"]]},{"id":"GO:0035632","l":"mitochondrial prohibitin complex","na":1,"nb":5,"a":[["other/mitochondrial_prohibitin_complex.html","mitochondrial prohibitin complex"]],"b":[["ComplexPortal%3ACPX-1703","Prohibitin complex"],["ComplexPortal%3ACPX-4114","Prohibitin complex"],["ComplexPortal%3ACPX-5741","Prohibitin complex"],["ComplexPortal%3ACPX-5743","Prohibitin complex"],["GO%3A0035632","mitochondrial prohibitin complex"]]},{"id":"GO:0036013","l":"cyanelle outer membrane","na":5,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"]],"b":[["GO%3A0036013","cyanelle outer membrane"]]},{"id":"GO:0036014","l":"cyanelle intermembrane space","na":5,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"]],"b":[["GO%3A0036014","cyanelle intermembrane space"]]},{"id":"GO:0043291","l":"RAVE complex","na":1,"nb":5,"a":[["other/rave_complex.html","RAVE complex"]],"b":[["ComplexPortal%3ACPX-1627","RAVE complex"],["ComplexPortal%3ACPX-25781","RAVE complex"],["ComplexPortal%3ACPX-10301","RAVE complex, DMXL1 variant"],["ComplexPortal%3ACPX-10303","RAVE complex, DMXL2 variant"],["GO%3A0043291","RAVE complex"]]},{"id":"GO:0043684","l":"type IV secretion system complex","na":1,"nb":5,"a":[["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]],"b":[["GO%3A0043684","type IV secretion system complex"],["NCBIfam%3ANF049884","Dot/Icm T4SS effector Ceg23"],["NCBIfam%3ATIGR02788","P-type DNA transfer ATPase VirB11"],["NCBIfam%3ATIGR02791","P-type DNA transfer protein VirB5"],["NCBIfam%3ANF047983","T4SS effector phosphatidylinositol 3-Kinase RisK1"]]},{"id":"GO:0046336","l":"ethanolamine catabolic process","na":1,"nb":5,"a":[["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"]],"b":[["ComplexPortal%3ACPX-2313","Ethanolamine ammonia-lyase complex"],["GO%3A0046336","ethanolamine catabolic process"],["NCBIfam%3ATIGR04502","ethanolamine utilization microcompartment protein EutL"],["NCBIfam%3ATIGR02526","ethanolamine utilization microcompartment shell protein"],["NCBIfam%3ATIGR02528","EutP/PduV family microcompartment system protein"]]},{"id":"GO:0050215","l":"propanediol dehydratase activity","na":1,"nb":5,"a":[["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]],"b":[["EC%3A4.2.1.28","propanediol dehydratase"],["RHEA%3A14569","propane-1,2-diol = propanal + H2O"],["GO%3A0050215","propanediol dehydratase activity"],["MCSA%3A494","propanediol dehydratase"],["proteintraitsmech%3ABIOLIP_FWK","FWK-binding site"]]},{"id":"GO:0071256","l":"translocon complex","na":1,"nb":5,"a":[["other/ssh1_translocon_complex.html","Ssh1 translocon complex"]],"b":[["ComplexPortal%3ACPX-8024","Translocon-associated protein complex"],["ComplexPortal%3ACPX-3055","Translocon complex"],["GO%3A0005784","Sec61 translocon complex"],["GO%3A0071261","Ssh1 translocon complex"],["GO%3A0071256","translocon complex"]]},{"id":"GO:0097593","l":"ventral disc microtubule array","na":5,"nb":1,"a":[["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_dorsal_microribbon.html","ventral disc dorsal microribbon"],["cytoskeleton/ventral_disc_microtubule_array.html","ventral disc microtubule array"],["cytoskeleton/ventral_disc_overlap_zone.html","ventral disc overlap zone"],["cytoskeleton/ventral_disc_supernumerary_microtubule_array.html","ventral disc supernumerary microtubule array"]],"b":[["GO%3A0097593","ventral disc microtubule array"]]},{"id":"GO:1990717","l":"axonemal central bridge","na":5,"nb":1,"a":[["cytoskeleton/axonemal_central_apparatus.html","axonemal central apparatus"],["cytoskeleton/axonemal_central_bridge.html","axonemal central bridge"],["cytoskeleton/axonemal_central_pair.html","axonemal central pair"],["cytoskeleton/c1_axonemal_microtubule.html","C1 axonemal microtubule"],["cytoskeleton/c2_axonemal_microtubule.html","C2 axonemal microtubule"]],"b":[["GO%3A1990717","axonemal central bridge"]]},{"id":"GO:1990719","l":"C1 axonemal microtubule","na":5,"nb":1,"a":[["cytoskeleton/axonemal_central_bridge.html","axonemal central bridge"],["cytoskeleton/axonemal_central_pair.html","axonemal central pair"],["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"],["cytoskeleton/c1_axonemal_microtubule.html","C1 axonemal microtubule"],["cytoskeleton/c2_axonemal_microtubule.html","C2 axonemal microtubule"]],"b":[["GO%3A1990719","C1 axonemal microtubule"]]},{"id":"GO:1990720","l":"C2 axonemal microtubule","na":5,"nb":1,"a":[["cytoskeleton/axonemal_central_bridge.html","axonemal central bridge"],["cytoskeleton/axonemal_central_pair.html","axonemal central pair"],["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"],["cytoskeleton/c1_axonemal_microtubule.html","C1 axonemal microtubule"],["cytoskeleton/c2_axonemal_microtubule.html","C2 axonemal microtubule"]],"b":[["GO%3A1990720","C2 axonemal microtubule"]]},{"id":"InterPro:IPR000090","l":"","na":1,"nb":5,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]],"b":[["Pfam%3APF01706","FliG C-terminal domain"],["PANTHER%3APTHR30534","FLAGELLAR MOTOR SWITCH PROTEIN FLIG"],["Pfam%3APF14841","FliG middle domain"],["Pfam%3APF14842","FliG N-terminal domain"],["PRINTS%3APR00954","Flagellar motor switch protein FliG signature"]]},{"id":"InterPro:IPR045187","l":"","na":1,"nb":5,"a":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]],"b":[["Pfam%3APF00116","Cytochrome C oxidase subunit II, periplasmic domain"],["PANTHER%3APTHR22888","CYTOCHROME C OXIDASE, SUBUNIT II"],["Pfam%3APF02790","Cytochrome C oxidase subunit II, transmembrane domain"],["Pfam%3APF06481","COX Aromatic Rich Motif"],["PROSITE%3APS00078","CO II and nitrous oxide reductase dinuclear copper centers signature"]]},{"id":"UniProt:I6WZG6","l":"","na":1,"nb":5,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]],"b":[["IEDB%3A197918","epitope AARTFKRHIAGRRVV"],["IEDB%3A213387","epitope KPLVRLRVPFTLSRN"],["IEDB%3A218534","epitope RTIFEGYSAASIEGI"],["IEDB%3A219874","epitope TEAAWAEIELEAART"],["Pfam%3APF04454","Encapsulating protein for peroxidase"]]},{"id":"UniProt:I6Y4U9","l":"","na":1,"nb":5,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]],"b":[["IEDB%3A200082","epitope AGSCYVHVQKYVHDM"],["IEDB%3A203626","epitope AVTGGLFFSPTIDFL"],["IEDB%3A205003","epitope DGTERKIVRHNMPFG"],["IEDB%3A211489","epitope HGFRFFDNRDLLGFV"],["IEDB%3A212746","epitope IVRHNMPFGEVGKGE"]]},{"id":"UniProt:P02413","l":"Large ribosomal subunit protein uL15","na":1,"nb":5,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01071","50S ribosomal protein L15"],["InterPro%3AIPR001196","Large ribosomal subunit protein uL15, conserved site"],["Pfam%3APF00828","Ribosomal proteins 50S-L15, 50S-L18e, 60S-L27A"],["PROSITE%3APS00475","Ribosomal protein L15 signature"]]},{"id":"UniProt:P0A7Q6","l":"Large ribosomal subunit protein bL36A","na":1,"nb":5,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01022","50S ribosomal protein L36"],["Pfam%3APF00444","Ribosomal protein L36"],["InterPro%3AIPR035977","Large ribosomal subunit protein bL36 superfamily"],["PROSITE%3APS00828","Ribosomal protein L36 signature"]]},{"id":"UniProt:P0A7X3","l":"Small ribosomal subunit protein uS9","na":1,"nb":5,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ANF001099","30S ribosomal protein S9"],["InterPro%3AIPR020574","Small ribosomal subunit protein uS9, conserved site"],["Pfam%3APF00380","Ribosomal protein S9/S16"],["PROSITE%3APS00360","Ribosomal protein S9 signature"]]},{"id":"UniProt:P24501","l":"","na":1,"nb":5,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0030694","bacterial-type flagellum basal body, rod"],["NCBIfam%3ATIGR01395","flagellar basal body rod protein FlgC"],["InterPro%3AIPR019776","Flagellar basal body rod protein, conserved site"],["InterPro%3AIPR010930","Flagellar basal-body/hook protein, C-terminal domain"],["InterPro%3AIPR001444","Flagellar basal body rod protein, N-terminal"]]},{"id":"UniProt:P35538","l":"","na":1,"nb":5,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["NCBIfam%3ATIGR00328","flagellar biosynthesis protein FlhB"],["Pfam%3APF01312","FlhB HrpN YscU SpaS Family"],["InterPro%3AIPR029025","Type III secretion system substrate exporter, C-terminal"],["CATH%3A6.10.250.2080","CATH homologous superfamily 6.10.250.2080"],["CATH%3A3.40.1690.10","secretion proteins EscU"]]},{"id":"UniProt:P39063","l":"","na":1,"nb":5,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["NCBIfam%3ANF005383","flagellar motor protein MotP"],["InterPro%3AIPR000540","Flagellar motor protein MotA, conserved site"],["InterPro%3AIPR002898","MotA/TolQ/ExbB proton channel"],["Pfam%3APF01618","MotA/TolQ/ExbB proton channel family"],["PROSITE%3APS01307","Flagellar motor protein motA family signature"]]},{"id":"UniProt:P60438","l":"Large ribosomal subunit protein uL3","na":1,"nb":5,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR03625","50S ribosomal protein L3"],["InterPro%3AIPR019926","Large ribosomal subunit protein uL3, conserved site"],["Pfam%3APF00297","Ribosomal protein L3"],["CATH%3A3.30.160.810","CATH homologous superfamily 3.30.160.810"]]},{"id":"GO:0000328","l":"fungal-type vacuole lumen","na":4,"nb":1,"a":[["membrane_organelle/fungal_type_vacuole.html","fungal-type vacuole"],["membrane_organelle/fungal_type_vacuole_lumen.html","fungal-type vacuole lumen"],["membrane_organelle/fungal_type_vacuole_membrane.html","fungal-type vacuole membrane"],["membrane_organelle/vacuole.html","vacuole"]],"b":[["GO%3A0000328","fungal-type vacuole lumen"]]},{"id":"GO:0000331","l":"contractile vacuole","na":4,"nb":1,"a":[["membrane_organelle/contractile_vacuolar_membrane.html","contractile vacuolar membrane"],["membrane_organelle/contractile_vacuole.html","contractile vacuole"],["membrane_organelle/contractile_vacuole_complex.html","contractile vacuole complex"],["membrane_organelle/contractile_vacuole_lumen.html","contractile vacuole lumen"]],"b":[["GO%3A0000331","contractile vacuole"]]},{"id":"GO:0000935","l":"division septum","na":1,"nb":4,"a":[["envelope/division_septum.html","division septum"]],"b":[["ComplexPortal%3ACPX-4602","FtsEX ABC cell division complex"],["GO%3A0000935","division septum"],["GO%3A0000936","primary cell septum"],["GO%3A0051077","secondary cell septum"]]},{"id":"GO:0001535","l":"radial spoke head","na":1,"nb":4,"a":[["cytoskeleton/radial_spoke.html","radial spoke"]],"b":[["GO%3A0120336","radial spoke head 1"],["GO%3A0120337","radial spoke head 2"],["GO%3A0120338","radial spoke head 3"],["GO%3A0001535","radial spoke head"]]},{"id":"GO:0005641","l":"nuclear envelope lumen","na":4,"nb":1,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nuclear_envelope_lumen.html","nuclear envelope lumen"],["membrane_organelle/nuclear_inner_membrane.html","nuclear inner membrane"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"]],"b":[["GO%3A0005641","nuclear envelope lumen"]]},{"id":"GO:0005832","l":"chaperonin-containing T-complex","na":1,"nb":4,"a":[["other/chaperonin_containing_t_complex.html","chaperonin-containing T-complex"]],"b":[["ComplexPortal%3ACPX-2156","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-2772","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-6030","Chaperonin-containing T-complex"],["GO%3A0005832","chaperonin-containing T-complex"]]},{"id":"GO:0005933","l":"cellular bud","na":4,"nb":1,"a":[["envelope/cellular_bud_membrane.html","cellular bud membrane"],["other/cellular_bud.html","cellular bud"],["other/cellular_bud_neck.html","cellular bud neck"],["other/cellular_bud_tip.html","cellular bud tip"]],"b":[["GO%3A0005933","cellular bud"]]},{"id":"GO:0006909","l":"phagocytosis","na":1,"nb":4,"a":[["membrane_organelle/phagocytic_vesicle.html","phagocytic vesicle"]],"b":[["GO%3A0043277","apoptotic cell clearance"],["GO%3A0006909","phagocytosis"],["Reactome%3AR-HSA-9664417","Leishmania phagocytosis"],["InterPro%3AIPR034889","Neutrophil cytosol factor 2, SH3 domain"]]},{"id":"GO:0009543","l":"chloroplast thylakoid lumen","na":4,"nb":1,"a":[["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"],["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"],["membrane_organelle/chloroplast_thylakoid_lumen.html","chloroplast thylakoid lumen"],["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"]],"b":[["GO%3A0009543","chloroplast thylakoid lumen"]]},{"id":"GO:0009842","l":"cyanelle","na":4,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"]],"b":[["GO%3A0009842","cyanelle"]]},{"id":"GO:0010006","l":"Toc complex","na":4,"nb":1,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["other/tic_complex.html","Tic complex"],["other/toc_complex.html","Toc complex"]],"b":[["GO%3A0010006","Toc complex"]]},{"id":"GO:0020031","l":"polar ring of apical complex","na":4,"nb":1,"a":[["cytoskeleton/intraconoid_microtubule.html","intraconoid microtubule"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["cytoskeleton/subpellicular_microtubule.html","subpellicular microtubule"],["other/apical_complex.html","apical complex"]],"b":[["GO%3A0020031","polar ring of apical complex"]]},{"id":"GO:0030094","l":"plasma membrane-derived photosystem I","na":4,"nb":1,"a":[["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["GO%3A0030094","plasma membrane-derived photosystem I"]]},{"id":"GO:0030115","l":"S-layer","na":1,"nb":4,"a":[["envelope/s_layer.html","S-layer"]],"b":[["GO%3A0030115","S-layer"],["NCBIfam%3ANF041335","ArtA-dependent S-layer glycoprotein"],["NCBIfam%3ANF053619","BT1927 family outer membrane S-layer protein"],["NCBIfam%3ANF041073","S-layer protein SlaA"]]},{"id":"GO:0030476","l":"ascospore wall assembly","na":1,"nb":4,"a":[["spore/ascospore_wall.html","ascospore wall"]],"b":[["ComplexPortal%3ACPX-1812","1,3-beta-D-glucan synthase complex, FKS1-RHO1 variant"],["ComplexPortal%3ACPX-1813","1,3-beta-D-glucan synthase complex, FKS2-RHO1 variant"],["ComplexPortal%3ACPX-3028","1,3-beta-D-glucan synthase complex, FKS3-RHO1 variant"],["GO%3A0030476","ascospore wall assembly"]]},{"id":"GO:0030678","l":"mitochondrial ribonuclease P complex","na":1,"nb":4,"a":[["ribonucleoprotein/dimeric_ribonuclease_p_complex.html","dimeric ribonuclease P complex"]],"b":[["ComplexPortal%3ACPX-1294","Mitochondrial ribonuclease P complex"],["ComplexPortal%3ACPX-2632","Mitochondrial ribonuclease P complex"],["ComplexPortal%3ACPX-6155","Mitochondrial ribonuclease P complex"],["GO%3A0030678","mitochondrial ribonuclease P complex"]]},{"id":"GO:0031429","l":"box H/ACA snoRNP complex","na":1,"nb":4,"a":[["other/nucleolus.html","nucleolus"]],"b":[["ComplexPortal%3ACPX-26592","Box H/ACA ribonucleoprotein complex"],["ComplexPortal%3ACPX-2675","Box H/ACA ribonucleoprotein complex"],["ComplexPortal%3ACPX-737","Box H/ACA ribonucleoprotein complex"],["GO%3A0031429","box H/ACA snoRNP complex"]]},{"id":"GO:0031897","l":"Tic complex","na":4,"nb":1,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["other/tic_complex.html","Tic complex"],["other/toc_complex.html","Toc complex"]],"b":[["GO%3A0031897","Tic complex"]]},{"id":"GO:0031972","l":"chloroplast intermembrane space","na":4,"nb":1,"a":[["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_inner_membrane.html","chloroplast inner membrane"],["membrane_organelle/chloroplast_intermembrane_space.html","chloroplast intermembrane space"],["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"]],"b":[["GO%3A0031972","chloroplast intermembrane space"]]},{"id":"GO:0031977","l":"thylakoid lumen","na":1,"nb":4,"a":[["membrane_organelle/plastid_thylakoid_lumen.html","plastid thylakoid lumen"]],"b":[["GO%3A0070117","organellar chromatophore thylakoid lumen"],["GO%3A0031979","plasma membrane-derived thylakoid lumen"],["GO%3A0031978","plastid thylakoid lumen"],["GO%3A0031977","thylakoid lumen"]]},{"id":"GO:0032865","l":"ERMES complex","na":1,"nb":4,"a":[["other/ermes_complex.html","ERMES complex"]],"b":[["ComplexPortal%3ACPX-3196","ERMES complex"],["GO%3A0032865","ERMES complex"],["Pfam%3APF26544","Mitochondrial distribution and morphology protein 12"],["Pfam%3APF12519","Mitochondrial distribution and morphology protein 10"]]},{"id":"GO:0033962","l":"P-body assembly","na":1,"nb":4,"a":[["ribonucleoprotein/p_body.html","P-body"]],"b":[["GO%3A0033962","P-body assembly"],["PANTHER%3APTHR13612","ENHANCER OF MRNA-DECAPPING PROTEIN 3"],["PANTHER%3APTHR21551","TOPOISOMERASE II-ASSOCIATED PROTEIN PAT1"],["PANTHER%3APTHR13110","U6 SNRNA-ASSOCIATED SM-LIKE PROTEIN LSM3"]]},{"id":"GO:0034060","l":"cyanelle stroma","na":4,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"]],"b":[["GO%3A0034060","cyanelle stroma"]]},{"id":"GO:0036156","l":"inner dynein arm","na":4,"nb":1,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_dynein_complex.html","axonemal dynein complex"],["cytoskeleton/axoneme.html","axoneme"],["cytoskeleton/inner_dynein_arm.html","inner dynein arm"]],"b":[["GO%3A0036156","inner dynein arm"]]},{"id":"GO:0036157","l":"outer dynein arm","na":4,"nb":1,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_dynein_complex.html","axonemal dynein complex"],["cytoskeleton/axoneme.html","axoneme"],["cytoskeleton/outer_dynein_arm.html","outer dynein arm"]],"b":[["GO%3A0036157","outer dynein arm"]]},{"id":"GO:0042720","l":"mitochondrial inner membrane peptidase complex","na":1,"nb":4,"a":[["other/mitochondrial_inner_membrane_peptidase_complex.html","mitochondrial inner membrane peptidase complex"]],"b":[["ComplexPortal%3ACPX-1892","Mitochondrial inner membrane peptidase complex"],["ComplexPortal%3ACPX-6244","Mitochondrial inner membrane peptidase complex"],["GO%3A0042720","mitochondrial inner membrane peptidase complex"],["Pfam%3APF11093","Mitochondrial export protein Som1"]]},{"id":"GO:0042721","l":"TIM22 mitochondrial import inner membrane insertion complex","na":1,"nb":4,"a":[["other/tim22_mitochondrial_import_inner_membrane_insertion_complex.html","TIM22 mitochondrial import inner membrane insertion complex"]],"b":[["ComplexPortal%3ACPX-1629","TIM22 mitochondrial inner membrane twin-pore carrier translocase complex"],["ComplexPortal%3ACPX-6124","TIM22 mitochondrial inner membrane twin-pore carrier translocase complex"],["GO%3A0042721","TIM22 mitochondrial import inner membrane insertion complex"],["Pfam%3APF10171","Translocase of the Inner Mitochondrial membrane 29"]]},{"id":"GO:0043107","l":"type IV pilus-dependent motility","na":1,"nb":4,"a":[["appendage/type_iv_pilus.html","type IV pilus"]],"b":[["GO%3A0043107","type IV pilus-dependent motility"],["NCBIfam%3ATIGR01420","PilT/PilU family type 4a pilus ATPase"],["NCBIfam%3ANF016253","type 4a pilus biogenesis protein PilO"],["Pfam%3APF04350","Type IVa pilus alignment subcomplex PilO C-terminal domain"]]},{"id":"GO:0044099","l":"polar tube","na":4,"nb":1,"a":[["membrane_organelle/microsporidian_posterior_vacuole.html","microsporidian posterior vacuole"],["membrane_organelle/polaroplast.html","polaroplast"],["spore/polar_tube.html","polar tube"],["spore/polar_tube_anchoring_disc.html","polar tube anchoring disc"]],"b":[["GO%3A0044099","polar tube"]]},{"id":"GO:0044853","l":"plasma membrane raft","na":1,"nb":4,"a":[["envelope/eisosome_membrane_domain_mcc.html","eisosome membrane domain/MCC"]],"b":[["GO%3A0005901","caveola"],["GO%3A0090512","eisosome membrane domain/MCC"],["GO%3A0044853","plasma membrane raft"],["PANTHER%3APTHR16529","CD177 ANTIGEN"]]},{"id":"GO:0060285","l":"cilium-dependent cell motility","na":1,"nb":4,"a":[["appendage/cilium.html","cilium"]],"b":[["GO%3A0060285","cilium-dependent cell motility"],["GO%3A0030317","flagellated sperm motility"],["PANTHER%3APTHR18962","COILED-COIL DOMAIN-CONTAINING PROTEIN 39"],["PANTHER%3APTHR21625","NYD-SP28 PROTEIN"]]},{"id":"GO:0070113","l":"organellar chromatophore inner membrane","na":4,"nb":1,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_inner_membrane.html","organellar chromatophore inner membrane"],["membrane_organelle/organellar_chromatophore_intermembrane_space.html","organellar chromatophore intermembrane space"],["membrane_organelle/organellar_chromatophore_membrane.html","organellar chromatophore membrane"]],"b":[["GO%3A0070113","organellar chromatophore inner membrane"]]},{"id":"GO:0070114","l":"organellar chromatophore outer membrane","na":4,"nb":1,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_intermembrane_space.html","organellar chromatophore intermembrane space"],["membrane_organelle/organellar_chromatophore_membrane.html","organellar chromatophore membrane"],["membrane_organelle/organellar_chromatophore_outer_membrane.html","organellar chromatophore outer membrane"]],"b":[["GO%3A0070114","organellar chromatophore outer membrane"]]},{"id":"GO:0070116","l":"organellar chromatophore thylakoid","na":4,"nb":1,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"],["membrane_organelle/organellar_chromatophore_thylakoid_lumen.html","organellar chromatophore thylakoid lumen"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"]],"b":[["GO%3A0070116","organellar chromatophore thylakoid"]]},{"id":"GO:0070117","l":"organellar chromatophore thylakoid lumen","na":4,"nb":1,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"],["membrane_organelle/organellar_chromatophore_thylakoid_lumen.html","organellar chromatophore thylakoid lumen"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"]],"b":[["GO%3A0070117","organellar chromatophore thylakoid lumen"]]},{"id":"GO:0070939","l":"Dsl1/NZR complex","na":1,"nb":4,"a":[["other/dsl1_nzr_complex.html","Dsl1/NZR complex"]],"b":[["ComplexPortal%3ACPX-1786","Dsl1 tethering complex"],["ComplexPortal%3ACPX-6201","NRZ tethering complex"],["GO%3A0070939","Dsl1/NZR complex"],["Pfam%3APF04437","RINT-1/TIP-1 family"]]},{"id":"GO:0071020","l":"post-spliceosomal complex","na":1,"nb":4,"a":[["ribonucleoprotein/u12_type_post_spliceosomal_complex.html","U12-type post-spliceosomal complex"]],"b":[["ComplexPortal%3ACPX-26479","Major Post-catalytic P Spliceosome complex"],["GO%3A0071020","post-spliceosomal complex"],["GO%3A0071022","U12-type post-spliceosomal complex"],["GO%3A0071021","U2-type post-spliceosomal complex"]]},{"id":"GO:0090642","l":"microsporidian-type exospore","na":4,"nb":1,"a":[["spore/exosporium.html","exosporium"],["spore/microsporidian_type_endospore.html","microsporidian-type endospore"],["spore/microsporidian_type_exospore.html","microsporidian-type exospore"],["spore/spore_wall.html","spore wall"]],"b":[["GO%3A0090642","microsporidian-type exospore"]]},{"id":"GO:0097594","l":"ventral disc dorsal microribbon","na":4,"nb":1,"a":[["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_crossbridge.html","ventral disc crossbridge"],["cytoskeleton/ventral_disc_dorsal_microribbon.html","ventral disc dorsal microribbon"],["cytoskeleton/ventral_disc_microtubule_array.html","ventral disc microtubule array"]],"b":[["GO%3A0097594","ventral disc dorsal microribbon"]]},{"id":"GO:0120100","l":"bacterial-type flagellum motor","na":4,"nb":1,"a":[["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"],["appendage/periplasmic_flagellum.html","periplasmic flagellum"]],"b":[["GO%3A0120100","bacterial-type flagellum motor"]]},{"id":"GO:0160110","l":"axonemal microtubule doublet inner sheath","na":4,"nb":1,"a":[["cytoskeleton/axonemal_a_tubule_inner_sheath.html","axonemal A tubule inner sheath"],["cytoskeleton/axonemal_b_tubule_inner_sheath.html","axonemal B tubule inner sheath"],["cytoskeleton/axonemal_doublet_microtubule.html","axonemal doublet microtubule"],["cytoskeleton/axonemal_microtubule_doublet_inner_sheath.html","axonemal microtubule doublet inner sheath"]],"b":[["GO%3A0160110","axonemal microtubule doublet inner sheath"]]},{"id":"GO:0160113","l":"axonemal microtubule doublet inner junction","na":4,"nb":1,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_doublet_microtubule.html","axonemal doublet microtubule"],["cytoskeleton/axonemal_microtubule_doublet_inner_junction.html","axonemal microtubule doublet inner junction"],["cytoskeleton/b_axonemal_microtubule.html","B axonemal microtubule"]],"b":[["GO%3A0160113","axonemal microtubule doublet inner junction"]]},{"id":"GO:0160114","l":"axonemal microtubule doublet outer junction","na":4,"nb":1,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_doublet_microtubule.html","axonemal doublet microtubule"],["cytoskeleton/axonemal_microtubule_doublet_outer_junction.html","axonemal microtubule doublet outer junction"],["cytoskeleton/b_axonemal_microtubule.html","B axonemal microtubule"]],"b":[["GO%3A0160114","axonemal microtubule doublet outer junction"]]},{"id":"InterPro:IPR000100","l":"","na":1,"nb":4,"a":[["ribonucleoprotein/dimeric_ribonuclease_p_complex.html","dimeric ribonuclease P complex"]],"b":[["HAMAP%3AMF_00227","Ribonuclease P protein component [rnpA]"],["PANTHER%3APTHR33992","RIBONUCLEASE P PROTEIN COMPONENT"],["Pfam%3APF00825","Ribonuclease P"],["PROSITE%3APS00648","Bacterial ribonuclease P protein component signature"]]},{"id":"InterPro:IPR000527","l":"","na":1,"nb":4,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"]],"b":[["HAMAP%3AMF_00415","Flagellar L-ring protein [flgH]"],["PANTHER%3APTHR34933","FLAGELLAR L-RING PROTEIN"],["Pfam%3APF02107","Flagellar L-ring protein"],["PRINTS%3APR01008","Flagellar L-ring protein signature"]]},{"id":"InterPro:IPR001782","l":"","na":1,"nb":4,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]],"b":[["HAMAP%3AMF_00416","Flagellar P-ring protein [flgI]"],["PANTHER%3APTHR30381","FLAGELLAR P-RING PERIPLASMIC PROTEIN FLGI"],["Pfam%3APF02119","Flagellar P-ring protein"],["PRINTS%3APR01010","Flagellar P-ring protein signature"]]},{"id":"InterPro:IPR005837","l":"","na":1,"nb":4,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF00813","FliP family"],["PRINTS%3APR00951","Flagellar biosynthetic protein FliP signature"],["PROSITE%3APS01060","Flagella transport protein fliP family signature 1"],["PROSITE%3APS01061","Flagella transport protein fliP family signature 2"]]},{"id":"InterPro:IPR011557","l":"","na":1,"nb":4,"a":[["other/dna_gyrase_complex.html","DNA gyrase complex"]],"b":[["Pfam%3APF21249","GyrB, hook"],["Pfam%3APF18053","DNA gyrase B subunit insert domain"],["HAMAP%3AMF_01898","DNA gyrase subunit B [gyrB]"],["Pfam%3APF00986","DNA gyrase B subunit, carboxyl terminus"]]},{"id":"InterPro:IPR040026","l":"","na":1,"nb":4,"a":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"]],"b":[["PANTHER%3APTHR30288","FLAGELLAR CAP/ASSEMBLY PROTEIN FLID"],["Pfam%3APF07195","Flagellar hook-associated protein 2 C-terminus"],["Pfam%3APF02465","Flagellar hook-associated protein 2 N-terminus"],["Pfam%3APF07196","Flagellin hook IN motif"]]},{"id":"UniProt:P0A7N4","l":"Large ribosomal subunit protein bL32","na":1,"nb":4,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01031","50S ribosomal protein L32"],["Pfam%3APF01783","Ribosomal L32p protein family"],["InterPro%3AIPR011332","Zinc-binding ribosomal protein"]]},{"id":"UniProt:P0A7V0","l":"Small ribosomal subunit protein uS2","na":1,"nb":4,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR01011","30S ribosomal protein S2"],["CDD%3Acd01425","RPS2"],["CATH%3A1.10.287.610","Helix hairpin bin"]]},{"id":"UniProt:P0ABH4","l":"","na":1,"nb":4,"a":[["division_machinery/elongasome.html","elongasome"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["NCBIfam%3ANF008282","rod shape-determining protein MreD"],["NCBIfam%3ATIGR03426","rod shape-determining protein MreD"],["Pfam%3APF04093","rod shape-determining protein MreD"]]},{"id":"UniProt:P0C2S5","l":"","na":1,"nb":4,"a":[["other/cellulosome.html","cellulosome"]],"b":[["EC%3A3.2.1.176","cellulose 1,4-beta-cellobiosidase (reducing end)"],["Pfam%3APF00404","Dockerin type I domain"],["PROSITE%3APS00448","Clostridium cellulosome enzymes repeated domain signature"],["Pfam%3APF02011","Glycosyl hydrolase family 48"]]},{"id":"UniProt:Q1PX48","l":"","na":1,"nb":4,"a":[["membrane_organelle/anammoxosome.html","anammoxosome"]],"b":[["EC%3A1.7.2.9","hydroxylamine oxidase"],["RHEA%3A45036","hydroxylamine + 3 Fe(III)-[cytochrome c] = nitric oxide + 3 Fe(II)-[cytochrome c] + 3 H(+)"],["Pfam%3APF22142","Hydroxylamine oxidoreductase, C-terminal domain"],["proteintraitsmech%3ABIOLIP_HG1","HG1-binding site"]]},{"id":"GO:0000002","l":"","na":1,"nb":3,"a":[["nucleoid/mitochondrial_nucleoid.html","mitochondrial nucleoid"]],"b":[["PANTHER%3APTHR45829","MITOCHONDRIAL CARRIER PROTEIN RIM2"],["PANTHER%3APTHR32198","MITOCHONDRIAL ESCAPE PROTEIN 2"],["PANTHER%3APTHR31404","MITOCHONDRIAL GENOME MAINTENANCE PROTEIN MGM101"]]},{"id":"GO:0005632","l":"inner layer of spore wall","na":3,"nb":1,"a":[["spore/ascospore_wall.html","ascospore wall"],["spore/chitosan_layer_of_spore_wall.html","chitosan layer of spore wall"],["spore/inner_layer_of_spore_wall.html","inner layer of spore wall"]],"b":[["GO%3A0005632","inner layer of spore wall"]]},{"id":"GO:0005796","l":"Golgi lumen","na":1,"nb":3,"a":[["membrane_organelle/golgi_lumen.html","Golgi lumen"]],"b":[["GO%3A0005796","Golgi lumen"],["GO%3A0034469","Golgi stack lumen"],["GO%3A0098564","trans-Golgi network transport vesicle lumen"]]},{"id":"GO:0005826","l":"actomyosin contractile ring","na":1,"nb":3,"a":[["cytoskeleton/actomyosin_contractile_ring.html","actomyosin contractile ring"]],"b":[["GO%3A0005826","actomyosin contractile ring"],["GO%3A0110086","meiotic actomyosin contractile ring"],["GO%3A0110085","mitotic actomyosin contractile ring"]]},{"id":"GO:0009290","l":"DNA import into cell involved in transformation","na":1,"nb":3,"a":[["appendage/type_iv_pilus.html","type IV pilus"]],"b":[["GO%3A0009290","DNA import into cell involved in transformation"],["NCBIfam%3ANF041796","DNA import protein CedA"],["NCBIfam%3ATIGR00361","DNA internalization-related competence protein ComEC/Rec2"]]},{"id":"GO:0009422","l":"bacterial-type flagellum hook-filament junction","na":3,"nb":1,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["GO%3A0009422","bacterial-type flagellum hook-filament junction"]]},{"id":"GO:0009429","l":"bacterial-type flagellum basal body, proximal rod","na":3,"nb":1,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"]],"b":[["GO%3A0009429","bacterial-type flagellum basal body, proximal rod"]]},{"id":"GO:0009514","l":"glyoxysome","na":3,"nb":1,"a":[["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysomal_membrane.html","glyoxysomal membrane"],["membrane_organelle/glyoxysome.html","glyoxysome"]],"b":[["GO%3A0009514","glyoxysome"]]},{"id":"GO:0012510","l":"trans-Golgi network transport vesicle membrane","na":3,"nb":1,"a":[["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"],["membrane_organelle/trans_golgi_network_transport_vesicle_membrane.html","trans-Golgi network transport vesicle membrane"],["other/clathrin_coat_of_trans_golgi_network_vesicle.html","clathrin coat of trans-Golgi network vesicle"]],"b":[["GO%3A0012510","trans-Golgi network transport vesicle membrane"]]},{"id":"GO:0020010","l":"conoid","na":3,"nb":1,"a":[["cytoskeleton/conoid.html","conoid"],["cytoskeleton/intraconoid_microtubule.html","intraconoid microtubule"],["other/apical_complex.html","apical complex"]],"b":[["GO%3A0020010","conoid"]]},{"id":"GO:0020015","l":"glycosome","na":3,"nb":1,"a":[["membrane_organelle/glycosome.html","glycosome"],["membrane_organelle/glycosome_lumen.html","glycosome lumen"],["membrane_organelle/glycosome_membrane.html","glycosome membrane"]],"b":[["GO%3A0020015","glycosome"]]},{"id":"GO:0020026","l":"apicomplexan dense granule","na":3,"nb":1,"a":[["membrane_organelle/apicomplexan_dense_granule.html","apicomplexan dense granule"],["membrane_organelle/apicomplexan_dense_granule_membrane.html","apicomplexan dense granule membrane"],["membrane_organelle/mononeme.html","mononeme"]],"b":[["GO%3A0020026","apicomplexan dense granule"]]},{"id":"GO:0030061","l":"mitochondrial crista","na":3,"nb":1,"a":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"],["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"]],"b":[["GO%3A0030061","mitochondrial crista"]]},{"id":"GO:0030124","l":"AP-4 adaptor complex","na":1,"nb":3,"a":[["other/ap_4_adaptor_complex.html","AP-4 adaptor complex"]],"b":[["ComplexPortal%3ACPX-5151","AP-4 Adaptor complex"],["ComplexPortal%3ACPX-5154","AP-4 Adaptor complex"],["GO%3A0030124","AP-4 adaptor complex"]]},{"id":"GO:0030256","l":"type I protein secretion system complex","na":1,"nb":3,"a":[["secretion_system/type_i_protein_secretion_system_complex.html","type I protein secretion system complex"]],"b":[["GO%3A0030256","type I protein secretion system complex"],["NCBIfam%3ATIGR01842","type I secretion system permease/ATPase"],["NCBIfam%3ATIGR01846","type I secretion system permease/ATPase"]]},{"id":"GO:0030681","l":"multimeric ribonuclease P complex","na":1,"nb":3,"a":[["ribonucleoprotein/dimeric_ribonuclease_p_complex.html","dimeric ribonuclease P complex"]],"b":[["GO%3A0030679","cyanelle ribonuclease P complex"],["GO%3A0030681","multimeric ribonuclease P complex"],["GO%3A0005655","nucleolar ribonuclease P complex"]]},{"id":"GO:0030874","l":"nucleolar chromatin","na":1,"nb":3,"a":[["other/nucleolus.html","nucleolus"]],"b":[["GO%3A0030874","nucleolar chromatin"],["GO%3A0097424","nucleolus-associated heterochromatin"],["GO%3A0005731","nucleolus organizer region"]]},{"id":"GO:0031164","l":"contractile vacuolar membrane","na":3,"nb":1,"a":[["membrane_organelle/contractile_vacuolar_membrane.html","contractile vacuolar membrane"],["membrane_organelle/contractile_vacuole.html","contractile vacuole"],["membrane_organelle/contractile_vacuole_lumen.html","contractile vacuole lumen"]],"b":[["GO%3A0031164","contractile vacuolar membrane"]]},{"id":"GO:0031321","l":"ascospore-type prospore assembly","na":1,"nb":3,"a":[["spore/prospore_membrane.html","prospore membrane"]],"b":[["ComplexPortal%3ACPX-5464","Vesicular SNARE complex SSO1-SPO20-SNC1"],["ComplexPortal%3ACPX-5466","Vesicular SNARE complex SSO1-SPO20-SNC2"],["GO%3A0031321","ascospore-type prospore assembly"]]},{"id":"GO:0031908","l":"glyoxysomal lumen","na":3,"nb":1,"a":[["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysomal_membrane.html","glyoxysomal membrane"],["membrane_organelle/glyoxysome.html","glyoxysome"]],"b":[["GO%3A0031908","glyoxysomal lumen"]]},{"id":"GO:0031979","l":"plasma membrane-derived thylakoid lumen","na":3,"nb":1,"a":[["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_lumen.html","plasma membrane-derived thylakoid lumen"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"]],"b":[["GO%3A0031979","plasma membrane-derived thylakoid lumen"]]},{"id":"GO:0031983","l":"vesicle lumen","na":1,"nb":3,"a":[["membrane_organelle/cytoplasmic_vesicle_lumen.html","cytoplasmic vesicle lumen"]],"b":[["GO%3A0060205","cytoplasmic vesicle lumen"],["GO%3A0097489","multivesicular body, internal vesicle lumen"],["GO%3A0031983","vesicle lumen"]]},{"id":"GO:0032047","l":"mitosome","na":3,"nb":1,"a":[["membrane_organelle/mitosome.html","mitosome"],["membrane_organelle/mitosome_envelope.html","mitosome envelope"],["membrane_organelle/mitosome_matrix.html","mitosome matrix"]],"b":[["GO%3A0032047","mitosome"]]},{"id":"GO:0032126","l":"eisosome","na":3,"nb":1,"a":[["cytoskeleton/eisosome_filament.html","eisosome filament"],["envelope/eisosome_membrane_domain_mcc.html","eisosome membrane domain/MCC"],["other/eisosome.html","eisosome"]],"b":[["GO%3A0032126","eisosome"]]},{"id":"GO:0033016","l":"rhoptry membrane","na":3,"nb":1,"a":[["membrane_organelle/rhoptry.html","rhoptry"],["membrane_organelle/rhoptry_lumen.html","rhoptry lumen"],["membrane_organelle/rhoptry_membrane.html","rhoptry membrane"]],"b":[["GO%3A0033016","rhoptry membrane"]]},{"id":"GO:0033107","l":"Cvt vesicle","na":3,"nb":1,"a":[["membrane_organelle/cvt_vesicle.html","Cvt vesicle"],["membrane_organelle/cvt_vesicle_lumen.html","Cvt vesicle lumen"],["membrane_organelle/cvt_vesicle_membrane.html","Cvt vesicle membrane"]],"b":[["GO%3A0033107","Cvt vesicle"]]},{"id":"GO:0033110","l":"Cvt vesicle membrane","na":3,"nb":1,"a":[["membrane_organelle/cvt_vesicle.html","Cvt vesicle"],["membrane_organelle/cvt_vesicle_lumen.html","Cvt vesicle lumen"],["membrane_organelle/cvt_vesicle_membrane.html","Cvt vesicle membrane"]],"b":[["GO%3A0033110","Cvt vesicle membrane"]]},{"id":"GO:0033117","l":"esterosome","na":3,"nb":1,"a":[["membrane_organelle/esterosome.html","esterosome"],["membrane_organelle/esterosome_lumen.html","esterosome lumen"],["membrane_organelle/esterosome_membrane.html","esterosome membrane"]],"b":[["GO%3A0033117","esterosome"]]},{"id":"GO:0033118","l":"esterosome membrane","na":3,"nb":1,"a":[["membrane_organelle/esterosome.html","esterosome"],["membrane_organelle/esterosome_lumen.html","esterosome lumen"],["membrane_organelle/esterosome_membrane.html","esterosome membrane"]],"b":[["GO%3A0033118","esterosome membrane"]]},{"id":"GO:0033163","l":"microneme membrane","na":3,"nb":1,"a":[["membrane_organelle/microneme.html","microneme"],["membrane_organelle/microneme_lumen.html","microneme lumen"],["membrane_organelle/microneme_membrane.html","microneme membrane"]],"b":[["GO%3A0033163","microneme membrane"]]},{"id":"GO:0033281","l":"TAT protein transport complex","na":1,"nb":3,"a":[["secretion_system/tat_protein_transport_complex.html","TAT protein transport complex"]],"b":[["ComplexPortal%3ACPX-3445","Twin-arginine translocation complex"],["GO%3A0033281","TAT protein transport complex"],["NCBIfam%3ATIGR01912","Sec-independent protein translocase TatC"]]},{"id":"GO:0034044","l":"exomer complex","na":1,"nb":3,"a":[["other/exomer_complex.html","exomer complex"]],"b":[["ComplexPortal%3ACPX-1719","Exomer complex"],["ComplexPortal%3ACPX-26504","Exomer complex"],["GO%3A0034044","exomer complex"]]},{"id":"GO:0034423","l":"autophagosome lumen","na":3,"nb":1,"a":[["membrane_organelle/autophagosome.html","autophagosome"],["membrane_organelle/autophagosome_lumen.html","autophagosome lumen"],["membrane_organelle/autophagosome_membrane.html","autophagosome membrane"]],"b":[["GO%3A0034423","autophagosome lumen"]]},{"id":"GO:0034430","l":"monolayer-surrounded lipid storage body outer lipid monolayer","na":3,"nb":1,"a":[["inclusion/lipid_droplet.html","lipid droplet"],["inclusion/monolayer_surrounded_lipid_storage_body_outer_lipid_monolayer.html","monolayer-surrounded lipid storage body outer lipid monolayer"],["inclusion/plastoglobule.html","plastoglobule"]],"b":[["GO%3A0034430","monolayer-surrounded lipid storage body outer lipid monolayer"]]},{"id":"GO:0034467","l":"esterosome lumen","na":3,"nb":1,"a":[["membrane_organelle/esterosome.html","esterosome"],["membrane_organelle/esterosome_lumen.html","esterosome lumen"],["membrane_organelle/esterosome_membrane.html","esterosome membrane"]],"b":[["GO%3A0034467","esterosome lumen"]]},{"id":"GO:0034468","l":"glycosome lumen","na":3,"nb":1,"a":[["membrane_organelle/glycosome.html","glycosome"],["membrane_organelle/glycosome_lumen.html","glycosome lumen"],["membrane_organelle/glycosome_membrane.html","glycosome membrane"]],"b":[["GO%3A0034468","glycosome lumen"]]},{"id":"GO:0034492","l":"hydrogenosome lumen","na":3,"nb":1,"a":[["membrane_organelle/hydrogenosomal_membrane.html","hydrogenosomal membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/hydrogenosome_lumen.html","hydrogenosome lumen"]],"b":[["GO%3A0034492","hydrogenosome lumen"]]},{"id":"GO:0034494","l":"microneme lumen","na":3,"nb":1,"a":[["membrane_organelle/microneme.html","microneme"],["membrane_organelle/microneme_lumen.html","microneme lumen"],["membrane_organelle/microneme_membrane.html","microneme membrane"]],"b":[["GO%3A0034494","microneme lumen"]]},{"id":"GO:0034591","l":"rhoptry lumen","na":3,"nb":1,"a":[["membrane_organelle/rhoptry.html","rhoptry"],["membrane_organelle/rhoptry_lumen.html","rhoptry lumen"],["membrane_organelle/rhoptry_membrane.html","rhoptry membrane"]],"b":[["GO%3A0034591","rhoptry lumen"]]},{"id":"GO:0034777","l":"recycling endosome lumen","na":3,"nb":1,"a":[["membrane_organelle/recycling_endosome.html","recycling endosome"],["membrane_organelle/recycling_endosome_lumen.html","recycling endosome lumen"],["membrane_organelle/recycling_endosome_membrane.html","recycling endosome membrane"]],"b":[["GO%3A0034777","recycling endosome lumen"]]},{"id":"GO:0036286","l":"eisosome filament","na":3,"nb":1,"a":[["cytoskeleton/eisosome_filament.html","eisosome filament"],["envelope/eisosome_membrane_domain_mcc.html","eisosome membrane domain/MCC"],["other/eisosome.html","eisosome"]],"b":[["GO%3A0036286","eisosome filament"]]},{"id":"GO:0042566","l":"hydrogenosome","na":3,"nb":1,"a":[["membrane_organelle/hydrogenosomal_membrane.html","hydrogenosomal membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/hydrogenosome_lumen.html","hydrogenosome lumen"]],"b":[["GO%3A0042566","hydrogenosome"]]},{"id":"GO:0042603","l":"capsule","na":3,"nb":1,"a":[["envelope/capsule.html","capsule"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]],"b":[["GO%3A0042603","capsule"]]},{"id":"GO:0042763","l":"intracellular immature spore","na":1,"nb":3,"a":[["spore/endospore_forming_forespore.html","endospore-forming forespore"]],"b":[["GO%3A0042764","ascospore-type prospore"],["GO%3A0042601","endospore-forming forespore"],["GO%3A0042763","intracellular immature spore"]]},{"id":"GO:0043529","l":"GET complex","na":1,"nb":3,"a":[["other/get_complex.html","GET complex"]],"b":[["ComplexPortal%3ACPX-6464","GET complex"],["ComplexPortal%3ACPX-956","GET complex"],["GO%3A0043529","GET complex"]]},{"id":"GO:0043594","l":"outer endospore membrane","na":3,"nb":1,"a":[["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"],["spore/outer_endospore_membrane.html","outer endospore membrane"],["spore/spore_inner_membrane.html","spore inner membrane"]],"b":[["GO%3A0043594","outer endospore membrane"]]},{"id":"GO:0044599","l":"AP-5 adaptor complex","na":1,"nb":3,"a":[["other/ap_5_adaptor_complex.html","AP-5 adaptor complex"]],"b":[["ComplexPortal%3ACPX-5181","AP-5 Adaptor complex"],["ComplexPortal%3ACPX-5182","AP-5 Adaptor complex"],["GO%3A0044599","AP-5 adaptor complex"]]},{"id":"GO:0046858","l":"chlorosome","na":3,"nb":1,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"]],"b":[["GO%3A0046858","chlorosome"]]},{"id":"GO:0046859","l":"hydrogenosomal membrane","na":3,"nb":1,"a":[["membrane_organelle/hydrogenosomal_membrane.html","hydrogenosomal membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/hydrogenosome_lumen.html","hydrogenosome lumen"]],"b":[["GO%3A0046859","hydrogenosomal membrane"]]},{"id":"GO:0046860","l":"glycosome membrane","na":3,"nb":1,"a":[["membrane_organelle/glycosome.html","glycosome"],["membrane_organelle/glycosome_lumen.html","glycosome lumen"],["membrane_organelle/glycosome_membrane.html","glycosome membrane"]],"b":[["GO%3A0046860","glycosome membrane"]]},{"id":"GO:0046861","l":"glyoxysomal membrane","na":3,"nb":1,"a":[["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysomal_membrane.html","glyoxysomal membrane"],["membrane_organelle/glyoxysome.html","glyoxysome"]],"b":[["GO%3A0046861","glyoxysomal membrane"]]},{"id":"GO:0048492","l":"ribulose bisphosphate carboxylase complex","na":1,"nb":3,"a":[["other/pyrenoid.html","pyrenoid"]],"b":[["GO%3A0009573","chloroplast ribulose bisphosphate carboxylase complex"],["GO%3A0048494","chromatophore ribulose bisphosphate carboxylase complex"],["GO%3A0048492","ribulose bisphosphate carboxylase complex"]]},{"id":"GO:0062159","l":"contractile vacuole complex","na":3,"nb":1,"a":[["membrane_organelle/contractile_vacuole.html","contractile vacuole"],["membrane_organelle/contractile_vacuole_complex.html","contractile vacuole complex"],["membrane_organelle/spongiome.html","spongiome"]],"b":[["GO%3A0062159","contractile vacuole complex"]]},{"id":"GO:0070088","l":"polyhydroxyalkanoate granule","na":1,"nb":3,"a":[["inclusion/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]],"b":[["GO%3A0070088","polyhydroxyalkanoate granule"],["NCBIfam%3ANF045536","polyhydroxyalkanoate granule-associated phasin"],["NCBIfam%3ANF045537","polyhydroxyalkanoate granule-associated phasin"]]},{"id":"GO:0070115","l":"organellar chromatophore intermembrane space","na":3,"nb":1,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_inner_membrane.html","organellar chromatophore inner membrane"],["membrane_organelle/organellar_chromatophore_intermembrane_space.html","organellar chromatophore intermembrane space"]],"b":[["GO%3A0070115","organellar chromatophore intermembrane space"]]},{"id":"GO:0071008","l":"U2-type post-mRNA release spliceosomal complex","na":1,"nb":3,"a":[["ribonucleoprotein/u2_type_post_mrna_release_spliceosomal_complex.html","U2-type post-mRNA release spliceosomal complex"]],"b":[["ComplexPortal%3ACPX-1886","Post-mRNA release spliceosomal complex"],["GO%3A0071008","U2-type post-mRNA release spliceosomal complex"],["Pfam%3APF15458","Nineteen complex-related protein 2"]]},{"id":"GO:0071012","l":"catalytic step 1 spliceosome","na":1,"nb":3,"a":[["ribonucleoprotein/u12_type_catalytic_step_1_spliceosome.html","U12-type catalytic step 1 spliceosome"]],"b":[["GO%3A0071012","catalytic step 1 spliceosome"],["GO%3A0071017","U12-type catalytic step 1 spliceosome"],["GO%3A0071006","U2-type catalytic step 1 spliceosome"]]},{"id":"GO:0090512","l":"eisosome membrane domain/MCC","na":3,"nb":1,"a":[["cytoskeleton/eisosome_filament.html","eisosome filament"],["envelope/eisosome_membrane_domain_mcc.html","eisosome membrane domain/MCC"],["other/eisosome.html","eisosome"]],"b":[["GO%3A0090512","eisosome membrane domain/MCC"]]},{"id":"GO:0090641","l":"microsporidian-type endospore","na":3,"nb":1,"a":[["spore/microsporidian_type_endospore.html","microsporidian-type endospore"],["spore/microsporidian_type_exospore.html","microsporidian-type exospore"],["spore/spore_wall.html","spore wall"]],"b":[["GO%3A0090641","microsporidian-type endospore"]]},{"id":"GO:0097595","l":"ventral disc crossbridge","na":3,"nb":1,"a":[["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_crossbridge.html","ventral disc crossbridge"],["cytoskeleton/ventral_disc_dorsal_microribbon.html","ventral disc dorsal microribbon"]],"b":[["GO%3A0097595","ventral disc crossbridge"]]},{"id":"GO:0106234","l":"outer membrane protein complex","na":1,"nb":3,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["GO%3A0106234","outer membrane protein complex"],["NCBIfam%3ANF033942","outer membrane porin GjpA"],["NCBIfam%3ANF053618","PopA family porin-like outer membrane protein"]]},{"id":"GO:0160111","l":"axonemal A tubule inner sheath","na":3,"nb":1,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_a_tubule_inner_sheath.html","axonemal A tubule inner sheath"],["cytoskeleton/axonemal_microtubule_doublet_inner_sheath.html","axonemal microtubule doublet inner sheath"]],"b":[["GO%3A0160111","axonemal A tubule inner sheath"]]},{"id":"GO:0160112","l":"axonemal B tubule inner sheath","na":3,"nb":1,"a":[["cytoskeleton/axonemal_b_tubule_inner_sheath.html","axonemal B tubule inner sheath"],["cytoskeleton/axonemal_microtubule_doublet_inner_sheath.html","axonemal microtubule doublet inner sheath"],["cytoskeleton/b_axonemal_microtubule.html","B axonemal microtubule"]],"b":[["GO%3A0160112","axonemal B tubule inner sheath"]]},{"id":"GO:0160211","l":"apicoplast membrane","na":3,"nb":1,"a":[["membrane_organelle/apicoplast.html","apicoplast"],["membrane_organelle/apicoplast_membrane.html","apicoplast membrane"],["membrane_organelle/plastid_membrane.html","plastid membrane"]],"b":[["GO%3A0160211","apicoplast membrane"]]},{"id":"GO:1990718","l":"axonemal central pair projection","na":3,"nb":1,"a":[["cytoskeleton/axonemal_central_apparatus.html","axonemal central apparatus"],["cytoskeleton/axonemal_central_pair.html","axonemal central pair"],["cytoskeleton/axonemal_central_pair_projection.html","axonemal central pair projection"]],"b":[["GO%3A1990718","axonemal central pair projection"]]},{"id":"GO:1990900","l":"ciliary pocket collar","na":3,"nb":1,"a":[["cytoskeleton/bilobe_structure.html","bilobe structure"],["cytoskeleton/ciliary_pocket_collar.html","ciliary pocket collar"],["membrane_organelle/flagellar_pocket.html","flagellar pocket"]],"b":[["GO%3A1990900","ciliary pocket collar"]]},{"id":"GO:1990916","l":"Isp3 layer of spore wall","na":3,"nb":1,"a":[["spore/ascospore_wall.html","ascospore wall"],["spore/dityrosine_layer_of_spore_wall.html","dityrosine layer of spore wall"],["spore/isp3_layer_of_spore_wall.html","Isp3 layer of spore wall"]],"b":[["GO%3A1990916","Isp3 layer of spore wall"]]},{"id":"InterPro:IPR001182","l":"","na":1,"nb":3,"a":[["envelope/peptidoglycan_based_cell_wall.html","peptidoglycan-based cell wall"]],"b":[["PANTHER%3APTHR30474","CELL CYCLE PROTEIN"],["Pfam%3APF01098","Cell cycle protein"],["PROSITE%3APS00428","Cell cycle proteins ftsW / rodA / spoVE signature"]]},{"id":"InterPro:IPR001689","l":"","na":1,"nb":3,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]],"b":[["Pfam%3APF02154","Flagellar motor switch protein FliM"],["Pfam%3APF01052","Type III flagellar switch regulator (C-ring) FliN C-term"],["PRINTS%3APR00955","Flagellar motor switch protein FliM signature"]]},{"id":"InterPro:IPR002326","l":"","na":1,"nb":3,"a":[["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"]],"b":[["PANTHER%3APTHR10266","CYTOCHROME C1"],["Pfam%3APF02167","Cytochrome C1 family"],["PRINTS%3APR00603","Cytochrome C1 signature"]]},{"id":"InterPro:IPR003418","l":"","na":1,"nb":3,"a":[["energy_complex/fumarate_reductase_complex.html","fumarate reductase complex"]],"b":[["GO%3A0045283","fumarate reductase complex"],["Pfam%3APF02313","Fumarate reductase subunit D"],["HAMAP%3AMF_00709","Fumarate reductase subunit D [frdD]"]]},{"id":"InterPro:IPR003510","l":"","na":1,"nb":3,"a":[["energy_complex/fumarate_reductase_complex.html","fumarate reductase complex"]],"b":[["GO%3A0045283","fumarate reductase complex"],["Pfam%3APF02300","Fumarate reductase subunit C"],["HAMAP%3AMF_00708","Fumarate reductase subunit C [frdC]"]]},{"id":"InterPro:IPR005737","l":"","na":1,"nb":3,"a":[["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["HAMAP%3AMF_00938","DNA topoisomerase 4 subunit B [parE]"],["Pfam%3APF00986","DNA gyrase B subunit, carboxyl terminus"],["PRINTS%3APR01098","Topoisomerase IV subunit B signature"]]},{"id":"InterPro:IPR005743","l":"","na":1,"nb":3,"a":[["other/dna_gyrase_complex.html","DNA gyrase complex"]],"b":[["Pfam%3APF00521","DNA gyrase/topoisomerase IV, subunit A"],["HAMAP%3AMF_01897","DNA gyrase subunit A [gyrA]"],["Pfam%3APF03989","DNA gyrase C-terminal domain, beta-propeller"]]},{"id":"InterPro:IPR010204","l":"","na":1,"nb":3,"a":[["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"]],"b":[["Pfam%3APF04205","FMN-binding domain"],["HAMAP%3AMF_00427","Na(+)-translocating NADH-quinone reductase subunit C [nqrC]"],["PANTHER%3APTHR37838","NA(+)-TRANSLOCATING NADH-QUINONE REDUCTASE SUBUNIT C"]]},{"id":"InterPro:IPR012826","l":"","na":1,"nb":3,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]],"b":[["Pfam%3APF04509","CheC-like family"],["Pfam%3APF01052","Type III flagellar switch regulator (C-ring) FliN C-term"],["Pfam%3APF16973","Flagellar motor switch protein FliN N-terminal"]]},{"id":"InterPro:IPR026592","l":"","na":1,"nb":3,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["Pfam%3APF04355","Outer membrane protein assembly factor BamE domain"],["HAMAP%3AMF_00925","Outer membrane protein assembly factor BamE [bamE]"],["PANTHER%3APTHR37482","OUTER MEMBRANE PROTEIN ASSEMBLY FACTOR BAME"]]},{"id":"InterPro:IPR050220","l":"","na":1,"nb":3,"a":[["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["Pfam%3APF00521","DNA gyrase/topoisomerase IV, subunit A"],["PANTHER%3APTHR43493","DNA GYRASE/TOPOISOMERASE SUBUNIT A"],["Pfam%3APF03989","DNA gyrase C-terminal domain, beta-propeller"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":3,"a":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]],"b":[["TED%3AAF-A0A142EAM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142EAM9-F1-model_v4_TED03"],["TED%3AAF-A0A1Q3DTY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3DTY6-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3DNE3-F1-model_v4_TED01","TED novel fold AF-A0A1Q3DNE3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":1,"nb":3,"a":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]],"b":[["Pfam%3APF03069","Acetamidase/Formamidase family"],["PROSITE%3APS00818","Dps protein family signature 1"],["Pfam%3APF13810","Domain of unknown function (DUF4185)"]]},{"id":"NCBITaxon:243233","l":"Methylococcus capsulatus Bath","na":1,"nb":3,"a":[["membrane_organelle/methane_oxidizing_organelle.html","methane-oxidizing organelle"]],"b":[["Pfam%3APF17850","CysA C-terminal regulatory domain"],["Pfam%3APF02461","Ammonia monooxygenase"],["TED%3AAF-Q604F4-F1-model_v4_TED02","TED novel fold AF-Q604F4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:381666","l":"Cupriavidus necator H16","na":1,"nb":3,"a":[["inclusion/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]],"b":[["Pfam%3APF13473","Cupredoxin-like domain"],["Pfam%3APF10605","3HB-oligomer hydrolase (3HBOH)"],["Pfam%3APF21783","YNCE-like beta-propeller"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":1,"nb":3,"a":[["microcompartment/bacterial_microcompartment.html","bacterial microcompartment"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF22277","EncFtn-like"],["TED%3AAF-D0LJ11-F1-model_v4_TED04","TED highly-symmetric fold AF-D0LJ11-F1-model_v4_TED04"]]},{"id":"NCBITaxon:5334","l":"Schizophyllum commune","na":1,"nb":3,"a":[["envelope/dolipore_septum.html","dolipore septum"]],"b":[["Pfam%3APF04611","Mating type protein A alpha Y mating type dependent binding region"],["Pfam%3APF01185","Fungal hydrophobin"],["PROSITE%3APS00956","Fungal hydrophobins signature"]]},{"id":"NCBITaxon:55529","l":"Guillardia theta","na":1,"nb":3,"a":[["membrane_organelle/nucleomorph.html","nucleomorph"]],"b":[["Pfam%3APF06868","Protein of unknown function (DUF1257)"],["Pfam%3APF05421","Protein of unknown function (DUF751)"],["TED%3AAF-A0A7S4PQE0-F1-model_v4_TED01","TED novel fold AF-A0A7S4PQE0-F1-model_v4_TED01"]]},{"id":"UniProt:O31728","l":"","na":1,"nb":3,"a":[["division_machinery/divisome_complex.html","divisome complex"]],"b":[["Pfam%3APF04472","Cell division protein SepF"],["InterPro%3AIPR038594","SepF-like superfamily"],["CATH%3A3.30.110.150","SepF-like protein"]]},{"id":"UniProt:P0C018","l":"Large ribosomal subunit protein uL18","na":1,"nb":3,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00060","50S ribosomal protein L18"],["Pfam%3APF00861","Ribosomal L18 of archaea, bacteria, mitoch. and chloroplast"]]},{"id":"UniProt:P35535","l":"","na":1,"nb":3,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0009425","bacterial-type flagellum basal body"],["NCBIfam%3ATIGR01402","flagellar biosynthesis protein FliQ"],["Pfam%3APF01313","Bacterial export proteins, family 3"]]},{"id":"UniProt:P35537","l":"","na":1,"nb":3,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0009425","bacterial-type flagellum basal body"],["NCBIfam%3ATIGR01400","flagellar biosynthetic protein FliR"],["Pfam%3APF01311","Bacterial export proteins, family 1"]]},{"id":"UniProt:P54700","l":"","na":1,"nb":3,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF00813","FliP family"],["PROSITE%3APS01060","Flagella transport protein fliP family signature 1"],["PROSITE%3APS01061","Flagella transport protein fliP family signature 2"]]},{"id":"UniProt:Q9ZFU8","l":"","na":1,"nb":3,"a":[["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"]],"b":[["Pfam%3APF00936","BMC domain"],["Pfam%3APF16365","Ethanolamine utilization protein EutK C-terminus"],["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"CHEBI:16261","l":"chitosan","na":2,"nb":1,"a":[["spore/ascospore_wall.html","ascospore wall"],["spore/chitosan_layer_of_spore_wall.html","chitosan layer of spore wall"]],"b":[["proteintraitsmech%3ABIOLIP_GCS","GCS-binding site"]]},{"id":"CHEBI:16412","l":"","na":2,"nb":1,"a":[["envelope/cell_outer_membrane.html","cell outer membrane"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:25438","l":"","na":1,"nb":2,"a":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]]},{"id":"GO:0000934","l":"porous cell septum","na":1,"nb":2,"a":[["envelope/dolipore_septum.html","dolipore septum"]],"b":[["GO%3A0000937","dolipore septum"],["GO%3A0000934","porous cell septum"]]},{"id":"GO:0001405","l":"PAM complex, Tim23 associated import motor","na":1,"nb":2,"a":[["other/pam_complex_tim23_associated_import_motor.html","PAM complex, Tim23 associated import motor"]],"b":[["GO%3A0001405","PAM complex, Tim23 associated import motor"],["Pfam%3APF08566","Mitochondrial import protein Pam17"]]},{"id":"GO:0005692","l":"U11 snRNP","na":2,"nb":1,"a":[["ribonucleoprotein/u11_snrnp.html","U11 snRNP"],["ribonucleoprotein/u11_u12_snrnp.html","U11/U12 snRNP"]],"b":[["GO%3A0005692","U11 snRNP"]]},{"id":"GO:0005905","l":"clathrin-coated pit","na":2,"nb":1,"a":[["other/clathrin_coat_of_coated_pit.html","clathrin coat of coated pit"],["other/clathrin_coated_pit.html","clathrin-coated pit"]],"b":[["GO%3A0005905","clathrin-coated pit"]]},{"id":"GO:0009319","l":"cytochrome o ubiquinol oxidase complex","na":1,"nb":2,"a":[["energy_complex/cytochrome_o_ubiquinol_oxidase_complex.html","cytochrome o ubiquinol oxidase complex"]],"b":[["ComplexPortal%3ACPX-2102","Cytochrome bo3 ubiquinol oxidase complex"],["GO%3A0009319","cytochrome o ubiquinol oxidase complex"]]},{"id":"GO:0009340","l":"DNA topoisomerase IV complex","na":1,"nb":2,"a":[["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["GO%3A0009340","DNA topoisomerase IV complex"],["NCBIfam%3ATIGR01062","DNA topoisomerase IV subunit A"]]},{"id":"GO:0010287","l":"plastoglobule","na":2,"nb":1,"a":[["inclusion/plastoglobule.html","plastoglobule"],["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"]],"b":[["GO%3A0010287","plastoglobule"]]},{"id":"GO:0020005","l":"symbiont-containing vacuole membrane","na":2,"nb":1,"a":[["membrane_organelle/parasitophorous_vacuole.html","parasitophorous vacuole"],["membrane_organelle/parasitophorous_vacuole_membrane.html","parasitophorous vacuole membrane"]],"b":[["GO%3A0020005","symbiont-containing vacuole membrane"]]},{"id":"GO:0020011","l":"apicoplast","na":2,"nb":1,"a":[["membrane_organelle/apicoplast.html","apicoplast"],["membrane_organelle/apicoplast_membrane.html","apicoplast membrane"]],"b":[["GO%3A0020011","apicoplast"]]},{"id":"GO:0020016","l":"flagellar pocket","na":2,"nb":1,"a":[["cytoskeleton/ciliary_pocket_collar.html","ciliary pocket collar"],["membrane_organelle/flagellar_pocket.html","flagellar pocket"]],"b":[["GO%3A0020016","ciliary pocket"]]},{"id":"GO:0020023","l":"kinetoplast","na":1,"nb":2,"a":[["nucleoid/kinetoplast.html","kinetoplast"]],"b":[["GO%3A0140525","antipodal site"],["GO%3A0020023","kinetoplast"]]},{"id":"GO:0020025","l":"subpellicular microtubule","na":2,"nb":1,"a":[["cytoskeleton/subpellicular_microtubule.html","subpellicular microtubule"],["membrane_organelle/mononeme.html","mononeme"]],"b":[["GO%3A0020025","subpellicular microtubule"]]},{"id":"GO:0030114","l":"slime layer","na":2,"nb":1,"a":[["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]],"b":[["GO%3A0030114","slime layer"]]},{"id":"GO:0030668","l":"apicomplexan dense granule membrane","na":2,"nb":1,"a":[["membrane_organelle/apicomplexan_dense_granule.html","apicomplexan dense granule"],["membrane_organelle/apicomplexan_dense_granule_membrane.html","apicomplexan dense granule membrane"]],"b":[["GO%3A0030668","apicomplexan dense granule membrane"]]},{"id":"GO:0031205","l":"endoplasmic reticulum Sec complex","na":2,"nb":1,"a":[["other/endoplasmic_reticulum_sec_complex.html","endoplasmic reticulum Sec complex"],["other/sec62_sec63_complex.html","Sec62/Sec63 complex"]],"b":[["GO%3A0031205","endoplasmic reticulum Sec complex"]]},{"id":"GO:0031518","l":"CBF3 complex","na":1,"nb":2,"a":[["other/cbf3_complex.html","CBF3 complex"]],"b":[["ComplexPortal%3ACPX-1898","CBF3 complex"],["GO%3A0031518","CBF3 complex"]]},{"id":"GO:0031561","l":"cellular bud tip polarisome","na":2,"nb":1,"a":[["other/cellular_bud_tip.html","cellular bud tip"],["other/polarisome.html","polarisome"]],"b":[["GO%3A0031561","cellular bud tip polarisome"]]},{"id":"GO:0031903","l":"microbody membrane","na":1,"nb":2,"a":[["membrane_organelle/peroxisomal_membrane.html","peroxisomal membrane"]],"b":[["GO%3A0031903","microbody membrane"],["GO%3A0005778","peroxisomal membrane"]]},{"id":"GO:0031907","l":"microbody lumen","na":1,"nb":2,"a":[["membrane_organelle/peroxisomal_matrix.html","peroxisomal matrix"]],"b":[["GO%3A0031907","microbody lumen"],["GO%3A0005782","peroxisomal matrix"]]},{"id":"GO:0031910","l":"cytostome","na":2,"nb":1,"a":[["membrane_organelle/early_endosome.html","early endosome"],["other/cytostome.html","cytostome"]],"b":[["GO%3A0031910","cytostome"]]},{"id":"GO:0032010","l":"phagolysosome","na":1,"nb":2,"a":[["membrane_organelle/phagocytic_vesicle.html","phagocytic vesicle"]],"b":[["GO%3A0020020","food vacuole"],["GO%3A0032010","phagolysosome"]]},{"id":"GO:0032258","l":"cytoplasm to vacuole targeting by the Cvt pathway","na":2,"nb":1,"a":[["membrane_organelle/cvt_vesicle.html","Cvt vesicle"],["membrane_organelle/cvt_vesicle_membrane.html","Cvt vesicle membrane"]],"b":[["GO%3A0032258","cytoplasm to vacuole targeting by the Cvt pathway"]]},{"id":"GO:0033099","l":"attachment organelle","na":2,"nb":1,"a":[["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"]],"b":[["GO%3A0033099","attachment organelle"]]},{"id":"GO:0033101","l":"cellular bud membrane","na":2,"nb":1,"a":[["envelope/cellular_bud_membrane.html","cellular bud membrane"],["other/cellular_bud.html","cellular bud"]],"b":[["GO%3A0033101","cellular bud membrane"]]},{"id":"GO:0033102","l":"acidocalcisome membrane","na":2,"nb":1,"a":[["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"]],"b":[["GO%3A0033102","acidocalcisome membrane"]]},{"id":"GO:0033105","l":"chlorosome envelope","na":2,"nb":1,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"]],"b":[["GO%3A0033105","chlorosome envelope"]]},{"id":"GO:0033111","l":"attachment organelle membrane","na":2,"nb":1,"a":[["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"]],"b":[["GO%3A0033111","attachment organelle membrane"]]},{"id":"GO:0033551","l":"monopolin complex","na":1,"nb":2,"a":[["other/monopolin_complex.html","monopolin complex"]],"b":[["ComplexPortal%3ACPX-1681","Monopolin complex"],["GO%3A0033551","monopolin complex"]]},{"id":"GO:0034063","l":"stress granule assembly","na":1,"nb":2,"a":[["ribonucleoprotein/cytoplasmic_stress_granule.html","cytoplasmic stress granule"]],"b":[["ComplexPortal%3ACPX-1412","UBP3-BRE5 ubiquitin hydrolase complex"],["GO%3A0034063","stress granule assembly"]]},{"id":"GO:0034270","l":"Cvt complex","na":2,"nb":1,"a":[["membrane_organelle/cvt_vesicle.html","Cvt vesicle"],["membrane_organelle/cvt_vesicle_membrane.html","Cvt vesicle membrane"]],"b":[["GO%3A0034270","Cvt complex"]]},{"id":"GO:0034335","l":"DNA negative supercoiling activity","na":1,"nb":2,"a":[["other/dna_gyrase_complex.html","DNA gyrase complex"]],"b":[["ComplexPortal%3ACPX-2177","GyrA-GyrB DNA Gyrase complex"],["GO%3A0034335","DNA negative supercoiling activity"]]},{"id":"GO:0042644","l":"chloroplast nucleoid","na":2,"nb":1,"a":[["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"],["nucleoid/chloroplast_nucleoid.html","chloroplast nucleoid"]],"b":[["GO%3A0042644","chloroplast nucleoid"]]},{"id":"GO:0042764","l":"ascospore-type prospore","na":2,"nb":1,"a":[["spore/endospore_forming_forespore.html","endospore-forming forespore"],["spore/prospore_membrane.html","prospore membrane"]],"b":[["GO%3A0042764","ascospore-type prospore"]]},{"id":"GO:0043592","l":"exosporium","na":1,"nb":2,"a":[["spore/exosporium.html","exosporium"]],"b":[["GO%3A0043592","exosporium"],["NCBIfam%3ATIGR03720","exosporium leader peptide-containing protein"]]},{"id":"GO:0043846","l":"DNA polymerase III, clamp loader complex","na":1,"nb":2,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"]],"b":[["ComplexPortal%3ACPX-1926","DNA polymerase III clamp loader complex"],["GO%3A0043846","DNA polymerase III, clamp loader complex"]]},{"id":"GO:0044096","l":"type IV pilus","na":2,"nb":1,"a":[["appendage/tad_pilus.html","Tad pilus"],["appendage/type_iv_pilus.html","type IV pilus"]],"b":[["GO%3A0044096","type IV pilus"]]},{"id":"GO:0044315","l":"protein secretion by the type VII secretion system","na":2,"nb":1,"a":[["secretion_system/esx_3_type_vii_secretion_system_membrane_complex.html","ESX-3 type VII secretion system membrane complex"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]],"b":[["GO%3A0044315","protein secretion by the type VII secretion system"]]},{"id":"GO:0044775","l":"DNA polymerase III, beta sliding clamp processivity factor complex","na":1,"nb":2,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"]],"b":[["ComplexPortal%3ACPX-1927","DNA polymerase III, beta sliding clamp processivity factor complex"],["GO%3A0044775","DNA polymerase III, beta sliding clamp processivity factor complex"]]},{"id":"GO:0044776","l":"DNA polymerase III, core complex","na":1,"nb":2,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"]],"b":[["ComplexPortal%3ACPX-1925","DNA polymerase III core complex"],["GO%3A0044776","DNA polymerase III, core complex"]]},{"id":"GO:0044777","l":"single-stranded DNA-binding protein complex","na":1,"nb":2,"a":[["other/single_stranded_dna_binding_protein_complex.html","single-stranded DNA-binding protein complex"]],"b":[["ComplexPortal%3ACPX-1928","SSB single-stranded DNA binding complex"],["GO%3A0044777","single-stranded DNA-binding protein complex"]]},{"id":"GO:0045283","l":"fumarate reductase complex","na":1,"nb":2,"a":[["energy_complex/fumarate_reductase_complex.html","fumarate reductase complex"]],"b":[["ComplexPortal%3ACPX-1967","Plasma membrane fumarate reductase complex"],["GO%3A0045283","fumarate reductase complex"]]},{"id":"GO:0051144","l":"1,2-propanediol catabolic process","na":1,"nb":2,"a":[["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]],"b":[["GO%3A0051144","1,2-propanediol catabolic process"],["NCBIfam%3ANF047788","transcriptional regulator PocR"]]},{"id":"GO:0055040","l":"periplasmic flagellum","na":1,"nb":2,"a":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]],"b":[["GO%3A0055040","periplasmic flagellum"],["NCBIfam%3ANF047448","flagellar coiling protein FcpA"]]},{"id":"GO:0061701","l":"bacterial outer membrane vesicle","na":1,"nb":2,"a":[["other/bacterial_outer_membrane_vesicle.html","bacterial outer membrane vesicle"]],"b":[["GO%3A0061701","bacterial outer membrane vesicle"],["NCBIfam%3ANF049843","BAR domain-like protein A BdpA"]]},{"id":"GO:0062155","l":"curli secretion complex","na":1,"nb":2,"a":[["appendage/curli.html","curli"]],"b":[["ComplexPortal%3ACPX-4743","Curli secretion complex"],["GO%3A0062155","curli secretion complex"]]},{"id":"GO:0062160","l":"spongiome","na":2,"nb":1,"a":[["membrane_organelle/contractile_vacuole_complex.html","contractile vacuole complex"],["membrane_organelle/spongiome.html","spongiome"]],"b":[["GO%3A0062160","spongiome"]]},{"id":"GO:0070056","l":"prospore membrane leading edge","na":2,"nb":1,"a":[["spore/prospore_membrane.html","prospore membrane"],["spore/prospore_membrane_leading_edge.html","prospore membrane leading edge"]],"b":[["GO%3A0070056","prospore membrane leading edge"]]},{"id":"GO:0070057","l":"prospore membrane spindle pole body attachment site","na":2,"nb":1,"a":[["spore/prospore_membrane.html","prospore membrane"],["spore/prospore_membrane_spindle_pole_body_attachment_site.html","prospore membrane spindle pole body attachment site"]],"b":[["GO%3A0070057","prospore membrane spindle pole body attachment site"]]},{"id":"GO:0070070","l":"proton-transporting V-type ATPase complex assembly","na":1,"nb":2,"a":[["other/rave_complex.html","RAVE complex"]],"b":[["GO%3A0070070","proton-transporting V-type ATPase complex assembly"],["GO%3A0070072","vacuolar proton-transporting V-type ATPase complex assembly"]]},{"id":"GO:0070258","l":"inner membrane pellicle complex","na":2,"nb":1,"a":[["cytoskeleton/subpellicular_microtubule.html","subpellicular microtubule"],["membrane_organelle/inner_membrane_pellicle_complex.html","inner membrane pellicle complex"]],"b":[["GO%3A0070258","inner membrane pellicle complex"]]},{"id":"GO:0070477","l":"endospore core","na":2,"nb":1,"a":[["spore/endospore_core.html","endospore core"],["spore/spore_inner_membrane.html","spore inner membrane"]],"b":[["GO%3A0070477","endospore core"]]},{"id":"GO:0071005","l":"U2-type precatalytic spliceosome","na":2,"nb":1,"a":[["ribonucleoprotein/u2_type_catalytic_step_1_spliceosome.html","U2-type catalytic step 1 spliceosome"],["ribonucleoprotein/u2_type_precatalytic_spliceosome.html","U2-type precatalytic spliceosome"]],"b":[["GO%3A0071005","U2-type precatalytic spliceosome"]]},{"id":"GO:0071007","l":"U2-type catalytic step 2 spliceosome","na":1,"nb":2,"a":[["ribonucleoprotein/u2_type_catalytic_step_2_spliceosome.html","U2-type catalytic step 2 spliceosome"]],"b":[["ComplexPortal%3ACPX-26472","Major Spliceosomal C* complex"],["GO%3A0071007","U2-type catalytic step 2 spliceosome"]]},{"id":"GO:0071015","l":"U12-type prespliceosome","na":2,"nb":1,"a":[["ribonucleoprotein/u12_type_precatalytic_spliceosome.html","U12-type precatalytic spliceosome"],["ribonucleoprotein/u12_type_prespliceosome.html","U12-type prespliceosome"]],"b":[["GO%3A0071015","U12-type prespliceosome"]]},{"id":"GO:0071017","l":"U12-type catalytic step 1 spliceosome","na":2,"nb":1,"a":[["ribonucleoprotein/u12_type_catalytic_step_1_spliceosome.html","U12-type catalytic step 1 spliceosome"],["ribonucleoprotein/u12_type_catalytic_step_2_spliceosome.html","U12-type catalytic step 2 spliceosome"]],"b":[["GO%3A0071017","U12-type catalytic step 1 spliceosome"]]},{"id":"GO:0071018","l":"U12-type catalytic step 2 spliceosome","na":1,"nb":2,"a":[["ribonucleoprotein/u12_type_catalytic_step_2_spliceosome.html","U12-type catalytic step 2 spliceosome"]],"b":[["ComplexPortal%3ACPX-26509","Minor Spliceosomal B-act complex"],["GO%3A0071018","U12-type catalytic step 2 spliceosome"]]},{"id":"GO:0071019","l":"U12-type post-mRNA release spliceosomal complex","na":2,"nb":1,"a":[["ribonucleoprotein/u12_type_post_mrna_release_spliceosomal_complex.html","U12-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u12_type_post_spliceosomal_complex.html","U12-type post-spliceosomal complex"]],"b":[["GO%3A0071019","U12-type post-mRNA release spliceosomal complex"]]},{"id":"GO:0071261","l":"Ssh1 translocon complex","na":1,"nb":2,"a":[["other/ssh1_translocon_complex.html","Ssh1 translocon complex"]],"b":[["ComplexPortal%3ACPX-1834","SSH1 translocon complex"],["GO%3A0071261","Ssh1 translocon complex"]]},{"id":"GO:0071970","l":"fungal-type cell wall (1->3)-beta-D-glucan biosynthetic process","na":1,"nb":2,"a":[["other/1_3_beta_d_glucan_synthase_complex.html","1,3-beta-D-glucan synthase complex"]],"b":[["GO%3A0034413","ascospore wall (1->3)-beta-D-glucan biosynthetic process"],["GO%3A0071970","fungal-type cell wall (1->3)-beta-D-glucan biosynthetic process"]]},{"id":"GO:0090383","l":"phagosome acidification","na":1,"nb":2,"a":[["membrane_organelle/phagocytic_vesicle_lumen.html","phagocytic vesicle lumen"]],"b":[["GO%3A0090383","phagosome acidification"],["GO%3A0090390","phagosome acidification involved in apoptotic cell clearance"]]},{"id":"GO:0097002","l":"mitochondrial inner boundary membrane","na":2,"nb":1,"a":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"]],"b":[["GO%3A0097002","mitochondrial inner boundary membrane"]]},{"id":"GO:0097591","l":"ventral disc lateral crest","na":2,"nb":1,"a":[["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_lateral_crest.html","ventral disc lateral crest"]],"b":[["GO%3A0097591","ventral disc lateral crest"]]},{"id":"GO:0097592","l":"ventral disc overlap zone","na":2,"nb":1,"a":[["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_overlap_zone.html","ventral disc overlap zone"]],"b":[["GO%3A0097592","ventral disc overlap zone"]]},{"id":"GO:0097596","l":"ventral disc supernumerary microtubule array","na":2,"nb":1,"a":[["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_supernumerary_microtubule_array.html","ventral disc supernumerary microtubule array"]],"b":[["GO%3A0097596","ventral disc supernumerary microtubule array"]]},{"id":"GO:0098775","l":"curli assembly","na":1,"nb":2,"a":[["appendage/curli.html","curli"]],"b":[["ComplexPortal%3ACPX-4743","Curli secretion complex"],["GO%3A0098775","curli assembly"]]},{"id":"GO:0106176","l":"clathrin-coated endocytic vesicle lumen","na":2,"nb":1,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle_lumen.html","clathrin-coated endocytic vesicle lumen"],["membrane_organelle/endocytic_vesicle_lumen.html","endocytic vesicle lumen"]],"b":[["GO%3A0106176","clathrin-coated endocytic vesicle lumen"]]},{"id":"GO:0120119","l":"flagellum attachment zone","na":2,"nb":1,"a":[["cytoskeleton/bilobe_structure.html","bilobe structure"],["cytoskeleton/flagellum_attachment_zone.html","flagellum attachment zone"]],"b":[["GO%3A0120119","flagellum attachment zone"]]},{"id":"GO:0120217","l":"DNA gyrase complex","na":1,"nb":2,"a":[["other/dna_gyrase_complex.html","DNA gyrase complex"]],"b":[["ComplexPortal%3ACPX-2177","GyrA-GyrB DNA Gyrase complex"],["GO%3A0120217","DNA gyrase complex"]]},{"id":"GO:0140549","l":"spore inner membrane","na":2,"nb":1,"a":[["spore/endospore_core.html","endospore core"],["spore/spore_inner_membrane.html","spore inner membrane"]],"b":[["GO%3A0140549","spore inner membrane"]]},{"id":"GO:0160115","l":"axonemal microtubule doublet ribbon","na":2,"nb":1,"a":[["cytoskeleton/axonemal_doublet_microtubule.html","axonemal doublet microtubule"],["cytoskeleton/axonemal_microtubule_doublet_ribbon.html","axonemal microtubule doublet ribbon"]],"b":[["GO%3A0160115","axonemal microtubule doublet ribbon"]]},{"id":"GO:0160223","l":"pyrenoid tubule","na":2,"nb":1,"a":[["membrane_organelle/pyrenoid_tubule.html","pyrenoid tubule"],["other/pyrenoid.html","pyrenoid"]],"b":[["GO%3A0160223","pyrenoid tubule"]]},{"id":"GO:1990061","l":"bacterial degradosome","na":1,"nb":2,"a":[["ribonucleoprotein/bacterial_degradosome.html","bacterial degradosome"]],"b":[["ComplexPortal%3ACPX-403","RNA degradosome"],["GO%3A1990061","bacterial degradosome"]]},{"id":"GO:1990063","l":"Bam protein complex","na":1,"nb":2,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["ComplexPortal%3ACPX-1923","BAM complex"],["GO%3A1990063","Bam protein complex"]]},{"id":"GO:1990070","l":"TRAPPI protein complex","na":1,"nb":2,"a":[["other/trappi_protein_complex.html","TRAPPI protein complex"]],"b":[["ComplexPortal%3ACPX-1940","TRAPPI protein complex"],["GO%3A1990070","TRAPPI protein complex"]]},{"id":"GO:1990732","l":"pyrenoid","na":2,"nb":1,"a":[["membrane_organelle/pyrenoid_tubule.html","pyrenoid tubule"],["other/pyrenoid.html","pyrenoid"]],"b":[["GO%3A1990732","pyrenoid"]]},{"id":"InterPro:IPR000563","l":"","na":1,"nb":2,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF02108","Flagellar assembly protein FliH"],["PRINTS%3APR01003","Flagellar assembly protein FliH signature"]]},{"id":"InterPro:IPR002585","l":"","na":1,"nb":2,"a":[["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]],"b":[["PANTHER%3APTHR30365","CYTOCHROME D UBIQUINOL OXIDASE"],["Pfam%3APF01654","Cytochrome bd terminal oxidase subunit I"]]},{"id":"InterPro:IPR003317","l":"","na":1,"nb":2,"a":[["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]],"b":[["PANTHER%3APTHR43141","CYTOCHROME BD2 SUBUNIT II"],["Pfam%3APF02322","Cytochrome bd terminal oxidase subunit II"]]},{"id":"InterPro:IPR005742","l":"","na":1,"nb":2,"a":[["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["HAMAP%3AMF_00936","DNA topoisomerase 4 subunit A [parC]"],["Pfam%3APF03989","DNA gyrase C-terminal domain, beta-propeller"]]},{"id":"InterPro:IPR006301","l":"","na":1,"nb":2,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF00771","FHIPEP family"],["PROSITE%3APS00994","Bacterial export FHIPEP family signature"]]},{"id":"InterPro:IPR006333","l":"","na":1,"nb":2,"a":[["energy_complex/cytochrome_o_ubiquinol_oxidase_complex.html","cytochrome o ubiquinol oxidase complex"]],"b":[["Pfam%3APF00116","Cytochrome C oxidase subunit II, periplasmic domain"],["Pfam%3APF06481","COX Aromatic Rich Motif"]]},{"id":"InterPro:IPR006344","l":"","na":1,"nb":2,"a":[["other/exodeoxyribonuclease_v_complex.html","exodeoxyribonuclease V complex"]],"b":[["Pfam%3APF13245","AAA domain"],["HAMAP%3AMF_01487","RecBCD enzyme subunit RecD [recD]"]]},{"id":"InterPro:IPR008703","l":"","na":1,"nb":2,"a":[["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"]],"b":[["HAMAP%3AMF_00425","Na(+)-translocating NADH-quinone reductase subunit A [nqrA]"],["PANTHER%3APTHR37839","NA(+)-TRANSLOCATING NADH-QUINONE REDUCTASE SUBUNIT A"]]},{"id":"InterPro:IPR011344","l":"","na":1,"nb":2,"a":[["other/single_stranded_dna_binding_protein_complex.html","single-stranded DNA-binding protein complex"]],"b":[["HAMAP%3AMF_00984","Single-stranded DNA-binding protein"],["PANTHER%3APTHR10302","SINGLE-STRANDED DNA-BINDING PROTEIN"]]},{"id":"InterPro:IPR012422","l":"Cytochrome c oxidase, subunit IV, bacterial aa3 type","na":1,"nb":2,"a":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]],"b":[["InterPro%3AIPR012422","Cytochrome c oxidase, subunit IV, bacterial aa3 type"],["Pfam%3APF07835","Bacterial aa3 type cytochrome c oxidase subunit IV"]]},{"id":"InterPro:IPR014524","l":"","na":1,"nb":2,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["Pfam%3APF06804","Outer membrane protein assembly factor BamC-like C-terminal domain"],["HAMAP%3AMF_00924","Outer membrane protein assembly factor BamC [bamC]"]]},{"id":"InterPro:IPR017687","l":"","na":1,"nb":2,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["HAMAP%3AMF_00923","Outer membrane protein assembly factor BamB [bamB]"],["Pfam%3APF13360","Outer membrane protein assembly factor BamB"]]},{"id":"InterPro:IPR017689","l":"","na":1,"nb":2,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["HAMAP%3AMF_00922","Outer membrane protein assembly factor BamD [bamD]"],["Pfam%3APF13525","Outer membrane lipoprotein"]]},{"id":"InterPro:IPR024791","l":"","na":1,"nb":2,"a":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]],"b":[["Pfam%3APF00510","Cytochrome c oxidase subunit III"],["PANTHER%3APTHR11403","CYTOCHROME C OXIDASE SUBUNIT III"]]},{"id":"InterPro:IPR030689","l":"","na":1,"nb":2,"a":[["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"]],"b":[["Pfam%3APF00032","Cytochrome b(C-terminal)/b6/petD"],["Pfam%3APF00033","Cytochrome b/b6/petB"]]},{"id":"InterPro:IPR040747","l":"BILBO1, N-terminal domain","na":1,"nb":2,"a":[["cytoskeleton/ciliary_pocket_collar.html","ciliary pocket collar"]],"b":[["InterPro%3AIPR040747","BILBO1, N-terminal domain"],["Pfam%3APF18281","BILBO1 N-terminal domain"]]},{"id":"NCBITaxon:198110","l":"Pseudomonas phage 201phi2-1","na":2,"nb":1,"a":[["cytoskeleton/phuz_spindle.html","PhuZ spindle"],["other/phage_nucleus.html","phage nucleus"]],"b":[["Pfam%3APF25677","Phikzvirus chimallin family"]]},{"id":"NCBITaxon:264462","l":"Bdellovibrio bacteriovorus HD100","na":1,"nb":2,"a":[["appendage/type_iv_pilus.html","type IV pilus"]],"b":[["TED%3AAF-Q6MMM6-F1-model_v4_TED01","TED novel fold AF-Q6MMM6-F1-model_v4_TED01"],["TED%3AAF-Q6MPT8-F1-model_v4_TED01","TED novel fold AF-Q6MPT8-F1-model_v4_TED01"]]},{"id":"Pfam:PF04454","l":"Encapsulating protein for peroxidase","na":1,"nb":2,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]],"b":[["Pfam%3APF04454","Encapsulating protein for peroxidase"],["proteintraitsmech%3AINTERFACE_PF04454_PF04454","Linocin_M18–Linocin_M18 domain interface"]]},{"id":"Pfam:PF06386","l":"Gas vesicle synthesis protein GvpL/GvpF","na":1,"nb":2,"a":[["inclusion/gas_vesicle.html","gas vesicle"]],"b":[["Pfam%3APF06386","Gas vesicle synthesis protein GvpL/GvpF"],["proteintraitsmech%3AINTERFACE_PF06386_PF06386","GvpL_GvpF–GvpL_GvpF domain interface"]]},{"id":"Pfam:PF18281","l":"BILBO1 N-terminal domain","na":1,"nb":2,"a":[["cytoskeleton/ciliary_pocket_collar.html","ciliary pocket collar"]],"b":[["Pfam%3APF18281","BILBO1 N-terminal domain"],["proteintraitsmech%3AINTERFACE_PF18281_PF18281","BILBO1_N–BILBO1_N domain interface"]]},{"id":"UniProt:P11558","l":"","na":1,"nb":2,"a":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]],"b":[["RHEA%3A12532","coenzyme B + methyl-coenzyme M = methane + coenzyme M-coenzyme B heterodisulfide"],["MCSA%3A156","coenzyme-B sulfoethylthiotransferase"]]},{"id":"UniProt:P16328","l":"","na":1,"nb":2,"a":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"]],"b":[["Pfam%3APF07195","Flagellar hook-associated protein 2 C-terminus"],["Pfam%3APF02465","Flagellar hook-associated protein 2 N-terminus"]]},{"id":"UniProt:P26462","l":"","na":2,"nb":1,"a":[["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"]],"b":[["Pfam%3APF02049","Flagellar hook-basal body complex protein FliE"]]},{"id":"UniProt:P37093","l":"","na":1,"nb":2,"a":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"]],"b":[["Pfam%3APF22341","GSPII protein E, N1E domain"],["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]]},{"id":"UniProt:P45689","l":"","na":2,"nb":1,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"UniProt:P52616","l":"","na":2,"nb":1,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"]],"b":[["Pfam%3APF21504","Flagellin, barrel domain"]]},{"id":"UniProt:Q03511","l":"","na":2,"nb":1,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"UniProt:Q03512","l":"","na":2,"nb":1,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["Pfam%3APF03319","Ethanolamine utilisation protein EutN/carboxysome"]]},{"id":"UniProt:Q31QW7","l":"","na":2,"nb":1,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"]]},{"id":"CHEBI:30033","l":"","na":1,"nb":1,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"]],"b":[["proteintraitsmech%3ABIOLIP_BCL","BCL-binding site"]]},{"id":"GO:0000147","l":"actin cortical patch assembly","na":1,"nb":1,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"]],"b":[["GO%3A0000147","actin cortical patch assembly"]]},{"id":"GO:0000937","l":"dolipore septum","na":1,"nb":1,"a":[["envelope/dolipore_septum.html","dolipore septum"]],"b":[["GO%3A0000937","dolipore septum"]]},{"id":"GO:0001411","l":"hyphal tip","na":1,"nb":1,"a":[["other/spitzenkorper.html","spitzenkorper"]],"b":[["GO%3A0001411","hyphal tip"]]},{"id":"GO:0001536","l":"radial spoke stalk","na":1,"nb":1,"a":[["cytoskeleton/radial_spoke.html","radial spoke"]],"b":[["GO%3A0001536","radial spoke stalk"]]},{"id":"GO:0020003","l":"symbiont-containing vacuole","na":1,"nb":1,"a":[["membrane_organelle/parasitophorous_vacuole.html","parasitophorous vacuole"]],"b":[["GO%3A0020003","symbiont-containing vacuole"]]},{"id":"GO:0020004","l":"symbiont-containing vacuolar space","na":1,"nb":1,"a":[["membrane_organelle/parasitophorous_vacuole_lumen.html","parasitophorous vacuole lumen"]],"b":[["GO%3A0020004","symbiont-containing vacuolar space"]]},{"id":"GO:0020018","l":"ciliary pocket membrane","na":1,"nb":1,"a":[["membrane_organelle/flagellar_pocket.html","flagellar pocket"]],"b":[["GO%3A0020018","ciliary pocket membrane"]]},{"id":"GO:0020020","l":"food vacuole","na":1,"nb":1,"a":[["membrane_organelle/food_vacuole.html","food vacuole"]],"b":[["GO%3A0020020","food vacuole"]]},{"id":"GO:0020036","l":"","na":1,"nb":1,"a":[["membrane_organelle/maurer_s_cleft.html","Maurer's cleft"]],"b":[["GO%3A0020036","Maurer's cleft"]]},{"id":"GO:0030680","l":"dimeric ribonuclease P complex","na":1,"nb":1,"a":[["ribonucleoprotein/dimeric_ribonuclease_p_complex.html","dimeric ribonuclease P complex"]],"b":[["GO%3A0030680","dimeric ribonuclease P complex"]]},{"id":"GO:0031039","l":"macronucleus","na":1,"nb":1,"a":[["membrane_organelle/macronucleus.html","macronucleus"]],"b":[["GO%3A0031039","macronucleus"]]},{"id":"GO:0031040","l":"micronucleus","na":1,"nb":1,"a":[["membrane_organelle/micronucleus.html","micronucleus"]],"b":[["GO%3A0031040","micronucleus"]]},{"id":"GO:0031080","l":"nuclear pore outer ring","na":1,"nb":1,"a":[["other/nuclear_pore_outer_ring.html","nuclear pore outer ring"]],"b":[["GO%3A0031080","nuclear pore outer ring"]]},{"id":"GO:0031471","l":"ethanolamine degradation polyhedral organelle","na":1,"nb":1,"a":[["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"]],"b":[["GO%3A0031471","ethanolamine degradation polyhedral organelle"]]},{"id":"GO:0031472","l":"propanediol degradation polyhedral organelle","na":1,"nb":1,"a":[["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]],"b":[["GO%3A0031472","propanediol degradation polyhedral organelle"]]},{"id":"GO:0031521","l":"spitzenkorper","na":1,"nb":1,"a":[["other/spitzenkorper.html","spitzenkorper"]],"b":[["GO%3A0031521","spitzenkorper"]]},{"id":"GO:0031560","l":"cellular bud neck polarisome","na":1,"nb":1,"a":[["other/polarisome.html","polarisome"]],"b":[["GO%3A0031560","cellular bud neck polarisome"]]},{"id":"GO:0031562","l":"hyphal tip polarisome","na":1,"nb":1,"a":[["other/polarisome.html","polarisome"]],"b":[["GO%3A0031562","hyphal tip polarisome"]]},{"id":"GO:0031563","l":"mating projection tip polarisome","na":1,"nb":1,"a":[["other/polarisome.html","polarisome"]],"b":[["GO%3A0031563","mating projection tip polarisome"]]},{"id":"GO:0032009","l":"early phagosome","na":1,"nb":1,"a":[["membrane_organelle/phagocytic_vesicle.html","phagocytic vesicle"]],"b":[["GO%3A0032009","early phagosome"]]},{"id":"GO:0032120","l":"ascospore-type prospore membrane formation","na":1,"nb":1,"a":[["spore/prospore_membrane.html","prospore membrane"]],"b":[["GO%3A0032120","ascospore-type prospore membrane formation"]]},{"id":"GO:0033009","l":"nucleomorph","na":1,"nb":1,"a":[["membrane_organelle/nucleomorph.html","nucleomorph"]],"b":[["GO%3A0033009","nucleomorph"]]},{"id":"GO:0033172","l":"gas vesicle shell","na":1,"nb":1,"a":[["inclusion/gas_vesicle_shell.html","gas vesicle shell"]],"b":[["GO%3A0033172","gas vesicle shell"]]},{"id":"GO:0033289","l":"intraconoid microtubule","na":1,"nb":1,"a":[["cytoskeleton/intraconoid_microtubule.html","intraconoid microtubule"]],"b":[["GO%3A0033289","intraconoid microtubule"]]},{"id":"GO:0033985","l":"acidocalcisome lumen","na":1,"nb":1,"a":[["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"]],"b":[["GO%3A0033985","acidocalcisome lumen"]]},{"id":"GO:0035253","l":"ciliary rootlet","na":1,"nb":1,"a":[["cytoskeleton/ciliary_rootlet.html","ciliary rootlet"]],"b":[["GO%3A0035253","ciliary rootlet"]]},{"id":"GO:0036000","l":"mucocyst","na":1,"nb":1,"a":[["membrane_organelle/mucocyst.html","mucocyst"]],"b":[["GO%3A0036000","mucocyst"]]},{"id":"GO:0036407","l":"mycolate outer membrane","na":1,"nb":1,"a":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]],"b":[["GO%3A0036407","mycolate outer membrane"]]},{"id":"GO:0042645","l":"mitochondrial nucleoid","na":1,"nb":1,"a":[["nucleoid/mitochondrial_nucleoid.html","mitochondrial nucleoid"]],"b":[["GO%3A0042645","mitochondrial nucleoid"]]},{"id":"GO:0043263","l":"cellulosome","na":1,"nb":1,"a":[["other/cellulosome.html","cellulosome"]],"b":[["GO%3A0043263","cellulosome"]]},{"id":"GO:0044227","l":"methane-oxidizing organelle","na":1,"nb":1,"a":[["membrane_organelle/methane_oxidizing_organelle.html","methane-oxidizing organelle"]],"b":[["GO%3A0044227","methane-oxidizing organelle"]]},{"id":"GO:0044311","l":"exoneme","na":1,"nb":1,"a":[["membrane_organelle/exoneme.html","exoneme"]],"b":[["GO%3A0044311","exoneme"]]},{"id":"GO:0044611","l":"nuclear pore inner ring","na":1,"nb":1,"a":[["other/nuclear_pore_inner_ring.html","nuclear pore inner ring"]],"b":[["GO%3A0044611","nuclear pore inner ring"]]},{"id":"GO:0044612","l":"nuclear pore linkers","na":1,"nb":1,"a":[["other/nuclear_pore_linkers.html","nuclear pore linkers"]],"b":[["GO%3A0044612","nuclear pore linkers"]]},{"id":"GO:0044613","l":"nuclear pore central transport channel","na":1,"nb":1,"a":[["other/nuclear_pore_central_transport_channel.html","nuclear pore central transport channel"]],"b":[["GO%3A0044613","nuclear pore central transport channel"]]},{"id":"GO:0044614","l":"nuclear pore cytoplasmic filaments","na":1,"nb":1,"a":[["other/nuclear_pore_cytoplasmic_filaments.html","nuclear pore cytoplasmic filaments"]],"b":[["GO%3A0044614","nuclear pore cytoplasmic filaments"]]},{"id":"GO:0044615","l":"nuclear pore nuclear basket","na":1,"nb":1,"a":[["other/nuclear_pore_nuclear_basket.html","nuclear pore nuclear basket"]],"b":[["GO%3A0044615","nuclear pore nuclear basket"]]},{"id":"GO:0044674","l":"methyl coenzyme M reductase complex","na":1,"nb":1,"a":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]],"b":[["GO%3A0044674","methyl coenzyme M reductase complex"]]},{"id":"GO:0045009","l":"chitosome","na":1,"nb":1,"a":[["membrane_organelle/chitosome.html","chitosome"]],"b":[["GO%3A0045009","chitosome"]]},{"id":"GO:0046188","l":"methane catabolic process","na":1,"nb":1,"a":[["membrane_organelle/methane_oxidizing_organelle.html","methane-oxidizing organelle"]],"b":[["GO%3A0046188","methane catabolic process"]]},{"id":"GO:0055039","l":"trichocyst","na":1,"nb":1,"a":[["membrane_organelle/trichocyst.html","trichocyst"]],"b":[["GO%3A0055039","trichocyst"]]},{"id":"GO:0061909","l":"autophagosome-lysosome fusion","na":1,"nb":1,"a":[["membrane_organelle/autophagosome.html","autophagosome"]],"b":[["GO%3A0061909","autophagosome-lysosome fusion"]]},{"id":"GO:0061927","l":"TOC-TIC supercomplex I","na":1,"nb":1,"a":[["membrane_organelle/chloroplast.html","chloroplast"]],"b":[["GO%3A0061927","TOC-TIC supercomplex I"]]},{"id":"GO:0070074","l":"mononeme","na":1,"nb":1,"a":[["membrane_organelle/mononeme.html","mononeme"]],"b":[["GO%3A0070074","mononeme"]]},{"id":"GO:0070676","l":"intralumenal vesicle formation","na":1,"nb":1,"a":[["other/escrt_iv_complex.html","ESCRT IV complex"]],"b":[["GO%3A0070676","intralumenal vesicle formation"]]},{"id":"GO:0071022","l":"U12-type post-spliceosomal complex","na":1,"nb":1,"a":[["ribonucleoprotein/u12_type_post_spliceosomal_complex.html","U12-type post-spliceosomal complex"]],"b":[["GO%3A0071022","U12-type post-spliceosomal complex"]]},{"id":"GO:0097268","l":"cytoophidium","na":1,"nb":1,"a":[["cytoskeleton/cytoophidium.html","cytoophidium"]],"b":[["GO%3A0097268","cytoophidium"]]},{"id":"GO:0097568","l":"median body","na":1,"nb":1,"a":[["cytoskeleton/median_body.html","median body"]],"b":[["GO%3A0097568","median body"]]},{"id":"GO:0097691","l":"bacterial extracellular vesicle","na":1,"nb":1,"a":[["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"]],"b":[["GO%3A0097691","bacterial extracellular vesicle"]]},{"id":"GO:0097740","l":"paraflagellar rod","na":1,"nb":1,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["GO%3A0097740","paraflagellar rod"]]},{"id":"GO:0097741","l":"mastigoneme","na":1,"nb":1,"a":[["appendage/mastigoneme.html","mastigoneme"]],"b":[["GO%3A0097741","mastigoneme"]]},{"id":"GO:0098561","l":"methyl accepting chemotaxis protein complex","na":1,"nb":1,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["GO%3A0098561","methyl accepting chemotaxis protein complex"]]},{"id":"GO:0098774","l":"curli","na":1,"nb":1,"a":[["appendage/curli.html","curli"]],"b":[["GO%3A0098774","curli"]]},{"id":"GO:0110145","l":"magnetosome lumen","na":1,"nb":1,"a":[["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"]],"b":[["GO%3A0110145","magnetosome lumen"]]},{"id":"GO:0120120","l":"bilobe structure","na":1,"nb":1,"a":[["cytoskeleton/bilobe_structure.html","bilobe structure"]],"b":[["GO%3A0120120","bilobe structure"]]},{"id":"GO:0120121","l":"tripartite attachment complex","na":1,"nb":1,"a":[["cytoskeleton/tripartite_attachment_complex.html","tripartite attachment complex"]],"b":[["GO%3A0120121","tripartite attachment complex"]]},{"id":"GO:0120234","l":"stereocilium coat","na":1,"nb":1,"a":[["envelope/glycocalyx.html","glycocalyx"]],"b":[["GO%3A0120234","stereocilium coat"]]},{"id":"GO:0120238","l":"sperm glycocalyx","na":1,"nb":1,"a":[["envelope/glycocalyx.html","glycocalyx"]],"b":[["GO%3A0120238","sperm glycocalyx"]]},{"id":"GO:0120239","l":"vascular endothelial glycocalyx","na":1,"nb":1,"a":[["envelope/glycocalyx.html","glycocalyx"]],"b":[["GO%3A0120239","vascular endothelial glycocalyx"]]},{"id":"GO:0120240","l":"platelet glycocalyx","na":1,"nb":1,"a":[["envelope/glycocalyx.html","glycocalyx"]],"b":[["GO%3A0120240","platelet glycocalyx"]]},{"id":"GO:0120343","l":"radial spoke neck","na":1,"nb":1,"a":[["cytoskeleton/radial_spoke.html","radial spoke"]],"b":[["GO%3A0120343","radial spoke neck"]]},{"id":"GO:0140266","l":"Woronin body","na":1,"nb":1,"a":[["membrane_organelle/woronin_body.html","Woronin body"]],"b":[["GO%3A0140266","Woronin body"]]},{"id":"GO:0140621","l":"type I pilus","na":1,"nb":1,"a":[["appendage/type_i_pilus.html","type I pilus"]],"b":[["GO%3A0140621","type I pilus"]]},{"id":"GO:0140623","l":"type I pilus assembly","na":1,"nb":1,"a":[["appendage/type_i_pilus.html","type I pilus"]],"b":[["GO%3A0140623","type I pilus assembly"]]},{"id":"GO:0160201","l":"polaroplast","na":1,"nb":1,"a":[["membrane_organelle/polaroplast.html","polaroplast"]],"b":[["GO%3A0160201","polaroplast"]]},{"id":"GO:0160202","l":"polar tube anchoring disc","na":1,"nb":1,"a":[["spore/polar_tube_anchoring_disc.html","polar tube anchoring disc"]],"b":[["GO%3A0160202","polar tube anchoring disc"]]},{"id":"GO:0160292","l":"sodium-translocating NADH:quinone reductase complex","na":1,"nb":1,"a":[["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"]],"b":[["GO%3A0160292","sodium-translocating NADH:quinone reductase complex"]]},{"id":"GO:1990131)","l":"","na":1,"nb":1,"a":[["other/ragulator_complex.html","Ragulator complex"]],"b":[["GO%3A0071986","Ragulator complex"]]},{"id":"GO:1990225","l":"rhoptry neck","na":1,"nb":1,"a":[["membrane_organelle/rhoptry_neck.html","rhoptry neck"]],"b":[["GO%3A1990225","rhoptry neck"]]},{"id":"GO:1990413","l":"eyespot apparatus","na":1,"nb":1,"a":[["membrane_organelle/eyespot_apparatus.html","eyespot apparatus"]],"b":[["GO%3A1990413","eyespot apparatus"]]},{"id":"InterPro:IPR000067","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"]],"b":[["PRINTS%3APR01009","Flagellar M-ring protein signature"]]},{"id":"InterPro:IPR003178","l":"","na":1,"nb":1,"a":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]],"b":[["Pfam%3APF02240","Methyl-coenzyme M reductase gamma subunit"]]},{"id":"InterPro:IPR004586","l":"","na":1,"nb":1,"a":[["other/exodeoxyribonuclease_v_complex.html","exodeoxyribonuclease V complex"]],"b":[["HAMAP%3AMF_01485","RecBCD enzyme subunit RecB [recB]"]]},{"id":"InterPro:IPR005884","l":"","na":1,"nb":1,"a":[["energy_complex/fumarate_reductase_complex.html","fumarate reductase complex"]],"b":[["PROSITE%3APS00504","Fumarate reductase / succinate dehydrogenase FAD-binding site"]]},{"id":"InterPro:IPR006136","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF01312","FlhB HrpN YscU SpaS Family"]]},{"id":"InterPro:IPR006303","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF01311","Bacterial export proteins, family 1"]]},{"id":"InterPro:IPR006305","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF01313","Bacterial export proteins, family 3"]]},{"id":"InterPro:IPR006697","l":"","na":1,"nb":1,"a":[["other/exodeoxyribonuclease_v_complex.html","exodeoxyribonuclease V complex"]],"b":[["HAMAP%3AMF_01486","RecBCD enzyme subunit RecC [recC]"]]},{"id":"InterPro:IPR007824","l":"","na":1,"nb":1,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["Pfam%3APF05149","Paraflagellar rod protein"]]},{"id":"InterPro:IPR010205","l":"","na":1,"nb":1,"a":[["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"]],"b":[["HAMAP%3AMF_00430","Na(+)-translocating NADH-quinone reductase subunit F [nqrF]"]]},{"id":"InterPro:IPR010966","l":"","na":1,"nb":1,"a":[["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"]],"b":[["HAMAP%3AMF_00426","Na(+)-translocating NADH-quinone reductase subunit B [nqrB]"]]},{"id":"InterPro:IPR010967","l":"","na":1,"nb":1,"a":[["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"]],"b":[["HAMAP%3AMF_00429","Na(+)-translocating NADH-quinone reductase subunit E [nqrE]"]]},{"id":"InterPro:IPR011292","l":"","na":1,"nb":1,"a":[["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"]],"b":[["HAMAP%3AMF_00428","Na(+)-translocating NADH-quinone reductase subunit D [nqrD]"]]},{"id":"InterPro:IPR012823","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF02050","Flagellar FliJ protein"]]},{"id":"InterPro:IPR014207","l":"","na":1,"nb":1,"a":[["energy_complex/cytochrome_o_ubiquinol_oxidase_complex.html","cytochrome o ubiquinol oxidase complex"]],"b":[["PROSITE%3APS00077","Heme-copper oxidase catalytic subunit, copper B binding region signature"]]},{"id":"InterPro:IPR014210","l":"","na":1,"nb":1,"a":[["energy_complex/cytochrome_o_ubiquinol_oxidase_complex.html","cytochrome o ubiquinol oxidase complex"]],"b":[["Pfam%3APF03626","Prokaryotic Cytochrome C oxidase subunit IV"]]},{"id":"InterPro:IPR023707","l":"","na":1,"nb":1,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["HAMAP%3AMF_01430","Outer membrane protein assembly factor BamA [bamA]"]]},{"id":"InterPro:IPR047743","l":"","na":1,"nb":1,"a":[["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]],"b":[["Pfam%3APF28012","Membrane protein YnhF-like"]]},{"id":"Pfam:PF05149","l":"Paraflagellar rod protein","na":1,"nb":1,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["Pfam%3APF05149","Paraflagellar rod protein"]]},{"id":"UniProt:A0QQ46","l":"","na":1,"nb":1,"a":[["secretion_system/esx_3_type_vii_secretion_system_membrane_complex.html","ESX-3 type VII secretion system membrane complex"]],"b":[["Pfam%3APF19053","EccD-like transmembrane domain"]]},{"id":"UniProt:O85041","l":"","na":1,"nb":1,"a":[["microcompartment/carboxysome.html","carboxysome"]],"b":[["Pfam%3APF12288","Carboxysome shell peptide mid-region"]]},{"id":"UniProt:P0A1C7","l":"","na":1,"nb":1,"a":[["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]],"b":[["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"UniProt:P0A1K1","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF02050","Flagellar FliJ protein"]]},{"id":"UniProt:P0A1N8","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"]],"b":[["proteintraitsmech%3ABIOLIP_TQN","TQN-binding site"]]},{"id":"UniProt:P0A314","l":"","na":1,"nb":1,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"]],"b":[["Pfam%3APF02043","Bacteriochlorophyll C binding protein"]]},{"id":"UniProt:P0A3F8","l":"","na":1,"nb":1,"a":[["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]],"b":[["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]]},{"id":"UniProt:P0A3W0","l":"","na":1,"nb":1,"a":[["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]],"b":[["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"]]},{"id":"UniProt:P0A8Q0.","l":"","na":1,"nb":1,"a":[["energy_complex/fumarate_reductase_complex.html","fumarate reductase complex"]],"b":[["proteintraitsmech%3ABIOLIP_MQ7","MQ7-binding site"]]},{"id":"UniProt:P0ABB4","l":"","na":1,"nb":1,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"]]},{"id":"UniProt:P11560","l":"","na":1,"nb":1,"a":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]],"b":[["MCSA%3A156","coenzyme-B sulfoethylthiotransferase"]]},{"id":"UniProt:P11562","l":"","na":1,"nb":1,"a":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]],"b":[["MCSA%3A156","coenzyme-B sulfoethylthiotransferase"]]},{"id":"UniProt:P14016","l":"","na":1,"nb":1,"a":[["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]],"b":[["Pfam%3APF10628","Outer spore coat protein E (CotE)"]]},{"id":"UniProt:P22225","l":"","na":1,"nb":1,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["Pfam%3APF05149","Paraflagellar rod protein"]]},{"id":"UniProt:P26418","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]],"b":[["Pfam%3APF02154","Flagellar motor switch protein FliM"]]},{"id":"UniProt:P26419","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]],"b":[["Pfam%3APF16973","Flagellar motor switch protein FliN N-terminal"]]},{"id":"UniProt:P27134","l":"","na":1,"nb":1,"a":[["microcompartment/carboxysome.html","carboxysome"]],"b":[["PROSITE%3APS00704","Prokaryotic-type carbonic anhydrases signature 1"]]},{"id":"UniProt:P40727","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF01312","FlhB HrpN YscU SpaS Family"]]},{"id":"UniProt:P41784","l":"","na":1,"nb":1,"a":[["secretion_system/type_iii_protein_secretion_system_complex.html","type III protein secretion system complex"]],"b":[["proteintraitsmech%3ABIOLIP_DXC","DXC-binding site"]]},{"id":"UniProt:P41791","l":"","na":1,"nb":1,"a":[["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"]],"b":[["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"UniProt:P41792","l":"","na":1,"nb":1,"a":[["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"]],"b":[["Pfam%3APF03319","Ethanolamine utilisation protein EutN/carboxysome"]]},{"id":"UniProt:P54702","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF01311","Bacterial export proteins, family 1"]]},{"id":"UniProt:P70856","l":"","na":1,"nb":1,"a":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]],"b":[["Pfam%3APF04620","Flagellar filament outer layer protein Flaa"]]},{"id":"UniProt:P75471","l":"","na":1,"nb":1,"a":[["appendage/attachment_organelle.html","attachment organelle"]],"b":[["Pfam%3APF27734","Cytadherence high molecular weight protein 2"]]},{"id":"UniProt:P9WHT9","l":"","na":1,"nb":1,"a":[["other/proteasome_core_complex.html","proteasome core complex"]],"b":[["proteintraitsmech%3ABIOLIP_SA6","SA6-binding site"]]},{"id":"UniProt:Q06851","l":"","na":1,"nb":1,"a":[["other/cellulosome.html","cellulosome"]],"b":[["Pfam%3APF00963","Cohesin domain"]]},{"id":"UniProt:Q26789","l":"","na":1,"nb":1,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["Pfam%3APF05149","Paraflagellar rod protein"]]},{"id":"UniProt:Q46367","l":"","na":1,"nb":1,"a":[["membrane_organelle/chlorosome.html","chlorosome"]],"b":[["Pfam%3APF11098","Chlorosome envelope protein C"]]},{"id":"UniProt:Q46383","l":"","na":1,"nb":1,"a":[["membrane_organelle/chlorosome.html","chlorosome"]],"b":[["Pfam%3APF27499","CsmB chlorosome envelope protein"]]},{"id":"UniProt:Q46386","l":"","na":1,"nb":1,"a":[["membrane_organelle/chlorosome.html","chlorosome"]],"b":[["Pfam%3APF02043","Bacteriochlorophyll C binding protein"]]},{"id":"UniProt:Q9XDM8","l":"","na":1,"nb":1,"a":[["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]],"b":[["Pfam%3APF00936","BMC domain"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/CommunityMech--AntibioticMech.json b/assets/fleet/edges/CommunityMech--AntibioticMech.json index 46335b1..cbc53cc 100644 --- a/assets/fleet/edges/CommunityMech--AntibioticMech.json +++ b/assets/fleet/edges/CommunityMech--AntibioticMech.json @@ -1 +1 @@ -{"a":"CommunityMech","b":"AntibioticMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","AntibioticMech":"https://culturebotai.github.io/AntibioticMech/pages/"},"n":58,"by":{"CHEBI":39,"NCBITaxon":19},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":13,"nb":30,"a":[["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"]]},{"id":"CHEBI:33709","l":"amino acid","na":12,"nb":8,"a":[["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["antibacterial/7-3-aminopyrrolidin-1-yl-1-2-4-difluorophenyl-6-fluoro-4-oxo-1-4-dihyd.html","7-(3-aminopyrrolidin-1-yl)-1-(2,4-difluorophenyl)-6-fluoro-4-oxo-1,4-dihydro-1,8-naphthyridine-3-carboxylic"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/pipemidic-acid.html","pipemidic acid"],["antibacterial/trovafloxacin.html","trovafloxacin"],["antifungal/mediomycin-a.html","mediomycin A"],["antifungal/mediomycin-b.html","mediomycin B"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":7,"nb":12,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":6,"nb":8,"a":[["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"],["Sedimenting_Arabinose_Glucose_Saccharomyces_Coculture.html","Sedimenting Arabinose-Glucose Saccharomyces Coculture"],["Synechococcus_Saccharomyces_SPC.html","Synechococcus-Saccharomyces Synthetic Photosynthetic Consortium"]],"b":[["antifungal/anidulafungin.html","anidulafungin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/caspofungin.html","caspofungin"],["antifungal/cycloheximide.html","cycloheximide"],["antifungal/micafungin.html","micafungin"],["antifungal/oligomycin-a.html","oligomycin A"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":11,"nb":3,"a":[["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":3,"nb":6,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":2,"nb":15,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":13,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/bromodeoxytopsentin.html","bromodeoxytopsentin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":2,"nb":7,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["antibacterial/brefeldin-a.html","brefeldin A"],["antifungal/anidulafungin.html","anidulafungin"],["antifungal/caspofungin.html","caspofungin"],["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/micafungin.html","micafungin"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":5,"nb":2,"a":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["antibacterial/mupirocin.html","mupirocin"],["antifungal/2-4-diacetylphloroglucinol.html","2,4-diacetylphloroglucinol"]]},{"id":"CHEBI:30746","l":"benzoic acid","na":4,"nb":2,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["biocide/benzoic-acid.html","benzoic acid"],["biocide/carboxy-ptio.html","carboxy-PTIO"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":2,"nb":4,"a":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"CHEBI:26523","l":"reactive oxygen species","na":2,"nb":2,"a":[["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"],["biocide/ozone.html","ozone"]]},{"id":"CHEBI:33282","l":"antibacterial agent","na":1,"nb":496,"a":[["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"]],"b":[["antibacterial/1-2-dodecanediol.html","1,2-dodecanediol"],["antibacterial/1-6-dihydroxy-2-methyl-9-10-anthraquinone.html","1,6-dihydroxy-2-methyl-9,10-anthraquinone"],["antibacterial/1-carbapenem-3-carboxylic-acid.html","1-carbapenem-3-carboxylic acid"],["antibacterial/1-dodecylguanidine-acetate.html","1-dodecylguanidine acetate"],["antibacterial/1-dodecylguanidine.html","1-dodecylguanidine"],["antibacterial/1-hydroxycrisamicin-a.html","1-hydroxycrisamicin A"]]},{"id":"CHEBI:16236","l":"ethanol","na":22,"nb":1,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["biocide/ethanol.html","ethanol"]]},{"id":"CHEBI:22315","l":"alkaloid","na":1,"nb":21,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["antibacterial/14-norpseurotin-a.html","14-norpseurotin A"],["antibacterial/5-bromo-8-methoxy-1-methyl-%CE%B2-carboline.html","5-bromo-8-methoxy-1-methyl-β-carboline"],["antibacterial/undecylprodigiosin.html","undecylprodigiosin"],["antifungal/feruloylagmatine.html","feruloylagmatine"],["antifungal/pyrrolnitrin.html","pyrrolnitrin"],["antifungal/sampangine.html","sampangine"]]},{"id":"CHEBI:33575","l":"carboxylic acid","na":1,"nb":11,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"]],"b":[["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefatrizine.html","cefatrizine"],["antibacterial/cefazedone.html","cefazedone"],["antibacterial/cefcapene.html","cefcapene"],["antibacterial/cefditoren.html","cefditoren"],["antibacterial/cefiderocol.html","cefiderocol"]]},{"id":"NCBITaxon:2697049","l":"Severe acute respiratory syndrome coronavirus 2","na":1,"nb":8,"a":[["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"]],"b":[["antibacterial/3-6-diaminoacridine.html","3,6-diaminoacridine"],["antibacterial/anacardic-acid.html","anacardic acid"],["antibacterial/baicalein.html","baicalein"],["antibacterial/ebselen.html","ebselen"],["antibacterial/hexachlorophene.html","hexachlorophene"],["antifungal/disulfiram.html","disulfiram"]]},{"id":"CHEBI:15366","l":"acetic acid","na":6,"nb":1,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"]],"b":[["biocide/acetic-acid.html","acetic acid"]]},{"id":"CHEBI:30769","l":"citric acid","na":6,"nb":1,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["unspecified/citric-acid.html","citric acid"]]},{"id":"CHEBI:15904","l":"long-chain fatty acid","na":1,"nb":4,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["antibacterial/9z-12z-15z-octadeca-9-12-15-trien-6-ynoic-acid.html","(9Z,12Z,15Z)-octadeca-9,12,15-trien-6-ynoic acid"],["antifungal/10e-15z-9-12-13-trihydroxy-10-15-octadecadienoic-acid.html","(10E,15Z)-9,12,13-trihydroxy-10,15-octadecadienoic acid"],["antimycobacterial/scleropyric-acid.html","scleropyric acid"],["antiprotozoal/minquartynoic-acid.html","minquartynoic acid"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":4,"nb":1,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"CHEBI:16670","l":"peptide","na":4,"nb":1,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["antibacterial/cefbuperazone.html","cefbuperazone"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":3,"nb":1,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["biocide/formaldehyde.html","formaldehyde"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":3,"nb":1,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"CHEBI:60004","l":"mixture","na":1,"nb":3,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["antifungal/dimethomorph.html","dimethomorph"],["antifungal/flumorph.html","flumorph"],["biocide/urea-hydrogen-peroxide.html","urea hydrogen peroxide"]]},{"id":"CHEBI:87393","l":"hexan-1-ol","na":3,"nb":1,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["antibacterial/hexan-1-ol.html","hexan-1-ol"]]},{"id":"NCBITaxon:117187","l":"Fusarium verticillioides","na":1,"nb":3,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/fludioxonil.html","fludioxonil"]]},{"id":"NCBITaxon:5180","l":"Sclerotinia sclerotiorum","na":1,"nb":3,"a":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]],"b":[["antifungal/carboxin.html","carboxin"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/iprodione.html","iprodione"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":3,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"NCBITaxon:5480","l":"Candida parapsilosis","na":1,"nb":3,"a":[["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"CHEBI:132106","l":"sodium propionate","na":2,"nb":1,"a":[["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["antifungal/sodium-propionate.html","sodium propionate"]]},{"id":"CHEBI:15882","l":"phenol","na":2,"nb":1,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]],"b":[["biocide/phenol.html","phenol"]]},{"id":"CHEBI:26401","l":"purines","na":1,"nb":2,"a":[["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"]],"b":[["antiviral/mercaptopurine.html","mercaptopurine"],["antiviral/valganciclovir.html","valganciclovir"]]},{"id":"CHEBI:28837","l":"octanoic acid","na":2,"nb":1,"a":[["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["antibacterial/octanoic-acid.html","octanoic acid"]]},{"id":"CHEBI:30751","l":"formic acid","na":2,"nb":1,"a":[["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["antibacterial/formic-acid.html","formic acid"]]},{"id":"CHEBI:30768","l":"propionic acid","na":2,"nb":1,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["antifungal/propionic-acid.html","propionic acid"]]},{"id":"CHEBI:62412","l":"phenazine-1-carboxylic acid","na":2,"nb":1,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"]],"b":[["antifungal/phenazine-1-carboxylic-acid.html","phenazine-1-carboxylic acid"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":1,"nb":2,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"],["unspecified/streptothricin-d.html","streptothricin D"]]},{"id":"CHEBI:16188","l":"octan-1-ol","na":1,"nb":1,"a":[["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["antifungal/octan-1-ol.html","octan-1-ol"]]},{"id":"CHEBI:16914","l":"salicylic acid","na":1,"nb":1,"a":[["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"]],"b":[["antifungal/salicylic-acid.html","salicylic acid"]]},{"id":"CHEBI:17642","l":"pentachlorophenol","na":1,"nb":1,"a":[["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["antifungal/pentachlorophenol.html","pentachlorophenol"]]},{"id":"CHEBI:17847","l":"p-cresol","na":1,"nb":1,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["antifungal/p-cresol.html","p-cresol"]]},{"id":"CHEBI:17855","l":"triglyceride","na":1,"nb":1,"a":[["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["antifungal/triacetin.html","triacetin"]]},{"id":"CHEBI:195240","l":"6-methoxy-2-benzoxazolinone","na":1,"nb":1,"a":[["Maize_Benzoxazinoid_Metabolizing_SynComs.html","Maize Benzoxazinoid-Metabolizing SynComs"]],"b":[["antibacterial/6-methoxy-2-benzoxazolinone.html","6-methoxy-2-benzoxazolinone"]]},{"id":"CHEBI:22470","l":"alpha-tocopherol","na":1,"nb":1,"a":[["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"]],"b":[["antiviral/r-r-r-%CE%B1-tocopherol.html","(R,R,R)-α-tocopherol"]]},{"id":"CHEBI:23252","l":"cinnamic acids","na":1,"nb":1,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"]],"b":[["antiviral/stibavirin.html","stibavirin"]]},{"id":"CHEBI:27744","l":"glyphosate","na":1,"nb":1,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["antifungal/glyphosate.html","glyphosate"]]},{"id":"CHEBI:32079","l":"pyrrolnitrin","na":1,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["antifungal/pyrrolnitrin.html","pyrrolnitrin"]]},{"id":"CHEBI:33403","l":"elemental sulfur","na":1,"nb":1,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["antifungal/polysulfur.html","polysulfur"]]},{"id":"CHEBI:47696","l":"2,4,6-tribromophenol","na":1,"nb":1,"a":[["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]],"b":[["antifungal/2-4-6-tribromophenol.html","2,4,6-tribromophenol"]]},{"id":"CHEBI:61121","l":"oxylipin","na":1,"nb":1,"a":[["Tomato_Oxylipin_SynCom3.html","Tomato Oxylipin-Protective SynCom3"]],"b":[["antifungal/10e-15z-9-12-13-trihydroxy-10-15-octadecadienoic-acid.html","(10E,15Z)-9,12,13-trihydroxy-10,15-octadecadienoic acid"]]},{"id":"CHEBI:78688","l":"2,4-diacetylphloroglucinol","na":1,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["antifungal/2-4-diacetylphloroglucinol.html","2,4-diacetylphloroglucinol"]]},{"id":"CHEBI:8269","l":"Pleuromutilin","na":1,"nb":1,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]],"b":[["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"CHEBI:8653","l":"pyocyanine","na":1,"nb":1,"a":[["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["antibacterial/pyocyanine.html","pyocyanine"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":1,"nb":1,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["antibacterial/nocardamine.html","nocardamine"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":1,"nb":1,"a":[["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:536","l":"Chromobacterium violaceum","na":1,"nb":1,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"]],"b":[["unspecified/romidepsin.html","romidepsin"]]}]} \ No newline at end of file +{"a":"CommunityMech","b":"AntibioticMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","AntibioticMech":"https://culturebotai.github.io/AntibioticMech/pages/"},"n":64,"by":{"CHEBI":42,"NCBITaxon":22},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":14,"nb":30,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":9,"nb":12,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"CHEBI:33709","l":"amino acid","na":15,"nb":8,"a":[["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["antibacterial/7-3-aminopyrrolidin-1-yl-1-2-4-difluorophenyl-6-fluoro-4-oxo-1-4-dihyd.html","7-(3-aminopyrrolidin-1-yl)-1-(2,4-difluorophenyl)-6-fluoro-4-oxo-1,4-dihydro-1,8-naphthyridine-3-carboxylic"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/pipemidic-acid.html","pipemidic acid"],["antibacterial/trovafloxacin.html","trovafloxacin"],["antifungal/mediomycin-a.html","mediomycin A"],["antifungal/mediomycin-b.html","mediomycin B"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":8,"nb":8,"a":[["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"],["Sedimenting_Arabinose_Glucose_Saccharomyces_Coculture.html","Sedimenting Arabinose-Glucose Saccharomyces Coculture"]],"b":[["antifungal/anidulafungin.html","anidulafungin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/caspofungin.html","caspofungin"],["antifungal/cycloheximide.html","cycloheximide"],["antifungal/micafungin.html","micafungin"],["antifungal/oligomycin-a.html","oligomycin A"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":3,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":3,"nb":6,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":2,"nb":15,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":13,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/bromodeoxytopsentin.html","bromodeoxytopsentin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":2,"nb":7,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["antibacterial/brefeldin-a.html","brefeldin A"],["antifungal/anidulafungin.html","anidulafungin"],["antifungal/caspofungin.html","caspofungin"],["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/micafungin.html","micafungin"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":2,"nb":7,"a":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":6,"nb":2,"a":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["antibacterial/mupirocin.html","mupirocin"],["antifungal/2-4-diacetylphloroglucinol.html","2,4-diacetylphloroglucinol"]]},{"id":"CHEBI:30746","l":"benzoic acid","na":5,"nb":2,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["biocide/benzoic-acid.html","benzoic acid"],["biocide/carboxy-ptio.html","carboxy-PTIO"]]},{"id":"CHEBI:26523","l":"reactive oxygen species","na":2,"nb":2,"a":[["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"],["biocide/ozone.html","ozone"]]},{"id":"CHEBI:33282","l":"antibacterial agent","na":1,"nb":496,"a":[["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"]],"b":[["antibacterial/1-2-dodecanediol.html","1,2-dodecanediol"],["antibacterial/1-6-dihydroxy-2-methyl-9-10-anthraquinone.html","1,6-dihydroxy-2-methyl-9,10-anthraquinone"],["antibacterial/1-carbapenem-3-carboxylic-acid.html","1-carbapenem-3-carboxylic acid"],["antibacterial/1-dodecylguanidine-acetate.html","1-dodecylguanidine acetate"],["antibacterial/1-dodecylguanidine.html","1-dodecylguanidine"],["antibacterial/1-hydroxycrisamicin-a.html","1-hydroxycrisamicin A"]]},{"id":"CHEBI:16236","l":"ethanol","na":25,"nb":1,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["biocide/ethanol.html","ethanol"]]},{"id":"CHEBI:22315","l":"alkaloid","na":1,"nb":21,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["antibacterial/14-norpseurotin-a.html","14-norpseurotin A"],["antibacterial/5-bromo-8-methoxy-1-methyl-%CE%B2-carboline.html","5-bromo-8-methoxy-1-methyl-β-carboline"],["antibacterial/undecylprodigiosin.html","undecylprodigiosin"],["antifungal/feruloylagmatine.html","feruloylagmatine"],["antifungal/pyrrolnitrin.html","pyrrolnitrin"],["antifungal/sampangine.html","sampangine"]]},{"id":"CHEBI:33575","l":"carboxylic acid","na":1,"nb":11,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"]],"b":[["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefatrizine.html","cefatrizine"],["antibacterial/cefazedone.html","cefazedone"],["antibacterial/cefcapene.html","cefcapene"],["antibacterial/cefditoren.html","cefditoren"],["antibacterial/cefiderocol.html","cefiderocol"]]},{"id":"CHEBI:15366","l":"acetic acid","na":8,"nb":1,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["biocide/acetic-acid.html","acetic acid"]]},{"id":"NCBITaxon:2697049","l":"Severe acute respiratory syndrome coronavirus 2","na":1,"nb":8,"a":[["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"]],"b":[["antibacterial/3-6-diaminoacridine.html","3,6-diaminoacridine"],["antibacterial/anacardic-acid.html","anacardic acid"],["antibacterial/baicalein.html","baicalein"],["antibacterial/ebselen.html","ebselen"],["antibacterial/hexachlorophene.html","hexachlorophene"],["antifungal/disulfiram.html","disulfiram"]]},{"id":"CHEBI:30769","l":"citric acid","na":6,"nb":1,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["unspecified/citric-acid.html","citric acid"]]},{"id":"CHEBI:15904","l":"long-chain fatty acid","na":1,"nb":4,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["antibacterial/9z-12z-15z-octadeca-9-12-15-trien-6-ynoic-acid.html","(9Z,12Z,15Z)-octadeca-9,12,15-trien-6-ynoic acid"],["antifungal/10e-15z-9-12-13-trihydroxy-10-15-octadecadienoic-acid.html","(10E,15Z)-9,12,13-trihydroxy-10,15-octadecadienoic acid"],["antimycobacterial/scleropyric-acid.html","scleropyric acid"],["antiprotozoal/minquartynoic-acid.html","minquartynoic acid"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":4,"nb":1,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"CHEBI:16670","l":"peptide","na":4,"nb":1,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["antibacterial/cefbuperazone.html","cefbuperazone"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":4,"nb":1,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["biocide/formaldehyde.html","formaldehyde"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":1,"nb":4,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/oxacillin.html","oxacillin"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":3,"nb":1,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"CHEBI:60004","l":"mixture","na":1,"nb":3,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["antifungal/dimethomorph.html","dimethomorph"],["antifungal/flumorph.html","flumorph"],["biocide/urea-hydrogen-peroxide.html","urea hydrogen peroxide"]]},{"id":"CHEBI:87393","l":"hexan-1-ol","na":3,"nb":1,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["antibacterial/hexan-1-ol.html","hexan-1-ol"]]},{"id":"NCBITaxon:117187","l":"Fusarium verticillioides","na":1,"nb":3,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/fludioxonil.html","fludioxonil"]]},{"id":"NCBITaxon:5180","l":"Sclerotinia sclerotiorum","na":1,"nb":3,"a":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]],"b":[["antifungal/carboxin.html","carboxin"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/iprodione.html","iprodione"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":3,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"NCBITaxon:5480","l":"Lodderomyces parapsilosis","na":1,"nb":3,"a":[["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"CHEBI:132106","l":"sodium propionate","na":2,"nb":1,"a":[["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["antifungal/sodium-propionate.html","sodium propionate"]]},{"id":"CHEBI:15882","l":"phenol","na":2,"nb":1,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]],"b":[["biocide/phenol.html","phenol"]]},{"id":"CHEBI:16914","l":"salicylic acid","na":2,"nb":1,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"]],"b":[["antifungal/salicylic-acid.html","salicylic acid"]]},{"id":"CHEBI:26401","l":"purines","na":1,"nb":2,"a":[["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"]],"b":[["antiviral/mercaptopurine.html","mercaptopurine"],["antiviral/valganciclovir.html","valganciclovir"]]},{"id":"CHEBI:28837","l":"octanoic acid","na":2,"nb":1,"a":[["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["antibacterial/octanoic-acid.html","octanoic acid"]]},{"id":"CHEBI:30751","l":"formic acid","na":2,"nb":1,"a":[["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["antibacterial/formic-acid.html","formic acid"]]},{"id":"CHEBI:30768","l":"propionic acid","na":2,"nb":1,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["antifungal/propionic-acid.html","propionic acid"]]},{"id":"CHEBI:62412","l":"phenazine-1-carboxylic acid","na":2,"nb":1,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"]],"b":[["antifungal/phenazine-1-carboxylic-acid.html","phenazine-1-carboxylic acid"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":1,"nb":2,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"],["unspecified/streptothricin-d.html","streptothricin D"]]},{"id":"CHEBI:16188","l":"octan-1-ol","na":1,"nb":1,"a":[["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["antifungal/octan-1-ol.html","octan-1-ol"]]},{"id":"CHEBI:17642","l":"pentachlorophenol","na":1,"nb":1,"a":[["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["antifungal/pentachlorophenol.html","pentachlorophenol"]]},{"id":"CHEBI:17698","l":"chloramphenicol","na":1,"nb":1,"a":[["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"CHEBI:17847","l":"p-cresol","na":1,"nb":1,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["antifungal/p-cresol.html","p-cresol"]]},{"id":"CHEBI:17855","l":"triglyceride","na":1,"nb":1,"a":[["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["antifungal/triacetin.html","triacetin"]]},{"id":"CHEBI:195240","l":"6-methoxy-2-benzoxazolinone","na":1,"nb":1,"a":[["Maize_Benzoxazinoid_Metabolizing_SynComs.html","Maize Benzoxazinoid-Metabolizing SynComs"]],"b":[["antibacterial/6-methoxy-2-benzoxazolinone.html","6-methoxy-2-benzoxazolinone"]]},{"id":"CHEBI:22470","l":"alpha-tocopherol","na":1,"nb":1,"a":[["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"]],"b":[["antiviral/r-r-r-%CE%B1-tocopherol.html","(R,R,R)-α-tocopherol"]]},{"id":"CHEBI:23252","l":"cinnamic acids","na":1,"nb":1,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"]],"b":[["antiviral/stibavirin.html","stibavirin"]]},{"id":"CHEBI:27744","l":"glyphosate","na":1,"nb":1,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["antifungal/glyphosate.html","glyphosate"]]},{"id":"CHEBI:32079","l":"pyrrolnitrin","na":1,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["antifungal/pyrrolnitrin.html","pyrrolnitrin"]]},{"id":"CHEBI:33403","l":"elemental sulfur","na":1,"nb":1,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["antifungal/polysulfur.html","polysulfur"]]},{"id":"CHEBI:47696","l":"2,4,6-tribromophenol","na":1,"nb":1,"a":[["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]],"b":[["antifungal/2-4-6-tribromophenol.html","2,4,6-tribromophenol"]]},{"id":"CHEBI:48347","l":"triclocarban","na":1,"nb":1,"a":[["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"]],"b":[["biocide/triclocarban.html","triclocarban"]]},{"id":"CHEBI:61121","l":"oxylipin","na":1,"nb":1,"a":[["Tomato_Oxylipin_SynCom3.html","Tomato Oxylipin-Protective SynCom3"]],"b":[["antifungal/10e-15z-9-12-13-trihydroxy-10-15-octadecadienoic-acid.html","(10E,15Z)-9,12,13-trihydroxy-10,15-octadecadienoic acid"]]},{"id":"CHEBI:6824","l":"hexamethylenetetramine","na":1,"nb":1,"a":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"]],"b":[["antibacterial/hexamethylenetetramine.html","hexamethylenetetramine"]]},{"id":"CHEBI:78688","l":"2,4-diacetylphloroglucinol","na":1,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["antifungal/2-4-diacetylphloroglucinol.html","2,4-diacetylphloroglucinol"]]},{"id":"CHEBI:8269","l":"Pleuromutilin","na":1,"nb":1,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]],"b":[["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"CHEBI:8653","l":"pyocyanine","na":1,"nb":1,"a":[["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["antibacterial/pyocyanine.html","pyocyanine"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":1,"nb":1,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["antibacterial/nocardamine.html","nocardamine"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":1,"nb":1,"a":[["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":1,"nb":1,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"NCBITaxon:536","l":"Chromobacterium violaceum","na":1,"nb":1,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"]],"b":[["unspecified/romidepsin.html","romidepsin"]]},{"id":"NCBITaxon:68264","l":"Streptomyces rishiriensis","na":1,"nb":1,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["antibacterial/coumermycin-a1.html","coumermycin A1"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/CommunityMech--CellStructureMech.json b/assets/fleet/edges/CommunityMech--CellStructureMech.json index f1faf56..b672981 100644 --- a/assets/fleet/edges/CommunityMech--CellStructureMech.json +++ b/assets/fleet/edges/CommunityMech--CellStructureMech.json @@ -1 +1 @@ -{"a":"CommunityMech","b":"CellStructureMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","CellStructureMech":"https://culturebotai.github.io/CellStructureMech/pages/structures/"},"n":55,"by":{"NCBITaxon":32,"CHEBI":13,"GO":10},"terms":[{"id":"NCBITaxon:2","l":"Bacteria","na":54,"nb":80,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"]],"b":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]]},{"id":"NCBITaxon:2157","l":"Archaea","na":15,"nb":37,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"]],"b":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":13,"nb":19,"a":[["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"]],"b":[["appendage/curli.html","curli"],["appendage/p_pilus.html","P pilus"],["appendage/pilus.html","pilus"],["appendage/type_i_pilus.html","type I pilus"],["cytoskeleton/parm_filament.html","ParM filament"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":11,"nb":8,"a":[["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"]],"b":[["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["spore/endospore_coat.html","endospore coat"],["spore/endospore_cortex.html","endospore cortex"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":6,"nb":159,"a":[["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"],["Sedimenting_Arabinose_Glucose_Saccharomyces_Coculture.html","Sedimenting Arabinose-Glucose Saccharomyces Coculture"],["Synechococcus_Saccharomyces_SPC.html","Synechococcus-Saccharomyces Synthetic Photosynthetic Consortium"]],"b":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"],["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/septin_ring.html","septin ring"],["cytoskeleton/spindle_pole_body.html","spindle pole body"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"]]},{"id":"GO:0015979","l":"photosynthesis","na":42,"nb":5,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"]],"b":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"],["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"]]},{"id":"NCBITaxon:1239","l":"Bacillota","na":5,"nb":4,"a":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"]],"b":[["spore/endospore_coat.html","endospore coat"],["spore/endospore_cortex.html","endospore cortex"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"],["spore/outer_endospore_membrane.html","outer endospore membrane"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":72,"nb":3,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"],["other/pyrenoid.html","pyrenoid"]]},{"id":"NCBITaxon:3055","l":"Chlamydomonas reinhardtii","na":3,"nb":37,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]],"b":[["appendage/ciliary_membrane.html","ciliary membrane"],["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"],["appendage/mastigoneme.html","mastigoneme"],["cytoskeleton/axoneme.html","axoneme"],["cytoskeleton/ciliary_basal_body.html","ciliary basal body"]]},{"id":"NCBITaxon:201174","l":"Actinomycetota","na":10,"nb":3,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"]]},{"id":"NCBITaxon:1224","l":"Pseudomonadota","na":8,"nb":3,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"]],"b":[["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["microcompartment/carboxysome.html","carboxysome"],["ribonucleoprotein/bacterial_degradosome.html","bacterial degradosome"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":7,"nb":3,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"]],"b":[["appendage/type_iv_pilus.html","type IV pilus"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]]},{"id":"GO:0015977","l":"carbon fixation","na":33,"nb":2,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["other/pyrenoid.html","pyrenoid"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":2,"nb":15,"a":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]]},{"id":"NCBITaxon:1117","l":"Cyanobacteriota","na":2,"nb":11,"a":[["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]],"b":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"]]},{"id":"NCBITaxon:1148","l":"Synechocystis sp. PCC 6803","na":2,"nb":11,"a":[["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["inclusion/cyanophycin_granule.html","cyanophycin granule"],["inclusion/glycogen_granule.html","glycogen granule"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"]]},{"id":"GO:0019684","l":"photosynthesis, light reaction","na":2,"nb":9,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]],"b":[["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":6,"nb":2,"a":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]]},{"id":"CHEBI:17029","l":"chitin","na":4,"nb":2,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]],"b":[["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["spore/microsporidian_type_endospore.html","microsporidian-type endospore"]]},{"id":"NCBITaxon:28211","l":"Alphaproteobacteria","na":2,"nb":3,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]]},{"id":"NCBITaxon:1236","l":"Gammaproteobacteria","na":2,"nb":2,"a":[["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"],["secretion_system/type_iii_protein_secretion_system_complex.html","type III protein secretion system complex"]]},{"id":"NCBITaxon:1763","l":"Mycobacterium","na":2,"nb":2,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]]},{"id":"NCBITaxon:203682","l":"Planctomycetota","na":2,"nb":2,"a":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"]]},{"id":"NCBITaxon:2759","l":"Eukaryota","na":1,"nb":48,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"]],"b":[["appendage/paraflagellar_rod.html","paraflagellar rod"],["cytoskeleton/conoid.html","conoid"],["cytoskeleton/cytoophidium.html","cytoophidium"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":20,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]]},{"id":"NCBITaxon:4751","l":"Fungi","na":1,"nb":10,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/septin_ring.html","septin ring"],["envelope/capsule.html","capsule"],["envelope/eisosome_membrane_domain_mcc.html","eisosome membrane domain/MCC"],["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["envelope/plasma_membrane.html","plasma membrane"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":1,"nb":10,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]]},{"id":"NCBITaxon:976","l":"Bacteroidota","na":6,"nb":1,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["secretion_system/type_ix_protein_secretion_system_complex.html","type IX protein secretion system complex"]]},{"id":"GO:0006635","l":"fatty acid beta-oxidation","na":5,"nb":1,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["membrane_organelle/peroxisomal_matrix.html","peroxisomal matrix"]]},{"id":"GO:0006935","l":"chemotaxis","na":5,"nb":1,"a":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["SynCom_MetG2_Rhizobacteria_Sugarcane_Stress_Resilience.html","SynCom MetG2 Rhizobacteria Sugarcane Stress Resilience"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"],["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]]},{"id":"GO:0071973","l":"bacterial-type flagellum-dependent cell motility","na":1,"nb":4,"a":[["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/periplasmic_flagellum.html","periplasmic flagellum"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":1,"nb":4,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"]],"b":[["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"],["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":3,"nb":1,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["membrane_organelle/trichocyst.html","trichocyst"]]},{"id":"NCBITaxon:5722","l":"Trichomonas vaginalis","na":1,"nb":3,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["membrane_organelle/hydrogenosomal_membrane.html","hydrogenosomal membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/hydrogenosome_lumen.html","hydrogenosome lumen"]]},{"id":"CHEBI:15422","l":"ATP","na":2,"nb":1,"a":[["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]]},{"id":"CHEBI:16838","l":"polyphosphate","na":2,"nb":1,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"]],"b":[["membrane_organelle/acidocalcisome.html","acidocalcisome"]]},{"id":"CHEBI:46726","l":"magnetite","na":2,"nb":1,"a":[["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Tropidoatractus_Magnetotacticus_Tripartite_Syntrophy.html","Tropidoatractus magnetotacticus Magnetotactic Ciliate Tripartite Syntrophy"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"]]},{"id":"GO:0009252","l":"peptidoglycan biosynthetic process","na":1,"nb":2,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"]],"b":[["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/elongasome.html","elongasome"]]},{"id":"GO:0033103","l":"protein secretion by the type VI secretion system","na":2,"nb":1,"a":[["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"]],"b":[["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":1,"nb":2,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":1,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":2,"nb":1,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["cytoskeleton/tubz_filament.html","TubZ filament"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":2,"nb":1,"a":[["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]],"b":[["other/cellulosome.html","cellulosome"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus ATCC 27405","na":2,"nb":1,"a":[["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["other/cellulosome.html","cellulosome"]]},{"id":"NCBITaxon:4890","l":"Ascomycota","na":1,"nb":2,"a":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["other/nuclear_pore_central_transport_channel.html","nuclear pore central transport channel"],["other/nuclear_pore_linkers.html","nuclear pore linkers"]]},{"id":"CHEBI:17855","l":"triglyceride","na":1,"nb":1,"a":[["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["inclusion/lipid_droplet.html","lipid droplet"]]},{"id":"CHEBI:18248","l":"iron atom","na":1,"nb":1,"a":[["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"]]},{"id":"CHEBI:28087","l":"glycogen","na":1,"nb":1,"a":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]],"b":[["inclusion/glycogen_granule.html","glycogen granule"]]},{"id":"CHEBI:33403","l":"elemental sulfur","na":1,"nb":1,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["inclusion/sulfur_globule.html","sulfur globule"]]},{"id":"CHEBI:53388","l":"poly(hydroxybutyrate)","na":1,"nb":1,"a":[["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"]],"b":[["inclusion/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]]},{"id":"GO:0006412","l":"translation","na":1,"nb":1,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["ribonucleoprotein/ribosome.html","ribosome"]]},{"id":"GO:0055085","l":"transmembrane transport","na":1,"nb":1,"a":[["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"]],"b":[["envelope/plasma_membrane.html","plasma membrane"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":1,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]],"b":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]]},{"id":"NCBITaxon:203691","l":"Spirochaetota","na":1,"nb":1,"a":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":1,"nb":1,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["other/ap_5_adaptor_complex.html","AP-5 adaptor complex"]]}]} \ No newline at end of file +{"a":"CommunityMech","b":"CellStructureMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","CellStructureMech":"https://culturebotai.github.io/CellStructureMech/pages/structures/"},"n":60,"by":{"NCBITaxon":36,"CHEBI":13,"GO":11},"terms":[{"id":"NCBITaxon:2","l":"Bacteria","na":56,"nb":89,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"]],"b":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]]},{"id":"NCBITaxon:2157","l":"Archaea","na":15,"nb":39,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"]],"b":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":14,"nb":31,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]],"b":[["appendage/curli.html","curli"],["appendage/p_pilus.html","P pilus"],["appendage/pilus.html","pilus"],["appendage/type_i_pilus.html","type I pilus"],["cytoskeleton/parm_filament.html","ParM filament"],["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":14,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["cytoskeleton/alfa_filament.html","AlfA filament"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":8,"nb":190,"a":[["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"],["Sedimenting_Arabinose_Glucose_Saccharomyces_Coculture.html","Sedimenting Arabinose-Glucose Saccharomyces Coculture"]],"b":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"],["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/septin_ring.html","septin ring"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"],["cytoskeleton/spindle_pole_body.html","spindle pole body"]]},{"id":"NCBITaxon:1239","l":"Bacillota","na":6,"nb":9,"a":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["Thermophilic_ExSitu_Biomethanation_Mixed_Culture.html","Thermophilic Ex-Situ Biomethanation Mixed Culture"]],"b":[["spore/endospore_coat.html","endospore coat"],["spore/endospore_core.html","endospore core"],["spore/endospore_cortex.html","endospore cortex"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"],["spore/endospore_forming_forespore.html","endospore-forming forespore"],["spore/exosporium.html","exosporium"]]},{"id":"GO:0015979","l":"photosynthesis","na":44,"nb":5,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"],["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":75,"nb":3,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"],["other/pyrenoid.html","pyrenoid"]]},{"id":"NCBITaxon:3055","l":"Chlamydomonas reinhardtii","na":3,"nb":58,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]],"b":[["appendage/ciliary_membrane.html","ciliary membrane"],["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"],["appendage/mastigoneme.html","mastigoneme"],["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_a_tubule_inner_sheath.html","axonemal A tubule inner sheath"]]},{"id":"NCBITaxon:201174","l":"Actinomycetota","na":10,"nb":3,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":9,"nb":3,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"]],"b":[["appendage/type_iv_pilus.html","type IV pilus"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]]},{"id":"NCBITaxon:1224","l":"Pseudomonadota","na":8,"nb":3,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"]],"b":[["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["microcompartment/carboxysome.html","carboxysome"],["ribonucleoprotein/bacterial_degradosome.html","bacterial degradosome"]]},{"id":"CHEBI:17029","l":"chitin","na":4,"nb":3,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]],"b":[["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["membrane_organelle/chitosome.html","chitosome"],["spore/microsporidian_type_endospore.html","microsporidian-type endospore"]]},{"id":"GO:0015977","l":"carbon fixation","na":33,"nb":2,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["other/pyrenoid.html","pyrenoid"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":2,"nb":15,"a":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]]},{"id":"NCBITaxon:1117","l":"Cyanobacteriota","na":2,"nb":13,"a":[["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]],"b":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/photosystem_i.html","photosystem I"],["energy_complex/photosystem_ii.html","photosystem II"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]]},{"id":"NCBITaxon:1148","l":"Synechocystis sp. PCC 6803","na":2,"nb":11,"a":[["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["inclusion/cyanophycin_granule.html","cyanophycin granule"],["inclusion/glycogen_granule.html","glycogen granule"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"]]},{"id":"GO:0019684","l":"photosynthesis, light reaction","na":2,"nb":9,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]],"b":[["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":6,"nb":2,"a":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":2,"nb":4,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"],["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]]},{"id":"NCBITaxon:203682","l":"Planctomycetota","na":3,"nb":2,"a":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"]],"b":[["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"]]},{"id":"NCBITaxon:28211","l":"Alphaproteobacteria","na":2,"nb":3,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]]},{"id":"GO:0033103","l":"protein secretion by the type VI secretion system","na":2,"nb":2,"a":[["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"]],"b":[["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"],["secretion_system/type_vi_secretion_system_contractile_sheath.html","type VI secretion system contractile sheath"]]},{"id":"NCBITaxon:1236","l":"Gammaproteobacteria","na":2,"nb":2,"a":[["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"],["secretion_system/type_iii_protein_secretion_system_complex.html","type III protein secretion system complex"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":2,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["envelope/periplasmic_space.html","periplasmic space"],["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":2,"nb":2,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["cytoskeleton/tubz_filament.html","TubZ filament"],["inclusion/parasporal_crystal.html","parasporal crystal"]]},{"id":"NCBITaxon:1763","l":"Mycobacterium","na":2,"nb":2,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]]},{"id":"NCBITaxon:2759","l":"Eukaryota","na":1,"nb":49,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"]],"b":[["appendage/paraflagellar_rod.html","paraflagellar rod"],["cytoskeleton/conoid.html","conoid"],["cytoskeleton/cytoophidium.html","cytoophidium"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":21,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":1,"nb":15,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]]},{"id":"NCBITaxon:4751","l":"Fungi","na":1,"nb":11,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/septin_ring.html","septin ring"],["envelope/capsule.html","capsule"],["envelope/eisosome_membrane_domain_mcc.html","eisosome membrane domain/MCC"],["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["envelope/plasma_membrane.html","plasma membrane"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":1,"nb":8,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["other/ap_5_adaptor_complex.html","AP-5 adaptor complex"],["ribonucleoprotein/u11_snrnp.html","U11 snRNP"],["ribonucleoprotein/u11_u12_snrnp.html","U11/U12 snRNP"],["ribonucleoprotein/u12_snrnp.html","U12 snRNP"],["ribonucleoprotein/u4atac_snrnp.html","U4atac snRNP"],["ribonucleoprotein/u4atac_u6atac_snrnp.html","U4atac/U6atac snRNP"]]},{"id":"NCBITaxon:976","l":"Bacteroidota","na":7,"nb":1,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["secretion_system/type_ix_protein_secretion_system_complex.html","type IX protein secretion system complex"]]},{"id":"NCBITaxon:32046","l":"Synechococcus elongatus","na":6,"nb":1,"a":[["Synechococcus_Bacillus_SPC.html","Synechococcus-Bacillus Synthetic Photosynthetic Consortium"],["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"],["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"],["Synechococcus_Saccharomyces_SPC.html","Synechococcus-Saccharomyces Synthetic Photosynthetic Consortium"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["energy_complex/photosystem_i.html","photosystem I"]]},{"id":"GO:0006635","l":"fatty acid beta-oxidation","na":5,"nb":1,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["membrane_organelle/peroxisomal_matrix.html","peroxisomal matrix"]]},{"id":"GO:0006935","l":"chemotaxis","na":5,"nb":1,"a":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["SynCom_MetG2_Rhizobacteria_Sugarcane_Stress_Resilience.html","SynCom MetG2 Rhizobacteria Sugarcane Stress Resilience"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"],["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]]},{"id":"GO:0071973","l":"bacterial-type flagellum-dependent cell motility","na":1,"nb":4,"a":[["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/periplasmic_flagellum.html","periplasmic flagellum"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":3,"nb":1,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["membrane_organelle/trichocyst.html","trichocyst"]]},{"id":"CHEBI:46726","l":"magnetite","na":3,"nb":1,"a":[["Magnetite_Sulfate_Stress_Anaerobic_Microbiome.html","Magnetite Sulfate-Stress Anaerobic Microbiome"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Tropidoatractus_Magnetotacticus_Tripartite_Syntrophy.html","Tropidoatractus magnetotacticus Magnetotactic Ciliate Tripartite Syntrophy"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"]]},{"id":"NCBITaxon:5722","l":"Trichomonas vaginalis","na":1,"nb":3,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["membrane_organelle/hydrogenosomal_membrane.html","hydrogenosomal membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/hydrogenosome_lumen.html","hydrogenosome lumen"]]},{"id":"CHEBI:15422","l":"ATP","na":2,"nb":1,"a":[["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]]},{"id":"CHEBI:16838","l":"polyphosphate","na":2,"nb":1,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"]],"b":[["membrane_organelle/acidocalcisome.html","acidocalcisome"]]},{"id":"GO:0006260","l":"DNA replication","na":1,"nb":2,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"],["other/single_stranded_dna_binding_protein_complex.html","single-stranded DNA-binding protein complex"]]},{"id":"GO:0009252","l":"peptidoglycan biosynthetic process","na":1,"nb":2,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"]],"b":[["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/elongasome.html","elongasome"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":1,"nb":2,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":2,"nb":1,"a":[["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]],"b":[["other/cellulosome.html","cellulosome"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus (strain ATCC 27405 / DSM 1237 / JCM 9322 / NBRC 103400 / NCIMB 10682 / NRRL B-4536 / VPI 7372)","na":2,"nb":1,"a":[["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["other/cellulosome.html","cellulosome"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":2,"nb":1,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"]],"b":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":1,"nb":2,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]]},{"id":"NCBITaxon:4890","l":"Ascomycota","na":1,"nb":2,"a":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["other/nuclear_pore_central_transport_channel.html","nuclear pore central transport channel"],["other/nuclear_pore_linkers.html","nuclear pore linkers"]]},{"id":"CHEBI:17855","l":"triglyceride","na":1,"nb":1,"a":[["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["inclusion/lipid_droplet.html","lipid droplet"]]},{"id":"CHEBI:18248","l":"iron atom","na":1,"nb":1,"a":[["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"]]},{"id":"CHEBI:28087","l":"glycogen","na":1,"nb":1,"a":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]],"b":[["inclusion/glycogen_granule.html","glycogen granule"]]},{"id":"CHEBI:33403","l":"elemental sulfur","na":1,"nb":1,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["inclusion/sulfur_globule.html","sulfur globule"]]},{"id":"CHEBI:53388","l":"poly(hydroxybutyrate)","na":1,"nb":1,"a":[["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"]],"b":[["inclusion/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]]},{"id":"GO:0006412","l":"translation","na":1,"nb":1,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["ribonucleoprotein/ribosome.html","ribosome"]]},{"id":"GO:0055085","l":"transmembrane transport","na":1,"nb":1,"a":[["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"]],"b":[["envelope/plasma_membrane.html","plasma membrane"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":1,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]],"b":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]]},{"id":"NCBITaxon:203691","l":"Spirochaetota","na":1,"nb":1,"a":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":1,"nb":1,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/CommunityMech--CultureMech.json b/assets/fleet/edges/CommunityMech--CultureMech.json index 13b7a05..fab0c6e 100644 --- a/assets/fleet/edges/CommunityMech--CultureMech.json +++ b/assets/fleet/edges/CommunityMech--CultureMech.json @@ -1 +1 @@ -{"a":"CommunityMech","b":"CultureMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","CultureMech":"https://github.com/CultureBotAI/CultureMech/blob/main/data/merge_yaml/merged/"},"n":153,"by":{"CHEBI":138,"NCBITaxon":8,"ENVO":5,"DOI":2},"terms":[{"id":"CHEBI:16526","l":"carbon dioxide","na":72,"nb":709,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["4_yaco_media.yaml","4_yaco_media"],["8kg_4_medium.yaml","8kg_4_medium"],["ABSS2.yaml","abss2"],["ABYSSISOLIBACTER_MEDIUM.yaml","abyssisolibacter_medium"]]},{"id":"CHEBI:18276","l":"dihydrogen","na":54,"nb":231,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["4_yaco_media.yaml","4_yaco_media"],["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["AMMONIFEX_DEGENSII_MEDIUM.yaml","ammonifex_degensii_medium"],["AP11MH_medium.yaml","ap11mh_medium"]]},{"id":"CHEBI:30089","l":"acetate","na":72,"nb":31,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"]],"b":[["AMOEBOBACTER_MEDIUM.yaml","amoebobacter_medium"],["FWAFC.yaml","fwafc"],["M9ZB_with_acetate.yaml","m9zb_with_acetate"],["MEDIUM_FOR_CHLOROBIUM_FERROOXIDANS.yaml","medium_for_chlorobium_ferrooxidans"],["NMM_with_acetate.yaml","nmm_with_acetate"],["Thauera_aminoaromatica_medium.yaml","thauera_aminoaromatica_medium"]]},{"id":"CHEBI:17234","l":"glucose","na":25,"nb":1113,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mh_medium.yaml","15_mh_medium"],["15_mh_medium__b586cb85.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1_10_PYGV_MEDIUM_modified.yaml","1_10_pygv_medium_modified"],["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"]]},{"id":"CHEBI:16236","l":"ethanol","na":22,"nb":70,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["ACETOBACTER_PEROXYDANS_MEDIUM.yaml","acetobacter_peroxydans_medium"],["AE_BROTH.yaml","ae_broth"],["ANAEROTIGNUM_NEOPROPIONICUM_MEDIUM.yaml","anaerotignum_neopropionicum_medium"],["Acetobacter_Europaeus_Medium.yaml","acetobacter_europaeus_medium"],["BTU_MEDIUM.yaml","btu_medium"],["CLOSTRIDIUM_KLUYVERI_MEDIUM.yaml","clostridium_kluyveri_medium"]]},{"id":"CHEBI:18246","l":"(1->4)-beta-D-glucan","na":25,"nb":15,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"]],"b":[["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["CLOSTRIDIUM_CELLULOVORANS_MEDIUM.yaml","clostridium_cellulovorans_medium"],["Clostridium_Cellulolytic_medium.yaml","clostridium_cellulolytic_medium"],["HALOCELLA_CELLULOLYTICA_MEDIUM.yaml","halocella_cellulolytica_medium"],["RUMINICLOSTRIDIUM_CELLOBIOPARUM_MEDIUM.yaml","ruminiclostridium_cellobioparum_medium"],["RUMINICLOSTRIDIUM_PAPYROSOLVENS_MEDIUM.yaml","ruminiclostridium_papyrosolvens_medium"]]},{"id":"CHEBI:17992","l":"sucrose","na":14,"nb":108,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["ACANTHAMOEBA_MEDIUM.yaml","acanthamoeba_medium"],["ACETIVIBRIO_MEDIUM.yaml","acetivibrio_medium"],["ALCALIPHILIC_AMPHIBACILLUS_STRAINS_MEDIUM.yaml","alcaliphilic_amphibacillus_strains_medium"],["ALKALIPHILIC_SPIROCHAETE_MEDIUM.yaml","alkaliphilic_spirochaete_medium"],["ANAEROBACTER_MEDIUM.yaml","anaerobacter_medium"],["AZOSPIRILLUM_AMAZONENSE_MEDIUM.yaml","azospirillum_amazonense_medium"]]},{"id":"CHEBI:17997","l":"dinitrogen","na":12,"nb":903,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_tryptic_soy_broth_anaerobic.yaml","1_2_tryptic_soy_broth_anaerobic"],["480g_medium__e94698e7.yaml","480g_medium"],["8kg_4_medium.yaml","8kg_4_medium"],["ABSS2.yaml","abss2"],["ABYSSISOLIBACTER_MEDIUM.yaml","abyssisolibacter_medium"]]},{"id":"CHEBI:26833","l":"sulfur atom","na":12,"nb":153,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["1_2_SME_MEDIUM.yaml","1_2_sme_medium"],["9K_WITH_SULFUR_MEDIUM.yaml","9k_with_sulfur_medium"],["ACIDIANUS_BRIERLEYI_MEDIUM.yaml","acidianus_brierleyi_medium"],["ACIDITHIOBACILLUS_CALDUS_MEDIUM.yaml","acidithiobacillus_caldus_medium"],["ACIDITHIOBACILLUS_MEDIUM.yaml","acidithiobacillus_medium"],["ACIDOLOBUS_ACETICUS_MEDIUM.yaml","acidolobus_aceticus_medium"]]},{"id":"CHEBI:3312","l":"calcium dichloride","na":11,"nb":516,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mgm_medium.yaml","15_mgm_medium"],["15_mh_medium.yaml","15_mh_medium"],["28_mh_medium.yaml","28_mh_medium"],["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["A3.yaml","a3"]]},{"id":"CHEBI:131527","l":"dipotassium hydrogen phosphate","na":10,"nb":2042,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1_10_PYGV_MEDIUM_modified.yaml","1_10_pygv_medium_modified"],["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"]]},{"id":"CHEBI:26836","l":"sulfuric acid","na":10,"nb":220,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["9K_MEDIUM.yaml","9k_medium"],["A3.yaml","a3"],["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["ACIDIFERROBACTER_MEDIUM.yaml","acidiferrobacter_medium"],["ACIDIFFEROBACTER_MURCIENSIS_MEDIUM.yaml","acidifferobacter_murciensis_medium"]]},{"id":"CHEBI:17790","l":"methanol","na":10,"nb":107,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["2_mh_medium.yaml","2_mh_medium"],["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["ALTEROMONAS_MEDIUM.yaml","alteromonas_medium"],["BM_MEDIUM.yaml","bm_medium"]]},{"id":"CHEBI:26710","l":"sodium chloride","na":9,"nb":3472,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["10_mh_medium.yaml","10_mh_medium"],["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["1298.yaml","1298"],["15_mgm_medium.yaml","15_mgm_medium"]]},{"id":"CHEBI:31206","l":"ammonium chloride","na":9,"nb":2324,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]],"b":[["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["480G_MEDIUM.yaml","480g_medium"],["480g_medium__e94698e7.yaml","480g_medium"]]},{"id":"CHEBI:18385","l":"thiamine(1+)","na":8,"nb":94,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["ANB_aerobic.yaml","anb_aerobic"],["AQUASPIRILLUM_MEDIUM.yaml","aquaspirillum_medium"],["Basic_mineral_medium.yaml","basic_mineral_medium"],["CHITINIVIBRIO_MEDIUM.yaml","chitinivibrio_medium"],["Chemically_defined_medium.yaml","chemically_defined_medium"],["Chromatium_Medium.yaml","chromatium_medium"]]},{"id":"CHEBI:18222","l":"xylose","na":8,"nb":14,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]],"b":[["COLON_EXTRACT_MEDIUM.yaml","colon_extract_medium"],["MODIFIED_CALDICELLULOSIRUPTOR_MEDIUM.yaml","modified_caldicellulosiruptor_medium"],["MRSsi.yaml","mrssi"],["Thermotoga_hypogea_medium.yaml","thermotoga_hypogea_medium"],["batch_cultivation_medium_for_a28.yaml","batch_cultivation_medium_for_a28"],["batch_cultivation_medium_for_ta1.yaml","batch_cultivation_medium_for_ta1"]]},{"id":"CHEBI:32599","l":"magnesium sulfate","na":7,"nb":1459,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"]],"b":[["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["10_mh_medium.yaml","10_mh_medium"],["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["15_mh_medium.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"]]},{"id":"CHEBI:37585","l":"sodium dihydrogenphosphate","na":7,"nb":173,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["ANT.yaml","ant"],["ATRIBACTERIUM_MEDIUM.yaml","atribacterium_medium"],["BASAL_MEDIUM.yaml","basal_medium"]]},{"id":"CHEBI:15361","l":"pyruvate","na":7,"nb":24,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["ARCOBACTER_ANAEROPHILUS_MEDIUM.yaml","arcobacter_anaerophilus_medium"],["CENTENUM_MEDIUM.yaml","centenum_medium"],["CMM.yaml","cmm"],["NMM_with_pyruvate.yaml","nmm_with_pyruvate"],["ams1_pyruvate_glycine.yaml","ams1_pyruvate_glycine"],["ams1_pyruvate_glycine__08b97e38.yaml","ams1_pyruvate_glycine"]]},{"id":"CHEBI:37166","l":"xylan","na":7,"nb":14,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"]],"b":[["CLOSTRIDIUM_AEROTOLERANS_MEDIUM.yaml","clostridium_aerotolerans_medium"],["TREPONEMA_THERMOPHILUM_MEDIUM.yaml","treponema_thermophilum_medium"],["VXG_GELLAN.yaml","vxg_gellan"],["XED_Agar.yaml","xed_agar"],["XYLAN_MEDIUM.yaml","xylan_medium"],["Xy_agar.yaml","xy_agar"]]},{"id":"CHEBI:32139","l":"sodium hydrogencarbonate","na":6,"nb":1470,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mh_medium.yaml","15_mh_medium"],["15_mh_medium__b586cb85.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM.yaml","1_2_sme_medium"]]},{"id":"CHEBI:76209","l":"sodium sulfide nonahydrate","na":6,"nb":1198,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["1_2_SME_MEDIUM.yaml","1_2_sme_medium"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["480G_MEDIUM.yaml","480g_medium"],["A1_MEDIUM.yaml","a1_medium"],["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"]]},{"id":"CHEBI:28017","l":"starch","na":6,"nb":280,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"]],"b":[["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"],["1_10_r2a_medium_modified_yeast_extract.yaml","1_10_r2a_medium_modified_yeast_extract"],["1_2_r2a_medium_with_75_artificial_seawater.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["1_2_r2a_medium_with_75_artificial_seawater__5b6dd332.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["225M1_MEDIUM.yaml","225m1_medium"],["225m1_medium__5109009b.yaml","225m1_medium"]]},{"id":"CHEBI:17754","l":"glycerol","na":6,"nb":165,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"]],"b":[["1_ogawa_medium.yaml","1_ogawa_medium"],["1_ogawa_medium__65d0ae34.yaml","1_ogawa_medium"],["5_G_MEDIUM.yaml","5_g_medium"],["5_g_medium__8aa8a45a.yaml","5_g_medium"],["6_B_MEDIUM.yaml","6_b_medium"],["6_b_medium__990e4708.yaml","6_b_medium"]]},{"id":"CHEBI:17057","l":"cellobiose","na":6,"nb":121,"a":[["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["Yarrowia_lipolytica_Division_of_Labor_Lipid_Consortium.html","Yarrowia lipolytica Division-of-Labor Lipid Consortium"]],"b":[["A7_MEDIUM.yaml","a7_medium"],["ACETIVIBRIO_ALKALICELLULOSI_MEDIUM.yaml","acetivibrio_alkalicellulosi_medium"],["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["ALKALIFLEXUS_MEDIUM.yaml","alkaliflexus_medium"],["ANAEROBACTERIUM_MEDIUM.yaml","anaerobacterium_medium"],["ANAEROCELLA_MEDIUM.yaml","anaerocella_medium"]]},{"id":"CHEBI:6636","l":"magnesium dichloride","na":6,"nb":67,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mh_medium.yaml","15_mh_medium"],["1_2_r2a_75_asw.yaml","1_2_r2a_75_asw"],["28_mh_medium.yaml","28_mh_medium"],["ALCALIPHILIC_AMPHIBACILLUS_STRAINS_MEDIUM.yaml","alcaliphilic_amphibacillus_strains_medium"],["ALKALISPIRILLUM_MOBILE_MEDIUM.yaml","alkalispirillum_mobile_medium"]]},{"id":"CHEBI:30769","l":"citric acid","na":6,"nb":55,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["Azospira_Medium.yaml","azospira_medium"],["BG11.yaml","bg11"],["BG11_medium.yaml","bg11_medium"],["CTM_MEDIUM.yaml","ctm_medium"],["ETHANOLOGENBACTERIUM_MEDIUM.yaml","ethanologenbacterium_medium"],["GINGER_BEER_PLANT_MEDIUM.yaml","ginger_beer_plant_medium"]]},{"id":"CHEBI:15366","l":"acetic acid","na":6,"nb":26,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"]],"b":[["ACY.yaml","ACY"],["AE_BROTH.yaml","ae_broth"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Acetobacter_Europaeus_Medium.yaml","acetobacter_europaeus_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"]]},{"id":"CHEBI:30772","l":"butyric acid","na":6,"nb":26,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"],["Mega.yaml","Mega"],["PYG_MEDIUM_WITH_VOLATILE_FATTY_ACIDS.yaml","pyg_medium_with_volatile_fatty_acids"],["RUMEN_BACTERIA_MEDIUM.yaml","rumen_bacteria_medium"]]},{"id":"CHEBI:24996","l":"lactate","na":20,"nb":6,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"]],"b":[["ARCOBACTER_ANAEROPHILUS_MEDIUM.yaml","arcobacter_anaerophilus_medium"],["defined_freshwater_medium_cocl2__f0ffbcc6.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__41b1d433.yaml","defined_freshwater_medium_coso4"],["fermentation_medium_lactate_nh4cl.yaml","fermentation_medium_lactate_nh4cl"],["modified_m1_medium_with_20_mm_lactate_pinchuk_et_al.yaml","modified_m1_medium_with_20_mm_lactate_pinchuk_et_al"],["modified_m1_medium_with_lactate_and_glycine_no_nh4cl.yaml","modified_m1_medium_with_lactate_and_glycine_no_nh4cl"]]},{"id":"CHEBI:16828","l":"L-tryptophan","na":5,"nb":40,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["CDMM.yaml","cdmm"],["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["M9_minimal_media_aromix_noCarbon.yaml","M9 minimal media aromix noCarbon"],["MDM.yaml","mdm"]]},{"id":"CHEBI:30776","l":"hexanoic acid","na":5,"nb":7,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["DESULFUROBACTERIUM_MEDIUM.yaml","desulfurobacterium_medium"],["TD3_MEDIUM.yaml","td3_medium"],["THERMODESULFOBACTERIUM_HYDROGENIPHILUM_MEDIUM.yaml","thermodesulfobacterium_hydrogeniphilum_medium"],["THERMODESULFOBACTERIUM_HYDROGENOPHILUM_MEDIUM.yaml","thermodesulfobacterium_hydrogenophilum_medium"],["desulfurobacterium_medium__edb237d2.yaml","desulfurobacterium_medium"],["td3_medium__4a2d4552.yaml","td3_medium"]]},{"id":"CHEBI:15377","l":"water","na":4,"nb":2282,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1_10_MB_agar.yaml","1_10_mb_agar"],["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"],["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"]]},{"id":"CHEBI:8806","l":"Resazurin","na":4,"nb":1604,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["1_10_PYGV_MEDIUM_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM.yaml","1_2_sme_medium"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["480G_MEDIUM.yaml","480g_medium"],["480g_medium__e94698e7.yaml","480g_medium"]]},{"id":"CHEBI:176843","l":"vitamin B12","na":4,"nb":1411,"a":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Soil_Corrinoid_B12_Reservoir_Community.html","Soil Corrinoid Reservoir Microbial Community"],["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"]]},{"id":"CHEBI:17015","l":"riboflavin","na":4,"nb":1290,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_PYGV_MEDIUM_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"]]},{"id":"CHEBI:62946","l":"ammonium sulfate","na":4,"nb":816,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1_10_PYGV_MEDIUM_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM.yaml","1_2_sme_medium"],["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"]]},{"id":"CHEBI:17634","l":"D-glucose","na":4,"nb":439,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"]],"b":[["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"],["1_2_mrs_1_2_bhi_agar.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_mrs_1_2_bhi_agar__56430c33.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_tryptic_soy_broth_anaerobe.yaml","1_2_tryptic_soy_broth_anaerobe"],["1_2_tryptic_soy_broth_anaerobic.yaml","1_2_tryptic_soy_broth_anaerobic"],["1_2_tryptic_soy_broth_anaerobic__d70593aa.yaml","1_2_tryptic_soy_broth_anaerobic"]]},{"id":"CHEBI:91247","l":"L-cysteine hydrochloride","na":4,"nb":132,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["1_10_PYGV_MEDIUM_modified.yaml","1_10_pygv_medium_modified"],["ABB.yaml","ABB"],["ACY.yaml","ACY"],["AP11MH_medium.yaml","ap11mh_medium"],["Actinotalea_fermentas_medium.yaml","actinotalea_fermentas_medium"],["BBL_ACTINOMYCES_BROTH.yaml","bbl_actinomyces_broth"]]},{"id":"CHEBI:15603","l":"L-leucine","na":4,"nb":70,"a":[["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"]],"b":[["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["Hypertonic_medium.yaml","hypertonic_medium"],["MCD_Medium.yaml","mcd_medium"]]},{"id":"CHEBI:16199","l":"urea","na":4,"nb":45,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["A7_MEDIUM.yaml","a7_medium"],["Agro_defined_trehalose.yaml","Agro defined trehalose"],["BACILLUS_PASTEURII_MEDIUM.yaml","bacillus_pasteurii_medium"],["BM7CO_MEDIUM.yaml","bm7co_medium"],["C41_MEDIUM.yaml","c41_medium"],["CATONELLA_UREILYTICA_MEDIUM.yaml","catonella_ureilytica_medium"]]},{"id":"CHEBI:16811","l":"methionine","na":4,"nb":25,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["Chamberlain_CDM.yaml","chamberlain_cdm"],["DEINOCOCCUS_MEDIUM.yaml","deinococcus_medium"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["MS13_Medium.yaml","ms13_medium"]]},{"id":"CHEBI:16411","l":"indole-3-acetic acid","na":18,"nb":4,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["ENDOMICROBIUM_PROAVITUM_RSA_MEDIUM.yaml","endomicrobium_proavitum_rsa_medium"],["MODIFIED_AM5_MEDIUM_2.yaml","modified_am5_medium_2"],["am5_medium_elusimicrobium_medium.yaml","am5_medium_elusimicrobium_medium"],["endomicrobium_proavitum_rsa_medium__51692939.yaml","endomicrobium_proavitum_rsa_medium"]]},{"id":"CHEBI:16899","l":"D-mannitol","na":4,"nb":18,"a":[["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["HETEROTROPHIC_MEDIUM_H3P.yaml","heterotrophic_medium_h3p"],["MGL.yaml","MGL"],["Modified_YM.yaml","Modified YM"],["NF.yaml","NF"],["NL-CCM.yaml","NL-CCM"],["NLDM_defined.yaml","NLDM_defined"]]},{"id":"CHEBI:15956","l":"biotin","na":3,"nb":1645,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_PYGV_MEDIUM_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2ASW.yaml","2asw"]]},{"id":"CHEBI:75832","l":"iron(2+) sulfate (anhydrous)","na":3,"nb":226,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["ACIDITHIOBACILLUS_FERRIVORANS_MEDIUM.yaml","acidithiobacillus_ferrivorans_medium"],["ACY.yaml","ACY"],["AQUASPIRILLUM_MEDIUM_II.yaml","aquaspirillum_medium_ii"],["BACILLUS_THERMOALCALOPHILUS_MEDIUM.yaml","bacillus_thermoalcalophilus_medium"],["BLASTOCOCCUS_AGGREGATUS_MEDIUM.yaml","blastococcus_aggregatus_medium"],["Basal_Salt_Medium_with_biphenyl.yaml","basal_salt_medium_with_biphenyl"]]},{"id":"CHEBI:17191","l":"L-isoleucine","na":3,"nb":65,"a":[["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"]],"b":[["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["CTM_MEDIUM.yaml","ctm_medium"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MCD_Medium.yaml","mcd_medium"]]},{"id":"CHEBI:17561","l":"L-cysteine","na":3,"nb":60,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["70_30_sporulation_medium.yaml","70_30_sporulation_medium"],["BACTEROIDES_GALACTURONICUS_MEDIUM.yaml","bacteroides_galacturonicus_medium"],["BHIS_CaCl2.yaml","BHIS_CaCl2"],["BHIS_HOMOPIPES.yaml","BHIS_HOMOPIPES"],["BHIS_K3.yaml","BHIS_K3"],["BHIS_K3_noGlucose.yaml","BHIS_K3_noGlucose"]]},{"id":"ENVO:00005801","l":"rhizosphere","na":50,"nb":3,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"]],"b":[["R2A_AGAR.yaml","r2a_agar"],["half_strength_murashige_skoog_medium_for_arabidopsis_growth.yaml","half_strength_murashige_skoog_medium_for_arabidopsis_growth"],["nitrogen_free_plant_nutrient_solution_for_soybean_growth.yaml","nitrogen_free_plant_nutrient_solution_for_soybean_growth"]]},{"id":"CHEBI:15356","l":"cysteine","na":3,"nb":40,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["AMB_MEDIUM.yaml","amb_medium"],["Chopped_Meat_Carbohydrate_Medium.yaml","chopped_meat_carbohydrate_medium"],["Chopped_Meat_Carbohydrate_Medium_w_Tween_80.yaml","chopped_meat_carbohydrate_medium_w_tween_80"],["FRANCISELLA_HALIOTICIDA_MEDIUM.yaml","francisella_halioticida_medium"],["HALOANAEROBIUM_CONGOLENSE_MEDIUM.yaml","haloanaerobium_congolense_medium"],["MCD_Medium.yaml","mcd_medium"]]},{"id":"CHEBI:17716","l":"lactose","na":3,"nb":25,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"]],"b":[["1298.yaml","1298"],["ALKALINE_CELLULOSE_AGAR.yaml","alkaline_cellulose_agar"],["Basal_synthetic_medium.yaml","basal_synthetic_medium"],["CLOSTRIDIUM_VINCENTII_MEDIUM.yaml","clostridium_vincentii_medium"],["M17_MEDIUM_FOR_LACTIC_STREPTOCOCCI.yaml","m17_medium_for_lactic_streptococci"],["STREPTOCOCCUS_SUIS_MEDIUM.yaml","streptococcus_suis_medium"]]},{"id":"CHEBI:26271","l":"proline","na":3,"nb":19,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["cdm_lab_medium.yaml","cdm_lab_medium"],["complete_chemically_defined_medium.yaml","complete_chemically_defined_medium"],["minimal_chemically_defined_medium_his_pro_letort_2001.yaml","minimal_chemically_defined_medium_his_pro_letort_2001"]]},{"id":"CHEBI:17750","l":"glycine betaine","na":3,"nb":15,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["CUNICULIPLASMA_MEDIUM.yaml","cuniculiplasma_medium"],["MALEDIVIBACTER_MEDIUM.yaml","maledivibacter_medium"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"]]},{"id":"CHEBI:18237","l":"glutamic acid","na":3,"nb":13,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["ACANTHAMOEBA_MEDIUM.yaml","acanthamoeba_medium"],["HALISCOMENOBACTER_MEDIUM.yaml","haliscomenobacter_medium"],["LENTIBACILLUS_MEDIUM.yaml","lentibacillus_medium"],["McAA_formate_No_pABA.yaml","McAA formate No pABA"],["NATRONOBACTERIUM_MEDIUM.yaml","natronobacterium_medium"],["PSA_medium.yaml","psa_medium"]]},{"id":"CHEBI:26977","l":"thiosulfate","na":3,"nb":3,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"]],"b":[["AMOEBOBACTER_MEDIUM.yaml","amoebobacter_medium"],["Artificial_seawater_base_with_thiosulfate_as_the_electron_donor.yaml","artificial_seawater_base_with_thiosulfate_as_the_electron_donor"],["pfennigs_medium__4e5aaa08.yaml","pfennigs_medium"]]},{"id":"CHEBI:75213","l":"sodium molybdate dihydrate","na":2,"nb":2172,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["1a_Medium.yaml","1a_medium"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["3n_bbm_v.yaml","3n_bbm_v"]]},{"id":"CHEBI:32588","l":"potassium chloride","na":2,"nb":1953,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mgm_medium.yaml","15_mgm_medium"],["15_mh_medium.yaml","15_mh_medium"],["15_mh_medium__b586cb85.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"]]},{"id":"CHEBI:35696","l":"cobalt dichloride","na":2,"nb":493,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["1a_Medium.yaml","1a_medium"],["ACIDIC_DILUTED_ASM_MEDIUM.yaml","acidic_diluted_asm_medium"],["ACIDIFFEROBACTER_MURCIENSIS_MEDIUM.yaml","acidifferobacter_murciensis_medium"],["ALKALINUS_ABYSSINIESE_MEDIUM.yaml","alkalinus_abyssiniese_medium"],["ALKALIPHILUS_CROTONATOXIDANS_MEDIUM.yaml","alkaliphilus_crotonatoxidans_medium"],["ANAEROLINEA_MEDIUM_C.yaml","anaerolinea_medium_c"]]},{"id":"CHEBI:63005","l":"sodium nitrate","na":2,"nb":358,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_sabourauds_agar.yaml","1_10_sabourauds_agar"],["1_10_sabourauds_agar__6d784de4.yaml","1_10_sabourauds_agar"],["1a_Medium.yaml","1a_medium"]]},{"id":"CHEBI:35176","l":"zinc sulfate","na":2,"nb":198,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["7H9.yaml","7H9"],["ANB_aerobic.yaml","anb_aerobic"],["BACTO_MIDDLEBROOK_7H9_BROTH.yaml","bacto_middlebrook_7h9_broth"],["Basic_mineral_medium.yaml","basic_mineral_medium"],["CAMM.yaml","camm"],["CDM_for_Continuous_Cultivation.yaml","cdm_for_continuous_cultivation"]]},{"id":"ENVO:01001405","l":"laboratory environment","na":155,"nb":2,"a":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["glycerol_fermentation_medium_for_diet_coculture.yaml","glycerol_fermentation_medium_for_diet_coculture"],["tap_medium.yaml","tap_medium"]]},{"id":"CHEBI:23414","l":"copper(II) sulfate","na":2,"nb":148,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["ALCALIGENES_MEDIUM.yaml","alcaligenes_medium"],["Alkaline_halophile_medium.yaml","alkaline_halophile_medium"],["BACTO_MIDDLEBROOK_7H9_BROTH.yaml","bacto_middlebrook_7h9_broth"],["Basal_synthetic_medium.yaml","basal_synthetic_medium"],["CDM_for_Continuous_Cultivation.yaml","cdm_for_continuous_cultivation"],["CLOSTRIDIUM_METHYLPENTOSUM_MEDIUM.yaml","clostridium_methylpentosum_medium"]]},{"id":"CHEBI:9754","l":"tris","na":2,"nb":107,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["5_salt_water_growth_medium.yaml","5_salt_water_growth_medium"],["70_30_sporulation_medium.yaml","70_30_sporulation_medium"],["ACY.yaml","ACY"],["ALCALIGENES_MEDIUM.yaml","alcaligenes_medium"]]},{"id":"CHEBI:63041","l":"manganese(II) chloride","na":2,"nb":105,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["ANB_aerobic.yaml","anb_aerobic"],["Asp2.yaml","asp2"],["Basic_mineral_medium.yaml","basic_mineral_medium"],["CHITINIVIBRIO_MEDIUM.yaml","chitinivibrio_medium"],["CMM.yaml","cmm"],["Defined_minimal_medium.yaml","defined_minimal_medium"]]},{"id":"CHEBI:15428","l":"glycine","na":2,"nb":87,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["ACETOBACTEROIDES_GLYCINOPHILUS_MEDIUM.yaml","acetobacteroides_glycinophilus_medium"],["ACIDAMINOBACTER_MEDIUM.yaml","acidaminobacter_medium"],["ACIDAMINOCOCCUS_FERMENTANS_MEDIUM.yaml","acidaminococcus_fermentans_medium"],["ANT.yaml","ant"],["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"]]},{"id":"CHEBI:30808","l":"iron trichloride","na":2,"nb":38,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["AZOSPIRILLUM_AMAZONENSE_MEDIUM.yaml","azospirillum_amazonense_medium"],["Beijerinckia_medium_for_isolation.yaml","beijerinckia_medium_for_isolation"],["CARBOXYMETHYL_CELLULOSE_MEDIUM.yaml","carboxymethyl_cellulose_medium"],["CYTOPHAGA_MEDIUM.yaml","cytophaga_medium"],["Castenholz_TYE_medium.yaml","castenholz_tye_medium"],["FRANCISELLA_HALIOTICIDA_MEDIUM.yaml","francisella_halioticida_medium"]]},{"id":"CHEBI:60720","l":"sodium silicate","na":2,"nb":35,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["Asp2.yaml","asp2"],["HALOBACTERIOVORAX_MEDIUM.yaml","halobacteriovorax_medium"],["Half_Strength_Bacto_Marine_Broth.yaml","half_strength_bacto_marine_broth"],["MEDIUM_514_plus_additional_salt.yaml","medium_514_plus_additional_salt"],["METHANOPYRUS_MEDIUM.yaml","methanopyrus_medium"],["MODIFIED_MEDIUM_514.yaml","modified_medium_514"]]},{"id":"CHEBI:16947","l":"citrate(3-)","na":2,"nb":31,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["E2_medium_with_citrate.yaml","e2_medium_with_citrate"],["M9_minimal_medium_with_citrate.yaml","m9_minimal_medium_with_citrate"],["Vogels_Medium_N.yaml","vogels_medium_n"],["aspartate_salt_schaechter_et_al.yaml","aspartate_salt_schaechter_et_al"],["batch_medium_mattanovich_et_al.yaml","batch_medium_mattanovich_et_al"],["bg11_0_015_mm_iron_shcolnick_2006.yaml","bg11_0_015_mm_iron_shcolnick_2006"]]},{"id":"CHEBI:64205","l":"calcium nitrate","na":2,"nb":23,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"]],"b":[["9K_MEDIUM.yaml","9k_medium"],["9K_WITH_SULFUR_MEDIUM.yaml","9k_with_sulfur_medium"],["9_K_medium.yaml","9_k_medium"],["9_k_medium__c97a7f66.yaml","9_k_medium"],["9k_medium__4af6025b.yaml","9k_medium"],["ACIDIANUS_BRIERLEYI_MEDIUM.yaml","acidianus_brierleyi_medium"]]},{"id":"CHEBI:30742","l":"ethylene glycol","na":2,"nb":21,"a":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"]],"b":[["acetobacterium_medium_marine.yaml","acetobacterium_medium_marine"],["bm_in_arabinose_hodgson_et_al.yaml","bm_in_arabinose_hodgson_et_al"],["bm_in_cellobiose_hodgson_et_al.yaml","bm_in_cellobiose_hodgson_et_al"],["bm_in_fructose_hodgson_et_al.yaml","bm_in_fructose_hodgson_et_al"],["bm_in_galactose_hodgson_et_al.yaml","bm_in_galactose_hodgson_et_al"],["bm_in_glucose_hodgson_et_al.yaml","bm_in_glucose_hodgson_et_al"]]},{"id":"CHEBI:30768","l":"propionic acid","na":2,"nb":21,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["ACY.yaml","ACY"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"],["MEDIUM_10.yaml","medium_10"],["Mega.yaml","Mega"]]},{"id":"CHEBI:15741","l":"succinic acid","na":2,"nb":16,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["AQUASPIRILLUM_MEDIUM_II.yaml","aquaspirillum_medium_ii"],["DESULFUROBACTERIUM_MEDIUM.yaml","desulfurobacterium_medium"],["MAGNETOSPIRILLUM_MEDIUM.yaml","magnetospirillum_medium"],["MG_minimal_media.yaml","MG minimal media"],["MG_minimal_media_noIron.yaml","MG minimal media noIron"],["PETROBACTER_SUCCINIMANDENS_MEDIUM.yaml","petrobacter_succinimandens_medium"]]},{"id":"CHEBI:132106","l":"sodium propionate","na":2,"nb":15,"a":[["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["DESULFOBULBUS_MEDIUM.yaml","desulfobulbus_medium"],["DESULFOFABA_HANSENII_MEDIUM.yaml","desulfofaba_hansenii_medium"],["DESULFOFABA_MEDIUM.yaml","desulfofaba_medium"],["DESULFORHABDUS_AMNIGENA_MEDIUM.yaml","desulforhabdus_amnigena_medium"],["DESULFOSALSIMONAS_MEDIUM.yaml","desulfosalsimonas_medium"],["DPM_MEDIUM.yaml","dpm_medium"]]},{"id":"ENVO:00002007","l":"sediment","na":9,"nb":2,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["modified_dsm_120_medium_for_diet_coculture.yaml","modified_dsm_120_medium_for_diet_coculture"],["modified_freshwater_medium_for_diet_coculture.yaml","modified_freshwater_medium_for_diet_coculture"]]},{"id":"CHEBI:16865","l":"gamma-aminobutyric acid","na":2,"nb":6,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]],"b":[["CLOSTRIDIUM_AMINOBUTYRICUM_MEDIUM.yaml","clostridium_aminobutyricum_medium"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:16750","l":"guanosine","na":2,"nb":5,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:16830","l":"methylamine","na":2,"nb":5,"a":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"]],"b":[["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["MEDIUM_FOR_DSM_14457_AND_14458.yaml","medium_for_dsm_14457_and_14458"],["MEDIUM_FOR_METHYLOBACTERIUM_PODARIUM.yaml","medium_for_methylobacterium_podarium"],["acetobacterium_submarinus_medium__9fed26ec.yaml","acetobacterium_submarinus_medium"],["hyphomicrobium_medium__41859ce8.yaml","hyphomicrobium_medium"]]},{"id":"CHEBI:17300","l":"tetrachloroethene","na":2,"nb":5,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["MINERAL_SALTS_MEDIUM_WITH_TCE.yaml","mineral_salts_medium_with_tce"],["dehalobacter_restrictus_medium_tce.yaml","dehalobacter_restrictus_medium_tce"],["dehalobacter_restrictus_medium_tce__3ce89046.yaml","dehalobacter_restrictus_medium_tce"],["desulfuromonas_medium_tce.yaml","desulfuromonas_medium_tce"],["mineral_salts_medium_with_tce__be1bd293.yaml","mineral_salts_medium_with_tce"]]},{"id":"CHEBI:53389","l":"poly(3-hydroxybutyrate)","na":5,"nb":2,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"],["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["PHB_AGAR.yaml","phb_agar"],["phb_agar__ec580e59.yaml","phb_agar"]]},{"id":"CHEBI:62064","l":"butane-2,3-diol","na":2,"nb":5,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["PROPIONIVIBRIO_MEDIUM.yaml","propionivibrio_medium"],["Pelobacter_carbinolicus_Medium.yaml","pelobacter_carbinolicus_medium"],["ne23_3_medium.yaml","ne23_3_medium"],["pelobacter_propionicus_medium_freshwater.yaml","pelobacter_propionicus_medium_freshwater"],["propionivibrio_medium__91fe4e4e.yaml","propionivibrio_medium"]]},{"id":"CHEBI:15882","l":"phenol","na":2,"nb":4,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]],"b":[["MEDIUM_FOR_BACILLUS_STEAROTHERMOPHILUS.yaml","medium_for_bacillus_stearothermophilus"],["anaerobic_bicarbonate_buffered_medium_with_phenol.yaml","anaerobic_bicarbonate_buffered_medium_with_phenol"],["defined_freshwater_medium_cocl2__ac506908.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__0930ab53.yaml","defined_freshwater_medium_coso4"]]},{"id":"CHEBI:16991","l":"deoxyribonucleic acid","na":2,"nb":4,"a":[["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["PH_MEDIUM.yaml","ph_medium"],["sp4_z_medium__eae01184.yaml","sp4_z_medium"],["ureaplasma_medium__abc787f9.yaml","ureaplasma_medium"],["ureaplasma_medium__de7f9c49.yaml","ureaplasma_medium"]]},{"id":"CHEBI:30746","l":"benzoic acid","na":4,"nb":2,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["UGA_defined_4CarbonMix_Nitrate_anaerobic_pH_7.1.yaml","UGA defined 4CarbonMix Nitrate anaerobic pH 7.1"],["togo_medium_m1949.yaml","togo_medium_m1949"]]},{"id":"CHEBI:86202","l":"chalcopyrite","na":4,"nb":2,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["acidianus_sp_jp7_medium.yaml","acidianus_sp_jp7_medium"],["acidianus_sp_jp7_medium__73757a06.yaml","acidianus_sp_jp7_medium"]]},{"id":"CHEBI:16482","l":"naphthalene","na":2,"nb":3,"a":[["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["DESULFOBACTERIUM_NAPHTHALENIVOLANS_MEDIUM.yaml","desulfobacterium_naphthalenivolans_medium"],["LB_Medium_with_50_ppm_Naphthalene.yaml","lb_medium_with_50_ppm_naphthalene"],["desulfobacterium_naphthalenivolans_medium__c96254de.yaml","desulfobacterium_naphthalenivolans_medium"]]},{"id":"CHEBI:17045","l":"dinitrogen oxide","na":3,"nb":2,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"]],"b":[["PM_N2O.yaml","PM N2O"],["PM_argon75_N2O25.yaml","PM argon75 N2O25"]]},{"id":"CHEBI:28675","l":"dextrin","na":2,"nb":3,"a":[["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"]],"b":[["dt_medium_ph_3_5.yaml","dt_medium_ph_3_5"],["hickey_amp_tresner_agar.yaml","hickey_amp_tresner_agar"],["hickey_tresner_agar.yaml","hickey_tresner_agar"]]},{"id":"CHEBI:15354","l":"choline","na":2,"nb":2,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["CDM_LP.yaml","cdm_lp"],["HYPHOMICROBIUM_METHYLOVORUM_MEDIUM.yaml","hyphomicrobium_methylovorum_medium"]]},{"id":"CHEBI:17824","l":"propan-2-ol","na":2,"nb":2,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"]],"b":[["METHANOGENIUM_CV_MEDIUM.yaml","methanogenium_cv_medium"],["METHANOSPIRILLUM_SK_MEDIUM.yaml","methanospirillum_sk_medium"]]},{"id":"CHEBI:63036","l":"potassium dihydrogen phosphate","na":1,"nb":2726,"a":[["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"]],"b":[["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_PYGV_MEDIUM_modified.yaml","1_10_pygv_medium_modified"],["1_10_sabourauds_agar.yaml","1_10_sabourauds_agar"],["1_10_sabourauds_agar__6d784de4.yaml","1_10_sabourauds_agar"],["1_2_GY_AGAR.yaml","1_2_gy_agar"]]},{"id":"CHEBI:15940","l":"nicotinic acid","na":1,"nb":1433,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2ASW.yaml","2asw"],["2asw__59e92e67.yaml","2asw"]]},{"id":"CHEBI:32954","l":"sodium acetate","na":1,"nb":595,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["A1_MARINE_MEDIUM.yaml","a1_marine_medium"],["A2_MEDIUM.yaml","a2_medium"],["AAM_MEDIUM.yaml","aam_medium"],["ABYSSISOLIBACTER_MEDIUM.yaml","abyssisolibacter_medium"],["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["ACETOMICROBIUM_FAECALE_MEDIUM.yaml","acetomicrobium_faecale_medium"]]},{"id":"CHEBI:32149","l":"sodium sulfate","na":1,"nb":584,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["1_2_r2a_75_asw.yaml","1_2_r2a_75_asw"],["1_2_r2a_medium_with_75_artificial_seawater.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["1_2_r2a_medium_with_75_artificial_seawater__5b6dd332.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"],["ACIDAMINOBACTER_MEDIUM.yaml","acidaminobacter_medium"],["ACIDIFIED_MPOB_MEDIUM.yaml","acidified_mpob_medium"]]},{"id":"CHEBI:34683","l":"disodium hydrogenphosphate","na":1,"nb":570,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"],["1_2_mrs_1_2_bhi_agar.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_mrs_1_2_bhi_agar__56430c33.yaml","1_2_mrs_1_2_bhi_agar"],["1a_Medium.yaml","1a_medium"],["2ASW.yaml","2asw"],["2asw__59e92e67.yaml","2asw"]]},{"id":"CHEBI:17439","l":"cyanocob(III)alamin","na":1,"nb":187,"a":[["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["2ASW.yaml","2asw"],["2asw__59e92e67.yaml","2asw"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["3n_bbm_v_recipe_for_customer_orders.yaml","3n_bbm_v_recipe_for_customer_orders"],["ACY.yaml","ACY"],["ALP_defined.yaml","ALP defined"]]},{"id":"CHEBI:75228","l":"sodium lactate","na":1,"nb":131,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["ANAEROBACILLUS_ARSENICISELENATIS_MEDIUM.yaml","anaerobacillus_arseniciselenatis_medium"],["ARCHAEOGLOBUS_FULGIDUS_MEDIUM.yaml","archaeoglobus_fulgidus_medium"],["ARCHAEOGLOBUS_SULFATICALLIDUS_MEDIUM.yaml","archaeoglobus_sulfaticallidus_medium"],["Artificial_seawater_medium_for_strain_JS_SRB250Lac.yaml","artificial_seawater_medium_for_strain_js_srb250lac"],["BACILLUS_INFERNUS_MEDIUM.yaml","bacillus_infernus_medium"],["BACILLUS_MACYAE_MEDIUM.yaml","bacillus_macyae_medium"]]},{"id":"CHEBI:3311","l":"calcium carbonate","na":1,"nb":117,"a":[["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"]],"b":[["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["2_glucose_yeast_extract_peptone_agar.yaml","2_glucose_yeast_extract_peptone_agar"],["2_glucose_yeast_extract_peptone_agar__32ac0304.yaml","2_glucose_yeast_extract_peptone_agar"],["5_G_MEDIUM.yaml","5_g_medium"],["5_g_medium__8aa8a45a.yaml","5_g_medium"],["6_B_MEDIUM.yaml","6_b_medium"]]},{"id":"CHEBI:32036","l":"potassium sulfate","na":1,"nb":83,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"]],"b":[["225M1_MEDIUM.yaml","225m1_medium"],["225m1_medium__5109009b.yaml","225m1_medium"],["225m1_medium__936a42af.yaml","225m1_medium"],["ARTIFICIAL_PILOT_PLANT_WATER_MEDIUM.yaml","artificial_pilot_plant_water_medium"],["ARTIFICIAL_SOIL_AGAR.yaml","artificial_soil_agar"],["DESULFOSPOROSINUS_ACIDIPHILUS_MEDIUM.yaml","desulfosporosinus_acidiphilus_medium"]]},{"id":"CHEBI:33403","l":"elemental sulfur","na":1,"nb":82,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["ACIDIFERROBACTER_MEDIUM.yaml","acidiferrobacter_medium"],["ACIDILOBUS_MEDIUM.yaml","acidilobus_medium"],["AEROBIC_SULFOLOBALES_MEDIUM.yaml","aerobic_sulfolobales_medium"],["AS_medium.yaml","as_medium"]]},{"id":"CHEBI:232798","l":"sodium L-lactate","na":1,"nb":81,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"]],"b":[["ALP_defined.yaml","ALP defined"],["ALP_defined_chlorate.yaml","ALP defined chlorate"],["ALP_defined_noN.yaml","ALP defined noN"],["ALP_defined_perchlorate.yaml","ALP defined perchlorate"],["ALP_rich.yaml","ALP rich"],["ALP_richB.yaml","ALP richB"]]},{"id":"CHEBI:16015","l":"L-glutamic acid","na":1,"nb":73,"a":[["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]],"b":[["7H9.yaml","7H9"],["BACTO_MIDDLEBROOK_7H9_BROTH.yaml","bacto_middlebrook_7h9_broth"],["BGDM.yaml","bgdm"],["Bacillus_Medium.yaml","bacillus_medium"],["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"]]},{"id":"CHEBI:16467","l":"L-arginine","na":1,"nb":51,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["ABB.yaml","ABB"],["ACY.yaml","ACY"],["CAENICOLA_MOBILE_MEDIUM.yaml","caenicola_mobile_medium"],["CMM.yaml","cmm"],["CTM_MEDIUM.yaml","ctm_medium"],["Chamberlain_CDM.yaml","chamberlain_cdm"]]},{"id":"CHEBI:17203","l":"L-proline","na":1,"nb":48,"a":[["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["CDM_LP.yaml","cdm_lp"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MDM.yaml","mdm"],["MEIOTHERMUS_MEDIUM_R8.yaml","meiothermus_medium_r8"]]},{"id":"CHEBI:17418","l":"valeric acid","na":1,"nb":48,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"]],"b":[["ACY.yaml","ACY"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["ANAEROFILUM_MEDIUM.yaml","anaerofilum_medium"],["DESULFUROBACTERIUM_MEDIUM.yaml","desulfurobacterium_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"]]},{"id":"CHEBI:7916","l":"pantothenic acid","na":1,"nb":48,"a":[["Variovorax_Cryptococcus_Vitamin_Mutualism_Microcosm.html","Variovorax-Cryptococcus Vitamin Cross-Feeding Microcosm"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["A1_MEDIUM.yaml","a1_medium"],["ANAEROBIC_CHOLESTEROL_MEDIUM.yaml","anaerobic_cholesterol_medium"],["ANAEROBIC_THAUERA_MEDIUM.yaml","anaerobic_thauera_medium"],["AQUASPIRILLUM_MEDIUM_II.yaml","aquaspirillum_medium_ii"]]},{"id":"CHEBI:15971","l":"L-histidine","na":1,"nb":47,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["CAENICOLA_MOBILE_MEDIUM.yaml","caenicola_mobile_medium"],["CTM_MEDIUM.yaml","ctm_medium"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"]]},{"id":"CHEBI:18050","l":"L-glutamine","na":1,"nb":42,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"],["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"],["GLUTAMINE_MEDIUM.yaml","glutamine_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"]]},{"id":"CHEBI:17115","l":"L-serine","na":1,"nb":41,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["AMINOMONAS_MEDIUM.yaml","aminomonas_medium"],["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"]]},{"id":"CHEBI:27897","l":"tryptophan","na":1,"nb":32,"a":[["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"]],"b":[["4_yaco_media.yaml","4_yaco_media"],["ACIDAMINOCOCCUS_FERMENTANS_MEDIUM.yaml","acidaminococcus_fermentans_medium"],["Fry_et_al.yaml","fry_et_al"],["GLUTAMINE_MEDIUM.yaml","glutamine_medium"],["Leitch_et_al.yaml","leitch_et_al"],["MCD_Medium.yaml","mcd_medium"]]},{"id":"CHEBI:27570","l":"histidine","na":1,"nb":27,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["MS15_Medium.yaml","ms15_medium"],["NATRONINCOLA_HISTIDINOVORANS_MEDIUM.yaml","natronincola_histidinovorans_medium"]]},{"id":"CHEBI:28757","l":"fructose","na":1,"nb":27,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["ACETOBACTERIUM_MEDIUM.yaml","acetobacterium_medium"],["AQUINCOLA_MEDIUM.yaml","aquincola_medium"],["ARTFICIAL_FRESHWATER_MEDIUM_I.yaml","artficial_freshwater_medium_i"],["CLOSTRIDIUM_ACETATE_1_MEDIUM.yaml","clostridium_acetate_1_medium"],["DESULFOSPOROSINUS_ACIDOPHILUS_MEDIUM.yaml","desulfosporosinus_acidophilus_medium"],["EUBACTERIUM_AGGREGANS_MEDIUM.yaml","eubacterium_aggregans_medium"]]},{"id":"CHEBI:29016","l":"arginine","na":1,"nb":26,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["ACIDAMINOCOCCUS_FERMENTANS_MEDIUM.yaml","acidaminococcus_fermentans_medium"],["EUBACTERIUM_LENTUM_MEDIUM.yaml","eubacterium_lentum_medium"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["MS15_Medium.yaml","ms15_medium"]]},{"id":"CHEBI:41131","l":"crotonic acid","na":1,"nb":21,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["ALKALIPHILUS_CROTONATOXIDANS_MEDIUM.yaml","alkaliphilus_crotonatoxidans_medium"],["ALKALIPHILUS_HYDROTHERMALIS_MEDIUM.yaml","alkaliphilus_hydrothermalis_medium"],["DESULFATIRHABDIUM_MEDIUM.yaml","desulfatirhabdium_medium"],["Desulfatirhabdium_Butyrativorans_Medium.yaml","desulfatirhabdium_butyrativorans_medium"],["EUBACTERIUM_OXIDOREDUCENS_MEDIUM.yaml","eubacterium_oxidoreducens_medium"],["MPA_Medium.yaml","mpa_medium"]]},{"id":"CHEBI:16235","l":"guanine","na":1,"nb":19,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["MCD_Medium.yaml","mcd_medium"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"]]},{"id":"CHEBI:26806","l":"succinate","na":1,"nb":18,"a":[["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]],"b":[["LSG_Medium.yaml","lsg_medium"],["M9ZB_with_succinate.yaml","m9zb_with_succinate"],["MSYS_MEDIUM.yaml","msys_medium"],["NMM_with_succinate.yaml","nmm_with_succinate"],["PJC_with_succinate.yaml","pjc_with_succinate"],["SUCCINATE_MINERAL_MEDIUM.yaml","succinate_mineral_medium"]]},{"id":"CHEBI:64103","l":"sodium butyrate","na":1,"nb":18,"a":[["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["DESULFALLAS_THERMOSAPOVORANS_MEDIUM.yaml","desulfallas_thermosapovorans_medium"],["DESULFOBACTERIUM_CETONICUM_MEDIUM.yaml","desulfobacterium_cetonicum_medium"],["DESULFOCELLA_MEDIUM.yaml","desulfocella_medium"],["DESULFOFARCIMEN_MEDIUM.yaml","desulfofarcimen_medium"],["DESULFOSARCINA_CETONICA_MEDIUM.yaml","desulfosarcina_cetonica_medium"],["DESULFOTHERMUS_NAPHTHAE_MEDIUM.yaml","desulfothermus_naphthae_medium"]]},{"id":"CHEBI:18186","l":"tyrosine","na":1,"nb":17,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["Synthetic_Medium_C.yaml","synthetic_medium_c"],["complete_chemically_defined_medium.yaml","complete_chemically_defined_medium"],["fermentation_medium_glucose_tyrosine.yaml","fermentation_medium_glucose_tyrosine"]]},{"id":"CHEBI:29073","l":"L-ascorbic acid","na":1,"nb":13,"a":[["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["CTM_MEDIUM.yaml","ctm_medium"],["MG_minimal_media.yaml","MG minimal media"],["MG_minimal_media_noCarbon.yaml","MG minimal media noCarbon"],["MG_minimal_media_noIron.yaml","MG minimal media noIron"],["THERMODESULFOVIBRIO_MEDIUM_FOR_N1.yaml","thermodesulfovibrio_medium_for_n1"],["THERMODESULFOVIBRIO_YELLOWSTONII_MEDIUM.yaml","thermodesulfovibrio_yellowstonii_medium"]]},{"id":"CHEBI:16856","l":"glutathione","na":1,"nb":11,"a":[["Zymomonas_Ecoli_Exometabolomics_Obligate_Mutualism.html","Zymomonas-E. coli Exometabolomics-Designed Obligate Mutualism"]],"b":[["CDM_LP.yaml","cdm_lp"],["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"],["Modified_D58_medium.yaml","modified_d58_medium"],["SULFOBACILLUS_DISULFIDOOXIDANS_MEDIUM.yaml","sulfobacillus_disulfidooxidans_medium"],["clostridium_thermocellum_medium__d9fc1f82.yaml","clostridium_thermocellum_medium"]]},{"id":"CHEBI:48607","l":"lithium chloride","na":1,"nb":11,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["Chromatium_Medium.yaml","chromatium_medium"],["RECTINEMA_SUBTERRANEUM_MEDIUM.yaml","rectinema_subterraneum_medium"],["modified_1_5_sws_casein_starch_medium.yaml","modified_1_5_sws_casein_starch_medium"],["modified_vy_2_agar.yaml","modified_vy_2_agar"],["obsidian_pool_fermentor_opf_medium_modified_from_m_b_allen_1959.yaml","obsidian_pool_fermentor_opf_medium_modified_from_m_b_allen_1959"],["s88_vitamins.yaml","s88_vitamins"]]},{"id":"CHEBI:16810","l":"2-oxoglutarate(2-)","na":1,"nb":10,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"]],"b":[["BCYE_alpha_agar.yaml","bcye_alpha_agar"],["BM7_MEDIUM.yaml","bm7_medium"],["CTM_MEDIUM.yaml","ctm_medium"],["DinoMM_alphaKetoGlutAcid_NoNitrogen.yaml","DinoMM alphaKetoGlutAcid NoNitrogen"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"]]},{"id":"CHEBI:16602","l":"trichloroethene","na":9,"nb":1,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["dehalococcoides_medium__9ce6016b.yaml","dehalococcoides_medium"]]},{"id":"CHEBI:31346","l":"calcium sulfate","na":1,"nb":9,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]],"b":[["BEGGIATOA_MEDIUM.yaml","beggiatoa_medium"],["MINERAL_MEDIUM_WITH_GLUCOSE.yaml","mineral_medium_with_glucose"],["THIOTHRIX_MEDIUM.yaml","thiothrix_medium"],["anaerobic_mineral_medium_with_yeast_extract__5d534c46.yaml","anaerobic_mineral_medium_with_yeast_extract"],["anaerotignum_medium__bcb5094d.yaml","anaerotignum_medium"],["mineral_medium_with_glucose__bf4463a4.yaml","mineral_medium_with_glucose"]]},{"id":"CHEBI:28260","l":"galactose","na":1,"nb":8,"a":[["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]],"b":[["A1_MEDIUM.yaml","a1_medium"],["KPL_MEDIUM.yaml","kpl_medium"],["MYXOCOCCUS_FLAVESCENS_MEDIUM.yaml","myxococcus_flavescens_medium"],["Modified_SP_Medium.yaml","modified_sp_medium"],["SP_Medium.yaml","sp_medium"],["a1_medium__13c8113e.yaml","a1_medium"]]},{"id":"CHEBI:27082","l":"trehalose","na":1,"nb":7,"a":[["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"]],"b":[["BRADYMONAS_SEDIMINIS_MEDIUM.yaml","bradymonas_sediminis_medium"],["HELMUTKOENIGIA_MEDIUM.yaml","helmutkoenigia_medium"],["RH_MEDIUM.yaml","rh_medium"],["TREPONEMA_RECTALE_MEDIUM.yaml","treponema_rectale_medium"],["minimal_media__805aefdd.yaml","minimal_media"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:30411","l":"cobalamin","na":7,"nb":1,"a":[["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"]],"b":[["1_10_PYGV_MEDIUM_modified.yaml","1_10_pygv_medium_modified"]]},{"id":"CHEBI:18012","l":"fumaric acid","na":1,"nb":6,"a":[["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["Brucella_broth_with_formate_and_fumarate.yaml","brucella_broth_with_formate_and_fumarate"],["TRICHLOROMONAS_MEDIUM.yaml","trichloromonas_medium"],["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"],["jcm_medium_no_1264.yaml","jcm_medium_no_1264"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"],["togo_medium_m1360.yaml","togo_medium_m1360"]]},{"id":"CHEBI:506227","l":"N-acetyl-D-glucosamine","na":1,"nb":6,"a":[["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["ANAEROBACCA_MEDIUM.yaml","anaerobacca_medium"],["BSK_MEDIUM.yaml","bsk_medium"],["NATRONOARCHAEA_MEDIUM_WITH_GLUCOSAMINE.yaml","natronoarchaea_medium_with_glucosamine"],["barbour_sfoenner_kelly_bsk_ii_medium.yaml","barbour_sfoenner_kelly_bsk_ii_medium"],["m30__354deb2e.yaml","m30"],["modified_bsk_medium__578ddf1c.yaml","modified_bsk_medium"]]},{"id":"NCBITaxon:2203","l":"Methanospirillum hungatei","na":6,"nb":1,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["medium_for_co_culture_of_strain_jt_with_methanospirillum_hungatei_nbrc_100397.yaml","medium_for_co_culture_of_strain_jt_with_methanospirillum_hungatei_nbrc_100397"]]},{"id":"NCBITaxon:35554","l":"Geobacter sulfurreducens","na":6,"nb":1,"a":[["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"]],"b":[["GEOBACTER_SULFURREDUCENS_MEDIUM.yaml","geobacter_sulfurreducens_medium"]]},{"id":"CHEBI:15729","l":"L-ornithine","na":1,"nb":5,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:16119","l":"shikimic acid","na":1,"nb":5,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:17879","l":"4-hydroxybenzoate","na":1,"nb":4,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["DIETHYL_PHOSPHONATE_MEDIUM.yaml","diethyl_phosphonate_medium"],["defined_freshwater_medium_cocl2__140b53e4.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__7cf7eff3.yaml","defined_freshwater_medium_coso4"],["nutrient_medium_p_hydroxybenzoate.yaml","nutrient_medium_p_hydroxybenzoate"]]},{"id":"ENVO:01000306","l":"freshwater environment","na":4,"nb":1,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]],"b":[["tap_medium.yaml","tap_medium"]]},{"id":"CHEBI:32816","l":"pyruvic acid","na":1,"nb":3,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["ALGORIPHAGUS_ALKALIPHILUS_MEDIUM.yaml","algoriphagus_alkaliphilus_medium"],["modified_mrs.yaml","modified_mrs"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"ENVO:00002170","l":"compost","na":3,"nb":1,"a":[["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"]],"b":[["pcs_fp_medium_for_thermophilic_cellulose_degradation.yaml","pcs_fp_medium_for_thermophilic_cellulose_degradation"]]},{"id":"CHEBI:18139","l":"trimethylamine","na":1,"nb":2,"a":[["South_Bay_Salt_Pond_Methane_Restoration_Community.html","South Bay Salt Pond Methane Restoration Microbial Community"]],"b":[["methanogens_saline_water_medium__61ede417.yaml","methanogens_saline_water_medium"],["sulfate_free_metako_medium__b4a668be.yaml","sulfate_free_metako_medium"]]},{"id":"CHEBI:18287","l":"L-fucose","na":1,"nb":2,"a":[["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"]],"b":[["PONTIELLA_MEDIUM.yaml","pontiella_medium"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:30751","l":"formic acid","na":2,"nb":1,"a":[["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:35366","l":"fatty acid","na":1,"nb":2,"a":[["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"]],"b":[["MODIFIED_AM5_MEDIUM_2.yaml","modified_am5_medium_2"],["modified_am5_medium__421a5fe8.yaml","modified_am5_medium"]]},{"id":"CHEBI:35899","l":"crotonate","na":1,"nb":2,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["SERPENTINICELLA_MEDIUM.yaml","serpentinicella_medium"],["for_dsm_17722.yaml","for_dsm_17722"]]},{"id":"NCBITaxon:1148","l":"Synechocystis sp. PCC 6803","na":2,"nb":1,"a":[["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["bg11__f771062f.yaml","bg11"]]},{"id":"NCBITaxon:296543","l":"Thalassiosira pseudonana CCMP1335","na":1,"nb":2,"a":[["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["2ASW.yaml","2asw"],["F_2_Medium.yaml","f_2_medium"]]},{"id":"NCBITaxon:3077","l":"Chlorella vulgaris","na":2,"nb":1,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["tap_medium.yaml","tap_medium"]]},{"id":"NCBITaxon:511145","l":"Escherichia coli str. K-12 substr. MG1655","na":2,"nb":1,"a":[["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["LB_Medium.yaml","lb_medium"]]},{"id":"NCBITaxon:524","l":"Acidiphilium cryptum","na":2,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["acidiphilium_medium__9ab0ce72.yaml","acidiphilium_medium"]]},{"id":"CHEBI:18248","l":"iron atom","na":1,"nb":1,"a":[["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["methanopyrus_medium_for_strain_116__7463935f.yaml","methanopyrus_medium_for_strain_116"]]},{"id":"CHEBI:22660","l":"aspartic acid","na":1,"nb":1,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"]]},{"id":"CHEBI:24266","l":"gluconic acid","na":1,"nb":1,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"]],"b":[["MAG_Modified_arabinose_gluconate_medium.yaml","mag_modified_arabinose_gluconate_medium"]]},{"id":"DOI:10.1038/nature16192","l":"","na":1,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["half_strength_murashige_skoog_medium_for_arabidopsis_growth.yaml","half_strength_murashige_skoog_medium_for_arabidopsis_growth"]]},{"id":"DOI:10.1039/C3EE42189A","l":"","na":1,"nb":1,"a":[["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"]],"b":[["modified_freshwater_medium_for_diet_coculture.yaml","modified_freshwater_medium_for_diet_coculture"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":1,"nb":1,"a":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]],"b":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]]}]} \ No newline at end of file +{"a":"CommunityMech","b":"CultureMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","CultureMech":"https://github.com/CultureBotAI/CultureMech/blob/main/data/merge_yaml/merged/"},"n":151,"by":{"CHEBI":138,"NCBITaxon":8,"ENVO":5},"terms":[{"id":"CHEBI:16526","l":"carbon dioxide","na":75,"nb":711,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["4_yaco_media.yaml","4_yaco_media"],["8kg_4_medium.yaml","8kg_4_medium"],["ABSS2.yaml","abss2"],["ABYSSISOLIBACTER_MEDIUM.yaml","abyssisolibacter_medium"]]},{"id":"CHEBI:18276","l":"dihydrogen","na":58,"nb":231,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["4_yaco_media.yaml","4_yaco_media"],["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["AMMONIFEX_DEGENSII_MEDIUM.yaml","ammonifex_degensii_medium"],["AP11MH_medium.yaml","ap11mh_medium"]]},{"id":"CHEBI:30089","l":"acetate","na":78,"nb":31,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"]],"b":[["AMOEBOBACTER_MEDIUM.yaml","amoebobacter_medium"],["FWAFC.yaml","fwafc"],["M9ZB_with_acetate.yaml","m9zb_with_acetate"],["MEDIUM_FOR_CHLOROBIUM_FERROOXIDANS.yaml","medium_for_chlorobium_ferrooxidans"],["NMM_with_acetate.yaml","nmm_with_acetate"],["Thauera_aminoaromatica_medium.yaml","thauera_aminoaromatica_medium"]]},{"id":"CHEBI:17234","l":"glucose","na":26,"nb":1113,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mh_medium.yaml","15_mh_medium"],["15_mh_medium__b586cb85.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"]]},{"id":"CHEBI:16236","l":"ethanol","na":25,"nb":70,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["ACETOBACTER_PEROXYDANS_MEDIUM.yaml","acetobacter_peroxydans_medium"],["AE_BROTH.yaml","ae_broth"],["ANAEROTIGNUM_NEOPROPIONICUM_MEDIUM.yaml","anaerotignum_neopropionicum_medium"],["Acetobacter_Europaeus_Medium.yaml","acetobacter_europaeus_medium"],["BTU_MEDIUM.yaml","btu_medium"],["CLOSTRIDIUM_KLUYVERI_MEDIUM.yaml","clostridium_kluyveri_medium"]]},{"id":"CHEBI:17992","l":"sucrose","na":15,"nb":108,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"]],"b":[["ACANTHAMOEBA_MEDIUM.yaml","acanthamoeba_medium"],["ACETIVIBRIO_MEDIUM.yaml","acetivibrio_medium"],["ALCALIPHILIC_AMPHIBACILLUS_STRAINS_MEDIUM.yaml","alcaliphilic_amphibacillus_strains_medium"],["ALKALIPHILIC_SPIROCHAETE_MEDIUM.yaml","alkaliphilic_spirochaete_medium"],["ANAEROBACTER_MEDIUM.yaml","anaerobacter_medium"],["AZOSPIRILLUM_AMAZONENSE_MEDIUM.yaml","azospirillum_amazonense_medium"]]},{"id":"CHEBI:18246","l":"(1->4)-beta-D-glucan","na":27,"nb":15,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["CLOSTRIDIUM_CELLULOVORANS_MEDIUM.yaml","clostridium_cellulovorans_medium"],["Clostridium_Cellulolytic_medium.yaml","clostridium_cellulolytic_medium"],["HALOCELLA_CELLULOLYTICA_MEDIUM.yaml","halocella_cellulolytica_medium"],["RUMINICLOSTRIDIUM_CELLOBIOPARUM_MEDIUM.yaml","ruminiclostridium_cellobioparum_medium"],["RUMINICLOSTRIDIUM_PAPYROSOLVENS_MEDIUM.yaml","ruminiclostridium_papyrosolvens_medium"]]},{"id":"CHEBI:17997","l":"dinitrogen","na":12,"nb":904,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_tryptic_soy_broth_anaerobic.yaml","1_2_tryptic_soy_broth_anaerobic"],["480g_medium__e94698e7.yaml","480g_medium"],["8kg_4_medium.yaml","8kg_4_medium"],["ABSS2.yaml","abss2"],["ABYSSISOLIBACTER_MEDIUM.yaml","abyssisolibacter_medium"]]},{"id":"CHEBI:3312","l":"calcium dichloride","na":12,"nb":516,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mgm_medium.yaml","15_mgm_medium"],["15_mh_medium.yaml","15_mh_medium"],["28_mh_medium.yaml","28_mh_medium"],["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["A3.yaml","a3"]]},{"id":"CHEBI:26833","l":"sulfur atom","na":12,"nb":153,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["1_2_SME_MEDIUM.yaml","1_2_sme_medium"],["9K_WITH_SULFUR_MEDIUM.yaml","9k_with_sulfur_medium"],["ACIDIANUS_BRIERLEYI_MEDIUM.yaml","acidianus_brierleyi_medium"],["ACIDITHIOBACILLUS_CALDUS_MEDIUM.yaml","acidithiobacillus_caldus_medium"],["ACIDITHIOBACILLUS_MEDIUM.yaml","acidithiobacillus_medium"],["ACIDOLOBUS_ACETICUS_MEDIUM.yaml","acidolobus_aceticus_medium"]]},{"id":"CHEBI:17790","l":"methanol","na":11,"nb":107,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["2_mh_medium.yaml","2_mh_medium"],["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["ALTEROMONAS_MEDIUM.yaml","alteromonas_medium"],["BM_MEDIUM.yaml","bm_medium"]]},{"id":"CHEBI:131527","l":"dipotassium hydrogen phosphate","na":10,"nb":2042,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"]]},{"id":"CHEBI:26836","l":"sulfuric acid","na":10,"nb":220,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["9K_MEDIUM.yaml","9k_medium"],["A3.yaml","a3"],["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["ACIDIFERROBACTER_MEDIUM.yaml","acidiferrobacter_medium"],["ACIDIFFEROBACTER_MURCIENSIS_MEDIUM.yaml","acidifferobacter_murciensis_medium"]]},{"id":"CHEBI:26710","l":"sodium chloride","na":9,"nb":3474,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["10_mh_medium.yaml","10_mh_medium"],["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["1298.yaml","1298"],["15_mgm_medium.yaml","15_mgm_medium"]]},{"id":"CHEBI:31206","l":"ammonium chloride","na":9,"nb":2324,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]],"b":[["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["480G_MEDIUM.yaml","480g_medium"],["480g_medium__e94698e7.yaml","480g_medium"]]},{"id":"CHEBI:18385","l":"thiamine(1+)","na":8,"nb":94,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["ANB_aerobic.yaml","anb_aerobic"],["AQUASPIRILLUM_MEDIUM.yaml","aquaspirillum_medium"],["Basic_mineral_medium.yaml","basic_mineral_medium"],["CHITINIVIBRIO_MEDIUM.yaml","chitinivibrio_medium"],["Chemically_defined_medium.yaml","chemically_defined_medium"],["Chromatium_Medium.yaml","chromatium_medium"]]},{"id":"CHEBI:15366","l":"acetic acid","na":8,"nb":26,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["ACY.yaml","ACY"],["AE_BROTH.yaml","ae_broth"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Acetobacter_Europaeus_Medium.yaml","acetobacter_europaeus_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"]]},{"id":"CHEBI:15361","l":"pyruvate","na":8,"nb":24,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["ARCOBACTER_ANAEROPHILUS_MEDIUM.yaml","arcobacter_anaerophilus_medium"],["CENTENUM_MEDIUM.yaml","centenum_medium"],["CMM.yaml","cmm"],["NMM_with_pyruvate.yaml","nmm_with_pyruvate"],["ams1_pyruvate_glycine.yaml","ams1_pyruvate_glycine"],["ams1_pyruvate_glycine__08b97e38.yaml","ams1_pyruvate_glycine"]]},{"id":"CHEBI:18222","l":"xylose","na":8,"nb":14,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]],"b":[["COLON_EXTRACT_MEDIUM.yaml","colon_extract_medium"],["MODIFIED_CALDICELLULOSIRUPTOR_MEDIUM.yaml","modified_caldicellulosiruptor_medium"],["MRSsi.yaml","mrssi"],["Thermotoga_hypogea_medium.yaml","thermotoga_hypogea_medium"],["batch_cultivation_medium_for_a28.yaml","batch_cultivation_medium_for_a28"],["batch_cultivation_medium_for_ta1.yaml","batch_cultivation_medium_for_ta1"]]},{"id":"CHEBI:37166","l":"xylan","na":8,"nb":14,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["CLOSTRIDIUM_AEROTOLERANS_MEDIUM.yaml","clostridium_aerotolerans_medium"],["TREPONEMA_THERMOPHILUM_MEDIUM.yaml","treponema_thermophilum_medium"],["VXG_GELLAN.yaml","vxg_gellan"],["XED_Agar.yaml","xed_agar"],["XYLAN_MEDIUM.yaml","xylan_medium"],["Xy_agar.yaml","xy_agar"]]},{"id":"CHEBI:32599","l":"magnesium sulfate","na":7,"nb":1459,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"]],"b":[["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["10_mh_medium.yaml","10_mh_medium"],["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["15_mh_medium.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"]]},{"id":"CHEBI:37585","l":"sodium dihydrogenphosphate","na":7,"nb":173,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["ANT.yaml","ant"],["ATRIBACTERIUM_MEDIUM.yaml","atribacterium_medium"],["BASAL_MEDIUM.yaml","basal_medium"]]},{"id":"CHEBI:17057","l":"cellobiose","na":7,"nb":121,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["A7_MEDIUM.yaml","a7_medium"],["ACETIVIBRIO_ALKALICELLULOSI_MEDIUM.yaml","acetivibrio_alkalicellulosi_medium"],["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["ALKALIFLEXUS_MEDIUM.yaml","alkaliflexus_medium"],["ANAEROBACTERIUM_MEDIUM.yaml","anaerobacterium_medium"],["ANAEROCELLUM_MEDIUM.yaml","anaerocellum_medium"]]},{"id":"CHEBI:32139","l":"sodium hydrogencarbonate","na":6,"nb":1471,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mh_medium.yaml","15_mh_medium"],["15_mh_medium__b586cb85.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM.yaml","1_2_sme_medium"]]},{"id":"CHEBI:76209","l":"sodium sulfide nonahydrate","na":6,"nb":1198,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["1_2_SME_MEDIUM.yaml","1_2_sme_medium"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["480G_MEDIUM.yaml","480g_medium"],["A1_MEDIUM.yaml","a1_medium"],["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"]]},{"id":"CHEBI:28017","l":"starch","na":6,"nb":282,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"]],"b":[["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"],["1_10_r2a_medium_modified_yeast_extract.yaml","1_10_r2a_medium_modified_yeast_extract"],["1_2_r2a_medium_with_75_artificial_seawater.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["1_2_r2a_medium_with_75_artificial_seawater__5b6dd332.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["225M1_MEDIUM.yaml","225m1_medium"],["225m1_medium__5109009b.yaml","225m1_medium"]]},{"id":"CHEBI:17754","l":"glycerol","na":6,"nb":165,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"]],"b":[["1_ogawa_medium.yaml","1_ogawa_medium"],["1_ogawa_medium__65d0ae34.yaml","1_ogawa_medium"],["5_G_MEDIUM.yaml","5_g_medium"],["5_g_medium__8aa8a45a.yaml","5_g_medium"],["6_B_MEDIUM.yaml","6_b_medium"],["6_b_medium__990e4708.yaml","6_b_medium"]]},{"id":"CHEBI:6636","l":"magnesium dichloride","na":6,"nb":67,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mh_medium.yaml","15_mh_medium"],["1_2_r2a_75_asw.yaml","1_2_r2a_75_asw"],["28_mh_medium.yaml","28_mh_medium"],["ALCALIPHILIC_AMPHIBACILLUS_STRAINS_MEDIUM.yaml","alcaliphilic_amphibacillus_strains_medium"],["ALKALISPIRILLUM_MOBILE_MEDIUM.yaml","alkalispirillum_mobile_medium"]]},{"id":"CHEBI:30769","l":"citric acid","na":6,"nb":55,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["Azospira_Medium.yaml","azospira_medium"],["BG11.yaml","bg11"],["BG11_medium.yaml","bg11_medium"],["CTM_MEDIUM.yaml","ctm_medium"],["ETHANOLOGENBACTERIUM_MEDIUM.yaml","ethanologenbacterium_medium"],["GINGER_BEER_PLANT_MEDIUM.yaml","ginger_beer_plant_medium"]]},{"id":"CHEBI:30772","l":"butyric acid","na":6,"nb":26,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"],["Mega.yaml","Mega"],["RUMEN_BACTERIA_MEDIUM.yaml","rumen_bacteria_medium"],["SELENOMONAS_WG_MEDIUM.yaml","selenomonas_wg_medium"]]},{"id":"CHEBI:24996","l":"lactate","na":22,"nb":6,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["ARCOBACTER_ANAEROPHILUS_MEDIUM.yaml","arcobacter_anaerophilus_medium"],["defined_freshwater_medium_cocl2__f0ffbcc6.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__41b1d433.yaml","defined_freshwater_medium_coso4"],["fermentation_medium_lactate_nh4cl.yaml","fermentation_medium_lactate_nh4cl"],["modified_m1_medium_with_20_mm_lactate_pinchuk_et_al.yaml","modified_m1_medium_with_20_mm_lactate_pinchuk_et_al"],["modified_m1_medium_with_lactate_and_glycine_no_nh4cl.yaml","modified_m1_medium_with_lactate_and_glycine_no_nh4cl"]]},{"id":"CHEBI:176843","l":"vitamin B12","na":5,"nb":1411,"a":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Soil_Corrinoid_B12_Reservoir_Community.html","Soil Corrinoid Reservoir Microbial Community"],["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"]]},{"id":"CHEBI:17015","l":"riboflavin","na":5,"nb":1290,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"]]},{"id":"CHEBI:17634","l":"D-glucose","na":5,"nb":441,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"]],"b":[["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"],["1_2_mrs_1_2_bhi_agar.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_mrs_1_2_bhi_agar__56430c33.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_tryptic_soy_broth_anaerobe.yaml","1_2_tryptic_soy_broth_anaerobe"],["1_2_tryptic_soy_broth_anaerobic.yaml","1_2_tryptic_soy_broth_anaerobic"],["1_2_tryptic_soy_broth_anaerobic__d70593aa.yaml","1_2_tryptic_soy_broth_anaerobic"]]},{"id":"CHEBI:16828","l":"L-tryptophan","na":5,"nb":40,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["CDMM.yaml","cdmm"],["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["M9_minimal_media_aromix_noCarbon.yaml","M9 minimal media aromix noCarbon"],["MDM.yaml","mdm"]]},{"id":"CHEBI:30776","l":"hexanoic acid","na":5,"nb":7,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["DESULFUROBACTERIUM_MEDIUM.yaml","desulfurobacterium_medium"],["TD3_MEDIUM.yaml","td3_medium"],["THERMODESULFOBACTERIUM_HYDROGENIPHILUM_MEDIUM.yaml","thermodesulfobacterium_hydrogeniphilum_medium"],["THERMODESULFOBACTERIUM_HYDROGENOPHILUM_MEDIUM.yaml","thermodesulfobacterium_hydrogenophilum_medium"],["desulfurobacterium_medium__edb237d2.yaml","desulfurobacterium_medium"],["td3_medium__4a2d4552.yaml","td3_medium"]]},{"id":"CHEBI:15377","l":"water","na":4,"nb":2283,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1_10_MB_agar.yaml","1_10_mb_agar"],["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"],["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"]]},{"id":"CHEBI:8806","l":"Resazurin","na":4,"nb":1604,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM.yaml","1_2_sme_medium"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["480G_MEDIUM.yaml","480g_medium"],["480g_medium__e94698e7.yaml","480g_medium"]]},{"id":"CHEBI:62946","l":"ammonium sulfate","na":4,"nb":816,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM.yaml","1_2_sme_medium"],["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"]]},{"id":"CHEBI:91247","l":"L-cysteine hydrochloride","na":4,"nb":134,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["ABB.yaml","ABB"],["ACY.yaml","ACY"],["AP11MH_medium.yaml","ap11mh_medium"],["Actinotalea_fermentas_medium.yaml","actinotalea_fermentas_medium"],["BBL_ACTINOMYCES_BROTH.yaml","bbl_actinomyces_broth"]]},{"id":"CHEBI:15603","l":"L-leucine","na":4,"nb":70,"a":[["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"]],"b":[["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["Hypertonic_medium.yaml","hypertonic_medium"],["MCD_Medium.yaml","mcd_medium"]]},{"id":"CHEBI:16199","l":"urea","na":4,"nb":45,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["A7_MEDIUM.yaml","a7_medium"],["Agro_defined_trehalose.yaml","Agro defined trehalose"],["BACILLUS_PASTEURII_MEDIUM.yaml","bacillus_pasteurii_medium"],["BM7CO_MEDIUM.yaml","bm7co_medium"],["C41_MEDIUM.yaml","c41_medium"],["CATONELLA_UREILYTICA_MEDIUM.yaml","catonella_ureilytica_medium"]]},{"id":"CHEBI:16811","l":"methionine","na":4,"nb":25,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["Chamberlain_CDM.yaml","chamberlain_cdm"],["DEINOCOCCUS_MEDIUM.yaml","deinococcus_medium"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["MS13_Medium.yaml","ms13_medium"]]},{"id":"CHEBI:16411","l":"indole-3-acetic acid","na":20,"nb":4,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"]],"b":[["ENDOMICROBIUM_PROAVITUM_RSA_MEDIUM.yaml","endomicrobium_proavitum_rsa_medium"],["MODIFIED_AM5_MEDIUM_2.yaml","modified_am5_medium_2"],["am5_medium_elusimicrobium_medium.yaml","am5_medium_elusimicrobium_medium"],["endomicrobium_proavitum_rsa_medium__51692939.yaml","endomicrobium_proavitum_rsa_medium"]]},{"id":"CHEBI:16899","l":"D-mannitol","na":4,"nb":18,"a":[["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["HETEROTROPHIC_MEDIUM_H3P.yaml","heterotrophic_medium_h3p"],["MGL.yaml","MGL"],["Modified_YM.yaml","Modified YM"],["NF.yaml","NF"],["NL-CCM.yaml","NL-CCM"],["NLDM_defined.yaml","NLDM_defined"]]},{"id":"CHEBI:18237","l":"glutamic acid","na":4,"nb":13,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["ACANTHAMOEBA_MEDIUM.yaml","acanthamoeba_medium"],["HALISCOMENOBACTER_MEDIUM.yaml","haliscomenobacter_medium"],["LENTIBACILLUS_MEDIUM.yaml","lentibacillus_medium"],["McAA_formate_No_pABA.yaml","McAA formate No pABA"],["NATRONOBACTERIUM_MEDIUM.yaml","natronobacterium_medium"],["PSA_medium.yaml","psa_medium"]]},{"id":"CHEBI:15956","l":"biotin","na":3,"nb":1645,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2ASW.yaml","2asw"]]},{"id":"CHEBI:75832","l":"iron(2+) sulfate (anhydrous)","na":3,"nb":226,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["ACIDITHIOBACILLUS_FERRIVORANS_MEDIUM.yaml","acidithiobacillus_ferrivorans_medium"],["ACY.yaml","ACY"],["AQUASPIRILLUM_MEDIUM_II.yaml","aquaspirillum_medium_ii"],["BACILLUS_THERMOALCALOPHILUS_MEDIUM.yaml","bacillus_thermoalcalophilus_medium"],["BLASTOCOCCUS_AGGREGATUS_MEDIUM.yaml","blastococcus_aggregatus_medium"],["Basal_Salt_Medium_with_biphenyl.yaml","basal_salt_medium_with_biphenyl"]]},{"id":"CHEBI:17191","l":"L-isoleucine","na":3,"nb":65,"a":[["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"]],"b":[["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["CTM_MEDIUM.yaml","ctm_medium"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MCD_Medium.yaml","mcd_medium"]]},{"id":"ENVO:00005801","l":"rhizosphere","na":62,"nb":3,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"]],"b":[["R2A_AGAR.yaml","r2a_agar"],["half_strength_murashige_skoog_medium_for_arabidopsis_growth.yaml","half_strength_murashige_skoog_medium_for_arabidopsis_growth"],["nitrogen_free_plant_nutrient_solution_for_soybean_growth.yaml","nitrogen_free_plant_nutrient_solution_for_soybean_growth"]]},{"id":"CHEBI:17561","l":"L-cysteine","na":3,"nb":60,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["70_30_sporulation_medium.yaml","70_30_sporulation_medium"],["BHIS_CaCl2.yaml","BHIS_CaCl2"],["BHIS_HOMOPIPES.yaml","BHIS_HOMOPIPES"],["BHIS_K3.yaml","BHIS_K3"],["BHIS_K3_noGlucose.yaml","BHIS_K3_noGlucose"],["BHIS_PIPES.yaml","BHIS_PIPES"]]},{"id":"CHEBI:15356","l":"cysteine","na":3,"nb":40,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["AMB_MEDIUM.yaml","amb_medium"],["Chopped_Meat_Carbohydrate_Medium.yaml","chopped_meat_carbohydrate_medium"],["Chopped_Meat_Carbohydrate_Medium_w_Tween_80.yaml","chopped_meat_carbohydrate_medium_w_tween_80"],["FRANCISELLA_HALIOTICIDA_MEDIUM.yaml","francisella_halioticida_medium"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"]]},{"id":"CHEBI:17716","l":"lactose","na":3,"nb":25,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"]],"b":[["1298.yaml","1298"],["ALKALINE_CELLULOSE_AGAR.yaml","alkaline_cellulose_agar"],["Basal_synthetic_medium.yaml","basal_synthetic_medium"],["CLOSTRIDIUM_VINCENTII_MEDIUM.yaml","clostridium_vincentii_medium"],["M17_MEDIUM_FOR_LACTIC_STREPTOCOCCI.yaml","m17_medium_for_lactic_streptococci"],["STREPTOCOCCUS_SUIS_MEDIUM.yaml","streptococcus_suis_medium"]]},{"id":"CHEBI:30742","l":"ethylene glycol","na":3,"nb":21,"a":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"]],"b":[["acetobacterium_medium_marine.yaml","acetobacterium_medium_marine"],["bm_in_arabinose_hodgson_et_al.yaml","bm_in_arabinose_hodgson_et_al"],["bm_in_cellobiose_hodgson_et_al.yaml","bm_in_cellobiose_hodgson_et_al"],["bm_in_fructose_hodgson_et_al.yaml","bm_in_fructose_hodgson_et_al"],["bm_in_galactose_hodgson_et_al.yaml","bm_in_galactose_hodgson_et_al"],["bm_in_glucose_hodgson_et_al.yaml","bm_in_glucose_hodgson_et_al"]]},{"id":"CHEBI:26271","l":"proline","na":3,"nb":19,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["cdm_lab_medium.yaml","cdm_lab_medium"],["complete_chemically_defined_medium.yaml","complete_chemically_defined_medium"],["minimal_chemically_defined_medium_his_pro_letort_2001.yaml","minimal_chemically_defined_medium_his_pro_letort_2001"]]},{"id":"CHEBI:15741","l":"succinic acid","na":3,"nb":16,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["AQUASPIRILLUM_MEDIUM_II.yaml","aquaspirillum_medium_ii"],["DESULFUROBACTERIUM_MEDIUM.yaml","desulfurobacterium_medium"],["MAGNETOSPIRILLUM_MEDIUM.yaml","magnetospirillum_medium"],["MG_minimal_media.yaml","MG minimal media"],["MG_minimal_media_noIron.yaml","MG minimal media noIron"],["PETROBACTER_SUCCINIMANDENS_MEDIUM.yaml","petrobacter_succinimandens_medium"]]},{"id":"CHEBI:17750","l":"glycine betaine","na":3,"nb":15,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["CUNICULIPLASMA_MEDIUM.yaml","cuniculiplasma_medium"],["MALEDIVIBACTER_MEDIUM.yaml","maledivibacter_medium"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"]]},{"id":"CHEBI:16482","l":"naphthalene","na":3,"nb":3,"a":[["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"]],"b":[["DESULFOBACTERIUM_NAPHTHALENIVOLANS_MEDIUM.yaml","desulfobacterium_naphthalenivolans_medium"],["LB_Medium_with_50_ppm_Naphthalene.yaml","lb_medium_with_50_ppm_naphthalene"],["desulfobacterium_naphthalenivolans_medium__c96254de.yaml","desulfobacterium_naphthalenivolans_medium"]]},{"id":"CHEBI:26977","l":"thiosulfate","na":3,"nb":3,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"]],"b":[["AMOEBOBACTER_MEDIUM.yaml","amoebobacter_medium"],["Artificial_seawater_base_with_thiosulfate_as_the_electron_donor.yaml","artificial_seawater_base_with_thiosulfate_as_the_electron_donor"],["pfennigs_medium__4e5aaa08.yaml","pfennigs_medium"]]},{"id":"CHEBI:75213","l":"sodium molybdate dihydrate","na":2,"nb":2172,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["1a_Medium.yaml","1a_medium"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["3n_bbm_v.yaml","3n_bbm_v"]]},{"id":"CHEBI:32588","l":"potassium chloride","na":2,"nb":1953,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mgm_medium.yaml","15_mgm_medium"],["15_mh_medium.yaml","15_mh_medium"],["15_mh_medium__b586cb85.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"]]},{"id":"CHEBI:35696","l":"cobalt dichloride","na":2,"nb":493,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["1a_Medium.yaml","1a_medium"],["ACIDIC_DILUTED_ASM_MEDIUM.yaml","acidic_diluted_asm_medium"],["ACIDIFFEROBACTER_MURCIENSIS_MEDIUM.yaml","acidifferobacter_murciensis_medium"],["ALKALINUS_ABYSSINIESE_MEDIUM.yaml","alkalinus_abyssiniese_medium"],["ALKALIPHILUS_CROTONATOXIDANS_MEDIUM.yaml","alkaliphilus_crotonatoxidans_medium"],["ANAEROLINEA_MEDIUM_C.yaml","anaerolinea_medium_c"]]},{"id":"CHEBI:63005","l":"sodium nitrate","na":2,"nb":358,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_sabourauds_agar.yaml","1_10_sabourauds_agar"],["1_10_sabourauds_agar__6d784de4.yaml","1_10_sabourauds_agar"],["1a_Medium.yaml","1a_medium"]]},{"id":"ENVO:01001405","l":"laboratory environment","na":200,"nb":2,"a":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"]],"b":[["glycerol_fermentation_medium_for_diet_coculture.yaml","glycerol_fermentation_medium_for_diet_coculture"],["tap_medium.yaml","tap_medium"]]},{"id":"CHEBI:35176","l":"zinc sulfate","na":2,"nb":198,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["7H9.yaml","7H9"],["ANB_aerobic.yaml","anb_aerobic"],["BACTO_MIDDLEBROOK_7H9_BROTH.yaml","bacto_middlebrook_7h9_broth"],["Basic_mineral_medium.yaml","basic_mineral_medium"],["CAMM.yaml","camm"],["CDM_for_Continuous_Cultivation.yaml","cdm_for_continuous_cultivation"]]},{"id":"CHEBI:23414","l":"copper(II) sulfate","na":2,"nb":148,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["ALCALIGENES_MEDIUM.yaml","alcaligenes_medium"],["Alkaline_halophile_medium.yaml","alkaline_halophile_medium"],["BACTO_MIDDLEBROOK_7H9_BROTH.yaml","bacto_middlebrook_7h9_broth"],["Basal_synthetic_medium.yaml","basal_synthetic_medium"],["CDM_for_Continuous_Cultivation.yaml","cdm_for_continuous_cultivation"],["CLOSTRIDIUM_METHYLPENTOSUM_MEDIUM.yaml","clostridium_methylpentosum_medium"]]},{"id":"CHEBI:75228","l":"sodium lactate","na":2,"nb":131,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"]],"b":[["ANAEROBACILLUS_ARSENICISELENATIS_MEDIUM.yaml","anaerobacillus_arseniciselenatis_medium"],["ARCHAEOGLOBUS_FULGIDUS_MEDIUM.yaml","archaeoglobus_fulgidus_medium"],["ARCHAEOGLOBUS_SULFATICALLIDUS_MEDIUM.yaml","archaeoglobus_sulfaticallidus_medium"],["Artificial_seawater_medium_for_strain_JS_SRB250Lac.yaml","artificial_seawater_medium_for_strain_js_srb250lac"],["BACILLUS_INFERNUS_MEDIUM.yaml","bacillus_infernus_medium"],["BACILLUS_MACYAE_MEDIUM.yaml","bacillus_macyae_medium"]]},{"id":"CHEBI:9754","l":"tris","na":2,"nb":107,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["5_salt_water_growth_medium.yaml","5_salt_water_growth_medium"],["70_30_sporulation_medium.yaml","70_30_sporulation_medium"],["ACY.yaml","ACY"],["ALCALIGENES_MEDIUM.yaml","alcaligenes_medium"]]},{"id":"CHEBI:63041","l":"manganese(II) chloride","na":2,"nb":105,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["ANB_aerobic.yaml","anb_aerobic"],["Asp2.yaml","asp2"],["Basic_mineral_medium.yaml","basic_mineral_medium"],["CHITINIVIBRIO_MEDIUM.yaml","chitinivibrio_medium"],["CMM.yaml","cmm"],["Defined_minimal_medium.yaml","defined_minimal_medium"]]},{"id":"CHEBI:15428","l":"glycine","na":2,"nb":87,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["ACETOBACTEROIDES_GLYCINOPHILUS_MEDIUM.yaml","acetobacteroides_glycinophilus_medium"],["ACIDAMINOBACTER_MEDIUM.yaml","acidaminobacter_medium"],["ACIDAMINOCOCCUS_FERMENTANS_MEDIUM.yaml","acidaminococcus_fermentans_medium"],["ANT.yaml","ant"],["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"]]},{"id":"CHEBI:30808","l":"iron trichloride","na":2,"nb":38,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["AZOSPIRILLUM_AMAZONENSE_MEDIUM.yaml","azospirillum_amazonense_medium"],["Beijerinckia_medium_for_isolation.yaml","beijerinckia_medium_for_isolation"],["CARBOXYMETHYL_CELLULOSE_MEDIUM.yaml","carboxymethyl_cellulose_medium"],["CYTOPHAGA_MEDIUM.yaml","cytophaga_medium"],["Castenholz_TYE_medium.yaml","castenholz_tye_medium"],["FRANCISELLA_HALIOTICIDA_MEDIUM.yaml","francisella_halioticida_medium"]]},{"id":"CHEBI:60720","l":"sodium silicate","na":2,"nb":35,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["Asp2.yaml","asp2"],["HALOBACTERIOVORAX_MEDIUM.yaml","halobacteriovorax_medium"],["Half_Strength_Bacto_Marine_Broth.yaml","half_strength_bacto_marine_broth"],["MEDIUM_514_plus_additional_salt.yaml","medium_514_plus_additional_salt"],["METHANOPYRUS_MEDIUM.yaml","methanopyrus_medium"],["MODIFIED_MEDIUM_514.yaml","modified_medium_514"]]},{"id":"CHEBI:16947","l":"citrate(3-)","na":2,"nb":31,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["E2_medium_with_citrate.yaml","e2_medium_with_citrate"],["M9_minimal_medium_with_citrate.yaml","m9_minimal_medium_with_citrate"],["Vogels_Medium_N.yaml","vogels_medium_n"],["aspartate_salt_schaechter_et_al.yaml","aspartate_salt_schaechter_et_al"],["batch_medium_mattanovich_et_al.yaml","batch_medium_mattanovich_et_al"],["bg11_0_015_mm_iron_shcolnick_2006.yaml","bg11_0_015_mm_iron_shcolnick_2006"]]},{"id":"CHEBI:64205","l":"calcium nitrate","na":2,"nb":23,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"]],"b":[["9K_MEDIUM.yaml","9k_medium"],["9K_WITH_SULFUR_MEDIUM.yaml","9k_with_sulfur_medium"],["9_K_medium.yaml","9_k_medium"],["9_k_medium__c97a7f66.yaml","9_k_medium"],["9k_medium__4af6025b.yaml","9k_medium"],["ACIDIANUS_BRIERLEYI_MEDIUM.yaml","acidianus_brierleyi_medium"]]},{"id":"CHEBI:30768","l":"propionic acid","na":2,"nb":21,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["ACY.yaml","ACY"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"],["MEDIUM_10.yaml","medium_10"],["Mega.yaml","Mega"]]},{"id":"CHEBI:132106","l":"sodium propionate","na":2,"nb":15,"a":[["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["DESULFOBULBUS_MEDIUM.yaml","desulfobulbus_medium"],["DESULFOFABA_HANSENII_MEDIUM.yaml","desulfofaba_hansenii_medium"],["DESULFOFABA_MEDIUM.yaml","desulfofaba_medium"],["DESULFORHABDUS_AMNIGENA_MEDIUM.yaml","desulforhabdus_amnigena_medium"],["DESULFOSALSIMONAS_MEDIUM.yaml","desulfosalsimonas_medium"],["DPM_MEDIUM.yaml","dpm_medium"]]},{"id":"ENVO:00002007","l":"sediment","na":10,"nb":2,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["modified_dsm_120_medium_for_diet_coculture.yaml","modified_dsm_120_medium_for_diet_coculture"],["modified_freshwater_medium_for_diet_coculture.yaml","modified_freshwater_medium_for_diet_coculture"]]},{"id":"CHEBI:27082","l":"trehalose","na":2,"nb":7,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"]],"b":[["BRADYMONAS_SEDIMINIS_MEDIUM.yaml","bradymonas_sediminis_medium"],["HELMUTKOENIGIA_MEDIUM.yaml","helmutkoenigia_medium"],["RH_MEDIUM.yaml","rh_medium"],["TREPONEMA_RECTALE_MEDIUM.yaml","treponema_rectale_medium"],["minimal_media__805aefdd.yaml","minimal_media"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:16865","l":"gamma-aminobutyric acid","na":2,"nb":6,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]],"b":[["CLOSTRIDIUM_AMINOBUTYRICUM_MEDIUM.yaml","clostridium_aminobutyricum_medium"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:16750","l":"guanosine","na":2,"nb":5,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:16830","l":"methylamine","na":2,"nb":5,"a":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"]],"b":[["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["MEDIUM_FOR_DSM_14457_AND_14458.yaml","medium_for_dsm_14457_and_14458"],["MEDIUM_FOR_METHYLOBACTERIUM_PODARIUM.yaml","medium_for_methylobacterium_podarium"],["acetobacterium_submarinus_medium__9fed26ec.yaml","acetobacterium_submarinus_medium"],["hyphomicrobium_medium__41859ce8.yaml","hyphomicrobium_medium"]]},{"id":"CHEBI:17300","l":"tetrachloroethene","na":2,"nb":5,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["MINERAL_SALTS_MEDIUM_WITH_TCE.yaml","mineral_salts_medium_with_tce"],["dehalobacter_restrictus_medium_tce.yaml","dehalobacter_restrictus_medium_tce"],["dehalobacter_restrictus_medium_tce__3ce89046.yaml","dehalobacter_restrictus_medium_tce"],["desulfuromonas_medium_tce.yaml","desulfuromonas_medium_tce"],["mineral_salts_medium_with_tce__be1bd293.yaml","mineral_salts_medium_with_tce"]]},{"id":"CHEBI:30746","l":"benzoic acid","na":5,"nb":2,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["UGA_defined_4CarbonMix_Nitrate_anaerobic_pH_7.1.yaml","UGA defined 4CarbonMix Nitrate anaerobic pH 7.1"],["togo_medium_m1949.yaml","togo_medium_m1949"]]},{"id":"CHEBI:53389","l":"poly(3-hydroxybutyrate)","na":5,"nb":2,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"],["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["PHB_AGAR.yaml","phb_agar"],["phb_agar__ec580e59.yaml","phb_agar"]]},{"id":"CHEBI:62064","l":"butane-2,3-diol","na":2,"nb":5,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["PROPIONIVIBRIO_MEDIUM.yaml","propionivibrio_medium"],["Pelobacter_carbinolicus_Medium.yaml","pelobacter_carbinolicus_medium"],["ne23_3_medium.yaml","ne23_3_medium"],["pelobacter_propionicus_medium_freshwater.yaml","pelobacter_propionicus_medium_freshwater"],["propionivibrio_medium__91fe4e4e.yaml","propionivibrio_medium"]]},{"id":"CHEBI:15882","l":"phenol","na":2,"nb":4,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]],"b":[["MEDIUM_FOR_BACILLUS_STEAROTHERMOPHILUS.yaml","medium_for_bacillus_stearothermophilus"],["anaerobic_bicarbonate_buffered_medium_with_phenol.yaml","anaerobic_bicarbonate_buffered_medium_with_phenol"],["defined_freshwater_medium_cocl2__ac506908.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__0930ab53.yaml","defined_freshwater_medium_coso4"]]},{"id":"CHEBI:16991","l":"deoxyribonucleic acid","na":2,"nb":4,"a":[["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["PH_MEDIUM.yaml","ph_medium"],["sp4_z_medium__eae01184.yaml","sp4_z_medium"],["ureaplasma_medium__abc787f9.yaml","ureaplasma_medium"],["ureaplasma_medium__de7f9c49.yaml","ureaplasma_medium"]]},{"id":"CHEBI:86202","l":"chalcopyrite","na":4,"nb":2,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["acidianus_sp_jp7_medium.yaml","acidianus_sp_jp7_medium"],["acidianus_sp_jp7_medium__73757a06.yaml","acidianus_sp_jp7_medium"]]},{"id":"CHEBI:17045","l":"dinitrogen oxide","na":3,"nb":2,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"]],"b":[["PM_N2O.yaml","PM N2O"],["PM_argon75_N2O25.yaml","PM argon75 N2O25"]]},{"id":"CHEBI:28675","l":"dextrin","na":2,"nb":3,"a":[["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"]],"b":[["dt_medium_ph_3_5.yaml","dt_medium_ph_3_5"],["hickey_amp_tresner_agar.yaml","hickey_amp_tresner_agar"],["hickey_tresner_agar.yaml","hickey_tresner_agar"]]},{"id":"CHEBI:15354","l":"choline","na":2,"nb":2,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["CDM_LP.yaml","cdm_lp"],["HYPHOMICROBIUM_METHYLOVORUM_MEDIUM.yaml","hyphomicrobium_methylovorum_medium"]]},{"id":"CHEBI:17824","l":"propan-2-ol","na":2,"nb":2,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"]],"b":[["METHANOGENIUM_CV_MEDIUM.yaml","methanogenium_cv_medium"],["METHANOSPIRILLUM_SK_MEDIUM.yaml","methanospirillum_sk_medium"]]},{"id":"CHEBI:63036","l":"potassium dihydrogen phosphate","na":1,"nb":2726,"a":[["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"]],"b":[["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["1_10_sabourauds_agar.yaml","1_10_sabourauds_agar"],["1_10_sabourauds_agar__6d784de4.yaml","1_10_sabourauds_agar"],["1_2_GY_AGAR.yaml","1_2_gy_agar"]]},{"id":"CHEBI:15940","l":"nicotinic acid","na":1,"nb":1433,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2ASW.yaml","2asw"],["2asw__59e92e67.yaml","2asw"]]},{"id":"CHEBI:32954","l":"sodium acetate","na":1,"nb":597,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["A1_MARINE_MEDIUM.yaml","a1_marine_medium"],["A2_MEDIUM.yaml","a2_medium"],["AAM_MEDIUM.yaml","aam_medium"],["ABYSSISOLIBACTER_MEDIUM.yaml","abyssisolibacter_medium"],["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["ACETOMICROBIUM_FAECALE_MEDIUM.yaml","acetomicrobium_faecale_medium"]]},{"id":"CHEBI:32149","l":"sodium sulfate","na":1,"nb":584,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["1_2_r2a_75_asw.yaml","1_2_r2a_75_asw"],["1_2_r2a_medium_with_75_artificial_seawater.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["1_2_r2a_medium_with_75_artificial_seawater__5b6dd332.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"],["ACIDAMINOBACTER_MEDIUM.yaml","acidaminobacter_medium"],["ACIDIFIED_MPOB_MEDIUM.yaml","acidified_mpob_medium"]]},{"id":"CHEBI:34683","l":"disodium hydrogenphosphate","na":1,"nb":570,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"],["1_2_mrs_1_2_bhi_agar.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_mrs_1_2_bhi_agar__56430c33.yaml","1_2_mrs_1_2_bhi_agar"],["1a_Medium.yaml","1a_medium"],["2ASW.yaml","2asw"],["2asw__59e92e67.yaml","2asw"]]},{"id":"CHEBI:17439","l":"cyanocob(III)alamin","na":1,"nb":187,"a":[["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["2ASW.yaml","2asw"],["2asw__59e92e67.yaml","2asw"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["3n_bbm_v_recipe_for_customer_orders.yaml","3n_bbm_v_recipe_for_customer_orders"],["ACY.yaml","ACY"],["ALP_defined.yaml","ALP defined"]]},{"id":"CHEBI:3311","l":"calcium carbonate","na":1,"nb":117,"a":[["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"]],"b":[["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["2_glucose_yeast_extract_peptone_agar.yaml","2_glucose_yeast_extract_peptone_agar"],["2_glucose_yeast_extract_peptone_agar__32ac0304.yaml","2_glucose_yeast_extract_peptone_agar"],["5_G_MEDIUM.yaml","5_g_medium"],["5_g_medium__8aa8a45a.yaml","5_g_medium"],["6_B_MEDIUM.yaml","6_b_medium"]]},{"id":"CHEBI:32036","l":"potassium sulfate","na":1,"nb":83,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"]],"b":[["225M1_MEDIUM.yaml","225m1_medium"],["225m1_medium__5109009b.yaml","225m1_medium"],["225m1_medium__936a42af.yaml","225m1_medium"],["ARTIFICIAL_PILOT_PLANT_WATER_MEDIUM.yaml","artificial_pilot_plant_water_medium"],["ARTIFICIAL_SOIL_AGAR.yaml","artificial_soil_agar"],["DESULFOSPOROSINUS_ACIDIPHILUS_MEDIUM.yaml","desulfosporosinus_acidiphilus_medium"]]},{"id":"CHEBI:33403","l":"elemental sulfur","na":1,"nb":82,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["ACIDIFERROBACTER_MEDIUM.yaml","acidiferrobacter_medium"],["ACIDILOBUS_MEDIUM.yaml","acidilobus_medium"],["AEROBIC_SULFOLOBALES_MEDIUM.yaml","aerobic_sulfolobales_medium"],["AS_medium.yaml","as_medium"]]},{"id":"CHEBI:232798","l":"sodium L-lactate","na":1,"nb":81,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"]],"b":[["ALP_defined.yaml","ALP defined"],["ALP_defined_chlorate.yaml","ALP defined chlorate"],["ALP_defined_noN.yaml","ALP defined noN"],["ALP_defined_perchlorate.yaml","ALP defined perchlorate"],["ALP_rich.yaml","ALP rich"],["ALP_richB.yaml","ALP richB"]]},{"id":"CHEBI:16015","l":"L-glutamic acid","na":1,"nb":73,"a":[["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]],"b":[["7H9.yaml","7H9"],["BACTO_MIDDLEBROOK_7H9_BROTH.yaml","bacto_middlebrook_7h9_broth"],["BGDM.yaml","bgdm"],["Bacillus_Medium.yaml","bacillus_medium"],["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"]]},{"id":"CHEBI:16467","l":"L-arginine","na":1,"nb":51,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["ABB.yaml","ABB"],["ACY.yaml","ACY"],["CAENICOLA_MOBILE_MEDIUM.yaml","caenicola_mobile_medium"],["CMM.yaml","cmm"],["CTM_MEDIUM.yaml","ctm_medium"],["Chamberlain_CDM.yaml","chamberlain_cdm"]]},{"id":"CHEBI:17203","l":"L-proline","na":1,"nb":48,"a":[["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["CDM_LP.yaml","cdm_lp"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MDM.yaml","mdm"],["MEIOTHERMUS_MEDIUM_R8.yaml","meiothermus_medium_r8"]]},{"id":"CHEBI:17418","l":"valeric acid","na":1,"nb":48,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"]],"b":[["ACY.yaml","ACY"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["ANAEROFILUM_MEDIUM.yaml","anaerofilum_medium"],["DESULFUROBACTERIUM_MEDIUM.yaml","desulfurobacterium_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"]]},{"id":"CHEBI:7916","l":"pantothenic acid","na":1,"nb":48,"a":[["Variovorax_Cryptococcus_Vitamin_Mutualism_Microcosm.html","Variovorax-Cryptococcus Vitamin Cross-Feeding Microcosm"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["A1_MEDIUM.yaml","a1_medium"],["ANAEROBIC_CHOLESTEROL_MEDIUM.yaml","anaerobic_cholesterol_medium"],["ANAEROBIC_THAUERA_MEDIUM.yaml","anaerobic_thauera_medium"],["AQUASPIRILLUM_MEDIUM_II.yaml","aquaspirillum_medium_ii"]]},{"id":"CHEBI:15971","l":"L-histidine","na":1,"nb":47,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["CAENICOLA_MOBILE_MEDIUM.yaml","caenicola_mobile_medium"],["CTM_MEDIUM.yaml","ctm_medium"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"]]},{"id":"CHEBI:18050","l":"L-glutamine","na":1,"nb":42,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"],["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"],["GLUTAMINE_MEDIUM.yaml","glutamine_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"]]},{"id":"CHEBI:17115","l":"L-serine","na":1,"nb":41,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["AMINOMONAS_MEDIUM.yaml","aminomonas_medium"],["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"]]},{"id":"CHEBI:27897","l":"tryptophan","na":1,"nb":32,"a":[["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"]],"b":[["4_yaco_media.yaml","4_yaco_media"],["ACIDAMINOCOCCUS_FERMENTANS_MEDIUM.yaml","acidaminococcus_fermentans_medium"],["Fry_et_al.yaml","fry_et_al"],["GLUTAMINE_MEDIUM.yaml","glutamine_medium"],["Leitch_et_al.yaml","leitch_et_al"],["MCD_Medium.yaml","mcd_medium"]]},{"id":"CHEBI:27570","l":"histidine","na":1,"nb":27,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["MS15_Medium.yaml","ms15_medium"],["NATRONINCOLA_HISTIDINOVORANS_MEDIUM.yaml","natronincola_histidinovorans_medium"]]},{"id":"CHEBI:28757","l":"fructose","na":1,"nb":27,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["ACETOBACTERIUM_MEDIUM.yaml","acetobacterium_medium"],["AQUINCOLA_MEDIUM.yaml","aquincola_medium"],["ARTFICIAL_FRESHWATER_MEDIUM_I.yaml","artficial_freshwater_medium_i"],["CLOSTRIDIUM_ACETATE_1_MEDIUM.yaml","clostridium_acetate_1_medium"],["DESULFOSPOROSINUS_ACIDOPHILUS_MEDIUM.yaml","desulfosporosinus_acidophilus_medium"],["EUBACTERIUM_AGGREGANS_MEDIUM.yaml","eubacterium_aggregans_medium"]]},{"id":"CHEBI:29016","l":"arginine","na":1,"nb":26,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["ACIDAMINOCOCCUS_FERMENTANS_MEDIUM.yaml","acidaminococcus_fermentans_medium"],["EUBACTERIUM_LENTUM_MEDIUM.yaml","eubacterium_lentum_medium"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["MS15_Medium.yaml","ms15_medium"]]},{"id":"CHEBI:41131","l":"crotonic acid","na":1,"nb":21,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["ALKALIPHILUS_CROTONATOXIDANS_MEDIUM.yaml","alkaliphilus_crotonatoxidans_medium"],["ALKALIPHILUS_HYDROTHERMALIS_MEDIUM.yaml","alkaliphilus_hydrothermalis_medium"],["DESULFATIRHABDIUM_MEDIUM.yaml","desulfatirhabdium_medium"],["Desulfatirhabdium_Butyrativorans_Medium.yaml","desulfatirhabdium_butyrativorans_medium"],["EUBACTERIUM_OXIDOREDUCENS_MEDIUM.yaml","eubacterium_oxidoreducens_medium"],["MPA_Medium.yaml","mpa_medium"]]},{"id":"CHEBI:16235","l":"guanine","na":1,"nb":19,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["MCD_Medium.yaml","mcd_medium"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"]]},{"id":"CHEBI:26806","l":"succinate","na":1,"nb":18,"a":[["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]],"b":[["LSG_Medium.yaml","lsg_medium"],["M9ZB_with_succinate.yaml","m9zb_with_succinate"],["MSYS_MEDIUM.yaml","msys_medium"],["NMM_with_succinate.yaml","nmm_with_succinate"],["PJC_with_succinate.yaml","pjc_with_succinate"],["SUCCINATE_MINERAL_MEDIUM.yaml","succinate_mineral_medium"]]},{"id":"CHEBI:64103","l":"sodium butyrate","na":1,"nb":18,"a":[["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["DESULFALLAS_THERMOSAPOVORANS_MEDIUM.yaml","desulfallas_thermosapovorans_medium"],["DESULFOBACTERIUM_CETONICUM_MEDIUM.yaml","desulfobacterium_cetonicum_medium"],["DESULFOCELLA_MEDIUM.yaml","desulfocella_medium"],["DESULFOFARCIMEN_MEDIUM.yaml","desulfofarcimen_medium"],["DESULFOSARCINA_CETONICA_MEDIUM.yaml","desulfosarcina_cetonica_medium"],["DESULFOTHERMUS_NAPHTHAE_MEDIUM.yaml","desulfothermus_naphthae_medium"]]},{"id":"CHEBI:18186","l":"tyrosine","na":1,"nb":17,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["Synthetic_Medium_C.yaml","synthetic_medium_c"],["complete_chemically_defined_medium.yaml","complete_chemically_defined_medium"],["fermentation_medium_glucose_tyrosine.yaml","fermentation_medium_glucose_tyrosine"]]},{"id":"CHEBI:29073","l":"L-ascorbic acid","na":1,"nb":13,"a":[["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["CTM_MEDIUM.yaml","ctm_medium"],["MG_minimal_media.yaml","MG minimal media"],["MG_minimal_media_noCarbon.yaml","MG minimal media noCarbon"],["MG_minimal_media_noIron.yaml","MG minimal media noIron"],["THERMODESULFOVIBRIO_MEDIUM_FOR_N1.yaml","thermodesulfovibrio_medium_for_n1"],["THERMODESULFOVIBRIO_YELLOWSTONII_MEDIUM.yaml","thermodesulfovibrio_yellowstonii_medium"]]},{"id":"CHEBI:16856","l":"glutathione","na":1,"nb":11,"a":[["Zymomonas_Ecoli_Exometabolomics_Obligate_Mutualism.html","Zymomonas-E. coli Exometabolomics-Designed Obligate Mutualism"]],"b":[["CDM_LP.yaml","cdm_lp"],["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"],["Modified_D58_medium.yaml","modified_d58_medium"],["SULFOBACILLUS_DISULFIDOOXIDANS_MEDIUM.yaml","sulfobacillus_disulfidooxidans_medium"],["clostridium_thermocellum_medium__d9fc1f82.yaml","clostridium_thermocellum_medium"]]},{"id":"CHEBI:48607","l":"lithium chloride","na":1,"nb":11,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["Chromatium_Medium.yaml","chromatium_medium"],["RECTINEMA_SUBTERRANEUM_MEDIUM.yaml","rectinema_subterraneum_medium"],["modified_1_5_sws_casein_starch_medium.yaml","modified_1_5_sws_casein_starch_medium"],["modified_vy_2_agar.yaml","modified_vy_2_agar"],["obsidian_pool_fermentor_opf_medium_modified_from_m_b_allen_1959.yaml","obsidian_pool_fermentor_opf_medium_modified_from_m_b_allen_1959"],["s88_vitamins.yaml","s88_vitamins"]]},{"id":"CHEBI:16810","l":"2-oxoglutarate(2-)","na":1,"nb":10,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"]],"b":[["BCYE_alpha_agar.yaml","bcye_alpha_agar"],["BM7_MEDIUM.yaml","bm7_medium"],["CTM_MEDIUM.yaml","ctm_medium"],["DinoMM_alphaKetoGlutAcid_NoNitrogen.yaml","DinoMM alphaKetoGlutAcid NoNitrogen"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"]]},{"id":"CHEBI:16602","l":"trichloroethene","na":9,"nb":1,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["dehalococcoides_medium__9ce6016b.yaml","dehalococcoides_medium"]]},{"id":"CHEBI:31346","l":"calcium sulfate","na":1,"nb":9,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]],"b":[["BEGGIATOA_MEDIUM.yaml","beggiatoa_medium"],["MINERAL_MEDIUM_WITH_GLUCOSE.yaml","mineral_medium_with_glucose"],["THIOTHRIX_MEDIUM.yaml","thiothrix_medium"],["anaerobic_mineral_medium_with_yeast_extract__5d534c46.yaml","anaerobic_mineral_medium_with_yeast_extract"],["anaerotignum_medium__bcb5094d.yaml","anaerotignum_medium"],["mineral_medium_with_glucose__bf4463a4.yaml","mineral_medium_with_glucose"]]},{"id":"CHEBI:28260","l":"galactose","na":1,"nb":8,"a":[["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]],"b":[["A1_MEDIUM.yaml","a1_medium"],["KPL_MEDIUM.yaml","kpl_medium"],["MYXOCOCCUS_FLAVESCENS_MEDIUM.yaml","myxococcus_flavescens_medium"],["Modified_SP_Medium.yaml","modified_sp_medium"],["SP_Medium.yaml","sp_medium"],["a1_medium__13c8113e.yaml","a1_medium"]]},{"id":"CHEBI:30411","l":"cobalamin","na":8,"nb":1,"a":[["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"]],"b":[["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"]]},{"id":"CHEBI:18012","l":"fumaric acid","na":1,"nb":6,"a":[["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["Brucella_broth_with_formate_and_fumarate.yaml","brucella_broth_with_formate_and_fumarate"],["TRICHLOROMONAS_MEDIUM.yaml","trichloromonas_medium"],["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"],["jcm_medium_no_1264.yaml","jcm_medium_no_1264"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"],["togo_medium_m1360.yaml","togo_medium_m1360"]]},{"id":"CHEBI:506227","l":"N-acetyl-D-glucosamine","na":1,"nb":6,"a":[["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["ANAEROBACCA_MEDIUM.yaml","anaerobacca_medium"],["BSK_MEDIUM.yaml","bsk_medium"],["NATRONOARCHAEA_MEDIUM_WITH_GLUCOSAMINE.yaml","natronoarchaea_medium_with_glucosamine"],["barbour_sfoenner_kelly_bsk_ii_medium.yaml","barbour_sfoenner_kelly_bsk_ii_medium"],["m30__354deb2e.yaml","m30"],["modified_bsk_medium__578ddf1c.yaml","modified_bsk_medium"]]},{"id":"NCBITaxon:2203","l":"Methanospirillum hungatei","na":6,"nb":1,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["medium_for_co_culture_of_strain_jt_with_methanospirillum_hungatei_nbrc_100397.yaml","medium_for_co_culture_of_strain_jt_with_methanospirillum_hungatei_nbrc_100397"]]},{"id":"NCBITaxon:35554","l":"Geobacter sulfurreducens","na":6,"nb":1,"a":[["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"]],"b":[["GEOBACTER_SULFURREDUCENS_MEDIUM.yaml","geobacter_sulfurreducens_medium"]]},{"id":"CHEBI:15729","l":"L-ornithine","na":1,"nb":5,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:16119","l":"shikimic acid","na":1,"nb":5,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"NCBITaxon:3077","l":"Chlorella vulgaris","na":5,"nb":1,"a":[["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Chlorella_Vulgaris_Whey_Coculture.html","Chlorella vulgaris Whey Co-culture"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Microalgae_Cyanobacteria_Bioactive_Peptide_Consortia.html","Microalgae-Cyanobacteria Bioactive Peptide Consortia"]],"b":[["tap_medium.yaml","tap_medium"]]},{"id":"CHEBI:17879","l":"4-hydroxybenzoate","na":1,"nb":4,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["DIETHYL_PHOSPHONATE_MEDIUM.yaml","diethyl_phosphonate_medium"],["defined_freshwater_medium_cocl2__140b53e4.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__7cf7eff3.yaml","defined_freshwater_medium_coso4"],["nutrient_medium_p_hydroxybenzoate.yaml","nutrient_medium_p_hydroxybenzoate"]]},{"id":"ENVO:01000306","l":"freshwater environment","na":4,"nb":1,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]],"b":[["tap_medium.yaml","tap_medium"]]},{"id":"CHEBI:32816","l":"pyruvic acid","na":1,"nb":3,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["ALGORIPHAGUS_ALKALIPHILUS_MEDIUM.yaml","algoriphagus_alkaliphilus_medium"],["modified_mrs.yaml","modified_mrs"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"ENVO:00002170","l":"compost","na":3,"nb":1,"a":[["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"]],"b":[["pcs_fp_medium_for_thermophilic_cellulose_degradation.yaml","pcs_fp_medium_for_thermophilic_cellulose_degradation"]]},{"id":"CHEBI:18139","l":"trimethylamine","na":1,"nb":2,"a":[["South_Bay_Salt_Pond_Methane_Restoration_Community.html","South Bay Salt Pond Methane Restoration Microbial Community"]],"b":[["methanogens_saline_water_medium__61ede417.yaml","methanogens_saline_water_medium"],["sulfate_free_metako_medium__b4a668be.yaml","sulfate_free_metako_medium"]]},{"id":"CHEBI:18287","l":"L-fucose","na":1,"nb":2,"a":[["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"]],"b":[["PONTIELLA_MEDIUM.yaml","pontiella_medium"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:24266","l":"gluconic acid","na":2,"nb":1,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Wollastonite_Ramichloridium_Talaromyces_Fungal_Consortium.html","Wollastonite Ramichloridium-Talaromyces Fungal Consortium"]],"b":[["MAG_Modified_arabinose_gluconate_medium.yaml","mag_modified_arabinose_gluconate_medium"]]},{"id":"CHEBI:30751","l":"formic acid","na":2,"nb":1,"a":[["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:35366","l":"fatty acid","na":1,"nb":2,"a":[["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"]],"b":[["MODIFIED_AM5_MEDIUM_2.yaml","modified_am5_medium_2"],["modified_am5_medium__421a5fe8.yaml","modified_am5_medium"]]},{"id":"CHEBI:35899","l":"crotonate","na":1,"nb":2,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["SERPENTINICELLA_MEDIUM.yaml","serpentinicella_medium"],["for_dsm_17722.yaml","for_dsm_17722"]]},{"id":"NCBITaxon:1148","l":"Synechocystis sp. PCC 6803","na":2,"nb":1,"a":[["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["bg11__f771062f.yaml","bg11"]]},{"id":"NCBITaxon:296543","l":"Thalassiosira pseudonana CCMP1335","na":1,"nb":2,"a":[["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["2ASW.yaml","2asw"],["F_2_Medium.yaml","f_2_medium"]]},{"id":"NCBITaxon:511145","l":"Escherichia coli str. K-12 substr. MG1655","na":2,"nb":1,"a":[["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["LB_Medium.yaml","lb_medium"]]},{"id":"NCBITaxon:524","l":"Acidiphilium cryptum","na":2,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["acidiphilium_medium__9ab0ce72.yaml","acidiphilium_medium"]]},{"id":"CHEBI:18248","l":"iron atom","na":1,"nb":1,"a":[["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["methanopyrus_medium_for_strain_116__7463935f.yaml","methanopyrus_medium_for_strain_116"]]},{"id":"CHEBI:22660","l":"aspartic acid","na":1,"nb":1,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":1,"nb":1,"a":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]],"b":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/CommunityMech--MediaIngredientMech.json b/assets/fleet/edges/CommunityMech--MediaIngredientMech.json index 6de2528..dcd74ae 100644 --- a/assets/fleet/edges/CommunityMech--MediaIngredientMech.json +++ b/assets/fleet/edges/CommunityMech--MediaIngredientMech.json @@ -1 +1 @@ -{"a":"CommunityMech","b":"MediaIngredientMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","MediaIngredientMech":"https://github.com/CultureBotAI/MediaIngredientMech/blob/main/data/ingredients/"},"n":234,"by":{"CHEBI":232,"ENVO":2},"terms":[{"id":"CHEBI:17234","l":"glucose","na":25,"nb":23,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"]],"b":[["mapped/Corn_Steep_Liquor_Glucose_Fumarate.yaml","Corn Steep Liquor + Glucose + Fumarate"],["mapped/Fastidious_Anaerobe_Broth_With_Meat_Granules.yaml","Fastidious Anaerobe Broth With Meat Granules"],["mapped/GYPS.yaml","GYPS"],["mapped/Glucose.yaml","Glucose"],["mapped/Glucose_2.yaml","glucose"],["mapped/Glucose_Acetate.yaml","Glucose + Acetate"]]},{"id":"CHEBI:33709","l":"amino acid","na":12,"nb":54,"a":[["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["mapped/1-aminocyclopropane-1-carboxylate.yaml","1-aminocyclopropane-1-carboxylate"],["mapped/3-Chloro-L-tyrosine.yaml","3-Chloro-L-tyrosine"],["mapped/3-aminobutyric_Acid.yaml","3-aminobutyric acid"],["mapped/4-azido-L-phenylalanine.yaml","4-azido-L-phenylalanine"],["mapped/5-Aminolevulinic_Acid.yaml","5-Aminolevulinic acid"],["mapped/5-aminovaleric_Acid.yaml","5-Aminovaleric acid"]]},{"id":"CHEBI:26710","l":"sodium chloride","na":9,"nb":11,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/Brain_Heart_Infusion_Broth.yaml","Brain heart infusion broth"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Mineral_3B_Solution.yaml","Mineral 3B solution"],["mapped/Mineral_3B_Solution_Minus_Nitrogen.yaml","Mineral 3B solution minus Nitrogen"]]},{"id":"CHEBI:3312","l":"calcium dichloride","na":11,"nb":9,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/Cacl2.yaml","CaCl2"],["mapped/Cacl2_X_7_H2o.yaml","CaCl2 x 7 H2O"],["mapped/Calcium_Chloride.yaml","Calcium Chloride"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"]]},{"id":"CHEBI:18276","l":"dihydrogen","na":54,"nb":8,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["mapped/H23-methyl_Mercaptopropionate.yaml","H2+3-methyl Mercaptopropionate"],["mapped/H2_CO2.yaml","H2 + CO2"],["mapped/H2dimethylsulfide.yaml","H2+dimethylsulfide"],["mapped/H2methanol.yaml","H2+methanol"],["mapped/H2tetramethylammonium.yaml","H2+tetramethylammonium"],["mapped/H2trimethylamine.yaml","H2+trimethylamine"]]},{"id":"CHEBI:15740","l":"formate","na":22,"nb":8,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"]],"b":[["mapped/Formate.yaml","Formate"],["mapped/Formate3-methyl_Mercaptopropionate.yaml","Formate+3-methyl Mercaptopropionate"],["mapped/Formatedimethylsulfide.yaml","Formate+dimethylsulfide"],["mapped/Formatemethanol.yaml","Formate+methanol"],["mapped/Formatetetramethylammonium.yaml","Formate+tetramethylammonium"],["mapped/Formatetrimethylamine.yaml","Formate+trimethylamine"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":72,"nb":7,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"]],"b":[["mapped/1-butanolCO2.yaml","1-butanol+CO2"],["mapped/1-propanolCO2.yaml","1-propanol+CO2"],["mapped/2-butanolCO2.yaml","2-butanol+CO2"],["mapped/2-propanolCO2.yaml","2-propanol+CO2"],["mapped/Carbon_dioxide_gas.yaml","Carbon dioxide gas"],["mapped/CyclopentanolCO2.yaml","Cyclopentanol+CO2"]]},{"id":"CHEBI:32599","l":"magnesium sulfate","na":7,"nb":7,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"]],"b":[["mapped/Magnesium_Sulfate.yaml","Magnesium sulfate"],["mapped/Mgso47h2o.yaml","MgSO4·7H2O"],["mapped/Mgso4_X_6_H2o.yaml","MgSO4 x 6 H2O"],["mapped/Mgso4_X_7_H2o.yaml","MgSO4 x 7 H2O"],["mapped/Modified_Wolfes_Minerals.yaml","Modified Wolfe's Minerals"],["mapped/UW_Concentrated_Base.yaml","UW concentrated base"]]},{"id":"CHEBI:28017","l":"starch","na":6,"nb":6,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"]],"b":[["mapped/Fastidious_Anaerobe_Broth_With_Meat_Granules.yaml","Fastidious Anaerobe Broth With Meat Granules"],["mapped/GYPS.yaml","GYPS"],["mapped/Glucose_Cellobiose_Starch_Trypticase_Yeast_Extract.yaml","Glucose + Cellobiose + Starch + Trypticase + Yeast Extract"],["mapped/Glucose_Maltose_Cellobiose_Starch_Glycerol.yaml","Glucose + Maltose + Cellobiose + Starch + Glycerol"],["mapped/PYGS.yaml","PYGS"],["mapped/Starch.yaml","Starch"]]},{"id":"ENVO:00001998","l":"soil","na":14,"nb":5,"a":[["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["LBNL_Switchgrass_Soil_SynCom16.html","LBNL Switchgrass Soil SynCom16"]],"b":[["mapped/Cr1_Soil.yaml","CR1 Soil"],["mapped/Green_House_Soil.yaml","Green House Soil"],["mapped/Soil.yaml","Soil"],["mapped/Soil_Extract.yaml","Soil extract"],["mapped/Vermont_Soil.yaml","Vermont Soil"]]},{"id":"CHEBI:16646","l":"carbohydrate","na":4,"nb":80,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["mapped/1-Kestose.yaml","1-Kestose"],["mapped/2-Deoxy-D-Ribose.yaml","2-Deoxy-D-Ribose"],["mapped/2-Deoxy-D-glucose.yaml","2-Deoxy-D-glucose"],["mapped/2-fucosyllactose.yaml","2'-fucosyllactose"],["mapped/A-Cyclodextrin.yaml","a-Cyclodextrin"],["mapped/Agarose.yaml","Agarose"]]},{"id":"CHEBI:17992","l":"sucrose","na":14,"nb":4,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["mapped/D-Sucrose.yaml","D-Sucrose"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Sucrose.yaml","Sucrose"],["mapped/Sucrose_Yeast_Extract.yaml","Sucrose + Yeast Extract"]]},{"id":"CHEBI:15377","l":"water","na":4,"nb":12,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/Brain_Heart_Infusion_Broth.yaml","Brain heart infusion broth"],["mapped/Distilled_Water.yaml","Distilled water"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"]]},{"id":"CHEBI:31206","l":"ammonium chloride","na":9,"nb":4,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]],"b":[["mapped/Ammonium_Chloride_Nitrogen_Source.yaml","Ammonium chloride (nitrogen source)"],["mapped/Mineral_3B_Solution.yaml","Mineral 3B solution"],["mapped/Nh4cl.yaml","NH4Cl"],["mapped/Tetramethyl_Ammonium_Chloride.yaml","Tetramethyl ammonium chloride"]]},{"id":"CHEBI:17015","l":"riboflavin","na":4,"nb":8,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"]],"b":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/Riboflavin.yaml","Riboflavin"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Thauers_Vitamin_Mix_No_Biotin.yaml","Thauer's vitamin mix no Biotin"]]},{"id":"CHEBI:17634","l":"D-glucose","na":4,"nb":7,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"]],"b":[["mapped/Brain_Heart_Infusion_Broth.yaml","Brain heart infusion broth"],["mapped/D-glucose.yaml","D-Glucose"],["mapped/Dextrose.yaml","Dextrose"],["mapped/Glucose_Acetate.yaml","Glucose + Acetate"],["mapped/Glucose_Cellobiose_Starch_Trypticase_Yeast_Extract.yaml","Glucose + Cellobiose + Starch + Trypticase + Yeast Extract"],["mapped/Glucose_Formate.yaml","Glucose + Formate"]]},{"id":"CHEBI:17057","l":"cellobiose","na":6,"nb":4,"a":[["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["Yarrowia_lipolytica_Division_of_Labor_Lipid_Consortium.html","Yarrowia lipolytica Division-of-Labor Lipid Consortium"]],"b":[["mapped/Cellobiose.yaml","Cellobiose"],["mapped/Glucose_Cellobiose_Starch_Trypticase_Yeast_Extract.yaml","Glucose + Cellobiose + Starch + Trypticase + Yeast Extract"],["mapped/Glucose_Maltose_Cellobiose_Starch_Glycerol.yaml","Glucose + Maltose + Cellobiose + Starch + Glycerol"],["mapped/PY-cellobiose.yaml","PY-cellobiose"]]},{"id":"CHEBI:30769","l":"citric acid","na":6,"nb":4,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["mapped/Citric_Acid.yaml","Citric acid"],["mapped/Citric_Acid_X_H2o.yaml","Citric acid x H2O"],["mapped/Citric_Acidh2o.yaml","Citric Acid•H2O"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:32139","l":"sodium hydrogencarbonate","na":6,"nb":4,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["mapped/84_GL_NaHCO3_Solution.yaml","84 g/L NaHCO3 solution"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Nahco3.yaml","NaHCO3"]]},{"id":"CHEBI:6636","l":"magnesium dichloride","na":6,"nb":4,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["mapped/Mgcl2.yaml","MgCl2"],["mapped/Mgcl2_X_6_H2o.yaml","MgCl2 x 6 H2O"],["mapped/Mgcl2_X_7_H2o.yaml","MgCl2 x 7 H2O"],["mapped/Mgcl2x_6_H2o.yaml","MgCl2x 6 H2O"]]},{"id":"CHEBI:176843","l":"vitamin B12","na":4,"nb":5,"a":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Soil_Corrinoid_B12_Reservoir_Community.html","Soil Corrinoid Reservoir Microbial Community"],["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/Vitamin_B12.yaml","Vitamin B12"],["mapped/Wolfes_Vitamin_Mix.yaml","Wolfe's vitamin mix"]]},{"id":"CHEBI:30089","l":"acetate","na":72,"nb":3,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"]],"b":[["mapped/Acetate.yaml","Acetate"],["mapped/Acetate_Carbon_Source.yaml","Acetate (carbon source)"],["mapped/Glucose_Acetate.yaml","Glucose + Acetate"]]},{"id":"CHEBI:17790","l":"methanol","na":10,"nb":3,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"]],"b":[["mapped/Formatemethanol.yaml","Formate+methanol"],["mapped/H2methanol.yaml","H2+methanol"],["mapped/Methanol.yaml","Methanol"]]},{"id":"CHEBI:37585","l":"sodium dihydrogenphosphate","na":7,"nb":3,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["mapped/Nah2po4.yaml","NaH2PO4"],["mapped/Nah2po4_X_2_H2o.yaml","NaH2PO4 x 2 H2O"],["mapped/Nah2po4h2o.yaml","NaH2PO4•H2O"]]},{"id":"CHEBI:15956","l":"biotin","na":3,"nb":6,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/Biotin.yaml","Biotin"],["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Wolfes_Vitamin_Mix.yaml","Wolfe's vitamin mix"]]},{"id":"CHEBI:17754","l":"glycerol","na":6,"nb":3,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"]],"b":[["mapped/Glucose_Maltose_Cellobiose_Starch_Glycerol.yaml","Glucose + Maltose + Cellobiose + Starch + Glycerol"],["mapped/Glycerol.yaml","Glycerol"],["mapped/Glycerol_2.yaml","glycerol"]]},{"id":"CHEBI:16828","l":"L-tryptophan","na":5,"nb":3,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-tryptophan.yaml","L-Tryptophan"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:75832","l":"iron(2+) sulfate (anhydrous)","na":3,"nb":5,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["mapped/Feso4.yaml","FeSO4"],["mapped/Feso4_X_5_H2o.yaml","FeSO4 x 5 H2O"],["mapped/Feso4_X_6_H2o.yaml","FeSO4 x 6 H2O"],["mapped/Feso4_X_7_H2o.yaml","FeSO4 x 7 H2O"],["mapped/Feso4_X_7h2o.yaml","FeSO4 x 7H2O"]]},{"id":"CHEBI:15603","l":"L-leucine","na":4,"nb":3,"a":[["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-leucine.yaml","L-Leucine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:17029","l":"chitin","na":4,"nb":3,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]],"b":[["mapped/Chitin.yaml","Chitin"],["unmapped/Chitin_From_Shrimp_Shells.yaml","Chitin from shrimp shells"],["unmapped/Colloidal_Chitin.yaml","Colloidal chitin"]]},{"id":"CHEBI:17561","l":"L-cysteine","na":3,"nb":4,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-cysteine.yaml","L-Cysteine"],["mapped/L-cysteine_Hcl_X_H2o.yaml","L-Cysteine HCl x H2O"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:17191","l":"L-isoleucine","na":3,"nb":3,"a":[["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-isoleucine.yaml","L-Isoleucine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:29034","l":"iron(3+)","na":21,"nb":2,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["mapped/Ferric_Iron.yaml","Ferric Iron"],["mapped/Ferrous_Ion.yaml","Ferrous Ion"]]},{"id":"CHEBI:24996","l":"lactate","na":20,"nb":2,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"]],"b":[["mapped/Glucose_Lactate.yaml","Glucose + Lactate"],["mapped/Lactate.yaml","Lactate"]]},{"id":"CHEBI:26833","l":"sulfur atom","na":12,"nb":2,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["mapped/Sulfur.yaml","Sulfur"],["mapped/Yeast_Extract_Sulfur.yaml","Yeast Extract + Sulfur"]]},{"id":"CHEBI:16136","l":"hydrogen sulfide","na":11,"nb":2,"a":[["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["mapped/Hydrogen_Sulfide.yaml","Hydrogen sulfide"],["mapped/Sulfur.yaml","Sulfur"]]},{"id":"CHEBI:75213","l":"sodium molybdate dihydrate","na":2,"nb":11,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/Mc_trace_minerals.yaml","Mc_trace_minerals"],["mapped/Mc_trace_minerals_SO4free.yaml","Mc_trace_minerals_SO4free"],["mapped/Modified_Wolfes_Minerals.yaml","Modified Wolfe's Minerals"],["mapped/Na2moo42h2o.yaml","Na2MoO4·2H2O"],["mapped/Na2moo4_X_2_H2o.yaml","Na2MoO4 x 2 H2O"]]},{"id":"CHEBI:131527","l":"dipotassium hydrogen phosphate","na":10,"nb":2,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["mapped/K2hpo4.yaml","K2HPO4"],["mapped/K2hpo4_X_3_H2o.yaml","K2HPO4 x 3 H2O"]]},{"id":"CHEBI:28885","l":"butan-1-ol","na":9,"nb":2,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["mapped/1-butanolCO2.yaml","1-butanol+CO2"],["mapped/Butanol.yaml","Butanol"]]},{"id":"CHEBI:18222","l":"xylose","na":8,"nb":2,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]],"b":[["mapped/Glucose_Xylose.yaml","Glucose + Xylose"],["mapped/Xylose.yaml","Xylose"]]},{"id":"CHEBI:18385","l":"thiamine(1+)","na":8,"nb":2,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Thiamine.yaml","Thiamine"]]},{"id":"CHEBI:37166","l":"xylan","na":7,"nb":2,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"]],"b":[["mapped/Xylan.yaml","Xylan"],["unmapped/Larchwood_Xylan.yaml","Larchwood xylan"]]},{"id":"CHEBI:32588","l":"potassium chloride","na":2,"nb":5,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"]],"b":[["mapped/Kcl.yaml","KCl"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Mc_general_salts.yaml","Mc_general_salts"],["mapped/Mc_general_salts_SO4free.yaml","Mc_general_salts_SO4free"]]},{"id":"CHEBI:35696","l":"cobalt dichloride","na":2,"nb":5,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/Cobalt_chloride_hexahydrate.yaml","Cobalt chloride hexahydrate"],["mapped/Cocl2.yaml","CoCl2"],["mapped/Cocl2_X_2_H2o.yaml","CoCl2 x 2 H2O"],["mapped/Cocl2_X_4_H2o.yaml","CoCl2 x 4 H2O"],["mapped/Cocl2_X_6_H2o.yaml","CoCl2 x 6 H2O"]]},{"id":"CHEBI:16899","l":"D-mannitol","na":4,"nb":2,"a":[["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["mapped/D-mannitol.yaml","D-Mannitol"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:30746","l":"benzoic acid","na":4,"nb":2,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["mapped/4_Carbon_Mix.yaml","4 Carbon Mix"],["mapped/Benzoic_Acid.yaml","benzoic acid"]]},{"id":"CHEBI:91247","l":"L-cysteine hydrochloride","na":4,"nb":2,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["mapped/L-Cysteine_X_HCl_X_H2O_Solution.yaml","L-Cysteine x HCl x H2O solution"],["mapped/L-cysteine_Hcl.yaml","L-Cysteine HCl"]]},{"id":"CHEBI:15428","l":"glycine","na":2,"nb":3,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/Glycine.yaml","Glycine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:17750","l":"glycine betaine","na":3,"nb":2,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["mapped/Betaine_Hydrochloride.yaml","Betaine hydrochloride"],["mapped/Betaine_X_H2o.yaml","Betaine x H2O"]]},{"id":"CHEBI:18237","l":"glutamic acid","na":3,"nb":2,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["mapped/4_Carbon_Mix.yaml","4 Carbon Mix"],["mapped/Glutamic_Acid.yaml","Glutamic acid"]]},{"id":"CHEBI:23414","l":"copper(II) sulfate","na":2,"nb":3,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/Cuso4.yaml","CuSO4"],["mapped/Cuso4_X_2_H2o.yaml","CuSO4 x 2 H2O"],["mapped/Cuso4_X_4_H2o.yaml","CuSO4 x 4 H2O"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":3,"nb":2,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["mapped/Calcium%282%29.yaml","Calcium(2+)"],["mapped/Calcium.yaml","Calcium"]]},{"id":"CHEBI:30808","l":"iron trichloride","na":2,"nb":3,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/Fecl3.yaml","FeCl3"],["mapped/Fecl3_X_4_H2o.yaml","FeCl3 x 4 H2O"],["mapped/MME_Trace_Minerals.yaml","MME Trace Minerals"]]},{"id":"CHEBI:60720","l":"sodium silicate","na":2,"nb":3,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Na-silicate.yaml","Na-silicate"]]},{"id":"CHEBI:63005","l":"sodium nitrate","na":2,"nb":3,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/Nano3.yaml","NaNO3"],["mapped/Sodium_Nitrate_070_M_Stock.yaml","Sodium nitrate (0.70 M stock)"],["mapped/Sodium_Nitrate_Nitrogen_Source.yaml","Sodium nitrate (nitrogen source)"]]},{"id":"CHEBI:15354","l":"choline","na":2,"nb":2,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["mapped/Choline.yaml","Choline"],["unmapped/Cholinium_Alpha_Ketoglutarate.yaml","Cholinium alpha ketoglutarate"]]},{"id":"CHEBI:15741","l":"succinic acid","na":2,"nb":2,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["mapped/Sodium_Succinate_Dibasic.yaml","Sodium succinate dibasic"],["mapped/Succinic_Acid.yaml","Succinic acid"]]},{"id":"CHEBI:16750","l":"guanosine","na":2,"nb":2,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["mapped/Guanosine.yaml","Guanosine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:16991","l":"deoxyribonucleic acid","na":2,"nb":2,"a":[["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["mapped/Deoxyribonucleic_Acid_From_Herring_Sperm.yaml","Deoxyribonucleic acid from herring sperm"],["mapped/Fish-sperm_Dna.yaml","Fish-Sperm DNA"]]},{"id":"CHEBI:17824","l":"propan-2-ol","na":2,"nb":2,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"]],"b":[["mapped/2-propanolCO2.yaml","2-propanol+CO2"],["mapped/Isopropyl_Alcohol.yaml","Isopropyl alcohol"]]},{"id":"CHEBI:16183","l":"methane","na":57,"nb":1,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"]],"b":[["mapped/Methane.yaml","methane"]]},{"id":"CHEBI:15379","l":"dioxygen","na":25,"nb":1,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["mapped/Dioxygen.yaml","Dioxygen"]]},{"id":"CHEBI:18246","l":"(1->4)-beta-D-glucan","na":25,"nb":1,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"]],"b":[["mapped/Cellulose.yaml","Cellulose"]]},{"id":"CHEBI:16189","l":"sulfate","na":24,"nb":1,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["mapped/Sulfate.yaml","Sulfate"]]},{"id":"CHEBI:17632","l":"nitrate","na":24,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["mapped/Nitrate.yaml","Nitrate"]]},{"id":"CHEBI:16236","l":"ethanol","na":22,"nb":1,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["mapped/Ethanol.yaml","Ethanol"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":20,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["mapped/Ferrous_Ion.yaml","Ferrous Ion"]]},{"id":"CHEBI:16411","l":"indole-3-acetic acid","na":18,"nb":1,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["mapped/3-indolyl_Acetic_Acid.yaml","3-Indolyl acetic acid"]]},{"id":"CHEBI:17968","l":"butyrate","na":17,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"]],"b":[["mapped/Butyrate.yaml","Butyrate"]]},{"id":"CHEBI:28938","l":"ammonium","na":15,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["mapped/Ammonium.yaml","Ammonium"]]},{"id":"CHEBI:16301","l":"nitrite","na":14,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["mapped/Nitrite.yaml","Nitrite"]]},{"id":"CHEBI:16134","l":"ammonia","na":13,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["mapped/Ammonia.yaml","Ammonia"]]},{"id":"CHEBI:17997","l":"dinitrogen","na":12,"nb":1,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["mapped/Nitrogen_gas.yaml","Nitrogen gas"]]},{"id":"CHEBI:26836","l":"sulfuric acid","na":10,"nb":1,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["mapped/H2so4.yaml","H2SO4"]]},{"id":"CHEBI:34683","l":"disodium hydrogenphosphate","na":1,"nb":10,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["mapped/Brain_Heart_Infusion_Broth.yaml","Brain heart infusion broth"],["mapped/Disodium_Phosphate_Heptahydrate_002_M_Stock.yaml","Disodium phosphate heptahydrate (0.02 M stock)"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Na2hpo4.yaml","Na2HPO4"],["mapped/Na2hpo4_X_12_H2o.yaml","Na2HPO4 x 12 H2O"]]},{"id":"CHEBI:16602","l":"trichloroethene","na":9,"nb":1,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["mapped/Trichloroethylene.yaml","Trichloroethylene"]]},{"id":"CHEBI:17272","l":"propionate","na":9,"nb":1,"a":[["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"]],"b":[["mapped/Propionate.yaml","Propionate"]]},{"id":"CHEBI:18367","l":"phosphate(3-)","na":9,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"]],"b":[["mapped/Orthophosphate.yaml","Orthophosphate"]]},{"id":"CHEBI:33229","l":"vitamin (role)","na":1,"nb":9,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["mapped/4-Pyridoxic_Acid.yaml","4-Pyridoxic acid"],["mapped/Ca-folinate.yaml","Ca-folinate"],["mapped/Fad.yaml","FAD"],["mapped/Folinic_Acid.yaml","Folinic acid"],["mapped/L-Carnitine.yaml","L-Carnitine"],["mapped/Na-ascorbate.yaml","Na-ascorbate"]]},{"id":"CHEBI:6457","l":"lignin","na":8,"nb":1,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"],["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"]],"b":[["mapped/Lignin.yaml","Lignin"]]},{"id":"CHEBI:15361","l":"pyruvate","na":7,"nb":1,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["mapped/Pyruvate.yaml","Pyruvate"]]},{"id":"CHEBI:15940","l":"nicotinic acid","na":1,"nb":7,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/Nicotinic_Acid.yaml","Nicotinic acid"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Thauers_Vitamin_Mix_No_Biotin.yaml","Thauer's vitamin mix no Biotin"]]},{"id":"CHEBI:30411","l":"cobalamin","na":7,"nb":1,"a":[["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"]],"b":[["mapped/Cobalamine.yaml","Cobalamine"]]},{"id":"CHEBI:15366","l":"acetic acid","na":6,"nb":1,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"]],"b":[["mapped/Acetic_Acid.yaml","Acetic acid"]]},{"id":"CHEBI:17245","l":"carbon monoxide","na":6,"nb":1,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Subsurface_Carboxydocella_CO_Aquifer_Community.html","Subsurface Carboxydocella CO-Oxidation Aquifer Community"]],"b":[["mapped/Carbon_Monoxide.yaml","Carbon Monoxide"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":6,"nb":1,"a":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["mapped/Bicarbonate.yaml","Bicarbonate"]]},{"id":"CHEBI:30772","l":"butyric acid","na":6,"nb":1,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["mapped/Butyric_Acid.yaml","Butyric acid"]]},{"id":"CHEBI:76209","l":"sodium sulfide nonahydrate","na":6,"nb":1,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["mapped/Na2s_X_9_H2o.yaml","Na2S x 9 H2O"]]},{"id":"CHEBI:86471","l":"pyrite","na":6,"nb":1,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["mapped/Pyrite.yaml","Pyrite"]]},{"id":"CHEBI:16995","l":"oxalic acid","na":5,"nb":1,"a":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["mapped/Oxalic_Acid.yaml","Oxalic Acid"]]},{"id":"CHEBI:30776","l":"hexanoic acid","na":5,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["mapped/Caproic_Acid.yaml","Caproic acid"]]},{"id":"CHEBI:32149","l":"sodium sulfate","na":1,"nb":5,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Mineral_3B_Solution.yaml","Mineral 3B solution"],["mapped/Mineral_3B_Solution_Minus_Nitrogen.yaml","Mineral 3B solution minus Nitrogen"],["mapped/Na2so4.yaml","Na2SO4"]]},{"id":"CHEBI:53389","l":"poly(3-hydroxybutyrate)","na":5,"nb":1,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"],["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["mapped/Poly_3-hydroxybutyrate.yaml","Poly(3-hydroxybutyrate)"]]},{"id":"CHEBI:16015","l":"L-glutamic acid","na":1,"nb":4,"a":[["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-Glutamic_Acid_Monopotassium_Salt_Monohydrate.yaml","L-Glutamic acid monopotassium salt monohydrate"],["mapped/L-glutamic_Acid.yaml","L-Glutamic acid"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:16199","l":"urea","na":4,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["mapped/Urea.yaml","Urea"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":4,"nb":1,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["mapped/Hydrogen_Peroxide.yaml","Hydrogen peroxide"]]},{"id":"CHEBI:16811","l":"methionine","na":4,"nb":1,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["mapped/Dl-methionine.yaml","DL-methionine"]]},{"id":"CHEBI:17439","l":"cyanocob(III)alamin","na":1,"nb":4,"a":[["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["mapped/Cyanocobalamin.yaml","Cyanocobalamin"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Thauers_Vitamin_Mix_No_Biotin.yaml","Thauer's vitamin mix no Biotin"],["mapped/Vitamin_B12.yaml","Vitamin B12"]]},{"id":"CHEBI:232798","l":"sodium L-lactate","na":1,"nb":4,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"]],"b":[["mapped/4_Carbon_Mix.yaml","4 Carbon Mix"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Na-l-lactate.yaml","Na-L-lactate"],["mapped/Sodium_L-lactate.yaml","Sodium L-lactate"]]},{"id":"CHEBI:28851","l":"phenanthrene","na":4,"nb":1,"a":[["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Sphingobium_Nitrososphaera_Phenanthrene_Carbon_SynCom.html","Sphingobium-Nitrososphaera Phenanthrene-Carbon SynCom"]],"b":[["mapped/Phenanthrene.yaml","Phenanthrene"]]},{"id":"CHEBI:32954","l":"sodium acetate","na":1,"nb":4,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["mapped/4_Carbon_Mix.yaml","4 Carbon Mix"],["mapped/Na-acetate.yaml","Na-acetate"],["mapped/Sodium_Acetate.yaml","Sodium acetate"],["mapped/Sodium_Acetate3h2o.yaml","Sodium acetate·3H2O"]]},{"id":"CHEBI:33403","l":"elemental sulfur","na":1,"nb":4,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["mapped/Sulfur.yaml","Sulfur"],["mapped/Sulfur_Powder.yaml","Sulfur (powder)"],["mapped/Sulphur.yaml","Sulphur"],["mapped/Yeast_Extract_Sulfur.yaml","Yeast Extract + Sulfur"]]},{"id":"CHEBI:62946","l":"ammonium sulfate","na":4,"nb":1,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"]],"b":[["mapped/Nh42so4.yaml","(NH4)2SO4"]]},{"id":"CHEBI:63036","l":"potassium dihydrogen phosphate","na":1,"nb":4,"a":[["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"]],"b":[["mapped/Kh2po4.yaml","KH2PO4"],["mapped/Mineral_3B_Solution.yaml","Mineral 3B solution"],["mapped/Mineral_3B_Solution_Minus_Nitrogen.yaml","Mineral 3B solution minus Nitrogen"],["mapped/Wolfes_Vitamin_Mix.yaml","Wolfe's vitamin mix"]]},{"id":"CHEBI:86202","l":"chalcopyrite","na":4,"nb":1,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["mapped/Chalcopyrite.yaml","Chalcopyrite"]]},{"id":"CHEBI:8806","l":"Resazurin","na":4,"nb":1,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["mapped/Resazurin.yaml","Resazurin"]]},{"id":"CHEBI:15356","l":"cysteine","na":3,"nb":1,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["mapped/Cysteine.yaml","Cysteine"]]},{"id":"CHEBI:15971","l":"L-histidine","na":1,"nb":3,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-histidine.yaml","L-Histidine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:16467","l":"L-arginine","na":1,"nb":3,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-arginine.yaml","L-Arginine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":3,"nb":1,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["mapped/Formaldehyde.yaml","Formaldehyde"]]},{"id":"CHEBI:17045","l":"dinitrogen oxide","na":3,"nb":1,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"]],"b":[["mapped/Nitrous_Oxide.yaml","nitrous oxide"]]},{"id":"CHEBI:17115","l":"L-serine","na":1,"nb":3,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-serine.yaml","L-Serine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:17203","l":"L-proline","na":1,"nb":3,"a":[["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-proline.yaml","L-Proline"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:17359","l":"sulfite","na":3,"nb":1,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"]],"b":[["mapped/Sulfite.yaml","Sulfite"]]},{"id":"CHEBI:17437","l":"dimethyl sulfide","na":1,"nb":3,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["mapped/Dimethyl_Sulfide.yaml","Dimethyl sulfide"],["mapped/Formatedimethylsulfide.yaml","Formate+dimethylsulfide"],["mapped/H2dimethylsulfide.yaml","H2+dimethylsulfide"]]},{"id":"CHEBI:17716","l":"lactose","na":3,"nb":1,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"]],"b":[["mapped/Lactose.yaml","Lactose"]]},{"id":"CHEBI:18050","l":"L-glutamine","na":1,"nb":3,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-glutamine.yaml","L-Glutamine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:18139","l":"trimethylamine","na":1,"nb":3,"a":[["South_Bay_Salt_Pond_Methane_Restoration_Community.html","South Bay Salt Pond Methane Restoration Microbial Community"]],"b":[["mapped/Formatetrimethylamine.yaml","Formate+trimethylamine"],["mapped/H2trimethylamine.yaml","H2+trimethylamine"],["mapped/Trimethylamine.yaml","Trimethylamine"]]},{"id":"CHEBI:18154","l":"polysaccharide","na":3,"nb":1,"a":[["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["mapped/Polysaccharides.yaml","Polysaccharides"]]},{"id":"CHEBI:26271","l":"proline","na":3,"nb":1,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["mapped/Proline.yaml","Proline"]]},{"id":"CHEBI:26977","l":"thiosulfate","na":3,"nb":1,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"]],"b":[["mapped/Thiosulfate.yaml","Thiosulfate"]]},{"id":"CHEBI:4167","l":"D-glucopyranose","na":1,"nb":3,"a":[["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"]],"b":[["mapped/D-glucose.yaml","D-Glucose"],["mapped/Dextrose.yaml","Dextrose"],["mapped/Glucose_Xylose.yaml","Glucose + Xylose"]]},{"id":"CHEBI:72813","l":"exopolysaccharide","na":3,"nb":1,"a":[["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]],"b":[["mapped/Exopolysaccharide.yaml","Exopolysaccharide"]]},{"id":"CHEBI:132106","l":"sodium propionate","na":2,"nb":1,"a":[["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["mapped/Na-propionate.yaml","Na-propionate"]]},{"id":"CHEBI:147155","l":"","na":2,"nb":1,"a":[["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["mapped/2-fucosyllactose.yaml","2'-fucosyllactose"]]},{"id":"CHEBI:15347","l":"acetone","na":2,"nb":1,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["mapped/Acetone.yaml","acetone"]]},{"id":"CHEBI:15729","l":"L-ornithine","na":1,"nb":2,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["mapped/L-ornithine.yaml","L-Ornithine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:15882","l":"phenol","na":2,"nb":1,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]],"b":[["mapped/Phenol.yaml","Phenol"]]},{"id":"CHEBI:15930","l":"atrazine","na":2,"nb":1,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["mapped/2-chloro-4ethylamino-6-isopropylamino-135-triazine.yaml","2-chloro-4ethylamino-6-isopropylamino-1,3,5-triazine"]]},{"id":"CHEBI:16119","l":"shikimic acid","na":1,"nb":2,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Shikimic_Acid.yaml","Shikimic Acid"]]},{"id":"CHEBI:16150","l":"benzoate","na":2,"nb":1,"a":[["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["mapped/Benzoate.yaml","Benzoate"]]},{"id":"CHEBI:16235","l":"guanine","na":1,"nb":2,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["mapped/Guanine.yaml","Guanine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:16457","l":"S,S-dimethyl-beta-propiothetin","na":2,"nb":1,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["mapped/Dimethylsulfoniopropionate_Hydrochloride.yaml","Dimethylsulfoniopropionate hydrochloride"]]},{"id":"CHEBI:16482","l":"naphthalene","na":2,"nb":1,"a":[["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["mapped/Naphthalene.yaml","Naphthalene"]]},{"id":"CHEBI:16830","l":"methylamine","na":2,"nb":1,"a":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"]],"b":[["mapped/Methylamine.yaml","Methylamine"]]},{"id":"CHEBI:16856","l":"glutathione","na":1,"nb":2,"a":[["Zymomonas_Ecoli_Exometabolomics_Obligate_Mutualism.html","Zymomonas-E. coli Exometabolomics-Designed Obligate Mutualism"]],"b":[["mapped/Glutathione.yaml","Glutathione"],["mapped/L-Glutathione.yaml","L-Glutathione"]]},{"id":"CHEBI:16865","l":"gamma-aminobutyric acid","na":2,"nb":1,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]],"b":[["mapped/Gamma-aminobutyric_Acid.yaml","gamma-Aminobutyric acid"]]},{"id":"CHEBI:16947","l":"citrate(3-)","na":2,"nb":1,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["mapped/Citrate.yaml","Citrate"]]},{"id":"CHEBI:17300","l":"tetrachloroethene","na":2,"nb":1,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["mapped/Tetrachloroethene.yaml","Tetrachloroethene"]]},{"id":"CHEBI:17996","l":"chloride","na":2,"nb":1,"a":[["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"]],"b":[["mapped/Cl.yaml","Cl-"]]},{"id":"CHEBI:18012","l":"fumaric acid","na":1,"nb":2,"a":[["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["mapped/Corn_Steep_Liquor_Glucose_Fumarate.yaml","Corn Steep Liquor + Glucose + Fumarate"],["mapped/Fumaric_Acid.yaml","Fumaric acid"]]},{"id":"CHEBI:18053","l":"1-aminocyclopropanecarboxylic acid","na":2,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["mapped/1-aminocyclopropane-1-carboxylate.yaml","1-aminocyclopropane-1-carboxylate"]]},{"id":"CHEBI:22660","l":"aspartic acid","na":1,"nb":2,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["mapped/DL-Tyrosine.yaml","DL-Tyrosine"],["mapped/Dl-aspartic_Acid.yaml","DL-aspartic acid"]]},{"id":"CHEBI:26672","l":"siderophore","na":2,"nb":1,"a":[["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"]],"b":[["mapped/Siderophore.yaml","Siderophore"]]},{"id":"CHEBI:26822","l":"sulfide","na":2,"nb":1,"a":[["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"]],"b":[["mapped/Sulfide.yaml","Sulfide"]]},{"id":"CHEBI:27518","l":"acetylene","na":2,"nb":1,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"]],"b":[["mapped/Acetylene.yaml","Acetylene"]]},{"id":"CHEBI:27570","l":"histidine","na":1,"nb":2,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["mapped/Dl-histidine.yaml","DL-Histidine"],["mapped/L-histidine.yaml","L-Histidine"]]},{"id":"CHEBI:28087","l":"glycogen","na":1,"nb":2,"a":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]],"b":[["mapped/Glycogen.yaml","Glycogen"],["mapped/Glycogen_From_Bovine_Liver.yaml","Glycogen from bovine liver"]]},{"id":"CHEBI:28675","l":"dextrin","na":2,"nb":1,"a":[["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"]],"b":[["mapped/Dextrin.yaml","Dextrin"]]},{"id":"CHEBI:28757","l":"fructose","na":1,"nb":2,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["mapped/Fructose.yaml","Fructose"],["mapped/PY-fructose.yaml","PY-fructose"]]},{"id":"CHEBI:28837","l":"octanoic acid","na":2,"nb":1,"a":[["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["mapped/Octanoic_Acid.yaml","Octanoic acid"]]},{"id":"CHEBI:29806","l":"fumarate(2-)","na":2,"nb":1,"a":[["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["mapped/Fumarate.yaml","Fumarate"]]},{"id":"CHEBI:30742","l":"ethylene glycol","na":2,"nb":1,"a":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"]],"b":[["mapped/Ethylene_Glycol.yaml","Ethylene glycol"]]},{"id":"CHEBI:30751","l":"formic acid","na":2,"nb":1,"a":[["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["mapped/Formic_Acid.yaml","Formic acid"]]},{"id":"CHEBI:30768","l":"propionic acid","na":2,"nb":1,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["mapped/Propionic_Acid.yaml","Propionic acid"]]},{"id":"CHEBI:30778","l":"gallic acid","na":1,"nb":2,"a":[["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["mapped/Gallate_Formate.yaml","Gallate + Formate"],["mapped/Gallic_Acid.yaml","Gallic Acid"]]},{"id":"CHEBI:3098","l":"bile acid","na":2,"nb":1,"a":[["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["mapped/Bile_Acid.yaml","Bile Acid"]]},{"id":"CHEBI:31346","l":"calcium sulfate","na":1,"nb":2,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]],"b":[["mapped/Caso4.yaml","CaSO4"],["mapped/Caso4_X_7_H2o.yaml","CaSO4 x 7 H2O"]]},{"id":"CHEBI:32036","l":"potassium sulfate","na":1,"nb":2,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"]],"b":[["mapped/K2so4.yaml","K2SO4"],["mapped/K2so4_X_7_H2o.yaml","K2SO4 x 7 H2O"]]},{"id":"CHEBI:33848","l":"polycyclic arene","na":2,"nb":1,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Pelagerythrobacter_Salinicola_PES_Pyrene_Degradation_SynCom.html","Pelagerythrobacter-Salinicola PES Pyrene-Degradation SynCom"]],"b":[["mapped/Aromatic_Hydrocarbon.yaml","Aromatic hydrocarbon"]]},{"id":"CHEBI:35176","l":"zinc sulfate","na":2,"nb":1,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/Zinc_Sulfate.yaml","Zinc sulfate"]]},{"id":"CHEBI:35381","l":"monosaccharide","na":2,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["mapped/Mono-_And_Disaccharides.yaml","Mono- And Disaccharides"]]},{"id":"CHEBI:36219","l":"alpha-lactose","na":2,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"]],"b":[["mapped/Alpha-Lactose.yaml","alpha-Lactose"]]},{"id":"CHEBI:39106","l":"pyrene","na":2,"nb":1,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Pelagerythrobacter_Salinicola_PES_Pyrene_Degradation_SynCom.html","Pelagerythrobacter-Salinicola PES Pyrene-Degradation SynCom"]],"b":[["mapped/Pyrene.yaml","Pyrene"]]},{"id":"CHEBI:41131","l":"crotonic acid","na":1,"nb":2,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["mapped/Crotonic_Acid.yaml","Crotonic acid"],["mapped/Na-crotonate.yaml","Na-crotonate"]]},{"id":"CHEBI:42191","l":"EDTA(4-)","na":2,"nb":1,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/Edta_Acid_Form.yaml","EDTA (acid form)"]]},{"id":"CHEBI:48607","l":"lithium chloride","na":1,"nb":2,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["mapped/Licl.yaml","LiCl"],["mapped/Lithium_Chloride_Hydrate.yaml","Lithium chloride hydrate"]]},{"id":"CHEBI:506227","l":"N-acetyl-D-glucosamine","na":1,"nb":2,"a":[["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["mapped/N-acetyl-d-glucosamine.yaml","N-Acetyl-D-glucosamine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:5199","l":"Fusaric acid","na":2,"nb":1,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["mapped/Fusaric_Acid.yaml","Fusaric acid"]]},{"id":"CHEBI:53259","l":"poly(ethylene terephthalate) macromolecule","na":2,"nb":1,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["mapped/Poly%28ethylene_Terephthalate%29.yaml","Poly(ethylene Terephthalate)"]]},{"id":"CHEBI:58187","l":"alginate","na":2,"nb":1,"a":[["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["mapped/Alginate.yaml","Alginate"]]},{"id":"CHEBI:62064","l":"butane-2,3-diol","na":2,"nb":1,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["mapped/23-butanediol.yaml","2,3-butanediol"]]},{"id":"CHEBI:62412","l":"phenazine-1-carboxylic acid","na":2,"nb":1,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"]],"b":[["mapped/Phenazine-1-carboxylic_Acid.yaml","Phenazine-1-carboxylic acid"]]},{"id":"CHEBI:63041","l":"manganese(II) chloride","na":2,"nb":1,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/Mncl2.yaml","MnCl2"]]},{"id":"CHEBI:64205","l":"calcium nitrate","na":2,"nb":1,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"]],"b":[["mapped/Ca_No32.yaml","Ca(NO3)2"]]},{"id":"CHEBI:75228","l":"sodium lactate","na":1,"nb":2,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["mapped/D.yaml","D"],["mapped/Sodium_Lactate.yaml","Sodium lactate"]]},{"id":"CHEBI:7916","l":"pantothenic acid","na":1,"nb":2,"a":[["Variovorax_Cryptococcus_Vitamin_Mutualism_Microcosm.html","Variovorax-Cryptococcus Vitamin Cross-Feeding Microcosm"]],"b":[["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Pantothenic_Acid.yaml","Pantothenic acid"]]},{"id":"CHEBI:9754","l":"tris","na":2,"nb":1,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["mapped/Tris_Base.yaml","Tris base"]]},{"id":"ENVO:00000051","l":"hot spring","na":2,"nb":1,"a":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["mapped/Sulfur.yaml","Sulfur"]]},{"id":"CHEBI:15075","l":"selenate","na":1,"nb":1,"a":[["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"]],"b":[["mapped/Selenate.yaml","Selenate"]]},{"id":"CHEBI:15589","l":"(S)-malate(2-)","na":1,"nb":1,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["mapped/L-malate.yaml","L-malate"]]},{"id":"CHEBI:15688","l":"acetoin","na":1,"nb":1,"a":[["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"]],"b":[["mapped/Acetoin.yaml","Acetoin"]]},{"id":"CHEBI:16109","l":"propane-1,3-diol","na":1,"nb":1,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["mapped/13-Propanediol.yaml","1,3-Propanediol"]]},{"id":"CHEBI:16810","l":"2-oxoglutarate(2-)","na":1,"nb":1,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"]],"b":[["mapped/Na2_Alpha-ketoglutarate.yaml","Na2 alpha-ketoglutarate"]]},{"id":"CHEBI:16914","l":"salicylic acid","na":1,"nb":1,"a":[["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"]],"b":[["mapped/Salicylic_Acid.yaml","Salicylic acid"]]},{"id":"CHEBI:16918","l":"gallate","na":1,"nb":1,"a":[["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["mapped/Gallate_Formate.yaml","Gallate + Formate"]]},{"id":"CHEBI:16988","l":"D-ribose","na":1,"nb":1,"a":[["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"]],"b":[["mapped/D-Ribose.yaml","D-Ribose"]]},{"id":"CHEBI:17120","l":"hexanoate","na":1,"nb":1,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"]],"b":[["mapped/Hexanoate.yaml","Hexanoate"]]},{"id":"CHEBI:17418","l":"valeric acid","na":1,"nb":1,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"]],"b":[["mapped/Valeric_Acid.yaml","Valeric acid"]]},{"id":"CHEBI:17642","l":"pentachlorophenol","na":1,"nb":1,"a":[["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["mapped/Pentachlorophenol.yaml","Pentachlorophenol"]]},{"id":"CHEBI:17822","l":"serine","na":1,"nb":1,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["mapped/Serine.yaml","Serine"]]},{"id":"CHEBI:17847","l":"p-cresol","na":1,"nb":1,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["mapped/4-Cresol.yaml","4-Cresol"]]},{"id":"CHEBI:17879","l":"4-hydroxybenzoate","na":1,"nb":1,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["mapped/P-hydroxybenzoate.yaml","p-Hydroxybenzoate"]]},{"id":"CHEBI:18186","l":"tyrosine","na":1,"nb":1,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["mapped/DL-Tyrosine.yaml","DL-Tyrosine"]]},{"id":"CHEBI:18212","l":"selenite(2-)","na":1,"nb":1,"a":[["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"]],"b":[["mapped/Selenite.yaml","Selenite"]]},{"id":"CHEBI:18248","l":"iron atom","na":1,"nb":1,"a":[["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["mapped/Iron.yaml","Iron"]]},{"id":"CHEBI:18257","l":"ornithine","na":1,"nb":1,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["mapped/Ornithine.yaml","Ornithine"]]},{"id":"CHEBI:18287","l":"L-fucose","na":1,"nb":1,"a":[["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"]],"b":[["mapped/L-fucose.yaml","L-Fucose"]]},{"id":"CHEBI:18346","l":"vanillin","na":1,"nb":1,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"]],"b":[["mapped/Vanillin.yaml","Vanillin"]]},{"id":"CHEBI:22651","l":"ascorbate","na":1,"nb":1,"a":[["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["mapped/Ascorbate.yaml","Ascorbate"]]},{"id":"CHEBI:2365","l":"(+)-abscisic acid","na":1,"nb":1,"a":[["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["mapped/Abscisic_Acid.yaml","Abscisic acid"]]},{"id":"CHEBI:23681","l":"dibenzothiophene","na":1,"nb":1,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["mapped/Dibenzothiophene.yaml","Dibenzothiophene"]]},{"id":"CHEBI:24266","l":"gluconic acid","na":1,"nb":1,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"]],"b":[["mapped/Gluconic_Acid.yaml","Gluconic acid"]]},{"id":"CHEBI:24632","l":"hydrocarbon","na":1,"nb":1,"a":[["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"]],"b":[["mapped/Hydrocarbon.yaml","Hydrocarbon"]]},{"id":"CHEBI:26401","l":"purines","na":1,"nb":1,"a":[["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"]],"b":[["mapped/Purines.yaml","Purines"]]},{"id":"CHEBI:26806","l":"succinate","na":1,"nb":1,"a":[["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]],"b":[["mapped/Succinate.yaml","Succinate"]]},{"id":"CHEBI:26948","l":"vitamin B1","na":1,"nb":1,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["mapped/Thiamine.yaml","Thiamine"]]},{"id":"CHEBI:27082","l":"trehalose","na":1,"nb":1,"a":[["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"]],"b":[["mapped/Trehalose.yaml","Trehalose"]]},{"id":"CHEBI:27750","l":"ethyl acetate","na":1,"nb":1,"a":[["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["mapped/Ethyl_Acetate.yaml","ethyl acetate"]]},{"id":"CHEBI:27897","l":"tryptophan","na":1,"nb":1,"a":[["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"]],"b":[["mapped/Tryptophan.yaml","Tryptophan"]]},{"id":"CHEBI:28260","l":"galactose","na":1,"nb":1,"a":[["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]],"b":[["mapped/Galactose.yaml","Galactose"]]},{"id":"CHEBI:28266","l":"fluorene","na":1,"nb":1,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["mapped/Fluorene.yaml","Fluorene"]]},{"id":"CHEBI:28685","l":"molybdenum atom","na":1,"nb":1,"a":[["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["mapped/Molybdenum.yaml","Molybdenum"]]},{"id":"CHEBI:28808","l":"mannan","na":1,"nb":1,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"]],"b":[["unmapped/Prebiotin.yaml","Prebiotin"]]},{"id":"CHEBI:28817","l":"dodecane","na":1,"nb":1,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["mapped/Dodecane.yaml","dodecane"]]},{"id":"CHEBI:29016","l":"arginine","na":1,"nb":1,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["mapped/Arginine.yaml","Arginine"]]},{"id":"CHEBI:29073","l":"L-ascorbic acid","na":1,"nb":1,"a":[["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["mapped/L-ascorbic_Acid.yaml","L-Ascorbic acid"]]},{"id":"CHEBI:29101","l":"sodium(1+)","na":1,"nb":1,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"]],"b":[["mapped/Sodium%28%29.yaml","Sodium(+)"]]},{"id":"CHEBI:30803","l":"isophthalate(2-)","na":1,"nb":1,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["mapped/Isophthalate.yaml","Isophthalate"]]},{"id":"CHEBI:30816","l":"vanillic acid","na":1,"nb":1,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["mapped/Vanillic_Acid.yaml","Vanillic Acid"]]},{"id":"CHEBI:32374","l":"trans-4-coumaric acid","na":1,"nb":1,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["mapped/P-Coumaric_Acid.yaml","p-Coumaric acid"]]},{"id":"CHEBI:32816","l":"pyruvic acid","na":1,"nb":1,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["mapped/Pyruvic_Acid.yaml","Pyruvic acid"]]},{"id":"CHEBI:3311","l":"calcium carbonate","na":1,"nb":1,"a":[["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"]],"b":[["mapped/Caco3.yaml","CaCO3"]]},{"id":"CHEBI:33198","l":"D-gluconic acid","na":1,"nb":1,"a":[["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"]],"b":[["mapped/D-Gluconic_acid.yaml","D-Gluconic acid"]]},{"id":"CHEBI:34768","l":"furfural","na":1,"nb":1,"a":[["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"]],"b":[["mapped/2-Furfuraldehyde.yaml","2-Furfuraldehyde"]]},{"id":"CHEBI:35366","l":"fatty acid","na":1,"nb":1,"a":[["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"]],"b":[["mapped/Fatty_Acid_Mixture_See_Medium_No_266.yaml","Fatty acid mixture (see Medium No. 266)"]]},{"id":"CHEBI:35899","l":"crotonate","na":1,"nb":1,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["mapped/Na-crotonate.yaml","Na-crotonate"]]},{"id":"CHEBI:37671","l":"(1->3)-beta-D-glucan","na":1,"nb":1,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"]],"b":[["mapped/3-beta-d-glucan.yaml","3-beta-D-glucan"]]},{"id":"CHEBI:412516","l":"5-hydroxymethylfurfural","na":1,"nb":1,"a":[["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"]],"b":[["mapped/5-Hydroxymethylfurfural.yaml","5-Hydroxymethylfurfural"]]},{"id":"CHEBI:46645","l":"isobutanol","na":1,"nb":1,"a":[["Trichoderma_Ecoli_Cellulosic_Isobutanol_Coculture.html","Trichoderma-E. coli Cellulosic Isobutanol Coculture"]],"b":[["mapped/Isobutyl_Alcohol.yaml","Isobutyl alcohol"]]},{"id":"CHEBI:61448","l":"isopropyl beta-D-thiogalactopyranoside","na":1,"nb":1,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["mapped/IPTG.yaml","IPTG"]]},{"id":"CHEBI:64103","l":"sodium butyrate","na":1,"nb":1,"a":[["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["mapped/Na-butyrate.yaml","Na-butyrate"]]},{"id":"CHEBI:78037","l":"polyhydroxyalkanoate","na":1,"nb":1,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["mapped/Poly-beta-hydroxyalkanoate.yaml","Poly-beta-hydroxyalkanoate"]]},{"id":"CHEBI:8653","l":"pyocyanine","na":1,"nb":1,"a":[["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["mapped/Pyocyanin.yaml","Pyocyanin"]]}]} \ No newline at end of file +{"a":"CommunityMech","b":"MediaIngredientMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","MediaIngredientMech":"https://github.com/CultureBotAI/MediaIngredientMech/blob/main/data/ingredients/"},"n":240,"by":{"CHEBI":238,"ENVO":2},"terms":[{"id":"CHEBI:17234","l":"glucose","na":26,"nb":23,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"]],"b":[["mapped/Corn_Steep_Liquor_Glucose_Fumarate.yaml","Corn Steep Liquor + Glucose + Fumarate"],["mapped/Fastidious_Anaerobe_Broth_With_Meat_Granules.yaml","Fastidious Anaerobe Broth With Meat Granules"],["mapped/GYPS.yaml","GYPS"],["mapped/Glucose.yaml","Glucose"],["mapped/Glucose_2.yaml","glucose"],["mapped/Glucose_Acetate.yaml","Glucose + Acetate"]]},{"id":"CHEBI:33709","l":"amino acid","na":15,"nb":54,"a":[["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["mapped/1-aminocyclopropane-1-carboxylate.yaml","1-aminocyclopropane-1-carboxylate"],["mapped/3-Chloro-L-tyrosine.yaml","3-Chloro-L-tyrosine"],["mapped/3-aminobutyric_Acid.yaml","3-aminobutyric acid"],["mapped/4-azido-L-phenylalanine.yaml","4-azido-L-phenylalanine"],["mapped/5-Aminolevulinic_Acid.yaml","5-Aminolevulinic acid"],["mapped/5-aminovaleric_Acid.yaml","5-Aminovaleric acid"]]},{"id":"CHEBI:3312","l":"calcium dichloride","na":12,"nb":9,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/Cacl2.yaml","CaCl2"],["mapped/Cacl2_X_7_H2o.yaml","CaCl2 x 7 H2O"],["mapped/Calcium_Chloride.yaml","Calcium Chloride"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"]]},{"id":"CHEBI:26710","l":"sodium chloride","na":9,"nb":11,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/Brain_Heart_Infusion_Broth.yaml","Brain heart infusion broth"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Mineral_3B_Solution.yaml","Mineral 3B solution"],["mapped/Mineral_3B_Solution_Minus_Nitrogen.yaml","Mineral 3B solution minus Nitrogen"]]},{"id":"CHEBI:18276","l":"dihydrogen","na":58,"nb":8,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"]],"b":[["mapped/H23-methyl_Mercaptopropionate.yaml","H2+3-methyl Mercaptopropionate"],["mapped/H2_CO2.yaml","H2 + CO2"],["mapped/H2dimethylsulfide.yaml","H2+dimethylsulfide"],["mapped/H2methanol.yaml","H2+methanol"],["mapped/H2tetramethylammonium.yaml","H2+tetramethylammonium"],["mapped/H2trimethylamine.yaml","H2+trimethylamine"]]},{"id":"CHEBI:15740","l":"formate","na":23,"nb":8,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"]],"b":[["mapped/Formate.yaml","Formate"],["mapped/Formate3-methyl_Mercaptopropionate.yaml","Formate+3-methyl Mercaptopropionate"],["mapped/Formatedimethylsulfide.yaml","Formate+dimethylsulfide"],["mapped/Formatemethanol.yaml","Formate+methanol"],["mapped/Formatetetramethylammonium.yaml","Formate+tetramethylammonium"],["mapped/Formatetrimethylamine.yaml","Formate+trimethylamine"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":75,"nb":7,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]],"b":[["mapped/1-butanolCO2.yaml","1-butanol+CO2"],["mapped/1-propanolCO2.yaml","1-propanol+CO2"],["mapped/2-butanolCO2.yaml","2-butanol+CO2"],["mapped/2-propanolCO2.yaml","2-propanol+CO2"],["mapped/Carbon_dioxide_gas.yaml","Carbon dioxide gas"],["mapped/CyclopentanolCO2.yaml","Cyclopentanol+CO2"]]},{"id":"CHEBI:32599","l":"magnesium sulfate","na":7,"nb":7,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"]],"b":[["mapped/Magnesium_Sulfate.yaml","Magnesium sulfate"],["mapped/Mgso47h2o.yaml","MgSO4·7H2O"],["mapped/Mgso4_X_6_H2o.yaml","MgSO4 x 6 H2O"],["mapped/Mgso4_X_7_H2o.yaml","MgSO4 x 7 H2O"],["mapped/Modified_Wolfes_Minerals.yaml","Modified Wolfe's Minerals"],["mapped/UW_Concentrated_Base.yaml","UW concentrated base"]]},{"id":"CHEBI:30769","l":"citric acid","na":6,"nb":6,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["mapped/Citric_Acid.yaml","Citric acid"],["mapped/Citric_Acid_X_H2o.yaml","Citric acid x H2O"],["mapped/Citric_Acidh2o.yaml","Citric Acid•H2O"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Na2-citrate.yaml","Na2-citrate"],["mapped/Trisodium_Citrate.yaml","Trisodium citrate"]]},{"id":"ENVO:00001998","l":"soil","na":17,"nb":5,"a":[["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["mapped/Cr1_Soil.yaml","CR1 Soil"],["mapped/Green_House_Soil.yaml","Green House Soil"],["mapped/Soil.yaml","Soil"],["mapped/Soil_Extract.yaml","Soil extract"],["mapped/Vermont_Soil.yaml","Vermont Soil"]]},{"id":"CHEBI:17015","l":"riboflavin","na":5,"nb":8,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"]],"b":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/Riboflavin.yaml","Riboflavin"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Thauers_Vitamin_Mix_No_Biotin.yaml","Thauer's vitamin mix no Biotin"]]},{"id":"CHEBI:17634","l":"D-glucose","na":5,"nb":7,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"]],"b":[["mapped/Brain_Heart_Infusion_Broth.yaml","Brain heart infusion broth"],["mapped/D-glucose.yaml","D-Glucose"],["mapped/Dextrose.yaml","Dextrose"],["mapped/Glucose_Acetate.yaml","Glucose + Acetate"],["mapped/Glucose_Cellobiose_Starch_Trypticase_Yeast_Extract.yaml","Glucose + Cellobiose + Starch + Trypticase + Yeast Extract"],["mapped/Glucose_Formate.yaml","Glucose + Formate"]]},{"id":"CHEBI:176843","l":"vitamin B12","na":5,"nb":6,"a":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Soil_Corrinoid_B12_Reservoir_Community.html","Soil Corrinoid Reservoir Microbial Community"],["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/Cyanocobalamin.yaml","Cyanocobalamin"],["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/Vitamin_B12.yaml","Vitamin B12"],["mapped/Wolfes_Vitamin_Mix.yaml","Wolfe's vitamin mix"]]},{"id":"CHEBI:28017","l":"starch","na":6,"nb":5,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"]],"b":[["mapped/Fastidious_Anaerobe_Broth_With_Meat_Granules.yaml","Fastidious Anaerobe Broth With Meat Granules"],["mapped/Glucose_Cellobiose_Starch_Trypticase_Yeast_Extract.yaml","Glucose + Cellobiose + Starch + Trypticase + Yeast Extract"],["mapped/Glucose_Maltose_Cellobiose_Starch_Glycerol.yaml","Glucose + Maltose + Cellobiose + Starch + Glycerol"],["mapped/PYGS.yaml","PYGS"],["mapped/Starch.yaml","Starch"]]},{"id":"CHEBI:16646","l":"carbohydrate","na":4,"nb":80,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["mapped/1-Kestose.yaml","1-Kestose"],["mapped/2-Deoxy-D-Ribose.yaml","2-Deoxy-D-Ribose"],["mapped/2-Deoxy-D-glucose.yaml","2-Deoxy-D-glucose"],["mapped/2-fucosyllactose.yaml","2'-fucosyllactose"],["mapped/A-Cyclodextrin.yaml","a-Cyclodextrin"],["mapped/Agarose.yaml","Agarose"]]},{"id":"CHEBI:17992","l":"sucrose","na":15,"nb":4,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"]],"b":[["mapped/D-Sucrose.yaml","D-Sucrose"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Sucrose.yaml","Sucrose"],["mapped/Sucrose_Yeast_Extract.yaml","Sucrose + Yeast Extract"]]},{"id":"CHEBI:15377","l":"water","na":4,"nb":12,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/Brain_Heart_Infusion_Broth.yaml","Brain heart infusion broth"],["mapped/Distilled_Water.yaml","Distilled water"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"]]},{"id":"CHEBI:31206","l":"ammonium chloride","na":9,"nb":4,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]],"b":[["mapped/Ammonium_Chloride_Nitrogen_Source.yaml","Ammonium chloride (nitrogen source)"],["mapped/Mineral_3B_Solution.yaml","Mineral 3B solution"],["mapped/Nh4cl.yaml","NH4Cl"],["mapped/Tetramethyl_Ammonium_Chloride.yaml","Tetramethyl ammonium chloride"]]},{"id":"CHEBI:17057","l":"cellobiose","na":7,"nb":4,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["mapped/Cellobiose.yaml","Cellobiose"],["mapped/Glucose_Cellobiose_Starch_Trypticase_Yeast_Extract.yaml","Glucose + Cellobiose + Starch + Trypticase + Yeast Extract"],["mapped/Glucose_Maltose_Cellobiose_Starch_Glycerol.yaml","Glucose + Maltose + Cellobiose + Starch + Glycerol"],["mapped/PY-cellobiose.yaml","PY-cellobiose"]]},{"id":"CHEBI:32139","l":"sodium hydrogencarbonate","na":6,"nb":4,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["mapped/84_GL_NaHCO3_Solution.yaml","84 g/L NaHCO3 solution"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Nahco3.yaml","NaHCO3"]]},{"id":"CHEBI:6636","l":"magnesium dichloride","na":6,"nb":4,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["mapped/Mgcl2.yaml","MgCl2"],["mapped/Mgcl2_X_6_H2o.yaml","MgCl2 x 6 H2O"],["mapped/Mgcl2_X_7_H2o.yaml","MgCl2 x 7 H2O"],["mapped/Mgcl2x_6_H2o.yaml","MgCl2x 6 H2O"]]},{"id":"CHEBI:30089","l":"acetate","na":78,"nb":3,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"]],"b":[["mapped/Acetate.yaml","Acetate"],["mapped/Acetate_Carbon_Source.yaml","Acetate (carbon source)"],["mapped/Glucose_Acetate.yaml","Glucose + Acetate"]]},{"id":"CHEBI:17790","l":"methanol","na":11,"nb":3,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"]],"b":[["mapped/Formatemethanol.yaml","Formate+methanol"],["mapped/H2methanol.yaml","H2+methanol"],["mapped/Methanol.yaml","Methanol"]]},{"id":"CHEBI:37585","l":"sodium dihydrogenphosphate","na":7,"nb":3,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["mapped/Nah2po4.yaml","NaH2PO4"],["mapped/Nah2po4_X_2_H2o.yaml","NaH2PO4 x 2 H2O"],["mapped/Nah2po4h2o.yaml","NaH2PO4•H2O"]]},{"id":"CHEBI:15956","l":"biotin","na":3,"nb":6,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/Biotin.yaml","Biotin"],["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Wolfes_Vitamin_Mix.yaml","Wolfe's vitamin mix"]]},{"id":"CHEBI:17754","l":"glycerol","na":6,"nb":3,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"]],"b":[["mapped/Glucose_Maltose_Cellobiose_Starch_Glycerol.yaml","Glucose + Maltose + Cellobiose + Starch + Glycerol"],["mapped/Glycerol.yaml","Glycerol"],["mapped/Glycerol_2.yaml","glycerol"]]},{"id":"CHEBI:16828","l":"L-tryptophan","na":5,"nb":3,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-tryptophan.yaml","L-Tryptophan"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:75832","l":"iron(2+) sulfate (anhydrous)","na":3,"nb":5,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["mapped/Feso4.yaml","FeSO4"],["mapped/Feso4_X_5_H2o.yaml","FeSO4 x 5 H2O"],["mapped/Feso4_X_6_H2o.yaml","FeSO4 x 6 H2O"],["mapped/Feso4_X_7_H2o.yaml","FeSO4 x 7 H2O"],["mapped/Feso4_X_7h2o.yaml","FeSO4 x 7H2O"]]},{"id":"CHEBI:15603","l":"L-leucine","na":4,"nb":3,"a":[["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-leucine.yaml","L-Leucine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:17029","l":"chitin","na":4,"nb":3,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]],"b":[["mapped/Chitin.yaml","Chitin"],["unmapped/Chitin_From_Shrimp_Shells.yaml","Chitin from shrimp shells"],["unmapped/Colloidal_Chitin.yaml","Colloidal chitin"]]},{"id":"CHEBI:17561","l":"L-cysteine","na":3,"nb":4,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-cysteine.yaml","L-Cysteine"],["mapped/L-cysteine_Hcl_X_H2o.yaml","L-Cysteine HCl x H2O"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:17191","l":"L-isoleucine","na":3,"nb":3,"a":[["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-isoleucine.yaml","L-Isoleucine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:24996","l":"lactate","na":22,"nb":2,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["mapped/Glucose_Lactate.yaml","Glucose + Lactate"],["mapped/Lactate.yaml","Lactate"]]},{"id":"CHEBI:29034","l":"iron(3+)","na":21,"nb":2,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["mapped/Ferric_Iron.yaml","Ferric Iron"],["mapped/Ferrous_Ion.yaml","Ferrous Ion"]]},{"id":"CHEBI:16136","l":"hydrogen sulfide","na":12,"nb":2,"a":[["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["mapped/Hydrogen_Sulfide.yaml","Hydrogen sulfide"],["mapped/Sulfur.yaml","Sulfur"]]},{"id":"CHEBI:26833","l":"sulfur atom","na":12,"nb":2,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["mapped/Sulfur.yaml","Sulfur"],["mapped/Yeast_Extract_Sulfur.yaml","Yeast Extract + Sulfur"]]},{"id":"CHEBI:75213","l":"sodium molybdate dihydrate","na":2,"nb":11,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/Mc_trace_minerals.yaml","Mc_trace_minerals"],["mapped/Mc_trace_minerals_SO4free.yaml","Mc_trace_minerals_SO4free"],["mapped/Modified_Wolfes_Minerals.yaml","Modified Wolfe's Minerals"],["mapped/Na2moo42h2o.yaml","Na2MoO4·2H2O"],["mapped/Na2moo4_X_2_H2o.yaml","Na2MoO4 x 2 H2O"]]},{"id":"CHEBI:131527","l":"dipotassium hydrogen phosphate","na":10,"nb":2,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["mapped/K2hpo4.yaml","K2HPO4"],["mapped/K2hpo4_X_3_H2o.yaml","K2HPO4 x 3 H2O"]]},{"id":"CHEBI:28885","l":"butan-1-ol","na":9,"nb":2,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["mapped/1-butanolCO2.yaml","1-butanol+CO2"],["mapped/Butanol.yaml","Butanol"]]},{"id":"CHEBI:18222","l":"xylose","na":8,"nb":2,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]],"b":[["mapped/Glucose_Xylose.yaml","Glucose + Xylose"],["mapped/Xylose.yaml","Xylose"]]},{"id":"CHEBI:18385","l":"thiamine(1+)","na":8,"nb":2,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Thiamine.yaml","Thiamine"]]},{"id":"CHEBI:37166","l":"xylan","na":8,"nb":2,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["mapped/Xylan.yaml","Xylan"],["unmapped/Larchwood_Xylan.yaml","Larchwood xylan"]]},{"id":"CHEBI:30746","l":"benzoic acid","na":5,"nb":2,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["mapped/4_Carbon_Mix.yaml","4 Carbon Mix"],["mapped/Benzoic_Acid.yaml","benzoic acid"]]},{"id":"CHEBI:32588","l":"potassium chloride","na":2,"nb":5,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"]],"b":[["mapped/Kcl.yaml","KCl"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Mc_general_salts.yaml","Mc_general_salts"],["mapped/Mc_general_salts_SO4free.yaml","Mc_general_salts_SO4free"]]},{"id":"CHEBI:35696","l":"cobalt dichloride","na":2,"nb":5,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/Cobalt_chloride_hexahydrate.yaml","Cobalt chloride hexahydrate"],["mapped/Cocl2.yaml","CoCl2"],["mapped/Cocl2_X_2_H2o.yaml","CoCl2 x 2 H2O"],["mapped/Cocl2_X_4_H2o.yaml","CoCl2 x 4 H2O"],["mapped/Cocl2_X_6_H2o.yaml","CoCl2 x 6 H2O"]]},{"id":"CHEBI:16899","l":"D-mannitol","na":4,"nb":2,"a":[["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["mapped/D-mannitol.yaml","D-Mannitol"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:18237","l":"glutamic acid","na":4,"nb":2,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["mapped/4_Carbon_Mix.yaml","4 Carbon Mix"],["mapped/Glutamic_Acid.yaml","Glutamic acid"]]},{"id":"CHEBI:63005","l":"sodium nitrate","na":2,"nb":4,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/Nano.yaml","NaNO"],["mapped/Nano3.yaml","NaNO3"],["mapped/Sodium_Nitrate_070_M_Stock.yaml","Sodium nitrate (0.70 M stock)"],["mapped/Sodium_Nitrate_Nitrogen_Source.yaml","Sodium nitrate (nitrogen source)"]]},{"id":"CHEBI:91247","l":"L-cysteine hydrochloride","na":4,"nb":2,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["mapped/L-Cysteine_X_HCl_X_H2O_Solution.yaml","L-Cysteine x HCl x H2O solution"],["mapped/L-cysteine_Hcl.yaml","L-Cysteine HCl"]]},{"id":"CHEBI:15428","l":"glycine","na":2,"nb":3,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/Glycine.yaml","Glycine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:15741","l":"succinic acid","na":3,"nb":2,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["mapped/Sodium_Succinate_Dibasic.yaml","Sodium succinate dibasic"],["mapped/Succinic_Acid.yaml","Succinic acid"]]},{"id":"CHEBI:17750","l":"glycine betaine","na":3,"nb":2,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["mapped/Betaine_Hydrochloride.yaml","Betaine hydrochloride"],["mapped/Betaine_X_H2o.yaml","Betaine x H2O"]]},{"id":"CHEBI:23414","l":"copper(II) sulfate","na":2,"nb":3,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/Cuso4.yaml","CuSO4"],["mapped/Cuso4_X_2_H2o.yaml","CuSO4 x 2 H2O"],["mapped/Cuso4_X_4_H2o.yaml","CuSO4 x 4 H2O"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":3,"nb":2,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["mapped/Calcium%282%29.yaml","Calcium(2+)"],["mapped/Calcium.yaml","Calcium"]]},{"id":"CHEBI:30808","l":"iron trichloride","na":2,"nb":3,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/Fecl3.yaml","FeCl3"],["mapped/Fecl3_X_4_H2o.yaml","FeCl3 x 4 H2O"],["mapped/MME_Trace_Minerals.yaml","MME Trace Minerals"]]},{"id":"CHEBI:4167","l":"D-glucopyranose","na":2,"nb":3,"a":[["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["mapped/D-glucose.yaml","D-Glucose"],["mapped/Dextrose.yaml","Dextrose"],["mapped/Glucose_Xylose.yaml","Glucose + Xylose"]]},{"id":"CHEBI:60720","l":"sodium silicate","na":2,"nb":3,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Na-silicate.yaml","Na-silicate"]]},{"id":"CHEBI:15354","l":"choline","na":2,"nb":2,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["mapped/Choline.yaml","Choline"],["unmapped/Cholinium_Alpha_Ketoglutarate.yaml","Cholinium alpha ketoglutarate"]]},{"id":"CHEBI:15930","l":"atrazine","na":2,"nb":2,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["mapped/2-chloro-4ethylamino-6-isopropylamino-135-triazine.yaml","2-chloro-4ethylamino-6-isopropylamino-1,3,5-triazine"],["mapped/Atrazin.yaml","Atrazin"]]},{"id":"CHEBI:16750","l":"guanosine","na":2,"nb":2,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["mapped/Guanosine.yaml","Guanosine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:16947","l":"citrate(3-)","na":2,"nb":2,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["mapped/Citrate.yaml","Citrate"],["mapped/Citric_Acid.yaml","Citric acid"]]},{"id":"CHEBI:16991","l":"deoxyribonucleic acid","na":2,"nb":2,"a":[["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["mapped/Deoxyribonucleic_Acid_From_Herring_Sperm.yaml","Deoxyribonucleic acid from herring sperm"],["mapped/Fish-sperm_Dna.yaml","Fish-Sperm DNA"]]},{"id":"CHEBI:17824","l":"propan-2-ol","na":2,"nb":2,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"]],"b":[["mapped/2-propanolCO2.yaml","2-propanol+CO2"],["mapped/Isopropyl_Alcohol.yaml","Isopropyl alcohol"]]},{"id":"CHEBI:75228","l":"sodium lactate","na":2,"nb":2,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"]],"b":[["mapped/D.yaml","D"],["mapped/Sodium_Lactate.yaml","Sodium lactate"]]},{"id":"CHEBI:16183","l":"methane","na":62,"nb":1,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"]],"b":[["mapped/Methane.yaml","methane"]]},{"id":"CHEBI:17632","l":"nitrate","na":28,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["mapped/Nitrate.yaml","Nitrate"]]},{"id":"CHEBI:18246","l":"(1->4)-beta-D-glucan","na":27,"nb":1,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["mapped/Cellulose.yaml","Cellulose"]]},{"id":"CHEBI:15379","l":"dioxygen","na":26,"nb":1,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["mapped/Dioxygen.yaml","Dioxygen"]]},{"id":"CHEBI:16189","l":"sulfate","na":25,"nb":1,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["mapped/Sulfate.yaml","Sulfate"]]},{"id":"CHEBI:16236","l":"ethanol","na":25,"nb":1,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["mapped/Ethanol.yaml","Ethanol"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":21,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["mapped/Ferrous_Ion.yaml","Ferrous Ion"]]},{"id":"CHEBI:16411","l":"indole-3-acetic acid","na":20,"nb":1,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"]],"b":[["mapped/3-indolyl_Acetic_Acid.yaml","3-Indolyl acetic acid"]]},{"id":"CHEBI:17968","l":"butyrate","na":19,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"]],"b":[["mapped/Butyrate.yaml","Butyrate"]]},{"id":"CHEBI:28938","l":"ammonium","na":19,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["mapped/Ammonium.yaml","Ammonium"]]},{"id":"CHEBI:16301","l":"nitrite","na":17,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["mapped/Nitrite.yaml","Nitrite"]]},{"id":"CHEBI:16134","l":"ammonia","na":14,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]],"b":[["mapped/Ammonia.yaml","Ammonia"]]},{"id":"CHEBI:17997","l":"dinitrogen","na":12,"nb":1,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["mapped/Nitrogen_gas.yaml","Nitrogen gas"]]},{"id":"CHEBI:17272","l":"propionate","na":11,"nb":1,"a":[["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"]],"b":[["mapped/Propionate.yaml","Propionate"]]},{"id":"CHEBI:34683","l":"disodium hydrogenphosphate","na":1,"nb":11,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["mapped/Brain_Heart_Infusion_Broth.yaml","Brain heart infusion broth"],["mapped/Disodium_Phosphate_Heptahydrate_002_M_Stock.yaml","Disodium phosphate heptahydrate (0.02 M stock)"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Na2hpo4.yaml","Na2HPO4"],["mapped/Na2hpo4_X_12_H2o.yaml","Na2HPO4 x 12 H2O"]]},{"id":"CHEBI:26836","l":"sulfuric acid","na":10,"nb":1,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["mapped/H2so4.yaml","H2SO4"]]},{"id":"CHEBI:6457","l":"lignin","na":10,"nb":1,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["mapped/Lignin.yaml","Lignin"]]},{"id":"CHEBI:16602","l":"trichloroethene","na":9,"nb":1,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["mapped/Trichloroethylene.yaml","Trichloroethylene"]]},{"id":"CHEBI:18367","l":"phosphate(3-)","na":9,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"]],"b":[["mapped/Orthophosphate.yaml","Orthophosphate"]]},{"id":"CHEBI:33229","l":"vitamin (role)","na":1,"nb":9,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["mapped/4-Pyridoxic_Acid.yaml","4-Pyridoxic acid"],["mapped/Ca-folinate.yaml","Ca-folinate"],["mapped/Fad.yaml","FAD"],["mapped/Folinic_Acid.yaml","Folinic acid"],["mapped/L-Carnitine.yaml","L-Carnitine"],["mapped/Na-ascorbate.yaml","Na-ascorbate"]]},{"id":"CHEBI:15361","l":"pyruvate","na":8,"nb":1,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["mapped/Pyruvate.yaml","Pyruvate"]]},{"id":"CHEBI:15366","l":"acetic acid","na":8,"nb":1,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["mapped/Acetic_Acid.yaml","Acetic acid"]]},{"id":"CHEBI:30411","l":"cobalamin","na":8,"nb":1,"a":[["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"]],"b":[["mapped/Cobalamine.yaml","Cobalamine"]]},{"id":"CHEBI:15940","l":"nicotinic acid","na":1,"nb":7,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/Nicotinic_Acid.yaml","Nicotinic acid"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Thauers_Vitamin_Mix_No_Biotin.yaml","Thauer's vitamin mix no Biotin"]]},{"id":"CHEBI:16995","l":"oxalic acid","na":6,"nb":1,"a":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Wollastonite_Ramichloridium_Talaromyces_Fungal_Consortium.html","Wollastonite Ramichloridium-Talaromyces Fungal Consortium"]],"b":[["mapped/Oxalic_Acid.yaml","Oxalic Acid"]]},{"id":"CHEBI:17245","l":"carbon monoxide","na":6,"nb":1,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Subsurface_Carboxydocella_CO_Aquifer_Community.html","Subsurface Carboxydocella CO-Oxidation Aquifer Community"]],"b":[["mapped/Carbon_Monoxide.yaml","Carbon Monoxide"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":6,"nb":1,"a":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["mapped/Bicarbonate.yaml","Bicarbonate"]]},{"id":"CHEBI:30772","l":"butyric acid","na":6,"nb":1,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["mapped/Butyric_Acid.yaml","Butyric acid"]]},{"id":"CHEBI:76209","l":"sodium sulfide nonahydrate","na":6,"nb":1,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["mapped/Na2s_X_9_H2o.yaml","Na2S x 9 H2O"]]},{"id":"CHEBI:86471","l":"pyrite","na":6,"nb":1,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["mapped/Pyrite.yaml","Pyrite"]]},{"id":"CHEBI:30776","l":"hexanoic acid","na":5,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["mapped/Caproic_Acid.yaml","Caproic acid"]]},{"id":"CHEBI:32149","l":"sodium sulfate","na":1,"nb":5,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Mineral_3B_Solution.yaml","Mineral 3B solution"],["mapped/Mineral_3B_Solution_Minus_Nitrogen.yaml","Mineral 3B solution minus Nitrogen"],["mapped/Na2so4.yaml","Na2SO4"]]},{"id":"CHEBI:33403","l":"elemental sulfur","na":1,"nb":5,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["mapped/GYPS.yaml","GYPS"],["mapped/Sulfur.yaml","Sulfur"],["mapped/Sulfur_Powder.yaml","Sulfur (powder)"],["mapped/Sulphur.yaml","Sulphur"],["mapped/Yeast_Extract_Sulfur.yaml","Yeast Extract + Sulfur"]]},{"id":"CHEBI:53389","l":"poly(3-hydroxybutyrate)","na":5,"nb":1,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"],["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["mapped/Poly_3-hydroxybutyrate.yaml","Poly(3-hydroxybutyrate)"]]},{"id":"CHEBI:16015","l":"L-glutamic acid","na":1,"nb":4,"a":[["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-Glutamic_Acid_Monopotassium_Salt_Monohydrate.yaml","L-Glutamic acid monopotassium salt monohydrate"],["mapped/L-glutamic_Acid.yaml","L-Glutamic acid"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:16199","l":"urea","na":4,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["mapped/Urea.yaml","Urea"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":4,"nb":1,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["mapped/Hydrogen_Peroxide.yaml","Hydrogen peroxide"]]},{"id":"CHEBI:16811","l":"methionine","na":4,"nb":1,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["mapped/Dl-methionine.yaml","DL-methionine"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":4,"nb":1,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["mapped/Formaldehyde.yaml","Formaldehyde"]]},{"id":"CHEBI:17439","l":"cyanocob(III)alamin","na":1,"nb":4,"a":[["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["mapped/Cyanocobalamin.yaml","Cyanocobalamin"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Thauers_Vitamin_Mix_No_Biotin.yaml","Thauer's vitamin mix no Biotin"],["mapped/Vitamin_B12.yaml","Vitamin B12"]]},{"id":"CHEBI:18154","l":"polysaccharide","na":4,"nb":1,"a":[["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Wollastonite_Ramichloridium_Talaromyces_Fungal_Consortium.html","Wollastonite Ramichloridium-Talaromyces Fungal Consortium"]],"b":[["mapped/Polysaccharides.yaml","Polysaccharides"]]},{"id":"CHEBI:232798","l":"sodium L-lactate","na":1,"nb":4,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"]],"b":[["mapped/4_Carbon_Mix.yaml","4 Carbon Mix"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Na-l-lactate.yaml","Na-L-lactate"],["mapped/Sodium_L-lactate.yaml","Sodium L-lactate"]]},{"id":"CHEBI:28851","l":"phenanthrene","na":4,"nb":1,"a":[["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Sphingobium_Nitrososphaera_Phenanthrene_Carbon_SynCom.html","Sphingobium-Nitrososphaera Phenanthrene-Carbon SynCom"]],"b":[["mapped/Phenanthrene.yaml","Phenanthrene"]]},{"id":"CHEBI:32954","l":"sodium acetate","na":1,"nb":4,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["mapped/4_Carbon_Mix.yaml","4 Carbon Mix"],["mapped/Na-acetate.yaml","Na-acetate"],["mapped/Sodium_Acetate.yaml","Sodium acetate"],["mapped/Sodium_Acetate3h2o.yaml","Sodium acetate·3H2O"]]},{"id":"CHEBI:62946","l":"ammonium sulfate","na":4,"nb":1,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"]],"b":[["mapped/Nh42so4.yaml","(NH4)2SO4"]]},{"id":"CHEBI:63036","l":"potassium dihydrogen phosphate","na":1,"nb":4,"a":[["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"]],"b":[["mapped/Kh2po4.yaml","KH2PO4"],["mapped/Mineral_3B_Solution.yaml","Mineral 3B solution"],["mapped/Mineral_3B_Solution_Minus_Nitrogen.yaml","Mineral 3B solution minus Nitrogen"],["mapped/Wolfes_Vitamin_Mix.yaml","Wolfe's vitamin mix"]]},{"id":"CHEBI:72813","l":"exopolysaccharide","na":4,"nb":1,"a":[["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["mapped/Exopolysaccharide.yaml","Exopolysaccharide"]]},{"id":"CHEBI:86202","l":"chalcopyrite","na":4,"nb":1,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["mapped/Chalcopyrite.yaml","Chalcopyrite"]]},{"id":"CHEBI:8806","l":"Resazurin","na":4,"nb":1,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["mapped/Resazurin.yaml","Resazurin"]]},{"id":"CHEBI:147155","l":"","na":3,"nb":1,"a":[["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["mapped/2-fucosyllactose.yaml","2'-fucosyllactose"]]},{"id":"CHEBI:15356","l":"cysteine","na":3,"nb":1,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["mapped/Cysteine.yaml","Cysteine"]]},{"id":"CHEBI:15971","l":"L-histidine","na":1,"nb":3,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-histidine.yaml","L-Histidine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:16467","l":"L-arginine","na":1,"nb":3,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-arginine.yaml","L-Arginine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:16482","l":"naphthalene","na":3,"nb":1,"a":[["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"]],"b":[["mapped/Naphthalene.yaml","Naphthalene"]]},{"id":"CHEBI:17045","l":"dinitrogen oxide","na":3,"nb":1,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"]],"b":[["mapped/Nitrous_Oxide.yaml","nitrous oxide"]]},{"id":"CHEBI:17115","l":"L-serine","na":1,"nb":3,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-serine.yaml","L-Serine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:17203","l":"L-proline","na":1,"nb":3,"a":[["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-proline.yaml","L-Proline"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:17359","l":"sulfite","na":3,"nb":1,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"]],"b":[["mapped/Sulfite.yaml","Sulfite"]]},{"id":"CHEBI:17437","l":"dimethyl sulfide","na":1,"nb":3,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["mapped/Dimethyl_Sulfide.yaml","Dimethyl sulfide"],["mapped/Formatedimethylsulfide.yaml","Formate+dimethylsulfide"],["mapped/H2dimethylsulfide.yaml","H2+dimethylsulfide"]]},{"id":"CHEBI:17716","l":"lactose","na":3,"nb":1,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"]],"b":[["mapped/Lactose.yaml","Lactose"]]},{"id":"CHEBI:18050","l":"L-glutamine","na":1,"nb":3,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-glutamine.yaml","L-Glutamine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:18139","l":"trimethylamine","na":1,"nb":3,"a":[["South_Bay_Salt_Pond_Methane_Restoration_Community.html","South Bay Salt Pond Methane Restoration Microbial Community"]],"b":[["mapped/Formatetrimethylamine.yaml","Formate+trimethylamine"],["mapped/H2trimethylamine.yaml","H2+trimethylamine"],["mapped/Trimethylamine.yaml","Trimethylamine"]]},{"id":"CHEBI:26271","l":"proline","na":3,"nb":1,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["mapped/Proline.yaml","Proline"]]},{"id":"CHEBI:26672","l":"siderophore","na":3,"nb":1,"a":[["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"]],"b":[["mapped/Siderophore.yaml","Siderophore"]]},{"id":"CHEBI:26977","l":"thiosulfate","na":3,"nb":1,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"]],"b":[["mapped/Thiosulfate.yaml","Thiosulfate"]]},{"id":"CHEBI:30742","l":"ethylene glycol","na":3,"nb":1,"a":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"]],"b":[["mapped/Ethylene_Glycol.yaml","Ethylene glycol"]]},{"id":"CHEBI:53259","l":"poly(ethylene terephthalate) macromolecule","na":3,"nb":1,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["mapped/Poly%28ethylene_Terephthalate%29.yaml","Poly(ethylene Terephthalate)"]]},{"id":"CHEBI:132106","l":"sodium propionate","na":2,"nb":1,"a":[["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["mapped/Na-propionate.yaml","Na-propionate"]]},{"id":"CHEBI:15347","l":"acetone","na":2,"nb":1,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["mapped/Acetone.yaml","acetone"]]},{"id":"CHEBI:15729","l":"L-ornithine","na":1,"nb":2,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["mapped/L-ornithine.yaml","L-Ornithine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:15882","l":"phenol","na":2,"nb":1,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]],"b":[["mapped/Phenol.yaml","Phenol"]]},{"id":"CHEBI:16119","l":"shikimic acid","na":1,"nb":2,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Shikimic_Acid.yaml","Shikimic Acid"]]},{"id":"CHEBI:16150","l":"benzoate","na":2,"nb":1,"a":[["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["mapped/Benzoate.yaml","Benzoate"]]},{"id":"CHEBI:16235","l":"guanine","na":1,"nb":2,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["mapped/Guanine.yaml","Guanine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:16457","l":"S,S-dimethyl-beta-propiothetin","na":2,"nb":1,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["mapped/Dimethylsulfoniopropionate_Hydrochloride.yaml","Dimethylsulfoniopropionate hydrochloride"]]},{"id":"CHEBI:16830","l":"methylamine","na":2,"nb":1,"a":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"]],"b":[["mapped/Methylamine.yaml","Methylamine"]]},{"id":"CHEBI:16856","l":"glutathione","na":1,"nb":2,"a":[["Zymomonas_Ecoli_Exometabolomics_Obligate_Mutualism.html","Zymomonas-E. coli Exometabolomics-Designed Obligate Mutualism"]],"b":[["mapped/Glutathione.yaml","Glutathione"],["mapped/L-Glutathione.yaml","L-Glutathione"]]},{"id":"CHEBI:16865","l":"gamma-aminobutyric acid","na":2,"nb":1,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]],"b":[["mapped/Gamma-aminobutyric_Acid.yaml","gamma-Aminobutyric acid"]]},{"id":"CHEBI:16914","l":"salicylic acid","na":2,"nb":1,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"]],"b":[["mapped/Salicylic_Acid.yaml","Salicylic acid"]]},{"id":"CHEBI:17300","l":"tetrachloroethene","na":2,"nb":1,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["mapped/Tetrachloroethene.yaml","Tetrachloroethene"]]},{"id":"CHEBI:17996","l":"chloride","na":2,"nb":1,"a":[["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"]],"b":[["mapped/Cl.yaml","Cl-"]]},{"id":"CHEBI:18012","l":"fumaric acid","na":1,"nb":2,"a":[["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["mapped/Corn_Steep_Liquor_Glucose_Fumarate.yaml","Corn Steep Liquor + Glucose + Fumarate"],["mapped/Fumaric_Acid.yaml","Fumaric acid"]]},{"id":"CHEBI:18053","l":"1-aminocyclopropanecarboxylic acid","na":2,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["mapped/1-aminocyclopropane-1-carboxylate.yaml","1-aminocyclopropane-1-carboxylate"]]},{"id":"CHEBI:22660","l":"aspartic acid","na":1,"nb":2,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["mapped/DL-Tyrosine.yaml","DL-Tyrosine"],["mapped/Dl-aspartic_Acid.yaml","DL-aspartic acid"]]},{"id":"CHEBI:24266","l":"gluconic acid","na":2,"nb":1,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Wollastonite_Ramichloridium_Talaromyces_Fungal_Consortium.html","Wollastonite Ramichloridium-Talaromyces Fungal Consortium"]],"b":[["mapped/Gluconic_Acid.yaml","Gluconic acid"]]},{"id":"CHEBI:26822","l":"sulfide","na":2,"nb":1,"a":[["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"]],"b":[["mapped/Sulfide.yaml","Sulfide"]]},{"id":"CHEBI:27082","l":"trehalose","na":2,"nb":1,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"]],"b":[["mapped/Trehalose.yaml","Trehalose"]]},{"id":"CHEBI:27518","l":"acetylene","na":2,"nb":1,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"]],"b":[["mapped/Acetylene.yaml","Acetylene"]]},{"id":"CHEBI:27570","l":"histidine","na":1,"nb":2,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["mapped/Dl-histidine.yaml","DL-Histidine"],["mapped/L-histidine.yaml","L-Histidine"]]},{"id":"CHEBI:28087","l":"glycogen","na":1,"nb":2,"a":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]],"b":[["mapped/Glycogen.yaml","Glycogen"],["mapped/Glycogen_From_Bovine_Liver.yaml","Glycogen from bovine liver"]]},{"id":"CHEBI:28675","l":"dextrin","na":2,"nb":1,"a":[["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"]],"b":[["mapped/Dextrin.yaml","Dextrin"]]},{"id":"CHEBI:28757","l":"fructose","na":1,"nb":2,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["mapped/Fructose.yaml","Fructose"],["mapped/PY-fructose.yaml","PY-fructose"]]},{"id":"CHEBI:28837","l":"octanoic acid","na":2,"nb":1,"a":[["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["mapped/Octanoic_Acid.yaml","Octanoic acid"]]},{"id":"CHEBI:29806","l":"fumarate(2-)","na":2,"nb":1,"a":[["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["mapped/Fumarate.yaml","Fumarate"]]},{"id":"CHEBI:30751","l":"formic acid","na":2,"nb":1,"a":[["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["mapped/Formic_Acid.yaml","Formic acid"]]},{"id":"CHEBI:30768","l":"propionic acid","na":2,"nb":1,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["mapped/Propionic_Acid.yaml","Propionic acid"]]},{"id":"CHEBI:30778","l":"gallic acid","na":1,"nb":2,"a":[["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["mapped/Gallate_Formate.yaml","Gallate + Formate"],["mapped/Gallic_Acid.yaml","Gallic Acid"]]},{"id":"CHEBI:3098","l":"bile acid","na":2,"nb":1,"a":[["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["mapped/Bile_Acid.yaml","Bile Acid"]]},{"id":"CHEBI:31346","l":"calcium sulfate","na":1,"nb":2,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]],"b":[["mapped/Caso4.yaml","CaSO4"],["mapped/Caso4_X_7_H2o.yaml","CaSO4 x 7 H2O"]]},{"id":"CHEBI:32036","l":"potassium sulfate","na":1,"nb":2,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"]],"b":[["mapped/K2so4.yaml","K2SO4"],["mapped/K2so4_X_7_H2o.yaml","K2SO4 x 7 H2O"]]},{"id":"CHEBI:33848","l":"polycyclic arene","na":2,"nb":1,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Pelagerythrobacter_Salinicola_PES_Pyrene_Degradation_SynCom.html","Pelagerythrobacter-Salinicola PES Pyrene-Degradation SynCom"]],"b":[["mapped/Aromatic_Hydrocarbon.yaml","Aromatic hydrocarbon"]]},{"id":"CHEBI:35176","l":"zinc sulfate","na":2,"nb":1,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/Zinc_Sulfate.yaml","Zinc sulfate"]]},{"id":"CHEBI:35381","l":"monosaccharide","na":2,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["mapped/Mono-_And_Disaccharides.yaml","Mono- And Disaccharides"]]},{"id":"CHEBI:36219","l":"alpha-lactose","na":2,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"]],"b":[["mapped/Alpha-Lactose.yaml","alpha-Lactose"]]},{"id":"CHEBI:39106","l":"pyrene","na":2,"nb":1,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Pelagerythrobacter_Salinicola_PES_Pyrene_Degradation_SynCom.html","Pelagerythrobacter-Salinicola PES Pyrene-Degradation SynCom"]],"b":[["mapped/Pyrene.yaml","Pyrene"]]},{"id":"CHEBI:41131","l":"crotonic acid","na":1,"nb":2,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["mapped/Crotonic_Acid.yaml","Crotonic acid"],["mapped/Na-crotonate.yaml","Na-crotonate"]]},{"id":"CHEBI:42191","l":"EDTA(4-)","na":2,"nb":1,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/Edta_Acid_Form.yaml","EDTA (acid form)"]]},{"id":"CHEBI:48607","l":"lithium chloride","na":1,"nb":2,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["mapped/Licl.yaml","LiCl"],["mapped/Lithium_Chloride_Hydrate.yaml","Lithium chloride hydrate"]]},{"id":"CHEBI:506227","l":"N-acetyl-D-glucosamine","na":1,"nb":2,"a":[["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["mapped/N-acetyl-d-glucosamine.yaml","N-Acetyl-D-glucosamine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:5199","l":"Fusaric acid","na":2,"nb":1,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["mapped/Fusaric_Acid.yaml","Fusaric acid"]]},{"id":"CHEBI:58187","l":"alginate","na":2,"nb":1,"a":[["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["mapped/Alginate.yaml","Alginate"]]},{"id":"CHEBI:62064","l":"butane-2,3-diol","na":2,"nb":1,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["mapped/23-butanediol.yaml","2,3-butanediol"]]},{"id":"CHEBI:62412","l":"phenazine-1-carboxylic acid","na":2,"nb":1,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"]],"b":[["mapped/Phenazine-1-carboxylic_Acid.yaml","Phenazine-1-carboxylic acid"]]},{"id":"CHEBI:63041","l":"manganese(II) chloride","na":2,"nb":1,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/Mncl2.yaml","MnCl2"]]},{"id":"CHEBI:64205","l":"calcium nitrate","na":2,"nb":1,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"]],"b":[["mapped/Ca_No32.yaml","Ca(NO3)2"]]},{"id":"CHEBI:7916","l":"pantothenic acid","na":1,"nb":2,"a":[["Variovorax_Cryptococcus_Vitamin_Mutualism_Microcosm.html","Variovorax-Cryptococcus Vitamin Cross-Feeding Microcosm"]],"b":[["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Pantothenic_Acid.yaml","Pantothenic acid"]]},{"id":"CHEBI:9754","l":"tris","na":2,"nb":1,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["mapped/Tris_Base.yaml","Tris base"]]},{"id":"ENVO:00000051","l":"hot spring","na":2,"nb":1,"a":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["mapped/Sulfur.yaml","Sulfur"]]},{"id":"CHEBI:15075","l":"selenate","na":1,"nb":1,"a":[["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"]],"b":[["mapped/Selenate.yaml","Selenate"]]},{"id":"CHEBI:15589","l":"(S)-malate(2-)","na":1,"nb":1,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["mapped/L-malate.yaml","L-malate"]]},{"id":"CHEBI:15688","l":"acetoin","na":1,"nb":1,"a":[["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"]],"b":[["mapped/Acetoin.yaml","Acetoin"]]},{"id":"CHEBI:16109","l":"propane-1,3-diol","na":1,"nb":1,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["mapped/13-Propanediol.yaml","1,3-Propanediol"]]},{"id":"CHEBI:16810","l":"2-oxoglutarate(2-)","na":1,"nb":1,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"]],"b":[["mapped/Na2_Alpha-ketoglutarate.yaml","Na2 alpha-ketoglutarate"]]},{"id":"CHEBI:16881","l":"1H-indole","na":1,"nb":1,"a":[["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"]],"b":[["mapped/Indole.yaml","Indole"]]},{"id":"CHEBI:16918","l":"gallate","na":1,"nb":1,"a":[["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["mapped/Gallate_Formate.yaml","Gallate + Formate"]]},{"id":"CHEBI:16988","l":"D-ribose","na":1,"nb":1,"a":[["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"]],"b":[["mapped/D-Ribose.yaml","D-Ribose"]]},{"id":"CHEBI:17120","l":"hexanoate","na":1,"nb":1,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"]],"b":[["mapped/Hexanoate.yaml","Hexanoate"]]},{"id":"CHEBI:17418","l":"valeric acid","na":1,"nb":1,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"]],"b":[["mapped/Valeric_Acid.yaml","Valeric acid"]]},{"id":"CHEBI:17642","l":"pentachlorophenol","na":1,"nb":1,"a":[["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["mapped/Pentachlorophenol.yaml","Pentachlorophenol"]]},{"id":"CHEBI:17698","l":"chloramphenicol","na":1,"nb":1,"a":[["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"]],"b":[["mapped/Chloramphenicol.yaml","Chloramphenicol"]]},{"id":"CHEBI:17747","l":"bis(2-ethylhexyl) phthalate","na":1,"nb":1,"a":[["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"]],"b":[["mapped/Bis%282-ethylhexyl%29phthalate.yaml","Bis(2-ethylhexyl)phthalate"]]},{"id":"CHEBI:17822","l":"serine","na":1,"nb":1,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["mapped/Serine.yaml","Serine"]]},{"id":"CHEBI:17847","l":"p-cresol","na":1,"nb":1,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["mapped/4-Cresol.yaml","4-Cresol"]]},{"id":"CHEBI:17859","l":"glutaric acid","na":1,"nb":1,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["mapped/Glutaric_Acid.yaml","Glutaric acid"]]},{"id":"CHEBI:17879","l":"4-hydroxybenzoate","na":1,"nb":1,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["mapped/P-hydroxybenzoate.yaml","p-Hydroxybenzoate"]]},{"id":"CHEBI:18186","l":"tyrosine","na":1,"nb":1,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["mapped/DL-Tyrosine.yaml","DL-Tyrosine"]]},{"id":"CHEBI:18212","l":"selenite(2-)","na":1,"nb":1,"a":[["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"]],"b":[["mapped/Selenite.yaml","Selenite"]]},{"id":"CHEBI:18248","l":"iron atom","na":1,"nb":1,"a":[["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["mapped/Iron.yaml","Iron"]]},{"id":"CHEBI:18257","l":"ornithine","na":1,"nb":1,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["mapped/Ornithine.yaml","Ornithine"]]},{"id":"CHEBI:18287","l":"L-fucose","na":1,"nb":1,"a":[["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"]],"b":[["mapped/L-fucose.yaml","L-Fucose"]]},{"id":"CHEBI:18346","l":"vanillin","na":1,"nb":1,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"]],"b":[["mapped/Vanillin.yaml","Vanillin"]]},{"id":"CHEBI:22651","l":"ascorbate","na":1,"nb":1,"a":[["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["mapped/Ascorbate.yaml","Ascorbate"]]},{"id":"CHEBI:2365","l":"(+)-abscisic acid","na":1,"nb":1,"a":[["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["mapped/Abscisic_Acid.yaml","Abscisic acid"]]},{"id":"CHEBI:23681","l":"dibenzothiophene","na":1,"nb":1,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["mapped/Dibenzothiophene.yaml","Dibenzothiophene"]]},{"id":"CHEBI:24632","l":"hydrocarbon","na":1,"nb":1,"a":[["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"]],"b":[["mapped/Hydrocarbon.yaml","Hydrocarbon"]]},{"id":"CHEBI:26401","l":"purines","na":1,"nb":1,"a":[["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"]],"b":[["mapped/Purines.yaml","Purines"]]},{"id":"CHEBI:26806","l":"succinate","na":1,"nb":1,"a":[["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]],"b":[["mapped/Succinate.yaml","Succinate"]]},{"id":"CHEBI:26948","l":"vitamin B1","na":1,"nb":1,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["mapped/Thiamine.yaml","Thiamine"]]},{"id":"CHEBI:27750","l":"ethyl acetate","na":1,"nb":1,"a":[["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["mapped/Ethyl_Acetate.yaml","ethyl acetate"]]},{"id":"CHEBI:27897","l":"tryptophan","na":1,"nb":1,"a":[["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"]],"b":[["mapped/Tryptophan.yaml","Tryptophan"]]},{"id":"CHEBI:28260","l":"galactose","na":1,"nb":1,"a":[["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]],"b":[["mapped/Galactose.yaml","Galactose"]]},{"id":"CHEBI:28266","l":"fluorene","na":1,"nb":1,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["mapped/Fluorene.yaml","Fluorene"]]},{"id":"CHEBI:28685","l":"molybdenum atom","na":1,"nb":1,"a":[["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["mapped/Molybdenum.yaml","Molybdenum"]]},{"id":"CHEBI:28808","l":"mannan","na":1,"nb":1,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"]],"b":[["unmapped/Prebiotin.yaml","Prebiotin"]]},{"id":"CHEBI:28817","l":"dodecane","na":1,"nb":1,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["mapped/Dodecane.yaml","dodecane"]]},{"id":"CHEBI:29016","l":"arginine","na":1,"nb":1,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["mapped/Arginine.yaml","Arginine"]]},{"id":"CHEBI:29073","l":"L-ascorbic acid","na":1,"nb":1,"a":[["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["mapped/L-ascorbic_Acid.yaml","L-Ascorbic acid"]]},{"id":"CHEBI:29101","l":"sodium(1+)","na":1,"nb":1,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"]],"b":[["mapped/Sodium%28%29.yaml","Sodium(+)"]]},{"id":"CHEBI:30531","l":"pimelic acid","na":1,"nb":1,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["mapped/Pimelic_Acid.yaml","Pimelic acid"]]},{"id":"CHEBI:30803","l":"isophthalate(2-)","na":1,"nb":1,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["mapped/Isophthalate.yaml","Isophthalate"]]},{"id":"CHEBI:30816","l":"vanillic acid","na":1,"nb":1,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["mapped/Vanillic_Acid.yaml","Vanillic Acid"]]},{"id":"CHEBI:30832","l":"adipic acid","na":1,"nb":1,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["mapped/Adipic_Acid.yaml","Adipic acid"]]},{"id":"CHEBI:32374","l":"trans-4-coumaric acid","na":1,"nb":1,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["mapped/P-Coumaric_Acid.yaml","p-Coumaric acid"]]},{"id":"CHEBI:32816","l":"pyruvic acid","na":1,"nb":1,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["mapped/Pyruvic_Acid.yaml","Pyruvic acid"]]},{"id":"CHEBI:3311","l":"calcium carbonate","na":1,"nb":1,"a":[["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"]],"b":[["mapped/Caco3.yaml","CaCO3"]]},{"id":"CHEBI:33198","l":"D-gluconic acid","na":1,"nb":1,"a":[["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"]],"b":[["mapped/D-Gluconic_acid.yaml","D-Gluconic acid"]]},{"id":"CHEBI:34768","l":"furfural","na":1,"nb":1,"a":[["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"]],"b":[["mapped/2-Furfuraldehyde.yaml","2-Furfuraldehyde"]]},{"id":"CHEBI:35366","l":"fatty acid","na":1,"nb":1,"a":[["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"]],"b":[["mapped/Fatty_Acid_Mixture_See_Medium_No_266.yaml","Fatty acid mixture (see Medium No. 266)"]]},{"id":"CHEBI:35899","l":"crotonate","na":1,"nb":1,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["mapped/Na-crotonate.yaml","Na-crotonate"]]},{"id":"CHEBI:37671","l":"(1->3)-beta-D-glucan","na":1,"nb":1,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"]],"b":[["mapped/3-beta-d-glucan.yaml","3-beta-D-glucan"]]},{"id":"CHEBI:412516","l":"5-hydroxymethylfurfural","na":1,"nb":1,"a":[["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"]],"b":[["mapped/5-Hydroxymethylfurfural.yaml","5-Hydroxymethylfurfural"]]},{"id":"CHEBI:46645","l":"isobutanol","na":1,"nb":1,"a":[["Trichoderma_Ecoli_Cellulosic_Isobutanol_Coculture.html","Trichoderma-E. coli Cellulosic Isobutanol Coculture"]],"b":[["mapped/Isobutyl_Alcohol.yaml","Isobutyl alcohol"]]},{"id":"CHEBI:61448","l":"isopropyl beta-D-thiogalactopyranoside","na":1,"nb":1,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["mapped/IPTG.yaml","IPTG"]]},{"id":"CHEBI:64103","l":"sodium butyrate","na":1,"nb":1,"a":[["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["mapped/Na-butyrate.yaml","Na-butyrate"]]},{"id":"CHEBI:78037","l":"polyhydroxyalkanoate","na":1,"nb":1,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["mapped/Poly-beta-hydroxyalkanoate.yaml","Poly-beta-hydroxyalkanoate"]]},{"id":"CHEBI:8653","l":"pyocyanine","na":1,"nb":1,"a":[["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["mapped/Pyocyanin.yaml","Pyocyanin"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/CommunityMech--NaturalProductMech.json b/assets/fleet/edges/CommunityMech--NaturalProductMech.json index 1a8b7e9..59eedae 100644 --- a/assets/fleet/edges/CommunityMech--NaturalProductMech.json +++ b/assets/fleet/edges/CommunityMech--NaturalProductMech.json @@ -1 +1 @@ -{"a":"CommunityMech","b":"NaturalProductMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","NaturalProductMech":"https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/natural_products/"},"n":105,"by":{"NCBITaxon":100,"CHEBI":5},"terms":[{"id":"NCBITaxon:286","l":"Pseudomonas","na":14,"nb":41,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"]],"b":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["alkaloids/tioguanine.yaml","tioguanine"],["amino_acids_and_peptides/napsamycin-c.yaml","napsamycin C"],["amino_acids_and_peptides/napsamycin-d.yaml","napsamycin D"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":13,"nb":24,"a":[["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":11,"nb":16,"a":[["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["amino_acids_and_peptides/ericin-s.yaml","ericin S"],["amino_acids_and_peptides/iturin.yaml","iturin"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":10,"nb":13,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["unclassified/bananamide-d.yaml","bananamide D"],["unclassified/bananamide-e.yaml","bananamide E"],["unclassified/bananamide-f.yaml","bananamide F"],["unclassified/bananamide-g.yaml","bananamide G"],["unclassified/lokisin.yaml","lokisin"],["unclassified/pseudodesmin-a.yaml","pseudodesmin A"]]},{"id":"NCBITaxon:1386","l":"Bacillus ","na":14,"nb":9,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bogorol-a.yaml","bogorol A"],["amino_acids_and_peptides/koranimine.yaml","koranimine"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"],["amino_acids_and_peptides/rhizocticin-a.yaml","rhizocticin A"],["polyketides/difficidin.yaml","difficidin"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":7,"nb":12,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":6,"nb":116,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["alkaloids/altemicidin.yaml","altemicidin"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"],["alkaloids/aurachin-ss.yaml","aurachin SS"],["alkaloids/berninamycin-j.yaml","berninamycin J"],["alkaloids/berninamycin-k.yaml","berninamycin K"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":5,"nb":27,"a":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["alkaloids/pseudomonine.yaml","pseudomonine"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyreudione-c.yaml","pyreudione C"],["alkaloids/quinolobactin.yaml","quinolobactin"]]},{"id":"NCBITaxon:492670","l":"Bacillus velezensis","na":5,"nb":8,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"],["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["polyketides/bacillaene.yaml","bacillaene"],["polyketides/difficidin.yaml","difficidin"],["polyketides/macrolactin-h.yaml","macrolactin H"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":7,"nb":5,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"]],"b":[["alkaloids/promysalin.yaml","promysalin"],["polyketides/pseudopyronine-a.yaml","pseudopyronine A"],["polyketides/pseudopyronine-b.yaml","pseudopyronine B"],["unclassified/putisolvin-iii.yaml","putisolvin III"],["unclassified/putisolvin-v.yaml","putisolvin V"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":7,"nb":4,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["alkaloids/zwittermicin-a.yaml","zwittermicin A"],["amino_acids_and_peptides/livipeptin.yaml","Livipeptin"],["carbohydrates/tunicamycin.yaml","tunicamycin"],["unclassified/cereulide.yaml","cereulide"]]},{"id":"NCBITaxon:1883","l":"Streptomyces","na":3,"nb":438,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Wheat_Consortium_C6.html","Wheat Synthetic Consortium C6"]],"b":[["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/7-prenylisatin.yaml","7-prenylisatin"],["alkaloids/9-methylstreptimidone.yaml","9-methylstreptimidone"],["alkaloids/anisomycin.yaml","(−)-anisomycin"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":3,"nb":11,"a":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["amino_acids_and_peptides/ferrichrome.yaml","ferrichrome"],["polyketides/1-2-3-5-10-tetrahydroxy-7-methoxy-4-oxo-1-2-3-4-tetrahydroanthracen-2-yl-pentane.yaml","1-(2,3,5,10-tetrahydroxy-7-methoxy-4-oxo-1,2,3,4-tetrahydroanthracen-2-yl)pentane-2,4-dione"],["polyketides/azanigerone-a.yaml","azanigerone A"],["polyketides/campyrone-b.yaml","campyrone B"],["polyketides/desmethyl-tan-1612.yaml","desmethyl TAN-1612"],["polyketides/fumonisin-b2.yaml","fumonisin B2"]]},{"id":"NCBITaxon:32008","l":"Burkholderia","na":3,"nb":6,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["polyketides/necroxime-a.yaml","necroxime A"],["polyketides/necroxime-c.yaml","necroxime C"],["polyketides/necroxime-d.yaml","necroxime D"],["polyketides/thailanstatin-a.yaml","thailanstatin A"],["unclassified/necroxime-b.yaml","necroxime B"],["unclassified/spliceostatin.yaml","spliceostatin"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":4,"nb":3,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]],"b":[["unclassified/leuvalin.yaml","leuvalin"],["unclassified/mutanocyclin.yaml","mutanocyclin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":3,"nb":3,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]],"b":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"],["amino_acids_and_peptides/lacticin-z.yaml","lacticin Z"],["amino_acids_and_peptides/nisin-a.yaml","nisin A"]]},{"id":"NCBITaxon:5052","l":"Aspergillus","na":2,"nb":18,"a":[["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["alkaloids/psychrophilin-e.yaml","psychrophilin E"],["alkaloids/terrequinone-a.yaml","terrequinone A"],["fatty_acids/himeic-acid-a.yaml","himeic acid A"],["polyketides/asperlin.yaml","(+)-asperlin"],["polyketides/geodin.yaml","geodin"],["polyketides/mycophenolic-acid.yaml","mycophenolic acid"]]},{"id":"NCBITaxon:5507","l":"Fusarium oxysporum","na":2,"nb":11,"a":[["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["alkaloids/fusaric-acid.yaml","fusaric acid"],["polyketides/bikaverin.yaml","bikaverin"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"],["polyketides/fumonisin-c1.yaml","Fumonisin C1"],["polyketides/fumonisin-c2.yaml","Fumonisin C2"],["polyketides/fumonisin-c3.yaml","Fumonisin C3"]]},{"id":"NCBITaxon:3702","l":"Arabidopsis thaliana","na":2,"nb":10,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/itaconic-acid.yaml","itaconic acid"],["terpenoids/ent-quiannulatene.yaml","(-)-ent-quiannulatene"],["terpenoids/euphol.yaml","euphol"],["terpenoids/marneral.yaml","marneral"],["terpenoids/thaliandiol.yaml","thaliandiol"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":5,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"],["unclassified/leuvalin.yaml","leuvalin"],["unclassified/phevalin.yaml","phevalin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:1889","l":"Streptomyces ambofaciens","na":2,"nb":4,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["alkaloids/congocidine.yaml","congocidine"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["polyketides/spiramycin.yaml","spiramycin"],["polyketides/stambomycin-a.yaml","stambomycin A"]]},{"id":"NCBITaxon:32049","l":"Picosynechococcus sp. PCC 7002","na":2,"nb":4,"a":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"]],"b":[["alkaloids/synechobactin-a.yaml","synechobactin A"],["alkaloids/synechobactin-b.yaml","synechobactin B"],["alkaloids/synechobactin-c.yaml","synechobactin C"],["fatty_acids/nonadec-1-ene.yaml","nonadec-1-ene"]]},{"id":"NCBITaxon:149698","l":"Massilia","na":3,"nb":2,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]],"b":[["unclassified/empedopeptin.yaml","empedopeptin"],["unclassified/massiliachelin.yaml","Massiliachelin"]]},{"id":"NCBITaxon:1521","l":"Ruminiclostridium cellulolyticum","na":3,"nb":2,"a":[["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["alkaloids/closthioamide.yaml","closthioamide"],["amino_acids_and_peptides/rc-aip1.yaml","Rc-AIP1"]]},{"id":"NCBITaxon:44249","l":"Paenibacillus","na":3,"nb":2,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["alkaloids/paenilamicin.yaml","paenilamicin"],["unclassified/paenibacterin.yaml","paenibacterin"]]},{"id":"NCBITaxon:5544","l":"Trichoderma harzianum","na":2,"nb":3,"a":[["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"]],"b":[["polyketides/1-2-dehydropenicillide.yaml","1,2-dehydropenicillide"],["polyketides/harziphilone.yaml","harziphilone"],["unclassified/harzianopyridone.yaml","harzianopyridone"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":2,"nb":2,"a":[["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"],["carbohydrates/oxetanocin-a.yaml","oxetanocin A"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":2,"nb":2,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]],"b":[["alkaloids/biotin.yaml","biotin"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":2,"nb":2,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["unclassified/andalusicin-a.yaml","andalusicin A"]]},{"id":"NCBITaxon:379","l":"Rhizobium","na":2,"nb":2,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["alkaloids/sesbanimide-c.yaml","sesbanimide C"],["amino_acids_and_peptides/syringolin-a-2.yaml","syringolin A"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":2,"nb":2,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["alkaloids/acinetobactin.yaml","acinetobactin"],["amino_acids_and_peptides/fimsbactin-a.yaml","fimsbactin A"]]},{"id":"NCBITaxon:55080","l":"Brevibacillus","na":2,"nb":2,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"]],"b":[["alkaloids/ulbactin-f.yaml","ulbactin F"],["alkaloids/ulbactin-g.yaml","ulbactin G"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":1,"nb":30,"a":[["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["amino_acids_and_peptides/ditryptophenaline.yaml","(-)-ditryptophenaline"],["amino_acids_and_peptides/imizoquin-a.yaml","imizoquin A"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":1,"nb":23,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/melanin.yaml","melanin"],["alkaloids/undecylprodigiosin.yaml","undecylprodigiosin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/sapb.yaml","SapB"]]},{"id":"NCBITaxon:5073","l":"Penicillium","na":1,"nb":20,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["alkaloids/citridone-a.yaml","citridone A"],["alkaloids/citridone-b-2.yaml","citridone B'"],["alkaloids/citridone-b.yaml","citridone B"],["alkaloids/communesin-b.yaml","communesin B"],["alkaloids/communesin-c.yaml","communesin C"],["alkaloids/communesin-d.yaml","communesin D"]]},{"id":"NCBITaxon:69488","l":"Penicillium simplicissimum","na":1,"nb":14,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"]],"b":[["polyketides/citreoviridin.yaml","citreoviridin"],["unclassified/andrastin-a.yaml","andrastin A"],["unclassified/okaramine-b.yaml","okaramine B"],["unclassified/okaramine-d.yaml","okaramine D"],["unclassified/paraherquamide.yaml","paraherquamide"],["unclassified/paraherquonin.yaml","paraherquonin"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":1,"nb":13,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/congocidine.yaml","congocidine"],["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]]},{"id":"NCBITaxon:1163","l":"Anabaena","na":1,"nb":11,"a":[["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"]],"b":[["alkaloids/anatoxin-a.yaml","anatoxin-a"],["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"],["alkaloids/saxitoxin.yaml","saxitoxin"],["alkaloids/schizokinen.yaml","schizokinen"],["amino_acids_and_peptides/anabaenopeptin.yaml","anabaenopeptin"],["amino_acids_and_peptides/anacyclamide-a10.yaml","anacyclamide A10"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":1,"nb":10,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["amino_acids_and_peptides/lipopeptide-8d1-1.yaml","lipopeptide 8D1-1"],["amino_acids_and_peptides/lipopeptide-8d1-2.yaml","lipopeptide 8D1-2"],["carbohydrates/amicetin.yaml","amicetin"],["carbohydrates/streptothricin-c.yaml","streptothricin C"],["carbohydrates/streptothricin-d.yaml","streptothricin D"],["carbohydrates/streptothricin-e.yaml","streptothricin E"]]},{"id":"NCBITaxon:1988","l":"Actinomadura","na":1,"nb":9,"a":[["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"]],"b":[["alkaloids/k-252a.yaml","K-252a"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["carbohydrates/2-chloropentostatin.yaml","2'-chloropentostatin"],["polyketides/actinospirol-a.yaml","actinospirol A"],["polyketides/actinospirol-b.yaml","actinospirol B"],["polyketides/maduralactomycin-a.yaml","maduralactomycin A"]]},{"id":"NCBITaxon:117187","l":"Fusarium verticillioides","na":1,"nb":8,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]],"b":[["alkaloids/dihydrofusarin-c.yaml","dihydrofusarin C"],["alkaloids/epi-fusarin-c.yaml","epi-fusarin C"],["alkaloids/fusaric-acid.yaml","fusaric acid"],["alkaloids/fusarin-c.yaml","fusarin C"],["alkaloids/fusarin-d.yaml","fusarin D"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"]]},{"id":"NCBITaxon:1827","l":"Rhodococcus ","na":7,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"]],"b":[["alkaloids/corynecin-iii.yaml","corynecin III"]]},{"id":"NCBITaxon:1269","l":"Micrococcus","na":1,"nb":6,"a":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["alkaloids/limazepine-a.yaml","limazepine A"],["alkaloids/limazepine-c.yaml","limazepine C"],["alkaloids/limazepine-d.yaml","limazepine D"],["alkaloids/limazepine-e.yaml","limazepine E"],["alkaloids/limazepine-f.yaml","limazepine F"],["terpenoids/mk-8.yaml","MK-8"]]},{"id":"NCBITaxon:4577","l":"Zea mays","na":1,"nb":6,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]],"b":[["alkaloids/dimboa.yaml","DIMBOA"],["polyketides/emodin.yaml","emodin"],["terpenoids/zealexin-a1.yaml","zealexin A1"],["terpenoids/zealexin-b3.yaml","zealexin B3"],["terpenoids/zealexin-c2.yaml","zealexin C2"],["unclassified/aflatoxin.yaml","aflatoxin"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":6,"nb":1,"a":[["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"],["Sedimenting_Arabinose_Glucose_Saccharomyces_Coculture.html","Sedimenting Arabinose-Glucose Saccharomyces Coculture"],["Synechococcus_Saccharomyces_SPC.html","Synechococcus-Saccharomyces Synthetic Photosynthetic Consortium"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":1,"nb":5,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["alkaloids/aminochelin.yaml","aminochelin"],["alkaloids/azotochelin.yaml","azotochelin"],["alkaloids/protochelin.yaml","protochelin"],["amino_acids_and_peptides/azotobactin-d.yaml","azotobactin D"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":1,"nb":5,"a":[["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/andrimid.yaml","andrimid"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/pantocin-a.yaml","pantocin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:1179","l":"Desmonostoc muscorum","na":1,"nb":4,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["amino_acids_and_peptides/muscoride-a.yaml","muscoride A"],["unclassified/desmamide-a.yaml","desmamide A"],["unclassified/desmamide-b.yaml","desmamide B"],["unclassified/desmamide-c.yaml","desmamide C"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":1,"nb":4,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["unclassified/vacidobactin-a.yaml","vacidobactin A"],["unclassified/vacidobactin-b.yaml","vacidobactin B"],["unclassified/variobactin-a.yaml","variobactin A"],["unclassified/variobactin-b.yaml","variobactin B"]]},{"id":"NCBITaxon:414878","l":"Catenulispora","na":1,"nb":4,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"]],"b":[["polyketides/catenulisporolide-a.yaml","catenulisporolide A"],["polyketides/catenulisporolide-b.yaml","catenulisporolide B"],["polyketides/catenulisporolide-c.yaml","catenulisporolide C"],["polyketides/catenulisporolide-d.yaml","catenulisporolide D"]]},{"id":"NCBITaxon:6239","l":"Caenorhabditis elegans","na":1,"nb":4,"a":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"]],"b":[["alkaloids/biotin.yaml","biotin"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/itaconic-acid.yaml","itaconic acid"],["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"]]},{"id":"CHEBI:15956","l":"biotin","na":3,"nb":1,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"NCBITaxon:1125","l":"Microcystis","na":1,"nb":3,"a":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"]],"b":[["amino_acids_and_peptides/microcystin-lr.yaml","microcystin-LR"],["amino_acids_and_peptides/piricyclamide-7005e1.yaml","piricyclamide 7005E1"],["unclassified/cyanopeptolin.yaml","cyanopeptolin"]]},{"id":"NCBITaxon:1129","l":"Synechococcus","na":1,"nb":3,"a":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]],"b":[["alkaloids/synechobactin-a.yaml","synechobactin A"],["alkaloids/synechobactin-b.yaml","synechobactin B"],["alkaloids/synechobactin-c.yaml","synechobactin C"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":3,"nb":1,"a":[["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["amino_acids_and_peptides/bacitracin.yaml","bacitracin"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":1,"nb":3,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["amino_acids_and_peptides/polymyxin-b.yaml","polymyxin B"],["amino_acids_and_peptides/polymyxin.yaml","polymyxin"],["unclassified/fusaricidin-b.yaml","fusaricidin B"]]},{"id":"NCBITaxon:22","l":"Shewanella","na":3,"nb":1,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Shewanella_Denitrifying_Richness_SynComs.html","Shewanella Denitrifying Richness SynComs"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"NCBITaxon:237","l":"Flavobacterium","na":3,"nb":1,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"]]},{"id":"NCBITaxon:34305","l":"Lotus japonicus","na":1,"nb":3,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["amino_acids_and_peptides/linamarin.yaml","linamarin"],["amino_acids_and_peptides/lotaustralin.yaml","lotaustralin"],["terpenoids/lupeol.yaml","lupeol"]]},{"id":"NCBITaxon:380021","l":"Pseudomonas protegens","na":1,"nb":3,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"],["unclassified/pf-5-pyoverdine.yaml","Pf-5 pyoverdine"]]},{"id":"NCBITaxon:3847","l":"Glycine max","na":1,"nb":3,"a":[["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["alkaloids/biotin.yaml","biotin"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]]},{"id":"NCBITaxon:4081","l":"Solanum lycopersicum","na":1,"nb":3,"a":[["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["fatty_acids/falcarindiol.yaml","falcarindiol"],["terpenoids/lycosantalonol.yaml","lycosantalonol"],["terpenoids/phellandrene.yaml","β-phellandrene"]]},{"id":"NCBITaxon:4530","l":"Oryza sativa","na":1,"nb":3,"a":[["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/nonadec-1-ene.yaml","nonadec-1-ene"],["terpenoids/phytocassane.yaml","phytocassane"]]},{"id":"NCBITaxon:536","l":"Chromobacterium violaceum","na":1,"nb":3,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"]],"b":[["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["unclassified/romidepsin.yaml","romidepsin"]]},{"id":"NCBITaxon:68239","l":"Streptomyces mirabilis strain P8-A","na":1,"nb":3,"a":[["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["alkaloids/azodyrecin-a.yaml","Azodyrecin A"],["alkaloids/azodyrecin-b.yaml","Azodyrecin B"],["alkaloids/azodyrecin-c.yaml","Azodyrecin C"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":3,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["fatty_acids/galactosylceramide.yaml","α-galactosylceramide"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":1,"nb":3,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"],["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"],["unclassified/telomestatin.yaml","telomestatin"]]},{"id":"NCBITaxon:1091494","l":"Methylotuvimicrobium alcaliphilum 20Z","na":2,"nb":1,"a":[["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":2,"nb":1,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:1696","l":"Brevibacterium","na":2,"nb":1,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["alkaloids/1-6-phenazinedimethanol.yaml","1,6-phenazinedimethanol"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":2,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:269797","l":"Methanosarcina barkeri str. Fusaro","na":2,"nb":1,"a":[["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["alkaloids/coenzyme-f430.yaml","coenzyme F430"]]},{"id":"NCBITaxon:29305","l":"Streptomyces griseoincarnatus","na":1,"nb":2,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["polyketides/grincamycin.yaml","grincamycin"],["polyketides/resistomycin.yaml","resistomycin"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":1,"nb":2,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"]],"b":[["alkaloids/agrobactin.yaml","agrobactin"],["amino_acids_and_peptides/aztreonam.yaml","aztreonam"]]},{"id":"NCBITaxon:391619","l":"Phaeobacter inhibens DSM 17395","na":1,"nb":2,"a":[["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"]],"b":[["shikimates_and_phenylpropanoids/hydroxytropodithietic-acid.yaml","hydroxytropodithietic acid"],["shikimates_and_phenylpropanoids/tropodithietic-acid.yaml","tropodithietic acid"]]},{"id":"NCBITaxon:511145","l":"Escherichia coli str. K-12 substr. MG1655","na":2,"nb":1,"a":[["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["unclassified/enterobactin.yaml","enterobactin"]]},{"id":"NCBITaxon:547","l":"Enterobacter","na":2,"nb":1,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["amino_acids_and_peptides/andrimid.yaml","andrimid"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":2,"nb":1,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["unclassified/antimycin-a1b.yaml","antimycin A1B"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":1,"nb":2,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["terpenoids/mk-8.yaml","MK-8"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":1,"nb":2,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["amino_acids_and_peptides/aerobactin.yaml","aerobactin"],["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:613","l":"Serratia","na":1,"nb":2,"a":[["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["alkaloids/serratiochelin-b.yaml","serratiochelin B"],["alkaloids/serratiochelin-c.yaml","serratiochelin C"]]},{"id":"NCBITaxon:644","l":"Aeromonas hydrophila","na":2,"nb":1,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["amino_acids_and_peptides/amonabactin-p-750.yaml","amonabactin P 750"]]},{"id":"NCBITaxon:68","l":"Lysobacter","na":1,"nb":2,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["unclassified/lysobactin.yaml","lysobactin"],["unclassified/lysocin-e.yaml","lysocin E"]]},{"id":"NCBITaxon:80866","l":"Delftia acidovorans","na":1,"nb":2,"a":[["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["amino_acids_and_peptides/delftibactin-a.yaml","delftibactin A"],["amino_acids_and_peptides/delftibactin-b.yaml","delftibactin B"]]},{"id":"CHEBI:134612","l":"staphyloferrin B","na":1,"nb":1,"a":[["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"]]},{"id":"CHEBI:32079","l":"pyrrolnitrin","na":1,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"CHEBI:78688","l":"2,4-diacetylphloroglucinol","na":1,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"]]},{"id":"CHEBI:8653","l":"pyocyanine","na":1,"nb":1,"a":[["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["alkaloids/pyocyanine.yaml","pyocyanine"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":1,"nb":1,"a":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["unclassified/rhodochelin.yaml","rhodochelin"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":1,"nb":1,"a":[["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"]],"b":[["alkaloids/molybdenum-cofactor.yaml","molybdenum cofactor"]]},{"id":"NCBITaxon:1165","l":"Anabaena cylindrica","na":1,"nb":1,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["amino_acids_and_peptides/anachelin.yaml","anachelin"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":1,"nb":1,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["amino_acids_and_peptides/salivaricin-d.yaml","salivaricin D"]]},{"id":"NCBITaxon:135461","l":"Bacillus subtilis subsp. subtilis","na":1,"nb":1,"a":[["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["unclassified/fengycin.yaml","fengycin"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":1,"nb":1,"a":[["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]]},{"id":"NCBITaxon:1663","l":"Arthrobacter","na":1,"nb":1,"a":[["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"]],"b":[["unclassified/ws9326a.yaml","WS9326A"]]},{"id":"NCBITaxon:222","l":"Achromobacter","na":1,"nb":1,"a":[["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":1,"a":[["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"]],"b":[["alkaloids/parabactin.yaml","parabactin"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":1,"nb":1,"a":[["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"NCBITaxon:4547","l":"Saccharum officinarum","na":1,"nb":1,"a":[["SynCom_MetG2_Rhizobacteria_Sugarcane_Stress_Resilience.html","SynCom MetG2 Rhizobacteria Sugarcane Stress Resilience"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"]]},{"id":"NCBITaxon:4751","l":"Fungi","na":1,"nb":1,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["shikimates_and_phenylpropanoids/atromentin.yaml","atromentin"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":1,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:587753","l":"Pseudomonas chlororaphis","na":1,"nb":1,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"NCBITaxon:61624","l":"Paenibacillus mucilaginosus","na":1,"nb":1,"a":[["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["amino_acids_and_peptides/bacillopaline.yaml","bacillopaline"]]},{"id":"NCBITaxon:67372","l":"Streptomyces variabilis","na":1,"nb":1,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["polyketides/resistomycin.yaml","resistomycin"]]},{"id":"NCBITaxon:986","l":"Flavobacterium johnsoniae","na":1,"nb":1,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["polyketides/flexirubin.yaml","flexirubin"]]}]} \ No newline at end of file +{"a":"CommunityMech","b":"NaturalProductMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","NaturalProductMech":"https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/natural_products/"},"n":129,"by":{"NCBITaxon":124,"CHEBI":5},"terms":[{"id":"NCBITaxon:286","l":"Pseudomonas","na":18,"nb":41,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"]],"b":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["alkaloids/tioguanine.yaml","tioguanine"],["amino_acids_and_peptides/napsamycin-c.yaml","napsamycin C"],["amino_acids_and_peptides/napsamycin-d.yaml","napsamycin D"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":16,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["amino_acids_and_peptides/ericin-s.yaml","ericin S"],["amino_acids_and_peptides/iturin.yaml","iturin"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":14,"nb":24,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":11,"nb":13,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["unclassified/bananamide-d.yaml","bananamide D"],["unclassified/bananamide-e.yaml","bananamide E"],["unclassified/bananamide-f.yaml","bananamide F"],["unclassified/bananamide-g.yaml","bananamide G"],["unclassified/lokisin.yaml","lokisin"],["unclassified/pseudodesmin-a.yaml","pseudodesmin A"]]},{"id":"NCBITaxon:1386","l":"Bacillus ","na":16,"nb":9,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bogorol-a.yaml","bogorol A"],["amino_acids_and_peptides/koranimine.yaml","koranimine"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"],["amino_acids_and_peptides/rhizocticin-a.yaml","rhizocticin A"],["polyketides/difficidin.yaml","difficidin"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":9,"nb":12,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:492670","l":"Bacillus velezensis","na":8,"nb":8,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["polyketides/bacillaene.yaml","bacillaene"],["polyketides/difficidin.yaml","difficidin"],["polyketides/macrolactin-h.yaml","macrolactin H"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":6,"nb":116,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["alkaloids/altemicidin.yaml","altemicidin"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"],["alkaloids/aurachin-ss.yaml","aurachin SS"],["alkaloids/berninamycin-j.yaml","berninamycin J"],["alkaloids/berninamycin-k.yaml","berninamycin K"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":6,"nb":27,"a":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["alkaloids/pseudomonine.yaml","pseudomonine"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyreudione-c.yaml","pyreudione C"],["alkaloids/quinolobactin.yaml","quinolobactin"]]},{"id":"NCBITaxon:1883","l":"Streptomyces","na":5,"nb":438,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["Wheat_Consortium_C6.html","Wheat Synthetic Consortium C6"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/7-prenylisatin.yaml","7-prenylisatin"],["alkaloids/9-methylstreptimidone.yaml","9-methylstreptimidone"],["alkaloids/anisomycin.yaml","(−)-anisomycin"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":9,"nb":5,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]],"b":[["alkaloids/promysalin.yaml","promysalin"],["polyketides/pseudopyronine-a.yaml","pseudopyronine A"],["polyketides/pseudopyronine-b.yaml","pseudopyronine B"],["unclassified/putisolvin-iii.yaml","putisolvin III"],["unclassified/putisolvin-v.yaml","putisolvin V"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":4,"nb":11,"a":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["amino_acids_and_peptides/ferrichrome.yaml","ferrichrome"],["polyketides/1-2-3-5-10-tetrahydroxy-7-methoxy-4-oxo-1-2-3-4-tetrahydroanthracen-2-yl-pentane.yaml","1-(2,3,5,10-tetrahydroxy-7-methoxy-4-oxo-1,2,3,4-tetrahydroanthracen-2-yl)pentane-2,4-dione"],["polyketides/azanigerone-a.yaml","azanigerone A"],["polyketides/campyrone-b.yaml","campyrone B"],["polyketides/desmethyl-tan-1612.yaml","desmethyl TAN-1612"],["polyketides/fumonisin-b2.yaml","fumonisin B2"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":7,"nb":4,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["alkaloids/zwittermicin-a.yaml","zwittermicin A"],["amino_acids_and_peptides/livipeptin.yaml","Livipeptin"],["carbohydrates/tunicamycin.yaml","tunicamycin"],["unclassified/cereulide.yaml","cereulide"]]},{"id":"NCBITaxon:32008","l":"Burkholderia","na":4,"nb":6,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["polyketides/necroxime-a.yaml","necroxime A"],["polyketides/necroxime-c.yaml","necroxime C"],["polyketides/necroxime-d.yaml","necroxime D"],["polyketides/thailanstatin-a.yaml","thailanstatin A"],["unclassified/necroxime-b.yaml","necroxime B"],["unclassified/spliceostatin.yaml","spliceostatin"]]},{"id":"NCBITaxon:5052","l":"Aspergillus","na":3,"nb":18,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["alkaloids/psychrophilin-e.yaml","psychrophilin E"],["alkaloids/terrequinone-a.yaml","terrequinone A"],["fatty_acids/himeic-acid-a.yaml","himeic acid A"],["polyketides/asperlin.yaml","(+)-asperlin"],["polyketides/geodin.yaml","geodin"],["polyketides/mycophenolic-acid.yaml","mycophenolic acid"]]},{"id":"NCBITaxon:5544","l":"Trichoderma harzianum","na":5,"nb":3,"a":[["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"],["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"],["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["polyketides/1-2-dehydropenicillide.yaml","1,2-dehydropenicillide"],["polyketides/harziphilone.yaml","harziphilone"],["unclassified/harzianopyridone.yaml","harzianopyridone"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":4,"nb":3,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]],"b":[["unclassified/leuvalin.yaml","leuvalin"],["unclassified/mutanocyclin.yaml","mutanocyclin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":4,"nb":3,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"],["amino_acids_and_peptides/lacticin-z.yaml","lacticin Z"],["amino_acids_and_peptides/nisin-a.yaml","nisin A"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":3,"nb":3,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["amino_acids_and_peptides/polymyxin-b.yaml","polymyxin B"],["amino_acids_and_peptides/polymyxin.yaml","polymyxin"],["unclassified/fusaricidin-b.yaml","fusaricidin B"]]},{"id":"NCBITaxon:5507","l":"Fusarium oxysporum","na":2,"nb":11,"a":[["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["alkaloids/fusaric-acid.yaml","fusaric acid"],["polyketides/bikaverin.yaml","bikaverin"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"],["polyketides/fumonisin-c1.yaml","Fumonisin C1"],["polyketides/fumonisin-c2.yaml","Fumonisin C2"],["polyketides/fumonisin-c3.yaml","Fumonisin C3"]]},{"id":"NCBITaxon:3702","l":"Arabidopsis thaliana","na":2,"nb":10,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/itaconic-acid.yaml","itaconic acid"],["terpenoids/ent-quiannulatene.yaml","(-)-ent-quiannulatene"],["terpenoids/euphol.yaml","euphol"],["terpenoids/marneral.yaml","marneral"],["terpenoids/thaliandiol.yaml","thaliandiol"]]},{"id":"NCBITaxon:4577","l":"Zea mays","na":2,"nb":6,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"]],"b":[["alkaloids/dimboa.yaml","DIMBOA"],["polyketides/emodin.yaml","emodin"],["terpenoids/zealexin-a1.yaml","zealexin A1"],["terpenoids/zealexin-b3.yaml","zealexin B3"],["terpenoids/zealexin-c2.yaml","zealexin C2"],["unclassified/aflatoxin.yaml","aflatoxin"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":5,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"],["unclassified/leuvalin.yaml","leuvalin"],["unclassified/phevalin.yaml","phevalin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:1521","l":"Ruminiclostridium cellulolyticum","na":4,"nb":2,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["alkaloids/closthioamide.yaml","closthioamide"],["amino_acids_and_peptides/rc-aip1.yaml","Rc-AIP1"]]},{"id":"NCBITaxon:1889","l":"Streptomyces ambofaciens","na":2,"nb":4,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["alkaloids/congocidine.yaml","congocidine"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["polyketides/spiramycin.yaml","spiramycin"],["polyketides/stambomycin-a.yaml","stambomycin A"]]},{"id":"NCBITaxon:32049","l":"Picosynechococcus sp. PCC 7002","na":2,"nb":4,"a":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"]],"b":[["alkaloids/synechobactin-a.yaml","synechobactin A"],["alkaloids/synechobactin-b.yaml","synechobactin B"],["alkaloids/synechobactin-c.yaml","synechobactin C"],["fatty_acids/nonadec-1-ene.yaml","nonadec-1-ene"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":3,"nb":2,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"],["carbohydrates/oxetanocin-a.yaml","oxetanocin A"]]},{"id":"NCBITaxon:149698","l":"Massilia","na":3,"nb":2,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]],"b":[["unclassified/empedopeptin.yaml","empedopeptin"],["unclassified/massiliachelin.yaml","Massiliachelin"]]},{"id":"NCBITaxon:379","l":"Rhizobium","na":3,"nb":2,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["alkaloids/sesbanimide-c.yaml","sesbanimide C"],["amino_acids_and_peptides/syringolin-a-2.yaml","syringolin A"]]},{"id":"NCBITaxon:44249","l":"Paenibacillus","na":3,"nb":2,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["alkaloids/paenilamicin.yaml","paenilamicin"],["unclassified/paenibacterin.yaml","paenibacterin"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":3,"nb":2,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["terpenoids/mk-8.yaml","MK-8"]]},{"id":"NCBITaxon:55080","l":"Brevibacillus","na":3,"nb":2,"a":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"]],"b":[["alkaloids/ulbactin-f.yaml","ulbactin F"],["alkaloids/ulbactin-g.yaml","ulbactin G"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":2,"nb":2,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]],"b":[["alkaloids/biotin.yaml","biotin"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":2,"nb":2,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["unclassified/andalusicin-a.yaml","andalusicin A"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":2,"nb":2,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["alkaloids/agrobactin.yaml","agrobactin"],["amino_acids_and_peptides/aztreonam.yaml","aztreonam"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":2,"nb":2,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["alkaloids/acinetobactin.yaml","acinetobactin"],["amino_acids_and_peptides/fimsbactin-a.yaml","fimsbactin A"]]},{"id":"NCBITaxon:1873","l":"Micromonospora","na":1,"nb":49,"a":[["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"]],"b":[["alkaloids/diazaquinomycin-h.yaml","diazaquinomycin H"],["alkaloids/diazaquinomycin-j.yaml","diazaquinomycin J"],["alkaloids/diazepinomicin.yaml","diazepinomicin"],["alkaloids/microansamycin-i.yaml","microansamycin I"],["alkaloids/staurosporine.yaml","staurosporine"],["alkaloids/streptonigrin.yaml","streptonigrin"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":1,"nb":30,"a":[["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["amino_acids_and_peptides/ditryptophenaline.yaml","(-)-ditryptophenaline"],["amino_acids_and_peptides/imizoquin-a.yaml","imizoquin A"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":1,"nb":23,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/melanin.yaml","melanin"],["alkaloids/undecylprodigiosin.yaml","undecylprodigiosin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/sapb.yaml","SapB"]]},{"id":"NCBITaxon:5073","l":"Penicillium","na":1,"nb":20,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["alkaloids/citridone-a.yaml","citridone A"],["alkaloids/citridone-b-2.yaml","citridone B'"],["alkaloids/citridone-b.yaml","citridone B"],["alkaloids/communesin-b.yaml","communesin B"],["alkaloids/communesin-c.yaml","communesin C"],["alkaloids/communesin-d.yaml","communesin D"]]},{"id":"NCBITaxon:69488","l":"Penicillium simplicissimum","na":1,"nb":14,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"]],"b":[["polyketides/citreoviridin.yaml","citreoviridin"],["unclassified/andrastin-a.yaml","andrastin A"],["unclassified/okaramine-b.yaml","okaramine B"],["unclassified/okaramine-d.yaml","okaramine D"],["unclassified/paraherquamide.yaml","paraherquamide"],["unclassified/paraherquonin.yaml","paraherquonin"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":1,"nb":13,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/congocidine.yaml","congocidine"],["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]]},{"id":"NCBITaxon:1163","l":"Anabaena","na":1,"nb":11,"a":[["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"]],"b":[["alkaloids/anatoxin-a.yaml","anatoxin-a"],["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"],["alkaloids/saxitoxin.yaml","saxitoxin"],["alkaloids/schizokinen.yaml","schizokinen"],["amino_acids_and_peptides/anabaenopeptin.yaml","anabaenopeptin"],["amino_acids_and_peptides/anacyclamide-a10.yaml","anacyclamide A10"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":1,"nb":10,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["amino_acids_and_peptides/lipopeptide-8d1-1.yaml","lipopeptide 8D1-1"],["amino_acids_and_peptides/lipopeptide-8d1-2.yaml","lipopeptide 8D1-2"],["carbohydrates/amicetin.yaml","amicetin"],["carbohydrates/streptothricin-c.yaml","streptothricin C"],["carbohydrates/streptothricin-d.yaml","streptothricin D"],["carbohydrates/streptothricin-e.yaml","streptothricin E"]]},{"id":"NCBITaxon:1988","l":"Actinomadura","na":1,"nb":9,"a":[["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"]],"b":[["alkaloids/k-252a.yaml","K-252a"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["carbohydrates/2-chloropentostatin.yaml","2'-chloropentostatin"],["polyketides/actinospirol-a.yaml","actinospirol A"],["polyketides/actinospirol-b.yaml","actinospirol B"],["polyketides/maduralactomycin-a.yaml","maduralactomycin A"]]},{"id":"NCBITaxon:117187","l":"Fusarium verticillioides","na":1,"nb":8,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]],"b":[["alkaloids/dihydrofusarin-c.yaml","dihydrofusarin C"],["alkaloids/epi-fusarin-c.yaml","epi-fusarin C"],["alkaloids/fusaric-acid.yaml","fusaric acid"],["alkaloids/fusarin-c.yaml","fusarin C"],["alkaloids/fusarin-d.yaml","fusarin D"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"]]},{"id":"NCBITaxon:1827","l":"Rhodococcus ","na":8,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]],"b":[["alkaloids/corynecin-iii.yaml","corynecin III"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":8,"nb":1,"a":[["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"],["Sedimenting_Arabinose_Glucose_Saccharomyces_Coculture.html","Sedimenting Arabinose-Glucose Saccharomyces Coculture"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":1,"nb":8,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["amino_acids_and_peptides/ferrichrome-2.yaml","ferrichrome"],["polyketides/2-acetyl-1-3-6-8-tetrahydroxynaphthalene.yaml","2-acetyl-1,3,6,8-tetrahydroxynaphthalene"],["polyketides/kojic-acid.yaml","kojic acid"],["terpenoids/aphidicolin.yaml","aphidicolin"],["unclassified/2-oxocyclopiazonic-acid.yaml","2-oxocyclopiazonic acid"],["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"NCBITaxon:1269","l":"Micrococcus","na":1,"nb":6,"a":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["alkaloids/limazepine-a.yaml","limazepine A"],["alkaloids/limazepine-c.yaml","limazepine C"],["alkaloids/limazepine-d.yaml","limazepine D"],["alkaloids/limazepine-e.yaml","limazepine E"],["alkaloids/limazepine-f.yaml","limazepine F"],["terpenoids/mk-8.yaml","MK-8"]]},{"id":"NCBITaxon:1920","l":"Streptomyces nigrescens","na":1,"nb":6,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["alkaloids/5athq-10a.yaml","5aTHQ-10a"],["alkaloids/5athq-9i.yaml","5aTHQ-9i"],["alkaloids/5athq-9n.yaml","5aTHQ-9n"],["alkaloids/stams-9i.yaml","STAMs-9i"],["alkaloids/stams-9n.yaml","STAMs-9n"],["polyketides/phoslactomycin-b.yaml","phoslactomycin B"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":1,"nb":5,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["alkaloids/aminochelin.yaml","aminochelin"],["alkaloids/azotochelin.yaml","azotochelin"],["alkaloids/protochelin.yaml","protochelin"],["amino_acids_and_peptides/azotobactin-d.yaml","azotobactin D"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":1,"nb":5,"a":[["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/andrimid.yaml","andrimid"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/pantocin-a.yaml","pantocin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:101028","l":"Fusarium pseudograminearum","na":1,"nb":4,"a":[["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["alkaloids/8-oxo-fusatin.yaml","8-oxo-fusatin"],["alkaloids/8-oxo-isopentenyladenine.yaml","8-oxo-isopentenyladenine"],["alkaloids/fusatin.yaml","fusatin"],["alkaloids/fusatinic-acid.yaml","fusatinic acid"]]},{"id":"NCBITaxon:1179","l":"Desmonostoc muscorum","na":1,"nb":4,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["amino_acids_and_peptides/muscoride-a.yaml","muscoride A"],["unclassified/desmamide-a.yaml","desmamide A"],["unclassified/desmamide-b.yaml","desmamide B"],["unclassified/desmamide-c.yaml","desmamide C"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":4,"nb":1,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"],["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":4,"nb":1,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["amino_acids_and_peptides/bacitracin.yaml","bacitracin"]]},{"id":"NCBITaxon:237","l":"Flavobacterium","na":4,"nb":1,"a":[["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"]]},{"id":"NCBITaxon:2745","l":"Halomonas","na":1,"nb":4,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["amino_acids_and_peptides/potashchelin-a.yaml","potashchelin A"],["amino_acids_and_peptides/potashchelin-b.yaml","potashchelin B"],["amino_acids_and_peptides/potashchelin-c.yaml","potashchelin C"],["amino_acids_and_peptides/potashchelin-d.yaml","potashchelin D"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":1,"nb":4,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["unclassified/vacidobactin-a.yaml","vacidobactin A"],["unclassified/vacidobactin-b.yaml","vacidobactin B"],["unclassified/variobactin-a.yaml","variobactin A"],["unclassified/variobactin-b.yaml","variobactin B"]]},{"id":"NCBITaxon:414878","l":"Catenulispora","na":1,"nb":4,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"]],"b":[["polyketides/catenulisporolide-a.yaml","catenulisporolide A"],["polyketides/catenulisporolide-b.yaml","catenulisporolide B"],["polyketides/catenulisporolide-c.yaml","catenulisporolide C"],["polyketides/catenulisporolide-d.yaml","catenulisporolide D"]]},{"id":"NCBITaxon:6239","l":"Caenorhabditis elegans","na":1,"nb":4,"a":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"]],"b":[["alkaloids/biotin.yaml","biotin"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/itaconic-acid.yaml","itaconic acid"],["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":4,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["fatty_acids/galactosylceramide.yaml","α-galactosylceramide"]]},{"id":"CHEBI:15956","l":"biotin","na":3,"nb":1,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"NCBITaxon:1125","l":"Microcystis","na":1,"nb":3,"a":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"]],"b":[["amino_acids_and_peptides/microcystin-lr.yaml","microcystin-LR"],["amino_acids_and_peptides/piricyclamide-7005e1.yaml","piricyclamide 7005E1"],["unclassified/cyanopeptolin.yaml","cyanopeptolin"]]},{"id":"NCBITaxon:1129","l":"Synechococcus","na":1,"nb":3,"a":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]],"b":[["alkaloids/synechobactin-a.yaml","synechobactin A"],["alkaloids/synechobactin-b.yaml","synechobactin B"],["alkaloids/synechobactin-c.yaml","synechobactin C"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":1,"nb":3,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["amino_acids_and_peptides/epidermin.yaml","epidermin"],["amino_acids_and_peptides/epilancin-15x.yaml","epilancin 15x"],["amino_acids_and_peptides/pep5.yaml","pep5"]]},{"id":"NCBITaxon:22","l":"Shewanella","na":3,"nb":1,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Shewanella_Denitrifying_Richness_SynComs.html","Shewanella Denitrifying Richness SynComs"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"NCBITaxon:222","l":"Achromobacter","na":3,"nb":1,"a":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":1,"nb":3,"a":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"]],"b":[["alkaloids/cepaciachelin.yaml","cepaciachelin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["terpenoids/hopene.yaml","hopene"]]},{"id":"NCBITaxon:29442","l":"Pseudomonas tolaasii","na":1,"nb":3,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["unclassified/tolaasin-a.yaml","tolaasin A"],["unclassified/tolaasin-f.yaml","tolaasin F"],["unclassified/tolaasin-i.yaml","tolaasin I"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":3,"nb":1,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"NCBITaxon:34305","l":"Lotus japonicus","na":1,"nb":3,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["amino_acids_and_peptides/linamarin.yaml","linamarin"],["amino_acids_and_peptides/lotaustralin.yaml","lotaustralin"],["terpenoids/lupeol.yaml","lupeol"]]},{"id":"NCBITaxon:380021","l":"Pseudomonas protegens","na":1,"nb":3,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"],["unclassified/pf-5-pyoverdine.yaml","Pf-5 pyoverdine"]]},{"id":"NCBITaxon:3847","l":"Glycine max","na":1,"nb":3,"a":[["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["alkaloids/biotin.yaml","biotin"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]]},{"id":"NCBITaxon:4081","l":"Solanum lycopersicum","na":1,"nb":3,"a":[["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["fatty_acids/falcarindiol.yaml","falcarindiol"],["terpenoids/lycosantalonol.yaml","lycosantalonol"],["terpenoids/phellandrene.yaml","β-phellandrene"]]},{"id":"NCBITaxon:4530","l":"Oryza sativa","na":1,"nb":3,"a":[["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/nonadec-1-ene.yaml","nonadec-1-ene"],["terpenoids/phytocassane.yaml","phytocassane"]]},{"id":"NCBITaxon:536","l":"Chromobacterium violaceum","na":1,"nb":3,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"]],"b":[["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["unclassified/romidepsin.yaml","romidepsin"]]},{"id":"NCBITaxon:547","l":"Enterobacter","na":3,"nb":1,"a":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["amino_acids_and_peptides/andrimid.yaml","andrimid"]]},{"id":"NCBITaxon:587753","l":"Pseudomonas chlororaphis","na":3,"nb":1,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"NCBITaxon:68239","l":"Streptomyces mirabilis strain P8-A","na":1,"nb":3,"a":[["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["alkaloids/azodyrecin-a.yaml","Azodyrecin A"],["alkaloids/azodyrecin-b.yaml","Azodyrecin B"],["alkaloids/azodyrecin-c.yaml","Azodyrecin C"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":1,"nb":3,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"],["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"],["unclassified/telomestatin.yaml","telomestatin"]]},{"id":"NCBITaxon:1091494","l":"Methylotuvimicrobium alcaliphilum 20Z","na":2,"nb":1,"a":[["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:132919","l":"Rhodococcus jostii","na":1,"nb":2,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["amino_acids_and_peptides/lariatin.yaml","lariatin"],["unclassified/rhodochelin.yaml","rhodochelin"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":2,"nb":1,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]]},{"id":"NCBITaxon:1663","l":"Arthrobacter","na":2,"nb":1,"a":[["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["unclassified/ws9326a.yaml","WS9326A"]]},{"id":"NCBITaxon:1696","l":"Brevibacterium","na":2,"nb":1,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["alkaloids/1-6-phenazinedimethanol.yaml","1,6-phenazinedimethanol"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":2,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":2,"nb":1,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"]],"b":[["alkaloids/parabactin.yaml","parabactin"]]},{"id":"NCBITaxon:269797","l":"Methanosarcina barkeri str. Fusaro","na":2,"nb":1,"a":[["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["alkaloids/coenzyme-f430.yaml","coenzyme F430"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":2,"nb":1,"a":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:29305","l":"Streptomyces griseoincarnatus","na":1,"nb":2,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["polyketides/grincamycin.yaml","grincamycin"],["polyketides/resistomycin.yaml","resistomycin"]]},{"id":"NCBITaxon:391619","l":"Phaeobacter inhibens DSM 17395","na":1,"nb":2,"a":[["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"]],"b":[["shikimates_and_phenylpropanoids/hydroxytropodithietic-acid.yaml","hydroxytropodithietic acid"],["shikimates_and_phenylpropanoids/tropodithietic-acid.yaml","tropodithietic acid"]]},{"id":"NCBITaxon:511145","l":"Escherichia coli str. K-12 substr. MG1655","na":2,"nb":1,"a":[["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["unclassified/enterobactin.yaml","enterobactin"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":2,"nb":1,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["unclassified/antimycin-a1b.yaml","antimycin A1B"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":1,"nb":2,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["amino_acids_and_peptides/aerobactin.yaml","aerobactin"],["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:613","l":"Serratia","na":1,"nb":2,"a":[["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["alkaloids/serratiochelin-b.yaml","serratiochelin B"],["alkaloids/serratiochelin-c.yaml","serratiochelin C"]]},{"id":"NCBITaxon:644","l":"Aeromonas hydrophila","na":2,"nb":1,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["amino_acids_and_peptides/amonabactin-p-750.yaml","amonabactin P 750"]]},{"id":"NCBITaxon:67356","l":"Streptomyces resistomycificus","na":1,"nb":2,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["polyketides/resistoflavine.yaml","resistoflavine"],["polyketides/resistomycin.yaml","resistomycin"]]},{"id":"NCBITaxon:68","l":"Lysobacter","na":1,"nb":2,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["unclassified/lysobactin.yaml","lysobactin"],["unclassified/lysocin-e.yaml","lysocin E"]]},{"id":"NCBITaxon:68264","l":"Streptomyces rishiriensis","na":1,"nb":2,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["shikimates_and_phenylpropanoids/coumermycin-a1.yaml","coumermycin A1"],["unclassified/lactonamycin.yaml","lactonamycin"]]},{"id":"NCBITaxon:80866","l":"Delftia acidovorans","na":1,"nb":2,"a":[["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["amino_acids_and_peptides/delftibactin-a.yaml","delftibactin A"],["amino_acids_and_peptides/delftibactin-b.yaml","delftibactin B"]]},{"id":"CHEBI:134612","l":"staphyloferrin B","na":1,"nb":1,"a":[["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"]]},{"id":"CHEBI:32079","l":"pyrrolnitrin","na":1,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"CHEBI:78688","l":"2,4-diacetylphloroglucinol","na":1,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"]]},{"id":"CHEBI:8653","l":"pyocyanine","na":1,"nb":1,"a":[["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["alkaloids/pyocyanine.yaml","pyocyanine"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":1,"nb":1,"a":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["unclassified/rhodochelin.yaml","rhodochelin"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":1,"nb":1,"a":[["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"]],"b":[["alkaloids/molybdenum-cofactor.yaml","molybdenum cofactor"]]},{"id":"NCBITaxon:1142","l":"Synechocystis","na":1,"nb":1,"a":[["Dairy_Wastewater_Algal_Cyanobacterial_Cultivation_Panel.html","Dairy Wastewater Algal-Cyanobacterial Cultivation Panel"]],"b":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]]},{"id":"NCBITaxon:1165","l":"Anabaena cylindrica","na":1,"nb":1,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["amino_acids_and_peptides/anachelin.yaml","anachelin"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":1,"nb":1,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["amino_acids_and_peptides/salivaricin-d.yaml","salivaricin D"]]},{"id":"NCBITaxon:135461","l":"Bacillus subtilis subsp. subtilis","na":1,"nb":1,"a":[["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["unclassified/fengycin.yaml","fengycin"]]},{"id":"NCBITaxon:1501433","l":"Kamptonema","na":1,"nb":1,"a":[["Microalgae_Cyanobacteria_Bioactive_Peptide_Consortia.html","Microalgae-Cyanobacteria Bioactive Peptide Consortia"]],"b":[["amino_acids_and_peptides/landornamide-a.yaml","landornamide A"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":1,"nb":1,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["amino_acids_and_peptides/cutimycin.yaml","cutimycin"]]},{"id":"NCBITaxon:226","l":"Alteromonas","na":1,"nb":1,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["unclassified/marinostatin.yaml","marinostatin"]]},{"id":"NCBITaxon:2433","l":"Roseobacter","na":1,"nb":1,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["shikimates_and_phenylpropanoids/tropodithietic-acid.yaml","tropodithietic acid"]]},{"id":"NCBITaxon:4097","l":"Nicotiana tabacum","na":1,"nb":1,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"]],"b":[["terpenoids/capsidiol.yaml","capsidiol"]]},{"id":"NCBITaxon:4547","l":"Saccharum officinarum","na":1,"nb":1,"a":[["SynCom_MetG2_Rhizobacteria_Sugarcane_Stress_Resilience.html","SynCom MetG2 Rhizobacteria Sugarcane Stress Resilience"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"]]},{"id":"NCBITaxon:47251","l":"Leptolyngbya","na":1,"nb":1,"a":[["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"]]},{"id":"NCBITaxon:4751","l":"Fungi","na":1,"nb":1,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["shikimates_and_phenylpropanoids/atromentin.yaml","atromentin"]]},{"id":"NCBITaxon:5094","l":"Talaromyces","na":1,"nb":1,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["unclassified/chrodrimanin-b.yaml","chrodrimanin B"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":1,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:61624","l":"Paenibacillus mucilaginosus","na":1,"nb":1,"a":[["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["amino_acids_and_peptides/bacillopaline.yaml","bacillopaline"]]},{"id":"NCBITaxon:648","l":"Aeromonas caviae","na":1,"nb":1,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:67372","l":"Streptomyces variabilis","na":1,"nb":1,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["polyketides/resistomycin.yaml","resistomycin"]]},{"id":"NCBITaxon:68274","l":"Streptomyces tauricus","na":1,"nb":1,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["polyketides/cinerubin-b.yaml","cinerubin B"]]},{"id":"NCBITaxon:86265","l":"Pseudomonas thivervalensis","na":1,"nb":1,"a":[["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"]],"b":[["amino_acids_and_peptides/histicorrugatin.yaml","histicorrugatin"]]},{"id":"NCBITaxon:96241","l":"Bacillus spizizenii","na":1,"nb":1,"a":[["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"]],"b":[["amino_acids_and_peptides/entianin.yaml","entianin"]]},{"id":"NCBITaxon:986","l":"Flavobacterium johnsoniae","na":1,"nb":1,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["polyketides/flexirubin.yaml","flexirubin"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/CommunityMech--ProteinTraitsMech.json b/assets/fleet/edges/CommunityMech--ProteinTraitsMech.json index 1472df1..1b4be49 100644 --- a/assets/fleet/edges/CommunityMech--ProteinTraitsMech.json +++ b/assets/fleet/edges/CommunityMech--ProteinTraitsMech.json @@ -1 +1 @@ -{"a":"CommunityMech","b":"ProteinTraitsMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record="},"n":650,"by":{"CHEBI":268,"NCBITaxon":192,"GO":189,"UBERON":1},"terms":[{"id":"CHEBI:16526","l":"carbon dioxide","na":72,"nb":1616,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"]],"b":[["EC%3A1.1.1.170","3beta-hydroxysteroid-4alpha-carboxylate 3-dehydrogenase (decarboxylating)"],["EC%3A1.1.1.262","4-hydroxythreonine-4-phosphate dehydrogenase"],["EC%3A1.1.1.276","serine 3-dehydrogenase (NADP(+))"],["EC%3A1.1.1.286","isocitrate--homoisocitrate dehydrogenase"],["EC%3A1.1.1.305","UDP-glucuronic acid oxidase (UDP-4-keto-hexauronic acid decarboxylating)"],["EC%3A1.1.1.343","phosphogluconate dehydrogenase (NAD(+)-dependent, decarboxylating)"]]},{"id":"CHEBI:30089","l":"acetate","na":72,"nb":302,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"]],"b":[["EC%3A1.1.1.318","eugenol synthase"],["EC%3A1.1.1.319","isoeugenol synthase"],["EC%3A1.13.11.50","acetylacetone-cleaving enzyme"],["EC%3A1.13.12.4","lactate 2-monooxygenase"],["EC%3A1.14.13.54","ketosteroid monooxygenase"],["EC%3A1.14.14.19","steroid 17alpha-monooxygenase"]]},{"id":"GO:0015979","l":"photosynthesis","na":42,"nb":146,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"]],"b":[["GO%3A0015979","photosynthesis"],["NCBIfam%3ATIGR01337","allophycocyanin subunit beta"],["NCBIfam%3ATIGR03056","alpha/beta fold hydrolase BchO"],["NCBIfam%3ANF013497","Apocytochrome F, C-terminal"],["NCBIfam%3ANF014391","Bacteriochlorophyll A protein"],["NCBIfam%3ANF058502","C-phycocyanin alpha-cysteine-84 phycocyanobilin lyase subunit CpcE"]]},{"id":"CHEBI:18276","l":"dihydrogen","na":54,"nb":42,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["EC%3A1.12.1.2","hydrogen dehydrogenase"],["EC%3A1.12.1.3","hydrogen dehydrogenase (NADP(+))"],["EC%3A1.12.1.4","hydrogenase (NAD(+), ferredoxin)"],["EC%3A1.12.1.5","hydrogen dehydrogenase [NAD(P)(+)]"],["EC%3A1.12.2.1","cytochrome-c3 hydrogenase"],["EC%3A1.12.5.1","hydrogen:quinone oxidoreductase"]]},{"id":"GO:0015948","l":"methanogenesis","na":41,"nb":82,"a":[["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["GO%3A0019385","methanogenesis, from acetate"],["GO%3A0019386","methanogenesis, from carbon dioxide"],["GO%3A0019387","methanogenesis, from methanol"],["GO%3A0015948","methanogenesis"],["proteintraitsmech%3ASEED_SUBSYSTEM_Methanogenesis","Methanogenesis"],["NCBIfam%3ATIGR03957","5,10-methenyltetrahydromethanopterin hydrogenase cofactor biosynthesis protein HmdB"]]},{"id":"GO:0015977","l":"carbon fixation","na":33,"nb":30,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["GO%3A0009760","C4 photosynthesis"],["GO%3A0009761","CAM photosynthesis"],["GO%3A0043427","carbon fixation by 3-hydroxypropionate cycle"],["GO%3A0030634","carbon fixation by acetyl-CoA pathway"],["GO%3A0015977","carbon fixation"],["GO%3A0019643","reductive tricarboxylic acid cycle"]]},{"id":"CHEBI:15379","l":"dioxygen","na":25,"nb":3896,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["EC%3A1.1.3.10","pyranose oxidase"],["EC%3A1.1.3.11","L-sorbose oxidase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.3.13","alcohol oxidase"],["EC%3A1.1.3.14","catechol oxidase (dimerizing)"],["EC%3A1.1.3.15","(S)-2-hydroxy-acid oxidase"]]},{"id":"CHEBI:16189","l":"sulfate","na":24,"nb":133,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16189","requires sulfate"],["EC%3A1.14.11.77","alkyl sulfatase"],["EC%3A1.8.2.1","sulfite dehydrogenase (cytochrome)"],["EC%3A1.8.3.1","sulfite oxidase"],["EC%3A1.8.5.6","sulfite dehydrogenase (quinone)"],["EC%3A2.7.7.4","sulfate adenylyltransferase"]]},{"id":"CHEBI:17632","l":"nitrate","na":24,"nb":40,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["EC%3A1.14.12.17","nitric oxide dioxygenase"],["EC%3A1.7.1.1","nitrate reductase (NADH)"],["EC%3A1.7.1.2","nitrate reductase [NAD(P)H]"],["EC%3A1.7.1.3","nitrate reductase (NADPH)"],["EC%3A1.7.5.1","nitrate reductase (quinone)"],["EC%3A1.7.6.1","nitrite dismutase"]]},{"id":"GO:0009399","l":"nitrogen fixation","na":24,"nb":36,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"]],"b":[["GO%3A0009399","nitrogen fixation"],["proteintraitsmech%3ASEED_SUBSYSTEM_Nitrogen_fixation","Nitrogen fixation"],["NCBIfam%3ATIGR02662","ADP-ribosyl-[dinitrogen reductase] hydrolase"],["NCBIfam%3ATIGR02931","Fe-only nitrogenase subunit beta"],["NCBIfam%3ATIGR02929","Fe-only nitrogenase subunit delta"],["NCBIfam%3ATIGR02000","Fe-S cluster assembly protein NifU"]]},{"id":"CHEBI:15740","l":"formate","na":22,"nb":173,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"]],"b":[["EC%3A1.1.98.6","ribonucleoside-triphosphate reductase (formate)"],["EC%3A1.10.3.15","grixazone synthase"],["EC%3A1.13.11.41","2,4'-dihydroxyacetophenone dioxygenase"],["EC%3A1.13.11.53","acireductone dioxygenase (Ni(2+)-requiring)"],["EC%3A1.13.11.54","acireductone dioxygenase (Fe(2+)-requiring)"],["EC%3A1.13.11.72","2-hydroxyethylphosphonate dioxygenase"]]},{"id":"CHEBI:16236","l":"ethanol","na":22,"nb":31,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.5.5","alcohol dehydrogenase (quinone)"],["EC%3A1.1.99.36","alcohol dehydrogenase (nicotinoprotein)"],["EC%3A2.3.1.268","ethanol O-acetyltransferase"],["EC%3A3.1.1.113","ethyl acetate hydrolase"],["EC%3A3.1.1.67","fatty-acyl-ethyl-ester synthase"]]},{"id":"CHEBI:29034","l":"iron(3+)","na":21,"nb":376,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29034","requires iron(3+)"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.11","glucoside 3-dehydrogenase (cytochrome c)"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.2.3","L-lactate dehydrogenase (cytochrome)"],["EC%3A1.1.2.4","D-lactate dehydrogenase (cytochrome)"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":20,"nb":396,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29033","requires iron(2+)"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.11","glucoside 3-dehydrogenase (cytochrome c)"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.2.3","L-lactate dehydrogenase (cytochrome)"],["EC%3A1.1.2.4","D-lactate dehydrogenase (cytochrome)"]]},{"id":"CHEBI:24996","l":"lactate","na":20,"nb":23,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"]],"b":[["EC%3A1.1.1.436","lactate dehydrogenase (NAD(+),ferredoxin)"],["EC%3A3.5.1.124","protein deglycase"],["RHEA%3A57300","an N(2)-(1-hydroxy-2-oxopropyl)-2'-deoxyguanosine in DNA + H2O = a 2'-deoxyguanosine in DNA + lactate + H(+)"],["RHEA%3A57288","an N(2)-(1-hydroxy-2-oxopropyl)-guanosine in RNA + H2O = a guanosine in RNA + lactate + H(+)"],["RHEA%3A46964","lactate + 2 reduced [2Fe-2S]-[ferredoxin] + 2 NAD(+) = 2 oxidized [2Fe-2S]-[ferredoxin] + pyruvate + 2 NADH"],["RHEA%3A57244","N(2)-(1-hydroxy-2-oxopropyl)-dGTP + H2O = lactate + dGTP + H(+)"]]},{"id":"GO:0044419","l":"biological process involved in interspecies interaction between organisms","na":134,"nb":18,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"]],"b":[["GO%3A0044419","biological process involved in interspecies interaction between organisms"],["GO%3A0044403","biological process involved in symbiotic interaction"],["GO%3A0141060","disruption of anatomical structure in another organism"],["GO%3A0044111","formation of structure involved in a symbiotic process"],["GO%3A0140106","hematophagy"],["GO%3A0035821","modulation of process of another organism"]]},{"id":"GO:0030245","l":"cellulose catabolic process","na":29,"nb":18,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"]],"b":[["GO%3A1990488","anaerobic cellulose catabolic process"],["GO%3A0030245","cellulose catabolic process"],["GO%3A0052785","cellulose catabolism by endo-processive cellulases"],["NCBIfam%3ANF049990","cellulose 1,4-beta-cellobiosidase"],["NCBIfam%3ANF041611","exoglucanase CbhB"],["NCBIfam%3ATIGR03356","GH1 family beta-glucosidase"]]},{"id":"CHEBI:17968","l":"butyrate","na":17,"nb":33,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"]],"b":[["EC%3A1.3.1.31","2-enoate reductase"],["EC%3A2.3.1.315","succinyl-CoA:cyclohexane-1-carboxylate CoA transferase"],["EC%3A2.7.2.7","butyrate kinase"],["EC%3A2.8.3.9","butyrate--acetoacetate CoA-transferase"],["EC%3A3.1.1.51","phorbol-diester hydrolase"],["EC%3A3.7.1.7","beta-diketone hydrolase"]]},{"id":"GO:0006826","l":"iron ion transport","na":17,"nb":26,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"]],"b":[["GO%3A1901678","iron coordination entity transport"],["GO%3A0033212","iron import into cell"],["GO%3A0034755","iron ion transmembrane transport"],["GO%3A0006826","iron ion transport"],["GO%3A0033571","lactoferrin transport"],["GO%3A0033572","transferrin transport"]]},{"id":"CHEBI:28938","l":"ammonium","na":15,"nb":837,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_28938","requires ammonium"],["EC%3A1.13.12.15","3,4-dihydroxyphenylalanine oxidative deaminase"],["EC%3A1.13.99.3","tryptophan 2'-dioxygenase"],["EC%3A1.14.11.37","kanamycin B dioxygenase"],["EC%3A1.14.12.1","anthranilate 1,2-dioxygenase (deaminating, decarboxylating)"],["EC%3A1.14.12.14","2-aminobenzenesulfonate 2,3-dioxygenase"]]},{"id":"GO:0022900","l":"electron transport chain","na":15,"nb":50,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"]],"b":[["GO%3A0022900","electron transport chain"],["GO%3A0140647","P450-containing electron transport chain"],["GO%3A0009767","photosynthetic electron transport chain"],["GO%3A0022904","respiratory electron transport chain"],["NCBIfam%3ANF058577","4Fe-4S ferredoxin"],["NCBIfam%3ANF042982","8-methylmenaquinol:fumarate reductase flavoprotein subunit"]]},{"id":"CHEBI:16301","l":"nitrite","na":14,"nb":116,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["EC%3A1.13.11.64","5-nitrosalicylate dioxygenase"],["EC%3A1.13.12.16","nitronate monooxygenase"],["EC%3A1.14.12.23","nitroarene dioxygenase"],["EC%3A1.14.12.24","2,4-dinitrotoluene dioxygenase"],["EC%3A1.14.13.166","4-nitrocatechol 4-monooxygenase"],["EC%3A1.14.13.167","4-nitrophenol 4-monooxygenase"]]},{"id":"CHEBI:17992","l":"sucrose","na":14,"nb":49,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["EC%3A1.1.99.13","glucoside 3-dehydrogenase (acceptor)"],["EC%3A2.4.1.10","levansucrase"],["EC%3A2.4.1.125","sucrose--1,6-alpha-glucan 3(6)-alpha-glucosyltransferase"],["EC%3A2.4.1.13","sucrose synthase"],["EC%3A2.4.1.166","raffinose--raffinose alpha-galactosyltransferase"],["EC%3A2.4.1.167","sucrose 6(F)-alpha-galactosyltransferase"]]},{"id":"GO:0006113","l":"fermentation","na":37,"nb":14,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"]],"b":[["ComplexPortal%3ACPX-281","Hydrogenase-1 complex"],["GO%3A0030645","acetyl-CoA fermentation to butanoate"],["GO%3A0019665","amino acid fermentation"],["GO%3A0019588","anaerobic glycerol catabolic process"],["GO%3A0019658","bifid shunt"],["GO%3A0044577","D-xylose fermentation"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":13,"nb":156,"a":[["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"]],"b":[["IDPO%3A0000033","flexible linker"],["IDPO%3A0000014","order to disorder"],["IDPO%3A0000004","pre-molten globule"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"]]},{"id":"GO:0006790","l":"sulfur compound metabolic process","na":13,"nb":113,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"]],"b":[["GO%3A0050427","3'-phosphoadenosine 5'-phosphosulfate metabolic process"],["GO%3A0018887","4-carboxy-4'-sulfoazobenzene metabolic process"],["GO%3A0006637","acyl-CoA metabolic process"],["GO%3A0019694","alkanesulfonate metabolic process"],["GO%3A0006768","biotin metabolic process"],["GO%3A1901266","cephalosporin C metabolic process"]]},{"id":"CHEBI:16183","l":"methane","na":57,"nb":13,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"]],"b":[["EC%3A1.14.13.25","methane monooxygenase (soluble)"],["EC%3A1.14.18.3","methane monooxygenase (particulate)"],["EC%3A2.8.4.1","coenzyme-B sulfoethylthiotransferase"],["EC%3A4.7.1.1","alpha-D-ribose 1-methylphosphonate 5-phosphate C-P-lyase"],["RHEA%3A34707","alpha-D-ribose 1-methylphosphonate 5-phosphate + AH2 + S-adenosyl-L-methionine = alpha-D-ribose 1,2-cyclic phosphate 5-phosphate + methane + 5'-deoxyadenosine + L-methionine + A + H(+)"],["RHEA%3A12532","coenzyme B + methyl-coenzyme M = methane + coenzyme M-coenzyme B heterodisulfide"]]},{"id":"GO:0005975","l":"carbohydrate metabolic process","na":12,"nb":401,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"]],"b":[["GO%3A0016051","carbohydrate biosynthetic process"],["GO%3A0016052","carbohydrate catabolic process"],["GO%3A0005975","carbohydrate metabolic process"],["GO%3A0046835","carbohydrate phosphorylation"],["GO%3A0042836","D-glucarate metabolic process"],["GO%3A0019521","D-gluconate metabolic process"]]},{"id":"CHEBI:26833","l":"sulfur atom","na":12,"nb":24,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["EC%3A1.12.98.4","sulfhydrogenase"],["EC%3A1.13.11.55","sulfur oxygenase/reductase"],["EC%3A1.8.1.18","NAD(P)H sulfur oxidoreductase (CoA-dependent)"],["EC%3A1.8.1.19","sulfide dehydrogenase"],["EC%3A1.8.2.3","sulfide-cytochrome-c reductase (flavocytochrome c)"],["EC%3A1.8.2.7","thiocyanate desulfurase"]]},{"id":"CHEBI:17997","l":"dinitrogen","na":12,"nb":18,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["EC%3A1.18.6.1","nitrogenase"],["EC%3A1.18.6.2","vanadium-dependent nitrogenase"],["EC%3A1.19.6.1","nitrogenase (flavodoxin)"],["EC%3A1.7.2.4","nitrous-oxide reductase"],["EC%3A1.7.2.8","hydrazine dehydrogenase"],["RHEA%3A79967","3-diazoavenalumate + NADH + H(+) = avenalumate + N2 + NAD(+)"]]},{"id":"GO:0044403","l":"biological process involved in symbiotic interaction","na":19,"nb":11,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["GO%3A0036377","arbuscular mycorrhizal association"],["GO%3A0051701","biological process involved in interaction with host"],["GO%3A0051702","biological process involved in interaction with symbiont"],["GO%3A0044403","biological process involved in symbiotic interaction"],["GO%3A0075733","intracellular transport of virus"],["GO%3A0044399","multi-species biofilm formation"]]},{"id":"GO:0045493","l":"xylan catabolic process","na":11,"nb":19,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["GO%3A2000888","arabinoxylan-containing compound catabolic process"],["GO%3A2000886","glucuronoxylan catabolic process"],["GO%3A0045493","xylan catabolic process"],["NCBIfam%3ANF042968","acetylxylan esterase AxeA1"],["NCBIfam%3ANF041579","beta-xylosidase"],["NCBIfam%3ANF042969","bifunctional acetylxylan esterase/glucomannan deacetylase AxeC2"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":11,"nb":18,"a":[["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"]],"b":[["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["Pfam%3APF14562","Restriction endonuclease BglI"],["Pfam%3APF09195","Restriction endonuclease BglII/BglIII"],["Pfam%3APF09208","Restriction endonuclease MspI"]]},{"id":"CHEBI:16134","l":"ammonia","na":13,"nb":11,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["TCDB%3A1.A.11","The Ammonium Transporter Channel (Amt) Family"],["MCSA%3A376","adenosine deaminase"],["MCSA%3A75","aspartate-ammonia ligase"],["MCSA%3A449","cystathionine beta-lyase"],["MCSA%3A97","cytidine deaminase"],["MCSA%3A710","cytosine deaminase (bacterial)"]]},{"id":"CHEBI:17790","l":"methanol","na":10,"nb":86,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"]],"b":[["EC%3A1.1.1.244","methanol dehydrogenase"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.99.37","methanol dehydrogenase (nicotinoprotein)"],["EC%3A1.14.13.25","methane monooxygenase (soluble)"],["EC%3A1.14.14.117","aflatoxin B synthase"]]},{"id":"CHEBI:29036","l":"copper(2+)","na":10,"nb":40,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29036","requires copper(2+)"],["EC%3A1.1.9.1","alcohol dehydrogenase (azurin)"],["EC%3A1.16.3.4","cuproxidase"],["EC%3A1.17.9.1","4-methylphenol dehydrogenase (hydroxylating)"],["EC%3A1.17.9.2","(+)-pinoresinol hydroxylase"],["EC%3A1.20.9.1","arsenate reductase (azurin)"]]},{"id":"CHEBI:17272","l":"propionate","na":9,"nb":34,"a":[["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"]],"b":[["EC%3A1.3.1.125","acrylate reductase"],["EC%3A2.7.2.15","propionate kinase"],["EC%3A2.8.3.1","propionate CoA-transferase"],["EC%3A2.8.3.27","propanoyl-CoA:succinate CoA transferase"],["EC%3A4.1.3.32","2,3-dimethylmalate lyase"],["EC%3A6.2.1.13","acetate--CoA ligase (ADP-forming)"]]},{"id":"CHEBI:28885","l":"butan-1-ol","na":9,"nb":16,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["EC%3A1.1.2.9","1-butanol dehydrogenase (cytochrome c)"],["EC%3A1.1.5.11","1-butanol dehydrogenase (quinone)"],["EC%3A1.14.13.230","butane monooxygenase (soluble)"],["RHEA%3A64672","2-(methylsulfanyl)acetyl-CoA + butan-1-ol = butyl 2-(methylsulfanyl)acetate + CoA"],["RHEA%3A64676","3-(methylsulfanyl)propanoyl-CoA + butan-1-ol = butyl 3-(methylsulfanyl)propanoate + CoA"],["RHEA%3A43432","butan-1-ol + 2 Fe(III)-[cytochrome c] = butanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"]]},{"id":"GO:0050832","l":"defense response to fungus","na":9,"nb":15,"a":[["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"]],"b":[["GO%3A0019732","antifungal humoral response"],["GO%3A0061760","antifungal innate immune response"],["GO%3A0050832","defense response to fungus"],["NCBIfam%3ANF013159","Barwin family"],["InterPro%3AIPR018226","Barwin, conserved site"],["InterPro%3AIPR001153","Barwin domain"]]},{"id":"GO:0042742","l":"defense response to bacterium","na":8,"nb":53,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"]],"b":[["ComplexPortal%3ACPX-10317","Interleukin-26 complex"],["GO%3A0019731","antibacterial humoral response"],["GO%3A0140367","antibacterial innate immune response"],["GO%3A0042742","defense response to bacterium"],["GO%3A0050829","defense response to Gram-negative bacterium"],["GO%3A0050830","defense response to Gram-positive bacterium"]]},{"id":"GO:0006805","l":"xenobiotic metabolic process","na":8,"nb":38,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Sphingobium_Nitrososphaera_Phenanthrene_Carbon_SynCom.html","Sphingobium-Nitrososphaera Phenanthrene-Carbon SynCom"]],"b":[["GO%3A0018872","arsonoacetate metabolic process"],["GO%3A0018890","cyanamide metabolic process"],["GO%3A0018892","cyclohexylsulfamate metabolic process"],["GO%3A0018905","dimethyl ether metabolic process"],["GO%3A0018909","dodecyl sulfate metabolic process"],["GO%3A0042197","halogenated hydrocarbon metabolic process"]]},{"id":"GO:0009061","l":"anaerobic respiration","na":8,"nb":36,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["ComplexPortal%3ACPX-4841","Anaerobic glycerol-3-phosphate dehydrogenase complex"],["ComplexPortal%3ACPX-317","Formate hydrogenlyase-H/Hydrogenase-3 complex"],["ComplexPortal%3ACPX-6028","Formate hydrogenlyase-H/Hydrogenase-4 complex"],["ComplexPortal%3ACPX-281","Hydrogenase-1 complex"],["ComplexPortal%3ACPX-282","Hydrogenase-2 complex"],["ComplexPortal%3ACPX-3447","NapAB nitrate reductase complex"]]},{"id":"GO:0010038","l":"response to metal ion","na":8,"nb":34,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["GO%3A0071248","cellular response to metal ion"],["GO%3A0010044","response to aluminum ion"],["GO%3A0046686","response to cadmium ion"],["GO%3A0051592","response to calcium ion"],["GO%3A0010164","response to cesium ion"],["GO%3A0032025","response to cobalt ion"]]},{"id":"GO:0009372","l":"quorum sensing","na":8,"nb":21,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["ComplexPortal%3ACPX-4315","Autoinducer-2 ABC transporter complex"],["GO%3A0120218","host interaction involved in quorum sensing"],["GO%3A0009372","quorum sensing"],["NCBIfam%3ANF052393","acyl-homoserine-lactone synthase"],["NCBIfam%3ANF008187","autoinducer-2 kinase"],["NCBIfam%3ANF010444","autoinducer-binding transcriptional regulator TraR"]]},{"id":"CHEBI:18385","l":"thiamine(1+)","na":8,"nb":19,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["EC%3A1.1.3.23","thiamine oxidase"],["EC%3A2.5.1.2","thiamine pyridinylase"],["EC%3A2.7.1.89","thiamine kinase"],["EC%3A2.7.6.2","thiamine diphosphokinase"],["EC%3A3.1.3.100","thiamine phosphate phosphatase"],["EC%3A3.5.99.2","aminopyrimidine aminohydrolase"]]},{"id":"CHEBI:33709","l":"amino acid","na":12,"nb":8,"a":[["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.23","The Dicarboxylate/Amino Acid:Cation (Na+ or H+) Symporter (DAACS) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A1.V.1","The Filamentous Cyanobacterial Septal Pore (Septum) Family"],["TCDB%3A1.A.24","The Gap Junction-forming Connexin (Connexin) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"GO:0015947","l":"methane metabolic process","na":10,"nb":8,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"]],"b":[["GO%3A0046188","methane catabolic process"],["GO%3A0015947","methane metabolic process"],["GO%3A0015948","methanogenesis"],["NCBIfam%3ANF014960","Methane monooxygenase, hydrolase gamma chain"],["Pfam%3APF02964","Methane monooxygenase, hydrolase gamma chain"],["InterPro%3AIPR015952","Methane monooxygenase, gamma chain, domain 1"]]},{"id":"CHEBI:15361","l":"pyruvate","na":7,"nb":410,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15361","requires pyruvate"],["EC%3A1.1.1.27","L-lactate dehydrogenase"],["EC%3A1.1.1.28","D-lactate dehydrogenase"],["EC%3A1.1.1.38","malate dehydrogenase (oxaloacetate-decarboxylating)"],["EC%3A1.1.1.39","malate dehydrogenase (decarboxylating)"],["EC%3A1.1.1.40","malate dehydrogenase (oxaloacetate-decarboxylating) (NADP(+))"]]},{"id":"GO:0040007","l":"growth","na":34,"nb":7,"a":[["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Cultivated_Meat_Contaminant_SynCom.html","Cultivated Meat Contaminant SynCom"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["GO%3A0007117","budding cell bud growth"],["GO%3A0016049","cell growth"],["GO%3A0048589","developmental growth"],["GO%3A0030447","filamentous growth"],["GO%3A0040007","growth"],["GO%3A0080190","lateral growth"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":7,"nb":32,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"]],"b":[["Pfam%3APF14535","AMP-binding enzyme C-terminal domain"],["Pfam%3APF13442","Cytochrome C oxidase, cbb3-type, subunit III"],["Pfam%3APF22247","Catechol 2,3-dioxygenase-like N-terminal domain"],["Pfam%3APF25371","Domain of unknown function (DUF7884)"],["Pfam%3APF19301","LigXa C-terminal domain like"],["Pfam%3APF12729","Four helix bundle sensory module for signal transduction"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":7,"nb":28,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["Pfam%3APF08878","HamA"],["Pfam%3APF05791","Bacillus haemolytic enterotoxin (HBL)"],["Pfam%3APF10803","Spore germination GerPB"],["Pfam%3APF10737","Spore germination protein GerPC"],["Pfam%3APF10970","Spore germination protein GerPE"],["Pfam%3APF07486","Cell Wall Hydrolase"]]},{"id":"GO:0042710","l":"biofilm formation","na":26,"nb":7,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["GO%3A0042710","biofilm formation"],["GO%3A0044399","multi-species biofilm formation"],["GO%3A0044010","single-species biofilm formation"],["GO%3A0090605","submerged biofilm formation"],["GO%3A0090604","surface biofilm formation"],["Reactome%3AR-HSA-9931953","Biofilm formation"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":7,"nb":20,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"]],"b":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"],["Pfam%3APF18173","Bacterial HORMA domain 2"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["Pfam%3APF27322","Cap8 HORMA domain"],["Pfam%3APF01526","Tn3 transposase DDE domain"]]},{"id":"GO:0019420","l":"dissimilatory sulfate reduction","na":16,"nb":7,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["DVM_Triculture.html","DVM Tri-culture"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"]],"b":[["GO%3A0019420","dissimilatory sulfate reduction"],["NCBIfam%3ATIGR02061","adenylyl-sulfate reductase subunit alpha"],["NCBIfam%3ATIGR02060","adenylyl-sulfate reductase subunit beta"],["NCBIfam%3ATIGR02066","dissimilatory-type sulfite reductase subunit beta"],["NCBIfam%3ANF045796","sulfate reduction electron transfer complex DsrMKJOP subunit DsrK"],["NCBIfam%3ANF045797","sulfate reduction electron transfer complex DsrMKJOP subunit DsrO"]]},{"id":"GO:0009056","l":"catabolic process","na":6,"nb":109,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"],["Wetland_Oxygen_Sulfate_GHG_Microcosm_Community.html","Wetland Oxygen-Sulfate Greenhouse Gas Microcosm Community"]],"b":[["GO%3A0018911","1,2,4-trichlorobenzene catabolic process"],["GO%3A0019261","1,4-dichlorobenzene catabolic process"],["GO%3A0046302","2-chloro-N-isopropylacetanilide catabolic process"],["GO%3A1901851","7,8-didemethyl-8-hydroxy-5-deazariboflavin catabolic process"],["GO%3A0006581","acetylcholine catabolic process"],["GO%3A0046185","aldehyde catabolic process"]]},{"id":"CHEBI:17754","l":"glycerol","na":6,"nb":95,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"]],"b":[["EC%3A1.1.1.156","glycerol 2-dehydrogenase (NADP(+))"],["EC%3A1.1.1.372","D/L-glyceraldehyde reductase"],["EC%3A1.1.1.6","glycerol dehydrogenase"],["EC%3A1.1.1.72","glycerol dehydrogenase (NADP(+))"],["EC%3A1.1.99.22","glycerol dehydrogenase (acceptor)"],["EC%3A2.4.1.332","1,2-alpha-glucosylglycerol phosphorylase"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":6,"nb":93,"a":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17544","requires hydrogencarbonate"],["EC%3A1.13.11.73","methylphosphonate synthase"],["EC%3A1.2.1.27","methylmalonate-semialdehyde dehydrogenase (CoA acylating)"],["EC%3A2.5.1.120","aminodeoxyfutalosine synthase"],["EC%3A2.5.1.143","pyridinium-3,5-biscarboxylic acid mononucleotide synthase"],["EC%3A2.7.2.2","carbamate kinase"]]},{"id":"GO:0006979","l":"response to oxidative stress","na":6,"nb":50,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["ComplexPortal%3ACPX-9082","19S-20S-PA28-alphabeta hybrid proteasome complex"],["ComplexPortal%3ACPX-9085","19S-20S-PA28-gamma hybrid proteasome complex"],["ComplexPortal%3ACPX-8806","20S proteasome complex"],["ComplexPortal%3ACPX-4862","Alkyl hydroperoxide reductase complex"],["ComplexPortal%3ACPX-8842","PA28-alphabeta double-capped 20S proteasome complex"],["ComplexPortal%3ACPX-9002","PA28-alphabeta single-capped 20S proteasome complex"]]},{"id":"CHEBI:17245","l":"carbon monoxide","na":6,"nb":31,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Subsurface_Carboxydocella_CO_Aquifer_Community.html","Subsurface Carboxydocella CO-Oxidation Aquifer Community"]],"b":[["EC%3A1.13.11.24","quercetin 2,3-dioxygenase"],["EC%3A1.13.11.47","3-hydroxy-4-oxoquinoline 2,4-dioxygenase"],["EC%3A1.13.11.48","3-hydroxy-2-methylquinolin-4-one 2,4-dioxygenase"],["EC%3A1.13.11.53","acireductone dioxygenase (Ni(2+)-requiring)"],["EC%3A1.14.14.18","heme oxygenase (biliverdin-producing)"],["EC%3A1.14.15.20","heme oxygenase (biliverdin-producing, ferredoxin)"]]},{"id":"CHEBI:18246","l":"(1->4)-beta-D-glucan","na":25,"nb":6,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"]],"b":[["EC%3A2.4.1.12","cellulose synthase (UDP-forming)"],["EC%3A2.4.1.29","cellulose synthase (GDP-forming)"],["EC%3A2.4.1.49","cellodextrin phosphorylase"],["RHEA%3A17797","[(1->4)-beta-D-glucosyl](n) + GDP-alpha-D-glucose = [(1->4)-beta-D-glucosyl](n+1) + GDP + H(+)"],["RHEA%3A23024","[(1->4)-beta-D-glucosyl](n) + phosphate = [(1->4)-beta-D-glucosyl](n-1) + alpha-D-glucose 1-phosphate"],["RHEA%3A19929","[(1->4)-beta-D-glucosyl](n) + UDP-alpha-D-glucose = [(1->4)-beta-D-glucosyl](n+1) + UDP + H(+)"]]},{"id":"GO:0009060","l":"aerobic respiration","na":6,"nb":25,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Soil_CPR_Nanoarchaea_Rare_Biosphere_Community.html","Soil CPR Bacteria and Nanoarchaea Rare-Biosphere Community"]],"b":[["ComplexPortal%3ACPX-266","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-577","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-319","Trimethylamine-N-oxide reductase TorAC complex"],["GO%3A0019646","aerobic electron transport chain"],["GO%3A0009060","aerobic respiration"],["GO%3A0019409","aerobic respiration, using ammonia as electron donor"]]},{"id":"CHEBI:17057","l":"cellobiose","na":6,"nb":19,"a":[["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["Yarrowia_lipolytica_Division_of_Labor_Lipid_Consortium.html","Yarrowia lipolytica Division-of-Labor Lipid Consortium"]],"b":[["EC%3A1.1.3.5","hexose oxidase"],["EC%3A1.1.99.18","cellobiose dehydrogenase (acceptor)"],["EC%3A2.4.1.20","cellobiose phosphorylase"],["EC%3A2.7.1.205","protein-N(pi)-phosphohistidine--D-cellobiose phosphotransferase"],["EC%3A2.7.1.85","beta-glucoside kinase"],["EC%3A5.1.3.11","cellobiose epimerase"]]},{"id":"CHEBI:49786","l":"nickel(2+)","na":6,"nb":10,"a":[["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_49786","requires nickel(2+)"],["EC%3A4.99.1.11","sirohydrochlorin nickelchelatase"],["EC%3A4.99.1.12","pyridinium-3,5-bisthiocarboxylic acid mononucleotide nickel chelatase"],["EC%3A7.2.2.11","ABC-type Ni(2+) transporter"],["RHEA%3A29831","Ni(2+)(in) = Ni(2+)(out)"],["RHEA%3A15557","Ni(2+)(out) + ATP + H2O = Ni(2+)(in) + ADP + phosphate + H(+)"]]},{"id":"GO:0046274","l":"lignin catabolic process","na":6,"nb":10,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"],["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"],["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["GO%3A1990487","anaerobic lignin catabolic process"],["GO%3A1901062","guaiacyl lignin catabolic process"],["GO%3A0046274","lignin catabolic process"],["GO%3A1901059","p-hydroxyphenyl lignin catabolic process"],["GO%3A1901065","syringal lignin catabolic process"],["NCBIfam%3ANF042997","beta-etherase"]]},{"id":"GO:0009877","l":"nodulation","na":6,"nb":8,"a":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"],["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["GO%3A0009877","nodulation"],["NCBIfam%3ATIGR04243","chitooligosaccharide deacetylase NodB"],["NCBIfam%3ATIGR04242","chitooligosaccharide synthase NodC"],["NCBIfam%3ANF017620","HrpF/NolX family T3SS translocon protein"],["NCBIfam%3ATIGR04245","NodA family N-acyltransferase"],["NCBIfam%3ANF014526","Nodulation protein A (NodA)"]]},{"id":"CHEBI:18153","l":"ethene","na":7,"nb":6,"a":[["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"]],"b":[["EC%3A1.13.12.19","2-oxoglutarate dioxygenase (ethylene-forming)"],["EC%3A1.14.17.4","aminocyclopropanecarboxylate oxidase"],["RHEA%3A23640","1-aminocyclopropane-1-carboxylate + L-ascorbate + O2 = ethene + L-dehydroascorbate + hydrogen cyanide + CO2 + 2 H2O"],["RHEA%3A81439","2-(methylsulfanyl)ethanol + AH2 = ethene + methanethiol + A + H2O"],["RHEA%3A31523","2-oxoglutarate + O2 + 2 H(+) = ethene + 3 CO2 + H2O"],["RHEA%3A68004","chloroethene + AH2 = ethene + chloride + A + H(+)"]]},{"id":"GO:0006629","l":"lipid metabolic process","na":5,"nb":81,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"]],"b":[["ComplexPortal%3ACPX-1381","NVJ1-VAC8 nucleus-vacuole junction complex"],["GO%3A0046485","ether lipid metabolic process"],["GO%3A1901568","fatty acid derivative metabolic process"],["GO%3A0006631","fatty acid metabolic process"],["GO%3A0046486","glycerolipid metabolic process"],["GO%3A0006720","isoprenoid metabolic process"]]},{"id":"GO:0030001","l":"metal ion transport","na":5,"nb":66,"a":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["GO%3A0015690","aluminum cation transport"],["GO%3A0006816","calcium ion transport"],["GO%3A0015692","lead ion transport"],["GO%3A0010351","lithium ion transport"],["GO%3A0015693","magnesium ion transport"],["GO%3A0030001","metal ion transport"]]},{"id":"GO:0006935","l":"chemotaxis","na":5,"nb":64,"a":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["SynCom_MetG2_Rhizobacteria_Sugarcane_Stress_Resilience.html","SynCom MetG2 Rhizobacteria Sugarcane Stress Resilience"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"],["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009454","aerotaxis"]]},{"id":"GO:0006635","l":"fatty acid beta-oxidation","na":5,"nb":32,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["ComplexPortal%3ACPX-3964","fadBA fatty acid oxidation complex, aerobic conditions"],["ComplexPortal%3ACPX-3966","fadJI fatty acid oxidation complex, anaerobic conditions"],["ComplexPortal%3ACPX-6245","Mitochondrial trifunctional enzyme complex"],["GO%3A0006635","fatty acid beta-oxidation"],["GO%3A0033539","fatty acid beta-oxidation using acyl-CoA dehydrogenase"],["GO%3A0033540","fatty acid beta-oxidation using acyl-CoA oxidase"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":5,"nb":20,"a":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["Pfam%3APF16822","SGNH hydrolase-like domain, acetyltransferase AlgX"],["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"],["Pfam%3APF11182","Alginate O-acetyl transferase AlgF"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF27129","Functional amyloid protein FapB/FapC family"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":5,"nb":12,"a":[["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF02085","Class III cytochrome C family"],["Pfam%3APF06397","Desulfoferrodoxin, N-terminal domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["Pfam%3APF12797","4Fe-4S binding domain"],["Pfam%3APF06180","Cobalt chelatase (CbiK)"]]},{"id":"NCBITaxon:818","l":"Bacteroides thetaiotaomicron","na":5,"nb":9,"a":[["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["Pfam%3APF09093","Lyase, catalytic"],["TED%3AAF-A0A174W9M0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A174W9M0-F1-model_v4_TED01"],["TED%3AAF-A0A679HCU6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A679HCU6-F1-model_v4_TED01"],["TED%3AAF-A0A139L295-F1-model_v4_TED04","TED novel fold AF-A0A139L295-F1-model_v4_TED04"],["TED%3AAF-A0A174QBB7-F1-model_v4_TED02","TED novel fold AF-A0A174QBB7-F1-model_v4_TED02"],["TED%3AAF-A0A679H9T4-F1-model_v4_TED03","TED novel fold AF-A0A679H9T4-F1-model_v4_TED03"]]},{"id":"GO:0071941","l":"nitrogen cycle metabolic process","na":5,"nb":8,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["GO%3A0019409","aerobic respiration, using ammonia as electron donor"],["GO%3A0019331","anaerobic respiration, using ammonium as electron donor"],["GO%3A0019333","denitrification pathway"],["GO%3A0042128","nitrate assimilation"],["GO%3A0071941","nitrogen cycle metabolic process"],["GO%3A0009399","nitrogen fixation"]]},{"id":"GO:0005986","l":"sucrose biosynthetic process","na":7,"nb":5,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"],["Synechococcus_Bacillus_SPC.html","Synechococcus-Bacillus Synthetic Photosynthetic Consortium"],["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"],["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"],["Synechococcus_Saccharomyces_SPC.html","Synechococcus-Saccharomyces Synthetic Photosynthetic Consortium"]],"b":[["GO%3A0005986","sucrose biosynthetic process"],["NCBIfam%3ANF020061","Sucrose-6-phosphate phosphohydrolase C-terminal"],["NCBIfam%3ATIGR01485","sucrose-phosphate phosphatase"],["InterPro%3AIPR013679","Sucrose-phosphatase, C-terminal"],["Pfam%3APF08472","Sucrose-6-phosphate phosphohydrolase C-terminal"]]},{"id":"CHEBI:15377","l":"water","na":4,"nb":9376,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["EC%3A1.1.1.115","ribose 1-dehydrogenase (NADP(+))"],["EC%3A1.1.1.132","GDP-mannose 6-dehydrogenase"],["EC%3A1.1.1.136","UDP-N-acetylglucosamine 6-dehydrogenase"],["EC%3A1.1.1.186","dTDP-galactose 6-dehydrogenase"],["EC%3A1.1.1.192","long-chain-alcohol dehydrogenase"],["EC%3A1.1.1.205","IMP dehydrogenase"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":4,"nb":680,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16240","requires hydrogen peroxide"],["EC%3A1.1.3.10","pyranose oxidase"],["EC%3A1.1.3.11","L-sorbose oxidase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.3.13","alcohol oxidase"],["EC%3A1.1.3.15","(S)-2-hydroxy-acid oxidase"]]},{"id":"GO:0006520","l":"amino acid metabolic process","na":4,"nb":155,"a":[["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["GO%3A0043038","amino acid activation"],["GO%3A0008652","amino acid biosynthetic process"],["GO%3A0009063","amino acid catabolic process"],["GO%3A0006520","amino acid metabolic process"],["GO%3A0006525","arginine metabolic process"],["GO%3A0009072","aromatic amino acid metabolic process"]]},{"id":"GO:0009236","l":"cobalamin biosynthetic process","na":4,"nb":75,"a":[["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["GO%3A0009236","cobalamin biosynthetic process"],["proteintraitsmech%3ASEED_SUBSYSTEM_Cobalamin_synthesis","Cobalamin synthesis"],["NCBIfam%3ATIGR02476","5,6-dimethylbenzimidazole synthase"],["NCBIfam%3ANF011580","adenosylcobalamin/alpha-ribazole phosphatase"],["NCBIfam%3ANF014685","adenosylcobinamide-GDP ribazoletransferase"],["NCBIfam%3ATIGR00317","adenosylcobinamide-GDP ribazoletransferase"]]},{"id":"GO:0008610","l":"lipid biosynthetic process","na":4,"nb":61,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"],["Yarrowia_lipolytica_Division_of_Labor_Lipid_Consortium.html","Yarrowia lipolytica Division-of-Labor Lipid Consortium"]],"b":[["GO%3A1900557","emericellamide biosynthetic process"],["GO%3A0008611","ether lipid biosynthetic process"],["GO%3A0006633","fatty acid biosynthetic process"],["GO%3A1901570","fatty acid derivative biosynthetic process"],["GO%3A0045017","glycerolipid biosynthetic process"],["GO%3A0009247","glycolipid biosynthetic process"]]},{"id":"CHEBI:16199","l":"urea","na":4,"nb":48,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["EC%3A3.5.1.5","urease"],["EC%3A3.5.1.95","N-malonylurea hydrolase"],["EC%3A3.5.3.1","arginase"],["EC%3A3.5.3.10","D-arginase"],["EC%3A3.5.3.11","agmatinase"],["EC%3A3.5.3.14","amidinoaspartase"]]},{"id":"CHEBI:29105","l":"zinc(2+)","na":4,"nb":20,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29105","requires zinc(2+)"],["EC%3A7.2.2.12","P-type Zn(2+) transporter"],["EC%3A7.2.2.20","ABC-type Zn(2+) transporter"],["RHEA%3A62264","selenite(out) + Zn(2+)(out) + hydrogencarbonate(out) = selenite(in) + Zn(2+)(in) + hydrogencarbonate(in)"],["RHEA%3A72627","Zn(2+)(in) + 2 H(+)(out) = Zn(2+)(out) + 2 H(+)(in)"],["RHEA%3A20621","Zn(2+)(in) + ATP + H2O = Zn(2+)(out) + ADP + phosphate + H(+)"]]},{"id":"GO:0044003","l":"symbiont-mediated perturbation of host process","na":4,"nb":20,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"]],"b":[["GO%3A0140418","effector-mediated perturbation of host process by symbiont"],["GO%3A0098676","symbiont-mediated modulation of host virulence"],["GO%3A0044068","symbiont-mediated perturbation of host cellular process"],["GO%3A0052031","symbiont-mediated perturbation of host defense response"],["GO%3A0044003","symbiont-mediated perturbation of host process"],["GO%3A0033635","symbiont-mediated perturbation of host response to abiotic stimulus"]]},{"id":"CHEBI:16899","l":"D-mannitol","na":4,"nb":17,"a":[["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["EC%3A1.1.1.138","mannitol 2-dehydrogenase (NADP(+))"],["EC%3A1.1.1.255","mannitol dehydrogenase"],["EC%3A1.1.1.67","mannitol 2-dehydrogenase"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.3.40","D-mannitol oxidase"],["EC%3A2.7.1.197","protein-N(pi)-phosphohistidine--D-mannitol phosphotransferase"]]},{"id":"GO:0019333","l":"denitrification pathway","na":11,"nb":4,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"]],"b":[["GO%3A0019333","denitrification pathway"],["NCBIfam%3ATIGR02161","periplasmic nitrate (or nitrite) reductase c-type cytochrome, NapC/NirT family"],["NCBIfam%3ATIGR04244","TAT-dependent nitrous-oxide reductase"],["NCBIfam%3ATIGR04246","Sec-dependent nitrous-oxide reductase"]]},{"id":"GO:0019543","l":"propionate catabolic process","na":4,"nb":11,"a":[["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["GO%3A0019543","propionate catabolic process"],["NCBIfam%3ATIGR02334","2-methylaconitate cis-trans isomerase PrpF"],["NCBIfam%3ATIGR02330","2-methylcitrate dehydratase"],["NCBIfam%3ANF006943","bifunctional 2-methylcitrate dehydratase/aconitate hydratase"],["NCBIfam%3ANF009006","bifunctional 2-methylcitrate synthase/citrate synthase"],["NCBIfam%3ATIGR02333","Fe/S-dependent 2-methylisocitrate dehydratase AcnD"]]},{"id":"CHEBI:17029","l":"chitin","na":4,"nb":8,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]],"b":[["EC%3A2.4.1.16","chitin synthase"],["EC%3A3.5.1.41","chitin deacetylase"],["RHEA%3A85463","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-1)-N-acetyl-alpha-D-glucosamine"],["RHEA%3A50672","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-2) + N,N'-diacetylchitobiose"],["RHEA%3A85003","[(1->4)-N-acetyl-beta-D-glucosaminyl](n)-N-acetyl-alpha-D-glucosamine + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n) + N-acetyl-alpha-D-glucosamine"],["RHEA%3A10464","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + n H2O = chitosan + n acetate"]]},{"id":"CHEBI:30411","l":"cobalamin","na":7,"nb":4,"a":[["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_30411","requires cobalamin"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.A.54","The Lysosomal Cobalamin (B12) Transporter (L-B12T) Family"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]]},{"id":"CHEBI:64709","l":"organic acid","na":7,"nb":4,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["TCDB%3A2.A.28","The Bile Acid:Na+ Symporter (BASS) Family"],["TCDB%3A2.A.23","The Dicarboxylate/Amino Acid:Cation (Na+ or H+) Symporter (DAACS) Family"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.25","The Outer Membrane Porin (Opr) Family"]]},{"id":"CHEBI:28509","l":"chloroethene","na":6,"nb":4,"a":[["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["RHEA%3A68000","1,1-dichloroethene + AH2 = chloroethene + chloride + A + H(+)"],["RHEA%3A68004","chloroethene + AH2 = ethene + chloride + A + H(+)"],["RHEA%3A83555","chloroethene + reduced [NADPH--hemoprotein reductase] + O2 = chloroethylene oxide + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A67996","(Z)-1,2-dichloroethene + AH2 = chloroethene + chloride + A + H(+)"]]},{"id":"GO:1903457","l":"lactate catabolic process","na":6,"nb":4,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["GO%3A1990484","aerobic lactate catabolic process"],["GO%3A1990485","anaerobic lactate catabolic process"],["GO%3A1903457","lactate catabolic process"],["NCBIfam%3ANF049975","D-2-hydroxyglutarate dehydrogenase YdiJ"]]},{"id":"CHEBI:16670","l":"peptide","na":4,"nb":5,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A9.B.46","The Staphylococcus aureus Putative Quorum Sensing Peptide Exporter, AgrB (AgrB) Family"],["TCDB%3A3.A.25","The Symbiont-specific ERAD-like Machinery (SELMA) Family"],["proteintraitsmech%3ABIOLIP_PEPTIDE","peptide-binding site"]]},{"id":"GO:0019541","l":"propionate metabolic process","na":4,"nb":4,"a":[["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["GO%3A0019542","propionate biosynthetic process"],["GO%3A0019543","propionate catabolic process"],["GO%3A0019541","propionate metabolic process"],["GO%3A0019657","pyruvate fermentation to propionate"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":3,"nb":212,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["EC%3A1.1.1.244","methanol dehydrogenase"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.99.37","methanol dehydrogenase (nicotinoprotein)"],["EC%3A1.13.11.94","4-vinylguaiacol dioxygenase"],["EC%3A1.14.11.27","[histone H3]-dimethyl-L-lysine(36) demethylase"]]},{"id":"CHEBI:17359","l":"sulfite","na":3,"nb":109,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"]],"b":[["EC%3A1.13.11.18","persulfide dioxygenase"],["EC%3A1.13.11.55","sulfur oxygenase/reductase"],["EC%3A1.14.11.17","taurine dioxygenase"],["EC%3A1.14.12.8","4-sulfobenzoate 3,4-dioxygenase"],["EC%3A1.14.13.111","methanesulfonate monooxygenase (NADH)"],["EC%3A1.14.14.181","sulfoquinovose monooxygenase"]]},{"id":"GO:0007155","l":"cell adhesion","na":3,"nb":102,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"]],"b":[["ComplexPortal%3ACPX-12912","BCAR1-CRK-SH2D3C, focal adhesion regulator complex"],["ComplexPortal%3ACPX-1737","Collagen type VII trimer"],["ComplexPortal%3ACPX-2966","Collagen type VII trimer"],["ComplexPortal%3ACPX-2855","Fimbrial Tip Complex FimFGH"],["ComplexPortal%3ACPX-450","Multimerin-2 complex"],["ComplexPortal%3ACPX-451","Multimerin-2 complex"]]},{"id":"GO:0008652","l":"amino acid biosynthetic process","na":3,"nb":69,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"]],"b":[["GO%3A0008153","4-aminobenzoate biosynthetic process"],["GO%3A0006523","alanine biosynthetic process"],["GO%3A0008652","amino acid biosynthetic process"],["GO%3A0043102","amino acid salvage"],["GO%3A0019483","beta-alanine biosynthetic process"],["GO%3A0035499","carnosine biosynthetic process"]]},{"id":"GO:0010467","l":"gene expression","na":3,"nb":41,"a":[["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["GO%3A0001816","cytokine production"],["GO%3A0010467","gene expression"],["GO%3A1901148","gene expression involved in extracellular matrix organization"],["GO%3A0140053","mitochondrial gene expression"],["GO%3A0036162","oxytocin production"],["GO%3A0140899","plastid gene expression"]]},{"id":"CHEBI:17750","l":"glycine betaine","na":3,"nb":33,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["EC%3A1.1.3.17","choline oxidase"],["EC%3A1.13.11.90","[1-hydroxy-2-(trimethylamino)ethyl]phosphonate dioxygenase (glycine- betaine-forming)"],["EC%3A1.14.13.251","glycine betaine monooxygenase"],["EC%3A1.2.1.8","betaine-aldehyde dehydrogenase"],["EC%3A1.21.4.4","betaine reductase"],["EC%3A2.1.1.157","sarcosine/dimethylglycine N-methyltransferase"]]},{"id":"CHEBI:29103","l":"potassium(1+)","na":3,"nb":32,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29103","requires potassium(1+)"],["EC%3A7.2.2.13","Na(+)/K(+)-exchanging ATPase"],["EC%3A7.2.2.19","H(+)/K(+)-exchanging ATPase"],["EC%3A7.2.2.6","P-type K(+) transporter"],["RHEA%3A18353","2 K(+)(out) + 3 Na(+)(in) + ATP + H2O = 2 K(+)(in) + 3 Na(+)(out) + ADP + phosphate + H(+)"],["RHEA%3A69967","Ca(2+)(out) + K(+)(out) + 4 Na(+)(in) = Ca(2+)(in) + K(+)(in) + 4 Na(+)(out)"]]},{"id":"NCBITaxon:3055","l":"Chlamydomonas reinhardtii","na":3,"nb":28,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]],"b":[["Pfam%3APF01333","Apocytochrome F, C-terminal"],["Pfam%3APF16639","Apocytochrome F, N-terminal"],["Pfam%3APF00430","ATP synthase B/B' CF(0)"],["Pfam%3APF00401","ATP synthase, Delta/Epsilon chain, long alpha-helix domain"],["Pfam%3APF21771","CFAP58 central coiled coil"],["Pfam%3APF27956","CFAP99 V-shaped coiled-coil domain"]]},{"id":"GO:0000162","l":"L-tryptophan biosynthetic process","na":3,"nb":22,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"]],"b":[["ComplexPortal%3ACPX-1850","Anthranilate synthase complex"],["ComplexPortal%3ACPX-4783","Anthranilate synthase complex"],["ComplexPortal%3ACPX-3446","TrpAB tryptophan synthase complex"],["GO%3A0000162","L-tryptophan biosynthetic process"],["NCBIfam%3ANF010081","anthranilate synthase component I"],["NCBIfam%3ANF010086","anthranilate synthase component I"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":3,"nb":21,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29108","requires calcium(2+)"],["EC%3A1.13.12.24","calcium-regulated photoprotein"],["EC%3A7.2.2.10","P-type Ca(2+) transporter"],["RHEA%3A72631","3 Li(+)(out) + Ca(2+)(in) = 3 Li(+)(in) + Ca(2+)(out)"],["RHEA%3A55884","[aequorin] + 3 Ca(2+) = [aequorin]--dioxetanone"],["RHEA%3A55888","[aequorin]--dioxetanone = excited state-[aequorin] + CO2"]]},{"id":"GO:0071248","l":"cellular response to metal ion","na":3,"nb":21,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["GO%3A0071275","cellular response to aluminum ion"],["GO%3A0071276","cellular response to cadmium ion"],["GO%3A0071277","cellular response to calcium ion"],["GO%3A0071278","cellular response to cesium ion"],["GO%3A0071279","cellular response to cobalt ion"],["GO%3A0071280","cellular response to copper ion"]]},{"id":"CHEBI:17716","l":"lactose","na":3,"nb":20,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"]],"b":[["EC%3A2.4.1.22","lactose synthase"],["EC%3A2.7.1.207","protein-N(pi)-phosphohistidine--lactose phosphotransferase"],["EC%3A3.2.1.108","lactase"],["EC%3A3.2.1.140","lacto-N-biosidase"],["EC%3A3.2.1.227","N-acetyllactosaminidase"],["RHEA%3A86923","a beta-D-Gal-(1->4)-beta-D-Glc-(1<->1)-Cer(d18:1(4E)) + H2O = lactose + an N-acylsphing-4-enine"]]},{"id":"GO:0045088","l":"regulation of innate immune response","na":3,"nb":19,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["GO%3A0045824","negative regulation of innate immune response"],["GO%3A0045089","positive regulation of innate immune response"],["GO%3A1904248","regulation of age-related resistance"],["GO%3A1905034","regulation of antifungal innate immune response"],["GO%3A0030451","regulation of complement activation, alternative pathway"],["GO%3A0001868","regulation of complement activation, lectin pathway"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":3,"nb":19,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["Pfam%3APF03306","Alpha-acetolactate decarboxylase"],["Pfam%3APF22208","Cas_Csm6 CARF domain"],["Pfam%3APF09659","Cas_Csm6 HEPN domain"],["Pfam%3APF22335","Cas10/Cmr2, second palm domain"],["Pfam%3APF18395","Cas3 C-terminal domain"],["Pfam%3APF18019","Cas3, HD domain"]]},{"id":"CHEBI:17045","l":"dinitrogen oxide","na":3,"nb":13,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"]],"b":[["EC%3A1.7.1.14","nitric oxide reductase [NAD(P)(+), nitrous oxide-forming]"],["EC%3A1.7.2.4","nitrous-oxide reductase"],["EC%3A1.7.2.5","nitric-oxide reductase (cytochrome c)"],["EC%3A1.7.5.2","nitric oxide reductase (menaquinol)"],["RHEA%3A30215","a menaquinol + 2 nitric oxide = nitrous oxide + a menaquinone + H2O"],["RHEA%3A43108","N2 + 2 Fe(III)-[cytochrome c] + H2O = nitrous oxide + 2 Fe(II)-[cytochrome c] + 2 H(+)"]]},{"id":"CHEBI:26271","l":"proline","na":3,"nb":12,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.15","The Betaine/Carnitine/Choline Transporter (BCCT) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"]]},{"id":"GO:0006083","l":"acetate metabolic process","na":3,"nb":12,"a":[["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["GO%3A0019413","acetate biosynthetic process"],["GO%3A0045733","acetate catabolic process"],["GO%3A0006083","acetate metabolic process"],["GO%3A0045122","aflatoxin biosynthetic process"],["GO%3A0019658","bifid shunt"],["GO%3A0019475","L-lysine fermentation"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":3,"nb":12,"a":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["Pfam%3APF17433","Glycosyl hydrolase family 49 N-terminal Ig-like domain"],["PROSITE%3APS00820","Glucoamylase active site region signature"],["PROSITE%3APS00920","Nitrilases / cyanide hydratase signature 1"],["PROSITE%3APS00502","Polygalacturonase active site"],["Pfam%3APF18841","Beta solenoid repeat from Dextranase"],["Pfam%3APF03718","Glycosyl hydrolase family 49"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":10,"nb":3,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["Pfam%3APF14864","Alkyl sulfatase C-terminal"],["Pfam%3APF13816","Haem-containing dehydratase"],["Pfam%3APF14863","Alkyl sulfatase dimerisation"]]},{"id":"CHEBI:16602","l":"trichloroethene","na":9,"nb":3,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["EC%3A1.21.99.5","tetrachloroethene reductive dehalogenase"],["RHEA%3A67992","trichloroethene + AH2 = (Z)-1,2-dichloroethene + chloride + A + H(+)"],["RHEA%3A20353","trichloroethene + chloride + A + H(+) = tetrachloroethene + AH2"]]},{"id":"CHEBI:18367","l":"phosphate(3-)","na":9,"nb":3,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["proteintraitsmech%3ABIOLIP_PO4","PO4-binding site"]]},{"id":"CHEBI:87393","l":"hexan-1-ol","na":3,"nb":9,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["RHEA%3A65480","2-methylbutanoyl-CoA + hexan-1-ol = hexyl 2-methylbutanoate + CoA"],["RHEA%3A79331","hexan-1-ol + 2 Fe(III)-[cytochrome c] = hexanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A65460","hexan-1-ol + acetyl-CoA = hexyl acetate + CoA"],["RHEA%3A65444","hexan-1-ol + butanoyl-CoA = hexyl butanoate + CoA"],["RHEA%3A65484","hexan-1-ol + hexanoyl-CoA = hexyl hexanoate + CoA"],["RHEA%3A60972","hexan-1-ol + NAD(+) = hexanal + NADH + H(+)"]]},{"id":"GO:1990748","l":"cellular detoxification","na":3,"nb":9,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["GO%3A1990748","cellular detoxification"],["GO%3A0140977","cellular detoxification of acetone"],["GO%3A0110095","cellular detoxification of aldehyde"],["GO%3A0140114","cellular detoxification of fluoride"],["GO%3A0140961","cellular detoxification of metal ion"],["GO%3A0070458","cellular detoxification of nitrogen compound"]]},{"id":"GO:0019329","l":"ammonia oxidation","na":8,"nb":3,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"]],"b":[["GO%3A0019409","aerobic respiration, using ammonia as electron donor"],["GO%3A0019329","ammonia oxidation"],["GO%3A0019331","anaerobic respiration, using ammonium as electron donor"]]},{"id":"NCBITaxon:920","l":"Acidithiobacillus ferrooxidans","na":8,"nb":3,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["Pfam%3APF20538","Family of unknown function (DUF6753)"],["PROSITE%3APS01007","Transposases, Mutator family, signature"],["MCSA%3A371","3-isopropylmalate dehydrogenase"]]},{"id":"NCBITaxon:40324","l":"Stenotrophomonas maltophilia","na":3,"nb":7,"a":[["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]],"b":[["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["MCSA%3A258","beta-lactamase (Class B1)"],["TED%3AAF-A0A2U4H7T5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2U4H7T5-F1-model_v4_TED02"],["TED%3AAF-A0A2W6G5X3-F1-model_v4_TED01","TED novel fold AF-A0A2W6G5X3-F1-model_v4_TED01"],["TED%3AAF-A0A2W6IKS3-F1-model_v4_TED02","TED novel fold AF-A0A2W6IKS3-F1-model_v4_TED02"],["TED%3AAF-A0A7D0KRT5-F1-model_v4_TED03","TED novel fold AF-A0A7D0KRT5-F1-model_v4_TED03"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":3,"nb":7,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["Pfam%3APF16376","N-terminal domain of fragilysin"],["MCSA%3A15","beta-lactamase (Class B1)"],["TED%3AAF-A0A412XR06-F1-model_v4_TED03","TED novel fold AF-A0A412XR06-F1-model_v4_TED03"],["TED%3AAF-A0A4V1EUI2-F1-model_v4_TED02","TED novel fold AF-A0A4V1EUI2-F1-model_v4_TED02"],["TED%3AAF-A0A5C6IXH5-F1-model_v4_TED01","TED novel fold AF-A0A5C6IXH5-F1-model_v4_TED01"],["TED%3AAF-A0A5C6L6G9-F1-model_v4_TED02","TED novel fold AF-A0A5C6L6G9-F1-model_v4_TED02"]]},{"id":"CHEBI:15890","l":"5,6-dimethylbenzimidazole","na":3,"nb":6,"a":[["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["EC%3A1.13.11.79","aerobic 5,6-dimethylbenzimidazole synthase"],["EC%3A2.4.2.21","nicotinate-nucleotide--dimethylbenzimidazole phosphoribosyltransferase"],["RHEA%3A11196","5,6-dimethylbenzimidazole + nicotinate beta-D-ribonucleotide = alpha-ribazole 5'-phosphate + nicotinate + H(+)"],["RHEA%3A27345","FMNH2 + O2 = dialurate + 5,6-dimethylbenzimidazole + D-erythrose 4-phosphate + H(+)"],["MCSA%3A79","nicotinate-nucleotide-dimethylbenzimidazole phosphoribosyltransferase"],["proteintraitsmech%3ABIOLIP_DMD","DMD-binding site"]]},{"id":"CHEBI:55474","l":"N-acyl-L-homoserine lactone","na":3,"nb":6,"a":[["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["EC%3A2.3.1.184","acyl-homoserine-lactone synthase"],["EC%3A3.1.1.81","quorum-quenching N-acyl-homoserine lactonase"],["EC%3A3.5.1.97","acyl-homoserine-lactone acylase"],["RHEA%3A10096","a fatty acyl-[ACP] + S-adenosyl-L-methionine = an N-acyl-L-homoserine lactone + S-methyl-5'-thioadenosine + holo-[ACP] + H(+)"],["RHEA%3A22576","an N-acyl-L-homoserine lactone + H2O = an N-acyl-L-homoserine + H(+)"],["RHEA%3A18937","an N-acyl-L-homoserine lactone + H2O = L-homoserine lactone + a carboxylate"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":3,"nb":6,"a":[["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF10779","Haemolysin XhlA"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF08181","DegQ (SacQ) family"],["Pfam%3APF08057","Erythromycin resistance leader peptide"],["Pfam%3APF14867","Lantibiotic alpha"]]},{"id":"NCBITaxon:1667","l":"Arthrobacter sp.","na":3,"nb":6,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["Pfam%3APF14031","Putative serine dehydratase domain"],["Pfam%3APF02449","Beta-galactosidase"],["Pfam%3APF08533","Beta-galactosidase C-terminal domain"],["Pfam%3APF08532","Beta-galactosidase trimerisation domain"],["MCSA%3A25","N-carbamoylsarcosine amidase"],["TED%3AAF-A0A3C2BWN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C2BWN3-F1-model_v4_TED01"]]},{"id":"CHEBI:18310","l":"alkane","na":3,"nb":5,"a":[["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"]],"b":[["EC%3A4.99.1.2","alkylmercury lyase"],["RHEA%3A18777","an alkylmercury + H(+) = an alkane + Hg(2+)"],["MCSA%3A297","alkylmercury lyase"],["MCSA%3A248","chloride peroxidase (cofactor free)"],["MCSA%3A250","chloride peroxidase (heme dependent)"]]},{"id":"GO:0005987","l":"sucrose catabolic process","na":5,"nb":3,"a":[["Synechococcus_Bacillus_SPC.html","Synechococcus-Bacillus Synthetic Photosynthetic Consortium"],["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"],["Synechococcus_Saccharomyces_SPC.html","Synechococcus-Saccharomyces Synthetic Photosynthetic Consortium"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["GO%3A0061704","glycolytic process from sucrose"],["GO%3A0005987","sucrose catabolic process"],["NCBIfam%3ANF006957","fructokinase"]]},{"id":"GO:0006766","l":"vitamin metabolic process","na":3,"nb":5,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["GO%3A0042816","vitamin B6 metabolic process"],["GO%3A0009110","vitamin biosynthetic process"],["GO%3A0009111","vitamin catabolic process"],["GO%3A0006766","vitamin metabolic process"],["Reactome%3AR-HSA-211916","Vitamins"]]},{"id":"GO:0009410","l":"response to xenobiotic stimulus","na":3,"nb":5,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["SkinCom_Synthetic_Skin_Community.html","SkinCom Synthetic Skin Community"]],"b":[["GO%3A0071466","cellular response to xenobiotic stimulus"],["GO%3A0009410","response to xenobiotic stimulus"],["NCBIfam%3ATIGR00957","multi drug resistance-associated protein (MRP)"],["NCBIfam%3ANF018181","R67 dihydrofolate reductase"],["Pfam%3APF06442","R67 dihydrofolate reductase"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":3,"nb":5,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF09711","CRISPR-associated protein (Cas_Csn2)"],["Pfam%3APF06308","23S rRNA methylastransferase leader peptide (ErmCL)"],["MCSA%3A640","kanamycin kinase"]]},{"id":"CHEBI:17015","l":"riboflavin","na":4,"nb":3,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17015","requires riboflavin"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_RBF","RBF-binding site"]]},{"id":"CHEBI:17191","l":"L-isoleucine","na":3,"nb":4,"a":[["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"]],"b":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.26","The Branched Chain Amino Acid:Cation Symporter (LIVCS) Family"],["proteintraitsmech%3ABIOLIP_ILE","ILE-binding site"]]},{"id":"CHEBI:18154","l":"polysaccharide","na":3,"nb":4,"a":[["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["TCDB%3A9.B.97","The Acyltransferase-3/Putative Acetyl-CoA Transporter (AT3AT) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.18","The Outer Membrane Auxiliary (OMA) Protein Family"]]},{"id":"CHEBI:18237","l":"glutamic acid","na":3,"nb":3,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:72813","l":"exopolysaccharide","na":3,"nb":3,"a":[["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.18","The Outer Membrane Auxiliary (OMA) Protein Family"]]},{"id":"GO:0009110","l":"vitamin biosynthetic process","na":3,"nb":3,"a":[["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["GO%3A0042362","fat-soluble vitamin biosynthetic process"],["GO%3A0009110","vitamin biosynthetic process"],["GO%3A0042364","water-soluble vitamin biosynthetic process"]]},{"id":"GO:0098743","l":"cell aggregation","na":3,"nb":3,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["GO%3A0098630","aggregation of unicellular organisms"],["GO%3A0001502","cartilage condensation"],["GO%3A0098743","cell aggregation"]]},{"id":"NCBITaxon:3702","l":"Arabidopsis thaliana","na":2,"nb":18776,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["EC%3A1.1.99.-","With other acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.14.11.-","With 2-oxoglutarate as one donor, and incorporation of one atom each of oxygen into both donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.14.-","With reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen"]]},{"id":"CHEBI:15378","l":"hydron","na":2,"nb":14383,"a":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.1.10","L-xylulose reductase"],["EC%3A1.1.1.100","3-oxoacyl-[acyl-carrier-protein] reductase"],["EC%3A1.1.1.101","acylglycerone-phosphate reductase"],["EC%3A1.1.1.102","3-dehydrosphinganine reductase"],["EC%3A1.1.1.103","L-threonine 3-dehydrogenase"]]},{"id":"CHEBI:30031","l":"succinate(2-)","na":2,"nb":502,"a":[["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["EC%3A1.14.11.1","gamma-butyrobetaine dioxygenase"],["EC%3A1.14.11.10","pyrimidine-deoxynucleoside 1'-dioxygenase"],["EC%3A1.14.11.11","hyoscyamine (6S)-dioxygenase"],["EC%3A1.14.11.12","gibberellin-44 dioxygenase"],["EC%3A1.14.11.13","gibberellin 2beta-dioxygenase"],["EC%3A1.14.11.15","gibberellin 3beta-dioxygenase"]]},{"id":"GO:0010468","l":"regulation of gene expression","na":2,"nb":394,"a":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["ComplexPortal%3ACPX-1129","Atk-1/Akt-2/Sgk-1 protein kinase complex"],["ComplexPortal%3ACPX-5666","CCAAT-binding factor complex, nfya-1 variant"],["ComplexPortal%3ACPX-5667","CCAAT-binding factor complex, nfya-2 variant"],["ComplexPortal%3ACPX-4305","DHIC complex"],["ComplexPortal%3ACPX-3885","sir-2.1-ftt-2 complex"],["ComplexPortal%3ACPX-3886","sir-2.1-par-5 complex"]]},{"id":"CHEBI:17996","l":"chloride","na":2,"nb":196,"a":[["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17996","requires chloride"],["EC%3A1.11.2.2","myeloperoxidase"],["EC%3A1.13.11.49","chlorite O2-lyase"],["EC%3A1.14.12.13","2-halobenzoate 1,2-dioxygenase"],["EC%3A1.14.12.9","4-chlorophenylacetate 3,4-dioxygenase"],["EC%3A1.14.13.50","pentachlorophenol monooxygenase"]]},{"id":"GO:0016032","l":"viral process","na":2,"nb":113,"a":[["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"]],"b":[["GO%3A0075526","cap snatching"],["GO%3A0099015","degradation of host chromosome by virus"],["GO%3A0019043","establishment of viral latency"],["GO%3A0039674","exit of virus from host cell nucleus"],["GO%3A0039700","fusion of viral membrane with host outer nuclear membrane"],["GO%3A0075522","IRES-dependent viral translational initiation"]]},{"id":"GO:0006099","l":"tricarboxylic acid cycle","na":2,"nb":92,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["ComplexPortal%3ACPX-3921","2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-9044","Mitochondrial 2-oxoglutarate dehydrogenase complex,CG1544 variant"],["ComplexPortal%3ACPX-9043","Mitochondrial 2-oxoglutarate dehydrogenase complex, CG33791 variant"],["ComplexPortal%3ACPX-1293","Mitochondrial 2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-9061","Mitochondrial 2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-9042","Mitochondrial 2-oxoglutarate dehydrogenase complex, ODGH variant"]]},{"id":"GO:0009733","l":"response to auxin","na":2,"nb":89,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["ComplexPortal%3ACPX-1523","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK10"],["ComplexPortal%3ACPX-1524","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK11"],["ComplexPortal%3ACPX-1525","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK12"],["ComplexPortal%3ACPX-1526","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK13"],["ComplexPortal%3ACPX-1527","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK14"],["ComplexPortal%3ACPX-1528","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK15"]]},{"id":"GO:0016053","l":"organic acid biosynthetic process","na":2,"nb":83,"a":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["PANTHER%3APTHR43090","1-(5-PHOSPHORIBOSYL)-5-[(5-PHOSPHORIBOSYLAMINO)METHYLIDENEAMINO] IMIDAZOLE-4-CARBOXAMIDE ISOMERASE"],["PANTHER%3APTHR43699","3-DEHYDROQUINATE DEHYDRATASE"],["PANTHER%3APTHR42979","3-ISOPROPYLMALATE DEHYDROGENASE"],["PANTHER%3APTHR20881","3-METHYL-2-OXOBUTANOATE HYDROXYMETHYLTRANSFERASE"],["PANTHER%3APTHR46832","5'-METHYLTHIOADENOSINE/S-ADENOSYLHOMOCYSTEINE NUCLEOSIDASE"],["PANTHER%3APTHR31242","ACETOLACTATE SYNTHASE SMALL SUBUNIT, MITOCHONDRIAL"]]},{"id":"CHEBI:15354","l":"choline","na":2,"nb":78,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["EC%3A1.1.3.17","choline oxidase"],["EC%3A1.1.99.1","choline dehydrogenase"],["EC%3A1.14.15.7","choline monooxygenase"],["EC%3A2.3.1.6","choline O-acetyltransferase"],["EC%3A2.3.1.91","sinapoylglucose--choline O-sinapoyltransferase"],["EC%3A2.7.1.32","choline kinase"]]},{"id":"CHEBI:29806","l":"fumarate(2-)","na":2,"nb":76,"a":[["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["EC%3A1.3.1.6","fumarate reductase (NADH)"],["EC%3A1.3.2.4","fumarate reductase (cytochrome)"],["EC%3A1.3.4.1","fumarate reductase (CoM/CoB)"],["EC%3A1.3.5.1","succinate dehydrogenase"],["EC%3A1.3.98.1","dihydroorotate oxidase (fumarate)"],["EC%3A3.7.1.14","2-hydroxy-6-oxonona-2,4-dienedioate hydrolase"]]},{"id":"CHEBI:15422","l":"ATP","na":2,"nb":68,"a":[["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15422","requires ATP"],["ARO%3A3002628","aad(6)"],["ARO%3A3002601","aadA"],["ARO%3A3004692","aadA10"],["ARO%3A3002611","aadA11"],["ARO%3A3002612","aadA12"]]},{"id":"GO:0006952","l":"defense response","na":2,"nb":62,"a":[["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["ComplexPortal%3ACPX-2833","Camalexin biosynthetic metabolon complex"],["ComplexPortal%3ACPX-25769","TAP antigen peptide transporter complex"],["GO%3A0002209","behavioral defense response"],["GO%3A0006968","cellular defense response"],["GO%3A0052542","defense response by callose deposition"],["GO%3A0052482","defense response by cell wall thickening"]]},{"id":"GO:0019752","l":"carboxylic acid metabolic process","na":2,"nb":59,"a":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"]],"b":[["GO%3A1902056","(25S)-Delta(7)-dafachronate metabolic process"],["GO%3A0006525","arginine metabolic process"],["GO%3A0009072","aromatic amino acid metabolic process"],["GO%3A0018872","arsonoacetate metabolic process"],["GO%3A0120552","branched-chain alpha-keto acid decarboxylation to branched-chain acyl-CoA"],["GO%3A0009081","branched-chain amino acid metabolic process"]]},{"id":"GO:0006865","l":"amino acid transport","na":2,"nb":52,"a":[["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"]],"b":[["GO%3A0015800","acidic amino acid transport"],["GO%3A0043090","amino acid import"],["GO%3A0051933","amino acid neurotransmitter reuptake"],["GO%3A0003333","amino acid transmembrane transport"],["GO%3A0006865","amino acid transport"],["GO%3A0015802","basic amino acid transport"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":51,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF13166","AAA domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF27533","CapK C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"]]},{"id":"CHEBI:16947","l":"citrate(3-)","na":2,"nb":49,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["EC%3A2.3.3.1","citrate (Si)-synthase"],["EC%3A2.3.3.16","citrate synthase (unknown stereospecificity)"],["EC%3A2.3.3.3","citrate (Re)-synthase"],["EC%3A2.3.3.8","ATP citrate synthase"],["EC%3A2.8.3.10","citrate CoA-transferase"],["EC%3A4.1.3.6","citrate (pro-3S)-lyase"]]},{"id":"GO:0009063","l":"amino acid catabolic process","na":2,"nb":47,"a":[["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"]],"b":[["ComplexPortal%3ACPX-865","Electron transfer flavoprotein complex"],["ComplexPortal%3ACPX-2731","Mitochondrial electron transfer flavoprotein complex"],["GO%3A0042217","1-aminocyclopropane-1-carboxylate catabolic process"],["GO%3A0009063","amino acid catabolic process"],["GO%3A0019665","amino acid fermentation"],["GO%3A0019484","beta-alanine catabolic process"]]},{"id":"CHEBI:29035","l":"manganese(2+)","na":2,"nb":44,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29035","requires manganese(2+)"],["EC%3A1.11.1.13","manganese peroxidase"],["EC%3A1.11.1.16","versatile peroxidase"],["EC%3A1.16.3.3","manganese oxidase"],["EC%3A7.2.2.22","P-type Mn(2+) transporter"],["EC%3A7.2.2.5","ABC-type Mn(2+) transporter"]]},{"id":"CHEBI:16480","l":"nitric oxide","na":2,"nb":43,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"]],"b":[["EC%3A1.14.12.17","nitric oxide dioxygenase"],["EC%3A1.14.13.39","nitric-oxide synthase (NADPH)"],["EC%3A1.14.14.47","nitric-oxide synthase (flavodoxin)"],["EC%3A1.14.15.41","L-tryptophan 4-nitrase"],["EC%3A1.14.15.42","L-tyrosine 3-nitrase"],["EC%3A1.7.1.14","nitric oxide reductase [NAD(P)(+), nitrous oxide-forming]"]]},{"id":"GO:0030163","l":"protein catabolic process","na":2,"nb":40,"a":[["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"]],"b":[["ComplexPortal%3ACPX-1655","i-AAA complex"],["ComplexPortal%3ACPX-1654","m-AAA protease complex"],["GO%3A0002077","acrosome matrix dispersal"],["GO%3A0061684","chaperone-mediated autophagy"],["GO%3A0007174","epidermal growth factor catabolic process"],["GO%3A0006516","glycoprotein catabolic process"]]},{"id":"GO:0019684","l":"photosynthesis, light reaction","na":2,"nb":39,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]],"b":[["GO%3A0019684","photosynthesis, light reaction"],["NCBIfam%3ANF058510","bifunctional rod-capping linker CpcD/ferredoxin--NADP reductase PetH"],["NCBIfam%3ATIGR01332","cytochrome b559 subunit alpha"],["NCBIfam%3ATIGR01333","cytochrome b559 subunit beta"],["NCBIfam%3ANF043009","cytochrome c-554 Puf2C"],["NCBIfam%3ANF040862","light-harvesting antenna LH1, beta subunit"]]},{"id":"GO:0008643","l":"carbohydrate transport","na":2,"nb":38,"a":[["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["ComplexPortal%3ACPX-5990","sgcABC sugar permease enzyme II complex"],["GO%3A0033231","carbohydrate export"],["GO%3A0034219","carbohydrate transmembrane transport"],["GO%3A0008643","carbohydrate transport"],["GO%3A0015772","oligosaccharide transport"],["GO%3A0015774","polysaccharide transport"]]},{"id":"CHEBI:16150","l":"benzoate","na":2,"nb":36,"a":[["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["EC%3A1.14.12.10","benzoate 1,2-dioxygenase"],["EC%3A1.14.14.92","benzoate 4-monooxygenase"],["EC%3A1.2.1.28","benzaldehyde dehydrogenase (NAD(+))"],["EC%3A1.2.1.7","benzaldehyde dehydrogenase (NADP(+))"],["EC%3A2.1.1.273","benzoate O-methyltransferase"],["EC%3A3.1.1.84","cocaine esterase"]]},{"id":"GO:0000272","l":"polysaccharide catabolic process","na":2,"nb":36,"a":[["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["GO%3A0042122","alginic acid catabolic process"],["GO%3A0031222","arabinan catabolic process"],["GO%3A0030995","cell septum edging catabolic process"],["GO%3A0044347","cell wall polysaccharide catabolic process"],["GO%3A0010147","fructan catabolic process"],["GO%3A2000885","galactoglucomannan catabolic process"]]},{"id":"GO:0009628","l":"response to abiotic stimulus","na":2,"nb":34,"a":[["South_Bay_Salt_Pond_Methane_Restoration_Community.html","South Bay Salt Pond Methane Restoration Microbial Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"]],"b":[["GO%3A0071214","cellular response to abiotic stimulus"],["GO%3A0009582","detection of abiotic stimulus"],["GO%3A0097318","invasive growth in response to abiotic stimulus"],["GO%3A0009628","response to abiotic stimulus"],["GO%3A0051602","response to electrical stimulus"],["GO%3A0009629","response to gravity"]]},{"id":"GO:0007154","l":"cell communication","na":2,"nb":32,"a":[["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["GO%3A0007412","axon target recognition"],["GO%3A0007267","cell-cell signaling"],["GO%3A0010643","cell communication by chemical coupling"],["GO%3A0010644","cell communication by electrical coupling"],["GO%3A0007154","cell communication"],["GO%3A0086065","cell communication involved in cardiac conduction"]]},{"id":"GO:0009228","l":"thiamine biosynthetic process","na":2,"nb":32,"a":[["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"],["Variovorax_Cryptococcus_Vitamin_Mutualism_Microcosm.html","Variovorax-Cryptococcus Vitamin Cross-Feeding Microcosm"]],"b":[["ComplexPortal%3ACPX-2140","iscS-thiI sulfurtransferase complex"],["GO%3A0009228","thiamine biosynthetic process"],["GO%3A0036172","thiamine salvage"],["NCBIfam%3ATIGR00204","1-deoxy-D-xylulose-5-phosphate synthase"],["NCBIfam%3ATIGR02351","2-iminoacetate synthase ThiH"],["NCBIfam%3ANF009078","bifunctional hydroxymethylpyrimidine kinase/phosphomethylpyrimidine kinase"]]},{"id":"CHEBI:15882","l":"phenol","na":2,"nb":31,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]],"b":[["EC%3A1.14.13.244","phenol 2-monooxygenase (NADH)"],["EC%3A1.14.13.7","phenol 2-monooxygenase (NADPH)"],["EC%3A1.14.14.20","phenol 2-monooxygenase (FADH2)"],["EC%3A2.1.1.25","phenol O-methyltransferase"],["EC%3A2.4.2.55","nicotinate D-ribonucleotide:phenol phospho-D-ribosyltransferase"],["EC%3A2.7.1.238","phenol phosphorylase"]]},{"id":"CHEBI:15347","l":"acetone","na":2,"nb":27,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["EC%3A1.1.1.80","isopropanol dehydrogenase (NADP(+))"],["EC%3A1.14.13.226","acetone monooxygenase (methyl acetate-forming)"],["EC%3A1.14.14.141","psoralen synthase"],["EC%3A1.14.14.148","angelicin synthase"],["EC%3A2.6.3.1","oximinotransferase"],["EC%3A4.1.1.4","acetoacetate decarboxylase"]]},{"id":"CHEBI:57586","l":"biotinate","na":2,"nb":24,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_57586","requires biotinate"],["EC%3A2.8.1.6","biotin synthase"],["EC%3A3.5.1.12","biotinidase"],["EC%3A6.2.1.11","biotin--CoA ligase"],["EC%3A6.3.4.10","biotin--[propionyl-CoA-carboxylase (ATP-hydrolyzing)] ligase"],["EC%3A6.3.4.11","biotin--[methylcrotonoyl-CoA-carboxylase] ligase"]]},{"id":"GO:0045333","l":"cellular respiration","na":2,"nb":21,"a":[["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"]],"b":[["ComplexPortal%3ACPX-560","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-563","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-567","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-9308","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-1721","Mitochondrial respiratory chain complex IV, COX5A variant"],["ComplexPortal%3ACPX-1722","Mitochondrial respiratory chain complex IV, COX5B variant"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":2,"nb":21,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF28265","Lipoprotein N-acylation protein LnsA-like"],["Pfam%3APF16403","Bacterial surface protein, Ig-like domain"],["Pfam%3APF03944","delta endotoxin"],["Pfam%3APF03945","delta endotoxin, N-terminal domain"],["IEDB%3A125782","epitope CLRIPMTDK"]]},{"id":"GO:0006089","l":"lactate metabolic process","na":2,"nb":20,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"]],"b":[["ComplexPortal%3ACPX-6573","L-lactate dehydrogenase A complex"],["ComplexPortal%3ACPX-6599","L-lactate dehydrogenase B complex"],["ComplexPortal%3ACPX-6602","L-lactate dehydrogenase C complex"],["ComplexPortal%3ACPX-6598","L-lactate dehydrogenase complex, A1B3 variant"],["ComplexPortal%3ACPX-6594","L-lactate dehydrogenase complex, A2B2 variant"],["ComplexPortal%3ACPX-6592","L-lactate dehydrogenase complex, A3B1 variant"]]},{"id":"CHEBI:16750","l":"guanosine","na":2,"nb":19,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["EC%3A2.4.2.1","purine-nucleoside phosphorylase"],["EC%3A2.4.2.15","guanosine phosphorylase"],["EC%3A2.7.1.73","inosine kinase"],["EC%3A3.5.4.15","guanosine deaminase"],["RHEA%3A27862","3'-GMP + H2O = guanosine + phosphate"],["RHEA%3A27714","GMP + H2O = guanosine + phosphate"]]},{"id":"CHEBI:16838","l":"polyphosphate","na":2,"nb":18,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"]],"b":[["EC%3A2.7.1.63","polyphosphate--glucose phosphotransferase"],["EC%3A2.7.4.1","ATP-polyphosphate phosphotransferase"],["EC%3A2.7.4.17","3-phosphoglyceroyl-phosphate--polyphosphate phosphotransferase"],["EC%3A2.7.4.20","dolichyl-diphosphate--polyphosphate phosphotransferase"],["EC%3A2.7.4.33","AMP-polyphosphate phosphotransferase"],["EC%3A2.7.4.34","GDP-polyphosphate phosphotransferase"]]},{"id":"GO:0009636","l":"response to toxic substance","na":2,"nb":18,"a":[["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"]],"b":[["ComplexPortal%3ACPX-2254","Cus cation efflux complex"],["GO%3A0097237","cellular response to toxic substance"],["GO%3A0060992","response to fungicide"],["GO%3A0009635","response to herbicide"],["GO%3A0017085","response to insecticide"],["GO%3A0010188","response to microbial phytotoxin"]]},{"id":"GO:0033103","l":"protein secretion by the type VI secretion system","na":2,"nb":17,"a":[["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"]],"b":[["GO%3A0033103","protein secretion by the type VI secretion system"],["NCBIfam%3ATIGR03354","type VI secretion system-associated FHA domain protein TagH"],["NCBIfam%3ATIGR03345","type VI secretion system ATPase TssH"],["NCBIfam%3ATIGR03357","type VI secretion system baseplate subunit TssE"],["NCBIfam%3ATIGR03359","type VI secretion system baseplate subunit TssF"],["NCBIfam%3ATIGR03347","type VI secretion system baseplate subunit TssG"]]},{"id":"GO:0051707","l":"response to other organism","na":2,"nb":17,"a":[["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0002213","defense response to insect"],["GO%3A0002215","defense response to nematode"],["GO%3A0098542","defense response to other organism"],["GO%3A0098543","detection of other organism"],["GO%3A0009617","response to bacterium"],["GO%3A0009620","response to fungus"]]},{"id":"CHEBI:48828","l":"cobalt(2+)","na":2,"nb":16,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_48828","requires cobalt(2+)"],["EC%3A1.16.99.1","[Co(II) methylated amine-specific corrinoid protein] reductase"],["EC%3A4.99.1.3","sirohydrochlorin cobaltochelatase"],["EC%3A6.6.1.2","cobaltochelatase"],["RHEA%3A65832","2 Co(II)-[dimethylamine-specific corrinoid protein] + AH2 + ATP + H2O = 2 Co(I)-[dimethylamine-specific corrinoid protein] + A + ADP + phosphate + 3 H(+)"],["RHEA%3A65816","2 Co(II)-[methylamine-specific corrinoid protein] + AH2 + ATP + H2O = 2 Co(I)-[methylamine-specific corrinoid protein] + A + ADP + phosphate + 3 H(+)"]]},{"id":"GO:0006970","l":"response to osmotic stress","na":2,"nb":15,"a":[["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["GO%3A0071470","cellular response to osmotic stress"],["GO%3A0043575","detection of osmotic stimulus"],["GO%3A0006972","hyperosmotic response"],["GO%3A0006971","hypotonic response"],["GO%3A0010335","response to non-ionic osmotic stress"],["GO%3A0006970","response to osmotic stress"]]},{"id":"GO:0019645","l":"anaerobic electron transport chain","na":2,"nb":15,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["ComplexPortal%3ACPX-320","DmaABC DMSO reductase complex"],["ComplexPortal%3ACPX-1975","Formate dehydrogenase N complex"],["ComplexPortal%3ACPX-6029","Formate dehydrogenase Z complex"],["ComplexPortal%3ACPX-317","Formate hydrogenlyase-H/Hydrogenase-3 complex"],["ComplexPortal%3ACPX-6028","Formate hydrogenlyase-H/Hydrogenase-4 complex"],["ComplexPortal%3ACPX-281","Hydrogenase-1 complex"]]},{"id":"GO:0009408","l":"response to heat","na":2,"nb":14,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["PMI_Variovorax_Thermotolerance_Collection.html","PMI Variovorax Thermotolerance Collection"]],"b":[["ComplexPortal%3ACPX-4887","DNA-directed RNA polymerase holoenzyme complex, SigmaH variant"],["ComplexPortal%3ACPX-636","ISW1b chromatin remodeling complex"],["GO%3A0034605","cellular response to heat"],["GO%3A0036168","filamentous growth of a population of unicellular organisms in response to heat"],["GO%3A0010286","heat acclimation"],["GO%3A0009408","response to heat"]]},{"id":"NCBITaxon:51453","l":"Trichoderma reesei","na":2,"nb":14,"a":[["Trichoderma_Ecoli_Cellulosic_Isobutanol_Coculture.html","Trichoderma-E. coli Cellulosic Isobutanol Coculture"],["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["Pfam%3APF28347","ACE1 small beta sheet domain"],["Pfam%3APF28329","Zinc finger transcription factor ace1 N-terminal domain"],["Pfam%3APF00150","Cellulase (glycosyl hydrolase family 5)"],["Pfam%3APF22514","EXPB1-like domain 1"],["Pfam%3APF01341","Glycosyl hydrolases family 6"],["Pfam%3APF00840","Glycosyl hydrolase family 7"]]},{"id":"CHEBI:15428","l":"glycine","na":2,"nb":13,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["MCSA%3A718","caspase-1"],["MCSA%3A599","dipeptidase E"],["MCSA%3A906","gelatinase A"],["MCSA%3A762","glycine C-acetyltransferase"],["MCSA%3A746","L-peptidase"],["MCSA%3A477","picornain 3C"]]},{"id":"GO:0006032","l":"chitin catabolic process","na":2,"nb":13,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["GO%3A0006032","chitin catabolic process"],["NCBIfam%3ANF052619","chitinase ChiD"],["NCBIfam%3ANF041127","exo-beta-D-glucosaminidase"],["NCBIfam%3ANF041128","glucosamine-6-phosphate deaminase"],["NCBIfam%3ATIGR03851","N-acetylglucosamine/diacetylchitobiose ABC transporter substrate-binding protein"],["InterPro%3AIPR005089","Carbohydrate-binding module family 19"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus ATCC 27405","na":2,"nb":13,"a":[["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["Pfam%3APF00942","Cellulose binding domain"],["Pfam%3APF17996","Carbohydrate esterase 2 N-terminal"],["Pfam%3APF00963","Cohesin domain"],["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF00404","Dockerin type I domain"]]},{"id":"NCBITaxon:272562","l":"Clostridium acetobutylicum ATCC 824","na":2,"nb":13,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["Pfam%3APF10882","Bacterial PH domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["Pfam%3APF09940","Domain of unknown function (DUF2172)"],["Pfam%3APF16254","Domain of unknown function (DUF4910)"],["Pfam%3APF01183","Glycosyl hydrolases family 25"],["Pfam%3APF16221","winged helix-turn-helix"]]},{"id":"NCBITaxon:644","l":"Aeromonas hydrophila","na":2,"nb":13,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["Pfam%3APF01117","Aerolysin toxin"],["Pfam%3APF03440","Aerolysin/Pertussis toxin (APT) domain"],["Pfam%3APF21327","GspA, peptidase C39-like domain"],["Pfam%3APF04231","Endonuclease I"],["PROSITE%3APS01092","Adenylate cyclase class-I signature 1"],["PROSITE%3APS01093","Adenylate cyclase class-I signature 2"]]},{"id":"GO:0015889","l":"cobalamin transport","na":2,"nb":11,"a":[["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["ComplexPortal%3ACPX-2105","Cobalamin ABC transporter complex"],["ComplexPortal%3ACPX-1083","Cobalamin outer membrane transporter complex"],["ComplexPortal%3ACPX-5774","Cubam cobalamin uptake receptor complex"],["ComplexPortal%3ACPX-5847","Cubam cobalamin uptake receptor complex"],["GO%3A0015889","cobalamin transport"],["Reactome%3AR-HSA-9758890","Transport of RCbl within the body"]]},{"id":"GO:0019605","l":"butyrate metabolic process","na":2,"nb":11,"a":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["GO%3A0030645","acetyl-CoA fermentation to butanoate"],["GO%3A0046358","butyrate biosynthetic process"],["GO%3A0046359","butyrate catabolic process"],["GO%3A0019605","butyrate metabolic process"],["GO%3A0019475","L-lysine fermentation"],["GO%3A0044813","pyruvate fermentation to butanoate"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":2,"nb":11,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["Pfam%3APF22829","HphA C-terminal domain"],["Pfam%3APF22828","HphA N-terminal heme-binding domain"],["Pfam%3APF28205","Ciprofloxacin tolerance protein"],["Pfam%3APF19582","Solute-binding protein AdeT 1/2"],["PROSITE%3APS00337","Beta-lactamase class-D active site"],["Pfam%3APF24575","Surface lipoprotein assembly modifier, N-terminal TPR repeats"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":2,"nb":10,"a":[["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["Pfam%3APF27445","Adaptation to cold protein A"],["Pfam%3APF27450","AtcB C-terminal domain"],["Pfam%3APF27486","AtcB N-terminal domain"],["Pfam%3APF02464","CinA C-terminal domain"],["Pfam%3APF13657","HipA N-terminal domain"],["Pfam%3APF01934","Ribonuclease HepT-like"]]},{"id":"CHEBI:3098","l":"bile acid","na":2,"nb":9,"a":[["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.28","The Bile Acid:Na+ Symporter (BASS) Family"],["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"],["TCDB%3A9.A.19","The Lipid Intermediate Transporter (Arv1) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]]},{"id":"CHEBI:48775","l":"cadmium(2+)","na":2,"nb":9,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["SynCom_Pseudomonas_Rahnella_Artemisia_Phytoremediation.html","Pseudomonas-Rahnella native rhizosphere SynCom for Artemisia argyi phytoremediation"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_48775","requires cadmium(2+)"],["EC%3A7.2.2.2","ABC-type Cd(2+) transporter"],["EC%3A7.2.2.21","Cd(2+)-exporting ATPase"],["RHEA%3A12132","Cd(2+)(in) + ATP + H2O = Cd(2+)(out) + ADP + phosphate + H(+)"],["RHEA%3A28707","Cd(2+)(in) = Cd(2+)(out)"],["RHEA%3A28739","Cd(2+)(in) + H(+)(out) = Cd(2+)(out) + H(+)(in)"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":2,"nb":9,"a":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF25954","CusB-like, beta-barrel domain"],["Pfam%3APF13438","Domain of unknown function (DUF4113)"],["Pfam%3APF03767","HAD superfamily, subfamily IIIB (Acid phosphatase)"],["Pfam%3APF03496","ADP-ribosyltransferase exoenzyme"]]},{"id":"CHEBI:16793","l":"mercury(2+)","na":2,"nb":8,"a":[["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["EC%3A1.16.1.1","mercury(II) reductase"],["EC%3A4.99.1.2","alkylmercury lyase"],["RHEA%3A18777","an alkylmercury + H(+) = an alkane + Hg(2+)"],["RHEA%3A32815","Hg(2+)(in) = Hg(2+)(out)"],["RHEA%3A23856","Hg + NADP(+) + H(+) = Hg(2+) + NADPH"],["MCSA%3A297","alkylmercury lyase"]]},{"id":"GO:0009651","l":"response to salt stress","na":2,"nb":8,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"]],"b":[["GO%3A0071472","cellular response to salt stress"],["GO%3A0042538","hyperosmotic salinity response"],["GO%3A0042539","hypotonic salinity response"],["GO%3A0072342","response to anion stress"],["GO%3A0043157","response to cation stress"],["GO%3A0009651","response to salt stress"]]},{"id":"GO:0033013","l":"tetrapyrrole metabolic process","na":2,"nb":8,"a":[["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["GO%3A0009235","cobalamin metabolic process"],["GO%3A0006778","porphyrin-containing compound metabolic process"],["GO%3A0033014","tetrapyrrole biosynthetic process"],["GO%3A0033015","tetrapyrrole catabolic process"],["GO%3A0033013","tetrapyrrole metabolic process"],["NCBIfam%3ANF047825","tryptophan-rich sensory protein TspO"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":2,"nb":8,"a":[["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["Pfam%3APF01890","Cobalamin synthesis G C-terminus"],["Pfam%3APF11761","Cobalamin biosynthesis central region"],["Pfam%3APF11760","Cobalamin synthesis G N-terminal"],["Pfam%3APF02570","Precorrin-8X methylmutase"],["PROSITE%3APS00304","Small, acid-soluble spore proteins, alpha/beta type, signature 1"],["PROSITE%3APS00684","Small, acid-soluble spore proteins, alpha/beta type, signature 2"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":2,"nb":8,"a":[["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]],"b":[["Pfam%3APF02927","Cellulase N-terminal ig-like domain"],["Pfam%3APF00404","Dockerin type I domain"],["PROSITE%3APS00448","Clostridium cellulosome enzymes repeated domain signature"],["PROSITE%3APS60032","Glycosyl hydrolases family 9 (GH9) active site signature 1"],["PROSITE%3APS00592","Glycosyl hydrolases family 9 (GH9) active site signature 2"],["PROSITE%3APS00698","Glycosyl hydrolases family 9 (GH9) active site signature 3"]]},{"id":"CHEBI:17824","l":"propan-2-ol","na":2,"nb":7,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"]],"b":[["EC%3A1.1.1.80","isopropanol dehydrogenase (NADP(+))"],["EC%3A1.14.13.227","propane 2-monooxygenase"],["RHEA%3A62196","propan-2-ol + 2 Fe(III)-[cytochrome c] = acetone + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A41984","propan-2-ol + NAD(+) = acetone + NADH + H(+)"],["RHEA%3A21792","propan-2-ol + NADP(+) = acetone + NADPH + H(+)"],["RHEA%3A49992","propane + NADH + O2 + H(+) = propan-2-ol + NAD(+) + H2O"]]},{"id":"CHEBI:30742","l":"ethylene glycol","na":2,"nb":7,"a":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"]],"b":[["EC%3A3.1.1.102","mono(ethylene terephthalate) hydrolase"],["RHEA%3A42648","(2,5-ethylene furandicarboxylate)(n) + 2 H2O = (2,5-ethylene furandicarboxylate)(n-1) + 2,5-dicarboxyfuran + ethylene glycol + 2 H(+)"],["RHEA%3A49532","4-[(2-hydroxyethoxy)carbonyl]benzoate + H2O = terephthalate + ethylene glycol + H(+)"],["RHEA%3A80759","bis(2-hydroxyethyl) terephthalate + H2O = 4-[(2-hydroxyethoxy)carbonyl]benzoate + ethylene glycol + H(+)"],["RHEA%3A27630","ethylene glycol + NAD(+) = glycolaldehyde + NADH + H(+)"],["MCSA%3A847","epoxide hydrolase"]]},{"id":"NCBITaxon:1305","l":"Streptococcus sanguinis","na":2,"nb":7,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["Pfam%3APF09254","FokI, cleavage domain"],["Pfam%3APF02981","FokI, recognition domain, subdomain 1"],["Pfam%3APF02980","FokI, recognition domain, subdomain 2"],["Pfam%3APF07501","G5 domain"],["Pfam%3APF07581","The GLUG motif"],["TED%3AAF-A0A7H8V358-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H8V358-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":2,"nb":7,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]],"b":[["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF03744","6-carboxyhexanoate--CoA ligase"],["PROSITE%3APS00836","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 1"],["PROSITE%3APS00837","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 2"],["MCSA%3A241","penicillin amidase (peptidase C59 family)"],["TED%3AAF-A0A2S5D092-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5D092-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28116","l":"Bacteroides ovatus","na":2,"nb":7,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["TED%3AAF-A0A515J030-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A515J030-F1-model_v4_TED01"],["TED%3AAF-A0A5M5C3M7-F1-model_v4_TED01","TED novel fold AF-A0A5M5C3M7-F1-model_v4_TED01"],["TED%3AAF-A0A641PL20-F1-model_v4_TED01","TED novel fold AF-A0A641PL20-F1-model_v4_TED01"],["TED%3AAF-A0A641V3P9-F1-model_v4_TED03","TED novel fold AF-A0A641V3P9-F1-model_v4_TED03"],["TED%3AAF-A0A641VT79-F1-model_v4_TED01","TED novel fold AF-A0A641VT79-F1-model_v4_TED01"],["TED%3AAF-A0A642C648-F1-model_v4_TED01","TED novel fold AF-A0A642C648-F1-model_v4_TED01"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":2,"nb":7,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["Pfam%3APF11766","Agglutinin-like protein, N-terminal domain"],["Pfam%3APF16856","Cell division control protein 4 dimerisation domain"],["Pfam%3APF18325","Fatty acid synthase subunit alpha Acyl carrier domain"],["Pfam%3APF18314","Fatty acid synthase type I helical domain"],["Pfam%3APF17828","N-terminal domain in fatty acid synthase subunit beta"],["Pfam%3APF05388","Carboxypeptidase Y pro-peptide"]]},{"id":"NCBITaxon:5507","l":"Fusarium oxysporum","na":2,"nb":7,"a":[["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["Pfam%3APF02015","Glycosyl hydrolase family 45"],["PROSITE%3APS01140","Glycosyl hydrolases family 45 active site"],["MCSA%3A473","NADP nitrous oxide-forming nitric oxide reductase"],["MCSA%3A173","trypsin"],["TED%3AAF-A0A2H3TJY2-F1-model_v4_TED01","TED novel fold AF-A0A2H3TJY2-F1-model_v4_TED01"],["TED%3AAF-A0A420N954-F1-model_v4_TED01","TED novel fold AF-A0A420N954-F1-model_v4_TED01"]]},{"id":"CHEBI:15366","l":"acetic acid","na":6,"nb":2,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"]],"b":[["MCSA%3A431","acetylxylan esterase"],["MCSA%3A996","Peptidoglycan-N-acetylglucosamine deacetylase Bc1960"]]},{"id":"CHEBI:16457","l":"S,S-dimethyl-beta-propiothetin","na":2,"nb":6,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["EC%3A2.1.1.269","dimethylsulfoniopropionate demethylase"],["EC%3A4.4.1.3","dimethylpropiothetin dethiomethylase"],["RHEA%3A35467","S,S-dimethyl-beta-propiothetin + (6S)-5,6,7,8-tetrahydrofolate = 3-(methylsulfanyl)propanoate + (6S)-5-methyl-5,6,7,8-tetrahydrofolate + H(+)"],["RHEA%3A19965","S,S-dimethyl-beta-propiothetin = acrylate + dimethyl sulfide + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.15","The Betaine/Carnitine/Choline Transporter (BCCT) Family"]]},{"id":"CHEBI:27266","l":"valine","na":2,"nb":6,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.26","The Branched Chain Amino Acid:Cation Symporter (LIVCS) Family"],["TCDB%3A2.A.78","The Branched Chain Amino Acid Exporter (LIV-E) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:30772","l":"butyric acid","na":6,"nb":2,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["MCSA%3A900","para-nitrobenzyl esterase"],["proteintraitsmech%3ABIOLIP_BUA","BUA-binding site"]]},{"id":"GO:0009235","l":"cobalamin metabolic process","na":2,"nb":6,"a":[["Soil_Corrinoid_B12_Reservoir_Community.html","Soil Corrinoid Reservoir Microbial Community"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["GO%3A0009236","cobalamin biosynthetic process"],["GO%3A0042366","cobalamin catabolic process"],["GO%3A0009235","cobalamin metabolic process"],["Reactome%3AR-HSA-9759218","Cobalamin (Cbl) metabolism"],["NCBIfam%3ANF021725","methylmalonic aciduria and homocystinuria type D protein"],["Pfam%3APF10229","Methylmalonic aciduria and homocystinuria type D protein"]]},{"id":"NCBITaxon:32049","l":"Picosynechococcus sp. PCC 7002","na":2,"nb":6,"a":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"]],"b":[["Pfam%3APF09367","CpeS-like protein"],["Pfam%3APF06206","CpeT/CpcT family (DUF1001)"],["Pfam%3APF12965","Domain of unknown function (DUF3854)"],["Pfam%3APF19928","Domain of unknown function (DUF6391)"],["Pfam%3APF09366","Protein of unknown function (DUF1997)"],["Pfam%3APF14870","Photosynthesis system II assembly factor YCF48"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":2,"nb":6,"a":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["Pfam%3APF01177","Asp/Glu/Hydantoin racemase"],["Pfam%3APF11339","Protein of unknown function (DUF3141)"],["PROSITE%3APS01303","BCCT family of transporters signature"],["PROSITE%3APS00665","Dihydrodipicolinate synthase signature 1"],["TED%3AAF-A0A2J0YSD4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J0YSD4-F1-model_v4_TED01"],["TED%3AAF-A0A843ZNG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843ZNG8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":6,"nb":2,"a":[["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"],["Sedimenting_Arabinose_Glucose_Saccharomyces_Coculture.html","Sedimenting Arabinose-Glucose Saccharomyces Coculture"],["Synechococcus_Saccharomyces_SPC.html","Synechococcus-Saccharomyces Synthetic Photosynthetic Consortium"]],"b":[["PROSITE%3APS00820","Glucoamylase active site region signature"],["TED%3AAF-A0A7I9G6Y3-F1-model_v4_TED02","TED novel fold AF-A0A7I9G6Y3-F1-model_v4_TED02"]]},{"id":"CHEBI:16865","l":"gamma-aminobutyric acid","na":2,"nb":5,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A2.A.42","The Hydroxy/Aromatic Amino Acid Permease (HAAAP) Family"],["TCDB%3A2.A.22","The Neurotransmitter:Sodium Symporter (NSS) Family"],["proteintraitsmech%3ABIOLIP_ABU","ABU-binding site"]]},{"id":"CHEBI:16995","l":"oxalic acid","na":5,"nb":2,"a":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["TCDB%3A2.A.53","The Sulfate Permease (SulP) Family"],["proteintraitsmech%3ABIOLIP_OXD","OXD-binding site"]]},{"id":"CHEBI:26672","l":"siderophore","na":2,"nb":5,"a":[["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_26672","siderophore cofactor class"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.17","The Outer Membrane Factor (OMF) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]]},{"id":"GO:0015945","l":"methanol metabolic process","na":2,"nb":5,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"]],"b":[["GO%3A0019387","methanogenesis, from methanol"],["GO%3A0046169","methanol biosynthetic process"],["GO%3A0046170","methanol catabolic process"],["GO%3A0015945","methanol metabolic process"],["GO%3A0015946","methanol oxidation"]]},{"id":"GO:0043448","l":"alkane catabolic process","na":5,"nb":2,"a":[["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Nitratireductor_Gordonia_Z123_LDPE_Degradation_SynCom.html","Nitratireductor-Gordonia Z123 LDPE-Degradation SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"]],"b":[["GO%3A0043448","alkane catabolic process"],["GO%3A0046188","methane catabolic process"]]},{"id":"NCBITaxon:269797","l":"Methanosarcina barkeri str. Fusaro","na":2,"nb":5,"a":[["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["Pfam%3APF27274","Coenzyme F430 synthetase CfbE, C-terminal domain"],["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"],["Pfam%3APF09505","Dimethylamine methyltransferase (Dimeth_PyL)"],["PROSITE%3APS00507","Nickel-dependent hydrogenases large subunit signature 1"],["MCSA%3A885","Serine-tRNA ligase (archaeal)"]]},{"id":"CHEBI:33363","l":"palladium","na":2,"nb":4,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_PD_DINUCLEAR","dinuclear palladium site"],["proteintraitsmech%3AMETALPDB_PD_MONONUCLEAR","mononuclear palladium site"],["proteintraitsmech%3AMETALPDB_PD_TETRANUCLEAR","tetranuclear palladium site"],["proteintraitsmech%3AMETALPDB_PD_TRINUCLEAR","trinuclear palladium site"]]},{"id":"GO:0018874","l":"benzoate metabolic process","na":4,"nb":2,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["GO%3A0043639","benzoate catabolic process"],["GO%3A0018874","benzoate metabolic process"]]},{"id":"GO:0019386","l":"methanogenesis, from carbon dioxide","na":2,"nb":4,"a":[["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Tropidoatractus_Magnetotacticus_Tripartite_Syntrophy.html","Tropidoatractus magnetotacticus Magnetotactic Ciliate Tripartite Syntrophy"]],"b":[["GO%3A0019386","methanogenesis, from carbon dioxide"],["NCBIfam%3ATIGR01723","5,10-methenyltetrahydromethanopterin hydrogenase"],["NCBIfam%3ATIGR01112","tetrahydromethanopterin S-methyltransferase subunit D"],["NCBIfam%3ATIGR01113","tetrahydromethanopterin S-methyltransferase subunit E"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":2,"nb":4,"a":[["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["TED%3AAF-A0A7W3UB61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W3UB61-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F4B3-F1-model_v4_TED01","TED novel fold AF-A0A0D7F4B3-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F6R4-F1-model_v4_TED01","TED novel fold AF-A0A0D7F6R4-F1-model_v4_TED01"],["TED%3AAF-A0A7W3YI15-F1-model_v4_TED02","TED novel fold AF-A0A7W3YI15-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":4,"nb":2,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]],"b":[["Pfam%3APF02052","Gallidermin"],["Pfam%3APF04604","Type-A lantibiotic"]]},{"id":"NCBITaxon:3076","l":"Chlorella sorokiniana","na":2,"nb":4,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["SynCom_Chlorella_sorokiniana_Biogas_Slurry_Coupling_System.html","SynCom + Chlorella sorokiniana Biogas-slurry Coupling System"]],"b":[["TED%3AAF-A0A2P6TR54-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P6TR54-F1-model_v4_TED01"],["TED%3AAF-A0A2P6TVK6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P6TVK6-F1-model_v4_TED01"],["TED%3AAF-A0A2P6TZ25-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2P6TZ25-F1-model_v4_TED02"],["TED%3AAF-A0A2P6TLT0-F1-model_v4_TED05","TED novel fold AF-A0A2P6TLT0-F1-model_v4_TED05"]]},{"id":"NCBITaxon:5544","l":"Trichoderma harzianum","na":2,"nb":4,"a":[["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"]],"b":[["Pfam%3APF00840","Glycosyl hydrolase family 7"],["Pfam%3APF12708","Rhamnogalacturonase A/epimerase, pectate lyase-like"],["TED%3AAF-A0A0F9XDU3-F1-model_v4_TED01","TED novel fold AF-A0A0F9XDU3-F1-model_v4_TED01"],["TED%3AAF-A0A0G0ASL4-F1-model_v4_TED01","TED novel fold AF-A0A0G0ASL4-F1-model_v4_TED01"]]},{"id":"CHEBI:15956","l":"biotin","na":3,"nb":2,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15956","requires biotin"],["proteintraitsmech%3ABIOLIP_BTN","BTN-binding site"]]},{"id":"CHEBI:16482","l":"naphthalene","na":2,"nb":3,"a":[["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["EC%3A1.14.12.12","naphthalene 1,2-dioxygenase"],["RHEA%3A19173","naphthalene + NADH + O2 + H(+) = (1R,2S)-1,2-dihydronaphthalene-1,2-diol + NAD(+)"],["MCSA%3A130","naphthalene 1,2-dioxygenase"]]},{"id":"CHEBI:24898","l":"isoleucine","na":2,"nb":3,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["MCSA%3A906","gelatinase A"]]},{"id":"CHEBI:33377","l":"dysprosium atom","na":2,"nb":3,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_33377","requires Tb"],["proteintraitsmech%3AMETALPDB_DY_DINUCLEAR","dinuclear dysprosium site"],["proteintraitsmech%3AMETALPDB_DY_MONONUCLEAR","mononuclear dysprosium site"]]},{"id":"CHEBI:49470","l":"aluminium(3+)","na":2,"nb":3,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Rice_Acid_Soil_Bioinoculant_SynCom.html","Rice Acid Soil Bioinoculant SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["proteintraitsmech%3ABIOLIP_AL","AL-binding site"]]},{"id":"CHEBI:5199","l":"Fusaric acid","na":2,"nb":3,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["TCDB%3A2.A.85","The Aromatic Acid Exporter (ArAE) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.17","The Outer Membrane Factor (OMF) Family"]]},{"id":"CHEBI:58187","l":"alginate","na":2,"nb":3,"a":[["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["EC%3A5.1.3.37","mannuronan 5-epimerase"],["RHEA%3A45572","[(1->4)-beta-D-mannuronosyl](n) = [alginate](n)"],["RHEA%3A15637","[alginate](n) + GDP-alpha-D-mannuronate = [alginate](n+1) + GDP + H(+)"]]},{"id":"GO:0006068","l":"ethanol catabolic process","na":2,"nb":3,"a":[["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["GO%3A0006068","ethanol catabolic process"],["Reactome%3AR-HSA-71384","Ethanol oxidation"],["NCBIfam%3ANF050026","acetaldehyde dehydrogenase ExaC"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":2,"nb":3,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["Pfam%3APF22538","Hexaprenyl diphosphate synthase, small subunit"],["PROSITE%3APS01066","Undecaprenyl pyrophosphate synthase family signature"],["MCSA%3A543","ditrans,polycis-undecaprenyl-diphosphate synthase [(2E,6E)-farnesyl-diphosphate specific]"]]},{"id":"NCBITaxon:1590","l":"Lactiplantibacillus plantarum","na":3,"nb":2,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Pichia_Lactiplantibacillus_CCMA_Plant_Beverage_Coculture.html","Pichia-Lactiplantibacillus CCMA Plant Beverage Coculture"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["Pfam%3APF06314","Acetoacetate decarboxylase (ADC)"],["MCSA%3A572","catalase (manganese dependent)"]]},{"id":"NCBITaxon:28108","l":"Alteromonas macleodii","na":2,"nb":3,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["TED%3AAF-A0A6C5N007-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6C5N007-F1-model_v4_TED01"],["TED%3AAF-A0A126Q0V0-F1-model_v4_TED01","TED novel fold AF-A0A126Q0V0-F1-model_v4_TED01"],["TED%3AAF-A0A6T9Y0H6-F1-model_v4_TED01","TED novel fold AF-A0A6T9Y0H6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:33035","l":"Blautia producta","na":3,"nb":2,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["TED%3AAF-A0A2S4GEH6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S4GEH6-F1-model_v4_TED01"],["TED%3AAF-A0A7G5MNY0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G5MNY0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:33038","l":"Mediterraneibacter gnavus","na":2,"nb":3,"a":[["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["Pfam%3APF16874","Glycosyl hydrolase family 36 C-terminal domain"],["Pfam%3APF16875","Glycosyl hydrolase family 36 N-terminal domain"],["Pfam%3APF04604","Type-A lantibiotic"]]},{"id":"NCBITaxon:357809","l":"Lachnoclostridium phytofermentans ISDg","na":2,"nb":3,"a":[["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"]],"b":[["Pfam%3APF09508","Lacto-N-biose phosphorylase N-terminal TIM barrel domain"],["Pfam%3APF17386","Lacto-N-biose phosphorylase C-terminal domain"],["Pfam%3APF17385","Lacto-N-biose phosphorylase central domain"]]},{"id":"NCBITaxon:37919","l":"Rhodococcus opacus","na":3,"nb":2,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["Pfam%3APF11794","4-hydroxyphenylacetate 3-hydroxylase N terminal"],["Pfam%3APF03241","4-hydroxyphenylacetate 3-hydroxylase C terminal"]]},{"id":"CHEBI:15741","l":"succinic acid","na":2,"nb":2,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_SIN","SIN-binding site"]]},{"id":"CHEBI:15930","l":"atrazine","na":2,"nb":2,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["EC%3A3.8.1.8","atrazine chlorohydrolase"],["RHEA%3A11312","atrazine + H2O = hydroxyatrazine + chloride + H(+)"]]},{"id":"CHEBI:16094","l":"thiosulfate(2-)","na":2,"nb":2,"a":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["proteintraitsmech%3ABIOLIP_THJ","THJ-binding site"]]},{"id":"CHEBI:17300","l":"tetrachloroethene","na":2,"nb":2,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["EC%3A1.21.99.5","tetrachloroethene reductive dehalogenase"],["RHEA%3A20353","trichloroethene + chloride + A + H(+) = tetrachloroethene + AH2"]]},{"id":"CHEBI:27518","l":"acetylene","na":2,"nb":2,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"]],"b":[["EC%3A4.2.1.112","acetylene hydratase"],["RHEA%3A17885","acetaldehyde = acetylene + H2O"]]},{"id":"CHEBI:30046","l":"oxidovanadium(2+)","na":2,"nb":2,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["RHEA%3A75007","VO(2+)(out) + H(+)(out) = VO(2+)(in) + H(+)(in)"],["proteintraitsmech%3ABIOLIP_VVO","VVO-binding site"]]},{"id":"CHEBI:30751","l":"formic acid","na":2,"nb":2,"a":[["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["MCSA%3A38","GTP cyclohydrolase I"],["proteintraitsmech%3ABIOLIP_FMT","FMT-binding site"]]},{"id":"CHEBI:47916","l":"flavonoid","na":2,"nb":2,"a":[["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]]},{"id":"CHEBI:48782","l":"cerium(3+)","na":2,"nb":2,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_48782","requires cerium(3+)"],["proteintraitsmech%3ABIOLIP_CE","CE-binding site"]]},{"id":"CHEBI:49701","l":"lanthanum(3+)","na":2,"nb":2,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_49701","requires lanthanum(3+)"],["proteintraitsmech%3ABIOLIP_LA","LA-binding site"]]},{"id":"CHEBI:8005","l":"peptidoglycan","na":2,"nb":2,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.17","The Proton-dependent Oligopeptide Transporter (POT/PTR) Family"]]},{"id":"GO:0005983","l":"starch catabolic process","na":2,"nb":2,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"]],"b":[["GO%3A0005983","starch catabolic process"],["NCBIfam%3ATIGR02103","pullulanase-type alpha-1,6-glucosidase"]]},{"id":"NCBITaxon:145262","l":"Methanothermobacter thermautotrophicus","na":2,"nb":2,"a":[["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]],"b":[["Pfam%3APF12686","Protein of unknown function (DUF3800)"],["PROSITE%3APS00093","N-4 cytosine-specific DNA methylases signature"]]},{"id":"NCBITaxon:2162","l":"Methanobacterium formicicum","na":2,"nb":2,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"]],"b":[["Pfam%3APF04432","Coenzyme F420 hydrogenase/dehydrogenase, beta subunit C terminus"],["Pfam%3APF04422","Coenzyme F420 hydrogenase/dehydrogenase, beta subunit N-term"]]},{"id":"NCBITaxon:244366","l":"Klebsiella variicola","na":2,"nb":2,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["MCSA%3A582","isomaltulose synthase"],["TED%3AAF-A0A2N4Z4E2-F1-model_v4_TED01","TED novel fold AF-A0A2N4Z4E2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:39152","l":"Methanococcus maripaludis","na":2,"nb":2,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"]],"b":[["Pfam%3APF02571","Precorrin-6x reductase CbiJ/CobK"],["TED%3AAF-A0A7J9PSA9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J9PSA9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:4952","l":"Yarrowia lipolytica","na":2,"nb":2,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Yarrowia_lipolytica_Division_of_Labor_Lipid_Consortium.html","Yarrowia lipolytica Division-of-Labor Lipid Consortium"]],"b":[["TED%3AAF-A0A7H0KE04-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H0KE04-F1-model_v4_TED01"],["TED%3AAF-A0A371C7L0-F1-model_v4_TED02","TED novel fold AF-A0A371C7L0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:84022","l":"Andreesenella acetica","na":2,"nb":2,"a":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"]],"b":[["TED%3AAF-A0A0D8IAM1-F1-model_v4_TED01","TED novel fold AF-A0A0D8IAM1-F1-model_v4_TED01"],["TED%3AAF-A0A0D8IBN9-F1-model_v4_TED02","TED novel fold AF-A0A0D8IBN9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":1,"nb":50101,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["EC%3A1.1.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.1.98.-","With other, known, acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":1,"nb":17633,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["EC%3A1.1.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.16.-.-","Oxidizing metal ions"],["EC%3A1.18.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.7.-","With an iron-sulfur protein as acceptor"]]},{"id":"NCBITaxon:7227","l":"Drosophila melanogaster","na":1,"nb":11346,"a":[["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.14.15.-","With reduced iron-sulfur protein as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.17.-","With reduced ascorbate as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.-.-","Acting on paired donors, with incorporation or reduction of molecular oxygen. The oxygen incorporated need not be derived from O2"],["EC%3A1.2.4.-","With a disulfide as acceptor"],["EC%3A1.6.99.-","With other acceptors"]]},{"id":"NCBITaxon:6239","l":"Caenorhabditis elegans","na":1,"nb":9682,"a":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"]],"b":[["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.14.14.-","With reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.17.-","With reduced ascorbate as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.19.-","With oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water"],["EC%3A1.14.99.-","Miscellaneous"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii (strain ATCC 43067 / DSM 2661 / JAL-1 / JCM 10045 / NBRC 100440)","na":1,"nb":5186,"a":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]],"b":[["EC%3A1.12.99.-","With other acceptors"],["EC%3A1.3.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.3.-.-","Acting on the CH-CH group of donors"],["EC%3A1.8.98.-","With other, known, acceptors"],["EC%3A1.97.1.-","Other oxidoreductases"],["EC%3A2.1.2.-","Hydroxymethyl-, formyl- and related transferases"]]},{"id":"GO:0006355","l":"regulation of DNA-templated transcription","na":1,"nb":1131,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["ComplexPortal%3ACPX-2829","ACF chromatin remodeling complex"],["ComplexPortal%3ACPX-2742","ATAC histone acetyltransferase complex"],["ComplexPortal%3ACPX-8344","BRE1 E3 ubiquitin ligase complex"],["ComplexPortal%3ACPX-1830","CCAAT-binding factor complex"],["ComplexPortal%3ACPX-2767","CCAAT-binding factor complex"],["ComplexPortal%3ACPX-2771","CCR4-NOT mRNA deadenylase complex"]]},{"id":"CHEBI:16810","l":"2-oxoglutarate(2-)","na":1,"nb":672,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"]],"b":[["EC%3A1.1.1.286","isocitrate--homoisocitrate dehydrogenase"],["EC%3A1.1.1.399","2-oxoglutarate reductase"],["EC%3A1.1.1.41","isocitrate dehydrogenase (NAD(+))"],["EC%3A1.1.1.42","isocitrate dehydrogenase (NADP(+))"],["EC%3A1.1.5.13","(S)-2-hydroxyglutarate dehydrogenase"],["EC%3A1.1.99.2","L-2-hydroxyglutarate dehydrogenase"]]},{"id":"GO:0006412","l":"translation","na":1,"nb":455,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["GO%3A0002181","cytoplasmic translation"],["GO%3A0032543","mitochondrial translation"],["GO%3A0032544","plastid translation"],["GO%3A0140241","translation at synapse"],["GO%3A0006412","translation"],["Reactome%3AR-HSA-72766","Translation"]]},{"id":"GO:0055085","l":"transmembrane transport","na":1,"nb":439,"a":[["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"]],"b":[["ComplexPortal%3ACPX-271","5-hydroxytryptamine-3A/B receptor complex"],["ComplexPortal%3ACPX-275","5-hydroxytryptamine-3A/B receptor complex"],["ComplexPortal%3ACPX-277","5-hydroxytryptamine-3A/B receptor complex"],["ComplexPortal%3ACPX-276","5-hydroxytryptamine-3A/C receptor complex"],["ComplexPortal%3ACPX-272","5-hydroxytryptamine-3A/D receptor complex"],["ComplexPortal%3ACPX-273","5-hydroxytryptamine-3A/E receptor complex"]]},{"id":"CHEBI:29985","l":"L-glutamate(1-)","na":1,"nb":426,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["EC%3A1.14.11.76","L-glutamate 3(R)-hydroxylase"],["EC%3A1.2.1.88","L-glutamate gamma-semialdehyde dehydrogenase"],["EC%3A1.4.1.13","glutamate synthase (NADPH)"],["EC%3A1.4.1.14","glutamate synthase (NADH)"],["EC%3A1.4.1.2","glutamate dehydrogenase"],["EC%3A1.4.1.3","glutamate dehydrogenase [NAD(P)(+)]"]]},{"id":"GO:0006508","l":"proteolysis","na":1,"nb":393,"a":[["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"]],"b":[["ComplexPortal%3ACPX-6224","Active Protein C complex"],["ComplexPortal%3ACPX-6222","alpha-thrombin complex"],["ComplexPortal%3ACPX-3663","Caspase-8 complex"],["ComplexPortal%3ACPX-975","Caspase-8 complex"],["ComplexPortal%3ACPX-6221","Coagulation factor Va-Xa complex"],["ComplexPortal%3ACPX-279","Coagulation factor VIIa - tissue factor complex"]]},{"id":"GO:0006260","l":"DNA replication","na":1,"nb":311,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["ComplexPortal%3ACPX-6641","ASCC DNA alkylation repair complex"],["ComplexPortal%3ACPX-568","Chromatin assembly factor 1 complex"],["ComplexPortal%3ACPX-2671","CMG helicase complex"],["ComplexPortal%3ACPX-297","CMG helicase complex"],["ComplexPortal%3ACPX-4526","CMG helicase complex"],["ComplexPortal%3ACPX-4541","CMG helicase complex"]]},{"id":"CHEBI:29101","l":"sodium(1+)","na":1,"nb":292,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29101","requires sodium(1+)"],["EC%3A7.2.1.1","NADH:ubiquinone reductase (Na(+)-transporting)"],["EC%3A7.2.1.2","ferredoxin--NAD(+) oxidoreductase (Na(+)-transporting)"],["EC%3A7.2.1.4","tetrahydromethanopterin S-methyltransferase"],["EC%3A7.2.2.1","Na(+)-transporting two-sector ATPase"],["EC%3A7.2.2.13","Na(+)/K(+)-exchanging ATPase"]]},{"id":"CHEBI:4167","l":"D-glucopyranose","na":1,"nb":217,"a":[["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"]],"b":[["EC%3A1.1.1.118","glucose 1-dehydrogenase (NAD(+))"],["EC%3A1.1.1.119","glucose 1-dehydrogenase (NADP(+))"],["EC%3A1.1.1.359","aldose 1-dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.1.360","glucose/galactose 1-dehydrogenase"],["EC%3A1.1.1.432","6-dehydroglucose reductase"],["EC%3A1.1.1.47","glucose 1-dehydrogenase [NAD(P)(+)]"]]},{"id":"NCBITaxon:3818","l":"Arachis hypogaea","na":1,"nb":178,"a":[["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["IEDB%3A195","epitope AAHASARQQWELQGD"],["IEDB%3A190700","epitope AAHPVAINASSELHLLGFGI"],["IEDB%3A190702","epitope AGPREREREEDWRQPREDWR"],["IEDB%3A1685","epitope AGSSQHQERCCNELNEFENN"],["IEDB%3A1744","epitope AHASARQQWELQGDRRCQSQ"],["IEDB%3A2241","epitope AKLTILVALALFLLAAHASA"]]},{"id":"GO:0006096","l":"glycolytic process","na":1,"nb":117,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["ComplexPortal%3ACPX-1992","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-2039","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-2040","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-1994","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"],["ComplexPortal%3ACPX-2041","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"],["ComplexPortal%3ACPX-2042","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"]]},{"id":"GO:0042221","l":"response to chemical","na":1,"nb":104,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0070887","cellular response to chemical stimulus"],["GO%3A0036503","ERAD pathway"],["GO%3A1904612","response to 2,3,7,8-tetrachlorodibenzodioxine"],["GO%3A1904610","response to 3,3',4,4',5-pentachlorobiphenyl"],["GO%3A0036275","response to 5-fluorouracil"],["GO%3A0001101","response to acid chemical"]]},{"id":"GO:0009252","l":"peptidoglycan biosynthetic process","na":1,"nb":90,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["GO%3A0009252","peptidoglycan biosynthetic process"],["GO%3A0018104","peptidoglycan-protein cross-linking"],["NCBIfam%3ATIGR00492","alanine racemase"],["NCBIfam%3ANF007061","bifunctional glycosyl transferase/transpeptidase"],["NCBIfam%3ANF006986","bifunctional UDP-N-acetylglucosamine diphosphorylase/glucosamine-1-phosphate N-acetyltransferase GlmU"]]},{"id":"GO:0009306","l":"protein secretion","na":1,"nb":84,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["GO%3A0070162","adiponectin secretion"],["GO%3A0036394","amylase secretion"],["GO%3A0110010","basolateral protein secretion"],["GO%3A0038055","BMP secretion"],["GO%3A0030073","insulin secretion"],["GO%3A1990773","matrix metallopeptidase secretion"]]},{"id":"GO:0006796","l":"phosphate-containing compound metabolic process","na":1,"nb":72,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"]],"b":[["GO%3A0016311","dephosphorylation"],["GO%3A0006796","phosphate-containing compound metabolic process"],["GO%3A0016310","phosphorylation"],["NCBIfam%3ANF053626","ATP-dependent ribose-1-phosphate kinase"],["NCBIfam%3ANF002317","inorganic diphosphatase"],["NCBIfam%3ATIGR02966","phosphate regulon sensor histidine kinase PhoR"]]},{"id":"GO:0048519","l":"negative regulation of biological process","na":1,"nb":72,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["GO%3A1905869","negative regulation of 3'-UTR-mediated mRNA stabilization"],["GO%3A0045759","negative regulation of action potential"],["GO%3A0048519","negative regulation of biological process"],["GO%3A0030712","negative regulation of border follicle cell delamination"],["GO%3A1903780","negative regulation of cardiac conduction"],["GO%3A0048523","negative regulation of cellular process"]]},{"id":"GO:0006631","l":"fatty acid metabolic process","na":1,"nb":71,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["ComplexPortal%3ACPX-6169","Mitochondrial propionyl-CoA carboxylase complex"],["ComplexPortal%3ACPX-1038","PIP2-OAF1 transcription factor complex"],["ComplexPortal%3ACPX-25756","SREBP-SCAP transcription regulator complex"],["GO%3A0006633","fatty acid biosynthetic process"],["GO%3A0009062","fatty acid catabolic process"],["GO%3A0006631","fatty acid metabolic process"]]},{"id":"GO:0006955","l":"immune response","na":1,"nb":69,"a":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"]],"b":[["ComplexPortal%3ACPX-381","Interleukin-12 complex"],["ComplexPortal%3ACPX-387","Interleukin-12 complex"],["ComplexPortal%3ACPX-382","Interleukin-12-receptor ligand complex"],["ComplexPortal%3ACPX-3290","Interleukin-23 complex"],["ComplexPortal%3ACPX-389","Interleukin-23-receptor complex"],["ComplexPortal%3ACPX-383","Interleukin-23 receptor-ligand complex"]]},{"id":"GO:0006814","l":"sodium ion transport","na":1,"nb":67,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"]],"b":[["GO%3A0003096","renal sodium ion transport"],["GO%3A0035725","sodium ion transmembrane transport"],["GO%3A0006814","sodium ion transport"],["NCBIfam%3ANF050096","bicarbonate transporter BicA"],["NCBIfam%3ATIGR02711","cation/acetate symporter ActP"],["NCBIfam%3ANF047943","citrate/sodium symporter CitS"]]},{"id":"GO:0006950","l":"response to stress","na":1,"nb":67,"a":[["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"]],"b":[["GO%3A0033554","cellular response to stress"],["GO%3A0006952","defense response"],["GO%3A0033555","multicellular organismal response to stress"],["GO%3A0003299","muscle hypertrophy in response to stress"],["GO%3A0009271","phage shock"],["GO%3A0034059","response to anoxia"]]},{"id":"GO:0000271","l":"polysaccharide biosynthetic process","na":1,"nb":66,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"]],"b":[["ComplexPortal%3ACPX-417","Glucosidase II complex"],["GO%3A0051072","4,6-pyruvylated galactose residue biosynthetic process"],["GO%3A0042121","alginic acid biosynthetic process"],["GO%3A0035884","arabinan biosynthetic process"],["GO%3A0045227","capsule polysaccharide biosynthetic process"],["GO%3A0070592","cell wall polysaccharide biosynthetic process"]]},{"id":"CHEBI:18407","l":"hydrogen cyanide","na":1,"nb":63,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"]],"b":[["EC%3A1.14.17.4","aminocyclopropanecarboxylate oxidase"],["EC%3A1.14.19.52","camalexin synthase"],["EC%3A1.16.1.6","cyanocobalamin reductase"],["EC%3A1.4.99.5","glycine dehydrogenase (cyanide-forming)"],["EC%3A2.8.1.1","thiosulfate sulfurtransferase"],["EC%3A4.1.2.10","(R)-mandelonitrile lyase"]]},{"id":"GO:0044282","l":"small molecule catabolic process","na":1,"nb":63,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"]],"b":[["GO%3A0046164","alcohol catabolic process"],["GO%3A0046395","carboxylic acid catabolic process"],["GO%3A0019341","dibenzo-p-dioxin catabolic process"],["GO%3A0046294","formaldehyde catabolic process"],["GO%3A0046952","ketone body catabolic process"],["GO%3A0042182","ketone catabolic process"]]},{"id":"GO:0071973","l":"bacterial-type flagellum-dependent cell motility","na":1,"nb":60,"a":[["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"]],"b":[["ComplexPortal%3ACPX-4886","DNA-directed RNA polymerase holoenzyme complex, SigmaF variant"],["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["GO%3A0071973","bacterial-type flagellum-dependent cell motility"],["GO%3A0071978","bacterial-type flagellum-dependent swarming motility"]]},{"id":"CHEBI:17879","l":"4-hydroxybenzoate","na":1,"nb":57,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["EC%3A1.13.11.41","2,4'-dihydroxyacetophenone dioxygenase"],["EC%3A1.14.13.2","4-hydroxybenzoate 3-monooxygenase"],["EC%3A1.14.13.33","4-hydroxybenzoate 3-monooxygenase [NAD(P)H]"],["EC%3A1.14.13.64","4-hydroxybenzoate 1-hydroxylase"],["EC%3A1.14.14.92","benzoate 4-monooxygenase"],["EC%3A1.14.19.55","4-hydroxybenzoate brominase (decarboxylating)"]]},{"id":"CHEBI:15589","l":"(S)-malate(2-)","na":1,"nb":56,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["EC%3A1.1.1.299","malate dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.1.37","(S)-malate dehydrogenase (NAD(+), oxaloacetate-forming)"],["EC%3A1.1.1.38","malate dehydrogenase (oxaloacetate-decarboxylating)"],["EC%3A1.1.1.39","malate dehydrogenase (decarboxylating)"],["EC%3A1.1.1.40","malate dehydrogenase (oxaloacetate-decarboxylating) (NADP(+))"],["EC%3A1.1.1.82","malate dehydrogenase (NADP(+))"]]},{"id":"GO:0046394","l":"carboxylic acid biosynthetic process","na":1,"nb":55,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["GO%3A0042861","achromobactin biosynthetic process"],["GO%3A1901112","actinorhodin biosynthetic process"],["GO%3A0006523","alanine biosynthetic process"],["GO%3A0019578","aldaric acid biosynthetic process"],["GO%3A0042121","alginic acid biosynthetic process"],["GO%3A0009073","aromatic amino acid biosynthetic process"]]},{"id":"NCBITaxon:2","l":"Bacteria","na":54,"nb":1,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2","Bacteria orthologous groups (OrthoDB)"]]},{"id":"GO:0006094","l":"gluconeogenesis","na":1,"nb":52,"a":[["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"]],"b":[["ComplexPortal%3ACPX-1992","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-2039","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-2040","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-1994","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"],["ComplexPortal%3ACPX-2041","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"],["ComplexPortal%3ACPX-2042","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"]]},{"id":"GO:0009117","l":"nucleotide metabolic process","na":1,"nb":50,"a":[["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"]],"b":[["GO%3A0009394","2'-deoxyribonucleotide metabolic process"],["GO%3A0009187","cyclic nucleotide metabolic process"],["GO%3A0015959","diadenosine polyphosphate metabolic process"],["GO%3A0072387","flavin adenine dinucleotide metabolic process"],["GO%3A0046496","nicotinamide nucleotide metabolic process"],["GO%3A0009165","nucleotide biosynthetic process"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima (strain ATCC 43589 / DSM 3109 / JCM 10099 / NBRC 100826 / MSB8)","na":1,"nb":49,"a":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]],"b":[["Pfam%3APF02829","3H domain"],["Pfam%3APF13175","AAA ATPase domain"],["Pfam%3APF01958","Aspartate dehydrogenase, C-terminal"],["Pfam%3APF05448","Acetyl xylan esterase (AXE1)"],["Pfam%3APF04509","CheC-like family"],["Pfam%3APF13690","Chemotaxis phosphatase CheX"]]},{"id":"GO:0044550","l":"secondary metabolite biosynthetic process","na":1,"nb":46,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["GO%3A1900581","(17Z)-protosta-17(20),24-dien-3beta-ol biosynthetic process"],["GO%3A0009821","alkaloid biosynthetic process"],["GO%3A1900587","arugosin biosynthetic process"],["GO%3A0036184","asperthecin biosynthetic process"],["GO%3A0062032","cichorine biosynthetic process"],["GO%3A1900799","cordyol C biosynthetic process"]]},{"id":"CHEBI:30212","l":"photon","na":1,"nb":45,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["EC%3A1.10.3.9","photosystem II"],["EC%3A1.13.12.13","Oplophorus-luciferin 2-monooxygenase"],["EC%3A1.13.12.18","dinoflagellate luciferase"],["EC%3A1.13.12.5","Renilla-type luciferase"],["EC%3A1.13.12.6","Cypridina-luciferin 2-monooxygenase"],["EC%3A1.13.12.7","firefly luciferase"]]},{"id":"CHEBI:506227","l":"N-acetyl-D-glucosamine","na":1,"nb":44,"a":[["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["EC%3A1.1.3.29","N-acylhexosamine oxidase"],["EC%3A2.3.1.3","glucosamine N-acetyltransferase"],["EC%3A2.4.1.211","1,3-beta-galactosyl-N-acetylhexosamine phosphorylase"],["EC%3A2.4.1.280","N,N'-diacetylchitobiose phosphorylase"],["EC%3A2.4.1.320","1,4-beta-mannosyl-N-acetylglucosamine phosphorylase"],["EC%3A2.4.1.90","N-acetyllactosamine synthase"]]},{"id":"GO:0030198","l":"extracellular matrix organization","na":1,"nb":41,"a":[["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]],"b":[["ComplexPortal%3ACPX-1801","Integrin alpha2-beta1 complex"],["ComplexPortal%3ACPX-3115","Integrin alpha2-beta1 complex"],["ComplexPortal%3ACPX-4423","Matrilin-1 complex"],["ComplexPortal%3ACPX-4463","Matrilin-1 complex"],["ComplexPortal%3ACPX-4521","Matrilin-1 complex"],["ComplexPortal%3ACPX-4503","Matrilin-1 - Matrilin-3 complex"]]},{"id":"GO:0006006","l":"glucose metabolic process","na":1,"nb":38,"a":[["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["GO%3A0006094","gluconeogenesis"],["GO%3A0006007","glucose catabolic process"],["GO%3A0006006","glucose metabolic process"],["Reactome%3AR-HSA-70326","Glucose metabolism"],["NCBIfam%3ANF033735","ArsJ-associated glyceraldehyde-3-phosphate dehydrogenase"],["NCBIfam%3ANF045551","ATP-dependent glucokinase"]]},{"id":"GO:0006954","l":"inflammatory response","na":1,"nb":38,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["ComplexPortal%3ACPX-2862","Caspase-7 complex"],["ComplexPortal%3ACPX-3947","Caspase-7 complex"],["ComplexPortal%3ACPX-363","Heparanase complex"],["ComplexPortal%3ACPX-10322","IL33 receptor-ligand complex"],["ComplexPortal%3ACPX-9301","Interleukin-17A complex"],["ComplexPortal%3ACPX-10317","Interleukin-26 complex"]]},{"id":"GO:0007267","l":"cell-cell signaling","na":1,"nb":38,"a":[["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["ComplexPortal%3ACPX-10317","Interleukin-26 complex"],["GO%3A0035425","autocrine signaling"],["GO%3A0061939","c-di-GMP signaling"],["GO%3A0007267","cell-cell signaling"],["GO%3A0045168","cell-cell signaling involved in cell fate commitment"],["GO%3A0060764","cell-cell signaling involved in mammary gland development"]]},{"id":"GO:0008283","l":"cell population proliferation","na":1,"nb":37,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["ComplexPortal%3ACPX-2799","CRL4-DCAF4 E3 ubiquitin ligase complex, CUL4A variant"],["ComplexPortal%3ACPX-2859","CRL4-DCAF4 E3 ubiquitin ligase complex, CUL4B variant"],["GO%3A0008283","cell population proliferation"],["GO%3A0071838","cell proliferation in bone marrow"],["GO%3A0035736","cell proliferation involved in compound eye morphogenesis"],["GO%3A0060722","cell proliferation involved in embryonic placenta development"]]},{"id":"GO:0009231","l":"riboflavin biosynthetic process","na":1,"nb":36,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["GO%3A0009231","riboflavin biosynthetic process"],["NCBIfam%3ANF000814","6,7-dimethyl-8-ribityllumazine synthase"],["NCBIfam%3ANF009084","6,7-dimethyl-8-ribityllumazine synthase"],["NCBIfam%3ANF013081","6,7-dimethyl-8-ribityllumazine synthase"],["NCBIfam%3ATIGR00114","6,7-dimethyl-8-ribityllumazine synthase"],["NCBIfam%3ANF006803","bifunctional 3,4-dihydroxy-2-butanone-4-phosphate synthase/GTP cyclohydrolase II"]]},{"id":"GO:1900376","l":"regulation of secondary metabolite biosynthetic process","na":1,"nb":36,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"]],"b":[["GO%3A1900377","negative regulation of secondary metabolite biosynthetic process"],["GO%3A1900378","positive regulation of secondary metabolite biosynthetic process"],["GO%3A1900177","regulation of aflatoxin biosynthetic process"],["GO%3A1900626","regulation of arugosin biosynthetic process"],["GO%3A1900379","regulation of asperthecin biosynthetic process"],["GO%3A1900861","regulation of cordyol C biosynthetic process"]]},{"id":"CHEBI:17855","l":"triglyceride","na":1,"nb":34,"a":[["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["EC%3A2.3.1.158","phospholipid:diacylglycerol acyltransferase"],["EC%3A2.3.1.77","triacylglycerol--sterol O-acyltransferase"],["EC%3A3.1.1.3","triacylglycerol lipase"],["EC%3A3.1.1.34","lipoprotein lipase"],["EC%3A3.1.1.79","hormone-sensitive lipase"],["RHEA%3A77987","9-hydroxy-octadecanoate + a triacylglycerol = 9-(acyloxy)-octadecanoate + a 1,3-diacylglycerol"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":1,"nb":34,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["Pfam%3APF25848","Rodlin protein"],["Pfam%3APF13420","Acetyltransferase (GNAT) domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF26381","BREX System ATPase PglY protein 5th domain"],["Pfam%3APF26382","BREX System ATPase PglY protein 6th domain"]]},{"id":"GO:0044780","l":"bacterial-type flagellum assembly","na":1,"nb":30,"a":[["SynCom_MetG2_Rhizobacteria_Sugarcane_Stress_Resilience.html","SynCom MetG2 Rhizobacteria Sugarcane Stress Resilience"]],"b":[["ComplexPortal%3ACPX-4886","DNA-directed RNA polymerase holoenzyme complex, SigmaF variant"],["GO%3A0044780","bacterial-type flagellum assembly"],["NCBIfam%3ANF007836","flagella biosynthesis regulatory protein FliT"],["NCBIfam%3ANF006281","flagella length regulator FlaG"],["NCBIfam%3ANF047373","flagellar assembly lytic transglycosylase"],["NCBIfam%3ATIGR02541","flagellar assembly peptidoglycan hydrolase FlgJ"]]},{"id":"GO:0046718","l":"symbiont entry into host cell","na":1,"nb":30,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["ComplexPortal%3ACPX-5768","MERS-CoV Spike - human DPP4 receptor complex"],["ComplexPortal%3ACPX-5769","MERS-CoV Spike - human DPP4 receptor complex"],["ComplexPortal%3ACPX-5683","SARS-CoV-2 Spike - human ACE2 receptor complex"],["ComplexPortal%3ACPX-6761","SARS-CoV-2 Spike - human CLEC4M lectin complex"],["ComplexPortal%3ACPX-5695","SARS-CoV Spike - human ACE2 receptor complex"],["ComplexPortal%3ACPX-5696","SARS-CoV Spike - human CLEC4M lectin complex"]]},{"id":"GO:0006526","l":"L-arginine biosynthetic process","na":1,"nb":28,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["ComplexPortal%3ACPX-579","Carbamoyl-phosphate synthase arginine-specific"],["ComplexPortal%3ACPX-1937","Carbamoyl phosphate synthetase complex"],["ComplexPortal%3ACPX-1151","N-acetylglutamate synthase NAGS/NAGK complex"],["GO%3A0006526","L-arginine biosynthetic process"],["NCBIfam%3ANF003474","acetylornithine deacetylase"],["NCBIfam%3ATIGR01892","acetylornithine deacetylase"]]},{"id":"CHEBI:16235","l":"guanine","na":1,"nb":27,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["EC%3A2.4.2.1","purine-nucleoside phosphorylase"],["EC%3A2.4.2.15","guanosine phosphorylase"],["EC%3A2.4.2.29","tRNA-guanosine(34) preQ1 transglycosylase"],["EC%3A2.4.2.48","tRNA-guanine(15) transglycosylase"],["EC%3A2.4.2.64","tRNA-guanosine(34) queuine transglycosylase"],["EC%3A2.4.2.8","hypoxanthine phosphoribosyltransferase"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":1,"nb":26,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["Pfam%3APF13372","Alginate export"],["Pfam%3APF25965","ALG44 beta-barrel domain"],["Pfam%3APF25964","ALG44, barrel-sandwich hybrid domain"],["Pfam%3APF16844","Dinitrogenase iron-molybdenum cofactor, N-terminal"],["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"]]},{"id":"CHEBI:16007","l":"methanethiol","na":1,"nb":25,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["EC%3A1.14.13.131","dissimilatory dimethyl-sulfide monooxygenase"],["EC%3A1.8.1.21","dissimilatory dimethyldisulfide reductase"],["EC%3A1.8.3.4","methanethiol oxidase"],["EC%3A2.1.1.251","methylated-thiol--coenzyme M methyltransferase"],["EC%3A2.1.1.334","methanethiol S-methyltransferase"],["EC%3A2.5.1.49","O-acetylhomoserine aminocarboxypropyltransferase"]]},{"id":"CHEBI:17234","l":"glucose","na":25,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:18346","l":"vanillin","na":1,"nb":25,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"]],"b":[["EC%3A1.1.3.38","vanillyl-alcohol oxidase"],["EC%3A1.11.1.16","versatile peroxidase"],["EC%3A1.13.11.43","lignostilbene alphabeta-dioxygenase"],["EC%3A1.13.11.88","isoeugenol monooxygenase"],["EC%3A1.13.11.94","4-vinylguaiacol dioxygenase"],["EC%3A1.2.1.67","vanillin dehydrogenase"]]},{"id":"GO:0031347","l":"regulation of defense response","na":1,"nb":25,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["GO%3A0031348","negative regulation of defense response"],["GO%3A0031349","positive regulation of defense response"],["GO%3A0002759","regulation of antimicrobial humoral response"],["GO%3A2000822","regulation of behavioral fear response"],["GO%3A0010185","regulation of cellular defense response"],["GO%3A2000071","regulation of defense response by callose deposition"]]},{"id":"NCBITaxon:160488","l":"Pseudomonas putida (strain ATCC 47054 / DSM 6125 / CFBP 8728 / NCIMB 11950 / KT2440)","na":1,"nb":25,"a":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF00842","Alanine racemase, C-terminal domain"],["Pfam%3APF01168","Alanine racemase, N-terminal domain"],["Pfam%3APF13372","Alginate export"],["Pfam%3APF03705","CheR methyltransferase, all-alpha domain"],["Pfam%3APF01739","CheR methyltransferase, SAM binding domain"]]},{"id":"NCBITaxon:226186","l":"Bacteroides thetaiotaomicron (strain ATCC 29148 / DSM 2079 / JCM 5827 / CCUG 10774 / NCTC 10582 / VPI-5482 / E50)","na":1,"nb":25,"a":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"]],"b":[["Pfam%3APF06439","3-keto-alpha-glucoside-1,2-lyase-like domain"],["Pfam%3APF13444","Acetyltransferase (GNAT) domain"],["Pfam%3APF19576","Acyltransferase"],["Pfam%3APF23764","GLAA-B beta-barrel domain II"],["Pfam%3APF13715","CarboxypepD_reg-like domain"],["Pfam%3APF26120","SusF, first starch specific CBM"]]},{"id":"GO:0002221","l":"pattern recognition receptor signaling pathway","na":1,"nb":24,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["ComplexPortal%3ACPX-4242","Caspase-1 complex"],["ComplexPortal%3ACPX-952","Caspase-1 complex"],["ComplexPortal%3ACPX-4144","NLRC4 inflammasome"],["ComplexPortal%3ACPX-4082","NLRP1 inflammasome"],["ComplexPortal%3ACPX-4947","NLRP1 inflammasome, variant 1"],["ComplexPortal%3ACPX-4948","NLRP1 inflammasome, variant 2"]]},{"id":"GO:0018958","l":"phenol-containing compound metabolic process","na":1,"nb":24,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["GO%3A0031147","1-(3,5-dichloro-2,6-dihydroxy-4-methoxyphenyl)hexan-1-one metabolic process"],["GO%3A0018921","3-hydroxybenzyl alcohol metabolic process"],["GO%3A1901022","4-hydroxyphenylacetate metabolic process"],["GO%3A0018960","4-nitrophenol metabolic process"],["GO%3A0042215","anaerobic phenol-containing compound metabolic process"],["GO%3A0036182","asperthecin metabolic process"]]},{"id":"GO:0006221","l":"pyrimidine nucleotide biosynthetic process","na":1,"nb":22,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["ComplexPortal%3ACPX-579","Carbamoyl-phosphate synthase arginine-specific"],["GO%3A0009221","pyrimidine deoxyribonucleotide biosynthetic process"],["GO%3A0006221","pyrimidine nucleotide biosynthetic process"],["GO%3A0032262","pyrimidine nucleotide salvage"],["GO%3A0009220","pyrimidine ribonucleotide biosynthetic process"],["NCBIfam%3ANF018158","CTP synthase N-terminus"]]},{"id":"NCBITaxon:4577","l":"Zea mays","na":1,"nb":22,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]],"b":[["IDPO%3A0000002","disorder"],["Pfam%3APF14861","Plant antimicrobial peptide"],["Pfam%3APF02041","Auxin binding protein"],["Pfam%3APF25436","BSD2 cysteine rich domain"],["Pfam%3APF23493","Cysteinyl-tRNA ligase anticodon binding domain"],["Pfam%3APF03330","Lytic transglycolase"]]},{"id":"CHEBI:17437","l":"dimethyl sulfide","na":1,"nb":21,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["EC%3A1.14.13.131","dissimilatory dimethyl-sulfide monooxygenase"],["EC%3A1.14.13.245","assimilatory dimethylsulfide S-monooxygenase"],["EC%3A1.8.2.4","dimethyl sulfide:cytochrome c2 reductase"],["EC%3A1.8.5.3","respiratory dimethylsulfoxide reductase"],["EC%3A2.1.1.19","trimethylsulfonium--tetrahydrofolate N-methyltransferase"],["EC%3A2.1.1.334","methanethiol S-methyltransferase"]]},{"id":"GO:0006817","l":"phosphate ion transport","na":1,"nb":21,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["GO%3A0035435","phosphate ion transmembrane transport"],["GO%3A0006817","phosphate ion transport"],["GO%3A0044341","sodium-dependent phosphate transport"],["NCBIfam%3ANF033774","inorganic phosphate transporter PitA"],["NCBIfam%3ATIGR00972","phosphate ABC transporter ATP-binding protein PstB"],["NCBIfam%3ANF023916","phosphate ABC transporter permease family protein"]]},{"id":"CHEBI:2181","l":"L-fucopyranose","na":1,"nb":20,"a":[["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"]],"b":[["EC%3A1.1.1.122","D-threo-aldose 1-dehydrogenase"],["EC%3A3.2.1.51","alpha-L-fucosidase"],["EC%3A3.2.1.63","1,2-alpha-L-fucosidase"],["EC%3A5.3.1.25","L-fucose isomerase"],["RHEA%3A49308","a neolactoside IV(2)-alpha-Fuc-nLc4Cer(d18:0) + H2O = a neolactoside nLc4Cer(d18:0) + L-fucose"],["RHEA%3A48224","a neolactoside IV(2)-alpha-Fuc-nLc4Cer(d18:1(4E)) + H2O = a neolactoside nLc4Cer(d18:1(4E)) + L-fucose"]]},{"id":"GO:0052031","l":"symbiont-mediated perturbation of host defense response","na":1,"nb":20,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["GO%3A0140415","effector-mediated perturbation of host defenses by symbiont"],["GO%3A0140424","symbiont-mediated activation of blood coagulation, intrinsic pathway"],["GO%3A0039587","symbiont-mediated-mediated suppression of host tetherin activity"],["GO%3A0052084","symbiont-mediated modulation of host ethylene-mediated defense response"],["GO%3A0052031","symbiont-mediated perturbation of host defense response"],["GO%3A0052553","symbiont-mediated perturbation of host immune response"]]},{"id":"CHEBI:18022","l":"thiocyanate","na":1,"nb":19,"a":[["Thiocyanate_Afipia_Thiobacillus_Bioreactor_Community.html","Thiocyanate-Degrading Afipia and Thiobacillus Bioreactor Community"]],"b":[["EC%3A1.8.2.7","thiocyanate desulfurase"],["EC%3A2.1.1.n4","thiocyanate methyltransferase"],["EC%3A2.8.1.1","thiosulfate sulfurtransferase"],["EC%3A3.5.5.8","thiocyanate hydrolase"],["RHEA%3A63880","thiocyanate + 2 Fe(III)-[cytochrome c] + H2O = cyanate + sulfur + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A21464","thiocyanate + H2O + 2 H(+) = carbonyl sulfide + NH4(+)"]]},{"id":"GO:0019319","l":"hexose biosynthetic process","na":1,"nb":19,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["GO%3A0019315","D-allose biosynthetic process"],["GO%3A0046370","fructose biosynthetic process"],["GO%3A0042353","fucose biosynthetic process"],["GO%3A0046369","galactose biosynthetic process"],["GO%3A0006094","gluconeogenesis"],["GO%3A0019319","hexose biosynthetic process"]]},{"id":"NCBITaxon:3847","l":"Glycine max","na":1,"nb":19,"a":[["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["Pfam%3APF02095","Extensin-like protein"],["Pfam%3APF00477","Small hydrophilic plant seed protein"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF08027","Albumin I chain b"],["Pfam%3APF10539","Development and cell death domain"],["Pfam%3APF03386","Early nodulin 93 ENOD93 protein"]]},{"id":"CHEBI:16411","l":"indole-3-acetic acid","na":18,"nb":1,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["proteintraitsmech%3ABIOLIP_IAC","IAC-binding site"]]},{"id":"NCBITaxon:2697049","l":"Severe acute respiratory syndrome coronavirus 2","na":1,"nb":18,"a":[["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"]],"b":[["IDPO%3A0000002","disorder"],["IDPO%3A0000033","flexible linker"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000041","glycosylation display site"],["IDPO%3A0000048","limited proteolysis display site"],["IDPO%3A0000037","molecular recognition display site"]]},{"id":"CHEBI:17120","l":"hexanoate","na":1,"nb":17,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"]],"b":[["EC%3A3.5.1.39","alkylamidase"],["RHEA%3A53496","1-hexanoyl-2-acyl-sn-glycero-3-phosphocholine + H2O = hexanoate + a 2-acyl-sn-glycero-3-phosphocholine + H(+)"],["RHEA%3A54464","1-octadecanoyl-2-hexanoyl-sn-glycero-3-phosphocholine + H2O = hexanoate + 1-octadecanoyl-sn-glycero-3-phosphocholine + H(+)"],["RHEA%3A47352","a hexanoate ester + H2O = an aliphatic alcohol + hexanoate + H(+)"],["RHEA%3A79351","hexanal + 2 Fe(III)-[cytochrome c] + H2O = hexanoate + 2 Fe(II)-[cytochrome c] + 3 H(+)"],["RHEA%3A67276","hexanal + NAD(+) + H2O = hexanoate + NADH + 2 H(+)"]]},{"id":"GO:0015940","l":"pantothenate biosynthetic process","na":1,"nb":17,"a":[["Variovorax_Cryptococcus_Vitamin_Mutualism_Microcosm.html","Variovorax-Cryptococcus Vitamin Cross-Feeding Microcosm"]],"b":[["GO%3A0015940","pantothenate biosynthetic process"],["NCBIfam%3ANF005087","2-dehydropantoate 2-reductase"],["NCBIfam%3ANF005092","2-dehydropantoate 2-reductase"],["NCBIfam%3ANF005093","2-dehydropantoate 2-reductase"],["NCBIfam%3ANF005094","2-dehydropantoate 2-reductase"],["NCBIfam%3ANF006083","2-dehydropantoate 2-reductase"]]},{"id":"GO:0006090","l":"pyruvate metabolic process","na":1,"nb":16,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"]],"b":[["GO%3A0061678","Entner-Doudoroff pathway"],["GO%3A0061718","glucose catabolic process to pyruvate"],["GO%3A0006096","glycolytic process"],["GO%3A0033508","L-glutamate fermentation"],["GO%3A0019617","protocatechuate catabolic process, meta-cleavage"],["GO%3A0042866","pyruvate biosynthetic process"]]},{"id":"GO:0006527","l":"L-arginine catabolic process","na":1,"nb":16,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["GO%3A0006527","L-arginine catabolic process"],["NCBIfam%3ATIGR01273","arginine decarboxylase"],["NCBIfam%3ANF002381","arginine deiminase"],["NCBIfam%3ATIGR01078","arginine deiminase"],["NCBIfam%3ANF007770","arginine N-succinyltransferase"],["NCBIfam%3ATIGR03244","arginine N-succinyltransferase"]]},{"id":"CHEBI:36080","l":"protein","na":1,"nb":15,"a":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A3.A.16","The Endoplasmic Reticular Retrotranslocon (ER-RT) Family"],["TCDB%3A3.A.27","The Endoplasmic Reticulum Membrane Protein Insertion Complex (EMC) Family"],["TCDB%3A9.A.57","The Extended-Synaptotagmin (E-Syt) Family"],["TCDB%3A3.A.13","The Filamentous Phage Exporter (FPhE) Family"],["TCDB%3A9.A.37","The Nuclear Import Tax Protein (Tax) Family"]]},{"id":"GO:0044010","l":"single-species biofilm formation","na":1,"nb":15,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"]],"b":[["ComplexPortal%3ACPX-4063","ChpBS toxin-antitoxin complex"],["ComplexPortal%3ACPX-4743","Curli secretion complex"],["ComplexPortal%3ACPX-1079","DinJ-YafQ toxin-antitoxin complex"],["ComplexPortal%3ACPX-3296","Fucose-binding lectin II complex"],["ComplexPortal%3ACPX-1086","MazEF toxin-antitoxin complex"],["ComplexPortal%3ACPX-1084","MqsRA toxin-antitoxin complex"]]},{"id":"GO:0051453","l":"regulation of intracellular pH","na":1,"nb":15,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["ComplexPortal%3ACPX-3090","Glutathione-regulated potassium-efflux system KefB-KefG complex"],["ComplexPortal%3ACPX-2543","Glutathione-regulated potassium-efflux system KefC-KefF complex"],["ComplexPortal%3ACPX-26449","Sodium/proton exchanger complex, NHE1-CHP1 variant"],["ComplexPortal%3ACPX-26462","Sodium/proton exchanger complex, NHE1-CHP2 variant"],["ComplexPortal%3ACPX-26464","Sodium/proton exchanger complex, NHE1-CHP3 variant"],["ComplexPortal%3ACPX-26469","Sodium/proton exchanger complex, NHE2-CHP1 variant"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":1,"nb":15,"a":[["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"]],"b":[["Pfam%3APF03703","Bacterial PH domain"],["Pfam%3APF01322","Cytochrome C'"],["Pfam%3APF03139","Vanadium/alternative nitrogenase delta subunit"],["Pfam%3APF09527","Putative F0F1-ATPase subunit Ca2+/Mg2+ transporter"],["Pfam%3APF03270","Protein of unknown function, DUF269"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"]]},{"id":"NCBITaxon:2157","l":"Archaea","na":15,"nb":1,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2157","Archaea orthologous groups (OrthoDB)"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":15,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["Pfam%3APF07832","Cfr10I/Bse634I restriction endonuclease"],["Pfam%3APF22348","Colicin-A N-terminal domain"],["Pfam%3APF01024","Colicin pore forming domain"],["Pfam%3APF18427","DD-reactivating factor swiveling domain"],["Pfam%3APF02286","Dehydratase large subunit"],["Pfam%3APF02288","Dehydratase medium subunit"]]},{"id":"GO:0009607","l":"response to biotic stimulus","na":1,"nb":14,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["GO%3A0071216","cellular response to biotic stimulus"],["GO%3A0009595","detection of biotic stimulus"],["GO%3A0036180","filamentous growth of a population of unicellular organisms in response to biotic stimulus"],["GO%3A0009607","response to biotic stimulus"],["GO%3A0043207","response to external biotic stimulus"],["GO%3A1990840","response to lectin"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":1,"nb":14,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF02224","Cytidylate kinase"],["Pfam%3APF03319","Ethanolamine utilisation protein EutN/carboxysome"],["Pfam%3APF22019","alpha-1,4-glucan branching enzyme GlgB, N-terminal domain"],["Pfam%3APF21714","Circadian clock protein KaiA, N-terminal domain"],["Pfam%3APF07688","KaiA C-terminal domain"]]},{"id":"NCBITaxon:267377","l":"Methanococcus maripaludis (strain DSM 14266 / JCM 13030 / NBRC 101832 / S2 / LL)","na":1,"nb":14,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"]],"b":[["Pfam%3APF09171","N-glycosylase/DNA lyase"],["Pfam%3APF06847","Archaeal Peptidase A24 C-terminus Type II"],["Pfam%3APF06819","Archaeal Peptidase A24 C-terminal Domain"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF26558","3-dehydroquinate synthase II C-terminal domain"],["Pfam%3APF01959","3-dehydroquinate synthase II N-terminal domain"]]},{"id":"GO:0019076","l":"viral release from host cell","na":1,"nb":13,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0046753","non-lytic viral release"],["GO%3A0044659","viral release from host cell by cytolysis"],["GO%3A0019076","viral release from host cell"],["Reactome%3AR-HSA-168298","Release"],["NCBIfam%3ANF037577","Rz1-like spanin outer membrane subunit"],["NCBIfam%3ANF012767","Vpu"]]},{"id":"GO:2000145","l":"regulation of cell motility","na":1,"nb":13,"a":[["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["GO%3A2000146","negative regulation of cell motility"],["GO%3A2000147","positive regulation of cell motility"],["GO%3A1905416","regulation of amoeboid sperm motility"],["GO%3A1902021","regulation of bacterial-type flagellum-dependent cell motility"],["GO%3A0030334","regulation of cell migration"],["GO%3A2000145","regulation of cell motility"]]},{"id":"NCBITaxon:165179","l":"Segatella copri","na":1,"nb":13,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["TED%3AAF-A0A3R6DW71-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3R6DW71-F1-model_v4_TED02"],["TED%3AAF-A0A3R6EGS2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R6EGS2-F1-model_v4_TED01"],["TED%3AAF-A0A5Q5FTM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Q5FTM4-F1-model_v4_TED01"],["TED%3AAF-A0A3R5WNG5-F1-model_v4_TED02","TED novel fold AF-A0A3R5WNG5-F1-model_v4_TED02"],["TED%3AAF-A0A3R5YKW9-F1-model_v4_TED01","TED novel fold AF-A0A3R5YKW9-F1-model_v4_TED01"],["TED%3AAF-A0A3R6FRY2-F1-model_v4_TED01","TED novel fold AF-A0A3R6FRY2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:239","l":"Flavobacterium sp.","na":1,"nb":13,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["Pfam%3APF21331","Isoamylase, C-terminal"],["TED%3AAF-A0A2E4PC55-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E4PC55-F1-model_v4_TED02"],["TED%3AAF-A0A2E4PGC5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4PGC5-F1-model_v4_TED01"],["TED%3AAF-A0A2E4PMB7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E4PMB7-F1-model_v4_TED02"],["TED%3AAF-A0A355BEV2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A355BEV2-F1-model_v4_TED02"],["TED%3AAF-A0A519QLA6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A519QLA6-F1-model_v4_TED01"]]},{"id":"CHEBI:16188","l":"octan-1-ol","na":1,"nb":12,"a":[["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["EC%3A1.1.1.73","octanol dehydrogenase"],["EC%3A1.14.15.3","alkane 1-monooxygenase"],["RHEA%3A79323","octan-1-ol + 2 Fe(III)-[cytochrome c] = octanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A64628","octan-1-ol + acetyl-CoA = octyl acetate + CoA"],["RHEA%3A64852","octan-1-ol + benzoyl-CoA = octyl benzoate + CoA"],["RHEA%3A44064","octan-1-ol + hexadecanoyl-CoA = octyl hexadecanoate + CoA"]]},{"id":"GO:0043419","l":"urea catabolic process","na":1,"nb":12,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"]],"b":[["ComplexPortal%3ACPX-1296","Urease activation complex"],["GO%3A0043419","urea catabolic process"],["NCBIfam%3ANF010592","urease subunit alpha"],["NCBIfam%3ANF009682","urease subunit beta"],["NCBIfam%3ANF010591","urease subunit beta"],["NCBIfam%3ANF009712","urease subunit gamma"]]},{"id":"GO:0061687","l":"detoxification of inorganic compound","na":1,"nb":12,"a":[["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["GO%3A0140114","cellular detoxification of fluoride"],["GO%3A0140961","cellular detoxification of metal ion"],["GO%3A0140982","detoxification of aluminum ion"],["GO%3A0071585","detoxification of cadmium ion"],["GO%3A0010299","detoxification of cobalt ion"],["GO%3A0010273","detoxification of copper ion"]]},{"id":"CHEBI:16136","l":"hydrogen sulfide","na":11,"nb":1,"a":[["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["MCSA%3A398","sulfite reductase (NADPH)"]]},{"id":"CHEBI:16918","l":"gallate","na":1,"nb":11,"a":[["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["EC%3A1.13.11.57","gallate dioxygenase"],["EC%3A2.1.1.341","vanillate/3-O-methylgallate O-demethylase"],["EC%3A2.4.1.136","gallate 1-beta-glucosyltransferase"],["EC%3A3.1.1.20","tannase"],["EC%3A4.1.1.59","gallate decarboxylase"],["RHEA%3A12749","3,4,5-trihydroxybenzoate + H(+) = 1,2,3-trihydroxybenzene + CO2"]]},{"id":"CHEBI:17847","l":"p-cresol","na":1,"nb":11,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["EC%3A1.14.13.236","toluene 4-monooxygenase"],["EC%3A1.17.9.1","4-methylphenol dehydrogenase (hydroxylating)"],["EC%3A4.1.1.83","4-hydroxyphenylacetate decarboxylase"],["EC%3A4.1.99.19","2-iminoacetate synthase"],["RHEA%3A22732","4-hydroxyphenylacetate + H(+) = 4-methylphenol + CO2"],["RHEA%3A56976","4-methylphenol + 2 oxidized [azurin] + H2O = 4-hydroxybenzyl alcohol + 2 reduced [azurin] + 2 H(+)"]]},{"id":"CHEBI:18212","l":"selenite(2-)","na":1,"nb":11,"a":[["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"]],"b":[["EC%3A1.97.1.14","selenate reductase (quinol)"],["EC%3A1.97.1.9","selenate reductase (cytochrome c)"],["RHEA%3A80603","selenite + 2 Fe(III)-[cytochrome c] + H2O = 2 Fe(II)-[cytochrome] + selenate + 2 H(+)"],["RHEA%3A34903","selenite + 4 glutathione + 2 H(+) = selenodiglutathione + glutathione disulfide + 3 H2O"],["RHEA%3A14029","selenite + A + H2O = selenate + AH2"],["RHEA%3A51636","selenite + a quinone + H2O = selenate + a quinol"]]},{"id":"CHEBI:28009","l":"N-acetyl-beta-D-glucosamine","na":1,"nb":11,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]],"b":[["RHEA%3A85211","alpha-di-N-acetylchitobiose + H2O = N-acetyl-beta-D-glucosamine + N-acetyl-alpha-D-glucosamine"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"],["TCDB%3A4.A.6","The PTS Mannose-Fructose-Sorbose (Man) Family"]]},{"id":"CHEBI:28685","l":"molybdenum atom","na":1,"nb":11,"a":[["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_MO","MO-binding site"],["proteintraitsmech%3AMETALPDB_MO_DINUCLEAR","dinuclear molybdenum site"],["proteintraitsmech%3AMETALPDB_MO_HEPTANUCLEAR","heptanuclear molybdenum site"],["proteintraitsmech%3AMETALPDB_MO_HEXANUCLEAR","hexanuclear molybdenum site"],["proteintraitsmech%3AMETALPDB_MO_MONONUCLEAR","mononuclear molybdenum site"],["proteintraitsmech%3AMETALPDB_MO_MULTINUCLEAR","multinuclear molybdenum site"]]},{"id":"CHEBI:49807","l":"lead(2+)","na":1,"nb":11,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_49807","requires lead(2+)"],["RHEA%3A52580","Pb(2+)(in) + ATP + H2O = Pb(2+)(out) + ADP + phosphate + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.4","The Cation Diffusion Facilitator (CDF) Family"],["TCDB%3A2.A.11","The Citrate-Mg2+:H+ (CitM) Citrate-Ca2+:H+ (CitH) Symporter (CitMHS) Family"],["TCDB%3A1.A.87","The Mechanosensitive Calcium Channel (MCA) Family"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":11,"a":[["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"]],"b":[["Pfam%3APF07835","Bacterial aa3 type cytochrome c oxidase subunit IV"],["Pfam%3APF04828","Glutathione-dependent formaldehyde-activating enzyme"],["Pfam%3APF16448","LapD/MoxY periplasmic domain"],["Pfam%3APF17267","Family of unknown function (DUF5333)"],["Pfam%3APF17272","Family of unknown function (DUF5337)"],["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"]]},{"id":"CHEBI:15075","l":"selenate","na":1,"nb":10,"a":[["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"]],"b":[["EC%3A1.97.1.14","selenate reductase (quinol)"],["EC%3A1.97.1.9","selenate reductase (cytochrome c)"],["RHEA%3A34887","selenate(in) = selenate(out)"],["RHEA%3A72079","selenate(out) + 3 Na(+)(out) = selenate(in) + 3 Na(+)(in)"],["RHEA%3A34883","selenate(out) + ATP + H2O = selenate(in) + ADP + phosphate + H(+)"],["RHEA%3A80603","selenite + 2 Fe(III)-[cytochrome c] + H2O = 2 Fe(II)-[cytochrome] + selenate + 2 H(+)"]]},{"id":"CHEBI:15688","l":"acetoin","na":1,"nb":10,"a":[["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"]],"b":[["EC%3A2.2.1.4","acetoin--ribose-5-phosphate transaldolase"],["EC%3A2.3.1.190","acetoin dehydrogenase system"],["RHEA%3A54364","2 acetaldehyde = acetoin"],["RHEA%3A76879","3-aminobutan-2-ol + NAD(+) + H2O = acetoin + NH4(+) + NADH + H(+)"],["RHEA%3A76931","3-aminobutan-2-ol + NADP(+) + H2O = acetoin + NH4(+) + NADPH + H(+)"],["RHEA%3A54368","acetaldehyde + pyruvate + H(+) = acetoin + CO2"]]},{"id":"CHEBI:16581","l":"pregnenolone","na":1,"nb":10,"a":[["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"]],"b":[["EC%3A1.14.14.19","steroid 17alpha-monooxygenase"],["EC%3A1.14.15.6","cholesterol monooxygenase (side-chain-cleaving)"],["RHEA%3A34343","(20R,22R)-20,22-dihydroxycholesterol + 2 reduced [adrenodoxin] + O2 + 2 H(+) = 4-methylpentanal + pregnenolone + 2 oxidized [adrenodoxin] + 2 H2O"],["RHEA%3A35739","6 reduced [adrenodoxin] + cholesterol + 3 O2 + 6 H(+) = 4-methylpentanal + pregnenolone + 6 oxidized [adrenodoxin] + 4 H2O"],["RHEA%3A52356","pregnenolone + 3'-phosphoadenylyl sulfate = pregnenolone sulfate + adenosine 3',5'-bisphosphate + H(+)"],["RHEA%3A43924","pregnenolone + NAD(+) = pregn-5-ene-3,20-dione + NADH + H(+)"]]},{"id":"CHEBI:17051","l":"fluoride","na":1,"nb":10,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["EC%3A2.5.1.63","adenosyl-fluoride synthase"],["EC%3A3.8.1.3","haloacetate dehalogenase"],["EC%3A3.8.2.2","diisopropyl-fluorophosphatase"],["RHEA%3A24100","diisopropyl fluorophosphate + H2O = diisopropyl phosphate + fluoride + 2 H(+)"],["RHEA%3A76159","fluoride(in) = fluoride(out)"],["RHEA%3A16661","fluoride + S-adenosyl-L-methionine = 5'-deoxy-5'-fluoroadenosine + L-methionine"]]},{"id":"GO:0006548","l":"L-histidine catabolic process","na":1,"nb":10,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["GO%3A0006548","L-histidine catabolic process"],["Reactome%3AR-HSA-70921","Histidine catabolism"],["proteintraitsmech%3ASEED_SUBSYSTEM_Histidine_Degradation","Histidine Degradation"],["NCBIfam%3ATIGR01227","formimidoylglutamase"],["NCBIfam%3ATIGR02022","formimidoylglutamate deiminase"],["NCBIfam%3ATIGR02024","glutamate formimidoyltransferase"]]},{"id":"GO:0070482","l":"response to oxygen levels","na":1,"nb":10,"a":[["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"]],"b":[["ComplexPortal%3ACPX-3982","dosPC diguanylate cyclase/c-di-GMP phosphodiesterase complex"],["ComplexPortal%3ACPX-1882","HAP1 transcriptional repressor complex, SSA1 variant"],["ComplexPortal%3ACPX-1883","HAP1 transcriptional repressor complex, SSA2 variant"],["ComplexPortal%3ACPX-1276","HMC complex"],["GO%3A0071453","cellular response to oxygen levels"],["GO%3A0003032","detection of oxygen"]]},{"id":"GO:2000146","l":"negative regulation of cell motility","na":1,"nb":10,"a":[["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["GO%3A1905417","negative regulation of amoeboid sperm motility"],["GO%3A1902201","negative regulation of bacterial-type flagellum-dependent cell motility"],["GO%3A0030336","negative regulation of cell migration"],["GO%3A2000146","negative regulation of cell motility"],["GO%3A1902020","negative regulation of cilium-dependent cell motility"],["PANTHER%3APTHR28616","COILED-COIL DOMAIN-CONTAINING PROTEIN 125"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":1,"nb":10,"a":[["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF09081","Glucan 1,4-alpha-maltotetraohydrolase, domain C"],["Pfam%3APF09459","Ethylbenzene dehydrogenase"],["Pfam%3APF08406","CbbQ/NirQ/NorQ C-terminal"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"],["Pfam%3APF18793","Nitrous oxide reductase propeller repeat 2"]]},{"id":"NCBITaxon:853","l":"Faecalibacterium prausnitzii","na":1,"nb":10,"a":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"]],"b":[["TED%3AAF-A0A2A7AJ69-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A7AJ69-F1-model_v4_TED01"],["TED%3AAF-A0A329UNG0-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A329UNG0-F1-model_v4_TED05"],["TED%3AAF-A0A3F3JVN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3F3JVN3-F1-model_v4_TED01"],["TED%3AAF-A0A564SWB8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A564SWB8-F1-model_v4_TED02"],["TED%3AAF-A0A173SIF7-F1-model_v4_TED01","TED novel fold AF-A0A173SIF7-F1-model_v4_TED01"],["TED%3AAF-A0A173WYP6-F1-model_v4_TED01","TED novel fold AF-A0A173WYP6-F1-model_v4_TED01"]]},{"id":"CHEBI:18248","l":"iron atom","na":1,"nb":9,"a":[["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18248","requires Fe"],["proteintraitsmech%3AMETALPDB_FE_DINUCLEAR","dinuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_HEPTANUCLEAR","heptanuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_HEXANUCLEAR","hexanuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_MONONUCLEAR","mononuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_OCTANUCLEAR","octanuclear iron site"]]},{"id":"CHEBI:26710","l":"sodium chloride","na":9,"nb":1,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["TCDB%3A2.A.30","The Cation-Chloride Cotransporter (CCC) Family"]]},{"id":"GO:0009266","l":"response to temperature stimulus","na":1,"nb":9,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["GO%3A0071502","cellular response to temperature stimulus"],["GO%3A0016048","detection of temperature stimulus"],["GO%3A0009409","response to cold"],["GO%3A0009408","response to heat"],["GO%3A0009266","response to temperature stimulus"],["GO%3A0010378","temperature compensation of the circadian clock"]]},{"id":"GO:0043903","l":"regulation of biological process involved in symbiotic interaction","na":1,"nb":9,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["GO%3A0052372","modulation by symbiont of entry into host"],["GO%3A0140471","positive regulation of transepithelial migration of symbiont in host"],["GO%3A0043903","regulation of biological process involved in symbiotic interaction"],["GO%3A0075045","regulation of formation by symbiont of haustorium for nutrient acquisition from host"],["GO%3A1901252","regulation of intracellular transport of viral material"],["GO%3A0070949","regulation of neutrophil mediated killing of symbiont cell"]]},{"id":"NCBITaxon:1344414","l":"Trichoderma reesei RUT C-30","na":1,"nb":9,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["Pfam%3APF00457","Glycosyl hydrolases family 11"],["Pfam%3APF01341","Glycosyl hydrolases family 6"],["PROSITE%3APS00155","Cutinase, serine active site"],["PROSITE%3APS00776","Glycosyl hydrolases family 11 (GH11) active site signature 1"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"],["PROSITE%3APS00655","Glycosyl hydrolases family 6 signature 1"]]},{"id":"NCBITaxon:2903","l":"Emiliania huxleyi","na":1,"nb":9,"a":[["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"]],"b":[["TED%3AAF-A0A7S3RZJ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3RZJ4-F1-model_v4_TED01"],["TED%3AAF-A0A7S3W933-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3W933-F1-model_v4_TED01"],["TED%3AAF-A0A7S3W9Q3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3W9Q3-F1-model_v4_TED01"],["TED%3AAF-R1DPG1-F1-model_v4_TED01","TED highly-symmetric fold AF-R1DPG1-F1-model_v4_TED01"],["TED%3AAF-A0A7S3TQB6-F1-model_v4_TED02","TED novel fold AF-A0A7S3TQB6-F1-model_v4_TED02"],["TED%3AAF-R1BEB4-F1-model_v4_TED01","TED novel fold AF-R1BEB4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:4081","l":"Solanum lycopersicum","na":1,"nb":9,"a":[["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF02977","Carboxypeptidase A inhibitor"],["Pfam%3APF26410","GH family 5 beta-mannosidase-like"],["Pfam%3APF02496","ABA/WDS induced protein"],["Pfam%3APF17302","Family of unknown function (DUF5351)"],["PROSITE%3APS00502","Polygalacturonase active site"]]},{"id":"CHEBI:27698","l":"vanadium atom","na":1,"nb":8,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_V_DECANUCLEAR","decanuclear vanadium site"],["proteintraitsmech%3AMETALPDB_V_DINUCLEAR","dinuclear vanadium site"],["proteintraitsmech%3AMETALPDB_V_HEPTANUCLEAR","heptanuclear vanadium site"],["proteintraitsmech%3AMETALPDB_V_HEXANUCLEAR","hexanuclear vanadium site"],["proteintraitsmech%3AMETALPDB_V_MONONUCLEAR","mononuclear vanadium site"],["proteintraitsmech%3AMETALPDB_V_OCTANUCLEAR","octanuclear vanadium site"]]},{"id":"GO:0042402","l":"biogenic amine catabolic process","na":1,"nb":8,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"]],"b":[["GO%3A0042402","biogenic amine catabolic process"],["GO%3A0042424","catecholamine catabolic process"],["GO%3A0042426","choline catabolic process"],["GO%3A0046336","ethanolamine catabolic process"],["GO%3A0001695","histamine catabolic process"],["GO%3A0046334","octopamine catabolic process"]]},{"id":"GO:0042436","l":"indole-containing compound catabolic process","na":1,"nb":8,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["GO%3A0042433","indole catabolic process"],["GO%3A0042436","indole-containing compound catabolic process"],["GO%3A0042344","indole glucosinolate catabolic process"],["GO%3A0046216","indole phytoalexin catabolic process"],["GO%3A0042437","indoleacetic acid catabolic process"],["GO%3A0006569","L-tryptophan catabolic process"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":1,"nb":8,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"]],"b":[["Pfam%3APF19443","DAHL domain"],["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"],["Pfam%3APF03524","Conjugal transfer protein"],["Pfam%3APF27439","Chaperone protein DnaJ C-terminal region"],["Pfam%3APF10907","Protein of unknown function (DUF2749)"],["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]]},{"id":"CHEBI:25017","l":"leucine","na":1,"nb":7,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.78","The Branched Chain Amino Acid Exporter (LIV-E) Family"],["TCDB%3A2.A.76","The Resistance to Homoserine/Threonine (RhtB) Family"],["MCSA%3A172","isoaspartyl dipeptidase"]]},{"id":"CHEBI:29195","l":"cyanate","na":1,"nb":7,"a":[["Thiocyanate_Afipia_Thiobacillus_Bioreactor_Community.html","Thiocyanate-Degrading Afipia and Thiobacillus Bioreactor Community"]],"b":[["EC%3A1.8.2.7","thiocyanate desulfurase"],["EC%3A4.2.1.104","cyanase"],["RHEA%3A11120","cyanate + hydrogencarbonate + 3 H(+) = NH4(+) + 2 CO2"],["RHEA%3A18489","cyanate + hydrogencarbonate + H(+) = carbamate + CO2"],["RHEA%3A29231","cyanate(in) = cyanate(out)"],["RHEA%3A63880","thiocyanate + 2 Fe(III)-[cytochrome c] + H2O = cyanate + sulfur + 2 Fe(II)-[cytochrome c] + 2 H(+)"]]},{"id":"CHEBI:32379","l":"cis,cis-muconate","na":1,"nb":7,"a":[["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["EC%3A1.13.11.1","catechol 1,2-dioxygenase"],["EC%3A5.5.1.1","muconate cycloisomerase"],["RHEA%3A23852","catechol + O2 = cis,cis-muconate + 2 H(+)"],["RHEA%3A30031","(S)-muconolactone = cis,cis-muconate + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["MCSA%3A959","muconate cycloisomerase (anti)"]]},{"id":"CHEBI:37166","l":"xylan","na":7,"nb":1,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:49713","l":"lithium(1+)","na":1,"nb":7,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["RHEA%3A72631","3 Li(+)(out) + Ca(2+)(in) = 3 Li(+)(in) + Ca(2+)(out)"],["RHEA%3A70431","Li(+)(in) + 2 H(+)(out) = Li(+)(out) + 2 H(+)(in)"],["RHEA%3A75063","Li(+)(in) + 2 hydrogencarbonate(in) + chloride(out) = Li(+)(out) + 2 hydrogencarbonate(out) + chloride(in)"],["RHEA%3A78551","Li(+)(in) = Li(+)(out)"],["RHEA%3A72415","Li(+)(in) + Na(+)(out) = Li(+)(out) + Na(+)(in)"],["RHEA%3A72407","Li(+)(out) + H(+)(in) = Li(+)(in) + H(+)(out)"]]},{"id":"GO:0009292","l":"horizontal gene transfer","na":1,"nb":7,"a":[["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"]],"b":[["GO%3A0009294","DNA-mediated transformation"],["GO%3A0009292","horizontal gene transfer"],["GO%3A0009293","transduction"],["GO%3A0009291","unidirectional conjugation"],["NCBIfam%3ATIGR04359","entry exclusion lipoprotein TrbK"],["NCBIfam%3ATIGR04361","entry exclusion protein TrbK"]]},{"id":"GO:0040011","l":"locomotion","na":1,"nb":7,"a":[["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"]],"b":[["GO%3A0033058","directional locomotion"],["GO%3A0060361","flight"],["GO%3A0040011","locomotion"],["GO%3A0031987","locomotion involved in locomotory behavior"],["GO%3A0071965","multicellular organismal locomotion"],["GO%3A0036268","swimming"]]},{"id":"GO:0075136","l":"response to host","na":1,"nb":7,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0075136","response to host"],["GO%3A0075139","response to host iron concentration"],["GO%3A0075000","response to host osmotic environment"],["GO%3A0075138","response to host oxygen tension environment"],["GO%3A0075293","response to host pH environment"],["GO%3A0075137","response to host redox environment"]]},{"id":"NCBITaxon:2030806","l":"Burkholderiaceae bacterium","na":1,"nb":7,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["TED%3AAF-A0A5C7NHS1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7NHS1-F1-model_v4_TED01"],["TED%3AAF-A0A5C7Q2S0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A5C7Q2S0-F1-model_v4_TED04"],["TED%3AAF-A0A7L5Y4H7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7L5Y4H7-F1-model_v4_TED02"],["TED%3AAF-A0A520VNE1-F1-model_v4_TED02","TED novel fold AF-A0A520VNE1-F1-model_v4_TED02"],["TED%3AAF-A0A522SAF0-F1-model_v4_TED01","TED novel fold AF-A0A522SAF0-F1-model_v4_TED01"],["TED%3AAF-A0A5C7NTX8-F1-model_v4_TED02","TED novel fold AF-A0A5C7NTX8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:5722","l":"Trichomonas vaginalis","na":1,"nb":7,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["TED%3AAF-A2F3M7-F1-model_v4_TED03","TED highly-symmetric fold AF-A2F3M7-F1-model_v4_TED03"],["TED%3AAF-A2HEW4-F1-model_v4_TED01","TED highly-symmetric fold AF-A2HEW4-F1-model_v4_TED01"],["TED%3AAF-A2DT59-F1-model_v4_TED01","TED novel fold AF-A2DT59-F1-model_v4_TED01"],["TED%3AAF-A2E7I9-F1-model_v4_TED02","TED novel fold AF-A2E7I9-F1-model_v4_TED02"],["TED%3AAF-A2F6I8-F1-model_v4_TED02","TED novel fold AF-A2F6I8-F1-model_v4_TED02"],["TED%3AAF-A2FV33-F1-model_v4_TED01","TED novel fold AF-A2FV33-F1-model_v4_TED01"]]},{"id":"CHEBI:29287","l":"gold atom","na":1,"nb":6,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"]],"b":[["proteintraitsmech%3AMETALPDB_AU_DINUCLEAR","dinuclear gold site"],["proteintraitsmech%3AMETALPDB_AU_HEXANUCLEAR","hexanuclear gold site"],["proteintraitsmech%3AMETALPDB_AU_MONONUCLEAR","mononuclear gold site"],["proteintraitsmech%3AMETALPDB_AU_PENTANUCLEAR","pentanuclear gold site"],["proteintraitsmech%3AMETALPDB_AU_TETRANUCLEAR","tetranuclear gold site"],["proteintraitsmech%3AMETALPDB_AU_TRINUCLEAR","trinuclear gold site"]]},{"id":"CHEBI:30769","l":"citric acid","na":6,"nb":1,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["proteintraitsmech%3ABIOLIP_CIT","CIT-binding site"]]},{"id":"CHEBI:32139","l":"sodium hydrogencarbonate","na":6,"nb":1,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["TCDB%3A2.A.31","The Anion Exchanger (AE) Family"]]},{"id":"CHEBI:86471","l":"pyrite","na":6,"nb":1,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"GO:0009268","l":"response to pH","na":1,"nb":6,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["GO%3A0071467","cellular response to pH"],["GO%3A0036177","filamentous growth of a population of unicellular organisms in response to pH"],["GO%3A0010447","response to acidic pH"],["GO%3A0010446","response to alkaline pH"],["GO%3A0036176","response to neutral pH"],["GO%3A0009268","response to pH"]]},{"id":"GO:0044409","l":"symbiont entry into host","na":1,"nb":6,"a":[["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"]],"b":[["GO%3A0120326","appressorium-mediated entry into host"],["GO%3A0140717","entry into host through the stromata"],["GO%3A0035635","entry of bacterium into host cell"],["GO%3A0046718","symbiont entry into host cell"],["GO%3A0044409","symbiont entry into host"],["Reactome%3AR-HSA-173107","Binding and entry of HIV virion"]]},{"id":"GO:0045733","l":"acetate catabolic process","na":6,"nb":1,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"],["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]],"b":[["GO%3A0045733","acetate catabolic process"]]},{"id":"GO:0140253","l":"cell-cell fusion","na":1,"nb":6,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["ComplexPortal%3ACPX-3089","EFF-1 complex"],["GO%3A0140253","cell-cell fusion"],["GO%3A0000755","cytogamy"],["GO%3A0000768","syncytium formation by cell-cell fusion"],["PANTHER%3APTHR37415","EFF-1A"],["PANTHER%3APTHR41686","MYOMIXER"]]},{"id":"GO:1900190","l":"regulation of single-species biofilm formation","na":1,"nb":6,"a":[["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["ComplexPortal%3ACPX-4681","YiaMNO tripartite ATP-independent periplasmic transporter complex"],["GO%3A1900191","negative regulation of single-species biofilm formation"],["GO%3A1900192","positive regulation of single-species biofilm formation"],["GO%3A1900190","regulation of single-species biofilm formation"],["GO%3A1900228","regulation of single-species biofilm formation in or on host organism"],["GO%3A1900231","regulation of single-species biofilm formation on inanimate substrate"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":6,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["Pfam%3APF03437","BtpA family"]]},{"id":"NCBITaxon:2268204","l":"Thermoplasmatales archaeon","na":1,"nb":6,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["TED%3AAF-A0A7C2AKF2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7C2AKF2-F1-model_v4_TED03"],["TED%3AAF-A0A7J2S4D8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7J2S4D8-F1-model_v4_TED03"],["TED%3AAF-A0A7J3TK18-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7J3TK18-F1-model_v4_TED02"],["TED%3AAF-A0A7C1E5G8-F1-model_v4_TED01","TED novel fold AF-A0A7C1E5G8-F1-model_v4_TED01"],["TED%3AAF-A0A842X889-F1-model_v4_TED01","TED novel fold AF-A0A842X889-F1-model_v4_TED01"],["TED%3AAF-A0A842X9F6-F1-model_v4_TED01","TED novel fold AF-A0A842X9F6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":1,"nb":6,"a":[["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["Pfam%3APF02929","Beta galactosidase small chain"],["Pfam%3APF27279","Fumarate--diaminopropanoate ligase C-terminal domain"],["Pfam%3APF18024","Helix-turn-helix domain"],["Pfam%3APF16353","Beta-galactosidase, domain 4"],["PROSITE%3APS00594","Aromatic amino acids permeases signature"],["PROSITE%3APS00853","Beta-eliminating lyases pyridoxal-phosphate attachment site"]]},{"id":"CHEBI:16828","l":"L-tryptophan","na":5,"nb":1,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["proteintraitsmech%3ABIOLIP_TRP","TRP-binding site"]]},{"id":"CHEBI:17439","l":"cyanocob(III)alamin","na":1,"nb":5,"a":[["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["EC%3A1.16.1.6","cyanocobalamin reductase"],["RHEA%3A16113","2 cob(II)alamin-[cyanocobalamin reductase] + 2 hydrogen cyanide + NADP(+) = 2 cyanocob(III)alamin + 2 apo-[cyanocobalamin reductase] + NADPH + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["TCDB%3A9.B.87","The Selenoprotein P Receptor (SelP-Receptor) Family"]]},{"id":"CHEBI:24875","l":"iron cation","na":1,"nb":5,"a":[["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_24875","requires iron cation"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.S.6","The Bacterial/Archaeal Nanocompartment Encapsulin Shell Protein1 (BANC-SP1) Family"],["TCDB%3A2.A.55","The Metal Ion (Mn2+-iron) Transporter (Nramp) Family"],["TCDB%3A5.B.1","The Phagocyte (gp91phox) NADPH Oxidase Family"]]},{"id":"CHEBI:27750","l":"ethyl acetate","na":1,"nb":5,"a":[["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["EC%3A2.3.1.268","ethanol O-acetyltransferase"],["EC%3A3.1.1.113","ethyl acetate hydrolase"],["RHEA%3A55972","ethanol + acetyl-CoA = ethyl acetate + CoA"],["RHEA%3A58148","ethyl acetate + H2O = ethanol + acetate + H(+)"],["proteintraitsmech%3ABIOLIP_EEE","EEE-binding site"]]},{"id":"CHEBI:30776","l":"hexanoic acid","na":5,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["proteintraitsmech%3ABIOLIP_6NA","6NA-binding site"]]},{"id":"CHEBI:33364","l":"platinum","na":1,"nb":5,"a":[["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_PT_DINUCLEAR","dinuclear platinum site"],["proteintraitsmech%3AMETALPDB_PT_HEXANUCLEAR","hexanuclear platinum site"],["proteintraitsmech%3AMETALPDB_PT_MONONUCLEAR","mononuclear platinum site"],["proteintraitsmech%3AMETALPDB_PT_TETRANUCLEAR","tetranuclear platinum site"],["proteintraitsmech%3AMETALPDB_PT_TRINUCLEAR","trinuclear platinum site"]]},{"id":"CHEBI:35899","l":"crotonate","na":1,"nb":5,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["EC%3A1.3.1.31","2-enoate reductase"],["RHEA%3A74903","(2E)-2-butenoate + ATP + H(+) = (2E)-but-2-enoyl-AMP + diphosphate"],["RHEA%3A74899","(2E)-2-butenoate + holo-[ACP] + ATP = (2E)-butenoyl-[ACP] + AMP + diphosphate"],["RHEA%3A10200","butanoate + NAD(+) = (2E)-2-butenoate + NADH + H(+)"],["RHEA%3A69172","N(6)-(2E)-butenoyl-L-lysyl-[protein] + H2O = (2E)-2-butenoate + L-lysyl-[protein]"]]},{"id":"CHEBI:37671","l":"(1->3)-beta-D-glucan","na":1,"nb":5,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"]],"b":[["EC%3A2.4.1.30","1,3-beta-oligoglucan phosphorylase"],["EC%3A2.4.1.34","1,3-beta-glucan synthase"],["EC%3A2.4.1.97","1,3-beta-D-glucan phosphorylase"],["RHEA%3A16041","[(1->3)-beta-D-glucosyl](n) + phosphate = [(1->3)-beta-D-glucosyl](n-1) + alpha-D-glucose 1-phosphate"],["RHEA%3A21476","[(1->3)-beta-D-glucosyl](n) + UDP-alpha-D-glucose = [(1->3)-beta-D-glucosyl](n+1) + UDP + H(+)"]]},{"id":"CHEBI:81666","l":"4-methyl-5-nitrocatechol","na":1,"nb":5,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["EC%3A1.14.12.24","2,4-dinitrotoluene dioxygenase"],["EC%3A1.14.13.210","4-methyl-5-nitrocatechol 5-monooxygenase"],["RHEA%3A46760","2,4-dinitrotoluene + NADH + O2 = 4-methyl-5-nitrocatechol + nitrite + NAD(+)"],["RHEA%3A48016","4-methyl-5-nitrocatechol + NADH + O2 = 2-hydroxy-5-methylquinone + nitrite + NAD(+) + H2O + H(+)"],["RHEA%3A48012","4-methyl-5-nitrocatechol + NADPH + O2 = 2-hydroxy-5-methylquinone + nitrite + NADP(+) + H2O + H(+)"]]},{"id":"GO:0098869","l":"cellular oxidant detoxification","na":1,"nb":5,"a":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["GO%3A0061692","cellular detoxification of hydrogen peroxide"],["GO%3A0098869","cellular oxidant detoxification"],["GO%3A0019430","removal of superoxide radicals"],["NCBIfam%3ANF009668","peroxiredoxin"],["Pfam%3APF24980","Response to Low Sulfur (LSU) family"]]},{"id":"NCBITaxon:10239","l":"Viruses","na":5,"nb":1,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_10239","Viruses orthologous groups (OrthoDB)"]]},{"id":"NCBITaxon:1872427","l":"Alcanivorax sp.","na":1,"nb":5,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["TED%3AAF-A0A3C1HS87-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A3C1HS87-F1-model_v4_TED05"],["TED%3AAF-A0A2E8G0K2-F1-model_v4_TED02","TED novel fold AF-A0A2E8G0K2-F1-model_v4_TED02"],["TED%3AAF-A0A2E8G2P9-F1-model_v4_TED01","TED novel fold AF-A0A2E8G2P9-F1-model_v4_TED01"],["TED%3AAF-A0A3B8PCI6-F1-model_v4_TED01","TED novel fold AF-A0A3B8PCI6-F1-model_v4_TED01"],["TED%3AAF-A0A3C0M083-F1-model_v4_TED02","TED novel fold AF-A0A3C0M083-F1-model_v4_TED02"]]},{"id":"NCBITaxon:3039","l":"Euglena gracilis","na":1,"nb":5,"a":[["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"]],"b":[["Pfam%3APF01333","Apocytochrome F, C-terminal"],["Pfam%3APF16639","Apocytochrome F, N-terminal"],["Pfam%3APF04940","Sensors of blue-light using FAD"],["Pfam%3APF10371","Domain of unknown function"],["PROSITE%3APS00938","Initiation factor 3 signature"]]},{"id":"NCBITaxon:492670","l":"Bacillus velezensis","na":5,"nb":1,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"],["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["TED%3AAF-A0A7S9EWF1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S9EWF1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":1,"nb":5,"a":[["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["Pfam%3APF11720","Peptidase inhibitor I78 family"],["Pfam%3APF12296","Hydrophobic surface binding protein A"],["MCSA%3A118","urate oxidase"],["TED%3AAF-A0A3M7JGA1-F1-model_v4_TED02","TED novel fold AF-A0A3M7JGA1-F1-model_v4_TED02"],["TED%3AAF-A0A7G5JNS3-F1-model_v4_TED03","TED novel fold AF-A0A7G5JNS3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:74969","l":"Ferroplasma acidiphilum","na":5,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["TED%3AAF-A0A7K4FNL3-F1-model_v4_TED01","TED novel fold AF-A0A7K4FNL3-F1-model_v4_TED01"]]},{"id":"CHEBI:15603","l":"L-leucine","na":4,"nb":1,"a":[["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"]],"b":[["proteintraitsmech%3ABIOLIP_LEU","LEU-binding site"]]},{"id":"CHEBI:16109","l":"propane-1,3-diol","na":1,"nb":4,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["EC%3A1.1.1.202","1,3-propanediol dehydrogenase"],["RHEA%3A23188","propane-1,3-diol + NAD(+) = 3-hydroxypropanal + NADH + H(+)"],["RHEA%3A35599","propane-1,3-diol + NADP(+) = 3-hydroxypropanal + NADPH + H(+)"],["proteintraitsmech%3ABIOLIP_PDO","PDO-binding site"]]},{"id":"CHEBI:16646","l":"carbohydrate","na":4,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16646","requires pantothenate"]]},{"id":"CHEBI:16811","l":"methionine","na":4,"nb":1,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"]]},{"id":"CHEBI:16856","l":"glutathione","na":1,"nb":4,"a":[["Zymomonas_Ecoli_Exometabolomics_Obligate_Mutualism.html","Zymomonas-E. coli Exometabolomics-Designed Obligate Mutualism"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16856","requires glutathione"],["MCSA%3A359","lactoglutathione lyase"],["MCSA%3A32","lactoylglutathione lyase"],["proteintraitsmech%3ABIOLIP_GSH","GSH-binding site"]]},{"id":"CHEBI:17115","l":"L-serine","na":1,"nb":4,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["MCSA%3A609","alpha-lytic endopeptidase"],["MCSA%3A238","assemblin"],["MCSA%3A688","classical-complement-pathway C3/C5 convertase"],["proteintraitsmech%3ABIOLIP_SER","SER-binding site"]]},{"id":"CHEBI:17634","l":"D-glucose","na":4,"nb":1,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"]],"b":[["MCSA%3A976","α‑glucosidase maltase-glucoamylase"]]},{"id":"CHEBI:18050","l":"L-glutamine","na":1,"nb":4,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["MCSA%3A596","deuterolysin"],["MCSA%3A477","picornain 3C"],["MCSA%3A763","picornain 3C"],["proteintraitsmech%3ABIOLIP_GLN","GLN-binding site"]]},{"id":"CHEBI:18059","l":"lipid","na":4,"nb":1,"a":[["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"],["Yarrowia_lipolytica_Division_of_Labor_Lipid_Consortium.html","Yarrowia lipolytica Division-of-Labor Lipid Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:22315","l":"alkaloid","na":1,"nb":4,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]]},{"id":"CHEBI:23681","l":"dibenzothiophene","na":1,"nb":4,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["EC%3A1.14.14.21","dibenzothiophene monooxygenase"],["RHEA%3A49072","dibenzothiophene + 2 FMNH2 + 2 O2 = dibenzothiophene 5,5-dioxide + 2 FMN + 2 H2O + 2 H(+)"],["RHEA%3A49076","dibenzothiophene + FMNH2 + O2 = dibenzothiophene 5-oxide + FMN + H2O + H(+)"],["MCSA%3A973","DszC protein"]]},{"id":"CHEBI:28984","l":"aluminium atom","na":1,"nb":4,"a":[["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_AL_DINUCLEAR","dinuclear aluminium site"],["proteintraitsmech%3AMETALPDB_AL_MONONUCLEAR","mononuclear aluminium site"],["proteintraitsmech%3AMETALPDB_AL_TETRANUCLEAR","tetranuclear aluminium site"],["proteintraitsmech%3AMETALPDB_AL_TRINUCLEAR","trinuclear aluminium site"]]},{"id":"CHEBI:30746","l":"benzoic acid","na":4,"nb":1,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_BEZ","BEZ-binding site"]]},{"id":"CHEBI:33575","l":"carboxylic acid","na":1,"nb":4,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"]],"b":[["MCSA%3A105","aldehyde dehydrogenase (FAD-independent)"],["MCSA%3A803","aldehyde dehydrogenase (NAD+) (class 2)"],["MCSA%3A556","esterase (estA)"],["MCSA%3A755","lysophospholipase"]]},{"id":"CHEBI:34768","l":"furfural","na":1,"nb":4,"a":[["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"]],"b":[["RHEA%3A77519","furfural + hydrogen cyanide = (2R)-2-(furan-2-yl)-2-hydroxyacetonitrile"],["RHEA%3A76667","furfural + NAD(+) + H2O = 2-furoate + NADH + 2 H(+)"],["RHEA%3A76671","furfural + NADP(+) + H2O = 2-furoate + NADPH + 2 H(+)"],["TCDB%3A1.C.113","The Hemolysin III (Hly III) Family"]]},{"id":"CHEBI:490095","l":"esculetin","na":1,"nb":4,"a":[["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["EC%3A2.5.1.138","coumarin 8-geranyltransferase"],["RHEA%3A51864","esculetin + (2E)-geranyl diphosphate = 8-geranylesculetin + diphosphate"],["RHEA%3A68944","esculetin + S-adenosyl-L-methionine = isoscopoletin + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A68948","esculetin + S-adenosyl-L-methionine = scopoletin + S-adenosyl-L-homocysteine + H(+)"]]},{"id":"GO:0009684","l":"indoleacetic acid biosynthetic process","na":4,"nb":1,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["GO%3A0009684","indoleacetic acid biosynthetic process"]]},{"id":"GO:0009809","l":"lignin biosynthetic process","na":1,"nb":4,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"]],"b":[["GO%3A1901063","guaiacyl lignin biosynthetic process"],["GO%3A0009809","lignin biosynthetic process"],["GO%3A1901060","p-hydroxyphenyl lignin biosynthetic process"],["GO%3A1901066","syringal lignin biosynthetic process"]]},{"id":"GO:0015694","l":"mercury ion transport","na":1,"nb":4,"a":[["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["GO%3A0015694","mercury ion transport"],["Pfam%3APF03203","MerC mercury resistance protein"],["Pfam%3APF05052","MerE protein"],["Pfam%3APF02411","MerT mercuric transport protein"]]},{"id":"GO:0015976","l":"carbon utilization","na":1,"nb":4,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["GO%3A0015976","carbon utilization"],["NCBIfam%3ANF010378","bifunctional acetaldehyde-CoA/alcohol dehydrogenase"],["NCBIfam%3ANF007756","carbonate dehydratase"],["InterPro%3AIPR015892","Carbonic anhydrase, prokaryotic-like, conserved site"]]},{"id":"GO:0061692","l":"cellular detoxification of hydrogen peroxide","na":1,"nb":4,"a":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["ComplexPortal%3ACPX-4742","Catalase complex"],["ComplexPortal%3ACPX-4767","Catalase complex"],["ComplexPortal%3ACPX-4768","Catalase complex"],["GO%3A0061692","cellular detoxification of hydrogen peroxide"]]},{"id":"GO:1902074","l":"response to salt","na":1,"nb":4,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["GO%3A1902075","cellular response to salt"],["GO%3A1902074","response to salt"],["GO%3A1903935","response to sodium arsenite"],["GO%3A1904383","response to sodium phosphate"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":1,"nb":4,"a":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["Pfam%3APF05258","Dna[CI] antecedent, DciA"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"],["MCSA%3A437","2,6-dioxo-6-phenylhexa-3-enoate hydrolase"],["TED%3AAF-Q0RZW9-F1-model_v4_TED03","TED highly-symmetric fold AF-Q0RZW9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1401","l":"Paenibacillus lautus","na":1,"nb":4,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"]],"b":[["Pfam%3APF18448","Carbohydrate binding domain"],["Pfam%3APF12891","Glycoside hydrolase family 44"],["TED%3AAF-A0A328VZ83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A328VZ83-F1-model_v4_TED01"],["TED%3AAF-A0A385TU82-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A385TU82-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1501","l":"Clostridium pasteurianum","na":1,"nb":4,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["Pfam%3APF22609","Iron hydrogenase 1-like, iron-sulfur centre-binding domain"],["Pfam%3APF09582","Iron only nitrogenase protein AnfO (AnfO_nitrog)"],["PROSITE%3APS00746","NifH/frxC family signature 1"],["PROSITE%3APS00699","Nitrogenases component 1 alpha and beta subunits signature 1"]]},{"id":"NCBITaxon:1534","l":"Clostridium kluyveri","na":4,"nb":1,"a":[["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["TED%3AAF-A0A1L5FEG9-F1-model_v4_TED01","TED novel fold AF-A0A1L5FEG9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1582","l":"Lacticaseibacillus casei","na":1,"nb":4,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["Pfam%3APF07475","HPr Serine kinase C-terminal domain"],["PROSITE%3APS01163","Galactose-1-phosphate uridyl transferase family 2 signature"],["MCSA%3A112","dihydrofolate reductase (bacterial)"],["MCSA%3A31","thymidylate synthase"]]},{"id":"NCBITaxon:1708","l":"Cellulomonas fimi","na":1,"nb":4,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["Pfam%3APF00553","Cellulose binding domain"],["PROSITE%3APS00561","CBM2a (carbohydrate-binding type-2) domain signature"],["PROSITE%3APS00591","Glycosyl hydrolases family 10 (GH10) active site"],["MCSA%3A548","endo-1,4-beta-xylanase (glycosyl hydrolase 10)"]]},{"id":"NCBITaxon:192","l":"Azospirillum brasilense","na":1,"nb":4,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"]],"b":[["Pfam%3APF24931","ACR9-like, ACT-like domain"],["Pfam%3APF27444","Uridylyltransferase GlnD third domain"],["MCSA%3A304","glutamate synthase (NADPH)"],["TED%3AAF-A0A235H319-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A235H319-F1-model_v4_TED01"]]},{"id":"NCBITaxon:243164","l":"Dehalococcoides mccartyi 195","na":4,"nb":1,"a":[["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["Pfam%3APF13486","Reductive dehalogenase subunit"]]},{"id":"NCBITaxon:258594","l":"Rhodopseudomonas palustris CGA009","na":1,"nb":4,"a":[["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"]],"b":[["Pfam%3APF01322","Cytochrome C'"],["PROSITE%3APS00969","Antenna complexes beta subunits signature"],["PROSITE%3APS00936","Ribosomal protein L35 signature"],["PROSITE%3APS01181","Ribosomal protein S21 signature"]]},{"id":"NCBITaxon:28037","l":"Streptococcus mitis","na":1,"nb":4,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["Pfam%3APF03047","COMC family"],["TED%3AAF-A0A1X1L9U5-F1-model_v4_TED02","TED novel fold AF-A0A1X1L9U5-F1-model_v4_TED02"],["TED%3AAF-A0A428B8X0-F1-model_v4_TED01","TED novel fold AF-A0A428B8X0-F1-model_v4_TED01"],["TED%3AAF-A0A6L5H4V3-F1-model_v4_TED03","TED novel fold AF-A0A6L5H4V3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:34305","l":"Lotus japonicus","na":1,"nb":4,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["Pfam%3APF06241","Castor and Pollux, part of voltage-gated ion channel"],["Pfam%3APF23654","E3 ubiquitin-protein ligase LIN-like, ARM repeat"],["Pfam%3APF23628","Putative E3 ubiquitin-protein ligase LIN, ARM-like domain"],["Pfam%3APF23568","E3 ubiquitin-protein ligase LIN-like, ARM repeat"]]},{"id":"NCBITaxon:863","l":"Syntrophomonas wolfei","na":4,"nb":1,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["TED%3AAF-A0A354YY78-F1-model_v4_TED03","TED novel fold AF-A0A354YY78-F1-model_v4_TED03"]]},{"id":"CHEBI:15356","l":"cysteine","na":3,"nb":1,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:15702","l":"terephthalic acid","na":3,"nb":1,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_UB7","UB7-binding site"]]},{"id":"CHEBI:16015","l":"L-glutamic acid","na":1,"nb":3,"a":[["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]],"b":[["MCSA%3A747","gamma-glutamyl hydrolase"],["proteintraitsmech%3ABIOLIP_GGL","GGL-binding site"],["proteintraitsmech%3ABIOLIP_GLU","GLU-binding site"]]},{"id":"CHEBI:16170","l":"mercury(0)","na":1,"nb":3,"a":[["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["EC%3A1.16.1.1","mercury(II) reductase"],["RHEA%3A23856","Hg + NADP(+) + H(+) = Hg(2+) + NADPH"],["MCSA%3A277","mercury(II) reductase"]]},{"id":"CHEBI:16467","l":"L-arginine","na":1,"nb":3,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["MCSA%3A688","classical-complement-pathway C3/C5 convertase"],["MCSA%3A425","plasmin"],["MCSA%3A798","t-plasminogen activator"]]},{"id":"CHEBI:16982","l":"(R,R)-butane-2,3-diol","na":1,"nb":3,"a":[["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"]],"b":[["EC%3A1.1.1.4","(R,R)-butanediol dehydrogenase"],["RHEA%3A24340","(R,R)-butane-2,3-diol + NAD(+) = (R)-acetoin + NADH + H(+)"],["proteintraitsmech%3ABIOLIP_BU3","BU3-binding site"]]},{"id":"CHEBI:17203","l":"L-proline","na":1,"nb":3,"a":[["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["MCSA%3A403","astacin"],["MCSA%3A379","Xaa-Pro aminopeptidase"],["proteintraitsmech%3ABIOLIP_PRO","PRO-binding site"]]},{"id":"CHEBI:17561","l":"L-cysteine","na":3,"nb":1,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["proteintraitsmech%3ABIOLIP_CYS","CYS-binding site"]]},{"id":"CHEBI:229785","l":"neodymium(3+)","na":3,"nb":1,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_ND","ND-binding site"]]},{"id":"CHEBI:2365","l":"(+)-abscisic acid","na":1,"nb":3,"a":[["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.17","The Proton-dependent Oligopeptide Transporter (POT/PTR) Family"],["proteintraitsmech%3ABIOLIP_A8S","A8S-binding site"]]},{"id":"CHEBI:28805","l":"cis-1,2-dichloroethene","na":1,"nb":3,"a":[["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"]],"b":[["RHEA%3A67992","trichloroethene + AH2 = (Z)-1,2-dichloroethene + chloride + A + H(+)"],["RHEA%3A67996","(Z)-1,2-dichloroethene + AH2 = chloroethene + chloride + A + H(+)"],["proteintraitsmech%3ABIOLIP_JYF","JYF-binding site"]]},{"id":"CHEBI:30803","l":"isophthalate(2-)","na":1,"nb":3,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["EC%3A6.2.1.58","isophthalate--CoA ligase"],["RHEA%3A61636","isophthalate + ATP + CoA = isophthalyl-CoA + AMP + diphosphate"],["TCDB%3A2.A.80","The Tricarboxylate Transporter (TTT) Family"]]},{"id":"CHEBI:31725","l":"isoamyl acetate","na":1,"nb":3,"a":[["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["EC%3A3.1.1.112","isoamyl acetate esterase"],["RHEA%3A65236","3-methylbutan-1-ol + acetyl-CoA = 3-methylbutyl acetate + CoA"],["RHEA%3A60436","3-methylbutyl acetate + H2O = 3-methylbutan-1-ol + acetate + H(+)"]]},{"id":"CHEBI:32816","l":"pyruvic acid","na":1,"nb":3,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_32816","requires pyruvic acid"],["MCSA%3A449","cystathionine beta-lyase"],["proteintraitsmech%3ABIOLIP_PYR","PYR-binding site"]]},{"id":"CHEBI:32879","l":"propane","na":1,"nb":3,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["EC%3A1.14.13.227","propane 2-monooxygenase"],["RHEA%3A49992","propane + NADH + O2 + H(+) = propan-2-ol + NAD(+) + H2O"],["proteintraitsmech%3ABIOLIP_TME","TME-binding site"]]},{"id":"CHEBI:33229","l":"vitamin (role)","na":1,"nb":3,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.21","The Solute:Sodium Symporter (SSS) Family"]]},{"id":"CHEBI:33359","l":"rhodium atom","na":1,"nb":3,"a":[["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_RH_DINUCLEAR","dinuclear rhodium site"],["proteintraitsmech%3AMETALPDB_RH_MONONUCLEAR","mononuclear rhodium site"],["proteintraitsmech%3AMETALPDB_RH_TRINUCLEAR","trinuclear rhodium site"]]},{"id":"CHEBI:35780","l":"phosphate ion","na":3,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"]]},{"id":"CHEBI:412516","l":"5-hydroxymethylfurfural","na":1,"nb":3,"a":[["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"]],"b":[["EC%3A1.1.3.47","5-(hydroxymethyl)furfural oxidase"],["RHEA%3A32683","5-hydroxymethylfurfural + 3 O2 + 2 H2O = 2,5-dicarboxyfuran + 3 H2O2 + 2 H(+)"],["RHEA%3A43504","5-hydroxymethylfurfural + O2 = 2,5-diformylfuran + H2O2"]]},{"id":"CHEBI:49631","l":"gallium atom","na":1,"nb":3,"a":[["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_GA_DINUCLEAR","dinuclear gallium site"],["proteintraitsmech%3AMETALPDB_GA_MONONUCLEAR","mononuclear gallium site"],["proteintraitsmech%3AMETALPDB_GA_TETRANUCLEAR","tetranuclear gallium site"]]},{"id":"CHEBI:50699","l":"oligosaccharide","na":1,"nb":3,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"]]},{"id":"CHEBI:920","l":"2,4-dinitrotoluene","na":1,"nb":3,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["EC%3A1.14.12.24","2,4-dinitrotoluene dioxygenase"],["RHEA%3A80191","2,4-dinitrotoluene + 2 NADPH + 2 H(+) = 4-hydroxylamino-2-nitrotoluene + 2 NADP(+) + H2O"],["RHEA%3A46760","2,4-dinitrotoluene + NADH + O2 = 4-methyl-5-nitrocatechol + nitrite + NAD(+)"]]},{"id":"GO:0005982","l":"starch metabolic process","na":1,"nb":3,"a":[["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"]],"b":[["GO%3A0019252","starch biosynthetic process"],["GO%3A0005983","starch catabolic process"],["GO%3A0005982","starch metabolic process"]]},{"id":"GO:0006544","l":"glycine metabolic process","na":1,"nb":3,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"]],"b":[["GO%3A0006545","glycine biosynthetic process"],["GO%3A0006546","glycine catabolic process"],["GO%3A0006544","glycine metabolic process"]]},{"id":"GO:0019385","l":"methanogenesis, from acetate","na":1,"nb":3,"a":[["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["GO%3A0019385","methanogenesis, from acetate"],["NCBIfam%3ANF014596","carbon monoxide dehydrogenase beta subunit family protein"],["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"]]},{"id":"GO:0019563","l":"glycerol catabolic process","na":1,"nb":3,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["GO%3A0019588","anaerobic glycerol catabolic process"],["GO%3A0019563","glycerol catabolic process"],["NCBIfam%3ANF008478","dihydroxyacetone kinase phosphoryl donor subunit DhaM"]]},{"id":"GO:0044002","l":"acquisition of nutrients from host","na":1,"nb":3,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0044002","acquisition of nutrients from host"],["GO%3A0044847","iron acquisition from host"],["GO%3A0052091","modulation of nutrient release by host"]]},{"id":"GO:1902422","l":"hydrogen biosynthetic process","na":1,"nb":3,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["GO%3A1902422","hydrogen biosynthetic process"],["GO%3A0044817","hydrogen generation via biophotolysis"],["GO%3A0044835","hydrogen generation via nitrogenase"]]},{"id":"NCBITaxon:1245","l":"Leuconostoc mesenteroides","na":1,"nb":3,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["Pfam%3APF08951","Bacteriocin immunity protein family"],["MCSA%3A843","glucose-6-phosphate dehydrogenase"],["TED%3AAF-A0A8B5R1X5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B5R1X5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":1,"nb":3,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["Pfam%3APF03423","Carbohydrate binding domain (family 25)"],["Pfam%3APF03422","Carbohydrate binding module (family 6)"],["TED%3AAF-A0A7X5SGP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X5SGP7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1492","l":"Clostridium butyricum","na":1,"nb":3,"a":[["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["Pfam%3APF00302","Chloramphenicol acetyltransferase"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["PROSITE%3APS00100","Chloramphenicol acetyltransferase active site"]]},{"id":"NCBITaxon:1589","l":"Lactiplantibacillus pentosus","na":1,"nb":3,"a":[["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["PROSITE%3APS60002","Phosphoketolase signature 1"],["PROSITE%3APS60003","Phosphoketolase signature 2"],["TED%3AAF-A0A2K9I3V8-F1-model_v4_TED01","TED novel fold AF-A0A2K9I3V8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1624","l":"Ligilactobacillus salivarius","na":1,"nb":3,"a":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]],"b":[["TED%3AAF-A0A7X2SS58-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X2SS58-F1-model_v4_TED01"],["TED%3AAF-A0A089QBS8-F1-model_v4_TED02","TED novel fold AF-A0A089QBS8-F1-model_v4_TED02"],["TED%3AAF-A0A2A2XCA8-F1-model_v4_TED01","TED novel fold AF-A0A2A2XCA8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":3,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]],"b":[["TED%3AAF-A0A142EAM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142EAM9-F1-model_v4_TED03"],["TED%3AAF-A0A1Q3DTY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3DTY6-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3DNE3-F1-model_v4_TED01","TED novel fold AF-A0A1Q3DNE3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:203124","l":"Trichodesmium erythraeum IMS101","na":1,"nb":3,"a":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["Pfam%3APF06206","CpeT/CpcT family (DUF1001)"],["Pfam%3APF18460","Heterocyst differentiation regulator C-terminal Hood domain"],["TED%3AAF-Q10WG6-F1-model_v4_TED05","TED highly-symmetric fold AF-Q10WG6-F1-model_v4_TED05"]]},{"id":"NCBITaxon:2208","l":"Methanosarcina barkeri","na":3,"nb":1,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["Pfam%3APF09505","Dimethylamine methyltransferase (Dimeth_PyL)"]]},{"id":"NCBITaxon:253","l":"Chryseobacterium indologenes","na":1,"nb":3,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]],"b":[["PROSITE%3APS00744","Beta-lactamases class B signature 2"],["TED%3AAF-A0A7T8U7T3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T8U7T3-F1-model_v4_TED01"],["TED%3AAF-A0A0N0ZUI2-F1-model_v4_TED01","TED novel fold AF-A0A0N0ZUI2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:40214","l":"Acinetobacter johnsonii","na":1,"nb":3,"a":[["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["Pfam%3APF12973","ChrR Cupin-like domain"],["IEDB%3A226585","epitope DKFLEMAVERVKRIK"],["Pfam%3APF13807","G-rich domain on putative tyrosine kinase"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":1,"nb":3,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]],"b":[["PROSITE%3APS00336","Beta-lactamase class-C active site"],["MCSA%3A257","beta-lactamase (Class C)"],["TED%3AAF-A0A155XQ59-F1-model_v4_TED02","TED novel fold AF-A0A155XQ59-F1-model_v4_TED02"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":1,"nb":3,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"],["TED%3AAF-A0A7H8I034-F1-model_v4_TED01","TED novel fold AF-A0A7H8I034-F1-model_v4_TED01"]]},{"id":"NCBITaxon:561879","l":"Bacillus safensis","na":1,"nb":3,"a":[["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"]],"b":[["Pfam%3APF09221","Bacteriocin class IId cyclical uberolysin-like"],["TED%3AAF-A0A1L6ZPA6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6ZPA6-F1-model_v4_TED01"],["TED%3AAF-A0A1L6ZPC9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6ZPC9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:70448","l":"Ostreococcus tauri","na":1,"nb":3,"a":[["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"]],"b":[["TED%3AAF-A0A090M1U3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A090M1U3-F1-model_v4_TED02"],["TED%3AAF-A0A090M3Z3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A090M3Z3-F1-model_v4_TED01"],["TED%3AAF-A0A1Y5INV9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y5INV9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:831","l":"Butyrivibrio fibrisolvens","na":1,"nb":3,"a":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"]],"b":[["Pfam%3APF16738","Starch-binding module 26"],["Pfam%3APF18318","Glutamine synthetase C-terminal domain"],["Pfam%3APF12437","Glutamine synthetase type III N terminal"]]},{"id":"NCBITaxon:94130","l":"Rhizophagus clarus","na":1,"nb":3,"a":[["Mediterranean_AM_Fungal_SixSpecies_SynCom.html","Mediterranean AM Fungal Six-Species SynCom"]],"b":[["TED%3AAF-A0A2Z6R1J4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z6R1J4-F1-model_v4_TED01"],["TED%3AAF-A0A2Z6SKM0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z6SKM0-F1-model_v4_TED01"],["TED%3AAF-A0A2Z6S4T9-F1-model_v4_TED04","TED novel fold AF-A0A2Z6S4T9-F1-model_v4_TED04"]]},{"id":"CHEBI:134612","l":"staphyloferrin B","na":1,"nb":2,"a":[["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_134612","requires staphyloferrin B"],["proteintraitsmech%3ABIOLIP_SE8","SE8-binding site"]]},{"id":"CHEBI:147155","l":"","na":2,"nb":1,"a":[["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["RHEA%3A64016","alpha-L-Fuc-(1->2)-beta-D-Gal-(1->4)-D-Glc + GDP-beta-L-fucose = alpha-L-Fuc-(1->2)-beta-D-Gal-(1->4)-[alpha-L-Fuc-(1->3)]-D-Glc + GDP + H(+)"]]},{"id":"CHEBI:15729","l":"L-ornithine","na":1,"nb":2,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["MCSA%3A12","ornithine carbamoyltransferase"],["proteintraitsmech%3ABIOLIP_ORN","ORN-binding site"]]},{"id":"CHEBI:15904","l":"long-chain fatty acid","na":1,"nb":2,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:15940","l":"nicotinic acid","na":1,"nb":2,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15940","requires nicotinic acid"],["proteintraitsmech%3ABIOLIP_NIO","NIO-binding site"]]},{"id":"CHEBI:15982","l":"cob(I)alamin","na":2,"nb":1,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15982","requires cob(I)alamin"]]},{"id":"CHEBI:16830","l":"methylamine","na":2,"nb":1,"a":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"]],"b":[["proteintraitsmech%3ABIOLIP_NME","NME-binding site"]]},{"id":"CHEBI:16991","l":"deoxyribonucleic acid","na":2,"nb":1,"a":[["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_DNA","DNA-binding site"]]},{"id":"CHEBI:18053","l":"1-aminocyclopropanecarboxylic acid","na":2,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["proteintraitsmech%3ABIOLIP_1AC","1AC-binding site"]]},{"id":"CHEBI:231672","l":"bis(2-hydroxyethyl) terephthalate","na":1,"nb":2,"a":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["RHEA%3A80759","bis(2-hydroxyethyl) terephthalate + H2O = 4-[(2-hydroxyethoxy)carbonyl]benzoate + ethylene glycol + H(+)"],["proteintraitsmech%3ABIOLIP_C8X","C8X-binding site"]]},{"id":"CHEBI:28757","l":"fructose","na":1,"nb":2,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["GO%3A0070061","fructose binding"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:28817","l":"dodecane","na":1,"nb":2,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["RHEA%3A76739","dodecane + reduced [NADPH--hemoprotein reductase] + O2 = 5-dodecanol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["proteintraitsmech%3ABIOLIP_D12","D12-binding site"]]},{"id":"CHEBI:28837","l":"octanoic acid","na":2,"nb":1,"a":[["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["proteintraitsmech%3ABIOLIP_OCA","OCA-binding site"]]},{"id":"CHEBI:29016","l":"arginine","na":1,"nb":2,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:29073","l":"L-ascorbic acid","na":1,"nb":2,"a":[["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29073","requires L-ascorbic acid"],["proteintraitsmech%3ABIOLIP_ASC","ASC-binding site"]]},{"id":"CHEBI:29681","l":"surfactin","na":1,"nb":2,"a":[["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]]},{"id":"CHEBI:32588","l":"potassium chloride","na":2,"nb":1,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"]],"b":[["TCDB%3A2.A.30","The Cation-Chloride Cotransporter (CCC) Family"]]},{"id":"CHEBI:33284","l":"nutrient","na":2,"nb":1,"a":[["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["TCDB%3A1.A.91","The Cytoadherence-linked Asexual Protein 3.2 of Plasmodium falciparum (Clag3) Family"]]},{"id":"CHEBI:33848","l":"polycyclic arene","na":2,"nb":1,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Pelagerythrobacter_Salinicola_PES_Pyrene_Degradation_SynCom.html","Pelagerythrobacter-Salinicola PES Pyrene-Degradation SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:33913","l":"corrinoid","na":2,"nb":1,"a":[["Soil_Corrinoid_B12_Reservoir_Community.html","Soil Corrinoid Reservoir Microbial Community"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_33913","requires corrinoid"]]},{"id":"CHEBI:35381","l":"monosaccharide","na":2,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:35404","l":"chromate(2-)","na":2,"nb":1,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"]],"b":[["RHEA%3A32819","chromate(in) = chromate(out)"]]},{"id":"CHEBI:36219","l":"alpha-lactose","na":2,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"]],"b":[["RHEA%3A84479","alpha-lactose = lactulose"]]},{"id":"CHEBI:42111","l":"(R)-lactic acid","na":2,"nb":1,"a":[["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_LAC","LAC-binding site"]]},{"id":"CHEBI:44534","l":"N-(3-oxododecanoyl)-L-homoserine lactone","na":2,"nb":1,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["proteintraitsmech%3ABIOLIP_OHN","OHN-binding site"]]},{"id":"CHEBI:46442","l":"vanadate(3-)","na":2,"nb":1,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["proteintraitsmech%3ABIOLIP_VO4","VO4-binding site"]]},{"id":"CHEBI:49544","l":"chromium(3+)","na":1,"nb":2,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["RHEA%3A44372","Cr(6+) + 2 NADH + O2 = Cr(3+) + superoxide + 2 NAD(+) + 2 H(+)"],["RHEA%3A44368","Cr(6+) + 2 NADPH + O2 = Cr(3+) + superoxide + 2 NADP(+) + 2 H(+)"]]},{"id":"CHEBI:53650","l":"guaiacylglycerol-beta-guaiacyl ether","na":1,"nb":2,"a":[["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["EC%3A1.11.1.16","versatile peroxidase"],["RHEA%3A22396","1-(4-hydroxy-3-methoxyphenyl)-2-(2-methoxyphenoxy)propane-1,3-diol + H2O2 = guaiacol + vanillin + glycolaldehyde + H2O"]]},{"id":"CHEBI:61448","l":"isopropyl beta-D-thiogalactopyranoside","na":1,"nb":2,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_IPT","IPT-binding site"]]},{"id":"CHEBI:82420","l":"1-chloro-3-nitrobenzene","na":1,"nb":2,"a":[["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]],"b":[["RHEA%3A57808","1-chloro-3-nitrobenzene + NADH + O2 = 3-chlorocatechol + nitrite + NAD(+)"],["RHEA%3A57804","1-chloro-3-nitrobenzene + NADH + O2 = 4-chlorocatechol + nitrite + NAD(+)"]]},{"id":"CHEBI:84046","l":"pyoverdine","na":1,"nb":2,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_84046","requires pyoverdine"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"GO:0006082","l":"organic acid metabolic process","na":2,"nb":1,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["PANTHER%3APTHR43680","NITRATE REDUCTASE MOLYBDENUM COFACTOR ASSEMBLY CHAPERONE"]]},{"id":"GO:0006568","l":"L-tryptophan metabolic process","na":1,"nb":2,"a":[["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"]],"b":[["Pfam%3APF00697","N-(5'phosphoribosyl)anthranilate (PRA) isomerase"],["Pfam%3APF00290","Tryptophan synthase alpha chain"]]},{"id":"GO:0006798","l":"polyphosphate catabolic process","na":1,"nb":2,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"]],"b":[["GO%3A0006798","polyphosphate catabolic process"],["NCBIfam%3ATIGR03706","exopolyphosphatase"]]},{"id":"GO:0006995","l":"cellular response to nitrogen starvation","na":1,"nb":2,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["GO%3A0006995","cellular response to nitrogen starvation"],["GO%3A0031142","induction of conjugation upon nitrogen starvation"]]},{"id":"GO:0010025","l":"wax biosynthetic process","na":1,"nb":2,"a":[["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"]],"b":[["GO%3A0010025","wax biosynthetic process"],["Reactome%3AR-HSA-9640463","Wax biosynthesis"]]},{"id":"GO:0019417","l":"sulfur oxidation","na":1,"nb":2,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["GO%3A0019417","sulfur oxidation"],["NCBIfam%3ATIGR04484","sulfur oxidation c-type cytochrome SoxA"]]},{"id":"GO:0019676","l":"ammonia assimilation cycle","na":1,"nb":2,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]],"b":[["ComplexPortal%3ACPX-5041","Glutamate synthase [NADPH] complex"],["GO%3A0019676","ammonia assimilation cycle"]]},{"id":"GO:0046359","l":"butyrate catabolic process","na":2,"nb":1,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["GO%3A0046359","butyrate catabolic process"]]},{"id":"GO:0071466","l":"cellular response to xenobiotic stimulus","na":1,"nb":2,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["ComplexPortal%3ACPX-2121","EmrE multidrug transporter complex"],["GO%3A0071466","cellular response to xenobiotic stimulus"]]},{"id":"GO:0141082","l":"symbiont-mediated detoxification of host-generated reactive oxygen species","na":1,"nb":2,"a":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["GO%3A0141082","symbiont-mediated detoxification of host-generated reactive oxygen species"],["Reactome%3AR-HSA-1222538","Tolerance by Mtb to nitric oxide produced by macrophages"]]},{"id":"NCBITaxon:1303","l":"Streptococcus oralis","na":1,"nb":2,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["Pfam%3APF03047","COMC family"],["TED%3AAF-A0A139PPG4-F1-model_v4_TED02","TED novel fold AF-A0A139PPG4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1512","l":"[Clostridium] symbiosum","na":1,"nb":2,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["MCSA%3A579","glutamate dehydrogenase"],["MCSA%3A207","pyruvate, phosphate dikinase"]]},{"id":"NCBITaxon:1520","l":"Clostridium beijerinckii","na":1,"nb":2,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"]],"b":[["IEDB%3A8893","epitope DKILDVGKF"],["TED%3AAF-A0A0B5QQV4-F1-model_v4_TED02","TED novel fold AF-A0A0B5QQV4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1655","l":"Actinomyces naeslundii","na":1,"nb":2,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["Pfam%3APF16555","Gram-positive pilin subunit D1, N-terminal domain"],["TED%3AAF-A0A2Z5QNH6-F1-model_v4_TED02","TED novel fold AF-A0A2Z5QNH6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:166486","l":"Roseburia intestinalis","na":1,"nb":2,"a":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"]],"b":[["TED%3AAF-A0A3R6HE72-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R6HE72-F1-model_v4_TED01"],["TED%3AAF-A0A6L6XJA4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L6XJA4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":2,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["TED%3AAF-A0A415C3I8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A415C3I8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1871043","l":"Variovorax sp.","na":2,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]],"b":[["TED%3AAF-A0A2E9BKC8-F1-model_v4_TED02","TED novel fold AF-A0A2E9BKC8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1908224","l":"Sphingopyxis sp.","na":2,"nb":1,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["TED%3AAF-A0A2G2D229-F1-model_v4_TED01","TED novel fold AF-A0A2G2D229-F1-model_v4_TED01"]]},{"id":"NCBITaxon:198620","l":"Pseudomonas koreensis","na":2,"nb":1,"a":[["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["TED%3AAF-A0A1G7ALV2-F1-model_v4_TED02","TED novel fold AF-A0A1G7ALV2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:216816","l":"Bifidobacterium longum","na":2,"nb":1,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["TED%3AAF-A0A413ACI9-F1-model_v4_TED01","TED novel fold AF-A0A413ACI9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2223","l":"Methanothrix soehngenii","na":1,"nb":2,"a":[["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"],["TED%3AAF-A0A7K4AJW5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K4AJW5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:239935","l":"Akkermansia muciniphila","na":1,"nb":2,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["TED%3AAF-A0A2N8IJN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N8IJN7-F1-model_v4_TED01"],["TED%3AAF-A0A6N2UM07-F1-model_v4_TED01","TED novel fold AF-A0A6N2UM07-F1-model_v4_TED01"]]},{"id":"NCBITaxon:246200","l":"Ruegeria pomeroyi DSS-3","na":1,"nb":2,"a":[["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["Pfam%3APF16867","Dimethlysulfonioproprionate lyase"],["Pfam%3APF09347","Domain of unknown function (DUF1989)"]]},{"id":"NCBITaxon:252970","l":"Paraburkholderia phenoliruptrix","na":1,"nb":2,"a":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]],"b":[["TED%3AAF-A0A6J5BF93-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6J5BF93-F1-model_v4_TED01"],["TED%3AAF-A0A6J5BWX8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6J5BWX8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:29466","l":"Veillonella parvula","na":2,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]],"b":[["TED%3AAF-A0A134BYG5-F1-model_v4_TED01","TED novel fold AF-A0A134BYG5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:375","l":"Bradyrhizobium japonicum","na":1,"nb":2,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"]],"b":[["TED%3AAF-A0A1L3FD53-F1-model_v4_TED02","TED novel fold AF-A0A1L3FD53-F1-model_v4_TED02"],["TED%3AAF-A0A1L3FDV4-F1-model_v4_TED02","TED novel fold AF-A0A1L3FDV4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:39488","l":"Anaerobutyricum hallii","na":1,"nb":2,"a":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"]],"b":[["TED%3AAF-A0A414B1Y3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A414B1Y3-F1-model_v4_TED01"],["TED%3AAF-A0A415G3S7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A415G3S7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:408","l":"Methylorubrum extorquens","na":2,"nb":1,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["Pfam%3APF04476","4-HFC-P synthase"]]},{"id":"NCBITaxon:4530","l":"Oryza sativa","na":1,"nb":2,"a":[["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"]],"b":[["Pfam%3APF10839","Protein of unknown function (DUF2647)"],["PROSITE%3APS00937","Ribosomal protein L20 signature"]]},{"id":"NCBITaxon:536","l":"Chromobacterium violaceum","na":1,"nb":2,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"]],"b":[["TED%3AAF-A0A381EUD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A381EUD6-F1-model_v4_TED01"],["TED%3AAF-A0A447THJ9-F1-model_v4_TED01","TED novel fold AF-A0A447THJ9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:587753","l":"Pseudomonas chlororaphis","na":1,"nb":2,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"]],"b":[["TED%3AAF-A0A8A9Z2C4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A8A9Z2C4-F1-model_v4_TED03"],["TED%3AAF-A0A0A6DEM6-F1-model_v4_TED01","TED novel fold AF-A0A0A6DEM6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:64104","l":"Bacillus pseudomycoides","na":1,"nb":2,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["TED%3AAF-A0A1Y3MB62-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y3MB62-F1-model_v4_TED01"],["TED%3AAF-A0A2C4USY5-F1-model_v4_TED01","TED novel fold AF-A0A2C4USY5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:659243","l":"Bacillus siamensis","na":2,"nb":1,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"]],"b":[["TED%3AAF-A0A853L550-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A853L550-F1-model_v4_TED02"]]},{"id":"NCBITaxon:971","l":"Selenomonas ruminantium","na":1,"nb":2,"a":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"]],"b":[["TED%3AAF-A0A1H0QI16-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H0QI16-F1-model_v4_TED02"],["TED%3AAF-A0A1I6XHL5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I6XHL5-F1-model_v4_TED01"]]},{"id":"UBERON:0002097","l":"skin of body","na":1,"nb":2,"a":[["SkinCom_Synthetic_Skin_Community.html","SkinCom Synthetic Skin Community"]],"b":[["GO%3A0043588","skin development"],["GO%3A0043589","skin morphogenesis"]]},{"id":"CHEBI:15517","l":"butyryl-CoA","na":1,"nb":1,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_BCO","BCO-binding site"]]},{"id":"CHEBI:15859","l":"N-carbamoyl-L-aspartic acid","na":1,"nb":1,"a":[["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:16119","l":"shikimic acid","na":1,"nb":1,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["proteintraitsmech%3ABIOLIP_SKM","SKM-binding site"]]},{"id":"CHEBI:16449","l":"alanine","na":1,"nb":1,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["MCSA%3A724","repressor LexA"]]},{"id":"CHEBI:16914","l":"salicylic acid","na":1,"nb":1,"a":[["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"]],"b":[["proteintraitsmech%3ABIOLIP_SAL","SAL-binding site"]]},{"id":"CHEBI:16988","l":"D-ribose","na":1,"nb":1,"a":[["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:17089","l":"glycoprotein","na":1,"nb":1,"a":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"]],"b":[["TCDB%3A9.B.417","The MCFD2/LMAN1 Complex Receptor (MLM-CR) Family"]]},{"id":"CHEBI:17359)","l":"","na":1,"nb":1,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"]],"b":[["RHEA%3A12945","2'-hydroxybiphenyl-2-sulfinate + H2O = biphenyl-2-ol + sulfite + H(+)"]]},{"id":"CHEBI:17418","l":"valeric acid","na":1,"nb":1,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_LEA","LEA-binding site"]]},{"id":"CHEBI:17514","l":"cyanide","na":1,"nb":1,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"]],"b":[["proteintraitsmech%3ABIOLIP_CYN","CYN-binding site"]]},{"id":"CHEBI:17642","l":"pentachlorophenol","na":1,"nb":1,"a":[["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_PCI","PCI-binding site"]]},{"id":"CHEBI:18012","l":"fumaric acid","na":1,"nb":1,"a":[["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["proteintraitsmech%3ABIOLIP_FUM","FUM-binding site"]]},{"id":"CHEBI:18186","l":"tyrosine","na":1,"nb":1,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["MCSA%3A668","leishmanolysin"]]},{"id":"CHEBI:22660","l":"aspartic acid","na":1,"nb":1,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"]]},{"id":"CHEBI:24632","l":"hydrocarbon","na":1,"nb":1,"a":[["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"]],"b":[["TCDB%3A1.B.9","The FadL Outer Membrane Protein (FadL) Family"]]},{"id":"CHEBI:26401","l":"purines","na":1,"nb":1,"a":[["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:27570","l":"histidine","na":1,"nb":1,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:28260","l":"galactose","na":1,"nb":1,"a":[["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:28808","l":"mannan","na":1,"nb":1,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"]],"b":[["TCDB%3A4.A.3","The PTS Lactose-N,N'-Diacetylchitobiose-β-glucoside (Lac) Family"]]},{"id":"CHEBI:30778","l":"gallic acid","na":1,"nb":1,"a":[["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_GDE","GDE-binding site"]]},{"id":"CHEBI:32079","l":"pyrrolnitrin","na":1,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["RHEA%3A46136","aminopyrrolnitrin + NADPH + 2 O2 + H(+) = pyrrolnitrin + NADP(+) + 2 H2O"]]},{"id":"CHEBI:33198","l":"D-gluconic acid","na":1,"nb":1,"a":[["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"]],"b":[["proteintraitsmech%3ABIOLIP_GCO","GCO-binding site"]]},{"id":"CHEBI:34031","l":"1,1-dichloroethene","na":1,"nb":1,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["RHEA%3A68000","1,1-dichloroethene + AH2 = chloroethene + chloride + A + H(+)"]]},{"id":"CHEBI:34631","l":"chlorpyrifos","na":1,"nb":1,"a":[["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:35366","l":"fatty acid","na":1,"nb":1,"a":[["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:36976","l":"nucleotide","na":1,"nb":1,"a":[["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"]],"b":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"]]},{"id":"CHEBI:38155","l":"phytosiderophore","na":1,"nb":1,"a":[["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["TCDB%3A2.A.67","The Oligopeptide Transporter (OPT) Family"]]},{"id":"CHEBI:38372","l":"cis-2-dodecenoic acid","na":1,"nb":1,"a":[["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_GEY","GEY-binding site"]]},{"id":"CHEBI:41131","l":"crotonic acid","na":1,"nb":1,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_BEO","BEO-binding site"]]},{"id":"CHEBI:45441","l":"N-acetyl-L-serine","na":1,"nb":1,"a":[["Watermelon_Rhizosphere_Fusarium_SynCom8.html","Watermelon Rhizosphere Fusarium-Protective SynCom8"]],"b":[["proteintraitsmech%3ABIOLIP_SAC","SAC-binding site"]]},{"id":"CHEBI:46645","l":"isobutanol","na":1,"nb":1,"a":[["Trichoderma_Ecoli_Cellulosic_Isobutanol_Coculture.html","Trichoderma-E. coli Cellulosic Isobutanol Coculture"]],"b":[["RHEA%3A64692","isobutanol + NAD(+) = 2-methylpropanal + NADH + H(+)"]]},{"id":"CHEBI:49017","l":"3-methylthiopropanal","na":1,"nb":1,"a":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["RHEA%3A55076","4-methylsulfanyl-2-oxobutanoate + H(+) = 3-methylsulfanylpropanal + CO2"]]},{"id":"CHEBI:49890","l":"samarium(3+)","na":1,"nb":1,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_SM","SM-binding site"]]},{"id":"CHEBI:49980","l":"ytterbium(3+)","na":1,"nb":1,"a":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["proteintraitsmech%3ABIOLIP_YB","YB-binding site"]]},{"id":"CHEBI:75861","l":"arsenopyrite","na":1,"nb":1,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"]],"b":[["TCDB%3A3.A.4","The Arsenite-Antimonite (ArsAB) Efflux Family"]]},{"id":"CHEBI:84043","l":"gallium(3+)","na":1,"nb":1,"a":[["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"GO:0006046","l":"N-acetylglucosamine catabolic process","na":1,"nb":1,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]],"b":[["GO%3A0006046","N-acetylglucosamine catabolic process"]]},{"id":"GO:0019249","l":"lactate biosynthetic process","na":1,"nb":1,"a":[["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["GO%3A0019249","lactate biosynthetic process"]]},{"id":"GO:0019253","l":"reductive pentose-phosphate cycle","na":1,"nb":1,"a":[["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["GO%3A0019253","reductive pentose-phosphate cycle"]]},{"id":"GO:0019332","l":"aerobic respiration, using nitrite as electron donor","na":1,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"]],"b":[["GO%3A0019332","aerobic respiration, using nitrite as electron donor"]]},{"id":"GO:0022622","l":"root system development","na":1,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["GO%3A0022622","root system development"]]},{"id":"GO:0042192","l":"methylmercury biosynthetic process","na":1,"nb":1,"a":[["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"]],"b":[["GO%3A0042192","methylmercury biosynthetic process"]]},{"id":"GO:0046202","l":"cyanide biosynthetic process","na":1,"nb":1,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"]],"b":[["GO%3A0046202","cyanide biosynthetic process"]]},{"id":"GO:0051850","l":"acquisition of nutrients from symbiont","na":1,"nb":1,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0051850","acquisition of nutrients from symbiont"]]},{"id":"GO:0140923","l":"magnetosome assembly","na":1,"nb":1,"a":[["Tropidoatractus_Magnetotacticus_Tripartite_Syntrophy.html","Tropidoatractus magnetotacticus Magnetotactic Ciliate Tripartite Syntrophy"]],"b":[["GO%3A0140923","magnetosome assembly"]]},{"id":"GO:1902087","l":"dimethylsulfoniopropionate catabolic process","na":1,"nb":1,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["GO%3A1902087","dimethylsulfoniopropionate catabolic process"]]},{"id":"NCBITaxon:105841","l":"Anaerostipes caccae","na":1,"nb":1,"a":[["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["TED%3AAF-A0A6N2WKG2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N2WKG2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1072583","l":"Vreelandella boliviensis LC1","na":1,"nb":1,"a":[["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"]],"b":[["TED%3AAF-A0A265DTH2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A265DTH2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1165","l":"Anabaena cylindrica","na":1,"nb":1,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["Pfam%3APF17275","Family of unknown function (DUF5340)"]]},{"id":"NCBITaxon:118127","l":"Chryseobacterium proteolyticum","na":1,"nb":1,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["Pfam%3APF18626","Glutaminase"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":1,"nb":1,"a":[["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["TED%3AAF-A0A132HLN2-F1-model_v4_TED01","TED novel fold AF-A0A132HLN2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1215089","l":"Planococcus halocryophilus","na":1,"nb":1,"a":[["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"]],"b":[["TED%3AAF-A0A1C7DVM0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C7DVM0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":1,"nb":1,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["PROSITE%3APS01043","Transposases, IS30 family, signature"]]},{"id":"NCBITaxon:1317","l":"Streptococcus downei","na":1,"nb":1,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["Pfam%3APF13199","Glycosyl hydrolase family 66"]]},{"id":"NCBITaxon:1335","l":"Streptococcus equinus","na":1,"nb":1,"a":[["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"]],"b":[["TED%3AAF-A0A1V0GLT7-F1-model_v4_TED01","TED novel fold AF-A0A1V0GLT7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:134","l":"Methylocystis parvus","na":1,"nb":1,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"]],"b":[["TED%3AAF-A0A6B8M6B0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6B8M6B0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:138074","l":"Serratia symbiotica","na":1,"nb":1,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"]],"b":[["TED%3AAF-A0A068YYP3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A068YYP3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1399","l":"Cytobacillus firmus","na":1,"nb":1,"a":[["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"]],"b":[["TED%3AAF-A0A800NFK9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A800NFK9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1547","l":"Thomasclavelia ramosa","na":1,"nb":1,"a":[["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["TED%3AAF-A0A3E3E4C4-F1-model_v4_TED02","TED novel fold AF-A0A3E3E4C4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1585","l":"Lactobacillus delbrueckii subsp. bulgaricus","na":1,"nb":1,"a":[["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["TED%3AAF-A0A809EIY6-F1-model_v4_TED02","TED novel fold AF-A0A809EIY6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:159743","l":"Paenibacillus terrae","na":1,"nb":1,"a":[["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"]],"b":[["TED%3AAF-A0A0D7WXS4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D7WXS4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1673428","l":"Cuniculiplasma divulgatum","na":1,"nb":1,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["TED%3AAF-A0A1N5S5J2-F1-model_v4_TED02","TED novel fold AF-A0A1N5S5J2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1979961","l":"Wenzhouxiangella sp.","na":1,"nb":1,"a":[["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["TED%3AAF-A0A5Q4GWL5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Q4GWL5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2209","l":"Methanosarcina mazei","na":1,"nb":1,"a":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"]],"b":[["TED%3AAF-A0A0F8CQX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F8CQX7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:223967","l":"Methylorubrum populi","na":1,"nb":1,"a":[["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"]],"b":[["TED%3AAF-A0A161JLG1-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A161JLG1-F1-model_v4_TED04"]]},{"id":"NCBITaxon:250","l":"Chryseobacterium gleum","na":1,"nb":1,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["TED%3AAF-A0A448B167-F1-model_v4_TED02","TED novel fold AF-A0A448B167-F1-model_v4_TED02"]]},{"id":"NCBITaxon:270351","l":"Methylobacterium aquaticum","na":1,"nb":1,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["TED%3AAF-A0A0J6S4M9-F1-model_v4_TED02","TED novel fold AF-A0A0J6S4M9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2759","l":"Eukaryota","na":1,"nb":1,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2759","Eukaryota orthologous groups (OrthoDB)"]]},{"id":"NCBITaxon:29875","l":"Trichoderma virens","na":1,"nb":1,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"]],"b":[["Pfam%3APF07249","Cerato-platanin"]]},{"id":"NCBITaxon:299767","l":"Enterobacter ludwigii","na":1,"nb":1,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["TED%3AAF-W0BYN9-F1-model_v4_TED01","TED highly-symmetric fold AF-W0BYN9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:316385","l":"Escherichia coli str. K-12 substr. DH10B","na":1,"nb":1,"a":[["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["Pfam%3APF06392","Acid shock protein"]]},{"id":"NCBITaxon:323259","l":"Methanospirillum hungatei JF-1","na":1,"nb":1,"a":[["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["Pfam%3APF01864","CDP-archaeol synthase"]]},{"id":"NCBITaxon:33905","l":"Bifidobacterium thermophilum","na":1,"nb":1,"a":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["TED%3AAF-A0A2N3QE79-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3QE79-F1-model_v4_TED01"]]},{"id":"NCBITaxon:33959","l":"Lactobacillus johnsonii","na":1,"nb":1,"a":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]],"b":[["Pfam%3APF13518","Helix-turn-helix domain"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":1,"nb":1,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["TED%3AAF-A0A679J1E9-F1-model_v4_TED01","TED novel fold AF-A0A679J1E9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:3747","l":"Fragaria x ananassa","na":1,"nb":1,"a":[["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["PROSITE%3APS00451","Pathogenesis-related proteins Bet v I family signature"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"]],"b":[["Pfam%3APF13282","Domain of unknown function (DUF4070)"]]},{"id":"NCBITaxon:40216","l":"Acinetobacter radioresistens","na":1,"nb":1,"a":[["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["TED%3AAF-A0A7D7YF26-F1-model_v4_TED02","TED novel fold AF-A0A7D7YF26-F1-model_v4_TED02"]]},{"id":"NCBITaxon:453960","l":"Sulfobacillus benefaciens","na":1,"nb":1,"a":[["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"]],"b":[["TED%3AAF-A0A2T2WWZ6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2T2WWZ6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:47715","l":"Lacticaseibacillus rhamnosus","na":1,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["Pfam%3APF04914","DltD protein"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":1,"nb":1,"a":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]],"b":[["TED%3AAF-A0A4R6CRR7-F1-model_v4_TED01","TED novel fold AF-A0A4R6CRR7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:4911","l":"Kluyveromyces marxianus","na":1,"nb":1,"a":[["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["Pfam%3APF04684","BAF1 / ABF1 chromatin reorganising factor"]]},{"id":"NCBITaxon:5547","l":"Trichoderma viride","na":1,"nb":1,"a":[["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["Pfam%3APF14587","O-Glycosyl hydrolase family 30"]]},{"id":"NCBITaxon:61435","l":"Dehalococcoides mccartyi","na":1,"nb":1,"a":[["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"]],"b":[["TED%3AAF-A0A2J1E0L6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J1E0L6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:68239","l":"Streptomyces mirabilis strain P8-A","na":1,"nb":1,"a":[["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["TED%3AAF-A0A1I2Y4U7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2Y4U7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:69488","l":"Penicillium simplicissimum","na":1,"nb":1,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"]],"b":[["MCSA%3A103","vanillyl-alcohol oxidase"]]},{"id":"NCBITaxon:72360","l":"Bacillus mojavensis","na":1,"nb":1,"a":[["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["Pfam%3APF05952","Bacillus competence pheromone ComX"]]},{"id":"NCBITaxon:82367","l":"Paracoccus pantotrophus","na":1,"nb":1,"a":[["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"]],"b":[["Pfam%3APF17805","AsnC-like ligand binding domain"]]},{"id":"NCBITaxon:82380","l":"Microbacterium oxydans","na":1,"nb":1,"a":[["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]],"b":[["TED%3AAF-A0A4Y4GD74-F1-model_v4_TED02","TED novel fold AF-A0A4Y4GD74-F1-model_v4_TED02"]]},{"id":"NCBITaxon:986","l":"Flavobacterium johnsoniae","na":1,"nb":1,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["TED%3AAF-A0A1J7BWE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1J7BWE6-F1-model_v4_TED01"]]}]} \ No newline at end of file +{"a":"CommunityMech","b":"ProteinTraitsMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record="},"n":698,"by":{"CHEBI":280,"NCBITaxon":227,"GO":190,"UBERON":1},"terms":[{"id":"CHEBI:30089","l":"acetate","na":78,"nb":302,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"]],"b":[["EC%3A1.1.1.318","eugenol synthase"],["EC%3A1.1.1.319","isoeugenol synthase"],["EC%3A1.13.11.50","acetylacetone-cleaving enzyme"],["EC%3A1.13.12.4","lactate 2-monooxygenase"],["EC%3A1.14.13.54","ketosteroid monooxygenase"],["EC%3A1.14.14.19","steroid 17alpha-monooxygenase"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":75,"nb":1616,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]],"b":[["EC%3A1.1.1.170","3beta-hydroxysteroid-4alpha-carboxylate 3-dehydrogenase (decarboxylating)"],["EC%3A1.1.1.262","4-hydroxythreonine-4-phosphate dehydrogenase"],["EC%3A1.1.1.276","serine 3-dehydrogenase (NADP(+))"],["EC%3A1.1.1.286","isocitrate--homoisocitrate dehydrogenase"],["EC%3A1.1.1.305","UDP-glucuronic acid oxidase (UDP-4-keto-hexauronic acid decarboxylating)"],["EC%3A1.1.1.343","phosphogluconate dehydrogenase (NAD(+)-dependent, decarboxylating)"]]},{"id":"GO:0015979","l":"photosynthesis","na":44,"nb":146,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["GO%3A0015979","photosynthesis"],["NCBIfam%3ATIGR01337","allophycocyanin subunit beta"],["NCBIfam%3ATIGR03056","alpha/beta fold hydrolase BchO"],["NCBIfam%3ANF013497","Apocytochrome F, C-terminal"],["NCBIfam%3ANF014391","Bacteriochlorophyll A protein"],["NCBIfam%3ANF058502","C-phycocyanin alpha-cysteine-84 phycocyanobilin lyase subunit CpcE"]]},{"id":"GO:0015948","l":"methanogenesis","na":44,"nb":82,"a":[["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"]],"b":[["GO%3A0019385","methanogenesis, from acetate"],["GO%3A0019386","methanogenesis, from carbon dioxide"],["GO%3A0019387","methanogenesis, from methanol"],["GO%3A0015948","methanogenesis"],["proteintraitsmech%3ASEED_SUBSYSTEM_Methanogenesis","Methanogenesis"],["NCBIfam%3ATIGR03957","5,10-methenyltetrahydromethanopterin hydrogenase cofactor biosynthesis protein HmdB"]]},{"id":"CHEBI:18276","l":"dihydrogen","na":58,"nb":42,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"]],"b":[["EC%3A1.12.1.2","hydrogen dehydrogenase"],["EC%3A1.12.1.3","hydrogen dehydrogenase (NADP(+))"],["EC%3A1.12.1.4","hydrogenase (NAD(+), ferredoxin)"],["EC%3A1.12.1.5","hydrogen dehydrogenase [NAD(P)(+)]"],["EC%3A1.12.2.1","cytochrome-c3 hydrogenase"],["EC%3A1.12.5.1","hydrogen:quinone oxidoreductase"]]},{"id":"GO:0015977","l":"carbon fixation","na":33,"nb":30,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["GO%3A0009760","C4 photosynthesis"],["GO%3A0009761","CAM photosynthesis"],["GO%3A0043427","carbon fixation by 3-hydroxypropionate cycle"],["GO%3A0030634","carbon fixation by acetyl-CoA pathway"],["GO%3A0015977","carbon fixation"],["GO%3A0019643","reductive tricarboxylic acid cycle"]]},{"id":"CHEBI:17632","l":"nitrate","na":28,"nb":40,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["EC%3A1.14.12.17","nitric oxide dioxygenase"],["EC%3A1.7.1.1","nitrate reductase (NADH)"],["EC%3A1.7.1.2","nitrate reductase [NAD(P)H]"],["EC%3A1.7.1.3","nitrate reductase (NADPH)"],["EC%3A1.7.5.1","nitrate reductase (quinone)"],["EC%3A1.7.6.1","nitrite dismutase"]]},{"id":"CHEBI:15379","l":"dioxygen","na":26,"nb":3896,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["EC%3A1.1.3.10","pyranose oxidase"],["EC%3A1.1.3.11","L-sorbose oxidase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.3.13","alcohol oxidase"],["EC%3A1.1.3.14","catechol oxidase (dimerizing)"],["EC%3A1.1.3.15","(S)-2-hydroxy-acid oxidase"]]},{"id":"CHEBI:16189","l":"sulfate","na":25,"nb":133,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16189","requires sulfate"],["EC%3A1.14.11.77","alkyl sulfatase"],["EC%3A1.8.2.1","sulfite dehydrogenase (cytochrome)"],["EC%3A1.8.3.1","sulfite oxidase"],["EC%3A1.8.5.6","sulfite dehydrogenase (quinone)"],["EC%3A2.7.7.4","sulfate adenylyltransferase"]]},{"id":"CHEBI:16236","l":"ethanol","na":25,"nb":31,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.5.5","alcohol dehydrogenase (quinone)"],["EC%3A1.1.99.36","alcohol dehydrogenase (nicotinoprotein)"],["EC%3A2.3.1.268","ethanol O-acetyltransferase"],["EC%3A3.1.1.113","ethyl acetate hydrolase"],["EC%3A3.1.1.67","fatty-acyl-ethyl-ester synthase"]]},{"id":"GO:0009399","l":"nitrogen fixation","na":24,"nb":36,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"]],"b":[["GO%3A0009399","nitrogen fixation"],["proteintraitsmech%3ASEED_SUBSYSTEM_Nitrogen_fixation","Nitrogen fixation"],["NCBIfam%3ATIGR02662","ADP-ribosyl-[dinitrogen reductase] hydrolase"],["NCBIfam%3ATIGR02931","Fe-only nitrogenase subunit beta"],["NCBIfam%3ATIGR02929","Fe-only nitrogenase subunit delta"],["NCBIfam%3ATIGR02000","Fe-S cluster assembly protein NifU"]]},{"id":"CHEBI:15740","l":"formate","na":23,"nb":173,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"]],"b":[["EC%3A1.1.98.6","ribonucleoside-triphosphate reductase (formate)"],["EC%3A1.10.3.15","grixazone synthase"],["EC%3A1.13.11.41","2,4'-dihydroxyacetophenone dioxygenase"],["EC%3A1.13.11.53","acireductone dioxygenase (Ni(2+)-requiring)"],["EC%3A1.13.11.54","acireductone dioxygenase (Fe(2+)-requiring)"],["EC%3A1.13.11.72","2-hydroxyethylphosphonate dioxygenase"]]},{"id":"CHEBI:24996","l":"lactate","na":22,"nb":23,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["EC%3A1.1.1.436","lactate dehydrogenase (NAD(+),ferredoxin)"],["EC%3A3.5.1.124","protein deglycase"],["RHEA%3A57300","an N(2)-(1-hydroxy-2-oxopropyl)-2'-deoxyguanosine in DNA + H2O = a 2'-deoxyguanosine in DNA + lactate + H(+)"],["RHEA%3A57288","an N(2)-(1-hydroxy-2-oxopropyl)-guanosine in RNA + H2O = a guanosine in RNA + lactate + H(+)"],["RHEA%3A46964","lactate + 2 reduced [2Fe-2S]-[ferredoxin] + 2 NAD(+) = 2 oxidized [2Fe-2S]-[ferredoxin] + pyruvate + 2 NADH"],["RHEA%3A57244","N(2)-(1-hydroxy-2-oxopropyl)-dGTP + H2O = lactate + dGTP + H(+)"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":21,"nb":396,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29033","requires iron(2+)"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.11","glucoside 3-dehydrogenase (cytochrome c)"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.2.3","L-lactate dehydrogenase (cytochrome)"],["EC%3A1.1.2.4","D-lactate dehydrogenase (cytochrome)"]]},{"id":"CHEBI:29034","l":"iron(3+)","na":21,"nb":376,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29034","requires iron(3+)"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.11","glucoside 3-dehydrogenase (cytochrome c)"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.2.3","L-lactate dehydrogenase (cytochrome)"],["EC%3A1.1.2.4","D-lactate dehydrogenase (cytochrome)"]]},{"id":"CHEBI:28938","l":"ammonium","na":19,"nb":837,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_28938","requires ammonium"],["EC%3A1.13.12.15","3,4-dihydroxyphenylalanine oxidative deaminase"],["EC%3A1.13.99.3","tryptophan 2'-dioxygenase"],["EC%3A1.14.11.37","kanamycin B dioxygenase"],["EC%3A1.14.12.1","anthranilate 1,2-dioxygenase (deaminating, decarboxylating)"],["EC%3A1.14.12.14","2-aminobenzenesulfonate 2,3-dioxygenase"]]},{"id":"CHEBI:17968","l":"butyrate","na":19,"nb":33,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"]],"b":[["EC%3A1.3.1.31","2-enoate reductase"],["EC%3A2.3.1.315","succinyl-CoA:cyclohexane-1-carboxylate CoA transferase"],["EC%3A2.7.2.7","butyrate kinase"],["EC%3A2.8.3.9","butyrate--acetoacetate CoA-transferase"],["EC%3A3.1.1.51","phorbol-diester hydrolase"],["EC%3A3.7.1.7","beta-diketone hydrolase"]]},{"id":"GO:0044419","l":"biological process involved in interspecies interaction between organisms","na":148,"nb":18,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]],"b":[["GO%3A0044419","biological process involved in interspecies interaction between organisms"],["GO%3A0044403","biological process involved in symbiotic interaction"],["GO%3A0141060","disruption of anatomical structure in another organism"],["GO%3A0044111","formation of structure involved in a symbiotic process"],["GO%3A0140106","hematophagy"],["GO%3A0035821","modulation of process of another organism"]]},{"id":"GO:0030245","l":"cellulose catabolic process","na":30,"nb":18,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"]],"b":[["GO%3A1990488","anaerobic cellulose catabolic process"],["GO%3A0030245","cellulose catabolic process"],["GO%3A0052785","cellulose catabolism by endo-processive cellulases"],["NCBIfam%3ANF049990","cellulose 1,4-beta-cellobiosidase"],["NCBIfam%3ANF041611","exoglucanase CbhB"],["NCBIfam%3ATIGR03356","GH1 family beta-glucosidase"]]},{"id":"CHEBI:16301","l":"nitrite","na":17,"nb":116,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["EC%3A1.13.11.64","5-nitrosalicylate dioxygenase"],["EC%3A1.13.12.16","nitronate monooxygenase"],["EC%3A1.14.12.23","nitroarene dioxygenase"],["EC%3A1.14.12.24","2,4-dinitrotoluene dioxygenase"],["EC%3A1.14.13.166","4-nitrocatechol 4-monooxygenase"],["EC%3A1.14.13.167","4-nitrophenol 4-monooxygenase"]]},{"id":"GO:0006805","l":"xenobiotic metabolic process","na":17,"nb":38,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"]],"b":[["GO%3A0018872","arsonoacetate metabolic process"],["GO%3A0018890","cyanamide metabolic process"],["GO%3A0018892","cyclohexylsulfamate metabolic process"],["GO%3A0018905","dimethyl ether metabolic process"],["GO%3A0018909","dodecyl sulfate metabolic process"],["GO%3A0042197","halogenated hydrocarbon metabolic process"]]},{"id":"GO:0006826","l":"iron ion transport","na":17,"nb":26,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"]],"b":[["GO%3A1901678","iron coordination entity transport"],["GO%3A0033212","iron import into cell"],["GO%3A0034755","iron ion transmembrane transport"],["GO%3A0006826","iron ion transport"],["GO%3A0033571","lactoferrin transport"],["GO%3A0033572","transferrin transport"]]},{"id":"GO:0005975","l":"carbohydrate metabolic process","na":15,"nb":401,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"]],"b":[["GO%3A0016051","carbohydrate biosynthetic process"],["GO%3A0016052","carbohydrate catabolic process"],["GO%3A0005975","carbohydrate metabolic process"],["GO%3A0046835","carbohydrate phosphorylation"],["GO%3A0042836","D-glucarate metabolic process"],["GO%3A0019521","D-gluconate metabolic process"]]},{"id":"GO:0022900","l":"electron transport chain","na":15,"nb":50,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"]],"b":[["GO%3A0022900","electron transport chain"],["GO%3A0140647","P450-containing electron transport chain"],["GO%3A0009767","photosynthetic electron transport chain"],["GO%3A0022904","respiratory electron transport chain"],["NCBIfam%3ANF058577","4Fe-4S ferredoxin"],["NCBIfam%3ANF042982","8-methylmenaquinol:fumarate reductase flavoprotein subunit"]]},{"id":"CHEBI:17992","l":"sucrose","na":15,"nb":49,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"]],"b":[["EC%3A1.1.99.13","glucoside 3-dehydrogenase (acceptor)"],["EC%3A2.4.1.10","levansucrase"],["EC%3A2.4.1.125","sucrose--1,6-alpha-glucan 3(6)-alpha-glucosyltransferase"],["EC%3A2.4.1.13","sucrose synthase"],["EC%3A2.4.1.166","raffinose--raffinose alpha-galactosyltransferase"],["EC%3A2.4.1.167","sucrose 6(F)-alpha-galactosyltransferase"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":15,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["Pfam%3APF14562","Restriction endonuclease BglI"],["Pfam%3APF09195","Restriction endonuclease BglII/BglIII"],["Pfam%3APF09208","Restriction endonuclease MspI"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":14,"nb":145,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]],"b":[["IDPO%3A0000033","flexible linker"],["IDPO%3A0000014","order to disorder"],["IDPO%3A0000004","pre-molten globule"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"]]},{"id":"GO:0006113","l":"fermentation","na":43,"nb":14,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"]],"b":[["ComplexPortal%3ACPX-281","Hydrogenase-1 complex"],["GO%3A0030645","acetyl-CoA fermentation to butanoate"],["GO%3A0019665","amino acid fermentation"],["GO%3A0019588","anaerobic glycerol catabolic process"],["GO%3A0019658","bifid shunt"],["GO%3A0044577","D-xylose fermentation"]]},{"id":"GO:0006790","l":"sulfur compound metabolic process","na":13,"nb":113,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"]],"b":[["GO%3A0050427","3'-phosphoadenosine 5'-phosphosulfate metabolic process"],["GO%3A0018887","4-carboxy-4'-sulfoazobenzene metabolic process"],["GO%3A0006637","acyl-CoA metabolic process"],["GO%3A0019694","alkanesulfonate metabolic process"],["GO%3A0006768","biotin metabolic process"],["GO%3A1901266","cephalosporin C metabolic process"]]},{"id":"CHEBI:16183","l":"methane","na":62,"nb":13,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"]],"b":[["EC%3A1.14.13.25","methane monooxygenase (soluble)"],["EC%3A1.14.18.3","methane monooxygenase (particulate)"],["EC%3A2.8.4.1","coenzyme-B sulfoethylthiotransferase"],["EC%3A4.7.1.1","alpha-D-ribose 1-methylphosphonate 5-phosphate C-P-lyase"],["RHEA%3A34707","alpha-D-ribose 1-methylphosphonate 5-phosphate + AH2 + S-adenosyl-L-methionine = alpha-D-ribose 1,2-cyclic phosphate 5-phosphate + methane + 5'-deoxyadenosine + L-methionine + A + H(+)"],["RHEA%3A12532","coenzyme B + methyl-coenzyme M = methane + coenzyme M-coenzyme B heterodisulfide"]]},{"id":"CHEBI:26833","l":"sulfur atom","na":12,"nb":24,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["EC%3A1.12.98.4","sulfhydrogenase"],["EC%3A1.13.11.55","sulfur oxygenase/reductase"],["EC%3A1.8.1.18","NAD(P)H sulfur oxidoreductase (CoA-dependent)"],["EC%3A1.8.1.19","sulfide dehydrogenase"],["EC%3A1.8.2.3","sulfide-cytochrome-c reductase (flavocytochrome c)"],["EC%3A1.8.2.7","thiocyanate desulfurase"]]},{"id":"CHEBI:17997","l":"dinitrogen","na":12,"nb":18,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["EC%3A1.18.6.1","nitrogenase"],["EC%3A1.18.6.2","vanadium-dependent nitrogenase"],["EC%3A1.19.6.1","nitrogenase (flavodoxin)"],["EC%3A1.7.2.4","nitrous-oxide reductase"],["EC%3A1.7.2.8","hydrazine dehydrogenase"],["RHEA%3A79967","3-diazoavenalumate + NADH + H(+) = avenalumate + N2 + NAD(+)"]]},{"id":"CHEBI:17790","l":"methanol","na":11,"nb":86,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"]],"b":[["EC%3A1.1.1.244","methanol dehydrogenase"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.99.37","methanol dehydrogenase (nicotinoprotein)"],["EC%3A1.14.13.25","methane monooxygenase (soluble)"],["EC%3A1.14.14.117","aflatoxin B synthase"]]},{"id":"CHEBI:17272","l":"propionate","na":11,"nb":34,"a":[["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"]],"b":[["EC%3A1.3.1.125","acrylate reductase"],["EC%3A2.7.2.15","propionate kinase"],["EC%3A2.8.3.1","propionate CoA-transferase"],["EC%3A2.8.3.27","propanoyl-CoA:succinate CoA transferase"],["EC%3A4.1.3.32","2,3-dimethylmalate lyase"],["EC%3A6.2.1.13","acetate--CoA ligase (ADP-forming)"]]},{"id":"GO:0044403","l":"biological process involved in symbiotic interaction","na":20,"nb":11,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["GO%3A0036377","arbuscular mycorrhizal association"],["GO%3A0051701","biological process involved in interaction with host"],["GO%3A0051702","biological process involved in interaction with symbiont"],["GO%3A0044403","biological process involved in symbiotic interaction"],["GO%3A0075733","intracellular transport of virus"],["GO%3A0044399","multi-species biofilm formation"]]},{"id":"GO:0045493","l":"xylan catabolic process","na":11,"nb":19,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["GO%3A2000888","arabinoxylan-containing compound catabolic process"],["GO%3A2000886","glucuronoxylan catabolic process"],["GO%3A0045493","xylan catabolic process"],["NCBIfam%3ANF042968","acetylxylan esterase AxeA1"],["NCBIfam%3ANF041579","beta-xylosidase"],["NCBIfam%3ANF042969","bifunctional acetylxylan esterase/glucomannan deacetylase AxeC2"]]},{"id":"GO:0050832","l":"defense response to fungus","na":11,"nb":15,"a":[["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"]],"b":[["GO%3A0019732","antifungal humoral response"],["GO%3A0061760","antifungal innate immune response"],["GO%3A0050832","defense response to fungus"],["NCBIfam%3ANF013159","Barwin family"],["InterPro%3AIPR018226","Barwin, conserved site"],["InterPro%3AIPR001153","Barwin domain"]]},{"id":"CHEBI:16134","l":"ammonia","na":14,"nb":11,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]],"b":[["TCDB%3A1.A.11","The Ammonium Transporter Channel (Amt) Family"],["MCSA%3A376","adenosine deaminase"],["MCSA%3A75","aspartate-ammonia ligase"],["MCSA%3A449","cystathionine beta-lyase"],["MCSA%3A97","cytidine deaminase"],["MCSA%3A710","cytosine deaminase (bacterial)"]]},{"id":"CHEBI:29036","l":"copper(2+)","na":10,"nb":40,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29036","requires copper(2+)"],["EC%3A1.1.9.1","alcohol dehydrogenase (azurin)"],["EC%3A1.16.3.4","cuproxidase"],["EC%3A1.17.9.1","4-methylphenol dehydrogenase (hydroxylating)"],["EC%3A1.17.9.2","(+)-pinoresinol hydroxylase"],["EC%3A1.20.9.1","arsenate reductase (azurin)"]]},{"id":"GO:0042742","l":"defense response to bacterium","na":9,"nb":53,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["ComplexPortal%3ACPX-10317","Interleukin-26 complex"],["GO%3A0019731","antibacterial humoral response"],["GO%3A0140367","antibacterial innate immune response"],["GO%3A0042742","defense response to bacterium"],["GO%3A0050829","defense response to Gram-negative bacterium"],["GO%3A0050830","defense response to Gram-positive bacterium"]]},{"id":"GO:0010038","l":"response to metal ion","na":9,"nb":34,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"]],"b":[["GO%3A0071248","cellular response to metal ion"],["GO%3A0010044","response to aluminum ion"],["GO%3A0046686","response to cadmium ion"],["GO%3A0051592","response to calcium ion"],["GO%3A0010164","response to cesium ion"],["GO%3A0032025","response to cobalt ion"]]},{"id":"GO:0009372","l":"quorum sensing","na":9,"nb":21,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["ComplexPortal%3ACPX-4315","Autoinducer-2 ABC transporter complex"],["GO%3A0120218","host interaction involved in quorum sensing"],["GO%3A0009372","quorum sensing"],["NCBIfam%3ANF052393","acyl-homoserine-lactone synthase"],["NCBIfam%3ANF008187","autoinducer-2 kinase"],["NCBIfam%3ANF010444","autoinducer-binding transcriptional regulator TraR"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":9,"nb":20,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]],"b":[["Pfam%3APF14535","AMP-binding enzyme C-terminal domain"],["Pfam%3APF13442","Cytochrome C oxidase, cbb3-type, subunit III"],["Pfam%3APF22247","Catechol 2,3-dioxygenase-like N-terminal domain"],["Pfam%3APF25371","Domain of unknown function (DUF7884)"],["Pfam%3APF19301","LigXa C-terminal domain like"],["Pfam%3APF12729","Four helix bundle sensory module for signal transduction"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":9,"nb":19,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"]],"b":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"],["Pfam%3APF18173","Bacterial HORMA domain 2"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["Pfam%3APF27322","Cap8 HORMA domain"],["Pfam%3APF01526","Tn3 transposase DDE domain"]]},{"id":"CHEBI:28885","l":"butan-1-ol","na":9,"nb":16,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["EC%3A1.1.2.9","1-butanol dehydrogenase (cytochrome c)"],["EC%3A1.1.5.11","1-butanol dehydrogenase (quinone)"],["EC%3A1.14.13.230","butane monooxygenase (soluble)"],["RHEA%3A64672","2-(methylsulfanyl)acetyl-CoA + butan-1-ol = butyl 2-(methylsulfanyl)acetate + CoA"],["RHEA%3A64676","3-(methylsulfanyl)propanoyl-CoA + butan-1-ol = butyl 3-(methylsulfanyl)propanoate + CoA"],["RHEA%3A43432","butan-1-ol + 2 Fe(III)-[cytochrome c] = butanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"]]},{"id":"CHEBI:15361","l":"pyruvate","na":8,"nb":410,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15361","requires pyruvate"],["EC%3A1.1.1.27","L-lactate dehydrogenase"],["EC%3A1.1.1.28","D-lactate dehydrogenase"],["EC%3A1.1.1.38","malate dehydrogenase (oxaloacetate-decarboxylating)"],["EC%3A1.1.1.39","malate dehydrogenase (decarboxylating)"],["EC%3A1.1.1.40","malate dehydrogenase (oxaloacetate-decarboxylating) (NADP(+))"]]},{"id":"GO:0009061","l":"anaerobic respiration","na":8,"nb":36,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["ComplexPortal%3ACPX-4841","Anaerobic glycerol-3-phosphate dehydrogenase complex"],["ComplexPortal%3ACPX-317","Formate hydrogenlyase-H/Hydrogenase-3 complex"],["ComplexPortal%3ACPX-6028","Formate hydrogenlyase-H/Hydrogenase-4 complex"],["ComplexPortal%3ACPX-281","Hydrogenase-1 complex"],["ComplexPortal%3ACPX-282","Hydrogenase-2 complex"],["ComplexPortal%3ACPX-3447","NapAB nitrate reductase complex"]]},{"id":"CHEBI:18385","l":"thiamine(1+)","na":8,"nb":19,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["EC%3A1.1.3.23","thiamine oxidase"],["EC%3A2.5.1.2","thiamine pyridinylase"],["EC%3A2.7.1.89","thiamine kinase"],["EC%3A2.7.6.2","thiamine diphosphokinase"],["EC%3A3.1.3.100","thiamine phosphate phosphatase"],["EC%3A3.5.99.2","aminopyrimidine aminohydrolase"]]},{"id":"CHEBI:33709","l":"amino acid","na":15,"nb":8,"a":[["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.23","The Dicarboxylate/Amino Acid:Cation (Na+ or H+) Symporter (DAACS) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A1.V.1","The Filamentous Cyanobacterial Septal Pore (Septum) Family"],["TCDB%3A1.A.24","The Gap Junction-forming Connexin (Connexin) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"GO:0015947","l":"methane metabolic process","na":11,"nb":8,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"]],"b":[["GO%3A0046188","methane catabolic process"],["GO%3A0015947","methane metabolic process"],["GO%3A0015948","methanogenesis"],["NCBIfam%3ANF014960","Methane monooxygenase, hydrolase gamma chain"],["Pfam%3APF02964","Methane monooxygenase, hydrolase gamma chain"],["InterPro%3AIPR015952","Methane monooxygenase, gamma chain, domain 1"]]},{"id":"GO:0046274","l":"lignin catabolic process","na":8,"nb":10,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"]],"b":[["GO%3A1990487","anaerobic lignin catabolic process"],["GO%3A1901062","guaiacyl lignin catabolic process"],["GO%3A0046274","lignin catabolic process"],["GO%3A1901059","p-hydroxyphenyl lignin catabolic process"],["GO%3A1901065","syringal lignin catabolic process"],["NCBIfam%3ANF042997","beta-etherase"]]},{"id":"GO:0040007","l":"growth","na":37,"nb":7,"a":[["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Cultivated_Meat_Contaminant_SynCom.html","Cultivated Meat Contaminant SynCom"]],"b":[["GO%3A0007117","budding cell bud growth"],["GO%3A0016049","cell growth"],["GO%3A0048589","developmental growth"],["GO%3A0030447","filamentous growth"],["GO%3A0040007","growth"],["GO%3A0080190","lateral growth"]]},{"id":"GO:0042710","l":"biofilm formation","na":29,"nb":7,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["GO%3A0042710","biofilm formation"],["GO%3A0044399","multi-species biofilm formation"],["GO%3A0044010","single-species biofilm formation"],["GO%3A0090605","submerged biofilm formation"],["GO%3A0090604","surface biofilm formation"],["Reactome%3AR-HSA-9931953","Biofilm formation"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":7,"nb":23,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["Pfam%3APF08878","HamA"],["Pfam%3APF05791","Bacillus haemolytic enterotoxin (HBL)"],["Pfam%3APF10803","Spore germination GerPB"],["Pfam%3APF10737","Spore germination protein GerPC"],["Pfam%3APF10970","Spore germination protein GerPE"],["Pfam%3APF07486","Cell Wall Hydrolase"]]},{"id":"CHEBI:17057","l":"cellobiose","na":7,"nb":19,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["EC%3A1.1.3.5","hexose oxidase"],["EC%3A1.1.99.18","cellobiose dehydrogenase (acceptor)"],["EC%3A2.4.1.20","cellobiose phosphorylase"],["EC%3A2.7.1.205","protein-N(pi)-phosphohistidine--D-cellobiose phosphotransferase"],["EC%3A2.7.1.85","beta-glucoside kinase"],["EC%3A5.1.3.11","cellobiose epimerase"]]},{"id":"GO:0019420","l":"dissimilatory sulfate reduction","na":17,"nb":7,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["DVM_Triculture.html","DVM Tri-culture"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"]],"b":[["GO%3A0019420","dissimilatory sulfate reduction"],["NCBIfam%3ATIGR02061","adenylyl-sulfate reductase subunit alpha"],["NCBIfam%3ATIGR02060","adenylyl-sulfate reductase subunit beta"],["NCBIfam%3ATIGR02066","dissimilatory-type sulfite reductase subunit beta"],["NCBIfam%3ANF045796","sulfate reduction electron transfer complex DsrMKJOP subunit DsrK"],["NCBIfam%3ANF045797","sulfate reduction electron transfer complex DsrMKJOP subunit DsrO"]]},{"id":"CHEBI:49786","l":"nickel(2+)","na":7,"nb":10,"a":[["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_49786","requires nickel(2+)"],["EC%3A4.99.1.11","sirohydrochlorin nickelchelatase"],["EC%3A4.99.1.12","pyridinium-3,5-bisthiocarboxylic acid mononucleotide nickel chelatase"],["EC%3A7.2.2.11","ABC-type Ni(2+) transporter"],["RHEA%3A29831","Ni(2+)(in) = Ni(2+)(out)"],["RHEA%3A15557","Ni(2+)(out) + ATP + H2O = Ni(2+)(in) + ADP + phosphate + H(+)"]]},{"id":"NCBITaxon:818","l":"Bacteroides thetaiotaomicron","na":7,"nb":9,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["Pfam%3APF09093","Lyase, catalytic"],["TED%3AAF-A0A174W9M0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A174W9M0-F1-model_v4_TED01"],["TED%3AAF-A0A679HCU6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A679HCU6-F1-model_v4_TED01"],["TED%3AAF-A0A139L295-F1-model_v4_TED04","TED novel fold AF-A0A139L295-F1-model_v4_TED04"],["TED%3AAF-A0A174QBB7-F1-model_v4_TED02","TED novel fold AF-A0A174QBB7-F1-model_v4_TED02"],["TED%3AAF-A0A679H9T4-F1-model_v4_TED03","TED novel fold AF-A0A679H9T4-F1-model_v4_TED03"]]},{"id":"GO:0009056","l":"catabolic process","na":6,"nb":109,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"],["Wetland_Oxygen_Sulfate_GHG_Microcosm_Community.html","Wetland Oxygen-Sulfate Greenhouse Gas Microcosm Community"]],"b":[["GO%3A0018911","1,2,4-trichlorobenzene catabolic process"],["GO%3A0019261","1,4-dichlorobenzene catabolic process"],["GO%3A0046302","2-chloro-N-isopropylacetanilide catabolic process"],["GO%3A1901851","7,8-didemethyl-8-hydroxy-5-deazariboflavin catabolic process"],["GO%3A0006581","acetylcholine catabolic process"],["GO%3A0046185","aldehyde catabolic process"]]},{"id":"CHEBI:17754","l":"glycerol","na":6,"nb":95,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"]],"b":[["EC%3A1.1.1.156","glycerol 2-dehydrogenase (NADP(+))"],["EC%3A1.1.1.372","D/L-glyceraldehyde reductase"],["EC%3A1.1.1.6","glycerol dehydrogenase"],["EC%3A1.1.1.72","glycerol dehydrogenase (NADP(+))"],["EC%3A1.1.99.22","glycerol dehydrogenase (acceptor)"],["EC%3A2.4.1.332","1,2-alpha-glucosylglycerol phosphorylase"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":6,"nb":93,"a":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17544","requires hydrogencarbonate"],["EC%3A1.13.11.73","methylphosphonate synthase"],["EC%3A1.2.1.27","methylmalonate-semialdehyde dehydrogenase (CoA acylating)"],["EC%3A2.5.1.120","aminodeoxyfutalosine synthase"],["EC%3A2.5.1.143","pyridinium-3,5-biscarboxylic acid mononucleotide synthase"],["EC%3A2.7.2.2","carbamate kinase"]]},{"id":"GO:0006979","l":"response to oxidative stress","na":6,"nb":50,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["ComplexPortal%3ACPX-9082","19S-20S-PA28-alphabeta hybrid proteasome complex"],["ComplexPortal%3ACPX-9085","19S-20S-PA28-gamma hybrid proteasome complex"],["ComplexPortal%3ACPX-8806","20S proteasome complex"],["ComplexPortal%3ACPX-4862","Alkyl hydroperoxide reductase complex"],["ComplexPortal%3ACPX-8842","PA28-alphabeta double-capped 20S proteasome complex"],["ComplexPortal%3ACPX-9002","PA28-alphabeta single-capped 20S proteasome complex"]]},{"id":"CHEBI:17245","l":"carbon monoxide","na":6,"nb":31,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Subsurface_Carboxydocella_CO_Aquifer_Community.html","Subsurface Carboxydocella CO-Oxidation Aquifer Community"]],"b":[["EC%3A1.13.11.24","quercetin 2,3-dioxygenase"],["EC%3A1.13.11.47","3-hydroxy-4-oxoquinoline 2,4-dioxygenase"],["EC%3A1.13.11.48","3-hydroxy-2-methylquinolin-4-one 2,4-dioxygenase"],["EC%3A1.13.11.53","acireductone dioxygenase (Ni(2+)-requiring)"],["EC%3A1.14.14.18","heme oxygenase (biliverdin-producing)"],["EC%3A1.14.15.20","heme oxygenase (biliverdin-producing, ferredoxin)"]]},{"id":"CHEBI:18246","l":"(1->4)-beta-D-glucan","na":27,"nb":6,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["EC%3A2.4.1.12","cellulose synthase (UDP-forming)"],["EC%3A2.4.1.29","cellulose synthase (GDP-forming)"],["EC%3A2.4.1.49","cellodextrin phosphorylase"],["RHEA%3A17797","[(1->4)-beta-D-glucosyl](n) + GDP-alpha-D-glucose = [(1->4)-beta-D-glucosyl](n+1) + GDP + H(+)"],["RHEA%3A23024","[(1->4)-beta-D-glucosyl](n) + phosphate = [(1->4)-beta-D-glucosyl](n-1) + alpha-D-glucose 1-phosphate"],["RHEA%3A19929","[(1->4)-beta-D-glucosyl](n) + UDP-alpha-D-glucose = [(1->4)-beta-D-glucosyl](n+1) + UDP + H(+)"]]},{"id":"GO:0009060","l":"aerobic respiration","na":6,"nb":25,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Soil_CPR_Nanoarchaea_Rare_Biosphere_Community.html","Soil CPR Bacteria and Nanoarchaea Rare-Biosphere Community"]],"b":[["ComplexPortal%3ACPX-266","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-577","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-319","Trimethylamine-N-oxide reductase TorAC complex"],["GO%3A0019646","aerobic electron transport chain"],["GO%3A0009060","aerobic respiration"],["GO%3A0019409","aerobic respiration, using ammonia as electron donor"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":6,"nb":16,"a":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["Pfam%3APF16822","SGNH hydrolase-like domain, acetyltransferase AlgX"],["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"],["Pfam%3APF11182","Alginate O-acetyl transferase AlgF"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF27129","Functional amyloid protein FapB/FapC family"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":6,"nb":11,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF02085","Class III cytochrome C family"],["Pfam%3APF06397","Desulfoferrodoxin, N-terminal domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["Pfam%3APF12797","4Fe-4S binding domain"],["Pfam%3APF06180","Cobalt chelatase (CbiK)"]]},{"id":"GO:0009877","l":"nodulation","na":6,"nb":8,"a":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"],["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["GO%3A0009877","nodulation"],["NCBIfam%3ATIGR04243","chitooligosaccharide deacetylase NodB"],["NCBIfam%3ATIGR04242","chitooligosaccharide synthase NodC"],["NCBIfam%3ANF017620","HrpF/NolX family T3SS translocon protein"],["NCBIfam%3ATIGR04245","NodA family N-acyltransferase"],["NCBIfam%3ANF014526","Nodulation protein A (NodA)"]]},{"id":"GO:0071941","l":"nitrogen cycle metabolic process","na":6,"nb":8,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"]],"b":[["GO%3A0019409","aerobic respiration, using ammonia as electron donor"],["GO%3A0019331","anaerobic respiration, using ammonium as electron donor"],["GO%3A0019333","denitrification pathway"],["GO%3A0042128","nitrate assimilation"],["GO%3A0071941","nitrogen cycle metabolic process"],["GO%3A0009399","nitrogen fixation"]]},{"id":"CHEBI:18153","l":"ethene","na":7,"nb":6,"a":[["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"]],"b":[["EC%3A1.13.12.19","2-oxoglutarate dioxygenase (ethylene-forming)"],["EC%3A1.14.17.4","aminocyclopropanecarboxylate oxidase"],["RHEA%3A23640","1-aminocyclopropane-1-carboxylate + L-ascorbate + O2 = ethene + L-dehydroascorbate + hydrogen cyanide + CO2 + 2 H2O"],["RHEA%3A81439","2-(methylsulfanyl)ethanol + AH2 = ethene + methanethiol + A + H2O"],["RHEA%3A31523","2-oxoglutarate + O2 + 2 H(+) = ethene + 3 CO2 + H2O"],["RHEA%3A68004","chloroethene + AH2 = ethene + chloride + A + H(+)"]]},{"id":"NCBITaxon:40324","l":"Stenotrophomonas maltophilia","na":7,"nb":6,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]],"b":[["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["TED%3AAF-A0A2U4H7T5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2U4H7T5-F1-model_v4_TED02"],["TED%3AAF-A0A2W6G5X3-F1-model_v4_TED01","TED novel fold AF-A0A2W6G5X3-F1-model_v4_TED01"],["TED%3AAF-A0A2W6IKS3-F1-model_v4_TED02","TED novel fold AF-A0A2W6IKS3-F1-model_v4_TED02"],["TED%3AAF-A0A7D0KRT5-F1-model_v4_TED03","TED novel fold AF-A0A7D0KRT5-F1-model_v4_TED03"],["TED%3AAF-A0A7T8PWR1-F1-model_v4_TED05","TED novel fold AF-A0A7T8PWR1-F1-model_v4_TED05"]]},{"id":"GO:0006629","l":"lipid metabolic process","na":5,"nb":81,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"]],"b":[["ComplexPortal%3ACPX-1381","NVJ1-VAC8 nucleus-vacuole junction complex"],["GO%3A0046485","ether lipid metabolic process"],["GO%3A1901568","fatty acid derivative metabolic process"],["GO%3A0006631","fatty acid metabolic process"],["GO%3A0046486","glycerolipid metabolic process"],["GO%3A0006720","isoprenoid metabolic process"]]},{"id":"GO:0009236","l":"cobalamin biosynthetic process","na":5,"nb":75,"a":[["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["GO%3A0009236","cobalamin biosynthetic process"],["proteintraitsmech%3ASEED_SUBSYSTEM_Cobalamin_synthesis","Cobalamin synthesis"],["NCBIfam%3ATIGR02476","5,6-dimethylbenzimidazole synthase"],["NCBIfam%3ANF011580","adenosylcobalamin/alpha-ribazole phosphatase"],["NCBIfam%3ANF014685","adenosylcobinamide-GDP ribazoletransferase"],["NCBIfam%3ATIGR00317","adenosylcobinamide-GDP ribazoletransferase"]]},{"id":"GO:0030001","l":"metal ion transport","na":5,"nb":66,"a":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["GO%3A0015690","aluminum cation transport"],["GO%3A0006816","calcium ion transport"],["GO%3A0015692","lead ion transport"],["GO%3A0010351","lithium ion transport"],["GO%3A0015693","magnesium ion transport"],["GO%3A0030001","metal ion transport"]]},{"id":"GO:0006935","l":"chemotaxis","na":5,"nb":64,"a":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["SynCom_MetG2_Rhizobacteria_Sugarcane_Stress_Resilience.html","SynCom MetG2 Rhizobacteria Sugarcane Stress Resilience"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"],["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009454","aerotaxis"]]},{"id":"GO:0006635","l":"fatty acid beta-oxidation","na":5,"nb":32,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["ComplexPortal%3ACPX-3964","fadBA fatty acid oxidation complex, aerobic conditions"],["ComplexPortal%3ACPX-3966","fadJI fatty acid oxidation complex, anaerobic conditions"],["ComplexPortal%3ACPX-6245","Mitochondrial trifunctional enzyme complex"],["GO%3A0006635","fatty acid beta-oxidation"],["GO%3A0033539","fatty acid beta-oxidation using acyl-CoA dehydrogenase"],["GO%3A0033540","fatty acid beta-oxidation using acyl-CoA oxidase"]]},{"id":"GO:0005986","l":"sucrose biosynthetic process","na":7,"nb":5,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"],["Synechococcus_Bacillus_SPC.html","Synechococcus-Bacillus Synthetic Photosynthetic Consortium"],["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"],["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"],["Synechococcus_Saccharomyces_SPC.html","Synechococcus-Saccharomyces Synthetic Photosynthetic Consortium"]],"b":[["GO%3A0005986","sucrose biosynthetic process"],["NCBIfam%3ANF020061","Sucrose-6-phosphate phosphohydrolase C-terminal"],["NCBIfam%3ATIGR01485","sucrose-phosphate phosphatase"],["InterPro%3AIPR013679","Sucrose-phosphatase, C-terminal"],["Pfam%3APF08472","Sucrose-6-phosphate phosphohydrolase C-terminal"]]},{"id":"CHEBI:18310","l":"alkane","na":5,"nb":5,"a":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"]],"b":[["EC%3A4.99.1.2","alkylmercury lyase"],["RHEA%3A18777","an alkylmercury + H(+) = an alkane + Hg(2+)"],["MCSA%3A297","alkylmercury lyase"],["MCSA%3A248","chloride peroxidase (cofactor free)"],["MCSA%3A250","chloride peroxidase (heme dependent)"]]},{"id":"CHEBI:15377","l":"water","na":4,"nb":9376,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["EC%3A1.1.1.115","ribose 1-dehydrogenase (NADP(+))"],["EC%3A1.1.1.132","GDP-mannose 6-dehydrogenase"],["EC%3A1.1.1.136","UDP-N-acetylglucosamine 6-dehydrogenase"],["EC%3A1.1.1.186","dTDP-galactose 6-dehydrogenase"],["EC%3A1.1.1.192","long-chain-alcohol dehydrogenase"],["EC%3A1.1.1.205","IMP dehydrogenase"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":4,"nb":680,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16240","requires hydrogen peroxide"],["EC%3A1.1.3.10","pyranose oxidase"],["EC%3A1.1.3.11","L-sorbose oxidase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.3.13","alcohol oxidase"],["EC%3A1.1.3.15","(S)-2-hydroxy-acid oxidase"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":4,"nb":212,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["EC%3A1.1.1.244","methanol dehydrogenase"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.99.37","methanol dehydrogenase (nicotinoprotein)"],["EC%3A1.13.11.94","4-vinylguaiacol dioxygenase"],["EC%3A1.14.11.27","[histone H3]-dimethyl-L-lysine(36) demethylase"]]},{"id":"GO:0006520","l":"amino acid metabolic process","na":4,"nb":155,"a":[["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["GO%3A0043038","amino acid activation"],["GO%3A0008652","amino acid biosynthetic process"],["GO%3A0009063","amino acid catabolic process"],["GO%3A0006520","amino acid metabolic process"],["GO%3A0006525","arginine metabolic process"],["GO%3A0009072","aromatic amino acid metabolic process"]]},{"id":"GO:0006952","l":"defense response","na":4,"nb":62,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["ComplexPortal%3ACPX-2833","Camalexin biosynthetic metabolon complex"],["ComplexPortal%3ACPX-25769","TAP antigen peptide transporter complex"],["GO%3A0002209","behavioral defense response"],["GO%3A0006968","cellular defense response"],["GO%3A0052542","defense response by callose deposition"],["GO%3A0052482","defense response by cell wall thickening"]]},{"id":"GO:0008610","l":"lipid biosynthetic process","na":4,"nb":61,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"],["Yarrowia_lipolytica_Division_of_Labor_Lipid_Consortium.html","Yarrowia lipolytica Division-of-Labor Lipid Consortium"]],"b":[["GO%3A1900557","emericellamide biosynthetic process"],["GO%3A0008611","ether lipid biosynthetic process"],["GO%3A0006633","fatty acid biosynthetic process"],["GO%3A1901570","fatty acid derivative biosynthetic process"],["GO%3A0045017","glycerolipid biosynthetic process"],["GO%3A0009247","glycolipid biosynthetic process"]]},{"id":"CHEBI:16199","l":"urea","na":4,"nb":48,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["EC%3A3.5.1.5","urease"],["EC%3A3.5.1.95","N-malonylurea hydrolase"],["EC%3A3.5.3.1","arginase"],["EC%3A3.5.3.10","D-arginase"],["EC%3A3.5.3.11","agmatinase"],["EC%3A3.5.3.14","amidinoaspartase"]]},{"id":"CHEBI:29105","l":"zinc(2+)","na":4,"nb":20,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29105","requires zinc(2+)"],["EC%3A7.2.2.12","P-type Zn(2+) transporter"],["EC%3A7.2.2.20","ABC-type Zn(2+) transporter"],["RHEA%3A62264","selenite(out) + Zn(2+)(out) + hydrogencarbonate(out) = selenite(in) + Zn(2+)(in) + hydrogencarbonate(in)"],["RHEA%3A72627","Zn(2+)(in) + 2 H(+)(out) = Zn(2+)(out) + 2 H(+)(in)"],["RHEA%3A20621","Zn(2+)(in) + ATP + H2O = Zn(2+)(out) + ADP + phosphate + H(+)"]]},{"id":"GO:0044003","l":"symbiont-mediated perturbation of host process","na":4,"nb":20,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"]],"b":[["GO%3A0140418","effector-mediated perturbation of host process by symbiont"],["GO%3A0098676","symbiont-mediated modulation of host virulence"],["GO%3A0044068","symbiont-mediated perturbation of host cellular process"],["GO%3A0052031","symbiont-mediated perturbation of host defense response"],["GO%3A0044003","symbiont-mediated perturbation of host process"],["GO%3A0033635","symbiont-mediated perturbation of host response to abiotic stimulus"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":4,"nb":19,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["Pfam%3APF03306","Alpha-acetolactate decarboxylase"],["Pfam%3APF22208","Cas_Csm6 CARF domain"],["Pfam%3APF09659","Cas_Csm6 HEPN domain"],["Pfam%3APF22335","Cas10/Cmr2, second palm domain"],["Pfam%3APF18395","Cas3 C-terminal domain"],["Pfam%3APF18019","Cas3, HD domain"]]},{"id":"CHEBI:16899","l":"D-mannitol","na":4,"nb":17,"a":[["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["EC%3A1.1.1.138","mannitol 2-dehydrogenase (NADP(+))"],["EC%3A1.1.1.255","mannitol dehydrogenase"],["EC%3A1.1.1.67","mannitol 2-dehydrogenase"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.3.40","D-mannitol oxidase"],["EC%3A2.7.1.197","protein-N(pi)-phosphohistidine--D-mannitol phosphotransferase"]]},{"id":"GO:0019333","l":"denitrification pathway","na":13,"nb":4,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"]],"b":[["GO%3A0019333","denitrification pathway"],["NCBIfam%3ATIGR02161","periplasmic nitrate (or nitrite) reductase c-type cytochrome, NapC/NirT family"],["NCBIfam%3ATIGR04244","TAT-dependent nitrous-oxide reductase"],["NCBIfam%3ATIGR04246","Sec-dependent nitrous-oxide reductase"]]},{"id":"GO:0019543","l":"propionate catabolic process","na":4,"nb":11,"a":[["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["GO%3A0019543","propionate catabolic process"],["NCBIfam%3ATIGR02334","2-methylaconitate cis-trans isomerase PrpF"],["NCBIfam%3ATIGR02330","2-methylcitrate dehydratase"],["NCBIfam%3ANF006943","bifunctional 2-methylcitrate dehydratase/aconitate hydratase"],["NCBIfam%3ANF009006","bifunctional 2-methylcitrate synthase/citrate synthase"],["NCBIfam%3ATIGR02333","Fe/S-dependent 2-methylisocitrate dehydratase AcnD"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":4,"nb":10,"a":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["Pfam%3APF17433","Glycosyl hydrolase family 49 N-terminal Ig-like domain"],["PROSITE%3APS00820","Glucoamylase active site region signature"],["PROSITE%3APS00920","Nitrilases / cyanide hydratase signature 1"],["PROSITE%3APS00502","Polygalacturonase active site"],["Pfam%3APF18841","Beta solenoid repeat from Dextranase"],["Pfam%3APF03718","Glycosyl hydrolase family 49"]]},{"id":"CHEBI:48775","l":"cadmium(2+)","na":4,"nb":9,"a":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Meghalaya_Bacillus_Consortia_A22ED9.html","Meghalaya Bacillus Consortia-A22ED9"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["SynCom_Pseudomonas_Rahnella_Artemisia_Phytoremediation.html","Pseudomonas-Rahnella native rhizosphere SynCom for Artemisia argyi phytoremediation"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_48775","requires cadmium(2+)"],["EC%3A7.2.2.2","ABC-type Cd(2+) transporter"],["EC%3A7.2.2.21","Cd(2+)-exporting ATPase"],["RHEA%3A12132","Cd(2+)(in) + ATP + H2O = Cd(2+)(out) + ADP + phosphate + H(+)"],["RHEA%3A28707","Cd(2+)(in) = Cd(2+)(out)"],["RHEA%3A28739","Cd(2+)(in) + H(+)(out) = Cd(2+)(out) + H(+)(in)"]]},{"id":"CHEBI:17029","l":"chitin","na":4,"nb":8,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]],"b":[["EC%3A2.4.1.16","chitin synthase"],["EC%3A3.5.1.41","chitin deacetylase"],["RHEA%3A85463","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-1)-N-acetyl-alpha-D-glucosamine"],["RHEA%3A50672","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-2) + N,N'-diacetylchitobiose"],["RHEA%3A85003","[(1->4)-N-acetyl-beta-D-glucosaminyl](n)-N-acetyl-alpha-D-glucosamine + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n) + N-acetyl-alpha-D-glucosamine"],["RHEA%3A10464","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + n H2O = chitosan + n acetate"]]},{"id":"CHEBI:30411","l":"cobalamin","na":8,"nb":4,"a":[["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_30411","requires cobalamin"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.A.54","The Lysosomal Cobalamin (B12) Transporter (L-B12T) Family"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]]},{"id":"CHEBI:64709","l":"organic acid","na":7,"nb":4,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["TCDB%3A2.A.28","The Bile Acid:Na+ Symporter (BASS) Family"],["TCDB%3A2.A.23","The Dicarboxylate/Amino Acid:Cation (Na+ or H+) Symporter (DAACS) Family"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.25","The Outer Membrane Porin (Opr) Family"]]},{"id":"CHEBI:28509","l":"chloroethene","na":6,"nb":4,"a":[["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["RHEA%3A68000","1,1-dichloroethene + AH2 = chloroethene + chloride + A + H(+)"],["RHEA%3A68004","chloroethene + AH2 = ethene + chloride + A + H(+)"],["RHEA%3A83555","chloroethene + reduced [NADPH--hemoprotein reductase] + O2 = chloroethylene oxide + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A67996","(Z)-1,2-dichloroethene + AH2 = chloroethene + chloride + A + H(+)"]]},{"id":"GO:1903457","l":"lactate catabolic process","na":6,"nb":4,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["GO%3A1990484","aerobic lactate catabolic process"],["GO%3A1990485","anaerobic lactate catabolic process"],["GO%3A1903457","lactate catabolic process"],["NCBIfam%3ANF049975","D-2-hydroxyglutarate dehydrogenase YdiJ"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":4,"nb":6,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF10779","Haemolysin XhlA"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF08181","DegQ (SacQ) family"],["Pfam%3APF08057","Erythromycin resistance leader peptide"],["Pfam%3APF14867","Lantibiotic alpha"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":4,"nb":6,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["Pfam%3APF16376","N-terminal domain of fragilysin"],["TED%3AAF-A0A412XR06-F1-model_v4_TED03","TED novel fold AF-A0A412XR06-F1-model_v4_TED03"],["TED%3AAF-A0A4V1EUI2-F1-model_v4_TED02","TED novel fold AF-A0A4V1EUI2-F1-model_v4_TED02"],["TED%3AAF-A0A5C6IXH5-F1-model_v4_TED01","TED novel fold AF-A0A5C6IXH5-F1-model_v4_TED01"],["TED%3AAF-A0A5C6L6G9-F1-model_v4_TED02","TED novel fold AF-A0A5C6L6G9-F1-model_v4_TED02"],["TED%3AAF-A0A642KY52-F1-model_v4_TED01","TED novel fold AF-A0A642KY52-F1-model_v4_TED01"]]},{"id":"CHEBI:16670","l":"peptide","na":4,"nb":5,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A9.B.46","The Staphylococcus aureus Putative Quorum Sensing Peptide Exporter, AgrB (AgrB) Family"],["TCDB%3A3.A.25","The Symbiont-specific ERAD-like Machinery (SELMA) Family"],["proteintraitsmech%3ABIOLIP_PEPTIDE","peptide-binding site"]]},{"id":"NCBITaxon:5544","l":"Trichoderma harzianum","na":5,"nb":4,"a":[["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"],["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"],["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["Pfam%3APF00840","Glycosyl hydrolase family 7"],["Pfam%3APF12708","Rhamnogalacturonase A/epimerase, pectate lyase-like"],["TED%3AAF-A0A0F9XDU3-F1-model_v4_TED01","TED novel fold AF-A0A0F9XDU3-F1-model_v4_TED01"],["TED%3AAF-A0A0G0ASL4-F1-model_v4_TED01","TED novel fold AF-A0A0G0ASL4-F1-model_v4_TED01"]]},{"id":"CHEBI:18154","l":"polysaccharide","na":4,"nb":4,"a":[["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Wollastonite_Ramichloridium_Talaromyces_Fungal_Consortium.html","Wollastonite Ramichloridium-Talaromyces Fungal Consortium"]],"b":[["TCDB%3A9.B.97","The Acyltransferase-3/Putative Acetyl-CoA Transporter (AT3AT) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.18","The Outer Membrane Auxiliary (OMA) Protein Family"]]},{"id":"GO:0019541","l":"propionate metabolic process","na":4,"nb":4,"a":[["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["GO%3A0019542","propionate biosynthetic process"],["GO%3A0019543","propionate catabolic process"],["GO%3A0019541","propionate metabolic process"],["GO%3A0019657","pyruvate fermentation to propionate"]]},{"id":"CHEBI:17359","l":"sulfite","na":3,"nb":109,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"]],"b":[["EC%3A1.13.11.18","persulfide dioxygenase"],["EC%3A1.13.11.55","sulfur oxygenase/reductase"],["EC%3A1.14.11.17","taurine dioxygenase"],["EC%3A1.14.12.8","4-sulfobenzoate 3,4-dioxygenase"],["EC%3A1.14.13.111","methanesulfonate monooxygenase (NADH)"],["EC%3A1.14.14.181","sulfoquinovose monooxygenase"]]},{"id":"GO:0007155","l":"cell adhesion","na":3,"nb":102,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"]],"b":[["ComplexPortal%3ACPX-12912","BCAR1-CRK-SH2D3C, focal adhesion regulator complex"],["ComplexPortal%3ACPX-1737","Collagen type VII trimer"],["ComplexPortal%3ACPX-2966","Collagen type VII trimer"],["ComplexPortal%3ACPX-2855","Fimbrial Tip Complex FimFGH"],["ComplexPortal%3ACPX-450","Multimerin-2 complex"],["ComplexPortal%3ACPX-451","Multimerin-2 complex"]]},{"id":"GO:0016053","l":"obsolete organic acid biosynthetic process","na":3,"nb":83,"a":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Wollastonite_Ramichloridium_Talaromyces_Fungal_Consortium.html","Wollastonite Ramichloridium-Talaromyces Fungal Consortium"]],"b":[["PANTHER%3APTHR43090","1-(5-PHOSPHORIBOSYL)-5-[(5-PHOSPHORIBOSYLAMINO)METHYLIDENEAMINO] IMIDAZOLE-4-CARBOXAMIDE ISOMERASE"],["PANTHER%3APTHR43699","3-DEHYDROQUINATE DEHYDRATASE"],["PANTHER%3APTHR42979","3-ISOPROPYLMALATE DEHYDROGENASE"],["PANTHER%3APTHR20881","3-METHYL-2-OXOBUTANOATE HYDROXYMETHYLTRANSFERASE"],["PANTHER%3APTHR46832","5'-METHYLTHIOADENOSINE/S-ADENOSYLHOMOCYSTEINE NUCLEOSIDASE"],["PANTHER%3APTHR31242","ACETOLACTATE SYNTHASE SMALL SUBUNIT, MITOCHONDRIAL"]]},{"id":"GO:0008652","l":"amino acid biosynthetic process","na":3,"nb":69,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"]],"b":[["GO%3A0008153","4-aminobenzoate biosynthetic process"],["GO%3A0006523","alanine biosynthetic process"],["GO%3A0008652","amino acid biosynthetic process"],["GO%3A0043102","amino acid salvage"],["GO%3A0019483","beta-alanine biosynthetic process"],["GO%3A0035499","carnosine biosynthetic process"]]},{"id":"CHEBI:29035","l":"manganese(2+)","na":3,"nb":44,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29035","requires manganese(2+)"],["EC%3A1.11.1.13","manganese peroxidase"],["EC%3A1.11.1.16","versatile peroxidase"],["EC%3A1.16.3.3","manganese oxidase"],["EC%3A7.2.2.22","P-type Mn(2+) transporter"],["EC%3A7.2.2.5","ABC-type Mn(2+) transporter"]]},{"id":"GO:0010467","l":"gene expression","na":3,"nb":41,"a":[["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["GO%3A0001816","cytokine production"],["GO%3A0010467","gene expression"],["GO%3A1901148","gene expression involved in extracellular matrix organization"],["GO%3A0140053","mitochondrial gene expression"],["GO%3A0036162","oxytocin production"],["GO%3A0140899","plastid gene expression"]]},{"id":"CHEBI:17750","l":"glycine betaine","na":3,"nb":33,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["EC%3A1.1.3.17","choline oxidase"],["EC%3A1.13.11.90","[1-hydroxy-2-(trimethylamino)ethyl]phosphonate dioxygenase (glycine- betaine-forming)"],["EC%3A1.14.13.251","glycine betaine monooxygenase"],["EC%3A1.2.1.8","betaine-aldehyde dehydrogenase"],["EC%3A1.21.4.4","betaine reductase"],["EC%3A2.1.1.157","sarcosine/dimethylglycine N-methyltransferase"]]},{"id":"CHEBI:29103","l":"potassium(1+)","na":3,"nb":32,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29103","requires potassium(1+)"],["EC%3A7.2.2.13","Na(+)/K(+)-exchanging ATPase"],["EC%3A7.2.2.19","H(+)/K(+)-exchanging ATPase"],["EC%3A7.2.2.6","P-type K(+) transporter"],["RHEA%3A18353","2 K(+)(out) + 3 Na(+)(in) + ATP + H2O = 2 K(+)(in) + 3 Na(+)(out) + ADP + phosphate + H(+)"],["RHEA%3A69967","Ca(2+)(out) + K(+)(out) + 4 Na(+)(in) = Ca(2+)(in) + K(+)(in) + 4 Na(+)(out)"]]},{"id":"NCBITaxon:3055","l":"Chlamydomonas reinhardtii","na":3,"nb":27,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]],"b":[["Pfam%3APF01333","Apocytochrome F, C-terminal"],["Pfam%3APF16639","Apocytochrome F, N-terminal"],["Pfam%3APF00430","ATP synthase B/B' CF(0)"],["Pfam%3APF00401","ATP synthase, Delta/Epsilon chain, long alpha-helix domain"],["Pfam%3APF21771","CFAP58 central coiled coil"],["Pfam%3APF27956","CFAP99 V-shaped coiled-coil domain"]]},{"id":"GO:0031347","l":"regulation of defense response","na":3,"nb":25,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"],["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["GO%3A0031348","negative regulation of defense response"],["GO%3A0031349","positive regulation of defense response"],["GO%3A0002759","regulation of antimicrobial humoral response"],["GO%3A2000822","regulation of behavioral fear response"],["GO%3A0010185","regulation of cellular defense response"],["GO%3A2000071","regulation of defense response by callose deposition"]]},{"id":"GO:0000162","l":"L-tryptophan biosynthetic process","na":3,"nb":22,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"]],"b":[["ComplexPortal%3ACPX-1850","Anthranilate synthase complex"],["ComplexPortal%3ACPX-4783","Anthranilate synthase complex"],["ComplexPortal%3ACPX-3446","TrpAB tryptophan synthase complex"],["GO%3A0000162","L-tryptophan biosynthetic process"],["NCBIfam%3ANF010081","anthranilate synthase component I"],["NCBIfam%3ANF010086","anthranilate synthase component I"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":3,"nb":21,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29108","requires calcium(2+)"],["EC%3A1.13.12.24","calcium-regulated photoprotein"],["EC%3A7.2.2.10","P-type Ca(2+) transporter"],["RHEA%3A72631","3 Li(+)(out) + Ca(2+)(in) = 3 Li(+)(in) + Ca(2+)(out)"],["RHEA%3A55884","[aequorin] + 3 Ca(2+) = [aequorin]--dioxetanone"],["RHEA%3A55888","[aequorin]--dioxetanone = excited state-[aequorin] + CO2"]]},{"id":"GO:0071248","l":"cellular response to metal ion","na":3,"nb":21,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["GO%3A0071275","cellular response to aluminum ion"],["GO%3A0071276","cellular response to cadmium ion"],["GO%3A0071277","cellular response to calcium ion"],["GO%3A0071278","cellular response to cesium ion"],["GO%3A0071279","cellular response to cobalt ion"],["GO%3A0071280","cellular response to copper ion"]]},{"id":"CHEBI:17716","l":"lactose","na":3,"nb":20,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"]],"b":[["EC%3A2.4.1.22","lactose synthase"],["EC%3A2.7.1.207","protein-N(pi)-phosphohistidine--lactose phosphotransferase"],["EC%3A3.2.1.108","lactase"],["EC%3A3.2.1.140","lacto-N-biosidase"],["EC%3A3.2.1.227","N-acetyllactosaminidase"],["RHEA%3A86923","a beta-D-Gal-(1->4)-beta-D-Glc-(1<->1)-Cer(d18:1(4E)) + H2O = lactose + an N-acylsphing-4-enine"]]},{"id":"GO:0045088","l":"regulation of innate immune response","na":3,"nb":19,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["GO%3A0045824","negative regulation of innate immune response"],["GO%3A0045089","positive regulation of innate immune response"],["GO%3A1904248","regulation of age-related resistance"],["GO%3A1905034","regulation of antifungal innate immune response"],["GO%3A0030451","regulation of complement activation, alternative pathway"],["GO%3A0001868","regulation of complement activation, lectin pathway"]]},{"id":"CHEBI:48828","l":"cobalt(2+)","na":3,"nb":16,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_48828","requires cobalt(2+)"],["EC%3A1.16.99.1","[Co(II) methylated amine-specific corrinoid protein] reductase"],["EC%3A4.99.1.3","sirohydrochlorin cobaltochelatase"],["EC%3A6.6.1.2","cobaltochelatase"],["RHEA%3A65832","2 Co(II)-[dimethylamine-specific corrinoid protein] + AH2 + ATP + H2O = 2 Co(I)-[dimethylamine-specific corrinoid protein] + A + ADP + phosphate + 3 H(+)"],["RHEA%3A65816","2 Co(II)-[methylamine-specific corrinoid protein] + AH2 + ATP + H2O = 2 Co(I)-[methylamine-specific corrinoid protein] + A + ADP + phosphate + 3 H(+)"]]},{"id":"CHEBI:17045","l":"dinitrogen oxide","na":3,"nb":13,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"]],"b":[["EC%3A1.7.1.14","nitric oxide reductase [NAD(P)(+), nitrous oxide-forming]"],["EC%3A1.7.2.4","nitrous-oxide reductase"],["EC%3A1.7.2.5","nitric-oxide reductase (cytochrome c)"],["EC%3A1.7.5.2","nitric oxide reductase (menaquinol)"],["RHEA%3A30215","a menaquinol + 2 nitric oxide = nitrous oxide + a menaquinone + H2O"],["RHEA%3A43108","N2 + 2 Fe(III)-[cytochrome c] + H2O = nitrous oxide + 2 Fe(II)-[cytochrome c] + 2 H(+)"]]},{"id":"CHEBI:26271","l":"proline","na":3,"nb":12,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.15","The Betaine/Carnitine/Choline Transporter (BCCT) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"]]},{"id":"GO:0006083","l":"acetate metabolic process","na":3,"nb":12,"a":[["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["GO%3A0019413","acetate biosynthetic process"],["GO%3A0045733","acetate catabolic process"],["GO%3A0006083","acetate metabolic process"],["GO%3A0045122","aflatoxin biosynthetic process"],["GO%3A0019658","bifid shunt"],["GO%3A0019475","L-lysine fermentation"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":11,"nb":3,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["Pfam%3APF14864","Alkyl sulfatase C-terminal"],["Pfam%3APF13816","Haem-containing dehydratase"],["Pfam%3APF14863","Alkyl sulfatase dimerisation"]]},{"id":"GO:0019329","l":"ammonia oxidation","na":10,"nb":3,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"]],"b":[["GO%3A0019409","aerobic respiration, using ammonia as electron donor"],["GO%3A0019329","ammonia oxidation"],["GO%3A0019331","anaerobic respiration, using ammonium as electron donor"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":3,"nb":10,"a":[["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["Pfam%3APF27445","Adaptation to cold protein A"],["Pfam%3APF27450","AtcB C-terminal domain"],["Pfam%3APF27486","AtcB N-terminal domain"],["Pfam%3APF02464","CinA C-terminal domain"],["Pfam%3APF13657","HipA N-terminal domain"],["Pfam%3APF01934","Ribonuclease HepT-like"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":3,"nb":10,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF09081","Glucan 1,4-alpha-maltotetraohydrolase, domain C"],["Pfam%3APF09459","Ethylbenzene dehydrogenase"],["Pfam%3APF08406","CbbQ/NirQ/NorQ C-terminal"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"],["Pfam%3APF18793","Nitrous oxide reductase propeller repeat 2"]]},{"id":"NCBITaxon:853","l":"Faecalibacterium prausnitzii","na":3,"nb":10,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"]],"b":[["TED%3AAF-A0A2A7AJ69-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A7AJ69-F1-model_v4_TED01"],["TED%3AAF-A0A329UNG0-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A329UNG0-F1-model_v4_TED05"],["TED%3AAF-A0A3F3JVN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3F3JVN3-F1-model_v4_TED01"],["TED%3AAF-A0A564SWB8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A564SWB8-F1-model_v4_TED02"],["TED%3AAF-A0A173SIF7-F1-model_v4_TED01","TED novel fold AF-A0A173SIF7-F1-model_v4_TED01"],["TED%3AAF-A0A173WYP6-F1-model_v4_TED01","TED novel fold AF-A0A173WYP6-F1-model_v4_TED01"]]},{"id":"CHEBI:16602","l":"trichloroethene","na":9,"nb":3,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["EC%3A1.21.99.5","tetrachloroethene reductive dehalogenase"],["RHEA%3A67992","trichloroethene + AH2 = (Z)-1,2-dichloroethene + chloride + A + H(+)"],["RHEA%3A20353","trichloroethene + chloride + A + H(+) = tetrachloroethene + AH2"]]},{"id":"CHEBI:18367","l":"phosphate(3-)","na":9,"nb":3,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["proteintraitsmech%3ABIOLIP_PO4","PO4-binding site"]]},{"id":"CHEBI:87393","l":"hexan-1-ol","na":3,"nb":9,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["RHEA%3A65480","2-methylbutanoyl-CoA + hexan-1-ol = hexyl 2-methylbutanoate + CoA"],["RHEA%3A79331","hexan-1-ol + 2 Fe(III)-[cytochrome c] = hexanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A65460","hexan-1-ol + acetyl-CoA = hexyl acetate + CoA"],["RHEA%3A65444","hexan-1-ol + butanoyl-CoA = hexyl butanoate + CoA"],["RHEA%3A65484","hexan-1-ol + hexanoyl-CoA = hexyl hexanoate + CoA"],["RHEA%3A60972","hexan-1-ol + NAD(+) = hexanal + NADH + H(+)"]]},{"id":"GO:1990748","l":"cellular detoxification","na":3,"nb":9,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["GO%3A1990748","cellular detoxification"],["GO%3A0140977","cellular detoxification of acetone"],["GO%3A0110095","cellular detoxification of aldehyde"],["GO%3A0140114","cellular detoxification of fluoride"],["GO%3A0140961","cellular detoxification of metal ion"],["GO%3A0070458","cellular detoxification of nitrogen compound"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":3,"nb":8,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["Pfam%3APF01890","Cobalamin synthesis G C-terminus"],["Pfam%3APF11761","Cobalamin biosynthesis central region"],["Pfam%3APF11760","Cobalamin synthesis G N-terminal"],["Pfam%3APF02570","Precorrin-8X methylmutase"],["PROSITE%3APS00304","Small, acid-soluble spore proteins, alpha/beta type, signature 1"],["PROSITE%3APS00684","Small, acid-soluble spore proteins, alpha/beta type, signature 2"]]},{"id":"CHEBI:30742","l":"ethylene glycol","na":3,"nb":7,"a":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"]],"b":[["EC%3A3.1.1.102","mono(ethylene terephthalate) hydrolase"],["RHEA%3A42648","(2,5-ethylene furandicarboxylate)(n) + 2 H2O = (2,5-ethylene furandicarboxylate)(n-1) + 2,5-dicarboxyfuran + ethylene glycol + 2 H(+)"],["RHEA%3A49532","4-[(2-hydroxyethoxy)carbonyl]benzoate + H2O = terephthalate + ethylene glycol + H(+)"],["RHEA%3A80759","bis(2-hydroxyethyl) terephthalate + H2O = 4-[(2-hydroxyethoxy)carbonyl]benzoate + ethylene glycol + H(+)"],["RHEA%3A27630","ethylene glycol + NAD(+) = glycolaldehyde + NADH + H(+)"],["MCSA%3A847","epoxide hydrolase"]]},{"id":"NCBITaxon:28116","l":"Bacteroides ovatus","na":3,"nb":7,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["TED%3AAF-A0A515J030-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A515J030-F1-model_v4_TED01"],["TED%3AAF-A0A5M5C3M7-F1-model_v4_TED01","TED novel fold AF-A0A5M5C3M7-F1-model_v4_TED01"],["TED%3AAF-A0A641PL20-F1-model_v4_TED01","TED novel fold AF-A0A641PL20-F1-model_v4_TED01"],["TED%3AAF-A0A641V3P9-F1-model_v4_TED03","TED novel fold AF-A0A641V3P9-F1-model_v4_TED03"],["TED%3AAF-A0A641VT79-F1-model_v4_TED01","TED novel fold AF-A0A641VT79-F1-model_v4_TED01"],["TED%3AAF-A0A642C648-F1-model_v4_TED01","TED novel fold AF-A0A642C648-F1-model_v4_TED01"]]},{"id":"CHEBI:15890","l":"5,6-dimethylbenzimidazole","na":3,"nb":6,"a":[["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["EC%3A1.13.11.79","aerobic 5,6-dimethylbenzimidazole synthase"],["EC%3A2.4.2.21","nicotinate-nucleotide--dimethylbenzimidazole phosphoribosyltransferase"],["RHEA%3A11196","5,6-dimethylbenzimidazole + nicotinate beta-D-ribonucleotide = alpha-ribazole 5'-phosphate + nicotinate + H(+)"],["RHEA%3A27345","FMNH2 + O2 = dialurate + 5,6-dimethylbenzimidazole + D-erythrose 4-phosphate + H(+)"],["MCSA%3A79","nicotinate-nucleotide-dimethylbenzimidazole phosphoribosyltransferase"],["proteintraitsmech%3ABIOLIP_DMD","DMD-binding site"]]},{"id":"CHEBI:27266","l":"valine","na":3,"nb":6,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.26","The Branched Chain Amino Acid:Cation Symporter (LIVCS) Family"],["TCDB%3A2.A.78","The Branched Chain Amino Acid Exporter (LIV-E) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:55474","l":"N-acyl-L-homoserine lactone","na":3,"nb":6,"a":[["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["EC%3A2.3.1.184","acyl-homoserine-lactone synthase"],["EC%3A3.1.1.81","quorum-quenching N-acyl-homoserine lactonase"],["EC%3A3.5.1.97","acyl-homoserine-lactone acylase"],["RHEA%3A10096","a fatty acyl-[ACP] + S-adenosyl-L-methionine = an N-acyl-L-homoserine lactone + S-methyl-5'-thioadenosine + holo-[ACP] + H(+)"],["RHEA%3A22576","an N-acyl-L-homoserine lactone + H2O = an N-acyl-L-homoserine + H(+)"],["RHEA%3A18937","an N-acyl-L-homoserine lactone + H2O = L-homoserine lactone + a carboxylate"]]},{"id":"NCBITaxon:1390","l":"Bacillus amyloliquefaciens","na":3,"nb":6,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]],"b":[["Pfam%3APF02923","Restriction endonuclease BamHI"],["Pfam%3APF01337","Barstar (barnase inhibitor)"],["Pfam%3APF22148","Fervidolysin N-terminal prodomain"],["PROSITE%3APS00093","N-4 cytosine-specific DNA methylases signature"],["PROSITE%3APS01334","Pyrrolidone-carboxylate peptidase cysteine active site"],["PROSITE%3APS01333","Pyrrolidone-carboxylate peptidase glutamic acid active site"]]},{"id":"CHEBI:17015","l":"riboflavin","na":5,"nb":3,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17015","requires riboflavin"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_RBF","RBF-binding site"]]},{"id":"CHEBI:26672","l":"siderophore","na":3,"nb":5,"a":[["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_26672","siderophore cofactor class"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.17","The Outer Membrane Factor (OMF) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]]},{"id":"GO:0005987","l":"sucrose catabolic process","na":5,"nb":3,"a":[["Synechococcus_Bacillus_SPC.html","Synechococcus-Bacillus Synthetic Photosynthetic Consortium"],["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"],["Synechococcus_Saccharomyces_SPC.html","Synechococcus-Saccharomyces Synthetic Photosynthetic Consortium"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["GO%3A0061704","glycolytic process from sucrose"],["GO%3A0005987","sucrose catabolic process"],["NCBIfam%3ANF006957","fructokinase"]]},{"id":"GO:0006766","l":"vitamin metabolic process","na":3,"nb":5,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["GO%3A0042816","vitamin B6 metabolic process"],["GO%3A0009110","vitamin biosynthetic process"],["GO%3A0009111","vitamin catabolic process"],["GO%3A0006766","vitamin metabolic process"],["Reactome%3AR-HSA-211916","Vitamins"]]},{"id":"GO:0009410","l":"response to xenobiotic stimulus","na":3,"nb":5,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["SkinCom_Synthetic_Skin_Community.html","SkinCom Synthetic Skin Community"]],"b":[["GO%3A0071466","cellular response to xenobiotic stimulus"],["GO%3A0009410","response to xenobiotic stimulus"],["NCBIfam%3ATIGR00957","multi drug resistance-associated protein (MRP)"],["NCBIfam%3ANF018181","R67 dihydrofolate reductase"],["Pfam%3APF06442","R67 dihydrofolate reductase"]]},{"id":"NCBITaxon:1667","l":"Arthrobacter sp.","na":3,"nb":5,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["Pfam%3APF14031","Putative serine dehydratase domain"],["Pfam%3APF02449","Beta-galactosidase"],["Pfam%3APF08533","Beta-galactosidase C-terminal domain"],["Pfam%3APF08532","Beta-galactosidase trimerisation domain"],["TED%3AAF-A0A3C2BWN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C2BWN3-F1-model_v4_TED01"]]},{"id":"CHEBI:17191","l":"L-isoleucine","na":3,"nb":4,"a":[["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"]],"b":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.26","The Branched Chain Amino Acid:Cation Symporter (LIVCS) Family"],["proteintraitsmech%3ABIOLIP_ILE","ILE-binding site"]]},{"id":"CHEBI:18237","l":"glutamic acid","na":4,"nb":3,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:72813","l":"exopolysaccharide","na":4,"nb":3,"a":[["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.18","The Outer Membrane Auxiliary (OMA) Protein Family"]]},{"id":"GO:0019386","l":"methanogenesis, from carbon dioxide","na":3,"nb":4,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Tropidoatractus_Magnetotacticus_Tripartite_Syntrophy.html","Tropidoatractus magnetotacticus Magnetotactic Ciliate Tripartite Syntrophy"]],"b":[["GO%3A0019386","methanogenesis, from carbon dioxide"],["NCBIfam%3ATIGR01723","5,10-methenyltetrahydromethanopterin hydrogenase"],["NCBIfam%3ATIGR01112","tetrahydromethanopterin S-methyltransferase subunit D"],["NCBIfam%3ATIGR01113","tetrahydromethanopterin S-methyltransferase subunit E"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":3,"nb":4,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF09711","CRISPR-associated protein (Cas_Csn2)"],["Pfam%3APF06308","23S rRNA methylastransferase leader peptide (ErmCL)"]]},{"id":"NCBITaxon:3076","l":"Chlorella sorokiniana","na":3,"nb":4,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Dairy_Wastewater_Algal_Cyanobacterial_Cultivation_Panel.html","Dairy Wastewater Algal-Cyanobacterial Cultivation Panel"],["SynCom_Chlorella_sorokiniana_Biogas_Slurry_Coupling_System.html","SynCom + Chlorella sorokiniana Biogas-slurry Coupling System"]],"b":[["TED%3AAF-A0A2P6TR54-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P6TR54-F1-model_v4_TED01"],["TED%3AAF-A0A2P6TVK6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P6TVK6-F1-model_v4_TED01"],["TED%3AAF-A0A2P6TZ25-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2P6TZ25-F1-model_v4_TED02"],["TED%3AAF-A0A2P6TLT0-F1-model_v4_TED05","TED novel fold AF-A0A2P6TLT0-F1-model_v4_TED05"]]},{"id":"NCBITaxon:33038","l":"Mediterraneibacter gnavus","na":4,"nb":3,"a":[["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Clostridial_isoDCA_Mini_Consortium.html","Clostridial isoDCA Mini Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["Pfam%3APF16874","Glycosyl hydrolase family 36 C-terminal domain"],["Pfam%3APF16875","Glycosyl hydrolase family 36 N-terminal domain"],["Pfam%3APF04604","Type-A lantibiotic"]]},{"id":"CHEBI:16482","l":"naphthalene","na":3,"nb":3,"a":[["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"]],"b":[["EC%3A1.14.12.12","naphthalene 1,2-dioxygenase"],["RHEA%3A19173","naphthalene + NADH + O2 + H(+) = (1R,2S)-1,2-dihydronaphthalene-1,2-diol + NAD(+)"],["MCSA%3A130","naphthalene 1,2-dioxygenase"]]},{"id":"GO:0009110","l":"vitamin biosynthetic process","na":3,"nb":3,"a":[["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["GO%3A0042362","fat-soluble vitamin biosynthetic process"],["GO%3A0009110","vitamin biosynthetic process"],["GO%3A0042364","water-soluble vitamin biosynthetic process"]]},{"id":"GO:0098743","l":"cell aggregation","na":3,"nb":3,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["GO%3A0098630","aggregation of unicellular organisms"],["GO%3A0001502","cartilage condensation"],["GO%3A0098743","cell aggregation"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":3,"nb":3,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["Pfam%3APF03423","Carbohydrate binding domain (family 25)"],["Pfam%3APF03422","Carbohydrate binding module (family 6)"],["TED%3AAF-A0A7X5SGP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X5SGP7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:3702","l":"Arabidopsis thaliana","na":2,"nb":18772,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["EC%3A1.1.99.-","With other acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.14.11.-","With 2-oxoglutarate as one donor, and incorporation of one atom each of oxygen into both donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.14.-","With reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen"]]},{"id":"CHEBI:15378","l":"hydron","na":2,"nb":14383,"a":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.1.10","L-xylulose reductase"],["EC%3A1.1.1.100","3-oxoacyl-[acyl-carrier-protein] reductase"],["EC%3A1.1.1.101","acylglycerone-phosphate reductase"],["EC%3A1.1.1.102","3-dehydrosphinganine reductase"],["EC%3A1.1.1.103","L-threonine 3-dehydrogenase"]]},{"id":"CHEBI:30031","l":"succinate(2-)","na":2,"nb":502,"a":[["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["EC%3A1.14.11.1","gamma-butyrobetaine dioxygenase"],["EC%3A1.14.11.10","pyrimidine-deoxynucleoside 1'-dioxygenase"],["EC%3A1.14.11.11","hyoscyamine (6S)-dioxygenase"],["EC%3A1.14.11.12","gibberellin-44 dioxygenase"],["EC%3A1.14.11.13","gibberellin 2beta-dioxygenase"],["EC%3A1.14.11.15","gibberellin 3beta-dioxygenase"]]},{"id":"GO:0010468","l":"regulation of gene expression","na":2,"nb":394,"a":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["ComplexPortal%3ACPX-1129","Atk-1/Akt-2/Sgk-1 protein kinase complex"],["ComplexPortal%3ACPX-5666","CCAAT-binding factor complex, nfya-1 variant"],["ComplexPortal%3ACPX-5667","CCAAT-binding factor complex, nfya-2 variant"],["ComplexPortal%3ACPX-4305","DHIC complex"],["ComplexPortal%3ACPX-3885","sir-2.1-ftt-2 complex"],["ComplexPortal%3ACPX-3886","sir-2.1-par-5 complex"]]},{"id":"CHEBI:4167","l":"D-glucopyranose","na":2,"nb":217,"a":[["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["EC%3A1.1.1.118","glucose 1-dehydrogenase (NAD(+))"],["EC%3A1.1.1.119","glucose 1-dehydrogenase (NADP(+))"],["EC%3A1.1.1.359","aldose 1-dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.1.360","glucose/galactose 1-dehydrogenase"],["EC%3A1.1.1.432","6-dehydroglucose reductase"],["EC%3A1.1.1.47","glucose 1-dehydrogenase [NAD(P)(+)]"]]},{"id":"CHEBI:17996","l":"chloride","na":2,"nb":196,"a":[["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17996","requires chloride"],["EC%3A1.11.2.2","myeloperoxidase"],["EC%3A1.13.11.49","chlorite O2-lyase"],["EC%3A1.14.12.13","2-halobenzoate 1,2-dioxygenase"],["EC%3A1.14.12.9","4-chlorophenylacetate 3,4-dioxygenase"],["EC%3A1.14.13.50","pentachlorophenol monooxygenase"]]},{"id":"GO:0016032","l":"viral process","na":2,"nb":113,"a":[["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"]],"b":[["GO%3A0075526","cap snatching"],["GO%3A0099015","degradation of host chromosome by virus"],["GO%3A0019043","establishment of viral latency"],["GO%3A0039674","exit of virus from host cell nucleus"],["GO%3A0039700","fusion of viral membrane with host outer nuclear membrane"],["GO%3A0075522","IRES-dependent viral translational initiation"]]},{"id":"GO:0006099","l":"tricarboxylic acid cycle","na":2,"nb":92,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["ComplexPortal%3ACPX-3921","2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-9044","Mitochondrial 2-oxoglutarate dehydrogenase complex,CG1544 variant"],["ComplexPortal%3ACPX-9043","Mitochondrial 2-oxoglutarate dehydrogenase complex, CG33791 variant"],["ComplexPortal%3ACPX-1293","Mitochondrial 2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-9061","Mitochondrial 2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-9042","Mitochondrial 2-oxoglutarate dehydrogenase complex, ODGH variant"]]},{"id":"GO:0009733","l":"response to auxin","na":2,"nb":89,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["ComplexPortal%3ACPX-1523","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK10"],["ComplexPortal%3ACPX-1524","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK11"],["ComplexPortal%3ACPX-1525","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK12"],["ComplexPortal%3ACPX-1526","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK13"],["ComplexPortal%3ACPX-1527","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK14"],["ComplexPortal%3ACPX-1528","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK15"]]},{"id":"CHEBI:15354","l":"choline","na":2,"nb":78,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["EC%3A1.1.3.17","choline oxidase"],["EC%3A1.1.99.1","choline dehydrogenase"],["EC%3A1.14.15.7","choline monooxygenase"],["EC%3A2.3.1.6","choline O-acetyltransferase"],["EC%3A2.3.1.91","sinapoylglucose--choline O-sinapoyltransferase"],["EC%3A2.7.1.32","choline kinase"]]},{"id":"CHEBI:29806","l":"fumarate(2-)","na":2,"nb":76,"a":[["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["EC%3A1.3.1.6","fumarate reductase (NADH)"],["EC%3A1.3.2.4","fumarate reductase (cytochrome)"],["EC%3A1.3.4.1","fumarate reductase (CoM/CoB)"],["EC%3A1.3.5.1","succinate dehydrogenase"],["EC%3A1.3.98.1","dihydroorotate oxidase (fumarate)"],["EC%3A3.7.1.14","2-hydroxy-6-oxonona-2,4-dienedioate hydrolase"]]},{"id":"CHEBI:15422","l":"ATP","na":2,"nb":68,"a":[["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15422","requires ATP"],["ARO%3A3002628","aad(6)"],["ARO%3A3002601","aadA"],["ARO%3A3004692","aadA10"],["ARO%3A3002611","aadA11"],["ARO%3A3002612","aadA12"]]},{"id":"GO:0019752","l":"carboxylic acid metabolic process","na":2,"nb":59,"a":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"]],"b":[["GO%3A1902056","(25S)-Delta(7)-dafachronate metabolic process"],["GO%3A0006525","arginine metabolic process"],["GO%3A0009072","aromatic amino acid metabolic process"],["GO%3A0018872","arsonoacetate metabolic process"],["GO%3A0120552","branched-chain alpha-keto acid decarboxylation to branched-chain acyl-CoA"],["GO%3A0009081","branched-chain amino acid metabolic process"]]},{"id":"GO:0006865","l":"amino acid transport","na":2,"nb":52,"a":[["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"]],"b":[["GO%3A0015800","acidic amino acid transport"],["GO%3A0043090","amino acid import"],["GO%3A0051933","amino acid neurotransmitter reuptake"],["GO%3A0003333","amino acid transmembrane transport"],["GO%3A0006865","amino acid transport"],["GO%3A0015802","basic amino acid transport"]]},{"id":"CHEBI:16947","l":"citrate(3-)","na":2,"nb":49,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["EC%3A2.3.3.1","citrate (Si)-synthase"],["EC%3A2.3.3.16","citrate synthase (unknown stereospecificity)"],["EC%3A2.3.3.3","citrate (Re)-synthase"],["EC%3A2.3.3.8","ATP citrate synthase"],["EC%3A2.8.3.10","citrate CoA-transferase"],["EC%3A4.1.3.6","citrate (pro-3S)-lyase"]]},{"id":"GO:0009063","l":"amino acid catabolic process","na":2,"nb":47,"a":[["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"]],"b":[["ComplexPortal%3ACPX-865","Electron transfer flavoprotein complex"],["ComplexPortal%3ACPX-2731","Mitochondrial electron transfer flavoprotein complex"],["GO%3A0042217","1-aminocyclopropane-1-carboxylate catabolic process"],["GO%3A0009063","amino acid catabolic process"],["GO%3A0019665","amino acid fermentation"],["GO%3A0019484","beta-alanine catabolic process"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":46,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF13166","AAA domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF27533","CapK C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"]]},{"id":"CHEBI:16480","l":"nitric oxide","na":2,"nb":43,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"]],"b":[["EC%3A1.14.12.17","nitric oxide dioxygenase"],["EC%3A1.14.13.39","nitric-oxide synthase (NADPH)"],["EC%3A1.14.14.47","nitric-oxide synthase (flavodoxin)"],["EC%3A1.14.15.41","L-tryptophan 4-nitrase"],["EC%3A1.14.15.42","L-tyrosine 3-nitrase"],["EC%3A1.7.1.14","nitric oxide reductase [NAD(P)(+), nitrous oxide-forming]"]]},{"id":"GO:0030163","l":"protein catabolic process","na":2,"nb":40,"a":[["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"]],"b":[["ComplexPortal%3ACPX-1655","i-AAA complex"],["ComplexPortal%3ACPX-1654","m-AAA protease complex"],["GO%3A0002077","acrosome matrix dispersal"],["GO%3A0061684","chaperone-mediated autophagy"],["GO%3A0007174","epidermal growth factor catabolic process"],["GO%3A0006516","glycoprotein catabolic process"]]},{"id":"GO:0019684","l":"photosynthesis, light reaction","na":2,"nb":39,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]],"b":[["GO%3A0019684","photosynthesis, light reaction"],["NCBIfam%3ANF058510","bifunctional rod-capping linker CpcD/ferredoxin--NADP reductase PetH"],["NCBIfam%3ATIGR01332","cytochrome b559 subunit alpha"],["NCBIfam%3ATIGR01333","cytochrome b559 subunit beta"],["NCBIfam%3ANF043009","cytochrome c-554 Puf2C"],["NCBIfam%3ANF040862","light-harvesting antenna LH1, beta subunit"]]},{"id":"GO:0006006","l":"glucose metabolic process","na":2,"nb":38,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["GO%3A0006094","gluconeogenesis"],["GO%3A0006007","glucose catabolic process"],["GO%3A0006006","glucose metabolic process"],["Reactome%3AR-HSA-70326","Glucose metabolism"],["NCBIfam%3ANF033735","ArsJ-associated glyceraldehyde-3-phosphate dehydrogenase"],["NCBIfam%3ANF045551","ATP-dependent glucokinase"]]},{"id":"GO:0008643","l":"carbohydrate transport","na":2,"nb":38,"a":[["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["ComplexPortal%3ACPX-5990","sgcABC sugar permease enzyme II complex"],["GO%3A0033231","carbohydrate export"],["GO%3A0034219","carbohydrate transmembrane transport"],["GO%3A0008643","carbohydrate transport"],["GO%3A0015772","oligosaccharide transport"],["GO%3A0015774","polysaccharide transport"]]},{"id":"CHEBI:16150","l":"benzoate","na":2,"nb":36,"a":[["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["EC%3A1.14.12.10","benzoate 1,2-dioxygenase"],["EC%3A1.14.14.92","benzoate 4-monooxygenase"],["EC%3A1.2.1.28","benzaldehyde dehydrogenase (NAD(+))"],["EC%3A1.2.1.7","benzaldehyde dehydrogenase (NADP(+))"],["EC%3A2.1.1.273","benzoate O-methyltransferase"],["EC%3A3.1.1.84","cocaine esterase"]]},{"id":"GO:0000272","l":"polysaccharide catabolic process","na":2,"nb":36,"a":[["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["GO%3A0042122","alginic acid catabolic process"],["GO%3A0031222","arabinan catabolic process"],["GO%3A0030995","cell septum edging catabolic process"],["GO%3A0044347","cell wall polysaccharide catabolic process"],["GO%3A0010147","fructan catabolic process"],["GO%3A2000885","galactoglucomannan catabolic process"]]},{"id":"GO:0009628","l":"response to abiotic stimulus","na":2,"nb":34,"a":[["South_Bay_Salt_Pond_Methane_Restoration_Community.html","South Bay Salt Pond Methane Restoration Microbial Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"]],"b":[["GO%3A0071214","cellular response to abiotic stimulus"],["GO%3A0009582","detection of abiotic stimulus"],["GO%3A0097318","invasive growth in response to abiotic stimulus"],["GO%3A0009628","response to abiotic stimulus"],["GO%3A0051602","response to electrical stimulus"],["GO%3A0009629","response to gravity"]]},{"id":"GO:0007154","l":"cell communication","na":2,"nb":32,"a":[["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["GO%3A0007412","axon target recognition"],["GO%3A0007267","cell-cell signaling"],["GO%3A0010643","cell communication by chemical coupling"],["GO%3A0010644","cell communication by electrical coupling"],["GO%3A0007154","cell communication"],["GO%3A0086065","cell communication involved in cardiac conduction"]]},{"id":"GO:0009228","l":"thiamine biosynthetic process","na":2,"nb":32,"a":[["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"],["Variovorax_Cryptococcus_Vitamin_Mutualism_Microcosm.html","Variovorax-Cryptococcus Vitamin Cross-Feeding Microcosm"]],"b":[["ComplexPortal%3ACPX-2140","iscS-thiI sulfurtransferase complex"],["GO%3A0009228","thiamine biosynthetic process"],["GO%3A0036172","thiamine salvage"],["NCBIfam%3ATIGR00204","1-deoxy-D-xylulose-5-phosphate synthase"],["NCBIfam%3ATIGR02351","2-iminoacetate synthase ThiH"],["NCBIfam%3ANF009078","bifunctional hydroxymethylpyrimidine kinase/phosphomethylpyrimidine kinase"]]},{"id":"CHEBI:15882","l":"phenol","na":2,"nb":31,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]],"b":[["EC%3A1.14.13.244","phenol 2-monooxygenase (NADH)"],["EC%3A1.14.13.7","phenol 2-monooxygenase (NADPH)"],["EC%3A1.14.14.20","phenol 2-monooxygenase (FADH2)"],["EC%3A2.1.1.25","phenol O-methyltransferase"],["EC%3A2.4.2.55","nicotinate D-ribonucleotide:phenol phospho-D-ribosyltransferase"],["EC%3A2.7.1.238","phenol phosphorylase"]]},{"id":"CHEBI:15347","l":"acetone","na":2,"nb":27,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["EC%3A1.1.1.80","isopropanol dehydrogenase (NADP(+))"],["EC%3A1.14.13.226","acetone monooxygenase (methyl acetate-forming)"],["EC%3A1.14.14.141","psoralen synthase"],["EC%3A1.14.14.148","angelicin synthase"],["EC%3A2.6.3.1","oximinotransferase"],["EC%3A4.1.1.4","acetoacetate decarboxylase"]]},{"id":"CHEBI:57586","l":"biotinate","na":2,"nb":24,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_57586","requires biotinate"],["EC%3A2.8.1.6","biotin synthase"],["EC%3A3.5.1.12","biotinidase"],["EC%3A6.2.1.11","biotin--CoA ligase"],["EC%3A6.3.4.10","biotin--[propionyl-CoA-carboxylase (ATP-hydrolyzing)] ligase"],["EC%3A6.3.4.11","biotin--[methylcrotonoyl-CoA-carboxylase] ligase"]]},{"id":"NCBITaxon:160488","l":"Pseudomonas putida (strain ATCC 47054 / DSM 6125 / CFBP 8728 / NCIMB 11950 / KT2440)","na":2,"nb":24,"a":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"]],"b":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF00842","Alanine racemase, C-terminal domain"],["Pfam%3APF01168","Alanine racemase, N-terminal domain"],["Pfam%3APF13372","Alginate export"],["Pfam%3APF03705","CheR methyltransferase, all-alpha domain"],["Pfam%3APF01739","CheR methyltransferase, SAM binding domain"]]},{"id":"GO:0045333","l":"cellular respiration","na":2,"nb":21,"a":[["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"]],"b":[["ComplexPortal%3ACPX-560","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-563","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-567","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-9308","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-1721","Mitochondrial respiratory chain complex IV, COX5A variant"],["ComplexPortal%3ACPX-1722","Mitochondrial respiratory chain complex IV, COX5B variant"]]},{"id":"GO:0006089","l":"lactate metabolic process","na":2,"nb":20,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"]],"b":[["ComplexPortal%3ACPX-6573","L-lactate dehydrogenase A complex"],["ComplexPortal%3ACPX-6599","L-lactate dehydrogenase B complex"],["ComplexPortal%3ACPX-6602","L-lactate dehydrogenase C complex"],["ComplexPortal%3ACPX-6598","L-lactate dehydrogenase complex, A1B3 variant"],["ComplexPortal%3ACPX-6594","L-lactate dehydrogenase complex, A2B2 variant"],["ComplexPortal%3ACPX-6592","L-lactate dehydrogenase complex, A3B1 variant"]]},{"id":"CHEBI:16750","l":"guanosine","na":2,"nb":19,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["EC%3A2.4.2.1","purine-nucleoside phosphorylase"],["EC%3A2.4.2.15","guanosine phosphorylase"],["EC%3A2.7.1.73","inosine kinase"],["EC%3A3.5.4.15","guanosine deaminase"],["RHEA%3A27862","3'-GMP + H2O = guanosine + phosphate"],["RHEA%3A27714","GMP + H2O = guanosine + phosphate"]]},{"id":"CHEBI:16838","l":"polyphosphate","na":2,"nb":18,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"]],"b":[["EC%3A2.7.1.63","polyphosphate--glucose phosphotransferase"],["EC%3A2.7.4.1","ATP-polyphosphate phosphotransferase"],["EC%3A2.7.4.17","3-phosphoglyceroyl-phosphate--polyphosphate phosphotransferase"],["EC%3A2.7.4.20","dolichyl-diphosphate--polyphosphate phosphotransferase"],["EC%3A2.7.4.33","AMP-polyphosphate phosphotransferase"],["EC%3A2.7.4.34","GDP-polyphosphate phosphotransferase"]]},{"id":"GO:0009636","l":"response to toxic substance","na":2,"nb":18,"a":[["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"]],"b":[["ComplexPortal%3ACPX-2254","Cus cation efflux complex"],["GO%3A0097237","cellular response to toxic substance"],["GO%3A0060992","response to fungicide"],["GO%3A0009635","response to herbicide"],["GO%3A0017085","response to insecticide"],["GO%3A0010188","response to microbial phytotoxin"]]},{"id":"NCBITaxon:4577","l":"Zea mays","na":2,"nb":18,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"]],"b":[["IDPO%3A0000002","disorder"],["Pfam%3APF14861","Plant antimicrobial peptide"],["Pfam%3APF02041","Auxin binding protein"],["Pfam%3APF25436","BSD2 cysteine rich domain"],["Pfam%3APF23493","Cysteinyl-tRNA ligase anticodon binding domain"],["Pfam%3APF03330","Lytic transglycolase"]]},{"id":"GO:0033103","l":"protein secretion by the type VI secretion system","na":2,"nb":17,"a":[["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"]],"b":[["GO%3A0033103","protein secretion by the type VI secretion system"],["NCBIfam%3ATIGR03354","type VI secretion system-associated FHA domain protein TagH"],["NCBIfam%3ATIGR03345","type VI secretion system ATPase TssH"],["NCBIfam%3ATIGR03357","type VI secretion system baseplate subunit TssE"],["NCBIfam%3ATIGR03359","type VI secretion system baseplate subunit TssF"],["NCBIfam%3ATIGR03347","type VI secretion system baseplate subunit TssG"]]},{"id":"GO:0051707","l":"response to other organism","na":2,"nb":17,"a":[["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0002213","defense response to insect"],["GO%3A0002215","defense response to nematode"],["GO%3A0098542","defense response to other organism"],["GO%3A0098543","detection of other organism"],["GO%3A0009617","response to bacterium"],["GO%3A0009620","response to fungus"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":2,"nb":16,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF28265","Lipoprotein N-acylation protein LnsA-like"],["Pfam%3APF16403","Bacterial surface protein, Ig-like domain"],["Pfam%3APF03944","delta endotoxin"],["Pfam%3APF03945","delta endotoxin, N-terminal domain"],["Pfam%3APF06355","Aegerolysin"]]},{"id":"CHEBI:36080","l":"protein","na":2,"nb":15,"a":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["Wollastonite_Ramichloridium_Talaromyces_Fungal_Consortium.html","Wollastonite Ramichloridium-Talaromyces Fungal Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A3.A.16","The Endoplasmic Reticular Retrotranslocon (ER-RT) Family"],["TCDB%3A3.A.27","The Endoplasmic Reticulum Membrane Protein Insertion Complex (EMC) Family"],["TCDB%3A9.A.57","The Extended-Synaptotagmin (E-Syt) Family"],["TCDB%3A3.A.13","The Filamentous Phage Exporter (FPhE) Family"],["TCDB%3A9.A.37","The Nuclear Import Tax Protein (Tax) Family"]]},{"id":"GO:0006970","l":"response to osmotic stress","na":2,"nb":15,"a":[["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["GO%3A0071470","cellular response to osmotic stress"],["GO%3A0043575","detection of osmotic stimulus"],["GO%3A0006972","hyperosmotic response"],["GO%3A0006971","hypotonic response"],["GO%3A0010335","response to non-ionic osmotic stress"],["GO%3A0006970","response to osmotic stress"]]},{"id":"GO:0019645","l":"anaerobic electron transport chain","na":2,"nb":15,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["ComplexPortal%3ACPX-320","DmaABC DMSO reductase complex"],["ComplexPortal%3ACPX-1975","Formate dehydrogenase N complex"],["ComplexPortal%3ACPX-6029","Formate dehydrogenase Z complex"],["ComplexPortal%3ACPX-317","Formate hydrogenlyase-H/Hydrogenase-3 complex"],["ComplexPortal%3ACPX-6028","Formate hydrogenlyase-H/Hydrogenase-4 complex"],["ComplexPortal%3ACPX-281","Hydrogenase-1 complex"]]},{"id":"GO:0009408","l":"response to heat","na":2,"nb":14,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["PMI_Variovorax_Thermotolerance_Collection.html","PMI Variovorax Thermotolerance Collection"]],"b":[["ComplexPortal%3ACPX-4887","DNA-directed RNA polymerase holoenzyme complex, SigmaH variant"],["ComplexPortal%3ACPX-636","ISW1b chromatin remodeling complex"],["GO%3A0034605","cellular response to heat"],["GO%3A0036168","filamentous growth of a population of unicellular organisms in response to heat"],["GO%3A0010286","heat acclimation"],["GO%3A0009408","response to heat"]]},{"id":"CHEBI:15428","l":"glycine","na":2,"nb":13,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["MCSA%3A718","caspase-1"],["MCSA%3A599","dipeptidase E"],["MCSA%3A906","gelatinase A"],["MCSA%3A762","glycine C-acetyltransferase"],["MCSA%3A746","L-peptidase"],["MCSA%3A477","picornain 3C"]]},{"id":"GO:0006032","l":"chitin catabolic process","na":2,"nb":13,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["GO%3A0006032","chitin catabolic process"],["NCBIfam%3ANF052619","chitinase ChiD"],["NCBIfam%3ANF041127","exo-beta-D-glucosaminidase"],["NCBIfam%3ANF041128","glucosamine-6-phosphate deaminase"],["NCBIfam%3ATIGR03851","N-acetylglucosamine/diacetylchitobiose ABC transporter substrate-binding protein"],["InterPro%3AIPR005089","Carbohydrate-binding module family 19"]]},{"id":"NCBITaxon:272562","l":"Clostridium acetobutylicum (strain ATCC 824 / DSM 792 / JCM 1419 / IAM 19013 / LMG 5710 / NBRC 13948 / NRRL B-527 / VKM B-1787 / 2291 / W)","na":2,"nb":13,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["Pfam%3APF10882","Bacterial PH domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["Pfam%3APF09940","Domain of unknown function (DUF2172)"],["Pfam%3APF16254","Domain of unknown function (DUF4910)"],["Pfam%3APF01183","Glycosyl hydrolases family 25"],["Pfam%3APF16221","winged helix-turn-helix"]]},{"id":"NCBITaxon:644","l":"Aeromonas hydrophila","na":2,"nb":13,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["Pfam%3APF01117","Aerolysin toxin"],["Pfam%3APF03440","Aerolysin/Pertussis toxin (APT) domain"],["Pfam%3APF21327","GspA, peptidase C39-like domain"],["Pfam%3APF04231","Endonuclease I"],["PROSITE%3APS01092","Adenylate cyclase class-I signature 1"],["PROSITE%3APS01093","Adenylate cyclase class-I signature 2"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus (strain ATCC 27405 / DSM 1237 / JCM 9322 / NBRC 103400 / NCIMB 10682 / NRRL B-4536 / VPI 7372)","na":2,"nb":12,"a":[["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["Pfam%3APF00942","Cellulose binding domain"],["Pfam%3APF17996","Carbohydrate esterase 2 N-terminal"],["Pfam%3APF00963","Cohesin domain"],["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF00404","Dockerin type I domain"]]},{"id":"NCBITaxon:51453","l":"Trichoderma reesei","na":2,"nb":12,"a":[["Trichoderma_Ecoli_Cellulosic_Isobutanol_Coculture.html","Trichoderma-E. coli Cellulosic Isobutanol Coculture"],["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["Pfam%3APF28347","ACE1 small beta sheet domain"],["Pfam%3APF28329","Zinc finger transcription factor ace1 N-terminal domain"],["Pfam%3APF00150","Cellulase (glycosyl hydrolase family 5)"],["Pfam%3APF22514","EXPB1-like domain 1"],["Pfam%3APF01341","Glycosyl hydrolases family 6"],["Pfam%3APF00840","Glycosyl hydrolase family 7"]]},{"id":"GO:0015889","l":"cobalamin transport","na":2,"nb":11,"a":[["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["ComplexPortal%3ACPX-2105","Cobalamin ABC transporter complex"],["ComplexPortal%3ACPX-1083","Cobalamin outer membrane transporter complex"],["ComplexPortal%3ACPX-5774","Cubam cobalamin uptake receptor complex"],["ComplexPortal%3ACPX-5847","Cubam cobalamin uptake receptor complex"],["GO%3A0015889","cobalamin transport"],["Reactome%3AR-HSA-9758890","Transport of RCbl within the body"]]},{"id":"GO:0019605","l":"butyrate metabolic process","na":2,"nb":11,"a":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["GO%3A0030645","acetyl-CoA fermentation to butanoate"],["GO%3A0046358","butyrate biosynthetic process"],["GO%3A0046359","butyrate catabolic process"],["GO%3A0019605","butyrate metabolic process"],["GO%3A0019475","L-lysine fermentation"],["GO%3A0044813","pyruvate fermentation to butanoate"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":2,"nb":11,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["Pfam%3APF22829","HphA C-terminal domain"],["Pfam%3APF22828","HphA N-terminal heme-binding domain"],["Pfam%3APF28205","Ciprofloxacin tolerance protein"],["Pfam%3APF19582","Solute-binding protein AdeT 1/2"],["PROSITE%3APS00337","Beta-lactamase class-D active site"],["Pfam%3APF24575","Surface lipoprotein assembly modifier, N-terminal TPR repeats"]]},{"id":"CHEBI:3098","l":"bile acid","na":2,"nb":9,"a":[["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.28","The Bile Acid:Na+ Symporter (BASS) Family"],["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"],["TCDB%3A9.A.19","The Lipid Intermediate Transporter (Arv1) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":2,"nb":9,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"]],"b":[["Pfam%3APF07835","Bacterial aa3 type cytochrome c oxidase subunit IV"],["Pfam%3APF04828","Glutathione-dependent formaldehyde-activating enzyme"],["Pfam%3APF16448","LapD/MoxY periplasmic domain"],["Pfam%3APF17267","Family of unknown function (DUF5333)"],["Pfam%3APF17272","Family of unknown function (DUF5337)"],["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":2,"nb":9,"a":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF25954","CusB-like, beta-barrel domain"],["Pfam%3APF13438","Domain of unknown function (DUF4113)"],["Pfam%3APF03767","HAD superfamily, subfamily IIIB (Acid phosphatase)"],["Pfam%3APF03496","ADP-ribosyltransferase exoenzyme"]]},{"id":"CHEBI:15366","l":"acetic acid","na":8,"nb":2,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["MCSA%3A431","acetylxylan esterase"],["MCSA%3A996","Peptidoglycan-N-acetylglucosamine deacetylase Bc1960"]]},{"id":"CHEBI:16793","l":"mercury(2+)","na":2,"nb":8,"a":[["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["EC%3A1.16.1.1","mercury(II) reductase"],["EC%3A4.99.1.2","alkylmercury lyase"],["RHEA%3A18777","an alkylmercury + H(+) = an alkane + Hg(2+)"],["RHEA%3A32815","Hg(2+)(in) = Hg(2+)(out)"],["RHEA%3A23856","Hg + NADP(+) + H(+) = Hg(2+) + NADPH"],["MCSA%3A297","alkylmercury lyase"]]},{"id":"GO:0009651","l":"response to salt stress","na":2,"nb":8,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"]],"b":[["GO%3A0071472","cellular response to salt stress"],["GO%3A0042538","hyperosmotic salinity response"],["GO%3A0042539","hypotonic salinity response"],["GO%3A0072342","response to anion stress"],["GO%3A0043157","response to cation stress"],["GO%3A0009651","response to salt stress"]]},{"id":"GO:0033013","l":"tetrapyrrole metabolic process","na":2,"nb":8,"a":[["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["GO%3A0009235","cobalamin metabolic process"],["GO%3A0006778","porphyrin-containing compound metabolic process"],["GO%3A0033014","tetrapyrrole biosynthetic process"],["GO%3A0033015","tetrapyrrole catabolic process"],["GO%3A0033013","tetrapyrrole metabolic process"],["NCBIfam%3ANF047825","tryptophan-rich sensory protein TspO"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":2,"nb":8,"a":[["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]],"b":[["Pfam%3APF02927","Cellulase N-terminal ig-like domain"],["Pfam%3APF00404","Dockerin type I domain"],["PROSITE%3APS00448","Clostridium cellulosome enzymes repeated domain signature"],["PROSITE%3APS60032","Glycosyl hydrolases family 9 (GH9) active site signature 1"],["PROSITE%3APS00592","Glycosyl hydrolases family 9 (GH9) active site signature 2"],["PROSITE%3APS00698","Glycosyl hydrolases family 9 (GH9) active site signature 3"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":8,"nb":2,"a":[["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"],["Sedimenting_Arabinose_Glucose_Saccharomyces_Coculture.html","Sedimenting Arabinose-Glucose Saccharomyces Coculture"]],"b":[["PROSITE%3APS00820","Glucoamylase active site region signature"],["TED%3AAF-A0A7I9G6Y3-F1-model_v4_TED02","TED novel fold AF-A0A7I9G6Y3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:920","l":"Acidithiobacillus ferrooxidans","na":8,"nb":2,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["Pfam%3APF20538","Family of unknown function (DUF6753)"],["PROSITE%3APS01007","Transposases, Mutator family, signature"]]},{"id":"CHEBI:17824","l":"propan-2-ol","na":2,"nb":7,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"]],"b":[["EC%3A1.1.1.80","isopropanol dehydrogenase (NADP(+))"],["EC%3A1.14.13.227","propane 2-monooxygenase"],["RHEA%3A62196","propan-2-ol + 2 Fe(III)-[cytochrome c] = acetone + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A41984","propan-2-ol + NAD(+) = acetone + NADH + H(+)"],["RHEA%3A21792","propan-2-ol + NADP(+) = acetone + NADPH + H(+)"],["RHEA%3A49992","propane + NADH + O2 + H(+) = propan-2-ol + NAD(+) + H2O"]]},{"id":"CHEBI:49713","l":"lithium(1+)","na":2,"nb":7,"a":[["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["RHEA%3A72631","3 Li(+)(out) + Ca(2+)(in) = 3 Li(+)(in) + Ca(2+)(out)"],["RHEA%3A70431","Li(+)(in) + 2 H(+)(out) = Li(+)(out) + 2 H(+)(in)"],["RHEA%3A75063","Li(+)(in) + 2 hydrogencarbonate(in) + chloride(out) = Li(+)(out) + 2 hydrogencarbonate(out) + chloride(in)"],["RHEA%3A78551","Li(+)(in) = Li(+)(out)"],["RHEA%3A72415","Li(+)(in) + Na(+)(out) = Li(+)(out) + Na(+)(in)"],["RHEA%3A72407","Li(+)(out) + H(+)(in) = Li(+)(in) + H(+)(out)"]]},{"id":"GO:0043448","l":"alkane catabolic process","na":7,"nb":2,"a":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Nitratireductor_Gordonia_Z123_LDPE_Degradation_SynCom.html","Nitratireductor-Gordonia Z123 LDPE-Degradation SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"]],"b":[["GO%3A0043448","alkane catabolic process"],["GO%3A0046188","methane catabolic process"]]},{"id":"NCBITaxon:1305","l":"Streptococcus sanguinis","na":2,"nb":7,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["Pfam%3APF09254","FokI, cleavage domain"],["Pfam%3APF02981","FokI, recognition domain, subdomain 1"],["Pfam%3APF02980","FokI, recognition domain, subdomain 2"],["Pfam%3APF07501","G5 domain"],["Pfam%3APF07581","The GLUG motif"],["TED%3AAF-A0A7H8V358-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H8V358-F1-model_v4_TED01"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":2,"nb":7,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["Pfam%3APF19443","DAHL domain"],["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"],["Pfam%3APF03524","Conjugal transfer protein"],["Pfam%3APF27439","Chaperone protein DnaJ C-terminal region"],["Pfam%3APF10907","Protein of unknown function (DUF2749)"],["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":2,"nb":7,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["Pfam%3APF11766","Agglutinin-like protein, N-terminal domain"],["Pfam%3APF16856","Cell division control protein 4 dimerisation domain"],["Pfam%3APF18325","Fatty acid synthase subunit alpha Acyl carrier domain"],["Pfam%3APF18314","Fatty acid synthase type I helical domain"],["Pfam%3APF17828","N-terminal domain in fatty acid synthase subunit beta"],["Pfam%3APF05388","Carboxypeptidase Y pro-peptide"]]},{"id":"CHEBI:16457","l":"S,S-dimethyl-beta-propiothetin","na":2,"nb":6,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["EC%3A2.1.1.269","dimethylsulfoniopropionate demethylase"],["EC%3A4.4.1.3","dimethylpropiothetin dethiomethylase"],["RHEA%3A35467","S,S-dimethyl-beta-propiothetin + (6S)-5,6,7,8-tetrahydrofolate = 3-(methylsulfanyl)propanoate + (6S)-5-methyl-5,6,7,8-tetrahydrofolate + H(+)"],["RHEA%3A19965","S,S-dimethyl-beta-propiothetin = acrylate + dimethyl sulfide + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.15","The Betaine/Carnitine/Choline Transporter (BCCT) Family"]]},{"id":"CHEBI:16995","l":"oxalic acid","na":6,"nb":2,"a":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Wollastonite_Ramichloridium_Talaromyces_Fungal_Consortium.html","Wollastonite Ramichloridium-Talaromyces Fungal Consortium"]],"b":[["TCDB%3A2.A.53","The Sulfate Permease (SulP) Family"],["proteintraitsmech%3ABIOLIP_OXD","OXD-binding site"]]},{"id":"CHEBI:30772","l":"butyric acid","na":6,"nb":2,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["MCSA%3A900","para-nitrobenzyl esterase"],["proteintraitsmech%3ABIOLIP_BUA","BUA-binding site"]]},{"id":"GO:0009235","l":"cobalamin metabolic process","na":2,"nb":6,"a":[["Soil_Corrinoid_B12_Reservoir_Community.html","Soil Corrinoid Reservoir Microbial Community"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["GO%3A0009236","cobalamin biosynthetic process"],["GO%3A0042366","cobalamin catabolic process"],["GO%3A0009235","cobalamin metabolic process"],["Reactome%3AR-HSA-9759218","Cobalamin (Cbl) metabolism"],["NCBIfam%3ANF021725","methylmalonic aciduria and homocystinuria type D protein"],["Pfam%3APF10229","Methylmalonic aciduria and homocystinuria type D protein"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":2,"nb":6,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]],"b":[["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF03744","6-carboxyhexanoate--CoA ligase"],["PROSITE%3APS00836","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 1"],["PROSITE%3APS00837","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 2"],["TED%3AAF-A0A2S5D092-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5D092-F1-model_v4_TED01"],["TED%3AAF-A0A2S0JW09-F1-model_v4_TED01","TED novel fold AF-A0A2S0JW09-F1-model_v4_TED01"]]},{"id":"NCBITaxon:32049","l":"Picosynechococcus sp. PCC 7002","na":2,"nb":6,"a":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"]],"b":[["Pfam%3APF09367","CpeS-like protein"],["Pfam%3APF06206","CpeT/CpcT family (DUF1001)"],["Pfam%3APF12965","Domain of unknown function (DUF3854)"],["Pfam%3APF19928","Domain of unknown function (DUF6391)"],["Pfam%3APF09366","Protein of unknown function (DUF1997)"],["Pfam%3APF14870","Photosynthesis system II assembly factor YCF48"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":2,"nb":6,"a":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["Pfam%3APF01177","Asp/Glu/Hydantoin racemase"],["Pfam%3APF11339","Protein of unknown function (DUF3141)"],["PROSITE%3APS01303","BCCT family of transporters signature"],["PROSITE%3APS00665","Dihydrodipicolinate synthase signature 1"],["TED%3AAF-A0A2J0YSD4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J0YSD4-F1-model_v4_TED01"],["TED%3AAF-A0A843ZNG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843ZNG8-F1-model_v4_TED01"]]},{"id":"CHEBI:16865","l":"gamma-aminobutyric acid","na":2,"nb":5,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A2.A.42","The Hydroxy/Aromatic Amino Acid Permease (HAAAP) Family"],["TCDB%3A2.A.22","The Neurotransmitter:Sodium Symporter (NSS) Family"],["proteintraitsmech%3ABIOLIP_ABU","ABU-binding site"]]},{"id":"GO:0015945","l":"methanol metabolic process","na":2,"nb":5,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"]],"b":[["GO%3A0019387","methanogenesis, from methanol"],["GO%3A0046169","methanol biosynthetic process"],["GO%3A0046170","methanol catabolic process"],["GO%3A0015945","methanol metabolic process"],["GO%3A0015946","methanol oxidation"]]},{"id":"NCBITaxon:3039","l":"Euglena gracilis","na":2,"nb":5,"a":[["Dairy_Wastewater_Algal_Cyanobacterial_Cultivation_Panel.html","Dairy Wastewater Algal-Cyanobacterial Cultivation Panel"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"]],"b":[["Pfam%3APF01333","Apocytochrome F, C-terminal"],["Pfam%3APF16639","Apocytochrome F, N-terminal"],["Pfam%3APF04940","Sensors of blue-light using FAD"],["Pfam%3APF10371","Domain of unknown function"],["PROSITE%3APS00938","Initiation factor 3 signature"]]},{"id":"NCBITaxon:5507","l":"Fusarium oxysporum","na":2,"nb":5,"a":[["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["Pfam%3APF02015","Glycosyl hydrolase family 45"],["PROSITE%3APS01140","Glycosyl hydrolases family 45 active site"],["TED%3AAF-A0A2H3TJY2-F1-model_v4_TED01","TED novel fold AF-A0A2H3TJY2-F1-model_v4_TED01"],["TED%3AAF-A0A420N954-F1-model_v4_TED01","TED novel fold AF-A0A420N954-F1-model_v4_TED01"],["TED%3AAF-A0A420P6J4-F1-model_v4_TED01","TED novel fold AF-A0A420P6J4-F1-model_v4_TED01"]]},{"id":"CHEBI:33363","l":"palladium atom","na":2,"nb":4,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_PD_DINUCLEAR","dinuclear palladium site"],["proteintraitsmech%3AMETALPDB_PD_MONONUCLEAR","mononuclear palladium site"],["proteintraitsmech%3AMETALPDB_PD_TETRANUCLEAR","tetranuclear palladium site"],["proteintraitsmech%3AMETALPDB_PD_TRINUCLEAR","trinuclear palladium site"]]},{"id":"GO:0018874","l":"benzoate metabolic process","na":4,"nb":2,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["GO%3A0043639","benzoate catabolic process"],["GO%3A0018874","benzoate metabolic process"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":2,"nb":4,"a":[["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["TED%3AAF-A0A7W3UB61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W3UB61-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F4B3-F1-model_v4_TED01","TED novel fold AF-A0A0D7F4B3-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F6R4-F1-model_v4_TED01","TED novel fold AF-A0A0D7F6R4-F1-model_v4_TED01"],["TED%3AAF-A0A7W3YI15-F1-model_v4_TED02","TED novel fold AF-A0A7W3YI15-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":4,"nb":2,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"],["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["Pfam%3APF22538","Hexaprenyl diphosphate synthase, small subunit"],["PROSITE%3APS01066","Undecaprenyl pyrophosphate synthase family signature"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":4,"nb":2,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]],"b":[["Pfam%3APF02052","Gallidermin"],["Pfam%3APF04604","Type-A lantibiotic"]]},{"id":"NCBITaxon:269797","l":"Methanosarcina barkeri str. Fusaro","na":2,"nb":4,"a":[["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["Pfam%3APF27274","Coenzyme F430 synthetase CfbE, C-terminal domain"],["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"],["Pfam%3APF09505","Dimethylamine methyltransferase (Dimeth_PyL)"],["PROSITE%3APS00507","Nickel-dependent hydrogenases large subunit signature 1"]]},{"id":"NCBITaxon:2822231","l":"Phanerodontia chrysosporium","na":2,"nb":4,"a":[["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"]],"b":[["Pfam%3APF18637","Aldos-2-ulose dehydratase/isomerase (AUDH) Cupin domain"],["Pfam%3APF16010","Cytochrome domain of cellobiose dehydrogenase"],["PROSITE%3APS00623","GMC oxidoreductases signature 1"],["Pfam%3APF22301","Aldos-2-ulose dehydratase, beta-propeller domain"]]},{"id":"NCBITaxon:37919","l":"Rhodococcus opacus","na":4,"nb":2,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"],["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["Pfam%3APF11794","4-hydroxyphenylacetate 3-hydroxylase N terminal"],["Pfam%3APF03241","4-hydroxyphenylacetate 3-hydroxylase C terminal"]]},{"id":"CHEBI:15741","l":"succinic acid","na":3,"nb":2,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_SIN","SIN-binding site"]]},{"id":"CHEBI:15956","l":"biotin","na":3,"nb":2,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15956","requires biotin"],["proteintraitsmech%3ABIOLIP_BTN","BTN-binding site"]]},{"id":"CHEBI:24898","l":"isoleucine","na":2,"nb":3,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["MCSA%3A906","gelatinase A"]]},{"id":"CHEBI:33377","l":"dysprosium atom","na":2,"nb":3,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_33377","requires Tb"],["proteintraitsmech%3AMETALPDB_DY_DINUCLEAR","dinuclear dysprosium site"],["proteintraitsmech%3AMETALPDB_DY_MONONUCLEAR","mononuclear dysprosium site"]]},{"id":"CHEBI:49470","l":"aluminium(3+)","na":2,"nb":3,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Rice_Acid_Soil_Bioinoculant_SynCom.html","Rice Acid Soil Bioinoculant SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["proteintraitsmech%3ABIOLIP_AL","AL-binding site"]]},{"id":"CHEBI:5199","l":"Fusaric acid","na":2,"nb":3,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["TCDB%3A2.A.85","The Aromatic Acid Exporter (ArAE) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.17","The Outer Membrane Factor (OMF) Family"]]},{"id":"CHEBI:58187","l":"alginate","na":2,"nb":3,"a":[["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["EC%3A5.1.3.37","mannuronan 5-epimerase"],["RHEA%3A45572","[(1->4)-beta-D-mannuronosyl](n) = [alginate](n)"],["RHEA%3A15637","[alginate](n) + GDP-alpha-D-mannuronate = [alginate](n+1) + GDP + H(+)"]]},{"id":"GO:0006068","l":"ethanol catabolic process","na":2,"nb":3,"a":[["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["GO%3A0006068","ethanol catabolic process"],["Reactome%3AR-HSA-71384","Ethanol oxidation"],["NCBIfam%3ANF050026","acetaldehyde dehydrogenase ExaC"]]},{"id":"GO:0019385","l":"methanogenesis, from acetate","na":2,"nb":3,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["GO%3A0019385","methanogenesis, from acetate"],["NCBIfam%3ANF014596","carbon monoxide dehydrogenase beta subunit family protein"],["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"]]},{"id":"NCBITaxon:1492","l":"Clostridium butyricum","na":2,"nb":3,"a":[["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["Pfam%3APF00302","Chloramphenicol acetyltransferase"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["PROSITE%3APS00100","Chloramphenicol acetyltransferase active site"]]},{"id":"NCBITaxon:166486","l":"Roseburia intestinalis","na":3,"nb":2,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["TED%3AAF-A0A3R6HE72-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R6HE72-F1-model_v4_TED01"],["TED%3AAF-A0A6L6XJA4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L6XJA4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:239935","l":"Akkermansia muciniphila","na":3,"nb":2,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["TED%3AAF-A0A2N8IJN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N8IJN7-F1-model_v4_TED01"],["TED%3AAF-A0A6N2UM07-F1-model_v4_TED01","TED novel fold AF-A0A6N2UM07-F1-model_v4_TED01"]]},{"id":"NCBITaxon:253","l":"Chryseobacterium indologenes","na":2,"nb":3,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"]],"b":[["PROSITE%3APS00744","Beta-lactamases class B signature 2"],["TED%3AAF-A0A7T8U7T3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T8U7T3-F1-model_v4_TED01"],["TED%3AAF-A0A0N0ZUI2-F1-model_v4_TED01","TED novel fold AF-A0A0N0ZUI2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28108","l":"Alteromonas macleodii","na":2,"nb":3,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["TED%3AAF-A0A6C5N007-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6C5N007-F1-model_v4_TED01"],["TED%3AAF-A0A126Q0V0-F1-model_v4_TED01","TED novel fold AF-A0A126Q0V0-F1-model_v4_TED01"],["TED%3AAF-A0A6T9Y0H6-F1-model_v4_TED01","TED novel fold AF-A0A6T9Y0H6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:33035","l":"Blautia producta","na":3,"nb":2,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["TED%3AAF-A0A2S4GEH6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S4GEH6-F1-model_v4_TED01"],["TED%3AAF-A0A7G5MNY0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G5MNY0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:357809","l":"Lachnoclostridium phytofermentans ISDg","na":2,"nb":3,"a":[["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"]],"b":[["Pfam%3APF09508","Lacto-N-biose phosphorylase N-terminal TIM barrel domain"],["Pfam%3APF17386","Lacto-N-biose phosphorylase C-terminal domain"],["Pfam%3APF17385","Lacto-N-biose phosphorylase central domain"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":3,"nb":2,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["PROSITE%3APS00336","Beta-lactamase class-C active site"],["TED%3AAF-A0A155XQ59-F1-model_v4_TED02","TED novel fold AF-A0A155XQ59-F1-model_v4_TED02"]]},{"id":"NCBITaxon:561879","l":"Bacillus safensis","na":2,"nb":3,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"]],"b":[["Pfam%3APF09221","Bacteriocin class IId cyclical uberolysin-like"],["TED%3AAF-A0A1L6ZPA6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6ZPA6-F1-model_v4_TED01"],["TED%3AAF-A0A1L6ZPC9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6ZPC9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:587753","l":"Pseudomonas chlororaphis","na":3,"nb":2,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["TED%3AAF-A0A8A9Z2C4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A8A9Z2C4-F1-model_v4_TED03"],["TED%3AAF-A0A0A6DEM6-F1-model_v4_TED01","TED novel fold AF-A0A0A6DEM6-F1-model_v4_TED01"]]},{"id":"CHEBI:15930","l":"atrazine","na":2,"nb":2,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["EC%3A3.8.1.8","atrazine chlorohydrolase"],["RHEA%3A11312","atrazine + H2O = hydroxyatrazine + chloride + H(+)"]]},{"id":"CHEBI:16094","l":"thiosulfate(2-)","na":2,"nb":2,"a":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["proteintraitsmech%3ABIOLIP_THJ","THJ-binding site"]]},{"id":"CHEBI:17300","l":"tetrachloroethene","na":2,"nb":2,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["EC%3A1.21.99.5","tetrachloroethene reductive dehalogenase"],["RHEA%3A20353","trichloroethene + chloride + A + H(+) = tetrachloroethene + AH2"]]},{"id":"CHEBI:231672","l":"bis(2-hydroxyethyl) terephthalate","na":2,"nb":2,"a":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["RHEA%3A80759","bis(2-hydroxyethyl) terephthalate + H2O = 4-[(2-hydroxyethoxy)carbonyl]benzoate + ethylene glycol + H(+)"],["proteintraitsmech%3ABIOLIP_C8X","C8X-binding site"]]},{"id":"CHEBI:27518","l":"acetylene","na":2,"nb":2,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"]],"b":[["EC%3A4.2.1.112","acetylene hydratase"],["RHEA%3A17885","acetaldehyde = acetylene + H2O"]]},{"id":"CHEBI:30046","l":"oxidovanadium(2+)","na":2,"nb":2,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["RHEA%3A75007","VO(2+)(out) + H(+)(out) = VO(2+)(in) + H(+)(in)"],["proteintraitsmech%3ABIOLIP_VVO","VVO-binding site"]]},{"id":"CHEBI:30751","l":"formic acid","na":2,"nb":2,"a":[["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["MCSA%3A38","GTP cyclohydrolase I"],["proteintraitsmech%3ABIOLIP_FMT","FMT-binding site"]]},{"id":"CHEBI:47916","l":"flavonoid","na":2,"nb":2,"a":[["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]]},{"id":"CHEBI:48782","l":"cerium(3+)","na":2,"nb":2,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_48782","requires cerium(3+)"],["proteintraitsmech%3ABIOLIP_CE","CE-binding site"]]},{"id":"CHEBI:49701","l":"lanthanum(3+)","na":2,"nb":2,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_49701","requires lanthanum(3+)"],["proteintraitsmech%3ABIOLIP_LA","LA-binding site"]]},{"id":"CHEBI:8005","l":"peptidoglycan","na":2,"nb":2,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.17","The Proton-dependent Oligopeptide Transporter (POT/PTR) Family"]]},{"id":"GO:0005983","l":"starch catabolic process","na":2,"nb":2,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"]],"b":[["GO%3A0005983","starch catabolic process"],["NCBIfam%3ATIGR02103","pullulanase-type alpha-1,6-glucosidase"]]},{"id":"NCBITaxon:145262","l":"Methanothermobacter thermautotrophicus","na":2,"nb":2,"a":[["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]],"b":[["Pfam%3APF12686","Protein of unknown function (DUF3800)"],["PROSITE%3APS00093","N-4 cytosine-specific DNA methylases signature"]]},{"id":"NCBITaxon:2162","l":"Methanobacterium formicicum","na":2,"nb":2,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"]],"b":[["Pfam%3APF04432","Coenzyme F420 hydrogenase/dehydrogenase, beta subunit C terminus"],["Pfam%3APF04422","Coenzyme F420 hydrogenase/dehydrogenase, beta subunit N-term"]]},{"id":"NCBITaxon:2223","l":"Methanothrix soehngenii","na":2,"nb":2,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"],["TED%3AAF-A0A7K4AJW5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K4AJW5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:39152","l":"Methanococcus maripaludis","na":2,"nb":2,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"]],"b":[["Pfam%3APF02571","Precorrin-6x reductase CbiJ/CobK"],["TED%3AAF-A0A7J9PSA9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J9PSA9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:39488","l":"Anaerobutyricum hallii","na":2,"nb":2,"a":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["TED%3AAF-A0A414B1Y3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A414B1Y3-F1-model_v4_TED01"],["TED%3AAF-A0A415G3S7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A415G3S7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:4952","l":"Yarrowia lipolytica","na":2,"nb":2,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Yarrowia_lipolytica_Division_of_Labor_Lipid_Consortium.html","Yarrowia lipolytica Division-of-Labor Lipid Consortium"]],"b":[["TED%3AAF-A0A7H0KE04-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H0KE04-F1-model_v4_TED01"],["TED%3AAF-A0A371C7L0-F1-model_v4_TED02","TED novel fold AF-A0A371C7L0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:84022","l":"Andreesenella acetica","na":2,"nb":2,"a":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"]],"b":[["TED%3AAF-A0A0D8IAM1-F1-model_v4_TED01","TED novel fold AF-A0A0D8IAM1-F1-model_v4_TED01"],["TED%3AAF-A0A0D8IBN9-F1-model_v4_TED02","TED novel fold AF-A0A0D8IBN9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":1,"nb":49554,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["EC%3A1.1.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.1.98.-","With other, known, acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":1,"nb":17470,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["EC%3A1.1.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.16.-.-","Oxidizing metal ions"],["EC%3A1.18.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.7.-","With an iron-sulfur protein as acceptor"]]},{"id":"NCBITaxon:7227","l":"Drosophila melanogaster","na":1,"nb":11343,"a":[["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.14.15.-","With reduced iron-sulfur protein as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.17.-","With reduced ascorbate as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.-.-","Acting on paired donors, with incorporation or reduction of molecular oxygen. The oxygen incorporated need not be derived from O2"],["EC%3A1.2.4.-","With a disulfide as acceptor"],["EC%3A1.6.99.-","With other acceptors"]]},{"id":"NCBITaxon:6239","l":"Caenorhabditis elegans","na":1,"nb":9682,"a":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"]],"b":[["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.14.14.-","With reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.17.-","With reduced ascorbate as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.19.-","With oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water"],["EC%3A1.14.99.-","Miscellaneous"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii (strain ATCC 43067 / DSM 2661 / JAL-1 / JCM 10045 / NBRC 100440)","na":1,"nb":5181,"a":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]],"b":[["EC%3A1.12.99.-","With other acceptors"],["EC%3A1.3.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.3.-.-","Acting on the CH-CH group of donors"],["EC%3A1.8.98.-","With other, known, acceptors"],["EC%3A1.97.1.-","Other oxidoreductases"],["EC%3A2.1.2.-","Hydroxymethyl-, formyl- and related transferases"]]},{"id":"GO:0006355","l":"regulation of DNA-templated transcription","na":1,"nb":1131,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["ComplexPortal%3ACPX-2829","ACF chromatin remodeling complex"],["ComplexPortal%3ACPX-2742","ATAC histone acetyltransferase complex"],["ComplexPortal%3ACPX-8344","BRE1 E3 ubiquitin ligase complex"],["ComplexPortal%3ACPX-1830","CCAAT-binding factor complex"],["ComplexPortal%3ACPX-2767","CCAAT-binding factor complex"],["ComplexPortal%3ACPX-2771","CCR4-NOT mRNA deadenylase complex"]]},{"id":"CHEBI:16810","l":"2-oxoglutarate(2-)","na":1,"nb":672,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"]],"b":[["EC%3A1.1.1.286","isocitrate--homoisocitrate dehydrogenase"],["EC%3A1.1.1.399","2-oxoglutarate reductase"],["EC%3A1.1.1.41","isocitrate dehydrogenase (NAD(+))"],["EC%3A1.1.1.42","isocitrate dehydrogenase (NADP(+))"],["EC%3A1.1.5.13","(S)-2-hydroxyglutarate dehydrogenase"],["EC%3A1.1.99.2","L-2-hydroxyglutarate dehydrogenase"]]},{"id":"GO:0006412","l":"translation","na":1,"nb":455,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["GO%3A0002181","cytoplasmic translation"],["GO%3A0032543","mitochondrial translation"],["GO%3A0032544","plastid translation"],["GO%3A0140241","translation at synapse"],["GO%3A0006412","translation"],["Reactome%3AR-HSA-72766","Translation"]]},{"id":"GO:0055085","l":"transmembrane transport","na":1,"nb":439,"a":[["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"]],"b":[["ComplexPortal%3ACPX-271","5-hydroxytryptamine-3A/B receptor complex"],["ComplexPortal%3ACPX-275","5-hydroxytryptamine-3A/B receptor complex"],["ComplexPortal%3ACPX-277","5-hydroxytryptamine-3A/B receptor complex"],["ComplexPortal%3ACPX-276","5-hydroxytryptamine-3A/C receptor complex"],["ComplexPortal%3ACPX-272","5-hydroxytryptamine-3A/D receptor complex"],["ComplexPortal%3ACPX-273","5-hydroxytryptamine-3A/E receptor complex"]]},{"id":"CHEBI:29985","l":"L-glutamate(1-)","na":1,"nb":426,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["EC%3A1.14.11.76","L-glutamate 3(R)-hydroxylase"],["EC%3A1.2.1.88","L-glutamate gamma-semialdehyde dehydrogenase"],["EC%3A1.4.1.13","glutamate synthase (NADPH)"],["EC%3A1.4.1.14","glutamate synthase (NADH)"],["EC%3A1.4.1.2","glutamate dehydrogenase"],["EC%3A1.4.1.3","glutamate dehydrogenase [NAD(P)(+)]"]]},{"id":"GO:0006508","l":"proteolysis","na":1,"nb":393,"a":[["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"]],"b":[["ComplexPortal%3ACPX-6224","Active Protein C complex"],["ComplexPortal%3ACPX-6222","alpha-thrombin complex"],["ComplexPortal%3ACPX-3663","Caspase-8 complex"],["ComplexPortal%3ACPX-975","Caspase-8 complex"],["ComplexPortal%3ACPX-6221","Coagulation factor Va-Xa complex"],["ComplexPortal%3ACPX-279","Coagulation factor VIIa - tissue factor complex"]]},{"id":"GO:0006260","l":"DNA replication","na":1,"nb":311,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["ComplexPortal%3ACPX-6641","ASCC DNA alkylation repair complex"],["ComplexPortal%3ACPX-568","Chromatin assembly factor 1 complex"],["ComplexPortal%3ACPX-2671","CMG helicase complex"],["ComplexPortal%3ACPX-297","CMG helicase complex"],["ComplexPortal%3ACPX-4526","CMG helicase complex"],["ComplexPortal%3ACPX-4541","CMG helicase complex"]]},{"id":"CHEBI:29101","l":"sodium(1+)","na":1,"nb":292,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29101","requires sodium(1+)"],["EC%3A7.2.1.1","NADH:ubiquinone reductase (Na(+)-transporting)"],["EC%3A7.2.1.2","ferredoxin--NAD(+) oxidoreductase (Na(+)-transporting)"],["EC%3A7.2.1.4","tetrahydromethanopterin S-methyltransferase"],["EC%3A7.2.2.1","Na(+)-transporting two-sector ATPase"],["EC%3A7.2.2.13","Na(+)/K(+)-exchanging ATPase"]]},{"id":"GO:0006096","l":"glycolytic process","na":1,"nb":117,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["ComplexPortal%3ACPX-1992","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-2039","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-2040","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-1994","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"],["ComplexPortal%3ACPX-2041","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"],["ComplexPortal%3ACPX-2042","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"]]},{"id":"GO:0042221","l":"response to chemical","na":1,"nb":104,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0070887","cellular response to chemical stimulus"],["GO%3A0036503","ERAD pathway"],["GO%3A1904612","response to 2,3,7,8-tetrachlorodibenzodioxine"],["GO%3A1904610","response to 3,3',4,4',5-pentachlorobiphenyl"],["GO%3A0036275","response to 5-fluorouracil"],["GO%3A0001101","response to acid chemical"]]},{"id":"GO:0009252","l":"peptidoglycan biosynthetic process","na":1,"nb":90,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["GO%3A0009252","peptidoglycan biosynthetic process"],["GO%3A0018104","peptidoglycan-protein cross-linking"],["NCBIfam%3ATIGR00492","alanine racemase"],["NCBIfam%3ANF007061","bifunctional glycosyl transferase/transpeptidase"],["NCBIfam%3ANF006986","bifunctional UDP-N-acetylglucosamine diphosphorylase/glucosamine-1-phosphate N-acetyltransferase GlmU"]]},{"id":"GO:0009306","l":"protein secretion","na":1,"nb":84,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["GO%3A0070162","adiponectin secretion"],["GO%3A0036394","amylase secretion"],["GO%3A0110010","basolateral protein secretion"],["GO%3A0038055","BMP secretion"],["GO%3A0030073","insulin secretion"],["GO%3A1990773","matrix metallopeptidase secretion"]]},{"id":"GO:0006796","l":"phosphate-containing compound metabolic process","na":1,"nb":72,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"]],"b":[["GO%3A0016311","dephosphorylation"],["GO%3A0006796","phosphate-containing compound metabolic process"],["GO%3A0016310","phosphorylation"],["NCBIfam%3ANF053626","ATP-dependent ribose-1-phosphate kinase"],["NCBIfam%3ANF002317","inorganic diphosphatase"],["NCBIfam%3ATIGR02966","phosphate regulon sensor histidine kinase PhoR"]]},{"id":"GO:0048519","l":"negative regulation of biological process","na":1,"nb":72,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["GO%3A1905869","negative regulation of 3'-UTR-mediated mRNA stabilization"],["GO%3A0045759","negative regulation of action potential"],["GO%3A0048519","negative regulation of biological process"],["GO%3A0030712","negative regulation of border follicle cell delamination"],["GO%3A1903780","negative regulation of cardiac conduction"],["GO%3A0048523","negative regulation of cellular process"]]},{"id":"GO:0006631","l":"fatty acid metabolic process","na":1,"nb":71,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["ComplexPortal%3ACPX-6169","Mitochondrial propionyl-CoA carboxylase complex"],["ComplexPortal%3ACPX-1038","PIP2-OAF1 transcription factor complex"],["ComplexPortal%3ACPX-25756","SREBP-SCAP transcription regulator complex"],["GO%3A0006633","fatty acid biosynthetic process"],["GO%3A0009062","fatty acid catabolic process"],["GO%3A0006631","fatty acid metabolic process"]]},{"id":"GO:0006955","l":"immune response","na":1,"nb":69,"a":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"]],"b":[["ComplexPortal%3ACPX-381","Interleukin-12 complex"],["ComplexPortal%3ACPX-387","Interleukin-12 complex"],["ComplexPortal%3ACPX-382","Interleukin-12-receptor ligand complex"],["ComplexPortal%3ACPX-3290","Interleukin-23 complex"],["ComplexPortal%3ACPX-389","Interleukin-23-receptor complex"],["ComplexPortal%3ACPX-383","Interleukin-23 receptor-ligand complex"]]},{"id":"GO:0006814","l":"sodium ion transport","na":1,"nb":67,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"]],"b":[["GO%3A0003096","renal sodium ion transport"],["GO%3A0035725","sodium ion transmembrane transport"],["GO%3A0006814","sodium ion transport"],["NCBIfam%3ANF050096","bicarbonate transporter BicA"],["NCBIfam%3ATIGR02711","cation/acetate symporter ActP"],["NCBIfam%3ANF047943","citrate/sodium symporter CitS"]]},{"id":"GO:0006950","l":"response to stress","na":1,"nb":67,"a":[["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"]],"b":[["GO%3A0033554","cellular response to stress"],["GO%3A0006952","defense response"],["GO%3A0033555","multicellular organismal response to stress"],["GO%3A0003299","muscle hypertrophy in response to stress"],["GO%3A0009271","phage shock"],["GO%3A0034059","response to anoxia"]]},{"id":"GO:0000271","l":"polysaccharide biosynthetic process","na":1,"nb":66,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"]],"b":[["ComplexPortal%3ACPX-417","Glucosidase II complex"],["GO%3A0051072","4,6-pyruvylated galactose residue biosynthetic process"],["GO%3A0042121","alginic acid biosynthetic process"],["GO%3A0035884","arabinan biosynthetic process"],["GO%3A0045227","capsule polysaccharide biosynthetic process"],["GO%3A0070592","cell wall polysaccharide biosynthetic process"]]},{"id":"CHEBI:18407","l":"hydrogen cyanide","na":1,"nb":63,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"]],"b":[["EC%3A1.14.17.4","aminocyclopropanecarboxylate oxidase"],["EC%3A1.14.19.52","camalexin synthase"],["EC%3A1.16.1.6","cyanocobalamin reductase"],["EC%3A1.4.99.5","glycine dehydrogenase (cyanide-forming)"],["EC%3A2.8.1.1","thiosulfate sulfurtransferase"],["EC%3A4.1.2.10","(R)-mandelonitrile lyase"]]},{"id":"GO:0044282","l":"small molecule catabolic process","na":1,"nb":63,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"]],"b":[["GO%3A0046164","alcohol catabolic process"],["GO%3A0046395","carboxylic acid catabolic process"],["GO%3A0019341","dibenzo-p-dioxin catabolic process"],["GO%3A0046294","formaldehyde catabolic process"],["GO%3A0046952","ketone body catabolic process"],["GO%3A0042182","ketone catabolic process"]]},{"id":"GO:0071973","l":"bacterial-type flagellum-dependent cell motility","na":1,"nb":60,"a":[["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"]],"b":[["ComplexPortal%3ACPX-4886","DNA-directed RNA polymerase holoenzyme complex, SigmaF variant"],["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["GO%3A0071973","bacterial-type flagellum-dependent cell motility"],["GO%3A0071978","bacterial-type flagellum-dependent swarming motility"]]},{"id":"CHEBI:17879","l":"4-hydroxybenzoate","na":1,"nb":57,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["EC%3A1.13.11.41","2,4'-dihydroxyacetophenone dioxygenase"],["EC%3A1.14.13.2","4-hydroxybenzoate 3-monooxygenase"],["EC%3A1.14.13.33","4-hydroxybenzoate 3-monooxygenase [NAD(P)H]"],["EC%3A1.14.13.64","4-hydroxybenzoate 1-hydroxylase"],["EC%3A1.14.14.92","benzoate 4-monooxygenase"],["EC%3A1.14.19.55","4-hydroxybenzoate brominase (decarboxylating)"]]},{"id":"CHEBI:15589","l":"(S)-malate(2-)","na":1,"nb":56,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["EC%3A1.1.1.299","malate dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.1.37","(S)-malate dehydrogenase (NAD(+), oxaloacetate-forming)"],["EC%3A1.1.1.38","malate dehydrogenase (oxaloacetate-decarboxylating)"],["EC%3A1.1.1.39","malate dehydrogenase (decarboxylating)"],["EC%3A1.1.1.40","malate dehydrogenase (oxaloacetate-decarboxylating) (NADP(+))"],["EC%3A1.1.1.82","malate dehydrogenase (NADP(+))"]]},{"id":"NCBITaxon:2","l":"Bacteria","na":56,"nb":1,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2","Bacteria orthologous groups (OrthoDB)"]]},{"id":"GO:0046394","l":"carboxylic acid biosynthetic process","na":1,"nb":55,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["GO%3A0042861","achromobactin biosynthetic process"],["GO%3A1901112","actinorhodin biosynthetic process"],["GO%3A0006523","alanine biosynthetic process"],["GO%3A0019578","aldaric acid biosynthetic process"],["GO%3A0042121","alginic acid biosynthetic process"],["GO%3A0009073","aromatic amino acid biosynthetic process"]]},{"id":"GO:0006094","l":"gluconeogenesis","na":1,"nb":52,"a":[["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"]],"b":[["ComplexPortal%3ACPX-1992","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-2039","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-2040","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-1994","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"],["ComplexPortal%3ACPX-2041","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"],["ComplexPortal%3ACPX-2042","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"]]},{"id":"GO:0009117","l":"nucleotide metabolic process","na":1,"nb":50,"a":[["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"]],"b":[["GO%3A0009394","2'-deoxyribonucleotide metabolic process"],["GO%3A0009187","cyclic nucleotide metabolic process"],["GO%3A0015959","diadenosine polyphosphate metabolic process"],["GO%3A0072387","flavin adenine dinucleotide metabolic process"],["GO%3A0046496","nicotinamide nucleotide metabolic process"],["GO%3A0009165","nucleotide biosynthetic process"]]},{"id":"GO:0044550","l":"secondary metabolite biosynthetic process","na":1,"nb":46,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["GO%3A1900581","(17Z)-protosta-17(20),24-dien-3beta-ol biosynthetic process"],["GO%3A0009821","alkaloid biosynthetic process"],["GO%3A1900587","arugosin biosynthetic process"],["GO%3A0036184","asperthecin biosynthetic process"],["GO%3A0062032","cichorine biosynthetic process"],["GO%3A1900799","cordyol C biosynthetic process"]]},{"id":"CHEBI:30212","l":"photon","na":1,"nb":45,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["EC%3A1.10.3.9","photosystem II"],["EC%3A1.13.12.13","Oplophorus-luciferin 2-monooxygenase"],["EC%3A1.13.12.18","dinoflagellate luciferase"],["EC%3A1.13.12.5","Renilla-type luciferase"],["EC%3A1.13.12.6","Cypridina-luciferin 2-monooxygenase"],["EC%3A1.13.12.7","firefly luciferase"]]},{"id":"CHEBI:506227","l":"N-acetyl-D-glucosamine","na":1,"nb":44,"a":[["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["EC%3A1.1.3.29","N-acylhexosamine oxidase"],["EC%3A2.3.1.3","glucosamine N-acetyltransferase"],["EC%3A2.4.1.211","1,3-beta-galactosyl-N-acetylhexosamine phosphorylase"],["EC%3A2.4.1.280","N,N'-diacetylchitobiose phosphorylase"],["EC%3A2.4.1.320","1,4-beta-mannosyl-N-acetylglucosamine phosphorylase"],["EC%3A2.4.1.90","N-acetyllactosamine synthase"]]},{"id":"GO:0042178","l":"xenobiotic catabolic process","na":1,"nb":42,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["GO%3A0046230","2-aminobenzenesulfonate catabolic process"],["GO%3A0046304","2-nitropropane catabolic process"],["GO%3A0019610","3-hydroxyphenylacetate catabolic process"],["GO%3A0019380","3-phenylpropionate catabolic process"],["GO%3A0046196","4-nitrophenol catabolic process"],["GO%3A0019639","6-hydroxycineole catabolic process"]]},{"id":"GO:0030198","l":"extracellular matrix organization","na":1,"nb":41,"a":[["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]],"b":[["ComplexPortal%3ACPX-1801","Integrin alpha2-beta1 complex"],["ComplexPortal%3ACPX-3115","Integrin alpha2-beta1 complex"],["ComplexPortal%3ACPX-4423","Matrilin-1 complex"],["ComplexPortal%3ACPX-4463","Matrilin-1 complex"],["ComplexPortal%3ACPX-4521","Matrilin-1 complex"],["ComplexPortal%3ACPX-4503","Matrilin-1 - Matrilin-3 complex"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima (strain ATCC 43589 / DSM 3109 / JCM 10099 / NBRC 100826 / MSB8)","na":1,"nb":39,"a":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]],"b":[["Pfam%3APF02829","3H domain"],["Pfam%3APF13175","AAA ATPase domain"],["Pfam%3APF01958","Aspartate dehydrogenase, C-terminal"],["Pfam%3APF05448","Acetyl xylan esterase (AXE1)"],["Pfam%3APF04509","CheC-like family"],["Pfam%3APF13690","Chemotaxis phosphatase CheX"]]},{"id":"GO:0006954","l":"inflammatory response","na":1,"nb":38,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["ComplexPortal%3ACPX-2862","Caspase-7 complex"],["ComplexPortal%3ACPX-3947","Caspase-7 complex"],["ComplexPortal%3ACPX-363","Heparanase complex"],["ComplexPortal%3ACPX-10322","IL33 receptor-ligand complex"],["ComplexPortal%3ACPX-9301","Interleukin-17A complex"],["ComplexPortal%3ACPX-10317","Interleukin-26 complex"]]},{"id":"GO:0007267","l":"cell-cell signaling","na":1,"nb":38,"a":[["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["ComplexPortal%3ACPX-10317","Interleukin-26 complex"],["GO%3A0035425","autocrine signaling"],["GO%3A0061939","c-di-GMP signaling"],["GO%3A0007267","cell-cell signaling"],["GO%3A0045168","cell-cell signaling involved in cell fate commitment"],["GO%3A0060764","cell-cell signaling involved in mammary gland development"]]},{"id":"GO:0008283","l":"cell population proliferation","na":1,"nb":37,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["ComplexPortal%3ACPX-2799","CRL4-DCAF4 E3 ubiquitin ligase complex, CUL4A variant"],["ComplexPortal%3ACPX-2859","CRL4-DCAF4 E3 ubiquitin ligase complex, CUL4B variant"],["GO%3A0008283","cell population proliferation"],["GO%3A0071838","cell proliferation in bone marrow"],["GO%3A0035736","cell proliferation involved in compound eye morphogenesis"],["GO%3A0060722","cell proliferation involved in embryonic placenta development"]]},{"id":"GO:0009231","l":"riboflavin biosynthetic process","na":1,"nb":36,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["GO%3A0009231","riboflavin biosynthetic process"],["NCBIfam%3ANF000814","6,7-dimethyl-8-ribityllumazine synthase"],["NCBIfam%3ANF009084","6,7-dimethyl-8-ribityllumazine synthase"],["NCBIfam%3ANF013081","6,7-dimethyl-8-ribityllumazine synthase"],["NCBIfam%3ATIGR00114","6,7-dimethyl-8-ribityllumazine synthase"],["NCBIfam%3ANF006803","bifunctional 3,4-dihydroxy-2-butanone-4-phosphate synthase/GTP cyclohydrolase II"]]},{"id":"GO:1900376","l":"regulation of secondary metabolite biosynthetic process","na":1,"nb":36,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"]],"b":[["GO%3A1900377","negative regulation of secondary metabolite biosynthetic process"],["GO%3A1900378","positive regulation of secondary metabolite biosynthetic process"],["GO%3A1900177","regulation of aflatoxin biosynthetic process"],["GO%3A1900626","regulation of arugosin biosynthetic process"],["GO%3A1900379","regulation of asperthecin biosynthetic process"],["GO%3A1900861","regulation of cordyol C biosynthetic process"]]},{"id":"NCBITaxon:1898203","l":"Lachnospiraceae bacterium","na":1,"nb":35,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]],"b":[["TED%3AAF-A0A2G3Q064-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G3Q064-F1-model_v4_TED01"],["TED%3AAF-A0A316PVU3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A316PVU3-F1-model_v4_TED02"],["TED%3AAF-A0A349YHB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349YHB4-F1-model_v4_TED01"],["TED%3AAF-A0A349ZVK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349ZVK2-F1-model_v4_TED01"],["TED%3AAF-A0A354ID29-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A354ID29-F1-model_v4_TED04"],["TED%3AAF-A0A355NJL5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A355NJL5-F1-model_v4_TED02"]]},{"id":"CHEBI:17855","l":"triglyceride","na":1,"nb":34,"a":[["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["EC%3A2.3.1.158","phospholipid:diacylglycerol acyltransferase"],["EC%3A2.3.1.77","triacylglycerol--sterol O-acyltransferase"],["EC%3A3.1.1.3","triacylglycerol lipase"],["EC%3A3.1.1.34","lipoprotein lipase"],["EC%3A3.1.1.79","hormone-sensitive lipase"],["RHEA%3A77987","9-hydroxy-octadecanoate + a triacylglycerol = 9-(acyloxy)-octadecanoate + a 1,3-diacylglycerol"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":1,"nb":32,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["Pfam%3APF25848","Rodlin protein"],["Pfam%3APF13420","Acetyltransferase (GNAT) domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF26381","BREX System ATPase PglY protein 5th domain"],["Pfam%3APF26382","BREX System ATPase PglY protein 6th domain"]]},{"id":"GO:0044780","l":"bacterial-type flagellum assembly","na":1,"nb":30,"a":[["SynCom_MetG2_Rhizobacteria_Sugarcane_Stress_Resilience.html","SynCom MetG2 Rhizobacteria Sugarcane Stress Resilience"]],"b":[["ComplexPortal%3ACPX-4886","DNA-directed RNA polymerase holoenzyme complex, SigmaF variant"],["GO%3A0044780","bacterial-type flagellum assembly"],["NCBIfam%3ANF007836","flagella biosynthesis regulatory protein FliT"],["NCBIfam%3ANF006281","flagella length regulator FlaG"],["NCBIfam%3ANF047373","flagellar assembly lytic transglycosylase"],["NCBIfam%3ATIGR02541","flagellar assembly peptidoglycan hydrolase FlgJ"]]},{"id":"GO:0046718","l":"symbiont entry into host cell","na":1,"nb":30,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["ComplexPortal%3ACPX-5768","MERS-CoV Spike - human DPP4 receptor complex"],["ComplexPortal%3ACPX-5769","MERS-CoV Spike - human DPP4 receptor complex"],["ComplexPortal%3ACPX-5683","SARS-CoV-2 Spike - human ACE2 receptor complex"],["ComplexPortal%3ACPX-6761","SARS-CoV-2 Spike - human CLEC4M lectin complex"],["ComplexPortal%3ACPX-5695","SARS-CoV Spike - human ACE2 receptor complex"],["ComplexPortal%3ACPX-5696","SARS-CoV Spike - human CLEC4M lectin complex"]]},{"id":"GO:0006526","l":"L-arginine biosynthetic process","na":1,"nb":28,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["ComplexPortal%3ACPX-579","Carbamoyl-phosphate synthase arginine-specific"],["ComplexPortal%3ACPX-1937","Carbamoyl phosphate synthetase complex"],["ComplexPortal%3ACPX-1151","N-acetylglutamate synthase NAGS/NAGK complex"],["GO%3A0006526","L-arginine biosynthetic process"],["NCBIfam%3ANF003474","acetylornithine deacetylase"],["NCBIfam%3ATIGR01892","acetylornithine deacetylase"]]},{"id":"CHEBI:16235","l":"guanine","na":1,"nb":27,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["EC%3A2.4.2.1","purine-nucleoside phosphorylase"],["EC%3A2.4.2.15","guanosine phosphorylase"],["EC%3A2.4.2.29","tRNA-guanosine(34) preQ1 transglycosylase"],["EC%3A2.4.2.48","tRNA-guanine(15) transglycosylase"],["EC%3A2.4.2.64","tRNA-guanosine(34) queuine transglycosylase"],["EC%3A2.4.2.8","hypoxanthine phosphoribosyltransferase"]]},{"id":"CHEBI:17234","l":"glucose","na":26,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:16007","l":"methanethiol","na":1,"nb":25,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["EC%3A1.14.13.131","dissimilatory dimethyl-sulfide monooxygenase"],["EC%3A1.8.1.21","dissimilatory dimethyldisulfide reductase"],["EC%3A1.8.3.4","methanethiol oxidase"],["EC%3A2.1.1.251","methylated-thiol--coenzyme M methyltransferase"],["EC%3A2.1.1.334","methanethiol S-methyltransferase"],["EC%3A2.5.1.49","O-acetylhomoserine aminocarboxypropyltransferase"]]},{"id":"CHEBI:18346","l":"vanillin","na":1,"nb":25,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"]],"b":[["EC%3A1.1.3.38","vanillyl-alcohol oxidase"],["EC%3A1.11.1.16","versatile peroxidase"],["EC%3A1.13.11.43","lignostilbene alphabeta-dioxygenase"],["EC%3A1.13.11.88","isoeugenol monooxygenase"],["EC%3A1.13.11.94","4-vinylguaiacol dioxygenase"],["EC%3A1.2.1.67","vanillin dehydrogenase"]]},{"id":"NCBITaxon:226186","l":"Bacteroides thetaiotaomicron (strain ATCC 29148 / DSM 2079 / JCM 5827 / CCUG 10774 / NCTC 10582 / VPI-5482 / E50)","na":1,"nb":25,"a":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"]],"b":[["Pfam%3APF06439","3-keto-alpha-glucoside-1,2-lyase-like domain"],["Pfam%3APF13444","Acetyltransferase (GNAT) domain"],["Pfam%3APF19576","Acyltransferase"],["Pfam%3APF23764","GLAA-B beta-barrel domain II"],["Pfam%3APF13715","CarboxypepD_reg-like domain"],["Pfam%3APF26120","SusF, first starch specific CBM"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":1,"nb":25,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["Pfam%3APF13372","Alginate export"],["Pfam%3APF25965","ALG44 beta-barrel domain"],["Pfam%3APF25964","ALG44, barrel-sandwich hybrid domain"],["Pfam%3APF16844","Dinitrogenase iron-molybdenum cofactor, N-terminal"],["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"]]},{"id":"GO:0002221","l":"pattern recognition receptor signaling pathway","na":1,"nb":24,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["ComplexPortal%3ACPX-4242","Caspase-1 complex"],["ComplexPortal%3ACPX-952","Caspase-1 complex"],["ComplexPortal%3ACPX-4144","NLRC4 inflammasome"],["ComplexPortal%3ACPX-4082","NLRP1 inflammasome"],["ComplexPortal%3ACPX-4947","NLRP1 inflammasome, variant 1"],["ComplexPortal%3ACPX-4948","NLRP1 inflammasome, variant 2"]]},{"id":"GO:0018958","l":"phenol-containing compound metabolic process","na":1,"nb":24,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["GO%3A0031147","1-(3,5-dichloro-2,6-dihydroxy-4-methoxyphenyl)hexan-1-one metabolic process"],["GO%3A0018921","3-hydroxybenzyl alcohol metabolic process"],["GO%3A1901022","4-hydroxyphenylacetate metabolic process"],["GO%3A0018960","4-nitrophenol metabolic process"],["GO%3A0042215","anaerobic phenol-containing compound metabolic process"],["GO%3A0036182","asperthecin metabolic process"]]},{"id":"GO:0006221","l":"pyrimidine nucleotide biosynthetic process","na":1,"nb":22,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["ComplexPortal%3ACPX-579","Carbamoyl-phosphate synthase arginine-specific"],["GO%3A0009221","pyrimidine deoxyribonucleotide biosynthetic process"],["GO%3A0006221","pyrimidine nucleotide biosynthetic process"],["GO%3A0032262","pyrimidine nucleotide salvage"],["GO%3A0009220","pyrimidine ribonucleotide biosynthetic process"],["NCBIfam%3ANF018158","CTP synthase N-terminus"]]},{"id":"CHEBI:17437","l":"dimethyl sulfide","na":1,"nb":21,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["EC%3A1.14.13.131","dissimilatory dimethyl-sulfide monooxygenase"],["EC%3A1.14.13.245","assimilatory dimethylsulfide S-monooxygenase"],["EC%3A1.8.2.4","dimethyl sulfide:cytochrome c2 reductase"],["EC%3A1.8.5.3","respiratory dimethylsulfoxide reductase"],["EC%3A2.1.1.19","trimethylsulfonium--tetrahydrofolate N-methyltransferase"],["EC%3A2.1.1.334","methanethiol S-methyltransferase"]]},{"id":"GO:0006817","l":"phosphate ion transport","na":1,"nb":21,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["GO%3A0035435","phosphate ion transmembrane transport"],["GO%3A0006817","phosphate ion transport"],["GO%3A0044341","sodium-dependent phosphate transport"],["NCBIfam%3ANF033774","inorganic phosphate transporter PitA"],["NCBIfam%3ATIGR00972","phosphate ABC transporter ATP-binding protein PstB"],["NCBIfam%3ANF023916","phosphate ABC transporter permease family protein"]]},{"id":"CHEBI:16411","l":"indole-3-acetic acid","na":20,"nb":1,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_IAC","IAC-binding site"]]},{"id":"CHEBI:2181","l":"L-fucopyranose","na":1,"nb":20,"a":[["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"]],"b":[["EC%3A1.1.1.122","D-threo-aldose 1-dehydrogenase"],["EC%3A3.2.1.51","alpha-L-fucosidase"],["EC%3A3.2.1.63","1,2-alpha-L-fucosidase"],["EC%3A5.3.1.25","L-fucose isomerase"],["RHEA%3A49308","a neolactoside IV(2)-alpha-Fuc-nLc4Cer(d18:0) + H2O = a neolactoside nLc4Cer(d18:0) + L-fucose"],["RHEA%3A48224","a neolactoside IV(2)-alpha-Fuc-nLc4Cer(d18:1(4E)) + H2O = a neolactoside nLc4Cer(d18:1(4E)) + L-fucose"]]},{"id":"GO:0052031","l":"symbiont-mediated perturbation of host defense response","na":1,"nb":20,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["GO%3A0140415","effector-mediated perturbation of host defenses by symbiont"],["GO%3A0140424","symbiont-mediated activation of blood coagulation, intrinsic pathway"],["GO%3A0039587","symbiont-mediated-mediated suppression of host tetherin activity"],["GO%3A0052084","symbiont-mediated modulation of host ethylene-mediated defense response"],["GO%3A0052031","symbiont-mediated perturbation of host defense response"],["GO%3A0052553","symbiont-mediated perturbation of host immune response"]]},{"id":"CHEBI:18022","l":"thiocyanate","na":1,"nb":19,"a":[["Thiocyanate_Afipia_Thiobacillus_Bioreactor_Community.html","Thiocyanate-Degrading Afipia and Thiobacillus Bioreactor Community"]],"b":[["EC%3A1.8.2.7","thiocyanate desulfurase"],["EC%3A2.1.1.n4","thiocyanate methyltransferase"],["EC%3A2.8.1.1","thiosulfate sulfurtransferase"],["EC%3A3.5.5.8","thiocyanate hydrolase"],["RHEA%3A63880","thiocyanate + 2 Fe(III)-[cytochrome c] + H2O = cyanate + sulfur + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A21464","thiocyanate + H2O + 2 H(+) = carbonyl sulfide + NH4(+)"]]},{"id":"GO:0019319","l":"hexose biosynthetic process","na":1,"nb":19,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["GO%3A0019315","D-allose biosynthetic process"],["GO%3A0046370","fructose biosynthetic process"],["GO%3A0042353","fucose biosynthetic process"],["GO%3A0046369","galactose biosynthetic process"],["GO%3A0006094","gluconeogenesis"],["GO%3A0019319","hexose biosynthetic process"]]},{"id":"NCBITaxon:2697049","l":"Severe acute respiratory syndrome coronavirus 2","na":1,"nb":18,"a":[["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"]],"b":[["IDPO%3A0000002","disorder"],["IDPO%3A0000033","flexible linker"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000041","glycosylation display site"],["IDPO%3A0000048","limited proteolysis display site"],["IDPO%3A0000037","molecular recognition display site"]]},{"id":"CHEBI:16881","l":"1H-indole","na":1,"nb":17,"a":[["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"]],"b":[["EC%3A1.13.11.17","indole 2,3-dioxygenase"],["EC%3A1.14.14.153","indole-2-monooxygenase"],["EC%3A4.1.1.92","indole-3-carboxylate decarboxylase"],["EC%3A4.1.2.8","indole-3-glycerol-phosphate lyase"],["EC%3A4.1.99.1","tryptophanase"],["EC%3A4.2.1.122","tryptophan synthase (indole-salvaging)"]]},{"id":"CHEBI:17120","l":"hexanoate","na":1,"nb":17,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"]],"b":[["EC%3A3.5.1.39","alkylamidase"],["RHEA%3A53496","1-hexanoyl-2-acyl-sn-glycero-3-phosphocholine + H2O = hexanoate + a 2-acyl-sn-glycero-3-phosphocholine + H(+)"],["RHEA%3A54464","1-octadecanoyl-2-hexanoyl-sn-glycero-3-phosphocholine + H2O = hexanoate + 1-octadecanoyl-sn-glycero-3-phosphocholine + H(+)"],["RHEA%3A47352","a hexanoate ester + H2O = an aliphatic alcohol + hexanoate + H(+)"],["RHEA%3A79351","hexanal + 2 Fe(III)-[cytochrome c] + H2O = hexanoate + 2 Fe(II)-[cytochrome c] + 3 H(+)"],["RHEA%3A67276","hexanal + NAD(+) + H2O = hexanoate + NADH + 2 H(+)"]]},{"id":"GO:0015940","l":"pantothenate biosynthetic process","na":1,"nb":17,"a":[["Variovorax_Cryptococcus_Vitamin_Mutualism_Microcosm.html","Variovorax-Cryptococcus Vitamin Cross-Feeding Microcosm"]],"b":[["GO%3A0015940","pantothenate biosynthetic process"],["NCBIfam%3ANF005087","2-dehydropantoate 2-reductase"],["NCBIfam%3ANF005092","2-dehydropantoate 2-reductase"],["NCBIfam%3ANF005093","2-dehydropantoate 2-reductase"],["NCBIfam%3ANF005094","2-dehydropantoate 2-reductase"],["NCBIfam%3ANF006083","2-dehydropantoate 2-reductase"]]},{"id":"GO:0006090","l":"pyruvate metabolic process","na":1,"nb":16,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"]],"b":[["GO%3A0061678","Entner-Doudoroff pathway"],["GO%3A0061718","glucose catabolic process to pyruvate"],["GO%3A0006096","glycolytic process"],["GO%3A0033508","L-glutamate fermentation"],["GO%3A0019617","protocatechuate catabolic process, meta-cleavage"],["GO%3A0042866","pyruvate biosynthetic process"]]},{"id":"GO:0006527","l":"L-arginine catabolic process","na":1,"nb":16,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["GO%3A0006527","L-arginine catabolic process"],["NCBIfam%3ATIGR01273","arginine decarboxylase"],["NCBIfam%3ANF002381","arginine deiminase"],["NCBIfam%3ATIGR01078","arginine deiminase"],["NCBIfam%3ANF007770","arginine N-succinyltransferase"],["NCBIfam%3ATIGR03244","arginine N-succinyltransferase"]]},{"id":"NCBITaxon:3847","l":"Glycine max","na":1,"nb":16,"a":[["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["Pfam%3APF02095","Extensin-like protein"],["Pfam%3APF00477","Small hydrophilic plant seed protein"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF08027","Albumin I chain b"],["Pfam%3APF10539","Development and cell death domain"],["Pfam%3APF03386","Early nodulin 93 ENOD93 protein"]]},{"id":"GO:0044010","l":"single-species biofilm formation","na":1,"nb":15,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"]],"b":[["ComplexPortal%3ACPX-4063","ChpBS toxin-antitoxin complex"],["ComplexPortal%3ACPX-4743","Curli secretion complex"],["ComplexPortal%3ACPX-1079","DinJ-YafQ toxin-antitoxin complex"],["ComplexPortal%3ACPX-3296","Fucose-binding lectin II complex"],["ComplexPortal%3ACPX-1086","MazEF toxin-antitoxin complex"],["ComplexPortal%3ACPX-1084","MqsRA toxin-antitoxin complex"]]},{"id":"GO:0051453","l":"regulation of intracellular pH","na":1,"nb":15,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["ComplexPortal%3ACPX-3090","Glutathione-regulated potassium-efflux system KefB-KefG complex"],["ComplexPortal%3ACPX-2543","Glutathione-regulated potassium-efflux system KefC-KefF complex"],["ComplexPortal%3ACPX-26449","Sodium/proton exchanger complex, NHE1-CHP1 variant"],["ComplexPortal%3ACPX-26462","Sodium/proton exchanger complex, NHE1-CHP2 variant"],["ComplexPortal%3ACPX-26464","Sodium/proton exchanger complex, NHE1-CHP3 variant"],["ComplexPortal%3ACPX-26469","Sodium/proton exchanger complex, NHE2-CHP1 variant"]]},{"id":"NCBITaxon:2157","l":"Archaea","na":15,"nb":1,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2157","Archaea orthologous groups (OrthoDB)"]]},{"id":"GO:0009607","l":"response to biotic stimulus","na":1,"nb":14,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["GO%3A0071216","cellular response to biotic stimulus"],["GO%3A0009595","detection of biotic stimulus"],["GO%3A0036180","filamentous growth of a population of unicellular organisms in response to biotic stimulus"],["GO%3A0009607","response to biotic stimulus"],["GO%3A0043207","response to external biotic stimulus"],["GO%3A1990840","response to lectin"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":1,"nb":14,"a":[["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"]],"b":[["Pfam%3APF03703","Bacterial PH domain"],["Pfam%3APF01322","Cytochrome C'"],["Pfam%3APF03139","Vanadium/alternative nitrogenase delta subunit"],["Pfam%3APF09527","Putative F0F1-ATPase subunit Ca2+/Mg2+ transporter"],["Pfam%3APF03270","Protein of unknown function, DUF269"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":1,"nb":14,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF02224","Cytidylate kinase"],["Pfam%3APF03319","Ethanolamine utilisation protein EutN/carboxysome"],["Pfam%3APF22019","alpha-1,4-glucan branching enzyme GlgB, N-terminal domain"],["Pfam%3APF21714","Circadian clock protein KaiA, N-terminal domain"],["Pfam%3APF07688","KaiA C-terminal domain"]]},{"id":"GO:0019076","l":"viral release from host cell","na":1,"nb":13,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0046753","non-lytic viral release"],["GO%3A0044659","viral release from host cell by cytolysis"],["GO%3A0019076","viral release from host cell"],["Reactome%3AR-HSA-168298","Release"],["NCBIfam%3ANF037577","Rz1-like spanin outer membrane subunit"],["NCBIfam%3ANF012767","Vpu"]]},{"id":"GO:2000145","l":"regulation of cell motility","na":1,"nb":13,"a":[["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["GO%3A2000146","negative regulation of cell motility"],["GO%3A2000147","positive regulation of cell motility"],["GO%3A1905416","regulation of amoeboid sperm motility"],["GO%3A1902021","regulation of bacterial-type flagellum-dependent cell motility"],["GO%3A0030334","regulation of cell migration"],["GO%3A2000145","regulation of cell motility"]]},{"id":"NCBITaxon:165179","l":"Segatella copri","na":1,"nb":13,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["TED%3AAF-A0A3R6DW71-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3R6DW71-F1-model_v4_TED02"],["TED%3AAF-A0A3R6EGS2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R6EGS2-F1-model_v4_TED01"],["TED%3AAF-A0A5Q5FTM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Q5FTM4-F1-model_v4_TED01"],["TED%3AAF-A0A3R5WNG5-F1-model_v4_TED02","TED novel fold AF-A0A3R5WNG5-F1-model_v4_TED02"],["TED%3AAF-A0A3R5YKW9-F1-model_v4_TED01","TED novel fold AF-A0A3R5YKW9-F1-model_v4_TED01"],["TED%3AAF-A0A3R6FRY2-F1-model_v4_TED01","TED novel fold AF-A0A3R6FRY2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:239","l":"Flavobacterium sp.","na":1,"nb":13,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["Pfam%3APF21331","Isoamylase, C-terminal"],["TED%3AAF-A0A2E4PC55-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E4PC55-F1-model_v4_TED02"],["TED%3AAF-A0A2E4PGC5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4PGC5-F1-model_v4_TED01"],["TED%3AAF-A0A2E4PMB7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E4PMB7-F1-model_v4_TED02"],["TED%3AAF-A0A355BEV2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A355BEV2-F1-model_v4_TED02"],["TED%3AAF-A0A519QLA6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A519QLA6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:267377","l":"Methanococcus maripaludis (strain DSM 14266 / JCM 13030 / NBRC 101832 / S2 / LL)","na":1,"nb":13,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"]],"b":[["Pfam%3APF09171","N-glycosylase/DNA lyase"],["Pfam%3APF06847","Archaeal Peptidase A24 C-terminus Type II"],["Pfam%3APF06819","Archaeal Peptidase A24 C-terminal Domain"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF26558","3-dehydroquinate synthase II C-terminal domain"],["Pfam%3APF01959","3-dehydroquinate synthase II N-terminal domain"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":13,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["Pfam%3APF07832","Cfr10I/Bse634I restriction endonuclease"],["Pfam%3APF22348","Colicin-A N-terminal domain"],["Pfam%3APF01024","Colicin pore forming domain"],["Pfam%3APF18427","DD-reactivating factor swiveling domain"],["Pfam%3APF02286","Dehydratase large subunit"],["Pfam%3APF02288","Dehydratase medium subunit"]]},{"id":"CHEBI:16136","l":"hydrogen sulfide","na":12,"nb":1,"a":[["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["MCSA%3A398","sulfite reductase (NADPH)"]]},{"id":"CHEBI:16188","l":"octan-1-ol","na":1,"nb":12,"a":[["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["EC%3A1.1.1.73","octanol dehydrogenase"],["EC%3A1.14.15.3","alkane 1-monooxygenase"],["RHEA%3A79323","octan-1-ol + 2 Fe(III)-[cytochrome c] = octanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A64628","octan-1-ol + acetyl-CoA = octyl acetate + CoA"],["RHEA%3A64852","octan-1-ol + benzoyl-CoA = octyl benzoate + CoA"],["RHEA%3A44064","octan-1-ol + hexadecanoyl-CoA = octyl hexadecanoate + CoA"]]},{"id":"GO:0043419","l":"urea catabolic process","na":1,"nb":12,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"]],"b":[["ComplexPortal%3ACPX-1296","Urease activation complex"],["GO%3A0043419","urea catabolic process"],["NCBIfam%3ANF010592","urease subunit alpha"],["NCBIfam%3ANF009682","urease subunit beta"],["NCBIfam%3ANF010591","urease subunit beta"],["NCBIfam%3ANF009712","urease subunit gamma"]]},{"id":"GO:0061687","l":"detoxification of inorganic compound","na":1,"nb":12,"a":[["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["GO%3A0140114","cellular detoxification of fluoride"],["GO%3A0140961","cellular detoxification of metal ion"],["GO%3A0140982","detoxification of aluminum ion"],["GO%3A0071585","detoxification of cadmium ion"],["GO%3A0010299","detoxification of cobalt ion"],["GO%3A0010273","detoxification of copper ion"]]},{"id":"CHEBI:16918","l":"gallate","na":1,"nb":11,"a":[["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["EC%3A1.13.11.57","gallate dioxygenase"],["EC%3A2.1.1.341","vanillate/3-O-methylgallate O-demethylase"],["EC%3A2.4.1.136","gallate 1-beta-glucosyltransferase"],["EC%3A3.1.1.20","tannase"],["EC%3A4.1.1.59","gallate decarboxylase"],["RHEA%3A12749","3,4,5-trihydroxybenzoate + H(+) = 1,2,3-trihydroxybenzene + CO2"]]},{"id":"CHEBI:17847","l":"p-cresol","na":1,"nb":11,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["EC%3A1.14.13.236","toluene 4-monooxygenase"],["EC%3A1.17.9.1","4-methylphenol dehydrogenase (hydroxylating)"],["EC%3A4.1.1.83","4-hydroxyphenylacetate decarboxylase"],["EC%3A4.1.99.19","2-iminoacetate synthase"],["RHEA%3A22732","4-hydroxyphenylacetate + H(+) = 4-methylphenol + CO2"],["RHEA%3A56976","4-methylphenol + 2 oxidized [azurin] + H2O = 4-hydroxybenzyl alcohol + 2 reduced [azurin] + 2 H(+)"]]},{"id":"CHEBI:18212","l":"selenite(2-)","na":1,"nb":11,"a":[["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"]],"b":[["EC%3A1.97.1.14","selenate reductase (quinol)"],["EC%3A1.97.1.9","selenate reductase (cytochrome c)"],["RHEA%3A80603","selenite + 2 Fe(III)-[cytochrome c] + H2O = 2 Fe(II)-[cytochrome] + selenate + 2 H(+)"],["RHEA%3A34903","selenite + 4 glutathione + 2 H(+) = selenodiglutathione + glutathione disulfide + 3 H2O"],["RHEA%3A14029","selenite + A + H2O = selenate + AH2"],["RHEA%3A51636","selenite + a quinone + H2O = selenate + a quinol"]]},{"id":"CHEBI:28009","l":"N-acetyl-beta-D-glucosamine","na":1,"nb":11,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]],"b":[["RHEA%3A85211","alpha-di-N-acetylchitobiose + H2O = N-acetyl-beta-D-glucosamine + N-acetyl-alpha-D-glucosamine"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"],["TCDB%3A4.A.6","The PTS Mannose-Fructose-Sorbose (Man) Family"]]},{"id":"CHEBI:28685","l":"molybdenum atom","na":1,"nb":11,"a":[["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_MO","MO-binding site"],["proteintraitsmech%3AMETALPDB_MO_DINUCLEAR","dinuclear molybdenum site"],["proteintraitsmech%3AMETALPDB_MO_HEPTANUCLEAR","heptanuclear molybdenum site"],["proteintraitsmech%3AMETALPDB_MO_HEXANUCLEAR","hexanuclear molybdenum site"],["proteintraitsmech%3AMETALPDB_MO_MONONUCLEAR","mononuclear molybdenum site"],["proteintraitsmech%3AMETALPDB_MO_MULTINUCLEAR","multinuclear molybdenum site"]]},{"id":"CHEBI:49807","l":"lead(2+)","na":1,"nb":11,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_49807","requires lead(2+)"],["RHEA%3A52580","Pb(2+)(in) + ATP + H2O = Pb(2+)(out) + ADP + phosphate + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.4","The Cation Diffusion Facilitator (CDF) Family"],["TCDB%3A2.A.11","The Citrate-Mg2+:H+ (CitM) Citrate-Ca2+:H+ (CitH) Symporter (CitMHS) Family"],["TCDB%3A1.A.87","The Mechanosensitive Calcium Channel (MCA) Family"]]},{"id":"CHEBI:15075","l":"selenate","na":1,"nb":10,"a":[["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"]],"b":[["EC%3A1.97.1.14","selenate reductase (quinol)"],["EC%3A1.97.1.9","selenate reductase (cytochrome c)"],["RHEA%3A34887","selenate(in) = selenate(out)"],["RHEA%3A72079","selenate(out) + 3 Na(+)(out) = selenate(in) + 3 Na(+)(in)"],["RHEA%3A34883","selenate(out) + ATP + H2O = selenate(in) + ADP + phosphate + H(+)"],["RHEA%3A80603","selenite + 2 Fe(III)-[cytochrome c] + H2O = 2 Fe(II)-[cytochrome] + selenate + 2 H(+)"]]},{"id":"CHEBI:15688","l":"acetoin","na":1,"nb":10,"a":[["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"]],"b":[["EC%3A2.2.1.4","acetoin--ribose-5-phosphate transaldolase"],["EC%3A2.3.1.190","acetoin dehydrogenase system"],["RHEA%3A54364","2 acetaldehyde = acetoin"],["RHEA%3A76879","3-aminobutan-2-ol + NAD(+) + H2O = acetoin + NH4(+) + NADH + H(+)"],["RHEA%3A76931","3-aminobutan-2-ol + NADP(+) + H2O = acetoin + NH4(+) + NADPH + H(+)"],["RHEA%3A54368","acetaldehyde + pyruvate + H(+) = acetoin + CO2"]]},{"id":"CHEBI:16581","l":"pregnenolone","na":1,"nb":10,"a":[["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"]],"b":[["EC%3A1.14.14.19","steroid 17alpha-monooxygenase"],["EC%3A1.14.15.6","cholesterol monooxygenase (side-chain-cleaving)"],["RHEA%3A34343","(20R,22R)-20,22-dihydroxycholesterol + 2 reduced [adrenodoxin] + O2 + 2 H(+) = 4-methylpentanal + pregnenolone + 2 oxidized [adrenodoxin] + 2 H2O"],["RHEA%3A35739","6 reduced [adrenodoxin] + cholesterol + 3 O2 + 6 H(+) = 4-methylpentanal + pregnenolone + 6 oxidized [adrenodoxin] + 4 H2O"],["RHEA%3A52356","pregnenolone + 3'-phosphoadenylyl sulfate = pregnenolone sulfate + adenosine 3',5'-bisphosphate + H(+)"],["RHEA%3A43924","pregnenolone + NAD(+) = pregn-5-ene-3,20-dione + NADH + H(+)"]]},{"id":"CHEBI:16738","l":"2,4-dichlorophenol","na":1,"nb":10,"a":[["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"]],"b":[["EC%3A1.14.11.43","(S)-dichlorprop dioxygenase (2-oxoglutarate)"],["EC%3A1.14.11.44","(R)-dichlorprop dioxygenase (2-oxoglutarate)"],["EC%3A1.14.13.20","2,4-dichlorophenol 6-monooxygenase"],["RHEA%3A86719","2,4-dichlorophenol + AH2 = 4-chlorophenol + chloride + A + H(+)"],["RHEA%3A80611","2,4-dichlorophenol + NADH + O2 + H(+) = 3,5-dichlorocatechol + NAD(+) + H2O"],["RHEA%3A20920","2,4-dichlorophenol + NADPH + O2 + H(+) = 3,5-dichlorocatechol + NADP(+) + H2O"]]},{"id":"CHEBI:17051","l":"fluoride","na":1,"nb":10,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["EC%3A2.5.1.63","adenosyl-fluoride synthase"],["EC%3A3.8.1.3","haloacetate dehalogenase"],["EC%3A3.8.2.2","diisopropyl-fluorophosphatase"],["RHEA%3A24100","diisopropyl fluorophosphate + H2O = diisopropyl phosphate + fluoride + 2 H(+)"],["RHEA%3A76159","fluoride(in) = fluoride(out)"],["RHEA%3A16661","fluoride + S-adenosyl-L-methionine = 5'-deoxy-5'-fluoroadenosine + L-methionine"]]},{"id":"CHEBI:17698","l":"chloramphenicol","na":1,"nb":10,"a":[["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"]],"b":[["EC%3A1.14.99.67","alpha-N-dichloroacetyl-p-aminophenylserinol N-oxygenase"],["EC%3A2.3.1.28","chloramphenicol O-acetyltransferase"],["RHEA%3A58884","alpha-N-dichloroacetyl-p-aminophenylserinol + AH2 + 2 O2 = chloramphenicol + A + 2 H2O"],["RHEA%3A18421","chloramphenicol + acetyl-CoA = chloramphenicol 3-acetate + CoA"],["RHEA%3A35287","chloramphenicol(in) + ATP + H2O = chloramphenicol(out) + ADP + phosphate + H(+)"],["RHEA%3A35059","chloramphenicol(in) + H(+)(out) = chloramphenicol(out) + H(+)(in)"]]},{"id":"GO:0006548","l":"L-histidine catabolic process","na":1,"nb":10,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["GO%3A0006548","L-histidine catabolic process"],["Reactome%3AR-HSA-70921","Histidine catabolism"],["proteintraitsmech%3ASEED_SUBSYSTEM_Histidine_Degradation","Histidine Degradation"],["NCBIfam%3ATIGR01227","formimidoylglutamase"],["NCBIfam%3ATIGR02022","formimidoylglutamate deiminase"],["NCBIfam%3ATIGR02024","glutamate formimidoyltransferase"]]},{"id":"GO:0070482","l":"response to oxygen levels","na":1,"nb":10,"a":[["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"]],"b":[["ComplexPortal%3ACPX-3982","dosPC diguanylate cyclase/c-di-GMP phosphodiesterase complex"],["ComplexPortal%3ACPX-1882","HAP1 transcriptional repressor complex, SSA1 variant"],["ComplexPortal%3ACPX-1883","HAP1 transcriptional repressor complex, SSA2 variant"],["ComplexPortal%3ACPX-1276","HMC complex"],["GO%3A0071453","cellular response to oxygen levels"],["GO%3A0003032","detection of oxygen"]]},{"id":"GO:2000146","l":"negative regulation of cell motility","na":1,"nb":10,"a":[["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["GO%3A1905417","negative regulation of amoeboid sperm motility"],["GO%3A1902201","negative regulation of bacterial-type flagellum-dependent cell motility"],["GO%3A0030336","negative regulation of cell migration"],["GO%3A2000146","negative regulation of cell motility"],["GO%3A1902020","negative regulation of cilium-dependent cell motility"],["PANTHER%3APTHR28616","COILED-COIL DOMAIN-CONTAINING PROTEIN 125"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":1,"nb":10,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["TED%3AAF-A0A5T2E4X7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5T2E4X7-F1-model_v4_TED01"],["TED%3AAF-A0A5Y4BP44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Y4BP44-F1-model_v4_TED01"],["TED%3AAF-A0A623P6F3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A623P6F3-F1-model_v4_TED02"],["TED%3AAF-A0A721BDS7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A721BDS7-F1-model_v4_TED02"],["TED%3AAF-A0A743P324-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A743P324-F1-model_v4_TED01"],["TED%3AAF-A0A757VWR3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A757VWR3-F1-model_v4_TED02"]]},{"id":"CHEBI:18248","l":"iron atom","na":1,"nb":9,"a":[["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18248","requires Fe"],["proteintraitsmech%3AMETALPDB_FE_DINUCLEAR","dinuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_HEPTANUCLEAR","heptanuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_HEXANUCLEAR","hexanuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_MONONUCLEAR","mononuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_OCTANUCLEAR","octanuclear iron site"]]},{"id":"CHEBI:26710","l":"sodium chloride","na":9,"nb":1,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["TCDB%3A2.A.30","The Cation-Chloride Cotransporter (CCC) Family"]]},{"id":"GO:0009266","l":"response to temperature stimulus","na":1,"nb":9,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["GO%3A0071502","cellular response to temperature stimulus"],["GO%3A0016048","detection of temperature stimulus"],["GO%3A0009409","response to cold"],["GO%3A0009408","response to heat"],["GO%3A0009266","response to temperature stimulus"],["GO%3A0010378","temperature compensation of the circadian clock"]]},{"id":"GO:0043903","l":"regulation of biological process involved in symbiotic interaction","na":1,"nb":9,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["GO%3A0052372","modulation by symbiont of entry into host"],["GO%3A0140471","positive regulation of transepithelial migration of symbiont in host"],["GO%3A0043903","regulation of biological process involved in symbiotic interaction"],["GO%3A0075045","regulation of formation by symbiont of haustorium for nutrient acquisition from host"],["GO%3A1901252","regulation of intracellular transport of viral material"],["GO%3A0070949","regulation of neutrophil mediated killing of symbiont cell"]]},{"id":"NCBITaxon:1344414","l":"Trichoderma reesei RUT C-30","na":1,"nb":9,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["Pfam%3APF00457","Glycosyl hydrolases family 11"],["Pfam%3APF01341","Glycosyl hydrolases family 6"],["PROSITE%3APS00155","Cutinase, serine active site"],["PROSITE%3APS00776","Glycosyl hydrolases family 11 (GH11) active site signature 1"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"],["PROSITE%3APS00655","Glycosyl hydrolases family 6 signature 1"]]},{"id":"NCBITaxon:2903","l":"Emiliania huxleyi","na":1,"nb":9,"a":[["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"]],"b":[["TED%3AAF-A0A7S3RZJ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3RZJ4-F1-model_v4_TED01"],["TED%3AAF-A0A7S3W933-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3W933-F1-model_v4_TED01"],["TED%3AAF-A0A7S3W9Q3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3W9Q3-F1-model_v4_TED01"],["TED%3AAF-R1DPG1-F1-model_v4_TED01","TED highly-symmetric fold AF-R1DPG1-F1-model_v4_TED01"],["TED%3AAF-A0A7S3TQB6-F1-model_v4_TED02","TED novel fold AF-A0A7S3TQB6-F1-model_v4_TED02"],["TED%3AAF-R1BEB4-F1-model_v4_TED01","TED novel fold AF-R1BEB4-F1-model_v4_TED01"]]},{"id":"CHEBI:27698","l":"vanadium atom","na":1,"nb":8,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_V_DECANUCLEAR","decanuclear vanadium site"],["proteintraitsmech%3AMETALPDB_V_DINUCLEAR","dinuclear vanadium site"],["proteintraitsmech%3AMETALPDB_V_HEPTANUCLEAR","heptanuclear vanadium site"],["proteintraitsmech%3AMETALPDB_V_HEXANUCLEAR","hexanuclear vanadium site"],["proteintraitsmech%3AMETALPDB_V_MONONUCLEAR","mononuclear vanadium site"],["proteintraitsmech%3AMETALPDB_V_OCTANUCLEAR","octanuclear vanadium site"]]},{"id":"CHEBI:37166","l":"xylan","na":8,"nb":1,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"GO:0042402","l":"biogenic amine catabolic process","na":1,"nb":8,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"]],"b":[["GO%3A0042402","biogenic amine catabolic process"],["GO%3A0042424","catecholamine catabolic process"],["GO%3A0042426","choline catabolic process"],["GO%3A0046336","ethanolamine catabolic process"],["GO%3A0001695","histamine catabolic process"],["GO%3A0046334","octopamine catabolic process"]]},{"id":"GO:0042436","l":"indole-containing compound catabolic process","na":1,"nb":8,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["GO%3A0042433","indole catabolic process"],["GO%3A0042436","indole-containing compound catabolic process"],["GO%3A0042344","indole glucosinolate catabolic process"],["GO%3A0046216","indole phytoalexin catabolic process"],["GO%3A0042437","indoleacetic acid catabolic process"],["GO%3A0006569","L-tryptophan catabolic process"]]},{"id":"NCBITaxon:4081","l":"Solanum lycopersicum","na":1,"nb":8,"a":[["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF02977","Carboxypeptidase A inhibitor"],["Pfam%3APF26410","GH family 5 beta-mannosidase-like"],["Pfam%3APF02496","ABA/WDS induced protein"],["Pfam%3APF17302","Family of unknown function (DUF5351)"],["PROSITE%3APS00502","Polygalacturonase active site"]]},{"id":"NCBITaxon:492670","l":"Bacillus velezensis","na":8,"nb":1,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"]],"b":[["TED%3AAF-A0A7S9EWF1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S9EWF1-F1-model_v4_TED02"]]},{"id":"CHEBI:25017","l":"leucine","na":1,"nb":7,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.78","The Branched Chain Amino Acid Exporter (LIV-E) Family"],["TCDB%3A2.A.76","The Resistance to Homoserine/Threonine (RhtB) Family"],["MCSA%3A172","isoaspartyl dipeptidase"]]},{"id":"CHEBI:29195","l":"cyanate","na":1,"nb":7,"a":[["Thiocyanate_Afipia_Thiobacillus_Bioreactor_Community.html","Thiocyanate-Degrading Afipia and Thiobacillus Bioreactor Community"]],"b":[["EC%3A1.8.2.7","thiocyanate desulfurase"],["EC%3A4.2.1.104","cyanase"],["RHEA%3A11120","cyanate + hydrogencarbonate + 3 H(+) = NH4(+) + 2 CO2"],["RHEA%3A18489","cyanate + hydrogencarbonate + H(+) = carbamate + CO2"],["RHEA%3A29231","cyanate(in) = cyanate(out)"],["RHEA%3A63880","thiocyanate + 2 Fe(III)-[cytochrome c] + H2O = cyanate + sulfur + 2 Fe(II)-[cytochrome c] + 2 H(+)"]]},{"id":"CHEBI:32379","l":"cis,cis-muconate","na":1,"nb":7,"a":[["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["EC%3A1.13.11.1","catechol 1,2-dioxygenase"],["EC%3A5.5.1.1","muconate cycloisomerase"],["RHEA%3A23852","catechol + O2 = cis,cis-muconate + 2 H(+)"],["RHEA%3A30031","(S)-muconolactone = cis,cis-muconate + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["MCSA%3A959","muconate cycloisomerase (anti)"]]},{"id":"GO:0009292","l":"horizontal gene transfer","na":1,"nb":7,"a":[["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"]],"b":[["GO%3A0009294","DNA-mediated transformation"],["GO%3A0009292","horizontal gene transfer"],["GO%3A0009293","transduction"],["GO%3A0009291","unidirectional conjugation"],["NCBIfam%3ATIGR04359","entry exclusion lipoprotein TrbK"],["NCBIfam%3ATIGR04361","entry exclusion protein TrbK"]]},{"id":"GO:0040011","l":"locomotion","na":1,"nb":7,"a":[["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"]],"b":[["GO%3A0033058","directional locomotion"],["GO%3A0060361","flight"],["GO%3A0040011","locomotion"],["GO%3A0031987","locomotion involved in locomotory behavior"],["GO%3A0071965","multicellular organismal locomotion"],["GO%3A0036268","swimming"]]},{"id":"GO:0075136","l":"response to host","na":1,"nb":7,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0075136","response to host"],["GO%3A0075139","response to host iron concentration"],["GO%3A0075000","response to host osmotic environment"],["GO%3A0075138","response to host oxygen tension environment"],["GO%3A0075293","response to host pH environment"],["GO%3A0075137","response to host redox environment"]]},{"id":"NCBITaxon:2030806","l":"Burkholderiaceae bacterium","na":1,"nb":7,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["TED%3AAF-A0A5C7NHS1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7NHS1-F1-model_v4_TED01"],["TED%3AAF-A0A5C7Q2S0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A5C7Q2S0-F1-model_v4_TED04"],["TED%3AAF-A0A7L5Y4H7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7L5Y4H7-F1-model_v4_TED02"],["TED%3AAF-A0A520VNE1-F1-model_v4_TED02","TED novel fold AF-A0A520VNE1-F1-model_v4_TED02"],["TED%3AAF-A0A522SAF0-F1-model_v4_TED01","TED novel fold AF-A0A522SAF0-F1-model_v4_TED01"],["TED%3AAF-A0A5C7NTX8-F1-model_v4_TED02","TED novel fold AF-A0A5C7NTX8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:5722","l":"Trichomonas vaginalis","na":1,"nb":7,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["TED%3AAF-A2F3M7-F1-model_v4_TED03","TED highly-symmetric fold AF-A2F3M7-F1-model_v4_TED03"],["TED%3AAF-A2HEW4-F1-model_v4_TED01","TED highly-symmetric fold AF-A2HEW4-F1-model_v4_TED01"],["TED%3AAF-A2DT59-F1-model_v4_TED01","TED novel fold AF-A2DT59-F1-model_v4_TED01"],["TED%3AAF-A2E7I9-F1-model_v4_TED02","TED novel fold AF-A2E7I9-F1-model_v4_TED02"],["TED%3AAF-A2F6I8-F1-model_v4_TED02","TED novel fold AF-A2F6I8-F1-model_v4_TED02"],["TED%3AAF-A2FV33-F1-model_v4_TED01","TED novel fold AF-A2FV33-F1-model_v4_TED01"]]},{"id":"CHEBI:29287","l":"gold atom","na":1,"nb":6,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"]],"b":[["proteintraitsmech%3AMETALPDB_AU_DINUCLEAR","dinuclear gold site"],["proteintraitsmech%3AMETALPDB_AU_HEXANUCLEAR","hexanuclear gold site"],["proteintraitsmech%3AMETALPDB_AU_MONONUCLEAR","mononuclear gold site"],["proteintraitsmech%3AMETALPDB_AU_PENTANUCLEAR","pentanuclear gold site"],["proteintraitsmech%3AMETALPDB_AU_TETRANUCLEAR","tetranuclear gold site"],["proteintraitsmech%3AMETALPDB_AU_TRINUCLEAR","trinuclear gold site"]]},{"id":"CHEBI:30769","l":"citric acid","na":6,"nb":1,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["proteintraitsmech%3ABIOLIP_CIT","CIT-binding site"]]},{"id":"CHEBI:32139","l":"sodium hydrogencarbonate","na":6,"nb":1,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["TCDB%3A2.A.31","The Anion Exchanger (AE) Family"]]},{"id":"CHEBI:86471","l":"pyrite","na":6,"nb":1,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"GO:0009268","l":"response to pH","na":1,"nb":6,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["GO%3A0071467","cellular response to pH"],["GO%3A0036177","filamentous growth of a population of unicellular organisms in response to pH"],["GO%3A0010447","response to acidic pH"],["GO%3A0010446","response to alkaline pH"],["GO%3A0036176","response to neutral pH"],["GO%3A0009268","response to pH"]]},{"id":"GO:0009684","l":"indoleacetic acid biosynthetic process","na":6,"nb":1,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["GO%3A0009684","indoleacetic acid biosynthetic process"]]},{"id":"GO:0044409","l":"symbiont entry into host","na":1,"nb":6,"a":[["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"]],"b":[["GO%3A0120326","appressorium-mediated entry into host"],["GO%3A0140717","entry into host through the stromata"],["GO%3A0035635","entry of bacterium into host cell"],["GO%3A0046718","symbiont entry into host cell"],["GO%3A0044409","symbiont entry into host"],["Reactome%3AR-HSA-173107","Binding and entry of HIV virion"]]},{"id":"GO:0045733","l":"acetate catabolic process","na":6,"nb":1,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"],["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]],"b":[["GO%3A0045733","acetate catabolic process"]]},{"id":"GO:0140253","l":"cell-cell fusion","na":1,"nb":6,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["ComplexPortal%3ACPX-3089","EFF-1 complex"],["GO%3A0140253","cell-cell fusion"],["GO%3A0000755","cytogamy"],["GO%3A0000768","syncytium formation by cell-cell fusion"],["PANTHER%3APTHR37415","EFF-1A"],["PANTHER%3APTHR41686","MYOMIXER"]]},{"id":"GO:1900190","l":"regulation of single-species biofilm formation","na":1,"nb":6,"a":[["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["ComplexPortal%3ACPX-4681","YiaMNO tripartite ATP-independent periplasmic transporter complex"],["GO%3A1900191","negative regulation of single-species biofilm formation"],["GO%3A1900192","positive regulation of single-species biofilm formation"],["GO%3A1900190","regulation of single-species biofilm formation"],["GO%3A1900228","regulation of single-species biofilm formation in or on host organism"],["GO%3A1900231","regulation of single-species biofilm formation on inanimate substrate"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":6,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["Pfam%3APF03437","BtpA family"]]},{"id":"NCBITaxon:2268204","l":"Thermoplasmatales archaeon","na":1,"nb":6,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["TED%3AAF-A0A7C2AKF2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7C2AKF2-F1-model_v4_TED03"],["TED%3AAF-A0A7J2S4D8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7J2S4D8-F1-model_v4_TED03"],["TED%3AAF-A0A7J3TK18-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7J3TK18-F1-model_v4_TED02"],["TED%3AAF-A0A7C1E5G8-F1-model_v4_TED01","TED novel fold AF-A0A7C1E5G8-F1-model_v4_TED01"],["TED%3AAF-A0A842X889-F1-model_v4_TED01","TED novel fold AF-A0A842X889-F1-model_v4_TED01"],["TED%3AAF-A0A842X9F6-F1-model_v4_TED01","TED novel fold AF-A0A842X9F6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":1,"nb":6,"a":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"]],"b":[["Pfam%3APF14525","AraC-binding-like domain"],["Pfam%3APF06139","BphX-like"],["Pfam%3APF13340","Putative transposase of IS4/5 family (DUF4096)"],["Pfam%3APF11794","4-hydroxyphenylacetate 3-hydroxylase N terminal"],["Pfam%3APF03241","4-hydroxyphenylacetate 3-hydroxylase C terminal"],["TED%3AAF-A0A4S3H3T1-F1-model_v4_TED02","TED novel fold AF-A0A4S3H3T1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:4097","l":"Nicotiana tabacum","na":1,"nb":6,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"]],"b":[["Pfam%3APF02041","Auxin binding protein"],["Pfam%3APF12481","Aluminium induced protein"],["Pfam%3APF11995","Domain of unknown function (DUF3490)"],["Pfam%3APF07172","Glycine rich protein family"],["PROSITE%3APS00157","Ribulose bisphosphate carboxylase large chain active site"],["TED%3AAF-A0A1S4A696-F1-model_v4_TED01","TED novel fold AF-A0A1S4A696-F1-model_v4_TED01"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":1,"nb":6,"a":[["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["Pfam%3APF02929","Beta galactosidase small chain"],["Pfam%3APF27279","Fumarate--diaminopropanoate ligase C-terminal domain"],["Pfam%3APF18024","Helix-turn-helix domain"],["Pfam%3APF16353","Beta-galactosidase, domain 4"],["PROSITE%3APS00594","Aromatic amino acids permeases signature"],["PROSITE%3APS00853","Beta-eliminating lyases pyridoxal-phosphate attachment site"]]},{"id":"CHEBI:15702","l":"terephthalic acid","na":5,"nb":1,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["proteintraitsmech%3ABIOLIP_UB7","UB7-binding site"]]},{"id":"CHEBI:16828","l":"L-tryptophan","na":5,"nb":1,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["proteintraitsmech%3ABIOLIP_TRP","TRP-binding site"]]},{"id":"CHEBI:17439","l":"cyanocob(III)alamin","na":1,"nb":5,"a":[["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["EC%3A1.16.1.6","cyanocobalamin reductase"],["RHEA%3A16113","2 cob(II)alamin-[cyanocobalamin reductase] + 2 hydrogen cyanide + NADP(+) = 2 cyanocob(III)alamin + 2 apo-[cyanocobalamin reductase] + NADPH + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["TCDB%3A9.B.87","The Selenoprotein P Receptor (SelP-Receptor) Family"]]},{"id":"CHEBI:17634","l":"D-glucose","na":5,"nb":1,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"]],"b":[["MCSA%3A976","α‑glucosidase maltase-glucoamylase"]]},{"id":"CHEBI:24875","l":"iron cation","na":1,"nb":5,"a":[["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_24875","requires iron cation"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.S.6","The Bacterial/Archaeal Nanocompartment Encapsulin Shell Protein1 (BANC-SP1) Family"],["TCDB%3A2.A.55","The Metal Ion (Mn2+-iron) Transporter (Nramp) Family"],["TCDB%3A5.B.1","The Phagocyte (gp91phox) NADPH Oxidase Family"]]},{"id":"CHEBI:27750","l":"ethyl acetate","na":1,"nb":5,"a":[["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["EC%3A2.3.1.268","ethanol O-acetyltransferase"],["EC%3A3.1.1.113","ethyl acetate hydrolase"],["RHEA%3A55972","ethanol + acetyl-CoA = ethyl acetate + CoA"],["RHEA%3A58148","ethyl acetate + H2O = ethanol + acetate + H(+)"],["proteintraitsmech%3ABIOLIP_EEE","EEE-binding site"]]},{"id":"CHEBI:30746","l":"benzoic acid","na":5,"nb":1,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_BEZ","BEZ-binding site"]]},{"id":"CHEBI:30776","l":"hexanoic acid","na":5,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["proteintraitsmech%3ABIOLIP_6NA","6NA-binding site"]]},{"id":"CHEBI:33364","l":"platinum atom","na":1,"nb":5,"a":[["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_PT_DINUCLEAR","dinuclear platinum site"],["proteintraitsmech%3AMETALPDB_PT_HEXANUCLEAR","hexanuclear platinum site"],["proteintraitsmech%3AMETALPDB_PT_MONONUCLEAR","mononuclear platinum site"],["proteintraitsmech%3AMETALPDB_PT_TETRANUCLEAR","tetranuclear platinum site"],["proteintraitsmech%3AMETALPDB_PT_TRINUCLEAR","trinuclear platinum site"]]},{"id":"CHEBI:35899","l":"crotonate","na":1,"nb":5,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["EC%3A1.3.1.31","2-enoate reductase"],["RHEA%3A74903","(2E)-2-butenoate + ATP + H(+) = (2E)-but-2-enoyl-AMP + diphosphate"],["RHEA%3A74899","(2E)-2-butenoate + holo-[ACP] + ATP = (2E)-butenoyl-[ACP] + AMP + diphosphate"],["RHEA%3A10200","butanoate + NAD(+) = (2E)-2-butenoate + NADH + H(+)"],["RHEA%3A69172","N(6)-(2E)-butenoyl-L-lysyl-[protein] + H2O = (2E)-2-butenoate + L-lysyl-[protein]"]]},{"id":"CHEBI:37671","l":"(1->3)-beta-D-glucan","na":1,"nb":5,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"]],"b":[["EC%3A2.4.1.30","1,3-beta-oligoglucan phosphorylase"],["EC%3A2.4.1.34","1,3-beta-glucan synthase"],["EC%3A2.4.1.97","1,3-beta-D-glucan phosphorylase"],["RHEA%3A16041","[(1->3)-beta-D-glucosyl](n) + phosphate = [(1->3)-beta-D-glucosyl](n-1) + alpha-D-glucose 1-phosphate"],["RHEA%3A21476","[(1->3)-beta-D-glucosyl](n) + UDP-alpha-D-glucose = [(1->3)-beta-D-glucosyl](n+1) + UDP + H(+)"]]},{"id":"CHEBI:81666","l":"4-methyl-5-nitrocatechol","na":1,"nb":5,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["EC%3A1.14.12.24","2,4-dinitrotoluene dioxygenase"],["EC%3A1.14.13.210","4-methyl-5-nitrocatechol 5-monooxygenase"],["RHEA%3A46760","2,4-dinitrotoluene + NADH + O2 = 4-methyl-5-nitrocatechol + nitrite + NAD(+)"],["RHEA%3A48016","4-methyl-5-nitrocatechol + NADH + O2 = 2-hydroxy-5-methylquinone + nitrite + NAD(+) + H2O + H(+)"],["RHEA%3A48012","4-methyl-5-nitrocatechol + NADPH + O2 = 2-hydroxy-5-methylquinone + nitrite + NADP(+) + H2O + H(+)"]]},{"id":"GO:0098869","l":"cellular oxidant detoxification","na":1,"nb":5,"a":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["GO%3A0061692","cellular detoxification of hydrogen peroxide"],["GO%3A0098869","cellular oxidant detoxification"],["GO%3A0019430","removal of superoxide radicals"],["NCBIfam%3ANF009668","peroxiredoxin"],["Pfam%3APF24980","Response to Low Sulfur (LSU) family"]]},{"id":"NCBITaxon:10239","l":"Viruses","na":5,"nb":1,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_10239","Viruses orthologous groups (OrthoDB)"]]},{"id":"NCBITaxon:1598","l":"Limosilactobacillus reuteri","na":1,"nb":5,"a":[["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"]],"b":[["TED%3AAF-A0A6N1EMN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N1EMN7-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2V3C3-F1-model_v4_TED01","TED novel fold AF-A0A1Y2V3C3-F1-model_v4_TED01"],["TED%3AAF-A0A848BUA9-F1-model_v4_TED01","TED novel fold AF-A0A848BUA9-F1-model_v4_TED01"],["TED%3AAF-A0A855XJ18-F1-model_v4_TED01","TED novel fold AF-A0A855XJ18-F1-model_v4_TED01"],["TED%3AAF-Q6WUB1-F1-model_v4_TED03","TED novel fold AF-Q6WUB1-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1872427","l":"Alcanivorax sp.","na":1,"nb":5,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["TED%3AAF-A0A3C1HS87-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A3C1HS87-F1-model_v4_TED05"],["TED%3AAF-A0A2E8G0K2-F1-model_v4_TED02","TED novel fold AF-A0A2E8G0K2-F1-model_v4_TED02"],["TED%3AAF-A0A2E8G2P9-F1-model_v4_TED01","TED novel fold AF-A0A2E8G2P9-F1-model_v4_TED01"],["TED%3AAF-A0A3B8PCI6-F1-model_v4_TED01","TED novel fold AF-A0A3B8PCI6-F1-model_v4_TED01"],["TED%3AAF-A0A3C0M083-F1-model_v4_TED02","TED novel fold AF-A0A3C0M083-F1-model_v4_TED02"]]},{"id":"NCBITaxon:552","l":"Erwinia amylovora","na":1,"nb":5,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]],"b":[["Pfam%3APF09008","Head binding"],["Pfam%3APF11725","AvrE-family Type-III effector proteins (T3Es)"],["Pfam%3APF03608","PTS system enzyme II sorbitol-specific factor"],["Pfam%3APF07663","Sorbitol phosphotransferase enzyme II C-terminus"],["Pfam%3APF03612","Sorbitol phosphotransferase enzyme II N-terminus"]]},{"id":"NCBITaxon:74969","l":"Ferroplasma acidiphilum","na":5,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["TED%3AAF-A0A7K4FNL3-F1-model_v4_TED01","TED novel fold AF-A0A7K4FNL3-F1-model_v4_TED01"]]},{"id":"CHEBI:15603","l":"L-leucine","na":4,"nb":1,"a":[["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"]],"b":[["proteintraitsmech%3ABIOLIP_LEU","LEU-binding site"]]},{"id":"CHEBI:16109","l":"propane-1,3-diol","na":1,"nb":4,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["EC%3A1.1.1.202","1,3-propanediol dehydrogenase"],["RHEA%3A23188","propane-1,3-diol + NAD(+) = 3-hydroxypropanal + NADH + H(+)"],["RHEA%3A35599","propane-1,3-diol + NADP(+) = 3-hydroxypropanal + NADPH + H(+)"],["proteintraitsmech%3ABIOLIP_PDO","PDO-binding site"]]},{"id":"CHEBI:16646","l":"carbohydrate","na":4,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16646","requires pantothenate"]]},{"id":"CHEBI:16811","l":"methionine","na":4,"nb":1,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"]]},{"id":"CHEBI:16856","l":"glutathione","na":1,"nb":4,"a":[["Zymomonas_Ecoli_Exometabolomics_Obligate_Mutualism.html","Zymomonas-E. coli Exometabolomics-Designed Obligate Mutualism"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16856","requires glutathione"],["MCSA%3A359","lactoglutathione lyase"],["MCSA%3A32","lactoylglutathione lyase"],["proteintraitsmech%3ABIOLIP_GSH","GSH-binding site"]]},{"id":"CHEBI:17115","l":"L-serine","na":1,"nb":4,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["MCSA%3A609","alpha-lytic endopeptidase"],["MCSA%3A238","assemblin"],["MCSA%3A688","classical-complement-pathway C3/C5 convertase"],["proteintraitsmech%3ABIOLIP_SER","SER-binding site"]]},{"id":"CHEBI:18050","l":"L-glutamine","na":1,"nb":4,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["MCSA%3A596","deuterolysin"],["MCSA%3A477","picornain 3C"],["MCSA%3A763","picornain 3C"],["proteintraitsmech%3ABIOLIP_GLN","GLN-binding site"]]},{"id":"CHEBI:18059","l":"lipid","na":4,"nb":1,"a":[["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"],["Yarrowia_lipolytica_Division_of_Labor_Lipid_Consortium.html","Yarrowia lipolytica Division-of-Labor Lipid Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:22315","l":"alkaloid","na":1,"nb":4,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]]},{"id":"CHEBI:23681","l":"dibenzothiophene","na":1,"nb":4,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["EC%3A1.14.14.21","dibenzothiophene monooxygenase"],["RHEA%3A49072","dibenzothiophene + 2 FMNH2 + 2 O2 = dibenzothiophene 5,5-dioxide + 2 FMN + 2 H2O + 2 H(+)"],["RHEA%3A49076","dibenzothiophene + FMNH2 + O2 = dibenzothiophene 5-oxide + FMN + H2O + H(+)"],["MCSA%3A973","DszC protein"]]},{"id":"CHEBI:28984","l":"aluminium atom","na":1,"nb":4,"a":[["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_AL_DINUCLEAR","dinuclear aluminium site"],["proteintraitsmech%3AMETALPDB_AL_MONONUCLEAR","mononuclear aluminium site"],["proteintraitsmech%3AMETALPDB_AL_TETRANUCLEAR","tetranuclear aluminium site"],["proteintraitsmech%3AMETALPDB_AL_TRINUCLEAR","trinuclear aluminium site"]]},{"id":"CHEBI:33575","l":"carboxylic acid","na":1,"nb":4,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"]],"b":[["MCSA%3A105","aldehyde dehydrogenase (FAD-independent)"],["MCSA%3A803","aldehyde dehydrogenase (NAD+) (class 2)"],["MCSA%3A556","esterase (estA)"],["MCSA%3A755","lysophospholipase"]]},{"id":"CHEBI:34768","l":"furfural","na":1,"nb":4,"a":[["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"]],"b":[["RHEA%3A77519","furfural + hydrogen cyanide = (2R)-2-(furan-2-yl)-2-hydroxyacetonitrile"],["RHEA%3A76667","furfural + NAD(+) + H2O = 2-furoate + NADH + 2 H(+)"],["RHEA%3A76671","furfural + NADP(+) + H2O = 2-furoate + NADPH + 2 H(+)"],["TCDB%3A1.C.113","The Hemolysin III (Hly III) Family"]]},{"id":"CHEBI:490095","l":"esculetin","na":1,"nb":4,"a":[["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["EC%3A2.5.1.138","coumarin 8-geranyltransferase"],["RHEA%3A51864","esculetin + (2E)-geranyl diphosphate = 8-geranylesculetin + diphosphate"],["RHEA%3A68944","esculetin + S-adenosyl-L-methionine = isoscopoletin + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A68948","esculetin + S-adenosyl-L-methionine = scopoletin + S-adenosyl-L-homocysteine + H(+)"]]},{"id":"GO:0009809","l":"lignin biosynthetic process","na":1,"nb":4,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"]],"b":[["GO%3A1901063","guaiacyl lignin biosynthetic process"],["GO%3A0009809","lignin biosynthetic process"],["GO%3A1901060","p-hydroxyphenyl lignin biosynthetic process"],["GO%3A1901066","syringal lignin biosynthetic process"]]},{"id":"GO:0015694","l":"mercury ion transport","na":1,"nb":4,"a":[["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["GO%3A0015694","mercury ion transport"],["Pfam%3APF03203","MerC mercury resistance protein"],["Pfam%3APF05052","MerE protein"],["Pfam%3APF02411","MerT mercuric transport protein"]]},{"id":"GO:0015976","l":"carbon utilization","na":1,"nb":4,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["GO%3A0015976","carbon utilization"],["NCBIfam%3ANF010378","bifunctional acetaldehyde-CoA/alcohol dehydrogenase"],["NCBIfam%3ANF007756","carbonate dehydratase"],["InterPro%3AIPR015892","Carbonic anhydrase, prokaryotic-like, conserved site"]]},{"id":"GO:0061692","l":"cellular detoxification of hydrogen peroxide","na":1,"nb":4,"a":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["ComplexPortal%3ACPX-4742","Catalase complex"],["ComplexPortal%3ACPX-4767","Catalase complex"],["ComplexPortal%3ACPX-4768","Catalase complex"],["GO%3A0061692","cellular detoxification of hydrogen peroxide"]]},{"id":"GO:1902074","l":"response to salt","na":1,"nb":4,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["GO%3A1902075","cellular response to salt"],["GO%3A1902074","response to salt"],["GO%3A1903935","response to sodium arsenite"],["GO%3A1904383","response to sodium phosphate"]]},{"id":"NCBITaxon:1401","l":"Paenibacillus lautus","na":1,"nb":4,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"]],"b":[["Pfam%3APF18448","Carbohydrate binding domain"],["Pfam%3APF12891","Glycoside hydrolase family 44"],["TED%3AAF-A0A328VZ83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A328VZ83-F1-model_v4_TED01"],["TED%3AAF-A0A385TU82-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A385TU82-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1451","l":"Paenibacillus amylolyticus","na":1,"nb":4,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"]],"b":[["Pfam%3APF03211","Pectate lyase"],["TED%3AAF-A0A117I1X0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A117I1X0-F1-model_v4_TED01"],["TED%3AAF-A0A1R1DDF3-F1-model_v4_TED01","TED novel fold AF-A0A1R1DDF3-F1-model_v4_TED01"],["TED%3AAF-A0A4V3B7H8-F1-model_v4_TED01","TED novel fold AF-A0A4V3B7H8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1501","l":"Clostridium pasteurianum","na":1,"nb":4,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["Pfam%3APF22609","Iron hydrogenase 1-like, iron-sulfur centre-binding domain"],["Pfam%3APF09582","Iron only nitrogenase protein AnfO (AnfO_nitrog)"],["PROSITE%3APS00746","NifH/frxC family signature 1"],["PROSITE%3APS00699","Nitrogenases component 1 alpha and beta subunits signature 1"]]},{"id":"NCBITaxon:1534","l":"Clostridium kluyveri","na":4,"nb":1,"a":[["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["TED%3AAF-A0A1L5FEG9-F1-model_v4_TED01","TED novel fold AF-A0A1L5FEG9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1590","l":"Lactiplantibacillus plantarum","na":4,"nb":1,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Pichia_Lactiplantibacillus_CCMA_Plant_Beverage_Coculture.html","Pichia-Lactiplantibacillus CCMA Plant Beverage Coculture"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["Pfam%3APF06314","Acetoacetate decarboxylase (ADC)"]]},{"id":"NCBITaxon:243164","l":"Dehalococcoides mccartyi 195","na":4,"nb":1,"a":[["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["Pfam%3APF13486","Reductive dehalogenase subunit"]]},{"id":"NCBITaxon:258594","l":"Rhodopseudomonas palustris CGA009","na":1,"nb":4,"a":[["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"]],"b":[["Pfam%3APF01322","Cytochrome C'"],["PROSITE%3APS00969","Antenna complexes beta subunits signature"],["PROSITE%3APS00936","Ribosomal protein L35 signature"],["PROSITE%3APS01181","Ribosomal protein S21 signature"]]},{"id":"NCBITaxon:28037","l":"Streptococcus mitis","na":1,"nb":4,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["Pfam%3APF03047","COMC family"],["TED%3AAF-A0A1X1L9U5-F1-model_v4_TED02","TED novel fold AF-A0A1X1L9U5-F1-model_v4_TED02"],["TED%3AAF-A0A428B8X0-F1-model_v4_TED01","TED novel fold AF-A0A428B8X0-F1-model_v4_TED01"],["TED%3AAF-A0A6L5H4V3-F1-model_v4_TED03","TED novel fold AF-A0A6L5H4V3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:285","l":"Comamonas testosteroni","na":1,"nb":4,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["Pfam%3APF02900","Catalytic LigB subunit of aromatic ring-opening dioxygenase"],["Pfam%3APF19301","LigXa C-terminal domain like"],["TED%3AAF-A0A096HND0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A096HND0-F1-model_v4_TED01"],["TED%3AAF-A0A1Y1JCM1-F1-model_v4_TED01","TED novel fold AF-A0A1Y1JCM1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:34305","l":"Lotus japonicus","na":1,"nb":4,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["Pfam%3APF06241","Castor and Pollux, part of voltage-gated ion channel"],["Pfam%3APF23654","E3 ubiquitin-protein ligase LIN-like, ARM repeat"],["Pfam%3APF23628","Putative E3 ubiquitin-protein ligase LIN, ARM-like domain"],["Pfam%3APF23568","E3 ubiquitin-protein ligase LIN-like, ARM repeat"]]},{"id":"NCBITaxon:40520","l":"Blautia obeum","na":1,"nb":4,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]],"b":[["TED%3AAF-A0A174PFW9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A174PFW9-F1-model_v4_TED01"],["TED%3AAF-A0A174PHS9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A174PHS9-F1-model_v4_TED02"],["TED%3AAF-A0A415LGR0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A415LGR0-F1-model_v4_TED01"],["TED%3AAF-A0A414KHY7-F1-model_v4_TED02","TED novel fold AF-A0A414KHY7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":1,"nb":4,"a":[["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["Pfam%3APF11720","Peptidase inhibitor I78 family"],["Pfam%3APF12296","Hydrophobic surface binding protein A"],["TED%3AAF-A0A3M7JGA1-F1-model_v4_TED02","TED novel fold AF-A0A3M7JGA1-F1-model_v4_TED02"],["TED%3AAF-A0A7G5JNS3-F1-model_v4_TED03","TED novel fold AF-A0A7G5JNS3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:863","l":"Syntrophomonas wolfei","na":4,"nb":1,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["TED%3AAF-A0A354YY78-F1-model_v4_TED03","TED novel fold AF-A0A354YY78-F1-model_v4_TED03"]]},{"id":"CHEBI:147155","l":"","na":3,"nb":1,"a":[["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["RHEA%3A64016","alpha-L-Fuc-(1->2)-beta-D-Gal-(1->4)-D-Glc + GDP-beta-L-fucose = alpha-L-Fuc-(1->2)-beta-D-Gal-(1->4)-[alpha-L-Fuc-(1->3)]-D-Glc + GDP + H(+)"]]},{"id":"CHEBI:15356","l":"cysteine","na":3,"nb":1,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:16015","l":"L-glutamic acid","na":1,"nb":3,"a":[["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]],"b":[["MCSA%3A747","gamma-glutamyl hydrolase"],["proteintraitsmech%3ABIOLIP_GGL","GGL-binding site"],["proteintraitsmech%3ABIOLIP_GLU","GLU-binding site"]]},{"id":"CHEBI:16170","l":"mercury(0)","na":1,"nb":3,"a":[["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["EC%3A1.16.1.1","mercury(II) reductase"],["RHEA%3A23856","Hg + NADP(+) + H(+) = Hg(2+) + NADPH"],["MCSA%3A277","mercury(II) reductase"]]},{"id":"CHEBI:16467","l":"L-arginine","na":1,"nb":3,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["MCSA%3A688","classical-complement-pathway C3/C5 convertase"],["MCSA%3A425","plasmin"],["MCSA%3A798","t-plasminogen activator"]]},{"id":"CHEBI:16982","l":"(R,R)-butane-2,3-diol","na":1,"nb":3,"a":[["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"]],"b":[["EC%3A1.1.1.4","(R,R)-butanediol dehydrogenase"],["RHEA%3A24340","(R,R)-butane-2,3-diol + NAD(+) = (R)-acetoin + NADH + H(+)"],["proteintraitsmech%3ABIOLIP_BU3","BU3-binding site"]]},{"id":"CHEBI:17203","l":"L-proline","na":1,"nb":3,"a":[["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["MCSA%3A403","astacin"],["MCSA%3A379","Xaa-Pro aminopeptidase"],["proteintraitsmech%3ABIOLIP_PRO","PRO-binding site"]]},{"id":"CHEBI:17561","l":"L-cysteine","na":3,"nb":1,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["proteintraitsmech%3ABIOLIP_CYS","CYS-binding site"]]},{"id":"CHEBI:229785","l":"neodymium(3+)","na":3,"nb":1,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_ND","ND-binding site"]]},{"id":"CHEBI:2365","l":"(+)-abscisic acid","na":1,"nb":3,"a":[["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.17","The Proton-dependent Oligopeptide Transporter (POT/PTR) Family"],["proteintraitsmech%3ABIOLIP_A8S","A8S-binding site"]]},{"id":"CHEBI:28805","l":"cis-1,2-dichloroethene","na":1,"nb":3,"a":[["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"]],"b":[["RHEA%3A67992","trichloroethene + AH2 = (Z)-1,2-dichloroethene + chloride + A + H(+)"],["RHEA%3A67996","(Z)-1,2-dichloroethene + AH2 = chloroethene + chloride + A + H(+)"],["proteintraitsmech%3ABIOLIP_JYF","JYF-binding site"]]},{"id":"CHEBI:30803","l":"isophthalate(2-)","na":1,"nb":3,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["EC%3A6.2.1.58","isophthalate--CoA ligase"],["RHEA%3A61636","isophthalate + ATP + CoA = isophthalyl-CoA + AMP + diphosphate"],["TCDB%3A2.A.80","The Tricarboxylate Transporter (TTT) Family"]]},{"id":"CHEBI:31725","l":"isoamyl acetate","na":1,"nb":3,"a":[["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["EC%3A3.1.1.112","isoamyl acetate esterase"],["RHEA%3A65236","3-methylbutan-1-ol + acetyl-CoA = 3-methylbutyl acetate + CoA"],["RHEA%3A60436","3-methylbutyl acetate + H2O = 3-methylbutan-1-ol + acetate + H(+)"]]},{"id":"CHEBI:32816","l":"pyruvic acid","na":1,"nb":3,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_32816","requires pyruvic acid"],["MCSA%3A449","cystathionine beta-lyase"],["proteintraitsmech%3ABIOLIP_PYR","PYR-binding site"]]},{"id":"CHEBI:32879","l":"propane","na":1,"nb":3,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["EC%3A1.14.13.227","propane 2-monooxygenase"],["RHEA%3A49992","propane + NADH + O2 + H(+) = propan-2-ol + NAD(+) + H2O"],["proteintraitsmech%3ABIOLIP_TME","TME-binding site"]]},{"id":"CHEBI:33229","l":"vitamin (role)","na":1,"nb":3,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.21","The Solute:Sodium Symporter (SSS) Family"]]},{"id":"CHEBI:33359","l":"rhodium atom","na":1,"nb":3,"a":[["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_RH_DINUCLEAR","dinuclear rhodium site"],["proteintraitsmech%3AMETALPDB_RH_MONONUCLEAR","mononuclear rhodium site"],["proteintraitsmech%3AMETALPDB_RH_TRINUCLEAR","trinuclear rhodium site"]]},{"id":"CHEBI:35780","l":"phosphate ion","na":3,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"]]},{"id":"CHEBI:412516","l":"5-hydroxymethylfurfural","na":1,"nb":3,"a":[["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"]],"b":[["EC%3A1.1.3.47","5-(hydroxymethyl)furfural oxidase"],["RHEA%3A32683","5-hydroxymethylfurfural + 3 O2 + 2 H2O = 2,5-dicarboxyfuran + 3 H2O2 + 2 H(+)"],["RHEA%3A43504","5-hydroxymethylfurfural + O2 = 2,5-diformylfuran + H2O2"]]},{"id":"CHEBI:49631","l":"gallium atom","na":1,"nb":3,"a":[["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_GA_DINUCLEAR","dinuclear gallium site"],["proteintraitsmech%3AMETALPDB_GA_MONONUCLEAR","mononuclear gallium site"],["proteintraitsmech%3AMETALPDB_GA_TETRANUCLEAR","tetranuclear gallium site"]]},{"id":"CHEBI:50699","l":"oligosaccharide","na":1,"nb":3,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"]]},{"id":"CHEBI:920","l":"2,4-dinitrotoluene","na":1,"nb":3,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["EC%3A1.14.12.24","2,4-dinitrotoluene dioxygenase"],["RHEA%3A80191","2,4-dinitrotoluene + 2 NADPH + 2 H(+) = 4-hydroxylamino-2-nitrotoluene + 2 NADP(+) + H2O"],["RHEA%3A46760","2,4-dinitrotoluene + NADH + O2 = 4-methyl-5-nitrocatechol + nitrite + NAD(+)"]]},{"id":"GO:0005982","l":"starch metabolic process","na":1,"nb":3,"a":[["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"]],"b":[["GO%3A0019252","starch biosynthetic process"],["GO%3A0005983","starch catabolic process"],["GO%3A0005982","starch metabolic process"]]},{"id":"GO:0006544","l":"glycine metabolic process","na":1,"nb":3,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"]],"b":[["GO%3A0006545","glycine biosynthetic process"],["GO%3A0006546","glycine catabolic process"],["GO%3A0006544","glycine metabolic process"]]},{"id":"GO:0019563","l":"glycerol catabolic process","na":1,"nb":3,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["GO%3A0019588","anaerobic glycerol catabolic process"],["GO%3A0019563","glycerol catabolic process"],["NCBIfam%3ANF008478","dihydroxyacetone kinase phosphoryl donor subunit DhaM"]]},{"id":"GO:0044002","l":"acquisition of nutrients from host","na":1,"nb":3,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0044002","acquisition of nutrients from host"],["GO%3A0044847","iron acquisition from host"],["GO%3A0052091","modulation of nutrient release by host"]]},{"id":"GO:1902422","l":"hydrogen biosynthetic process","na":1,"nb":3,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["GO%3A1902422","hydrogen biosynthetic process"],["GO%3A0044817","hydrogen generation via biophotolysis"],["GO%3A0044835","hydrogen generation via nitrogenase"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":1,"nb":3,"a":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["Pfam%3APF05258","Dna[CI] antecedent, DciA"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"],["TED%3AAF-Q0RZW9-F1-model_v4_TED03","TED highly-symmetric fold AF-Q0RZW9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":1,"nb":3,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF08130","Type A lantibiotic family"],["Pfam%3APF04738","Lantibiotic dehydratase, N terminus"]]},{"id":"NCBITaxon:1587","l":"Lactobacillus helveticus","na":1,"nb":3,"a":[["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"]],"b":[["Pfam%3APF18008","Replication initiator protein A C-terminal domain"],["Pfam%3APF20956","Domain of unknown function (DUF4931) C-terminal domain"],["Pfam%3APF17312","Bacteriocin helveticin-J"]]},{"id":"NCBITaxon:1589","l":"Lactiplantibacillus pentosus","na":1,"nb":3,"a":[["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["PROSITE%3APS60002","Phosphoketolase signature 1"],["PROSITE%3APS60003","Phosphoketolase signature 2"],["TED%3AAF-A0A2K9I3V8-F1-model_v4_TED01","TED novel fold AF-A0A2K9I3V8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1624","l":"Ligilactobacillus salivarius","na":1,"nb":3,"a":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]],"b":[["TED%3AAF-A0A7X2SS58-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X2SS58-F1-model_v4_TED01"],["TED%3AAF-A0A089QBS8-F1-model_v4_TED02","TED novel fold AF-A0A089QBS8-F1-model_v4_TED02"],["TED%3AAF-A0A2A2XCA8-F1-model_v4_TED01","TED novel fold AF-A0A2A2XCA8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1680","l":"Bifidobacterium adolescentis","na":1,"nb":3,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]],"b":[["TED%3AAF-A0A1X2Z2R7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1X2Z2R7-F1-model_v4_TED02"],["TED%3AAF-A0A1X2Z7X6-F1-model_v4_TED02","TED novel fold AF-A0A1X2Z7X6-F1-model_v4_TED02"],["TED%3AAF-A0A1X2ZNR8-F1-model_v4_TED04","TED novel fold AF-A0A1X2ZNR8-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":3,"nb":1,"a":[["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["TED%3AAF-A0A415C3I8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A415C3I8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1708","l":"Cellulomonas fimi","na":1,"nb":3,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["Pfam%3APF00553","Cellulose binding domain"],["PROSITE%3APS00561","CBM2a (carbohydrate-binding type-2) domain signature"],["PROSITE%3APS00591","Glycosyl hydrolases family 10 (GH10) active site"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":3,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]],"b":[["TED%3AAF-A0A142EAM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142EAM9-F1-model_v4_TED03"],["TED%3AAF-A0A1Q3DTY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3DTY6-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3DNE3-F1-model_v4_TED01","TED novel fold AF-A0A1Q3DNE3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:192","l":"Azospirillum brasilense","na":1,"nb":3,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"]],"b":[["Pfam%3APF24931","ACR9-like, ACT-like domain"],["Pfam%3APF27444","Uridylyltransferase GlnD third domain"],["TED%3AAF-A0A235H319-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A235H319-F1-model_v4_TED01"]]},{"id":"NCBITaxon:198620","l":"Pseudomonas koreensis","na":3,"nb":1,"a":[["FourSpecies_Aerobic_Lung_Microbiome_Model.html","Four-Species Aerobic Lung Microbiome Model"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["TED%3AAF-A0A1G7ALV2-F1-model_v4_TED02","TED novel fold AF-A0A1G7ALV2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:203124","l":"Trichodesmium erythraeum IMS101","na":1,"nb":3,"a":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["Pfam%3APF06206","CpeT/CpcT family (DUF1001)"],["Pfam%3APF18460","Heterocyst differentiation regulator C-terminal Hood domain"],["TED%3AAF-Q10WG6-F1-model_v4_TED05","TED highly-symmetric fold AF-Q10WG6-F1-model_v4_TED05"]]},{"id":"NCBITaxon:216816","l":"Bifidobacterium longum","na":3,"nb":1,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["TED%3AAF-A0A413ACI9-F1-model_v4_TED01","TED novel fold AF-A0A413ACI9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2208","l":"Methanosarcina barkeri","na":3,"nb":1,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["Pfam%3APF09505","Dimethylamine methyltransferase (Dimeth_PyL)"]]},{"id":"NCBITaxon:33039","l":"[Ruminococcus] torques","na":1,"nb":3,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["TED%3AAF-A0A174ZX33-F1-model_v4_TED01","TED novel fold AF-A0A174ZX33-F1-model_v4_TED01"],["TED%3AAF-A0A6N3EHF6-F1-model_v4_TED02","TED novel fold AF-A0A6N3EHF6-F1-model_v4_TED02"],["TED%3AAF-A0A6N3EHH7-F1-model_v4_TED01","TED novel fold AF-A0A6N3EHH7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":1,"nb":3,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"],["TED%3AAF-A0A7H8I034-F1-model_v4_TED01","TED novel fold AF-A0A7H8I034-F1-model_v4_TED01"]]},{"id":"NCBITaxon:582","l":"Morganella morganii","na":1,"nb":3,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["PROSITE%3APS01157","Class A bacterial acid phosphatases signature"],["TED%3AAF-A0A2C5TPE5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2C5TPE5-F1-model_v4_TED01"],["TED%3AAF-A0A0A2RJY1-F1-model_v4_TED02","TED novel fold AF-A0A0A2RJY1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:70448","l":"Ostreococcus tauri","na":1,"nb":3,"a":[["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"]],"b":[["TED%3AAF-A0A090M1U3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A090M1U3-F1-model_v4_TED02"],["TED%3AAF-A0A090M3Z3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A090M3Z3-F1-model_v4_TED01"],["TED%3AAF-A0A1Y5INV9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y5INV9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:831","l":"Butyrivibrio fibrisolvens","na":1,"nb":3,"a":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"]],"b":[["Pfam%3APF16738","Starch-binding module 26"],["Pfam%3APF18318","Glutamine synthetase C-terminal domain"],["Pfam%3APF12437","Glutamine synthetase type III N terminal"]]},{"id":"NCBITaxon:94130","l":"Rhizophagus clarus","na":1,"nb":3,"a":[["Mediterranean_AM_Fungal_SixSpecies_SynCom.html","Mediterranean AM Fungal Six-Species SynCom"]],"b":[["TED%3AAF-A0A2Z6R1J4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z6R1J4-F1-model_v4_TED01"],["TED%3AAF-A0A2Z6SKM0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z6SKM0-F1-model_v4_TED01"],["TED%3AAF-A0A2Z6S4T9-F1-model_v4_TED04","TED novel fold AF-A0A2Z6S4T9-F1-model_v4_TED04"]]},{"id":"CHEBI:134612","l":"staphyloferrin B","na":1,"nb":2,"a":[["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_134612","requires staphyloferrin B"],["proteintraitsmech%3ABIOLIP_SE8","SE8-binding site"]]},{"id":"CHEBI:15729","l":"L-ornithine","na":1,"nb":2,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["MCSA%3A12","ornithine carbamoyltransferase"],["proteintraitsmech%3ABIOLIP_ORN","ORN-binding site"]]},{"id":"CHEBI:15904","l":"long-chain fatty acid","na":1,"nb":2,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:15940","l":"nicotinic acid","na":1,"nb":2,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15940","requires nicotinic acid"],["proteintraitsmech%3ABIOLIP_NIO","NIO-binding site"]]},{"id":"CHEBI:15982","l":"cob(I)alamin","na":2,"nb":1,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15982","requires cob(I)alamin"]]},{"id":"CHEBI:16830","l":"methylamine","na":2,"nb":1,"a":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"]],"b":[["proteintraitsmech%3ABIOLIP_NME","NME-binding site"]]},{"id":"CHEBI:16914","l":"salicylic acid","na":2,"nb":1,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"]],"b":[["proteintraitsmech%3ABIOLIP_SAL","SAL-binding site"]]},{"id":"CHEBI:16991","l":"deoxyribonucleic acid","na":2,"nb":1,"a":[["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_DNA","DNA-binding site"]]},{"id":"CHEBI:17747","l":"bis(2-ethylhexyl) phthalate","na":1,"nb":2,"a":[["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"]],"b":[["EC%3A3.1.1.60","bis(2-ethylhexyl)phthalate esterase"],["RHEA%3A15529","bis(2-ethylhexyl)phthalate + H2O = 2-ethylhexan-1-ol + 2-ethylhexyl phthalate + H(+)"]]},{"id":"CHEBI:179252","l":"4-Ethyl-2-methoxyphenol","na":2,"nb":1,"a":[["Sichuan_Shai_Vinegar_Yeast_Flavor_SynCom.html","Sichuan Shai Vinegar Yeast Flavor SynCom"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["RHEA%3A73959","2-methoxy-4-vinylphenol + NADH + H(+) = 4-ethyl-2-methoxyphenol + NAD(+)"]]},{"id":"CHEBI:18053","l":"1-aminocyclopropanecarboxylic acid","na":2,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["proteintraitsmech%3ABIOLIP_1AC","1AC-binding site"]]},{"id":"CHEBI:23530","l":"cytokinin","na":1,"nb":2,"a":[["Staged_Cattle_Manure_Ensifer_Bacillus_SynCom.html","Staged Ensifer-Bacillus Cattle-Manure Wastewater SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"]]},{"id":"CHEBI:28073","l":"chromium atom","na":1,"nb":2,"a":[["Meghalaya_Bacillus_Consortia_A22ED9.html","Meghalaya Bacillus Consortia-A22ED9"]],"b":[["proteintraitsmech%3AMETALPDB_CR_DINUCLEAR","dinuclear chromium site"],["proteintraitsmech%3AMETALPDB_CR_MONONUCLEAR","mononuclear chromium site"]]},{"id":"CHEBI:28757","l":"fructose","na":1,"nb":2,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["GO%3A0070061","fructose binding"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:28817","l":"dodecane","na":1,"nb":2,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["RHEA%3A76739","dodecane + reduced [NADPH--hemoprotein reductase] + O2 = 5-dodecanol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["proteintraitsmech%3ABIOLIP_D12","D12-binding site"]]},{"id":"CHEBI:28837","l":"octanoic acid","na":2,"nb":1,"a":[["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["proteintraitsmech%3ABIOLIP_OCA","OCA-binding site"]]},{"id":"CHEBI:29016","l":"arginine","na":1,"nb":2,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:29073","l":"L-ascorbic acid","na":1,"nb":2,"a":[["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29073","requires L-ascorbic acid"],["proteintraitsmech%3ABIOLIP_ASC","ASC-binding site"]]},{"id":"CHEBI:29681","l":"surfactin","na":1,"nb":2,"a":[["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]]},{"id":"CHEBI:30832","l":"adipic acid","na":1,"nb":2,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["proteintraitsmech%3ABIOLIP_0L1","0L1-binding site"]]},{"id":"CHEBI:32588","l":"potassium chloride","na":2,"nb":1,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"]],"b":[["TCDB%3A2.A.30","The Cation-Chloride Cotransporter (CCC) Family"]]},{"id":"CHEBI:33284","l":"nutrient","na":2,"nb":1,"a":[["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["TCDB%3A1.A.91","The Cytoadherence-linked Asexual Protein 3.2 of Plasmodium falciparum (Clag3) Family"]]},{"id":"CHEBI:33848","l":"polycyclic arene","na":2,"nb":1,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Pelagerythrobacter_Salinicola_PES_Pyrene_Degradation_SynCom.html","Pelagerythrobacter-Salinicola PES Pyrene-Degradation SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:33913","l":"corrinoid","na":2,"nb":1,"a":[["Soil_Corrinoid_B12_Reservoir_Community.html","Soil Corrinoid Reservoir Microbial Community"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_33913","requires corrinoid"]]},{"id":"CHEBI:35381","l":"monosaccharide","na":2,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:35404","l":"chromate(2-)","na":2,"nb":1,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"]],"b":[["RHEA%3A32819","chromate(in) = chromate(out)"]]},{"id":"CHEBI:36219","l":"alpha-lactose","na":2,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"]],"b":[["RHEA%3A84479","alpha-lactose = lactulose"]]},{"id":"CHEBI:40646","l":"autoinducer-2","na":1,"nb":2,"a":[["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.86","The Autoinducer-2 Exporter (AI-2E) Family (Formerly the PerM Family, TC #9.B.22)"]]},{"id":"CHEBI:42111","l":"(R)-lactic acid","na":2,"nb":1,"a":[["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_LAC","LAC-binding site"]]},{"id":"CHEBI:44534","l":"N-(3-oxododecanoyl)-L-homoserine lactone","na":2,"nb":1,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["proteintraitsmech%3ABIOLIP_OHN","OHN-binding site"]]},{"id":"CHEBI:46442","l":"vanadate(3-)","na":2,"nb":1,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["proteintraitsmech%3ABIOLIP_VO4","VO4-binding site"]]},{"id":"CHEBI:47381","l":"diclofenac","na":1,"nb":2,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["proteintraitsmech%3ABIOLIP_DIF","DIF-binding site"]]},{"id":"CHEBI:49544","l":"chromium(3+)","na":1,"nb":2,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["RHEA%3A44372","Cr(6+) + 2 NADH + O2 = Cr(3+) + superoxide + 2 NAD(+) + 2 H(+)"],["RHEA%3A44368","Cr(6+) + 2 NADPH + O2 = Cr(3+) + superoxide + 2 NADP(+) + 2 H(+)"]]},{"id":"CHEBI:53650","l":"guaiacylglycerol-beta-guaiacyl ether","na":1,"nb":2,"a":[["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["EC%3A1.11.1.16","versatile peroxidase"],["RHEA%3A22396","1-(4-hydroxy-3-methoxyphenyl)-2-(2-methoxyphenoxy)propane-1,3-diol + H2O2 = guaiacol + vanillin + glycolaldehyde + H2O"]]},{"id":"CHEBI:61448","l":"isopropyl beta-D-thiogalactopyranoside","na":1,"nb":2,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_IPT","IPT-binding site"]]},{"id":"CHEBI:82420","l":"1-chloro-3-nitrobenzene","na":1,"nb":2,"a":[["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]],"b":[["RHEA%3A57808","1-chloro-3-nitrobenzene + NADH + O2 = 3-chlorocatechol + nitrite + NAD(+)"],["RHEA%3A57804","1-chloro-3-nitrobenzene + NADH + O2 = 4-chlorocatechol + nitrite + NAD(+)"]]},{"id":"CHEBI:84046","l":"pyoverdine","na":1,"nb":2,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_84046","requires pyoverdine"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"GO:0006082","l":"obsolete organic acid metabolic process","na":2,"nb":1,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["PANTHER%3APTHR43680","NITRATE REDUCTASE MOLYBDENUM COFACTOR ASSEMBLY CHAPERONE"]]},{"id":"GO:0006568","l":"obsolete L-tryptophan metabolic process","na":1,"nb":2,"a":[["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"]],"b":[["Pfam%3APF00697","N-(5'phosphoribosyl)anthranilate (PRA) isomerase"],["Pfam%3APF00290","Tryptophan synthase alpha chain"]]},{"id":"GO:0006798","l":"polyphosphate catabolic process","na":1,"nb":2,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"]],"b":[["GO%3A0006798","polyphosphate catabolic process"],["NCBIfam%3ATIGR03706","exopolyphosphatase"]]},{"id":"GO:0006995","l":"cellular response to nitrogen starvation","na":1,"nb":2,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["GO%3A0006995","cellular response to nitrogen starvation"],["GO%3A0031142","induction of conjugation upon nitrogen starvation"]]},{"id":"GO:0010025","l":"wax biosynthetic process","na":1,"nb":2,"a":[["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"]],"b":[["GO%3A0010025","wax biosynthetic process"],["Reactome%3AR-HSA-9640463","Wax biosynthesis"]]},{"id":"GO:0019417","l":"sulfur oxidation","na":1,"nb":2,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["GO%3A0019417","sulfur oxidation"],["NCBIfam%3ATIGR04484","sulfur oxidation c-type cytochrome SoxA"]]},{"id":"GO:0019676","l":"ammonia assimilation cycle","na":1,"nb":2,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]],"b":[["ComplexPortal%3ACPX-5041","Glutamate synthase [NADPH] complex"],["GO%3A0019676","ammonia assimilation cycle"]]},{"id":"GO:0046359","l":"butyrate catabolic process","na":2,"nb":1,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["GO%3A0046359","butyrate catabolic process"]]},{"id":"GO:0071466","l":"cellular response to xenobiotic stimulus","na":1,"nb":2,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["ComplexPortal%3ACPX-2121","EmrE multidrug transporter complex"],["GO%3A0071466","cellular response to xenobiotic stimulus"]]},{"id":"GO:0141082","l":"symbiont-mediated detoxification of host-generated reactive oxygen species","na":1,"nb":2,"a":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["GO%3A0141082","symbiont-mediated detoxification of host-generated reactive oxygen species"],["Reactome%3AR-HSA-1222538","Tolerance by Mtb to nitric oxide produced by macrophages"]]},{"id":"NCBITaxon:105841","l":"Anaerostipes caccae","na":2,"nb":1,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["TED%3AAF-A0A6N2WKG2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N2WKG2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1245","l":"Leuconostoc mesenteroides","na":1,"nb":2,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["Pfam%3APF08951","Bacteriocin immunity protein family"],["TED%3AAF-A0A8B5R1X5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B5R1X5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1249","l":"Weissella paramesenteroides","na":1,"nb":2,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["Pfam%3APF01874","ATP:dephospho-CoA triphosphoribosyl transferase"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"]]},{"id":"NCBITaxon:1303","l":"Streptococcus oralis","na":1,"nb":2,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["Pfam%3APF03047","COMC family"],["TED%3AAF-A0A139PPG4-F1-model_v4_TED02","TED novel fold AF-A0A139PPG4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1317","l":"Streptococcus downei","na":2,"nb":1,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"],["FourSpecies_Aerobic_Lung_Microbiome_Model.html","Four-Species Aerobic Lung Microbiome Model"]],"b":[["Pfam%3APF13199","Glycosyl hydrolase family 66"]]},{"id":"NCBITaxon:1335","l":"Streptococcus equinus","na":2,"nb":1,"a":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"]],"b":[["TED%3AAF-A0A1V0GLT7-F1-model_v4_TED01","TED novel fold AF-A0A1V0GLT7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1582","l":"Lacticaseibacillus casei","na":1,"nb":2,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["Pfam%3APF07475","HPr Serine kinase C-terminal domain"],["PROSITE%3APS01163","Galactose-1-phosphate uridyl transferase family 2 signature"]]},{"id":"NCBITaxon:158836","l":"Enterobacter hormaechei","na":1,"nb":2,"a":[["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["TED%3AAF-A0A431SE22-F1-model_v4_TED01","TED novel fold AF-A0A431SE22-F1-model_v4_TED01"],["TED%3AAF-A0A8B5ZRS3-F1-model_v4_TED01","TED novel fold AF-A0A8B5ZRS3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1597","l":"Lacticaseibacillus paracasei","na":1,"nb":2,"a":[["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["Pfam%3APF09136","Glucodextranase, domain B"],["Pfam%3APF08109","Lactocin 705 family"]]},{"id":"NCBITaxon:1655","l":"Actinomyces naeslundii","na":1,"nb":2,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["Pfam%3APF16555","Gram-positive pilin subunit D1, N-terminal domain"],["TED%3AAF-A0A2Z5QNH6-F1-model_v4_TED02","TED novel fold AF-A0A2Z5QNH6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1871043","l":"Variovorax sp.","na":2,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]],"b":[["TED%3AAF-A0A2E9BKC8-F1-model_v4_TED02","TED novel fold AF-A0A2E9BKC8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1908224","l":"Sphingopyxis sp.","na":2,"nb":1,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["TED%3AAF-A0A2G2D229-F1-model_v4_TED01","TED novel fold AF-A0A2G2D229-F1-model_v4_TED01"]]},{"id":"NCBITaxon:244366","l":"Klebsiella variicola","na":2,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["TED%3AAF-A0A2N4Z4E2-F1-model_v4_TED01","TED novel fold AF-A0A2N4Z4E2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:246200","l":"Ruegeria pomeroyi DSS-3","na":1,"nb":2,"a":[["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["Pfam%3APF16867","Dimethlysulfonioproprionate lyase"],["Pfam%3APF09347","Domain of unknown function (DUF1989)"]]},{"id":"NCBITaxon:252970","l":"Paraburkholderia phenoliruptrix","na":1,"nb":2,"a":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]],"b":[["TED%3AAF-A0A6J5BF93-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6J5BF93-F1-model_v4_TED01"],["TED%3AAF-A0A6J5BWX8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6J5BWX8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":2,"nb":1,"a":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]],"b":[["PROSITE%3APS01322","Phosphotriesterase family signature 1"]]},{"id":"NCBITaxon:29466","l":"Veillonella parvula","na":2,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]],"b":[["TED%3AAF-A0A134BYG5-F1-model_v4_TED01","TED novel fold AF-A0A134BYG5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:299767","l":"Enterobacter ludwigii","na":2,"nb":1,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["TED%3AAF-W0BYN9-F1-model_v4_TED01","TED highly-symmetric fold AF-W0BYN9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:323259","l":"Methanospirillum hungatei JF-1","na":2,"nb":1,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["Pfam%3APF01864","CDP-archaeol synthase"]]},{"id":"NCBITaxon:33959","l":"Lactobacillus johnsonii","na":2,"nb":1,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]],"b":[["Pfam%3APF13518","Helix-turn-helix domain"]]},{"id":"NCBITaxon:375","l":"Bradyrhizobium japonicum","na":1,"nb":2,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"]],"b":[["TED%3AAF-A0A1L3FD53-F1-model_v4_TED02","TED novel fold AF-A0A1L3FD53-F1-model_v4_TED02"],["TED%3AAF-A0A1L3FDV4-F1-model_v4_TED02","TED novel fold AF-A0A1L3FDV4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:3818","l":"Arachis hypogaea","na":1,"nb":2,"a":[["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["TED%3AAF-A0A445AVV9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A445AVV9-F1-model_v4_TED02"],["TED%3AAF-A0A444Z3U3-F1-model_v4_TED01","TED novel fold AF-A0A444Z3U3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:40214","l":"Acinetobacter johnsonii","na":1,"nb":2,"a":[["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["Pfam%3APF12973","ChrR Cupin-like domain"],["Pfam%3APF13807","G-rich domain on putative tyrosine kinase"]]},{"id":"NCBITaxon:408","l":"Methylorubrum extorquens","na":2,"nb":1,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["Pfam%3APF04476","4-HFC-P synthase"]]},{"id":"NCBITaxon:4530","l":"Oryza sativa","na":1,"nb":2,"a":[["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"]],"b":[["Pfam%3APF10839","Protein of unknown function (DUF2647)"],["PROSITE%3APS00937","Ribosomal protein L20 signature"]]},{"id":"NCBITaxon:536","l":"Chromobacterium violaceum","na":1,"nb":2,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"]],"b":[["TED%3AAF-A0A381EUD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A381EUD6-F1-model_v4_TED01"],["TED%3AAF-A0A447THJ9-F1-model_v4_TED01","TED novel fold AF-A0A447THJ9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:582702","l":"Rhodanobacter glycinis","na":1,"nb":2,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"]],"b":[["TED%3AAF-A0A1I4G4N7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I4G4N7-F1-model_v4_TED02"],["TED%3AAF-A0A502CFB8-F1-model_v4_TED01","TED novel fold AF-A0A502CFB8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:64104","l":"Bacillus pseudomycoides","na":1,"nb":2,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["TED%3AAF-A0A1Y3MB62-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y3MB62-F1-model_v4_TED01"],["TED%3AAF-A0A2C4USY5-F1-model_v4_TED01","TED novel fold AF-A0A2C4USY5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:659243","l":"Bacillus siamensis","na":2,"nb":1,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"]],"b":[["TED%3AAF-A0A853L550-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A853L550-F1-model_v4_TED02"]]},{"id":"NCBITaxon:82380","l":"Microbacterium oxydans","na":2,"nb":1,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]],"b":[["TED%3AAF-A0A4Y4GD74-F1-model_v4_TED02","TED novel fold AF-A0A4Y4GD74-F1-model_v4_TED02"]]},{"id":"NCBITaxon:94626","l":"Brucella tritici","na":1,"nb":2,"a":[["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]],"b":[["TED%3AAF-A0A7X6FRR6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X6FRR6-F1-model_v4_TED01"],["TED%3AAF-A0A7X6JC90-F1-model_v4_TED01","TED novel fold AF-A0A7X6JC90-F1-model_v4_TED01"]]},{"id":"NCBITaxon:971","l":"Pseudoselenomonas ruminantium","na":1,"nb":2,"a":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"]],"b":[["TED%3AAF-A0A1H0QI16-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H0QI16-F1-model_v4_TED02"],["TED%3AAF-A0A1I6XHL5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I6XHL5-F1-model_v4_TED01"]]},{"id":"UBERON:0002097","l":"skin of body","na":1,"nb":2,"a":[["SkinCom_Synthetic_Skin_Community.html","SkinCom Synthetic Skin Community"]],"b":[["GO%3A0043588","skin development"],["GO%3A0043589","skin morphogenesis"]]},{"id":"CHEBI:15517","l":"butyryl-CoA","na":1,"nb":1,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_BCO","BCO-binding site"]]},{"id":"CHEBI:15859","l":"N-carbamoyl-L-aspartic acid","na":1,"nb":1,"a":[["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:16119","l":"shikimic acid","na":1,"nb":1,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["proteintraitsmech%3ABIOLIP_SKM","SKM-binding site"]]},{"id":"CHEBI:16449","l":"alanine","na":1,"nb":1,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["MCSA%3A724","repressor LexA"]]},{"id":"CHEBI:16988","l":"D-ribose","na":1,"nb":1,"a":[["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:17089","l":"glycoprotein","na":1,"nb":1,"a":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"]],"b":[["TCDB%3A9.B.417","The MCFD2/LMAN1 Complex Receptor (MLM-CR) Family"]]},{"id":"CHEBI:17359)","l":"","na":1,"nb":1,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"]],"b":[["RHEA%3A12945","2'-hydroxybiphenyl-2-sulfinate + H2O = biphenyl-2-ol + sulfite + H(+)"]]},{"id":"CHEBI:17418","l":"valeric acid","na":1,"nb":1,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_LEA","LEA-binding site"]]},{"id":"CHEBI:17514","l":"cyanide","na":1,"nb":1,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"]],"b":[["proteintraitsmech%3ABIOLIP_CYN","CYN-binding site"]]},{"id":"CHEBI:17642","l":"pentachlorophenol","na":1,"nb":1,"a":[["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_PCI","PCI-binding site"]]},{"id":"CHEBI:18012","l":"fumaric acid","na":1,"nb":1,"a":[["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["proteintraitsmech%3ABIOLIP_FUM","FUM-binding site"]]},{"id":"CHEBI:18186","l":"tyrosine","na":1,"nb":1,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["MCSA%3A668","leishmanolysin"]]},{"id":"CHEBI:22660","l":"aspartic acid","na":1,"nb":1,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"]]},{"id":"CHEBI:24632","l":"hydrocarbon","na":1,"nb":1,"a":[["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"]],"b":[["TCDB%3A1.B.9","The FadL Outer Membrane Protein (FadL) Family"]]},{"id":"CHEBI:26401","l":"purines","na":1,"nb":1,"a":[["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:27570","l":"histidine","na":1,"nb":1,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:28260","l":"galactose","na":1,"nb":1,"a":[["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:28808","l":"mannan","na":1,"nb":1,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"]],"b":[["TCDB%3A4.A.3","The PTS Lactose-N,N'-Diacetylchitobiose-β-glucoside (Lac) Family"]]},{"id":"CHEBI:30531","l":"pimelic acid","na":1,"nb":1,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["proteintraitsmech%3ABIOLIP_PML","PML-binding site"]]},{"id":"CHEBI:30778","l":"gallic acid","na":1,"nb":1,"a":[["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_GDE","GDE-binding site"]]},{"id":"CHEBI:32079","l":"pyrrolnitrin","na":1,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["RHEA%3A46136","aminopyrrolnitrin + NADPH + 2 O2 + H(+) = pyrrolnitrin + NADP(+) + 2 H2O"]]},{"id":"CHEBI:33198","l":"D-gluconic acid","na":1,"nb":1,"a":[["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"]],"b":[["proteintraitsmech%3ABIOLIP_GCO","GCO-binding site"]]},{"id":"CHEBI:34031","l":"1,1-dichloroethene","na":1,"nb":1,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["RHEA%3A68000","1,1-dichloroethene + AH2 = chloroethene + chloride + A + H(+)"]]},{"id":"CHEBI:34631","l":"chlorpyrifos","na":1,"nb":1,"a":[["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:35366","l":"fatty acid","na":1,"nb":1,"a":[["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:36976","l":"nucleotide","na":1,"nb":1,"a":[["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"]],"b":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"]]},{"id":"CHEBI:38155","l":"phytosiderophore","na":1,"nb":1,"a":[["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["TCDB%3A2.A.67","The Oligopeptide Transporter (OPT) Family"]]},{"id":"CHEBI:38372","l":"cis-2-dodecenoic acid","na":1,"nb":1,"a":[["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_GEY","GEY-binding site"]]},{"id":"CHEBI:41131","l":"crotonic acid","na":1,"nb":1,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_BEO","BEO-binding site"]]},{"id":"CHEBI:45441","l":"N-acetyl-L-serine","na":1,"nb":1,"a":[["Watermelon_Rhizosphere_Fusarium_SynCom8.html","Watermelon Rhizosphere Fusarium-Protective SynCom8"]],"b":[["proteintraitsmech%3ABIOLIP_SAC","SAC-binding site"]]},{"id":"CHEBI:46645","l":"isobutanol","na":1,"nb":1,"a":[["Trichoderma_Ecoli_Cellulosic_Isobutanol_Coculture.html","Trichoderma-E. coli Cellulosic Isobutanol Coculture"]],"b":[["RHEA%3A64692","isobutanol + NAD(+) = 2-methylpropanal + NADH + H(+)"]]},{"id":"CHEBI:49017","l":"3-methylthiopropanal","na":1,"nb":1,"a":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["RHEA%3A55076","4-methylsulfanyl-2-oxobutanoate + H(+) = 3-methylsulfanylpropanal + CO2"]]},{"id":"CHEBI:49890","l":"samarium(3+)","na":1,"nb":1,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_SM","SM-binding site"]]},{"id":"CHEBI:49980","l":"ytterbium(3+)","na":1,"nb":1,"a":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["proteintraitsmech%3ABIOLIP_YB","YB-binding site"]]},{"id":"CHEBI:7476","l":"naproxen","na":1,"nb":1,"a":[["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"]],"b":[["proteintraitsmech%3ABIOLIP_NPS","NPS-binding site"]]},{"id":"CHEBI:75861","l":"arsenopyrite","na":1,"nb":1,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"]],"b":[["TCDB%3A3.A.4","The Arsenite-Antimonite (ArsAB) Efflux Family"]]},{"id":"CHEBI:84043","l":"gallium(3+)","na":1,"nb":1,"a":[["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"GO:0006046","l":"N-acetylglucosamine catabolic process","na":1,"nb":1,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]],"b":[["GO%3A0006046","N-acetylglucosamine catabolic process"]]},{"id":"GO:0019249","l":"lactate biosynthetic process","na":1,"nb":1,"a":[["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["GO%3A0019249","lactate biosynthetic process"]]},{"id":"GO:0019253","l":"reductive pentose-phosphate cycle","na":1,"nb":1,"a":[["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["GO%3A0019253","reductive pentose-phosphate cycle"]]},{"id":"GO:0019332","l":"aerobic respiration, using nitrite as electron donor","na":1,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"]],"b":[["GO%3A0019332","aerobic respiration, using nitrite as electron donor"]]},{"id":"GO:0022622","l":"root system development","na":1,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["GO%3A0022622","root system development"]]},{"id":"GO:0042192","l":"methylmercury biosynthetic process","na":1,"nb":1,"a":[["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"]],"b":[["GO%3A0042192","methylmercury biosynthetic process"]]},{"id":"GO:0046202","l":"cyanide biosynthetic process","na":1,"nb":1,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"]],"b":[["GO%3A0046202","cyanide biosynthetic process"]]},{"id":"GO:0051850","l":"acquisition of nutrients from symbiont","na":1,"nb":1,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0051850","acquisition of nutrients from symbiont"]]},{"id":"GO:0140923","l":"magnetosome assembly","na":1,"nb":1,"a":[["Tropidoatractus_Magnetotacticus_Tripartite_Syntrophy.html","Tropidoatractus magnetotacticus Magnetotactic Ciliate Tripartite Syntrophy"]],"b":[["GO%3A0140923","magnetosome assembly"]]},{"id":"GO:1902087","l":"dimethylsulfoniopropionate catabolic process","na":1,"nb":1,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["GO%3A1902087","dimethylsulfoniopropionate catabolic process"]]},{"id":"NCBITaxon:101028","l":"Fusarium pseudograminearum","na":1,"nb":1,"a":[["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["TED%3AAF-A0A7S8DXW2-F1-model_v4_TED02","TED novel fold AF-A0A7S8DXW2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1072583","l":"Vreelandella boliviensis LC1","na":1,"nb":1,"a":[["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"]],"b":[["TED%3AAF-A0A265DTH2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A265DTH2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1165","l":"Anabaena cylindrica","na":1,"nb":1,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["Pfam%3APF17275","Family of unknown function (DUF5340)"]]},{"id":"NCBITaxon:118127","l":"Chryseobacterium proteolyticum","na":1,"nb":1,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["Pfam%3APF18626","Glutaminase"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":1,"nb":1,"a":[["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["TED%3AAF-A0A132HLN2-F1-model_v4_TED01","TED novel fold AF-A0A132HLN2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1215089","l":"Planococcus halocryophilus","na":1,"nb":1,"a":[["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"]],"b":[["TED%3AAF-A0A1C7DVM0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C7DVM0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":1,"nb":1,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["PROSITE%3APS01043","Transposases, IS30 family, signature"]]},{"id":"NCBITaxon:134","l":"Methylocystis parvus","na":1,"nb":1,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"]],"b":[["TED%3AAF-A0A6B8M6B0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6B8M6B0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:138074","l":"Serratia symbiotica","na":1,"nb":1,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"]],"b":[["TED%3AAF-A0A068YYP3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A068YYP3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1399","l":"Cytobacillus firmus","na":1,"nb":1,"a":[["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"]],"b":[["TED%3AAF-A0A800NFK9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A800NFK9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1520","l":"Clostridium beijerinckii","na":1,"nb":1,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"]],"b":[["TED%3AAF-A0A0B5QQV4-F1-model_v4_TED02","TED novel fold AF-A0A0B5QQV4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1547","l":"Thomasclavelia ramosa","na":1,"nb":1,"a":[["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["TED%3AAF-A0A3E3E4C4-F1-model_v4_TED02","TED novel fold AF-A0A3E3E4C4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1585","l":"Lactobacillus delbrueckii subsp. bulgaricus","na":1,"nb":1,"a":[["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["TED%3AAF-A0A809EIY6-F1-model_v4_TED02","TED novel fold AF-A0A809EIY6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:159743","l":"Paenibacillus terrae","na":1,"nb":1,"a":[["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"]],"b":[["TED%3AAF-A0A0D7WXS4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D7WXS4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1673428","l":"Cuniculiplasma divulgatum","na":1,"nb":1,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["TED%3AAF-A0A1N5S5J2-F1-model_v4_TED02","TED novel fold AF-A0A1N5S5J2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":1,"nb":1,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["Pfam%3APF08124","Polysaccharide lyase family 8, N terminal alpha-helical domain"]]},{"id":"NCBITaxon:1920","l":"Streptomyces nigrescens","na":1,"nb":1,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["Pfam%3APF03995","Peptidase inhibitor family I36"]]},{"id":"NCBITaxon:1979961","l":"Wenzhouxiangella sp.","na":1,"nb":1,"a":[["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["TED%3AAF-A0A5Q4GWL5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Q4GWL5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:216778","l":"Stenotrophomonas rhizophila","na":1,"nb":1,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"]],"b":[["TED%3AAF-A0A023XYG6-F1-model_v4_TED02","TED novel fold AF-A0A023XYG6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2209","l":"Methanosarcina mazei","na":1,"nb":1,"a":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"]],"b":[["TED%3AAF-A0A0F8CQX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F8CQX7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:223967","l":"Methylorubrum populi","na":1,"nb":1,"a":[["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"]],"b":[["TED%3AAF-A0A161JLG1-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A161JLG1-F1-model_v4_TED04"]]},{"id":"NCBITaxon:250","l":"Chryseobacterium gleum","na":1,"nb":1,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["TED%3AAF-A0A448B167-F1-model_v4_TED02","TED novel fold AF-A0A448B167-F1-model_v4_TED02"]]},{"id":"NCBITaxon:258","l":"Sphingobacterium spiritivorum","na":1,"nb":1,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["TED%3AAF-A0A380CHI8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A380CHI8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:264198","l":"Cupriavidus pinatubonensis JMP134","na":1,"nb":1,"a":[["Rhizorhabdus_Cupriavidus_BDE47_Degradation_SynCom.html","Rhizorhabdus-Cupriavidus BDE-47 Degradation SynCom"]],"b":[["TED%3AAF-Q476D1-F1-model_v4_TED02","TED highly-symmetric fold AF-Q476D1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:270351","l":"Methylobacterium aquaticum","na":1,"nb":1,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["TED%3AAF-A0A0J6S4M9-F1-model_v4_TED02","TED novel fold AF-A0A0J6S4M9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2759","l":"Eukaryota","na":1,"nb":1,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2759","Eukaryota orthologous groups (OrthoDB)"]]},{"id":"NCBITaxon:294710","l":"Proteiniphilum acetatigenes","na":1,"nb":1,"a":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"]],"b":[["TED%3AAF-A0A101HH48-F1-model_v4_TED02","TED novel fold AF-A0A101HH48-F1-model_v4_TED02"]]},{"id":"NCBITaxon:29875","l":"Trichoderma virens","na":1,"nb":1,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"]],"b":[["Pfam%3APF07249","Cerato-platanin"]]},{"id":"NCBITaxon:316385","l":"Escherichia coli str. K-12 substr. DH10B","na":1,"nb":1,"a":[["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["Pfam%3APF06392","Acid shock protein"]]},{"id":"NCBITaxon:33905","l":"Bifidobacterium thermophilum","na":1,"nb":1,"a":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["TED%3AAF-A0A2N3QE79-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3QE79-F1-model_v4_TED01"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":1,"nb":1,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["TED%3AAF-A0A679J1E9-F1-model_v4_TED01","TED novel fold AF-A0A679J1E9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:3747","l":"Fragaria x ananassa","na":1,"nb":1,"a":[["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["PROSITE%3APS00451","Pathogenesis-related proteins Bet v I family signature"]]},{"id":"NCBITaxon:37929","l":"Glutamicibacter nicotianae","na":1,"nb":1,"a":[["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"]],"b":[["Pfam%3APF16701","Adenylate cyclase regulatory domain"]]},{"id":"NCBITaxon:38304","l":"Corynebacterium tuberculostearicum","na":1,"nb":1,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["TED%3AAF-A0A7U0H937-F1-model_v4_TED01","TED novel fold AF-A0A7U0H937-F1-model_v4_TED01"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"]],"b":[["Pfam%3APF13282","Domain of unknown function (DUF4070)"]]},{"id":"NCBITaxon:40216","l":"Acinetobacter radioresistens","na":1,"nb":1,"a":[["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["TED%3AAF-A0A7D7YF26-F1-model_v4_TED02","TED novel fold AF-A0A7D7YF26-F1-model_v4_TED02"]]},{"id":"NCBITaxon:4054","l":"Panax ginseng","na":1,"nb":1,"a":[["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"]],"b":[["Pfam%3APF26168","Glycosyltransferase, N-terminal domain"]]},{"id":"NCBITaxon:453960","l":"Sulfobacillus benefaciens","na":1,"nb":1,"a":[["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"]],"b":[["TED%3AAF-A0A2T2WWZ6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2T2WWZ6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:47715","l":"Lacticaseibacillus rhamnosus","na":1,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["Pfam%3APF04914","DltD protein"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":1,"nb":1,"a":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]],"b":[["TED%3AAF-A0A4R6CRR7-F1-model_v4_TED01","TED novel fold AF-A0A4R6CRR7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:4909","l":"Pichia kudriavzevii","na":1,"nb":1,"a":[["Sichuan_Shai_Vinegar_Yeast_Flavor_SynCom.html","Sichuan Shai Vinegar Yeast Flavor SynCom"]],"b":[["TED%3AAF-A0A099P804-F1-model_v4_TED01","TED novel fold AF-A0A099P804-F1-model_v4_TED01"]]},{"id":"NCBITaxon:4911","l":"Kluyveromyces marxianus","na":1,"nb":1,"a":[["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["Pfam%3APF04684","BAF1 / ABF1 chromatin reorganising factor"]]},{"id":"NCBITaxon:5007","l":"Brettanomyces bruxellensis","na":1,"nb":1,"a":[["Sichuan_Shai_Vinegar_Yeast_Flavor_SynCom.html","Sichuan Shai Vinegar Yeast Flavor SynCom"]],"b":[["TED%3AAF-A0A7D9CWH5-F1-model_v4_TED01","TED novel fold AF-A0A7D9CWH5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":1,"nb":1,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["Pfam%3APF07335","Fungal chitosanase of glycosyl hydrolase group 75"]]},{"id":"NCBITaxon:5547","l":"Trichoderma viride","na":1,"nb":1,"a":[["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["Pfam%3APF14587","O-Glycosyl hydrolase family 30"]]},{"id":"NCBITaxon:61435","l":"Dehalococcoides mccartyi","na":1,"nb":1,"a":[["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"]],"b":[["TED%3AAF-A0A2J1E0L6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J1E0L6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:68239","l":"Streptomyces mirabilis strain P8-A","na":1,"nb":1,"a":[["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["TED%3AAF-A0A1I2Y4U7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2Y4U7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:72360","l":"Bacillus mojavensis","na":1,"nb":1,"a":[["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["Pfam%3APF05952","Bacillus competence pheromone ComX"]]},{"id":"NCBITaxon:82367","l":"Paracoccus pantotrophus","na":1,"nb":1,"a":[["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"]],"b":[["Pfam%3APF17805","AsnC-like ligand binding domain"]]},{"id":"NCBITaxon:901","l":"Desulfovibrio piger","na":1,"nb":1,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["TED%3AAF-A0A848CHH4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A848CHH4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:96241","l":"Bacillus spizizenii","na":1,"nb":1,"a":[["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"]],"b":[["Pfam%3APF05952","Bacillus competence pheromone ComX"]]},{"id":"NCBITaxon:986","l":"Flavobacterium johnsoniae","na":1,"nb":1,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["TED%3AAF-A0A1J7BWE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1J7BWE6-F1-model_v4_TED01"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/CommunityMech--TraitMech.json b/assets/fleet/edges/CommunityMech--TraitMech.json index 40639d7..99916f1 100644 --- a/assets/fleet/edges/CommunityMech--TraitMech.json +++ b/assets/fleet/edges/CommunityMech--TraitMech.json @@ -1 +1 @@ -{"a":"CommunityMech","b":"TraitMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","TraitMech":"https://culturebotai.github.io/TraitMech/pages/traits/"},"n":153,"by":{"CHEBI":61,"NCBITaxon":57,"GO":35},"terms":[{"id":"CHEBI:16526","l":"carbon dioxide","na":72,"nb":30,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"]],"b":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"]]},{"id":"CHEBI:15379","l":"dioxygen","na":25,"nb":25,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["environment/aerobic.html","aerobic"],["environment/aerotolerant.html","aerotolerant"],["environment/anaerobic.html","anaerobic"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_aerobic.html","facultatively aerobic"],["environment/facultatively_anaerobic.html","facultatively anaerobic"]]},{"id":"GO:0015977","l":"carbon fixation","na":33,"nb":15,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":13,"nb":62,"a":[["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"]],"b":[["ecology/biosafety_level.html","biosafety level"],["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/host_associated.html","host-associated"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/halophily_preference.html","halophily preference"]]},{"id":"CHEBI:18276","l":"dihydrogen","na":54,"nb":13,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/does_not_use_as_electron_donor.html","does not use as electron donor"],["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"]]},{"id":"GO:0006113","l":"fermentation","na":37,"nb":11,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"]],"b":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"],["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":11,"nb":17,"a":[["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"]],"b":[["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/neutrophilic.html","neutrophilic"],["environment/non_halophilic.html","non halophilic"],["metabolism/biopolymer_degradation.html","biopolymer degradation"]]},{"id":"CHEBI:50860","l":"organic molecular entity","na":16,"nb":10,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["physiology/aerobic_anoxygenic_phototrophy.html","aerobic anoxygenic phototrophy"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"],["physiology/chemotrophic.html","chemotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"],["physiology/mixotrophic.html","mixotrophic"]]},{"id":"GO:0022900","l":"electron transport chain","na":15,"nb":10,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"]],"b":[["environment/obligately_aerobic.html","obligately aerobic"],["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/electron_transfer.html","Electron transfer"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"]]},{"id":"CHEBI:17234","l":"glucose","na":25,"nb":9,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"]],"b":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/biopolymer_degradation.html","biopolymer degradation"],["metabolism/cellulolysis.html","cellulolysis"],["metabolism/does_not_use_as_carbon_source.html","does not use as carbon source"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/starch_degradation.html","starch degradation"]]},{"id":"CHEBI:17632","l":"nitrate","na":24,"nb":9,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"],["metabolism/does_not_use_as_electron_acceptor.html","does not use as electron acceptor"]]},{"id":"GO:0009061","l":"anaerobic respiration","na":8,"nb":8,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["environment/anaerobic.html","anaerobic"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]]},{"id":"GO:0042710","l":"biofilm formation","na":26,"nb":7,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/host_associated.html","host-associated"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["ecology/plant_pathogen.html","plant pathogen"],["ecology/rhizosphere_association.html","rhizosphere association"]]},{"id":"CHEBI:16189","l":"sulfate","na":24,"nb":7,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"],["metabolism/disproportionation.html","Disproportionation"],["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"],["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":20,"nb":7,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/iron_oxidation.html","iron oxidation"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":7,"nb":10,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"]],"b":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/aerobic.html","aerobic"],["genomics/avast_system.html","AVAST system"],["morphology/motile.html","motile"],["morphology/motility.html","motility"]]},{"id":"CHEBI:15361","l":"pyruvate","na":7,"nb":7,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]]},{"id":"CHEBI:16134","l":"ammonia","na":13,"nb":6,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["environment/ph_delta_mid1.html","pH delta mid1"],["metabolism/nitrogen_fixation.html","nitrogen fixation"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"],["physiology/urease_activity.html","urease activity"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":6,"nb":11,"a":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"],["morphology/carboxysome.html","carboxysome"]]},{"id":"GO:0009060","l":"aerobic respiration","na":6,"nb":8,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Soil_CPR_Nanoarchaea_Rare_Biosphere_Community.html","Soil CPR Bacteria and Nanoarchaea Rare-Biosphere Community"]],"b":[["environment/aerobic.html","aerobic"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_aerobic.html","facultatively aerobic"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/obligately_aerobic.html","obligately aerobic"],["metabolism/aerobic_respiration.html","Aerobic respiration"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":7,"nb":6,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"]],"b":[["ecology/free_living.html","free-living"],["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["genomics/transposable_element.html","transposable element"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"]]},{"id":"CHEBI:16301","l":"nitrite","na":14,"nb":5,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"]]},{"id":"NCBITaxon:920","l":"Acidithiobacillus ferrooxidans","na":8,"nb":5,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["environment/obligately_acidophilic.html","obligately acidophilic"],["environment/ph_range_low.html","pH range low"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"],["physiology/lithotrophic.html","lithotrophic"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":7,"nb":5,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["genomics/gabija_system.html","Gabija system"],["genomics/shedu_system.html","Shedu system"],["genomics/thoeris_system.html","Thoeris system"],["physiology/caseinase_activity.html","caseinase activity"],["physiology/lecithinase_activity.html","lecithinase activity"]]},{"id":"GO:0009056","l":"catabolic process","na":6,"nb":5,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"],["Wetland_Oxygen_Sulfate_GHG_Microcosm_Community.html","Wetland Oxygen-Sulfate Greenhouse Gas Microcosm Community"]],"b":[["metabolism/metabolism.html","metabolism"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"],["physiology/heterotrophic.html","heterotrophic"],["physiology/organotrophic.html","organotrophic"]]},{"id":"GO:0006935","l":"chemotaxis","na":5,"nb":5,"a":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["SynCom_MetG2_Rhizobacteria_Sugarcane_Stress_Resilience.html","SynCom MetG2 Rhizobacteria Sugarcane Stress Resilience"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"],["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["morphology/flagellated.html","flagellated"],["morphology/motile.html","motile"],["morphology/motility.html","motility"],["physiology/chemotaxis.html","chemotaxis"],["physiology/copiotrophic.html","copiotrophic"]]},{"id":"CHEBI:30089","l":"acetate","na":72,"nb":4,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"]],"b":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]]},{"id":"CHEBI:26833","l":"sulfur atom","na":12,"nb":4,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["metabolism/disproportionation.html","Disproportionation"],["morphology/sulfur_globule.html","sulfur globule"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/photolithotrophic.html","photolithotrophic"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":4,"nb":8,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["environment/aerotolerant.html","aerotolerant"],["environment/microaerophilic.html","microaerophilic"],["environment/microaerotolerant.html","microaerotolerant"],["environment/obligately_aerobic.html","obligately aerobic"],["environment/obligately_anaerobic.html","obligately anaerobic"],["environment/oxygen_preference.html","oxygen preference"]]},{"id":"GO:0009372","l":"quorum sensing","na":8,"nb":4,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["ecology/plant_pathogen.html","plant pathogen"],["morphology/green_pigmented.html","green pigmented"],["morphology/swarming_motility.html","swarming motility"],["physiology/quorum_sensing.html","quorum sensing"]]},{"id":"CHEBI:15138","l":"sulfide(2-)","na":4,"nb":6,"a":[["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"]],"b":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"],["metabolism/disproportionation.html","Disproportionation"],["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"],["physiology/lithoheterotrophic.html","lithoheterotrophic"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]]},{"id":"CHEBI:17245","l":"carbon monoxide","na":6,"nb":4,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Subsurface_Carboxydocella_CO_Aquifer_Community.html","Subsurface Carboxydocella CO-Oxidation Aquifer Community"]],"b":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["physiology/carboxydotrophic.html","carboxydotrophic"],["physiology/oxidase_activity.html","oxidase activity"]]},{"id":"GO:0030001","l":"metal ion transport","na":5,"nb":4,"a":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/metal_tolerant.html","metal tolerant"]]},{"id":"NCBITaxon:70863","l":"Shewanella oneidensis","na":5,"nb":4,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"],["Shewanella_Pseudomonas_Fe0_Electrosyntrophic_Denitrifying_Consortium.html","Shewanella oneidensis + Pseudomonas aeruginosa Fe0-dependent Electro-syntrophic Denitrifying Consortium"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["environment/piezotolerant.html","piezotolerant"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/electron_transfer.html","Electron transfer"]]},{"id":"CHEBI:15377","l":"water","na":4,"nb":4,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["physiology/catalase_activity.html","catalase activity"],["physiology/photoautotrophic.html","photoautotrophic"]]},{"id":"CHEBI:16183","l":"methane","na":57,"nb":3,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"]],"b":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/methanogenesis.html","Methanogenesis"],["physiology/methanotrophic.html","methanotrophic"]]},{"id":"GO:0015948","l":"methanogenesis","na":41,"nb":3,"a":[["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["metabolism/acetoclastic_methanogenesis.html","acetoclastic methanogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/methyl_based_methanogenesis.html","methyl-based methanogenesis"]]},{"id":"GO:0009399","l":"nitrogen fixation","na":24,"nb":3,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"]],"b":[["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["metabolism/nitrogen_fixation.html","nitrogen fixation"],["morphology/heterocyst.html","heterocyst"]]},{"id":"CHEBI:29034","l":"iron(3+)","na":21,"nb":3,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/iron_oxidation.html","iron oxidation"],["metabolism/photoferrotrophy.html","photoferrotrophy"]]},{"id":"CHEBI:17997","l":"dinitrogen","na":12,"nb":3,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":3,"nb":9,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]],"b":[["environment/aerotolerant.html","aerotolerant"],["genomics/abie_system.html","AbiE system"],["genomics/abik_system.html","AbiK system"],["genomics/abiq_system.html","AbiQ system"],["genomics/abit_system.html","AbiT system"],["genomics/abiz_system.html","AbiZ system"]]},{"id":"CHEBI:17750","l":"glycine betaine","na":3,"nb":8,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["environment/euryhaline.html","euryhaline"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/moderately_halophilic.html","moderately halophilic"],["environment/nacl_optimum_mid1.html","NaCl optimum mid1"],["environment/nacl_optimum_mid2.html","NaCl optimum mid2"],["environment/nacl_range_mid2.html","NaCl range mid2"]]},{"id":"NCBITaxon:35554","l":"Geobacter sulfurreducens","na":6,"nb":3,"a":[["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"]],"b":[["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/electron_transfer.html","Electron transfer"]]},{"id":"CHEBI:29103","l":"potassium(1+)","na":3,"nb":5,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["environment/extremely_halophilic.html","extremely halophilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/non_halophilic.html","non halophilic"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":5,"nb":3,"a":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["ecology/rhizosphere_association.html","rhizosphere association"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/psychrotolerant.html","psychrotolerant"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":3,"nb":3,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["environment/anaerobic.html","anaerobic"],["environment/strictly_anaerobic.html","strictly anaerobic"],["metabolism/fumarate_respiration.html","fumarate respiration"]]},{"id":"CHEBI:18246","l":"(1->4)-beta-D-glucan","na":25,"nb":2,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"]],"b":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/cellulolysis.html","cellulolysis"]]},{"id":"CHEBI:16236","l":"ethanol","na":22,"nb":2,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]]},{"id":"GO:0044403","l":"biological process involved in symbiotic interaction","na":19,"nb":2,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["ecology/plant_pathogen.html","plant pathogen"],["ecology/symbiosis.html","symbiosis"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":15,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["ecology/biosafety_level_2.html","biosafety level 2"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/coccus_shaped.html","coccus shaped"]]},{"id":"CHEBI:16136","l":"hydrogen sulfide","na":11,"nb":2,"a":[["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/photolithotrophic.html","photolithotrophic"]]},{"id":"CHEBI:17790","l":"methanol","na":10,"nb":2,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"]],"b":[["physiology/methanotrophic.html","methanotrophic"],["physiology/methylotrophic.html","methylotrophic"]]},{"id":"CHEBI:26523","l":"reactive oxygen species","na":2,"nb":9,"a":[["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["environment/aerobic.html","aerobic"],["environment/aerotolerant.html","aerotolerant"],["environment/anaerobic.html","anaerobic"],["environment/microaerophilic.html","microaerophilic"],["environment/microaerotolerant.html","microaerotolerant"],["environment/obligately_anaerobic.html","obligately anaerobic"]]},{"id":"GO:0006970","l":"response to osmotic stress","na":2,"nb":9,"a":[["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["environment/extremely_halophilic.html","extremely halophilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/halotolerant.html","halotolerant"],["environment/moderately_halophilic.html","moderately halophilic"],["environment/nacl_delta.html","NaCl delta"]]},{"id":"CHEBI:15378","l":"hydron","na":2,"nb":8,"a":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["environment/acidophilic.html","acidophilic"],["environment/acidotolerant.html","acidotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"],["environment/obligately_acidophilic.html","obligately acidophilic"]]},{"id":"CHEBI:6457","l":"lignin","na":8,"nb":2,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"],["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"]],"b":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/biopolymer_degradation.html","biopolymer degradation"]]},{"id":"GO:0019329","l":"ammonia oxidation","na":8,"nb":2,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"]],"b":[["metabolism/complete_ammonia_oxidation.html","complete ammonia oxidation"],["metabolism/nitrification.html","nitrification"]]},{"id":"NCBITaxon:32046","l":"Synechococcus elongatus","na":6,"nb":2,"a":[["Synechococcus_Bacillus_SPC.html","Synechococcus-Bacillus Synthetic Photosynthetic Consortium"],["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"],["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"],["Synechococcus_Saccharomyces_SPC.html","Synechococcus-Saccharomyces Synthetic Photosynthetic Consortium"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["morphology/carboxysome.html","carboxysome"],["physiology/autotrophic.html","autotrophic"]]},{"id":"CHEBI:16094","l":"thiosulfate(2-)","na":2,"nb":5,"a":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["metabolism/disproportionation.html","Disproportionation"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"],["physiology/lithotrophic.html","lithotrophic"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":2,"nb":5,"a":[["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["metabolism/dimethyl_sulfoxide_respiration.html","dimethyl sulfoxide respiration"],["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/electron_transfer.html","Electron transfer"]]},{"id":"NCBITaxon:818","l":"Bacteroides thetaiotaomicron","na":5,"nb":2,"a":[["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["ecology/gut_associated.html","gut-associated"],["ecology/host_associated.html","host-associated"]]},{"id":"CHEBI:29105","l":"zinc(2+)","na":4,"nb":2,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/zinc_tolerant.html","zinc tolerant"]]},{"id":"NCBITaxon:1148","l":"Synechocystis sp. PCC 6803","na":2,"nb":4,"a":[["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/trophic_type.html","trophic type"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":2,"nb":4,"a":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["ecology/mutualism.html","mutualism"],["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["ecology/symbiosis.html","symbiosis"],["genomics/hna_system.html","Hna system"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":3,"nb":2,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["physiology/methanotrophic.html","methanotrophic"],["physiology/methylotrophic.html","methylotrophic"]]},{"id":"CHEBI:17045","l":"dinitrogen oxide","na":3,"nb":2,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"]],"b":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["physiology/chemolithotrophic.html","chemolithotrophic"]]},{"id":"CHEBI:29035","l":"manganese(2+)","na":2,"nb":3,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/lignin_degradation.html","lignin degradation"],["metabolism/manganese_oxidation.html","manganese oxidation"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":2,"nb":3,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["environment/aerobic.html","aerobic"],["environment/obligately_aerobic.html","obligately aerobic"],["morphology/tetrad_arrangement.html","tetrad arrangement"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":3,"nb":2,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["genomics/crispr_cas_system.html","CRISPR-Cas system"],["genomics/phage_defense_system.html","phage defense system"]]},{"id":"GO:0006099","l":"tricarboxylic acid cycle","na":2,"nb":2,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["physiology/heterotrophic.html","heterotrophic"],["physiology/organoheterotrophic.html","organoheterotrophic"]]},{"id":"NCBITaxon:272562","l":"Clostridium acetobutylicum ATCC 824","na":2,"nb":2,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["metabolism/acetone_butanol_ethanol_fermentation.html","acetone-butanol-ethanol fermentation"],["metabolism/fermentation.html","Fermentation"]]},{"id":"NCBITaxon:28116","l":"Bacteroides ovatus","na":2,"nb":2,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["metabolism/xylan_degradation.html","xylan degradation"],["physiology/amylase_activity.html","amylase activity"]]},{"id":"NCBITaxon:408","l":"Methylorubrum extorquens","na":2,"nb":2,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["morphology/pink_pigmented.html","pink pigmented"],["physiology/methylotrophic.html","methylotrophic"]]},{"id":"GO:0015979","l":"photosynthesis","na":42,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"]],"b":[["metabolism/photosynthesis.html","photosynthesis"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":1,"nb":25,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["environment/ph_phenotype_with_numerical_limits.html","pH phenotype with numerical limits"],["environment/temperature_optimum_mid4.html","temperature optimum mid4"],["metabolism/metabolism.html","metabolism"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/respiration.html","respiration"],["metabolism/trimethylamine_n_oxide_respiration.html","trimethylamine N-oxide respiration"]]},{"id":"CHEBI:15740","l":"formate","na":22,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"]],"b":[["metabolism/syntrophy.html","Syntrophy"]]},{"id":"CHEBI:24996","l":"lactate","na":20,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"]],"b":[["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]]},{"id":"CHEBI:17968","l":"butyrate","na":17,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"]],"b":[["ecology/gut_associated.html","gut-associated"]]},{"id":"GO:0051453","l":"regulation of intracellular pH","na":1,"nb":17,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["environment/acidophilic.html","acidophilic"],["environment/acidotolerant.html","acidotolerant"],["environment/alkalotolerant.html","alkalotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"]]},{"id":"GO:0019420","l":"dissimilatory sulfate reduction","na":16,"nb":1,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["DVM_Triculture.html","DVM Tri-culture"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"]],"b":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]]},{"id":"CHEBI:28938","l":"ammonium","na":15,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]]},{"id":"GO:0019333","l":"denitrification pathway","na":11,"nb":1,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"]],"b":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"]]},{"id":"GO:0045493","l":"xylan catabolic process","na":11,"nb":1,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["metabolism/xylan_degradation.html","xylan degradation"]]},{"id":"CHEBI:29036","l":"copper(2+)","na":10,"nb":1,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["environment/copper_tolerant.html","copper tolerant"]]},{"id":"CHEBI:17272","l":"propionate","na":9,"nb":1,"a":[["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"]],"b":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]]},{"id":"CHEBI:26710","l":"sodium chloride","na":9,"nb":1,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["environment/halophilic.html","halophilic"]]},{"id":"CHEBI:18222","l":"xylose","na":8,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]],"b":[["metabolism/xylan_degradation.html","xylan degradation"]]},{"id":"CHEBI:29101","l":"sodium(1+)","na":1,"nb":7,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"]],"b":[["environment/alkaphilic.html","alkaliphilic"],["environment/euryhaline.html","euryhaline"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/nacl_delta_mid2.html","NaCl delta mid2"]]},{"id":"CHEBI:64709","l":"organic acid","na":7,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":1,"nb":7,"a":[["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/copper_tolerant.html","copper tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["environment/metal_tolerant.html","metal tolerant"]]},{"id":"NCBITaxon:1488","l":"Clostridium acetobutylicum","na":1,"nb":7,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["environment/anaerobic.html","anaerobic"],["environment/obligately_anaerobic.html","obligately anaerobic"],["metabolism/fermentation.html","Fermentation"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"],["morphology/gram_variable.html","gram variable"],["morphology/spindle_shaped.html","spindle shaped"]]},{"id":"CHEBI:17057","l":"cellobiose","na":6,"nb":1,"a":[["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["Yarrowia_lipolytica_Division_of_Labor_Lipid_Consortium.html","Yarrowia lipolytica Division-of-Labor Lipid Consortium"]],"b":[["metabolism/cellulolysis.html","cellulolysis"]]},{"id":"GO:0006979","l":"response to oxidative stress","na":6,"nb":1,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["physiology/oxidative_stress_response.html","oxidative stress response"]]},{"id":"GO:0009292","l":"horizontal gene transfer","na":1,"nb":6,"a":[["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"]],"b":[["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["genomics/genome_size.html","genome size"],["genomics/genomic_island.html","genomic island"],["genomics/mobile_genetic_element.html","mobile genetic element"],["genomics/pangenome_openness.html","pangenome openness"]]},{"id":"GO:0046274","l":"lignin catabolic process","na":6,"nb":1,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"],["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"],["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["metabolism/lignin_degradation.html","lignin degradation"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":6,"a":[["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"]],"b":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/oxidase_activity.html","oxidase activity"]]},{"id":"CHEBI:61266","l":"hemicellulose","na":5,"nb":1,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"],["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["ecology/saprotrophy.html","saprotrophy"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":5,"nb":1,"a":[["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]]},{"id":"NCBITaxon:915","l":"Nitrosomonas europaea","na":1,"nb":5,"a":[["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["physiology/autotrophic.html","autotrophic"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"],["physiology/lithotrophic.html","lithotrophic"]]},{"id":"CHEBI:16199","l":"urea","na":4,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["physiology/urease_activity.html","urease activity"]]},{"id":"CHEBI:17029","l":"chitin","na":4,"nb":1,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]],"b":[["metabolism/chitinolysis.html","chitinolysis"]]},{"id":"GO:0006412","l":"translation","na":1,"nb":4,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["environment/mesophilic.html","mesophilic"],["genomics/codon_usage_bias.html","codon usage bias"],["physiology/cold_shock_response.html","cold shock response"],["physiology/dormancy.html","dormancy"]]},{"id":"GO:0009252","l":"peptidoglycan biosynthetic process","na":1,"nb":4,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"]],"b":[["morphology/bacillus_shaped.html","bacillus shaped"],["morphology/cell_shape.html","cell shape"],["morphology/coccobacillus_shaped.html","coccobacillus shaped"],["morphology/rod_shaped.html","rod shaped"]]},{"id":"GO:0019253","l":"reductive pentose-phosphate cycle","na":1,"nb":4,"a":[["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["physiology/autotrophic.html","autotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/photoautotrophic.html","photoautotrophic"]]},{"id":"NCBITaxon:165695","l":"Sphingobium","na":4,"nb":1,"a":[["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["Sphingobium_Nitrososphaera_Phenanthrene_Carbon_SynCom.html","Sphingobium-Nitrososphaera Phenanthrene-Carbon SynCom"],["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["metabolism/lignin_degradation.html","lignin degradation"]]},{"id":"NCBITaxon:243164","l":"Dehalococcoides mccartyi 195","na":4,"nb":1,"a":[["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["metabolism/organohalide_respiration.html","organohalide respiration"]]},{"id":"NCBITaxon:863","l":"Syntrophomonas wolfei","na":4,"nb":1,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["metabolism/syntrophy.html","Syntrophy"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":3,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["physiology/gelatinase_activity.html","gelatinase activity"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":3,"nb":1,"a":[["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["metabolism/starch_degradation.html","starch degradation"]]},{"id":"NCBITaxon:33952","l":"Acetobacterium woodii","na":3,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["metabolism/homoacetogenesis.html","Homoacetogenesis"]]},{"id":"NCBITaxon:54298","l":"Chroococcidiopsis","na":1,"nb":3,"a":[["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"]],"b":[["environment/desiccation_tolerant.html","desiccation tolerant"],["environment/uv_radiation_tolerant.html","UV radiation tolerant"],["environment/xerophilic.html","xerophilic"]]},{"id":"CHEBI:15354","l":"choline","na":2,"nb":1,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["environment/euryhaline.html","euryhaline"]]},{"id":"CHEBI:16480","l":"nitric oxide","na":2,"nb":1,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"]],"b":[["ecology/biofilm_formation.html","biofilm formation"]]},{"id":"CHEBI:16838","l":"polyphosphate","na":2,"nb":1,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"]],"b":[["environment/zinc_tolerant.html","zinc tolerant"]]},{"id":"CHEBI:16947","l":"citrate(3-)","na":2,"nb":1,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"]]},{"id":"CHEBI:26672","l":"siderophore","na":2,"nb":1,"a":[["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"]],"b":[["physiology/siderophore_production.html","siderophore production"]]},{"id":"CHEBI:29806","l":"fumarate(2-)","na":2,"nb":1,"a":[["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]]},{"id":"CHEBI:48775","l":"cadmium(2+)","na":2,"nb":1,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["SynCom_Pseudomonas_Rahnella_Artemisia_Phytoremediation.html","Pseudomonas-Rahnella native rhizosphere SynCom for Artemisia argyi phytoremediation"]],"b":[["environment/cadmium_tolerant.html","cadmium tolerant"]]},{"id":"CHEBI:48828","l":"cobalt(2+)","na":2,"nb":1,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["environment/cobalt_tolerant.html","cobalt tolerant"]]},{"id":"GO:0005983","l":"starch catabolic process","na":2,"nb":1,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"]],"b":[["metabolism/starch_degradation.html","starch degradation"]]},{"id":"GO:0009408","l":"response to heat","na":2,"nb":1,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["PMI_Variovorax_Thermotolerance_Collection.html","PMI Variovorax Thermotolerance Collection"]],"b":[["physiology/heat_shock_response.html","heat shock response"]]},{"id":"GO:0019332","l":"aerobic respiration, using nitrite as electron donor","na":1,"nb":2,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"]],"b":[["metabolism/complete_ammonia_oxidation.html","complete ammonia oxidation"],["metabolism/nitrification.html","nitrification"]]},{"id":"GO:0019417","l":"sulfur oxidation","na":1,"nb":2,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["physiology/lithotrophic.html","lithotrophic"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]]},{"id":"GO:0071973","l":"bacterial-type flagellum-dependent cell motility","na":1,"nb":2,"a":[["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"]],"b":[["ecology/soil_dwelling.html","soil-dwelling"],["morphology/swarming_motility.html","swarming motility"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":1,"nb":2,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["genomics/gc_mid1.html","GC mid1"],["metabolism/lignin_degradation.html","lignin degradation"]]},{"id":"NCBITaxon:1021","l":"Beggiatoa","na":1,"nb":2,"a":[["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"]],"b":[["morphology/filament_shaped.html","filament shaped"],["physiology/mixotrophic.html","mixotrophic"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":2,"nb":1,"a":[["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["physiology/photoheterotrophic.html","photoheterotrophic"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":1,"nb":2,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["morphology/carboxysome.html","carboxysome"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":2,"nb":1,"a":[["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]],"b":[["metabolism/cellulolysis.html","cellulolysis"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":2,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["morphology/branched_shaped.html","branched shaped"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":2,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]],"b":[["genomics/wadjet_system.html","Wadjet system"],["morphology/irregular_shaped.html","irregular shaped"]]},{"id":"NCBITaxon:180","l":"Leptospirillum ferrooxidans","na":2,"nb":1,"a":[["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"]],"b":[["metabolism/iron_oxidation.html","iron oxidation"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":1,"nb":2,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["genomics/ploidy.html","ploidy"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":2,"nb":1,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["ecology/opportunistic_pathogen.html","opportunistic pathogen"]]},{"id":"NCBITaxon:542","l":"Zymomonas mobilis","na":1,"nb":2,"a":[["Zymomonas_Ecoli_Exometabolomics_Obligate_Mutualism.html","Zymomonas-E. coli Exometabolomics-Designed Obligate Mutualism"]],"b":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["physiology/nad_dependent_alcohol_dehydrogenase_activity.html","NAD-dependent alcohol dehydrogenase activity"]]},{"id":"NCBITaxon:69823","l":"Selenomonas sputigena","na":1,"nb":2,"a":[["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"]],"b":[["physiology/alpha_galactosidase_activity.html","alpha-galactosidase activity"],["physiology/beta_galactosidase_activity.html","beta-galactosidase activity"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":2,"nb":1,"a":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["morphology/motility.html","motility"]]},{"id":"CHEBI:16170","l":"mercury(0)","na":1,"nb":1,"a":[["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["environment/mercury_tolerant.html","mercury tolerant"]]},{"id":"CHEBI:16856","l":"glutathione","na":1,"nb":1,"a":[["Zymomonas_Ecoli_Exometabolomics_Obligate_Mutualism.html","Zymomonas-E. coli Exometabolomics-Designed Obligate Mutualism"]],"b":[["environment/zinc_tolerant.html","zinc tolerant"]]},{"id":"CHEBI:17203","l":"L-proline","na":1,"nb":1,"a":[["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["environment/non_halophilic.html","non halophilic"]]},{"id":"CHEBI:50699","l":"oligosaccharide","na":1,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["metabolism/biopolymer_degradation.html","biopolymer degradation"]]},{"id":"GO:0006260","l":"DNA replication","na":1,"nb":1,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["genomics/gc_skew.html","GC skew"]]},{"id":"GO:0006950","l":"response to stress","na":1,"nb":1,"a":[["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"]],"b":[["physiology/stress_response.html","stress response"]]},{"id":"GO:0044409","l":"symbiont entry into host","na":1,"nb":1,"a":[["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"]],"b":[["ecology/plant_pathogen.html","plant pathogen"]]},{"id":"NCBITaxon:1219","l":"Prochlorococcus marinus","na":1,"nb":1,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["genomics/genome_streamlining.html","genome streamlining"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":1,"nb":1,"a":[["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["physiology/lipase_activity.html","lipase activity"]]},{"id":"NCBITaxon:1519","l":"Clostridium tyrobutyricum","na":1,"nb":1,"a":[["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["metabolism/butyric_acid_fermentation.html","butyric acid fermentation"]]},{"id":"NCBITaxon:1579","l":"Lactobacillus acidophilus","na":1,"nb":1,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["environment/acidotolerant.html","acidotolerant"]]},{"id":"NCBITaxon:1708","l":"Cellulomonas fimi","na":1,"nb":1,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["metabolism/biopolymer_degradation.html","biopolymer degradation"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii (strain ATCC 43067 / DSM 2661 / JAL-1 / JCM 10045 / NBRC 100440)","na":1,"nb":1,"a":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]],"b":[["metabolism/methanogenesis.html","Methanogenesis"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima (strain ATCC 43589 / DSM 3109 / JCM 10099 / NBRC 100826 / MSB8)","na":1,"nb":1,"a":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]],"b":[["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"]]},{"id":"NCBITaxon:258594","l":"Rhodopseudomonas palustris CGA009","na":1,"nb":1,"a":[["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"]],"b":[["physiology/photoorganoheterotrophic.html","photoorganoheterotrophic"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"]],"b":[["metabolism/photoferrotrophy.html","photoferrotrophy"]]}]} \ No newline at end of file +{"a":"CommunityMech","b":"TraitMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","TraitMech":"https://culturebotai.github.io/TraitMech/pages/traits/"},"n":157,"by":{"CHEBI":61,"NCBITaxon":61,"GO":35},"terms":[{"id":"CHEBI:16526","l":"carbon dioxide","na":75,"nb":30,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]],"b":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"]]},{"id":"CHEBI:15379","l":"dioxygen","na":26,"nb":25,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["environment/aerobic.html","aerobic"],["environment/aerotolerant.html","aerotolerant"],["environment/anaerobic.html","anaerobic"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_aerobic.html","facultatively aerobic"],["environment/facultatively_anaerobic.html","facultatively anaerobic"]]},{"id":"GO:0015977","l":"carbon fixation","na":33,"nb":15,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":18,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/neutrophilic.html","neutrophilic"],["environment/non_halophilic.html","non halophilic"],["genomics/spbk_system.html","SpbK system"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":14,"nb":65,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]],"b":[["ecology/biosafety_level.html","biosafety level"],["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/host_associated.html","host-associated"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/halophily_preference.html","halophily preference"]]},{"id":"CHEBI:18276","l":"dihydrogen","na":58,"nb":13,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"]],"b":[["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/does_not_use_as_electron_donor.html","does not use as electron donor"],["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"]]},{"id":"GO:0006113","l":"fermentation","na":43,"nb":11,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"]],"b":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"],["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]]},{"id":"CHEBI:50860","l":"organic molecular entity","na":16,"nb":10,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["physiology/aerobic_anoxygenic_phototrophy.html","aerobic anoxygenic phototrophy"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"],["physiology/chemotrophic.html","chemotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"],["physiology/mixotrophic.html","mixotrophic"]]},{"id":"GO:0022900","l":"electron transport chain","na":15,"nb":10,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"]],"b":[["environment/obligately_aerobic.html","obligately aerobic"],["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/electron_transfer.html","Electron transfer"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"]]},{"id":"CHEBI:17632","l":"nitrate","na":28,"nb":9,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"],["metabolism/does_not_use_as_electron_acceptor.html","does not use as electron acceptor"]]},{"id":"CHEBI:17234","l":"glucose","na":26,"nb":9,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"]],"b":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/biopolymer_degradation.html","biopolymer degradation"],["metabolism/cellulolysis.html","cellulolysis"],["metabolism/does_not_use_as_carbon_source.html","does not use as carbon source"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/starch_degradation.html","starch degradation"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":9,"nb":11,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"]],"b":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/aerobic.html","aerobic"],["genomics/avast_system.html","AVAST system"],["genomics/jukab_system.html","JukAB system"],["morphology/motile.html","motile"]]},{"id":"GO:0009061","l":"anaerobic respiration","na":8,"nb":8,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["environment/anaerobic.html","anaerobic"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]]},{"id":"GO:0042710","l":"biofilm formation","na":29,"nb":7,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/host_associated.html","host-associated"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["ecology/plant_pathogen.html","plant pathogen"],["ecology/rhizosphere_association.html","rhizosphere association"]]},{"id":"CHEBI:16189","l":"sulfate","na":25,"nb":7,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"],["metabolism/disproportionation.html","Disproportionation"],["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"],["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":21,"nb":7,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/iron_oxidation.html","iron oxidation"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"]]},{"id":"CHEBI:15361","l":"pyruvate","na":8,"nb":7,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]]},{"id":"CHEBI:16134","l":"ammonia","na":14,"nb":6,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]],"b":[["environment/ph_delta_mid1.html","pH delta mid1"],["metabolism/nitrogen_fixation.html","nitrogen fixation"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"],["physiology/urease_activity.html","urease activity"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":6,"nb":11,"a":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"],["morphology/carboxysome.html","carboxysome"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":9,"nb":6,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]],"b":[["ecology/free_living.html","free-living"],["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["genomics/transposable_element.html","transposable element"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"]]},{"id":"GO:0009060","l":"aerobic respiration","na":6,"nb":8,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Soil_CPR_Nanoarchaea_Rare_Biosphere_Community.html","Soil CPR Bacteria and Nanoarchaea Rare-Biosphere Community"]],"b":[["environment/aerobic.html","aerobic"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_aerobic.html","facultatively aerobic"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/obligately_aerobic.html","obligately aerobic"],["metabolism/aerobic_respiration.html","Aerobic respiration"]]},{"id":"CHEBI:16301","l":"nitrite","na":17,"nb":5,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"]]},{"id":"NCBITaxon:920","l":"Acidithiobacillus ferrooxidans","na":8,"nb":5,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["environment/obligately_acidophilic.html","obligately acidophilic"],["environment/ph_range_low.html","pH range low"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"],["physiology/lithotrophic.html","lithotrophic"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":7,"nb":5,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["genomics/gabija_system.html","Gabija system"],["genomics/shedu_system.html","Shedu system"],["genomics/thoeris_system.html","Thoeris system"],["physiology/caseinase_activity.html","caseinase activity"],["physiology/lecithinase_activity.html","lecithinase activity"]]},{"id":"GO:0009056","l":"catabolic process","na":6,"nb":5,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"],["Wetland_Oxygen_Sulfate_GHG_Microcosm_Community.html","Wetland Oxygen-Sulfate Greenhouse Gas Microcosm Community"]],"b":[["metabolism/metabolism.html","metabolism"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"],["physiology/heterotrophic.html","heterotrophic"],["physiology/organotrophic.html","organotrophic"]]},{"id":"GO:0006935","l":"chemotaxis","na":5,"nb":5,"a":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["SynCom_MetG2_Rhizobacteria_Sugarcane_Stress_Resilience.html","SynCom MetG2 Rhizobacteria Sugarcane Stress Resilience"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"],["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["morphology/flagellated.html","flagellated"],["morphology/motile.html","motile"],["morphology/motility.html","motility"],["physiology/chemotaxis.html","chemotaxis"],["physiology/copiotrophic.html","copiotrophic"]]},{"id":"CHEBI:30089","l":"acetate","na":78,"nb":4,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"]],"b":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":4,"nb":19,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["environment/aerotolerant.html","aerotolerant"],["genomics/abia_system.html","AbiA system"],["genomics/abib_system.html","AbiB system"],["genomics/abic_system.html","AbiC system"],["genomics/abid_system.html","AbiD system"],["genomics/abie_system.html","AbiE system"]]},{"id":"CHEBI:26833","l":"sulfur atom","na":12,"nb":4,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["metabolism/disproportionation.html","Disproportionation"],["morphology/sulfur_globule.html","sulfur globule"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/photolithotrophic.html","photolithotrophic"]]},{"id":"GO:0009372","l":"quorum sensing","na":9,"nb":4,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["ecology/plant_pathogen.html","plant pathogen"],["morphology/green_pigmented.html","green pigmented"],["morphology/swarming_motility.html","swarming motility"],["physiology/quorum_sensing.html","quorum sensing"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":4,"nb":8,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["environment/aerotolerant.html","aerotolerant"],["environment/microaerophilic.html","microaerophilic"],["environment/microaerotolerant.html","microaerotolerant"],["environment/obligately_aerobic.html","obligately aerobic"],["environment/obligately_anaerobic.html","obligately anaerobic"],["environment/oxygen_preference.html","oxygen preference"]]},{"id":"CHEBI:15138","l":"sulfide(2-)","na":4,"nb":6,"a":[["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"]],"b":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"],["metabolism/disproportionation.html","Disproportionation"],["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"],["physiology/lithoheterotrophic.html","lithoheterotrophic"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]]},{"id":"CHEBI:17245","l":"carbon monoxide","na":6,"nb":4,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Subsurface_Carboxydocella_CO_Aquifer_Community.html","Subsurface Carboxydocella CO-Oxidation Aquifer Community"]],"b":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["physiology/carboxydotrophic.html","carboxydotrophic"],["physiology/oxidase_activity.html","oxidase activity"]]},{"id":"NCBITaxon:70863","l":"Shewanella oneidensis","na":6,"nb":4,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"],["Shewanella_Pseudomonas_Fe0_Electrosyntrophic_Denitrifying_Consortium.html","Shewanella oneidensis + Pseudomonas aeruginosa Fe0-dependent Electro-syntrophic Denitrifying Consortium"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["environment/piezotolerant.html","piezotolerant"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/electron_transfer.html","Electron transfer"]]},{"id":"GO:0030001","l":"metal ion transport","na":5,"nb":4,"a":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/metal_tolerant.html","metal tolerant"]]},{"id":"CHEBI:15377","l":"water","na":4,"nb":4,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["physiology/catalase_activity.html","catalase activity"],["physiology/photoautotrophic.html","photoautotrophic"]]},{"id":"CHEBI:16183","l":"methane","na":62,"nb":3,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"]],"b":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/methanogenesis.html","Methanogenesis"],["physiology/methanotrophic.html","methanotrophic"]]},{"id":"GO:0015948","l":"methanogenesis","na":44,"nb":3,"a":[["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"]],"b":[["metabolism/acetoclastic_methanogenesis.html","acetoclastic methanogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/methyl_based_methanogenesis.html","methyl-based methanogenesis"]]},{"id":"GO:0009399","l":"nitrogen fixation","na":24,"nb":3,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"]],"b":[["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["metabolism/nitrogen_fixation.html","nitrogen fixation"],["morphology/heterocyst.html","heterocyst"]]},{"id":"CHEBI:29034","l":"iron(3+)","na":21,"nb":3,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/iron_oxidation.html","iron oxidation"],["metabolism/photoferrotrophy.html","photoferrotrophy"]]},{"id":"CHEBI:17997","l":"dinitrogen","na":12,"nb":3,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]]},{"id":"CHEBI:17750","l":"glycine betaine","na":3,"nb":8,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["environment/euryhaline.html","euryhaline"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/moderately_halophilic.html","moderately halophilic"],["environment/nacl_optimum_mid1.html","NaCl optimum mid1"],["environment/nacl_optimum_mid2.html","NaCl optimum mid2"],["environment/nacl_range_mid2.html","NaCl range mid2"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":6,"nb":3,"a":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["ecology/rhizosphere_association.html","rhizosphere association"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/psychrotolerant.html","psychrotolerant"]]},{"id":"NCBITaxon:35554","l":"Geobacter sulfurreducens","na":6,"nb":3,"a":[["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"]],"b":[["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/electron_transfer.html","Electron transfer"]]},{"id":"CHEBI:29103","l":"potassium(1+)","na":3,"nb":5,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["environment/extremely_halophilic.html","extremely halophilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/non_halophilic.html","non halophilic"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":3,"nb":5,"a":[["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["metabolism/dimethyl_sulfoxide_respiration.html","dimethyl sulfoxide respiration"],["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/electron_transfer.html","Electron transfer"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":4,"nb":3,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"],["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["environment/aerobic.html","aerobic"],["environment/obligately_aerobic.html","obligately aerobic"],["morphology/tetrad_arrangement.html","tetrad arrangement"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":4,"nb":3,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["environment/anaerobic.html","anaerobic"],["environment/strictly_anaerobic.html","strictly anaerobic"],["metabolism/fumarate_respiration.html","fumarate respiration"]]},{"id":"CHEBI:29035","l":"manganese(2+)","na":3,"nb":3,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"]],"b":[["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/lignin_degradation.html","lignin degradation"],["metabolism/manganese_oxidation.html","manganese oxidation"]]},{"id":"CHEBI:18246","l":"(1->4)-beta-D-glucan","na":27,"nb":2,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/cellulolysis.html","cellulolysis"]]},{"id":"CHEBI:16236","l":"ethanol","na":25,"nb":2,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]]},{"id":"GO:0044403","l":"biological process involved in symbiotic interaction","na":20,"nb":2,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["ecology/plant_pathogen.html","plant pathogen"],["ecology/symbiosis.html","symbiosis"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":15,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["ecology/biosafety_level_2.html","biosafety level 2"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/coccus_shaped.html","coccus shaped"]]},{"id":"CHEBI:16136","l":"hydrogen sulfide","na":12,"nb":2,"a":[["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/photolithotrophic.html","photolithotrophic"]]},{"id":"CHEBI:17790","l":"methanol","na":11,"nb":2,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"]],"b":[["physiology/methanotrophic.html","methanotrophic"],["physiology/methylotrophic.html","methylotrophic"]]},{"id":"CHEBI:6457","l":"lignin","na":10,"nb":2,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/biopolymer_degradation.html","biopolymer degradation"]]},{"id":"GO:0019329","l":"ammonia oxidation","na":10,"nb":2,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"]],"b":[["metabolism/complete_ammonia_oxidation.html","complete ammonia oxidation"],["metabolism/nitrification.html","nitrification"]]},{"id":"CHEBI:26523","l":"reactive oxygen species","na":2,"nb":9,"a":[["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["environment/aerobic.html","aerobic"],["environment/aerotolerant.html","aerotolerant"],["environment/anaerobic.html","anaerobic"],["environment/microaerophilic.html","microaerophilic"],["environment/microaerotolerant.html","microaerotolerant"],["environment/obligately_anaerobic.html","obligately anaerobic"]]},{"id":"GO:0006970","l":"response to osmotic stress","na":2,"nb":9,"a":[["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["environment/extremely_halophilic.html","extremely halophilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/halotolerant.html","halotolerant"],["environment/moderately_halophilic.html","moderately halophilic"],["environment/nacl_delta.html","NaCl delta"]]},{"id":"CHEBI:15378","l":"hydron","na":2,"nb":8,"a":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["environment/acidophilic.html","acidophilic"],["environment/acidotolerant.html","acidotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"],["environment/obligately_acidophilic.html","obligately acidophilic"]]},{"id":"NCBITaxon:818","l":"Bacteroides thetaiotaomicron","na":7,"nb":2,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["ecology/gut_associated.html","gut-associated"],["ecology/host_associated.html","host-associated"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":2,"nb":6,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"]],"b":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/oxidase_activity.html","oxidase activity"]]},{"id":"NCBITaxon:32046","l":"Synechococcus elongatus","na":6,"nb":2,"a":[["Synechococcus_Bacillus_SPC.html","Synechococcus-Bacillus Synthetic Photosynthetic Consortium"],["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"],["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"],["Synechococcus_Saccharomyces_SPC.html","Synechococcus-Saccharomyces Synthetic Photosynthetic Consortium"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["morphology/carboxysome.html","carboxysome"],["physiology/autotrophic.html","autotrophic"]]},{"id":"CHEBI:16094","l":"thiosulfate(2-)","na":2,"nb":5,"a":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["metabolism/disproportionation.html","Disproportionation"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"],["physiology/lithotrophic.html","lithotrophic"]]},{"id":"NCBITaxon:915","l":"Nitrosomonas europaea","na":2,"nb":5,"a":[["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["physiology/autotrophic.html","autotrophic"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"],["physiology/lithotrophic.html","lithotrophic"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":4,"nb":2,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["physiology/methanotrophic.html","methanotrophic"],["physiology/methylotrophic.html","methylotrophic"]]},{"id":"CHEBI:29105","l":"zinc(2+)","na":4,"nb":2,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/zinc_tolerant.html","zinc tolerant"]]},{"id":"NCBITaxon:1148","l":"Synechocystis sp. PCC 6803","na":2,"nb":4,"a":[["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/trophic_type.html","trophic type"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":4,"nb":2,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["genomics/crispr_cas_system.html","CRISPR-Cas system"],["genomics/phage_defense_system.html","phage defense system"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":2,"nb":4,"a":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["ecology/mutualism.html","mutualism"],["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["ecology/symbiosis.html","symbiosis"],["genomics/hna_system.html","Hna system"]]},{"id":"CHEBI:17045","l":"dinitrogen oxide","na":3,"nb":2,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"]],"b":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["physiology/chemolithotrophic.html","chemolithotrophic"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":3,"nb":2,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["genomics/abialpha_system.html","AbiAlpha system"],["physiology/gelatinase_activity.html","gelatinase activity"]]},{"id":"NCBITaxon:28116","l":"Bacteroides ovatus","na":3,"nb":2,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["metabolism/xylan_degradation.html","xylan degradation"],["physiology/amylase_activity.html","amylase activity"]]},{"id":"GO:0006099","l":"tricarboxylic acid cycle","na":2,"nb":2,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["physiology/heterotrophic.html","heterotrophic"],["physiology/organoheterotrophic.html","organoheterotrophic"]]},{"id":"NCBITaxon:272562","l":"Clostridium acetobutylicum (strain ATCC 824 / DSM 792 / JCM 1419 / IAM 19013 / LMG 5710 / NBRC 13948 / NRRL B-527 / VKM B-1787 / 2291 / W)","na":2,"nb":2,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["metabolism/acetone_butanol_ethanol_fermentation.html","acetone-butanol-ethanol fermentation"],["metabolism/fermentation.html","Fermentation"]]},{"id":"NCBITaxon:408","l":"Methylorubrum extorquens","na":2,"nb":2,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["morphology/pink_pigmented.html","pink pigmented"],["physiology/methylotrophic.html","methylotrophic"]]},{"id":"GO:0015979","l":"photosynthesis","na":44,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["metabolism/photosynthesis.html","photosynthesis"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":1,"nb":26,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["environment/ph_phenotype_with_numerical_limits.html","pH phenotype with numerical limits"],["environment/temperature_optimum_mid4.html","temperature optimum mid4"],["genomics/rnlab_system.html","RnlAB system"],["metabolism/metabolism.html","metabolism"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/respiration.html","respiration"]]},{"id":"CHEBI:15740","l":"formate","na":23,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"]],"b":[["metabolism/syntrophy.html","Syntrophy"]]},{"id":"CHEBI:24996","l":"lactate","na":22,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]]},{"id":"CHEBI:17968","l":"butyrate","na":19,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"]],"b":[["ecology/gut_associated.html","gut-associated"]]},{"id":"CHEBI:28938","l":"ammonium","na":19,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]]},{"id":"GO:0019420","l":"dissimilatory sulfate reduction","na":17,"nb":1,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["DVM_Triculture.html","DVM Tri-culture"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"]],"b":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]]},{"id":"GO:0051453","l":"regulation of intracellular pH","na":1,"nb":17,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["environment/acidophilic.html","acidophilic"],["environment/acidotolerant.html","acidotolerant"],["environment/alkalotolerant.html","alkalotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"]]},{"id":"GO:0019333","l":"denitrification pathway","na":13,"nb":1,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"]],"b":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"]]},{"id":"CHEBI:17272","l":"propionate","na":11,"nb":1,"a":[["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"]],"b":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]]},{"id":"GO:0045493","l":"xylan catabolic process","na":11,"nb":1,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["metabolism/xylan_degradation.html","xylan degradation"]]},{"id":"CHEBI:29036","l":"copper(2+)","na":10,"nb":1,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["environment/copper_tolerant.html","copper tolerant"]]},{"id":"CHEBI:26710","l":"sodium chloride","na":9,"nb":1,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["environment/halophilic.html","halophilic"]]},{"id":"CHEBI:18222","l":"xylose","na":8,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]],"b":[["metabolism/xylan_degradation.html","xylan degradation"]]},{"id":"GO:0046274","l":"lignin catabolic process","na":8,"nb":1,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"]],"b":[["metabolism/lignin_degradation.html","lignin degradation"]]},{"id":"CHEBI:17057","l":"cellobiose","na":7,"nb":1,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["metabolism/cellulolysis.html","cellulolysis"]]},{"id":"CHEBI:29101","l":"sodium(1+)","na":1,"nb":7,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"]],"b":[["environment/alkaphilic.html","alkaliphilic"],["environment/euryhaline.html","euryhaline"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/nacl_delta_mid2.html","NaCl delta mid2"]]},{"id":"CHEBI:64709","l":"organic acid","na":7,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":1,"nb":7,"a":[["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/copper_tolerant.html","copper tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["environment/metal_tolerant.html","metal tolerant"]]},{"id":"NCBITaxon:1488","l":"Clostridium acetobutylicum","na":1,"nb":7,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["environment/anaerobic.html","anaerobic"],["environment/obligately_anaerobic.html","obligately anaerobic"],["metabolism/fermentation.html","Fermentation"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"],["morphology/gram_variable.html","gram variable"],["morphology/spindle_shaped.html","spindle shaped"]]},{"id":"GO:0006979","l":"response to oxidative stress","na":6,"nb":1,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["physiology/oxidative_stress_response.html","oxidative stress response"]]},{"id":"GO:0009292","l":"horizontal gene transfer","na":1,"nb":6,"a":[["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"]],"b":[["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["genomics/genome_size.html","genome size"],["genomics/genomic_island.html","genomic island"],["genomics/mobile_genetic_element.html","mobile genetic element"],["genomics/pangenome_openness.html","pangenome openness"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":1,"nb":6,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["ecology/animal_pathogen.html","animal pathogen"],["ecology/biosafety_level_2.html","biosafety level 2"],["genomics/genomic_island.html","genomic island"],["genomics/prophage.html","prophage"],["morphology/flagellated.html","flagellated"],["morphology/peritrichous.html","peritrichous"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":6,"nb":1,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]]},{"id":"CHEBI:61266","l":"hemicellulose","na":5,"nb":1,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"],["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["ecology/saprotrophy.html","saprotrophy"]]},{"id":"CHEBI:16199","l":"urea","na":4,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["physiology/urease_activity.html","urease activity"]]},{"id":"CHEBI:17029","l":"chitin","na":4,"nb":1,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]],"b":[["metabolism/chitinolysis.html","chitinolysis"]]},{"id":"CHEBI:48775","l":"cadmium(2+)","na":4,"nb":1,"a":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Meghalaya_Bacillus_Consortia_A22ED9.html","Meghalaya Bacillus Consortia-A22ED9"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["SynCom_Pseudomonas_Rahnella_Artemisia_Phytoremediation.html","Pseudomonas-Rahnella native rhizosphere SynCom for Artemisia argyi phytoremediation"]],"b":[["environment/cadmium_tolerant.html","cadmium tolerant"]]},{"id":"GO:0006412","l":"translation","na":1,"nb":4,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["environment/mesophilic.html","mesophilic"],["genomics/codon_usage_bias.html","codon usage bias"],["physiology/cold_shock_response.html","cold shock response"],["physiology/dormancy.html","dormancy"]]},{"id":"GO:0009252","l":"peptidoglycan biosynthetic process","na":1,"nb":4,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"]],"b":[["morphology/bacillus_shaped.html","bacillus shaped"],["morphology/cell_shape.html","cell shape"],["morphology/coccobacillus_shaped.html","coccobacillus shaped"],["morphology/rod_shaped.html","rod shaped"]]},{"id":"GO:0019253","l":"reductive pentose-phosphate cycle","na":1,"nb":4,"a":[["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["physiology/autotrophic.html","autotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/photoautotrophic.html","photoautotrophic"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":4,"nb":1,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["metabolism/starch_degradation.html","starch degradation"]]},{"id":"NCBITaxon:165695","l":"Sphingobium","na":4,"nb":1,"a":[["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["Sphingobium_Nitrososphaera_Phenanthrene_Carbon_SynCom.html","Sphingobium-Nitrososphaera Phenanthrene-Carbon SynCom"],["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["metabolism/lignin_degradation.html","lignin degradation"]]},{"id":"NCBITaxon:243164","l":"Dehalococcoides mccartyi 195","na":4,"nb":1,"a":[["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["metabolism/organohalide_respiration.html","organohalide respiration"]]},{"id":"NCBITaxon:863","l":"Syntrophomonas wolfei","na":4,"nb":1,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["metabolism/syntrophy.html","Syntrophy"]]},{"id":"CHEBI:26672","l":"siderophore","na":3,"nb":1,"a":[["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"]],"b":[["physiology/siderophore_production.html","siderophore production"]]},{"id":"CHEBI:48828","l":"cobalt(2+)","na":3,"nb":1,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"]],"b":[["environment/cobalt_tolerant.html","cobalt tolerant"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":1,"nb":3,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["ecology/commensalism.html","commensalism"],["genomics/nhi_system.html","Nhi system"],["other/coagulase_negative.html","coagulase negative"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":3,"nb":1,"a":[["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["morphology/branched_shaped.html","branched shaped"]]},{"id":"NCBITaxon:33952","l":"Acetobacterium woodii","na":3,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["metabolism/homoacetogenesis.html","Homoacetogenesis"]]},{"id":"NCBITaxon:54298","l":"Chroococcidiopsis","na":1,"nb":3,"a":[["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"]],"b":[["environment/desiccation_tolerant.html","desiccation tolerant"],["environment/uv_radiation_tolerant.html","UV radiation tolerant"],["environment/xerophilic.html","xerophilic"]]},{"id":"CHEBI:15354","l":"choline","na":2,"nb":1,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["environment/euryhaline.html","euryhaline"]]},{"id":"CHEBI:16480","l":"nitric oxide","na":2,"nb":1,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"]],"b":[["ecology/biofilm_formation.html","biofilm formation"]]},{"id":"CHEBI:16838","l":"polyphosphate","na":2,"nb":1,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"]],"b":[["environment/zinc_tolerant.html","zinc tolerant"]]},{"id":"CHEBI:16947","l":"citrate(3-)","na":2,"nb":1,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"]]},{"id":"CHEBI:29806","l":"fumarate(2-)","na":2,"nb":1,"a":[["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]]},{"id":"GO:0005983","l":"starch catabolic process","na":2,"nb":1,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"]],"b":[["metabolism/starch_degradation.html","starch degradation"]]},{"id":"GO:0009408","l":"response to heat","na":2,"nb":1,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["PMI_Variovorax_Thermotolerance_Collection.html","PMI Variovorax Thermotolerance Collection"]],"b":[["physiology/heat_shock_response.html","heat shock response"]]},{"id":"GO:0019332","l":"aerobic respiration, using nitrite as electron donor","na":1,"nb":2,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"]],"b":[["metabolism/complete_ammonia_oxidation.html","complete ammonia oxidation"],["metabolism/nitrification.html","nitrification"]]},{"id":"GO:0019417","l":"sulfur oxidation","na":1,"nb":2,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["physiology/lithotrophic.html","lithotrophic"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]]},{"id":"GO:0071973","l":"bacterial-type flagellum-dependent cell motility","na":1,"nb":2,"a":[["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"]],"b":[["ecology/soil_dwelling.html","soil-dwelling"],["morphology/swarming_motility.html","swarming motility"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":1,"nb":2,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["genomics/gc_mid1.html","GC mid1"],["metabolism/lignin_degradation.html","lignin degradation"]]},{"id":"NCBITaxon:1021","l":"Beggiatoa","na":1,"nb":2,"a":[["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"]],"b":[["morphology/filament_shaped.html","filament shaped"],["physiology/mixotrophic.html","mixotrophic"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":2,"nb":1,"a":[["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["physiology/photoheterotrophic.html","photoheterotrophic"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":1,"nb":2,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["morphology/carboxysome.html","carboxysome"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":2,"nb":1,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["physiology/lipase_activity.html","lipase activity"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":2,"nb":1,"a":[["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]],"b":[["metabolism/cellulolysis.html","cellulolysis"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":2,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]],"b":[["genomics/wadjet_system.html","Wadjet system"],["morphology/irregular_shaped.html","irregular shaped"]]},{"id":"NCBITaxon:180","l":"Leptospirillum ferrooxidans","na":2,"nb":1,"a":[["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"]],"b":[["metabolism/iron_oxidation.html","iron oxidation"]]},{"id":"NCBITaxon:2822231","l":"Phanerodontia chrysosporium","na":2,"nb":1,"a":[["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"]],"b":[["metabolism/manganese_oxidation.html","manganese oxidation"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":1,"nb":2,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["genomics/ploidy.html","ploidy"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":2,"nb":1,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["ecology/opportunistic_pathogen.html","opportunistic pathogen"]]},{"id":"NCBITaxon:542","l":"Zymomonas mobilis","na":1,"nb":2,"a":[["Zymomonas_Ecoli_Exometabolomics_Obligate_Mutualism.html","Zymomonas-E. coli Exometabolomics-Designed Obligate Mutualism"]],"b":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["physiology/nad_dependent_alcohol_dehydrogenase_activity.html","NAD-dependent alcohol dehydrogenase activity"]]},{"id":"NCBITaxon:69823","l":"Selenomonas sputigena","na":1,"nb":2,"a":[["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"]],"b":[["physiology/alpha_galactosidase_activity.html","alpha-galactosidase activity"],["physiology/beta_galactosidase_activity.html","beta-galactosidase activity"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":2,"nb":1,"a":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["morphology/motility.html","motility"]]},{"id":"CHEBI:16170","l":"mercury(0)","na":1,"nb":1,"a":[["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["environment/mercury_tolerant.html","mercury tolerant"]]},{"id":"CHEBI:16856","l":"glutathione","na":1,"nb":1,"a":[["Zymomonas_Ecoli_Exometabolomics_Obligate_Mutualism.html","Zymomonas-E. coli Exometabolomics-Designed Obligate Mutualism"]],"b":[["environment/zinc_tolerant.html","zinc tolerant"]]},{"id":"CHEBI:17203","l":"L-proline","na":1,"nb":1,"a":[["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["environment/non_halophilic.html","non halophilic"]]},{"id":"CHEBI:50699","l":"oligosaccharide","na":1,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["metabolism/biopolymer_degradation.html","biopolymer degradation"]]},{"id":"GO:0006260","l":"DNA replication","na":1,"nb":1,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["genomics/gc_skew.html","GC skew"]]},{"id":"GO:0006950","l":"response to stress","na":1,"nb":1,"a":[["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"]],"b":[["physiology/stress_response.html","stress response"]]},{"id":"GO:0044409","l":"symbiont entry into host","na":1,"nb":1,"a":[["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"]],"b":[["ecology/plant_pathogen.html","plant pathogen"]]},{"id":"NCBITaxon:1219","l":"Prochlorococcus marinus","na":1,"nb":1,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["genomics/genome_streamlining.html","genome streamlining"]]},{"id":"NCBITaxon:132919","l":"Rhodococcus jostii","na":1,"nb":1,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["metabolism/lignin_degradation.html","lignin degradation"]]},{"id":"NCBITaxon:1519","l":"Clostridium tyrobutyricum","na":1,"nb":1,"a":[["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["metabolism/butyric_acid_fermentation.html","butyric acid fermentation"]]},{"id":"NCBITaxon:1579","l":"Lactobacillus acidophilus","na":1,"nb":1,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["environment/acidotolerant.html","acidotolerant"]]},{"id":"NCBITaxon:1708","l":"Cellulomonas fimi","na":1,"nb":1,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["metabolism/biopolymer_degradation.html","biopolymer degradation"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii (strain ATCC 43067 / DSM 2661 / JAL-1 / JCM 10045 / NBRC 100440)","na":1,"nb":1,"a":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]],"b":[["metabolism/methanogenesis.html","Methanogenesis"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima (strain ATCC 43589 / DSM 3109 / JCM 10099 / NBRC 100826 / MSB8)","na":1,"nb":1,"a":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]],"b":[["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"]]},{"id":"NCBITaxon:258594","l":"Rhodopseudomonas palustris CGA009","na":1,"nb":1,"a":[["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"]],"b":[["physiology/photoorganoheterotrophic.html","photoorganoheterotrophic"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"]],"b":[["metabolism/photoferrotrophy.html","photoferrotrophy"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/HabitatMech--AntibioticMech.json b/assets/fleet/edges/HabitatMech--AntibioticMech.json index cad630a..fac2361 100644 --- a/assets/fleet/edges/HabitatMech--AntibioticMech.json +++ b/assets/fleet/edges/HabitatMech--AntibioticMech.json @@ -1 +1 @@ -{"a":"HabitatMech","b":"AntibioticMech","base":{"HabitatMech":"https://culturebotai.github.io/HabitatMech/pages/habitats/","AntibioticMech":"https://culturebotai.github.io/AntibioticMech/pages/"},"n":32,"by":{"NCBITaxon":32},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":36,"nb":30,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["bay-envo-00000032.html","bay"],["freshwater-biome-envo-00000873.html","freshwater biome"],["liquid-water-envo-00002006.html","liquid water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":40,"nb":13,"a":[["liquid-water-envo-00002006.html","liquid water"],["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["laboratory-facility-envo-01001406.html","laboratory facility"],["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["biofilm-bto-0002690.html","biofilm"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/bromodeoxytopsentin.html","bromodeoxytopsentin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":13,"nb":22,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["neutrophil-bto-0000130.html","neutrophil"],["rectum-bto-0001158.html","rectum"],["spleen-bto-0001281.html","spleen"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":28,"nb":12,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["liquid-water-envo-00002006.html","liquid water"],["watercourse-envo-00000029.html","watercourse"],["compost-envo-00002170.html","compost"],["hospital-envo-00002173.html","hospital"],["human-construction-envo-00000070.html","human construction"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":17,"nb":7,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["hospital-envo-00002173.html","hospital"],["egg-food-product-foodon-00001274.html","egg food product"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":8,"nb":6,"a":[["reservoir-envo-00000025.html","reservoir"],["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["secretion-bto-0002979.html","secretion"],["stomach-bto-0001307.html","stomach"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"NCBITaxon:1283","l":"Staphylococcus haemolyticus","na":9,"nb":5,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["biofilm-bto-0002690.html","biofilm"],["bone-element-uberon-0001474.html","bone element"],["conjunctiva-bto-0003415.html","conjunctiva"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/oxacillin.html","oxacillin"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":25,"nb":4,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-water-body-envo-00001999.html","marine water body"],["sea-water-envo-00002149.html","sea water"],["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/oxacillin.html","oxacillin"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":3,"nb":15,"a":[["bile-bto-0000121.html","bile"],["rectum-bto-0001158.html","rectum"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":10,"nb":3,"a":[["anther-bto-0000079.html","anther"],["epithelial-cell-bto-0000414.html","epithelial cell"],["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":3,"nb":5,"a":[["liquid-water-envo-00002006.html","liquid water"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/imipenem.html","imipenem"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":18,"nb":2,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["antibacterial/mupirocin.html","mupirocin"],["antifungal/2-4-diacetylphloroglucinol.html","2,4-diacetylphloroglucinol"]]},{"id":"NCBITaxon:1299","l":"Deinococcus radiodurans","na":7,"nb":2,"a":[["animal-house-envo-00003040.html","animal house"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["water-scum-envo-00005794.html","water scum"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"]],"b":[["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/linezolid.html","linezolid"]]},{"id":"NCBITaxon:1773","l":"Mycobacterium tuberculosis","na":5,"nb":2,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["posterior-lobe-bto-0000561.html","posterior lobe"],["sputum-bto-0001297.html","sputum"],["thorax-bto-0001368.html","thorax"],["thp-1-cell-bto-0001370.html","THP-1 cell"]],"b":[["antibacterial/sulfanilamide.html","sulfanilamide"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":3,"nb":2,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"],["unspecified/streptothricin-d.html","streptothricin D"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":14,"nb":1,"a":[["watercourse-envo-00000029.html","watercourse"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["leaf-po-0025034.html","leaf"]],"b":[["antibacterial/althiomycin.html","althiomycin"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":8,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"NCBITaxon:1496","l":"Clostridioides difficile","na":6,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["feces-uberon-0001988.html","feces"],["leukocyte-bto-0000751.html","leukocyte"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["intestine-environment-envo-2100002.html","intestine environment"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["antibacterial/fidaxomicin.html","fidaxomicin"]]},{"id":"NCBITaxon:229533","l":"Fusarium graminearum PH-1","na":1,"nb":5,"a":[["soil-envo-00001998.html","soil"]],"b":[["antifungal/carbendazim.html","carbendazim"],["antifungal/difenoconazole.html","difenoconazole"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/prochloraz.html","prochloraz"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":1,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"],["midgut-bto-0000863.html","midgut"],["paddy-field-envo-00000297.html","paddy field"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["antibacterial/althiomycin.html","althiomycin"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":4,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"],["human-construction-envo-00000070.html","human construction"],["sediment-envo-00002007.html","sediment"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["antibacterial/nocardamine.html","nocardamine"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":4,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/trimethoprim.html","trimethoprim"],["antiprotozoal/suramin.html","suramin"],["antiviral/tilorone.html","tilorone"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae (strain ATCC 42149 / RIB 40)","na":4,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["mountain-pass-envo-00000084.html","mountain pass"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":4,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":3,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":2,"nb":1,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":2,"nb":1,"a":[["feces-uberon-0001988.html","feces"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["unspecified/chir-090.html","CHIR-090"]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":1,"nb":1,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["antibacterial/clavulanic-acid.html","clavulanic acid"]]},{"id":"NCBITaxon:264951","l":"Paecilomyces variotii","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["antibacterial/m-viriditoxin.html","(M)-viriditoxin"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":1,"nb":1,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["antibacterial/lysocin-e.html","lysocin E"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":1,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]}]} \ No newline at end of file +{"a":"HabitatMech","b":"AntibioticMech","base":{"HabitatMech":"https://culturebotai.github.io/HabitatMech/pages/habitats/","AntibioticMech":"https://culturebotai.github.io/AntibioticMech/pages/"},"n":32,"by":{"NCBITaxon":32},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":36,"nb":30,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["bay-envo-00000032.html","bay"],["freshwater-biome-envo-00000873.html","freshwater biome"],["liquid-water-envo-00002006.html","liquid water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":40,"nb":13,"a":[["liquid-water-envo-00002006.html","liquid water"],["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["laboratory-facility-envo-01001406.html","laboratory facility"],["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["biofilm-bto-0002690.html","biofilm"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/bromodeoxytopsentin.html","bromodeoxytopsentin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":13,"nb":22,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["neutrophil-bto-0000130.html","neutrophil"],["rectum-bto-0001158.html","rectum"],["spleen-bto-0001281.html","spleen"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":28,"nb":12,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["liquid-water-envo-00002006.html","liquid water"],["watercourse-envo-00000029.html","watercourse"],["compost-envo-00002170.html","compost"],["hospital-envo-00002173.html","hospital"],["human-construction-envo-00000070.html","human construction"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":17,"nb":7,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["hospital-envo-00002173.html","hospital"],["egg-food-product-foodon-00001274.html","egg food product"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":8,"nb":6,"a":[["reservoir-envo-00000025.html","reservoir"],["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["secretion-bto-0002979.html","secretion"],["stomach-bto-0001307.html","stomach"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"NCBITaxon:1283","l":"Staphylococcus haemolyticus","na":9,"nb":5,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["biofilm-bto-0002690.html","biofilm"],["bone-element-uberon-0001474.html","bone element"],["conjunctiva-bto-0003415.html","conjunctiva"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/oxacillin.html","oxacillin"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":25,"nb":4,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-water-body-envo-00001999.html","marine water body"],["sea-water-envo-00002149.html","sea water"],["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/oxacillin.html","oxacillin"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":3,"nb":15,"a":[["bile-bto-0000121.html","bile"],["rectum-bto-0001158.html","rectum"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":10,"nb":3,"a":[["anther-bto-0000079.html","anther"],["epithelial-cell-bto-0000414.html","epithelial cell"],["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":3,"nb":5,"a":[["liquid-water-envo-00002006.html","liquid water"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/imipenem.html","imipenem"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":18,"nb":2,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["antibacterial/mupirocin.html","mupirocin"],["antifungal/2-4-diacetylphloroglucinol.html","2,4-diacetylphloroglucinol"]]},{"id":"NCBITaxon:1299","l":"Deinococcus radiodurans","na":7,"nb":2,"a":[["animal-house-envo-00003040.html","animal house"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["water-scum-envo-00005794.html","water scum"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"]],"b":[["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/linezolid.html","linezolid"]]},{"id":"NCBITaxon:1773","l":"Mycobacterium tuberculosis","na":5,"nb":2,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["posterior-lobe-bto-0000561.html","posterior lobe"],["sputum-bto-0001297.html","sputum"],["thorax-bto-0001368.html","thorax"],["thp-1-cell-bto-0001370.html","THP-1 cell"]],"b":[["antibacterial/sulfanilamide.html","sulfanilamide"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":3,"nb":2,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"],["unspecified/streptothricin-d.html","streptothricin D"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":14,"nb":1,"a":[["watercourse-envo-00000029.html","watercourse"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["leaf-po-0025034.html","leaf"]],"b":[["antibacterial/althiomycin.html","althiomycin"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":8,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":7,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"NCBITaxon:1496","l":"Clostridioides difficile","na":6,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["feces-uberon-0001988.html","feces"],["leukocyte-bto-0000751.html","leukocyte"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["intestine-environment-envo-2100002.html","intestine environment"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["antibacterial/fidaxomicin.html","fidaxomicin"]]},{"id":"NCBITaxon:229533","l":"Fusarium graminearum PH-1","na":1,"nb":5,"a":[["soil-envo-00001998.html","soil"]],"b":[["antifungal/carbendazim.html","carbendazim"],["antifungal/difenoconazole.html","difenoconazole"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/prochloraz.html","prochloraz"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":1,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"],["midgut-bto-0000863.html","midgut"],["paddy-field-envo-00000297.html","paddy field"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["antibacterial/althiomycin.html","althiomycin"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":4,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"],["human-construction-envo-00000070.html","human construction"],["sediment-envo-00002007.html","sediment"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["antibacterial/nocardamine.html","nocardamine"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":4,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/trimethoprim.html","trimethoprim"],["antiprotozoal/suramin.html","suramin"],["antiviral/tilorone.html","tilorone"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae (strain ATCC 42149 / RIB 40)","na":4,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["mountain-pass-envo-00000084.html","mountain pass"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":3,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":2,"nb":1,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":2,"nb":1,"a":[["feces-uberon-0001988.html","feces"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["unspecified/chir-090.html","CHIR-090"]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":1,"nb":1,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["antibacterial/clavulanic-acid.html","clavulanic acid"]]},{"id":"NCBITaxon:264951","l":"Paecilomyces variotii","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["antibacterial/m-viriditoxin.html","(M)-viriditoxin"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":1,"nb":1,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["antibacterial/lysocin-e.html","lysocin E"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":1,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/HabitatMech--CellStructureMech.json b/assets/fleet/edges/HabitatMech--CellStructureMech.json index 4944011..639c1cd 100644 --- a/assets/fleet/edges/HabitatMech--CellStructureMech.json +++ b/assets/fleet/edges/HabitatMech--CellStructureMech.json @@ -1 +1 @@ -{"a":"HabitatMech","b":"CellStructureMech","base":{"HabitatMech":"https://culturebotai.github.io/HabitatMech/pages/habitats/","CellStructureMech":"https://culturebotai.github.io/CellStructureMech/pages/structures/"},"n":39,"by":{"NCBITaxon":39},"terms":[{"id":"NCBITaxon:2","l":"Bacteria","na":40,"nb":80,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["factory-envo-01000536.html","factory"],["adult-bto-0001043.html","adult"]],"b":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":36,"nb":19,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["bay-envo-00000032.html","bay"],["freshwater-biome-envo-00000873.html","freshwater biome"],["liquid-water-envo-00002006.html","liquid water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["appendage/curli.html","curli"],["appendage/p_pilus.html","P pilus"],["appendage/pilus.html","pilus"],["appendage/type_i_pilus.html","type I pilus"],["cytoskeleton/parm_filament.html","ParM filament"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]]},{"id":"NCBITaxon:1117","l":"Cyanobacteriota","na":11,"nb":11,"a":[["cecum-bto-0000166.html","cecum"],["colon-bto-0000269.html","colon"],["gut-bto-0000545.html","gut"],["head-bto-0000282.html","head"],["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"]],"b":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":10,"nb":8,"a":[["anther-bto-0000079.html","anther"],["epithelial-cell-bto-0000414.html","epithelial cell"],["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["spore/endospore_coat.html","endospore coat"],["spore/endospore_cortex.html","endospore cortex"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":16,"nb":6,"a":[["fresh-water-envo-00002011.html","fresh water"],["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"]],"b":[["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/rc_lh1_pufx_core_complex.html","RC-LH1-PufX core complex"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"],["membrane_organelle/plasma_membrane_derived_chromatophore_membrane.html","plasma membrane-derived chromatophore membrane"]]},{"id":"NCBITaxon:3055","l":"Chlamydomonas reinhardtii","na":4,"nb":37,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["large-river-biome-envo-00000887.html","large river biome"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["pond-water-envo-00002228.html","pond water"]],"b":[["appendage/ciliary_membrane.html","ciliary membrane"],["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"],["appendage/mastigoneme.html","mastigoneme"],["cytoskeleton/axoneme.html","axoneme"],["cytoskeleton/ciliary_basal_body.html","ciliary basal body"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":7,"nb":4,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["liquid-water-envo-00002006.html","liquid water"],["crown-gall-bto-0000303.html","crown gall"],["finger-bto-0004669.html","finger"],["resting-cell-bto-0001170.html","resting cell"],["water-scum-envo-00005794.html","water scum"]],"b":[["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"],["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":28,"nb":3,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["liquid-water-envo-00002006.html","liquid water"],["watercourse-envo-00000029.html","watercourse"],["compost-envo-00002170.html","compost"],["hospital-envo-00002173.html","hospital"],["human-construction-envo-00000070.html","human construction"]],"b":[["appendage/type_iv_pilus.html","type IV pilus"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":10,"nb":3,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"]],"b":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"]]},{"id":"NCBITaxon:28211","l":"Alphaproteobacteria","na":6,"nb":3,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"],["alimentary-canal-bto-0000058.html","alimentary canal"],["column-bto-0005692.html","column"],["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["spike-bto-0001278.html","spike"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]]},{"id":"NCBITaxon:1108","l":"Chloroflexus aurantiacus","na":3,"nb":3,"a":[["rhizosphere-envo-00005801.html","rhizosphere"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":12,"nb":2,"a":[["hospital-envo-00002173.html","hospital"],["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["epithelial-cell-bto-0000414.html","epithelial cell"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["meninx-bto-0000144.html","meninx"]],"b":[["envelope/capsule.html","capsule"],["envelope/glycocalyx.html","glycocalyx"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":7,"nb":2,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["pseudostem-bto-0005992.html","pseudostem"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]]},{"id":"NCBITaxon:1236","l":"Gammaproteobacteria","na":6,"nb":2,"a":[["column-bto-0005692.html","column"],["hemolymph-bto-0000572.html","hemolymph"],["oil-secretion-bto-0005373.html","oil secretion"],["spike-bto-0001278.html","spike"],["urine-bto-0001419.html","urine"],["subtropical-envo-01000205.html","subtropical"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"],["secretion_system/type_iii_protein_secretion_system_complex.html","type III protein secretion system complex"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":5,"nb":2,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"],["feces-uberon-0001988.html","feces"],["rectum-bto-0001158.html","rectum"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"],["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"]]},{"id":"NCBITaxon:203682","l":"Planctomycetota","na":2,"nb":2,"a":[["column-bto-0005692.html","column"],["crop-bto-0000301.html","crop"]],"b":[["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":40,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["laboratory-facility-envo-01001406.html","laboratory facility"],["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["biofilm-bto-0002690.html","biofilm"]],"b":[["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":15,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":8,"nb":1,"a":[["beach-envo-00000091.html","beach"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["sea-sand-envo-00002118.html","sea sand"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["microcompartment/bacterial_microcompartment.html","bacterial microcompartment"]]},{"id":"NCBITaxon:1773","l":"Mycobacterium tuberculosis","na":5,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["posterior-lobe-bto-0000561.html","posterior lobe"],["sputum-bto-0001297.html","sputum"],["thorax-bto-0001368.html","thorax"],["thp-1-cell-bto-0001370.html","THP-1 cell"]],"b":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":5,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"],["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]]},{"id":"NCBITaxon:1097","l":"Chlorobaculum tepidum","na":1,"nb":4,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":4,"nb":1,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["envelope/s_layer.html","S-layer"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":4,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["cytoskeleton/tubz_filament.html","TubZ filament"]]},{"id":"NCBITaxon:264462","l":"Bdellovibrio bacteriovorus HD100","na":4,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["appendage/type_iv_pilus.html","type IV pilus"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":1,"nb":3,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]]},{"id":"NCBITaxon:1224","l":"Pseudomonadota","na":1,"nb":3,"a":[["hemolymph-bto-0000572.html","hemolymph"]],"b":[["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["microcompartment/carboxysome.html","carboxysome"],["ribonucleoprotein/bacterial_degradosome.html","bacterial degradosome"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":1,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":3,"nb":1,"a":[["city-envo-00000856.html","city"],["cold-environment-envo-01000309.html","cold environment"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["other/ap_5_adaptor_complex.html","AP-5 adaptor complex"]]},{"id":"NCBITaxon:139","l":"Borreliella burgdorferi","na":2,"nb":1,"a":[["joint-bto-0001686.html","joint"],["needle-bto-0000917.html","needle"]],"b":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]]},{"id":"NCBITaxon:190650","l":"Caulobacter vibrioides (strain ATCC 19089 / CIP 103742 / CB 15)","na":2,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["cytoskeleton/cytoophidium.html","cytoophidium"]]},{"id":"NCBITaxon:555778","l":"","na":1,"nb":2,"a":[["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]]},{"id":"NCBITaxon:83334","l":"Escherichia coli O157:H7","na":1,"nb":2,"a":[["uterus-bto-0001424.html","uterus"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":1,"a":[["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["other/cellulosome.html","cellulosome"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":1,"nb":1,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus ATCC 27405","na":1,"nb":1,"a":[["blood-plasma-bto-0000131.html","blood plasma"]],"b":[["other/cellulosome.html","cellulosome"]]},{"id":"NCBITaxon:208963","l":"Pseudomonas aeruginosa (strain UCBPP-PA14)","na":1,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["inclusion/r_body.html","R-body"]]},{"id":"NCBITaxon:2830","l":"Haptophyta","na":1,"nb":1,"a":[["column-bto-0005692.html","column"]],"b":[["appendage/haptonema.html","haptonema"]]},{"id":"NCBITaxon:572477","l":"Allochromatium vinosum (strain ATCC 17899 / DSM 180 / NBRC 103801 / NCIMB 10441 / D)","na":1,"nb":1,"a":[["ditch-water-envo-00002158.html","ditch water"]],"b":[["inclusion/sulfur_globule.html","sulfur globule"]]}]} \ No newline at end of file +{"a":"HabitatMech","b":"CellStructureMech","base":{"HabitatMech":"https://culturebotai.github.io/HabitatMech/pages/habitats/","CellStructureMech":"https://culturebotai.github.io/CellStructureMech/pages/structures/"},"n":41,"by":{"NCBITaxon":41},"terms":[{"id":"NCBITaxon:2","l":"Bacteria","na":40,"nb":89,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["factory-envo-01000536.html","factory"],["adult-bto-0001043.html","adult"]],"b":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":36,"nb":31,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["bay-envo-00000032.html","bay"],["freshwater-biome-envo-00000873.html","freshwater biome"],["liquid-water-envo-00002006.html","liquid water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["appendage/curli.html","curli"],["appendage/p_pilus.html","P pilus"],["appendage/pilus.html","pilus"],["appendage/type_i_pilus.html","type I pilus"],["cytoskeleton/parm_filament.html","ParM filament"],["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]]},{"id":"NCBITaxon:1117","l":"Cyanobacteriota","na":11,"nb":13,"a":[["cecum-bto-0000166.html","cecum"],["colon-bto-0000269.html","colon"],["gut-bto-0000545.html","gut"],["head-bto-0000282.html","head"],["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"]],"b":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/photosystem_i.html","photosystem I"],["energy_complex/photosystem_ii.html","photosystem II"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":10,"nb":14,"a":[["anther-bto-0000079.html","anther"],["epithelial-cell-bto-0000414.html","epithelial cell"],["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["cytoskeleton/alfa_filament.html","AlfA filament"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":16,"nb":7,"a":[["fresh-water-envo-00002011.html","fresh water"],["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"]],"b":[["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/rc_lh1_pufx_core_complex.html","RC-LH1-PufX core complex"],["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":5,"nb":6,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"],["feces-uberon-0001988.html","feces"],["rectum-bto-0001158.html","rectum"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"],["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"],["secretion_system/type_vi_secretion_system_baseplate.html","type VI secretion system baseplate"],["secretion_system/type_vi_secretion_system_contractile_sheath.html","type VI secretion system contractile sheath"],["secretion_system/type_vi_secretion_system_hcp_tube.html","type VI secretion system Hcp tube"],["secretion_system/type_vi_secretion_system_vgrg_paar_spike_complex.html","type VI secretion system VgrG/PAAR spike complex"]]},{"id":"NCBITaxon:3055","l":"Chlamydomonas reinhardtii","na":4,"nb":58,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["large-river-biome-envo-00000887.html","large river biome"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["pond-water-envo-00002228.html","pond water"]],"b":[["appendage/ciliary_membrane.html","ciliary membrane"],["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"],["appendage/mastigoneme.html","mastigoneme"],["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_a_tubule_inner_sheath.html","axonemal A tubule inner sheath"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":7,"nb":4,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["liquid-water-envo-00002006.html","liquid water"],["crown-gall-bto-0000303.html","crown gall"],["finger-bto-0004669.html","finger"],["resting-cell-bto-0001170.html","resting cell"],["water-scum-envo-00005794.html","water scum"]],"b":[["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"],["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":28,"nb":3,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["liquid-water-envo-00002006.html","liquid water"],["watercourse-envo-00000029.html","watercourse"],["compost-envo-00002170.html","compost"],["hospital-envo-00002173.html","hospital"],["human-construction-envo-00000070.html","human construction"]],"b":[["appendage/type_iv_pilus.html","type IV pilus"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":10,"nb":3,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"]],"b":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":3,"nb":8,"a":[["city-envo-00000856.html","city"],["cold-environment-envo-01000309.html","cold environment"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["other/ap_5_adaptor_complex.html","AP-5 adaptor complex"],["ribonucleoprotein/u11_snrnp.html","U11 snRNP"],["ribonucleoprotein/u11_u12_snrnp.html","U11/U12 snRNP"],["ribonucleoprotein/u12_snrnp.html","U12 snRNP"],["ribonucleoprotein/u4atac_snrnp.html","U4atac snRNP"],["ribonucleoprotein/u4atac_u6atac_snrnp.html","U4atac/U6atac snRNP"]]},{"id":"NCBITaxon:28211","l":"Alphaproteobacteria","na":6,"nb":3,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"],["alimentary-canal-bto-0000058.html","alimentary canal"],["column-bto-0005692.html","column"],["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["spike-bto-0001278.html","spike"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]]},{"id":"NCBITaxon:1108","l":"Chloroflexus aurantiacus","na":3,"nb":3,"a":[["rhizosphere-envo-00005801.html","rhizosphere"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":40,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["laboratory-facility-envo-01001406.html","laboratory facility"],["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["biofilm-bto-0002690.html","biofilm"]],"b":[["envelope/periplasmic_space.html","periplasmic space"],["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":12,"nb":2,"a":[["hospital-envo-00002173.html","hospital"],["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["epithelial-cell-bto-0000414.html","epithelial cell"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["meninx-bto-0000144.html","meninx"]],"b":[["envelope/capsule.html","capsule"],["envelope/glycocalyx.html","glycocalyx"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":7,"nb":2,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["pseudostem-bto-0005992.html","pseudostem"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]]},{"id":"NCBITaxon:1236","l":"Gammaproteobacteria","na":6,"nb":2,"a":[["column-bto-0005692.html","column"],["hemolymph-bto-0000572.html","hemolymph"],["oil-secretion-bto-0005373.html","oil secretion"],["spike-bto-0001278.html","spike"],["urine-bto-0001419.html","urine"],["subtropical-envo-01000205.html","subtropical"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"],["secretion_system/type_iii_protein_secretion_system_complex.html","type III protein secretion system complex"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":4,"nb":2,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["cytoskeleton/tubz_filament.html","TubZ filament"],["inclusion/parasporal_crystal.html","parasporal crystal"]]},{"id":"NCBITaxon:203682","l":"Planctomycetota","na":2,"nb":2,"a":[["column-bto-0005692.html","column"],["crop-bto-0000301.html","crop"]],"b":[["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":15,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":8,"nb":1,"a":[["beach-envo-00000091.html","beach"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["sea-sand-envo-00002118.html","sea sand"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["microcompartment/bacterial_microcompartment.html","bacterial microcompartment"]]},{"id":"NCBITaxon:1773","l":"Mycobacterium tuberculosis","na":5,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["posterior-lobe-bto-0000561.html","posterior lobe"],["sputum-bto-0001297.html","sputum"],["thorax-bto-0001368.html","thorax"],["thp-1-cell-bto-0001370.html","THP-1 cell"]],"b":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":5,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"],["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]]},{"id":"NCBITaxon:1097","l":"Chlorobaculum tepidum","na":1,"nb":4,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":4,"nb":1,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["envelope/s_layer.html","S-layer"]]},{"id":"NCBITaxon:264462","l":"Bdellovibrio bacteriovorus HD100","na":4,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["appendage/type_iv_pilus.html","type IV pilus"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":1,"nb":3,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]]},{"id":"NCBITaxon:1224","l":"Pseudomonadota","na":1,"nb":3,"a":[["hemolymph-bto-0000572.html","hemolymph"]],"b":[["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["microcompartment/carboxysome.html","carboxysome"],["ribonucleoprotein/bacterial_degradosome.html","bacterial degradosome"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":1,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]]},{"id":"NCBITaxon:139","l":"Borreliella burgdorferi","na":2,"nb":1,"a":[["joint-bto-0001686.html","joint"],["needle-bto-0000917.html","needle"]],"b":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]]},{"id":"NCBITaxon:190650","l":"Caulobacter vibrioides (strain ATCC 19089 / CIP 103742 / CB 15)","na":2,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["cytoskeleton/cytoophidium.html","cytoophidium"]]},{"id":"NCBITaxon:555778","l":"","na":1,"nb":2,"a":[["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]]},{"id":"NCBITaxon:83334","l":"Escherichia coli O157:H7","na":1,"nb":2,"a":[["uterus-bto-0001424.html","uterus"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["spore/exosporium.html","exosporium"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":1,"a":[["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["other/cellulosome.html","cellulosome"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":1,"nb":1,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus (strain ATCC 27405 / DSM 1237 / JCM 9322 / NBRC 103400 / NCIMB 10682 / NRRL B-4536 / VPI 7372)","na":1,"nb":1,"a":[["blood-plasma-bto-0000131.html","blood plasma"]],"b":[["other/cellulosome.html","cellulosome"]]},{"id":"NCBITaxon:208963","l":"Pseudomonas aeruginosa (strain UCBPP-PA14)","na":1,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["inclusion/r_body.html","R-body"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":1,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]]},{"id":"NCBITaxon:2830","l":"Haptophyta","na":1,"nb":1,"a":[["column-bto-0005692.html","column"]],"b":[["appendage/haptonema.html","haptonema"]]},{"id":"NCBITaxon:572477","l":"Allochromatium vinosum (strain ATCC 17899 / DSM 180 / NBRC 103801 / NCIMB 10441 / D)","na":1,"nb":1,"a":[["ditch-water-envo-00002158.html","ditch water"]],"b":[["inclusion/sulfur_globule.html","sulfur globule"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/HabitatMech--CommunityMech.json b/assets/fleet/edges/HabitatMech--CommunityMech.json index cf5e7b3..0b1ae9a 100644 --- a/assets/fleet/edges/HabitatMech--CommunityMech.json +++ b/assets/fleet/edges/HabitatMech--CommunityMech.json @@ -1 +1 @@ -{"a":"HabitatMech","b":"CommunityMech","base":{"HabitatMech":"https://culturebotai.github.io/HabitatMech/pages/habitats/","CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/"},"n":276,"by":{"NCBITaxon":229,"ENVO":41,"UBERON":4,"CHEBI":2},"terms":[{"id":"NCBITaxon:2","l":"Bacteria","na":40,"nb":54,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["factory-envo-01000536.html","factory"],["adult-bto-0001043.html","adult"]],"b":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"]]},{"id":"ENVO:00001998","l":"soil","na":105,"nb":14,"a":[["soil-habitatmech-gold-fc35741739.html","Soil"],["wetland-area-envo-00000043.html","wetland area"],["soil-habitatmech-gold-b1d707114a.html","Soil"],["soil-habitatmech-gold-e9844fc187.html","Soil"],["soil-habitatmech-gold-3e86b794ef.html","Soil"],["soil-habitatmech-gold-067f7f5e2a.html","Soil"]],"b":[["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["LBNL_Switchgrass_Soil_SynCom16.html","LBNL Switchgrass Soil SynCom16"]]},{"id":"NCBITaxon:1386","l":"Bacillus ","na":19,"nb":14,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["crop-bto-0000301.html","crop"],["dorsum-bto-0001713.html","dorsum"],["hand-bto-0004668.html","hand"],["head-bto-0000282.html","head"],["juvenile-bto-0002168.html","juvenile"]],"b":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":36,"nb":13,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["bay-envo-00000032.html","bay"],["freshwater-biome-envo-00000873.html","freshwater biome"],["liquid-water-envo-00002006.html","liquid water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"]]},{"id":"ENVO:00002123","l":"bioreactor","na":31,"nb":12,"a":[["aerobic-bioreactor-envo-00002126.html","aerobic bioreactor"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["air-scrubber-biofilm-habitatmech-gold-7f436f8aff.html","air scrubber biofilm"],["biofilter-envo-00002152.html","biofilter"],["bioreactor-envo-00002123.html","bioreactor"],["bioreactor-habitatmech-gold-c4bf3d0c83.html","Bioreactor"]],"b":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":27,"nb":10,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["watercourse-envo-00000029.html","watercourse"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["egg-food-product-foodon-00001274.html","egg food product"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]]},{"id":"NCBITaxon:286","l":"Pseudomonas","na":10,"nb":14,"a":[["heart-bto-0000562.html","heart"],["juvenile-bto-0002168.html","juvenile"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"],["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":10,"nb":11,"a":[["anther-bto-0000079.html","anther"],["epithelial-cell-bto-0000414.html","epithelial cell"],["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"]]},{"id":"ENVO:00002007","l":"sediment","na":103,"nb":9,"a":[["marine-sediment-envo-03000033.html","marine sediment"],["sediment-habitatmech-gold-6bc70f0406.html","Sediment"],["sediment-habitatmech-gold-33b265d89f.html","Sediment"],["sediment-habitatmech-gold-7db7617ea4.html","Sediment"],["sediment-habitatmech-gold-2f9eb7ed2f.html","Sediment"],["sediment-habitatmech-gold-2ff751e0a6.html","Sediment"]],"b":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":28,"nb":7,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["liquid-water-envo-00002006.html","liquid water"],["watercourse-envo-00000029.html","watercourse"],["compost-envo-00002170.html","compost"],["hospital-envo-00002173.html","hospital"],["human-construction-envo-00000070.html","human construction"]],"b":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":27,"nb":7,"a":[["small-river-biome-envo-00000890.html","small river biome"],["factory-envo-01000536.html","factory"],["organic-waste-material-envo-00002873.html","organic waste material"],["leaf-po-0025034.html","leaf"],["milk-uberon-0001913.html","milk"],["rhizosphere-envo-00005801.html","rhizosphere"]],"b":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]]},{"id":"ENVO:00002116","l":"contaminated soil","na":7,"nb":14,"a":[["hydrocarbon-habitatmech-gold-3c68e33a11.html","Hydrocarbon"],["persistent-organic-pollutant-bioremediation-material-habitatmech-gold-1a78606807.html","persistent organic pollutant bioremediation material"],["contaminated-soil-envo-00002116.html","contaminated soil"],["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"],["oil-contaminated-soil-envo-00002875.html","oil contaminated soil"],["pesticide-habitatmech-gold-8ebd2ee3c5.html","Pesticide"]],"b":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":11,"nb":7,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["resting-cell-bto-0001170.html","resting cell"],["seedling-bto-0001228.html","seedling"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":19,"nb":6,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["saline-water-body-envo-01001319.html","saline water body"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]]},{"id":"UBERON:0000160","l":"intestine","na":11,"nb":6,"a":[["intestine-habitatmech-gold-f3f5ed6008.html","Intestine"],["intestine-habitatmech-gold-70ccbcfe44.html","Intestine"],["intestine-habitatmech-gold-8a75a65fc5.html","Intestine"],["intestine-habitatmech-gold-0171231ef5.html","Intestine"],["intestine-habitatmech-gold-523d63f6f3.html","Intestine"],["intestine-habitatmech-gold-394283d34e.html","Intestine"]],"b":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["OMM12_Gnotobiotic_Mouse_Gut_Community.html","OMM12 Gnotobiotic Mouse Gut Community"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]]},{"id":"ENVO:01001001","l":"plant-associated environment","na":21,"nb":5,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["bryophytes-habitatmech-gold-35beb98884.html","Bryophytes"],["endosphere-habitatmech-gold-bfe3e11951.html","Endosphere"],["green-alga-associated-environment-habitatmech-gold-184cc9e802.html","green-alga-associated environment"],["mixed-parts-habitatmech-gold-4dd29bdcf8.html","Mixed parts"],["peat-moss-associated-environment-habitatmech-gold-7f57b82cab.html","peat moss-associated environment"]],"b":[["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":18,"nb":5,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]]},{"id":"ENVO:00000043","l":"wetland area","na":14,"nb":5,"a":[["bog-habitatmech-gold-42a3b7b2d3.html","Bog"],["fen-habitatmech-gold-9de4fdaa2a.html","Fen"],["marsh-envo-00000035.html","marsh"],["microbial-mat-habitatmech-gold-e066163fc8.html","Microbial mat"],["sediment-habitatmech-gold-7db7617ea4.html","Sediment"],["sediment-habitatmech-gold-98d936714f.html","Sediment"]],"b":[["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Wetland_Oxygen_Sulfate_GHG_Microcosm_Community.html","Wetland Oxygen-Sulfate Greenhouse Gas Microcosm Community"]]},{"id":"ENVO:01001004","l":"groundwater","na":5,"nb":11,"a":[["contaminated-habitatmech-gold-66f93e3a62.html","Contaminated"],["contaminated-habitatmech-gold-33f4720550.html","Contaminated"],["groundwater-habitatmech-gold-22a80cbd14.html","Groundwater"],["groundwater-habitatmech-gold-7f8e268653.html","Groundwater"],["groundwater-envo-01001004.html","groundwater"]],"b":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"]]},{"id":"NCBITaxon:1578","l":"Lactobacillus","na":20,"nb":4,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["blood-bto-0000089.html","blood"],["brain-bto-0000142.html","brain"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["hand-bto-0004668.html","hand"]],"b":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]]},{"id":"NCBITaxon:1827","l":"Rhodococcus ","na":4,"nb":7,"a":[["nectar-bto-0000537.html","nectar"],["pitcher-bto-0001069.html","pitcher"],["small-intestine-bto-0000651.html","small intestine"],["stem-bto-0001300.html","stem"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":4,"nb":4,"a":[["stream-envo-00000023.html","stream"],["biome-envo-00000428.html","biome"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]]},{"id":"NCBITaxon:374","l":"Bradyrhizobium","na":4,"nb":4,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"],["wood-bto-0005516.html","wood"]],"b":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"],["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]]},{"id":"NCBITaxon:1485","l":"Clostridium","na":26,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["alimentary-canal-bto-0000058.html","alimentary canal"],["colon-bto-0000269.html","colon"]],"b":[["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]]},{"id":"ENVO:00002170","l":"compost","na":20,"nb":3,"a":[["compost-envo-00002170.html","compost"],["composting-habitatmech-gold-143ceb8669.html","Composting"],["composting-habitatmech-gold-edeecbabed.html","Composting"],["composting-habitatmech-gold-5948923b46.html","Composting"],["composting-habitatmech-gold-70db4820d1.html","Composting"],["composting-habitatmech-gold-cdbbd857c8.html","Composting"]],"b":[["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":19,"nb":3,"a":[["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["bone-element-uberon-0001474.html","bone element"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]]},{"id":"NCBITaxon:40324","l":"Stenotrophomonas maltophilia","na":15,"nb":3,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["catheter-device-ncit-c50344.html","Catheter Device"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["seedling-bto-0001228.html","seedling"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]]},{"id":"NCBITaxon:13687","l":"Sphingomonas","na":14,"nb":3,"a":[["crop-bto-0000301.html","crop"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["ileum-bto-0000620.html","ileum"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"]],"b":[["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"],["Wheat_Consortium_C6.html","Wheat Synthetic Consortium C6"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]]},{"id":"NCBITaxon:1590","l":"Lactiplantibacillus plantarum","na":14,"nb":3,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["food-fermented-foodon-00001258.html","food (fermented)"],["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"],["breast-bto-0000149.html","breast"],["colonic-epithelium-bto-0001709.html","colonic epithelium"],["epithelial-cell-bto-0000414.html","epithelial cell"]],"b":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Pichia_Lactiplantibacillus_CCMA_Plant_Beverage_Coculture.html","Pichia-Lactiplantibacillus CCMA Plant Beverage Coculture"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":11,"nb":3,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["fermentation-starter-envo-03600040.html","fermentation starter"],["fruit-bto-0000486.html","fruit"],["mammary-epithelial-cell-bto-0004300.html","mammary epithelial cell"],["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]]},{"id":"NCBITaxon:1667","l":"Arthrobacter sp.","na":9,"nb":3,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["leaf-po-0025034.html","leaf"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":8,"nb":3,"a":[["reservoir-envo-00000025.html","reservoir"],["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["secretion-bto-0002979.html","secretion"],["stomach-bto-0001307.html","stomach"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]]},{"id":"NCBITaxon:37919","l":"Rhodococcus opacus","na":5,"nb":3,"a":[["watercourse-envo-00000029.html","watercourse"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"],["sludge-envo-00002044.html","sludge"],["water-scum-envo-00005794.html","water scum"]],"b":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]]},{"id":"ENVO:00000044","l":"peatland","na":4,"nb":3,"a":[["bog-habitatmech-gold-42a3b7b2d3.html","Bog"],["blanket-bog-envo-00000511.html","blanket bog"],["fen-envo-00000232.html","fen"],["peatland-envo-00000044.html","peatland"]],"b":[["SPRUCE_Peatland_Methane_Cycling_Community.html","SPRUCE Peatland Methane-Cycling Microbial Community"],["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"]]},{"id":"NCBITaxon:1534","l":"Clostridium kluyveri","na":3,"nb":4,"a":[["reservoir-envo-00000025.html","reservoir"],["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"]],"b":[["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]]},{"id":"NCBITaxon:3055","l":"Chlamydomonas reinhardtii","na":4,"nb":3,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["large-river-biome-envo-00000887.html","large river biome"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["pond-water-envo-00002228.html","pond water"]],"b":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":3,"nb":3,"a":[["milk-uberon-0001913.html","milk"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]]},{"id":"NCBITaxon:237","l":"Flavobacterium","na":3,"nb":3,"a":[["column-bto-0005692.html","column"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]]},{"id":"NCBITaxon:32008","l":"Burkholderia","na":3,"nb":3,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["midgut-bto-0000863.html","midgut"]],"b":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]]},{"id":"ENVO:01001405","l":"laboratory environment","na":2,"nb":155,"a":[["genetic-cross-habitatmech-gold-ba9317369a.html","Genetic cross"],["laboratory-environment-envo-01001405.html","laboratory environment"]],"b":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]]},{"id":"ENVO:00005801","l":"rhizosphere","na":2,"nb":50,"a":[["rhizosphere-envo-00005801.html","rhizosphere"],["soil-habitatmech-gold-067f7f5e2a.html","Soil"]],"b":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":40,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["laboratory-facility-envo-01001406.html","laboratory facility"],["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["biofilm-bto-0002690.html","biofilm"]],"b":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":33,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["pond-water-envo-00002228.html","pond water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["water-body-envo-00000063.html","water body"]],"b":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]]},{"id":"ENVO:00002124","l":"anaerobic bioreactor","na":20,"nb":2,"a":[["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["anaerobic-sludge-envo-00002129.html","anaerobic sludge"],["anaerobic-sludge-blanket-reactor-envo-00002213.html","anaerobic sludge blanket reactor"],["biofilm-habitatmech-gold-6c12d05420.html","Biofilm"],["biogas-envo-01000556.html","biogas"],["biomass-habitatmech-gold-6dd85a8177.html","Biomass"]],"b":[["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Shewanella_Pseudomonas_Fe0_Electrosyntrophic_Denitrifying_Consortium.html","Shewanella oneidensis + Pseudomonas aeruginosa Fe0-dependent Electro-syntrophic Denitrifying Consortium"]]},{"id":"ENVO:00002001","l":"waste water","na":19,"nb":2,"a":[["activated-sludge-habitatmech-gold-0d353772af.html","Activated Sludge"],["anaerobic-digestor-habitatmech-gold-ed87e682a9.html","Anaerobic digestor"],["industrial-wastewater-envo-01000964.html","industrial wastewater"],["municipal-landfill-habitatmech-gold-0f40aa60ce.html","Municipal landfill"],["nutrient-removal-habitatmech-gold-a18a70ae30.html","Nutrient removal"],["reclaimed-recycled-wastewater-habitatmech-gold-dc4dba910a.html","Reclaimed/Recycled wastewater"]],"b":[["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]]},{"id":"ENVO:00002046","l":"activated sludge","na":16,"nb":2,"a":[["activated-sludge-habitatmech-gold-6ba6dd1c82.html","Activated sludge"],["activated-sludge-habitatmech-gold-adf7e16a3a.html","Activated sludge"],["activated-sludge-habitatmech-gold-25b680d9bc.html","Activated sludge"],["activated-sludge-habitatmech-gold-dab267c443.html","Activated sludge"],["activated-sludge-habitatmech-gold-43c33f3ecc.html","Activated sludge"],["activated-sludge-habitatmech-gold-f459151394.html","Activated sludge"]],"b":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"]]},{"id":"ENVO:00000051","l":"hot spring","na":13,"nb":2,"a":[["acid-lake-habitatmech-gold-21e53e7981.html","Acid lake"],["geothermal-pool-hot-lake-habitatmech-gold-d2132d09ae.html","Geothermal pool/Hot lake"],["hot-42-90c-habitatmech-gold-c085f6141a.html","Hot (42-90C)"],["hot-spring-envo-00000051.html","hot spring"],["microbial-mats-habitatmech-gold-a0372e2d63.html","Microbial mats"],["near-boiling-90c-habitatmech-gold-8b53067bc5.html","Near-boiling (>90C)"]],"b":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]]},{"id":"UBERON:0001007","l":"digestive system","na":13,"nb":2,"a":[["digestive-system-habitatmech-gold-26a84185d3.html","Digestive system"],["digestive-system-habitatmech-gold-6eecdf150d.html","Digestive system"],["digestive-system-habitatmech-gold-d7cff86ce8.html","Digestive system"],["digestive-system-habitatmech-gold-8a68d0f6f5.html","Digestive system"],["digestive-system-habitatmech-gold-c1d7082e4b.html","Digestive system"],["digestive-system-habitatmech-gold-f6720bccf0.html","Digestive system"]],"b":[["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]]},{"id":"NCBITaxon:1117","l":"Cyanobacteriota","na":11,"nb":2,"a":[["cecum-bto-0000166.html","cecum"],["colon-bto-0000269.html","colon"],["gut-bto-0000545.html","gut"],["head-bto-0000282.html","head"],["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"]],"b":[["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]]},{"id":"ENVO:00002043","l":"wastewater treatment plant","na":9,"nb":2,"a":[["a-o-treatment-system-habitatmech-gold-7c91485eb8.html","A/O treatment system"],["activated-sludge-habitatmech-gold-032b7dd40b.html","Activated sludge"],["aerobic-digester-habitatmech-gold-03fc563fae.html","Aerobic digester"],["anaerobic-digester-habitatmech-gold-3f58fb59be.html","Anaerobic digester"],["effluent-habitatmech-gold-827b5dbbef.html","Effluent"],["influent-habitatmech-gold-2bf3ab7d2f.html","Influent"]],"b":[["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"]]},{"id":"ENVO:00001997","l":"acid mine drainage","na":2,"nb":8,"a":[["acid-mine-drainage-envo-00001997.html","acid mine drainage"],["sediment-habitatmech-gold-7e27a52150.html","Sediment"]],"b":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":8,"nb":2,"a":[["groundwater-envo-01001004.html","groundwater"],["bioreactor-envo-00002123.html","bioreactor"],["river-envo-00000022.html","river"],["freshwater-environment-envo-01000306.html","freshwater environment"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":8,"nb":2,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["lab-synthesis-habitatmech-bacdive-0e92e77cd4.html","Lab-synthesis"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["oil-spill-envo-00002061.html","oil spill"],["temperate-envo-01000206.html","temperate"]],"b":[["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]]},{"id":"NCBITaxon:33038","l":"Mediterraneibacter gnavus","na":8,"nb":2,"a":[["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["juvenile-bto-0002168.html","juvenile"],["animal-litter-envo-00002191.html","animal litter"]],"b":[["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]]},{"id":"NCBITaxon:28216","l":"Betaproteobacteria","na":7,"nb":2,"a":[["column-bto-0005692.html","column"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["spike-bto-0001278.html","spike"]],"b":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]]},{"id":"NCBITaxon:1236","l":"Gammaproteobacteria","na":6,"nb":2,"a":[["column-bto-0005692.html","column"],["hemolymph-bto-0000572.html","hemolymph"],["oil-secretion-bto-0005373.html","oil secretion"],["spike-bto-0001278.html","spike"],["urine-bto-0001419.html","urine"],["subtropical-envo-01000205.html","subtropical"]],"b":[["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]]},{"id":"NCBITaxon:1305","l":"Streptococcus sanguinis","na":6,"nb":2,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["throat-bto-0000828.html","throat"],["geographic-feature-envo-00000000.html","geographic feature"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]]},{"id":"NCBITaxon:28211","l":"Alphaproteobacteria","na":6,"nb":2,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"],["alimentary-canal-bto-0000058.html","alimentary canal"],["column-bto-0005692.html","column"],["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["spike-bto-0001278.html","spike"]],"b":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]]},{"id":"ENVO:00002003","l":"fecal material","na":2,"nb":5,"a":[["frass-habitatmech-gold-319c3f351e.html","Frass"],["frass-habitatmech-gold-67f3cde908.html","Frass"]],"b":[["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"]]},{"id":"NCBITaxon:145262","l":"Methanothermobacter thermautotrophicus","na":5,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["intestine-environment-envo-2100002.html","intestine environment"],["sludge-envo-00002044.html","sludge"]],"b":[["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":4,"nb":2,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["carcass-envo-00002033.html","carcass"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["sludge-envo-00002044.html","sludge"]],"b":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":4,"nb":2,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]]},{"id":"NCBITaxon:165695","l":"Sphingobium","na":2,"nb":4,"a":[["juvenile-bto-0002168.html","juvenile"],["leaf-bto-0000713.html","leaf"]],"b":[["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["Sphingobium_Nitrososphaera_Phenanthrene_Carbon_SynCom.html","Sphingobium-Nitrososphaera Phenanthrene-Carbon SynCom"],["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]]},{"id":"ENVO:03600040","l":"fermentation starter","na":2,"nb":3,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["active-sourdough-starter-habitatmech-gold-3153798c1a.html","active sourdough starter"]],"b":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]]},{"id":"NCBITaxon:1678","l":"Bifidobacterium","na":2,"nb":3,"a":[["ileum-bto-0000620.html","ileum"],["juvenile-bto-0002168.html","juvenile"]],"b":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"]]},{"id":"NCBITaxon:1883","l":"Streptomyces","na":2,"nb":3,"a":[["crop-bto-0000301.html","crop"],["lab-synthesis-habitatmech-bacdive-0e92e77cd4.html","Lab-synthesis"]],"b":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Wheat_Consortium_C6.html","Wheat Synthetic Consortium C6"]]},{"id":"NCBITaxon:216816","l":"Bifidobacterium longum","na":3,"nb":2,"a":[["coral-reef-envo-00000150.html","coral reef"],["egg-food-product-foodon-00001274.html","egg food product"],["juvenile-bto-0002168.html","juvenile"]],"b":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]]},{"id":"NCBITaxon:2208","l":"Methanosarcina barkeri","na":2,"nb":3,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["sludge-envo-00002044.html","sludge"]],"b":[["DVM_Triculture.html","DVM Tri-culture"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]]},{"id":"NCBITaxon:28108","l":"Alteromonas macleodii","na":3,"nb":2,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["marine-water-body-envo-00001999.html","marine water body"],["sandstone-envo-00002055.html","sandstone"]],"b":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]]},{"id":"NCBITaxon:29466","l":"Veillonella parvula","na":3,"nb":2,"a":[["dental-plaque-bto-0000338.html","dental plaque"],["juvenile-bto-0002168.html","juvenile"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]]},{"id":"NCBITaxon:33059","l":"Acidithiobacillus caldus","na":3,"nb":2,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["paddy-field-envo-00000297.html","paddy field"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":3,"nb":2,"a":[["bile-bto-0000121.html","bile"],["rectum-bto-0001158.html","rectum"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]]},{"id":"NCBITaxon:816","l":"Bacteroides","na":2,"nb":3,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["colon-bto-0000269.html","colon"]],"b":[["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":2,"nb":3,"a":[["hospital-envo-00002173.html","hospital"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]]},{"id":"NCBITaxon:110500","l":"Pelotomaculum thermopropionicum","na":2,"nb":2,"a":[["river-envo-00000022.html","river"],["subpolar-coniferous-forest-biome-envo-01000250.html","subpolar coniferous forest biome"]],"b":[["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"]]},{"id":"NCBITaxon:1234","l":"Nitrospira","na":2,"nb":2,"a":[["crop-bto-0000301.html","crop"],["seedling-bto-0001228.html","seedling"]],"b":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":2,"nb":2,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]]},{"id":"NCBITaxon:203682","l":"Planctomycetota","na":2,"nb":2,"a":[["column-bto-0005692.html","column"],["crop-bto-0000301.html","crop"]],"b":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]]},{"id":"NCBITaxon:244366","l":"Klebsiella variicola","na":2,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]]},{"id":"NCBITaxon:28034","l":"Sulfobacillus thermosulfidooxidans","na":2,"nb":2,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]]},{"id":"NCBITaxon:357809","l":"Lachnoclostridium phytofermentans ISDg","na":2,"nb":2,"a":[["reservoir-envo-00000025.html","reservoir"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":2,"nb":2,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]]},{"id":"CHEBI:16183","l":"methane","na":1,"nb":57,"a":[["methane-bioremediation-material-habitatmech-gold-d510166905.html","methane bioremediation material"]],"b":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"]]},{"id":"ENVO:01001002","l":"animal-associated environment","na":47,"nb":1,"a":[["amphibian-associated-environment-habitatmech-gold-0cd585a031.html","amphibian-associated environment"],["annelid-associated-environment-habitatmech-gold-6e10201167.html","annelid-associated environment"],["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["chelicerate-associated-environment-habitatmech-gold-44a2cbbd60.html","chelicerate-associated environment"],["crustacean-associated-environment-habitatmech-gold-2959225799.html","crustacean-associated environment"],["insect-associated-environment-habitatmech-gold-dba2a83b95.html","insect-associated environment"]],"b":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"]]},{"id":"NCBITaxon:1279","l":"Staphylococcus","na":23,"nb":1,"a":[["adult-bto-0001043.html","adult"],["cecum-bto-0000166.html","cecum"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["head-bto-0000282.html","head"]],"b":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]]},{"id":"NCBITaxon:106592","l":"Ensifer adhaerens","na":20,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":17,"nb":1,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["fruit-bto-0000486.html","fruit"],["leaf-po-0025034.html","leaf"],["rhizosphere-envo-00005801.html","rhizosphere"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]]},{"id":"ENVO:00000021","l":"freshwater lake","na":16,"nb":1,"a":[["algal-bloom-envo-2000004.html","algal bloom"],["anoxic-zone-habitatmech-gold-b75e4aa08f.html","Anoxic zone"],["aphotic-zone-habitatmech-gold-fcba7e6334.html","Aphotic zone"],["biofilm-habitatmech-gold-748b381af4.html","Biofilm"],["cyanobacterial-aggregates-habitatmech-gold-9b43a12f0c.html","Cyanobacterial aggregates"],["cyanobacterial-bloom-envo-03600071.html","cyanobacterial bloom"]],"b":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":14,"nb":1,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["compost-envo-00002170.html","compost"],["organic-waste-material-envo-00002873.html","organic waste material"],["larva-bto-0000707.html","larva"],["rhizosphere-envo-00005801.html","rhizosphere"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]]},{"id":"NCBITaxon:1264","l":"Hominimerdicola alba","na":13,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["stream-envo-00000023.html","stream"],["animal-house-envo-00003040.html","animal house"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biome-envo-00000428.html","biome"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"]],"b":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"]]},{"id":"NCBITaxon:1350","l":"Enterococcus","na":13,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["dorsum-bto-0001713.html","dorsum"],["hand-bto-0004668.html","hand"],["intestine-bto-0000648.html","intestine"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"]],"b":[["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"]]},{"id":"ENVO:2100002","l":"intestine environment","na":1,"nb":12,"a":[["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"]]},{"id":"ENVO:01000320","l":"marine environment","na":1,"nb":11,"a":[["marine-environment-envo-01000320.html","marine environment"]],"b":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]]},{"id":"ENVO:00000020","l":"lake","na":10,"nb":1,"a":[["aphotic-zone-habitatmech-gold-fcba7e6334.html","Aphotic zone"],["freshwater-lake-envo-00000021.html","freshwater lake"],["glacial-lake-envo-00000488.html","glacial lake"],["lake-envo-00000020.html","lake"],["lake-habitatmech-gold-713c7f352a.html","Lake"],["marine-lake-envo-03600041.html","marine lake"]],"b":[["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"]]},{"id":"NCBITaxon:1399","l":"Cytobacillus firmus","na":10,"nb":1,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"],["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"]]},{"id":"NCBITaxon:33075","l":"Acidobacterium capsulatum","na":10,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["paddy-field-envo-00000297.html","paddy field"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"],["area-of-tundra-envo-00000112.html","area of tundra"],["forested-area-envo-00000111.html","forested area"],["mountain-pass-envo-00000084.html","mountain pass"]],"b":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":10,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["air-conditioning-unit-envo-00002874.html","air conditioning unit"],["leaf-bto-0000713.html","leaf"],["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]]},{"id":"NCBITaxon:47715","l":"Lacticaseibacillus rhamnosus","na":10,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["fermentation-starter-envo-03600040.html","fermentation starter"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]]},{"id":"ENVO:01000747","l":"regolith","na":1,"nb":9,"a":[["regolith-envo-01000747.html","regolith"]],"b":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":9,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["fresh-water-envo-00002011.html","fresh water"],["river-envo-00000022.html","river"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"]]},{"id":"ENVO:00000003","l":"mine tailing","na":1,"nb":8,"a":[["mine-tailing-envo-00000003.html","mine tailing"]],"b":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]]},{"id":"NCBITaxon:1224","l":"Pseudomonadota","na":1,"nb":8,"a":[["hemolymph-bto-0000572.html","hemolymph"]],"b":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":8,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["alimentary-canal-bto-0000058.html","alimentary canal"],["blood-bto-0000089.html","blood"],["small-intestine-bto-0000651.html","small intestine"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["geographic-feature-envo-00000000.html","geographic feature"]],"b":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]]},{"id":"NCBITaxon:1655","l":"Actinomyces naeslundii","na":8,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"],["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"],["archeological-site-envo-00000564.html","archeological site"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]]},{"id":"ENVO:00005750","l":"grassland soil","na":1,"nb":7,"a":[["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"],["Soil_BGC_Phylum_Depth_Vegetation_Community.html","Soil Biosynthetic Gene Cluster Phylum-Depth-Vegetation Community"],["Soil_CPR_Nanoarchaea_Rare_Biosphere_Community.html","Soil CPR Bacteria and Nanoarchaea Rare-Biosphere Community"]]},{"id":"ENVO:01000313","l":"anthropogenic environment","na":7,"nb":1,"a":[["laboratory-environment-envo-01001405.html","laboratory environment"],["subway-environment-habitatmech-gold-961229841c.html","subway environment"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["cultivated-environment-envo-01000311.html","cultivated environment"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":7,"nb":1,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["farm-envo-00000078.html","farm"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]]},{"id":"NCBITaxon:1107","l":"Chloroflexus","na":7,"nb":1,"a":[["crop-bto-0000301.html","crop"],["gut-bto-0000545.html","gut"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["seedling-bto-0001228.html","seedling"],["skin-bto-0001253.html","skin"]],"b":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]]},{"id":"NCBITaxon:1243","l":"Leuconostoc","na":7,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["intestine-bto-0000648.html","intestine"],["mouth-bto-0001090.html","mouth"],["stem-bto-0001300.html","stem"]],"b":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]]},{"id":"NCBITaxon:165179","l":"Segatella copri","na":7,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["juvenile-bto-0002168.html","juvenile"],["rumen-uberon-0007365.html","rumen"],["tongue-bto-0001385.html","tongue"],["vaginal-fluid-bto-0003084.html","vaginal fluid"],["animal-litter-envo-00002191.html","animal litter"]],"b":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":7,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["liquid-water-envo-00002006.html","liquid water"],["crown-gall-bto-0000303.html","crown gall"],["finger-bto-0004669.html","finger"],["resting-cell-bto-0001170.html","resting cell"],["water-scum-envo-00005794.html","water scum"]],"b":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"]]},{"id":"NCBITaxon:469","l":"Acinetobacter","na":7,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["endotracheal-fluid-ncit-c171504.html","Endotracheal Fluid"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"],["pseudostem-bto-0005992.html","pseudostem"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"]],"b":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]]},{"id":"NCBITaxon:56780","l":"Syntrophus aciditrophicus SB","na":7,"nb":1,"a":[["bay-envo-00000032.html","bay"],["black-smoker-envo-00000218.html","black smoker"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["saline-water-envo-00002010.html","saline water"],["village-biome-envo-01000246.html","village biome"]],"b":[["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"]]},{"id":"ENVO:00003862","l":"dairy","na":1,"nb":6,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"],["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]]},{"id":"ENVO:01000001","l":"mud","na":6,"nb":1,"a":[["marine-mud-envo-00005795.html","marine mud"],["mud-habitatmech-gold-cdf0825f85.html","Mud"],["anaerobic-mud-envo-00002133.html","anaerobic mud"],["estuarine-mud-envo-00002160.html","estuarine mud"],["mud-envo-01000001.html","mud"],["mud-habitatmech-gold-16370f2eb5.html","Mud"]],"b":[["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"]]},{"id":"NCBITaxon:1269","l":"Micrococcus","na":6,"nb":1,"a":[["cecum-bto-0000166.html","cecum"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["saliva-bto-0001202.html","saliva"],["tongue-bto-0001385.html","tongue"]],"b":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]]},{"id":"NCBITaxon:1512","l":"[Clostridium] symbiosum","na":6,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["animal-house-envo-00003040.html","animal house"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["emulsion-envo-00010506.html","emulsion"],["environmental-feature-envo-00002297.html","environmental feature"],["pig-manure-envo-00003860.html","pig manure"]],"b":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]]},{"id":"NCBITaxon:1624","l":"Ligilactobacillus salivarius","na":6,"nb":1,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["trachea-bto-0001388.html","trachea"],["animal-litter-envo-00002191.html","animal litter"],["intestine-environment-envo-2100002.html","intestine environment"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]]},{"id":"NCBITaxon:1872122","l":"Acidovorax sp.","na":6,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"]]},{"id":"NCBITaxon:2203","l":"Methanospirillum hungatei","na":1,"nb":6,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"]],"b":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]]},{"id":"NCBITaxon:253","l":"Chryseobacterium indologenes","na":6,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["seedling-bto-0001228.html","seedling"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["tropical-envo-01000204.html","tropical"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]]},{"id":"ENVO:00000134","l":"permafrost","na":5,"nb":1,"a":[["permafrost-envo-00000134.html","permafrost"],["permafrost-habitatmech-gold-dd598a891d.html","Permafrost"],["permafrost-habitatmech-gold-6821e96263.html","Permafrost"],["permafrost-habitatmech-gold-6d092784ef.html","Permafrost"],["permafrost-habitatmech-gold-83818dd6ed.html","Permafrost"]],"b":[["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"]]},{"id":"ENVO:00002012","l":"hypersaline water","na":5,"nb":1,"a":[["brine-envo-00003044.html","brine"],["hypersaline-water-envo-00002012.html","hypersaline water"],["microbial-mats-habitatmech-gold-a00c47c576.html","Microbial mats"],["saline-water-habitatmech-gold-f75e192814.html","Saline water"],["salt-crystallizer-ponds-habitatmech-gold-277843111f.html","Salt crystallizer ponds"]],"b":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]]},{"id":"ENVO:00003965","l":"anaerobic digester sludge","na":1,"nb":5,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"]],"b":[["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]]},{"id":"NCBITaxon:106589","l":"Cupriavidus","na":5,"nb":1,"a":[["gut-bto-0000545.html","gut"],["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["skin-bto-0001253.html","skin"]],"b":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]]},{"id":"NCBITaxon:1245","l":"Leuconostoc mesenteroides","na":5,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["leaf-po-0025034.html","leaf"],["animal-manure-envo-00003031.html","animal manure"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]]},{"id":"NCBITaxon:239","l":"Flavobacterium sp.","na":5,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["mud-envo-01000001.html","mud"],["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"],["orchard-envo-00000115.html","orchard"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]]},{"id":"NCBITaxon:28232","l":"Geobacter metallireducens","na":1,"nb":5,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":5,"nb":1,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["pseudostem-bto-0005992.html","pseudostem"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":5,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["pseudostem-bto-0005992.html","pseudostem"],["seedling-bto-0001228.html","seedling"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["soil-envo-00001998.html","soil"]],"b":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]]},{"id":"NCBITaxon:57723","l":"Acidobacteriota","na":1,"nb":5,"a":[["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["SPRUCE_Peatland_Methane_Cycling_Community.html","SPRUCE Peatland Methane-Cycling Microbial Community"]]},{"id":"NCBITaxon:74969","l":"Ferroplasma acidiphilum","na":1,"nb":5,"a":[["factory-envo-01000536.html","factory"]],"b":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":1,"nb":5,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]]},{"id":"CHEBI:24632","l":"hydrocarbon","na":4,"nb":1,"a":[["hydrocarbon-habitatmech-gold-db79f0142d.html","Hydrocarbon"],["hydrocarbon-habitatmech-gold-3c68e33a11.html","Hydrocarbon"],["hydrocarbon-habitatmech-gold-e77998b825.html","Hydrocarbon"],["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"]],"b":[["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"]]},{"id":"ENVO:01000306","l":"freshwater environment","na":1,"nb":4,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":4,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"],["human-construction-envo-00000070.html","human construction"],["sediment-envo-00002007.html","sediment"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]]},{"id":"NCBITaxon:1089553","l":"Thermacetogenium phaeum DSM 12270","na":4,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["pulp-bto-0001142.html","pulp"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":4,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]]},{"id":"NCBITaxon:1335","l":"Streptococcus equinus","na":4,"nb":1,"a":[["foregut-bto-0000507.html","foregut"],["stomach-bto-0001307.html","stomach"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"]]},{"id":"NCBITaxon:1682","l":"Bifidobacterium longum subsp. infantis","na":4,"nb":1,"a":[["egg-food-product-foodon-00001274.html","egg food product"],["breast-bto-0000149.html","breast"],["ht-29-cell-bto-0000182.html","HT-29 cell"],["ma-104-cell-bto-0004983.html","MA-104 cell"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]]},{"id":"NCBITaxon:2209","l":"Methanosarcina mazei","na":4,"nb":1,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["sludge-envo-00002044.html","sludge"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"]]},{"id":"NCBITaxon:33882","l":"Microbacterium","na":4,"nb":1,"a":[["leaf-bto-0000713.html","leaf"],["pitcher-bto-0001069.html","pitcher"],["small-intestine-bto-0000651.html","small intestine"],["stem-bto-0001300.html","stem"]],"b":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]]},{"id":"NCBITaxon:356","l":"Hyphomicrobiales","na":4,"nb":1,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["stem-bto-0001300.html","stem"]],"b":[["Thiocyanate_Afipia_Thiobacillus_Bioreactor_Community.html","Thiocyanate-Degrading Afipia and Thiobacillus Bioreactor Community"]]},{"id":"NCBITaxon:40323","l":"Stenotrophomonas","na":1,"nb":4,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]]},{"id":"NCBITaxon:75682","l":"Oxalobacteraceae","na":4,"nb":1,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]]},{"id":"NCBITaxon:872","l":"Desulfovibrio","na":1,"nb":4,"a":[["colon-bto-0000269.html","colon"]],"b":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]]},{"id":"NCBITaxon:930","l":"Acidithiobacillus thiooxidans","na":1,"nb":4,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]]},{"id":"NCBITaxon:105841","l":"Anaerostipes caccae","na":3,"nb":1,"a":[["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["emulsion-envo-00010506.html","emulsion"],["organic-feature-envo-01000159.html","organic feature"]],"b":[["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]]},{"id":"NCBITaxon:1090","l":"Chlorobiota","na":3,"nb":1,"a":[["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"]],"b":[["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"]]},{"id":"NCBITaxon:1492","l":"Clostridium butyricum","na":3,"nb":1,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["intestine-environment-envo-2100002.html","intestine environment"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]]},{"id":"NCBITaxon:1519","l":"Clostridium tyrobutyricum","na":3,"nb":1,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["peatland-envo-00000044.html","peatland"]],"b":[["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]]},{"id":"NCBITaxon:1582","l":"Lacticaseibacillus casei","na":3,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":1,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":3,"nb":1,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]]},{"id":"NCBITaxon:200795","l":"Chloroflexota","na":1,"nb":3,"a":[["crop-bto-0000301.html","crop"]],"b":[["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["Soil_BGC_Phylum_Depth_Vegetation_Community.html","Soil Biosynthetic Gene Cluster Phylum-Depth-Vegetation Community"]]},{"id":"NCBITaxon:203124","l":"Trichodesmium erythraeum IMS101","na":3,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["coastal-water-body-envo-02000049.html","coastal water body"],["marine-neritic-zone-envo-00000206.html","marine neritic zone"]],"b":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]]},{"id":"NCBITaxon:22","l":"Shewanella","na":1,"nb":3,"a":[["wood-bto-0005516.html","wood"]],"b":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Shewanella_Denitrifying_Richness_SynComs.html","Shewanella Denitrifying Richness SynComs"]]},{"id":"NCBITaxon:239935","l":"Akkermansia muciniphila","na":3,"nb":1,"a":[["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["secretion-bto-0002979.html","secretion"]],"b":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]]},{"id":"NCBITaxon:28037","l":"Streptococcus mitis","na":3,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["archeological-site-envo-00000564.html","archeological site"],["tropical-envo-01000204.html","tropical"]],"b":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]]},{"id":"NCBITaxon:301375","l":"Methanothrix harundinacea","na":3,"nb":1,"a":[["small-river-biome-envo-00000890.html","small river biome"],["shoreline-envo-00000486.html","shoreline"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"]]},{"id":"NCBITaxon:3041","l":"Chlorophyta","na":1,"nb":3,"a":[["leaf-bto-0000713.html","leaf"]],"b":[["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":3,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["sludge-envo-00002044.html","sludge"],["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]]},{"id":"NCBITaxon:33035","l":"Blautia producta","na":1,"nb":3,"a":[["juvenile-bto-0002168.html","juvenile"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]]},{"id":"NCBITaxon:33952","l":"Acetobacterium woodii","na":1,"nb":3,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]]},{"id":"NCBITaxon:33959","l":"Lactobacillus johnsonii","na":3,"nb":1,"a":[["animal-litter-envo-00002191.html","animal litter"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]]},{"id":"NCBITaxon:375","l":"Bradyrhizobium japonicum","na":3,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"]]},{"id":"NCBITaxon:375288","l":"Parabacteroides","na":3,"nb":1,"a":[["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"]],"b":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"]]},{"id":"NCBITaxon:40214","l":"Acinetobacter johnsonii","na":3,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["pitcher-bto-0001069.html","pitcher"],["water-scum-envo-00005794.html","water scum"]],"b":[["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]]},{"id":"NCBITaxon:48736","l":"Ralstonia","na":3,"nb":1,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"]],"b":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":1,"nb":3,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]]},{"id":"NCBITaxon:572511","l":"Blautia","na":3,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["colon-bto-0000269.html","colon"]],"b":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]]},{"id":"NCBITaxon:68287","l":"Mesorhizobium","na":1,"nb":3,"a":[["head-bto-0000282.html","head"]],"b":[["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"]]},{"id":"NCBITaxon:69373","l":"Curtobacterium pusillum","na":3,"nb":1,"a":[["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["seedling-bto-0001228.html","seedling"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]]},{"id":"NCBITaxon:76759","l":"Pseudomonas monteilii","na":3,"nb":1,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"]]},{"id":"NCBITaxon:85413","l":"Allobosea","na":1,"nb":3,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"]],"b":[["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":3,"nb":1,"a":[["city-envo-00000856.html","city"],["cold-environment-envo-01000309.html","cold environment"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]]},{"id":"ENVO:00002127","l":"stream sediment","na":1,"nb":2,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Tropidoatractus_Magnetotacticus_Tripartite_Syntrophy.html","Tropidoatractus magnetotacticus Magnetotactic Ciliate Tripartite Syntrophy"]]},{"id":"ENVO:01001033","l":"digestive tract environment","na":1,"nb":2,"a":[["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"]]},{"id":"ENVO:03000033","l":"marine sediment","na":2,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"]]},{"id":"NCBITaxon:1033","l":"Afipia","na":2,"nb":1,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"]],"b":[["Thiocyanate_Afipia_Thiobacillus_Bioreactor_Community.html","Thiocyanate-Degrading Afipia and Thiobacillus Bioreactor Community"]]},{"id":"NCBITaxon:1091494","l":"Methylotuvimicrobium alcaliphilum 20Z","na":1,"nb":2,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"]]},{"id":"NCBITaxon:1129","l":"Synechococcus","na":2,"nb":1,"a":[["column-bto-0005692.html","column"],["hemolymph-bto-0000572.html","hemolymph"]],"b":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]]},{"id":"NCBITaxon:119532","l":"Microcoleus vaginatus","na":2,"nb":1,"a":[["desert-biome-envo-01000179.html","desert biome"],["desert-area-envo-00000097.html","desert area"]],"b":[["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]]},{"id":"NCBITaxon:12916","l":"Acidovorax","na":1,"nb":2,"a":[["urine-bto-0001419.html","urine"]],"b":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]]},{"id":"NCBITaxon:1303","l":"Streptococcus oralis","na":2,"nb":1,"a":[["throat-bto-0000828.html","throat"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]]},{"id":"NCBITaxon:138074","l":"Serratia symbiotica","na":2,"nb":1,"a":[["intestine-bto-0000648.html","intestine"],["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"]]},{"id":"NCBITaxon:1398","l":"Heyndrickxia coagulans","na":2,"nb":1,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"]]},{"id":"NCBITaxon:1401","l":"Paenibacillus lautus","na":2,"nb":1,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"]]},{"id":"NCBITaxon:142182","l":"Gemmatimonadota","na":1,"nb":2,"a":[["crop-bto-0000301.html","crop"]],"b":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":2,"a":[["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]]},{"id":"NCBITaxon:1538","l":"Clostridium ljungdahlii","na":1,"nb":2,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]]},{"id":"NCBITaxon:161493","l":"Anaeromyxobacter dehalogenans","na":2,"nb":1,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"]]},{"id":"NCBITaxon:169215","l":"","na":1,"nb":2,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"]],"b":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]]},{"id":"NCBITaxon:1785","l":"Mycobacterium sp.","na":2,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"],["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]]},{"id":"NCBITaxon:1871043","l":"Variovorax sp.","na":1,"nb":2,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]]},{"id":"NCBITaxon:1872086","l":"Ensifer sp.","na":2,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]]},{"id":"NCBITaxon:192","l":"Azospirillum brasilense","na":2,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"]]},{"id":"NCBITaxon:20","l":"Phenylobacterium","na":2,"nb":1,"a":[["crop-bto-0000301.html","crop"],["nectar-bto-0000537.html","nectar"]],"b":[["Tomato_Oxylipin_SynCom3.html","Tomato Oxylipin-Protective SynCom3"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus ATCC 27405","na":1,"nb":2,"a":[["blood-plasma-bto-0000131.html","blood plasma"]],"b":[["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]]},{"id":"NCBITaxon:2162","l":"Methanobacterium formicicum","na":1,"nb":2,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"]]},{"id":"NCBITaxon:2173","l":"Methanobrevibacter smithii","na":1,"nb":2,"a":[["lagoon-envo-00000038.html","lagoon"]],"b":[["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii (strain ATCC 43067 / DSM 2661 / JAL-1 / JCM 10045 / NBRC 100440)","na":2,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]]},{"id":"NCBITaxon:2836","l":"Bacillariophyta","na":2,"nb":1,"a":[["diatom-associated-environment-habitatmech-gold-1276bea544.html","diatom-associated environment"],["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]]},{"id":"NCBITaxon:29448","l":"Bradyrhizobium elkanii","na":2,"nb":1,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["area-of-tundra-envo-00000112.html","area of tundra"]],"b":[["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]]},{"id":"NCBITaxon:39152","l":"Methanococcus maripaludis","na":1,"nb":2,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["DVM_Triculture.html","DVM Tri-culture"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"]]},{"id":"NCBITaxon:39488","l":"Anaerobutyricum hallii","na":2,"nb":1,"a":[["emulsion-envo-00010506.html","emulsion"],["harbour-envo-00000463.html","harbour"]],"b":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"]]},{"id":"NCBITaxon:4577","l":"Zea mays","na":2,"nb":1,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":2,"nb":1,"a":[["city-envo-00000856.html","city"],["cropland-biome-envo-01000245.html","cropland biome"]],"b":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]]},{"id":"NCBITaxon:547","l":"Enterobacter","na":1,"nb":2,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]]},{"id":"NCBITaxon:570","l":"Klebsiella","na":1,"nb":2,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"]]},{"id":"NCBITaxon:6239","l":"Caenorhabditis elegans","na":2,"nb":1,"a":[["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"]]},{"id":"NCBITaxon:82367","l":"Paracoccus pantotrophus","na":2,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"]]},{"id":"NCBITaxon:84567","l":"Pedobacter","na":2,"nb":1,"a":[["air-envo-00002005.html","air"],["glacier-envo-00000133.html","glacier"]],"b":[["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"]]},{"id":"NCBITaxon:853","l":"Faecalibacterium prausnitzii","na":2,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"],["tropical-envo-01000204.html","tropical"]],"b":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"]]},{"id":"NCBITaxon:876","l":"Desulfovibrio desulfuricans","na":2,"nb":1,"a":[["sludge-envo-00002044.html","sludge"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":2,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]]},{"id":"UBERON:0001155","l":"colon","na":2,"nb":1,"a":[["colon-habitatmech-gold-c484d9a195.html","Colon"],["colon-habitatmech-gold-195d07bc47.html","Colon"]],"b":[["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"]]},{"id":"ENVO:00000126","l":"sulfur spring","na":1,"nb":1,"a":[["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"]]},{"id":"ENVO:00002121","l":"alkaline salt lake","na":1,"nb":1,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"]],"b":[["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]]},{"id":"ENVO:00003030","l":"silage","na":1,"nb":1,"a":[["silage-envo-00003030.html","silage"]],"b":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"]]},{"id":"ENVO:01000910","l":"soil biocrust","na":1,"nb":1,"a":[["soil-biocrust-envo-01000910.html","soil biocrust"]],"b":[["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]]},{"id":"NCBITaxon:100176","l":"Papillibacter cinnamivorans","na":1,"nb":1,"a":[["cecum-bto-0000166.html","cecum"]],"b":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"]]},{"id":"NCBITaxon:105972","l":"Methylosarcina fibrata","na":1,"nb":1,"a":[["stream-envo-00000023.html","stream"]],"b":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]]},{"id":"NCBITaxon:110321","l":"Sinorhizobium medicae","na":1,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"]]},{"id":"NCBITaxon:1122947","l":"Pelosinus fermentans DSM 17108","na":1,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"]]},{"id":"NCBITaxon:1131703","l":"Sphaerochaeta globosa","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"]]},{"id":"NCBITaxon:1134404","l":"Ignavibacteriota","na":1,"nb":1,"a":[["gut-bto-0000545.html","gut"]],"b":[["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"]]},{"id":"NCBITaxon:119060","l":"Burkholderiaceae","na":1,"nb":1,"a":[["trunk-bto-0001493.html","trunk"]],"b":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]]},{"id":"NCBITaxon:1253","l":"Pediococcus","na":1,"nb":1,"a":[["cecum-bto-0000166.html","cecum"]],"b":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]]},{"id":"NCBITaxon:1272","l":"Kocuria varians","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"]]},{"id":"NCBITaxon:135619","l":"Oceanospirillales","na":1,"nb":1,"a":[["column-bto-0005692.html","column"]],"b":[["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"]]},{"id":"NCBITaxon:1488","l":"Clostridium acetobutylicum","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]]},{"id":"NCBITaxon:1501","l":"Clostridium pasteurianum","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]]},{"id":"NCBITaxon:1517","l":"Thermoanaerobacterium thermosaccharolyticum","na":1,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]]},{"id":"NCBITaxon:1579","l":"Lactobacillus acidophilus","na":1,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"]],"b":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]]},{"id":"NCBITaxon:1585","l":"Lactobacillus delbrueckii subsp. bulgaricus","na":1,"nb":1,"a":[["pig-manure-envo-00003860.html","pig manure"]],"b":[["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]]},{"id":"NCBITaxon:160488","l":"Pseudomonas putida (strain ATCC 47054 / DSM 6125 / CFBP 8728 / NCIMB 11950 / KT2440)","na":1,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]]},{"id":"NCBITaxon:168384","l":"Marvinbryantia formatexigens","na":1,"nb":1,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"]]},{"id":"NCBITaxon:1871068","l":"Phyllobacteriaceae bacterium","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]]},{"id":"NCBITaxon:216389","l":"Dehalococcoides mccartyi BAV1","na":1,"nb":1,"a":[["road-envo-00000064.html","road"]],"b":[["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]]},{"id":"NCBITaxon:219572","l":"Pseudomonas antarctica","na":1,"nb":1,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]]},{"id":"NCBITaxon:2223","l":"Methanothrix soehngenii","na":1,"nb":1,"a":[["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]]},{"id":"NCBITaxon:225937","l":"Marinobacter adhaerens HP15","na":1,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]]},{"id":"NCBITaxon:226186","l":"Bacteroides thetaiotaomicron (strain ATCC 29148 / DSM 2079 / JCM 5827 / CCUG 10774 / NCTC 10582 / VPI-5482 / E50)","na":1,"nb":1,"a":[["gut-epithelium-bto-0000956.html","gut epithelium"]],"b":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"]]},{"id":"NCBITaxon:231455","l":"Dyella japonica","na":1,"nb":1,"a":[["area-of-tundra-envo-00000112.html","area of tundra"]],"b":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima (strain ATCC 43589 / DSM 3109 / JCM 10099 / NBRC 100826 / MSB8)","na":1,"nb":1,"a":[["feather-bto-0000447.html","feather"]],"b":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]]},{"id":"NCBITaxon:246200","l":"Ruegeria pomeroyi DSS-3","na":1,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]]},{"id":"NCBITaxon:250","l":"Chryseobacterium gleum","na":1,"nb":1,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":1,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"]]},{"id":"NCBITaxon:293387","l":"Bacillus altitudinis","na":1,"nb":1,"a":[["resting-cell-bto-0001170.html","resting cell"]],"b":[["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"]]},{"id":"NCBITaxon:29394","l":"Dolosigranulum pigrum","na":1,"nb":1,"a":[["bone-element-uberon-0001474.html","bone element"]],"b":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"]]},{"id":"NCBITaxon:299767","l":"Enterobacter ludwigii","na":1,"nb":1,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]]},{"id":"NCBITaxon:3078","l":"Auxenochlorella pyrenoidosa","na":1,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"]],"b":[["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"]]},{"id":"NCBITaxon:323259","l":"Methanospirillum hungatei JF-1","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]]},{"id":"NCBITaxon:33883","l":"Microbacterium arborescens","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]]},{"id":"NCBITaxon:340177","l":"Chlorobium chlorochromatii CaD3","na":1,"nb":1,"a":[["photoreceptor-cell-bto-0001060.html","photoreceptor cell"]],"b":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"]]},{"id":"NCBITaxon:372461","l":"Buchnera aphidicola BCc","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"]]},{"id":"NCBITaxon:399726","l":"Thermoanaerobacter sp. X514","na":1,"nb":1,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"]]},{"id":"NCBITaxon:43775","l":"Syntrophus gentianae","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]]},{"id":"NCBITaxon:47880","l":"Pseudomonas fulva","na":1,"nb":1,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]]},{"id":"NCBITaxon:47920","l":"Acidovorax delafieldii","na":1,"nb":1,"a":[["bone-element-uberon-0001474.html","bone element"]],"b":[["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]]},{"id":"NCBITaxon:49082","l":"Candidatus Neoarthromitus","na":1,"nb":1,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]]},{"id":"NCBITaxon:515619","l":"Agathobacter rectalis ATCC 33656","na":1,"nb":1,"a":[["gut-epithelium-bto-0000956.html","gut epithelium"]],"b":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"]]},{"id":"NCBITaxon:542","l":"Zymomonas mobilis","na":1,"nb":1,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["Zymomonas_Ecoli_Exometabolomics_Obligate_Mutualism.html","Zymomonas-E. coli Exometabolomics-Designed Obligate Mutualism"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":1,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":1,"nb":1,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]]},{"id":"NCBITaxon:571256","l":"Brucella pituitosa","na":1,"nb":1,"a":[["seedling-bto-0001228.html","seedling"]],"b":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]]},{"id":"NCBITaxon:80840","l":"Burkholderiales","na":1,"nb":1,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"]],"b":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"]]},{"id":"NCBITaxon:80866","l":"Delftia acidovorans","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]]},{"id":"NCBITaxon:82","l":"Hyphomicrobium sp.","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"]]},{"id":"NCBITaxon:82380","l":"Microbacterium oxydans","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]]},{"id":"NCBITaxon:930166","l":"Pseudomonas brassicacearum","na":1,"nb":1,"a":[["spike-bto-0001278.html","spike"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]]},{"id":"NCBITaxon:94625","l":"Brucella intermedia","na":1,"nb":1,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]]},{"id":"UBERON:0002097","l":"skin of body","na":1,"nb":1,"a":[["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["SkinCom_Synthetic_Skin_Community.html","SkinCom Synthetic Skin Community"]]}]} \ No newline at end of file +{"a":"HabitatMech","b":"CommunityMech","base":{"HabitatMech":"https://culturebotai.github.io/HabitatMech/pages/habitats/","CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/"},"n":313,"by":{"NCBITaxon":265,"ENVO":42,"UBERON":4,"CHEBI":2},"terms":[{"id":"NCBITaxon:2","l":"Bacteria","na":40,"nb":56,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["factory-envo-01000536.html","factory"],["adult-bto-0001043.html","adult"]],"b":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"]]},{"id":"ENVO:00001998","l":"soil","na":105,"nb":17,"a":[["soil-habitatmech-gold-fc35741739.html","Soil"],["wetland-area-envo-00000043.html","wetland area"],["soil-habitatmech-gold-b1d707114a.html","Soil"],["soil-habitatmech-gold-e9844fc187.html","Soil"],["soil-habitatmech-gold-3e86b794ef.html","Soil"],["soil-habitatmech-gold-067f7f5e2a.html","Soil"]],"b":[["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]]},{"id":"ENVO:01001001","l":"plant-associated environment","na":21,"nb":16,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["bryophytes-habitatmech-gold-35beb98884.html","Bryophytes"],["endosphere-habitatmech-gold-bfe3e11951.html","Endosphere"],["green-alga-associated-environment-habitatmech-gold-184cc9e802.html","green-alga-associated environment"],["mixed-parts-habitatmech-gold-4dd29bdcf8.html","Mixed parts"],["peat-moss-associated-environment-habitatmech-gold-7f57b82cab.html","peat moss-associated environment"]],"b":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]]},{"id":"NCBITaxon:1386","l":"Bacillus ","na":19,"nb":16,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["crop-bto-0000301.html","crop"],["dorsum-bto-0001713.html","dorsum"],["hand-bto-0004668.html","hand"],["head-bto-0000282.html","head"],["juvenile-bto-0002168.html","juvenile"]],"b":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":36,"nb":14,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["bay-envo-00000032.html","bay"],["freshwater-biome-envo-00000873.html","freshwater biome"],["liquid-water-envo-00002006.html","liquid water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]]},{"id":"ENVO:00002123","l":"bioreactor","na":31,"nb":13,"a":[["aerobic-bioreactor-envo-00002126.html","aerobic bioreactor"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["air-scrubber-biofilm-habitatmech-gold-7f436f8aff.html","air scrubber biofilm"],["biofilter-envo-00002152.html","biofilter"],["bioreactor-envo-00002123.html","bioreactor"],["bioreactor-habitatmech-gold-c4bf3d0c83.html","Bioreactor"]],"b":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":27,"nb":11,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["watercourse-envo-00000029.html","watercourse"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["egg-food-product-foodon-00001274.html","egg food product"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]]},{"id":"ENVO:00002007","l":"sediment","na":103,"nb":10,"a":[["marine-sediment-envo-03000033.html","marine sediment"],["sediment-habitatmech-gold-6bc70f0406.html","Sediment"],["sediment-habitatmech-gold-33b265d89f.html","Sediment"],["sediment-habitatmech-gold-7db7617ea4.html","Sediment"],["sediment-habitatmech-gold-2f9eb7ed2f.html","Sediment"],["sediment-habitatmech-gold-2ff751e0a6.html","Sediment"]],"b":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]]},{"id":"NCBITaxon:286","l":"Pseudomonas","na":10,"nb":18,"a":[["heart-bto-0000562.html","heart"],["juvenile-bto-0002168.html","juvenile"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"],["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":10,"nb":15,"a":[["anther-bto-0000079.html","anther"],["epithelial-cell-bto-0000414.html","epithelial cell"],["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":28,"nb":9,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["liquid-water-envo-00002006.html","liquid water"],["watercourse-envo-00000029.html","watercourse"],["compost-envo-00002170.html","compost"],["hospital-envo-00002173.html","hospital"],["human-construction-envo-00000070.html","human construction"]],"b":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":11,"nb":9,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["resting-cell-bto-0001170.html","resting cell"],["seedling-bto-0001228.html","seedling"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":27,"nb":7,"a":[["small-river-biome-envo-00000890.html","small river biome"],["factory-envo-01000536.html","factory"],["organic-waste-material-envo-00002873.html","organic waste material"],["leaf-po-0025034.html","leaf"],["milk-uberon-0001913.html","milk"],["rhizosphere-envo-00005801.html","rhizosphere"]],"b":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]]},{"id":"ENVO:00002116","l":"contaminated soil","na":7,"nb":16,"a":[["hydrocarbon-habitatmech-gold-3c68e33a11.html","Hydrocarbon"],["persistent-organic-pollutant-bioremediation-material-habitatmech-gold-1a78606807.html","persistent organic pollutant bioremediation material"],["contaminated-soil-envo-00002116.html","contaminated soil"],["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"],["oil-contaminated-soil-envo-00002875.html","oil contaminated soil"],["pesticide-habitatmech-gold-8ebd2ee3c5.html","Pesticide"]],"b":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"]]},{"id":"NCBITaxon:40324","l":"Stenotrophomonas maltophilia","na":15,"nb":7,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["catheter-device-ncit-c50344.html","Catheter Device"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["seedling-bto-0001228.html","seedling"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]]},{"id":"ENVO:00002043","l":"wastewater treatment plant","na":9,"nb":7,"a":[["a-o-treatment-system-habitatmech-gold-7c91485eb8.html","A/O treatment system"],["activated-sludge-habitatmech-gold-032b7dd40b.html","Activated sludge"],["aerobic-digester-habitatmech-gold-03fc563fae.html","Aerobic digester"],["anaerobic-digester-habitatmech-gold-3f58fb59be.html","Anaerobic digester"],["effluent-habitatmech-gold-827b5dbbef.html","Effluent"],["influent-habitatmech-gold-2bf3ab7d2f.html","Influent"]],"b":[["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Rhizorhabdus_Cupriavidus_BDE47_Degradation_SynCom.html","Rhizorhabdus-Cupriavidus BDE-47 Degradation SynCom"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":19,"nb":6,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["saline-water-body-envo-01001319.html","saline water body"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":18,"nb":6,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]]},{"id":"UBERON:0000160","l":"intestine","na":11,"nb":6,"a":[["intestine-habitatmech-gold-f3f5ed6008.html","Intestine"],["intestine-habitatmech-gold-70ccbcfe44.html","Intestine"],["intestine-habitatmech-gold-8a75a65fc5.html","Intestine"],["intestine-habitatmech-gold-0171231ef5.html","Intestine"],["intestine-habitatmech-gold-523d63f6f3.html","Intestine"],["intestine-habitatmech-gold-394283d34e.html","Intestine"]],"b":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["OMM12_Gnotobiotic_Mouse_Gut_Community.html","OMM12 Gnotobiotic Mouse Gut Community"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]]},{"id":"NCBITaxon:1578","l":"Lactobacillus","na":20,"nb":5,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["blood-bto-0000089.html","blood"],["brain-bto-0000142.html","brain"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["hand-bto-0004668.html","hand"]],"b":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"],["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]]},{"id":"ENVO:00002001","l":"waste water","na":19,"nb":5,"a":[["activated-sludge-habitatmech-gold-0d353772af.html","Activated Sludge"],["anaerobic-digestor-habitatmech-gold-ed87e682a9.html","Anaerobic digestor"],["industrial-wastewater-envo-01000964.html","industrial wastewater"],["municipal-landfill-habitatmech-gold-0f40aa60ce.html","Municipal landfill"],["nutrient-removal-habitatmech-gold-a18a70ae30.html","Nutrient removal"],["reclaimed-recycled-wastewater-habitatmech-gold-dc4dba910a.html","Reclaimed/Recycled wastewater"]],"b":[["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Staged_Cattle_Manure_Ensifer_Bacillus_SynCom.html","Staged Ensifer-Bacillus Cattle-Manure Wastewater SynCom"]]},{"id":"ENVO:00000043","l":"wetland area","na":14,"nb":5,"a":[["bog-habitatmech-gold-42a3b7b2d3.html","Bog"],["fen-habitatmech-gold-9de4fdaa2a.html","Fen"],["marsh-envo-00000035.html","marsh"],["microbial-mat-habitatmech-gold-e066163fc8.html","Microbial mat"],["sediment-habitatmech-gold-7db7617ea4.html","Sediment"],["sediment-habitatmech-gold-98d936714f.html","Sediment"]],"b":[["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Wetland_Oxygen_Sulfate_GHG_Microcosm_Community.html","Wetland Oxygen-Sulfate Greenhouse Gas Microcosm Community"]]},{"id":"ENVO:01001004","l":"groundwater","na":5,"nb":11,"a":[["contaminated-habitatmech-gold-66f93e3a62.html","Contaminated"],["contaminated-habitatmech-gold-33f4720550.html","Contaminated"],["groundwater-habitatmech-gold-22a80cbd14.html","Groundwater"],["groundwater-habitatmech-gold-7f8e268653.html","Groundwater"],["groundwater-envo-01001004.html","groundwater"]],"b":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":33,"nb":4,"a":[["biofilm-envo-00002034.html","biofilm"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["pond-water-envo-00002228.html","pond water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["water-body-envo-00000063.html","water body"]],"b":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"],["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]]},{"id":"NCBITaxon:1485","l":"Clostridium","na":26,"nb":4,"a":[["biofilm-envo-00002034.html","biofilm"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["alimentary-canal-bto-0000058.html","alimentary canal"],["colon-bto-0000269.html","colon"]],"b":[["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["QY2S1_Dehalogenimonas_BFR_Bioremediation_Consortium.html","QY2-S1 Dehalogenimonas-Rich Brominated-Flame-Retardant Consortium"],["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":19,"nb":4,"a":[["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["bone-element-uberon-0001474.html","bone element"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]]},{"id":"NCBITaxon:13687","l":"Sphingomonas","na":14,"nb":4,"a":[["crop-bto-0000301.html","crop"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["ileum-bto-0000620.html","ileum"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"]],"b":[["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"],["Wheat_Consortium_C6.html","Wheat Synthetic Consortium C6"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]]},{"id":"NCBITaxon:1590","l":"Lactiplantibacillus plantarum","na":14,"nb":4,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["food-fermented-foodon-00001258.html","food (fermented)"],["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"],["breast-bto-0000149.html","breast"],["colonic-epithelium-bto-0001709.html","colonic epithelium"],["epithelial-cell-bto-0000414.html","epithelial cell"]],"b":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Pichia_Lactiplantibacillus_CCMA_Plant_Beverage_Coculture.html","Pichia-Lactiplantibacillus CCMA Plant Beverage Coculture"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":11,"nb":4,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["fermentation-starter-envo-03600040.html","fermentation starter"],["fruit-bto-0000486.html","fruit"],["mammary-epithelial-cell-bto-0004300.html","mammary epithelial cell"],["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]]},{"id":"NCBITaxon:1827","l":"Rhodococcus ","na":4,"nb":8,"a":[["nectar-bto-0000537.html","nectar"],["pitcher-bto-0001069.html","pitcher"],["small-intestine-bto-0000651.html","small intestine"],["stem-bto-0001300.html","stem"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]]},{"id":"NCBITaxon:33038","l":"Mediterraneibacter gnavus","na":8,"nb":4,"a":[["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["juvenile-bto-0002168.html","juvenile"],["animal-litter-envo-00002191.html","animal litter"]],"b":[["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Clostridial_isoDCA_Mini_Consortium.html","Clostridial isoDCA Mini Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]]},{"id":"NCBITaxon:374","l":"Bradyrhizobium","na":4,"nb":5,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"],["wood-bto-0005516.html","wood"]],"b":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"],["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]]},{"id":"NCBITaxon:37919","l":"Rhodococcus opacus","na":5,"nb":4,"a":[["watercourse-envo-00000029.html","watercourse"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"],["sludge-envo-00002044.html","sludge"],["water-scum-envo-00005794.html","water scum"]],"b":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"],["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":4,"nb":4,"a":[["stream-envo-00000023.html","stream"],["biome-envo-00000428.html","biome"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]]},{"id":"ENVO:00002170","l":"compost","na":20,"nb":3,"a":[["compost-envo-00002170.html","compost"],["composting-habitatmech-gold-143ceb8669.html","Composting"],["composting-habitatmech-gold-edeecbabed.html","Composting"],["composting-habitatmech-gold-5948923b46.html","Composting"],["composting-habitatmech-gold-70db4820d1.html","Composting"],["composting-habitatmech-gold-cdbbd857c8.html","Composting"]],"b":[["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":17,"nb":3,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["fruit-bto-0000486.html","fruit"],["leaf-po-0025034.html","leaf"],["rhizosphere-envo-00005801.html","rhizosphere"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]]},{"id":"ENVO:00002046","l":"activated sludge","na":16,"nb":3,"a":[["activated-sludge-habitatmech-gold-6ba6dd1c82.html","Activated sludge"],["activated-sludge-habitatmech-gold-adf7e16a3a.html","Activated sludge"],["activated-sludge-habitatmech-gold-25b680d9bc.html","Activated sludge"],["activated-sludge-habitatmech-gold-dab267c443.html","Activated sludge"],["activated-sludge-habitatmech-gold-43c33f3ecc.html","Activated sludge"],["activated-sludge-habitatmech-gold-f459151394.html","Activated sludge"]],"b":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"]]},{"id":"NCBITaxon:1667","l":"Arthrobacter sp.","na":9,"nb":3,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["leaf-po-0025034.html","leaf"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":8,"nb":3,"a":[["reservoir-envo-00000025.html","reservoir"],["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["secretion-bto-0002979.html","secretion"],["stomach-bto-0001307.html","stomach"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":8,"nb":3,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["lab-synthesis-habitatmech-bacdive-0e92e77cd4.html","Lab-synthesis"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["oil-spill-envo-00002061.html","oil spill"],["temperate-envo-01000206.html","temperate"]],"b":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":5,"nb":3,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["pseudostem-bto-0005992.html","pseudostem"],["seedling-bto-0001228.html","seedling"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["soil-envo-00001998.html","soil"]],"b":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]]},{"id":"ENVO:00000044","l":"peatland","na":4,"nb":3,"a":[["bog-habitatmech-gold-42a3b7b2d3.html","Bog"],["blanket-bog-envo-00000511.html","blanket bog"],["fen-envo-00000232.html","fen"],["peatland-envo-00000044.html","peatland"]],"b":[["SPRUCE_Peatland_Methane_Cycling_Community.html","SPRUCE Peatland Methane-Cycling Microbial Community"],["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":3,"nb":4,"a":[["milk-uberon-0001913.html","milk"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]]},{"id":"NCBITaxon:1534","l":"Clostridium kluyveri","na":3,"nb":4,"a":[["reservoir-envo-00000025.html","reservoir"],["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"]],"b":[["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]]},{"id":"NCBITaxon:237","l":"Flavobacterium","na":3,"nb":4,"a":[["column-bto-0005692.html","column"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]]},{"id":"NCBITaxon:3055","l":"Chlamydomonas reinhardtii","na":4,"nb":3,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["large-river-biome-envo-00000887.html","large river biome"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["pond-water-envo-00002228.html","pond water"]],"b":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]]},{"id":"NCBITaxon:32008","l":"Burkholderia","na":3,"nb":4,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["midgut-bto-0000863.html","midgut"]],"b":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]]},{"id":"NCBITaxon:216816","l":"Bifidobacterium longum","na":3,"nb":3,"a":[["coral-reef-envo-00000150.html","coral reef"],["egg-food-product-foodon-00001274.html","egg food product"],["juvenile-bto-0002168.html","juvenile"]],"b":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]]},{"id":"NCBITaxon:239935","l":"Akkermansia muciniphila","na":3,"nb":3,"a":[["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["secretion-bto-0002979.html","secretion"]],"b":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":3,"nb":3,"a":[["liquid-water-envo-00002006.html","liquid water"],["sludge-envo-00002044.html","sludge"],["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]]},{"id":"ENVO:01001405","l":"laboratory environment","na":2,"nb":200,"a":[["genetic-cross-habitatmech-gold-ba9317369a.html","Genetic cross"],["laboratory-environment-envo-01001405.html","laboratory environment"]],"b":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"]]},{"id":"ENVO:00005801","l":"rhizosphere","na":2,"nb":62,"a":[["rhizosphere-envo-00005801.html","rhizosphere"],["soil-habitatmech-gold-067f7f5e2a.html","Soil"]],"b":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":40,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["laboratory-facility-envo-01001406.html","laboratory facility"],["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["biofilm-bto-0002690.html","biofilm"]],"b":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]]},{"id":"ENVO:00002124","l":"anaerobic bioreactor","na":20,"nb":2,"a":[["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["anaerobic-sludge-envo-00002129.html","anaerobic sludge"],["anaerobic-sludge-blanket-reactor-envo-00002213.html","anaerobic sludge blanket reactor"],["biofilm-habitatmech-gold-6c12d05420.html","Biofilm"],["biogas-envo-01000556.html","biogas"],["biomass-habitatmech-gold-6dd85a8177.html","Biomass"]],"b":[["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Shewanella_Pseudomonas_Fe0_Electrosyntrophic_Denitrifying_Consortium.html","Shewanella oneidensis + Pseudomonas aeruginosa Fe0-dependent Electro-syntrophic Denitrifying Consortium"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":14,"nb":2,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["compost-envo-00002170.html","compost"],["organic-waste-material-envo-00002873.html","organic waste material"],["larva-bto-0000707.html","larva"],["rhizosphere-envo-00005801.html","rhizosphere"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]]},{"id":"ENVO:00000051","l":"hot spring","na":13,"nb":2,"a":[["acid-lake-habitatmech-gold-21e53e7981.html","Acid lake"],["geothermal-pool-hot-lake-habitatmech-gold-d2132d09ae.html","Geothermal pool/Hot lake"],["hot-42-90c-habitatmech-gold-c085f6141a.html","Hot (42-90C)"],["hot-spring-envo-00000051.html","hot spring"],["microbial-mats-habitatmech-gold-a0372e2d63.html","Microbial mats"],["near-boiling-90c-habitatmech-gold-8b53067bc5.html","Near-boiling (>90C)"]],"b":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]]},{"id":"UBERON:0001007","l":"digestive system","na":13,"nb":2,"a":[["digestive-system-habitatmech-gold-26a84185d3.html","Digestive system"],["digestive-system-habitatmech-gold-6eecdf150d.html","Digestive system"],["digestive-system-habitatmech-gold-d7cff86ce8.html","Digestive system"],["digestive-system-habitatmech-gold-8a68d0f6f5.html","Digestive system"],["digestive-system-habitatmech-gold-c1d7082e4b.html","Digestive system"],["digestive-system-habitatmech-gold-f6720bccf0.html","Digestive system"]],"b":[["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]]},{"id":"NCBITaxon:1117","l":"Cyanobacteriota","na":11,"nb":2,"a":[["cecum-bto-0000166.html","cecum"],["colon-bto-0000269.html","colon"],["gut-bto-0000545.html","gut"],["head-bto-0000282.html","head"],["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"]],"b":[["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]]},{"id":"ENVO:00001997","l":"acid mine drainage","na":2,"nb":9,"a":[["acid-mine-drainage-envo-00001997.html","acid mine drainage"],["sediment-habitatmech-gold-7e27a52150.html","Sediment"]],"b":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":9,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["mud-envo-01000001.html","mud"]],"b":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":8,"nb":2,"a":[["groundwater-envo-01001004.html","groundwater"],["bioreactor-envo-00002123.html","bioreactor"],["river-envo-00000022.html","river"],["freshwater-environment-envo-01000306.html","freshwater environment"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]]},{"id":"ENVO:03600040","l":"fermentation starter","na":2,"nb":7,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["active-sourdough-starter-habitatmech-gold-3153798c1a.html","active sourdough starter"]],"b":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Sichuan_Shai_Vinegar_Yeast_Flavor_SynCom.html","Sichuan Shai Vinegar Yeast Flavor SynCom"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"],["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]]},{"id":"NCBITaxon:28216","l":"Betaproteobacteria","na":7,"nb":2,"a":[["column-bto-0005692.html","column"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["spike-bto-0001278.html","spike"]],"b":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":7,"nb":2,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["liquid-water-envo-00002006.html","liquid water"],["crown-gall-bto-0000303.html","crown gall"],["finger-bto-0004669.html","finger"],["resting-cell-bto-0001170.html","resting cell"],["water-scum-envo-00005794.html","water scum"]],"b":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]]},{"id":"NCBITaxon:1236","l":"Gammaproteobacteria","na":6,"nb":2,"a":[["column-bto-0005692.html","column"],["hemolymph-bto-0000572.html","hemolymph"],["oil-secretion-bto-0005373.html","oil secretion"],["spike-bto-0001278.html","spike"],["urine-bto-0001419.html","urine"],["subtropical-envo-01000205.html","subtropical"]],"b":[["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]]},{"id":"NCBITaxon:1305","l":"Streptococcus sanguinis","na":6,"nb":2,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["throat-bto-0000828.html","throat"],["geographic-feature-envo-00000000.html","geographic feature"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]]},{"id":"NCBITaxon:253","l":"Chryseobacterium indologenes","na":6,"nb":2,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["seedling-bto-0001228.html","seedling"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["tropical-envo-01000204.html","tropical"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"]]},{"id":"NCBITaxon:28211","l":"Alphaproteobacteria","na":6,"nb":2,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"],["alimentary-canal-bto-0000058.html","alimentary canal"],["column-bto-0005692.html","column"],["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["spike-bto-0001278.html","spike"]],"b":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]]},{"id":"ENVO:00002003","l":"fecal material","na":2,"nb":5,"a":[["frass-habitatmech-gold-319c3f351e.html","Frass"],["frass-habitatmech-gold-67f3cde908.html","Frass"]],"b":[["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"]]},{"id":"NCBITaxon:145262","l":"Methanothermobacter thermautotrophicus","na":5,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["intestine-environment-envo-2100002.html","intestine environment"],["sludge-envo-00002044.html","sludge"]],"b":[["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]]},{"id":"NCBITaxon:1883","l":"Streptomyces","na":2,"nb":5,"a":[["crop-bto-0000301.html","crop"],["lab-synthesis-habitatmech-bacdive-0e92e77cd4.html","Lab-synthesis"]],"b":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["Wheat_Consortium_C6.html","Wheat Synthetic Consortium C6"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]]},{"id":"NCBITaxon:1335","l":"Streptococcus equinus","na":4,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["stomach-bto-0001307.html","stomach"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":4,"nb":2,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["carcass-envo-00002033.html","carcass"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["sludge-envo-00002044.html","sludge"]],"b":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":4,"nb":2,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]]},{"id":"NCBITaxon:165695","l":"Sphingobium","na":2,"nb":4,"a":[["juvenile-bto-0002168.html","juvenile"],["leaf-bto-0000713.html","leaf"]],"b":[["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["Sphingobium_Nitrososphaera_Phenanthrene_Carbon_SynCom.html","Sphingobium-Nitrososphaera Phenanthrene-Carbon SynCom"],["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]]},{"id":"NCBITaxon:1678","l":"Bifidobacterium","na":2,"nb":4,"a":[["ileum-bto-0000620.html","ileum"],["juvenile-bto-0002168.html","juvenile"]],"b":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"NCBITaxon:33882","l":"Microbacterium","na":4,"nb":2,"a":[["leaf-bto-0000713.html","leaf"],["pitcher-bto-0001069.html","pitcher"],["small-intestine-bto-0000651.html","small intestine"],["stem-bto-0001300.html","stem"]],"b":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]]},{"id":"NCBITaxon:816","l":"Bacteroides","na":2,"nb":4,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["colon-bto-0000269.html","colon"]],"b":[["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":2,"nb":4,"a":[["hospital-envo-00002173.html","hospital"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]]},{"id":"NCBITaxon:105841","l":"Anaerostipes caccae","na":3,"nb":2,"a":[["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["emulsion-envo-00010506.html","emulsion"],["organic-feature-envo-01000159.html","organic feature"]],"b":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]]},{"id":"NCBITaxon:1492","l":"Clostridium butyricum","na":3,"nb":2,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["intestine-environment-envo-2100002.html","intestine environment"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":2,"nb":3,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]]},{"id":"NCBITaxon:203682","l":"Planctomycetota","na":2,"nb":3,"a":[["column-bto-0005692.html","column"],["crop-bto-0000301.html","crop"]],"b":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"]]},{"id":"NCBITaxon:2208","l":"Methanosarcina barkeri","na":2,"nb":3,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["sludge-envo-00002044.html","sludge"]],"b":[["DVM_Triculture.html","DVM Tri-culture"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]]},{"id":"NCBITaxon:28108","l":"Alteromonas macleodii","na":3,"nb":2,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["marine-water-body-envo-00001999.html","marine water body"],["sandstone-envo-00002055.html","sandstone"]],"b":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]]},{"id":"NCBITaxon:29466","l":"Veillonella parvula","na":3,"nb":2,"a":[["dental-plaque-bto-0000338.html","dental plaque"],["juvenile-bto-0002168.html","juvenile"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]]},{"id":"NCBITaxon:33059","l":"Acidithiobacillus caldus","na":3,"nb":2,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["paddy-field-envo-00000297.html","paddy field"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]]},{"id":"NCBITaxon:33959","l":"Lactobacillus johnsonii","na":3,"nb":2,"a":[["animal-litter-envo-00002191.html","animal litter"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":3,"nb":2,"a":[["bile-bto-0000121.html","bile"],["rectum-bto-0001158.html","rectum"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]]},{"id":"NCBITaxon:528","l":"Ochrobactrum","na":2,"nb":3,"a":[["pitcher-bto-0001069.html","pitcher"],["small-intestine-bto-0000651.html","small intestine"]],"b":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"]]},{"id":"NCBITaxon:853","l":"Faecalibacterium prausnitzii","na":2,"nb":3,"a":[["coral-reef-envo-00000150.html","coral reef"],["tropical-envo-01000204.html","tropical"]],"b":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"]]},{"id":"NCBITaxon:110500","l":"Pelotomaculum thermopropionicum","na":2,"nb":2,"a":[["river-envo-00000022.html","river"],["subpolar-coniferous-forest-biome-envo-01000250.html","subpolar coniferous forest biome"]],"b":[["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"]]},{"id":"NCBITaxon:1234","l":"Nitrospira","na":2,"nb":2,"a":[["crop-bto-0000301.html","crop"],["seedling-bto-0001228.html","seedling"]],"b":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"]]},{"id":"NCBITaxon:244366","l":"Klebsiella variicola","na":2,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]]},{"id":"NCBITaxon:28034","l":"Sulfobacillus thermosulfidooxidans","na":2,"nb":2,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]]},{"id":"NCBITaxon:357809","l":"Lachnoclostridium phytofermentans ISDg","na":2,"nb":2,"a":[["reservoir-envo-00000025.html","reservoir"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":2,"nb":2,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]]},{"id":"NCBITaxon:39488","l":"Anaerobutyricum hallii","na":2,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"],["harbour-envo-00000463.html","harbour"]],"b":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]]},{"id":"NCBITaxon:4577","l":"Zea mays","na":2,"nb":2,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"]]},{"id":"NCBITaxon:84567","l":"Pedobacter","na":2,"nb":2,"a":[["air-envo-00002005.html","air"],["glacier-envo-00000133.html","glacier"]],"b":[["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]]},{"id":"CHEBI:16183","l":"methane","na":1,"nb":62,"a":[["methane-bioremediation-material-habitatmech-gold-d510166905.html","methane bioremediation material"]],"b":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"]]},{"id":"ENVO:01001002","l":"animal-associated environment","na":47,"nb":1,"a":[["amphibian-associated-environment-habitatmech-gold-0cd585a031.html","amphibian-associated environment"],["annelid-associated-environment-habitatmech-gold-6e10201167.html","annelid-associated environment"],["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["chelicerate-associated-environment-habitatmech-gold-44a2cbbd60.html","chelicerate-associated environment"],["crustacean-associated-environment-habitatmech-gold-2959225799.html","crustacean-associated environment"],["insect-associated-environment-habitatmech-gold-dba2a83b95.html","insect-associated environment"]],"b":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":25,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-water-body-envo-00001999.html","marine water body"],["sea-water-envo-00002149.html","sea water"],["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]]},{"id":"NCBITaxon:1279","l":"Staphylococcus","na":23,"nb":1,"a":[["adult-bto-0001043.html","adult"],["cecum-bto-0000166.html","cecum"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["head-bto-0000282.html","head"]],"b":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]]},{"id":"NCBITaxon:1301","l":"Streptococcus","na":23,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["head-bto-0000282.html","head"]],"b":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"NCBITaxon:106592","l":"Ensifer adhaerens","na":20,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]]},{"id":"ENVO:2100002","l":"intestine environment","na":1,"nb":17,"a":[["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"]]},{"id":"ENVO:00000021","l":"freshwater lake","na":16,"nb":1,"a":[["algal-bloom-envo-2000004.html","algal bloom"],["anoxic-zone-habitatmech-gold-b75e4aa08f.html","Anoxic zone"],["aphotic-zone-habitatmech-gold-fcba7e6334.html","Aphotic zone"],["biofilm-habitatmech-gold-748b381af4.html","Biofilm"],["cyanobacterial-aggregates-habitatmech-gold-9b43a12f0c.html","Cyanobacterial aggregates"],["cyanobacterial-bloom-envo-03600071.html","cyanobacterial bloom"]],"b":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"]]},{"id":"NCBITaxon:1598","l":"Limosilactobacillus reuteri","na":14,"nb":1,"a":[["cecum-mucosa-bto-0000213.html","cecum mucosa"],["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["ileum-bto-0000620.html","ileum"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"]],"b":[["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"]]},{"id":"NCBITaxon:1264","l":"Hominimerdicola alba","na":13,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["stream-envo-00000023.html","stream"],["animal-house-envo-00003040.html","animal house"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biome-envo-00000428.html","biome"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"]],"b":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"]]},{"id":"NCBITaxon:1350","l":"Enterococcus","na":13,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["dorsum-bto-0001713.html","dorsum"],["hand-bto-0004668.html","hand"],["intestine-bto-0000648.html","intestine"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"]],"b":[["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"]]},{"id":"ENVO:01000320","l":"marine environment","na":1,"nb":12,"a":[["marine-environment-envo-01000320.html","marine environment"]],"b":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":11,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"],["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["laboratory-facility-envo-01001406.html","laboratory facility"],["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["bone-element-uberon-0001474.html","bone element"],["juvenile-bto-0002168.html","juvenile"]],"b":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]]},{"id":"ENVO:00000020","l":"lake","na":10,"nb":1,"a":[["aphotic-zone-habitatmech-gold-fcba7e6334.html","Aphotic zone"],["freshwater-lake-envo-00000021.html","freshwater lake"],["glacial-lake-envo-00000488.html","glacial lake"],["lake-envo-00000020.html","lake"],["lake-habitatmech-gold-713c7f352a.html","Lake"],["marine-lake-envo-03600041.html","marine lake"]],"b":[["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"]]},{"id":"NCBITaxon:1399","l":"Cytobacillus firmus","na":10,"nb":1,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"],["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"]]},{"id":"NCBITaxon:33075","l":"Acidobacterium capsulatum","na":10,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["paddy-field-envo-00000297.html","paddy field"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"],["area-of-tundra-envo-00000112.html","area of tundra"],["forested-area-envo-00000111.html","forested area"],["mountain-pass-envo-00000084.html","mountain pass"]],"b":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":10,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["air-conditioning-unit-envo-00002874.html","air conditioning unit"],["leaf-bto-0000713.html","leaf"],["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]]},{"id":"NCBITaxon:47715","l":"Lacticaseibacillus rhamnosus","na":10,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["fermentation-starter-envo-03600040.html","fermentation starter"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]]},{"id":"ENVO:01000747","l":"regolith","na":1,"nb":9,"a":[["regolith-envo-01000747.html","regolith"]],"b":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":9,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["fresh-water-envo-00002011.html","fresh water"],["river-envo-00000022.html","river"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"]]},{"id":"ENVO:00000003","l":"mine tailing","na":1,"nb":8,"a":[["mine-tailing-envo-00000003.html","mine tailing"]],"b":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]]},{"id":"ENVO:00003862","l":"dairy","na":1,"nb":8,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"]]},{"id":"NCBITaxon:1224","l":"Pseudomonadota","na":1,"nb":8,"a":[["hemolymph-bto-0000572.html","hemolymph"]],"b":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":8,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["alimentary-canal-bto-0000058.html","alimentary canal"],["blood-bto-0000089.html","blood"],["small-intestine-bto-0000651.html","small intestine"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["geographic-feature-envo-00000000.html","geographic feature"]],"b":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]]},{"id":"NCBITaxon:1655","l":"Actinomyces naeslundii","na":8,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"],["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"],["archeological-site-envo-00000564.html","archeological site"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]]},{"id":"NCBITaxon:171550","l":"Rikenellaceae","na":8,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["ileum-bto-0000620.html","ileum"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"]],"b":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"ENVO:00003965","l":"anaerobic digester sludge","na":1,"nb":7,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"]],"b":[["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Magnetite_Sulfate_Stress_Anaerobic_Microbiome.html","Magnetite Sulfate-Stress Anaerobic Microbiome"],["Thermophilic_ExSitu_Biomethanation_Mixed_Culture.html","Thermophilic Ex-Situ Biomethanation Mixed Culture"]]},{"id":"ENVO:00005750","l":"grassland soil","na":1,"nb":7,"a":[["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"],["Soil_BGC_Phylum_Depth_Vegetation_Community.html","Soil Biosynthetic Gene Cluster Phylum-Depth-Vegetation Community"],["Soil_CPR_Nanoarchaea_Rare_Biosphere_Community.html","Soil CPR Bacteria and Nanoarchaea Rare-Biosphere Community"]]},{"id":"ENVO:01000313","l":"anthropogenic environment","na":7,"nb":1,"a":[["laboratory-environment-envo-01001405.html","laboratory environment"],["subway-environment-habitatmech-gold-961229841c.html","subway environment"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["cultivated-environment-envo-01000311.html","cultivated environment"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":7,"nb":1,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["farm-envo-00000078.html","farm"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]]},{"id":"NCBITaxon:1107","l":"Chloroflexus","na":7,"nb":1,"a":[["crop-bto-0000301.html","crop"],["gut-bto-0000545.html","gut"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["seedling-bto-0001228.html","seedling"],["skin-bto-0001253.html","skin"]],"b":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]]},{"id":"NCBITaxon:1243","l":"Leuconostoc","na":7,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["intestine-bto-0000648.html","intestine"],["mouth-bto-0001090.html","mouth"],["stem-bto-0001300.html","stem"]],"b":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]]},{"id":"NCBITaxon:13690","l":"Sphingobium yanoikuyae","na":7,"nb":1,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["resting-cell-bto-0001170.html","resting cell"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"],["water-scum-envo-00005794.html","water scum"]],"b":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]]},{"id":"NCBITaxon:165179","l":"Segatella copri","na":7,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["juvenile-bto-0002168.html","juvenile"],["rumen-uberon-0007365.html","rumen"],["tongue-bto-0001385.html","tongue"],["vaginal-fluid-bto-0003084.html","vaginal fluid"],["animal-litter-envo-00002191.html","animal litter"]],"b":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":7,"nb":1,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["pseudostem-bto-0005992.html","pseudostem"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]]},{"id":"NCBITaxon:40323","l":"Stenotrophomonas","na":1,"nb":7,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"]]},{"id":"NCBITaxon:469","l":"Acinetobacter","na":7,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["endotracheal-fluid-ncit-c171504.html","Endotracheal Fluid"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"],["pseudostem-bto-0005992.html","pseudostem"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"]],"b":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]]},{"id":"NCBITaxon:56780","l":"Syntrophus aciditrophicus SB","na":7,"nb":1,"a":[["bay-envo-00000032.html","bay"],["black-smoker-envo-00000218.html","black smoker"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["saline-water-envo-00002010.html","saline water"],["village-biome-envo-01000246.html","village biome"]],"b":[["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"]]},{"id":"ENVO:01000001","l":"mud","na":6,"nb":1,"a":[["marine-mud-envo-00005795.html","marine mud"],["mud-habitatmech-gold-cdf0825f85.html","Mud"],["anaerobic-mud-envo-00002133.html","anaerobic mud"],["estuarine-mud-envo-00002160.html","estuarine mud"],["mud-envo-01000001.html","mud"],["mud-habitatmech-gold-16370f2eb5.html","Mud"]],"b":[["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"]]},{"id":"NCBITaxon:1269","l":"Micrococcus","na":6,"nb":1,"a":[["cecum-bto-0000166.html","cecum"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["saliva-bto-0001202.html","saliva"],["tongue-bto-0001385.html","tongue"]],"b":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]]},{"id":"NCBITaxon:1512","l":"[Clostridium] symbiosum","na":6,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["animal-house-envo-00003040.html","animal house"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["emulsion-envo-00010506.html","emulsion"],["environmental-feature-envo-00002297.html","environmental feature"],["pig-manure-envo-00003860.html","pig manure"]],"b":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]]},{"id":"NCBITaxon:1624","l":"Ligilactobacillus salivarius","na":6,"nb":1,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["trachea-bto-0001388.html","trachea"],["animal-litter-envo-00002191.html","animal litter"],["intestine-environment-envo-2100002.html","intestine environment"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]]},{"id":"NCBITaxon:1872122","l":"Acidovorax sp.","na":6,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"]]},{"id":"NCBITaxon:2203","l":"Methanospirillum hungatei","na":1,"nb":6,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"]],"b":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":1,"nb":6,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]]},{"id":"ENVO:00000134","l":"permafrost","na":5,"nb":1,"a":[["permafrost-envo-00000134.html","permafrost"],["permafrost-habitatmech-gold-dd598a891d.html","Permafrost"],["permafrost-habitatmech-gold-6821e96263.html","Permafrost"],["permafrost-habitatmech-gold-6d092784ef.html","Permafrost"],["permafrost-habitatmech-gold-83818dd6ed.html","Permafrost"]],"b":[["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"]]},{"id":"ENVO:00002012","l":"hypersaline water","na":5,"nb":1,"a":[["brine-envo-00003044.html","brine"],["hypersaline-water-envo-00002012.html","hypersaline water"],["microbial-mats-habitatmech-gold-a00c47c576.html","Microbial mats"],["saline-water-habitatmech-gold-f75e192814.html","Saline water"],["salt-crystallizer-ponds-habitatmech-gold-277843111f.html","Salt crystallizer ponds"]],"b":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]]},{"id":"NCBITaxon:106589","l":"Cupriavidus","na":5,"nb":1,"a":[["gut-bto-0000545.html","gut"],["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["skin-bto-0001253.html","skin"]],"b":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]]},{"id":"NCBITaxon:1245","l":"Leuconostoc mesenteroides","na":5,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["leaf-po-0025034.html","leaf"],["animal-manure-envo-00003031.html","animal manure"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]]},{"id":"NCBITaxon:239","l":"Flavobacterium sp.","na":5,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["mud-envo-01000001.html","mud"],["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"],["orchard-envo-00000115.html","orchard"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]]},{"id":"NCBITaxon:28232","l":"Geobacter metallireducens","na":1,"nb":5,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":5,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["food-spoiled-foodon-00003366.html","food (spoiled)"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"]],"b":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":5,"nb":1,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["pseudostem-bto-0005992.html","pseudostem"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]]},{"id":"NCBITaxon:57723","l":"Acidobacteriota","na":1,"nb":5,"a":[["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["SPRUCE_Peatland_Methane_Cycling_Community.html","SPRUCE Peatland Methane-Cycling Microbial Community"]]},{"id":"NCBITaxon:74969","l":"Ferroplasma acidiphilum","na":1,"nb":5,"a":[["factory-envo-01000536.html","factory"]],"b":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]]},{"id":"NCBITaxon:838","l":"Prevotella","na":5,"nb":1,"a":[["brain-bto-0000142.html","brain"],["colon-bto-0000269.html","colon"],["heart-bto-0000562.html","heart"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"]],"b":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"CHEBI:24632","l":"hydrocarbon","na":4,"nb":1,"a":[["hydrocarbon-habitatmech-gold-db79f0142d.html","Hydrocarbon"],["hydrocarbon-habitatmech-gold-3c68e33a11.html","Hydrocarbon"],["hydrocarbon-habitatmech-gold-e77998b825.html","Hydrocarbon"],["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"]],"b":[["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"]]},{"id":"ENVO:01000306","l":"freshwater environment","na":1,"nb":4,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]]},{"id":"ENVO:01001033","l":"digestive tract environment","na":1,"nb":4,"a":[["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"],["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":4,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"],["human-construction-envo-00000070.html","human construction"],["sediment-envo-00002007.html","sediment"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]]},{"id":"NCBITaxon:1089553","l":"Thermacetogenium phaeum DSM 12270","na":4,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["pulp-bto-0001142.html","pulp"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":4,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]]},{"id":"NCBITaxon:1587","l":"Lactobacillus helveticus","na":4,"nb":1,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["intestine-environment-envo-2100002.html","intestine environment"],["urban-biome-envo-01000249.html","urban biome"],["harbour-envo-00000463.html","harbour"]],"b":[["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"]]},{"id":"NCBITaxon:1682","l":"Bifidobacterium longum subsp. infantis","na":4,"nb":1,"a":[["egg-food-product-foodon-00001274.html","egg food product"],["breast-bto-0000149.html","breast"],["ht-29-cell-bto-0000182.html","HT-29 cell"],["ma-104-cell-bto-0004983.html","MA-104 cell"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]]},{"id":"NCBITaxon:200795","l":"Chloroflexota","na":1,"nb":4,"a":[["crop-bto-0000301.html","crop"]],"b":[["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["Soil_BGC_Phylum_Depth_Vegetation_Community.html","Soil Biosynthetic Gene Cluster Phylum-Depth-Vegetation Community"]]},{"id":"NCBITaxon:2209","l":"Methanosarcina mazei","na":4,"nb":1,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["sludge-envo-00002044.html","sludge"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"]]},{"id":"NCBITaxon:356","l":"Hyphomicrobiales","na":4,"nb":1,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["stem-bto-0001300.html","stem"]],"b":[["Thiocyanate_Afipia_Thiobacillus_Bioreactor_Community.html","Thiocyanate-Degrading Afipia and Thiobacillus Bioreactor Community"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":1,"nb":4,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]]},{"id":"NCBITaxon:570","l":"Klebsiella","na":1,"nb":4,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"]]},{"id":"NCBITaxon:68287","l":"Mesorhizobium","na":1,"nb":4,"a":[["head-bto-0000282.html","head"]],"b":[["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]]},{"id":"NCBITaxon:75682","l":"Oxalobacteraceae","na":4,"nb":1,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]]},{"id":"NCBITaxon:872","l":"Desulfovibrio","na":1,"nb":4,"a":[["colon-bto-0000269.html","colon"]],"b":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]]},{"id":"NCBITaxon:930","l":"Acidithiobacillus thiooxidans","na":1,"nb":4,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]]},{"id":"NCBITaxon:1090","l":"Chlorobiota","na":3,"nb":1,"a":[["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"]],"b":[["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"]]},{"id":"NCBITaxon:1249","l":"Weissella paramesenteroides","na":3,"nb":1,"a":[["cecum-bto-0000166.html","cecum"],["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"]],"b":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]]},{"id":"NCBITaxon:1451","l":"Paenibacillus amylolyticus","na":3,"nb":1,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"]]},{"id":"NCBITaxon:1519","l":"Clostridium tyrobutyricum","na":3,"nb":1,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["peatland-envo-00000044.html","peatland"]],"b":[["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]]},{"id":"NCBITaxon:1582","l":"Lacticaseibacillus casei","na":3,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]]},{"id":"NCBITaxon:1597","l":"Lacticaseibacillus paracasei","na":3,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":1,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":3,"nb":1,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]]},{"id":"NCBITaxon:203124","l":"Trichodesmium erythraeum IMS101","na":3,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["coastal-water-body-envo-02000049.html","coastal water body"],["marine-neritic-zone-envo-00000206.html","marine neritic zone"]],"b":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":1,"nb":3,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]]},{"id":"NCBITaxon:22","l":"Shewanella","na":1,"nb":3,"a":[["wood-bto-0005516.html","wood"]],"b":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Shewanella_Denitrifying_Richness_SynComs.html","Shewanella Denitrifying Richness SynComs"]]},{"id":"NCBITaxon:28037","l":"Streptococcus mitis","na":3,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["archeological-site-envo-00000564.html","archeological site"],["tropical-envo-01000204.html","tropical"]],"b":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]]},{"id":"NCBITaxon:301375","l":"Methanothrix harundinacea","na":3,"nb":1,"a":[["small-river-biome-envo-00000890.html","small river biome"],["shoreline-envo-00000486.html","shoreline"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"]]},{"id":"NCBITaxon:3041","l":"Chlorophyta","na":1,"nb":3,"a":[["leaf-bto-0000713.html","leaf"]],"b":[["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"]]},{"id":"NCBITaxon:33035","l":"Blautia producta","na":1,"nb":3,"a":[["juvenile-bto-0002168.html","juvenile"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]]},{"id":"NCBITaxon:33952","l":"Acetobacterium woodii","na":1,"nb":3,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]]},{"id":"NCBITaxon:375","l":"Bradyrhizobium japonicum","na":3,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"]]},{"id":"NCBITaxon:375288","l":"Parabacteroides","na":3,"nb":1,"a":[["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"]],"b":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"]]},{"id":"NCBITaxon:40214","l":"Acinetobacter johnsonii","na":3,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["pitcher-bto-0001069.html","pitcher"],["water-scum-envo-00005794.html","water scum"]],"b":[["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]]},{"id":"NCBITaxon:48736","l":"Ralstonia","na":3,"nb":1,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"]],"b":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]]},{"id":"NCBITaxon:547","l":"Enterobacter","na":1,"nb":3,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]]},{"id":"NCBITaxon:572511","l":"Blautia","na":3,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["colon-bto-0000269.html","colon"]],"b":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]]},{"id":"NCBITaxon:582","l":"Morganella morganii","na":3,"nb":1,"a":[["blast-cell-bto-0000125.html","blast cell"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"],["spike-bto-0001278.html","spike"]],"b":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]]},{"id":"NCBITaxon:69373","l":"Curtobacterium pusillum","na":3,"nb":1,"a":[["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["seedling-bto-0001228.html","seedling"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]]},{"id":"NCBITaxon:76759","l":"Pseudomonas monteilii","na":3,"nb":1,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"]]},{"id":"NCBITaxon:85413","l":"Allobosea","na":1,"nb":3,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"]],"b":[["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":3,"nb":1,"a":[["city-envo-00000856.html","city"],["cold-environment-envo-01000309.html","cold environment"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]]},{"id":"ENVO:00002127","l":"stream sediment","na":1,"nb":2,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Tropidoatractus_Magnetotacticus_Tripartite_Syntrophy.html","Tropidoatractus magnetotacticus Magnetotactic Ciliate Tripartite Syntrophy"]]},{"id":"ENVO:03000033","l":"marine sediment","na":2,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"]]},{"id":"NCBITaxon:1033","l":"Afipia","na":2,"nb":1,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"]],"b":[["Thiocyanate_Afipia_Thiobacillus_Bioreactor_Community.html","Thiocyanate-Degrading Afipia and Thiobacillus Bioreactor Community"]]},{"id":"NCBITaxon:1091494","l":"Methylotuvimicrobium alcaliphilum 20Z","na":1,"nb":2,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"]]},{"id":"NCBITaxon:1129","l":"Synechococcus","na":2,"nb":1,"a":[["column-bto-0005692.html","column"],["hemolymph-bto-0000572.html","hemolymph"]],"b":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]]},{"id":"NCBITaxon:1173061","l":"Geotrichum candidum","na":2,"nb":1,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]]},{"id":"NCBITaxon:119532","l":"Microcoleus vaginatus","na":2,"nb":1,"a":[["desert-biome-envo-01000179.html","desert biome"],["desert-area-envo-00000097.html","desert area"]],"b":[["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]]},{"id":"NCBITaxon:1255","l":"Pediococcus pentosaceus","na":2,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"]],"b":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]]},{"id":"NCBITaxon:12916","l":"Acidovorax","na":1,"nb":2,"a":[["urine-bto-0001419.html","urine"]],"b":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]]},{"id":"NCBITaxon:1303","l":"Streptococcus oralis","na":2,"nb":1,"a":[["throat-bto-0000828.html","throat"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]]},{"id":"NCBITaxon:138074","l":"Serratia symbiotica","na":2,"nb":1,"a":[["intestine-bto-0000648.html","intestine"],["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"]]},{"id":"NCBITaxon:1398","l":"Heyndrickxia coagulans","na":2,"nb":1,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"]]},{"id":"NCBITaxon:1401","l":"Paenibacillus lautus","na":2,"nb":1,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"]]},{"id":"NCBITaxon:142182","l":"Gemmatimonadota","na":1,"nb":2,"a":[["crop-bto-0000301.html","crop"]],"b":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":2,"a":[["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]]},{"id":"NCBITaxon:1538","l":"Clostridium ljungdahlii","na":1,"nb":2,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]]},{"id":"NCBITaxon:160488","l":"Pseudomonas putida (strain ATCC 47054 / DSM 6125 / CFBP 8728 / NCIMB 11950 / KT2440)","na":1,"nb":2,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"]]},{"id":"NCBITaxon:161493","l":"Anaeromyxobacter dehalogenans","na":2,"nb":1,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"]]},{"id":"NCBITaxon:1680","l":"Bifidobacterium adolescentis","na":2,"nb":1,"a":[["brain-bto-0000142.html","brain"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]]},{"id":"NCBITaxon:169215","l":"","na":1,"nb":2,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"]],"b":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]]},{"id":"NCBITaxon:171552","l":"Prevotellaceae","na":2,"nb":1,"a":[["colon-bto-0000269.html","colon"],["rumen-uberon-0007365.html","rumen"]],"b":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"NCBITaxon:1785","l":"Mycobacterium sp.","na":2,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"],["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]]},{"id":"NCBITaxon:1871043","l":"Variovorax sp.","na":1,"nb":2,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]]},{"id":"NCBITaxon:1872086","l":"Ensifer sp.","na":2,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]]},{"id":"NCBITaxon:192","l":"Azospirillum brasilense","na":2,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"]]},{"id":"NCBITaxon:20","l":"Phenylobacterium","na":2,"nb":1,"a":[["crop-bto-0000301.html","crop"],["nectar-bto-0000537.html","nectar"]],"b":[["Tomato_Oxylipin_SynCom3.html","Tomato Oxylipin-Protective SynCom3"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus (strain ATCC 27405 / DSM 1237 / JCM 9322 / NBRC 103400 / NCIMB 10682 / NRRL B-4536 / VPI 7372)","na":1,"nb":2,"a":[["blood-plasma-bto-0000131.html","blood plasma"]],"b":[["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]]},{"id":"NCBITaxon:2162","l":"Methanobacterium formicicum","na":1,"nb":2,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"]]},{"id":"NCBITaxon:2173","l":"Methanobrevibacter smithii","na":1,"nb":2,"a":[["lagoon-envo-00000038.html","lagoon"]],"b":[["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"]]},{"id":"NCBITaxon:2223","l":"Methanothrix soehngenii","na":1,"nb":2,"a":[["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]]},{"id":"NCBITaxon:231455","l":"Dyella japonica","na":1,"nb":2,"a":[["area-of-tundra-envo-00000112.html","area of tundra"]],"b":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii (strain ATCC 43067 / DSM 2661 / JAL-1 / JCM 10045 / NBRC 100440)","na":2,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":2,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"]]},{"id":"NCBITaxon:2836","l":"Bacillariophyta","na":2,"nb":1,"a":[["diatom-associated-environment-habitatmech-gold-1276bea544.html","diatom-associated environment"],["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]]},{"id":"NCBITaxon:285","l":"Comamonas testosteroni","na":2,"nb":1,"a":[["waste-habitatmech-bacdive-36df85e4a4.html","Waste"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]]},{"id":"NCBITaxon:293387","l":"Bacillus altitudinis","na":1,"nb":2,"a":[["resting-cell-bto-0001170.html","resting cell"]],"b":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"]]},{"id":"NCBITaxon:29448","l":"Bradyrhizobium elkanii","na":2,"nb":1,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["area-of-tundra-envo-00000112.html","area of tundra"]],"b":[["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]]},{"id":"NCBITaxon:299767","l":"Enterobacter ludwigii","na":1,"nb":2,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]]},{"id":"NCBITaxon:323259","l":"Methanospirillum hungatei JF-1","na":1,"nb":2,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]]},{"id":"NCBITaxon:39152","l":"Methanococcus maripaludis","na":1,"nb":2,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["DVM_Triculture.html","DVM Tri-culture"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":2,"nb":1,"a":[["city-envo-00000856.html","city"],["cropland-biome-envo-01000245.html","cropland biome"]],"b":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]]},{"id":"NCBITaxon:515619","l":"Agathobacter rectalis ATCC 33656","na":1,"nb":2,"a":[["gut-epithelium-bto-0000956.html","gut epithelium"]],"b":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]]},{"id":"NCBITaxon:6239","l":"Caenorhabditis elegans","na":2,"nb":1,"a":[["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"]]},{"id":"NCBITaxon:648","l":"Aeromonas caviae","na":2,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]]},{"id":"NCBITaxon:82367","l":"Paracoccus pantotrophus","na":2,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"]]},{"id":"NCBITaxon:82380","l":"Microbacterium oxydans","na":1,"nb":2,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]]},{"id":"NCBITaxon:876","l":"Desulfovibrio desulfuricans","na":2,"nb":1,"a":[["sludge-envo-00002044.html","sludge"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":2,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]]},{"id":"UBERON:0001155","l":"colon","na":2,"nb":1,"a":[["colon-habitatmech-gold-c484d9a195.html","Colon"],["colon-habitatmech-gold-195d07bc47.html","Colon"]],"b":[["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"]]},{"id":"ENVO:00000057","l":"mangrove swamp","na":1,"nb":1,"a":[["mangrove-swamp-envo-00000057.html","mangrove swamp"]],"b":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"]]},{"id":"ENVO:00000126","l":"sulfur spring","na":1,"nb":1,"a":[["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"]]},{"id":"ENVO:00002121","l":"alkaline salt lake","na":1,"nb":1,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"]],"b":[["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]]},{"id":"ENVO:00003030","l":"silage","na":1,"nb":1,"a":[["silage-envo-00003030.html","silage"]],"b":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"]]},{"id":"ENVO:01000910","l":"soil biocrust","na":1,"nb":1,"a":[["soil-biocrust-envo-01000910.html","soil biocrust"]],"b":[["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]]},{"id":"NCBITaxon:100176","l":"Papillibacter cinnamivorans","na":1,"nb":1,"a":[["cecum-bto-0000166.html","cecum"]],"b":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"]]},{"id":"NCBITaxon:105972","l":"Methylosarcina fibrata","na":1,"nb":1,"a":[["stream-envo-00000023.html","stream"]],"b":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]]},{"id":"NCBITaxon:110321","l":"Sinorhizobium medicae","na":1,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"]]},{"id":"NCBITaxon:1122947","l":"Pelosinus fermentans DSM 17108","na":1,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"]]},{"id":"NCBITaxon:1131703","l":"Sphaerochaeta globosa","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"]]},{"id":"NCBITaxon:1134404","l":"Ignavibacteriota","na":1,"nb":1,"a":[["gut-bto-0000545.html","gut"]],"b":[["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"]]},{"id":"NCBITaxon:119060","l":"Burkholderiaceae","na":1,"nb":1,"a":[["trunk-bto-0001493.html","trunk"]],"b":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]]},{"id":"NCBITaxon:1253","l":"Pediococcus","na":1,"nb":1,"a":[["cecum-bto-0000166.html","cecum"]],"b":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]]},{"id":"NCBITaxon:1272","l":"Kocuria varians","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"]]},{"id":"NCBITaxon:135619","l":"Oceanospirillales","na":1,"nb":1,"a":[["column-bto-0005692.html","column"]],"b":[["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"]]},{"id":"NCBITaxon:1455","l":"Pseudobacillus badius","na":1,"nb":1,"a":[["organic-waste-material-envo-00002873.html","organic waste material"]],"b":[["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"]]},{"id":"NCBITaxon:1488","l":"Clostridium acetobutylicum","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]]},{"id":"NCBITaxon:1501","l":"Clostridium pasteurianum","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]]},{"id":"NCBITaxon:1517","l":"Thermoanaerobacterium thermosaccharolyticum","na":1,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]]},{"id":"NCBITaxon:1579","l":"Lactobacillus acidophilus","na":1,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"]],"b":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]]},{"id":"NCBITaxon:1585","l":"Lactobacillus delbrueckii subsp. bulgaricus","na":1,"nb":1,"a":[["pig-manure-envo-00003860.html","pig manure"]],"b":[["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]]},{"id":"NCBITaxon:158836","l":"Enterobacter hormaechei","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]]},{"id":"NCBITaxon:168384","l":"Marvinbryantia formatexigens","na":1,"nb":1,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"]]},{"id":"NCBITaxon:1828","l":"Rhodococcoides fascians","na":1,"nb":1,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]]},{"id":"NCBITaxon:1871068","l":"Phyllobacteriaceae bacterium","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]]},{"id":"NCBITaxon:1898203","l":"Lachnospiraceae bacterium","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]]},{"id":"NCBITaxon:216389","l":"Dehalococcoides mccartyi BAV1","na":1,"nb":1,"a":[["road-envo-00000064.html","road"]],"b":[["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]]},{"id":"NCBITaxon:216778","l":"Stenotrophomonas rhizophila","na":1,"nb":1,"a":[["style-bto-0001313.html","style"]],"b":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"]]},{"id":"NCBITaxon:219572","l":"Pseudomonas antarctica","na":1,"nb":1,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]]},{"id":"NCBITaxon:225937","l":"Marinobacter adhaerens HP15","na":1,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]]},{"id":"NCBITaxon:226","l":"Alteromonas","na":1,"nb":1,"a":[["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]]},{"id":"NCBITaxon:226186","l":"Bacteroides thetaiotaomicron (strain ATCC 29148 / DSM 2079 / JCM 5827 / CCUG 10774 / NCTC 10582 / VPI-5482 / E50)","na":1,"nb":1,"a":[["gut-epithelium-bto-0000956.html","gut epithelium"]],"b":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima (strain ATCC 43589 / DSM 3109 / JCM 10099 / NBRC 100826 / MSB8)","na":1,"nb":1,"a":[["feather-bto-0000447.html","feather"]],"b":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]]},{"id":"NCBITaxon:246200","l":"Ruegeria pomeroyi DSS-3","na":1,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]]},{"id":"NCBITaxon:250","l":"Chryseobacterium gleum","na":1,"nb":1,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]]},{"id":"NCBITaxon:2745","l":"Halomonas","na":1,"nb":1,"a":[["wood-bto-0005516.html","wood"]],"b":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]]},{"id":"NCBITaxon:29394","l":"Dolosigranulum pigrum","na":1,"nb":1,"a":[["bone-element-uberon-0001474.html","bone element"]],"b":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"]]},{"id":"NCBITaxon:3078","l":"Auxenochlorella pyrenoidosa","na":1,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"]],"b":[["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"]]},{"id":"NCBITaxon:33010","l":"Cutibacterium avidum","na":1,"nb":1,"a":[["bone-element-uberon-0001474.html","bone element"]],"b":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]]},{"id":"NCBITaxon:33011","l":"Cutibacterium granulosum","na":1,"nb":1,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]]},{"id":"NCBITaxon:33883","l":"Microbacterium arborescens","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]]},{"id":"NCBITaxon:340177","l":"Chlorobium chlorochromatii CaD3","na":1,"nb":1,"a":[["photoreceptor-cell-bto-0001060.html","photoreceptor cell"]],"b":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"]]},{"id":"NCBITaxon:372461","l":"Buchnera aphidicola BCc","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"]]},{"id":"NCBITaxon:38304","l":"Corynebacterium tuberculostearicum","na":1,"nb":1,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"]]},{"id":"NCBITaxon:399726","l":"Thermoanaerobacter sp. X514","na":1,"nb":1,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"]]},{"id":"NCBITaxon:409291","l":"Arthrobacter humicola","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]]},{"id":"NCBITaxon:43775","l":"Syntrophus gentianae","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]]},{"id":"NCBITaxon:47880","l":"Pseudomonas fulva","na":1,"nb":1,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]]},{"id":"NCBITaxon:47920","l":"Acidovorax delafieldii","na":1,"nb":1,"a":[["bone-element-uberon-0001474.html","bone element"]],"b":[["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]]},{"id":"NCBITaxon:49082","l":"Candidatus Neoarthromitus","na":1,"nb":1,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]]},{"id":"NCBITaxon:51669","l":"Tetragenococcus halophilus","na":1,"nb":1,"a":[["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]]},{"id":"NCBITaxon:542","l":"Zymomonas mobilis","na":1,"nb":1,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["Zymomonas_Ecoli_Exometabolomics_Obligate_Mutualism.html","Zymomonas-E. coli Exometabolomics-Designed Obligate Mutualism"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":1,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":1,"nb":1,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]]},{"id":"NCBITaxon:571256","l":"Brucella pituitosa","na":1,"nb":1,"a":[["seedling-bto-0001228.html","seedling"]],"b":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]]},{"id":"NCBITaxon:685","l":"Vibrio diazotrophicus","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]]},{"id":"NCBITaxon:80840","l":"Burkholderiales","na":1,"nb":1,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"]],"b":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"]]},{"id":"NCBITaxon:80866","l":"Delftia acidovorans","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]]},{"id":"NCBITaxon:82","l":"Hyphomicrobium sp.","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"]]},{"id":"NCBITaxon:86185","l":"Pseudomonas lundensis","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]]},{"id":"NCBITaxon:930166","l":"Pseudomonas brassicacearum","na":1,"nb":1,"a":[["spike-bto-0001278.html","spike"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]]},{"id":"NCBITaxon:94625","l":"Brucella intermedia","na":1,"nb":1,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]]},{"id":"UBERON:0002097","l":"skin of body","na":1,"nb":1,"a":[["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["SkinCom_Synthetic_Skin_Community.html","SkinCom Synthetic Skin Community"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/HabitatMech--CultureMech.json b/assets/fleet/edges/HabitatMech--CultureMech.json index 6989f88..8109164 100644 --- a/assets/fleet/edges/HabitatMech--CultureMech.json +++ b/assets/fleet/edges/HabitatMech--CultureMech.json @@ -1 +1 @@ -{"a":"HabitatMech","b":"CultureMech","base":{"HabitatMech":"https://culturebotai.github.io/HabitatMech/pages/habitats/","CultureMech":"https://github.com/CultureBotAI/CultureMech/blob/main/data/merge_yaml/merged/"},"n":25,"by":{"NCBITaxon":13,"ENVO":7,"UBERON":4,"FOODON":1},"terms":[{"id":"UBERON:0000948","l":"heart","na":7,"nb":67,"a":[["heart-habitatmech-gold-2db4d9dd6e.html","Heart"],["heart-habitatmech-gold-8d7a4e1712.html","Heart"],["heart-uberon-0000948.html","heart"],["heart-habitatmech-gold-e9d67283fc.html","Heart"],["heart-habitatmech-gold-805ee181bd.html","Heart"],["heart-habitatmech-gold-20bc7c46a0.html","Heart"]],"b":[["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"],["1_2_mrs_1_2_bhi_agar.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_mrs_1_2_bhi_agar__56430c33.yaml","1_2_mrs_1_2_bhi_agar"],["70_30_sporulation_medium.yaml","70_30_sporulation_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Anaerobic_Brain_Heart_Infusion_Broth.yaml","anaerobic_brain_heart_infusion_broth"]]},{"id":"UBERON:0000955","l":"brain","na":5,"nb":66,"a":[["brain-habitatmech-gold-752ac1c5aa.html","Brain"],["brain-habitatmech-gold-6bdd76cda3.html","Brain"],["brain-habitatmech-gold-a220aa6bb0.html","Brain"],["brain-habitatmech-gold-e1c2f5f7d4.html","Brain"],["brain-habitatmech-gold-2e584195fd.html","Brain"]],"b":[["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"],["1_2_mrs_1_2_bhi_agar.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_mrs_1_2_bhi_agar__56430c33.yaml","1_2_mrs_1_2_bhi_agar"],["70_30_sporulation_medium.yaml","70_30_sporulation_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Anaerobic_Brain_Heart_Infusion_Broth.yaml","anaerobic_brain_heart_infusion_broth"]]},{"id":"UBERON:0000178","l":"blood","na":7,"nb":4,"a":[["blood-habitatmech-gold-f46a5017f9.html","Blood"],["blood-habitatmech-gold-476e09babd.html","Blood"],["blood-habitatmech-gold-d25ff4a586.html","Blood"],["blood-habitatmech-gold-6c6aab19d3.html","Blood"],["blood-uberon-0000178.html","blood"],["whole-blood-habitatmech-gold-3612f7e08f.html","Whole blood"]],"b":[["blood_agar__45bfc12d.yaml","blood_agar"],["columbia_blood_agar_with_5_horse_blood__65a36f66.yaml","columbia_blood_agar_with_5_horse_blood"],["columbia_blood_agar_with_5_rabbit_blood__0ed590f0.yaml","columbia_blood_agar_with_5_rabbit_blood"],["columbia_blood_agar_with_5_sheep_blood__5f55f46d.yaml","columbia_blood_agar_with_5_sheep_blood"]]},{"id":"ENVO:00002007","l":"sediment","na":103,"nb":2,"a":[["marine-sediment-envo-03000033.html","marine sediment"],["sediment-habitatmech-gold-6bc70f0406.html","Sediment"],["sediment-habitatmech-gold-33b265d89f.html","Sediment"],["sediment-habitatmech-gold-7db7617ea4.html","Sediment"],["sediment-habitatmech-gold-2f9eb7ed2f.html","Sediment"],["sediment-habitatmech-gold-2ff751e0a6.html","Sediment"]],"b":[["modified_dsm_120_medium_for_diet_coculture.yaml","modified_dsm_120_medium_for_diet_coculture"],["modified_freshwater_medium_for_diet_coculture.yaml","modified_freshwater_medium_for_diet_coculture"]]},{"id":"ENVO:00002149","l":"sea water","na":7,"nb":2,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["oil-contaminated-habitatmech-gold-a83d030599.html","Oil-contaminated"],["oil-contaminated-habitatmech-gold-d640d7cf58.html","Oil-contaminated"],["oil-contaminated-sediment-habitatmech-gold-e6839bcc8f.html","Oil-contaminated sediment"],["oil-contaminated-sediment-habitatmech-gold-7c79bcbca8.html","Oil-contaminated sediment"],["sea-water-envo-00002149.html","sea water"]],"b":[["PE.yaml","pe"],["f_2.yaml","f_2"]]},{"id":"ENVO:00005801","l":"rhizosphere","na":2,"nb":3,"a":[["rhizosphere-envo-00005801.html","rhizosphere"],["soil-habitatmech-gold-067f7f5e2a.html","Soil"]],"b":[["R2A_AGAR.yaml","r2a_agar"],["half_strength_murashige_skoog_medium_for_arabidopsis_growth.yaml","half_strength_murashige_skoog_medium_for_arabidopsis_growth"],["nitrogen_free_plant_nutrient_solution_for_soybean_growth.yaml","nitrogen_free_plant_nutrient_solution_for_soybean_growth"]]},{"id":"ENVO:01001405","l":"laboratory environment","na":2,"nb":2,"a":[["genetic-cross-habitatmech-gold-ba9317369a.html","Genetic cross"],["laboratory-environment-envo-01001405.html","laboratory environment"]],"b":[["glycerol_fermentation_medium_for_diet_coculture.yaml","glycerol_fermentation_medium_for_diet_coculture"],["tap_medium.yaml","tap_medium"]]},{"id":"NCBITaxon:556484","l":"","na":2,"nb":2,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["2ASW.yaml","2asw"],["F_2_Medium.yaml","f_2_medium"]]},{"id":"ENVO:00002170","l":"compost","na":20,"nb":1,"a":[["compost-envo-00002170.html","compost"],["composting-habitatmech-gold-143ceb8669.html","Composting"],["composting-habitatmech-gold-edeecbabed.html","Composting"],["composting-habitatmech-gold-5948923b46.html","Composting"],["composting-habitatmech-gold-70db4820d1.html","Composting"],["composting-habitatmech-gold-cdbbd857c8.html","Composting"]],"b":[["pcs_fp_medium_for_thermophilic_cellulose_degradation.yaml","pcs_fp_medium_for_thermophilic_cellulose_degradation"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":16,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"]],"b":[["RHODOBACTER_SPHAEROIDES_MEDIUM.yaml","rhodobacter_sphaeroides_medium"]]},{"id":"NCBITaxon:210","l":"Helicobacter pylori","na":8,"nb":1,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["hospital-envo-00002173.html","hospital"],["duodenum-bto-0000365.html","duodenum"],["gastric-juice-bto-0000501.html","gastric juice"],["gastric-mucosa-bto-0001308.html","gastric mucosa"],["gastric-ulcer-bto-0002990.html","gastric ulcer"]],"b":[["BRUCELLA_BROTH.yaml","brucella_broth"]]},{"id":"NCBITaxon:55518","l":"Magnetospirillum gryphiswaldense","na":7,"nb":1,"a":[["bay-envo-00000032.html","bay"],["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"],["saline-water-envo-00002010.html","saline water"],["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["farm-soil-envo-00005749.html","farm soil"],["orchard-envo-00000115.html","orchard"]],"b":[["magnetospirillum_gryphiswaldense_medium__6f77a326.yaml","magnetospirillum_gryphiswaldense_medium"]]},{"id":"NCBITaxon:28114","l":"Porphyromonas levii","na":4,"nb":1,"a":[["environmental-feature-envo-00002297.html","environmental feature"],["lagoon-envo-00000038.html","lagoon"],["skin-environment-envo-2100003.html","skin environment"],["harbour-envo-00000463.html","harbour"]],"b":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]]},{"id":"NCBITaxon:33028","l":"Staphylococcus saccharolyticus","na":3,"nb":1,"a":[["bone-element-uberon-0001474.html","bone element"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["columbia_blood_agar__e1a4386f.yaml","columbia_blood_agar"]]},{"id":"ENVO:00002186","l":"contaminated water","na":1,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["9K_MEDIUM.yaml","9k_medium"],["nitrogen_free_medium_for_leptospirillum_ferrodiazotrophum.yaml","nitrogen_free_medium_for_leptospirillum_ferrodiazotrophum"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":2,"nb":1,"a":[["city-envo-00000856.html","city"],["cropland-biome-envo-01000245.html","cropland biome"]],"b":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]]},{"id":"ENVO:01000306","l":"freshwater environment","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["tap_medium.yaml","tap_medium"]]},{"id":"FOODON:03316428","l":"sweets","na":1,"nb":1,"a":[["sweets-foodon-03316428.html","sweets"]],"b":[["Potato_Dextrose_Broth.yaml","Potato Dextrose Broth"]]},{"id":"NCBITaxon:2203","l":"Methanospirillum hungatei","na":1,"nb":1,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"]],"b":[["medium_for_co_culture_of_strain_jt_with_methanospirillum_hungatei_nbrc_100397.yaml","medium_for_co_culture_of_strain_jt_with_methanospirillum_hungatei_nbrc_100397"]]},{"id":"NCBITaxon:263820","l":"Picrophilus torridus DSM 9790","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["sulfolobus_medium_for_dsm_9790.yaml","sulfolobus_medium_for_dsm_9790"]]},{"id":"NCBITaxon:28125","l":"Prevotella bivia","na":1,"nb":1,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]]},{"id":"NCBITaxon:3046","l":"Dunaliella salina","na":1,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"]],"b":[["2ASW.yaml","2asw"]]},{"id":"NCBITaxon:373903","l":"Halothermothrix orenii H 168","na":1,"nb":1,"a":[["lake-sediment-envo-00000546.html","lake sediment"]],"b":[["HALOTHERMOTHRIX_ORENII.yaml","halothermothrix_orenii"]]},{"id":"NCBITaxon:859","l":"Fusobacterium necrophorum","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]]},{"id":"UBERON:0001977","l":"blood serum","na":1,"nb":1,"a":[["blood-serum-uberon-0001977.html","blood serum"]],"b":[["mGAM.yaml","mGAM"]]}]} \ No newline at end of file +{"a":"HabitatMech","b":"CultureMech","base":{"HabitatMech":"https://culturebotai.github.io/HabitatMech/pages/habitats/","CultureMech":"https://github.com/CultureBotAI/CultureMech/blob/main/data/merge_yaml/merged/"},"n":25,"by":{"NCBITaxon":13,"ENVO":7,"UBERON":4,"FOODON":1},"terms":[{"id":"UBERON:0000948","l":"heart","na":7,"nb":67,"a":[["heart-habitatmech-gold-2db4d9dd6e.html","Heart"],["heart-habitatmech-gold-8d7a4e1712.html","Heart"],["heart-uberon-0000948.html","heart"],["heart-habitatmech-gold-e9d67283fc.html","Heart"],["heart-habitatmech-gold-805ee181bd.html","Heart"],["heart-habitatmech-gold-20bc7c46a0.html","Heart"]],"b":[["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"],["1_2_mrs_1_2_bhi_agar.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_mrs_1_2_bhi_agar__56430c33.yaml","1_2_mrs_1_2_bhi_agar"],["70_30_sporulation_medium.yaml","70_30_sporulation_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Anaerobic_Brain_Heart_Infusion_Broth.yaml","anaerobic_brain_heart_infusion_broth"]]},{"id":"UBERON:0000955","l":"brain","na":5,"nb":66,"a":[["brain-habitatmech-gold-752ac1c5aa.html","Brain"],["brain-habitatmech-gold-6bdd76cda3.html","Brain"],["brain-habitatmech-gold-a220aa6bb0.html","Brain"],["brain-habitatmech-gold-e1c2f5f7d4.html","Brain"],["brain-habitatmech-gold-2e584195fd.html","Brain"]],"b":[["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"],["1_2_mrs_1_2_bhi_agar.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_mrs_1_2_bhi_agar__56430c33.yaml","1_2_mrs_1_2_bhi_agar"],["70_30_sporulation_medium.yaml","70_30_sporulation_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Anaerobic_Brain_Heart_Infusion_Broth.yaml","anaerobic_brain_heart_infusion_broth"]]},{"id":"UBERON:0000178","l":"blood","na":7,"nb":4,"a":[["blood-habitatmech-gold-f46a5017f9.html","Blood"],["blood-habitatmech-gold-476e09babd.html","Blood"],["blood-habitatmech-gold-d25ff4a586.html","Blood"],["blood-habitatmech-gold-6c6aab19d3.html","Blood"],["blood-uberon-0000178.html","blood"],["whole-blood-habitatmech-gold-3612f7e08f.html","Whole blood"]],"b":[["blood_agar__45bfc12d.yaml","blood_agar"],["columbia_blood_agar_with_5_horse_blood__65a36f66.yaml","columbia_blood_agar_with_5_horse_blood"],["columbia_blood_agar_with_5_rabbit_blood__0ed590f0.yaml","columbia_blood_agar_with_5_rabbit_blood"],["columbia_blood_agar_with_5_sheep_blood__5f55f46d.yaml","columbia_blood_agar_with_5_sheep_blood"]]},{"id":"ENVO:00002007","l":"sediment","na":103,"nb":2,"a":[["marine-sediment-envo-03000033.html","marine sediment"],["sediment-habitatmech-gold-6bc70f0406.html","Sediment"],["sediment-habitatmech-gold-33b265d89f.html","Sediment"],["sediment-habitatmech-gold-7db7617ea4.html","Sediment"],["sediment-habitatmech-gold-2f9eb7ed2f.html","Sediment"],["sediment-habitatmech-gold-2ff751e0a6.html","Sediment"]],"b":[["modified_dsm_120_medium_for_diet_coculture.yaml","modified_dsm_120_medium_for_diet_coculture"],["modified_freshwater_medium_for_diet_coculture.yaml","modified_freshwater_medium_for_diet_coculture"]]},{"id":"ENVO:00002149","l":"sea water","na":7,"nb":2,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["oil-contaminated-habitatmech-gold-a83d030599.html","Oil-contaminated"],["oil-contaminated-habitatmech-gold-d640d7cf58.html","Oil-contaminated"],["oil-contaminated-sediment-habitatmech-gold-e6839bcc8f.html","Oil-contaminated sediment"],["oil-contaminated-sediment-habitatmech-gold-7c79bcbca8.html","Oil-contaminated sediment"],["sea-water-envo-00002149.html","sea water"]],"b":[["PE.yaml","pe"],["f_2.yaml","f_2"]]},{"id":"ENVO:00005801","l":"rhizosphere","na":2,"nb":3,"a":[["rhizosphere-envo-00005801.html","rhizosphere"],["soil-habitatmech-gold-067f7f5e2a.html","Soil"]],"b":[["R2A_AGAR.yaml","r2a_agar"],["half_strength_murashige_skoog_medium_for_arabidopsis_growth.yaml","half_strength_murashige_skoog_medium_for_arabidopsis_growth"],["nitrogen_free_plant_nutrient_solution_for_soybean_growth.yaml","nitrogen_free_plant_nutrient_solution_for_soybean_growth"]]},{"id":"ENVO:01001405","l":"laboratory environment","na":2,"nb":2,"a":[["genetic-cross-habitatmech-gold-ba9317369a.html","Genetic cross"],["laboratory-environment-envo-01001405.html","laboratory environment"]],"b":[["glycerol_fermentation_medium_for_diet_coculture.yaml","glycerol_fermentation_medium_for_diet_coculture"],["tap_medium.yaml","tap_medium"]]},{"id":"NCBITaxon:556484","l":"","na":2,"nb":2,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["2ASW.yaml","2asw"],["F_2_Medium.yaml","f_2_medium"]]},{"id":"ENVO:00002170","l":"compost","na":20,"nb":1,"a":[["compost-envo-00002170.html","compost"],["composting-habitatmech-gold-143ceb8669.html","Composting"],["composting-habitatmech-gold-edeecbabed.html","Composting"],["composting-habitatmech-gold-5948923b46.html","Composting"],["composting-habitatmech-gold-70db4820d1.html","Composting"],["composting-habitatmech-gold-cdbbd857c8.html","Composting"]],"b":[["pcs_fp_medium_for_thermophilic_cellulose_degradation.yaml","pcs_fp_medium_for_thermophilic_cellulose_degradation"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":16,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"]],"b":[["RHODOBACTER_SPHAEROIDES_MEDIUM.yaml","rhodobacter_sphaeroides_medium"]]},{"id":"NCBITaxon:210","l":"Helicobacter pylori","na":8,"nb":1,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["hospital-envo-00002173.html","hospital"],["duodenum-bto-0000365.html","duodenum"],["gastric-juice-bto-0000501.html","gastric juice"],["gastric-mucosa-bto-0001308.html","gastric mucosa"],["gastric-ulcer-bto-0002990.html","gastric ulcer"]],"b":[["BRUCELLA_BROTH.yaml","brucella_broth"]]},{"id":"NCBITaxon:55518","l":"Magnetospirillum gryphiswaldense","na":7,"nb":1,"a":[["bay-envo-00000032.html","bay"],["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"],["saline-water-envo-00002010.html","saline water"],["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["farm-soil-envo-00005749.html","farm soil"],["orchard-envo-00000115.html","orchard"]],"b":[["magnetospirillum_gryphiswaldense_medium__6f77a326.yaml","magnetospirillum_gryphiswaldense_medium"]]},{"id":"NCBITaxon:28114","l":"Porphyromonas levii","na":4,"nb":1,"a":[["environmental-feature-envo-00002297.html","environmental feature"],["lagoon-envo-00000038.html","lagoon"],["skin-environment-envo-2100003.html","skin environment"],["harbour-envo-00000463.html","harbour"]],"b":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]]},{"id":"NCBITaxon:33028","l":"Staphylococcus saccharolyticus","na":3,"nb":1,"a":[["bone-element-uberon-0001474.html","bone element"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["columbia_blood_agar__e1a4386f.yaml","columbia_blood_agar"]]},{"id":"ENVO:00002186","l":"contaminated water","na":1,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["9K_MEDIUM.yaml","9k_medium"],["nitrogen_free_medium_for_leptospirillum_ferrodiazotrophum.yaml","nitrogen_free_medium_for_leptospirillum_ferrodiazotrophum"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":2,"nb":1,"a":[["city-envo-00000856.html","city"],["cropland-biome-envo-01000245.html","cropland biome"]],"b":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]]},{"id":"ENVO:01000306","l":"freshwater environment","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["tap_medium.yaml","tap_medium"]]},{"id":"FOODON:03316428","l":"sweets","na":1,"nb":1,"a":[["sweets-foodon-03316428.html","sweets"]],"b":[["Potato_Dextrose_Broth.yaml","Potato Dextrose Broth"]]},{"id":"NCBITaxon:2203","l":"Methanospirillum hungatei","na":1,"nb":1,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"]],"b":[["medium_for_co_culture_of_strain_jt_with_methanospirillum_hungatei_nbrc_100397.yaml","medium_for_co_culture_of_strain_jt_with_methanospirillum_hungatei_nbrc_100397"]]},{"id":"NCBITaxon:263820","l":"Picrophilus torridus DSM 9790","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["sulfolobus_medium_for_dsm_9790.yaml","sulfolobus_medium_for_dsm_9790"]]},{"id":"NCBITaxon:28125","l":"Prevotella bivia","na":1,"nb":1,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]]},{"id":"NCBITaxon:3046","l":"Dunaliella salina","na":1,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"]],"b":[["2ASW.yaml","2asw"]]},{"id":"NCBITaxon:373903","l":"Halothermothrix orenii H 168","na":1,"nb":1,"a":[["lake-sediment-envo-00000546.html","lake sediment"]],"b":[["halothermothrix_orenii.yaml","halothermothrix_orenii"]]},{"id":"NCBITaxon:859","l":"Fusobacterium necrophorum","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]]},{"id":"UBERON:0001977","l":"blood serum","na":1,"nb":1,"a":[["blood-serum-uberon-0001977.html","blood serum"]],"b":[["mGAM.yaml","mGAM"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/HabitatMech--NaturalProductMech.json b/assets/fleet/edges/HabitatMech--NaturalProductMech.json index 1c16029..5487c10 100644 --- a/assets/fleet/edges/HabitatMech--NaturalProductMech.json +++ b/assets/fleet/edges/HabitatMech--NaturalProductMech.json @@ -1 +1 @@ -{"a":"HabitatMech","b":"NaturalProductMech","base":{"HabitatMech":"https://culturebotai.github.io/HabitatMech/pages/habitats/","NaturalProductMech":"https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/natural_products/"},"n":312,"by":{"NCBITaxon":312},"terms":[{"id":"NCBITaxon:56","l":"Sorangium cellulosum","na":27,"nb":25,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["watercourse-envo-00000029.html","watercourse"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["amino_acids_and_peptides/microsclerodermin-m.yaml","microsclerodermin M"],["polyketides/ambruticin.yaml","ambruticin"],["polyketides/chivosazol.yaml","chivosazol"],["polyketides/chlorotonil-a.yaml","chlorotonil A"],["polyketides/disorazol-a.yaml","disorazol A"],["polyketides/etnangien.yaml","etnangien"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":36,"nb":24,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["bay-envo-00000032.html","bay"],["freshwater-biome-envo-00000873.html","freshwater biome"],["liquid-water-envo-00002006.html","liquid water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":19,"nb":116,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["saline-water-body-envo-01001319.html","saline water body"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["alkaloids/altemicidin.yaml","altemicidin"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"],["alkaloids/aurachin-ss.yaml","aurachin SS"],["alkaloids/berninamycin-j.yaml","berninamycin J"],["alkaloids/berninamycin-k.yaml","berninamycin K"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":18,"nb":27,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["alkaloids/pseudomonine.yaml","pseudomonine"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyreudione-c.yaml","pyreudione C"],["alkaloids/quinolobactin.yaml","quinolobactin"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":14,"nb":31,"a":[["watercourse-envo-00000029.html","watercourse"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["leaf-po-0025034.html","leaf"]],"b":[["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["alkaloids/myxofacycline-e.yaml","myxofacycline E"],["alkaloids/myxofacycline-f.yaml","myxofacycline F"],["alkaloids/myxofacycline-g.yaml","myxofacycline G"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":27,"nb":13,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["watercourse-envo-00000029.html","watercourse"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["egg-food-product-foodon-00001274.html","egg food product"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"]],"b":[["unclassified/bananamide-d.yaml","bananamide D"],["unclassified/bananamide-e.yaml","bananamide E"],["unclassified/bananamide-f.yaml","bananamide F"],["unclassified/bananamide-g.yaml","bananamide G"],["unclassified/lokisin.yaml","lokisin"],["unclassified/pseudodesmin-a.yaml","pseudodesmin A"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":28,"nb":12,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["liquid-water-envo-00002006.html","liquid water"],["watercourse-envo-00000029.html","watercourse"],["compost-envo-00002170.html","compost"],["hospital-envo-00002173.html","hospital"],["human-construction-envo-00000070.html","human construction"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:286","l":"Pseudomonas","na":10,"nb":41,"a":[["heart-bto-0000562.html","heart"],["juvenile-bto-0002168.html","juvenile"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"],["pseudostem-bto-0005992.html","pseudostem"]],"b":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["alkaloids/tioguanine.yaml","tioguanine"],["amino_acids_and_peptides/napsamycin-c.yaml","napsamycin C"],["amino_acids_and_peptides/napsamycin-d.yaml","napsamycin D"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":10,"nb":16,"a":[["anther-bto-0000079.html","anther"],["epithelial-cell-bto-0000414.html","epithelial cell"],["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["amino_acids_and_peptides/ericin-s.yaml","ericin S"],["amino_acids_and_peptides/iturin.yaml","iturin"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"]]},{"id":"NCBITaxon:1386","l":"Bacillus ","na":19,"nb":9,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["crop-bto-0000301.html","crop"],["dorsum-bto-0001713.html","dorsum"],["hand-bto-0004668.html","hand"],["head-bto-0000282.html","head"],["juvenile-bto-0002168.html","juvenile"]],"b":[["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bogorol-a.yaml","bogorol A"],["amino_acids_and_peptides/koranimine.yaml","koranimine"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"],["amino_acids_and_peptides/rhizocticin-a.yaml","rhizocticin A"],["polyketides/difficidin.yaml","difficidin"]]},{"id":"NCBITaxon:1464","l":"Paenibacillus larvae","na":10,"nb":8,"a":[["surface-water-envo-00002042.html","surface water"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["carcass-envo-00002033.html","carcass"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"],["sludge-envo-00002044.html","sludge"]],"b":[["alkaloids/paenilamicin-a2.yaml","paenilamicin A2"],["alkaloids/paenilamicin-b1.yaml","paenilamicin B1"],["alkaloids/paenilamicin-b2.yaml","paenilamicin B2"],["alkaloids/paenilamicin.yaml","paenilamicin"],["amino_acids_and_peptides/paenilarvin-a.yaml","paenilarvin A"],["amino_acids_and_peptides/paenilarvin-b.yaml","paenilarvin B"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":8,"nb":10,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["alkaloids/labradorin-1.yaml","labradorin 1"],["alkaloids/labradorin-2.yaml","labradorin 2"],["alkaloids/secimide.yaml","secimide"],["amino_acids_and_peptides/phaseolotoxin.yaml","phaseolotoxin"],["amino_acids_and_peptides/syringolin-a.yaml","syringolin A"],["amino_acids_and_peptides/tabtoxin.yaml","tabtoxin"]]},{"id":"NCBITaxon:1876","l":"Micromonospora sp.","na":7,"nb":9,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["marine-water-body-envo-00001999.html","marine water body"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["sludge-envo-00002044.html","sludge"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["polyketides/quinolidomicin-a.yaml","quinolidomicin A"],["polyketides/sungeidine-c.yaml","sungeidine C"],["polyketides/sungeidine-f.yaml","sungeidine F"],["polyketides/sungeidine-g.yaml","sungeidine G"],["shikimates_and_phenylpropanoids/sungeidine-d.yaml","sungeidine D"],["unclassified/sungeidine-a.yaml","sungeidine A"]]},{"id":"NCBITaxon:67263","l":"Streptomyces griseus subsp. griseus","na":6,"nb":7,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["laboratory-facility-envo-01001406.html","laboratory facility"],["clay-envo-00002982.html","clay"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["alkaloids/indolmycin.yaml","indolmycin"],["polyketides/chromomycin-a3.yaml","chromomycin A3"],["polyketides/dinactin.yaml","dinactin"],["polyketides/monactin.yaml","monactin"],["polyketides/nonactin.yaml","nonactin"],["polyketides/tetranactin.yaml","tetranactin"]]},{"id":"NCBITaxon:1269","l":"Micrococcus","na":6,"nb":6,"a":[["cecum-bto-0000166.html","cecum"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["saliva-bto-0001202.html","saliva"],["tongue-bto-0001385.html","tongue"]],"b":[["alkaloids/limazepine-a.yaml","limazepine A"],["alkaloids/limazepine-c.yaml","limazepine C"],["alkaloids/limazepine-d.yaml","limazepine D"],["alkaloids/limazepine-e.yaml","limazepine E"],["alkaloids/limazepine-f.yaml","limazepine F"],["terpenoids/mk-8.yaml","MK-8"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":40,"nb":5,"a":[["liquid-water-envo-00002006.html","liquid water"],["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["laboratory-facility-envo-01001406.html","laboratory facility"],["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["biofilm-bto-0002690.html","biofilm"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"],["unclassified/leuvalin.yaml","leuvalin"],["unclassified/phevalin.yaml","phevalin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":11,"nb":5,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["resting-cell-bto-0001170.html","resting cell"],["seedling-bto-0001228.html","seedling"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["alkaloids/promysalin.yaml","promysalin"],["polyketides/pseudopyronine-a.yaml","pseudopyronine A"],["polyketides/pseudopyronine-b.yaml","pseudopyronine B"],["unclassified/putisolvin-iii.yaml","putisolvin III"],["unclassified/putisolvin-v.yaml","putisolvin V"]]},{"id":"NCBITaxon:10090","l":"Mus musculus","na":8,"nb":5,"a":[["river-envo-00000022.html","river"],["animal-manure-envo-00003031.html","animal manure"],["biotope-envo-00002036.html","biotope"],["intestine-environment-envo-2100002.html","intestine environment"],["urban-biome-envo-01000249.html","urban biome"],["sediment-envo-00002007.html","sediment"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"],["terpenoids/carotene.yaml","β-carotene"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":5,"nb":5,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["pseudostem-bto-0005992.html","pseudostem"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/andrimid.yaml","andrimid"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/pantocin-a.yaml","pantocin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":5,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"],["midgut-bto-0000863.html","midgut"],["paddy-field-envo-00000297.html","paddy field"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["alkaloids/prodigiosin-2.yaml","prodigiosin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/serratiochelin-a.yaml","serratiochelin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["polyketides/oocydin-a.yaml","oocydin A"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":27,"nb":4,"a":[["small-river-biome-envo-00000890.html","small river biome"],["factory-envo-01000536.html","factory"],["organic-waste-material-envo-00002873.html","organic waste material"],["leaf-po-0025034.html","leaf"],["milk-uberon-0001913.html","milk"],["rhizosphere-envo-00005801.html","rhizosphere"]],"b":[["alkaloids/zwittermicin-a.yaml","zwittermicin A"],["amino_acids_and_peptides/livipeptin.yaml","Livipeptin"],["carbohydrates/tunicamycin.yaml","tunicamycin"],["unclassified/cereulide.yaml","cereulide"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":4,"nb":23,"a":[["bioreactor-envo-00002123.html","bioreactor"],["human-construction-envo-00000070.html","human construction"],["sediment-envo-00002007.html","sediment"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/melanin.yaml","melanin"],["alkaloids/undecylprodigiosin.yaml","undecylprodigiosin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/sapb.yaml","SapB"]]},{"id":"NCBITaxon:378806","l":"Stigmatella aurantiaca DW4/3-1","na":4,"nb":17,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["orchard-envo-00000115.html","orchard"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["polyketides/aurafuron-a.yaml","aurafuron A"],["polyketides/dawenol.yaml","dawenol"],["unclassified/dkxanthene-504.yaml","dkxanthene 504"],["unclassified/dkxanthene-508.yaml","dkxanthene 508"],["unclassified/dkxanthene-518.yaml","dkxanthene 518"],["unclassified/dkxanthene-520.yaml","dkxanthene 520"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":13,"nb":4,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["neutrophil-bto-0000130.html","neutrophil"],["rectum-bto-0001158.html","rectum"],["spleen-bto-0001281.html","spleen"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["alkaloids/tilivalline.yaml","tilivalline"],["amino_acids_and_peptides/colibactin.yaml","colibactin"],["amino_acids_and_peptides/klebsidin.yaml","klebsidin"],["carbohydrates/capsular-polysaccharide-2.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:1397","l":"Niallia circulans","na":12,"nb":4,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["organic-waste-material-envo-00002873.html","organic waste material"],["rhizosphere-envo-00005801.html","rhizosphere"],["cultivated-environment-envo-01000311.html","cultivated environment"],["sludge-envo-00002044.html","sludge"]],"b":[["carbohydrates/butirosin-a.yaml","butirosin A"],["carbohydrates/butirosin-b.yaml","butirosin B"],["carbohydrates/butirosin.yaml","butirosin"],["unclassified/pelgipeptin-b.yaml","Pelgipeptin B"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":10,"nb":4,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["air-conditioning-unit-envo-00002874.html","air conditioning unit"],["leaf-bto-0000713.html","leaf"],["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["unclassified/vacidobactin-a.yaml","vacidobactin A"],["unclassified/vacidobactin-b.yaml","vacidobactin B"],["unclassified/variobactin-a.yaml","variobactin A"],["unclassified/variobactin-b.yaml","variobactin B"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae (strain ATCC 42149 / RIB 40)","na":4,"nb":10,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["mountain-pass-envo-00000084.html","mountain pass"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["fatty_acids/oryzine-a.yaml","oryzine A"],["polyketides/kojic-acid.yaml","kojic acid"],["polyketides/oryzine-b.yaml","oryzine B"],["polyketides/ywa1.yaml","YWA1"],["shikimates_and_phenylpropanoids/2-4-dihydroxy-3-methoxypropiophenone.yaml","2,4'-dihydroxy-3'-methoxypropiophenone"],["shikimates_and_phenylpropanoids/8-methyldiaporthin.yaml","8-methyldiaporthin"]]},{"id":"NCBITaxon:10116","l":"Rattus norvegicus","na":9,"nb":4,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["biotope-envo-00002036.html","biotope"],["farm-envo-00000078.html","farm"],["intestine-environment-envo-2100002.html","intestine environment"],["organic-material-envo-01000155.html","organic material"]],"b":[["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/methylarcyriarubin.yaml","methylarcyriarubin"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]]},{"id":"NCBITaxon:83451","l":"Archangium violaceum","na":7,"nb":4,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["wood-bto-0005516.html","wood"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["plant-litter-envo-01000628.html","plant litter"],["sand-envo-01000017.html","sand"]],"b":[["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["alkaloids/myxochelin-n.yaml","myxochelin N"],["alkaloids/myxochelin-o.yaml","myxochelin O"]]},{"id":"NCBITaxon:1930","l":"Streptomyces scabiei","na":4,"nb":6,"a":[["a10-cell-bto-0002196.html","A10 cell"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"],["amino_acids_and_peptides/thaxtomin-c.yaml","thaxtomin C"],["polyketides/oronofacic-acid.yaml","oronofacic acid"],["unclassified/n-coronafacoyl-l-isoleucine.yaml","N-coronafacoyl-L-isoleucine"],["unclassified/thaxtomin-a.yaml","thaxtomin A"],["unclassified/thaxtomin-b.yaml","thaxtomin B"]]},{"id":"NCBITaxon:1393","l":"Brevibacillus brevis","na":5,"nb":4,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["alkaloids/ulbactin-f.yaml","ulbactin F"],["alkaloids/ulbactin-g.yaml","ulbactin G"],["amino_acids_and_peptides/gramicidin.yaml","gramicidin"],["amino_acids_and_peptides/tyrocidine-a.yaml","tyrocidine A"]]},{"id":"NCBITaxon:479432","l":"Streptosporangium roseum DSM 43021","na":4,"nb":5,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"],["vegetable-garden-soil-envo-00005779.html","vegetable garden soil"]],"b":[["polyketides/benaphthamycin.yaml","benaphthamycin"],["polyketides/ws-79089a.yaml","WS 79089A"],["polyketides/ws-79089b.yaml","WS 79089B"],["polyketides/ws-79089c.yaml","WS 79089C"],["polyketides/ws-79089d.yaml","WS 79089D"]]},{"id":"NCBITaxon:39947","l":"Oryza sativa subsp. japonica","na":4,"nb":4,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["large-river-biome-envo-00000887.html","large river biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"],["river-bed-envo-00000384.html","river bed"]],"b":[["terpenoids/10-oxodepressin.yaml","10-Oxodepressin"],["terpenoids/momilactone-b.yaml","momilactone B"],["terpenoids/oryzalides.yaml","oryzalides"],["terpenoids/phytocassane.yaml","phytocassane"]]},{"id":"NCBITaxon:184914","l":"Corallococcus coralloides","na":35,"nb":3,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["watercourse-envo-00000029.html","watercourse"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["amino_acids_and_peptides/myxovalargin-a.yaml","myxovalargin A"],["polyketides/corallopyronin.yaml","corallopyronin"],["polyketides/phenalamide.yaml","phenalamide"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":25,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-water-body-envo-00001999.html","marine water body"],["sea-water-envo-00002149.html","sea water"],["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["amino_acids_and_peptides/epidermin.yaml","epidermin"],["amino_acids_and_peptides/epilancin-15x.yaml","epilancin 15x"],["amino_acids_and_peptides/pep5.yaml","pep5"]]},{"id":"NCBITaxon:54","l":"Nannocystis exedens","na":22,"nb":3,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["watercourse-envo-00000029.html","watercourse"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["polyketides/phenylnannolone-a.yaml","phenylnannolone A"],["polyketides/phenylnannolone-b.yaml","phenylnannolone B"],["polyketides/phenylnannolone-c.yaml","phenylnannolone C"]]},{"id":"NCBITaxon:33","l":"Myxococcus fulvus","na":21,"nb":3,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"]],"b":[["unclassified/fulvuthiacene-a.yaml","Fulvuthiacene A"],["unclassified/fulvuthiacene-b.yaml","Fulvuthiacene B"],["unclassified/myxothiazol.yaml","myxothiazol"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":17,"nb":3,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["fruit-bto-0000486.html","fruit"],["leaf-po-0025034.html","leaf"],["rhizosphere-envo-00005801.html","rhizosphere"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["amino_acids_and_peptides/polymyxin-b.yaml","polymyxin B"],["amino_acids_and_peptides/polymyxin.yaml","polymyxin"],["unclassified/fusaricidin-b.yaml","fusaricidin B"]]},{"id":"NCBITaxon:1654","l":"Actinomyces","na":3,"nb":13,"a":[["hand-bto-0004668.html","hand"],["vaginal-fluid-bto-0003084.html","vaginal fluid"],["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["alkaloids/lynamicin-a.yaml","lynamicin A"],["alkaloids/lynamicin-d.yaml","lynamicin D"],["amino_acids_and_peptides/cephamycin-c.yaml","cephamycin C"],["amino_acids_and_peptides/glycinocin-a.yaml","glycinocin A"],["carbohydrates/cetoniacytone-a.yaml","cetoniacytone A"],["polyketides/4-hexadecanoyl-3-hydroxy-2-hydroxymethyl-2h-furan-5-one.yaml","4-hexadecanoyl-3-hydroxy-2-(hydroxymethyl)-2H-furan-5-one"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":3,"nb":13,"a":[["city-envo-00000856.html","city"],["cold-environment-envo-01000309.html","cold environment"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/congocidine.yaml","congocidine"],["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK1622","na":3,"nb":12,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"],["amino_acids_and_peptides/myxochromide-a.yaml","myxochromide A"],["amino_acids_and_peptides/myxoprincomide-c506.yaml","myxoprincomide-c506"]]},{"id":"NCBITaxon:28095","l":"Burkholderia gladioli","na":3,"nb":12,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["alkaloids/gladiofungin-a.yaml","gladiofungin A"],["alkaloids/gladiofungin-b.yaml","gladiofungin B"],["alkaloids/toxoflavin.yaml","toxoflavin"],["amino_acids_and_peptides/arsinothricin.yaml","arsinothricin"],["amino_acids_and_peptides/bolagladin-a.yaml","bolagladin A"],["fatty_acids/bongkrekic-acid-2.yaml","bongkrekic acid"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":11,"nb":3,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["fermentation-starter-envo-03600040.html","fermentation starter"],["fruit-bto-0000486.html","fruit"],["mammary-epithelial-cell-bto-0004300.html","mammary epithelial cell"],["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"],["amino_acids_and_peptides/lacticin-z.yaml","lacticin Z"],["amino_acids_and_peptides/nisin-a.yaml","nisin A"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":3,"nb":10,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["amino_acids_and_peptides/lipopeptide-8d1-1.yaml","lipopeptide 8D1-1"],["amino_acids_and_peptides/lipopeptide-8d1-2.yaml","lipopeptide 8D1-2"],["carbohydrates/amicetin.yaml","amicetin"],["carbohydrates/streptothricin-c.yaml","streptothricin C"],["carbohydrates/streptothricin-d.yaml","streptothricin D"],["carbohydrates/streptothricin-e.yaml","streptothricin E"]]},{"id":"NCBITaxon:38","l":"Archangium disciforme","na":7,"nb":3,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["feces-uberon-0001988.html","feces"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["wood-bto-0005516.html","wood"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["alkaloids/myxochelin-a.yaml","myxochelin A"],["amino_acids_and_peptides/tubulysin-a.yaml","tubulysin A"],["amino_acids_and_peptides/tubulysin-h.yaml","tubulysin H"]]},{"id":"NCBITaxon:83460","l":"Allostigmatella erecta","na":7,"nb":3,"a":[["feces-uberon-0001988.html","feces"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["plant-litter-envo-01000628.html","plant litter"],["sand-envo-01000017.html","sand"]],"b":[["alkaloids/aurachin-a.yaml","aurachin A"],["alkaloids/aurachin-c.yaml","aurachin C"],["unclassified/myxochromide-d.yaml","myxochromide D"]]},{"id":"NCBITaxon:32008","l":"Burkholderia","na":3,"nb":6,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["midgut-bto-0000863.html","midgut"]],"b":[["polyketides/necroxime-a.yaml","necroxime A"],["polyketides/necroxime-c.yaml","necroxime C"],["polyketides/necroxime-d.yaml","necroxime D"],["polyketides/thailanstatin-a.yaml","thailanstatin A"],["unclassified/necroxime-b.yaml","necroxime B"],["unclassified/spliceostatin.yaml","spliceostatin"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":5,"nb":3,"a":[["liquid-water-envo-00002006.html","liquid water"],["food-spoiled-foodon-00003366.html","food (spoiled)"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"]],"b":[["alkaloids/cepaciachelin.yaml","cepaciachelin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["terpenoids/hopene.yaml","hopene"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":4,"nb":3,"a":[["stream-envo-00000023.html","stream"],["biome-envo-00000428.html","biome"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["unclassified/leuvalin.yaml","leuvalin"],["unclassified/mutanocyclin.yaml","mutanocyclin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:1120925","l":"Acinetobacter bouvetii DSM 14964 = CIP 107468","na":3,"nb":3,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["alkaloids/butanochelin.yaml","butanochelin"],["alkaloids/pentanochelin.yaml","pentanochelin"],["alkaloids/propanochelin.yaml","propanochelin"]]},{"id":"NCBITaxon:1833","l":"Rhodococcus erythropolis","na":3,"nb":3,"a":[["watercourse-envo-00000029.html","watercourse"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"],["water-scum-envo-00005794.html","water scum"]],"b":[["alkaloids/aurachin-re.yaml","aurachin RE"],["amino_acids_and_peptides/heterobactin-a.yaml","heterobactin A"],["amino_acids_and_peptides/heterobactin-s2.yaml","heterobactin S2"]]},{"id":"NCBITaxon:1961","l":"Streptomyces virginiae","na":3,"nb":3,"a":[["clay-envo-00002982.html","clay"],["plain-envo-00000086.html","plain"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["alkaloids/endophenazine-a.yaml","endophenazine A"],["polyketides/monensin.yaml","monensin"],["unclassified/virginiamycin-s1.yaml","virginiamycin S1"]]},{"id":"NCBITaxon:1883","l":"Streptomyces","na":2,"nb":438,"a":[["crop-bto-0000301.html","crop"],["lab-synthesis-habitatmech-bacdive-0e92e77cd4.html","Lab-synthesis"]],"b":[["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/7-prenylisatin.yaml","7-prenylisatin"],["alkaloids/9-methylstreptimidone.yaml","9-methylstreptimidone"],["alkaloids/anisomycin.yaml","(−)-anisomycin"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"]]},{"id":"NCBITaxon:1886","l":"Streptomyces albidoflavus","na":2,"nb":54,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/anthramycin.yaml","anthramycin"],["alkaloids/diazaquinomycin-f.yaml","diazaquinomycin F"],["alkaloids/diazaquinomycin-g.yaml","diazaquinomycin G"],["alkaloids/holomycin.yaml","holomycin"],["alkaloids/melanin.yaml","melanin"]]},{"id":"NCBITaxon:1911","l":"Streptomyces griseus","na":2,"nb":32,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["alkaloids/cycloheximide.yaml","cycloheximide"],["alkaloids/grixazone-a.yaml","grixazone A"],["alkaloids/iminimycin-a.yaml","iminimycin A"],["alkaloids/iminimycin-b.yaml","iminimycin B"],["alkaloids/indolmycin.yaml","indolmycin"],["alkaloids/melanin.yaml","melanin"]]},{"id":"NCBITaxon:369723","l":"Salinispora tropica CNB-440","na":2,"nb":23,"a":[["coarse-beach-sand-envo-00002148.html","coarse beach sand"],["sand-envo-01000017.html","sand"]],"b":[["alkaloids/lymphostin.yaml","lymphostin"],["alkaloids/lymphostinol.yaml","lymphostinol"],["alkaloids/neolymphostin-b-2.yaml","neolymphostin B"],["alkaloids/neolymphostinol-b.yaml","neolymphostinol B"],["amino_acids_and_peptides/salinosporamide-a.yaml","salinosporamide A"],["fatty_acids/salinipostin-a.yaml","Salinipostin A"]]},{"id":"NCBITaxon:83456","l":"Myxococcus virescens","na":15,"nb":2,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["feces-uberon-0001988.html","feces"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"]],"b":[["alkaloids/bengamide.yaml","bengamide"],["unclassified/myxochromide-c.yaml","myxochromide C"]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":2,"nb":14,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/framycetin.yaml","framycetin"],["carbohydrates/neomycin-c.yaml","neomycin C"],["carbohydrates/paromomycin.yaml","paromomycin"]]},{"id":"NCBITaxon:2013","l":"Nocardiopsis","na":2,"nb":14,"a":[["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"],["alkaloids/k-252a.yaml","K-252a"],["alkaloids/methylpendolmycin.yaml","methylpendolmycin"],["alkaloids/pendolmycin.yaml","pendolmycin"],["amino_acids_and_peptides/tp-1161.yaml","TP-1161"],["polyketides/apoptolidin.yaml","apoptolidin"]]},{"id":"NCBITaxon:102234","l":"Cyanobacterium","na":12,"nb":2,"a":[["cecum-bto-0000166.html","cecum"],["colon-bto-0000269.html","colon"],["gut-bto-0000545.html","gut"],["head-bto-0000282.html","head"],["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"]],"b":[["amino_acids_and_peptides/aeruginosin-98-c.yaml","aeruginosin 98-C"],["unclassified/nostopeptolide-a2.yaml","nostopeptolide A2"]]},{"id":"NCBITaxon:271848","l":"Burkholderia thailandensis E264","na":2,"nb":12,"a":[["needle-bto-0000917.html","needle"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["alkaloids/malleobactin-b.yaml","malleobactin B"],["alkaloids/malleobactin-d.yaml","malleobactin D"],["polyketides/malleicyprol.yaml","malleicyprol"],["polyketides/malleilactone.yaml","malleilactone"],["polyketides/thailandamide-lactone.yaml","thailandamide lactone"],["polyketides/thailandamide.yaml","thailandamide"]]},{"id":"NCBITaxon:457427","l":"Streptomyces himastatinicus ATCC 53653","na":9,"nb":2,"a":[["bay-envo-00000032.html","bay"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["saline-water-envo-00002010.html","saline water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["food-product-foodon-00001002.html","food product"]],"b":[["alkaloids/9-methylstreptimidone.yaml","9-methylstreptimidone"],["amino_acids_and_peptides/himastatin.yaml","himastatin"]]},{"id":"NCBITaxon:500485","l":"Penicillium rubens Wisconsin 54-1255","na":2,"nb":9,"a":[["finger-bto-0004669.html","finger"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["alkaloids/dehydrohistidyltryptophanyldiketopiperazine.yaml","dehydrohistidyltryptophanyldiketopiperazine"],["alkaloids/glandicoline-a.yaml","glandicoline A"],["alkaloids/glandicoline-b.yaml","glandicoline B"],["alkaloids/meleagrine.yaml","meleagrine"],["polyketides/sorbicillin.yaml","sorbicillin"],["terpenoids/conidiogenone.yaml","conidiogenone"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":8,"nb":2,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["lab-synthesis-habitatmech-bacdive-0e92e77cd4.html","Lab-synthesis"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["oil-spill-envo-00002061.html","oil spill"],["temperate-envo-01000206.html","temperate"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"],["carbohydrates/oxetanocin-a.yaml","oxetanocin A"]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":8,"nb":2,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["terpenoids/xanthan.yaml","xanthan"]]},{"id":"NCBITaxon:345341","l":"Kutzneria sp. 744","na":2,"nb":8,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"],["clay-envo-00002982.html","clay"]],"b":[["amino_acids_and_peptides/kutzneride-6.yaml","Kutzneride 6"],["unclassified/kutzneride-1.yaml","Kutzneride 1"],["unclassified/kutzneride-2.yaml","Kutzneride 2"],["unclassified/kutzneride-3.yaml","Kutzneride 3"],["unclassified/kutzneride-4.yaml","Kutzneride 4"],["unclassified/kutzneride-5.yaml","Kutzneride 5"]]},{"id":"NCBITaxon:331117","l":"Aspergillus fischeri NRRL 181","na":2,"nb":7,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["terpenoids/compound-5.yaml","compound 5"],["terpenoids/compound-6-2.yaml","compound 6"],["terpenoids/compound-7a.yaml","compound 7a"],["terpenoids/compound-8-2.yaml","compound 8"],["terpenoids/sesterfisheric-acid.yaml","sesterfisheric acid"],["terpenoids/sesterfisherol.yaml","sesterfisherol"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":7,"nb":2,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["liquid-water-envo-00002006.html","liquid water"],["crown-gall-bto-0000303.html","crown gall"],["finger-bto-0004669.html","finger"],["resting-cell-bto-0001170.html","resting cell"],["water-scum-envo-00005794.html","water scum"]],"b":[["alkaloids/agrobactin.yaml","agrobactin"],["amino_acids_and_peptides/aztreonam.yaml","aztreonam"]]},{"id":"NCBITaxon:391037","l":"Salinispora arenicola CNS-205","na":2,"nb":7,"a":[["beach-sand-envo-00002138.html","beach sand"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["alkaloids/lymphostin.yaml","lymphostin"],["alkaloids/lymphostinol.yaml","lymphostinol"],["alkaloids/neolymphostin-b.yaml","neolymphostin b"],["alkaloids/neolymphostinol-b.yaml","neolymphostinol B"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/cyclomarin-d.yaml","cyclomarin D"]]},{"id":"NCBITaxon:63737","l":"Nostoc punctiforme PCC 73102","na":2,"nb":7,"a":[["heterocyst-bto-0000600.html","heterocyst"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["amino_acids_and_peptides/microviridin-n3.yaml","microviridin N3"],["amino_acids_and_peptides/microviridin-n4.yaml","microviridin N4"],["amino_acids_and_peptides/microviridin-n6.yaml","microviridin N6"],["amino_acids_and_peptides/microviridin-n7.yaml","microviridin N7"],["amino_acids_and_peptides/microviridin-n8.yaml","microviridin N8"],["amino_acids_and_peptides/microviridin-n9.yaml","microviridin N9"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":6,"nb":2,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"],["sludge-envo-00002044.html","sludge"],["forested-area-envo-00000111.html","forested area"],["scrubland-area-envo-00000300.html","scrubland area"],["soil-envo-00001998.html","soil"]],"b":[["amino_acids_and_peptides/cupriachelin.yaml","cupriachelin"],["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"]]},{"id":"NCBITaxon:457412","l":"Ruminococcus sp. 5_1_39BFAA","na":2,"nb":6,"a":[["animal-litter-envo-00002191.html","animal litter"],["tropical-envo-01000204.html","tropical"]],"b":[["alkaloids/pzn10.yaml","PZN10"],["alkaloids/pzn11.yaml","PZN11"],["alkaloids/pzn5.yaml","PZN5"],["alkaloids/pzn6.yaml","PZN6"],["alkaloids/pzn7.yaml","PZN7"],["alkaloids/pzn9.yaml","PZN9"]]},{"id":"NCBITaxon:4577","l":"Zea mays","na":2,"nb":6,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["alkaloids/dimboa.yaml","DIMBOA"],["polyketides/emodin.yaml","emodin"],["terpenoids/zealexin-a1.yaml","zealexin A1"],["terpenoids/zealexin-b3.yaml","zealexin B3"],["terpenoids/zealexin-c2.yaml","zealexin C2"],["unclassified/aflatoxin.yaml","aflatoxin"]]},{"id":"NCBITaxon:1465","l":"Brevibacillus laterosporus","na":2,"nb":5,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["amino_acids_and_peptides/bogorol-a.yaml","bogorol A"],["amino_acids_and_peptides/tauramamide.yaml","tauramamide"],["shikimates_and_phenylpropanoids/basiliskamide-a.yaml","Basiliskamide A"],["unclassified/basiliskamide-b.yaml","Basiliskamide B"],["unclassified/laterocidine.yaml","laterocidine"]]},{"id":"NCBITaxon:497689","l":"Streptomyces sp. SNA15896","na":2,"nb":5,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["unclassified/sw-163c.yaml","SW-163C"],["unclassified/sw-163e.yaml","SW-163E"],["unclassified/sw-163f.yaml","SW-163F"],["unclassified/sw-163g.yaml","SW-163G"],["unclassified/uk-63598.yaml","UK 63598"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":5,"nb":2,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["pseudostem-bto-0005992.html","pseudostem"],["seedling-bto-0001228.html","seedling"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["soil-envo-00001998.html","soil"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["terpenoids/mk-8.yaml","MK-8"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":5,"nb":2,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"],["feces-uberon-0001988.html","feces"],["rectum-bto-0001158.html","rectum"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["alkaloids/vibriobactin-2.yaml","vibriobactin"],["alkaloids/vibriobactin.yaml","vibriobactin"]]},{"id":"NCBITaxon:1224742","l":"Vibrio campbellii ATCC BAA-1116","na":2,"nb":4,"a":[["kidney-bto-0000671.html","kidney"],["renal-cortex-bto-0001166.html","renal cortex"]],"b":[["polyketides/amphi-enterobactin-1.yaml","Amphi-enterobactin 1"],["polyketides/amphi-enterobactin-2.yaml","amphi-enterobactin 2"],["polyketides/amphi-enterobactin-3.yaml","amphi-enterobactin 3"],["polyketides/amphi-enterobactin-4.yaml","amphi-enterobactin 4"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":4,"nb":2,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["carcass-envo-00002033.html","carcass"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["sludge-envo-00002044.html","sludge"]],"b":[["alkaloids/biotin.yaml","biotin"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":4,"nb":2,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["unclassified/andalusicin-a.yaml","andalusicin A"]]},{"id":"NCBITaxon:305","l":"Ralstonia solanacearum","na":4,"nb":2,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"],["pseudostem-bto-0005992.html","pseudostem"],["xylem-bto-0001468.html","xylem"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"],["unclassified/micacocidin.yaml","micacocidin"]]},{"id":"NCBITaxon:398578","l":"Delftia acidovorans SPH-1","na":4,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["large-river-biome-envo-00000887.html","large river biome"],["sewage-envo-00002018.html","sewage"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["amino_acids_and_peptides/delftibactin-a.yaml","delftibactin A"],["amino_acids_and_peptides/delftibactin-b.yaml","delftibactin B"]]},{"id":"NCBITaxon:426418","l":"Pyrenophora tritici-repentis Pt-1C-BFP","na":2,"nb":4,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["unclassified/triticone-a.yaml","triticone A"],["unclassified/triticone-b.yaml","triticone B"],["unclassified/triticone-c.yaml","triticone C"],["unclassified/triticone-f.yaml","triticone F"]]},{"id":"NCBITaxon:479433","l":"Catenulispora acidiphila DSM 44928","na":4,"nb":2,"a":[["filament-bto-0000463.html","filament"],["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["amino_acids_and_peptides/catenulipeptin.yaml","catenulipeptin"],["shikimates_and_phenylpropanoids/cacibiocin-b.yaml","cacibiocin B"]]},{"id":"NCBITaxon:6239","l":"Caenorhabditis elegans","na":2,"nb":4,"a":[["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["alkaloids/biotin.yaml","biotin"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/itaconic-acid.yaml","itaconic acid"],["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"]]},{"id":"NCBITaxon:703612","l":"Bacillus subtilis subsp. spizizenii ATCC 6633","na":2,"nb":4,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["amino_acids_and_peptides/mycosubtilin.yaml","mycosubtilin"],["amino_acids_and_peptides/rhizocticin-a.yaml","rhizocticin A"],["amino_acids_and_peptides/subtilin.yaml","subtilin"],["amino_acids_and_peptides/subtilosin-a.yaml","subtilosin A"]]},{"id":"NCBITaxon:1129","l":"Synechococcus","na":2,"nb":3,"a":[["column-bto-0005692.html","column"],["hemolymph-bto-0000572.html","hemolymph"]],"b":[["alkaloids/synechobactin-a.yaml","synechobactin A"],["alkaloids/synechobactin-b.yaml","synechobactin B"],["alkaloids/synechobactin-c.yaml","synechobactin C"]]},{"id":"NCBITaxon:1218948","l":"Pseudomonas fluorescens PF5","na":3,"nb":2,"a":[["large-river-biome-envo-00000887.html","large river biome"],["human-construction-envo-00000070.html","human construction"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["alkaloids/pyoluteorin.yaml","pyoluteorin"],["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":2,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:1932","l":"Streptomyces tendae","na":2,"nb":3,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"],["polyketides/lysolipin-i.yaml","lysolipin I"],["terpenoids/geosmin.yaml","(−)-geosmin"]]},{"id":"NCBITaxon:1938","l":"Streptomyces viridochromogenes","na":2,"nb":3,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["amino_acids_and_peptides/glycinocin-a.yaml","glycinocin A"],["carbohydrates/avilamycin-a.yaml","avilamycin A"],["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"]]},{"id":"NCBITaxon:2021","l":"Thermobifida fusca","na":2,"nb":3,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["amino_acids_and_peptides/fuscachelin-a.yaml","Fuscachelin A"],["amino_acids_and_peptides/fuscachelin-b.yaml","Fuscachelin B"],["amino_acids_and_peptides/fuscachelin-c.yaml","Fuscachelin C"]]},{"id":"NCBITaxon:269800","l":"","na":2,"nb":3,"a":[["compost-envo-00002170.html","compost"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["amino_acids_and_peptides/fuscachelin-a.yaml","Fuscachelin A"],["amino_acids_and_peptides/fuscachelin-b.yaml","Fuscachelin B"],["amino_acids_and_peptides/fuscachelin-c.yaml","Fuscachelin C"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":3,"nb":2,"a":[["bile-bto-0000121.html","bile"],["rectum-bto-0001158.html","rectum"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["alkaloids/acinetobactin.yaml","acinetobactin"],["amino_acids_and_peptides/fimsbactin-a.yaml","fimsbactin A"]]},{"id":"NCBITaxon:556","l":"Dickeya chrysanthemi","na":2,"nb":3,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["amino_acids_and_peptides/chrysobactin.yaml","chrysobactin"],["amino_acids_and_peptides/dichrysobactin.yaml","dichrysobactin"],["unclassified/cyclic-trichrysobactin.yaml","cyclic trichrysobactin"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":3,"nb":2,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["amino_acids_and_peptides/vibrioferrin-2.yaml","vibrioferrin"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:1121302","l":"Clostridium cavendishii DSM 21758","na":2,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["groundwater-envo-01001004.html","groundwater"]],"b":[["alkaloids/closoxazole-a.yaml","closoxazole A"],["alkaloids/closoxazole-b.yaml","closoxazole B"]]},{"id":"NCBITaxon:176299","l":"Agrobacterium fabrum (strain C58 / ATCC 33970)","na":2,"nb":2,"a":[["human-construction-envo-00000070.html","human construction"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["amino_acids_and_peptides/fabrubactin-a.yaml","fabrubactin A"],["amino_acids_and_peptides/fabrubactin-b.yaml","fabrubactin B"]]},{"id":"NCBITaxon:316274","l":"Herpetosiphon aurantiacus DSM 785","na":2,"nb":2,"a":[["filament-bto-0000463.html","filament"],["joint-bto-0001686.html","joint"]],"b":[["alkaloids/auriculamide.yaml","auriculamide"],["terpenoids/o-methylkolavelool.yaml","(+)-O-methylkolavelool"]]},{"id":"NCBITaxon:394096","l":"Hyalangium minutum","na":2,"nb":2,"a":[["wood-bto-0005516.html","wood"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["polyketides/nystatin-a1.yaml","nystatin A1"],["unclassified/myxochromide-d-2.yaml","myxochromide D"]]},{"id":"NCBITaxon:394503","l":"","na":2,"nb":2,"a":[["agricultural-waste-material-envo-01000371.html","agricultural waste material"],["compost-envo-00002170.html","compost"]],"b":[["alkaloids/closthioamide.yaml","closthioamide"],["amino_acids_and_peptides/rc-aip1.yaml","Rc-AIP1"]]},{"id":"NCBITaxon:444103","l":"Streptomyces sp. CNQ-509","na":2,"nb":2,"a":[["colonic-cancer-cell-bto-0000586.html","colonic cancer cell"],["vas-efferens-bto-0002254.html","vas efferens"]],"b":[["alkaloids/marinophenazine-a.yaml","marinophenazine A"],["alkaloids/phenaziterpene-a.yaml","phenaziterpene A"]]},{"id":"NCBITaxon:47879","l":"Pseudomonas corrugata","na":2,"nb":2,"a":[["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["wilt-habitatmech-bacdive-4c48b5114d.html","Wilt"]],"b":[["amino_acids_and_peptides/corpeptin-a.yaml","corpeptin A"],["amino_acids_and_peptides/corpeptin-b.yaml","corpeptin B"]]},{"id":"NCBITaxon:543728","l":"Variovorax paradoxus S110","na":2,"nb":2,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"]],"b":[["unclassified/vacidobactin-a.yaml","vacidobactin A"],["unclassified/vacidobactin-b.yaml","vacidobactin B"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":2,"nb":2,"a":[["feces-uberon-0001988.html","feces"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["alkaloids/yersiniabactin.yaml","yersiniabactin"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":2,"nb":2,"a":[["watercourse-envo-00000029.html","watercourse"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["amino_acids_and_peptides/vibrioferrin-2.yaml","vibrioferrin"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:1177","l":"Nostoc","na":1,"nb":41,"a":[["inflorescence-bto-0000628.html","inflorescence"]],"b":[["alkaloids/nocuolin-a.yaml","Nocuolin A"],["amino_acids_and_peptides/anabaenopeptin-802.yaml","anabaenopeptin 802"],["amino_acids_and_peptides/heinamide-a1.yaml","heinamide A1"],["amino_acids_and_peptides/heinamide-a2.yaml","heinamide A2"],["amino_acids_and_peptides/heinamide-a3.yaml","heinamide A3"],["amino_acids_and_peptides/heinamide-b1.yaml","heinamide B1"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":33,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["pond-water-envo-00002228.html","pond water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["water-body-envo-00000063.html","water body"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:243265","l":"Photorhabdus laumondii subsp. laumondii TTO1","na":1,"nb":21,"a":[["carcass-bto-0001965.html","carcass"]],"b":[["amino_acids_and_peptides/gamexpeptide-c.yaml","gamexpeptide C"],["amino_acids_and_peptides/luminmycin-a.yaml","luminmycin A"],["amino_acids_and_peptides/ririwpeptide-a.yaml","ririwpeptide A"],["amino_acids_and_peptides/ririwpeptide-b.yaml","ririwpeptide B"],["carbohydrates/oligosaccharide-1-glcnac-1-4-1-6-anhydro-glcnac.yaml","oligosaccharide 1 (GlcNAc-β(1-4)-1,6-anhydro-β-GlcNAc)"],["carbohydrates/oligosaccharide-2-glcnac-1-4-glcnac-1-4-1-6-anhydro-glcnac.yaml","oligosaccharide 2 (GlcNAc-β(1-4)-GlcNAc-β(1-4)-1,6-anhydro-β-GlcNAc)"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":1,"nb":20,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/c-3-sulfonylated-derivative.yaml","C-3 sulfonylated derivative"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["alkaloids/n-n-dioxide-containing-derivate.yaml","N,N-dioxide containing derivate"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":19,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["bone-element-uberon-0001474.html","bone element"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["amino_acids_and_peptides/bacitracin.yaml","bacitracin"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":17,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["hospital-envo-00002173.html","hospital"],["egg-food-product-foodon-00001274.html","egg food product"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["amino_acids_and_peptides/enterocin-a.yaml","enterocin A"]]},{"id":"NCBITaxon:455632","l":"Streptomyces griseus subsp. griseus NBRC 13350","na":1,"nb":17,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["alkaloids/grixazone-a.yaml","grixazone A"],["alkaloids/iminimycin-a.yaml","iminimycin A"],["alkaloids/iminimycin-b.yaml","iminimycin B"],["alkaloids/melanin.yaml","melanin"],["carbohydrates/streptomycin.yaml","streptomycin"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":16,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":14,"nb":1,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["compost-envo-00002170.html","compost"],["organic-waste-material-envo-00002873.html","organic waste material"],["larva-bto-0000707.html","larva"],["rhizosphere-envo-00005801.html","rhizosphere"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]]},{"id":"NCBITaxon:29488","l":"Photorhabdus luminescens","na":1,"nb":14,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["alkaloids/photobactin.yaml","photobactin"],["alkaloids/pzn5.yaml","PZN5"],["amino_acids_and_peptides/gamexpeptide-c.yaml","gamexpeptide C"],["amino_acids_and_peptides/glidobactin.yaml","glidobactin"],["amino_acids_and_peptides/luminmycin-a.yaml","luminmycin A"],["polyketides/photopyrone-a.yaml","photopyrone A"]]},{"id":"NCBITaxon:1357","l":"Lactococcus","na":13,"nb":1,"a":[["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["ileum-bto-0000620.html","ileum"],["intestine-bto-0000648.html","intestine"],["mouth-bto-0001090.html","mouth"]],"b":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":1,"nb":13,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["alkaloids/holomycin.yaml","holomycin"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/2-formyloxymethylclavam.yaml","2-formyloxymethylclavam"],["amino_acids_and_peptides/2-hydroxymethylclavam.yaml","2-hydroxymethylclavam"],["amino_acids_and_peptides/alanylclavam.yaml","alanylclavam"],["amino_acids_and_peptides/cephamycin-c.yaml","cephamycin C"]]},{"id":"NCBITaxon:406817","l":"Xenorhabdus nematophila ATCC 19061","na":1,"nb":13,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["alkaloids/nematophin.yaml","nematophin"],["amino_acids_and_peptides/rhabdopeptide-1.yaml","rhabdopeptide 1"],["amino_acids_and_peptides/rhabdopeptide-2.yaml","rhabdopeptide 2"],["amino_acids_and_peptides/rhabdopeptide-3.yaml","rhabdopeptide 3"],["amino_acids_and_peptides/rhabdopeptide-4.yaml","rhabdopeptide 4"],["amino_acids_and_peptides/xenortide-a.yaml","xenortide A"]]},{"id":"NCBITaxon:104268","l":"Tenacibaculum mesophilum","na":12,"nb":1,"a":[["bay-envo-00000032.html","bay"],["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"],["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"]],"b":[["fatty_acids/bisucaberin-b.yaml","bisucaberin B"]]},{"id":"NCBITaxon:321614","l":"","na":1,"nb":12,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["alkaloids/phomacin-d.yaml","phomacin D"],["alkaloids/phomacin-e.yaml","phomacin E"],["polyketides/betaenone-b.yaml","betaenone B"],["polyketides/betaenone-c.yaml","betaenone C"],["polyketides/compound-3-2.yaml","compound 3"],["polyketides/compound-5-2.yaml","compound 5"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":11,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"],["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["laboratory-facility-envo-01001406.html","laboratory facility"],["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["bone-element-uberon-0001474.html","bone element"],["juvenile-bto-0002168.html","juvenile"]],"b":[["amino_acids_and_peptides/cutimycin.yaml","cutimycin"]]},{"id":"NCBITaxon:229533","l":"Fusarium graminearum PH-1","na":1,"nb":11,"a":[["soil-envo-00001998.html","soil"]],"b":[["alkaloids/chrysogine.yaml","chrysogine"],["amino_acids_and_peptides/fusaoctaxin-a.yaml","fusaoctaxin A"],["polyketides/aurofusarin.yaml","aurofusarin"],["polyketides/prolipyrone-b.yaml","prolipyrone B"],["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"],["terpenoids/15-acetyldeoxynivalenol.yaml","15-acetyldeoxynivalenol"]]},{"id":"NCBITaxon:38033","l":"Chaetomium globosum","na":1,"nb":11,"a":[["desert-sand-envo-00005800.html","desert sand"]],"b":[["alkaloids/chaetoglobosin-c.yaml","chaetoglobosin C"],["alkaloids/cytoglobosin-x.yaml","cytoglobosin X"],["polyketides/11-epichaetomugilin-a.yaml","11-epichaetomugilin A"],["polyketides/azanigerone-a.yaml","azanigerone A"],["polyketides/chaetoviridin-e.yaml","chaetoviridin E"],["polyketides/shanorellin.yaml","shanorellin"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":1,"nb":11,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["amino_acids_and_peptides/ferrichrome.yaml","ferrichrome"],["polyketides/1-2-3-5-10-tetrahydroxy-7-methoxy-4-oxo-1-2-3-4-tetrahydroanthracen-2-yl-pentane.yaml","1-(2,3,5,10-tetrahydroxy-7-methoxy-4-oxo-1,2,3,4-tetrahydroanthracen-2-yl)pentane-2,4-dione"],["polyketides/azanigerone-a.yaml","azanigerone A"],["polyketides/campyrone-b.yaml","campyrone B"],["polyketides/desmethyl-tan-1612.yaml","desmethyl TAN-1612"],["polyketides/fumonisin-b2.yaml","fumonisin B2"]]},{"id":"NCBITaxon:111805","l":"Actinomadura pelletieri","na":10,"nb":1,"a":[["lake-envo-00000020.html","lake"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["foot-bto-0000476.html","foot"],["rhizosphere-envo-00005801.html","rhizosphere"],["organic-material-envo-01000155.html","organic material"]],"b":[["alkaloids/undecylprodigiosin-2.yaml","undecylprodigiosin"]]},{"id":"NCBITaxon:1716","l":"Corynebacterium","na":10,"nb":1,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["ileum-bto-0000620.html","ileum"],["juvenile-bto-0002168.html","juvenile"],["mucosa-bto-0000886.html","mucosa"],["nectar-bto-0000537.html","nectar"]],"b":[["alkaloids/corynecin-iii.yaml","corynecin III"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa PAO1","na":1,"nb":10,"a":[["style-bto-0001313.html","style"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:543","l":"Enterobacteriaceae","na":10,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"],["midgut-bto-0000863.html","midgut"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":9,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["fresh-water-envo-00002011.html","fresh water"],["river-envo-00000022.html","river"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["alkaloids/molybdenum-cofactor.yaml","molybdenum cofactor"]]},{"id":"NCBITaxon:1817","l":"Nocardia","na":1,"nb":9,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["alkaloids/rebeccamycin.yaml","rebeccamycin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/nocathiacin-i.yaml","nocathiacin I"],["amino_acids_and_peptides/ristocetin-a.yaml","Ristocetin A"],["amino_acids_and_peptides/vancomycin.yaml","vancomycin"],["polyketides/macbecin-ii.yaml","macbecin II"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":9,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["mud-envo-01000001.html","mud"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":8,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["alimentary-canal-bto-0000058.html","alimentary canal"],["blood-bto-0000089.html","blood"],["small-intestine-bto-0000651.html","small intestine"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["geographic-feature-envo-00000000.html","geographic feature"]],"b":[["amino_acids_and_peptides/salivaricin-d.yaml","salivaricin D"]]},{"id":"NCBITaxon:1836","l":"Saccharopolyspora erythraea","na":1,"nb":8,"a":[["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["amino_acids_and_peptides/erythrochelin.yaml","erythrochelin"],["polyketides/3-3-diflaviolin.yaml","3,3'-diflaviolin"],["polyketides/erythromycin-a.yaml","erythromycin A"],["polyketides/erythromycin-b.yaml","erythromycin B"],["polyketides/flaviolin-rhamnoside.yaml","flaviolin rhamnoside"],["polyketides/flaviolin.yaml","flaviolin"]]},{"id":"NCBITaxon:1908","l":"Streptomyces globisporus","na":1,"nb":8,"a":[["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["polyketides/c-1027-chromophore.yaml","C-1027 chromophore"],["polyketides/c-1027.yaml","C-1027"],["polyketides/landomycin-a.yaml","landomycin A"],["polyketides/nonactin.yaml","nonactin"],["polyketides/prejadomycin.yaml","prejadomycin"],["polyketides/tetranactin.yaml","tetranactin"]]},{"id":"NCBITaxon:326423","l":"Bacillus velezensis FZB42","na":1,"nb":8,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["polyketides/bacillaene.yaml","bacillaene"],["polyketides/difficidin.yaml","difficidin"],["polyketides/macrolactin-h.yaml","macrolactin H"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:420953","l":"Paraburkholderia megapolitana","na":1,"nb":8,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["amino_acids_and_peptides/megapolibactin-a.yaml","megapolibactin A"],["amino_acids_and_peptides/megapolibactin-acyc.yaml","megapolibactin Acyc"],["amino_acids_and_peptides/megapolibactin-b.yaml","megapolibactin B"],["amino_acids_and_peptides/megapolibactin-c.yaml","megapolibactin C"],["amino_acids_and_peptides/megapolibactin-d.yaml","megapolibactin D"],["amino_acids_and_peptides/megapolibactin-e.yaml","megapolibactin E"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":8,"nb":1,"a":[["beach-envo-00000091.html","beach"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["sea-sand-envo-00002118.html","sea sand"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["polyketides/haliamide.yaml","haliamide"]]},{"id":"NCBITaxon:680198","l":"Streptomyces scabiei 87.22","na":1,"nb":8,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["alkaloids/rotihibin-a.yaml","rotihibin A"],["amino_acids_and_peptides/bottromycin-a2.yaml","bottromycin A2"],["amino_acids_and_peptides/edha.yaml","EDHA"],["amino_acids_and_peptides/scabichelin.yaml","scabichelin"],["amino_acids_and_peptides/thaxtomin-c.yaml","thaxtomin C"],["unclassified/n-coronafacoyl-l-isoleucine.yaml","N-coronafacoyl-L-isoleucine"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":7,"nb":1,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["farm-envo-00000078.html","farm"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["unclassified/rhodochelin.yaml","rhodochelin"]]},{"id":"NCBITaxon:1044","l":"Erythrobacter longus","na":7,"nb":1,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["small-river-biome-envo-00000890.html","small river biome"],["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["biofilm-material-envo-01000156.html","biofilm material"]],"b":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]]},{"id":"NCBITaxon:83455","l":"Myxococcus stipitatus","na":7,"nb":1,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["plant-litter-envo-01000628.html","plant litter"],["sand-envo-01000017.html","sand"]],"b":[["polyketides/phenalamide-a2.yaml","phenalamide A2"]]},{"id":"NCBITaxon:1069","l":"Rhodomicrobium vannielii","na":6,"nb":1,"a":[["lake-envo-00000020.html","lake"],["stream-envo-00000023.html","stream"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["rhizosphere-envo-00005801.html","rhizosphere"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["terpenoids/carotene.yaml","β-carotene"]]},{"id":"NCBITaxon:1311","l":"Streptococcus agalactiae","na":6,"nb":1,"a":[["kidney-bto-0000671.html","kidney"],["milk-uberon-0001913.html","milk"],["oropharynx-bto-0005257.html","oropharynx"],["urine-bto-0001419.html","urine"],["urogenital-system-bto-0003091.html","urogenital system"],["vagina-bto-0000243.html","vagina"]],"b":[["carbohydrates/capsular-polysaccharide-3.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:205922","l":"Pseudomonas fluorescens Pf0-1","na":6,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["cold-environment-envo-01000309.html","cold environment"],["microbial-mat-material-envo-01000157.html","microbial mat material"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"],["agricultural-soil-envo-00002259.html","agricultural soil"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["unclassified/gacamide-a.yaml","gacamide A"]]},{"id":"NCBITaxon:278992","l":"Streptomyces ambofaciens ATCC 23877","na":1,"nb":6,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["alkaloids/congocidine.yaml","congocidine"],["polyketides/spiramycin.yaml","spiramycin"],["polyketides/stambomycin-a.yaml","stambomycin A"],["polyketides/stambomycin-b.yaml","stambomycin B"],["polyketides/stambomycin-c.yaml","stambomycin C"],["polyketides/stambomycin-d.yaml","stambomycin D"]]},{"id":"NCBITaxon:37632","l":"Amycolatopsis sp.","na":1,"nb":6,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["amino_acids_and_peptides/ristocetin-a.yaml","Ristocetin A"],["polyketides/rifamorpholine-a.yaml","rifamorpholine A"],["polyketides/rifamorpholine-b.yaml","rifamorpholine B"],["polyketides/rifamorpholine-c.yaml","rifamorpholine C"],["polyketides/rifamorpholine-d.yaml","rifamorpholine D"],["polyketides/rifamorpholine-e.yaml","rifamorpholine E"]]},{"id":"NCBITaxon:446","l":"Legionella pneumophila","na":6,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["hospital-envo-00002173.html","hospital"],["macrophage-bto-0000801.html","macrophage"],["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["fatty_acids/lipopolysaccharide.yaml","lipopolysaccharide"]]},{"id":"NCBITaxon:5530","l":"Metarhizium anisopliae","na":1,"nb":6,"a":[["soil-envo-00001998.html","soil"]],"b":[["alkaloids/ng-391.yaml","NG-391"],["amino_acids_and_peptides/serinocyclin-a.yaml","serinocyclin A"],["amino_acids_and_peptides/serinocyclin-b.yaml","serinocyclin B"],["fatty_acids/baa.yaml","BAA"],["fatty_acids/bab.yaml","BAB"],["unclassified/destruxin-a.yaml","destruxin A"]]},{"id":"NCBITaxon:115828","l":"Streptomyces maritimus","na":5,"nb":1,"a":[["farm-envo-00000078.html","farm"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["plain-envo-00000086.html","plain"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["terpenoids/enterocin.yaml","enterocin"]]},{"id":"NCBITaxon:1275","l":"Kocuria rosea","na":5,"nb":1,"a":[["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["marine-environment-envo-01000320.html","marine environment"],["oil-spill-envo-00002061.html","oil spill"],["painting-habitatmech-bacdive-0bfb662164.html","Painting"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["amino_acids_and_peptides/kocurin.yaml","kocurin"]]},{"id":"NCBITaxon:1292","l":"Staphylococcus warneri","na":5,"nb":1,"a":[["neonate-bto-0001762.html","neonate"],["skin-of-body-uberon-0002097.html","skin of body"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["amino_acids_and_peptides/nukacin-isk-1.yaml","nukacin ISK-1"]]},{"id":"NCBITaxon:168695","l":"Salinispora tropica","na":1,"nb":5,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["alkaloids/lymphostin.yaml","lymphostin"],["amino_acids_and_peptides/salinosporamide-a.yaml","salinosporamide A"],["polyketides/lomaiviticin-a.yaml","lomaiviticin A"],["polyketides/sporolide-b.yaml","sporolide B"],["unclassified/salinilactam.yaml","salinilactam"]]},{"id":"NCBITaxon:168697","l":"Salinispora arenicola","na":1,"nb":5,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["amino_acids_and_peptides/cyclomarin-d.yaml","cyclomarin D"],["polyketides/arenimycin-a.yaml","arenimycin A"],["polyketides/rifamycin-sv.yaml","rifamycin SV"],["unclassified/emericellamide-a.yaml","emericellamide A"],["unclassified/emericellamide-b.yaml","emericellamide B"]]},{"id":"NCBITaxon:29303","l":"Streptomyces cattleya","na":1,"nb":5,"a":[["clay-envo-00002982.html","clay"]],"b":[["amino_acids_and_peptides/cattlecin.yaml","cattlecin"],["amino_acids_and_peptides/clavulanic-acid.yaml","clavulanic acid"],["amino_acids_and_peptides/ethynylserine.yaml","β-ethynylserine"],["amino_acids_and_peptides/thienamycin.yaml","thienamycin"],["terpenoids/cattleyene.yaml","cattleyene"]]},{"id":"NCBITaxon:43","l":"Cystobacter fuscus","na":1,"nb":5,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"]],"b":[["amino_acids_and_peptides/cystomanamide-a.yaml","cystomanamide A"],["amino_acids_and_peptides/cystomanamide-b.yaml","cystomanamide B"],["amino_acids_and_peptides/cystomanamide-c.yaml","cystomanamide C"],["amino_acids_and_peptides/cystomanamide-d.yaml","cystomanamide D"],["unclassified/cystothiazole-a.yaml","cystothiazole A"]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":1,"nb":5,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["alkaloids/9-deoxy-tilivalline.yaml","9-deoxy tilivalline"],["alkaloids/dehydro-tilivalline.yaml","dehydro tilivalline"],["alkaloids/dihydroxy-dehydro-tilivalline.yaml","dihydroxy-dehydro tilivalline"],["alkaloids/dihydroxy-tilivalline.yaml","dihydroxy tilivalline"],["alkaloids/tilivalline.yaml","tilivalline"]]},{"id":"NCBITaxon:95486","l":"Burkholderia cenocepacia","na":5,"nb":1,"a":[["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["unclassified/ornibactin-c8.yaml","ornibactin C8"]]},{"id":"NCBITaxon:1038928","l":"Streptomyces xinghaiensis","na":1,"nb":4,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["alkaloids/dixiamycin-a.yaml","dixiamycin A"],["alkaloids/xiamycin-a.yaml","xiamycin A"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"],["polyketides/oligomycin.yaml","oligomycin"]]},{"id":"NCBITaxon:1827","l":"Rhodococcus ","na":4,"nb":1,"a":[["nectar-bto-0000537.html","nectar"],["pitcher-bto-0001069.html","pitcher"],["small-intestine-bto-0000651.html","small intestine"],["stem-bto-0001300.html","stem"]],"b":[["alkaloids/corynecin-iii.yaml","corynecin III"]]},{"id":"NCBITaxon:1965334","l":"Cystobacter sp.","na":1,"nb":4,"a":[["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["unclassified/vioprolide-a.yaml","vioprolide A"],["unclassified/vioprolide-b.yaml","vioprolide B"],["unclassified/vioprolide-c.yaml","vioprolide C"],["unclassified/vioprolide-d.yaml","vioprolide D"]]},{"id":"NCBITaxon:1967","l":"Streptomyces kanamyceticus","na":1,"nb":4,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["amino_acids_and_peptides/gausemycin-a.yaml","gausemycin A"],["amino_acids_and_peptides/gausemycin-b.yaml","gausemycin B"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/kanamycin-a.yaml","kanamycin A"]]},{"id":"NCBITaxon:227882","l":"","na":1,"nb":4,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["amino_acids_and_peptides/edha.yaml","EDHA"],["polyketides/filipin-iii.yaml","filipin III"],["terpenoids/avermitilol.yaml","avermitilol"],["terpenoids/pentalenolactone.yaml","pentalenolactone"]]},{"id":"NCBITaxon:2745","l":"Halomonas","na":1,"nb":4,"a":[["wood-bto-0005516.html","wood"]],"b":[["amino_acids_and_peptides/potashchelin-a.yaml","potashchelin A"],["amino_acids_and_peptides/potashchelin-b.yaml","potashchelin B"],["amino_acids_and_peptides/potashchelin-c.yaml","potashchelin C"],["amino_acids_and_peptides/potashchelin-d.yaml","potashchelin D"]]},{"id":"NCBITaxon:310350","l":"Nocardiopsis sp.","na":1,"nb":4,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["alkaloids/k-252a.yaml","K-252a"],["polyketides/nocardiopsistin-a.yaml","nocardiopsistin A"],["polyketides/nocardiopsistin-b.yaml","nocardiopsistin B"],["polyketides/nocardiopsistin-c.yaml","nocardiopsistin C"]]},{"id":"NCBITaxon:362","l":"Agrobacterium radiobacter","na":4,"nb":1,"a":[["plant-gall-po-0025626.html","plant gall"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["alkaloids/agrobactin.yaml","agrobactin"]]},{"id":"NCBITaxon:68570","l":"","na":1,"nb":4,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["amino_acids_and_peptides/deimino-antipain.yaml","deimino-antipain"],["polyketides/nystatin.yaml","nystatin"],["unclassified/albonoursin.yaml","albonoursin"],["unclassified/citrulassin-a.yaml","citrulassin A"]]},{"id":"NCBITaxon:746360","l":"Pseudomonas fluorescens WH6","na":4,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["human-construction-envo-00000070.html","human construction"],["cold-environment-envo-01000309.html","cold environment"],["peatland-envo-00000044.html","peatland"]],"b":[["amino_acids_and_peptides/4-formylaminooxyvinylglycine.yaml","4-formylaminooxyvinylglycine"]]},{"id":"NCBITaxon:85698","l":"","na":4,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["amino_acids_and_peptides/alcaligin.yaml","alcaligin"]]},{"id":"NCBITaxon:86667","l":"Jeotgalibacillus marinus","na":1,"nb":4,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"]],"b":[["fatty_acids/macrolactin-1c.yaml","macrolactin 1c"],["fatty_acids/macrolactin-b.yaml","macrolactin B"],["polyketides/macrolactin-e.yaml","macrolactin E"],["polyketides/macrolactin-h.yaml","macrolactin H"]]},{"id":"NCBITaxon:103232","l":"Streptomyces ipomoeae","na":1,"nb":3,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["amino_acids_and_peptides/thaxtomin-c.yaml","thaxtomin C"],["unclassified/thaxtomin-a.yaml","thaxtomin A"],["unclassified/thaxtomin-b.yaml","thaxtomin B"]]},{"id":"NCBITaxon:107635","l":"Methylosinus sp. LW3","na":3,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"]],"b":[["amino_acids_and_peptides/group-1-methanobactin.yaml","group 1 methanobactin"]]},{"id":"NCBITaxon:1570","l":"Halobacillus halophilus","na":3,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:1904","l":"Streptomyces cyaneus","na":1,"nb":3,"a":[["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["carbohydrates/curamycin.yaml","curamycin"],["polyketides/cardol.yaml","cardol"],["polyketides/cosmomycin-d.yaml","cosmomycin D"]]},{"id":"NCBITaxon:1935","l":"Streptomyces violaceoruber","na":1,"nb":3,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["polyketides/granaticin.yaml","granaticin"],["polyketides/kendomycin.yaml","kendomycin"],["terpenoids/methylenomycin-a.yaml","methylenomycin A"]]},{"id":"NCBITaxon:216591","l":"Burkholderia cenocepacia J2315","na":1,"nb":3,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["unclassified/ornibactin-c4.yaml","ornibactin C4"],["unclassified/ornibactin-c6.yaml","ornibactin C6"],["unclassified/ornibactin-c8.yaml","ornibactin C8"]]},{"id":"NCBITaxon:216595","l":"","na":3,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["human-construction-envo-00000070.html","human construction"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["unclassified/viscosin.yaml","viscosin"]]},{"id":"NCBITaxon:237","l":"Flavobacterium","na":3,"nb":1,"a":[["column-bto-0005692.html","column"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"]]},{"id":"NCBITaxon:264951","l":"Paecilomyces variotii","na":1,"nb":3,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["polyketides/agnestin-a.yaml","agnestin A"],["polyketides/agnestin-b.yaml","agnestin B"],["polyketides/viriditoxin.yaml","viriditoxin"]]},{"id":"NCBITaxon:28447","l":"Clavibacter michiganensis","na":3,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["canker-habitatmech-bacdive-0f078d72a7.html","Canker"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["amino_acids_and_peptides/michiganin-a.yaml","michiganin A"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":3,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["sludge-envo-00002044.html","sludge"],["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"NCBITaxon:384676","l":"","na":1,"nb":3,"a":[["coelom-bto-0001707.html","coelom"]],"b":[["alkaloids/labradorin-1.yaml","labradorin 1"],["alkaloids/labradorin-2.yaml","labradorin 2"],["alkaloids/pimprinine.yaml","pimprinine"]]},{"id":"NCBITaxon:388467","l":"Planktothrix agardhii NIVA-CYA 126/8","na":1,"nb":3,"a":[["filament-bto-0000463.html","filament"]],"b":[["amino_acids_and_peptides/anabaenopeptin-908.yaml","anabaenopeptin 908"],["amino_acids_and_peptides/anabaenopeptin-915.yaml","anabaenopeptin 915"],["amino_acids_and_peptides/microcystin.yaml","microcystin"]]},{"id":"NCBITaxon:393595","l":"Alcanivorax borkumensis SK2","na":1,"nb":3,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["amino_acids_and_peptides/amphibactin-e.yaml","amphibactin E"],["amino_acids_and_peptides/amphibactin-h.yaml","amphibactin H"],["fatty_acids/amphibactin-i.yaml","amphibactin I"]]},{"id":"NCBITaxon:448385","l":"","na":1,"nb":3,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["polyketides/etnangien.yaml","etnangien"],["polyketides/soraphen-a.yaml","soraphen A"],["terpenoids/eremophilene.yaml","(+)-eremophilene"]]},{"id":"NCBITaxon:45","l":"Melittangium lichenicola","na":3,"nb":1,"a":[["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["unclassified/melithiazol-a.yaml","melithiazol A"]]},{"id":"NCBITaxon:469371","l":"Thermobispora bispora DSM 43833","na":3,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["amino_acids_and_peptides/thiomuracin.yaml","thiomuracin"]]},{"id":"NCBITaxon:47312","l":"Tsukamurella pulmonis","na":3,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["tuberculosis-habitatmech-bacdive-e5d21f85b7.html","Tuberculosis"]],"b":[["amino_acids_and_peptides/longicatenamide-a.yaml","longicatenamide A"]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":3,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:757424","l":"Herbaspirillum seropedicae SmR1","na":1,"nb":3,"a":[["environmental-material-envo-00010483.html","environmental material"]],"b":[["amino_acids_and_peptides/serobactin-a.yaml","serobactin A"],["amino_acids_and_peptides/serobactin-b.yaml","serobactin B"],["amino_acids_and_peptides/serobactin-c.yaml","serobactin C"]]},{"id":"NCBITaxon:1074049","l":"Candidatus Burkholderia crenata","na":2,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"],["seedling-bto-0001228.html","seedling"]],"b":[["unclassified/fr900359.yaml","FR900359"]]},{"id":"NCBITaxon:1122611","l":"Nonomuraea coxensis DSM 45129","na":1,"nb":2,"a":[["sand-envo-01000017.html","sand"]],"b":[["amino_acids_and_peptides/a50926-a.yaml","A50926 A"],["amino_acids_and_peptides/a50926-b.yaml","A50926 B"]]},{"id":"NCBITaxon:1267754","l":"Corynebacterium urealyticum DSM 7111","na":2,"nb":1,"a":[["kidney-bto-0000671.html","kidney"],["urinary-tract-bto-0001244.html","urinary tract"]],"b":[["amino_acids_and_peptides/corynazolicin.yaml","corynazolicin"]]},{"id":"NCBITaxon:1281","l":"Staphylococcus carnosus","na":2,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["alkaloids/molybdenum-cofactor.yaml","molybdenum cofactor"]]},{"id":"NCBITaxon:1284","l":"Staphylococcus hyicus","na":1,"nb":2,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["unclassified/staphyloferrin-a.yaml","staphyloferrin A"]]},{"id":"NCBITaxon:1360","l":"Lactococcus lactis subsp. lactis","na":1,"nb":2,"a":[["foregut-bto-0000507.html","foregut"]],"b":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"],["amino_acids_and_peptides/nisin-a.yaml","nisin A"]]},{"id":"NCBITaxon:13684","l":"Parastagonospora nodorum","na":2,"nb":1,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["desert-sand-envo-00005800.html","desert sand"]],"b":[["shikimates_and_phenylpropanoids/mellein.yaml","(-)-Mellein"]]},{"id":"NCBITaxon:13689","l":"Sphingomonas paucimobilis","na":2,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"]],"b":[["unclassified/minimycin.yaml","minimycin"]]},{"id":"NCBITaxon:1550035","l":"Streptomyces sp. NBRC 109706","na":1,"nb":2,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["polyketides/akaeolide.yaml","akaeolide"],["polyketides/lorneic-acid-a.yaml","lorneic acid A"]]},{"id":"NCBITaxon:1703","l":"Brevibacterium linens","na":1,"nb":2,"a":[["animal-waste-material-envo-00002276.html","animal waste material"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"],["terpenoids/isorenieratene.yaml","isorenieratene"]]},{"id":"NCBITaxon:173560","l":"Saccharothrix algeriensis","na":1,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["alkaloids/holomycin.yaml","holomycin"],["alkaloids/thiolutin.yaml","thiolutin"]]},{"id":"NCBITaxon:1946","l":"Streptomyces kasugaensis","na":1,"nb":2,"a":[["plain-envo-00000086.html","plain"]],"b":[["alkaloids/thiolutin.yaml","thiolutin"],["carbohydrates/kasugamycin.yaml","kasugamycin"]]},{"id":"NCBITaxon:2014","l":"Nocardiopsis dassonvillei","na":2,"nb":1,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["alkaloids/iodinin.yaml","iodinin"]]},{"id":"NCBITaxon:2045","l":"Nocardioides simplex","na":2,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:205918","l":"Pseudomonas syringae pv. syringae B728a","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["alkaloids/secimide.yaml","secimide"],["unclassified/syringomycin.yaml","syringomycin"]]},{"id":"NCBITaxon:2062","l":"Streptomycetaceae","na":1,"nb":2,"a":[["crop-bto-0000301.html","crop"]],"b":[["alkaloids/carbazomycin-b.yaml","carbazomycin B"],["unclassified/quinomycin.yaml","quinomycin"]]},{"id":"NCBITaxon:234621","l":"Rhodococcus erythropolis PR4","na":1,"nb":2,"a":[["joint-bto-0001686.html","joint"]],"b":[["amino_acids_and_peptides/heterobactin-a.yaml","heterobactin A"],["amino_acids_and_peptides/heterobactin-s2.yaml","heterobactin S2"]]},{"id":"NCBITaxon:249586","l":"Streptomyces cacaoi subsp. asoensis","na":1,"nb":2,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["carbohydrates/polyoxin-a.yaml","polyoxin A"],["carbohydrates/polyoxin-h.yaml","polyoxin H"]]},{"id":"NCBITaxon:263358","l":"Verrucosispora maris AB-18-032","na":1,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["polyketides/abyssomicin-c.yaml","abyssomicin C"],["polyketides/atrop-abyssomicin-c.yaml","atrop-abyssomicin C"]]},{"id":"NCBITaxon:28094","l":"Trinickia caryophylli","na":1,"nb":2,"a":[["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["amino_acids_and_peptides/gramibactin-b.yaml","gramibactin B"],["fatty_acids/caryoynencin.yaml","caryoynencin"]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["carbohydrates/legionaminic-acid.yaml","legionaminic acid"],["carbohydrates/pseudaminate.yaml","pseudaminate"]]},{"id":"NCBITaxon:298386","l":"Photobacterium profundum SS9","na":2,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["underground-water-envo-00005792.html","underground water"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans Pd1222","na":2,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["alkaloids/parabactin.yaml","parabactin"]]},{"id":"NCBITaxon:337330","l":"Lactiplantibacillus plantarum subsp. plantarum","na":2,"nb":1,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:357","l":"Agrobacterium","na":2,"nb":1,"a":[["stem-bto-0001300.html","stem"],["trunk-bto-0001493.html","trunk"]],"b":[["alkaloids/sesbanimide-c.yaml","sesbanimide C"]]},{"id":"NCBITaxon:362242","l":"","na":2,"nb":1,"a":[["subcutaneous-tissue-bto-0004525.html","subcutaneous tissue"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["polyketides/mycolactone-b.yaml","mycolactone B"]]},{"id":"NCBITaxon:36746","l":"Pseudomonas cichorii","na":1,"nb":2,"a":[["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["amino_acids_and_peptides/cichofactin-a.yaml","cichofactin A"],["amino_acids_and_peptides/cichofactin-b.yaml","cichofactin B"]]},{"id":"NCBITaxon:37329","l":"Nocardia farcinica","na":2,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["amino_acids_and_peptides/nocobactin-na.yaml","nocobactin NA"]]},{"id":"NCBITaxon:397945","l":"Acidovorax citrulli AAC00-1","na":1,"nb":2,"a":[["river-bed-envo-00000384.html","river bed"]],"b":[["unclassified/acidobactin-a.yaml","acidobactin A"],["unclassified/acidobactin-b.yaml","acidobactin B"]]},{"id":"NCBITaxon:41899","l":"Burkholderia plantarii","na":2,"nb":1,"a":[["panicle-bto-0005436.html","panicle"],["seedling-bto-0001228.html","seedling"]],"b":[["amino_acids_and_peptides/plantaribactin.yaml","plantaribactin"]]},{"id":"NCBITaxon:42234","l":"Streptomyces acidiscabies","na":1,"nb":2,"a":[["a10-cell-bto-0002196.html","A10 cell"]],"b":[["fatty_acids/butyrolactone.yaml","γ-butyrolactone"],["unclassified/thaxtomin-a.yaml","thaxtomin A"]]},{"id":"NCBITaxon:443906","l":"Clavibacter michiganensis subsp. michiganensis NCPPB 382","na":2,"nb":1,"a":[["xylem-bto-0001468.html","xylem"],["peatland-envo-00000044.html","peatland"]],"b":[["amino_acids_and_peptides/michiganin-a.yaml","michiganin A"]]},{"id":"NCBITaxon:4558","l":"Sorghum bicolor","na":1,"nb":2,"a":[["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["amino_acids_and_peptides/s-4-hydroxymandelonitrile-d-glucoside.yaml","(S)-4-hydroxymandelonitrile β-D-glucoside"],["shikimates_and_phenylpropanoids/alternariol.yaml","alternariol"]]},{"id":"NCBITaxon:457429","l":"","na":1,"nb":2,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["amino_acids_and_peptides/pristinin-a3.yaml","pristinin A3"],["terpenoids/2s-3r-9r-pristinol.yaml","(+)-(2S,3R,9R)-pristinol"]]},{"id":"NCBITaxon:47917","l":"Serratia fonticola","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"]],"b":[["alkaloids/1-6-phenazinedimethanol.yaml","1,6-phenazinedimethanol"]]},{"id":"NCBITaxon:497965","l":"","na":2,"nb":1,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["fatty_acids/1-heptadecene.yaml","1-heptadecene"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":1,"nb":2,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["amino_acids_and_peptides/aerobactin.yaml","aerobactin"],["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:58340","l":"Streptomyces lavendulae subsp. lavendulae","na":1,"nb":2,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["amino_acids_and_peptides/cycloserine.yaml","cycloserine"],["polyketides/auricin.yaml","auricin"]]},{"id":"NCBITaxon:587","l":"Providencia rettgeri","na":2,"nb":1,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["fumarole-envo-00000216.html","fumarole"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:60550","l":"Burkholderia pyrrocinia","na":1,"nb":2,"a":[["seedling-bto-0001228.html","seedling"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/occidiofungin-a.yaml","occidiofungin A"]]},{"id":"NCBITaxon:60894","l":"Saccharopolyspora spinosa","na":1,"nb":2,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["polyketides/a83543a.yaml","A83543A"],["polyketides/spinosyn-d.yaml","spinosyn D"]]},{"id":"NCBITaxon:648","l":"Aeromonas caviae","na":2,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:65","l":"Herpetosiphon aurantiacus","na":1,"nb":2,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["alkaloids/auriculamide.yaml","auriculamide"],["terpenoids/o-methylkolavelool.yaml","(+)-O-methylkolavelool"]]},{"id":"NCBITaxon:67274","l":"Streptomyces argenteolus","na":1,"nb":2,"a":[["plain-envo-00000086.html","plain"]],"b":[["amino_acids_and_peptides/carbapenem-mm4550.yaml","carbapenem MM4550"],["terpenoids/ks-505a.yaml","KS-505a"]]},{"id":"NCBITaxon:68042","l":"Streptomyces hygroscopicus subsp. hygroscopicus","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["terpenoids/hygromycin-a.yaml","hygromycin A"]]},{"id":"NCBITaxon:68170","l":"Lechevalieria aerocolonigenes","na":1,"nb":2,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["alkaloids/rebeccamycin.yaml","rebeccamycin"],["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:68203","l":"Streptomyces fungicidicus","na":1,"nb":2,"a":[["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["unclassified/enduracidin-a.yaml","enduracidin A"],["unclassified/enduracidin-b.yaml","enduracidin B"]]},{"id":"NCBITaxon:71999","l":"Kocuria palustris","na":2,"nb":1,"a":[["duodenal-mucosa-bto-0000367.html","duodenal mucosa"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"]],"b":[["amino_acids_and_peptides/kocurin.yaml","kocurin"]]},{"id":"NCBITaxon:720","l":"Actinobacillus lignieresii","na":2,"nb":1,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["unclassified/capsular-polysaccharide.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:80866","l":"Delftia acidovorans","na":1,"nb":2,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["amino_acids_and_peptides/delftibactin-a.yaml","delftibactin A"],["amino_acids_and_peptides/delftibactin-b.yaml","delftibactin B"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":2,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["fatty_acids/galactosylceramide.yaml","α-galactosylceramide"]]},{"id":"NCBITaxon:88728","l":"Pinus koraiensis","na":2,"nb":1,"a":[["lagoon-envo-00000038.html","lagoon"],["tropical-envo-01000204.html","tropical"]],"b":[["terpenoids/koraiol.yaml","koraiol"]]},{"id":"NCBITaxon:9031","l":"Gallus gallus","na":2,"nb":1,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:92743","l":"Streptomyces rimosus subsp. paromomycinus","na":1,"nb":2,"a":[["plain-envo-00000086.html","plain"]],"b":[["amino_acids_and_peptides/malonomycin.yaml","malonomycin"],["carbohydrates/paromomycin.yaml","paromomycin"]]},{"id":"NCBITaxon:1004","l":"Chitinophaga sancti","na":1,"nb":1,"a":[["plant-bto-0001481.html","plant"]],"b":[["polyketides/elansolid-a1.yaml","elansolid A1"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"]]},{"id":"NCBITaxon:1077944","l":"Streptomyces muensis","na":1,"nb":1,"a":[["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["unclassified/griselimycin.yaml","griselimycin"]]},{"id":"NCBITaxon:1091494","l":"Methylotuvimicrobium alcaliphilum 20Z","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:1108595","l":"Chromobacterium vaccinii","na":1,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["unclassified/fr900359-2.yaml","FR900359"]]},{"id":"NCBITaxon:111781","l":"Leptolyngbya sp. PCC 7376","na":1,"nb":1,"a":[["rock-envo-00001995.html","rock"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"]]},{"id":"NCBITaxon:111807","l":"Actinomadura yumaensis","na":1,"nb":1,"a":[["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["polyketides/maduramicin.yaml","maduramicin"]]},{"id":"NCBITaxon:1137255","l":"Salinispora arenicola CNT005","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["unclassified/retimycin-a.yaml","retimycin A"]]},{"id":"NCBITaxon:114497","l":"Cordyceps fumosorosea","na":1,"nb":1,"a":[["low-tide-zone-envo-00000319.html","low tide zone"]],"b":[["polyketides/fumosorinone.yaml","fumosorinone"]]},{"id":"NCBITaxon:1200302","l":"Photobacterium damselae subsp. piscicida DI21","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["alkaloids/piscibactin.yaml","piscibactin"]]},{"id":"NCBITaxon:1293","l":"Staphylococcus gallinarum","na":1,"nb":1,"a":[["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["amino_acids_and_peptides/gallidermin.yaml","gallidermin"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["alkaloids/petrobactin.yaml","petrobactin"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:1599","l":"Latilactobacillus sakei","na":1,"nb":1,"a":[["research-facility-envo-00000469.html","research facility"]],"b":[["unclassified/lactocin-s.yaml","lactocin S"]]},{"id":"NCBITaxon:173365","l":"Methylobacter tundripaludum","na":1,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["unclassified/tundrenone.yaml","tundrenone"]]},{"id":"NCBITaxon:1989","l":"Actinomadura sp.","na":1,"nb":1,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["polyketides/maduramicin.yaml","maduramicin"]]},{"id":"NCBITaxon:1993","l":"Actinomadura madurae","na":1,"nb":1,"a":[["foot-bto-0000476.html","foot"]],"b":[["polyketides/maduropeptin.yaml","maduropeptin"]]},{"id":"NCBITaxon:2074","l":"Pseudonocardia autotrophica","na":1,"nb":1,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["polyketides/nystatin-like-pseudonocardia-polyene-a1.yaml","nystatin-like Pseudonocardia polyene A1"]]},{"id":"NCBITaxon:216895","l":"Vibrio vulnificus CMCP6","na":1,"nb":1,"a":[["hela-cell-bto-0000567.html","HeLa cell"]],"b":[["alkaloids/vulnibactin.yaml","vulnibactin"]]},{"id":"NCBITaxon:22","l":"Shewanella","na":1,"nb":1,"a":[["wood-bto-0005516.html","wood"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"NCBITaxon:226","l":"Alteromonas","na":1,"nb":1,"a":[["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["unclassified/marinostatin.yaml","marinostatin"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":1,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["alkaloids/parabactin.yaml","parabactin"]]},{"id":"NCBITaxon:267747","l":"Cutibacterium acnes KPA171202","na":1,"nb":1,"a":[["sebaceous-gland-bto-0001980.html","sebaceous gland"]],"b":[["amino_acids_and_peptides/cutimycin.yaml","cutimycin"]]},{"id":"NCBITaxon:28035","l":"Staphylococcus lugdunensis","na":1,"nb":1,"a":[["foot-bto-0000476.html","foot"]],"b":[["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]]},{"id":"NCBITaxon:28450","l":"Burkholderia pseudomallei","na":1,"nb":1,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"]],"b":[["polyketides/malleilactone.yaml","malleilactone"]]},{"id":"NCBITaxon:285482","l":"Streptomyces tsusimaensis","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["unclassified/valinomycin-2.yaml","valinomycin"]]},{"id":"NCBITaxon:29447","l":"Xanthomonas albilineans","na":1,"nb":1,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["alkaloids/albicidin.yaml","albicidin"]]},{"id":"NCBITaxon:298653","l":"Frankia sp. EAN1pec","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["polyketides/frankiamicin.yaml","frankiamicin"]]},{"id":"NCBITaxon:299254","l":"Streptomyces sp. NRRL 11266","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["polyketides/tetronomycin.yaml","tetronomycin"]]},{"id":"NCBITaxon:307120","l":"Micromonospora marina","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["unclassified/thiocoraline.yaml","thiocoraline"]]},{"id":"NCBITaxon:312309","l":"Aliivibrio fischeri (strain ATCC 700601 / ES114)","na":1,"nb":1,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["unclassified/ape-vf.yaml","APE Vf"]]},{"id":"NCBITaxon:322710","l":"","na":1,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["amino_acids_and_peptides/azotobactin-d.yaml","azotobactin D"]]},{"id":"NCBITaxon:333964","l":"Xenorhabdus indica","na":1,"nb":1,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["unclassified/taxlllaid-a.yaml","taxlllaid A"]]},{"id":"NCBITaxon:33915","l":"Saccharopolyspora sp.","na":1,"nb":1,"a":[["forested-area-envo-00000111.html","forested area"]],"b":[["amino_acids_and_peptides/kyamicin.yaml","kyamicin"]]},{"id":"NCBITaxon:349521","l":"","na":1,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["alkaloids/prodigiosin-2.yaml","prodigiosin"]]},{"id":"NCBITaxon:349725","l":"Micromonospora sp. ML1","na":1,"nb":1,"a":[["clay-envo-00002982.html","clay"]],"b":[["unclassified/thiocoraline.yaml","thiocoraline"]]},{"id":"NCBITaxon:3654","l":"Citrullus lanatus","na":1,"nb":1,"a":[["wood-bto-0005516.html","wood"]],"b":[["fatty_acids/butyrolactone.yaml","γ-butyrolactone"]]},{"id":"NCBITaxon:376686","l":"","na":1,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["polyketides/flexirubin.yaml","flexirubin"]]},{"id":"NCBITaxon:38313","l":"Shewanella algae","na":1,"nb":1,"a":[["foot-bto-0000476.html","foot"]],"b":[["amino_acids_and_peptides/avaroferrin.yaml","avaroferrin"]]},{"id":"NCBITaxon:384","l":"Rhizobium leguminosarum","na":1,"nb":1,"a":[["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["amino_acids_and_peptides/vicibactin.yaml","vicibactin"]]},{"id":"NCBITaxon:394193","l":"Amycolatopsis saalfeldensis","na":1,"nb":1,"a":[["cave-envo-00000067.html","cave"]],"b":[["amino_acids_and_peptides/saalfelduracin.yaml","saalfelduracin"]]},{"id":"NCBITaxon:40223","l":"Methylophaga thalassica","na":1,"nb":1,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:4113","l":"Solanum tuberosum","na":1,"nb":1,"a":[["tuber-bto-0001400.html","tuber"]],"b":[["fatty_acids/itaconic-acid.yaml","itaconic acid"]]},{"id":"NCBITaxon:41276","l":"Brevundimonas vesicularis","na":1,"nb":1,"a":[["forested-area-envo-00000111.html","forested area"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:43769","l":"Corynebacterium propinquum","na":1,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["amino_acids_and_peptides/dehydroxynocardamine.yaml","dehydroxynocardamine"]]},{"id":"NCBITaxon:446787","l":"","na":1,"nb":1,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"]]},{"id":"NCBITaxon:45071","l":"Legionella parisiensis","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["shikimates_and_phenylpropanoids/legioliulin.yaml","legioliulin"]]},{"id":"NCBITaxon:4513","l":"Hordeum vulgare","na":1,"nb":1,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["unclassified/roquefortine-c.yaml","roquefortine C"]]},{"id":"NCBITaxon:452652","l":"Kitasatospora setae KM-6054","na":1,"nb":1,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["alkaloids/kitasetaline.yaml","kitasetaline"]]},{"id":"NCBITaxon:463","l":"Fluoribacter dumoffii","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["shikimates_and_phenylpropanoids/legioliulin.yaml","legioliulin"]]},{"id":"NCBITaxon:488447","l":"Burkholderia contaminans","na":1,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["amino_acids_and_peptides/occidiofungin-a.yaml","occidiofungin A"]]},{"id":"NCBITaxon:512","l":"Alcaligenes sp","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["polyketides/kalimantacin-a.yaml","kalimantacin A"]]},{"id":"NCBITaxon:53409","l":"Pseudomonas coronafaciens","na":1,"nb":1,"a":[["pc-12-cell-bto-0001009.html","PC-12 cell"]],"b":[["polyketides/coronatine.yaml","coronatine"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":1,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:547","l":"Enterobacter","na":1,"nb":1,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["amino_acids_and_peptides/andrimid.yaml","andrimid"]]},{"id":"NCBITaxon:570268","l":"Nocardiopsis potens DSM 45234","na":1,"nb":1,"a":[["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"]],"b":[["amino_acids_and_peptides/potensibactin.yaml","potensibactin"]]},{"id":"NCBITaxon:591158","l":"Streptomyces sp. AA4","na":1,"nb":1,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["amino_acids_and_peptides/amychelin-a.yaml","amychelin A"]]},{"id":"NCBITaxon:60890","l":"","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["shikimates_and_phenylpropanoids/tropodithietic-acid.yaml","tropodithietic acid"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":1,"nb":1,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["unclassified/ape-vf.yaml","APE Vf"]]},{"id":"NCBITaxon:68175","l":"Streptomyces antimycoticus","na":1,"nb":1,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["terpenoids/napyradiomycin.yaml","napyradiomycin"]]},{"id":"NCBITaxon:68242","l":"Streptomyces natalensis","na":1,"nb":1,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["polyketides/natamycin.yaml","natamycin"]]},{"id":"NCBITaxon:69485","l":"Actinoplanes garbadinensis","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["amino_acids_and_peptides/actagardine.yaml","actagardine"]]},{"id":"NCBITaxon:703577","l":"Dactylosporangium aurantiacum subsp. hamdenensis","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["polyketides/tiacumicin-b.yaml","tiacumicin B"]]},{"id":"NCBITaxon:715","l":"Actinobacillus pleuropneumoniae","na":1,"nb":1,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["unclassified/capsular-polysaccharide.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["unclassified/lysocin-e.yaml","lysocin E"]]},{"id":"NCBITaxon:749414","l":"","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["polyketides/nanchangmycin.yaml","nanchangmycin"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":1,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["unclassified/mycobactin.yaml","mycobactin"]]},{"id":"NCBITaxon:85336","l":"Rothia nasimurium","na":1,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"]],"b":[["unclassified/valinomycin-2.yaml","valinomycin"]]}]} \ No newline at end of file +{"a":"HabitatMech","b":"NaturalProductMech","base":{"HabitatMech":"https://culturebotai.github.io/HabitatMech/pages/habitats/","NaturalProductMech":"https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/natural_products/"},"n":312,"by":{"NCBITaxon":312},"terms":[{"id":"NCBITaxon:56","l":"Sorangium cellulosum","na":27,"nb":25,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["watercourse-envo-00000029.html","watercourse"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["amino_acids_and_peptides/microsclerodermin-m.yaml","microsclerodermin M"],["polyketides/ambruticin.yaml","ambruticin"],["polyketides/chivosazol.yaml","chivosazol"],["polyketides/chlorotonil-a.yaml","chlorotonil A"],["polyketides/disorazol-a.yaml","disorazol A"],["polyketides/etnangien.yaml","etnangien"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":36,"nb":24,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["bay-envo-00000032.html","bay"],["freshwater-biome-envo-00000873.html","freshwater biome"],["liquid-water-envo-00002006.html","liquid water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":19,"nb":116,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["saline-water-body-envo-01001319.html","saline water body"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["alkaloids/altemicidin.yaml","altemicidin"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"],["alkaloids/aurachin-ss.yaml","aurachin SS"],["alkaloids/berninamycin-j.yaml","berninamycin J"],["alkaloids/berninamycin-k.yaml","berninamycin K"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":18,"nb":27,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["alkaloids/pseudomonine.yaml","pseudomonine"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyreudione-c.yaml","pyreudione C"],["alkaloids/quinolobactin.yaml","quinolobactin"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":14,"nb":31,"a":[["watercourse-envo-00000029.html","watercourse"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["leaf-po-0025034.html","leaf"]],"b":[["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["alkaloids/myxofacycline-e.yaml","myxofacycline E"],["alkaloids/myxofacycline-f.yaml","myxofacycline F"],["alkaloids/myxofacycline-g.yaml","myxofacycline G"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":27,"nb":13,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["watercourse-envo-00000029.html","watercourse"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["egg-food-product-foodon-00001274.html","egg food product"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"]],"b":[["unclassified/bananamide-d.yaml","bananamide D"],["unclassified/bananamide-e.yaml","bananamide E"],["unclassified/bananamide-f.yaml","bananamide F"],["unclassified/bananamide-g.yaml","bananamide G"],["unclassified/lokisin.yaml","lokisin"],["unclassified/pseudodesmin-a.yaml","pseudodesmin A"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":28,"nb":12,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["liquid-water-envo-00002006.html","liquid water"],["watercourse-envo-00000029.html","watercourse"],["compost-envo-00002170.html","compost"],["hospital-envo-00002173.html","hospital"],["human-construction-envo-00000070.html","human construction"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:286","l":"Pseudomonas","na":10,"nb":41,"a":[["heart-bto-0000562.html","heart"],["juvenile-bto-0002168.html","juvenile"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"],["pseudostem-bto-0005992.html","pseudostem"]],"b":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["alkaloids/tioguanine.yaml","tioguanine"],["amino_acids_and_peptides/napsamycin-c.yaml","napsamycin C"],["amino_acids_and_peptides/napsamycin-d.yaml","napsamycin D"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":10,"nb":16,"a":[["anther-bto-0000079.html","anther"],["epithelial-cell-bto-0000414.html","epithelial cell"],["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["amino_acids_and_peptides/ericin-s.yaml","ericin S"],["amino_acids_and_peptides/iturin.yaml","iturin"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"]]},{"id":"NCBITaxon:1386","l":"Bacillus ","na":19,"nb":9,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["crop-bto-0000301.html","crop"],["dorsum-bto-0001713.html","dorsum"],["hand-bto-0004668.html","hand"],["head-bto-0000282.html","head"],["juvenile-bto-0002168.html","juvenile"]],"b":[["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bogorol-a.yaml","bogorol A"],["amino_acids_and_peptides/koranimine.yaml","koranimine"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"],["amino_acids_and_peptides/rhizocticin-a.yaml","rhizocticin A"],["polyketides/difficidin.yaml","difficidin"]]},{"id":"NCBITaxon:1464","l":"Paenibacillus larvae","na":10,"nb":8,"a":[["surface-water-envo-00002042.html","surface water"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["carcass-envo-00002033.html","carcass"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"],["sludge-envo-00002044.html","sludge"]],"b":[["alkaloids/paenilamicin-a2.yaml","paenilamicin A2"],["alkaloids/paenilamicin-b1.yaml","paenilamicin B1"],["alkaloids/paenilamicin-b2.yaml","paenilamicin B2"],["alkaloids/paenilamicin.yaml","paenilamicin"],["amino_acids_and_peptides/paenilarvin-a.yaml","paenilarvin A"],["amino_acids_and_peptides/paenilarvin-b.yaml","paenilarvin B"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":8,"nb":10,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["alkaloids/labradorin-1.yaml","labradorin 1"],["alkaloids/labradorin-2.yaml","labradorin 2"],["alkaloids/secimide.yaml","secimide"],["amino_acids_and_peptides/phaseolotoxin.yaml","phaseolotoxin"],["amino_acids_and_peptides/syringolin-a.yaml","syringolin A"],["amino_acids_and_peptides/tabtoxin.yaml","tabtoxin"]]},{"id":"NCBITaxon:1876","l":"Micromonospora sp.","na":7,"nb":9,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["marine-water-body-envo-00001999.html","marine water body"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["sludge-envo-00002044.html","sludge"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["polyketides/quinolidomicin-a.yaml","quinolidomicin A"],["polyketides/sungeidine-c.yaml","sungeidine C"],["polyketides/sungeidine-f.yaml","sungeidine F"],["polyketides/sungeidine-g.yaml","sungeidine G"],["shikimates_and_phenylpropanoids/sungeidine-d.yaml","sungeidine D"],["unclassified/sungeidine-a.yaml","sungeidine A"]]},{"id":"NCBITaxon:67263","l":"Streptomyces griseus subsp. griseus","na":6,"nb":7,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["laboratory-facility-envo-01001406.html","laboratory facility"],["clay-envo-00002982.html","clay"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["alkaloids/indolmycin.yaml","indolmycin"],["polyketides/chromomycin-a3.yaml","chromomycin A3"],["polyketides/dinactin.yaml","dinactin"],["polyketides/monactin.yaml","monactin"],["polyketides/nonactin.yaml","nonactin"],["polyketides/tetranactin.yaml","tetranactin"]]},{"id":"NCBITaxon:1269","l":"Micrococcus","na":6,"nb":6,"a":[["cecum-bto-0000166.html","cecum"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["saliva-bto-0001202.html","saliva"],["tongue-bto-0001385.html","tongue"]],"b":[["alkaloids/limazepine-a.yaml","limazepine A"],["alkaloids/limazepine-c.yaml","limazepine C"],["alkaloids/limazepine-d.yaml","limazepine D"],["alkaloids/limazepine-e.yaml","limazepine E"],["alkaloids/limazepine-f.yaml","limazepine F"],["terpenoids/mk-8.yaml","MK-8"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":40,"nb":5,"a":[["liquid-water-envo-00002006.html","liquid water"],["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["laboratory-facility-envo-01001406.html","laboratory facility"],["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["biofilm-bto-0002690.html","biofilm"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"],["unclassified/leuvalin.yaml","leuvalin"],["unclassified/phevalin.yaml","phevalin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":11,"nb":5,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["resting-cell-bto-0001170.html","resting cell"],["seedling-bto-0001228.html","seedling"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["alkaloids/promysalin.yaml","promysalin"],["polyketides/pseudopyronine-a.yaml","pseudopyronine A"],["polyketides/pseudopyronine-b.yaml","pseudopyronine B"],["unclassified/putisolvin-iii.yaml","putisolvin III"],["unclassified/putisolvin-v.yaml","putisolvin V"]]},{"id":"NCBITaxon:10090","l":"Mus musculus","na":8,"nb":5,"a":[["river-envo-00000022.html","river"],["animal-manure-envo-00003031.html","animal manure"],["biotope-envo-00002036.html","biotope"],["intestine-environment-envo-2100002.html","intestine environment"],["urban-biome-envo-01000249.html","urban biome"],["sediment-envo-00002007.html","sediment"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"],["terpenoids/carotene.yaml","β-carotene"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":5,"nb":5,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["pseudostem-bto-0005992.html","pseudostem"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/andrimid.yaml","andrimid"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/pantocin-a.yaml","pantocin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":5,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"],["midgut-bto-0000863.html","midgut"],["paddy-field-envo-00000297.html","paddy field"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["alkaloids/prodigiosin-2.yaml","prodigiosin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/serratiochelin-a.yaml","serratiochelin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["polyketides/oocydin-a.yaml","oocydin A"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":27,"nb":4,"a":[["small-river-biome-envo-00000890.html","small river biome"],["factory-envo-01000536.html","factory"],["organic-waste-material-envo-00002873.html","organic waste material"],["leaf-po-0025034.html","leaf"],["milk-uberon-0001913.html","milk"],["rhizosphere-envo-00005801.html","rhizosphere"]],"b":[["alkaloids/zwittermicin-a.yaml","zwittermicin A"],["amino_acids_and_peptides/livipeptin.yaml","Livipeptin"],["carbohydrates/tunicamycin.yaml","tunicamycin"],["unclassified/cereulide.yaml","cereulide"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":4,"nb":23,"a":[["bioreactor-envo-00002123.html","bioreactor"],["human-construction-envo-00000070.html","human construction"],["sediment-envo-00002007.html","sediment"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/melanin.yaml","melanin"],["alkaloids/undecylprodigiosin.yaml","undecylprodigiosin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/sapb.yaml","SapB"]]},{"id":"NCBITaxon:378806","l":"Stigmatella aurantiaca DW4/3-1","na":4,"nb":17,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["orchard-envo-00000115.html","orchard"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["polyketides/aurafuron-a.yaml","aurafuron A"],["polyketides/dawenol.yaml","dawenol"],["unclassified/dkxanthene-504.yaml","dkxanthene 504"],["unclassified/dkxanthene-508.yaml","dkxanthene 508"],["unclassified/dkxanthene-518.yaml","dkxanthene 518"],["unclassified/dkxanthene-520.yaml","dkxanthene 520"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":13,"nb":4,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["neutrophil-bto-0000130.html","neutrophil"],["rectum-bto-0001158.html","rectum"],["spleen-bto-0001281.html","spleen"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["alkaloids/tilivalline.yaml","tilivalline"],["amino_acids_and_peptides/colibactin.yaml","colibactin"],["amino_acids_and_peptides/klebsidin.yaml","klebsidin"],["carbohydrates/capsular-polysaccharide-2.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:1397","l":"Niallia circulans","na":12,"nb":4,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["organic-waste-material-envo-00002873.html","organic waste material"],["rhizosphere-envo-00005801.html","rhizosphere"],["cultivated-environment-envo-01000311.html","cultivated environment"],["sludge-envo-00002044.html","sludge"]],"b":[["carbohydrates/butirosin-a.yaml","butirosin A"],["carbohydrates/butirosin-b.yaml","butirosin B"],["carbohydrates/butirosin.yaml","butirosin"],["unclassified/pelgipeptin-b.yaml","Pelgipeptin B"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":10,"nb":4,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["air-conditioning-unit-envo-00002874.html","air conditioning unit"],["leaf-bto-0000713.html","leaf"],["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["unclassified/vacidobactin-a.yaml","vacidobactin A"],["unclassified/vacidobactin-b.yaml","vacidobactin B"],["unclassified/variobactin-a.yaml","variobactin A"],["unclassified/variobactin-b.yaml","variobactin B"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae (strain ATCC 42149 / RIB 40)","na":4,"nb":10,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["mountain-pass-envo-00000084.html","mountain pass"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["fatty_acids/oryzine-a.yaml","oryzine A"],["polyketides/kojic-acid.yaml","kojic acid"],["polyketides/oryzine-b.yaml","oryzine B"],["polyketides/ywa1.yaml","YWA1"],["shikimates_and_phenylpropanoids/2-4-dihydroxy-3-methoxypropiophenone.yaml","2,4'-dihydroxy-3'-methoxypropiophenone"],["shikimates_and_phenylpropanoids/8-methyldiaporthin.yaml","8-methyldiaporthin"]]},{"id":"NCBITaxon:10116","l":"Rattus norvegicus","na":9,"nb":4,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["biotope-envo-00002036.html","biotope"],["farm-envo-00000078.html","farm"],["intestine-environment-envo-2100002.html","intestine environment"],["organic-material-envo-01000155.html","organic material"]],"b":[["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/methylarcyriarubin.yaml","methylarcyriarubin"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]]},{"id":"NCBITaxon:83451","l":"Archangium violaceum","na":7,"nb":4,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["wood-bto-0005516.html","wood"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["plant-litter-envo-01000628.html","plant litter"],["sand-envo-01000017.html","sand"]],"b":[["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["alkaloids/myxochelin-n.yaml","myxochelin N"],["alkaloids/myxochelin-o.yaml","myxochelin O"]]},{"id":"NCBITaxon:1930","l":"Streptomyces scabiei","na":4,"nb":6,"a":[["a10-cell-bto-0002196.html","A10 cell"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"],["amino_acids_and_peptides/thaxtomin-c.yaml","thaxtomin C"],["polyketides/oronofacic-acid.yaml","oronofacic acid"],["unclassified/n-coronafacoyl-l-isoleucine.yaml","N-coronafacoyl-L-isoleucine"],["unclassified/thaxtomin-a.yaml","thaxtomin A"],["unclassified/thaxtomin-b.yaml","thaxtomin B"]]},{"id":"NCBITaxon:1393","l":"Brevibacillus brevis","na":5,"nb":4,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["alkaloids/ulbactin-f.yaml","ulbactin F"],["alkaloids/ulbactin-g.yaml","ulbactin G"],["amino_acids_and_peptides/gramicidin.yaml","gramicidin"],["amino_acids_and_peptides/tyrocidine-a.yaml","tyrocidine A"]]},{"id":"NCBITaxon:479432","l":"Streptosporangium roseum DSM 43021","na":4,"nb":5,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"],["vegetable-garden-soil-envo-00005779.html","vegetable garden soil"]],"b":[["polyketides/benaphthamycin.yaml","benaphthamycin"],["polyketides/ws-79089a.yaml","WS 79089A"],["polyketides/ws-79089b.yaml","WS 79089B"],["polyketides/ws-79089c.yaml","WS 79089C"],["polyketides/ws-79089d.yaml","WS 79089D"]]},{"id":"NCBITaxon:39947","l":"Oryza sativa subsp. japonica","na":4,"nb":4,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["large-river-biome-envo-00000887.html","large river biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"],["river-bed-envo-00000384.html","river bed"]],"b":[["terpenoids/10-oxodepressin.yaml","10-Oxodepressin"],["terpenoids/momilactone-b.yaml","momilactone B"],["terpenoids/oryzalides.yaml","oryzalides"],["terpenoids/phytocassane.yaml","phytocassane"]]},{"id":"NCBITaxon:184914","l":"Corallococcus coralloides","na":35,"nb":3,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["watercourse-envo-00000029.html","watercourse"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["amino_acids_and_peptides/myxovalargin-a.yaml","myxovalargin A"],["polyketides/corallopyronin.yaml","corallopyronin"],["polyketides/phenalamide.yaml","phenalamide"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":25,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-water-body-envo-00001999.html","marine water body"],["sea-water-envo-00002149.html","sea water"],["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["amino_acids_and_peptides/epidermin.yaml","epidermin"],["amino_acids_and_peptides/epilancin-15x.yaml","epilancin 15x"],["amino_acids_and_peptides/pep5.yaml","pep5"]]},{"id":"NCBITaxon:54","l":"Nannocystis exedens","na":22,"nb":3,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["watercourse-envo-00000029.html","watercourse"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["polyketides/phenylnannolone-a.yaml","phenylnannolone A"],["polyketides/phenylnannolone-b.yaml","phenylnannolone B"],["polyketides/phenylnannolone-c.yaml","phenylnannolone C"]]},{"id":"NCBITaxon:33","l":"Myxococcus fulvus","na":21,"nb":3,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"]],"b":[["unclassified/fulvuthiacene-a.yaml","Fulvuthiacene A"],["unclassified/fulvuthiacene-b.yaml","Fulvuthiacene B"],["unclassified/myxothiazol.yaml","myxothiazol"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":17,"nb":3,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["fruit-bto-0000486.html","fruit"],["leaf-po-0025034.html","leaf"],["rhizosphere-envo-00005801.html","rhizosphere"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["amino_acids_and_peptides/polymyxin-b.yaml","polymyxin B"],["amino_acids_and_peptides/polymyxin.yaml","polymyxin"],["unclassified/fusaricidin-b.yaml","fusaricidin B"]]},{"id":"NCBITaxon:1654","l":"Actinomyces","na":3,"nb":13,"a":[["hand-bto-0004668.html","hand"],["vaginal-fluid-bto-0003084.html","vaginal fluid"],["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["alkaloids/lynamicin-a.yaml","lynamicin A"],["alkaloids/lynamicin-d.yaml","lynamicin D"],["amino_acids_and_peptides/cephamycin-c.yaml","cephamycin C"],["amino_acids_and_peptides/glycinocin-a.yaml","glycinocin A"],["carbohydrates/cetoniacytone-a.yaml","cetoniacytone A"],["polyketides/4-hexadecanoyl-3-hydroxy-2-hydroxymethyl-2h-furan-5-one.yaml","4-hexadecanoyl-3-hydroxy-2-(hydroxymethyl)-2H-furan-5-one"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":3,"nb":13,"a":[["city-envo-00000856.html","city"],["cold-environment-envo-01000309.html","cold environment"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/congocidine.yaml","congocidine"],["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK1622","na":3,"nb":12,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"],["amino_acids_and_peptides/myxochromide-a.yaml","myxochromide A"],["amino_acids_and_peptides/myxoprincomide-c506.yaml","myxoprincomide-c506"]]},{"id":"NCBITaxon:28095","l":"Burkholderia gladioli","na":3,"nb":12,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["alkaloids/gladiofungin-a.yaml","gladiofungin A"],["alkaloids/gladiofungin-b.yaml","gladiofungin B"],["alkaloids/toxoflavin.yaml","toxoflavin"],["amino_acids_and_peptides/arsinothricin.yaml","arsinothricin"],["amino_acids_and_peptides/bolagladin-a.yaml","bolagladin A"],["fatty_acids/bongkrekic-acid-2.yaml","bongkrekic acid"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":11,"nb":3,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["fermentation-starter-envo-03600040.html","fermentation starter"],["fruit-bto-0000486.html","fruit"],["mammary-epithelial-cell-bto-0004300.html","mammary epithelial cell"],["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"],["amino_acids_and_peptides/lacticin-z.yaml","lacticin Z"],["amino_acids_and_peptides/nisin-a.yaml","nisin A"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":3,"nb":10,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["amino_acids_and_peptides/lipopeptide-8d1-1.yaml","lipopeptide 8D1-1"],["amino_acids_and_peptides/lipopeptide-8d1-2.yaml","lipopeptide 8D1-2"],["carbohydrates/amicetin.yaml","amicetin"],["carbohydrates/streptothricin-c.yaml","streptothricin C"],["carbohydrates/streptothricin-d.yaml","streptothricin D"],["carbohydrates/streptothricin-e.yaml","streptothricin E"]]},{"id":"NCBITaxon:38","l":"Archangium disciforme","na":7,"nb":3,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["feces-uberon-0001988.html","feces"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["wood-bto-0005516.html","wood"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["alkaloids/myxochelin-a.yaml","myxochelin A"],["amino_acids_and_peptides/tubulysin-a.yaml","tubulysin A"],["amino_acids_and_peptides/tubulysin-h.yaml","tubulysin H"]]},{"id":"NCBITaxon:83460","l":"Allostigmatella erecta","na":7,"nb":3,"a":[["feces-uberon-0001988.html","feces"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["plant-litter-envo-01000628.html","plant litter"],["sand-envo-01000017.html","sand"]],"b":[["alkaloids/aurachin-a.yaml","aurachin A"],["alkaloids/aurachin-c.yaml","aurachin C"],["unclassified/myxochromide-d.yaml","myxochromide D"]]},{"id":"NCBITaxon:32008","l":"Burkholderia","na":3,"nb":6,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["midgut-bto-0000863.html","midgut"]],"b":[["polyketides/necroxime-a.yaml","necroxime A"],["polyketides/necroxime-c.yaml","necroxime C"],["polyketides/necroxime-d.yaml","necroxime D"],["polyketides/thailanstatin-a.yaml","thailanstatin A"],["unclassified/necroxime-b.yaml","necroxime B"],["unclassified/spliceostatin.yaml","spliceostatin"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":5,"nb":3,"a":[["liquid-water-envo-00002006.html","liquid water"],["food-spoiled-foodon-00003366.html","food (spoiled)"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"]],"b":[["alkaloids/cepaciachelin.yaml","cepaciachelin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["terpenoids/hopene.yaml","hopene"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":4,"nb":3,"a":[["stream-envo-00000023.html","stream"],["biome-envo-00000428.html","biome"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["unclassified/leuvalin.yaml","leuvalin"],["unclassified/mutanocyclin.yaml","mutanocyclin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:1120925","l":"Acinetobacter bouvetii DSM 14964 = CIP 107468","na":3,"nb":3,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["alkaloids/butanochelin.yaml","butanochelin"],["alkaloids/pentanochelin.yaml","pentanochelin"],["alkaloids/propanochelin.yaml","propanochelin"]]},{"id":"NCBITaxon:1833","l":"Rhodococcus erythropolis","na":3,"nb":3,"a":[["watercourse-envo-00000029.html","watercourse"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"],["water-scum-envo-00005794.html","water scum"]],"b":[["alkaloids/aurachin-re.yaml","aurachin RE"],["amino_acids_and_peptides/heterobactin-a.yaml","heterobactin A"],["amino_acids_and_peptides/heterobactin-s2.yaml","heterobactin S2"]]},{"id":"NCBITaxon:1961","l":"Streptomyces virginiae","na":3,"nb":3,"a":[["clay-envo-00002982.html","clay"],["plain-envo-00000086.html","plain"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["alkaloids/endophenazine-a.yaml","endophenazine A"],["polyketides/monensin.yaml","monensin"],["unclassified/virginiamycin-s1.yaml","virginiamycin S1"]]},{"id":"NCBITaxon:1883","l":"Streptomyces","na":2,"nb":438,"a":[["crop-bto-0000301.html","crop"],["lab-synthesis-habitatmech-bacdive-0e92e77cd4.html","Lab-synthesis"]],"b":[["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/7-prenylisatin.yaml","7-prenylisatin"],["alkaloids/9-methylstreptimidone.yaml","9-methylstreptimidone"],["alkaloids/anisomycin.yaml","(−)-anisomycin"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"]]},{"id":"NCBITaxon:1886","l":"Streptomyces albidoflavus","na":2,"nb":54,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/anthramycin.yaml","anthramycin"],["alkaloids/diazaquinomycin-f.yaml","diazaquinomycin F"],["alkaloids/diazaquinomycin-g.yaml","diazaquinomycin G"],["alkaloids/holomycin.yaml","holomycin"],["alkaloids/melanin.yaml","melanin"]]},{"id":"NCBITaxon:1911","l":"Streptomyces griseus","na":2,"nb":32,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["alkaloids/cycloheximide.yaml","cycloheximide"],["alkaloids/grixazone-a.yaml","grixazone A"],["alkaloids/iminimycin-a.yaml","iminimycin A"],["alkaloids/iminimycin-b.yaml","iminimycin B"],["alkaloids/indolmycin.yaml","indolmycin"],["alkaloids/melanin.yaml","melanin"]]},{"id":"NCBITaxon:369723","l":"Salinispora tropica CNB-440","na":2,"nb":23,"a":[["coarse-beach-sand-envo-00002148.html","coarse beach sand"],["sand-envo-01000017.html","sand"]],"b":[["alkaloids/lymphostin.yaml","lymphostin"],["alkaloids/lymphostinol.yaml","lymphostinol"],["alkaloids/neolymphostin-b-2.yaml","neolymphostin B"],["alkaloids/neolymphostinol-b.yaml","neolymphostinol B"],["amino_acids_and_peptides/salinosporamide-a.yaml","salinosporamide A"],["fatty_acids/salinipostin-a.yaml","Salinipostin A"]]},{"id":"NCBITaxon:83456","l":"Myxococcus virescens","na":15,"nb":2,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["feces-uberon-0001988.html","feces"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"]],"b":[["alkaloids/bengamide.yaml","bengamide"],["unclassified/myxochromide-c.yaml","myxochromide C"]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":2,"nb":14,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/framycetin.yaml","framycetin"],["carbohydrates/neomycin-c.yaml","neomycin C"],["carbohydrates/paromomycin.yaml","paromomycin"]]},{"id":"NCBITaxon:2013","l":"Nocardiopsis","na":2,"nb":14,"a":[["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"],["alkaloids/k-252a.yaml","K-252a"],["alkaloids/methylpendolmycin.yaml","methylpendolmycin"],["alkaloids/pendolmycin.yaml","pendolmycin"],["amino_acids_and_peptides/tp-1161.yaml","TP-1161"],["polyketides/apoptolidin.yaml","apoptolidin"]]},{"id":"NCBITaxon:102234","l":"Cyanobacterium","na":12,"nb":2,"a":[["cecum-bto-0000166.html","cecum"],["colon-bto-0000269.html","colon"],["gut-bto-0000545.html","gut"],["head-bto-0000282.html","head"],["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"]],"b":[["amino_acids_and_peptides/aeruginosin-98-c.yaml","aeruginosin 98-C"],["unclassified/nostopeptolide-a2.yaml","nostopeptolide A2"]]},{"id":"NCBITaxon:271848","l":"Burkholderia thailandensis E264","na":2,"nb":12,"a":[["needle-bto-0000917.html","needle"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["alkaloids/malleobactin-b.yaml","malleobactin B"],["alkaloids/malleobactin-d.yaml","malleobactin D"],["polyketides/malleicyprol.yaml","malleicyprol"],["polyketides/malleilactone.yaml","malleilactone"],["polyketides/thailandamide-lactone.yaml","thailandamide lactone"],["polyketides/thailandamide.yaml","thailandamide"]]},{"id":"NCBITaxon:457427","l":"Streptomyces himastatinicus ATCC 53653","na":9,"nb":2,"a":[["bay-envo-00000032.html","bay"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["saline-water-envo-00002010.html","saline water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["food-product-foodon-00001002.html","food product"]],"b":[["alkaloids/9-methylstreptimidone.yaml","9-methylstreptimidone"],["amino_acids_and_peptides/himastatin.yaml","himastatin"]]},{"id":"NCBITaxon:500485","l":"Penicillium rubens Wisconsin 54-1255","na":2,"nb":9,"a":[["finger-bto-0004669.html","finger"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["alkaloids/dehydrohistidyltryptophanyldiketopiperazine.yaml","dehydrohistidyltryptophanyldiketopiperazine"],["alkaloids/glandicoline-a.yaml","glandicoline A"],["alkaloids/glandicoline-b.yaml","glandicoline B"],["alkaloids/meleagrine.yaml","meleagrine"],["polyketides/sorbicillin.yaml","sorbicillin"],["terpenoids/conidiogenone.yaml","conidiogenone"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":8,"nb":2,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["lab-synthesis-habitatmech-bacdive-0e92e77cd4.html","Lab-synthesis"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["oil-spill-envo-00002061.html","oil spill"],["temperate-envo-01000206.html","temperate"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"],["carbohydrates/oxetanocin-a.yaml","oxetanocin A"]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":8,"nb":2,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["terpenoids/xanthan.yaml","xanthan"]]},{"id":"NCBITaxon:345341","l":"Kutzneria sp. 744","na":2,"nb":8,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"],["clay-envo-00002982.html","clay"]],"b":[["amino_acids_and_peptides/kutzneride-6.yaml","Kutzneride 6"],["unclassified/kutzneride-1.yaml","Kutzneride 1"],["unclassified/kutzneride-2.yaml","Kutzneride 2"],["unclassified/kutzneride-3.yaml","Kutzneride 3"],["unclassified/kutzneride-4.yaml","Kutzneride 4"],["unclassified/kutzneride-5.yaml","Kutzneride 5"]]},{"id":"NCBITaxon:331117","l":"Aspergillus fischeri NRRL 181","na":2,"nb":7,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["terpenoids/compound-5.yaml","compound 5"],["terpenoids/compound-6-2.yaml","compound 6"],["terpenoids/compound-7a.yaml","compound 7a"],["terpenoids/compound-8-2.yaml","compound 8"],["terpenoids/sesterfisheric-acid.yaml","sesterfisheric acid"],["terpenoids/sesterfisherol.yaml","sesterfisherol"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":7,"nb":2,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["liquid-water-envo-00002006.html","liquid water"],["crown-gall-bto-0000303.html","crown gall"],["finger-bto-0004669.html","finger"],["resting-cell-bto-0001170.html","resting cell"],["water-scum-envo-00005794.html","water scum"]],"b":[["alkaloids/agrobactin.yaml","agrobactin"],["amino_acids_and_peptides/aztreonam.yaml","aztreonam"]]},{"id":"NCBITaxon:391037","l":"Salinispora arenicola CNS-205","na":2,"nb":7,"a":[["beach-sand-envo-00002138.html","beach sand"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["alkaloids/lymphostin.yaml","lymphostin"],["alkaloids/lymphostinol.yaml","lymphostinol"],["alkaloids/neolymphostin-b.yaml","neolymphostin b"],["alkaloids/neolymphostinol-b.yaml","neolymphostinol B"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/cyclomarin-d.yaml","cyclomarin D"]]},{"id":"NCBITaxon:63737","l":"Nostoc punctiforme PCC 73102","na":2,"nb":7,"a":[["heterocyst-bto-0000600.html","heterocyst"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["amino_acids_and_peptides/microviridin-n3.yaml","microviridin N3"],["amino_acids_and_peptides/microviridin-n4.yaml","microviridin N4"],["amino_acids_and_peptides/microviridin-n6.yaml","microviridin N6"],["amino_acids_and_peptides/microviridin-n7.yaml","microviridin N7"],["amino_acids_and_peptides/microviridin-n8.yaml","microviridin N8"],["amino_acids_and_peptides/microviridin-n9.yaml","microviridin N9"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":6,"nb":2,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"],["sludge-envo-00002044.html","sludge"],["forested-area-envo-00000111.html","forested area"],["scrubland-area-envo-00000300.html","scrubland area"],["soil-envo-00001998.html","soil"]],"b":[["amino_acids_and_peptides/cupriachelin.yaml","cupriachelin"],["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"]]},{"id":"NCBITaxon:457412","l":"Ruminococcus sp. 5_1_39BFAA","na":2,"nb":6,"a":[["animal-litter-envo-00002191.html","animal litter"],["tropical-envo-01000204.html","tropical"]],"b":[["alkaloids/pzn10.yaml","PZN10"],["alkaloids/pzn11.yaml","PZN11"],["alkaloids/pzn5.yaml","PZN5"],["alkaloids/pzn6.yaml","PZN6"],["alkaloids/pzn7.yaml","PZN7"],["alkaloids/pzn9.yaml","PZN9"]]},{"id":"NCBITaxon:4577","l":"Zea mays","na":2,"nb":6,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["alkaloids/dimboa.yaml","DIMBOA"],["polyketides/emodin.yaml","emodin"],["terpenoids/zealexin-a1.yaml","zealexin A1"],["terpenoids/zealexin-b3.yaml","zealexin B3"],["terpenoids/zealexin-c2.yaml","zealexin C2"],["unclassified/aflatoxin.yaml","aflatoxin"]]},{"id":"NCBITaxon:1465","l":"Brevibacillus laterosporus","na":2,"nb":5,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["amino_acids_and_peptides/bogorol-a.yaml","bogorol A"],["amino_acids_and_peptides/tauramamide.yaml","tauramamide"],["shikimates_and_phenylpropanoids/basiliskamide-a.yaml","Basiliskamide A"],["unclassified/basiliskamide-b.yaml","Basiliskamide B"],["unclassified/laterocidine.yaml","laterocidine"]]},{"id":"NCBITaxon:497689","l":"Streptomyces sp. SNA15896","na":2,"nb":5,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["unclassified/sw-163c.yaml","SW-163C"],["unclassified/sw-163e.yaml","SW-163E"],["unclassified/sw-163f.yaml","SW-163F"],["unclassified/sw-163g.yaml","SW-163G"],["unclassified/uk-63598.yaml","UK 63598"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":5,"nb":2,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["pseudostem-bto-0005992.html","pseudostem"],["seedling-bto-0001228.html","seedling"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["soil-envo-00001998.html","soil"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["terpenoids/mk-8.yaml","MK-8"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":5,"nb":2,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"],["feces-uberon-0001988.html","feces"],["rectum-bto-0001158.html","rectum"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["alkaloids/vibriobactin-2.yaml","vibriobactin"],["alkaloids/vibriobactin.yaml","vibriobactin"]]},{"id":"NCBITaxon:1224742","l":"Vibrio campbellii ATCC BAA-1116","na":2,"nb":4,"a":[["kidney-bto-0000671.html","kidney"],["renal-cortex-bto-0001166.html","renal cortex"]],"b":[["polyketides/amphi-enterobactin-1.yaml","Amphi-enterobactin 1"],["polyketides/amphi-enterobactin-2.yaml","amphi-enterobactin 2"],["polyketides/amphi-enterobactin-3.yaml","amphi-enterobactin 3"],["polyketides/amphi-enterobactin-4.yaml","amphi-enterobactin 4"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":4,"nb":2,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["carcass-envo-00002033.html","carcass"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["sludge-envo-00002044.html","sludge"]],"b":[["alkaloids/biotin.yaml","biotin"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":4,"nb":2,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["unclassified/andalusicin-a.yaml","andalusicin A"]]},{"id":"NCBITaxon:305","l":"Ralstonia solanacearum","na":4,"nb":2,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"],["pseudostem-bto-0005992.html","pseudostem"],["xylem-bto-0001468.html","xylem"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"],["unclassified/micacocidin.yaml","micacocidin"]]},{"id":"NCBITaxon:398578","l":"Delftia acidovorans SPH-1","na":4,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["large-river-biome-envo-00000887.html","large river biome"],["sewage-envo-00002018.html","sewage"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["amino_acids_and_peptides/delftibactin-a.yaml","delftibactin A"],["amino_acids_and_peptides/delftibactin-b.yaml","delftibactin B"]]},{"id":"NCBITaxon:426418","l":"Pyrenophora tritici-repentis Pt-1C-BFP","na":2,"nb":4,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["unclassified/triticone-a.yaml","triticone A"],["unclassified/triticone-b.yaml","triticone B"],["unclassified/triticone-c.yaml","triticone C"],["unclassified/triticone-f.yaml","triticone F"]]},{"id":"NCBITaxon:479433","l":"Catenulispora acidiphila DSM 44928","na":4,"nb":2,"a":[["filament-bto-0000463.html","filament"],["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["amino_acids_and_peptides/catenulipeptin.yaml","catenulipeptin"],["shikimates_and_phenylpropanoids/cacibiocin-b.yaml","cacibiocin B"]]},{"id":"NCBITaxon:6239","l":"Caenorhabditis elegans","na":2,"nb":4,"a":[["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["alkaloids/biotin.yaml","biotin"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/itaconic-acid.yaml","itaconic acid"],["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"]]},{"id":"NCBITaxon:703612","l":"Bacillus subtilis subsp. spizizenii ATCC 6633","na":2,"nb":4,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["amino_acids_and_peptides/mycosubtilin.yaml","mycosubtilin"],["amino_acids_and_peptides/rhizocticin-a.yaml","rhizocticin A"],["amino_acids_and_peptides/subtilin.yaml","subtilin"],["amino_acids_and_peptides/subtilosin-a.yaml","subtilosin A"]]},{"id":"NCBITaxon:1129","l":"Synechococcus","na":2,"nb":3,"a":[["column-bto-0005692.html","column"],["hemolymph-bto-0000572.html","hemolymph"]],"b":[["alkaloids/synechobactin-a.yaml","synechobactin A"],["alkaloids/synechobactin-b.yaml","synechobactin B"],["alkaloids/synechobactin-c.yaml","synechobactin C"]]},{"id":"NCBITaxon:1218948","l":"Pseudomonas fluorescens PF5","na":3,"nb":2,"a":[["large-river-biome-envo-00000887.html","large river biome"],["human-construction-envo-00000070.html","human construction"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["alkaloids/pyoluteorin.yaml","pyoluteorin"],["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":2,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:1932","l":"Streptomyces tendae","na":2,"nb":3,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"],["polyketides/lysolipin-i.yaml","lysolipin I"],["terpenoids/geosmin.yaml","(−)-geosmin"]]},{"id":"NCBITaxon:1938","l":"Streptomyces viridochromogenes","na":2,"nb":3,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["amino_acids_and_peptides/glycinocin-a.yaml","glycinocin A"],["carbohydrates/avilamycin-a.yaml","avilamycin A"],["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"]]},{"id":"NCBITaxon:2021","l":"Thermobifida fusca","na":2,"nb":3,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["amino_acids_and_peptides/fuscachelin-a.yaml","Fuscachelin A"],["amino_acids_and_peptides/fuscachelin-b.yaml","Fuscachelin B"],["amino_acids_and_peptides/fuscachelin-c.yaml","Fuscachelin C"]]},{"id":"NCBITaxon:269800","l":"","na":2,"nb":3,"a":[["compost-envo-00002170.html","compost"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["amino_acids_and_peptides/fuscachelin-a.yaml","Fuscachelin A"],["amino_acids_and_peptides/fuscachelin-b.yaml","Fuscachelin B"],["amino_acids_and_peptides/fuscachelin-c.yaml","Fuscachelin C"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":3,"nb":2,"a":[["bile-bto-0000121.html","bile"],["rectum-bto-0001158.html","rectum"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["alkaloids/acinetobactin.yaml","acinetobactin"],["amino_acids_and_peptides/fimsbactin-a.yaml","fimsbactin A"]]},{"id":"NCBITaxon:556","l":"Dickeya chrysanthemi","na":2,"nb":3,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["amino_acids_and_peptides/chrysobactin.yaml","chrysobactin"],["amino_acids_and_peptides/dichrysobactin.yaml","dichrysobactin"],["unclassified/cyclic-trichrysobactin.yaml","cyclic trichrysobactin"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":3,"nb":2,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["amino_acids_and_peptides/vibrioferrin-2.yaml","vibrioferrin"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:1121302","l":"Clostridium cavendishii DSM 21758","na":2,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["groundwater-envo-01001004.html","groundwater"]],"b":[["alkaloids/closoxazole-a.yaml","closoxazole A"],["alkaloids/closoxazole-b.yaml","closoxazole B"]]},{"id":"NCBITaxon:176299","l":"Agrobacterium fabrum (strain C58 / ATCC 33970)","na":2,"nb":2,"a":[["human-construction-envo-00000070.html","human construction"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["amino_acids_and_peptides/fabrubactin-a.yaml","fabrubactin A"],["amino_acids_and_peptides/fabrubactin-b.yaml","fabrubactin B"]]},{"id":"NCBITaxon:316274","l":"Herpetosiphon aurantiacus DSM 785","na":2,"nb":2,"a":[["filament-bto-0000463.html","filament"],["joint-bto-0001686.html","joint"]],"b":[["alkaloids/auriculamide.yaml","auriculamide"],["terpenoids/o-methylkolavelool.yaml","(+)-O-methylkolavelool"]]},{"id":"NCBITaxon:394096","l":"Hyalangium minutum","na":2,"nb":2,"a":[["wood-bto-0005516.html","wood"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["polyketides/nystatin-a1.yaml","nystatin A1"],["unclassified/myxochromide-d-2.yaml","myxochromide D"]]},{"id":"NCBITaxon:394503","l":"","na":2,"nb":2,"a":[["agricultural-waste-material-envo-01000371.html","agricultural waste material"],["compost-envo-00002170.html","compost"]],"b":[["alkaloids/closthioamide.yaml","closthioamide"],["amino_acids_and_peptides/rc-aip1.yaml","Rc-AIP1"]]},{"id":"NCBITaxon:444103","l":"Streptomyces sp. CNQ-509","na":2,"nb":2,"a":[["colonic-cancer-cell-bto-0000586.html","colonic cancer cell"],["vas-efferens-bto-0002254.html","vas efferens"]],"b":[["alkaloids/marinophenazine-a.yaml","marinophenazine A"],["alkaloids/phenaziterpene-a.yaml","phenaziterpene A"]]},{"id":"NCBITaxon:47879","l":"Pseudomonas corrugata","na":2,"nb":2,"a":[["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["wilt-habitatmech-bacdive-4c48b5114d.html","Wilt"]],"b":[["amino_acids_and_peptides/corpeptin-a.yaml","corpeptin A"],["amino_acids_and_peptides/corpeptin-b.yaml","corpeptin B"]]},{"id":"NCBITaxon:543728","l":"Variovorax paradoxus S110","na":2,"nb":2,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"]],"b":[["unclassified/vacidobactin-a.yaml","vacidobactin A"],["unclassified/vacidobactin-b.yaml","vacidobactin B"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":2,"nb":2,"a":[["feces-uberon-0001988.html","feces"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["alkaloids/yersiniabactin.yaml","yersiniabactin"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":2,"nb":2,"a":[["watercourse-envo-00000029.html","watercourse"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["amino_acids_and_peptides/vibrioferrin-2.yaml","vibrioferrin"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:1177","l":"Nostoc","na":1,"nb":41,"a":[["inflorescence-bto-0000628.html","inflorescence"]],"b":[["alkaloids/nocuolin-a.yaml","Nocuolin A"],["amino_acids_and_peptides/anabaenopeptin-802.yaml","anabaenopeptin 802"],["amino_acids_and_peptides/heinamide-a1.yaml","heinamide A1"],["amino_acids_and_peptides/heinamide-a2.yaml","heinamide A2"],["amino_acids_and_peptides/heinamide-a3.yaml","heinamide A3"],["amino_acids_and_peptides/heinamide-b1.yaml","heinamide B1"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":33,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["pond-water-envo-00002228.html","pond water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["water-body-envo-00000063.html","water body"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:243265","l":"Photorhabdus laumondii subsp. laumondii TTO1","na":1,"nb":21,"a":[["carcass-bto-0001965.html","carcass"]],"b":[["amino_acids_and_peptides/gamexpeptide-c.yaml","gamexpeptide C"],["amino_acids_and_peptides/luminmycin-a.yaml","luminmycin A"],["amino_acids_and_peptides/ririwpeptide-a.yaml","ririwpeptide A"],["amino_acids_and_peptides/ririwpeptide-b.yaml","ririwpeptide B"],["carbohydrates/oligosaccharide-1-glcnac-1-4-1-6-anhydro-glcnac.yaml","oligosaccharide 1 (GlcNAc-β(1-4)-1,6-anhydro-β-GlcNAc)"],["carbohydrates/oligosaccharide-2-glcnac-1-4-glcnac-1-4-1-6-anhydro-glcnac.yaml","oligosaccharide 2 (GlcNAc-β(1-4)-GlcNAc-β(1-4)-1,6-anhydro-β-GlcNAc)"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":1,"nb":20,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/c-3-sulfonylated-derivative.yaml","C-3 sulfonylated derivative"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["alkaloids/n-n-dioxide-containing-derivate.yaml","N,N-dioxide containing derivate"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":19,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["bone-element-uberon-0001474.html","bone element"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["amino_acids_and_peptides/bacitracin.yaml","bacitracin"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":17,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["hospital-envo-00002173.html","hospital"],["egg-food-product-foodon-00001274.html","egg food product"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["amino_acids_and_peptides/enterocin-a.yaml","enterocin A"]]},{"id":"NCBITaxon:455632","l":"Streptomyces griseus subsp. griseus NBRC 13350","na":1,"nb":17,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["alkaloids/grixazone-a.yaml","grixazone A"],["alkaloids/iminimycin-a.yaml","iminimycin A"],["alkaloids/iminimycin-b.yaml","iminimycin B"],["alkaloids/melanin.yaml","melanin"],["carbohydrates/streptomycin.yaml","streptomycin"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":16,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":14,"nb":1,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["compost-envo-00002170.html","compost"],["organic-waste-material-envo-00002873.html","organic waste material"],["larva-bto-0000707.html","larva"],["rhizosphere-envo-00005801.html","rhizosphere"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]]},{"id":"NCBITaxon:29488","l":"Photorhabdus luminescens","na":1,"nb":14,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["alkaloids/photobactin.yaml","photobactin"],["alkaloids/pzn5.yaml","PZN5"],["amino_acids_and_peptides/gamexpeptide-c.yaml","gamexpeptide C"],["amino_acids_and_peptides/glidobactin.yaml","glidobactin"],["amino_acids_and_peptides/luminmycin-a.yaml","luminmycin A"],["polyketides/photopyrone-a.yaml","photopyrone A"]]},{"id":"NCBITaxon:1357","l":"Lactococcus","na":13,"nb":1,"a":[["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["ileum-bto-0000620.html","ileum"],["intestine-bto-0000648.html","intestine"],["mouth-bto-0001090.html","mouth"]],"b":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":1,"nb":13,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["alkaloids/holomycin.yaml","holomycin"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/2-formyloxymethylclavam.yaml","2-formyloxymethylclavam"],["amino_acids_and_peptides/2-hydroxymethylclavam.yaml","2-hydroxymethylclavam"],["amino_acids_and_peptides/alanylclavam.yaml","alanylclavam"],["amino_acids_and_peptides/cephamycin-c.yaml","cephamycin C"]]},{"id":"NCBITaxon:406817","l":"Xenorhabdus nematophila ATCC 19061","na":1,"nb":13,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["alkaloids/nematophin.yaml","nematophin"],["amino_acids_and_peptides/rhabdopeptide-1.yaml","rhabdopeptide 1"],["amino_acids_and_peptides/rhabdopeptide-2.yaml","rhabdopeptide 2"],["amino_acids_and_peptides/rhabdopeptide-3.yaml","rhabdopeptide 3"],["amino_acids_and_peptides/rhabdopeptide-4.yaml","rhabdopeptide 4"],["amino_acids_and_peptides/xenortide-a.yaml","xenortide A"]]},{"id":"NCBITaxon:104268","l":"Tenacibaculum mesophilum","na":12,"nb":1,"a":[["bay-envo-00000032.html","bay"],["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"],["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"]],"b":[["fatty_acids/bisucaberin-b.yaml","bisucaberin B"]]},{"id":"NCBITaxon:321614","l":"","na":1,"nb":12,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["alkaloids/phomacin-d.yaml","phomacin D"],["alkaloids/phomacin-e.yaml","phomacin E"],["polyketides/betaenone-b.yaml","betaenone B"],["polyketides/betaenone-c.yaml","betaenone C"],["polyketides/compound-3-2.yaml","compound 3"],["polyketides/compound-5-2.yaml","compound 5"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":11,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"],["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["laboratory-facility-envo-01001406.html","laboratory facility"],["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["bone-element-uberon-0001474.html","bone element"],["juvenile-bto-0002168.html","juvenile"]],"b":[["amino_acids_and_peptides/cutimycin.yaml","cutimycin"]]},{"id":"NCBITaxon:229533","l":"Fusarium graminearum PH-1","na":1,"nb":11,"a":[["soil-envo-00001998.html","soil"]],"b":[["alkaloids/chrysogine.yaml","chrysogine"],["amino_acids_and_peptides/fusaoctaxin-a.yaml","fusaoctaxin A"],["polyketides/aurofusarin.yaml","aurofusarin"],["polyketides/prolipyrone-b.yaml","prolipyrone B"],["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"],["terpenoids/15-acetyldeoxynivalenol.yaml","15-acetyldeoxynivalenol"]]},{"id":"NCBITaxon:38033","l":"Chaetomium globosum","na":1,"nb":11,"a":[["desert-sand-envo-00005800.html","desert sand"]],"b":[["alkaloids/chaetoglobosin-c.yaml","chaetoglobosin C"],["alkaloids/cytoglobosin-x.yaml","cytoglobosin X"],["polyketides/11-epichaetomugilin-a.yaml","11-epichaetomugilin A"],["polyketides/azanigerone-a.yaml","azanigerone A"],["polyketides/chaetoviridin-e.yaml","chaetoviridin E"],["polyketides/shanorellin.yaml","shanorellin"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":1,"nb":11,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["amino_acids_and_peptides/ferrichrome.yaml","ferrichrome"],["polyketides/1-2-3-5-10-tetrahydroxy-7-methoxy-4-oxo-1-2-3-4-tetrahydroanthracen-2-yl-pentane.yaml","1-(2,3,5,10-tetrahydroxy-7-methoxy-4-oxo-1,2,3,4-tetrahydroanthracen-2-yl)pentane-2,4-dione"],["polyketides/azanigerone-a.yaml","azanigerone A"],["polyketides/campyrone-b.yaml","campyrone B"],["polyketides/desmethyl-tan-1612.yaml","desmethyl TAN-1612"],["polyketides/fumonisin-b2.yaml","fumonisin B2"]]},{"id":"NCBITaxon:111805","l":"Actinomadura pelletieri","na":10,"nb":1,"a":[["lake-envo-00000020.html","lake"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["foot-bto-0000476.html","foot"],["rhizosphere-envo-00005801.html","rhizosphere"],["organic-material-envo-01000155.html","organic material"]],"b":[["alkaloids/undecylprodigiosin-2.yaml","undecylprodigiosin"]]},{"id":"NCBITaxon:1716","l":"Corynebacterium","na":10,"nb":1,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["ileum-bto-0000620.html","ileum"],["juvenile-bto-0002168.html","juvenile"],["mucosa-bto-0000886.html","mucosa"],["nectar-bto-0000537.html","nectar"]],"b":[["alkaloids/corynecin-iii.yaml","corynecin III"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa (strain ATCC 15692 / DSM 22644 / CIP 104116 / JCM 14847 / LMG 12228 / 1C / PRS 101 / PAO1)","na":1,"nb":10,"a":[["style-bto-0001313.html","style"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:543","l":"Enterobacteriaceae","na":10,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"],["midgut-bto-0000863.html","midgut"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":9,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["fresh-water-envo-00002011.html","fresh water"],["river-envo-00000022.html","river"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["alkaloids/molybdenum-cofactor.yaml","molybdenum cofactor"]]},{"id":"NCBITaxon:1817","l":"Nocardia","na":1,"nb":9,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["alkaloids/rebeccamycin.yaml","rebeccamycin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/nocathiacin-i.yaml","nocathiacin I"],["amino_acids_and_peptides/ristocetin-a.yaml","Ristocetin A"],["amino_acids_and_peptides/vancomycin.yaml","vancomycin"],["polyketides/macbecin-ii.yaml","macbecin II"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":9,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["mud-envo-01000001.html","mud"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":8,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["alimentary-canal-bto-0000058.html","alimentary canal"],["blood-bto-0000089.html","blood"],["small-intestine-bto-0000651.html","small intestine"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["geographic-feature-envo-00000000.html","geographic feature"]],"b":[["amino_acids_and_peptides/salivaricin-d.yaml","salivaricin D"]]},{"id":"NCBITaxon:1836","l":"Saccharopolyspora erythraea","na":1,"nb":8,"a":[["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["amino_acids_and_peptides/erythrochelin.yaml","erythrochelin"],["polyketides/3-3-diflaviolin.yaml","3,3'-diflaviolin"],["polyketides/erythromycin-a.yaml","erythromycin A"],["polyketides/erythromycin-b.yaml","erythromycin B"],["polyketides/flaviolin-rhamnoside.yaml","flaviolin rhamnoside"],["polyketides/flaviolin.yaml","flaviolin"]]},{"id":"NCBITaxon:1908","l":"Streptomyces globisporus","na":1,"nb":8,"a":[["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["polyketides/c-1027-chromophore.yaml","C-1027 chromophore"],["polyketides/c-1027.yaml","C-1027"],["polyketides/landomycin-a.yaml","landomycin A"],["polyketides/nonactin.yaml","nonactin"],["polyketides/prejadomycin.yaml","prejadomycin"],["polyketides/tetranactin.yaml","tetranactin"]]},{"id":"NCBITaxon:326423","l":"Bacillus velezensis FZB42","na":1,"nb":8,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["polyketides/bacillaene.yaml","bacillaene"],["polyketides/difficidin.yaml","difficidin"],["polyketides/macrolactin-h.yaml","macrolactin H"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:420953","l":"Paraburkholderia megapolitana","na":1,"nb":8,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["amino_acids_and_peptides/megapolibactin-a.yaml","megapolibactin A"],["amino_acids_and_peptides/megapolibactin-acyc.yaml","megapolibactin Acyc"],["amino_acids_and_peptides/megapolibactin-b.yaml","megapolibactin B"],["amino_acids_and_peptides/megapolibactin-c.yaml","megapolibactin C"],["amino_acids_and_peptides/megapolibactin-d.yaml","megapolibactin D"],["amino_acids_and_peptides/megapolibactin-e.yaml","megapolibactin E"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":8,"nb":1,"a":[["beach-envo-00000091.html","beach"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["sea-sand-envo-00002118.html","sea sand"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["polyketides/haliamide.yaml","haliamide"]]},{"id":"NCBITaxon:680198","l":"Streptomyces scabiei 87.22","na":1,"nb":8,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["alkaloids/rotihibin-a.yaml","rotihibin A"],["amino_acids_and_peptides/bottromycin-a2.yaml","bottromycin A2"],["amino_acids_and_peptides/edha.yaml","EDHA"],["amino_acids_and_peptides/scabichelin.yaml","scabichelin"],["amino_acids_and_peptides/thaxtomin-c.yaml","thaxtomin C"],["unclassified/n-coronafacoyl-l-isoleucine.yaml","N-coronafacoyl-L-isoleucine"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":7,"nb":1,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["farm-envo-00000078.html","farm"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["unclassified/rhodochelin.yaml","rhodochelin"]]},{"id":"NCBITaxon:1044","l":"Erythrobacter longus","na":7,"nb":1,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["small-river-biome-envo-00000890.html","small river biome"],["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["biofilm-material-envo-01000156.html","biofilm material"]],"b":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]]},{"id":"NCBITaxon:83455","l":"Myxococcus stipitatus","na":7,"nb":1,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["plant-litter-envo-01000628.html","plant litter"],["sand-envo-01000017.html","sand"]],"b":[["polyketides/phenalamide-a2.yaml","phenalamide A2"]]},{"id":"NCBITaxon:1069","l":"Rhodomicrobium vannielii","na":6,"nb":1,"a":[["lake-envo-00000020.html","lake"],["stream-envo-00000023.html","stream"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["rhizosphere-envo-00005801.html","rhizosphere"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["terpenoids/carotene.yaml","β-carotene"]]},{"id":"NCBITaxon:1311","l":"Streptococcus agalactiae","na":6,"nb":1,"a":[["kidney-bto-0000671.html","kidney"],["milk-uberon-0001913.html","milk"],["oropharynx-bto-0005257.html","oropharynx"],["urine-bto-0001419.html","urine"],["urogenital-system-bto-0003091.html","urogenital system"],["vagina-bto-0000243.html","vagina"]],"b":[["carbohydrates/capsular-polysaccharide-3.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:205922","l":"Pseudomonas fluorescens Pf0-1","na":6,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["cold-environment-envo-01000309.html","cold environment"],["microbial-mat-material-envo-01000157.html","microbial mat material"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"],["agricultural-soil-envo-00002259.html","agricultural soil"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["unclassified/gacamide-a.yaml","gacamide A"]]},{"id":"NCBITaxon:278992","l":"Streptomyces ambofaciens ATCC 23877","na":1,"nb":6,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["alkaloids/congocidine.yaml","congocidine"],["polyketides/spiramycin.yaml","spiramycin"],["polyketides/stambomycin-a.yaml","stambomycin A"],["polyketides/stambomycin-b.yaml","stambomycin B"],["polyketides/stambomycin-c.yaml","stambomycin C"],["polyketides/stambomycin-d.yaml","stambomycin D"]]},{"id":"NCBITaxon:37632","l":"Amycolatopsis sp.","na":1,"nb":6,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["amino_acids_and_peptides/ristocetin-a.yaml","Ristocetin A"],["polyketides/rifamorpholine-a.yaml","rifamorpholine A"],["polyketides/rifamorpholine-b.yaml","rifamorpholine B"],["polyketides/rifamorpholine-c.yaml","rifamorpholine C"],["polyketides/rifamorpholine-d.yaml","rifamorpholine D"],["polyketides/rifamorpholine-e.yaml","rifamorpholine E"]]},{"id":"NCBITaxon:446","l":"Legionella pneumophila","na":6,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["hospital-envo-00002173.html","hospital"],["macrophage-bto-0000801.html","macrophage"],["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["fatty_acids/lipopolysaccharide.yaml","lipopolysaccharide"]]},{"id":"NCBITaxon:5530","l":"Metarhizium anisopliae","na":1,"nb":6,"a":[["soil-envo-00001998.html","soil"]],"b":[["alkaloids/ng-391.yaml","NG-391"],["amino_acids_and_peptides/serinocyclin-a.yaml","serinocyclin A"],["amino_acids_and_peptides/serinocyclin-b.yaml","serinocyclin B"],["fatty_acids/baa.yaml","BAA"],["fatty_acids/bab.yaml","BAB"],["unclassified/destruxin-a.yaml","destruxin A"]]},{"id":"NCBITaxon:115828","l":"Streptomyces maritimus","na":5,"nb":1,"a":[["farm-envo-00000078.html","farm"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["plain-envo-00000086.html","plain"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["terpenoids/enterocin.yaml","enterocin"]]},{"id":"NCBITaxon:1275","l":"Kocuria rosea","na":5,"nb":1,"a":[["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["marine-environment-envo-01000320.html","marine environment"],["oil-spill-envo-00002061.html","oil spill"],["painting-habitatmech-bacdive-0bfb662164.html","Painting"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["amino_acids_and_peptides/kocurin.yaml","kocurin"]]},{"id":"NCBITaxon:1292","l":"Staphylococcus warneri","na":5,"nb":1,"a":[["neonate-bto-0001762.html","neonate"],["skin-of-body-uberon-0002097.html","skin of body"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["amino_acids_and_peptides/nukacin-isk-1.yaml","nukacin ISK-1"]]},{"id":"NCBITaxon:168695","l":"Salinispora tropica","na":1,"nb":5,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["alkaloids/lymphostin.yaml","lymphostin"],["amino_acids_and_peptides/salinosporamide-a.yaml","salinosporamide A"],["polyketides/lomaiviticin-a.yaml","lomaiviticin A"],["polyketides/sporolide-b.yaml","sporolide B"],["unclassified/salinilactam.yaml","salinilactam"]]},{"id":"NCBITaxon:168697","l":"Salinispora arenicola","na":1,"nb":5,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["amino_acids_and_peptides/cyclomarin-d.yaml","cyclomarin D"],["polyketides/arenimycin-a.yaml","arenimycin A"],["polyketides/rifamycin-sv.yaml","rifamycin SV"],["unclassified/emericellamide-a.yaml","emericellamide A"],["unclassified/emericellamide-b.yaml","emericellamide B"]]},{"id":"NCBITaxon:29303","l":"Streptomyces cattleya","na":1,"nb":5,"a":[["clay-envo-00002982.html","clay"]],"b":[["amino_acids_and_peptides/cattlecin.yaml","cattlecin"],["amino_acids_and_peptides/clavulanic-acid.yaml","clavulanic acid"],["amino_acids_and_peptides/ethynylserine.yaml","β-ethynylserine"],["amino_acids_and_peptides/thienamycin.yaml","thienamycin"],["terpenoids/cattleyene.yaml","cattleyene"]]},{"id":"NCBITaxon:43","l":"Cystobacter fuscus","na":1,"nb":5,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"]],"b":[["amino_acids_and_peptides/cystomanamide-a.yaml","cystomanamide A"],["amino_acids_and_peptides/cystomanamide-b.yaml","cystomanamide B"],["amino_acids_and_peptides/cystomanamide-c.yaml","cystomanamide C"],["amino_acids_and_peptides/cystomanamide-d.yaml","cystomanamide D"],["unclassified/cystothiazole-a.yaml","cystothiazole A"]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":1,"nb":5,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["alkaloids/9-deoxy-tilivalline.yaml","9-deoxy tilivalline"],["alkaloids/dehydro-tilivalline.yaml","dehydro tilivalline"],["alkaloids/dihydroxy-dehydro-tilivalline.yaml","dihydroxy-dehydro tilivalline"],["alkaloids/dihydroxy-tilivalline.yaml","dihydroxy tilivalline"],["alkaloids/tilivalline.yaml","tilivalline"]]},{"id":"NCBITaxon:95486","l":"Burkholderia cenocepacia","na":5,"nb":1,"a":[["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["unclassified/ornibactin-c8.yaml","ornibactin C8"]]},{"id":"NCBITaxon:1038928","l":"Streptomyces xinghaiensis","na":1,"nb":4,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["alkaloids/dixiamycin-a.yaml","dixiamycin A"],["alkaloids/xiamycin-a.yaml","xiamycin A"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"],["polyketides/oligomycin.yaml","oligomycin"]]},{"id":"NCBITaxon:1827","l":"Rhodococcus ","na":4,"nb":1,"a":[["nectar-bto-0000537.html","nectar"],["pitcher-bto-0001069.html","pitcher"],["small-intestine-bto-0000651.html","small intestine"],["stem-bto-0001300.html","stem"]],"b":[["alkaloids/corynecin-iii.yaml","corynecin III"]]},{"id":"NCBITaxon:1965334","l":"Cystobacter sp.","na":1,"nb":4,"a":[["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["unclassified/vioprolide-a.yaml","vioprolide A"],["unclassified/vioprolide-b.yaml","vioprolide B"],["unclassified/vioprolide-c.yaml","vioprolide C"],["unclassified/vioprolide-d.yaml","vioprolide D"]]},{"id":"NCBITaxon:1967","l":"Streptomyces kanamyceticus","na":1,"nb":4,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["amino_acids_and_peptides/gausemycin-a.yaml","gausemycin A"],["amino_acids_and_peptides/gausemycin-b.yaml","gausemycin B"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/kanamycin-a.yaml","kanamycin A"]]},{"id":"NCBITaxon:227882","l":"Streptomyces avermitilis (strain ATCC 31267 / DSM 46492 / JCM 5070 / NBRC 14893 / NCIMB 12804 / NRRL 8165 / MA-4680)","na":1,"nb":4,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["amino_acids_and_peptides/edha.yaml","EDHA"],["polyketides/filipin-iii.yaml","filipin III"],["terpenoids/avermitilol.yaml","avermitilol"],["terpenoids/pentalenolactone.yaml","pentalenolactone"]]},{"id":"NCBITaxon:2745","l":"Halomonas","na":1,"nb":4,"a":[["wood-bto-0005516.html","wood"]],"b":[["amino_acids_and_peptides/potashchelin-a.yaml","potashchelin A"],["amino_acids_and_peptides/potashchelin-b.yaml","potashchelin B"],["amino_acids_and_peptides/potashchelin-c.yaml","potashchelin C"],["amino_acids_and_peptides/potashchelin-d.yaml","potashchelin D"]]},{"id":"NCBITaxon:310350","l":"Nocardiopsis sp.","na":1,"nb":4,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["alkaloids/k-252a.yaml","K-252a"],["polyketides/nocardiopsistin-a.yaml","nocardiopsistin A"],["polyketides/nocardiopsistin-b.yaml","nocardiopsistin B"],["polyketides/nocardiopsistin-c.yaml","nocardiopsistin C"]]},{"id":"NCBITaxon:362","l":"Agrobacterium radiobacter","na":4,"nb":1,"a":[["plant-gall-po-0025626.html","plant gall"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["alkaloids/agrobactin.yaml","agrobactin"]]},{"id":"NCBITaxon:68570","l":"","na":1,"nb":4,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["amino_acids_and_peptides/deimino-antipain.yaml","deimino-antipain"],["polyketides/nystatin.yaml","nystatin"],["unclassified/albonoursin.yaml","albonoursin"],["unclassified/citrulassin-a.yaml","citrulassin A"]]},{"id":"NCBITaxon:746360","l":"Pseudomonas fluorescens WH6","na":4,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["human-construction-envo-00000070.html","human construction"],["cold-environment-envo-01000309.html","cold environment"],["peatland-envo-00000044.html","peatland"]],"b":[["amino_acids_and_peptides/4-formylaminooxyvinylglycine.yaml","4-formylaminooxyvinylglycine"]]},{"id":"NCBITaxon:85698","l":"","na":4,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["amino_acids_and_peptides/alcaligin.yaml","alcaligin"]]},{"id":"NCBITaxon:86667","l":"Jeotgalibacillus marinus","na":1,"nb":4,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"]],"b":[["fatty_acids/macrolactin-1c.yaml","macrolactin 1c"],["fatty_acids/macrolactin-b.yaml","macrolactin B"],["polyketides/macrolactin-e.yaml","macrolactin E"],["polyketides/macrolactin-h.yaml","macrolactin H"]]},{"id":"NCBITaxon:103232","l":"Streptomyces ipomoeae","na":1,"nb":3,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["amino_acids_and_peptides/thaxtomin-c.yaml","thaxtomin C"],["unclassified/thaxtomin-a.yaml","thaxtomin A"],["unclassified/thaxtomin-b.yaml","thaxtomin B"]]},{"id":"NCBITaxon:107635","l":"Methylosinus sp. LW3","na":3,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"]],"b":[["amino_acids_and_peptides/group-1-methanobactin.yaml","group 1 methanobactin"]]},{"id":"NCBITaxon:1570","l":"Halobacillus halophilus","na":3,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:1904","l":"Streptomyces cyaneus","na":1,"nb":3,"a":[["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["carbohydrates/curamycin.yaml","curamycin"],["polyketides/cardol.yaml","cardol"],["polyketides/cosmomycin-d.yaml","cosmomycin D"]]},{"id":"NCBITaxon:1935","l":"Streptomyces violaceoruber","na":1,"nb":3,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["polyketides/granaticin.yaml","granaticin"],["polyketides/kendomycin.yaml","kendomycin"],["terpenoids/methylenomycin-a.yaml","methylenomycin A"]]},{"id":"NCBITaxon:216591","l":"Burkholderia cenocepacia J2315","na":1,"nb":3,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["unclassified/ornibactin-c4.yaml","ornibactin C4"],["unclassified/ornibactin-c6.yaml","ornibactin C6"],["unclassified/ornibactin-c8.yaml","ornibactin C8"]]},{"id":"NCBITaxon:216595","l":"","na":3,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["human-construction-envo-00000070.html","human construction"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["unclassified/viscosin.yaml","viscosin"]]},{"id":"NCBITaxon:237","l":"Flavobacterium","na":3,"nb":1,"a":[["column-bto-0005692.html","column"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"]]},{"id":"NCBITaxon:264951","l":"Paecilomyces variotii","na":1,"nb":3,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["polyketides/agnestin-a.yaml","agnestin A"],["polyketides/agnestin-b.yaml","agnestin B"],["polyketides/viriditoxin.yaml","viriditoxin"]]},{"id":"NCBITaxon:28447","l":"Clavibacter michiganensis","na":3,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["canker-habitatmech-bacdive-0f078d72a7.html","Canker"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["amino_acids_and_peptides/michiganin-a.yaml","michiganin A"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":3,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["sludge-envo-00002044.html","sludge"],["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"NCBITaxon:384676","l":"","na":1,"nb":3,"a":[["coelom-bto-0001707.html","coelom"]],"b":[["alkaloids/labradorin-1.yaml","labradorin 1"],["alkaloids/labradorin-2.yaml","labradorin 2"],["alkaloids/pimprinine.yaml","pimprinine"]]},{"id":"NCBITaxon:388467","l":"Planktothrix agardhii NIVA-CYA 126/8","na":1,"nb":3,"a":[["filament-bto-0000463.html","filament"]],"b":[["amino_acids_and_peptides/anabaenopeptin-908.yaml","anabaenopeptin 908"],["amino_acids_and_peptides/anabaenopeptin-915.yaml","anabaenopeptin 915"],["amino_acids_and_peptides/microcystin.yaml","microcystin"]]},{"id":"NCBITaxon:393595","l":"Alcanivorax borkumensis SK2","na":1,"nb":3,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["amino_acids_and_peptides/amphibactin-e.yaml","amphibactin E"],["amino_acids_and_peptides/amphibactin-h.yaml","amphibactin H"],["fatty_acids/amphibactin-i.yaml","amphibactin I"]]},{"id":"NCBITaxon:448385","l":"","na":1,"nb":3,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["polyketides/etnangien.yaml","etnangien"],["polyketides/soraphen-a.yaml","soraphen A"],["terpenoids/eremophilene.yaml","(+)-eremophilene"]]},{"id":"NCBITaxon:45","l":"Melittangium lichenicola","na":3,"nb":1,"a":[["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["unclassified/melithiazol-a.yaml","melithiazol A"]]},{"id":"NCBITaxon:469371","l":"Thermobispora bispora DSM 43833","na":3,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["amino_acids_and_peptides/thiomuracin.yaml","thiomuracin"]]},{"id":"NCBITaxon:47312","l":"Tsukamurella pulmonis","na":3,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["tuberculosis-habitatmech-bacdive-e5d21f85b7.html","Tuberculosis"]],"b":[["amino_acids_and_peptides/longicatenamide-a.yaml","longicatenamide A"]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":3,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:757424","l":"Herbaspirillum seropedicae SmR1","na":1,"nb":3,"a":[["environmental-material-envo-00010483.html","environmental material"]],"b":[["amino_acids_and_peptides/serobactin-a.yaml","serobactin A"],["amino_acids_and_peptides/serobactin-b.yaml","serobactin B"],["amino_acids_and_peptides/serobactin-c.yaml","serobactin C"]]},{"id":"NCBITaxon:1074049","l":"Candidatus Burkholderia crenata","na":2,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"],["seedling-bto-0001228.html","seedling"]],"b":[["unclassified/fr900359.yaml","FR900359"]]},{"id":"NCBITaxon:1122611","l":"Nonomuraea coxensis DSM 45129","na":1,"nb":2,"a":[["sand-envo-01000017.html","sand"]],"b":[["amino_acids_and_peptides/a50926-a.yaml","A50926 A"],["amino_acids_and_peptides/a50926-b.yaml","A50926 B"]]},{"id":"NCBITaxon:1267754","l":"Corynebacterium urealyticum DSM 7111","na":2,"nb":1,"a":[["kidney-bto-0000671.html","kidney"],["urinary-tract-bto-0001244.html","urinary tract"]],"b":[["amino_acids_and_peptides/corynazolicin.yaml","corynazolicin"]]},{"id":"NCBITaxon:1281","l":"Staphylococcus carnosus","na":2,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["alkaloids/molybdenum-cofactor.yaml","molybdenum cofactor"]]},{"id":"NCBITaxon:1284","l":"Staphylococcus hyicus","na":1,"nb":2,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["unclassified/staphyloferrin-a.yaml","staphyloferrin A"]]},{"id":"NCBITaxon:1360","l":"Lactococcus lactis subsp. lactis","na":1,"nb":2,"a":[["foregut-bto-0000507.html","foregut"]],"b":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"],["amino_acids_and_peptides/nisin-a.yaml","nisin A"]]},{"id":"NCBITaxon:13684","l":"Parastagonospora nodorum","na":2,"nb":1,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["desert-sand-envo-00005800.html","desert sand"]],"b":[["shikimates_and_phenylpropanoids/mellein.yaml","(-)-Mellein"]]},{"id":"NCBITaxon:13689","l":"Sphingomonas paucimobilis","na":2,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"]],"b":[["unclassified/minimycin.yaml","minimycin"]]},{"id":"NCBITaxon:1550035","l":"Streptomyces sp. NBRC 109706","na":1,"nb":2,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["polyketides/akaeolide.yaml","akaeolide"],["polyketides/lorneic-acid-a.yaml","lorneic acid A"]]},{"id":"NCBITaxon:1703","l":"Brevibacterium linens","na":1,"nb":2,"a":[["animal-waste-material-envo-00002276.html","animal waste material"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"],["terpenoids/isorenieratene.yaml","isorenieratene"]]},{"id":"NCBITaxon:173560","l":"Saccharothrix algeriensis","na":1,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["alkaloids/holomycin.yaml","holomycin"],["alkaloids/thiolutin.yaml","thiolutin"]]},{"id":"NCBITaxon:1946","l":"Streptomyces kasugaensis","na":1,"nb":2,"a":[["plain-envo-00000086.html","plain"]],"b":[["alkaloids/thiolutin.yaml","thiolutin"],["carbohydrates/kasugamycin.yaml","kasugamycin"]]},{"id":"NCBITaxon:2014","l":"Nocardiopsis dassonvillei","na":2,"nb":1,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["alkaloids/iodinin.yaml","iodinin"]]},{"id":"NCBITaxon:2045","l":"Nocardioides simplex","na":2,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:205918","l":"Pseudomonas syringae pv. syringae B728a","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["alkaloids/secimide.yaml","secimide"],["unclassified/syringomycin.yaml","syringomycin"]]},{"id":"NCBITaxon:2062","l":"Streptomycetaceae","na":1,"nb":2,"a":[["crop-bto-0000301.html","crop"]],"b":[["alkaloids/carbazomycin-b.yaml","carbazomycin B"],["unclassified/quinomycin.yaml","quinomycin"]]},{"id":"NCBITaxon:234621","l":"Rhodococcus erythropolis PR4","na":1,"nb":2,"a":[["joint-bto-0001686.html","joint"]],"b":[["amino_acids_and_peptides/heterobactin-a.yaml","heterobactin A"],["amino_acids_and_peptides/heterobactin-s2.yaml","heterobactin S2"]]},{"id":"NCBITaxon:249586","l":"Streptomyces cacaoi subsp. asoensis","na":1,"nb":2,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["carbohydrates/polyoxin-a.yaml","polyoxin A"],["carbohydrates/polyoxin-h.yaml","polyoxin H"]]},{"id":"NCBITaxon:263358","l":"Verrucosispora maris AB-18-032","na":1,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["polyketides/abyssomicin-c.yaml","abyssomicin C"],["polyketides/atrop-abyssomicin-c.yaml","atrop-abyssomicin C"]]},{"id":"NCBITaxon:28094","l":"Trinickia caryophylli","na":1,"nb":2,"a":[["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["amino_acids_and_peptides/gramibactin-b.yaml","gramibactin B"],["fatty_acids/caryoynencin.yaml","caryoynencin"]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["carbohydrates/legionaminic-acid.yaml","legionaminic acid"],["carbohydrates/pseudaminate.yaml","pseudaminate"]]},{"id":"NCBITaxon:298386","l":"Photobacterium profundum SS9","na":2,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["underground-water-envo-00005792.html","underground water"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans Pd1222","na":2,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["alkaloids/parabactin.yaml","parabactin"]]},{"id":"NCBITaxon:337330","l":"Lactiplantibacillus plantarum subsp. plantarum","na":2,"nb":1,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:357","l":"Agrobacterium","na":2,"nb":1,"a":[["stem-bto-0001300.html","stem"],["trunk-bto-0001493.html","trunk"]],"b":[["alkaloids/sesbanimide-c.yaml","sesbanimide C"]]},{"id":"NCBITaxon:362242","l":"","na":2,"nb":1,"a":[["subcutaneous-tissue-bto-0004525.html","subcutaneous tissue"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["polyketides/mycolactone-b.yaml","mycolactone B"]]},{"id":"NCBITaxon:36746","l":"Pseudomonas cichorii","na":1,"nb":2,"a":[["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["amino_acids_and_peptides/cichofactin-a.yaml","cichofactin A"],["amino_acids_and_peptides/cichofactin-b.yaml","cichofactin B"]]},{"id":"NCBITaxon:37329","l":"Nocardia farcinica","na":2,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["amino_acids_and_peptides/nocobactin-na.yaml","nocobactin NA"]]},{"id":"NCBITaxon:397945","l":"Acidovorax citrulli AAC00-1","na":1,"nb":2,"a":[["river-bed-envo-00000384.html","river bed"]],"b":[["unclassified/acidobactin-a.yaml","acidobactin A"],["unclassified/acidobactin-b.yaml","acidobactin B"]]},{"id":"NCBITaxon:41899","l":"Burkholderia plantarii","na":2,"nb":1,"a":[["panicle-bto-0005436.html","panicle"],["seedling-bto-0001228.html","seedling"]],"b":[["amino_acids_and_peptides/plantaribactin.yaml","plantaribactin"]]},{"id":"NCBITaxon:42234","l":"Streptomyces acidiscabies","na":1,"nb":2,"a":[["a10-cell-bto-0002196.html","A10 cell"]],"b":[["fatty_acids/butyrolactone.yaml","γ-butyrolactone"],["unclassified/thaxtomin-a.yaml","thaxtomin A"]]},{"id":"NCBITaxon:443906","l":"Clavibacter michiganensis subsp. michiganensis NCPPB 382","na":2,"nb":1,"a":[["xylem-bto-0001468.html","xylem"],["peatland-envo-00000044.html","peatland"]],"b":[["amino_acids_and_peptides/michiganin-a.yaml","michiganin A"]]},{"id":"NCBITaxon:4558","l":"Sorghum bicolor","na":1,"nb":2,"a":[["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["amino_acids_and_peptides/s-4-hydroxymandelonitrile-d-glucoside.yaml","(S)-4-hydroxymandelonitrile β-D-glucoside"],["shikimates_and_phenylpropanoids/alternariol.yaml","alternariol"]]},{"id":"NCBITaxon:457429","l":"","na":1,"nb":2,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["amino_acids_and_peptides/pristinin-a3.yaml","pristinin A3"],["terpenoids/2s-3r-9r-pristinol.yaml","(+)-(2S,3R,9R)-pristinol"]]},{"id":"NCBITaxon:47917","l":"Serratia fonticola","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"]],"b":[["alkaloids/1-6-phenazinedimethanol.yaml","1,6-phenazinedimethanol"]]},{"id":"NCBITaxon:497965","l":"","na":2,"nb":1,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["fatty_acids/1-heptadecene.yaml","1-heptadecene"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":1,"nb":2,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["amino_acids_and_peptides/aerobactin.yaml","aerobactin"],["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:58340","l":"Streptomyces lavendulae subsp. lavendulae","na":1,"nb":2,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["amino_acids_and_peptides/cycloserine.yaml","cycloserine"],["polyketides/auricin.yaml","auricin"]]},{"id":"NCBITaxon:587","l":"Providencia rettgeri","na":2,"nb":1,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["fumarole-envo-00000216.html","fumarole"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:60550","l":"Burkholderia pyrrocinia","na":1,"nb":2,"a":[["seedling-bto-0001228.html","seedling"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/occidiofungin-a.yaml","occidiofungin A"]]},{"id":"NCBITaxon:60894","l":"Saccharopolyspora spinosa","na":1,"nb":2,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["polyketides/a83543a.yaml","A83543A"],["polyketides/spinosyn-d.yaml","spinosyn D"]]},{"id":"NCBITaxon:648","l":"Aeromonas caviae","na":2,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:65","l":"Herpetosiphon aurantiacus","na":1,"nb":2,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["alkaloids/auriculamide.yaml","auriculamide"],["terpenoids/o-methylkolavelool.yaml","(+)-O-methylkolavelool"]]},{"id":"NCBITaxon:67274","l":"Streptomyces argenteolus","na":1,"nb":2,"a":[["plain-envo-00000086.html","plain"]],"b":[["amino_acids_and_peptides/carbapenem-mm4550.yaml","carbapenem MM4550"],["terpenoids/ks-505a.yaml","KS-505a"]]},{"id":"NCBITaxon:68042","l":"Streptomyces hygroscopicus subsp. hygroscopicus","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["terpenoids/hygromycin-a.yaml","hygromycin A"]]},{"id":"NCBITaxon:68170","l":"Lechevalieria aerocolonigenes","na":1,"nb":2,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["alkaloids/rebeccamycin.yaml","rebeccamycin"],["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:68203","l":"Streptomyces fungicidicus","na":1,"nb":2,"a":[["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["unclassified/enduracidin-a.yaml","enduracidin A"],["unclassified/enduracidin-b.yaml","enduracidin B"]]},{"id":"NCBITaxon:71999","l":"Kocuria palustris","na":2,"nb":1,"a":[["duodenal-mucosa-bto-0000367.html","duodenal mucosa"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"]],"b":[["amino_acids_and_peptides/kocurin.yaml","kocurin"]]},{"id":"NCBITaxon:720","l":"Actinobacillus lignieresii","na":2,"nb":1,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["unclassified/capsular-polysaccharide.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:80866","l":"Delftia acidovorans","na":1,"nb":2,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["amino_acids_and_peptides/delftibactin-a.yaml","delftibactin A"],["amino_acids_and_peptides/delftibactin-b.yaml","delftibactin B"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":2,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["fatty_acids/galactosylceramide.yaml","α-galactosylceramide"]]},{"id":"NCBITaxon:88728","l":"Pinus koraiensis","na":2,"nb":1,"a":[["lagoon-envo-00000038.html","lagoon"],["tropical-envo-01000204.html","tropical"]],"b":[["terpenoids/koraiol.yaml","koraiol"]]},{"id":"NCBITaxon:9031","l":"Gallus gallus","na":2,"nb":1,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:92743","l":"Streptomyces rimosus subsp. paromomycinus","na":1,"nb":2,"a":[["plain-envo-00000086.html","plain"]],"b":[["amino_acids_and_peptides/malonomycin.yaml","malonomycin"],["carbohydrates/paromomycin.yaml","paromomycin"]]},{"id":"NCBITaxon:1004","l":"Chitinophaga sancti","na":1,"nb":1,"a":[["plant-bto-0001481.html","plant"]],"b":[["polyketides/elansolid-a1.yaml","elansolid A1"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"]]},{"id":"NCBITaxon:1077944","l":"Streptomyces muensis","na":1,"nb":1,"a":[["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["unclassified/griselimycin.yaml","griselimycin"]]},{"id":"NCBITaxon:1091494","l":"Methylotuvimicrobium alcaliphilum 20Z","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:1108595","l":"Chromobacterium vaccinii","na":1,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["unclassified/fr900359-2.yaml","FR900359"]]},{"id":"NCBITaxon:111781","l":"Leptolyngbya sp. PCC 7376","na":1,"nb":1,"a":[["rock-envo-00001995.html","rock"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"]]},{"id":"NCBITaxon:111807","l":"Actinomadura yumaensis","na":1,"nb":1,"a":[["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["polyketides/maduramicin.yaml","maduramicin"]]},{"id":"NCBITaxon:1137255","l":"Salinispora arenicola CNT005","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["unclassified/retimycin-a.yaml","retimycin A"]]},{"id":"NCBITaxon:114497","l":"Cordyceps fumosorosea","na":1,"nb":1,"a":[["low-tide-zone-envo-00000319.html","low tide zone"]],"b":[["polyketides/fumosorinone.yaml","fumosorinone"]]},{"id":"NCBITaxon:1200302","l":"Photobacterium damselae subsp. piscicida DI21","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["alkaloids/piscibactin.yaml","piscibactin"]]},{"id":"NCBITaxon:1293","l":"Staphylococcus gallinarum","na":1,"nb":1,"a":[["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["amino_acids_and_peptides/gallidermin.yaml","gallidermin"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["alkaloids/petrobactin.yaml","petrobactin"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:1599","l":"Latilactobacillus sakei","na":1,"nb":1,"a":[["research-facility-envo-00000469.html","research facility"]],"b":[["unclassified/lactocin-s.yaml","lactocin S"]]},{"id":"NCBITaxon:173365","l":"Methylobacter tundripaludum","na":1,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["unclassified/tundrenone.yaml","tundrenone"]]},{"id":"NCBITaxon:1989","l":"Actinomadura sp.","na":1,"nb":1,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["polyketides/maduramicin.yaml","maduramicin"]]},{"id":"NCBITaxon:1993","l":"Actinomadura madurae","na":1,"nb":1,"a":[["foot-bto-0000476.html","foot"]],"b":[["polyketides/maduropeptin.yaml","maduropeptin"]]},{"id":"NCBITaxon:2074","l":"Pseudonocardia autotrophica","na":1,"nb":1,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["polyketides/nystatin-like-pseudonocardia-polyene-a1.yaml","nystatin-like Pseudonocardia polyene A1"]]},{"id":"NCBITaxon:216895","l":"Vibrio vulnificus CMCP6","na":1,"nb":1,"a":[["hela-cell-bto-0000567.html","HeLa cell"]],"b":[["alkaloids/vulnibactin.yaml","vulnibactin"]]},{"id":"NCBITaxon:22","l":"Shewanella","na":1,"nb":1,"a":[["wood-bto-0005516.html","wood"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"NCBITaxon:226","l":"Alteromonas","na":1,"nb":1,"a":[["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["unclassified/marinostatin.yaml","marinostatin"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":1,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["alkaloids/parabactin.yaml","parabactin"]]},{"id":"NCBITaxon:267747","l":"Cutibacterium acnes KPA171202","na":1,"nb":1,"a":[["sebaceous-gland-bto-0001980.html","sebaceous gland"]],"b":[["amino_acids_and_peptides/cutimycin.yaml","cutimycin"]]},{"id":"NCBITaxon:28035","l":"Staphylococcus lugdunensis","na":1,"nb":1,"a":[["foot-bto-0000476.html","foot"]],"b":[["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]]},{"id":"NCBITaxon:28450","l":"Burkholderia pseudomallei","na":1,"nb":1,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"]],"b":[["polyketides/malleilactone.yaml","malleilactone"]]},{"id":"NCBITaxon:285482","l":"Streptomyces tsusimaensis","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["unclassified/valinomycin-2.yaml","valinomycin"]]},{"id":"NCBITaxon:29447","l":"Xanthomonas albilineans","na":1,"nb":1,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["alkaloids/albicidin.yaml","albicidin"]]},{"id":"NCBITaxon:298653","l":"Frankia sp. EAN1pec","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["polyketides/frankiamicin.yaml","frankiamicin"]]},{"id":"NCBITaxon:299254","l":"Streptomyces sp. NRRL 11266","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["polyketides/tetronomycin.yaml","tetronomycin"]]},{"id":"NCBITaxon:307120","l":"Micromonospora marina","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["unclassified/thiocoraline.yaml","thiocoraline"]]},{"id":"NCBITaxon:312309","l":"Aliivibrio fischeri (strain ATCC 700601 / ES114)","na":1,"nb":1,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["unclassified/ape-vf.yaml","APE Vf"]]},{"id":"NCBITaxon:322710","l":"","na":1,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["amino_acids_and_peptides/azotobactin-d.yaml","azotobactin D"]]},{"id":"NCBITaxon:333964","l":"Xenorhabdus indica","na":1,"nb":1,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["unclassified/taxlllaid-a.yaml","taxlllaid A"]]},{"id":"NCBITaxon:33915","l":"Saccharopolyspora sp.","na":1,"nb":1,"a":[["forested-area-envo-00000111.html","forested area"]],"b":[["amino_acids_and_peptides/kyamicin.yaml","kyamicin"]]},{"id":"NCBITaxon:349521","l":"","na":1,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["alkaloids/prodigiosin-2.yaml","prodigiosin"]]},{"id":"NCBITaxon:349725","l":"Micromonospora sp. ML1","na":1,"nb":1,"a":[["clay-envo-00002982.html","clay"]],"b":[["unclassified/thiocoraline.yaml","thiocoraline"]]},{"id":"NCBITaxon:3654","l":"Citrullus lanatus","na":1,"nb":1,"a":[["wood-bto-0005516.html","wood"]],"b":[["fatty_acids/butyrolactone.yaml","γ-butyrolactone"]]},{"id":"NCBITaxon:376686","l":"Flavobacterium johnsoniae (strain ATCC 17061 / DSM 2064 / JCM 8514 / BCRC 14874 / CCUG 350202 / NBRC 14942 / NCIMB 11054 / UW101)","na":1,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["polyketides/flexirubin.yaml","flexirubin"]]},{"id":"NCBITaxon:38313","l":"Shewanella algae","na":1,"nb":1,"a":[["foot-bto-0000476.html","foot"]],"b":[["amino_acids_and_peptides/avaroferrin.yaml","avaroferrin"]]},{"id":"NCBITaxon:384","l":"Rhizobium leguminosarum","na":1,"nb":1,"a":[["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["amino_acids_and_peptides/vicibactin.yaml","vicibactin"]]},{"id":"NCBITaxon:394193","l":"Amycolatopsis saalfeldensis","na":1,"nb":1,"a":[["cave-envo-00000067.html","cave"]],"b":[["amino_acids_and_peptides/saalfelduracin.yaml","saalfelduracin"]]},{"id":"NCBITaxon:40223","l":"Methylophaga thalassica","na":1,"nb":1,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:4113","l":"Solanum tuberosum","na":1,"nb":1,"a":[["tuber-bto-0001400.html","tuber"]],"b":[["fatty_acids/itaconic-acid.yaml","itaconic acid"]]},{"id":"NCBITaxon:41276","l":"Brevundimonas vesicularis","na":1,"nb":1,"a":[["forested-area-envo-00000111.html","forested area"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:43769","l":"Corynebacterium propinquum","na":1,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["amino_acids_and_peptides/dehydroxynocardamine.yaml","dehydroxynocardamine"]]},{"id":"NCBITaxon:446787","l":"","na":1,"nb":1,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"]]},{"id":"NCBITaxon:45071","l":"Legionella parisiensis","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["shikimates_and_phenylpropanoids/legioliulin.yaml","legioliulin"]]},{"id":"NCBITaxon:4513","l":"Hordeum vulgare","na":1,"nb":1,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["unclassified/roquefortine-c.yaml","roquefortine C"]]},{"id":"NCBITaxon:452652","l":"Kitasatospora setae KM-6054","na":1,"nb":1,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["alkaloids/kitasetaline.yaml","kitasetaline"]]},{"id":"NCBITaxon:463","l":"Fluoribacter dumoffii","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["shikimates_and_phenylpropanoids/legioliulin.yaml","legioliulin"]]},{"id":"NCBITaxon:488447","l":"Burkholderia contaminans","na":1,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["amino_acids_and_peptides/occidiofungin-a.yaml","occidiofungin A"]]},{"id":"NCBITaxon:512","l":"Alcaligenes sp","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["polyketides/kalimantacin-a.yaml","kalimantacin A"]]},{"id":"NCBITaxon:53409","l":"Pseudomonas coronafaciens","na":1,"nb":1,"a":[["pc-12-cell-bto-0001009.html","PC-12 cell"]],"b":[["polyketides/coronatine.yaml","coronatine"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":1,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:547","l":"Enterobacter","na":1,"nb":1,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["amino_acids_and_peptides/andrimid.yaml","andrimid"]]},{"id":"NCBITaxon:570268","l":"Nocardiopsis potens DSM 45234","na":1,"nb":1,"a":[["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"]],"b":[["amino_acids_and_peptides/potensibactin.yaml","potensibactin"]]},{"id":"NCBITaxon:591158","l":"Streptomyces sp. AA4","na":1,"nb":1,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["amino_acids_and_peptides/amychelin-a.yaml","amychelin A"]]},{"id":"NCBITaxon:60890","l":"","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["shikimates_and_phenylpropanoids/tropodithietic-acid.yaml","tropodithietic acid"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":1,"nb":1,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["unclassified/ape-vf.yaml","APE Vf"]]},{"id":"NCBITaxon:68175","l":"Streptomyces antimycoticus","na":1,"nb":1,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["terpenoids/napyradiomycin.yaml","napyradiomycin"]]},{"id":"NCBITaxon:68242","l":"Streptomyces natalensis","na":1,"nb":1,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["polyketides/natamycin.yaml","natamycin"]]},{"id":"NCBITaxon:69485","l":"Actinoplanes garbadinensis","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["amino_acids_and_peptides/actagardine.yaml","actagardine"]]},{"id":"NCBITaxon:703577","l":"Dactylosporangium aurantiacum subsp. hamdenensis","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["polyketides/tiacumicin-b.yaml","tiacumicin B"]]},{"id":"NCBITaxon:715","l":"Actinobacillus pleuropneumoniae","na":1,"nb":1,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["unclassified/capsular-polysaccharide.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["unclassified/lysocin-e.yaml","lysocin E"]]},{"id":"NCBITaxon:749414","l":"","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["polyketides/nanchangmycin.yaml","nanchangmycin"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":1,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["unclassified/mycobactin.yaml","mycobactin"]]},{"id":"NCBITaxon:85336","l":"Rothia nasimurium","na":1,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"]],"b":[["unclassified/valinomycin-2.yaml","valinomycin"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/HabitatMech--ProteinTraitsMech.json b/assets/fleet/edges/HabitatMech--ProteinTraitsMech.json index 605fd12..5d7ba65 100644 --- a/assets/fleet/edges/HabitatMech--ProteinTraitsMech.json +++ b/assets/fleet/edges/HabitatMech--ProteinTraitsMech.json @@ -1 +1 @@ -{"a":"HabitatMech","b":"ProteinTraitsMech","base":{"HabitatMech":"https://culturebotai.github.io/HabitatMech/pages/habitats/","ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record="},"n":1285,"by":{"NCBITaxon":1269,"UBERON":12,"CHEBI":2,"GO":2},"terms":[{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":40,"nb":51,"a":[["liquid-water-envo-00002006.html","liquid water"],["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["laboratory-facility-envo-01001406.html","laboratory facility"],["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["biofilm-bto-0002690.html","biofilm"]],"b":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF13166","AAA domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF27533","CapK C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":36,"nb":156,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["bay-envo-00000032.html","bay"],["freshwater-biome-envo-00000873.html","freshwater biome"],["liquid-water-envo-00002006.html","liquid water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["IDPO%3A0000033","flexible linker"],["IDPO%3A0000014","order to disorder"],["IDPO%3A0000004","pre-molten globule"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":27,"nb":28,"a":[["small-river-biome-envo-00000890.html","small river biome"],["factory-envo-01000536.html","factory"],["organic-waste-material-envo-00002873.html","organic waste material"],["leaf-po-0025034.html","leaf"],["milk-uberon-0001913.html","milk"],["rhizosphere-envo-00005801.html","rhizosphere"]],"b":[["Pfam%3APF08878","HamA"],["Pfam%3APF05791","Bacillus haemolytic enterotoxin (HBL)"],["Pfam%3APF10803","Spore germination GerPB"],["Pfam%3APF10737","Spore germination protein GerPC"],["Pfam%3APF10970","Spore germination protein GerPE"],["Pfam%3APF07486","Cell Wall Hydrolase"]]},{"id":"NCBITaxon:1869227","l":"bacterium","na":26,"nb":57,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["marine-water-body-envo-00001999.html","marine water body"],["watercourse-envo-00000029.html","watercourse"],["laboratory-facility-envo-01001406.html","laboratory facility"]],"b":[["TED%3AAF-A0A2D6E3L3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D6E3L3-F1-model_v4_TED02"],["TED%3AAF-A0A2D6IMF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D6IMF4-F1-model_v4_TED01"],["TED%3AAF-A0A3N5GA95-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3N5GA95-F1-model_v4_TED02"],["TED%3AAF-A0A3N5I065-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N5I065-F1-model_v4_TED01"],["TED%3AAF-A0A496UYV5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A496UYV5-F1-model_v4_TED02"],["TED%3AAF-A0A4Q3U385-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q3U385-F1-model_v4_TED01"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":28,"nb":20,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["liquid-water-envo-00002006.html","liquid water"],["watercourse-envo-00000029.html","watercourse"],["compost-envo-00002170.html","compost"],["hospital-envo-00002173.html","hospital"],["human-construction-envo-00000070.html","human construction"]],"b":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"],["Pfam%3APF18173","Bacterial HORMA domain 2"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["Pfam%3APF27322","Cap8 HORMA domain"],["Pfam%3APF01526","Tn3 transposase DDE domain"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":18,"nb":20,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["Pfam%3APF16822","SGNH hydrolase-like domain, acetyltransferase AlgX"],["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"],["Pfam%3APF11182","Alginate O-acetyl transferase AlgF"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF27129","Functional amyloid protein FapB/FapC family"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":13,"nb":31,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["neutrophil-bto-0000130.html","neutrophil"],["rectum-bto-0001158.html","rectum"],["spleen-bto-0001281.html","spleen"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["Pfam%3APF08787","Alginate lyase"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF08218","Citrate lyase ligase C-terminal domain"],["Pfam%3APF13727","CoA-binding domain"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["Pfam%3APF20714","DpiA-like helix-turn-helix domain"]]},{"id":"NCBITaxon:56","l":"Sorangium cellulosum","na":27,"nb":13,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["watercourse-envo-00000029.html","watercourse"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["TED%3AAF-A0A150SQB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A150SQB4-F1-model_v4_TED01"],["TED%3AAF-A0A2L0EP96-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0EP96-F1-model_v4_TED01"],["TED%3AAF-A0A2L0F1G5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0F1G5-F1-model_v4_TED01"],["TED%3AAF-A0A2L0F230-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0F230-F1-model_v4_TED01"],["TED%3AAF-A0A4P2R1W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P2R1W3-F1-model_v4_TED01"],["TED%3AAF-A0A150P579-F1-model_v4_TED02","TED novel fold AF-A0A150P579-F1-model_v4_TED02"]]},{"id":"NCBITaxon:54","l":"Nannocystis exedens","na":22,"nb":13,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["watercourse-envo-00000029.html","watercourse"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["TED%3AAF-A0A1I2A5Z6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2A5Z6-F1-model_v4_TED01"],["TED%3AAF-A0A1I2FM38-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I2FM38-F1-model_v4_TED02"],["TED%3AAF-A0A1I2H0F9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2H0F9-F1-model_v4_TED01"],["TED%3AAF-A0A831ZMD9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A831ZMD9-F1-model_v4_TED01"],["TED%3AAF-A0A1I1T6U3-F1-model_v4_TED01","TED novel fold AF-A0A1I1T6U3-F1-model_v4_TED01"],["TED%3AAF-A0A1I1XLT5-F1-model_v4_TED02","TED novel fold AF-A0A1I1XLT5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":11,"nb":32,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["resting-cell-bto-0001170.html","resting cell"],["seedling-bto-0001228.html","seedling"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Pfam%3APF14535","AMP-binding enzyme C-terminal domain"],["Pfam%3APF13442","Cytochrome C oxidase, cbb3-type, subunit III"],["Pfam%3APF22247","Catechol 2,3-dioxygenase-like N-terminal domain"],["Pfam%3APF25371","Domain of unknown function (DUF7884)"],["Pfam%3APF19301","LigXa C-terminal domain like"],["Pfam%3APF12729","Four helix bundle sensory module for signal transduction"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":17,"nb":11,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["hospital-envo-00002173.html","hospital"],["egg-food-product-foodon-00001274.html","egg food product"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["Pfam%3APF01721","Class II bacteriocin"],["Pfam%3APF13700","Domain of unknown function (DUF4158)"],["Pfam%3APF07478","D-ala D-ala ligase C-terminus"],["Pfam%3APF01820","D-ala D-ala ligase N-terminus"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"],["PROSITE%3APS00843","D-alanine--D-alanine ligase signature 1"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":10,"nb":18,"a":[["anther-bto-0000079.html","anther"],["epithelial-cell-bto-0000414.html","epithelial cell"],["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["Pfam%3APF14562","Restriction endonuclease BglI"],["Pfam%3APF09195","Restriction endonuclease BglII/BglIII"],["Pfam%3APF09208","Restriction endonuclease MspI"]]},{"id":"NCBITaxon:10116","l":"Rattus norvegicus","na":9,"nb":1096,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["biotope-envo-00002036.html","biotope"],["farm-envo-00000078.html","farm"],["intestine-environment-envo-2100002.html","intestine environment"],["organic-material-envo-01000155.html","organic material"]],"b":[["IDPO%3A0000011","disorder to order"],["IDPO%3A0000030","entropic chain"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000033","flexible linker"],["IDPO%3A0000041","glycosylation display site"],["IDPO%3A0000003","molten globule"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":9,"nb":15,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["fresh-water-envo-00002011.html","fresh water"],["river-envo-00000022.html","river"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["Pfam%3APF03703","Bacterial PH domain"],["Pfam%3APF01322","Cytochrome C'"],["Pfam%3APF03139","Vanadium/alternative nitrogenase delta subunit"],["Pfam%3APF09527","Putative F0F1-ATPase subunit Ca2+/Mg2+ transporter"],["Pfam%3APF03270","Protein of unknown function, DUF269"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"]]},{"id":"NCBITaxon:39946","l":"Oryza sativa subsp. indica","na":13,"nb":9,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["eutrophic-water-envo-00002224.html","eutrophic water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["Pfam%3APF17538","DNA Binding Domain (C-terminal) Leafy/Floricaula"],["Pfam%3APF23703","DExH-box ATP-dependent RNA helicase DExH18, N-terminal"],["Pfam%3APF02496","ABA/WDS induced protein"],["Pfam%3APF06351","Allene oxide cyclase"],["Pfam%3APF02514","CobN/Magnesium Chelatase"],["Pfam%3APF05558","DREPP plasma membrane polypeptide"]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":12,"nb":9,"a":[["hospital-envo-00002173.html","hospital"],["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["epithelial-cell-bto-0000414.html","epithelial cell"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["meninx-bto-0000144.html","meninx"]],"b":[["Pfam%3APF19567","Capsular polysaccharide synthesis, CpsB/CapC"],["Pfam%3APF07501","G5 domain"],["Pfam%3APF13551","Winged helix-turn helix"],["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF03047","COMC family"],["Pfam%3APF04556","DpnII restriction endonuclease"]]},{"id":"NCBITaxon:1397","l":"Niallia circulans","na":12,"nb":9,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["organic-waste-material-envo-00002873.html","organic waste material"],["rhizosphere-envo-00005801.html","rhizosphere"],["cultivated-environment-envo-01000311.html","cultivated environment"],["sludge-envo-00002044.html","sludge"]],"b":[["Pfam%3APF03423","Carbohydrate binding domain (family 25)"],["Pfam%3APF13199","Glycosyl hydrolase family 66"],["Pfam%3APF14399","Butirosin biosynthesis protein H, N-terminal"],["Pfam%3APF19634","Family of unknown function (DUF6137)"],["PROSITE%3APS60000","Chitosanases families 46 and 80 active sites signature"],["MCSA%3A817","chitinase (GH18, class II)"]]},{"id":"NCBITaxon:1314","l":"Streptococcus pyogenes","na":9,"nb":9,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"],["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"],["epithelial-cell-bto-0000414.html","epithelial cell"],["nasopharynx-bto-0000662.html","nasopharynx"],["skin-of-body-uberon-0002097.html","skin of body"],["throat-bto-0000828.html","throat"]],"b":[["Pfam%3APF13585","CHU_C Type IX secretion signal domain"],["Pfam%3APF24547","Domain of unknown function (DUF7601)"],["Pfam%3APF08998","Bacterial epsilon antitoxin"],["Pfam%3APF06280","Fn3-like domain"],["Pfam%3APF02274","Arginine deiminase"],["Pfam%3APF13734","Spi protease inhibitor"]]},{"id":"NCBITaxon:10090","l":"Mus musculus","na":8,"nb":46010,"a":[["river-envo-00000022.html","river"],["animal-manure-envo-00003031.html","animal manure"],["biotope-envo-00002036.html","biotope"],["intestine-environment-envo-2100002.html","intestine environment"],["urban-biome-envo-01000249.html","urban biome"],["sediment-envo-00002007.html","sediment"]],"b":[["EC%3A1.1.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.1.98.-","With other, known, acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"]]},{"id":"NCBITaxon:1265","l":"Ruminococcus flavefaciens","na":29,"nb":8,"a":[["biofilm-envo-00002034.html","biofilm"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["TED%3AAF-A0A1H6I5C3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1H6I5C3-F1-model_v4_TED03"],["TED%3AAF-A0A1K2AQV3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1K2AQV3-F1-model_v4_TED01"],["TED%3AAF-A0A1M7IZN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M7IZN6-F1-model_v4_TED01"],["TED%3AAF-A0A1H6IY18-F1-model_v4_TED01","TED novel fold AF-A0A1H6IY18-F1-model_v4_TED01"],["TED%3AAF-A0A1K1WYY5-F1-model_v4_TED01","TED novel fold AF-A0A1K1WYY5-F1-model_v4_TED01"],["TED%3AAF-A0A1K2C3A7-F1-model_v4_TED01","TED novel fold AF-A0A1K2C3A7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":10,"nb":8,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"]],"b":[["Pfam%3APF04439","Streptomycin adenylyltransferase"],["MCSA%3A840","alpha-2,3-sialyltransferase"],["TED%3AAF-A0A696J2C3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A696J2C3-F1-model_v4_TED01"],["TED%3AAF-A0A825M6H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A825M6H4-F1-model_v4_TED01"],["TED%3AAF-A0A5T0SBG5-F1-model_v4_TED01","TED novel fold AF-A0A5T0SBG5-F1-model_v4_TED01"],["TED%3AAF-A0A698JVM3-F1-model_v4_TED03","TED novel fold AF-A0A698JVM3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:210","l":"Helicobacter pylori","na":8,"nb":9,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["hospital-envo-00002173.html","hospital"],["duodenum-bto-0000365.html","duodenum"],["gastric-juice-bto-0000501.html","gastric juice"],["gastric-mucosa-bto-0001308.html","gastric mucosa"],["gastric-ulcer-bto-0002990.html","gastric ulcer"]],"b":[["Pfam%3APF18025","Alpha-(1,3)-fucosyltransferase FucT N-terminal domain"],["Pfam%3APF18971","CagA protein"],["Pfam%3APF03507","CagA exotoxin phosphopeptide substrate mimic region"],["Pfam%3APF02691","Vacuolating cyotoxin beta-helical domain"],["TED%3AAF-A0A2T6UWI4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T6UWI4-F1-model_v4_TED01"],["TED%3AAF-A0A1Q9JB12-F1-model_v4_TED01","TED novel fold AF-A0A1Q9JB12-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":8,"nb":8,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["lab-synthesis-habitatmech-bacdive-0e92e77cd4.html","Lab-synthesis"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["oil-spill-envo-00002061.html","oil spill"],["temperate-envo-01000206.html","temperate"]],"b":[["Pfam%3APF01890","Cobalamin synthesis G C-terminus"],["Pfam%3APF11761","Cobalamin biosynthesis central region"],["Pfam%3APF11760","Cobalamin synthesis G N-terminal"],["Pfam%3APF02570","Precorrin-8X methylmutase"],["PROSITE%3APS00304","Small, acid-soluble spore proteins, alpha/beta type, signature 1"],["PROSITE%3APS00684","Small, acid-soluble spore proteins, alpha/beta type, signature 2"]]},{"id":"NCBITaxon:40324","l":"Stenotrophomonas maltophilia","na":15,"nb":7,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["catheter-device-ncit-c50344.html","Catheter Device"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["seedling-bto-0001228.html","seedling"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["MCSA%3A258","beta-lactamase (Class B1)"],["TED%3AAF-A0A2U4H7T5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2U4H7T5-F1-model_v4_TED02"],["TED%3AAF-A0A2W6G5X3-F1-model_v4_TED01","TED novel fold AF-A0A2W6G5X3-F1-model_v4_TED01"],["TED%3AAF-A0A2W6IKS3-F1-model_v4_TED02","TED novel fold AF-A0A2W6IKS3-F1-model_v4_TED02"],["TED%3AAF-A0A7D0KRT5-F1-model_v4_TED03","TED novel fold AF-A0A7D0KRT5-F1-model_v4_TED03"]]},{"id":"NCBITaxon:165179","l":"Segatella copri","na":7,"nb":13,"a":[["biofilm-envo-00002034.html","biofilm"],["juvenile-bto-0002168.html","juvenile"],["rumen-uberon-0007365.html","rumen"],["tongue-bto-0001385.html","tongue"],["vaginal-fluid-bto-0003084.html","vaginal fluid"],["animal-litter-envo-00002191.html","animal litter"]],"b":[["TED%3AAF-A0A3R6DW71-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3R6DW71-F1-model_v4_TED02"],["TED%3AAF-A0A3R6EGS2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R6EGS2-F1-model_v4_TED01"],["TED%3AAF-A0A5Q5FTM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Q5FTM4-F1-model_v4_TED01"],["TED%3AAF-A0A3R5WNG5-F1-model_v4_TED02","TED novel fold AF-A0A3R5WNG5-F1-model_v4_TED02"],["TED%3AAF-A0A3R5YKW9-F1-model_v4_TED01","TED novel fold AF-A0A3R5YKW9-F1-model_v4_TED01"],["TED%3AAF-A0A3R6FRY2-F1-model_v4_TED01","TED novel fold AF-A0A3R6FRY2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":7,"nb":10,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["pseudostem-bto-0005992.html","pseudostem"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["TED%3AAF-A0A5T2E4X7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5T2E4X7-F1-model_v4_TED01"],["TED%3AAF-A0A5Y4BP44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Y4BP44-F1-model_v4_TED01"],["TED%3AAF-A0A623P6F3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A623P6F3-F1-model_v4_TED02"],["TED%3AAF-A0A721BDS7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A721BDS7-F1-model_v4_TED02"],["TED%3AAF-A0A743P324-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A743P324-F1-model_v4_TED01"],["TED%3AAF-A0A757VWR3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A757VWR3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":7,"nb":8,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["liquid-water-envo-00002006.html","liquid water"],["crown-gall-bto-0000303.html","crown gall"],["finger-bto-0004669.html","finger"],["resting-cell-bto-0001170.html","resting cell"],["water-scum-envo-00005794.html","water scum"]],"b":[["Pfam%3APF19443","DAHL domain"],["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"],["Pfam%3APF03524","Conjugal transfer protein"],["Pfam%3APF27439","Chaperone protein DnaJ C-terminal region"],["Pfam%3APF10907","Protein of unknown function (DUF2749)"],["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":19,"nb":6,"a":[["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["bone-element-uberon-0001474.html","bone element"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF10779","Haemolysin XhlA"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF08181","DegQ (SacQ) family"],["Pfam%3APF08057","Erythromycin resistance leader peptide"],["Pfam%3APF14867","Lantibiotic alpha"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":16,"nb":6,"a":[["fresh-water-envo-00002011.html","fresh water"],["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"]],"b":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF02963","Restriction endonuclease EcoRI"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["PROSITE%3APS00974","Mannitol dehydrogenases signature"],["PROSITE%3APS00567","Phosphoribulokinase signature"],["MCSA%3A701","dimethylsulfoxide reductase"]]},{"id":"NCBITaxon:1409","l":"Bacillus sp. (in: firmicutes)","na":16,"nb":6,"a":[["biofilm-envo-00002034.html","biofilm"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["low-tide-zone-envo-00000319.html","low tide zone"],["organic-waste-material-envo-00002873.html","organic waste material"],["rhizosphere-envo-00005801.html","rhizosphere"],["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["Pfam%3APF02903","Alpha amylase, N-terminal ig-like domain"],["Pfam%3APF12123","PlyG Cell wall binding domain"],["Pfam%3APF24517","Carbohydrate-binding module family 96"],["Pfam%3APF07827","KNTase C-terminal domain"],["TED%3AAF-A0A3D0E1V5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D0E1V5-F1-model_v4_TED01"],["TED%3AAF-A0A3D5U4K3-F1-model_v4_TED01","TED novel fold AF-A0A3D5U4K3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1496","l":"Clostridioides difficile","na":6,"nb":10,"a":[["hospital-envo-00002173.html","hospital"],["feces-uberon-0001988.html","feces"],["leukocyte-bto-0000751.html","leukocyte"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["intestine-environment-envo-2100002.html","intestine environment"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["Pfam%3APF18671","4-Hydroxyphenylacetate decarboxylase subunit gamma N-terminal"],["Pfam%3APF00302","Chloramphenicol acetyltransferase"],["Pfam%3APF18524","High potential iron-sulfur protein like"],["Pfam%3APF06050","2-hydroxyglutaryl-CoA dehydratase, D-component"],["PROSITE%3APS00100","Chloramphenicol acetyltransferase active site"],["Pfam%3APF01473","Putative cell wall binding repeat"]]},{"id":"NCBITaxon:1667","l":"Arthrobacter sp.","na":9,"nb":6,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["leaf-po-0025034.html","leaf"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["Pfam%3APF14031","Putative serine dehydratase domain"],["Pfam%3APF02449","Beta-galactosidase"],["Pfam%3APF08533","Beta-galactosidase C-terminal domain"],["Pfam%3APF08532","Beta-galactosidase trimerisation domain"],["MCSA%3A25","N-carbamoylsarcosine amidase"],["TED%3AAF-A0A3C2BWN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C2BWN3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:727","l":"Haemophilus influenzae","na":9,"nb":6,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["head-bto-0000282.html","head"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["Pfam%3APF06808","Tripartite ATP-independent periplasmic transporter, DctM component"],["Pfam%3APF04290","Tripartite ATP-independent periplasmic transporters, DctQ component"],["Pfam%3APF09226","Restriction endonuclease HincII"],["Pfam%3APF09520","Type II restriction endonuclease, HinfI"],["Pfam%3APF24077","Immunoglobulin A1 protease autotransporter domain 2"],["PROSITE%3APS01068","OmpA-like domain"]]},{"id":"NCBITaxon:1305","l":"Streptococcus sanguinis","na":6,"nb":7,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["throat-bto-0000828.html","throat"],["geographic-feature-envo-00000000.html","geographic feature"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Pfam%3APF09254","FokI, cleavage domain"],["Pfam%3APF02981","FokI, recognition domain, subdomain 1"],["Pfam%3APF02980","FokI, recognition domain, subdomain 2"],["Pfam%3APF07501","G5 domain"],["Pfam%3APF07581","The GLUG motif"],["TED%3AAF-A0A7H8V358-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H8V358-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1502","l":"Clostridium perfringens","na":7,"nb":6,"a":[["small-river-biome-envo-00000890.html","small river biome"],["animal-house-envo-00003040.html","animal house"],["ileum-bto-0000620.html","ileum"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["Pfam%3APF08307","Glycosyl hydrolase family 98 C-terminal domain"],["Pfam%3APF08306","Glycosyl hydrolase family 98"],["Pfam%3APF12645","Helix-turn-helix domain"],["Pfam%3APF03505","Clostridium enterotoxin"],["Pfam%3APF10960","BhlA holin family"],["TED%3AAF-A0A140GRT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A140GRT8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1510","l":"Thermoclostridium stercorarium","na":6,"nb":7,"a":[["small-river-biome-envo-00000890.html","small river biome"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"],["rock-envo-00001995.html","rock"],["sulfur-spring-envo-00000126.html","sulfur spring"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["Pfam%3APF07523","Bacterial Ig-like domain (group 3)"],["Pfam%3APF03442","Carbohydrate binding domain X2"],["Pfam%3APF00457","Glycosyl hydrolases family 11"],["Pfam%3APF03422","Carbohydrate binding module (family 6)"],["PROSITE%3APS00776","Glycosyl hydrolases family 11 (GH11) active site signature 1"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"]]},{"id":"NCBITaxon:1871047","l":"Chryseobacterium sp.","na":6,"nb":7,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["leaf-po-0025034.html","leaf"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["humid-habitatmech-bacdive-0fa0234f43.html","Humid"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["TED%3AAF-A0A2W6XQ62-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W6XQ62-F1-model_v4_TED01"],["TED%3AAF-A0A2W6YLD3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2W6YLD3-F1-model_v4_TED02"],["TED%3AAF-A0A5N7U1L3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5N7U1L3-F1-model_v4_TED01"],["TED%3AAF-A0A3D4JZX5-F1-model_v4_TED04","TED novel fold AF-A0A3D4JZX5-F1-model_v4_TED04"],["TED%3AAF-A0A3N7GZ20-F1-model_v4_TED01","TED novel fold AF-A0A3N7GZ20-F1-model_v4_TED01"],["TED%3AAF-A0A5N7YYR2-F1-model_v4_TED01","TED novel fold AF-A0A5N7YYR2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1085","l":"Rhodospirillum rubrum","na":19,"nb":5,"a":[["biofilm-envo-00002034.html","biofilm"],["brackish-water-body-envo-01001321.html","brackish water body"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["liquid-water-envo-00002006.html","liquid water"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["river-envo-00000022.html","river"]],"b":[["Pfam%3APF00556","Antenna complex alpha/beta subunit"],["Pfam%3APF09527","Putative F0F1-ATPase subunit Ca2+/Mg2+ transporter"],["Pfam%3APF07357","Dinitrogenase reductase ADP-ribosyltransferase (DRAT)"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["MCSA%3A797","ribulose-bisphosphate carboxylase (type II)"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":16,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"],["midgut-bto-0000863.html","midgut"],["paddy-field-envo-00000297.html","paddy field"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF03173","Putative carbohydrate binding domain"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"],["Pfam%3APF06438","Heme-binding protein A (HasA)"],["Pfam%3APF02974","Protease inhibitor Inh"],["IEDB%3A36655","epitope LIPDGDGEV"]]},{"id":"NCBITaxon:1598","l":"Limosilactobacillus reuteri","na":14,"nb":5,"a":[["cecum-mucosa-bto-0000213.html","cecum mucosa"],["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["ileum-bto-0000620.html","ileum"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"]],"b":[["TED%3AAF-A0A6N1EMN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N1EMN7-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2V3C3-F1-model_v4_TED01","TED novel fold AF-A0A1Y2V3C3-F1-model_v4_TED01"],["TED%3AAF-A0A848BUA9-F1-model_v4_TED01","TED novel fold AF-A0A848BUA9-F1-model_v4_TED01"],["TED%3AAF-A0A855XJ18-F1-model_v4_TED01","TED novel fold AF-A0A855XJ18-F1-model_v4_TED01"],["TED%3AAF-Q6WUB1-F1-model_v4_TED03","TED novel fold AF-Q6WUB1-F1-model_v4_TED03"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":14,"nb":5,"a":[["watercourse-envo-00000029.html","watercourse"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["leaf-po-0025034.html","leaf"]],"b":[["TED%3AAF-A0A4Y6CF56-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y6CF56-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6CNZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Y6CNZ1-F1-model_v4_TED02"],["TED%3AAF-A0A7Y4IIX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4IIX4-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6B7F9-F1-model_v4_TED01","TED novel fold AF-A0A4Y6B7F9-F1-model_v4_TED01"],["TED%3AAF-A0A7Y4IR70-F1-model_v4_TED01","TED novel fold AF-A0A7Y4IR70-F1-model_v4_TED01"]]},{"id":"NCBITaxon:239","l":"Flavobacterium sp.","na":5,"nb":13,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["mud-envo-01000001.html","mud"],["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"],["orchard-envo-00000115.html","orchard"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["Pfam%3APF21331","Isoamylase, C-terminal"],["TED%3AAF-A0A2E4PC55-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E4PC55-F1-model_v4_TED02"],["TED%3AAF-A0A2E4PGC5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4PGC5-F1-model_v4_TED01"],["TED%3AAF-A0A2E4PMB7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E4PMB7-F1-model_v4_TED02"],["TED%3AAF-A0A355BEV2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A355BEV2-F1-model_v4_TED02"],["TED%3AAF-A0A519QLA6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A519QLA6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:224911","l":"Bradyrhizobium diazoefficiens USDA 110","na":5,"nb":11,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["microbial-mat-material-envo-01000157.html","microbial mat material"],["agricultural-soil-envo-00002259.html","agricultural soil"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["Pfam%3APF14715","N-terminal domain of cytochrome oxidase-cbb3, FixP"],["Pfam%3APF03886","ABC-type transport auxiliary lipoprotein component"],["Pfam%3APF10649","Protein of unknown function (DUF2478)"],["Pfam%3APF01924","Hydrogenase formation hypA family"],["PROSITE%3APS00882","Nickel-dependent hydrogenases b-type cytochrome subunit signature 1"]]},{"id":"NCBITaxon:238","l":"Elizabethkingia meningoseptica","na":10,"nb":5,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["pond-water-envo-00002228.html","pond water"],["small-river-biome-envo-00000890.html","small river biome"],["bronchus-uberon-0002185.html","bronchus"],["midgut-bto-0000863.html","midgut"],["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["Pfam%3APF21252","Glycosyl hydrolase 109, C-terminal domain"],["Pfam%3APF26305","cGAS/DncV-like nucleotidyltransferase C-terminal helical domain"],["PROSITE%3APS00743","Beta-lactamases class B signature 1"],["PROSITE%3APS00744","Beta-lactamases class B signature 2"],["MCSA%3A926","mannosyl-glycoprotein endo-beta-N-acetylglucosaminidase"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":8,"nb":5,"a":[["reservoir-envo-00000025.html","reservoir"],["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["secretion-bto-0002979.html","secretion"],["stomach-bto-0001307.html","stomach"]],"b":[["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF09711","CRISPR-associated protein (Cas_Csn2)"],["Pfam%3APF06308","23S rRNA methylastransferase leader peptide (ErmCL)"],["MCSA%3A640","kanamycin kinase"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":5,"nb":8,"a":[["liquid-water-envo-00002006.html","liquid water"],["food-spoiled-foodon-00003366.html","food (spoiled)"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"]],"b":[["Pfam%3APF14525","AraC-binding-like domain"],["Pfam%3APF06139","BphX-like"],["Pfam%3APF13340","Putative transposase of IS4/5 family (DUF4096)"],["Pfam%3APF11794","4-hydroxyphenylacetate 3-hydroxylase N terminal"],["Pfam%3APF03241","4-hydroxyphenylacetate 3-hydroxylase C terminal"],["MCSA%3A482","2,2-dialkylglycine decarboxylase (pyruvate)"]]},{"id":"NCBITaxon:391625","l":"Plesiocystis pacifica SIR-1","na":5,"nb":6,"a":[["coral-reef-envo-00000150.html","coral reef"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["bulk-soil-envo-00005802.html","bulk soil"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-A6FXI2-F1-model_v4_TED01","TED highly-symmetric fold AF-A6FXI2-F1-model_v4_TED01"],["TED%3AAF-A6G0J0-F1-model_v4_TED01","TED highly-symmetric fold AF-A6G0J0-F1-model_v4_TED01"],["TED%3AAF-A6G9Q2-F1-model_v4_TED01","TED highly-symmetric fold AF-A6G9Q2-F1-model_v4_TED01"],["TED%3AAF-A6G861-F1-model_v4_TED02","TED novel fold AF-A6G861-F1-model_v4_TED02"],["TED%3AAF-A6GGD7-F1-model_v4_TED01","TED novel fold AF-A6GGD7-F1-model_v4_TED01"],["TED%3AAF-A6GI73-F1-model_v4_TED02","TED novel fold AF-A6GI73-F1-model_v4_TED02"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":5,"nb":6,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["pseudostem-bto-0005992.html","pseudostem"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["Pfam%3APF02929","Beta galactosidase small chain"],["Pfam%3APF27279","Fumarate--diaminopropanoate ligase C-terminal domain"],["Pfam%3APF18024","Helix-turn-helix domain"],["Pfam%3APF16353","Beta-galactosidase, domain 4"],["PROSITE%3APS00594","Aromatic amino acids permeases signature"],["PROSITE%3APS00853","Beta-eliminating lyases pyridoxal-phosphate attachment site"]]},{"id":"NCBITaxon:1318","l":"Streptococcus parasanguinis","na":5,"nb":5,"a":[["biofilm-envo-00002034.html","biofilm"],["geographic-feature-envo-00000000.html","geographic feature"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"],["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["Pfam%3APF26337","Glucosyltransferase 3-like, C-terminal domain"],["Pfam%3APF26334","Glucosyltransferase 3-like, N-terminal domain"],["Pfam%3APF22145","GtfA extended beta-sheet domain"],["Pfam%3APF27244","GtfB middle domain"],["Pfam%3APF04286","Protein of unknown function (DUF445)"]]},{"id":"NCBITaxon:1393","l":"Brevibacillus brevis","na":5,"nb":5,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["Pfam%3APF03306","Alpha-acetolactate decarboxylase"],["Pfam%3APF05384","Sensor protein DegS"],["TED%3AAF-A0A2Z4MK38-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z4MK38-F1-model_v4_TED01"],["TED%3AAF-A0A2Z4MPQ6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2Z4MPQ6-F1-model_v4_TED02"],["TED%3AAF-A0A517IGN3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A517IGN3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:39947","l":"Oryza sativa subsp. japonica","na":4,"nb":164,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["large-river-biome-envo-00000887.html","large river biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"],["river-bed-envo-00000384.html","river bed"]],"b":[["Pfam%3APF03157","High molecular weight glutenin subunit"],["Pfam%3APF26249","RdRP3/4/5, N-terminal four helical bundle domain"],["Pfam%3APF23242","TRIP13-like, AAA+ ATPase lid C-terminal domain"],["Pfam%3APF26791","AAPxQ domain"],["Pfam%3APF24922","Acyl-CoA-binding domain-containing protein 4-6, C-terminal"],["Pfam%3APF04864","Allinase"]]},{"id":"NCBITaxon:266940","l":"Kineococcus radiotolerans SRS30216 = ATCC BAA-149","na":38,"nb":4,"a":[["air-envo-00002005.html","air"],["bay-envo-00000032.html","bay"],["coastal-sea-water-envo-00002150.html","coastal sea water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"]],"b":[["Pfam%3APF01083","Cutinase"],["IEDB%3A231935","epitope GTFEGWLHR"],["IEDB%3A93725","epitope RLMPDFWEF"],["TED%3AAF-A6WE06-F1-model_v4_TED06","TED novel fold AF-A6WE06-F1-model_v4_TED06"]]},{"id":"NCBITaxon:1334","l":"Streptococcus dysgalactiae","na":4,"nb":36,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["Pfam%3APF20746","Endo-beta-N-acetylglucosaminidase F2, Ig-like domain"],["IEDB%3A78924","epitope AGPEWLL"],["IEDB%3A10233","epitope DSSIVTHDNDIFRTILPMDQ"],["IEDB%3A10435","epitope DTNRIITVYMGKRPEGENAS"],["IEDB%3A12088","epitope EFTYHVKNREQAYEINKKSG"],["IEDB%3A14917","epitope EVYSYLRYTGTPIPDNPNDK"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":4,"nb":34,"a":[["bioreactor-envo-00002123.html","bioreactor"],["human-construction-envo-00000070.html","human construction"],["sediment-envo-00002007.html","sediment"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF25848","Rodlin protein"],["Pfam%3APF13420","Acetyltransferase (GNAT) domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF26381","BREX System ATPase PglY protein 5th domain"],["Pfam%3APF26382","BREX System ATPase PglY protein 6th domain"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":4,"nb":31,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF27529","AMPT"],["Pfam%3APF24856","L-arabinose isomerase central domain"],["Pfam%3APF02610","L-arabinose isomerase N-terminal domain"],["Pfam%3APF11762","L-arabinose isomerase C-terminal domain"],["Pfam%3APF17727","CtsR C-terminal dimerization domain"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae (strain ATCC 42149 / RIB 40)","na":4,"nb":29,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["mountain-pass-envo-00000084.html","mountain pass"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF09260","Alpha-amylase, domain C"],["Pfam%3APF28338","AclK C-terminal domain"],["Pfam%3APF09206","Alpha-L-arabinofuranosidase B, catalytic"],["Pfam%3APF28380","Sesquiterpene cyclase astC-like C-terminal domain"],["Pfam%3APF13364","Beta-galactosidase second all-beta domain"],["Pfam%3APF10435","Beta-galactosidase, domain 2"]]},{"id":"NCBITaxon:3055","l":"Chlamydomonas reinhardtii","na":4,"nb":28,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["large-river-biome-envo-00000887.html","large river biome"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["pond-water-envo-00002228.html","pond water"]],"b":[["Pfam%3APF01333","Apocytochrome F, C-terminal"],["Pfam%3APF16639","Apocytochrome F, N-terminal"],["Pfam%3APF00430","ATP synthase B/B' CF(0)"],["Pfam%3APF00401","ATP synthase, Delta/Epsilon chain, long alpha-helix domain"],["Pfam%3APF21771","CFAP58 central coiled coil"],["Pfam%3APF27956","CFAP99 V-shaped coiled-coil domain"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":4,"nb":21,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF28265","Lipoprotein N-acylation protein LnsA-like"],["Pfam%3APF16403","Bacterial surface protein, Ig-like domain"],["Pfam%3APF03944","delta endotoxin"],["Pfam%3APF03945","delta endotoxin, N-terminal domain"],["IEDB%3A125782","epitope CLRIPMTDK"]]},{"id":"NCBITaxon:33","l":"Myxococcus fulvus","na":21,"nb":4,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"]],"b":[["TED%3AAF-A0A511SVC1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A511SVC1-F1-model_v4_TED01"],["TED%3AAF-A0A511SU64-F1-model_v4_TED01","TED novel fold AF-A0A511SU64-F1-model_v4_TED01"],["TED%3AAF-A0A511T2U3-F1-model_v4_TED02","TED novel fold AF-A0A511T2U3-F1-model_v4_TED02"],["TED%3AAF-A0A511T9F8-F1-model_v4_TED05","TED novel fold AF-A0A511T9F8-F1-model_v4_TED05"]]},{"id":"NCBITaxon:169963","l":"Listeria monocytogenes serovar 1/2a (strain ATCC BAA-679 / EGD-e)","na":4,"nb":18,"a":[["brain-bto-0000142.html","brain"],["heart-bto-0000562.html","heart"],["macrophage-cell-line-bto-0002278.html","macrophage cell line"],["p-388d1-cell-bto-0000984.html","P-388D1 cell"]],"b":[["Pfam%3APF17936","Bacterial Ig domain"],["Pfam%3APF06778","Chlorite dismutase"],["Pfam%3APF05737","Collagen binding domain"],["Pfam%3APF09479","Listeria-Bacteroides repeat domain (List_Bact_rpt)"],["Pfam%3APF13457","GW (Gly-Tryp) dipeptide domain"],["Pfam%3APF08858","IDEAL domain"]]},{"id":"NCBITaxon:28214","l":"Sphingomonas sp.","na":16,"nb":4,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["air-conditioning-unit-envo-00002874.html","air conditioning unit"],["laboratory-facility-envo-01001406.html","laboratory facility"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["Pfam%3APF11723","Homotrimeric ring hydroxylase"],["Pfam%3APF07364","Metallopeptidase family M81"],["TED%3AAF-A0A525HJK0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A525HJK0-F1-model_v4_TED02"],["TED%3AAF-A0A520ITV0-F1-model_v4_TED02","TED novel fold AF-A0A520ITV0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1302","l":"Streptococcus gordonii","na":4,"nb":13,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["dental-plaque-uberon-0016482.html","dental plaque"],["archeological-site-envo-00000564.html","archeological site"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Pfam%3APF18652","Adhesin P1 N-terminal domain"],["Pfam%3APF17998","Cell surface antigen I/II C2 terminal domain"],["Pfam%3APF16364","Cell surface antigen C-terminus"],["Pfam%3APF18938","Atypical Rib domain"],["Pfam%3APF08759","Glycosyltransferase GT-D fold"],["Pfam%3APF22145","GtfA extended beta-sheet domain"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":8,"nb":4,"a":[["groundwater-envo-01001004.html","groundwater"],["bioreactor-envo-00002123.html","bioreactor"],["river-envo-00000022.html","river"],["freshwater-environment-envo-01000306.html","freshwater environment"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["TED%3AAF-A0A7W3UB61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W3UB61-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F4B3-F1-model_v4_TED01","TED novel fold AF-A0A0D7F4B3-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F6R4-F1-model_v4_TED01","TED novel fold AF-A0A0D7F6R4-F1-model_v4_TED01"],["TED%3AAF-A0A7W3YI15-F1-model_v4_TED02","TED novel fold AF-A0A7W3YI15-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1505","l":"Paraclostridium sordellii","na":8,"nb":4,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["animal-house-envo-00003040.html","animal house"],["animal-litter-envo-00002191.html","animal litter"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["mud-envo-01000001.html","mud"]],"b":[["Pfam%3APF13859","BNR repeat-like domain"],["Pfam%3APF01473","Putative cell wall binding repeat"],["Pfam%3APF19127","Choline-binding repeat"],["TED%3AAF-A0A822PVZ2-F1-model_v4_TED01","TED novel fold AF-A0A822PVZ2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":8,"nb":4,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"],["TED%3AAF-A0A085UKV7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085UKV7-F1-model_v4_TED01"],["TED%3AAF-A0A4R6IU28-F1-model_v4_TED02","TED novel fold AF-A0A4R6IU28-F1-model_v4_TED02"]]},{"id":"NCBITaxon:388919","l":"Streptococcus sanguinis (strain SK36)","na":4,"nb":8,"a":[["buccal-mucosa-bto-0003833.html","buccal mucosa"],["dental-plaque-bto-0000338.html","dental plaque"],["pharyngeal-mucosa-bto-0001047.html","pharyngeal mucosa"],["pharynx-bto-0001049.html","pharynx"]],"b":[["Pfam%3APF20921","Domain of unknown function DUF1846, C-terminal"],["Pfam%3APF08903","Domain of unknown function DUF1846, N-terminal"],["IEDB%3A122711","epitope AASVASLILTTEA"],["IEDB%3A122755","epitope ERLAKLSGGVAVIKVGAA"],["Pfam%3APF03186","CobD/Cbib protein"],["Pfam%3APF08503","Tetrahydrodipicolinate succinyltransferase N-terminal"]]},{"id":"NCBITaxon:51671","l":"Microbacterium sp.","na":8,"nb":4,"a":[["marine-water-body-envo-00001999.html","marine water body"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"]],"b":[["Pfam%3APF19906","C-glycoside deglycosidase beta subunit"],["TED%3AAF-A0A349CW39-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349CW39-F1-model_v4_TED01"],["TED%3AAF-A0A2W6V981-F1-model_v4_TED01","TED novel fold AF-A0A2W6V981-F1-model_v4_TED01"],["TED%3AAF-A0A3D4PQL1-F1-model_v4_TED01","TED novel fold AF-A0A3D4PQL1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":7,"nb":4,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["farm-envo-00000078.html","farm"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["Pfam%3APF05258","Dna[CI] antecedent, DciA"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"],["MCSA%3A437","2,6-dioxo-6-phenylhexa-3-enoate hydrolase"],["TED%3AAF-Q0RZW9-F1-model_v4_TED03","TED highly-symmetric fold AF-Q0RZW9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":4,"nb":7,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["carcass-envo-00002033.html","carcass"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["sludge-envo-00002044.html","sludge"]],"b":[["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF03744","6-carboxyhexanoate--CoA ligase"],["PROSITE%3APS00836","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 1"],["PROSITE%3APS00837","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 2"],["MCSA%3A241","penicillin amidase (peptidase C59 family)"],["TED%3AAF-A0A2S5D092-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5D092-F1-model_v4_TED01"]]},{"id":"NCBITaxon:438753","l":"Azorhizobium caulinodans ORS 571","na":7,"nb":4,"a":[["bacteroid-bto-0000109.html","bacteroid"],["free-living-state-bto-0001551.html","free-living state"],["lateral-root-bto-0005441.html","lateral root"],["rootlet-bto-0001192.html","rootlet"],["seedling-bto-0001228.html","seedling"],["stem-nodule-bto-0001816.html","stem nodule"]],"b":[["Pfam%3APF27389","AZC_3924"],["Pfam%3APF09663","Amidohydrolase ring-opening protein (Amido_AtzD_TrzD)"],["PROSITE%3APS01349","Nodulation protein nodA signature"],["PROSITE%3APS00647","Thymidine and pyrimidine-nucleoside phosphorylases signature"]]},{"id":"NCBITaxon:53249","l":"","na":4,"nb":7,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["aquaculture-farm-envo-03600074.html","aquaculture farm"],["fumarole-envo-00000216.html","fumarole"]],"b":[["Pfam%3APF25291","Lambda-carrageenase C-terminal domain"],["Pfam%3APF25290","Lambda-carrageenase middle domain"],["Pfam%3APF17396","Domain of unknown function (DUF1611_N) Rossmann-like domain"],["Pfam%3APF07755","Domain of unknown function (DUF1611_C) P-loop domain"],["Pfam%3APF25292","Lambda-carrageenase beta-propeller domain"],["TED%3AAF-A0A2D5T282-F1-model_v4_TED01","TED novel fold AF-A0A2D5T282-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1079","l":"Blastochloris viridis","na":6,"nb":4,"a":[["fresh-water-envo-00002011.html","fresh water"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["Pfam%3APF00556","Antenna complex alpha/beta subunit"],["Pfam%3APF02276","Photosynthetic reaction centre cytochrome C subunit"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["TED%3AAF-A0A0H5BDG4-F1-model_v4_TED01","TED novel fold AF-A0A0H5BDG4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1306","l":"Streptococcus sp.","na":4,"nb":6,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["co-culture-habitatmech-bacdive-ff945d8a69.html","Co-culture"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["TED%3AAF-A0A496KVG3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A496KVG3-F1-model_v4_TED02"],["TED%3AAF-A0A496KCG7-F1-model_v4_TED01","TED novel fold AF-A0A496KCG7-F1-model_v4_TED01"],["TED%3AAF-A0A496L3I5-F1-model_v4_TED01","TED novel fold AF-A0A496L3I5-F1-model_v4_TED01"],["TED%3AAF-A0A496LB14-F1-model_v4_TED02","TED novel fold AF-A0A496LB14-F1-model_v4_TED02"],["TED%3AAF-A0A496M1E6-F1-model_v4_TED02","TED novel fold AF-A0A496M1E6-F1-model_v4_TED02"],["TED%3AAF-A0A496M2R1-F1-model_v4_TED06","TED novel fold AF-A0A496M2R1-F1-model_v4_TED06"]]},{"id":"NCBITaxon:1311","l":"Streptococcus agalactiae","na":6,"nb":4,"a":[["kidney-bto-0000671.html","kidney"],["milk-uberon-0001913.html","milk"],["oropharynx-bto-0005257.html","oropharynx"],["urine-bto-0001419.html","urine"],["urogenital-system-bto-0003091.html","urogenital system"],["vagina-bto-0000243.html","vagina"]],"b":[["Pfam%3APF19567","Capsular polysaccharide synthesis, CpsB/CapC"],["Pfam%3APF16828","GAG-binding domain on surface antigen"],["Pfam%3APF27244","GtfB middle domain"],["Pfam%3APF07373","CAMP factor (Cfa)"]]},{"id":"NCBITaxon:1366","l":"","na":4,"nb":5,"a":[["animal-house-envo-00003040.html","animal house"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["TED%3AAF-A0A5R9CHM3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5R9CHM3-F1-model_v4_TED02"],["TED%3AAF-A0A6H0UIE5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6H0UIE5-F1-model_v4_TED01"],["TED%3AAF-A0A6H0UK30-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6H0UK30-F1-model_v4_TED01"],["TED%3AAF-A0A6H0URM1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6H0URM1-F1-model_v4_TED02"],["TED%3AAF-A0A6H0UGG1-F1-model_v4_TED06","TED novel fold AF-A0A6H0UGG1-F1-model_v4_TED06"]]},{"id":"NCBITaxon:1411316","l":"Pedobacter sp.","na":5,"nb":4,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["TED%3AAF-A0A520IH20-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A520IH20-F1-model_v4_TED02"],["TED%3AAF-A0A519VYD0-F1-model_v4_TED02","TED novel fold AF-A0A519VYD0-F1-model_v4_TED02"],["TED%3AAF-A0A520CAS2-F1-model_v4_TED01","TED novel fold AF-A0A520CAS2-F1-model_v4_TED01"],["TED%3AAF-A0A520GU64-F1-model_v4_TED01","TED novel fold AF-A0A520GU64-F1-model_v4_TED01"]]},{"id":"NCBITaxon:195","l":"Campylobacter coli","na":4,"nb":5,"a":[["feces-uberon-0001988.html","feces"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["PROSITE%3APS00100","Chloramphenicol acetyltransferase active site"],["TED%3AAF-A0A697DVN1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A697DVN1-F1-model_v4_TED01"],["TED%3AAF-A0A5T0YXG5-F1-model_v4_TED02","TED novel fold AF-A0A5T0YXG5-F1-model_v4_TED02"],["TED%3AAF-A0A825MHY8-F1-model_v4_TED03","TED novel fold AF-A0A825MHY8-F1-model_v4_TED03"],["TED%3AAF-A0A828DMV9-F1-model_v4_TED01","TED novel fold AF-A0A828DMV9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:305","l":"Ralstonia solanacearum","na":4,"nb":5,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"],["pseudostem-bto-0005992.html","pseudostem"],["xylem-bto-0001468.html","xylem"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["Pfam%3APF14897","EpsG family"],["TED%3AAF-A0A7I8FQZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7I8FQZ6-F1-model_v4_TED01"],["TED%3AAF-A0A7H1MI34-F1-model_v4_TED01","TED novel fold AF-A0A7H1MI34-F1-model_v4_TED01"],["TED%3AAF-A0A7I8FKL4-F1-model_v4_TED01","TED novel fold AF-A0A7I8FKL4-F1-model_v4_TED01"],["TED%3AAF-A0A850FKB0-F1-model_v4_TED01","TED novel fold AF-A0A850FKB0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:529","l":"Brucella anthropi","na":5,"nb":4,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["hospital-envo-00002173.html","hospital"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF07930","D-aminopeptidase, domain B"],["MCSA%3A782","D-stereospecific aminopeptidase (peptidase S12 family)"],["MCSA%3A676","D-stereospecific aminopeptidase (peptidase S58 family)"],["TED%3AAF-A0A7T4IBJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T4IBJ8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":5,"nb":4,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"],["feces-uberon-0001988.html","feces"],["rectum-bto-0001158.html","rectum"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["Pfam%3APF01375","Heat-labile enterotoxin alpha chain"],["Pfam%3APF09101","Exotoxin A binding"],["Pfam%3APF09009","Exotoxin A catalytic"],["Pfam%3APF09102","Exotoxin A, targeting"]]},{"id":"NCBITaxon:378806","l":"Stigmatella aurantiaca DW4/3-1","na":4,"nb":4,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["orchard-envo-00000115.html","orchard"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-Q098I8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q098I8-F1-model_v4_TED01"],["TED%3AAF-E3FRW3-F1-model_v4_TED01","TED novel fold AF-E3FRW3-F1-model_v4_TED01"],["TED%3AAF-E3G0M4-F1-model_v4_TED01","TED novel fold AF-E3G0M4-F1-model_v4_TED01"],["TED%3AAF-Q08VS7-F1-model_v4_TED01","TED novel fold AF-Q08VS7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:83449","l":"Cystobacter ferrugineus","na":4,"nb":4,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["wood-bto-0005516.html","wood"],["sand-envo-01000017.html","sand"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-A0A1L9B4M1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L9B4M1-F1-model_v4_TED01"],["TED%3AAF-A0A1L9B5W1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L9B5W1-F1-model_v4_TED01"],["TED%3AAF-A0A1L9BCS8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L9BCS8-F1-model_v4_TED01"],["TED%3AAF-A0A1L9BDA4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1L9BDA4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:85698","l":"","na":4,"nb":4,"a":[["hospital-envo-00002173.html","hospital"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["Pfam%3APF25975","CzcB C-terminal circularly permuted SH3-like domain"],["Pfam%3APF17524","Anti-sigma factor CnrY"],["Pfam%3APF10778","Halocarboxylic acid dehydrogenase DehI"],["TED%3AAF-A0A1R1JVF9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1R1JVF9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":3,"nb":50101,"a":[["city-envo-00000856.html","city"],["cold-environment-envo-01000309.html","cold environment"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["EC%3A1.1.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.1.98.-","With other, known, acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"]]},{"id":"NCBITaxon:75985","l":"Mannheimia haemolytica","na":3,"nb":77,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["leukocyte-bto-0000751.html","leukocyte"],["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["Pfam%3APF04224","Protein of unknown function, DUF417"],["IEDB%3A92285","epitope AFNGGDGVDT"],["IEDB%3A92346","epitope APTSMLDQSL"],["IEDB%3A92437","epitope DDLIAKGNGK"],["IEDB%3A92451","epitope DFAKEVPNYK"],["IEDB%3A92463","epitope DKLISSVSAF"]]},{"id":"NCBITaxon:189518","l":"Leptospira interrogans serovar Lai str. 56601","na":3,"nb":73,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF27429","LB_356"],["IEDB%3A128179","epitope AACSSTDTGQKDATT"],["IEDB%3A128191","epitope AAIYMGAGLNYFNGG"],["IEDB%3A128250","epitope AGYNIVDMTWGFSSI"],["IEDB%3A128283","epitope AMVGGNLMVGYESDF"],["IEDB%3A133518","epitope ASDVVKKMVGETVESA"]]},{"id":"NCBITaxon:278137","l":"Mycolicibacterium gilvum Spyr1","na":3,"nb":68,"a":[["petroleum-envo-00002984.html","petroleum"],["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["IEDB%3A234369","epitope AAILLAFYVAAAEKK"],["IEDB%3A234382","epitope AANWKLIVENFMECY"],["IEDB%3A234383","epitope AAPELIAGFAIRTAV"],["IEDB%3A234388","epitope AAVLLSSHILAEVEK"],["IEDB%3A234389","epitope AAVRHLIPALEVLHE"],["IEDB%3A234390","epitope AAWRAARLLVLDAFT"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":33,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["pond-water-envo-00002228.html","pond water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["water-body-envo-00000063.html","water body"]],"b":[["Pfam%3APF22538","Hexaprenyl diphosphate synthase, small subunit"],["PROSITE%3APS01066","Undecaprenyl pyrophosphate synthase family signature"],["MCSA%3A543","ditrans,polycis-undecaprenyl-diphosphate synthase [(2E,6E)-farnesyl-diphosphate specific]"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":27,"nb":3,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["watercourse-envo-00000029.html","watercourse"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["egg-food-product-foodon-00001274.html","egg food product"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"]],"b":[["Pfam%3APF14864","Alkyl sulfatase C-terminal"],["Pfam%3APF13816","Haem-containing dehydratase"],["Pfam%3APF14863","Alkyl sulfatase dimerisation"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":25,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-water-body-envo-00001999.html","marine water body"],["sea-water-envo-00002149.html","sea water"],["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF08130","Type A lantibiotic family"],["Pfam%3APF04738","Lantibiotic dehydratase, N terminus"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":3,"nb":19,"a":[["milk-uberon-0001913.html","milk"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["Pfam%3APF03306","Alpha-acetolactate decarboxylase"],["Pfam%3APF22208","Cas_Csm6 CARF domain"],["Pfam%3APF09659","Cas_Csm6 HEPN domain"],["Pfam%3APF22335","Cas10/Cmr2, second palm domain"],["Pfam%3APF18395","Cas3 C-terminal domain"],["Pfam%3APF18019","Cas3, HD domain"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":17,"nb":3,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["fruit-bto-0000486.html","fruit"],["leaf-po-0025034.html","leaf"],["rhizosphere-envo-00005801.html","rhizosphere"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["Pfam%3APF03423","Carbohydrate binding domain (family 25)"],["Pfam%3APF03422","Carbohydrate binding module (family 6)"],["TED%3AAF-A0A7X5SGP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X5SGP7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:243161","l":"Chlamydia muridarum (strain MoPn / Nigg)","na":3,"nb":16,"a":[["cervical-adenocarcinoma-cell-bto-0003165.html","cervical adenocarcinoma cell"],["fibroblast-bto-0000452.html","fibroblast"],["hela-229-cell-bto-0005030.html","HeLa-229 cell"]],"b":[["Pfam%3APF07382","Histone H1-like nucleoprotein HC2"],["Pfam%3APF05475","Pgp3 C-terminal domain"],["Pfam%3APF07577","Domain of Unknown Function (DUF1547)"],["Pfam%3APF05745","Chlamydia 15 kDa cysteine-rich outer membrane protein (CRPA)"],["Pfam%3APF28261","Uncharacterized protein CT_504-like"],["Pfam%3APF17435","CT_584-like"]]},{"id":"NCBITaxon:1580","l":"Levilactobacillus brevis","na":14,"nb":3,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["organic-waste-material-envo-00002873.html","organic waste material"],["research-facility-envo-00000469.html","research facility"],["food-fermented-foodon-00001258.html","food (fermented)"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["caco-2-cell-bto-0000195.html","CACO-2 cell"]],"b":[["MCSA%3A649","maltose phosphorylase"],["TED%3AAF-A0A2A3TVW3-F1-model_v4_TED01","TED novel fold AF-A0A2A3TVW3-F1-model_v4_TED01"],["TED%3AAF-A0A7Z6MPZ0-F1-model_v4_TED02","TED novel fold AF-A0A7Z6MPZ0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:29158","l":"Mytilus galloprovincialis","na":3,"nb":13,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["Pfam%3APF01097","Arthropod defensin"],["TED%3AAF-A0A8B6CBP4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B6CBP4-F1-model_v4_TED01"],["TED%3AAF-A0A8B6CUV9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A8B6CUV9-F1-model_v4_TED03"],["TED%3AAF-A0A8B6EJL3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A8B6EJL3-F1-model_v4_TED03"],["TED%3AAF-A0A8B6EMQ1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B6EMQ1-F1-model_v4_TED01"],["TED%3AAF-A0A8B6GYA1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B6GYA1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":3,"nb":11,"a":[["bile-bto-0000121.html","bile"],["rectum-bto-0001158.html","rectum"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["Pfam%3APF22829","HphA C-terminal domain"],["Pfam%3APF22828","HphA N-terminal heme-binding domain"],["Pfam%3APF28205","Ciprofloxacin tolerance protein"],["Pfam%3APF19582","Solute-binding protein AdeT 1/2"],["PROSITE%3APS00337","Beta-lactamase class-D active site"],["Pfam%3APF24575","Surface lipoprotein assembly modifier, N-terminal TPR repeats"]]},{"id":"NCBITaxon:1506","l":"Clostridium sp.","na":10,"nb":3,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["animal-waste-material-envo-00002276.html","animal waste material"],["laboratory-facility-envo-01001406.html","laboratory facility"],["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["TED%3AAF-A0A3D5KI35-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D5KI35-F1-model_v4_TED01"],["TED%3AAF-A0A316SA98-F1-model_v4_TED01","TED novel fold AF-A0A316SA98-F1-model_v4_TED01"],["TED%3AAF-A0A3B9UYE3-F1-model_v4_TED01","TED novel fold AF-A0A3B9UYE3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":3,"nb":10,"a":[["liquid-water-envo-00002006.html","liquid water"],["sludge-envo-00002044.html","sludge"],["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF09081","Glucan 1,4-alpha-maltotetraohydrolase, domain C"],["Pfam%3APF09459","Ethylbenzene dehydrogenase"],["Pfam%3APF08406","CbbQ/NirQ/NorQ C-terminal"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"],["Pfam%3APF18793","Nitrous oxide reductase propeller repeat 2"]]},{"id":"NCBITaxon:6182","l":"","na":3,"nb":10,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["IEDB%3A140657","epitope ATRLNNEVL"],["IEDB%3A13874","epitope EQLKIYAQRC"],["IEDB%3A140673","epitope EQRLRERDEELESLRKSTTRTI"],["IEDB%3A140691","epitope ITELEDVAERERLKA"],["IEDB%3A140719","epitope NLMKENKNL"],["IEDB%3A144740","epitope NYHSGYYRPNKQHGN"]]},{"id":"NCBITaxon:6238","l":"Caenorhabditis briggsae","na":3,"nb":10,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"],["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["Pfam%3APF09287","CEP-1, DNA binding"],["Pfam%3APF22073","Cep192 domain 4"],["Pfam%3APF15481","Chondroitin proteoglycan 4"],["Pfam%3APF13358","DDE superfamily endonuclease"],["Pfam%3APF10326","Serpentine type 7TM GPCR chemoreceptor Str"],["Pfam%3APF17266","Family of unknown function (DUF5332)"]]},{"id":"NCBITaxon:1639","l":"Listeria monocytogenes","na":9,"nb":3,"a":[["liquid-water-envo-00002006.html","liquid water"],["brain-bto-0000142.html","brain"],["central-nervous-system-bto-0000227.html","central nervous system"],["fruit-bto-0000486.html","fruit"],["placenta-bto-0001078.html","placenta"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["TED%3AAF-A0A6Z1JB74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6Z1JB74-F1-model_v4_TED01"],["TED%3AAF-A0A5Z1VYX2-F1-model_v4_TED01","TED novel fold AF-A0A5Z1VYX2-F1-model_v4_TED01"],["TED%3AAF-A0A823IT06-F1-model_v4_TED02","TED novel fold AF-A0A823IT06-F1-model_v4_TED02"]]},{"id":"NCBITaxon:121845","l":"Diaphorina citri","na":8,"nb":3,"a":[["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["stream-envo-00000023.html","stream"],["animal-house-envo-00003040.html","animal house"],["biome-envo-00000428.html","biome"]],"b":[["TED%3AAF-A0A3Q0J3L1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3Q0J3L1-F1-model_v4_TED03"],["TED%3AAF-A0A3Q0JAD0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3Q0JAD0-F1-model_v4_TED01"],["TED%3AAF-A0A1S4EQL6-F1-model_v4_TED01","TED novel fold AF-A0A1S4EQL6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1359","l":"Lactococcus lactis subsp. cremoris","na":3,"nb":8,"a":[["b-lymphocyte-bto-0000776.html","B-lymphocyte"],["peripheral-blood-mononuclear-cell-bto-0001025.html","peripheral blood mononuclear cell"],["spleen-bto-0001281.html","spleen"]],"b":[["Pfam%3APF16873","Putative abortive phage resistance protein AbiGii toxin"],["Pfam%3APF21368","AI2M/AI1M-like, HNH endonuclease"],["Pfam%3APF09136","Glucodextranase, domain B"],["Pfam%3APF10899","Putative abortive phage resistance protein AbiGi, antitoxin"],["Pfam%3APF04556","DpnII restriction endonuclease"],["Pfam%3APF04369","Lactococcin-like family"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK1622","na":3,"nb":8,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["Pfam%3APF27281","DevT C-terminal domain"],["Pfam%3APF27372","DevT N-terminal domain"],["Pfam%3APF17762","ParB HTH domain"],["Pfam%3APF01930","Domain of unknown function DUF83"],["Pfam%3APF09559","Cas6 Crispr"],["Pfam%3APF01905","CRISPR-associated negative auto-regulator DevR/Csa2"]]},{"id":"NCBITaxon:292800","l":"Flavonifractor plautii","na":3,"nb":8,"a":[["goblet-cell-bto-0001540.html","goblet cell"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["secretion-bto-0002979.html","secretion"]],"b":[["TED%3AAF-A0A6I2QXD7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I2QXD7-F1-model_v4_TED01"],["TED%3AAF-A0A6I2R9U0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I2R9U0-F1-model_v4_TED01"],["TED%3AAF-A0A6I7GJ83-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6I7GJ83-F1-model_v4_TED02"],["TED%3AAF-A0A174L5D2-F1-model_v4_TED02","TED novel fold AF-A0A174L5D2-F1-model_v4_TED02"],["TED%3AAF-A0A6I2R566-F1-model_v4_TED01","TED novel fold AF-A0A6I2R566-F1-model_v4_TED01"],["TED%3AAF-A0A6I2R5K9-F1-model_v4_TED01","TED novel fold AF-A0A6I2R5K9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:33038","l":"Mediterraneibacter gnavus","na":8,"nb":3,"a":[["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["juvenile-bto-0002168.html","juvenile"],["animal-litter-envo-00002191.html","animal litter"]],"b":[["Pfam%3APF16874","Glycosyl hydrolase family 36 C-terminal domain"],["Pfam%3APF16875","Glycosyl hydrolase family 36 N-terminal domain"],["Pfam%3APF04604","Type-A lantibiotic"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":8,"nb":3,"a":[["beach-envo-00000091.html","beach"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["sea-sand-envo-00002118.html","sea sand"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF22277","EncFtn-like"],["TED%3AAF-D0LJ11-F1-model_v4_TED04","TED highly-symmetric fold AF-D0LJ11-F1-model_v4_TED04"]]},{"id":"NCBITaxon:7159","l":"Aedes aegypti","na":3,"nb":8,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["tropical-envo-01000204.html","tropical"],["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["IDPO%3A0000004","pre-molten globule"],["Pfam%3APF25001","Aegyptin, C-terminal domain"],["Pfam%3APF01097","Arthropod defensin"],["Pfam%3APF15957","Commissureless"],["Pfam%3APF23757","Insect HPS5 TPR domain"],["TED%3AAF-Q0IGF9-F1-model_v4_TED01","TED highly-symmetric fold AF-Q0IGF9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1833","l":"Rhodococcus erythropolis","na":3,"nb":7,"a":[["watercourse-envo-00000029.html","watercourse"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"],["water-scum-envo-00005794.html","water scum"]],"b":[["Pfam%3APF08028","Acyl-CoA dehydrogenase, C-terminal domain"],["Pfam%3APF13816","Haem-containing dehydratase"],["Pfam%3APF07858","Limonene-1,2-epoxide hydrolase catalytic domain"],["Pfam%3APF09663","Amidohydrolase ring-opening protein (Amido_AtzD_TrzD)"],["MCSA%3A361","aldoxime dehydratase"],["MCSA%3A644","limonene-1,2-epoxide hydrolase"]]},{"id":"NCBITaxon:1307","l":"Streptococcus suis","na":3,"nb":6,"a":[["monocyte-bto-0000876.html","monocyte"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["tonsil-bto-0001387.html","tonsil"]],"b":[["TED%3AAF-A0A0Z8XA17-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0Z8XA17-F1-model_v4_TED02"],["TED%3AAF-A0A116R309-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A116R309-F1-model_v4_TED02"],["TED%3AAF-A0A3R8SIF2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R8SIF2-F1-model_v4_TED01"],["TED%3AAF-A0A0Z8H9E5-F1-model_v4_TED02","TED novel fold AF-A0A0Z8H9E5-F1-model_v4_TED02"],["TED%3AAF-A0A4T2GPV6-F1-model_v4_TED02","TED novel fold AF-A0A4T2GPV6-F1-model_v4_TED02"],["TED%3AAF-A0A7G1JVZ6-F1-model_v4_TED02","TED novel fold AF-A0A7G1JVZ6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1624","l":"Ligilactobacillus salivarius","na":6,"nb":3,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["trachea-bto-0001388.html","trachea"],["animal-litter-envo-00002191.html","animal litter"],["intestine-environment-envo-2100002.html","intestine environment"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["TED%3AAF-A0A7X2SS58-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X2SS58-F1-model_v4_TED01"],["TED%3AAF-A0A089QBS8-F1-model_v4_TED02","TED novel fold AF-A0A089QBS8-F1-model_v4_TED02"],["TED%3AAF-A0A2A2XCA8-F1-model_v4_TED01","TED novel fold AF-A0A2A2XCA8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:243365","l":"Chromobacterium violaceum ATCC 12472","na":6,"nb":3,"a":[["acute-lymphoblastic-leukemia-cell-bto-0000731.html","acute lymphoblastic leukemia cell"],["adrenal-gland-bto-0000047.html","adrenal gland"],["eosinophil-bto-0000399.html","eosinophil"],["lymphocyte-bto-0000775.html","lymphocyte"],["neutrophil-bto-0000130.html","neutrophil"],["peripheral-blood-bto-0000553.html","peripheral blood"]],"b":[["Pfam%3APF17074","Darcynin, domain of unknown function"],["Pfam%3APF12902","Ferritin-like"],["Pfam%3APF06314","Acetoacetate decarboxylase (ADC)"]]},{"id":"NCBITaxon:253","l":"Chryseobacterium indologenes","na":6,"nb":3,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["seedling-bto-0001228.html","seedling"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["tropical-envo-01000204.html","tropical"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["PROSITE%3APS00744","Beta-lactamases class B signature 2"],["TED%3AAF-A0A7T8U7T3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T8U7T3-F1-model_v4_TED01"],["TED%3AAF-A0A0N0ZUI2-F1-model_v4_TED01","TED novel fold AF-A0A0N0ZUI2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:399742","l":"Enterobacter sp. (strain 638)","na":3,"nb":6,"a":[["vasculature-uberon-0002049.html","vasculature"],["part-of-plant-habitatmech-madin-25325947e2.html","part of plant"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Pfam%3APF12404","Peptidase"],["Pfam%3APF27465","DNA-binding protein Fis N-terminal domain"],["Pfam%3APF02300","Fumarate reductase subunit C"],["Pfam%3APF04102","SlyX"],["Pfam%3APF06005","ZapB family"],["Pfam%3APF07208","Protein of unknown function (DUF1414)"]]},{"id":"NCBITaxon:1245","l":"Leuconostoc mesenteroides","na":5,"nb":3,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["leaf-po-0025034.html","leaf"],["animal-manure-envo-00003031.html","animal manure"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["Pfam%3APF08951","Bacteriocin immunity protein family"],["MCSA%3A843","glucose-6-phosphate dehydrogenase"],["TED%3AAF-A0A8B5R1X5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B5R1X5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1310","l":"Streptococcus sobrinus","na":3,"nb":5,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"],["urine-bto-0001419.html","urine"],["biome-envo-00000428.html","biome"]],"b":[["IEDB%3A7600","epitope DANFDSIRVDAVDNVDADLLQ"],["IEDB%3A45122","epitope NNHVSIVEAWSDNDTPYLHD"],["IEDB%3A57976","epitope SGALRFYNLKGQLVTGSGWY"],["IEDB%3A70488","epitope VPSYSFARAHDSEVQDIIRD"],["IEDB%3A71693","epitope VVIANNVDKFVSWGITDFEM"]]},{"id":"NCBITaxon:1514140","l":"Trieres chinensis","na":3,"nb":5,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["estuarine-biome-envo-01000020.html","estuarine biome"],["shoreline-envo-00000486.html","shoreline"]],"b":[["TED%3AAF-A0A7S1YW68-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1YW68-F1-model_v4_TED01"],["TED%3AAF-A0A7S1Z4Z7-F1-model_v4_TED01","TED novel fold AF-A0A7S1Z4Z7-F1-model_v4_TED01"],["TED%3AAF-A0A7S1ZAT3-F1-model_v4_TED03","TED novel fold AF-A0A7S1ZAT3-F1-model_v4_TED03"],["TED%3AAF-A0A7S2A6A9-F1-model_v4_TED02","TED novel fold AF-A0A7S2A6A9-F1-model_v4_TED02"],["TED%3AAF-A0A7S2A7V0-F1-model_v4_TED02","TED novel fold AF-A0A7S2A7V0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:386415","l":"","na":3,"nb":5,"a":[["myocardium-bto-0000901.html","myocardium"],["reticuloendothelial-system-bto-0001174.html","reticuloendothelial system"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["Pfam%3APF27467","ATP-dependent helicase/deoxyribonuclease AddB fifth domain"],["Pfam%3APF01888","CbiD"],["Pfam%3APF18146","Damage-inducible protein CinA KH domain"],["IEDB%3A125733","epitope ASMDNTSPM"],["IEDB%3A127125","epitope SRDYYRHKV"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":5,"nb":3,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["pseudostem-bto-0005992.html","pseudostem"],["seedling-bto-0001228.html","seedling"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["soil-envo-00001998.html","soil"]],"b":[["PROSITE%3APS00336","Beta-lactamase class-C active site"],["MCSA%3A257","beta-lactamase (Class C)"],["TED%3AAF-A0A155XQ59-F1-model_v4_TED02","TED novel fold AF-A0A155XQ59-F1-model_v4_TED02"]]},{"id":"NCBITaxon:68886","l":"Theileria orientalis","na":5,"nb":3,"a":[["erythrocyte-bto-0000424.html","erythrocyte"],["leukocyte-bto-0000751.html","leukocyte"],["lymphocyte-bto-0000775.html","lymphocyte"],["macrophage-bto-0000801.html","macrophage"],["monocyte-bto-0000876.html","monocyte"]],"b":[["TED%3AAF-A0A2T7I0Y7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2T7I0Y7-F1-model_v4_TED02"],["TED%3AAF-A0A2T7ITL4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T7ITL4-F1-model_v4_TED01"],["TED%3AAF-A0A2T7IKV1-F1-model_v4_TED01","TED novel fold AF-A0A2T7IKV1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:813","l":"Chlamydia trachomatis","na":3,"nb":5,"a":[["conjunctiva-bto-0003415.html","conjunctiva"],["epithelial-cell-bto-0000414.html","epithelial cell"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["Pfam%3APF07382","Histone H1-like nucleoprotein HC2"],["Pfam%3APF01308","Chlamydia major outer membrane protein"],["Pfam%3APF05475","Pgp3 C-terminal domain"],["Pfam%3APF03504","Chlamydia cysteine-rich outer membrane protein 6"],["TED%3AAF-C7DZ76-F1-model_v4_TED01","TED novel fold AF-C7DZ76-F1-model_v4_TED01"]]},{"id":"NCBITaxon:95486","l":"Burkholderia cenocepacia","na":5,"nb":3,"a":[["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["TED%3AAF-A0A109EHZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A109EHZ6-F1-model_v4_TED01"],["TED%3AAF-A0A071M3L2-F1-model_v4_TED01","TED novel fold AF-A0A071M3L2-F1-model_v4_TED01"],["TED%3AAF-A0A088UYL8-F1-model_v4_TED01","TED novel fold AF-A0A088UYL8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1451","l":"Paenibacillus amylolyticus","na":3,"nb":4,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["Pfam%3APF03211","Pectate lyase"],["TED%3AAF-A0A117I1X0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A117I1X0-F1-model_v4_TED01"],["TED%3AAF-A0A1R1DDF3-F1-model_v4_TED01","TED novel fold AF-A0A1R1DDF3-F1-model_v4_TED01"],["TED%3AAF-A0A4V3B7H8-F1-model_v4_TED01","TED novel fold AF-A0A4V3B7H8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1582","l":"Lacticaseibacillus casei","na":3,"nb":4,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["Pfam%3APF07475","HPr Serine kinase C-terminal domain"],["PROSITE%3APS01163","Galactose-1-phosphate uridyl transferase family 2 signature"],["MCSA%3A112","dihydrofolate reductase (bacterial)"],["MCSA%3A31","thymidylate synthase"]]},{"id":"NCBITaxon:1587","l":"Lactobacillus helveticus","na":4,"nb":3,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["intestine-environment-envo-2100002.html","intestine environment"],["urban-biome-envo-01000249.html","urban biome"],["harbour-envo-00000463.html","harbour"]],"b":[["Pfam%3APF18008","Replication initiator protein A C-terminal domain"],["Pfam%3APF20956","Domain of unknown function (DUF4931) C-terminal domain"],["Pfam%3APF17312","Bacteriocin helveticin-J"]]},{"id":"NCBITaxon:203122","l":"","na":4,"nb":3,"a":[["intertidal-zone-envo-00000316.html","intertidal zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["saline-marsh-envo-00000054.html","saline marsh"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["Pfam%3APF22686","Exo-oligoalginate lyase-like, C-terminal domain"],["Pfam%3APF07940","Heparinase II/III-like, C-terminal"],["Pfam%3APF05426","Alginate lyase"]]},{"id":"NCBITaxon:243090","l":"","na":4,"nb":3,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["oligotrophic-water-envo-00002223.html","oligotrophic water"],["pond-water-envo-00002228.html","pond water"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["Pfam%3APF02601","Exonuclease VII, large subunit"],["TED%3AAF-Q7UU79-F1-model_v4_TED04","TED highly-symmetric fold AF-Q7UU79-F1-model_v4_TED04"],["TED%3AAF-Q7USE8-F1-model_v4_TED02","TED novel fold AF-Q7USE8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:28037","l":"Streptococcus mitis","na":3,"nb":4,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["archeological-site-envo-00000564.html","archeological site"],["tropical-envo-01000204.html","tropical"]],"b":[["Pfam%3APF03047","COMC family"],["TED%3AAF-A0A1X1L9U5-F1-model_v4_TED02","TED novel fold AF-A0A1X1L9U5-F1-model_v4_TED02"],["TED%3AAF-A0A428B8X0-F1-model_v4_TED01","TED novel fold AF-A0A428B8X0-F1-model_v4_TED01"],["TED%3AAF-A0A6L5H4V3-F1-model_v4_TED03","TED novel fold AF-A0A6L5H4V3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:28447","l":"Clavibacter michiganensis","na":3,"nb":4,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["canker-habitatmech-bacdive-0f078d72a7.html","Canker"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["TED%3AAF-A0A251YC11-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A251YC11-F1-model_v4_TED02"],["TED%3AAF-A0A2S5VA57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5VA57-F1-model_v4_TED01"],["TED%3AAF-A0A2S5VJK2-F1-model_v4_TED01","TED novel fold AF-A0A2S5VJK2-F1-model_v4_TED01"],["TED%3AAF-A0A399NHQ8-F1-model_v4_TED01","TED novel fold AF-A0A399NHQ8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:290398","l":"","na":3,"nb":4,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["saline-evaporation-pond-envo-00000055.html","saline evaporation pond"],["joint-bto-0001686.html","joint"]],"b":[["Pfam%3APF20629","D-galactarate/Altronate dehydratase, C-terminal"],["Pfam%3APF04295","D-galactarate dehydratase/Altronate hydrolase, second domain"],["Pfam%3APF11982","Domain of unknown function (DUF3483)"],["PROSITE%3APS00908","Mandelate racemase / muconate lactonizing enzyme family signature 1"]]},{"id":"NCBITaxon:29159","l":"Crassostrea gigas","na":3,"nb":4,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["Pfam%3APF22494","Choice-of-anchor I domain"],["TED%3AAF-K1PYR0-F1-model_v4_TED01","TED novel fold AF-K1PYR0-F1-model_v4_TED01"],["TED%3AAF-K1Q3N2-F1-model_v4_TED01","TED novel fold AF-K1Q3N2-F1-model_v4_TED01"],["TED%3AAF-K1RG39-F1-model_v4_TED01","TED novel fold AF-K1RG39-F1-model_v4_TED01"]]},{"id":"NCBITaxon:365044","l":"Polaromonas naphthalenivorans CJ2","na":4,"nb":3,"a":[["aquifer-envo-00012408.html","aquifer"],["large-river-biome-envo-00000887.html","large river biome"],["waterfall-envo-00000040.html","waterfall"],["petroleum-envo-00002984.html","petroleum"]],"b":[["Pfam%3APF01888","CbiD"],["IEDB%3A127411","epitope YARNFLIPF"],["Pfam%3APF02609","Exonuclease VII small subunit"]]},{"id":"NCBITaxon:404589","l":"","na":3,"nb":4,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["TED%3AAF-A7H7H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A7H7H4-F1-model_v4_TED01"],["TED%3AAF-A7H7U8-F1-model_v4_TED01","TED highly-symmetric fold AF-A7H7U8-F1-model_v4_TED01"],["TED%3AAF-A7HAV5-F1-model_v4_TED01","TED novel fold AF-A7HAV5-F1-model_v4_TED01"],["TED%3AAF-A7HE89-F1-model_v4_TED01","TED novel fold AF-A7HE89-F1-model_v4_TED01"]]},{"id":"NCBITaxon:45351","l":"Nematostella vectensis","na":4,"nb":3,"a":[["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["microbial-mat-material-envo-01000157.html","microbial mat material"],["slope-envo-00002000.html","slope"]],"b":[["Pfam%3APF14777","Cilia BBSome complex subunit 10"],["TED%3AAF-A7SVA7-F1-model_v4_TED01","TED highly-symmetric fold AF-A7SVA7-F1-model_v4_TED01"],["TED%3AAF-A7SXG3-F1-model_v4_TED02","TED novel fold AF-A7SXG3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:50741","l":"Marinobacter sp.","na":3,"nb":4,"a":[["marine-water-body-envo-00001999.html","marine water body"],["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["TED%3AAF-A0A2D9LBV8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9LBV8-F1-model_v4_TED01"],["TED%3AAF-A0A2D7X1D2-F1-model_v4_TED01","TED novel fold AF-A0A2D7X1D2-F1-model_v4_TED01"],["TED%3AAF-A0A2E8AEX3-F1-model_v4_TED02","TED novel fold AF-A0A2E8AEX3-F1-model_v4_TED02"],["TED%3AAF-A0A3D5Q8H2-F1-model_v4_TED01","TED novel fold AF-A0A3D5Q8H2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1019","l":"Capnocytophaga sputigena","na":3,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"],["biotope-envo-00002036.html","biotope"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["IEDB%3A226619","epitope IDIVMAIDVSSSMLS"],["TED%3AAF-A0A3S4WAY3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S4WAY3-F1-model_v4_TED01"],["TED%3AAF-A0A2A3N675-F1-model_v4_TED02","TED novel fold AF-A0A2A3N675-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1260","l":"Finegoldia magna","na":3,"nb":3,"a":[["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["Pfam%3APF17573","GA-like domain"],["Pfam%3APF18656","Family of unknown function (DUF5633)"],["TED%3AAF-A0A233W4R0-F1-model_v4_TED01","TED novel fold AF-A0A233W4R0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1492","l":"Clostridium butyricum","na":3,"nb":3,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["intestine-environment-envo-2100002.html","intestine environment"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["Pfam%3APF00302","Chloramphenicol acetyltransferase"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["PROSITE%3APS00100","Chloramphenicol acetyltransferase active site"]]},{"id":"NCBITaxon:1629","l":"Weissella viridescens","na":3,"nb":3,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["Pfam%3APF02388","FemAB family"],["MCSA%3A781","UDP-N-acetylmuramoylpentapeptide-lysine N6-alanyltransferase"],["TED%3AAF-A0A3P2RFX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3P2RFX7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1717","l":"Corynebacterium diphtheriae","na":3,"nb":3,"a":[["foot-bto-0000476.html","foot"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["Pfam%3APF08051","Erythromycin resistance leader peptide"],["PROSITE%3APS01007","Transposases, Mutator family, signature"],["TED%3AAF-A0A811G0F8-F1-model_v4_TED05","TED novel fold AF-A0A811G0F8-F1-model_v4_TED05"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":3,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["TED%3AAF-A0A142EAM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142EAM9-F1-model_v4_TED03"],["TED%3AAF-A0A1Q3DTY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3DTY6-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3DNE3-F1-model_v4_TED01","TED novel fold AF-A0A1Q3DNE3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1961","l":"Streptomyces virginiae","na":3,"nb":3,"a":[["clay-envo-00002982.html","clay"],["plain-envo-00000086.html","plain"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF19328","2,4-diaminopentanoate dehydrogenase C-terminal domain"],["PROSITE%3APS01014","Transcription termination factor nusG signature"]]},{"id":"NCBITaxon:203124","l":"Trichodesmium erythraeum IMS101","na":3,"nb":3,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["coastal-water-body-envo-02000049.html","coastal water body"],["marine-neritic-zone-envo-00000206.html","marine neritic zone"]],"b":[["Pfam%3APF06206","CpeT/CpcT family (DUF1001)"],["Pfam%3APF18460","Heterocyst differentiation regulator C-terminal Hood domain"],["TED%3AAF-Q10WG6-F1-model_v4_TED05","TED highly-symmetric fold AF-Q10WG6-F1-model_v4_TED05"]]},{"id":"NCBITaxon:28108","l":"Alteromonas macleodii","na":3,"nb":3,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["marine-water-body-envo-00001999.html","marine water body"],["sandstone-envo-00002055.html","sandstone"]],"b":[["TED%3AAF-A0A6C5N007-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6C5N007-F1-model_v4_TED01"],["TED%3AAF-A0A126Q0V0-F1-model_v4_TED01","TED novel fold AF-A0A126Q0V0-F1-model_v4_TED01"],["TED%3AAF-A0A6T9Y0H6-F1-model_v4_TED01","TED novel fold AF-A0A6T9Y0H6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:335543","l":"","na":3,"nb":3,"a":[["anaerobic-sludge-envo-00002129.html","anaerobic sludge"],["submerged-bed-envo-00000501.html","submerged bed"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["Pfam%3APF03746","LamB/YcsF family"],["Pfam%3APF03588","Leucyl/phenylalanyl-tRNA protein transferase"],["Pfam%3APF05167","Uncharacterised ACR (DUF711)"]]},{"id":"NCBITaxon:340102","l":"","na":3,"nb":3,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"],["solfatara-envo-00000217.html","solfatara"]],"b":[["Pfam%3APF22039","Imidazolonepropionase-like composite domain, bacteria"],["Pfam%3APF01949","Endonuclease dU"],["TED%3AAF-A4WK08-F1-model_v4_TED01","TED novel fold AF-A4WK08-F1-model_v4_TED01"]]},{"id":"NCBITaxon:40214","l":"Acinetobacter johnsonii","na":3,"nb":3,"a":[["liquid-water-envo-00002006.html","liquid water"],["pitcher-bto-0001069.html","pitcher"],["water-scum-envo-00005794.html","water scum"]],"b":[["Pfam%3APF12973","ChrR Cupin-like domain"],["IEDB%3A226585","epitope DKFLEMAVERVKRIK"],["Pfam%3APF13807","G-rich domain on putative tyrosine kinase"]]},{"id":"NCBITaxon:418699","l":"","na":3,"nb":3,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["petroleum-envo-00002984.html","petroleum"]],"b":[["Pfam%3APF27460","ATP phosphoribosyltransferase subunit HisZ C-terminal domain"],["Pfam%3APF20543","N2-fixation sustaining protein CowN"],["PROSITE%3APS00855","Signal peptidases II signature"]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":3,"nb":3,"a":[["liquid-water-envo-00002006.html","liquid water"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"]],"b":[["Pfam%3APF07833","Copper amine oxidase N-terminal domain"],["MCSA%3A87","urease"],["TED%3AAF-A0A447L715-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A447L715-F1-model_v4_TED02"]]},{"id":"NCBITaxon:582","l":"Morganella morganii","na":3,"nb":3,"a":[["blast-cell-bto-0000125.html","blast cell"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"],["spike-bto-0001278.html","spike"]],"b":[["PROSITE%3APS01157","Class A bacterial acid phosphatases signature"],["TED%3AAF-A0A2C5TPE5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2C5TPE5-F1-model_v4_TED01"],["TED%3AAF-A0A0A2RJY1-F1-model_v4_TED02","TED novel fold AF-A0A0A2RJY1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":3,"nb":3,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Pfam%3APF04205","FMN-binding domain"],["Pfam%3APF10795","Protein of unknown function (DUF2607)"],["TED%3AAF-A0A1W6U0N2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W6U0N2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:94122","l":"Shewanella sp. ANA-3","na":3,"nb":3,"a":[["alkaline-water-envo-01000357.html","alkaline water"],["brackish-estuary-envo-00002137.html","brackish estuary"],["underground-water-envo-00005792.html","underground water"]],"b":[["Pfam%3APF03883","Peroxide stress protein YaaA"],["Pfam%3APF04751","Dual-action ribosomal maturation protein DarP"],["Pfam%3APF04356","Protein of unknown function (DUF489)"]]},{"id":"NCBITaxon:6239","l":"Caenorhabditis elegans","na":2,"nb":9682,"a":[["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.14.14.-","With reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.17.-","With reduced ascorbate as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.19.-","With oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water"],["EC%3A1.14.99.-","Miscellaneous"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii (strain ATCC 43067 / DSM 2661 / JAL-1 / JCM 10045 / NBRC 100440)","na":2,"nb":5186,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["EC%3A1.12.99.-","With other acceptors"],["EC%3A1.3.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.3.-.-","Acting on the CH-CH group of donors"],["EC%3A1.8.98.-","With other, known, acceptors"],["EC%3A1.97.1.-","Other oxidoreductases"],["EC%3A2.1.2.-","Hydroxymethyl-, formyl- and related transferases"]]},{"id":"NCBITaxon:320483","l":"Anaplasma marginale str. Florida","na":2,"nb":134,"a":[["erythrocyte-bto-0000424.html","erythrocyte"],["filament-bto-0000463.html","filament"]],"b":[["IEDB%3A95219","epitope AFAGAFYHKVLGDGDYDELPLSHISDYTGT"],["IEDB%3A1305","epitope AFGSIKDFKVQEAGGTTRGVFPYKRDAAGR"],["IEDB%3A174044","epitope AFTLRYGSSTACVFNEKLYRTSSTSRRGRG"],["IEDB%3A95223","epitope AGAFARAVEGAEVIEVRAIGSTSVMLNACY"],["IEDB%3A1519","epitope AGGAQRVAAQERSREL"],["IEDB%3A1553","epitope AGHVDALGISYNQLDK"]]},{"id":"NCBITaxon:83331","l":"Mycobacterium tuberculosis (strain CDC 1551 / Oshkosh)","na":2,"nb":100,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["Pfam%3APF09407","AbiEi antitoxin C-terminal domain"],["Pfam%3APF17668","Acetyltransferase (GNAT) domain"],["Pfam%3APF13480","Acetyltransferase (GNAT) domain"],["Pfam%3APF13527","Acetyltransferase (GNAT) domain"],["Pfam%3APF16701","Adenylate cyclase regulatory domain"],["Pfam%3APF06029","AlkA N-terminal domain"]]},{"id":"NCBITaxon:9031","l":"Gallus gallus","na":2,"nb":64,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["Pfam%3APF16620","Unstructured linker between I-set domains 2 and 3 on MYLCK"],["Pfam%3APF15512","Chromatin assembly factor complex 1 subunit p60, C-terminal"],["Pfam%3APF18130","ATP-grasp N-terminal domain"],["Pfam%3APF15632","ATP-grasp in the biosynthetic pathway with Ter operon"],["Pfam%3APF01382","Avidin family"],["Pfam%3APF08072","BDHCT (NUC031) domain"]]},{"id":"NCBITaxon:5851","l":"Plasmodium knowlesi strain H","na":2,"nb":55,"a":[["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["hypnozoite-bto-0003594.html","hypnozoite"]],"b":[["IEDB%3A4332","epitope ASASDQPRQY"],["IEDB%3A6014","epitope CAPEAECTM"],["IEDB%3A7054","epitope CSPDSQNKDAM"],["IEDB%3A7218","epitope CTTHMVKECEM"],["IEDB%3A8858","epitope DKEKKKEKGKEKEEEPKKPN"],["IEDB%3A10690","epitope DVPDVENDV"]]},{"id":"NCBITaxon:9541","l":"Macaca fascicularis","na":2,"nb":30,"a":[["neritic-epipelagic-zone-biome-envo-01000042.html","neritic epipelagic zone biome"],["sea-shore-envo-00000485.html","sea shore"]],"b":[["Pfam%3APF16618","Linker region between SH3 and WW domains on ARHGAP12"],["Pfam%3APF28426","ATRIP C-terminal domain"],["Pfam%3APF28409","ATR-interacting protein N-terminal domain"],["Pfam%3APF23998","BTBDG BTB/POZ domain"],["Pfam%3APF21059","BTB/POZ domain-containing protein 16, C-terminal domain"],["Pfam%3APF12366","Cancer susceptibility candidate 1 C-terminal"]]},{"id":"NCBITaxon:4577","l":"Zea mays","na":2,"nb":22,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["IDPO%3A0000002","disorder"],["Pfam%3APF14861","Plant antimicrobial peptide"],["Pfam%3APF02041","Auxin binding protein"],["Pfam%3APF25436","BSD2 cysteine rich domain"],["Pfam%3APF23493","Cysteinyl-tRNA ligase anticodon binding domain"],["Pfam%3APF03330","Lytic transglycolase"]]},{"id":"NCBITaxon:176299","l":"Agrobacterium fabrum (strain C58 / ATCC 33970)","na":2,"nb":19,"a":[["human-construction-envo-00000070.html","human construction"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF28403","Aconitase X second domain"],["Pfam%3APF28406","Aconitase X third domain"],["Pfam%3APF04412","Aconitase X first domain"],["Pfam%3APF01989","Aconitase X swivel domain"]]},{"id":"NCBITaxon:85963","l":"Helicobacter pylori (strain J99 / ATCC 700824)","na":2,"nb":18,"a":[["anaerobic-sludge-blanket-reactor-envo-00002213.html","anaerobic sludge blanket reactor"],["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["Pfam%3APF15437","Plasminogen-binding protein pgbA C-terminal"],["Pfam%3APF02293","AmiS/UreI family transporter"],["Pfam%3APF26365","Apolipoprotein N-acyltransferase integral membrane domain"],["Pfam%3APF16730","DnaG-primase C-terminal, helicase-binding domain"],["Pfam%3APF10398","Protein of unknown function (DUF2443)"],["Pfam%3APF13099","Domain of unknown function (DUF3944)"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":2,"nb":17,"a":[["feces-uberon-0001988.html","feces"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["Pfam%3APF05932","Tir chaperone protein (CesT) family"],["Pfam%3APF17656","FlgA N-terminal domain"],["Pfam%3APF22200","ExsA N-terminal regulatory domain"],["Pfam%3APF05171","Haemin-degrading HemS.ChuX domain"],["Pfam%3APF07201","HrpJ-like domain"],["Pfam%3APF04391","Protein of unknown function (DUF533)"]]},{"id":"NCBITaxon:272631","l":"Mycobacterium leprae (strain TN)","na":2,"nb":16,"a":[["peripheral-blood-mononuclear-cell-bto-0001025.html","peripheral blood mononuclear cell"],["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["Pfam%3APF26519","Biotin synthase auxiliary protein family"],["Pfam%3APF24481","CT398-like coiled coil hairpin domain"],["Pfam%3APF09438","Domain of unknown function (DUF2017)"],["Pfam%3APF12089","Transmembrane domain of unknown function (DUF3566)"],["Pfam%3APF12823","Domain of unknown function (DUF3817)"],["Pfam%3APF19187","PafC helix-turn-helix domain"]]},{"id":"NCBITaxon:1590","l":"Lactiplantibacillus plantarum","na":14,"nb":2,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["food-fermented-foodon-00001258.html","food (fermented)"],["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"],["breast-bto-0000149.html","breast"],["colonic-epithelium-bto-0001709.html","colonic epithelium"],["epithelial-cell-bto-0000414.html","epithelial cell"]],"b":[["Pfam%3APF06314","Acetoacetate decarboxylase (ADC)"],["MCSA%3A572","catalase (manganese dependent)"]]},{"id":"NCBITaxon:574521","l":"Escherichia coli O127:H6 (strain E2348/69 / EPEC)","na":2,"nb":13,"a":[["enterocyte-bto-0000398.html","enterocyte"],["gut-epithelium-bto-0000956.html","gut epithelium"]],"b":[["IDPO%3A0000006","order"],["IDPO%3A0000045","phosphorylation display site"],["Pfam%3APF02369","Bacterial Ig-like domain (group 1)"],["Pfam%3APF05307","Bundlin"],["Pfam%3APF27328","EcpD C-terminal domain"],["Pfam%3APF11924","Inverse autotransporter, beta-domain"]]},{"id":"NCBITaxon:58172","l":"Paenibacillus sp.","na":12,"nb":2,"a":[["factory-envo-01000536.html","factory"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["Pfam%3APF03442","Carbohydrate binding domain X2"],["TED%3AAF-A0A357M9E9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A357M9E9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:234267","l":"Candidatus Solibacter usitatus Ellin6076","na":11,"nb":2,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["pond-water-envo-00002228.html","pond water"],["aquatic-environment-envo-01000317.html","aquatic environment"],["desert-sand-envo-00005800.html","desert sand"],["environmental-material-envo-00010483.html","environmental material"],["mud-envo-01000001.html","mud"]],"b":[["TED%3AAF-Q01YB9-F1-model_v4_TED05","TED highly-symmetric fold AF-Q01YB9-F1-model_v4_TED05"],["TED%3AAF-Q02DA0-F1-model_v4_TED01","TED highly-symmetric fold AF-Q02DA0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:31234","l":"Caenorhabditis remanei","na":2,"nb":11,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"]],"b":[["TED%3AAF-A0A260YVB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A260YVB9-F1-model_v4_TED01"],["TED%3AAF-A0A2P4UZM7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2P4UZM7-F1-model_v4_TED02"],["TED%3AAF-A0A6A5GBX3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A5GBX3-F1-model_v4_TED01"],["TED%3AAF-A0A6A5H6H5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A5H6H5-F1-model_v4_TED01"],["TED%3AAF-A0A6A5HK12-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6A5HK12-F1-model_v4_TED02"],["TED%3AAF-E3LF65-F1-model_v4_TED02","TED highly-symmetric fold AF-E3LF65-F1-model_v4_TED02"]]},{"id":"NCBITaxon:190485","l":"","na":2,"nb":10,"a":[["fruit-bto-0000486.html","fruit"],["vascular-tissue-bto-0001432.html","vascular tissue"]],"b":[["Pfam%3APF28546","TonB transmembrane helix"],["Pfam%3APF00325","Bacterial regulatory proteins, crp family"],["Pfam%3APF06165","Glycosyl hydrolase 94, supersandwich domain"],["Pfam%3APF12019","Type II transport protein GspH"],["Pfam%3APF22059","Glucuronosyltransferase GumK, N-terminal domain"],["Pfam%3APF14307","Glycosyltransferase WbsX"]]},{"id":"NCBITaxon:190650","l":"Caulobacter vibrioides (strain ATCC 19089 / CIP 103742 / CB 15)","na":2,"nb":10,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["IDPO%3A0000060","self-assembly"],["Pfam%3APF27198","FlaEY third domain"],["Pfam%3APF22367","Flagellar hook protein FlgE, third domain"],["Pfam%3APF03799","Cell division protein FtsQ/DivIB, C-terminal"],["Pfam%3APF27294","HfaA"],["Pfam%3APF27277","Holdfast attachment protein D"]]},{"id":"NCBITaxon:1911","l":"Streptomyces griseus","na":2,"nb":10,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["Pfam%3APF13207","AAA domain"],["Pfam%3APF27054","Beta-methylindole-3-pyruvate reductase C-terminal domain"],["Pfam%3APF26558","3-dehydroquinate synthase II C-terminal domain"],["Pfam%3APF01959","3-dehydroquinate synthase II N-terminal domain"],["Pfam%3APF13459","4Fe-4S single cluster domain"],["Pfam%3APF04655","Aminoglycoside/hydroxyurea antibiotic resistance kinase"]]},{"id":"NCBITaxon:853","l":"Faecalibacterium prausnitzii","na":2,"nb":10,"a":[["coral-reef-envo-00000150.html","coral reef"],["tropical-envo-01000204.html","tropical"]],"b":[["TED%3AAF-A0A2A7AJ69-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A7AJ69-F1-model_v4_TED01"],["TED%3AAF-A0A329UNG0-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A329UNG0-F1-model_v4_TED05"],["TED%3AAF-A0A3F3JVN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3F3JVN3-F1-model_v4_TED01"],["TED%3AAF-A0A564SWB8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A564SWB8-F1-model_v4_TED02"],["TED%3AAF-A0A173SIF7-F1-model_v4_TED01","TED novel fold AF-A0A173SIF7-F1-model_v4_TED01"],["TED%3AAF-A0A173WYP6-F1-model_v4_TED01","TED novel fold AF-A0A173WYP6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:166","l":"Treponema sp.","na":2,"nb":9,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["TED%3AAF-A0A351Z2H3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A351Z2H3-F1-model_v4_TED01"],["TED%3AAF-A0A356K0W2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A356K0W2-F1-model_v4_TED02"],["TED%3AAF-A0A3B8WTM6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3B8WTM6-F1-model_v4_TED02"],["TED%3AAF-A0A3C1HX51-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3C1HX51-F1-model_v4_TED03"],["TED%3AAF-A0A521IH80-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521IH80-F1-model_v4_TED01"],["TED%3AAF-A0A7X8IF67-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X8IF67-F1-model_v4_TED01"]]},{"id":"NCBITaxon:272624","l":"Legionella pneumophila subsp. pneumophila (strain Philadelphia 1 / ATCC 33152 / DSM 7513)","na":2,"nb":9,"a":[["underground-water-envo-00005792.html","underground water"],["macrophage-bto-0000801.html","macrophage"]],"b":[["Pfam%3APF22170","Phosphocholine transferase AnkX insertion domain"],["Pfam%3APF23127","DotM, C-terminal cytoplasmic domain"],["Pfam%3APF14860","DrrA phosphatidylinositol 4-phosphate binding domain"],["Pfam%3APF01346","Domain amino terminal to FKBP-type peptidyl-prolyl isomerase"],["Pfam%3APF19335","Heavy metal binding domain"],["Pfam%3APF26393","Lart1 ADP-ribosyltransferase family"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":9,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["mud-envo-01000001.html","mud"]],"b":[["PROSITE%3APS01322","Phosphotriesterase family signature 1"],["MCSA%3A159","aryldialkylphosphatase"]]},{"id":"NCBITaxon:1074","l":"Rhodoblastus acidophilus","na":8,"nb":2,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"],["liquid-water-envo-00002006.html","liquid water"],["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["rhizosphere-envo-00005801.html","rhizosphere"]],"b":[["PROSITE%3APS00969","Antenna complexes beta subunits signature"],["TED%3AAF-A0A6N8DR15-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8DR15-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1655","l":"Actinomyces naeslundii","na":8,"nb":2,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"],["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"],["archeological-site-envo-00000564.html","archeological site"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Pfam%3APF16555","Gram-positive pilin subunit D1, N-terminal domain"],["TED%3AAF-A0A2Z5QNH6-F1-model_v4_TED02","TED novel fold AF-A0A2Z5QNH6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2702","l":"Gardnerella vaginalis","na":8,"nb":2,"a":[["egg-food-product-foodon-00001274.html","egg food product"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["TED%3AAF-A0A133NUL7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A133NUL7-F1-model_v4_TED01"],["TED%3AAF-A0A3E2C3X9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3E2C3X9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":8,"nb":2,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"]],"b":[["TED%3AAF-A0A6N3WS12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N3WS12-F1-model_v4_TED01"],["TED%3AAF-A0A3R7GIU2-F1-model_v4_TED02","TED novel fold AF-A0A3R7GIU2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:419947","l":"Mycobacterium tuberculosis (strain ATCC 25177 / H37Ra)","na":2,"nb":8,"a":[["clay-envo-00002982.html","clay"],["paddy-field-envo-00000297.html","paddy field"]],"b":[["Pfam%3APF17668","Acetyltransferase (GNAT) domain"],["Pfam%3APF13527","Acetyltransferase (GNAT) domain"],["Pfam%3APF02261","Aspartate decarboxylase"],["Pfam%3APF07584","Aerotolerance regulator N-terminal"],["Pfam%3APF03993","Domain of Unknown Function (DUF349)"],["Pfam%3APF02313","Fumarate reductase subunit D"]]},{"id":"NCBITaxon:467705","l":"Streptococcus gordonii (strain Challis / ATCC 35105 / BCRC 15272 / CH1 / DL1 / V288)","na":2,"nb":8,"a":[["dental-plaque-bto-0000338.html","dental plaque"],["tooth-bto-0000397.html","tooth"]],"b":[["Pfam%3APF18652","Adhesin P1 N-terminal domain"],["Pfam%3APF17998","Cell surface antigen I/II C2 terminal domain"],["Pfam%3APF16364","Cell surface antigen C-terminus"],["Pfam%3APF18938","Atypical Rib domain"],["Pfam%3APF20164","GspA/SrpA SigLec-like domain"],["Pfam%3APF08363","Glucan-binding protein C"]]},{"id":"NCBITaxon:1231","l":"Nitrosospira multiformis","na":7,"nb":2,"a":[["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["biome-envo-00000428.html","biome"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"],["sludge-envo-00002044.html","sludge"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"]],"b":[["TED%3AAF-A0A1I0DRD9-F1-model_v4_TED01","TED novel fold AF-A0A1I0DRD9-F1-model_v4_TED01"],["TED%3AAF-A0A2T5IBV5-F1-model_v4_TED01","TED novel fold AF-A0A2T5IBV5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2021","l":"Thermobifida fusca","na":2,"nb":7,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["Pfam%3APF00553","Cellulose binding domain"],["Pfam%3APF01341","Glycosyl hydrolases family 6"],["PROSITE%3APS00561","CBM2a (carbohydrate-binding type-2) domain signature"],["PROSITE%3APS00655","Glycosyl hydrolases family 6 signature 1"],["PROSITE%3APS00656","Glycosyl hydrolases family 6 signature 2"],["MCSA%3A559","cellulase (GH9)"]]},{"id":"NCBITaxon:216773","l":"Corethron hystrix","na":2,"nb":7,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"],["saline-water-envo-00002010.html","saline water"]],"b":[["TED%3AAF-A0A7S1B7I7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1B7I7-F1-model_v4_TED01"],["TED%3AAF-A0A7S1BDF8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1BDF8-F1-model_v4_TED01"],["TED%3AAF-A0A7S1BL96-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1BL96-F1-model_v4_TED01"],["TED%3AAF-A0A7S1FKX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1FKX2-F1-model_v4_TED01"],["TED%3AAF-A0A7S1BFC1-F1-model_v4_TED01","TED novel fold AF-A0A7S1BFC1-F1-model_v4_TED01"],["TED%3AAF-A0A7S1BX15-F1-model_v4_TED02","TED novel fold AF-A0A7S1BX15-F1-model_v4_TED02"]]},{"id":"NCBITaxon:379508","l":"Lodderomyces elongisporus (strain ATCC 11503 / CBS 2605 / JCM 1781 / NBRC 1676 / NRRL YB-4239)","na":2,"nb":7,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"],["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["Pfam%3APF28272","AIM11 N-terminal domain"],["Pfam%3APF23681","ATP-dependent rRNA helicase SPB4-like, C-terminal tail"],["Pfam%3APF01987","Mitochondrial biogenesis AIM24"],["Pfam%3APF17052","Cap associated factor"],["PROSITE%3APS00885","EPSP synthase signature 2"],["TED%3AAF-A5DUG9-F1-model_v4_TED01","TED novel fold AF-A5DUG9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:529507","l":"Proteus mirabilis (strain HI4320)","na":2,"nb":7,"a":[["needle-bto-0000917.html","needle"],["spinal-cord-bto-0001279.html","spinal cord"]],"b":[["Pfam%3APF02028","BCCT, betaine/carnitine/choline family transporter"],["IEDB%3A431","epitope AASGDGTITFTGKVIDAPCG"],["IEDB%3A14261","epitope ESRRAL"],["IEDB%3A125136","epitope LGSISESRRALQDSQR"],["PROSITE%3APS01303","BCCT family of transporters signature"],["PROSITE%3APS01120","Urease nickel ligands signature"]]},{"id":"NCBITaxon:63737","l":"Nostoc punctiforme PCC 73102","na":2,"nb":7,"a":[["heterocyst-bto-0000600.html","heterocyst"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["Pfam%3APF11266","Long-chain fatty aldehyde decarbonylase"],["Pfam%3APF21808","Bacterial dynamin-like protein, helical domain"],["Pfam%3APF18460","Heterocyst differentiation regulator C-terminal Hood domain"],["Pfam%3APF13619","KTSC domain"],["IEDB%3A127372","epitope WFSSGLWPF"],["IEDB%3A110157","epitope YWPTEGYEF"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":2,"nb":7,"a":[["hospital-envo-00002173.html","hospital"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["Pfam%3APF16376","N-terminal domain of fragilysin"],["MCSA%3A15","beta-lactamase (Class B1)"],["TED%3AAF-A0A412XR06-F1-model_v4_TED03","TED novel fold AF-A0A412XR06-F1-model_v4_TED03"],["TED%3AAF-A0A4V1EUI2-F1-model_v4_TED02","TED novel fold AF-A0A4V1EUI2-F1-model_v4_TED02"],["TED%3AAF-A0A5C6IXH5-F1-model_v4_TED01","TED novel fold AF-A0A5C6IXH5-F1-model_v4_TED01"],["TED%3AAF-A0A5C6L6G9-F1-model_v4_TED02","TED novel fold AF-A0A5C6L6G9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1184267","l":"Pseudobdellovibrio exovorus JSS","na":6,"nb":2,"a":[["stream-envo-00000023.html","stream"],["biome-envo-00000428.html","biome"],["desert-biome-envo-01000179.html","desert biome"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["TED%3AAF-M4VA20-F1-model_v4_TED02","TED highly-symmetric fold AF-M4VA20-F1-model_v4_TED02"],["TED%3AAF-M4VEE5-F1-model_v4_TED01","TED highly-symmetric fold AF-M4VEE5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1512","l":"[Clostridium] symbiosum","na":6,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["animal-house-envo-00003040.html","animal house"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["emulsion-envo-00010506.html","emulsion"],["environmental-feature-envo-00002297.html","environmental feature"],["pig-manure-envo-00003860.html","pig manure"]],"b":[["MCSA%3A579","glutamate dehydrogenase"],["MCSA%3A207","pyruvate, phosphate dikinase"]]},{"id":"NCBITaxon:3068","l":"Volvox carteri f. nagariensis","na":6,"nb":2,"a":[["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["neritic-epipelagic-zone-biome-envo-01000042.html","neritic epipelagic zone biome"],["germ-cell-bto-0000535.html","germ cell"],["semen-bto-0001230.html","semen"],["sea-shore-envo-00000485.html","sea shore"]],"b":[["IEDB%3A229989","epitope GAHCIHFFKSAVCR"],["TED%3AAF-D8U4E8-F1-model_v4_TED01","TED highly-symmetric fold AF-D8U4E8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:34003","l":"Paracoccus aminophilus","na":6,"nb":2,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["small-river-biome-envo-00000890.html","small river biome"],["water-scum-envo-00005794.html","water scum"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"],["stony-desert-envo-00000183.html","stony desert"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["Pfam%3APF26354","N,N-dimethylformamidase alpha subunit"],["Pfam%3APF20254","N,N-dimethylformamidase beta subunit-like, C-terminal"]]},{"id":"NCBITaxon:353153","l":"Trypanosoma cruzi (strain CL Brener)","na":2,"nb":6,"a":[["amastigote-bto-0000062.html","amastigote"],["kinetoplastid-bto-0002502.html","kinetoplastid"]],"b":[["Pfam%3APF03738","Glutathionylspermidine synthase preATP-grasp"],["TED%3AAF-Q4D5Q0-F1-model_v4_TED01","TED highly-symmetric fold AF-Q4D5Q0-F1-model_v4_TED01"],["TED%3AAF-Q4CQE1-F1-model_v4_TED01","TED novel fold AF-Q4CQE1-F1-model_v4_TED01"],["TED%3AAF-Q4DRS0-F1-model_v4_TED01","TED novel fold AF-Q4DRS0-F1-model_v4_TED01"],["TED%3AAF-Q4DY69-F1-model_v4_TED01","TED novel fold AF-Q4DY69-F1-model_v4_TED01"],["TED%3AAF-Q4E0W9-F1-model_v4_TED01","TED novel fold AF-Q4E0W9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":2,"nb":6,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["Pfam%3APF01177","Asp/Glu/Hydantoin racemase"],["Pfam%3APF11339","Protein of unknown function (DUF3141)"],["PROSITE%3APS01303","BCCT family of transporters signature"],["PROSITE%3APS00665","Dihydrodipicolinate synthase signature 1"],["TED%3AAF-A0A2J0YSD4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J0YSD4-F1-model_v4_TED01"],["TED%3AAF-A0A843ZNG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843ZNG8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:446","l":"Legionella pneumophila","na":6,"nb":2,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["hospital-envo-00002173.html","hospital"],["macrophage-bto-0000801.html","macrophage"],["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["Pfam%3APF14860","DrrA phosphatidylinositol 4-phosphate binding domain"],["TED%3AAF-A0A822WCM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A822WCM6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:523849","l":"Thermococcus litoralis (strain ATCC 51850 / DSM 5473 / JCM 8560 / NS-C)","na":2,"nb":6,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["Pfam%3APF09094","Alpha-amylase/4-alpha-glucanotransferase, middle domain"],["Pfam%3APF09095","Alpha-amylase/4-alpha-glucanotransferase, C-terminal"],["Pfam%3APF28476","Glycogen phosphorylase C-terminal domain"],["Pfam%3APF11897","Protein of unknown function (DUF3417)"],["PROSITE%3APS01334","Pyrrolidone-carboxylate peptidase cysteine active site"],["PROSITE%3APS01333","Pyrrolidone-carboxylate peptidase glutamic acid active site"]]},{"id":"NCBITaxon:556","l":"Dickeya chrysanthemi","na":2,"nb":6,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["Pfam%3APF18390","Glycogen debranching enzyme C-terminal domain"],["Pfam%3APF25994","AprE, long alpha-helical hairpin"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF03812","2-keto-3-deoxygluconate permease"],["Pfam%3APF09589","HrpA pilus formation protein"],["MCSA%3A896","pectate lyase C (polysaccharide lyase 1 family)"]]},{"id":"UBERON:0001046","l":"","na":6,"nb":2,"a":[["hindgut-habitatmech-gold-38f60a7f52.html","Hindgut"],["hindgut-habitatmech-gold-e323c98727.html","Hindgut"],["hindgut-habitatmech-gold-19840c718e.html","Hindgut"],["hindgut-habitatmech-gold-c336fb0bb7.html","Hindgut"],["hindgut-habitatmech-gold-50722c7871.html","Hindgut"],["paunch-p3-segment-habitatmech-gold-86aef52360.html","Paunch/P3 segment"]],"b":[["GO%3A0043133","hindgut contraction"],["GO%3A0043134","regulation of hindgut contraction"]]},{"id":"NCBITaxon:1055524","l":"Burkholderia cenocepacia (strain H111)","na":2,"nb":5,"a":[["k-562-cell-bto-0000664.html","K-562 cell"],["macrophage-bto-0000801.html","macrophage"]],"b":[["Pfam%3APF20148","Domain of unknown function (DUF6531)"],["Pfam%3APF14430","Immunity protein Imm1"],["Pfam%3APF05488","PAAR motif"],["Pfam%3APF03527","RHS protein"],["Pfam%3APF05593","RHS Repeat"]]},{"id":"NCBITaxon:1121264","l":"Caloranaerobacter azorensis DSM 13643","na":5,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["sea-envo-00000016.html","sea"],["ridge-envo-00000283.html","ridge"],["trough-envo-00000499.html","trough"]],"b":[["TED%3AAF-A0A1M5V0T2-F1-model_v4_TED02","TED novel fold AF-A0A1M5V0T2-F1-model_v4_TED02"],["TED%3AAF-A0A1M5V0T2-F1-model_v4_TED03","TED novel fold AF-A0A1M5V0T2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1405","l":"Bacillus mycoides","na":5,"nb":2,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["milk-uberon-0001913.html","milk"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["IEDB%3A230760","epitope FAFCRITSF"],["IEDB%3A126257","epitope IEDKNLYMF"]]},{"id":"NCBITaxon:143495","l":"Aneurinibacillus thermoaerophilus","na":5,"nb":2,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["Pfam%3APF05523","WxcM-like, C-terminal"],["TED%3AAF-A0A1G8FMF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G8FMF4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:145262","l":"Methanothermobacter thermautotrophicus","na":5,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["intestine-environment-envo-2100002.html","intestine environment"],["sludge-envo-00002044.html","sludge"]],"b":[["Pfam%3APF12686","Protein of unknown function (DUF3800)"],["PROSITE%3APS00093","N-4 cytosine-specific DNA methylases signature"]]},{"id":"NCBITaxon:1525","l":"Neomoorella thermoacetica","na":2,"nb":5,"a":[["liquid-water-envo-00002006.html","liquid water"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["Pfam%3APF25461","Selenocysteine-specific elongation factor, beta-barrel domain"],["Pfam%3APF18537","Carbon monoxide dehydrogenase subunit alpha N-terminal domain"],["Pfam%3APF04060","Putative Fe-S cluster"],["Pfam%3APF03599","CO dehydrogenase/acetyl-CoA synthase delta subunit"],["MCSA%3A385","formyltetrahydrofolate synthetase"]]},{"id":"NCBITaxon:1778","l":"Mycobacterium gordonae","na":5,"nb":2,"a":[["fibroblast-bto-0000452.html","fibroblast"],["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["kidney-bto-0000671.html","kidney"],["spleen-bto-0001281.html","spleen"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["IEDB%3A124029","epitope DQSIGDLIAEAMDKV"],["TED%3AAF-A0A7D6E392-F1-model_v4_TED02","TED novel fold AF-A0A7D6E392-F1-model_v4_TED02"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans Pd1222","na":2,"nb":5,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["Pfam%3APF27518","Heme exporter protein C"],["Pfam%3APF22039","Imidazolonepropionase-like composite domain, bacteria"],["IEDB%3A123936","epitope ALAAAGAAY"],["PROSITE%3APS01181","Ribosomal protein S21 signature"],["Pfam%3APF02239","Cytochrome D1 heme domain"]]},{"id":"NCBITaxon:37919","l":"Rhodococcus opacus","na":5,"nb":2,"a":[["watercourse-envo-00000029.html","watercourse"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"],["sludge-envo-00002044.html","sludge"],["water-scum-envo-00005794.html","water scum"]],"b":[["Pfam%3APF11794","4-hydroxyphenylacetate 3-hydroxylase N terminal"],["Pfam%3APF03241","4-hydroxyphenylacetate 3-hydroxylase C terminal"]]},{"id":"NCBITaxon:393133","l":"Listeria monocytogenes serotype 1/2a (strain 10403S)","na":2,"nb":5,"a":[["lymphocyte-bto-0000775.html","lymphocyte"],["spleen-bto-0001281.html","spleen"]],"b":[["Pfam%3APF07698","7TM receptor with intracellular HD hydrolase"],["Pfam%3APF07697","7TM-HD extracellular"],["Pfam%3APF24898","Cyclic-di-AMP phosphodiesterase GdpP-like, GGDEF domain"],["Pfam%3APF19293","CdaA N-terminal transmembrane domain"],["Pfam%3APF04346","Ethanolamine utilisation protein, EutH"]]},{"id":"NCBITaxon:394096","l":"Hyalangium minutum","na":2,"nb":5,"a":[["wood-bto-0005516.html","wood"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["TED%3AAF-A0A085W4M3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085W4M3-F1-model_v4_TED01"],["TED%3AAF-A0A085WRA7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085WRA7-F1-model_v4_TED01"],["TED%3AAF-A0A085WWM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085WWM4-F1-model_v4_TED01"],["TED%3AAF-A0A085W7S5-F1-model_v4_TED03","TED novel fold AF-A0A085W7S5-F1-model_v4_TED03"],["TED%3AAF-A0A085WH04-F1-model_v4_TED01","TED novel fold AF-A0A085WH04-F1-model_v4_TED01"]]},{"id":"NCBITaxon:6945","l":"Ixodes scapularis","na":5,"nb":2,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["city-envo-00000856.html","city"],["midgut-bto-0000863.html","midgut"],["nymph-bto-0000954.html","nymph"],["salivary-gland-bto-0001203.html","salivary gland"]],"b":[["TED%3AAF-A0A4D5RH31-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4D5RH31-F1-model_v4_TED01"],["TED%3AAF-B7Q616-F1-model_v4_TED01","TED highly-symmetric fold AF-B7Q616-F1-model_v4_TED01"]]},{"id":"NCBITaxon:76114","l":"Aromatoleum aromaticum (strain DSM 19018 / LMG 30748 / EbN1)","na":2,"nb":5,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["Pfam%3APF08882","Acetone carboxylase gamma subunit"],["Pfam%3APF19278","Hydantoinase/oxoprolinase C-terminal domain"],["Pfam%3APF05378","Hydantoinase/oxoprolinase N-terminal region"],["Pfam%3APF01968","Hydantoinase/oxoprolinase"],["Pfam%3APF02538","Hydantoinase B/oxoprolinase"]]},{"id":"NCBITaxon:885","l":"Desulfovibrio sp.","na":5,"nb":2,"a":[["marine-water-body-envo-00001999.html","marine water body"],["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["sludge-envo-00002044.html","sludge"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["TED%3AAF-A0A6N8BWZ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8BWZ8-F1-model_v4_TED01"],["TED%3AAF-A0A2E3RAH3-F1-model_v4_TED02","TED novel fold AF-A0A2E3RAH3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:100884","l":"Coprobacillus cateniformis","na":4,"nb":2,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["gut-bto-0000545.html","gut"],["sediment-envo-00002007.html","sediment"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-E7G7Y6-F1-model_v4_TED01","TED highly-symmetric fold AF-E7G7Y6-F1-model_v4_TED01"],["TED%3AAF-E7G976-F1-model_v4_TED02","TED highly-symmetric fold AF-E7G976-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1122192","l":"Marinactinospora thermotolerans DSM 45154","na":4,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["ocean-trench-envo-00000275.html","ocean trench"],["oceanic-zone-envo-00000207.html","oceanic zone"],["trough-envo-00000499.html","trough"]],"b":[["TED%3AAF-A0A1T4KF05-F1-model_v4_TED04","TED novel fold AF-A0A1T4KF05-F1-model_v4_TED04"],["TED%3AAF-A0A1T4TG93-F1-model_v4_TED01","TED novel fold AF-A0A1T4TG93-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1254","l":"Pediococcus acidilactici","na":4,"nb":2,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["research-facility-envo-00000469.html","research facility"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["Pfam%3APF01721","Class II bacteriocin"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":4,"nb":2,"a":[["stream-envo-00000023.html","stream"],["biome-envo-00000428.html","biome"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["Pfam%3APF02052","Gallidermin"],["Pfam%3APF04604","Type-A lantibiotic"]]},{"id":"NCBITaxon:1401","l":"Paenibacillus lautus","na":2,"nb":4,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["Pfam%3APF18448","Carbohydrate binding domain"],["Pfam%3APF12891","Glycoside hydrolase family 44"],["TED%3AAF-A0A328VZ83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A328VZ83-F1-model_v4_TED01"],["TED%3AAF-A0A385TU82-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A385TU82-F1-model_v4_TED01"]]},{"id":"NCBITaxon:172045","l":"Elizabethkingia miricola","na":4,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["hindgut-bto-0000510.html","hindgut"],["wood-bto-0005516.html","wood"],["environmental-system-envo-01000254.html","environmental system"]],"b":[["MCSA%3A878","peptide-N4-(N-acetyl-beta-glucosaminyl)asparagine amidase"],["TED%3AAF-A0A0D5BKG2-F1-model_v4_TED01","TED novel fold AF-A0A0D5BKG2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:192","l":"Azospirillum brasilense","na":2,"nb":4,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF24931","ACR9-like, ACT-like domain"],["Pfam%3APF27444","Uridylyltransferase GlnD third domain"],["MCSA%3A304","glutamate synthase (NADPH)"],["TED%3AAF-A0A235H319-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A235H319-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2045","l":"Nocardioides simplex","na":2,"nb":4,"a":[["petroleum-envo-00002984.html","petroleum"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["Pfam%3APF00775","Dioxygenase"],["Pfam%3APF04444","Catechol dioxygenase N terminus"],["PROSITE%3APS00083","Intradiol ring-cleavage dioxygenases signature"],["TED%3AAF-A0A4Y3NBY1-F1-model_v4_TED01","TED novel fold AF-A0A4Y3NBY1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:262316","l":"Mycolicibacterium paratuberculosis (strain ATCC BAA-968 / K-10)","na":2,"nb":4,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF19288","CofH/MqnC C-terminal region"],["Pfam%3APF03601","Conserved hypothetical protein 698"],["PROSITE%3APS60002","Phosphoketolase signature 1"],["PROSITE%3APS60003","Phosphoketolase signature 2"]]},{"id":"NCBITaxon:264462","l":"Bdellovibrio bacteriovorus HD100","na":4,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-Q6MMM6-F1-model_v4_TED01","TED novel fold AF-Q6MMM6-F1-model_v4_TED01"],["TED%3AAF-Q6MPT8-F1-model_v4_TED01","TED novel fold AF-Q6MPT8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:266265","l":"Paraburkholderia xenovorans (strain LB400)","na":2,"nb":4,"a":[["aquifer-envo-00012408.html","aquifer"],["landfill-envo-00000533.html","landfill"]],"b":[["Pfam%3APF09290","Prokaryotic acetaldehyde dehydrogenase, dimerisation"],["Pfam%3APF04345","Chorismate lyase"],["Pfam%3APF07836","DmpG-like communication domain"],["Pfam%3APF06139","BphX-like"]]},{"id":"NCBITaxon:269800","l":"","na":2,"nb":4,"a":[["compost-envo-00002170.html","compost"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["Pfam%3APF20628","Dyp-type peroxidase, C-terminal"],["Pfam%3APF04261","Dyp-type peroxidase, N-terminal"],["Pfam%3APF18374","Enolase N-terminal domain-like"],["PROSITE%3APS00909","Mandelate racemase / muconate lactonizing enzyme family signature 2"]]},{"id":"NCBITaxon:28115","l":"Porphyromonas macacae","na":4,"nb":2,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"],["mud-envo-01000001.html","mud"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["TED%3AAF-A0A379E7L0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A379E7L0-F1-model_v4_TED01"],["TED%3AAF-A0A379E9C9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A379E9C9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:285","l":"Comamonas testosteroni","na":2,"nb":4,"a":[["waste-habitatmech-bacdive-36df85e4a4.html","Waste"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["Pfam%3APF02900","Catalytic LigB subunit of aromatic ring-opening dioxygenase"],["Pfam%3APF19301","LigXa C-terminal domain like"],["TED%3AAF-A0A096HND0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A096HND0-F1-model_v4_TED01"],["TED%3AAF-A0A1Y1JCM1-F1-model_v4_TED01","TED novel fold AF-A0A1Y1JCM1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:313603","l":"Maribacter sp. HTCC2170","na":4,"nb":2,"a":[["coral-reef-envo-00000150.html","coral reef"],["hydrographic-feature-envo-00000012.html","hydrographic feature"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["TED%3AAF-A4ARA8-F1-model_v4_TED01","TED novel fold AF-A4ARA8-F1-model_v4_TED01"],["TED%3AAF-A4ARA8-F1-model_v4_TED02","TED novel fold AF-A4ARA8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:349307","l":"Methanothrix thermoacetophila (strain DSM 6194 / JCM 14653 / NBRC 101360 / PT)","na":2,"nb":4,"a":[["rice-field-envo-00000296.html","rice field"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["Pfam%3APF06973","Domain of unknown function (DUF1297)"],["Pfam%3APF07826","IMP cyclohydrolase-like protein"],["Pfam%3APF06849","Protein of unknown function (DUF1246)"],["Pfam%3APF08714","Formaldehyde-activating enzyme (Fae)"]]},{"id":"NCBITaxon:362","l":"Agrobacterium radiobacter","na":4,"nb":2,"a":[["plant-gall-po-0025626.html","plant gall"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["Pfam%3APF04909","Amidohydrolase"],["MCSA%3A671","N-carbamoyl-D-amino-acid hydrolase"]]},{"id":"NCBITaxon:395019","l":"Burkholderia multivorans ATCC 17616","na":4,"nb":2,"a":[["human-construction-envo-00000070.html","human construction"],["desert-sand-envo-00005800.html","desert sand"],["orchard-envo-00000115.html","orchard"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["MCSA%3A943","7-carboxy-7-deazaguanine synthase"],["TED%3AAF-A0A0H3KMX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0H3KMX2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:406327","l":"Methanococcus vannielii (strain ATCC 35089 / DSM 1224 / JCM 13029 / OCM 148 / SB)","na":2,"nb":4,"a":[["estuary-envo-00000045.html","estuary"],["mudflat-envo-00000192.html","mudflat"]],"b":[["Pfam%3APF06787","FeGP cofactor biosynthesis protein HcgF"],["Pfam%3APF04476","4-HFC-P synthase"],["Pfam%3APF27030","AbpE bacteria"],["Pfam%3APF09840","Uncharacterized protein conserved in archaea (DUF2067)"]]},{"id":"NCBITaxon:497965","l":"","na":2,"nb":4,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["TED%3AAF-E0UJA0-F1-model_v4_TED01","TED highly-symmetric fold AF-E0UJA0-F1-model_v4_TED01"],["TED%3AAF-E0U6M3-F1-model_v4_TED03","TED novel fold AF-E0U6M3-F1-model_v4_TED03"],["TED%3AAF-E0UE39-F1-model_v4_TED02","TED novel fold AF-E0UE39-F1-model_v4_TED02"],["TED%3AAF-E0UM93-F1-model_v4_TED01","TED novel fold AF-E0UM93-F1-model_v4_TED01"]]},{"id":"NCBITaxon:500485","l":"Penicillium rubens Wisconsin 54-1255","na":2,"nb":4,"a":[["finger-bto-0004669.html","finger"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["Pfam%3APF03417","Acyl-coenzyme A:6-aminopenicillanic acid acyl-transferase"],["Pfam%3APF03659","Glycosyl hydrolase family 71"],["PROSITE%3APS00185","Isopenicillin N synthase signature 1"],["PROSITE%3APS00186","Isopenicillin N synthase signature 2"]]},{"id":"NCBITaxon:556484","l":"","na":2,"nb":4,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["TED%3AAF-B7GAJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-B7GAJ8-F1-model_v4_TED01"],["TED%3AAF-B7G520-F1-model_v4_TED02","TED novel fold AF-B7G520-F1-model_v4_TED02"],["TED%3AAF-B7G8V4-F1-model_v4_TED02","TED novel fold AF-B7G8V4-F1-model_v4_TED02"],["TED%3AAF-B7GB31-F1-model_v4_TED01","TED novel fold AF-B7GB31-F1-model_v4_TED01"]]},{"id":"NCBITaxon:60552","l":"Burkholderia vietnamiensis","na":4,"nb":2,"a":[["hospital-envo-00002173.html","hospital"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["TED%3AAF-A0A1G5M5D3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G5M5D3-F1-model_v4_TED02"],["TED%3AAF-A0A2Z6TW79-F1-model_v4_TED01","TED novel fold AF-A0A2Z6TW79-F1-model_v4_TED01"]]},{"id":"NCBITaxon:678","l":"","na":4,"nb":2,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["aquaculture-farm-envo-03600074.html","aquaculture farm"],["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["Pfam%3APF17851","Beta xylosidase C-terminal Concanavalin A-like domain"],["Pfam%3APF11606","Family 31 carbohydrate binding protein"]]},{"id":"NCBITaxon:83552","l":"Parachlamydia acanthamoebae","na":2,"nb":4,"a":[["elementary-body-bto-0000377.html","elementary body"],["hep-2-cell-bto-0000976.html","HEp-2 cell"]],"b":[["TED%3AAF-A0A0C1C0X3-F1-model_v4_TED01","TED novel fold AF-A0A0C1C0X3-F1-model_v4_TED01"],["TED%3AAF-A0A0C1C9D0-F1-model_v4_TED03","TED novel fold AF-A0A0C1C9D0-F1-model_v4_TED03"],["TED%3AAF-A0A0C1CAV8-F1-model_v4_TED03","TED novel fold AF-A0A0C1CAV8-F1-model_v4_TED03"],["TED%3AAF-A0A0C1ECC2-F1-model_v4_TED03","TED novel fold AF-A0A0C1ECC2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:102129","l":"Leptolyngbya sp. PCC 7375","na":2,"nb":3,"a":[["undersea-feature-envo-00000104.html","undersea feature"],["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["TED%3AAF-K9ELM8-F1-model_v4_TED01","TED highly-symmetric fold AF-K9ELM8-F1-model_v4_TED01"],["TED%3AAF-K9F3N8-F1-model_v4_TED02","TED highly-symmetric fold AF-K9F3N8-F1-model_v4_TED02"],["TED%3AAF-K9FA28-F1-model_v4_TED01","TED novel fold AF-K9FA28-F1-model_v4_TED01"]]},{"id":"NCBITaxon:103796","l":"Pseudomonas syringae pv. actinidiae","na":2,"nb":3,"a":[["leaf-po-0025034.html","leaf"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["Pfam%3APF05425","Copper resistance protein D"],["TED%3AAF-J7I956-F1-model_v4_TED01","TED highly-symmetric fold AF-J7I956-F1-model_v4_TED01"],["TED%3AAF-J7IG33-F1-model_v4_TED01","TED highly-symmetric fold AF-J7IG33-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1071","l":"Rhodopila globiformis","na":3,"nb":2,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["TED%3AAF-A0A2S6NEC8-F1-model_v4_TED01","TED novel fold AF-A0A2S6NEC8-F1-model_v4_TED01"],["TED%3AAF-A0A2S6NJW5-F1-model_v4_TED01","TED novel fold AF-A0A2S6NJW5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1120925","l":"Acinetobacter bouvetii DSM 14964 = CIP 107468","na":3,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["proteintraitsmech%3AELIFE109154_VibH_like","VibH-like metallophore standalone condensation enzyme family"],["TED%3AAF-N9C7M4-F1-model_v4_TED02","TED novel fold AF-N9C7M4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1121393","l":"Desulfatibacillum alkenivorans DSM 16219","na":3,"nb":2,"a":[["sewage-plant-envo-00003043.html","sewage plant"],["waste-water-envo-00002001.html","waste water"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["IEDB%3A126430","epitope KLGKAGYVV"],["TED%3AAF-A0A1M6GB75-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M6GB75-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1122961","l":"Picrophilus torridus (strain ATCC 700027 / DSM 9790 / JCM 10055 / NBRC 100828 / KAW 2/3)","na":2,"nb":3,"a":[["volcanic-field-envo-00000354.html","volcanic field"],["volcano-envo-00000247.html","volcano"]],"b":[["Pfam%3APF22578","Geranylgeranyl reductase catalytic domain"],["Pfam%3APF04038","Dihydroneopterin aldolase"],["Pfam%3APF16912","Glucose dehydrogenase C-terminus"]]},{"id":"NCBITaxon:1238","l":"Piscirickettsia salmonis","na":3,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["sea-water-envo-00002149.html","sea water"],["stream-envo-00000023.html","stream"]],"b":[["TED%3AAF-A0A0K2DZD9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0K2DZD9-F1-model_v4_TED01"],["TED%3AAF-A0A1L6TBT4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6TBT4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1249","l":"Weissella paramesenteroides","na":3,"nb":2,"a":[["cecum-bto-0000166.html","cecum"],["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"]],"b":[["Pfam%3APF01874","ATP:dephospho-CoA triphosphoribosyl transferase"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"]]},{"id":"NCBITaxon:1334565","l":"Listeria monocytogenes serotype 1/2a (strain EGD / Mackaness)","na":2,"nb":3,"a":[["liver-bto-0000759.html","liver"],["spleen-bto-0001281.html","spleen"]],"b":[["Pfam%3APF09479","Listeria-Bacteroides repeat domain (List_Bact_rpt)"],["Pfam%3APF13457","GW (Gly-Tryp) dipeptide domain"],["Pfam%3APF12354","Bacterial adhesion/invasion protein N terminal"]]},{"id":"NCBITaxon:1380357","l":"Rhodospirillales bacterium URHD0017","na":3,"nb":2,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["TED%3AAF-A0A1H8SNT0-F1-model_v4_TED02","TED novel fold AF-A0A1H8SNT0-F1-model_v4_TED02"],["TED%3AAF-A0A1H8Y0S7-F1-model_v4_TED02","TED novel fold AF-A0A1H8Y0S7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1387353","l":"Paludisphaera borealis","na":3,"nb":2,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["filament-bto-0000463.html","filament"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A1U7CK02-F1-model_v4_TED02","TED novel fold AF-A0A1U7CK02-F1-model_v4_TED02"],["TED%3AAF-A0A1U7CMS9-F1-model_v4_TED03","TED novel fold AF-A0A1U7CMS9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:154046","l":"Hungatella hathewayi","na":3,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["TED%3AAF-A0A3E3DRT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3E3DRT8-F1-model_v4_TED01"],["TED%3AAF-A0A174BLS4-F1-model_v4_TED01","TED novel fold AF-A0A174BLS4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1541063","l":"Prolixibacter denitrificans","na":3,"nb":2,"a":[["environmental-system-envo-01000254.html","environmental system"],["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"]],"b":[["TED%3AAF-A0A2P8CHN5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P8CHN5-F1-model_v4_TED01"],["TED%3AAF-A0A2P8CKY9-F1-model_v4_TED01","TED novel fold AF-A0A2P8CKY9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:157687","l":"Leptotrichia wadei","na":3,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["grassland-soil-envo-00005750.html","grassland soil"],["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["TED%3AAF-A0A510KFE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A510KFE6-F1-model_v4_TED01"],["TED%3AAF-A0A510KJX4-F1-model_v4_TED02","TED novel fold AF-A0A510KJX4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1597","l":"Lacticaseibacillus paracasei","na":3,"nb":2,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["Pfam%3APF09136","Glucodextranase, domain B"],["Pfam%3APF08109","Lactocin 705 family"]]},{"id":"NCBITaxon:1680","l":"Bifidobacterium adolescentis","na":2,"nb":3,"a":[["brain-bto-0000142.html","brain"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["TED%3AAF-A0A1X2Z2R7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1X2Z2R7-F1-model_v4_TED02"],["TED%3AAF-A0A1X2Z7X6-F1-model_v4_TED02","TED novel fold AF-A0A1X2Z7X6-F1-model_v4_TED02"],["TED%3AAF-A0A1X2ZNR8-F1-model_v4_TED04","TED novel fold AF-A0A1X2ZNR8-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1810840","l":"Piscirickettsiaceae bacterium NZ-RLO1","na":3,"nb":2,"a":[["bhk-21-cell-bto-0000120.html","BHK-21 cell"],["endothelial-progenitor-cell-bto-0004093.html","endothelial progenitor cell"],["sf-21-cell-bto-0001196.html","SF-21 cell"]],"b":[["TED%3AAF-A0A177W3E9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A177W3E9-F1-model_v4_TED03"],["TED%3AAF-A0A177W3K1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A177W3K1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:190304","l":"","na":2,"nb":3,"a":[["fibroblast-bto-0000452.html","fibroblast"],["gingival-epithelium-bto-0004998.html","gingival epithelium"]],"b":[["Pfam%3APF05853","beta-keto acid cleavage enzyme"],["Pfam%3APF26317","Histidine racemase CntK N-terminal domain"],["Pfam%3APF26370","L-erythro-3,5-diaminohexanoate dehydrogenase N-terminal domain"]]},{"id":"NCBITaxon:192066","l":"Neisseria sp.","na":2,"nb":3,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["TED%3AAF-A0A496JVX2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A496JVX2-F1-model_v4_TED03"],["TED%3AAF-A0A496L0X3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A496L0X3-F1-model_v4_TED01"],["TED%3AAF-A0A496JRN7-F1-model_v4_TED02","TED novel fold AF-A0A496JRN7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:212042","l":"Anaplasma phagocytophilum str. HZ","na":3,"nb":2,"a":[["hl-60-cell-bto-0000738.html","HL-60 cell"],["leukocyte-bto-0000751.html","leukocyte"],["promyelocytic-leukemia-cell-line-bto-0002489.html","promyelocytic leukemia cell line"]],"b":[["IEDB%3A192980","epitope KKVCVTKQHGSTPSTFGTYS"],["IEDB%3A193090","epitope STFGTYSDSTPVGSRSTEAK"]]},{"id":"NCBITaxon:213810","l":"Ruminococcus champanellensis 18P13 = JCM 17042","na":3,"nb":2,"a":[["environmental-feature-envo-00002297.html","environmental feature"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["pig-manure-envo-00003860.html","pig manure"]],"b":[["TED%3AAF-D4LAY2-F1-model_v4_TED01","TED novel fold AF-D4LAY2-F1-model_v4_TED01"],["TED%3AAF-D4LBV4-F1-model_v4_TED01","TED novel fold AF-D4LBV4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:216595","l":"","na":3,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["human-construction-envo-00000070.html","human construction"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["Pfam%3APF04996","Succinylarginine dihydrolase"],["TED%3AAF-A0A0G4E5V4-F1-model_v4_TED01","TED novel fold AF-A0A0G4E5V4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:239935","l":"Akkermansia muciniphila","na":3,"nb":2,"a":[["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["secretion-bto-0002979.html","secretion"]],"b":[["TED%3AAF-A0A2N8IJN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N8IJN7-F1-model_v4_TED01"],["TED%3AAF-A0A6N2UM07-F1-model_v4_TED01","TED novel fold AF-A0A6N2UM07-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2751","l":"Carnobacterium maltaromaticum","na":3,"nb":2,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["food-habitatmech-madin-81cb9e74cb.html","food"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["Pfam%3APF09221","Bacteriocin class IId cyclical uberolysin-like"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"]]},{"id":"NCBITaxon:28454","l":"Sphingobacterium multivorum","na":3,"nb":2,"a":[["mud-envo-01000001.html","mud"],["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["TED%3AAF-A0A7T9NU88-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T9NU88-F1-model_v4_TED01"],["TED%3AAF-A0A7T9PGY4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T9PGY4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:313606","l":"Microscilla marina ATCC 23134","na":3,"nb":2,"a":[["coral-reef-envo-00000150.html","coral reef"],["liquid-water-envo-00002006.html","liquid water"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["TED%3AAF-A1ZH11-F1-model_v4_TED02","TED novel fold AF-A1ZH11-F1-model_v4_TED02"],["TED%3AAF-A1ZSU9-F1-model_v4_TED01","TED novel fold AF-A1ZSU9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:314275","l":"Alteromonas mediterranea","na":2,"nb":3,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A1J0SAZ8-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1J0SAZ8-F1-model_v4_TED04"],["TED%3AAF-A0A1J0SA48-F1-model_v4_TED01","TED novel fold AF-A0A1J0SA48-F1-model_v4_TED01"],["TED%3AAF-A0A1J0SX60-F1-model_v4_TED02","TED novel fold AF-A0A1J0SX60-F1-model_v4_TED02"]]},{"id":"NCBITaxon:331117","l":"Aspergillus fischeri NRRL 181","na":2,"nb":3,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["Pfam%3APF23681","ATP-dependent rRNA helicase SPB4-like, C-terminal tail"],["Pfam%3APF16803","Fe-S cluster assembly protein DRE2 N-terminus"],["Pfam%3APF02012","BNR/Asp-box repeat"]]},{"id":"NCBITaxon:357809","l":"Lachnoclostridium phytofermentans ISDg","na":2,"nb":3,"a":[["reservoir-envo-00000025.html","reservoir"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["Pfam%3APF09508","Lacto-N-biose phosphorylase N-terminal TIM barrel domain"],["Pfam%3APF17386","Lacto-N-biose phosphorylase C-terminal domain"],["Pfam%3APF17385","Lacto-N-biose phosphorylase central domain"]]},{"id":"NCBITaxon:35816","l":"Pelobacter acidigallici","na":3,"nb":2,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["Pfam%3APF21423","Pyrogallol hydroxytransferase large subunit-like, domain 1"],["MCSA%3A146","pyrogallol hydroxytransferase"]]},{"id":"NCBITaxon:362242","l":"","na":2,"nb":3,"a":[["subcutaneous-tissue-bto-0004525.html","subcutaneous tissue"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF02654","Cobalamin-5-phosphate synthase"],["Pfam%3APF02622","AlgH-like"],["Pfam%3APF01628","HrcA protein C terminal domain"]]},{"id":"NCBITaxon:375","l":"Bradyrhizobium japonicum","na":3,"nb":2,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["TED%3AAF-A0A1L3FD53-F1-model_v4_TED02","TED novel fold AF-A0A1L3FD53-F1-model_v4_TED02"],["TED%3AAF-A0A1L3FDV4-F1-model_v4_TED02","TED novel fold AF-A0A1L3FDV4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:391587","l":"Kordia algicida OT-1","na":2,"nb":3,"a":[["coral-reef-envo-00000150.html","coral reef"],["soil-envo-00001998.html","soil"]],"b":[["TED%3AAF-A9DJI5-F1-model_v4_TED02","TED highly-symmetric fold AF-A9DJI5-F1-model_v4_TED02"],["TED%3AAF-A9E7Y3-F1-model_v4_TED02","TED highly-symmetric fold AF-A9E7Y3-F1-model_v4_TED02"],["TED%3AAF-A9E6S0-F1-model_v4_TED02","TED novel fold AF-A9E6S0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:394503","l":"","na":2,"nb":3,"a":[["agricultural-waste-material-envo-01000371.html","agricultural waste material"],["compost-envo-00002170.html","compost"]],"b":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["PROSITE%3APS00812","Glycosyl hydrolases family 8 signature"],["Pfam%3APF01270","Glycosyl hydrolases family 8"]]},{"id":"NCBITaxon:39486","l":"Dorea formicigenerans","na":2,"nb":3,"a":[["adult-bto-0001043.html","adult"],["juvenile-bto-0002168.html","juvenile"]],"b":[["TED%3AAF-A0A3E5ESC3-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A3E5ESC3-F1-model_v4_TED05"],["TED%3AAF-A0A412MBB7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A412MBB7-F1-model_v4_TED01"],["TED%3AAF-A0A412MF47-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A412MF47-F1-model_v4_TED02"]]},{"id":"NCBITaxon:400667","l":"Acinetobacter baumannii (strain ATCC 17978 / DSM 105126 / CIP 53.77 / LMG 1025 / NCDC KC755 / 5377)","na":2,"nb":3,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"],["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["Pfam%3APF17074","Darcynin, domain of unknown function"],["Pfam%3APF05232","Chlorhexidine efflux transporter"],["Pfam%3APF05662","Coiled stalk of trimeric autotransporter adhesin"]]},{"id":"NCBITaxon:400946","l":"Wohlfahrtiimonas chitiniclastica","na":3,"nb":2,"a":[["foot-bto-0000476.html","foot"],["pancreas-bto-0000988.html","pancreas"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["TED%3AAF-A0A256BUL6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A256BUL6-F1-model_v4_TED01"],["TED%3AAF-A0A256BUL6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A256BUL6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:402880","l":"Methanococcus maripaludis (strain C5 / ATCC BAA-1333)","na":2,"nb":3,"a":[["marsh-envo-00000035.html","marsh"],["wetland-area-envo-00000043.html","wetland area"]],"b":[["Pfam%3APF02553","Cobalt transport protein component CbiN"],["Pfam%3APF18195","GatD N-terminal domain"],["Pfam%3APF01941","S-adenosylmethionine synthetase (AdoMet synthetase)"]]},{"id":"NCBITaxon:41899","l":"Burkholderia plantarii","na":2,"nb":3,"a":[["panicle-bto-0005436.html","panicle"],["seedling-bto-0001228.html","seedling"]],"b":[["proteintraitsmech%3AELIFE109154_GrbD","GrbD-type graminine biosynthesis protein family"],["proteintraitsmech%3AELIFE109154_GrbE","GrbE-type graminine biosynthesis protein family"],["TED%3AAF-A0A0B6RMB1-F1-model_v4_TED01","TED novel fold AF-A0A0B6RMB1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:523846","l":"Methanothermus fervidus DSM 2088","na":3,"nb":2,"a":[["mountain-envo-00000081.html","mountain"],["seamount-envo-00000264.html","seamount"],["volcano-envo-00000247.html","volcano"]],"b":[["Pfam%3APF02829","3H domain"],["Pfam%3APF27272","Cyclic 2,3-diphosphoglycerate synthetase, N-terminal domain"]]},{"id":"NCBITaxon:59919","l":"Prochlorococcus marinus subsp. pastoris str. CCMP1986","na":3,"nb":2,"a":[["marginal-sea-biome-envo-01000046.html","marginal sea biome"],["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"],["sea-envo-00000016.html","sea"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF12288","Carboxysome shell peptide mid-region"]]},{"id":"NCBITaxon:65393","l":"Gloeothece citriformis (strain PCC 7424)","na":2,"nb":3,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["Pfam%3APF13720","Udp N-acetylglucosamine O-acyltransferase; Domain 2"],["TED%3AAF-B7K6Y8-F1-model_v4_TED03","TED novel fold AF-B7K6Y8-F1-model_v4_TED03"],["TED%3AAF-B7KGW4-F1-model_v4_TED01","TED novel fold AF-B7KGW4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:6669","l":"Daphnia pulex","na":3,"nb":2,"a":[["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"],["neritic-epipelagic-zone-biome-envo-01000042.html","neritic epipelagic zone biome"],["sea-shore-envo-00000485.html","sea shore"]],"b":[["TED%3AAF-E9GQ61-F1-model_v4_TED02","TED novel fold AF-E9GQ61-F1-model_v4_TED02"],["TED%3AAF-E9I2W7-F1-model_v4_TED04","TED novel fold AF-E9I2W7-F1-model_v4_TED04"]]},{"id":"NCBITaxon:714","l":"Aggregatibacter actinomycetemcomitans","na":2,"nb":3,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["Pfam%3APF10137","CAP12/Pycsar effector protein, TIR domain"],["Pfam%3APF25988","CyaD, alpha-helical hairpin domain"],["PROSITE%3APS00543","HlyD family secretion proteins signature"]]},{"id":"NCBITaxon:8090","l":"Oryzias latipes","na":2,"nb":3,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["Pfam%3APF24979","EDAR death domain"],["Pfam%3APF24796","WDR55"],["TED%3AAF-A0A3P9JIT2-F1-model_v4_TED01","TED novel fold AF-A0A3P9JIT2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:889378","l":"Spirochaeta africana DSM 8902","na":3,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["alkaline-water-envo-01000357.html","alkaline water"],["brine-envo-00003044.html","brine"]],"b":[["TED%3AAF-H9UHS0-F1-model_v4_TED01","TED highly-symmetric fold AF-H9UHS0-F1-model_v4_TED01"],["TED%3AAF-H9UIK6-F1-model_v4_TED01","TED novel fold AF-H9UIK6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1032476","l":"Nonomuraea soli","na":2,"nb":2,"a":[["soil-envo-00001998.html","soil"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-A0A7W0HQS4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7W0HQS4-F1-model_v4_TED03"],["TED%3AAF-A0A7W0CFM2-F1-model_v4_TED01","TED novel fold AF-A0A7W0CFM2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1110509","l":"","na":2,"nb":2,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["cob-bto-0000266.html","cob"]],"b":[["Pfam%3APF05228","CHASE4 domain"],["Pfam%3APF08350","Methanogenesis regulatory protein FilR1, middle domain"]]},{"id":"NCBITaxon:1121395","l":"Desulfitobacterium chlororespirans DSM 11544","na":2,"nb":2,"a":[["compost-envo-00002170.html","compost"],["waste-material-envo-00002264.html","waste material"]],"b":[["TED%3AAF-A0A1M7UUA6-F1-model_v4_TED02","TED novel fold AF-A0A1M7UUA6-F1-model_v4_TED02"],["TED%3AAF-A0A1M7UUA6-F1-model_v4_TED03","TED novel fold AF-A0A1M7UUA6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1295","l":"Staphylococcus schleiferi","na":2,"nb":2,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["foot-bto-0000476.html","foot"]],"b":[["Pfam%3APF18153","Cap15, cyclic dinucleotide receptor domain"],["Pfam%3APF26305","cGAS/DncV-like nucleotidyltransferase C-terminal helical domain"]]},{"id":"NCBITaxon:1303","l":"Streptococcus oralis","na":2,"nb":2,"a":[["throat-bto-0000828.html","throat"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Pfam%3APF03047","COMC family"],["TED%3AAF-A0A139PPG4-F1-model_v4_TED02","TED novel fold AF-A0A139PPG4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1527","l":"Anaerocolumna aminovalerica","na":2,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"]],"b":[["TED%3AAF-A0A1I5I955-F1-model_v4_TED02","TED novel fold AF-A0A1I5I955-F1-model_v4_TED02"],["TED%3AAF-A0A1I5ILH1-F1-model_v4_TED04","TED novel fold AF-A0A1I5ILH1-F1-model_v4_TED04"]]},{"id":"NCBITaxon:156889","l":"","na":2,"nb":2,"a":[["estuary-envo-00000045.html","estuary"],["marine-neritic-zone-envo-00000206.html","marine neritic zone"]],"b":[["Pfam%3APF02622","AlgH-like"],["Pfam%3APF04279","Intracellular septation protein A"]]},{"id":"NCBITaxon:180282","l":"Delftia tsuruhatensis","na":2,"nb":2,"a":[["surface-water-envo-00002042.html","surface water"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["TED%3AAF-A0A1D8JBF2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1D8JBF2-F1-model_v4_TED01"],["TED%3AAF-A0A5P8XEZ5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5P8XEZ5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1932","l":"Streptomyces tendae","na":2,"nb":2,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["Pfam%3APF01356","Alpha amylase inhibitor"],["MCSA%3A942","NikD"]]},{"id":"NCBITaxon:194963","l":"Sinorhizobium americanum","na":2,"nb":2,"a":[["root-nodule-envo-01000164.html","root nodule"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["TED%3AAF-A0A2S3YNG1-F1-model_v4_TED01","TED novel fold AF-A0A2S3YNG1-F1-model_v4_TED01"],["TED%3AAF-A0A4R2AWY1-F1-model_v4_TED01","TED novel fold AF-A0A4R2AWY1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2024826","l":"Blastopirellula sp.","na":2,"nb":2,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["TED%3AAF-A0A2E0B0H3-F1-model_v4_TED02","TED novel fold AF-A0A2E0B0H3-F1-model_v4_TED02"],["TED%3AAF-A0A2G2IUT2-F1-model_v4_TED02","TED novel fold AF-A0A2G2IUT2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:244366","l":"Klebsiella variicola","na":2,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["MCSA%3A582","isomaltulose synthase"],["TED%3AAF-A0A2N4Z4E2-F1-model_v4_TED01","TED novel fold AF-A0A2N4Z4E2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:257314","l":"Lactobacillus johnsonii (strain CNCM I-12250 / La1 / NCC 533)","na":2,"nb":2,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["Pfam%3APF10439","Bacteriocin class II with double-glycine leader peptide"],["Pfam%3APF02435","Levansucrase/Invertase"]]},{"id":"NCBITaxon:271848","l":"Burkholderia thailandensis E264","na":2,"nb":2,"a":[["needle-bto-0000917.html","needle"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["Pfam%3APF12091","Protein of unknown function (DUF3567)"],["Pfam%3APF01075","Glycosyltransferase family 9 (heptosyltransferase)"]]},{"id":"NCBITaxon:2748","l":"Carnobacterium divergens","na":2,"nb":2,"a":[["food-product-foodon-00001002.html","food product"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["TED%3AAF-A0A7Z8CZ16-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Z8CZ16-F1-model_v4_TED02"],["TED%3AAF-A0A5F0MGI8-F1-model_v4_TED01","TED novel fold AF-A0A5F0MGI8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:280","l":"Xanthobacter autotrophicus","na":2,"nb":2,"a":[["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["plain-envo-00000086.html","plain"]],"b":[["MCSA%3A415","haloalkane dehalogenase (subfamily 1)"],["MCSA%3A36","(S)-2-haloacid dehalogenase"]]},{"id":"NCBITaxon:28141","l":"Cronobacter sakazakii","na":2,"nb":2,"a":[["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["TED%3AAF-A0A855WTZ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A855WTZ2-F1-model_v4_TED01"],["TED%3AAF-A0A855WPZ3-F1-model_v4_TED01","TED novel fold AF-A0A855WPZ3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28185","l":"Spirochaeta sp.","na":2,"nb":2,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["TED%3AAF-A0A3C0SUV0-F1-model_v4_TED03","TED novel fold AF-A0A3C0SUV0-F1-model_v4_TED03"],["TED%3AAF-A0A6N7M3Q7-F1-model_v4_TED01","TED novel fold AF-A0A6N7M3Q7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:283166","l":"","na":2,"nb":2,"a":[["endothelial-cell-bto-0001176.html","endothelial cell"],["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["Pfam%3APF18543","Intracellular delivery domain"],["Pfam%3APF03524","Conjugal transfer protein"]]},{"id":"NCBITaxon:393664","l":"","na":2,"nb":2,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["TED%3AAF-A0A7W4XHJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W4XHJ9-F1-model_v4_TED01"],["TED%3AAF-A0A7W4SSW3-F1-model_v4_TED01","TED novel fold AF-A0A7W4SSW3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:39488","l":"Anaerobutyricum hallii","na":2,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"],["harbour-envo-00000463.html","harbour"]],"b":[["TED%3AAF-A0A414B1Y3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A414B1Y3-F1-model_v4_TED01"],["TED%3AAF-A0A415G3S7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A415G3S7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:39490","l":"Eubacterium ramulus","na":2,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"],["harbour-envo-00000463.html","harbour"]],"b":[["TED%3AAF-A0A173V5Z6-F1-model_v4_TED02","TED novel fold AF-A0A173V5Z6-F1-model_v4_TED02"],["TED%3AAF-A0A2V1JWA1-F1-model_v4_TED05","TED novel fold AF-A0A2V1JWA1-F1-model_v4_TED05"]]},{"id":"NCBITaxon:399741","l":"","na":2,"nb":2,"a":[["pleura-bto-0001791.html","pleura"],["seedling-bto-0001228.html","seedling"]],"b":[["Pfam%3APF09012","FeoC like transcriptional regulator"],["Pfam%3APF05488","PAAR motif"]]},{"id":"NCBITaxon:426128","l":"Natronincola peptidivorans","na":2,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["TED%3AAF-A0A1I0EK12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I0EK12-F1-model_v4_TED01"],["TED%3AAF-A0A1I0H2J6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I0H2J6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:426418","l":"Pyrenophora tritici-repentis Pt-1C-BFP","na":2,"nb":2,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-B2VYP9-F1-model_v4_TED01","TED novel fold AF-B2VYP9-F1-model_v4_TED01"],["TED%3AAF-B2VZ40-F1-model_v4_TED02","TED novel fold AF-B2VZ40-F1-model_v4_TED02"]]},{"id":"NCBITaxon:435590","l":"","na":2,"nb":2,"a":[["bay-envo-00000032.html","bay"],["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["Pfam%3APF13444","Acetyltransferase (GNAT) domain"],["Pfam%3APF19576","Acyltransferase"]]},{"id":"NCBITaxon:474952","l":"Granulicella rosea","na":2,"nb":2,"a":[["wetland-area-envo-00000043.html","wetland area"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A239KLB2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A239KLB2-F1-model_v4_TED01"],["TED%3AAF-A0A239CX56-F1-model_v4_TED02","TED novel fold AF-A0A239CX56-F1-model_v4_TED02"]]},{"id":"NCBITaxon:479434","l":"","na":2,"nb":2,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-D1C926-F1-model_v4_TED01","TED highly-symmetric fold AF-D1C926-F1-model_v4_TED01"],["TED%3AAF-D1C9G8-F1-model_v4_TED01","TED highly-symmetric fold AF-D1C9G8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:48296","l":"Acinetobacter pittii","na":2,"nb":2,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["TED%3AAF-A0A3R9S6D0-F1-model_v4_TED03","TED novel fold AF-A0A3R9S6D0-F1-model_v4_TED03"],["TED%3AAF-A0A6P1SKX2-F1-model_v4_TED04","TED novel fold AF-A0A6P1SKX2-F1-model_v4_TED04"]]},{"id":"NCBITaxon:487","l":"Neisseria meningitidis","na":2,"nb":2,"a":[["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["Pfam%3APF22582","Amylosucrase, C-terminal domain"],["MCSA%3A568","lipopolysaccharide 3-alpha-galactosyltransferase"]]},{"id":"NCBITaxon:55209","l":"Pantoea cypripedii","na":2,"nb":2,"a":[["leaf-po-0025034.html","leaf"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["Pfam%3APF13618","Gluconate 2-dehydrogenase subunit 3"],["TED%3AAF-A0A1X1EQM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1X1EQM9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:56811","l":"Psychrobacter sp.","na":2,"nb":2,"a":[["marine-water-body-envo-00001999.html","marine water body"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["TED%3AAF-A0A350DM46-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A350DM46-F1-model_v4_TED01"],["TED%3AAF-A0A353XTU7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A353XTU7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:572546","l":"","na":2,"nb":2,"a":[["inlet-envo-00000475.html","inlet"],["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["TED%3AAF-D2RFB5-F1-model_v4_TED02","TED highly-symmetric fold AF-D2RFB5-F1-model_v4_TED02"],["TED%3AAF-D2RE38-F1-model_v4_TED02","TED novel fold AF-D2RE38-F1-model_v4_TED02"]]},{"id":"NCBITaxon:577","l":"","na":2,"nb":2,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["TED%3AAF-A0A485AWY7-F1-model_v4_TED01","TED novel fold AF-A0A485AWY7-F1-model_v4_TED01"],["TED%3AAF-A0A4U9DC68-F1-model_v4_TED02","TED novel fold AF-A0A4U9DC68-F1-model_v4_TED02"]]},{"id":"NCBITaxon:588581","l":"Ruminiclostridium papyrosolvens DSM 2782","na":2,"nb":2,"a":[["estuary-envo-00000045.html","estuary"],["sporangium-bto-0001287.html","sporangium"]],"b":[["IEDB%3A230009","epitope LNKNIHFFKNLPLP"],["TED%3AAF-F1TA67-F1-model_v4_TED05","TED highly-symmetric fold AF-F1TA67-F1-model_v4_TED05"]]},{"id":"NCBITaxon:59201","l":"","na":2,"nb":2,"a":[["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["TED%3AAF-A0A711ED47-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A711ED47-F1-model_v4_TED01"],["TED%3AAF-A0A5U3EZQ4-F1-model_v4_TED01","TED novel fold AF-A0A5U3EZQ4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:59405","l":"Thauera aromatica","na":2,"nb":2,"a":[["sludge-envo-00002044.html","sludge"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF18512","Benzylsuccinate synthase beta subunit"],["Pfam%3APF08201","BssC/TutF protein"]]},{"id":"NCBITaxon:61646","l":"Lelliottia amnigena","na":2,"nb":2,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["Pfam%3APF17425","Arylsulfotransferase Ig-like domain"],["Pfam%3APF05935","Arylsulfotransferase (ASST)"]]},{"id":"NCBITaxon:633","l":"Yersinia pseudotuberculosis","na":2,"nb":2,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["Pfam%3APF03421","YopJ Serine/Threonine acetyltransferase"],["Pfam%3APF01041","DegT/DnrJ/EryC1/StrS aminotransferase family"]]},{"id":"NCBITaxon:647113","l":"","na":2,"nb":2,"a":[["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["TED%3AAF-F8ANV0-F1-model_v4_TED01","TED highly-symmetric fold AF-F8ANV0-F1-model_v4_TED01"],["TED%3AAF-F8AK92-F1-model_v4_TED02","TED novel fold AF-F8AK92-F1-model_v4_TED02"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":2,"nb":2,"a":[["watercourse-envo-00000029.html","watercourse"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["TED%3AAF-B5UAE0-F1-model_v4_TED01","TED highly-symmetric fold AF-B5UAE0-F1-model_v4_TED01"],["TED%3AAF-A0A3E1IF45-F1-model_v4_TED01","TED novel fold AF-A0A3E1IF45-F1-model_v4_TED01"]]},{"id":"NCBITaxon:7029","l":"Acyrthosiphon pisum","na":2,"nb":2,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["TED%3AAF-J9KQC4-F1-model_v4_TED01","TED novel fold AF-J9KQC4-F1-model_v4_TED01"],["TED%3AAF-J9L4U4-F1-model_v4_TED02","TED novel fold AF-J9L4U4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:7209","l":"Loa loa","na":2,"nb":2,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["TED%3AAF-A0A1I7VCR8-F1-model_v4_TED01","TED novel fold AF-A0A1I7VCR8-F1-model_v4_TED01"],["TED%3AAF-A0A1S0U4H9-F1-model_v4_TED02","TED novel fold AF-A0A1S0U4H9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:746697","l":"","na":2,"nb":2,"a":[["hill-envo-00000083.html","hill"],["seamount-envo-00000264.html","seamount"]],"b":[["TED%3AAF-I3YW66-F1-model_v4_TED01","TED highly-symmetric fold AF-I3YW66-F1-model_v4_TED01"],["TED%3AAF-I3YWC3-F1-model_v4_TED01","TED highly-symmetric fold AF-I3YWC3-F1-model_v4_TED01"]]},{"id":"UBERON:0001723","l":"","na":2,"nb":2,"a":[["tongue-habitatmech-gold-334001c233.html","Tongue"],["tongue-habitatmech-gold-8587dba825.html","Tongue"]],"b":[["GO%3A0043586","tongue development"],["GO%3A0043587","tongue morphogenesis"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":2669,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["IDPO%3A0000002","disorder"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000045","phosphorylation display site"],["IDPO%3A0000059","self-inhibition"],["Pfam%3APF17837","4'-phosphopantetheinyl transferase N-terminal domain"]]},{"id":"NCBITaxon:5823","l":"Plasmodium berghei (strain Anka)","na":1,"nb":539,"a":[["ookinete-bto-0004857.html","ookinete"]],"b":[["IEDB%3A192200","epitope AAPKNVLKL"],["IEDB%3A192201","epitope ACLSNATTI"],["IEDB%3A192203","epitope AILVYSPL"],["IEDB%3A192204","epitope AIYNCYKNL"],["IEDB%3A192205","epitope AMIENEEMI"],["IEDB%3A192206","epitope AMLSNIPYI"]]},{"id":"GO:0005622","l":"intracellular anatomical structure","na":1,"nb":524,"a":[["molluscan-gill-intracellular-environment-habitatmech-gold-0ac09185d9.html","molluscan gill intracellular environment"]],"b":[["GO%3A0070477","endospore core"],["GO%3A0005727","extrachromosomal circular DNA"],["GO%3A0046821","extrachromosomal DNA"],["GO%3A0016234","inclusion body"],["GO%3A0005622","intracellular anatomical structure"],["GO%3A0070090","metaphase plate"]]},{"id":"GO:0005615","l":"","na":1,"nb":292,"a":[["molluscan-gill-extracellular-environment-habitatmech-gold-6c8238add0.html","molluscan gill extracellular environment"]],"b":[["ComplexPortal%3ACPX-6224","Active Protein C complex"],["ComplexPortal%3ACPX-6222","alpha-thrombin complex"],["ComplexPortal%3ACPX-5601","Alternative pathway C3 convertase complex C3bBb"],["ComplexPortal%3ACPX-5894","Alternative pathway C3 convertase complex C3bBb"],["ComplexPortal%3ACPX-5381","Alternative pathway fluid-phase C3 convertase complex C3(H2O)Bb"],["ComplexPortal%3ACPX-5893","Alternative pathway fluid-phase C3 convertase complex C3(H2O)Bb"]]},{"id":"NCBITaxon:7955","l":"Danio rerio","na":1,"nb":261,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["IDPO%3A0000019","disorder to pre-molten globule"],["Pfam%3APF16096","Fragile X-related 1 protein C-terminal region 2"],["Pfam%3APF16605","LSM-interacting associated unstructured"],["Pfam%3APF17229","Serine/threonine-protein kinase SMG1 N-terminal"],["Pfam%3APF16195","SUMO-activating enzyme subunit 2 C-terminus"],["Pfam%3APF00709","Adenylosuccinate synthetase"]]},{"id":"NCBITaxon:83334","l":"Escherichia coli O157:H7","na":1,"nb":220,"a":[["uterus-bto-0001424.html","uterus"]],"b":[["IDPO%3A0000011","disorder to order"],["IDPO%3A0000014","order to disorder"],["Pfam%3APF12343","DeaD helicase C-terminal disordered region"],["Pfam%3APF26539","YhiD C-terminal ACT domain"],["Pfam%3APF01081","KDPG and KHG aldolase"],["Pfam%3APF10423","Bacterial AMP nucleoside phosphorylase N-terminus"]]},{"id":"NCBITaxon:1978231","l":"Acidobacteriota bacterium","na":1,"nb":186,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2E4W649-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4W649-F1-model_v4_TED01"],["TED%3AAF-A0A2P6WIX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P6WIX4-F1-model_v4_TED01"],["TED%3AAF-A0A2V2RP64-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V2RP64-F1-model_v4_TED01"],["TED%3AAF-A0A2V7TZP2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V7TZP2-F1-model_v4_TED01"],["TED%3AAF-A0A2V7USQ3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V7USQ3-F1-model_v4_TED02"],["TED%3AAF-A0A2V7V8X8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V7V8X8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa PAO1","na":1,"nb":174,"a":[["style-bto-0001313.html","style"]],"b":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF06750","Bacterial Peptidase A24 N-terminal domain"],["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF28403","Aconitase X second domain"],["Pfam%3APF28406","Aconitase X third domain"],["Pfam%3APF04412","Aconitase X first domain"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":150,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["Pfam%3APF09156","Anthrax toxin lethal factor, middle domain"],["Pfam%3APF08401","N-terminal domain of anti-restriction factor ArdC"],["Pfam%3APF07737","Anthrax toxin lethal factor, N- and C-terminal domain"],["Pfam%3APF27053","Bacillus anthracis plasmid pXO2 protein 26"],["Pfam%3APF13205","Bacterial Ig-like domain"],["Pfam%3APF17475","Clostridial binary toxin B/anthrax toxin PA domain 2"]]},{"id":"NCBITaxon:71421","l":"Haemophilus influenzae (strain ATCC 51907 / DSM 11121 / KW20 / Rd)","na":1,"nb":137,"a":[["respiratory-mucosa-bto-0000973.html","respiratory mucosa"]],"b":[["Pfam%3APF13521","AAA domain"],["Pfam%3APF13654","LonB-like, AAA domain"],["Pfam%3APF16326","ABC transporter C-terminal domain"],["Pfam%3APF13710","ACT domain"],["Pfam%3APF12633","Adenylate cyclase NT domain"],["Pfam%3APF26690","Adenylate cyclase, class-I, third domain"]]},{"id":"NCBITaxon:243160","l":"","na":1,"nb":83,"a":[["liver-bto-0000759.html","liver"]],"b":[["IEDB%3A92265","epitope AEHFENQVL"],["IEDB%3A108771","epitope ALRRRTGTR"],["IEDB%3A92332","epitope AMYAPYGPF"],["IEDB%3A108791","epitope AQHAPDAAK"],["IEDB%3A92363","epitope ATAWRTGGY"],["IEDB%3A92368","epitope ATRAVMMGL"]]},{"id":"NCBITaxon:170187","l":"Streptococcus pneumoniae serotype 4 (strain ATCC BAA-334 / TIGR4)","na":1,"nb":82,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["Pfam%3APF25935","LcnD-like, barrel-sandwich hybrid domain"],["Pfam%3APF22637","BppA domain 1"],["Pfam%3APF18146","Damage-inducible protein CinA KH domain"],["Pfam%3APF27342","ComB N-terminal domain"],["Pfam%3APF26697","Competence protein ComGC, C-terminal domain"],["Pfam%3APF23117","DpnD N-terminal domain"]]},{"id":"NCBITaxon:1898207","l":"Clostridiales bacterium","na":1,"nb":63,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["TED%3AAF-A0A239QGX8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A239QGX8-F1-model_v4_TED02"],["TED%3AAF-A0A2V2DI93-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V2DI93-F1-model_v4_TED02"],["TED%3AAF-A0A2V2EHK5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V2EHK5-F1-model_v4_TED02"],["TED%3AAF-A0A2V2G296-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2V2G296-F1-model_v4_TED03"],["TED%3AAF-A0A316P962-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A316P962-F1-model_v4_TED03"],["TED%3AAF-A0A316PDC9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A316PDC9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:233413","l":"Mycobacterium bovis (strain ATCC BAA-935 / AF2122/97)","na":1,"nb":52,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF12625","Arabinose-binding domain of AraC transcription regulator, N-term"],["Pfam%3APF21139","Methylcrotonyl-CoA carboxylase, alpha-subunit, BT domain"],["Pfam%3APF09167","Domain of unknown function (DUF1942)"],["Pfam%3APF09438","Domain of unknown function (DUF2017)"],["Pfam%3APF12823","Domain of unknown function (DUF3817)"]]},{"id":"NCBITaxon:2026742","l":"Gemmatimonadota bacterium","na":1,"nb":49,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2D8UDK3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D8UDK3-F1-model_v4_TED02"],["TED%3AAF-A0A2E8HI53-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E8HI53-F1-model_v4_TED02"],["TED%3AAF-A0A2V7GTY6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2V7GTY6-F1-model_v4_TED03"],["TED%3AAF-A0A2V7KRA4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V7KRA4-F1-model_v4_TED01"],["TED%3AAF-A0A2V7S355-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V7S355-F1-model_v4_TED01"],["TED%3AAF-A0A3M2BQU6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M2BQU6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima (strain ATCC 43589 / DSM 3109 / JCM 10099 / NBRC 100826 / MSB8)","na":1,"nb":49,"a":[["feather-bto-0000447.html","feather"]],"b":[["Pfam%3APF02829","3H domain"],["Pfam%3APF13175","AAA ATPase domain"],["Pfam%3APF01958","Aspartate dehydrogenase, C-terminal"],["Pfam%3APF05448","Acetyl xylan esterase (AXE1)"],["Pfam%3APF04509","CheC-like family"],["Pfam%3APF13690","Chemotaxis phosphatase CheX"]]},{"id":"NCBITaxon:186497","l":"Pyrococcus furiosus (strain ATCC 43587 / DSM 3638 / JCM 8422 / Vc1)","na":1,"nb":43,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF01314","Aldehyde ferredoxin oxidoreductase, domains 2 & 3"],["Pfam%3APF02730","Aldehyde ferredoxin oxidoreductase, N-terminal domain"],["Pfam%3APF22476","Argonaute, N-terminal domain"],["Pfam%3APF09094","Alpha-amylase/4-alpha-glucanotransferase, middle domain"],["Pfam%3APF09095","Alpha-amylase/4-alpha-glucanotransferase, C-terminal"]]},{"id":"NCBITaxon:272560","l":"Burkholderia pseudomallei (strain K96243)","na":1,"nb":41,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["IEDB%3A149243","epitope AAQNRFTAIATTQQAGSNNL"],["IEDB%3A182040","epitope ADDAAGLAIATRMQTQINGL"],["IEDB%3A149251","epitope AGTLSFQVGANVGQTVSVDL"],["IEDB%3A182054","epitope AMVSIDNALATVNNLQATLG"],["IEDB%3A149266","epitope AQAQSQIQSADFAQETANLS"],["IEDB%3A182059","epitope ATAMVAQINAVNKPQTVSNL"]]},{"id":"NCBITaxon:2","l":"Bacteria","na":40,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["factory-envo-01000536.html","factory"],["adult-bto-0001043.html","adult"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2","Bacteria orthologous groups (OrthoDB)"]]},{"id":"NCBITaxon:273057","l":"Saccharolobus solfataricus (strain ATCC 35092 / DSM 1617 / JCM 11322 / P2)","na":1,"nb":38,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["Pfam%3APF02294","7kD DNA-binding domain"],["Pfam%3APF02675","S-adenosylmethionine decarboxylase"],["Pfam%3APF09071","Alpha-amylase, C terminal"],["Pfam%3APF17952","Cas6 N-terminal domain"],["Pfam%3APF27338","Cytochrome b558/566 subunit B"],["Pfam%3APF22703","Cdc6 AAA+ ATPase-type lid domain"]]},{"id":"NCBITaxon:36987","l":"Coptotermes formosanus","na":38,"nb":1,"a":[["black-smoker-envo-00000218.html","black smoker"],["coastal-sea-water-envo-00002150.html","coastal sea water"],["eutrophic-water-envo-00002224.html","eutrophic water"],["marine-bathyal-zone-biome-envo-01000026.html","marine bathyal zone biome"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"]],"b":[["TED%3AAF-A0A6L2PKM4-F1-model_v4_TED01","TED novel fold AF-A0A6L2PKM4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1898203","l":"Lachnospiraceae bacterium","na":1,"nb":35,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["TED%3AAF-A0A2G3Q064-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G3Q064-F1-model_v4_TED01"],["TED%3AAF-A0A316PVU3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A316PVU3-F1-model_v4_TED02"],["TED%3AAF-A0A349YHB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349YHB4-F1-model_v4_TED01"],["TED%3AAF-A0A349ZVK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349ZVK2-F1-model_v4_TED01"],["TED%3AAF-A0A354ID29-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A354ID29-F1-model_v4_TED04"],["TED%3AAF-A0A355NJL5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A355NJL5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2026801","l":"Verrucomicrobiales bacterium","na":1,"nb":33,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2D5AKS0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D5AKS0-F1-model_v4_TED01"],["TED%3AAF-A0A2D9K0M4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9K0M4-F1-model_v4_TED01"],["TED%3AAF-A0A2E0QW10-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0QW10-F1-model_v4_TED01"],["TED%3AAF-A0A2E5EQN4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E5EQN4-F1-model_v4_TED02"],["TED%3AAF-A0A2E5WTV4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E5WTV4-F1-model_v4_TED01"],["TED%3AAF-A0A350EXF0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A350EXF0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:243273","l":"Mycoplasmoides genitalium (strain ATCC 33530 / DSM 19775 / NCTC 10195 / G37)","na":1,"nb":31,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF03257","Mycoplasma adhesin P1, C-terminal"],["Pfam%3APF09185","Domain of unknown function (DUF1948)"],["Pfam%3APF09188","Domain of unknown function (DUF1951)"],["Pfam%3APF03072","Domain of unknown function (DUF237)"],["Pfam%3APF03086","Domain of unknown function (DUF240)"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":1,"nb":26,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["Pfam%3APF27270","Alr1449"],["Pfam%3APF27301","Alr2735 N-terminal domain"],["Pfam%3APF27288","Alr2735"],["Pfam%3APF21571","Arginine dihydrolase ArgZ-like, C-terminal, first region"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF13205","Bacterial Ig-like domain"]]},{"id":"NCBITaxon:160488","l":"Pseudomonas putida (strain ATCC 47054 / DSM 6125 / CFBP 8728 / NCIMB 11950 / KT2440)","na":1,"nb":25,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF00842","Alanine racemase, C-terminal domain"],["Pfam%3APF01168","Alanine racemase, N-terminal domain"],["Pfam%3APF13372","Alginate export"],["Pfam%3APF03705","CheR methyltransferase, all-alpha domain"],["Pfam%3APF01739","CheR methyltransferase, SAM binding domain"]]},{"id":"NCBITaxon:226186","l":"Bacteroides thetaiotaomicron (strain ATCC 29148 / DSM 2079 / JCM 5827 / CCUG 10774 / NCTC 10582 / VPI-5482 / E50)","na":1,"nb":25,"a":[["gut-epithelium-bto-0000956.html","gut epithelium"]],"b":[["Pfam%3APF06439","3-keto-alpha-glucoside-1,2-lyase-like domain"],["Pfam%3APF13444","Acetyltransferase (GNAT) domain"],["Pfam%3APF19576","Acyltransferase"],["Pfam%3APF23764","GLAA-B beta-barrel domain II"],["Pfam%3APF13715","CarboxypepD_reg-like domain"],["Pfam%3APF26120","SusF, first starch specific CBM"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":19,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["saline-water-body-envo-01001319.html","saline water body"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["Pfam%3APF03437","BtpA family"]]},{"id":"NCBITaxon:1871066","l":"Mesorhizobium sp.","na":1,"nb":18,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["TED%3AAF-A0A3S3GQ11-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S3GQ11-F1-model_v4_TED01"],["TED%3AAF-A0A439J515-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A439J515-F1-model_v4_TED03"],["TED%3AAF-A0A439JC49-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A439JC49-F1-model_v4_TED01"],["TED%3AAF-A0A439N076-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A439N076-F1-model_v4_TED01"],["TED%3AAF-A0A442WFH9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A442WFH9-F1-model_v4_TED03"],["TED%3AAF-A0A529PFR3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A529PFR3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:210007","l":"Streptococcus mutans serotype c (strain ATCC 700610 / UA159)","na":1,"nb":18,"a":[["tooth-bto-0000397.html","tooth"]],"b":[["Pfam%3APF18652","Adhesin P1 N-terminal domain"],["Pfam%3APF17998","Cell surface antigen I/II C2 terminal domain"],["Pfam%3APF16364","Cell surface antigen C-terminus"],["Pfam%3APF12733","Cadherin-like beta sandwich domain"],["Pfam%3APF05737","Collagen binding domain"],["Pfam%3APF21537","DUF1980 C-terminal domain"]]},{"id":"NCBITaxon:9615","l":"Canis lupus familiaris","na":1,"nb":18,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["Pfam%3APF14797","Serine-rich region of AP3B1, clathrin-adaptor complex"],["Pfam%3APF22627","AglB core domain"],["Pfam%3APF09064","Thrombomodulin like fifth domain, EGF-like"],["IEDB%3A176033","epitope KLFSGELTK"],["IEDB%3A232270","epitope RVYHLTWLR"],["Pfam%3APF14828","Amnionless"]]},{"id":"NCBITaxon:1018","l":"Capnocytophaga ochracea","na":17,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["gut-bto-0000545.html","gut"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"]],"b":[["TED%3AAF-A0A2X2T3Z4-F1-model_v4_TED01","TED novel fold AF-A0A2X2T3Z4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:208963","l":"Pseudomonas aeruginosa (strain UCBPP-PA14)","na":1,"nb":17,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF21384","CRISPR-associated nuclease/helicase Cas3, I-F/YPEST, Cas2 domain"],["Pfam%3APF21802","CRISPR-associated Cas3 subtype I-F/YPEST-like, C-terminal domain"],["Pfam%3APF20975","DGC-associated coil"],["Pfam%3APF19502","Nucleotidyltransferase of unknown function (DUF6036)"]]},{"id":"NCBITaxon:69014","l":"Thermococcus kodakarensis (strain ATCC BAA-918 / JCM 12380 / KOD1)","na":1,"nb":17,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["Pfam%3APF08546","Ketopantoate reductase PanE/ApbA C terminal"],["Pfam%3APF02558","Ketopantoate reductase PanE/ApbA"],["Pfam%3APF09210","1,4-alpha-glucan branching enzyme, C-terminal"],["Pfam%3APF01861","Branched-chain polyamine synthase A C-terminal domain"],["Pfam%3APF27272","Cyclic 2,3-diphosphoglycerate synthetase, N-terminal domain"],["Pfam%3APF17884","Domain of unknown function (DUF5591)"]]},{"id":"NCBITaxon:1360","l":"Lactococcus lactis subsp. lactis","na":1,"nb":16,"a":[["foregut-bto-0000507.html","foregut"]],"b":[["Pfam%3APF08951","Bacteriocin immunity protein family"],["Pfam%3APF08998","Bacterial epsilon antitoxin"],["Pfam%3APF25887","LcnD-like, long helical bundle domain"],["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF25940","LcnD-like, C-terminal domain"],["Pfam%3APF08129","Alpha/beta enterocin family"]]},{"id":"NCBITaxon:1768","l":"Mycobacterium kansasii","na":1,"nb":16,"a":[["liquid-water-envo-00002006.html","liquid water"]],"b":[["IEDB%3A4541","epitope ASLQAQWRGAAGTAAQAA"],["IEDB%3A8439","epitope DGLRAQDDYNGWDINTPAF"],["IEDB%3A11226","epitope EAYQGVQQKWDATAQE"],["IEDB%3A12036","epitope EFLENFVRSSNLKFQDAYNAAGGHNAVFNLDANGTHSWEY"],["IEDB%3A17834","epitope FSRPGLPVEYLQVPSAAMGRSIKVQFQSGGDNSPAVYLLD"],["IEDB%3A24363","epitope HNAVFNLDANGTHSWEYWGAQLNAMKGDLQ"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":15,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["Pfam%3APF07832","Cfr10I/Bse634I restriction endonuclease"],["Pfam%3APF22348","Colicin-A N-terminal domain"],["Pfam%3APF01024","Colicin pore forming domain"],["Pfam%3APF18427","DD-reactivating factor swiveling domain"],["Pfam%3APF02286","Dehydratase large subunit"],["Pfam%3APF02288","Dehydratase medium subunit"]]},{"id":"NCBITaxon:106370","l":"Frankia casuarinae","na":14,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["river-envo-00000022.html","river"],["rhizosphere-envo-00005801.html","rhizosphere"],["root-nodule-bto-0001190.html","root nodule"],["biome-envo-00000428.html","biome"],["biotope-envo-00002036.html","biotope"]],"b":[["Pfam%3APF14403","Circularly permuted ATP-grasp type 2"]]},{"id":"NCBITaxon:224914","l":"Brucella melitensis biotype 1 (strain ATCC 23456 / CCUG 17765 / NCTC 10094 / 16M)","na":1,"nb":14,"a":[["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["Pfam%3APF03625","Domain of unknown function DUF302"],["Pfam%3APF07559","Flagellar basal body protein FlaE D2 domain"],["Pfam%3APF07536","HWE histidine kinase"],["IEDB%3A2523","epitope ALFEDYPGC"],["IEDB%3A203621","epitope AVTFLVRVKESLEDP"],["IEDB%3A206463","epitope EAITKGVSAAPAAPV"]]},{"id":"CHEBI:16183","l":"methane","na":1,"nb":13,"a":[["methane-bioremediation-material-habitatmech-gold-d510166905.html","methane bioremediation material"]],"b":[["EC%3A1.14.13.25","methane monooxygenase (soluble)"],["EC%3A1.14.18.3","methane monooxygenase (particulate)"],["EC%3A2.8.4.1","coenzyme-B sulfoethylthiotransferase"],["EC%3A4.7.1.1","alpha-D-ribose 1-methylphosphonate 5-phosphate C-P-lyase"],["RHEA%3A34707","alpha-D-ribose 1-methylphosphonate 5-phosphate + AH2 + S-adenosyl-L-methionine = alpha-D-ribose 1,2-cyclic phosphate 5-phosphate + methane + 5'-deoxyadenosine + L-methionine + A + H(+)"],["RHEA%3A12532","coenzyme B + methyl-coenzyme M = methane + coenzyme M-coenzyme B heterodisulfide"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus ATCC 27405","na":1,"nb":13,"a":[["blood-plasma-bto-0000131.html","blood plasma"]],"b":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["Pfam%3APF00942","Cellulose binding domain"],["Pfam%3APF17996","Carbohydrate esterase 2 N-terminal"],["Pfam%3APF00963","Cohesin domain"],["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF00404","Dockerin type I domain"]]},{"id":"NCBITaxon:272942","l":"Rhodobacter capsulatus (strain ATCC BAA-309 / NBRC 16581 / SB1003)","na":1,"nb":13,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["Pfam%3APF02553","Cobalt transport protein component CbiN"],["Pfam%3APF03379","CcmB protein"],["Pfam%3APF27123","Carotenoid hydratase CrtC"],["Pfam%3APF14715","N-terminal domain of cytochrome oxidase-cbb3, FixP"],["Pfam%3APF07284","2-vinyl bacteriochlorophyllide hydratase (BCHF)"],["Pfam%3APF02571","Precorrin-6x reductase CbiJ/CobK"]]},{"id":"NCBITaxon:104268","l":"Tenacibaculum mesophilum","na":12,"nb":1,"a":[["bay-envo-00000032.html","bay"],["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"],["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"]],"b":[["TED%3AAF-A0A1M5HMT5-F1-model_v4_TED01","TED novel fold AF-A0A1M5HMT5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:107401","l":"Tenacibaculum maritimum","na":12,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["low-tide-zone-envo-00000319.html","low tide zone"],["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A5S9T7W6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5S9T7W6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1596","l":"Lactobacillus gasseri","na":12,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["catheter-device-ncit-c50344.html","Catheter Device"],["city-envo-00000856.html","city"],["egg-food-product-foodon-00001274.html","egg food product"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"]],"b":[["TED%3AAF-A0A845FIT3-F1-model_v4_TED02","TED novel fold AF-A0A845FIT3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:469383","l":"Conexibacter woesei DSM 14684","na":12,"nb":1,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["oil-spill-envo-00002061.html","oil spill"],["village-biome-envo-01000246.html","village biome"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["TED%3AAF-D3FEY8-F1-model_v4_TED03","TED highly-symmetric fold AF-D3FEY8-F1-model_v4_TED03"]]},{"id":"NCBITaxon:471472","l":"Chlamydia trachomatis serovar L2 (strain ATCC VR-902B / DSM 19102 / 434/Bu)","na":1,"nb":12,"a":[["lymph-node-bto-0000784.html","lymph node"]],"b":[["Pfam%3APF07382","Histone H1-like nucleoprotein HC2"],["Pfam%3APF05475","Pgp3 C-terminal domain"],["Pfam%3APF22368","Response regulator protein ChxR, N-terminal domain"],["Pfam%3APF01345","CLIPPER domain"],["Pfam%3APF07577","Domain of Unknown Function (DUF1547)"],["Pfam%3APF03503","Chlamydia cysteine-rich outer membrane protein 3"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":1,"nb":12,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["Pfam%3APF17433","Glycosyl hydrolase family 49 N-terminal Ig-like domain"],["PROSITE%3APS00820","Glucoamylase active site region signature"],["PROSITE%3APS00920","Nitrilases / cyanide hydratase signature 1"],["PROSITE%3APS00502","Polygalacturonase active site"],["Pfam%3APF18841","Beta solenoid repeat from Dextranase"],["Pfam%3APF03718","Glycosyl hydrolase family 49"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":1,"nb":12,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF02085","Class III cytochrome C family"],["Pfam%3APF06397","Desulfoferrodoxin, N-terminal domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["Pfam%3APF12797","4Fe-4S binding domain"],["Pfam%3APF06180","Cobalt chelatase (CbiK)"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":11,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"],["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["laboratory-facility-envo-01001406.html","laboratory facility"],["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["bone-element-uberon-0001474.html","bone element"],["juvenile-bto-0002168.html","juvenile"]],"b":[["Pfam%3APF08124","Polysaccharide lyase family 8, N terminal alpha-helical domain"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":11,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["Pfam%3APF07835","Bacterial aa3 type cytochrome c oxidase subunit IV"],["Pfam%3APF04828","Glutathione-dependent formaldehyde-activating enzyme"],["Pfam%3APF16448","LapD/MoxY periplasmic domain"],["Pfam%3APF17267","Family of unknown function (DUF5333)"],["Pfam%3APF17272","Family of unknown function (DUF5337)"],["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"]]},{"id":"NCBITaxon:272626","l":"Listeria innocua serovar 6a (strain ATCC BAA-680 / CLIP 11262)","na":1,"nb":11,"a":[["heart-bto-0000562.html","heart"]],"b":[["Pfam%3APF16595","PAM-interacting domain of CRISPR-associated endonuclease Cas9"],["Pfam%3APF21846","Domain of unknown function (DUF6905)"],["Pfam%3APF27405","Lin0124 C-terminal coiled-coil domain"],["Pfam%3APF14297","Lin1244/Lin1753-like, N-terminal"],["Pfam%3APF16593","Bridge helix of CRISPR-associated endonuclease Cas9"],["Pfam%3APF16592","REC lobe of CRISPR-associated endonuclease Cas9"]]},{"id":"NCBITaxon:331112","l":"Escherichia coli O9:H4 (strain HS)","na":1,"nb":11,"a":[["adrenal-gland-bto-0000047.html","adrenal gland"]],"b":[["Pfam%3APF25796","BREX ATP-binding protein BrxC 4th domain with six-stranded beta sheet"],["Pfam%3APF25792","BREX ATP-binding protein BrxC alpha helical domain"],["Pfam%3APF08747","BREX protein BrxB"],["Pfam%3APF19557","BrxC/PglY, N-terminal domain"],["Pfam%3APF13337","Lon-like protease BrxL-like, ATPase domain"],["Pfam%3APF20442","BREX system Lon protease-like protein BrxL N-terminal"]]},{"id":"NCBITaxon:4113","l":"Solanum tuberosum","na":1,"nb":11,"a":[["tuber-bto-0001400.html","tuber"]],"b":[["Pfam%3APF02977","Carboxypeptidase A inhibitor"],["Pfam%3APF01474","Class-II DAHP synthetase family"],["Pfam%3APF23229","Alpha-glucan water dikinase, DUF7067"],["Pfam%3APF02446","4-alpha-glucanotransferase"],["Pfam%3APF22973","Alpha-glucan water dikinase, phosphohistidine-like domain"],["Pfam%3APF23166","Alpha-glucan water dikinase 1 Ig-like N-terminal domain"]]},{"id":"NCBITaxon:498211","l":"Cellvibrio japonicus (strain Ueda107)","na":1,"nb":11,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["Pfam%3APF17996","Carbohydrate esterase 2 N-terminal"],["Pfam%3APF02156","Glycosyl hydrolase family 26"],["Pfam%3APF02015","Glycosyl hydrolase family 45"],["Pfam%3APF07477","Glycosyl hydrolase family 67 C-terminus"],["Pfam%3APF07488","Glycosyl hydrolase family 67 middle domain"],["Pfam%3APF03648","Glycosyl hydrolase family 67 N-terminus"]]},{"id":"NCBITaxon:1058","l":"Thiocapsa roseopersicina","na":10,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["saline-marsh-envo-00000054.html","saline marsh"],["river-envo-00000022.html","river"],["waste-water-envo-00002001.html","waste water"],["environmental-feature-envo-00002297.html","environmental feature"],["stromatolite-mat-envo-00002157.html","stromatolite mat"]],"b":[["Pfam%3APF27123","Carotenoid hydratase CrtC"]]},{"id":"NCBITaxon:1399","l":"Cytobacillus firmus","na":10,"nb":1,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"],["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["TED%3AAF-A0A800NFK9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A800NFK9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:147","l":"Spirochaeta aurantia","na":10,"nb":1,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["water-body-envo-00000063.html","water body"]],"b":[["Pfam%3APF06226","Protein of unknown function (DUF1007)"]]},{"id":"NCBITaxon:192222","l":"Campylobacter jejuni subsp. jejuni serotype O:2 (strain ATCC 700819 / NCTC 11168)","na":1,"nb":10,"a":[["flagellate-bto-0000464.html","flagellate"]],"b":[["Pfam%3APF26365","Apolipoprotein N-acyltransferase integral membrane domain"],["Pfam%3APF22131","CRISPR-associated endonuclease CjCas9 PI-CTD domain"],["Pfam%3APF22129","CRISPR-associated endonuclease CjCas9 wedge domain"],["Pfam%3APF02554","Carbon starvation protein CstA"],["Pfam%3APF27310","HrcA C-terminal domain"],["Pfam%3APF05538","Campylobacter major outer membrane protein"]]},{"id":"NCBITaxon:2026795","l":"Nitrososphaerota archaeon","na":1,"nb":10,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2E0QIG3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E0QIG3-F1-model_v4_TED02"],["TED%3AAF-A0A519CY76-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A519CY76-F1-model_v4_TED02"],["TED%3AAF-A0A533VPG5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A533VPG5-F1-model_v4_TED01"],["TED%3AAF-A0A533VS28-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A533VS28-F1-model_v4_TED01"],["TED%3AAF-A0A538P7I2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A538P7I2-F1-model_v4_TED02"],["TED%3AAF-A0A662PPJ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A662PPJ2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":1,"nb":10,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["Pfam%3APF27445","Adaptation to cold protein A"],["Pfam%3APF27450","AtcB C-terminal domain"],["Pfam%3APF27486","AtcB N-terminal domain"],["Pfam%3APF02464","CinA C-terminal domain"],["Pfam%3APF13657","HipA N-terminal domain"],["Pfam%3APF01934","Ribonuclease HepT-like"]]},{"id":"NCBITaxon:226185","l":"Enterococcus faecalis (strain ATCC 700802 / V583)","na":1,"nb":10,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["Pfam%3APF13523","Acetyltransferase (GNAT) domain"],["Pfam%3APF17255","EbsA-like protein"],["Pfam%3APF22647","Deacetylase EF_0837-like composite domain"],["Pfam%3APF08858","IDEAL domain"],["Pfam%3APF02655","ATP-grasp domain"],["Pfam%3APF17400","Family of unknown function (DUF5406)"]]},{"id":"NCBITaxon:266264","l":"Cupriavidus metallidurans CH34","na":1,"nb":10,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["Pfam%3APF25973","CzcB-like, barrel-sandwich hybrid domain"],["Pfam%3APF09828","ChrB, C-terminal domain"],["Pfam%3APF20229","Protein ChrB, N-terminal"],["Pfam%3APF01923","Cobalamin adenosyltransferase"],["Pfam%3APF25975","CzcB C-terminal circularly permuted SH3-like domain"],["Pfam%3APF25971","CzcB, N-terminal domain"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":10,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["air-conditioning-unit-envo-00002874.html","air conditioning unit"],["leaf-bto-0000713.html","leaf"],["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["TED%3AAF-A0A679J1E9-F1-model_v4_TED01","TED novel fold AF-A0A679J1E9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:47715","l":"Lacticaseibacillus rhamnosus","na":10,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["fermentation-starter-envo-03600040.html","fermentation starter"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["Pfam%3APF04914","DltD protein"]]},{"id":"NCBITaxon:72036","l":"Lepeophtheirus salmonis","na":1,"nb":10,"a":[["sandstone-envo-00002055.html","sandstone"]],"b":[["TED%3AAF-A0A0K2T0G4-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A0K2T0G4-F1-model_v4_TED05"],["TED%3AAF-A0A0K2UM05-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0K2UM05-F1-model_v4_TED02"],["TED%3AAF-A0A0K2UVC7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0K2UVC7-F1-model_v4_TED02"],["TED%3AAF-A0A7R8CWL1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7R8CWL1-F1-model_v4_TED02"],["TED%3AAF-A0A0K2U8Q2-F1-model_v4_TED01","TED novel fold AF-A0A0K2U8Q2-F1-model_v4_TED01"],["TED%3AAF-A0A0K2U962-F1-model_v4_TED02","TED novel fold AF-A0A0K2U962-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1017","l":"Capnocytophaga gingivalis","na":9,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biotope-envo-00002036.html","biotope"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["organic-feature-envo-01000159.html","organic feature"]],"b":[["TED%3AAF-A0A250FUG5-F1-model_v4_TED01","TED novel fold AF-A0A250FUG5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:107806","l":"Buchnera aphidicola subsp. Acyrthosiphon pisum (strain APS)","na":1,"nb":9,"a":[["embryo-bto-0000379.html","embryo"]],"b":[["Pfam%3APF21157","DnaK suppressor protein DksA, N-terminal domain"],["Pfam%3APF21158","Flagellar hook-associated protein 1, D2-like domain"],["Pfam%3APF02955","Prokaryotic glutathione synthetase, ATP-grasp domain"],["Pfam%3APF02951","Prokaryotic glutathione synthetase, N-terminal domain"],["Pfam%3APF21500","DNA polymerase III subunit delta', AAA+ ATPase lid domain"],["Pfam%3APF14840","Processivity clamp loader gamma complex DNA pol III C-term"]]},{"id":"NCBITaxon:111770","l":"Thiothrix fructosivorans","na":9,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"],["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"]],"b":[["TED%3AAF-A0A8B0SKG2-F1-model_v4_TED02","TED novel fold AF-A0A8B0SKG2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1261","l":"Peptostreptococcus anaerobius","na":9,"nb":1,"a":[["dorsum-bto-0001713.html","dorsum"],["saliva-bto-0001202.html","saliva"],["sgs-cell-bto-0001210.html","SGS cell"],["tongue-bto-0001385.html","tongue"],["urine-bto-0001419.html","urine"],["vagina-bto-0000243.html","vagina"]],"b":[["TED%3AAF-A0A379CE26-F1-model_v4_TED01","TED novel fold AF-A0A379CE26-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1904441","l":"Paracoccaceae bacterium","na":1,"nb":9,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2E3PFF7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E3PFF7-F1-model_v4_TED02"],["TED%3AAF-A0A357LNH5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A357LNH5-F1-model_v4_TED01"],["TED%3AAF-A0A3D4DSL4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D4DSL4-F1-model_v4_TED01"],["TED%3AAF-A0A6L8C0Y8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L8C0Y8-F1-model_v4_TED01"],["TED%3AAF-A0A7Y2J0I6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y2J0I6-F1-model_v4_TED01"],["TED%3AAF-A0A2E0BJC7-F1-model_v4_TED02","TED novel fold AF-A0A2E0BJC7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:29539","l":"Thermoleophilum album","na":9,"nb":1,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"],["desert-sand-envo-00005800.html","desert sand"],["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"],["village-biome-envo-01000246.html","village biome"]],"b":[["TED%3AAF-A0A1H6FIV6-F1-model_v4_TED01","TED novel fold AF-A0A1H6FIV6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:359391","l":"Brucella abortus (strain 2308)","na":1,"nb":9,"a":[["style-bto-0001313.html","style"]],"b":[["Pfam%3APF13444","Acetyltransferase (GNAT) domain"],["Pfam%3APF10090","Histidine phosphotransferase C-terminal domain"],["Pfam%3APF07536","HWE histidine kinase"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF07886","BA14K-like protein"],["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"]]},{"id":"NCBITaxon:405955","l":"Escherichia coli O1:K1 / APEC","na":1,"nb":9,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["Pfam%3APF07417","Sigma factor-binding transcriptional regulator Crl"],["Pfam%3APF10807","Domain of unknown function (DUF2541)"],["Pfam%3APF25878","pHBA AAEA subunit, alpha-helical hairpin domain"],["Pfam%3APF10796","Sigma-S stabilisation anti-adaptor protein"],["Pfam%3APF06693","Protein of unknown function (DUF1190)"],["Pfam%3APF06932","Protein of unknown function (DUF1283)"]]},{"id":"NCBITaxon:4513","l":"Hordeum vulgare","na":1,"nb":9,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["Pfam%3APF20241","Domain of unknown function (DUF6598)"],["PROSITE%3APS00771","Barwin domain signature 1"],["PROSITE%3APS00426","Cereal trypsin/alpha-amylase inhibitors family signature"],["PROSITE%3APS00725","Germin family signature"],["PROSITE%3APS00431","Small hydrophilic plant seed proteins signature"],["MCSA%3A397","alpha-amylase"]]},{"id":"NCBITaxon:7668","l":"Strongylocentrotus purpuratus","na":1,"nb":9,"a":[["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["Pfam%3APF01382","Avidin family"],["Pfam%3APF02084","Bindin"],["PROSITE%3APS00577","Avidin-like domain signature"],["Pfam%3APF22494","Choice-of-anchor I domain"],["Pfam%3APF05804","Kinesin-associated protein (KAP)"],["Pfam%3APF07054","Pericardin like repeat"]]},{"id":"NCBITaxon:83462","l":"Corallococcus exiguus","na":9,"nb":1,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["feces-uberon-0001988.html","feces"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"]],"b":[["TED%3AAF-A0A7X4Y983-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X4Y983-F1-model_v4_TED01"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":9,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF25954","CusB-like, beta-barrel domain"],["Pfam%3APF13438","Domain of unknown function (DUF4113)"],["Pfam%3APF03767","HAD superfamily, subfamily IIIB (Acid phosphatase)"],["Pfam%3APF03496","ADP-ribosyltransferase exoenzyme"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":8,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["alimentary-canal-bto-0000058.html","alimentary canal"],["blood-bto-0000089.html","blood"],["small-intestine-bto-0000651.html","small intestine"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["geographic-feature-envo-00000000.html","geographic feature"]],"b":[["PROSITE%3APS01043","Transposases, IS30 family, signature"]]},{"id":"NCBITaxon:1486246","l":"Halomonas sp.","na":8,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["saline-water-body-envo-01001319.html","saline water body"],["laboratory-facility-envo-01001406.html","laboratory facility"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["TED%3AAF-A0A355PHS8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A355PHS8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":8,"a":[["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["Pfam%3APF02927","Cellulase N-terminal ig-like domain"],["Pfam%3APF00404","Dockerin type I domain"],["PROSITE%3APS00448","Clostridium cellulosome enzymes repeated domain signature"],["PROSITE%3APS60032","Glycosyl hydrolases family 9 (GH9) active site signature 1"],["PROSITE%3APS00592","Glycosyl hydrolases family 9 (GH9) active site signature 2"],["PROSITE%3APS00698","Glycosyl hydrolases family 9 (GH9) active site signature 3"]]},{"id":"NCBITaxon:183190","l":"Xylella fastidiosa (strain Temecula1 / ATCC 700964)","na":1,"nb":8,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["Pfam%3APF21142","Bacterial alpha-2 macroglobulin MG2 domain"],["Pfam%3APF04273","Beta-lactamase hydrolase-like protein, phosphatase-like domain"],["Pfam%3APF17970","Bacterial Alpha-2-macroglobulin MG1 domain"],["Pfam%3APF17973","Bacterial Alpha-2-macroglobulin MG10 domain"],["Pfam%3APF11974","Bacterial alpha-2-macroglobulin MG3 domain"],["Pfam%3APF17972","Bacterial Alpha-2-macroglobulin MG5 domain"]]},{"id":"NCBITaxon:196162","l":"Nocardioides sp. JS614","na":8,"nb":1,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["oil-spill-envo-00002061.html","oil spill"],["petroleum-envo-00002984.html","petroleum"]],"b":[["TED%3AAF-A1SFH1-F1-model_v4_TED04","TED highly-symmetric fold AF-A1SFH1-F1-model_v4_TED04"]]},{"id":"NCBITaxon:227882","l":"","na":1,"nb":8,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["Pfam%3APF17390","Bacterial alpha-L-rhamnosidase C-terminal domain"],["Pfam%3APF08531","Alpha-L-rhamnosidase N-terminal domain"],["Pfam%3APF05592","Bacterial alpha-L-rhamnosidase concanavalin-like domain"],["Pfam%3APF26366","Domain of unknown function (DUF8094)"],["Pfam%3APF25788","Rha78A-like, N-terminal immunoglobulin domain"],["Pfam%3APF06781","Cell division protein CrgA"]]},{"id":"NCBITaxon:229533","l":"Fusarium graminearum PH-1","na":1,"nb":8,"a":[["soil-envo-00001998.html","soil"]],"b":[["Pfam%3APF18388","Atg29 N-terminal domain"],["Pfam%3APF27599","CcsR C-terminal domain"],["Pfam%3APF07110","EthD domain"],["Pfam%3APF11700","Vacuole effluxer Atg22 like"],["Pfam%3APF28504","Gramillins biosynthetic cluster protein GRA5"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"]]},{"id":"NCBITaxon:240176","l":"Coprinopsis cinerea (strain Okayama-7 / 130 / ATCC MYA-4618 / FGSC 9003)","na":1,"nb":8,"a":[["meiotic-cell-bto-0000845.html","meiotic cell"]],"b":[["Pfam%3APF26733","Adenylate-forming reductase 03009, C-terminal domain"],["Pfam%3APF01761","3-dehydroquinate synthase N-terminal"],["Pfam%3APF24621","3-dehydroquinate synthase C-terminal"],["Pfam%3APF03443","Auxiliary Activity family 9 (formerly GH61)"],["Pfam%3APF16010","Cytochrome domain of cellobiose dehydrogenase"],["PROSITE%3APS00104","EPSP synthase signature 1"]]},{"id":"NCBITaxon:242619","l":"Porphyromonas gingivalis (strain ATCC BAA-308 / W83)","na":1,"nb":8,"a":[["gingiva-bto-0000519.html","gingiva"]],"b":[["Pfam%3APF13290","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF04023","FeoA domain"],["Pfam%3APF17910","FeoB cytosolic helical domain"],["Pfam%3APF02421","Ferrous iron transport protein B"],["Pfam%3APF22492","FimA4 pilin C-terminal domain"],["Pfam%3APF07664","Ferrous iron transport protein B C terminus"]]},{"id":"NCBITaxon:273075","l":"Thermoplasma acidophilum (strain ATCC 25905 / DSM 1728 / JCM 9062 / NBRC 15155 / AMRC-C165)","na":1,"nb":8,"a":[["blood-plasma-bto-0000131.html","blood plasma"]],"b":[["Pfam%3APF17989","Actin like proteins N terminal domain"],["Pfam%3APF10432","Bacterial phospho-glucose isomerase C-terminal SIS domain"],["Pfam%3APF22490","tRNA-splicing endonuclease, linker domain"],["Pfam%3APF22578","Geranylgeranyl reductase catalytic domain"],["Pfam%3APF12831","FAD dependent oxidoreductase"],["Pfam%3APF26550","Tricorn protease second beta propeller domain"]]},{"id":"NCBITaxon:35761","l":"Nocardioides sp.","na":8,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"],["desert-sand-envo-00005800.html","desert sand"],["endosymbiont-habitatmech-bacdive-7d840c7ddc.html","Endosymbiont"],["oil-spill-envo-00002061.html","oil spill"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["orchard-envo-00000115.html","orchard"]],"b":[["TED%3AAF-A0A2E8Z449-F1-model_v4_TED01","TED novel fold AF-A0A2E8Z449-F1-model_v4_TED01"]]},{"id":"NCBITaxon:47885","l":"Pseudomonas oryzihabitans","na":8,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"],["hospital-envo-00002173.html","hospital"],["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"],["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["TED%3AAF-A0A7X3T0R5-F1-model_v4_TED02","TED novel fold AF-A0A7X3T0R5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:572477","l":"Allochromatium vinosum (strain ATCC 17899 / DSM 180 / NBRC 103801 / NCIMB 10441 / D)","na":1,"nb":8,"a":[["ditch-water-envo-00002158.html","ditch water"]],"b":[["Pfam%3APF01322","Cytochrome C'"],["Pfam%3APF02635","DsrE/DsrF-like family"],["Pfam%3APF21706","Sulfide dehydrogenase [flavocytochrome c] flavoprotein chain, central"],["Pfam%3APF09242","Flavocytochrome c sulphide dehydrogenase, flavin-binding"],["Pfam%3APF01355","High potential iron-sulfur protein"],["Pfam%3APF13686","DsrE/DsrF/DrsH-like family"]]},{"id":"NCBITaxon:669","l":"Vibrio harveyi","na":1,"nb":8,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["Pfam%3APF02273","Acyl transferase"],["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF03173","Putative carbohydrate binding domain"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"],["MCSA%3A132","alkanal monooxygenase (FMN-linked)"],["MCSA%3A728","myristoyl-ACP-specific thioesterase"]]},{"id":"UBERON:0001009","l":"","na":8,"nb":1,"a":[["circulatory-system-habitatmech-gold-0552e4fd8a.html","Circulatory system"],["circulatory-system-habitatmech-gold-ce9fa1ef7f.html","Circulatory system"],["circulatory-system-habitatmech-gold-0635cc88f0.html","Circulatory system"],["circulatory-system-habitatmech-gold-2a948ee511.html","Circulatory system"],["circulatory-system-habitatmech-gold-7a7f8b9aa3.html","Circulatory system"],["circulatory-system-habitatmech-gold-5307a30baa.html","Circulatory system"]],"b":[["GO%3A0072359","circulatory system development"]]},{"id":"NCBITaxon:114615","l":"Bradyrhizobium sp. ORS 278","na":7,"nb":1,"a":[["river-envo-00000022.html","river"],["bacteroid-bto-0000109.html","bacteroid"],["root-nodule-bto-0001190.html","root nodule"],["stem-nodule-bto-0001816.html","stem nodule"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["Pfam%3APF10073","GapR-like, DNA-binding domain"]]},{"id":"NCBITaxon:1656","l":"Actinomyces viscosus","na":7,"nb":1,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"],["skin-of-body-uberon-0002097.html","skin of body"],["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Pfam%3APF16555","Gram-positive pilin subunit D1, N-terminal domain"]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":1,"nb":7,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["Pfam%3APF16861","Carbamoyltransferase C-terminus"],["Pfam%3APF02543","Carbamoyltransferase N-terminus"],["Pfam%3APF01960","ArgJ family"],["Pfam%3APF07467","Beta-lactamase inhibitor (BLIP)"],["MCSA%3A303","(carboxyethyl)arginine beta-lactam-synthase"],["MCSA%3A137","deacetoxycephalosporin-C synthase"]]},{"id":"NCBITaxon:1906666","l":"Thermoplasmata archaeon","na":1,"nb":7,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A497HVI4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A497HVI4-F1-model_v4_TED01"],["TED%3AAF-A0A497HX78-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A497HX78-F1-model_v4_TED01"],["TED%3AAF-A0A662M489-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A662M489-F1-model_v4_TED03"],["TED%3AAF-A0A662MMC3-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A662MMC3-F1-model_v4_TED06"],["TED%3AAF-A0A7J4F045-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J4F045-F1-model_v4_TED01"],["TED%3AAF-A0A5A7S0Y2-F1-model_v4_TED02","TED novel fold AF-A0A5A7S0Y2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2006849","l":"Xanthomonadales bacterium","na":1,"nb":7,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2E6REI1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E6REI1-F1-model_v4_TED01"],["TED%3AAF-A0A2E6RHE7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E6RHE7-F1-model_v4_TED02"],["TED%3AAF-A0A354Z1F6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A354Z1F6-F1-model_v4_TED01"],["TED%3AAF-A0A3S0DIN1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S0DIN1-F1-model_v4_TED01"],["TED%3AAF-A0A431HZV9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A431HZV9-F1-model_v4_TED02"],["TED%3AAF-A0A3S0DMM0-F1-model_v4_TED01","TED novel fold AF-A0A3S0DMM0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2210","l":"Methanosarcina thermophila","na":1,"nb":7,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF19436","ACS/CODH beta subunit C-terminal"],["Pfam%3APF03598","CO dehydrogenase/acetyl-CoA synthase complex beta subunit"],["Pfam%3APF00871","Acetokinase family"],["PROSITE%3APS01075","Acetate and butyrate kinases family signature 1"],["PROSITE%3APS01076","Acetate and butyrate kinases family signature 2"]]},{"id":"NCBITaxon:314230","l":"Blastopirellula marina DSM 3645","na":7,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["shoreline-envo-00000486.html","shoreline"],["bulk-soil-envo-00005802.html","bulk soil"],["forested-area-envo-00000111.html","forested area"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-A3ZZX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A3ZZX2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:37734","l":"Enterococcus casseliflavus","na":1,"nb":7,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["PROSITE%3APS00843","D-alanine--D-alanine ligase signature 1"],["PROSITE%3APS00844","D-alanine--D-alanine ligase signature 2"],["TED%3AAF-A0A1V3NEA6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1V3NEA6-F1-model_v4_TED03"],["TED%3AAF-A0A377MP00-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A377MP00-F1-model_v4_TED01"],["TED%3AAF-A0A377KTN3-F1-model_v4_TED02","TED novel fold AF-A0A377KTN3-F1-model_v4_TED02"],["TED%3AAF-A0A377MJ12-F1-model_v4_TED01","TED novel fold AF-A0A377MJ12-F1-model_v4_TED01"]]},{"id":"NCBITaxon:555778","l":"","na":1,"nb":7,"a":[["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["Pfam%3APF08936","Carboxysome Shell Carbonic Anhydrase, C-terminal"],["Pfam%3APF20686","Carboxysome Shell Carbonic Anhydrase, catalytic domain"],["Pfam%3APF20687","Carboxysome Shell Carbonic Anhydrase, N-terminal"],["Pfam%3APF12288","Carboxysome shell peptide mid-region"],["Pfam%3APF10070","Probable inorganic carbon transporter subunit DabA"],["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"UBERON:0000948","l":"heart","na":7,"nb":1,"a":[["heart-habitatmech-gold-2db4d9dd6e.html","Heart"],["heart-habitatmech-gold-8d7a4e1712.html","Heart"],["heart-uberon-0000948.html","heart"],["heart-habitatmech-gold-e9d67283fc.html","Heart"],["heart-habitatmech-gold-805ee181bd.html","Heart"],["heart-habitatmech-gold-20bc7c46a0.html","Heart"]],"b":[["GO%3A0007507","heart development"]]},{"id":"NCBITaxon:101571","l":"Burkholderia ubonensis","na":1,"nb":6,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["TED%3AAF-A0A118H7W5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A118H7W5-F1-model_v4_TED01"],["TED%3AAF-A0A853WTK8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A853WTK8-F1-model_v4_TED01"],["TED%3AAF-A0A104J6D5-F1-model_v4_TED03","TED novel fold AF-A0A104J6D5-F1-model_v4_TED03"],["TED%3AAF-A0A104Z719-F1-model_v4_TED01","TED novel fold AF-A0A104Z719-F1-model_v4_TED01"],["TED%3AAF-A0A106QCV3-F1-model_v4_TED01","TED novel fold AF-A0A106QCV3-F1-model_v4_TED01"],["TED%3AAF-A0A124U5S7-F1-model_v4_TED02","TED novel fold AF-A0A124U5S7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":6,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"],["sludge-envo-00002044.html","sludge"],["forested-area-envo-00000111.html","forested area"],["scrubland-area-envo-00000300.html","scrubland area"],["soil-envo-00001998.html","soil"]],"b":[["TED%3AAF-A0A367PA30-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A367PA30-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121927","l":"Gordonia hirsuta DSM 44140 = NBRC 16056","na":6,"nb":1,"a":[["biofilter-envo-00002152.html","biofilter"],["compost-envo-00002170.html","compost"],["wood-bto-0005516.html","wood"],["wood-envo-00002040.html","wood"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["waste-material-envo-00002264.html","waste material"]],"b":[["TED%3AAF-L7L8J6-F1-model_v4_TED01","TED highly-symmetric fold AF-L7L8J6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1133849","l":"Nocardia brasiliensis ATCC 700358","na":6,"nb":1,"a":[["b-lymphocyte-bto-0000776.html","B-lymphocyte"],["brain-bto-0000142.html","brain"],["heart-bto-0000562.html","heart"],["lymphocyte-bto-0000775.html","lymphocyte"],["macrophage-bto-0000801.html","macrophage"],["spleen-bto-0001281.html","spleen"]],"b":[["TED%3AAF-K0ES07-F1-model_v4_TED01","TED novel fold AF-K0ES07-F1-model_v4_TED01"]]},{"id":"NCBITaxon:124","l":"Blastopirellula marina","na":1,"nb":6,"a":[["marine-environment-envo-01000320.html","marine environment"]],"b":[["TED%3AAF-A0A2S8GNX8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S8GNX8-F1-model_v4_TED01"],["TED%3AAF-A0A2S8F9J3-F1-model_v4_TED04","TED novel fold AF-A0A2S8F9J3-F1-model_v4_TED04"],["TED%3AAF-A0A2S8FMN6-F1-model_v4_TED01","TED novel fold AF-A0A2S8FMN6-F1-model_v4_TED01"],["TED%3AAF-A0A2S8GCT5-F1-model_v4_TED02","TED novel fold AF-A0A2S8GCT5-F1-model_v4_TED02"],["TED%3AAF-A0A2S8GL91-F1-model_v4_TED01","TED novel fold AF-A0A2S8GL91-F1-model_v4_TED01"],["TED%3AAF-A0A2S8GLG3-F1-model_v4_TED01","TED novel fold AF-A0A2S8GLG3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:205922","l":"Pseudomonas fluorescens Pf0-1","na":6,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["cold-environment-envo-01000309.html","cold environment"],["microbial-mat-material-envo-01000157.html","microbial mat material"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"],["agricultural-soil-envo-00002259.html","agricultural soil"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["Pfam%3APF07927","HicA toxin of bacterial toxin-antitoxin,"]]},{"id":"NCBITaxon:272630","l":"Methylorubrum extorquens (strain ATCC 14718 / DSM 1338 / JCM 2805 / NCIMB 9133 / AM1)","na":1,"nb":6,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["Pfam%3APF07726","ATPase family associated with various cellular activities (AAA)"],["Pfam%3APF02741","FTR, proximal lobe"],["Pfam%3APF01913","Formylmethanofuran-tetrahydromethanopterin formyltransferase"],["Pfam%3APF10677","Protein of unknown function (DUF2490)"],["Pfam%3APF08714","Formaldehyde-activating enzyme (Fae)"],["PROSITE%3APS00363","Bacterial quinoprotein dehydrogenases signature 1"]]},{"id":"NCBITaxon:290402","l":"Clostridium beijerinckii (strain ATCC 51743 / NCIMB 8052)","na":1,"nb":6,"a":[["garden-soil-envo-00002263.html","garden soil"]],"b":[["Pfam%3APF28550","Domain of unknown function (DUF8436)"],["Pfam%3APF21688","FAD-dependent protein, C-terminal domain-like"],["Pfam%3APF02001","Protein of unknown function DUF134"],["Pfam%3APF03608","PTS system enzyme II sorbitol-specific factor"],["Pfam%3APF07663","Sorbitol phosphotransferase enzyme II C-terminus"],["Pfam%3APF03612","Sorbitol phosphotransferase enzyme II N-terminus"]]},{"id":"NCBITaxon:321614","l":"","na":1,"nb":6,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["Pfam%3APF11786","Aft1 HRA domain"],["Pfam%3APF11787","Aft1 HRR domain"],["Pfam%3APF26980","Dicer-like protein 2, dsRNA binding domain"],["Pfam%3APF18973","Putative Chitin binding like"],["Pfam%3APF25326","SRB8 ARM-like domain"],["TED%3AAF-A0A7U2I0S3-F1-model_v4_TED02","TED novel fold AF-A0A7U2I0S3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:324602","l":"Chloroflexus aurantiacus (strain ATCC 29366 / DSM 635 / J-10-fl)","na":1,"nb":6,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["Pfam%3APF00127","Copper binding proteins, plastocyanin/azurin family"],["IEDB%3A125748","epitope AVDLSHFL"],["Pfam%3APF02276","Photosynthetic reaction centre cytochrome C subunit"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["PROSITE%3APS00196","Type-1 copper (blue) proteins signature"],["PROSITE%3APS00648","Bacterial ribonuclease P protein component signature"]]},{"id":"NCBITaxon:33953","l":"Clostridium aminobutyricum","na":6,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["animal-litter-envo-00002191.html","animal litter"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["mud-envo-01000001.html","mud"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"]],"b":[["MCSA%3A750","4-hydroxybutanoyl-CoA dehydratase"]]},{"id":"NCBITaxon:364106","l":"Escherichia coli (strain UTI89 / UPEC)","na":1,"nb":6,"a":[["rectum-bto-0001158.html","rectum"]],"b":[["Pfam%3APF26516","Inner membrane protein CbrB"],["Pfam%3APF17151","Periplasmic sensor domain"],["Pfam%3APF08971","Glycogen synthesis protein"],["Pfam%3APF06005","ZapB family"],["Pfam%3APF09618","CRISPR-associated protein (Cas_Csy4)"],["Pfam%3APF28061","Type I toxin DinQ-like"]]},{"id":"NCBITaxon:374930","l":"Haemophilus influenzae (strain PittEE)","na":1,"nb":6,"a":[["middle-ear-bto-0002099.html","middle ear"]],"b":[["Pfam%3APF02952","L-fucose isomerase, C-terminal domain"],["Pfam%3APF07881","L-fucose isomerase, first N-terminal domain"],["Pfam%3APF07882","L-fucose isomerase, second N-terminal domain"],["Pfam%3APF02313","Fumarate reductase subunit D"],["Pfam%3APF13286","Phosphohydrolase-associated domain"],["Pfam%3APF04751","Dual-action ribosomal maturation protein DarP"]]},{"id":"NCBITaxon:471852","l":"Thermomonospora curvata DSM 43183","na":6,"nb":1,"a":[["city-envo-00000856.html","city"],["compost-envo-00002170.html","compost"],["urban-biome-envo-01000249.html","urban biome"],["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["Pfam%3APF01580","FtsK/SpoIIIE family"]]},{"id":"NCBITaxon:511","l":"Alcaligenes faecalis","na":1,"nb":6,"a":[["foot-bto-0000476.html","foot"]],"b":[["Pfam%3APF16867","Dimethlysulfonioproprionate lyase"],["IEDB%3A112412","epitope YILDLQPEN"],["Pfam%3APF17645","Arylmalonate decarboxylase"],["Pfam%3APF06433","Methylamine dehydrogenase heavy chain (MADH)"],["TED%3AAF-A0A1Z3MKY1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z3MKY1-F1-model_v4_TED01"],["TED%3AAF-A0A2U2BPX7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2U2BPX7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:716541","l":"","na":1,"nb":6,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Pfam%3APF18228","CdiI N-terminal domain"],["PROSITE%3APS00896","LacY family proton/sugar symporters signature 1"],["PROSITE%3APS00897","LacY family proton/sugar symporters signature 2"],["Pfam%3APF13332","Hemagglutinin repeat"],["Pfam%3APF05860","TPS secretion domain"],["MCSA%3A369","UDP-N-acetylglucosamine enolpyruvyl transferase"]]},{"id":"NCBITaxon:7719","l":"Ciona intestinalis","na":6,"nb":1,"a":[["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"],["ascidian-bto-0000090.html","ascidian"],["ocellus-bto-0001758.html","ocellus"],["sensory-cell-bto-0001037.html","sensory cell"],["tadpole-bto-0001347.html","tadpole"],["trunk-bto-0001493.html","trunk"]],"b":[["TED%3AAF-F6ULD1-F1-model_v4_TED03","TED highly-symmetric fold AF-F6ULD1-F1-model_v4_TED03"]]},{"id":"NCBITaxon:9544","l":"Macaca mulatta","na":1,"nb":6,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["Pfam%3APF21708","Galactocerebrosidase, C-terminal lectin domain"],["Pfam%3APF17387","Glycosyl hydrolase family 59 central domain"],["Pfam%3APF18771","APOBEC3H"],["Pfam%3APF02057","Glycosyl hydrolase family 59"],["PROSITE%3APS00970","Nuclear transition protein 2 signature 1"],["PROSITE%3APS00971","Nuclear transition protein 2 signature 2"]]},{"id":"UBERON:0002048","l":"","na":6,"nb":1,"a":[["lung-habitatmech-gold-dd1a9f0db8.html","Lung"],["lung-habitatmech-gold-5bbc13545b.html","Lung"],["lung-habitatmech-gold-ba687e2c95.html","Lung"],["lung-habitatmech-gold-8fed57e653.html","Lung"],["lung-habitatmech-gold-e8a2c6cf87.html","Lung"],["lung-habitatmech-gold-0d343fdd03.html","Lung"]],"b":[["GO%3A0030324","lung development"]]},{"id":"NCBITaxon:1001240","l":"Cryobacterium roopkundense","na":5,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"],["mineral-material-envo-01000256.html","mineral material"]],"b":[["TED%3AAF-A0A099JLC4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A099JLC4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1006551","l":"Klebsiella michiganensis (strain ATCC 8724 / DSM 4798 / JCM 20051 / NBRC 3318 / NRRL B-199 / KCTC 1686 / BUCSAV 143 / CCM 1901)","na":1,"nb":5,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["Pfam%3APF07833","Copper amine oxidase N-terminal domain"],["Pfam%3APF18427","DD-reactivating factor swiveling domain"],["Pfam%3APF02288","Dehydratase medium subunit"],["Pfam%3APF08841","Diol dehydratase reactivase ATPase-like domain"],["TED%3AAF-A0A0H3H2M0-F1-model_v4_TED01","TED novel fold AF-A0A0H3H2M0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:103836","l":"Thermopolyspora flexuosa","na":5,"nb":1,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["intestine-environment-envo-2100002.html","intestine environment"],["organic-feature-envo-01000159.html","organic feature"],["compost-soil-envo-00005747.html","compost soil"],["soil-envo-00001998.html","soil"]],"b":[["TED%3AAF-A0A543J0S6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A543J0S6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:104421","l":"Camponotus floridanus","na":5,"nb":1,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"],["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"],["biotope-envo-00002036.html","biotope"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["Pfam%3APF22299","BRISC complex subunit FAM175B, helical domain"]]},{"id":"NCBITaxon:1288","l":"Staphylococcus xylosus","na":5,"nb":1,"a":[["stream-envo-00000023.html","stream"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"],["fecal-environment-envo-01001029.html","fecal environment"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["Pfam%3APF02603","HPr Serine kinase N terminus"]]},{"id":"NCBITaxon:13243","l":"Rarobacter faecitabidus","na":5,"nb":1,"a":[["water-body-envo-00000063.html","water body"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["TED%3AAF-A0A542ZUH8-F1-model_v4_TED03","TED novel fold AF-A0A542ZUH8-F1-model_v4_TED03"]]},{"id":"NCBITaxon:135569","l":"Helicobacter apodemus","na":5,"nb":1,"a":[["cecum-mucosa-bto-0000213.html","cecum mucosa"],["epithelium-bto-0000416.html","epithelium"],["ht-29-cell-bto-0000182.html","HT-29 cell"],["lymphoid-tissue-bto-0000753.html","lymphoid tissue"],["mucosa-bto-0000886.html","mucosa"]],"b":[["TED%3AAF-A0A4U8UFG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8UFG8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1356854","l":"Alicyclobacillus acidoterrestris (strain ATCC 49025 / DSM 3922 / CIP 106132 / NCIMB 13137 / GD3B)","na":1,"nb":5,"a":[["fruit-juice-bto-0004057.html","fruit juice"]],"b":[["Pfam%3APF22202","CRISPR-associated endonuclease C2c1 first helical domain"],["Pfam%3APF22172","CRISPR-associated endonuclease C2c1 second helical domain"],["Pfam%3APF22077","CRISPR-associated endonuclease C2c1 Nuc-II domain"],["Pfam%3APF22126","C2c1 CRISPR-Cas endonuclease, RuvC-like domain"],["Pfam%3APF22204","CRISPR-associated endonuclease C2c1, wedge domain, second region"]]},{"id":"NCBITaxon:1363","l":"Lactococcus garvieae","na":5,"nb":1,"a":[["animal-house-envo-00003040.html","animal house"],["gall-bladder-bto-0000493.html","gall bladder"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["geographic-feature-envo-00000000.html","geographic feature"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["TED%3AAF-A0A6L2ZWS4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L2ZWS4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:155077","l":"Cellvibrio japonicus","na":1,"nb":5,"a":[["compost-envo-00002170.html","compost"]],"b":[["Pfam%3APF02013","Cellulose or protein binding domain"],["Pfam%3APF03426","Carbohydrate binding domain (family 15)"],["Pfam%3APF16841","Ca-dependent carbohydrate-binding module xylan-binding"],["Pfam%3APF00331","Glycosyl hydrolase family 10"],["PROSITE%3APS00591","Glycosyl hydrolases family 10 (GH10) active site"]]},{"id":"NCBITaxon:183","l":"Leptonema illini","na":1,"nb":5,"a":[["mud-envo-01000001.html","mud"]],"b":[["TED%3AAF-A0A833GYM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A833GYM6-F1-model_v4_TED01"],["TED%3AAF-A0A833GZG7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A833GZG7-F1-model_v4_TED01"],["TED%3AAF-A0A833H0U1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A833H0U1-F1-model_v4_TED01"],["TED%3AAF-A0A833H0U1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A833H0U1-F1-model_v4_TED02"],["TED%3AAF-A0A833LYP2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A833LYP2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1836","l":"Saccharopolyspora erythraea","na":1,"nb":5,"a":[["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["Pfam%3APF08990","Erythronolide synthase docking domain"],["Pfam%3APF09277","Erythronolide synthase, docking"],["Pfam%3APF12728","Helix-turn-helix domain"],["Pfam%3APF12307","Protein of unknown function (DUF3631)"],["MCSA%3A602","6-deoxyerythronolide-B synthase"]]},{"id":"NCBITaxon:1861","l":"Geodermatophilus obscurus","na":5,"nb":1,"a":[["desert-sand-envo-00005800.html","desert sand"],["tropical-envo-01000204.html","tropical"],["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["TED%3AAF-A0A1M7SWB5-F1-model_v4_TED02","TED novel fold AF-A0A1M7SWB5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:190486","l":"Xanthomonas axonopodis pv. citri (strain 306)","na":1,"nb":5,"a":[["vascular-tissue-bto-0001432.html","vascular tissue"]],"b":[["IDPO%3A0000003","molten globule"],["IDPO%3A0000012","molten globule to order"],["IDPO%3A0000006","order"],["Pfam%3APF00325","Bacterial regulatory proteins, crp family"],["Pfam%3APF05420","Cellulose synthase operon protein C C-terminus (BCSC_C)"]]},{"id":"NCBITaxon:2026715","l":"Pseudobdellovibrionaceae bacterium","na":1,"nb":5,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2E8I2Q3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E8I2Q3-F1-model_v4_TED02"],["TED%3AAF-A0A2E8I7A7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E8I7A7-F1-model_v4_TED02"],["TED%3AAF-A0A2E1Q4H5-F1-model_v4_TED06","TED novel fold AF-A0A2E1Q4H5-F1-model_v4_TED06"],["TED%3AAF-A0A2E7GIF0-F1-model_v4_TED01","TED novel fold AF-A0A2E7GIF0-F1-model_v4_TED01"],["TED%3AAF-A0A849WIZ5-F1-model_v4_TED01","TED novel fold AF-A0A849WIZ5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2098","l":"Metamycoplasma hominis","na":5,"nb":1,"a":[["egg-food-product-foodon-00001274.html","egg food product"],["amniotic-cavity-bto-0000025.html","amniotic cavity"],["amniotic-fluid-bto-0000068.html","amniotic fluid"],["placenta-bto-0001078.html","placenta"],["reproductive-system-bto-0000081.html","reproductive system"]],"b":[["TED%3AAF-A0A6A8Q3G2-F1-model_v4_TED02","TED novel fold AF-A0A6A8Q3G2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:265072","l":"Methylobacillus flagellatus KT","na":5,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"],["water-body-envo-00000063.html","water body"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["activated-sludge-envo-00002046.html","activated sludge"],["sludge-envo-00002044.html","sludge"]],"b":[["Pfam%3APF10414","Sirohaem synthase dimerisation region"]]},{"id":"NCBITaxon:28038","l":"Latilactobacillus curvatus","na":5,"nb":1,"a":[["research-facility-envo-00000469.html","research facility"],["food-fermented-foodon-00001258.html","food (fermented)"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["TED%3AAF-A0A3R5XZN9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3R5XZN9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:290054","l":"Eubacterium coprostanoligenes","na":5,"nb":1,"a":[["emulsion-envo-00010506.html","emulsion"],["environmental-feature-envo-00002297.html","environmental feature"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["pig-manure-envo-00003860.html","pig manure"],["harbour-envo-00000463.html","harbour"]],"b":[["TED%3AAF-A0A1T4NG17-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1T4NG17-F1-model_v4_TED01"]]},{"id":"NCBITaxon:338969","l":"Rhodoferax ferrireducens T118","na":5,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["petroleum-envo-00002984.html","petroleum"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["Pfam%3APF11154","Protein of unknown function (DUF2934)"]]},{"id":"NCBITaxon:34062","l":"Faucicola osloensis","na":5,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"],["water-scum-envo-00005794.html","water scum"]],"b":[["Pfam%3APF14130","Cap4, dsDNA endonuclease domain"]]},{"id":"NCBITaxon:354242","l":"Campylobacter jejuni subsp. jejuni 81-176","na":5,"nb":1,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["leukocyte-bto-0000751.html","leukocyte"],["lymphocyte-bto-0000775.html","lymphocyte"],["neutrophil-bto-0000130.html","neutrophil"],["small-intestine-bto-0000651.html","small intestine"]],"b":[["PROSITE%3APS01300","RecR protein signature"]]},{"id":"NCBITaxon:384","l":"Rhizobium leguminosarum","na":1,"nb":5,"a":[["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["Pfam%3APF10931","Protein of unknown function (DUF2735)"],["TED%3AAF-A0A1B1C3F3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1B1C3F3-F1-model_v4_TED02"],["TED%3AAF-A0A4Q8XNE1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q8XNE1-F1-model_v4_TED01"],["TED%3AAF-A0A6P0B3F8-F1-model_v4_TED02","TED novel fold AF-A0A6P0B3F8-F1-model_v4_TED02"],["TED%3AAF-A0A6P0DM15-F1-model_v4_TED01","TED novel fold AF-A0A6P0DM15-F1-model_v4_TED01"]]},{"id":"NCBITaxon:388399","l":"Sagittula stellata E-37","na":5,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["oligotrophic-water-envo-00002223.html","oligotrophic water"],["pulp-bto-0001142.html","pulp"],["rosette-bto-0001201.html","rosette"],["scolex-bto-0002305.html","scolex"]],"b":[["TED%3AAF-A3JXK6-F1-model_v4_TED02","TED novel fold AF-A3JXK6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:393480","l":"Fusobacterium polymorphum ATCC 10953","na":5,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"],["forested-area-envo-00000111.html","forested area"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["TED%3AAF-A5TXK7-F1-model_v4_TED01","TED highly-symmetric fold AF-A5TXK7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:40518","l":"Ruminococcus bromii","na":5,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["emulsion-envo-00010506.html","emulsion"],["skin-environment-envo-2100003.html","skin environment"],["animal-habitation-envo-00005803.html","animal habitation"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-A0A412UMQ9-F1-model_v4_TED02","TED novel fold AF-A0A412UMQ9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:410359","l":"Pyrobaculum calidifontis (strain DSM 21063 / JCM 11548 / VA1)","na":1,"nb":5,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF18653","Arcadin 1"],["Pfam%3APF01930","Domain of unknown function DUF83"],["PROSITE%3APS00895","3-hydroxyisobutyrate dehydrogenase signature"],["TED%3AAF-A3MU28-F1-model_v4_TED02","TED highly-symmetric fold AF-A3MU28-F1-model_v4_TED02"],["TED%3AAF-A3MXY3-F1-model_v4_TED01","TED highly-symmetric fold AF-A3MXY3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:747","l":"Pasteurella multocida","na":5,"nb":1,"a":[["bronchus-uberon-0002185.html","bronchus"],["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["finger-bto-0004669.html","finger"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["TED%3AAF-A0A8A8HHD5-F1-model_v4_TED02","TED novel fold AF-A0A8A8HHD5-F1-model_v4_TED02"]]},{"id":"UBERON:0000955","l":"brain","na":5,"nb":1,"a":[["brain-habitatmech-gold-752ac1c5aa.html","Brain"],["brain-habitatmech-gold-6bdd76cda3.html","Brain"],["brain-habitatmech-gold-a220aa6bb0.html","Brain"],["brain-habitatmech-gold-e1c2f5f7d4.html","Brain"],["brain-habitatmech-gold-2e584195fd.html","Brain"]],"b":[["GO%3A0007420","brain development"]]},{"id":"CHEBI:24632","l":"hydrocarbon","na":4,"nb":1,"a":[["hydrocarbon-habitatmech-gold-db79f0142d.html","Hydrocarbon"],["hydrocarbon-habitatmech-gold-3c68e33a11.html","Hydrocarbon"],["hydrocarbon-habitatmech-gold-e77998b825.html","Hydrocarbon"],["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"]],"b":[["TCDB%3A1.B.9","The FadL Outer Membrane Protein (FadL) Family"]]},{"id":"NCBITaxon:100","l":"Ancylobacter aquaticus","na":4,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["groundwater-envo-01001004.html","groundwater"],["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"]],"b":[["TED%3AAF-A0A431PQS4-F1-model_v4_TED01","TED novel fold AF-A0A431PQS4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:102862","l":"Proteus penneri","na":4,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"],["geographic-feature-envo-00000000.html","geographic feature"],["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-A0A0G4Q3D2-F1-model_v4_TED01","TED novel fold AF-A0A0G4Q3D2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:102897","l":"Parafrankia sp. EUN1f","na":4,"nb":1,"a":[["plant-bto-0001481.html","plant"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["TED%3AAF-D3D2N4-F1-model_v4_TED01","TED novel fold AF-D3D2N4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1029718","l":"Candidatus Arthromitus sp. SFB-mouse-Japan","na":4,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["lymphocyte-bto-0000775.html","lymphocyte"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["TED%3AAF-F9VKB6-F1-model_v4_TED01","TED novel fold AF-F9VKB6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:105612","l":"Dellaglioa algida","na":4,"nb":1,"a":[["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biotope-envo-00002036.html","biotope"],["organic-feature-envo-01000159.html","organic feature"]],"b":[["TED%3AAF-A0A5C6M980-F1-model_v4_TED02","TED novel fold AF-A0A5C6M980-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1121132","l":"Butyrivibrio hungatei DSM 14810","na":4,"nb":1,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"],["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["TED%3AAF-A0A1M7SJD3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M7SJD3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121301","l":"Paramaledivibacter caminithermalis DSM 15212","na":4,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"],["trough-envo-00000499.html","trough"]],"b":[["TED%3AAF-A0A1M6LSW1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M6LSW1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121324","l":"Peptoclostridium litorale DSM 5388","na":4,"nb":1,"a":[["inlet-envo-00000475.html","inlet"],["ocean-envo-00000015.html","ocean"],["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"]],"b":[["TED%3AAF-A0A069RDW3-F1-model_v4_TED01","TED novel fold AF-A0A069RDW3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121449","l":"Paucidesulfovibrio gracilis DSM 16080","na":4,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"],["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["TED%3AAF-A0A1T4W1V7-F1-model_v4_TED03","TED novel fold AF-A0A1T4W1V7-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1121451","l":"Maridesulfovibrio hydrothermalis AM13 = DSM 14728","na":4,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["undersea-feature-envo-00000104.html","undersea feature"],["trough-envo-00000499.html","trough"]],"b":[["TED%3AAF-L0RH10-F1-model_v4_TED01","TED novel fold AF-L0RH10-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1122195","l":"Marinitoga hydrogenitolerans DSM 16785","na":4,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["ridge-envo-00000283.html","ridge"],["trough-envo-00000499.html","trough"]],"b":[["Pfam%3APF22362","Argonaute, middle domain, bacteria"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":4,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["TED%3AAF-A0A132HLN2-F1-model_v4_TED01","TED novel fold AF-A0A132HLN2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:122587","l":"Neisseria meningitidis serogroup A / serotype 4A (strain DSM 15465 / Z2491)","na":1,"nb":4,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"]],"b":[["Pfam%3APF17850","CysA C-terminal regulatory domain"],["Pfam%3APF22443","FbpC-like, regulatory domain"],["Pfam%3APF05159","Capsule polysaccharide biosynthesis protein"],["Pfam%3APF10077","Uncharacterized protein conserved in bacteria (DUF2314)"]]},{"id":"NCBITaxon:1335","l":"Streptococcus equinus","na":4,"nb":1,"a":[["foregut-bto-0000507.html","foregut"],["stomach-bto-0001307.html","stomach"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["TED%3AAF-A0A1V0GLT7-F1-model_v4_TED01","TED novel fold AF-A0A1V0GLT7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:137584","l":"Thalassomonas viridans","na":1,"nb":4,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["TED%3AAF-A0A0D8CPR2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D8CPR2-F1-model_v4_TED01"],["TED%3AAF-A0A0D8CLZ9-F1-model_v4_TED01","TED novel fold AF-A0A0D8CLZ9-F1-model_v4_TED01"],["TED%3AAF-A0A0D8D8E8-F1-model_v4_TED02","TED novel fold AF-A0A0D8D8E8-F1-model_v4_TED02"],["TED%3AAF-A0A0D8DAF2-F1-model_v4_TED01","TED novel fold AF-A0A0D8DAF2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:148604","l":"Limosilactobacillus ingluviei","na":4,"nb":1,"a":[["animal-house-envo-00003040.html","animal house"],["organic-waste-material-envo-00002873.html","organic waste material"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["TED%3AAF-A0A0R2GUF0-F1-model_v4_TED01","TED novel fold AF-A0A0R2GUF0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1501","l":"Clostridium pasteurianum","na":1,"nb":4,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["Pfam%3APF22609","Iron hydrogenase 1-like, iron-sulfur centre-binding domain"],["Pfam%3APF09582","Iron only nitrogenase protein AnfO (AnfO_nitrog)"],["PROSITE%3APS00746","NifH/frxC family signature 1"],["PROSITE%3APS00699","Nitrogenases component 1 alpha and beta subunits signature 1"]]},{"id":"NCBITaxon:152142","l":"Mycolicibacterium holsaticum","na":4,"nb":1,"a":[["fibroblast-bto-0000452.html","fibroblast"],["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["kidney-bto-0000671.html","kidney"],["spleen-bto-0001281.html","spleen"]],"b":[["TED%3AAF-A0A1E3RVW1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E3RVW1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:160492","l":"Xylella fastidiosa (strain 9a5c)","na":1,"nb":4,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["Pfam%3APF21142","Bacterial alpha-2 macroglobulin MG2 domain"],["Pfam%3APF04273","Beta-lactamase hydrolase-like protein, phosphatase-like domain"],["Pfam%3APF17970","Bacterial Alpha-2-macroglobulin MG1 domain"],["Pfam%3APF20398","Family of unknown function (DUF6691)"]]},{"id":"NCBITaxon:1622","l":"Ligilactobacillus murinus","na":4,"nb":1,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"],["animal-litter-envo-00002191.html","animal litter"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["TED%3AAF-A0A4S2E8S9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4S2E8S9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:163","l":"Treponema bryantii","na":4,"nb":1,"a":[["stomach-bto-0001307.html","stomach"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["intestine-environment-envo-2100002.html","intestine environment"],["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["TED%3AAF-A0A1I3JLL1-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A1I3JLL1-F1-model_v4_TED05"]]},{"id":"NCBITaxon:1710","l":"Cellulosimicrobium cellulans","na":4,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"],["oil-spill-envo-00002061.html","oil spill"],["peat-soil-envo-00005774.html","peat soil"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["Pfam%3APF16483","Beta-1,3-glucanase"]]},{"id":"NCBITaxon:1712410","l":"Thermanaerosceptrum fracticalcis","na":4,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["ocean-trench-envo-00000275.html","ocean trench"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["trough-envo-00000499.html","trough"]],"b":[["TED%3AAF-A0A7G6E021-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7G6E021-F1-model_v4_TED02"]]},{"id":"NCBITaxon:178306","l":"","na":1,"nb":4,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF09171","N-glycosylase/DNA lyase"],["Pfam%3APF10432","Bacterial phospho-glucose isomerase C-terminal SIS domain"],["MCSA%3A736","mannose-6-phosphate isomerase"],["TED%3AAF-Q8ZWY1-F1-model_v4_TED04","TED novel fold AF-Q8ZWY1-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1871086","l":"Brevundimonas sp.","na":1,"nb":4,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["TED%3AAF-A0A2W6RYY6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2W6RYY6-F1-model_v4_TED03"],["TED%3AAF-A0A326KNM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A326KNM4-F1-model_v4_TED01"],["TED%3AAF-A0A521NPA0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521NPA0-F1-model_v4_TED01"],["TED%3AAF-A0A519PPD7-F1-model_v4_TED01","TED novel fold AF-A0A519PPD7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1930","l":"Streptomyces scabiei","na":4,"nb":1,"a":[["a10-cell-bto-0002196.html","A10 cell"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["TED%3AAF-A0A086GLG9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A086GLG9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:207559","l":"Oleidesulfovibrio alaskensis (strain ATCC BAA-1058 / DSM 17464 / G20)","na":1,"nb":4,"a":[["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["Pfam%3APF13353","4Fe-4S single cluster domain"],["Pfam%3APF01228","Glycine radical"],["PROSITE%3APS00850","Glycine radical domain signature"],["PROSITE%3APS01087","Radical activating enzymes signature"]]},{"id":"NCBITaxon:2209","l":"Methanosarcina mazei","na":4,"nb":1,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["sludge-envo-00002044.html","sludge"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["TED%3AAF-A0A0F8CQX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F8CQX7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:224915","l":"Buchnera aphidicola subsp. Baizongia pistaciae (strain Bp)","na":1,"nb":4,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Pfam%3APF26016","Exonuclease I C-terminal domain"],["Pfam%3APF08411","Exonuclease I SH3-like domain"],["Pfam%3APF09849","Uncharacterized protein conserved in bacteria (DUF2076)"],["Pfam%3APF06481","COX Aromatic Rich Motif"]]},{"id":"NCBITaxon:2283","l":"Acidianus ambivalens","na":1,"nb":4,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["Pfam%3APF07680","TQO small subunit DoxA"],["Pfam%3APF04173","TQO small subunit DoxD"],["MCSA%3A320","sulfide:quinone oxidoreductase"],["TED%3AAF-O57695-F1-model_v4_TED01","TED highly-symmetric fold AF-O57695-F1-model_v4_TED01"]]},{"id":"NCBITaxon:228410","l":"Nitrosomonas europaea ATCC 19718","na":1,"nb":4,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["Pfam%3APF02461","Ammonia monooxygenase"],["Pfam%3APF13435","Cytochrome c554 and c-prime"],["MCSA%3A581","hydroxylamine oxidase"],["TED%3AAF-Q82SR8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q82SR8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:269796","l":"Rhodospirillum rubrum (strain ATCC 11170 / ATH 1.1.1 / DSM 467 / LMG 4362 / NCIMB 8255 / S1)","na":1,"nb":4,"a":[["joint-bto-0001686.html","joint"]],"b":[["Pfam%3APF24931","ACR9-like, ACT-like domain"],["Pfam%3APF20543","N2-fixation sustaining protein CowN"],["Pfam%3APF22277","EncFtn-like"],["TED%3AAF-Q2RML2-F1-model_v4_TED01","TED highly-symmetric fold AF-Q2RML2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:272563","l":"Clostridioides difficile (strain 630)","na":1,"nb":4,"a":[["central-nervous-system-bto-0000227.html","central nervous system"]],"b":[["Pfam%3APF07737","Anthrax toxin lethal factor, N- and C-terminal domain"],["Pfam%3APF11155","Domain of unknown function (DUF2935)"],["Pfam%3APF06249","Ethanolamine utilisation protein EutQ"],["Pfam%3APF12544","Lysine-2,3-aminomutase"]]},{"id":"NCBITaxon:272620","l":"Klebsiella pneumoniae subsp. pneumoniae (strain ATCC 700721 / MGH 78578)","na":1,"nb":4,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Pfam%3APF04336","Acyl carrier protein phosphodiesterase"],["Pfam%3APF17948","DnaT DNA-binding domain"],["PROSITE%3APS00839","Uroporphyrin-III C-methyltransferase signature 1"],["PROSITE%3APS00840","Uroporphyrin-III C-methyltransferase signature 2"]]},{"id":"NCBITaxon:28450","l":"Burkholderia pseudomallei","na":1,"nb":4,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"]],"b":[["Pfam%3APF18664","CdiA C-terminal tRNase domain"],["Pfam%3APF12106","Colicin E5 ribonuclease domain"],["Pfam%3APF11480","Colicin-E5 Imm protein"],["Pfam%3APF13332","Hemagglutinin repeat"]]},{"id":"NCBITaxon:29313","l":"Mycobacterium shimoidei","na":4,"nb":1,"a":[["fibroblast-bto-0000452.html","fibroblast"],["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["kidney-bto-0000671.html","kidney"],["spleen-bto-0001281.html","spleen"]],"b":[["TED%3AAF-A0A1E3TGG0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1E3TGG0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:29345","l":"Sedimentibacter hydroxybenzoicus","na":4,"nb":1,"a":[["mud-envo-01000001.html","mud"],["oil-spill-envo-00002061.html","oil spill"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["Pfam%3APF26358","EcdD/BsdD phenolic detoxification"]]},{"id":"NCBITaxon:29494","l":"Vibrio furnissii","na":1,"nb":4,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["Pfam%3APF17957","Bacterial Ig domain"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"],["Pfam%3APF02839","Carbohydrate-binding module family 5/12"],["Pfam%3APF06483","Chitinase C"]]},{"id":"NCBITaxon:301","l":"Pseudomonas oleovorans","na":1,"nb":4,"a":[["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["PROSITE%3APS00202","Rubredoxin signature"],["TED%3AAF-A0A2W5VSG0-F1-model_v4_TED02","TED novel fold AF-A0A2W5VSG0-F1-model_v4_TED02"],["TED%3AAF-A0A379JMN0-F1-model_v4_TED01","TED novel fold AF-A0A379JMN0-F1-model_v4_TED01"],["TED%3AAF-A0A379PLI0-F1-model_v4_TED03","TED novel fold AF-A0A379PLI0-F1-model_v4_TED03"]]},{"id":"NCBITaxon:313596","l":"Robiginitalea biformata HTCC2501","na":4,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"],["small-river-biome-envo-00000890.html","small river biome"],["lagoon-envo-00000038.html","lagoon"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["IEDB%3A126829","epitope PLAKGLFHK"]]},{"id":"NCBITaxon:324057","l":"Paenibacillus sp. JDR-2","na":4,"nb":1,"a":[["vasculature-uberon-0002049.html","vasculature"],["wood-envo-00002040.html","wood"],["part-of-plant-habitatmech-madin-25325947e2.html","part of plant"],["village-biome-envo-01000246.html","village biome"]],"b":[["Pfam%3APF06452","Carbohydrate family 9 binding domain-like"]]},{"id":"NCBITaxon:326423","l":"Bacillus velezensis FZB42","na":1,"nb":4,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["Pfam%3APF21607","[Acyl-carrier-protein] S-malonyltransferase, inserted helical domain"],["Pfam%3APF21996","Histidyl-tRNA synthetase HisZ, C-terminal domain"],["Pfam%3APF07293","Protein of unknown function (DUF1450)"],["Pfam%3APF12227","Protein of unknown function (DUF3603)"]]},{"id":"NCBITaxon:391","l":"Rhizobium sp.","na":4,"nb":1,"a":[["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["paddy-ricefield-habitatmech-bacdive-6e3154acd8.html","Paddy-Ricefield"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["TED%3AAF-A0A353G134-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A353G134-F1-model_v4_TED01"]]},{"id":"NCBITaxon:410358","l":"Methanocorpusculum labreanum (strain ATCC 43576 / DSM 4855 / Z)","na":1,"nb":4,"a":[["joint-bto-0001686.html","joint"]],"b":[["Pfam%3APF27030","AbpE bacteria"],["Pfam%3APF01864","CDP-archaeol synthase"],["Pfam%3APF01891","Cobalt uptake substrate-specific transmembrane region"],["TED%3AAF-A2SPH3-F1-model_v4_TED02","TED highly-symmetric fold AF-A2SPH3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:43","l":"Cystobacter fuscus","na":1,"nb":4,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"]],"b":[["TED%3AAF-A0A250J1A4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J1A4-F1-model_v4_TED01"],["TED%3AAF-A0A250J4G5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J4G5-F1-model_v4_TED01"],["TED%3AAF-A0A250J8W0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J8W0-F1-model_v4_TED01"],["TED%3AAF-A0A250J3K5-F1-model_v4_TED03","TED novel fold AF-A0A250J3K5-F1-model_v4_TED03"]]},{"id":"NCBITaxon:452863","l":"Pseudarthrobacter chlorophenolicus (strain ATCC 700700 / DSM 12829 / CIP 107037 / JCM 12360 / KCTC 9906 / NCIMB 13794 / A6)","na":1,"nb":4,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["TED%3AAF-B8HI43-F1-model_v4_TED02","TED highly-symmetric fold AF-B8HI43-F1-model_v4_TED02"],["TED%3AAF-B8HIA6-F1-model_v4_TED01","TED highly-symmetric fold AF-B8HIA6-F1-model_v4_TED01"],["TED%3AAF-B8HIQ6-F1-model_v4_TED02","TED highly-symmetric fold AF-B8HIQ6-F1-model_v4_TED02"],["TED%3AAF-B8HHK3-F1-model_v4_TED01","TED novel fold AF-B8HHK3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:46245","l":"Drosophila pseudoobscura pseudoobscura","na":1,"nb":4,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"]],"b":[["Pfam%3APF23724","Caspase-8, second domain"],["Pfam%3APF23725","Caspase-8, N-terminal domain"],["Pfam%3APF22123","Exuperantia RNAse H-like domain"],["Pfam%3APF23757","Insect HPS5 TPR domain"]]},{"id":"NCBITaxon:485913","l":"Ktedonobacter racemifer DSM 44963","na":1,"nb":4,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"]],"b":[["TED%3AAF-D6U145-F1-model_v4_TED01","TED highly-symmetric fold AF-D6U145-F1-model_v4_TED01"],["TED%3AAF-D6U380-F1-model_v4_TED01","TED highly-symmetric fold AF-D6U380-F1-model_v4_TED01"],["TED%3AAF-D6TNQ7-F1-model_v4_TED02","TED novel fold AF-D6TNQ7-F1-model_v4_TED02"],["TED%3AAF-D6U8N4-F1-model_v4_TED02","TED novel fold AF-D6U8N4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:512","l":"Alcaligenes sp","na":1,"nb":4,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["Pfam%3APF26354","N,N-dimethylformamidase alpha subunit"],["Pfam%3APF20254","N,N-dimethylformamidase beta subunit-like, C-terminal"],["Pfam%3APF11606","Family 31 carbohydrate binding protein"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":1,"nb":4,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"],["PROSITE%3APS00896","LacY family proton/sugar symporters signature 1"],["PROSITE%3APS00897","LacY family proton/sugar symporters signature 2"],["MCSA%3A494","propanediol dehydratase"]]},{"id":"NCBITaxon:575540","l":"Isosphaera pallida ATCC 43644","na":4,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["agricultural-soil-envo-00002259.html","agricultural soil"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-E8R507-F1-model_v4_TED01","TED highly-symmetric fold AF-E8R507-F1-model_v4_TED01"]]},{"id":"NCBITaxon:6334","l":"","na":4,"nb":1,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"],["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"],["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["IEDB%3A119499","epitope MTFSVPIS"]]},{"id":"NCBITaxon:644281","l":"Methanocaldococcus sp. FS406-22","na":4,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"],["volcano-envo-00000247.html","volcano"]],"b":[["TED%3AAF-D3S6J5-F1-model_v4_TED01","TED highly-symmetric fold AF-D3S6J5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":1,"nb":4,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["PROSITE%3APS00949","Autoinducer synthase family signature"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"],["PROSITE%3APS00607","cAMP phosphodiesterases class-II signature"],["TED%3AAF-A0A844NWZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A844NWZ1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:715","l":"Actinobacillus pleuropneumoniae","na":1,"nb":4,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["Pfam%3APF26002","AprE-like, beta-barrel domain"],["Pfam%3APF02794","RTX toxin acyltransferase family"],["IEDB%3A124022","epitope DLYRMYSRY"],["PROSITE%3APS00543","HlyD family secretion proteins signature"]]},{"id":"NCBITaxon:7244","l":"Drosophila virilis","na":1,"nb":4,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"]],"b":[["Pfam%3APF14786","Tube Death domain"],["Pfam%3APF05836","Chorion protein S16"],["Pfam%3APF13428","Tetratricopeptide repeat"],["TED%3AAF-B4LEB1-F1-model_v4_TED02","TED novel fold AF-B4LEB1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:731","l":"Histophilus somni","na":4,"nb":1,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["IEDB%3A231112","epitope KSLQTTRRF"]]},{"id":"NCBITaxon:888845","l":"Minicystis rosea","na":1,"nb":4,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["TED%3AAF-A0A1L6LHU6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6LHU6-F1-model_v4_TED01"],["TED%3AAF-A0A1L6LWQ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6LWQ0-F1-model_v4_TED01"],["TED%3AAF-A0A1L6L181-F1-model_v4_TED02","TED novel fold AF-A0A1L6L181-F1-model_v4_TED02"],["TED%3AAF-A0A1L6LWI8-F1-model_v4_TED02","TED novel fold AF-A0A1L6LWI8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:935293","l":"Yersinia entomophaga","na":1,"nb":4,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["Pfam%3APF05785","Rho-activating domain of cytotoxic necrotizing factor"],["Pfam%3APF20220","ABC toxin N-terminal region"],["Pfam%3APF18413","Neuraminidase-like domain"],["Pfam%3APF12256","Insecticide toxin TcdB middle/N-terminal region"]]},{"id":"UBERON:0001045","l":"","na":4,"nb":1,"a":[["midgut-habitatmech-gold-5c1b0d44e2.html","Midgut"],["midgut-habitatmech-gold-31577394a0.html","Midgut"],["midgut-habitatmech-gold-67c565f695.html","Midgut"],["midgut-habitatmech-gold-0307474089.html","Midgut"]],"b":[["GO%3A0007494","midgut development"]]},{"id":"UBERON:0001836","l":"","na":4,"nb":1,"a":[["saliva-habitatmech-gold-4c19ae6894.html","Saliva"],["saliva-habitatmech-gold-1e04aaebba.html","Saliva"],["saliva-habitatmech-gold-68875fbeda.html","Saliva"],["saliva-habitatmech-gold-a747c6ab38.html","Saliva"]],"b":[["GO%3A0046541","saliva secretion"]]},{"id":"NCBITaxon:104102","l":"Acetobacter tropicalis","na":3,"nb":1,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"],["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["IEDB%3A225943","epitope ALMFSALAEGETR"]]},{"id":"NCBITaxon:105841","l":"Anaerostipes caccae","na":3,"nb":1,"a":[["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["emulsion-envo-00010506.html","emulsion"],["organic-feature-envo-01000159.html","organic feature"]],"b":[["TED%3AAF-A0A6N2WKG2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N2WKG2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1090322","l":"Methanolobus tindarius DSM 2278","na":1,"nb":3,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["TED%3AAF-W9DQM0-F1-model_v4_TED03","TED highly-symmetric fold AF-W9DQM0-F1-model_v4_TED03"],["TED%3AAF-W9DMY0-F1-model_v4_TED01","TED novel fold AF-W9DMY0-F1-model_v4_TED01"],["TED%3AAF-W9DNB8-F1-model_v4_TED01","TED novel fold AF-W9DNB8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1120927","l":"Acinetobacter tandoii DSM 14970 = CIP 107469","na":3,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["TED%3AAF-R9BEH0-F1-model_v4_TED04","TED highly-symmetric fold AF-R9BEH0-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1120928","l":"Acinetobacter tjernbergiae DSM 14971 = CIP 107465","na":3,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["TED%3AAF-V2W927-F1-model_v4_TED01","TED highly-symmetric fold AF-V2W927-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121391","l":"Desulfacinum infernum DSM 9756","na":3,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["TED%3AAF-A0A1M5CF65-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M5CF65-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121950","l":"Hespellia stercorisuis DSM 15480","na":3,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["fecal-environment-envo-01001029.html","fecal environment"],["waste-material-envo-00002264.html","waste material"]],"b":[["TED%3AAF-A0A1M6UMY1-F1-model_v4_TED01","TED novel fold AF-A0A1M6UMY1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1122133","l":"Kaistia soli DSM 19436","na":3,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["wetland-area-envo-00000043.html","wetland area"]],"b":[["TED%3AAF-A0A1M5DFE2-F1-model_v4_TED01","TED novel fold AF-A0A1M5DFE2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1123012","l":"Pseudobutyrivibrio xylanivorans DSM 14809","na":3,"nb":1,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"],["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"]],"b":[["TED%3AAF-A0A1M6KN30-F1-model_v4_TED01","TED novel fold AF-A0A1M6KN30-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1125630","l":"Klebsiella pneumoniae subsp. pneumoniae (strain HS11286)","na":1,"nb":3,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["Pfam%3APF16527","Two-component sensor protein CpxA, periplasmic domain"],["Pfam%3APF03883","Peroxide stress protein YaaA"],["PROSITE%3APS01081","TetR-type HTH domain signature"]]},{"id":"NCBITaxon:117681","l":"Pseudomonas gingeri","na":3,"nb":1,"a":[["lake-envo-00000020.html","lake"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"]],"b":[["TED%3AAF-A0A7Y7X9U2-F1-model_v4_TED01","TED novel fold AF-A0A7Y7X9U2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:119602","l":"Streptococcus dysgalactiae subsp. equisimilis","na":3,"nb":1,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["animal-manure-envo-00003031.html","animal manure"]],"b":[["TED%3AAF-A0A5M4CWR2-F1-model_v4_TED02","TED novel fold AF-A0A5M4CWR2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1267423","l":"Roseivirga pacifica","na":1,"nb":3,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["TED%3AAF-A0A1I0MEP5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I0MEP5-F1-model_v4_TED02"],["TED%3AAF-A0A1I0RG98-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I0RG98-F1-model_v4_TED01"],["TED%3AAF-A0A4D7JNA0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4D7JNA0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1295009","l":"Methanomassiliicoccus intestinalis (strain Issoire-Mx1)","na":1,"nb":3,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["TED%3AAF-R9T6Q3-F1-model_v4_TED04","TED highly-symmetric fold AF-R9T6Q3-F1-model_v4_TED04"],["TED%3AAF-R9TAZ5-F1-model_v4_TED01","TED highly-symmetric fold AF-R9TAZ5-F1-model_v4_TED01"],["TED%3AAF-R9T6T6-F1-model_v4_TED01","TED novel fold AF-R9T6T6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1298856","l":"Sphingomonas sp. URHD0007","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["TED%3AAF-A0A2U1FWJ9-F1-model_v4_TED03","TED novel fold AF-A0A2U1FWJ9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1329250","l":"Weissella oryzae (strain DSM 25784 / JCM 18191 / LMG 30913 / SG25)","na":1,"nb":3,"a":[["caryopsis-bto-0000208.html","caryopsis"]],"b":[["Pfam%3APF26322","Botulinum-like neurotoxin Wo, C-terminal beta-trefoil domain"],["Pfam%3APF26321","Botulinum-like neurotoxin Wo, concanavalin A-like domain"],["TED%3AAF-A0A069CU70-F1-model_v4_TED02","TED novel fold AF-A0A069CU70-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1353","l":"Enterococcus gallinarum","na":3,"nb":1,"a":[["foregut-bto-0000507.html","foregut"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["Pfam%3APF01757","Acyltransferase domain"]]},{"id":"NCBITaxon:13616","l":"","na":1,"nb":3,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["IEDB%3A138847","epitope FLLPILSQIYT"],["IEDB%3A138872","epitope LEYFQFVKKLL"],["IEDB%3A138944","epitope YSLEYFQFVKK"]]},{"id":"NCBITaxon:137591","l":"Weissella cibaria","na":3,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["epithelial-cell-bto-0000414.html","epithelial cell"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["TED%3AAF-A0A0D1LFQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D1LFQ3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:137722","l":"Azospirillum sp. B510","na":3,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["TED%3AAF-D3P3H1-F1-model_v4_TED02","TED highly-symmetric fold AF-D3P3H1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1503","l":"Gottschalkia purinilytica","na":3,"nb":1,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"],["sludge-envo-00002044.html","sludge"]],"b":[["Pfam%3APF07355","Glycine/sarcosine/betaine reductase selenoprotein B (GRDB)"]]},{"id":"NCBITaxon:1534","l":"Clostridium kluyveri","na":3,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"],["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"]],"b":[["TED%3AAF-A0A1L5FEG9-F1-model_v4_TED01","TED novel fold AF-A0A1L5FEG9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1552123","l":"Listeria booriae","na":1,"nb":3,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["TED%3AAF-A0A7X0TLR3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X0TLR3-F1-model_v4_TED01"],["TED%3AAF-A0A841XX79-F1-model_v4_TED03","TED novel fold AF-A0A841XX79-F1-model_v4_TED03"],["TED%3AAF-A0A842AXH7-F1-model_v4_TED01","TED novel fold AF-A0A842AXH7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:158","l":"Treponema denticola","na":3,"nb":1,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["archeological-site-envo-00000564.html","archeological site"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["TED%3AAF-A0A125RME2-F1-model_v4_TED02","TED novel fold AF-A0A125RME2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1588","l":"Lentilactobacillus hilgardii","na":3,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["TED%3AAF-A0A6G9Q2H1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6G9Q2H1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:169760","l":"Paenibacillus stellifer","na":3,"nb":1,"a":[["factory-envo-01000536.html","factory"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["TED%3AAF-A0A089LNP8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A089LNP8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1724","l":"Corynebacterium renale","na":3,"nb":1,"a":[["water-body-envo-00000063.html","water body"],["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["TED%3AAF-A0A2A9DLH1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A9DLH1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":1,"nb":3,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["Pfam%3APF03069","Acetamidase/Formamidase family"],["PROSITE%3APS00818","Dps protein family signature 1"],["Pfam%3APF13810","Domain of unknown function (DUF4185)"]]},{"id":"NCBITaxon:1831","l":"","na":1,"nb":3,"a":[["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["Pfam%3APF14525","AraC-binding-like domain"],["Pfam%3APF01613","Flavin reductase like domain"],["TED%3AAF-A0A7X7SF64-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X7SF64-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1872119","l":"Acidobacterium sp.","na":3,"nb":1,"a":[["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"],["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["TED%3AAF-A0A2G4JIL1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2G4JIL1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1872578","l":"Aquabacterium sp.","na":1,"nb":3,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["TED%3AAF-A0A521ZRM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521ZRM4-F1-model_v4_TED01"],["TED%3AAF-A0A521ZL87-F1-model_v4_TED04","TED novel fold AF-A0A521ZL87-F1-model_v4_TED04"],["TED%3AAF-A0A5C8BIL8-F1-model_v4_TED02","TED novel fold AF-A0A5C8BIL8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1874361","l":"Idiomarina sp.","na":3,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"],["saline-water-body-envo-01001319.html","saline water body"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["TED%3AAF-A0A2E9H521-F1-model_v4_TED01","TED novel fold AF-A0A2E9H521-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1882831","l":"Verrucomicrobium sp. GAS474","na":1,"nb":3,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["TED%3AAF-A0A1H2GE34-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H2GE34-F1-model_v4_TED01"],["TED%3AAF-A0A1H2GVJ7-F1-model_v4_TED04","TED novel fold AF-A0A1H2GVJ7-F1-model_v4_TED04"],["TED%3AAF-A0A1H2HH15-F1-model_v4_TED02","TED novel fold AF-A0A1H2HH15-F1-model_v4_TED02"]]},{"id":"NCBITaxon:188906","l":"Jannaschia helgolandensis","na":3,"nb":1,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["TED%3AAF-A0A1H7MIC2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H7MIC2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:188908","l":"Oleispira antarctica","na":3,"nb":1,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A1Y5HYG0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y5HYG0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:190655","l":"Legionella busanensis","na":1,"nb":3,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["TED%3AAF-A0A378JRR1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A378JRR1-F1-model_v4_TED01"],["TED%3AAF-A0A378JH21-F1-model_v4_TED02","TED novel fold AF-A0A378JH21-F1-model_v4_TED02"],["TED%3AAF-A0A378JIY5-F1-model_v4_TED01","TED novel fold AF-A0A378JIY5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1916082","l":"Alteromonadaceae bacterium","na":1,"nb":3,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2E5MKL5-F1-model_v4_TED03","TED novel fold AF-A0A2E5MKL5-F1-model_v4_TED03"],["TED%3AAF-A0A7Y6ZTD4-F1-model_v4_TED02","TED novel fold AF-A0A7Y6ZTD4-F1-model_v4_TED02"],["TED%3AAF-A0A7Y6ZTV9-F1-model_v4_TED01","TED novel fold AF-A0A7Y6ZTV9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1970199","l":"Sorangiineae bacterium NIC37A 2","na":1,"nb":3,"a":[["compost-envo-00002170.html","compost"]],"b":[["TED%3AAF-A0A1W9QHW9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W9QHW9-F1-model_v4_TED01"],["TED%3AAF-A0A1W9Q7E2-F1-model_v4_TED02","TED novel fold AF-A0A1W9Q7E2-F1-model_v4_TED02"],["TED%3AAF-A0A1W9QHC1-F1-model_v4_TED04","TED novel fold AF-A0A1W9QHC1-F1-model_v4_TED04"]]},{"id":"NCBITaxon:198804","l":"Buchnera aphidicola subsp. Schizaphis graminum (strain Sg)","na":1,"nb":3,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Pfam%3APF09849","Uncharacterized protein conserved in bacteria (DUF2076)"],["Pfam%3APF09976","Tetratricopeptide repeat-like domain"],["Pfam%3APF13371","Tetratricopeptide repeat"]]},{"id":"NCBITaxon:199","l":"Campylobacter concisus","na":1,"nb":3,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["TED%3AAF-A0A7S9RBE4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S9RBE4-F1-model_v4_TED03"],["TED%3AAF-A0A1Y5MKZ8-F1-model_v4_TED01","TED novel fold AF-A0A1Y5MKZ8-F1-model_v4_TED01"],["TED%3AAF-A0A7S9X6B9-F1-model_v4_TED01","TED novel fold AF-A0A7S9X6B9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:216591","l":"Burkholderia cenocepacia J2315","na":1,"nb":3,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["IEDB%3A230761","epitope FAKPAGTPM"],["IEDB%3A34250","epitope KVVRVDKL"],["Pfam%3APF04199","Putative cyclase"]]},{"id":"NCBITaxon:216816","l":"Bifidobacterium longum","na":3,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"],["egg-food-product-foodon-00001274.html","egg food product"],["juvenile-bto-0002168.html","juvenile"]],"b":[["TED%3AAF-A0A413ACI9-F1-model_v4_TED01","TED novel fold AF-A0A413ACI9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:232991","l":"","na":3,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"],["desert-area-envo-00000097.html","desert area"],["sand-envo-01000017.html","sand"]],"b":[["TED%3AAF-A0A433V699-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A433V699-F1-model_v4_TED01"]]},{"id":"NCBITaxon:235279","l":"Helicobacter hepaticus (strain ATCC 51449 / 3B1)","na":1,"nb":3,"a":[["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"]],"b":[["Pfam%3APF13673","Acetyltransferase (GNAT) domain"],["Pfam%3APF03498","Cytolethal distending toxin A/C domain"],["Pfam%3APF03352","Methyladenine glycosylase"]]},{"id":"NCBITaxon:2371","l":"Xylella fastidiosa","na":3,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"],["water-scum-envo-00005794.html","water scum"]],"b":[["TED%3AAF-A0A1L2B4G6-F1-model_v4_TED02","TED novel fold AF-A0A1L2B4G6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:24","l":"Shewanella putrefaciens","na":3,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"],["foot-bto-0000476.html","foot"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["IEDB%3A127208","epitope THEILWPSF"]]},{"id":"NCBITaxon:243243","l":"Mycobacterium avium (strain 104)","na":1,"nb":3,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF13740","ACT domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03710","Glutamate-ammonia ligase adenylyltransferase"]]},{"id":"NCBITaxon:256","l":"Myroides odoratus","na":3,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"]],"b":[["TED%3AAF-A0A378RV66-F1-model_v4_TED01","TED novel fold AF-A0A378RV66-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28090","l":"Acinetobacter lwoffii","na":3,"nb":1,"a":[["nectar-bto-0000537.html","nectar"],["pseudostem-bto-0005992.html","pseudostem"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["TED%3AAF-A0A7S9AAV2-F1-model_v4_TED01","TED novel fold AF-A0A7S9AAV2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28095","l":"Burkholderia gladioli","na":3,"nb":1,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["MCSA%3A466","fusarinine-C ornithinesterase"]]},{"id":"NCBITaxon:28111","l":"Bacteroides eggerthii","na":1,"nb":3,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["TED%3AAF-A0A380YHG6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A380YHG6-F1-model_v4_TED01"],["TED%3AAF-A0A380YP67-F1-model_v4_TED01","TED novel fold AF-A0A380YP67-F1-model_v4_TED01"],["TED%3AAF-A0A414M8K0-F1-model_v4_TED04","TED novel fold AF-A0A414M8K0-F1-model_v4_TED04"]]},{"id":"NCBITaxon:290338","l":"Citrobacter koseri (strain ATCC BAA-895 / CDC 4225-83 / SGSC4696)","na":1,"nb":3,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Pfam%3APF03783","Curli production assembly/transport component CsgG"],["Pfam%3APF04269","Protein of unknown function, DUF440"],["Pfam%3APF17874","MalT-like TPR region"]]},{"id":"NCBITaxon:29466","l":"Veillonella parvula","na":3,"nb":1,"a":[["dental-plaque-bto-0000338.html","dental plaque"],["juvenile-bto-0002168.html","juvenile"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["TED%3AAF-A0A134BYG5-F1-model_v4_TED01","TED novel fold AF-A0A134BYG5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:297246","l":"Legionella pneumophila str. Paris","na":3,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"],["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["Pfam%3APF03445","Putative nucleotidyltransferase DUF294"]]},{"id":"NCBITaxon:312309","l":"Aliivibrio fischeri (strain ATCC 700601 / ES114)","na":1,"nb":3,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["Pfam%3APF06610","L-alanine exporter"],["Pfam%3APF00765","Autoinducer synthase"],["PROSITE%3APS00949","Autoinducer synthase family signature"]]},{"id":"NCBITaxon:313589","l":"Janibacter sp. HTCC2649","na":3,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["bulk-soil-envo-00005802.html","bulk soil"],["orchard-envo-00000115.html","orchard"]],"b":[["TED%3AAF-A3TKC7-F1-model_v4_TED01","TED novel fold AF-A3TKC7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:313595","l":"Psychroflexus torquis ATCC 700755","na":3,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["coral-reef-envo-00000150.html","coral reef"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["TED%3AAF-K4IBR2-F1-model_v4_TED01","TED novel fold AF-K4IBR2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:315456","l":"Rickettsia felis (strain ATCC VR-1525 / URRWXCal2)","na":1,"nb":3,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["Pfam%3APF18324","Bacterial isocitrate dehydrogenase, C-terminal domain"],["Pfam%3APF11019","Protein of unknown function (DUF2608)"],["Pfam%3APF22203","Surface cell antigen Sca2 helical repeat"]]},{"id":"NCBITaxon:317655","l":"Sphingopyxis alaskensis RB2256","na":3,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["environmental-material-envo-00010483.html","environmental material"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["Pfam%3APF10755","Protein of unknown function (DUF2585)"]]},{"id":"NCBITaxon:321967","l":"","na":1,"nb":3,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["Pfam%3APF11975","Family 4 glycosyl hydrolase C-terminal domain"],["Pfam%3APF02056","Family 4 glycosyl hydrolase"],["PROSITE%3APS01324","Glycosyl hydrolases family 4 signature"]]},{"id":"NCBITaxon:322710","l":"","na":1,"nb":3,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["IEDB%3A124004","epitope DGLSSVGGY"],["proteintraitsmech%3AELIFE109154_Orn_monoox","Metallophore-associated ornithine N5-monooxygenase family"],["proteintraitsmech%3AELIFE109154_PvdP","Pyoverdine chromophore maturation tyrosinase family"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":1,"nb":3,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF22041","Glutathione S-transferase, C-terminal domain"],["Pfam%3APF08493","Aflatoxin regulatory protein"]]},{"id":"NCBITaxon:338966","l":"Pelobacter propionicus DSM 2379","na":1,"nb":3,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["IEDB%3A231786","epitope APALRQANI"],["IEDB%3A231848","epitope ELRRRLPLF"],["IEDB%3A231920","epitope GLMLAFEPK"]]},{"id":"NCBITaxon:33959","l":"Lactobacillus johnsonii","na":3,"nb":1,"a":[["animal-litter-envo-00002191.html","animal litter"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["Pfam%3APF13518","Helix-turn-helix domain"]]},{"id":"NCBITaxon:349124","l":"Halorhodospira halophila (strain DSM 244 / SL1)","na":1,"nb":3,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["Pfam%3APF02639","Uncharacterized BCR, YaiI/YqxD family COG1671"],["Pfam%3APF20543","N2-fixation sustaining protein CowN"],["Pfam%3APF07311","Dodecin"]]},{"id":"NCBITaxon:349741","l":"Akkermansia muciniphila (strain ATCC BAA-835 / DSM 22959 / JCM 33894 / BCRC 81048 / CCUG","na":1,"nb":3,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["Pfam%3APF23763","GLAA-B beta-barrel domain I"],["Pfam%3APF23764","GLAA-B beta-barrel domain II"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"]]},{"id":"NCBITaxon:351607","l":"","na":1,"nb":3,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["IEDB%3A232069","epitope LPPEFRAAV"],["IEDB%3A127440","epitope YIMKLHHLV"],["Pfam%3APF10647","Lipoprotein LpqB beta-propeller domain"]]},{"id":"NCBITaxon:357804","l":"Psychromonas ingrahamii (strain DSM 17664 / CCUG 51855 / 37)","na":1,"nb":3,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["Pfam%3APF27465","DNA-binding protein Fis N-terminal domain"],["Pfam%3APF04363","Protein of unknown function (DUF496)"],["Pfam%3APF18955","Domain of unknown function (DUF5698)"]]},{"id":"NCBITaxon:360807","l":"Roseburia inulinivorans","na":3,"nb":1,"a":[["pig-manure-envo-00003860.html","pig manure"],["tropical-envo-01000204.html","tropical"],["harbour-envo-00000463.html","harbour"]],"b":[["TED%3AAF-A0A173VWR5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A173VWR5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:367928","l":"Bifidobacterium adolescentis (strain ATCC 15703 / DSM 20083 / NCTC 11814 / E194a)","na":1,"nb":3,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["Pfam%3APF02156","Glycosyl hydrolase family 26"],["Pfam%3APF27512","LeuD_N"]]},{"id":"NCBITaxon:376686","l":"","na":1,"nb":3,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["Pfam%3APF17957","Bacterial Ig domain"],["Pfam%3APF24850","Bacillithiol biosynthesis BshC, C-terminal coiled-coil domain"],["Pfam%3APF14109","GldH lipoprotein"]]},{"id":"NCBITaxon:384616","l":"Pyrobaculum islandicum (strain DSM 4184 / JCM 9189 / GEO3)","na":1,"nb":3,"a":[["geothermal-power-plant-envo-00002215.html","geothermal power plant"]],"b":[["Pfam%3APF01941","S-adenosylmethionine synthetase (AdoMet synthetase)"],["Pfam%3APF11520","Chromatin protein Cren7"],["Pfam%3APF05167","Uncharacterised ACR (DUF711)"]]},{"id":"NCBITaxon:384676","l":"","na":1,"nb":3,"a":[["coelom-bto-0001707.html","coelom"]],"b":[["Pfam%3APF18063","Beta barrel Pore-forming domain"],["Pfam%3APF08548","Peptidase M10 serralysin C terminal"],["TED%3AAF-Q1I2P2-F1-model_v4_TED01","TED novel fold AF-Q1I2P2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:395494","l":"Gallionella capsiferriformans (strain ES-2)","na":1,"nb":3,"a":[["river-bed-envo-00000384.html","river bed"]],"b":[["IEDB%3A232283","epitope SLASLLVSL"],["TED%3AAF-D9SCL7-F1-model_v4_TED01","TED highly-symmetric fold AF-D9SCL7-F1-model_v4_TED01"],["TED%3AAF-D9SFM7-F1-model_v4_TED01","TED highly-symmetric fold AF-D9SFM7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:399599","l":"Shewanella baltica (strain OS195)","na":1,"nb":3,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["Pfam%3APF24860","FdhE, C-terminal domain"],["Pfam%3APF24859","FdhE, central domain"],["Pfam%3APF04216","FdhE, N-terminal"]]},{"id":"NCBITaxon:399739","l":"Ectopseudomonas mendocina (strain ymp)","na":1,"nb":3,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["Pfam%3APF22289","Dimethylamine monooxygenase subunit DmmA-like, C-terminal domain"],["Pfam%3APF04359","Protein of unknown function (DUF493)"],["Pfam%3APF11927","Haem-dependent oxidative N-demethylase, alpha subunit-like"]]},{"id":"NCBITaxon:400682","l":"Amphimedon queenslandica","na":1,"nb":3,"a":[["germ-cell-bto-0000535.html","germ cell"]],"b":[["TED%3AAF-A0A1X7UW69-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X7UW69-F1-model_v4_TED01"],["TED%3AAF-A0A1X7SZW3-F1-model_v4_TED01","TED novel fold AF-A0A1X7SZW3-F1-model_v4_TED01"],["TED%3AAF-A0A1X7UQD3-F1-model_v4_TED02","TED novel fold AF-A0A1X7UQD3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:401053","l":"Terriglobus saanensis SP1PR4","na":3,"nb":1,"a":[["bulk-soil-envo-00005802.html","bulk soil"],["forested-area-envo-00000111.html","forested area"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-E8UZX5-F1-model_v4_TED02","TED novel fold AF-E8UZX5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:406547","l":"Rubripirellula obstinata","na":1,"nb":3,"a":[["epibiont-habitatmech-bacdive-f4eb470a03.html","Epibiont"]],"b":[["TED%3AAF-A0A5B1CJC2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B1CJC2-F1-model_v4_TED01"],["TED%3AAF-A0A5B1CQ78-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B1CQ78-F1-model_v4_TED01"],["TED%3AAF-A0A5B1CIN8-F1-model_v4_TED02","TED novel fold AF-A0A5B1CIN8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:419665","l":"Methanococcus aeolicus (strain ATCC BAA-1280 / DSM 17508 / OCM 812 / Nankai-3)","na":1,"nb":3,"a":[["shoreline-envo-00000486.html","shoreline"]],"b":[["Pfam%3APF26548","Putative peptidyl-prolyl cis-trans isomerase domain"],["Pfam%3APF06787","FeGP cofactor biosynthesis protein HcgF"],["Pfam%3APF01941","S-adenosylmethionine synthetase (AdoMet synthetase)"]]},{"id":"NCBITaxon:438","l":"Acetobacter pasteurianus","na":3,"nb":1,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"],["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["TED%3AAF-A0A1A0CE09-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1A0CE09-F1-model_v4_TED01"]]},{"id":"NCBITaxon:439292","l":"Bacillus selenitireducens (strain ATCC 700615 / DSM 15326 / MLS10)","na":1,"nb":3,"a":[["anaerobic-mud-envo-00002133.html","anaerobic mud"]],"b":[["Pfam%3APF03633","Glycosyl hydrolase family 65, C-terminal domain"],["Pfam%3APF03636","Glycosyl hydrolase family 65, N-terminal domain"],["Pfam%3APF03632","Glycosyl hydrolase family 65 central catalytic domain"]]},{"id":"NCBITaxon:439495","l":"Pseudovibrio sp. JE062","na":3,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["germ-cell-bto-0000535.html","germ cell"],["desert-sand-envo-00005800.html","desert sand"]],"b":[["TED%3AAF-B6R9T4-F1-model_v4_TED01","TED highly-symmetric fold AF-B6R9T4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:444158","l":"Methanococcus maripaludis (strain C6 / ATCC BAA-1332)","na":1,"nb":3,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["Pfam%3APF06847","Archaeal Peptidase A24 C-terminus Type II"],["Pfam%3APF09888","Uncharacterized protein conserved in archaea (DUF2115)"],["Pfam%3APF05165","GTP cyclohydrolase III"]]},{"id":"NCBITaxon:446465","l":"Brachybacterium faecium DSM 4810","na":3,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["poultry-deep-litter-envo-00003908.html","poultry deep litter"],["village-biome-envo-01000246.html","village biome"]],"b":[["TED%3AAF-C7MEJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-C7MEJ8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:448385","l":"","na":1,"nb":3,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["TED%3AAF-A9FYP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A9FYP8-F1-model_v4_TED01"],["TED%3AAF-A9G932-F1-model_v4_TED01","TED highly-symmetric fold AF-A9G932-F1-model_v4_TED01"],["TED%3AAF-A9F9E5-F1-model_v4_TED01","TED novel fold AF-A9F9E5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:45634","l":"Streptococcus cristatus","na":1,"nb":3,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["Pfam%3APF03486","HI0933-like protein Rossmann domain"],["Pfam%3APF22780","HI0933-like protein barrel and H2TH domain"],["TED%3AAF-A0A139N090-F1-model_v4_TED01","TED novel fold AF-A0A139N090-F1-model_v4_TED01"]]},{"id":"NCBITaxon:469371","l":"Thermobispora bispora DSM 43833","na":3,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["TED%3AAF-D6Y8C2-F1-model_v4_TED02","TED novel fold AF-D6Y8C2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:479431","l":"Nakamurella multipartita DSM 44233","na":3,"nb":1,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["TED%3AAF-C8XHD0-F1-model_v4_TED02","TED novel fold AF-C8XHD0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:51663","l":"Pediococcus damnosus","na":3,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["blast-cell-bto-0000125.html","blast cell"]],"b":[["TED%3AAF-A0A0R2HKY5-F1-model_v4_TED01","TED novel fold AF-A0A0R2HKY5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:530564","l":"Pirellula staleyi DSM 6068","na":3,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["agricultural-soil-envo-00002259.html","agricultural soil"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-D2QXI3-F1-model_v4_TED05","TED novel fold AF-D2QXI3-F1-model_v4_TED05"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":1,"nb":3,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"],["TED%3AAF-A0A7H8I034-F1-model_v4_TED01","TED novel fold AF-A0A7H8I034-F1-model_v4_TED01"]]},{"id":"NCBITaxon:554155","l":"Arthroderma otae (strain ATCC MYA-4605 / CBS 113480)","na":1,"nb":3,"a":[["mountain-pass-envo-00000084.html","mountain pass"]],"b":[["Pfam%3APF13560","Helix-turn-helix domain"],["TED%3AAF-C5FU25-F1-model_v4_TED01","TED novel fold AF-C5FU25-F1-model_v4_TED01"],["TED%3AAF-C5FXD7-F1-model_v4_TED05","TED novel fold AF-C5FXD7-F1-model_v4_TED05"]]},{"id":"NCBITaxon:573064","l":"Methanocaldococcus fervens AG86","na":3,"nb":1,"a":[["inlet-envo-00000475.html","inlet"],["shoreline-envo-00000486.html","shoreline"],["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["Pfam%3APF02655","ATP-grasp domain"]]},{"id":"NCBITaxon:578458","l":"Schizophyllum commune (strain H4-8 / FGSC 9210)","na":1,"nb":3,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["TED%3AAF-D8PNC3-F1-model_v4_TED01","TED novel fold AF-D8PNC3-F1-model_v4_TED01"],["TED%3AAF-D8QDU6-F1-model_v4_TED02","TED novel fold AF-D8QDU6-F1-model_v4_TED02"],["TED%3AAF-D8QJK2-F1-model_v4_TED01","TED novel fold AF-D8QJK2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:584","l":"Proteus mirabilis","na":1,"nb":3,"a":[["salivary-gland-bto-0001203.html","salivary gland"]],"b":[["Pfam%3APF05280","Flagellar transcriptional activator (FlhC)"],["TED%3AAF-A0A1Z1SXV6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z1SXV6-F1-model_v4_TED01"],["TED%3AAF-A0A7U1CMJ9-F1-model_v4_TED01","TED novel fold AF-A0A7U1CMJ9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:588","l":"Providencia stuartii","na":1,"nb":3,"a":[["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["PROSITE%3APS01157","Class A bacterial acid phosphatases signature"]]},{"id":"NCBITaxon:644282","l":"Desulfarculus baarsii (strain ATCC 33931 / DSM 2075 / LMG 7858 / VKM B-1802 / 2st14)","na":1,"nb":3,"a":[["ditch-envo-00000037.html","ditch"]],"b":[["Pfam%3APF06397","Desulfoferrodoxin, N-terminal domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["TED%3AAF-E1QLH8-F1-model_v4_TED02","TED novel fold AF-E1QLH8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:658457","l":"Ectopseudomonas composti","na":3,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["TED%3AAF-A0A1I5P4N2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5P4N2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:666681","l":"Methylotenera versatilis 301","na":3,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["environmental-material-envo-00010483.html","environmental material"],["river-bed-envo-00000384.html","river bed"]],"b":[["TED%3AAF-D7DL14-F1-model_v4_TED01","TED novel fold AF-D7DL14-F1-model_v4_TED01"]]},{"id":"NCBITaxon:66711","l":"Escherichia phage AR1","na":1,"nb":3,"a":[["fiber-bto-0000450.html","fiber"]],"b":[["Pfam%3APF21721","Phage tail fibre adhesin Gp38 N-terminal domain"],["Pfam%3APF05268","Phage tail fibre adhesin Gp38"],["Pfam%3APF21446","Long-tail fiber proximal subunit, C-terminal, trimerization domain"]]},{"id":"NCBITaxon:688270","l":"Cellulophaga algicola (strain DSM 14237 / IC166 / ACAM 630)","na":1,"nb":3,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["TED%3AAF-E6XBJ1-F1-model_v4_TED01","TED highly-symmetric fold AF-E6XBJ1-F1-model_v4_TED01"],["TED%3AAF-E6X960-F1-model_v4_TED02","TED novel fold AF-E6X960-F1-model_v4_TED02"],["TED%3AAF-E6XEV2-F1-model_v4_TED02","TED novel fold AF-E6XEV2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:69293","l":"Gasterosteus aculeatus","na":3,"nb":1,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"],["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["TED%3AAF-G3Q6M8-F1-model_v4_TED01","TED novel fold AF-G3Q6M8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:7176","l":"Culex quinquefasciatus","na":1,"nb":3,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["TED%3AAF-B0W7X4-F1-model_v4_TED04","TED highly-symmetric fold AF-B0W7X4-F1-model_v4_TED04"],["TED%3AAF-B0WQL7-F1-model_v4_TED02","TED highly-symmetric fold AF-B0WQL7-F1-model_v4_TED02"],["TED%3AAF-B0XLK9-F1-model_v4_TED05","TED highly-symmetric fold AF-B0XLK9-F1-model_v4_TED05"]]},{"id":"NCBITaxon:729","l":"Haemophilus parainfluenzae","na":3,"nb":1,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"],["tropical-envo-01000204.html","tropical"]],"b":[["Pfam%3APF04480","Protein of unknown function (DUF559)"]]},{"id":"NCBITaxon:749414","l":"","na":1,"nb":3,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF14509","Glycosyl-hydrolase 97 C-terminal, oligomerisation"],["Pfam%3APF14508","Glycosyl-hydrolase 97 N-terminal"],["Pfam%3APF10566","Glycoside hydrolase 97"]]},{"id":"NCBITaxon:79880","l":"Shouchella clausii","na":1,"nb":3,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["Pfam%3APF13536","Putative multidrug resistance efflux transporter"],["Pfam%3APF10776","Protein of unknown function (DUF2600)"],["TED%3AAF-A0A268NXB1-F1-model_v4_TED01","TED novel fold AF-A0A268NXB1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:83655","l":"Leclercia adecarboxylata","na":3,"nb":1,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["TED%3AAF-A0A5B7XGB6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A5B7XGB6-F1-model_v4_TED04"]]},{"id":"NCBITaxon:886293","l":"Singulisphaera acidiphila (strain ATCC BAA-1392 / DSM 18658 / VKM B-2454 / MOB10)","na":1,"nb":3,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-L0DF60-F1-model_v4_TED01","TED highly-symmetric fold AF-L0DF60-F1-model_v4_TED01"],["TED%3AAF-L0DFV3-F1-model_v4_TED01","TED highly-symmetric fold AF-L0DFV3-F1-model_v4_TED01"],["TED%3AAF-L0DBJ5-F1-model_v4_TED02","TED novel fold AF-L0DBJ5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:91360","l":"Desulforhopalus singaporensis","na":3,"nb":1,"a":[["marsh-envo-00000035.html","marsh"],["road-envo-00000064.html","road"],["garden-envo-00000011.html","garden"]],"b":[["TED%3AAF-A0A1H0QB18-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H0QB18-F1-model_v4_TED01"]]},{"id":"NCBITaxon:9258","l":"Ornithorhynchus anatinus","na":1,"nb":3,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"]],"b":[["Pfam%3APF08131","Defensin-like peptide family"],["Pfam%3APF17858","Platypus intermediate defensin-like peptide"],["IEDB%3A138942","epitope YSLEYFQF"]]},{"id":"NCBITaxon:996","l":"Flavobacterium columnare","na":1,"nb":3,"a":[["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["TED%3AAF-A0A4Z0FEB3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Z0FEB3-F1-model_v4_TED02"],["TED%3AAF-A0A2N9P872-F1-model_v4_TED02","TED novel fold AF-A0A2N9P872-F1-model_v4_TED02"],["TED%3AAF-A0A2T4HIF9-F1-model_v4_TED03","TED novel fold AF-A0A2T4HIF9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1002340","l":"Leisingera sp. ANG1","na":2,"nb":1,"a":[["gland-bto-0000522.html","gland"],["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["TED%3AAF-A0A0B4EI55-F1-model_v4_TED01","TED novel fold AF-A0A0B4EI55-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1004304","l":"Hydrotalea sandarakina","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["island-envo-00000098.html","island"]],"b":[["TED%3AAF-A0A2W7RGM4-F1-model_v4_TED03","TED novel fold AF-A0A2W7RGM4-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1005043","l":"Candidatus Regiella insecticola 5.15","na":1,"nb":2,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["TED%3AAF-G2H098-F1-model_v4_TED01","TED highly-symmetric fold AF-G2H098-F1-model_v4_TED01"],["TED%3AAF-G2H102-F1-model_v4_TED04","TED novel fold AF-G2H102-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1006155","l":"","na":2,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["TED%3AAF-A0A1S7FXD4-F1-model_v4_TED02","TED novel fold AF-A0A1S7FXD4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1007676","l":"Companilactobacillus ginsenosidimutans","na":2,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["TED%3AAF-A0A0H4QHM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0H4QHM6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1028307","l":"Klebsiella aerogenes (strain ATCC 13048 / DSM 30053 / CCUG 1429 / JCM 1235 / KCTC 2190","na":1,"nb":2,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["Pfam%3APF16031","TonB polyproline region"],["Pfam%3APF09078","CheY binding"]]},{"id":"NCBITaxon:1031537","l":"Bremerella cremea","na":2,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"],["carcass-envo-00002033.html","carcass"]],"b":[["TED%3AAF-A0A368KQM2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A368KQM2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1033810","l":"Haloplasma contractile SSD-17B","na":1,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["TED%3AAF-F7PZK9-F1-model_v4_TED01","TED highly-symmetric fold AF-F7PZK9-F1-model_v4_TED01"],["TED%3AAF-U2EDU2-F1-model_v4_TED03","TED novel fold AF-U2EDU2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1034943","l":"Legionella massiliensis","na":1,"nb":2,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["TED%3AAF-A0A078KZR2-F1-model_v4_TED02","TED novel fold AF-A0A078KZR2-F1-model_v4_TED02"],["TED%3AAF-A0A078L1Y9-F1-model_v4_TED02","TED novel fold AF-A0A078L1Y9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1042","l":"Erythrobacter sp.","na":2,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A6G9N8S4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6G9N8S4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1045004","l":"Oenococcus kitaharae DSM 17330","na":2,"nb":1,"a":[["compost-envo-00002170.html","compost"],["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["TED%3AAF-G9WIN5-F1-model_v4_TED02","TED highly-symmetric fold AF-G9WIN5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1048394","l":"Compostimonas suwonensis","na":2,"nb":1,"a":[["agricultural-waste-material-envo-01000371.html","agricultural waste material"],["waste-material-envo-00002264.html","waste material"]],"b":[["TED%3AAF-A0A2M9BCH6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2M9BCH6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1048689","l":"Escherichia coli O55:H7 (strain RM12579 / EPEC)","na":1,"nb":2,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["Pfam%3APF28043","Anti-phage protein KwaA"],["Pfam%3APF16162","Kiwa protein KwaB-like"]]},{"id":"NCBITaxon:108981","l":"Acinetobacter schindleri","na":2,"nb":1,"a":[["gut-bto-0000545.html","gut"],["skin-bto-0001253.html","skin"]],"b":[["TED%3AAF-A0A855WCB4-F1-model_v4_TED02","TED novel fold AF-A0A855WCB4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1096246","l":"Hungatella effluvii","na":2,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["environmental-system-envo-01000254.html","environmental system"]],"b":[["TED%3AAF-A0A2V3YBX4-F1-model_v4_TED02","TED novel fold AF-A0A2V3YBX4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1114856","l":"Natronorubrum tibetense DSM 13204","na":2,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"],["sediment-envo-00002007.html","sediment"]],"b":[["TED%3AAF-L9VUV1-F1-model_v4_TED01","TED novel fold AF-L9VUV1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1120918","l":"Acetitomaculum ruminis DSM 5522","na":2,"nb":1,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["TED%3AAF-A0A1I1ATM7-F1-model_v4_TED01","TED novel fold AF-A0A1I1ATM7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1120923","l":"Acidocella aminolytica 101 = DSM 11237","na":2,"nb":1,"a":[["mine-envo-00000076.html","mine"],["rock-envo-00001995.html","rock"]],"b":[["TED%3AAF-A0A0D6PBP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D6PBP8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121022","l":"Asticcacaulis benevestitus DSM 16100 = ATCC BAA-896","na":2,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["TED%3AAF-V4PT21-F1-model_v4_TED01","TED highly-symmetric fold AF-V4PT21-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121270","l":"Carboxydocella sporoproducens DSM 16521","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["peninsula-envo-00000305.html","peninsula"]],"b":[["TED%3AAF-A0A1T4LMW3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1T4LMW3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1121279","l":"Chitinimonas taiwanensis DSM 18899","na":1,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"]],"b":[["TED%3AAF-A0A1K2HNH6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1K2HNH6-F1-model_v4_TED02"],["TED%3AAF-A0A1K2HS13-F1-model_v4_TED04","TED novel fold AF-A0A1K2HS13-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1121405","l":"Desulfococcus multivorans DSM 2059","na":2,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"],["sludge-envo-00002044.html","sludge"]],"b":[["TED%3AAF-S7VDW8-F1-model_v4_TED02","TED highly-symmetric fold AF-S7VDW8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1121419","l":"Desulfosporosinus hippei DSM 8344","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["TED%3AAF-A0A1G8D348-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G8D348-F1-model_v4_TED01"],["TED%3AAF-A0A1G8CVS7-F1-model_v4_TED01","TED novel fold AF-A0A1G8CVS7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121448","l":"","na":2,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["primordium-bto-0001886.html","primordium"]],"b":[["Pfam%3APF12139","Adenosine-5'-phosphosulfate reductase beta subunit"]]},{"id":"NCBITaxon:1121868","l":"Enterovibrio nigricans DSM 22720","na":1,"nb":2,"a":[["mediterranean-envo-01000207.html","mediterranean"]],"b":[["TED%3AAF-A0A1T4UXP3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1T4UXP3-F1-model_v4_TED01"],["TED%3AAF-A0A1T4VT23-F1-model_v4_TED01","TED novel fold AF-A0A1T4VT23-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121915","l":"Geoalkalibacter ferrihydriticus DSM 17813","na":2,"nb":1,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["TED%3AAF-A0A0C2HTA4-F1-model_v4_TED03","TED novel fold AF-A0A0C2HTA4-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1121955","l":"Hymenobacter daecheongensis DSM 21074","na":1,"nb":2,"a":[["dam-envo-00000074.html","dam"]],"b":[["TED%3AAF-A0A1M6EGP6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M6EGP6-F1-model_v4_TED02"],["TED%3AAF-A0A1M6M5E1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M6M5E1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1123071","l":"Rubritalea squalenifaciens DSM 18772","na":2,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"],["peninsula-envo-00000305.html","peninsula"]],"b":[["TED%3AAF-A0A1M6J7A4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M6J7A4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1124743","l":"Kribbella soli","na":2,"nb":1,"a":[["park-envo-00000562.html","park"],["forest-biome-envo-01000174.html","forest biome"]],"b":[["TED%3AAF-A0A4Q7WU76-F1-model_v4_TED01","TED novel fold AF-A0A4Q7WU76-F1-model_v4_TED01"]]},{"id":"NCBITaxon:113653","l":"Geoglobus ahangari","na":1,"nb":2,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["TED%3AAF-A0A7J3TIF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J3TIF4-F1-model_v4_TED01"],["TED%3AAF-A0A0F7ID24-F1-model_v4_TED02","TED novel fold AF-A0A0F7ID24-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1150298","l":"Fusicatenibacter saccharivorans","na":1,"nb":2,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["TED%3AAF-A0A174K1Z5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A174K1Z5-F1-model_v4_TED01"],["TED%3AAF-A0A174J3Q6-F1-model_v4_TED01","TED novel fold AF-A0A174J3Q6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1153","l":"Pseudanabaena sp.","na":1,"nb":2,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"]],"b":[["TED%3AAF-A0A2W6YPX5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W6YPX5-F1-model_v4_TED01"],["TED%3AAF-A0A2W7B262-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W7B262-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1165092","l":"Lachnospiraceae bacterium JC7","na":1,"nb":2,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["TED%3AAF-W3AP45-F1-model_v4_TED03","TED highly-symmetric fold AF-W3AP45-F1-model_v4_TED03"],["TED%3AAF-W3ATW4-F1-model_v4_TED02","TED highly-symmetric fold AF-W3ATW4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1166078","l":"Aureimonas phyllosphaerae","na":2,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["TED%3AAF-A0A7W6FW33-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W6FW33-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1172204","l":"Paeniclostridium sordellii 8483","na":1,"nb":2,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["TED%3AAF-A0A446IBF2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A446IBF2-F1-model_v4_TED01"],["TED%3AAF-A0A446ICV2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A446ICV2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1173061","l":"Geotrichum candidum","na":2,"nb":1,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["MCSA%3A520","triacylglycerol lipase (type B carboxylestrase)"]]},{"id":"NCBITaxon:1190417","l":"Geodermatophilus telluris","na":2,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"],["sand-envo-01000017.html","sand"]],"b":[["TED%3AAF-A0A1G6L8J2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G6L8J2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1192854","l":"Granulosicoccus antarcticus IMCC3135","na":1,"nb":2,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["TED%3AAF-A0A2Z2NPF3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2Z2NPF3-F1-model_v4_TED03"],["TED%3AAF-A0A2Z2P0Z5-F1-model_v4_TED01","TED novel fold AF-A0A2Z2P0Z5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:119641","l":"Clostridium uliginosum","na":1,"nb":2,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["TED%3AAF-A0A1I1R8X9-F1-model_v4_TED03","TED novel fold AF-A0A1I1R8X9-F1-model_v4_TED03"],["TED%3AAF-A0A1I1S8C7-F1-model_v4_TED03","TED novel fold AF-A0A1I1S8C7-F1-model_v4_TED03"]]},{"id":"NCBITaxon:121719","l":"Pannonibacter phragmitetus","na":2,"nb":1,"a":[["nectar-bto-0000537.html","nectar"],["style-bto-0001313.html","style"]],"b":[["TED%3AAF-A0A0U3EPB7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0U3EPB7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1284","l":"Staphylococcus hyicus","na":1,"nb":2,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["Pfam%3APF04650","YSIRK type signal peptide"],["PROSITE%3APS01123","Thermonuclease family signature 1"]]},{"id":"NCBITaxon:1286","l":"Staphylococcus simulans","na":2,"nb":1,"a":[["animal-house-envo-00003040.html","animal house"],["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["Pfam%3APF25533","Lysostaphin, N-terminal domain"]]},{"id":"NCBITaxon:1290","l":"Staphylococcus hominis","na":2,"nb":1,"a":[["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"]],"b":[["TED%3AAF-A0A6N0I1N0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N0I1N0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1341154","l":"Flavobacterium cauense R2A-7","na":1,"nb":2,"a":[["lake-envo-00000020.html","lake"]],"b":[["TED%3AAF-V6RYF5-F1-model_v4_TED01","TED novel fold AF-V6RYF5-F1-model_v4_TED01"],["TED%3AAF-V6S0E8-F1-model_v4_TED02","TED novel fold AF-V6S0E8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:134537","l":"Paraburkholderia fungorum","na":1,"nb":2,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["TED%3AAF-A0A1H1IH55-F1-model_v4_TED01","TED novel fold AF-A0A1H1IH55-F1-model_v4_TED01"],["TED%3AAF-A0A2N8QLD6-F1-model_v4_TED03","TED novel fold AF-A0A2N8QLD6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:13689","l":"Sphingomonas paucimobilis","na":2,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"]],"b":[["PROSITE%3APS00082","Extradiol ring-cleavage dioxygenases signature"]]},{"id":"NCBITaxon:138074","l":"Serratia symbiotica","na":2,"nb":1,"a":[["intestine-bto-0000648.html","intestine"],["pseudostem-bto-0005992.html","pseudostem"]],"b":[["TED%3AAF-A0A068YYP3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A068YYP3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1385511","l":"Pontibacillus marinus BH030004 = DSM 16465","na":2,"nb":1,"a":[["pond-envo-00000033.html","pond"],["saline-evaporation-pond-envo-00000055.html","saline evaporation pond"]],"b":[["TED%3AAF-A0A0A5GIK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A5GIK2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1408281","l":"Endomicrobium proavitum","na":2,"nb":1,"a":[["flagellate-bto-0000464.html","flagellate"],["larva-bto-0000707.html","larva"]],"b":[["TED%3AAF-A0A0G3WK72-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G3WK72-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1427370","l":"Chlamydia pecorum DBDeUG","na":2,"nb":1,"a":[["conjunctiva-bto-0003415.html","conjunctiva"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["TED%3AAF-V8TRT3-F1-model_v4_TED01","TED highly-symmetric fold AF-V8TRT3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1465","l":"Brevibacillus laterosporus","na":2,"nb":1,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["TED%3AAF-A0A0F7BZ24-F1-model_v4_TED01","TED novel fold AF-A0A0F7BZ24-F1-model_v4_TED01"]]},{"id":"NCBITaxon:146919","l":"Salinibacter ruber","na":2,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["TED%3AAF-A0A840D6P8-F1-model_v4_TED02","TED novel fold AF-A0A840D6P8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["PROSITE%3APS01120","Urease nickel ligands signature"],["PROSITE%3APS00145","Urease active site"]]},{"id":"NCBITaxon:1490","l":"Paraclostridium bifermentans","na":2,"nb":1,"a":[["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"],["harbour-envo-00000463.html","harbour"]],"b":[["TED%3AAF-A0A5P3XDT9-F1-model_v4_TED01","TED novel fold AF-A0A5P3XDT9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1494","l":"Clostridium cochlearium","na":2,"nb":1,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"]],"b":[["TED%3AAF-A0A7Y3V7F0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y3V7F0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1509","l":"Clostridium sporogenes","na":2,"nb":1,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["Pfam%3APF06050","2-hydroxyglutaryl-CoA dehydratase, D-component"]]},{"id":"NCBITaxon:1550","l":"Clostridium subterminale","na":1,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["Pfam%3APF12544","Lysine-2,3-aminomutase"],["MCSA%3A358","lysine 2,3-aminomutase"]]},{"id":"NCBITaxon:1553","l":"Clostridium tetanomorphum","na":2,"nb":1,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"]],"b":[["MCSA%3A468","methylaspartate ammonia-lyase"]]},{"id":"NCBITaxon:1553448","l":"Gemmobacter intermedius","na":1,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["TED%3AAF-A0A444M931-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A444M931-F1-model_v4_TED02"],["TED%3AAF-A0A444ME17-F1-model_v4_TED01","TED novel fold AF-A0A444ME17-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1578720","l":"Helicobacter ailurogastricus","na":2,"nb":1,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["mycosis-habitatmech-bacdive-6d5784a4c5.html","Mycosis"]],"b":[["TED%3AAF-A0A0K2X3G5-F1-model_v4_TED01","TED novel fold AF-A0A0K2X3G5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:158500","l":"Novosphingobium resinovorum","na":1,"nb":2,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A031JQ90-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A031JQ90-F1-model_v4_TED01"],["TED%3AAF-A0A031JQV5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A031JQV5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:158836","l":"Enterobacter hormaechei","na":1,"nb":2,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["TED%3AAF-A0A431SE22-F1-model_v4_TED01","TED novel fold AF-A0A431SE22-F1-model_v4_TED01"],["TED%3AAF-A0A8B5ZRS3-F1-model_v4_TED01","TED novel fold AF-A0A8B5ZRS3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1612308","l":"Methylocapsa palsarum","na":1,"nb":2,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["TED%3AAF-A0A1I4BSR3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I4BSR3-F1-model_v4_TED02"],["TED%3AAF-A0A1I3X4Y4-F1-model_v4_TED01","TED novel fold AF-A0A1I3X4Y4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:164756","l":"Mycobacterium sp. MCS","na":2,"nb":1,"a":[["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["TED%3AAF-A0A5Q5BFH8-F1-model_v4_TED01","TED novel fold AF-A0A5Q5BFH8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:167968","l":"uncultured Desulfovibrio sp.","na":1,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["TED%3AAF-A0A212J776-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A212J776-F1-model_v4_TED02"],["TED%3AAF-A0A212L6P7-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A212L6P7-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":2,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["TED%3AAF-A0A415C3I8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A415C3I8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:168471","l":"Laribacter hongkongensis","na":2,"nb":1,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"]],"b":[["TED%3AAF-A0A248LK09-F1-model_v4_TED01","TED novel fold AF-A0A248LK09-F1-model_v4_TED01"]]},{"id":"NCBITaxon:169679","l":"Clostridium saccharobutylicum","na":2,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"]],"b":[["Pfam%3APF13290","Chitobiase/beta-hexosaminidase C-terminal domain"]]},{"id":"NCBITaxon:1797191","l":"Acidobacteria bacterium RIFCSPLOWO2 12 FULL 66 21","na":1,"nb":2,"a":[["loam-envo-00002258.html","loam"]],"b":[["TED%3AAF-A0A1F2TD39-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F2TD39-F1-model_v4_TED01"],["TED%3AAF-A0A1F2TJD6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F2TJD6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1798213","l":"Pseudovibrio sp. Tun.PSC04-5.I4","na":2,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["peninsula-envo-00000305.html","peninsula"]],"b":[["TED%3AAF-A0A1H1I1X9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H1I1X9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1873897","l":"Cupriavidus sp.","na":2,"nb":1,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["TED%3AAF-A0A352SA47-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A352SA47-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1895664","l":"Halanaerobium sp.","na":1,"nb":2,"a":[["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["TED%3AAF-A0A315QT49-F1-model_v4_TED03","TED novel fold AF-A0A315QT49-F1-model_v4_TED03"],["TED%3AAF-A0A315R434-F1-model_v4_TED03","TED novel fold AF-A0A315R434-F1-model_v4_TED03"]]},{"id":"NCBITaxon:189918","l":"Mycobacterium sp. KMS","na":2,"nb":1,"a":[["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"],["mountain-pass-envo-00000084.html","mountain pass"]],"b":[["Pfam%3APF06339","Ectoine synthase"]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":2,"nb":1,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Pfam%3APF26312","Domain of unknown function (DUF8083)"]]},{"id":"NCBITaxon:1908","l":"Streptomyces globisporus","na":1,"nb":2,"a":[["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["PROSITE%3APS00953","Glycosyl hydrolases family 25 active site signature"],["MCSA%3A245","tyrosine 2,3-aminomutase"]]},{"id":"NCBITaxon:193","l":"Azospirillum lipoferum","na":2,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"]],"b":[["TED%3AAF-A0A1X7MZF1-F1-model_v4_TED02","TED novel fold AF-A0A1X7MZF1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1935","l":"Streptomyces violaceoruber","na":1,"nb":2,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["Pfam%3APF03559","NDP-hexose 2,3-dehydratase"],["MCSA%3A528","phospholipase A2 (prokaryotic/fungal)"]]},{"id":"NCBITaxon:1938","l":"Streptomyces viridochromogenes","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["Pfam%3APF11599","RRNA methyltransferase AviRa"]]},{"id":"NCBITaxon:2024855","l":"Rhodopirellula sp.","na":1,"nb":2,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A2E0S8K6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0S8K6-F1-model_v4_TED01"],["TED%3AAF-A0A358MZ88-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A358MZ88-F1-model_v4_TED03"]]},{"id":"NCBITaxon:2026","l":"Thermoactinomyces vulgaris","na":2,"nb":1,"a":[["air-conditioning-unit-envo-00002874.html","air conditioning unit"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"]],"b":[["MCSA%3A433","neopullulanase"]]},{"id":"NCBITaxon:2026725","l":"Chromatiales bacterium","na":1,"nb":2,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A520X6H8-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A520X6H8-F1-model_v4_TED05"],["TED%3AAF-A0A7C2AIC9-F1-model_v4_TED02","TED novel fold AF-A0A7C2AIC9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:208962","l":"Escherichia albertii","na":1,"nb":2,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["Pfam%3APF18134","Adenylyl/Guanylyl and SMODS C-terminal sensor domain"],["Pfam%3APF18153","Cap15, cyclic dinucleotide receptor domain"]]},{"id":"NCBITaxon:2100533","l":"Sphingobacterium haloxyli","na":1,"nb":2,"a":[["endosphere-habitatmech-bacdive-3e4680f074.html","Endosphere"]],"b":[["TED%3AAF-A0A2S9J8F0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S9J8F0-F1-model_v4_TED01"],["TED%3AAF-A0A2S9J915-F1-model_v4_TED02","TED novel fold AF-A0A2S9J915-F1-model_v4_TED02"]]},{"id":"NCBITaxon:213224","l":"Geothermobacter ehrlichii","na":2,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["seamount-envo-00000264.html","seamount"]],"b":[["TED%3AAF-A0A5D3WPY1-F1-model_v4_TED02","TED novel fold AF-A0A5D3WPY1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:214856","l":"Alistipes finegoldii","na":2,"nb":1,"a":[["environmental-feature-envo-00002297.html","environmental feature"],["harbour-envo-00000463.html","harbour"]],"b":[["IEDB%3A226612","epitope IDIMLAIDVSGSMLA"]]},{"id":"NCBITaxon:2162","l":"Methanobacterium formicicum","na":1,"nb":2,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Pfam%3APF04432","Coenzyme F420 hydrogenase/dehydrogenase, beta subunit C terminus"],["Pfam%3APF04422","Coenzyme F420 hydrogenase/dehydrogenase, beta subunit N-term"]]},{"id":"NCBITaxon:2183985","l":"Halomonas sp. A11-A","na":2,"nb":1,"a":[["ocean-trench-envo-00000275.html","ocean trench"],["trough-envo-00000499.html","trough"]],"b":[["TED%3AAF-A0A317P655-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A317P655-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2200","l":"Methanoculleus thermophilus","na":2,"nb":1,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"]],"b":[["MCSA%3A532","secondary-alcohol dehydrogenase (coenzyme-F420)"]]},{"id":"NCBITaxon:2208","l":"Methanosarcina barkeri","na":2,"nb":1,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["sludge-envo-00002044.html","sludge"]],"b":[["Pfam%3APF09505","Dimethylamine methyltransferase (Dimeth_PyL)"]]},{"id":"NCBITaxon:221109","l":"Oceanobacillus iheyensis HTE831","na":2,"nb":1,"a":[["duodenum-bto-0000365.html","duodenum"],["kidney-bto-0000671.html","kidney"]],"b":[["MCSA%3A502","galactarate dehydratase (D-threo-forming)"]]},{"id":"NCBITaxon:2223","l":"Methanothrix soehngenii","na":1,"nb":2,"a":[["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"],["TED%3AAF-A0A7K4AJW5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K4AJW5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:226506","l":"Algoriphagus ornithinivorans","na":2,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"],["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["TED%3AAF-A0A1I5CGG6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5CGG6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2292705","l":"Paenibacillus paeoniae","na":2,"nb":1,"a":[["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["TED%3AAF-A0A371PIW4-F1-model_v4_TED01","TED novel fold AF-A0A371PIW4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:238540","l":"Algoriphagus antarcticus","na":2,"nb":1,"a":[["hill-envo-00000083.html","hill"],["seamount-envo-00000264.html","seamount"]],"b":[["TED%3AAF-A0A3E0D6W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3E0D6W3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:245188","l":"Yoonia vestfoldensis","na":2,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["sandstone-envo-00002055.html","sandstone"]],"b":[["TED%3AAF-A0A1Y0EB74-F1-model_v4_TED01","TED novel fold AF-A0A1Y0EB74-F1-model_v4_TED01"]]},{"id":"NCBITaxon:246200","l":"Ruegeria pomeroyi DSS-3","na":1,"nb":2,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["Pfam%3APF16867","Dimethlysulfonioproprionate lyase"],["Pfam%3APF09347","Domain of unknown function (DUF1989)"]]},{"id":"NCBITaxon:2485163","l":"Methylocaldum sp. 0917","na":1,"nb":2,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["TED%3AAF-A0A4R7A0H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R7A0H4-F1-model_v4_TED01"],["TED%3AAF-A0A4R7AGM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R7AGM3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2547395","l":"Paenibacillus piri","na":1,"nb":2,"a":[["transportation-ways-roads-habitatmech-bacdive-1b4071cb1d.html","Transportation-ways-Roads"]],"b":[["TED%3AAF-A0A4V2ZS36-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A4V2ZS36-F1-model_v4_TED03"],["TED%3AAF-A0A4R5KXP2-F1-model_v4_TED02","TED novel fold AF-A0A4R5KXP2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:262543","l":"Exiguobacterium sibiricum (strain DSM 17290 / CCUG 55495 / CIP 109462 / JCM 13490 / 255-15)","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["Pfam%3APF06335","Domain of unknown function (DUF1054)"],["Pfam%3APF11023","Zinc-ribbon containing domain"]]},{"id":"NCBITaxon:269482","l":"Burkholderia vietnamiensis G4","na":2,"nb":1,"a":[["air-envo-00002005.html","air"],["human-construction-envo-00000070.html","human construction"]],"b":[["TED%3AAF-A4JWD8-F1-model_v4_TED01","TED novel fold AF-A4JWD8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:272627","l":"Magnetospirillum magnetotacticum MS-1","na":1,"nb":2,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["IEDB%3A291","epitope AALLFLLL"],["IEDB%3A124548","epitope MVAYMLER"]]},{"id":"NCBITaxon:279714","l":"Pseudogulbenkiania ferrooxidans 2002","na":2,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["pond-water-envo-00002228.html","pond water"]],"b":[["TED%3AAF-B9Z3M4-F1-model_v4_TED02","TED novel fold AF-B9Z3M4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:28080","l":"Campylobacter upsaliensis","na":2,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["feces-uberon-0001988.html","feces"]],"b":[["IEDB%3A231111","epitope KSDDVEGRF"]]},{"id":"NCBITaxon:28087","l":"Legionella sainthelensi","na":1,"nb":2,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["TED%3AAF-A0A3S4I5M7-F1-model_v4_TED01","TED novel fold AF-A0A3S4I5M7-F1-model_v4_TED01"],["TED%3AAF-A0A447STS7-F1-model_v4_TED04","TED novel fold AF-A0A447STS7-F1-model_v4_TED04"]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["Pfam%3APF21252","Glycosyl hydrolase 109, C-terminal domain"],["TED%3AAF-A0A3P1YJQ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3P1YJQ6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28128","l":"Prevotella corporis","na":2,"nb":1,"a":[["environmental-feature-envo-00002297.html","environmental feature"],["harbour-envo-00000463.html","harbour"]],"b":[["TED%3AAF-A0A133Q582-F1-model_v4_TED02","TED novel fold AF-A0A133Q582-F1-model_v4_TED02"]]},{"id":"NCBITaxon:28183","l":"Leptospira santarosai","na":2,"nb":1,"a":[["kidney-bto-0000671.html","kidney"],["liver-bto-0000759.html","liver"]],"b":[["TED%3AAF-A0A2P1QYQ7-F1-model_v4_TED01","TED novel fold AF-A0A2P1QYQ7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:282199","l":"Nereida ignava","na":2,"nb":1,"a":[["sandstone-envo-00002055.html","sandstone"],["bile-bto-0000121.html","bile"]],"b":[["TED%3AAF-A0A0U1NPS2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0U1NPS2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:29017","l":"Cyriopagopus schmidti","na":2,"nb":1,"a":[["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["PROSITE%3APS60021","Huwentoxin-1 family signature"]]},{"id":"NCBITaxon:290339","l":"Cronobacter sakazakii (strain ATCC BAA-894)","na":1,"nb":2,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Pfam%3APF06610","L-alanine exporter"],["Pfam%3APF10796","Sigma-S stabilisation anti-adaptor protein"]]},{"id":"NCBITaxon:292415","l":"Thiobacillus denitrificans ATCC 25259","na":2,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["river-bed-envo-00000384.html","river bed"]],"b":[["Pfam%3APF06804","Outer membrane protein assembly factor BamC-like C-terminal domain"]]},{"id":"NCBITaxon:292459","l":"","na":1,"nb":2,"a":[["compost-envo-00002170.html","compost"]],"b":[["PROSITE%3APS00853","Beta-eliminating lyases pyridoxal-phosphate attachment site"],["TED%3AAF-Q67TA8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q67TA8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:29320","l":"Paenarthrobacter nicotinovorans","na":1,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["Pfam%3APF22607","FAD binding domain-like"],["Pfam%3APF06500","Esterase FrsA-like"]]},{"id":"NCBITaxon:29488","l":"Photorhabdus luminescens","na":1,"nb":2,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["Pfam%3APF02273","Acyl transferase"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"]]},{"id":"NCBITaxon:29491","l":"Aeromonas salmonicida subsp. salmonicida","na":1,"nb":2,"a":[["liver-bto-0000759.html","liver"]],"b":[["TED%3AAF-A0A189PGR3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A189PGR3-F1-model_v4_TED01"],["TED%3AAF-A0A0F6QDS7-F1-model_v4_TED02","TED novel fold AF-A0A0F6QDS7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:29522","l":"Brachyspira aalborgi","na":1,"nb":2,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["TED%3AAF-A0A5C8E3N2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C8E3N2-F1-model_v4_TED01"],["TED%3AAF-A0A5C8E9C6-F1-model_v4_TED01","TED novel fold AF-A0A5C8E9C6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:29559","l":"Metamycoplasma hyosynoviae","na":1,"nb":2,"a":[["joint-bto-0001686.html","joint"]],"b":[["TED%3AAF-A0A063YD07-F1-model_v4_TED02","TED novel fold AF-A0A063YD07-F1-model_v4_TED02"],["TED%3AAF-A0A4R7TZF5-F1-model_v4_TED02","TED novel fold AF-A0A4R7TZF5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:298386","l":"Photobacterium profundum SS9","na":2,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["underground-water-envo-00005792.html","underground water"]],"b":[["Pfam%3APF12558","ATP-binding cassette cobalt transporter"]]},{"id":"NCBITaxon:304371","l":"Methanocella paludicola SANAE","na":2,"nb":1,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["TED%3AAF-D1Z063-F1-model_v4_TED03","TED highly-symmetric fold AF-D1Z063-F1-model_v4_TED03"]]},{"id":"NCBITaxon:309807","l":"Salinibacter ruber DSM 13855","na":2,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["underground-water-envo-00005792.html","underground water"]],"b":[["Pfam%3APF06491","Disulphide isomerase"]]},{"id":"NCBITaxon:313594","l":"Polaribacter irgensii 23-P","na":2,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["TED%3AAF-A4BXQ4-F1-model_v4_TED01","TED novel fold AF-A4BXQ4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:314237","l":"Phyllobacterium leguminum","na":2,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"],["root-nodule-envo-01000164.html","root nodule"]],"b":[["TED%3AAF-A0A318T1W1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A318T1W1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:315750","l":"","na":1,"nb":2,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["IEDB%3A226695","epitope YLFTLLVPL"],["Pfam%3APF06569","Protein of unknown function (DUF1128)"]]},{"id":"NCBITaxon:316058","l":"Rhodopseudomonas palustris HaA2","na":2,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["TED%3AAF-Q2IYC7-F1-model_v4_TED03","TED novel fold AF-Q2IYC7-F1-model_v4_TED03"]]},{"id":"NCBITaxon:316274","l":"Herpetosiphon aurantiacus DSM 785","na":2,"nb":1,"a":[["filament-bto-0000463.html","filament"],["joint-bto-0001686.html","joint"]],"b":[["TED%3AAF-A9AZN6-F1-model_v4_TED02","TED highly-symmetric fold AF-A9AZN6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:320771","l":"Pedosphaera parvula (strain Ellin514)","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["TED%3AAF-B9XAB4-F1-model_v4_TED02","TED highly-symmetric fold AF-B9XAB4-F1-model_v4_TED02"],["TED%3AAF-B9XFV1-F1-model_v4_TED01","TED highly-symmetric fold AF-B9XFV1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:3218","l":"Physcomitrium patens","na":2,"nb":1,"a":[["area-of-tundra-envo-00000112.html","area of tundra"],["slope-envo-00002000.html","slope"]],"b":[["TED%3AAF-A0A2K1IJQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2K1IJQ3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:323426","l":"Jezberella montanilacus","na":1,"nb":2,"a":[["pond-envo-00000033.html","pond"]],"b":[["TED%3AAF-A0A2T0XBZ0-F1-model_v4_TED02","TED novel fold AF-A0A2T0XBZ0-F1-model_v4_TED02"],["TED%3AAF-A0A2T0XCA1-F1-model_v4_TED02","TED novel fold AF-A0A2T0XCA1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:33035","l":"Blautia producta","na":1,"nb":2,"a":[["juvenile-bto-0002168.html","juvenile"]],"b":[["TED%3AAF-A0A2S4GEH6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S4GEH6-F1-model_v4_TED01"],["TED%3AAF-A0A7G5MNY0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G5MNY0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:331272","l":"Burkholderia cenocepacia HI2424","na":2,"nb":1,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["Pfam%3APF02673","Bacitracin resistance protein BacA"]]},{"id":"NCBITaxon:332175","l":"Desulfosalsimonas propionicica","na":2,"nb":1,"a":[["inlet-envo-00000475.html","inlet"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["TED%3AAF-A0A7W0HJC5-F1-model_v4_TED03","TED novel fold AF-A0A7W0HJC5-F1-model_v4_TED03"]]},{"id":"NCBITaxon:33889","l":"Brevibacterium casei","na":2,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"]],"b":[["TED%3AAF-A0A7T2TGM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T2TGM6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:33922","l":"Mycoplasmopsis agassizii","na":1,"nb":2,"a":[["valley-envo-00000100.html","valley"]],"b":[["TED%3AAF-A0A1W1X4W5-F1-model_v4_TED01","TED novel fold AF-A0A1W1X4W5-F1-model_v4_TED01"],["TED%3AAF-A0A1W1XA50-F1-model_v4_TED02","TED novel fold AF-A0A1W1XA50-F1-model_v4_TED02"]]},{"id":"NCBITaxon:33950","l":"Thermoanaerobacterium thermosulfurigenes","na":1,"nb":2,"a":[["park-envo-00000562.html","park"]],"b":[["Pfam%3APF18565","Glycoside hydrolase family 2 C-terminal domain 5"],["Pfam%3APF00395","S-layer homology domain"]]},{"id":"NCBITaxon:342616","l":"Streptococcus agalactiae serotype III (strain COH1)","na":1,"nb":2,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["Pfam%3APF26337","Glucosyltransferase 3-like, C-terminal domain"],["Pfam%3APF26334","Glucosyltransferase 3-like, N-terminal domain"]]},{"id":"NCBITaxon:345341","l":"Kutzneria sp. 744","na":2,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"],["clay-envo-00002982.html","clay"]],"b":[["TED%3AAF-W7SU68-F1-model_v4_TED01","TED novel fold AF-W7SU68-F1-model_v4_TED01"]]},{"id":"NCBITaxon:349521","l":"","na":1,"nb":2,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["TED%3AAF-Q2SFS2-F1-model_v4_TED01","TED novel fold AF-Q2SFS2-F1-model_v4_TED01"],["TED%3AAF-Q2SI43-F1-model_v4_TED03","TED novel fold AF-Q2SI43-F1-model_v4_TED03"]]},{"id":"NCBITaxon:350688","l":"Alkaliphilus oremlandii OhILAs","na":2,"nb":1,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["Pfam%3APF18955","Domain of unknown function (DUF5698)"]]},{"id":"NCBITaxon:353152","l":"","na":1,"nb":2,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"]],"b":[["IEDB%3A127201","epitope TFMGMNVQF"],["TED%3AAF-Q5CXF2-F1-model_v4_TED01","TED highly-symmetric fold AF-Q5CXF2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:35703","l":"Citrobacter amalonaticus","na":2,"nb":1,"a":[["dental-plaque-bto-0000338.html","dental plaque"],["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["TED%3AAF-A0A376C300-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A376C300-F1-model_v4_TED02"]]},{"id":"NCBITaxon:363265","l":"Prevotella stercorea","na":1,"nb":2,"a":[["pig-manure-envo-00003860.html","pig manure"]],"b":[["TED%3AAF-A0A415GCN6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A415GCN6-F1-model_v4_TED04"],["TED%3AAF-A0A3R6FHW9-F1-model_v4_TED01","TED novel fold AF-A0A3R6FHW9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:368407","l":"Methanoculleus marisnigri (strain ATCC 35101 / DSM 1498 / JR1)","na":1,"nb":2,"a":[["joint-bto-0001686.html","joint"]],"b":[["Pfam%3APF27030","AbpE bacteria"],["Pfam%3APF04019","Protein of unknown function (DUF359)"]]},{"id":"NCBITaxon:37329","l":"Nocardia farcinica","na":2,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["TED%3AAF-A0A449G5H5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A449G5H5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:375286","l":"Janthinobacterium sp. (strain Marseille)","na":1,"nb":2,"a":[["large-river-biome-envo-00000887.html","large river biome"]],"b":[["Pfam%3APF06299","Protein of unknown function (DUF1045)"],["Pfam%3APF04361","Protein of unknown function (DUF494)"]]},{"id":"NCBITaxon:382514","l":"Telmatospirillum siberiense","na":2,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["peatland-envo-00000044.html","peatland"]],"b":[["TED%3AAF-A0A2N3PPB2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3PPB2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:38313","l":"Shewanella algae","na":1,"nb":2,"a":[["foot-bto-0000476.html","foot"]],"b":[["TED%3AAF-A0A1S2T8W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S2T8W3-F1-model_v4_TED01"],["TED%3AAF-A0A8A5EFG1-F1-model_v4_TED02","TED novel fold AF-A0A8A5EFG1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:389348","l":"Candidatus Protochlamydia naegleriophila","na":2,"nb":1,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["TED%3AAF-A0A0U5J6J4-F1-model_v4_TED01","TED novel fold AF-A0A0U5J6J4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:391037","l":"Salinispora arenicola CNS-205","na":2,"nb":1,"a":[["beach-sand-envo-00002138.html","beach sand"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["Pfam%3APF12072","RNase Y N-terminal region"]]},{"id":"NCBITaxon:39152","l":"Methanococcus maripaludis","na":1,"nb":2,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["Pfam%3APF02571","Precorrin-6x reductase CbiJ/CobK"],["TED%3AAF-A0A7J9PSA9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J9PSA9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:39441","l":"Methanobrevibacter arboriphilus","na":2,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["sludge-envo-00002044.html","sludge"]],"b":[["TED%3AAF-A0A843AID3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843AID3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:395961","l":"Cyanothece sp. PCC 7425","na":2,"nb":1,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["TED%3AAF-B8HKH7-F1-model_v4_TED01","TED highly-symmetric fold AF-B8HKH7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:39691","l":"Mycolicibacterium moriokaense","na":1,"nb":2,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["TED%3AAF-A0A370D086-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A370D086-F1-model_v4_TED01"],["TED%3AAF-A0A370D4B9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A370D4B9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:404881","l":"Albidovulum denitrificans","na":2,"nb":1,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["TED%3AAF-A0A2S8SDZ8-F1-model_v4_TED03","TED novel fold AF-A0A2S8SDZ8-F1-model_v4_TED03"]]},{"id":"NCBITaxon:404941","l":"Mycobacteroides salmoniphilum","na":1,"nb":2,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["TED%3AAF-A0A4R8SEB1-F1-model_v4_TED02","TED novel fold AF-A0A4R8SEB1-F1-model_v4_TED02"],["TED%3AAF-A0A4R8SGK3-F1-model_v4_TED01","TED novel fold AF-A0A4R8SGK3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:411461","l":"Dorea formicigenerans ATCC 27755","na":2,"nb":1,"a":[["emulsion-envo-00010506.html","emulsion"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["TED%3AAF-B0G854-F1-model_v4_TED01","TED novel fold AF-B0G854-F1-model_v4_TED01"]]},{"id":"NCBITaxon:411463","l":"Eubacterium ventriosum ATCC 27560","na":2,"nb":1,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["TED%3AAF-A5Z937-F1-model_v4_TED01","TED highly-symmetric fold AF-A5Z937-F1-model_v4_TED01"]]},{"id":"NCBITaxon:41211","l":"Desulfotomaculum sp.","na":2,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["TED%3AAF-A0A356UJQ3-F1-model_v4_TED01","TED novel fold AF-A0A356UJQ3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:41880","l":"Pycnococcus provasolii","na":1,"nb":2,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["TED%3AAF-A0A830HBX6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A830HBX6-F1-model_v4_TED02"],["TED%3AAF-A0A830HI63-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A830HI63-F1-model_v4_TED01"]]},{"id":"NCBITaxon:420247","l":"Methanobrevibacter smithii (strain ATCC 35061 / DSM 861 / OCM 144 / PS)","na":1,"nb":2,"a":[["gut-mucosa-bto-0000546.html","gut mucosa"]],"b":[["Pfam%3APF17884","Domain of unknown function (DUF5591)"],["Pfam%3APF18195","GatD N-terminal domain"]]},{"id":"NCBITaxon:420662","l":"Methylibium petroleiphilum PM1","na":2,"nb":1,"a":[["compost-biofilter-envo-00002153.html","compost biofilter"],["environmental-system-envo-01000254.html","environmental system"]],"b":[["IEDB%3A126042","epitope FQMGGIGPM"]]},{"id":"NCBITaxon:420952","l":"Paraburkholderia bryophila","na":2,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["TED%3AAF-A0A7Y9WQV4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y9WQV4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:42256","l":"Rubrobacter radiotolerans","na":2,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["desert-sand-envo-00005800.html","desert sand"]],"b":[["TED%3AAF-A0A023X7L7-F1-model_v4_TED02","TED novel fold AF-A0A023X7L7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:42322","l":"Eubacterium ruminantium","na":1,"nb":2,"a":[["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["TED%3AAF-A0A1H6A208-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H6A208-F1-model_v4_TED01"],["TED%3AAF-A0A1T4Q7U0-F1-model_v4_TED01","TED novel fold AF-A0A1T4Q7U0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:425104","l":"Shewanella sediminis (strain HAW-EB3)","na":1,"nb":2,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["Pfam%3APF13286","Phosphohydrolase-associated domain"],["TED%3AAF-A8FZD8-F1-model_v4_TED01","TED novel fold AF-A8FZD8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:43671","l":"Actinotalea fermentans","na":2,"nb":1,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["TED%3AAF-A0A511YTN2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A511YTN2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:441772","l":"Clostridium botulinum (strain Langeland / NCTC 10281 / Type F)","na":1,"nb":2,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["Pfam%3APF02001","Protein of unknown function DUF134"],["Pfam%3APF06874","Firmicute fructose-1,6-bisphosphatase"]]},{"id":"NCBITaxon:443152","l":"Marinobacter algicola DG893","na":2,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["TED%3AAF-A6EY08-F1-model_v4_TED01","TED highly-symmetric fold AF-A6EY08-F1-model_v4_TED01"]]},{"id":"NCBITaxon:444157","l":"Pyrobaculum neutrophilum V24Sta","na":2,"nb":1,"a":[["silty-sediment-envo-01000119.html","silty sediment"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF01950","Fructose-1,6-bisphosphatase"]]},{"id":"NCBITaxon:44737","l":"Capnocytophaga sp.","na":1,"nb":2,"a":[["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["TED%3AAF-A0A496MK20-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A496MK20-F1-model_v4_TED01"],["TED%3AAF-A0A496MK73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A496MK73-F1-model_v4_TED01"]]},{"id":"NCBITaxon:452637","l":"Opitutus terrae (strain DSM 11246 / JCM 15787 / PB90-1)","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["TED%3AAF-B1ZX41-F1-model_v4_TED02","TED novel fold AF-B1ZX41-F1-model_v4_TED02"],["TED%3AAF-B1ZYN8-F1-model_v4_TED02","TED novel fold AF-B1ZYN8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:455632","l":"Streptomyces griseus subsp. griseus NBRC 13350","na":1,"nb":2,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["PROSITE%3APS01311","Prolipoprotein diacylglyceryl transferase signature"]]},{"id":"NCBITaxon:4558","l":"Sorghum bicolor","na":1,"nb":2,"a":[["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["MCSA%3A382","P-(S)-hydroxymandelonitrile lyase"],["TED%3AAF-A0A1W0W5T3-F1-model_v4_TED02","TED novel fold AF-A0A1W0W5T3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:472","l":"Acinetobacter sp.","na":1,"nb":2,"a":[["carcass-envo-00002033.html","carcass"]],"b":[["TED%3AAF-A0A433CUV6-F1-model_v4_TED01","TED novel fold AF-A0A433CUV6-F1-model_v4_TED01"],["TED%3AAF-A0A7G3BTL8-F1-model_v4_TED01","TED novel fold AF-A0A7G3BTL8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:472759","l":"Nitrosococcus halophilus Nc 4","na":2,"nb":1,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["TED%3AAF-D5BWL1-F1-model_v4_TED01","TED highly-symmetric fold AF-D5BWL1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:474950","l":"Granulicella pectinivorans","na":2,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A1I6LYB5-F1-model_v4_TED03","TED novel fold AF-A0A1I6LYB5-F1-model_v4_TED03"]]},{"id":"NCBITaxon:476","l":"Moraxella bovis","na":1,"nb":2,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"]],"b":[["Pfam%3APF04556","DpnII restriction endonuclease"],["TED%3AAF-A0A1S9ZVN5-F1-model_v4_TED01","TED novel fold AF-A0A1S9ZVN5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":2,"nb":1,"a":[["city-envo-00000856.html","city"],["cropland-biome-envo-01000245.html","cropland biome"]],"b":[["TED%3AAF-A0A4R6CRR7-F1-model_v4_TED01","TED novel fold AF-A0A4R6CRR7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:479435","l":"Kribbella flavida DSM 17836","na":2,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["Pfam%3APF21568","1,3-alpha-isomaltosidase-like, N-terminal domain"]]},{"id":"NCBITaxon:482957","l":"","na":2,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["TED%3AAF-A0A6P2XDC0-F1-model_v4_TED01","TED novel fold AF-A0A6P2XDC0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:484019","l":"Thermosipho africanus (strain TCF52B)","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["TED%3AAF-B7IGW9-F1-model_v4_TED05","TED highly-symmetric fold AF-B7IGW9-F1-model_v4_TED05"],["TED%3AAF-B7IEF5-F1-model_v4_TED01","TED novel fold AF-B7IEF5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:487796","l":"Flavobacteria bacterium MS024-2A","na":2,"nb":1,"a":[["marine-neritic-zone-envo-00000206.html","marine neritic zone"],["coastal-plain-envo-00000090.html","coastal plain"]],"b":[["TED%3AAF-C0BK38-F1-model_v4_TED02","TED novel fold AF-C0BK38-F1-model_v4_TED02"]]},{"id":"NCBITaxon:49252","l":"Eucampia antarctica","na":1,"nb":2,"a":[["saline-water-envo-00002010.html","saline water"]],"b":[["TED%3AAF-A0A7S2RNI9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S2RNI9-F1-model_v4_TED02"],["TED%3AAF-A0A7S2SD61-F1-model_v4_TED01","TED novel fold AF-A0A7S2SD61-F1-model_v4_TED01"]]},{"id":"NCBITaxon:498214","l":"Clostridium botulinum (strain Loch Maree / Type A3)","na":1,"nb":2,"a":[["plateau-envo-00000182.html","plateau"]],"b":[["Pfam%3APF20921","Domain of unknown function DUF1846, C-terminal"],["Pfam%3APF08903","Domain of unknown function DUF1846, N-terminal"]]},{"id":"NCBITaxon:504472","l":"Spirosoma linguale DSM 74","na":2,"nb":1,"a":[["drinking-water-envo-00003064.html","drinking water"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["TED%3AAF-D2QHB9-F1-model_v4_TED01","TED highly-symmetric fold AF-D2QHB9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:507522","l":"Klebsiella variicola (strain 342)","na":1,"nb":2,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Pfam%3APF18649","EcpB C-terminal domain"],["Pfam%3APF04205","FMN-binding domain"]]},{"id":"NCBITaxon:508451","l":"Lactobacillus taiwanensis","na":1,"nb":2,"a":[["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["TED%3AAF-A0A256LG95-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A256LG95-F1-model_v4_TED04"],["TED%3AAF-A0A8A8VQ16-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8A8VQ16-F1-model_v4_TED01"]]},{"id":"NCBITaxon:515393","l":"Pseudomonas yamanorum","na":1,"nb":2,"a":[["subarctic-habitatmech-bacdive-09ded89de7.html","Subarctic"]],"b":[["TED%3AAF-A0A143GFF9-F1-model_v4_TED03","TED novel fold AF-A0A143GFF9-F1-model_v4_TED03"],["TED%3AAF-A0A1H2I658-F1-model_v4_TED02","TED novel fold AF-A0A1H2I658-F1-model_v4_TED02"]]},{"id":"NCBITaxon:517417","l":"Chlorobaculum parvum (strain DSM 263 / NCIMB 8327)","na":1,"nb":2,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["Pfam%3APF28537","Probable trigger factor, FKBP-like domain"],["Pfam%3APF10643","Photosystem P840 reaction-centre cytochrome c-551"]]},{"id":"NCBITaxon:519","l":"Bordetella parapertussis","na":2,"nb":1,"a":[["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Pfam%3APF13542","Helix-turn-helix domain of transposase family ISL3"]]},{"id":"NCBITaxon:521674","l":"Planctopirus limnophila DSM 3776","na":2,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-D5SQH0-F1-model_v4_TED01","TED novel fold AF-D5SQH0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:52560","l":"Desulfomicrobium apsheronum","na":2,"nb":1,"a":[["black-smoker-envo-00000218.html","black smoker"],["volcanic-rock-envo-00002015.html","volcanic rock"]],"b":[["TED%3AAF-A0A1I3Z6Q6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1I3Z6Q6-F1-model_v4_TED04"]]},{"id":"NCBITaxon:53463","l":"Paracoccus solventivorans","na":2,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["plain-envo-00000086.html","plain"]],"b":[["TED%3AAF-A0A1M7DMW2-F1-model_v4_TED03","TED novel fold AF-A0A1M7DMW2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:536044","l":"Methanolobus zinderi","na":1,"nb":2,"a":[["coalbed-water-habitatmech-bacdive-499e641dc2.html","Coalbed-water"]],"b":[["TED%3AAF-A0A7D5IAI6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7D5IAI6-F1-model_v4_TED01"],["TED%3AAF-A0A7D5E6R2-F1-model_v4_TED02","TED novel fold AF-A0A7D5E6R2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:555970","l":"Bifidobacterium animalis subsp. lactis (strain DSM 10140 / CCUG 37979 / JCM 10602 / LMG","na":1,"nb":2,"a":[["intestinal-epithelium-bto-0000781.html","intestinal epithelium"]],"b":[["PROSITE%3APS60002","Phosphoketolase signature 1"],["PROSITE%3APS60003","Phosphoketolase signature 2"]]},{"id":"NCBITaxon:579137","l":"Methanocaldococcus vulcanius M7","na":2,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["TED%3AAF-C9RDN7-F1-model_v4_TED02","TED highly-symmetric fold AF-C9RDN7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:59406","l":"Aromatoleum evansii","na":1,"nb":2,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF14535","AMP-binding enzyme C-terminal domain"],["Pfam%3APF12837","4Fe-4S binding domain"]]},{"id":"NCBITaxon:595453","l":"Rhodopirellula sp. SM50","na":2,"nb":1,"a":[["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"]],"b":[["TED%3AAF-A0A2A2WGR6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A2WGR6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:60480","l":"Shewanella sp. (strain MR-4)","na":1,"nb":2,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["Pfam%3APF06276","Ferric iron reductase FhuF-like transporter"],["Pfam%3APF04183","IucA / IucC family"]]},{"id":"NCBITaxon:608538","l":"Hydrogenobacter thermophilus TK-6","na":2,"nb":1,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"],["peninsula-envo-00000305.html","peninsula"]],"b":[["Pfam%3APF17805","AsnC-like ligand binding domain"]]},{"id":"NCBITaxon:6087","l":"Hydra vulgaris","na":1,"nb":2,"a":[["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["Pfam%3APF06369","Sea anemone cytotoxic protein"],["TED%3AAF-B8Y8I7-F1-model_v4_TED01","TED highly-symmetric fold AF-B8Y8I7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:616997","l":"Hoyosella altamirensis","na":2,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["cave-envo-00000067.html","cave"]],"b":[["TED%3AAF-A0A839RM00-F1-model_v4_TED02","TED novel fold AF-A0A839RM00-F1-model_v4_TED02"]]},{"id":"NCBITaxon:623280","l":"Parapedobacter luteus","na":2,"nb":1,"a":[["sewage-envo-00002018.html","sewage"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["TED%3AAF-A0A1T5FI29-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1T5FI29-F1-model_v4_TED01"]]},{"id":"NCBITaxon:642492","l":"Cellulosilyticum lentocellum (strain ATCC 49066 / DSM 5427 / NCIMB 11756 / RHM5)","na":1,"nb":2,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["TED%3AAF-F2JHU0-F1-model_v4_TED01","TED highly-symmetric fold AF-F2JHU0-F1-model_v4_TED01"],["TED%3AAF-F2JQ83-F1-model_v4_TED01","TED highly-symmetric fold AF-F2JQ83-F1-model_v4_TED01"]]},{"id":"NCBITaxon:644107","l":"Ruegeria lacuscaerulensis (strain DSM 11314 / KCTC 2953 / ITI-1157)","na":1,"nb":2,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["Pfam%3APF16867","Dimethlysulfonioproprionate lyase"],["TED%3AAF-D0CYX0-F1-model_v4_TED01","TED novel fold AF-D0CYX0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:649349","l":"Leadbetterella byssophila DSM 17132","na":2,"nb":1,"a":[["compost-envo-00002170.html","compost"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["TED%3AAF-E4RVH3-F1-model_v4_TED02","TED novel fold AF-E4RVH3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:679926","l":"Methanolacinia petrolearia DSM 11571","na":2,"nb":1,"a":[["inlet-envo-00000475.html","inlet"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["TED%3AAF-E1RJC3-F1-model_v4_TED02","TED novel fold AF-E1RJC3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:68170","l":"Lechevalieria aerocolonigenes","na":1,"nb":2,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["Pfam%3APF12902","Ferritin-like"],["TED%3AAF-A0A0F0GZM7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0F0GZM7-F1-model_v4_TED03"]]},{"id":"NCBITaxon:688246","l":"Hallella multisaccharivorax DSM 17128","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["TED%3AAF-F8N9C0-F1-model_v4_TED03","TED novel fold AF-F8N9C0-F1-model_v4_TED03"],["TED%3AAF-F8N9F2-F1-model_v4_TED01","TED novel fold AF-F8N9F2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:68892","l":"Streptococcus infantis","na":2,"nb":1,"a":[["head-bto-0000282.html","head"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["TED%3AAF-A0A0F2E1C7-F1-model_v4_TED04","TED novel fold AF-A0A0F2E1C7-F1-model_v4_TED04"]]},{"id":"NCBITaxon:693216","l":"Cronobacter turicensis z3032","na":2,"nb":1,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["TED%3AAF-C9Y1S3-F1-model_v4_TED01","TED novel fold AF-C9Y1S3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:69969","l":"Macrococcus carouselicus","na":2,"nb":1,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["TED%3AAF-A0A4R6BCC8-F1-model_v4_TED01","TED novel fold AF-A0A4R6BCC8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:7230","l":"Drosophila mojavensis","na":1,"nb":2,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"]],"b":[["Pfam%3APF10562","Calmodulin-binding domain C0 of NMDA receptor NR1 subunit"],["Pfam%3APF13428","Tetratricopeptide repeat"]]},{"id":"NCBITaxon:7425","l":"Nasonia vitripennis","na":2,"nb":1,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["TED%3AAF-A0A7M7QB08-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7M7QB08-F1-model_v4_TED04"]]},{"id":"NCBITaxon:756067","l":"Microcoleus vaginatus FGP-2","na":2,"nb":1,"a":[["desert-area-envo-00000097.html","desert area"],["seamount-envo-00000264.html","seamount"]],"b":[["TED%3AAF-F5UCE7-F1-model_v4_TED03","TED highly-symmetric fold AF-F5UCE7-F1-model_v4_TED03"]]},{"id":"NCBITaxon:756272","l":"Rubinisphaera brasiliensis DSM 5305","na":2,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["TED%3AAF-F0SH04-F1-model_v4_TED04","TED novel fold AF-F0SH04-F1-model_v4_TED04"]]},{"id":"NCBITaxon:7654","l":"Lytechinus variegatus","na":2,"nb":1,"a":[["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["Pfam%3APF02084","Bindin"]]},{"id":"NCBITaxon:78229","l":"Paracidovorax anthurii","na":1,"nb":2,"a":[["leaf-po-0025034.html","leaf"]],"b":[["TED%3AAF-A0A328ZC73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A328ZC73-F1-model_v4_TED01"],["TED%3AAF-A0A328Z0A2-F1-model_v4_TED01","TED novel fold AF-A0A328Z0A2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:794903","l":"Opitutaceae bacterium TAV5","na":2,"nb":1,"a":[["hindgut-bto-0000510.html","hindgut"],["wood-bto-0005516.html","wood"]],"b":[["TED%3AAF-W0J1Y7-F1-model_v4_TED01","TED highly-symmetric fold AF-W0J1Y7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:82367","l":"Paracoccus pantotrophus","na":2,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["Pfam%3APF17805","AsnC-like ligand binding domain"]]},{"id":"NCBITaxon:83554","l":"Chlamydia psittaci","na":2,"nb":1,"a":[["spleen-bto-0001281.html","spleen"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["Pfam%3APF01345","CLIPPER domain"]]},{"id":"NCBITaxon:83555","l":"Chlamydia abortus","na":2,"nb":1,"a":[["elementary-body-bto-0000377.html","elementary body"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["TED%3AAF-A0A5C1D8N1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C1D8N1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:865938","l":"Weeksella virosa DSM 16922","na":2,"nb":1,"a":[["urethra-bto-0001426.html","urethra"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["TED%3AAF-F0P1F3-F1-model_v4_TED01","TED novel fold AF-F0P1F3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:912594","l":"Mycolicibacterium iranicum","na":1,"nb":2,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["TED%3AAF-A0A178LVR2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A178LVR2-F1-model_v4_TED02"],["TED%3AAF-A0A178M0U6-F1-model_v4_TED01","TED novel fold AF-A0A178M0U6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:933063","l":"Dichotomicrobium thermohalophilum","na":1,"nb":2,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["TED%3AAF-A0A397Q5H3-F1-model_v4_TED01","TED novel fold AF-A0A397Q5H3-F1-model_v4_TED01"],["TED%3AAF-A0A397Q636-F1-model_v4_TED02","TED novel fold AF-A0A397Q636-F1-model_v4_TED02"]]},{"id":"NCBITaxon:99656","l":"[Clostridium] fimetarium","na":1,"nb":2,"a":[["animal-waste-material-envo-00002276.html","animal waste material"]],"b":[["TED%3AAF-A0A1I0N088-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I0N088-F1-model_v4_TED02"],["TED%3AAF-A0A1I0QS44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I0QS44-F1-model_v4_TED01"]]},{"id":"UBERON:0001003","l":"skin epidermis","na":1,"nb":2,"a":[["skin-epidermis-uberon-0001003.html","skin epidermis"]],"b":[["GO%3A0008544","epidermis development"],["GO%3A0048730","epidermis morphogenesis"]]},{"id":"UBERON:0001705","l":"nail","na":2,"nb":1,"a":[["nail-uberon-0001705.html","nail"],["nails-habitatmech-gold-1d1529ead1.html","Nails"]],"b":[["GO%3A0035878","nail development"]]},{"id":"UBERON:0002073","l":"","na":2,"nb":1,"a":[["hair-follicle-habitatmech-gold-1e3f47202c.html","Hair follicle"],["hair-follicle-habitatmech-gold-b7fcb62675.html","Hair follicle"]],"b":[["GO%3A0001942","hair follicle development"]]},{"id":"UBERON:0002097","l":"skin of body","na":1,"nb":2,"a":[["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["GO%3A0043588","skin development"],["GO%3A0043589","skin morphogenesis"]]},{"id":"NCBITaxon:1001590","l":"","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["TED%3AAF-M6GW27-F1-model_v4_TED03","TED novel fold AF-M6GW27-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1003237","l":"Nitrospirillum amazonense Y2","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["TED%3AAF-G1Y2J3-F1-model_v4_TED02","TED novel fold AF-G1Y2J3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1017277","l":"","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["TED%3AAF-A0A0V8GEY0-F1-model_v4_TED01","TED novel fold AF-A0A0V8GEY0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1032","l":"Thiothrix sp.","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["TED%3AAF-A0A432UXQ4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A432UXQ4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1032505","l":"Fusobacterium sp. OBRC1","na":1,"nb":1,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["TED%3AAF-X8HXN3-F1-model_v4_TED01","TED highly-symmetric fold AF-X8HXN3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1035309","l":"Ceratocystis fimbriata CBS 114723","na":1,"nb":1,"a":[["plant-bto-0001481.html","plant"]],"b":[["TED%3AAF-A0A2C5WW72-F1-model_v4_TED01","TED novel fold AF-A0A2C5WW72-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1037377","l":"Chryseobacterium viscerum","na":1,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["TED%3AAF-A0A316W9L1-F1-model_v4_TED02","TED novel fold AF-A0A316W9L1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1038014","l":"Aquimarina amphilecti","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["TED%3AAF-A0A1H7GXR7-F1-model_v4_TED01","TED novel fold AF-A0A1H7GXR7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:103816","l":"","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A419ZLU8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A419ZLU8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:103838","l":"","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["TED%3AAF-A0A5S4FRG4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5S4FRG4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1038845","l":"","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["TED%3AAF-A0A6N8H854-F1-model_v4_TED02","TED novel fold AF-A0A6N8H854-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1038928","l":"Streptomyces xinghaiensis","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["TED%3AAF-A0A3R7FP99-F1-model_v4_TED01","TED novel fold AF-A0A3R7FP99-F1-model_v4_TED01"]]},{"id":"NCBITaxon:104205","l":"","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["TED%3AAF-A0A841ECK8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841ECK8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:104660","l":"Pinctada maxima","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["Pfam%3APF03173","Putative carbohydrate binding domain"]]},{"id":"NCBITaxon:104663","l":"","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["TED%3AAF-A0A1G7RSD9-F1-model_v4_TED01","TED novel fold AF-A0A1G7RSD9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1048396","l":"Halopenitus persicus","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["TED%3AAF-A0A1H3M4L7-F1-model_v4_TED01","TED novel fold AF-A0A1H3M4L7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1051531","l":"Saccharothrix tamanrassetensis","na":1,"nb":1,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["TED%3AAF-A0A841CPC6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841CPC6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1052260","l":"","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["TED%3AAF-A0A1H0TFA4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H0TFA4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1052585","l":"","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["TED%3AAF-G4P1P4-F1-model_v4_TED01","TED highly-symmetric fold AF-G4P1P4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1053222","l":"","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["TED%3AAF-J8G3X2-F1-model_v4_TED01","TED highly-symmetric fold AF-J8G3X2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1054202","l":"Rhodobacter viridis","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["TED%3AAF-A0A318TZ12-F1-model_v4_TED01","TED novel fold AF-A0A318TZ12-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1054217","l":"","na":1,"nb":1,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["TED%3AAF-M4YJR5-F1-model_v4_TED01","TED highly-symmetric fold AF-M4YJR5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:106654","l":"","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["TED%3AAF-A0A5Q0RRM8-F1-model_v4_TED01","TED novel fold AF-A0A5Q0RRM8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1071078","l":"Bacillus sp. NSP9.1","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["TED%3AAF-A0A6I7F721-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I7F721-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1078016","l":"","na":1,"nb":1,"a":[["resting-cell-bto-0001170.html","resting cell"]],"b":[["Pfam%3APF08028","Acyl-CoA dehydrogenase, C-terminal domain"]]},{"id":"NCBITaxon:1078050","l":"Seleniivibrio woodruffii","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["TED%3AAF-A0A4R1KEH0-F1-model_v4_TED02","TED novel fold AF-A0A4R1KEH0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1085538","l":"","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["TED%3AAF-M6TC60-F1-model_v4_TED05","TED novel fold AF-M6TC60-F1-model_v4_TED05"]]},{"id":"NCBITaxon:108980","l":"Acinetobacter ursingii","na":1,"nb":1,"a":[["foot-bto-0000476.html","foot"]],"b":[["TED%3AAF-A0A3F3LBR7-F1-model_v4_TED01","TED novel fold AF-A0A3F3LBR7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1094555","l":"Bartonella elizabethae F9251 = ATCC 49927","na":1,"nb":1,"a":[["blood-bto-0000089.html","blood"]],"b":[["TED%3AAF-J1K501-F1-model_v4_TED02","TED highly-symmetric fold AF-J1K501-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1100720","l":"Limnohabitans sp. Rim28","na":1,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["TED%3AAF-A0A2T7SZL1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T7SZL1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1107882","l":"Mesorhizobium alhagi CCNWXJ12-2","na":1,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["TED%3AAF-H0I1K0-F1-model_v4_TED01","TED novel fold AF-H0I1K0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1108595","l":"Chromobacterium vaccinii","na":1,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["TED%3AAF-A0A2L2B8V3-F1-model_v4_TED02","TED novel fold AF-A0A2L2B8V3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1111454","l":"","na":1,"nb":1,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["TED%3AAF-U7UHK7-F1-model_v4_TED01","TED novel fold AF-U7UHK7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1112204","l":"","na":1,"nb":1,"a":[["latex-bto-0000710.html","latex"]],"b":[["TED%3AAF-H6N0Q7-F1-model_v4_TED01","TED novel fold AF-H6N0Q7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1116472","l":"Methyloglobulus morosus KoM1","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["TED%3AAF-V5BKR0-F1-model_v4_TED01","TED highly-symmetric fold AF-V5BKR0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1120926","l":"Acinetobacter gerneri DSM 14967 = CIP 107464 = MTCC 9824","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["TED%3AAF-N8ZKV3-F1-model_v4_TED01","TED highly-symmetric fold AF-N8ZKV3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1120996","l":"Anaerosporobacter mobilis DSM 15930","na":1,"nb":1,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["TED%3AAF-A0A1M7NGC0-F1-model_v4_TED01","TED novel fold AF-A0A1M7NGC0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121098","l":"Phocaeicola massiliensis B84634 = Timone 84634 = DSM 17679 = JCM 13223","na":1,"nb":1,"a":[["blood-bto-0000089.html","blood"]],"b":[["TED%3AAF-U6RRG8-F1-model_v4_TED01","TED highly-symmetric fold AF-U6RRG8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121326","l":"Clostridium magnum DSM 2767","na":1,"nb":1,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["TED%3AAF-A0A162T1A8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A162T1A8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121336","l":"Thermoclostridium stercorarium subsp. thermolacticum DSM 2910","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["TED%3AAF-A0A1B1YDV6-F1-model_v4_TED02","TED novel fold AF-A0A1B1YDV6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1121424","l":"Desulfotruncus arcticus DSM 17038","na":1,"nb":1,"a":[["sea-coast-envo-00000303.html","sea coast"]],"b":[["TED%3AAF-A0A1I2Z3E3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I2Z3E3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1121426","l":"Desulfoscipio geothermicus DSM 3669","na":1,"nb":1,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["TED%3AAF-A0A1I6DXW2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I6DXW2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121898","l":"","na":1,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"]],"b":[["TED%3AAF-A0A0A2M8C2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A2M8C2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1122169","l":"Legionella shakespearei DSM 23087","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["TED%3AAF-A0A0W0YL59-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0W0YL59-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1122189","l":"Malonomonas rubra DSM 5091","na":1,"nb":1,"a":[["canal-envo-00000014.html","canal"]],"b":[["TED%3AAF-A0A1M6IYP5-F1-model_v4_TED01","TED novel fold AF-A0A1M6IYP5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1122247","l":"","na":1,"nb":1,"a":[["urethra-bto-0001426.html","urethra"]],"b":[["Pfam%3APF22422","Mannosylglycerate hydrolase MGH1-like glycoside hydrolase domain"]]},{"id":"NCBITaxon:1122252","l":"Marinospirillum celere","na":1,"nb":1,"a":[["island-envo-00000098.html","island"]],"b":[["TED%3AAF-A0A1I1DUZ3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1I1DUZ3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1123078","l":"","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["Pfam%3APF26164","Bacterial Gasdermin Family"]]},{"id":"NCBITaxon:1123282","l":"Sporobacter termitidis DSM 10068","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["TED%3AAF-A0A1M5VTW1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M5VTW1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1125876","l":"Halpernia frigidisoli","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["TED%3AAF-A0A1I3H4T1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I3H4T1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1129374","l":"Alishewanella jeotgali KCTC 22429","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["TED%3AAF-H3ZBB0-F1-model_v4_TED01","TED highly-symmetric fold AF-H3ZBB0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:113355","l":"","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["Pfam%3APF18921","Cyanophycin synthase-like N-terminal domain"]]},{"id":"NCBITaxon:1134687","l":"Klebsiella michiganensis","na":1,"nb":1,"a":[["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"]],"b":[["TED%3AAF-A0A443W129-F1-model_v4_TED01","TED novel fold AF-A0A443W129-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1141221","l":"Chryseobacterium taihuense","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["TED%3AAF-A0A4U8WD57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8WD57-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1144618","l":"Allonocardiopsis opalescens","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["TED%3AAF-A0A2T0QE02-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T0QE02-F1-model_v4_TED01"]]},{"id":"NCBITaxon:114527","l":"Mogibacterium diversum","na":1,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["TED%3AAF-A0A2S0L5I6-F1-model_v4_TED02","TED novel fold AF-A0A2S0L5I6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1148157","l":"Acinetobacter oleivorans","na":1,"nb":1,"a":[["plume-bto-0002480.html","plume"]],"b":[["TED%3AAF-A0A0B2UAV2-F1-model_v4_TED02","TED novel fold AF-A0A0B2UAV2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:115778","l":"Leuconostoc gasicomitatum","na":1,"nb":1,"a":[["research-facility-envo-00000469.html","research facility"]],"b":[["TED%3AAF-A0A7H9BD19-F1-model_v4_TED01","TED novel fold AF-A0A7H9BD19-F1-model_v4_TED01"]]},{"id":"NCBITaxon:115808","l":"Bradyrhizobium sp. ORS 285","na":1,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["TED%3AAF-A0A1Y6KEH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y6KEH3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:115979","l":"","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["TED%3AAF-A0A2N0Z186-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N0Z186-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1161919","l":"Erwinia piriflorinigrans CFBP 5888","na":1,"nb":1,"a":[["flower-bto-0000469.html","flower"]],"b":[["TED%3AAF-V5Z5E5-F1-model_v4_TED01","TED novel fold AF-V5Z5E5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1162967","l":"Diaminobutyricimonas aerilata","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["TED%3AAF-A0A2M9CH35-F1-model_v4_TED01","TED novel fold AF-A0A2M9CH35-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1163745","l":"","na":1,"nb":1,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["TED%3AAF-I0EUT8-F1-model_v4_TED01","TED novel fold AF-I0EUT8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1163748","l":"","na":1,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["Pfam%3APF13205","Bacterial Ig-like domain"]]},{"id":"NCBITaxon:1164594","l":"Massilia yuzhufengensis","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["TED%3AAF-A0A1I1LD95-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I1LD95-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1173995","l":"Parvularcula dongshanensis","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["TED%3AAF-A0A840I3S3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A840I3S3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1176176","l":"Methylobacterium haplocladii","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["TED%3AAF-A0A512INB8-F1-model_v4_TED02","TED novel fold AF-A0A512INB8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1178016","l":"Encephalitozoon romaleae SJ-2008","na":1,"nb":1,"a":[["microsporidian-bto-0003132.html","microsporidian"]],"b":[["IEDB%3A229985","epitope FGVKIHFFKQRNSL"]]},{"id":"NCBITaxon:1186196","l":"Natrinema salaciae","na":1,"nb":1,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["TED%3AAF-A0A1H9QMZ8-F1-model_v4_TED01","TED novel fold AF-A0A1H9QMZ8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1188229","l":"","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["TED%3AAF-A0A1J0AGF7-F1-model_v4_TED01","TED novel fold AF-A0A1J0AGF7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1198114","l":"","na":1,"nb":1,"a":[["area-designated-as-a-nature-reserve-envo-00000363.html","area designated as a nature reserve"]],"b":[["TED%3AAF-E8X149-F1-model_v4_TED01","TED highly-symmetric fold AF-E8X149-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1210091","l":"Nocardia ninae NBRC 108245","na":1,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["TED%3AAF-A0A511MS59-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A511MS59-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1210932","l":"Peteryoungia ipomoeae","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["TED%3AAF-A0A4S8P7B5-F1-model_v4_TED01","TED novel fold AF-A0A4S8P7B5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1212765","l":"","na":1,"nb":1,"a":[["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["TED%3AAF-I7CFH3-F1-model_v4_TED01","TED novel fold AF-I7CFH3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1216006","l":"Vibrio aerogenes CECT 7868","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["TED%3AAF-A0A1M5VN06-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M5VN06-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1227498","l":"Natronococcus jeotgali DSM 18795","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["TED%3AAF-L9WM09-F1-model_v4_TED01","TED novel fold AF-L9WM09-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1236689","l":"","na":1,"nb":1,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["TED%3AAF-M9SC19-F1-model_v4_TED01","TED highly-symmetric fold AF-M9SC19-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1241906","l":"-","na":1,"nb":1,"a":[["nb-4-cell-bto-0002136.html","NB-4 cell"]],"b":[["TED%3AAF-M6ZXW8-F1-model_v4_TED01","TED highly-symmetric fold AF-M6ZXW8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1245469","l":"Bradyrhizobium oligotrophicum S58","na":1,"nb":1,"a":[["bacteroid-bto-0000109.html","bacteroid"]],"b":[["TED%3AAF-M4ZLP8-F1-model_v4_TED01","TED highly-symmetric fold AF-M4ZLP8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1262550","l":"Brevibacterium jeotgali","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["TED%3AAF-A0A2H1L8Q0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H1L8Q0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1262583","l":"Tamaricihabitans halophyticus","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["TED%3AAF-A0A4R2RDI5-F1-model_v4_TED01","TED novel fold AF-A0A4R2RDI5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1263636","l":"Microbacterium kyungheense","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["TED%3AAF-A0A543F149-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A543F149-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1267768","l":"Brevirhabdus pacifica","na":1,"nb":1,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["TED%3AAF-A0A2M9DE94-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M9DE94-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1268635","l":"Legionella oakridgensis ATCC 33761 = DSM 21215","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["TED%3AAF-W0BCQ3-F1-model_v4_TED02","TED highly-symmetric fold AF-W0BCQ3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1273541","l":"Pyrodictium delaneyi","na":1,"nb":1,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["TED%3AAF-A0A211YRF7-F1-model_v4_TED01","TED novel fold AF-A0A211YRF7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1274631","l":"Bradyrhizobium icense","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["TED%3AAF-A0A533IQI7-F1-model_v4_TED02","TED novel fold AF-A0A533IQI7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1276220","l":"Spiroplasma taiwanense CT-1","na":1,"nb":1,"a":[["cardiovascular-system-bto-0000088.html","cardiovascular system"]],"b":[["TED%3AAF-S5LY17-F1-model_v4_TED02","TED novel fold AF-S5LY17-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1276221","l":"Spiroplasma diminutum CUAS-1","na":1,"nb":1,"a":[["cardiovascular-system-bto-0000088.html","cardiovascular system"]],"b":[["TED%3AAF-S5M2Q1-F1-model_v4_TED01","TED novel fold AF-S5M2Q1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1291742","l":"","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["TED%3AAF-A0A0A1GYI0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A1GYI0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1298595","l":"Veillonella rogosae JCM 15642","na":1,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["TED%3AAF-A0A2S7YXG0-F1-model_v4_TED02","TED novel fold AF-A0A2S7YXG0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1307761","l":"","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["TED%3AAF-V5WIK3-F1-model_v4_TED01","TED highly-symmetric fold AF-V5WIK3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1324350","l":"Acinetobacter equi","na":1,"nb":1,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["TED%3AAF-A0A0N9WF70-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0N9WF70-F1-model_v4_TED01"]]},{"id":"NCBITaxon:132476","l":"","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A1H5FUT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H5FUT8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1333523","l":"Salinarchaeum sp. Harcht-Bsk1","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["TED%3AAF-R4VXQ2-F1-model_v4_TED01","TED highly-symmetric fold AF-R4VXQ2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1341157","l":"Ruminococcus flavefaciens 007c","na":1,"nb":1,"a":[["fiber-bto-0000450.html","fiber"]],"b":[["TED%3AAF-W7UF30-F1-model_v4_TED01","TED novel fold AF-W7UF30-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1342794","l":"Photobacterium sanctipauli","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["TED%3AAF-A0A2T3P194-F1-model_v4_TED01","TED novel fold AF-A0A2T3P194-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1346286","l":"","na":1,"nb":1,"a":[["hindgut-bto-0000510.html","hindgut"]],"b":[["TED%3AAF-A0A1M4VXX6-F1-model_v4_TED02","TED novel fold AF-A0A1M4VXX6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1348114","l":"Pseudoalteromonas piratica","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["TED%3AAF-A0A0A7EDY8-F1-model_v4_TED01","TED novel fold AF-A0A0A7EDY8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1365176","l":"","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["TED%3AAF-A0A7C1CCT4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C1CCT4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1424653","l":"Caminibacter pacificus","na":1,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["TED%3AAF-A0A3N1YR43-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3N1YR43-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1431546","l":"Corynebacterium aquilae DSM 44791","na":1,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["TED%3AAF-A0A1L7CFU4-F1-model_v4_TED03","TED novel fold AF-A0A1L7CFU4-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1497681","l":"","na":1,"nb":1,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["TED%3AAF-A0A841Z083-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A841Z083-F1-model_v4_TED02"]]},{"id":"NCBITaxon:150","l":"Spirochaeta isovalerica","na":1,"nb":1,"a":[["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["TED%3AAF-A0A841R6V2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841R6V2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1500506","l":"Halopolyspora algeriensis","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["TED%3AAF-A0A368VEW2-F1-model_v4_TED01","TED novel fold AF-A0A368VEW2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:150053","l":"Yersinia enterocolitica subsp. palearctica","na":1,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["TED%3AAF-A0A6M1Q6Y0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6M1Q6Y0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1507806","l":"Campylobacter fetus subsp. testudinum","na":1,"nb":1,"a":[["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["TED%3AAF-A0A2S0JEW5-F1-model_v4_TED02","TED novel fold AF-A0A2S0JEW5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:151783","l":"Cupriavidus campinensis","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["TED%3AAF-A0A556UPV6-F1-model_v4_TED01","TED novel fold AF-A0A556UPV6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1524097","l":"Massilia glaciei","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["TED%3AAF-A0A2U2HFI6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U2HFI6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1526762","l":"Vibrio sp. B183","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["TED%3AAF-A0A086WSI7-F1-model_v4_TED02","TED novel fold AF-A0A086WSI7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:156133","l":"Prasinoderma coloniale","na":1,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A7R9Y3T8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7R9Y3T8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1574623","l":"Lyngbya confervoides BDU141951","na":1,"nb":1,"a":[["filament-bto-0000463.html","filament"]],"b":[["TED%3AAF-A0A0C1V1F7-F1-model_v4_TED01","TED novel fold AF-A0A0C1V1F7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:157733","l":"Alkalihalobacillus macyae","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["TED%3AAF-A0A0J6FWV9-F1-model_v4_TED01","TED novel fold AF-A0A0J6FWV9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1577902","l":"Leisingera sp. ANG-M7","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["TED%3AAF-A0A0C1IJ64-F1-model_v4_TED02","TED novel fold AF-A0A0C1IJ64-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1577905","l":"Tateyamaria sp. ANG-S1","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["TED%3AAF-A0A0B4CZX6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0B4CZX6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1585","l":"Lactobacillus delbrueckii subsp. bulgaricus","na":1,"nb":1,"a":[["pig-manure-envo-00003860.html","pig manure"]],"b":[["TED%3AAF-A0A809EIY6-F1-model_v4_TED02","TED novel fold AF-A0A809EIY6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1604","l":"Lactobacillus amylovorus","na":1,"nb":1,"a":[["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["Pfam%3APF10439","Bacteriocin class II with double-glycine leader peptide"]]},{"id":"NCBITaxon:1612149","l":"Chryseobacterium limigenitum","na":1,"nb":1,"a":[["waste-material-envo-00002264.html","waste material"]],"b":[["TED%3AAF-A0A1K2ISG6-F1-model_v4_TED01","TED novel fold AF-A0A1K2ISG6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:161879","l":"Corynebacterium kroppenstedtii","na":1,"nb":1,"a":[["breast-bto-0000149.html","breast"]],"b":[["TED%3AAF-A0A2N6TDE9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N6TDE9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1639133","l":"Citrobacter portucalensis","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["TED%3AAF-A0A7I7D4I9-F1-model_v4_TED01","TED novel fold AF-A0A7I7D4I9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1648404","l":"","na":1,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["TED%3AAF-A0A0H4VAN8-F1-model_v4_TED01","TED novel fold AF-A0A0H4VAN8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1690","l":"Bifidobacterium pseudolongum subsp. globosum","na":1,"nb":1,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["TED%3AAF-A0A4Q5B3M5-F1-model_v4_TED01","TED novel fold AF-A0A4Q5B3M5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1703352","l":"","na":1,"nb":1,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["TED%3AAF-A0A0S8JVR9-F1-model_v4_TED02","TED novel fold AF-A0A0S8JVR9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1703960","l":"Rhizobium sp. N113","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["TED%3AAF-A0A192M071-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A192M071-F1-model_v4_TED01"]]},{"id":"NCBITaxon:170673","l":"Vibrio kanaloae","na":1,"nb":1,"a":[["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["TED%3AAF-A0A4U1Z3U9-F1-model_v4_TED01","TED novel fold AF-A0A4U1Z3U9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1716141","l":"Streptomyces jeddahensis","na":1,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["TED%3AAF-A0A177HQP2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A177HQP2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:171674","l":"Inquilinus limosus","na":1,"nb":1,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"]],"b":[["TED%3AAF-A0A211ZKE4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A211ZKE4-F1-model_v4_TED03"]]},{"id":"NCBITaxon:172044","l":"Sphingomonas yabuuchiae","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["TED%3AAF-A0A147IMF7-F1-model_v4_TED02","TED novel fold AF-A0A147IMF7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1727163","l":"","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["TED%3AAF-A0A142ENK3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142ENK3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:173365","l":"Methylobacter tundripaludum","na":1,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A2S6HGL6-F1-model_v4_TED02","TED novel fold AF-A0A2S6HGL6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:173959","l":"Brevibacillus invocatus","na":1,"nb":1,"a":[["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"]],"b":[["TED%3AAF-A0A3M8C5C7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M8C5C7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:174","l":"Leptospira borgpetersenii","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["Pfam%3APF01548","Transposase"]]},{"id":"NCBITaxon:1761780","l":"Butyrivibrio sp. ob235","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["TED%3AAF-A0A1H7I3V4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H7I3V4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1761884","l":"Prevotella sp. khp1","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["TED%3AAF-A0A1H0Y2B2-F1-model_v4_TED01","TED novel fold AF-A0A1H0Y2B2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1767","l":"Mycobacterium intracellulare","na":1,"nb":1,"a":[["co-culture-habitatmech-bacdive-ff945d8a69.html","Co-culture"]],"b":[["Pfam%3APF18914","Domain of unknown function (DUF5666)"]]},{"id":"NCBITaxon:177437","l":"","na":1,"nb":1,"a":[["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["TED%3AAF-C0QA36-F1-model_v4_TED03","TED novel fold AF-C0QA36-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1774373","l":"Alteromonas mediterranea DE","na":1,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["IEDB%3A125923","epitope EMMQWWSDY"]]},{"id":"NCBITaxon:1795630","l":"Frondihabitans sp. PAMC 28766","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["TED%3AAF-A0A126Z0C8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A126Z0C8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1797220","l":"","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["TED%3AAF-A0A1F2Z3M8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F2Z3M8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1798185","l":"Pseudobutyrivibrio sp. UC1225","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["TED%3AAF-A0A1I5GI49-F1-model_v4_TED01","TED novel fold AF-A0A1I5GI49-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1799789","l":"Paraglaciecola hydrolytica","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["TED%3AAF-A0A135ZZ80-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A135ZZ80-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1812935","l":"Enterobacter roggenkampii","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["TED%3AAF-A0A7D6U4G9-F1-model_v4_TED01","TED novel fold AF-A0A7D6U4G9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1829","l":"Rhodococcus rhodochrous","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"]]},{"id":"NCBITaxon:1843237","l":"Sphingomonas prati","na":1,"nb":1,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["TED%3AAF-A0A7W9BV99-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W9BV99-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1852","l":"Saccharomonospora viridis","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["TED%3AAF-A0A837DC99-F1-model_v4_TED01","TED novel fold AF-A0A837DC99-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1869214","l":"Rheinheimera sp.","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["TED%3AAF-A0A2D5RQK8-F1-model_v4_TED01","TED novel fold AF-A0A2D5RQK8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1870902","l":"Leifsonia sp.","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["TED%3AAF-A0A2E0SSA9-F1-model_v4_TED02","TED novel fold AF-A0A2E0SSA9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1871043","l":"Variovorax sp.","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["TED%3AAF-A0A2E9BKC8-F1-model_v4_TED02","TED novel fold AF-A0A2E9BKC8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:187303","l":"","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["TED%3AAF-J7QPR6-F1-model_v4_TED01","TED novel fold AF-J7QPR6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:187327","l":"Acidaminococcus intestini","na":1,"nb":1,"a":[["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["TED%3AAF-C0WBZ8-F1-model_v4_TED01","TED highly-symmetric fold AF-C0WBZ8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1881060","l":"Clostridium sp. USBA 49","na":1,"nb":1,"a":[["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"]],"b":[["TED%3AAF-A0A1T4XFS6-F1-model_v4_TED02","TED novel fold AF-A0A1T4XFS6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1882750","l":"Burkholderia sp. GAS332","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["TED%3AAF-A0A1N6LVR0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1N6LVR0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1882752","l":"Singulisphaera sp. GP187","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["TED%3AAF-A0A1N6KHP4-F1-model_v4_TED02","TED novel fold AF-A0A1N6KHP4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1882832","l":"Paenibacillaceae bacterium GAS479","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["TED%3AAF-A0A1H1ZWX8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H1ZWX8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1888168","l":"Curvibacter sp.","na":1,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["TED%3AAF-A0A433BGD3-F1-model_v4_TED01","TED novel fold AF-A0A433BGD3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1890675","l":"Herbaspirillum sp.","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["TED%3AAF-A0A2E7PAN6-F1-model_v4_TED02","TED novel fold AF-A0A2E7PAN6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1904","l":"Streptomyces cyaneus","na":1,"nb":1,"a":[["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["Pfam%3APF04673","Polyketide synthesis cyclase"]]},{"id":"NCBITaxon:1907575","l":"Jatrophihabitans sp. GAS493","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["TED%3AAF-A0A286EQ27-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A286EQ27-F1-model_v4_TED01"]]},{"id":"NCBITaxon:191292","l":"Rhodococcus aetherivorans","na":1,"nb":1,"a":[["bcp-1-cell-bto-0002728.html","BCP-1 cell"]],"b":[["TED%3AAF-N1LZY7-F1-model_v4_TED01","TED highly-symmetric fold AF-N1LZY7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1926630","l":"","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["TED%3AAF-A0A6I4U4Z5-F1-model_v4_TED03","TED novel fold AF-A0A6I4U4Z5-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1938870","l":"","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["TED%3AAF-A0A286BLC6-F1-model_v4_TED02","TED novel fold AF-A0A286BLC6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:195913","l":"","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["TED%3AAF-A0A1I4CVX6-F1-model_v4_TED03","TED novel fold AF-A0A1I4CVX6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1967","l":"Streptomyces kanamyceticus","na":1,"nb":1,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Pfam%3APF13579","Glycosyl transferase 4-like domain"]]},{"id":"NCBITaxon:2024860","l":"Spongiibacter sp.","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["TED%3AAF-A0A2D7WH13-F1-model_v4_TED03","TED novel fold AF-A0A2D7WH13-F1-model_v4_TED03"]]},{"id":"NCBITaxon:203","l":"Campylobacter rectus","na":1,"nb":1,"a":[["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["TED%3AAF-A0A6G5QQ81-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A6G5QQ81-F1-model_v4_TED04"]]},{"id":"NCBITaxon:2030","l":"Kibdelosporangium aridum","na":1,"nb":1,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["TED%3AAF-A0A1W1ZQL0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W1ZQL0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2051","l":"Mobiluncus curtisii","na":1,"nb":1,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["TED%3AAF-A0A7Y0UGC2-F1-model_v4_TED01","TED novel fold AF-A0A7Y0UGC2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:205918","l":"Pseudomonas syringae pv. syringae B728a","na":1,"nb":1,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["Pfam%3APF15457","Type III T3SS secreted effector HopW1-1/HopPmaA"]]},{"id":"NCBITaxon:2125990","l":"Pseudodesulfovibrio hydrargyri","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["TED%3AAF-A0A1J5N6X0-F1-model_v4_TED02","TED novel fold AF-A0A1J5N6X0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:212717","l":"","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["Pfam%3APF08453","Peptidase family M9 N-terminal"]]},{"id":"NCBITaxon:2148","l":"Acholeplasma laidlawii","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["TED%3AAF-A0A553IH20-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A553IH20-F1-model_v4_TED04"]]},{"id":"NCBITaxon:2164","l":"Methanobacterium sp.","na":1,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"]],"b":[["TED%3AAF-A0A6A8RVR7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6A8RVR7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:216778","l":"Stenotrophomonas rhizophila","na":1,"nb":1,"a":[["style-bto-0001313.html","style"]],"b":[["TED%3AAF-A0A023XYG6-F1-model_v4_TED02","TED novel fold AF-A0A023XYG6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:216895","l":"Vibrio vulnificus CMCP6","na":1,"nb":1,"a":[["hela-cell-bto-0000567.html","HeLa cell"]],"b":[["Pfam%3APF18416","N-acetylglucosamine binding protein domain 2"]]},{"id":"NCBITaxon:218208","l":"Desulfatibacillum aliphaticivorans","na":1,"nb":1,"a":[["watercourse-envo-00000029.html","watercourse"]],"b":[["TED%3AAF-B8FC96-F1-model_v4_TED02","TED highly-symmetric fold AF-B8FC96-F1-model_v4_TED02"]]},{"id":"NCBITaxon:223788","l":"Balnearium lithotrophicum","na":1,"nb":1,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["TED%3AAF-A0A521D8E7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A521D8E7-F1-model_v4_TED03"]]},{"id":"NCBITaxon:2242","l":"Halobacterium salinarum","na":1,"nb":1,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["Pfam%3APF07232","Putative rep protein (DUF1424)"]]},{"id":"NCBITaxon:225324","l":"Enhydrobacter aerosaccus","na":1,"nb":1,"a":[["nectar-bto-0000537.html","nectar"]],"b":[["TED%3AAF-A0A1T4TCH1-F1-model_v4_TED01","TED novel fold AF-A0A1T4TCH1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:225849","l":"","na":1,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["TED%3AAF-B8CPC1-F1-model_v4_TED01","TED novel fold AF-B8CPC1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:225991","l":"Comamonas aquatica","na":1,"nb":1,"a":[["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["TED%3AAF-A0A8B0TG78-F1-model_v4_TED02","TED novel fold AF-A0A8B0TG78-F1-model_v4_TED02"]]},{"id":"NCBITaxon:227605","l":"","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A4U8Z7R3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8Z7R3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:229919","l":"Anaerolinea thermolimosa","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["TED%3AAF-A0A3D1JEJ6-F1-model_v4_TED03","TED novel fold AF-A0A3D1JEJ6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:230089","l":"Photorhabdus thracensis","na":1,"nb":1,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["TED%3AAF-A0A0F7LMP9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F7LMP9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:231438","l":"","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["TED%3AAF-A0A4U8YKH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8YKH3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:234621","l":"Rhodococcus erythropolis PR4","na":1,"nb":1,"a":[["joint-bto-0001686.html","joint"]],"b":[["TED%3AAF-C0ZLI2-F1-model_v4_TED01","TED novel fold AF-C0ZLI2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:243265","l":"Photorhabdus laumondii subsp. laumondii TTO1","na":1,"nb":1,"a":[["carcass-bto-0001965.html","carcass"]],"b":[["Pfam%3APF07927","HicA toxin of bacterial toxin-antitoxin,"]]},{"id":"NCBITaxon:246432","l":"Staphylococcus equorum","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["TED%3AAF-A0A1B1GAW5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1B1GAW5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:250","l":"Chryseobacterium gleum","na":1,"nb":1,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["TED%3AAF-A0A448B167-F1-model_v4_TED02","TED novel fold AF-A0A448B167-F1-model_v4_TED02"]]},{"id":"NCBITaxon:252514","l":"","na":1,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["Pfam%3APF18040","beta porphyranase A C-terminal"]]},{"id":"NCBITaxon:253239","l":"","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["TED%3AAF-A0A386XVY3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A386XVY3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:257363","l":"","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Pfam%3APF12334","Rickettsia outer membrane protein B, passenger domain"]]},{"id":"NCBITaxon:259564","l":"","na":1,"nb":1,"a":[["hypolimnion-envo-00002130.html","hypolimnion"]],"b":[["TED%3AAF-Q12W09-F1-model_v4_TED02","TED novel fold AF-Q12W09-F1-model_v4_TED02"]]},{"id":"NCBITaxon:266117","l":"","na":1,"nb":1,"a":[["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["TED%3AAF-Q1AVL5-F1-model_v4_TED02","TED highly-symmetric fold AF-Q1AVL5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:267671","l":"","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["Pfam%3APF05262","Borrelia P83/100 protein"]]},{"id":"NCBITaxon:267747","l":"Cutibacterium acnes KPA171202","na":1,"nb":1,"a":[["sebaceous-gland-bto-0001980.html","sebaceous gland"]],"b":[["Pfam%3APF27542","ArfC"]]},{"id":"NCBITaxon:272831","l":"","na":1,"nb":1,"a":[["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["Pfam%3APF27460","ATP phosphoribosyltransferase subunit HisZ C-terminal domain"]]},{"id":"NCBITaxon:272951","l":"","na":1,"nb":1,"a":[["endothelial-cell-bto-0001176.html","endothelial cell"]],"b":[["Pfam%3APF22203","Surface cell antigen Sca2 helical repeat"]]},{"id":"NCBITaxon:273384","l":"Brevibacterium aurantiacum","na":1,"nb":1,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["TED%3AAF-A0A556CK32-F1-model_v4_TED02","TED novel fold AF-A0A556CK32-F1-model_v4_TED02"]]},{"id":"NCBITaxon:278992","l":"Streptomyces ambofaciens ATCC 23877","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF00553","Cellulose binding domain"]]},{"id":"NCBITaxon:279238","l":"","na":1,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"]],"b":[["MCSA%3A960","mannonate dehydratase"]]},{"id":"NCBITaxon:28031","l":"Lysinibacillus fusiformis","na":1,"nb":1,"a":[["organic-waste-material-envo-00002873.html","organic waste material"]],"b":[["TED%3AAF-A0A1E4QZZ2-F1-model_v4_TED04","TED novel fold AF-A0A1E4QZZ2-F1-model_v4_TED04"]]},{"id":"NCBITaxon:28113","l":"","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["TED%3AAF-A0A449I749-F1-model_v4_TED01","TED novel fold AF-A0A449I749-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28181","l":"Magnetovibrio blakemorei","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["TED%3AAF-A0A1E5Q9I9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E5Q9I9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28198","l":"Aliarcobacter cryaerophilus","na":1,"nb":1,"a":[["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["TED%3AAF-A0A2S9SPY1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S9SPY1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:284579","l":"","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["TED%3AAF-A0A3R9PEH4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R9PEH4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:288681","l":"","na":1,"nb":1,"a":[["carcass-envo-00002033.html","carcass"]],"b":[["TED%3AAF-Q4V119-F1-model_v4_TED01","TED highly-symmetric fold AF-Q4V119-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28892","l":"Methanofollis liminatans DSM 4140","na":1,"nb":1,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["TED%3AAF-J0S6K4-F1-model_v4_TED02","TED novel fold AF-J0S6K4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:291645","l":"Bacteroides nordii","na":1,"nb":1,"a":[["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["TED%3AAF-A0A413VD19-F1-model_v4_TED01","TED novel fold AF-A0A413VD19-F1-model_v4_TED01"]]},{"id":"NCBITaxon:29303","l":"Streptomyces cattleya","na":1,"nb":1,"a":[["clay-envo-00002982.html","clay"]],"b":[["Pfam%3APF22636","Fluoroacetyl-CoA-specific thioesterase"]]},{"id":"NCBITaxon:293614","l":"Rickettsia akari str. Hartford","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["IEDB%3A126053","epitope FTARIIIFS"]]},{"id":"NCBITaxon:29422","l":"Legionella brunensis","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["TED%3AAF-A0A0W0RZW2-F1-model_v4_TED03","TED novel fold AF-A0A0W0RZW2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:29447","l":"Xanthomonas albilineans","na":1,"nb":1,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["TED%3AAF-A0A6P1SIK7-F1-model_v4_TED02","TED novel fold AF-A0A6P1SIK7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:29554","l":"Metamycoplasma canadense","na":1,"nb":1,"a":[["inflammatory-cell-bto-0003861.html","inflammatory cell"]],"b":[["TED%3AAF-A0A077LB01-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A077LB01-F1-model_v4_TED02"]]},{"id":"NCBITaxon:29557","l":"Mycoplasmopsis gallinarum","na":1,"nb":1,"a":[["medial-geniculate-nucleus-bto-0002670.html","medial geniculate nucleus"]],"b":[["TED%3AAF-A0A168RG78-F1-model_v4_TED05","TED novel fold AF-A0A168RG78-F1-model_v4_TED05"]]},{"id":"NCBITaxon:29581","l":"","na":1,"nb":1,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["TED%3AAF-A0A853SDQ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A853SDQ0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:298","l":"Pseudomonas marginalis","na":1,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["PROSITE%3APS00330","Hemolysin-type calcium-binding region signature"]]},{"id":"NCBITaxon:299767","l":"Enterobacter ludwigii","na":1,"nb":1,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["TED%3AAF-W0BYN9-F1-model_v4_TED01","TED highly-symmetric fold AF-W0BYN9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:300","l":"","na":1,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"]],"b":[["TED%3AAF-A0A550EU84-F1-model_v4_TED01","TED novel fold AF-A0A550EU84-F1-model_v4_TED01"]]},{"id":"NCBITaxon:301154","l":"Sphingomonas oligophenolica","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["TED%3AAF-A0A502CIK8-F1-model_v4_TED02","TED novel fold AF-A0A502CIK8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:304","l":"","na":1,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"]],"b":[["Pfam%3APF09081","Glucan 1,4-alpha-maltotetraohydrolase, domain C"]]},{"id":"NCBITaxon:306537","l":"","na":1,"nb":1,"a":[["bone-marrow-bto-0000141.html","bone marrow"]],"b":[["TED%3AAF-Q4JSH9-F1-model_v4_TED02","TED novel fold AF-Q4JSH9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:315277","l":"","na":1,"nb":1,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["Pfam%3APF05745","Chlamydia 15 kDa cysteine-rich outer membrane protein (CRPA)"]]},{"id":"NCBITaxon:317010","l":"Enterococcus canintestini","na":1,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"]],"b":[["TED%3AAF-A0A1L8R2Z2-F1-model_v4_TED01","TED novel fold AF-A0A1L8R2Z2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:317577","l":"Deinococcus ficus","na":1,"nb":1,"a":[["waste-treatment-plant-envo-00002272.html","waste treatment plant"]],"b":[["TED%3AAF-A0A221T2Q9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A221T2Q9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:318751","l":"Westerdykella ornata","na":1,"nb":1,"a":[["desert-sand-envo-00005800.html","desert sand"]],"b":[["TED%3AAF-A0A6A6JM44-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6A6JM44-F1-model_v4_TED02"]]},{"id":"NCBITaxon:32019","l":"Campylobacter fetus subsp. fetus","na":1,"nb":1,"a":[["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["TED%3AAF-A0A0S4SB94-F1-model_v4_TED05","TED novel fold AF-A0A0S4SB94-F1-model_v4_TED05"]]},{"id":"NCBITaxon:32021","l":"Campylobacter jejuni subsp. doylei","na":1,"nb":1,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["TED%3AAF-A0A381D4M6-F1-model_v4_TED01","TED novel fold AF-A0A381D4M6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:320388","l":"","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Pfam%3APF27460","ATP phosphoribosyltransferase subunit HisZ C-terminal domain"]]},{"id":"NCBITaxon:321267","l":"","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["TED%3AAF-A0A0P1EQT4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0P1EQT4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:321985","l":"Pseudoduganella lutea","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["TED%3AAF-A0A4V0Z4E3-F1-model_v4_TED01","TED novel fold AF-A0A4V0Z4E3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:323259","l":"Methanospirillum hungatei JF-1","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["Pfam%3APF01864","CDP-archaeol synthase"]]},{"id":"NCBITaxon:326424","l":"","na":1,"nb":1,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["Pfam%3APF14403","Circularly permuted ATP-grasp type 2"]]},{"id":"NCBITaxon:335284","l":"","na":1,"nb":1,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["Pfam%3APF10414","Sirohaem synthase dimerisation region"]]},{"id":"NCBITaxon:336203","l":"","na":1,"nb":1,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["TED%3AAF-A0A4Q4J272-F1-model_v4_TED01","TED novel fold AF-A0A4Q4J272-F1-model_v4_TED01"]]},{"id":"NCBITaxon:33967","l":"Leuconostoc mesenteroides subsp. mesenteroides","na":1,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"]],"b":[["Pfam%3APF03390","2-hydroxycarboxylate transporter family"]]},{"id":"NCBITaxon:340","l":"Xanthomonas campestris pv. campestris","na":1,"nb":1,"a":[["waste-treatment-plant-envo-00002272.html","waste treatment plant"]],"b":[["Pfam%3APF22059","Glucuronosyltransferase GumK, N-terminal domain"]]},{"id":"NCBITaxon:340047","l":"","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Pfam%3APF27879","Helix-rich protein"]]},{"id":"NCBITaxon:340345","l":"Actinoalloteichus hymeniacidonis","na":1,"nb":1,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["TED%3AAF-A0A7W9UEM7-F1-model_v4_TED01","TED novel fold AF-A0A7W9UEM7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:343509","l":"","na":1,"nb":1,"a":[["needle-bto-0000917.html","needle"]],"b":[["Pfam%3APF04345","Chorismate lyase"]]},{"id":"NCBITaxon:345631","l":"Geobacter argillaceus","na":1,"nb":1,"a":[["clay-envo-00002982.html","clay"]],"b":[["TED%3AAF-A0A562VM24-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A562VM24-F1-model_v4_TED02"]]},{"id":"NCBITaxon:356829","l":"Bifidobacterium tsurumiense","na":1,"nb":1,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["TED%3AAF-A0A6L5X0P9-F1-model_v4_TED01","TED novel fold AF-A0A6L5X0P9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:357244","l":"","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Pfam%3APF01745","Isopentenyl transferase"]]},{"id":"NCBITaxon:35752","l":"Actinoplanes philippinensis","na":1,"nb":1,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["TED%3AAF-A0A1I2HI82-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I2HI82-F1-model_v4_TED02"]]},{"id":"NCBITaxon:35787","l":"Limosilactobacillus pontis","na":1,"nb":1,"a":[["pig-manure-envo-00003860.html","pig manure"]],"b":[["TED%3AAF-A0A2J6NPS8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2J6NPS8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:360911","l":"","na":1,"nb":1,"a":[["joint-bto-0001686.html","joint"]],"b":[["TED%3AAF-C4L6T8-F1-model_v4_TED04","TED highly-symmetric fold AF-C4L6T8-F1-model_v4_TED04"]]},{"id":"NCBITaxon:362787","l":"Candidatus Protochlamydia amoebophila","na":1,"nb":1,"a":[["endosymbiont-habitatmech-bacdive-7d840c7ddc.html","Endosymbiont"]],"b":[["TED%3AAF-A0A0C1H7Y9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0C1H7Y9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:36746","l":"Pseudomonas cichorii","na":1,"nb":1,"a":[["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["TED%3AAF-A0A3M4VH83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M4VH83-F1-model_v4_TED01"]]},{"id":"NCBITaxon:36841","l":"Terrisporobacter glycolicus","na":1,"nb":1,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["TED%3AAF-A0A1I3PG81-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I3PG81-F1-model_v4_TED01"]]},{"id":"NCBITaxon:370554","l":"","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["Pfam%3APF04260","Protein of unknown function (DUF436)"]]},{"id":"NCBITaxon:370973","l":"Runella defluvii","na":1,"nb":1,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["TED%3AAF-A0A7W5ZNZ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W5ZNZ4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:373","l":"","na":1,"nb":1,"a":[["trunk-bto-0001493.html","trunk"]],"b":[["TED%3AAF-A0A368P0R2-F1-model_v4_TED01","TED novel fold AF-A0A368P0R2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:373672","l":"","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["TED%3AAF-A0A1N7P9B3-F1-model_v4_TED02","TED novel fold AF-A0A1N7P9B3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:37372","l":"Helicobacter bilis","na":1,"nb":1,"a":[["ht-29-cell-bto-0000182.html","HT-29 cell"]],"b":[["TED%3AAF-A0A4U8UA27-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8UA27-F1-model_v4_TED01"]]},{"id":"NCBITaxon:375177","l":"","na":1,"nb":1,"a":[["b-lymphocyte-cell-line-bto-0001522.html","B-lymphocyte cell line"]],"b":[["Pfam%3APF16747","Surface-adhesin protein E"]]},{"id":"NCBITaxon:375451","l":"","na":1,"nb":1,"a":[["inlet-envo-00000475.html","inlet"]],"b":[["TED%3AAF-Q164W9-F1-model_v4_TED02","TED highly-symmetric fold AF-Q164W9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:378543","l":"Tumebacillus permanentifrigoris","na":1,"nb":1,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["TED%3AAF-A0A316DIT3-F1-model_v4_TED01","TED novel fold AF-A0A316DIT3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:379731","l":"Stutzerimonas stutzeri A1501","na":1,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["IEDB%3A22053","epitope GRGQILLGK"]]},{"id":"NCBITaxon:381754","l":"","na":1,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["Pfam%3APF05985","Ethanolamine ammonia-lyase light chain (EutC)"]]},{"id":"NCBITaxon:38301","l":"Corynebacterium minutissimum","na":1,"nb":1,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["TED%3AAF-A0A376D050-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A376D050-F1-model_v4_TED01"]]},{"id":"NCBITaxon:38304","l":"Corynebacterium tuberculostearicum","na":1,"nb":1,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["TED%3AAF-A0A7U0H937-F1-model_v4_TED01","TED novel fold AF-A0A7U0H937-F1-model_v4_TED01"]]},{"id":"NCBITaxon:384602","l":"Micrococcus flavus","na":1,"nb":1,"a":[["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["TED%3AAF-A0A7W7PAI2-F1-model_v4_TED01","TED novel fold AF-A0A7W7PAI2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:384765","l":"","na":1,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["Pfam%3APF04199","Putative cyclase"]]},{"id":"NCBITaxon:388396","l":"","na":1,"nb":1,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["Pfam%3APF21868","GlcNAc-binding protein A, third domain"]]},{"id":"NCBITaxon:391038","l":"","na":1,"nb":1,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["PROSITE%3APS00921","Nitrilases / cyanide hydratase active site signature"]]},{"id":"NCBITaxon:391904","l":"","na":1,"nb":1,"a":[["breast-bto-0000149.html","breast"]],"b":[["Pfam%3APF25528","Domain of unknown function (DUF7917)"]]},{"id":"NCBITaxon:392015","l":"","na":1,"nb":1,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["TED%3AAF-A0A1I7LHN3-F1-model_v4_TED02","TED novel fold AF-A0A1I7LHN3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:393595","l":"Alcanivorax borkumensis SK2","na":1,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["TED%3AAF-Q0VNH7-F1-model_v4_TED01","TED highly-symmetric fold AF-Q0VNH7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:394935","l":"Chromobacterium haemolyticum","na":1,"nb":1,"a":[["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["TED%3AAF-A0A1W0CCE1-F1-model_v4_TED01","TED novel fold AF-A0A1W0CCE1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["Pfam%3APF13282","Domain of unknown function (DUF4070)"]]},{"id":"NCBITaxon:395963","l":"","na":1,"nb":1,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["TED%3AAF-B2IFK3-F1-model_v4_TED03","TED novel fold AF-B2IFK3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:39650","l":"Cellvibrio mixtus","na":1,"nb":1,"a":[["compost-envo-00002170.html","compost"]],"b":[["TED%3AAF-A0A266QDL6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A266QDL6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:399549","l":"Metallosphaera sedula DSM 5348","na":1,"nb":1,"a":[["solfatara-envo-00000217.html","solfatara"]],"b":[["Pfam%3APF18195","GatD N-terminal domain"]]},{"id":"NCBITaxon:399579","l":"","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["TED%3AAF-A0A830FZ95-F1-model_v4_TED01","TED novel fold AF-A0A830FZ95-F1-model_v4_TED01"]]},{"id":"NCBITaxon:40041","l":"Streptococcus equi subsp. zooepidemicus","na":1,"nb":1,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["Pfam%3APF02388","FemAB family"]]},{"id":"NCBITaxon:40215","l":"Acinetobacter junii","na":1,"nb":1,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["TED%3AAF-A0A8B4RWB2-F1-model_v4_TED01","TED novel fold AF-A0A8B4RWB2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:403833","l":"","na":1,"nb":1,"a":[["oil-envo-00002985.html","oil"]],"b":[["Pfam%3APF19328","2,4-diaminopentanoate dehydrogenase C-terminal domain"]]},{"id":"NCBITaxon:405440","l":"","na":1,"nb":1,"a":[["valley-envo-00000100.html","valley"]],"b":[["Pfam%3APF04977","Septum formation initiator"]]},{"id":"NCBITaxon:411154","l":"","na":1,"nb":1,"a":[["joint-bto-0001686.html","joint"]],"b":[["Pfam%3APF14109","GldH lipoprotein"]]},{"id":"NCBITaxon:411684","l":"","na":1,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["TED%3AAF-A9D4N0-F1-model_v4_TED02","TED novel fold AF-A9D4N0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:414684","l":"","na":1,"nb":1,"a":[["cyst-bto-0000320.html","cyst"]],"b":[["Pfam%3APF27469","ATP synthase epsilon chain C-terminal domain"]]},{"id":"NCBITaxon:420953","l":"Paraburkholderia megapolitana","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["proteintraitsmech%3AELIFE109154_GrbD","GrbD-type graminine biosynthesis protein family"]]},{"id":"NCBITaxon:422289","l":"Beggiatoa sp. PS","na":1,"nb":1,"a":[["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-A7BS81-F1-model_v4_TED01","TED highly-symmetric fold AF-A7BS81-F1-model_v4_TED01"]]},{"id":"NCBITaxon:427317","l":"Saccharolobus islandicus M.14.25","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["Pfam%3APF05165","GTP cyclohydrolase III"]]},{"id":"NCBITaxon:436308","l":"","na":1,"nb":1,"a":[["aquarium-envo-00002196.html","aquarium"]],"b":[["Pfam%3APF19045","Ligase-CoA domain"]]},{"id":"NCBITaxon:436717","l":"","na":1,"nb":1,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["TED%3AAF-D8JEH7-F1-model_v4_TED03","TED novel fold AF-D8JEH7-F1-model_v4_TED03"]]},{"id":"NCBITaxon:43675","l":"Rothia mucilaginosa","na":1,"nb":1,"a":[["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["TED%3AAF-A0A291DCT6-F1-model_v4_TED03","TED novel fold AF-A0A291DCT6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:43677","l":"Promicromonospora citrea","na":1,"nb":1,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["TED%3AAF-A0A7Y2QR62-F1-model_v4_TED01","TED novel fold AF-A0A7Y2QR62-F1-model_v4_TED01"]]},{"id":"NCBITaxon:43768","l":"Corynebacterium matruchotii","na":1,"nb":1,"a":[["archeological-site-envo-00000564.html","archeological site"]],"b":[["TED%3AAF-A0A6H9XP04-F1-model_v4_TED01","TED novel fold AF-A0A6H9XP04-F1-model_v4_TED01"]]},{"id":"NCBITaxon:44008","l":"Enterococcus cecorum","na":1,"nb":1,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["TED%3AAF-A0A200I1A2-F1-model_v4_TED01","TED novel fold AF-A0A200I1A2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:446469","l":"","na":1,"nb":1,"a":[["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-D1BCE8-F1-model_v4_TED01","TED highly-symmetric fold AF-D1BCE8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:447217","l":"","na":1,"nb":1,"a":[["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-B4UAH6-F1-model_v4_TED03","TED highly-symmetric fold AF-B4UAH6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:451","l":"Legionella micdadei","na":1,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"]],"b":[["TED%3AAF-A0A098GE29-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A098GE29-F1-model_v4_TED01"]]},{"id":"NCBITaxon:45243","l":"Capnocytophaga haemolytica","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["TED%3AAF-A0A0X8JC19-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0X8JC19-F1-model_v4_TED01"]]},{"id":"NCBITaxon:452652","l":"Kitasatospora setae KM-6054","na":1,"nb":1,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["IEDB%3A230017","epitope MHGNWHFFRNFLSN"]]},{"id":"NCBITaxon:452662","l":"","na":1,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["MCSA%3A467","haloalkane dehalogenase (subfamily 2)"]]},{"id":"NCBITaxon:453","l":"Legionella feeleii","na":1,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["TED%3AAF-A0A378IZL6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A378IZL6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:454006","l":"Epilithonimonas hungarica","na":1,"nb":1,"a":[["oil-envo-00002985.html","oil"]],"b":[["TED%3AAF-A0A1G7J6K0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1G7J6K0-F1-model_v4_TED03"]]},{"id":"NCBITaxon:455488","l":"","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["TED%3AAF-B8J8V7-F1-model_v4_TED01","TED novel fold AF-B8J8V7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:457570","l":"","na":1,"nb":1,"a":[["wadi-envo-00000031.html","wadi"]],"b":[["TED%3AAF-B2A1S1-F1-model_v4_TED02","TED highly-symmetric fold AF-B2A1S1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:459529","l":"Sphingobacterium siyangense","na":1,"nb":1,"a":[["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["TED%3AAF-A0A420FHV4-F1-model_v4_TED01","TED novel fold AF-A0A420FHV4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:46224","l":"Heyndrickxia sporothermodurans","na":1,"nb":1,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["TED%3AAF-A0A2T6EYG9-F1-model_v4_TED03","TED novel fold AF-A0A2T6EYG9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:463","l":"Fluoribacter dumoffii","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["TED%3AAF-A0A377G6U6-F1-model_v4_TED01","TED novel fold AF-A0A377G6U6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:463301","l":"","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["TED%3AAF-A0A1I7FWW8-F1-model_v4_TED01","TED novel fold AF-A0A1I7FWW8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:469616","l":"Fusobacterium mortiferum ATCC 9817","na":1,"nb":1,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["TED%3AAF-C3WAL7-F1-model_v4_TED02","TED novel fold AF-C3WAL7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:471514","l":"","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["TED%3AAF-A0A0N8PN50-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0N8PN50-F1-model_v4_TED03"]]},{"id":"NCBITaxon:474949","l":"","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A7W7ZBP1-F1-model_v4_TED02","TED novel fold AF-A0A7W7ZBP1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:478","l":"Moraxella nonliquefaciens","na":1,"nb":1,"a":[["disease-habitatmech-bacdive-c659c7e939.html","Disease"]],"b":[["TED%3AAF-A0A1B8PJM7-F1-model_v4_TED01","TED novel fold AF-A0A1B8PJM7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:481877","l":"","na":1,"nb":1,"a":[["microsporidian-bto-0003132.html","microsporidian"]],"b":[["TED%3AAF-B7XL67-F1-model_v4_TED01","TED novel fold AF-B7XL67-F1-model_v4_TED01"]]},{"id":"NCBITaxon:485916","l":"","na":1,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"]],"b":[["TED%3AAF-C8W2Y9-F1-model_v4_TED01","TED highly-symmetric fold AF-C8W2Y9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:488447","l":"Burkholderia contaminans","na":1,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["TED%3AAF-A0A3N8RI51-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N8RI51-F1-model_v4_TED01"]]},{"id":"NCBITaxon:490899","l":"","na":1,"nb":1,"a":[["shoreline-envo-00000486.html","shoreline"]],"b":[["TED%3AAF-B8D4A7-F1-model_v4_TED01","TED novel fold AF-B8D4A7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:491207","l":"Chryseobacterium oleae","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["TED%3AAF-A0A1I5BFN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5BFN6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:491952","l":"","na":1,"nb":1,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["proteintraitsmech%3AELIFE109154_SalSyn","Metallophore-associated bifunctional salicylate synthase family"]]},{"id":"NCBITaxon:508767","l":"","na":1,"nb":1,"a":[["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["Pfam%3APF04029","2-phosphosulpholactate phosphatase"]]},{"id":"NCBITaxon:508771","l":"Toxoplasma gondii (strain ATCC 50611 / Me49)","na":1,"nb":1,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"]],"b":[["PROSITE%3APS01005","Formate and nitrite transporters signature 1"]]},{"id":"NCBITaxon:525367","l":"Listeria grayi DSM 20601","na":1,"nb":1,"a":[["city-envo-00000856.html","city"]],"b":[["IEDB%3A226689","epitope VIVGQLIEEHRLRYD"]]},{"id":"NCBITaxon:52771","l":"Actinomyces howellii","na":1,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["TED%3AAF-A0A3S4R0T4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S4R0T4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:535722","l":"","na":1,"nb":1,"a":[["mountain-pass-envo-00000084.html","mountain pass"]],"b":[["TED%3AAF-E4V3G8-F1-model_v4_TED01","TED highly-symmetric fold AF-E4V3G8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:544406","l":"","na":1,"nb":1,"a":[["duodenum-bto-0000365.html","duodenum"]],"b":[["PROSITE%3APS01292","Uncharacterized protein family UPF0036 signature"]]},{"id":"NCBITaxon:544580","l":"Actinomyces oris","na":1,"nb":1,"a":[["archeological-site-envo-00000564.html","archeological site"]],"b":[["TED%3AAF-A0A1Q8WF60-F1-model_v4_TED01","TED novel fold AF-A0A1Q8WF60-F1-model_v4_TED01"]]},{"id":"NCBITaxon:54736","l":"Salmonella bongori","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["TED%3AAF-A0A698W123-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A698W123-F1-model_v4_TED02"]]},{"id":"NCBITaxon:553480","l":"","na":1,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"]],"b":[["Pfam%3APF06804","Outer membrane protein assembly factor BamC-like C-terminal domain"]]},{"id":"NCBITaxon:554290","l":"","na":1,"nb":1,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["Pfam%3APF08254","Threonine leader peptide"]]},{"id":"NCBITaxon:558173","l":"Corynebacterium doosanense CAU 212 = DSM 45436","na":1,"nb":1,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["TED%3AAF-A0A097IJJ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A097IJJ3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:563008","l":"","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["TED%3AAF-D7NFV4-F1-model_v4_TED01","TED novel fold AF-D7NFV4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:566549","l":"Corynebacterium matruchotii ATCC 33806","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["TED%3AAF-C0E5R2-F1-model_v4_TED02","TED highly-symmetric fold AF-C0E5R2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:568106","l":"Marinobacterium lutimaris","na":1,"nb":1,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["TED%3AAF-A0A1H5Y6J0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1H5Y6J0-F1-model_v4_TED04"]]},{"id":"NCBITaxon:569860","l":"Methylovirgula ligni","na":1,"nb":1,"a":[["wood-envo-00002040.html","wood"]],"b":[["TED%3AAF-A0A3D9Z4S9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D9Z4S9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:570156","l":"Pseudoalteromonas lipolytica","na":1,"nb":1,"a":[["leaf-lamina-bto-0000719.html","leaf lamina"]],"b":[["TED%3AAF-A0A1I7CGN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I7CGN6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:573065","l":"","na":1,"nb":1,"a":[["pond-envo-00000033.html","pond"]],"b":[["TED%3AAF-E8RUW8-F1-model_v4_TED01","TED novel fold AF-E8RUW8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:573737","l":"","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["TED%3AAF-A0A0G3IC85-F1-model_v4_TED03","TED novel fold AF-A0A0G3IC85-F1-model_v4_TED03"]]},{"id":"NCBITaxon:582855","l":"Streptomyces haliclonae","na":1,"nb":1,"a":[["shoreline-envo-00000486.html","shoreline"]],"b":[["TED%3AAF-A0A7W7BYP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W7BYP7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:585054","l":"","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Pfam%3APF08364","Bacterial translation initiation factor IF-2 associated region"]]},{"id":"NCBITaxon:5866","l":"Babesia bigemina","na":1,"nb":1,"a":[["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["TED%3AAF-A0A061D3T3-F1-model_v4_TED01","TED novel fold AF-A0A061D3T3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:589924","l":"","na":1,"nb":1,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["TED%3AAF-D3S1W1-F1-model_v4_TED01","TED novel fold AF-D3S1W1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:592015","l":"Acetomicrobium hydrogeniformans ATCC BAA-1850","na":1,"nb":1,"a":[["village-biome-envo-01000246.html","village biome"]],"b":[["TED%3AAF-A0A0T5X7S6-F1-model_v4_TED02","TED novel fold AF-A0A0T5X7S6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:59203","l":"Salmonella enterica subsp. arizonae","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["TED%3AAF-A0A3S4K1T2-F1-model_v4_TED01","TED novel fold AF-A0A3S4K1T2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:604330","l":"Parafannyhessea umbonata","na":1,"nb":1,"a":[["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"]],"b":[["TED%3AAF-A0A6N7XAR1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N7XAR1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:60894","l":"Saccharopolyspora spinosa","na":1,"nb":1,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF03559","NDP-hexose 2,3-dehydratase"]]},{"id":"NCBITaxon:610130","l":"","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["TED%3AAF-D9RA58-F1-model_v4_TED03","TED highly-symmetric fold AF-D9RA58-F1-model_v4_TED03"]]},{"id":"NCBITaxon:61645","l":"Enterobacter asburiae","na":1,"nb":1,"a":[["bone-marrow-bto-0000141.html","bone marrow"]],"b":[["TED%3AAF-A0A8B3U934-F1-model_v4_TED02","TED novel fold AF-A0A8B3U934-F1-model_v4_TED02"]]},{"id":"NCBITaxon:629741","l":"Kingella oralis ATCC 51147","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["TED%3AAF-C4GEH4-F1-model_v4_TED01","TED highly-symmetric fold AF-C4GEH4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:634436","l":"Marisediminitalea aggregata","na":1,"nb":1,"a":[["mangrove-biome-envo-01000181.html","mangrove biome"]],"b":[["TED%3AAF-A0A1M5JV92-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M5JV92-F1-model_v4_TED01"]]},{"id":"NCBITaxon:634500","l":"","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["PROSITE%3APS01090","TatD deoxyribonuclease family signature 2"]]},{"id":"NCBITaxon:636","l":"Edwardsiella tarda","na":1,"nb":1,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["Pfam%3APF05791","Bacillus haemolytic enterotoxin (HBL)"]]},{"id":"NCBITaxon:638300","l":"","na":1,"nb":1,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["TED%3AAF-C8NBX0-F1-model_v4_TED02","TED novel fold AF-C8NBX0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:639283","l":"","na":1,"nb":1,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["TED%3AAF-D6ZYI9-F1-model_v4_TED01","TED highly-symmetric fold AF-D6ZYI9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:641491","l":"Pseudodesulfovibrio mercurii","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["Pfam%3APF03599","CO dehydrogenase/acetyl-CoA synthase delta subunit"]]},{"id":"NCBITaxon:645463","l":"","na":1,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["Pfam%3APF04392","ABC transporter substrate binding protein"]]},{"id":"NCBITaxon:649760","l":"","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["TED%3AAF-D1QV56-F1-model_v4_TED02","TED novel fold AF-D1QV56-F1-model_v4_TED02"]]},{"id":"NCBITaxon:65","l":"Herpetosiphon aurantiacus","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["Pfam%3APF09520","Type II restriction endonuclease, HinfI"]]},{"id":"NCBITaxon:652103","l":"","na":1,"nb":1,"a":[["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-E6VQ23-F1-model_v4_TED02","TED novel fold AF-E6VQ23-F1-model_v4_TED02"]]},{"id":"NCBITaxon:656914","l":"Desulfonispora thiosulfatigenes DSM 11270","na":1,"nb":1,"a":[["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["TED%3AAF-A0A1W1UJ66-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W1UJ66-F1-model_v4_TED01"]]},{"id":"NCBITaxon:659425","l":"","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["TED%3AAF-A0A1M6H7B8-F1-model_v4_TED02","TED novel fold AF-A0A1M6H7B8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:663917","l":"","na":1,"nb":1,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF13435","Cytochrome c554 and c-prime"]]},{"id":"NCBITaxon:679191","l":"Prevotella amnii CRIS 21A-A","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["TED%3AAF-E1GW40-F1-model_v4_TED02","TED highly-symmetric fold AF-E1GW40-F1-model_v4_TED02"]]},{"id":"NCBITaxon:679937","l":"Bacteroides coprosuis DSM 18011","na":1,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"]],"b":[["TED%3AAF-F3ZUW4-F1-model_v4_TED02","TED novel fold AF-F3ZUW4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:688269","l":"Pseudothermotoga thermarum DSM 5069","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["TED%3AAF-F7YY41-F1-model_v4_TED02","TED highly-symmetric fold AF-F7YY41-F1-model_v4_TED02"]]},{"id":"NCBITaxon:688867","l":"Ohtaekwangia koreensis","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["TED%3AAF-A0A1T5MFB7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1T5MFB7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:693661","l":"","na":1,"nb":1,"a":[["black-smoker-envo-00000218.html","black smoker"]],"b":[["TED%3AAF-F2KRD1-F1-model_v4_TED02","TED highly-symmetric fold AF-F2KRD1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:69392","l":"Stenotrophomonas sp.","na":1,"nb":1,"a":[["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["TED%3AAF-A0A6N8APF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8APF4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:694433","l":"Saprospira grandis DSM 2844","na":1,"nb":1,"a":[["carapace-bto-0001701.html","carapace"]],"b":[["TED%3AAF-J0P380-F1-model_v4_TED01","TED highly-symmetric fold AF-J0P380-F1-model_v4_TED01"]]},{"id":"NCBITaxon:69974","l":"Mesorhizobium plurifarium","na":1,"nb":1,"a":[["hair-follicle-outer-root-sheath-bto-0003969.html","hair follicle outer root sheath"]],"b":[["PROSITE%3APS01349","Nodulation protein nodA signature"]]},{"id":"NCBITaxon:702459","l":"","na":1,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["TED%3AAF-A0A0H3E8C8-F1-model_v4_TED01","TED novel fold AF-A0A0H3E8C8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:706587","l":"","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["TED%3AAF-I4CB34-F1-model_v4_TED01","TED highly-symmetric fold AF-I4CB34-F1-model_v4_TED01"]]},{"id":"NCBITaxon:722","l":"Actinobacillus seminis","na":1,"nb":1,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"]],"b":[["TED%3AAF-A0A263HFT1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A263HFT1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:7222","l":"Drosophila grimshawi","na":1,"nb":1,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"]],"b":[["TED%3AAF-B4K2M8-F1-model_v4_TED01","TED novel fold AF-B4K2M8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["TED%3AAF-A0A5C7XIK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7XIK2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:726","l":"Haemophilus haemolyticus","na":1,"nb":1,"a":[["trunk-uberon-0002100.html","trunk"]],"b":[["TED%3AAF-A0A1B8PEV3-F1-model_v4_TED01","TED novel fold AF-A0A1B8PEV3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:742013","l":"","na":1,"nb":1,"a":[["waterfall-envo-00000040.html","waterfall"]],"b":[["TED%3AAF-F6AQI2-F1-model_v4_TED01","TED highly-symmetric fold AF-F6AQI2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:74547","l":"","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Pfam%3APF11266","Long-chain fatty aldehyde decarbonylase"]]},{"id":"NCBITaxon:74969","l":"Ferroplasma acidiphilum","na":1,"nb":1,"a":[["factory-envo-01000536.html","factory"]],"b":[["TED%3AAF-A0A7K4FNL3-F1-model_v4_TED01","TED novel fold AF-A0A7K4FNL3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:755731","l":"Clostridium sp. BNL1100","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["TED%3AAF-H2JEL4-F1-model_v4_TED02","TED highly-symmetric fold AF-H2JEL4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:758","l":"Rodentibacter pneumotropicus","na":1,"nb":1,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["TED%3AAF-A0A6L9GQA8-F1-model_v4_TED01","TED novel fold AF-A0A6L9GQA8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:758847","l":"Leptospira santarosai serovar Shermani str. LT 821","na":1,"nb":1,"a":[["renal-tubule-bto-0000343.html","renal tubule"]],"b":[["TED%3AAF-A0A097ES00-F1-model_v4_TED01","TED novel fold AF-A0A097ES00-F1-model_v4_TED01"]]},{"id":"NCBITaxon:761659","l":"","na":1,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["TED%3AAF-D5H5E0-F1-model_v4_TED03","TED novel fold AF-D5H5E0-F1-model_v4_TED03"]]},{"id":"NCBITaxon:768066","l":"","na":1,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["Pfam%3APF06339","Ectoine synthase"]]},{"id":"NCBITaxon:795797","l":"","na":1,"nb":1,"a":[["food-product-foodon-00001002.html","food product"]],"b":[["TED%3AAF-D8JCM3-F1-model_v4_TED01","TED highly-symmetric fold AF-D8JCM3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:796937","l":"Peptoanaerobacter stomatis","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["TED%3AAF-G9XC71-F1-model_v4_TED01","TED novel fold AF-G9XC71-F1-model_v4_TED01"]]},{"id":"NCBITaxon:797292","l":"Sphingobacterium alimentarium","na":1,"nb":1,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["TED%3AAF-A0A4R3VZ52-F1-model_v4_TED08","TED novel fold AF-A0A4R3VZ52-F1-model_v4_TED08"]]},{"id":"NCBITaxon:79967","l":"Erwinia pyrifoliae","na":1,"nb":1,"a":[["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["Pfam%3APF09589","HrpA pilus formation protein"]]},{"id":"NCBITaxon:82380","l":"Microbacterium oxydans","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["TED%3AAF-A0A4Y4GD74-F1-model_v4_TED02","TED novel fold AF-A0A4Y4GD74-F1-model_v4_TED02"]]},{"id":"NCBITaxon:839","l":"","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["TED%3AAF-A0A1M7DCP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M7DCP8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:85336","l":"Rothia nasimurium","na":1,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"]],"b":[["proteintraitsmech%3AELIFE109154_EntC","EntC-type catechol biosynthesis isochorismate synthase family"]]},{"id":"NCBITaxon:85831","l":"Bacteroides acidifaciens","na":1,"nb":1,"a":[["colon-bto-0000269.html","colon"]],"b":[["TED%3AAF-A0A7K3MGB4-F1-model_v4_TED01","TED novel fold AF-A0A7K3MGB4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:861865","l":"","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["TED%3AAF-A0A239BGP1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A239BGP1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:863372","l":"Herbaspirillum huttiense","na":1,"nb":1,"a":[["factory-envo-01000536.html","factory"]],"b":[["TED%3AAF-A0A4P7ADR5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P7ADR5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:863522","l":"Bryocella elongata","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A1H5ZBZ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H5ZBZ9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:865937","l":"","na":1,"nb":1,"a":[["dry-valley-envo-00000128.html","dry valley"]],"b":[["Pfam%3APF27061","Bacterial gasdermin-associated protease"]]},{"id":"NCBITaxon:866499","l":"Cloacibacillus evryensis DSM 19522","na":1,"nb":1,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["TED%3AAF-A0A010YSJ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A010YSJ4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:869210","l":"","na":1,"nb":1,"a":[["seamount-envo-00000264.html","seamount"]],"b":[["TED%3AAF-F2NQ34-F1-model_v4_TED01","TED novel fold AF-F2NQ34-F1-model_v4_TED01"]]},{"id":"NCBITaxon:883","l":"","na":1,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"]],"b":[["TED%3AAF-B8DPA3-F1-model_v4_TED01","TED novel fold AF-B8DPA3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:888743","l":"Prevotella multiformis DSM 16608","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["TED%3AAF-F0F5W8-F1-model_v4_TED02","TED novel fold AF-F0F5W8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:926690","l":"","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["Pfam%3APF28161","Fusexin 1"]]},{"id":"NCBITaxon:930943","l":"","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["TED%3AAF-F0NJI0-F1-model_v4_TED01","TED novel fold AF-F0NJI0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:93222","l":"Pandoraea sputorum","na":1,"nb":1,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"]],"b":[["TED%3AAF-A0A5E5BHU5-F1-model_v4_TED02","TED novel fold AF-A0A5E5BHU5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:936138","l":"Phorcysia thermohydrogeniphila","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["TED%3AAF-A0A4V2PDB0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A4V2PDB0-F1-model_v4_TED04"]]},{"id":"NCBITaxon:9483","l":"Callithrix jacchus","na":1,"nb":1,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["Pfam%3APF21049","Cilia- and flagella-associated protein 69, ARM repeat"]]},{"id":"NCBITaxon:94868","l":"","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["TED%3AAF-A0A419SY83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A419SY83-F1-model_v4_TED01"]]},{"id":"NCBITaxon:95485","l":"Burkholderia stabilis","na":1,"nb":1,"a":[["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["TED%3AAF-A0A4V1PSL6-F1-model_v4_TED02","TED novel fold AF-A0A4V1PSL6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:980271","l":"","na":1,"nb":1,"a":[["epibiont-habitatmech-bacdive-f4eb470a03.html","Epibiont"]],"b":[["TED%3AAF-A0A7W5H7H8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7W5H7H8-F1-model_v4_TED03"]]},{"id":"NCBITaxon:993414","l":"Naumannella halotolerans","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["TED%3AAF-A0A4R7J3W9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R7J3W9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:999552","l":"Leisingera methylohalidivorans DSM 14336","na":1,"nb":1,"a":[["marine-neritic-zone-envo-00000206.html","marine neritic zone"]],"b":[["TED%3AAF-V9VZA3-F1-model_v4_TED02","TED novel fold AF-V9VZA3-F1-model_v4_TED02"]]}]} \ No newline at end of file +{"a":"HabitatMech","b":"ProteinTraitsMech","base":{"HabitatMech":"https://culturebotai.github.io/HabitatMech/pages/habitats/","ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record="},"n":1250,"by":{"NCBITaxon":1234,"UBERON":12,"CHEBI":2,"GO":2},"terms":[{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":40,"nb":46,"a":[["liquid-water-envo-00002006.html","liquid water"],["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["laboratory-facility-envo-01001406.html","laboratory facility"],["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["biofilm-bto-0002690.html","biofilm"]],"b":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF13166","AAA domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF27533","CapK C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":36,"nb":145,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["bay-envo-00000032.html","bay"],["freshwater-biome-envo-00000873.html","freshwater biome"],["liquid-water-envo-00002006.html","liquid water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["IDPO%3A0000033","flexible linker"],["IDPO%3A0000014","order to disorder"],["IDPO%3A0000004","pre-molten globule"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"]]},{"id":"NCBITaxon:1869227","l":"bacterium","na":26,"nb":57,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["marine-water-body-envo-00001999.html","marine water body"],["watercourse-envo-00000029.html","watercourse"],["laboratory-facility-envo-01001406.html","laboratory facility"]],"b":[["TED%3AAF-A0A2D6E3L3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D6E3L3-F1-model_v4_TED02"],["TED%3AAF-A0A2D6IMF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D6IMF4-F1-model_v4_TED01"],["TED%3AAF-A0A3N5GA95-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3N5GA95-F1-model_v4_TED02"],["TED%3AAF-A0A3N5I065-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N5I065-F1-model_v4_TED01"],["TED%3AAF-A0A496UYV5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A496UYV5-F1-model_v4_TED02"],["TED%3AAF-A0A4Q3U385-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q3U385-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":27,"nb":23,"a":[["small-river-biome-envo-00000890.html","small river biome"],["factory-envo-01000536.html","factory"],["organic-waste-material-envo-00002873.html","organic waste material"],["leaf-po-0025034.html","leaf"],["milk-uberon-0001913.html","milk"],["rhizosphere-envo-00005801.html","rhizosphere"]],"b":[["Pfam%3APF08878","HamA"],["Pfam%3APF05791","Bacillus haemolytic enterotoxin (HBL)"],["Pfam%3APF10803","Spore germination GerPB"],["Pfam%3APF10737","Spore germination protein GerPC"],["Pfam%3APF10970","Spore germination protein GerPE"],["Pfam%3APF07486","Cell Wall Hydrolase"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":28,"nb":19,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["liquid-water-envo-00002006.html","liquid water"],["watercourse-envo-00000029.html","watercourse"],["compost-envo-00002170.html","compost"],["hospital-envo-00002173.html","hospital"],["human-construction-envo-00000070.html","human construction"]],"b":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"],["Pfam%3APF18173","Bacterial HORMA domain 2"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["Pfam%3APF27322","Cap8 HORMA domain"],["Pfam%3APF01526","Tn3 transposase DDE domain"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":18,"nb":16,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["Pfam%3APF16822","SGNH hydrolase-like domain, acetyltransferase AlgX"],["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"],["Pfam%3APF11182","Alginate O-acetyl transferase AlgF"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF27129","Functional amyloid protein FapB/FapC family"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":13,"nb":30,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["neutrophil-bto-0000130.html","neutrophil"],["rectum-bto-0001158.html","rectum"],["spleen-bto-0001281.html","spleen"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["Pfam%3APF08787","Alginate lyase"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF08218","Citrate lyase ligase C-terminal domain"],["Pfam%3APF13727","CoA-binding domain"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["Pfam%3APF20714","DpiA-like helix-turn-helix domain"]]},{"id":"NCBITaxon:56","l":"Sorangium cellulosum","na":27,"nb":13,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["watercourse-envo-00000029.html","watercourse"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["TED%3AAF-A0A150SQB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A150SQB4-F1-model_v4_TED01"],["TED%3AAF-A0A2L0EP96-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0EP96-F1-model_v4_TED01"],["TED%3AAF-A0A2L0F1G5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0F1G5-F1-model_v4_TED01"],["TED%3AAF-A0A2L0F230-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0F230-F1-model_v4_TED01"],["TED%3AAF-A0A4P2R1W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P2R1W3-F1-model_v4_TED01"],["TED%3AAF-A0A150P579-F1-model_v4_TED02","TED novel fold AF-A0A150P579-F1-model_v4_TED02"]]},{"id":"NCBITaxon:54","l":"Nannocystis exedens","na":22,"nb":13,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["watercourse-envo-00000029.html","watercourse"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["TED%3AAF-A0A1I2A5Z6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2A5Z6-F1-model_v4_TED01"],["TED%3AAF-A0A1I2FM38-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I2FM38-F1-model_v4_TED02"],["TED%3AAF-A0A1I2H0F9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2H0F9-F1-model_v4_TED01"],["TED%3AAF-A0A831ZMD9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A831ZMD9-F1-model_v4_TED01"],["TED%3AAF-A0A1I1T6U3-F1-model_v4_TED01","TED novel fold AF-A0A1I1T6U3-F1-model_v4_TED01"],["TED%3AAF-A0A1I1XLT5-F1-model_v4_TED02","TED novel fold AF-A0A1I1XLT5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":11,"nb":20,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["resting-cell-bto-0001170.html","resting cell"],["seedling-bto-0001228.html","seedling"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Pfam%3APF14535","AMP-binding enzyme C-terminal domain"],["Pfam%3APF13442","Cytochrome C oxidase, cbb3-type, subunit III"],["Pfam%3APF22247","Catechol 2,3-dioxygenase-like N-terminal domain"],["Pfam%3APF25371","Domain of unknown function (DUF7884)"],["Pfam%3APF19301","LigXa C-terminal domain like"],["Pfam%3APF12729","Four helix bundle sensory module for signal transduction"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":10,"nb":15,"a":[["anther-bto-0000079.html","anther"],["epithelial-cell-bto-0000414.html","epithelial cell"],["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["Pfam%3APF14562","Restriction endonuclease BglI"],["Pfam%3APF09195","Restriction endonuclease BglII/BglIII"],["Pfam%3APF09208","Restriction endonuclease MspI"]]},{"id":"NCBITaxon:10116","l":"Rattus norvegicus","na":9,"nb":1002,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["biotope-envo-00002036.html","biotope"],["farm-envo-00000078.html","farm"],["intestine-environment-envo-2100002.html","intestine environment"],["organic-material-envo-01000155.html","organic material"]],"b":[["IDPO%3A0000011","disorder to order"],["IDPO%3A0000030","entropic chain"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000033","flexible linker"],["IDPO%3A0000041","glycosylation display site"],["IDPO%3A0000003","molten globule"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":9,"nb":14,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["fresh-water-envo-00002011.html","fresh water"],["river-envo-00000022.html","river"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["Pfam%3APF03703","Bacterial PH domain"],["Pfam%3APF01322","Cytochrome C'"],["Pfam%3APF03139","Vanadium/alternative nitrogenase delta subunit"],["Pfam%3APF09527","Putative F0F1-ATPase subunit Ca2+/Mg2+ transporter"],["Pfam%3APF03270","Protein of unknown function, DUF269"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"]]},{"id":"NCBITaxon:39946","l":"Oryza sativa subsp. indica","na":13,"nb":9,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["eutrophic-water-envo-00002224.html","eutrophic water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["Pfam%3APF17538","DNA Binding Domain (C-terminal) Leafy/Floricaula"],["Pfam%3APF23703","DExH-box ATP-dependent RNA helicase DExH18, N-terminal"],["Pfam%3APF02496","ABA/WDS induced protein"],["Pfam%3APF06351","Allene oxide cyclase"],["Pfam%3APF02514","CobN/Magnesium Chelatase"],["Pfam%3APF05558","DREPP plasma membrane polypeptide"]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":12,"nb":9,"a":[["hospital-envo-00002173.html","hospital"],["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["epithelial-cell-bto-0000414.html","epithelial cell"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["meninx-bto-0000144.html","meninx"]],"b":[["Pfam%3APF19567","Capsular polysaccharide synthesis, CpsB/CapC"],["Pfam%3APF07501","G5 domain"],["Pfam%3APF13551","Winged helix-turn helix"],["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF03047","COMC family"],["Pfam%3APF04556","DpnII restriction endonuclease"]]},{"id":"NCBITaxon:10090","l":"Mus musculus","na":8,"nb":45870,"a":[["river-envo-00000022.html","river"],["animal-manure-envo-00003031.html","animal manure"],["biotope-envo-00002036.html","biotope"],["intestine-environment-envo-2100002.html","intestine environment"],["urban-biome-envo-01000249.html","urban biome"],["sediment-envo-00002007.html","sediment"]],"b":[["EC%3A1.1.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.1.98.-","With other, known, acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"]]},{"id":"NCBITaxon:1265","l":"Ruminococcus flavefaciens","na":29,"nb":8,"a":[["biofilm-envo-00002034.html","biofilm"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["TED%3AAF-A0A1H6I5C3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1H6I5C3-F1-model_v4_TED03"],["TED%3AAF-A0A1K2AQV3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1K2AQV3-F1-model_v4_TED01"],["TED%3AAF-A0A1M7IZN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M7IZN6-F1-model_v4_TED01"],["TED%3AAF-A0A1H6IY18-F1-model_v4_TED01","TED novel fold AF-A0A1H6IY18-F1-model_v4_TED01"],["TED%3AAF-A0A1K1WYY5-F1-model_v4_TED01","TED novel fold AF-A0A1K1WYY5-F1-model_v4_TED01"],["TED%3AAF-A0A1K2C3A7-F1-model_v4_TED01","TED novel fold AF-A0A1K2C3A7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":17,"nb":8,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["hospital-envo-00002173.html","hospital"],["egg-food-product-foodon-00001274.html","egg food product"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["Pfam%3APF01721","Class II bacteriocin"],["Pfam%3APF13700","Domain of unknown function (DUF4158)"],["Pfam%3APF07478","D-ala D-ala ligase C-terminus"],["Pfam%3APF01820","D-ala D-ala ligase N-terminus"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"],["PROSITE%3APS00843","D-alanine--D-alanine ligase signature 1"]]},{"id":"NCBITaxon:210","l":"Helicobacter pylori","na":8,"nb":9,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["hospital-envo-00002173.html","hospital"],["duodenum-bto-0000365.html","duodenum"],["gastric-juice-bto-0000501.html","gastric juice"],["gastric-mucosa-bto-0001308.html","gastric mucosa"],["gastric-ulcer-bto-0002990.html","gastric ulcer"]],"b":[["Pfam%3APF18025","Alpha-(1,3)-fucosyltransferase FucT N-terminal domain"],["Pfam%3APF18971","CagA protein"],["Pfam%3APF03507","CagA exotoxin phosphopeptide substrate mimic region"],["Pfam%3APF02691","Vacuolating cyotoxin beta-helical domain"],["TED%3AAF-A0A2T6UWI4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T6UWI4-F1-model_v4_TED01"],["TED%3AAF-A0A1Q9JB12-F1-model_v4_TED01","TED novel fold AF-A0A1Q9JB12-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":8,"nb":8,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["lab-synthesis-habitatmech-bacdive-0e92e77cd4.html","Lab-synthesis"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["oil-spill-envo-00002061.html","oil spill"],["temperate-envo-01000206.html","temperate"]],"b":[["Pfam%3APF01890","Cobalamin synthesis G C-terminus"],["Pfam%3APF11761","Cobalamin biosynthesis central region"],["Pfam%3APF11760","Cobalamin synthesis G N-terminal"],["Pfam%3APF02570","Precorrin-8X methylmutase"],["PROSITE%3APS00304","Small, acid-soluble spore proteins, alpha/beta type, signature 1"],["PROSITE%3APS00684","Small, acid-soluble spore proteins, alpha/beta type, signature 2"]]},{"id":"NCBITaxon:165179","l":"Segatella copri","na":7,"nb":13,"a":[["biofilm-envo-00002034.html","biofilm"],["juvenile-bto-0002168.html","juvenile"],["rumen-uberon-0007365.html","rumen"],["tongue-bto-0001385.html","tongue"],["vaginal-fluid-bto-0003084.html","vaginal fluid"],["animal-litter-envo-00002191.html","animal litter"]],"b":[["TED%3AAF-A0A3R6DW71-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3R6DW71-F1-model_v4_TED02"],["TED%3AAF-A0A3R6EGS2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R6EGS2-F1-model_v4_TED01"],["TED%3AAF-A0A5Q5FTM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Q5FTM4-F1-model_v4_TED01"],["TED%3AAF-A0A3R5WNG5-F1-model_v4_TED02","TED novel fold AF-A0A3R5WNG5-F1-model_v4_TED02"],["TED%3AAF-A0A3R5YKW9-F1-model_v4_TED01","TED novel fold AF-A0A3R5YKW9-F1-model_v4_TED01"],["TED%3AAF-A0A3R6FRY2-F1-model_v4_TED01","TED novel fold AF-A0A3R6FRY2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":10,"nb":7,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"]],"b":[["Pfam%3APF04439","Streptomycin adenylyltransferase"],["TED%3AAF-A0A696J2C3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A696J2C3-F1-model_v4_TED01"],["TED%3AAF-A0A825M6H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A825M6H4-F1-model_v4_TED01"],["TED%3AAF-A0A5T0SBG5-F1-model_v4_TED01","TED novel fold AF-A0A5T0SBG5-F1-model_v4_TED01"],["TED%3AAF-A0A698JVM3-F1-model_v4_TED03","TED novel fold AF-A0A698JVM3-F1-model_v4_TED03"],["TED%3AAF-A0A824N1N8-F1-model_v4_TED01","TED novel fold AF-A0A824N1N8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":7,"nb":10,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["pseudostem-bto-0005992.html","pseudostem"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["TED%3AAF-A0A5T2E4X7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5T2E4X7-F1-model_v4_TED01"],["TED%3AAF-A0A5Y4BP44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Y4BP44-F1-model_v4_TED01"],["TED%3AAF-A0A623P6F3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A623P6F3-F1-model_v4_TED02"],["TED%3AAF-A0A721BDS7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A721BDS7-F1-model_v4_TED02"],["TED%3AAF-A0A743P324-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A743P324-F1-model_v4_TED01"],["TED%3AAF-A0A757VWR3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A757VWR3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1314","l":"Streptococcus pyogenes","na":9,"nb":7,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"],["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"],["epithelial-cell-bto-0000414.html","epithelial cell"],["nasopharynx-bto-0000662.html","nasopharynx"],["skin-of-body-uberon-0002097.html","skin of body"],["throat-bto-0000828.html","throat"]],"b":[["Pfam%3APF13585","CHU_C Type IX secretion signal domain"],["Pfam%3APF24547","Domain of unknown function (DUF7601)"],["Pfam%3APF08998","Bacterial epsilon antitoxin"],["Pfam%3APF06280","Fn3-like domain"],["Pfam%3APF02274","Arginine deiminase"],["Pfam%3APF13734","Spi protease inhibitor"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":7,"nb":7,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["liquid-water-envo-00002006.html","liquid water"],["crown-gall-bto-0000303.html","crown gall"],["finger-bto-0004669.html","finger"],["resting-cell-bto-0001170.html","resting cell"],["water-scum-envo-00005794.html","water scum"]],"b":[["Pfam%3APF19443","DAHL domain"],["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"],["Pfam%3APF03524","Conjugal transfer protein"],["Pfam%3APF27439","Chaperone protein DnaJ C-terminal region"],["Pfam%3APF10907","Protein of unknown function (DUF2749)"],["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":19,"nb":6,"a":[["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["bone-element-uberon-0001474.html","bone element"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF10779","Haemolysin XhlA"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF08181","DegQ (SacQ) family"],["Pfam%3APF08057","Erythromycin resistance leader peptide"],["Pfam%3APF14867","Lantibiotic alpha"]]},{"id":"NCBITaxon:1409","l":"Bacillus sp. (in: firmicutes)","na":16,"nb":6,"a":[["biofilm-envo-00002034.html","biofilm"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["low-tide-zone-envo-00000319.html","low tide zone"],["organic-waste-material-envo-00002873.html","organic waste material"],["rhizosphere-envo-00005801.html","rhizosphere"],["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["Pfam%3APF02903","Alpha amylase, N-terminal ig-like domain"],["Pfam%3APF12123","PlyG Cell wall binding domain"],["Pfam%3APF24517","Carbohydrate-binding module family 96"],["Pfam%3APF07827","KNTase C-terminal domain"],["TED%3AAF-A0A3D0E1V5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D0E1V5-F1-model_v4_TED01"],["TED%3AAF-A0A3D5U4K3-F1-model_v4_TED01","TED novel fold AF-A0A3D5U4K3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:40324","l":"Stenotrophomonas maltophilia","na":15,"nb":6,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["catheter-device-ncit-c50344.html","Catheter Device"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["seedling-bto-0001228.html","seedling"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["TED%3AAF-A0A2U4H7T5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2U4H7T5-F1-model_v4_TED02"],["TED%3AAF-A0A2W6G5X3-F1-model_v4_TED01","TED novel fold AF-A0A2W6G5X3-F1-model_v4_TED01"],["TED%3AAF-A0A2W6IKS3-F1-model_v4_TED02","TED novel fold AF-A0A2W6IKS3-F1-model_v4_TED02"],["TED%3AAF-A0A7D0KRT5-F1-model_v4_TED03","TED novel fold AF-A0A7D0KRT5-F1-model_v4_TED03"],["TED%3AAF-A0A7T8PWR1-F1-model_v4_TED05","TED novel fold AF-A0A7T8PWR1-F1-model_v4_TED05"]]},{"id":"NCBITaxon:1397","l":"Niallia circulans","na":12,"nb":6,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["organic-waste-material-envo-00002873.html","organic waste material"],["rhizosphere-envo-00005801.html","rhizosphere"],["cultivated-environment-envo-01000311.html","cultivated environment"],["sludge-envo-00002044.html","sludge"]],"b":[["Pfam%3APF03423","Carbohydrate binding domain (family 25)"],["Pfam%3APF13199","Glycosyl hydrolase family 66"],["Pfam%3APF14399","Butirosin biosynthesis protein H, N-terminal"],["Pfam%3APF19634","Family of unknown function (DUF6137)"],["PROSITE%3APS60000","Chitosanases families 46 and 80 active sites signature"],["TED%3AAF-A0A0J1IR10-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0J1IR10-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1496","l":"Clostridioides difficile","na":6,"nb":10,"a":[["hospital-envo-00002173.html","hospital"],["feces-uberon-0001988.html","feces"],["leukocyte-bto-0000751.html","leukocyte"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["intestine-environment-envo-2100002.html","intestine environment"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["Pfam%3APF18671","4-Hydroxyphenylacetate decarboxylase subunit gamma N-terminal"],["Pfam%3APF00302","Chloramphenicol acetyltransferase"],["Pfam%3APF18524","High potential iron-sulfur protein like"],["Pfam%3APF06050","2-hydroxyglutaryl-CoA dehydratase, D-component"],["PROSITE%3APS00100","Chloramphenicol acetyltransferase active site"],["Pfam%3APF01473","Putative cell wall binding repeat"]]},{"id":"NCBITaxon:727","l":"Haemophilus influenzae","na":9,"nb":6,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["head-bto-0000282.html","head"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["Pfam%3APF06808","Tripartite ATP-independent periplasmic transporter, DctM component"],["Pfam%3APF04290","Tripartite ATP-independent periplasmic transporters, DctQ component"],["Pfam%3APF09226","Restriction endonuclease HincII"],["Pfam%3APF09520","Type II restriction endonuclease, HinfI"],["Pfam%3APF24077","Immunoglobulin A1 protease autotransporter domain 2"],["PROSITE%3APS01068","OmpA-like domain"]]},{"id":"NCBITaxon:1305","l":"Streptococcus sanguinis","na":6,"nb":7,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["throat-bto-0000828.html","throat"],["geographic-feature-envo-00000000.html","geographic feature"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Pfam%3APF09254","FokI, cleavage domain"],["Pfam%3APF02981","FokI, recognition domain, subdomain 1"],["Pfam%3APF02980","FokI, recognition domain, subdomain 2"],["Pfam%3APF07501","G5 domain"],["Pfam%3APF07581","The GLUG motif"],["TED%3AAF-A0A7H8V358-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H8V358-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1502","l":"Clostridium perfringens","na":7,"nb":6,"a":[["small-river-biome-envo-00000890.html","small river biome"],["animal-house-envo-00003040.html","animal house"],["ileum-bto-0000620.html","ileum"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["Pfam%3APF08307","Glycosyl hydrolase family 98 C-terminal domain"],["Pfam%3APF08306","Glycosyl hydrolase family 98"],["Pfam%3APF12645","Helix-turn-helix domain"],["Pfam%3APF03505","Clostridium enterotoxin"],["Pfam%3APF10960","BhlA holin family"],["TED%3AAF-A0A140GRT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A140GRT8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1510","l":"Thermoclostridium stercorarium","na":6,"nb":7,"a":[["small-river-biome-envo-00000890.html","small river biome"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"],["rock-envo-00001995.html","rock"],["sulfur-spring-envo-00000126.html","sulfur spring"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["Pfam%3APF07523","Bacterial Ig-like domain (group 3)"],["Pfam%3APF03442","Carbohydrate binding domain X2"],["Pfam%3APF00457","Glycosyl hydrolases family 11"],["Pfam%3APF03422","Carbohydrate binding module (family 6)"],["PROSITE%3APS00776","Glycosyl hydrolases family 11 (GH11) active site signature 1"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"]]},{"id":"NCBITaxon:1871047","l":"Chryseobacterium sp.","na":6,"nb":7,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["leaf-po-0025034.html","leaf"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["humid-habitatmech-bacdive-0fa0234f43.html","Humid"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["TED%3AAF-A0A2W6XQ62-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W6XQ62-F1-model_v4_TED01"],["TED%3AAF-A0A2W6YLD3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2W6YLD3-F1-model_v4_TED02"],["TED%3AAF-A0A5N7U1L3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5N7U1L3-F1-model_v4_TED01"],["TED%3AAF-A0A3D4JZX5-F1-model_v4_TED04","TED novel fold AF-A0A3D4JZX5-F1-model_v4_TED04"],["TED%3AAF-A0A3N7GZ20-F1-model_v4_TED01","TED novel fold AF-A0A3N7GZ20-F1-model_v4_TED01"],["TED%3AAF-A0A5N7YYR2-F1-model_v4_TED01","TED novel fold AF-A0A5N7YYR2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":16,"nb":5,"a":[["fresh-water-envo-00002011.html","fresh water"],["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"]],"b":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF02963","Restriction endonuclease EcoRI"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["PROSITE%3APS00974","Mannitol dehydrogenases signature"],["PROSITE%3APS00567","Phosphoribulokinase signature"]]},{"id":"NCBITaxon:1598","l":"Limosilactobacillus reuteri","na":14,"nb":5,"a":[["cecum-mucosa-bto-0000213.html","cecum mucosa"],["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["ileum-bto-0000620.html","ileum"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"]],"b":[["TED%3AAF-A0A6N1EMN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N1EMN7-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2V3C3-F1-model_v4_TED01","TED novel fold AF-A0A1Y2V3C3-F1-model_v4_TED01"],["TED%3AAF-A0A848BUA9-F1-model_v4_TED01","TED novel fold AF-A0A848BUA9-F1-model_v4_TED01"],["TED%3AAF-A0A855XJ18-F1-model_v4_TED01","TED novel fold AF-A0A855XJ18-F1-model_v4_TED01"],["TED%3AAF-Q6WUB1-F1-model_v4_TED03","TED novel fold AF-Q6WUB1-F1-model_v4_TED03"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":14,"nb":5,"a":[["watercourse-envo-00000029.html","watercourse"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["leaf-po-0025034.html","leaf"]],"b":[["TED%3AAF-A0A4Y6CF56-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y6CF56-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6CNZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Y6CNZ1-F1-model_v4_TED02"],["TED%3AAF-A0A7Y4IIX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4IIX4-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6B7F9-F1-model_v4_TED01","TED novel fold AF-A0A4Y6B7F9-F1-model_v4_TED01"],["TED%3AAF-A0A7Y4IR70-F1-model_v4_TED01","TED novel fold AF-A0A7Y4IR70-F1-model_v4_TED01"]]},{"id":"NCBITaxon:239","l":"Flavobacterium sp.","na":5,"nb":13,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["mud-envo-01000001.html","mud"],["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"],["orchard-envo-00000115.html","orchard"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["Pfam%3APF21331","Isoamylase, C-terminal"],["TED%3AAF-A0A2E4PC55-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E4PC55-F1-model_v4_TED02"],["TED%3AAF-A0A2E4PGC5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4PGC5-F1-model_v4_TED01"],["TED%3AAF-A0A2E4PMB7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E4PMB7-F1-model_v4_TED02"],["TED%3AAF-A0A355BEV2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A355BEV2-F1-model_v4_TED02"],["TED%3AAF-A0A519QLA6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A519QLA6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":13,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"],["midgut-bto-0000863.html","midgut"],["paddy-field-envo-00000297.html","paddy field"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF03173","Putative carbohydrate binding domain"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"],["Pfam%3APF06438","Heme-binding protein A (HasA)"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF05247","Flagellar transcriptional activator (FlhD)"]]},{"id":"NCBITaxon:224911","l":"Bradyrhizobium diazoefficiens (strain JCM 10833 / BCRC 13528 / IAM 13628 / NBRC 14792 / USDA 110)","na":5,"nb":10,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["microbial-mat-material-envo-01000157.html","microbial mat material"],["agricultural-soil-envo-00002259.html","agricultural soil"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["Pfam%3APF14715","N-terminal domain of cytochrome oxidase-cbb3, FixP"],["Pfam%3APF03886","ABC-type transport auxiliary lipoprotein component"],["Pfam%3APF10649","Protein of unknown function (DUF2478)"],["Pfam%3APF01924","Hydrogenase formation hypA family"],["PROSITE%3APS00882","Nickel-dependent hydrogenases b-type cytochrome subunit signature 1"]]},{"id":"NCBITaxon:1667","l":"Arthrobacter sp.","na":9,"nb":5,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["leaf-po-0025034.html","leaf"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["Pfam%3APF14031","Putative serine dehydratase domain"],["Pfam%3APF02449","Beta-galactosidase"],["Pfam%3APF08533","Beta-galactosidase C-terminal domain"],["Pfam%3APF08532","Beta-galactosidase trimerisation domain"],["TED%3AAF-A0A3C2BWN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C2BWN3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":5,"nb":6,"a":[["liquid-water-envo-00002006.html","liquid water"],["food-spoiled-foodon-00003366.html","food (spoiled)"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"]],"b":[["Pfam%3APF14525","AraC-binding-like domain"],["Pfam%3APF06139","BphX-like"],["Pfam%3APF13340","Putative transposase of IS4/5 family (DUF4096)"],["Pfam%3APF11794","4-hydroxyphenylacetate 3-hydroxylase N terminal"],["Pfam%3APF03241","4-hydroxyphenylacetate 3-hydroxylase C terminal"],["TED%3AAF-A0A4S3H3T1-F1-model_v4_TED02","TED novel fold AF-A0A4S3H3T1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:391625","l":"Plesiocystis pacifica SIR-1","na":5,"nb":6,"a":[["coral-reef-envo-00000150.html","coral reef"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["bulk-soil-envo-00005802.html","bulk soil"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-A6FXI2-F1-model_v4_TED01","TED highly-symmetric fold AF-A6FXI2-F1-model_v4_TED01"],["TED%3AAF-A6G0J0-F1-model_v4_TED01","TED highly-symmetric fold AF-A6G0J0-F1-model_v4_TED01"],["TED%3AAF-A6G9Q2-F1-model_v4_TED01","TED highly-symmetric fold AF-A6G9Q2-F1-model_v4_TED01"],["TED%3AAF-A6G861-F1-model_v4_TED02","TED novel fold AF-A6G861-F1-model_v4_TED02"],["TED%3AAF-A6GGD7-F1-model_v4_TED01","TED novel fold AF-A6GGD7-F1-model_v4_TED01"],["TED%3AAF-A6GI73-F1-model_v4_TED02","TED novel fold AF-A6GI73-F1-model_v4_TED02"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":5,"nb":6,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["pseudostem-bto-0005992.html","pseudostem"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["Pfam%3APF02929","Beta galactosidase small chain"],["Pfam%3APF27279","Fumarate--diaminopropanoate ligase C-terminal domain"],["Pfam%3APF18024","Helix-turn-helix domain"],["Pfam%3APF16353","Beta-galactosidase, domain 4"],["PROSITE%3APS00594","Aromatic amino acids permeases signature"],["PROSITE%3APS00853","Beta-eliminating lyases pyridoxal-phosphate attachment site"]]},{"id":"NCBITaxon:1318","l":"Streptococcus parasanguinis","na":5,"nb":5,"a":[["biofilm-envo-00002034.html","biofilm"],["geographic-feature-envo-00000000.html","geographic feature"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"],["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["Pfam%3APF26337","Glucosyltransferase 3-like, C-terminal domain"],["Pfam%3APF26334","Glucosyltransferase 3-like, N-terminal domain"],["Pfam%3APF22145","GtfA extended beta-sheet domain"],["Pfam%3APF27244","GtfB middle domain"],["Pfam%3APF04286","Protein of unknown function (DUF445)"]]},{"id":"NCBITaxon:1393","l":"Brevibacillus brevis","na":5,"nb":5,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["Pfam%3APF03306","Alpha-acetolactate decarboxylase"],["Pfam%3APF05384","Sensor protein DegS"],["TED%3AAF-A0A2Z4MK38-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z4MK38-F1-model_v4_TED01"],["TED%3AAF-A0A2Z4MPQ6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2Z4MPQ6-F1-model_v4_TED02"],["TED%3AAF-A0A517IGN3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A517IGN3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:39947","l":"Oryza sativa subsp. japonica","na":4,"nb":158,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["large-river-biome-envo-00000887.html","large river biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"],["river-bed-envo-00000384.html","river bed"]],"b":[["Pfam%3APF03157","High molecular weight glutenin subunit"],["Pfam%3APF26249","RdRP3/4/5, N-terminal four helical bundle domain"],["Pfam%3APF23242","TRIP13-like, AAA+ ATPase lid C-terminal domain"],["Pfam%3APF26791","AAPxQ domain"],["Pfam%3APF24922","Acyl-CoA-binding domain-containing protein 4-6, C-terminal"],["Pfam%3APF04864","Allinase"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":4,"nb":32,"a":[["bioreactor-envo-00002123.html","bioreactor"],["human-construction-envo-00000070.html","human construction"],["sediment-envo-00002007.html","sediment"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF25848","Rodlin protein"],["Pfam%3APF13420","Acetyltransferase (GNAT) domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF26381","BREX System ATPase PglY protein 5th domain"],["Pfam%3APF26382","BREX System ATPase PglY protein 6th domain"]]},{"id":"NCBITaxon:3055","l":"Chlamydomonas reinhardtii","na":4,"nb":27,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["large-river-biome-envo-00000887.html","large river biome"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["pond-water-envo-00002228.html","pond water"]],"b":[["Pfam%3APF01333","Apocytochrome F, C-terminal"],["Pfam%3APF16639","Apocytochrome F, N-terminal"],["Pfam%3APF00430","ATP synthase B/B' CF(0)"],["Pfam%3APF00401","ATP synthase, Delta/Epsilon chain, long alpha-helix domain"],["Pfam%3APF21771","CFAP58 central coiled coil"],["Pfam%3APF27956","CFAP99 V-shaped coiled-coil domain"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae (strain ATCC 42149 / RIB 40)","na":4,"nb":27,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["mountain-pass-envo-00000084.html","mountain pass"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF09260","Alpha-amylase, domain C"],["Pfam%3APF28338","AclK C-terminal domain"],["Pfam%3APF09206","Alpha-L-arabinofuranosidase B, catalytic"],["Pfam%3APF28380","Sesquiterpene cyclase astC-like C-terminal domain"],["Pfam%3APF13364","Beta-galactosidase second all-beta domain"],["Pfam%3APF10435","Beta-galactosidase, domain 2"]]},{"id":"NCBITaxon:33","l":"Myxococcus fulvus","na":21,"nb":4,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"]],"b":[["TED%3AAF-A0A511SVC1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A511SVC1-F1-model_v4_TED01"],["TED%3AAF-A0A511SU64-F1-model_v4_TED01","TED novel fold AF-A0A511SU64-F1-model_v4_TED01"],["TED%3AAF-A0A511T2U3-F1-model_v4_TED02","TED novel fold AF-A0A511T2U3-F1-model_v4_TED02"],["TED%3AAF-A0A511T9F8-F1-model_v4_TED05","TED novel fold AF-A0A511T9F8-F1-model_v4_TED05"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":4,"nb":20,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF27529","AMPT"],["Pfam%3APF24856","L-arabinose isomerase central domain"],["Pfam%3APF02610","L-arabinose isomerase N-terminal domain"],["Pfam%3APF11762","L-arabinose isomerase C-terminal domain"],["Pfam%3APF17727","CtsR C-terminal dimerization domain"]]},{"id":"NCBITaxon:1085","l":"Rhodospirillum rubrum","na":19,"nb":4,"a":[["biofilm-envo-00002034.html","biofilm"],["brackish-water-body-envo-01001321.html","brackish water body"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["liquid-water-envo-00002006.html","liquid water"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["river-envo-00000022.html","river"]],"b":[["Pfam%3APF00556","Antenna complex alpha/beta subunit"],["Pfam%3APF09527","Putative F0F1-ATPase subunit Ca2+/Mg2+ transporter"],["Pfam%3APF07357","Dinitrogenase reductase ADP-ribosyltransferase (DRAT)"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"]]},{"id":"NCBITaxon:169963","l":"Listeria monocytogenes serovar 1/2a (strain ATCC BAA-679 / EGD-e)","na":4,"nb":18,"a":[["brain-bto-0000142.html","brain"],["heart-bto-0000562.html","heart"],["macrophage-cell-line-bto-0002278.html","macrophage cell line"],["p-388d1-cell-bto-0000984.html","P-388D1 cell"]],"b":[["Pfam%3APF17936","Bacterial Ig domain"],["Pfam%3APF06778","Chlorite dismutase"],["Pfam%3APF05737","Collagen binding domain"],["Pfam%3APF09479","Listeria-Bacteroides repeat domain (List_Bact_rpt)"],["Pfam%3APF13457","GW (Gly-Tryp) dipeptide domain"],["Pfam%3APF08858","IDEAL domain"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":4,"nb":16,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF28265","Lipoprotein N-acylation protein LnsA-like"],["Pfam%3APF16403","Bacterial surface protein, Ig-like domain"],["Pfam%3APF03944","delta endotoxin"],["Pfam%3APF03945","delta endotoxin, N-terminal domain"],["Pfam%3APF06355","Aegerolysin"]]},{"id":"NCBITaxon:28214","l":"Sphingomonas sp.","na":16,"nb":4,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["air-conditioning-unit-envo-00002874.html","air conditioning unit"],["laboratory-facility-envo-01001406.html","laboratory facility"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["Pfam%3APF11723","Homotrimeric ring hydroxylase"],["Pfam%3APF07364","Metallopeptidase family M81"],["TED%3AAF-A0A525HJK0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A525HJK0-F1-model_v4_TED02"],["TED%3AAF-A0A520ITV0-F1-model_v4_TED02","TED novel fold AF-A0A520ITV0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1302","l":"Streptococcus gordonii","na":4,"nb":13,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["dental-plaque-uberon-0016482.html","dental plaque"],["archeological-site-envo-00000564.html","archeological site"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Pfam%3APF18652","Adhesin P1 N-terminal domain"],["Pfam%3APF17998","Cell surface antigen I/II C2 terminal domain"],["Pfam%3APF16364","Cell surface antigen C-terminus"],["Pfam%3APF18938","Atypical Rib domain"],["Pfam%3APF08759","Glycosyltransferase GT-D fold"],["Pfam%3APF22145","GtfA extended beta-sheet domain"]]},{"id":"NCBITaxon:238","l":"Elizabethkingia meningoseptica","na":10,"nb":4,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["pond-water-envo-00002228.html","pond water"],["small-river-biome-envo-00000890.html","small river biome"],["bronchus-uberon-0002185.html","bronchus"],["midgut-bto-0000863.html","midgut"],["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["Pfam%3APF21252","Glycosyl hydrolase 109, C-terminal domain"],["Pfam%3APF26305","cGAS/DncV-like nucleotidyltransferase C-terminal helical domain"],["PROSITE%3APS00743","Beta-lactamases class B signature 1"],["PROSITE%3APS00744","Beta-lactamases class B signature 2"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":8,"nb":4,"a":[["groundwater-envo-01001004.html","groundwater"],["bioreactor-envo-00002123.html","bioreactor"],["river-envo-00000022.html","river"],["freshwater-environment-envo-01000306.html","freshwater environment"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["TED%3AAF-A0A7W3UB61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W3UB61-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F4B3-F1-model_v4_TED01","TED novel fold AF-A0A0D7F4B3-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F6R4-F1-model_v4_TED01","TED novel fold AF-A0A0D7F6R4-F1-model_v4_TED01"],["TED%3AAF-A0A7W3YI15-F1-model_v4_TED02","TED novel fold AF-A0A7W3YI15-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":8,"nb":4,"a":[["reservoir-envo-00000025.html","reservoir"],["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["secretion-bto-0002979.html","secretion"],["stomach-bto-0001307.html","stomach"]],"b":[["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF09711","CRISPR-associated protein (Cas_Csn2)"],["Pfam%3APF06308","23S rRNA methylastransferase leader peptide (ErmCL)"]]},{"id":"NCBITaxon:1505","l":"Paraclostridium sordellii","na":8,"nb":4,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["animal-house-envo-00003040.html","animal house"],["animal-litter-envo-00002191.html","animal litter"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["mud-envo-01000001.html","mud"]],"b":[["Pfam%3APF13859","BNR repeat-like domain"],["Pfam%3APF01473","Putative cell wall binding repeat"],["Pfam%3APF19127","Choline-binding repeat"],["TED%3AAF-A0A822PVZ2-F1-model_v4_TED01","TED novel fold AF-A0A822PVZ2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":8,"nb":4,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"],["TED%3AAF-A0A085UKV7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085UKV7-F1-model_v4_TED01"],["TED%3AAF-A0A4R6IU28-F1-model_v4_TED02","TED novel fold AF-A0A4R6IU28-F1-model_v4_TED02"]]},{"id":"NCBITaxon:51671","l":"Microbacterium sp.","na":8,"nb":4,"a":[["marine-water-body-envo-00001999.html","marine water body"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"]],"b":[["Pfam%3APF19906","C-glycoside deglycosidase beta subunit"],["TED%3AAF-A0A349CW39-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349CW39-F1-model_v4_TED01"],["TED%3AAF-A0A2W6V981-F1-model_v4_TED01","TED novel fold AF-A0A2W6V981-F1-model_v4_TED01"],["TED%3AAF-A0A3D4PQL1-F1-model_v4_TED01","TED novel fold AF-A0A3D4PQL1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:438753","l":"Azorhizobium caulinodans ORS 571","na":7,"nb":4,"a":[["bacteroid-bto-0000109.html","bacteroid"],["free-living-state-bto-0001551.html","free-living state"],["lateral-root-bto-0005441.html","lateral root"],["rootlet-bto-0001192.html","rootlet"],["seedling-bto-0001228.html","seedling"],["stem-nodule-bto-0001816.html","stem nodule"]],"b":[["Pfam%3APF27389","AZC_3924"],["Pfam%3APF09663","Amidohydrolase ring-opening protein (Amido_AtzD_TrzD)"],["PROSITE%3APS01349","Nodulation protein nodA signature"],["PROSITE%3APS00647","Thymidine and pyrimidine-nucleoside phosphorylases signature"]]},{"id":"NCBITaxon:53249","l":"","na":4,"nb":7,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["aquaculture-farm-envo-03600074.html","aquaculture farm"],["fumarole-envo-00000216.html","fumarole"]],"b":[["Pfam%3APF25291","Lambda-carrageenase C-terminal domain"],["Pfam%3APF25290","Lambda-carrageenase middle domain"],["Pfam%3APF17396","Domain of unknown function (DUF1611_N) Rossmann-like domain"],["Pfam%3APF07755","Domain of unknown function (DUF1611_C) P-loop domain"],["Pfam%3APF25292","Lambda-carrageenase beta-propeller domain"],["TED%3AAF-A0A2D5T282-F1-model_v4_TED01","TED novel fold AF-A0A2D5T282-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1079","l":"Blastochloris viridis","na":6,"nb":4,"a":[["fresh-water-envo-00002011.html","fresh water"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["Pfam%3APF00556","Antenna complex alpha/beta subunit"],["Pfam%3APF02276","Photosynthetic reaction centre cytochrome C subunit"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["TED%3AAF-A0A0H5BDG4-F1-model_v4_TED01","TED novel fold AF-A0A0H5BDG4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1306","l":"Streptococcus sp.","na":4,"nb":6,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["co-culture-habitatmech-bacdive-ff945d8a69.html","Co-culture"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["TED%3AAF-A0A496KVG3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A496KVG3-F1-model_v4_TED02"],["TED%3AAF-A0A496KCG7-F1-model_v4_TED01","TED novel fold AF-A0A496KCG7-F1-model_v4_TED01"],["TED%3AAF-A0A496L3I5-F1-model_v4_TED01","TED novel fold AF-A0A496L3I5-F1-model_v4_TED01"],["TED%3AAF-A0A496LB14-F1-model_v4_TED02","TED novel fold AF-A0A496LB14-F1-model_v4_TED02"],["TED%3AAF-A0A496M1E6-F1-model_v4_TED02","TED novel fold AF-A0A496M1E6-F1-model_v4_TED02"],["TED%3AAF-A0A496M2R1-F1-model_v4_TED06","TED novel fold AF-A0A496M2R1-F1-model_v4_TED06"]]},{"id":"NCBITaxon:1311","l":"Streptococcus agalactiae","na":6,"nb":4,"a":[["kidney-bto-0000671.html","kidney"],["milk-uberon-0001913.html","milk"],["oropharynx-bto-0005257.html","oropharynx"],["urine-bto-0001419.html","urine"],["urogenital-system-bto-0003091.html","urogenital system"],["vagina-bto-0000243.html","vagina"]],"b":[["Pfam%3APF19567","Capsular polysaccharide synthesis, CpsB/CapC"],["Pfam%3APF16828","GAG-binding domain on surface antigen"],["Pfam%3APF27244","GtfB middle domain"],["Pfam%3APF07373","CAMP factor (Cfa)"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":4,"nb":6,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["carcass-envo-00002033.html","carcass"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["sludge-envo-00002044.html","sludge"]],"b":[["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF03744","6-carboxyhexanoate--CoA ligase"],["PROSITE%3APS00836","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 1"],["PROSITE%3APS00837","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 2"],["TED%3AAF-A0A2S5D092-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5D092-F1-model_v4_TED01"],["TED%3AAF-A0A2S0JW09-F1-model_v4_TED01","TED novel fold AF-A0A2S0JW09-F1-model_v4_TED01"]]},{"id":"NCBITaxon:388919","l":"Streptococcus sanguinis (strain SK36)","na":4,"nb":6,"a":[["buccal-mucosa-bto-0003833.html","buccal mucosa"],["dental-plaque-bto-0000338.html","dental plaque"],["pharyngeal-mucosa-bto-0001047.html","pharyngeal mucosa"],["pharynx-bto-0001049.html","pharynx"]],"b":[["Pfam%3APF20921","Domain of unknown function DUF1846, C-terminal"],["Pfam%3APF08903","Domain of unknown function DUF1846, N-terminal"],["Pfam%3APF03186","CobD/Cbib protein"],["Pfam%3APF08503","Tetrahydrodipicolinate succinyltransferase N-terminal"],["Pfam%3APF06949","Protein of unknown function (DUF1292)"],["Pfam%3APF06160","Septation ring formation regulator, EzrA"]]},{"id":"NCBITaxon:1366","l":"","na":4,"nb":5,"a":[["animal-house-envo-00003040.html","animal house"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["TED%3AAF-A0A5R9CHM3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5R9CHM3-F1-model_v4_TED02"],["TED%3AAF-A0A6H0UIE5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6H0UIE5-F1-model_v4_TED01"],["TED%3AAF-A0A6H0UK30-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6H0UK30-F1-model_v4_TED01"],["TED%3AAF-A0A6H0URM1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6H0URM1-F1-model_v4_TED02"],["TED%3AAF-A0A6H0UGG1-F1-model_v4_TED06","TED novel fold AF-A0A6H0UGG1-F1-model_v4_TED06"]]},{"id":"NCBITaxon:1411316","l":"Pedobacter sp.","na":5,"nb":4,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["TED%3AAF-A0A520IH20-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A520IH20-F1-model_v4_TED02"],["TED%3AAF-A0A519VYD0-F1-model_v4_TED02","TED novel fold AF-A0A519VYD0-F1-model_v4_TED02"],["TED%3AAF-A0A520CAS2-F1-model_v4_TED01","TED novel fold AF-A0A520CAS2-F1-model_v4_TED01"],["TED%3AAF-A0A520GU64-F1-model_v4_TED01","TED novel fold AF-A0A520GU64-F1-model_v4_TED01"]]},{"id":"NCBITaxon:195","l":"Campylobacter coli","na":4,"nb":5,"a":[["feces-uberon-0001988.html","feces"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["PROSITE%3APS00100","Chloramphenicol acetyltransferase active site"],["TED%3AAF-A0A697DVN1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A697DVN1-F1-model_v4_TED01"],["TED%3AAF-A0A5T0YXG5-F1-model_v4_TED02","TED novel fold AF-A0A5T0YXG5-F1-model_v4_TED02"],["TED%3AAF-A0A825MHY8-F1-model_v4_TED03","TED novel fold AF-A0A825MHY8-F1-model_v4_TED03"],["TED%3AAF-A0A828DMV9-F1-model_v4_TED01","TED novel fold AF-A0A828DMV9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:305","l":"Ralstonia solanacearum","na":4,"nb":5,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"],["pseudostem-bto-0005992.html","pseudostem"],["xylem-bto-0001468.html","xylem"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["Pfam%3APF14897","EpsG family"],["TED%3AAF-A0A7I8FQZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7I8FQZ6-F1-model_v4_TED01"],["TED%3AAF-A0A7H1MI34-F1-model_v4_TED01","TED novel fold AF-A0A7H1MI34-F1-model_v4_TED01"],["TED%3AAF-A0A7I8FKL4-F1-model_v4_TED01","TED novel fold AF-A0A7I8FKL4-F1-model_v4_TED01"],["TED%3AAF-A0A850FKB0-F1-model_v4_TED01","TED novel fold AF-A0A850FKB0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":5,"nb":4,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"],["feces-uberon-0001988.html","feces"],["rectum-bto-0001158.html","rectum"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["Pfam%3APF01375","Heat-labile enterotoxin alpha chain"],["Pfam%3APF09101","Exotoxin A binding"],["Pfam%3APF09009","Exotoxin A catalytic"],["Pfam%3APF09102","Exotoxin A, targeting"]]},{"id":"NCBITaxon:378806","l":"Stigmatella aurantiaca DW4/3-1","na":4,"nb":4,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["orchard-envo-00000115.html","orchard"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-Q098I8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q098I8-F1-model_v4_TED01"],["TED%3AAF-E3FRW3-F1-model_v4_TED01","TED novel fold AF-E3FRW3-F1-model_v4_TED01"],["TED%3AAF-E3G0M4-F1-model_v4_TED01","TED novel fold AF-E3G0M4-F1-model_v4_TED01"],["TED%3AAF-Q08VS7-F1-model_v4_TED01","TED novel fold AF-Q08VS7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:83449","l":"Cystobacter ferrugineus","na":4,"nb":4,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["wood-bto-0005516.html","wood"],["sand-envo-01000017.html","sand"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-A0A1L9B4M1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L9B4M1-F1-model_v4_TED01"],["TED%3AAF-A0A1L9B5W1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L9B5W1-F1-model_v4_TED01"],["TED%3AAF-A0A1L9BCS8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L9BCS8-F1-model_v4_TED01"],["TED%3AAF-A0A1L9BDA4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1L9BDA4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:85698","l":"","na":4,"nb":4,"a":[["hospital-envo-00002173.html","hospital"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["Pfam%3APF25975","CzcB C-terminal circularly permuted SH3-like domain"],["Pfam%3APF17524","Anti-sigma factor CnrY"],["Pfam%3APF10778","Halocarboxylic acid dehydrogenase DehI"],["TED%3AAF-A0A1R1JVF9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1R1JVF9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":3,"nb":49554,"a":[["city-envo-00000856.html","city"],["cold-environment-envo-01000309.html","cold environment"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["EC%3A1.1.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.1.98.-","With other, known, acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":27,"nb":3,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["watercourse-envo-00000029.html","watercourse"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["egg-food-product-foodon-00001274.html","egg food product"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"]],"b":[["Pfam%3APF14864","Alkyl sulfatase C-terminal"],["Pfam%3APF13816","Haem-containing dehydratase"],["Pfam%3APF14863","Alkyl sulfatase dimerisation"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":25,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-water-body-envo-00001999.html","marine water body"],["sea-water-envo-00002149.html","sea water"],["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF08130","Type A lantibiotic family"],["Pfam%3APF04738","Lantibiotic dehydratase, N terminus"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":3,"nb":19,"a":[["milk-uberon-0001913.html","milk"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["Pfam%3APF03306","Alpha-acetolactate decarboxylase"],["Pfam%3APF22208","Cas_Csm6 CARF domain"],["Pfam%3APF09659","Cas_Csm6 HEPN domain"],["Pfam%3APF22335","Cas10/Cmr2, second palm domain"],["Pfam%3APF18395","Cas3 C-terminal domain"],["Pfam%3APF18019","Cas3, HD domain"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":17,"nb":3,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["fruit-bto-0000486.html","fruit"],["leaf-po-0025034.html","leaf"],["rhizosphere-envo-00005801.html","rhizosphere"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["Pfam%3APF03423","Carbohydrate binding domain (family 25)"],["Pfam%3APF03422","Carbohydrate binding module (family 6)"],["TED%3AAF-A0A7X5SGP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X5SGP7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:243161","l":"Chlamydia muridarum (strain MoPn / Nigg)","na":3,"nb":16,"a":[["cervical-adenocarcinoma-cell-bto-0003165.html","cervical adenocarcinoma cell"],["fibroblast-bto-0000452.html","fibroblast"],["hela-229-cell-bto-0005030.html","HeLa-229 cell"]],"b":[["Pfam%3APF07382","Histone H1-like nucleoprotein HC2"],["Pfam%3APF05475","Pgp3 C-terminal domain"],["Pfam%3APF07577","Domain of Unknown Function (DUF1547)"],["Pfam%3APF05745","Chlamydia 15 kDa cysteine-rich outer membrane protein (CRPA)"],["Pfam%3APF28261","Uncharacterized protein CT_504-like"],["Pfam%3APF17435","CT_584-like"]]},{"id":"NCBITaxon:29158","l":"Mytilus galloprovincialis","na":3,"nb":13,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["Pfam%3APF01097","Arthropod defensin"],["TED%3AAF-A0A8B6CBP4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B6CBP4-F1-model_v4_TED01"],["TED%3AAF-A0A8B6CUV9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A8B6CUV9-F1-model_v4_TED03"],["TED%3AAF-A0A8B6EJL3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A8B6EJL3-F1-model_v4_TED03"],["TED%3AAF-A0A8B6EMQ1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B6EMQ1-F1-model_v4_TED01"],["TED%3AAF-A0A8B6GYA1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B6GYA1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":3,"nb":11,"a":[["bile-bto-0000121.html","bile"],["rectum-bto-0001158.html","rectum"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["Pfam%3APF22829","HphA C-terminal domain"],["Pfam%3APF22828","HphA N-terminal heme-binding domain"],["Pfam%3APF28205","Ciprofloxacin tolerance protein"],["Pfam%3APF19582","Solute-binding protein AdeT 1/2"],["PROSITE%3APS00337","Beta-lactamase class-D active site"],["Pfam%3APF24575","Surface lipoprotein assembly modifier, N-terminal TPR repeats"]]},{"id":"NCBITaxon:1506","l":"Clostridium sp.","na":10,"nb":3,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["animal-waste-material-envo-00002276.html","animal waste material"],["laboratory-facility-envo-01001406.html","laboratory facility"],["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["TED%3AAF-A0A3D5KI35-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D5KI35-F1-model_v4_TED01"],["TED%3AAF-A0A316SA98-F1-model_v4_TED01","TED novel fold AF-A0A316SA98-F1-model_v4_TED01"],["TED%3AAF-A0A3B9UYE3-F1-model_v4_TED01","TED novel fold AF-A0A3B9UYE3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":3,"nb":10,"a":[["liquid-water-envo-00002006.html","liquid water"],["sludge-envo-00002044.html","sludge"],["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF09081","Glucan 1,4-alpha-maltotetraohydrolase, domain C"],["Pfam%3APF09459","Ethylbenzene dehydrogenase"],["Pfam%3APF08406","CbbQ/NirQ/NorQ C-terminal"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"],["Pfam%3APF18793","Nitrous oxide reductase propeller repeat 2"]]},{"id":"NCBITaxon:6238","l":"Caenorhabditis briggsae","na":3,"nb":10,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"],["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["Pfam%3APF09287","CEP-1, DNA binding"],["Pfam%3APF22073","Cep192 domain 4"],["Pfam%3APF15481","Chondroitin proteoglycan 4"],["Pfam%3APF13358","DDE superfamily endonuclease"],["Pfam%3APF10326","Serpentine type 7TM GPCR chemoreceptor Str"],["Pfam%3APF17266","Family of unknown function (DUF5332)"]]},{"id":"NCBITaxon:1639","l":"Listeria monocytogenes","na":9,"nb":3,"a":[["liquid-water-envo-00002006.html","liquid water"],["brain-bto-0000142.html","brain"],["central-nervous-system-bto-0000227.html","central nervous system"],["fruit-bto-0000486.html","fruit"],["placenta-bto-0001078.html","placenta"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["TED%3AAF-A0A6Z1JB74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6Z1JB74-F1-model_v4_TED01"],["TED%3AAF-A0A5Z1VYX2-F1-model_v4_TED01","TED novel fold AF-A0A5Z1VYX2-F1-model_v4_TED01"],["TED%3AAF-A0A823IT06-F1-model_v4_TED02","TED novel fold AF-A0A823IT06-F1-model_v4_TED02"]]},{"id":"NCBITaxon:121845","l":"Diaphorina citri","na":8,"nb":3,"a":[["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["stream-envo-00000023.html","stream"],["animal-house-envo-00003040.html","animal house"],["biome-envo-00000428.html","biome"]],"b":[["TED%3AAF-A0A3Q0J3L1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3Q0J3L1-F1-model_v4_TED03"],["TED%3AAF-A0A3Q0JAD0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3Q0JAD0-F1-model_v4_TED01"],["TED%3AAF-A0A1S4EQL6-F1-model_v4_TED01","TED novel fold AF-A0A1S4EQL6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1359","l":"Lactococcus lactis subsp. cremoris","na":3,"nb":8,"a":[["b-lymphocyte-bto-0000776.html","B-lymphocyte"],["peripheral-blood-mononuclear-cell-bto-0001025.html","peripheral blood mononuclear cell"],["spleen-bto-0001281.html","spleen"]],"b":[["Pfam%3APF16873","Putative abortive phage resistance protein AbiGii toxin"],["Pfam%3APF21368","AI2M/AI1M-like, HNH endonuclease"],["Pfam%3APF09136","Glucodextranase, domain B"],["Pfam%3APF10899","Putative abortive phage resistance protein AbiGi, antitoxin"],["Pfam%3APF04556","DpnII restriction endonuclease"],["Pfam%3APF04369","Lactococcin-like family"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK1622","na":3,"nb":8,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["Pfam%3APF27281","DevT C-terminal domain"],["Pfam%3APF27372","DevT N-terminal domain"],["Pfam%3APF17762","ParB HTH domain"],["Pfam%3APF01930","Domain of unknown function DUF83"],["Pfam%3APF09559","Cas6 Crispr"],["Pfam%3APF01905","CRISPR-associated negative auto-regulator DevR/Csa2"]]},{"id":"NCBITaxon:292800","l":"Flavonifractor plautii","na":3,"nb":8,"a":[["goblet-cell-bto-0001540.html","goblet cell"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["secretion-bto-0002979.html","secretion"]],"b":[["TED%3AAF-A0A6I2QXD7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I2QXD7-F1-model_v4_TED01"],["TED%3AAF-A0A6I2R9U0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I2R9U0-F1-model_v4_TED01"],["TED%3AAF-A0A6I7GJ83-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6I7GJ83-F1-model_v4_TED02"],["TED%3AAF-A0A174L5D2-F1-model_v4_TED02","TED novel fold AF-A0A174L5D2-F1-model_v4_TED02"],["TED%3AAF-A0A6I2R566-F1-model_v4_TED01","TED novel fold AF-A0A6I2R566-F1-model_v4_TED01"],["TED%3AAF-A0A6I2R5K9-F1-model_v4_TED01","TED novel fold AF-A0A6I2R5K9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:33038","l":"Mediterraneibacter gnavus","na":8,"nb":3,"a":[["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["juvenile-bto-0002168.html","juvenile"],["animal-litter-envo-00002191.html","animal litter"]],"b":[["Pfam%3APF16874","Glycosyl hydrolase family 36 C-terminal domain"],["Pfam%3APF16875","Glycosyl hydrolase family 36 N-terminal domain"],["Pfam%3APF04604","Type-A lantibiotic"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":8,"nb":3,"a":[["beach-envo-00000091.html","beach"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["sea-sand-envo-00002118.html","sea sand"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF22277","EncFtn-like"],["TED%3AAF-D0LJ11-F1-model_v4_TED04","TED highly-symmetric fold AF-D0LJ11-F1-model_v4_TED04"]]},{"id":"NCBITaxon:7159","l":"Aedes aegypti","na":3,"nb":8,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["tropical-envo-01000204.html","tropical"],["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["IDPO%3A0000004","pre-molten globule"],["Pfam%3APF25001","Aegyptin, C-terminal domain"],["Pfam%3APF01097","Arthropod defensin"],["Pfam%3APF15957","Commissureless"],["Pfam%3APF23757","Insect HPS5 TPR domain"],["TED%3AAF-Q0IGF9-F1-model_v4_TED01","TED highly-symmetric fold AF-Q0IGF9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":7,"nb":3,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["farm-envo-00000078.html","farm"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["Pfam%3APF05258","Dna[CI] antecedent, DciA"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"],["TED%3AAF-Q0RZW9-F1-model_v4_TED03","TED highly-symmetric fold AF-Q0RZW9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1307","l":"Streptococcus suis","na":3,"nb":6,"a":[["monocyte-bto-0000876.html","monocyte"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["tonsil-bto-0001387.html","tonsil"]],"b":[["TED%3AAF-A0A0Z8XA17-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0Z8XA17-F1-model_v4_TED02"],["TED%3AAF-A0A116R309-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A116R309-F1-model_v4_TED02"],["TED%3AAF-A0A3R8SIF2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R8SIF2-F1-model_v4_TED01"],["TED%3AAF-A0A0Z8H9E5-F1-model_v4_TED02","TED novel fold AF-A0A0Z8H9E5-F1-model_v4_TED02"],["TED%3AAF-A0A4T2GPV6-F1-model_v4_TED02","TED novel fold AF-A0A4T2GPV6-F1-model_v4_TED02"],["TED%3AAF-A0A7G1JVZ6-F1-model_v4_TED02","TED novel fold AF-A0A7G1JVZ6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1624","l":"Ligilactobacillus salivarius","na":6,"nb":3,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["trachea-bto-0001388.html","trachea"],["animal-litter-envo-00002191.html","animal litter"],["intestine-environment-envo-2100002.html","intestine environment"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["TED%3AAF-A0A7X2SS58-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X2SS58-F1-model_v4_TED01"],["TED%3AAF-A0A089QBS8-F1-model_v4_TED02","TED novel fold AF-A0A089QBS8-F1-model_v4_TED02"],["TED%3AAF-A0A2A2XCA8-F1-model_v4_TED01","TED novel fold AF-A0A2A2XCA8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:243365","l":"Chromobacterium violaceum ATCC 12472","na":6,"nb":3,"a":[["acute-lymphoblastic-leukemia-cell-bto-0000731.html","acute lymphoblastic leukemia cell"],["adrenal-gland-bto-0000047.html","adrenal gland"],["eosinophil-bto-0000399.html","eosinophil"],["lymphocyte-bto-0000775.html","lymphocyte"],["neutrophil-bto-0000130.html","neutrophil"],["peripheral-blood-bto-0000553.html","peripheral blood"]],"b":[["Pfam%3APF17074","Darcynin, domain of unknown function"],["Pfam%3APF12902","Ferritin-like"],["Pfam%3APF06314","Acetoacetate decarboxylase (ADC)"]]},{"id":"NCBITaxon:253","l":"Chryseobacterium indologenes","na":6,"nb":3,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["seedling-bto-0001228.html","seedling"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["tropical-envo-01000204.html","tropical"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["PROSITE%3APS00744","Beta-lactamases class B signature 2"],["TED%3AAF-A0A7T8U7T3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T8U7T3-F1-model_v4_TED01"],["TED%3AAF-A0A0N0ZUI2-F1-model_v4_TED01","TED novel fold AF-A0A0N0ZUI2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:399742","l":"Enterobacter sp. (strain 638)","na":3,"nb":6,"a":[["vasculature-uberon-0002049.html","vasculature"],["part-of-plant-habitatmech-madin-25325947e2.html","part of plant"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Pfam%3APF12404","Peptidase"],["Pfam%3APF27465","DNA-binding protein Fis N-terminal domain"],["Pfam%3APF02300","Fumarate reductase subunit C"],["Pfam%3APF04102","SlyX"],["Pfam%3APF06005","ZapB family"],["Pfam%3APF07208","Protein of unknown function (DUF1414)"]]},{"id":"NCBITaxon:1514140","l":"Trieres chinensis","na":3,"nb":5,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["estuarine-biome-envo-01000020.html","estuarine biome"],["shoreline-envo-00000486.html","shoreline"]],"b":[["TED%3AAF-A0A7S1YW68-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1YW68-F1-model_v4_TED01"],["TED%3AAF-A0A7S1Z4Z7-F1-model_v4_TED01","TED novel fold AF-A0A7S1Z4Z7-F1-model_v4_TED01"],["TED%3AAF-A0A7S1ZAT3-F1-model_v4_TED03","TED novel fold AF-A0A7S1ZAT3-F1-model_v4_TED03"],["TED%3AAF-A0A7S2A6A9-F1-model_v4_TED02","TED novel fold AF-A0A7S2A6A9-F1-model_v4_TED02"],["TED%3AAF-A0A7S2A7V0-F1-model_v4_TED02","TED novel fold AF-A0A7S2A7V0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1833","l":"Rhodococcus erythropolis","na":3,"nb":5,"a":[["watercourse-envo-00000029.html","watercourse"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"],["water-scum-envo-00005794.html","water scum"]],"b":[["Pfam%3APF08028","Acyl-CoA dehydrogenase, C-terminal domain"],["Pfam%3APF13816","Haem-containing dehydratase"],["Pfam%3APF07858","Limonene-1,2-epoxide hydrolase catalytic domain"],["Pfam%3APF09663","Amidohydrolase ring-opening protein (Amido_AtzD_TrzD)"],["TED%3AAF-A0A401N7F7-F1-model_v4_TED02","TED novel fold AF-A0A401N7F7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:68886","l":"Theileria orientalis","na":5,"nb":3,"a":[["erythrocyte-bto-0000424.html","erythrocyte"],["leukocyte-bto-0000751.html","leukocyte"],["lymphocyte-bto-0000775.html","lymphocyte"],["macrophage-bto-0000801.html","macrophage"],["monocyte-bto-0000876.html","monocyte"]],"b":[["TED%3AAF-A0A2T7I0Y7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2T7I0Y7-F1-model_v4_TED02"],["TED%3AAF-A0A2T7ITL4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T7ITL4-F1-model_v4_TED01"],["TED%3AAF-A0A2T7IKV1-F1-model_v4_TED01","TED novel fold AF-A0A2T7IKV1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:813","l":"Chlamydia trachomatis","na":3,"nb":5,"a":[["conjunctiva-bto-0003415.html","conjunctiva"],["epithelial-cell-bto-0000414.html","epithelial cell"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["Pfam%3APF07382","Histone H1-like nucleoprotein HC2"],["Pfam%3APF01308","Chlamydia major outer membrane protein"],["Pfam%3APF05475","Pgp3 C-terminal domain"],["Pfam%3APF03504","Chlamydia cysteine-rich outer membrane protein 6"],["TED%3AAF-C7DZ76-F1-model_v4_TED01","TED novel fold AF-C7DZ76-F1-model_v4_TED01"]]},{"id":"NCBITaxon:95486","l":"Burkholderia cenocepacia","na":5,"nb":3,"a":[["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["TED%3AAF-A0A109EHZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A109EHZ6-F1-model_v4_TED01"],["TED%3AAF-A0A071M3L2-F1-model_v4_TED01","TED novel fold AF-A0A071M3L2-F1-model_v4_TED01"],["TED%3AAF-A0A088UYL8-F1-model_v4_TED01","TED novel fold AF-A0A088UYL8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1451","l":"Paenibacillus amylolyticus","na":3,"nb":4,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["Pfam%3APF03211","Pectate lyase"],["TED%3AAF-A0A117I1X0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A117I1X0-F1-model_v4_TED01"],["TED%3AAF-A0A1R1DDF3-F1-model_v4_TED01","TED novel fold AF-A0A1R1DDF3-F1-model_v4_TED01"],["TED%3AAF-A0A4V3B7H8-F1-model_v4_TED01","TED novel fold AF-A0A4V3B7H8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1587","l":"Lactobacillus helveticus","na":4,"nb":3,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["intestine-environment-envo-2100002.html","intestine environment"],["urban-biome-envo-01000249.html","urban biome"],["harbour-envo-00000463.html","harbour"]],"b":[["Pfam%3APF18008","Replication initiator protein A C-terminal domain"],["Pfam%3APF20956","Domain of unknown function (DUF4931) C-terminal domain"],["Pfam%3APF17312","Bacteriocin helveticin-J"]]},{"id":"NCBITaxon:203122","l":"","na":4,"nb":3,"a":[["intertidal-zone-envo-00000316.html","intertidal zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["saline-marsh-envo-00000054.html","saline marsh"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["Pfam%3APF22686","Exo-oligoalginate lyase-like, C-terminal domain"],["Pfam%3APF07940","Heparinase II/III-like, C-terminal"],["Pfam%3APF05426","Alginate lyase"]]},{"id":"NCBITaxon:243090","l":"","na":4,"nb":3,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["oligotrophic-water-envo-00002223.html","oligotrophic water"],["pond-water-envo-00002228.html","pond water"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["Pfam%3APF02601","Exonuclease VII, large subunit"],["TED%3AAF-Q7UU79-F1-model_v4_TED04","TED highly-symmetric fold AF-Q7UU79-F1-model_v4_TED04"],["TED%3AAF-Q7USE8-F1-model_v4_TED02","TED novel fold AF-Q7USE8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:28037","l":"Streptococcus mitis","na":3,"nb":4,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["archeological-site-envo-00000564.html","archeological site"],["tropical-envo-01000204.html","tropical"]],"b":[["Pfam%3APF03047","COMC family"],["TED%3AAF-A0A1X1L9U5-F1-model_v4_TED02","TED novel fold AF-A0A1X1L9U5-F1-model_v4_TED02"],["TED%3AAF-A0A428B8X0-F1-model_v4_TED01","TED novel fold AF-A0A428B8X0-F1-model_v4_TED01"],["TED%3AAF-A0A6L5H4V3-F1-model_v4_TED03","TED novel fold AF-A0A6L5H4V3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:28447","l":"Clavibacter michiganensis","na":3,"nb":4,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["canker-habitatmech-bacdive-0f078d72a7.html","Canker"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["TED%3AAF-A0A251YC11-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A251YC11-F1-model_v4_TED02"],["TED%3AAF-A0A2S5VA57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5VA57-F1-model_v4_TED01"],["TED%3AAF-A0A2S5VJK2-F1-model_v4_TED01","TED novel fold AF-A0A2S5VJK2-F1-model_v4_TED01"],["TED%3AAF-A0A399NHQ8-F1-model_v4_TED01","TED novel fold AF-A0A399NHQ8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:290398","l":"","na":3,"nb":4,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["saline-evaporation-pond-envo-00000055.html","saline evaporation pond"],["joint-bto-0001686.html","joint"]],"b":[["Pfam%3APF20629","D-galactarate/Altronate dehydratase, C-terminal"],["Pfam%3APF04295","D-galactarate dehydratase/Altronate hydrolase, second domain"],["Pfam%3APF11982","Domain of unknown function (DUF3483)"],["PROSITE%3APS00908","Mandelate racemase / muconate lactonizing enzyme family signature 1"]]},{"id":"NCBITaxon:29159","l":"Crassostrea gigas","na":3,"nb":4,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["Pfam%3APF22494","Choice-of-anchor I domain"],["TED%3AAF-K1PYR0-F1-model_v4_TED01","TED novel fold AF-K1PYR0-F1-model_v4_TED01"],["TED%3AAF-K1Q3N2-F1-model_v4_TED01","TED novel fold AF-K1Q3N2-F1-model_v4_TED01"],["TED%3AAF-K1RG39-F1-model_v4_TED01","TED novel fold AF-K1RG39-F1-model_v4_TED01"]]},{"id":"NCBITaxon:404589","l":"","na":3,"nb":4,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["TED%3AAF-A7H7H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A7H7H4-F1-model_v4_TED01"],["TED%3AAF-A7H7U8-F1-model_v4_TED01","TED highly-symmetric fold AF-A7H7U8-F1-model_v4_TED01"],["TED%3AAF-A7HAV5-F1-model_v4_TED01","TED novel fold AF-A7HAV5-F1-model_v4_TED01"],["TED%3AAF-A7HE89-F1-model_v4_TED01","TED novel fold AF-A7HE89-F1-model_v4_TED01"]]},{"id":"NCBITaxon:45351","l":"Nematostella vectensis","na":4,"nb":3,"a":[["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["microbial-mat-material-envo-01000157.html","microbial mat material"],["slope-envo-00002000.html","slope"]],"b":[["Pfam%3APF14777","Cilia BBSome complex subunit 10"],["TED%3AAF-A7SVA7-F1-model_v4_TED01","TED highly-symmetric fold AF-A7SVA7-F1-model_v4_TED01"],["TED%3AAF-A7SXG3-F1-model_v4_TED02","TED novel fold AF-A7SXG3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:50741","l":"Marinobacter sp.","na":3,"nb":4,"a":[["marine-water-body-envo-00001999.html","marine water body"],["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["TED%3AAF-A0A2D9LBV8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9LBV8-F1-model_v4_TED01"],["TED%3AAF-A0A2D7X1D2-F1-model_v4_TED01","TED novel fold AF-A0A2D7X1D2-F1-model_v4_TED01"],["TED%3AAF-A0A2E8AEX3-F1-model_v4_TED02","TED novel fold AF-A0A2E8AEX3-F1-model_v4_TED02"],["TED%3AAF-A0A3D5Q8H2-F1-model_v4_TED01","TED novel fold AF-A0A3D5Q8H2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1260","l":"Finegoldia magna","na":3,"nb":3,"a":[["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["Pfam%3APF17573","GA-like domain"],["Pfam%3APF18656","Family of unknown function (DUF5633)"],["TED%3AAF-A0A233W4R0-F1-model_v4_TED01","TED novel fold AF-A0A233W4R0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1492","l":"Clostridium butyricum","na":3,"nb":3,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["intestine-environment-envo-2100002.html","intestine environment"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["Pfam%3APF00302","Chloramphenicol acetyltransferase"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["PROSITE%3APS00100","Chloramphenicol acetyltransferase active site"]]},{"id":"NCBITaxon:1717","l":"Corynebacterium diphtheriae","na":3,"nb":3,"a":[["foot-bto-0000476.html","foot"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["Pfam%3APF08051","Erythromycin resistance leader peptide"],["PROSITE%3APS01007","Transposases, Mutator family, signature"],["TED%3AAF-A0A811G0F8-F1-model_v4_TED05","TED novel fold AF-A0A811G0F8-F1-model_v4_TED05"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":3,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["TED%3AAF-A0A142EAM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142EAM9-F1-model_v4_TED03"],["TED%3AAF-A0A1Q3DTY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3DTY6-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3DNE3-F1-model_v4_TED01","TED novel fold AF-A0A1Q3DNE3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1961","l":"Streptomyces virginiae","na":3,"nb":3,"a":[["clay-envo-00002982.html","clay"],["plain-envo-00000086.html","plain"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF19328","2,4-diaminopentanoate dehydrogenase C-terminal domain"],["PROSITE%3APS01014","Transcription termination factor nusG signature"]]},{"id":"NCBITaxon:203124","l":"Trichodesmium erythraeum IMS101","na":3,"nb":3,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["coastal-water-body-envo-02000049.html","coastal water body"],["marine-neritic-zone-envo-00000206.html","marine neritic zone"]],"b":[["Pfam%3APF06206","CpeT/CpcT family (DUF1001)"],["Pfam%3APF18460","Heterocyst differentiation regulator C-terminal Hood domain"],["TED%3AAF-Q10WG6-F1-model_v4_TED05","TED highly-symmetric fold AF-Q10WG6-F1-model_v4_TED05"]]},{"id":"NCBITaxon:28108","l":"Alteromonas macleodii","na":3,"nb":3,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["marine-water-body-envo-00001999.html","marine water body"],["sandstone-envo-00002055.html","sandstone"]],"b":[["TED%3AAF-A0A6C5N007-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6C5N007-F1-model_v4_TED01"],["TED%3AAF-A0A126Q0V0-F1-model_v4_TED01","TED novel fold AF-A0A126Q0V0-F1-model_v4_TED01"],["TED%3AAF-A0A6T9Y0H6-F1-model_v4_TED01","TED novel fold AF-A0A6T9Y0H6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:335543","l":"","na":3,"nb":3,"a":[["anaerobic-sludge-envo-00002129.html","anaerobic sludge"],["submerged-bed-envo-00000501.html","submerged bed"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["Pfam%3APF03746","LamB/YcsF family"],["Pfam%3APF03588","Leucyl/phenylalanyl-tRNA protein transferase"],["Pfam%3APF05167","Uncharacterised ACR (DUF711)"]]},{"id":"NCBITaxon:340102","l":"","na":3,"nb":3,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"],["solfatara-envo-00000217.html","solfatara"]],"b":[["Pfam%3APF22039","Imidazolonepropionase-like composite domain, bacteria"],["Pfam%3APF01949","Endonuclease dU"],["TED%3AAF-A4WK08-F1-model_v4_TED01","TED novel fold AF-A4WK08-F1-model_v4_TED01"]]},{"id":"NCBITaxon:386415","l":"","na":3,"nb":3,"a":[["myocardium-bto-0000901.html","myocardium"],["reticuloendothelial-system-bto-0001174.html","reticuloendothelial system"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["Pfam%3APF27467","ATP-dependent helicase/deoxyribonuclease AddB fifth domain"],["Pfam%3APF01888","CbiD"],["Pfam%3APF18146","Damage-inducible protein CinA KH domain"]]},{"id":"NCBITaxon:418699","l":"","na":3,"nb":3,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["petroleum-envo-00002984.html","petroleum"]],"b":[["Pfam%3APF27460","ATP phosphoribosyltransferase subunit HisZ C-terminal domain"],["Pfam%3APF20543","N2-fixation sustaining protein CowN"],["PROSITE%3APS00855","Signal peptidases II signature"]]},{"id":"NCBITaxon:582","l":"Morganella morganii","na":3,"nb":3,"a":[["blast-cell-bto-0000125.html","blast cell"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"],["spike-bto-0001278.html","spike"]],"b":[["PROSITE%3APS01157","Class A bacterial acid phosphatases signature"],["TED%3AAF-A0A2C5TPE5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2C5TPE5-F1-model_v4_TED01"],["TED%3AAF-A0A0A2RJY1-F1-model_v4_TED02","TED novel fold AF-A0A0A2RJY1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":3,"nb":3,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Pfam%3APF04205","FMN-binding domain"],["Pfam%3APF10795","Protein of unknown function (DUF2607)"],["TED%3AAF-A0A1W6U0N2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W6U0N2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:75985","l":"Mannheimia haemolytica","na":3,"nb":3,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["leukocyte-bto-0000751.html","leukocyte"],["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["Pfam%3APF04224","Protein of unknown function, DUF417"],["Pfam%3APF04393","Protein of unknown function (DUF535)"],["TED%3AAF-A0A378MS69-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A378MS69-F1-model_v4_TED01"]]},{"id":"NCBITaxon:94122","l":"Shewanella sp. ANA-3","na":3,"nb":3,"a":[["alkaline-water-envo-01000357.html","alkaline water"],["brackish-estuary-envo-00002137.html","brackish estuary"],["underground-water-envo-00005792.html","underground water"]],"b":[["Pfam%3APF03883","Peroxide stress protein YaaA"],["Pfam%3APF04751","Dual-action ribosomal maturation protein DarP"],["Pfam%3APF04356","Protein of unknown function (DUF489)"]]},{"id":"NCBITaxon:6239","l":"Caenorhabditis elegans","na":2,"nb":9682,"a":[["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.14.14.-","With reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.17.-","With reduced ascorbate as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.19.-","With oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water"],["EC%3A1.14.99.-","Miscellaneous"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii (strain ATCC 43067 / DSM 2661 / JAL-1 / JCM 10045 / NBRC 100440)","na":2,"nb":5181,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["EC%3A1.12.99.-","With other acceptors"],["EC%3A1.3.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.3.-.-","Acting on the CH-CH group of donors"],["EC%3A1.8.98.-","With other, known, acceptors"],["EC%3A1.97.1.-","Other oxidoreductases"],["EC%3A2.1.2.-","Hydroxymethyl-, formyl- and related transferases"]]},{"id":"NCBITaxon:83331","l":"Mycobacterium tuberculosis (strain CDC 1551 / Oshkosh)","na":2,"nb":99,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["Pfam%3APF09407","AbiEi antitoxin C-terminal domain"],["Pfam%3APF17668","Acetyltransferase (GNAT) domain"],["Pfam%3APF13480","Acetyltransferase (GNAT) domain"],["Pfam%3APF13527","Acetyltransferase (GNAT) domain"],["Pfam%3APF16701","Adenylate cyclase regulatory domain"],["Pfam%3APF06029","AlkA N-terminal domain"]]},{"id":"NCBITaxon:9031","l":"Gallus gallus","na":2,"nb":48,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["Pfam%3APF16620","Unstructured linker between I-set domains 2 and 3 on MYLCK"],["Pfam%3APF15512","Chromatin assembly factor complex 1 subunit p60, C-terminal"],["Pfam%3APF18130","ATP-grasp N-terminal domain"],["Pfam%3APF15632","ATP-grasp in the biosynthetic pathway with Ter operon"],["Pfam%3APF01382","Avidin family"],["Pfam%3APF08072","BDHCT (NUC031) domain"]]},{"id":"NCBITaxon:266940","l":"Kineococcus radiotolerans SRS30216 = ATCC BAA-149","na":38,"nb":2,"a":[["air-envo-00002005.html","air"],["bay-envo-00000032.html","bay"],["coastal-sea-water-envo-00002150.html","coastal sea water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"]],"b":[["Pfam%3APF01083","Cutinase"],["TED%3AAF-A6WE06-F1-model_v4_TED06","TED novel fold AF-A6WE06-F1-model_v4_TED06"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":33,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["pond-water-envo-00002228.html","pond water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["water-body-envo-00000063.html","water body"]],"b":[["Pfam%3APF22538","Hexaprenyl diphosphate synthase, small subunit"],["PROSITE%3APS01066","Undecaprenyl pyrophosphate synthase family signature"]]},{"id":"NCBITaxon:9541","l":"Macaca fascicularis","na":2,"nb":27,"a":[["neritic-epipelagic-zone-biome-envo-01000042.html","neritic epipelagic zone biome"],["sea-shore-envo-00000485.html","sea shore"]],"b":[["Pfam%3APF16618","Linker region between SH3 and WW domains on ARHGAP12"],["Pfam%3APF28426","ATRIP C-terminal domain"],["Pfam%3APF28409","ATR-interacting protein N-terminal domain"],["Pfam%3APF23998","BTBDG BTB/POZ domain"],["Pfam%3APF21059","BTB/POZ domain-containing protein 16, C-terminal domain"],["Pfam%3APF12366","Cancer susceptibility candidate 1 C-terminal"]]},{"id":"NCBITaxon:4577","l":"Zea mays","na":2,"nb":18,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["IDPO%3A0000002","disorder"],["Pfam%3APF14861","Plant antimicrobial peptide"],["Pfam%3APF02041","Auxin binding protein"],["Pfam%3APF25436","BSD2 cysteine rich domain"],["Pfam%3APF23493","Cysteinyl-tRNA ligase anticodon binding domain"],["Pfam%3APF03330","Lytic transglycolase"]]},{"id":"NCBITaxon:85963","l":"Helicobacter pylori (strain J99 / ATCC 700824)","na":2,"nb":18,"a":[["anaerobic-sludge-blanket-reactor-envo-00002213.html","anaerobic sludge blanket reactor"],["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["Pfam%3APF15437","Plasminogen-binding protein pgbA C-terminal"],["Pfam%3APF02293","AmiS/UreI family transporter"],["Pfam%3APF26365","Apolipoprotein N-acyltransferase integral membrane domain"],["Pfam%3APF16730","DnaG-primase C-terminal, helicase-binding domain"],["Pfam%3APF10398","Protein of unknown function (DUF2443)"],["Pfam%3APF13099","Domain of unknown function (DUF3944)"]]},{"id":"NCBITaxon:176299","l":"Agrobacterium fabrum (strain C58 / ATCC 33970)","na":2,"nb":17,"a":[["human-construction-envo-00000070.html","human construction"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF28403","Aconitase X second domain"],["Pfam%3APF28406","Aconitase X third domain"],["Pfam%3APF04412","Aconitase X first domain"],["Pfam%3APF01989","Aconitase X swivel domain"]]},{"id":"NCBITaxon:272631","l":"Mycobacterium leprae (strain TN)","na":2,"nb":16,"a":[["peripheral-blood-mononuclear-cell-bto-0001025.html","peripheral blood mononuclear cell"],["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["Pfam%3APF26519","Biotin synthase auxiliary protein family"],["Pfam%3APF24481","CT398-like coiled coil hairpin domain"],["Pfam%3APF09438","Domain of unknown function (DUF2017)"],["Pfam%3APF12089","Transmembrane domain of unknown function (DUF3566)"],["Pfam%3APF12823","Domain of unknown function (DUF3817)"],["Pfam%3APF19187","PafC helix-turn-helix domain"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":2,"nb":16,"a":[["feces-uberon-0001988.html","feces"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["Pfam%3APF05932","Tir chaperone protein (CesT) family"],["Pfam%3APF17656","FlgA N-terminal domain"],["Pfam%3APF22200","ExsA N-terminal regulatory domain"],["Pfam%3APF05171","Haemin-degrading HemS.ChuX domain"],["Pfam%3APF07201","HrpJ-like domain"],["Pfam%3APF04391","Protein of unknown function (DUF533)"]]},{"id":"NCBITaxon:1580","l":"Levilactobacillus brevis","na":14,"nb":2,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["organic-waste-material-envo-00002873.html","organic waste material"],["research-facility-envo-00000469.html","research facility"],["food-fermented-foodon-00001258.html","food (fermented)"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["caco-2-cell-bto-0000195.html","CACO-2 cell"]],"b":[["TED%3AAF-A0A2A3TVW3-F1-model_v4_TED01","TED novel fold AF-A0A2A3TVW3-F1-model_v4_TED01"],["TED%3AAF-A0A7Z6MPZ0-F1-model_v4_TED02","TED novel fold AF-A0A7Z6MPZ0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:574521","l":"Escherichia coli O127:H6 (strain E2348/69 / EPEC)","na":2,"nb":13,"a":[["enterocyte-bto-0000398.html","enterocyte"],["gut-epithelium-bto-0000956.html","gut epithelium"]],"b":[["IDPO%3A0000006","order"],["IDPO%3A0000045","phosphorylation display site"],["Pfam%3APF02369","Bacterial Ig-like domain (group 1)"],["Pfam%3APF05307","Bundlin"],["Pfam%3APF27328","EcpD C-terminal domain"],["Pfam%3APF11924","Inverse autotransporter, beta-domain"]]},{"id":"NCBITaxon:58172","l":"Paenibacillus sp.","na":12,"nb":2,"a":[["factory-envo-01000536.html","factory"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["Pfam%3APF03442","Carbohydrate binding domain X2"],["TED%3AAF-A0A357M9E9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A357M9E9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:234267","l":"Candidatus Solibacter usitatus Ellin6076","na":11,"nb":2,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["pond-water-envo-00002228.html","pond water"],["aquatic-environment-envo-01000317.html","aquatic environment"],["desert-sand-envo-00005800.html","desert sand"],["environmental-material-envo-00010483.html","environmental material"],["mud-envo-01000001.html","mud"]],"b":[["TED%3AAF-Q01YB9-F1-model_v4_TED05","TED highly-symmetric fold AF-Q01YB9-F1-model_v4_TED05"],["TED%3AAF-Q02DA0-F1-model_v4_TED01","TED highly-symmetric fold AF-Q02DA0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:31234","l":"Caenorhabditis remanei","na":2,"nb":11,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"]],"b":[["TED%3AAF-A0A260YVB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A260YVB9-F1-model_v4_TED01"],["TED%3AAF-A0A2P4UZM7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2P4UZM7-F1-model_v4_TED02"],["TED%3AAF-A0A6A5GBX3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A5GBX3-F1-model_v4_TED01"],["TED%3AAF-A0A6A5H6H5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A5H6H5-F1-model_v4_TED01"],["TED%3AAF-A0A6A5HK12-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6A5HK12-F1-model_v4_TED02"],["TED%3AAF-E3LF65-F1-model_v4_TED02","TED highly-symmetric fold AF-E3LF65-F1-model_v4_TED02"]]},{"id":"NCBITaxon:190650","l":"Caulobacter vibrioides (strain ATCC 19089 / CIP 103742 / CB 15)","na":2,"nb":10,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["IDPO%3A0000060","self-assembly"],["Pfam%3APF27198","FlaEY third domain"],["Pfam%3APF22367","Flagellar hook protein FlgE, third domain"],["Pfam%3APF03799","Cell division protein FtsQ/DivIB, C-terminal"],["Pfam%3APF27294","HfaA"],["Pfam%3APF27277","Holdfast attachment protein D"]]},{"id":"NCBITaxon:853","l":"Faecalibacterium prausnitzii","na":2,"nb":10,"a":[["coral-reef-envo-00000150.html","coral reef"],["tropical-envo-01000204.html","tropical"]],"b":[["TED%3AAF-A0A2A7AJ69-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A7AJ69-F1-model_v4_TED01"],["TED%3AAF-A0A329UNG0-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A329UNG0-F1-model_v4_TED05"],["TED%3AAF-A0A3F3JVN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3F3JVN3-F1-model_v4_TED01"],["TED%3AAF-A0A564SWB8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A564SWB8-F1-model_v4_TED02"],["TED%3AAF-A0A173SIF7-F1-model_v4_TED01","TED novel fold AF-A0A173SIF7-F1-model_v4_TED01"],["TED%3AAF-A0A173WYP6-F1-model_v4_TED01","TED novel fold AF-A0A173WYP6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:166","l":"Treponema sp.","na":2,"nb":9,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["TED%3AAF-A0A351Z2H3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A351Z2H3-F1-model_v4_TED01"],["TED%3AAF-A0A356K0W2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A356K0W2-F1-model_v4_TED02"],["TED%3AAF-A0A3B8WTM6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3B8WTM6-F1-model_v4_TED02"],["TED%3AAF-A0A3C1HX51-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3C1HX51-F1-model_v4_TED03"],["TED%3AAF-A0A521IH80-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521IH80-F1-model_v4_TED01"],["TED%3AAF-A0A7X8IF67-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X8IF67-F1-model_v4_TED01"]]},{"id":"NCBITaxon:190485","l":"Xanthomonas campestris pv. campestris (strain ATCC 33913 / DSM 3586 / NCPPB 528 / LMG 568 / P 25)","na":2,"nb":9,"a":[["fruit-bto-0000486.html","fruit"],["vascular-tissue-bto-0001432.html","vascular tissue"]],"b":[["Pfam%3APF28546","TonB transmembrane helix"],["Pfam%3APF00325","Bacterial regulatory proteins, crp family"],["Pfam%3APF06165","Glycosyl hydrolase 94, supersandwich domain"],["Pfam%3APF12019","Type II transport protein GspH"],["Pfam%3APF22059","Glucuronosyltransferase GumK, N-terminal domain"],["Pfam%3APF14307","Glycosyltransferase WbsX"]]},{"id":"NCBITaxon:272624","l":"Legionella pneumophila subsp. pneumophila (strain Philadelphia 1 / ATCC 33152 / DSM 7513)","na":2,"nb":9,"a":[["underground-water-envo-00005792.html","underground water"],["macrophage-bto-0000801.html","macrophage"]],"b":[["Pfam%3APF22170","Phosphocholine transferase AnkX insertion domain"],["Pfam%3APF23127","DotM, C-terminal cytoplasmic domain"],["Pfam%3APF14860","DrrA phosphatidylinositol 4-phosphate binding domain"],["Pfam%3APF01346","Domain amino terminal to FKBP-type peptidyl-prolyl isomerase"],["Pfam%3APF19335","Heavy metal binding domain"],["Pfam%3APF26393","Lart1 ADP-ribosyltransferase family"]]},{"id":"NCBITaxon:1074","l":"Rhodoblastus acidophilus","na":8,"nb":2,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"],["liquid-water-envo-00002006.html","liquid water"],["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["rhizosphere-envo-00005801.html","rhizosphere"]],"b":[["PROSITE%3APS00969","Antenna complexes beta subunits signature"],["TED%3AAF-A0A6N8DR15-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8DR15-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1655","l":"Actinomyces naeslundii","na":8,"nb":2,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"],["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"],["archeological-site-envo-00000564.html","archeological site"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Pfam%3APF16555","Gram-positive pilin subunit D1, N-terminal domain"],["TED%3AAF-A0A2Z5QNH6-F1-model_v4_TED02","TED novel fold AF-A0A2Z5QNH6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2702","l":"Gardnerella vaginalis","na":8,"nb":2,"a":[["egg-food-product-foodon-00001274.html","egg food product"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["TED%3AAF-A0A133NUL7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A133NUL7-F1-model_v4_TED01"],["TED%3AAF-A0A3E2C3X9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3E2C3X9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":8,"nb":2,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"]],"b":[["TED%3AAF-A0A6N3WS12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N3WS12-F1-model_v4_TED01"],["TED%3AAF-A0A3R7GIU2-F1-model_v4_TED02","TED novel fold AF-A0A3R7GIU2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:419947","l":"Mycobacterium tuberculosis (strain ATCC 25177 / H37Ra)","na":2,"nb":8,"a":[["clay-envo-00002982.html","clay"],["paddy-field-envo-00000297.html","paddy field"]],"b":[["Pfam%3APF17668","Acetyltransferase (GNAT) domain"],["Pfam%3APF13527","Acetyltransferase (GNAT) domain"],["Pfam%3APF02261","Aspartate decarboxylase"],["Pfam%3APF07584","Aerotolerance regulator N-terminal"],["Pfam%3APF03993","Domain of Unknown Function (DUF349)"],["Pfam%3APF02313","Fumarate reductase subunit D"]]},{"id":"NCBITaxon:467705","l":"Streptococcus gordonii (strain Challis / ATCC 35105 / BCRC 15272 / CH1 / DL1 / V288)","na":2,"nb":8,"a":[["dental-plaque-bto-0000338.html","dental plaque"],["tooth-bto-0000397.html","tooth"]],"b":[["Pfam%3APF18652","Adhesin P1 N-terminal domain"],["Pfam%3APF17998","Cell surface antigen I/II C2 terminal domain"],["Pfam%3APF16364","Cell surface antigen C-terminus"],["Pfam%3APF18938","Atypical Rib domain"],["Pfam%3APF20164","GspA/SrpA SigLec-like domain"],["Pfam%3APF08363","Glucan-binding protein C"]]},{"id":"NCBITaxon:1231","l":"Nitrosospira multiformis","na":7,"nb":2,"a":[["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["biome-envo-00000428.html","biome"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"],["sludge-envo-00002044.html","sludge"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"]],"b":[["TED%3AAF-A0A1I0DRD9-F1-model_v4_TED01","TED novel fold AF-A0A1I0DRD9-F1-model_v4_TED01"],["TED%3AAF-A0A2T5IBV5-F1-model_v4_TED01","TED novel fold AF-A0A2T5IBV5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1911","l":"Streptomyces griseus","na":2,"nb":7,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["Pfam%3APF13207","AAA domain"],["Pfam%3APF27054","Beta-methylindole-3-pyruvate reductase C-terminal domain"],["Pfam%3APF26558","3-dehydroquinate synthase II C-terminal domain"],["Pfam%3APF01959","3-dehydroquinate synthase II N-terminal domain"],["Pfam%3APF13459","4Fe-4S single cluster domain"],["Pfam%3APF04655","Aminoglycoside/hydroxyurea antibiotic resistance kinase"]]},{"id":"NCBITaxon:216773","l":"Corethron hystrix","na":2,"nb":7,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"],["saline-water-envo-00002010.html","saline water"]],"b":[["TED%3AAF-A0A7S1B7I7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1B7I7-F1-model_v4_TED01"],["TED%3AAF-A0A7S1BDF8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1BDF8-F1-model_v4_TED01"],["TED%3AAF-A0A7S1BL96-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1BL96-F1-model_v4_TED01"],["TED%3AAF-A0A7S1FKX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1FKX2-F1-model_v4_TED01"],["TED%3AAF-A0A7S1BFC1-F1-model_v4_TED01","TED novel fold AF-A0A7S1BFC1-F1-model_v4_TED01"],["TED%3AAF-A0A7S1BX15-F1-model_v4_TED02","TED novel fold AF-A0A7S1BX15-F1-model_v4_TED02"]]},{"id":"NCBITaxon:379508","l":"Lodderomyces elongisporus (strain ATCC 11503 / CBS 2605 / JCM 1781 / NBRC 1676 / NRRL YB-4239)","na":2,"nb":7,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"],["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["Pfam%3APF28272","AIM11 N-terminal domain"],["Pfam%3APF23681","ATP-dependent rRNA helicase SPB4-like, C-terminal tail"],["Pfam%3APF01987","Mitochondrial biogenesis AIM24"],["Pfam%3APF17052","Cap associated factor"],["PROSITE%3APS00885","EPSP synthase signature 2"],["TED%3AAF-A5DUG9-F1-model_v4_TED01","TED novel fold AF-A5DUG9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1184267","l":"Pseudobdellovibrio exovorus JSS","na":6,"nb":2,"a":[["stream-envo-00000023.html","stream"],["biome-envo-00000428.html","biome"],["desert-biome-envo-01000179.html","desert biome"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["TED%3AAF-M4VA20-F1-model_v4_TED02","TED highly-symmetric fold AF-M4VA20-F1-model_v4_TED02"],["TED%3AAF-M4VEE5-F1-model_v4_TED01","TED highly-symmetric fold AF-M4VEE5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:34003","l":"Paracoccus aminophilus","na":6,"nb":2,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["small-river-biome-envo-00000890.html","small river biome"],["water-scum-envo-00005794.html","water scum"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"],["stony-desert-envo-00000183.html","stony desert"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["Pfam%3APF26354","N,N-dimethylformamidase alpha subunit"],["Pfam%3APF20254","N,N-dimethylformamidase beta subunit-like, C-terminal"]]},{"id":"NCBITaxon:353153","l":"Trypanosoma cruzi (strain CL Brener)","na":2,"nb":6,"a":[["amastigote-bto-0000062.html","amastigote"],["kinetoplastid-bto-0002502.html","kinetoplastid"]],"b":[["Pfam%3APF03738","Glutathionylspermidine synthase preATP-grasp"],["TED%3AAF-Q4D5Q0-F1-model_v4_TED01","TED highly-symmetric fold AF-Q4D5Q0-F1-model_v4_TED01"],["TED%3AAF-Q4CQE1-F1-model_v4_TED01","TED novel fold AF-Q4CQE1-F1-model_v4_TED01"],["TED%3AAF-Q4DRS0-F1-model_v4_TED01","TED novel fold AF-Q4DRS0-F1-model_v4_TED01"],["TED%3AAF-Q4DY69-F1-model_v4_TED01","TED novel fold AF-Q4DY69-F1-model_v4_TED01"],["TED%3AAF-Q4E0W9-F1-model_v4_TED01","TED novel fold AF-Q4E0W9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":2,"nb":6,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["Pfam%3APF01177","Asp/Glu/Hydantoin racemase"],["Pfam%3APF11339","Protein of unknown function (DUF3141)"],["PROSITE%3APS01303","BCCT family of transporters signature"],["PROSITE%3APS00665","Dihydrodipicolinate synthase signature 1"],["TED%3AAF-A0A2J0YSD4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J0YSD4-F1-model_v4_TED01"],["TED%3AAF-A0A843ZNG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843ZNG8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:446","l":"Legionella pneumophila","na":6,"nb":2,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["hospital-envo-00002173.html","hospital"],["macrophage-bto-0000801.html","macrophage"],["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["Pfam%3APF14860","DrrA phosphatidylinositol 4-phosphate binding domain"],["TED%3AAF-A0A822WCM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A822WCM6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:523849","l":"Thermococcus litoralis (strain ATCC 51850 / DSM 5473 / JCM 8560 / NS-C)","na":2,"nb":6,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["Pfam%3APF09094","Alpha-amylase/4-alpha-glucanotransferase, middle domain"],["Pfam%3APF09095","Alpha-amylase/4-alpha-glucanotransferase, C-terminal"],["Pfam%3APF28476","Glycogen phosphorylase C-terminal domain"],["Pfam%3APF11897","Protein of unknown function (DUF3417)"],["PROSITE%3APS01334","Pyrrolidone-carboxylate peptidase cysteine active site"],["PROSITE%3APS01333","Pyrrolidone-carboxylate peptidase glutamic acid active site"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":2,"nb":6,"a":[["hospital-envo-00002173.html","hospital"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["Pfam%3APF16376","N-terminal domain of fragilysin"],["TED%3AAF-A0A412XR06-F1-model_v4_TED03","TED novel fold AF-A0A412XR06-F1-model_v4_TED03"],["TED%3AAF-A0A4V1EUI2-F1-model_v4_TED02","TED novel fold AF-A0A4V1EUI2-F1-model_v4_TED02"],["TED%3AAF-A0A5C6IXH5-F1-model_v4_TED01","TED novel fold AF-A0A5C6IXH5-F1-model_v4_TED01"],["TED%3AAF-A0A5C6L6G9-F1-model_v4_TED02","TED novel fold AF-A0A5C6L6G9-F1-model_v4_TED02"],["TED%3AAF-A0A642KY52-F1-model_v4_TED01","TED novel fold AF-A0A642KY52-F1-model_v4_TED01"]]},{"id":"UBERON:0001046","l":"","na":6,"nb":2,"a":[["hindgut-habitatmech-gold-38f60a7f52.html","Hindgut"],["hindgut-habitatmech-gold-e323c98727.html","Hindgut"],["hindgut-habitatmech-gold-19840c718e.html","Hindgut"],["hindgut-habitatmech-gold-c336fb0bb7.html","Hindgut"],["hindgut-habitatmech-gold-50722c7871.html","Hindgut"],["paunch-p3-segment-habitatmech-gold-86aef52360.html","Paunch/P3 segment"]],"b":[["GO%3A0043133","hindgut contraction"],["GO%3A0043134","regulation of hindgut contraction"]]},{"id":"NCBITaxon:1055524","l":"Burkholderia cenocepacia (strain H111)","na":2,"nb":5,"a":[["k-562-cell-bto-0000664.html","K-562 cell"],["macrophage-bto-0000801.html","macrophage"]],"b":[["Pfam%3APF20148","Domain of unknown function (DUF6531)"],["Pfam%3APF14430","Immunity protein Imm1"],["Pfam%3APF05488","PAAR motif"],["Pfam%3APF03527","RHS protein"],["Pfam%3APF05593","RHS Repeat"]]},{"id":"NCBITaxon:1121264","l":"Caloranaerobacter azorensis DSM 13643","na":5,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["sea-envo-00000016.html","sea"],["ridge-envo-00000283.html","ridge"],["trough-envo-00000499.html","trough"]],"b":[["TED%3AAF-A0A1M5V0T2-F1-model_v4_TED02","TED novel fold AF-A0A1M5V0T2-F1-model_v4_TED02"],["TED%3AAF-A0A1M5V0T2-F1-model_v4_TED03","TED novel fold AF-A0A1M5V0T2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1245","l":"Leuconostoc mesenteroides","na":5,"nb":2,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["leaf-po-0025034.html","leaf"],["animal-manure-envo-00003031.html","animal manure"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["Pfam%3APF08951","Bacteriocin immunity protein family"],["TED%3AAF-A0A8B5R1X5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B5R1X5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:143495","l":"Aneurinibacillus thermoaerophilus","na":5,"nb":2,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["Pfam%3APF05523","WxcM-like, C-terminal"],["TED%3AAF-A0A1G8FMF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G8FMF4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:145262","l":"Methanothermobacter thermautotrophicus","na":5,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["intestine-environment-envo-2100002.html","intestine environment"],["sludge-envo-00002044.html","sludge"]],"b":[["Pfam%3APF12686","Protein of unknown function (DUF3800)"],["PROSITE%3APS00093","N-4 cytosine-specific DNA methylases signature"]]},{"id":"NCBITaxon:2021","l":"Thermobifida fusca","na":2,"nb":5,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["Pfam%3APF00553","Cellulose binding domain"],["Pfam%3APF01341","Glycosyl hydrolases family 6"],["PROSITE%3APS00561","CBM2a (carbohydrate-binding type-2) domain signature"],["PROSITE%3APS00655","Glycosyl hydrolases family 6 signature 1"],["PROSITE%3APS00656","Glycosyl hydrolases family 6 signature 2"]]},{"id":"NCBITaxon:37919","l":"Rhodococcus opacus","na":5,"nb":2,"a":[["watercourse-envo-00000029.html","watercourse"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"],["sludge-envo-00002044.html","sludge"],["water-scum-envo-00005794.html","water scum"]],"b":[["Pfam%3APF11794","4-hydroxyphenylacetate 3-hydroxylase N terminal"],["Pfam%3APF03241","4-hydroxyphenylacetate 3-hydroxylase C terminal"]]},{"id":"NCBITaxon:393133","l":"Listeria monocytogenes serotype 1/2a (strain 10403S)","na":2,"nb":5,"a":[["lymphocyte-bto-0000775.html","lymphocyte"],["spleen-bto-0001281.html","spleen"]],"b":[["Pfam%3APF07698","7TM receptor with intracellular HD hydrolase"],["Pfam%3APF07697","7TM-HD extracellular"],["Pfam%3APF24898","Cyclic-di-AMP phosphodiesterase GdpP-like, GGDEF domain"],["Pfam%3APF19293","CdaA N-terminal transmembrane domain"],["Pfam%3APF04346","Ethanolamine utilisation protein, EutH"]]},{"id":"NCBITaxon:394096","l":"Hyalangium minutum","na":2,"nb":5,"a":[["wood-bto-0005516.html","wood"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["TED%3AAF-A0A085W4M3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085W4M3-F1-model_v4_TED01"],["TED%3AAF-A0A085WRA7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085WRA7-F1-model_v4_TED01"],["TED%3AAF-A0A085WWM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085WWM4-F1-model_v4_TED01"],["TED%3AAF-A0A085W7S5-F1-model_v4_TED03","TED novel fold AF-A0A085W7S5-F1-model_v4_TED03"],["TED%3AAF-A0A085WH04-F1-model_v4_TED01","TED novel fold AF-A0A085WH04-F1-model_v4_TED01"]]},{"id":"NCBITaxon:529","l":"Brucella anthropi","na":5,"nb":2,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["hospital-envo-00002173.html","hospital"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF07930","D-aminopeptidase, domain B"],["TED%3AAF-A0A7T4IBJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T4IBJ8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":5,"nb":2,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["pseudostem-bto-0005992.html","pseudostem"],["seedling-bto-0001228.html","seedling"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["soil-envo-00001998.html","soil"]],"b":[["PROSITE%3APS00336","Beta-lactamase class-C active site"],["TED%3AAF-A0A155XQ59-F1-model_v4_TED02","TED novel fold AF-A0A155XQ59-F1-model_v4_TED02"]]},{"id":"NCBITaxon:556","l":"Dickeya chrysanthemi","na":2,"nb":5,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["Pfam%3APF18390","Glycogen debranching enzyme C-terminal domain"],["Pfam%3APF25994","AprE, long alpha-helical hairpin"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF03812","2-keto-3-deoxygluconate permease"],["Pfam%3APF09589","HrpA pilus formation protein"]]},{"id":"NCBITaxon:63737","l":"Nostoc punctiforme PCC 73102","na":2,"nb":5,"a":[["heterocyst-bto-0000600.html","heterocyst"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["Pfam%3APF11266","Long-chain fatty aldehyde decarbonylase"],["Pfam%3APF21808","Bacterial dynamin-like protein, helical domain"],["Pfam%3APF18460","Heterocyst differentiation regulator C-terminal Hood domain"],["Pfam%3APF13619","KTSC domain"],["PROSITE%3APS01026","Photosystem I psaG and psaK proteins signature"]]},{"id":"NCBITaxon:6945","l":"Ixodes scapularis","na":5,"nb":2,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["city-envo-00000856.html","city"],["midgut-bto-0000863.html","midgut"],["nymph-bto-0000954.html","nymph"],["salivary-gland-bto-0001203.html","salivary gland"]],"b":[["TED%3AAF-A0A4D5RH31-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4D5RH31-F1-model_v4_TED01"],["TED%3AAF-B7Q616-F1-model_v4_TED01","TED highly-symmetric fold AF-B7Q616-F1-model_v4_TED01"]]},{"id":"NCBITaxon:76114","l":"Aromatoleum aromaticum (strain DSM 19018 / LMG 30748 / EbN1)","na":2,"nb":5,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["Pfam%3APF08882","Acetone carboxylase gamma subunit"],["Pfam%3APF19278","Hydantoinase/oxoprolinase C-terminal domain"],["Pfam%3APF05378","Hydantoinase/oxoprolinase N-terminal region"],["Pfam%3APF01968","Hydantoinase/oxoprolinase"],["Pfam%3APF02538","Hydantoinase B/oxoprolinase"]]},{"id":"NCBITaxon:885","l":"Desulfovibrio sp.","na":5,"nb":2,"a":[["marine-water-body-envo-00001999.html","marine water body"],["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["sludge-envo-00002044.html","sludge"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["TED%3AAF-A0A6N8BWZ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8BWZ8-F1-model_v4_TED01"],["TED%3AAF-A0A2E3RAH3-F1-model_v4_TED02","TED novel fold AF-A0A2E3RAH3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:100884","l":"Coprobacillus cateniformis","na":4,"nb":2,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["gut-bto-0000545.html","gut"],["sediment-envo-00002007.html","sediment"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-E7G7Y6-F1-model_v4_TED01","TED highly-symmetric fold AF-E7G7Y6-F1-model_v4_TED01"],["TED%3AAF-E7G976-F1-model_v4_TED02","TED highly-symmetric fold AF-E7G976-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1122192","l":"Marinactinospora thermotolerans DSM 45154","na":4,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["ocean-trench-envo-00000275.html","ocean trench"],["oceanic-zone-envo-00000207.html","oceanic zone"],["trough-envo-00000499.html","trough"]],"b":[["TED%3AAF-A0A1T4KF05-F1-model_v4_TED04","TED novel fold AF-A0A1T4KF05-F1-model_v4_TED04"],["TED%3AAF-A0A1T4TG93-F1-model_v4_TED01","TED novel fold AF-A0A1T4TG93-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1254","l":"Pediococcus acidilactici","na":4,"nb":2,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["research-facility-envo-00000469.html","research facility"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["Pfam%3APF01721","Class II bacteriocin"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":4,"nb":2,"a":[["stream-envo-00000023.html","stream"],["biome-envo-00000428.html","biome"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["Pfam%3APF02052","Gallidermin"],["Pfam%3APF04604","Type-A lantibiotic"]]},{"id":"NCBITaxon:1334","l":"Streptococcus dysgalactiae","na":4,"nb":2,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["Pfam%3APF20746","Endo-beta-N-acetylglucosaminidase F2, Ig-like domain"],["Pfam%3APF23952","Endo-beta-N-acetylglucosaminidase EndoS LRR domain"]]},{"id":"NCBITaxon:1401","l":"Paenibacillus lautus","na":2,"nb":4,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["Pfam%3APF18448","Carbohydrate binding domain"],["Pfam%3APF12891","Glycoside hydrolase family 44"],["TED%3AAF-A0A328VZ83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A328VZ83-F1-model_v4_TED01"],["TED%3AAF-A0A385TU82-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A385TU82-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1525","l":"Neomoorella thermoacetica","na":2,"nb":4,"a":[["liquid-water-envo-00002006.html","liquid water"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["Pfam%3APF25461","Selenocysteine-specific elongation factor, beta-barrel domain"],["Pfam%3APF18537","Carbon monoxide dehydrogenase subunit alpha N-terminal domain"],["Pfam%3APF04060","Putative Fe-S cluster"],["Pfam%3APF03599","CO dehydrogenase/acetyl-CoA synthase delta subunit"]]},{"id":"NCBITaxon:2045","l":"Nocardioides simplex","na":2,"nb":4,"a":[["petroleum-envo-00002984.html","petroleum"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["Pfam%3APF00775","Dioxygenase"],["Pfam%3APF04444","Catechol dioxygenase N terminus"],["PROSITE%3APS00083","Intradiol ring-cleavage dioxygenases signature"],["TED%3AAF-A0A4Y3NBY1-F1-model_v4_TED01","TED novel fold AF-A0A4Y3NBY1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:262316","l":"Mycolicibacterium paratuberculosis (strain ATCC BAA-968 / K-10)","na":2,"nb":4,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF19288","CofH/MqnC C-terminal region"],["Pfam%3APF03601","Conserved hypothetical protein 698"],["PROSITE%3APS60002","Phosphoketolase signature 1"],["PROSITE%3APS60003","Phosphoketolase signature 2"]]},{"id":"NCBITaxon:264462","l":"Bdellovibrio bacteriovorus HD100","na":4,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-Q6MMM6-F1-model_v4_TED01","TED novel fold AF-Q6MMM6-F1-model_v4_TED01"],["TED%3AAF-Q6MPT8-F1-model_v4_TED01","TED novel fold AF-Q6MPT8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:266265","l":"Paraburkholderia xenovorans (strain LB400)","na":2,"nb":4,"a":[["aquifer-envo-00012408.html","aquifer"],["landfill-envo-00000533.html","landfill"]],"b":[["Pfam%3APF09290","Prokaryotic acetaldehyde dehydrogenase, dimerisation"],["Pfam%3APF04345","Chorismate lyase"],["Pfam%3APF07836","DmpG-like communication domain"],["Pfam%3APF06139","BphX-like"]]},{"id":"NCBITaxon:269800","l":"","na":2,"nb":4,"a":[["compost-envo-00002170.html","compost"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["Pfam%3APF20628","Dyp-type peroxidase, C-terminal"],["Pfam%3APF04261","Dyp-type peroxidase, N-terminal"],["Pfam%3APF18374","Enolase N-terminal domain-like"],["PROSITE%3APS00909","Mandelate racemase / muconate lactonizing enzyme family signature 2"]]},{"id":"NCBITaxon:28115","l":"Porphyromonas macacae","na":4,"nb":2,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"],["mud-envo-01000001.html","mud"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["TED%3AAF-A0A379E7L0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A379E7L0-F1-model_v4_TED01"],["TED%3AAF-A0A379E9C9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A379E9C9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:285","l":"Comamonas testosteroni","na":2,"nb":4,"a":[["waste-habitatmech-bacdive-36df85e4a4.html","Waste"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["Pfam%3APF02900","Catalytic LigB subunit of aromatic ring-opening dioxygenase"],["Pfam%3APF19301","LigXa C-terminal domain like"],["TED%3AAF-A0A096HND0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A096HND0-F1-model_v4_TED01"],["TED%3AAF-A0A1Y1JCM1-F1-model_v4_TED01","TED novel fold AF-A0A1Y1JCM1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:313603","l":"Maribacter sp. HTCC2170","na":4,"nb":2,"a":[["coral-reef-envo-00000150.html","coral reef"],["hydrographic-feature-envo-00000012.html","hydrographic feature"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["TED%3AAF-A4ARA8-F1-model_v4_TED01","TED novel fold AF-A4ARA8-F1-model_v4_TED01"],["TED%3AAF-A4ARA8-F1-model_v4_TED02","TED novel fold AF-A4ARA8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans Pd1222","na":2,"nb":4,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["Pfam%3APF27518","Heme exporter protein C"],["Pfam%3APF22039","Imidazolonepropionase-like composite domain, bacteria"],["PROSITE%3APS01181","Ribosomal protein S21 signature"],["Pfam%3APF02239","Cytochrome D1 heme domain"]]},{"id":"NCBITaxon:349307","l":"Methanothrix thermoacetophila (strain DSM 6194 / JCM 14653 / NBRC 101360 / PT)","na":2,"nb":4,"a":[["rice-field-envo-00000296.html","rice field"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["Pfam%3APF06973","Domain of unknown function (DUF1297)"],["Pfam%3APF07826","IMP cyclohydrolase-like protein"],["Pfam%3APF06849","Protein of unknown function (DUF1246)"],["Pfam%3APF08714","Formaldehyde-activating enzyme (Fae)"]]},{"id":"NCBITaxon:365044","l":"Polaromonas naphthalenivorans CJ2","na":4,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["large-river-biome-envo-00000887.html","large river biome"],["waterfall-envo-00000040.html","waterfall"],["petroleum-envo-00002984.html","petroleum"]],"b":[["Pfam%3APF01888","CbiD"],["Pfam%3APF02609","Exonuclease VII small subunit"]]},{"id":"NCBITaxon:406327","l":"Methanococcus vannielii (strain ATCC 35089 / DSM 1224 / JCM 13029 / OCM 148 / SB)","na":2,"nb":4,"a":[["estuary-envo-00000045.html","estuary"],["mudflat-envo-00000192.html","mudflat"]],"b":[["Pfam%3APF06787","FeGP cofactor biosynthesis protein HcgF"],["Pfam%3APF04476","4-HFC-P synthase"],["Pfam%3APF27030","AbpE bacteria"],["Pfam%3APF09840","Uncharacterized protein conserved in archaea (DUF2067)"]]},{"id":"NCBITaxon:497965","l":"","na":2,"nb":4,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["TED%3AAF-E0UJA0-F1-model_v4_TED01","TED highly-symmetric fold AF-E0UJA0-F1-model_v4_TED01"],["TED%3AAF-E0U6M3-F1-model_v4_TED03","TED novel fold AF-E0U6M3-F1-model_v4_TED03"],["TED%3AAF-E0UE39-F1-model_v4_TED02","TED novel fold AF-E0UE39-F1-model_v4_TED02"],["TED%3AAF-E0UM93-F1-model_v4_TED01","TED novel fold AF-E0UM93-F1-model_v4_TED01"]]},{"id":"NCBITaxon:500485","l":"Penicillium rubens Wisconsin 54-1255","na":2,"nb":4,"a":[["finger-bto-0004669.html","finger"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["Pfam%3APF03417","Acyl-coenzyme A:6-aminopenicillanic acid acyl-transferase"],["Pfam%3APF03659","Glycosyl hydrolase family 71"],["PROSITE%3APS00185","Isopenicillin N synthase signature 1"],["PROSITE%3APS00186","Isopenicillin N synthase signature 2"]]},{"id":"NCBITaxon:529507","l":"Proteus mirabilis (strain HI4320)","na":2,"nb":4,"a":[["needle-bto-0000917.html","needle"],["spinal-cord-bto-0001279.html","spinal cord"]],"b":[["Pfam%3APF02028","BCCT, betaine/carnitine/choline family transporter"],["PROSITE%3APS01303","BCCT family of transporters signature"],["PROSITE%3APS01120","Urease nickel ligands signature"],["PROSITE%3APS00145","Urease active site"]]},{"id":"NCBITaxon:556484","l":"","na":2,"nb":4,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["TED%3AAF-B7GAJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-B7GAJ8-F1-model_v4_TED01"],["TED%3AAF-B7G520-F1-model_v4_TED02","TED novel fold AF-B7G520-F1-model_v4_TED02"],["TED%3AAF-B7G8V4-F1-model_v4_TED02","TED novel fold AF-B7G8V4-F1-model_v4_TED02"],["TED%3AAF-B7GB31-F1-model_v4_TED01","TED novel fold AF-B7GB31-F1-model_v4_TED01"]]},{"id":"NCBITaxon:60552","l":"Burkholderia vietnamiensis","na":4,"nb":2,"a":[["hospital-envo-00002173.html","hospital"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["TED%3AAF-A0A1G5M5D3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G5M5D3-F1-model_v4_TED02"],["TED%3AAF-A0A2Z6TW79-F1-model_v4_TED01","TED novel fold AF-A0A2Z6TW79-F1-model_v4_TED01"]]},{"id":"NCBITaxon:678","l":"","na":4,"nb":2,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["aquaculture-farm-envo-03600074.html","aquaculture farm"],["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["Pfam%3APF17851","Beta xylosidase C-terminal Concanavalin A-like domain"],["Pfam%3APF11606","Family 31 carbohydrate binding protein"]]},{"id":"NCBITaxon:83552","l":"Parachlamydia acanthamoebae","na":2,"nb":4,"a":[["elementary-body-bto-0000377.html","elementary body"],["hep-2-cell-bto-0000976.html","HEp-2 cell"]],"b":[["TED%3AAF-A0A0C1C0X3-F1-model_v4_TED01","TED novel fold AF-A0A0C1C0X3-F1-model_v4_TED01"],["TED%3AAF-A0A0C1C9D0-F1-model_v4_TED03","TED novel fold AF-A0A0C1C9D0-F1-model_v4_TED03"],["TED%3AAF-A0A0C1CAV8-F1-model_v4_TED03","TED novel fold AF-A0A0C1CAV8-F1-model_v4_TED03"],["TED%3AAF-A0A0C1ECC2-F1-model_v4_TED03","TED novel fold AF-A0A0C1ECC2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1019","l":"Capnocytophaga sputigena","na":3,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["biotope-envo-00002036.html","biotope"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-A0A3S4WAY3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S4WAY3-F1-model_v4_TED01"],["TED%3AAF-A0A2A3N675-F1-model_v4_TED02","TED novel fold AF-A0A2A3N675-F1-model_v4_TED02"]]},{"id":"NCBITaxon:102129","l":"Leptolyngbya sp. PCC 7375","na":2,"nb":3,"a":[["undersea-feature-envo-00000104.html","undersea feature"],["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["TED%3AAF-K9ELM8-F1-model_v4_TED01","TED highly-symmetric fold AF-K9ELM8-F1-model_v4_TED01"],["TED%3AAF-K9F3N8-F1-model_v4_TED02","TED highly-symmetric fold AF-K9F3N8-F1-model_v4_TED02"],["TED%3AAF-K9FA28-F1-model_v4_TED01","TED novel fold AF-K9FA28-F1-model_v4_TED01"]]},{"id":"NCBITaxon:103796","l":"Pseudomonas syringae pv. actinidiae","na":2,"nb":3,"a":[["leaf-po-0025034.html","leaf"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["Pfam%3APF05425","Copper resistance protein D"],["TED%3AAF-J7I956-F1-model_v4_TED01","TED highly-symmetric fold AF-J7I956-F1-model_v4_TED01"],["TED%3AAF-J7IG33-F1-model_v4_TED01","TED highly-symmetric fold AF-J7IG33-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1071","l":"Rhodopila globiformis","na":3,"nb":2,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["TED%3AAF-A0A2S6NEC8-F1-model_v4_TED01","TED novel fold AF-A0A2S6NEC8-F1-model_v4_TED01"],["TED%3AAF-A0A2S6NJW5-F1-model_v4_TED01","TED novel fold AF-A0A2S6NJW5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1120925","l":"Acinetobacter bouvetii DSM 14964 = CIP 107468","na":3,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["proteintraitsmech%3AELIFE109154_VibH_like","VibH-like metallophore standalone condensation enzyme family"],["TED%3AAF-N9C7M4-F1-model_v4_TED02","TED novel fold AF-N9C7M4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1122961","l":"Picrophilus torridus (strain ATCC 700027 / DSM 9790 / JCM 10055 / NBRC 100828 / KAW 2/3)","na":2,"nb":3,"a":[["volcanic-field-envo-00000354.html","volcanic field"],["volcano-envo-00000247.html","volcano"]],"b":[["Pfam%3APF22578","Geranylgeranyl reductase catalytic domain"],["Pfam%3APF04038","Dihydroneopterin aldolase"],["Pfam%3APF16912","Glucose dehydrogenase C-terminus"]]},{"id":"NCBITaxon:1238","l":"Piscirickettsia salmonis","na":3,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["sea-water-envo-00002149.html","sea water"],["stream-envo-00000023.html","stream"]],"b":[["TED%3AAF-A0A0K2DZD9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0K2DZD9-F1-model_v4_TED01"],["TED%3AAF-A0A1L6TBT4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6TBT4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1249","l":"Weissella paramesenteroides","na":3,"nb":2,"a":[["cecum-bto-0000166.html","cecum"],["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"]],"b":[["Pfam%3APF01874","ATP:dephospho-CoA triphosphoribosyl transferase"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"]]},{"id":"NCBITaxon:1334565","l":"Listeria monocytogenes serotype 1/2a (strain EGD / Mackaness)","na":2,"nb":3,"a":[["liver-bto-0000759.html","liver"],["spleen-bto-0001281.html","spleen"]],"b":[["Pfam%3APF09479","Listeria-Bacteroides repeat domain (List_Bact_rpt)"],["Pfam%3APF13457","GW (Gly-Tryp) dipeptide domain"],["Pfam%3APF12354","Bacterial adhesion/invasion protein N terminal"]]},{"id":"NCBITaxon:1380357","l":"Rhodospirillales bacterium URHD0017","na":3,"nb":2,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["TED%3AAF-A0A1H8SNT0-F1-model_v4_TED02","TED novel fold AF-A0A1H8SNT0-F1-model_v4_TED02"],["TED%3AAF-A0A1H8Y0S7-F1-model_v4_TED02","TED novel fold AF-A0A1H8Y0S7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1387353","l":"Paludisphaera borealis","na":3,"nb":2,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["filament-bto-0000463.html","filament"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A1U7CK02-F1-model_v4_TED02","TED novel fold AF-A0A1U7CK02-F1-model_v4_TED02"],["TED%3AAF-A0A1U7CMS9-F1-model_v4_TED03","TED novel fold AF-A0A1U7CMS9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:154046","l":"Hungatella hathewayi","na":3,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["TED%3AAF-A0A3E3DRT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3E3DRT8-F1-model_v4_TED01"],["TED%3AAF-A0A174BLS4-F1-model_v4_TED01","TED novel fold AF-A0A174BLS4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1541063","l":"Prolixibacter denitrificans","na":3,"nb":2,"a":[["environmental-system-envo-01000254.html","environmental system"],["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"]],"b":[["TED%3AAF-A0A2P8CHN5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P8CHN5-F1-model_v4_TED01"],["TED%3AAF-A0A2P8CKY9-F1-model_v4_TED01","TED novel fold AF-A0A2P8CKY9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:157687","l":"Leptotrichia wadei","na":3,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["grassland-soil-envo-00005750.html","grassland soil"],["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["TED%3AAF-A0A510KFE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A510KFE6-F1-model_v4_TED01"],["TED%3AAF-A0A510KJX4-F1-model_v4_TED02","TED novel fold AF-A0A510KJX4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1582","l":"Lacticaseibacillus casei","na":3,"nb":2,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["Pfam%3APF07475","HPr Serine kinase C-terminal domain"],["PROSITE%3APS01163","Galactose-1-phosphate uridyl transferase family 2 signature"]]},{"id":"NCBITaxon:1597","l":"Lacticaseibacillus paracasei","na":3,"nb":2,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["Pfam%3APF09136","Glucodextranase, domain B"],["Pfam%3APF08109","Lactocin 705 family"]]},{"id":"NCBITaxon:1629","l":"Weissella viridescens","na":3,"nb":2,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["Pfam%3APF02388","FemAB family"],["TED%3AAF-A0A3P2RFX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3P2RFX7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1680","l":"Bifidobacterium adolescentis","na":2,"nb":3,"a":[["brain-bto-0000142.html","brain"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["TED%3AAF-A0A1X2Z2R7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1X2Z2R7-F1-model_v4_TED02"],["TED%3AAF-A0A1X2Z7X6-F1-model_v4_TED02","TED novel fold AF-A0A1X2Z7X6-F1-model_v4_TED02"],["TED%3AAF-A0A1X2ZNR8-F1-model_v4_TED04","TED novel fold AF-A0A1X2ZNR8-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1810840","l":"Piscirickettsiaceae bacterium NZ-RLO1","na":3,"nb":2,"a":[["bhk-21-cell-bto-0000120.html","BHK-21 cell"],["endothelial-progenitor-cell-bto-0004093.html","endothelial progenitor cell"],["sf-21-cell-bto-0001196.html","SF-21 cell"]],"b":[["TED%3AAF-A0A177W3E9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A177W3E9-F1-model_v4_TED03"],["TED%3AAF-A0A177W3K1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A177W3K1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:190304","l":"Fusobacterium nucleatum subsp. nucleatum (strain ATCC 25586 / DSM 15643 / BCRC 10681 / CIP 101130 / JCM 8532 / KCTC 2640 / LMG 13131 / VPI 4355)","na":2,"nb":3,"a":[["fibroblast-bto-0000452.html","fibroblast"],["gingival-epithelium-bto-0004998.html","gingival epithelium"]],"b":[["Pfam%3APF05853","beta-keto acid cleavage enzyme"],["Pfam%3APF26317","Histidine racemase CntK N-terminal domain"],["Pfam%3APF26370","L-erythro-3,5-diaminohexanoate dehydrogenase N-terminal domain"]]},{"id":"NCBITaxon:192","l":"Azospirillum brasilense","na":2,"nb":3,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF24931","ACR9-like, ACT-like domain"],["Pfam%3APF27444","Uridylyltransferase GlnD third domain"],["TED%3AAF-A0A235H319-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A235H319-F1-model_v4_TED01"]]},{"id":"NCBITaxon:192066","l":"Neisseria sp.","na":2,"nb":3,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["TED%3AAF-A0A496JVX2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A496JVX2-F1-model_v4_TED03"],["TED%3AAF-A0A496L0X3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A496L0X3-F1-model_v4_TED01"],["TED%3AAF-A0A496JRN7-F1-model_v4_TED02","TED novel fold AF-A0A496JRN7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:213810","l":"Ruminococcus champanellensis 18P13 = JCM 17042","na":3,"nb":2,"a":[["environmental-feature-envo-00002297.html","environmental feature"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["pig-manure-envo-00003860.html","pig manure"]],"b":[["TED%3AAF-D4LAY2-F1-model_v4_TED01","TED novel fold AF-D4LAY2-F1-model_v4_TED01"],["TED%3AAF-D4LBV4-F1-model_v4_TED01","TED novel fold AF-D4LBV4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:216595","l":"","na":3,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["human-construction-envo-00000070.html","human construction"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["Pfam%3APF04996","Succinylarginine dihydrolase"],["TED%3AAF-A0A0G4E5V4-F1-model_v4_TED01","TED novel fold AF-A0A0G4E5V4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:239935","l":"Akkermansia muciniphila","na":3,"nb":2,"a":[["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["secretion-bto-0002979.html","secretion"]],"b":[["TED%3AAF-A0A2N8IJN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N8IJN7-F1-model_v4_TED01"],["TED%3AAF-A0A6N2UM07-F1-model_v4_TED01","TED novel fold AF-A0A6N2UM07-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2751","l":"Carnobacterium maltaromaticum","na":3,"nb":2,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["food-habitatmech-madin-81cb9e74cb.html","food"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["Pfam%3APF09221","Bacteriocin class IId cyclical uberolysin-like"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"]]},{"id":"NCBITaxon:28454","l":"Sphingobacterium multivorum","na":3,"nb":2,"a":[["mud-envo-01000001.html","mud"],["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["TED%3AAF-A0A7T9NU88-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T9NU88-F1-model_v4_TED01"],["TED%3AAF-A0A7T9PGY4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T9PGY4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:313606","l":"Microscilla marina ATCC 23134","na":3,"nb":2,"a":[["coral-reef-envo-00000150.html","coral reef"],["liquid-water-envo-00002006.html","liquid water"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["TED%3AAF-A1ZH11-F1-model_v4_TED02","TED novel fold AF-A1ZH11-F1-model_v4_TED02"],["TED%3AAF-A1ZSU9-F1-model_v4_TED01","TED novel fold AF-A1ZSU9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:314275","l":"Alteromonas mediterranea","na":2,"nb":3,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A1J0SAZ8-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1J0SAZ8-F1-model_v4_TED04"],["TED%3AAF-A0A1J0SA48-F1-model_v4_TED01","TED novel fold AF-A0A1J0SA48-F1-model_v4_TED01"],["TED%3AAF-A0A1J0SX60-F1-model_v4_TED02","TED novel fold AF-A0A1J0SX60-F1-model_v4_TED02"]]},{"id":"NCBITaxon:331117","l":"Aspergillus fischeri NRRL 181","na":2,"nb":3,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["Pfam%3APF23681","ATP-dependent rRNA helicase SPB4-like, C-terminal tail"],["Pfam%3APF16803","Fe-S cluster assembly protein DRE2 N-terminus"],["Pfam%3APF02012","BNR/Asp-box repeat"]]},{"id":"NCBITaxon:357809","l":"Lachnoclostridium phytofermentans ISDg","na":2,"nb":3,"a":[["reservoir-envo-00000025.html","reservoir"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["Pfam%3APF09508","Lacto-N-biose phosphorylase N-terminal TIM barrel domain"],["Pfam%3APF17386","Lacto-N-biose phosphorylase C-terminal domain"],["Pfam%3APF17385","Lacto-N-biose phosphorylase central domain"]]},{"id":"NCBITaxon:362242","l":"","na":2,"nb":3,"a":[["subcutaneous-tissue-bto-0004525.html","subcutaneous tissue"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF02654","Cobalamin-5-phosphate synthase"],["Pfam%3APF02622","AlgH-like"],["Pfam%3APF01628","HrcA protein C terminal domain"]]},{"id":"NCBITaxon:375","l":"Bradyrhizobium japonicum","na":3,"nb":2,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["TED%3AAF-A0A1L3FD53-F1-model_v4_TED02","TED novel fold AF-A0A1L3FD53-F1-model_v4_TED02"],["TED%3AAF-A0A1L3FDV4-F1-model_v4_TED02","TED novel fold AF-A0A1L3FDV4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:391587","l":"Kordia algicida OT-1","na":2,"nb":3,"a":[["coral-reef-envo-00000150.html","coral reef"],["soil-envo-00001998.html","soil"]],"b":[["TED%3AAF-A9DJI5-F1-model_v4_TED02","TED highly-symmetric fold AF-A9DJI5-F1-model_v4_TED02"],["TED%3AAF-A9E7Y3-F1-model_v4_TED02","TED highly-symmetric fold AF-A9E7Y3-F1-model_v4_TED02"],["TED%3AAF-A9E6S0-F1-model_v4_TED02","TED novel fold AF-A9E6S0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:394503","l":"","na":2,"nb":3,"a":[["agricultural-waste-material-envo-01000371.html","agricultural waste material"],["compost-envo-00002170.html","compost"]],"b":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["PROSITE%3APS00812","Glycosyl hydrolases family 8 signature"],["Pfam%3APF01270","Glycosyl hydrolases family 8"]]},{"id":"NCBITaxon:39486","l":"Dorea formicigenerans","na":2,"nb":3,"a":[["adult-bto-0001043.html","adult"],["juvenile-bto-0002168.html","juvenile"]],"b":[["TED%3AAF-A0A3E5ESC3-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A3E5ESC3-F1-model_v4_TED05"],["TED%3AAF-A0A412MBB7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A412MBB7-F1-model_v4_TED01"],["TED%3AAF-A0A412MF47-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A412MF47-F1-model_v4_TED02"]]},{"id":"NCBITaxon:400667","l":"Acinetobacter baumannii (strain ATCC 17978 / DSM 105126 / CIP 53.77 / LMG 1025 / NCDC KC755 / 5377)","na":2,"nb":3,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"],["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["Pfam%3APF17074","Darcynin, domain of unknown function"],["Pfam%3APF05232","Chlorhexidine efflux transporter"],["Pfam%3APF05662","Coiled stalk of trimeric autotransporter adhesin"]]},{"id":"NCBITaxon:400946","l":"Wohlfahrtiimonas chitiniclastica","na":3,"nb":2,"a":[["foot-bto-0000476.html","foot"],["pancreas-bto-0000988.html","pancreas"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["TED%3AAF-A0A256BUL6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A256BUL6-F1-model_v4_TED01"],["TED%3AAF-A0A256BUL6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A256BUL6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:40214","l":"Acinetobacter johnsonii","na":3,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["pitcher-bto-0001069.html","pitcher"],["water-scum-envo-00005794.html","water scum"]],"b":[["Pfam%3APF12973","ChrR Cupin-like domain"],["Pfam%3APF13807","G-rich domain on putative tyrosine kinase"]]},{"id":"NCBITaxon:402880","l":"Methanococcus maripaludis (strain C5 / ATCC BAA-1333)","na":2,"nb":3,"a":[["marsh-envo-00000035.html","marsh"],["wetland-area-envo-00000043.html","wetland area"]],"b":[["Pfam%3APF02553","Cobalt transport protein component CbiN"],["Pfam%3APF18195","GatD N-terminal domain"],["Pfam%3APF01941","S-adenosylmethionine synthetase (AdoMet synthetase)"]]},{"id":"NCBITaxon:41899","l":"Burkholderia plantarii","na":2,"nb":3,"a":[["panicle-bto-0005436.html","panicle"],["seedling-bto-0001228.html","seedling"]],"b":[["proteintraitsmech%3AELIFE109154_GrbD","GrbD-type graminine biosynthesis protein family"],["proteintraitsmech%3AELIFE109154_GrbE","GrbE-type graminine biosynthesis protein family"],["TED%3AAF-A0A0B6RMB1-F1-model_v4_TED01","TED novel fold AF-A0A0B6RMB1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:523846","l":"Methanothermus fervidus DSM 2088","na":3,"nb":2,"a":[["mountain-envo-00000081.html","mountain"],["seamount-envo-00000264.html","seamount"],["volcano-envo-00000247.html","volcano"]],"b":[["Pfam%3APF02829","3H domain"],["Pfam%3APF27272","Cyclic 2,3-diphosphoglycerate synthetase, N-terminal domain"]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":3,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"]],"b":[["Pfam%3APF07833","Copper amine oxidase N-terminal domain"],["TED%3AAF-A0A447L715-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A447L715-F1-model_v4_TED02"]]},{"id":"NCBITaxon:59919","l":"Prochlorococcus marinus subsp. pastoris str. CCMP1986","na":3,"nb":2,"a":[["marginal-sea-biome-envo-01000046.html","marginal sea biome"],["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"],["sea-envo-00000016.html","sea"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF12288","Carboxysome shell peptide mid-region"]]},{"id":"NCBITaxon:65393","l":"Gloeothece citriformis (strain PCC 7424)","na":2,"nb":3,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["Pfam%3APF13720","Udp N-acetylglucosamine O-acyltransferase; Domain 2"],["TED%3AAF-B7K6Y8-F1-model_v4_TED03","TED novel fold AF-B7K6Y8-F1-model_v4_TED03"],["TED%3AAF-B7KGW4-F1-model_v4_TED01","TED novel fold AF-B7KGW4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:6669","l":"Daphnia pulex","na":3,"nb":2,"a":[["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"],["neritic-epipelagic-zone-biome-envo-01000042.html","neritic epipelagic zone biome"],["sea-shore-envo-00000485.html","sea shore"]],"b":[["TED%3AAF-E9GQ61-F1-model_v4_TED02","TED novel fold AF-E9GQ61-F1-model_v4_TED02"],["TED%3AAF-E9I2W7-F1-model_v4_TED04","TED novel fold AF-E9I2W7-F1-model_v4_TED04"]]},{"id":"NCBITaxon:714","l":"Aggregatibacter actinomycetemcomitans","na":2,"nb":3,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["Pfam%3APF10137","CAP12/Pycsar effector protein, TIR domain"],["Pfam%3APF25988","CyaD, alpha-helical hairpin domain"],["PROSITE%3APS00543","HlyD family secretion proteins signature"]]},{"id":"NCBITaxon:8090","l":"Oryzias latipes","na":2,"nb":3,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["Pfam%3APF24979","EDAR death domain"],["Pfam%3APF24796","WDR55"],["TED%3AAF-A0A3P9JIT2-F1-model_v4_TED01","TED novel fold AF-A0A3P9JIT2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:889378","l":"Spirochaeta africana DSM 8902","na":3,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["alkaline-water-envo-01000357.html","alkaline water"],["brine-envo-00003044.html","brine"]],"b":[["TED%3AAF-H9UHS0-F1-model_v4_TED01","TED highly-symmetric fold AF-H9UHS0-F1-model_v4_TED01"],["TED%3AAF-H9UIK6-F1-model_v4_TED01","TED novel fold AF-H9UIK6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1032476","l":"Nonomuraea soli","na":2,"nb":2,"a":[["soil-envo-00001998.html","soil"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-A0A7W0HQS4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7W0HQS4-F1-model_v4_TED03"],["TED%3AAF-A0A7W0CFM2-F1-model_v4_TED01","TED novel fold AF-A0A7W0CFM2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1110509","l":"","na":2,"nb":2,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["cob-bto-0000266.html","cob"]],"b":[["Pfam%3APF05228","CHASE4 domain"],["Pfam%3APF08350","Methanogenesis regulatory protein FilR1, middle domain"]]},{"id":"NCBITaxon:1121395","l":"Desulfitobacterium chlororespirans DSM 11544","na":2,"nb":2,"a":[["compost-envo-00002170.html","compost"],["waste-material-envo-00002264.html","waste material"]],"b":[["TED%3AAF-A0A1M7UUA6-F1-model_v4_TED02","TED novel fold AF-A0A1M7UUA6-F1-model_v4_TED02"],["TED%3AAF-A0A1M7UUA6-F1-model_v4_TED03","TED novel fold AF-A0A1M7UUA6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1295","l":"Staphylococcus schleiferi","na":2,"nb":2,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["foot-bto-0000476.html","foot"]],"b":[["Pfam%3APF18153","Cap15, cyclic dinucleotide receptor domain"],["Pfam%3APF26305","cGAS/DncV-like nucleotidyltransferase C-terminal helical domain"]]},{"id":"NCBITaxon:1303","l":"Streptococcus oralis","na":2,"nb":2,"a":[["throat-bto-0000828.html","throat"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Pfam%3APF03047","COMC family"],["TED%3AAF-A0A139PPG4-F1-model_v4_TED02","TED novel fold AF-A0A139PPG4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1527","l":"Anaerocolumna aminovalerica","na":2,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"]],"b":[["TED%3AAF-A0A1I5I955-F1-model_v4_TED02","TED novel fold AF-A0A1I5I955-F1-model_v4_TED02"],["TED%3AAF-A0A1I5ILH1-F1-model_v4_TED04","TED novel fold AF-A0A1I5ILH1-F1-model_v4_TED04"]]},{"id":"NCBITaxon:156889","l":"","na":2,"nb":2,"a":[["estuary-envo-00000045.html","estuary"],["marine-neritic-zone-envo-00000206.html","marine neritic zone"]],"b":[["Pfam%3APF02622","AlgH-like"],["Pfam%3APF04279","Intracellular septation protein A"]]},{"id":"NCBITaxon:180282","l":"Delftia tsuruhatensis","na":2,"nb":2,"a":[["surface-water-envo-00002042.html","surface water"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["TED%3AAF-A0A1D8JBF2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1D8JBF2-F1-model_v4_TED01"],["TED%3AAF-A0A5P8XEZ5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5P8XEZ5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:194963","l":"Sinorhizobium americanum","na":2,"nb":2,"a":[["root-nodule-envo-01000164.html","root nodule"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["TED%3AAF-A0A2S3YNG1-F1-model_v4_TED01","TED novel fold AF-A0A2S3YNG1-F1-model_v4_TED01"],["TED%3AAF-A0A4R2AWY1-F1-model_v4_TED01","TED novel fold AF-A0A4R2AWY1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2024826","l":"Blastopirellula sp.","na":2,"nb":2,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["TED%3AAF-A0A2E0B0H3-F1-model_v4_TED02","TED novel fold AF-A0A2E0B0H3-F1-model_v4_TED02"],["TED%3AAF-A0A2G2IUT2-F1-model_v4_TED02","TED novel fold AF-A0A2G2IUT2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:257314","l":"Lactobacillus johnsonii (strain CNCM I-12250 / La1 / NCC 533)","na":2,"nb":2,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["Pfam%3APF10439","Bacteriocin class II with double-glycine leader peptide"],["Pfam%3APF02435","Levansucrase/Invertase"]]},{"id":"NCBITaxon:271848","l":"Burkholderia thailandensis E264","na":2,"nb":2,"a":[["needle-bto-0000917.html","needle"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["Pfam%3APF12091","Protein of unknown function (DUF3567)"],["Pfam%3APF01075","Glycosyltransferase family 9 (heptosyltransferase)"]]},{"id":"NCBITaxon:2748","l":"Carnobacterium divergens","na":2,"nb":2,"a":[["food-product-foodon-00001002.html","food product"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["TED%3AAF-A0A7Z8CZ16-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Z8CZ16-F1-model_v4_TED02"],["TED%3AAF-A0A5F0MGI8-F1-model_v4_TED01","TED novel fold AF-A0A5F0MGI8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28141","l":"Cronobacter sakazakii","na":2,"nb":2,"a":[["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["TED%3AAF-A0A855WTZ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A855WTZ2-F1-model_v4_TED01"],["TED%3AAF-A0A855WPZ3-F1-model_v4_TED01","TED novel fold AF-A0A855WPZ3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28185","l":"Spirochaeta sp.","na":2,"nb":2,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["TED%3AAF-A0A3C0SUV0-F1-model_v4_TED03","TED novel fold AF-A0A3C0SUV0-F1-model_v4_TED03"],["TED%3AAF-A0A6N7M3Q7-F1-model_v4_TED01","TED novel fold AF-A0A6N7M3Q7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:283166","l":"","na":2,"nb":2,"a":[["endothelial-cell-bto-0001176.html","endothelial cell"],["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["Pfam%3APF18543","Intracellular delivery domain"],["Pfam%3APF03524","Conjugal transfer protein"]]},{"id":"NCBITaxon:393664","l":"","na":2,"nb":2,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["TED%3AAF-A0A7W4XHJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W4XHJ9-F1-model_v4_TED01"],["TED%3AAF-A0A7W4SSW3-F1-model_v4_TED01","TED novel fold AF-A0A7W4SSW3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:39488","l":"Anaerobutyricum hallii","na":2,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"],["harbour-envo-00000463.html","harbour"]],"b":[["TED%3AAF-A0A414B1Y3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A414B1Y3-F1-model_v4_TED01"],["TED%3AAF-A0A415G3S7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A415G3S7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:39490","l":"Eubacterium ramulus","na":2,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"],["harbour-envo-00000463.html","harbour"]],"b":[["TED%3AAF-A0A173V5Z6-F1-model_v4_TED02","TED novel fold AF-A0A173V5Z6-F1-model_v4_TED02"],["TED%3AAF-A0A2V1JWA1-F1-model_v4_TED05","TED novel fold AF-A0A2V1JWA1-F1-model_v4_TED05"]]},{"id":"NCBITaxon:399741","l":"","na":2,"nb":2,"a":[["pleura-bto-0001791.html","pleura"],["seedling-bto-0001228.html","seedling"]],"b":[["Pfam%3APF09012","FeoC like transcriptional regulator"],["Pfam%3APF05488","PAAR motif"]]},{"id":"NCBITaxon:426128","l":"Natronincola peptidivorans","na":2,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["TED%3AAF-A0A1I0EK12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I0EK12-F1-model_v4_TED01"],["TED%3AAF-A0A1I0H2J6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I0H2J6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:426418","l":"Pyrenophora tritici-repentis Pt-1C-BFP","na":2,"nb":2,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-B2VYP9-F1-model_v4_TED01","TED novel fold AF-B2VYP9-F1-model_v4_TED01"],["TED%3AAF-B2VZ40-F1-model_v4_TED02","TED novel fold AF-B2VZ40-F1-model_v4_TED02"]]},{"id":"NCBITaxon:435590","l":"","na":2,"nb":2,"a":[["bay-envo-00000032.html","bay"],["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["Pfam%3APF13444","Acetyltransferase (GNAT) domain"],["Pfam%3APF19576","Acyltransferase"]]},{"id":"NCBITaxon:474952","l":"Granulicella rosea","na":2,"nb":2,"a":[["wetland-area-envo-00000043.html","wetland area"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A239KLB2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A239KLB2-F1-model_v4_TED01"],["TED%3AAF-A0A239CX56-F1-model_v4_TED02","TED novel fold AF-A0A239CX56-F1-model_v4_TED02"]]},{"id":"NCBITaxon:479434","l":"","na":2,"nb":2,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-D1C926-F1-model_v4_TED01","TED highly-symmetric fold AF-D1C926-F1-model_v4_TED01"],["TED%3AAF-D1C9G8-F1-model_v4_TED01","TED highly-symmetric fold AF-D1C9G8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:48296","l":"Acinetobacter pittii","na":2,"nb":2,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["TED%3AAF-A0A3R9S6D0-F1-model_v4_TED03","TED novel fold AF-A0A3R9S6D0-F1-model_v4_TED03"],["TED%3AAF-A0A6P1SKX2-F1-model_v4_TED04","TED novel fold AF-A0A6P1SKX2-F1-model_v4_TED04"]]},{"id":"NCBITaxon:55209","l":"Pantoea cypripedii","na":2,"nb":2,"a":[["leaf-po-0025034.html","leaf"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["Pfam%3APF13618","Gluconate 2-dehydrogenase subunit 3"],["TED%3AAF-A0A1X1EQM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1X1EQM9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:56811","l":"Psychrobacter sp.","na":2,"nb":2,"a":[["marine-water-body-envo-00001999.html","marine water body"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["TED%3AAF-A0A350DM46-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A350DM46-F1-model_v4_TED01"],["TED%3AAF-A0A353XTU7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A353XTU7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:572546","l":"","na":2,"nb":2,"a":[["inlet-envo-00000475.html","inlet"],["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["TED%3AAF-D2RFB5-F1-model_v4_TED02","TED highly-symmetric fold AF-D2RFB5-F1-model_v4_TED02"],["TED%3AAF-D2RE38-F1-model_v4_TED02","TED novel fold AF-D2RE38-F1-model_v4_TED02"]]},{"id":"NCBITaxon:577","l":"","na":2,"nb":2,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["TED%3AAF-A0A485AWY7-F1-model_v4_TED01","TED novel fold AF-A0A485AWY7-F1-model_v4_TED01"],["TED%3AAF-A0A4U9DC68-F1-model_v4_TED02","TED novel fold AF-A0A4U9DC68-F1-model_v4_TED02"]]},{"id":"NCBITaxon:59201","l":"","na":2,"nb":2,"a":[["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["TED%3AAF-A0A711ED47-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A711ED47-F1-model_v4_TED01"],["TED%3AAF-A0A5U3EZQ4-F1-model_v4_TED01","TED novel fold AF-A0A5U3EZQ4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:59405","l":"Thauera aromatica","na":2,"nb":2,"a":[["sludge-envo-00002044.html","sludge"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF18512","Benzylsuccinate synthase beta subunit"],["Pfam%3APF08201","BssC/TutF protein"]]},{"id":"NCBITaxon:61646","l":"Lelliottia amnigena","na":2,"nb":2,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["Pfam%3APF17425","Arylsulfotransferase Ig-like domain"],["Pfam%3APF05935","Arylsulfotransferase (ASST)"]]},{"id":"NCBITaxon:633","l":"Yersinia pseudotuberculosis","na":2,"nb":2,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["Pfam%3APF03421","YopJ Serine/Threonine acetyltransferase"],["Pfam%3APF01041","DegT/DnrJ/EryC1/StrS aminotransferase family"]]},{"id":"NCBITaxon:647113","l":"","na":2,"nb":2,"a":[["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["TED%3AAF-F8ANV0-F1-model_v4_TED01","TED highly-symmetric fold AF-F8ANV0-F1-model_v4_TED01"],["TED%3AAF-F8AK92-F1-model_v4_TED02","TED novel fold AF-F8AK92-F1-model_v4_TED02"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":2,"nb":2,"a":[["watercourse-envo-00000029.html","watercourse"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["TED%3AAF-B5UAE0-F1-model_v4_TED01","TED highly-symmetric fold AF-B5UAE0-F1-model_v4_TED01"],["TED%3AAF-A0A3E1IF45-F1-model_v4_TED01","TED novel fold AF-A0A3E1IF45-F1-model_v4_TED01"]]},{"id":"NCBITaxon:7029","l":"Acyrthosiphon pisum","na":2,"nb":2,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["TED%3AAF-J9KQC4-F1-model_v4_TED01","TED novel fold AF-J9KQC4-F1-model_v4_TED01"],["TED%3AAF-J9L4U4-F1-model_v4_TED02","TED novel fold AF-J9L4U4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:7209","l":"Loa loa","na":2,"nb":2,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["TED%3AAF-A0A1I7VCR8-F1-model_v4_TED01","TED novel fold AF-A0A1I7VCR8-F1-model_v4_TED01"],["TED%3AAF-A0A1S0U4H9-F1-model_v4_TED02","TED novel fold AF-A0A1S0U4H9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:746697","l":"","na":2,"nb":2,"a":[["hill-envo-00000083.html","hill"],["seamount-envo-00000264.html","seamount"]],"b":[["TED%3AAF-I3YW66-F1-model_v4_TED01","TED highly-symmetric fold AF-I3YW66-F1-model_v4_TED01"],["TED%3AAF-I3YWC3-F1-model_v4_TED01","TED highly-symmetric fold AF-I3YWC3-F1-model_v4_TED01"]]},{"id":"UBERON:0001723","l":"","na":2,"nb":2,"a":[["tongue-habitatmech-gold-334001c233.html","Tongue"],["tongue-habitatmech-gold-8587dba825.html","Tongue"]],"b":[["GO%3A0043586","tongue development"],["GO%3A0043587","tongue morphogenesis"]]},{"id":"GO:0005622","l":"intracellular anatomical structure","na":1,"nb":524,"a":[["molluscan-gill-intracellular-environment-habitatmech-gold-0ac09185d9.html","molluscan gill intracellular environment"]],"b":[["GO%3A0070477","endospore core"],["GO%3A0005727","extrachromosomal circular DNA"],["GO%3A0046821","extrachromosomal DNA"],["GO%3A0016234","inclusion body"],["GO%3A0005622","intracellular anatomical structure"],["GO%3A0070090","metaphase plate"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":297,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["IDPO%3A0000002","disorder"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000045","phosphorylation display site"],["IDPO%3A0000059","self-inhibition"],["Pfam%3APF17837","4'-phosphopantetheinyl transferase N-terminal domain"]]},{"id":"GO:0005615","l":"","na":1,"nb":292,"a":[["molluscan-gill-extracellular-environment-habitatmech-gold-6c8238add0.html","molluscan gill extracellular environment"]],"b":[["ComplexPortal%3ACPX-6224","Active Protein C complex"],["ComplexPortal%3ACPX-6222","alpha-thrombin complex"],["ComplexPortal%3ACPX-5601","Alternative pathway C3 convertase complex C3bBb"],["ComplexPortal%3ACPX-5894","Alternative pathway C3 convertase complex C3bBb"],["ComplexPortal%3ACPX-5381","Alternative pathway fluid-phase C3 convertase complex C3(H2O)Bb"],["ComplexPortal%3ACPX-5893","Alternative pathway fluid-phase C3 convertase complex C3(H2O)Bb"]]},{"id":"NCBITaxon:7955","l":"Danio rerio","na":1,"nb":261,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["IDPO%3A0000019","disorder to pre-molten globule"],["Pfam%3APF16096","Fragile X-related 1 protein C-terminal region 2"],["Pfam%3APF16605","LSM-interacting associated unstructured"],["Pfam%3APF17229","Serine/threonine-protein kinase SMG1 N-terminal"],["Pfam%3APF16195","SUMO-activating enzyme subunit 2 C-terminus"],["Pfam%3APF00709","Adenylosuccinate synthetase"]]},{"id":"NCBITaxon:1978231","l":"Acidobacteriota bacterium","na":1,"nb":186,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2E4W649-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4W649-F1-model_v4_TED01"],["TED%3AAF-A0A2P6WIX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P6WIX4-F1-model_v4_TED01"],["TED%3AAF-A0A2V2RP64-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V2RP64-F1-model_v4_TED01"],["TED%3AAF-A0A2V7TZP2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V7TZP2-F1-model_v4_TED01"],["TED%3AAF-A0A2V7USQ3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V7USQ3-F1-model_v4_TED02"],["TED%3AAF-A0A2V7V8X8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V7V8X8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa (strain ATCC 15692 / DSM 22644 / CIP 104116 / JCM 14847 / LMG 12228 / 1C / PRS 101 / PAO1)","na":1,"nb":162,"a":[["style-bto-0001313.html","style"]],"b":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF06750","Bacterial Peptidase A24 N-terminal domain"],["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF28403","Aconitase X second domain"],["Pfam%3APF28406","Aconitase X third domain"],["Pfam%3APF04412","Aconitase X first domain"]]},{"id":"NCBITaxon:71421","l":"Haemophilus influenzae (strain ATCC 51907 / DSM 11121 / KW20 / Rd)","na":1,"nb":133,"a":[["respiratory-mucosa-bto-0000973.html","respiratory mucosa"]],"b":[["Pfam%3APF13521","AAA domain"],["Pfam%3APF13654","LonB-like, AAA domain"],["Pfam%3APF16326","ABC transporter C-terminal domain"],["Pfam%3APF13710","ACT domain"],["Pfam%3APF12633","Adenylate cyclase NT domain"],["Pfam%3APF26690","Adenylate cyclase, class-I, third domain"]]},{"id":"NCBITaxon:83334","l":"Escherichia coli O157:H7","na":1,"nb":130,"a":[["uterus-bto-0001424.html","uterus"]],"b":[["IDPO%3A0000011","disorder to order"],["IDPO%3A0000014","order to disorder"],["Pfam%3APF12343","DeaD helicase C-terminal disordered region"],["Pfam%3APF26539","YhiD C-terminal ACT domain"],["Pfam%3APF01081","KDPG and KHG aldolase"],["Pfam%3APF10423","Bacterial AMP nucleoside phosphorylase N-terminus"]]},{"id":"NCBITaxon:1898207","l":"Clostridiales bacterium","na":1,"nb":63,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["TED%3AAF-A0A239QGX8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A239QGX8-F1-model_v4_TED02"],["TED%3AAF-A0A2V2DI93-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V2DI93-F1-model_v4_TED02"],["TED%3AAF-A0A2V2EHK5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V2EHK5-F1-model_v4_TED02"],["TED%3AAF-A0A2V2G296-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2V2G296-F1-model_v4_TED03"],["TED%3AAF-A0A316P962-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A316P962-F1-model_v4_TED03"],["TED%3AAF-A0A316PDC9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A316PDC9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:233413","l":"Mycobacterium bovis (strain ATCC BAA-935 / AF2122/97)","na":1,"nb":52,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF12625","Arabinose-binding domain of AraC transcription regulator, N-term"],["Pfam%3APF21139","Methylcrotonyl-CoA carboxylase, alpha-subunit, BT domain"],["Pfam%3APF09167","Domain of unknown function (DUF1942)"],["Pfam%3APF09438","Domain of unknown function (DUF2017)"],["Pfam%3APF12823","Domain of unknown function (DUF3817)"]]},{"id":"NCBITaxon:2026742","l":"Gemmatimonadota bacterium","na":1,"nb":49,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2D8UDK3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D8UDK3-F1-model_v4_TED02"],["TED%3AAF-A0A2E8HI53-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E8HI53-F1-model_v4_TED02"],["TED%3AAF-A0A2V7GTY6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2V7GTY6-F1-model_v4_TED03"],["TED%3AAF-A0A2V7KRA4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V7KRA4-F1-model_v4_TED01"],["TED%3AAF-A0A2V7S355-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V7S355-F1-model_v4_TED01"],["TED%3AAF-A0A3M2BQU6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M2BQU6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:186497","l":"Pyrococcus furiosus (strain ATCC 43587 / DSM 3638 / JCM 8422 / Vc1)","na":1,"nb":41,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF01314","Aldehyde ferredoxin oxidoreductase, domains 2 & 3"],["Pfam%3APF02730","Aldehyde ferredoxin oxidoreductase, N-terminal domain"],["Pfam%3APF22476","Argonaute, N-terminal domain"],["Pfam%3APF09094","Alpha-amylase/4-alpha-glucanotransferase, middle domain"],["Pfam%3APF09095","Alpha-amylase/4-alpha-glucanotransferase, C-terminal"]]},{"id":"NCBITaxon:2","l":"Bacteria","na":40,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["factory-envo-01000536.html","factory"],["adult-bto-0001043.html","adult"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2","Bacteria orthologous groups (OrthoDB)"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima (strain ATCC 43589 / DSM 3109 / JCM 10099 / NBRC 100826 / MSB8)","na":1,"nb":39,"a":[["feather-bto-0000447.html","feather"]],"b":[["Pfam%3APF02829","3H domain"],["Pfam%3APF13175","AAA ATPase domain"],["Pfam%3APF01958","Aspartate dehydrogenase, C-terminal"],["Pfam%3APF05448","Acetyl xylan esterase (AXE1)"],["Pfam%3APF04509","CheC-like family"],["Pfam%3APF13690","Chemotaxis phosphatase CheX"]]},{"id":"NCBITaxon:36987","l":"Coptotermes formosanus","na":38,"nb":1,"a":[["black-smoker-envo-00000218.html","black smoker"],["coastal-sea-water-envo-00002150.html","coastal sea water"],["eutrophic-water-envo-00002224.html","eutrophic water"],["marine-bathyal-zone-biome-envo-01000026.html","marine bathyal zone biome"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"]],"b":[["TED%3AAF-A0A6L2PKM4-F1-model_v4_TED01","TED novel fold AF-A0A6L2PKM4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:273057","l":"Saccharolobus solfataricus (strain ATCC 35092 / DSM 1617 / JCM 11322 / P2)","na":1,"nb":37,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["Pfam%3APF02294","7kD DNA-binding domain"],["Pfam%3APF02675","S-adenosylmethionine decarboxylase"],["Pfam%3APF09071","Alpha-amylase, C terminal"],["Pfam%3APF17952","Cas6 N-terminal domain"],["Pfam%3APF27338","Cytochrome b558/566 subunit B"],["Pfam%3APF22703","Cdc6 AAA+ ATPase-type lid domain"]]},{"id":"NCBITaxon:1898203","l":"Lachnospiraceae bacterium","na":1,"nb":35,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["TED%3AAF-A0A2G3Q064-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G3Q064-F1-model_v4_TED01"],["TED%3AAF-A0A316PVU3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A316PVU3-F1-model_v4_TED02"],["TED%3AAF-A0A349YHB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349YHB4-F1-model_v4_TED01"],["TED%3AAF-A0A349ZVK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349ZVK2-F1-model_v4_TED01"],["TED%3AAF-A0A354ID29-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A354ID29-F1-model_v4_TED04"],["TED%3AAF-A0A355NJL5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A355NJL5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2026801","l":"Verrucomicrobiales bacterium","na":1,"nb":33,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2D5AKS0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D5AKS0-F1-model_v4_TED01"],["TED%3AAF-A0A2D9K0M4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9K0M4-F1-model_v4_TED01"],["TED%3AAF-A0A2E0QW10-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0QW10-F1-model_v4_TED01"],["TED%3AAF-A0A2E5EQN4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E5EQN4-F1-model_v4_TED02"],["TED%3AAF-A0A2E5WTV4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E5WTV4-F1-model_v4_TED01"],["TED%3AAF-A0A350EXF0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A350EXF0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:170187","l":"Streptococcus pneumoniae serotype 4 (strain ATCC BAA-334 / TIGR4)","na":1,"nb":32,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["Pfam%3APF25935","LcnD-like, barrel-sandwich hybrid domain"],["Pfam%3APF22637","BppA domain 1"],["Pfam%3APF18146","Damage-inducible protein CinA KH domain"],["Pfam%3APF27342","ComB N-terminal domain"],["Pfam%3APF26697","Competence protein ComGC, C-terminal domain"],["Pfam%3APF23117","DpnD N-terminal domain"]]},{"id":"NCBITaxon:243273","l":"Mycoplasmoides genitalium (strain ATCC 33530 / DSM 19775 / NCTC 10195 / G37)","na":1,"nb":31,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF03257","Mycoplasma adhesin P1, C-terminal"],["Pfam%3APF09185","Domain of unknown function (DUF1948)"],["Pfam%3APF09188","Domain of unknown function (DUF1951)"],["Pfam%3APF03072","Domain of unknown function (DUF237)"],["Pfam%3APF03086","Domain of unknown function (DUF240)"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":29,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["Pfam%3APF09156","Anthrax toxin lethal factor, middle domain"],["Pfam%3APF08401","N-terminal domain of anti-restriction factor ArdC"],["Pfam%3APF07737","Anthrax toxin lethal factor, N- and C-terminal domain"],["Pfam%3APF27053","Bacillus anthracis plasmid pXO2 protein 26"],["Pfam%3APF13205","Bacterial Ig-like domain"],["Pfam%3APF17475","Clostridial binary toxin B/anthrax toxin PA domain 2"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":1,"nb":26,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["Pfam%3APF27270","Alr1449"],["Pfam%3APF27301","Alr2735 N-terminal domain"],["Pfam%3APF27288","Alr2735"],["Pfam%3APF21571","Arginine dihydrolase ArgZ-like, C-terminal, first region"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF13205","Bacterial Ig-like domain"]]},{"id":"NCBITaxon:226186","l":"Bacteroides thetaiotaomicron (strain ATCC 29148 / DSM 2079 / JCM 5827 / CCUG 10774 / NCTC 10582 / VPI-5482 / E50)","na":1,"nb":25,"a":[["gut-epithelium-bto-0000956.html","gut epithelium"]],"b":[["Pfam%3APF06439","3-keto-alpha-glucoside-1,2-lyase-like domain"],["Pfam%3APF13444","Acetyltransferase (GNAT) domain"],["Pfam%3APF19576","Acyltransferase"],["Pfam%3APF23764","GLAA-B beta-barrel domain II"],["Pfam%3APF13715","CarboxypepD_reg-like domain"],["Pfam%3APF26120","SusF, first starch specific CBM"]]},{"id":"NCBITaxon:160488","l":"Pseudomonas putida (strain ATCC 47054 / DSM 6125 / CFBP 8728 / NCIMB 11950 / KT2440)","na":1,"nb":24,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF00842","Alanine racemase, C-terminal domain"],["Pfam%3APF01168","Alanine racemase, N-terminal domain"],["Pfam%3APF13372","Alginate export"],["Pfam%3APF03705","CheR methyltransferase, all-alpha domain"],["Pfam%3APF01739","CheR methyltransferase, SAM binding domain"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":19,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["saline-water-body-envo-01001319.html","saline water body"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["Pfam%3APF03437","BtpA family"]]},{"id":"NCBITaxon:1871066","l":"Mesorhizobium sp.","na":1,"nb":18,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["TED%3AAF-A0A3S3GQ11-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S3GQ11-F1-model_v4_TED01"],["TED%3AAF-A0A439J515-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A439J515-F1-model_v4_TED03"],["TED%3AAF-A0A439JC49-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A439JC49-F1-model_v4_TED01"],["TED%3AAF-A0A439N076-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A439N076-F1-model_v4_TED01"],["TED%3AAF-A0A442WFH9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A442WFH9-F1-model_v4_TED03"],["TED%3AAF-A0A529PFR3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A529PFR3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1018","l":"Capnocytophaga ochracea","na":17,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["gut-bto-0000545.html","gut"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"]],"b":[["TED%3AAF-A0A2X2T3Z4-F1-model_v4_TED01","TED novel fold AF-A0A2X2T3Z4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:208963","l":"Pseudomonas aeruginosa (strain UCBPP-PA14)","na":1,"nb":17,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF21384","CRISPR-associated nuclease/helicase Cas3, I-F/YPEST, Cas2 domain"],["Pfam%3APF21802","CRISPR-associated Cas3 subtype I-F/YPEST-like, C-terminal domain"],["Pfam%3APF20975","DGC-associated coil"],["Pfam%3APF19502","Nucleotidyltransferase of unknown function (DUF6036)"]]},{"id":"NCBITaxon:210007","l":"Streptococcus mutans serotype c (strain ATCC 700610 / UA159)","na":1,"nb":17,"a":[["tooth-bto-0000397.html","tooth"]],"b":[["Pfam%3APF18652","Adhesin P1 N-terminal domain"],["Pfam%3APF17998","Cell surface antigen I/II C2 terminal domain"],["Pfam%3APF16364","Cell surface antigen C-terminus"],["Pfam%3APF12733","Cadherin-like beta sandwich domain"],["Pfam%3APF05737","Collagen binding domain"],["Pfam%3APF21537","DUF1980 C-terminal domain"]]},{"id":"NCBITaxon:69014","l":"Thermococcus kodakarensis (strain ATCC BAA-918 / JCM 12380 / KOD1)","na":1,"nb":17,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["Pfam%3APF08546","Ketopantoate reductase PanE/ApbA C terminal"],["Pfam%3APF02558","Ketopantoate reductase PanE/ApbA"],["Pfam%3APF09210","1,4-alpha-glucan branching enzyme, C-terminal"],["Pfam%3APF01861","Branched-chain polyamine synthase A C-terminal domain"],["Pfam%3APF27272","Cyclic 2,3-diphosphoglycerate synthetase, N-terminal domain"],["Pfam%3APF17884","Domain of unknown function (DUF5591)"]]},{"id":"NCBITaxon:9615","l":"Canis lupus familiaris","na":1,"nb":16,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["Pfam%3APF14797","Serine-rich region of AP3B1, clathrin-adaptor complex"],["Pfam%3APF22627","AglB core domain"],["Pfam%3APF09064","Thrombomodulin like fifth domain, EGF-like"],["Pfam%3APF14828","Amnionless"],["Pfam%3APF03669","PAT complex subunit Asterix"],["Pfam%3APF07946","PAT complex subunit CCDC47"]]},{"id":"NCBITaxon:106370","l":"Frankia casuarinae","na":14,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["river-envo-00000022.html","river"],["rhizosphere-envo-00005801.html","rhizosphere"],["root-nodule-bto-0001190.html","root nodule"],["biome-envo-00000428.html","biome"],["biotope-envo-00002036.html","biotope"]],"b":[["Pfam%3APF14403","Circularly permuted ATP-grasp type 2"]]},{"id":"NCBITaxon:1360","l":"Lactococcus lactis subsp. lactis","na":1,"nb":14,"a":[["foregut-bto-0000507.html","foregut"]],"b":[["Pfam%3APF08951","Bacteriocin immunity protein family"],["Pfam%3APF08998","Bacterial epsilon antitoxin"],["Pfam%3APF25887","LcnD-like, long helical bundle domain"],["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF25940","LcnD-like, C-terminal domain"],["Pfam%3APF08129","Alpha/beta enterocin family"]]},{"id":"NCBITaxon:1590","l":"Lactiplantibacillus plantarum","na":14,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["food-fermented-foodon-00001258.html","food (fermented)"],["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"],["breast-bto-0000149.html","breast"],["colonic-epithelium-bto-0001709.html","colonic epithelium"],["epithelial-cell-bto-0000414.html","epithelial cell"]],"b":[["Pfam%3APF06314","Acetoacetate decarboxylase (ADC)"]]},{"id":"CHEBI:16183","l":"methane","na":1,"nb":13,"a":[["methane-bioremediation-material-habitatmech-gold-d510166905.html","methane bioremediation material"]],"b":[["EC%3A1.14.13.25","methane monooxygenase (soluble)"],["EC%3A1.14.18.3","methane monooxygenase (particulate)"],["EC%3A2.8.4.1","coenzyme-B sulfoethylthiotransferase"],["EC%3A4.7.1.1","alpha-D-ribose 1-methylphosphonate 5-phosphate C-P-lyase"],["RHEA%3A34707","alpha-D-ribose 1-methylphosphonate 5-phosphate + AH2 + S-adenosyl-L-methionine = alpha-D-ribose 1,2-cyclic phosphate 5-phosphate + methane + 5'-deoxyadenosine + L-methionine + A + H(+)"],["RHEA%3A12532","coenzyme B + methyl-coenzyme M = methane + coenzyme M-coenzyme B heterodisulfide"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":13,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["Pfam%3APF07832","Cfr10I/Bse634I restriction endonuclease"],["Pfam%3APF22348","Colicin-A N-terminal domain"],["Pfam%3APF01024","Colicin pore forming domain"],["Pfam%3APF18427","DD-reactivating factor swiveling domain"],["Pfam%3APF02286","Dehydratase large subunit"],["Pfam%3APF02288","Dehydratase medium subunit"]]},{"id":"NCBITaxon:104268","l":"Tenacibaculum mesophilum","na":12,"nb":1,"a":[["bay-envo-00000032.html","bay"],["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"],["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"]],"b":[["TED%3AAF-A0A1M5HMT5-F1-model_v4_TED01","TED novel fold AF-A0A1M5HMT5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:107401","l":"Tenacibaculum maritimum","na":12,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["low-tide-zone-envo-00000319.html","low tide zone"],["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A5S9T7W6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5S9T7W6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1596","l":"Lactobacillus gasseri","na":12,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["catheter-device-ncit-c50344.html","Catheter Device"],["city-envo-00000856.html","city"],["egg-food-product-foodon-00001274.html","egg food product"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"]],"b":[["TED%3AAF-A0A845FIT3-F1-model_v4_TED02","TED novel fold AF-A0A845FIT3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus (strain ATCC 27405 / DSM 1237 / JCM 9322 / NBRC 103400 / NCIMB 10682 / NRRL B-4536 / VPI 7372)","na":1,"nb":12,"a":[["blood-plasma-bto-0000131.html","blood plasma"]],"b":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["Pfam%3APF00942","Cellulose binding domain"],["Pfam%3APF17996","Carbohydrate esterase 2 N-terminal"],["Pfam%3APF00963","Cohesin domain"],["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF00404","Dockerin type I domain"]]},{"id":"NCBITaxon:272942","l":"Rhodobacter capsulatus (strain ATCC BAA-309 / NBRC 16581 / SB1003)","na":1,"nb":12,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["Pfam%3APF02553","Cobalt transport protein component CbiN"],["Pfam%3APF03379","CcmB protein"],["Pfam%3APF27123","Carotenoid hydratase CrtC"],["Pfam%3APF14715","N-terminal domain of cytochrome oxidase-cbb3, FixP"],["Pfam%3APF07284","2-vinyl bacteriochlorophyllide hydratase (BCHF)"],["Pfam%3APF02571","Precorrin-6x reductase CbiJ/CobK"]]},{"id":"NCBITaxon:469383","l":"Conexibacter woesei DSM 14684","na":12,"nb":1,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["oil-spill-envo-00002061.html","oil spill"],["village-biome-envo-01000246.html","village biome"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["TED%3AAF-D3FEY8-F1-model_v4_TED03","TED highly-symmetric fold AF-D3FEY8-F1-model_v4_TED03"]]},{"id":"NCBITaxon:471472","l":"Chlamydia trachomatis serovar L2 (strain ATCC VR-902B / DSM 19102 / 434/Bu)","na":1,"nb":12,"a":[["lymph-node-bto-0000784.html","lymph node"]],"b":[["Pfam%3APF07382","Histone H1-like nucleoprotein HC2"],["Pfam%3APF05475","Pgp3 C-terminal domain"],["Pfam%3APF22368","Response regulator protein ChxR, N-terminal domain"],["Pfam%3APF01345","CLIPPER domain"],["Pfam%3APF07577","Domain of Unknown Function (DUF1547)"],["Pfam%3APF03503","Chlamydia cysteine-rich outer membrane protein 3"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":11,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"],["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["laboratory-facility-envo-01001406.html","laboratory facility"],["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["bone-element-uberon-0001474.html","bone element"],["juvenile-bto-0002168.html","juvenile"]],"b":[["Pfam%3APF08124","Polysaccharide lyase family 8, N terminal alpha-helical domain"]]},{"id":"NCBITaxon:272626","l":"Listeria innocua serovar 6a (strain ATCC BAA-680 / CLIP 11262)","na":1,"nb":11,"a":[["heart-bto-0000562.html","heart"]],"b":[["Pfam%3APF16595","PAM-interacting domain of CRISPR-associated endonuclease Cas9"],["Pfam%3APF21846","Domain of unknown function (DUF6905)"],["Pfam%3APF27405","Lin0124 C-terminal coiled-coil domain"],["Pfam%3APF14297","Lin1244/Lin1753-like, N-terminal"],["Pfam%3APF16593","Bridge helix of CRISPR-associated endonuclease Cas9"],["Pfam%3APF16592","REC lobe of CRISPR-associated endonuclease Cas9"]]},{"id":"NCBITaxon:331112","l":"Escherichia coli O9:H4 (strain HS)","na":1,"nb":11,"a":[["adrenal-gland-bto-0000047.html","adrenal gland"]],"b":[["Pfam%3APF25796","BREX ATP-binding protein BrxC 4th domain with six-stranded beta sheet"],["Pfam%3APF25792","BREX ATP-binding protein BrxC alpha helical domain"],["Pfam%3APF08747","BREX protein BrxB"],["Pfam%3APF19557","BrxC/PglY, N-terminal domain"],["Pfam%3APF13337","Lon-like protease BrxL-like, ATPase domain"],["Pfam%3APF20442","BREX system Lon protease-like protein BrxL N-terminal"]]},{"id":"NCBITaxon:4113","l":"Solanum tuberosum","na":1,"nb":11,"a":[["tuber-bto-0001400.html","tuber"]],"b":[["Pfam%3APF02977","Carboxypeptidase A inhibitor"],["Pfam%3APF01474","Class-II DAHP synthetase family"],["Pfam%3APF23229","Alpha-glucan water dikinase, DUF7067"],["Pfam%3APF02446","4-alpha-glucanotransferase"],["Pfam%3APF22973","Alpha-glucan water dikinase, phosphohistidine-like domain"],["Pfam%3APF23166","Alpha-glucan water dikinase 1 Ig-like N-terminal domain"]]},{"id":"NCBITaxon:498211","l":"Cellvibrio japonicus (strain Ueda107)","na":1,"nb":11,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["Pfam%3APF17996","Carbohydrate esterase 2 N-terminal"],["Pfam%3APF02156","Glycosyl hydrolase family 26"],["Pfam%3APF02015","Glycosyl hydrolase family 45"],["Pfam%3APF07477","Glycosyl hydrolase family 67 C-terminus"],["Pfam%3APF07488","Glycosyl hydrolase family 67 middle domain"],["Pfam%3APF03648","Glycosyl hydrolase family 67 N-terminus"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":1,"nb":11,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF02085","Class III cytochrome C family"],["Pfam%3APF06397","Desulfoferrodoxin, N-terminal domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["Pfam%3APF12797","4Fe-4S binding domain"],["Pfam%3APF06180","Cobalt chelatase (CbiK)"]]},{"id":"NCBITaxon:1058","l":"Thiocapsa roseopersicina","na":10,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["saline-marsh-envo-00000054.html","saline marsh"],["river-envo-00000022.html","river"],["waste-water-envo-00002001.html","waste water"],["environmental-feature-envo-00002297.html","environmental feature"],["stromatolite-mat-envo-00002157.html","stromatolite mat"]],"b":[["Pfam%3APF27123","Carotenoid hydratase CrtC"]]},{"id":"NCBITaxon:1399","l":"Cytobacillus firmus","na":10,"nb":1,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"],["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["TED%3AAF-A0A800NFK9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A800NFK9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:147","l":"Spirochaeta aurantia","na":10,"nb":1,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["water-body-envo-00000063.html","water body"]],"b":[["Pfam%3APF06226","Protein of unknown function (DUF1007)"]]},{"id":"NCBITaxon:192222","l":"Campylobacter jejuni subsp. jejuni serotype O:2 (strain ATCC 700819 / NCTC 11168)","na":1,"nb":10,"a":[["flagellate-bto-0000464.html","flagellate"]],"b":[["Pfam%3APF26365","Apolipoprotein N-acyltransferase integral membrane domain"],["Pfam%3APF22131","CRISPR-associated endonuclease CjCas9 PI-CTD domain"],["Pfam%3APF22129","CRISPR-associated endonuclease CjCas9 wedge domain"],["Pfam%3APF02554","Carbon starvation protein CstA"],["Pfam%3APF27310","HrcA C-terminal domain"],["Pfam%3APF05538","Campylobacter major outer membrane protein"]]},{"id":"NCBITaxon:2026795","l":"Nitrososphaerota archaeon","na":1,"nb":10,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2E0QIG3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E0QIG3-F1-model_v4_TED02"],["TED%3AAF-A0A519CY76-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A519CY76-F1-model_v4_TED02"],["TED%3AAF-A0A533VPG5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A533VPG5-F1-model_v4_TED01"],["TED%3AAF-A0A533VS28-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A533VS28-F1-model_v4_TED01"],["TED%3AAF-A0A538P7I2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A538P7I2-F1-model_v4_TED02"],["TED%3AAF-A0A662PPJ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A662PPJ2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":1,"nb":10,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["Pfam%3APF27445","Adaptation to cold protein A"],["Pfam%3APF27450","AtcB C-terminal domain"],["Pfam%3APF27486","AtcB N-terminal domain"],["Pfam%3APF02464","CinA C-terminal domain"],["Pfam%3APF13657","HipA N-terminal domain"],["Pfam%3APF01934","Ribonuclease HepT-like"]]},{"id":"NCBITaxon:266264","l":"Cupriavidus metallidurans CH34","na":1,"nb":10,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["Pfam%3APF25973","CzcB-like, barrel-sandwich hybrid domain"],["Pfam%3APF09828","ChrB, C-terminal domain"],["Pfam%3APF20229","Protein ChrB, N-terminal"],["Pfam%3APF01923","Cobalamin adenosyltransferase"],["Pfam%3APF25975","CzcB C-terminal circularly permuted SH3-like domain"],["Pfam%3APF25971","CzcB, N-terminal domain"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":10,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["air-conditioning-unit-envo-00002874.html","air conditioning unit"],["leaf-bto-0000713.html","leaf"],["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["TED%3AAF-A0A679J1E9-F1-model_v4_TED01","TED novel fold AF-A0A679J1E9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:47715","l":"Lacticaseibacillus rhamnosus","na":10,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["fermentation-starter-envo-03600040.html","fermentation starter"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["Pfam%3APF04914","DltD protein"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":1,"nb":10,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["Pfam%3APF17433","Glycosyl hydrolase family 49 N-terminal Ig-like domain"],["PROSITE%3APS00820","Glucoamylase active site region signature"],["PROSITE%3APS00920","Nitrilases / cyanide hydratase signature 1"],["PROSITE%3APS00502","Polygalacturonase active site"],["Pfam%3APF18841","Beta solenoid repeat from Dextranase"],["Pfam%3APF03718","Glycosyl hydrolase family 49"]]},{"id":"NCBITaxon:72036","l":"Lepeophtheirus salmonis","na":1,"nb":10,"a":[["sandstone-envo-00002055.html","sandstone"]],"b":[["TED%3AAF-A0A0K2T0G4-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A0K2T0G4-F1-model_v4_TED05"],["TED%3AAF-A0A0K2UM05-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0K2UM05-F1-model_v4_TED02"],["TED%3AAF-A0A0K2UVC7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0K2UVC7-F1-model_v4_TED02"],["TED%3AAF-A0A7R8CWL1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7R8CWL1-F1-model_v4_TED02"],["TED%3AAF-A0A0K2U8Q2-F1-model_v4_TED01","TED novel fold AF-A0A0K2U8Q2-F1-model_v4_TED01"],["TED%3AAF-A0A0K2U962-F1-model_v4_TED02","TED novel fold AF-A0A0K2U962-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1017","l":"Capnocytophaga gingivalis","na":9,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biotope-envo-00002036.html","biotope"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["organic-feature-envo-01000159.html","organic feature"]],"b":[["TED%3AAF-A0A250FUG5-F1-model_v4_TED01","TED novel fold AF-A0A250FUG5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:107806","l":"Buchnera aphidicola subsp. Acyrthosiphon pisum (strain APS)","na":1,"nb":9,"a":[["embryo-bto-0000379.html","embryo"]],"b":[["Pfam%3APF21157","DnaK suppressor protein DksA, N-terminal domain"],["Pfam%3APF21158","Flagellar hook-associated protein 1, D2-like domain"],["Pfam%3APF02955","Prokaryotic glutathione synthetase, ATP-grasp domain"],["Pfam%3APF02951","Prokaryotic glutathione synthetase, N-terminal domain"],["Pfam%3APF21500","DNA polymerase III subunit delta', AAA+ ATPase lid domain"],["Pfam%3APF14840","Processivity clamp loader gamma complex DNA pol III C-term"]]},{"id":"NCBITaxon:111770","l":"Thiothrix fructosivorans","na":9,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"],["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"]],"b":[["TED%3AAF-A0A8B0SKG2-F1-model_v4_TED02","TED novel fold AF-A0A8B0SKG2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1261","l":"Peptostreptococcus anaerobius","na":9,"nb":1,"a":[["dorsum-bto-0001713.html","dorsum"],["saliva-bto-0001202.html","saliva"],["sgs-cell-bto-0001210.html","SGS cell"],["tongue-bto-0001385.html","tongue"],["urine-bto-0001419.html","urine"],["vagina-bto-0000243.html","vagina"]],"b":[["TED%3AAF-A0A379CE26-F1-model_v4_TED01","TED novel fold AF-A0A379CE26-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1904441","l":"Paracoccaceae bacterium","na":1,"nb":9,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2E3PFF7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E3PFF7-F1-model_v4_TED02"],["TED%3AAF-A0A357LNH5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A357LNH5-F1-model_v4_TED01"],["TED%3AAF-A0A3D4DSL4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D4DSL4-F1-model_v4_TED01"],["TED%3AAF-A0A6L8C0Y8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L8C0Y8-F1-model_v4_TED01"],["TED%3AAF-A0A7Y2J0I6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y2J0I6-F1-model_v4_TED01"],["TED%3AAF-A0A2E0BJC7-F1-model_v4_TED02","TED novel fold AF-A0A2E0BJC7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:226185","l":"Enterococcus faecalis (strain ATCC 700802 / V583)","na":1,"nb":9,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["Pfam%3APF13523","Acetyltransferase (GNAT) domain"],["Pfam%3APF17255","EbsA-like protein"],["Pfam%3APF22647","Deacetylase EF_0837-like composite domain"],["Pfam%3APF08858","IDEAL domain"],["Pfam%3APF02655","ATP-grasp domain"],["Pfam%3APF17400","Family of unknown function (DUF5406)"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":9,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["Pfam%3APF07835","Bacterial aa3 type cytochrome c oxidase subunit IV"],["Pfam%3APF04828","Glutathione-dependent formaldehyde-activating enzyme"],["Pfam%3APF16448","LapD/MoxY periplasmic domain"],["Pfam%3APF17267","Family of unknown function (DUF5333)"],["Pfam%3APF17272","Family of unknown function (DUF5337)"],["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":9,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["mud-envo-01000001.html","mud"]],"b":[["PROSITE%3APS01322","Phosphotriesterase family signature 1"]]},{"id":"NCBITaxon:29539","l":"Thermoleophilum album","na":9,"nb":1,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"],["desert-sand-envo-00005800.html","desert sand"],["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"],["village-biome-envo-01000246.html","village biome"]],"b":[["TED%3AAF-A0A1H6FIV6-F1-model_v4_TED01","TED novel fold AF-A0A1H6FIV6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:359391","l":"Brucella abortus (strain 2308)","na":1,"nb":9,"a":[["style-bto-0001313.html","style"]],"b":[["Pfam%3APF13444","Acetyltransferase (GNAT) domain"],["Pfam%3APF10090","Histidine phosphotransferase C-terminal domain"],["Pfam%3APF07536","HWE histidine kinase"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF07886","BA14K-like protein"],["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"]]},{"id":"NCBITaxon:405955","l":"Escherichia coli O1:K1 / APEC","na":1,"nb":9,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["Pfam%3APF07417","Sigma factor-binding transcriptional regulator Crl"],["Pfam%3APF10807","Domain of unknown function (DUF2541)"],["Pfam%3APF25878","pHBA AAEA subunit, alpha-helical hairpin domain"],["Pfam%3APF10796","Sigma-S stabilisation anti-adaptor protein"],["Pfam%3APF06693","Protein of unknown function (DUF1190)"],["Pfam%3APF06932","Protein of unknown function (DUF1283)"]]},{"id":"NCBITaxon:7668","l":"Strongylocentrotus purpuratus","na":1,"nb":9,"a":[["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["Pfam%3APF01382","Avidin family"],["Pfam%3APF02084","Bindin"],["PROSITE%3APS00577","Avidin-like domain signature"],["Pfam%3APF22494","Choice-of-anchor I domain"],["Pfam%3APF05804","Kinesin-associated protein (KAP)"],["Pfam%3APF07054","Pericardin like repeat"]]},{"id":"NCBITaxon:83462","l":"Corallococcus exiguus","na":9,"nb":1,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["feces-uberon-0001988.html","feces"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"]],"b":[["TED%3AAF-A0A7X4Y983-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X4Y983-F1-model_v4_TED01"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":9,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF25954","CusB-like, beta-barrel domain"],["Pfam%3APF13438","Domain of unknown function (DUF4113)"],["Pfam%3APF03767","HAD superfamily, subfamily IIIB (Acid phosphatase)"],["Pfam%3APF03496","ADP-ribosyltransferase exoenzyme"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":8,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["alimentary-canal-bto-0000058.html","alimentary canal"],["blood-bto-0000089.html","blood"],["small-intestine-bto-0000651.html","small intestine"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["geographic-feature-envo-00000000.html","geographic feature"]],"b":[["PROSITE%3APS01043","Transposases, IS30 family, signature"]]},{"id":"NCBITaxon:1486246","l":"Halomonas sp.","na":8,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["saline-water-body-envo-01001319.html","saline water body"],["laboratory-facility-envo-01001406.html","laboratory facility"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["TED%3AAF-A0A355PHS8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A355PHS8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":8,"a":[["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["Pfam%3APF02927","Cellulase N-terminal ig-like domain"],["Pfam%3APF00404","Dockerin type I domain"],["PROSITE%3APS00448","Clostridium cellulosome enzymes repeated domain signature"],["PROSITE%3APS60032","Glycosyl hydrolases family 9 (GH9) active site signature 1"],["PROSITE%3APS00592","Glycosyl hydrolases family 9 (GH9) active site signature 2"],["PROSITE%3APS00698","Glycosyl hydrolases family 9 (GH9) active site signature 3"]]},{"id":"NCBITaxon:183190","l":"Xylella fastidiosa (strain Temecula1 / ATCC 700964)","na":1,"nb":8,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["Pfam%3APF21142","Bacterial alpha-2 macroglobulin MG2 domain"],["Pfam%3APF04273","Beta-lactamase hydrolase-like protein, phosphatase-like domain"],["Pfam%3APF17970","Bacterial Alpha-2-macroglobulin MG1 domain"],["Pfam%3APF17973","Bacterial Alpha-2-macroglobulin MG10 domain"],["Pfam%3APF11974","Bacterial alpha-2-macroglobulin MG3 domain"],["Pfam%3APF17972","Bacterial Alpha-2-macroglobulin MG5 domain"]]},{"id":"NCBITaxon:196162","l":"Nocardioides sp. JS614","na":8,"nb":1,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["oil-spill-envo-00002061.html","oil spill"],["petroleum-envo-00002984.html","petroleum"]],"b":[["TED%3AAF-A1SFH1-F1-model_v4_TED04","TED highly-symmetric fold AF-A1SFH1-F1-model_v4_TED04"]]},{"id":"NCBITaxon:227882","l":"Streptomyces avermitilis (strain ATCC 31267 / DSM 46492 / JCM 5070 / NBRC 14893 / NCIMB 12804 / NRRL 8165 / MA-4680)","na":1,"nb":8,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["Pfam%3APF17390","Bacterial alpha-L-rhamnosidase C-terminal domain"],["Pfam%3APF08531","Alpha-L-rhamnosidase N-terminal domain"],["Pfam%3APF05592","Bacterial alpha-L-rhamnosidase concanavalin-like domain"],["Pfam%3APF26366","Domain of unknown function (DUF8094)"],["Pfam%3APF25788","Rha78A-like, N-terminal immunoglobulin domain"],["Pfam%3APF06781","Cell division protein CrgA"]]},{"id":"NCBITaxon:229533","l":"Fusarium graminearum PH-1","na":1,"nb":8,"a":[["soil-envo-00001998.html","soil"]],"b":[["Pfam%3APF18388","Atg29 N-terminal domain"],["Pfam%3APF27599","CcsR C-terminal domain"],["Pfam%3APF07110","EthD domain"],["Pfam%3APF11700","Vacuole effluxer Atg22 like"],["Pfam%3APF28504","Gramillins biosynthetic cluster protein GRA5"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"]]},{"id":"NCBITaxon:240176","l":"Coprinopsis cinerea (strain Okayama-7 / 130 / ATCC MYA-4618 / FGSC 9003)","na":1,"nb":8,"a":[["meiotic-cell-bto-0000845.html","meiotic cell"]],"b":[["Pfam%3APF26733","Adenylate-forming reductase 03009, C-terminal domain"],["Pfam%3APF01761","3-dehydroquinate synthase N-terminal"],["Pfam%3APF24621","3-dehydroquinate synthase C-terminal"],["Pfam%3APF03443","Auxiliary Activity family 9 (formerly GH61)"],["Pfam%3APF16010","Cytochrome domain of cellobiose dehydrogenase"],["PROSITE%3APS00104","EPSP synthase signature 1"]]},{"id":"NCBITaxon:35761","l":"Nocardioides sp.","na":8,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"],["desert-sand-envo-00005800.html","desert sand"],["endosymbiont-habitatmech-bacdive-7d840c7ddc.html","Endosymbiont"],["oil-spill-envo-00002061.html","oil spill"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["orchard-envo-00000115.html","orchard"]],"b":[["TED%3AAF-A0A2E8Z449-F1-model_v4_TED01","TED novel fold AF-A0A2E8Z449-F1-model_v4_TED01"]]},{"id":"NCBITaxon:47885","l":"Pseudomonas oryzihabitans","na":8,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"],["hospital-envo-00002173.html","hospital"],["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"],["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["TED%3AAF-A0A7X3T0R5-F1-model_v4_TED02","TED novel fold AF-A0A7X3T0R5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:572477","l":"Allochromatium vinosum (strain ATCC 17899 / DSM 180 / NBRC 103801 / NCIMB 10441 / D)","na":1,"nb":8,"a":[["ditch-water-envo-00002158.html","ditch water"]],"b":[["Pfam%3APF01322","Cytochrome C'"],["Pfam%3APF02635","DsrE/DsrF-like family"],["Pfam%3APF21706","Sulfide dehydrogenase [flavocytochrome c] flavoprotein chain, central"],["Pfam%3APF09242","Flavocytochrome c sulphide dehydrogenase, flavin-binding"],["Pfam%3APF01355","High potential iron-sulfur protein"],["Pfam%3APF13686","DsrE/DsrF/DrsH-like family"]]},{"id":"UBERON:0001009","l":"","na":8,"nb":1,"a":[["circulatory-system-habitatmech-gold-0552e4fd8a.html","Circulatory system"],["circulatory-system-habitatmech-gold-ce9fa1ef7f.html","Circulatory system"],["circulatory-system-habitatmech-gold-0635cc88f0.html","Circulatory system"],["circulatory-system-habitatmech-gold-2a948ee511.html","Circulatory system"],["circulatory-system-habitatmech-gold-7a7f8b9aa3.html","Circulatory system"],["circulatory-system-habitatmech-gold-5307a30baa.html","Circulatory system"]],"b":[["GO%3A0072359","circulatory system development"]]},{"id":"NCBITaxon:114615","l":"Bradyrhizobium sp. ORS 278","na":7,"nb":1,"a":[["river-envo-00000022.html","river"],["bacteroid-bto-0000109.html","bacteroid"],["root-nodule-bto-0001190.html","root nodule"],["stem-nodule-bto-0001816.html","stem nodule"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["Pfam%3APF10073","GapR-like, DNA-binding domain"]]},{"id":"NCBITaxon:1656","l":"Actinomyces viscosus","na":7,"nb":1,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"],["skin-of-body-uberon-0002097.html","skin of body"],["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Pfam%3APF16555","Gram-positive pilin subunit D1, N-terminal domain"]]},{"id":"NCBITaxon:1906666","l":"Thermoplasmata archaeon","na":1,"nb":7,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A497HVI4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A497HVI4-F1-model_v4_TED01"],["TED%3AAF-A0A497HX78-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A497HX78-F1-model_v4_TED01"],["TED%3AAF-A0A662M489-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A662M489-F1-model_v4_TED03"],["TED%3AAF-A0A662MMC3-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A662MMC3-F1-model_v4_TED06"],["TED%3AAF-A0A7J4F045-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J4F045-F1-model_v4_TED01"],["TED%3AAF-A0A5A7S0Y2-F1-model_v4_TED02","TED novel fold AF-A0A5A7S0Y2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2006849","l":"Xanthomonadales bacterium","na":1,"nb":7,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2E6REI1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E6REI1-F1-model_v4_TED01"],["TED%3AAF-A0A2E6RHE7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E6RHE7-F1-model_v4_TED02"],["TED%3AAF-A0A354Z1F6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A354Z1F6-F1-model_v4_TED01"],["TED%3AAF-A0A3S0DIN1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S0DIN1-F1-model_v4_TED01"],["TED%3AAF-A0A431HZV9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A431HZV9-F1-model_v4_TED02"],["TED%3AAF-A0A3S0DMM0-F1-model_v4_TED01","TED novel fold AF-A0A3S0DMM0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:242619","l":"Porphyromonas gingivalis (strain ATCC BAA-308 / W83)","na":1,"nb":7,"a":[["gingiva-bto-0000519.html","gingiva"]],"b":[["Pfam%3APF13290","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF04023","FeoA domain"],["Pfam%3APF17910","FeoB cytosolic helical domain"],["Pfam%3APF02421","Ferrous iron transport protein B"],["Pfam%3APF22492","FimA4 pilin C-terminal domain"],["Pfam%3APF07664","Ferrous iron transport protein B C terminus"]]},{"id":"NCBITaxon:273075","l":"Thermoplasma acidophilum (strain ATCC 25905 / DSM 1728 / JCM 9062 / NBRC 15155 / AMRC-C165)","na":1,"nb":7,"a":[["blood-plasma-bto-0000131.html","blood plasma"]],"b":[["Pfam%3APF17989","Actin like proteins N terminal domain"],["Pfam%3APF10432","Bacterial phospho-glucose isomerase C-terminal SIS domain"],["Pfam%3APF22490","tRNA-splicing endonuclease, linker domain"],["Pfam%3APF22578","Geranylgeranyl reductase catalytic domain"],["Pfam%3APF12831","FAD dependent oxidoreductase"],["Pfam%3APF26550","Tricorn protease second beta propeller domain"]]},{"id":"NCBITaxon:314230","l":"Blastopirellula marina DSM 3645","na":7,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["shoreline-envo-00000486.html","shoreline"],["bulk-soil-envo-00005802.html","bulk soil"],["forested-area-envo-00000111.html","forested area"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-A3ZZX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A3ZZX2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:37734","l":"Enterococcus casseliflavus","na":1,"nb":7,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["PROSITE%3APS00843","D-alanine--D-alanine ligase signature 1"],["PROSITE%3APS00844","D-alanine--D-alanine ligase signature 2"],["TED%3AAF-A0A1V3NEA6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1V3NEA6-F1-model_v4_TED03"],["TED%3AAF-A0A377MP00-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A377MP00-F1-model_v4_TED01"],["TED%3AAF-A0A377KTN3-F1-model_v4_TED02","TED novel fold AF-A0A377KTN3-F1-model_v4_TED02"],["TED%3AAF-A0A377MJ12-F1-model_v4_TED01","TED novel fold AF-A0A377MJ12-F1-model_v4_TED01"]]},{"id":"NCBITaxon:555778","l":"","na":1,"nb":7,"a":[["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["Pfam%3APF08936","Carboxysome Shell Carbonic Anhydrase, C-terminal"],["Pfam%3APF20686","Carboxysome Shell Carbonic Anhydrase, catalytic domain"],["Pfam%3APF20687","Carboxysome Shell Carbonic Anhydrase, N-terminal"],["Pfam%3APF12288","Carboxysome shell peptide mid-region"],["Pfam%3APF10070","Probable inorganic carbon transporter subunit DabA"],["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"UBERON:0000948","l":"heart","na":7,"nb":1,"a":[["heart-habitatmech-gold-2db4d9dd6e.html","Heart"],["heart-habitatmech-gold-8d7a4e1712.html","Heart"],["heart-uberon-0000948.html","heart"],["heart-habitatmech-gold-e9d67283fc.html","Heart"],["heart-habitatmech-gold-805ee181bd.html","Heart"],["heart-habitatmech-gold-20bc7c46a0.html","Heart"]],"b":[["GO%3A0007507","heart development"]]},{"id":"NCBITaxon:101571","l":"Burkholderia ubonensis","na":1,"nb":6,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["TED%3AAF-A0A118H7W5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A118H7W5-F1-model_v4_TED01"],["TED%3AAF-A0A853WTK8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A853WTK8-F1-model_v4_TED01"],["TED%3AAF-A0A104J6D5-F1-model_v4_TED03","TED novel fold AF-A0A104J6D5-F1-model_v4_TED03"],["TED%3AAF-A0A104Z719-F1-model_v4_TED01","TED novel fold AF-A0A104Z719-F1-model_v4_TED01"],["TED%3AAF-A0A106QCV3-F1-model_v4_TED01","TED novel fold AF-A0A106QCV3-F1-model_v4_TED01"],["TED%3AAF-A0A124U5S7-F1-model_v4_TED02","TED novel fold AF-A0A124U5S7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":6,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"],["sludge-envo-00002044.html","sludge"],["forested-area-envo-00000111.html","forested area"],["scrubland-area-envo-00000300.html","scrubland area"],["soil-envo-00001998.html","soil"]],"b":[["TED%3AAF-A0A367PA30-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A367PA30-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121927","l":"Gordonia hirsuta DSM 44140 = NBRC 16056","na":6,"nb":1,"a":[["biofilter-envo-00002152.html","biofilter"],["compost-envo-00002170.html","compost"],["wood-bto-0005516.html","wood"],["wood-envo-00002040.html","wood"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["waste-material-envo-00002264.html","waste material"]],"b":[["TED%3AAF-L7L8J6-F1-model_v4_TED01","TED highly-symmetric fold AF-L7L8J6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1133849","l":"Nocardia brasiliensis ATCC 700358","na":6,"nb":1,"a":[["b-lymphocyte-bto-0000776.html","B-lymphocyte"],["brain-bto-0000142.html","brain"],["heart-bto-0000562.html","heart"],["lymphocyte-bto-0000775.html","lymphocyte"],["macrophage-bto-0000801.html","macrophage"],["spleen-bto-0001281.html","spleen"]],"b":[["TED%3AAF-K0ES07-F1-model_v4_TED01","TED novel fold AF-K0ES07-F1-model_v4_TED01"]]},{"id":"NCBITaxon:124","l":"Blastopirellula marina","na":1,"nb":6,"a":[["marine-environment-envo-01000320.html","marine environment"]],"b":[["TED%3AAF-A0A2S8GNX8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S8GNX8-F1-model_v4_TED01"],["TED%3AAF-A0A2S8F9J3-F1-model_v4_TED04","TED novel fold AF-A0A2S8F9J3-F1-model_v4_TED04"],["TED%3AAF-A0A2S8FMN6-F1-model_v4_TED01","TED novel fold AF-A0A2S8FMN6-F1-model_v4_TED01"],["TED%3AAF-A0A2S8GCT5-F1-model_v4_TED02","TED novel fold AF-A0A2S8GCT5-F1-model_v4_TED02"],["TED%3AAF-A0A2S8GL91-F1-model_v4_TED01","TED novel fold AF-A0A2S8GL91-F1-model_v4_TED01"],["TED%3AAF-A0A2S8GLG3-F1-model_v4_TED01","TED novel fold AF-A0A2S8GLG3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:205922","l":"Pseudomonas fluorescens Pf0-1","na":6,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["cold-environment-envo-01000309.html","cold environment"],["microbial-mat-material-envo-01000157.html","microbial mat material"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"],["agricultural-soil-envo-00002259.html","agricultural soil"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["Pfam%3APF07927","HicA toxin of bacterial toxin-antitoxin,"]]},{"id":"NCBITaxon:2210","l":"Methanosarcina thermophila","na":1,"nb":6,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF19436","ACS/CODH beta subunit C-terminal"],["Pfam%3APF03598","CO dehydrogenase/acetyl-CoA synthase complex beta subunit"],["Pfam%3APF00871","Acetokinase family"],["PROSITE%3APS01075","Acetate and butyrate kinases family signature 1"],["PROSITE%3APS01076","Acetate and butyrate kinases family signature 2"]]},{"id":"NCBITaxon:272630","l":"Methylorubrum extorquens (strain ATCC 14718 / DSM 1338 / JCM 2805 / NCIMB 9133 / AM1)","na":1,"nb":6,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["Pfam%3APF07726","ATPase family associated with various cellular activities (AAA)"],["Pfam%3APF02741","FTR, proximal lobe"],["Pfam%3APF01913","Formylmethanofuran-tetrahydromethanopterin formyltransferase"],["Pfam%3APF10677","Protein of unknown function (DUF2490)"],["Pfam%3APF08714","Formaldehyde-activating enzyme (Fae)"],["PROSITE%3APS00363","Bacterial quinoprotein dehydrogenases signature 1"]]},{"id":"NCBITaxon:290402","l":"Clostridium beijerinckii (strain ATCC 51743 / NCIMB 8052)","na":1,"nb":6,"a":[["garden-soil-envo-00002263.html","garden soil"]],"b":[["Pfam%3APF28550","Domain of unknown function (DUF8436)"],["Pfam%3APF21688","FAD-dependent protein, C-terminal domain-like"],["Pfam%3APF02001","Protein of unknown function DUF134"],["Pfam%3APF03608","PTS system enzyme II sorbitol-specific factor"],["Pfam%3APF07663","Sorbitol phosphotransferase enzyme II C-terminus"],["Pfam%3APF03612","Sorbitol phosphotransferase enzyme II N-terminus"]]},{"id":"NCBITaxon:3068","l":"Volvox carteri f. nagariensis","na":6,"nb":1,"a":[["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["neritic-epipelagic-zone-biome-envo-01000042.html","neritic epipelagic zone biome"],["germ-cell-bto-0000535.html","germ cell"],["semen-bto-0001230.html","semen"],["sea-shore-envo-00000485.html","sea shore"]],"b":[["TED%3AAF-D8U4E8-F1-model_v4_TED01","TED highly-symmetric fold AF-D8U4E8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:321614","l":"","na":1,"nb":6,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["Pfam%3APF11786","Aft1 HRA domain"],["Pfam%3APF11787","Aft1 HRR domain"],["Pfam%3APF26980","Dicer-like protein 2, dsRNA binding domain"],["Pfam%3APF18973","Putative Chitin binding like"],["Pfam%3APF25326","SRB8 ARM-like domain"],["TED%3AAF-A0A7U2I0S3-F1-model_v4_TED02","TED novel fold AF-A0A7U2I0S3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:364106","l":"Escherichia coli (strain UTI89 / UPEC)","na":1,"nb":6,"a":[["rectum-bto-0001158.html","rectum"]],"b":[["Pfam%3APF26516","Inner membrane protein CbrB"],["Pfam%3APF17151","Periplasmic sensor domain"],["Pfam%3APF08971","Glycogen synthesis protein"],["Pfam%3APF06005","ZapB family"],["Pfam%3APF09618","CRISPR-associated protein (Cas_Csy4)"],["Pfam%3APF28061","Type I toxin DinQ-like"]]},{"id":"NCBITaxon:374930","l":"Haemophilus influenzae (strain PittEE)","na":1,"nb":6,"a":[["middle-ear-bto-0002099.html","middle ear"]],"b":[["Pfam%3APF02952","L-fucose isomerase, C-terminal domain"],["Pfam%3APF07881","L-fucose isomerase, first N-terminal domain"],["Pfam%3APF07882","L-fucose isomerase, second N-terminal domain"],["Pfam%3APF02313","Fumarate reductase subunit D"],["Pfam%3APF13286","Phosphohydrolase-associated domain"],["Pfam%3APF04751","Dual-action ribosomal maturation protein DarP"]]},{"id":"NCBITaxon:471852","l":"Thermomonospora curvata DSM 43183","na":6,"nb":1,"a":[["city-envo-00000856.html","city"],["compost-envo-00002170.html","compost"],["urban-biome-envo-01000249.html","urban biome"],["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["Pfam%3APF01580","FtsK/SpoIIIE family"]]},{"id":"NCBITaxon:669","l":"Vibrio harveyi","na":1,"nb":6,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["Pfam%3APF02273","Acyl transferase"],["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF03173","Putative carbohydrate binding domain"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"],["TED%3AAF-A0A454D440-F1-model_v4_TED02","TED novel fold AF-A0A454D440-F1-model_v4_TED02"],["TED%3AAF-A0A8B3DE42-F1-model_v4_TED03","TED novel fold AF-A0A8B3DE42-F1-model_v4_TED03"]]},{"id":"NCBITaxon:7719","l":"Ciona intestinalis","na":6,"nb":1,"a":[["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"],["ascidian-bto-0000090.html","ascidian"],["ocellus-bto-0001758.html","ocellus"],["sensory-cell-bto-0001037.html","sensory cell"],["tadpole-bto-0001347.html","tadpole"],["trunk-bto-0001493.html","trunk"]],"b":[["TED%3AAF-F6ULD1-F1-model_v4_TED03","TED highly-symmetric fold AF-F6ULD1-F1-model_v4_TED03"]]},{"id":"NCBITaxon:9544","l":"Macaca mulatta","na":1,"nb":6,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["Pfam%3APF21708","Galactocerebrosidase, C-terminal lectin domain"],["Pfam%3APF17387","Glycosyl hydrolase family 59 central domain"],["Pfam%3APF18771","APOBEC3H"],["Pfam%3APF02057","Glycosyl hydrolase family 59"],["PROSITE%3APS00970","Nuclear transition protein 2 signature 1"],["PROSITE%3APS00971","Nuclear transition protein 2 signature 2"]]},{"id":"UBERON:0002048","l":"","na":6,"nb":1,"a":[["lung-habitatmech-gold-dd1a9f0db8.html","Lung"],["lung-habitatmech-gold-5bbc13545b.html","Lung"],["lung-habitatmech-gold-ba687e2c95.html","Lung"],["lung-habitatmech-gold-8fed57e653.html","Lung"],["lung-habitatmech-gold-e8a2c6cf87.html","Lung"],["lung-habitatmech-gold-0d343fdd03.html","Lung"]],"b":[["GO%3A0030324","lung development"]]},{"id":"NCBITaxon:1001240","l":"Cryobacterium roopkundense","na":5,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"],["mineral-material-envo-01000256.html","mineral material"]],"b":[["TED%3AAF-A0A099JLC4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A099JLC4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1006551","l":"Klebsiella michiganensis (strain ATCC 8724 / DSM 4798 / JCM 20051 / NBRC 3318 / NRRL B-199 / KCTC 1686 / BUCSAV 143 / CCM 1901)","na":1,"nb":5,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["Pfam%3APF07833","Copper amine oxidase N-terminal domain"],["Pfam%3APF18427","DD-reactivating factor swiveling domain"],["Pfam%3APF02288","Dehydratase medium subunit"],["Pfam%3APF08841","Diol dehydratase reactivase ATPase-like domain"],["TED%3AAF-A0A0H3H2M0-F1-model_v4_TED01","TED novel fold AF-A0A0H3H2M0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:103836","l":"Thermopolyspora flexuosa","na":5,"nb":1,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["intestine-environment-envo-2100002.html","intestine environment"],["organic-feature-envo-01000159.html","organic feature"],["compost-soil-envo-00005747.html","compost soil"],["soil-envo-00001998.html","soil"]],"b":[["TED%3AAF-A0A543J0S6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A543J0S6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:104421","l":"Camponotus floridanus","na":5,"nb":1,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"],["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"],["biotope-envo-00002036.html","biotope"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["Pfam%3APF22299","BRISC complex subunit FAM175B, helical domain"]]},{"id":"NCBITaxon:1288","l":"Staphylococcus xylosus","na":5,"nb":1,"a":[["stream-envo-00000023.html","stream"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"],["fecal-environment-envo-01001029.html","fecal environment"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["Pfam%3APF02603","HPr Serine kinase N terminus"]]},{"id":"NCBITaxon:13243","l":"Rarobacter faecitabidus","na":5,"nb":1,"a":[["water-body-envo-00000063.html","water body"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["TED%3AAF-A0A542ZUH8-F1-model_v4_TED03","TED novel fold AF-A0A542ZUH8-F1-model_v4_TED03"]]},{"id":"NCBITaxon:135569","l":"Helicobacter apodemus","na":5,"nb":1,"a":[["cecum-mucosa-bto-0000213.html","cecum mucosa"],["epithelium-bto-0000416.html","epithelium"],["ht-29-cell-bto-0000182.html","HT-29 cell"],["lymphoid-tissue-bto-0000753.html","lymphoid tissue"],["mucosa-bto-0000886.html","mucosa"]],"b":[["TED%3AAF-A0A4U8UFG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8UFG8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1356854","l":"Alicyclobacillus acidoterrestris (strain ATCC 49025 / DSM 3922 / CIP 106132 / NCIMB 13137 / GD3B)","na":1,"nb":5,"a":[["fruit-juice-bto-0004057.html","fruit juice"]],"b":[["Pfam%3APF22202","CRISPR-associated endonuclease C2c1 first helical domain"],["Pfam%3APF22172","CRISPR-associated endonuclease C2c1 second helical domain"],["Pfam%3APF22077","CRISPR-associated endonuclease C2c1 Nuc-II domain"],["Pfam%3APF22126","C2c1 CRISPR-Cas endonuclease, RuvC-like domain"],["Pfam%3APF22204","CRISPR-associated endonuclease C2c1, wedge domain, second region"]]},{"id":"NCBITaxon:1363","l":"Lactococcus garvieae","na":5,"nb":1,"a":[["animal-house-envo-00003040.html","animal house"],["gall-bladder-bto-0000493.html","gall bladder"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["geographic-feature-envo-00000000.html","geographic feature"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["TED%3AAF-A0A6L2ZWS4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L2ZWS4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:155077","l":"Cellvibrio japonicus","na":1,"nb":5,"a":[["compost-envo-00002170.html","compost"]],"b":[["Pfam%3APF02013","Cellulose or protein binding domain"],["Pfam%3APF03426","Carbohydrate binding domain (family 15)"],["Pfam%3APF16841","Ca-dependent carbohydrate-binding module xylan-binding"],["Pfam%3APF00331","Glycosyl hydrolase family 10"],["PROSITE%3APS00591","Glycosyl hydrolases family 10 (GH10) active site"]]},{"id":"NCBITaxon:1778","l":"Mycobacterium gordonae","na":5,"nb":1,"a":[["fibroblast-bto-0000452.html","fibroblast"],["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["kidney-bto-0000671.html","kidney"],["spleen-bto-0001281.html","spleen"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["TED%3AAF-A0A7D6E392-F1-model_v4_TED02","TED novel fold AF-A0A7D6E392-F1-model_v4_TED02"]]},{"id":"NCBITaxon:183","l":"Leptonema illini","na":1,"nb":5,"a":[["mud-envo-01000001.html","mud"]],"b":[["TED%3AAF-A0A833GYM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A833GYM6-F1-model_v4_TED01"],["TED%3AAF-A0A833GZG7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A833GZG7-F1-model_v4_TED01"],["TED%3AAF-A0A833H0U1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A833H0U1-F1-model_v4_TED01"],["TED%3AAF-A0A833H0U1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A833H0U1-F1-model_v4_TED02"],["TED%3AAF-A0A833LYP2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A833LYP2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1861","l":"Geodermatophilus obscurus","na":5,"nb":1,"a":[["desert-sand-envo-00005800.html","desert sand"],["tropical-envo-01000204.html","tropical"],["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["TED%3AAF-A0A1M7SWB5-F1-model_v4_TED02","TED novel fold AF-A0A1M7SWB5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:190486","l":"Xanthomonas axonopodis pv. citri (strain 306)","na":1,"nb":5,"a":[["vascular-tissue-bto-0001432.html","vascular tissue"]],"b":[["IDPO%3A0000003","molten globule"],["IDPO%3A0000012","molten globule to order"],["IDPO%3A0000006","order"],["Pfam%3APF00325","Bacterial regulatory proteins, crp family"],["Pfam%3APF05420","Cellulose synthase operon protein C C-terminus (BCSC_C)"]]},{"id":"NCBITaxon:2026715","l":"Pseudobdellovibrionaceae bacterium","na":1,"nb":5,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2E8I2Q3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E8I2Q3-F1-model_v4_TED02"],["TED%3AAF-A0A2E8I7A7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E8I7A7-F1-model_v4_TED02"],["TED%3AAF-A0A2E1Q4H5-F1-model_v4_TED06","TED novel fold AF-A0A2E1Q4H5-F1-model_v4_TED06"],["TED%3AAF-A0A2E7GIF0-F1-model_v4_TED01","TED novel fold AF-A0A2E7GIF0-F1-model_v4_TED01"],["TED%3AAF-A0A849WIZ5-F1-model_v4_TED01","TED novel fold AF-A0A849WIZ5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2098","l":"Metamycoplasma hominis","na":5,"nb":1,"a":[["egg-food-product-foodon-00001274.html","egg food product"],["amniotic-cavity-bto-0000025.html","amniotic cavity"],["amniotic-fluid-bto-0000068.html","amniotic fluid"],["placenta-bto-0001078.html","placenta"],["reproductive-system-bto-0000081.html","reproductive system"]],"b":[["TED%3AAF-A0A6A8Q3G2-F1-model_v4_TED02","TED novel fold AF-A0A6A8Q3G2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:265072","l":"Methylobacillus flagellatus KT","na":5,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"],["water-body-envo-00000063.html","water body"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["activated-sludge-envo-00002046.html","activated sludge"],["sludge-envo-00002044.html","sludge"]],"b":[["Pfam%3APF10414","Sirohaem synthase dimerisation region"]]},{"id":"NCBITaxon:28038","l":"Latilactobacillus curvatus","na":5,"nb":1,"a":[["research-facility-envo-00000469.html","research facility"],["food-fermented-foodon-00001258.html","food (fermented)"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["TED%3AAF-A0A3R5XZN9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3R5XZN9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:290054","l":"Eubacterium coprostanoligenes","na":5,"nb":1,"a":[["emulsion-envo-00010506.html","emulsion"],["environmental-feature-envo-00002297.html","environmental feature"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["pig-manure-envo-00003860.html","pig manure"],["harbour-envo-00000463.html","harbour"]],"b":[["TED%3AAF-A0A1T4NG17-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1T4NG17-F1-model_v4_TED01"]]},{"id":"NCBITaxon:324602","l":"Chloroflexus aurantiacus (strain ATCC 29366 / DSM 635 / J-10-fl)","na":1,"nb":5,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["Pfam%3APF00127","Copper binding proteins, plastocyanin/azurin family"],["Pfam%3APF02276","Photosynthetic reaction centre cytochrome C subunit"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["PROSITE%3APS00196","Type-1 copper (blue) proteins signature"],["PROSITE%3APS00648","Bacterial ribonuclease P protein component signature"]]},{"id":"NCBITaxon:338969","l":"Rhodoferax ferrireducens T118","na":5,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["petroleum-envo-00002984.html","petroleum"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["Pfam%3APF11154","Protein of unknown function (DUF2934)"]]},{"id":"NCBITaxon:34062","l":"Faucicola osloensis","na":5,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"],["water-scum-envo-00005794.html","water scum"]],"b":[["Pfam%3APF14130","Cap4, dsDNA endonuclease domain"]]},{"id":"NCBITaxon:354242","l":"Campylobacter jejuni subsp. jejuni 81-176","na":5,"nb":1,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["leukocyte-bto-0000751.html","leukocyte"],["lymphocyte-bto-0000775.html","lymphocyte"],["neutrophil-bto-0000130.html","neutrophil"],["small-intestine-bto-0000651.html","small intestine"]],"b":[["PROSITE%3APS01300","RecR protein signature"]]},{"id":"NCBITaxon:384","l":"Rhizobium leguminosarum","na":1,"nb":5,"a":[["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["Pfam%3APF10931","Protein of unknown function (DUF2735)"],["TED%3AAF-A0A1B1C3F3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1B1C3F3-F1-model_v4_TED02"],["TED%3AAF-A0A4Q8XNE1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q8XNE1-F1-model_v4_TED01"],["TED%3AAF-A0A6P0B3F8-F1-model_v4_TED02","TED novel fold AF-A0A6P0B3F8-F1-model_v4_TED02"],["TED%3AAF-A0A6P0DM15-F1-model_v4_TED01","TED novel fold AF-A0A6P0DM15-F1-model_v4_TED01"]]},{"id":"NCBITaxon:388399","l":"Sagittula stellata E-37","na":5,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["oligotrophic-water-envo-00002223.html","oligotrophic water"],["pulp-bto-0001142.html","pulp"],["rosette-bto-0001201.html","rosette"],["scolex-bto-0002305.html","scolex"]],"b":[["TED%3AAF-A3JXK6-F1-model_v4_TED02","TED novel fold AF-A3JXK6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:393480","l":"Fusobacterium polymorphum ATCC 10953","na":5,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"],["forested-area-envo-00000111.html","forested area"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["TED%3AAF-A5TXK7-F1-model_v4_TED01","TED highly-symmetric fold AF-A5TXK7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:40518","l":"Ruminococcus bromii","na":5,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["emulsion-envo-00010506.html","emulsion"],["skin-environment-envo-2100003.html","skin environment"],["animal-habitation-envo-00005803.html","animal habitation"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-A0A412UMQ9-F1-model_v4_TED02","TED novel fold AF-A0A412UMQ9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:410359","l":"Pyrobaculum calidifontis (strain DSM 21063 / JCM 11548 / VA1)","na":1,"nb":5,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF18653","Arcadin 1"],["Pfam%3APF01930","Domain of unknown function DUF83"],["PROSITE%3APS00895","3-hydroxyisobutyrate dehydrogenase signature"],["TED%3AAF-A3MU28-F1-model_v4_TED02","TED highly-symmetric fold AF-A3MU28-F1-model_v4_TED02"],["TED%3AAF-A3MXY3-F1-model_v4_TED01","TED highly-symmetric fold AF-A3MXY3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:4513","l":"Hordeum vulgare","na":1,"nb":5,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["Pfam%3APF20241","Domain of unknown function (DUF6598)"],["PROSITE%3APS00771","Barwin domain signature 1"],["PROSITE%3APS00426","Cereal trypsin/alpha-amylase inhibitors family signature"],["PROSITE%3APS00725","Germin family signature"],["PROSITE%3APS00431","Small hydrophilic plant seed proteins signature"]]},{"id":"NCBITaxon:511","l":"Alcaligenes faecalis","na":1,"nb":5,"a":[["foot-bto-0000476.html","foot"]],"b":[["Pfam%3APF16867","Dimethlysulfonioproprionate lyase"],["Pfam%3APF17645","Arylmalonate decarboxylase"],["Pfam%3APF06433","Methylamine dehydrogenase heavy chain (MADH)"],["TED%3AAF-A0A1Z3MKY1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z3MKY1-F1-model_v4_TED01"],["TED%3AAF-A0A2U2BPX7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2U2BPX7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:716541","l":"Enterobacter cloacae subsp. cloacae (strain ATCC 13047 / DSM 30054 / NBRC 13535 / NCTC 10005 / WDCM 00083 / NCDC 279-56)","na":1,"nb":5,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Pfam%3APF18228","CdiI N-terminal domain"],["PROSITE%3APS00896","LacY family proton/sugar symporters signature 1"],["PROSITE%3APS00897","LacY family proton/sugar symporters signature 2"],["Pfam%3APF13332","Hemagglutinin repeat"],["Pfam%3APF05860","TPS secretion domain"]]},{"id":"NCBITaxon:747","l":"Pasteurella multocida","na":5,"nb":1,"a":[["bronchus-uberon-0002185.html","bronchus"],["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["finger-bto-0004669.html","finger"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["TED%3AAF-A0A8A8HHD5-F1-model_v4_TED02","TED novel fold AF-A0A8A8HHD5-F1-model_v4_TED02"]]},{"id":"UBERON:0000955","l":"brain","na":5,"nb":1,"a":[["brain-habitatmech-gold-752ac1c5aa.html","Brain"],["brain-habitatmech-gold-6bdd76cda3.html","Brain"],["brain-habitatmech-gold-a220aa6bb0.html","Brain"],["brain-habitatmech-gold-e1c2f5f7d4.html","Brain"],["brain-habitatmech-gold-2e584195fd.html","Brain"]],"b":[["GO%3A0007420","brain development"]]},{"id":"CHEBI:24632","l":"hydrocarbon","na":4,"nb":1,"a":[["hydrocarbon-habitatmech-gold-db79f0142d.html","Hydrocarbon"],["hydrocarbon-habitatmech-gold-3c68e33a11.html","Hydrocarbon"],["hydrocarbon-habitatmech-gold-e77998b825.html","Hydrocarbon"],["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"]],"b":[["TCDB%3A1.B.9","The FadL Outer Membrane Protein (FadL) Family"]]},{"id":"NCBITaxon:100","l":"Ancylobacter aquaticus","na":4,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["groundwater-envo-01001004.html","groundwater"],["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"]],"b":[["TED%3AAF-A0A431PQS4-F1-model_v4_TED01","TED novel fold AF-A0A431PQS4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:102862","l":"Proteus penneri","na":4,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"],["geographic-feature-envo-00000000.html","geographic feature"],["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-A0A0G4Q3D2-F1-model_v4_TED01","TED novel fold AF-A0A0G4Q3D2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:102897","l":"Parafrankia sp. EUN1f","na":4,"nb":1,"a":[["plant-bto-0001481.html","plant"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["TED%3AAF-D3D2N4-F1-model_v4_TED01","TED novel fold AF-D3D2N4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1029718","l":"Candidatus Arthromitus sp. SFB-mouse-Japan","na":4,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["lymphocyte-bto-0000775.html","lymphocyte"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["TED%3AAF-F9VKB6-F1-model_v4_TED01","TED novel fold AF-F9VKB6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:105612","l":"Dellaglioa algida","na":4,"nb":1,"a":[["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biotope-envo-00002036.html","biotope"],["organic-feature-envo-01000159.html","organic feature"]],"b":[["TED%3AAF-A0A5C6M980-F1-model_v4_TED02","TED novel fold AF-A0A5C6M980-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1121132","l":"Butyrivibrio hungatei DSM 14810","na":4,"nb":1,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"],["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["TED%3AAF-A0A1M7SJD3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M7SJD3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121301","l":"Paramaledivibacter caminithermalis DSM 15212","na":4,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"],["trough-envo-00000499.html","trough"]],"b":[["TED%3AAF-A0A1M6LSW1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M6LSW1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121324","l":"Peptoclostridium litorale DSM 5388","na":4,"nb":1,"a":[["inlet-envo-00000475.html","inlet"],["ocean-envo-00000015.html","ocean"],["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"]],"b":[["TED%3AAF-A0A069RDW3-F1-model_v4_TED01","TED novel fold AF-A0A069RDW3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121449","l":"Paucidesulfovibrio gracilis DSM 16080","na":4,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"],["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["TED%3AAF-A0A1T4W1V7-F1-model_v4_TED03","TED novel fold AF-A0A1T4W1V7-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1121451","l":"Maridesulfovibrio hydrothermalis AM13 = DSM 14728","na":4,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["undersea-feature-envo-00000104.html","undersea feature"],["trough-envo-00000499.html","trough"]],"b":[["TED%3AAF-L0RH10-F1-model_v4_TED01","TED novel fold AF-L0RH10-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1122195","l":"Marinitoga hydrogenitolerans DSM 16785","na":4,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["ridge-envo-00000283.html","ridge"],["trough-envo-00000499.html","trough"]],"b":[["Pfam%3APF22362","Argonaute, middle domain, bacteria"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":4,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["TED%3AAF-A0A132HLN2-F1-model_v4_TED01","TED novel fold AF-A0A132HLN2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:122587","l":"Neisseria meningitidis serogroup A / serotype 4A (strain DSM 15465 / Z2491)","na":1,"nb":4,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"]],"b":[["Pfam%3APF17850","CysA C-terminal regulatory domain"],["Pfam%3APF22443","FbpC-like, regulatory domain"],["Pfam%3APF05159","Capsule polysaccharide biosynthesis protein"],["Pfam%3APF10077","Uncharacterized protein conserved in bacteria (DUF2314)"]]},{"id":"NCBITaxon:1335","l":"Streptococcus equinus","na":4,"nb":1,"a":[["foregut-bto-0000507.html","foregut"],["stomach-bto-0001307.html","stomach"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["TED%3AAF-A0A1V0GLT7-F1-model_v4_TED01","TED novel fold AF-A0A1V0GLT7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:137584","l":"Thalassomonas viridans","na":1,"nb":4,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["TED%3AAF-A0A0D8CPR2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D8CPR2-F1-model_v4_TED01"],["TED%3AAF-A0A0D8CLZ9-F1-model_v4_TED01","TED novel fold AF-A0A0D8CLZ9-F1-model_v4_TED01"],["TED%3AAF-A0A0D8D8E8-F1-model_v4_TED02","TED novel fold AF-A0A0D8D8E8-F1-model_v4_TED02"],["TED%3AAF-A0A0D8DAF2-F1-model_v4_TED01","TED novel fold AF-A0A0D8DAF2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:148604","l":"Limosilactobacillus ingluviei","na":4,"nb":1,"a":[["animal-house-envo-00003040.html","animal house"],["organic-waste-material-envo-00002873.html","organic waste material"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["TED%3AAF-A0A0R2GUF0-F1-model_v4_TED01","TED novel fold AF-A0A0R2GUF0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1501","l":"Clostridium pasteurianum","na":1,"nb":4,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["Pfam%3APF22609","Iron hydrogenase 1-like, iron-sulfur centre-binding domain"],["Pfam%3APF09582","Iron only nitrogenase protein AnfO (AnfO_nitrog)"],["PROSITE%3APS00746","NifH/frxC family signature 1"],["PROSITE%3APS00699","Nitrogenases component 1 alpha and beta subunits signature 1"]]},{"id":"NCBITaxon:152142","l":"Mycolicibacterium holsaticum","na":4,"nb":1,"a":[["fibroblast-bto-0000452.html","fibroblast"],["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["kidney-bto-0000671.html","kidney"],["spleen-bto-0001281.html","spleen"]],"b":[["TED%3AAF-A0A1E3RVW1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E3RVW1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:160492","l":"Xylella fastidiosa (strain 9a5c)","na":1,"nb":4,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["Pfam%3APF21142","Bacterial alpha-2 macroglobulin MG2 domain"],["Pfam%3APF04273","Beta-lactamase hydrolase-like protein, phosphatase-like domain"],["Pfam%3APF17970","Bacterial Alpha-2-macroglobulin MG1 domain"],["Pfam%3APF20398","Family of unknown function (DUF6691)"]]},{"id":"NCBITaxon:1622","l":"Ligilactobacillus murinus","na":4,"nb":1,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"],["animal-litter-envo-00002191.html","animal litter"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["TED%3AAF-A0A4S2E8S9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4S2E8S9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:163","l":"Treponema bryantii","na":4,"nb":1,"a":[["stomach-bto-0001307.html","stomach"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["intestine-environment-envo-2100002.html","intestine environment"],["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["TED%3AAF-A0A1I3JLL1-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A1I3JLL1-F1-model_v4_TED05"]]},{"id":"NCBITaxon:1710","l":"Cellulosimicrobium cellulans","na":4,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"],["oil-spill-envo-00002061.html","oil spill"],["peat-soil-envo-00005774.html","peat soil"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["Pfam%3APF16483","Beta-1,3-glucanase"]]},{"id":"NCBITaxon:1712410","l":"Thermanaerosceptrum fracticalcis","na":4,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["ocean-trench-envo-00000275.html","ocean trench"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["trough-envo-00000499.html","trough"]],"b":[["TED%3AAF-A0A7G6E021-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7G6E021-F1-model_v4_TED02"]]},{"id":"NCBITaxon:172045","l":"Elizabethkingia miricola","na":4,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["hindgut-bto-0000510.html","hindgut"],["wood-bto-0005516.html","wood"],["environmental-system-envo-01000254.html","environmental system"]],"b":[["TED%3AAF-A0A0D5BKG2-F1-model_v4_TED01","TED novel fold AF-A0A0D5BKG2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1836","l":"Saccharopolyspora erythraea","na":1,"nb":4,"a":[["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["Pfam%3APF08990","Erythronolide synthase docking domain"],["Pfam%3APF09277","Erythronolide synthase, docking"],["Pfam%3APF12728","Helix-turn-helix domain"],["Pfam%3APF12307","Protein of unknown function (DUF3631)"]]},{"id":"NCBITaxon:1871086","l":"Brevundimonas sp.","na":1,"nb":4,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["TED%3AAF-A0A2W6RYY6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2W6RYY6-F1-model_v4_TED03"],["TED%3AAF-A0A326KNM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A326KNM4-F1-model_v4_TED01"],["TED%3AAF-A0A521NPA0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521NPA0-F1-model_v4_TED01"],["TED%3AAF-A0A519PPD7-F1-model_v4_TED01","TED novel fold AF-A0A519PPD7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":1,"nb":4,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["Pfam%3APF16861","Carbamoyltransferase C-terminus"],["Pfam%3APF02543","Carbamoyltransferase N-terminus"],["Pfam%3APF01960","ArgJ family"],["Pfam%3APF07467","Beta-lactamase inhibitor (BLIP)"]]},{"id":"NCBITaxon:1930","l":"Streptomyces scabiei","na":4,"nb":1,"a":[["a10-cell-bto-0002196.html","A10 cell"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["TED%3AAF-A0A086GLG9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A086GLG9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:207559","l":"Oleidesulfovibrio alaskensis (strain ATCC BAA-1058 / DSM 17464 / G20)","na":1,"nb":4,"a":[["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["Pfam%3APF13353","4Fe-4S single cluster domain"],["Pfam%3APF01228","Glycine radical"],["PROSITE%3APS00850","Glycine radical domain signature"],["PROSITE%3APS01087","Radical activating enzymes signature"]]},{"id":"NCBITaxon:2209","l":"Methanosarcina mazei","na":4,"nb":1,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["sludge-envo-00002044.html","sludge"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["TED%3AAF-A0A0F8CQX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F8CQX7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:224914","l":"Brucella melitensis biotype 1 (strain ATCC 23456 / CCUG 17765 / NCTC 10094 / 16M)","na":1,"nb":4,"a":[["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["Pfam%3APF03625","Domain of unknown function DUF302"],["Pfam%3APF07559","Flagellar basal body protein FlaE D2 domain"],["Pfam%3APF07536","HWE histidine kinase"],["Pfam%3APF06776","Invasion associated locus B (IalB) protein"]]},{"id":"NCBITaxon:224915","l":"Buchnera aphidicola subsp. Baizongia pistaciae (strain Bp)","na":1,"nb":4,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Pfam%3APF26016","Exonuclease I C-terminal domain"],["Pfam%3APF08411","Exonuclease I SH3-like domain"],["Pfam%3APF09849","Uncharacterized protein conserved in bacteria (DUF2076)"],["Pfam%3APF06481","COX Aromatic Rich Motif"]]},{"id":"NCBITaxon:269796","l":"Rhodospirillum rubrum (strain ATCC 11170 / ATH 1.1.1 / DSM 467 / LMG 4362 / NCIMB 8255 / S1)","na":1,"nb":4,"a":[["joint-bto-0001686.html","joint"]],"b":[["Pfam%3APF24931","ACR9-like, ACT-like domain"],["Pfam%3APF20543","N2-fixation sustaining protein CowN"],["Pfam%3APF22277","EncFtn-like"],["TED%3AAF-Q2RML2-F1-model_v4_TED01","TED highly-symmetric fold AF-Q2RML2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:272563","l":"Clostridioides difficile (strain 630)","na":1,"nb":4,"a":[["central-nervous-system-bto-0000227.html","central nervous system"]],"b":[["Pfam%3APF07737","Anthrax toxin lethal factor, N- and C-terminal domain"],["Pfam%3APF11155","Domain of unknown function (DUF2935)"],["Pfam%3APF06249","Ethanolamine utilisation protein EutQ"],["Pfam%3APF12544","Lysine-2,3-aminomutase"]]},{"id":"NCBITaxon:272620","l":"Klebsiella pneumoniae subsp. pneumoniae (strain ATCC 700721 / MGH 78578)","na":1,"nb":4,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Pfam%3APF04336","Acyl carrier protein phosphodiesterase"],["Pfam%3APF17948","DnaT DNA-binding domain"],["PROSITE%3APS00839","Uroporphyrin-III C-methyltransferase signature 1"],["PROSITE%3APS00840","Uroporphyrin-III C-methyltransferase signature 2"]]},{"id":"NCBITaxon:28450","l":"Burkholderia pseudomallei","na":1,"nb":4,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"]],"b":[["Pfam%3APF18664","CdiA C-terminal tRNase domain"],["Pfam%3APF12106","Colicin E5 ribonuclease domain"],["Pfam%3APF11480","Colicin-E5 Imm protein"],["Pfam%3APF13332","Hemagglutinin repeat"]]},{"id":"NCBITaxon:29313","l":"Mycobacterium shimoidei","na":4,"nb":1,"a":[["fibroblast-bto-0000452.html","fibroblast"],["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["kidney-bto-0000671.html","kidney"],["spleen-bto-0001281.html","spleen"]],"b":[["TED%3AAF-A0A1E3TGG0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1E3TGG0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:29345","l":"Sedimentibacter hydroxybenzoicus","na":4,"nb":1,"a":[["mud-envo-01000001.html","mud"],["oil-spill-envo-00002061.html","oil spill"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["Pfam%3APF26358","EcdD/BsdD phenolic detoxification"]]},{"id":"NCBITaxon:29494","l":"Vibrio furnissii","na":1,"nb":4,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["Pfam%3APF17957","Bacterial Ig domain"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"],["Pfam%3APF02839","Carbohydrate-binding module family 5/12"],["Pfam%3APF06483","Chitinase C"]]},{"id":"NCBITaxon:301","l":"Pseudomonas oleovorans","na":1,"nb":4,"a":[["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["PROSITE%3APS00202","Rubredoxin signature"],["TED%3AAF-A0A2W5VSG0-F1-model_v4_TED02","TED novel fold AF-A0A2W5VSG0-F1-model_v4_TED02"],["TED%3AAF-A0A379JMN0-F1-model_v4_TED01","TED novel fold AF-A0A379JMN0-F1-model_v4_TED01"],["TED%3AAF-A0A379PLI0-F1-model_v4_TED03","TED novel fold AF-A0A379PLI0-F1-model_v4_TED03"]]},{"id":"NCBITaxon:324057","l":"Paenibacillus sp. JDR-2","na":4,"nb":1,"a":[["vasculature-uberon-0002049.html","vasculature"],["wood-envo-00002040.html","wood"],["part-of-plant-habitatmech-madin-25325947e2.html","part of plant"],["village-biome-envo-01000246.html","village biome"]],"b":[["Pfam%3APF06452","Carbohydrate family 9 binding domain-like"]]},{"id":"NCBITaxon:326423","l":"Bacillus velezensis FZB42","na":1,"nb":4,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["Pfam%3APF21607","[Acyl-carrier-protein] S-malonyltransferase, inserted helical domain"],["Pfam%3APF21996","Histidyl-tRNA synthetase HisZ, C-terminal domain"],["Pfam%3APF07293","Protein of unknown function (DUF1450)"],["Pfam%3APF12227","Protein of unknown function (DUF3603)"]]},{"id":"NCBITaxon:362","l":"Agrobacterium radiobacter","na":4,"nb":1,"a":[["plant-gall-po-0025626.html","plant gall"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["Pfam%3APF04909","Amidohydrolase"]]},{"id":"NCBITaxon:391","l":"Rhizobium sp.","na":4,"nb":1,"a":[["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["paddy-ricefield-habitatmech-bacdive-6e3154acd8.html","Paddy-Ricefield"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["TED%3AAF-A0A353G134-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A353G134-F1-model_v4_TED01"]]},{"id":"NCBITaxon:395019","l":"Burkholderia multivorans ATCC 17616","na":4,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"],["desert-sand-envo-00005800.html","desert sand"],["orchard-envo-00000115.html","orchard"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["TED%3AAF-A0A0H3KMX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0H3KMX2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:410358","l":"Methanocorpusculum labreanum (strain ATCC 43576 / DSM 4855 / Z)","na":1,"nb":4,"a":[["joint-bto-0001686.html","joint"]],"b":[["Pfam%3APF27030","AbpE bacteria"],["Pfam%3APF01864","CDP-archaeol synthase"],["Pfam%3APF01891","Cobalt uptake substrate-specific transmembrane region"],["TED%3AAF-A2SPH3-F1-model_v4_TED02","TED highly-symmetric fold AF-A2SPH3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:43","l":"Cystobacter fuscus","na":1,"nb":4,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"]],"b":[["TED%3AAF-A0A250J1A4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J1A4-F1-model_v4_TED01"],["TED%3AAF-A0A250J4G5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J4G5-F1-model_v4_TED01"],["TED%3AAF-A0A250J8W0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J8W0-F1-model_v4_TED01"],["TED%3AAF-A0A250J3K5-F1-model_v4_TED03","TED novel fold AF-A0A250J3K5-F1-model_v4_TED03"]]},{"id":"NCBITaxon:452863","l":"Pseudarthrobacter chlorophenolicus (strain ATCC 700700 / DSM 12829 / CIP 107037 / JCM 12360 / KCTC 9906 / NCIMB 13794 / A6)","na":1,"nb":4,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["TED%3AAF-B8HI43-F1-model_v4_TED02","TED highly-symmetric fold AF-B8HI43-F1-model_v4_TED02"],["TED%3AAF-B8HIA6-F1-model_v4_TED01","TED highly-symmetric fold AF-B8HIA6-F1-model_v4_TED01"],["TED%3AAF-B8HIQ6-F1-model_v4_TED02","TED highly-symmetric fold AF-B8HIQ6-F1-model_v4_TED02"],["TED%3AAF-B8HHK3-F1-model_v4_TED01","TED novel fold AF-B8HHK3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:46245","l":"Drosophila pseudoobscura pseudoobscura","na":1,"nb":4,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"]],"b":[["Pfam%3APF23724","Caspase-8, second domain"],["Pfam%3APF23725","Caspase-8, N-terminal domain"],["Pfam%3APF22123","Exuperantia RNAse H-like domain"],["Pfam%3APF23757","Insect HPS5 TPR domain"]]},{"id":"NCBITaxon:485913","l":"Ktedonobacter racemifer DSM 44963","na":1,"nb":4,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"]],"b":[["TED%3AAF-D6U145-F1-model_v4_TED01","TED highly-symmetric fold AF-D6U145-F1-model_v4_TED01"],["TED%3AAF-D6U380-F1-model_v4_TED01","TED highly-symmetric fold AF-D6U380-F1-model_v4_TED01"],["TED%3AAF-D6TNQ7-F1-model_v4_TED02","TED novel fold AF-D6TNQ7-F1-model_v4_TED02"],["TED%3AAF-D6U8N4-F1-model_v4_TED02","TED novel fold AF-D6U8N4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:512","l":"Alcaligenes sp","na":1,"nb":4,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["Pfam%3APF26354","N,N-dimethylformamidase alpha subunit"],["Pfam%3APF20254","N,N-dimethylformamidase beta subunit-like, C-terminal"],["Pfam%3APF11606","Family 31 carbohydrate binding protein"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"]]},{"id":"NCBITaxon:575540","l":"Isosphaera pallida ATCC 43644","na":4,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["agricultural-soil-envo-00002259.html","agricultural soil"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-E8R507-F1-model_v4_TED01","TED highly-symmetric fold AF-E8R507-F1-model_v4_TED01"]]},{"id":"NCBITaxon:644281","l":"Methanocaldococcus sp. FS406-22","na":4,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"],["volcano-envo-00000247.html","volcano"]],"b":[["TED%3AAF-D3S6J5-F1-model_v4_TED01","TED highly-symmetric fold AF-D3S6J5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":1,"nb":4,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["PROSITE%3APS00949","Autoinducer synthase family signature"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"],["PROSITE%3APS00607","cAMP phosphodiesterases class-II signature"],["TED%3AAF-A0A844NWZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A844NWZ1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:7244","l":"Drosophila virilis","na":1,"nb":4,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"]],"b":[["Pfam%3APF14786","Tube Death domain"],["Pfam%3APF05836","Chorion protein S16"],["Pfam%3APF13428","Tetratricopeptide repeat"],["TED%3AAF-B4LEB1-F1-model_v4_TED02","TED novel fold AF-B4LEB1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:888845","l":"Minicystis rosea","na":1,"nb":4,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["TED%3AAF-A0A1L6LHU6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6LHU6-F1-model_v4_TED01"],["TED%3AAF-A0A1L6LWQ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6LWQ0-F1-model_v4_TED01"],["TED%3AAF-A0A1L6L181-F1-model_v4_TED02","TED novel fold AF-A0A1L6L181-F1-model_v4_TED02"],["TED%3AAF-A0A1L6LWI8-F1-model_v4_TED02","TED novel fold AF-A0A1L6LWI8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:935293","l":"Yersinia entomophaga","na":1,"nb":4,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["Pfam%3APF05785","Rho-activating domain of cytotoxic necrotizing factor"],["Pfam%3APF20220","ABC toxin N-terminal region"],["Pfam%3APF18413","Neuraminidase-like domain"],["Pfam%3APF12256","Insecticide toxin TcdB middle/N-terminal region"]]},{"id":"UBERON:0001045","l":"","na":4,"nb":1,"a":[["midgut-habitatmech-gold-5c1b0d44e2.html","Midgut"],["midgut-habitatmech-gold-31577394a0.html","Midgut"],["midgut-habitatmech-gold-67c565f695.html","Midgut"],["midgut-habitatmech-gold-0307474089.html","Midgut"]],"b":[["GO%3A0007494","midgut development"]]},{"id":"UBERON:0001836","l":"","na":4,"nb":1,"a":[["saliva-habitatmech-gold-4c19ae6894.html","Saliva"],["saliva-habitatmech-gold-1e04aaebba.html","Saliva"],["saliva-habitatmech-gold-68875fbeda.html","Saliva"],["saliva-habitatmech-gold-a747c6ab38.html","Saliva"]],"b":[["GO%3A0046541","saliva secretion"]]},{"id":"NCBITaxon:105841","l":"Anaerostipes caccae","na":3,"nb":1,"a":[["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["emulsion-envo-00010506.html","emulsion"],["organic-feature-envo-01000159.html","organic feature"]],"b":[["TED%3AAF-A0A6N2WKG2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N2WKG2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1090322","l":"Methanolobus tindarius DSM 2278","na":1,"nb":3,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["TED%3AAF-W9DQM0-F1-model_v4_TED03","TED highly-symmetric fold AF-W9DQM0-F1-model_v4_TED03"],["TED%3AAF-W9DMY0-F1-model_v4_TED01","TED novel fold AF-W9DMY0-F1-model_v4_TED01"],["TED%3AAF-W9DNB8-F1-model_v4_TED01","TED novel fold AF-W9DNB8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1120927","l":"Acinetobacter tandoii DSM 14970 = CIP 107469","na":3,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["TED%3AAF-R9BEH0-F1-model_v4_TED04","TED highly-symmetric fold AF-R9BEH0-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1120928","l":"Acinetobacter tjernbergiae DSM 14971 = CIP 107465","na":3,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["TED%3AAF-V2W927-F1-model_v4_TED01","TED highly-symmetric fold AF-V2W927-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121391","l":"Desulfacinum infernum DSM 9756","na":3,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["TED%3AAF-A0A1M5CF65-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M5CF65-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121393","l":"Desulfatibacillum alkenivorans DSM 16219","na":3,"nb":1,"a":[["sewage-plant-envo-00003043.html","sewage plant"],["waste-water-envo-00002001.html","waste water"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["TED%3AAF-A0A1M6GB75-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M6GB75-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121950","l":"Hespellia stercorisuis DSM 15480","na":3,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["fecal-environment-envo-01001029.html","fecal environment"],["waste-material-envo-00002264.html","waste material"]],"b":[["TED%3AAF-A0A1M6UMY1-F1-model_v4_TED01","TED novel fold AF-A0A1M6UMY1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1122133","l":"Kaistia soli DSM 19436","na":3,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["wetland-area-envo-00000043.html","wetland area"]],"b":[["TED%3AAF-A0A1M5DFE2-F1-model_v4_TED01","TED novel fold AF-A0A1M5DFE2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1123012","l":"Pseudobutyrivibrio xylanivorans DSM 14809","na":3,"nb":1,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"],["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"]],"b":[["TED%3AAF-A0A1M6KN30-F1-model_v4_TED01","TED novel fold AF-A0A1M6KN30-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1125630","l":"Klebsiella pneumoniae subsp. pneumoniae (strain HS11286)","na":1,"nb":3,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["Pfam%3APF16527","Two-component sensor protein CpxA, periplasmic domain"],["Pfam%3APF03883","Peroxide stress protein YaaA"],["PROSITE%3APS01081","TetR-type HTH domain signature"]]},{"id":"NCBITaxon:117681","l":"Pseudomonas gingeri","na":3,"nb":1,"a":[["lake-envo-00000020.html","lake"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"]],"b":[["TED%3AAF-A0A7Y7X9U2-F1-model_v4_TED01","TED novel fold AF-A0A7Y7X9U2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:119602","l":"Streptococcus dysgalactiae subsp. equisimilis","na":3,"nb":1,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["animal-manure-envo-00003031.html","animal manure"]],"b":[["TED%3AAF-A0A5M4CWR2-F1-model_v4_TED02","TED novel fold AF-A0A5M4CWR2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1267423","l":"Roseivirga pacifica","na":1,"nb":3,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["TED%3AAF-A0A1I0MEP5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I0MEP5-F1-model_v4_TED02"],["TED%3AAF-A0A1I0RG98-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I0RG98-F1-model_v4_TED01"],["TED%3AAF-A0A4D7JNA0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4D7JNA0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1295009","l":"Methanomassiliicoccus intestinalis (strain Issoire-Mx1)","na":1,"nb":3,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["TED%3AAF-R9T6Q3-F1-model_v4_TED04","TED highly-symmetric fold AF-R9T6Q3-F1-model_v4_TED04"],["TED%3AAF-R9TAZ5-F1-model_v4_TED01","TED highly-symmetric fold AF-R9TAZ5-F1-model_v4_TED01"],["TED%3AAF-R9T6T6-F1-model_v4_TED01","TED novel fold AF-R9T6T6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1298856","l":"Sphingomonas sp. URHD0007","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["TED%3AAF-A0A2U1FWJ9-F1-model_v4_TED03","TED novel fold AF-A0A2U1FWJ9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1329250","l":"Weissella oryzae (strain DSM 25784 / JCM 18191 / LMG 30913 / SG25)","na":1,"nb":3,"a":[["caryopsis-bto-0000208.html","caryopsis"]],"b":[["Pfam%3APF26322","Botulinum-like neurotoxin Wo, C-terminal beta-trefoil domain"],["Pfam%3APF26321","Botulinum-like neurotoxin Wo, concanavalin A-like domain"],["TED%3AAF-A0A069CU70-F1-model_v4_TED02","TED novel fold AF-A0A069CU70-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1353","l":"Enterococcus gallinarum","na":3,"nb":1,"a":[["foregut-bto-0000507.html","foregut"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["Pfam%3APF01757","Acyltransferase domain"]]},{"id":"NCBITaxon:137591","l":"Weissella cibaria","na":3,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["epithelial-cell-bto-0000414.html","epithelial cell"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["TED%3AAF-A0A0D1LFQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D1LFQ3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:137722","l":"Azospirillum sp. B510","na":3,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["TED%3AAF-D3P3H1-F1-model_v4_TED02","TED highly-symmetric fold AF-D3P3H1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1503","l":"Gottschalkia purinilytica","na":3,"nb":1,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"],["sludge-envo-00002044.html","sludge"]],"b":[["Pfam%3APF07355","Glycine/sarcosine/betaine reductase selenoprotein B (GRDB)"]]},{"id":"NCBITaxon:1534","l":"Clostridium kluyveri","na":3,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"],["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"]],"b":[["TED%3AAF-A0A1L5FEG9-F1-model_v4_TED01","TED novel fold AF-A0A1L5FEG9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1552123","l":"Listeria booriae","na":1,"nb":3,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["TED%3AAF-A0A7X0TLR3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X0TLR3-F1-model_v4_TED01"],["TED%3AAF-A0A841XX79-F1-model_v4_TED03","TED novel fold AF-A0A841XX79-F1-model_v4_TED03"],["TED%3AAF-A0A842AXH7-F1-model_v4_TED01","TED novel fold AF-A0A842AXH7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:158","l":"Treponema denticola","na":3,"nb":1,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["archeological-site-envo-00000564.html","archeological site"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["TED%3AAF-A0A125RME2-F1-model_v4_TED02","TED novel fold AF-A0A125RME2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1588","l":"Lentilactobacillus hilgardii","na":3,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["TED%3AAF-A0A6G9Q2H1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6G9Q2H1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:169760","l":"Paenibacillus stellifer","na":3,"nb":1,"a":[["factory-envo-01000536.html","factory"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["TED%3AAF-A0A089LNP8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A089LNP8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1724","l":"Corynebacterium renale","na":3,"nb":1,"a":[["water-body-envo-00000063.html","water body"],["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["TED%3AAF-A0A2A9DLH1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A9DLH1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":1,"nb":3,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["Pfam%3APF03069","Acetamidase/Formamidase family"],["PROSITE%3APS00818","Dps protein family signature 1"],["Pfam%3APF13810","Domain of unknown function (DUF4185)"]]},{"id":"NCBITaxon:178306","l":"Pyrobaculum aerophilum (strain ATCC 51768 / DSM 7523 / JCM 9630 / CIP 104966 / NBRC 100827 / IM2)","na":1,"nb":3,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF09171","N-glycosylase/DNA lyase"],["Pfam%3APF10432","Bacterial phospho-glucose isomerase C-terminal SIS domain"],["TED%3AAF-Q8ZWY1-F1-model_v4_TED04","TED novel fold AF-Q8ZWY1-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1831","l":"","na":1,"nb":3,"a":[["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["Pfam%3APF14525","AraC-binding-like domain"],["Pfam%3APF01613","Flavin reductase like domain"],["TED%3AAF-A0A7X7SF64-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X7SF64-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1872119","l":"Acidobacterium sp.","na":3,"nb":1,"a":[["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"],["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["TED%3AAF-A0A2G4JIL1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2G4JIL1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1872578","l":"Aquabacterium sp.","na":1,"nb":3,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["TED%3AAF-A0A521ZRM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521ZRM4-F1-model_v4_TED01"],["TED%3AAF-A0A521ZL87-F1-model_v4_TED04","TED novel fold AF-A0A521ZL87-F1-model_v4_TED04"],["TED%3AAF-A0A5C8BIL8-F1-model_v4_TED02","TED novel fold AF-A0A5C8BIL8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1874361","l":"Idiomarina sp.","na":3,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"],["saline-water-body-envo-01001319.html","saline water body"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["TED%3AAF-A0A2E9H521-F1-model_v4_TED01","TED novel fold AF-A0A2E9H521-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1882831","l":"Verrucomicrobium sp. GAS474","na":1,"nb":3,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["TED%3AAF-A0A1H2GE34-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H2GE34-F1-model_v4_TED01"],["TED%3AAF-A0A1H2GVJ7-F1-model_v4_TED04","TED novel fold AF-A0A1H2GVJ7-F1-model_v4_TED04"],["TED%3AAF-A0A1H2HH15-F1-model_v4_TED02","TED novel fold AF-A0A1H2HH15-F1-model_v4_TED02"]]},{"id":"NCBITaxon:188906","l":"Jannaschia helgolandensis","na":3,"nb":1,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["TED%3AAF-A0A1H7MIC2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H7MIC2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:188908","l":"Oleispira antarctica","na":3,"nb":1,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A1Y5HYG0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y5HYG0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:189518","l":"Leptospira interrogans serovar Lai str. 56601","na":3,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF27429","LB_356"]]},{"id":"NCBITaxon:190655","l":"Legionella busanensis","na":1,"nb":3,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["TED%3AAF-A0A378JRR1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A378JRR1-F1-model_v4_TED01"],["TED%3AAF-A0A378JH21-F1-model_v4_TED02","TED novel fold AF-A0A378JH21-F1-model_v4_TED02"],["TED%3AAF-A0A378JIY5-F1-model_v4_TED01","TED novel fold AF-A0A378JIY5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1916082","l":"Alteromonadaceae bacterium","na":1,"nb":3,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2E5MKL5-F1-model_v4_TED03","TED novel fold AF-A0A2E5MKL5-F1-model_v4_TED03"],["TED%3AAF-A0A7Y6ZTD4-F1-model_v4_TED02","TED novel fold AF-A0A7Y6ZTD4-F1-model_v4_TED02"],["TED%3AAF-A0A7Y6ZTV9-F1-model_v4_TED01","TED novel fold AF-A0A7Y6ZTV9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1970199","l":"Sorangiineae bacterium NIC37A 2","na":1,"nb":3,"a":[["compost-envo-00002170.html","compost"]],"b":[["TED%3AAF-A0A1W9QHW9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W9QHW9-F1-model_v4_TED01"],["TED%3AAF-A0A1W9Q7E2-F1-model_v4_TED02","TED novel fold AF-A0A1W9Q7E2-F1-model_v4_TED02"],["TED%3AAF-A0A1W9QHC1-F1-model_v4_TED04","TED novel fold AF-A0A1W9QHC1-F1-model_v4_TED04"]]},{"id":"NCBITaxon:198804","l":"Buchnera aphidicola subsp. Schizaphis graminum (strain Sg)","na":1,"nb":3,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Pfam%3APF09849","Uncharacterized protein conserved in bacteria (DUF2076)"],["Pfam%3APF09976","Tetratricopeptide repeat-like domain"],["Pfam%3APF13371","Tetratricopeptide repeat"]]},{"id":"NCBITaxon:199","l":"Campylobacter concisus","na":1,"nb":3,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["TED%3AAF-A0A7S9RBE4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S9RBE4-F1-model_v4_TED03"],["TED%3AAF-A0A1Y5MKZ8-F1-model_v4_TED01","TED novel fold AF-A0A1Y5MKZ8-F1-model_v4_TED01"],["TED%3AAF-A0A7S9X6B9-F1-model_v4_TED01","TED novel fold AF-A0A7S9X6B9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:216816","l":"Bifidobacterium longum","na":3,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"],["egg-food-product-foodon-00001274.html","egg food product"],["juvenile-bto-0002168.html","juvenile"]],"b":[["TED%3AAF-A0A413ACI9-F1-model_v4_TED01","TED novel fold AF-A0A413ACI9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2283","l":"Acidianus ambivalens","na":1,"nb":3,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["Pfam%3APF07680","TQO small subunit DoxA"],["Pfam%3APF04173","TQO small subunit DoxD"],["TED%3AAF-O57695-F1-model_v4_TED01","TED highly-symmetric fold AF-O57695-F1-model_v4_TED01"]]},{"id":"NCBITaxon:228410","l":"Nitrosomonas europaea ATCC 19718","na":1,"nb":3,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["Pfam%3APF02461","Ammonia monooxygenase"],["Pfam%3APF13435","Cytochrome c554 and c-prime"],["TED%3AAF-Q82SR8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q82SR8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:232991","l":"","na":3,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"],["desert-area-envo-00000097.html","desert area"],["sand-envo-01000017.html","sand"]],"b":[["TED%3AAF-A0A433V699-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A433V699-F1-model_v4_TED01"]]},{"id":"NCBITaxon:235279","l":"Helicobacter hepaticus (strain ATCC 51449 / 3B1)","na":1,"nb":3,"a":[["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"]],"b":[["Pfam%3APF13673","Acetyltransferase (GNAT) domain"],["Pfam%3APF03498","Cytolethal distending toxin A/C domain"],["Pfam%3APF03352","Methyladenine glycosylase"]]},{"id":"NCBITaxon:2371","l":"Xylella fastidiosa","na":3,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"],["water-scum-envo-00005794.html","water scum"]],"b":[["TED%3AAF-A0A1L2B4G6-F1-model_v4_TED02","TED novel fold AF-A0A1L2B4G6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:243243","l":"Mycobacterium avium (strain 104)","na":1,"nb":3,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF13740","ACT domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03710","Glutamate-ammonia ligase adenylyltransferase"]]},{"id":"NCBITaxon:256","l":"Myroides odoratus","na":3,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"]],"b":[["TED%3AAF-A0A378RV66-F1-model_v4_TED01","TED novel fold AF-A0A378RV66-F1-model_v4_TED01"]]},{"id":"NCBITaxon:272560","l":"Burkholderia pseudomallei (strain K96243)","na":1,"nb":3,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF07077","Virulence factor BPSS1818"],["Pfam%3APF11958","Surface attachment protein BPSS1860"],["Pfam%3APF16374","Cycle inhibiting factor (CIF)"]]},{"id":"NCBITaxon:28090","l":"Acinetobacter lwoffii","na":3,"nb":1,"a":[["nectar-bto-0000537.html","nectar"],["pseudostem-bto-0005992.html","pseudostem"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["TED%3AAF-A0A7S9AAV2-F1-model_v4_TED01","TED novel fold AF-A0A7S9AAV2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28111","l":"Bacteroides eggerthii","na":1,"nb":3,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["TED%3AAF-A0A380YHG6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A380YHG6-F1-model_v4_TED01"],["TED%3AAF-A0A380YP67-F1-model_v4_TED01","TED novel fold AF-A0A380YP67-F1-model_v4_TED01"],["TED%3AAF-A0A414M8K0-F1-model_v4_TED04","TED novel fold AF-A0A414M8K0-F1-model_v4_TED04"]]},{"id":"NCBITaxon:290338","l":"Citrobacter koseri (strain ATCC BAA-895 / CDC 4225-83 / SGSC4696)","na":1,"nb":3,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Pfam%3APF03783","Curli production assembly/transport component CsgG"],["Pfam%3APF04269","Protein of unknown function, DUF440"],["Pfam%3APF17874","MalT-like TPR region"]]},{"id":"NCBITaxon:29466","l":"Veillonella parvula","na":3,"nb":1,"a":[["dental-plaque-bto-0000338.html","dental plaque"],["juvenile-bto-0002168.html","juvenile"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["TED%3AAF-A0A134BYG5-F1-model_v4_TED01","TED novel fold AF-A0A134BYG5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:297246","l":"Legionella pneumophila str. Paris","na":3,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"],["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["Pfam%3APF03445","Putative nucleotidyltransferase DUF294"]]},{"id":"NCBITaxon:312309","l":"Aliivibrio fischeri (strain ATCC 700601 / ES114)","na":1,"nb":3,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["Pfam%3APF06610","L-alanine exporter"],["Pfam%3APF00765","Autoinducer synthase"],["PROSITE%3APS00949","Autoinducer synthase family signature"]]},{"id":"NCBITaxon:313589","l":"Janibacter sp. HTCC2649","na":3,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["bulk-soil-envo-00005802.html","bulk soil"],["orchard-envo-00000115.html","orchard"]],"b":[["TED%3AAF-A3TKC7-F1-model_v4_TED01","TED novel fold AF-A3TKC7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:313595","l":"Psychroflexus torquis ATCC 700755","na":3,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["coral-reef-envo-00000150.html","coral reef"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["TED%3AAF-K4IBR2-F1-model_v4_TED01","TED novel fold AF-K4IBR2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:315456","l":"Rickettsia felis (strain ATCC VR-1525 / URRWXCal2)","na":1,"nb":3,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["Pfam%3APF18324","Bacterial isocitrate dehydrogenase, C-terminal domain"],["Pfam%3APF11019","Protein of unknown function (DUF2608)"],["Pfam%3APF22203","Surface cell antigen Sca2 helical repeat"]]},{"id":"NCBITaxon:317655","l":"Sphingopyxis alaskensis RB2256","na":3,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["environmental-material-envo-00010483.html","environmental material"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["Pfam%3APF10755","Protein of unknown function (DUF2585)"]]},{"id":"NCBITaxon:321967","l":"Lacticaseibacillus paracasei (strain ATCC 334 / BCRC 17002 / CCUG 31169 / CIP 107868 / KCTC 3260 / NRRL B-441)","na":1,"nb":3,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["Pfam%3APF11975","Family 4 glycosyl hydrolase C-terminal domain"],["Pfam%3APF02056","Family 4 glycosyl hydrolase"],["PROSITE%3APS01324","Glycosyl hydrolases family 4 signature"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":1,"nb":3,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF22041","Glutathione S-transferase, C-terminal domain"],["Pfam%3APF08493","Aflatoxin regulatory protein"]]},{"id":"NCBITaxon:33959","l":"Lactobacillus johnsonii","na":3,"nb":1,"a":[["animal-litter-envo-00002191.html","animal litter"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["Pfam%3APF13518","Helix-turn-helix domain"]]},{"id":"NCBITaxon:349124","l":"Halorhodospira halophila (strain DSM 244 / SL1)","na":1,"nb":3,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["Pfam%3APF02639","Uncharacterized BCR, YaiI/YqxD family COG1671"],["Pfam%3APF20543","N2-fixation sustaining protein CowN"],["Pfam%3APF07311","Dodecin"]]},{"id":"NCBITaxon:349741","l":"Akkermansia muciniphila (strain ATCC BAA-835 / DSM 22959 / JCM 33894 / BCRC 81048 / CCUG 64013 / CIP 107961 / Muc)","na":1,"nb":3,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["Pfam%3APF23763","GLAA-B beta-barrel domain I"],["Pfam%3APF23764","GLAA-B beta-barrel domain II"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"]]},{"id":"NCBITaxon:357804","l":"Psychromonas ingrahamii (strain DSM 17664 / CCUG 51855 / 37)","na":1,"nb":3,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["Pfam%3APF27465","DNA-binding protein Fis N-terminal domain"],["Pfam%3APF04363","Protein of unknown function (DUF496)"],["Pfam%3APF18955","Domain of unknown function (DUF5698)"]]},{"id":"NCBITaxon:35816","l":"Pelobacter acidigallici","na":3,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["Pfam%3APF21423","Pyrogallol hydroxytransferase large subunit-like, domain 1"]]},{"id":"NCBITaxon:360807","l":"Roseburia inulinivorans","na":3,"nb":1,"a":[["pig-manure-envo-00003860.html","pig manure"],["tropical-envo-01000204.html","tropical"],["harbour-envo-00000463.html","harbour"]],"b":[["TED%3AAF-A0A173VWR5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A173VWR5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:367928","l":"Bifidobacterium adolescentis (strain ATCC 15703 / DSM 20083 / NCTC 11814 / E194a)","na":1,"nb":3,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["Pfam%3APF02156","Glycosyl hydrolase family 26"],["Pfam%3APF27512","LeuD_N"]]},{"id":"NCBITaxon:376686","l":"Flavobacterium johnsoniae (strain ATCC 17061 / DSM 2064 / JCM 8514 / BCRC 14874 / CCUG 350202 / NBRC 14942 / NCIMB 11054 / UW101)","na":1,"nb":3,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["Pfam%3APF17957","Bacterial Ig domain"],["Pfam%3APF24850","Bacillithiol biosynthesis BshC, C-terminal coiled-coil domain"],["Pfam%3APF14109","GldH lipoprotein"]]},{"id":"NCBITaxon:384616","l":"Pyrobaculum islandicum (strain DSM 4184 / JCM 9189 / GEO3)","na":1,"nb":3,"a":[["geothermal-power-plant-envo-00002215.html","geothermal power plant"]],"b":[["Pfam%3APF01941","S-adenosylmethionine synthetase (AdoMet synthetase)"],["Pfam%3APF11520","Chromatin protein Cren7"],["Pfam%3APF05167","Uncharacterised ACR (DUF711)"]]},{"id":"NCBITaxon:384676","l":"","na":1,"nb":3,"a":[["coelom-bto-0001707.html","coelom"]],"b":[["Pfam%3APF18063","Beta barrel Pore-forming domain"],["Pfam%3APF08548","Peptidase M10 serralysin C terminal"],["TED%3AAF-Q1I2P2-F1-model_v4_TED01","TED novel fold AF-Q1I2P2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:399599","l":"Shewanella baltica (strain OS195)","na":1,"nb":3,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["Pfam%3APF24860","FdhE, C-terminal domain"],["Pfam%3APF24859","FdhE, central domain"],["Pfam%3APF04216","FdhE, N-terminal"]]},{"id":"NCBITaxon:399739","l":"Ectopseudomonas mendocina (strain ymp)","na":1,"nb":3,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["Pfam%3APF22289","Dimethylamine monooxygenase subunit DmmA-like, C-terminal domain"],["Pfam%3APF04359","Protein of unknown function (DUF493)"],["Pfam%3APF11927","Haem-dependent oxidative N-demethylase, alpha subunit-like"]]},{"id":"NCBITaxon:400682","l":"Amphimedon queenslandica","na":1,"nb":3,"a":[["germ-cell-bto-0000535.html","germ cell"]],"b":[["TED%3AAF-A0A1X7UW69-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X7UW69-F1-model_v4_TED01"],["TED%3AAF-A0A1X7SZW3-F1-model_v4_TED01","TED novel fold AF-A0A1X7SZW3-F1-model_v4_TED01"],["TED%3AAF-A0A1X7UQD3-F1-model_v4_TED02","TED novel fold AF-A0A1X7UQD3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:401053","l":"Terriglobus saanensis SP1PR4","na":3,"nb":1,"a":[["bulk-soil-envo-00005802.html","bulk soil"],["forested-area-envo-00000111.html","forested area"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-E8UZX5-F1-model_v4_TED02","TED novel fold AF-E8UZX5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:406547","l":"Rubripirellula obstinata","na":1,"nb":3,"a":[["epibiont-habitatmech-bacdive-f4eb470a03.html","Epibiont"]],"b":[["TED%3AAF-A0A5B1CJC2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B1CJC2-F1-model_v4_TED01"],["TED%3AAF-A0A5B1CQ78-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B1CQ78-F1-model_v4_TED01"],["TED%3AAF-A0A5B1CIN8-F1-model_v4_TED02","TED novel fold AF-A0A5B1CIN8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:419665","l":"Methanococcus aeolicus (strain ATCC BAA-1280 / DSM 17508 / OCM 812 / Nankai-3)","na":1,"nb":3,"a":[["shoreline-envo-00000486.html","shoreline"]],"b":[["Pfam%3APF26548","Putative peptidyl-prolyl cis-trans isomerase domain"],["Pfam%3APF06787","FeGP cofactor biosynthesis protein HcgF"],["Pfam%3APF01941","S-adenosylmethionine synthetase (AdoMet synthetase)"]]},{"id":"NCBITaxon:438","l":"Acetobacter pasteurianus","na":3,"nb":1,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"],["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["TED%3AAF-A0A1A0CE09-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1A0CE09-F1-model_v4_TED01"]]},{"id":"NCBITaxon:439292","l":"Bacillus selenitireducens (strain ATCC 700615 / DSM 15326 / MLS10)","na":1,"nb":3,"a":[["anaerobic-mud-envo-00002133.html","anaerobic mud"]],"b":[["Pfam%3APF03633","Glycosyl hydrolase family 65, C-terminal domain"],["Pfam%3APF03636","Glycosyl hydrolase family 65, N-terminal domain"],["Pfam%3APF03632","Glycosyl hydrolase family 65 central catalytic domain"]]},{"id":"NCBITaxon:439495","l":"Pseudovibrio sp. JE062","na":3,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["germ-cell-bto-0000535.html","germ cell"],["desert-sand-envo-00005800.html","desert sand"]],"b":[["TED%3AAF-B6R9T4-F1-model_v4_TED01","TED highly-symmetric fold AF-B6R9T4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:444158","l":"Methanococcus maripaludis (strain C6 / ATCC BAA-1332)","na":1,"nb":3,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["Pfam%3APF06847","Archaeal Peptidase A24 C-terminus Type II"],["Pfam%3APF09888","Uncharacterized protein conserved in archaea (DUF2115)"],["Pfam%3APF05165","GTP cyclohydrolase III"]]},{"id":"NCBITaxon:446465","l":"Brachybacterium faecium DSM 4810","na":3,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["poultry-deep-litter-envo-00003908.html","poultry deep litter"],["village-biome-envo-01000246.html","village biome"]],"b":[["TED%3AAF-C7MEJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-C7MEJ8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:448385","l":"","na":1,"nb":3,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["TED%3AAF-A9FYP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A9FYP8-F1-model_v4_TED01"],["TED%3AAF-A9G932-F1-model_v4_TED01","TED highly-symmetric fold AF-A9G932-F1-model_v4_TED01"],["TED%3AAF-A9F9E5-F1-model_v4_TED01","TED novel fold AF-A9F9E5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:45634","l":"Streptococcus cristatus","na":1,"nb":3,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["Pfam%3APF03486","HI0933-like protein Rossmann domain"],["Pfam%3APF22780","HI0933-like protein barrel and H2TH domain"],["TED%3AAF-A0A139N090-F1-model_v4_TED01","TED novel fold AF-A0A139N090-F1-model_v4_TED01"]]},{"id":"NCBITaxon:469371","l":"Thermobispora bispora DSM 43833","na":3,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["TED%3AAF-D6Y8C2-F1-model_v4_TED02","TED novel fold AF-D6Y8C2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:479431","l":"Nakamurella multipartita DSM 44233","na":3,"nb":1,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["TED%3AAF-C8XHD0-F1-model_v4_TED02","TED novel fold AF-C8XHD0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:51663","l":"Pediococcus damnosus","na":3,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["blast-cell-bto-0000125.html","blast cell"]],"b":[["TED%3AAF-A0A0R2HKY5-F1-model_v4_TED01","TED novel fold AF-A0A0R2HKY5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:530564","l":"Pirellula staleyi DSM 6068","na":3,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["agricultural-soil-envo-00002259.html","agricultural soil"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-D2QXI3-F1-model_v4_TED05","TED novel fold AF-D2QXI3-F1-model_v4_TED05"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":1,"nb":3,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"],["TED%3AAF-A0A7H8I034-F1-model_v4_TED01","TED novel fold AF-A0A7H8I034-F1-model_v4_TED01"]]},{"id":"NCBITaxon:554155","l":"Arthroderma otae (strain ATCC MYA-4605 / CBS 113480)","na":1,"nb":3,"a":[["mountain-pass-envo-00000084.html","mountain pass"]],"b":[["Pfam%3APF13560","Helix-turn-helix domain"],["TED%3AAF-C5FU25-F1-model_v4_TED01","TED novel fold AF-C5FU25-F1-model_v4_TED01"],["TED%3AAF-C5FXD7-F1-model_v4_TED05","TED novel fold AF-C5FXD7-F1-model_v4_TED05"]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":1,"nb":3,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"],["PROSITE%3APS00896","LacY family proton/sugar symporters signature 1"],["PROSITE%3APS00897","LacY family proton/sugar symporters signature 2"]]},{"id":"NCBITaxon:573064","l":"Methanocaldococcus fervens AG86","na":3,"nb":1,"a":[["inlet-envo-00000475.html","inlet"],["shoreline-envo-00000486.html","shoreline"],["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["Pfam%3APF02655","ATP-grasp domain"]]},{"id":"NCBITaxon:578458","l":"Schizophyllum commune (strain H4-8 / FGSC 9210)","na":1,"nb":3,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["TED%3AAF-D8PNC3-F1-model_v4_TED01","TED novel fold AF-D8PNC3-F1-model_v4_TED01"],["TED%3AAF-D8QDU6-F1-model_v4_TED02","TED novel fold AF-D8QDU6-F1-model_v4_TED02"],["TED%3AAF-D8QJK2-F1-model_v4_TED01","TED novel fold AF-D8QJK2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:584","l":"Proteus mirabilis","na":1,"nb":3,"a":[["salivary-gland-bto-0001203.html","salivary gland"]],"b":[["Pfam%3APF05280","Flagellar transcriptional activator (FlhC)"],["TED%3AAF-A0A1Z1SXV6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z1SXV6-F1-model_v4_TED01"],["TED%3AAF-A0A7U1CMJ9-F1-model_v4_TED01","TED novel fold AF-A0A7U1CMJ9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:588","l":"Providencia stuartii","na":1,"nb":3,"a":[["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["PROSITE%3APS01157","Class A bacterial acid phosphatases signature"]]},{"id":"NCBITaxon:644282","l":"Desulfarculus baarsii (strain ATCC 33931 / DSM 2075 / LMG 7858 / VKM B-1802 / 2st14)","na":1,"nb":3,"a":[["ditch-envo-00000037.html","ditch"]],"b":[["Pfam%3APF06397","Desulfoferrodoxin, N-terminal domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["TED%3AAF-E1QLH8-F1-model_v4_TED02","TED novel fold AF-E1QLH8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:658457","l":"Ectopseudomonas composti","na":3,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["TED%3AAF-A0A1I5P4N2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5P4N2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:666681","l":"Methylotenera versatilis 301","na":3,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["environmental-material-envo-00010483.html","environmental material"],["river-bed-envo-00000384.html","river bed"]],"b":[["TED%3AAF-D7DL14-F1-model_v4_TED01","TED novel fold AF-D7DL14-F1-model_v4_TED01"]]},{"id":"NCBITaxon:66711","l":"Escherichia phage AR1","na":1,"nb":3,"a":[["fiber-bto-0000450.html","fiber"]],"b":[["Pfam%3APF21721","Phage tail fibre adhesin Gp38 N-terminal domain"],["Pfam%3APF05268","Phage tail fibre adhesin Gp38"],["Pfam%3APF21446","Long-tail fiber proximal subunit, C-terminal, trimerization domain"]]},{"id":"NCBITaxon:688270","l":"Cellulophaga algicola (strain DSM 14237 / IC166 / ACAM 630)","na":1,"nb":3,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["TED%3AAF-E6XBJ1-F1-model_v4_TED01","TED highly-symmetric fold AF-E6XBJ1-F1-model_v4_TED01"],["TED%3AAF-E6X960-F1-model_v4_TED02","TED novel fold AF-E6X960-F1-model_v4_TED02"],["TED%3AAF-E6XEV2-F1-model_v4_TED02","TED novel fold AF-E6XEV2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:69293","l":"Gasterosteus aculeatus","na":3,"nb":1,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"],["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["TED%3AAF-G3Q6M8-F1-model_v4_TED01","TED novel fold AF-G3Q6M8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:715","l":"Actinobacillus pleuropneumoniae","na":1,"nb":3,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["Pfam%3APF26002","AprE-like, beta-barrel domain"],["Pfam%3APF02794","RTX toxin acyltransferase family"],["PROSITE%3APS00543","HlyD family secretion proteins signature"]]},{"id":"NCBITaxon:7176","l":"Culex quinquefasciatus","na":1,"nb":3,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["TED%3AAF-B0W7X4-F1-model_v4_TED04","TED highly-symmetric fold AF-B0W7X4-F1-model_v4_TED04"],["TED%3AAF-B0WQL7-F1-model_v4_TED02","TED highly-symmetric fold AF-B0WQL7-F1-model_v4_TED02"],["TED%3AAF-B0XLK9-F1-model_v4_TED05","TED highly-symmetric fold AF-B0XLK9-F1-model_v4_TED05"]]},{"id":"NCBITaxon:729","l":"Haemophilus parainfluenzae","na":3,"nb":1,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"],["tropical-envo-01000204.html","tropical"]],"b":[["Pfam%3APF04480","Protein of unknown function (DUF559)"]]},{"id":"NCBITaxon:749414","l":"","na":1,"nb":3,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF14509","Glycosyl-hydrolase 97 C-terminal, oligomerisation"],["Pfam%3APF14508","Glycosyl-hydrolase 97 N-terminal"],["Pfam%3APF10566","Glycoside hydrolase 97"]]},{"id":"NCBITaxon:79880","l":"Shouchella clausii","na":1,"nb":3,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["Pfam%3APF13536","Putative multidrug resistance efflux transporter"],["Pfam%3APF10776","Protein of unknown function (DUF2600)"],["TED%3AAF-A0A268NXB1-F1-model_v4_TED01","TED novel fold AF-A0A268NXB1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:83655","l":"Leclercia adecarboxylata","na":3,"nb":1,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["TED%3AAF-A0A5B7XGB6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A5B7XGB6-F1-model_v4_TED04"]]},{"id":"NCBITaxon:886293","l":"Singulisphaera acidiphila (strain ATCC BAA-1392 / DSM 18658 / VKM B-2454 / MOB10)","na":1,"nb":3,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-L0DF60-F1-model_v4_TED01","TED highly-symmetric fold AF-L0DF60-F1-model_v4_TED01"],["TED%3AAF-L0DFV3-F1-model_v4_TED01","TED highly-symmetric fold AF-L0DFV3-F1-model_v4_TED01"],["TED%3AAF-L0DBJ5-F1-model_v4_TED02","TED novel fold AF-L0DBJ5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:91360","l":"Desulforhopalus singaporensis","na":3,"nb":1,"a":[["marsh-envo-00000035.html","marsh"],["road-envo-00000064.html","road"],["garden-envo-00000011.html","garden"]],"b":[["TED%3AAF-A0A1H0QB18-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H0QB18-F1-model_v4_TED01"]]},{"id":"NCBITaxon:996","l":"Flavobacterium columnare","na":1,"nb":3,"a":[["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["TED%3AAF-A0A4Z0FEB3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Z0FEB3-F1-model_v4_TED02"],["TED%3AAF-A0A2N9P872-F1-model_v4_TED02","TED novel fold AF-A0A2N9P872-F1-model_v4_TED02"],["TED%3AAF-A0A2T4HIF9-F1-model_v4_TED03","TED novel fold AF-A0A2T4HIF9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1002340","l":"Leisingera sp. ANG1","na":2,"nb":1,"a":[["gland-bto-0000522.html","gland"],["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["TED%3AAF-A0A0B4EI55-F1-model_v4_TED01","TED novel fold AF-A0A0B4EI55-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1004304","l":"Hydrotalea sandarakina","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["island-envo-00000098.html","island"]],"b":[["TED%3AAF-A0A2W7RGM4-F1-model_v4_TED03","TED novel fold AF-A0A2W7RGM4-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1005043","l":"Candidatus Regiella insecticola 5.15","na":1,"nb":2,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["TED%3AAF-G2H098-F1-model_v4_TED01","TED highly-symmetric fold AF-G2H098-F1-model_v4_TED01"],["TED%3AAF-G2H102-F1-model_v4_TED04","TED novel fold AF-G2H102-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1006155","l":"","na":2,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["TED%3AAF-A0A1S7FXD4-F1-model_v4_TED02","TED novel fold AF-A0A1S7FXD4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1007676","l":"Companilactobacillus ginsenosidimutans","na":2,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["TED%3AAF-A0A0H4QHM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0H4QHM6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1028307","l":"Klebsiella aerogenes (strain ATCC 13048 / DSM 30053 / CCUG 1429 / JCM 1235 / KCTC 2190 / NBRC 13534 / NCIMB 10102 / NCTC 10006 / CDC 819-56)","na":1,"nb":2,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["Pfam%3APF16031","TonB polyproline region"],["Pfam%3APF09078","CheY binding"]]},{"id":"NCBITaxon:1031537","l":"Bremerella cremea","na":2,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"],["carcass-envo-00002033.html","carcass"]],"b":[["TED%3AAF-A0A368KQM2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A368KQM2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1033810","l":"Haloplasma contractile SSD-17B","na":1,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["TED%3AAF-F7PZK9-F1-model_v4_TED01","TED highly-symmetric fold AF-F7PZK9-F1-model_v4_TED01"],["TED%3AAF-U2EDU2-F1-model_v4_TED03","TED novel fold AF-U2EDU2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1034943","l":"Legionella massiliensis","na":1,"nb":2,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["TED%3AAF-A0A078KZR2-F1-model_v4_TED02","TED novel fold AF-A0A078KZR2-F1-model_v4_TED02"],["TED%3AAF-A0A078L1Y9-F1-model_v4_TED02","TED novel fold AF-A0A078L1Y9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1042","l":"Erythrobacter sp.","na":2,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A6G9N8S4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6G9N8S4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1045004","l":"Oenococcus kitaharae DSM 17330","na":2,"nb":1,"a":[["compost-envo-00002170.html","compost"],["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["TED%3AAF-G9WIN5-F1-model_v4_TED02","TED highly-symmetric fold AF-G9WIN5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1048394","l":"Compostimonas suwonensis","na":2,"nb":1,"a":[["agricultural-waste-material-envo-01000371.html","agricultural waste material"],["waste-material-envo-00002264.html","waste material"]],"b":[["TED%3AAF-A0A2M9BCH6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2M9BCH6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1048689","l":"Escherichia coli O55:H7 (strain RM12579 / EPEC)","na":1,"nb":2,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["Pfam%3APF28043","Anti-phage protein KwaA"],["Pfam%3APF16162","Kiwa protein KwaB-like"]]},{"id":"NCBITaxon:108981","l":"Acinetobacter schindleri","na":2,"nb":1,"a":[["gut-bto-0000545.html","gut"],["skin-bto-0001253.html","skin"]],"b":[["TED%3AAF-A0A855WCB4-F1-model_v4_TED02","TED novel fold AF-A0A855WCB4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1096246","l":"Hungatella effluvii","na":2,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["environmental-system-envo-01000254.html","environmental system"]],"b":[["TED%3AAF-A0A2V3YBX4-F1-model_v4_TED02","TED novel fold AF-A0A2V3YBX4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1114856","l":"Natronorubrum tibetense DSM 13204","na":2,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"],["sediment-envo-00002007.html","sediment"]],"b":[["TED%3AAF-L9VUV1-F1-model_v4_TED01","TED novel fold AF-L9VUV1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1120918","l":"Acetitomaculum ruminis DSM 5522","na":2,"nb":1,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["TED%3AAF-A0A1I1ATM7-F1-model_v4_TED01","TED novel fold AF-A0A1I1ATM7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1120923","l":"Acidocella aminolytica 101 = DSM 11237","na":2,"nb":1,"a":[["mine-envo-00000076.html","mine"],["rock-envo-00001995.html","rock"]],"b":[["TED%3AAF-A0A0D6PBP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D6PBP8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121022","l":"Asticcacaulis benevestitus DSM 16100 = ATCC BAA-896","na":2,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["TED%3AAF-V4PT21-F1-model_v4_TED01","TED highly-symmetric fold AF-V4PT21-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121270","l":"Carboxydocella sporoproducens DSM 16521","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["peninsula-envo-00000305.html","peninsula"]],"b":[["TED%3AAF-A0A1T4LMW3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1T4LMW3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1121279","l":"Chitinimonas taiwanensis DSM 18899","na":1,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"]],"b":[["TED%3AAF-A0A1K2HNH6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1K2HNH6-F1-model_v4_TED02"],["TED%3AAF-A0A1K2HS13-F1-model_v4_TED04","TED novel fold AF-A0A1K2HS13-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1121405","l":"Desulfococcus multivorans DSM 2059","na":2,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"],["sludge-envo-00002044.html","sludge"]],"b":[["TED%3AAF-S7VDW8-F1-model_v4_TED02","TED highly-symmetric fold AF-S7VDW8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1121419","l":"Desulfosporosinus hippei DSM 8344","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["TED%3AAF-A0A1G8D348-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G8D348-F1-model_v4_TED01"],["TED%3AAF-A0A1G8CVS7-F1-model_v4_TED01","TED novel fold AF-A0A1G8CVS7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121448","l":"","na":2,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["primordium-bto-0001886.html","primordium"]],"b":[["Pfam%3APF12139","Adenosine-5'-phosphosulfate reductase beta subunit"]]},{"id":"NCBITaxon:1121868","l":"Enterovibrio nigricans DSM 22720","na":1,"nb":2,"a":[["mediterranean-envo-01000207.html","mediterranean"]],"b":[["TED%3AAF-A0A1T4UXP3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1T4UXP3-F1-model_v4_TED01"],["TED%3AAF-A0A1T4VT23-F1-model_v4_TED01","TED novel fold AF-A0A1T4VT23-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121915","l":"Geoalkalibacter ferrihydriticus DSM 17813","na":2,"nb":1,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["TED%3AAF-A0A0C2HTA4-F1-model_v4_TED03","TED novel fold AF-A0A0C2HTA4-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1121955","l":"Hymenobacter daecheongensis DSM 21074","na":1,"nb":2,"a":[["dam-envo-00000074.html","dam"]],"b":[["TED%3AAF-A0A1M6EGP6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M6EGP6-F1-model_v4_TED02"],["TED%3AAF-A0A1M6M5E1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M6M5E1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1123071","l":"Rubritalea squalenifaciens DSM 18772","na":2,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"],["peninsula-envo-00000305.html","peninsula"]],"b":[["TED%3AAF-A0A1M6J7A4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M6J7A4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1124743","l":"Kribbella soli","na":2,"nb":1,"a":[["park-envo-00000562.html","park"],["forest-biome-envo-01000174.html","forest biome"]],"b":[["TED%3AAF-A0A4Q7WU76-F1-model_v4_TED01","TED novel fold AF-A0A4Q7WU76-F1-model_v4_TED01"]]},{"id":"NCBITaxon:113653","l":"Geoglobus ahangari","na":1,"nb":2,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["TED%3AAF-A0A7J3TIF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J3TIF4-F1-model_v4_TED01"],["TED%3AAF-A0A0F7ID24-F1-model_v4_TED02","TED novel fold AF-A0A0F7ID24-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1150298","l":"Fusicatenibacter saccharivorans","na":1,"nb":2,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["TED%3AAF-A0A174K1Z5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A174K1Z5-F1-model_v4_TED01"],["TED%3AAF-A0A174J3Q6-F1-model_v4_TED01","TED novel fold AF-A0A174J3Q6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1153","l":"Pseudanabaena sp.","na":1,"nb":2,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"]],"b":[["TED%3AAF-A0A2W6YPX5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W6YPX5-F1-model_v4_TED01"],["TED%3AAF-A0A2W7B262-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W7B262-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1165092","l":"Lachnospiraceae bacterium JC7","na":1,"nb":2,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["TED%3AAF-W3AP45-F1-model_v4_TED03","TED highly-symmetric fold AF-W3AP45-F1-model_v4_TED03"],["TED%3AAF-W3ATW4-F1-model_v4_TED02","TED highly-symmetric fold AF-W3ATW4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1166078","l":"Aureimonas phyllosphaerae","na":2,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["TED%3AAF-A0A7W6FW33-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W6FW33-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1172204","l":"Paeniclostridium sordellii 8483","na":1,"nb":2,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["TED%3AAF-A0A446IBF2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A446IBF2-F1-model_v4_TED01"],["TED%3AAF-A0A446ICV2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A446ICV2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1190417","l":"Geodermatophilus telluris","na":2,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"],["sand-envo-01000017.html","sand"]],"b":[["TED%3AAF-A0A1G6L8J2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G6L8J2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1192854","l":"Granulosicoccus antarcticus IMCC3135","na":1,"nb":2,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["TED%3AAF-A0A2Z2NPF3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2Z2NPF3-F1-model_v4_TED03"],["TED%3AAF-A0A2Z2P0Z5-F1-model_v4_TED01","TED novel fold AF-A0A2Z2P0Z5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:119641","l":"Clostridium uliginosum","na":1,"nb":2,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["TED%3AAF-A0A1I1R8X9-F1-model_v4_TED03","TED novel fold AF-A0A1I1R8X9-F1-model_v4_TED03"],["TED%3AAF-A0A1I1S8C7-F1-model_v4_TED03","TED novel fold AF-A0A1I1S8C7-F1-model_v4_TED03"]]},{"id":"NCBITaxon:121719","l":"Pannonibacter phragmitetus","na":2,"nb":1,"a":[["nectar-bto-0000537.html","nectar"],["style-bto-0001313.html","style"]],"b":[["TED%3AAF-A0A0U3EPB7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0U3EPB7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1284","l":"Staphylococcus hyicus","na":1,"nb":2,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["Pfam%3APF04650","YSIRK type signal peptide"],["PROSITE%3APS01123","Thermonuclease family signature 1"]]},{"id":"NCBITaxon:1286","l":"Staphylococcus simulans","na":2,"nb":1,"a":[["animal-house-envo-00003040.html","animal house"],["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["Pfam%3APF25533","Lysostaphin, N-terminal domain"]]},{"id":"NCBITaxon:1290","l":"Staphylococcus hominis","na":2,"nb":1,"a":[["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"]],"b":[["TED%3AAF-A0A6N0I1N0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N0I1N0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1341154","l":"Flavobacterium cauense R2A-7","na":1,"nb":2,"a":[["lake-envo-00000020.html","lake"]],"b":[["TED%3AAF-V6RYF5-F1-model_v4_TED01","TED novel fold AF-V6RYF5-F1-model_v4_TED01"],["TED%3AAF-V6S0E8-F1-model_v4_TED02","TED novel fold AF-V6S0E8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:134537","l":"Paraburkholderia fungorum","na":1,"nb":2,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["TED%3AAF-A0A1H1IH55-F1-model_v4_TED01","TED novel fold AF-A0A1H1IH55-F1-model_v4_TED01"],["TED%3AAF-A0A2N8QLD6-F1-model_v4_TED03","TED novel fold AF-A0A2N8QLD6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:13689","l":"Sphingomonas paucimobilis","na":2,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"]],"b":[["PROSITE%3APS00082","Extradiol ring-cleavage dioxygenases signature"]]},{"id":"NCBITaxon:138074","l":"Serratia symbiotica","na":2,"nb":1,"a":[["intestine-bto-0000648.html","intestine"],["pseudostem-bto-0005992.html","pseudostem"]],"b":[["TED%3AAF-A0A068YYP3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A068YYP3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1385511","l":"Pontibacillus marinus BH030004 = DSM 16465","na":2,"nb":1,"a":[["pond-envo-00000033.html","pond"],["saline-evaporation-pond-envo-00000055.html","saline evaporation pond"]],"b":[["TED%3AAF-A0A0A5GIK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A5GIK2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1408281","l":"Endomicrobium proavitum","na":2,"nb":1,"a":[["flagellate-bto-0000464.html","flagellate"],["larva-bto-0000707.html","larva"]],"b":[["TED%3AAF-A0A0G3WK72-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G3WK72-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1427370","l":"Chlamydia pecorum DBDeUG","na":2,"nb":1,"a":[["conjunctiva-bto-0003415.html","conjunctiva"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["TED%3AAF-V8TRT3-F1-model_v4_TED01","TED highly-symmetric fold AF-V8TRT3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1465","l":"Brevibacillus laterosporus","na":2,"nb":1,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["TED%3AAF-A0A0F7BZ24-F1-model_v4_TED01","TED novel fold AF-A0A0F7BZ24-F1-model_v4_TED01"]]},{"id":"NCBITaxon:146919","l":"Salinibacter ruber","na":2,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["TED%3AAF-A0A840D6P8-F1-model_v4_TED02","TED novel fold AF-A0A840D6P8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["PROSITE%3APS01120","Urease nickel ligands signature"],["PROSITE%3APS00145","Urease active site"]]},{"id":"NCBITaxon:1490","l":"Paraclostridium bifermentans","na":2,"nb":1,"a":[["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"],["harbour-envo-00000463.html","harbour"]],"b":[["TED%3AAF-A0A5P3XDT9-F1-model_v4_TED01","TED novel fold AF-A0A5P3XDT9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1494","l":"Clostridium cochlearium","na":2,"nb":1,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"]],"b":[["TED%3AAF-A0A7Y3V7F0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y3V7F0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1509","l":"Clostridium sporogenes","na":2,"nb":1,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["Pfam%3APF06050","2-hydroxyglutaryl-CoA dehydratase, D-component"]]},{"id":"NCBITaxon:1553448","l":"Gemmobacter intermedius","na":1,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["TED%3AAF-A0A444M931-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A444M931-F1-model_v4_TED02"],["TED%3AAF-A0A444ME17-F1-model_v4_TED01","TED novel fold AF-A0A444ME17-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1578720","l":"Helicobacter ailurogastricus","na":2,"nb":1,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["mycosis-habitatmech-bacdive-6d5784a4c5.html","Mycosis"]],"b":[["TED%3AAF-A0A0K2X3G5-F1-model_v4_TED01","TED novel fold AF-A0A0K2X3G5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:158500","l":"Novosphingobium resinovorum","na":1,"nb":2,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A031JQ90-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A031JQ90-F1-model_v4_TED01"],["TED%3AAF-A0A031JQV5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A031JQV5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:158836","l":"Enterobacter hormaechei","na":1,"nb":2,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["TED%3AAF-A0A431SE22-F1-model_v4_TED01","TED novel fold AF-A0A431SE22-F1-model_v4_TED01"],["TED%3AAF-A0A8B5ZRS3-F1-model_v4_TED01","TED novel fold AF-A0A8B5ZRS3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1612308","l":"Methylocapsa palsarum","na":1,"nb":2,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["TED%3AAF-A0A1I4BSR3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I4BSR3-F1-model_v4_TED02"],["TED%3AAF-A0A1I3X4Y4-F1-model_v4_TED01","TED novel fold AF-A0A1I3X4Y4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:164756","l":"Mycobacterium sp. MCS","na":2,"nb":1,"a":[["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["TED%3AAF-A0A5Q5BFH8-F1-model_v4_TED01","TED novel fold AF-A0A5Q5BFH8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:167968","l":"uncultured Desulfovibrio sp.","na":1,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["TED%3AAF-A0A212J776-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A212J776-F1-model_v4_TED02"],["TED%3AAF-A0A212L6P7-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A212L6P7-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":2,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["TED%3AAF-A0A415C3I8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A415C3I8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:168471","l":"Laribacter hongkongensis","na":2,"nb":1,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"]],"b":[["TED%3AAF-A0A248LK09-F1-model_v4_TED01","TED novel fold AF-A0A248LK09-F1-model_v4_TED01"]]},{"id":"NCBITaxon:169679","l":"Clostridium saccharobutylicum","na":2,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"]],"b":[["Pfam%3APF13290","Chitobiase/beta-hexosaminidase C-terminal domain"]]},{"id":"NCBITaxon:1797191","l":"Acidobacteria bacterium RIFCSPLOWO2 12 FULL 66 21","na":1,"nb":2,"a":[["loam-envo-00002258.html","loam"]],"b":[["TED%3AAF-A0A1F2TD39-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F2TD39-F1-model_v4_TED01"],["TED%3AAF-A0A1F2TJD6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F2TJD6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1798213","l":"Pseudovibrio sp. Tun.PSC04-5.I4","na":2,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["peninsula-envo-00000305.html","peninsula"]],"b":[["TED%3AAF-A0A1H1I1X9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H1I1X9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1873897","l":"Cupriavidus sp.","na":2,"nb":1,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["TED%3AAF-A0A352SA47-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A352SA47-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1895664","l":"Halanaerobium sp.","na":1,"nb":2,"a":[["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["TED%3AAF-A0A315QT49-F1-model_v4_TED03","TED novel fold AF-A0A315QT49-F1-model_v4_TED03"],["TED%3AAF-A0A315R434-F1-model_v4_TED03","TED novel fold AF-A0A315R434-F1-model_v4_TED03"]]},{"id":"NCBITaxon:189918","l":"Mycobacterium sp. KMS","na":2,"nb":1,"a":[["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"],["mountain-pass-envo-00000084.html","mountain pass"]],"b":[["Pfam%3APF06339","Ectoine synthase"]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":2,"nb":1,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Pfam%3APF26312","Domain of unknown function (DUF8083)"]]},{"id":"NCBITaxon:193","l":"Azospirillum lipoferum","na":2,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"]],"b":[["TED%3AAF-A0A1X7MZF1-F1-model_v4_TED02","TED novel fold AF-A0A1X7MZF1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1932","l":"Streptomyces tendae","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["Pfam%3APF01356","Alpha amylase inhibitor"]]},{"id":"NCBITaxon:1938","l":"Streptomyces viridochromogenes","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["Pfam%3APF11599","RRNA methyltransferase AviRa"]]},{"id":"NCBITaxon:2024855","l":"Rhodopirellula sp.","na":1,"nb":2,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A2E0S8K6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0S8K6-F1-model_v4_TED01"],["TED%3AAF-A0A358MZ88-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A358MZ88-F1-model_v4_TED03"]]},{"id":"NCBITaxon:2026725","l":"Chromatiales bacterium","na":1,"nb":2,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A520X6H8-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A520X6H8-F1-model_v4_TED05"],["TED%3AAF-A0A7C2AIC9-F1-model_v4_TED02","TED novel fold AF-A0A7C2AIC9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:208962","l":"Escherichia albertii","na":1,"nb":2,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["Pfam%3APF18134","Adenylyl/Guanylyl and SMODS C-terminal sensor domain"],["Pfam%3APF18153","Cap15, cyclic dinucleotide receptor domain"]]},{"id":"NCBITaxon:2100533","l":"Sphingobacterium haloxyli","na":1,"nb":2,"a":[["endosphere-habitatmech-bacdive-3e4680f074.html","Endosphere"]],"b":[["TED%3AAF-A0A2S9J8F0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S9J8F0-F1-model_v4_TED01"],["TED%3AAF-A0A2S9J915-F1-model_v4_TED02","TED novel fold AF-A0A2S9J915-F1-model_v4_TED02"]]},{"id":"NCBITaxon:213224","l":"Geothermobacter ehrlichii","na":2,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["seamount-envo-00000264.html","seamount"]],"b":[["TED%3AAF-A0A5D3WPY1-F1-model_v4_TED02","TED novel fold AF-A0A5D3WPY1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2162","l":"Methanobacterium formicicum","na":1,"nb":2,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Pfam%3APF04432","Coenzyme F420 hydrogenase/dehydrogenase, beta subunit C terminus"],["Pfam%3APF04422","Coenzyme F420 hydrogenase/dehydrogenase, beta subunit N-term"]]},{"id":"NCBITaxon:2183985","l":"Halomonas sp. A11-A","na":2,"nb":1,"a":[["ocean-trench-envo-00000275.html","ocean trench"],["trough-envo-00000499.html","trough"]],"b":[["TED%3AAF-A0A317P655-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A317P655-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2208","l":"Methanosarcina barkeri","na":2,"nb":1,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["sludge-envo-00002044.html","sludge"]],"b":[["Pfam%3APF09505","Dimethylamine methyltransferase (Dimeth_PyL)"]]},{"id":"NCBITaxon:2223","l":"Methanothrix soehngenii","na":1,"nb":2,"a":[["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"],["TED%3AAF-A0A7K4AJW5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K4AJW5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:226506","l":"Algoriphagus ornithinivorans","na":2,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"],["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["TED%3AAF-A0A1I5CGG6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5CGG6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2292705","l":"Paenibacillus paeoniae","na":2,"nb":1,"a":[["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["TED%3AAF-A0A371PIW4-F1-model_v4_TED01","TED novel fold AF-A0A371PIW4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:238540","l":"Algoriphagus antarcticus","na":2,"nb":1,"a":[["hill-envo-00000083.html","hill"],["seamount-envo-00000264.html","seamount"]],"b":[["TED%3AAF-A0A3E0D6W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3E0D6W3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:244366","l":"Klebsiella variicola","na":2,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["TED%3AAF-A0A2N4Z4E2-F1-model_v4_TED01","TED novel fold AF-A0A2N4Z4E2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:245188","l":"Yoonia vestfoldensis","na":2,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["sandstone-envo-00002055.html","sandstone"]],"b":[["TED%3AAF-A0A1Y0EB74-F1-model_v4_TED01","TED novel fold AF-A0A1Y0EB74-F1-model_v4_TED01"]]},{"id":"NCBITaxon:246200","l":"Ruegeria pomeroyi DSS-3","na":1,"nb":2,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["Pfam%3APF16867","Dimethlysulfonioproprionate lyase"],["Pfam%3APF09347","Domain of unknown function (DUF1989)"]]},{"id":"NCBITaxon:2485163","l":"Methylocaldum sp. 0917","na":1,"nb":2,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["TED%3AAF-A0A4R7A0H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R7A0H4-F1-model_v4_TED01"],["TED%3AAF-A0A4R7AGM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R7AGM3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2547395","l":"Paenibacillus piri","na":1,"nb":2,"a":[["transportation-ways-roads-habitatmech-bacdive-1b4071cb1d.html","Transportation-ways-Roads"]],"b":[["TED%3AAF-A0A4V2ZS36-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A4V2ZS36-F1-model_v4_TED03"],["TED%3AAF-A0A4R5KXP2-F1-model_v4_TED02","TED novel fold AF-A0A4R5KXP2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:262543","l":"Exiguobacterium sibiricum (strain DSM 17290 / CCUG 55495 / CIP 109462 / JCM 13490 / 255-15)","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["Pfam%3APF06335","Domain of unknown function (DUF1054)"],["Pfam%3APF11023","Zinc-ribbon containing domain"]]},{"id":"NCBITaxon:269482","l":"Burkholderia vietnamiensis G4","na":2,"nb":1,"a":[["air-envo-00002005.html","air"],["human-construction-envo-00000070.html","human construction"]],"b":[["TED%3AAF-A4JWD8-F1-model_v4_TED01","TED novel fold AF-A4JWD8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:279714","l":"Pseudogulbenkiania ferrooxidans 2002","na":2,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["pond-water-envo-00002228.html","pond water"]],"b":[["TED%3AAF-B9Z3M4-F1-model_v4_TED02","TED novel fold AF-B9Z3M4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:28087","l":"Legionella sainthelensi","na":1,"nb":2,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["TED%3AAF-A0A3S4I5M7-F1-model_v4_TED01","TED novel fold AF-A0A3S4I5M7-F1-model_v4_TED01"],["TED%3AAF-A0A447STS7-F1-model_v4_TED04","TED novel fold AF-A0A447STS7-F1-model_v4_TED04"]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["Pfam%3APF21252","Glycosyl hydrolase 109, C-terminal domain"],["TED%3AAF-A0A3P1YJQ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3P1YJQ6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28128","l":"Prevotella corporis","na":2,"nb":1,"a":[["environmental-feature-envo-00002297.html","environmental feature"],["harbour-envo-00000463.html","harbour"]],"b":[["TED%3AAF-A0A133Q582-F1-model_v4_TED02","TED novel fold AF-A0A133Q582-F1-model_v4_TED02"]]},{"id":"NCBITaxon:28183","l":"Leptospira santarosai","na":2,"nb":1,"a":[["kidney-bto-0000671.html","kidney"],["liver-bto-0000759.html","liver"]],"b":[["TED%3AAF-A0A2P1QYQ7-F1-model_v4_TED01","TED novel fold AF-A0A2P1QYQ7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:282199","l":"Nereida ignava","na":2,"nb":1,"a":[["sandstone-envo-00002055.html","sandstone"],["bile-bto-0000121.html","bile"]],"b":[["TED%3AAF-A0A0U1NPS2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0U1NPS2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:29017","l":"Cyriopagopus schmidti","na":2,"nb":1,"a":[["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["PROSITE%3APS60021","Huwentoxin-1 family signature"]]},{"id":"NCBITaxon:290339","l":"Cronobacter sakazakii (strain ATCC BAA-894)","na":1,"nb":2,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Pfam%3APF06610","L-alanine exporter"],["Pfam%3APF10796","Sigma-S stabilisation anti-adaptor protein"]]},{"id":"NCBITaxon:292415","l":"Thiobacillus denitrificans ATCC 25259","na":2,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["river-bed-envo-00000384.html","river bed"]],"b":[["Pfam%3APF06804","Outer membrane protein assembly factor BamC-like C-terminal domain"]]},{"id":"NCBITaxon:292459","l":"","na":1,"nb":2,"a":[["compost-envo-00002170.html","compost"]],"b":[["PROSITE%3APS00853","Beta-eliminating lyases pyridoxal-phosphate attachment site"],["TED%3AAF-Q67TA8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q67TA8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:29320","l":"Paenarthrobacter nicotinovorans","na":1,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["Pfam%3APF22607","FAD binding domain-like"],["Pfam%3APF06500","Esterase FrsA-like"]]},{"id":"NCBITaxon:29488","l":"Photorhabdus luminescens","na":1,"nb":2,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["Pfam%3APF02273","Acyl transferase"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"]]},{"id":"NCBITaxon:29491","l":"Aeromonas salmonicida subsp. salmonicida","na":1,"nb":2,"a":[["liver-bto-0000759.html","liver"]],"b":[["TED%3AAF-A0A189PGR3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A189PGR3-F1-model_v4_TED01"],["TED%3AAF-A0A0F6QDS7-F1-model_v4_TED02","TED novel fold AF-A0A0F6QDS7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:29522","l":"Brachyspira aalborgi","na":1,"nb":2,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["TED%3AAF-A0A5C8E3N2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C8E3N2-F1-model_v4_TED01"],["TED%3AAF-A0A5C8E9C6-F1-model_v4_TED01","TED novel fold AF-A0A5C8E9C6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:29559","l":"Metamycoplasma hyosynoviae","na":1,"nb":2,"a":[["joint-bto-0001686.html","joint"]],"b":[["TED%3AAF-A0A063YD07-F1-model_v4_TED02","TED novel fold AF-A0A063YD07-F1-model_v4_TED02"],["TED%3AAF-A0A4R7TZF5-F1-model_v4_TED02","TED novel fold AF-A0A4R7TZF5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:298386","l":"Photobacterium profundum SS9","na":2,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["underground-water-envo-00005792.html","underground water"]],"b":[["Pfam%3APF12558","ATP-binding cassette cobalt transporter"]]},{"id":"NCBITaxon:304371","l":"Methanocella paludicola SANAE","na":2,"nb":1,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["TED%3AAF-D1Z063-F1-model_v4_TED03","TED highly-symmetric fold AF-D1Z063-F1-model_v4_TED03"]]},{"id":"NCBITaxon:309807","l":"Salinibacter ruber DSM 13855","na":2,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["underground-water-envo-00005792.html","underground water"]],"b":[["Pfam%3APF06491","Disulphide isomerase"]]},{"id":"NCBITaxon:313594","l":"Polaribacter irgensii 23-P","na":2,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["TED%3AAF-A4BXQ4-F1-model_v4_TED01","TED novel fold AF-A4BXQ4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:314237","l":"Phyllobacterium leguminum","na":2,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"],["root-nodule-envo-01000164.html","root nodule"]],"b":[["TED%3AAF-A0A318T1W1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A318T1W1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:316058","l":"Rhodopseudomonas palustris HaA2","na":2,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["TED%3AAF-Q2IYC7-F1-model_v4_TED03","TED novel fold AF-Q2IYC7-F1-model_v4_TED03"]]},{"id":"NCBITaxon:316274","l":"Herpetosiphon aurantiacus DSM 785","na":2,"nb":1,"a":[["filament-bto-0000463.html","filament"],["joint-bto-0001686.html","joint"]],"b":[["TED%3AAF-A9AZN6-F1-model_v4_TED02","TED highly-symmetric fold AF-A9AZN6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:320771","l":"Pedosphaera parvula (strain Ellin514)","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["TED%3AAF-B9XAB4-F1-model_v4_TED02","TED highly-symmetric fold AF-B9XAB4-F1-model_v4_TED02"],["TED%3AAF-B9XFV1-F1-model_v4_TED01","TED highly-symmetric fold AF-B9XFV1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:3218","l":"Physcomitrium patens","na":2,"nb":1,"a":[["area-of-tundra-envo-00000112.html","area of tundra"],["slope-envo-00002000.html","slope"]],"b":[["TED%3AAF-A0A2K1IJQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2K1IJQ3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:322710","l":"","na":1,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["proteintraitsmech%3AELIFE109154_Orn_monoox","Metallophore-associated ornithine N5-monooxygenase family"],["proteintraitsmech%3AELIFE109154_PvdP","Pyoverdine chromophore maturation tyrosinase family"]]},{"id":"NCBITaxon:323426","l":"Jezberella montanilacus","na":1,"nb":2,"a":[["pond-envo-00000033.html","pond"]],"b":[["TED%3AAF-A0A2T0XBZ0-F1-model_v4_TED02","TED novel fold AF-A0A2T0XBZ0-F1-model_v4_TED02"],["TED%3AAF-A0A2T0XCA1-F1-model_v4_TED02","TED novel fold AF-A0A2T0XCA1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:33035","l":"Blautia producta","na":1,"nb":2,"a":[["juvenile-bto-0002168.html","juvenile"]],"b":[["TED%3AAF-A0A2S4GEH6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S4GEH6-F1-model_v4_TED01"],["TED%3AAF-A0A7G5MNY0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G5MNY0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:331272","l":"Burkholderia cenocepacia HI2424","na":2,"nb":1,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["Pfam%3APF02673","Bacitracin resistance protein BacA"]]},{"id":"NCBITaxon:332175","l":"Desulfosalsimonas propionicica","na":2,"nb":1,"a":[["inlet-envo-00000475.html","inlet"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["TED%3AAF-A0A7W0HJC5-F1-model_v4_TED03","TED novel fold AF-A0A7W0HJC5-F1-model_v4_TED03"]]},{"id":"NCBITaxon:33889","l":"Brevibacterium casei","na":2,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"]],"b":[["TED%3AAF-A0A7T2TGM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T2TGM6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:33922","l":"Mycoplasmopsis agassizii","na":1,"nb":2,"a":[["valley-envo-00000100.html","valley"]],"b":[["TED%3AAF-A0A1W1X4W5-F1-model_v4_TED01","TED novel fold AF-A0A1W1X4W5-F1-model_v4_TED01"],["TED%3AAF-A0A1W1XA50-F1-model_v4_TED02","TED novel fold AF-A0A1W1XA50-F1-model_v4_TED02"]]},{"id":"NCBITaxon:33950","l":"Thermoanaerobacterium thermosulfurigenes","na":1,"nb":2,"a":[["park-envo-00000562.html","park"]],"b":[["Pfam%3APF18565","Glycoside hydrolase family 2 C-terminal domain 5"],["Pfam%3APF00395","S-layer homology domain"]]},{"id":"NCBITaxon:342616","l":"Streptococcus agalactiae serotype III (strain COH1)","na":1,"nb":2,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["Pfam%3APF26337","Glucosyltransferase 3-like, C-terminal domain"],["Pfam%3APF26334","Glucosyltransferase 3-like, N-terminal domain"]]},{"id":"NCBITaxon:345341","l":"Kutzneria sp. 744","na":2,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"],["clay-envo-00002982.html","clay"]],"b":[["TED%3AAF-W7SU68-F1-model_v4_TED01","TED novel fold AF-W7SU68-F1-model_v4_TED01"]]},{"id":"NCBITaxon:349521","l":"","na":1,"nb":2,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["TED%3AAF-Q2SFS2-F1-model_v4_TED01","TED novel fold AF-Q2SFS2-F1-model_v4_TED01"],["TED%3AAF-Q2SI43-F1-model_v4_TED03","TED novel fold AF-Q2SI43-F1-model_v4_TED03"]]},{"id":"NCBITaxon:350688","l":"Alkaliphilus oremlandii OhILAs","na":2,"nb":1,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["Pfam%3APF18955","Domain of unknown function (DUF5698)"]]},{"id":"NCBITaxon:35703","l":"Citrobacter amalonaticus","na":2,"nb":1,"a":[["dental-plaque-bto-0000338.html","dental plaque"],["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["TED%3AAF-A0A376C300-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A376C300-F1-model_v4_TED02"]]},{"id":"NCBITaxon:363265","l":"Prevotella stercorea","na":1,"nb":2,"a":[["pig-manure-envo-00003860.html","pig manure"]],"b":[["TED%3AAF-A0A415GCN6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A415GCN6-F1-model_v4_TED04"],["TED%3AAF-A0A3R6FHW9-F1-model_v4_TED01","TED novel fold AF-A0A3R6FHW9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:368407","l":"Methanoculleus marisnigri (strain ATCC 35101 / DSM 1498 / JR1)","na":1,"nb":2,"a":[["joint-bto-0001686.html","joint"]],"b":[["Pfam%3APF27030","AbpE bacteria"],["Pfam%3APF04019","Protein of unknown function (DUF359)"]]},{"id":"NCBITaxon:37329","l":"Nocardia farcinica","na":2,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["TED%3AAF-A0A449G5H5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A449G5H5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:375286","l":"Janthinobacterium sp. (strain Marseille)","na":1,"nb":2,"a":[["large-river-biome-envo-00000887.html","large river biome"]],"b":[["Pfam%3APF06299","Protein of unknown function (DUF1045)"],["Pfam%3APF04361","Protein of unknown function (DUF494)"]]},{"id":"NCBITaxon:382514","l":"Telmatospirillum siberiense","na":2,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["peatland-envo-00000044.html","peatland"]],"b":[["TED%3AAF-A0A2N3PPB2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3PPB2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:38313","l":"Shewanella algae","na":1,"nb":2,"a":[["foot-bto-0000476.html","foot"]],"b":[["TED%3AAF-A0A1S2T8W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S2T8W3-F1-model_v4_TED01"],["TED%3AAF-A0A8A5EFG1-F1-model_v4_TED02","TED novel fold AF-A0A8A5EFG1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:389348","l":"Candidatus Protochlamydia naegleriophila","na":2,"nb":1,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["TED%3AAF-A0A0U5J6J4-F1-model_v4_TED01","TED novel fold AF-A0A0U5J6J4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:391037","l":"Salinispora arenicola CNS-205","na":2,"nb":1,"a":[["beach-sand-envo-00002138.html","beach sand"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["Pfam%3APF12072","RNase Y N-terminal region"]]},{"id":"NCBITaxon:39152","l":"Methanococcus maripaludis","na":1,"nb":2,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["Pfam%3APF02571","Precorrin-6x reductase CbiJ/CobK"],["TED%3AAF-A0A7J9PSA9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J9PSA9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:39441","l":"Methanobrevibacter arboriphilus","na":2,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["sludge-envo-00002044.html","sludge"]],"b":[["TED%3AAF-A0A843AID3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843AID3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:395494","l":"Gallionella capsiferriformans (strain ES-2)","na":1,"nb":2,"a":[["river-bed-envo-00000384.html","river bed"]],"b":[["TED%3AAF-D9SCL7-F1-model_v4_TED01","TED highly-symmetric fold AF-D9SCL7-F1-model_v4_TED01"],["TED%3AAF-D9SFM7-F1-model_v4_TED01","TED highly-symmetric fold AF-D9SFM7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:395961","l":"Cyanothece sp. PCC 7425","na":2,"nb":1,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["TED%3AAF-B8HKH7-F1-model_v4_TED01","TED highly-symmetric fold AF-B8HKH7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:39691","l":"Mycolicibacterium moriokaense","na":1,"nb":2,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["TED%3AAF-A0A370D086-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A370D086-F1-model_v4_TED01"],["TED%3AAF-A0A370D4B9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A370D4B9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:404881","l":"Albidovulum denitrificans","na":2,"nb":1,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["TED%3AAF-A0A2S8SDZ8-F1-model_v4_TED03","TED novel fold AF-A0A2S8SDZ8-F1-model_v4_TED03"]]},{"id":"NCBITaxon:404941","l":"Mycobacteroides salmoniphilum","na":1,"nb":2,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["TED%3AAF-A0A4R8SEB1-F1-model_v4_TED02","TED novel fold AF-A0A4R8SEB1-F1-model_v4_TED02"],["TED%3AAF-A0A4R8SGK3-F1-model_v4_TED01","TED novel fold AF-A0A4R8SGK3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:411461","l":"Dorea formicigenerans ATCC 27755","na":2,"nb":1,"a":[["emulsion-envo-00010506.html","emulsion"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["TED%3AAF-B0G854-F1-model_v4_TED01","TED novel fold AF-B0G854-F1-model_v4_TED01"]]},{"id":"NCBITaxon:411463","l":"Eubacterium ventriosum ATCC 27560","na":2,"nb":1,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["TED%3AAF-A5Z937-F1-model_v4_TED01","TED highly-symmetric fold AF-A5Z937-F1-model_v4_TED01"]]},{"id":"NCBITaxon:41211","l":"Desulfotomaculum sp.","na":2,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["TED%3AAF-A0A356UJQ3-F1-model_v4_TED01","TED novel fold AF-A0A356UJQ3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:41880","l":"Pycnococcus provasolii","na":1,"nb":2,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["TED%3AAF-A0A830HBX6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A830HBX6-F1-model_v4_TED02"],["TED%3AAF-A0A830HI63-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A830HI63-F1-model_v4_TED01"]]},{"id":"NCBITaxon:420247","l":"Methanobrevibacter smithii (strain ATCC 35061 / DSM 861 / OCM 144 / PS)","na":1,"nb":2,"a":[["gut-mucosa-bto-0000546.html","gut mucosa"]],"b":[["Pfam%3APF17884","Domain of unknown function (DUF5591)"],["Pfam%3APF18195","GatD N-terminal domain"]]},{"id":"NCBITaxon:420952","l":"Paraburkholderia bryophila","na":2,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["TED%3AAF-A0A7Y9WQV4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y9WQV4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:42256","l":"Rubrobacter radiotolerans","na":2,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["desert-sand-envo-00005800.html","desert sand"]],"b":[["TED%3AAF-A0A023X7L7-F1-model_v4_TED02","TED novel fold AF-A0A023X7L7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:42322","l":"Eubacterium ruminantium","na":1,"nb":2,"a":[["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["TED%3AAF-A0A1H6A208-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H6A208-F1-model_v4_TED01"],["TED%3AAF-A0A1T4Q7U0-F1-model_v4_TED01","TED novel fold AF-A0A1T4Q7U0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:425104","l":"Shewanella sediminis (strain HAW-EB3)","na":1,"nb":2,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["Pfam%3APF13286","Phosphohydrolase-associated domain"],["TED%3AAF-A8FZD8-F1-model_v4_TED01","TED novel fold AF-A8FZD8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:43671","l":"Actinotalea fermentans","na":2,"nb":1,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["TED%3AAF-A0A511YTN2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A511YTN2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:441772","l":"Clostridium botulinum (strain Langeland / NCTC 10281 / Type F)","na":1,"nb":2,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["Pfam%3APF02001","Protein of unknown function DUF134"],["Pfam%3APF06874","Firmicute fructose-1,6-bisphosphatase"]]},{"id":"NCBITaxon:443152","l":"Marinobacter algicola DG893","na":2,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["TED%3AAF-A6EY08-F1-model_v4_TED01","TED highly-symmetric fold AF-A6EY08-F1-model_v4_TED01"]]},{"id":"NCBITaxon:444157","l":"Pyrobaculum neutrophilum V24Sta","na":2,"nb":1,"a":[["silty-sediment-envo-01000119.html","silty sediment"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF01950","Fructose-1,6-bisphosphatase"]]},{"id":"NCBITaxon:44737","l":"Capnocytophaga sp.","na":1,"nb":2,"a":[["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["TED%3AAF-A0A496MK20-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A496MK20-F1-model_v4_TED01"],["TED%3AAF-A0A496MK73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A496MK73-F1-model_v4_TED01"]]},{"id":"NCBITaxon:452637","l":"Opitutus terrae (strain DSM 11246 / JCM 15787 / PB90-1)","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["TED%3AAF-B1ZX41-F1-model_v4_TED02","TED novel fold AF-B1ZX41-F1-model_v4_TED02"],["TED%3AAF-B1ZYN8-F1-model_v4_TED02","TED novel fold AF-B1ZYN8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:455632","l":"Streptomyces griseus subsp. griseus NBRC 13350","na":1,"nb":2,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["PROSITE%3APS01311","Prolipoprotein diacylglyceryl transferase signature"]]},{"id":"NCBITaxon:472","l":"Acinetobacter sp.","na":1,"nb":2,"a":[["carcass-envo-00002033.html","carcass"]],"b":[["TED%3AAF-A0A433CUV6-F1-model_v4_TED01","TED novel fold AF-A0A433CUV6-F1-model_v4_TED01"],["TED%3AAF-A0A7G3BTL8-F1-model_v4_TED01","TED novel fold AF-A0A7G3BTL8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:472759","l":"Nitrosococcus halophilus Nc 4","na":2,"nb":1,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["TED%3AAF-D5BWL1-F1-model_v4_TED01","TED highly-symmetric fold AF-D5BWL1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:474950","l":"Granulicella pectinivorans","na":2,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A1I6LYB5-F1-model_v4_TED03","TED novel fold AF-A0A1I6LYB5-F1-model_v4_TED03"]]},{"id":"NCBITaxon:476","l":"Moraxella bovis","na":1,"nb":2,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"]],"b":[["Pfam%3APF04556","DpnII restriction endonuclease"],["TED%3AAF-A0A1S9ZVN5-F1-model_v4_TED01","TED novel fold AF-A0A1S9ZVN5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":2,"nb":1,"a":[["city-envo-00000856.html","city"],["cropland-biome-envo-01000245.html","cropland biome"]],"b":[["TED%3AAF-A0A4R6CRR7-F1-model_v4_TED01","TED novel fold AF-A0A4R6CRR7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:479435","l":"Kribbella flavida DSM 17836","na":2,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["Pfam%3APF21568","1,3-alpha-isomaltosidase-like, N-terminal domain"]]},{"id":"NCBITaxon:482957","l":"","na":2,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["TED%3AAF-A0A6P2XDC0-F1-model_v4_TED01","TED novel fold AF-A0A6P2XDC0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:484019","l":"Thermosipho africanus (strain TCF52B)","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["TED%3AAF-B7IGW9-F1-model_v4_TED05","TED highly-symmetric fold AF-B7IGW9-F1-model_v4_TED05"],["TED%3AAF-B7IEF5-F1-model_v4_TED01","TED novel fold AF-B7IEF5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:487","l":"Neisseria meningitidis","na":2,"nb":1,"a":[["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["Pfam%3APF22582","Amylosucrase, C-terminal domain"]]},{"id":"NCBITaxon:487796","l":"Flavobacteria bacterium MS024-2A","na":2,"nb":1,"a":[["marine-neritic-zone-envo-00000206.html","marine neritic zone"],["coastal-plain-envo-00000090.html","coastal plain"]],"b":[["TED%3AAF-C0BK38-F1-model_v4_TED02","TED novel fold AF-C0BK38-F1-model_v4_TED02"]]},{"id":"NCBITaxon:49252","l":"Eucampia antarctica","na":1,"nb":2,"a":[["saline-water-envo-00002010.html","saline water"]],"b":[["TED%3AAF-A0A7S2RNI9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S2RNI9-F1-model_v4_TED02"],["TED%3AAF-A0A7S2SD61-F1-model_v4_TED01","TED novel fold AF-A0A7S2SD61-F1-model_v4_TED01"]]},{"id":"NCBITaxon:498214","l":"Clostridium botulinum (strain Loch Maree / Type A3)","na":1,"nb":2,"a":[["plateau-envo-00000182.html","plateau"]],"b":[["Pfam%3APF20921","Domain of unknown function DUF1846, C-terminal"],["Pfam%3APF08903","Domain of unknown function DUF1846, N-terminal"]]},{"id":"NCBITaxon:504472","l":"Spirosoma linguale DSM 74","na":2,"nb":1,"a":[["drinking-water-envo-00003064.html","drinking water"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["TED%3AAF-D2QHB9-F1-model_v4_TED01","TED highly-symmetric fold AF-D2QHB9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:507522","l":"Klebsiella variicola (strain 342)","na":1,"nb":2,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Pfam%3APF18649","EcpB C-terminal domain"],["Pfam%3APF04205","FMN-binding domain"]]},{"id":"NCBITaxon:508451","l":"Lactobacillus taiwanensis","na":1,"nb":2,"a":[["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["TED%3AAF-A0A256LG95-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A256LG95-F1-model_v4_TED04"],["TED%3AAF-A0A8A8VQ16-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8A8VQ16-F1-model_v4_TED01"]]},{"id":"NCBITaxon:515393","l":"Pseudomonas yamanorum","na":1,"nb":2,"a":[["subarctic-habitatmech-bacdive-09ded89de7.html","Subarctic"]],"b":[["TED%3AAF-A0A143GFF9-F1-model_v4_TED03","TED novel fold AF-A0A143GFF9-F1-model_v4_TED03"],["TED%3AAF-A0A1H2I658-F1-model_v4_TED02","TED novel fold AF-A0A1H2I658-F1-model_v4_TED02"]]},{"id":"NCBITaxon:517417","l":"Chlorobaculum parvum (strain DSM 263 / NCIMB 8327)","na":1,"nb":2,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["Pfam%3APF28537","Probable trigger factor, FKBP-like domain"],["Pfam%3APF10643","Photosystem P840 reaction-centre cytochrome c-551"]]},{"id":"NCBITaxon:519","l":"Bordetella parapertussis","na":2,"nb":1,"a":[["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Pfam%3APF13542","Helix-turn-helix domain of transposase family ISL3"]]},{"id":"NCBITaxon:521674","l":"Planctopirus limnophila DSM 3776","na":2,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-D5SQH0-F1-model_v4_TED01","TED novel fold AF-D5SQH0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:52560","l":"Desulfomicrobium apsheronum","na":2,"nb":1,"a":[["black-smoker-envo-00000218.html","black smoker"],["volcanic-rock-envo-00002015.html","volcanic rock"]],"b":[["TED%3AAF-A0A1I3Z6Q6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1I3Z6Q6-F1-model_v4_TED04"]]},{"id":"NCBITaxon:53463","l":"Paracoccus solventivorans","na":2,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["plain-envo-00000086.html","plain"]],"b":[["TED%3AAF-A0A1M7DMW2-F1-model_v4_TED03","TED novel fold AF-A0A1M7DMW2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:536044","l":"Methanolobus zinderi","na":1,"nb":2,"a":[["coalbed-water-habitatmech-bacdive-499e641dc2.html","Coalbed-water"]],"b":[["TED%3AAF-A0A7D5IAI6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7D5IAI6-F1-model_v4_TED01"],["TED%3AAF-A0A7D5E6R2-F1-model_v4_TED02","TED novel fold AF-A0A7D5E6R2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:555970","l":"Bifidobacterium animalis subsp. lactis (strain DSM 10140 / CCUG 37979 / JCM 10602 / LMG 18314 / NRRL B-41405 / UR1)","na":1,"nb":2,"a":[["intestinal-epithelium-bto-0000781.html","intestinal epithelium"]],"b":[["PROSITE%3APS60002","Phosphoketolase signature 1"],["PROSITE%3APS60003","Phosphoketolase signature 2"]]},{"id":"NCBITaxon:579137","l":"Methanocaldococcus vulcanius M7","na":2,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["TED%3AAF-C9RDN7-F1-model_v4_TED02","TED highly-symmetric fold AF-C9RDN7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:5823","l":"Plasmodium berghei (strain Anka)","na":1,"nb":2,"a":[["ookinete-bto-0004857.html","ookinete"]],"b":[["Pfam%3APF03092","BT1 family"],["Pfam%3APF12628","Falstatin, cysteine peptidase inhibitor"]]},{"id":"NCBITaxon:5851","l":"Plasmodium knowlesi strain H","na":2,"nb":1,"a":[["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["hypnozoite-bto-0003594.html","hypnozoite"]],"b":[["TED%3AAF-A0A6H5FUY2-F1-model_v4_TED01","TED novel fold AF-A0A6H5FUY2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:588581","l":"Ruminiclostridium papyrosolvens DSM 2782","na":2,"nb":1,"a":[["estuary-envo-00000045.html","estuary"],["sporangium-bto-0001287.html","sporangium"]],"b":[["TED%3AAF-F1TA67-F1-model_v4_TED05","TED highly-symmetric fold AF-F1TA67-F1-model_v4_TED05"]]},{"id":"NCBITaxon:59406","l":"Aromatoleum evansii","na":1,"nb":2,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF14535","AMP-binding enzyme C-terminal domain"],["Pfam%3APF12837","4Fe-4S binding domain"]]},{"id":"NCBITaxon:595453","l":"Rhodopirellula sp. SM50","na":2,"nb":1,"a":[["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"]],"b":[["TED%3AAF-A0A2A2WGR6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A2WGR6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:60480","l":"Shewanella sp. (strain MR-4)","na":1,"nb":2,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["Pfam%3APF06276","Ferric iron reductase FhuF-like transporter"],["Pfam%3APF04183","IucA / IucC family"]]},{"id":"NCBITaxon:608538","l":"Hydrogenobacter thermophilus TK-6","na":2,"nb":1,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"],["peninsula-envo-00000305.html","peninsula"]],"b":[["Pfam%3APF17805","AsnC-like ligand binding domain"]]},{"id":"NCBITaxon:6087","l":"Hydra vulgaris","na":1,"nb":2,"a":[["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["Pfam%3APF06369","Sea anemone cytotoxic protein"],["TED%3AAF-B8Y8I7-F1-model_v4_TED01","TED highly-symmetric fold AF-B8Y8I7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:616997","l":"Hoyosella altamirensis","na":2,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["cave-envo-00000067.html","cave"]],"b":[["TED%3AAF-A0A839RM00-F1-model_v4_TED02","TED novel fold AF-A0A839RM00-F1-model_v4_TED02"]]},{"id":"NCBITaxon:623280","l":"Parapedobacter luteus","na":2,"nb":1,"a":[["sewage-envo-00002018.html","sewage"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["TED%3AAF-A0A1T5FI29-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1T5FI29-F1-model_v4_TED01"]]},{"id":"NCBITaxon:642492","l":"Cellulosilyticum lentocellum (strain ATCC 49066 / DSM 5427 / NCIMB 11756 / RHM5)","na":1,"nb":2,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["TED%3AAF-F2JHU0-F1-model_v4_TED01","TED highly-symmetric fold AF-F2JHU0-F1-model_v4_TED01"],["TED%3AAF-F2JQ83-F1-model_v4_TED01","TED highly-symmetric fold AF-F2JQ83-F1-model_v4_TED01"]]},{"id":"NCBITaxon:644107","l":"Ruegeria lacuscaerulensis (strain DSM 11314 / KCTC 2953 / ITI-1157)","na":1,"nb":2,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["Pfam%3APF16867","Dimethlysulfonioproprionate lyase"],["TED%3AAF-D0CYX0-F1-model_v4_TED01","TED novel fold AF-D0CYX0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:649349","l":"Leadbetterella byssophila DSM 17132","na":2,"nb":1,"a":[["compost-envo-00002170.html","compost"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["TED%3AAF-E4RVH3-F1-model_v4_TED02","TED novel fold AF-E4RVH3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:679926","l":"Methanolacinia petrolearia DSM 11571","na":2,"nb":1,"a":[["inlet-envo-00000475.html","inlet"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["TED%3AAF-E1RJC3-F1-model_v4_TED02","TED novel fold AF-E1RJC3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:68170","l":"Lechevalieria aerocolonigenes","na":1,"nb":2,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["Pfam%3APF12902","Ferritin-like"],["TED%3AAF-A0A0F0GZM7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0F0GZM7-F1-model_v4_TED03"]]},{"id":"NCBITaxon:688246","l":"Hallella multisaccharivorax DSM 17128","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["TED%3AAF-F8N9C0-F1-model_v4_TED03","TED novel fold AF-F8N9C0-F1-model_v4_TED03"],["TED%3AAF-F8N9F2-F1-model_v4_TED01","TED novel fold AF-F8N9F2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:68892","l":"Streptococcus infantis","na":2,"nb":1,"a":[["head-bto-0000282.html","head"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["TED%3AAF-A0A0F2E1C7-F1-model_v4_TED04","TED novel fold AF-A0A0F2E1C7-F1-model_v4_TED04"]]},{"id":"NCBITaxon:693216","l":"Cronobacter turicensis z3032","na":2,"nb":1,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["TED%3AAF-C9Y1S3-F1-model_v4_TED01","TED novel fold AF-C9Y1S3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:69969","l":"Macrococcus carouselicus","na":2,"nb":1,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["TED%3AAF-A0A4R6BCC8-F1-model_v4_TED01","TED novel fold AF-A0A4R6BCC8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:7230","l":"Drosophila mojavensis","na":1,"nb":2,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"]],"b":[["Pfam%3APF10562","Calmodulin-binding domain C0 of NMDA receptor NR1 subunit"],["Pfam%3APF13428","Tetratricopeptide repeat"]]},{"id":"NCBITaxon:7425","l":"Nasonia vitripennis","na":2,"nb":1,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["TED%3AAF-A0A7M7QB08-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7M7QB08-F1-model_v4_TED04"]]},{"id":"NCBITaxon:756067","l":"Microcoleus vaginatus FGP-2","na":2,"nb":1,"a":[["desert-area-envo-00000097.html","desert area"],["seamount-envo-00000264.html","seamount"]],"b":[["TED%3AAF-F5UCE7-F1-model_v4_TED03","TED highly-symmetric fold AF-F5UCE7-F1-model_v4_TED03"]]},{"id":"NCBITaxon:756272","l":"Rubinisphaera brasiliensis DSM 5305","na":2,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["TED%3AAF-F0SH04-F1-model_v4_TED04","TED novel fold AF-F0SH04-F1-model_v4_TED04"]]},{"id":"NCBITaxon:7654","l":"Lytechinus variegatus","na":2,"nb":1,"a":[["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["Pfam%3APF02084","Bindin"]]},{"id":"NCBITaxon:78229","l":"Paracidovorax anthurii","na":1,"nb":2,"a":[["leaf-po-0025034.html","leaf"]],"b":[["TED%3AAF-A0A328ZC73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A328ZC73-F1-model_v4_TED01"],["TED%3AAF-A0A328Z0A2-F1-model_v4_TED01","TED novel fold AF-A0A328Z0A2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:794903","l":"Opitutaceae bacterium TAV5","na":2,"nb":1,"a":[["hindgut-bto-0000510.html","hindgut"],["wood-bto-0005516.html","wood"]],"b":[["TED%3AAF-W0J1Y7-F1-model_v4_TED01","TED highly-symmetric fold AF-W0J1Y7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:82367","l":"Paracoccus pantotrophus","na":2,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["Pfam%3APF17805","AsnC-like ligand binding domain"]]},{"id":"NCBITaxon:83554","l":"Chlamydia psittaci","na":2,"nb":1,"a":[["spleen-bto-0001281.html","spleen"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["Pfam%3APF01345","CLIPPER domain"]]},{"id":"NCBITaxon:83555","l":"Chlamydia abortus","na":2,"nb":1,"a":[["elementary-body-bto-0000377.html","elementary body"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["TED%3AAF-A0A5C1D8N1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C1D8N1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:865938","l":"Weeksella virosa DSM 16922","na":2,"nb":1,"a":[["urethra-bto-0001426.html","urethra"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["TED%3AAF-F0P1F3-F1-model_v4_TED01","TED novel fold AF-F0P1F3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:912594","l":"Mycolicibacterium iranicum","na":1,"nb":2,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["TED%3AAF-A0A178LVR2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A178LVR2-F1-model_v4_TED02"],["TED%3AAF-A0A178M0U6-F1-model_v4_TED01","TED novel fold AF-A0A178M0U6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:9258","l":"Ornithorhynchus anatinus","na":1,"nb":2,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"]],"b":[["Pfam%3APF08131","Defensin-like peptide family"],["Pfam%3APF17858","Platypus intermediate defensin-like peptide"]]},{"id":"NCBITaxon:933063","l":"Dichotomicrobium thermohalophilum","na":1,"nb":2,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["TED%3AAF-A0A397Q5H3-F1-model_v4_TED01","TED novel fold AF-A0A397Q5H3-F1-model_v4_TED01"],["TED%3AAF-A0A397Q636-F1-model_v4_TED02","TED novel fold AF-A0A397Q636-F1-model_v4_TED02"]]},{"id":"NCBITaxon:99656","l":"[Clostridium] fimetarium","na":1,"nb":2,"a":[["animal-waste-material-envo-00002276.html","animal waste material"]],"b":[["TED%3AAF-A0A1I0N088-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I0N088-F1-model_v4_TED02"],["TED%3AAF-A0A1I0QS44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I0QS44-F1-model_v4_TED01"]]},{"id":"UBERON:0001003","l":"skin epidermis","na":1,"nb":2,"a":[["skin-epidermis-uberon-0001003.html","skin epidermis"]],"b":[["GO%3A0008544","epidermis development"],["GO%3A0048730","epidermis morphogenesis"]]},{"id":"UBERON:0001705","l":"nail","na":2,"nb":1,"a":[["nail-uberon-0001705.html","nail"],["nails-habitatmech-gold-1d1529ead1.html","Nails"]],"b":[["GO%3A0035878","nail development"]]},{"id":"UBERON:0002073","l":"","na":2,"nb":1,"a":[["hair-follicle-habitatmech-gold-1e3f47202c.html","Hair follicle"],["hair-follicle-habitatmech-gold-b7fcb62675.html","Hair follicle"]],"b":[["GO%3A0001942","hair follicle development"]]},{"id":"UBERON:0002097","l":"skin of body","na":1,"nb":2,"a":[["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["GO%3A0043588","skin development"],["GO%3A0043589","skin morphogenesis"]]},{"id":"NCBITaxon:1001590","l":"","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["TED%3AAF-M6GW27-F1-model_v4_TED03","TED novel fold AF-M6GW27-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1003237","l":"Nitrospirillum amazonense Y2","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["TED%3AAF-G1Y2J3-F1-model_v4_TED02","TED novel fold AF-G1Y2J3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1017277","l":"","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["TED%3AAF-A0A0V8GEY0-F1-model_v4_TED01","TED novel fold AF-A0A0V8GEY0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1032","l":"Thiothrix sp.","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["TED%3AAF-A0A432UXQ4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A432UXQ4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1032505","l":"Fusobacterium sp. OBRC1","na":1,"nb":1,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["TED%3AAF-X8HXN3-F1-model_v4_TED01","TED highly-symmetric fold AF-X8HXN3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1035309","l":"Ceratocystis fimbriata CBS 114723","na":1,"nb":1,"a":[["plant-bto-0001481.html","plant"]],"b":[["TED%3AAF-A0A2C5WW72-F1-model_v4_TED01","TED novel fold AF-A0A2C5WW72-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1037377","l":"Chryseobacterium viscerum","na":1,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["TED%3AAF-A0A316W9L1-F1-model_v4_TED02","TED novel fold AF-A0A316W9L1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1038014","l":"Aquimarina amphilecti","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["TED%3AAF-A0A1H7GXR7-F1-model_v4_TED01","TED novel fold AF-A0A1H7GXR7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:103816","l":"","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A419ZLU8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A419ZLU8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:103838","l":"","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["TED%3AAF-A0A5S4FRG4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5S4FRG4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1038845","l":"","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["TED%3AAF-A0A6N8H854-F1-model_v4_TED02","TED novel fold AF-A0A6N8H854-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1038928","l":"Streptomyces xinghaiensis","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["TED%3AAF-A0A3R7FP99-F1-model_v4_TED01","TED novel fold AF-A0A3R7FP99-F1-model_v4_TED01"]]},{"id":"NCBITaxon:104205","l":"","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["TED%3AAF-A0A841ECK8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841ECK8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:104660","l":"Pinctada maxima","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["Pfam%3APF03173","Putative carbohydrate binding domain"]]},{"id":"NCBITaxon:104663","l":"","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["TED%3AAF-A0A1G7RSD9-F1-model_v4_TED01","TED novel fold AF-A0A1G7RSD9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1048396","l":"Halopenitus persicus","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["TED%3AAF-A0A1H3M4L7-F1-model_v4_TED01","TED novel fold AF-A0A1H3M4L7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1051531","l":"Saccharothrix tamanrassetensis","na":1,"nb":1,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["TED%3AAF-A0A841CPC6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841CPC6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1052260","l":"","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["TED%3AAF-A0A1H0TFA4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H0TFA4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1052585","l":"","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["TED%3AAF-G4P1P4-F1-model_v4_TED01","TED highly-symmetric fold AF-G4P1P4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1053222","l":"","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["TED%3AAF-J8G3X2-F1-model_v4_TED01","TED highly-symmetric fold AF-J8G3X2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1054202","l":"Rhodobacter viridis","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["TED%3AAF-A0A318TZ12-F1-model_v4_TED01","TED novel fold AF-A0A318TZ12-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1054217","l":"","na":1,"nb":1,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["TED%3AAF-M4YJR5-F1-model_v4_TED01","TED highly-symmetric fold AF-M4YJR5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:106654","l":"","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["TED%3AAF-A0A5Q0RRM8-F1-model_v4_TED01","TED novel fold AF-A0A5Q0RRM8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1071078","l":"Bacillus sp. NSP9.1","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["TED%3AAF-A0A6I7F721-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I7F721-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1078016","l":"","na":1,"nb":1,"a":[["resting-cell-bto-0001170.html","resting cell"]],"b":[["Pfam%3APF08028","Acyl-CoA dehydrogenase, C-terminal domain"]]},{"id":"NCBITaxon:1078050","l":"Seleniivibrio woodruffii","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["TED%3AAF-A0A4R1KEH0-F1-model_v4_TED02","TED novel fold AF-A0A4R1KEH0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1085538","l":"","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["TED%3AAF-M6TC60-F1-model_v4_TED05","TED novel fold AF-M6TC60-F1-model_v4_TED05"]]},{"id":"NCBITaxon:108980","l":"Acinetobacter ursingii","na":1,"nb":1,"a":[["foot-bto-0000476.html","foot"]],"b":[["TED%3AAF-A0A3F3LBR7-F1-model_v4_TED01","TED novel fold AF-A0A3F3LBR7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1094555","l":"Bartonella elizabethae F9251 = ATCC 49927","na":1,"nb":1,"a":[["blood-bto-0000089.html","blood"]],"b":[["TED%3AAF-J1K501-F1-model_v4_TED02","TED highly-symmetric fold AF-J1K501-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1100720","l":"Limnohabitans sp. Rim28","na":1,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["TED%3AAF-A0A2T7SZL1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T7SZL1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1107882","l":"Mesorhizobium alhagi CCNWXJ12-2","na":1,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["TED%3AAF-H0I1K0-F1-model_v4_TED01","TED novel fold AF-H0I1K0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1108595","l":"Chromobacterium vaccinii","na":1,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["TED%3AAF-A0A2L2B8V3-F1-model_v4_TED02","TED novel fold AF-A0A2L2B8V3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1111454","l":"","na":1,"nb":1,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["TED%3AAF-U7UHK7-F1-model_v4_TED01","TED novel fold AF-U7UHK7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1112204","l":"","na":1,"nb":1,"a":[["latex-bto-0000710.html","latex"]],"b":[["TED%3AAF-H6N0Q7-F1-model_v4_TED01","TED novel fold AF-H6N0Q7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1116472","l":"Methyloglobulus morosus KoM1","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["TED%3AAF-V5BKR0-F1-model_v4_TED01","TED highly-symmetric fold AF-V5BKR0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1120926","l":"Acinetobacter gerneri DSM 14967 = CIP 107464 = MTCC 9824","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["TED%3AAF-N8ZKV3-F1-model_v4_TED01","TED highly-symmetric fold AF-N8ZKV3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1120996","l":"Anaerosporobacter mobilis DSM 15930","na":1,"nb":1,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["TED%3AAF-A0A1M7NGC0-F1-model_v4_TED01","TED novel fold AF-A0A1M7NGC0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121098","l":"Phocaeicola massiliensis B84634 = Timone 84634 = DSM 17679 = JCM 13223","na":1,"nb":1,"a":[["blood-bto-0000089.html","blood"]],"b":[["TED%3AAF-U6RRG8-F1-model_v4_TED01","TED highly-symmetric fold AF-U6RRG8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121326","l":"Clostridium magnum DSM 2767","na":1,"nb":1,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["TED%3AAF-A0A162T1A8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A162T1A8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121336","l":"Thermoclostridium stercorarium subsp. thermolacticum DSM 2910","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["TED%3AAF-A0A1B1YDV6-F1-model_v4_TED02","TED novel fold AF-A0A1B1YDV6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1121424","l":"Desulfotruncus arcticus DSM 17038","na":1,"nb":1,"a":[["sea-coast-envo-00000303.html","sea coast"]],"b":[["TED%3AAF-A0A1I2Z3E3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I2Z3E3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1121426","l":"Desulfoscipio geothermicus DSM 3669","na":1,"nb":1,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["TED%3AAF-A0A1I6DXW2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I6DXW2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121898","l":"","na":1,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"]],"b":[["TED%3AAF-A0A0A2M8C2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A2M8C2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1122169","l":"Legionella shakespearei DSM 23087","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["TED%3AAF-A0A0W0YL59-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0W0YL59-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1122189","l":"Malonomonas rubra DSM 5091","na":1,"nb":1,"a":[["canal-envo-00000014.html","canal"]],"b":[["TED%3AAF-A0A1M6IYP5-F1-model_v4_TED01","TED novel fold AF-A0A1M6IYP5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1122247","l":"","na":1,"nb":1,"a":[["urethra-bto-0001426.html","urethra"]],"b":[["Pfam%3APF22422","Mannosylglycerate hydrolase MGH1-like glycoside hydrolase domain"]]},{"id":"NCBITaxon:1122252","l":"Marinospirillum celere","na":1,"nb":1,"a":[["island-envo-00000098.html","island"]],"b":[["TED%3AAF-A0A1I1DUZ3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1I1DUZ3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1123078","l":"","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["Pfam%3APF26164","Bacterial Gasdermin Family"]]},{"id":"NCBITaxon:1123282","l":"Sporobacter termitidis DSM 10068","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["TED%3AAF-A0A1M5VTW1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M5VTW1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1125876","l":"Halpernia frigidisoli","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["TED%3AAF-A0A1I3H4T1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I3H4T1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1129374","l":"Alishewanella jeotgali KCTC 22429","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["TED%3AAF-H3ZBB0-F1-model_v4_TED01","TED highly-symmetric fold AF-H3ZBB0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:113355","l":"","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["Pfam%3APF18921","Cyanophycin synthase-like N-terminal domain"]]},{"id":"NCBITaxon:1134687","l":"Klebsiella michiganensis","na":1,"nb":1,"a":[["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"]],"b":[["TED%3AAF-A0A443W129-F1-model_v4_TED01","TED novel fold AF-A0A443W129-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1141221","l":"Chryseobacterium taihuense","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["TED%3AAF-A0A4U8WD57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8WD57-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1144618","l":"Allonocardiopsis opalescens","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["TED%3AAF-A0A2T0QE02-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T0QE02-F1-model_v4_TED01"]]},{"id":"NCBITaxon:114527","l":"Mogibacterium diversum","na":1,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["TED%3AAF-A0A2S0L5I6-F1-model_v4_TED02","TED novel fold AF-A0A2S0L5I6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1148157","l":"Acinetobacter oleivorans","na":1,"nb":1,"a":[["plume-bto-0002480.html","plume"]],"b":[["TED%3AAF-A0A0B2UAV2-F1-model_v4_TED02","TED novel fold AF-A0A0B2UAV2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:115778","l":"Leuconostoc gasicomitatum","na":1,"nb":1,"a":[["research-facility-envo-00000469.html","research facility"]],"b":[["TED%3AAF-A0A7H9BD19-F1-model_v4_TED01","TED novel fold AF-A0A7H9BD19-F1-model_v4_TED01"]]},{"id":"NCBITaxon:115808","l":"Bradyrhizobium sp. ORS 285","na":1,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["TED%3AAF-A0A1Y6KEH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y6KEH3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:115979","l":"","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["TED%3AAF-A0A2N0Z186-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N0Z186-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1161919","l":"Erwinia piriflorinigrans CFBP 5888","na":1,"nb":1,"a":[["flower-bto-0000469.html","flower"]],"b":[["TED%3AAF-V5Z5E5-F1-model_v4_TED01","TED novel fold AF-V5Z5E5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1162967","l":"Diaminobutyricimonas aerilata","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["TED%3AAF-A0A2M9CH35-F1-model_v4_TED01","TED novel fold AF-A0A2M9CH35-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1163745","l":"","na":1,"nb":1,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["TED%3AAF-I0EUT8-F1-model_v4_TED01","TED novel fold AF-I0EUT8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1163748","l":"","na":1,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["Pfam%3APF13205","Bacterial Ig-like domain"]]},{"id":"NCBITaxon:1164594","l":"Massilia yuzhufengensis","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["TED%3AAF-A0A1I1LD95-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I1LD95-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1173995","l":"Parvularcula dongshanensis","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["TED%3AAF-A0A840I3S3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A840I3S3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1176176","l":"Methylobacterium haplocladii","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["TED%3AAF-A0A512INB8-F1-model_v4_TED02","TED novel fold AF-A0A512INB8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1186196","l":"Natrinema salaciae","na":1,"nb":1,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["TED%3AAF-A0A1H9QMZ8-F1-model_v4_TED01","TED novel fold AF-A0A1H9QMZ8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1188229","l":"","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["TED%3AAF-A0A1J0AGF7-F1-model_v4_TED01","TED novel fold AF-A0A1J0AGF7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1198114","l":"","na":1,"nb":1,"a":[["area-designated-as-a-nature-reserve-envo-00000363.html","area designated as a nature reserve"]],"b":[["TED%3AAF-E8X149-F1-model_v4_TED01","TED highly-symmetric fold AF-E8X149-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1210091","l":"Nocardia ninae NBRC 108245","na":1,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["TED%3AAF-A0A511MS59-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A511MS59-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1210932","l":"Peteryoungia ipomoeae","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["TED%3AAF-A0A4S8P7B5-F1-model_v4_TED01","TED novel fold AF-A0A4S8P7B5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1212765","l":"","na":1,"nb":1,"a":[["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["TED%3AAF-I7CFH3-F1-model_v4_TED01","TED novel fold AF-I7CFH3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1216006","l":"Vibrio aerogenes CECT 7868","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["TED%3AAF-A0A1M5VN06-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M5VN06-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1227498","l":"Natronococcus jeotgali DSM 18795","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["TED%3AAF-L9WM09-F1-model_v4_TED01","TED novel fold AF-L9WM09-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1236689","l":"","na":1,"nb":1,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["TED%3AAF-M9SC19-F1-model_v4_TED01","TED highly-symmetric fold AF-M9SC19-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1241906","l":"-","na":1,"nb":1,"a":[["nb-4-cell-bto-0002136.html","NB-4 cell"]],"b":[["TED%3AAF-M6ZXW8-F1-model_v4_TED01","TED highly-symmetric fold AF-M6ZXW8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1245469","l":"Bradyrhizobium oligotrophicum S58","na":1,"nb":1,"a":[["bacteroid-bto-0000109.html","bacteroid"]],"b":[["TED%3AAF-M4ZLP8-F1-model_v4_TED01","TED highly-symmetric fold AF-M4ZLP8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1262550","l":"Brevibacterium jeotgali","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["TED%3AAF-A0A2H1L8Q0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H1L8Q0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1262583","l":"Tamaricihabitans halophyticus","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["TED%3AAF-A0A4R2RDI5-F1-model_v4_TED01","TED novel fold AF-A0A4R2RDI5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1263636","l":"Microbacterium kyungheense","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["TED%3AAF-A0A543F149-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A543F149-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1267768","l":"Brevirhabdus pacifica","na":1,"nb":1,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["TED%3AAF-A0A2M9DE94-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M9DE94-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1268635","l":"Legionella oakridgensis ATCC 33761 = DSM 21215","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["TED%3AAF-W0BCQ3-F1-model_v4_TED02","TED highly-symmetric fold AF-W0BCQ3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1273541","l":"Pyrodictium delaneyi","na":1,"nb":1,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["TED%3AAF-A0A211YRF7-F1-model_v4_TED01","TED novel fold AF-A0A211YRF7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1274631","l":"Bradyrhizobium icense","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["TED%3AAF-A0A533IQI7-F1-model_v4_TED02","TED novel fold AF-A0A533IQI7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1276220","l":"Spiroplasma taiwanense CT-1","na":1,"nb":1,"a":[["cardiovascular-system-bto-0000088.html","cardiovascular system"]],"b":[["TED%3AAF-S5LY17-F1-model_v4_TED02","TED novel fold AF-S5LY17-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1276221","l":"Spiroplasma diminutum CUAS-1","na":1,"nb":1,"a":[["cardiovascular-system-bto-0000088.html","cardiovascular system"]],"b":[["TED%3AAF-S5M2Q1-F1-model_v4_TED01","TED novel fold AF-S5M2Q1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1291742","l":"","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["TED%3AAF-A0A0A1GYI0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A1GYI0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1298595","l":"Veillonella rogosae JCM 15642","na":1,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["TED%3AAF-A0A2S7YXG0-F1-model_v4_TED02","TED novel fold AF-A0A2S7YXG0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1307761","l":"","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["TED%3AAF-V5WIK3-F1-model_v4_TED01","TED highly-symmetric fold AF-V5WIK3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1324350","l":"Acinetobacter equi","na":1,"nb":1,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["TED%3AAF-A0A0N9WF70-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0N9WF70-F1-model_v4_TED01"]]},{"id":"NCBITaxon:132476","l":"","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A1H5FUT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H5FUT8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1333523","l":"Salinarchaeum sp. Harcht-Bsk1","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["TED%3AAF-R4VXQ2-F1-model_v4_TED01","TED highly-symmetric fold AF-R4VXQ2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1341157","l":"Ruminococcus flavefaciens 007c","na":1,"nb":1,"a":[["fiber-bto-0000450.html","fiber"]],"b":[["TED%3AAF-W7UF30-F1-model_v4_TED01","TED novel fold AF-W7UF30-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1342794","l":"Photobacterium sanctipauli","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["TED%3AAF-A0A2T3P194-F1-model_v4_TED01","TED novel fold AF-A0A2T3P194-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1346286","l":"","na":1,"nb":1,"a":[["hindgut-bto-0000510.html","hindgut"]],"b":[["TED%3AAF-A0A1M4VXX6-F1-model_v4_TED02","TED novel fold AF-A0A1M4VXX6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1348114","l":"Pseudoalteromonas piratica","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["TED%3AAF-A0A0A7EDY8-F1-model_v4_TED01","TED novel fold AF-A0A0A7EDY8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1365176","l":"","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["TED%3AAF-A0A7C1CCT4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C1CCT4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1424653","l":"Caminibacter pacificus","na":1,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["TED%3AAF-A0A3N1YR43-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3N1YR43-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1431546","l":"Corynebacterium aquilae DSM 44791","na":1,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["TED%3AAF-A0A1L7CFU4-F1-model_v4_TED03","TED novel fold AF-A0A1L7CFU4-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1497681","l":"","na":1,"nb":1,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["TED%3AAF-A0A841Z083-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A841Z083-F1-model_v4_TED02"]]},{"id":"NCBITaxon:150","l":"Spirochaeta isovalerica","na":1,"nb":1,"a":[["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["TED%3AAF-A0A841R6V2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841R6V2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1500506","l":"Halopolyspora algeriensis","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["TED%3AAF-A0A368VEW2-F1-model_v4_TED01","TED novel fold AF-A0A368VEW2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:150053","l":"Yersinia enterocolitica subsp. palearctica","na":1,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["TED%3AAF-A0A6M1Q6Y0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6M1Q6Y0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1507806","l":"Campylobacter fetus subsp. testudinum","na":1,"nb":1,"a":[["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["TED%3AAF-A0A2S0JEW5-F1-model_v4_TED02","TED novel fold AF-A0A2S0JEW5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:151783","l":"Cupriavidus campinensis","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["TED%3AAF-A0A556UPV6-F1-model_v4_TED01","TED novel fold AF-A0A556UPV6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1524097","l":"Massilia glaciei","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["TED%3AAF-A0A2U2HFI6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U2HFI6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1526762","l":"Vibrio sp. B183","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["TED%3AAF-A0A086WSI7-F1-model_v4_TED02","TED novel fold AF-A0A086WSI7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1550","l":"Clostridium subterminale","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["Pfam%3APF12544","Lysine-2,3-aminomutase"]]},{"id":"NCBITaxon:156133","l":"Prasinoderma coloniale","na":1,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A7R9Y3T8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7R9Y3T8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1574623","l":"Lyngbya confervoides BDU141951","na":1,"nb":1,"a":[["filament-bto-0000463.html","filament"]],"b":[["TED%3AAF-A0A0C1V1F7-F1-model_v4_TED01","TED novel fold AF-A0A0C1V1F7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:157733","l":"Alkalihalobacillus macyae","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["TED%3AAF-A0A0J6FWV9-F1-model_v4_TED01","TED novel fold AF-A0A0J6FWV9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1577902","l":"Leisingera sp. ANG-M7","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["TED%3AAF-A0A0C1IJ64-F1-model_v4_TED02","TED novel fold AF-A0A0C1IJ64-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1577905","l":"Tateyamaria sp. ANG-S1","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["TED%3AAF-A0A0B4CZX6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0B4CZX6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1585","l":"Lactobacillus delbrueckii subsp. bulgaricus","na":1,"nb":1,"a":[["pig-manure-envo-00003860.html","pig manure"]],"b":[["TED%3AAF-A0A809EIY6-F1-model_v4_TED02","TED novel fold AF-A0A809EIY6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1604","l":"Lactobacillus amylovorus","na":1,"nb":1,"a":[["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["Pfam%3APF10439","Bacteriocin class II with double-glycine leader peptide"]]},{"id":"NCBITaxon:1612149","l":"Chryseobacterium limigenitum","na":1,"nb":1,"a":[["waste-material-envo-00002264.html","waste material"]],"b":[["TED%3AAF-A0A1K2ISG6-F1-model_v4_TED01","TED novel fold AF-A0A1K2ISG6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:161879","l":"Corynebacterium kroppenstedtii","na":1,"nb":1,"a":[["breast-bto-0000149.html","breast"]],"b":[["TED%3AAF-A0A2N6TDE9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N6TDE9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1639133","l":"Citrobacter portucalensis","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["TED%3AAF-A0A7I7D4I9-F1-model_v4_TED01","TED novel fold AF-A0A7I7D4I9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1648404","l":"","na":1,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["TED%3AAF-A0A0H4VAN8-F1-model_v4_TED01","TED novel fold AF-A0A0H4VAN8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1690","l":"Bifidobacterium pseudolongum subsp. globosum","na":1,"nb":1,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["TED%3AAF-A0A4Q5B3M5-F1-model_v4_TED01","TED novel fold AF-A0A4Q5B3M5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1703352","l":"","na":1,"nb":1,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["TED%3AAF-A0A0S8JVR9-F1-model_v4_TED02","TED novel fold AF-A0A0S8JVR9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1703960","l":"Rhizobium sp. N113","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["TED%3AAF-A0A192M071-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A192M071-F1-model_v4_TED01"]]},{"id":"NCBITaxon:170673","l":"Vibrio kanaloae","na":1,"nb":1,"a":[["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["TED%3AAF-A0A4U1Z3U9-F1-model_v4_TED01","TED novel fold AF-A0A4U1Z3U9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1716141","l":"Streptomyces jeddahensis","na":1,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["TED%3AAF-A0A177HQP2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A177HQP2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:171674","l":"Inquilinus limosus","na":1,"nb":1,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"]],"b":[["TED%3AAF-A0A211ZKE4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A211ZKE4-F1-model_v4_TED03"]]},{"id":"NCBITaxon:172044","l":"Sphingomonas yabuuchiae","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["TED%3AAF-A0A147IMF7-F1-model_v4_TED02","TED novel fold AF-A0A147IMF7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1727163","l":"","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["TED%3AAF-A0A142ENK3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142ENK3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:173365","l":"Methylobacter tundripaludum","na":1,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A2S6HGL6-F1-model_v4_TED02","TED novel fold AF-A0A2S6HGL6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:173959","l":"Brevibacillus invocatus","na":1,"nb":1,"a":[["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"]],"b":[["TED%3AAF-A0A3M8C5C7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M8C5C7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:174","l":"Leptospira borgpetersenii","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["Pfam%3APF01548","Transposase"]]},{"id":"NCBITaxon:1761780","l":"Butyrivibrio sp. ob235","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["TED%3AAF-A0A1H7I3V4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H7I3V4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1761884","l":"Prevotella sp. khp1","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["TED%3AAF-A0A1H0Y2B2-F1-model_v4_TED01","TED novel fold AF-A0A1H0Y2B2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1767","l":"Mycobacterium intracellulare","na":1,"nb":1,"a":[["co-culture-habitatmech-bacdive-ff945d8a69.html","Co-culture"]],"b":[["Pfam%3APF18914","Domain of unknown function (DUF5666)"]]},{"id":"NCBITaxon:177437","l":"","na":1,"nb":1,"a":[["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["TED%3AAF-C0QA36-F1-model_v4_TED03","TED novel fold AF-C0QA36-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1795630","l":"Frondihabitans sp. PAMC 28766","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["TED%3AAF-A0A126Z0C8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A126Z0C8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1797220","l":"","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["TED%3AAF-A0A1F2Z3M8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F2Z3M8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1798185","l":"Pseudobutyrivibrio sp. UC1225","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["TED%3AAF-A0A1I5GI49-F1-model_v4_TED01","TED novel fold AF-A0A1I5GI49-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1799789","l":"Paraglaciecola hydrolytica","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["TED%3AAF-A0A135ZZ80-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A135ZZ80-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1812935","l":"Enterobacter roggenkampii","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["TED%3AAF-A0A7D6U4G9-F1-model_v4_TED01","TED novel fold AF-A0A7D6U4G9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1829","l":"Rhodococcus rhodochrous","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"]]},{"id":"NCBITaxon:1843237","l":"Sphingomonas prati","na":1,"nb":1,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["TED%3AAF-A0A7W9BV99-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W9BV99-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1852","l":"Saccharomonospora viridis","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["TED%3AAF-A0A837DC99-F1-model_v4_TED01","TED novel fold AF-A0A837DC99-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1869214","l":"Rheinheimera sp.","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["TED%3AAF-A0A2D5RQK8-F1-model_v4_TED01","TED novel fold AF-A0A2D5RQK8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1870902","l":"Leifsonia sp.","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["TED%3AAF-A0A2E0SSA9-F1-model_v4_TED02","TED novel fold AF-A0A2E0SSA9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1871043","l":"Variovorax sp.","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["TED%3AAF-A0A2E9BKC8-F1-model_v4_TED02","TED novel fold AF-A0A2E9BKC8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:187303","l":"","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["TED%3AAF-J7QPR6-F1-model_v4_TED01","TED novel fold AF-J7QPR6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:187327","l":"Acidaminococcus intestini","na":1,"nb":1,"a":[["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["TED%3AAF-C0WBZ8-F1-model_v4_TED01","TED highly-symmetric fold AF-C0WBZ8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1881060","l":"Clostridium sp. USBA 49","na":1,"nb":1,"a":[["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"]],"b":[["TED%3AAF-A0A1T4XFS6-F1-model_v4_TED02","TED novel fold AF-A0A1T4XFS6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1882750","l":"Burkholderia sp. GAS332","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["TED%3AAF-A0A1N6LVR0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1N6LVR0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1882752","l":"Singulisphaera sp. GP187","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["TED%3AAF-A0A1N6KHP4-F1-model_v4_TED02","TED novel fold AF-A0A1N6KHP4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1882832","l":"Paenibacillaceae bacterium GAS479","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["TED%3AAF-A0A1H1ZWX8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H1ZWX8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1888168","l":"Curvibacter sp.","na":1,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["TED%3AAF-A0A433BGD3-F1-model_v4_TED01","TED novel fold AF-A0A433BGD3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1890675","l":"Herbaspirillum sp.","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["TED%3AAF-A0A2E7PAN6-F1-model_v4_TED02","TED novel fold AF-A0A2E7PAN6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1904","l":"Streptomyces cyaneus","na":1,"nb":1,"a":[["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["Pfam%3APF04673","Polyketide synthesis cyclase"]]},{"id":"NCBITaxon:1907575","l":"Jatrophihabitans sp. GAS493","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["TED%3AAF-A0A286EQ27-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A286EQ27-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1908","l":"Streptomyces globisporus","na":1,"nb":1,"a":[["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["PROSITE%3APS00953","Glycosyl hydrolases family 25 active site signature"]]},{"id":"NCBITaxon:191292","l":"Rhodococcus aetherivorans","na":1,"nb":1,"a":[["bcp-1-cell-bto-0002728.html","BCP-1 cell"]],"b":[["TED%3AAF-N1LZY7-F1-model_v4_TED01","TED highly-symmetric fold AF-N1LZY7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1926630","l":"","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["TED%3AAF-A0A6I4U4Z5-F1-model_v4_TED03","TED novel fold AF-A0A6I4U4Z5-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1935","l":"Streptomyces violaceoruber","na":1,"nb":1,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["Pfam%3APF03559","NDP-hexose 2,3-dehydratase"]]},{"id":"NCBITaxon:1938870","l":"","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["TED%3AAF-A0A286BLC6-F1-model_v4_TED02","TED novel fold AF-A0A286BLC6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:195913","l":"","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["TED%3AAF-A0A1I4CVX6-F1-model_v4_TED03","TED novel fold AF-A0A1I4CVX6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1967","l":"Streptomyces kanamyceticus","na":1,"nb":1,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Pfam%3APF13579","Glycosyl transferase 4-like domain"]]},{"id":"NCBITaxon:2024860","l":"Spongiibacter sp.","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["TED%3AAF-A0A2D7WH13-F1-model_v4_TED03","TED novel fold AF-A0A2D7WH13-F1-model_v4_TED03"]]},{"id":"NCBITaxon:203","l":"Campylobacter rectus","na":1,"nb":1,"a":[["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["TED%3AAF-A0A6G5QQ81-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A6G5QQ81-F1-model_v4_TED04"]]},{"id":"NCBITaxon:2030","l":"Kibdelosporangium aridum","na":1,"nb":1,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["TED%3AAF-A0A1W1ZQL0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W1ZQL0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2051","l":"Mobiluncus curtisii","na":1,"nb":1,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["TED%3AAF-A0A7Y0UGC2-F1-model_v4_TED01","TED novel fold AF-A0A7Y0UGC2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:205918","l":"Pseudomonas syringae pv. syringae B728a","na":1,"nb":1,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["Pfam%3APF15457","Type III T3SS secreted effector HopW1-1/HopPmaA"]]},{"id":"NCBITaxon:2125990","l":"Pseudodesulfovibrio hydrargyri","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["TED%3AAF-A0A1J5N6X0-F1-model_v4_TED02","TED novel fold AF-A0A1J5N6X0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:212717","l":"","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["Pfam%3APF08453","Peptidase family M9 N-terminal"]]},{"id":"NCBITaxon:2148","l":"Acholeplasma laidlawii","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["TED%3AAF-A0A553IH20-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A553IH20-F1-model_v4_TED04"]]},{"id":"NCBITaxon:2164","l":"Methanobacterium sp.","na":1,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"]],"b":[["TED%3AAF-A0A6A8RVR7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6A8RVR7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:216591","l":"Burkholderia cenocepacia J2315","na":1,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["Pfam%3APF04199","Putative cyclase"]]},{"id":"NCBITaxon:216778","l":"Stenotrophomonas rhizophila","na":1,"nb":1,"a":[["style-bto-0001313.html","style"]],"b":[["TED%3AAF-A0A023XYG6-F1-model_v4_TED02","TED novel fold AF-A0A023XYG6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:216895","l":"Vibrio vulnificus CMCP6","na":1,"nb":1,"a":[["hela-cell-bto-0000567.html","HeLa cell"]],"b":[["Pfam%3APF18416","N-acetylglucosamine binding protein domain 2"]]},{"id":"NCBITaxon:218208","l":"Desulfatibacillum aliphaticivorans","na":1,"nb":1,"a":[["watercourse-envo-00000029.html","watercourse"]],"b":[["TED%3AAF-B8FC96-F1-model_v4_TED02","TED highly-symmetric fold AF-B8FC96-F1-model_v4_TED02"]]},{"id":"NCBITaxon:223788","l":"Balnearium lithotrophicum","na":1,"nb":1,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["TED%3AAF-A0A521D8E7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A521D8E7-F1-model_v4_TED03"]]},{"id":"NCBITaxon:2242","l":"Halobacterium salinarum","na":1,"nb":1,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["Pfam%3APF07232","Putative rep protein (DUF1424)"]]},{"id":"NCBITaxon:225324","l":"Enhydrobacter aerosaccus","na":1,"nb":1,"a":[["nectar-bto-0000537.html","nectar"]],"b":[["TED%3AAF-A0A1T4TCH1-F1-model_v4_TED01","TED novel fold AF-A0A1T4TCH1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:225849","l":"","na":1,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["TED%3AAF-B8CPC1-F1-model_v4_TED01","TED novel fold AF-B8CPC1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:225991","l":"Comamonas aquatica","na":1,"nb":1,"a":[["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["TED%3AAF-A0A8B0TG78-F1-model_v4_TED02","TED novel fold AF-A0A8B0TG78-F1-model_v4_TED02"]]},{"id":"NCBITaxon:227605","l":"","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A4U8Z7R3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8Z7R3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:229919","l":"Anaerolinea thermolimosa","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["TED%3AAF-A0A3D1JEJ6-F1-model_v4_TED03","TED novel fold AF-A0A3D1JEJ6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:230089","l":"Photorhabdus thracensis","na":1,"nb":1,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["TED%3AAF-A0A0F7LMP9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F7LMP9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:231438","l":"","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["TED%3AAF-A0A4U8YKH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8YKH3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:234621","l":"Rhodococcus erythropolis PR4","na":1,"nb":1,"a":[["joint-bto-0001686.html","joint"]],"b":[["TED%3AAF-C0ZLI2-F1-model_v4_TED01","TED novel fold AF-C0ZLI2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:243160","l":"","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["PROSITE%3APS01306","Uncharacterized protein family UPF0054 signature"]]},{"id":"NCBITaxon:243265","l":"Photorhabdus laumondii subsp. laumondii TTO1","na":1,"nb":1,"a":[["carcass-bto-0001965.html","carcass"]],"b":[["Pfam%3APF07927","HicA toxin of bacterial toxin-antitoxin,"]]},{"id":"NCBITaxon:246432","l":"Staphylococcus equorum","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["TED%3AAF-A0A1B1GAW5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1B1GAW5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:250","l":"Chryseobacterium gleum","na":1,"nb":1,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["TED%3AAF-A0A448B167-F1-model_v4_TED02","TED novel fold AF-A0A448B167-F1-model_v4_TED02"]]},{"id":"NCBITaxon:252514","l":"","na":1,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["Pfam%3APF18040","beta porphyranase A C-terminal"]]},{"id":"NCBITaxon:253239","l":"","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["TED%3AAF-A0A386XVY3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A386XVY3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:257363","l":"","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Pfam%3APF12334","Rickettsia outer membrane protein B, passenger domain"]]},{"id":"NCBITaxon:259564","l":"","na":1,"nb":1,"a":[["hypolimnion-envo-00002130.html","hypolimnion"]],"b":[["TED%3AAF-Q12W09-F1-model_v4_TED02","TED novel fold AF-Q12W09-F1-model_v4_TED02"]]},{"id":"NCBITaxon:266117","l":"","na":1,"nb":1,"a":[["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["TED%3AAF-Q1AVL5-F1-model_v4_TED02","TED highly-symmetric fold AF-Q1AVL5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:267671","l":"","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["Pfam%3APF05262","Borrelia P83/100 protein"]]},{"id":"NCBITaxon:267747","l":"Cutibacterium acnes KPA171202","na":1,"nb":1,"a":[["sebaceous-gland-bto-0001980.html","sebaceous gland"]],"b":[["Pfam%3APF27542","ArfC"]]},{"id":"NCBITaxon:272831","l":"","na":1,"nb":1,"a":[["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["Pfam%3APF27460","ATP phosphoribosyltransferase subunit HisZ C-terminal domain"]]},{"id":"NCBITaxon:272951","l":"","na":1,"nb":1,"a":[["endothelial-cell-bto-0001176.html","endothelial cell"]],"b":[["Pfam%3APF22203","Surface cell antigen Sca2 helical repeat"]]},{"id":"NCBITaxon:273384","l":"Brevibacterium aurantiacum","na":1,"nb":1,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["TED%3AAF-A0A556CK32-F1-model_v4_TED02","TED novel fold AF-A0A556CK32-F1-model_v4_TED02"]]},{"id":"NCBITaxon:278992","l":"Streptomyces ambofaciens ATCC 23877","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF00553","Cellulose binding domain"]]},{"id":"NCBITaxon:28031","l":"Lysinibacillus fusiformis","na":1,"nb":1,"a":[["organic-waste-material-envo-00002873.html","organic waste material"]],"b":[["TED%3AAF-A0A1E4QZZ2-F1-model_v4_TED04","TED novel fold AF-A0A1E4QZZ2-F1-model_v4_TED04"]]},{"id":"NCBITaxon:28113","l":"","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["TED%3AAF-A0A449I749-F1-model_v4_TED01","TED novel fold AF-A0A449I749-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28181","l":"Magnetovibrio blakemorei","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["TED%3AAF-A0A1E5Q9I9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E5Q9I9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28198","l":"Aliarcobacter cryaerophilus","na":1,"nb":1,"a":[["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["TED%3AAF-A0A2S9SPY1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S9SPY1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:284579","l":"","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["TED%3AAF-A0A3R9PEH4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R9PEH4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:288681","l":"","na":1,"nb":1,"a":[["carcass-envo-00002033.html","carcass"]],"b":[["TED%3AAF-Q4V119-F1-model_v4_TED01","TED highly-symmetric fold AF-Q4V119-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28892","l":"Methanofollis liminatans DSM 4140","na":1,"nb":1,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["TED%3AAF-J0S6K4-F1-model_v4_TED02","TED novel fold AF-J0S6K4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:291645","l":"Bacteroides nordii","na":1,"nb":1,"a":[["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["TED%3AAF-A0A413VD19-F1-model_v4_TED01","TED novel fold AF-A0A413VD19-F1-model_v4_TED01"]]},{"id":"NCBITaxon:29303","l":"Streptomyces cattleya","na":1,"nb":1,"a":[["clay-envo-00002982.html","clay"]],"b":[["Pfam%3APF22636","Fluoroacetyl-CoA-specific thioesterase"]]},{"id":"NCBITaxon:29422","l":"Legionella brunensis","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["TED%3AAF-A0A0W0RZW2-F1-model_v4_TED03","TED novel fold AF-A0A0W0RZW2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:29447","l":"Xanthomonas albilineans","na":1,"nb":1,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["TED%3AAF-A0A6P1SIK7-F1-model_v4_TED02","TED novel fold AF-A0A6P1SIK7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:29554","l":"Metamycoplasma canadense","na":1,"nb":1,"a":[["inflammatory-cell-bto-0003861.html","inflammatory cell"]],"b":[["TED%3AAF-A0A077LB01-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A077LB01-F1-model_v4_TED02"]]},{"id":"NCBITaxon:29557","l":"Mycoplasmopsis gallinarum","na":1,"nb":1,"a":[["medial-geniculate-nucleus-bto-0002670.html","medial geniculate nucleus"]],"b":[["TED%3AAF-A0A168RG78-F1-model_v4_TED05","TED novel fold AF-A0A168RG78-F1-model_v4_TED05"]]},{"id":"NCBITaxon:29581","l":"","na":1,"nb":1,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["TED%3AAF-A0A853SDQ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A853SDQ0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:298","l":"Pseudomonas marginalis","na":1,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["PROSITE%3APS00330","Hemolysin-type calcium-binding region signature"]]},{"id":"NCBITaxon:299767","l":"Enterobacter ludwigii","na":1,"nb":1,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["TED%3AAF-W0BYN9-F1-model_v4_TED01","TED highly-symmetric fold AF-W0BYN9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:300","l":"","na":1,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"]],"b":[["TED%3AAF-A0A550EU84-F1-model_v4_TED01","TED novel fold AF-A0A550EU84-F1-model_v4_TED01"]]},{"id":"NCBITaxon:301154","l":"Sphingomonas oligophenolica","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["TED%3AAF-A0A502CIK8-F1-model_v4_TED02","TED novel fold AF-A0A502CIK8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:304","l":"","na":1,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"]],"b":[["Pfam%3APF09081","Glucan 1,4-alpha-maltotetraohydrolase, domain C"]]},{"id":"NCBITaxon:306537","l":"","na":1,"nb":1,"a":[["bone-marrow-bto-0000141.html","bone marrow"]],"b":[["TED%3AAF-Q4JSH9-F1-model_v4_TED02","TED novel fold AF-Q4JSH9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:315277","l":"","na":1,"nb":1,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["Pfam%3APF05745","Chlamydia 15 kDa cysteine-rich outer membrane protein (CRPA)"]]},{"id":"NCBITaxon:315750","l":"","na":1,"nb":1,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["Pfam%3APF06569","Protein of unknown function (DUF1128)"]]},{"id":"NCBITaxon:317010","l":"Enterococcus canintestini","na":1,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"]],"b":[["TED%3AAF-A0A1L8R2Z2-F1-model_v4_TED01","TED novel fold AF-A0A1L8R2Z2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:317577","l":"Deinococcus ficus","na":1,"nb":1,"a":[["waste-treatment-plant-envo-00002272.html","waste treatment plant"]],"b":[["TED%3AAF-A0A221T2Q9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A221T2Q9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:318751","l":"Westerdykella ornata","na":1,"nb":1,"a":[["desert-sand-envo-00005800.html","desert sand"]],"b":[["TED%3AAF-A0A6A6JM44-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6A6JM44-F1-model_v4_TED02"]]},{"id":"NCBITaxon:32019","l":"Campylobacter fetus subsp. fetus","na":1,"nb":1,"a":[["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["TED%3AAF-A0A0S4SB94-F1-model_v4_TED05","TED novel fold AF-A0A0S4SB94-F1-model_v4_TED05"]]},{"id":"NCBITaxon:32021","l":"Campylobacter jejuni subsp. doylei","na":1,"nb":1,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["TED%3AAF-A0A381D4M6-F1-model_v4_TED01","TED novel fold AF-A0A381D4M6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:320388","l":"","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Pfam%3APF27460","ATP phosphoribosyltransferase subunit HisZ C-terminal domain"]]},{"id":"NCBITaxon:321267","l":"","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["TED%3AAF-A0A0P1EQT4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0P1EQT4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:321985","l":"Pseudoduganella lutea","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["TED%3AAF-A0A4V0Z4E3-F1-model_v4_TED01","TED novel fold AF-A0A4V0Z4E3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:323259","l":"Methanospirillum hungatei JF-1","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["Pfam%3APF01864","CDP-archaeol synthase"]]},{"id":"NCBITaxon:326424","l":"","na":1,"nb":1,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["Pfam%3APF14403","Circularly permuted ATP-grasp type 2"]]},{"id":"NCBITaxon:335284","l":"","na":1,"nb":1,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["Pfam%3APF10414","Sirohaem synthase dimerisation region"]]},{"id":"NCBITaxon:336203","l":"","na":1,"nb":1,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["TED%3AAF-A0A4Q4J272-F1-model_v4_TED01","TED novel fold AF-A0A4Q4J272-F1-model_v4_TED01"]]},{"id":"NCBITaxon:33967","l":"Leuconostoc mesenteroides subsp. mesenteroides","na":1,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"]],"b":[["Pfam%3APF03390","2-hydroxycarboxylate transporter family"]]},{"id":"NCBITaxon:340","l":"Xanthomonas campestris pv. campestris","na":1,"nb":1,"a":[["waste-treatment-plant-envo-00002272.html","waste treatment plant"]],"b":[["Pfam%3APF22059","Glucuronosyltransferase GumK, N-terminal domain"]]},{"id":"NCBITaxon:340047","l":"","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Pfam%3APF27879","Helix-rich protein"]]},{"id":"NCBITaxon:340345","l":"Actinoalloteichus hymeniacidonis","na":1,"nb":1,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["TED%3AAF-A0A7W9UEM7-F1-model_v4_TED01","TED novel fold AF-A0A7W9UEM7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:343509","l":"","na":1,"nb":1,"a":[["needle-bto-0000917.html","needle"]],"b":[["Pfam%3APF04345","Chorismate lyase"]]},{"id":"NCBITaxon:345631","l":"Geobacter argillaceus","na":1,"nb":1,"a":[["clay-envo-00002982.html","clay"]],"b":[["TED%3AAF-A0A562VM24-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A562VM24-F1-model_v4_TED02"]]},{"id":"NCBITaxon:351607","l":"","na":1,"nb":1,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["Pfam%3APF10647","Lipoprotein LpqB beta-propeller domain"]]},{"id":"NCBITaxon:353152","l":"","na":1,"nb":1,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"]],"b":[["TED%3AAF-Q5CXF2-F1-model_v4_TED01","TED highly-symmetric fold AF-Q5CXF2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:356829","l":"Bifidobacterium tsurumiense","na":1,"nb":1,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["TED%3AAF-A0A6L5X0P9-F1-model_v4_TED01","TED novel fold AF-A0A6L5X0P9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:357244","l":"","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Pfam%3APF01745","Isopentenyl transferase"]]},{"id":"NCBITaxon:35752","l":"Actinoplanes philippinensis","na":1,"nb":1,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["TED%3AAF-A0A1I2HI82-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I2HI82-F1-model_v4_TED02"]]},{"id":"NCBITaxon:35787","l":"Limosilactobacillus pontis","na":1,"nb":1,"a":[["pig-manure-envo-00003860.html","pig manure"]],"b":[["TED%3AAF-A0A2J6NPS8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2J6NPS8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:360911","l":"","na":1,"nb":1,"a":[["joint-bto-0001686.html","joint"]],"b":[["TED%3AAF-C4L6T8-F1-model_v4_TED04","TED highly-symmetric fold AF-C4L6T8-F1-model_v4_TED04"]]},{"id":"NCBITaxon:362787","l":"Candidatus Protochlamydia amoebophila","na":1,"nb":1,"a":[["endosymbiont-habitatmech-bacdive-7d840c7ddc.html","Endosymbiont"]],"b":[["TED%3AAF-A0A0C1H7Y9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0C1H7Y9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:36746","l":"Pseudomonas cichorii","na":1,"nb":1,"a":[["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["TED%3AAF-A0A3M4VH83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M4VH83-F1-model_v4_TED01"]]},{"id":"NCBITaxon:36841","l":"Terrisporobacter glycolicus","na":1,"nb":1,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["TED%3AAF-A0A1I3PG81-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I3PG81-F1-model_v4_TED01"]]},{"id":"NCBITaxon:370554","l":"","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["Pfam%3APF04260","Protein of unknown function (DUF436)"]]},{"id":"NCBITaxon:370973","l":"Runella defluvii","na":1,"nb":1,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["TED%3AAF-A0A7W5ZNZ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W5ZNZ4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:373","l":"","na":1,"nb":1,"a":[["trunk-bto-0001493.html","trunk"]],"b":[["TED%3AAF-A0A368P0R2-F1-model_v4_TED01","TED novel fold AF-A0A368P0R2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:373672","l":"","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["TED%3AAF-A0A1N7P9B3-F1-model_v4_TED02","TED novel fold AF-A0A1N7P9B3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:37372","l":"Helicobacter bilis","na":1,"nb":1,"a":[["ht-29-cell-bto-0000182.html","HT-29 cell"]],"b":[["TED%3AAF-A0A4U8UA27-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8UA27-F1-model_v4_TED01"]]},{"id":"NCBITaxon:375177","l":"","na":1,"nb":1,"a":[["b-lymphocyte-cell-line-bto-0001522.html","B-lymphocyte cell line"]],"b":[["Pfam%3APF16747","Surface-adhesin protein E"]]},{"id":"NCBITaxon:375451","l":"","na":1,"nb":1,"a":[["inlet-envo-00000475.html","inlet"]],"b":[["TED%3AAF-Q164W9-F1-model_v4_TED02","TED highly-symmetric fold AF-Q164W9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:378543","l":"Tumebacillus permanentifrigoris","na":1,"nb":1,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["TED%3AAF-A0A316DIT3-F1-model_v4_TED01","TED novel fold AF-A0A316DIT3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:381754","l":"","na":1,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["Pfam%3APF05985","Ethanolamine ammonia-lyase light chain (EutC)"]]},{"id":"NCBITaxon:38301","l":"Corynebacterium minutissimum","na":1,"nb":1,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["TED%3AAF-A0A376D050-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A376D050-F1-model_v4_TED01"]]},{"id":"NCBITaxon:38304","l":"Corynebacterium tuberculostearicum","na":1,"nb":1,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["TED%3AAF-A0A7U0H937-F1-model_v4_TED01","TED novel fold AF-A0A7U0H937-F1-model_v4_TED01"]]},{"id":"NCBITaxon:384602","l":"Micrococcus flavus","na":1,"nb":1,"a":[["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["TED%3AAF-A0A7W7PAI2-F1-model_v4_TED01","TED novel fold AF-A0A7W7PAI2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:384765","l":"","na":1,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["Pfam%3APF04199","Putative cyclase"]]},{"id":"NCBITaxon:388396","l":"","na":1,"nb":1,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["Pfam%3APF21868","GlcNAc-binding protein A, third domain"]]},{"id":"NCBITaxon:391038","l":"","na":1,"nb":1,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["PROSITE%3APS00921","Nitrilases / cyanide hydratase active site signature"]]},{"id":"NCBITaxon:391904","l":"","na":1,"nb":1,"a":[["breast-bto-0000149.html","breast"]],"b":[["Pfam%3APF25528","Domain of unknown function (DUF7917)"]]},{"id":"NCBITaxon:392015","l":"","na":1,"nb":1,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["TED%3AAF-A0A1I7LHN3-F1-model_v4_TED02","TED novel fold AF-A0A1I7LHN3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:393595","l":"Alcanivorax borkumensis SK2","na":1,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["TED%3AAF-Q0VNH7-F1-model_v4_TED01","TED highly-symmetric fold AF-Q0VNH7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:394935","l":"Chromobacterium haemolyticum","na":1,"nb":1,"a":[["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["TED%3AAF-A0A1W0CCE1-F1-model_v4_TED01","TED novel fold AF-A0A1W0CCE1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["Pfam%3APF13282","Domain of unknown function (DUF4070)"]]},{"id":"NCBITaxon:395963","l":"","na":1,"nb":1,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["TED%3AAF-B2IFK3-F1-model_v4_TED03","TED novel fold AF-B2IFK3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:39650","l":"Cellvibrio mixtus","na":1,"nb":1,"a":[["compost-envo-00002170.html","compost"]],"b":[["TED%3AAF-A0A266QDL6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A266QDL6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:399549","l":"Metallosphaera sedula DSM 5348","na":1,"nb":1,"a":[["solfatara-envo-00000217.html","solfatara"]],"b":[["Pfam%3APF18195","GatD N-terminal domain"]]},{"id":"NCBITaxon:399579","l":"","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["TED%3AAF-A0A830FZ95-F1-model_v4_TED01","TED novel fold AF-A0A830FZ95-F1-model_v4_TED01"]]},{"id":"NCBITaxon:40041","l":"Streptococcus equi subsp. zooepidemicus","na":1,"nb":1,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["Pfam%3APF02388","FemAB family"]]},{"id":"NCBITaxon:40215","l":"Acinetobacter junii","na":1,"nb":1,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["TED%3AAF-A0A8B4RWB2-F1-model_v4_TED01","TED novel fold AF-A0A8B4RWB2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:403833","l":"","na":1,"nb":1,"a":[["oil-envo-00002985.html","oil"]],"b":[["Pfam%3APF19328","2,4-diaminopentanoate dehydrogenase C-terminal domain"]]},{"id":"NCBITaxon:405440","l":"","na":1,"nb":1,"a":[["valley-envo-00000100.html","valley"]],"b":[["Pfam%3APF04977","Septum formation initiator"]]},{"id":"NCBITaxon:411154","l":"","na":1,"nb":1,"a":[["joint-bto-0001686.html","joint"]],"b":[["Pfam%3APF14109","GldH lipoprotein"]]},{"id":"NCBITaxon:411684","l":"","na":1,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["TED%3AAF-A9D4N0-F1-model_v4_TED02","TED novel fold AF-A9D4N0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:414684","l":"","na":1,"nb":1,"a":[["cyst-bto-0000320.html","cyst"]],"b":[["Pfam%3APF27469","ATP synthase epsilon chain C-terminal domain"]]},{"id":"NCBITaxon:420953","l":"Paraburkholderia megapolitana","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["proteintraitsmech%3AELIFE109154_GrbD","GrbD-type graminine biosynthesis protein family"]]},{"id":"NCBITaxon:422289","l":"Beggiatoa sp. PS","na":1,"nb":1,"a":[["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-A7BS81-F1-model_v4_TED01","TED highly-symmetric fold AF-A7BS81-F1-model_v4_TED01"]]},{"id":"NCBITaxon:427317","l":"Saccharolobus islandicus M.14.25","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["Pfam%3APF05165","GTP cyclohydrolase III"]]},{"id":"NCBITaxon:436308","l":"","na":1,"nb":1,"a":[["aquarium-envo-00002196.html","aquarium"]],"b":[["Pfam%3APF19045","Ligase-CoA domain"]]},{"id":"NCBITaxon:436717","l":"","na":1,"nb":1,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["TED%3AAF-D8JEH7-F1-model_v4_TED03","TED novel fold AF-D8JEH7-F1-model_v4_TED03"]]},{"id":"NCBITaxon:43675","l":"Rothia mucilaginosa","na":1,"nb":1,"a":[["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["TED%3AAF-A0A291DCT6-F1-model_v4_TED03","TED novel fold AF-A0A291DCT6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:43677","l":"Promicromonospora citrea","na":1,"nb":1,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["TED%3AAF-A0A7Y2QR62-F1-model_v4_TED01","TED novel fold AF-A0A7Y2QR62-F1-model_v4_TED01"]]},{"id":"NCBITaxon:43768","l":"Corynebacterium matruchotii","na":1,"nb":1,"a":[["archeological-site-envo-00000564.html","archeological site"]],"b":[["TED%3AAF-A0A6H9XP04-F1-model_v4_TED01","TED novel fold AF-A0A6H9XP04-F1-model_v4_TED01"]]},{"id":"NCBITaxon:44008","l":"Enterococcus cecorum","na":1,"nb":1,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["TED%3AAF-A0A200I1A2-F1-model_v4_TED01","TED novel fold AF-A0A200I1A2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:446469","l":"","na":1,"nb":1,"a":[["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-D1BCE8-F1-model_v4_TED01","TED highly-symmetric fold AF-D1BCE8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:447217","l":"","na":1,"nb":1,"a":[["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-B4UAH6-F1-model_v4_TED03","TED highly-symmetric fold AF-B4UAH6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:451","l":"Legionella micdadei","na":1,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"]],"b":[["TED%3AAF-A0A098GE29-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A098GE29-F1-model_v4_TED01"]]},{"id":"NCBITaxon:45243","l":"Capnocytophaga haemolytica","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["TED%3AAF-A0A0X8JC19-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0X8JC19-F1-model_v4_TED01"]]},{"id":"NCBITaxon:453","l":"Legionella feeleii","na":1,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["TED%3AAF-A0A378IZL6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A378IZL6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:454006","l":"Epilithonimonas hungarica","na":1,"nb":1,"a":[["oil-envo-00002985.html","oil"]],"b":[["TED%3AAF-A0A1G7J6K0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1G7J6K0-F1-model_v4_TED03"]]},{"id":"NCBITaxon:455488","l":"","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["TED%3AAF-B8J8V7-F1-model_v4_TED01","TED novel fold AF-B8J8V7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:4558","l":"Sorghum bicolor","na":1,"nb":1,"a":[["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["TED%3AAF-A0A1W0W5T3-F1-model_v4_TED02","TED novel fold AF-A0A1W0W5T3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:457570","l":"","na":1,"nb":1,"a":[["wadi-envo-00000031.html","wadi"]],"b":[["TED%3AAF-B2A1S1-F1-model_v4_TED02","TED highly-symmetric fold AF-B2A1S1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:459529","l":"Sphingobacterium siyangense","na":1,"nb":1,"a":[["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["TED%3AAF-A0A420FHV4-F1-model_v4_TED01","TED novel fold AF-A0A420FHV4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:46224","l":"Heyndrickxia sporothermodurans","na":1,"nb":1,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["TED%3AAF-A0A2T6EYG9-F1-model_v4_TED03","TED novel fold AF-A0A2T6EYG9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:463","l":"Fluoribacter dumoffii","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["TED%3AAF-A0A377G6U6-F1-model_v4_TED01","TED novel fold AF-A0A377G6U6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:463301","l":"","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["TED%3AAF-A0A1I7FWW8-F1-model_v4_TED01","TED novel fold AF-A0A1I7FWW8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:469616","l":"Fusobacterium mortiferum ATCC 9817","na":1,"nb":1,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["TED%3AAF-C3WAL7-F1-model_v4_TED02","TED novel fold AF-C3WAL7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:471514","l":"","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["TED%3AAF-A0A0N8PN50-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0N8PN50-F1-model_v4_TED03"]]},{"id":"NCBITaxon:474949","l":"","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A7W7ZBP1-F1-model_v4_TED02","TED novel fold AF-A0A7W7ZBP1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:478","l":"Moraxella nonliquefaciens","na":1,"nb":1,"a":[["disease-habitatmech-bacdive-c659c7e939.html","Disease"]],"b":[["TED%3AAF-A0A1B8PJM7-F1-model_v4_TED01","TED novel fold AF-A0A1B8PJM7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:481877","l":"","na":1,"nb":1,"a":[["microsporidian-bto-0003132.html","microsporidian"]],"b":[["TED%3AAF-B7XL67-F1-model_v4_TED01","TED novel fold AF-B7XL67-F1-model_v4_TED01"]]},{"id":"NCBITaxon:485916","l":"","na":1,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"]],"b":[["TED%3AAF-C8W2Y9-F1-model_v4_TED01","TED highly-symmetric fold AF-C8W2Y9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:488447","l":"Burkholderia contaminans","na":1,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["TED%3AAF-A0A3N8RI51-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N8RI51-F1-model_v4_TED01"]]},{"id":"NCBITaxon:490899","l":"","na":1,"nb":1,"a":[["shoreline-envo-00000486.html","shoreline"]],"b":[["TED%3AAF-B8D4A7-F1-model_v4_TED01","TED novel fold AF-B8D4A7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:491207","l":"Chryseobacterium oleae","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["TED%3AAF-A0A1I5BFN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5BFN6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:491952","l":"","na":1,"nb":1,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["proteintraitsmech%3AELIFE109154_SalSyn","Metallophore-associated bifunctional salicylate synthase family"]]},{"id":"NCBITaxon:508767","l":"","na":1,"nb":1,"a":[["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["Pfam%3APF04029","2-phosphosulpholactate phosphatase"]]},{"id":"NCBITaxon:508771","l":"Toxoplasma gondii (strain ATCC 50611 / Me49)","na":1,"nb":1,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"]],"b":[["PROSITE%3APS01005","Formate and nitrite transporters signature 1"]]},{"id":"NCBITaxon:52771","l":"Actinomyces howellii","na":1,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["TED%3AAF-A0A3S4R0T4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S4R0T4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:535722","l":"","na":1,"nb":1,"a":[["mountain-pass-envo-00000084.html","mountain pass"]],"b":[["TED%3AAF-E4V3G8-F1-model_v4_TED01","TED highly-symmetric fold AF-E4V3G8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:544406","l":"","na":1,"nb":1,"a":[["duodenum-bto-0000365.html","duodenum"]],"b":[["PROSITE%3APS01292","Uncharacterized protein family UPF0036 signature"]]},{"id":"NCBITaxon:544580","l":"Actinomyces oris","na":1,"nb":1,"a":[["archeological-site-envo-00000564.html","archeological site"]],"b":[["TED%3AAF-A0A1Q8WF60-F1-model_v4_TED01","TED novel fold AF-A0A1Q8WF60-F1-model_v4_TED01"]]},{"id":"NCBITaxon:54736","l":"Salmonella bongori","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["TED%3AAF-A0A698W123-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A698W123-F1-model_v4_TED02"]]},{"id":"NCBITaxon:553480","l":"","na":1,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"]],"b":[["Pfam%3APF06804","Outer membrane protein assembly factor BamC-like C-terminal domain"]]},{"id":"NCBITaxon:554290","l":"","na":1,"nb":1,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["Pfam%3APF08254","Threonine leader peptide"]]},{"id":"NCBITaxon:558173","l":"Corynebacterium doosanense CAU 212 = DSM 45436","na":1,"nb":1,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["TED%3AAF-A0A097IJJ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A097IJJ3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:563008","l":"","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["TED%3AAF-D7NFV4-F1-model_v4_TED01","TED novel fold AF-D7NFV4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:566549","l":"Corynebacterium matruchotii ATCC 33806","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["TED%3AAF-C0E5R2-F1-model_v4_TED02","TED highly-symmetric fold AF-C0E5R2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:568106","l":"Marinobacterium lutimaris","na":1,"nb":1,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["TED%3AAF-A0A1H5Y6J0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1H5Y6J0-F1-model_v4_TED04"]]},{"id":"NCBITaxon:569860","l":"Methylovirgula ligni","na":1,"nb":1,"a":[["wood-envo-00002040.html","wood"]],"b":[["TED%3AAF-A0A3D9Z4S9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D9Z4S9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:570156","l":"Pseudoalteromonas lipolytica","na":1,"nb":1,"a":[["leaf-lamina-bto-0000719.html","leaf lamina"]],"b":[["TED%3AAF-A0A1I7CGN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I7CGN6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:573065","l":"","na":1,"nb":1,"a":[["pond-envo-00000033.html","pond"]],"b":[["TED%3AAF-E8RUW8-F1-model_v4_TED01","TED novel fold AF-E8RUW8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:573737","l":"","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["TED%3AAF-A0A0G3IC85-F1-model_v4_TED03","TED novel fold AF-A0A0G3IC85-F1-model_v4_TED03"]]},{"id":"NCBITaxon:582855","l":"Streptomyces haliclonae","na":1,"nb":1,"a":[["shoreline-envo-00000486.html","shoreline"]],"b":[["TED%3AAF-A0A7W7BYP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W7BYP7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:585054","l":"","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Pfam%3APF08364","Bacterial translation initiation factor IF-2 associated region"]]},{"id":"NCBITaxon:5866","l":"Babesia bigemina","na":1,"nb":1,"a":[["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["TED%3AAF-A0A061D3T3-F1-model_v4_TED01","TED novel fold AF-A0A061D3T3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:589924","l":"","na":1,"nb":1,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["TED%3AAF-D3S1W1-F1-model_v4_TED01","TED novel fold AF-D3S1W1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:592015","l":"Acetomicrobium hydrogeniformans ATCC BAA-1850","na":1,"nb":1,"a":[["village-biome-envo-01000246.html","village biome"]],"b":[["TED%3AAF-A0A0T5X7S6-F1-model_v4_TED02","TED novel fold AF-A0A0T5X7S6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:59203","l":"Salmonella enterica subsp. arizonae","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["TED%3AAF-A0A3S4K1T2-F1-model_v4_TED01","TED novel fold AF-A0A3S4K1T2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:604330","l":"Parafannyhessea umbonata","na":1,"nb":1,"a":[["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"]],"b":[["TED%3AAF-A0A6N7XAR1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N7XAR1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:60894","l":"Saccharopolyspora spinosa","na":1,"nb":1,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF03559","NDP-hexose 2,3-dehydratase"]]},{"id":"NCBITaxon:610130","l":"","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["TED%3AAF-D9RA58-F1-model_v4_TED03","TED highly-symmetric fold AF-D9RA58-F1-model_v4_TED03"]]},{"id":"NCBITaxon:61645","l":"Enterobacter asburiae","na":1,"nb":1,"a":[["bone-marrow-bto-0000141.html","bone marrow"]],"b":[["TED%3AAF-A0A8B3U934-F1-model_v4_TED02","TED novel fold AF-A0A8B3U934-F1-model_v4_TED02"]]},{"id":"NCBITaxon:629741","l":"Kingella oralis ATCC 51147","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["TED%3AAF-C4GEH4-F1-model_v4_TED01","TED highly-symmetric fold AF-C4GEH4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:634436","l":"Marisediminitalea aggregata","na":1,"nb":1,"a":[["mangrove-biome-envo-01000181.html","mangrove biome"]],"b":[["TED%3AAF-A0A1M5JV92-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M5JV92-F1-model_v4_TED01"]]},{"id":"NCBITaxon:634500","l":"","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["PROSITE%3APS01090","TatD deoxyribonuclease family signature 2"]]},{"id":"NCBITaxon:636","l":"Edwardsiella tarda","na":1,"nb":1,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["Pfam%3APF05791","Bacillus haemolytic enterotoxin (HBL)"]]},{"id":"NCBITaxon:638300","l":"","na":1,"nb":1,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["TED%3AAF-C8NBX0-F1-model_v4_TED02","TED novel fold AF-C8NBX0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:639283","l":"","na":1,"nb":1,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["TED%3AAF-D6ZYI9-F1-model_v4_TED01","TED highly-symmetric fold AF-D6ZYI9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:641491","l":"Pseudodesulfovibrio mercurii","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["Pfam%3APF03599","CO dehydrogenase/acetyl-CoA synthase delta subunit"]]},{"id":"NCBITaxon:645463","l":"","na":1,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["Pfam%3APF04392","ABC transporter substrate binding protein"]]},{"id":"NCBITaxon:649760","l":"","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["TED%3AAF-D1QV56-F1-model_v4_TED02","TED novel fold AF-D1QV56-F1-model_v4_TED02"]]},{"id":"NCBITaxon:65","l":"Herpetosiphon aurantiacus","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["Pfam%3APF09520","Type II restriction endonuclease, HinfI"]]},{"id":"NCBITaxon:652103","l":"","na":1,"nb":1,"a":[["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-E6VQ23-F1-model_v4_TED02","TED novel fold AF-E6VQ23-F1-model_v4_TED02"]]},{"id":"NCBITaxon:656914","l":"Desulfonispora thiosulfatigenes DSM 11270","na":1,"nb":1,"a":[["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["TED%3AAF-A0A1W1UJ66-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W1UJ66-F1-model_v4_TED01"]]},{"id":"NCBITaxon:659425","l":"","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["TED%3AAF-A0A1M6H7B8-F1-model_v4_TED02","TED novel fold AF-A0A1M6H7B8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:663917","l":"","na":1,"nb":1,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF13435","Cytochrome c554 and c-prime"]]},{"id":"NCBITaxon:679191","l":"Prevotella amnii CRIS 21A-A","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["TED%3AAF-E1GW40-F1-model_v4_TED02","TED highly-symmetric fold AF-E1GW40-F1-model_v4_TED02"]]},{"id":"NCBITaxon:679937","l":"Bacteroides coprosuis DSM 18011","na":1,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"]],"b":[["TED%3AAF-F3ZUW4-F1-model_v4_TED02","TED novel fold AF-F3ZUW4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:688269","l":"Pseudothermotoga thermarum DSM 5069","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["TED%3AAF-F7YY41-F1-model_v4_TED02","TED highly-symmetric fold AF-F7YY41-F1-model_v4_TED02"]]},{"id":"NCBITaxon:688867","l":"Ohtaekwangia koreensis","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["TED%3AAF-A0A1T5MFB7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1T5MFB7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:693661","l":"","na":1,"nb":1,"a":[["black-smoker-envo-00000218.html","black smoker"]],"b":[["TED%3AAF-F2KRD1-F1-model_v4_TED02","TED highly-symmetric fold AF-F2KRD1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:69392","l":"Stenotrophomonas sp.","na":1,"nb":1,"a":[["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["TED%3AAF-A0A6N8APF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8APF4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:694433","l":"Saprospira grandis DSM 2844","na":1,"nb":1,"a":[["carapace-bto-0001701.html","carapace"]],"b":[["TED%3AAF-J0P380-F1-model_v4_TED01","TED highly-symmetric fold AF-J0P380-F1-model_v4_TED01"]]},{"id":"NCBITaxon:69974","l":"Mesorhizobium plurifarium","na":1,"nb":1,"a":[["hair-follicle-outer-root-sheath-bto-0003969.html","hair follicle outer root sheath"]],"b":[["PROSITE%3APS01349","Nodulation protein nodA signature"]]},{"id":"NCBITaxon:702459","l":"","na":1,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["TED%3AAF-A0A0H3E8C8-F1-model_v4_TED01","TED novel fold AF-A0A0H3E8C8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:706587","l":"","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["TED%3AAF-I4CB34-F1-model_v4_TED01","TED highly-symmetric fold AF-I4CB34-F1-model_v4_TED01"]]},{"id":"NCBITaxon:722","l":"Actinobacillus seminis","na":1,"nb":1,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"]],"b":[["TED%3AAF-A0A263HFT1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A263HFT1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:7222","l":"Drosophila grimshawi","na":1,"nb":1,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"]],"b":[["TED%3AAF-B4K2M8-F1-model_v4_TED01","TED novel fold AF-B4K2M8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["TED%3AAF-A0A5C7XIK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7XIK2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:726","l":"Haemophilus haemolyticus","na":1,"nb":1,"a":[["trunk-uberon-0002100.html","trunk"]],"b":[["TED%3AAF-A0A1B8PEV3-F1-model_v4_TED01","TED novel fold AF-A0A1B8PEV3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:742013","l":"","na":1,"nb":1,"a":[["waterfall-envo-00000040.html","waterfall"]],"b":[["TED%3AAF-F6AQI2-F1-model_v4_TED01","TED highly-symmetric fold AF-F6AQI2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:74547","l":"","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Pfam%3APF11266","Long-chain fatty aldehyde decarbonylase"]]},{"id":"NCBITaxon:74969","l":"Ferroplasma acidiphilum","na":1,"nb":1,"a":[["factory-envo-01000536.html","factory"]],"b":[["TED%3AAF-A0A7K4FNL3-F1-model_v4_TED01","TED novel fold AF-A0A7K4FNL3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:755731","l":"Clostridium sp. BNL1100","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["TED%3AAF-H2JEL4-F1-model_v4_TED02","TED highly-symmetric fold AF-H2JEL4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:758","l":"Rodentibacter pneumotropicus","na":1,"nb":1,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["TED%3AAF-A0A6L9GQA8-F1-model_v4_TED01","TED novel fold AF-A0A6L9GQA8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:758847","l":"Leptospira santarosai serovar Shermani str. LT 821","na":1,"nb":1,"a":[["renal-tubule-bto-0000343.html","renal tubule"]],"b":[["TED%3AAF-A0A097ES00-F1-model_v4_TED01","TED novel fold AF-A0A097ES00-F1-model_v4_TED01"]]},{"id":"NCBITaxon:761659","l":"","na":1,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["TED%3AAF-D5H5E0-F1-model_v4_TED03","TED novel fold AF-D5H5E0-F1-model_v4_TED03"]]},{"id":"NCBITaxon:768066","l":"","na":1,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["Pfam%3APF06339","Ectoine synthase"]]},{"id":"NCBITaxon:795797","l":"","na":1,"nb":1,"a":[["food-product-foodon-00001002.html","food product"]],"b":[["TED%3AAF-D8JCM3-F1-model_v4_TED01","TED highly-symmetric fold AF-D8JCM3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:796937","l":"Peptoanaerobacter stomatis","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["TED%3AAF-G9XC71-F1-model_v4_TED01","TED novel fold AF-G9XC71-F1-model_v4_TED01"]]},{"id":"NCBITaxon:797292","l":"Sphingobacterium alimentarium","na":1,"nb":1,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["TED%3AAF-A0A4R3VZ52-F1-model_v4_TED08","TED novel fold AF-A0A4R3VZ52-F1-model_v4_TED08"]]},{"id":"NCBITaxon:79967","l":"Erwinia pyrifoliae","na":1,"nb":1,"a":[["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["Pfam%3APF09589","HrpA pilus formation protein"]]},{"id":"NCBITaxon:82380","l":"Microbacterium oxydans","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["TED%3AAF-A0A4Y4GD74-F1-model_v4_TED02","TED novel fold AF-A0A4Y4GD74-F1-model_v4_TED02"]]},{"id":"NCBITaxon:839","l":"","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["TED%3AAF-A0A1M7DCP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M7DCP8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:85336","l":"Rothia nasimurium","na":1,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"]],"b":[["proteintraitsmech%3AELIFE109154_EntC","EntC-type catechol biosynthesis isochorismate synthase family"]]},{"id":"NCBITaxon:85831","l":"Bacteroides acidifaciens","na":1,"nb":1,"a":[["colon-bto-0000269.html","colon"]],"b":[["TED%3AAF-A0A7K3MGB4-F1-model_v4_TED01","TED novel fold AF-A0A7K3MGB4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:861865","l":"","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["TED%3AAF-A0A239BGP1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A239BGP1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:863372","l":"Herbaspirillum huttiense","na":1,"nb":1,"a":[["factory-envo-01000536.html","factory"]],"b":[["TED%3AAF-A0A4P7ADR5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P7ADR5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:863522","l":"Bryocella elongata","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A1H5ZBZ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H5ZBZ9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:865937","l":"","na":1,"nb":1,"a":[["dry-valley-envo-00000128.html","dry valley"]],"b":[["Pfam%3APF27061","Bacterial gasdermin-associated protease"]]},{"id":"NCBITaxon:866499","l":"Cloacibacillus evryensis DSM 19522","na":1,"nb":1,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["TED%3AAF-A0A010YSJ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A010YSJ4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:869210","l":"","na":1,"nb":1,"a":[["seamount-envo-00000264.html","seamount"]],"b":[["TED%3AAF-F2NQ34-F1-model_v4_TED01","TED novel fold AF-F2NQ34-F1-model_v4_TED01"]]},{"id":"NCBITaxon:883","l":"","na":1,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"]],"b":[["TED%3AAF-B8DPA3-F1-model_v4_TED01","TED novel fold AF-B8DPA3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:888743","l":"Prevotella multiformis DSM 16608","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["TED%3AAF-F0F5W8-F1-model_v4_TED02","TED novel fold AF-F0F5W8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:926690","l":"","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["Pfam%3APF28161","Fusexin 1"]]},{"id":"NCBITaxon:930943","l":"","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["TED%3AAF-F0NJI0-F1-model_v4_TED01","TED novel fold AF-F0NJI0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:93222","l":"Pandoraea sputorum","na":1,"nb":1,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"]],"b":[["TED%3AAF-A0A5E5BHU5-F1-model_v4_TED02","TED novel fold AF-A0A5E5BHU5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:936138","l":"Phorcysia thermohydrogeniphila","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["TED%3AAF-A0A4V2PDB0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A4V2PDB0-F1-model_v4_TED04"]]},{"id":"NCBITaxon:9483","l":"Callithrix jacchus","na":1,"nb":1,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["Pfam%3APF21049","Cilia- and flagella-associated protein 69, ARM repeat"]]},{"id":"NCBITaxon:94868","l":"","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["TED%3AAF-A0A419SY83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A419SY83-F1-model_v4_TED01"]]},{"id":"NCBITaxon:95485","l":"Burkholderia stabilis","na":1,"nb":1,"a":[["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["TED%3AAF-A0A4V1PSL6-F1-model_v4_TED02","TED novel fold AF-A0A4V1PSL6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:980271","l":"","na":1,"nb":1,"a":[["epibiont-habitatmech-bacdive-f4eb470a03.html","Epibiont"]],"b":[["TED%3AAF-A0A7W5H7H8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7W5H7H8-F1-model_v4_TED03"]]},{"id":"NCBITaxon:993414","l":"Naumannella halotolerans","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["TED%3AAF-A0A4R7J3W9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R7J3W9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:999552","l":"Leisingera methylohalidivorans DSM 14336","na":1,"nb":1,"a":[["marine-neritic-zone-envo-00000206.html","marine neritic zone"]],"b":[["TED%3AAF-V9VZA3-F1-model_v4_TED02","TED novel fold AF-V9VZA3-F1-model_v4_TED02"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/HabitatMech--TraitMech.json b/assets/fleet/edges/HabitatMech--TraitMech.json index 24d052f..457dcd9 100644 --- a/assets/fleet/edges/HabitatMech--TraitMech.json +++ b/assets/fleet/edges/HabitatMech--TraitMech.json @@ -1 +1 @@ -{"a":"HabitatMech","b":"TraitMech","base":{"HabitatMech":"https://culturebotai.github.io/HabitatMech/pages/habitats/","TraitMech":"https://culturebotai.github.io/TraitMech/pages/traits/"},"n":124,"by":{"NCBITaxon":115,"ENVO":4,"DOI":2,"PATO":2,"CHEBI":1},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":36,"nb":62,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["bay-envo-00000032.html","bay"],["freshwater-biome-envo-00000873.html","freshwater biome"],["liquid-water-envo-00002006.html","liquid water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["ecology/biosafety_level.html","biosafety level"],["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/host_associated.html","host-associated"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/halophily_preference.html","halophily preference"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":40,"nb":15,"a":[["liquid-water-envo-00002006.html","liquid water"],["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["laboratory-facility-envo-01001406.html","laboratory facility"],["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["biofilm-bto-0002690.html","biofilm"]],"b":[["ecology/biosafety_level_2.html","biosafety level 2"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/coccus_shaped.html","coccus shaped"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":28,"nb":10,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["liquid-water-envo-00002006.html","liquid water"],["watercourse-envo-00000029.html","watercourse"],["compost-envo-00002170.html","compost"],["hospital-envo-00002173.html","hospital"],["human-construction-envo-00000070.html","human construction"]],"b":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/aerobic.html","aerobic"],["genomics/avast_system.html","AVAST system"],["morphology/motile.html","motile"],["morphology/motility.html","motility"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":10,"nb":17,"a":[["anther-bto-0000079.html","anther"],["epithelial-cell-bto-0000414.html","epithelial cell"],["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/neutrophilic.html","neutrophilic"],["environment/non_halophilic.html","non halophilic"],["metabolism/biopolymer_degradation.html","biopolymer degradation"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":11,"nb":9,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["fermentation-starter-envo-03600040.html","fermentation starter"],["fruit-bto-0000486.html","fruit"],["mammary-epithelial-cell-bto-0004300.html","mammary epithelial cell"],["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["environment/aerotolerant.html","aerotolerant"],["genomics/abie_system.html","AbiE system"],["genomics/abik_system.html","AbiK system"],["genomics/abiq_system.html","AbiQ system"],["genomics/abit_system.html","AbiT system"],["genomics/abiz_system.html","AbiZ system"]]},{"id":"NCBITaxon:1085","l":"Rhodospirillum rubrum","na":19,"nb":6,"a":[["biofilm-envo-00002034.html","biofilm"],["brackish-water-body-envo-01001321.html","brackish water body"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["liquid-water-envo-00002006.html","liquid water"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["river-envo-00000022.html","river"]],"b":[["metabolism/phototrophy.html","phototrophy"],["morphology/spiral_shaped.html","spiral shaped"],["physiology/carboxydotrophic.html","carboxydotrophic"],["physiology/photoheterotrophic.html","photoheterotrophic"],["physiology/photoorganoheterotrophic.html","photoorganoheterotrophic"],["physiology/phototrophic.html","phototrophic"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":13,"nb":6,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["neutrophil-bto-0000130.html","neutrophil"],["rectum-bto-0001158.html","rectum"],["spleen-bto-0001281.html","spleen"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["metabolism/butanediol_fermentation.html","2,3-butanediol fermentation"],["metabolism/citrate_fermentation.html","citrate fermentation"],["morphology/capsule.html","capsule"],["morphology/non_motile.html","non motile"],["other/indole_test_negative.html","indole test negative"],["other/methyl_red_test_negative.html","methyl red test negative"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":11,"nb":6,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["resting-cell-bto-0001170.html","resting cell"],["seedling-bto-0001228.html","seedling"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["ecology/free_living.html","free-living"],["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["genomics/transposable_element.html","transposable element"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"]]},{"id":"NCBITaxon:1299","l":"Deinococcus radiodurans","na":7,"nb":6,"a":[["animal-house-envo-00003040.html","animal house"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["water-scum-envo-00005794.html","water scum"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"]],"b":[["environment/ionizing_radiation_tolerant.html","ionizing radiation tolerant"],["environment/radiotolerant.html","radiotolerant"],["environment/uv_radiation_tolerant.html","UV radiation tolerant"],["environment/xerophilic.html","xerophilic"],["morphology/orange_pigmented.html","orange pigmented"],["physiology/stress_response.html","stress response"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":7,"nb":6,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["pseudostem-bto-0005992.html","pseudostem"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["ecology/animal_pathogen.html","animal pathogen"],["ecology/biosafety_level_2.html","biosafety level 2"],["genomics/genomic_island.html","genomic island"],["genomics/prophage.html","prophage"],["morphology/flagellated.html","flagellated"],["morphology/peritrichous.html","peritrichous"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":27,"nb":5,"a":[["small-river-biome-envo-00000890.html","small river biome"],["factory-envo-01000536.html","factory"],["organic-waste-material-envo-00002873.html","organic waste material"],["leaf-po-0025034.html","leaf"],["milk-uberon-0001913.html","milk"],["rhizosphere-envo-00005801.html","rhizosphere"]],"b":[["genomics/gabija_system.html","Gabija system"],["genomics/shedu_system.html","Shedu system"],["genomics/thoeris_system.html","Thoeris system"],["physiology/caseinase_activity.html","caseinase activity"],["physiology/lecithinase_activity.html","lecithinase activity"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":5,"nb":8,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"],["feces-uberon-0001988.html","feces"],["rectum-bto-0001158.html","rectum"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["environment/euryhaline.html","euryhaline"],["genomics/dartg_system.html","DarTG system"],["genomics/ddmde_system.html","DdmDE system"],["genomics/genomic_island.html","genomic island"],["genomics/lamassu_system.html","Lamassu system"],["morphology/curved_shaped.html","curved shaped"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":6,"nb":5,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"],["sludge-envo-00002044.html","sludge"],["forested-area-envo-00000111.html","forested area"],["scrubland-area-envo-00000300.html","scrubland area"],["soil-envo-00001998.html","soil"]],"b":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"],["physiology/hydrogenotrophic.html","hydrogenotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"]]},{"id":"NCBITaxon:1773","l":"Mycobacterium tuberculosis","na":5,"nb":5,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["posterior-lobe-bto-0000561.html","posterior lobe"],["sputum-bto-0001297.html","sputum"],["thorax-bto-0001368.html","thorax"],["thp-1-cell-bto-0001370.html","THP-1 cell"]],"b":[["ecology/biosafety_level_3.html","biosafety level 3"],["ecology/human_pathogen.html","human pathogen"],["physiology/acid_phosphatase_activity.html","acid phosphatase activity"],["physiology/dormancy.html","dormancy"],["physiology/pyrazinamidase_activity.html","pyrazinamidase activity"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":5,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"],["midgut-bto-0000863.html","midgut"],["paddy-field-envo-00000297.html","paddy field"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["metabolism/chitinolysis.html","chitinolysis"],["morphology/pigmentation.html","pigmentation"],["morphology/red_pigmented.html","red pigmented"],["morphology/white_pigmented.html","white pigmented"],["physiology/beta_n_acetylhexosaminidase_activity.html","beta-N-acetylhexosaminidase activity"]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":12,"nb":4,"a":[["hospital-envo-00002173.html","hospital"],["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["epithelial-cell-bto-0000414.html","epithelial cell"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["meninx-bto-0000144.html","meninx"]],"b":[["morphology/diplococcus_shaped.html","diplococcus shaped"],["morphology/non_motile.html","non motile"],["morphology/sphere_shaped.html","sphere shaped"],["physiology/natural_competence.html","natural competence"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":4,"nb":7,"a":[["reservoir-envo-00000025.html","reservoir"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/copper_tolerant.html","copper tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["environment/metal_tolerant.html","metal tolerant"]]},{"id":"ENVO:01001057","l":"","na":6,"nb":4,"a":[["peat-moss-associated-environment-habitatmech-gold-7f57b82cab.html","peat moss-associated environment"],["part-of-plant-habitatmech-madin-25325947e2.html","part of plant"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["root-or-stem-rot-environment-habitatmech-bacdive-04ddbbeabe.html","root-or-stem rot environment"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"],["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["environment/strictly_anaerobic.html","strictly anaerobic"],["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/disproportionation.html","Disproportionation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":33,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["pond-water-envo-00002228.html","pond water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["water-body-envo-00000063.html","water body"]],"b":[["environment/aerobic.html","aerobic"],["environment/obligately_aerobic.html","obligately aerobic"],["morphology/tetrad_arrangement.html","tetrad arrangement"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":18,"nb":3,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["ecology/rhizosphere_association.html","rhizosphere association"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/psychrotolerant.html","psychrotolerant"]]},{"id":"NCBITaxon:1314","l":"Streptococcus pyogenes","na":9,"nb":3,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"],["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"],["epithelial-cell-bto-0000414.html","epithelial cell"],["nasopharynx-bto-0000662.html","nasopharynx"],["skin-of-body-uberon-0002097.html","skin of body"],["throat-bto-0000828.html","throat"]],"b":[["environment/aerotolerant.html","aerotolerant"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"],["morphology/streptococcus_arrangement.html","streptococcus arrangement"]]},{"id":"NCBITaxon:210","l":"Helicobacter pylori","na":8,"nb":3,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["hospital-envo-00002173.html","hospital"],["duodenum-bto-0000365.html","duodenum"],["gastric-juice-bto-0000501.html","gastric juice"],["gastric-mucosa-bto-0001308.html","gastric mucosa"],["gastric-ulcer-bto-0002990.html","gastric ulcer"]],"b":[["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/helical_shaped.html","helical shaped"],["morphology/lophotrichous.html","lophotrichous"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":25,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-water-body-envo-00001999.html","marine water body"],["sea-water-envo-00002149.html","sea water"],["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["ecology/commensalism.html","commensalism"],["other/coagulase_negative.html","coagulase negative"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":16,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"]],"b":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"]]},{"id":"NCBITaxon:727","l":"Haemophilus influenzae","na":9,"nb":2,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["head-bto-0000282.html","head"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["genomics/restriction_modification_system.html","restriction-modification system"],["morphology/coccobacillus_shaped.html","coccobacillus shaped"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":4,"nb":2,"a":[["bioreactor-envo-00002123.html","bioreactor"],["human-construction-envo-00000070.html","human construction"],["sediment-envo-00002007.html","sediment"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["genomics/gc_mid1.html","GC mid1"],["metabolism/lignin_degradation.html","lignin degradation"]]},{"id":"NCBITaxon:2746","l":"Halomonas elongata","na":2,"nb":4,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"],["saline-water-body-envo-01001319.html","saline water body"]],"b":[["environment/euryhaline.html","euryhaline"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/moderately_halophilic.html","moderately halophilic"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":2,"nb":4,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["ecology/mutualism.html","mutualism"],["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["ecology/symbiosis.html","symbiosis"],["genomics/hna_system.html","Hna system"]]},{"id":"NCBITaxon:1108","l":"Chloroflexus aurantiacus","na":3,"nb":2,"a":[["rhizosphere-envo-00005801.html","rhizosphere"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["morphology/green_pigmented.html","green pigmented"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":3,"nb":2,"a":[["milk-uberon-0001913.html","milk"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["genomics/crispr_cas_system.html","CRISPR-Cas system"],["genomics/phage_defense_system.html","phage defense system"]]},{"id":"NCBITaxon:1525","l":"Neomoorella thermoacetica","na":2,"nb":3,"a":[["liquid-water-envo-00002006.html","liquid water"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":2,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["genomics/wadjet_system.html","Wadjet system"],["morphology/irregular_shaped.html","irregular shaped"]]},{"id":"NCBITaxon:317655","l":"Sphingopyxis alaskensis RB2256","na":3,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["environmental-material-envo-00010483.html","environmental material"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":2,"nb":3,"a":[["hospital-envo-00002173.html","hospital"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["environment/anaerobic.html","anaerobic"],["environment/strictly_anaerobic.html","strictly anaerobic"],["metabolism/fumarate_respiration.html","fumarate respiration"]]},{"id":"NCBITaxon:292415","l":"Thiobacillus denitrificans ATCC 25259","na":2,"nb":2,"a":[["large-river-biome-envo-00000887.html","large river biome"],["river-bed-envo-00000384.html","river bed"]],"b":[["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/chemoautotrophic.html","chemoautotrophic"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":19,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["bone-element-uberon-0001474.html","bone element"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["metabolism/starch_degradation.html","starch degradation"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":17,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["hospital-envo-00002173.html","hospital"],["egg-food-product-foodon-00001274.html","egg food product"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["other/catalase_negative.html","catalase negative"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":14,"nb":1,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["compost-envo-00002170.html","compost"],["organic-waste-material-envo-00002873.html","organic waste material"],["larva-bto-0000707.html","larva"],["rhizosphere-envo-00005801.html","rhizosphere"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["physiology/lipase_activity.html","lipase activity"]]},{"id":"NCBITaxon:173","l":"Leptospira interrogans","na":14,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["small-river-biome-envo-00000890.html","small river biome"],["surface-water-envo-00002042.html","surface water"]],"b":[["morphology/axially_filamented.html","axially filamented"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":14,"nb":1,"a":[["watercourse-envo-00000029.html","watercourse"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["leaf-po-0025034.html","leaf"]],"b":[["morphology/gliding.html","gliding"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":10,"nb":1,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"]],"b":[["environment/microaerophilic.html","microaerophilic"]]},{"id":"NCBITaxon:1639","l":"Listeria monocytogenes","na":9,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["brain-bto-0000142.html","brain"],["central-nervous-system-bto-0000227.html","central nervous system"],["fruit-bto-0000486.html","fruit"],["placenta-bto-0001078.html","placenta"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["environment/psychrotolerant.html","psychrotolerant"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":8,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"],["bioreactor-envo-00002123.html","bioreactor"],["river-envo-00000022.html","river"],["freshwater-environment-envo-01000306.html","freshwater environment"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["physiology/photoheterotrophic.html","photoheterotrophic"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":8,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"],["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["secretion-bto-0002979.html","secretion"],["stomach-bto-0001307.html","stomach"]],"b":[["physiology/gelatinase_activity.html","gelatinase activity"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":8,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["ecology/plant_pathogen.html","plant pathogen"]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":8,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"]],"b":[["morphology/yellow_pigmented.html","yellow pigmented"]]},{"id":"NCBITaxon:1053","l":"Halorhodospira halophila","na":7,"nb":1,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["marine-environment-envo-01000320.html","marine environment"],["organic-feature-envo-01000159.html","organic feature"],["organic-material-envo-01000155.html","organic material"],["sediment-envo-00002007.html","sediment"]],"b":[["environment/haloalkaliphilic.html","haloalkaliphilic"]]},{"id":"NCBITaxon:1267","l":"Sarcina ventriculi","na":7,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["morphology/sarcina_arrangement.html","sarcina arrangement"]]},{"id":"NCBITaxon:1488","l":"Clostridium acetobutylicum","na":1,"nb":7,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["environment/anaerobic.html","anaerobic"],["environment/obligately_anaerobic.html","obligately anaerobic"],["metabolism/fermentation.html","Fermentation"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"],["morphology/gram_variable.html","gram variable"],["morphology/spindle_shaped.html","spindle shaped"]]},{"id":"NCBITaxon:1830","l":"Rhodococcus ruber","na":6,"nb":1,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["morphology/orange_pigmented.html","orange pigmented"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":6,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/oxidase_activity.html","oxidase activity"]]},{"id":"NCBITaxon:266264","l":"Cupriavidus metallidurans CH34","na":1,"nb":6,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/copper_tolerant.html","copper tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["environment/zinc_tolerant.html","zinc tolerant"]]},{"id":"PATO:0001430","l":"","na":1,"nb":6,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["environment/alkalotolerant.html","alkalotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"],["environment/obligately_alkaphilic.html","obligately alkaliphilic"],["environment/ph_growth_preference.html","pH growth preference"],["environment/ph_optimum_high.html","pH optimum high"]]},{"id":"NCBITaxon:129958","l":"Carboxydothermus hydrogenoformans","na":5,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["stream-envo-00000023.html","stream"],["temperate-envo-01000206.html","temperate"],["seep-envo-01000262.html","seep"]],"b":[["physiology/carboxydotrophic.html","carboxydotrophic"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":1,"nb":5,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["metabolism/dimethyl_sulfoxide_respiration.html","dimethyl sulfoxide respiration"],["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/electron_transfer.html","Electron transfer"]]},{"id":"NCBITaxon:224911","l":"Bradyrhizobium diazoefficiens USDA 110","na":5,"nb":1,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["microbial-mat-material-envo-01000157.html","microbial mat material"],["agricultural-soil-envo-00002259.html","agricultural soil"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["morphology/subpolar_flagellation.html","subpolar flagellation"]]},{"id":"NCBITaxon:228410","l":"Nitrosomonas europaea ATCC 19718","na":1,"nb":5,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"],["physiology/lithotrophic.html","lithotrophic"]]},{"id":"NCBITaxon:747","l":"Pasteurella multocida","na":5,"nb":1,"a":[["bronchus-uberon-0002185.html","bronchus"],["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["finger-bto-0004669.html","finger"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["ecology/animal_pathogen.html","animal pathogen"]]},{"id":"PATO:0001456","l":"","na":1,"nb":5,"a":[["anaerobic-wastewater-treatment-reactor-habitatmech-gold-bb0eb00ccb.html","anaerobic wastewater treatment reactor"]],"b":[["environment/anaerobic.html","anaerobic"],["environment/strictly_anaerobic.html","strictly anaerobic"],["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/disproportionation.html","Disproportionation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"]]},{"id":"NCBITaxon:1111735","l":"Sedimenticola selenatireducens DSM 17993","na":4,"nb":1,"a":[["brackish-water-body-envo-01001321.html","brackish water body"],["estuarine-biome-envo-01000020.html","estuarine biome"],["estuary-envo-00000045.html","estuary"],["watercourse-envo-00000029.html","watercourse"]],"b":[["metabolism/selenate_respiration.html","selenate respiration"]]},{"id":"NCBITaxon:1156985","l":"Epibacterium ulvae","na":4,"nb":1,"a":[["bar-envo-00000167.html","bar"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"],["peninsula-envo-00000305.html","peninsula"]],"b":[["other/epibiont_phenotype.html","epibiont phenotype"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":4,"nb":1,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["morphology/s_layer.html","S-layer"]]},{"id":"NCBITaxon:237727","l":"Erythrobacter sp. NAP1","na":4,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"],["pond-water-envo-00002228.html","pond water"],["small-river-biome-envo-00000890.html","small river biome"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["physiology/aerobic_anoxygenic_phototrophy.html","aerobic anoxygenic phototrophy"]]},{"id":"NCBITaxon:651","l":"Aeromonas media","na":4,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"],["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["morphology/brown_pigmented.html","brown pigmented"]]},{"id":"CHEBI:16183","l":"methane","na":1,"nb":3,"a":[["methane-bioremediation-material-habitatmech-gold-d510166905.html","methane bioremediation material"]],"b":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/methanogenesis.html","Methanogenesis"],["physiology/methanotrophic.html","methanotrophic"]]},{"id":"NCBITaxon:1519","l":"Clostridium tyrobutyricum","na":3,"nb":1,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["peatland-envo-00000044.html","peatland"]],"b":[["metabolism/butyric_acid_fermentation.html","butyric acid fermentation"]]},{"id":"NCBITaxon:1570","l":"Halobacillus halophilus","na":3,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["environment/halotolerant.html","halotolerant"]]},{"id":"NCBITaxon:1717","l":"Corynebacterium diphtheriae","na":3,"nb":1,"a":[["foot-bto-0000476.html","foot"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["morphology/dumbbell_shaped.html","dumbbell shaped"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa PAO1","na":1,"nb":3,"a":[["style-bto-0001313.html","style"]],"b":[["ecology/biofilm_formation.html","biofilm formation"],["morphology/twitching_motility.html","twitching motility"],["morphology/type_iv_pilus.html","type IV pilus"]]},{"id":"NCBITaxon:2242","l":"Halobacterium salinarum","na":1,"nb":3,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["environment/extremely_halophilic.html","extremely halophilic"],["environment/halophilic.html","halophilic"],["morphology/intracellular_inclusion.html","intracellular inclusion"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK1622","na":3,"nb":1,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["morphology/gliding.html","gliding"]]},{"id":"NCBITaxon:29405","l":"Microlunatus phosphovorus","na":3,"nb":1,"a":[["water-scum-envo-00005794.html","water scum"],["orchard-envo-00000115.html","orchard"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["morphology/polyphosphate_granule.html","polyphosphate granule"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":3,"nb":1,"a":[["bile-bto-0000121.html","bile"],["rectum-bto-0001158.html","rectum"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["ecology/opportunistic_pathogen.html","opportunistic pathogen"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":3,"nb":1,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["morphology/polar_flagellation.html","polar flagellation"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":1,"nb":3,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["ecology/mutualism.html","mutualism"],["physiology/bioluminescence.html","bioluminescence"],["physiology/quorum_sensing.html","quorum sensing"]]},{"id":"NCBITaxon:94122","l":"Shewanella sp. ANA-3","na":3,"nb":1,"a":[["alkaline-water-envo-01000357.html","alkaline water"],["brackish-estuary-envo-00002137.html","brackish estuary"],["underground-water-envo-00005792.html","underground water"]],"b":[["metabolism/arsenate_respiration.html","arsenate respiration"]]},{"id":"DOI:10.1186/s40168-024-01817-w","l":"","na":1,"nb":2,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["environment/euryhaline.html","euryhaline"],["environment/stenohaline.html","stenohaline"]]},{"id":"ENVO:01000687","l":"","na":1,"nb":2,"a":[["sea-coast-envo-00000303.html","sea coast"]],"b":[["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"]]},{"id":"ENVO:01001040","l":"saline environment","na":1,"nb":2,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"]]},{"id":"NCBITaxon:1097","l":"Chlorobaculum tepidum","na":1,"nb":2,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"],["morphology/green_pigmented.html","green pigmented"]]},{"id":"NCBITaxon:1182451","l":"Aureivirga marina","na":1,"nb":2,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["environment/nacl_delta_mid1.html","NaCl delta mid1"],["environment/nacl_range_mid2.html","NaCl range mid2"]]},{"id":"NCBITaxon:1385984","l":"Exiguobacterium chiriqhucha","na":2,"nb":1,"a":[["water-ice-envo-01000277.html","water ice"],["peak-envo-00000480.html","peak"]],"b":[["environment/temperature_delta_high.html","temperature delta high"]]},{"id":"NCBITaxon:139","l":"Borreliella burgdorferi","na":2,"nb":1,"a":[["joint-bto-0001686.html","joint"],["needle-bto-0000917.html","needle"]],"b":[["genomics/plasmid_carriage.html","plasmid carriage"]]},{"id":"NCBITaxon:165695","l":"Sphingobium","na":2,"nb":1,"a":[["juvenile-bto-0002168.html","juvenile"],["leaf-bto-0000713.html","leaf"]],"b":[["metabolism/lignin_degradation.html","lignin degradation"]]},{"id":"NCBITaxon:167879","l":"Colwellia psychrerythraea 34H","na":2,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["soil-envo-00001998.html","soil"]],"b":[["environment/psychrophilic.html","psychrophilic"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":2,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["morphology/branched_shaped.html","branched shaped"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii (strain ATCC 43067 / DSM 2661 / JAL-1 / JCM 10045 / NBRC 100440)","na":2,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["metabolism/methanogenesis.html","Methanogenesis"]]},{"id":"NCBITaxon:243273","l":"Mycoplasmoides genitalium (strain ATCC 33530 / DSM 19775 / NCTC 10195 / G37)","na":1,"nb":2,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["genomics/gc_high.html","GC high"],["genomics/genome_size.html","genome size"]]},{"id":"NCBITaxon:28264","l":"Arcanobacterium haemolyticum","na":2,"nb":1,"a":[["foot-bto-0000476.html","foot"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"]],"b":[["physiology/alpha_mannosidase_activity.html","alpha-mannosidase activity"]]},{"id":"NCBITaxon:293091","l":"Haloquadratum walsbyi","na":2,"nb":1,"a":[["small-river-biome-envo-00000890.html","small river biome"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["morphology/square_shaped.html","square shaped"]]},{"id":"NCBITaxon:313590","l":"Dokdonia sp. MED134","na":2,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["metabolism/proteorhodopsin_phototrophy.html","proteorhodopsin phototrophy"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans Pd1222","na":2,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["physiology/mixotrophic.html","mixotrophic"]]},{"id":"NCBITaxon:334543","l":"Psychrobacter arcticus","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["environment/delta_phenotype_with_numerical_limits.html","delta phenotype with numerical limits"],["environment/facultative_psychrophilic.html","facultative psychrophilic"]]},{"id":"NCBITaxon:521674","l":"Planctopirus limnophila DSM 3776","na":2,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["morphology/flask_shaped.html","flask shaped"]]},{"id":"NCBITaxon:542","l":"Zymomonas mobilis","na":1,"nb":2,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["physiology/nad_dependent_alcohol_dehydrogenase_activity.html","NAD-dependent alcohol dehydrogenase activity"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":2,"nb":1,"a":[["watercourse-envo-00000029.html","watercourse"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["morphology/lateral_flagellation.html","lateral flagellation"]]},{"id":"NCBITaxon:74109","l":"Photobacterium profundum","na":1,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["environment/piezophilic.html","piezophilic"],["environment/piezotolerant.html","piezotolerant"]]},{"id":"NCBITaxon:86665","l":"Halalkalibacterium halodurans","na":1,"nb":2,"a":[["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["environment/alkalotolerant.html","alkalotolerant"],["environment/alkaphilic.html","alkaliphilic"]]},{"id":"DOI:10.1038/nrmicro.2016.94","l":"","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["ecology/biofilm_formation.html","biofilm formation"]]},{"id":"ENVO:01000309","l":"cold environment","na":1,"nb":1,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["environment/temperature_optimum_very_low.html","temperature optimum very low"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["morphology/heterocyst.html","heterocyst"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["physiology/urease_activity.html","urease activity"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":1,"a":[["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["metabolism/cellulolysis.html","cellulolysis"]]},{"id":"NCBITaxon:1579","l":"Lactobacillus acidophilus","na":1,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"]],"b":[["environment/acidotolerant.html","acidotolerant"]]},{"id":"NCBITaxon:1599","l":"Latilactobacillus sakei","na":1,"nb":1,"a":[["research-facility-envo-00000469.html","research facility"]],"b":[["physiology/arginine_dihydrolase_activity.html","arginine dihydrolase activity"]]},{"id":"NCBITaxon:1744","l":"Propionibacterium freudenreichii","na":1,"nb":1,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":1,"nb":1,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["physiology/alkaline_phosphatase_activity.html","alkaline phosphatase activity"]]},{"id":"NCBITaxon:192222","l":"Campylobacter jejuni subsp. jejuni serotype O:2 (strain ATCC 700819 / NCTC 11168)","na":1,"nb":1,"a":[["flagellate-bto-0000464.html","flagellate"]],"b":[["environment/capnophilic.html","capnophilic"]]},{"id":"NCBITaxon:2283","l":"Acidianus ambivalens","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["metabolism/disproportionation.html","Disproportionation"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima (strain ATCC 43589 / DSM 3109 / JCM 10099 / NBRC 100826 / MSB8)","na":1,"nb":1,"a":[["feather-bto-0000447.html","feather"]],"b":[["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"]]},{"id":"NCBITaxon:272630","l":"Methylorubrum extorquens (strain ATCC 14718 / DSM 1338 / JCM 2805 / NCIMB 9133 / AM1)","na":1,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["physiology/methylotrophic.html","methylotrophic"]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["physiology/alpha_fucosidase_activity.html","alpha-fucosidase activity"]]},{"id":"NCBITaxon:33952","l":"Acetobacterium woodii","na":1,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["metabolism/homoacetogenesis.html","Homoacetogenesis"]]},{"id":"NCBITaxon:357794","l":"Psychromonas ingrahamii","na":1,"nb":1,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["environment/temperature_range_very_low.html","temperature range very low"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["metabolism/photoferrotrophy.html","photoferrotrophy"]]},{"id":"NCBITaxon:399549","l":"Metallosphaera sedula DSM 5348","na":1,"nb":1,"a":[["solfatara-envo-00000217.html","solfatara"]],"b":[["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":1,"nb":1,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["other/voges_proskauer_test_positive.html","Voges-Proskauer test positive"]]},{"id":"NCBITaxon:584","l":"Proteus mirabilis","na":1,"nb":1,"a":[["salivary-gland-bto-0001203.html","salivary gland"]],"b":[["morphology/swarming_motility.html","swarming motility"]]},{"id":"NCBITaxon:71421","l":"Haemophilus influenzae (strain ATCC 51907 / DSM 11121 / KW20 / Rd)","na":1,"nb":1,"a":[["respiratory-mucosa-bto-0000973.html","respiratory mucosa"]],"b":[["genomics/restriction_modification_system.html","restriction-modification system"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":1,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["physiology/dormancy.html","dormancy"]]},{"id":"NCBITaxon:844","l":"Wolinella succinogenes","na":1,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":1,"nb":1,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":1,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["morphology/motility.html","motility"]]},{"id":"NCBITaxon:99807","l":"Corynebacterium auriscanis","na":1,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"]],"b":[["physiology/pyrrolidonyl_arylamidase_activity.html","pyrrolidonyl arylamidase activity"]]}]} \ No newline at end of file +{"a":"HabitatMech","b":"TraitMech","base":{"HabitatMech":"https://culturebotai.github.io/HabitatMech/pages/habitats/","TraitMech":"https://culturebotai.github.io/TraitMech/pages/traits/"},"n":122,"by":{"NCBITaxon":115,"ENVO":4,"PATO":2,"CHEBI":1},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":36,"nb":65,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["bay-envo-00000032.html","bay"],["freshwater-biome-envo-00000873.html","freshwater biome"],["liquid-water-envo-00002006.html","liquid water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["ecology/biosafety_level.html","biosafety level"],["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/host_associated.html","host-associated"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/halophily_preference.html","halophily preference"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":40,"nb":15,"a":[["liquid-water-envo-00002006.html","liquid water"],["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["laboratory-facility-envo-01001406.html","laboratory facility"],["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["biofilm-bto-0002690.html","biofilm"]],"b":[["ecology/biosafety_level_2.html","biosafety level 2"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/coccus_shaped.html","coccus shaped"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":28,"nb":11,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["liquid-water-envo-00002006.html","liquid water"],["watercourse-envo-00000029.html","watercourse"],["compost-envo-00002170.html","compost"],["hospital-envo-00002173.html","hospital"],["human-construction-envo-00000070.html","human construction"]],"b":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/aerobic.html","aerobic"],["genomics/avast_system.html","AVAST system"],["genomics/jukab_system.html","JukAB system"],["morphology/motile.html","motile"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":11,"nb":19,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["fermentation-starter-envo-03600040.html","fermentation starter"],["fruit-bto-0000486.html","fruit"],["mammary-epithelial-cell-bto-0004300.html","mammary epithelial cell"],["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["environment/aerotolerant.html","aerotolerant"],["genomics/abia_system.html","AbiA system"],["genomics/abib_system.html","AbiB system"],["genomics/abic_system.html","AbiC system"],["genomics/abid_system.html","AbiD system"],["genomics/abie_system.html","AbiE system"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":10,"nb":18,"a":[["anther-bto-0000079.html","anther"],["epithelial-cell-bto-0000414.html","epithelial cell"],["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/neutrophilic.html","neutrophilic"],["environment/non_halophilic.html","non halophilic"],["genomics/spbk_system.html","SpbK system"]]},{"id":"NCBITaxon:1085","l":"Rhodospirillum rubrum","na":19,"nb":6,"a":[["biofilm-envo-00002034.html","biofilm"],["brackish-water-body-envo-01001321.html","brackish water body"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["liquid-water-envo-00002006.html","liquid water"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["river-envo-00000022.html","river"]],"b":[["metabolism/phototrophy.html","phototrophy"],["morphology/spiral_shaped.html","spiral shaped"],["physiology/carboxydotrophic.html","carboxydotrophic"],["physiology/photoheterotrophic.html","photoheterotrophic"],["physiology/photoorganoheterotrophic.html","photoorganoheterotrophic"],["physiology/phototrophic.html","phototrophic"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":13,"nb":6,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["neutrophil-bto-0000130.html","neutrophil"],["rectum-bto-0001158.html","rectum"],["spleen-bto-0001281.html","spleen"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["metabolism/butanediol_fermentation.html","2,3-butanediol fermentation"],["metabolism/citrate_fermentation.html","citrate fermentation"],["morphology/capsule.html","capsule"],["morphology/non_motile.html","non motile"],["other/indole_test_negative.html","indole test negative"],["other/methyl_red_test_negative.html","methyl red test negative"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":11,"nb":6,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["resting-cell-bto-0001170.html","resting cell"],["seedling-bto-0001228.html","seedling"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["ecology/free_living.html","free-living"],["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["genomics/transposable_element.html","transposable element"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"]]},{"id":"NCBITaxon:1299","l":"Deinococcus radiodurans","na":7,"nb":6,"a":[["animal-house-envo-00003040.html","animal house"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["water-scum-envo-00005794.html","water scum"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"]],"b":[["environment/ionizing_radiation_tolerant.html","ionizing radiation tolerant"],["environment/radiotolerant.html","radiotolerant"],["environment/uv_radiation_tolerant.html","UV radiation tolerant"],["environment/xerophilic.html","xerophilic"],["morphology/orange_pigmented.html","orange pigmented"],["physiology/stress_response.html","stress response"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":7,"nb":6,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["pseudostem-bto-0005992.html","pseudostem"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["ecology/animal_pathogen.html","animal pathogen"],["ecology/biosafety_level_2.html","biosafety level 2"],["genomics/genomic_island.html","genomic island"],["genomics/prophage.html","prophage"],["morphology/flagellated.html","flagellated"],["morphology/peritrichous.html","peritrichous"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":27,"nb":5,"a":[["small-river-biome-envo-00000890.html","small river biome"],["factory-envo-01000536.html","factory"],["organic-waste-material-envo-00002873.html","organic waste material"],["leaf-po-0025034.html","leaf"],["milk-uberon-0001913.html","milk"],["rhizosphere-envo-00005801.html","rhizosphere"]],"b":[["genomics/gabija_system.html","Gabija system"],["genomics/shedu_system.html","Shedu system"],["genomics/thoeris_system.html","Thoeris system"],["physiology/caseinase_activity.html","caseinase activity"],["physiology/lecithinase_activity.html","lecithinase activity"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":5,"nb":9,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"],["feces-uberon-0001988.html","feces"],["rectum-bto-0001158.html","rectum"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["environment/euryhaline.html","euryhaline"],["genomics/dartg_system.html","DarTG system"],["genomics/ddmde_system.html","DdmDE system"],["genomics/genomic_island.html","genomic island"],["genomics/lamassu_system.html","Lamassu system"],["genomics/nixi_system.html","NixI system"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":6,"nb":5,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"],["sludge-envo-00002044.html","sludge"],["forested-area-envo-00000111.html","forested area"],["scrubland-area-envo-00000300.html","scrubland area"],["soil-envo-00001998.html","soil"]],"b":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"],["physiology/hydrogenotrophic.html","hydrogenotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"]]},{"id":"NCBITaxon:1773","l":"Mycobacterium tuberculosis","na":5,"nb":5,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["posterior-lobe-bto-0000561.html","posterior lobe"],["sputum-bto-0001297.html","sputum"],["thorax-bto-0001368.html","thorax"],["thp-1-cell-bto-0001370.html","THP-1 cell"]],"b":[["ecology/biosafety_level_3.html","biosafety level 3"],["ecology/human_pathogen.html","human pathogen"],["physiology/acid_phosphatase_activity.html","acid phosphatase activity"],["physiology/dormancy.html","dormancy"],["physiology/pyrazinamidase_activity.html","pyrazinamidase activity"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":5,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"],["midgut-bto-0000863.html","midgut"],["paddy-field-envo-00000297.html","paddy field"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["metabolism/chitinolysis.html","chitinolysis"],["morphology/pigmentation.html","pigmentation"],["morphology/red_pigmented.html","red pigmented"],["morphology/white_pigmented.html","white pigmented"],["physiology/beta_n_acetylhexosaminidase_activity.html","beta-N-acetylhexosaminidase activity"]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":12,"nb":4,"a":[["hospital-envo-00002173.html","hospital"],["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["epithelial-cell-bto-0000414.html","epithelial cell"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["meninx-bto-0000144.html","meninx"]],"b":[["morphology/diplococcus_shaped.html","diplococcus shaped"],["morphology/non_motile.html","non motile"],["morphology/sphere_shaped.html","sphere shaped"],["physiology/natural_competence.html","natural competence"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":4,"nb":7,"a":[["reservoir-envo-00000025.html","reservoir"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/copper_tolerant.html","copper tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["environment/metal_tolerant.html","metal tolerant"]]},{"id":"ENVO:01001057","l":"","na":6,"nb":4,"a":[["peat-moss-associated-environment-habitatmech-gold-7f57b82cab.html","peat moss-associated environment"],["part-of-plant-habitatmech-madin-25325947e2.html","part of plant"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["root-or-stem-rot-environment-habitatmech-bacdive-04ddbbeabe.html","root-or-stem rot environment"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"],["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["environment/strictly_anaerobic.html","strictly anaerobic"],["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/disproportionation.html","Disproportionation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":33,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["pond-water-envo-00002228.html","pond water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["water-body-envo-00000063.html","water body"]],"b":[["environment/aerobic.html","aerobic"],["environment/obligately_aerobic.html","obligately aerobic"],["morphology/tetrad_arrangement.html","tetrad arrangement"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":25,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-water-body-envo-00001999.html","marine water body"],["sea-water-envo-00002149.html","sea water"],["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["ecology/commensalism.html","commensalism"],["genomics/nhi_system.html","Nhi system"],["other/coagulase_negative.html","coagulase negative"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":18,"nb":3,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["ecology/rhizosphere_association.html","rhizosphere association"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/psychrotolerant.html","psychrotolerant"]]},{"id":"NCBITaxon:1314","l":"Streptococcus pyogenes","na":9,"nb":3,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"],["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"],["epithelial-cell-bto-0000414.html","epithelial cell"],["nasopharynx-bto-0000662.html","nasopharynx"],["skin-of-body-uberon-0002097.html","skin of body"],["throat-bto-0000828.html","throat"]],"b":[["environment/aerotolerant.html","aerotolerant"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"],["morphology/streptococcus_arrangement.html","streptococcus arrangement"]]},{"id":"NCBITaxon:210","l":"Helicobacter pylori","na":8,"nb":3,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["hospital-envo-00002173.html","hospital"],["duodenum-bto-0000365.html","duodenum"],["gastric-juice-bto-0000501.html","gastric juice"],["gastric-mucosa-bto-0001308.html","gastric mucosa"],["gastric-ulcer-bto-0002990.html","gastric ulcer"]],"b":[["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/helical_shaped.html","helical shaped"],["morphology/lophotrichous.html","lophotrichous"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":16,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"]],"b":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"]]},{"id":"NCBITaxon:727","l":"Haemophilus influenzae","na":9,"nb":2,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["head-bto-0000282.html","head"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["genomics/restriction_modification_system.html","restriction-modification system"],["morphology/coccobacillus_shaped.html","coccobacillus shaped"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":8,"nb":2,"a":[["reservoir-envo-00000025.html","reservoir"],["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["secretion-bto-0002979.html","secretion"],["stomach-bto-0001307.html","stomach"]],"b":[["genomics/abialpha_system.html","AbiAlpha system"],["physiology/gelatinase_activity.html","gelatinase activity"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":4,"nb":2,"a":[["bioreactor-envo-00002123.html","bioreactor"],["human-construction-envo-00000070.html","human construction"],["sediment-envo-00002007.html","sediment"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["genomics/gc_mid1.html","GC mid1"],["metabolism/lignin_degradation.html","lignin degradation"]]},{"id":"NCBITaxon:2746","l":"Halomonas elongata","na":2,"nb":4,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"],["saline-water-body-envo-01001319.html","saline water body"]],"b":[["environment/euryhaline.html","euryhaline"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/moderately_halophilic.html","moderately halophilic"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":2,"nb":4,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["ecology/mutualism.html","mutualism"],["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["ecology/symbiosis.html","symbiosis"],["genomics/hna_system.html","Hna system"]]},{"id":"NCBITaxon:1108","l":"Chloroflexus aurantiacus","na":3,"nb":2,"a":[["rhizosphere-envo-00005801.html","rhizosphere"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["morphology/green_pigmented.html","green pigmented"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":3,"nb":2,"a":[["milk-uberon-0001913.html","milk"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["genomics/crispr_cas_system.html","CRISPR-Cas system"],["genomics/phage_defense_system.html","phage defense system"]]},{"id":"NCBITaxon:1525","l":"Neomoorella thermoacetica","na":2,"nb":3,"a":[["liquid-water-envo-00002006.html","liquid water"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":2,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["genomics/wadjet_system.html","Wadjet system"],["morphology/irregular_shaped.html","irregular shaped"]]},{"id":"NCBITaxon:317655","l":"Sphingopyxis alaskensis RB2256","na":3,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["environmental-material-envo-00010483.html","environmental material"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":2,"nb":3,"a":[["hospital-envo-00002173.html","hospital"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["environment/anaerobic.html","anaerobic"],["environment/strictly_anaerobic.html","strictly anaerobic"],["metabolism/fumarate_respiration.html","fumarate respiration"]]},{"id":"NCBITaxon:292415","l":"Thiobacillus denitrificans ATCC 25259","na":2,"nb":2,"a":[["large-river-biome-envo-00000887.html","large river biome"],["river-bed-envo-00000384.html","river bed"]],"b":[["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/chemoautotrophic.html","chemoautotrophic"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":19,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["bone-element-uberon-0001474.html","bone element"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["metabolism/starch_degradation.html","starch degradation"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":17,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["hospital-envo-00002173.html","hospital"],["egg-food-product-foodon-00001274.html","egg food product"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["other/catalase_negative.html","catalase negative"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":14,"nb":1,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["compost-envo-00002170.html","compost"],["organic-waste-material-envo-00002873.html","organic waste material"],["larva-bto-0000707.html","larva"],["rhizosphere-envo-00005801.html","rhizosphere"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["physiology/lipase_activity.html","lipase activity"]]},{"id":"NCBITaxon:173","l":"Leptospira interrogans","na":14,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["small-river-biome-envo-00000890.html","small river biome"],["surface-water-envo-00002042.html","surface water"]],"b":[["morphology/axially_filamented.html","axially filamented"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":14,"nb":1,"a":[["watercourse-envo-00000029.html","watercourse"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["leaf-po-0025034.html","leaf"]],"b":[["morphology/gliding.html","gliding"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":10,"nb":1,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"]],"b":[["environment/microaerophilic.html","microaerophilic"]]},{"id":"NCBITaxon:1639","l":"Listeria monocytogenes","na":9,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["brain-bto-0000142.html","brain"],["central-nervous-system-bto-0000227.html","central nervous system"],["fruit-bto-0000486.html","fruit"],["placenta-bto-0001078.html","placenta"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["environment/psychrotolerant.html","psychrotolerant"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":8,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"],["bioreactor-envo-00002123.html","bioreactor"],["river-envo-00000022.html","river"],["freshwater-environment-envo-01000306.html","freshwater environment"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["physiology/photoheterotrophic.html","photoheterotrophic"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":8,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["ecology/plant_pathogen.html","plant pathogen"]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":8,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"]],"b":[["morphology/yellow_pigmented.html","yellow pigmented"]]},{"id":"NCBITaxon:1053","l":"Halorhodospira halophila","na":7,"nb":1,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["marine-environment-envo-01000320.html","marine environment"],["organic-feature-envo-01000159.html","organic feature"],["organic-material-envo-01000155.html","organic material"],["sediment-envo-00002007.html","sediment"]],"b":[["environment/haloalkaliphilic.html","haloalkaliphilic"]]},{"id":"NCBITaxon:1267","l":"Sarcina ventriculi","na":7,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["morphology/sarcina_arrangement.html","sarcina arrangement"]]},{"id":"NCBITaxon:1488","l":"Clostridium acetobutylicum","na":1,"nb":7,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["environment/anaerobic.html","anaerobic"],["environment/obligately_anaerobic.html","obligately anaerobic"],["metabolism/fermentation.html","Fermentation"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"],["morphology/gram_variable.html","gram variable"],["morphology/spindle_shaped.html","spindle shaped"]]},{"id":"NCBITaxon:1830","l":"Rhodococcus ruber","na":6,"nb":1,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["morphology/orange_pigmented.html","orange pigmented"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":6,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/oxidase_activity.html","oxidase activity"]]},{"id":"NCBITaxon:266264","l":"Cupriavidus metallidurans CH34","na":1,"nb":6,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/copper_tolerant.html","copper tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["environment/zinc_tolerant.html","zinc tolerant"]]},{"id":"PATO:0001430","l":"","na":1,"nb":6,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["environment/alkalotolerant.html","alkalotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"],["environment/obligately_alkaphilic.html","obligately alkaliphilic"],["environment/ph_growth_preference.html","pH growth preference"],["environment/ph_optimum_high.html","pH optimum high"]]},{"id":"NCBITaxon:129958","l":"Carboxydothermus hydrogenoformans","na":5,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["stream-envo-00000023.html","stream"],["temperate-envo-01000206.html","temperate"],["seep-envo-01000262.html","seep"]],"b":[["physiology/carboxydotrophic.html","carboxydotrophic"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":1,"nb":5,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["metabolism/dimethyl_sulfoxide_respiration.html","dimethyl sulfoxide respiration"],["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/electron_transfer.html","Electron transfer"]]},{"id":"NCBITaxon:224911","l":"Bradyrhizobium diazoefficiens (strain JCM 10833 / BCRC 13528 / IAM 13628 / NBRC 14792 / USDA 110)","na":5,"nb":1,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["microbial-mat-material-envo-01000157.html","microbial mat material"],["agricultural-soil-envo-00002259.html","agricultural soil"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["morphology/subpolar_flagellation.html","subpolar flagellation"]]},{"id":"NCBITaxon:228410","l":"Nitrosomonas europaea ATCC 19718","na":1,"nb":5,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"],["physiology/lithotrophic.html","lithotrophic"]]},{"id":"NCBITaxon:747","l":"Pasteurella multocida","na":5,"nb":1,"a":[["bronchus-uberon-0002185.html","bronchus"],["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["finger-bto-0004669.html","finger"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["ecology/animal_pathogen.html","animal pathogen"]]},{"id":"PATO:0001456","l":"","na":1,"nb":5,"a":[["anaerobic-wastewater-treatment-reactor-habitatmech-gold-bb0eb00ccb.html","anaerobic wastewater treatment reactor"]],"b":[["environment/anaerobic.html","anaerobic"],["environment/strictly_anaerobic.html","strictly anaerobic"],["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/disproportionation.html","Disproportionation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"]]},{"id":"NCBITaxon:1111735","l":"Sedimenticola selenatireducens DSM 17993","na":4,"nb":1,"a":[["brackish-water-body-envo-01001321.html","brackish water body"],["estuarine-biome-envo-01000020.html","estuarine biome"],["estuary-envo-00000045.html","estuary"],["watercourse-envo-00000029.html","watercourse"]],"b":[["metabolism/selenate_respiration.html","selenate respiration"]]},{"id":"NCBITaxon:1156985","l":"Epibacterium ulvae","na":4,"nb":1,"a":[["bar-envo-00000167.html","bar"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"],["peninsula-envo-00000305.html","peninsula"]],"b":[["other/epibiont_phenotype.html","epibiont phenotype"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":4,"nb":1,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["morphology/s_layer.html","S-layer"]]},{"id":"NCBITaxon:237727","l":"Erythrobacter sp. NAP1","na":4,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"],["pond-water-envo-00002228.html","pond water"],["small-river-biome-envo-00000890.html","small river biome"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["physiology/aerobic_anoxygenic_phototrophy.html","aerobic anoxygenic phototrophy"]]},{"id":"NCBITaxon:651","l":"Aeromonas media","na":4,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"],["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["morphology/brown_pigmented.html","brown pigmented"]]},{"id":"CHEBI:16183","l":"methane","na":1,"nb":3,"a":[["methane-bioremediation-material-habitatmech-gold-d510166905.html","methane bioremediation material"]],"b":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/methanogenesis.html","Methanogenesis"],["physiology/methanotrophic.html","methanotrophic"]]},{"id":"NCBITaxon:1519","l":"Clostridium tyrobutyricum","na":3,"nb":1,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["peatland-envo-00000044.html","peatland"]],"b":[["metabolism/butyric_acid_fermentation.html","butyric acid fermentation"]]},{"id":"NCBITaxon:1570","l":"Halobacillus halophilus","na":3,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["environment/halotolerant.html","halotolerant"]]},{"id":"NCBITaxon:1717","l":"Corynebacterium diphtheriae","na":3,"nb":1,"a":[["foot-bto-0000476.html","foot"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["morphology/dumbbell_shaped.html","dumbbell shaped"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa (strain ATCC 15692 / DSM 22644 / CIP 104116 / JCM 14847 / LMG 12228 / 1C / PRS 101 / PAO1)","na":1,"nb":3,"a":[["style-bto-0001313.html","style"]],"b":[["ecology/biofilm_formation.html","biofilm formation"],["morphology/twitching_motility.html","twitching motility"],["morphology/type_iv_pilus.html","type IV pilus"]]},{"id":"NCBITaxon:2242","l":"Halobacterium salinarum","na":1,"nb":3,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["environment/extremely_halophilic.html","extremely halophilic"],["environment/halophilic.html","halophilic"],["morphology/intracellular_inclusion.html","intracellular inclusion"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK1622","na":3,"nb":1,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["morphology/gliding.html","gliding"]]},{"id":"NCBITaxon:29405","l":"Microlunatus phosphovorus","na":3,"nb":1,"a":[["water-scum-envo-00005794.html","water scum"],["orchard-envo-00000115.html","orchard"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["morphology/polyphosphate_granule.html","polyphosphate granule"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":3,"nb":1,"a":[["bile-bto-0000121.html","bile"],["rectum-bto-0001158.html","rectum"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["ecology/opportunistic_pathogen.html","opportunistic pathogen"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":3,"nb":1,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["morphology/polar_flagellation.html","polar flagellation"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":1,"nb":3,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["ecology/mutualism.html","mutualism"],["physiology/bioluminescence.html","bioluminescence"],["physiology/quorum_sensing.html","quorum sensing"]]},{"id":"NCBITaxon:94122","l":"Shewanella sp. ANA-3","na":3,"nb":1,"a":[["alkaline-water-envo-01000357.html","alkaline water"],["brackish-estuary-envo-00002137.html","brackish estuary"],["underground-water-envo-00005792.html","underground water"]],"b":[["metabolism/arsenate_respiration.html","arsenate respiration"]]},{"id":"ENVO:01000687","l":"","na":1,"nb":2,"a":[["sea-coast-envo-00000303.html","sea coast"]],"b":[["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"]]},{"id":"ENVO:01001040","l":"saline environment","na":1,"nb":2,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"]]},{"id":"NCBITaxon:1097","l":"Chlorobaculum tepidum","na":1,"nb":2,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"],["morphology/green_pigmented.html","green pigmented"]]},{"id":"NCBITaxon:1182451","l":"Aureivirga marina","na":1,"nb":2,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["environment/nacl_delta_mid1.html","NaCl delta mid1"],["environment/nacl_range_mid2.html","NaCl range mid2"]]},{"id":"NCBITaxon:1385984","l":"Exiguobacterium chiriqhucha","na":2,"nb":1,"a":[["water-ice-envo-01000277.html","water ice"],["peak-envo-00000480.html","peak"]],"b":[["environment/temperature_delta_high.html","temperature delta high"]]},{"id":"NCBITaxon:139","l":"Borreliella burgdorferi","na":2,"nb":1,"a":[["joint-bto-0001686.html","joint"],["needle-bto-0000917.html","needle"]],"b":[["genomics/plasmid_carriage.html","plasmid carriage"]]},{"id":"NCBITaxon:165695","l":"Sphingobium","na":2,"nb":1,"a":[["juvenile-bto-0002168.html","juvenile"],["leaf-bto-0000713.html","leaf"]],"b":[["metabolism/lignin_degradation.html","lignin degradation"]]},{"id":"NCBITaxon:167879","l":"Colwellia psychrerythraea 34H","na":2,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["soil-envo-00001998.html","soil"]],"b":[["environment/psychrophilic.html","psychrophilic"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":2,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["morphology/branched_shaped.html","branched shaped"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii (strain ATCC 43067 / DSM 2661 / JAL-1 / JCM 10045 / NBRC 100440)","na":2,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["metabolism/methanogenesis.html","Methanogenesis"]]},{"id":"NCBITaxon:243273","l":"Mycoplasmoides genitalium (strain ATCC 33530 / DSM 19775 / NCTC 10195 / G37)","na":1,"nb":2,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["genomics/gc_high.html","GC high"],["genomics/genome_size.html","genome size"]]},{"id":"NCBITaxon:28264","l":"Arcanobacterium haemolyticum","na":2,"nb":1,"a":[["foot-bto-0000476.html","foot"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"]],"b":[["physiology/alpha_mannosidase_activity.html","alpha-mannosidase activity"]]},{"id":"NCBITaxon:293091","l":"Haloquadratum walsbyi","na":2,"nb":1,"a":[["small-river-biome-envo-00000890.html","small river biome"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["morphology/square_shaped.html","square shaped"]]},{"id":"NCBITaxon:313590","l":"Dokdonia sp. MED134","na":2,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["metabolism/proteorhodopsin_phototrophy.html","proteorhodopsin phototrophy"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans Pd1222","na":2,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["physiology/mixotrophic.html","mixotrophic"]]},{"id":"NCBITaxon:334543","l":"Psychrobacter arcticus","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["environment/delta_phenotype_with_numerical_limits.html","delta phenotype with numerical limits"],["environment/facultative_psychrophilic.html","facultative psychrophilic"]]},{"id":"NCBITaxon:521674","l":"Planctopirus limnophila DSM 3776","na":2,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["morphology/flask_shaped.html","flask shaped"]]},{"id":"NCBITaxon:542","l":"Zymomonas mobilis","na":1,"nb":2,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["physiology/nad_dependent_alcohol_dehydrogenase_activity.html","NAD-dependent alcohol dehydrogenase activity"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":2,"nb":1,"a":[["watercourse-envo-00000029.html","watercourse"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["morphology/lateral_flagellation.html","lateral flagellation"]]},{"id":"NCBITaxon:74109","l":"Photobacterium profundum","na":1,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["environment/piezophilic.html","piezophilic"],["environment/piezotolerant.html","piezotolerant"]]},{"id":"NCBITaxon:86665","l":"Halalkalibacterium halodurans","na":1,"nb":2,"a":[["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["environment/alkalotolerant.html","alkalotolerant"],["environment/alkaphilic.html","alkaliphilic"]]},{"id":"ENVO:01000309","l":"cold environment","na":1,"nb":1,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["environment/temperature_optimum_very_low.html","temperature optimum very low"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["morphology/heterocyst.html","heterocyst"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["physiology/urease_activity.html","urease activity"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":1,"a":[["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["metabolism/cellulolysis.html","cellulolysis"]]},{"id":"NCBITaxon:1579","l":"Lactobacillus acidophilus","na":1,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"]],"b":[["environment/acidotolerant.html","acidotolerant"]]},{"id":"NCBITaxon:1599","l":"Latilactobacillus sakei","na":1,"nb":1,"a":[["research-facility-envo-00000469.html","research facility"]],"b":[["physiology/arginine_dihydrolase_activity.html","arginine dihydrolase activity"]]},{"id":"NCBITaxon:1744","l":"Propionibacterium freudenreichii","na":1,"nb":1,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":1,"nb":1,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["physiology/alkaline_phosphatase_activity.html","alkaline phosphatase activity"]]},{"id":"NCBITaxon:192222","l":"Campylobacter jejuni subsp. jejuni serotype O:2 (strain ATCC 700819 / NCTC 11168)","na":1,"nb":1,"a":[["flagellate-bto-0000464.html","flagellate"]],"b":[["environment/capnophilic.html","capnophilic"]]},{"id":"NCBITaxon:2283","l":"Acidianus ambivalens","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["metabolism/disproportionation.html","Disproportionation"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima (strain ATCC 43589 / DSM 3109 / JCM 10099 / NBRC 100826 / MSB8)","na":1,"nb":1,"a":[["feather-bto-0000447.html","feather"]],"b":[["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"]]},{"id":"NCBITaxon:272630","l":"Methylorubrum extorquens (strain ATCC 14718 / DSM 1338 / JCM 2805 / NCIMB 9133 / AM1)","na":1,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["physiology/methylotrophic.html","methylotrophic"]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["physiology/alpha_fucosidase_activity.html","alpha-fucosidase activity"]]},{"id":"NCBITaxon:33952","l":"Acetobacterium woodii","na":1,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["metabolism/homoacetogenesis.html","Homoacetogenesis"]]},{"id":"NCBITaxon:357794","l":"Psychromonas ingrahamii","na":1,"nb":1,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["environment/temperature_range_very_low.html","temperature range very low"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["metabolism/photoferrotrophy.html","photoferrotrophy"]]},{"id":"NCBITaxon:399549","l":"Metallosphaera sedula DSM 5348","na":1,"nb":1,"a":[["solfatara-envo-00000217.html","solfatara"]],"b":[["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":1,"nb":1,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["other/voges_proskauer_test_positive.html","Voges-Proskauer test positive"]]},{"id":"NCBITaxon:584","l":"Proteus mirabilis","na":1,"nb":1,"a":[["salivary-gland-bto-0001203.html","salivary gland"]],"b":[["morphology/swarming_motility.html","swarming motility"]]},{"id":"NCBITaxon:71421","l":"Haemophilus influenzae (strain ATCC 51907 / DSM 11121 / KW20 / Rd)","na":1,"nb":1,"a":[["respiratory-mucosa-bto-0000973.html","respiratory mucosa"]],"b":[["genomics/restriction_modification_system.html","restriction-modification system"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":1,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["physiology/dormancy.html","dormancy"]]},{"id":"NCBITaxon:844","l":"Wolinella succinogenes","na":1,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":1,"nb":1,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":1,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["morphology/motility.html","motility"]]},{"id":"NCBITaxon:99807","l":"Corynebacterium auriscanis","na":1,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"]],"b":[["physiology/pyrrolidonyl_arylamidase_activity.html","pyrrolidonyl arylamidase activity"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/MediaIngredientMech--CultureMech.json b/assets/fleet/edges/MediaIngredientMech--CultureMech.json index 4c9952c..96d704b 100644 --- a/assets/fleet/edges/MediaIngredientMech--CultureMech.json +++ b/assets/fleet/edges/MediaIngredientMech--CultureMech.json @@ -1 +1 @@ -{"a":"MediaIngredientMech","b":"CultureMech","base":{"MediaIngredientMech":"https://github.com/CultureBotAI/MediaIngredientMech/blob/main/data/ingredients/","CultureMech":"https://github.com/CultureBotAI/CultureMech/blob/main/data/merge_yaml/merged/"},"n":611,"by":{"CHEBI":544,"KEGG":56,"FOODON":6,"UBERON":3,"CAS":1,"ENVO":1},"terms":[{"id":"FOODON:03315426","l":"yeast extract","na":30,"nb":119,"a":[["mapped/CMC_PY_Horse_Serum.yaml","CMC + PY + Horse Serum"],["mapped/Casitone_Yeast_Extract_Rumen_Fluid.yaml","Casitone + Yeast Extract + Rumen Fluid"],["mapped/GYPS.yaml","GYPS"],["mapped/Glucose_Cellobiose_Starch_Trypticase_Yeast_Extract.yaml","Glucose + Cellobiose + Starch + Trypticase + Yeast Extract"],["mapped/Glucose_Peptone-yeast_Extract.yaml","Glucose Peptone-yeast Extract"],["mapped/Glucose_Yeast_Extract.yaml","Glucose + Yeast Extract"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["1_5_Nutrient_agar.yaml","1_5_nutrient_agar"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["ANAEROFILUM_MEDIUM.yaml","anaerofilum_medium"]]},{"id":"CHEBI:17234","l":"glucose","na":23,"nb":1113,"a":[["mapped/Corn_Steep_Liquor_Glucose_Fumarate.yaml","Corn Steep Liquor + Glucose + Fumarate"],["mapped/Fastidious_Anaerobe_Broth_With_Meat_Granules.yaml","Fastidious Anaerobe Broth With Meat Granules"],["mapped/GYPS.yaml","GYPS"],["mapped/Glucose.yaml","Glucose"],["mapped/Glucose_2.yaml","glucose"],["mapped/Glucose_Acetate.yaml","Glucose + Acetate"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mh_medium.yaml","15_mh_medium"],["15_mh_medium__b586cb85.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1_10_PYGV_MEDIUM_modified.yaml","1_10_pygv_medium_modified"],["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"]]},{"id":"CHEBI:2509","l":"agar","na":20,"nb":1336,"a":[["mapped/Agar.yaml","Agar"],["mapped/Brucella_Agar.yaml","Brucella agar"],["mapped/Legionella_Agar_Enrichment.yaml","Legionella agar enrichment"],["mapped/Malt_Extract_Agar.yaml","Malt extract agar"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Middlebrook_7H10_Agar.yaml","Middlebrook 7H10 agar"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["10_mh_medium.yaml","10_mh_medium"],["1298.yaml","1298"],["15_mgm_medium.yaml","15_mgm_medium"],["15_mh_medium__b586cb85.yaml","15_mh_medium"]]},{"id":"CHEBI:53503","l":"cobalt chloride hexahydrate","na":14,"nb":1279,"a":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/Cobalt_chloride_hexahydrate.yaml","Cobalt chloride hexahydrate"],["mapped/Cocl2_X_6_H2o.yaml","CoCl2 x 6 H2O"],["mapped/MME_Trace_Minerals.yaml","MME Trace Minerals"],["mapped/Mc_trace_minerals.yaml","Mc_trace_minerals"],["mapped/Mc_trace_minerals_SO4free.yaml","Mc_trace_minerals_SO4free"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["3n_bbm_v.yaml","3n_bbm_v"],["3n_bbm_v_recipe_for_customer_orders.yaml","3n_bbm_v_recipe_for_customer_orders"],["A1_MEDIUM.yaml","a1_medium"]]},{"id":"CHEBI:15377","l":"water","na":12,"nb":2282,"a":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/Brain_Heart_Infusion_Broth.yaml","Brain heart infusion broth"],["mapped/Distilled_Water.yaml","Distilled water"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"]],"b":[["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1_10_MB_agar.yaml","1_10_mb_agar"],["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"],["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"]]},{"id":"CHEBI:33118","l":"boric acid","na":12,"nb":2238,"a":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/H3bo3.yaml","H3BO3"],["mapped/MME_Trace_Minerals.yaml","MME Trace Minerals"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Mc_trace_minerals.yaml","Mc_trace_minerals"]],"b":[["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM.yaml","1_2_sme_medium"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["1_2_r2a_75_asw.yaml","1_2_r2a_75_asw"],["1_2_r2a_medium_with_75_artificial_seawater.yaml","1_2_r2a_medium_with_75_artificial_seawater"]]},{"id":"CHEBI:26710","l":"sodium chloride","na":11,"nb":3472,"a":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/Brain_Heart_Infusion_Broth.yaml","Brain heart infusion broth"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Mineral_3B_Solution.yaml","Mineral 3B solution"],["mapped/Mineral_3B_Solution_Minus_Nitrogen.yaml","Mineral 3B solution minus Nitrogen"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["10_mh_medium.yaml","10_mh_medium"],["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["1298.yaml","1298"],["15_mgm_medium.yaml","15_mgm_medium"]]},{"id":"CHEBI:86158","l":"calcium chloride dihydrate","na":11,"nb":2949,"a":[["mapped/Cacl22h2o.yaml","CaCl22H2O"],["mapped/Cacl2_X_2_H2o.yaml","CaCl2 x 2 H2O"],["mapped/Calcium_Chloride.yaml","Calcium Chloride"],["mapped/Mineral_3B_Solution.yaml","Mineral 3B solution"],["mapped/Mineral_3B_Solution_Minus_Nitrogen.yaml","Mineral 3B solution minus Nitrogen"],["mapped/Modified_Wolfes_Minerals.yaml","Modified Wolfe's Minerals"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["15_mh_medium__b586cb85.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_PYGV_MEDIUM_modified.yaml","1_10_pygv_medium_modified"],["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"]]},{"id":"CHEBI:75213","l":"sodium molybdate dihydrate","na":11,"nb":2172,"a":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/Mc_trace_minerals.yaml","Mc_trace_minerals"],["mapped/Mc_trace_minerals_SO4free.yaml","Mc_trace_minerals_SO4free"],["mapped/Modified_Wolfes_Minerals.yaml","Modified Wolfe's Minerals"],["mapped/Na2moo42h2o.yaml","Na2MoO4·2H2O"],["mapped/Na2moo4_X_2_H2o.yaml","Na2MoO4 x 2 H2O"]],"b":[["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["1a_Medium.yaml","1a_medium"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["3n_bbm_v.yaml","3n_bbm_v"]]},{"id":"CHEBI:86345","l":"magnesium dichloride hexahydrate","na":11,"nb":1966,"a":[["mapped/Magnesium_Chloride.yaml","Magnesium chloride"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Mc_general_salts.yaml","Mc_general_salts"],["mapped/Mc_general_salts_SO4free.yaml","Mc_general_salts_SO4free"],["mapped/Mgcl2_X_6_H2o.yaml","MgCl2 x 6 H2O"]],"b":[["15_mgm_medium.yaml","15_mgm_medium"],["15_mh_medium__b586cb85.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1_2_SME_MEDIUM.yaml","1_2_sme_medium"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["1_2_r2a_medium_with_75_artificial_seawater.yaml","1_2_r2a_medium_with_75_artificial_seawater"]]},{"id":"CHEBI:86368","l":"manganese(II) chloride tetrahydrate","na":10,"nb":1566,"a":[["mapped/MME_Trace_Minerals.yaml","MME Trace Minerals"],["mapped/Mc_trace_minerals_SO4free.yaml","Mc_trace_minerals_SO4free"],["mapped/Mineral_3B_Solution.yaml","Mineral 3B solution"],["mapped/Mineral_3B_Solution_Minus_Nitrogen.yaml","Mineral 3B solution minus Nitrogen"],["mapped/Mncl2_X_4_H2o.yaml","MnCl2 x 4 H2O"],["mapped/P-iv_Metal_Solution.yaml","P-IV Metal Solution"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["3n_bbm_v.yaml","3n_bbm_v"],["3n_bbm_v_recipe_for_customer_orders.yaml","3n_bbm_v_recipe_for_customer_orders"],["480G_MEDIUM.yaml","480g_medium"]]},{"id":"CHEBI:34683","l":"disodium hydrogenphosphate","na":10,"nb":570,"a":[["mapped/Brain_Heart_Infusion_Broth.yaml","Brain heart infusion broth"],["mapped/Disodium_Phosphate_Heptahydrate_002_M_Stock.yaml","Disodium phosphate heptahydrate (0.02 M stock)"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Na2hpo4.yaml","Na2HPO4"],["mapped/Na2hpo4_X_12_H2o.yaml","Na2HPO4 x 12 H2O"]],"b":[["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"],["1_2_mrs_1_2_bhi_agar.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_mrs_1_2_bhi_agar__56430c33.yaml","1_2_mrs_1_2_bhi_agar"],["1a_Medium.yaml","1a_medium"],["2ASW.yaml","2asw"],["2asw__59e92e67.yaml","2asw"]]},{"id":"CHEBI:16494","l":"lipoic acid","na":9,"nb":993,"a":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Dl-alpha-lipoic_Acid.yaml","(DL)-alpha-Lipoic acid"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Thauers_Vitamin_Mix_No_Biotin.yaml","Thauer's vitamin mix no Biotin"]],"b":[["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["A1_MARINE_MEDIUM.yaml","a1_marine_medium"],["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"],["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"]]},{"id":"CHEBI:3312","l":"calcium dichloride","na":9,"nb":516,"a":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/Cacl2.yaml","CaCl2"],["mapped/Cacl2_X_7_H2o.yaml","CaCl2 x 7 H2O"],["mapped/Calcium_Chloride.yaml","Calcium Chloride"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mgm_medium.yaml","15_mgm_medium"],["15_mh_medium.yaml","15_mh_medium"],["28_mh_medium.yaml","28_mh_medium"],["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["A3.yaml","a3"]]},{"id":"CHEBI:30961","l":"pyridoxine hydrochloride","na":8,"nb":1360,"a":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/Pyridoxine_Hydrochloride.yaml","Pyridoxine hydrochloride"],["mapped/Pyridoxine_dihydrochloride.yaml","Pyridoxine dihydrochloride"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"]],"b":[["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["7H9.yaml","7H9"],["A1_MARINE_MEDIUM.yaml","a1_marine_medium"],["A1_MEDIUM.yaml","a1_medium"]]},{"id":"CHEBI:17015","l":"riboflavin","na":8,"nb":1290,"a":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/Riboflavin.yaml","Riboflavin"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Thauers_Vitamin_Mix_No_Biotin.yaml","Thauer's vitamin mix no Biotin"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_PYGV_MEDIUM_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"]]},{"id":"CHEBI:31345","l":"Calcium pantothenate","na":8,"nb":1216,"a":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/Ca-pantothenate.yaml","Ca-pantothenate"],["mapped/Calcium_D-Pantothenate.yaml","Calcium D-Pantothenate"],["mapped/Calcium_Pantothenate.yaml","Calcium pantothenate"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"]],"b":[["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2ASW.yaml","2asw"],["2asw__59e92e67.yaml","2asw"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"]]},{"id":"CHEBI:49976","l":"zinc dichloride","na":8,"nb":1018,"a":[["mapped/MME_Trace_Minerals.yaml","MME Trace Minerals"],["mapped/Mc_trace_minerals_SO4free.yaml","Mc_trace_minerals_SO4free"],["mapped/P-iv_Metal_Solution.yaml","P-IV Metal Solution"],["mapped/Sulfur-free_DL_Minerals.yaml","Sulfur-free DL minerals"],["mapped/Trace_Element_Solution_SL-10.yaml","Trace element solution SL-10"],["mapped/UW_Concentrated_Base_No_Sulfur.yaml","UW concentrated base no sulfur"]],"b":[["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["3n_bbm_v.yaml","3n_bbm_v"],["3n_bbm_v_recipe_for_customer_orders.yaml","3n_bbm_v_recipe_for_customer_orders"],["A1_MEDIUM.yaml","a1_medium"],["ABM.yaml","abm"],["ACETIVIBRIO_ALKALICELLULOSI_MEDIUM.yaml","acetivibrio_alkalicellulosi_medium"]]},{"id":"CHEBI:4735","l":"ethylenediaminetetraacetic acid","na":8,"nb":237,"a":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/EDTA_Tetrasodium_Tetrahydrate_Salt.yaml","EDTA tetrasodium tetrahydrate salt"],["mapped/Edta.yaml","EDTA"],["mapped/Edta_Acid_Form.yaml","EDTA (acid form)"],["mapped/UW_Concentrated_Base.yaml","UW concentrated base"],["mapped/UW_Concentrated_Base_No_Mo.yaml","UW concentrated base no Mo"]],"b":[["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["ACIDOSOMA_MEDIUM.yaml","acidosoma_medium"],["ALCALIGENES_XYLOSOXYDANS_MEDIUM_WITH_BENZOATE.yaml","alcaligenes_xylosoxydans_medium_with_benzoate"],["ALLOCATENOCOCCUS_MEDIUM.yaml","allocatenococcus_medium"],["ANB_aerobic.yaml","anb_aerobic"],["AQUASPIRILLUM_MEDIUM.yaml","aquaspirillum_medium"]]},{"id":"CHEBI:18276","l":"dihydrogen","na":8,"nb":231,"a":[["mapped/H23-methyl_Mercaptopropionate.yaml","H2+3-methyl Mercaptopropionate"],["mapped/H2_CO2.yaml","H2 + CO2"],["mapped/H2dimethylsulfide.yaml","H2+dimethylsulfide"],["mapped/H2methanol.yaml","H2+methanol"],["mapped/H2tetramethylammonium.yaml","H2+tetramethylammonium"],["mapped/H2trimethylamine.yaml","H2+trimethylamine"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["4_yaco_media.yaml","4_yaco_media"],["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["AMMONIFEX_DEGENSII_MEDIUM.yaml","ammonifex_degensii_medium"],["AP11MH_medium.yaml","ap11mh_medium"]]},{"id":"CHEBI:31795","l":"magnesium sulfate heptahydrate","na":7,"nb":2671,"a":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/Mc_general_salts.yaml","Mc_general_salts"],["mapped/Mgso47h2o.yaml","MgSO4·7H2O"],["mapped/Mgso47h2o_2.yaml","MgSO47H2O"],["mapped/Mgso4_X_7_H2o.yaml","MgSO4 x 7 H2O"],["mapped/Mgso4h2o.yaml","MgSO4·H2O"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["15_mgm_medium.yaml","15_mgm_medium"],["15_mh_medium__b586cb85.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"]]},{"id":"CHEBI:32599","l":"magnesium sulfate","na":7,"nb":1459,"a":[["mapped/Magnesium_Sulfate.yaml","Magnesium sulfate"],["mapped/Mgso47h2o.yaml","MgSO4·7H2O"],["mapped/Mgso4_X_6_H2o.yaml","MgSO4 x 6 H2O"],["mapped/Mgso4_X_7_H2o.yaml","MgSO4 x 7 H2O"],["mapped/Modified_Wolfes_Minerals.yaml","Modified Wolfe's Minerals"],["mapped/UW_Concentrated_Base.yaml","UW concentrated base"]],"b":[["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["10_mh_medium.yaml","10_mh_medium"],["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["15_mh_medium.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"]]},{"id":"CHEBI:15940","l":"nicotinic acid","na":7,"nb":1433,"a":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/Nicotinic_Acid.yaml","Nicotinic acid"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Thauers_Vitamin_Mix_No_Biotin.yaml","Thauer's vitamin mix no Biotin"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2ASW.yaml","2asw"],["2asw__59e92e67.yaml","2asw"]]},{"id":"CHEBI:32312","l":"zinc sulfate heptahydrate","na":7,"nb":1405,"a":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/Mc_trace_minerals.yaml","Mc_trace_minerals"],["mapped/Modified_Wolfes_Minerals.yaml","Modified Wolfe's Minerals"],["mapped/UW_Concentrated_Base.yaml","UW concentrated base"],["mapped/UW_Concentrated_Base_No_Mo.yaml","UW concentrated base no Mo"],["mapped/Wolfes_Mineral_Mix.yaml","Wolfe's mineral mix"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["1a_Medium.yaml","1a_medium"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"]]},{"id":"CHEBI:30753","l":"4-aminobenzoic acid","na":7,"nb":1350,"a":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/P-aminobenzoic_Acid.yaml","p-Aminobenzoic acid"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Thauers_Vitamin_Mix_No_Biotin.yaml","Thauer's vitamin mix no Biotin"]],"b":[["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_PYGV_MEDIUM_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["A1_MARINE_MEDIUM.yaml","a1_marine_medium"]]},{"id":"CHEBI:27470","l":"folic acid","na":7,"nb":1262,"a":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Folic_Acid.yaml","Folic acid"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Thauers_Vitamin_Mix_No_Biotin.yaml","Thauer's vitamin mix no Biotin"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_PYGV_MEDIUM_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2ASW.yaml","2asw"]]},{"id":"CHEBI:44557","l":"nitrilotriacetic acid","na":7,"nb":903,"a":[["mapped/Modified_Wolfes_Minerals.yaml","Modified Wolfe's Minerals"],["mapped/Nitrilotriacetic_Acid.yaml","Nitrilotriacetic acid"],["mapped/Nitrilotriacetic_Acid_Disodium_Salt.yaml","Nitrilotriacetic acid disodium salt"],["mapped/UW_Concentrated_Base.yaml","UW concentrated base"],["mapped/UW_Concentrated_Base_No_Mo.yaml","UW concentrated base no Mo"],["mapped/UW_Concentrated_Base_No_Sulfur.yaml","UW concentrated base no sulfur"]],"b":[["A1_MEDIUM.yaml","a1_medium"],["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"],["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["ACETOBACTERIUM_DEHALOGENANS_MEDIUM.yaml","acetobacterium_dehalogenans_medium"],["ACETOBACTERIUM_FIMETARIUM_MEDIUM.yaml","acetobacterium_fimetarium_medium"],["ACETOBACTERIUM_MEDIUM.yaml","acetobacterium_medium"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":7,"nb":709,"a":[["mapped/1-butanolCO2.yaml","1-butanol+CO2"],["mapped/1-propanolCO2.yaml","1-propanol+CO2"],["mapped/2-butanolCO2.yaml","2-butanol+CO2"],["mapped/2-propanolCO2.yaml","2-propanol+CO2"],["mapped/Carbon_dioxide_gas.yaml","Carbon dioxide gas"],["mapped/CyclopentanolCO2.yaml","Cyclopentanol+CO2"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["4_yaco_media.yaml","4_yaco_media"],["8kg_4_medium.yaml","8kg_4_medium"],["ABSS2.yaml","abss2"],["ABYSSISOLIBACTER_MEDIUM.yaml","abyssisolibacter_medium"]]},{"id":"CHEBI:86364","l":"manganese(II) sulfate monohydrate","na":7,"nb":684,"a":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/Mnso4_X_1_H2o.yaml","MnSO4 x 1 H2O"],["mapped/Mnso4_X_H2o.yaml","MnSO4 x H2O"],["mapped/Modified_Wolfes_Minerals.yaml","Modified Wolfe's Minerals"],["mapped/UW_Concentrated_Base.yaml","UW concentrated base"],["mapped/UW_Concentrated_Base_No_Mo.yaml","UW concentrated base no Mo"]],"b":[["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["AAM_MEDIUM.yaml","aam_medium"],["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"],["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["ACETOBACTERIUM_DEHALOGENANS_MEDIUM.yaml","acetobacterium_dehalogenans_medium"]]},{"id":"CHEBI:17634","l":"D-glucose","na":7,"nb":439,"a":[["mapped/Brain_Heart_Infusion_Broth.yaml","Brain heart infusion broth"],["mapped/D-glucose.yaml","D-Glucose"],["mapped/Dextrose.yaml","Dextrose"],["mapped/Glucose_Acetate.yaml","Glucose + Acetate"],["mapped/Glucose_Cellobiose_Starch_Trypticase_Yeast_Extract.yaml","Glucose + Cellobiose + Starch + Trypticase + Yeast Extract"],["mapped/Glucose_Formate.yaml","Glucose + Formate"]],"b":[["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"],["1_2_mrs_1_2_bhi_agar.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_mrs_1_2_bhi_agar__56430c33.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_tryptic_soy_broth_anaerobe.yaml","1_2_tryptic_soy_broth_anaerobe"],["1_2_tryptic_soy_broth_anaerobic.yaml","1_2_tryptic_soy_broth_anaerobic"],["1_2_tryptic_soy_broth_anaerobic__d70593aa.yaml","1_2_tryptic_soy_broth_anaerobic"]]},{"id":"CHEBI:53542","l":"nickel chloride hexahydrate","na":7,"nb":103,"a":[["mapped/MME_Trace_Minerals.yaml","MME Trace Minerals"],["mapped/Mc_trace_minerals.yaml","Mc_trace_minerals"],["mapped/Mc_trace_minerals_SO4free.yaml","Mc_trace_minerals_SO4free"],["mapped/Nickel_II_chloride_hexahydrate.yaml","Nickel (II) chloride hexahydrate"],["mapped/Nicl2_X_6_H2o.yaml","NiCl2 x 6 H2O"],["mapped/Sulfur-free_DL_Minerals.yaml","Sulfur-free DL minerals"]],"b":[["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["ALP_defined.yaml","ALP defined"],["ALP_defined_chlorate.yaml","ALP defined chlorate"],["ALP_defined_noN.yaml","ALP defined noN"],["ALP_defined_perchlorate.yaml","ALP defined perchlorate"],["ALP_rich.yaml","ALP rich"]]},{"id":"CHEBI:15956","l":"biotin","na":6,"nb":1645,"a":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/Biotin.yaml","Biotin"],["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Wolfes_Vitamin_Mix.yaml","Wolfe's vitamin mix"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_PYGV_MEDIUM_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2ASW.yaml","2asw"]]},{"id":"CHEBI:75836","l":"iron(2+) sulfate heptahydrate","na":6,"nb":1518,"a":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/Feso4_X_7_H2o.yaml","FeSO4 x 7 H2O"],["mapped/Feso4_X_7h2o.yaml","FeSO4 x 7H2O"],["mapped/UW_Concentrated_Base.yaml","UW concentrated base"],["mapped/UW_Concentrated_Base_No_Mo.yaml","UW concentrated base no Mo"],["mapped/Wolfes_Mineral_Mix.yaml","Wolfe's mineral mix"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["1a_Medium.yaml","1a_medium"],["2_5_nacl_gypfk_agar_broth.yaml","2_5_nacl_gypfk_agar_broth"]]},{"id":"CHEBI:49105","l":"thiamine hydrochloride","na":6,"nb":1303,"a":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Thauers_Vitamin_Mix_No_Biotin.yaml","Thauer's vitamin mix no Biotin"],["mapped/Thiamine_Hcl.yaml","Thiamine HCl"],["mapped/Wolfes_Vitamin_Mix.yaml","Wolfe's vitamin mix"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2ASW.yaml","2asw"]]},{"id":"CHEBI:86318","l":"copper(II) chloride dihydrate","na":6,"nb":1232,"a":[["mapped/Cucl2_X_2_H2o.yaml","CuCl2 x 2 H2O"],["mapped/MME_Trace_Minerals.yaml","MME Trace Minerals"],["mapped/Mc_trace_minerals_SO4free.yaml","Mc_trace_minerals_SO4free"],["mapped/Sulfur-free_DL_Minerals.yaml","Sulfur-free DL minerals"],["mapped/Trace_Element_Solution_SL-10.yaml","Trace element solution SL-10"],["mapped/UW_Concentrated_Base_No_Sulfur.yaml","UW concentrated base no sulfur"]],"b":[["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["7H9.yaml","7H9"],["ACETIVIBRIO_ALKALICELLULOSI_MEDIUM.yaml","acetivibrio_alkalicellulosi_medium"],["ACETIVIBRIO_MEDIUM.yaml","acetivibrio_medium"],["ACETOBACTERIUM_TUNDRAE_MEDIUM.yaml","acetobacterium_tundrae_medium"]]},{"id":"CHEBI:31440","l":"copper(II) sulfate pentahydrate","na":6,"nb":952,"a":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/Cuso4_X_5_H2o.yaml","CuSO4 x 5 H2O"],["mapped/Mc_trace_minerals.yaml","Mc_trace_minerals"],["mapped/UW_Concentrated_Base.yaml","UW concentrated base"],["mapped/UW_Concentrated_Base_No_Mo.yaml","UW concentrated base no Mo"],["mapped/Wolfes_Mineral_Mix.yaml","Wolfe's mineral mix"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["1a_Medium.yaml","1a_medium"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["480G_MEDIUM.yaml","480g_medium"]]},{"id":"CHEBI:28017","l":"starch","na":6,"nb":280,"a":[["mapped/Fastidious_Anaerobe_Broth_With_Meat_Granules.yaml","Fastidious Anaerobe Broth With Meat Granules"],["mapped/GYPS.yaml","GYPS"],["mapped/Glucose_Cellobiose_Starch_Trypticase_Yeast_Extract.yaml","Glucose + Cellobiose + Starch + Trypticase + Yeast Extract"],["mapped/Glucose_Maltose_Cellobiose_Starch_Glycerol.yaml","Glucose + Maltose + Cellobiose + Starch + Glycerol"],["mapped/PYGS.yaml","PYGS"],["mapped/Starch.yaml","Starch"]],"b":[["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"],["1_10_r2a_medium_modified_yeast_extract.yaml","1_10_r2a_medium_modified_yeast_extract"],["1_2_r2a_medium_with_75_artificial_seawater.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["1_2_r2a_medium_with_75_artificial_seawater__5b6dd332.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["225M1_MEDIUM.yaml","225m1_medium"],["225m1_medium__5109009b.yaml","225m1_medium"]]},{"id":"CHEBI:17306","l":"maltose","na":6,"nb":50,"a":[["mapped/D-Maltose_Monohydrate.yaml","D-Maltose monohydrate"],["mapped/Glucose_Maltose_Cellobiose_Starch_Glycerol.yaml","Glucose + Maltose + Cellobiose + Starch + Glycerol"],["mapped/Maltose.yaml","Maltose"],["mapped/Maltose_2.yaml","maltose"],["mapped/Maltose_Hydrate.yaml","Maltose Hydrate"],["mapped/PY-maltose.yaml","PY-maltose"]],"b":[["ALKALIPHILUS_LACT_MEDIUM.yaml","alkaliphilus_lact_medium"],["ANAEROCELLA_MEDIUM.yaml","anaerocella_medium"],["BUTYRIVIBRIO_M2_MEDIUM.yaml","butyrivibrio_m2_medium"],["COLON_EXTRACT_MEDIUM.yaml","colon_extract_medium"],["DEINOCOCCUS_MEDIUM.yaml","deinococcus_medium"],["HELMUTKOENIGIA_MEDIUM.yaml","helmutkoenigia_medium"]]},{"id":"CHEBI:32588","l":"potassium chloride","na":5,"nb":1953,"a":[["mapped/Kcl.yaml","KCl"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Mc_general_salts.yaml","Mc_general_salts"],["mapped/Mc_general_salts_SO4free.yaml","Mc_general_salts_SO4free"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mgm_medium.yaml","15_mgm_medium"],["15_mh_medium.yaml","15_mh_medium"],["15_mh_medium__b586cb85.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"]]},{"id":"CHEBI:34887","l":"nickel dichloride","na":5,"nb":1707,"a":[["mapped/Nickel_II_chloride_hexahydrate.yaml","Nickel (II) chloride hexahydrate"],["mapped/Nicl2.yaml","NiCl2"],["mapped/Nicl2_X_2_H2o.yaml","NiCl2 x 2 H2O"],["mapped/Nicl2_X_5_H2o.yaml","NiCl2 x 5 H2O"],["mapped/Nicl2_X_6_H2o.yaml","NiCl2 x 6 H2O"]],"b":[["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["A1_MEDIUM.yaml","a1_medium"],["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"],["ACETIVIBRIO_ALKALICELLULOSI_MEDIUM.yaml","acetivibrio_alkalicellulosi_medium"],["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"]]},{"id":"CHEBI:176843","l":"vitamin B12","na":5,"nb":1411,"a":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/Vitamin_B12.yaml","Vitamin B12"],["mapped/Wolfes_Vitamin_Mix.yaml","Wolfe's vitamin mix"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"]]},{"id":"CHEBI:86249","l":"iron dichloride tetrahydrate","na":5,"nb":746,"a":[["mapped/Fecl2_X_4_H2o.yaml","FeCl2 x 4 H2O"],["mapped/Sulfur-free_DL_Minerals.yaml","Sulfur-free DL minerals"],["mapped/Trace_Element_Solution_SL-10.yaml","Trace element solution SL-10"],["mapped/UW_Concentrated_Base_No_Sulfur.yaml","UW concentrated base no sulfur"],["mapped/Zeikus_Trace_Element_Solution.yaml","Zeikus trace element solution"]],"b":[["ACETIVIBRIO_ALKALICELLULOSI_MEDIUM.yaml","acetivibrio_alkalicellulosi_medium"],["ACETIVIBRIO_MEDIUM.yaml","acetivibrio_medium"],["ACETOBACTERIUM_TUNDRAE_MEDIUM.yaml","acetobacterium_tundrae_medium"],["ACETOBACTEROIDES_GLYCINOPHILUS_MEDIUM.yaml","acetobacteroides_glycinophilus_medium"],["ACETOBACTEROIDES_MEDIUM.yaml","acetobacteroides_medium"],["ACIDAMINOBACTER_MEDIUM.yaml","acidaminobacter_medium"]]},{"id":"CHEBI:32149","l":"sodium sulfate","na":5,"nb":584,"a":[["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Mineral_3B_Solution.yaml","Mineral 3B solution"],["mapped/Mineral_3B_Solution_Minus_Nitrogen.yaml","Mineral 3B solution minus Nitrogen"],["mapped/Na2so4.yaml","Na2SO4"]],"b":[["1_2_r2a_75_asw.yaml","1_2_r2a_75_asw"],["1_2_r2a_medium_with_75_artificial_seawater.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["1_2_r2a_medium_with_75_artificial_seawater__5b6dd332.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"],["ACIDAMINOBACTER_MEDIUM.yaml","acidaminobacter_medium"],["ACIDIFIED_MPOB_MEDIUM.yaml","acidified_mpob_medium"]]},{"id":"CHEBI:86465","l":"potassium aluminium sulfate dodecahydrate","na":5,"nb":498,"a":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/Alk_So42_X_12_H2o.yaml","AlK(SO4)2 x 12 H2O"],["mapped/Mc_trace_minerals.yaml","Mc_trace_minerals"],["mapped/Modified_Wolfes_Minerals.yaml","Modified Wolfe's Minerals"],["mapped/Wolfes_Mineral_Mix.yaml","Wolfe's mineral mix"]],"b":[["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["A1_MEDIUM.yaml","a1_medium"],["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"],["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["ACETOBACTERIUM_DEHALOGENANS_MEDIUM.yaml","acetobacterium_dehalogenans_medium"]]},{"id":"CHEBI:35696","l":"cobalt dichloride","na":5,"nb":493,"a":[["mapped/Cobalt_chloride_hexahydrate.yaml","Cobalt chloride hexahydrate"],["mapped/Cocl2.yaml","CoCl2"],["mapped/Cocl2_X_2_H2o.yaml","CoCl2 x 2 H2O"],["mapped/Cocl2_X_4_H2o.yaml","CoCl2 x 4 H2O"],["mapped/Cocl2_X_6_H2o.yaml","CoCl2 x 6 H2O"]],"b":[["1a_Medium.yaml","1a_medium"],["ACIDIC_DILUTED_ASM_MEDIUM.yaml","acidic_diluted_asm_medium"],["ACIDIFFEROBACTER_MURCIENSIS_MEDIUM.yaml","acidifferobacter_murciensis_medium"],["ALKALINUS_ABYSSINIESE_MEDIUM.yaml","alkalinus_abyssiniese_medium"],["ALKALIPHILUS_CROTONATOXIDANS_MEDIUM.yaml","alkaliphilus_crotonatoxidans_medium"],["ANAEROLINEA_MEDIUM_C.yaml","anaerolinea_medium_c"]]},{"id":"CHEBI:75832","l":"iron(2+) sulfate (anhydrous)","na":5,"nb":226,"a":[["mapped/Feso4.yaml","FeSO4"],["mapped/Feso4_X_5_H2o.yaml","FeSO4 x 5 H2O"],["mapped/Feso4_X_6_H2o.yaml","FeSO4 x 6 H2O"],["mapped/Feso4_X_7_H2o.yaml","FeSO4 x 7 H2O"],["mapped/Feso4_X_7h2o.yaml","FeSO4 x 7H2O"]],"b":[["ACIDITHIOBACILLUS_FERRIVORANS_MEDIUM.yaml","acidithiobacillus_ferrivorans_medium"],["ACY.yaml","ACY"],["AQUASPIRILLUM_MEDIUM_II.yaml","aquaspirillum_medium_ii"],["BACILLUS_THERMOALCALOPHILUS_MEDIUM.yaml","bacillus_thermoalcalophilus_medium"],["BLASTOCOCCUS_AGGREGATUS_MEDIUM.yaml","blastococcus_aggregatus_medium"],["Basal_Salt_Medium_with_biphenyl.yaml","basal_salt_medium_with_biphenyl"]]},{"id":"FOODON:03315720","l":"vegetable protein, hydrolyzed","na":5,"nb":75,"a":[["mapped/Bacto_Soytone.yaml","Bacto Soytone"],["mapped/Phytone.yaml","Phytone"],["mapped/Soy_Peptone.yaml","Soy peptone"],["mapped/Soya_Pepton.yaml","Soya pepton"],["mapped/Soya_Peptone.yaml","Soya peptone"]],"b":[["1_2_tryptic_soy_broth_anaerobe.yaml","1_2_tryptic_soy_broth_anaerobe"],["1_2_tryptic_soy_broth_anaerobic.yaml","1_2_tryptic_soy_broth_anaerobic"],["ACANTHAMOEBA_MEDIUM.yaml","acanthamoeba_medium"],["ACIDIPHILIUM_MEDIUM.yaml","acidiphilium_medium"],["CHOCOLATE_AGAR.yaml","chocolate_agar"],["COLLIMONAS_MEDIUM.yaml","collimonas_medium"]]},{"id":"CHEBI:32142","l":"sodium citrate dihydrate","na":5,"nb":29,"a":[["mapped/Mc_trace_minerals.yaml","Mc_trace_minerals"],["mapped/Mc_trace_minerals_SO4free.yaml","Mc_trace_minerals_SO4free"],["mapped/Na3-citrate_X_2_H2o.yaml","Na3-citrate x 2 H2O"],["mapped/Sodium_Citrate.yaml","Sodium Citrate"],["mapped/Trisodium_Citrate_X_2_H2o.yaml","Trisodium citrate x 2 H2O"]],"b":[["ACANTHAMOEBA_MEDIUM.yaml","acanthamoeba_medium"],["Caldisphaera_Medium.yaml","caldisphaera_medium"],["MMYPF_Medium.yaml","mmypf_medium"],["MMYP_Medium.yaml","mmyp_medium"],["McAA_formate_No_pABA.yaml","McAA formate No pABA"],["McCas.yaml","McCas"]]},{"id":"CHEBI:17053","l":"L-aspartic acid","na":5,"nb":21,"a":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-Aspartic_Acid_Potassium_Salt.yaml","L-Aspartic acid potassium salt"],["mapped/L-Aspartic_Acid_Sodium_Salt_Monohydrate.yaml","L-Aspartic acid sodium salt monohydrate"],["mapped/L-aspartic_Acid.yaml","L-Aspartic acid"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["CTM_MEDIUM.yaml","ctm_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["McAA_formate_No_pABA.yaml","McAA formate No pABA"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"]]},{"id":"CHEBI:63036","l":"potassium dihydrogen phosphate","na":4,"nb":2726,"a":[["mapped/Kh2po4.yaml","KH2PO4"],["mapped/Mineral_3B_Solution.yaml","Mineral 3B solution"],["mapped/Mineral_3B_Solution_Minus_Nitrogen.yaml","Mineral 3B solution minus Nitrogen"],["mapped/Wolfes_Vitamin_Mix.yaml","Wolfe's vitamin mix"]],"b":[["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_PYGV_MEDIUM_modified.yaml","1_10_pygv_medium_modified"],["1_10_sabourauds_agar.yaml","1_10_sabourauds_agar"],["1_10_sabourauds_agar__6d784de4.yaml","1_10_sabourauds_agar"],["1_2_GY_AGAR.yaml","1_2_gy_agar"]]},{"id":"CHEBI:31206","l":"ammonium chloride","na":4,"nb":2324,"a":[["mapped/Ammonium_Chloride_Nitrogen_Source.yaml","Ammonium chloride (nitrogen source)"],["mapped/Mineral_3B_Solution.yaml","Mineral 3B solution"],["mapped/Nh4cl.yaml","NH4Cl"],["mapped/Tetramethyl_Ammonium_Chloride.yaml","Tetramethyl ammonium chloride"]],"b":[["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["480G_MEDIUM.yaml","480g_medium"],["480g_medium__e94698e7.yaml","480g_medium"]]},{"id":"CHEBI:32139","l":"sodium hydrogencarbonate","na":4,"nb":1470,"a":[["mapped/84_GL_NaHCO3_Solution.yaml","84 g/L NaHCO3 solution"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Nahco3.yaml","NaHCO3"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mh_medium.yaml","15_mh_medium"],["15_mh_medium__b586cb85.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM.yaml","1_2_sme_medium"]]},{"id":"CHEBI:63939","l":"sodium tungstate dihydrate","na":4,"nb":888,"a":[["mapped/Mc_trace_minerals.yaml","Mc_trace_minerals"],["mapped/Mc_trace_minerals_SO4free.yaml","Mc_trace_minerals_SO4free"],["mapped/Na2wo4_X_2_H2o.yaml","Na2WO4 x 2 H2O"],["mapped/Sulfur-free_DL_Minerals.yaml","Sulfur-free DL minerals"]],"b":[["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["A1_MEDIUM.yaml","a1_medium"],["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"],["ACETIVIBRIO_ALKALICELLULOSI_MEDIUM.yaml","acetivibrio_alkalicellulosi_medium"]]},{"id":"CHEBI:131361","l":"disodium selenite pentahydrate","na":4,"nb":887,"a":[["mapped/Na2seo35h2o.yaml","Na2SeO3·5H2O"],["mapped/Na2seo3_X_5_H2o.yaml","Na2SeO3 x 5 H2O"],["mapped/Sulfur-free_DL_Minerals.yaml","Sulfur-free DL minerals"],["mapped/Zeikus_Trace_Element_Solution.yaml","Zeikus trace element solution"]],"b":[["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"],["ACETIVIBRIO_ALKALICELLULOSI_MEDIUM.yaml","acetivibrio_alkalicellulosi_medium"],["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["ACETIVIBRIO_MEDIUM.yaml","acetivibrio_medium"]]},{"id":"CHEBI:91248","l":"L-cysteine hydrochloride hydrate","na":4,"nb":764,"a":[["mapped/L-Cysteine_X_HCl_X_H2O_Solution.yaml","L-Cysteine x HCl x H2O solution"],["mapped/L-cysteine.yaml","L-Cysteine"],["mapped/L-cysteine_Hcl_X_H2o.yaml","L-Cysteine HCl x H2O"],["mapped/L-cysteine_Hydrochloride_Monohydrate.yaml","L-Cysteine hydrochloride monohydrate"]],"b":[["8kg_4_medium.yaml","8kg_4_medium"],["A7_MEDIUM.yaml","a7_medium"],["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"],["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["ACETOBACTERIUM_DEHALOGENANS_MEDIUM.yaml","acetobacterium_dehalogenans_medium"],["ACETOBACTERIUM_MEDIUM.yaml","acetobacterium_medium"]]},{"id":"CHEBI:32954","l":"sodium acetate","na":4,"nb":595,"a":[["mapped/4_Carbon_Mix.yaml","4 Carbon Mix"],["mapped/Na-acetate.yaml","Na-acetate"],["mapped/Sodium_Acetate.yaml","Sodium acetate"],["mapped/Sodium_Acetate3h2o.yaml","Sodium acetate·3H2O"]],"b":[["A1_MARINE_MEDIUM.yaml","a1_marine_medium"],["A2_MEDIUM.yaml","a2_medium"],["AAM_MEDIUM.yaml","aam_medium"],["ABYSSISOLIBACTER_MEDIUM.yaml","abyssisolibacter_medium"],["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["ACETOMICROBIUM_FAECALE_MEDIUM.yaml","acetomicrobium_faecale_medium"]]},{"id":"CHEBI:86360","l":"manganese(II) sulfate","na":4,"nb":305,"a":[["mapped/Mnso4.yaml","MnSO4"],["mapped/Mnso4_X_1_H2o.yaml","MnSO4 x 1 H2O"],["mapped/Mnso4_X_7_H2o.yaml","MnSO4 x 7 H2O"],["mapped/Mnso4_X_H2o.yaml","MnSO4 x H2O"]],"b":[["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["A1_MEDIUM.yaml","a1_medium"],["A3.yaml","a3"],["ACETOBACTERIUM_MEDIUM.yaml","acetobacterium_medium"],["ACIDITHIOBACILLUS_FERRIVORANS_MEDIUM.yaml","acidithiobacillus_ferrivorans_medium"],["ALKALINE_XYLAN_MEDIUM.yaml","alkaline_xylan_medium"]]},{"id":"CHEBI:17439","l":"cyanocob(III)alamin","na":4,"nb":187,"a":[["mapped/Cyanocobalamin.yaml","Cyanocobalamin"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Thauers_Vitamin_Mix_No_Biotin.yaml","Thauer's vitamin mix no Biotin"],["mapped/Vitamin_B12.yaml","Vitamin B12"]],"b":[["2ASW.yaml","2asw"],["2asw__59e92e67.yaml","2asw"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["3n_bbm_v_recipe_for_customer_orders.yaml","3n_bbm_v_recipe_for_customer_orders"],["ACY.yaml","ACY"],["ALP_defined.yaml","ALP defined"]]},{"id":"CHEBI:86214","l":"cobalt dinitrate hexahydrate","na":4,"nb":151,"a":[["mapped/Co_No32_X_6_H2o.yaml","Co(NO3)2 x 6 H2O"],["mapped/UW_Concentrated_Base.yaml","UW concentrated base"],["mapped/UW_Concentrated_Base_No_Mo.yaml","UW concentrated base no Mo"],["mapped/UW_Concentrated_Base_No_Sulfur.yaml","UW concentrated base no sulfur"]],"b":[["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["480G_MEDIUM.yaml","480g_medium"],["480g_medium__e94698e7.yaml","480g_medium"],["ANCALOMICROBIUM_MEDIUM.yaml","ancalomicrobium_medium"],["BB.yaml","bb"],["BG11.yaml","bg11"]]},{"id":"CHEBI:131366","l":"disodium tetraborate decahydrate","na":4,"nb":150,"a":[["mapped/Na2b4o7_X_10_H2o.yaml","Na2B4O7 x 10 H2O"],["mapped/UW_Concentrated_Base.yaml","UW concentrated base"],["mapped/UW_Concentrated_Base_No_Mo.yaml","UW concentrated base no Mo"],["mapped/UW_Concentrated_Base_No_Sulfur.yaml","UW concentrated base no sulfur"]],"b":[["AEROBIC_SULFOLOBALES_MEDIUM.yaml","aerobic_sulfolobales_medium"],["AEROBIC_SULFOLOBALES_MEDIUM_WITHOUT_SULFUR.yaml","aerobic_sulfolobales_medium_without_sulfur"],["ANCALOMICROBIUM_MEDIUM.yaml","ancalomicrobium_medium"],["ATHALASSOTOGA_MEDIUM.yaml","athalassotoga_medium"],["Acidianus_medium.yaml","acidianus_medium"],["CALDIVIRGA_MEDIUM.yaml","caldivirga_medium"]]},{"id":"CHEBI:17057","l":"cellobiose","na":4,"nb":121,"a":[["mapped/Cellobiose.yaml","Cellobiose"],["mapped/Glucose_Cellobiose_Starch_Trypticase_Yeast_Extract.yaml","Glucose + Cellobiose + Starch + Trypticase + Yeast Extract"],["mapped/Glucose_Maltose_Cellobiose_Starch_Glycerol.yaml","Glucose + Maltose + Cellobiose + Starch + Glycerol"],["mapped/PY-cellobiose.yaml","PY-cellobiose"]],"b":[["A7_MEDIUM.yaml","a7_medium"],["ACETIVIBRIO_ALKALICELLULOSI_MEDIUM.yaml","acetivibrio_alkalicellulosi_medium"],["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["ALKALIFLEXUS_MEDIUM.yaml","alkaliflexus_medium"],["ANAEROBACTERIUM_MEDIUM.yaml","anaerobacterium_medium"],["ANAEROCELLA_MEDIUM.yaml","anaerocella_medium"]]},{"id":"CHEBI:17992","l":"sucrose","na":4,"nb":108,"a":[["mapped/D-Sucrose.yaml","D-Sucrose"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Sucrose.yaml","Sucrose"],["mapped/Sucrose_Yeast_Extract.yaml","Sucrose + Yeast Extract"]],"b":[["ACANTHAMOEBA_MEDIUM.yaml","acanthamoeba_medium"],["ACETIVIBRIO_MEDIUM.yaml","acetivibrio_medium"],["ALCALIPHILIC_AMPHIBACILLUS_STRAINS_MEDIUM.yaml","alcaliphilic_amphibacillus_strains_medium"],["ALKALIPHILIC_SPIROCHAETE_MEDIUM.yaml","alkaliphilic_spirochaete_medium"],["ANAEROBACTER_MEDIUM.yaml","anaerobacter_medium"],["AZOSPIRILLUM_AMAZONENSE_MEDIUM.yaml","azospirillum_amazonense_medium"]]},{"id":"CHEBI:144421","l":"iron(III) citrate","na":4,"nb":101,"a":[["mapped/Esculin_Ferric_Citrate.yaml","Esculin Ferric Citrate"],["mapped/Fe_Iii_Citrate.yaml","Fe(III) citrate"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"]],"b":[["ALKALIPHILUS_NAMSARAEVII_MEDIUM.yaml","alkaliphilus_namsaraevii_medium"],["ATHALASSOTOGA_MEDIUM.yaml","athalassotoga_medium"],["BACILLUS_INFERNUS_MEDIUM.yaml","bacillus_infernus_medium"],["CHLOROFLEXUS_AGGREGANS_MEDIUM.yaml","chloroflexus_aggregans_medium"],["DEFERRISOMA_MEDIUM.yaml","deferrisoma_medium"],["FRESHWATER_MEDIUM_WITH_TOLUENE.yaml","freshwater_medium_with_toluene"]]},{"id":"CHEBI:33403","l":"elemental sulfur","na":4,"nb":82,"a":[["mapped/Sulfur.yaml","Sulfur"],["mapped/Sulfur_Powder.yaml","Sulfur (powder)"],["mapped/Sulphur.yaml","Sulphur"],["mapped/Yeast_Extract_Sulfur.yaml","Yeast Extract + Sulfur"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["ACIDIFERROBACTER_MEDIUM.yaml","acidiferrobacter_medium"],["ACIDILOBUS_MEDIUM.yaml","acidilobus_medium"],["AEROBIC_SULFOLOBALES_MEDIUM.yaml","aerobic_sulfolobales_medium"],["AS_medium.yaml","as_medium"]]},{"id":"CHEBI:232798","l":"sodium L-lactate","na":4,"nb":81,"a":[["mapped/4_Carbon_Mix.yaml","4 Carbon Mix"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Na-l-lactate.yaml","Na-L-lactate"],["mapped/Sodium_L-lactate.yaml","Sodium L-lactate"]],"b":[["ALP_defined.yaml","ALP defined"],["ALP_defined_chlorate.yaml","ALP defined chlorate"],["ALP_defined_noN.yaml","ALP defined noN"],["ALP_defined_perchlorate.yaml","ALP defined perchlorate"],["ALP_rich.yaml","ALP rich"],["ALP_richB.yaml","ALP richB"]]},{"id":"CHEBI:16015","l":"L-glutamic acid","na":4,"nb":73,"a":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-Glutamic_Acid_Monopotassium_Salt_Monohydrate.yaml","L-Glutamic acid monopotassium salt monohydrate"],["mapped/L-glutamic_Acid.yaml","L-Glutamic acid"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["7H9.yaml","7H9"],["BACTO_MIDDLEBROOK_7H9_BROTH.yaml","bacto_middlebrook_7h9_broth"],["BGDM.yaml","bgdm"],["Bacillus_Medium.yaml","bacillus_medium"],["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"]]},{"id":"CHEBI:6636","l":"magnesium dichloride","na":4,"nb":67,"a":[["mapped/Mgcl2.yaml","MgCl2"],["mapped/Mgcl2_X_6_H2o.yaml","MgCl2 x 6 H2O"],["mapped/Mgcl2_X_7_H2o.yaml","MgCl2 x 7 H2O"],["mapped/Mgcl2x_6_H2o.yaml","MgCl2x 6 H2O"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mh_medium.yaml","15_mh_medium"],["1_2_r2a_75_asw.yaml","1_2_r2a_75_asw"],["28_mh_medium.yaml","28_mh_medium"],["ALCALIPHILIC_AMPHIBACILLUS_STRAINS_MEDIUM.yaml","alcaliphilic_amphibacillus_strains_medium"],["ALKALISPIRILLUM_MOBILE_MEDIUM.yaml","alkalispirillum_mobile_medium"]]},{"id":"CHEBI:17561","l":"L-cysteine","na":4,"nb":60,"a":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-cysteine.yaml","L-Cysteine"],["mapped/L-cysteine_Hcl_X_H2o.yaml","L-Cysteine HCl x H2O"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["70_30_sporulation_medium.yaml","70_30_sporulation_medium"],["BACTEROIDES_GALACTURONICUS_MEDIUM.yaml","bacteroides_galacturonicus_medium"],["BHIS_CaCl2.yaml","BHIS_CaCl2"],["BHIS_HOMOPIPES.yaml","BHIS_HOMOPIPES"],["BHIS_K3.yaml","BHIS_K3"],["BHIS_K3_noGlucose.yaml","BHIS_K3_noGlucose"]]},{"id":"CHEBI:30769","l":"citric acid","na":4,"nb":55,"a":[["mapped/Citric_Acid.yaml","Citric acid"],["mapped/Citric_Acid_X_H2o.yaml","Citric acid x H2O"],["mapped/Citric_Acidh2o.yaml","Citric Acid•H2O"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["Azospira_Medium.yaml","azospira_medium"],["BG11.yaml","bg11"],["BG11_medium.yaml","bg11_medium"],["CTM_MEDIUM.yaml","ctm_medium"],["ETHANOLOGENBACTERIUM_MEDIUM.yaml","ethanologenbacterium_medium"],["GINGER_BEER_PLANT_MEDIUM.yaml","ginger_beer_plant_medium"]]},{"id":"CHEBI:53001","l":"nickel sulfate","na":4,"nb":41,"a":[["mapped/Nickel_II_sulfate_hexahydrate.yaml","Nickel (II) sulfate hexahydrate"],["mapped/Nickel_Sulfate.yaml","Nickel Sulfate"],["mapped/Niso4_X_6_H2o.yaml","NiSO4 x 6 H2O"],["mapped/Niso4_X_7_H2o.yaml","NiSO4 x 7 H2O"]],"b":[["AZC_1502_MEDIUM.yaml","azc_1502_medium"],["Ferrous_Iron_Yeast_Extract_Medium.yaml","ferrous_iron_yeast_extract_medium"],["GEOBACTER_NBAF_MEDIUM.yaml","geobacter_nbaf_medium"],["GYS_Medium.yaml","gys_medium"],["HYDROGENOBACTER_ACIDOPHILUS_MEDIUM.yaml","hydrogenobacter_acidophilus_medium"],["HYL_MEDIUM.yaml","hyl_medium"]]},{"id":"CHEBI:133341","l":"choline chloride","na":4,"nb":35,"a":[["mapped/Choline_Chloride.yaml","Choline chloride"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Thauers_Vitamin_Mix_No_Biotin.yaml","Thauer's vitamin mix no Biotin"]],"b":[["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"],["Dv_base_medium.yaml","Dv base medium"],["FRESHWATER_MEDIUM_FOR_SOIL_AOA.yaml","freshwater_medium_for_soil_aoa"],["LS4D.yaml","ls4d"],["LS4D__75fe5623.yaml","LS4D"],["M9_Thauers.yaml","M9 Thauers"]]},{"id":"CHEBI:16857","l":"L-threonine","na":4,"nb":35,"a":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-threonine.yaml","L-Threonine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Threonine.yaml","Threonine"]],"b":[["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"],["McAA_formate_No_pABA.yaml","McAA formate No pABA"],["Mops_medium.yaml","mops_medium"]]},{"id":"CHEBI:17895","l":"L-tyrosine","na":4,"nb":29,"a":[["mapped/DL-Tyrosine.yaml","DL-Tyrosine"],["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-tyrosine.yaml","L-Tyrosine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"],["McAA_formate_No_pABA.yaml","McAA formate No pABA"],["NLDM_defined.yaml","NLDM_defined"]]},{"id":"CHEBI:29377","l":"sodium carbonate","na":3,"nb":671,"a":[["mapped/Na2co3.yaml","Na2CO3"],["mapped/Sodium_Carbonate_Monohydrate.yaml","sodium carbonate monohydrate"],["mapped/Sodium_Carbonate_Solution.yaml","Sodium carbonate solution"]],"b":[["2_5_nacl_gypfk_agar_broth.yaml","2_5_nacl_gypfk_agar_broth"],["A7_MEDIUM.yaml","a7_medium"],["ACETIVIBRIO_ALKALICELLULOSI_MEDIUM.yaml","acetivibrio_alkalicellulosi_medium"],["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["ACETOBACTERIUM_DEHALOGENANS_MEDIUM.yaml","acetobacterium_dehalogenans_medium"],["ACETOBACTERIUM_TUNDRAE_MEDIUM.yaml","acetobacterium_tundrae_medium"]]},{"id":"CHEBI:63005","l":"sodium nitrate","na":3,"nb":358,"a":[["mapped/Nano3.yaml","NaNO3"],["mapped/Sodium_Nitrate_070_M_Stock.yaml","Sodium nitrate (0.70 M stock)"],["mapped/Sodium_Nitrate_Nitrogen_Source.yaml","Sodium nitrate (nitrogen source)"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_sabourauds_agar.yaml","1_10_sabourauds_agar"],["1_10_sabourauds_agar__6d784de4.yaml","1_10_sabourauds_agar"],["1a_Medium.yaml","1a_medium"]]},{"id":"CHEBI:53258","l":"sodium citrate","na":3,"nb":234,"a":[["mapped/Sodium_Citrate.yaml","Sodium Citrate"],["mapped/Trisodium_Citrate.yaml","Trisodium citrate"],["mapped/Trisodium_Citrate_X_2_H2o.yaml","Trisodium citrate x 2 H2O"]],"b":[["7H9.yaml","7H9"],["ACIDULIPROFUNDUM_MEDIUM.yaml","aciduliprofundum_medium"],["ALKALIPHILIC_HALOMONAS_MEDIUM.yaml","alkaliphilic_halomonas_medium"],["ALKALIPHILUS_TRANSVAALENSIS_MEDIUM.yaml","alkaliphilus_transvaalensis_medium"],["ALKALOPHILIC_HALOPHILE_MEDIUM.yaml","alkalophilic_halophile_medium"],["ALTERYTHROBACTER_MEDIUM_216L.yaml","alterythrobacter_medium_216l"]]},{"id":"CHEBI:77775","l":"sodium selenate","na":3,"nb":224,"a":[["mapped/Mc_trace_minerals.yaml","Mc_trace_minerals"],["mapped/Mc_trace_minerals_SO4free.yaml","Mc_trace_minerals_SO4free"],["mapped/Na2seo4.yaml","Na2SeO4"]],"b":[["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["ACIDITHIOBACILLUS_FERRIVORANS_MEDIUM.yaml","acidithiobacillus_ferrivorans_medium"],["ACIDULIPROFUNDUM_MEDIUM.yaml","aciduliprofundum_medium"],["ALKALIPHILUS_CROTONATOXIDANS_MEDIUM.yaml","alkaliphilus_crotonatoxidans_medium"],["AP11MH_medium.yaml","ap11mh_medium"]]},{"id":"CHEBI:37585","l":"sodium dihydrogenphosphate","na":3,"nb":173,"a":[["mapped/Nah2po4.yaml","NaH2PO4"],["mapped/Nah2po4_X_2_H2o.yaml","NaH2PO4 x 2 H2O"],["mapped/Nah2po4h2o.yaml","NaH2PO4•H2O"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["ANT.yaml","ant"],["ATRIBACTERIUM_MEDIUM.yaml","atribacterium_medium"],["BASAL_MEDIUM.yaml","basal_medium"]]},{"id":"CHEBI:17754","l":"glycerol","na":3,"nb":165,"a":[["mapped/Glucose_Maltose_Cellobiose_Starch_Glycerol.yaml","Glucose + Maltose + Cellobiose + Starch + Glycerol"],["mapped/Glycerol.yaml","Glycerol"],["mapped/Glycerol_2.yaml","glycerol"]],"b":[["1_ogawa_medium.yaml","1_ogawa_medium"],["1_ogawa_medium__65d0ae34.yaml","1_ogawa_medium"],["5_G_MEDIUM.yaml","5_g_medium"],["5_g_medium__8aa8a45a.yaml","5_g_medium"],["6_B_MEDIUM.yaml","6_b_medium"],["6_b_medium__990e4708.yaml","6_b_medium"]]},{"id":"CHEBI:23414","l":"copper(II) sulfate","na":3,"nb":148,"a":[["mapped/Cuso4.yaml","CuSO4"],["mapped/Cuso4_X_2_H2o.yaml","CuSO4 x 2 H2O"],["mapped/Cuso4_X_4_H2o.yaml","CuSO4 x 4 H2O"]],"b":[["ALCALIGENES_MEDIUM.yaml","alcaligenes_medium"],["Alkaline_halophile_medium.yaml","alkaline_halophile_medium"],["BACTO_MIDDLEBROOK_7H9_BROTH.yaml","bacto_middlebrook_7h9_broth"],["Basal_synthetic_medium.yaml","basal_synthetic_medium"],["CDM_for_Continuous_Cultivation.yaml","cdm_for_continuous_cultivation"],["CLOSTRIDIUM_METHYLPENTOSUM_MEDIUM.yaml","clostridium_methylpentosum_medium"]]},{"id":"CHEBI:91249","l":"ammonium molybdate","na":3,"nb":146,"a":[["mapped/Ammonium_Molybdate_Tetrahydrate.yaml","ammonium molybdate tetrahydrate"],["mapped/Diammonium_molybdate.yaml","Diammonium molybdate"],["mapped/MME_Trace_Minerals.yaml","MME Trace Minerals"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["ANCALOMICROBIUM_MEDIUM.yaml","ancalomicrobium_medium"],["ANNWOODIA_MEDIUM.yaml","annwoodia_medium"],["Autotrophic_Nitrobacter_Medium.yaml","autotrophic_nitrobacter_medium"],["CaMM_noCarbon.yaml","CaMM noCarbon"]]},{"id":"CHEBI:48843","l":"disodium selenite","na":3,"nb":137,"a":[["mapped/Na2seo3.yaml","Na2SeO3"],["mapped/Na2seo35h2o.yaml","Na2SeO3·5H2O"],["mapped/Na2seo3_X_5_H2o.yaml","Na2SeO3 x 5 H2O"]],"b":[["ACETOBACTEROIDES_MEDIUM.yaml","acetobacteroides_medium"],["ACIDITHIOBACILLUS_FERRIVORANS_MEDIUM.yaml","acidithiobacillus_ferrivorans_medium"],["ACTIVATED_CARBON_MEDIUM.yaml","activated_carbon_medium"],["AS_medium.yaml","as_medium"],["A_medium.yaml","a_medium"],["Azospira_Medium.yaml","azospira_medium"]]},{"id":"CHEBI:49553","l":"copper(II) chloride","na":3,"nb":124,"a":[["mapped/Cucl2.yaml","CuCl2"],["mapped/Cucl2_X_6_H2o.yaml","CuCl2 x 6 H2O"],["mapped/Zeikus_Trace_Element_Solution.yaml","Zeikus trace element solution"]],"b":[["ACETOBACTEROIDES_GLYCINOPHILUS_MEDIUM.yaml","acetobacteroides_glycinophilus_medium"],["ACETOBACTEROIDES_MEDIUM.yaml","acetobacteroides_medium"],["ANAEROBIC_TYEG_MEDIUM.yaml","anaerobic_tyeg_medium"],["ANAEROTIGNUM_NEOPROPIONICUM_MEDIUM.yaml","anaerotignum_neopropionicum_medium"],["Asp2.yaml","asp2"],["CALDICELLULOSIRUPTOR_ACETIGENUS_MEDIUM.yaml","caldicellulosiruptor_acetigenus_medium"]]},{"id":"CHEBI:32030","l":"potassium bromide","na":3,"nb":110,"a":[["mapped/Kbr.yaml","KBr"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"]],"b":[["1_2_r2a_75_asw.yaml","1_2_r2a_75_asw"],["1_2_r2a_medium_with_75_artificial_seawater.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["1_2_r2a_medium_with_75_artificial_seawater__5b6dd332.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["Artificial_seawater_medium_for_strain_JS_SRB250Lac.yaml","artificial_seawater_medium_for_strain_js_srb250lac"],["Chromatium_Medium.yaml","chromatium_medium"],["DESULFOPILA_CORRODENS_MEDIUM.yaml","desulfopila_corrodens_medium"]]},{"id":"CHEBI:17790","l":"methanol","na":3,"nb":107,"a":[["mapped/Formatemethanol.yaml","Formate+methanol"],["mapped/H2methanol.yaml","H2+methanol"],["mapped/Methanol.yaml","Methanol"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["2_mh_medium.yaml","2_mh_medium"],["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["ALTEROMONAS_MEDIUM.yaml","alteromonas_medium"],["BM_MEDIUM.yaml","bm_medium"]]},{"id":"CHEBI:15428","l":"glycine","na":3,"nb":87,"a":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/Glycine.yaml","Glycine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["ACETOBACTEROIDES_GLYCINOPHILUS_MEDIUM.yaml","acetobacteroides_glycinophilus_medium"],["ACIDAMINOBACTER_MEDIUM.yaml","acidaminobacter_medium"],["ACIDAMINOCOCCUS_FERMENTANS_MEDIUM.yaml","acidaminococcus_fermentans_medium"],["ANT.yaml","ant"],["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"]]},{"id":"CHEBI:63038","l":"ammonium nitrate","na":3,"nb":85,"a":[["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Nh4no3.yaml","(NH4)NO3"]],"b":[["ALKALINE_CELLULOSE_AGAR.yaml","alkaline_cellulose_agar"],["ALKALINE_XYLAN_MEDIUM.yaml","alkaline_xylan_medium"],["ALTERYTHROBACTER_MEDIUM_216L.yaml","alterythrobacter_medium_216l"],["AMPHIBACILLUS_MEDIUM.yaml","amphibacillus_medium"],["CELLULOSE_AGAR.yaml","cellulose_agar"],["CLOSTRIDIUM_VINCENTII_MEDIUM.yaml","clostridium_vincentii_medium"]]},{"id":"CHEBI:28741","l":"sodium fluoride","na":3,"nb":79,"a":[["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Naf.yaml","NaF"]],"b":[["1_2_r2a_75_asw.yaml","1_2_r2a_75_asw"],["1_2_r2a_medium_with_75_artificial_seawater.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["1_2_r2a_medium_with_75_artificial_seawater__5b6dd332.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["EKHO_LAKE_STRAINS_MEDIUM.yaml","ekho_lake_strains_medium"],["FLEXISTIPES_MEDIUM.yaml","flexistipes_medium"],["HAHA100_V_MEDIUM.yaml","haha100_v_medium"]]},{"id":"CHEBI:17196","l":"L-asparagine","na":3,"nb":74,"a":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-asparagine.yaml","L-Asparagine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["Alkali_B_medium.yaml","alkali_b_medium"],["CELLULOSE_AGAR.yaml","cellulose_agar"],["CMM.yaml","cmm"],["CTM_MEDIUM.yaml","ctm_medium"],["Glucose_Asparagine_Agar.yaml","glucose_asparagine_agar"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"]]},{"id":"CHEBI:64758","l":"EDTA disodium salt dihydrate","na":3,"nb":74,"a":[["mapped/Na2-edta_X_2_H2o.yaml","Na2-EDTA x 2 H2O"],["mapped/Na2edta2h2o.yaml","Na2EDTA·2H2O"],["mapped/P-iv_Metal_Solution.yaml","P-IV Metal Solution"]],"b":[["ANAEROLINEA_MEDIUM.yaml","anaerolinea_medium"],["AZOARCUS_TAIWANENSIS_MEDIUM.yaml","azoarcus_taiwanensis_medium"],["Allen_medium.yaml","allen_medium"],["BACILLUS_ALKALIDIAZOTROPHICUS_MEDIUM.yaml","bacillus_alkalidiazotrophicus_medium"],["BACILLUS_INFERNUS_MEDIUM.yaml","bacillus_infernus_medium"],["CALDICELLULOSIRUPTOR_OWENSIS_MEDIUM.yaml","caldicellulosiruptor_owensis_medium"]]},{"id":"CHEBI:15603","l":"L-leucine","na":3,"nb":70,"a":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-leucine.yaml","L-Leucine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["Hypertonic_medium.yaml","hypertonic_medium"],["MCD_Medium.yaml","mcd_medium"]]},{"id":"CHEBI:16643","l":"L-methionine","na":3,"nb":68,"a":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-methionine.yaml","L-Methionine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["Basic_mineral_medium.yaml","basic_mineral_medium"],["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MDM.yaml","mdm"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"]]},{"id":"CHEBI:17191","l":"L-isoleucine","na":3,"nb":65,"a":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-isoleucine.yaml","L-Isoleucine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["CTM_MEDIUM.yaml","ctm_medium"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MCD_Medium.yaml","mcd_medium"]]},{"id":"CHEBI:17295","l":"L-phenylalanine","na":3,"nb":63,"a":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-phenylalanine.yaml","L-Phenylalanine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["BGDM.yaml","bgdm"],["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["CTM_MEDIUM.yaml","ctm_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["M9_minimal_media_aromix_noCarbon.yaml","M9 minimal media aromix noCarbon"]]},{"id":"CHEBI:16414","l":"L-valine","na":3,"nb":60,"a":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-valine.yaml","L-Valine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["CDM_LP.yaml","cdm_lp"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MCD_Medium.yaml","mcd_medium"],["MDM.yaml","mdm"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"]]},{"id":"CHEBI:16467","l":"L-arginine","na":3,"nb":51,"a":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-arginine.yaml","L-Arginine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["ABB.yaml","ABB"],["ACY.yaml","ACY"],["CAENICOLA_MOBILE_MEDIUM.yaml","caenicola_mobile_medium"],["CMM.yaml","cmm"],["CTM_MEDIUM.yaml","ctm_medium"],["Chamberlain_CDM.yaml","chamberlain_cdm"]]},{"id":"CHEBI:16977","l":"L-alanine","na":3,"nb":51,"a":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-alanine.yaml","L-Alanine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["ANAEROTIGNUM_MEDIUM.yaml","anaerotignum_medium"],["BGDM.yaml","bgdm"],["CMM.yaml","cmm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MCD_Medium.yaml","mcd_medium"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"]]},{"id":"CHEBI:17268","l":"myo-inositol","na":3,"nb":50,"a":[["mapped/M-inositol.yaml","m-Inositol"],["mapped/Myo-inositol.yaml","myo-Inositol"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["2ASW.yaml","2asw"],["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"],["ASW.yaml","asw"],["CDM_LP.yaml","cdm_lp"],["DESULFAMPLUS_MEDIUM.yaml","desulfamplus_medium"],["EGGC_MEDIUM.yaml","eggc_medium"]]},{"id":"CHEBI:17203","l":"L-proline","na":3,"nb":48,"a":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-proline.yaml","L-Proline"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["CDM_LP.yaml","cdm_lp"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MDM.yaml","mdm"],["MEIOTHERMUS_MEDIUM_R8.yaml","meiothermus_medium_r8"]]},{"id":"CHEBI:15971","l":"L-histidine","na":3,"nb":47,"a":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-histidine.yaml","L-Histidine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["CAENICOLA_MOBILE_MEDIUM.yaml","caenicola_mobile_medium"],["CTM_MEDIUM.yaml","ctm_medium"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"]]},{"id":"CHEBI:36383","l":"strontium dichloride","na":3,"nb":43,"a":[["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Srcl2.yaml","SrCl2"]],"b":[["1_2_r2a_75_asw.yaml","1_2_r2a_75_asw"],["EKHO_LAKE_STRAINS_MEDIUM.yaml","ekho_lake_strains_medium"],["GEOGLOBUS_AHANGARI_MEDIUM.yaml","geoglobus_ahangari_medium"],["HAHA100_V_MEDIUM.yaml","haha100_v_medium"],["HALOBACTERIOVORAX_MEDIUM.yaml","halobacteriovorax_medium"],["Half_Strength_Bacto_Marine_Broth.yaml","half_strength_bacto_marine_broth"]]},{"id":"CHEBI:18050","l":"L-glutamine","na":3,"nb":42,"a":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-glutamine.yaml","L-Glutamine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"],["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"],["GLUTAMINE_MEDIUM.yaml","glutamine_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"]]},{"id":"CHEBI:17115","l":"L-serine","na":3,"nb":41,"a":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-serine.yaml","L-Serine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["AMINOMONAS_MEDIUM.yaml","aminomonas_medium"],["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"]]},{"id":"CHEBI:18167","l":"alpha-maltose","na":3,"nb":41,"a":[["mapped/Maltose.yaml","Maltose"],["mapped/Maltose_2.yaml","maltose"],["mapped/Starch.yaml","Starch"]],"b":[["4_yaco_media.yaml","4_yaco_media"],["Chopped_Meat_Carbohydrate_Medium.yaml","chopped_meat_carbohydrate_medium"],["Chopped_Meat_Carbohydrate_Medium_w_Tween_80.yaml","chopped_meat_carbohydrate_medium_w_tween_80"],["Chopped_meat_carbohydrates_with_rumen_fluid.yaml","chopped_meat_carbohydrates_with_rumen_fluid"],["KTM_medium.yaml","ktm_medium"],["LACTOBACILLUS_PONTIS_MEDIUM.yaml","lactobacillus_pontis_medium"]]},{"id":"CHEBI:16828","l":"L-tryptophan","na":3,"nb":40,"a":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-tryptophan.yaml","L-Tryptophan"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["CDMM.yaml","cdmm"],["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["M9_minimal_media_aromix_noCarbon.yaml","M9 minimal media aromix noCarbon"],["MDM.yaml","mdm"]]},{"id":"CHEBI:30808","l":"iron trichloride","na":3,"nb":38,"a":[["mapped/Fecl3.yaml","FeCl3"],["mapped/Fecl3_X_4_H2o.yaml","FeCl3 x 4 H2O"],["mapped/MME_Trace_Minerals.yaml","MME Trace Minerals"]],"b":[["AZOSPIRILLUM_AMAZONENSE_MEDIUM.yaml","azospirillum_amazonense_medium"],["Beijerinckia_medium_for_isolation.yaml","beijerinckia_medium_for_isolation"],["CARBOXYMETHYL_CELLULOSE_MEDIUM.yaml","carboxymethyl_cellulose_medium"],["CYTOPHAGA_MEDIUM.yaml","cytophaga_medium"],["Castenholz_TYE_medium.yaml","castenholz_tye_medium"],["FRANCISELLA_HALIOTICIDA_MEDIUM.yaml","francisella_halioticida_medium"]]},{"id":"CHEBI:60720","l":"sodium silicate","na":3,"nb":35,"a":[["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Na-silicate.yaml","Na-silicate"]],"b":[["Asp2.yaml","asp2"],["HALOBACTERIOVORAX_MEDIUM.yaml","halobacteriovorax_medium"],["Half_Strength_Bacto_Marine_Broth.yaml","half_strength_bacto_marine_broth"],["MEDIUM_514_plus_additional_salt.yaml","medium_514_plus_additional_salt"],["METHANOPYRUS_MEDIUM.yaml","methanopyrus_medium"],["MODIFIED_MEDIUM_514.yaml","modified_medium_514"]]},{"id":"CHEBI:18019","l":"L-lysine","na":3,"nb":32,"a":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-lysine.yaml","L-Lysine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["Chamberlain_CDM.yaml","chamberlain_cdm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"],["McAA_formate_No_pABA.yaml","McAA formate No pABA"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"]]},{"id":"CHEBI:30089","l":"acetate","na":3,"nb":31,"a":[["mapped/Acetate.yaml","Acetate"],["mapped/Acetate_Carbon_Source.yaml","Acetate (carbon source)"],["mapped/Glucose_Acetate.yaml","Glucose + Acetate"]],"b":[["AMOEBOBACTER_MEDIUM.yaml","amoebobacter_medium"],["FWAFC.yaml","fwafc"],["M9ZB_with_acetate.yaml","m9zb_with_acetate"],["MEDIUM_FOR_CHLOROBIUM_FERROOXIDANS.yaml","medium_for_chlorobium_ferrooxidans"],["NMM_with_acetate.yaml","nmm_with_acetate"],["Thauera_aminoaromatica_medium.yaml","thauera_aminoaromatica_medium"]]},{"id":"CHEBI:30314","l":"(R)-lipoic acid","na":3,"nb":29,"a":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/Thioctic_Acid.yaml","Thioctic acid"],["mapped/Wolfes_Vitamin_Mix.yaml","Wolfe's vitamin mix"]],"b":[["A1_MEDIUM.yaml","a1_medium"],["CLOSTRIDIUM_THERMOCELLUM_MEDIUM.yaml","clostridium_thermocellum_medium"],["Chemically_defined_medium.yaml","chemically_defined_medium"],["Clostridium_aldrichii_medium.yaml","clostridium_aldrichii_medium"],["DESULFOMONILE_MEDIUM.yaml","desulfomonile_medium"],["JCM_medium_242.yaml","jcm_medium_242"]]},{"id":"CHEBI:30812","l":"iron dichloride","na":3,"nb":24,"a":[["mapped/Fecl2.yaml","FeCl2"],["mapped/Fecl2_X_6_H2o.yaml","FeCl2 x 6 H2O"],["mapped/Fecl2_X_7_H2o.yaml","FeCl2 x 7 H2O"]],"b":[["BACTO_PHOTOBACTERIUM_BROTH.yaml","bacto_photobacterium_broth"],["HALORHABDUS_UTAHENSIS_MEDIUM.yaml","halorhabdus_utahensis_medium"],["HERBASPIRILLUM_MEDIUM.yaml","herbaspirillum_medium"],["MEDIUM_FOR_ARHODOMONAS_AND_MARINOBACTER.yaml","medium_for_arhodomonas_and_marinobacter"],["MPA_Medium.yaml","mpa_medium"],["Modified_M30_Medium.yaml","modified_m30_medium"]]},{"id":"FOODON:03302088","l":"beef extract","na":3,"nb":12,"a":[["mapped/Beef_Extract.yaml","Beef extract"],["mapped/Peptone_Beef_Extract_Yeast_Extract.yaml","Peptone + Beef Extract + Yeast Extract"],["mapped/Tryptoneyeastbeef_%28tyb%29.yaml","Tryptone/yeast/beef (tyb)"]],"b":[["1_5_Nutrient_agar.yaml","1_5_nutrient_agar"],["HAEMOPHILUS_MEDIUM.yaml","haemophilus_medium"],["MRS.yaml","MRS"],["SNA_5.yaml","sna_5"],["columbia_blood_agar_with_5_horse_blood__65a36f66.yaml","columbia_blood_agar_with_5_horse_blood"],["columbia_blood_agar_with_5_rabbit_blood__0ed590f0.yaml","columbia_blood_agar_with_5_rabbit_blood"]]},{"id":"FOODON:03301056","l":"malt extract","na":6,"nb":3,"a":[["mapped/Malt_Extract.yaml","Malt extract"],["mapped/Malt_Extract_Agar.yaml","Malt extract agar"],["mapped/Malt_Extract_Agar_Nissui.yaml","Malt Extract Agar (Nissui)"],["mapped/Malt_Extract_Agar_Oxoid.yaml","Malt extract agar (Oxoid)"],["mapped/Malt_Extract_Broth.yaml","Malt extract broth"],["mapped/Yeast_Extract-malt_Extract_Agar.yaml","Yeast extract-malt extract agar"]],"b":[["MY75S.yaml","my75s"],["Streptomyces_growth_medium_65.yaml","Streptomyces growth medium 65"],["wmy.yaml","wmy"]]},{"id":"CHEBI:17925","l":"alpha-D-glucose","na":3,"nb":4,"a":[["mapped/Alpha-d-glucose.yaml","alpha-D-Glucose"],["mapped/Glucose.yaml","Glucose"],["mapped/Glucose_Xylose.yaml","Glucose + Xylose"]],"b":[["CDMM.yaml","cdmm"],["MDM.yaml","mdm"],["MM3.yaml","mm3"],["tsb_glucose_medium.yaml","tsb_glucose_medium"]]},{"id":"CHEBI:46020","l":"tetramethylammonium","na":4,"nb":3,"a":[["mapped/Formatetetramethylammonium.yaml","Formate+tetramethylammonium"],["mapped/H2tetramethylammonium.yaml","H2+tetramethylammonium"],["mapped/Tetramethyl_Ammonium.yaml","Tetramethyl ammonium"],["mapped/Tetramethyl_Ammonium_Chloride.yaml","Tetramethyl ammonium chloride"]],"b":[["TETRAMETHYL_AMMONIUM_MEDIUM.yaml","tetramethyl_ammonium_medium"],["methanogen_high_salt_medium__183d3bb4.yaml","methanogen_high_salt_medium"],["tetramethyl_ammonium_medium__e4bd4975.yaml","tetramethyl_ammonium_medium"]]},{"id":"CHEBI:131527","l":"dipotassium hydrogen phosphate","na":2,"nb":2042,"a":[["mapped/K2hpo4.yaml","K2HPO4"],["mapped/K2hpo4_X_3_H2o.yaml","K2HPO4 x 3 H2O"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1_10_PYGV_MEDIUM_modified.yaml","1_10_pygv_medium_modified"],["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"]]},{"id":"CHEBI:17883","l":"hydrogen chloride","na":2,"nb":574,"a":[["mapped/Hcl.yaml","HCl"],["mapped/Trace_Element_Solution_SL-10.yaml","Trace element solution SL-10"]],"b":[["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_tryptic_soy_broth_anaerobe.yaml","1_2_tryptic_soy_broth_anaerobe"],["1_2_tryptic_soy_broth_anaerobic.yaml","1_2_tryptic_soy_broth_anaerobic"],["5_sorbitol_medium__c395a410.yaml","5_sorbitol_medium"],["ACETIVIBRIO_ALKALICELLULOSI_MEDIUM.yaml","acetivibrio_alkalicellulosi_medium"]]},{"id":"CHEBI:86254","l":"iron trichloride hexahydrate","na":2,"nb":378,"a":[["mapped/Fecl3_X_6_H2o.yaml","FeCl3 x 6 H2O"],["mapped/P-iv_Metal_Solution.yaml","P-IV Metal Solution"]],"b":[["3n_bbm_v.yaml","3n_bbm_v"],["3n_bbm_v_recipe_for_customer_orders.yaml","3n_bbm_v_recipe_for_customer_orders"],["A2_MEDIUM.yaml","a2_medium"],["ABM.yaml","abm"],["ACIDITHIOBACILLUS_CALDUS_MEDIUM.yaml","acidithiobacillus_caldus_medium"],["ANOXYBACILLUS_TUNISIENSE_MEDIUM.yaml","anoxybacillus_tunisiense_medium"]]},{"id":"CHEBI:50144","l":"sodium pyruvate","na":2,"nb":362,"a":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Na-pyruvate.yaml","Na-pyruvate"]],"b":[["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"],["1_2_r2a_medium_with_75_artificial_seawater.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["1_2_r2a_medium_with_75_artificial_seawater__5b6dd332.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["225M1_MEDIUM.yaml","225m1_medium"],["225m1_medium__5109009b.yaml","225m1_medium"]]},{"id":"CHEBI:64734","l":"EDTA disodium salt (anhydrous)","na":2,"nb":334,"a":[["mapped/Na2-edta.yaml","Na2-EDTA"],["mapped/Na2-edta_X_2_H2o.yaml","Na2-EDTA x 2 H2O"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["3n_bbm_v.yaml","3n_bbm_v"],["3n_bbm_v_recipe_for_customer_orders.yaml","3n_bbm_v_recipe_for_customer_orders"],["ABM.yaml","abm"],["ACIDIC_DILUTED_ASM_MEDIUM.yaml","acidic_diluted_asm_medium"],["ALGORIPHAGUS_AQUAEDUCTUS_MEDIUM.yaml","algoriphagus_aquaeductus_medium"]]},{"id":"CHEBI:32150","l":"sodium thiosulfate pentahydrate","na":2,"nb":312,"a":[["mapped/Na2s2o3_X_5_H2o.yaml","Na2S2O3 x 5 H2O"],["mapped/Sodium_Thiosulfate_Pentahydrate.yaml","Sodium Thiosulfate Pentahydrate"]],"b":[["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["ACIDITHIOBACILLUS_THIOOXIDANS_MEDIUM.yaml","acidithiobacillus_thiooxidans_medium"],["ALKALIPHILUS_LACT_MEDIUM.yaml","alkaliphilus_lact_medium"],["ALKALIPHILUS_LACV_MEDIUM.yaml","alkaliphilus_lacv_medium"],["ALKALIPHILUS_TRANSVAALENSIS_MEDIUM.yaml","alkaliphilus_transvaalensis_medium"],["AMMONIFEX_THIOPHILUS_MEDIUM.yaml","ammonifex_thiophilus_medium"]]},{"id":"CHEBI:75215","l":"sodium molybdate (anhydrous)","na":2,"nb":181,"a":[["mapped/Na2moo4.yaml","Na2MoO4"],["mapped/Na2moo42h2o.yaml","Na2MoO4·2H2O"]],"b":[["A3.yaml","a3"],["ACIDOSOMA_MEDIUM.yaml","acidosoma_medium"],["BASAL_MEDIUM.yaml","basal_medium"],["Basal_synthetic_medium.yaml","basal_synthetic_medium"],["Beijerinckia_medium_for_isolation.yaml","beijerinckia_medium_for_isolation"],["CAMM.yaml","camm"]]},{"id":"CHEBI:26833","l":"sulfur atom","na":2,"nb":153,"a":[["mapped/Sulfur.yaml","Sulfur"],["mapped/Yeast_Extract_Sulfur.yaml","Yeast Extract + Sulfur"]],"b":[["1_2_SME_MEDIUM.yaml","1_2_sme_medium"],["9K_WITH_SULFUR_MEDIUM.yaml","9k_with_sulfur_medium"],["ACIDIANUS_BRIERLEYI_MEDIUM.yaml","acidianus_brierleyi_medium"],["ACIDITHIOBACILLUS_CALDUS_MEDIUM.yaml","acidithiobacillus_caldus_medium"],["ACIDITHIOBACILLUS_MEDIUM.yaml","acidithiobacillus_medium"],["ACIDOLOBUS_ACETICUS_MEDIUM.yaml","acidolobus_aceticus_medium"]]},{"id":"CHEBI:29032","l":"(R)-pantothenate","na":2,"nb":135,"a":[["mapped/Ca-pantothenate.yaml","Ca-pantothenate"],["mapped/Calcium_Pantothenate.yaml","Calcium pantothenate"]],"b":[["AP11MH_medium.yaml","ap11mh_medium"],["ARCHAEOGLOBUS_FULGIDUS_MEDIUM.yaml","archaeoglobus_fulgidus_medium"],["AS_medium.yaml","as_medium"],["A_medium.yaml","a_medium"],["Artificial_seawater_medium_for_strain_JS_SRB250Lac.yaml","artificial_seawater_medium_for_strain_js_srb250lac"],["Cedears_Standard_Medium_2.yaml","cedears_standard_medium_2"]]},{"id":"CHEBI:53426","l":"polysorbate 80","na":2,"nb":134,"a":[["mapped/PYG-002_Tween_80.yaml","PYG-0.02% Tween 80"],["mapped/Tween_80.yaml","Tween 80"]],"b":[["7H9.yaml","7H9"],["AAM_MEDIUM.yaml","aam_medium"],["ACIDAMINOCOCCUS_FERMENTANS_MEDIUM.yaml","acidaminococcus_fermentans_medium"],["BIFIDOBACTERIUM_MEDIUM.yaml","bifidobacterium_medium"],["Beer_Medium.yaml","beer_medium"],["CDM_LP.yaml","cdm_lp"]]},{"id":"CHEBI:91247","l":"L-cysteine hydrochloride","na":2,"nb":132,"a":[["mapped/L-Cysteine_X_HCl_X_H2O_Solution.yaml","L-Cysteine x HCl x H2O solution"],["mapped/L-cysteine_Hcl.yaml","L-Cysteine HCl"]],"b":[["1_10_PYGV_MEDIUM_modified.yaml","1_10_pygv_medium_modified"],["ABB.yaml","ABB"],["ACY.yaml","ACY"],["AP11MH_medium.yaml","ap11mh_medium"],["Actinotalea_fermentas_medium.yaml","actinotalea_fermentas_medium"],["BBL_ACTINOMYCES_BROTH.yaml","bbl_actinomyces_broth"]]},{"id":"CHEBI:75228","l":"sodium lactate","na":2,"nb":131,"a":[["mapped/D.yaml","D"],["mapped/Sodium_Lactate.yaml","Sodium lactate"]],"b":[["ANAEROBACILLUS_ARSENICISELENATIS_MEDIUM.yaml","anaerobacillus_arseniciselenatis_medium"],["ARCHAEOGLOBUS_FULGIDUS_MEDIUM.yaml","archaeoglobus_fulgidus_medium"],["ARCHAEOGLOBUS_SULFATICALLIDUS_MEDIUM.yaml","archaeoglobus_sulfaticallidus_medium"],["Artificial_seawater_medium_for_strain_JS_SRB250Lac.yaml","artificial_seawater_medium_for_strain_js_srb250lac"],["BACILLUS_INFERNUS_MEDIUM.yaml","bacillus_infernus_medium"],["BACILLUS_MACYAE_MEDIUM.yaml","bacillus_macyae_medium"]]},{"id":"CHEBI:17154","l":"nicotinamide","na":2,"nb":117,"a":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Nicotinamide.yaml","Nicotinamide"]],"b":[["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"],["ANAEROBIC_CHOLESTEROL_MEDIUM.yaml","anaerobic_cholesterol_medium"],["ANAEROBIC_THAUERA_MEDIUM.yaml","anaerobic_thauera_medium"],["ANCALOMICROBIUM_MEDIUM.yaml","ancalomicrobium_medium"],["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"]]},{"id":"CHEBI:86149","l":"ammonium nickel sulfate hexahydrate","na":2,"nb":99,"a":[["mapped/Nh42ni_So42.yaml","(NH4)2Ni(SO4)2"],["mapped/Nh42ni_So42_X_6_H2o.yaml","(NH4)2Ni(SO4)2 x 6 H2O"]],"b":[["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["ACIDITHIOBACILLUS_FERRIVORANS_MEDIUM.yaml","acidithiobacillus_ferrivorans_medium"],["ACIDULIPROFUNDUM_MEDIUM.yaml","aciduliprofundum_medium"],["AQUIFEX_MEDIUM.yaml","aquifex_medium"],["ARCHAEOGLOBUS_INFECTUS_MEDIUM.yaml","archaeoglobus_infectus_medium"],["ARCHAEOGLOBUS_PROFUNDUS_MEDIUM.yaml","archaeoglobus_profundus_medium"]]},{"id":"CHEBI:63675","l":"sodium succinate (anhydrous)","na":2,"nb":96,"a":[["mapped/Sodium_Succinate.yaml","Sodium succinate"],["mapped/Sodium_Succinate_Dibasic.yaml","Sodium succinate dibasic"]],"b":[["ABB.yaml","ABB"],["ACY.yaml","ACY"],["ALCALIGENES_MEDIUM.yaml","alcaligenes_medium"],["ALKALIPHILUS_SUCCINACIDUS_MEDIUM.yaml","alkaliphilus_succinacidus_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["ANAEROBIC_AZOSPIRILLUM_MEDIUM.yaml","anaerobic_azospirillum_medium"]]},{"id":"CHEBI:18385","l":"thiamine(1+)","na":2,"nb":94,"a":[["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Thiamine.yaml","Thiamine"]],"b":[["ANB_aerobic.yaml","anb_aerobic"],["AQUASPIRILLUM_MEDIUM.yaml","aquaspirillum_medium"],["Basic_mineral_medium.yaml","basic_mineral_medium"],["CHITINIVIBRIO_MEDIUM.yaml","chitinivibrio_medium"],["Chemically_defined_medium.yaml","chemically_defined_medium"],["Chromatium_Medium.yaml","chromatium_medium"]]},{"id":"CHEBI:31604","l":"ferric ammonium citrate","na":2,"nb":92,"a":[["mapped/Esculin_Ferric_Citrate.yaml","Esculin Ferric Citrate"],["mapped/Ferric_Ammonium_Citrate.yaml","Ferric ammonium citrate"]],"b":[["7H9.yaml","7H9"],["ACTIVATED_CARBON_MEDIUM.yaml","activated_carbon_medium"],["ALCALIGENES_MEDIUM.yaml","alcaligenes_medium"],["AURANTIMONAS_MANGANOXYDANS_MEDIUM.yaml","aurantimonas_manganoxydans_medium"],["BACILLUS_SCHLEGELII_HETEROTROPHIC_MEDIUM.yaml","bacillus_schlegelii_heterotrophic_medium"],["BACTO_MIDDLEBROOK_7H9_BROTH.yaml","bacto_middlebrook_7h9_broth"]]},{"id":"CHEBI:32036","l":"potassium sulfate","na":2,"nb":83,"a":[["mapped/K2so4.yaml","K2SO4"],["mapped/K2so4_X_7_H2o.yaml","K2SO4 x 7 H2O"]],"b":[["225M1_MEDIUM.yaml","225m1_medium"],["225m1_medium__5109009b.yaml","225m1_medium"],["225m1_medium__936a42af.yaml","225m1_medium"],["ARTIFICIAL_PILOT_PLANT_WATER_MEDIUM.yaml","artificial_pilot_plant_water_medium"],["ARTIFICIAL_SOIL_AGAR.yaml","artificial_soil_agar"],["DESULFOSPOROSINUS_ACIDIPHILUS_MEDIUM.yaml","desulfosporosinus_acidiphilus_medium"]]},{"id":"CHEBI:115156","l":"disodium fumarate","na":2,"nb":67,"a":[["mapped/Corn_Steep_Liquor_Glucose_Fumarate.yaml","Corn Steep Liquor + Glucose + Fumarate"],["mapped/Na2-fumarate.yaml","Na2-fumarate"]],"b":[["ANAEROBRANCA_MEDIUM.yaml","anaerobranca_medium"],["BTU_MEDIUM.yaml","btu_medium"],["CALDIMICROBIUM_MEDIUM.yaml","caldimicrobium_medium"],["CAMPYLOBACTER_RECTUS_MEDIUM.yaml","campylobacter_rectus_medium"],["DEFLUVIITOGA_MEDIUM.yaml","defluviitoga_medium"],["DEHALOSPIRILLUM_MEDIUM.yaml","dehalospirillum_medium"]]},{"id":"CHEBI:39010","l":"MES","na":2,"nb":67,"a":[["mapped/MES_Buffer.yaml","MES buffer"],["mapped/Mes.yaml","MES"]],"b":[["1_10_r2a_with_mes_ph6.yaml","1_10_r2a_with_mes_ph6"],["GYPS_MEDIUM.yaml","gyps_medium"],["KA22_MEDIUM.yaml","ka22_medium"],["M25Y_MEDIUM.yaml","m25y_medium"],["MAG_Modified_arabinose_gluconate_medium.yaml","mag_modified_arabinose_gluconate_medium"],["MARINE_MEDIUM_WITH_SULFUR.yaml","marine_medium_with_sulfur"]]},{"id":"CHEBI:39074","l":"MOPS","na":2,"nb":64,"a":[["mapped/MOPS_2M_pH7.yaml","MOPS_2M_pH7"],["mapped/Mops.yaml","MOPS"]],"b":[["CM3_MEDIUM.yaml","cm3_medium"],["DESULFOCELLA_HALOPHILA_MEDIUM.yaml","desulfocella_halophila_medium"],["DESULFOHALOTOMACULUM_MEDIUM.yaml","desulfohalotomaculum_medium"],["FERMENTATIVE_CELLULOLYTIC_ANAEROBES_MEDIUM.yaml","fermentative_cellulolytic_anaerobes_medium"],["GS2_MEDIUM_WITH_CELLOBIOSE.yaml","gs2_medium_with_cellobiose"],["Gotz_minimal_medium_with_malate.yaml","gotz_minimal_medium_with_malate"]]},{"id":"CHEBI:39033","l":"PIPES","na":2,"nb":57,"a":[["mapped/PIPES_Buffer.yaml","PIPES buffer"],["mapped/Pipes.yaml","PIPES"]],"b":[["CALROANAEROBACTER_MEDIUM.yaml","calroanaerobacter_medium"],["HALOBACTEROIDES_HALOBIUS_MEDIUM.yaml","halobacteroides_halobius_medium"],["KOSMOTOGA_OLEARIA_MEDIUM.yaml","kosmotoga_olearia_medium"],["KTM_medium.yaml","ktm_medium"],["MARINITOGA_MEDIUM.yaml","marinitoga_medium"],["METHANOCALDOCOCCUS_LEIGHII_MEDIUM.yaml","methanocaldococcus_leighii_medium"]]},{"id":"CHEBI:53470","l":"cobalt(2+) sulfate","na":2,"nb":57,"a":[["mapped/Coso4.yaml","CoSO4"],["mapped/Coso4_X_7_H2o.yaml","CoSO4 x 7 H2O"]],"b":[["Caldisphaera_Medium.yaml","caldisphaera_medium"],["DSM_135_medium.yaml","dsm_135_medium"],["E2_medium_with_citrate.yaml","e2_medium_with_citrate"],["E2_medium_with_gluconate.yaml","e2_medium_with_gluconate"],["E2_medium_with_octanoate.yaml","e2_medium_with_octanoate"],["JCM_Medium_161.yaml","jcm_medium_161"]]},{"id":"CHEBI:7916","l":"pantothenic acid","na":2,"nb":48,"a":[["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Pantothenic_Acid.yaml","Pantothenic acid"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["A1_MEDIUM.yaml","a1_medium"],["ANAEROBIC_CHOLESTEROL_MEDIUM.yaml","anaerobic_cholesterol_medium"],["ANAEROBIC_THAUERA_MEDIUM.yaml","anaerobic_thauera_medium"],["AQUASPIRILLUM_MEDIUM_II.yaml","aquaspirillum_medium_ii"]]},{"id":"CHEBI:78018","l":"dodecylphosphocholine","na":2,"nb":37,"a":[["mapped/Bacto-tryptone.yaml","Bacto-tryptone"],["mapped/Trypticase.yaml","Trypticase"]],"b":[["1_10_PYGV_MEDIUM_modified.yaml","1_10_pygv_medium_modified"],["ANAEROCELLA_MEDIUM.yaml","anaerocella_medium"],["BACTEROIDES_GALACTURONICUS_MEDIUM.yaml","bacteroides_galacturonicus_medium"],["CAMPYLOBACTER_RECTUS_MEDIUM.yaml","campylobacter_rectus_medium"],["CARYOPHANON_LATUM_MEDIUM.yaml","caryophanon_latum_medium"],["COPROTHERMOBACTER_PROTEOLYTICUS_MEDIUM.yaml","coprothermobacter_proteolyticus_medium"]]},{"id":"CHEBI:28869","l":"menadione","na":2,"nb":34,"a":[["mapped/Menadione.yaml","Menadione"],["mapped/Menadione_Solution.yaml","Menadione solution"]],"b":[["ABB.yaml","ABB"],["ACY.yaml","ACY"],["BGDM.yaml","bgdm"],["BHIS.yaml","bhis"],["BHIS_K3.yaml","BHIS_K3"],["BHIS_K3_noGlucose.yaml","BHIS_K3_noGlucose"]]},{"id":"CHEBI:86356","l":"manganese(II) sulfate dihydrate","na":2,"nb":28,"a":[["mapped/Mc_trace_minerals.yaml","Mc_trace_minerals"],["mapped/Mnso4_X_2_H2o.yaml","MnSO4 x 2 H2O"]],"b":[["1a_Medium.yaml","1a_medium"],["GS_MEDIUM.yaml","gs_medium"],["HALOPHILIC_METHANOTROPHIC_BACTERIUM_MEDIUM.yaml","halophilic_methanotrophic_bacterium_medium"],["METHYLOBACTER_MEDIUM_M10_XCF.yaml","methylobacter_medium_m10_xcf"],["METHYLOTHERMUS_MEDIUM.yaml","methylothermus_medium"],["MMJYP2_Medium.yaml","mmjyp2_medium"]]},{"id":"CHEBI:27570","l":"histidine","na":2,"nb":27,"a":[["mapped/Dl-histidine.yaml","DL-Histidine"],["mapped/L-histidine.yaml","L-Histidine"]],"b":[["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["MS15_Medium.yaml","ms15_medium"],["NATRONINCOLA_HISTIDINOVORANS_MEDIUM.yaml","natronincola_histidinovorans_medium"]]},{"id":"CHEBI:28757","l":"fructose","na":2,"nb":27,"a":[["mapped/Fructose.yaml","Fructose"],["mapped/PY-fructose.yaml","PY-fructose"]],"b":[["ACETOBACTERIUM_MEDIUM.yaml","acetobacterium_medium"],["AQUINCOLA_MEDIUM.yaml","aquincola_medium"],["ARTFICIAL_FRESHWATER_MEDIUM_I.yaml","artficial_freshwater_medium_i"],["CLOSTRIDIUM_ACETATE_1_MEDIUM.yaml","clostridium_acetate_1_medium"],["DESULFOSPOROSINUS_ACIDOPHILUS_MEDIUM.yaml","desulfosporosinus_acidophilus_medium"],["EUBACTERIUM_AGGREGANS_MEDIUM.yaml","eubacterium_aggregans_medium"]]},{"id":"CHEBI:17568","l":"uracil","na":2,"nb":26,"a":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Uracil.yaml","Uracil"]],"b":[["CDM_LP.yaml","cdm_lp"],["MCD_Medium.yaml","mcd_medium"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"]]},{"id":"CHEBI:32138","l":"sodium acetate trihydrate","na":2,"nb":24,"a":[["mapped/Sodium_Acetate3h2o.yaml","Sodium acetate·3H2O"],["mapped/Sodium_Acetate_Trihydrate.yaml","Sodium acetate trihydrate"]],"b":[["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["CHM.yaml","chm"],["DESULFOBACTER_MEDIUM.yaml","desulfobacter_medium"],["DESULFOLUTIVIBRIO_MEDIUM.yaml","desulfolutivibrio_medium"],["DESULFONEMA_ISHIMOTOI_MEDIUM.yaml","desulfonema_ishimotoi_medium"]]},{"id":"CHEBI:17821","l":"thymine","na":2,"nb":22,"a":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Thymine.yaml","Thymine"]],"b":[["2ASW.yaml","2asw"],["2asw__59e92e67.yaml","2asw"],["ASW.yaml","asw"],["Asp2.yaml","asp2"],["CDM_LP.yaml","cdm_lp"],["NLDM_defined.yaml","NLDM_defined"]]},{"id":"CHEBI:41131","l":"crotonic acid","na":2,"nb":21,"a":[["mapped/Crotonic_Acid.yaml","Crotonic acid"],["mapped/Na-crotonate.yaml","Na-crotonate"]],"b":[["ALKALIPHILUS_CROTONATOXIDANS_MEDIUM.yaml","alkaliphilus_crotonatoxidans_medium"],["ALKALIPHILUS_HYDROTHERMALIS_MEDIUM.yaml","alkaliphilus_hydrothermalis_medium"],["DESULFATIRHABDIUM_MEDIUM.yaml","desulfatirhabdium_medium"],["Desulfatirhabdium_Butyrativorans_Medium.yaml","desulfatirhabdium_butyrativorans_medium"],["EUBACTERIUM_OXIDOREDUCENS_MEDIUM.yaml","eubacterium_oxidoreducens_medium"],["MPA_Medium.yaml","mpa_medium"]]},{"id":"CHEBI:66870","l":"sodium dithionite","na":2,"nb":21,"a":[["mapped/Na2s2o4.yaml","Na2S2O4"],["mapped/Sodium_Dithionite.yaml","Sodium dithionite"]],"b":[["ANAEROBACCA_MEDIUM.yaml","anaerobacca_medium"],["DESULFALLAS_MEDIUM.yaml","desulfallas_medium"],["DESULFALLAS_THERMOSAPOVORANS_MEDIUM.yaml","desulfallas_thermosapovorans_medium"],["DESULFOTALEA_PSYCHROPHILA_MEDIUM.yaml","desulfotalea_psychrophila_medium"],["DESULFUROBACTERIUM_MEDIUM.yaml","desulfurobacterium_medium"],["DESULFUROMONAS_PALMITATIS_MEDIUM.yaml","desulfuromonas_palmitatis_medium"]]},{"id":"CHEBI:28645","l":"beta-D-fructofuranose","na":2,"nb":20,"a":[["mapped/Fructooligosaccharides_Fos.yaml","Fructooligosaccharides (FOS)"],["mapped/Fructose.yaml","Fructose"]],"b":[["Clostridium_medium.yaml","clostridium_medium"],["FYP_medium.yaml","fyp_medium"],["Green_Sulfur_Bacterium_Medium.yaml","green_sulfur_bacterium_medium"],["Liquid_Fermentation_Medium.yaml","liquid_fermentation_medium"],["M1D_Medium.yaml","m1d_medium"],["MOORELLA_AN10_MEDIUM.yaml","moorella_an10_medium"]]},{"id":"CHEBI:16235","l":"guanine","na":2,"nb":19,"a":[["mapped/Guanine.yaml","Guanine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["MCD_Medium.yaml","mcd_medium"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"]]},{"id":"CHEBI:6650","l":"malic acid","na":2,"nb":19,"a":[["mapped/Dl-malic_Acid.yaml","DL-Malic acid"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["MELiSSA_defined_Malic_noNitrogen_phosphatebuffered.yaml","MELiSSA defined Malic noNitrogen phosphatebuffered"],["MG_minimal_media.yaml","MG minimal media"],["MG_minimal_media_noCarbon.yaml","MG minimal media noCarbon"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"]]},{"id":"CHEBI:16899","l":"D-mannitol","na":2,"nb":18,"a":[["mapped/D-mannitol.yaml","D-Mannitol"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["HETEROTROPHIC_MEDIUM_H3P.yaml","heterotrophic_medium_h3p"],["MGL.yaml","MGL"],["Modified_YM.yaml","Modified YM"],["NF.yaml","NF"],["NL-CCM.yaml","NL-CCM"],["NLDM_defined.yaml","NLDM_defined"]]},{"id":"CHEBI:15741","l":"succinic acid","na":2,"nb":16,"a":[["mapped/Sodium_Succinate_Dibasic.yaml","Sodium succinate dibasic"],["mapped/Succinic_Acid.yaml","Succinic acid"]],"b":[["AQUASPIRILLUM_MEDIUM_II.yaml","aquaspirillum_medium_ii"],["DESULFUROBACTERIUM_MEDIUM.yaml","desulfurobacterium_medium"],["MAGNETOSPIRILLUM_MEDIUM.yaml","magnetospirillum_medium"],["MG_minimal_media.yaml","MG minimal media"],["MG_minimal_media_noIron.yaml","MG minimal media noIron"],["PETROBACTER_SUCCINIMANDENS_MEDIUM.yaml","petrobacter_succinimandens_medium"]]},{"id":"CHEBI:17596","l":"inosine","na":2,"nb":16,"a":[["mapped/Inosine.yaml","Inosine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["MCD_Medium.yaml","mcd_medium"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:63017","l":"sodium L-tartrate","na":2,"nb":16,"a":[["mapped/Na-tartrate.yaml","Na-tartrate"],["mapped/Sodium_Tartrate.yaml","Sodium tartrate"]],"b":[["BLASTOCOCCUS_AGGREGATUS_MEDIUM.yaml","blastococcus_aggregatus_medium"],["FLEXIBACTER_MEDIUM.yaml","flexibacter_medium"],["MJ_YTCT_MEDIUM.yaml","mj_ytct_medium"],["Medium_for_Freshwater_Flexibacteria.yaml","medium_for_freshwater_flexibacteria"],["Medium_for_Marine_Flexibacteria.yaml","medium_for_marine_flexibacteria"],["Modified_289_medium.yaml","modified_289_medium"]]},{"id":"CHEBI:17750","l":"glycine betaine","na":2,"nb":15,"a":[["mapped/Betaine_Hydrochloride.yaml","Betaine hydrochloride"],["mapped/Betaine_X_H2o.yaml","Betaine x H2O"]],"b":[["CUNICULIPLASMA_MEDIUM.yaml","cuniculiplasma_medium"],["MALEDIVIBACTER_MEDIUM.yaml","maledivibacter_medium"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"]]},{"id":"CHEBI:18222","l":"xylose","na":2,"nb":14,"a":[["mapped/Glucose_Xylose.yaml","Glucose + Xylose"],["mapped/Xylose.yaml","Xylose"]],"b":[["COLON_EXTRACT_MEDIUM.yaml","colon_extract_medium"],["MODIFIED_CALDICELLULOSIRUPTOR_MEDIUM.yaml","modified_caldicellulosiruptor_medium"],["MRSsi.yaml","mrssi"],["Thermotoga_hypogea_medium.yaml","thermotoga_hypogea_medium"],["batch_cultivation_medium_for_a28.yaml","batch_cultivation_medium_for_a28"],["batch_cultivation_medium_for_ta1.yaml","batch_cultivation_medium_for_ta1"]]},{"id":"CHEBI:37166","l":"xylan","na":2,"nb":14,"a":[["mapped/Xylan.yaml","Xylan"],["unmapped/Larchwood_Xylan.yaml","Larchwood xylan"]],"b":[["CLOSTRIDIUM_AEROTOLERANS_MEDIUM.yaml","clostridium_aerotolerans_medium"],["TREPONEMA_THERMOPHILUM_MEDIUM.yaml","treponema_thermophilum_medium"],["VXG_GELLAN.yaml","vxg_gellan"],["XED_Agar.yaml","xed_agar"],["XYLAN_MEDIUM.yaml","xylan_medium"],["Xy_agar.yaml","xy_agar"]]},{"id":"CHEBI:16040","l":"cytosine","na":2,"nb":13,"a":[["mapped/Cytosine.yaml","Cytosine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:18237","l":"glutamic acid","na":2,"nb":13,"a":[["mapped/4_Carbon_Mix.yaml","4 Carbon Mix"],["mapped/Glutamic_Acid.yaml","Glutamic acid"]],"b":[["ACANTHAMOEBA_MEDIUM.yaml","acanthamoeba_medium"],["HALISCOMENOBACTER_MEDIUM.yaml","haliscomenobacter_medium"],["LENTIBACILLUS_MEDIUM.yaml","lentibacillus_medium"],["McAA_formate_No_pABA.yaml","McAA formate No pABA"],["NATRONOBACTERIUM_MEDIUM.yaml","natronobacterium_medium"],["PSA_medium.yaml","psa_medium"]]},{"id":"CHEBI:65327","l":"D-xylose","na":2,"nb":13,"a":[["mapped/D-xylose.yaml","D-Xylose"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["CALDANAEROVIRGA_MEDIUM.yaml","caldanaerovirga_medium"],["HELMUTKOENIGIA_MEDIUM.yaml","helmutkoenigia_medium"],["MAGNETOSPIRILLUM_MEDIUM.yaml","magnetospirillum_medium"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"]]},{"id":"CHEBI:53437","l":"nickel sulfate hexahydrate","na":2,"nb":12,"a":[["mapped/Nickel_II_sulfate_hexahydrate.yaml","Nickel (II) sulfate hexahydrate"],["mapped/Niso4_X_6_H2o.yaml","NiSO4 x 6 H2O"]],"b":[["Dv_base_medium.yaml","Dv base medium"],["LS4D__75fe5623.yaml","LS4D"],["MELiSSA_defined_50mMCarbonate_noCarbon.yaml","MELiSSA defined 50mMCarbonate noCarbon"],["MELiSSA_defined_Malic_noNitrogen_phosphatebuffered.yaml","MELiSSA defined Malic noNitrogen phosphatebuffered"],["MELiSSA_defined_noCarbon.yaml","MELiSSA defined noCarbon"],["MELiSSA_defined_noCarbon_noNitrogen_phosphatebuffered.yaml","MELiSSA defined noCarbon noNitrogen phosphatebuffered"]]},{"id":"CHEBI:63686","l":"sodium succinate hexahydrate","na":2,"nb":12,"a":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Sodium_succinate_dibasic_hexahydrate.yaml","Sodium succinate dibasic hexahydrate"]],"b":[["MOPS_minimal_media_Succinate_noNitrogen.yaml","MOPS minimal media Succinate noNitrogen"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:86477","l":"sodium sulfite","na":2,"nb":12,"a":[["mapped/Na2so3.yaml","Na2SO3"],["mapped/Na2so3_X_5_H2o.yaml","Na2SO3 x 5 H2O"]],"b":[["ARCHAEOGLOBUS_NEPTUNIUS_MEDIUM.yaml","archaeoglobus_neptunius_medium"],["ARCHAEOGLOBUS_VENEFICUS_MEDIUM.yaml","archaeoglobus_veneficus_medium"],["DESULFONATRONOSPIRA_MEDIUM.yaml","desulfonatronospira_medium"],["THERMOANAEROBACTER_MEDIUM.yaml","thermoanaerobacter_medium"],["THERMODESULFITIMONAS_MEDIUM.yaml","thermodesulfitimonas_medium"],["archeoglobus_veneficus_medium.yaml","archeoglobus_veneficus_medium"]]},{"id":"CHEBI:16856","l":"glutathione","na":2,"nb":11,"a":[["mapped/Glutathione.yaml","Glutathione"],["mapped/L-Glutathione.yaml","L-Glutathione"]],"b":[["CDM_LP.yaml","cdm_lp"],["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"],["Modified_D58_medium.yaml","modified_d58_medium"],["SULFOBACILLUS_DISULFIDOOXIDANS_MEDIUM.yaml","sulfobacillus_disulfidooxidans_medium"],["clostridium_thermocellum_medium__d9fc1f82.yaml","clostridium_thermocellum_medium"]]},{"id":"CHEBI:17368","l":"hypoxanthine","na":2,"nb":11,"a":[["mapped/Hypoxanthine.yaml","Hypoxanthine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["CDM_LP.yaml","cdm_lp"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:232425","l":"monosodium L-glutamate hydrate","na":2,"nb":11,"a":[["mapped/Sodium_Glutamate_Monohydrate.yaml","Sodium glutamate monohydrate"],["mapped/Sodium_L-glutamate.yaml","Sodium L-glutamate"]],"b":[["Meiothermus_hypogaeus_MEDIUM.yaml","meiothermus_hypogaeus_medium"],["Modified_Marine_Medium_For_Dethiosulfobacter.yaml","modified_marine_medium_for_dethiosulfobacter"],["halobacteria_starch_medium__4681700b.yaml","halobacteria_starch_medium"],["modified_marine_medium_for_dethiosulfobacter__3e9fd0fe.yaml","modified_marine_medium_for_dethiosulfobacter"],["modified_thermus_sv_medium__55aa403e.yaml","modified_thermus_sv_medium"],["thermus_medium__51bec529.yaml","thermus_medium"]]},{"id":"CHEBI:48607","l":"lithium chloride","na":2,"nb":11,"a":[["mapped/Licl.yaml","LiCl"],["mapped/Lithium_Chloride_Hydrate.yaml","Lithium chloride hydrate"]],"b":[["Chromatium_Medium.yaml","chromatium_medium"],["RECTINEMA_SUBTERRANEUM_MEDIUM.yaml","rectinema_subterraneum_medium"],["modified_1_5_sws_casein_starch_medium.yaml","modified_1_5_sws_casein_starch_medium"],["modified_vy_2_agar.yaml","modified_vy_2_agar"],["obsidian_pool_fermentor_opf_medium_modified_from_m_b_allen_1959.yaml","obsidian_pool_fermentor_opf_medium_modified_from_m_b_allen_1959"],["s88_vitamins.yaml","s88_vitamins"]]},{"id":"CHEBI:17712","l":"9H-xanthine","na":2,"nb":10,"a":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Xanthine.yaml","Xanthine"]],"b":[["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["ZMB.yaml","ZMB"],["ZMB_ALS.yaml","ZMB ALS"]]},{"id":"CHEBI:16349","l":"L-citrulline","na":2,"nb":9,"a":[["mapped/L-citrulline.yaml","L-Citrulline"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"]]},{"id":"CHEBI:16704","l":"uridine","na":2,"nb":9,"a":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Uridine.yaml","Uridine"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"]]},{"id":"CHEBI:31346","l":"calcium sulfate","na":2,"nb":9,"a":[["mapped/Caso4.yaml","CaSO4"],["mapped/Caso4_X_7_H2o.yaml","CaSO4 x 7 H2O"]],"b":[["BEGGIATOA_MEDIUM.yaml","beggiatoa_medium"],["MINERAL_MEDIUM_WITH_GLUCOSE.yaml","mineral_medium_with_glucose"],["THIOTHRIX_MEDIUM.yaml","thiothrix_medium"],["anaerobic_mineral_medium_with_yeast_extract__5d534c46.yaml","anaerobic_mineral_medium_with_yeast_extract"],["anaerotignum_medium__bcb5094d.yaml","anaerotignum_medium"],["mineral_medium_with_glucose__bf4463a4.yaml","mineral_medium_with_glucose"]]},{"id":"CHEBI:39005","l":"2-(N-morpholino)ethanesulfonic acid","na":2,"nb":9,"a":[["mapped/MES_Hydrat.yaml","MES Hydrat"],["mapped/Mes_2-_N-morpholino_Ethane_Sulfonic_Acid.yaml","MES [2-(N-morpholino) ethane sulfonic acid]"]],"b":[["DESULFUROBACTERIUM_ATLANTICUM_MEDIUM.yaml","desulfurobacterium_atlanticum_medium"],["DESULFUROBACTERIUM_CRINIFEX_MEDIUM.yaml","desulfurobacterium_crinifex_medium"],["DESULFUROBACTERIUM_INDICUM_MEDIUM.yaml","desulfurobacterium_indicum_medium"],["DESULFUROBACTERIUM_MEDIUM.yaml","desulfurobacterium_medium"],["Medium_MYGS.yaml","medium_mygs"],["THERMODESULFOBACTERIUM_HYDROGENIPHILUM_MEDIUM.yaml","thermodesulfobacterium_hydrogeniphilum_medium"]]},{"id":"CHEBI:17562","l":"cytidine","na":2,"nb":8,"a":[["mapped/Cytidine.yaml","Cytidine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"]]},{"id":"CHEBI:232797","l":"trehalose dihydrate","na":2,"nb":8,"a":[["mapped/D-trehalose_Dihydrate.yaml","D-Trehalose dihydrate"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["Agro_defined_trehalose.yaml","Agro defined trehalose"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:16335","l":"adenosine","na":2,"nb":7,"a":[["mapped/Adenosine.yaml","Adenosine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"]]},{"id":"CHEBI:16610","l":"spermidine","na":2,"nb":7,"a":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/spermidine.yaml","spermidine"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"]]},{"id":"CHEBI:17201","l":"glycylglycine","na":2,"nb":7,"a":[["mapped/Glycyl-glycine.yaml","Glycyl-glycine"],["mapped/Glycylglycine.yaml","Glycylglycine"]],"b":[["CHLOROFLEXUS_AGGREGANS_MEDIUM.yaml","chloroflexus_aggregans_medium"],["chloroflexus_aggregans_medium__59ae5520.yaml","chloroflexus_aggregans_medium"],["chloroflexus_aggregans_medium__efe0ec46.yaml","chloroflexus_aggregans_medium"],["chloroflexus_medium__cb6e8339.yaml","chloroflexus_medium"],["chloroflexus_medium_modified.yaml","chloroflexus_medium_modified"],["chloroflexus_medium_modified__27d9951e.yaml","chloroflexus_medium_modified"]]},{"id":"CHEBI:17309","l":"pectin","na":2,"nb":7,"a":[["mapped/PY-pectin.yaml","PY-pectin"],["mapped/Pectin.yaml","Pectin"]],"b":[["MEDIUM_FOR_TREPONEMA_PECTINOVORUM.yaml","medium_for_treponema_pectinovorum"],["MODIFIED_OTI_MEDIUM.yaml","modified_oti_medium"],["PPM.yaml","ppm"],["medium_for_treponema_pectinovorum__e5f7afef.yaml","medium_for_treponema_pectinovorum"],["oteb_medium.yaml","oteb_medium"],["pectin_medium__d8bc472f.yaml","pectin_medium"]]},{"id":"CHEBI:39061","l":"ACES","na":2,"nb":7,"a":[["mapped/Aces.yaml","ACES"],["mapped/N-_2-acetamido-2-aminoethanesulfonic_Acid.yaml","N-(2-acetamido)-2-aminoethanesulfonic acid"]],"b":[["BCYE_alpha_agar.yaml","bcye_alpha_agar"],["BM7_MEDIUM.yaml","bm7_medium"],["BOSEA_MEDIUM.yaml","bosea_medium"],["CMM.yaml","cmm"],["GILLIAMELLA_MEDIUM.yaml","gilliamella_medium"],["bcye_agar__8bbb67d5.yaml","bcye_agar"]]},{"id":"ENVO:00002149","l":"sea water","na":7,"nb":2,"a":[["mapped/Filtered_Seawater.yaml","Filtered Seawater"],["mapped/Nacl.yaml","NaCl"],["mapped/Natural_Sea_Water.yaml","Natural sea water"],["mapped/Pasteurized_Seawater.yaml","Pasteurized Seawater"],["mapped/Sea_Water.yaml","Sea water"],["mapped/Seawater.yaml","Seawater"]],"b":[["PE.yaml","pe"],["f_2.yaml","f_2"]]},{"id":"CHEBI:15891","l":"taurine","na":2,"nb":6,"a":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Taurine.yaml","Taurine"]],"b":[["MODIFIED_MV_MEDIUM.yaml","modified_mv_medium"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:18012","l":"fumaric acid","na":2,"nb":6,"a":[["mapped/Corn_Steep_Liquor_Glucose_Fumarate.yaml","Corn Steep Liquor + Glucose + Fumarate"],["mapped/Fumaric_Acid.yaml","Fumaric acid"]],"b":[["Brucella_broth_with_formate_and_fumarate.yaml","brucella_broth_with_formate_and_fumarate"],["TRICHLOROMONAS_MEDIUM.yaml","trichloromonas_medium"],["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"],["jcm_medium_no_1264.yaml","jcm_medium_no_1264"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"],["togo_medium_m1360.yaml","togo_medium_m1360"]]},{"id":"CHEBI:24996","l":"lactate","na":2,"nb":6,"a":[["mapped/Glucose_Lactate.yaml","Glucose + Lactate"],["mapped/Lactate.yaml","Lactate"]],"b":[["ARCOBACTER_ANAEROPHILUS_MEDIUM.yaml","arcobacter_anaerophilus_medium"],["defined_freshwater_medium_cocl2__f0ffbcc6.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__41b1d433.yaml","defined_freshwater_medium_coso4"],["fermentation_medium_lactate_nh4cl.yaml","fermentation_medium_lactate_nh4cl"],["modified_m1_medium_with_20_mm_lactate_pinchuk_et_al.yaml","modified_m1_medium_with_20_mm_lactate_pinchuk_et_al"],["modified_m1_medium_with_lactate_and_glycine_no_nh4cl.yaml","modified_m1_medium_with_lactate_and_glycine_no_nh4cl"]]},{"id":"CHEBI:27592","l":"ectoine","na":2,"nb":6,"a":[["mapped/Ectoine.yaml","Ectoine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["modified_m63_medium_with_ectoine_and_2_5_m_nacl.yaml","modified_m63_medium_with_ectoine_and_2_5_m_nacl"]]},{"id":"CHEBI:506227","l":"N-acetyl-D-glucosamine","na":2,"nb":6,"a":[["mapped/N-acetyl-d-glucosamine.yaml","N-Acetyl-D-glucosamine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["ANAEROBACCA_MEDIUM.yaml","anaerobacca_medium"],["BSK_MEDIUM.yaml","bsk_medium"],["NATRONOARCHAEA_MEDIUM_WITH_GLUCOSAMINE.yaml","natronoarchaea_medium_with_glucosamine"],["barbour_sfoenner_kelly_bsk_ii_medium.yaml","barbour_sfoenner_kelly_bsk_ii_medium"],["m30__354deb2e.yaml","m30"],["modified_bsk_medium__578ddf1c.yaml","modified_bsk_medium"]]},{"id":"CHEBI:62345","l":"L-rhamnose","na":2,"nb":6,"a":[["mapped/L-Rhamnose_Monohydrate.yaml","L-Rhamnose monohydrate"],["mapped/L-rhamnose.yaml","L-Rhamnose"]],"b":[["CLOSTRIDIUM_METHYLPENTOSUM_MEDIUM.yaml","clostridium_methylpentosum_medium"],["clostridium_methylpentosum_medium__906d6f78.yaml","clostridium_methylpentosum_medium"],["freshwater_medium_with_rhamnose__21889617.yaml","freshwater_medium_with_rhamnose"],["liquid_mm_with_rhamnose_hodgson_et_al.yaml","liquid_mm_with_rhamnose_hodgson_et_al"],["minimal_media__805aefdd.yaml","minimal_media"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:15729","l":"L-ornithine","na":2,"nb":5,"a":[["mapped/L-ornithine.yaml","L-Ornithine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:16119","l":"shikimic acid","na":2,"nb":5,"a":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Shikimic_Acid.yaml","Shikimic Acid"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:16750","l":"guanosine","na":2,"nb":5,"a":[["mapped/Guanosine.yaml","Guanosine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:18107","l":"xanthosine","na":2,"nb":5,"a":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Xanthosine.yaml","Xanthosine"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:229203","l":"Trigonelline HCl","na":2,"nb":5,"a":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Trigonelline_HCl.yaml","Trigonelline HCl"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:31404","l":"Citric acid monohydrate","na":2,"nb":5,"a":[["mapped/Citric_Acid_X_H2o.yaml","Citric acid x H2O"],["mapped/Citric_Acidh2o.yaml","Citric Acid•H2O"]],"b":[["Allen_medium.yaml","allen_medium"],["EMA_medium.yaml","ema_medium"],["bg11_ph9_0.yaml","bg11_ph9_0"],["rae_medium__0edae5c3.yaml","rae_medium"],["rae_medium__ed344660.yaml","rae_medium"]]},{"id":"CHEBI:45996","l":"ribothymidine","na":2,"nb":5,"a":[["mapped/5-methyluridine.yaml","5-methyluridine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:16870","l":"choline alfoscerate","na":2,"nb":4,"a":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Sn-glycero-3-phosphocholine.yaml","sn-glycero-3-phosphocholine"]],"b":[["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:16991","l":"deoxyribonucleic acid","na":2,"nb":4,"a":[["mapped/Deoxyribonucleic_Acid_From_Herring_Sperm.yaml","Deoxyribonucleic acid from herring sperm"],["mapped/Fish-sperm_Dna.yaml","Fish-Sperm DNA"]],"b":[["PH_MEDIUM.yaml","ph_medium"],["sp4_z_medium__eae01184.yaml","sp4_z_medium"],["ureaplasma_medium__abc787f9.yaml","ureaplasma_medium"],["ureaplasma_medium__de7f9c49.yaml","ureaplasma_medium"]]},{"id":"CHEBI:172431","l":"Acetyl-Glu","na":2,"nb":4,"a":[["mapped/N-acetyl-glutamic_Acid.yaml","N-Acetyl-glutamic acid"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:35458","l":"cerium trichloride","na":2,"nb":4,"a":[["mapped/Cecl3.yaml","CeCl3"],["mapped/Cecl3_X_7_H2o.yaml","CeCl3 x 7 H2O"]],"b":[["m39_methylomonas_medium__d2371b94.yaml","m39_methylomonas_medium"],["methyloceanibacter_medium_nacl_danms.yaml","methyloceanibacter_medium_nacl_danms"],["methylotroph_medium__787fcb8b.yaml","methylotroph_medium"],["verrucomicrobium_candidatus_medium_kam1.yaml","verrucomicrobium_candidatus_medium_kam1"]]},{"id":"CHEBI:35704","l":"N(2)-acetyl-L-lysine","na":2,"nb":4,"a":[["mapped/N-acetyl-lysine.yaml","n-Acetyl-lysine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:47966","l":"aldehydo-N-acetylmuramic acid","na":2,"nb":4,"a":[["mapped/N-acetyl-muramic_Acid.yaml","n-Acetyl-muramic acid"],["mapped/N-acetylmuramic_Acid.yaml","N-acetylmuramic acid"]],"b":[["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:66872","l":"potassium fluoride","na":2,"nb":4,"a":[["mapped/Kf.yaml","KF"],["mapped/Potassium_Fluoride.yaml","potassium fluoride"]],"b":[["SULFURIMONAS_JS_MEDIUM.yaml","sulfurimonas_js_medium"],["SULFURIMONAS_TB_MEDIUM.yaml","sulfurimonas_tb_medium"],["ethane_c_medium__2510f74f.yaml","ethane_c_medium"],["sulfurimonas_js_medium__93c986f9.yaml","sulfurimonas_js_medium"]]},{"id":"CHEBI:73685","l":"N(2)-acetylglutamine","na":2,"nb":4,"a":[["mapped/N-acetyl-glutamine.yaml","n-Acetyl-glutamine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:9532","l":"thiamine(1+) diphosphate","na":2,"nb":4,"a":[["mapped/02_Thiamine_Pyrophosphate.yaml","0.2% Thiamine pyrophosphate"],["mapped/Thiamine_pyrophosphate.yaml","Thiamine pyrophosphate"]],"b":[["CTM_MEDIUM.yaml","ctm_medium"],["MODIFIED_NOS_MEDIUM.yaml","modified_nos_medium"],["TREPONEMA_ISOPTEROCOLA_MEDIUM.yaml","treponema_isopterocola_medium"],["glucose_sulfide_medium__486fbf43.yaml","glucose_sulfide_medium"]]},{"id":"CHEBI:16113","l":"cholesterol","na":2,"nb":3,"a":[["mapped/Cholesterol_Lipid_Concentrate.yaml","cholesterol lipid concentrate"],["mapped/cholesterol.yaml","cholesterol"]],"b":[["CDM_LP.yaml","cdm_lp"],["Nematode_growth_medium_agar.yaml","Nematode growth medium agar"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:17909","l":"polysulfur","na":2,"nb":3,"a":[["mapped/Sulfur_Powder.yaml","Sulfur (powder)"],["mapped/Sulphur.yaml","Sulphur"]],"b":[["THERMOCOCCUS_MEDIUM.yaml","thermococcus_medium"],["THERMOCOCCUS_WAIOTAPUENSE_MEDIUM.yaml","thermococcus_waiotapuense_medium"],["desulfurococcus_medium__dbcbba45.yaml","desulfurococcus_medium"]]},{"id":"CHEBI:18139","l":"trimethylamine","na":3,"nb":2,"a":[["mapped/Formatetrimethylamine.yaml","Formate+trimethylamine"],["mapped/H2trimethylamine.yaml","H2+trimethylamine"],["mapped/Trimethylamine.yaml","Trimethylamine"]],"b":[["methanogens_saline_water_medium__61ede417.yaml","methanogens_saline_water_medium"],["sulfate_free_metako_medium__b4a668be.yaml","sulfate_free_metako_medium"]]},{"id":"CHEBI:2682","l":"amphotericin B","na":2,"nb":3,"a":[["mapped/Amphotericin_B.yaml","Amphotericin B"],["unmapped/Amphotericin.yaml","Amphotericin"]],"b":[["HELICOBACTER_MEDIUM.yaml","helicobacter_medium"],["brain_heart_infusion_agar_upplemented_with_10_calf_blood_and_antibiotics.yaml","brain_heart_infusion_agar_upplemented_with_10_calf_blood_and_antibiotics"],["eagles_minimum_essential_medium_mem_containing_antibiotics_and_fetal_bovine_serum.yaml","eagles_minimum_essential_medium_mem_containing_antibiotics_and_fetal_bovine_serum"]]},{"id":"CHEBI:30915","l":"2-oxoglutaric acid","na":3,"nb":2,"a":[["mapped/A-Ketoglutaric_Acid_Disodium_Salt_Hydrate.yaml","a-Ketoglutaric acid disodium salt hydrate"],["mapped/Alpha-ketoglutaric_Acid.yaml","alpha-ketoglutaric acid"],["mapped/Na2_Alpha-ketoglutarate.yaml","Na2 alpha-ketoglutarate"]],"b":[["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"],["medium_for_tick_cells_rickettsia.yaml","medium_for_tick_cells_rickettsia"]]},{"id":"CHEBI:53424","l":"polysorbate 20","na":2,"nb":3,"a":[["mapped/PYG-002_Tween_80.yaml","PYG-0.02% Tween 80"],["mapped/Tween_20.yaml","Tween 20"]],"b":[["RCH2_defined_Tween.yaml","RCH2 defined Tween"],["marine_agar_with_1_tween_20.yaml","marine_agar_with_1_tween_20"],["marine_agar_with_1_tween_20__bda33fd5.yaml","marine_agar_with_1_tween_20"]]},{"id":"CHEBI:82664","l":"iron(0)","na":2,"nb":3,"a":[["mapped/Iron.yaml","Iron"],["mapped/Iron_Powder.yaml","Iron powder"]],"b":[["DESULFOHALOTOMACULUM_MEDIUM.yaml","desulfohalotomaculum_medium"],["THERMODESULFOVIBRIO_MEDIUM_FOR_N1.yaml","thermodesulfovibrio_medium_for_n1"],["desulfosporosinus_acidodurans_medium__6b582775.yaml","desulfosporosinus_acidodurans_medium"]]},{"id":"KEGG:mg2","l":"Cl-","na":2,"nb":3,"a":[["mapped/Magnesium%282%29.yaml","Magnesium(2+)"],["mapped/Magnesium.yaml","Magnesium"]],"b":[["Vogels_Medium_N.yaml","vogels_medium_n"],["tap_auto.yaml","tap_auto"],["tap_hetero_mixo.yaml","tap_hetero_mixo"]]},{"id":"CHEBI:132103","l":"sodium perchlorate","na":2,"nb":2,"a":[["mapped/Sodium_Perchlorate.yaml","Sodium perchlorate"],["mapped/Sodium_Perchlorate_Monohydrate.yaml","Sodium perchlorate monohydrate"]],"b":[["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["fwm_medium_perchlorate.yaml","fwm_medium_perchlorate"]]},{"id":"CHEBI:15354","l":"choline","na":2,"nb":2,"a":[["mapped/Choline.yaml","Choline"],["unmapped/Cholinium_Alpha_Ketoglutarate.yaml","Cholinium alpha ketoglutarate"]],"b":[["CDM_LP.yaml","cdm_lp"],["HYPHOMICROBIUM_METHYLOVORUM_MEDIUM.yaml","hyphomicrobium_methylovorum_medium"]]},{"id":"CHEBI:17824","l":"propan-2-ol","na":2,"nb":2,"a":[["mapped/2-propanolCO2.yaml","2-propanol+CO2"],["mapped/Isopropyl_Alcohol.yaml","Isopropyl alcohol"]],"b":[["METHANOGENIUM_CV_MEDIUM.yaml","methanogenium_cv_medium"],["METHANOSPIRILLUM_SK_MEDIUM.yaml","methanospirillum_sk_medium"]]},{"id":"CHEBI:18024","l":"D-galacturonic acid","na":2,"nb":2,"a":[["mapped/D-Galacturonic_Acid_Monohydrate.yaml","D-Galacturonic Acid monohydrate"],["mapped/D-galacturonic_Acid.yaml","D-galacturonic acid"]],"b":[["minimal_media__805aefdd.yaml","minimal_media"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:30746","l":"benzoic acid","na":2,"nb":2,"a":[["mapped/4_Carbon_Mix.yaml","4 Carbon Mix"],["mapped/Benzoic_Acid.yaml","benzoic acid"]],"b":[["UGA_defined_4CarbonMix_Nitrate_anaerobic_pH_7.1.yaml","UGA defined 4CarbonMix Nitrate anaerobic pH 7.1"],["togo_medium_m1949.yaml","togo_medium_m1949"]]},{"id":"CHEBI:34535","l":"ampicillin sodium","na":2,"nb":2,"a":[["mapped/Ampicillin_Sodium_Salt.yaml","Ampicillin sodium salt"],["mapped/Na-ampicillin.yaml","Na-ampicillin"]],"b":[["SINGULISPHAERA_MEDIUM.yaml","singulisphaera_medium"],["paludisphaera_borealis_medium_px4.yaml","paludisphaera_borealis_medium_px4"]]},{"id":"CHEBI:39065","l":"bicine","na":2,"nb":2,"a":[["mapped/Bicine.yaml","Bicine"],["mapped/Bicine_Buffer.yaml","BICINE buffer"]],"b":[["MA.yaml","ma"],["s_heliorestis_medium.yaml","s_heliorestis_medium"]]},{"id":"CHEBI:40957","l":"N,N-bis(2-hydroxyethyl)glycine","na":2,"nb":2,"a":[["mapped/Bicine.yaml","Bicine"],["mapped/Bicine_Buffer.yaml","BICINE buffer"]],"b":[["RV5_MEDIUM.yaml","rv5_medium"],["rv5_medium__aac0ea47.yaml","rv5_medium"]]},{"id":"CHEBI:53471","l":"chromium(III) sulfate","na":2,"nb":2,"a":[["mapped/Cr2_So43_X_N_H2o.yaml","Cr2(SO4)3 x n H2O"],["mapped/CrKSO42_X_12_H2O.yaml","CrKSO42 x 12 H2O"]],"b":[["acidihalobacter_prosperus_f5_medium__0fa15dd8.yaml","acidihalobacter_prosperus_f5_medium"],["ferrous_iron_yeast_extract_medium__a821658e.yaml","ferrous_iron_yeast_extract_medium"]]},{"id":"CHEBI:85146","l":"carboxymethylcellulose","na":2,"nb":2,"a":[["mapped/CMC_PY_Horse_Serum.yaml","CMC + PY + Horse Serum"],["mapped/Carboxymethyl_Cellulose.yaml","Carboxymethyl cellulose"]],"b":[["Alicyclobacillus_cellulosilyticus_Medium.yaml","alicyclobacillus_cellulosilyticus_medium"],["CARBOXYMETHYL_CELLULOSE_MEDIUM.yaml","carboxymethyl_cellulose_medium"]]},{"id":"KEGG:ca2","l":"Molybdenum","na":2,"nb":2,"a":[["mapped/Calcium%282%29.yaml","Calcium(2+)"],["mapped/Calcium.yaml","Calcium"]],"b":[["tap_auto.yaml","tap_auto"],["tap_hetero_mixo.yaml","tap_hetero_mixo"]]},{"id":"CHEBI:8806","l":"Resazurin","na":1,"nb":1604,"a":[["mapped/Resazurin.yaml","Resazurin"]],"b":[["1_10_PYGV_MEDIUM_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM.yaml","1_2_sme_medium"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["480G_MEDIUM.yaml","480g_medium"],["480g_medium__e94698e7.yaml","480g_medium"]]},{"id":"CHEBI:76209","l":"sodium sulfide nonahydrate","na":1,"nb":1198,"a":[["mapped/Na2s_X_9_H2o.yaml","Na2S x 9 H2O"]],"b":[["1_2_SME_MEDIUM.yaml","1_2_sme_medium"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["480G_MEDIUM.yaml","480g_medium"],["A1_MEDIUM.yaml","a1_medium"],["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"]]},{"id":"CHEBI:17997","l":"dinitrogen","na":1,"nb":903,"a":[["mapped/Nitrogen_gas.yaml","Nitrogen gas"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_tryptic_soy_broth_anaerobic.yaml","1_2_tryptic_soy_broth_anaerobic"],["480g_medium__e94698e7.yaml","480g_medium"],["8kg_4_medium.yaml","8kg_4_medium"],["ABSS2.yaml","abss2"],["ABYSSISOLIBACTER_MEDIUM.yaml","abyssisolibacter_medium"]]},{"id":"CHEBI:62946","l":"ammonium sulfate","na":1,"nb":816,"a":[["mapped/Nh42so4.yaml","(NH4)2SO4"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1_10_PYGV_MEDIUM_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM.yaml","1_2_sme_medium"],["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"]]},{"id":"CHEBI:32145","l":"sodium hydroxide","na":1,"nb":689,"a":[["mapped/Naoh.yaml","NaOH"]],"b":[["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["2_x_YT_Medium.yaml","2_x_yt_medium"],["ACETIVIBRIO_ALKALICELLULOSI_MEDIUM.yaml","acetivibrio_alkalicellulosi_medium"],["ACETIVIBRIO_MEDIUM.yaml","acetivibrio_medium"],["ACETOBACTERIUM_DEHALOGENANS_MEDIUM.yaml","acetobacterium_dehalogenans_medium"],["ACETOBACTEROIDES_GLYCINOPHILUS_MEDIUM.yaml","acetobacteroides_glycinophilus_medium"]]},{"id":"CHEBI:91244","l":"cobalt(2+) sulfate heptahydrate","na":1,"nb":495,"a":[["mapped/Coso4_X_7_H2o.yaml","CoSO4 x 7 H2O"]],"b":[["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"],["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["ACETOBACTERIUM_DEHALOGENANS_MEDIUM.yaml","acetobacterium_dehalogenans_medium"],["ACETOBACTERIUM_FIMETARIUM_MEDIUM.yaml","acetobacterium_fimetarium_medium"],["ACETOBACTERIUM_MEDIUM.yaml","acetobacterium_medium"]]},{"id":"CHEBI:63043","l":"potassium nitrate","na":1,"nb":281,"a":[["mapped/Kno3.yaml","KNO3"]],"b":[["A2_MEDIUM.yaml","a2_medium"],["A3.yaml","a3"],["ALCALIGENES_XYLOSOXYDANS_MEDIUM_WITH_BENZOATE.yaml","alcaligenes_xylosoxydans_medium_with_benzoate"],["ALGORIPHAGUS_ALKALIPHILUS_MEDIUM.yaml","algoriphagus_alkaliphilus_medium"],["AMMONIFEX_DEGENSII_MEDIUM.yaml","ammonifex_degensii_medium"],["ANAEROBIC_THAUERA_MEDIUM.yaml","anaerobic_thauera_medium"]]},{"id":"CHEBI:132751","l":"thiamine hydrochloride dihydrate","na":1,"nb":260,"a":[["mapped/Thiamine-hcl_X_2_H2o.yaml","Thiamine-HCl x 2 H2O"]],"b":[["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_PYGV_MEDIUM_modified.yaml","1_10_pygv_medium_modified"],["ACETOBACTERIUM_TUNDRAE_MEDIUM.yaml","acetobacterium_tundrae_medium"],["ACETOBACTEROIDES_MEDIUM.yaml","acetobacteroides_medium"],["ALGORIPHAGUS_AQUAEDUCTUS_MEDIUM.yaml","algoriphagus_aquaeductus_medium"],["ANAEROBACTERIUM_MEDIUM.yaml","anaerobacterium_medium"]]},{"id":"CHEBI:26836","l":"sulfuric acid","na":1,"nb":220,"a":[["mapped/H2so4.yaml","H2SO4"]],"b":[["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["9K_MEDIUM.yaml","9k_medium"],["A3.yaml","a3"],["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["ACIDIFERROBACTER_MEDIUM.yaml","acidiferrobacter_medium"],["ACIDIFFEROBACTER_MURCIENSIS_MEDIUM.yaml","acidifferobacter_murciensis_medium"]]},{"id":"CHEBI:35176","l":"zinc sulfate","na":1,"nb":198,"a":[["mapped/Zinc_Sulfate.yaml","Zinc sulfate"]],"b":[["7H9.yaml","7H9"],["ANB_aerobic.yaml","anb_aerobic"],["BACTO_MIDDLEBROOK_7H9_BROTH.yaml","bacto_middlebrook_7h9_broth"],["Basic_mineral_medium.yaml","basic_mineral_medium"],["CAMM.yaml","camm"],["CDM_for_Continuous_Cultivation.yaml","cdm_for_continuous_cultivation"]]},{"id":"CHEBI:86463","l":"potassium aluminium sulfate","na":1,"nb":197,"a":[["mapped/Alk_So42.yaml","AlK(SO4)2"]],"b":[["ACIDITHIOBACILLUS_FERRIVORANS_MEDIUM.yaml","acidithiobacillus_ferrivorans_medium"],["ARCHAEOGLOBUS_PROFUNDUS_MEDIUM.yaml","archaeoglobus_profundus_medium"],["AS_medium.yaml","as_medium"],["A_medium.yaml","a_medium"],["C5BEL_MEDIUM.yaml","c5bel_medium"],["DETHIOSULFOVIBRIO_PEPTIDOVORANS_MEDIUM.yaml","dethiosulfovibrio_peptidovorans_medium"]]},{"id":"CHEBI:32035","l":"potassium hydroxide","na":1,"nb":179,"a":[["mapped/Koh.yaml","KOH"]],"b":[["225m1_medium__5109009b.yaml","225m1_medium"],["225m1_medium__936a42af.yaml","225m1_medium"],["ALCALIGENES_XYLOSOXYDANS_MEDIUM_WITH_BENZOATE.yaml","alcaligenes_xylosoxydans_medium_with_benzoate"],["ALKALIPHILUS_CROTONATOXIDANS_MEDIUM.yaml","alkaliphilus_crotonatoxidans_medium"],["BB.yaml","bb"],["BELH1_MEDIUM.yaml","belh1_medium"]]},{"id":"CHEBI:63004","l":"sodium bromide","na":1,"nb":175,"a":[["mapped/Nabr.yaml","NaBr"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mh_medium.yaml","15_mh_medium"],["1_2_SME_MEDIUM.yaml","1_2_sme_medium"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"]]},{"id":"KEGG:btn","l":"","na":1,"nb":149,"a":[["mapped/Biotin.yaml","Biotin"]],"b":[["Asp2.yaml","asp2"],["CAMM.yaml","camm"],["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["FWAFC.yaml","fwafc"],["Gotz_minimal_medium_with_malate.yaml","gotz_minimal_medium_with_malate"]]},{"id":"CHEBI:76181","l":"ferrous ammonium sulfate hexahydrate","na":1,"nb":145,"a":[["mapped/Fe_Nh42_So42_X_6_H2o.yaml","Fe(NH4)2(SO4)2 x 6 H2O"]],"b":[["ACANTHAMOEBA_MEDIUM.yaml","acanthamoeba_medium"],["ACE_MEDIUM.yaml","ace_medium"],["ALKALIPHILUS_CROTONATOXIDANS_MEDIUM.yaml","alkaliphilus_crotonatoxidans_medium"],["ALKALIPHILUS_TRANSVAALENSIS_MEDIUM.yaml","alkaliphilus_transvaalensis_medium"],["ARCHAEOGLOBUS_PROFUNDUS_MEDIUM.yaml","archaeoglobus_profundus_medium"],["ARCHAEOGLOBUS_VENEFICUS_MEDIUM.yaml","archaeoglobus_veneficus_medium"]]},{"id":"CHEBI:36385","l":"strontium dichloride hexahydrate","na":1,"nb":135,"a":[["mapped/Srcl2_X_6_H2o.yaml","SrCl2 x 6 H2O"]],"b":[["1_2_SME_MEDIUM.yaml","1_2_sme_medium"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["1_2_r2a_medium_with_75_artificial_seawater.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["1_2_r2a_medium_with_75_artificial_seawater__5b6dd332.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"]]},{"id":"CHEBI:46756","l":"HEPES","na":1,"nb":130,"a":[["mapped/Hepes.yaml","HEPES"]],"b":[["A2_MEDIUM.yaml","a2_medium"],["ALKALINE_VOGESELLA_MEDIUM.yaml","alkaline_vogesella_medium"],["AURANTIMONAS_MANGANOXYDANS_MEDIUM.yaml","aurantimonas_manganoxydans_medium"],["Allen_medium.yaml","allen_medium"],["BSK_MEDIUM.yaml","bsk_medium"],["CALDICOPROBACTER_MEDIUM.yaml","caldicoprobacter_medium"]]},{"id":"CHEBI:50385","l":"hemin","na":1,"nb":129,"a":[["mapped/Haemin.yaml","Haemin"]],"b":[["ABB.yaml","ABB"],["ACY.yaml","ACY"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["BGDM.yaml","bgdm"],["BHIS.yaml","bhis"],["BHIS_CaCl2.yaml","BHIS_CaCl2"]]},{"id":"CHEBI:3311","l":"calcium carbonate","na":1,"nb":117,"a":[["mapped/Caco3.yaml","CaCO3"]],"b":[["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["2_glucose_yeast_extract_peptone_agar.yaml","2_glucose_yeast_extract_peptone_agar"],["2_glucose_yeast_extract_peptone_agar__32ac0304.yaml","2_glucose_yeast_extract_peptone_agar"],["5_G_MEDIUM.yaml","5_g_medium"],["5_g_medium__8aa8a45a.yaml","5_g_medium"],["6_B_MEDIUM.yaml","6_b_medium"]]},{"id":"CHEBI:63940","l":"sodium tungstate","na":1,"nb":116,"a":[["mapped/Na2wo4.yaml","Na2WO4"]],"b":[["ACETOBACTEROIDES_MEDIUM.yaml","acetobacteroides_medium"],["ALKALIPHILUS_CROTONATOXIDANS_MEDIUM.yaml","alkaliphilus_crotonatoxidans_medium"],["AP11MH_medium.yaml","ap11mh_medium"],["ARCHAEOGLOBUS_FULGIDUS_MEDIUM.yaml","archaeoglobus_fulgidus_medium"],["AS_medium.yaml","as_medium"],["A_medium.yaml","a_medium"]]},{"id":"CHEBI:8346","l":"potassium iodide","na":1,"nb":111,"a":[["mapped/Ki.yaml","KI"]],"b":[["1_2_SME_MEDIUM.yaml","1_2_sme_medium"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["ALKALIPHILIC_THERMOCOCCUS_MEDIUM.yaml","alkaliphilic_thermococcus_medium"],["CALDITHRIX_MEDIUM.yaml","caldithrix_medium"]]},{"id":"CHEBI:9754","l":"tris","na":1,"nb":107,"a":[["mapped/Tris_Base.yaml","Tris base"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["5_salt_water_growth_medium.yaml","5_salt_water_growth_medium"],["70_30_sporulation_medium.yaml","70_30_sporulation_medium"],["ACY.yaml","ACY"],["ALCALIGENES_MEDIUM.yaml","alcaligenes_medium"]]},{"id":"CHEBI:63041","l":"manganese(II) chloride","na":1,"nb":105,"a":[["mapped/Mncl2.yaml","MnCl2"]],"b":[["ANB_aerobic.yaml","anb_aerobic"],["Asp2.yaml","asp2"],["Basic_mineral_medium.yaml","basic_mineral_medium"],["CHITINIVIBRIO_MEDIUM.yaml","chitinivibrio_medium"],["CMM.yaml","cmm"],["Defined_minimal_medium.yaml","defined_minimal_medium"]]},{"id":"KEGG:ribflv","l":"","na":1,"nb":105,"a":[["mapped/Riboflavin.yaml","Riboflavin"]],"b":[["CDM_LP.yaml","cdm_lp"],["FWAFC.yaml","fwafc"],["Gotz_minimal_medium_with_malate.yaml","gotz_minimal_medium_with_malate"],["Gotz_minimal_medium_with_mannitol.yaml","gotz_minimal_medium_with_mannitol"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"]]},{"id":"CHEBI:62965","l":"sodium formate","na":1,"nb":103,"a":[["mapped/Na-formate.yaml","Na-formate"]],"b":[["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["AMMONIFEX_THIOPHILUS_MEDIUM.yaml","ammonifex_thiophilus_medium"],["ANAEROFILUM_MEDIUM.yaml","anaerofilum_medium"],["BTU_MEDIUM.yaml","btu_medium"],["Brucella_broth_with_formate_and_fumarate.yaml","brucella_broth_with_formate_and_fumarate"],["CAMPYLOBACTER_RECTUS_MEDIUM.yaml","campylobacter_rectus_medium"]]},{"id":"CHEBI:91258","l":"disodium hydrogenphosphate dihydrate","na":1,"nb":95,"a":[["mapped/Na2hpo4_X_2_H2o.yaml","Na2HPO4 x 2 H2O"]],"b":[["ACANTHAMOEBA_MEDIUM.yaml","acanthamoeba_medium"],["ALKALITHERMOBACTER_MEDIUM.yaml","alkalithermobacter_medium"],["ANAEROBIC_THAUERA_MEDIUM.yaml","anaerobic_thauera_medium"],["ANAEROBRANCA_MEDIUM.yaml","anaerobranca_medium"],["ANNWOODIA_MEDIUM.yaml","annwoodia_medium"],["BACILLUS_SCHLEGELII_HETEROTROPHIC_MEDIUM.yaml","bacillus_schlegelii_heterotrophic_medium"]]},{"id":"CHEBI:32583","l":"calcium sulfate dihydrate","na":1,"nb":90,"a":[["mapped/Caso4_X_2_H2o.yaml","CaSO4 x 2 H2O"]],"b":[["ALGORIPHAGUS_ALKALIPHILUS_MEDIUM.yaml","algoriphagus_alkaliphilus_medium"],["ANOXYBACILLUS_TUNISIENSE_MEDIUM.yaml","anoxybacillus_tunisiense_medium"],["ARTIFICIAL_PILOT_PLANT_WATER_MEDIUM.yaml","artificial_pilot_plant_water_medium"],["ARTIFICIAL_SOIL_AGAR.yaml","artificial_soil_agar"],["Alkaline_halophile_medium.yaml","alkaline_halophile_medium"],["Anaerobic_Mineral_Medium_With_Yeast_Extract.yaml","anaerobic_mineral_medium_with_yeast_extract"]]},{"id":"CHEBI:17836","l":"4-aminobenzoate","na":1,"nb":87,"a":[["mapped/4-aminobenzoate.yaml","4-Aminobenzoate"]],"b":[["Asp2.yaml","asp2"],["CAMM.yaml","camm"],["CDM_LP.yaml","cdm_lp"],["DESULFOMONILE_MEDIUM.yaml","desulfomonile_medium"],["FWAFC.yaml","fwafc"],["Gotz_minimal_medium_with_malate.yaml","gotz_minimal_medium_with_malate"]]},{"id":"CHEBI:86481","l":"sodium thioglycolate","na":1,"nb":86,"a":[["mapped/Na-thioglycolate.yaml","Na-thioglycolate"]],"b":[["ABB.yaml","ABB"],["ACY.yaml","ACY"],["ALKALIPHILUS_MEDIUM.yaml","alkaliphilus_medium"],["AN1_MEDIUM.yaml","an1_medium"],["CATONELLA_UREILYTICA_MEDIUM.yaml","catonella_ureilytica_medium"],["CLOSTRIDIUM_FORMICACETICUM_MEDIUM.yaml","clostridium_formicaceticum_medium"]]},{"id":"CHEBI:64220","l":"monosodium glutamate","na":1,"nb":79,"a":[["mapped/Na_Glutamate.yaml","Na glutamate"]],"b":[["1_ogawa_medium.yaml","1_ogawa_medium"],["1_ogawa_medium__65d0ae34.yaml","1_ogawa_medium"],["ACIDAMINOCOCCUS_FERMENTANS_MEDIUM.yaml","acidaminococcus_fermentans_medium"],["ALKALIBACTERIUM_OLIVAPOVLITICUS.yaml","alkalibacterium_olivapovliticus"],["Alkaline_halophile_medium.yaml","alkaline_halophile_medium"],["BOSEA_THIOOXIDANS_MEDIUM.yaml","bosea_thiooxidans_medium"]]},{"id":"CHEBI:86159","l":"calcium nitrate tetrahydrate","na":1,"nb":74,"a":[["mapped/Ca_No32_X_4_H2o.yaml","Ca(NO3)2 x 4 H2O"]],"b":[["ACIDICALDUS_MEDIUM.yaml","acidicaldus_medium"],["ACIDIPHILIUM_ACIDOPHILUM_MEDIUM.yaml","acidiphilium_acidophilum_medium"],["ACIDITHIOBACILLUS_CALDUS_MEDIUM.yaml","acidithiobacillus_caldus_medium"],["ACIDITHIOBACILLUS_FERRIVORANS_MEDIUM.yaml","acidithiobacillus_ferrivorans_medium"],["ACTINOBACTERIA_MEDIUM.yaml","actinobacteria_medium"],["ARTIFICIAL_SOIL_AGAR.yaml","artificial_soil_agar"]]},{"id":"KEGG:4abz","l":"","na":1,"nb":74,"a":[["mapped/4-aminobenzoate.yaml","4-Aminobenzoate"]],"b":[["Asp2.yaml","asp2"],["CAMM.yaml","camm"],["CDM_LP.yaml","cdm_lp"],["FWAFC.yaml","fwafc"],["Gotz_minimal_medium_with_malate.yaml","gotz_minimal_medium_with_malate"],["Gotz_minimal_medium_with_mannitol.yaml","gotz_minimal_medium_with_mannitol"]]},{"id":"CHEBI:16236","l":"ethanol","na":1,"nb":70,"a":[["mapped/Ethanol.yaml","Ethanol"]],"b":[["ACETOBACTER_PEROXYDANS_MEDIUM.yaml","acetobacter_peroxydans_medium"],["AE_BROTH.yaml","ae_broth"],["ANAEROTIGNUM_NEOPROPIONICUM_MEDIUM.yaml","anaerotignum_neopropionicum_medium"],["Acetobacter_Europaeus_Medium.yaml","acetobacter_europaeus_medium"],["BTU_MEDIUM.yaml","btu_medium"],["CLOSTRIDIUM_KLUYVERI_MEDIUM.yaml","clostridium_kluyveri_medium"]]},{"id":"UBERON:0000955","l":"brain","na":1,"nb":66,"a":[["unmapped/Calf_Brains.yaml","Calf brains"]],"b":[["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"],["1_2_mrs_1_2_bhi_agar.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_mrs_1_2_bhi_agar__56430c33.yaml","1_2_mrs_1_2_bhi_agar"],["70_30_sporulation_medium.yaml","70_30_sporulation_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Anaerobic_Brain_Heart_Infusion_Broth.yaml","anaerobic_brain_heart_infusion_broth"]]},{"id":"CHEBI:86358","l":"manganese(II) sulfate tetrahydrate","na":1,"nb":60,"a":[["mapped/Mnso4_X_4_H2o.yaml","MnSO4 x 4 H2O"]],"b":[["2_5_nacl_gypfk_agar_broth.yaml","2_5_nacl_gypfk_agar_broth"],["ANT.yaml","ant"],["Alkaline_halophile_medium.yaml","alkaline_halophile_medium"],["BEGGIATOA_MEDIUM.yaml","beggiatoa_medium"],["EYGA_MEDIUM.yaml","eyga_medium"],["FYP_medium.yaml","fyp_medium"]]},{"id":"KEGG:glc_D","l":"","na":1,"nb":58,"a":[["mapped/D-glucose.yaml","D-Glucose"]],"b":[["CAMM.yaml","camm"],["CDM_LP.yaml","cdm_lp"],["Calvo_et_al.yaml","calvo_et_al"],["Fry_et_al.yaml","fry_et_al"],["Galani_MM.yaml","galani_mm"],["Kaminskyj_Minimal_Medium.yaml","kaminskyj_minimal_medium"]]},{"id":"CHEBI:30114","l":"aluminium trichloride","na":1,"nb":51,"a":[["mapped/Alcl3.yaml","AlCl3"]],"b":[["CLOSTRIDIUM_ULTUNENSE_MEDIUM.yaml","clostridium_ultunense_medium"],["Chromatium_Medium.yaml","chromatium_medium"],["HALOARCHAEUM_SALINUM_MEDIUM.yaml","haloarchaeum_salinum_medium"],["HALOPHILIC_SOB_MEDIUM.yaml","halophilic_sob_medium"],["HALORHABDUS_MEDIUM.yaml","halorhabdus_medium"],["MALEATE_LIQUID_MEDIUM.yaml","maleate_liquid_medium"]]},{"id":"CHEBI:16135","l":"isobutyric acid","na":1,"nb":49,"a":[["mapped/Isobutyric_Acid.yaml","Isobutyric acid"]],"b":[["ACY.yaml","ACY"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["ANAEROFILUM_MEDIUM.yaml","anaerofilum_medium"],["DESULFONEMA_ISHIMOTOI_MEDIUM.yaml","desulfonema_ishimotoi_medium"],["DESULFUROBACTERIUM_MEDIUM.yaml","desulfurobacterium_medium"]]},{"id":"CHEBI:17418","l":"valeric acid","na":1,"nb":48,"a":[["mapped/Valeric_Acid.yaml","Valeric acid"]],"b":[["ACY.yaml","ACY"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["ANAEROFILUM_MEDIUM.yaml","anaerofilum_medium"],["DESULFUROBACTERIUM_MEDIUM.yaml","desulfurobacterium_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"]]},{"id":"CHEBI:28484","l":"isovaleric acid","na":1,"nb":47,"a":[["mapped/Isovaleric_Acid.yaml","Isovaleric acid"]],"b":[["ACY.yaml","ACY"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["ANAEROFILUM_MEDIUM.yaml","anaerofilum_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"],["METHANOBREVIBACTER_MEDIUM.yaml","methanobrevibacter_medium"]]},{"id":"CHEBI:132112","l":"sodium thiosulfate","na":1,"nb":45,"a":[["mapped/Na2s2o3.yaml","Na2S2O3"]],"b":[["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["ALKALISPIRILLUM_MOBILE_MEDIUM.yaml","alkalispirillum_mobile_medium"],["ANAEROBACULUM_MEDIUM.yaml","anaerobaculum_medium"],["CHROMATIUM_SALEXIGENS_MEDIUM.yaml","chromatium_salexigens_medium"],["ECTOTHIORHODOSPIRA_MAGNA_MEDIUM.yaml","ectothiorhodospira_magna_medium"],["HALOANAEROBIUM_CONGOLENSE_MEDIUM.yaml","haloanaerobium_congolense_medium"]]},{"id":"CHEBI:16199","l":"urea","na":1,"nb":45,"a":[["mapped/Urea.yaml","Urea"]],"b":[["A7_MEDIUM.yaml","a7_medium"],["Agro_defined_trehalose.yaml","Agro defined trehalose"],["BACILLUS_PASTEURII_MEDIUM.yaml","bacillus_pasteurii_medium"],["BM7CO_MEDIUM.yaml","bm7co_medium"],["C41_MEDIUM.yaml","c41_medium"],["CATONELLA_UREILYTICA_MEDIUM.yaml","catonella_ureilytica_medium"]]},{"id":"CHEBI:87009","l":"vanadyl sulfate dihydrate","na":1,"nb":44,"a":[["mapped/Voso4_X_2_H2o.yaml","VOSO4 x 2 H2O"]],"b":[["ATHALASSOTOGA_MEDIUM.yaml","athalassotoga_medium"],["CALDIVIRGA_MEDIUM.yaml","caldivirga_medium"],["CHROMATIUM_TEPIDUM_MEDIUM.yaml","chromatium_tepidum_medium"],["CONEXIVISPHAERA_MEDIUM.yaml","conexivisphaera_medium"],["Caldisphaera_Medium.yaml","caldisphaera_medium"],["FERVIDOBACTERIUM_ISLANDICUM_MEDIUM.yaml","fervidobacterium_islandicum_medium"]]},{"id":"CHEBI:114249","l":"sodium dihydrogenphosphate monohydrate","na":1,"nb":42,"a":[["mapped/Sodium_phosphate_monobasic_monohydrate.yaml","Sodium phosphate monobasic monohydrate"]],"b":[["ALP_defined.yaml","ALP defined"],["ALP_defined_chlorate.yaml","ALP defined chlorate"],["ALP_defined_noN.yaml","ALP defined noN"],["ALP_defined_perchlorate.yaml","ALP defined perchlorate"],["ALP_rich.yaml","ALP rich"],["Chakraborty_Basal.yaml","Chakraborty Basal"]]},{"id":"KEGG:thm","l":"","na":1,"nb":42,"a":[["mapped/Thiamine.yaml","Thiamine"]],"b":[["Kaminskyj_Minimal_Medium.yaml","kaminskyj_minimal_medium"],["M9_Lange.yaml","m9_lange"],["MCD_Medium.yaml","mcd_medium"],["Mops_medium.yaml","mops_medium"],["Synthetic_Medium_C.yaml","synthetic_medium_c"],["Synthetic_Medium_with_15_amino_acids.yaml","synthetic_medium_with_15_amino_acids"]]},{"id":"CHEBI:131531","l":"pyridoxamine hydrochloride","na":1,"nb":40,"a":[["mapped/Pyridoxamine_Hydrochloride.yaml","Pyridoxamine hydrochloride"]],"b":[["ANAEROBIC_CHOLESTEROL_MEDIUM.yaml","anaerobic_cholesterol_medium"],["ANAEROBIC_THAUERA_MEDIUM.yaml","anaerobic_thauera_medium"],["CM1A_Halorubrum_Medium.yaml","cm1a_halorubrum_medium"],["GEMMATIMONAS_MEDIUM.yaml","gemmatimonas_medium"],["LYU03_Medium.yaml","lyu03_medium"],["MEDIUM_FOR_CHLORATE_RESPIRERS.yaml","medium_for_chlorate_respirers"]]},{"id":"CHEBI:15356","l":"cysteine","na":1,"nb":40,"a":[["mapped/Cysteine.yaml","Cysteine"]],"b":[["AMB_MEDIUM.yaml","amb_medium"],["Chopped_Meat_Carbohydrate_Medium.yaml","chopped_meat_carbohydrate_medium"],["Chopped_Meat_Carbohydrate_Medium_w_Tween_80.yaml","chopped_meat_carbohydrate_medium_w_tween_80"],["FRANCISELLA_HALIOTICIDA_MEDIUM.yaml","francisella_halioticida_medium"],["HALOANAEROBIUM_CONGOLENSE_MEDIUM.yaml","haloanaerobium_congolense_medium"],["MCD_Medium.yaml","mcd_medium"]]},{"id":"CHEBI:17905","l":"coenzyme M","na":1,"nb":40,"a":[["mapped/2-mercaptoethanesulfonate.yaml","2-Mercaptoethanesulfonate"]],"b":[["ARCHAEOGLOBUS_INFECTUS_MEDIUM.yaml","archaeoglobus_infectus_medium"],["AROMATOLEUM_MEDIUM.yaml","aromatoleum_medium"],["BACILLUS_INFERNUS_MEDIUM.yaml","bacillus_infernus_medium"],["METHANOHALOPHILUS_PROFUNDI_MEDIUM.yaml","methanohalophilus_profundi_medium"],["METHANOMICROCOCCUS_MEDIUM.yaml","methanomicrococcus_medium"],["METHANONATRONARCHAEUM_MEDIUM.yaml","methanonatronarchaeum_medium"]]},{"id":"KEGG:gly","l":"","na":1,"nb":40,"a":[["mapped/Glycine.yaml","Glycine"]],"b":[["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["RDM.yaml","rdm"]]},{"id":"CHEBI:16709","l":"pyridoxine","na":1,"nb":38,"a":[["mapped/Pyridoxine.yaml","Pyridoxine"]],"b":[["1_10_PYGV_MEDIUM_modified.yaml","1_10_pygv_medium_modified"],["4_yaco_media.yaml","4_yaco_media"],["ANB_aerobic.yaml","anb_aerobic"],["AQUASPIRILLUM_MEDIUM.yaml","aquaspirillum_medium"],["BACTO_MIDDLEBROOK_7H9_BROTH.yaml","bacto_middlebrook_7h9_broth"],["Basic_mineral_medium.yaml","basic_mineral_medium"]]},{"id":"CHEBI:18067","l":"phylloquinone","na":1,"nb":38,"a":[["mapped/Vitamin_K1.yaml","Vitamin K1"]],"b":[["BTU_MEDIUM.yaml","btu_medium"],["Brucella_agar_plates_supplemented_with_hemin_and_vitamin_K1.yaml","brucella_agar_plates_supplemented_with_hemin_and_vitamin_k1"],["COLON_EXTRACT_MEDIUM.yaml","colon_extract_medium"],["Chopped_meat_carbohydrates_with_rumen_fluid.yaml","chopped_meat_carbohydrates_with_rumen_fluid"],["DIALISTER_MEDIUM.yaml","dialister_medium"],["EUBACTERIUM_LENTUM_MEDIUM.yaml","eubacterium_lentum_medium"]]},{"id":"CHEBI:18320","l":"1,4-dithiothreitol","na":1,"nb":38,"a":[["mapped/Dl-dithiothreitol.yaml","DL-Dithiothreitol"]],"b":[["1_2_tryptic_soy_broth_anaerobe.yaml","1_2_tryptic_soy_broth_anaerobe"],["1_2_tryptic_soy_broth_anaerobic__d70593aa.yaml","1_2_tryptic_soy_broth_anaerobic"],["ARCHAEOGLOBUS_INFECTUS_MEDIUM.yaml","archaeoglobus_infectus_medium"],["ARCHAEOGLOBUS_NEPTUNIUS_MEDIUM.yaml","archaeoglobus_neptunius_medium"],["ARCHAEOGLOBUS_SULFATICALLIDUS_MEDIUM.yaml","archaeoglobus_sulfaticallidus_medium"],["CELLULOSILYTICUM_MEDIUM.yaml","cellulosilyticum_medium"]]},{"id":"CHEBI:91260","l":"disodium malate","na":1,"nb":35,"a":[["mapped/Disodium_Malate.yaml","Disodium Malate"]],"b":[["AZOSPIRILLUM_MEDIUM.yaml","azospirillum_medium"],["CreDm1_MEDIUM.yaml","credm1_medium"],["DESULFUROMONAS_ACETOXIDANS_MEDIUM.yaml","desulfuromonas_acetoxidans_medium"],["DICHOTOMICROBIUM_THERMOHALOPHILUM_MEDIUM.yaml","dichotomicrobium_thermohalophilum_medium"],["ECTOTHIORHODOSPIRA_VACUOLATA_MEDIUM.yaml","ectothiorhodospira_vacuolata_medium"],["HALARCHAEUM_MEDIUM_RS94.yaml","halarchaeum_medium_rs94"]]},{"id":"CHEBI:29864","l":"mannitol","na":1,"nb":34,"a":[["mapped/Mannitol.yaml","Mannitol"]],"b":[["ARTHROBACTER_MEDIUM.yaml","arthrobacter_medium"],["AZOTOBACTER_MEDIUM.yaml","azotobacter_medium"],["Acetobacter_xylinus_Medium.yaml","acetobacter_xylinus_medium"],["Gotz_minimal_medium_with_mannitol.yaml","gotz_minimal_medium_with_mannitol"],["MANNITOL_AGAR.yaml","mannitol_agar"],["MNYP_medium.yaml","mnyp_medium"]]},{"id":"CHEBI:76208","l":"sodium sulfide (anhydrous)","na":1,"nb":33,"a":[["mapped/Na2s.yaml","Na2S"]],"b":[["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["CHITINIVIBRIO_MEDIUM.yaml","chitinivibrio_medium"],["DEFERRIBACTER_DESULFURICANS_MEDIUM.yaml","deferribacter_desulfuricans_medium"],["DESULFURISPIRILLUM_MEDIUM.yaml","desulfurispirillum_medium"],["EBA_MEDIUM.yaml","eba_medium"],["ECTOTHIORHODOSPIRA_ABDELMALEKII_MEDIUM.yaml","ectothiorhodospira_abdelmalekii_medium"]]},{"id":"CHEBI:91243","l":"calcium chloride hexahydrate","na":1,"nb":33,"a":[["mapped/Cacl2_X_6_H2o.yaml","CaCl2 x 6 H2O"]],"b":[["1a_Medium.yaml","1a_medium"],["AQUASPIRILLUM_MEDIUM.yaml","aquaspirillum_medium"],["COLBY_AND_ZATHMAN_MEDIUM.yaml","colby_and_zathman_medium"],["Chemically_defined_medium.yaml","chemically_defined_medium"],["FLB_MEDIUM.yaml","flb_medium"],["HALOPHILIC_METHANOTROPHIC_BACTERIUM_MEDIUM.yaml","halophilic_methanotrophic_bacterium_medium"]]},{"id":"CHEBI:27897","l":"tryptophan","na":1,"nb":32,"a":[["mapped/Tryptophan.yaml","Tryptophan"]],"b":[["4_yaco_media.yaml","4_yaco_media"],["ACIDAMINOCOCCUS_FERMENTANS_MEDIUM.yaml","acidaminococcus_fermentans_medium"],["Fry_et_al.yaml","fry_et_al"],["GLUTAMINE_MEDIUM.yaml","glutamine_medium"],["Leitch_et_al.yaml","leitch_et_al"],["MCD_Medium.yaml","mcd_medium"]]},{"id":"CHEBI:16947","l":"citrate(3-)","na":1,"nb":31,"a":[["mapped/Citrate.yaml","Citrate"]],"b":[["E2_medium_with_citrate.yaml","e2_medium_with_citrate"],["M9_minimal_medium_with_citrate.yaml","m9_minimal_medium_with_citrate"],["Vogels_Medium_N.yaml","vogels_medium_n"],["aspartate_salt_schaechter_et_al.yaml","aspartate_salt_schaechter_et_al"],["batch_medium_mattanovich_et_al.yaml","batch_medium_mattanovich_et_al"],["bg11_0_015_mm_iron_shcolnick_2006.yaml","bg11_0_015_mm_iron_shcolnick_2006"]]},{"id":"CHEBI:44115","l":"3-(N-morpholino)propanesulfonic acid","na":1,"nb":31,"a":[["mapped/3-_N-morpholinopropanesulfonic_Acid.yaml","3-(N-morpholino)propanesulfonic acid"]],"b":[["CRBTM_UGA_Aerobic_MOPS.yaml","CRBTM UGA Aerobic MOPS"],["CRBTM_UGA_Anaerobic_MOPS.yaml","CRBTM UGA Anaerobic MOPS"],["DM__5ef4e85d.yaml","DM"],["Dsmz_medium_854.yaml","dsmz_medium_854"],["HIPPEA_MEDIUM.yaml","hippea_medium"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"]]},{"id":"KEGG:met-L","l":"","na":1,"nb":31,"a":[["mapped/L-methionine.yaml","L-Methionine"]],"b":[["CDM_LP.yaml","cdm_lp"],["Mops_medium.yaml","mops_medium"],["RDM.yaml","rdm"],["Song_Optimal_CDM.yaml","song_optimal_cdm"],["Song_cdm.yaml","song_cdm"],["Synthetic_Medium_with_15_amino_acids.yaml","synthetic_medium_with_15_amino_acids"]]},{"id":"CHEBI:30729","l":"ethylenediaminetetraacetatoferrate(1-)","na":1,"nb":30,"a":[["mapped/Fe_Iii-edta.yaml","Fe(III)-EDTA"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["AMS_medium.yaml","ams_medium"],["CY_H_LIQUID_MEDIUM_FOR_MYXOBACTERIA.yaml","cy_h_liquid_medium_for_myxobacteria"],["M5G.yaml","M5G"],["METHYLOBACTER_MEDIUM_M10_XCF.yaml","methylobacter_medium_m10_xcf"],["METHYLOCALDUM_MARINUM_MEDIUM.yaml","methylocaldum_marinum_medium"]]},{"id":"CHEBI:22652","l":"ascorbic acid","na":1,"nb":29,"a":[["mapped/Ascorbic_Acid.yaml","Ascorbic acid"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"],["AROMATOLEUM_MEDIUM.yaml","aromatoleum_medium"],["DESULFOHIMALAYA_MEDIUM.yaml","desulfohimalaya_medium"],["DESULFOVIBRIO_MEDIUM.yaml","desulfovibrio_medium"]]},{"id":"CHEBI:87020","l":"vanadyl sulfate hydrate","na":1,"nb":28,"a":[["mapped/Voso4_X_N_H2o.yaml","VOSO4 x n H2O"]],"b":[["AEROBIC_SULFOLOBALES_MEDIUM_WITHOUT_SULFUR.yaml","aerobic_sulfolobales_medium_without_sulfur"],["Acidianus_medium.yaml","acidianus_medium"],["CYS_Medium_For_YMO722.yaml","cys_medium_for_ymo722"],["METALLIBACTERIUM_MEDIUM.yaml","metallibacterium_medium"],["PYROBACULUM_MEDIUM.yaml","pyrobaculum_medium"],["Sulfolobus_tokodaii_Medium.yaml","sulfolobus_tokodaii_medium"]]},{"id":"KEGG:glyc","l":"","na":1,"nb":28,"a":[["mapped/Glycerol.yaml","Glycerol"]],"b":[["CMM.yaml","cmm"],["M9zb_with_glycerol.yaml","m9zb_with_glycerol"],["Pjc_with_glycerol.yaml","pjc_with_glycerol"],["batch_medium_mattanovich_et_al.yaml","batch_medium_mattanovich_et_al"],["bm_in_glycerol_hodgson_et_al.yaml","bm_in_glycerol_hodgson_et_al"],["chemically_defined_fermentation_medium_20g_glucose_20g_glycerol_12_5g_msg.yaml","chemically_defined_fermentation_medium_20g_glucose_20g_glycerol_12_5g_msg"]]},{"id":"CHEBI:46760","l":"tricine","na":1,"nb":27,"a":[["mapped/Tricine.yaml","Tricine"]],"b":[["2ASW.yaml","2asw"],["2asw__59e92e67.yaml","2asw"],["ASW.yaml","asw"],["ASWP.yaml","aswp"],["Mops_medium.yaml","mops_medium"],["NMM_with_acetate.yaml","nmm_with_acetate"]]},{"id":"CHEBI:59640","l":"N-acetylglucosamine","na":1,"nb":27,"a":[["mapped/N-acetylglucosamine.yaml","N-Acetylglucosamine"]],"b":[["LARKINELLA_ARBORICOLA_MEDIUM.yaml","larkinella_arboricola_medium"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"],["MM3.yaml","mm3"],["Modified_M30_Medium.yaml","modified_m30_medium"],["PLANCTOMYCES_MEDIUM_WITH_DOUBLE_CONCENTRATED_ARTIFICAL_SEA_WATER.yaml","planctomyces_medium_with_double_concentrated_artifical_sea_water"],["PLANCTOMYCES_PYREFORMIS_MEDIUM.yaml","planctomyces_pyreformis_medium"]]},{"id":"CHEBI:64700","l":"trimethylamine hydrochloride","na":1,"nb":27,"a":[["mapped/Trimethylamine-hcl.yaml","Trimethylamine-HCl"]],"b":[["ACETOHALOBIUM_MEDIUM.yaml","acetohalobium_medium"],["HS_TMA.yaml","hs_tma"],["METHANOHALOBIUM_MEDIUM.yaml","methanohalobium_medium"],["METHANOHALOPHILUS_EUHALOBIUS_MEDIUM.yaml","methanohalophilus_euhalobius_medium"],["METHANOHALOPHILUS_HALOPHILUS_MEDIUM.yaml","methanohalophilus_halophilus_medium"],["METHANOHALOPHILUS_PORTUCALENSIS_MEDIUM.yaml","methanohalophilus_portucalensis_medium"]]},{"id":"CHEBI:132108","l":"sodium silicate nonahydrate","na":1,"nb":26,"a":[["mapped/Na2sio3_X_9_H2o.yaml","Na2SiO3 x 9 H2O"]],"b":[["Allen_medium.yaml","allen_medium"],["DISSULFURIMICROBIUM_HYDROTHERMALE_MEDIUM.yaml","dissulfurimicrobium_hydrothermale_medium"],["INORGANIC_MINERAL_MEDIUM_WITH_THIOSULFATE.yaml","inorganic_mineral_medium_with_thiosulfate"],["LEUCOTHRIX_MEDIUM.yaml","leucothrix_medium"],["MARINE_AGAR.yaml","marine_agar"],["METHANE_OXIDIZING_BACTERIUM_MEDIUM.yaml","methane_oxidizing_bacterium_medium"]]},{"id":"CHEBI:15366","l":"acetic acid","na":1,"nb":26,"a":[["mapped/Acetic_Acid.yaml","Acetic acid"]],"b":[["ACY.yaml","ACY"],["AE_BROTH.yaml","ae_broth"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Acetobacter_Europaeus_Medium.yaml","acetobacter_europaeus_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"]]},{"id":"CHEBI:29016","l":"arginine","na":1,"nb":26,"a":[["mapped/Arginine.yaml","Arginine"]],"b":[["ACIDAMINOCOCCUS_FERMENTANS_MEDIUM.yaml","acidaminococcus_fermentans_medium"],["EUBACTERIUM_LENTUM_MEDIUM.yaml","eubacterium_lentum_medium"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["MS15_Medium.yaml","ms15_medium"]]},{"id":"CHEBI:30115","l":"aluminium trichloride hexahydrate","na":1,"nb":26,"a":[["mapped/Alcl3_X_6_H2o.yaml","AlCl3 x 6 H2O"]],"b":[["BACILLUS_INFERNUS_MEDIUM.yaml","bacillus_infernus_medium"],["CALDICELLULOSIRUPTOR_OWENSIS_MEDIUM.yaml","caldicellulosiruptor_owensis_medium"],["DISSULFURIMICROBIUM_HYDROTHERMALE_MEDIUM.yaml","dissulfurimicrobium_hydrothermale_medium"],["G5G6_MEDIUM.yaml","g5g6_medium"],["GHIORSEA_MEDIUM.yaml","ghiorsea_medium"],["GRACILIBACILLUS_MEDIUM.yaml","gracilibacillus_medium"]]},{"id":"CHEBI:30772","l":"butyric acid","na":1,"nb":26,"a":[["mapped/Butyric_Acid.yaml","Butyric acid"]],"b":[["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"],["Mega.yaml","Mega"],["PYG_MEDIUM_WITH_VOLATILE_FATTY_ACIDS.yaml","pyg_medium_with_volatile_fatty_acids"],["RUMEN_BACTERIA_MEDIUM.yaml","rumen_bacteria_medium"]]},{"id":"CHEBI:31991","l":"phenol red","na":1,"nb":26,"a":[["mapped/Phenol_Red.yaml","Phenol red"]],"b":[["FRIIS_MEDIUM.yaml","friis_medium"],["GUYPARKERIA_HYDROTHERMALIS_MEDIUM.yaml","guyparkeria_hydrothermalis_medium"],["GUYPARKERIA_MEDIUM.yaml","guyparkeria_medium"],["Hayflick_medium.yaml","hayflick_medium"],["M1D_Medium.yaml","m1d_medium"],["Mycoplasma_Medium_with_Sucrose.yaml","mycoplasma_medium_with_sucrose"]]},{"id":"CHEBI:15824","l":"D-fructose","na":1,"nb":25,"a":[["mapped/D-fructose.yaml","D-Fructose"]],"b":[["ACETOBACTERIUM_FIMETARIUM_MEDIUM.yaml","acetobacterium_fimetarium_medium"],["ACETOBACTERIUM_TUNDRAE_MEDIUM.yaml","acetobacterium_tundrae_medium"],["ANAEROCOLUMNA_MEDIUM.yaml","anaerocolumna_medium"],["CLOSTRIDIUM_FORMICACETICUM_MEDIUM.yaml","clostridium_formicaceticum_medium"],["CLOSTRIDIUM_LJUNGDAHLII_MEDIUM.yaml","clostridium_ljungdahlii_medium"],["MOORELLA_THERMOACETICA_MEDIUM.yaml","moorella_thermoacetica_medium"]]},{"id":"CHEBI:16811","l":"methionine","na":1,"nb":25,"a":[["mapped/Dl-methionine.yaml","DL-methionine"]],"b":[["Chamberlain_CDM.yaml","chamberlain_cdm"],["DEINOCOCCUS_MEDIUM.yaml","deinococcus_medium"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["MS13_Medium.yaml","ms13_medium"]]},{"id":"CHEBI:17716","l":"lactose","na":1,"nb":25,"a":[["mapped/Lactose.yaml","Lactose"]],"b":[["1298.yaml","1298"],["ALKALINE_CELLULOSE_AGAR.yaml","alkaline_cellulose_agar"],["Basal_synthetic_medium.yaml","basal_synthetic_medium"],["CLOSTRIDIUM_VINCENTII_MEDIUM.yaml","clostridium_vincentii_medium"],["M17_MEDIUM_FOR_LACTIC_STREPTOCOCCI.yaml","m17_medium_for_lactic_streptococci"],["STREPTOCOCCUS_SUIS_MEDIUM.yaml","streptococcus_suis_medium"]]},{"id":"CHEBI:62947","l":"ammonium acetate","na":1,"nb":25,"a":[["mapped/Ammonium_Acetate.yaml","Ammonium acetate"]],"b":[["ARCOBACTER_ANAEROPHILUS_MEDIUM.yaml","arcobacter_anaerophilus_medium"],["CHROMATIUM_TEPIDUM_MEDIUM.yaml","chromatium_tepidum_medium"],["Green_Sulfur_Bacterium_Medium.yaml","green_sulfur_bacterium_medium"],["MEDIUM_FOR_CHLOROBIUM_FERROOXIDANS.yaml","medium_for_chlorobium_ferrooxidans"],["RHODOBACTER_VELDKAMPII_MEDIUM.yaml","rhodobacter_veldkampii_medium"],["RHODOPSEUDOMONAS_SULFOVIRIDIS_MEDIUM.yaml","rhodopseudomonas_sulfoviridis_medium"]]},{"id":"KEGG:ac","l":"","na":1,"nb":25,"a":[["mapped/Acetate.yaml","Acetate"]],"b":[["FWAFC.yaml","fwafc"],["M9ZB_with_acetate.yaml","m9zb_with_acetate"],["NMM_with_acetate.yaml","nmm_with_acetate"],["acetate_minimal_media_zhao.yaml","acetate_minimal_media_zhao"],["cgc_w_acetate.yaml","cgc_w_acetate"],["cgc_w_acetate_glucose.yaml","cgc_w_acetate_glucose"]]},{"id":"CHEBI:131524","l":"manganese(II) sulfate pentahydrate","na":1,"nb":24,"a":[["mapped/Mnso4_X_5_H2o.yaml","MnSO4 x 5 H2O"]],"b":[["Acidianus_manzaensis_Medium_for_Autotrophic_Growth.yaml","acidianus_manzaensis_medium_for_autotrophic_growth"],["Acidianus_manzaensis_Medium_for_Heterotrophic_Growth.yaml","acidianus_manzaensis_medium_for_heterotrophic_growth"],["COLBY_AND_ZATHMAN_MEDIUM.yaml","colby_and_zathman_medium"],["Glucose_minerals_salts_medium.yaml","glucose_minerals_salts_medium"],["HYDROGENOBACTER_HALOPHILUS_MEDIUM.yaml","hydrogenobacter_halophilus_medium"],["LIQUID_BASAL_MEDIUM_FOR_METHANOSARCINA.yaml","liquid_basal_medium_for_methanosarcina"]]},{"id":"CHEBI:15361","l":"pyruvate","na":1,"nb":24,"a":[["mapped/Pyruvate.yaml","Pyruvate"]],"b":[["ARCOBACTER_ANAEROPHILUS_MEDIUM.yaml","arcobacter_anaerophilus_medium"],["CENTENUM_MEDIUM.yaml","centenum_medium"],["CMM.yaml","cmm"],["NMM_with_pyruvate.yaml","nmm_with_pyruvate"],["ams1_pyruvate_glycine.yaml","ams1_pyruvate_glycine"],["ams1_pyruvate_glycine__08b97e38.yaml","ams1_pyruvate_glycine"]]},{"id":"CHEBI:64205","l":"calcium nitrate","na":1,"nb":23,"a":[["mapped/Ca_No32.yaml","Ca(NO3)2"]],"b":[["9K_MEDIUM.yaml","9k_medium"],["9K_WITH_SULFUR_MEDIUM.yaml","9k_with_sulfur_medium"],["9_K_medium.yaml","9_k_medium"],["9_k_medium__c97a7f66.yaml","9_k_medium"],["9k_medium__4af6025b.yaml","9k_medium"],["ACIDIANUS_BRIERLEYI_MEDIUM.yaml","acidianus_brierleyi_medium"]]},{"id":"CHEBI:113455","l":"sodium benzoate","na":1,"nb":22,"a":[["mapped/Na-benzoate.yaml","Na-benzoate"]],"b":[["ALCALIGENES_XYLOSOXYDANS_MEDIUM_WITH_BENZOATE.yaml","alcaligenes_xylosoxydans_medium_with_benzoate"],["AROMATOLEUM_MEDIUM.yaml","aromatoleum_medium"],["BENZOATE_MEDIUM.yaml","benzoate_medium"],["DESULFALLAS_MEDIUM.yaml","desulfallas_medium"],["DESULFATIRHABDIUM_MEDIUM.yaml","desulfatirhabdium_medium"],["DESULFOCARBO_INDIANENSIS_MEDIUM.yaml","desulfocarbo_indianensis_medium"]]},{"id":"CHEBI:63076","l":"diammonium citrate","na":1,"nb":22,"a":[["mapped/Nh42_Citrate.yaml","(NH4)2 citrate"]],"b":[["Beer_Medium.yaml","beer_medium"],["LACTOBACILLUS_MEDIUM_IV.yaml","lactobacillus_medium_iv"],["LEUCONOSTOC_OENOS_MEDIUM.yaml","leuconostoc_oenos_medium"],["MRS_MEDIUM.yaml","mrs_medium"],["WEISSELA_KOREENSIS_MEDIUM.yaml","weissela_koreensis_medium"],["alkalic_mrs_ph_8_5_3_nacl.yaml","alkalic_mrs_ph_8_5_3_nacl"]]},{"id":"KEGG:asn-L","l":"","na":1,"nb":22,"a":[["mapped/L-asparagine.yaml","L-Asparagine"]],"b":[["CMM.yaml","cmm"],["RDM.yaml","rdm"],["Song_Optimal_CDM.yaml","song_optimal_cdm"],["bl_medium_arg.yaml","bl_medium_arg"],["bl_medium_arg_ser_trp.yaml","bl_medium_arg_ser_trp"],["bl_medium_asp.yaml","bl_medium_asp"]]},{"id":"CHEBI:131395","l":"manganese(II) chloride dihydrate","na":1,"nb":21,"a":[["mapped/Mncl2_X_2_H2o.yaml","MnCl2 x 2 H2O"]],"b":[["ALGORIPHAGUS_AQUAEDUCTUS_MEDIUM.yaml","algoriphagus_aquaeductus_medium"],["DESULFURISPIRILLUM_MEDIUM.yaml","desulfurispirillum_medium"],["HALOANAEROBACTER_SALINARIUS_MEDIUM.yaml","haloanaerobacter_salinarius_medium"],["HALORHODOSPIRA_MEDIUM.yaml","halorhodospira_medium"],["MEDIUM_FOR_ROSEOSPIRA.yaml","medium_for_roseospira"],["MEDIUM_FOR_THIORHODOVIBRIO_FRISIUS.yaml","medium_for_thiorhodovibrio_frisius"]]},{"id":"CHEBI:16410","l":"pyridoxamine","na":1,"nb":21,"a":[["mapped/Pyridoxamine.yaml","Pyridoxamine"]],"b":[["HALORHODOSPIRA_MEDIUM.yaml","halorhodospira_medium"],["MCD_Medium.yaml","mcd_medium"],["MEDIUM_FOR_ROSEOSPIRA.yaml","medium_for_roseospira"],["MEDIUM_WITH_EDTA_AS_CARBON_SOURCE.yaml","medium_with_edta_as_carbon_source"],["MINERAL_MEDIUM_WITH_SULFOBENZOIC_ACID.yaml","mineral_medium_with_sulfobenzoic_acid"],["MS10R_Medium.yaml","ms10r_medium"]]},{"id":"CHEBI:16454","l":"pantothenate","na":1,"nb":21,"a":[["mapped/Pantothenate.yaml","Pantothenate"]],"b":[["CDM_LP.yaml","cdm_lp"],["DSM_135_medium.yaml","dsm_135_medium"],["Galani_MM.yaml","galani_mm"],["HALORHODOSPIRA_MEDIUM.yaml","halorhodospira_medium"],["MEDIUM_FOR_HJ250.yaml","medium_for_hj250"],["MEDIUM_FOR_ROSEOSPIRA.yaml","medium_for_roseospira"]]},{"id":"CHEBI:22653","l":"asparagine","na":1,"nb":21,"a":[["mapped/Asparagine.yaml","Asparagine"]],"b":[["CDM_LP.yaml","cdm_lp"],["HALOACTINOMYCES_HALOPHILUS_MEDIUM.yaml","haloactinomyces_halophilus_medium"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["MYKORRHIZA_MEDIUM.yaml","mykorrhiza_medium"]]},{"id":"CHEBI:30742","l":"ethylene glycol","na":1,"nb":21,"a":[["mapped/Ethylene_Glycol.yaml","Ethylene glycol"]],"b":[["acetobacterium_medium_marine.yaml","acetobacterium_medium_marine"],["bm_in_arabinose_hodgson_et_al.yaml","bm_in_arabinose_hodgson_et_al"],["bm_in_cellobiose_hodgson_et_al.yaml","bm_in_cellobiose_hodgson_et_al"],["bm_in_fructose_hodgson_et_al.yaml","bm_in_fructose_hodgson_et_al"],["bm_in_galactose_hodgson_et_al.yaml","bm_in_galactose_hodgson_et_al"],["bm_in_glucose_hodgson_et_al.yaml","bm_in_glucose_hodgson_et_al"]]},{"id":"CHEBI:30768","l":"propionic acid","na":1,"nb":21,"a":[["mapped/Propionic_Acid.yaml","Propionic acid"]],"b":[["ACY.yaml","ACY"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"],["MEDIUM_10.yaml","medium_10"],["Mega.yaml","Mega"]]},{"id":"CHEBI:36272","l":"tungstic acid","na":1,"nb":21,"a":[["mapped/H2wo4.yaml","H2WO4"]],"b":[["MJAIS_MEDIUM.yaml","mjais_medium"],["MJYTFSH_MEDIUM.yaml","mjytfsh_medium"],["MMJH_MEDIUM.yaml","mmjh_medium"],["MMJY_MEDIUM.yaml","mmjy_medium"],["MMJ_MEDIUM.yaml","mmj_medium"],["MODIFIED_MMJHS_MEDIUM_FOR_GO25.yaml","modified_mmjhs_medium_for_go25"]]},{"id":"KEGG:leu-L","l":"","na":1,"nb":21,"a":[["mapped/L-leucine.yaml","L-Leucine"]],"b":[["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["Hypertonic_medium.yaml","hypertonic_medium"],["Mops_medium.yaml","mops_medium"],["RDM.yaml","rdm"]]},{"id":"CHEBI:63037","l":"triammonium citrate","na":1,"nb":20,"a":[["mapped/Nh43_Citrate.yaml","(NH4)3 citrate"]],"b":[["AUREOBACTERIUM_TERREGENS_MEDIUM.yaml","aureobacterium_terregens_medium"],["MODIFIED_MEDIUM_11.yaml","modified_medium_11"],["MRS.yaml","MRS"],["MRS_agar_slants.yaml","mrs_agar_slants"],["MRS_noGlucose.yaml","MRS_noGlucose"],["MRS_recovery.yaml","MRS_recovery"]]},{"id":"KEGG:pro-L","l":"","na":1,"nb":20,"a":[["mapped/L-proline.yaml","L-Proline"]],"b":[["CDM_LP.yaml","cdm_lp"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["Mops_medium.yaml","mops_medium"],["RDM.yaml","rdm"],["Song_Optimal_CDM.yaml","song_optimal_cdm"],["Synthetic_Medium_with_15_amino_acids.yaml","synthetic_medium_with_15_amino_acids"]]},{"id":"KEGG:pyr","l":"","na":1,"nb":20,"a":[["mapped/Pyruvate.yaml","Pyruvate"]],"b":[["CMM.yaml","cmm"],["NMM_with_pyruvate.yaml","nmm_with_pyruvate"],["ams1_pyruvate_glycine.yaml","ams1_pyruvate_glycine"],["ams1_pyruvate_glycine__08b97e38.yaml","ams1_pyruvate_glycine"],["ams1_pyruvate_glycine__625e5170.yaml","ams1_pyruvate_glycine"],["ams1_pyruvate_glycine__754df6b3.yaml","ams1_pyruvate_glycine"]]},{"id":"CHEBI:113451","l":"sodium ascorbate","na":1,"nb":19,"a":[["mapped/Na-ascorbate.yaml","Na-ascorbate"]],"b":[["ALKALIPHILUS_MEDIUM.yaml","alkaliphilus_medium"],["CLOSTRIDUM_G4_MEDIUM.yaml","clostridum_g4_medium"],["Chromatium_Medium.yaml","chromatium_medium"],["GEOANAEROBACTER_MEDIUM.yaml","geoanaerobacter_medium"],["GILLIAMELLA_MEDIUM.yaml","gilliamella_medium"],["HALOANAEROBIUM_MEDIUM.yaml","haloanaerobium_medium"]]},{"id":"CHEBI:131529","l":"pyridoxal hydrochloride","na":1,"nb":19,"a":[["mapped/Pyridoxal_Hydrochloride.yaml","Pyridoxal hydrochloride"]],"b":[["AROMATOLEUM_MEDIUM.yaml","aromatoleum_medium"],["CDM_LP.yaml","cdm_lp"],["ECTOTHIORHODOSPIRA_ABDELMALEKII_MEDIUM.yaml","ectothiorhodospira_abdelmalekii_medium"],["ECTOTHIORHODOSPIRA_VACUOLATA_MEDIUM.yaml","ectothiorhodospira_vacuolata_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"],["HELMUTKOENIGIA_MEDIUM.yaml","helmutkoenigia_medium"]]},{"id":"CHEBI:26271","l":"proline","na":1,"nb":19,"a":[["mapped/Proline.yaml","Proline"]],"b":[["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["cdm_lab_medium.yaml","cdm_lab_medium"],["complete_chemically_defined_medium.yaml","complete_chemically_defined_medium"],["minimal_chemically_defined_medium_his_pro_letort_2001.yaml","minimal_chemically_defined_medium_his_pro_letort_2001"]]},{"id":"CHEBI:53438","l":"iron(3+) sulfate","na":1,"nb":19,"a":[["mapped/Fe2_So43_X_N_H2o.yaml","Fe2(SO4)3 x n H2O"]],"b":[["METHYLOTHERMUS_MEDIUM.yaml","methylothermus_medium"],["geobacter_nbaf_medium__db485dcd.yaml","geobacter_nbaf_medium"],["inorganic_mineral_medium_with_thiosulfate__dc790b06.yaml","inorganic_mineral_medium_with_thiosulfate"],["methane_oxidizing_bacterium_medium__df2e85e2.yaml","methane_oxidizing_bacterium_medium"],["methanopyrus_medium_for_strain_116__7463935f.yaml","methanopyrus_medium_for_strain_116"],["methylococcaceae_in20_medium__21a79f39.yaml","methylococcaceae_in20_medium"]]},{"id":"CHEBI:85248","l":"gellan gum","na":1,"nb":19,"a":[["mapped/Gelrite.yaml","Gelrite"]],"b":[["CYS_MEDIUM_WITH_MODIFIED_NACL_CONCENTRATION.yaml","cys_medium_with_modified_nacl_concentration"],["R2A_Gellan_gum_Plate.yaml","r2a_gellan_gum_plate"],["VXG_GELLAN.yaml","vxg_gellan"],["alkaline_clostridial_nutrient_medium__228e3011.yaml","alkaline_clostridial_nutrient_medium"],["alkaliphiles_pirellula_medium_m1.yaml","alkaliphiles_pirellula_medium_m1"],["alkaliphiles_pirellula_medium_m1apy.yaml","alkaliphiles_pirellula_medium_m1apy"]]},{"id":"CHEBI:91245","l":"copper(II) chloride pentahydrate","na":1,"nb":19,"a":[["mapped/Cucl2_X_5_H2o.yaml","CuCl2 x 5 H2O"]],"b":[["ACIDOSOMA_MEDIUM.yaml","acidosoma_medium"],["ANB_aerobic.yaml","anb_aerobic"],["Basic_mineral_medium.yaml","basic_mineral_medium"],["Halorutilales_haloarchaeon_medium.yaml","halorutilales_haloarchaeon_medium"],["METHYLOCAPSA_ACIDOPHILA_MEDIUM.yaml","methylocapsa_acidophila_medium"],["METHYLOCAPSA_AUREA_MEDIUM.yaml","methylocapsa_aurea_medium"]]},{"id":"KEGG:arg-L","l":"","na":1,"nb":19,"a":[["mapped/L-arginine.yaml","L-Arginine"]],"b":[["CMM.yaml","cmm"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["RDM.yaml","rdm"],["Synthetic_Medium_with_15_amino_acids.yaml","synthetic_medium_with_15_amino_acids"],["Synthetic_medium.yaml","synthetic_medium"],["aam.yaml","aam"]]},{"id":"CHEBI:26806","l":"succinate","na":1,"nb":18,"a":[["mapped/Succinate.yaml","Succinate"]],"b":[["LSG_Medium.yaml","lsg_medium"],["M9ZB_with_succinate.yaml","m9zb_with_succinate"],["MSYS_MEDIUM.yaml","msys_medium"],["NMM_with_succinate.yaml","nmm_with_succinate"],["PJC_with_succinate.yaml","pjc_with_succinate"],["SUCCINATE_MINERAL_MEDIUM.yaml","succinate_mineral_medium"]]},{"id":"CHEBI:30627","l":"molybdenum trioxide","na":1,"nb":18,"a":[["mapped/Moo3.yaml","MoO3"]],"b":[["HYDROGENOBACTER_ACIDOPHILUS_MEDIUM.yaml","hydrogenobacter_acidophilus_medium"],["HYDROGENOBACTER_HALOPHILUS_MEDIUM.yaml","hydrogenobacter_halophilus_medium"],["HYDROGENOBACTER_THERMOPHILUS_MEDIUM.yaml","hydrogenobacter_thermophilus_medium"],["Inorganic_medium.yaml","inorganic_medium"],["Isolation_medium.yaml","isolation_medium"],["MEDIUM_125_WITH_METHANOL.yaml","medium_125_with_methanol"]]},{"id":"CHEBI:64103","l":"sodium butyrate","na":1,"nb":18,"a":[["mapped/Na-butyrate.yaml","Na-butyrate"]],"b":[["DESULFALLAS_THERMOSAPOVORANS_MEDIUM.yaml","desulfallas_thermosapovorans_medium"],["DESULFOBACTERIUM_CETONICUM_MEDIUM.yaml","desulfobacterium_cetonicum_medium"],["DESULFOCELLA_MEDIUM.yaml","desulfocella_medium"],["DESULFOFARCIMEN_MEDIUM.yaml","desulfofarcimen_medium"],["DESULFOSARCINA_CETONICA_MEDIUM.yaml","desulfosarcina_cetonica_medium"],["DESULFOTHERMUS_NAPHTHAE_MEDIUM.yaml","desulfothermus_naphthae_medium"]]},{"id":"CHEBI:18186","l":"tyrosine","na":1,"nb":17,"a":[["mapped/DL-Tyrosine.yaml","DL-Tyrosine"]],"b":[["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["Synthetic_Medium_C.yaml","synthetic_medium_c"],["complete_chemically_defined_medium.yaml","complete_chemically_defined_medium"],["fermentation_medium_glucose_tyrosine.yaml","fermentation_medium_glucose_tyrosine"]]},{"id":"CHEBI:63051","l":"diammonium hydrogen phosphate","na":1,"nb":17,"a":[["mapped/Nh42hpo4.yaml","(NH4)2HPO4"]],"b":[["ARHODOMONAS_MEDIUM_RS91.yaml","arhodomonas_medium_rs91"],["BENZOATE_MEDIUM.yaml","benzoate_medium"],["HYPHOMICROBIUM_METHYLOVORUM_MEDIUM.yaml","hyphomicrobium_methylovorum_medium"],["KR_Medium.yaml","kr_medium"],["MEDIUM_GY_VL55.yaml","medium_gy_vl55"],["MEDIUM_VL55.yaml","medium_vl55"]]},{"id":"CHEBI:78870","l":"sodium nitrite","na":1,"nb":17,"a":[["mapped/Nano2.yaml","NaNO2"]],"b":[["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["Autotrophic_Nitrobacter_Medium.yaml","autotrophic_nitrobacter_medium"],["HETEROTROPHIC_NITROBACTER_MEDIUM.yaml","heterotrophic_nitrobacter_medium"],["MIXOTROPHIC_NITROBACTER_MEDIUM.yaml","mixotrophic_nitrobacter_medium"],["MODIFIED_THIOCAPSA_MEDIUM.yaml","modified_thiocapsa_medium"],["Medium_for_nitrite_oxidizer.yaml","medium_for_nitrite_oxidizer"]]},{"id":"KEGG:ile-L","l":"","na":1,"nb":17,"a":[["mapped/L-isoleucine.yaml","L-Isoleucine"]],"b":[["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["Mops_medium.yaml","mops_medium"],["RDM.yaml","rdm"],["Synthetic_Medium_with_15_amino_acids.yaml","synthetic_medium_with_15_amino_acids"],["Synthetic_medium.yaml","synthetic_medium"]]},{"id":"CHEBI:131532","l":"pyridoxamine dihydrochloride","na":1,"nb":16,"a":[["mapped/Pyridoxamine_Dihydrochloride.yaml","Pyridoxamine Dihydrochloride"]],"b":[["Dsmz_medium_854.yaml","dsmz_medium_854"],["HYPHOMICROBIUM_MEDIUM_SAF.yaml","hyphomicrobium_medium_saf"],["LC_medium.yaml","lc_medium"],["LENTIMONAS_MEDIUM.yaml","lentimonas_medium"],["MARINIFILUM_MEDIUM.yaml","marinifilum_medium"],["ZMB.yaml","ZMB"]]},{"id":"CHEBI:131378","l":"ferrous ammonium sulfate heptahydrate","na":1,"nb":15,"a":[["mapped/Fe_Nh42_So42_X_7_H2o.yaml","Fe(NH4)2(SO4)2 x 7 H2O"]],"b":[["ARCHAEOGLOBUS_FULGIDUS_MEDIUM.yaml","archaeoglobus_fulgidus_medium"],["ARCHAEOGLOBUS_MEDIUM.yaml","archaeoglobus_medium"],["DEFERRIBACTER_AUTOTROPHICUS_MEDIUM.yaml","deferribacter_autotrophicus_medium"],["Elusimicrobium_minutum_medium.yaml","elusimicrobium_minutum_medium"],["METHANOSPHAERA_CUNICULI_MEDIUM.yaml","methanosphaera_cuniculi_medium"],["Thermosipho_africanus_medium.yaml","thermosipho_africanus_medium"]]},{"id":"CHEBI:132106","l":"sodium propionate","na":1,"nb":15,"a":[["mapped/Na-propionate.yaml","Na-propionate"]],"b":[["DESULFOBULBUS_MEDIUM.yaml","desulfobulbus_medium"],["DESULFOFABA_HANSENII_MEDIUM.yaml","desulfofaba_hansenii_medium"],["DESULFOFABA_MEDIUM.yaml","desulfofaba_medium"],["DESULFORHABDUS_AMNIGENA_MEDIUM.yaml","desulforhabdus_amnigena_medium"],["DESULFOSALSIMONAS_MEDIUM.yaml","desulfosalsimonas_medium"],["DPM_MEDIUM.yaml","dpm_medium"]]},{"id":"CHEBI:18246","l":"(1->4)-beta-D-glucan","na":1,"nb":15,"a":[["mapped/Cellulose.yaml","Cellulose"]],"b":[["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["CLOSTRIDIUM_CELLULOVORANS_MEDIUM.yaml","clostridium_cellulovorans_medium"],["Clostridium_Cellulolytic_medium.yaml","clostridium_cellulolytic_medium"],["HALOCELLA_CELLULOLYTICA_MEDIUM.yaml","halocella_cellulolytica_medium"],["RUMINICLOSTRIDIUM_CELLOBIOPARUM_MEDIUM.yaml","ruminiclostridium_cellobioparum_medium"],["RUMINICLOSTRIDIUM_PAPYROSOLVENS_MEDIUM.yaml","ruminiclostridium_papyrosolvens_medium"]]},{"id":"CHEBI:2511","l":"agarose","na":1,"nb":15,"a":[["mapped/Agarose.yaml","Agarose"]],"b":[["ferriphaselus_es_medium.yaml","ferriphaselus_es_medium"],["freshwater_iron_oxidizing_bacteria_medium.yaml","freshwater_iron_oxidizing_bacteria_medium"],["freshwater_iron_oxidizing_bacteria_medium__ab2f29b3.yaml","freshwater_iron_oxidizing_bacteria_medium"],["gallionella_es_medium.yaml","gallionella_es_medium"],["leptospira_medium.yaml","leptospira_medium"],["leptospira_medium__ec2c2794.yaml","leptospira_medium"]]},{"id":"KEGG:succ","l":"","na":1,"nb":15,"a":[["mapped/Succinate.yaml","Succinate"]],"b":[["LSG_Medium.yaml","lsg_medium"],["M9ZB_with_succinate.yaml","m9zb_with_succinate"],["NMM_with_succinate.yaml","nmm_with_succinate"],["PJC_with_succinate.yaml","pjc_with_succinate"],["liquid_ma_minimal_media_succinate_urea_ammonia.yaml","liquid_ma_minimal_media_succinate_urea_ammonia"],["minimal_medium_lostroh_et_al.yaml","minimal_medium_lostroh_et_al"]]},{"id":"KEGG:val-L","l":"","na":1,"nb":15,"a":[["mapped/L-valine.yaml","L-Valine"]],"b":[["CDM_LP.yaml","cdm_lp"],["Mops_medium.yaml","mops_medium"],["RDM.yaml","rdm"],["Synthetic_Medium_with_15_amino_acids.yaml","synthetic_medium_with_15_amino_acids"],["aam.yaml","aam"],["bl_medium_arg.yaml","bl_medium_arg"]]},{"id":"CHEBI:184335","l":"Ammonium bicarbonate","na":1,"nb":14,"a":[["mapped/Nh4hco3.yaml","NH4HCO3"]],"b":[["ALICYCLIPHILUS_DENITRIFICANS_MEDIUM.yaml","alicycliphilus_denitrificans_medium"],["G5G6_MEDIUM.yaml","g5g6_medium"],["GEORGFUCHSIA_MEDIUM.yaml","georgfuchsia_medium"],["NITROLANCETUS_MEDIUM.yaml","nitrolancetus_medium"],["PSEUDOMONAS_CHLOROTIDISMUTANS_MEDIUM.yaml","pseudomonas_chlorotidismutans_medium"],["SEDIMENTIBACTER_SAALENSIS_MEDIUM.yaml","sedimentibacter_saalensis_medium"]]},{"id":"CHEBI:24848","l":"inositol","na":1,"nb":14,"a":[["mapped/Inositol.yaml","Inositol"]],"b":[["2asw__59e92e67.yaml","2asw"],["ABSS2.yaml","abss2"],["BAF_Medium.yaml","baf_medium"],["HYPHOMICROBIUM_METHYLOVORUM_MEDIUM.yaml","hyphomicrobium_methylovorum_medium"],["NAV_medium.yaml","nav_medium"],["THERMOACTINOMYCES_MEDIUM.yaml","thermoactinomyces_medium"]]},{"id":"CHEBI:26642","l":"selenous acid","na":1,"nb":14,"a":[["mapped/H2seo3.yaml","H2SeO3"]],"b":[["MJTSO_MEDIUM.yaml","mjtso_medium"],["MSF_medium.yaml","msf_medium"],["PERSEPHONELLA_MEDIUM.yaml","persephonella_medium"],["PLANCTOMYCES_MEDIUM_WITH_DOUBLE_CONCENTRATED_ARTIFICAL_SEA_WATER.yaml","planctomyces_medium_with_double_concentrated_artifical_sea_water"],["Planctomyces_medium_DSMZ1560.yaml","Planctomyces medium DSMZ1560"],["V2_MEDIUM.yaml","v2_medium"]]},{"id":"CHEBI:28971","l":"ampicillin","na":1,"nb":14,"a":[["mapped/Ampicillin.yaml","Ampicillin"]],"b":[["2_5_nacl_heart_infusion_hi_medium.yaml","2_5_nacl_heart_infusion_hi_medium"],["PPLO_broth.yaml","pplo_broth"],["brain_heart_infusion_bhi_medium_supplemented_with_antibiotics.yaml","brain_heart_infusion_bhi_medium_supplemented_with_antibiotics"],["dehalogenimonas_medium__6a926cbc.yaml","dehalogenimonas_medium"],["ip3_3_medium__726cb47b.yaml","ip3_3_medium"],["lb_agar_supplemented_with_ampicillin.yaml","lb_agar_supplemented_with_ampicillin"]]},{"id":"CHEBI:86466","l":"potassium tetrathionate","na":1,"nb":14,"a":[["mapped/K2s4o6.yaml","K2S4O6"]],"b":[["ACIDIHALOBACTER_MEDIUM.yaml","acidihalobacter_medium"],["ACIDIHALOBACTER_PROSPERUS_F5_MEDIUM.yaml","acidihalobacter_prosperus_f5_medium"],["ACIDITHIOBACILLUS_FERRIVORANS_MEDIUM.yaml","acidithiobacillus_ferrivorans_medium"],["ALICYCLOBACILLUS_FERROOXYDANS_MEDIUM.yaml","alicyclobacillus_ferrooxydans_medium"],["THERMITHIOBACILLUS_MEDIUM.yaml","thermithiobacillus_medium"],["acidiferrobacter_medium__9d43544a.yaml","acidiferrobacter_medium"]]},{"id":"CHEBI:131394","l":"magnesium dichloride dihydrate","na":1,"nb":13,"a":[["mapped/Mgcl2_X_2_H2o.yaml","MgCl2 x 2 H2O"]],"b":[["ALCANIVORAX_BORKUMENSIS_MEDIUM.yaml","alcanivorax_borkumensis_medium"],["Chemically_defined_medium.yaml","chemically_defined_medium"],["DESULFITOBACTERIUM_MEDIUM.yaml","desulfitobacterium_medium"],["KOSMOTOGA_OLEARIA_MEDIUM.yaml","kosmotoga_olearia_medium"],["THERMOCOCCUS_MEDIUM.yaml","thermococcus_medium"],["desulfitobacterium_medium__9eabf335.yaml","desulfitobacterium_medium"]]},{"id":"CHEBI:29073","l":"L-ascorbic acid","na":1,"nb":13,"a":[["mapped/L-ascorbic_Acid.yaml","L-Ascorbic acid"]],"b":[["CTM_MEDIUM.yaml","ctm_medium"],["MG_minimal_media.yaml","MG minimal media"],["MG_minimal_media_noCarbon.yaml","MG minimal media noCarbon"],["MG_minimal_media_noIron.yaml","MG minimal media noIron"],["THERMODESULFOVIBRIO_MEDIUM_FOR_N1.yaml","thermodesulfovibrio_medium_for_n1"],["THERMODESULFOVIBRIO_YELLOWSTONII_MEDIUM.yaml","thermodesulfovibrio_yellowstonii_medium"]]},{"id":"CHEBI:81862","l":"potassium hydrogencarbonate","na":1,"nb":13,"a":[["mapped/Khco3.yaml","KHCO3"]],"b":[["ANAEROTIGNUM_NEOPROPIONICUM_MEDIUM.yaml","anaerotignum_neopropionicum_medium"],["METHANOTHRIX_MEDIUM.yaml","methanothrix_medium"],["Methanosaeta_Brevibacterium_Medium.yaml","methanosaeta_brevibacterium_medium"],["Methanosaeta_harundinacea_medium.yaml","methanosaeta_harundinacea_medium"],["PELOBACTER_ACIDIGALLICI_MEDIUM.yaml","pelobacter_acidigallici_medium"],["SULFURIMONAS_JS_MEDIUM.yaml","sulfurimonas_js_medium"]]},{"id":"KEGG:ser-L","l":"","na":1,"nb":13,"a":[["mapped/L-serine.yaml","L-Serine"]],"b":[["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["RDM.yaml","rdm"],["Song_Optimal_CDM.yaml","song_optimal_cdm"],["Synthetic_Medium_with_15_amino_acids.yaml","synthetic_medium_with_15_amino_acids"],["ams1_pyruvate_serine.yaml","ams1_pyruvate_serine"]]},{"id":"CHEBI:63125","l":"EDTA trisodium salt","na":1,"nb":12,"a":[["mapped/Na3-edta.yaml","Na3-EDTA"]],"b":[["CHLOROFLEXUS_AGGREGANS_MEDIUM.yaml","chloroflexus_aggregans_medium"],["PE_MEDIUM.yaml","pe_medium"],["PORPHYROBACTER_TEPIDARIUS_MEDIUM.yaml","porphyrobacter_tepidarius_medium"],["jcm_medium_no_315.yaml","jcm_medium_no_315"],["jcm_medium_no_319.yaml","jcm_medium_no_319"],["jcm_medium_no_335.yaml","jcm_medium_no_335"]]},{"id":"CHEBI:86209","l":"cobalt dinitrate","na":1,"nb":12,"a":[["mapped/Co_No32.yaml","Co(NO3)2"]],"b":[["BEGGIATOA_MEDIUM.yaml","beggiatoa_medium"],["THIOTHRIX_MEDIUM.yaml","thiothrix_medium"],["bg11_0_015_mm_iron_shcolnick_2006.yaml","bg11_0_015_mm_iron_shcolnick_2006"],["labarre_modified_bg11.yaml","labarre_modified_bg11"],["minimal_medium_lostroh_et_al.yaml","minimal_medium_lostroh_et_al"],["modified_labarre_medium_56_mm_glucose.yaml","modified_labarre_medium_56_mm_glucose"]]},{"id":"KEGG:his-L","l":"","na":1,"nb":12,"a":[["mapped/L-histidine.yaml","L-Histidine"]],"b":[["Chamberlain_CDM.yaml","chamberlain_cdm"],["RDM.yaml","rdm"],["bl_medium_arg.yaml","bl_medium_arg"],["bl_medium_arg_ser_trp.yaml","bl_medium_arg_ser_trp"],["bl_medium_asp.yaml","bl_medium_asp"],["bl_medium_low_mops.yaml","bl_medium_low_mops"]]},{"id":"KEGG:phe-L","l":"","na":1,"nb":12,"a":[["mapped/L-phenylalanine.yaml","L-Phenylalanine"]],"b":[["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["RDM.yaml","rdm"],["Synthetic_Medium_with_15_amino_acids.yaml","synthetic_medium_with_15_amino_acids"],["aam.yaml","aam"],["cdm_teusink_et_al.yaml","cdm_teusink_et_al"]]},{"id":"KEGG:pnto-R","l":"","na":1,"nb":12,"a":[["mapped/Pantothenate.yaml","Pantothenate"]],"b":[["CDM_LP.yaml","cdm_lp"],["Galani_MM.yaml","galani_mm"],["Synthetic_Medium_C.yaml","synthetic_medium_c"],["Synthetic_medium.yaml","synthetic_medium"],["aam.yaml","aam"],["bl_medium_arg.yaml","bl_medium_arg"]]},{"id":"KEGG:thr-L","l":"","na":1,"nb":12,"a":[["mapped/L-threonine.yaml","L-Threonine"]],"b":[["CDM_LP.yaml","cdm_lp"],["Mops_medium.yaml","mops_medium"],["RDM.yaml","rdm"],["Synthetic_Medium_with_15_amino_acids.yaml","synthetic_medium_with_15_amino_acids"],["aam.yaml","aam"],["cdm_teusink_et_al.yaml","cdm_teusink_et_al"]]},{"id":"KEGG:tyr-L","l":"","na":1,"nb":12,"a":[["mapped/L-tyrosine.yaml","L-Tyrosine"]],"b":[["CDM_LP.yaml","cdm_lp"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["RDM.yaml","rdm"],["Synthetic_Medium_with_15_amino_acids.yaml","synthetic_medium_with_15_amino_acids"],["cdm_teusink_et_al.yaml","cdm_teusink_et_al"],["mic_cit_herriott_et_al.yaml","mic_cit_herriott_et_al"]]},{"id":"CHEBI:132089","l":"sodium glycerol 2-phosphate","na":1,"nb":11,"a":[["mapped/Sodium_Beta-glycerophosphate.yaml","Sodium beta-glycerophosphate"]],"b":[["M17_MEDIUM_FOR_LACTIC_STREPTOCOCCI.yaml","m17_medium_for_lactic_streptococci"],["clostridium_thermocellum_medium__f6f3f236.yaml","clostridium_thermocellum_medium"],["cy_3_seawater_medium.yaml","cy_3_seawater_medium"],["k35__38e75c0b.yaml","k35"],["k_medium__a3bd9f30.yaml","k_medium"],["m17_medium_modified.yaml","m17_medium_modified"]]},{"id":"CHEBI:30911","l":"glucitol","na":1,"nb":11,"a":[["mapped/Sorbitol.yaml","Sorbitol"]],"b":[["M1D_Medium.yaml","m1d_medium"],["Modified_Rhodobacter_Spaeroides_Medium.yaml","modified_rhodobacter_spaeroides_medium"],["RHODOBACTER_SPHAEROIDES_MEDIUM.yaml","rhodobacter_sphaeroides_medium"],["RHODOBIUM_GOKURNUM_MEDIUM.yaml","rhodobium_gokurnum_medium"],["RHODOVULUM_MARINUM_MEDIUM.yaml","rhodovulum_marinum_medium"],["RHODOVULUM_VISAKHUM_MEDIUM.yaml","rhodovulum_visakhum_medium"]]},{"id":"CHEBI:32029","l":"potassium acetate","na":1,"nb":11,"a":[["mapped/K-acetate.yaml","K-acetate"]],"b":[["ANAEROBIC_THAUERA_MEDIUM.yaml","anaerobic_thauera_medium"],["CLOSTRIDIUM_KLUYVERI_MEDIUM.yaml","clostridium_kluyveri_medium"],["PA_MEDIUM.yaml","pa_medium"],["SALIMESOPHILOBACTER_MEDIUM.yaml","salimesophilobacter_medium"],["ZMB.yaml","ZMB"],["ZMB_ALS.yaml","ZMB ALS"]]},{"id":"CHEBI:39035","l":"TES","na":1,"nb":11,"a":[["mapped/Tes.yaml","TES"]],"b":[["BG11C_TES.yaml","BG11C TES"],["BG11_TES_no_bicarb.yaml","BG11 TES no bicarb"],["HLH_MEDIUM.yaml","hlh_medium"],["THERMOANAEROBACULUM_AQUATICUM_MEDIUM.yaml","thermoanaerobaculum_aquaticum_medium"],["cyanobacteria_medium_bg11_tes_buffered.yaml","cyanobacteria_medium_bg11_tes_buffered"],["hlh_700_medium.yaml","hlh_700_medium"]]},{"id":"CHEBI:43796","l":"(S)-lipoic acid","na":1,"nb":11,"a":[["mapped/%CE%91-lipoic_Acid.yaml","α-lipoic acid"]],"b":[["Hans_Basal_Media.yaml","Hans Basal Media"],["Hans_Basal_Media_bicarb.yaml","Hans Basal Media bicarb"],["Hans_Basal_Media_bicarb_nitrate.yaml","Hans Basal Media bicarb nitrate"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["SCFM.yaml","SCFM"],["SCFM_10mMNitrate.yaml","SCFM 10mMNitrate"]]},{"id":"CHEBI:8006","l":"Peptidoglycan(N-acetyl-D-glucosamine)","na":1,"nb":11,"a":[["mapped/N-acetyl-d-glucosamine.yaml","N-Acetyl-D-glucosamine"]],"b":[["MODIFIED_BSK_MEDIUM.yaml","modified_bsk_medium"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"KEGG:lys-L","l":"","na":1,"nb":11,"a":[["mapped/L-lysine.yaml","L-Lysine"]],"b":[["Chamberlain_CDM.yaml","chamberlain_cdm"],["RDM.yaml","rdm"],["Synthetic_Medium_with_15_amino_acids.yaml","synthetic_medium_with_15_amino_acids"],["cdm_teusink_et_al.yaml","cdm_teusink_et_al"],["lysine_salt_schaechter_et_al.yaml","lysine_salt_schaechter_et_al"],["mic_cit_herriott_et_al.yaml","mic_cit_herriott_et_al"]]},{"id":"CHEBI:16810","l":"2-oxoglutarate(2-)","na":1,"nb":10,"a":[["mapped/Na2_Alpha-ketoglutarate.yaml","Na2 alpha-ketoglutarate"]],"b":[["BCYE_alpha_agar.yaml","bcye_alpha_agar"],["BM7_MEDIUM.yaml","bm7_medium"],["CTM_MEDIUM.yaml","ctm_medium"],["DinoMM_alphaKetoGlutAcid_NoNitrogen.yaml","DinoMM alphaKetoGlutAcid NoNitrogen"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"]]},{"id":"CHEBI:5291","l":"gelatin","na":1,"nb":10,"a":[["mapped/Gelatine.yaml","Gelatine"]],"b":[["LB_plus_SM_buffer.yaml","LB_plus_SM_buffer"],["S_medium.yaml","s_medium"],["barbour_sfoenner_kelly_bsk_ii_medium.yaml","barbour_sfoenner_kelly_bsk_ii_medium"],["bsk_medium__0411c628.yaml","bsk_medium"],["bsk_medium__55a97aaf.yaml","bsk_medium"],["bsk_medium__b3c2010e.yaml","bsk_medium"]]},{"id":"KEGG:cys-L","l":"","na":1,"nb":10,"a":[["mapped/L-cysteine.yaml","L-Cysteine"]],"b":[["CDM_LP.yaml","cdm_lp"],["RDM.yaml","rdm"],["Song_Optimal_CDM.yaml","song_optimal_cdm"],["Song_cdm.yaml","song_cdm"],["aam.yaml","aam"],["mic_cit_herriott_et_al.yaml","mic_cit_herriott_et_al"]]},{"id":"KEGG:gln-L","l":"","na":1,"nb":10,"a":[["mapped/L-glutamine.yaml","L-Glutamine"]],"b":[["CDM_LP.yaml","cdm_lp"],["RDM.yaml","rdm"],["Synthetic_medium.yaml","synthetic_medium"],["basal_synthetic_medium_vitamins.yaml","basal_synthetic_medium_vitamins"],["bl_medium_arg.yaml","bl_medium_arg"],["bl_medium_arg_ser_trp.yaml","bl_medium_arg_ser_trp"]]},{"id":"KEGG:lcts","l":"","na":1,"nb":10,"a":[["mapped/Lactose.yaml","Lactose"]],"b":[["Basal_synthetic_medium.yaml","basal_synthetic_medium"],["Synthetic_medium.yaml","synthetic_medium"],["basal_synthetic_medium_vitamins.yaml","basal_synthetic_medium_vitamins"],["chemically_defined_fermentation_medium_20g_glucose_20g_lactose_12_5g_msg.yaml","chemically_defined_fermentation_medium_20g_glucose_20g_lactose_12_5g_msg"],["chemically_defined_fermentation_medium_45g_lactose_12_5g_msg.yaml","chemically_defined_fermentation_medium_45g_lactose_12_5g_msg"],["complete_chemically_defined_medium.yaml","complete_chemically_defined_medium"]]},{"id":"KEGG:pydam","l":"","na":1,"nb":10,"a":[["mapped/Pyridoxamine.yaml","Pyridoxamine"]],"b":[["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["MS13_Medium.yaml","ms13_medium"],["MS15_Medium.yaml","ms15_medium"],["ms10_medium_supplements_acetate_for_batch_cultivation.yaml","ms10_medium_supplements_acetate_for_batch_cultivation"]]},{"id":"KEGG:trp-L","l":"","na":1,"nb":10,"a":[["mapped/L-tryptophan.yaml","L-Tryptophan"]],"b":[["CDM_LP.yaml","cdm_lp"],["RDM.yaml","rdm"],["bl_medium_arg_ser_trp.yaml","bl_medium_arg_ser_trp"],["cdm_teusink_et_al.yaml","cdm_teusink_et_al"],["minimal_medium_teusink_et_al.yaml","minimal_medium_teusink_et_al"],["pa_5052.yaml","pa_5052"]]},{"id":"CHEBI:132767","l":"ferric pyrophosphate","na":1,"nb":9,"a":[["mapped/Fe4_Po42.yaml","Fe4(PO4)2"]],"b":[["ABB.yaml","ABB"],["ACY.yaml","ACY"],["BCYE_alpha_agar.yaml","bcye_alpha_agar"],["anaerobe_basal_broth_oxoid.yaml","anaerobe_basal_broth_oxoid"],["bcye_2216e.yaml","bcye_2216e"],["bcye_agar__8bbb67d5.yaml","bcye_agar"]]},{"id":"CHEBI:16024","l":"D-mannose","na":1,"nb":9,"a":[["mapped/D-mannose.yaml","D-Mannose"]],"b":[["M9zb_with_mannose.yaml","m9zb_with_mannose"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"],["Soil_Defined_Media_%28SDM%29.yaml","Soil Defined Media (SDM)"],["defined_freshwater_medium_cocl2__f0ffbcc6.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__41b1d433.yaml","defined_freshwater_medium_coso4"],["fermentation_medium_mannose_nh4cl.yaml","fermentation_medium_mannose_nh4cl"]]},{"id":"CHEBI:36218","l":"beta-lactose","na":1,"nb":9,"a":[["mapped/Beta-lactose.yaml","Beta-Lactose"]],"b":[["ALKALINE_LACTOSE_AGAR.yaml","alkaline_lactose_agar"],["LACTOBACILLUS_MEDIUM_I.yaml","lactobacillus_medium_i"],["M17_medium_supplemented_with_20_g_L_of_lactose.yaml","m17_medium_supplemented_with_20_g_l_of_lactose"],["ZMB_Gut.yaml","ZMB Gut"],["gam_broth_with_1_lactose.yaml","gam_broth_with_1_lactose"],["m17_broth_containing_lactose.yaml","m17_broth_containing_lactose"]]},{"id":"CHEBI:62982","l":"ammonium dihydrogen phosphate","na":1,"nb":9,"a":[["mapped/Nh4h2po4.yaml","NH4H2PO4"]],"b":[["Kim_medium.yaml","kim_medium"],["PHE91_MEDIUM.yaml","phe91_medium"],["PHENYLOBACTERIUM_MEDIUM.yaml","phenylobacterium_medium"],["PPM.yaml","ppm"],["desulfitobacterium_pce_medium.yaml","desulfitobacterium_pce_medium"],["phe91_medium__bf798fea.yaml","phe91_medium"]]},{"id":"CHEBI:72449","l":"malachite green","na":1,"nb":9,"a":[["mapped/Malachite_Green.yaml","Malachite green"]],"b":[["1_ogawa_medium.yaml","1_ogawa_medium"],["Lowenstein_Jenson_medium.yaml","lowenstein_jenson_medium"],["MIDDLEBROCK_7H11_AGAR.yaml","middlebrock_7h11_agar"],["MIDDLEBROOK_MEDIUM.yaml","middlebrook_medium"],["Middlebrook_7H11_Agar.yaml","middlebrook_7h11_agar"],["l_wenstein_jensen_medium.yaml","l_wenstein_jensen_medium"]]},{"id":"CHEBI:84997","l":"sodium gluconate","na":1,"nb":9,"a":[["mapped/Sodium_Gluconate.yaml","Sodium gluconate"]],"b":[["ACIDOSOMA_MEDIUM.yaml","acidosoma_medium"],["GNYS_MEDIUM.yaml","gnys_medium"],["RHODOPSEUDOMONAS_GLOBIFORMIS_MEDIUM.yaml","rhodopseudomonas_globiformis_medium"],["SL7_solid_medium.yaml","sl7_solid_medium"],["SL7_solution.yaml","sl7_solution"],["gnys_medium__3696ca29.yaml","gnys_medium"]]},{"id":"KEGG:ala-L","l":"","na":1,"nb":9,"a":[["mapped/L-alanine.yaml","L-Alanine"]],"b":[["CMM.yaml","cmm"],["RDM.yaml","rdm"],["Song_Optimal_CDM.yaml","song_optimal_cdm"],["Synthetic_Medium_with_15_amino_acids.yaml","synthetic_medium_with_15_amino_acids"],["cdm_teusink_et_al.yaml","cdm_teusink_et_al"],["fermentation_medium_glucose_alanine.yaml","fermentation_medium_glucose_alanine"]]},{"id":"CHEBI:132758","l":"vanadyl sulfate pentahydrate","na":1,"nb":8,"a":[["mapped/Voso4_X_5_H2o.yaml","VOSO4 x 5 H2O"]],"b":[["CLOSTRIDIUM_VIRIDE_MEDIUM.yaml","clostridium_viride_medium"],["FERROPLASMA_ACIDIPHILUM_MEDIUM.yaml","ferroplasma_acidiphilum_medium"],["clostridium_aminovalericum_medium.yaml","clostridium_aminovalericum_medium"],["thermoplasma_acidophilum_medium__3d517987.yaml","thermoplasma_acidophilum_medium"],["thermoplasma_acidophilum_medium__5b74e2ee.yaml","thermoplasma_acidophilum_medium"],["thermoplasma_acidophilum_medium__d7d3722d.yaml","thermoplasma_acidophilum_medium"]]},{"id":"CHEBI:16283","l":"L-cystine","na":1,"nb":8,"a":[["mapped/L-cystine.yaml","L-Cystine"]],"b":[["IGNISPHAERA_MEDIUM.yaml","ignisphaera_medium"],["Kosmotoga_Pacifica_Medium.yaml","kosmotoga_pacifica_medium"],["eg_medium__dd848cc7.yaml","eg_medium"],["fluid_thioglycolate_medium.yaml","fluid_thioglycolate_medium"],["fluid_thioglycollate_medium__e510d708.yaml","fluid_thioglycollate_medium"],["rc_medium__9776cd83.yaml","rc_medium"]]},{"id":"CHEBI:17748","l":"thymidine","na":1,"nb":8,"a":[["mapped/Thymidine.yaml","Thymidine"]],"b":[["CHI_1776_MEDIUM.yaml","chi_1776_medium"],["MCD_Medium.yaml","mcd_medium"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"],["Soil_Defined_Media_%28SDM%29.yaml","Soil Defined Media (SDM)"],["cdm_lab_medium.yaml","cdm_lab_medium"],["cdm_teusink_et_al.yaml","cdm_teusink_et_al"]]},{"id":"CHEBI:26493","l":"quinic acid","na":1,"nb":8,"a":[["mapped/Quinic_Acid.yaml","Quinic acid"]],"b":[["DESULFOVIBRIO_MAGNETICUS_MEDIUM.yaml","desulfovibrio_magneticus_medium"],["Fundidesulfovibrio_Magnetotactcus_Medium.yaml","fundidesulfovibrio_magnetotactcus_medium"],["Modified_289_medium.yaml","modified_289_medium"],["desulfovibrio_magneticus_medium__d89af152.yaml","desulfovibrio_magneticus_medium"],["magnetospirillum_medium_b.yaml","magnetospirillum_medium_b"],["magnetospirillum_medium_b__2dfc58b7.yaml","magnetospirillum_medium_b"]]},{"id":"CHEBI:28260","l":"galactose","na":1,"nb":8,"a":[["mapped/Galactose.yaml","Galactose"]],"b":[["A1_MEDIUM.yaml","a1_medium"],["KPL_MEDIUM.yaml","kpl_medium"],["MYXOCOCCUS_FLAVESCENS_MEDIUM.yaml","myxococcus_flavescens_medium"],["Modified_SP_Medium.yaml","modified_sp_medium"],["SP_Medium.yaml","sp_medium"],["a1_medium__13c8113e.yaml","a1_medium"]]},{"id":"CHEBI:65242","l":"sodium chlorate","na":1,"nb":8,"a":[["mapped/Naclo3.yaml","NaClO3"]],"b":[["ALP_defined_chlorate.yaml","ALP defined chlorate"],["MEDIUM_FOR_CHLORATE_RESPIRERS.yaml","medium_for_chlorate_respirers"],["PSEUDOMONAS_CHLOROTIDISMUTANS_MEDIUM.yaml","pseudomonas_chlorotidismutans_medium"],["alicycliphilus_denitrificans_medium__3263bed0.yaml","alicycliphilus_denitrificans_medium"],["medium_for_chlorate_respirers__cead40b6.yaml","medium_for_chlorate_respirers"],["medium_modified_for_dechloromonas_spp.yaml","medium_modified_for_dechloromonas_spp"]]},{"id":"CHEBI:75834","l":"iron(2+) sulfate monohydrate","na":1,"nb":8,"a":[["mapped/Feso4_X_H2o.yaml","FeSO4 x H2O"]],"b":[["BACILLUS_FILIFORMIS_MEDIUM.yaml","bacillus_filiformis_medium"],["PE_MEDIUM.yaml","pe_medium"],["bacillus_filiformis_medium__b5fa3a39.yaml","bacillus_filiformis_medium"],["jcm_medium_no_319.yaml","jcm_medium_no_319"],["jcm_medium_no_335.yaml","jcm_medium_no_335"],["pe_medium__ede756c7.yaml","pe_medium"]]},{"id":"CHEBI:86155","l":"bromothymol blue","na":1,"nb":8,"a":[["mapped/Bromothymol_Blue.yaml","Bromothymol blue"]],"b":[["AZOSPIRILLUM_AMAZONENSE_MEDIUM.yaml","azospirillum_amazonense_medium"],["HALOTHIOBACILLUS_MEDIUM.yaml","halothiobacillus_medium"],["Nutrient_bromothymol_blue_agar_NBTA.yaml","nutrient_bromothymol_blue_agar_nbta"],["Semisolid_LGI_medium.yaml","semisolid_lgi_medium"],["THIOMICRORHABDUS_MEDIUM.yaml","thiomicrorhabdus_medium"],["THIOMICROSPIRA_PELOPHILA_MEDIUM.yaml","thiomicrospira_pelophila_medium"]]},{"id":"KEGG:urea","l":"","na":1,"nb":8,"a":[["mapped/Urea.yaml","Urea"]],"b":[["Mj_media.yaml","mj_media"],["Synthetic_Medium_C.yaml","synthetic_medium_c"],["cgc_w_acetate.yaml","cgc_w_acetate"],["cgc_w_acetate_glucose.yaml","cgc_w_acetate_glucose"],["cgc_w_glucose.yaml","cgc_w_glucose"],["chemically_defined_fermentation_medium_45g_glucose_4_5g_urea.yaml","chemically_defined_fermentation_medium_45g_glucose_4_5g_urea"]]},{"id":"CHEBI:132095","l":"sodium metavanadate hydrate","na":1,"nb":7,"a":[["mapped/Navo3_X_H2o.yaml","NaVO3 x H2O"]],"b":[["CENS_MEDIUM.yaml","cens_medium"],["Chromatium_Medium.yaml","chromatium_medium"],["HETEROTROPHIC_MEDIUM_H3P.yaml","heterotrophic_medium_h3p"],["THIOMONAS_ISLANDICA_MEDIUM.yaml","thiomonas_islandica_medium"],["diazotrophic_medium_rba.yaml","diazotrophic_medium_rba"],["mineral_medium_for_chemolithotrophic_growth_h_3.yaml","mineral_medium_for_chemolithotrophic_growth_h_3"]]},{"id":"CHEBI:17578","l":"toluene","na":1,"nb":7,"a":[["mapped/Toluene.yaml","Toluene"]],"b":[["FRESHWATER_MEDIUM_WITH_TOLUENE.yaml","freshwater_medium_with_toluene"],["GEORGFUCHSIA_MEDIUM.yaml","georgfuchsia_medium"],["Modified_m9_with_toluene.yaml","modified_m9_with_toluene"],["defined_freshwater_medium_cocl2__6b305113.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__35d08dce.yaml","defined_freshwater_medium_coso4"],["freshwater_medium_with_toluene__185c443d.yaml","freshwater_medium_with_toluene"]]},{"id":"CHEBI:18290","l":"thiamine(1+) diphosphate chloride","na":1,"nb":7,"a":[["mapped/Thiamine_pyrophosphate.yaml","Thiamine pyrophosphate"]],"b":[["HELMUTKOENIGIA_MEDIUM.yaml","helmutkoenigia_medium"],["TREPONEMA_DENTICOLA_MEDIUM.yaml","treponema_denticola_medium"],["Vulcanimicrobium_alpinus_medium.yaml","vulcanimicrobium_alpinus_medium"],["ctm_medium__057c0b18.yaml","ctm_medium"],["modified_nos_medium__d7a7be7b.yaml","modified_nos_medium"],["oteb_medium.yaml","oteb_medium"]]},{"id":"CHEBI:27082","l":"trehalose","na":1,"nb":7,"a":[["mapped/Trehalose.yaml","Trehalose"]],"b":[["BRADYMONAS_SEDIMINIS_MEDIUM.yaml","bradymonas_sediminis_medium"],["HELMUTKOENIGIA_MEDIUM.yaml","helmutkoenigia_medium"],["RH_MEDIUM.yaml","rh_medium"],["TREPONEMA_RECTALE_MEDIUM.yaml","treponema_rectale_medium"],["minimal_media__805aefdd.yaml","minimal_media"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:30776","l":"hexanoic acid","na":1,"nb":7,"a":[["mapped/Caproic_Acid.yaml","Caproic acid"]],"b":[["DESULFUROBACTERIUM_MEDIUM.yaml","desulfurobacterium_medium"],["TD3_MEDIUM.yaml","td3_medium"],["THERMODESULFOBACTERIUM_HYDROGENIPHILUM_MEDIUM.yaml","thermodesulfobacterium_hydrogeniphilum_medium"],["THERMODESULFOBACTERIUM_HYDROGENOPHILUM_MEDIUM.yaml","thermodesulfobacterium_hydrogenophilum_medium"],["desulfurobacterium_medium__edb237d2.yaml","desulfurobacterium_medium"],["td3_medium__4a2d4552.yaml","td3_medium"]]},{"id":"CHEBI:45296","l":"hexadecane","na":1,"nb":7,"a":[["mapped/Hexadecane.yaml","Hexadecane"]],"b":[["FUNDIBACTER_JADENSIS_MEDIUM.yaml","fundibacter_jadensis_medium"],["MODIFIED_SEA_WATER_AGAR.yaml","modified_sea_water_agar"],["dehalobacter_restrictus_medium_tce.yaml","dehalobacter_restrictus_medium_tce"],["dehalobacter_restrictus_medium_tce__3ce89046.yaml","dehalobacter_restrictus_medium_tce"],["desulfuromonas_medium_tce.yaml","desulfuromonas_medium_tce"],["m9_with_1_0_glucose_and_40_emulsion.yaml","m9_with_1_0_glucose_and_40_emulsion"]]},{"id":"KEGG:etoh","l":"","na":1,"nb":7,"a":[["mapped/Ethanol.yaml","Ethanol"]],"b":[["chemically_defined_fermentation_medium_20g_ethanol_12_5g_msg.yaml","chemically_defined_fermentation_medium_20g_ethanol_12_5g_msg"],["chemically_defined_fermentation_medium_20g_glucose_20g_ethanol_12_5g_msg.yaml","chemically_defined_fermentation_medium_20g_glucose_20g_ethanol_12_5g_msg"],["defined_freshwater_medium_cocl2__0cf425f7.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__a8f40d64.yaml","defined_freshwater_medium_coso4"],["fermentation_medium_ethanol_nh4cl.yaml","fermentation_medium_ethanol_nh4cl"],["mogensen_minimal_medium_ethanol.yaml","mogensen_minimal_medium_ethanol"]]},{"id":"KEGG:fru","l":"","na":1,"nb":7,"a":[["mapped/D-fructose.yaml","D-Fructose"]],"b":[["RDM.yaml","rdm"],["bm_in_fructose_hodgson_et_al.yaml","bm_in_fructose_hodgson_et_al"],["liquid_mm_with_fructose_hodgson_et_al.yaml","liquid_mm_with_fructose_hodgson_et_al"],["m63_with_thiamine_hcl_with_fructose.yaml","m63_with_thiamine_hcl_with_fructose"],["mr_medium_d_fructose.yaml","mr_medium_d_fructose"],["nitrogen_limited_mr_medium.yaml","nitrogen_limited_mr_medium"]]},{"id":"KEGG:ura","l":"","na":1,"nb":7,"a":[["mapped/Uracil.yaml","Uracil"]],"b":[["CDM_LP.yaml","cdm_lp"],["MCD_Medium.yaml","mcd_medium"],["a_b_salts_medium_with_uracil_jensen_et_al.yaml","a_b_salts_medium_with_uracil_jensen_et_al"],["cdm_teusink_et_al.yaml","cdm_teusink_et_al"],["complete_chemically_defined_medium.yaml","complete_chemically_defined_medium"],["mic_herriott_et_al.yaml","mic_herriott_et_al"]]},{"id":"CHEBI:131526","l":"potassium carbonate","na":1,"nb":6,"a":[["mapped/K2co3.yaml","K2CO3"]],"b":[["Nitrosolobus_medium.yaml","nitrosolobus_medium"],["clostridium_sp_la1_medium.yaml","clostridium_sp_la1_medium"],["mhy__90b762f5.yaml","mhy"],["veillonella_medium__07b613b7.yaml","veillonella_medium"],["veillonella_medium__a8952478.yaml","veillonella_medium"],["veillonella_medium__e057c5de.yaml","veillonella_medium"]]},{"id":"CHEBI:144434","l":"iron(III) citrate monohydrate","na":1,"nb":6,"a":[["mapped/Ferric_Citrate_Monohydrate.yaml","Ferric citrate monohydrate"]],"b":[["ALKALIPHILUS_TRANSVAALENSIS_MEDIUM.yaml","alkaliphilus_transvaalensis_medium"],["CALDERIHABITANS_MEDIUM.yaml","calderihabitans_medium"],["bap_medium_for_frankia.yaml","bap_medium_for_frankia"],["modified_bap_gfs_medium_for_frankia.yaml","modified_bap_gfs_medium_for_frankia"],["modified_bap_pagfs_medium_for_frankia.yaml","modified_bap_pagfs_medium_for_frankia"],["modified_bap_psa_medium_for_frankia.yaml","modified_bap_psa_medium_for_frankia"]]},{"id":"CHEBI:15978","l":"sn-glycerol 3-phosphate","na":6,"nb":1,"a":[["mapped/Glycerol_2.yaml","glycerol"],["mapped/Glycerol_3-phosphate.yaml","Glycerol 3-phosphate"],["mapped/Na2_Beta-glycerol_PO4_X_5_H2O.yaml","Na2 beta-glycerol PO4 x 5 H2O"],["mapped/Na2glycerophosphate5h2o.yaml","Na2glycerophosphate•5H2O"],["mapped/Sn-Glycerol_3-phosphate_Lithium_Salt.yaml","sn-Glycerol 3-phosphate lithium salt"],["mapped/Sn-glycerol_3-phosphate_Bis_Cyclohexylammonium_Salt.yaml","sn-Glycerol 3-phosphate bis(cyclohexylammonium) salt"]],"b":[["modified_dixon_s_agar.yaml","modified_dixon_s_agar"]]},{"id":"CHEBI:16196","l":"oleic acid","na":1,"nb":6,"a":[["mapped/Oleic_Acid.yaml","Oleic acid"]],"b":[["MIDDLEBROCK_7H11_AGAR.yaml","middlebrock_7h11_agar"],["MIDDLEBROOK_MEDIUM.yaml","middlebrook_medium"],["Middle_Brook_Medium.yaml","middle_brook_medium"],["Middlebrook_7H11_Agar.yaml","middlebrook_7h11_agar"],["middlebrook_7h11_agar_difco.yaml","middlebrook_7h11_agar_difco"],["modified_dixon_s_agar.yaml","modified_dixon_s_agar"]]},{"id":"CHEBI:16865","l":"gamma-aminobutyric acid","na":1,"nb":6,"a":[["mapped/Gamma-aminobutyric_Acid.yaml","gamma-Aminobutyric acid"]],"b":[["CLOSTRIDIUM_AMINOBUTYRICUM_MEDIUM.yaml","clostridium_aminobutyricum_medium"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:27641","l":"cycloheximide","na":1,"nb":6,"a":[["mapped/Cycloheximid.yaml","Cycloheximid"]],"b":[["PPM.yaml","ppm"],["R2A_Kan50_Tween01_Cycloheximide200.yaml","R2A_Kan50_Tween01_Cycloheximide200"],["alkaliphiles_pirellula_medium_m1py.yaml","alkaliphiles_pirellula_medium_m1py"],["chlamydia_serpentis_poikilotherma_medium.yaml","chlamydia_serpentis_poikilotherma_medium"],["pirellula_medium_m31py.yaml","pirellula_medium_m31py"],["ppm__7a6a33ba.yaml","ppm"]]},{"id":"CHEBI:31695","l":"indigo carmine","na":1,"nb":6,"a":[["mapped/Indigocarmine.yaml","Indigocarmine"]],"b":[["CELLULOSILYTICUM_MEDIUM.yaml","cellulosilyticum_medium"],["PSEUDOBUTYRIVIBRIO_MEDIUM.yaml","pseudobutyrivibrio_medium"],["SUCCINICLASTICUM_MEDIUM.yaml","succiniclasticum_medium"],["methanomicrobium_mobile_medium__0da37a4a.yaml","methanomicrobium_mobile_medium"],["rumen_fluid_xylan_agar.yaml","rumen_fluid_xylan_agar"],["rumen_fluid_xylan_agar__21a2a89a.yaml","rumen_fluid_xylan_agar"]]},{"id":"CHEBI:37070","l":"2-methylbutyric acid","na":1,"nb":6,"a":[["mapped/Dl-2-methylbutyric_Acid.yaml","DL-2-Methylbutyric acid"]],"b":[["RUMEN_BACTERIA_MEDIUM.yaml","rumen_bacteria_medium"],["THERMODESULFOBACTERIUM_HYDROGENOPHILUM_MEDIUM.yaml","thermodesulfobacterium_hydrogenophilum_medium"],["anaerobic_mineral_medium_with_yeast_extract__5d534c46.yaml","anaerobic_mineral_medium_with_yeast_extract"],["medium_10__09f41e08.yaml","medium_10"],["pyvg_medium__d66d387b.yaml","pyvg_medium"],["treponema_saccharophilum_medium__92ddb3ca.yaml","treponema_saccharophilum_medium"]]},{"id":"CHEBI:38892","l":"disodium tetraborate","na":1,"nb":6,"a":[["mapped/Na2b4o7.yaml","Na2B4O7"]],"b":[["NITRINCOLA_MEDIUM.yaml","nitrincola_medium"],["Revised_Sulfolobus_medium.yaml","revised_sulfolobus_medium"],["nitrincola_medium__8cb728a0.yaml","nitrincola_medium"],["togo_medium_m1518.yaml","togo_medium_m1518"],["togo_medium_m1519.yaml","togo_medium_m1519"],["togo_medium_m2759.yaml","togo_medium_m2759"]]},{"id":"CHEBI:53504","l":"nickel sulfate heptahydrate","na":1,"nb":6,"a":[["mapped/Niso4_X_7_H2o.yaml","NiSO4 x 7 H2O"]],"b":[["HYDROGENOBACTER_THERMOPHILUS_MEDIUM.yaml","hydrogenobacter_thermophilus_medium"],["atalassotoga_azc2201_medium__2c8a8ada.yaml","atalassotoga_azc2201_medium"],["azc_1502_medium__45697e91.yaml","azc_1502_medium"],["desulfobotulus_par22n_medium__bd3fccf7.yaml","desulfobotulus_par22n_medium"],["desulfonatronum_par180_medium__7eef7f75.yaml","desulfonatronum_par180_medium"],["hydrogenobacter_halophilus_medium__d2e10f9e.yaml","hydrogenobacter_halophilus_medium"]]},{"id":"CHEBI:63317","l":"barium chloride","na":1,"nb":6,"a":[["mapped/Bacl2.yaml","BaCl2"]],"b":[["Chromatium_Medium.yaml","chromatium_medium"],["DISSULFURIMICROBIUM_HYDROTHERMALE_MEDIUM.yaml","dissulfurimicrobium_hydrothermale_medium"],["dissulfurimicrobium_hydrothermale_medium__63c2d6ea.yaml","dissulfurimicrobium_hydrothermale_medium"],["st65_medium__23c51571.yaml","st65_medium"],["svx8_medium__0a0a576b.yaml","svx8_medium"],["thermogutta_hypogea_medium__b2091adf.yaml","thermogutta_hypogea_medium"]]},{"id":"KEGG:inost","l":"","na":1,"nb":6,"a":[["mapped/Myo-inositol.yaml","myo-Inositol"]],"b":[["CDM_LP.yaml","cdm_lp"],["Synthetic_medium.yaml","synthetic_medium"],["m9_minimal_medium_with_myo_inositol.yaml","m9_minimal_medium_with_myo_inositol"],["yeast_mineral_medium_25_g_l_glucose.yaml","yeast_mineral_medium_25_g_l_glucose"],["yeast_mineral_medium_7_9_g_l_ethanol.yaml","yeast_mineral_medium_7_9_g_l_ethanol"],["yeast_optimized_defined_medium_glucose.yaml","yeast_optimized_defined_medium_glucose"]]},{"id":"CHEBI:132764","l":"sodium oxalate","na":1,"nb":5,"a":[["mapped/Disodium_Oxalate.yaml","Disodium oxalate"]],"b":[["OXALOBACTER_MEDIUM.yaml","oxalobacter_medium"],["jcm_medium_no_1262.yaml","jcm_medium_no_1262"],["jcm_medium_no_1263.yaml","jcm_medium_no_1263"],["togo_medium_m1358.yaml","togo_medium_m1358"],["togo_medium_m1359.yaml","togo_medium_m1359"]]},{"id":"CHEBI:15671","l":"L-tartaric acid","na":1,"nb":5,"a":[["mapped/L_-tartaric_Acid.yaml","L(+)-Tartaric acid"]],"b":[["MAGNETOSPIRILLUM_MEDIUM.yaml","magnetospirillum_medium"],["MG_minimal_media.yaml","MG minimal media"],["MG_minimal_media_noIron.yaml","MG minimal media noIron"],["magnetospirillum_medium__dc0f1596.yaml","magnetospirillum_medium"],["telmatospirillum_peat_medium.yaml","telmatospirillum_peat_medium"]]},{"id":"CHEBI:16634","l":"raffinose","na":1,"nb":5,"a":[["mapped/Raffinose.yaml","Raffinose"]],"b":[["MYXOCOCCUS_FLAVESCENS_MEDIUM.yaml","myxococcus_flavescens_medium"],["Modified_SP_Medium.yaml","modified_sp_medium"],["SP_Medium.yaml","sp_medium"],["myxococcus_flavescens_medium__aa6b37a2.yaml","myxococcus_flavescens_medium"],["sp_medium__3b598fd8.yaml","sp_medium"]]},{"id":"CHEBI:16830","l":"methylamine","na":1,"nb":5,"a":[["mapped/Methylamine.yaml","Methylamine"]],"b":[["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["MEDIUM_FOR_DSM_14457_AND_14458.yaml","medium_for_dsm_14457_and_14458"],["MEDIUM_FOR_METHYLOBACTERIUM_PODARIUM.yaml","medium_for_methylobacterium_podarium"],["acetobacterium_submarinus_medium__9fed26ec.yaml","acetobacterium_submarinus_medium"],["hyphomicrobium_medium__41859ce8.yaml","hyphomicrobium_medium"]]},{"id":"CHEBI:17300","l":"tetrachloroethene","na":1,"nb":5,"a":[["mapped/Tetrachloroethene.yaml","Tetrachloroethene"]],"b":[["MINERAL_SALTS_MEDIUM_WITH_TCE.yaml","mineral_salts_medium_with_tce"],["dehalobacter_restrictus_medium_tce.yaml","dehalobacter_restrictus_medium_tce"],["dehalobacter_restrictus_medium_tce__3ce89046.yaml","dehalobacter_restrictus_medium_tce"],["desulfuromonas_medium_tce.yaml","desulfuromonas_medium_tce"],["mineral_salts_medium_with_tce__be1bd293.yaml","mineral_salts_medium_with_tce"]]},{"id":"CHEBI:18101","l":"4-hydroxyphenylacetic acid","na":1,"nb":5,"a":[["mapped/4-hydroxyphenyl_Acetic_Acid.yaml","4-Hydroxyphenyl acetic acid"]],"b":[["ENDOMICROBIUM_PROAVITUM_RSA_MEDIUM.yaml","endomicrobium_proavitum_rsa_medium"],["MODIFIED_AM5_MEDIUM_2.yaml","modified_am5_medium_2"],["am5_medium_elusimicrobium_medium.yaml","am5_medium_elusimicrobium_medium"],["endomicrobium_proavitum_rsa_medium__51692939.yaml","endomicrobium_proavitum_rsa_medium"],["pjc_with_4_hpa.yaml","pjc_with_4_hpa"]]},{"id":"CHEBI:28911","l":"cob(III)alamin","na":1,"nb":5,"a":[["mapped/Cobalamine.yaml","Cobalamine"]],"b":[["MEDIUM_for_SM250.yaml","medium_for_sm250"],["Medium_YCFAGSC.yaml","medium_ycfagsc"],["Medium_for_Freshwater_Flexibacteria.yaml","medium_for_freshwater_flexibacteria"],["Standard_PETC_medium.yaml","standard_petc_medium"],["YCFAG_medium.yaml","ycfag_medium"]]},{"id":"CHEBI:30951","l":"potassium thiocyanate","na":1,"nb":5,"a":[["mapped/Kscn.yaml","KSCN"]],"b":[["Alkaliphilic_Sulphur_Respiring_Strains_Medium.yaml","alkaliphilic_sulphur_respiring_strains_medium"],["METHYLOBACTERIUM_THIOCYANATUM_MEDIUM.yaml","methylobacterium_thiocyanatum_medium"],["THIOALKALIVIBRIO_THIOCYANODENITRIFICANS_MEDIUM.yaml","thioalkalivibrio_thiocyanodenitrificans_medium"],["jcm_medium_no_312.yaml","jcm_medium_no_312"],["mTC10_medium.yaml","mtc10_medium"]]},{"id":"CHEBI:53472","l":"copper(I) chloride","na":1,"nb":5,"a":[["mapped/Cucl.yaml","CuCl"]],"b":[["PERSEPHONELLA_MEDIUM.yaml","persephonella_medium"],["hydrogen_oxydizing_medium.yaml","hydrogen_oxydizing_medium"],["persephonella_medium__849ec992.yaml","persephonella_medium"],["persephonella_medium__fd71a565.yaml","persephonella_medium"],["venenivibrio_stagnispumantis_medium__bbd6eaa9.yaml","venenivibrio_stagnispumantis_medium"]]},{"id":"CHEBI:53696","l":"disodium L-tyrosinate","na":1,"nb":5,"a":[["mapped/L-tyrosine_Disodium_Salt.yaml","L-tyrosine disodium salt"]],"b":[["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["RPMI.yaml","RPMI"],["RPMI_with_Fetal_bovine_serum_Conditioned.yaml","RPMI with Fetal bovine serum Conditioned"],["SCFM.yaml","SCFM"],["SCFM_10mMNitrate.yaml","SCFM 10mMNitrate"]]},{"id":"CHEBI:59337","l":"methylamine hydrochloride","na":1,"nb":5,"a":[["mapped/Methylamine_Hydrochloride.yaml","Methylamine hydrochloride"]],"b":[["HYPHOMICROBIUM_MEDIUM.yaml","hyphomicrobium_medium"],["HYPHOMICROBIUM_STRAIN_X_MEDIUM.yaml","hyphomicrobium_strain_x_medium"],["hyphomicrobium_medium__42cb031d.yaml","hyphomicrobium_medium"],["hyphomicrobium_medium__c8032f6a.yaml","hyphomicrobium_medium"],["hyphomicrobium_medium__e4717447.yaml","hyphomicrobium_medium"]]},{"id":"CHEBI:62064","l":"butane-2,3-diol","na":1,"nb":5,"a":[["mapped/23-butanediol.yaml","2,3-butanediol"]],"b":[["PROPIONIVIBRIO_MEDIUM.yaml","propionivibrio_medium"],["Pelobacter_carbinolicus_Medium.yaml","pelobacter_carbinolicus_medium"],["ne23_3_medium.yaml","ne23_3_medium"],["pelobacter_propionicus_medium_freshwater.yaml","pelobacter_propionicus_medium_freshwater"],["propionivibrio_medium__91fe4e4e.yaml","propionivibrio_medium"]]},{"id":"CHEBI:75221","l":"sodium metavanadate","na":1,"nb":5,"a":[["mapped/Navo3.yaml","NaVO3"]],"b":[["Ferrous_Iron_Yeast_Extract_Medium.yaml","ferrous_iron_yeast_extract_medium"],["Modified_9K_medium.yaml","modified_9k_medium"],["acidihalobacter_prosperus_f5_medium__0fa15dd8.yaml","acidihalobacter_prosperus_f5_medium"],["ferrous_iron_yeast_extract_medium__a821658e.yaml","ferrous_iron_yeast_extract_medium"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:78074","l":"tin(II) chloride dihydrate","na":1,"nb":5,"a":[["mapped/Sncl2_X_2_H2o.yaml","SnCl2 x 2 H2O"]],"b":[["Chromatium_Medium.yaml","chromatium_medium"],["modified_1_5_sws_casein_starch_medium.yaml","modified_1_5_sws_casein_starch_medium"],["modified_vy_2_agar.yaml","modified_vy_2_agar"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"],["vy_2_sws_agar.yaml","vy_2_sws_agar"]]},{"id":"KEGG:man","l":"","na":1,"nb":5,"a":[["mapped/D-mannose.yaml","D-Mannose"]],"b":[["M9zb_with_mannose.yaml","m9zb_with_mannose"],["defined_freshwater_medium_cocl2__f0ffbcc6.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__41b1d433.yaml","defined_freshwater_medium_coso4"],["fermentation_medium_mannose_nh4cl.yaml","fermentation_medium_mannose_nh4cl"],["liquid_mm_with_mannose_hodgson_et_al.yaml","liquid_mm_with_mannose_hodgson_et_al"]]},{"id":"KEGG:ncam","l":"","na":1,"nb":5,"a":[["mapped/Nicotinamide.yaml","Nicotinamide"]],"b":[["CDM_LP.yaml","cdm_lp"],["bl_medium_arg.yaml","bl_medium_arg"],["bl_medium_arg_ser_trp.yaml","bl_medium_arg_ser_trp"],["bl_medium_asp.yaml","bl_medium_asp"],["bl_medium_low_mops.yaml","bl_medium_low_mops"]]},{"id":"KEGG:pydxn","l":"","na":1,"nb":5,"a":[["mapped/Pyridoxine.yaml","Pyridoxine"]],"b":[["Gotz_minimal_medium_with_malate.yaml","gotz_minimal_medium_with_malate"],["Gotz_minimal_medium_with_mannitol.yaml","gotz_minimal_medium_with_mannitol"],["MCD_Medium.yaml","mcd_medium"],["Synthetic_Medium_C.yaml","synthetic_medium_c"],["Synthetic_medium.yaml","synthetic_medium"]]},{"id":"KEGG:sucr","l":"","na":1,"nb":5,"a":[["mapped/Sucrose.yaml","Sucrose"]],"b":[["Hypertonic_medium.yaml","hypertonic_medium"],["Protoplasting_Medium.yaml","protoplasting_medium"],["Vogels_Medium_N.yaml","vogels_medium_n"],["defined_freshwater_medium_cocl2__f0ffbcc6.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__41b1d433.yaml","defined_freshwater_medium_coso4"]]},{"id":"CHEBI:114126","l":"sodium hexanoate","na":1,"nb":4,"a":[["mapped/Na-caproate.yaml","Na-caproate"]],"b":[["DESULFOCELLA_MEDIUM.yaml","desulfocella_medium"],["DESULFOTHERMUS_NAPHTHAE_MEDIUM.yaml","desulfothermus_naphthae_medium"],["SYNTROPHOSPORA_MEDIUM.yaml","syntrophospora_medium"],["desulfocella_medium__34fcb342.yaml","desulfocella_medium"]]},{"id":"CHEBI:12936","l":"D-galactose","na":1,"nb":4,"a":[["mapped/D-galactose.yaml","D-Galactose"]],"b":[["XYLOPHILUS_MEDIUM.yaml","xylophilus_medium"],["bm_in_galactose_hodgson_et_al.yaml","bm_in_galactose_hodgson_et_al"],["liquid_mm_with_galactose_hodgson_et_al.yaml","liquid_mm_with_galactose_hodgson_et_al"],["minimal_media__805aefdd.yaml","minimal_media"]]},{"id":"CHEBI:15346","l":"coenzyme A","na":1,"nb":4,"a":[["mapped/Coenzyme_A.yaml","Coenzyme A"]],"b":[["HELMUTKOENIGIA_MEDIUM.yaml","helmutkoenigia_medium"],["TREPONEMA_ISOPTEROCOLA_MEDIUM.yaml","treponema_isopterocola_medium"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"],["treponema_isopterocola_medium__e7b07692.yaml","treponema_isopterocola_medium"]]},{"id":"CHEBI:15882","l":"phenol","na":1,"nb":4,"a":[["mapped/Phenol.yaml","Phenol"]],"b":[["MEDIUM_FOR_BACILLUS_STEAROTHERMOPHILUS.yaml","medium_for_bacillus_stearothermophilus"],["anaerobic_bicarbonate_buffered_medium_with_phenol.yaml","anaerobic_bicarbonate_buffered_medium_with_phenol"],["defined_freshwater_medium_cocl2__ac506908.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__0930ab53.yaml","defined_freshwater_medium_coso4"]]},{"id":"CHEBI:16411","l":"indole-3-acetic acid","na":1,"nb":4,"a":[["mapped/3-indolyl_Acetic_Acid.yaml","3-Indolyl acetic acid"]],"b":[["ENDOMICROBIUM_PROAVITUM_RSA_MEDIUM.yaml","endomicrobium_proavitum_rsa_medium"],["MODIFIED_AM5_MEDIUM_2.yaml","modified_am5_medium_2"],["am5_medium_elusimicrobium_medium.yaml","am5_medium_elusimicrobium_medium"],["endomicrobium_proavitum_rsa_medium__51692939.yaml","endomicrobium_proavitum_rsa_medium"]]},{"id":"CHEBI:16742","l":"orotic acid","na":1,"nb":4,"a":[["mapped/Orotic_acid.yaml","Orotic acid"]],"b":[["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"],["Soil_Defined_Media_%28SDM%29.yaml","Soil Defined Media (SDM)"],["cdm_lab_medium.yaml","cdm_lab_medium"],["ucm.yaml","ucm"]]},{"id":"CHEBI:17126","l":"carnitine","na":4,"nb":1,"a":[["mapped/Carnitine_Dl_Hydrochloride.yaml","Carnitine (Dl) Hydrochloride"],["mapped/Carnitine_Hydrochloride.yaml","Carnitine Hydrochloride"],["mapped/Dl-carnitine.yaml","DL-carnitine"],["mapped/L-Carnitine.yaml","L-Carnitine"]],"b":[["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:17148","l":"putrescine","na":1,"nb":4,"a":[["mapped/Putrescine.yaml","Putrescine"]],"b":[["VEILLONELLA_MEDIUM.yaml","veillonella_medium"],["ucm.yaml","ucm"],["veillonella_medium__07b613b7.yaml","veillonella_medium"],["veillonella_medium__75ab349a.yaml","veillonella_medium"]]},{"id":"CHEBI:17334","l":"penicillin","na":1,"nb":4,"a":[["mapped/Penicillin.yaml","Penicillin"]],"b":[["eagles_minimum_essential_medium_mem_containing_antibiotics_and_fetal_bovine_serum.yaml","eagles_minimum_essential_medium_mem_containing_antibiotics_and_fetal_bovine_serum"],["modified_pleuropneumonia_like_organism_pplo_medium.yaml","modified_pleuropneumonia_like_organism_pplo_medium"],["pplo_glucose_broth.yaml","pplo_glucose_broth"],["pplo_glucose_broth__66449f8d.yaml","pplo_glucose_broth"]]},{"id":"CHEBI:17879","l":"4-hydroxybenzoate","na":1,"nb":4,"a":[["mapped/P-hydroxybenzoate.yaml","p-Hydroxybenzoate"]],"b":[["DIETHYL_PHOSPHONATE_MEDIUM.yaml","diethyl_phosphonate_medium"],["defined_freshwater_medium_cocl2__140b53e4.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__7cf7eff3.yaml","defined_freshwater_medium_coso4"],["nutrient_medium_p_hydroxybenzoate.yaml","nutrient_medium_p_hydroxybenzoate"]]},{"id":"CHEBI:18300","l":"maleic acid","na":1,"nb":4,"a":[["mapped/Maleic_Acid.yaml","Maleic acid"]],"b":[["mmace_jasiecki_et_al.yaml","mmace_jasiecki_et_al"],["mmglu_jasiecki_et_al.yaml","mmglu_jasiecki_et_al"],["mmgly_jasiecki_et_al.yaml","mmgly_jasiecki_et_al"],["mmsuc_jasiecki_et_al.yaml","mmsuc_jasiecki_et_al"]]},{"id":"CHEBI:18405","l":"","na":1,"nb":4,"a":[["mapped/Pyridoxal_Phosphate.yaml","Pyridoxal phosphate"]],"b":[["HELMUTKOENIGIA_MEDIUM.yaml","helmutkoenigia_medium"],["TREPONEMA_ISOPTEROCOLA_MEDIUM.yaml","treponema_isopterocola_medium"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"],["treponema_isopterocola_medium__e7b07692.yaml","treponema_isopterocola_medium"]]},{"id":"CHEBI:191088","l":"Cyclohexylaminopropanesulfonic acid","na":1,"nb":4,"a":[["mapped/Caps_Buffer.yaml","CAPS buffer"]],"b":[["Cedears_Standard_Medium_2.yaml","cedears_standard_medium_2"],["Cedears_Standard_Medium_3.yaml","cedears_standard_medium_3"],["RCH2_defined_glucose_CAPS.yaml","RCH2 defined glucose CAPS"],["SERPENTINOMONAS_MINIMAL_MEDIUM.yaml","serpentinomonas_minimal_medium"]]},{"id":"CHEBI:192761","l":"ferrihydrite","na":1,"nb":4,"a":[["mapped/Ferrihydrite.yaml","Ferrihydrite"]],"b":[["DISSULFURIMICROBIUM_HYDROTHERMALE_MEDIUM.yaml","dissulfurimicrobium_hydrothermale_medium"],["MMJF_Medium.yaml","mmjf_medium"],["Modified_Rfennig_Medium_With_Ferrihydrite.yaml","modified_rfennig_medium_with_ferrihydrite"],["mmjf_medium__92d1ea1b.yaml","mmjf_medium"]]},{"id":"CHEBI:22868","l":"bile salt","na":1,"nb":4,"a":[["mapped/Bile_Salts.yaml","Bile salts"]],"b":[["1298.yaml","1298"],["ALKALINE_CELLULOSE_AGAR.yaml","alkaline_cellulose_agar"],["acido_thermophile_medium.yaml","acido_thermophile_medium"],["modified_eggerth_gagnon_medium.yaml","modified_eggerth_gagnon_medium"]]},{"id":"CHEBI:25548","l":"nitrilotriacetate(3-)","na":1,"nb":4,"a":[["mapped/Nitrilotriacetate.yaml","Nitrilotriacetate"]],"b":[["MEDIUM_FOR_CHELATOCOCCUS_BUHARII.yaml","medium_for_chelatococcus_buharii"],["NITRILOTRIACETATE_MEDIUM.yaml","nitrilotriacetate_medium"],["methanoregula_peat_medium__84e41704.yaml","methanoregula_peat_medium"],["methanosphaerula_peat_medium__1238714d.yaml","methanosphaerula_peat_medium"]]},{"id":"CHEBI:26709","l":"sodium hydrogensulfite","na":1,"nb":4,"a":[["mapped/Nahso3.yaml","NaHSO3"]],"b":[["BRUCELLA_BROTH.yaml","brucella_broth"],["Brucella.yaml","Brucella"],["Brucella_agar_plates_supplemented_with_hemin_and_vitamin_K1.yaml","brucella_agar_plates_supplemented_with_hemin_and_vitamin_k1"],["brucella_broth__a969823c.yaml","brucella_broth"]]},{"id":"CHEBI:27418","l":"1,4-naphthoquinone","na":1,"nb":4,"a":[["mapped/14-naphthoquinone.yaml","1,4-Naphthoquinone"]],"b":[["DESULFOMONILE_MEDIUM.yaml","desulfomonile_medium"],["M39_METHYLOMONAS_MEDIUM.yaml","m39_methylomonas_medium"],["SELENATE_REDUCER_MEDIUM.yaml","selenate_reducer_medium"],["m39_methylomonas_medium__d2371b94.yaml","m39_methylomonas_medium"]]},{"id":"CHEBI:28262","l":"dimethyl sulfoxide","na":1,"nb":4,"a":[["mapped/Dimethyl_Sulfoxide.yaml","Dimethyl sulfoxide"]],"b":[["MINERAL_MEDIUM_WITH_DIBENZOFURAN.yaml","mineral_medium_with_dibenzofuran"],["SYNBIOBACTERIUM_KA13_MEDIUM.yaml","synbiobacterium_ka13_medium"],["mineral_medium_with_2_chlorobenzoate.yaml","mineral_medium_with_2_chlorobenzoate"],["synbiobacterium_ka13_medium__e7f47e80.yaml","synbiobacterium_ka13_medium"]]},{"id":"CHEBI:28621","l":"triethanolamine","na":1,"nb":4,"a":[["mapped/Triethanolamine.yaml","Triethanolamine"]],"b":[["LACTOBACILLUS_PONTIS_MEDIUM.yaml","lactobacillus_pontis_medium"],["lactobacillus_pontis_medium__899ad629.yaml","lactobacillus_pontis_medium"],["mic_cit_herriott_et_al.yaml","mic_cit_herriott_et_al"],["mic_herriott_et_al.yaml","mic_herriott_et_al"]]},{"id":"CHEBI:28631","l":"3-phenylpropionic acid","na":1,"nb":4,"a":[["mapped/Phenyl_Propionic_Acid.yaml","Phenyl propionic acid"]],"b":[["ENDOMICROBIUM_PROAVITUM_RSA_MEDIUM.yaml","endomicrobium_proavitum_rsa_medium"],["MODIFIED_AM5_MEDIUM_2.yaml","modified_am5_medium_2"],["am5_medium_elusimicrobium_medium.yaml","am5_medium_elusimicrobium_medium"],["endomicrobium_proavitum_rsa_medium__51692939.yaml","endomicrobium_proavitum_rsa_medium"]]},{"id":"CHEBI:30563","l":"silicon dioxide","na":1,"nb":4,"a":[["mapped/Sio2.yaml","SiO2"]],"b":[["HALANAEROBIUM_HYDROGENIFORMANS_MEDIUM.yaml","halanaerobium_hydrogeniformans_medium"],["halanaerobium_hydrogeniformans_medium__4da99b2d.yaml","halanaerobium_hydrogeniformans_medium"],["halanaerobium_hydrogeniformans_medium_sl_hp.yaml","halanaerobium_hydrogeniformans_medium_sl_hp"],["togo_medium_m2562.yaml","togo_medium_m2562"]]},{"id":"CHEBI:30745","l":"phenylacetic acid","na":1,"nb":4,"a":[["mapped/Phenyl_Acetic_Acid.yaml","Phenyl acetic acid"]],"b":[["ENDOMICROBIUM_PROAVITUM_RSA_MEDIUM.yaml","endomicrobium_proavitum_rsa_medium"],["MODIFIED_AM5_MEDIUM_2.yaml","modified_am5_medium_2"],["am5_medium_elusimicrobium_medium.yaml","am5_medium_elusimicrobium_medium"],["endomicrobium_proavitum_rsa_medium__51692939.yaml","endomicrobium_proavitum_rsa_medium"]]},{"id":"CHEBI:31235","l":"Arginine hydrochloride","na":1,"nb":4,"a":[["mapped/L-arginine_X_Hcl.yaml","L-Arginine x HCl"]],"b":[["SEDIMENTIBACTER_MEDIUM.yaml","sedimentibacter_medium"],["SEDIMENTIBACTER_SAALENSIS_MEDIUM.yaml","sedimentibacter_saalensis_medium"],["b12_medium_guttman.yaml","b12_medium_guttman"],["mycoplasma_medium_cip_medium_89.yaml","mycoplasma_medium_cip_medium_89"]]},{"id":"CHEBI:41688","l":"crystal violet","na":1,"nb":4,"a":[["mapped/Crystal_Violet.yaml","Crystal Violet"]],"b":[["1298.yaml","1298"],["ALKALINE_CELLULOSE_AGAR.yaml","alkaline_cellulose_agar"],["acido_thermophile_medium.yaml","acido_thermophile_medium"],["modified_eggerth_gagnon_medium.yaml","modified_eggerth_gagnon_medium"]]},{"id":"CHEBI:48923","l":"erythromycin","na":1,"nb":4,"a":[["mapped/Erythromycin.yaml","erythromycin"]],"b":[["T2U_MEDIUM.yaml","t2u_medium"],["bhi_medium_modified.yaml","bhi_medium_modified"],["brain_heart_infusion_bhi_medium_supplemented_with_antibiotics.yaml","brain_heart_infusion_bhi_medium_supplemented_with_antibiotics"],["mrs_medium_containing_erythromycin.yaml","mrs_medium_containing_erythromycin"]]},{"id":"CHEBI:53425","l":"polysorbate 60","na":1,"nb":4,"a":[["mapped/Tween_60.yaml","Tween 60"]],"b":[["LEEMING_AND_NOTMAN_AGAR.yaml","leeming_and_notman_agar"],["leeming_amp_notman_agar_lna_leeming_amp_notman_1987_in_the_yeasts_a_taxonomic_study_5th_edn.yaml","leeming_amp_notman_agar_lna_leeming_amp_notman_1987_in_the_yeasts_a_taxonomic_study_5th_edn"],["leeming_amp_notman_agar_modified_mlna.yaml","leeming_amp_notman_agar_modified_mlna"],["leeming_and_notman_agar__33424fef.yaml","leeming_and_notman_agar"]]},{"id":"CHEBI:62955","l":"sodium 2-(N-morpholino)ethanesulfonate","na":1,"nb":4,"a":[["mapped/MES_sodium_salt.yaml","MES sodium salt"]],"b":[["CRBTM_UGA_Aerobic_MES.yaml","CRBTM UGA Aerobic MES"],["CRBTM_UGA_Anaerobic_MES.yaml","CRBTM UGA Anaerobic MES"],["RCH2_defined_glucose_MES.yaml","RCH2 defined glucose MES"],["ShewMM_MES_buffer.yaml","ShewMM MES buffer"]]},{"id":"CHEBI:75456","l":"2-stearoylglycerol","na":1,"nb":4,"a":[["mapped/Glycerol_Monostearate.yaml","Glycerol monostearate"]],"b":[["LEEMING_AND_NOTMAN_AGAR.yaml","leeming_and_notman_agar"],["leeming_amp_notman_agar_lna_leeming_amp_notman_1987_in_the_yeasts_a_taxonomic_study_5th_edn.yaml","leeming_amp_notman_agar_lna_leeming_amp_notman_1987_in_the_yeasts_a_taxonomic_study_5th_edn"],["leeming_amp_notman_agar_modified_mlna.yaml","leeming_amp_notman_agar_modified_mlna"],["leeming_and_notman_agar__33424fef.yaml","leeming_and_notman_agar"]]},{"id":"CHEBI:86153","l":"barium chloride dihydrate","na":1,"nb":4,"a":[["mapped/Bacl2_X_2_H2o.yaml","BaCl2 x 2 H2O"]],"b":[["HALOARCHAEUM_SALINUM_MEDIUM.yaml","haloarchaeum_salinum_medium"],["MH1_MEDIUM_FOR_SALIARCHAEUM_RUBRODURUM.yaml","mh1_medium_for_saliarchaeum_rubrodurum"],["haloarchaeal_medium_mh_1.yaml","haloarchaeal_medium_mh_1"],["mh1_medium_for_saliarchaeum_rubrodurum__2eb8bad1.yaml","mh1_medium_for_saliarchaeum_rubrodurum"]]},{"id":"CHEBI:86370","l":"neutral red","na":1,"nb":4,"a":[["mapped/Neutral_red.yaml","Neutral red"]],"b":[["1298.yaml","1298"],["ALKALINE_CELLULOSE_AGAR.yaml","alkaline_cellulose_agar"],["acido_thermophile_medium.yaml","acido_thermophile_medium"],["modified_eggerth_gagnon_medium.yaml","modified_eggerth_gagnon_medium"]]},{"id":"KEGG:malt","l":"","na":1,"nb":4,"a":[["mapped/Maltose.yaml","Maltose"]],"b":[["bm_in_maltose_hodgson_et_al.yaml","bm_in_maltose_hodgson_et_al"],["liquid_mm_with_maltose_hodgson_et_al.yaml","liquid_mm_with_maltose_hodgson_et_al"],["modified_vogel_medium_maltose.yaml","modified_vogel_medium_maltose"],["rdm_base_medium_vitamins_maltose_1_g_l_nh4cl.yaml","rdm_base_medium_vitamins_maltose_1_g_l_nh4cl"]]},{"id":"UBERON:0000178","l":"blood","na":1,"nb":4,"a":[["mapped/Blood.yaml","Blood"]],"b":[["blood_agar__45bfc12d.yaml","blood_agar"],["columbia_blood_agar_with_5_horse_blood__65a36f66.yaml","columbia_blood_agar_with_5_horse_blood"],["columbia_blood_agar_with_5_rabbit_blood__0ed590f0.yaml","columbia_blood_agar_with_5_rabbit_blood"],["columbia_blood_agar_with_5_sheep_blood__5f55f46d.yaml","columbia_blood_agar_with_5_sheep_blood"]]},{"id":"CHEBI:131383","l":"2,2,4,4,6,8,8-heptamethylnonane","na":1,"nb":3,"a":[["mapped/2244688-heptamethylnonane.yaml","2,2,4,4,6,8,8-Heptamethylnonane"]],"b":[["DESULFOBACTERIUM_NAPHTHALENIVOLANS_MEDIUM.yaml","desulfobacterium_naphthalenivolans_medium"],["DESULFOVIRGA_MEDIUM.yaml","desulfovirga_medium"],["desulfobacterium_naphthalenivolans_medium__c96254de.yaml","desulfobacterium_naphthalenivolans_medium"]]},{"id":"CHEBI:132100","l":"sodium octanoate","na":1,"nb":3,"a":[["mapped/Sodium_Octanoate.yaml","Sodium octanoate"]],"b":[["DESULFOCELLA_MEDIUM.yaml","desulfocella_medium"],["desulfobotulus_par22n_medium__bd3fccf7.yaml","desulfobotulus_par22n_medium"],["desulfocella_medium__34fcb342.yaml","desulfocella_medium"]]},{"id":"CHEBI:140435","l":"","na":1,"nb":3,"a":[["mapped/cholesterol.yaml","cholesterol"]],"b":[["CDM_LP.yaml","cdm_lp"],["Nematode_growth_medium_agar.yaml","Nematode growth medium agar"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:15443","l":"inulin","na":1,"nb":3,"a":[["mapped/Inulin.yaml","Inulin"]],"b":[["PSEUDOCLOSTRIDIUM_MEDIUM.yaml","pseudoclostridium_medium"],["medium_for_strain_m6_x2.yaml","medium_for_strain_m6_x2"],["pseudoclostridium_medium__bbe4204c.yaml","pseudoclostridium_medium"]]},{"id":"CHEBI:15846","l":"NAD(+)","na":1,"nb":3,"a":[["mapped/Beta-nad.yaml","beta-NAD"]],"b":[["Vulcanimicrobium_alpinus_medium.yaml","vulcanimicrobium_alpinus_medium"],["ctm_medium__057c0b18.yaml","ctm_medium"],["treponema_isopterocola_medium__e7b07692.yaml","treponema_isopterocola_medium"]]},{"id":"CHEBI:15887","l":"5-aminopentanoic acid","na":1,"nb":3,"a":[["mapped/5-aminovaleric_Acid.yaml","5-Aminovaleric acid"]],"b":[["ANAEROBIOSPIRILLUM_THOMASII_MEDIUM.yaml","anaerobiospirillum_thomasii_medium"],["CLOSTRIDIUM_VIRIDE_MEDIUM.yaml","clostridium_viride_medium"],["clostridium_aminovalericum_medium.yaml","clostridium_aminovalericum_medium"]]},{"id":"CHEBI:16238","l":"FAD","na":1,"nb":3,"a":[["mapped/Fad.yaml","FAD"]],"b":[["HELMUTKOENIGIA_MEDIUM.yaml","helmutkoenigia_medium"],["TREPONEMA_ISOPTEROCOLA_MEDIUM.yaml","treponema_isopterocola_medium"],["treponema_isopterocola_medium__e7b07692.yaml","treponema_isopterocola_medium"]]},{"id":"CHEBI:16482","l":"naphthalene","na":1,"nb":3,"a":[["mapped/Naphthalene.yaml","Naphthalene"]],"b":[["DESULFOBACTERIUM_NAPHTHALENIVOLANS_MEDIUM.yaml","desulfobacterium_naphthalenivolans_medium"],["LB_Medium_with_50_ppm_Naphthalene.yaml","lb_medium_with_50_ppm_naphthalene"],["desulfobacterium_naphthalenivolans_medium__c96254de.yaml","desulfobacterium_naphthalenivolans_medium"]]},{"id":"CHEBI:16919","l":"creatine","na":1,"nb":3,"a":[["mapped/Creatine.yaml","Creatine"]],"b":[["ETHANOLOGENBACTERIUM_MEDIUM.yaml","ethanologenbacterium_medium"],["TISSIERELLA_CREATINOPHILA_MEDIUM.yaml","tissierella_creatinophila_medium"],["ethanologenbacterium_medium__27eb2844.yaml","ethanologenbacterium_medium"]]},{"id":"CHEBI:17108","l":"D-arabinose","na":1,"nb":3,"a":[["mapped/D-arabinose.yaml","D-Arabinose"]],"b":[["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"],["Soil_Defined_Media_%28SDM%29.yaml","Soil Defined Media (SDM)"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:18135","l":"catechol","na":1,"nb":3,"a":[["mapped/Pyrocatechol.yaml","Pyrocatechol"]],"b":[["DESULFOBACTERIUM_CATECHOLICUM_MEDIUM.yaml","desulfobacterium_catecholicum_medium"],["DESULFOCASTAENA_MEDIUM.yaml","desulfocastaena_medium"],["desulfobacterium_catecholicum_medium__b7c6198a.yaml","desulfobacterium_catecholicum_medium"]]},{"id":"CHEBI:22599","l":"arabinose","na":1,"nb":3,"a":[["mapped/Arabinose.yaml","Arabinose"]],"b":[["MAG_Modified_arabinose_gluconate_medium.yaml","mag_modified_arabinose_gluconate_medium"],["mrs_medium__1506cddd.yaml","mrs_medium"],["togo_medium_m1594.yaml","togo_medium_m1594"]]},{"id":"CHEBI:25351","l":"mevalonic acid","na":1,"nb":3,"a":[["mapped/Dl-mevalonic_Acid.yaml","DL-mevalonic acid"]],"b":[["LACTOBACILLUS_MEDIUM_III.yaml","lactobacillus_medium_iii"],["lactobacillus_medium_ii__915ff5f7.yaml","lactobacillus_medium_ii"],["lactobacillus_medium_iii__eb3ab598.yaml","lactobacillus_medium_iii"]]},{"id":"CHEBI:26977","l":"thiosulfate","na":1,"nb":3,"a":[["mapped/Thiosulfate.yaml","Thiosulfate"]],"b":[["AMOEBOBACTER_MEDIUM.yaml","amoebobacter_medium"],["Artificial_seawater_base_with_thiosulfate_as_the_electron_donor.yaml","artificial_seawater_base_with_thiosulfate_as_the_electron_donor"],["pfennigs_medium__4e5aaa08.yaml","pfennigs_medium"]]},{"id":"CHEBI:27226","l":"uric acid","na":1,"nb":3,"a":[["mapped/Uric_Acid.yaml","Uric acid"]],"b":[["GOTTSCHALKIA_MEDIUM.yaml","gottschalkia_medium"],["gottschalkia_medium__e065303f.yaml","gottschalkia_medium"],["togo_medium_m1449.yaml","togo_medium_m1449"]]},{"id":"CHEBI:28145","l":"dibenzofuran","na":1,"nb":3,"a":[["mapped/Dibenzofuran.yaml","Dibenzofuran"]],"b":[["MINERAL_MEDIUM_WITH_DIBENZOFURAN.yaml","mineral_medium_with_dibenzofuran"],["cfmm_medium_0_1_dibenzofuran.yaml","cfmm_medium_0_1_dibenzofuran"],["mineral_medium_with_2_chlorobenzoate.yaml","mineral_medium_with_2_chlorobenzoate"]]},{"id":"CHEBI:28675","l":"dextrin","na":1,"nb":3,"a":[["mapped/Dextrin.yaml","Dextrin"]],"b":[["dt_medium_ph_3_5.yaml","dt_medium_ph_3_5"],["hickey_amp_tresner_agar.yaml","hickey_amp_tresner_agar"],["hickey_tresner_agar.yaml","hickey_tresner_agar"]]},{"id":"CHEBI:28842","l":"octadecanoic acid","na":1,"nb":3,"a":[["mapped/Stearic_Acid.yaml","Stearic acid"]],"b":[["DESULFOBACTERIUM_OLEOVORANS_MEDIUM.yaml","desulfobacterium_oleovorans_medium"],["DESULFOSUDIS_MEDIUM.yaml","desulfosudis_medium"],["desulfobacterium_oleovorans_medium__e2b50742.yaml","desulfobacterium_oleovorans_medium"]]},{"id":"CHEBI:30763","l":"4-hydroxybenzoic acid","na":1,"nb":3,"a":[["mapped/4-hydroxybenzoic_Acid.yaml","4-Hydroxybenzoic acid"]],"b":[["CRYPTOANAEROBACTER_MEDIUM.yaml","cryptoanaerobacter_medium"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"],["ui_medium__2735cbfb.yaml","ui_medium"]]},{"id":"CHEBI:32816","l":"pyruvic acid","na":1,"nb":3,"a":[["mapped/Pyruvic_Acid.yaml","Pyruvic acid"]],"b":[["ALGORIPHAGUS_ALKALIPHILUS_MEDIUM.yaml","algoriphagus_alkaliphilus_medium"],["modified_mrs.yaml","modified_mrs"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:41218","l":"mercaptoethanol","na":1,"nb":3,"a":[["mapped/2-mercaptoethanol.yaml","2-Mercaptoethanol"]],"b":[["MODIFIED_METHANOCALDOCOCCUS_MEDIUM.yaml","modified_methanocaldococcus_medium"],["modified_methanocaldococcus_medium__db540ec9.yaml","modified_methanocaldococcus_medium"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:41250","l":"bis-tris","na":1,"nb":3,"a":[["mapped/Bis-tris.yaml","Bis-Tris"]],"b":[["METHYLOPHAGA_MEDIUM.yaml","methylophaga_medium"],["Methylophaga_Medium_1403.yaml","methylophaga_medium_1403"],["methylophaga_medium_1403_add_agar.yaml","methylophaga_medium_1403_add_agar"]]},{"id":"CHEBI:41808","l":"decane","na":1,"nb":3,"a":[["mapped/N-decane.yaml","n-Decane"]],"b":[["DESULFOGLAEBA_MEDIUM.yaml","desulfoglaeba_medium"],["MODIFIED_DESULFOGLAEBA_ALKANEXEDENS_MEDIUM.yaml","modified_desulfoglaeba_alkanexedens_medium"],["modified_desulfoglaeba_alkanexedens_medium__f10b64fd.yaml","modified_desulfoglaeba_alkanexedens_medium"]]},{"id":"CHEBI:47965","l":"N-acetylmuramic acid","na":3,"nb":1,"a":[["mapped/N-acetyl-muramic_Acid.yaml","n-Acetyl-muramic acid"],["mapped/N-acetylmuramic_Acid.yaml","N-acetylmuramic acid"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:53311","l":"sodium alginate","na":1,"nb":3,"a":[["mapped/Sodium_Alginate.yaml","Sodium alginate"]],"b":[["ALGINATE_MEDIUM.yaml","alginate_medium"],["alginate_medium__8987a8ad.yaml","alginate_medium"],["marine_broth_2216_0_5_alginate.yaml","marine_broth_2216_0_5_alginate"]]},{"id":"CHEBI:53423","l":"polysorbate 40","na":1,"nb":3,"a":[["mapped/Tween_40.yaml","Tween 40"]],"b":[["MDA.yaml","mda"],["PITYROSPORUM_MEDIUM.yaml","pityrosporum_medium"],["modified_dixon_s_agar.yaml","modified_dixon_s_agar"]]},{"id":"CHEBI:6109","l":"kanamycin A sulfate","na":1,"nb":3,"a":[["mapped/Kanamycin_Sulfate.yaml","Kanamycin sulfate"]],"b":[["R2A_Kan10_Lactate.yaml","R2A_Kan10_Lactate"],["R2A_Kan50_Tween01_Cycloheximide200.yaml","R2A_Kan50_Tween01_Cycloheximide200"],["lb_luria_bertani_agar_with_kanamycin_and_rifampicin__0472ff8f.yaml","lb_luria_bertani_agar_with_kanamycin_and_rifampicin"]]},{"id":"CHEBI:62964","l":"magnesium acetate","na":1,"nb":3,"a":[["mapped/Magnesium_Acetate.yaml","Magnesium acetate"]],"b":[["Green_Sulfur_Bacterium_Medium.yaml","green_sulfur_bacterium_medium"],["green_sulfur_bacterium_medium_1_nacl.yaml","green_sulfur_bacterium_medium_1_nacl"],["pfennigs_medium_iii.yaml","pfennigs_medium_iii"]]},{"id":"CHEBI:6872","l":"methylene blue","na":1,"nb":3,"a":[["mapped/Methylene_Blue.yaml","Methylene blue"]],"b":[["HALANAEROBIUM_HYDROGENIFORMANS_MEDIUM.yaml","halanaerobium_hydrogeniformans_medium"],["halanaerobium_hydrogeniformans_medium__4da99b2d.yaml","halanaerobium_hydrogeniformans_medium"],["togo_medium_m2562.yaml","togo_medium_m2562"]]},{"id":"CHEBI:84015","l":"(1R,2R)-diclocymet","na":1,"nb":3,"a":[["mapped/Tapso.yaml","TAPSO"]],"b":[["ONR7a_MEDIUM.yaml","onr7a_medium"],["onr7a_medium__1fd831cc.yaml","onr7a_medium"],["onr7a_medium__d3523857.yaml","onr7a_medium"]]},{"id":"CHEBI:86154","l":"bromocresol purple","na":1,"nb":3,"a":[["mapped/Bromocresol_Purple.yaml","Bromocresol purple"]],"b":[["HALOTHIOBACILLUS_NEAPOLITANUS_MEDIUM.yaml","halothiobacillus_neapolitanus_medium"],["THERMITHIOBACILLUS_MEDIUM.yaml","thermithiobacillus_medium"],["thiobacillus_thioparus_tk_m_medium.yaml","thiobacillus_thioparus_tk_m_medium"]]},{"id":"CHEBI:91257","l":"disodium hydrogenarsenate heptahydrate","na":1,"nb":3,"a":[["mapped/Na2haso4_X_7_H2o.yaml","Na2HAsO4 x 7 H2O"]],"b":[["desulfuribacillus_medium_arsenate.yaml","desulfuribacillus_medium_arsenate"],["mlms_1_medium_arsenate.yaml","mlms_1_medium_arsenate"],["seleniivibrio_medium_arsenate.yaml","seleniivibrio_medium_arsenate"]]},{"id":"CHEBI:91261","l":"disodium (S)-malate","na":1,"nb":3,"a":[["mapped/Sodium_Malate.yaml","Sodium malate"]],"b":[["RHODOPSEUDOMONAS_RUTILA_MEDIUM.yaml","rhodopseudomonas_rutila_medium"],["rhodopseudomonas_rutila_medium__d1b05a43.yaml","rhodopseudomonas_rutila_medium"],["rhodovulum_imhoffii_medium__ba892fd4.yaml","rhodovulum_imhoffii_medium"]]},{"id":"KEGG:gthrd","l":"","na":1,"nb":3,"a":[["mapped/Glutathione.yaml","Glutathione"]],"b":[["CDM_LP.yaml","cdm_lp"],["mma_klein_et_al.yaml","mma_klein_et_al"],["mmb_klein_et_al.yaml","mmb_klein_et_al"]]},{"id":"KEGG:hxan","l":"","na":1,"nb":3,"a":[["mapped/Hypoxanthine.yaml","Hypoxanthine"]],"b":[["CDM_LP.yaml","cdm_lp"],["mic_cit_herriott_et_al.yaml","mic_cit_herriott_et_al"],["mic_herriott_et_al.yaml","mic_herriott_et_al"]]},{"id":"KEGG:thym","l":"","na":1,"nb":3,"a":[["mapped/Thymine.yaml","Thymine"]],"b":[["Asp2.yaml","asp2"],["CDM_LP.yaml","cdm_lp"],["glucose_minimal_media_shehata_et_al.yaml","glucose_minimal_media_shehata_et_al"]]},{"id":"KEGG:thymd","l":"","na":1,"nb":3,"a":[["mapped/Thymidine.yaml","Thymidine"]],"b":[["MCD_Medium.yaml","mcd_medium"],["cdm_teusink_et_al.yaml","cdm_teusink_et_al"],["complete_chemically_defined_medium.yaml","complete_chemically_defined_medium"]]},{"id":"KEGG:tol","l":"","na":1,"nb":3,"a":[["mapped/Toluene.yaml","Toluene"]],"b":[["Modified_m9_with_toluene.yaml","modified_m9_with_toluene"],["defined_freshwater_medium_cocl2__6b305113.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__35d08dce.yaml","defined_freshwater_medium_coso4"]]},{"id":"CHEBI:114786","l":"sodium disulfite","na":1,"nb":2,"a":[["mapped/Na2s2o5.yaml","Na2S2O5"]],"b":[["CALDIMICROBIUM_THIODISMUTANS_MEDIUM.yaml","caldimicrobium_thiodismutans_medium"],["DESULFOLUTIVIBRIO_MEDIUM.yaml","desulfolutivibrio_medium"]]},{"id":"CHEBI:131371","l":"iron(3+) phosphate","na":1,"nb":2,"a":[["mapped/Fepo4.yaml","FePO4"]],"b":[["Marine_2216E_medium.yaml","marine_2216e_medium"],["ytbc_medium.yaml","ytbc_medium"]]},{"id":"CHEBI:131372","l":"iron(3+) phosphate tetrahydrate","na":1,"nb":2,"a":[["mapped/Fe_Iiipo4_X_4_H2o.yaml","Fe(III)PO4 x 4 H2O"]],"b":[["LEUCOTHRIX_MEDIUM.yaml","leucothrix_medium"],["MARINE_AGAR.yaml","marine_agar"]]},{"id":"CHEBI:131839","l":"sodium dodecanoate","na":1,"nb":2,"a":[["mapped/Na-laurate.yaml","Na-laurate"]],"b":[["SYNTROPHOMONAS_SAPOVORANS_MEDIUM.yaml","syntrophomonas_sapovorans_medium"],["SYNTROPHOMONAS_ZEHNDERI_MEDIUM.yaml","syntrophomonas_zehnderi_medium"]]},{"id":"CHEBI:132766","l":"sodium nitrilotriacetate","na":1,"nb":2,"a":[["mapped/05_M_Nitrilotriacetic_Acid_Disodium_Salt.yaml","0.5 M Nitrilotriacetic acid, disodium salt"]],"b":[["PEAT_MEDIUM_1_FOR_METHANOREGURA_BOONEI.yaml","peat_medium_1_for_methanoregura_boonei"],["a1_medium__13c8113e.yaml","a1_medium"]]},{"id":"CHEBI:136511","l":"manganese dioxide","na":1,"nb":2,"a":[["mapped/Mno2.yaml","MnO2"]],"b":[["SULFURIMONAS_MARISNIGRI_MEDIUM.yaml","sulfurimonas_marisnigri_medium"],["abss2__1d326b00.yaml","abss2"]]},{"id":"CHEBI:15676","l":"allantoin","na":1,"nb":2,"a":[["mapped/Allantoin.yaml","Allantoin"]],"b":[["ALLANTOIN_MINERAL_MEDIUM.yaml","allantoin_mineral_medium"],["allantoin_mineral_medium__75896b1e.yaml","allantoin_mineral_medium"]]},{"id":"CHEBI:15728","l":"4-guanidinobutanoic acid","na":1,"nb":2,"a":[["mapped/4-guanidinobutyric_Acid.yaml","4-Guanidinobutyric acid"]],"b":[["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"],["Soil_Defined_Media_%28SDM%29.yaml","Soil Defined Media (SDM)"]]},{"id":"CHEBI:16261","l":"chitosan","na":1,"nb":2,"a":[["mapped/Chitosan.yaml","Chitosan"]],"b":[["HALOACTINOMYCES_HALOPHILUS_MEDIUM.yaml","haloactinomyces_halophilus_medium"],["Matsuaria_Medium.yaml","matsuaria_medium"]]},{"id":"CHEBI:16450","l":"","na":1,"nb":2,"a":[["mapped/2-deoxyuridine.yaml","2'-Deoxyuridine"]],"b":[["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"],["Soil_Defined_Media_%28SDM%29.yaml","Soil Defined Media (SDM)"]]},{"id":"CHEBI:17045","l":"dinitrogen oxide","na":1,"nb":2,"a":[["mapped/Nitrous_Oxide.yaml","nitrous oxide"]],"b":[["PM_N2O.yaml","PM N2O"],["PM_argon75_N2O25.yaml","PM argon75 N2O25"]]},{"id":"CHEBI:17924","l":"D-glucitol","na":1,"nb":2,"a":[["mapped/D-sorbitol.yaml","D-Sorbitol"]],"b":[["5_sorbitol_medium.yaml","5_sorbitol_medium"],["5_sorbitol_medium__c395a410.yaml","5_sorbitol_medium"]]},{"id":"CHEBI:18026","l":"2,3-dihydroxybenzoic acid","na":1,"nb":2,"a":[["mapped/23-dihydroxybenzoic_Acid.yaml","2,3-dihydroxybenzoic acid"]],"b":[["M9_minimal_media_aromix_noCarbon.yaml","M9 minimal media aromix noCarbon"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"]]},{"id":"CHEBI:18095","l":"trans-4-hydroxy-L-proline","na":1,"nb":2,"a":[["mapped/Hydroxy-l-proline.yaml","Hydroxy-L-Proline"]],"b":[["RPMI.yaml","RPMI"],["RPMI_with_Fetal_bovine_serum_Conditioned.yaml","RPMI with Fetal bovine serum Conditioned"]]},{"id":"CHEBI:18287","l":"L-fucose","na":1,"nb":2,"a":[["mapped/L-fucose.yaml","L-Fucose"]],"b":[["PONTIELLA_MEDIUM.yaml","pontiella_medium"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:183882","l":"3-(cyclohexylamino)-2-hydroxy-1-propanesulfonic acid","na":1,"nb":2,"a":[["mapped/Capso.yaml","CAPSO"]],"b":[["RT2_MEDIUM.yaml","rt2_medium"],["rt2_medium__df06dcd8.yaml","rt2_medium"]]},{"id":"CHEBI:18403","l":"L-arabinitol","na":1,"nb":2,"a":[["mapped/Arabitol.yaml","Arabitol"]],"b":[["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"],["Soil_Defined_Media_%28SDM%29.yaml","Soil Defined Media (SDM)"]]},{"id":"CHEBI:189426","l":"Pyridoxine dihydrochloride","na":1,"nb":2,"a":[["mapped/Pyridoxine_dihydrochloride.yaml","Pyridoxine dihydrochloride"]],"b":[["Medium_for_strain_C_G2.yaml","medium_for_strain_c_g2"],["Medium_for_strain_C_L2.yaml","medium_for_strain_c_l2"]]},{"id":"CHEBI:195690","l":"L-Ornithine monochlorohydrate/ornithine","na":1,"nb":2,"a":[["mapped/L-ornithine_Monohydrochloride.yaml","L-ornithine monohydrochloride"]],"b":[["SCFM.yaml","SCFM"],["SCFM_10mMNitrate.yaml","SCFM 10mMNitrate"]]},{"id":"CHEBI:22660","l":"aspartic acid","na":2,"nb":1,"a":[["mapped/DL-Tyrosine.yaml","DL-Tyrosine"],["mapped/Dl-aspartic_Acid.yaml","DL-aspartic acid"]],"b":[["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"]]},{"id":"CHEBI:234557","l":"sodium palmitate","na":1,"nb":2,"a":[["mapped/Sodium_Palmitate.yaml","Sodium palmitate"]],"b":[["DESULFATIBACILLUS_OLEFINIVORANS_MEDIUM.yaml","desulfatibacillus_olefinivorans_medium"],["desulfatiferula_berrense_medium__83f13d53.yaml","desulfatiferula_berrense_medium"]]},{"id":"CHEBI:23673","l":"2,6-diaminopimelic acid","na":1,"nb":2,"a":[["mapped/Diaminopimelic_Acid.yaml","Diaminopimelic acid"]],"b":[["CHI_1776_MEDIUM.yaml","chi_1776_medium"],["dap_nutrient_agar.yaml","dap_nutrient_agar"]]},{"id":"CHEBI:27941","l":"pullulan","na":1,"nb":2,"a":[["mapped/Pullulan.yaml","Pullulan"]],"b":[["ARTIFICIAL_SEAWATER_MEDIUM_WITH_PULLULAN.yaml","artificial_seawater_medium_with_pullulan"],["artificial_seawater_medium_with_pullulan__dbb4c222.yaml","artificial_seawater_medium_with_pullulan"]]},{"id":"CHEBI:28053","l":"melibiose","na":1,"nb":2,"a":[["mapped/Melibiose.yaml","Melibiose"]],"b":[["MP_AGAR.yaml","mp_agar"],["mp_agar__3414ec19.yaml","mp_agar"]]},{"id":"CHEBI:28077","l":"rifampicin","na":1,"nb":2,"a":[["mapped/Rifampicin.yaml","Rifampicin"]],"b":[["lb_luria_bertani_agar_with_kanamycin_and_rifampicin__0472ff8f.yaml","lb_luria_bertani_agar_with_kanamycin_and_rifampicin"],["luria_bertani_lb_antibiotics.yaml","luria_bertani_lb_antibiotics"]]},{"id":"CHEBI:28997","l":"","na":1,"nb":2,"a":[["mapped/2-deoxyinosine.yaml","2'-Deoxyinosine"]],"b":[["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"],["Soil_Defined_Media_%28SDM%29.yaml","Soil Defined Media (SDM)"]]},{"id":"CHEBI:29958","l":"L-aspartic acid residue","na":2,"nb":1,"a":[["mapped/D.yaml","D"],["mapped/Sodium_Lactate.yaml","Sodium lactate"]],"b":[["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:30764","l":"3-hydroxybenzoic acid","na":1,"nb":2,"a":[["mapped/3-hydroxybenzoic_Acid.yaml","3-Hydroxybenzoic acid"]],"b":[["ANAEROBIOSPIRILLUM_THOMASII_MEDIUM.yaml","anaerobiospirillum_thomasii_medium"],["SPOROTOMACULUM_MEDIUM.yaml","sporotomaculum_medium"]]},{"id":"CHEBI:31340","l":"Calcium folinate","na":1,"nb":2,"a":[["mapped/Ca-folinate.yaml","Ca-folinate"]],"b":[["HELMUTKOENIGIA_MEDIUM.yaml","helmutkoenigia_medium"],["treponema_isopterocola_medium__e7b07692.yaml","treponema_isopterocola_medium"]]},{"id":"CHEBI:32586","l":"sodium sulfate decahydrate","na":1,"nb":2,"a":[["mapped/Na2so4_X_10_H2o.yaml","Na2SO4 x 10 H2O"]],"b":[["FERROUS_SULFATE_YEAST_EXTRACT_MEDIUM.yaml","ferrous_sulfate_yeast_extract_medium"],["ferrous_sulfate_yeast_extract_medium__1abf3821.yaml","ferrous_sulfate_yeast_extract_medium"]]},{"id":"CHEBI:32596","l":"calcium hydrogenphosphate","na":1,"nb":2,"a":[["mapped/Cahpo4.yaml","CaHPO4"]],"b":[["MCH.yaml","mch"],["pc__c50558b8.yaml","pc"]]},{"id":"CHEBI:33942","l":"ribose","na":1,"nb":2,"a":[["mapped/Ribose.yaml","Ribose"]],"b":[["MODIFIED_OTI_MEDIUM.yaml","modified_oti_medium"],["oteb_medium.yaml","oteb_medium"]]},{"id":"CHEBI:34653","l":"Congo Red","na":1,"nb":2,"a":[["mapped/Congo_Red.yaml","Congo red"]],"b":[["Yeast_Extract_Mannitol_Agar_Medium.yaml","yeast_extract_mannitol_agar_medium"],["yeast_extract_mannitol_agar_medium__20c5fe1b.yaml","yeast_extract_mannitol_agar_medium"]]},{"id":"CHEBI:35366","l":"fatty acid","na":1,"nb":2,"a":[["mapped/Fatty_Acid_Mixture_See_Medium_No_266.yaml","Fatty acid mixture (see Medium No. 266)"]],"b":[["MODIFIED_AM5_MEDIUM_2.yaml","modified_am5_medium_2"],["modified_am5_medium__421a5fe8.yaml","modified_am5_medium"]]},{"id":"CHEBI:35899","l":"crotonate","na":1,"nb":2,"a":[["mapped/Na-crotonate.yaml","Na-crotonate"]],"b":[["SERPENTINICELLA_MEDIUM.yaml","serpentinicella_medium"],["for_dsm_17722.yaml","for_dsm_17722"]]},{"id":"CHEBI:36018","l":"1,1,2-trichloroethane","na":1,"nb":2,"a":[["mapped/112-trichloroethane.yaml","1,1,2-Trichloroethane"]],"b":[["ip3_3_medium.yaml","ip3_3_medium"],["ip3_3_medium__726cb47b.yaml","ip3_3_medium"]]},{"id":"CHEBI:38267","l":"boronic acid","na":1,"nb":2,"a":[["mapped/H3bo2.yaml","H3BO2"]],"b":[["TELMATOSPIRILLUM_MEDIUM.yaml","telmatospirillum_medium"],["telmatospirillum_medium__43d2195f.yaml","telmatospirillum_medium"]]},{"id":"CHEBI:39054","l":"NTA","na":1,"nb":2,"a":[["mapped/Nta.yaml","NTA"]],"b":[["BASAL_MEDIUM.yaml","basal_medium"],["phosphate_buffered_basal_medium_pbbm.yaml","phosphate_buffered_basal_medium_pbbm"]]},{"id":"CHEBI:39060","l":"N-(2-acetamido)-2-aminoethanesulfonic acid","na":2,"nb":1,"a":[["mapped/Aces.yaml","ACES"],["mapped/N-_2-acetamido-2-aminoethanesulfonic_Acid.yaml","N-(2-acetamido)-2-aminoethanesulfonic acid"]],"b":[["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:4178","l":"D-glucuronic acid","na":2,"nb":1,"a":[["mapped/D-Glucuronic_Acid_Sodium_Salt_Monohydrate.yaml","D-Glucuronic acid sodium salt monohydrate"],["mapped/D-glucuronic_Acid.yaml","D-glucuronic acid"]],"b":[["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:49474","l":"argon(0)","na":1,"nb":2,"a":[["mapped/Argon.yaml","argon"]],"b":[["PM_argon.yaml","PM argon"],["PM_argon75_N2O25.yaml","PM argon75 N2O25"]]},{"id":"CHEBI:52071","l":"dextran","na":2,"nb":1,"a":[["mapped/Dextran.yaml","Dextran"],["unmapped/Dextran_Mw_1270.yaml","dextran, Mw ~1,270"]],"b":[["DEXTRAN_MEDIUM.yaml","dextran_medium"]]},{"id":"CHEBI:53389","l":"poly(3-hydroxybutyrate)","na":1,"nb":2,"a":[["mapped/Poly_3-hydroxybutyrate.yaml","Poly(3-hydroxybutyrate)"]],"b":[["PHB_AGAR.yaml","phb_agar"],["phb_agar__ec580e59.yaml","phb_agar"]]},{"id":"CHEBI:53633","l":"L-lysine hydrochloride","na":1,"nb":2,"a":[["mapped/L-lysine_Hcl.yaml","L-Lysine HCl"]],"b":[["SEDIMENTIBACTER_MEDIUM.yaml","sedimentibacter_medium"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:57912","l":"L-tryptophan zwitterion","na":1,"nb":2,"a":[["mapped/Dl-tryptophan.yaml","DL-Tryptophan"]],"b":[["acidaminococcus_fermentans_medium__d515a0ab.yaml","acidaminococcus_fermentans_medium"],["togo_medium_m1435.yaml","togo_medium_m1435"]]},{"id":"CHEBI:71240","l":"sodium diphosphate","na":1,"nb":2,"a":[["mapped/Sodium_Pyrophosphate.yaml","Sodium pyrophosphate"]],"b":[["FASTIDIOUS_ANAEROBE_BROTH_MEDIUM.yaml","fastidious_anaerobe_broth_medium"],["fastidious_anaerobe_broth_medium__334c6ed7.yaml","fastidious_anaerobe_broth_medium"]]},{"id":"CHEBI:81860","l":"Sodium oleate","na":1,"nb":2,"a":[["mapped/Sodium_Oleate.yaml","Sodium oleate"]],"b":[["MODIFIED_SYNTROPHOMONAS_MEDIUM_FOR_OL4.yaml","modified_syntrophomonas_medium_for_ol4"],["modified_syntrophomonas_medium_for_ol4__2684e102.yaml","modified_syntrophomonas_medium_for_ol4"]]},{"id":"CHEBI:86202","l":"chalcopyrite","na":1,"nb":2,"a":[["mapped/Chalcopyrite.yaml","Chalcopyrite"]],"b":[["acidianus_sp_jp7_medium.yaml","acidianus_sp_jp7_medium"],["acidianus_sp_jp7_medium__73757a06.yaml","acidianus_sp_jp7_medium"]]},{"id":"CHEBI:86355","l":"magnesium dichloride monohydrate","na":1,"nb":2,"a":[["mapped/Mgcl2_X_H2o.yaml","MgCl2 x H2O"]],"b":[["hydrogen_oxydizing_medium.yaml","hydrogen_oxydizing_medium"],["medium_for_co_culture_of_strain_jt_with_methanospirillum_hungatei_nbrc_100397.yaml","medium_for_co_culture_of_strain_jt_with_methanospirillum_hungatei_nbrc_100397"]]},{"id":"CHEBI:86473","l":"sodium molybdate heptahydrate","na":1,"nb":2,"a":[["mapped/Na2moo4_X_7_H2o.yaml","Na2MoO4 x 7 H2O"]],"b":[["BEIJERINCKIA_DOEBEREINERAE_MEDIUM.yaml","beijerinckia_doebereinerae_medium"],["py_broth.yaml","py_broth"]]},{"id":"CHEBI:91090","l":"charcoal","na":1,"nb":2,"a":[["mapped/Charcoal.yaml","Charcoal"]],"b":[["GILLIAMELLA_MEDIUM.yaml","gilliamella_medium"],["MALTEXTRACT_CHARCOAL_MEDIUM.yaml","maltextract_charcoal_medium"]]},{"id":"CHEBI:91241","l":"ammonium oxalate","na":1,"nb":2,"a":[["mapped/Nh4-oxalate.yaml","NH4-oxalate"]],"b":[["OXALOPHAGUS_MEDIUM.yaml","oxalophagus_medium"],["om_2_medium.yaml","om_2_medium"]]},{"id":"CHEBI:91246","l":"copper(II) sulfate hexahydrate","na":1,"nb":2,"a":[["mapped/Cuso4_X_6_H2o.yaml","CuSO4 x 6 H2O"]],"b":[["BEIJERINCKIA_MEDIUM.yaml","beijerinckia_medium"],["pe_medium__a4e2bbec.yaml","pe_medium"]]},{"id":"CHEBI:91251","l":"sodium glyoxylate","na":1,"nb":2,"a":[["mapped/Na2-glyoxalate.yaml","Na2-glyoxalate"]],"b":[["SYNTROPHOBOTULUS_MEDIUM.yaml","syntrophobotulus_medium"],["syntrophobotulus_medium__b40a5958.yaml","syntrophobotulus_medium"]]},{"id":"CHEBI:91263","l":"disodium maleate","na":1,"nb":2,"a":[["mapped/Sodium_Maleate.yaml","Sodium maleate"]],"b":[["MALEATE_LIQUID_MEDIUM.yaml","maleate_liquid_medium"],["maleate_liquid_medium__817e900d.yaml","maleate_liquid_medium"]]},{"id":"FOODON:03315424","l":"meat extract","na":2,"nb":1,"a":[["mapped/Meat_Extract.yaml","Meat Extract"],["mapped/Yeast_Meat_Extract_H2.yaml","Yeast + Meat Extract + H2"]],"b":[["mGAM.yaml","mGAM"]]},{"id":"KEGG:com","l":"","na":1,"nb":2,"a":[["mapped/2-mercaptoethanesulfonate.yaml","2-Mercaptoethanesulfonate"]],"b":[["mcn_medium_whitman.yaml","mcn_medium_whitman"],["mcna_medium_lupa.yaml","mcna_medium_lupa"]]},{"id":"KEGG:cu","l":"Calcium","na":1,"nb":2,"a":[["mapped/Copper.yaml","Copper"]],"b":[["tap_auto.yaml","tap_auto"],["tap_hetero_mixo.yaml","tap_hetero_mixo"]]},{"id":"KEGG:gal","l":"","na":1,"nb":2,"a":[["mapped/D-galactose.yaml","D-Galactose"]],"b":[["bm_in_galactose_hodgson_et_al.yaml","bm_in_galactose_hodgson_et_al"],["liquid_mm_with_galactose_hodgson_et_al.yaml","liquid_mm_with_galactose_hodgson_et_al"]]},{"id":"KEGG:meoh","l":"","na":1,"nb":2,"a":[["mapped/Methanol.yaml","Methanol"]],"b":[["fermentation_medium_methanol_nh4cl.yaml","fermentation_medium_methanol_nh4cl"],["hs_medium_methanol_acetate.yaml","hs_medium_methanol_acetate"]]},{"id":"KEGG:mndn","l":"","na":1,"nb":2,"a":[["mapped/Menadione.yaml","Menadione"]],"b":[["BGDM.yaml","bgdm"],["CDM_LP.yaml","cdm_lp"]]},{"id":"KEGG:mnl","l":"","na":1,"nb":2,"a":[["mapped/Mannitol.yaml","Mannitol"]],"b":[["Gotz_minimal_medium_with_mannitol.yaml","gotz_minimal_medium_with_mannitol"],["liquid_mm_with_mannitol_hodgson_et_al.yaml","liquid_mm_with_mannitol_hodgson_et_al"]]},{"id":"UBERON:0001977","l":"blood serum","na":2,"nb":1,"a":[["mapped/Rabbit_Serum.yaml","Rabbit serum"],["mapped/Serum.yaml","Serum"]],"b":[["mGAM.yaml","mGAM"]]},{"id":"CAS:7447-40-7)","l":"","na":1,"nb":1,"a":[["mapped/Kcl.yaml","KCl"]],"b":[["wc_medium__6b820ca9.yaml","wc_medium"]]},{"id":"CHEBI:113373","l":"sodium 3-hydroxybutyrate","na":1,"nb":1,"a":[["mapped/Na-3-hydroxybutyrate.yaml","Na-3-hydroxybutyrate"]],"b":[["ILYOBACTER_POLYTROPUS_MEDIUM.yaml","ilyobacter_polytropus_medium"]]},{"id":"CHEBI:115197","l":"sodium gallate","na":1,"nb":1,"a":[["mapped/Na-gallate.yaml","Na-gallate"]],"b":[["PELOBACTER_ACIDIGALLICI_MEDIUM.yaml","pelobacter_acidigallici_medium"]]},{"id":"CHEBI:131389","l":"magnesium citrate","na":1,"nb":1,"a":[["mapped/Mg-citrate.yaml","Mg-citrate"]],"b":[["l_wenstein_jensen_medium.yaml","l_wenstein_jensen_medium"]]},{"id":"CHEBI:131523","l":"manganese(II) sulfate hexahydrate","na":1,"nb":1,"a":[["mapped/Mnso4_X_6_H2o.yaml","MnSO4 x 6 H2O"]],"b":[["BEIJERINCKIA_MEDIUM.yaml","beijerinckia_medium"]]},{"id":"CHEBI:132101","l":"sodium orotate","na":1,"nb":1,"a":[["mapped/Na-orotate.yaml","Na-orotate"]],"b":[["FAECALICATENA_OROTICA_MEDIUM.yaml","faecalicatena_orotica_medium"]]},{"id":"CHEBI:132109","l":"sodium octadecanoate","na":1,"nb":1,"a":[["mapped/Na-stearate.yaml","Na-stearate"]],"b":[["SYNTROPHOMONAS_SD2_MEDIUM.yaml","syntrophomonas_sd2_medium"]]},{"id":"CHEBI:132748","l":"sodium vanillate","na":1,"nb":1,"a":[["mapped/Na-vanillate.yaml","Na-vanillate"]],"b":[["OXOBACTER_PFENNIGII_MEDIUM.yaml","oxobacter_pfennigii_medium"]]},{"id":"CHEBI:132762","l":"zinc sulfate hexahydrate","na":1,"nb":1,"a":[["mapped/Znso4_X_6_H2o.yaml","ZnSO4 x 6 H2O"]],"b":[["BEIJERINCKIA_MEDIUM.yaml","beijerinckia_medium"]]},{"id":"CHEBI:142468","l":"1,2-dichloropropane","na":1,"nb":1,"a":[["mapped/12-dichloropropane.yaml","1,2-Dichloropropane"]],"b":[["dehalogenimonas_medium__6a926cbc.yaml","dehalogenimonas_medium"]]},{"id":"CHEBI:16148","l":"heptadecane","na":1,"nb":1,"a":[["mapped/Heptadecane.yaml","Heptadecane"]],"b":[["THERMOMICROBIUM_FOSTERI_MEDIUM.yaml","thermomicrobium_fosteri_medium"]]},{"id":"CHEBI:16354","l":"N-methylhydantoin","na":1,"nb":1,"a":[["mapped/N-methylhydantoin.yaml","N-methylhydantoin"]],"b":[["tissierella_amo_1_medium.yaml","tissierella_amo_1_medium"]]},{"id":"CHEBI:16602","l":"trichloroethene","na":1,"nb":1,"a":[["mapped/Trichloroethylene.yaml","Trichloroethylene"]],"b":[["dehalococcoides_medium__9ce6016b.yaml","dehalococcoides_medium"]]},{"id":"CHEBI:16737","l":"creatinine","na":1,"nb":1,"a":[["mapped/Creatinine.yaml","Creatinine"]],"b":[["tissierella_sp_medium_creatinine.yaml","tissierella_sp_medium_creatinine"]]},{"id":"CHEBI:16867","l":"D-methionine","na":1,"nb":1,"a":[["mapped/D-Methionine.yaml","D-Methionine"]],"b":[["methionine_salt_schaechter_et_al.yaml","methionine_salt_schaechter_et_al"]]},{"id":"CHEBI:17151","l":"xylitol","na":1,"nb":1,"a":[["mapped/Xylitol.yaml","Xylitol"]],"b":[["atribacterium_medium__1e9c1fd9.yaml","atribacterium_medium"]]},{"id":"CHEBI:17189","l":"2,5-dihydroxybenzoic acid","na":1,"nb":1,"a":[["mapped/Gentisic_Acid.yaml","Gentisic acid"]],"b":[["syntrophus_hqg_1_medium.yaml","syntrophus_hqg_1_medium"]]},{"id":"CHEBI:17533","l":"N-acetyl-L-glutamic acid","na":1,"nb":1,"a":[["mapped/N-Acetyl-L-Glutamic_Acid.yaml","N-Acetyl-L-Glutamic Acid"]],"b":[["NLDM_defined.yaml","NLDM_defined"]]},{"id":"CHEBI:18248","l":"iron atom","na":1,"nb":1,"a":[["mapped/Iron.yaml","Iron"]],"b":[["methanopyrus_medium_for_strain_116__7463935f.yaml","methanopyrus_medium_for_strain_116"]]},{"id":"CHEBI:24040","l":"flavin adenine dinucleotide","na":1,"nb":1,"a":[["mapped/Flavin_Adenine_Dinucleotide.yaml","Flavin adenine dinucleotide"]],"b":[["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:24266","l":"gluconic acid","na":1,"nb":1,"a":[["mapped/Gluconic_Acid.yaml","Gluconic acid"]],"b":[["MAG_Modified_arabinose_gluconate_medium.yaml","mag_modified_arabinose_gluconate_medium"]]},{"id":"CHEBI:24536","l":"hexachlorocyclohexane","na":1,"nb":1,"a":[["mapped/Hexachlorocyclo-hexane.yaml","Hexachlorocyclo-hexane"]],"b":[["LINDANE_MEDIUM.yaml","lindane_medium"]]},{"id":"CHEBI:25115","l":"malate","na":1,"nb":1,"a":[["mapped/Malate.yaml","Malate"]],"b":[["MSYS_MEDIUM.yaml","msys_medium"]]},{"id":"CHEBI:26986","l":"threonine","na":1,"nb":1,"a":[["mapped/Threonine.yaml","Threonine"]],"b":[["brain_heart_infusion_difco_medium_supplemented_with_dl_threonine_and_glucose.yaml","brain_heart_infusion_difco_medium_supplemented_with_dl_threonine_and_glucose"]]},{"id":"CHEBI:28488","l":"m-xylene","na":1,"nb":1,"a":[["mapped/M-xylene.yaml","m-Xylene"]],"b":[["DESULFOVIRGA_MEDIUM.yaml","desulfovirga_medium"]]},{"id":"CHEBI:29125","l":"arsenate(3-)","na":1,"nb":1,"a":[["mapped/Arsenate.yaml","Arsenate"]],"b":[["HALARSENATIBACTER_MEDIUM.yaml","halarsenatibacter_medium"]]},{"id":"CHEBI:30411","l":"cobalamin","na":1,"nb":1,"a":[["mapped/Cobalamine.yaml","Cobalamine"]],"b":[["1_10_PYGV_MEDIUM_modified.yaml","1_10_pygv_medium_modified"]]},{"id":"CHEBI:30751","l":"formic acid","na":1,"nb":1,"a":[["mapped/Formic_Acid.yaml","Formic acid"]],"b":[["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:30845","l":"2-furoic acid","na":1,"nb":1,"a":[["mapped/2-furoic_Acid.yaml","2-Furoic acid"]],"b":[["pelobacter_fuf_medium.yaml","pelobacter_fuf_medium"]]},{"id":"CHEBI:31225","l":"antipyrine","na":1,"nb":1,"a":[["mapped/Antipyrine.yaml","Antipyrine"]],"b":[["PHENYLOBACTERIUM_MEDIUM.yaml","phenylobacterium_medium"]]},{"id":"CHEBI:33083","l":"fluoranthene","na":1,"nb":1,"a":[["mapped/Fluoranthene.yaml","Fluoranthene"]],"b":[["PLATES_WITH_FLUORANTHENE.yaml","plates_with_fluoranthene"]]},{"id":"CHEBI:33984","l":"fucose","na":1,"nb":1,"a":[["mapped/Fucose.yaml","Fucose"]],"b":[["atribacterium_medium__1e9c1fd9.yaml","atribacterium_medium"]]},{"id":"CHEBI:35607","l":"trisodium vanadate","na":1,"nb":1,"a":[["mapped/Na3vo4.yaml","Na3VO4"]],"b":[["l1__4c53f85b.yaml","l1"]]},{"id":"CHEBI:35697","l":"trans-cinnamic acid","na":1,"nb":1,"a":[["mapped/Trans-cinnamic_Acid.yaml","trans-Cinnamic acid"]],"b":[["PAPILLIBACTER_MEDIUM.yaml","papillibacter_medium"]]},{"id":"CHEBI:37583","l":"trisodium phosphate","na":1,"nb":1,"a":[["mapped/Sodium_Phosphate_Dibasic.yaml","Sodium phosphate dibasic"]],"b":[["defined_freshwater_medium_coso4.yaml","defined_freshwater_medium_coso4"]]},{"id":"CHEBI:41981","l":"dideuterium oxide","na":1,"nb":1,"a":[["mapped/deuterated_water.yaml","deuterated water"]],"b":[["M9-D2O.yaml","M9-D2O"]]},{"id":"CHEBI:42160","l":"dithionite(2-)","na":1,"nb":1,"a":[["mapped/Dithionite.yaml","Dithionite"]],"b":[["phe91_medium__bf798fea.yaml","phe91_medium"]]},{"id":"CHEBI:45931","l":"thiamine(1+) diphosphate(1-)","na":1,"nb":1,"a":[["mapped/Thiamin_Pyrophosphate.yaml","Thiamin pyrophosphate"]],"b":[["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:46502","l":"tungstate","na":1,"nb":1,"a":[["mapped/Tungstate.yaml","Tungstate"]],"b":[["alcalilimnicola_ehrlichii_mhle_1_medium.yaml","alcalilimnicola_ehrlichii_mhle_1_medium"]]},{"id":"CHEBI:47869","l":"thioglycolate(2-)","na":1,"nb":1,"a":[["mapped/Thioglycolate.yaml","Thioglycolate"]],"b":[["spirochaeta_stenostrepta_medium__c3485538.yaml","spirochaeta_stenostrepta_medium"]]},{"id":"CHEBI:495055","l":"beta-cyclodextrin","na":1,"nb":1,"a":[["mapped/Cyclomaltoheptaose.yaml","Cyclomaltoheptaose"]],"b":[["MYCT_MEDIUM.yaml","myct_medium"]]},{"id":"CHEBI:74779","l":"aluminium sulfate octadecahydrate","na":1,"nb":1,"a":[["mapped/Al2_So43_X_18_H2o.yaml","Al2(SO4)3 x 18 H2O"]],"b":[["ARTIFICIAL_PILOT_PLANT_WATER_MEDIUM.yaml","artificial_pilot_plant_water_medium"]]},{"id":"CHEBI:75249","l":"potassium chromate","na":1,"nb":1,"a":[["mapped/K2cro4.yaml","K2CrO4"]],"b":[["l1__4c53f85b.yaml","l1"]]},{"id":"CHEBI:75937","l":"monooleoylglycerol","na":1,"nb":1,"a":[["mapped/Glycerol_Mono-oleate.yaml","Glycerol mono-oleate"]],"b":[["PITYROSPORUM_MEDIUM.yaml","pityrosporum_medium"]]},{"id":"CHEBI:78036","l":"copper(II) nitrate","na":1,"nb":1,"a":[["mapped/Cu_No32_X_3_H2o.yaml","Cu(NO3)2 x 3 H2O"]],"b":[["rhodobacter_marinus_medium_nkpb.yaml","rhodobacter_marinus_medium_nkpb"]]},{"id":"CHEBI:78672","l":"rubidium chloride","na":1,"nb":1,"a":[["mapped/Rubidium_Chloride.yaml","rubidium chloride"]],"b":[["s88_vitamins.yaml","s88_vitamins"]]},{"id":"CHEBI:86156","l":"cadmium nitrate tetrahydrate","na":1,"nb":1,"a":[["mapped/Cd_No32_X_4_H2o.yaml","Cd(NO3)2 x 4 H2O"]],"b":[["Z45_4_Medium_for_Cyanobacteria.yaml","z45_4_medium_for_cyanobacteria"]]},{"id":"CHEBI:86206","l":"chromium trinitrate heptahydrate","na":1,"nb":1,"a":[["mapped/Cr_No33_X_7_H2o.yaml","Cr(NO3)3 x 7 H2O"]],"b":[["Z45_4_Medium_for_Cyanobacteria.yaml","z45_4_medium_for_cyanobacteria"]]},{"id":"CHEBI:86218","l":"cresol red","na":1,"nb":1,"a":[["mapped/Cresol_Red.yaml","Cresol red"]],"b":[["medium_for_ammonia_oxidizing_bacteria_strains_from_soil.yaml","medium_for_ammonia_oxidizing_bacteria_strains_from_soil"]]},{"id":"FOODON:03302071","l":"","na":1,"nb":1,"a":[["mapped/Soyton.yaml","Soyton"]],"b":[["nutrient_broth__3e8602c5.yaml","nutrient broth"]]},{"id":"KEGG:chol","l":"","na":1,"nb":1,"a":[["mapped/Choline.yaml","Choline"]],"b":[["CDM_LP.yaml","cdm_lp"]]},{"id":"KEGG:rmn","l":"","na":1,"nb":1,"a":[["mapped/L-rhamnose.yaml","L-Rhamnose"]],"b":[["liquid_mm_with_rhamnose_hodgson_et_al.yaml","liquid_mm_with_rhamnose_hodgson_et_al"]]},{"id":"KEGG:xyl-D","l":"","na":1,"nb":1,"a":[["mapped/D-xylose.yaml","D-Xylose"]],"b":[["m9_minimal_medium_with_d_xylose.yaml","m9_minimal_medium_with_d_xylose"]]}]} \ No newline at end of file +{"a":"MediaIngredientMech","b":"CultureMech","base":{"MediaIngredientMech":"https://github.com/CultureBotAI/MediaIngredientMech/blob/main/data/ingredients/","CultureMech":"https://github.com/CultureBotAI/CultureMech/blob/main/data/merge_yaml/merged/"},"n":612,"by":{"CHEBI":545,"KEGG":56,"FOODON":6,"UBERON":3,"CAS":1,"ENVO":1},"terms":[{"id":"FOODON:03315426","l":"yeast extract","na":29,"nb":122,"a":[["mapped/Casitone_Yeast_Extract_Rumen_Fluid.yaml","Casitone + Yeast Extract + Rumen Fluid"],["mapped/GYPS.yaml","GYPS"],["mapped/Glucose_Cellobiose_Starch_Trypticase_Yeast_Extract.yaml","Glucose + Cellobiose + Starch + Trypticase + Yeast Extract"],["mapped/Glucose_Peptone-yeast_Extract.yaml","Glucose Peptone-yeast Extract"],["mapped/Glucose_Yeast_Extract.yaml","Glucose + Yeast Extract"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["1_5_Nutrient_agar.yaml","1_5_nutrient_agar"],["948_oxoid_nutrient_broth_with_additonal_salt.yaml","948_oxoid_nutrient_broth_with_additonal_salt"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"]]},{"id":"CHEBI:17234","l":"glucose","na":23,"nb":1113,"a":[["mapped/Corn_Steep_Liquor_Glucose_Fumarate.yaml","Corn Steep Liquor + Glucose + Fumarate"],["mapped/Fastidious_Anaerobe_Broth_With_Meat_Granules.yaml","Fastidious Anaerobe Broth With Meat Granules"],["mapped/GYPS.yaml","GYPS"],["mapped/Glucose.yaml","Glucose"],["mapped/Glucose_2.yaml","glucose"],["mapped/Glucose_Acetate.yaml","Glucose + Acetate"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mh_medium.yaml","15_mh_medium"],["15_mh_medium__b586cb85.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"]]},{"id":"CHEBI:2509","l":"agar","na":20,"nb":1338,"a":[["mapped/Agar.yaml","Agar"],["mapped/Brucella_Agar.yaml","Brucella agar"],["mapped/Legionella_Agar_Enrichment.yaml","Legionella agar enrichment"],["mapped/Malt_Extract_Agar.yaml","Malt extract agar"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Middlebrook_7H10_Agar.yaml","Middlebrook 7H10 agar"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["10_mh_medium.yaml","10_mh_medium"],["1298.yaml","1298"],["15_mgm_medium.yaml","15_mgm_medium"],["15_mh_medium__b586cb85.yaml","15_mh_medium"]]},{"id":"CHEBI:53503","l":"cobalt chloride hexahydrate","na":14,"nb":1279,"a":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/Cobalt_chloride_hexahydrate.yaml","Cobalt chloride hexahydrate"],["mapped/Cocl2_X_6_H2o.yaml","CoCl2 x 6 H2O"],["mapped/MME_Trace_Minerals.yaml","MME Trace Minerals"],["mapped/Mc_trace_minerals.yaml","Mc_trace_minerals"],["mapped/Mc_trace_minerals_SO4free.yaml","Mc_trace_minerals_SO4free"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["3n_bbm_v.yaml","3n_bbm_v"],["3n_bbm_v_recipe_for_customer_orders.yaml","3n_bbm_v_recipe_for_customer_orders"],["A1_MEDIUM.yaml","a1_medium"]]},{"id":"CHEBI:15377","l":"water","na":12,"nb":2283,"a":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/Brain_Heart_Infusion_Broth.yaml","Brain heart infusion broth"],["mapped/Distilled_Water.yaml","Distilled water"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"]],"b":[["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1_10_MB_agar.yaml","1_10_mb_agar"],["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"],["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"]]},{"id":"CHEBI:33118","l":"boric acid","na":12,"nb":2238,"a":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/H3bo3.yaml","H3BO3"],["mapped/MME_Trace_Minerals.yaml","MME Trace Minerals"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Mc_trace_minerals.yaml","Mc_trace_minerals"]],"b":[["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM.yaml","1_2_sme_medium"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["1_2_r2a_75_asw.yaml","1_2_r2a_75_asw"],["1_2_r2a_medium_with_75_artificial_seawater.yaml","1_2_r2a_medium_with_75_artificial_seawater"]]},{"id":"CHEBI:26710","l":"sodium chloride","na":11,"nb":3474,"a":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/Brain_Heart_Infusion_Broth.yaml","Brain heart infusion broth"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Mineral_3B_Solution.yaml","Mineral 3B solution"],["mapped/Mineral_3B_Solution_Minus_Nitrogen.yaml","Mineral 3B solution minus Nitrogen"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["10_mh_medium.yaml","10_mh_medium"],["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["1298.yaml","1298"],["15_mgm_medium.yaml","15_mgm_medium"]]},{"id":"CHEBI:86158","l":"calcium chloride dihydrate","na":11,"nb":2949,"a":[["mapped/Cacl22h2o.yaml","CaCl22H2O"],["mapped/Cacl2_X_2_H2o.yaml","CaCl2 x 2 H2O"],["mapped/Calcium_Chloride.yaml","Calcium Chloride"],["mapped/Mineral_3B_Solution.yaml","Mineral 3B solution"],["mapped/Mineral_3B_Solution_Minus_Nitrogen.yaml","Mineral 3B solution minus Nitrogen"],["mapped/Modified_Wolfes_Minerals.yaml","Modified Wolfe's Minerals"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["15_mh_medium__b586cb85.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"]]},{"id":"CHEBI:75213","l":"sodium molybdate dihydrate","na":11,"nb":2172,"a":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/Mc_trace_minerals.yaml","Mc_trace_minerals"],["mapped/Mc_trace_minerals_SO4free.yaml","Mc_trace_minerals_SO4free"],["mapped/Modified_Wolfes_Minerals.yaml","Modified Wolfe's Minerals"],["mapped/Na2moo42h2o.yaml","Na2MoO4·2H2O"],["mapped/Na2moo4_X_2_H2o.yaml","Na2MoO4 x 2 H2O"]],"b":[["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["1a_Medium.yaml","1a_medium"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["3n_bbm_v.yaml","3n_bbm_v"]]},{"id":"CHEBI:86345","l":"magnesium dichloride hexahydrate","na":11,"nb":1966,"a":[["mapped/Magnesium_Chloride.yaml","Magnesium chloride"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Mc_general_salts.yaml","Mc_general_salts"],["mapped/Mc_general_salts_SO4free.yaml","Mc_general_salts_SO4free"],["mapped/Mgcl2_X_6_H2o.yaml","MgCl2 x 6 H2O"]],"b":[["15_mgm_medium.yaml","15_mgm_medium"],["15_mh_medium__b586cb85.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1_2_SME_MEDIUM.yaml","1_2_sme_medium"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["1_2_r2a_medium_with_75_artificial_seawater.yaml","1_2_r2a_medium_with_75_artificial_seawater"]]},{"id":"CHEBI:34683","l":"disodium hydrogenphosphate","na":11,"nb":570,"a":[["mapped/Brain_Heart_Infusion_Broth.yaml","Brain heart infusion broth"],["mapped/Disodium_Phosphate_Heptahydrate_002_M_Stock.yaml","Disodium phosphate heptahydrate (0.02 M stock)"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Na2hpo4.yaml","Na2HPO4"],["mapped/Na2hpo4_X_12_H2o.yaml","Na2HPO4 x 12 H2O"]],"b":[["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"],["1_2_mrs_1_2_bhi_agar.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_mrs_1_2_bhi_agar__56430c33.yaml","1_2_mrs_1_2_bhi_agar"],["1a_Medium.yaml","1a_medium"],["2ASW.yaml","2asw"],["2asw__59e92e67.yaml","2asw"]]},{"id":"CHEBI:86368","l":"manganese(II) chloride tetrahydrate","na":10,"nb":1566,"a":[["mapped/MME_Trace_Minerals.yaml","MME Trace Minerals"],["mapped/Mc_trace_minerals_SO4free.yaml","Mc_trace_minerals_SO4free"],["mapped/Mineral_3B_Solution.yaml","Mineral 3B solution"],["mapped/Mineral_3B_Solution_Minus_Nitrogen.yaml","Mineral 3B solution minus Nitrogen"],["mapped/Mncl2_X_4_H2o.yaml","MnCl2 x 4 H2O"],["mapped/P-iv_Metal_Solution.yaml","P-IV Metal Solution"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["3n_bbm_v.yaml","3n_bbm_v"],["3n_bbm_v_recipe_for_customer_orders.yaml","3n_bbm_v_recipe_for_customer_orders"],["480G_MEDIUM.yaml","480g_medium"]]},{"id":"CHEBI:16494","l":"lipoic acid","na":9,"nb":993,"a":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Dl-alpha-lipoic_Acid.yaml","(DL)-alpha-Lipoic acid"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Thauers_Vitamin_Mix_No_Biotin.yaml","Thauer's vitamin mix no Biotin"]],"b":[["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["A1_MARINE_MEDIUM.yaml","a1_marine_medium"],["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"],["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"]]},{"id":"CHEBI:3312","l":"calcium dichloride","na":9,"nb":516,"a":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/Cacl2.yaml","CaCl2"],["mapped/Cacl2_X_7_H2o.yaml","CaCl2 x 7 H2O"],["mapped/Calcium_Chloride.yaml","Calcium Chloride"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mgm_medium.yaml","15_mgm_medium"],["15_mh_medium.yaml","15_mh_medium"],["28_mh_medium.yaml","28_mh_medium"],["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["A3.yaml","a3"]]},{"id":"CHEBI:4735","l":"ethylenediaminetetraacetic acid","na":9,"nb":237,"a":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/EDTA_Tetrasodium_Tetrahydrate_Salt.yaml","EDTA tetrasodium tetrahydrate salt"],["mapped/Edta.yaml","EDTA"],["mapped/Edta_Acid_Form.yaml","EDTA (acid form)"],["mapped/Edta_Chelating_Agent.yaml","EDTA (chelating agent)"],["mapped/UW_Concentrated_Base.yaml","UW concentrated base"]],"b":[["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["ACIDOSOMA_MEDIUM.yaml","acidosoma_medium"],["ALCALIGENES_XYLOSOXYDANS_MEDIUM_WITH_BENZOATE.yaml","alcaligenes_xylosoxydans_medium_with_benzoate"],["ALLOCATENOCOCCUS_MEDIUM.yaml","allocatenococcus_medium"],["ANB_aerobic.yaml","anb_aerobic"],["AQUASPIRILLUM_MEDIUM.yaml","aquaspirillum_medium"]]},{"id":"CHEBI:30961","l":"pyridoxine hydrochloride","na":8,"nb":1360,"a":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/Pyridoxine_Hydrochloride.yaml","Pyridoxine hydrochloride"],["mapped/Pyridoxine_dihydrochloride.yaml","Pyridoxine dihydrochloride"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"]],"b":[["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["7H9.yaml","7H9"],["A1_MARINE_MEDIUM.yaml","a1_marine_medium"],["A1_MEDIUM.yaml","a1_medium"]]},{"id":"CHEBI:17015","l":"riboflavin","na":8,"nb":1290,"a":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/Riboflavin.yaml","Riboflavin"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Thauers_Vitamin_Mix_No_Biotin.yaml","Thauer's vitamin mix no Biotin"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"]]},{"id":"CHEBI:31345","l":"Calcium pantothenate","na":8,"nb":1216,"a":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/Ca-pantothenate.yaml","Ca-pantothenate"],["mapped/Calcium_D-Pantothenate.yaml","Calcium D-Pantothenate"],["mapped/Calcium_Pantothenate.yaml","Calcium pantothenate"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"]],"b":[["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2ASW.yaml","2asw"],["2asw__59e92e67.yaml","2asw"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"]]},{"id":"CHEBI:49976","l":"zinc dichloride","na":8,"nb":1018,"a":[["mapped/MME_Trace_Minerals.yaml","MME Trace Minerals"],["mapped/Mc_trace_minerals_SO4free.yaml","Mc_trace_minerals_SO4free"],["mapped/P-iv_Metal_Solution.yaml","P-IV Metal Solution"],["mapped/Sulfur-free_DL_Minerals.yaml","Sulfur-free DL minerals"],["mapped/Trace_Element_Solution_SL-10.yaml","Trace element solution SL-10"],["mapped/UW_Concentrated_Base_No_Sulfur.yaml","UW concentrated base no sulfur"]],"b":[["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["3n_bbm_v.yaml","3n_bbm_v"],["3n_bbm_v_recipe_for_customer_orders.yaml","3n_bbm_v_recipe_for_customer_orders"],["A1_MEDIUM.yaml","a1_medium"],["ABM.yaml","abm"],["ACETIVIBRIO_ALKALICELLULOSI_MEDIUM.yaml","acetivibrio_alkalicellulosi_medium"]]},{"id":"CHEBI:18276","l":"dihydrogen","na":8,"nb":231,"a":[["mapped/H23-methyl_Mercaptopropionate.yaml","H2+3-methyl Mercaptopropionate"],["mapped/H2_CO2.yaml","H2 + CO2"],["mapped/H2dimethylsulfide.yaml","H2+dimethylsulfide"],["mapped/H2methanol.yaml","H2+methanol"],["mapped/H2tetramethylammonium.yaml","H2+tetramethylammonium"],["mapped/H2trimethylamine.yaml","H2+trimethylamine"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["4_yaco_media.yaml","4_yaco_media"],["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["AMMONIFEX_DEGENSII_MEDIUM.yaml","ammonifex_degensii_medium"],["AP11MH_medium.yaml","ap11mh_medium"]]},{"id":"CHEBI:31795","l":"magnesium sulfate heptahydrate","na":7,"nb":2671,"a":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/Mc_general_salts.yaml","Mc_general_salts"],["mapped/Mgso47h2o.yaml","MgSO4·7H2O"],["mapped/Mgso47h2o_2.yaml","MgSO47H2O"],["mapped/Mgso4_X_7_H2o.yaml","MgSO4 x 7 H2O"],["mapped/Mgso4h2o.yaml","MgSO4·H2O"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["15_mgm_medium.yaml","15_mgm_medium"],["15_mh_medium__b586cb85.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"]]},{"id":"CHEBI:32599","l":"magnesium sulfate","na":7,"nb":1459,"a":[["mapped/Magnesium_Sulfate.yaml","Magnesium sulfate"],["mapped/Mgso47h2o.yaml","MgSO4·7H2O"],["mapped/Mgso4_X_6_H2o.yaml","MgSO4 x 6 H2O"],["mapped/Mgso4_X_7_H2o.yaml","MgSO4 x 7 H2O"],["mapped/Modified_Wolfes_Minerals.yaml","Modified Wolfe's Minerals"],["mapped/UW_Concentrated_Base.yaml","UW concentrated base"]],"b":[["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["10_mh_medium.yaml","10_mh_medium"],["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["15_mh_medium.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"]]},{"id":"CHEBI:15940","l":"nicotinic acid","na":7,"nb":1433,"a":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/Nicotinic_Acid.yaml","Nicotinic acid"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Thauers_Vitamin_Mix_No_Biotin.yaml","Thauer's vitamin mix no Biotin"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2ASW.yaml","2asw"],["2asw__59e92e67.yaml","2asw"]]},{"id":"CHEBI:32312","l":"zinc sulfate heptahydrate","na":7,"nb":1405,"a":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/Mc_trace_minerals.yaml","Mc_trace_minerals"],["mapped/Modified_Wolfes_Minerals.yaml","Modified Wolfe's Minerals"],["mapped/UW_Concentrated_Base.yaml","UW concentrated base"],["mapped/UW_Concentrated_Base_No_Mo.yaml","UW concentrated base no Mo"],["mapped/Wolfes_Mineral_Mix.yaml","Wolfe's mineral mix"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["1a_Medium.yaml","1a_medium"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"]]},{"id":"CHEBI:30753","l":"4-aminobenzoic acid","na":7,"nb":1350,"a":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/P-aminobenzoic_Acid.yaml","p-Aminobenzoic acid"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Thauers_Vitamin_Mix_No_Biotin.yaml","Thauer's vitamin mix no Biotin"]],"b":[["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["A1_MARINE_MEDIUM.yaml","a1_marine_medium"]]},{"id":"CHEBI:27470","l":"folic acid","na":7,"nb":1262,"a":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Folic_Acid.yaml","Folic acid"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Thauers_Vitamin_Mix_No_Biotin.yaml","Thauer's vitamin mix no Biotin"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2ASW.yaml","2asw"]]},{"id":"CHEBI:44557","l":"nitrilotriacetic acid","na":7,"nb":903,"a":[["mapped/Modified_Wolfes_Minerals.yaml","Modified Wolfe's Minerals"],["mapped/Nitrilotriacetic_Acid.yaml","Nitrilotriacetic acid"],["mapped/Nitrilotriacetic_Acid_Disodium_Salt.yaml","Nitrilotriacetic acid disodium salt"],["mapped/UW_Concentrated_Base.yaml","UW concentrated base"],["mapped/UW_Concentrated_Base_No_Mo.yaml","UW concentrated base no Mo"],["mapped/UW_Concentrated_Base_No_Sulfur.yaml","UW concentrated base no sulfur"]],"b":[["A1_MEDIUM.yaml","a1_medium"],["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"],["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["ACETOBACTERIUM_DEHALOGENANS_MEDIUM.yaml","acetobacterium_dehalogenans_medium"],["ACETOBACTERIUM_FIMETARIUM_MEDIUM.yaml","acetobacterium_fimetarium_medium"],["ACETOBACTERIUM_MEDIUM.yaml","acetobacterium_medium"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":7,"nb":711,"a":[["mapped/1-butanolCO2.yaml","1-butanol+CO2"],["mapped/1-propanolCO2.yaml","1-propanol+CO2"],["mapped/2-butanolCO2.yaml","2-butanol+CO2"],["mapped/2-propanolCO2.yaml","2-propanol+CO2"],["mapped/Carbon_dioxide_gas.yaml","Carbon dioxide gas"],["mapped/CyclopentanolCO2.yaml","Cyclopentanol+CO2"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["4_yaco_media.yaml","4_yaco_media"],["8kg_4_medium.yaml","8kg_4_medium"],["ABSS2.yaml","abss2"],["ABYSSISOLIBACTER_MEDIUM.yaml","abyssisolibacter_medium"]]},{"id":"CHEBI:86364","l":"manganese(II) sulfate monohydrate","na":7,"nb":684,"a":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/Mnso4_X_1_H2o.yaml","MnSO4 x 1 H2O"],["mapped/Mnso4_X_H2o.yaml","MnSO4 x H2O"],["mapped/Modified_Wolfes_Minerals.yaml","Modified Wolfe's Minerals"],["mapped/UW_Concentrated_Base.yaml","UW concentrated base"],["mapped/UW_Concentrated_Base_No_Mo.yaml","UW concentrated base no Mo"]],"b":[["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["AAM_MEDIUM.yaml","aam_medium"],["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"],["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["ACETOBACTERIUM_DEHALOGENANS_MEDIUM.yaml","acetobacterium_dehalogenans_medium"]]},{"id":"CHEBI:17634","l":"D-glucose","na":7,"nb":441,"a":[["mapped/Brain_Heart_Infusion_Broth.yaml","Brain heart infusion broth"],["mapped/D-glucose.yaml","D-Glucose"],["mapped/Dextrose.yaml","Dextrose"],["mapped/Glucose_Acetate.yaml","Glucose + Acetate"],["mapped/Glucose_Cellobiose_Starch_Trypticase_Yeast_Extract.yaml","Glucose + Cellobiose + Starch + Trypticase + Yeast Extract"],["mapped/Glucose_Formate.yaml","Glucose + Formate"]],"b":[["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"],["1_2_mrs_1_2_bhi_agar.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_mrs_1_2_bhi_agar__56430c33.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_tryptic_soy_broth_anaerobe.yaml","1_2_tryptic_soy_broth_anaerobe"],["1_2_tryptic_soy_broth_anaerobic.yaml","1_2_tryptic_soy_broth_anaerobic"],["1_2_tryptic_soy_broth_anaerobic__d70593aa.yaml","1_2_tryptic_soy_broth_anaerobic"]]},{"id":"CHEBI:53542","l":"nickel chloride hexahydrate","na":7,"nb":103,"a":[["mapped/MME_Trace_Minerals.yaml","MME Trace Minerals"],["mapped/Mc_trace_minerals.yaml","Mc_trace_minerals"],["mapped/Mc_trace_minerals_SO4free.yaml","Mc_trace_minerals_SO4free"],["mapped/Nickel_II_chloride_hexahydrate.yaml","Nickel (II) chloride hexahydrate"],["mapped/Nicl2_X_6_H2o.yaml","NiCl2 x 6 H2O"],["mapped/Sulfur-free_DL_Minerals.yaml","Sulfur-free DL minerals"]],"b":[["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["ALP_defined.yaml","ALP defined"],["ALP_defined_chlorate.yaml","ALP defined chlorate"],["ALP_defined_noN.yaml","ALP defined noN"],["ALP_defined_perchlorate.yaml","ALP defined perchlorate"],["ALP_rich.yaml","ALP rich"]]},{"id":"CHEBI:15956","l":"biotin","na":6,"nb":1645,"a":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/Biotin.yaml","Biotin"],["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Wolfes_Vitamin_Mix.yaml","Wolfe's vitamin mix"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2ASW.yaml","2asw"]]},{"id":"CHEBI:75836","l":"iron(2+) sulfate heptahydrate","na":6,"nb":1518,"a":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/Feso4_X_7_H2o.yaml","FeSO4 x 7 H2O"],["mapped/Feso4_X_7h2o.yaml","FeSO4 x 7H2O"],["mapped/UW_Concentrated_Base.yaml","UW concentrated base"],["mapped/UW_Concentrated_Base_No_Mo.yaml","UW concentrated base no Mo"],["mapped/Wolfes_Mineral_Mix.yaml","Wolfe's mineral mix"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["1a_Medium.yaml","1a_medium"],["2_5_nacl_gypfk_agar_broth.yaml","2_5_nacl_gypfk_agar_broth"]]},{"id":"CHEBI:176843","l":"vitamin B12","na":6,"nb":1411,"a":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/Cyanocobalamin.yaml","Cyanocobalamin"],["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/Vitamin_B12.yaml","Vitamin B12"],["mapped/Wolfes_Vitamin_Mix.yaml","Wolfe's vitamin mix"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"]]},{"id":"CHEBI:49105","l":"thiamine hydrochloride","na":6,"nb":1303,"a":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Thauers_Vitamin_Mix_No_Biotin.yaml","Thauer's vitamin mix no Biotin"],["mapped/Thiamine_Hcl.yaml","Thiamine HCl"],["mapped/Wolfes_Vitamin_Mix.yaml","Wolfe's vitamin mix"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2ASW.yaml","2asw"]]},{"id":"CHEBI:86318","l":"copper(II) chloride dihydrate","na":6,"nb":1232,"a":[["mapped/Cucl2_X_2_H2o.yaml","CuCl2 x 2 H2O"],["mapped/MME_Trace_Minerals.yaml","MME Trace Minerals"],["mapped/Mc_trace_minerals_SO4free.yaml","Mc_trace_minerals_SO4free"],["mapped/Sulfur-free_DL_Minerals.yaml","Sulfur-free DL minerals"],["mapped/Trace_Element_Solution_SL-10.yaml","Trace element solution SL-10"],["mapped/UW_Concentrated_Base_No_Sulfur.yaml","UW concentrated base no sulfur"]],"b":[["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["7H9.yaml","7H9"],["ACETIVIBRIO_ALKALICELLULOSI_MEDIUM.yaml","acetivibrio_alkalicellulosi_medium"],["ACETIVIBRIO_MEDIUM.yaml","acetivibrio_medium"],["ACETOBACTERIUM_TUNDRAE_MEDIUM.yaml","acetobacterium_tundrae_medium"]]},{"id":"CHEBI:31440","l":"copper(II) sulfate pentahydrate","na":6,"nb":952,"a":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/Cuso4_X_5_H2o.yaml","CuSO4 x 5 H2O"],["mapped/Mc_trace_minerals.yaml","Mc_trace_minerals"],["mapped/UW_Concentrated_Base.yaml","UW concentrated base"],["mapped/UW_Concentrated_Base_No_Mo.yaml","UW concentrated base no Mo"],["mapped/Wolfes_Mineral_Mix.yaml","Wolfe's mineral mix"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["1a_Medium.yaml","1a_medium"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["480G_MEDIUM.yaml","480g_medium"]]},{"id":"CHEBI:30769","l":"citric acid","na":6,"nb":55,"a":[["mapped/Citric_Acid.yaml","Citric acid"],["mapped/Citric_Acid_X_H2o.yaml","Citric acid x H2O"],["mapped/Citric_Acidh2o.yaml","Citric Acid•H2O"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Na2-citrate.yaml","Na2-citrate"],["mapped/Trisodium_Citrate.yaml","Trisodium citrate"]],"b":[["Azospira_Medium.yaml","azospira_medium"],["BG11.yaml","bg11"],["BG11_medium.yaml","bg11_medium"],["CTM_MEDIUM.yaml","ctm_medium"],["ETHANOLOGENBACTERIUM_MEDIUM.yaml","ethanologenbacterium_medium"],["GINGER_BEER_PLANT_MEDIUM.yaml","ginger_beer_plant_medium"]]},{"id":"CHEBI:17306","l":"maltose","na":6,"nb":50,"a":[["mapped/D-Maltose_Monohydrate.yaml","D-Maltose monohydrate"],["mapped/Glucose_Maltose_Cellobiose_Starch_Glycerol.yaml","Glucose + Maltose + Cellobiose + Starch + Glycerol"],["mapped/Maltose.yaml","Maltose"],["mapped/Maltose_2.yaml","maltose"],["mapped/Maltose_Hydrate.yaml","Maltose Hydrate"],["mapped/PY-maltose.yaml","PY-maltose"]],"b":[["ALKALIPHILUS_LACT_MEDIUM.yaml","alkaliphilus_lact_medium"],["BUTYRIVIBRIO_M2_MEDIUM.yaml","butyrivibrio_m2_medium"],["COLON_EXTRACT_MEDIUM.yaml","colon_extract_medium"],["DEINOCOCCUS_MEDIUM.yaml","deinococcus_medium"],["HELMUTKOENIGIA_MEDIUM.yaml","helmutkoenigia_medium"],["HYPNOCYCLICUS_MEDIUM.yaml","hypnocyclicus_medium"]]},{"id":"CHEBI:32588","l":"potassium chloride","na":5,"nb":1953,"a":[["mapped/Kcl.yaml","KCl"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Mc_general_salts.yaml","Mc_general_salts"],["mapped/Mc_general_salts_SO4free.yaml","Mc_general_salts_SO4free"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mgm_medium.yaml","15_mgm_medium"],["15_mh_medium.yaml","15_mh_medium"],["15_mh_medium__b586cb85.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"]]},{"id":"CHEBI:34887","l":"nickel dichloride","na":5,"nb":1707,"a":[["mapped/Nickel_II_chloride_hexahydrate.yaml","Nickel (II) chloride hexahydrate"],["mapped/Nicl2.yaml","NiCl2"],["mapped/Nicl2_X_2_H2o.yaml","NiCl2 x 2 H2O"],["mapped/Nicl2_X_5_H2o.yaml","NiCl2 x 5 H2O"],["mapped/Nicl2_X_6_H2o.yaml","NiCl2 x 6 H2O"]],"b":[["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["A1_MEDIUM.yaml","a1_medium"],["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"],["ACETIVIBRIO_ALKALICELLULOSI_MEDIUM.yaml","acetivibrio_alkalicellulosi_medium"],["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"]]},{"id":"CHEBI:86249","l":"iron dichloride tetrahydrate","na":5,"nb":746,"a":[["mapped/Fecl2_X_4_H2o.yaml","FeCl2 x 4 H2O"],["mapped/Sulfur-free_DL_Minerals.yaml","Sulfur-free DL minerals"],["mapped/Trace_Element_Solution_SL-10.yaml","Trace element solution SL-10"],["mapped/UW_Concentrated_Base_No_Sulfur.yaml","UW concentrated base no sulfur"],["mapped/Zeikus_Trace_Element_Solution.yaml","Zeikus trace element solution"]],"b":[["ACETIVIBRIO_ALKALICELLULOSI_MEDIUM.yaml","acetivibrio_alkalicellulosi_medium"],["ACETIVIBRIO_MEDIUM.yaml","acetivibrio_medium"],["ACETOBACTERIUM_TUNDRAE_MEDIUM.yaml","acetobacterium_tundrae_medium"],["ACETOBACTEROIDES_GLYCINOPHILUS_MEDIUM.yaml","acetobacteroides_glycinophilus_medium"],["ACETOBACTEROIDES_MEDIUM.yaml","acetobacteroides_medium"],["ACIDAMINOBACTER_MEDIUM.yaml","acidaminobacter_medium"]]},{"id":"CHEBI:32149","l":"sodium sulfate","na":5,"nb":584,"a":[["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Mineral_3B_Solution.yaml","Mineral 3B solution"],["mapped/Mineral_3B_Solution_Minus_Nitrogen.yaml","Mineral 3B solution minus Nitrogen"],["mapped/Na2so4.yaml","Na2SO4"]],"b":[["1_2_r2a_75_asw.yaml","1_2_r2a_75_asw"],["1_2_r2a_medium_with_75_artificial_seawater.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["1_2_r2a_medium_with_75_artificial_seawater__5b6dd332.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"],["ACIDAMINOBACTER_MEDIUM.yaml","acidaminobacter_medium"],["ACIDIFIED_MPOB_MEDIUM.yaml","acidified_mpob_medium"]]},{"id":"CHEBI:86465","l":"potassium aluminium sulfate dodecahydrate","na":5,"nb":498,"a":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/Alk_So42_X_12_H2o.yaml","AlK(SO4)2 x 12 H2O"],["mapped/Mc_trace_minerals.yaml","Mc_trace_minerals"],["mapped/Modified_Wolfes_Minerals.yaml","Modified Wolfe's Minerals"],["mapped/Wolfes_Mineral_Mix.yaml","Wolfe's mineral mix"]],"b":[["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["A1_MEDIUM.yaml","a1_medium"],["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"],["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["ACETOBACTERIUM_DEHALOGENANS_MEDIUM.yaml","acetobacterium_dehalogenans_medium"]]},{"id":"CHEBI:35696","l":"cobalt dichloride","na":5,"nb":493,"a":[["mapped/Cobalt_chloride_hexahydrate.yaml","Cobalt chloride hexahydrate"],["mapped/Cocl2.yaml","CoCl2"],["mapped/Cocl2_X_2_H2o.yaml","CoCl2 x 2 H2O"],["mapped/Cocl2_X_4_H2o.yaml","CoCl2 x 4 H2O"],["mapped/Cocl2_X_6_H2o.yaml","CoCl2 x 6 H2O"]],"b":[["1a_Medium.yaml","1a_medium"],["ACIDIC_DILUTED_ASM_MEDIUM.yaml","acidic_diluted_asm_medium"],["ACIDIFFEROBACTER_MURCIENSIS_MEDIUM.yaml","acidifferobacter_murciensis_medium"],["ALKALINUS_ABYSSINIESE_MEDIUM.yaml","alkalinus_abyssiniese_medium"],["ALKALIPHILUS_CROTONATOXIDANS_MEDIUM.yaml","alkaliphilus_crotonatoxidans_medium"],["ANAEROLINEA_MEDIUM_C.yaml","anaerolinea_medium_c"]]},{"id":"CHEBI:28017","l":"starch","na":5,"nb":282,"a":[["mapped/Fastidious_Anaerobe_Broth_With_Meat_Granules.yaml","Fastidious Anaerobe Broth With Meat Granules"],["mapped/Glucose_Cellobiose_Starch_Trypticase_Yeast_Extract.yaml","Glucose + Cellobiose + Starch + Trypticase + Yeast Extract"],["mapped/Glucose_Maltose_Cellobiose_Starch_Glycerol.yaml","Glucose + Maltose + Cellobiose + Starch + Glycerol"],["mapped/PYGS.yaml","PYGS"],["mapped/Starch.yaml","Starch"]],"b":[["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"],["1_10_r2a_medium_modified_yeast_extract.yaml","1_10_r2a_medium_modified_yeast_extract"],["1_2_r2a_medium_with_75_artificial_seawater.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["1_2_r2a_medium_with_75_artificial_seawater__5b6dd332.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["225M1_MEDIUM.yaml","225m1_medium"],["225m1_medium__5109009b.yaml","225m1_medium"]]},{"id":"CHEBI:75832","l":"iron(2+) sulfate (anhydrous)","na":5,"nb":226,"a":[["mapped/Feso4.yaml","FeSO4"],["mapped/Feso4_X_5_H2o.yaml","FeSO4 x 5 H2O"],["mapped/Feso4_X_6_H2o.yaml","FeSO4 x 6 H2O"],["mapped/Feso4_X_7_H2o.yaml","FeSO4 x 7 H2O"],["mapped/Feso4_X_7h2o.yaml","FeSO4 x 7H2O"]],"b":[["ACIDITHIOBACILLUS_FERRIVORANS_MEDIUM.yaml","acidithiobacillus_ferrivorans_medium"],["ACY.yaml","ACY"],["AQUASPIRILLUM_MEDIUM_II.yaml","aquaspirillum_medium_ii"],["BACILLUS_THERMOALCALOPHILUS_MEDIUM.yaml","bacillus_thermoalcalophilus_medium"],["BLASTOCOCCUS_AGGREGATUS_MEDIUM.yaml","blastococcus_aggregatus_medium"],["Basal_Salt_Medium_with_biphenyl.yaml","basal_salt_medium_with_biphenyl"]]},{"id":"CHEBI:33403","l":"elemental sulfur","na":5,"nb":82,"a":[["mapped/GYPS.yaml","GYPS"],["mapped/Sulfur.yaml","Sulfur"],["mapped/Sulfur_Powder.yaml","Sulfur (powder)"],["mapped/Sulphur.yaml","Sulphur"],["mapped/Yeast_Extract_Sulfur.yaml","Yeast Extract + Sulfur"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["ACIDIFERROBACTER_MEDIUM.yaml","acidiferrobacter_medium"],["ACIDILOBUS_MEDIUM.yaml","acidilobus_medium"],["AEROBIC_SULFOLOBALES_MEDIUM.yaml","aerobic_sulfolobales_medium"],["AS_medium.yaml","as_medium"]]},{"id":"FOODON:03315720","l":"vegetable protein, hydrolyzed","na":5,"nb":75,"a":[["mapped/Bacto_Soytone.yaml","Bacto Soytone"],["mapped/Phytone.yaml","Phytone"],["mapped/Soy_Peptone.yaml","Soy peptone"],["mapped/Soya_Pepton.yaml","Soya pepton"],["mapped/Soya_Peptone.yaml","Soya peptone"]],"b":[["1_2_tryptic_soy_broth_anaerobe.yaml","1_2_tryptic_soy_broth_anaerobe"],["1_2_tryptic_soy_broth_anaerobic.yaml","1_2_tryptic_soy_broth_anaerobic"],["ACANTHAMOEBA_MEDIUM.yaml","acanthamoeba_medium"],["ACIDIPHILIUM_MEDIUM.yaml","acidiphilium_medium"],["CHOCOLATE_AGAR.yaml","chocolate_agar"],["COLLIMONAS_MEDIUM.yaml","collimonas_medium"]]},{"id":"CHEBI:32142","l":"sodium citrate dihydrate","na":5,"nb":29,"a":[["mapped/Mc_trace_minerals.yaml","Mc_trace_minerals"],["mapped/Mc_trace_minerals_SO4free.yaml","Mc_trace_minerals_SO4free"],["mapped/Na3-citrate_X_2_H2o.yaml","Na3-citrate x 2 H2O"],["mapped/Sodium_Citrate.yaml","Sodium Citrate"],["mapped/Trisodium_Citrate_X_2_H2o.yaml","Trisodium citrate x 2 H2O"]],"b":[["ACANTHAMOEBA_MEDIUM.yaml","acanthamoeba_medium"],["Caldisphaera_Medium.yaml","caldisphaera_medium"],["MMYPF_Medium.yaml","mmypf_medium"],["MMYP_Medium.yaml","mmyp_medium"],["McAA_formate_No_pABA.yaml","McAA formate No pABA"],["McCas.yaml","McCas"]]},{"id":"CHEBI:17053","l":"L-aspartic acid","na":5,"nb":21,"a":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-Aspartic_Acid_Potassium_Salt.yaml","L-Aspartic acid potassium salt"],["mapped/L-Aspartic_Acid_Sodium_Salt_Monohydrate.yaml","L-Aspartic acid sodium salt monohydrate"],["mapped/L-aspartic_Acid.yaml","L-Aspartic acid"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["CTM_MEDIUM.yaml","ctm_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["McAA_formate_No_pABA.yaml","McAA formate No pABA"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"]]},{"id":"CHEBI:63036","l":"potassium dihydrogen phosphate","na":4,"nb":2726,"a":[["mapped/Kh2po4.yaml","KH2PO4"],["mapped/Mineral_3B_Solution.yaml","Mineral 3B solution"],["mapped/Mineral_3B_Solution_Minus_Nitrogen.yaml","Mineral 3B solution minus Nitrogen"],["mapped/Wolfes_Vitamin_Mix.yaml","Wolfe's vitamin mix"]],"b":[["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["1_10_sabourauds_agar.yaml","1_10_sabourauds_agar"],["1_10_sabourauds_agar__6d784de4.yaml","1_10_sabourauds_agar"],["1_2_GY_AGAR.yaml","1_2_gy_agar"]]},{"id":"CHEBI:31206","l":"ammonium chloride","na":4,"nb":2324,"a":[["mapped/Ammonium_Chloride_Nitrogen_Source.yaml","Ammonium chloride (nitrogen source)"],["mapped/Mineral_3B_Solution.yaml","Mineral 3B solution"],["mapped/Nh4cl.yaml","NH4Cl"],["mapped/Tetramethyl_Ammonium_Chloride.yaml","Tetramethyl ammonium chloride"]],"b":[["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["480G_MEDIUM.yaml","480g_medium"],["480g_medium__e94698e7.yaml","480g_medium"]]},{"id":"CHEBI:32139","l":"sodium hydrogencarbonate","na":4,"nb":1471,"a":[["mapped/84_GL_NaHCO3_Solution.yaml","84 g/L NaHCO3 solution"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Nahco3.yaml","NaHCO3"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mh_medium.yaml","15_mh_medium"],["15_mh_medium__b586cb85.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM.yaml","1_2_sme_medium"]]},{"id":"CHEBI:63939","l":"sodium tungstate dihydrate","na":4,"nb":888,"a":[["mapped/Mc_trace_minerals.yaml","Mc_trace_minerals"],["mapped/Mc_trace_minerals_SO4free.yaml","Mc_trace_minerals_SO4free"],["mapped/Na2wo4_X_2_H2o.yaml","Na2WO4 x 2 H2O"],["mapped/Sulfur-free_DL_Minerals.yaml","Sulfur-free DL minerals"]],"b":[["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["A1_MEDIUM.yaml","a1_medium"],["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"],["ACETIVIBRIO_ALKALICELLULOSI_MEDIUM.yaml","acetivibrio_alkalicellulosi_medium"]]},{"id":"CHEBI:131361","l":"disodium selenite pentahydrate","na":4,"nb":887,"a":[["mapped/Na2seo35h2o.yaml","Na2SeO3·5H2O"],["mapped/Na2seo3_X_5_H2o.yaml","Na2SeO3 x 5 H2O"],["mapped/Sulfur-free_DL_Minerals.yaml","Sulfur-free DL minerals"],["mapped/Zeikus_Trace_Element_Solution.yaml","Zeikus trace element solution"]],"b":[["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"],["ACETIVIBRIO_ALKALICELLULOSI_MEDIUM.yaml","acetivibrio_alkalicellulosi_medium"],["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["ACETIVIBRIO_MEDIUM.yaml","acetivibrio_medium"]]},{"id":"CHEBI:91248","l":"L-cysteine hydrochloride hydrate","na":4,"nb":764,"a":[["mapped/L-Cysteine_X_HCl_X_H2O_Solution.yaml","L-Cysteine x HCl x H2O solution"],["mapped/L-cysteine.yaml","L-Cysteine"],["mapped/L-cysteine_Hcl_X_H2o.yaml","L-Cysteine HCl x H2O"],["mapped/L-cysteine_Hydrochloride_Monohydrate.yaml","L-Cysteine hydrochloride monohydrate"]],"b":[["8kg_4_medium.yaml","8kg_4_medium"],["A7_MEDIUM.yaml","a7_medium"],["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"],["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["ACETOBACTERIUM_DEHALOGENANS_MEDIUM.yaml","acetobacterium_dehalogenans_medium"],["ACETOBACTERIUM_MEDIUM.yaml","acetobacterium_medium"]]},{"id":"CHEBI:32954","l":"sodium acetate","na":4,"nb":597,"a":[["mapped/4_Carbon_Mix.yaml","4 Carbon Mix"],["mapped/Na-acetate.yaml","Na-acetate"],["mapped/Sodium_Acetate.yaml","Sodium acetate"],["mapped/Sodium_Acetate3h2o.yaml","Sodium acetate·3H2O"]],"b":[["A1_MARINE_MEDIUM.yaml","a1_marine_medium"],["A2_MEDIUM.yaml","a2_medium"],["AAM_MEDIUM.yaml","aam_medium"],["ABYSSISOLIBACTER_MEDIUM.yaml","abyssisolibacter_medium"],["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["ACETOMICROBIUM_FAECALE_MEDIUM.yaml","acetomicrobium_faecale_medium"]]},{"id":"CHEBI:63005","l":"sodium nitrate","na":4,"nb":358,"a":[["mapped/Nano.yaml","NaNO"],["mapped/Nano3.yaml","NaNO3"],["mapped/Sodium_Nitrate_070_M_Stock.yaml","Sodium nitrate (0.70 M stock)"],["mapped/Sodium_Nitrate_Nitrogen_Source.yaml","Sodium nitrate (nitrogen source)"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_sabourauds_agar.yaml","1_10_sabourauds_agar"],["1_10_sabourauds_agar__6d784de4.yaml","1_10_sabourauds_agar"],["1a_Medium.yaml","1a_medium"]]},{"id":"CHEBI:86360","l":"manganese(II) sulfate","na":4,"nb":305,"a":[["mapped/Mnso4.yaml","MnSO4"],["mapped/Mnso4_X_1_H2o.yaml","MnSO4 x 1 H2O"],["mapped/Mnso4_X_7_H2o.yaml","MnSO4 x 7 H2O"],["mapped/Mnso4_X_H2o.yaml","MnSO4 x H2O"]],"b":[["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["A1_MEDIUM.yaml","a1_medium"],["A3.yaml","a3"],["ACETOBACTERIUM_MEDIUM.yaml","acetobacterium_medium"],["ACIDITHIOBACILLUS_FERRIVORANS_MEDIUM.yaml","acidithiobacillus_ferrivorans_medium"],["ALKALINE_XYLAN_MEDIUM.yaml","alkaline_xylan_medium"]]},{"id":"CHEBI:17439","l":"cyanocob(III)alamin","na":4,"nb":187,"a":[["mapped/Cyanocobalamin.yaml","Cyanocobalamin"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Thauers_Vitamin_Mix_No_Biotin.yaml","Thauer's vitamin mix no Biotin"],["mapped/Vitamin_B12.yaml","Vitamin B12"]],"b":[["2ASW.yaml","2asw"],["2asw__59e92e67.yaml","2asw"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["3n_bbm_v_recipe_for_customer_orders.yaml","3n_bbm_v_recipe_for_customer_orders"],["ACY.yaml","ACY"],["ALP_defined.yaml","ALP defined"]]},{"id":"CHEBI:86214","l":"cobalt dinitrate hexahydrate","na":4,"nb":151,"a":[["mapped/Co_No32_X_6_H2o.yaml","Co(NO3)2 x 6 H2O"],["mapped/UW_Concentrated_Base.yaml","UW concentrated base"],["mapped/UW_Concentrated_Base_No_Mo.yaml","UW concentrated base no Mo"],["mapped/UW_Concentrated_Base_No_Sulfur.yaml","UW concentrated base no sulfur"]],"b":[["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["480G_MEDIUM.yaml","480g_medium"],["480g_medium__e94698e7.yaml","480g_medium"],["ANCALOMICROBIUM_MEDIUM.yaml","ancalomicrobium_medium"],["BB.yaml","bb"],["BG11.yaml","bg11"]]},{"id":"CHEBI:131366","l":"disodium tetraborate decahydrate","na":4,"nb":150,"a":[["mapped/Na2b4o7_X_10_H2o.yaml","Na2B4O7 x 10 H2O"],["mapped/UW_Concentrated_Base.yaml","UW concentrated base"],["mapped/UW_Concentrated_Base_No_Mo.yaml","UW concentrated base no Mo"],["mapped/UW_Concentrated_Base_No_Sulfur.yaml","UW concentrated base no sulfur"]],"b":[["AEROBIC_SULFOLOBALES_MEDIUM.yaml","aerobic_sulfolobales_medium"],["AEROBIC_SULFOLOBALES_MEDIUM_WITHOUT_SULFUR.yaml","aerobic_sulfolobales_medium_without_sulfur"],["ANCALOMICROBIUM_MEDIUM.yaml","ancalomicrobium_medium"],["ATHALASSOTOGA_MEDIUM.yaml","athalassotoga_medium"],["Acidianus_medium.yaml","acidianus_medium"],["CALDIVIRGA_MEDIUM.yaml","caldivirga_medium"]]},{"id":"CHEBI:17057","l":"cellobiose","na":4,"nb":121,"a":[["mapped/Cellobiose.yaml","Cellobiose"],["mapped/Glucose_Cellobiose_Starch_Trypticase_Yeast_Extract.yaml","Glucose + Cellobiose + Starch + Trypticase + Yeast Extract"],["mapped/Glucose_Maltose_Cellobiose_Starch_Glycerol.yaml","Glucose + Maltose + Cellobiose + Starch + Glycerol"],["mapped/PY-cellobiose.yaml","PY-cellobiose"]],"b":[["A7_MEDIUM.yaml","a7_medium"],["ACETIVIBRIO_ALKALICELLULOSI_MEDIUM.yaml","acetivibrio_alkalicellulosi_medium"],["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["ALKALIFLEXUS_MEDIUM.yaml","alkaliflexus_medium"],["ANAEROBACTERIUM_MEDIUM.yaml","anaerobacterium_medium"],["ANAEROCELLUM_MEDIUM.yaml","anaerocellum_medium"]]},{"id":"CHEBI:17992","l":"sucrose","na":4,"nb":108,"a":[["mapped/D-Sucrose.yaml","D-Sucrose"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Sucrose.yaml","Sucrose"],["mapped/Sucrose_Yeast_Extract.yaml","Sucrose + Yeast Extract"]],"b":[["ACANTHAMOEBA_MEDIUM.yaml","acanthamoeba_medium"],["ACETIVIBRIO_MEDIUM.yaml","acetivibrio_medium"],["ALCALIPHILIC_AMPHIBACILLUS_STRAINS_MEDIUM.yaml","alcaliphilic_amphibacillus_strains_medium"],["ALKALIPHILIC_SPIROCHAETE_MEDIUM.yaml","alkaliphilic_spirochaete_medium"],["ANAEROBACTER_MEDIUM.yaml","anaerobacter_medium"],["AZOSPIRILLUM_AMAZONENSE_MEDIUM.yaml","azospirillum_amazonense_medium"]]},{"id":"CHEBI:144421","l":"iron(III) citrate","na":4,"nb":101,"a":[["mapped/Esculin_Ferric_Citrate.yaml","Esculin Ferric Citrate"],["mapped/Fe_Iii_Citrate.yaml","Fe(III) citrate"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"]],"b":[["ALKALIPHILUS_NAMSARAEVII_MEDIUM.yaml","alkaliphilus_namsaraevii_medium"],["ATHALASSOTOGA_MEDIUM.yaml","athalassotoga_medium"],["BACILLUS_INFERNUS_MEDIUM.yaml","bacillus_infernus_medium"],["CHLOROFLEXUS_AGGREGANS_MEDIUM.yaml","chloroflexus_aggregans_medium"],["DEFERRISOMA_MEDIUM.yaml","deferrisoma_medium"],["FRESHWATER_MEDIUM_WITH_TOLUENE.yaml","freshwater_medium_with_toluene"]]},{"id":"CHEBI:232798","l":"sodium L-lactate","na":4,"nb":81,"a":[["mapped/4_Carbon_Mix.yaml","4 Carbon Mix"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Na-l-lactate.yaml","Na-L-lactate"],["mapped/Sodium_L-lactate.yaml","Sodium L-lactate"]],"b":[["ALP_defined.yaml","ALP defined"],["ALP_defined_chlorate.yaml","ALP defined chlorate"],["ALP_defined_noN.yaml","ALP defined noN"],["ALP_defined_perchlorate.yaml","ALP defined perchlorate"],["ALP_rich.yaml","ALP rich"],["ALP_richB.yaml","ALP richB"]]},{"id":"CHEBI:16015","l":"L-glutamic acid","na":4,"nb":73,"a":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-Glutamic_Acid_Monopotassium_Salt_Monohydrate.yaml","L-Glutamic acid monopotassium salt monohydrate"],["mapped/L-glutamic_Acid.yaml","L-Glutamic acid"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["7H9.yaml","7H9"],["BACTO_MIDDLEBROOK_7H9_BROTH.yaml","bacto_middlebrook_7h9_broth"],["BGDM.yaml","bgdm"],["Bacillus_Medium.yaml","bacillus_medium"],["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"]]},{"id":"CHEBI:6636","l":"magnesium dichloride","na":4,"nb":67,"a":[["mapped/Mgcl2.yaml","MgCl2"],["mapped/Mgcl2_X_6_H2o.yaml","MgCl2 x 6 H2O"],["mapped/Mgcl2_X_7_H2o.yaml","MgCl2 x 7 H2O"],["mapped/Mgcl2x_6_H2o.yaml","MgCl2x 6 H2O"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mh_medium.yaml","15_mh_medium"],["1_2_r2a_75_asw.yaml","1_2_r2a_75_asw"],["28_mh_medium.yaml","28_mh_medium"],["ALCALIPHILIC_AMPHIBACILLUS_STRAINS_MEDIUM.yaml","alcaliphilic_amphibacillus_strains_medium"],["ALKALISPIRILLUM_MOBILE_MEDIUM.yaml","alkalispirillum_mobile_medium"]]},{"id":"CHEBI:17561","l":"L-cysteine","na":4,"nb":60,"a":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-cysteine.yaml","L-Cysteine"],["mapped/L-cysteine_Hcl_X_H2o.yaml","L-Cysteine HCl x H2O"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["70_30_sporulation_medium.yaml","70_30_sporulation_medium"],["BHIS_CaCl2.yaml","BHIS_CaCl2"],["BHIS_HOMOPIPES.yaml","BHIS_HOMOPIPES"],["BHIS_K3.yaml","BHIS_K3"],["BHIS_K3_noGlucose.yaml","BHIS_K3_noGlucose"],["BHIS_PIPES.yaml","BHIS_PIPES"]]},{"id":"CHEBI:53001","l":"nickel sulfate","na":4,"nb":41,"a":[["mapped/Nickel_II_sulfate_hexahydrate.yaml","Nickel (II) sulfate hexahydrate"],["mapped/Nickel_Sulfate.yaml","Nickel Sulfate"],["mapped/Niso4_X_6_H2o.yaml","NiSO4 x 6 H2O"],["mapped/Niso4_X_7_H2o.yaml","NiSO4 x 7 H2O"]],"b":[["AZC_1502_MEDIUM.yaml","azc_1502_medium"],["Ferrous_Iron_Yeast_Extract_Medium.yaml","ferrous_iron_yeast_extract_medium"],["GEOBACTER_NBAF_MEDIUM.yaml","geobacter_nbaf_medium"],["GYS_Medium.yaml","gys_medium"],["HYDROGENOBACTER_ACIDOPHILUS_MEDIUM.yaml","hydrogenobacter_acidophilus_medium"],["HYL_MEDIUM.yaml","hyl_medium"]]},{"id":"CHEBI:133341","l":"choline chloride","na":4,"nb":35,"a":[["mapped/Choline_Chloride.yaml","Choline chloride"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Thauers_Vitamin_Mix_No_Biotin.yaml","Thauer's vitamin mix no Biotin"]],"b":[["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"],["Dv_base_medium.yaml","Dv base medium"],["FRESHWATER_MEDIUM_FOR_SOIL_AOA.yaml","freshwater_medium_for_soil_aoa"],["LS4D.yaml","ls4d"],["LS4D__75fe5623.yaml","LS4D"],["M9_Thauers.yaml","M9 Thauers"]]},{"id":"CHEBI:16857","l":"L-threonine","na":4,"nb":35,"a":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-threonine.yaml","L-Threonine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Threonine.yaml","Threonine"]],"b":[["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"],["McAA_formate_No_pABA.yaml","McAA formate No pABA"],["Mops_medium.yaml","mops_medium"]]},{"id":"CHEBI:17895","l":"L-tyrosine","na":4,"nb":29,"a":[["mapped/DL-Tyrosine.yaml","DL-Tyrosine"],["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-tyrosine.yaml","L-Tyrosine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"],["McAA_formate_No_pABA.yaml","McAA formate No pABA"],["NLDM_defined.yaml","NLDM_defined"]]},{"id":"CHEBI:29377","l":"sodium carbonate","na":3,"nb":671,"a":[["mapped/Na2co3.yaml","Na2CO3"],["mapped/Sodium_Carbonate_Monohydrate.yaml","sodium carbonate monohydrate"],["mapped/Sodium_Carbonate_Solution.yaml","Sodium carbonate solution"]],"b":[["2_5_nacl_gypfk_agar_broth.yaml","2_5_nacl_gypfk_agar_broth"],["A7_MEDIUM.yaml","a7_medium"],["ACETIVIBRIO_ALKALICELLULOSI_MEDIUM.yaml","acetivibrio_alkalicellulosi_medium"],["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["ACETOBACTERIUM_DEHALOGENANS_MEDIUM.yaml","acetobacterium_dehalogenans_medium"],["ACETOBACTERIUM_TUNDRAE_MEDIUM.yaml","acetobacterium_tundrae_medium"]]},{"id":"CHEBI:53258","l":"sodium citrate","na":3,"nb":234,"a":[["mapped/Sodium_Citrate.yaml","Sodium Citrate"],["mapped/Trisodium_Citrate.yaml","Trisodium citrate"],["mapped/Trisodium_Citrate_X_2_H2o.yaml","Trisodium citrate x 2 H2O"]],"b":[["7H9.yaml","7H9"],["ACIDULIPROFUNDUM_MEDIUM.yaml","aciduliprofundum_medium"],["ALKALIPHILIC_HALOMONAS_MEDIUM.yaml","alkaliphilic_halomonas_medium"],["ALKALIPHILUS_TRANSVAALENSIS_MEDIUM.yaml","alkaliphilus_transvaalensis_medium"],["ALKALOPHILIC_HALOPHILE_MEDIUM.yaml","alkalophilic_halophile_medium"],["ALTERYTHROBACTER_MEDIUM_216L.yaml","alterythrobacter_medium_216l"]]},{"id":"CHEBI:77775","l":"sodium selenate","na":3,"nb":224,"a":[["mapped/Mc_trace_minerals.yaml","Mc_trace_minerals"],["mapped/Mc_trace_minerals_SO4free.yaml","Mc_trace_minerals_SO4free"],["mapped/Na2seo4.yaml","Na2SeO4"]],"b":[["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["ACIDITHIOBACILLUS_FERRIVORANS_MEDIUM.yaml","acidithiobacillus_ferrivorans_medium"],["ACIDULIPROFUNDUM_MEDIUM.yaml","aciduliprofundum_medium"],["ALKALIPHILUS_CROTONATOXIDANS_MEDIUM.yaml","alkaliphilus_crotonatoxidans_medium"],["AP11MH_medium.yaml","ap11mh_medium"]]},{"id":"CHEBI:37585","l":"sodium dihydrogenphosphate","na":3,"nb":173,"a":[["mapped/Nah2po4.yaml","NaH2PO4"],["mapped/Nah2po4_X_2_H2o.yaml","NaH2PO4 x 2 H2O"],["mapped/Nah2po4h2o.yaml","NaH2PO4•H2O"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["ANT.yaml","ant"],["ATRIBACTERIUM_MEDIUM.yaml","atribacterium_medium"],["BASAL_MEDIUM.yaml","basal_medium"]]},{"id":"CHEBI:17754","l":"glycerol","na":3,"nb":165,"a":[["mapped/Glucose_Maltose_Cellobiose_Starch_Glycerol.yaml","Glucose + Maltose + Cellobiose + Starch + Glycerol"],["mapped/Glycerol.yaml","Glycerol"],["mapped/Glycerol_2.yaml","glycerol"]],"b":[["1_ogawa_medium.yaml","1_ogawa_medium"],["1_ogawa_medium__65d0ae34.yaml","1_ogawa_medium"],["5_G_MEDIUM.yaml","5_g_medium"],["5_g_medium__8aa8a45a.yaml","5_g_medium"],["6_B_MEDIUM.yaml","6_b_medium"],["6_b_medium__990e4708.yaml","6_b_medium"]]},{"id":"CHEBI:23414","l":"copper(II) sulfate","na":3,"nb":148,"a":[["mapped/Cuso4.yaml","CuSO4"],["mapped/Cuso4_X_2_H2o.yaml","CuSO4 x 2 H2O"],["mapped/Cuso4_X_4_H2o.yaml","CuSO4 x 4 H2O"]],"b":[["ALCALIGENES_MEDIUM.yaml","alcaligenes_medium"],["Alkaline_halophile_medium.yaml","alkaline_halophile_medium"],["BACTO_MIDDLEBROOK_7H9_BROTH.yaml","bacto_middlebrook_7h9_broth"],["Basal_synthetic_medium.yaml","basal_synthetic_medium"],["CDM_for_Continuous_Cultivation.yaml","cdm_for_continuous_cultivation"],["CLOSTRIDIUM_METHYLPENTOSUM_MEDIUM.yaml","clostridium_methylpentosum_medium"]]},{"id":"CHEBI:91249","l":"ammonium molybdate","na":3,"nb":146,"a":[["mapped/Ammonium_Molybdate_Tetrahydrate.yaml","ammonium molybdate tetrahydrate"],["mapped/Diammonium_molybdate.yaml","Diammonium molybdate"],["mapped/MME_Trace_Minerals.yaml","MME Trace Minerals"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["ANCALOMICROBIUM_MEDIUM.yaml","ancalomicrobium_medium"],["ANNWOODIA_MEDIUM.yaml","annwoodia_medium"],["Autotrophic_Nitrobacter_Medium.yaml","autotrophic_nitrobacter_medium"],["CaMM_noCarbon.yaml","CaMM noCarbon"]]},{"id":"CHEBI:48843","l":"disodium selenite","na":3,"nb":137,"a":[["mapped/Na2seo3.yaml","Na2SeO3"],["mapped/Na2seo35h2o.yaml","Na2SeO3·5H2O"],["mapped/Na2seo3_X_5_H2o.yaml","Na2SeO3 x 5 H2O"]],"b":[["ACETOBACTEROIDES_MEDIUM.yaml","acetobacteroides_medium"],["ACIDITHIOBACILLUS_FERRIVORANS_MEDIUM.yaml","acidithiobacillus_ferrivorans_medium"],["ACTIVATED_CARBON_MEDIUM.yaml","activated_carbon_medium"],["AS_medium.yaml","as_medium"],["A_medium.yaml","a_medium"],["Azospira_Medium.yaml","azospira_medium"]]},{"id":"CHEBI:49553","l":"copper(II) chloride","na":3,"nb":124,"a":[["mapped/Cucl2.yaml","CuCl2"],["mapped/Cucl2_X_6_H2o.yaml","CuCl2 x 6 H2O"],["mapped/Zeikus_Trace_Element_Solution.yaml","Zeikus trace element solution"]],"b":[["ACETOBACTEROIDES_GLYCINOPHILUS_MEDIUM.yaml","acetobacteroides_glycinophilus_medium"],["ACETOBACTEROIDES_MEDIUM.yaml","acetobacteroides_medium"],["ANAEROBIC_TYEG_MEDIUM.yaml","anaerobic_tyeg_medium"],["ANAEROTIGNUM_NEOPROPIONICUM_MEDIUM.yaml","anaerotignum_neopropionicum_medium"],["Asp2.yaml","asp2"],["CALDICELLULOSIRUPTOR_ACETIGENUS_MEDIUM.yaml","caldicellulosiruptor_acetigenus_medium"]]},{"id":"CHEBI:32030","l":"potassium bromide","na":3,"nb":110,"a":[["mapped/Kbr.yaml","KBr"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"]],"b":[["1_2_r2a_75_asw.yaml","1_2_r2a_75_asw"],["1_2_r2a_medium_with_75_artificial_seawater.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["1_2_r2a_medium_with_75_artificial_seawater__5b6dd332.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["Artificial_seawater_medium_for_strain_JS_SRB250Lac.yaml","artificial_seawater_medium_for_strain_js_srb250lac"],["Chromatium_Medium.yaml","chromatium_medium"],["DESULFOPILA_CORRODENS_MEDIUM.yaml","desulfopila_corrodens_medium"]]},{"id":"CHEBI:17790","l":"methanol","na":3,"nb":107,"a":[["mapped/Formatemethanol.yaml","Formate+methanol"],["mapped/H2methanol.yaml","H2+methanol"],["mapped/Methanol.yaml","Methanol"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["2_mh_medium.yaml","2_mh_medium"],["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["ALTEROMONAS_MEDIUM.yaml","alteromonas_medium"],["BM_MEDIUM.yaml","bm_medium"]]},{"id":"CHEBI:15428","l":"glycine","na":3,"nb":87,"a":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/Glycine.yaml","Glycine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["ACETOBACTEROIDES_GLYCINOPHILUS_MEDIUM.yaml","acetobacteroides_glycinophilus_medium"],["ACIDAMINOBACTER_MEDIUM.yaml","acidaminobacter_medium"],["ACIDAMINOCOCCUS_FERMENTANS_MEDIUM.yaml","acidaminococcus_fermentans_medium"],["ANT.yaml","ant"],["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"]]},{"id":"CHEBI:63038","l":"ammonium nitrate","na":3,"nb":85,"a":[["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Nh4no3.yaml","(NH4)NO3"]],"b":[["ALKALINE_CELLULOSE_AGAR.yaml","alkaline_cellulose_agar"],["ALKALINE_XYLAN_MEDIUM.yaml","alkaline_xylan_medium"],["ALTERYTHROBACTER_MEDIUM_216L.yaml","alterythrobacter_medium_216l"],["AMPHIBACILLUS_MEDIUM.yaml","amphibacillus_medium"],["CELLULOSE_AGAR.yaml","cellulose_agar"],["CLOSTRIDIUM_VINCENTII_MEDIUM.yaml","clostridium_vincentii_medium"]]},{"id":"CHEBI:28741","l":"sodium fluoride","na":3,"nb":79,"a":[["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Naf.yaml","NaF"]],"b":[["1_2_r2a_75_asw.yaml","1_2_r2a_75_asw"],["1_2_r2a_medium_with_75_artificial_seawater.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["1_2_r2a_medium_with_75_artificial_seawater__5b6dd332.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["EKHO_LAKE_STRAINS_MEDIUM.yaml","ekho_lake_strains_medium"],["FLEXISTIPES_MEDIUM.yaml","flexistipes_medium"],["HAHA100_V_MEDIUM.yaml","haha100_v_medium"]]},{"id":"CHEBI:17196","l":"L-asparagine","na":3,"nb":74,"a":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-asparagine.yaml","L-Asparagine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["Alkali_B_medium.yaml","alkali_b_medium"],["CELLULOSE_AGAR.yaml","cellulose_agar"],["CMM.yaml","cmm"],["CTM_MEDIUM.yaml","ctm_medium"],["Glucose_Asparagine_Agar.yaml","glucose_asparagine_agar"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"]]},{"id":"CHEBI:64758","l":"EDTA disodium salt dihydrate","na":3,"nb":74,"a":[["mapped/Na2-edta_X_2_H2o.yaml","Na2-EDTA x 2 H2O"],["mapped/Na2edta2h2o.yaml","Na2EDTA·2H2O"],["mapped/P-iv_Metal_Solution.yaml","P-IV Metal Solution"]],"b":[["ANAEROLINEA_MEDIUM.yaml","anaerolinea_medium"],["AZOARCUS_TAIWANENSIS_MEDIUM.yaml","azoarcus_taiwanensis_medium"],["Allen_medium.yaml","allen_medium"],["BACILLUS_ALKALIDIAZOTROPHICUS_MEDIUM.yaml","bacillus_alkalidiazotrophicus_medium"],["BACILLUS_INFERNUS_MEDIUM.yaml","bacillus_infernus_medium"],["CALDICELLULOSIRUPTOR_OWENSIS_MEDIUM.yaml","caldicellulosiruptor_owensis_medium"]]},{"id":"CHEBI:15603","l":"L-leucine","na":3,"nb":70,"a":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-leucine.yaml","L-Leucine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["Hypertonic_medium.yaml","hypertonic_medium"],["MCD_Medium.yaml","mcd_medium"]]},{"id":"CHEBI:16643","l":"L-methionine","na":3,"nb":68,"a":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-methionine.yaml","L-Methionine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["Basic_mineral_medium.yaml","basic_mineral_medium"],["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MDM.yaml","mdm"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"]]},{"id":"CHEBI:17191","l":"L-isoleucine","na":3,"nb":65,"a":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-isoleucine.yaml","L-Isoleucine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["CTM_MEDIUM.yaml","ctm_medium"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MCD_Medium.yaml","mcd_medium"]]},{"id":"CHEBI:17295","l":"L-phenylalanine","na":3,"nb":63,"a":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-phenylalanine.yaml","L-Phenylalanine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["BGDM.yaml","bgdm"],["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["CTM_MEDIUM.yaml","ctm_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["M9_minimal_media_aromix_noCarbon.yaml","M9 minimal media aromix noCarbon"]]},{"id":"CHEBI:16414","l":"L-valine","na":3,"nb":60,"a":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-valine.yaml","L-Valine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["CDM_LP.yaml","cdm_lp"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MCD_Medium.yaml","mcd_medium"],["MDM.yaml","mdm"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"]]},{"id":"CHEBI:16467","l":"L-arginine","na":3,"nb":51,"a":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-arginine.yaml","L-Arginine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["ABB.yaml","ABB"],["ACY.yaml","ACY"],["CAENICOLA_MOBILE_MEDIUM.yaml","caenicola_mobile_medium"],["CMM.yaml","cmm"],["CTM_MEDIUM.yaml","ctm_medium"],["Chamberlain_CDM.yaml","chamberlain_cdm"]]},{"id":"CHEBI:16977","l":"L-alanine","na":3,"nb":51,"a":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-alanine.yaml","L-Alanine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["ANAEROTIGNUM_MEDIUM.yaml","anaerotignum_medium"],["BGDM.yaml","bgdm"],["CMM.yaml","cmm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MCD_Medium.yaml","mcd_medium"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"]]},{"id":"CHEBI:17268","l":"myo-inositol","na":3,"nb":50,"a":[["mapped/M-inositol.yaml","m-Inositol"],["mapped/Myo-inositol.yaml","myo-Inositol"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["2ASW.yaml","2asw"],["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"],["ASW.yaml","asw"],["CDM_LP.yaml","cdm_lp"],["DESULFAMPLUS_MEDIUM.yaml","desulfamplus_medium"],["EGGC_MEDIUM.yaml","eggc_medium"]]},{"id":"CHEBI:17203","l":"L-proline","na":3,"nb":48,"a":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-proline.yaml","L-Proline"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["CDM_LP.yaml","cdm_lp"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MDM.yaml","mdm"],["MEIOTHERMUS_MEDIUM_R8.yaml","meiothermus_medium_r8"]]},{"id":"CHEBI:15971","l":"L-histidine","na":3,"nb":47,"a":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-histidine.yaml","L-Histidine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["CAENICOLA_MOBILE_MEDIUM.yaml","caenicola_mobile_medium"],["CTM_MEDIUM.yaml","ctm_medium"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"]]},{"id":"CHEBI:36383","l":"strontium dichloride","na":3,"nb":43,"a":[["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Srcl2.yaml","SrCl2"]],"b":[["1_2_r2a_75_asw.yaml","1_2_r2a_75_asw"],["EKHO_LAKE_STRAINS_MEDIUM.yaml","ekho_lake_strains_medium"],["GEOGLOBUS_AHANGARI_MEDIUM.yaml","geoglobus_ahangari_medium"],["HAHA100_V_MEDIUM.yaml","haha100_v_medium"],["HALOBACTERIOVORAX_MEDIUM.yaml","halobacteriovorax_medium"],["Half_Strength_Bacto_Marine_Broth.yaml","half_strength_bacto_marine_broth"]]},{"id":"CHEBI:18050","l":"L-glutamine","na":3,"nb":42,"a":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-glutamine.yaml","L-Glutamine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"],["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"],["GLUTAMINE_MEDIUM.yaml","glutamine_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"]]},{"id":"CHEBI:17115","l":"L-serine","na":3,"nb":41,"a":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-serine.yaml","L-Serine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["AMINOMONAS_MEDIUM.yaml","aminomonas_medium"],["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"]]},{"id":"CHEBI:18167","l":"alpha-maltose","na":3,"nb":41,"a":[["mapped/Maltose.yaml","Maltose"],["mapped/Maltose_2.yaml","maltose"],["mapped/Starch.yaml","Starch"]],"b":[["4_yaco_media.yaml","4_yaco_media"],["Chopped_Meat_Carbohydrate_Medium.yaml","chopped_meat_carbohydrate_medium"],["Chopped_Meat_Carbohydrate_Medium_w_Tween_80.yaml","chopped_meat_carbohydrate_medium_w_tween_80"],["Chopped_meat_carbohydrates_with_rumen_fluid.yaml","chopped_meat_carbohydrates_with_rumen_fluid"],["KTM_medium.yaml","ktm_medium"],["LACTOBACILLUS_PONTIS_MEDIUM.yaml","lactobacillus_pontis_medium"]]},{"id":"CHEBI:16828","l":"L-tryptophan","na":3,"nb":40,"a":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-tryptophan.yaml","L-Tryptophan"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["CDMM.yaml","cdmm"],["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["M9_minimal_media_aromix_noCarbon.yaml","M9 minimal media aromix noCarbon"],["MDM.yaml","mdm"]]},{"id":"CHEBI:30808","l":"iron trichloride","na":3,"nb":38,"a":[["mapped/Fecl3.yaml","FeCl3"],["mapped/Fecl3_X_4_H2o.yaml","FeCl3 x 4 H2O"],["mapped/MME_Trace_Minerals.yaml","MME Trace Minerals"]],"b":[["AZOSPIRILLUM_AMAZONENSE_MEDIUM.yaml","azospirillum_amazonense_medium"],["Beijerinckia_medium_for_isolation.yaml","beijerinckia_medium_for_isolation"],["CARBOXYMETHYL_CELLULOSE_MEDIUM.yaml","carboxymethyl_cellulose_medium"],["CYTOPHAGA_MEDIUM.yaml","cytophaga_medium"],["Castenholz_TYE_medium.yaml","castenholz_tye_medium"],["FRANCISELLA_HALIOTICIDA_MEDIUM.yaml","francisella_halioticida_medium"]]},{"id":"CHEBI:60720","l":"sodium silicate","na":3,"nb":35,"a":[["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Na-silicate.yaml","Na-silicate"]],"b":[["Asp2.yaml","asp2"],["HALOBACTERIOVORAX_MEDIUM.yaml","halobacteriovorax_medium"],["Half_Strength_Bacto_Marine_Broth.yaml","half_strength_bacto_marine_broth"],["MEDIUM_514_plus_additional_salt.yaml","medium_514_plus_additional_salt"],["METHANOPYRUS_MEDIUM.yaml","methanopyrus_medium"],["MODIFIED_MEDIUM_514.yaml","modified_medium_514"]]},{"id":"CHEBI:18019","l":"L-lysine","na":3,"nb":32,"a":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-lysine.yaml","L-Lysine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["Chamberlain_CDM.yaml","chamberlain_cdm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"],["McAA_formate_No_pABA.yaml","McAA formate No pABA"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"]]},{"id":"CHEBI:30089","l":"acetate","na":3,"nb":31,"a":[["mapped/Acetate.yaml","Acetate"],["mapped/Acetate_Carbon_Source.yaml","Acetate (carbon source)"],["mapped/Glucose_Acetate.yaml","Glucose + Acetate"]],"b":[["AMOEBOBACTER_MEDIUM.yaml","amoebobacter_medium"],["FWAFC.yaml","fwafc"],["M9ZB_with_acetate.yaml","m9zb_with_acetate"],["MEDIUM_FOR_CHLOROBIUM_FERROOXIDANS.yaml","medium_for_chlorobium_ferrooxidans"],["NMM_with_acetate.yaml","nmm_with_acetate"],["Thauera_aminoaromatica_medium.yaml","thauera_aminoaromatica_medium"]]},{"id":"CHEBI:30314","l":"(R)-lipoic acid","na":3,"nb":29,"a":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/Thioctic_Acid.yaml","Thioctic acid"],["mapped/Wolfes_Vitamin_Mix.yaml","Wolfe's vitamin mix"]],"b":[["A1_MEDIUM.yaml","a1_medium"],["CLOSTRIDIUM_THERMOCELLUM_MEDIUM.yaml","clostridium_thermocellum_medium"],["Chemically_defined_medium.yaml","chemically_defined_medium"],["Clostridium_aldrichii_medium.yaml","clostridium_aldrichii_medium"],["DESULFOMONILE_MEDIUM.yaml","desulfomonile_medium"],["JCM_medium_242.yaml","jcm_medium_242"]]},{"id":"CHEBI:30812","l":"iron dichloride","na":3,"nb":24,"a":[["mapped/Fecl2.yaml","FeCl2"],["mapped/Fecl2_X_6_H2o.yaml","FeCl2 x 6 H2O"],["mapped/Fecl2_X_7_H2o.yaml","FeCl2 x 7 H2O"]],"b":[["BACTO_PHOTOBACTERIUM_BROTH.yaml","bacto_photobacterium_broth"],["HALORHABDUS_UTAHENSIS_MEDIUM.yaml","halorhabdus_utahensis_medium"],["HERBASPIRILLUM_MEDIUM.yaml","herbaspirillum_medium"],["MEDIUM_FOR_ARHODOMONAS_AND_MARINOBACTER.yaml","medium_for_arhodomonas_and_marinobacter"],["MPA_Medium.yaml","mpa_medium"],["Modified_M30_Medium.yaml","modified_m30_medium"]]},{"id":"FOODON:03302088","l":"beef extract","na":3,"nb":15,"a":[["mapped/Beef_Extract.yaml","Beef extract"],["mapped/Peptone_Beef_Extract_Yeast_Extract.yaml","Peptone + Beef Extract + Yeast Extract"],["mapped/Tryptoneyeastbeef_%28tyb%29.yaml","Tryptone/yeast/beef (tyb)"]],"b":[["1_5_Nutrient_agar.yaml","1_5_nutrient_agar"],["948_oxoid_nutrient_broth_with_additonal_salt.yaml","948_oxoid_nutrient_broth_with_additonal_salt"],["HAEMOPHILUS_MEDIUM.yaml","haemophilus_medium"],["MRS.yaml","MRS"],["SNA_5.yaml","sna_5"],["clostridium_estertheticum_medium.yaml","clostridium_estertheticum_medium"]]},{"id":"FOODON:03301056","l":"malt extract","na":6,"nb":3,"a":[["mapped/Malt_Extract.yaml","Malt extract"],["mapped/Malt_Extract_Agar.yaml","Malt extract agar"],["mapped/Malt_Extract_Agar_Nissui.yaml","Malt Extract Agar (Nissui)"],["mapped/Malt_Extract_Agar_Oxoid.yaml","Malt extract agar (Oxoid)"],["mapped/Malt_Extract_Broth.yaml","Malt extract broth"],["mapped/Yeast_Extract-malt_Extract_Agar.yaml","Yeast extract-malt extract agar"]],"b":[["MY75S.yaml","my75s"],["Streptomyces_growth_medium_65.yaml","Streptomyces growth medium 65"],["wmy.yaml","wmy"]]},{"id":"CHEBI:17925","l":"alpha-D-glucose","na":3,"nb":4,"a":[["mapped/Alpha-d-glucose.yaml","alpha-D-Glucose"],["mapped/Glucose.yaml","Glucose"],["mapped/Glucose_Xylose.yaml","Glucose + Xylose"]],"b":[["CDMM.yaml","cdmm"],["MDM.yaml","mdm"],["MM3.yaml","mm3"],["tsb_glucose_medium.yaml","tsb_glucose_medium"]]},{"id":"CHEBI:46020","l":"tetramethylammonium","na":4,"nb":3,"a":[["mapped/Formatetetramethylammonium.yaml","Formate+tetramethylammonium"],["mapped/H2tetramethylammonium.yaml","H2+tetramethylammonium"],["mapped/Tetramethyl_Ammonium.yaml","Tetramethyl ammonium"],["mapped/Tetramethyl_Ammonium_Chloride.yaml","Tetramethyl ammonium chloride"]],"b":[["TETRAMETHYL_AMMONIUM_MEDIUM.yaml","tetramethyl_ammonium_medium"],["methanogen_high_salt_medium__183d3bb4.yaml","methanogen_high_salt_medium"],["tetramethyl_ammonium_medium__e4bd4975.yaml","tetramethyl_ammonium_medium"]]},{"id":"CHEBI:131527","l":"dipotassium hydrogen phosphate","na":2,"nb":2042,"a":[["mapped/K2hpo4.yaml","K2HPO4"],["mapped/K2hpo4_X_3_H2o.yaml","K2HPO4 x 3 H2O"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"]]},{"id":"CHEBI:17883","l":"hydrogen chloride","na":2,"nb":574,"a":[["mapped/Hcl.yaml","HCl"],["mapped/Trace_Element_Solution_SL-10.yaml","Trace element solution SL-10"]],"b":[["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_tryptic_soy_broth_anaerobe.yaml","1_2_tryptic_soy_broth_anaerobe"],["1_2_tryptic_soy_broth_anaerobic.yaml","1_2_tryptic_soy_broth_anaerobic"],["5_sorbitol_medium__c395a410.yaml","5_sorbitol_medium"],["ACETIVIBRIO_ALKALICELLULOSI_MEDIUM.yaml","acetivibrio_alkalicellulosi_medium"]]},{"id":"CHEBI:86254","l":"iron trichloride hexahydrate","na":2,"nb":378,"a":[["mapped/Fecl3_X_6_H2o.yaml","FeCl3 x 6 H2O"],["mapped/P-iv_Metal_Solution.yaml","P-IV Metal Solution"]],"b":[["3n_bbm_v.yaml","3n_bbm_v"],["3n_bbm_v_recipe_for_customer_orders.yaml","3n_bbm_v_recipe_for_customer_orders"],["A2_MEDIUM.yaml","a2_medium"],["ABM.yaml","abm"],["ACIDITHIOBACILLUS_CALDUS_MEDIUM.yaml","acidithiobacillus_caldus_medium"],["ANOXYBACILLUS_TUNISIENSE_MEDIUM.yaml","anoxybacillus_tunisiense_medium"]]},{"id":"CHEBI:50144","l":"sodium pyruvate","na":2,"nb":362,"a":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Na-pyruvate.yaml","Na-pyruvate"]],"b":[["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"],["1_2_r2a_medium_with_75_artificial_seawater.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["1_2_r2a_medium_with_75_artificial_seawater__5b6dd332.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["225M1_MEDIUM.yaml","225m1_medium"],["225m1_medium__5109009b.yaml","225m1_medium"]]},{"id":"CHEBI:64734","l":"EDTA disodium salt (anhydrous)","na":2,"nb":334,"a":[["mapped/Na2-edta.yaml","Na2-EDTA"],["mapped/Na2-edta_X_2_H2o.yaml","Na2-EDTA x 2 H2O"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["3n_bbm_v.yaml","3n_bbm_v"],["3n_bbm_v_recipe_for_customer_orders.yaml","3n_bbm_v_recipe_for_customer_orders"],["ABM.yaml","abm"],["ACIDIC_DILUTED_ASM_MEDIUM.yaml","acidic_diluted_asm_medium"],["ALGORIPHAGUS_AQUAEDUCTUS_MEDIUM.yaml","algoriphagus_aquaeductus_medium"]]},{"id":"CHEBI:32150","l":"sodium thiosulfate pentahydrate","na":2,"nb":312,"a":[["mapped/Na2s2o3_X_5_H2o.yaml","Na2S2O3 x 5 H2O"],["mapped/Sodium_Thiosulfate_Pentahydrate.yaml","Sodium Thiosulfate Pentahydrate"]],"b":[["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["ACIDITHIOBACILLUS_THIOOXIDANS_MEDIUM.yaml","acidithiobacillus_thiooxidans_medium"],["ALKALIPHILUS_LACT_MEDIUM.yaml","alkaliphilus_lact_medium"],["ALKALIPHILUS_LACV_MEDIUM.yaml","alkaliphilus_lacv_medium"],["ALKALIPHILUS_TRANSVAALENSIS_MEDIUM.yaml","alkaliphilus_transvaalensis_medium"],["AMMONIFEX_THIOPHILUS_MEDIUM.yaml","ammonifex_thiophilus_medium"]]},{"id":"CHEBI:75215","l":"sodium molybdate (anhydrous)","na":2,"nb":181,"a":[["mapped/Na2moo4.yaml","Na2MoO4"],["mapped/Na2moo42h2o.yaml","Na2MoO4·2H2O"]],"b":[["A3.yaml","a3"],["ACIDOSOMA_MEDIUM.yaml","acidosoma_medium"],["BASAL_MEDIUM.yaml","basal_medium"],["Basal_synthetic_medium.yaml","basal_synthetic_medium"],["Beijerinckia_medium_for_isolation.yaml","beijerinckia_medium_for_isolation"],["CAMM.yaml","camm"]]},{"id":"CHEBI:26833","l":"sulfur atom","na":2,"nb":153,"a":[["mapped/Sulfur.yaml","Sulfur"],["mapped/Yeast_Extract_Sulfur.yaml","Yeast Extract + Sulfur"]],"b":[["1_2_SME_MEDIUM.yaml","1_2_sme_medium"],["9K_WITH_SULFUR_MEDIUM.yaml","9k_with_sulfur_medium"],["ACIDIANUS_BRIERLEYI_MEDIUM.yaml","acidianus_brierleyi_medium"],["ACIDITHIOBACILLUS_CALDUS_MEDIUM.yaml","acidithiobacillus_caldus_medium"],["ACIDITHIOBACILLUS_MEDIUM.yaml","acidithiobacillus_medium"],["ACIDOLOBUS_ACETICUS_MEDIUM.yaml","acidolobus_aceticus_medium"]]},{"id":"CHEBI:29032","l":"(R)-pantothenate","na":2,"nb":135,"a":[["mapped/Ca-pantothenate.yaml","Ca-pantothenate"],["mapped/Calcium_Pantothenate.yaml","Calcium pantothenate"]],"b":[["AP11MH_medium.yaml","ap11mh_medium"],["ARCHAEOGLOBUS_FULGIDUS_MEDIUM.yaml","archaeoglobus_fulgidus_medium"],["AS_medium.yaml","as_medium"],["A_medium.yaml","a_medium"],["Artificial_seawater_medium_for_strain_JS_SRB250Lac.yaml","artificial_seawater_medium_for_strain_js_srb250lac"],["Cedears_Standard_Medium_2.yaml","cedears_standard_medium_2"]]},{"id":"CHEBI:53426","l":"polysorbate 80","na":2,"nb":134,"a":[["mapped/PYG-002_Tween_80.yaml","PYG-0.02% Tween 80"],["mapped/Tween_80.yaml","Tween 80"]],"b":[["7H9.yaml","7H9"],["AAM_MEDIUM.yaml","aam_medium"],["ACIDAMINOCOCCUS_FERMENTANS_MEDIUM.yaml","acidaminococcus_fermentans_medium"],["BIFIDOBACTERIUM_MEDIUM.yaml","bifidobacterium_medium"],["Beer_Medium.yaml","beer_medium"],["CDM_LP.yaml","cdm_lp"]]},{"id":"CHEBI:91247","l":"L-cysteine hydrochloride","na":2,"nb":134,"a":[["mapped/L-Cysteine_X_HCl_X_H2O_Solution.yaml","L-Cysteine x HCl x H2O solution"],["mapped/L-cysteine_Hcl.yaml","L-Cysteine HCl"]],"b":[["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["ABB.yaml","ABB"],["ACY.yaml","ACY"],["AP11MH_medium.yaml","ap11mh_medium"],["Actinotalea_fermentas_medium.yaml","actinotalea_fermentas_medium"],["BBL_ACTINOMYCES_BROTH.yaml","bbl_actinomyces_broth"]]},{"id":"CHEBI:75228","l":"sodium lactate","na":2,"nb":131,"a":[["mapped/D.yaml","D"],["mapped/Sodium_Lactate.yaml","Sodium lactate"]],"b":[["ANAEROBACILLUS_ARSENICISELENATIS_MEDIUM.yaml","anaerobacillus_arseniciselenatis_medium"],["ARCHAEOGLOBUS_FULGIDUS_MEDIUM.yaml","archaeoglobus_fulgidus_medium"],["ARCHAEOGLOBUS_SULFATICALLIDUS_MEDIUM.yaml","archaeoglobus_sulfaticallidus_medium"],["Artificial_seawater_medium_for_strain_JS_SRB250Lac.yaml","artificial_seawater_medium_for_strain_js_srb250lac"],["BACILLUS_INFERNUS_MEDIUM.yaml","bacillus_infernus_medium"],["BACILLUS_MACYAE_MEDIUM.yaml","bacillus_macyae_medium"]]},{"id":"CHEBI:17154","l":"nicotinamide","na":2,"nb":117,"a":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Nicotinamide.yaml","Nicotinamide"]],"b":[["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"],["ANAEROBIC_CHOLESTEROL_MEDIUM.yaml","anaerobic_cholesterol_medium"],["ANAEROBIC_THAUERA_MEDIUM.yaml","anaerobic_thauera_medium"],["ANCALOMICROBIUM_MEDIUM.yaml","ancalomicrobium_medium"],["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"]]},{"id":"CHEBI:86149","l":"ammonium nickel sulfate hexahydrate","na":2,"nb":99,"a":[["mapped/Nh42ni_So42.yaml","(NH4)2Ni(SO4)2"],["mapped/Nh42ni_So42_X_6_H2o.yaml","(NH4)2Ni(SO4)2 x 6 H2O"]],"b":[["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["ACIDITHIOBACILLUS_FERRIVORANS_MEDIUM.yaml","acidithiobacillus_ferrivorans_medium"],["ACIDULIPROFUNDUM_MEDIUM.yaml","aciduliprofundum_medium"],["AQUIFEX_MEDIUM.yaml","aquifex_medium"],["ARCHAEOGLOBUS_INFECTUS_MEDIUM.yaml","archaeoglobus_infectus_medium"],["ARCHAEOGLOBUS_PROFUNDUS_MEDIUM.yaml","archaeoglobus_profundus_medium"]]},{"id":"CHEBI:63675","l":"sodium succinate (anhydrous)","na":2,"nb":96,"a":[["mapped/Sodium_Succinate.yaml","Sodium succinate"],["mapped/Sodium_Succinate_Dibasic.yaml","Sodium succinate dibasic"]],"b":[["ABB.yaml","ABB"],["ACY.yaml","ACY"],["ALCALIGENES_MEDIUM.yaml","alcaligenes_medium"],["ALKALIPHILUS_SUCCINACIDUS_MEDIUM.yaml","alkaliphilus_succinacidus_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["ANAEROBIC_AZOSPIRILLUM_MEDIUM.yaml","anaerobic_azospirillum_medium"]]},{"id":"CHEBI:18385","l":"thiamine(1+)","na":2,"nb":94,"a":[["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Thiamine.yaml","Thiamine"]],"b":[["ANB_aerobic.yaml","anb_aerobic"],["AQUASPIRILLUM_MEDIUM.yaml","aquaspirillum_medium"],["Basic_mineral_medium.yaml","basic_mineral_medium"],["CHITINIVIBRIO_MEDIUM.yaml","chitinivibrio_medium"],["Chemically_defined_medium.yaml","chemically_defined_medium"],["Chromatium_Medium.yaml","chromatium_medium"]]},{"id":"CHEBI:31604","l":"ferric ammonium citrate","na":2,"nb":92,"a":[["mapped/Esculin_Ferric_Citrate.yaml","Esculin Ferric Citrate"],["mapped/Ferric_Ammonium_Citrate.yaml","Ferric ammonium citrate"]],"b":[["7H9.yaml","7H9"],["ACTIVATED_CARBON_MEDIUM.yaml","activated_carbon_medium"],["ALCALIGENES_MEDIUM.yaml","alcaligenes_medium"],["AURANTIMONAS_MANGANOXYDANS_MEDIUM.yaml","aurantimonas_manganoxydans_medium"],["BACILLUS_SCHLEGELII_HETEROTROPHIC_MEDIUM.yaml","bacillus_schlegelii_heterotrophic_medium"],["BACTO_MIDDLEBROOK_7H9_BROTH.yaml","bacto_middlebrook_7h9_broth"]]},{"id":"CHEBI:32036","l":"potassium sulfate","na":2,"nb":83,"a":[["mapped/K2so4.yaml","K2SO4"],["mapped/K2so4_X_7_H2o.yaml","K2SO4 x 7 H2O"]],"b":[["225M1_MEDIUM.yaml","225m1_medium"],["225m1_medium__5109009b.yaml","225m1_medium"],["225m1_medium__936a42af.yaml","225m1_medium"],["ARTIFICIAL_PILOT_PLANT_WATER_MEDIUM.yaml","artificial_pilot_plant_water_medium"],["ARTIFICIAL_SOIL_AGAR.yaml","artificial_soil_agar"],["DESULFOSPOROSINUS_ACIDIPHILUS_MEDIUM.yaml","desulfosporosinus_acidiphilus_medium"]]},{"id":"CHEBI:115156","l":"disodium fumarate","na":2,"nb":67,"a":[["mapped/Corn_Steep_Liquor_Glucose_Fumarate.yaml","Corn Steep Liquor + Glucose + Fumarate"],["mapped/Na2-fumarate.yaml","Na2-fumarate"]],"b":[["ANAEROBRANCA_MEDIUM.yaml","anaerobranca_medium"],["BTU_MEDIUM.yaml","btu_medium"],["CALDIMICROBIUM_MEDIUM.yaml","caldimicrobium_medium"],["DEFLUVIITOGA_MEDIUM.yaml","defluviitoga_medium"],["DEHALOSPIRILLUM_MEDIUM.yaml","dehalospirillum_medium"],["DENITROVIBRIO_MEDIUM.yaml","denitrovibrio_medium"]]},{"id":"CHEBI:39010","l":"MES","na":2,"nb":67,"a":[["mapped/MES_Buffer.yaml","MES buffer"],["mapped/Mes.yaml","MES"]],"b":[["1_10_r2a_with_mes_ph6.yaml","1_10_r2a_with_mes_ph6"],["GYPS_MEDIUM.yaml","gyps_medium"],["KA22_MEDIUM.yaml","ka22_medium"],["M25Y_MEDIUM.yaml","m25y_medium"],["MAG_Modified_arabinose_gluconate_medium.yaml","mag_modified_arabinose_gluconate_medium"],["MARINE_MEDIUM_WITH_SULFUR.yaml","marine_medium_with_sulfur"]]},{"id":"CHEBI:39074","l":"MOPS","na":2,"nb":64,"a":[["mapped/MOPS_2M_pH7.yaml","MOPS_2M_pH7"],["mapped/Mops.yaml","MOPS"]],"b":[["CM3_MEDIUM.yaml","cm3_medium"],["DESULFOCELLA_HALOPHILA_MEDIUM.yaml","desulfocella_halophila_medium"],["DESULFOHALOTOMACULUM_MEDIUM.yaml","desulfohalotomaculum_medium"],["FERMENTATIVE_CELLULOLYTIC_ANAEROBES_MEDIUM.yaml","fermentative_cellulolytic_anaerobes_medium"],["GS2_MEDIUM_WITH_CELLOBIOSE.yaml","gs2_medium_with_cellobiose"],["Gotz_minimal_medium_with_malate.yaml","gotz_minimal_medium_with_malate"]]},{"id":"CHEBI:39033","l":"PIPES","na":2,"nb":57,"a":[["mapped/PIPES_Buffer.yaml","PIPES buffer"],["mapped/Pipes.yaml","PIPES"]],"b":[["CALROANAEROBACTER_MEDIUM.yaml","calroanaerobacter_medium"],["HALOBACTEROIDES_HALOBIUS_MEDIUM.yaml","halobacteroides_halobius_medium"],["KOSMOTOGA_OLEARIA_MEDIUM.yaml","kosmotoga_olearia_medium"],["KTM_medium.yaml","ktm_medium"],["MARINITOGA_MEDIUM.yaml","marinitoga_medium"],["METHANOCALDOCOCCUS_LEIGHII_MEDIUM.yaml","methanocaldococcus_leighii_medium"]]},{"id":"CHEBI:53470","l":"cobalt(2+) sulfate","na":2,"nb":57,"a":[["mapped/Coso4.yaml","CoSO4"],["mapped/Coso4_X_7_H2o.yaml","CoSO4 x 7 H2O"]],"b":[["Caldisphaera_Medium.yaml","caldisphaera_medium"],["DSM_135_medium.yaml","dsm_135_medium"],["E2_medium_with_citrate.yaml","e2_medium_with_citrate"],["E2_medium_with_gluconate.yaml","e2_medium_with_gluconate"],["E2_medium_with_octanoate.yaml","e2_medium_with_octanoate"],["JCM_Medium_161.yaml","jcm_medium_161"]]},{"id":"CHEBI:7916","l":"pantothenic acid","na":2,"nb":48,"a":[["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Pantothenic_Acid.yaml","Pantothenic acid"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["A1_MEDIUM.yaml","a1_medium"],["ANAEROBIC_CHOLESTEROL_MEDIUM.yaml","anaerobic_cholesterol_medium"],["ANAEROBIC_THAUERA_MEDIUM.yaml","anaerobic_thauera_medium"],["AQUASPIRILLUM_MEDIUM_II.yaml","aquaspirillum_medium_ii"]]},{"id":"CHEBI:114249","l":"sodium dihydrogenphosphate monohydrate","na":2,"nb":42,"a":[["mapped/Nah2po4h2o.yaml","NaH2PO4•H2O"],["mapped/Sodium_phosphate_monobasic_monohydrate.yaml","Sodium phosphate monobasic monohydrate"]],"b":[["ALP_defined.yaml","ALP defined"],["ALP_defined_chlorate.yaml","ALP defined chlorate"],["ALP_defined_noN.yaml","ALP defined noN"],["ALP_defined_perchlorate.yaml","ALP defined perchlorate"],["ALP_rich.yaml","ALP rich"],["Chakraborty_Basal.yaml","Chakraborty Basal"]]},{"id":"CHEBI:78018","l":"dodecylphosphocholine","na":2,"nb":37,"a":[["mapped/Bacto-tryptone.yaml","Bacto-tryptone"],["mapped/Trypticase.yaml","Trypticase"]],"b":[["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["an1_medium__e0323906.yaml","an1_medium"],["anaerocella_medium.yaml","anaerocella_medium"],["bacteroides_galacturonicus_medium.yaml","bacteroides_galacturonicus_medium"],["campylobacter_rectus_medium.yaml","campylobacter_rectus_medium"],["capnocytophaga_medium__a7f2b87e.yaml","capnocytophaga_medium"]]},{"id":"CHEBI:28869","l":"menadione","na":2,"nb":34,"a":[["mapped/Menadione.yaml","Menadione"],["mapped/Menadione_Solution.yaml","Menadione solution"]],"b":[["ABB.yaml","ABB"],["ACY.yaml","ACY"],["BGDM.yaml","bgdm"],["BHIS.yaml","bhis"],["BHIS_K3.yaml","BHIS_K3"],["BHIS_K3_noGlucose.yaml","BHIS_K3_noGlucose"]]},{"id":"CHEBI:16947","l":"citrate(3-)","na":2,"nb":31,"a":[["mapped/Citrate.yaml","Citrate"],["mapped/Citric_Acid.yaml","Citric acid"]],"b":[["E2_medium_with_citrate.yaml","e2_medium_with_citrate"],["M9_minimal_medium_with_citrate.yaml","m9_minimal_medium_with_citrate"],["Vogels_Medium_N.yaml","vogels_medium_n"],["aspartate_salt_schaechter_et_al.yaml","aspartate_salt_schaechter_et_al"],["batch_medium_mattanovich_et_al.yaml","batch_medium_mattanovich_et_al"],["bg11_0_015_mm_iron_shcolnick_2006.yaml","bg11_0_015_mm_iron_shcolnick_2006"]]},{"id":"CHEBI:86356","l":"manganese(II) sulfate dihydrate","na":2,"nb":28,"a":[["mapped/Mc_trace_minerals.yaml","Mc_trace_minerals"],["mapped/Mnso4_X_2_H2o.yaml","MnSO4 x 2 H2O"]],"b":[["1a_Medium.yaml","1a_medium"],["GS_MEDIUM.yaml","gs_medium"],["HALOPHILIC_METHANOTROPHIC_BACTERIUM_MEDIUM.yaml","halophilic_methanotrophic_bacterium_medium"],["METHYLOBACTER_MEDIUM_M10_XCF.yaml","methylobacter_medium_m10_xcf"],["METHYLOTHERMUS_MEDIUM.yaml","methylothermus_medium"],["MMJYP2_Medium.yaml","mmjyp2_medium"]]},{"id":"CHEBI:27570","l":"histidine","na":2,"nb":27,"a":[["mapped/Dl-histidine.yaml","DL-Histidine"],["mapped/L-histidine.yaml","L-Histidine"]],"b":[["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["MS15_Medium.yaml","ms15_medium"],["NATRONINCOLA_HISTIDINOVORANS_MEDIUM.yaml","natronincola_histidinovorans_medium"]]},{"id":"CHEBI:28757","l":"fructose","na":2,"nb":27,"a":[["mapped/Fructose.yaml","Fructose"],["mapped/PY-fructose.yaml","PY-fructose"]],"b":[["ACETOBACTERIUM_MEDIUM.yaml","acetobacterium_medium"],["AQUINCOLA_MEDIUM.yaml","aquincola_medium"],["ARTFICIAL_FRESHWATER_MEDIUM_I.yaml","artficial_freshwater_medium_i"],["CLOSTRIDIUM_ACETATE_1_MEDIUM.yaml","clostridium_acetate_1_medium"],["DESULFOSPOROSINUS_ACIDOPHILUS_MEDIUM.yaml","desulfosporosinus_acidophilus_medium"],["EUBACTERIUM_AGGREGANS_MEDIUM.yaml","eubacterium_aggregans_medium"]]},{"id":"CHEBI:17568","l":"uracil","na":2,"nb":26,"a":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Uracil.yaml","Uracil"]],"b":[["CDM_LP.yaml","cdm_lp"],["MCD_Medium.yaml","mcd_medium"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"]]},{"id":"CHEBI:32138","l":"sodium acetate trihydrate","na":2,"nb":24,"a":[["mapped/Sodium_Acetate3h2o.yaml","Sodium acetate·3H2O"],["mapped/Sodium_Acetate_Trihydrate.yaml","Sodium acetate trihydrate"]],"b":[["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["CHM.yaml","chm"],["DESULFOBACTER_MEDIUM.yaml","desulfobacter_medium"],["DESULFOLUTIVIBRIO_MEDIUM.yaml","desulfolutivibrio_medium"],["DESULFONEMA_ISHIMOTOI_MEDIUM.yaml","desulfonema_ishimotoi_medium"]]},{"id":"CHEBI:17821","l":"thymine","na":2,"nb":22,"a":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Thymine.yaml","Thymine"]],"b":[["2ASW.yaml","2asw"],["2asw__59e92e67.yaml","2asw"],["ASW.yaml","asw"],["Asp2.yaml","asp2"],["CDM_LP.yaml","cdm_lp"],["NLDM_defined.yaml","NLDM_defined"]]},{"id":"CHEBI:41131","l":"crotonic acid","na":2,"nb":21,"a":[["mapped/Crotonic_Acid.yaml","Crotonic acid"],["mapped/Na-crotonate.yaml","Na-crotonate"]],"b":[["ALKALIPHILUS_CROTONATOXIDANS_MEDIUM.yaml","alkaliphilus_crotonatoxidans_medium"],["ALKALIPHILUS_HYDROTHERMALIS_MEDIUM.yaml","alkaliphilus_hydrothermalis_medium"],["DESULFATIRHABDIUM_MEDIUM.yaml","desulfatirhabdium_medium"],["Desulfatirhabdium_Butyrativorans_Medium.yaml","desulfatirhabdium_butyrativorans_medium"],["EUBACTERIUM_OXIDOREDUCENS_MEDIUM.yaml","eubacterium_oxidoreducens_medium"],["MPA_Medium.yaml","mpa_medium"]]},{"id":"CHEBI:66870","l":"sodium dithionite","na":2,"nb":21,"a":[["mapped/Na2s2o4.yaml","Na2S2O4"],["mapped/Sodium_Dithionite.yaml","Sodium dithionite"]],"b":[["ANAEROBACCA_MEDIUM.yaml","anaerobacca_medium"],["DESULFALLAS_MEDIUM.yaml","desulfallas_medium"],["DESULFALLAS_THERMOSAPOVORANS_MEDIUM.yaml","desulfallas_thermosapovorans_medium"],["DESULFOTALEA_PSYCHROPHILA_MEDIUM.yaml","desulfotalea_psychrophila_medium"],["DESULFUROBACTERIUM_MEDIUM.yaml","desulfurobacterium_medium"],["DESULFUROMONAS_PALMITATIS_MEDIUM.yaml","desulfuromonas_palmitatis_medium"]]},{"id":"CHEBI:28645","l":"beta-D-fructofuranose","na":2,"nb":20,"a":[["mapped/Fructooligosaccharides_Fos.yaml","Fructooligosaccharides (FOS)"],["mapped/Fructose.yaml","Fructose"]],"b":[["Clostridium_medium.yaml","clostridium_medium"],["FYP_medium.yaml","fyp_medium"],["Green_Sulfur_Bacterium_Medium.yaml","green_sulfur_bacterium_medium"],["Liquid_Fermentation_Medium.yaml","liquid_fermentation_medium"],["M1D_Medium.yaml","m1d_medium"],["MOORELLA_AN10_MEDIUM.yaml","moorella_an10_medium"]]},{"id":"CHEBI:16235","l":"guanine","na":2,"nb":19,"a":[["mapped/Guanine.yaml","Guanine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["MCD_Medium.yaml","mcd_medium"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"]]},{"id":"CHEBI:6650","l":"malic acid","na":2,"nb":19,"a":[["mapped/Dl-malic_Acid.yaml","DL-Malic acid"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["MELiSSA_defined_Malic_noNitrogen_phosphatebuffered.yaml","MELiSSA defined Malic noNitrogen phosphatebuffered"],["MG_minimal_media.yaml","MG minimal media"],["MG_minimal_media_noCarbon.yaml","MG minimal media noCarbon"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"]]},{"id":"CHEBI:16899","l":"D-mannitol","na":2,"nb":18,"a":[["mapped/D-mannitol.yaml","D-Mannitol"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["HETEROTROPHIC_MEDIUM_H3P.yaml","heterotrophic_medium_h3p"],["MGL.yaml","MGL"],["Modified_YM.yaml","Modified YM"],["NF.yaml","NF"],["NL-CCM.yaml","NL-CCM"],["NLDM_defined.yaml","NLDM_defined"]]},{"id":"CHEBI:15741","l":"succinic acid","na":2,"nb":16,"a":[["mapped/Sodium_Succinate_Dibasic.yaml","Sodium succinate dibasic"],["mapped/Succinic_Acid.yaml","Succinic acid"]],"b":[["AQUASPIRILLUM_MEDIUM_II.yaml","aquaspirillum_medium_ii"],["DESULFUROBACTERIUM_MEDIUM.yaml","desulfurobacterium_medium"],["MAGNETOSPIRILLUM_MEDIUM.yaml","magnetospirillum_medium"],["MG_minimal_media.yaml","MG minimal media"],["MG_minimal_media_noIron.yaml","MG minimal media noIron"],["PETROBACTER_SUCCINIMANDENS_MEDIUM.yaml","petrobacter_succinimandens_medium"]]},{"id":"CHEBI:17596","l":"inosine","na":2,"nb":16,"a":[["mapped/Inosine.yaml","Inosine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["MCD_Medium.yaml","mcd_medium"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:63017","l":"sodium L-tartrate","na":2,"nb":16,"a":[["mapped/Na-tartrate.yaml","Na-tartrate"],["mapped/Sodium_Tartrate.yaml","Sodium tartrate"]],"b":[["BLASTOCOCCUS_AGGREGATUS_MEDIUM.yaml","blastococcus_aggregatus_medium"],["FLEXIBACTER_MEDIUM.yaml","flexibacter_medium"],["MJ_YTCT_MEDIUM.yaml","mj_ytct_medium"],["Medium_for_Freshwater_Flexibacteria.yaml","medium_for_freshwater_flexibacteria"],["Medium_for_Marine_Flexibacteria.yaml","medium_for_marine_flexibacteria"],["Modified_289_medium.yaml","modified_289_medium"]]},{"id":"CHEBI:17750","l":"glycine betaine","na":2,"nb":15,"a":[["mapped/Betaine_Hydrochloride.yaml","Betaine hydrochloride"],["mapped/Betaine_X_H2o.yaml","Betaine x H2O"]],"b":[["CUNICULIPLASMA_MEDIUM.yaml","cuniculiplasma_medium"],["MALEDIVIBACTER_MEDIUM.yaml","maledivibacter_medium"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"]]},{"id":"CHEBI:18222","l":"xylose","na":2,"nb":14,"a":[["mapped/Glucose_Xylose.yaml","Glucose + Xylose"],["mapped/Xylose.yaml","Xylose"]],"b":[["COLON_EXTRACT_MEDIUM.yaml","colon_extract_medium"],["MODIFIED_CALDICELLULOSIRUPTOR_MEDIUM.yaml","modified_caldicellulosiruptor_medium"],["MRSsi.yaml","mrssi"],["Thermotoga_hypogea_medium.yaml","thermotoga_hypogea_medium"],["batch_cultivation_medium_for_a28.yaml","batch_cultivation_medium_for_a28"],["batch_cultivation_medium_for_ta1.yaml","batch_cultivation_medium_for_ta1"]]},{"id":"CHEBI:37166","l":"xylan","na":2,"nb":14,"a":[["mapped/Xylan.yaml","Xylan"],["unmapped/Larchwood_Xylan.yaml","Larchwood xylan"]],"b":[["CLOSTRIDIUM_AEROTOLERANS_MEDIUM.yaml","clostridium_aerotolerans_medium"],["TREPONEMA_THERMOPHILUM_MEDIUM.yaml","treponema_thermophilum_medium"],["VXG_GELLAN.yaml","vxg_gellan"],["XED_Agar.yaml","xed_agar"],["XYLAN_MEDIUM.yaml","xylan_medium"],["Xy_agar.yaml","xy_agar"]]},{"id":"CHEBI:16040","l":"cytosine","na":2,"nb":13,"a":[["mapped/Cytosine.yaml","Cytosine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:18237","l":"glutamic acid","na":2,"nb":13,"a":[["mapped/4_Carbon_Mix.yaml","4 Carbon Mix"],["mapped/Glutamic_Acid.yaml","Glutamic acid"]],"b":[["ACANTHAMOEBA_MEDIUM.yaml","acanthamoeba_medium"],["HALISCOMENOBACTER_MEDIUM.yaml","haliscomenobacter_medium"],["LENTIBACILLUS_MEDIUM.yaml","lentibacillus_medium"],["McAA_formate_No_pABA.yaml","McAA formate No pABA"],["NATRONOBACTERIUM_MEDIUM.yaml","natronobacterium_medium"],["PSA_medium.yaml","psa_medium"]]},{"id":"CHEBI:65327","l":"D-xylose","na":2,"nb":13,"a":[["mapped/D-xylose.yaml","D-Xylose"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["CALDANAEROVIRGA_MEDIUM.yaml","caldanaerovirga_medium"],["HELMUTKOENIGIA_MEDIUM.yaml","helmutkoenigia_medium"],["MAGNETOSPIRILLUM_MEDIUM.yaml","magnetospirillum_medium"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"]]},{"id":"CHEBI:53437","l":"nickel sulfate hexahydrate","na":2,"nb":12,"a":[["mapped/Nickel_II_sulfate_hexahydrate.yaml","Nickel (II) sulfate hexahydrate"],["mapped/Niso4_X_6_H2o.yaml","NiSO4 x 6 H2O"]],"b":[["Dv_base_medium.yaml","Dv base medium"],["LS4D__75fe5623.yaml","LS4D"],["MELiSSA_defined_50mMCarbonate_noCarbon.yaml","MELiSSA defined 50mMCarbonate noCarbon"],["MELiSSA_defined_Malic_noNitrogen_phosphatebuffered.yaml","MELiSSA defined Malic noNitrogen phosphatebuffered"],["MELiSSA_defined_noCarbon.yaml","MELiSSA defined noCarbon"],["MELiSSA_defined_noCarbon_noNitrogen_phosphatebuffered.yaml","MELiSSA defined noCarbon noNitrogen phosphatebuffered"]]},{"id":"CHEBI:63686","l":"sodium succinate hexahydrate","na":2,"nb":12,"a":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Sodium_succinate_dibasic_hexahydrate.yaml","Sodium succinate dibasic hexahydrate"]],"b":[["MOPS_minimal_media_Succinate_noNitrogen.yaml","MOPS minimal media Succinate noNitrogen"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:86477","l":"sodium sulfite","na":2,"nb":12,"a":[["mapped/Na2so3.yaml","Na2SO3"],["mapped/Na2so3_X_5_H2o.yaml","Na2SO3 x 5 H2O"]],"b":[["ARCHAEOGLOBUS_NEPTUNIUS_MEDIUM.yaml","archaeoglobus_neptunius_medium"],["ARCHAEOGLOBUS_VENEFICUS_MEDIUM.yaml","archaeoglobus_veneficus_medium"],["DESULFONATRONOSPIRA_MEDIUM.yaml","desulfonatronospira_medium"],["THERMOANAEROBACTER_MEDIUM.yaml","thermoanaerobacter_medium"],["THERMODESULFITIMONAS_MEDIUM.yaml","thermodesulfitimonas_medium"],["archeoglobus_veneficus_medium.yaml","archeoglobus_veneficus_medium"]]},{"id":"CHEBI:16856","l":"glutathione","na":2,"nb":11,"a":[["mapped/Glutathione.yaml","Glutathione"],["mapped/L-Glutathione.yaml","L-Glutathione"]],"b":[["CDM_LP.yaml","cdm_lp"],["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"],["Modified_D58_medium.yaml","modified_d58_medium"],["SULFOBACILLUS_DISULFIDOOXIDANS_MEDIUM.yaml","sulfobacillus_disulfidooxidans_medium"],["clostridium_thermocellum_medium__d9fc1f82.yaml","clostridium_thermocellum_medium"]]},{"id":"CHEBI:17368","l":"hypoxanthine","na":2,"nb":11,"a":[["mapped/Hypoxanthine.yaml","Hypoxanthine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["CDM_LP.yaml","cdm_lp"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:232425","l":"monosodium L-glutamate hydrate","na":2,"nb":11,"a":[["mapped/Sodium_Glutamate_Monohydrate.yaml","Sodium glutamate monohydrate"],["mapped/Sodium_L-glutamate.yaml","Sodium L-glutamate"]],"b":[["Meiothermus_hypogaeus_MEDIUM.yaml","meiothermus_hypogaeus_medium"],["Modified_Marine_Medium_For_Dethiosulfobacter.yaml","modified_marine_medium_for_dethiosulfobacter"],["halobacteria_starch_medium__4681700b.yaml","halobacteria_starch_medium"],["modified_marine_medium_for_dethiosulfobacter__3e9fd0fe.yaml","modified_marine_medium_for_dethiosulfobacter"],["modified_thermus_sv_medium__55aa403e.yaml","modified_thermus_sv_medium"],["thermus_medium__51bec529.yaml","thermus_medium"]]},{"id":"CHEBI:48607","l":"lithium chloride","na":2,"nb":11,"a":[["mapped/Licl.yaml","LiCl"],["mapped/Lithium_Chloride_Hydrate.yaml","Lithium chloride hydrate"]],"b":[["Chromatium_Medium.yaml","chromatium_medium"],["RECTINEMA_SUBTERRANEUM_MEDIUM.yaml","rectinema_subterraneum_medium"],["modified_1_5_sws_casein_starch_medium.yaml","modified_1_5_sws_casein_starch_medium"],["modified_vy_2_agar.yaml","modified_vy_2_agar"],["obsidian_pool_fermentor_opf_medium_modified_from_m_b_allen_1959.yaml","obsidian_pool_fermentor_opf_medium_modified_from_m_b_allen_1959"],["s88_vitamins.yaml","s88_vitamins"]]},{"id":"CHEBI:17712","l":"9H-xanthine","na":2,"nb":10,"a":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Xanthine.yaml","Xanthine"]],"b":[["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["ZMB.yaml","ZMB"],["ZMB_ALS.yaml","ZMB ALS"]]},{"id":"CHEBI:16349","l":"L-citrulline","na":2,"nb":9,"a":[["mapped/L-citrulline.yaml","L-Citrulline"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"]]},{"id":"CHEBI:16704","l":"uridine","na":2,"nb":9,"a":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Uridine.yaml","Uridine"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"]]},{"id":"CHEBI:31346","l":"calcium sulfate","na":2,"nb":9,"a":[["mapped/Caso4.yaml","CaSO4"],["mapped/Caso4_X_7_H2o.yaml","CaSO4 x 7 H2O"]],"b":[["BEGGIATOA_MEDIUM.yaml","beggiatoa_medium"],["MINERAL_MEDIUM_WITH_GLUCOSE.yaml","mineral_medium_with_glucose"],["THIOTHRIX_MEDIUM.yaml","thiothrix_medium"],["anaerobic_mineral_medium_with_yeast_extract__5d534c46.yaml","anaerobic_mineral_medium_with_yeast_extract"],["anaerotignum_medium__bcb5094d.yaml","anaerotignum_medium"],["mineral_medium_with_glucose__bf4463a4.yaml","mineral_medium_with_glucose"]]},{"id":"CHEBI:39005","l":"2-(N-morpholino)ethanesulfonic acid","na":2,"nb":9,"a":[["mapped/MES_Hydrat.yaml","MES Hydrat"],["mapped/Mes_2-_N-morpholino_Ethane_Sulfonic_Acid.yaml","MES [2-(N-morpholino) ethane sulfonic acid]"]],"b":[["DESULFUROBACTERIUM_ATLANTICUM_MEDIUM.yaml","desulfurobacterium_atlanticum_medium"],["DESULFUROBACTERIUM_CRINIFEX_MEDIUM.yaml","desulfurobacterium_crinifex_medium"],["DESULFUROBACTERIUM_INDICUM_MEDIUM.yaml","desulfurobacterium_indicum_medium"],["DESULFUROBACTERIUM_MEDIUM.yaml","desulfurobacterium_medium"],["Medium_MYGS.yaml","medium_mygs"],["THERMODESULFOBACTERIUM_HYDROGENIPHILUM_MEDIUM.yaml","thermodesulfobacterium_hydrogeniphilum_medium"]]},{"id":"CHEBI:17562","l":"cytidine","na":2,"nb":8,"a":[["mapped/Cytidine.yaml","Cytidine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"]]},{"id":"CHEBI:232797","l":"trehalose dihydrate","na":2,"nb":8,"a":[["mapped/D-trehalose_Dihydrate.yaml","D-Trehalose dihydrate"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["Agro_defined_trehalose.yaml","Agro defined trehalose"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:16335","l":"adenosine","na":2,"nb":7,"a":[["mapped/Adenosine.yaml","Adenosine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"]]},{"id":"CHEBI:16610","l":"spermidine","na":2,"nb":7,"a":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/spermidine.yaml","spermidine"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"]]},{"id":"CHEBI:17201","l":"glycylglycine","na":2,"nb":7,"a":[["mapped/Glycyl-glycine.yaml","Glycyl-glycine"],["mapped/Glycylglycine.yaml","Glycylglycine"]],"b":[["CHLOROFLEXUS_AGGREGANS_MEDIUM.yaml","chloroflexus_aggregans_medium"],["chloroflexus_aggregans_medium__59ae5520.yaml","chloroflexus_aggregans_medium"],["chloroflexus_aggregans_medium__efe0ec46.yaml","chloroflexus_aggregans_medium"],["chloroflexus_medium__cb6e8339.yaml","chloroflexus_medium"],["chloroflexus_medium_modified.yaml","chloroflexus_medium_modified"],["chloroflexus_medium_modified__27d9951e.yaml","chloroflexus_medium_modified"]]},{"id":"CHEBI:17309","l":"pectin","na":2,"nb":7,"a":[["mapped/PY-pectin.yaml","PY-pectin"],["mapped/Pectin.yaml","Pectin"]],"b":[["MEDIUM_FOR_TREPONEMA_PECTINOVORUM.yaml","medium_for_treponema_pectinovorum"],["MODIFIED_OTI_MEDIUM.yaml","modified_oti_medium"],["PPM.yaml","ppm"],["medium_for_treponema_pectinovorum__e5f7afef.yaml","medium_for_treponema_pectinovorum"],["oteb_medium.yaml","oteb_medium"],["pectin_medium__d8bc472f.yaml","pectin_medium"]]},{"id":"CHEBI:39061","l":"ACES","na":2,"nb":7,"a":[["mapped/Aces.yaml","ACES"],["mapped/N-_2-acetamido-2-aminoethanesulfonic_Acid.yaml","N-(2-acetamido)-2-aminoethanesulfonic acid"]],"b":[["BCYE_alpha_agar.yaml","bcye_alpha_agar"],["BM7_MEDIUM.yaml","bm7_medium"],["BOSEA_MEDIUM.yaml","bosea_medium"],["CMM.yaml","cmm"],["GILLIAMELLA_MEDIUM.yaml","gilliamella_medium"],["bcye_agar__8bbb67d5.yaml","bcye_agar"]]},{"id":"ENVO:00002149","l":"sea water","na":7,"nb":2,"a":[["mapped/Filtered_Seawater.yaml","Filtered Seawater"],["mapped/Nacl.yaml","NaCl"],["mapped/Natural_Sea_Water.yaml","Natural sea water"],["mapped/Pasteurized_Seawater.yaml","Pasteurized Seawater"],["mapped/Sea_Water.yaml","Sea water"],["mapped/Seawater.yaml","Seawater"]],"b":[["PE.yaml","pe"],["f_2.yaml","f_2"]]},{"id":"CHEBI:15891","l":"taurine","na":2,"nb":6,"a":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Taurine.yaml","Taurine"]],"b":[["MODIFIED_MV_MEDIUM.yaml","modified_mv_medium"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:18012","l":"fumaric acid","na":2,"nb":6,"a":[["mapped/Corn_Steep_Liquor_Glucose_Fumarate.yaml","Corn Steep Liquor + Glucose + Fumarate"],["mapped/Fumaric_Acid.yaml","Fumaric acid"]],"b":[["Brucella_broth_with_formate_and_fumarate.yaml","brucella_broth_with_formate_and_fumarate"],["TRICHLOROMONAS_MEDIUM.yaml","trichloromonas_medium"],["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"],["jcm_medium_no_1264.yaml","jcm_medium_no_1264"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"],["togo_medium_m1360.yaml","togo_medium_m1360"]]},{"id":"CHEBI:24996","l":"lactate","na":2,"nb":6,"a":[["mapped/Glucose_Lactate.yaml","Glucose + Lactate"],["mapped/Lactate.yaml","Lactate"]],"b":[["ARCOBACTER_ANAEROPHILUS_MEDIUM.yaml","arcobacter_anaerophilus_medium"],["defined_freshwater_medium_cocl2__f0ffbcc6.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__41b1d433.yaml","defined_freshwater_medium_coso4"],["fermentation_medium_lactate_nh4cl.yaml","fermentation_medium_lactate_nh4cl"],["modified_m1_medium_with_20_mm_lactate_pinchuk_et_al.yaml","modified_m1_medium_with_20_mm_lactate_pinchuk_et_al"],["modified_m1_medium_with_lactate_and_glycine_no_nh4cl.yaml","modified_m1_medium_with_lactate_and_glycine_no_nh4cl"]]},{"id":"CHEBI:27592","l":"ectoine","na":2,"nb":6,"a":[["mapped/Ectoine.yaml","Ectoine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["modified_m63_medium_with_ectoine_and_2_5_m_nacl.yaml","modified_m63_medium_with_ectoine_and_2_5_m_nacl"]]},{"id":"CHEBI:506227","l":"N-acetyl-D-glucosamine","na":2,"nb":6,"a":[["mapped/N-acetyl-d-glucosamine.yaml","N-Acetyl-D-glucosamine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["ANAEROBACCA_MEDIUM.yaml","anaerobacca_medium"],["BSK_MEDIUM.yaml","bsk_medium"],["NATRONOARCHAEA_MEDIUM_WITH_GLUCOSAMINE.yaml","natronoarchaea_medium_with_glucosamine"],["barbour_sfoenner_kelly_bsk_ii_medium.yaml","barbour_sfoenner_kelly_bsk_ii_medium"],["m30__354deb2e.yaml","m30"],["modified_bsk_medium__578ddf1c.yaml","modified_bsk_medium"]]},{"id":"CHEBI:62345","l":"L-rhamnose","na":2,"nb":6,"a":[["mapped/L-Rhamnose_Monohydrate.yaml","L-Rhamnose monohydrate"],["mapped/L-rhamnose.yaml","L-Rhamnose"]],"b":[["CLOSTRIDIUM_METHYLPENTOSUM_MEDIUM.yaml","clostridium_methylpentosum_medium"],["clostridium_methylpentosum_medium__906d6f78.yaml","clostridium_methylpentosum_medium"],["freshwater_medium_with_rhamnose__21889617.yaml","freshwater_medium_with_rhamnose"],["liquid_mm_with_rhamnose_hodgson_et_al.yaml","liquid_mm_with_rhamnose_hodgson_et_al"],["minimal_media__805aefdd.yaml","minimal_media"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:15729","l":"L-ornithine","na":2,"nb":5,"a":[["mapped/L-ornithine.yaml","L-Ornithine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:16119","l":"shikimic acid","na":2,"nb":5,"a":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Shikimic_Acid.yaml","Shikimic Acid"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:16750","l":"guanosine","na":2,"nb":5,"a":[["mapped/Guanosine.yaml","Guanosine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:18107","l":"xanthosine","na":2,"nb":5,"a":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Xanthosine.yaml","Xanthosine"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:229203","l":"Trigonelline HCl","na":2,"nb":5,"a":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Trigonelline_HCl.yaml","Trigonelline HCl"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:31404","l":"Citric acid monohydrate","na":2,"nb":5,"a":[["mapped/Citric_Acid_X_H2o.yaml","Citric acid x H2O"],["mapped/Citric_Acidh2o.yaml","Citric Acid•H2O"]],"b":[["Allen_medium.yaml","allen_medium"],["EMA_medium.yaml","ema_medium"],["bg11_ph9_0.yaml","bg11_ph9_0"],["rae_medium__0edae5c3.yaml","rae_medium"],["rae_medium__ed344660.yaml","rae_medium"]]},{"id":"CHEBI:39063","l":"N-tris(hydroxymethyl)methylglycine","na":2,"nb":5,"a":[["mapped/Lithocholic_Acid.yaml","Lithocholic acid"],["mapped/Tricine.yaml","Tricine"]],"b":[["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"],["MOPS_minimal_media_Glucose20mM.yaml","MOPS minimal media Glucose20mM"],["MOPS_minimal_media_Glucose_noNitrogen.yaml","MOPS minimal media Glucose noNitrogen"],["MOPS_minimal_media_Succinate_noNitrogen.yaml","MOPS minimal media Succinate noNitrogen"],["MOPS_minimal_media_noCarbon.yaml","MOPS minimal media noCarbon"]]},{"id":"CHEBI:45996","l":"ribothymidine","na":2,"nb":5,"a":[["mapped/5-methyluridine.yaml","5-methyluridine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:16870","l":"choline alfoscerate","na":2,"nb":4,"a":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Sn-glycero-3-phosphocholine.yaml","sn-glycero-3-phosphocholine"]],"b":[["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:16991","l":"deoxyribonucleic acid","na":2,"nb":4,"a":[["mapped/Deoxyribonucleic_Acid_From_Herring_Sperm.yaml","Deoxyribonucleic acid from herring sperm"],["mapped/Fish-sperm_Dna.yaml","Fish-Sperm DNA"]],"b":[["PH_MEDIUM.yaml","ph_medium"],["sp4_z_medium__eae01184.yaml","sp4_z_medium"],["ureaplasma_medium__abc787f9.yaml","ureaplasma_medium"],["ureaplasma_medium__de7f9c49.yaml","ureaplasma_medium"]]},{"id":"CHEBI:172431","l":"Acetyl-Glu","na":2,"nb":4,"a":[["mapped/N-acetyl-glutamic_Acid.yaml","N-Acetyl-glutamic acid"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:35458","l":"cerium trichloride","na":2,"nb":4,"a":[["mapped/Cecl3.yaml","CeCl3"],["mapped/Cecl3_X_7_H2o.yaml","CeCl3 x 7 H2O"]],"b":[["m39_methylomonas_medium__d2371b94.yaml","m39_methylomonas_medium"],["methyloceanibacter_medium_nacl_danms.yaml","methyloceanibacter_medium_nacl_danms"],["methylotroph_medium__787fcb8b.yaml","methylotroph_medium"],["verrucomicrobium_candidatus_medium_kam1.yaml","verrucomicrobium_candidatus_medium_kam1"]]},{"id":"CHEBI:35704","l":"N(2)-acetyl-L-lysine","na":2,"nb":4,"a":[["mapped/N-acetyl-lysine.yaml","n-Acetyl-lysine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:47966","l":"aldehydo-N-acetylmuramic acid","na":2,"nb":4,"a":[["mapped/N-acetyl-muramic_Acid.yaml","n-Acetyl-muramic acid"],["mapped/N-acetylmuramic_Acid.yaml","N-acetylmuramic acid"]],"b":[["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:66872","l":"potassium fluoride","na":2,"nb":4,"a":[["mapped/Kf.yaml","KF"],["mapped/Potassium_Fluoride.yaml","potassium fluoride"]],"b":[["SULFURIMONAS_JS_MEDIUM.yaml","sulfurimonas_js_medium"],["SULFURIMONAS_TB_MEDIUM.yaml","sulfurimonas_tb_medium"],["ethane_c_medium__2510f74f.yaml","ethane_c_medium"],["sulfurimonas_js_medium__93c986f9.yaml","sulfurimonas_js_medium"]]},{"id":"CHEBI:73685","l":"N(2)-acetylglutamine","na":2,"nb":4,"a":[["mapped/N-acetyl-glutamine.yaml","n-Acetyl-glutamine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:9532","l":"thiamine(1+) diphosphate","na":2,"nb":4,"a":[["mapped/02_Thiamine_Pyrophosphate.yaml","0.2% Thiamine pyrophosphate"],["mapped/Thiamine_pyrophosphate.yaml","Thiamine pyrophosphate"]],"b":[["CTM_MEDIUM.yaml","ctm_medium"],["MODIFIED_NOS_MEDIUM.yaml","modified_nos_medium"],["TREPONEMA_ISOPTEROCOLA_MEDIUM.yaml","treponema_isopterocola_medium"],["glucose_sulfide_medium__486fbf43.yaml","glucose_sulfide_medium"]]},{"id":"CHEBI:16113","l":"cholesterol","na":2,"nb":3,"a":[["mapped/Cholesterol_Lipid_Concentrate.yaml","cholesterol lipid concentrate"],["mapped/cholesterol.yaml","cholesterol"]],"b":[["CDM_LP.yaml","cdm_lp"],["Nematode_growth_medium_agar.yaml","Nematode growth medium agar"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:17909","l":"polysulfur","na":2,"nb":3,"a":[["mapped/Sulfur_Powder.yaml","Sulfur (powder)"],["mapped/Sulphur.yaml","Sulphur"]],"b":[["THERMOCOCCUS_WAIOTAPUENSE_MEDIUM.yaml","thermococcus_waiotapuense_medium"],["desulfurococcus_medium__dbcbba45.yaml","desulfurococcus_medium"],["thermococcus_medium.yaml","thermococcus_medium"]]},{"id":"CHEBI:18139","l":"trimethylamine","na":3,"nb":2,"a":[["mapped/Formatetrimethylamine.yaml","Formate+trimethylamine"],["mapped/H2trimethylamine.yaml","H2+trimethylamine"],["mapped/Trimethylamine.yaml","Trimethylamine"]],"b":[["methanogens_saline_water_medium__61ede417.yaml","methanogens_saline_water_medium"],["sulfate_free_metako_medium__b4a668be.yaml","sulfate_free_metako_medium"]]},{"id":"CHEBI:2682","l":"amphotericin B","na":2,"nb":3,"a":[["mapped/Amphotericin_B.yaml","Amphotericin B"],["unmapped/Amphotericin.yaml","Amphotericin"]],"b":[["HELICOBACTER_MEDIUM.yaml","helicobacter_medium"],["brain_heart_infusion_agar_upplemented_with_10_calf_blood_and_antibiotics.yaml","brain_heart_infusion_agar_upplemented_with_10_calf_blood_and_antibiotics"],["eagles_minimum_essential_medium_mem_containing_antibiotics_and_fetal_bovine_serum.yaml","eagles_minimum_essential_medium_mem_containing_antibiotics_and_fetal_bovine_serum"]]},{"id":"CHEBI:30915","l":"2-oxoglutaric acid","na":3,"nb":2,"a":[["mapped/A-Ketoglutaric_Acid_Disodium_Salt_Hydrate.yaml","a-Ketoglutaric acid disodium salt hydrate"],["mapped/Alpha-ketoglutaric_Acid.yaml","alpha-ketoglutaric acid"],["mapped/Na2_Alpha-ketoglutarate.yaml","Na2 alpha-ketoglutarate"]],"b":[["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"],["medium_for_tick_cells_rickettsia.yaml","medium_for_tick_cells_rickettsia"]]},{"id":"CHEBI:53424","l":"polysorbate 20","na":2,"nb":3,"a":[["mapped/PYG-002_Tween_80.yaml","PYG-0.02% Tween 80"],["mapped/Tween_20.yaml","Tween 20"]],"b":[["RCH2_defined_Tween.yaml","RCH2 defined Tween"],["marine_agar_with_1_tween_20.yaml","marine_agar_with_1_tween_20"],["marine_agar_with_1_tween_20__bda33fd5.yaml","marine_agar_with_1_tween_20"]]},{"id":"CHEBI:82664","l":"iron(0)","na":2,"nb":3,"a":[["mapped/Iron.yaml","Iron"],["mapped/Iron_Powder.yaml","Iron powder"]],"b":[["DESULFOHALOTOMACULUM_MEDIUM.yaml","desulfohalotomaculum_medium"],["THERMODESULFOVIBRIO_MEDIUM_FOR_N1.yaml","thermodesulfovibrio_medium_for_n1"],["desulfosporosinus_acidodurans_medium__6b582775.yaml","desulfosporosinus_acidodurans_medium"]]},{"id":"KEGG:mg2","l":"Cl-","na":2,"nb":3,"a":[["mapped/Magnesium%282%29.yaml","Magnesium(2+)"],["mapped/Magnesium.yaml","Magnesium"]],"b":[["Vogels_Medium_N.yaml","vogels_medium_n"],["tap_auto.yaml","tap_auto"],["tap_hetero_mixo.yaml","tap_hetero_mixo"]]},{"id":"CHEBI:132103","l":"sodium perchlorate","na":2,"nb":2,"a":[["mapped/Sodium_Perchlorate.yaml","Sodium perchlorate"],["mapped/Sodium_Perchlorate_Monohydrate.yaml","Sodium perchlorate monohydrate"]],"b":[["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["fwm_medium_perchlorate.yaml","fwm_medium_perchlorate"]]},{"id":"CHEBI:132766","l":"sodium nitrilotriacetate","na":2,"nb":2,"a":[["mapped/05_M_Nitrilotriacetic_Acid_Disodium_Salt.yaml","0.5 M Nitrilotriacetic acid, disodium salt"],["mapped/Nitrilotriacetic_Acid_Trisodium_Salt.yaml","Nitrilotriacetic acid, trisodium salt"]],"b":[["PEAT_MEDIUM_1_FOR_METHANOREGURA_BOONEI.yaml","peat_medium_1_for_methanoregura_boonei"],["a1_medium__13c8113e.yaml","a1_medium"]]},{"id":"CHEBI:15354","l":"choline","na":2,"nb":2,"a":[["mapped/Choline.yaml","Choline"],["unmapped/Cholinium_Alpha_Ketoglutarate.yaml","Cholinium alpha ketoglutarate"]],"b":[["CDM_LP.yaml","cdm_lp"],["HYPHOMICROBIUM_METHYLOVORUM_MEDIUM.yaml","hyphomicrobium_methylovorum_medium"]]},{"id":"CHEBI:17824","l":"propan-2-ol","na":2,"nb":2,"a":[["mapped/2-propanolCO2.yaml","2-propanol+CO2"],["mapped/Isopropyl_Alcohol.yaml","Isopropyl alcohol"]],"b":[["METHANOGENIUM_CV_MEDIUM.yaml","methanogenium_cv_medium"],["METHANOSPIRILLUM_SK_MEDIUM.yaml","methanospirillum_sk_medium"]]},{"id":"CHEBI:18024","l":"D-galacturonic acid","na":2,"nb":2,"a":[["mapped/D-Galacturonic_Acid_Monohydrate.yaml","D-Galacturonic Acid monohydrate"],["mapped/D-galacturonic_Acid.yaml","D-galacturonic acid"]],"b":[["minimal_media__805aefdd.yaml","minimal_media"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:30746","l":"benzoic acid","na":2,"nb":2,"a":[["mapped/4_Carbon_Mix.yaml","4 Carbon Mix"],["mapped/Benzoic_Acid.yaml","benzoic acid"]],"b":[["UGA_defined_4CarbonMix_Nitrate_anaerobic_pH_7.1.yaml","UGA defined 4CarbonMix Nitrate anaerobic pH 7.1"],["togo_medium_m1949.yaml","togo_medium_m1949"]]},{"id":"CHEBI:34535","l":"ampicillin sodium","na":2,"nb":2,"a":[["mapped/Ampicillin_Sodium_Salt.yaml","Ampicillin sodium salt"],["mapped/Na-ampicillin.yaml","Na-ampicillin"]],"b":[["SINGULISPHAERA_MEDIUM.yaml","singulisphaera_medium"],["paludisphaera_borealis_medium_px4.yaml","paludisphaera_borealis_medium_px4"]]},{"id":"CHEBI:39065","l":"bicine","na":2,"nb":2,"a":[["mapped/Bicine.yaml","Bicine"],["mapped/Bicine_Buffer.yaml","BICINE buffer"]],"b":[["MA.yaml","ma"],["s_heliorestis_medium.yaml","s_heliorestis_medium"]]},{"id":"CHEBI:40957","l":"N,N-bis(2-hydroxyethyl)glycine","na":2,"nb":2,"a":[["mapped/Bicine.yaml","Bicine"],["mapped/Bicine_Buffer.yaml","BICINE buffer"]],"b":[["RV5_MEDIUM.yaml","rv5_medium"],["rv5_medium__aac0ea47.yaml","rv5_medium"]]},{"id":"CHEBI:53471","l":"chromium(III) sulfate","na":2,"nb":2,"a":[["mapped/Cr2_So43_X_N_H2o.yaml","Cr2(SO4)3 x n H2O"],["mapped/CrKSO42_X_12_H2O.yaml","CrKSO42 x 12 H2O"]],"b":[["acidihalobacter_prosperus_f5_medium__0fa15dd8.yaml","acidihalobacter_prosperus_f5_medium"],["ferrous_iron_yeast_extract_medium__a821658e.yaml","ferrous_iron_yeast_extract_medium"]]},{"id":"KEGG:ca2","l":"Molybdenum","na":2,"nb":2,"a":[["mapped/Calcium%282%29.yaml","Calcium(2+)"],["mapped/Calcium.yaml","Calcium"]],"b":[["tap_auto.yaml","tap_auto"],["tap_hetero_mixo.yaml","tap_hetero_mixo"]]},{"id":"CHEBI:8806","l":"Resazurin","na":1,"nb":1604,"a":[["mapped/Resazurin.yaml","Resazurin"]],"b":[["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM.yaml","1_2_sme_medium"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["480G_MEDIUM.yaml","480g_medium"],["480g_medium__e94698e7.yaml","480g_medium"]]},{"id":"CHEBI:76209","l":"sodium sulfide nonahydrate","na":1,"nb":1198,"a":[["mapped/Na2s_X_9_H2o.yaml","Na2S x 9 H2O"]],"b":[["1_2_SME_MEDIUM.yaml","1_2_sme_medium"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["480G_MEDIUM.yaml","480g_medium"],["A1_MEDIUM.yaml","a1_medium"],["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"]]},{"id":"CHEBI:17997","l":"dinitrogen","na":1,"nb":904,"a":[["mapped/Nitrogen_gas.yaml","Nitrogen gas"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_tryptic_soy_broth_anaerobic.yaml","1_2_tryptic_soy_broth_anaerobic"],["480g_medium__e94698e7.yaml","480g_medium"],["8kg_4_medium.yaml","8kg_4_medium"],["ABSS2.yaml","abss2"],["ABYSSISOLIBACTER_MEDIUM.yaml","abyssisolibacter_medium"]]},{"id":"CHEBI:62946","l":"ammonium sulfate","na":1,"nb":816,"a":[["mapped/Nh42so4.yaml","(NH4)2SO4"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM.yaml","1_2_sme_medium"],["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"]]},{"id":"CHEBI:32145","l":"sodium hydroxide","na":1,"nb":689,"a":[["mapped/Naoh.yaml","NaOH"]],"b":[["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["2_x_YT_Medium.yaml","2_x_yt_medium"],["ACETIVIBRIO_ALKALICELLULOSI_MEDIUM.yaml","acetivibrio_alkalicellulosi_medium"],["ACETIVIBRIO_MEDIUM.yaml","acetivibrio_medium"],["ACETOBACTERIUM_DEHALOGENANS_MEDIUM.yaml","acetobacterium_dehalogenans_medium"],["ACETOBACTEROIDES_GLYCINOPHILUS_MEDIUM.yaml","acetobacteroides_glycinophilus_medium"]]},{"id":"CHEBI:91244","l":"cobalt(2+) sulfate heptahydrate","na":1,"nb":495,"a":[["mapped/Coso4_X_7_H2o.yaml","CoSO4 x 7 H2O"]],"b":[["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"],["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["ACETOBACTERIUM_DEHALOGENANS_MEDIUM.yaml","acetobacterium_dehalogenans_medium"],["ACETOBACTERIUM_FIMETARIUM_MEDIUM.yaml","acetobacterium_fimetarium_medium"],["ACETOBACTERIUM_MEDIUM.yaml","acetobacterium_medium"]]},{"id":"CHEBI:63043","l":"potassium nitrate","na":1,"nb":281,"a":[["mapped/Kno3.yaml","KNO3"]],"b":[["A2_MEDIUM.yaml","a2_medium"],["A3.yaml","a3"],["ALCALIGENES_XYLOSOXYDANS_MEDIUM_WITH_BENZOATE.yaml","alcaligenes_xylosoxydans_medium_with_benzoate"],["ALGORIPHAGUS_ALKALIPHILUS_MEDIUM.yaml","algoriphagus_alkaliphilus_medium"],["AMMONIFEX_DEGENSII_MEDIUM.yaml","ammonifex_degensii_medium"],["ANAEROBIC_THAUERA_MEDIUM.yaml","anaerobic_thauera_medium"]]},{"id":"CHEBI:132751","l":"thiamine hydrochloride dihydrate","na":1,"nb":260,"a":[["mapped/Thiamine-hcl_X_2_H2o.yaml","Thiamine-HCl x 2 H2O"]],"b":[["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["ACETOBACTERIUM_TUNDRAE_MEDIUM.yaml","acetobacterium_tundrae_medium"],["ACETOBACTEROIDES_MEDIUM.yaml","acetobacteroides_medium"],["ALGORIPHAGUS_AQUAEDUCTUS_MEDIUM.yaml","algoriphagus_aquaeductus_medium"],["ANAEROBACTERIUM_MEDIUM.yaml","anaerobacterium_medium"]]},{"id":"CHEBI:26836","l":"sulfuric acid","na":1,"nb":220,"a":[["mapped/H2so4.yaml","H2SO4"]],"b":[["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["9K_MEDIUM.yaml","9k_medium"],["A3.yaml","a3"],["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["ACIDIFERROBACTER_MEDIUM.yaml","acidiferrobacter_medium"],["ACIDIFFEROBACTER_MURCIENSIS_MEDIUM.yaml","acidifferobacter_murciensis_medium"]]},{"id":"CHEBI:35176","l":"zinc sulfate","na":1,"nb":198,"a":[["mapped/Zinc_Sulfate.yaml","Zinc sulfate"]],"b":[["7H9.yaml","7H9"],["ANB_aerobic.yaml","anb_aerobic"],["BACTO_MIDDLEBROOK_7H9_BROTH.yaml","bacto_middlebrook_7h9_broth"],["Basic_mineral_medium.yaml","basic_mineral_medium"],["CAMM.yaml","camm"],["CDM_for_Continuous_Cultivation.yaml","cdm_for_continuous_cultivation"]]},{"id":"CHEBI:86463","l":"potassium aluminium sulfate","na":1,"nb":197,"a":[["mapped/Alk_So42.yaml","AlK(SO4)2"]],"b":[["ACIDITHIOBACILLUS_FERRIVORANS_MEDIUM.yaml","acidithiobacillus_ferrivorans_medium"],["ARCHAEOGLOBUS_PROFUNDUS_MEDIUM.yaml","archaeoglobus_profundus_medium"],["AS_medium.yaml","as_medium"],["A_medium.yaml","a_medium"],["C5BEL_MEDIUM.yaml","c5bel_medium"],["DETHIOSULFOVIBRIO_PEPTIDOVORANS_MEDIUM.yaml","dethiosulfovibrio_peptidovorans_medium"]]},{"id":"CHEBI:32035","l":"potassium hydroxide","na":1,"nb":179,"a":[["mapped/Koh.yaml","KOH"]],"b":[["225m1_medium__5109009b.yaml","225m1_medium"],["225m1_medium__936a42af.yaml","225m1_medium"],["ALCALIGENES_XYLOSOXYDANS_MEDIUM_WITH_BENZOATE.yaml","alcaligenes_xylosoxydans_medium_with_benzoate"],["ALKALIPHILUS_CROTONATOXIDANS_MEDIUM.yaml","alkaliphilus_crotonatoxidans_medium"],["BB.yaml","bb"],["BELH1_MEDIUM.yaml","belh1_medium"]]},{"id":"CHEBI:63004","l":"sodium bromide","na":1,"nb":175,"a":[["mapped/Nabr.yaml","NaBr"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mh_medium.yaml","15_mh_medium"],["1_2_SME_MEDIUM.yaml","1_2_sme_medium"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"]]},{"id":"KEGG:btn","l":"","na":1,"nb":149,"a":[["mapped/Biotin.yaml","Biotin"]],"b":[["Asp2.yaml","asp2"],["CAMM.yaml","camm"],["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["FWAFC.yaml","fwafc"],["Gotz_minimal_medium_with_malate.yaml","gotz_minimal_medium_with_malate"]]},{"id":"CHEBI:76181","l":"ferrous ammonium sulfate hexahydrate","na":1,"nb":145,"a":[["mapped/Fe_Nh42_So42_X_6_H2o.yaml","Fe(NH4)2(SO4)2 x 6 H2O"]],"b":[["ACANTHAMOEBA_MEDIUM.yaml","acanthamoeba_medium"],["ACE_MEDIUM.yaml","ace_medium"],["ALKALIPHILUS_CROTONATOXIDANS_MEDIUM.yaml","alkaliphilus_crotonatoxidans_medium"],["ALKALIPHILUS_TRANSVAALENSIS_MEDIUM.yaml","alkaliphilus_transvaalensis_medium"],["ARCHAEOGLOBUS_PROFUNDUS_MEDIUM.yaml","archaeoglobus_profundus_medium"],["ARCHAEOGLOBUS_VENEFICUS_MEDIUM.yaml","archaeoglobus_veneficus_medium"]]},{"id":"CHEBI:36385","l":"strontium dichloride hexahydrate","na":1,"nb":135,"a":[["mapped/Srcl2_X_6_H2o.yaml","SrCl2 x 6 H2O"]],"b":[["1_2_SME_MEDIUM.yaml","1_2_sme_medium"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["1_2_r2a_medium_with_75_artificial_seawater.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["1_2_r2a_medium_with_75_artificial_seawater__5b6dd332.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"]]},{"id":"CHEBI:46756","l":"HEPES","na":1,"nb":130,"a":[["mapped/Hepes.yaml","HEPES"]],"b":[["A2_MEDIUM.yaml","a2_medium"],["ALKALINE_VOGESELLA_MEDIUM.yaml","alkaline_vogesella_medium"],["AURANTIMONAS_MANGANOXYDANS_MEDIUM.yaml","aurantimonas_manganoxydans_medium"],["Allen_medium.yaml","allen_medium"],["BSK_MEDIUM.yaml","bsk_medium"],["CALDICOPROBACTER_MEDIUM.yaml","caldicoprobacter_medium"]]},{"id":"CHEBI:50385","l":"hemin","na":1,"nb":129,"a":[["mapped/Haemin.yaml","Haemin"]],"b":[["ABB.yaml","ABB"],["ACY.yaml","ACY"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["BGDM.yaml","bgdm"],["BHIS.yaml","bhis"],["BHIS_CaCl2.yaml","BHIS_CaCl2"]]},{"id":"CHEBI:3311","l":"calcium carbonate","na":1,"nb":117,"a":[["mapped/Caco3.yaml","CaCO3"]],"b":[["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["2_glucose_yeast_extract_peptone_agar.yaml","2_glucose_yeast_extract_peptone_agar"],["2_glucose_yeast_extract_peptone_agar__32ac0304.yaml","2_glucose_yeast_extract_peptone_agar"],["5_G_MEDIUM.yaml","5_g_medium"],["5_g_medium__8aa8a45a.yaml","5_g_medium"],["6_B_MEDIUM.yaml","6_b_medium"]]},{"id":"CHEBI:63940","l":"sodium tungstate","na":1,"nb":116,"a":[["mapped/Na2wo4.yaml","Na2WO4"]],"b":[["ACETOBACTEROIDES_MEDIUM.yaml","acetobacteroides_medium"],["ALKALIPHILUS_CROTONATOXIDANS_MEDIUM.yaml","alkaliphilus_crotonatoxidans_medium"],["AP11MH_medium.yaml","ap11mh_medium"],["ARCHAEOGLOBUS_FULGIDUS_MEDIUM.yaml","archaeoglobus_fulgidus_medium"],["AS_medium.yaml","as_medium"],["A_medium.yaml","a_medium"]]},{"id":"CHEBI:8346","l":"potassium iodide","na":1,"nb":111,"a":[["mapped/Ki.yaml","KI"]],"b":[["1_2_SME_MEDIUM.yaml","1_2_sme_medium"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["ALKALIPHILIC_THERMOCOCCUS_MEDIUM.yaml","alkaliphilic_thermococcus_medium"],["CALDITHRIX_MEDIUM.yaml","caldithrix_medium"]]},{"id":"CHEBI:9754","l":"tris","na":1,"nb":107,"a":[["mapped/Tris_Base.yaml","Tris base"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["5_salt_water_growth_medium.yaml","5_salt_water_growth_medium"],["70_30_sporulation_medium.yaml","70_30_sporulation_medium"],["ACY.yaml","ACY"],["ALCALIGENES_MEDIUM.yaml","alcaligenes_medium"]]},{"id":"CHEBI:63041","l":"manganese(II) chloride","na":1,"nb":105,"a":[["mapped/Mncl2.yaml","MnCl2"]],"b":[["ANB_aerobic.yaml","anb_aerobic"],["Asp2.yaml","asp2"],["Basic_mineral_medium.yaml","basic_mineral_medium"],["CHITINIVIBRIO_MEDIUM.yaml","chitinivibrio_medium"],["CMM.yaml","cmm"],["Defined_minimal_medium.yaml","defined_minimal_medium"]]},{"id":"KEGG:ribflv","l":"","na":1,"nb":105,"a":[["mapped/Riboflavin.yaml","Riboflavin"]],"b":[["CDM_LP.yaml","cdm_lp"],["FWAFC.yaml","fwafc"],["Gotz_minimal_medium_with_malate.yaml","gotz_minimal_medium_with_malate"],["Gotz_minimal_medium_with_mannitol.yaml","gotz_minimal_medium_with_mannitol"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"]]},{"id":"CHEBI:62965","l":"sodium formate","na":1,"nb":103,"a":[["mapped/Na-formate.yaml","Na-formate"]],"b":[["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["AMMONIFEX_THIOPHILUS_MEDIUM.yaml","ammonifex_thiophilus_medium"],["ANAEROFILUM_MEDIUM.yaml","anaerofilum_medium"],["BTU_MEDIUM.yaml","btu_medium"],["Brucella_broth_with_formate_and_fumarate.yaml","brucella_broth_with_formate_and_fumarate"],["DESULFONATRONOVIBRIO_MEDIUM.yaml","desulfonatronovibrio_medium"]]},{"id":"CHEBI:91258","l":"disodium hydrogenphosphate dihydrate","na":1,"nb":95,"a":[["mapped/Na2hpo4_X_2_H2o.yaml","Na2HPO4 x 2 H2O"]],"b":[["ACANTHAMOEBA_MEDIUM.yaml","acanthamoeba_medium"],["ALKALITHERMOBACTER_MEDIUM.yaml","alkalithermobacter_medium"],["ANAEROBIC_THAUERA_MEDIUM.yaml","anaerobic_thauera_medium"],["ANAEROBRANCA_MEDIUM.yaml","anaerobranca_medium"],["ANNWOODIA_MEDIUM.yaml","annwoodia_medium"],["BACILLUS_SCHLEGELII_HETEROTROPHIC_MEDIUM.yaml","bacillus_schlegelii_heterotrophic_medium"]]},{"id":"CHEBI:32583","l":"calcium sulfate dihydrate","na":1,"nb":90,"a":[["mapped/Caso4_X_2_H2o.yaml","CaSO4 x 2 H2O"]],"b":[["ALGORIPHAGUS_ALKALIPHILUS_MEDIUM.yaml","algoriphagus_alkaliphilus_medium"],["ANOXYBACILLUS_TUNISIENSE_MEDIUM.yaml","anoxybacillus_tunisiense_medium"],["ARTIFICIAL_PILOT_PLANT_WATER_MEDIUM.yaml","artificial_pilot_plant_water_medium"],["ARTIFICIAL_SOIL_AGAR.yaml","artificial_soil_agar"],["Alkaline_halophile_medium.yaml","alkaline_halophile_medium"],["Anaerobic_Mineral_Medium_With_Yeast_Extract.yaml","anaerobic_mineral_medium_with_yeast_extract"]]},{"id":"CHEBI:17836","l":"4-aminobenzoate","na":1,"nb":87,"a":[["mapped/4-aminobenzoate.yaml","4-Aminobenzoate"]],"b":[["Asp2.yaml","asp2"],["CAMM.yaml","camm"],["CDM_LP.yaml","cdm_lp"],["DESULFOMONILE_MEDIUM.yaml","desulfomonile_medium"],["FWAFC.yaml","fwafc"],["Gotz_minimal_medium_with_malate.yaml","gotz_minimal_medium_with_malate"]]},{"id":"CHEBI:86481","l":"sodium thioglycolate","na":1,"nb":86,"a":[["mapped/Na-thioglycolate.yaml","Na-thioglycolate"]],"b":[["ABB.yaml","ABB"],["ACY.yaml","ACY"],["ALKALIPHILUS_MEDIUM.yaml","alkaliphilus_medium"],["AN1_MEDIUM.yaml","an1_medium"],["CATONELLA_UREILYTICA_MEDIUM.yaml","catonella_ureilytica_medium"],["CLOSTRIDIUM_FORMICACETICUM_MEDIUM.yaml","clostridium_formicaceticum_medium"]]},{"id":"CHEBI:64220","l":"monosodium glutamate","na":1,"nb":79,"a":[["mapped/Na_Glutamate.yaml","Na glutamate"]],"b":[["1_ogawa_medium.yaml","1_ogawa_medium"],["1_ogawa_medium__65d0ae34.yaml","1_ogawa_medium"],["ACIDAMINOCOCCUS_FERMENTANS_MEDIUM.yaml","acidaminococcus_fermentans_medium"],["ALKALIBACTERIUM_OLIVAPOVLITICUS.yaml","alkalibacterium_olivapovliticus"],["Alkaline_halophile_medium.yaml","alkaline_halophile_medium"],["BOSEA_THIOOXIDANS_MEDIUM.yaml","bosea_thiooxidans_medium"]]},{"id":"CHEBI:86159","l":"calcium nitrate tetrahydrate","na":1,"nb":74,"a":[["mapped/Ca_No32_X_4_H2o.yaml","Ca(NO3)2 x 4 H2O"]],"b":[["ACIDICALDUS_MEDIUM.yaml","acidicaldus_medium"],["ACIDIPHILIUM_ACIDOPHILUM_MEDIUM.yaml","acidiphilium_acidophilum_medium"],["ACIDITHIOBACILLUS_CALDUS_MEDIUM.yaml","acidithiobacillus_caldus_medium"],["ACIDITHIOBACILLUS_FERRIVORANS_MEDIUM.yaml","acidithiobacillus_ferrivorans_medium"],["ACTINOBACTERIA_MEDIUM.yaml","actinobacteria_medium"],["ARTIFICIAL_SOIL_AGAR.yaml","artificial_soil_agar"]]},{"id":"KEGG:4abz","l":"","na":1,"nb":74,"a":[["mapped/4-aminobenzoate.yaml","4-Aminobenzoate"]],"b":[["Asp2.yaml","asp2"],["CAMM.yaml","camm"],["CDM_LP.yaml","cdm_lp"],["FWAFC.yaml","fwafc"],["Gotz_minimal_medium_with_malate.yaml","gotz_minimal_medium_with_malate"],["Gotz_minimal_medium_with_mannitol.yaml","gotz_minimal_medium_with_mannitol"]]},{"id":"CHEBI:16236","l":"ethanol","na":1,"nb":70,"a":[["mapped/Ethanol.yaml","Ethanol"]],"b":[["ACETOBACTER_PEROXYDANS_MEDIUM.yaml","acetobacter_peroxydans_medium"],["AE_BROTH.yaml","ae_broth"],["ANAEROTIGNUM_NEOPROPIONICUM_MEDIUM.yaml","anaerotignum_neopropionicum_medium"],["Acetobacter_Europaeus_Medium.yaml","acetobacter_europaeus_medium"],["BTU_MEDIUM.yaml","btu_medium"],["CLOSTRIDIUM_KLUYVERI_MEDIUM.yaml","clostridium_kluyveri_medium"]]},{"id":"UBERON:0000955","l":"brain","na":1,"nb":66,"a":[["unmapped/Calf_Brains.yaml","Calf brains"]],"b":[["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"],["1_2_mrs_1_2_bhi_agar.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_mrs_1_2_bhi_agar__56430c33.yaml","1_2_mrs_1_2_bhi_agar"],["70_30_sporulation_medium.yaml","70_30_sporulation_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Anaerobic_Brain_Heart_Infusion_Broth.yaml","anaerobic_brain_heart_infusion_broth"]]},{"id":"CHEBI:86358","l":"manganese(II) sulfate tetrahydrate","na":1,"nb":60,"a":[["mapped/Mnso4_X_4_H2o.yaml","MnSO4 x 4 H2O"]],"b":[["2_5_nacl_gypfk_agar_broth.yaml","2_5_nacl_gypfk_agar_broth"],["ANT.yaml","ant"],["Alkaline_halophile_medium.yaml","alkaline_halophile_medium"],["BEGGIATOA_MEDIUM.yaml","beggiatoa_medium"],["EYGA_MEDIUM.yaml","eyga_medium"],["FYP_medium.yaml","fyp_medium"]]},{"id":"KEGG:glc_D","l":"","na":1,"nb":58,"a":[["mapped/D-glucose.yaml","D-Glucose"]],"b":[["CAMM.yaml","camm"],["CDM_LP.yaml","cdm_lp"],["Calvo_et_al.yaml","calvo_et_al"],["Fry_et_al.yaml","fry_et_al"],["Galani_MM.yaml","galani_mm"],["Kaminskyj_Minimal_Medium.yaml","kaminskyj_minimal_medium"]]},{"id":"CHEBI:30114","l":"aluminium trichloride","na":1,"nb":51,"a":[["mapped/Alcl3.yaml","AlCl3"]],"b":[["CLOSTRIDIUM_ULTUNENSE_MEDIUM.yaml","clostridium_ultunense_medium"],["Chromatium_Medium.yaml","chromatium_medium"],["HALOARCHAEUM_SALINUM_MEDIUM.yaml","haloarchaeum_salinum_medium"],["HALOPHILIC_SOB_MEDIUM.yaml","halophilic_sob_medium"],["HALORHABDUS_MEDIUM.yaml","halorhabdus_medium"],["MALEATE_LIQUID_MEDIUM.yaml","maleate_liquid_medium"]]},{"id":"CHEBI:16135","l":"isobutyric acid","na":1,"nb":49,"a":[["mapped/Isobutyric_Acid.yaml","Isobutyric acid"]],"b":[["ACY.yaml","ACY"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["ANAEROFILUM_MEDIUM.yaml","anaerofilum_medium"],["DESULFONEMA_ISHIMOTOI_MEDIUM.yaml","desulfonema_ishimotoi_medium"],["DESULFUROBACTERIUM_MEDIUM.yaml","desulfurobacterium_medium"]]},{"id":"CHEBI:17418","l":"valeric acid","na":1,"nb":48,"a":[["mapped/Valeric_Acid.yaml","Valeric acid"]],"b":[["ACY.yaml","ACY"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["ANAEROFILUM_MEDIUM.yaml","anaerofilum_medium"],["DESULFUROBACTERIUM_MEDIUM.yaml","desulfurobacterium_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"]]},{"id":"CHEBI:28484","l":"isovaleric acid","na":1,"nb":47,"a":[["mapped/Isovaleric_Acid.yaml","Isovaleric acid"]],"b":[["ACY.yaml","ACY"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["ANAEROFILUM_MEDIUM.yaml","anaerofilum_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"],["METHANOBREVIBACTER_MEDIUM.yaml","methanobrevibacter_medium"]]},{"id":"CHEBI:132112","l":"sodium thiosulfate","na":1,"nb":45,"a":[["mapped/Na2s2o3.yaml","Na2S2O3"]],"b":[["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["ALKALISPIRILLUM_MOBILE_MEDIUM.yaml","alkalispirillum_mobile_medium"],["ANAEROBACULUM_MEDIUM.yaml","anaerobaculum_medium"],["CHROMATIUM_SALEXIGENS_MEDIUM.yaml","chromatium_salexigens_medium"],["ECTOTHIORHODOSPIRA_MAGNA_MEDIUM.yaml","ectothiorhodospira_magna_medium"],["HALOPHILIC_SOB_MEDIUM.yaml","halophilic_sob_medium"]]},{"id":"CHEBI:16199","l":"urea","na":1,"nb":45,"a":[["mapped/Urea.yaml","Urea"]],"b":[["A7_MEDIUM.yaml","a7_medium"],["Agro_defined_trehalose.yaml","Agro defined trehalose"],["BACILLUS_PASTEURII_MEDIUM.yaml","bacillus_pasteurii_medium"],["BM7CO_MEDIUM.yaml","bm7co_medium"],["C41_MEDIUM.yaml","c41_medium"],["CATONELLA_UREILYTICA_MEDIUM.yaml","catonella_ureilytica_medium"]]},{"id":"CHEBI:87009","l":"vanadyl sulfate dihydrate","na":1,"nb":44,"a":[["mapped/Voso4_X_2_H2o.yaml","VOSO4 x 2 H2O"]],"b":[["ATHALASSOTOGA_MEDIUM.yaml","athalassotoga_medium"],["CALDIVIRGA_MEDIUM.yaml","caldivirga_medium"],["CHROMATIUM_TEPIDUM_MEDIUM.yaml","chromatium_tepidum_medium"],["CONEXIVISPHAERA_MEDIUM.yaml","conexivisphaera_medium"],["Caldisphaera_Medium.yaml","caldisphaera_medium"],["FERVIDOBACTERIUM_ISLANDICUM_MEDIUM.yaml","fervidobacterium_islandicum_medium"]]},{"id":"KEGG:thm","l":"","na":1,"nb":42,"a":[["mapped/Thiamine.yaml","Thiamine"]],"b":[["Kaminskyj_Minimal_Medium.yaml","kaminskyj_minimal_medium"],["M9_Lange.yaml","m9_lange"],["MCD_Medium.yaml","mcd_medium"],["Mops_medium.yaml","mops_medium"],["Synthetic_Medium_C.yaml","synthetic_medium_c"],["Synthetic_Medium_with_15_amino_acids.yaml","synthetic_medium_with_15_amino_acids"]]},{"id":"CHEBI:131531","l":"pyridoxamine hydrochloride","na":1,"nb":40,"a":[["mapped/Pyridoxamine_Hydrochloride.yaml","Pyridoxamine hydrochloride"]],"b":[["ANAEROBIC_CHOLESTEROL_MEDIUM.yaml","anaerobic_cholesterol_medium"],["ANAEROBIC_THAUERA_MEDIUM.yaml","anaerobic_thauera_medium"],["CM1A_Halorubrum_Medium.yaml","cm1a_halorubrum_medium"],["GEMMATIMONAS_MEDIUM.yaml","gemmatimonas_medium"],["LYU03_Medium.yaml","lyu03_medium"],["MEDIUM_FOR_CHLORATE_RESPIRERS.yaml","medium_for_chlorate_respirers"]]},{"id":"CHEBI:15356","l":"cysteine","na":1,"nb":40,"a":[["mapped/Cysteine.yaml","Cysteine"]],"b":[["AMB_MEDIUM.yaml","amb_medium"],["Chopped_Meat_Carbohydrate_Medium.yaml","chopped_meat_carbohydrate_medium"],["Chopped_Meat_Carbohydrate_Medium_w_Tween_80.yaml","chopped_meat_carbohydrate_medium_w_tween_80"],["FRANCISELLA_HALIOTICIDA_MEDIUM.yaml","francisella_halioticida_medium"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"]]},{"id":"CHEBI:17905","l":"coenzyme M","na":1,"nb":40,"a":[["mapped/2-mercaptoethanesulfonate.yaml","2-Mercaptoethanesulfonate"]],"b":[["ARCHAEOGLOBUS_INFECTUS_MEDIUM.yaml","archaeoglobus_infectus_medium"],["AROMATOLEUM_MEDIUM.yaml","aromatoleum_medium"],["BACILLUS_INFERNUS_MEDIUM.yaml","bacillus_infernus_medium"],["METHANOHALOPHILUS_PROFUNDI_MEDIUM.yaml","methanohalophilus_profundi_medium"],["METHANOMICROCOCCUS_MEDIUM.yaml","methanomicrococcus_medium"],["METHANONATRONARCHAEUM_MEDIUM.yaml","methanonatronarchaeum_medium"]]},{"id":"KEGG:gly","l":"","na":1,"nb":40,"a":[["mapped/Glycine.yaml","Glycine"]],"b":[["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["RDM.yaml","rdm"]]},{"id":"CHEBI:16709","l":"pyridoxine","na":1,"nb":38,"a":[["mapped/Pyridoxine.yaml","Pyridoxine"]],"b":[["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["4_yaco_media.yaml","4_yaco_media"],["ANB_aerobic.yaml","anb_aerobic"],["AQUASPIRILLUM_MEDIUM.yaml","aquaspirillum_medium"],["BACTO_MIDDLEBROOK_7H9_BROTH.yaml","bacto_middlebrook_7h9_broth"],["Basic_mineral_medium.yaml","basic_mineral_medium"]]},{"id":"CHEBI:18067","l":"phylloquinone","na":1,"nb":38,"a":[["mapped/Vitamin_K1.yaml","Vitamin K1"]],"b":[["BTU_MEDIUM.yaml","btu_medium"],["Brucella_agar_plates_supplemented_with_hemin_and_vitamin_K1.yaml","brucella_agar_plates_supplemented_with_hemin_and_vitamin_k1"],["COLON_EXTRACT_MEDIUM.yaml","colon_extract_medium"],["Chopped_meat_carbohydrates_with_rumen_fluid.yaml","chopped_meat_carbohydrates_with_rumen_fluid"],["EUBACTERIUM_LENTUM_MEDIUM.yaml","eubacterium_lentum_medium"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"]]},{"id":"CHEBI:18320","l":"1,4-dithiothreitol","na":1,"nb":38,"a":[["mapped/Dl-dithiothreitol.yaml","DL-Dithiothreitol"]],"b":[["1_2_tryptic_soy_broth_anaerobe.yaml","1_2_tryptic_soy_broth_anaerobe"],["1_2_tryptic_soy_broth_anaerobic__d70593aa.yaml","1_2_tryptic_soy_broth_anaerobic"],["ARCHAEOGLOBUS_INFECTUS_MEDIUM.yaml","archaeoglobus_infectus_medium"],["ARCHAEOGLOBUS_NEPTUNIUS_MEDIUM.yaml","archaeoglobus_neptunius_medium"],["ARCHAEOGLOBUS_SULFATICALLIDUS_MEDIUM.yaml","archaeoglobus_sulfaticallidus_medium"],["CELLULOSILYTICUM_MEDIUM.yaml","cellulosilyticum_medium"]]},{"id":"CHEBI:91260","l":"disodium malate","na":1,"nb":35,"a":[["mapped/Disodium_Malate.yaml","Disodium Malate"]],"b":[["AZOSPIRILLUM_MEDIUM.yaml","azospirillum_medium"],["CreDm1_MEDIUM.yaml","credm1_medium"],["DESULFUROMONAS_ACETOXIDANS_MEDIUM.yaml","desulfuromonas_acetoxidans_medium"],["DICHOTOMICROBIUM_THERMOHALOPHILUM_MEDIUM.yaml","dichotomicrobium_thermohalophilum_medium"],["ECTOTHIORHODOSPIRA_VACUOLATA_MEDIUM.yaml","ectothiorhodospira_vacuolata_medium"],["HALARCHAEUM_MEDIUM_RS94.yaml","halarchaeum_medium_rs94"]]},{"id":"CHEBI:29864","l":"mannitol","na":1,"nb":34,"a":[["mapped/Mannitol.yaml","Mannitol"]],"b":[["ARTHROBACTER_MEDIUM.yaml","arthrobacter_medium"],["AZOTOBACTER_MEDIUM.yaml","azotobacter_medium"],["Acetobacter_xylinus_Medium.yaml","acetobacter_xylinus_medium"],["Gotz_minimal_medium_with_mannitol.yaml","gotz_minimal_medium_with_mannitol"],["MANNITOL_AGAR.yaml","mannitol_agar"],["MNYP_medium.yaml","mnyp_medium"]]},{"id":"CHEBI:76208","l":"sodium sulfide (anhydrous)","na":1,"nb":33,"a":[["mapped/Na2s.yaml","Na2S"]],"b":[["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["CHITINIVIBRIO_MEDIUM.yaml","chitinivibrio_medium"],["DEFERRIBACTER_DESULFURICANS_MEDIUM.yaml","deferribacter_desulfuricans_medium"],["DESULFURISPIRILLUM_MEDIUM.yaml","desulfurispirillum_medium"],["EBA_MEDIUM.yaml","eba_medium"],["ECTOTHIORHODOSPIRA_ABDELMALEKII_MEDIUM.yaml","ectothiorhodospira_abdelmalekii_medium"]]},{"id":"CHEBI:91243","l":"calcium chloride hexahydrate","na":1,"nb":33,"a":[["mapped/Cacl2_X_6_H2o.yaml","CaCl2 x 6 H2O"]],"b":[["1a_Medium.yaml","1a_medium"],["AQUASPIRILLUM_MEDIUM.yaml","aquaspirillum_medium"],["COLBY_AND_ZATHMAN_MEDIUM.yaml","colby_and_zathman_medium"],["Chemically_defined_medium.yaml","chemically_defined_medium"],["FLB_MEDIUM.yaml","flb_medium"],["HALOPHILIC_METHANOTROPHIC_BACTERIUM_MEDIUM.yaml","halophilic_methanotrophic_bacterium_medium"]]},{"id":"CHEBI:27897","l":"tryptophan","na":1,"nb":32,"a":[["mapped/Tryptophan.yaml","Tryptophan"]],"b":[["4_yaco_media.yaml","4_yaco_media"],["ACIDAMINOCOCCUS_FERMENTANS_MEDIUM.yaml","acidaminococcus_fermentans_medium"],["Fry_et_al.yaml","fry_et_al"],["GLUTAMINE_MEDIUM.yaml","glutamine_medium"],["Leitch_et_al.yaml","leitch_et_al"],["MCD_Medium.yaml","mcd_medium"]]},{"id":"CHEBI:44115","l":"3-(N-morpholino)propanesulfonic acid","na":1,"nb":31,"a":[["mapped/3-_N-morpholinopropanesulfonic_Acid.yaml","3-(N-morpholino)propanesulfonic acid"]],"b":[["CRBTM_UGA_Aerobic_MOPS.yaml","CRBTM UGA Aerobic MOPS"],["CRBTM_UGA_Anaerobic_MOPS.yaml","CRBTM UGA Anaerobic MOPS"],["DM__5ef4e85d.yaml","DM"],["Dsmz_medium_854.yaml","dsmz_medium_854"],["HIPPEA_MEDIUM.yaml","hippea_medium"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"]]},{"id":"KEGG:met-L","l":"","na":1,"nb":31,"a":[["mapped/L-methionine.yaml","L-Methionine"]],"b":[["CDM_LP.yaml","cdm_lp"],["Mops_medium.yaml","mops_medium"],["RDM.yaml","rdm"],["Song_Optimal_CDM.yaml","song_optimal_cdm"],["Song_cdm.yaml","song_cdm"],["Synthetic_Medium_with_15_amino_acids.yaml","synthetic_medium_with_15_amino_acids"]]},{"id":"CHEBI:30729","l":"ethylenediaminetetraacetatoferrate(1-)","na":1,"nb":30,"a":[["mapped/Fe_Iii-edta.yaml","Fe(III)-EDTA"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["AMS_medium.yaml","ams_medium"],["CY_H_LIQUID_MEDIUM_FOR_MYXOBACTERIA.yaml","cy_h_liquid_medium_for_myxobacteria"],["M5G.yaml","M5G"],["METHYLOBACTER_MEDIUM_M10_XCF.yaml","methylobacter_medium_m10_xcf"],["METHYLOCALDUM_MARINUM_MEDIUM.yaml","methylocaldum_marinum_medium"]]},{"id":"CHEBI:22652","l":"ascorbic acid","na":1,"nb":29,"a":[["mapped/Ascorbic_Acid.yaml","Ascorbic acid"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"],["AROMATOLEUM_MEDIUM.yaml","aromatoleum_medium"],["DESULFOHIMALAYA_MEDIUM.yaml","desulfohimalaya_medium"],["DESULFOVIBRIO_MEDIUM.yaml","desulfovibrio_medium"]]},{"id":"CHEBI:87020","l":"vanadyl sulfate hydrate","na":1,"nb":28,"a":[["mapped/Voso4_X_N_H2o.yaml","VOSO4 x n H2O"]],"b":[["AEROBIC_SULFOLOBALES_MEDIUM_WITHOUT_SULFUR.yaml","aerobic_sulfolobales_medium_without_sulfur"],["Acidianus_medium.yaml","acidianus_medium"],["CYS_Medium_For_YMO722.yaml","cys_medium_for_ymo722"],["METALLIBACTERIUM_MEDIUM.yaml","metallibacterium_medium"],["PYROBACULUM_MEDIUM.yaml","pyrobaculum_medium"],["Sulfolobus_tokodaii_Medium.yaml","sulfolobus_tokodaii_medium"]]},{"id":"KEGG:glyc","l":"","na":1,"nb":28,"a":[["mapped/Glycerol.yaml","Glycerol"]],"b":[["CMM.yaml","cmm"],["M9zb_with_glycerol.yaml","m9zb_with_glycerol"],["Pjc_with_glycerol.yaml","pjc_with_glycerol"],["batch_medium_mattanovich_et_al.yaml","batch_medium_mattanovich_et_al"],["bm_in_glycerol_hodgson_et_al.yaml","bm_in_glycerol_hodgson_et_al"],["chemically_defined_fermentation_medium_20g_glucose_20g_glycerol_12_5g_msg.yaml","chemically_defined_fermentation_medium_20g_glucose_20g_glycerol_12_5g_msg"]]},{"id":"CHEBI:46760","l":"tricine","na":1,"nb":27,"a":[["mapped/Tricine.yaml","Tricine"]],"b":[["2ASW.yaml","2asw"],["2asw__59e92e67.yaml","2asw"],["ASW.yaml","asw"],["ASWP.yaml","aswp"],["Mops_medium.yaml","mops_medium"],["NMM_with_acetate.yaml","nmm_with_acetate"]]},{"id":"CHEBI:59640","l":"N-acetylglucosamine","na":1,"nb":27,"a":[["mapped/N-acetylglucosamine.yaml","N-Acetylglucosamine"]],"b":[["LARKINELLA_ARBORICOLA_MEDIUM.yaml","larkinella_arboricola_medium"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"],["MM3.yaml","mm3"],["Modified_M30_Medium.yaml","modified_m30_medium"],["PLANCTOMYCES_MEDIUM_WITH_DOUBLE_CONCENTRATED_ARTIFICAL_SEA_WATER.yaml","planctomyces_medium_with_double_concentrated_artifical_sea_water"],["PLANCTOMYCES_PYREFORMIS_MEDIUM.yaml","planctomyces_pyreformis_medium"]]},{"id":"CHEBI:64700","l":"trimethylamine hydrochloride","na":1,"nb":27,"a":[["mapped/Trimethylamine-hcl.yaml","Trimethylamine-HCl"]],"b":[["ACETOHALOBIUM_MEDIUM.yaml","acetohalobium_medium"],["HS_TMA.yaml","hs_tma"],["METHANOHALOBIUM_MEDIUM.yaml","methanohalobium_medium"],["METHANOHALOPHILUS_EUHALOBIUS_MEDIUM.yaml","methanohalophilus_euhalobius_medium"],["METHANOHALOPHILUS_HALOPHILUS_MEDIUM.yaml","methanohalophilus_halophilus_medium"],["METHANOHALOPHILUS_PORTUCALENSIS_MEDIUM.yaml","methanohalophilus_portucalensis_medium"]]},{"id":"CHEBI:132108","l":"sodium silicate nonahydrate","na":1,"nb":26,"a":[["mapped/Na2sio3_X_9_H2o.yaml","Na2SiO3 x 9 H2O"]],"b":[["Allen_medium.yaml","allen_medium"],["DISSULFURIMICROBIUM_HYDROTHERMALE_MEDIUM.yaml","dissulfurimicrobium_hydrothermale_medium"],["INORGANIC_MINERAL_MEDIUM_WITH_THIOSULFATE.yaml","inorganic_mineral_medium_with_thiosulfate"],["LEUCOTHRIX_MEDIUM.yaml","leucothrix_medium"],["MARINE_AGAR.yaml","marine_agar"],["METHANE_OXIDIZING_BACTERIUM_MEDIUM.yaml","methane_oxidizing_bacterium_medium"]]},{"id":"CHEBI:15366","l":"acetic acid","na":1,"nb":26,"a":[["mapped/Acetic_Acid.yaml","Acetic acid"]],"b":[["ACY.yaml","ACY"],["AE_BROTH.yaml","ae_broth"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Acetobacter_Europaeus_Medium.yaml","acetobacter_europaeus_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"]]},{"id":"CHEBI:29016","l":"arginine","na":1,"nb":26,"a":[["mapped/Arginine.yaml","Arginine"]],"b":[["ACIDAMINOCOCCUS_FERMENTANS_MEDIUM.yaml","acidaminococcus_fermentans_medium"],["EUBACTERIUM_LENTUM_MEDIUM.yaml","eubacterium_lentum_medium"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["MS15_Medium.yaml","ms15_medium"]]},{"id":"CHEBI:30115","l":"aluminium trichloride hexahydrate","na":1,"nb":26,"a":[["mapped/Alcl3_X_6_H2o.yaml","AlCl3 x 6 H2O"]],"b":[["BACILLUS_INFERNUS_MEDIUM.yaml","bacillus_infernus_medium"],["CALDICELLULOSIRUPTOR_OWENSIS_MEDIUM.yaml","caldicellulosiruptor_owensis_medium"],["DISSULFURIMICROBIUM_HYDROTHERMALE_MEDIUM.yaml","dissulfurimicrobium_hydrothermale_medium"],["G5G6_MEDIUM.yaml","g5g6_medium"],["GHIORSEA_MEDIUM.yaml","ghiorsea_medium"],["GRACILIBACILLUS_MEDIUM.yaml","gracilibacillus_medium"]]},{"id":"CHEBI:30772","l":"butyric acid","na":1,"nb":26,"a":[["mapped/Butyric_Acid.yaml","Butyric acid"]],"b":[["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"],["Mega.yaml","Mega"],["RUMEN_BACTERIA_MEDIUM.yaml","rumen_bacteria_medium"],["SELENOMONAS_WG_MEDIUM.yaml","selenomonas_wg_medium"]]},{"id":"CHEBI:31991","l":"phenol red","na":1,"nb":26,"a":[["mapped/Phenol_Red.yaml","Phenol red"]],"b":[["FRIIS_MEDIUM.yaml","friis_medium"],["GUYPARKERIA_HYDROTHERMALIS_MEDIUM.yaml","guyparkeria_hydrothermalis_medium"],["GUYPARKERIA_MEDIUM.yaml","guyparkeria_medium"],["Hayflick_medium.yaml","hayflick_medium"],["M1D_Medium.yaml","m1d_medium"],["Mycoplasma_Medium_with_Sucrose.yaml","mycoplasma_medium_with_sucrose"]]},{"id":"CHEBI:15824","l":"D-fructose","na":1,"nb":25,"a":[["mapped/D-fructose.yaml","D-Fructose"]],"b":[["ACETOBACTERIUM_FIMETARIUM_MEDIUM.yaml","acetobacterium_fimetarium_medium"],["ACETOBACTERIUM_TUNDRAE_MEDIUM.yaml","acetobacterium_tundrae_medium"],["ANAEROCOLUMNA_MEDIUM.yaml","anaerocolumna_medium"],["CLOSTRIDIUM_FORMICACETICUM_MEDIUM.yaml","clostridium_formicaceticum_medium"],["CLOSTRIDIUM_LJUNGDAHLII_MEDIUM.yaml","clostridium_ljungdahlii_medium"],["MOORELLA_THERMOACETICA_MEDIUM.yaml","moorella_thermoacetica_medium"]]},{"id":"CHEBI:16811","l":"methionine","na":1,"nb":25,"a":[["mapped/Dl-methionine.yaml","DL-methionine"]],"b":[["Chamberlain_CDM.yaml","chamberlain_cdm"],["DEINOCOCCUS_MEDIUM.yaml","deinococcus_medium"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["MS13_Medium.yaml","ms13_medium"]]},{"id":"CHEBI:17716","l":"lactose","na":1,"nb":25,"a":[["mapped/Lactose.yaml","Lactose"]],"b":[["1298.yaml","1298"],["ALKALINE_CELLULOSE_AGAR.yaml","alkaline_cellulose_agar"],["Basal_synthetic_medium.yaml","basal_synthetic_medium"],["CLOSTRIDIUM_VINCENTII_MEDIUM.yaml","clostridium_vincentii_medium"],["M17_MEDIUM_FOR_LACTIC_STREPTOCOCCI.yaml","m17_medium_for_lactic_streptococci"],["STREPTOCOCCUS_SUIS_MEDIUM.yaml","streptococcus_suis_medium"]]},{"id":"CHEBI:62947","l":"ammonium acetate","na":1,"nb":25,"a":[["mapped/Ammonium_Acetate.yaml","Ammonium acetate"]],"b":[["ARCOBACTER_ANAEROPHILUS_MEDIUM.yaml","arcobacter_anaerophilus_medium"],["CHROMATIUM_TEPIDUM_MEDIUM.yaml","chromatium_tepidum_medium"],["Green_Sulfur_Bacterium_Medium.yaml","green_sulfur_bacterium_medium"],["MEDIUM_FOR_CHLOROBIUM_FERROOXIDANS.yaml","medium_for_chlorobium_ferrooxidans"],["RHODOBACTER_VELDKAMPII_MEDIUM.yaml","rhodobacter_veldkampii_medium"],["RHODOPSEUDOMONAS_SULFOVIRIDIS_MEDIUM.yaml","rhodopseudomonas_sulfoviridis_medium"]]},{"id":"KEGG:ac","l":"","na":1,"nb":25,"a":[["mapped/Acetate.yaml","Acetate"]],"b":[["FWAFC.yaml","fwafc"],["M9ZB_with_acetate.yaml","m9zb_with_acetate"],["NMM_with_acetate.yaml","nmm_with_acetate"],["acetate_minimal_media_zhao.yaml","acetate_minimal_media_zhao"],["cgc_w_acetate.yaml","cgc_w_acetate"],["cgc_w_acetate_glucose.yaml","cgc_w_acetate_glucose"]]},{"id":"CHEBI:131524","l":"manganese(II) sulfate pentahydrate","na":1,"nb":24,"a":[["mapped/Mnso4_X_5_H2o.yaml","MnSO4 x 5 H2O"]],"b":[["Acidianus_manzaensis_Medium_for_Autotrophic_Growth.yaml","acidianus_manzaensis_medium_for_autotrophic_growth"],["Acidianus_manzaensis_Medium_for_Heterotrophic_Growth.yaml","acidianus_manzaensis_medium_for_heterotrophic_growth"],["COLBY_AND_ZATHMAN_MEDIUM.yaml","colby_and_zathman_medium"],["Glucose_minerals_salts_medium.yaml","glucose_minerals_salts_medium"],["HYDROGENOBACTER_HALOPHILUS_MEDIUM.yaml","hydrogenobacter_halophilus_medium"],["LIQUID_BASAL_MEDIUM_FOR_METHANOSARCINA.yaml","liquid_basal_medium_for_methanosarcina"]]},{"id":"CHEBI:15361","l":"pyruvate","na":1,"nb":24,"a":[["mapped/Pyruvate.yaml","Pyruvate"]],"b":[["ARCOBACTER_ANAEROPHILUS_MEDIUM.yaml","arcobacter_anaerophilus_medium"],["CENTENUM_MEDIUM.yaml","centenum_medium"],["CMM.yaml","cmm"],["NMM_with_pyruvate.yaml","nmm_with_pyruvate"],["ams1_pyruvate_glycine.yaml","ams1_pyruvate_glycine"],["ams1_pyruvate_glycine__08b97e38.yaml","ams1_pyruvate_glycine"]]},{"id":"CHEBI:64205","l":"calcium nitrate","na":1,"nb":23,"a":[["mapped/Ca_No32.yaml","Ca(NO3)2"]],"b":[["9K_MEDIUM.yaml","9k_medium"],["9K_WITH_SULFUR_MEDIUM.yaml","9k_with_sulfur_medium"],["9_K_medium.yaml","9_k_medium"],["9_k_medium__c97a7f66.yaml","9_k_medium"],["9k_medium__4af6025b.yaml","9k_medium"],["ACIDIANUS_BRIERLEYI_MEDIUM.yaml","acidianus_brierleyi_medium"]]},{"id":"CHEBI:113455","l":"sodium benzoate","na":1,"nb":22,"a":[["mapped/Na-benzoate.yaml","Na-benzoate"]],"b":[["ALCALIGENES_XYLOSOXYDANS_MEDIUM_WITH_BENZOATE.yaml","alcaligenes_xylosoxydans_medium_with_benzoate"],["AROMATOLEUM_MEDIUM.yaml","aromatoleum_medium"],["BENZOATE_MEDIUM.yaml","benzoate_medium"],["DESULFALLAS_MEDIUM.yaml","desulfallas_medium"],["DESULFATIRHABDIUM_MEDIUM.yaml","desulfatirhabdium_medium"],["DESULFOCARBO_INDIANENSIS_MEDIUM.yaml","desulfocarbo_indianensis_medium"]]},{"id":"CHEBI:63076","l":"diammonium citrate","na":1,"nb":22,"a":[["mapped/Nh42_Citrate.yaml","(NH4)2 citrate"]],"b":[["Beer_Medium.yaml","beer_medium"],["LACTOBACILLUS_MEDIUM_IV.yaml","lactobacillus_medium_iv"],["LEUCONOSTOC_OENOS_MEDIUM.yaml","leuconostoc_oenos_medium"],["MRS_MEDIUM.yaml","mrs_medium"],["WEISSELA_KOREENSIS_MEDIUM.yaml","weissela_koreensis_medium"],["alkalic_mrs_ph_8_5_3_nacl.yaml","alkalic_mrs_ph_8_5_3_nacl"]]},{"id":"KEGG:asn-L","l":"","na":1,"nb":22,"a":[["mapped/L-asparagine.yaml","L-Asparagine"]],"b":[["CMM.yaml","cmm"],["RDM.yaml","rdm"],["Song_Optimal_CDM.yaml","song_optimal_cdm"],["bl_medium_arg.yaml","bl_medium_arg"],["bl_medium_arg_ser_trp.yaml","bl_medium_arg_ser_trp"],["bl_medium_asp.yaml","bl_medium_asp"]]},{"id":"CHEBI:131395","l":"manganese(II) chloride dihydrate","na":1,"nb":21,"a":[["mapped/Mncl2_X_2_H2o.yaml","MnCl2 x 2 H2O"]],"b":[["ALGORIPHAGUS_AQUAEDUCTUS_MEDIUM.yaml","algoriphagus_aquaeductus_medium"],["DESULFURISPIRILLUM_MEDIUM.yaml","desulfurispirillum_medium"],["HALOANAEROBACTER_SALINARIUS_MEDIUM.yaml","haloanaerobacter_salinarius_medium"],["HALORHODOSPIRA_MEDIUM.yaml","halorhodospira_medium"],["MEDIUM_FOR_ROSEOSPIRA.yaml","medium_for_roseospira"],["MEDIUM_FOR_THIORHODOVIBRIO_FRISIUS.yaml","medium_for_thiorhodovibrio_frisius"]]},{"id":"CHEBI:16410","l":"pyridoxamine","na":1,"nb":21,"a":[["mapped/Pyridoxamine.yaml","Pyridoxamine"]],"b":[["HALORHODOSPIRA_MEDIUM.yaml","halorhodospira_medium"],["MCD_Medium.yaml","mcd_medium"],["MEDIUM_FOR_ROSEOSPIRA.yaml","medium_for_roseospira"],["MEDIUM_WITH_EDTA_AS_CARBON_SOURCE.yaml","medium_with_edta_as_carbon_source"],["MINERAL_MEDIUM_WITH_SULFOBENZOIC_ACID.yaml","mineral_medium_with_sulfobenzoic_acid"],["MS10R_Medium.yaml","ms10r_medium"]]},{"id":"CHEBI:16454","l":"pantothenate","na":1,"nb":21,"a":[["mapped/Pantothenate.yaml","Pantothenate"]],"b":[["CDM_LP.yaml","cdm_lp"],["DSM_135_medium.yaml","dsm_135_medium"],["Galani_MM.yaml","galani_mm"],["HALORHODOSPIRA_MEDIUM.yaml","halorhodospira_medium"],["MEDIUM_FOR_HJ250.yaml","medium_for_hj250"],["MEDIUM_FOR_ROSEOSPIRA.yaml","medium_for_roseospira"]]},{"id":"CHEBI:22653","l":"asparagine","na":1,"nb":21,"a":[["mapped/Asparagine.yaml","Asparagine"]],"b":[["CDM_LP.yaml","cdm_lp"],["HALOACTINOMYCES_HALOPHILUS_MEDIUM.yaml","haloactinomyces_halophilus_medium"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["MYKORRHIZA_MEDIUM.yaml","mykorrhiza_medium"]]},{"id":"CHEBI:30742","l":"ethylene glycol","na":1,"nb":21,"a":[["mapped/Ethylene_Glycol.yaml","Ethylene glycol"]],"b":[["acetobacterium_medium_marine.yaml","acetobacterium_medium_marine"],["bm_in_arabinose_hodgson_et_al.yaml","bm_in_arabinose_hodgson_et_al"],["bm_in_cellobiose_hodgson_et_al.yaml","bm_in_cellobiose_hodgson_et_al"],["bm_in_fructose_hodgson_et_al.yaml","bm_in_fructose_hodgson_et_al"],["bm_in_galactose_hodgson_et_al.yaml","bm_in_galactose_hodgson_et_al"],["bm_in_glucose_hodgson_et_al.yaml","bm_in_glucose_hodgson_et_al"]]},{"id":"CHEBI:30768","l":"propionic acid","na":1,"nb":21,"a":[["mapped/Propionic_Acid.yaml","Propionic acid"]],"b":[["ACY.yaml","ACY"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"],["MEDIUM_10.yaml","medium_10"],["Mega.yaml","Mega"]]},{"id":"CHEBI:36272","l":"tungstic acid","na":1,"nb":21,"a":[["mapped/H2wo4.yaml","H2WO4"]],"b":[["MJAIS_MEDIUM.yaml","mjais_medium"],["MJYTFSH_MEDIUM.yaml","mjytfsh_medium"],["MMJH_MEDIUM.yaml","mmjh_medium"],["MMJY_MEDIUM.yaml","mmjy_medium"],["MMJ_MEDIUM.yaml","mmj_medium"],["MODIFIED_MMJHS_MEDIUM_FOR_GO25.yaml","modified_mmjhs_medium_for_go25"]]},{"id":"KEGG:leu-L","l":"","na":1,"nb":21,"a":[["mapped/L-leucine.yaml","L-Leucine"]],"b":[["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["Hypertonic_medium.yaml","hypertonic_medium"],["Mops_medium.yaml","mops_medium"],["RDM.yaml","rdm"]]},{"id":"CHEBI:63037","l":"triammonium citrate","na":1,"nb":20,"a":[["mapped/Nh43_Citrate.yaml","(NH4)3 citrate"]],"b":[["AUREOBACTERIUM_TERREGENS_MEDIUM.yaml","aureobacterium_terregens_medium"],["MODIFIED_MEDIUM_11.yaml","modified_medium_11"],["MRS.yaml","MRS"],["MRS_agar_slants.yaml","mrs_agar_slants"],["MRS_noGlucose.yaml","MRS_noGlucose"],["MRS_recovery.yaml","MRS_recovery"]]},{"id":"KEGG:pro-L","l":"","na":1,"nb":20,"a":[["mapped/L-proline.yaml","L-Proline"]],"b":[["CDM_LP.yaml","cdm_lp"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["Mops_medium.yaml","mops_medium"],["RDM.yaml","rdm"],["Song_Optimal_CDM.yaml","song_optimal_cdm"],["Synthetic_Medium_with_15_amino_acids.yaml","synthetic_medium_with_15_amino_acids"]]},{"id":"KEGG:pyr","l":"","na":1,"nb":20,"a":[["mapped/Pyruvate.yaml","Pyruvate"]],"b":[["CMM.yaml","cmm"],["NMM_with_pyruvate.yaml","nmm_with_pyruvate"],["ams1_pyruvate_glycine.yaml","ams1_pyruvate_glycine"],["ams1_pyruvate_glycine__08b97e38.yaml","ams1_pyruvate_glycine"],["ams1_pyruvate_glycine__625e5170.yaml","ams1_pyruvate_glycine"],["ams1_pyruvate_glycine__754df6b3.yaml","ams1_pyruvate_glycine"]]},{"id":"CHEBI:113451","l":"sodium ascorbate","na":1,"nb":19,"a":[["mapped/Na-ascorbate.yaml","Na-ascorbate"]],"b":[["ALKALIPHILUS_MEDIUM.yaml","alkaliphilus_medium"],["CLOSTRIDUM_G4_MEDIUM.yaml","clostridum_g4_medium"],["Chromatium_Medium.yaml","chromatium_medium"],["GEOANAEROBACTER_MEDIUM.yaml","geoanaerobacter_medium"],["GILLIAMELLA_MEDIUM.yaml","gilliamella_medium"],["HELIOBACTERIUM_CHLORUM_MEDIUM.yaml","heliobacterium_chlorum_medium"]]},{"id":"CHEBI:131529","l":"pyridoxal hydrochloride","na":1,"nb":19,"a":[["mapped/Pyridoxal_Hydrochloride.yaml","Pyridoxal hydrochloride"]],"b":[["AROMATOLEUM_MEDIUM.yaml","aromatoleum_medium"],["CDM_LP.yaml","cdm_lp"],["ECTOTHIORHODOSPIRA_ABDELMALEKII_MEDIUM.yaml","ectothiorhodospira_abdelmalekii_medium"],["ECTOTHIORHODOSPIRA_VACUOLATA_MEDIUM.yaml","ectothiorhodospira_vacuolata_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"],["HELMUTKOENIGIA_MEDIUM.yaml","helmutkoenigia_medium"]]},{"id":"CHEBI:26271","l":"proline","na":1,"nb":19,"a":[["mapped/Proline.yaml","Proline"]],"b":[["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["cdm_lab_medium.yaml","cdm_lab_medium"],["complete_chemically_defined_medium.yaml","complete_chemically_defined_medium"],["minimal_chemically_defined_medium_his_pro_letort_2001.yaml","minimal_chemically_defined_medium_his_pro_letort_2001"]]},{"id":"CHEBI:53438","l":"iron(3+) sulfate","na":1,"nb":19,"a":[["mapped/Fe2_So43_X_N_H2o.yaml","Fe2(SO4)3 x n H2O"]],"b":[["METHYLOTHERMUS_MEDIUM.yaml","methylothermus_medium"],["geobacter_nbaf_medium__db485dcd.yaml","geobacter_nbaf_medium"],["inorganic_mineral_medium_with_thiosulfate__dc790b06.yaml","inorganic_mineral_medium_with_thiosulfate"],["methane_oxidizing_bacterium_medium__df2e85e2.yaml","methane_oxidizing_bacterium_medium"],["methanopyrus_medium_for_strain_116__7463935f.yaml","methanopyrus_medium_for_strain_116"],["methylococcaceae_in20_medium__21a79f39.yaml","methylococcaceae_in20_medium"]]},{"id":"CHEBI:85248","l":"gellan gum","na":1,"nb":19,"a":[["mapped/Gelrite.yaml","Gelrite"]],"b":[["CYS_MEDIUM_WITH_MODIFIED_NACL_CONCENTRATION.yaml","cys_medium_with_modified_nacl_concentration"],["R2A_Gellan_gum_Plate.yaml","r2a_gellan_gum_plate"],["VXG_GELLAN.yaml","vxg_gellan"],["alkaline_clostridial_nutrient_medium__228e3011.yaml","alkaline_clostridial_nutrient_medium"],["alkaliphiles_pirellula_medium_m1.yaml","alkaliphiles_pirellula_medium_m1"],["alkaliphiles_pirellula_medium_m1apy.yaml","alkaliphiles_pirellula_medium_m1apy"]]},{"id":"CHEBI:91245","l":"copper(II) chloride pentahydrate","na":1,"nb":19,"a":[["mapped/Cucl2_X_5_H2o.yaml","CuCl2 x 5 H2O"]],"b":[["ACIDOSOMA_MEDIUM.yaml","acidosoma_medium"],["ANB_aerobic.yaml","anb_aerobic"],["Basic_mineral_medium.yaml","basic_mineral_medium"],["Halorutilales_haloarchaeon_medium.yaml","halorutilales_haloarchaeon_medium"],["METHYLOCAPSA_ACIDOPHILA_MEDIUM.yaml","methylocapsa_acidophila_medium"],["METHYLOCAPSA_AUREA_MEDIUM.yaml","methylocapsa_aurea_medium"]]},{"id":"KEGG:arg-L","l":"","na":1,"nb":19,"a":[["mapped/L-arginine.yaml","L-Arginine"]],"b":[["CMM.yaml","cmm"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["RDM.yaml","rdm"],["Synthetic_Medium_with_15_amino_acids.yaml","synthetic_medium_with_15_amino_acids"],["Synthetic_medium.yaml","synthetic_medium"],["aam.yaml","aam"]]},{"id":"CHEBI:26806","l":"succinate","na":1,"nb":18,"a":[["mapped/Succinate.yaml","Succinate"]],"b":[["LSG_Medium.yaml","lsg_medium"],["M9ZB_with_succinate.yaml","m9zb_with_succinate"],["MSYS_MEDIUM.yaml","msys_medium"],["NMM_with_succinate.yaml","nmm_with_succinate"],["PJC_with_succinate.yaml","pjc_with_succinate"],["SUCCINATE_MINERAL_MEDIUM.yaml","succinate_mineral_medium"]]},{"id":"CHEBI:30627","l":"molybdenum trioxide","na":1,"nb":18,"a":[["mapped/Moo3.yaml","MoO3"]],"b":[["HYDROGENOBACTER_ACIDOPHILUS_MEDIUM.yaml","hydrogenobacter_acidophilus_medium"],["HYDROGENOBACTER_HALOPHILUS_MEDIUM.yaml","hydrogenobacter_halophilus_medium"],["HYDROGENOBACTER_THERMOPHILUS_MEDIUM.yaml","hydrogenobacter_thermophilus_medium"],["Inorganic_medium.yaml","inorganic_medium"],["Isolation_medium.yaml","isolation_medium"],["MEDIUM_125_WITH_METHANOL.yaml","medium_125_with_methanol"]]},{"id":"CHEBI:64103","l":"sodium butyrate","na":1,"nb":18,"a":[["mapped/Na-butyrate.yaml","Na-butyrate"]],"b":[["DESULFALLAS_THERMOSAPOVORANS_MEDIUM.yaml","desulfallas_thermosapovorans_medium"],["DESULFOBACTERIUM_CETONICUM_MEDIUM.yaml","desulfobacterium_cetonicum_medium"],["DESULFOCELLA_MEDIUM.yaml","desulfocella_medium"],["DESULFOFARCIMEN_MEDIUM.yaml","desulfofarcimen_medium"],["DESULFOSARCINA_CETONICA_MEDIUM.yaml","desulfosarcina_cetonica_medium"],["DESULFOTHERMUS_NAPHTHAE_MEDIUM.yaml","desulfothermus_naphthae_medium"]]},{"id":"CHEBI:18186","l":"tyrosine","na":1,"nb":17,"a":[["mapped/DL-Tyrosine.yaml","DL-Tyrosine"]],"b":[["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["Synthetic_Medium_C.yaml","synthetic_medium_c"],["complete_chemically_defined_medium.yaml","complete_chemically_defined_medium"],["fermentation_medium_glucose_tyrosine.yaml","fermentation_medium_glucose_tyrosine"]]},{"id":"CHEBI:63051","l":"diammonium hydrogen phosphate","na":1,"nb":17,"a":[["mapped/Nh42hpo4.yaml","(NH4)2HPO4"]],"b":[["ARHODOMONAS_MEDIUM_RS91.yaml","arhodomonas_medium_rs91"],["BENZOATE_MEDIUM.yaml","benzoate_medium"],["HYPHOMICROBIUM_METHYLOVORUM_MEDIUM.yaml","hyphomicrobium_methylovorum_medium"],["KR_Medium.yaml","kr_medium"],["MEDIUM_GY_VL55.yaml","medium_gy_vl55"],["MEDIUM_VL55.yaml","medium_vl55"]]},{"id":"CHEBI:78870","l":"sodium nitrite","na":1,"nb":17,"a":[["mapped/Nano2.yaml","NaNO2"]],"b":[["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["Autotrophic_Nitrobacter_Medium.yaml","autotrophic_nitrobacter_medium"],["HETEROTROPHIC_NITROBACTER_MEDIUM.yaml","heterotrophic_nitrobacter_medium"],["MIXOTROPHIC_NITROBACTER_MEDIUM.yaml","mixotrophic_nitrobacter_medium"],["MODIFIED_THIOCAPSA_MEDIUM.yaml","modified_thiocapsa_medium"],["Medium_for_nitrite_oxidizer.yaml","medium_for_nitrite_oxidizer"]]},{"id":"KEGG:ile-L","l":"","na":1,"nb":17,"a":[["mapped/L-isoleucine.yaml","L-Isoleucine"]],"b":[["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["Mops_medium.yaml","mops_medium"],["RDM.yaml","rdm"],["Synthetic_Medium_with_15_amino_acids.yaml","synthetic_medium_with_15_amino_acids"],["Synthetic_medium.yaml","synthetic_medium"]]},{"id":"CHEBI:131532","l":"pyridoxamine dihydrochloride","na":1,"nb":16,"a":[["mapped/Pyridoxamine_Dihydrochloride.yaml","Pyridoxamine Dihydrochloride"]],"b":[["Dsmz_medium_854.yaml","dsmz_medium_854"],["HYPHOMICROBIUM_MEDIUM_SAF.yaml","hyphomicrobium_medium_saf"],["LC_medium.yaml","lc_medium"],["LENTIMONAS_MEDIUM.yaml","lentimonas_medium"],["MARINIFILUM_MEDIUM.yaml","marinifilum_medium"],["ZMB.yaml","ZMB"]]},{"id":"CHEBI:131378","l":"ferrous ammonium sulfate heptahydrate","na":1,"nb":15,"a":[["mapped/Fe_Nh42_So42_X_7_H2o.yaml","Fe(NH4)2(SO4)2 x 7 H2O"]],"b":[["ARCHAEOGLOBUS_FULGIDUS_MEDIUM.yaml","archaeoglobus_fulgidus_medium"],["ARCHAEOGLOBUS_MEDIUM.yaml","archaeoglobus_medium"],["DEFERRIBACTER_AUTOTROPHICUS_MEDIUM.yaml","deferribacter_autotrophicus_medium"],["Elusimicrobium_minutum_medium.yaml","elusimicrobium_minutum_medium"],["METHANOSPHAERA_CUNICULI_MEDIUM.yaml","methanosphaera_cuniculi_medium"],["Thermosipho_africanus_medium.yaml","thermosipho_africanus_medium"]]},{"id":"CHEBI:132106","l":"sodium propionate","na":1,"nb":15,"a":[["mapped/Na-propionate.yaml","Na-propionate"]],"b":[["DESULFOBULBUS_MEDIUM.yaml","desulfobulbus_medium"],["DESULFOFABA_HANSENII_MEDIUM.yaml","desulfofaba_hansenii_medium"],["DESULFOFABA_MEDIUM.yaml","desulfofaba_medium"],["DESULFORHABDUS_AMNIGENA_MEDIUM.yaml","desulforhabdus_amnigena_medium"],["DESULFOSALSIMONAS_MEDIUM.yaml","desulfosalsimonas_medium"],["DPM_MEDIUM.yaml","dpm_medium"]]},{"id":"CHEBI:18246","l":"(1->4)-beta-D-glucan","na":1,"nb":15,"a":[["mapped/Cellulose.yaml","Cellulose"]],"b":[["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["CLOSTRIDIUM_CELLULOVORANS_MEDIUM.yaml","clostridium_cellulovorans_medium"],["Clostridium_Cellulolytic_medium.yaml","clostridium_cellulolytic_medium"],["HALOCELLA_CELLULOLYTICA_MEDIUM.yaml","halocella_cellulolytica_medium"],["RUMINICLOSTRIDIUM_CELLOBIOPARUM_MEDIUM.yaml","ruminiclostridium_cellobioparum_medium"],["RUMINICLOSTRIDIUM_PAPYROSOLVENS_MEDIUM.yaml","ruminiclostridium_papyrosolvens_medium"]]},{"id":"CHEBI:2511","l":"agarose","na":1,"nb":15,"a":[["mapped/Agarose.yaml","Agarose"]],"b":[["ferriphaselus_es_medium.yaml","ferriphaselus_es_medium"],["freshwater_iron_oxidizing_bacteria_medium.yaml","freshwater_iron_oxidizing_bacteria_medium"],["freshwater_iron_oxidizing_bacteria_medium__ab2f29b3.yaml","freshwater_iron_oxidizing_bacteria_medium"],["gallionella_es_medium.yaml","gallionella_es_medium"],["leptospira_medium.yaml","leptospira_medium"],["leptospira_medium__ec2c2794.yaml","leptospira_medium"]]},{"id":"KEGG:succ","l":"","na":1,"nb":15,"a":[["mapped/Succinate.yaml","Succinate"]],"b":[["LSG_Medium.yaml","lsg_medium"],["M9ZB_with_succinate.yaml","m9zb_with_succinate"],["NMM_with_succinate.yaml","nmm_with_succinate"],["PJC_with_succinate.yaml","pjc_with_succinate"],["liquid_ma_minimal_media_succinate_urea_ammonia.yaml","liquid_ma_minimal_media_succinate_urea_ammonia"],["minimal_medium_lostroh_et_al.yaml","minimal_medium_lostroh_et_al"]]},{"id":"KEGG:val-L","l":"","na":1,"nb":15,"a":[["mapped/L-valine.yaml","L-Valine"]],"b":[["CDM_LP.yaml","cdm_lp"],["Mops_medium.yaml","mops_medium"],["RDM.yaml","rdm"],["Synthetic_Medium_with_15_amino_acids.yaml","synthetic_medium_with_15_amino_acids"],["aam.yaml","aam"],["bl_medium_arg.yaml","bl_medium_arg"]]},{"id":"CHEBI:184335","l":"Ammonium bicarbonate","na":1,"nb":14,"a":[["mapped/Nh4hco3.yaml","NH4HCO3"]],"b":[["ALICYCLIPHILUS_DENITRIFICANS_MEDIUM.yaml","alicycliphilus_denitrificans_medium"],["G5G6_MEDIUM.yaml","g5g6_medium"],["GEORGFUCHSIA_MEDIUM.yaml","georgfuchsia_medium"],["NITROLANCETUS_MEDIUM.yaml","nitrolancetus_medium"],["PSEUDOMONAS_CHLOROTIDISMUTANS_MEDIUM.yaml","pseudomonas_chlorotidismutans_medium"],["SEDIMENTIBACTER_SAALENSIS_MEDIUM.yaml","sedimentibacter_saalensis_medium"]]},{"id":"CHEBI:24848","l":"inositol","na":1,"nb":14,"a":[["mapped/Inositol.yaml","Inositol"]],"b":[["2asw__59e92e67.yaml","2asw"],["ABSS2.yaml","abss2"],["BAF_Medium.yaml","baf_medium"],["HYPHOMICROBIUM_METHYLOVORUM_MEDIUM.yaml","hyphomicrobium_methylovorum_medium"],["NAV_medium.yaml","nav_medium"],["THERMOACTINOMYCES_MEDIUM.yaml","thermoactinomyces_medium"]]},{"id":"CHEBI:26642","l":"selenous acid","na":1,"nb":14,"a":[["mapped/H2seo3.yaml","H2SeO3"]],"b":[["MJTSO_MEDIUM.yaml","mjtso_medium"],["MSF_medium.yaml","msf_medium"],["PERSEPHONELLA_MEDIUM.yaml","persephonella_medium"],["PLANCTOMYCES_MEDIUM_WITH_DOUBLE_CONCENTRATED_ARTIFICAL_SEA_WATER.yaml","planctomyces_medium_with_double_concentrated_artifical_sea_water"],["Planctomyces_medium_DSMZ1560.yaml","Planctomyces medium DSMZ1560"],["V2_MEDIUM.yaml","v2_medium"]]},{"id":"CHEBI:28971","l":"ampicillin","na":1,"nb":14,"a":[["mapped/Ampicillin.yaml","Ampicillin"]],"b":[["2_5_nacl_heart_infusion_hi_medium.yaml","2_5_nacl_heart_infusion_hi_medium"],["PPLO_broth.yaml","pplo_broth"],["brain_heart_infusion_bhi_medium_supplemented_with_antibiotics.yaml","brain_heart_infusion_bhi_medium_supplemented_with_antibiotics"],["dehalogenimonas_medium__6a926cbc.yaml","dehalogenimonas_medium"],["ip3_3_medium__726cb47b.yaml","ip3_3_medium"],["lb_agar_supplemented_with_ampicillin.yaml","lb_agar_supplemented_with_ampicillin"]]},{"id":"CHEBI:86466","l":"potassium tetrathionate","na":1,"nb":14,"a":[["mapped/K2s4o6.yaml","K2S4O6"]],"b":[["ACIDIHALOBACTER_MEDIUM.yaml","acidihalobacter_medium"],["ACIDIHALOBACTER_PROSPERUS_F5_MEDIUM.yaml","acidihalobacter_prosperus_f5_medium"],["ACIDITHIOBACILLUS_FERRIVORANS_MEDIUM.yaml","acidithiobacillus_ferrivorans_medium"],["ALICYCLOBACILLUS_FERROOXYDANS_MEDIUM.yaml","alicyclobacillus_ferrooxydans_medium"],["THERMITHIOBACILLUS_MEDIUM.yaml","thermithiobacillus_medium"],["acidiferrobacter_medium__9d43544a.yaml","acidiferrobacter_medium"]]},{"id":"CHEBI:131394","l":"magnesium dichloride dihydrate","na":1,"nb":13,"a":[["mapped/Mgcl2_X_2_H2o.yaml","MgCl2 x 2 H2O"]],"b":[["ALCANIVORAX_BORKUMENSIS_MEDIUM.yaml","alcanivorax_borkumensis_medium"],["Chemically_defined_medium.yaml","chemically_defined_medium"],["DESULFITOBACTERIUM_MEDIUM.yaml","desulfitobacterium_medium"],["KOSMOTOGA_OLEARIA_MEDIUM.yaml","kosmotoga_olearia_medium"],["desulfitobacterium_medium__9eabf335.yaml","desulfitobacterium_medium"],["ktm_medium__85e9a2b8.yaml","ktm_medium"]]},{"id":"CHEBI:29073","l":"L-ascorbic acid","na":1,"nb":13,"a":[["mapped/L-ascorbic_Acid.yaml","L-Ascorbic acid"]],"b":[["CTM_MEDIUM.yaml","ctm_medium"],["MG_minimal_media.yaml","MG minimal media"],["MG_minimal_media_noCarbon.yaml","MG minimal media noCarbon"],["MG_minimal_media_noIron.yaml","MG minimal media noIron"],["THERMODESULFOVIBRIO_MEDIUM_FOR_N1.yaml","thermodesulfovibrio_medium_for_n1"],["THERMODESULFOVIBRIO_YELLOWSTONII_MEDIUM.yaml","thermodesulfovibrio_yellowstonii_medium"]]},{"id":"CHEBI:81862","l":"potassium hydrogencarbonate","na":1,"nb":13,"a":[["mapped/Khco3.yaml","KHCO3"]],"b":[["ANAEROTIGNUM_NEOPROPIONICUM_MEDIUM.yaml","anaerotignum_neopropionicum_medium"],["METHANOTHRIX_MEDIUM.yaml","methanothrix_medium"],["Methanosaeta_Brevibacterium_Medium.yaml","methanosaeta_brevibacterium_medium"],["Methanosaeta_harundinacea_medium.yaml","methanosaeta_harundinacea_medium"],["PELOBACTER_ACIDIGALLICI_MEDIUM.yaml","pelobacter_acidigallici_medium"],["SULFURIMONAS_JS_MEDIUM.yaml","sulfurimonas_js_medium"]]},{"id":"KEGG:ser-L","l":"","na":1,"nb":13,"a":[["mapped/L-serine.yaml","L-Serine"]],"b":[["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["RDM.yaml","rdm"],["Song_Optimal_CDM.yaml","song_optimal_cdm"],["Synthetic_Medium_with_15_amino_acids.yaml","synthetic_medium_with_15_amino_acids"],["ams1_pyruvate_serine.yaml","ams1_pyruvate_serine"]]},{"id":"CHEBI:63125","l":"EDTA trisodium salt","na":1,"nb":12,"a":[["mapped/Na3-edta.yaml","Na3-EDTA"]],"b":[["CHLOROFLEXUS_AGGREGANS_MEDIUM.yaml","chloroflexus_aggregans_medium"],["PE_MEDIUM.yaml","pe_medium"],["PORPHYROBACTER_TEPIDARIUS_MEDIUM.yaml","porphyrobacter_tepidarius_medium"],["jcm_medium_no_315.yaml","jcm_medium_no_315"],["jcm_medium_no_319.yaml","jcm_medium_no_319"],["jcm_medium_no_335.yaml","jcm_medium_no_335"]]},{"id":"CHEBI:86209","l":"cobalt dinitrate","na":1,"nb":12,"a":[["mapped/Co_No32.yaml","Co(NO3)2"]],"b":[["BEGGIATOA_MEDIUM.yaml","beggiatoa_medium"],["THIOTHRIX_MEDIUM.yaml","thiothrix_medium"],["bg11_0_015_mm_iron_shcolnick_2006.yaml","bg11_0_015_mm_iron_shcolnick_2006"],["labarre_modified_bg11.yaml","labarre_modified_bg11"],["minimal_medium_lostroh_et_al.yaml","minimal_medium_lostroh_et_al"],["modified_labarre_medium_56_mm_glucose.yaml","modified_labarre_medium_56_mm_glucose"]]},{"id":"KEGG:his-L","l":"","na":1,"nb":12,"a":[["mapped/L-histidine.yaml","L-Histidine"]],"b":[["Chamberlain_CDM.yaml","chamberlain_cdm"],["RDM.yaml","rdm"],["bl_medium_arg.yaml","bl_medium_arg"],["bl_medium_arg_ser_trp.yaml","bl_medium_arg_ser_trp"],["bl_medium_asp.yaml","bl_medium_asp"],["bl_medium_low_mops.yaml","bl_medium_low_mops"]]},{"id":"KEGG:phe-L","l":"","na":1,"nb":12,"a":[["mapped/L-phenylalanine.yaml","L-Phenylalanine"]],"b":[["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["RDM.yaml","rdm"],["Synthetic_Medium_with_15_amino_acids.yaml","synthetic_medium_with_15_amino_acids"],["aam.yaml","aam"],["cdm_teusink_et_al.yaml","cdm_teusink_et_al"]]},{"id":"KEGG:pnto-R","l":"","na":1,"nb":12,"a":[["mapped/Pantothenate.yaml","Pantothenate"]],"b":[["CDM_LP.yaml","cdm_lp"],["Galani_MM.yaml","galani_mm"],["Synthetic_Medium_C.yaml","synthetic_medium_c"],["Synthetic_medium.yaml","synthetic_medium"],["aam.yaml","aam"],["bl_medium_arg.yaml","bl_medium_arg"]]},{"id":"KEGG:thr-L","l":"","na":1,"nb":12,"a":[["mapped/L-threonine.yaml","L-Threonine"]],"b":[["CDM_LP.yaml","cdm_lp"],["Mops_medium.yaml","mops_medium"],["RDM.yaml","rdm"],["Synthetic_Medium_with_15_amino_acids.yaml","synthetic_medium_with_15_amino_acids"],["aam.yaml","aam"],["cdm_teusink_et_al.yaml","cdm_teusink_et_al"]]},{"id":"KEGG:tyr-L","l":"","na":1,"nb":12,"a":[["mapped/L-tyrosine.yaml","L-Tyrosine"]],"b":[["CDM_LP.yaml","cdm_lp"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["RDM.yaml","rdm"],["Synthetic_Medium_with_15_amino_acids.yaml","synthetic_medium_with_15_amino_acids"],["cdm_teusink_et_al.yaml","cdm_teusink_et_al"],["mic_cit_herriott_et_al.yaml","mic_cit_herriott_et_al"]]},{"id":"CHEBI:132089","l":"sodium glycerol 2-phosphate","na":1,"nb":11,"a":[["mapped/Sodium_Beta-glycerophosphate.yaml","Sodium beta-glycerophosphate"]],"b":[["M17_MEDIUM_FOR_LACTIC_STREPTOCOCCI.yaml","m17_medium_for_lactic_streptococci"],["clostridium_thermocellum_medium__f6f3f236.yaml","clostridium_thermocellum_medium"],["cy_3_seawater_medium.yaml","cy_3_seawater_medium"],["k35__38e75c0b.yaml","k35"],["k_medium__a3bd9f30.yaml","k_medium"],["m17_medium_modified.yaml","m17_medium_modified"]]},{"id":"CHEBI:30911","l":"glucitol","na":1,"nb":11,"a":[["mapped/Sorbitol.yaml","Sorbitol"]],"b":[["M1D_Medium.yaml","m1d_medium"],["Modified_Rhodobacter_Spaeroides_Medium.yaml","modified_rhodobacter_spaeroides_medium"],["RHODOBACTER_SPHAEROIDES_MEDIUM.yaml","rhodobacter_sphaeroides_medium"],["RHODOBIUM_GOKURNUM_MEDIUM.yaml","rhodobium_gokurnum_medium"],["RHODOVULUM_MARINUM_MEDIUM.yaml","rhodovulum_marinum_medium"],["RHODOVULUM_VISAKHUM_MEDIUM.yaml","rhodovulum_visakhum_medium"]]},{"id":"CHEBI:32029","l":"potassium acetate","na":1,"nb":11,"a":[["mapped/K-acetate.yaml","K-acetate"]],"b":[["ANAEROBIC_THAUERA_MEDIUM.yaml","anaerobic_thauera_medium"],["CLOSTRIDIUM_KLUYVERI_MEDIUM.yaml","clostridium_kluyveri_medium"],["PA_MEDIUM.yaml","pa_medium"],["SALIMESOPHILOBACTER_MEDIUM.yaml","salimesophilobacter_medium"],["ZMB.yaml","ZMB"],["ZMB_ALS.yaml","ZMB ALS"]]},{"id":"CHEBI:39035","l":"TES","na":1,"nb":11,"a":[["mapped/Tes.yaml","TES"]],"b":[["BG11C_TES.yaml","BG11C TES"],["BG11_TES_no_bicarb.yaml","BG11 TES no bicarb"],["HLH_MEDIUM.yaml","hlh_medium"],["THERMOANAEROBACULUM_AQUATICUM_MEDIUM.yaml","thermoanaerobaculum_aquaticum_medium"],["cyanobacteria_medium_bg11_tes_buffered.yaml","cyanobacteria_medium_bg11_tes_buffered"],["hlh_700_medium.yaml","hlh_700_medium"]]},{"id":"CHEBI:43796","l":"(S)-lipoic acid","na":1,"nb":11,"a":[["mapped/%CE%91-lipoic_Acid.yaml","α-lipoic acid"]],"b":[["Hans_Basal_Media.yaml","Hans Basal Media"],["Hans_Basal_Media_bicarb.yaml","Hans Basal Media bicarb"],["Hans_Basal_Media_bicarb_nitrate.yaml","Hans Basal Media bicarb nitrate"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["SCFM.yaml","SCFM"],["SCFM_10mMNitrate.yaml","SCFM 10mMNitrate"]]},{"id":"CHEBI:8006","l":"Peptidoglycan(N-acetyl-D-glucosamine)","na":1,"nb":11,"a":[["mapped/N-acetyl-d-glucosamine.yaml","N-Acetyl-D-glucosamine"]],"b":[["MODIFIED_BSK_MEDIUM.yaml","modified_bsk_medium"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"KEGG:lys-L","l":"","na":1,"nb":11,"a":[["mapped/L-lysine.yaml","L-Lysine"]],"b":[["Chamberlain_CDM.yaml","chamberlain_cdm"],["RDM.yaml","rdm"],["Synthetic_Medium_with_15_amino_acids.yaml","synthetic_medium_with_15_amino_acids"],["cdm_teusink_et_al.yaml","cdm_teusink_et_al"],["lysine_salt_schaechter_et_al.yaml","lysine_salt_schaechter_et_al"],["mic_cit_herriott_et_al.yaml","mic_cit_herriott_et_al"]]},{"id":"CHEBI:16810","l":"2-oxoglutarate(2-)","na":1,"nb":10,"a":[["mapped/Na2_Alpha-ketoglutarate.yaml","Na2 alpha-ketoglutarate"]],"b":[["BCYE_alpha_agar.yaml","bcye_alpha_agar"],["BM7_MEDIUM.yaml","bm7_medium"],["CTM_MEDIUM.yaml","ctm_medium"],["DinoMM_alphaKetoGlutAcid_NoNitrogen.yaml","DinoMM alphaKetoGlutAcid NoNitrogen"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"]]},{"id":"CHEBI:5291","l":"gelatin","na":1,"nb":10,"a":[["mapped/Gelatine.yaml","Gelatine"]],"b":[["LB_plus_SM_buffer.yaml","LB_plus_SM_buffer"],["S_medium.yaml","s_medium"],["barbour_sfoenner_kelly_bsk_ii_medium.yaml","barbour_sfoenner_kelly_bsk_ii_medium"],["bsk_medium__0411c628.yaml","bsk_medium"],["bsk_medium__55a97aaf.yaml","bsk_medium"],["bsk_medium__b3c2010e.yaml","bsk_medium"]]},{"id":"KEGG:cys-L","l":"","na":1,"nb":10,"a":[["mapped/L-cysteine.yaml","L-Cysteine"]],"b":[["CDM_LP.yaml","cdm_lp"],["RDM.yaml","rdm"],["Song_Optimal_CDM.yaml","song_optimal_cdm"],["Song_cdm.yaml","song_cdm"],["aam.yaml","aam"],["mic_cit_herriott_et_al.yaml","mic_cit_herriott_et_al"]]},{"id":"KEGG:gln-L","l":"","na":1,"nb":10,"a":[["mapped/L-glutamine.yaml","L-Glutamine"]],"b":[["CDM_LP.yaml","cdm_lp"],["RDM.yaml","rdm"],["Synthetic_medium.yaml","synthetic_medium"],["basal_synthetic_medium_vitamins.yaml","basal_synthetic_medium_vitamins"],["bl_medium_arg.yaml","bl_medium_arg"],["bl_medium_arg_ser_trp.yaml","bl_medium_arg_ser_trp"]]},{"id":"KEGG:lcts","l":"","na":1,"nb":10,"a":[["mapped/Lactose.yaml","Lactose"]],"b":[["Basal_synthetic_medium.yaml","basal_synthetic_medium"],["Synthetic_medium.yaml","synthetic_medium"],["basal_synthetic_medium_vitamins.yaml","basal_synthetic_medium_vitamins"],["chemically_defined_fermentation_medium_20g_glucose_20g_lactose_12_5g_msg.yaml","chemically_defined_fermentation_medium_20g_glucose_20g_lactose_12_5g_msg"],["chemically_defined_fermentation_medium_45g_lactose_12_5g_msg.yaml","chemically_defined_fermentation_medium_45g_lactose_12_5g_msg"],["complete_chemically_defined_medium.yaml","complete_chemically_defined_medium"]]},{"id":"KEGG:pydam","l":"","na":1,"nb":10,"a":[["mapped/Pyridoxamine.yaml","Pyridoxamine"]],"b":[["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["MS13_Medium.yaml","ms13_medium"],["MS15_Medium.yaml","ms15_medium"],["ms10_medium_supplements_acetate_for_batch_cultivation.yaml","ms10_medium_supplements_acetate_for_batch_cultivation"]]},{"id":"KEGG:trp-L","l":"","na":1,"nb":10,"a":[["mapped/L-tryptophan.yaml","L-Tryptophan"]],"b":[["CDM_LP.yaml","cdm_lp"],["RDM.yaml","rdm"],["bl_medium_arg_ser_trp.yaml","bl_medium_arg_ser_trp"],["cdm_teusink_et_al.yaml","cdm_teusink_et_al"],["minimal_medium_teusink_et_al.yaml","minimal_medium_teusink_et_al"],["pa_5052.yaml","pa_5052"]]},{"id":"CHEBI:132767","l":"ferric pyrophosphate","na":1,"nb":9,"a":[["mapped/Fe4_Po42.yaml","Fe4(PO4)2"]],"b":[["ABB.yaml","ABB"],["ACY.yaml","ACY"],["BCYE_alpha_agar.yaml","bcye_alpha_agar"],["anaerobe_basal_broth_oxoid.yaml","anaerobe_basal_broth_oxoid"],["bcye_2216e.yaml","bcye_2216e"],["bcye_agar__8bbb67d5.yaml","bcye_agar"]]},{"id":"CHEBI:16024","l":"D-mannose","na":1,"nb":9,"a":[["mapped/D-mannose.yaml","D-Mannose"]],"b":[["M9zb_with_mannose.yaml","m9zb_with_mannose"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"],["Soil_Defined_Media_%28SDM%29.yaml","Soil Defined Media (SDM)"],["defined_freshwater_medium_cocl2__f0ffbcc6.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__41b1d433.yaml","defined_freshwater_medium_coso4"],["fermentation_medium_mannose_nh4cl.yaml","fermentation_medium_mannose_nh4cl"]]},{"id":"CHEBI:36218","l":"beta-lactose","na":1,"nb":9,"a":[["mapped/Beta-lactose.yaml","Beta-Lactose"]],"b":[["ALKALINE_LACTOSE_AGAR.yaml","alkaline_lactose_agar"],["LACTOBACILLUS_MEDIUM_I.yaml","lactobacillus_medium_i"],["M17_medium_supplemented_with_20_g_L_of_lactose.yaml","m17_medium_supplemented_with_20_g_l_of_lactose"],["ZMB_Gut.yaml","ZMB Gut"],["gam_broth_with_1_lactose.yaml","gam_broth_with_1_lactose"],["m17_broth_containing_lactose.yaml","m17_broth_containing_lactose"]]},{"id":"CHEBI:62982","l":"ammonium dihydrogen phosphate","na":1,"nb":9,"a":[["mapped/Nh4h2po4.yaml","NH4H2PO4"]],"b":[["Kim_medium.yaml","kim_medium"],["PHE91_MEDIUM.yaml","phe91_medium"],["PHENYLOBACTERIUM_MEDIUM.yaml","phenylobacterium_medium"],["PPM.yaml","ppm"],["desulfitobacterium_pce_medium.yaml","desulfitobacterium_pce_medium"],["phe91_medium__bf798fea.yaml","phe91_medium"]]},{"id":"CHEBI:72449","l":"malachite green","na":1,"nb":9,"a":[["mapped/Malachite_Green.yaml","Malachite green"]],"b":[["1_ogawa_medium.yaml","1_ogawa_medium"],["Lowenstein_Jenson_medium.yaml","lowenstein_jenson_medium"],["MIDDLEBROCK_7H11_AGAR.yaml","middlebrock_7h11_agar"],["MIDDLEBROOK_MEDIUM.yaml","middlebrook_medium"],["Middlebrook_7H11_Agar.yaml","middlebrook_7h11_agar"],["l_wenstein_jensen_medium.yaml","l_wenstein_jensen_medium"]]},{"id":"CHEBI:84997","l":"sodium gluconate","na":1,"nb":9,"a":[["mapped/Sodium_Gluconate.yaml","Sodium gluconate"]],"b":[["ACIDOSOMA_MEDIUM.yaml","acidosoma_medium"],["GNYS_MEDIUM.yaml","gnys_medium"],["RHODOPSEUDOMONAS_GLOBIFORMIS_MEDIUM.yaml","rhodopseudomonas_globiformis_medium"],["SL7_solid_medium.yaml","sl7_solid_medium"],["SL7_solution.yaml","sl7_solution"],["gnys_medium__3696ca29.yaml","gnys_medium"]]},{"id":"KEGG:ala-L","l":"","na":1,"nb":9,"a":[["mapped/L-alanine.yaml","L-Alanine"]],"b":[["CMM.yaml","cmm"],["RDM.yaml","rdm"],["Song_Optimal_CDM.yaml","song_optimal_cdm"],["Synthetic_Medium_with_15_amino_acids.yaml","synthetic_medium_with_15_amino_acids"],["cdm_teusink_et_al.yaml","cdm_teusink_et_al"],["fermentation_medium_glucose_alanine.yaml","fermentation_medium_glucose_alanine"]]},{"id":"CHEBI:132758","l":"vanadyl sulfate pentahydrate","na":1,"nb":8,"a":[["mapped/Voso4_X_5_H2o.yaml","VOSO4 x 5 H2O"]],"b":[["CLOSTRIDIUM_VIRIDE_MEDIUM.yaml","clostridium_viride_medium"],["FERROPLASMA_ACIDIPHILUM_MEDIUM.yaml","ferroplasma_acidiphilum_medium"],["clostridium_aminovalericum_medium.yaml","clostridium_aminovalericum_medium"],["thermoplasma_acidophilum_medium__3d517987.yaml","thermoplasma_acidophilum_medium"],["thermoplasma_acidophilum_medium__5b74e2ee.yaml","thermoplasma_acidophilum_medium"],["thermoplasma_acidophilum_medium__d7d3722d.yaml","thermoplasma_acidophilum_medium"]]},{"id":"CHEBI:16283","l":"L-cystine","na":1,"nb":8,"a":[["mapped/L-cystine.yaml","L-Cystine"]],"b":[["IGNISPHAERA_MEDIUM.yaml","ignisphaera_medium"],["Kosmotoga_Pacifica_Medium.yaml","kosmotoga_pacifica_medium"],["eg_medium__dd848cc7.yaml","eg_medium"],["fluid_thioglycolate_medium.yaml","fluid_thioglycolate_medium"],["fluid_thioglycollate_medium__e510d708.yaml","fluid_thioglycollate_medium"],["rc_medium__9776cd83.yaml","rc_medium"]]},{"id":"CHEBI:17748","l":"thymidine","na":1,"nb":8,"a":[["mapped/Thymidine.yaml","Thymidine"]],"b":[["CHI_1776_MEDIUM.yaml","chi_1776_medium"],["MCD_Medium.yaml","mcd_medium"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"],["Soil_Defined_Media_%28SDM%29.yaml","Soil Defined Media (SDM)"],["cdm_lab_medium.yaml","cdm_lab_medium"],["cdm_teusink_et_al.yaml","cdm_teusink_et_al"]]},{"id":"CHEBI:26493","l":"quinic acid","na":1,"nb":8,"a":[["mapped/Quinic_Acid.yaml","Quinic acid"]],"b":[["DESULFOVIBRIO_MAGNETICUS_MEDIUM.yaml","desulfovibrio_magneticus_medium"],["Fundidesulfovibrio_Magnetotactcus_Medium.yaml","fundidesulfovibrio_magnetotactcus_medium"],["Modified_289_medium.yaml","modified_289_medium"],["desulfovibrio_magneticus_medium__d89af152.yaml","desulfovibrio_magneticus_medium"],["magnetospirillum_medium_b.yaml","magnetospirillum_medium_b"],["magnetospirillum_medium_b__2dfc58b7.yaml","magnetospirillum_medium_b"]]},{"id":"CHEBI:28260","l":"galactose","na":1,"nb":8,"a":[["mapped/Galactose.yaml","Galactose"]],"b":[["A1_MEDIUM.yaml","a1_medium"],["KPL_MEDIUM.yaml","kpl_medium"],["MYXOCOCCUS_FLAVESCENS_MEDIUM.yaml","myxococcus_flavescens_medium"],["Modified_SP_Medium.yaml","modified_sp_medium"],["SP_Medium.yaml","sp_medium"],["a1_medium__13c8113e.yaml","a1_medium"]]},{"id":"CHEBI:65242","l":"sodium chlorate","na":1,"nb":8,"a":[["mapped/Naclo3.yaml","NaClO3"]],"b":[["ALP_defined_chlorate.yaml","ALP defined chlorate"],["MEDIUM_FOR_CHLORATE_RESPIRERS.yaml","medium_for_chlorate_respirers"],["PSEUDOMONAS_CHLOROTIDISMUTANS_MEDIUM.yaml","pseudomonas_chlorotidismutans_medium"],["alicycliphilus_denitrificans_medium__3263bed0.yaml","alicycliphilus_denitrificans_medium"],["medium_for_chlorate_respirers__cead40b6.yaml","medium_for_chlorate_respirers"],["medium_modified_for_dechloromonas_spp.yaml","medium_modified_for_dechloromonas_spp"]]},{"id":"CHEBI:75834","l":"iron(2+) sulfate monohydrate","na":1,"nb":8,"a":[["mapped/Feso4_X_H2o.yaml","FeSO4 x H2O"]],"b":[["BACILLUS_FILIFORMIS_MEDIUM.yaml","bacillus_filiformis_medium"],["PE_MEDIUM.yaml","pe_medium"],["bacillus_filiformis_medium__b5fa3a39.yaml","bacillus_filiformis_medium"],["jcm_medium_no_319.yaml","jcm_medium_no_319"],["jcm_medium_no_335.yaml","jcm_medium_no_335"],["pe_medium__ede756c7.yaml","pe_medium"]]},{"id":"CHEBI:86155","l":"bromothymol blue","na":1,"nb":8,"a":[["mapped/Bromothymol_Blue.yaml","Bromothymol blue"]],"b":[["AZOSPIRILLUM_AMAZONENSE_MEDIUM.yaml","azospirillum_amazonense_medium"],["HALOTHIOBACILLUS_MEDIUM.yaml","halothiobacillus_medium"],["Nutrient_bromothymol_blue_agar_NBTA.yaml","nutrient_bromothymol_blue_agar_nbta"],["Semisolid_LGI_medium.yaml","semisolid_lgi_medium"],["THIOMICRORHABDUS_MEDIUM.yaml","thiomicrorhabdus_medium"],["THIOMICROSPIRA_PELOPHILA_MEDIUM.yaml","thiomicrospira_pelophila_medium"]]},{"id":"KEGG:urea","l":"","na":1,"nb":8,"a":[["mapped/Urea.yaml","Urea"]],"b":[["Mj_media.yaml","mj_media"],["Synthetic_Medium_C.yaml","synthetic_medium_c"],["cgc_w_acetate.yaml","cgc_w_acetate"],["cgc_w_acetate_glucose.yaml","cgc_w_acetate_glucose"],["cgc_w_glucose.yaml","cgc_w_glucose"],["chemically_defined_fermentation_medium_45g_glucose_4_5g_urea.yaml","chemically_defined_fermentation_medium_45g_glucose_4_5g_urea"]]},{"id":"CHEBI:132095","l":"sodium metavanadate hydrate","na":1,"nb":7,"a":[["mapped/Navo3_X_H2o.yaml","NaVO3 x H2O"]],"b":[["CENS_MEDIUM.yaml","cens_medium"],["Chromatium_Medium.yaml","chromatium_medium"],["HETEROTROPHIC_MEDIUM_H3P.yaml","heterotrophic_medium_h3p"],["THIOMONAS_ISLANDICA_MEDIUM.yaml","thiomonas_islandica_medium"],["diazotrophic_medium_rba.yaml","diazotrophic_medium_rba"],["mineral_medium_for_chemolithotrophic_growth_h_3.yaml","mineral_medium_for_chemolithotrophic_growth_h_3"]]},{"id":"CHEBI:17578","l":"toluene","na":1,"nb":7,"a":[["mapped/Toluene.yaml","Toluene"]],"b":[["FRESHWATER_MEDIUM_WITH_TOLUENE.yaml","freshwater_medium_with_toluene"],["GEORGFUCHSIA_MEDIUM.yaml","georgfuchsia_medium"],["Modified_m9_with_toluene.yaml","modified_m9_with_toluene"],["defined_freshwater_medium_cocl2__6b305113.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__35d08dce.yaml","defined_freshwater_medium_coso4"],["freshwater_medium_with_toluene__185c443d.yaml","freshwater_medium_with_toluene"]]},{"id":"CHEBI:18290","l":"thiamine(1+) diphosphate chloride","na":1,"nb":7,"a":[["mapped/Thiamine_pyrophosphate.yaml","Thiamine pyrophosphate"]],"b":[["HELMUTKOENIGIA_MEDIUM.yaml","helmutkoenigia_medium"],["Vulcanimicrobium_alpinus_medium.yaml","vulcanimicrobium_alpinus_medium"],["ctm_medium__057c0b18.yaml","ctm_medium"],["modified_nos_medium__d7a7be7b.yaml","modified_nos_medium"],["oteb_medium.yaml","oteb_medium"],["treponema_denticola_medium.yaml","treponema_denticola_medium"]]},{"id":"CHEBI:27082","l":"trehalose","na":1,"nb":7,"a":[["mapped/Trehalose.yaml","Trehalose"]],"b":[["BRADYMONAS_SEDIMINIS_MEDIUM.yaml","bradymonas_sediminis_medium"],["HELMUTKOENIGIA_MEDIUM.yaml","helmutkoenigia_medium"],["RH_MEDIUM.yaml","rh_medium"],["TREPONEMA_RECTALE_MEDIUM.yaml","treponema_rectale_medium"],["minimal_media__805aefdd.yaml","minimal_media"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:30776","l":"hexanoic acid","na":1,"nb":7,"a":[["mapped/Caproic_Acid.yaml","Caproic acid"]],"b":[["DESULFUROBACTERIUM_MEDIUM.yaml","desulfurobacterium_medium"],["TD3_MEDIUM.yaml","td3_medium"],["THERMODESULFOBACTERIUM_HYDROGENIPHILUM_MEDIUM.yaml","thermodesulfobacterium_hydrogeniphilum_medium"],["THERMODESULFOBACTERIUM_HYDROGENOPHILUM_MEDIUM.yaml","thermodesulfobacterium_hydrogenophilum_medium"],["desulfurobacterium_medium__edb237d2.yaml","desulfurobacterium_medium"],["td3_medium__4a2d4552.yaml","td3_medium"]]},{"id":"CHEBI:45296","l":"hexadecane","na":1,"nb":7,"a":[["mapped/Hexadecane.yaml","Hexadecane"]],"b":[["FUNDIBACTER_JADENSIS_MEDIUM.yaml","fundibacter_jadensis_medium"],["MODIFIED_SEA_WATER_AGAR.yaml","modified_sea_water_agar"],["dehalobacter_restrictus_medium_tce.yaml","dehalobacter_restrictus_medium_tce"],["dehalobacter_restrictus_medium_tce__3ce89046.yaml","dehalobacter_restrictus_medium_tce"],["desulfuromonas_medium_tce.yaml","desulfuromonas_medium_tce"],["m9_with_1_0_glucose_and_40_emulsion.yaml","m9_with_1_0_glucose_and_40_emulsion"]]},{"id":"KEGG:etoh","l":"","na":1,"nb":7,"a":[["mapped/Ethanol.yaml","Ethanol"]],"b":[["chemically_defined_fermentation_medium_20g_ethanol_12_5g_msg.yaml","chemically_defined_fermentation_medium_20g_ethanol_12_5g_msg"],["chemically_defined_fermentation_medium_20g_glucose_20g_ethanol_12_5g_msg.yaml","chemically_defined_fermentation_medium_20g_glucose_20g_ethanol_12_5g_msg"],["defined_freshwater_medium_cocl2__0cf425f7.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__a8f40d64.yaml","defined_freshwater_medium_coso4"],["fermentation_medium_ethanol_nh4cl.yaml","fermentation_medium_ethanol_nh4cl"],["mogensen_minimal_medium_ethanol.yaml","mogensen_minimal_medium_ethanol"]]},{"id":"KEGG:fru","l":"","na":1,"nb":7,"a":[["mapped/D-fructose.yaml","D-Fructose"]],"b":[["RDM.yaml","rdm"],["bm_in_fructose_hodgson_et_al.yaml","bm_in_fructose_hodgson_et_al"],["liquid_mm_with_fructose_hodgson_et_al.yaml","liquid_mm_with_fructose_hodgson_et_al"],["m63_with_thiamine_hcl_with_fructose.yaml","m63_with_thiamine_hcl_with_fructose"],["mr_medium_d_fructose.yaml","mr_medium_d_fructose"],["nitrogen_limited_mr_medium.yaml","nitrogen_limited_mr_medium"]]},{"id":"KEGG:ura","l":"","na":1,"nb":7,"a":[["mapped/Uracil.yaml","Uracil"]],"b":[["CDM_LP.yaml","cdm_lp"],["MCD_Medium.yaml","mcd_medium"],["a_b_salts_medium_with_uracil_jensen_et_al.yaml","a_b_salts_medium_with_uracil_jensen_et_al"],["cdm_teusink_et_al.yaml","cdm_teusink_et_al"],["complete_chemically_defined_medium.yaml","complete_chemically_defined_medium"],["mic_herriott_et_al.yaml","mic_herriott_et_al"]]},{"id":"CHEBI:131526","l":"potassium carbonate","na":1,"nb":6,"a":[["mapped/K2co3.yaml","K2CO3"]],"b":[["Nitrosolobus_medium.yaml","nitrosolobus_medium"],["clostridium_sp_la1_medium.yaml","clostridium_sp_la1_medium"],["mhy__90b762f5.yaml","mhy"],["veillonella_medium__007a2b69.yaml","veillonella_medium"],["veillonella_medium__a8952478.yaml","veillonella_medium"],["veillonella_medium__e057c5de.yaml","veillonella_medium"]]},{"id":"CHEBI:144434","l":"iron(III) citrate monohydrate","na":1,"nb":6,"a":[["mapped/Ferric_Citrate_Monohydrate.yaml","Ferric citrate monohydrate"]],"b":[["ALKALIPHILUS_TRANSVAALENSIS_MEDIUM.yaml","alkaliphilus_transvaalensis_medium"],["CALDERIHABITANS_MEDIUM.yaml","calderihabitans_medium"],["bap_medium_for_frankia.yaml","bap_medium_for_frankia"],["modified_bap_gfs_medium_for_frankia.yaml","modified_bap_gfs_medium_for_frankia"],["modified_bap_pagfs_medium_for_frankia.yaml","modified_bap_pagfs_medium_for_frankia"],["modified_bap_psa_medium_for_frankia.yaml","modified_bap_psa_medium_for_frankia"]]},{"id":"CHEBI:15978","l":"sn-glycerol 3-phosphate","na":6,"nb":1,"a":[["mapped/Glycerol_2.yaml","glycerol"],["mapped/Glycerol_3-phosphate.yaml","Glycerol 3-phosphate"],["mapped/Na2_Beta-glycerol_PO4_X_5_H2O.yaml","Na2 beta-glycerol PO4 x 5 H2O"],["mapped/Na2glycerophosphate5h2o.yaml","Na2glycerophosphate•5H2O"],["mapped/Sn-Glycerol_3-phosphate_Lithium_Salt.yaml","sn-Glycerol 3-phosphate lithium salt"],["mapped/Sn-glycerol_3-phosphate_Bis_Cyclohexylammonium_Salt.yaml","sn-Glycerol 3-phosphate bis(cyclohexylammonium) salt"]],"b":[["modified_dixon_s_agar.yaml","modified_dixon_s_agar"]]},{"id":"CHEBI:16196","l":"oleic acid","na":1,"nb":6,"a":[["mapped/Oleic_Acid.yaml","Oleic acid"]],"b":[["MIDDLEBROCK_7H11_AGAR.yaml","middlebrock_7h11_agar"],["MIDDLEBROOK_MEDIUM.yaml","middlebrook_medium"],["Middle_Brook_Medium.yaml","middle_brook_medium"],["Middlebrook_7H11_Agar.yaml","middlebrook_7h11_agar"],["middlebrook_7h11_agar_difco.yaml","middlebrook_7h11_agar_difco"],["modified_dixon_s_agar.yaml","modified_dixon_s_agar"]]},{"id":"CHEBI:16865","l":"gamma-aminobutyric acid","na":1,"nb":6,"a":[["mapped/Gamma-aminobutyric_Acid.yaml","gamma-Aminobutyric acid"]],"b":[["CLOSTRIDIUM_AMINOBUTYRICUM_MEDIUM.yaml","clostridium_aminobutyricum_medium"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:27641","l":"cycloheximide","na":1,"nb":6,"a":[["mapped/Cycloheximid.yaml","Cycloheximid"]],"b":[["PPM.yaml","ppm"],["R2A_Kan50_Tween01_Cycloheximide200.yaml","R2A_Kan50_Tween01_Cycloheximide200"],["alkaliphiles_pirellula_medium_m1py.yaml","alkaliphiles_pirellula_medium_m1py"],["chlamydia_serpentis_poikilotherma_medium.yaml","chlamydia_serpentis_poikilotherma_medium"],["pirellula_medium_m31py.yaml","pirellula_medium_m31py"],["ppm__7a6a33ba.yaml","ppm"]]},{"id":"CHEBI:31695","l":"indigo carmine","na":1,"nb":6,"a":[["mapped/Indigocarmine.yaml","Indigocarmine"]],"b":[["CELLULOSILYTICUM_MEDIUM.yaml","cellulosilyticum_medium"],["PSEUDOBUTYRIVIBRIO_MEDIUM.yaml","pseudobutyrivibrio_medium"],["SUCCINICLASTICUM_MEDIUM.yaml","succiniclasticum_medium"],["methanomicrobium_mobile_medium__0da37a4a.yaml","methanomicrobium_mobile_medium"],["rumen_fluid_xylan_agar.yaml","rumen_fluid_xylan_agar"],["rumen_fluid_xylan_agar__21a2a89a.yaml","rumen_fluid_xylan_agar"]]},{"id":"CHEBI:37070","l":"2-methylbutyric acid","na":1,"nb":6,"a":[["mapped/Dl-2-methylbutyric_Acid.yaml","DL-2-Methylbutyric acid"]],"b":[["RUMEN_BACTERIA_MEDIUM.yaml","rumen_bacteria_medium"],["THERMODESULFOBACTERIUM_HYDROGENOPHILUM_MEDIUM.yaml","thermodesulfobacterium_hydrogenophilum_medium"],["anaerobic_mineral_medium_with_yeast_extract__5d534c46.yaml","anaerobic_mineral_medium_with_yeast_extract"],["medium_10__09f41e08.yaml","medium_10"],["pyvg_medium__d66d387b.yaml","pyvg_medium"],["treponema_saccharophilum_medium__92ddb3ca.yaml","treponema_saccharophilum_medium"]]},{"id":"CHEBI:38892","l":"disodium tetraborate","na":1,"nb":6,"a":[["mapped/Na2b4o7.yaml","Na2B4O7"]],"b":[["NITRINCOLA_MEDIUM.yaml","nitrincola_medium"],["Revised_Sulfolobus_medium.yaml","revised_sulfolobus_medium"],["nitrincola_medium__8cb728a0.yaml","nitrincola_medium"],["togo_medium_m1518.yaml","togo_medium_m1518"],["togo_medium_m1519.yaml","togo_medium_m1519"],["togo_medium_m2759.yaml","togo_medium_m2759"]]},{"id":"CHEBI:53504","l":"nickel sulfate heptahydrate","na":1,"nb":6,"a":[["mapped/Niso4_X_7_H2o.yaml","NiSO4 x 7 H2O"]],"b":[["HYDROGENOBACTER_THERMOPHILUS_MEDIUM.yaml","hydrogenobacter_thermophilus_medium"],["atalassotoga_azc2201_medium__2c8a8ada.yaml","atalassotoga_azc2201_medium"],["azc_1502_medium__45697e91.yaml","azc_1502_medium"],["desulfobotulus_par22n_medium__bd3fccf7.yaml","desulfobotulus_par22n_medium"],["desulfonatronum_par180_medium__7eef7f75.yaml","desulfonatronum_par180_medium"],["hydrogenobacter_halophilus_medium__d2e10f9e.yaml","hydrogenobacter_halophilus_medium"]]},{"id":"CHEBI:63317","l":"barium chloride","na":1,"nb":6,"a":[["mapped/Bacl2.yaml","BaCl2"]],"b":[["Chromatium_Medium.yaml","chromatium_medium"],["DISSULFURIMICROBIUM_HYDROTHERMALE_MEDIUM.yaml","dissulfurimicrobium_hydrothermale_medium"],["dissulfurimicrobium_hydrothermale_medium__63c2d6ea.yaml","dissulfurimicrobium_hydrothermale_medium"],["st65_medium__23c51571.yaml","st65_medium"],["svx8_medium__0a0a576b.yaml","svx8_medium"],["thermogutta_hypogea_medium__b2091adf.yaml","thermogutta_hypogea_medium"]]},{"id":"KEGG:inost","l":"","na":1,"nb":6,"a":[["mapped/Myo-inositol.yaml","myo-Inositol"]],"b":[["CDM_LP.yaml","cdm_lp"],["Synthetic_medium.yaml","synthetic_medium"],["m9_minimal_medium_with_myo_inositol.yaml","m9_minimal_medium_with_myo_inositol"],["yeast_mineral_medium_25_g_l_glucose.yaml","yeast_mineral_medium_25_g_l_glucose"],["yeast_mineral_medium_7_9_g_l_ethanol.yaml","yeast_mineral_medium_7_9_g_l_ethanol"],["yeast_optimized_defined_medium_glucose.yaml","yeast_optimized_defined_medium_glucose"]]},{"id":"CHEBI:132764","l":"sodium oxalate","na":1,"nb":5,"a":[["mapped/Disodium_Oxalate.yaml","Disodium oxalate"]],"b":[["OXALOBACTER_MEDIUM.yaml","oxalobacter_medium"],["jcm_medium_no_1262.yaml","jcm_medium_no_1262"],["jcm_medium_no_1263.yaml","jcm_medium_no_1263"],["togo_medium_m1358.yaml","togo_medium_m1358"],["togo_medium_m1359.yaml","togo_medium_m1359"]]},{"id":"CHEBI:15671","l":"L-tartaric acid","na":1,"nb":5,"a":[["mapped/L_-tartaric_Acid.yaml","L(+)-Tartaric acid"]],"b":[["MAGNETOSPIRILLUM_MEDIUM.yaml","magnetospirillum_medium"],["MG_minimal_media.yaml","MG minimal media"],["MG_minimal_media_noIron.yaml","MG minimal media noIron"],["magnetospirillum_medium__dc0f1596.yaml","magnetospirillum_medium"],["telmatospirillum_peat_medium.yaml","telmatospirillum_peat_medium"]]},{"id":"CHEBI:16634","l":"raffinose","na":1,"nb":5,"a":[["mapped/Raffinose.yaml","Raffinose"]],"b":[["MYXOCOCCUS_FLAVESCENS_MEDIUM.yaml","myxococcus_flavescens_medium"],["Modified_SP_Medium.yaml","modified_sp_medium"],["SP_Medium.yaml","sp_medium"],["myxococcus_flavescens_medium__aa6b37a2.yaml","myxococcus_flavescens_medium"],["sp_medium__3b598fd8.yaml","sp_medium"]]},{"id":"CHEBI:16830","l":"methylamine","na":1,"nb":5,"a":[["mapped/Methylamine.yaml","Methylamine"]],"b":[["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["MEDIUM_FOR_DSM_14457_AND_14458.yaml","medium_for_dsm_14457_and_14458"],["MEDIUM_FOR_METHYLOBACTERIUM_PODARIUM.yaml","medium_for_methylobacterium_podarium"],["acetobacterium_submarinus_medium__9fed26ec.yaml","acetobacterium_submarinus_medium"],["hyphomicrobium_medium__41859ce8.yaml","hyphomicrobium_medium"]]},{"id":"CHEBI:17300","l":"tetrachloroethene","na":1,"nb":5,"a":[["mapped/Tetrachloroethene.yaml","Tetrachloroethene"]],"b":[["MINERAL_SALTS_MEDIUM_WITH_TCE.yaml","mineral_salts_medium_with_tce"],["dehalobacter_restrictus_medium_tce.yaml","dehalobacter_restrictus_medium_tce"],["dehalobacter_restrictus_medium_tce__3ce89046.yaml","dehalobacter_restrictus_medium_tce"],["desulfuromonas_medium_tce.yaml","desulfuromonas_medium_tce"],["mineral_salts_medium_with_tce__be1bd293.yaml","mineral_salts_medium_with_tce"]]},{"id":"CHEBI:18101","l":"4-hydroxyphenylacetic acid","na":1,"nb":5,"a":[["mapped/4-hydroxyphenyl_Acetic_Acid.yaml","4-Hydroxyphenyl acetic acid"]],"b":[["ENDOMICROBIUM_PROAVITUM_RSA_MEDIUM.yaml","endomicrobium_proavitum_rsa_medium"],["MODIFIED_AM5_MEDIUM_2.yaml","modified_am5_medium_2"],["am5_medium_elusimicrobium_medium.yaml","am5_medium_elusimicrobium_medium"],["endomicrobium_proavitum_rsa_medium__51692939.yaml","endomicrobium_proavitum_rsa_medium"],["pjc_with_4_hpa.yaml","pjc_with_4_hpa"]]},{"id":"CHEBI:28911","l":"cob(III)alamin","na":1,"nb":5,"a":[["mapped/Cobalamine.yaml","Cobalamine"]],"b":[["MEDIUM_for_SM250.yaml","medium_for_sm250"],["Medium_YCFAGSC.yaml","medium_ycfagsc"],["Medium_for_Freshwater_Flexibacteria.yaml","medium_for_freshwater_flexibacteria"],["Standard_PETC_medium.yaml","standard_petc_medium"],["YCFAG_medium.yaml","ycfag_medium"]]},{"id":"CHEBI:30951","l":"potassium thiocyanate","na":1,"nb":5,"a":[["mapped/Kscn.yaml","KSCN"]],"b":[["Alkaliphilic_Sulphur_Respiring_Strains_Medium.yaml","alkaliphilic_sulphur_respiring_strains_medium"],["METHYLOBACTERIUM_THIOCYANATUM_MEDIUM.yaml","methylobacterium_thiocyanatum_medium"],["THIOALKALIVIBRIO_THIOCYANODENITRIFICANS_MEDIUM.yaml","thioalkalivibrio_thiocyanodenitrificans_medium"],["jcm_medium_no_312.yaml","jcm_medium_no_312"],["mTC10_medium.yaml","mtc10_medium"]]},{"id":"CHEBI:53472","l":"copper(I) chloride","na":1,"nb":5,"a":[["mapped/Cucl.yaml","CuCl"]],"b":[["PERSEPHONELLA_MEDIUM.yaml","persephonella_medium"],["hydrogen_oxydizing_medium.yaml","hydrogen_oxydizing_medium"],["persephonella_medium__849ec992.yaml","persephonella_medium"],["persephonella_medium__fd71a565.yaml","persephonella_medium"],["venenivibrio_stagnispumantis_medium__bbd6eaa9.yaml","venenivibrio_stagnispumantis_medium"]]},{"id":"CHEBI:53696","l":"disodium L-tyrosinate","na":1,"nb":5,"a":[["mapped/L-tyrosine_Disodium_Salt.yaml","L-tyrosine disodium salt"]],"b":[["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["RPMI.yaml","RPMI"],["RPMI_with_Fetal_bovine_serum_Conditioned.yaml","RPMI with Fetal bovine serum Conditioned"],["SCFM.yaml","SCFM"],["SCFM_10mMNitrate.yaml","SCFM 10mMNitrate"]]},{"id":"CHEBI:59337","l":"methylamine hydrochloride","na":1,"nb":5,"a":[["mapped/Methylamine_Hydrochloride.yaml","Methylamine hydrochloride"]],"b":[["HYPHOMICROBIUM_MEDIUM.yaml","hyphomicrobium_medium"],["HYPHOMICROBIUM_STRAIN_X_MEDIUM.yaml","hyphomicrobium_strain_x_medium"],["hyphomicrobium_medium__42cb031d.yaml","hyphomicrobium_medium"],["hyphomicrobium_medium__c8032f6a.yaml","hyphomicrobium_medium"],["hyphomicrobium_medium__e4717447.yaml","hyphomicrobium_medium"]]},{"id":"CHEBI:62064","l":"butane-2,3-diol","na":1,"nb":5,"a":[["mapped/23-butanediol.yaml","2,3-butanediol"]],"b":[["PROPIONIVIBRIO_MEDIUM.yaml","propionivibrio_medium"],["Pelobacter_carbinolicus_Medium.yaml","pelobacter_carbinolicus_medium"],["ne23_3_medium.yaml","ne23_3_medium"],["pelobacter_propionicus_medium_freshwater.yaml","pelobacter_propionicus_medium_freshwater"],["propionivibrio_medium__91fe4e4e.yaml","propionivibrio_medium"]]},{"id":"CHEBI:75221","l":"sodium metavanadate","na":1,"nb":5,"a":[["mapped/Navo3.yaml","NaVO3"]],"b":[["Ferrous_Iron_Yeast_Extract_Medium.yaml","ferrous_iron_yeast_extract_medium"],["Modified_9K_medium.yaml","modified_9k_medium"],["acidihalobacter_prosperus_f5_medium__0fa15dd8.yaml","acidihalobacter_prosperus_f5_medium"],["ferrous_iron_yeast_extract_medium__a821658e.yaml","ferrous_iron_yeast_extract_medium"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:78074","l":"tin(II) chloride dihydrate","na":1,"nb":5,"a":[["mapped/Sncl2_X_2_H2o.yaml","SnCl2 x 2 H2O"]],"b":[["Chromatium_Medium.yaml","chromatium_medium"],["modified_1_5_sws_casein_starch_medium.yaml","modified_1_5_sws_casein_starch_medium"],["modified_vy_2_agar.yaml","modified_vy_2_agar"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"],["vy_2_sws_agar.yaml","vy_2_sws_agar"]]},{"id":"KEGG:man","l":"","na":1,"nb":5,"a":[["mapped/D-mannose.yaml","D-Mannose"]],"b":[["M9zb_with_mannose.yaml","m9zb_with_mannose"],["defined_freshwater_medium_cocl2__f0ffbcc6.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__41b1d433.yaml","defined_freshwater_medium_coso4"],["fermentation_medium_mannose_nh4cl.yaml","fermentation_medium_mannose_nh4cl"],["liquid_mm_with_mannose_hodgson_et_al.yaml","liquid_mm_with_mannose_hodgson_et_al"]]},{"id":"KEGG:ncam","l":"","na":1,"nb":5,"a":[["mapped/Nicotinamide.yaml","Nicotinamide"]],"b":[["CDM_LP.yaml","cdm_lp"],["bl_medium_arg.yaml","bl_medium_arg"],["bl_medium_arg_ser_trp.yaml","bl_medium_arg_ser_trp"],["bl_medium_asp.yaml","bl_medium_asp"],["bl_medium_low_mops.yaml","bl_medium_low_mops"]]},{"id":"KEGG:pydxn","l":"","na":1,"nb":5,"a":[["mapped/Pyridoxine.yaml","Pyridoxine"]],"b":[["Gotz_minimal_medium_with_malate.yaml","gotz_minimal_medium_with_malate"],["Gotz_minimal_medium_with_mannitol.yaml","gotz_minimal_medium_with_mannitol"],["MCD_Medium.yaml","mcd_medium"],["Synthetic_Medium_C.yaml","synthetic_medium_c"],["Synthetic_medium.yaml","synthetic_medium"]]},{"id":"KEGG:sucr","l":"","na":1,"nb":5,"a":[["mapped/Sucrose.yaml","Sucrose"]],"b":[["Hypertonic_medium.yaml","hypertonic_medium"],["Protoplasting_Medium.yaml","protoplasting_medium"],["Vogels_Medium_N.yaml","vogels_medium_n"],["defined_freshwater_medium_cocl2__f0ffbcc6.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__41b1d433.yaml","defined_freshwater_medium_coso4"]]},{"id":"CHEBI:114126","l":"sodium hexanoate","na":1,"nb":4,"a":[["mapped/Na-caproate.yaml","Na-caproate"]],"b":[["DESULFOCELLA_MEDIUM.yaml","desulfocella_medium"],["DESULFOTHERMUS_NAPHTHAE_MEDIUM.yaml","desulfothermus_naphthae_medium"],["SYNTROPHOSPORA_MEDIUM.yaml","syntrophospora_medium"],["desulfocella_medium__34fcb342.yaml","desulfocella_medium"]]},{"id":"CHEBI:12936","l":"D-galactose","na":1,"nb":4,"a":[["mapped/D-galactose.yaml","D-Galactose"]],"b":[["XYLOPHILUS_MEDIUM.yaml","xylophilus_medium"],["bm_in_galactose_hodgson_et_al.yaml","bm_in_galactose_hodgson_et_al"],["liquid_mm_with_galactose_hodgson_et_al.yaml","liquid_mm_with_galactose_hodgson_et_al"],["minimal_media__805aefdd.yaml","minimal_media"]]},{"id":"CHEBI:15346","l":"coenzyme A","na":1,"nb":4,"a":[["mapped/Coenzyme_A.yaml","Coenzyme A"]],"b":[["HELMUTKOENIGIA_MEDIUM.yaml","helmutkoenigia_medium"],["TREPONEMA_ISOPTEROCOLA_MEDIUM.yaml","treponema_isopterocola_medium"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"],["treponema_isopterocola_medium__e7b07692.yaml","treponema_isopterocola_medium"]]},{"id":"CHEBI:15882","l":"phenol","na":1,"nb":4,"a":[["mapped/Phenol.yaml","Phenol"]],"b":[["MEDIUM_FOR_BACILLUS_STEAROTHERMOPHILUS.yaml","medium_for_bacillus_stearothermophilus"],["anaerobic_bicarbonate_buffered_medium_with_phenol.yaml","anaerobic_bicarbonate_buffered_medium_with_phenol"],["defined_freshwater_medium_cocl2__ac506908.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__0930ab53.yaml","defined_freshwater_medium_coso4"]]},{"id":"CHEBI:16411","l":"indole-3-acetic acid","na":1,"nb":4,"a":[["mapped/3-indolyl_Acetic_Acid.yaml","3-Indolyl acetic acid"]],"b":[["ENDOMICROBIUM_PROAVITUM_RSA_MEDIUM.yaml","endomicrobium_proavitum_rsa_medium"],["MODIFIED_AM5_MEDIUM_2.yaml","modified_am5_medium_2"],["am5_medium_elusimicrobium_medium.yaml","am5_medium_elusimicrobium_medium"],["endomicrobium_proavitum_rsa_medium__51692939.yaml","endomicrobium_proavitum_rsa_medium"]]},{"id":"CHEBI:16742","l":"orotic acid","na":1,"nb":4,"a":[["mapped/Orotic_acid.yaml","Orotic acid"]],"b":[["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"],["Soil_Defined_Media_%28SDM%29.yaml","Soil Defined Media (SDM)"],["cdm_lab_medium.yaml","cdm_lab_medium"],["ucm.yaml","ucm"]]},{"id":"CHEBI:17126","l":"carnitine","na":4,"nb":1,"a":[["mapped/Carnitine_Dl_Hydrochloride.yaml","Carnitine (Dl) Hydrochloride"],["mapped/Carnitine_Hydrochloride.yaml","Carnitine Hydrochloride"],["mapped/Dl-carnitine.yaml","DL-carnitine"],["mapped/L-Carnitine.yaml","L-Carnitine"]],"b":[["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:17148","l":"putrescine","na":1,"nb":4,"a":[["mapped/Putrescine.yaml","Putrescine"]],"b":[["VEILLONELLA_MEDIUM.yaml","veillonella_medium"],["ucm.yaml","ucm"],["veillonella_medium__007a2b69.yaml","veillonella_medium"],["veillonella_medium__9e3e9781.yaml","veillonella_medium"]]},{"id":"CHEBI:17334","l":"penicillin","na":1,"nb":4,"a":[["mapped/Penicillin.yaml","Penicillin"]],"b":[["eagles_minimum_essential_medium_mem_containing_antibiotics_and_fetal_bovine_serum.yaml","eagles_minimum_essential_medium_mem_containing_antibiotics_and_fetal_bovine_serum"],["modified_pleuropneumonia_like_organism_pplo_medium.yaml","modified_pleuropneumonia_like_organism_pplo_medium"],["pplo_glucose_broth.yaml","pplo_glucose_broth"],["pplo_glucose_broth__66449f8d.yaml","pplo_glucose_broth"]]},{"id":"CHEBI:17879","l":"4-hydroxybenzoate","na":1,"nb":4,"a":[["mapped/P-hydroxybenzoate.yaml","p-Hydroxybenzoate"]],"b":[["DIETHYL_PHOSPHONATE_MEDIUM.yaml","diethyl_phosphonate_medium"],["defined_freshwater_medium_cocl2__140b53e4.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__7cf7eff3.yaml","defined_freshwater_medium_coso4"],["nutrient_medium_p_hydroxybenzoate.yaml","nutrient_medium_p_hydroxybenzoate"]]},{"id":"CHEBI:18300","l":"maleic acid","na":1,"nb":4,"a":[["mapped/Maleic_Acid.yaml","Maleic acid"]],"b":[["mmace_jasiecki_et_al.yaml","mmace_jasiecki_et_al"],["mmglu_jasiecki_et_al.yaml","mmglu_jasiecki_et_al"],["mmgly_jasiecki_et_al.yaml","mmgly_jasiecki_et_al"],["mmsuc_jasiecki_et_al.yaml","mmsuc_jasiecki_et_al"]]},{"id":"CHEBI:18405","l":"","na":1,"nb":4,"a":[["mapped/Pyridoxal_Phosphate.yaml","Pyridoxal phosphate"]],"b":[["HELMUTKOENIGIA_MEDIUM.yaml","helmutkoenigia_medium"],["TREPONEMA_ISOPTEROCOLA_MEDIUM.yaml","treponema_isopterocola_medium"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"],["treponema_isopterocola_medium__e7b07692.yaml","treponema_isopterocola_medium"]]},{"id":"CHEBI:191088","l":"Cyclohexylaminopropanesulfonic acid","na":1,"nb":4,"a":[["mapped/Caps_Buffer.yaml","CAPS buffer"]],"b":[["Cedears_Standard_Medium_2.yaml","cedears_standard_medium_2"],["Cedears_Standard_Medium_3.yaml","cedears_standard_medium_3"],["RCH2_defined_glucose_CAPS.yaml","RCH2 defined glucose CAPS"],["SERPENTINOMONAS_MINIMAL_MEDIUM.yaml","serpentinomonas_minimal_medium"]]},{"id":"CHEBI:192761","l":"ferrihydrite","na":1,"nb":4,"a":[["mapped/Ferrihydrite.yaml","Ferrihydrite"]],"b":[["DISSULFURIMICROBIUM_HYDROTHERMALE_MEDIUM.yaml","dissulfurimicrobium_hydrothermale_medium"],["MMJF_Medium.yaml","mmjf_medium"],["Modified_Rfennig_Medium_With_Ferrihydrite.yaml","modified_rfennig_medium_with_ferrihydrite"],["mmjf_medium__92d1ea1b.yaml","mmjf_medium"]]},{"id":"CHEBI:22868","l":"bile salt","na":1,"nb":4,"a":[["mapped/Bile_Salts.yaml","Bile salts"]],"b":[["1298.yaml","1298"],["ALKALINE_CELLULOSE_AGAR.yaml","alkaline_cellulose_agar"],["acido_thermophile_medium.yaml","acido_thermophile_medium"],["modified_eggerth_gagnon_medium.yaml","modified_eggerth_gagnon_medium"]]},{"id":"CHEBI:25548","l":"nitrilotriacetate(3-)","na":1,"nb":4,"a":[["mapped/Nitrilotriacetate.yaml","Nitrilotriacetate"]],"b":[["MEDIUM_FOR_CHELATOCOCCUS_BUHARII.yaml","medium_for_chelatococcus_buharii"],["NITRILOTRIACETATE_MEDIUM.yaml","nitrilotriacetate_medium"],["methanoregula_peat_medium__84e41704.yaml","methanoregula_peat_medium"],["methanosphaerula_peat_medium__1238714d.yaml","methanosphaerula_peat_medium"]]},{"id":"CHEBI:26709","l":"sodium hydrogensulfite","na":1,"nb":4,"a":[["mapped/Nahso3.yaml","NaHSO3"]],"b":[["BRUCELLA_BROTH.yaml","brucella_broth"],["Brucella.yaml","Brucella"],["Brucella_agar_plates_supplemented_with_hemin_and_vitamin_K1.yaml","brucella_agar_plates_supplemented_with_hemin_and_vitamin_k1"],["brucella_broth__a969823c.yaml","brucella_broth"]]},{"id":"CHEBI:27418","l":"1,4-naphthoquinone","na":1,"nb":4,"a":[["mapped/14-naphthoquinone.yaml","1,4-Naphthoquinone"]],"b":[["DESULFOMONILE_MEDIUM.yaml","desulfomonile_medium"],["M39_METHYLOMONAS_MEDIUM.yaml","m39_methylomonas_medium"],["SELENATE_REDUCER_MEDIUM.yaml","selenate_reducer_medium"],["m39_methylomonas_medium__d2371b94.yaml","m39_methylomonas_medium"]]},{"id":"CHEBI:28262","l":"dimethyl sulfoxide","na":1,"nb":4,"a":[["mapped/Dimethyl_Sulfoxide.yaml","Dimethyl sulfoxide"]],"b":[["MINERAL_MEDIUM_WITH_DIBENZOFURAN.yaml","mineral_medium_with_dibenzofuran"],["SYNBIOBACTERIUM_KA13_MEDIUM.yaml","synbiobacterium_ka13_medium"],["mineral_medium_with_2_chlorobenzoate.yaml","mineral_medium_with_2_chlorobenzoate"],["synbiobacterium_ka13_medium__e7f47e80.yaml","synbiobacterium_ka13_medium"]]},{"id":"CHEBI:28621","l":"triethanolamine","na":1,"nb":4,"a":[["mapped/Triethanolamine.yaml","Triethanolamine"]],"b":[["LACTOBACILLUS_PONTIS_MEDIUM.yaml","lactobacillus_pontis_medium"],["lactobacillus_pontis_medium__899ad629.yaml","lactobacillus_pontis_medium"],["mic_cit_herriott_et_al.yaml","mic_cit_herriott_et_al"],["mic_herriott_et_al.yaml","mic_herriott_et_al"]]},{"id":"CHEBI:28631","l":"3-phenylpropionic acid","na":1,"nb":4,"a":[["mapped/Phenyl_Propionic_Acid.yaml","Phenyl propionic acid"]],"b":[["ENDOMICROBIUM_PROAVITUM_RSA_MEDIUM.yaml","endomicrobium_proavitum_rsa_medium"],["MODIFIED_AM5_MEDIUM_2.yaml","modified_am5_medium_2"],["am5_medium_elusimicrobium_medium.yaml","am5_medium_elusimicrobium_medium"],["endomicrobium_proavitum_rsa_medium__51692939.yaml","endomicrobium_proavitum_rsa_medium"]]},{"id":"CHEBI:30563","l":"silicon dioxide","na":1,"nb":4,"a":[["mapped/Sio2.yaml","SiO2"]],"b":[["HALANAEROBIUM_HYDROGENIFORMANS_MEDIUM.yaml","halanaerobium_hydrogeniformans_medium"],["halanaerobium_hydrogeniformans_medium__4da99b2d.yaml","halanaerobium_hydrogeniformans_medium"],["halanaerobium_hydrogeniformans_medium_sl_hp.yaml","halanaerobium_hydrogeniformans_medium_sl_hp"],["togo_medium_m2562.yaml","togo_medium_m2562"]]},{"id":"CHEBI:30745","l":"phenylacetic acid","na":1,"nb":4,"a":[["mapped/Phenyl_Acetic_Acid.yaml","Phenyl acetic acid"]],"b":[["ENDOMICROBIUM_PROAVITUM_RSA_MEDIUM.yaml","endomicrobium_proavitum_rsa_medium"],["MODIFIED_AM5_MEDIUM_2.yaml","modified_am5_medium_2"],["am5_medium_elusimicrobium_medium.yaml","am5_medium_elusimicrobium_medium"],["endomicrobium_proavitum_rsa_medium__51692939.yaml","endomicrobium_proavitum_rsa_medium"]]},{"id":"CHEBI:31235","l":"Arginine hydrochloride","na":1,"nb":4,"a":[["mapped/L-arginine_X_Hcl.yaml","L-Arginine x HCl"]],"b":[["SEDIMENTIBACTER_MEDIUM.yaml","sedimentibacter_medium"],["SEDIMENTIBACTER_SAALENSIS_MEDIUM.yaml","sedimentibacter_saalensis_medium"],["b12_medium_guttman.yaml","b12_medium_guttman"],["mycoplasma_medium_cip_medium_89.yaml","mycoplasma_medium_cip_medium_89"]]},{"id":"CHEBI:41688","l":"crystal violet","na":1,"nb":4,"a":[["mapped/Crystal_Violet.yaml","Crystal Violet"]],"b":[["1298.yaml","1298"],["ALKALINE_CELLULOSE_AGAR.yaml","alkaline_cellulose_agar"],["acido_thermophile_medium.yaml","acido_thermophile_medium"],["modified_eggerth_gagnon_medium.yaml","modified_eggerth_gagnon_medium"]]},{"id":"CHEBI:48923","l":"erythromycin","na":1,"nb":4,"a":[["mapped/Erythromycin.yaml","erythromycin"]],"b":[["T2U_MEDIUM.yaml","t2u_medium"],["bhi_medium_modified.yaml","bhi_medium_modified"],["brain_heart_infusion_bhi_medium_supplemented_with_antibiotics.yaml","brain_heart_infusion_bhi_medium_supplemented_with_antibiotics"],["mrs_medium_containing_erythromycin.yaml","mrs_medium_containing_erythromycin"]]},{"id":"CHEBI:53425","l":"polysorbate 60","na":1,"nb":4,"a":[["mapped/Tween_60.yaml","Tween 60"]],"b":[["LEEMING_AND_NOTMAN_AGAR.yaml","leeming_and_notman_agar"],["leeming_amp_notman_agar_lna_leeming_amp_notman_1987_in_the_yeasts_a_taxonomic_study_5th_edn.yaml","leeming_amp_notman_agar_lna_leeming_amp_notman_1987_in_the_yeasts_a_taxonomic_study_5th_edn"],["leeming_amp_notman_agar_modified_mlna.yaml","leeming_amp_notman_agar_modified_mlna"],["leeming_and_notman_agar__33424fef.yaml","leeming_and_notman_agar"]]},{"id":"CHEBI:62955","l":"sodium 2-(N-morpholino)ethanesulfonate","na":1,"nb":4,"a":[["mapped/MES_sodium_salt.yaml","MES sodium salt"]],"b":[["CRBTM_UGA_Aerobic_MES.yaml","CRBTM UGA Aerobic MES"],["CRBTM_UGA_Anaerobic_MES.yaml","CRBTM UGA Anaerobic MES"],["RCH2_defined_glucose_MES.yaml","RCH2 defined glucose MES"],["ShewMM_MES_buffer.yaml","ShewMM MES buffer"]]},{"id":"CHEBI:75456","l":"2-stearoylglycerol","na":1,"nb":4,"a":[["mapped/Glycerol_Monostearate.yaml","Glycerol monostearate"]],"b":[["LEEMING_AND_NOTMAN_AGAR.yaml","leeming_and_notman_agar"],["leeming_amp_notman_agar_lna_leeming_amp_notman_1987_in_the_yeasts_a_taxonomic_study_5th_edn.yaml","leeming_amp_notman_agar_lna_leeming_amp_notman_1987_in_the_yeasts_a_taxonomic_study_5th_edn"],["leeming_amp_notman_agar_modified_mlna.yaml","leeming_amp_notman_agar_modified_mlna"],["leeming_and_notman_agar__33424fef.yaml","leeming_and_notman_agar"]]},{"id":"CHEBI:86153","l":"barium chloride dihydrate","na":1,"nb":4,"a":[["mapped/Bacl2_X_2_H2o.yaml","BaCl2 x 2 H2O"]],"b":[["HALOARCHAEUM_SALINUM_MEDIUM.yaml","haloarchaeum_salinum_medium"],["MH1_MEDIUM_FOR_SALIARCHAEUM_RUBRODURUM.yaml","mh1_medium_for_saliarchaeum_rubrodurum"],["haloarchaeal_medium_mh_1.yaml","haloarchaeal_medium_mh_1"],["mh1_medium_for_saliarchaeum_rubrodurum__2eb8bad1.yaml","mh1_medium_for_saliarchaeum_rubrodurum"]]},{"id":"CHEBI:86370","l":"neutral red","na":1,"nb":4,"a":[["mapped/Neutral_red.yaml","Neutral red"]],"b":[["1298.yaml","1298"],["ALKALINE_CELLULOSE_AGAR.yaml","alkaline_cellulose_agar"],["acido_thermophile_medium.yaml","acido_thermophile_medium"],["modified_eggerth_gagnon_medium.yaml","modified_eggerth_gagnon_medium"]]},{"id":"FOODON:03302071","l":"","na":1,"nb":4,"a":[["mapped/Soyton.yaml","Soyton"]],"b":[["948_oxoid_nutrient_broth_with_additonal_salt.yaml","948_oxoid_nutrient_broth_with_additonal_salt"],["clostridium_estertheticum_medium.yaml","clostridium_estertheticum_medium"],["clostridium_longisporum_medium.yaml","clostridium_longisporum_medium"],["nutrient_broth__3e8602c5.yaml","nutrient broth"]]},{"id":"KEGG:malt","l":"","na":1,"nb":4,"a":[["mapped/Maltose.yaml","Maltose"]],"b":[["bm_in_maltose_hodgson_et_al.yaml","bm_in_maltose_hodgson_et_al"],["liquid_mm_with_maltose_hodgson_et_al.yaml","liquid_mm_with_maltose_hodgson_et_al"],["modified_vogel_medium_maltose.yaml","modified_vogel_medium_maltose"],["rdm_base_medium_vitamins_maltose_1_g_l_nh4cl.yaml","rdm_base_medium_vitamins_maltose_1_g_l_nh4cl"]]},{"id":"UBERON:0000178","l":"blood","na":1,"nb":4,"a":[["mapped/Blood.yaml","Blood"]],"b":[["blood_agar__45bfc12d.yaml","blood_agar"],["columbia_blood_agar_with_5_horse_blood__65a36f66.yaml","columbia_blood_agar_with_5_horse_blood"],["columbia_blood_agar_with_5_rabbit_blood__0ed590f0.yaml","columbia_blood_agar_with_5_rabbit_blood"],["columbia_blood_agar_with_5_sheep_blood__5f55f46d.yaml","columbia_blood_agar_with_5_sheep_blood"]]},{"id":"CHEBI:131383","l":"2,2,4,4,6,8,8-heptamethylnonane","na":1,"nb":3,"a":[["mapped/2244688-heptamethylnonane.yaml","2,2,4,4,6,8,8-Heptamethylnonane"]],"b":[["DESULFOBACTERIUM_NAPHTHALENIVOLANS_MEDIUM.yaml","desulfobacterium_naphthalenivolans_medium"],["DESULFOVIRGA_MEDIUM.yaml","desulfovirga_medium"],["desulfobacterium_naphthalenivolans_medium__c96254de.yaml","desulfobacterium_naphthalenivolans_medium"]]},{"id":"CHEBI:132100","l":"sodium octanoate","na":1,"nb":3,"a":[["mapped/Sodium_Octanoate.yaml","Sodium octanoate"]],"b":[["DESULFOCELLA_MEDIUM.yaml","desulfocella_medium"],["desulfobotulus_par22n_medium__bd3fccf7.yaml","desulfobotulus_par22n_medium"],["desulfocella_medium__34fcb342.yaml","desulfocella_medium"]]},{"id":"CHEBI:140435","l":"","na":1,"nb":3,"a":[["mapped/cholesterol.yaml","cholesterol"]],"b":[["CDM_LP.yaml","cdm_lp"],["Nematode_growth_medium_agar.yaml","Nematode growth medium agar"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:15443","l":"inulin","na":1,"nb":3,"a":[["mapped/Inulin.yaml","Inulin"]],"b":[["PSEUDOCLOSTRIDIUM_MEDIUM.yaml","pseudoclostridium_medium"],["medium_for_strain_m6_x2.yaml","medium_for_strain_m6_x2"],["pseudoclostridium_medium__bbe4204c.yaml","pseudoclostridium_medium"]]},{"id":"CHEBI:15846","l":"NAD(+)","na":1,"nb":3,"a":[["mapped/Beta-nad.yaml","beta-NAD"]],"b":[["Vulcanimicrobium_alpinus_medium.yaml","vulcanimicrobium_alpinus_medium"],["ctm_medium__057c0b18.yaml","ctm_medium"],["treponema_isopterocola_medium__e7b07692.yaml","treponema_isopterocola_medium"]]},{"id":"CHEBI:15887","l":"5-aminopentanoic acid","na":1,"nb":3,"a":[["mapped/5-aminovaleric_Acid.yaml","5-Aminovaleric acid"]],"b":[["ANAEROBIOSPIRILLUM_THOMASII_MEDIUM.yaml","anaerobiospirillum_thomasii_medium"],["CLOSTRIDIUM_VIRIDE_MEDIUM.yaml","clostridium_viride_medium"],["clostridium_aminovalericum_medium.yaml","clostridium_aminovalericum_medium"]]},{"id":"CHEBI:16238","l":"FAD","na":1,"nb":3,"a":[["mapped/Fad.yaml","FAD"]],"b":[["HELMUTKOENIGIA_MEDIUM.yaml","helmutkoenigia_medium"],["TREPONEMA_ISOPTEROCOLA_MEDIUM.yaml","treponema_isopterocola_medium"],["treponema_isopterocola_medium__e7b07692.yaml","treponema_isopterocola_medium"]]},{"id":"CHEBI:16482","l":"naphthalene","na":1,"nb":3,"a":[["mapped/Naphthalene.yaml","Naphthalene"]],"b":[["DESULFOBACTERIUM_NAPHTHALENIVOLANS_MEDIUM.yaml","desulfobacterium_naphthalenivolans_medium"],["LB_Medium_with_50_ppm_Naphthalene.yaml","lb_medium_with_50_ppm_naphthalene"],["desulfobacterium_naphthalenivolans_medium__c96254de.yaml","desulfobacterium_naphthalenivolans_medium"]]},{"id":"CHEBI:16919","l":"creatine","na":1,"nb":3,"a":[["mapped/Creatine.yaml","Creatine"]],"b":[["ETHANOLOGENBACTERIUM_MEDIUM.yaml","ethanologenbacterium_medium"],["TISSIERELLA_CREATINOPHILA_MEDIUM.yaml","tissierella_creatinophila_medium"],["ethanologenbacterium_medium__27eb2844.yaml","ethanologenbacterium_medium"]]},{"id":"CHEBI:17108","l":"D-arabinose","na":1,"nb":3,"a":[["mapped/D-arabinose.yaml","D-Arabinose"]],"b":[["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"],["Soil_Defined_Media_%28SDM%29.yaml","Soil Defined Media (SDM)"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:18135","l":"catechol","na":1,"nb":3,"a":[["mapped/Pyrocatechol.yaml","Pyrocatechol"]],"b":[["DESULFOBACTERIUM_CATECHOLICUM_MEDIUM.yaml","desulfobacterium_catecholicum_medium"],["DESULFOCASTAENA_MEDIUM.yaml","desulfocastaena_medium"],["desulfobacterium_catecholicum_medium__b7c6198a.yaml","desulfobacterium_catecholicum_medium"]]},{"id":"CHEBI:22599","l":"arabinose","na":1,"nb":3,"a":[["mapped/Arabinose.yaml","Arabinose"]],"b":[["MAG_Modified_arabinose_gluconate_medium.yaml","mag_modified_arabinose_gluconate_medium"],["mrs_medium__1506cddd.yaml","mrs_medium"],["togo_medium_m1594.yaml","togo_medium_m1594"]]},{"id":"CHEBI:25351","l":"mevalonic acid","na":1,"nb":3,"a":[["mapped/Dl-mevalonic_Acid.yaml","DL-mevalonic acid"]],"b":[["LACTOBACILLUS_MEDIUM_III.yaml","lactobacillus_medium_iii"],["lactobacillus_medium_ii__915ff5f7.yaml","lactobacillus_medium_ii"],["lactobacillus_medium_iii__eb3ab598.yaml","lactobacillus_medium_iii"]]},{"id":"CHEBI:26977","l":"thiosulfate","na":1,"nb":3,"a":[["mapped/Thiosulfate.yaml","Thiosulfate"]],"b":[["AMOEBOBACTER_MEDIUM.yaml","amoebobacter_medium"],["Artificial_seawater_base_with_thiosulfate_as_the_electron_donor.yaml","artificial_seawater_base_with_thiosulfate_as_the_electron_donor"],["pfennigs_medium__4e5aaa08.yaml","pfennigs_medium"]]},{"id":"CHEBI:27226","l":"uric acid","na":1,"nb":3,"a":[["mapped/Uric_Acid.yaml","Uric acid"]],"b":[["GOTTSCHALKIA_MEDIUM.yaml","gottschalkia_medium"],["gottschalkia_medium__e065303f.yaml","gottschalkia_medium"],["togo_medium_m1449.yaml","togo_medium_m1449"]]},{"id":"CHEBI:28145","l":"dibenzofuran","na":1,"nb":3,"a":[["mapped/Dibenzofuran.yaml","Dibenzofuran"]],"b":[["MINERAL_MEDIUM_WITH_DIBENZOFURAN.yaml","mineral_medium_with_dibenzofuran"],["cfmm_medium_0_1_dibenzofuran.yaml","cfmm_medium_0_1_dibenzofuran"],["mineral_medium_with_2_chlorobenzoate.yaml","mineral_medium_with_2_chlorobenzoate"]]},{"id":"CHEBI:28675","l":"dextrin","na":1,"nb":3,"a":[["mapped/Dextrin.yaml","Dextrin"]],"b":[["dt_medium_ph_3_5.yaml","dt_medium_ph_3_5"],["hickey_amp_tresner_agar.yaml","hickey_amp_tresner_agar"],["hickey_tresner_agar.yaml","hickey_tresner_agar"]]},{"id":"CHEBI:28842","l":"octadecanoic acid","na":1,"nb":3,"a":[["mapped/Stearic_Acid.yaml","Stearic acid"]],"b":[["DESULFOBACTERIUM_OLEOVORANS_MEDIUM.yaml","desulfobacterium_oleovorans_medium"],["DESULFOSUDIS_MEDIUM.yaml","desulfosudis_medium"],["desulfobacterium_oleovorans_medium__e2b50742.yaml","desulfobacterium_oleovorans_medium"]]},{"id":"CHEBI:30763","l":"4-hydroxybenzoic acid","na":1,"nb":3,"a":[["mapped/4-hydroxybenzoic_Acid.yaml","4-Hydroxybenzoic acid"]],"b":[["CRYPTOANAEROBACTER_MEDIUM.yaml","cryptoanaerobacter_medium"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"],["ui_medium__2735cbfb.yaml","ui_medium"]]},{"id":"CHEBI:32816","l":"pyruvic acid","na":1,"nb":3,"a":[["mapped/Pyruvic_Acid.yaml","Pyruvic acid"]],"b":[["ALGORIPHAGUS_ALKALIPHILUS_MEDIUM.yaml","algoriphagus_alkaliphilus_medium"],["modified_mrs.yaml","modified_mrs"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:37583","l":"trisodium phosphate","na":3,"nb":1,"a":[["mapped/Na2hpo4.yaml","Na2HPO4"],["mapped/Nah2po4.yaml","NaH2PO4"],["mapped/Sodium_Phosphate_Dibasic.yaml","Sodium phosphate dibasic"]],"b":[["defined_freshwater_medium_coso4.yaml","defined_freshwater_medium_coso4"]]},{"id":"CHEBI:41218","l":"mercaptoethanol","na":1,"nb":3,"a":[["mapped/2-mercaptoethanol.yaml","2-Mercaptoethanol"]],"b":[["MODIFIED_METHANOCALDOCOCCUS_MEDIUM.yaml","modified_methanocaldococcus_medium"],["modified_methanocaldococcus_medium__db540ec9.yaml","modified_methanocaldococcus_medium"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:41250","l":"bis-tris","na":1,"nb":3,"a":[["mapped/Bis-tris.yaml","Bis-Tris"]],"b":[["METHYLOPHAGA_MEDIUM.yaml","methylophaga_medium"],["Methylophaga_Medium_1403.yaml","methylophaga_medium_1403"],["methylophaga_medium_1403_add_agar.yaml","methylophaga_medium_1403_add_agar"]]},{"id":"CHEBI:41808","l":"decane","na":1,"nb":3,"a":[["mapped/N-decane.yaml","n-Decane"]],"b":[["DESULFOGLAEBA_MEDIUM.yaml","desulfoglaeba_medium"],["MODIFIED_DESULFOGLAEBA_ALKANEXEDENS_MEDIUM.yaml","modified_desulfoglaeba_alkanexedens_medium"],["modified_desulfoglaeba_alkanexedens_medium__f10b64fd.yaml","modified_desulfoglaeba_alkanexedens_medium"]]},{"id":"CHEBI:47965","l":"N-acetylmuramic acid","na":3,"nb":1,"a":[["mapped/N-acetyl-muramic_Acid.yaml","n-Acetyl-muramic acid"],["mapped/N-acetylmuramic_Acid.yaml","N-acetylmuramic acid"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]],"b":[["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:53311","l":"sodium alginate","na":1,"nb":3,"a":[["mapped/Sodium_Alginate.yaml","Sodium alginate"]],"b":[["ALGINATE_MEDIUM.yaml","alginate_medium"],["alginate_medium__8987a8ad.yaml","alginate_medium"],["marine_broth_2216_0_5_alginate.yaml","marine_broth_2216_0_5_alginate"]]},{"id":"CHEBI:53423","l":"polysorbate 40","na":1,"nb":3,"a":[["mapped/Tween_40.yaml","Tween 40"]],"b":[["MDA.yaml","mda"],["PITYROSPORUM_MEDIUM.yaml","pityrosporum_medium"],["modified_dixon_s_agar.yaml","modified_dixon_s_agar"]]},{"id":"CHEBI:6109","l":"kanamycin A sulfate","na":1,"nb":3,"a":[["mapped/Kanamycin_Sulfate.yaml","Kanamycin sulfate"]],"b":[["R2A_Kan10_Lactate.yaml","R2A_Kan10_Lactate"],["R2A_Kan50_Tween01_Cycloheximide200.yaml","R2A_Kan50_Tween01_Cycloheximide200"],["lb_luria_bertani_agar_with_kanamycin_and_rifampicin__0472ff8f.yaml","lb_luria_bertani_agar_with_kanamycin_and_rifampicin"]]},{"id":"CHEBI:62964","l":"magnesium acetate","na":1,"nb":3,"a":[["mapped/Magnesium_Acetate.yaml","Magnesium acetate"]],"b":[["Green_Sulfur_Bacterium_Medium.yaml","green_sulfur_bacterium_medium"],["green_sulfur_bacterium_medium_1_nacl.yaml","green_sulfur_bacterium_medium_1_nacl"],["pfennigs_medium_iii.yaml","pfennigs_medium_iii"]]},{"id":"CHEBI:6872","l":"methylene blue","na":1,"nb":3,"a":[["mapped/Methylene_Blue.yaml","Methylene blue"]],"b":[["HALANAEROBIUM_HYDROGENIFORMANS_MEDIUM.yaml","halanaerobium_hydrogeniformans_medium"],["halanaerobium_hydrogeniformans_medium__4da99b2d.yaml","halanaerobium_hydrogeniformans_medium"],["togo_medium_m2562.yaml","togo_medium_m2562"]]},{"id":"CHEBI:84015","l":"(1R,2R)-diclocymet","na":1,"nb":3,"a":[["mapped/Tapso.yaml","TAPSO"]],"b":[["ONR7a_MEDIUM.yaml","onr7a_medium"],["onr7a_medium__1fd831cc.yaml","onr7a_medium"],["onr7a_medium__d3523857.yaml","onr7a_medium"]]},{"id":"CHEBI:86154","l":"bromocresol purple","na":1,"nb":3,"a":[["mapped/Bromocresol_Purple.yaml","Bromocresol purple"]],"b":[["HALOTHIOBACILLUS_NEAPOLITANUS_MEDIUM.yaml","halothiobacillus_neapolitanus_medium"],["THERMITHIOBACILLUS_MEDIUM.yaml","thermithiobacillus_medium"],["thiobacillus_thioparus_tk_m_medium.yaml","thiobacillus_thioparus_tk_m_medium"]]},{"id":"CHEBI:91257","l":"disodium hydrogenarsenate heptahydrate","na":1,"nb":3,"a":[["mapped/Na2haso4_X_7_H2o.yaml","Na2HAsO4 x 7 H2O"]],"b":[["desulfuribacillus_medium_arsenate.yaml","desulfuribacillus_medium_arsenate"],["mlms_1_medium_arsenate.yaml","mlms_1_medium_arsenate"],["seleniivibrio_medium_arsenate.yaml","seleniivibrio_medium_arsenate"]]},{"id":"CHEBI:91261","l":"disodium (S)-malate","na":1,"nb":3,"a":[["mapped/Sodium_Malate.yaml","Sodium malate"]],"b":[["RHODOPSEUDOMONAS_RUTILA_MEDIUM.yaml","rhodopseudomonas_rutila_medium"],["rhodopseudomonas_rutila_medium__d1b05a43.yaml","rhodopseudomonas_rutila_medium"],["rhodovulum_imhoffii_medium__ba892fd4.yaml","rhodovulum_imhoffii_medium"]]},{"id":"KEGG:gthrd","l":"","na":1,"nb":3,"a":[["mapped/Glutathione.yaml","Glutathione"]],"b":[["CDM_LP.yaml","cdm_lp"],["mma_klein_et_al.yaml","mma_klein_et_al"],["mmb_klein_et_al.yaml","mmb_klein_et_al"]]},{"id":"KEGG:hxan","l":"","na":1,"nb":3,"a":[["mapped/Hypoxanthine.yaml","Hypoxanthine"]],"b":[["CDM_LP.yaml","cdm_lp"],["mic_cit_herriott_et_al.yaml","mic_cit_herriott_et_al"],["mic_herriott_et_al.yaml","mic_herriott_et_al"]]},{"id":"KEGG:thym","l":"","na":1,"nb":3,"a":[["mapped/Thymine.yaml","Thymine"]],"b":[["Asp2.yaml","asp2"],["CDM_LP.yaml","cdm_lp"],["glucose_minimal_media_shehata_et_al.yaml","glucose_minimal_media_shehata_et_al"]]},{"id":"KEGG:thymd","l":"","na":1,"nb":3,"a":[["mapped/Thymidine.yaml","Thymidine"]],"b":[["MCD_Medium.yaml","mcd_medium"],["cdm_teusink_et_al.yaml","cdm_teusink_et_al"],["complete_chemically_defined_medium.yaml","complete_chemically_defined_medium"]]},{"id":"KEGG:tol","l":"","na":1,"nb":3,"a":[["mapped/Toluene.yaml","Toluene"]],"b":[["Modified_m9_with_toluene.yaml","modified_m9_with_toluene"],["defined_freshwater_medium_cocl2__6b305113.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__35d08dce.yaml","defined_freshwater_medium_coso4"]]},{"id":"CHEBI:114786","l":"sodium disulfite","na":1,"nb":2,"a":[["mapped/Na2s2o5.yaml","Na2S2O5"]],"b":[["CALDIMICROBIUM_THIODISMUTANS_MEDIUM.yaml","caldimicrobium_thiodismutans_medium"],["DESULFOLUTIVIBRIO_MEDIUM.yaml","desulfolutivibrio_medium"]]},{"id":"CHEBI:131371","l":"iron(3+) phosphate","na":1,"nb":2,"a":[["mapped/Fepo4.yaml","FePO4"]],"b":[["Marine_2216E_medium.yaml","marine_2216e_medium"],["ytbc_medium.yaml","ytbc_medium"]]},{"id":"CHEBI:131372","l":"iron(3+) phosphate tetrahydrate","na":1,"nb":2,"a":[["mapped/Fe_Iiipo4_X_4_H2o.yaml","Fe(III)PO4 x 4 H2O"]],"b":[["LEUCOTHRIX_MEDIUM.yaml","leucothrix_medium"],["MARINE_AGAR.yaml","marine_agar"]]},{"id":"CHEBI:131839","l":"sodium dodecanoate","na":1,"nb":2,"a":[["mapped/Na-laurate.yaml","Na-laurate"]],"b":[["SYNTROPHOMONAS_SAPOVORANS_MEDIUM.yaml","syntrophomonas_sapovorans_medium"],["SYNTROPHOMONAS_ZEHNDERI_MEDIUM.yaml","syntrophomonas_zehnderi_medium"]]},{"id":"CHEBI:136511","l":"manganese dioxide","na":1,"nb":2,"a":[["mapped/Mno2.yaml","MnO2"]],"b":[["SULFURIMONAS_MARISNIGRI_MEDIUM.yaml","sulfurimonas_marisnigri_medium"],["abss2__1d326b00.yaml","abss2"]]},{"id":"CHEBI:15676","l":"allantoin","na":1,"nb":2,"a":[["mapped/Allantoin.yaml","Allantoin"]],"b":[["ALLANTOIN_MINERAL_MEDIUM.yaml","allantoin_mineral_medium"],["allantoin_mineral_medium__75896b1e.yaml","allantoin_mineral_medium"]]},{"id":"CHEBI:15728","l":"4-guanidinobutanoic acid","na":1,"nb":2,"a":[["mapped/4-guanidinobutyric_Acid.yaml","4-Guanidinobutyric acid"]],"b":[["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"],["Soil_Defined_Media_%28SDM%29.yaml","Soil Defined Media (SDM)"]]},{"id":"CHEBI:16261","l":"chitosan","na":1,"nb":2,"a":[["mapped/Chitosan.yaml","Chitosan"]],"b":[["HALOACTINOMYCES_HALOPHILUS_MEDIUM.yaml","haloactinomyces_halophilus_medium"],["Matsuaria_Medium.yaml","matsuaria_medium"]]},{"id":"CHEBI:16450","l":"","na":1,"nb":2,"a":[["mapped/2-deoxyuridine.yaml","2'-Deoxyuridine"]],"b":[["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"],["Soil_Defined_Media_%28SDM%29.yaml","Soil Defined Media (SDM)"]]},{"id":"CHEBI:17045","l":"dinitrogen oxide","na":1,"nb":2,"a":[["mapped/Nitrous_Oxide.yaml","nitrous oxide"]],"b":[["PM_N2O.yaml","PM N2O"],["PM_argon75_N2O25.yaml","PM argon75 N2O25"]]},{"id":"CHEBI:17924","l":"D-glucitol","na":1,"nb":2,"a":[["mapped/D-sorbitol.yaml","D-Sorbitol"]],"b":[["5_sorbitol_medium.yaml","5_sorbitol_medium"],["5_sorbitol_medium__c395a410.yaml","5_sorbitol_medium"]]},{"id":"CHEBI:18026","l":"2,3-dihydroxybenzoic acid","na":1,"nb":2,"a":[["mapped/23-dihydroxybenzoic_Acid.yaml","2,3-dihydroxybenzoic acid"]],"b":[["M9_minimal_media_aromix_noCarbon.yaml","M9 minimal media aromix noCarbon"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"]]},{"id":"CHEBI:18095","l":"trans-4-hydroxy-L-proline","na":1,"nb":2,"a":[["mapped/Hydroxy-l-proline.yaml","Hydroxy-L-Proline"]],"b":[["RPMI.yaml","RPMI"],["RPMI_with_Fetal_bovine_serum_Conditioned.yaml","RPMI with Fetal bovine serum Conditioned"]]},{"id":"CHEBI:18287","l":"L-fucose","na":1,"nb":2,"a":[["mapped/L-fucose.yaml","L-Fucose"]],"b":[["PONTIELLA_MEDIUM.yaml","pontiella_medium"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:183882","l":"3-(cyclohexylamino)-2-hydroxy-1-propanesulfonic acid","na":1,"nb":2,"a":[["mapped/Capso.yaml","CAPSO"]],"b":[["RT2_MEDIUM.yaml","rt2_medium"],["rt2_medium__df06dcd8.yaml","rt2_medium"]]},{"id":"CHEBI:18403","l":"L-arabinitol","na":1,"nb":2,"a":[["mapped/Arabitol.yaml","Arabitol"]],"b":[["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"],["Soil_Defined_Media_%28SDM%29.yaml","Soil Defined Media (SDM)"]]},{"id":"CHEBI:189426","l":"Pyridoxine dihydrochloride","na":1,"nb":2,"a":[["mapped/Pyridoxine_dihydrochloride.yaml","Pyridoxine dihydrochloride"]],"b":[["Medium_for_strain_C_G2.yaml","medium_for_strain_c_g2"],["Medium_for_strain_C_L2.yaml","medium_for_strain_c_l2"]]},{"id":"CHEBI:195690","l":"L-Ornithine monochlorohydrate/ornithine","na":1,"nb":2,"a":[["mapped/L-ornithine_Monohydrochloride.yaml","L-ornithine monohydrochloride"]],"b":[["SCFM.yaml","SCFM"],["SCFM_10mMNitrate.yaml","SCFM 10mMNitrate"]]},{"id":"CHEBI:22660","l":"aspartic acid","na":2,"nb":1,"a":[["mapped/DL-Tyrosine.yaml","DL-Tyrosine"],["mapped/Dl-aspartic_Acid.yaml","DL-aspartic acid"]],"b":[["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"]]},{"id":"CHEBI:234557","l":"sodium palmitate","na":1,"nb":2,"a":[["mapped/Sodium_Palmitate.yaml","Sodium palmitate"]],"b":[["DESULFATIBACILLUS_OLEFINIVORANS_MEDIUM.yaml","desulfatibacillus_olefinivorans_medium"],["desulfatiferula_berrense_medium__83f13d53.yaml","desulfatiferula_berrense_medium"]]},{"id":"CHEBI:23673","l":"2,6-diaminopimelic acid","na":1,"nb":2,"a":[["mapped/Diaminopimelic_Acid.yaml","Diaminopimelic acid"]],"b":[["CHI_1776_MEDIUM.yaml","chi_1776_medium"],["dap_nutrient_agar.yaml","dap_nutrient_agar"]]},{"id":"CHEBI:27941","l":"pullulan","na":1,"nb":2,"a":[["mapped/Pullulan.yaml","Pullulan"]],"b":[["ARTIFICIAL_SEAWATER_MEDIUM_WITH_PULLULAN.yaml","artificial_seawater_medium_with_pullulan"],["artificial_seawater_medium_with_pullulan__dbb4c222.yaml","artificial_seawater_medium_with_pullulan"]]},{"id":"CHEBI:28053","l":"melibiose","na":1,"nb":2,"a":[["mapped/Melibiose.yaml","Melibiose"]],"b":[["MP_AGAR.yaml","mp_agar"],["mp_agar__3414ec19.yaml","mp_agar"]]},{"id":"CHEBI:28077","l":"rifampicin","na":1,"nb":2,"a":[["mapped/Rifampicin.yaml","Rifampicin"]],"b":[["lb_luria_bertani_agar_with_kanamycin_and_rifampicin__0472ff8f.yaml","lb_luria_bertani_agar_with_kanamycin_and_rifampicin"],["luria_bertani_lb_antibiotics.yaml","luria_bertani_lb_antibiotics"]]},{"id":"CHEBI:28997","l":"","na":1,"nb":2,"a":[["mapped/2-deoxyinosine.yaml","2'-Deoxyinosine"]],"b":[["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"],["Soil_Defined_Media_%28SDM%29.yaml","Soil Defined Media (SDM)"]]},{"id":"CHEBI:29958","l":"L-aspartic acid residue","na":2,"nb":1,"a":[["mapped/D.yaml","D"],["mapped/Sodium_Lactate.yaml","Sodium lactate"]],"b":[["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:30764","l":"3-hydroxybenzoic acid","na":1,"nb":2,"a":[["mapped/3-hydroxybenzoic_Acid.yaml","3-Hydroxybenzoic acid"]],"b":[["ANAEROBIOSPIRILLUM_THOMASII_MEDIUM.yaml","anaerobiospirillum_thomasii_medium"],["sporotomaculum_medium.yaml","sporotomaculum_medium"]]},{"id":"CHEBI:31340","l":"Calcium folinate","na":1,"nb":2,"a":[["mapped/Ca-folinate.yaml","Ca-folinate"]],"b":[["HELMUTKOENIGIA_MEDIUM.yaml","helmutkoenigia_medium"],["treponema_isopterocola_medium__e7b07692.yaml","treponema_isopterocola_medium"]]},{"id":"CHEBI:32586","l":"sodium sulfate decahydrate","na":1,"nb":2,"a":[["mapped/Na2so4_X_10_H2o.yaml","Na2SO4 x 10 H2O"]],"b":[["FERROUS_SULFATE_YEAST_EXTRACT_MEDIUM.yaml","ferrous_sulfate_yeast_extract_medium"],["ferrous_sulfate_yeast_extract_medium__1abf3821.yaml","ferrous_sulfate_yeast_extract_medium"]]},{"id":"CHEBI:32596","l":"calcium hydrogenphosphate","na":1,"nb":2,"a":[["mapped/Cahpo4.yaml","CaHPO4"]],"b":[["MCH.yaml","mch"],["pc__c50558b8.yaml","pc"]]},{"id":"CHEBI:33942","l":"ribose","na":1,"nb":2,"a":[["mapped/Ribose.yaml","Ribose"]],"b":[["MODIFIED_OTI_MEDIUM.yaml","modified_oti_medium"],["oteb_medium.yaml","oteb_medium"]]},{"id":"CHEBI:34653","l":"Congo Red","na":1,"nb":2,"a":[["mapped/Congo_Red.yaml","Congo red"]],"b":[["Yeast_Extract_Mannitol_Agar_Medium.yaml","yeast_extract_mannitol_agar_medium"],["yeast_extract_mannitol_agar_medium__20c5fe1b.yaml","yeast_extract_mannitol_agar_medium"]]},{"id":"CHEBI:35366","l":"fatty acid","na":1,"nb":2,"a":[["mapped/Fatty_Acid_Mixture_See_Medium_No_266.yaml","Fatty acid mixture (see Medium No. 266)"]],"b":[["MODIFIED_AM5_MEDIUM_2.yaml","modified_am5_medium_2"],["modified_am5_medium__421a5fe8.yaml","modified_am5_medium"]]},{"id":"CHEBI:35697","l":"trans-cinnamic acid","na":2,"nb":1,"a":[["mapped/Cinnamic_Acid.yaml","Cinnamic acid"],["mapped/Trans-cinnamic_Acid.yaml","trans-Cinnamic acid"]],"b":[["PAPILLIBACTER_MEDIUM.yaml","papillibacter_medium"]]},{"id":"CHEBI:35899","l":"crotonate","na":1,"nb":2,"a":[["mapped/Na-crotonate.yaml","Na-crotonate"]],"b":[["SERPENTINICELLA_MEDIUM.yaml","serpentinicella_medium"],["for_dsm_17722.yaml","for_dsm_17722"]]},{"id":"CHEBI:36018","l":"1,1,2-trichloroethane","na":1,"nb":2,"a":[["mapped/112-trichloroethane.yaml","1,1,2-Trichloroethane"]],"b":[["ip3_3_medium.yaml","ip3_3_medium"],["ip3_3_medium__726cb47b.yaml","ip3_3_medium"]]},{"id":"CHEBI:38267","l":"boronic acid","na":1,"nb":2,"a":[["mapped/H3bo2.yaml","H3BO2"]],"b":[["TELMATOSPIRILLUM_MEDIUM.yaml","telmatospirillum_medium"],["telmatospirillum_medium__43d2195f.yaml","telmatospirillum_medium"]]},{"id":"CHEBI:39054","l":"NTA","na":1,"nb":2,"a":[["mapped/Nta.yaml","NTA"]],"b":[["BASAL_MEDIUM.yaml","basal_medium"],["phosphate_buffered_basal_medium_pbbm.yaml","phosphate_buffered_basal_medium_pbbm"]]},{"id":"CHEBI:39060","l":"N-(2-acetamido)-2-aminoethanesulfonic acid","na":2,"nb":1,"a":[["mapped/Aces.yaml","ACES"],["mapped/N-_2-acetamido-2-aminoethanesulfonic_Acid.yaml","N-(2-acetamido)-2-aminoethanesulfonic acid"]],"b":[["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:4178","l":"D-glucuronic acid","na":2,"nb":1,"a":[["mapped/D-Glucuronic_Acid_Sodium_Salt_Monohydrate.yaml","D-Glucuronic acid sodium salt monohydrate"],["mapped/D-glucuronic_Acid.yaml","D-glucuronic acid"]],"b":[["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:49474","l":"argon(0)","na":1,"nb":2,"a":[["mapped/Argon.yaml","argon"]],"b":[["PM_argon.yaml","PM argon"],["PM_argon75_N2O25.yaml","PM argon75 N2O25"]]},{"id":"CHEBI:52071","l":"dextran","na":2,"nb":1,"a":[["mapped/Dextran.yaml","Dextran"],["unmapped/Dextran_Mw_1270.yaml","dextran, Mw ~1,270"]],"b":[["DEXTRAN_MEDIUM.yaml","dextran_medium"]]},{"id":"CHEBI:53389","l":"poly(3-hydroxybutyrate)","na":1,"nb":2,"a":[["mapped/Poly_3-hydroxybutyrate.yaml","Poly(3-hydroxybutyrate)"]],"b":[["PHB_AGAR.yaml","phb_agar"],["phb_agar__ec580e59.yaml","phb_agar"]]},{"id":"CHEBI:53633","l":"L-lysine hydrochloride","na":1,"nb":2,"a":[["mapped/L-lysine_Hcl.yaml","L-Lysine HCl"]],"b":[["SEDIMENTIBACTER_MEDIUM.yaml","sedimentibacter_medium"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:57912","l":"L-tryptophan zwitterion","na":1,"nb":2,"a":[["mapped/Dl-tryptophan.yaml","DL-Tryptophan"]],"b":[["acidaminococcus_fermentans_medium__d515a0ab.yaml","acidaminococcus_fermentans_medium"],["togo_medium_m1435.yaml","togo_medium_m1435"]]},{"id":"CHEBI:71240","l":"sodium diphosphate","na":1,"nb":2,"a":[["mapped/Sodium_Pyrophosphate.yaml","Sodium pyrophosphate"]],"b":[["FASTIDIOUS_ANAEROBE_BROTH_MEDIUM.yaml","fastidious_anaerobe_broth_medium"],["fastidious_anaerobe_broth_medium__334c6ed7.yaml","fastidious_anaerobe_broth_medium"]]},{"id":"CHEBI:81860","l":"Sodium oleate","na":1,"nb":2,"a":[["mapped/Sodium_Oleate.yaml","Sodium oleate"]],"b":[["MODIFIED_SYNTROPHOMONAS_MEDIUM_FOR_OL4.yaml","modified_syntrophomonas_medium_for_ol4"],["modified_syntrophomonas_medium_for_ol4__2684e102.yaml","modified_syntrophomonas_medium_for_ol4"]]},{"id":"CHEBI:85146","l":"carboxymethylcellulose","na":1,"nb":2,"a":[["mapped/Carboxymethyl_Cellulose.yaml","Carboxymethyl cellulose"]],"b":[["Alicyclobacillus_cellulosilyticus_Medium.yaml","alicyclobacillus_cellulosilyticus_medium"],["CARBOXYMETHYL_CELLULOSE_MEDIUM.yaml","carboxymethyl_cellulose_medium"]]},{"id":"CHEBI:86202","l":"chalcopyrite","na":1,"nb":2,"a":[["mapped/Chalcopyrite.yaml","Chalcopyrite"]],"b":[["acidianus_sp_jp7_medium.yaml","acidianus_sp_jp7_medium"],["acidianus_sp_jp7_medium__73757a06.yaml","acidianus_sp_jp7_medium"]]},{"id":"CHEBI:86355","l":"magnesium dichloride monohydrate","na":1,"nb":2,"a":[["mapped/Mgcl2_X_H2o.yaml","MgCl2 x H2O"]],"b":[["hydrogen_oxydizing_medium.yaml","hydrogen_oxydizing_medium"],["medium_for_co_culture_of_strain_jt_with_methanospirillum_hungatei_nbrc_100397.yaml","medium_for_co_culture_of_strain_jt_with_methanospirillum_hungatei_nbrc_100397"]]},{"id":"CHEBI:86473","l":"sodium molybdate heptahydrate","na":1,"nb":2,"a":[["mapped/Na2moo4_X_7_H2o.yaml","Na2MoO4 x 7 H2O"]],"b":[["BEIJERINCKIA_DOEBEREINERAE_MEDIUM.yaml","beijerinckia_doebereinerae_medium"],["py_broth.yaml","py_broth"]]},{"id":"CHEBI:91090","l":"charcoal","na":1,"nb":2,"a":[["mapped/Charcoal.yaml","Charcoal"]],"b":[["GILLIAMELLA_MEDIUM.yaml","gilliamella_medium"],["MALTEXTRACT_CHARCOAL_MEDIUM.yaml","maltextract_charcoal_medium"]]},{"id":"CHEBI:91241","l":"ammonium oxalate","na":1,"nb":2,"a":[["mapped/Nh4-oxalate.yaml","NH4-oxalate"]],"b":[["OXALOPHAGUS_MEDIUM.yaml","oxalophagus_medium"],["om_2_medium.yaml","om_2_medium"]]},{"id":"CHEBI:91246","l":"copper(II) sulfate hexahydrate","na":1,"nb":2,"a":[["mapped/Cuso4_X_6_H2o.yaml","CuSO4 x 6 H2O"]],"b":[["BEIJERINCKIA_MEDIUM.yaml","beijerinckia_medium"],["pe_medium__a4e2bbec.yaml","pe_medium"]]},{"id":"CHEBI:91251","l":"sodium glyoxylate","na":1,"nb":2,"a":[["mapped/Na2-glyoxalate.yaml","Na2-glyoxalate"]],"b":[["SYNTROPHOBOTULUS_MEDIUM.yaml","syntrophobotulus_medium"],["syntrophobotulus_medium__b40a5958.yaml","syntrophobotulus_medium"]]},{"id":"CHEBI:91263","l":"disodium maleate","na":1,"nb":2,"a":[["mapped/Sodium_Maleate.yaml","Sodium maleate"]],"b":[["MALEATE_LIQUID_MEDIUM.yaml","maleate_liquid_medium"],["maleate_liquid_medium__817e900d.yaml","maleate_liquid_medium"]]},{"id":"FOODON:03315424","l":"meat extract","na":2,"nb":1,"a":[["mapped/Meat_Extract.yaml","Meat Extract"],["mapped/Yeast_Meat_Extract_H2.yaml","Yeast + Meat Extract + H2"]],"b":[["mGAM.yaml","mGAM"]]},{"id":"KEGG:com","l":"","na":1,"nb":2,"a":[["mapped/2-mercaptoethanesulfonate.yaml","2-Mercaptoethanesulfonate"]],"b":[["mcn_medium_whitman.yaml","mcn_medium_whitman"],["mcna_medium_lupa.yaml","mcna_medium_lupa"]]},{"id":"KEGG:cu","l":"Calcium","na":1,"nb":2,"a":[["mapped/Copper.yaml","Copper"]],"b":[["tap_auto.yaml","tap_auto"],["tap_hetero_mixo.yaml","tap_hetero_mixo"]]},{"id":"KEGG:gal","l":"","na":1,"nb":2,"a":[["mapped/D-galactose.yaml","D-Galactose"]],"b":[["bm_in_galactose_hodgson_et_al.yaml","bm_in_galactose_hodgson_et_al"],["liquid_mm_with_galactose_hodgson_et_al.yaml","liquid_mm_with_galactose_hodgson_et_al"]]},{"id":"KEGG:meoh","l":"","na":1,"nb":2,"a":[["mapped/Methanol.yaml","Methanol"]],"b":[["fermentation_medium_methanol_nh4cl.yaml","fermentation_medium_methanol_nh4cl"],["hs_medium_methanol_acetate.yaml","hs_medium_methanol_acetate"]]},{"id":"KEGG:mndn","l":"","na":1,"nb":2,"a":[["mapped/Menadione.yaml","Menadione"]],"b":[["BGDM.yaml","bgdm"],["CDM_LP.yaml","cdm_lp"]]},{"id":"KEGG:mnl","l":"","na":1,"nb":2,"a":[["mapped/Mannitol.yaml","Mannitol"]],"b":[["Gotz_minimal_medium_with_mannitol.yaml","gotz_minimal_medium_with_mannitol"],["liquid_mm_with_mannitol_hodgson_et_al.yaml","liquid_mm_with_mannitol_hodgson_et_al"]]},{"id":"UBERON:0001977","l":"blood serum","na":2,"nb":1,"a":[["mapped/Rabbit_Serum.yaml","Rabbit serum"],["mapped/Serum.yaml","Serum"]],"b":[["mGAM.yaml","mGAM"]]},{"id":"CAS:7447-40-7)","l":"","na":1,"nb":1,"a":[["mapped/Kcl.yaml","KCl"]],"b":[["wc_medium__6b820ca9.yaml","wc_medium"]]},{"id":"CHEBI:113373","l":"sodium 3-hydroxybutyrate","na":1,"nb":1,"a":[["mapped/Na-3-hydroxybutyrate.yaml","Na-3-hydroxybutyrate"]],"b":[["ILYOBACTER_POLYTROPUS_MEDIUM.yaml","ilyobacter_polytropus_medium"]]},{"id":"CHEBI:115197","l":"sodium gallate","na":1,"nb":1,"a":[["mapped/Na-gallate.yaml","Na-gallate"]],"b":[["PELOBACTER_ACIDIGALLICI_MEDIUM.yaml","pelobacter_acidigallici_medium"]]},{"id":"CHEBI:131389","l":"magnesium citrate","na":1,"nb":1,"a":[["mapped/Mg-citrate.yaml","Mg-citrate"]],"b":[["l_wenstein_jensen_medium.yaml","l_wenstein_jensen_medium"]]},{"id":"CHEBI:131523","l":"manganese(II) sulfate hexahydrate","na":1,"nb":1,"a":[["mapped/Mnso4_X_6_H2o.yaml","MnSO4 x 6 H2O"]],"b":[["BEIJERINCKIA_MEDIUM.yaml","beijerinckia_medium"]]},{"id":"CHEBI:132101","l":"sodium orotate","na":1,"nb":1,"a":[["mapped/Na-orotate.yaml","Na-orotate"]],"b":[["FAECALICATENA_OROTICA_MEDIUM.yaml","faecalicatena_orotica_medium"]]},{"id":"CHEBI:132109","l":"sodium octadecanoate","na":1,"nb":1,"a":[["mapped/Na-stearate.yaml","Na-stearate"]],"b":[["SYNTROPHOMONAS_SD2_MEDIUM.yaml","syntrophomonas_sd2_medium"]]},{"id":"CHEBI:132748","l":"sodium vanillate","na":1,"nb":1,"a":[["mapped/Na-vanillate.yaml","Na-vanillate"]],"b":[["OXOBACTER_PFENNIGII_MEDIUM.yaml","oxobacter_pfennigii_medium"]]},{"id":"CHEBI:132762","l":"zinc sulfate hexahydrate","na":1,"nb":1,"a":[["mapped/Znso4_X_6_H2o.yaml","ZnSO4 x 6 H2O"]],"b":[["BEIJERINCKIA_MEDIUM.yaml","beijerinckia_medium"]]},{"id":"CHEBI:142468","l":"1,2-dichloropropane","na":1,"nb":1,"a":[["mapped/12-dichloropropane.yaml","1,2-Dichloropropane"]],"b":[["dehalogenimonas_medium__6a926cbc.yaml","dehalogenimonas_medium"]]},{"id":"CHEBI:16148","l":"heptadecane","na":1,"nb":1,"a":[["mapped/Heptadecane.yaml","Heptadecane"]],"b":[["THERMOMICROBIUM_FOSTERI_MEDIUM.yaml","thermomicrobium_fosteri_medium"]]},{"id":"CHEBI:16354","l":"N-methylhydantoin","na":1,"nb":1,"a":[["mapped/N-methylhydantoin.yaml","N-methylhydantoin"]],"b":[["tissierella_amo_1_medium.yaml","tissierella_amo_1_medium"]]},{"id":"CHEBI:16602","l":"trichloroethene","na":1,"nb":1,"a":[["mapped/Trichloroethylene.yaml","Trichloroethylene"]],"b":[["dehalococcoides_medium__9ce6016b.yaml","dehalococcoides_medium"]]},{"id":"CHEBI:16737","l":"creatinine","na":1,"nb":1,"a":[["mapped/Creatinine.yaml","Creatinine"]],"b":[["tissierella_sp_medium_creatinine.yaml","tissierella_sp_medium_creatinine"]]},{"id":"CHEBI:16867","l":"D-methionine","na":1,"nb":1,"a":[["mapped/D-Methionine.yaml","D-Methionine"]],"b":[["methionine_salt_schaechter_et_al.yaml","methionine_salt_schaechter_et_al"]]},{"id":"CHEBI:17151","l":"xylitol","na":1,"nb":1,"a":[["mapped/Xylitol.yaml","Xylitol"]],"b":[["atribacterium_medium__1e9c1fd9.yaml","atribacterium_medium"]]},{"id":"CHEBI:17189","l":"2,5-dihydroxybenzoic acid","na":1,"nb":1,"a":[["mapped/Gentisic_Acid.yaml","Gentisic acid"]],"b":[["syntrophus_hqg_1_medium.yaml","syntrophus_hqg_1_medium"]]},{"id":"CHEBI:17533","l":"N-acetyl-L-glutamic acid","na":1,"nb":1,"a":[["mapped/N-Acetyl-L-Glutamic_Acid.yaml","N-Acetyl-L-Glutamic Acid"]],"b":[["NLDM_defined.yaml","NLDM_defined"]]},{"id":"CHEBI:18248","l":"iron atom","na":1,"nb":1,"a":[["mapped/Iron.yaml","Iron"]],"b":[["methanopyrus_medium_for_strain_116__7463935f.yaml","methanopyrus_medium_for_strain_116"]]},{"id":"CHEBI:24040","l":"flavin adenine dinucleotide","na":1,"nb":1,"a":[["mapped/Flavin_Adenine_Dinucleotide.yaml","Flavin adenine dinucleotide"]],"b":[["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:24266","l":"gluconic acid","na":1,"nb":1,"a":[["mapped/Gluconic_Acid.yaml","Gluconic acid"]],"b":[["MAG_Modified_arabinose_gluconate_medium.yaml","mag_modified_arabinose_gluconate_medium"]]},{"id":"CHEBI:24536","l":"hexachlorocyclohexane","na":1,"nb":1,"a":[["mapped/Hexachlorocyclo-hexane.yaml","Hexachlorocyclo-hexane"]],"b":[["LINDANE_MEDIUM.yaml","lindane_medium"]]},{"id":"CHEBI:25115","l":"malate","na":1,"nb":1,"a":[["mapped/Malate.yaml","Malate"]],"b":[["MSYS_MEDIUM.yaml","msys_medium"]]},{"id":"CHEBI:26986","l":"threonine","na":1,"nb":1,"a":[["mapped/Threonine.yaml","Threonine"]],"b":[["brain_heart_infusion_difco_medium_supplemented_with_dl_threonine_and_glucose.yaml","brain_heart_infusion_difco_medium_supplemented_with_dl_threonine_and_glucose"]]},{"id":"CHEBI:28488","l":"m-xylene","na":1,"nb":1,"a":[["mapped/M-xylene.yaml","m-Xylene"]],"b":[["DESULFOVIRGA_MEDIUM.yaml","desulfovirga_medium"]]},{"id":"CHEBI:29125","l":"arsenate(3-)","na":1,"nb":1,"a":[["mapped/Arsenate.yaml","Arsenate"]],"b":[["HALARSENATIBACTER_MEDIUM.yaml","halarsenatibacter_medium"]]},{"id":"CHEBI:30411","l":"cobalamin","na":1,"nb":1,"a":[["mapped/Cobalamine.yaml","Cobalamine"]],"b":[["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"]]},{"id":"CHEBI:30751","l":"formic acid","na":1,"nb":1,"a":[["mapped/Formic_Acid.yaml","Formic acid"]],"b":[["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:30845","l":"2-furoic acid","na":1,"nb":1,"a":[["mapped/2-furoic_Acid.yaml","2-Furoic acid"]],"b":[["pelobacter_fuf_medium.yaml","pelobacter_fuf_medium"]]},{"id":"CHEBI:31225","l":"antipyrine","na":1,"nb":1,"a":[["mapped/Antipyrine.yaml","Antipyrine"]],"b":[["PHENYLOBACTERIUM_MEDIUM.yaml","phenylobacterium_medium"]]},{"id":"CHEBI:33083","l":"fluoranthene","na":1,"nb":1,"a":[["mapped/Fluoranthene.yaml","Fluoranthene"]],"b":[["PLATES_WITH_FLUORANTHENE.yaml","plates_with_fluoranthene"]]},{"id":"CHEBI:33984","l":"fucose","na":1,"nb":1,"a":[["mapped/Fucose.yaml","Fucose"]],"b":[["atribacterium_medium__1e9c1fd9.yaml","atribacterium_medium"]]},{"id":"CHEBI:35607","l":"trisodium vanadate","na":1,"nb":1,"a":[["mapped/Na3vo4.yaml","Na3VO4"]],"b":[["l1__4c53f85b.yaml","l1"]]},{"id":"CHEBI:41981","l":"dideuterium oxide","na":1,"nb":1,"a":[["mapped/deuterated_water.yaml","deuterated water"]],"b":[["M9-D2O.yaml","M9-D2O"]]},{"id":"CHEBI:42160","l":"dithionite(2-)","na":1,"nb":1,"a":[["mapped/Dithionite.yaml","Dithionite"]],"b":[["phe91_medium__bf798fea.yaml","phe91_medium"]]},{"id":"CHEBI:45931","l":"thiamine(1+) diphosphate(1-)","na":1,"nb":1,"a":[["mapped/Thiamin_Pyrophosphate.yaml","Thiamin pyrophosphate"]],"b":[["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:46502","l":"tungstate","na":1,"nb":1,"a":[["mapped/Tungstate.yaml","Tungstate"]],"b":[["alcalilimnicola_ehrlichii_mhle_1_medium.yaml","alcalilimnicola_ehrlichii_mhle_1_medium"]]},{"id":"CHEBI:47869","l":"thioglycolate(2-)","na":1,"nb":1,"a":[["mapped/Thioglycolate.yaml","Thioglycolate"]],"b":[["spirochaeta_stenostrepta_medium__c3485538.yaml","spirochaeta_stenostrepta_medium"]]},{"id":"CHEBI:495055","l":"beta-cyclodextrin","na":1,"nb":1,"a":[["mapped/Cyclomaltoheptaose.yaml","Cyclomaltoheptaose"]],"b":[["MYCT_MEDIUM.yaml","myct_medium"]]},{"id":"CHEBI:74779","l":"aluminium sulfate octadecahydrate","na":1,"nb":1,"a":[["mapped/Al2_So43_X_18_H2o.yaml","Al2(SO4)3 x 18 H2O"]],"b":[["ARTIFICIAL_PILOT_PLANT_WATER_MEDIUM.yaml","artificial_pilot_plant_water_medium"]]},{"id":"CHEBI:75249","l":"potassium chromate","na":1,"nb":1,"a":[["mapped/K2cro4.yaml","K2CrO4"]],"b":[["l1__4c53f85b.yaml","l1"]]},{"id":"CHEBI:75937","l":"monooleoylglycerol","na":1,"nb":1,"a":[["mapped/Glycerol_Mono-oleate.yaml","Glycerol mono-oleate"]],"b":[["PITYROSPORUM_MEDIUM.yaml","pityrosporum_medium"]]},{"id":"CHEBI:78036","l":"copper(II) nitrate","na":1,"nb":1,"a":[["mapped/Cu_No32_X_3_H2o.yaml","Cu(NO3)2 x 3 H2O"]],"b":[["rhodobacter_marinus_medium_nkpb.yaml","rhodobacter_marinus_medium_nkpb"]]},{"id":"CHEBI:78672","l":"rubidium chloride","na":1,"nb":1,"a":[["mapped/Rubidium_Chloride.yaml","rubidium chloride"]],"b":[["s88_vitamins.yaml","s88_vitamins"]]},{"id":"CHEBI:86156","l":"cadmium nitrate tetrahydrate","na":1,"nb":1,"a":[["mapped/Cd_No32_X_4_H2o.yaml","Cd(NO3)2 x 4 H2O"]],"b":[["Z45_4_Medium_for_Cyanobacteria.yaml","z45_4_medium_for_cyanobacteria"]]},{"id":"CHEBI:86206","l":"chromium trinitrate heptahydrate","na":1,"nb":1,"a":[["mapped/Cr_No33_X_7_H2o.yaml","Cr(NO3)3 x 7 H2O"]],"b":[["Z45_4_Medium_for_Cyanobacteria.yaml","z45_4_medium_for_cyanobacteria"]]},{"id":"CHEBI:86218","l":"cresol red","na":1,"nb":1,"a":[["mapped/Cresol_Red.yaml","Cresol red"]],"b":[["medium_for_ammonia_oxidizing_bacteria_strains_from_soil.yaml","medium_for_ammonia_oxidizing_bacteria_strains_from_soil"]]},{"id":"KEGG:chol","l":"","na":1,"nb":1,"a":[["mapped/Choline.yaml","Choline"]],"b":[["CDM_LP.yaml","cdm_lp"]]},{"id":"KEGG:rmn","l":"","na":1,"nb":1,"a":[["mapped/L-rhamnose.yaml","L-Rhamnose"]],"b":[["liquid_mm_with_rhamnose_hodgson_et_al.yaml","liquid_mm_with_rhamnose_hodgson_et_al"]]},{"id":"KEGG:xyl-D","l":"","na":1,"nb":1,"a":[["mapped/D-xylose.yaml","D-Xylose"]],"b":[["m9_minimal_medium_with_d_xylose.yaml","m9_minimal_medium_with_d_xylose"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/NaturalProductMech--AntibioticMech.json b/assets/fleet/edges/NaturalProductMech--AntibioticMech.json index aaac4e5..4574bdf 100644 --- a/assets/fleet/edges/NaturalProductMech--AntibioticMech.json +++ b/assets/fleet/edges/NaturalProductMech--AntibioticMech.json @@ -1 +1 @@ -{"a":"NaturalProductMech","b":"AntibioticMech","base":{"NaturalProductMech":"https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/natural_products/","AntibioticMech":"https://culturebotai.github.io/AntibioticMech/pages/"},"n":288,"by":{"CHEBI":180,"NCBITaxon":96,"DOI":10,"UniProt":2},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":24,"nb":30,"a":[["alkaloids/biotin.yaml","biotin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":12,"nb":12,"a":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"NCBITaxon:330879","l":"Aspergillus fumigatus (strain ATCC MYA-4609 / CBS 101355 / FGSC A1100 / Af293)","na":14,"nb":5,"a":[["alkaloids/fumigaclavine-c.yaml","fumigaclavine C"],["alkaloids/fumiquinazoline-a.yaml","fumiquinazoline A"],["alkaloids/fumiquinazoline-c.yaml","fumiquinazoline C"],["alkaloids/fumiquinazoline-d.yaml","fumiquinazoline D"],["alkaloids/hexadehydroastechrome.yaml","hexadehydroastechrome"],["polyketides/endocrocin.yaml","endocrocin"]],"b":[["antibacterial/fumagillin.html","fumagillin"],["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/terbinafine.html","terbinafine"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:5518","l":"Fusarium graminearum","na":14,"nb":5,"a":[["amino_acids_and_peptides/fusaoctaxin-a.yaml","fusaoctaxin A"],["polyketides/aurofusarin.yaml","aurofusarin"],["polyketides/fusarielin-h.yaml","fusarielin H"],["polyketides/gibepyrone-a.yaml","gibepyrone A"],["polyketides/prolipyrone-b.yaml","prolipyrone B"],["polyketides/zearalenone.yaml","zearalenone"]],"b":[["antifungal/carbendazim.html","carbendazim"],["antifungal/difenoconazole.html","difenoconazole"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/prochloraz.html","prochloraz"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":5,"nb":13,"a":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"],["unclassified/leuvalin.yaml","leuvalin"],["unclassified/phevalin.yaml","phevalin"],["unclassified/tyrvalin.yaml","tyrvalin"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/bromodeoxytopsentin.html","bromodeoxytopsentin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"NCBITaxon:229533","l":"Fusarium graminearum PH-1","na":11,"nb":5,"a":[["alkaloids/chrysogine.yaml","chrysogine"],["amino_acids_and_peptides/fusaoctaxin-a.yaml","fusaoctaxin A"],["polyketides/aurofusarin.yaml","aurofusarin"],["polyketides/prolipyrone-b.yaml","prolipyrone B"],["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"],["terpenoids/15-acetyldeoxynivalenol.yaml","15-acetyldeoxynivalenol"]],"b":[["antifungal/carbendazim.html","carbendazim"],["antifungal/difenoconazole.html","difenoconazole"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/prochloraz.html","prochloraz"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:40559","l":"Botrytis cinerea","na":23,"nb":4,"a":[["terpenoids/1-epibotrydial.yaml","1-epibotrydial"],["terpenoids/10-dehydroxy-dihydrobotrydialone.yaml","10-dehydroxy dihydrobotrydialone"],["terpenoids/10-epi-dihydrobotrydial.yaml","10-epi-dihydrobotrydial"],["terpenoids/10-oxo-dihydrobotrydial.yaml","10-Oxo-dihydrobotrydial"],["terpenoids/10-oxodehydrodihydrobotrydial.yaml","10-Oxodehydrodihydrobotrydial"],["terpenoids/10-oxodihydrobotry-1-9-4-5-diendial.yaml","10-Oxodihydrobotry-1(9),4(5)-diendial"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/iprodione.html","iprodione"],["antifungal/pyrisoxazole.html","pyrisoxazole"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":4,"nb":22,"a":[["alkaloids/tilivalline.yaml","tilivalline"],["amino_acids_and_peptides/colibactin.yaml","colibactin"],["amino_acids_and_peptides/klebsidin.yaml","klebsidin"],["carbohydrates/capsular-polysaccharide-2.yaml","capsular polysaccharide"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"]]},{"id":"NCBITaxon:746128","l":"Aspergillus fumigatus","na":20,"nb":4,"a":[["alkaloids/fumigaclavine-c.yaml","fumigaclavine C"],["alkaloids/fumiquinazoline-a.yaml","fumiquinazoline A"],["alkaloids/fumiquinazoline-c.yaml","fumiquinazoline C"],["alkaloids/fumiquinazoline-d.yaml","fumiquinazoline D"],["alkaloids/hexadehydroastechrome.yaml","hexadehydroastechrome"],["carbohydrates/tobramycin.yaml","tobramycin"]],"b":[["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/terbinafine.html","terbinafine"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:405948","l":"","na":7,"nb":4,"a":[["amino_acids_and_peptides/erythrochelin.yaml","erythrochelin"],["polyketides/erythromycin-a.yaml","erythromycin A"],["polyketides/erythromycin-b.yaml","erythromycin B"],["polyketides/erythromycin-c.yaml","erythromycin C"],["polyketides/erythromycin-d.yaml","erythromycin D"],["polyketides/flaviolin.yaml","flaviolin"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["unspecified/erythromycin-b.html","erythromycin B"],["unspecified/erythromycin-c.html","erythromycin C"],["unspecified/erythromycin-d.html","erythromycin D"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":16,"nb":3,"a":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["amino_acids_and_peptides/ericin-s.yaml","ericin S"],["amino_acids_and_peptides/iturin.yaml","iturin"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"NCBITaxon:1890","l":"Streptomyces antibioticus","na":14,"nb":3,"a":[["alkaloids/esmeraldin.yaml","esmeraldin"],["alkaloids/pentostatin.yaml","pentostatin"],["amino_acids_and_peptides/2-2-hydroxyethyl-clavam.yaml","(-)-2-(2-hydroxyethyl)clavam"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["amino_acids_and_peptides/scabichelin.yaml","scabichelin"],["amino_acids_and_peptides/valclavam.yaml","valclavam"]],"b":[["antibacterial/indanomycin.html","indanomycin"],["unspecified/oviedomycin.html","oviedomycin"],["unspecified/pentostatin.html","pentostatin"]]},{"id":"NCBITaxon:117187","l":"Fusarium verticillioides","na":8,"nb":3,"a":[["alkaloids/dihydrofusarin-c.yaml","dihydrofusarin C"],["alkaloids/epi-fusarin-c.yaml","epi-fusarin C"],["alkaloids/fusaric-acid.yaml","fusaric acid"],["alkaloids/fusarin-c.yaml","fusarin C"],["alkaloids/fusarin-d.yaml","fusarin D"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/fludioxonil.html","fludioxonil"]]},{"id":"NCBITaxon:1867","l":"Actinoplanes teichomyceticus","na":6,"nb":3,"a":[["amino_acids_and_peptides/teicoplanin-a2-1.yaml","Teicoplanin A2-1"],["amino_acids_and_peptides/teicoplanin-a2-2.yaml","teicoplanin A2-2"],["amino_acids_and_peptides/teicoplanin-a2-3.yaml","teicoplanin A2-3"],["amino_acids_and_peptides/teicoplanin-a2-4.yaml","teicoplanin A2-4"],["amino_acids_and_peptides/teicoplanin-a2-5.yaml","Teicoplanin A2-5"],["amino_acids_and_peptides/teicoplanin.yaml","teicoplanin"]],"b":[["antibacterial/teicoplanin.html","teicoplanin"],["unspecified/teicoplanin-a2-2.html","teicoplanin A2-2"],["unspecified/teicoplanin-a2-3.html","teicoplanin A2-3"]]},{"id":"DOI:10.1016/0195-6701(86)90011-3","l":"","na":5,"nb":3,"a":[["amino_acids_and_peptides/teicoplanin-a2-1.yaml","Teicoplanin A2-1"],["amino_acids_and_peptides/teicoplanin-a2-2.yaml","teicoplanin A2-2"],["amino_acids_and_peptides/teicoplanin-a2-3.yaml","teicoplanin A2-3"],["amino_acids_and_peptides/teicoplanin-a2-4.yaml","teicoplanin A2-4"],["amino_acids_and_peptides/teicoplanin-a2-5.yaml","Teicoplanin A2-5"]],"b":[["antibacterial/teicoplanin.html","teicoplanin"],["unspecified/teicoplanin-a2-2.html","teicoplanin A2-2"],["unspecified/teicoplanin-a2-3.html","teicoplanin A2-3"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":3,"nb":4,"a":[["amino_acids_and_peptides/epidermin.yaml","epidermin"],["amino_acids_and_peptides/epilancin-15x.yaml","epilancin 15x"],["amino_acids_and_peptides/pep5.yaml","pep5"]],"b":[["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/oxacillin.html","oxacillin"]]},{"id":"NCBITaxon:451804","l":"Aspergillus fumigatus (strain CBS 144.89 / FGSC A1163 / CEA10)","na":3,"nb":3,"a":[["terpenoids/21-h-hopane-3beta-22-diol.yaml","21-β-H-hopane-3beta, 22-diol"],["terpenoids/compound-3-3.yaml","compound 3"],["terpenoids/fumihopaside-a.yaml","fumihopaside A"]],"b":[["antifungal/itraconazole.html","itraconazole"],["antifungal/terbinafine.html","terbinafine"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":27,"nb":2,"a":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["alkaloids/pseudomonine.yaml","pseudomonine"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyreudione-c.yaml","pyreudione C"],["alkaloids/quinolobactin.yaml","quinolobactin"]],"b":[["antibacterial/mupirocin.html","mupirocin"],["antifungal/2-4-diacetylphloroglucinol.html","2,4-diacetylphloroglucinol"]]},{"id":"NCBITaxon:332648","l":"Botrytis cinerea B05.10","na":21,"nb":2,"a":[["terpenoids/1-epibotrydial.yaml","1-epibotrydial"],["terpenoids/10-dehydroxy-dihydrobotrydialone.yaml","10-dehydroxy dihydrobotrydialone"],["terpenoids/10-epi-dihydrobotrydial.yaml","10-epi-dihydrobotrydial"],["terpenoids/10-oxo-dihydrobotrydial.yaml","10-Oxo-dihydrobotrydial"],["terpenoids/10-oxodehydrodihydrobotrydial.yaml","10-Oxodehydrodihydrobotrydial"],["terpenoids/10-oxodihydrobotry-1-9-4-5-diendial.yaml","10-Oxodihydrobotry-1(9),4(5)-diendial"]],"b":[["antifungal/fludioxonil.html","fludioxonil"],["antifungal/iprodione.html","iprodione"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":2,"nb":15,"a":[["alkaloids/acinetobactin.yaml","acinetobactin"],["amino_acids_and_peptides/fimsbactin-a.yaml","fimsbactin A"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"NCBITaxon:58346","l":"Streptomyces platensis","na":14,"nb":2,"a":[["alkaloids/13-epi-dorrigocin-a.yaml","13-epi-dorrigocin A"],["alkaloids/17-hydroxy-8-desmethoxy-isomigrastatin.yaml","17-hydroxy-8-desmethoxy-isomigrastatin"],["alkaloids/dorrigocin-a.yaml","dorrigocin A"],["alkaloids/dorrigocin-b.yaml","dorrigocin B"],["alkaloids/iso-migrastatin.yaml","iso-migrastatin"],["alkaloids/staurosporine.yaml","staurosporine"]],"b":[["antibacterial/platencin.html","platencin"],["antibacterial/platensimycin.html","platensimycin"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":10,"nb":2,"a":[["amino_acids_and_peptides/lipopeptide-8d1-1.yaml","lipopeptide 8D1-1"],["amino_acids_and_peptides/lipopeptide-8d1-2.yaml","lipopeptide 8D1-2"],["carbohydrates/amicetin.yaml","amicetin"],["carbohydrates/streptothricin-c.yaml","streptothricin C"],["carbohydrates/streptothricin-d.yaml","streptothricin D"],["carbohydrates/streptothricin-e.yaml","streptothricin E"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"],["unspecified/streptothricin-d.html","streptothricin D"]]},{"id":"NCBITaxon:242507","l":"","na":10,"nb":2,"a":[["polyketides/1-alpha-l-2-o-methyl-6-deoxymannopyranosyloxy-3-6-8-trimethoxynaphthalene.yaml","1-(alpha-l-(2-O-methyl)-6-deoxymannopyranosyloxy)-3,6,8-trimethoxynaphthalene"],["polyketides/10-11-dihydroxymagnaporthepyrone.yaml","10,11-dihydroxymagnaporthepyrone"],["polyketides/12-13-dihydroxymagnaporthepyrone.yaml","12,13-dihydroxymagnaporthepyrone"],["polyketides/epipyriculol.yaml","epipyriculol"],["polyketides/naphthalene-1-3-6-8-tetrol.yaml","naphthalene-1,3,6,8-tetrol"],["polyketides/nectriapyrone-c.yaml","nectriapyrone C"]],"b":[["antifungal/carboxin.html","carboxin"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:1223523","l":"Streptomyces mobaraensis NBRC 13819 = DSM 40847","na":5,"nb":2,"a":[["amino_acids_and_peptides/bleomycin-a2.yaml","bleomycin A2"],["amino_acids_and_peptides/bleomycin-b2.yaml","bleomycin B2"],["amino_acids_and_peptides/cyclothiazomycin-b1.yaml","cyclothiazomycin b1"],["amino_acids_and_peptides/ketomemicin-b3.yaml","ketomemicin B3"],["amino_acids_and_peptides/ketomemicin-b4.yaml","ketomemicin B4"]],"b":[["antibacterial/bleomycin-a2.html","bleomycin A2"],["antibacterial/bleomycin-b2.html","bleomycin B2"]]},{"id":"NCBITaxon:467194","l":"Streptomyces sp. CNQ-418","na":5,"nb":2,"a":[["alkaloids/marinopyrrole-a.yaml","(−)-marinopyrrole A"],["alkaloids/marinopyrrole-b.yaml","(−)-marinopyrrole B"],["alkaloids/marinopyrrole-c.yaml","marinopyrrole C"],["alkaloids/marinopyrrole-d.yaml","marinopyrrole D"],["alkaloids/marinopyrrole-e.yaml","marinopyrrole E"]],"b":[["antibacterial/marinopyrrole-a.html","(−)-marinopyrrole A"],["antibacterial/marinopyrrole-b.html","(−)-marinopyrrole B"]]},{"id":"NCBITaxon:559292","l":"Saccharomyces cerevisiae (strain ATCC 204508 / S288c)","na":2,"nb":5,"a":[["polyketides/kojic-acid.yaml","kojic acid"],["polyketides/radicicol.yaml","radicicol"]],"b":[["antifungal/anidulafungin.html","anidulafungin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/caspofungin.html","caspofungin"],["antifungal/cycloheximide.html","cycloheximide"],["antifungal/micafungin.html","micafungin"]]},{"id":"NCBITaxon:212423","l":"Streptomyces kaniharaensis","na":2,"nb":2,"a":[["alkaloids/formycin-a.yaml","formycin A"],["carbohydrates/coformycin.yaml","coformycin"]],"b":[["unspecified/coformycin.html","coformycin"],["unspecified/formycin-a.html","formycin A"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":31,"nb":1,"a":[["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["alkaloids/myxofacycline-e.yaml","myxofacycline E"],["alkaloids/myxofacycline-f.yaml","myxofacycline F"],["alkaloids/myxofacycline-g.yaml","myxofacycline G"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"]],"b":[["antibacterial/althiomycin.html","althiomycin"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":30,"nb":1,"a":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["amino_acids_and_peptides/ditryptophenaline.yaml","(-)-ditryptophenaline"],["amino_acids_and_peptides/imizoquin-a.yaml","imizoquin A"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":23,"nb":1,"a":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/melanin.yaml","melanin"],["alkaloids/undecylprodigiosin.yaml","undecylprodigiosin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/sapb.yaml","SapB"]],"b":[["antibacterial/nocardamine.html","nocardamine"]]},{"id":"NCBITaxon:162425","l":"Aspergillus nidulans","na":22,"nb":1,"a":[["alkaloids/aspernidine-a.yaml","aspernidine A"],["alkaloids/aspyridone-a.yaml","aspyridone A"],["alkaloids/aspyridone-b.yaml","aspyridone B"],["alkaloids/biotin.yaml","biotin"],["alkaloids/cichorine.yaml","cichorine"],["alkaloids/pentostatin.yaml","pentostatin"]],"b":[["antifungal/thiabendazole.html","thiabendazole"]]},{"id":"NCBITaxon:227321","l":"Emericella nidulans (strain FGSC A4 / ATCC 38163 / CBS 112.46 / NRRL 194 / M139)","na":22,"nb":1,"a":[["alkaloids/aspernidine-a.yaml","aspernidine A"],["alkaloids/aspyridone-a.yaml","aspyridone A"],["alkaloids/aspyridone-b.yaml","aspyridone B"],["alkaloids/cichorine.yaml","cichorine"],["alkaloids/terrequinone-a.yaml","terrequinone A"],["amino_acids_and_peptides/fellutamide-b.yaml","fellutamide B"]],"b":[["antifungal/thiabendazole.html","thiabendazole"]]},{"id":"NCBITaxon:54571","l":"Streptomyces venezuelae","na":21,"nb":1,"a":[["alkaloids/anthelvencin-a.yaml","anthelvencin A"],["alkaloids/anthelvencin-b.yaml","anthelvencin B"],["alkaloids/anthelvencin-c.yaml","anthelvencin C"],["alkaloids/chloramphenicol.yaml","chloramphenicol"],["alkaloids/corynecin-ii.yaml","corynecin II"],["alkaloids/gaburedin-d.yaml","gaburedin D"]],"b":[["antibacterial/methymycin.html","methymycin"]]},{"id":"NCBITaxon:2878388","l":"Streptomyces sp. SCSIO 03032","na":20,"nb":1,"a":[["alkaloids/indimicin-a.yaml","indimicin A"],["alkaloids/indimicin-b.yaml","indimicin B"],["alkaloids/indimicin-c.yaml","indimicin C"],["alkaloids/indimicin-d.yaml","indimicin D"],["alkaloids/indimicin-e.yaml","indimicin E"],["alkaloids/lynamicin-a.yaml","lynamicin A"]],"b":[["unspecified/piericidin-a.html","piericidin A"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":20,"nb":1,"a":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/c-3-sulfonylated-derivative.yaml","C-3 sulfonylated derivative"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["alkaloids/n-n-dioxide-containing-derivate.yaml","N,N-dioxide containing derivate"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:341663","l":"","na":17,"nb":1,"a":[["alkaloids/asterriquinone-ct5.yaml","asterriquinone CT5"],["alkaloids/dihydroisoflavipucine.yaml","dihydroisoflavipucine"],["alkaloids/isoflavipucine.yaml","isoflavipucine"],["polyketides/citreoviridin.yaml","citreoviridin"],["polyketides/geodin.yaml","geodin"],["polyketides/terreic-acid.yaml","terreic acid"]],"b":[["antiviral/aspulvinone-e.html","aspulvinone E"]]},{"id":"NCBITaxon:41951","l":"Streptomyces argillaceus","na":15,"nb":1,"a":[["alkaloids/argimycin-pi.yaml","argimycin PI"],["alkaloids/argimycin-pii.yaml","argimycin PII"],["alkaloids/argimycin-piv.yaml","argimycin PIV"],["alkaloids/argimycin-pix.yaml","argimycin PIX"],["alkaloids/argimycin-pv.yaml","argimycin PV"],["alkaloids/argimycin-pvi.yaml","argimycin PVI"]],"b":[["unspecified/mithramycin.html","mithramycin"]]},{"id":"NCBITaxon:5127","l":"Fusarium fujikuroi","na":15,"nb":1,"a":[["alkaloids/fusaric-acid.yaml","fusaric acid"],["alkaloids/fusarin-c.yaml","fusarin C"],["polyketides/bikaverin.yaml","bikaverin"],["polyketides/fujikurin-c.yaml","fujikurin C"],["polyketides/fujikurin-d.yaml","fujikurin D"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":14,"nb":1,"a":[["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/framycetin.yaml","framycetin"],["carbohydrates/neomycin-c.yaml","neomycin C"],["carbohydrates/paromomycin.yaml","paromomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":13,"nb":1,"a":[["alkaloids/holomycin.yaml","holomycin"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/2-formyloxymethylclavam.yaml","2-formyloxymethylclavam"],["amino_acids_and_peptides/2-hydroxymethylclavam.yaml","2-hydroxymethylclavam"],["amino_acids_and_peptides/alanylclavam.yaml","alanylclavam"],["amino_acids_and_peptides/cephamycin-c.yaml","cephamycin C"]],"b":[["antibacterial/clavulanic-acid.html","clavulanic acid"]]},{"id":"NCBITaxon:1433842","l":"Hapalosiphon welwitschii UTEX B 1830","na":12,"nb":1,"a":[["alkaloids/12-epi-fischerindole-i-isonitrile.yaml","12-epi-fischerindole I isonitrile"],["alkaloids/12-epi-fischerindole-u-isonitrile.yaml","12-epi-fischerindole U isonitrile"],["alkaloids/12-epi-hapalindole-c-isonitrile.yaml","12-epi-hapalindole C isonitrile"],["alkaloids/12-epi-hapalindole-e.yaml","12-epi-hapalindole E"],["alkaloids/3-epi-welwitindolinone-b-isothiocyanate.yaml","3-epi-welwitindolinone B isothiocyanate"],["alkaloids/3-z-2-isocyanovinyl-indole.yaml","3-[(Z)-2-isocyanovinyl]indole"]],"b":[["antibacterial/3-z-2-isocyanovinyl-indole.html","3-[(Z)-2-isocyanovinyl]indole"]]},{"id":"NCBITaxon:5053","l":"Aspergillus aculeatus","na":11,"nb":1,"a":[["alkaloids/acurin-a.yaml","acurin A"],["polyketides/secalonic-acid-a.yaml","Secalonic acid A"],["terpenoids/aculene-a.yaml","aculene A"],["terpenoids/aculene-b.yaml","aculene B"],["terpenoids/aculene-c.yaml","aculene C"],["terpenoids/aculene-d.yaml","aculene D"]],"b":[["antifungal/aculeacin-a.html","aculeacin A"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":10,"nb":1,"a":[["alkaloids/labradorin-1.yaml","labradorin 1"],["alkaloids/labradorin-2.yaml","labradorin 2"],["alkaloids/secimide.yaml","secimide"],["amino_acids_and_peptides/phaseolotoxin.yaml","phaseolotoxin"],["amino_acids_and_peptides/syringolin-a.yaml","syringolin A"],["amino_acids_and_peptides/tabtoxin.yaml","tabtoxin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae (strain ATCC 42149 / RIB 40)","na":10,"nb":1,"a":[["fatty_acids/oryzine-a.yaml","oryzine A"],["polyketides/kojic-acid.yaml","kojic acid"],["polyketides/oryzine-b.yaml","oryzine B"],["polyketides/ywa1.yaml","YWA1"],["shikimates_and_phenylpropanoids/2-4-dihydroxy-3-methoxypropiophenone.yaml","2,4'-dihydroxy-3'-methoxypropiophenone"],["shikimates_and_phenylpropanoids/8-methyldiaporthin.yaml","8-methyldiaporthin"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"NCBITaxon:1159556","l":"Ustilaginoidea virens","na":9,"nb":1,"a":[["amino_acids_and_peptides/ustiloxin-b.yaml","ustiloxin B"],["polyketides/ustilaginoidin-a.yaml","ustilaginoidin A"],["polyketides/ustilaginoidin-d.yaml","ustilaginoidin D"],["polyketides/ustilaginoidin-e.yaml","ustilaginoidin E"],["polyketides/ustilaginoidin-f.yaml","ustilaginoidin F"],["polyketides/ustilaginoidin-g.yaml","ustilaginoidin G"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"]]},{"id":"NCBITaxon:1979465","l":"Phoma betae","na":9,"nb":1,"a":[["polyketides/betaenone-a.yaml","betaenone A"],["polyketides/betaenone-b.yaml","betaenone B"],["polyketides/betaenone-c.yaml","betaenone C"],["terpenoids/17-deoxyaphidicolin.yaml","17-deoxyaphidicolin"],["terpenoids/3-deoxyaphidicolin.yaml","3-deoxyaphidicolin"],["terpenoids/aphidicolan-16-ol.yaml","aphidicolan-16β-ol"]],"b":[["antiviral/aphidicolin.html","aphidicolin"]]},{"id":"NCBITaxon:5076","l":"Penicillium chrysogenum","na":9,"nb":1,"a":[["alkaloids/chrysogine.yaml","chrysogine"],["amino_acids_and_peptides/benzylpenicillin-sodium.yaml","benzylpenicillin sodium"],["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"],["amino_acids_and_peptides/n-5s-5-ammonio-5-carboxylatopentanoyl-l-cysteinyl-d-valinate.yaml","N-[(5S)-5-ammonio-5-carboxylatopentanoyl]-L-cysteinyl-D-valinate"],["polyketides/2-3-dihydrosorbicillin.yaml","2'3'-dihydrosorbicillin"],["polyketides/bisorbicillinol.yaml","bisorbicillinol"]],"b":[["unspecified/isopenicillin-n.html","isopenicillin N"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":1,"nb":8,"a":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]],"b":[["antifungal/anidulafungin.html","anidulafungin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/caspofungin.html","caspofungin"],["antifungal/cycloheximide.html","cycloheximide"],["antifungal/micafungin.html","micafungin"],["antifungal/oligomycin-a.html","oligomycin A"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":8,"nb":1,"a":[["amino_acids_and_peptides/ferrichrome-2.yaml","ferrichrome"],["polyketides/2-acetyl-1-3-6-8-tetrahydroxynaphthalene.yaml","2-acetyl-1,3,6,8-tetrahydroxynaphthalene"],["polyketides/kojic-acid.yaml","kojic acid"],["terpenoids/aphidicolin.yaml","aphidicolin"],["unclassified/2-oxocyclopiazonic-acid.yaml","2-oxocyclopiazonic acid"],["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":1,"nb":7,"a":[["amino_acids_and_peptides/enterocin-a.yaml","enterocin A"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":1,"nb":7,"a":[["unclassified/antimycin-a1b.yaml","antimycin A1B"]],"b":[["antibacterial/brefeldin-a.html","brefeldin A"],["antifungal/anidulafungin.html","anidulafungin"],["antifungal/caspofungin.html","caspofungin"],["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/micafungin.html","micafungin"]]},{"id":"NCBITaxon:68280","l":"Streptomyces violaceusniger","na":7,"nb":1,"a":[["fatty_acids/desulfoclethramycin.yaml","desulfoclethramycin"],["polyketides/be-24566b.yaml","BE-24566B"],["polyketides/elaiophylin.yaml","elaiophylin"],["polyketides/meridamycin-2.yaml","meridamycin"],["polyketides/nigericin.yaml","nigericin"],["terpenoids/2-methylisoborneol.yaml","2-methylisoborneol"]],"b":[["antibacterial/nigericin.html","nigericin"]]},{"id":"NCBITaxon:37326","l":"Nocardia brasiliensis","na":6,"nb":1,"a":[["polyketides/brasilinolide-a.yaml","brasilinolide A"],["polyketides/brasilinolide-b.yaml","brasilinolide B"],["polyketides/brasilinolide-c.yaml","brasilinolide C"],["polyketides/brasiliquinone-a.yaml","brasiliquinone A"],["polyketides/brasiliquinone-b.yaml","brasiliquinone B"],["terpenoids/brasilicardin-a.yaml","brasilicardin A"]],"b":[["antibacterial/brasiliquinone-b.html","brasiliquinone B"]]},{"id":"NCBITaxon:47763","l":"Streptomyces lydicus","na":6,"nb":1,"a":[["amino_acids_and_peptides/ectoine.yaml","ectoine"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"],["polyketides/erythromycin-a.yaml","erythromycin A"],["polyketides/natamycin.yaml","natamycin"],["polyketides/streptolydigin.yaml","streptolydigin"],["unclassified/lydicamycin.yaml","lydicamycin"]],"b":[["unspecified/streptolydigin.html","streptolydigin"]]},{"id":"NCBITaxon:5082","l":"Penicillium roqueforti","na":6,"nb":1,"a":[["alkaloids/mycophenolic-acid-2.yaml","mycophenolic acid"],["polyketides/mycophenolic-acid.yaml","mycophenolic acid"],["terpenoids/pr-toxin.yaml","PR-toxin"],["unclassified/andrastin-a.yaml","andrastin A"],["unclassified/roquefortine-c.yaml","roquefortine C"],["unclassified/roquefortine-d.yaml","roquefortine D"]],"b":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]]},{"id":"NCBITaxon:52","l":"Chondromyces crocatus","na":6,"nb":1,"a":[["polyketides/chondrochloren-a.yaml","chondrochloren A"],["polyketides/cmc-thuggacin-a.yaml","Cmc-thuggacin A"],["polyketides/crocacin.yaml","crocacin"],["shikimates_and_phenylpropanoids/ajudazol-a.yaml","ajudazol A"],["unclassified/chondramide-a.yaml","chondramide A"],["unclassified/cmc-thuggacin-b.yaml","Cmc-thuggacin B"]],"b":[["unspecified/chondrochloren-a.html","chondrochloren A"]]},{"id":"NCBITaxon:43658","l":"Pseudoalteromonas rubra","na":5,"nb":1,"a":[["alkaloids/prodigiosin.yaml","prodigiosin"],["polyketides/nonyltyrazolone.yaml","nonyltyrazolone"],["polyketides/undecyltyrazolone.yaml","undecyltyrazolone"],["shikimates_and_phenylpropanoids/z-6-undecenyltyrazolone.yaml","(Z)-ω-6-undecenyltyrazolone"],["unclassified/heptyltyrazolone.yaml","heptyltyrazolone"]],"b":[["unspecified/prodigiosin.html","prodigiosin"]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":1,"nb":5,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/imipenem.html","imipenem"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":1,"a":[["alkaloids/prodigiosin-2.yaml","prodigiosin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/serratiochelin-a.yaml","serratiochelin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["polyketides/oocydin-a.yaml","oocydin A"]],"b":[["antibacterial/althiomycin.html","althiomycin"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":4,"a":[["alkaloids/petrobactin.yaml","petrobactin"]],"b":[["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/trimethoprim.html","trimethoprim"],["antiprotozoal/suramin.html","suramin"],["antiviral/tilorone.html","tilorone"]]},{"id":"NCBITaxon:318829","l":"Magnaporthe oryzae","na":1,"nb":4,"a":[["polyketides/nectriapyrone.yaml","nectriapyrone"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/carboxin.html","carboxin"],["antifungal/carpropamid.html","carpropamid"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:36650","l":"Penicillium aethiopicum","na":4,"nb":1,"a":[["alkaloids/tryptoquialanine.yaml","tryptoquialanine"],["polyketides/epidechlorogriseofulvin.yaml","epidechlorogriseofulvin"],["polyketides/griseofulvin.yaml","griseofulvin"],["unclassified/viridicatumtoxin.yaml","viridicatumtoxin"]],"b":[["unspecified/viridicatumtoxin.html","viridicatumtoxin"]]},{"id":"NCBITaxon:412963","l":"","na":4,"nb":1,"a":[["amino_acids_and_peptides/endopyrrole-b.yaml","endopyrrole B"],["amino_acids_and_peptides/holrhizin-a.yaml","holrhizin A"],["unclassified/endopyrrole-a.yaml","endopyrrole A"],["unclassified/rhizoxin-a.yaml","rhizoxin A"]],"b":[["unspecified/rhizoxin.html","rhizoxin"]]},{"id":"NCBITaxon:68214","l":"Streptomyces griseochromogenes","na":4,"nb":1,"a":[["carbohydrates/blasticidin-s.yaml","blasticidin S"],["carbohydrates/streptothricin-f.yaml","streptothricin F"],["polyketides/tautomycetin-2.yaml","tautomycetin"],["polyketides/tautomycetin.yaml","tautomycetin"]],"b":[["antifungal/blasticidin-s.html","blasticidin S"]]},{"id":"NCBITaxon:1907","l":"Streptomyces glaucescens","na":3,"nb":1,"a":[["carbohydrates/5-hydroxystreptomycin.yaml","5'-hydroxystreptomycin"],["carbohydrates/streptomycin.yaml","streptomycin"],["polyketides/tetracenomycin-c.yaml","tetracenomycin C"]],"b":[["antibacterial/tetracenomycin-c.html","tetracenomycin C"]]},{"id":"NCBITaxon:264951","l":"Paecilomyces variotii","na":3,"nb":1,"a":[["polyketides/agnestin-a.yaml","agnestin A"],["polyketides/agnestin-b.yaml","agnestin B"],["polyketides/viriditoxin.yaml","viriditoxin"]],"b":[["antibacterial/m-viriditoxin.html","(M)-viriditoxin"]]},{"id":"NCBITaxon:316284","l":"Streptomyces noursei ATCC 11455","na":3,"nb":1,"a":[["amino_acids_and_peptides/dechlorocuracomycin.yaml","dechlorocuracomycin"],["polyketides/nystatin-a1.yaml","nystatin A1"],["unclassified/albonoursin.yaml","albonoursin"]],"b":[["antifungal/nystatin-a1.html","nystatin A1"]]},{"id":"NCBITaxon:334819","l":"Fusarium verticillioides 7600","na":1,"nb":3,"a":[["alkaloids/fusaric-acid.yaml","fusaric acid"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/fludioxonil.html","fludioxonil"]]},{"id":"NCBITaxon:53446","l":"Streptomyces cinnamoneus","na":3,"nb":1,"a":[["amino_acids_and_peptides/cinnamycin.yaml","cinnamycin"],["amino_acids_and_peptides/duramycin.yaml","duramycin"],["unclassified/bicozamycin.yaml","bicozamycin"]],"b":[["antibacterial/bicozamycin.html","bicozamycin"]]},{"id":"NCBITaxon:536","l":"Chromobacterium violaceum","na":3,"nb":1,"a":[["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["unclassified/romidepsin.yaml","romidepsin"]],"b":[["unspecified/romidepsin.html","romidepsin"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":3,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"NCBITaxon:668825","l":"Streptomyces sp. ATCC 700974","na":3,"nb":1,"a":[["amino_acids_and_peptides/albomycin-1.yaml","albomycin δ1"],["amino_acids_and_peptides/albomycin-delta2.yaml","albomycin delta2"],["amino_acids_and_peptides/albomycin-epsilon.yaml","albomycin epsilon"]],"b":[["antibacterial/albomycin-%CE%B41.html","albomycin δ1"]]},{"id":"NCBITaxon:686309","l":"Micromonospora haikouensis","na":3,"nb":1,"a":[["carbohydrates/aristeromycin.yaml","aristeromycin"],["carbohydrates/coformycin.yaml","coformycin"],["carbohydrates/kanamycin-a.yaml","kanamycin A"]],"b":[["unspecified/coformycin.html","coformycin"]]},{"id":"CHEBI:26789","l":"","na":1,"nb":2,"a":[["carbohydrates/streptothricin-f.yaml","streptothricin F"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"],["unspecified/streptothricin-d.html","streptothricin D"]]},{"id":"DOI:10.1002/cbic.201300794","l":"","na":2,"nb":1,"a":[["alkaloids/12-epi-hapalindole-e.yaml","12-epi-hapalindole E"],["alkaloids/3-z-2-isocyanovinyl-indole.yaml","3-[(Z)-2-isocyanovinyl]indole"]],"b":[["antibacterial/3-z-2-isocyanovinyl-indole.html","3-[(Z)-2-isocyanovinyl]indole"]]},{"id":"NCBITaxon:1079985","l":"Streptomyces chartreusis NRRL 3882","na":2,"nb":1,"a":[["carbohydrates/tunicamycin-b1.yaml","tunicamycin B1"],["polyketides/a23187.yaml","A23187"]],"b":[["unspecified/tunicamycin-b1.html","tunicamycin B1"]]},{"id":"NCBITaxon:27337","l":"Verticillium dahliae","na":2,"nb":1,"a":[["polyketides/flaviolin.yaml","flaviolin"],["polyketides/scytalone.yaml","scytalone"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"NCBITaxon:28576","l":"Talaromyces variabilis","na":2,"nb":1,"a":[["alkaloids/ilicicolin-h.yaml","ilicicolin H"],["unclassified/varicidin-a.yaml","varicidin A"]],"b":[["unspecified/ilicicolin-h.html","ilicicolin H"]]},{"id":"NCBITaxon:36651","l":"Penicillium digitatum","na":1,"nb":2,"a":[["alkaloids/tryptoquialanine.yaml","tryptoquialanine"]],"b":[["antifungal/pyrifenox.html","pyrifenox"],["antifungal/triflumizole.html","triflumizole"]]},{"id":"NCBITaxon:5074","l":"Penicillium brevicompactum","na":2,"nb":1,"a":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"],["unclassified/asperphenamate.yaml","asperphenamate"]],"b":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]]},{"id":"NCBITaxon:5270","l":"","na":2,"nb":1,"a":[["fatty_acids/itaconic-acid.yaml","itaconic acid"],["fatty_acids/ustilagic-acid.yaml","ustilagic acid"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":2,"nb":1,"a":[["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["alkaloids/yersiniabactin.yaml","yersiniabactin"]],"b":[["unspecified/chir-090.html","CHIR-090"]]},{"id":"NCBITaxon:68264","l":"Streptomyces rishiriensis","na":2,"nb":1,"a":[["shikimates_and_phenylpropanoids/coumermycin-a1.yaml","coumermycin A1"],["unclassified/lactonamycin.yaml","lactonamycin"]],"b":[["antibacterial/coumermycin-a1.html","coumermycin A1"]]},{"id":"CHEBI:131914","l":"violacein","na":1,"nb":1,"a":[["alkaloids/violacein.yaml","violacein"]],"b":[["antibacterial/violacein.html","violacein"]]},{"id":"CHEBI:132426","l":"chondrochloren A","na":1,"nb":1,"a":[["polyketides/chondrochloren-a.yaml","chondrochloren A"]],"b":[["unspecified/chondrochloren-a.html","chondrochloren A"]]},{"id":"CHEBI:133127","l":"lugdunin","na":1,"nb":1,"a":[["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]],"b":[["antibacterial/lugdunin.html","lugdunin"]]},{"id":"CHEBI:134606","l":"toyocamycin","na":1,"nb":1,"a":[["carbohydrates/toyocamycin.yaml","toyocamycin"]],"b":[["antifungal/toyocamycin.html","toyocamycin"]]},{"id":"CHEBI:138511","l":"piericidin A","na":1,"nb":1,"a":[["polyketides/piericidin-a.yaml","piericidin A"]],"b":[["unspecified/piericidin-a.html","piericidin A"]]},{"id":"CHEBI:140173","l":"malacidin A","na":1,"nb":1,"a":[["amino_acids_and_peptides/malacidin-a.yaml","malacidin A"]],"b":[["antibacterial/malacidin-a.html","malacidin A"]]},{"id":"CHEBI:140174","l":"malacidin B","na":1,"nb":1,"a":[["amino_acids_and_peptides/malacidin-b.yaml","malacidin B"]],"b":[["antibacterial/malacidin-b.html","malacidin B"]]},{"id":"CHEBI:140434","l":"3-[(Z)-2-isocyanovinyl]indole","na":1,"nb":1,"a":[["alkaloids/3-z-2-isocyanovinyl-indole.yaml","3-[(Z)-2-isocyanovinyl]indole"]],"b":[["antibacterial/3-z-2-isocyanovinyl-indole.html","3-[(Z)-2-isocyanovinyl]indole"]]},{"id":"CHEBI:141338","l":"sporothriolide","na":1,"nb":1,"a":[["polyketides/sporothriolide.yaml","sporothriolide"]],"b":[["antifungal/sporothriolide.html","sporothriolide"]]},{"id":"CHEBI:141380","l":"indanomycin","na":1,"nb":1,"a":[["polyketides/indanomycin.yaml","indanomycin"]],"b":[["antibacterial/indanomycin.html","indanomycin"]]},{"id":"CHEBI:144441","l":"triacsin C","na":1,"nb":1,"a":[["fatty_acids/triacsin-c.yaml","triacsin C"]],"b":[["antiprotozoal/triacsin-c.html","triacsin C"]]},{"id":"CHEBI:144729","l":"L-β-ethynylserine zwitterion","na":1,"nb":1,"a":[["amino_acids_and_peptides/ethynylserine.yaml","β-ethynylserine"]],"b":[["antibacterial/l-%CE%B2-ethynylserine-zwitterion.html","L-β-ethynylserine zwitterion"]]},{"id":"CHEBI:144833","l":"L-β-ethynylserine","na":1,"nb":1,"a":[["amino_acids_and_peptides/ethynylserine.yaml","β-ethynylserine"]],"b":[["antibacterial/l-%CE%B2-ethynylserine.html","L-β-ethynylserine"]]},{"id":"CHEBI:146007","l":"(M)-viriditoxin","na":1,"nb":1,"a":[["polyketides/viriditoxin.yaml","viriditoxin"]],"b":[["antibacterial/m-viriditoxin.html","(M)-viriditoxin"]]},{"id":"CHEBI:146153","l":"ilicicolin B","na":1,"nb":1,"a":[["unclassified/ilicicolin-b.yaml","ilicicolin B"]],"b":[["unspecified/ilicicolin-b.html","ilicicolin B"]]},{"id":"CHEBI:149660","l":"atromentin","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/atromentin.yaml","atromentin"]],"b":[["antibacterial/atromentin.html","atromentin"]]},{"id":"CHEBI:15353","l":"blasticidin S","na":1,"nb":1,"a":[["carbohydrates/blasticidin-s.yaml","blasticidin S"]],"b":[["antifungal/blasticidin-s.html","blasticidin S"]]},{"id":"CHEBI:156148","l":"ascofuranone","na":1,"nb":1,"a":[["unclassified/ascofuranone.yaml","ascofuranone"]],"b":[["antiprotozoal/ascofuranone.html","ascofuranone"]]},{"id":"CHEBI:156219","l":"ascochlorin","na":1,"nb":1,"a":[["unclassified/ascochlorin.yaml","ascochlorin"]],"b":[["antifungal/ascochlorin.html","ascochlorin"]]},{"id":"CHEBI:156291","l":"oviedomycin","na":1,"nb":1,"a":[["polyketides/oviedomycin.yaml","oviedomycin"]],"b":[["unspecified/oviedomycin.html","oviedomycin"]]},{"id":"CHEBI:156298","l":"aurafuron A","na":1,"nb":1,"a":[["polyketides/aurafuron-a.yaml","aurafuron A"]],"b":[["antifungal/aurafuron-a.html","aurafuron A"]]},{"id":"CHEBI:156301","l":"auricin","na":1,"nb":1,"a":[["polyketides/auricin.yaml","auricin"]],"b":[["unspecified/auricin.html","auricin"]]},{"id":"CHEBI:156313","l":"erdasporine A","na":1,"nb":1,"a":[["alkaloids/erdasporine-a.yaml","erdasporine A"]],"b":[["antibacterial/erdasporine-a.html","erdasporine A"]]},{"id":"CHEBI:156314","l":"erdasporine B","na":1,"nb":1,"a":[["alkaloids/erdasporine-b.yaml","erdasporine B"]],"b":[["antibacterial/erdasporine-b.html","erdasporine B"]]},{"id":"CHEBI:156315","l":"erdasporine C","na":1,"nb":1,"a":[["alkaloids/erdasporine-c.yaml","erdasporine C"]],"b":[["antibacterial/erdasporine-c.html","erdasporine C"]]},{"id":"CHEBI:156363","l":"gibepyrone A","na":1,"nb":1,"a":[["polyketides/gibepyrone-a.yaml","gibepyrone A"]],"b":[["antibacterial/gibepyrone-a.html","gibepyrone A"]]},{"id":"CHEBI:156386","l":"asperlactone","na":1,"nb":1,"a":[["polyketides/asperlactone.yaml","asperlactone"]],"b":[["antibacterial/asperlactone.html","asperlactone"]]},{"id":"CHEBI:156426","l":"curacomycin","na":1,"nb":1,"a":[["amino_acids_and_peptides/curacomycin.yaml","curacomycin"]],"b":[["antibacterial/curacomycin.html","curacomycin"]]},{"id":"CHEBI:156450","l":"thiolutin","na":1,"nb":1,"a":[["alkaloids/thiolutin.yaml","thiolutin"]],"b":[["antibacterial/thiolutin.html","thiolutin"]]},{"id":"CHEBI:156451","l":"holomycin","na":1,"nb":1,"a":[["alkaloids/holomycin.yaml","holomycin"]],"b":[["antibacterial/holomycin.html","holomycin"]]},{"id":"CHEBI:156453","l":"pyoluteorin","na":1,"nb":1,"a":[["alkaloids/pyoluteorin.yaml","pyoluteorin"]],"b":[["antibacterial/pyoluteorin.html","pyoluteorin"]]},{"id":"CHEBI:156455","l":"tropodithietic acid","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/tropodithietic-acid.yaml","tropodithietic acid"]],"b":[["antibacterial/tropodithietic-acid.html","tropodithietic acid"]]},{"id":"CHEBI:156550","l":"pyrrolomycin A","na":1,"nb":1,"a":[["alkaloids/pyrrolomycin-a.yaml","pyrrolomycin A"]],"b":[["antibacterial/pyrrolomycin-a.html","pyrrolomycin A"]]},{"id":"CHEBI:15732","l":"phosphonoacetic acid","na":1,"nb":1,"a":[["unclassified/phosphonoacetic-acid.yaml","phosphonoacetic acid"]],"b":[["antiviral/phosphonoacetic-acid.html","phosphonoacetic acid"]]},{"id":"CHEBI:161680","l":"aztreonam","na":1,"nb":1,"a":[["amino_acids_and_peptides/aztreonam.yaml","aztreonam"]],"b":[["antibacterial/aztreonam.html","aztreonam"]]},{"id":"CHEBI:16213","l":"coformycin","na":1,"nb":1,"a":[["carbohydrates/coformycin.yaml","coformycin"]],"b":[["unspecified/coformycin.html","coformycin"]]},{"id":"CHEBI:166872","l":"nucleocidin","na":1,"nb":1,"a":[["carbohydrates/nucleocidin.yaml","nucleocidin"]],"b":[["antibacterial/nucleocidin.html","nucleocidin"]]},{"id":"CHEBI:167043","l":"ochrindole A","na":1,"nb":1,"a":[["alkaloids/ochrindole-a.yaml","ochrindole A"]],"b":[["antibacterial/ochrindole-a.html","ochrindole A"]]},{"id":"CHEBI:167054","l":"acrophiarin","na":1,"nb":1,"a":[["amino_acids_and_peptides/acrophiarin.yaml","acrophiarin"]],"b":[["antifungal/acrophiarin.html","acrophiarin"]]},{"id":"CHEBI:168396","l":"mycophenolic acid","na":1,"nb":1,"a":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"]],"b":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]]},{"id":"CHEBI:17076","l":"streptomycin","na":1,"nb":1,"a":[["carbohydrates/streptomycin.yaml","streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"CHEBI:17630","l":"kanamycin A","na":1,"nb":1,"a":[["carbohydrates/kanamycin-a.yaml","kanamycin A"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"CHEBI:17695","l":"casbene","na":1,"nb":1,"a":[["terpenoids/casbene.yaml","casbene"]],"b":[["antifungal/casbene.html","casbene"]]},{"id":"CHEBI:17704","l":"aspulvinone E","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/aspulvinone-e.yaml","aspulvinone E"]],"b":[["antiviral/aspulvinone-e.html","aspulvinone E"]]},{"id":"CHEBI:17939","l":"puromycin","na":1,"nb":1,"a":[["carbohydrates/puromycin.yaml","puromycin"]],"b":[["antibacterial/puromycin.html","puromycin"]]},{"id":"CHEBI:18165","l":"isopenicillin N","na":1,"nb":1,"a":[["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"]],"b":[["unspecified/isopenicillin-n.html","isopenicillin N"]]},{"id":"CHEBI:184373","l":"cremeomycin","na":1,"nb":1,"a":[["unclassified/cremeomycin.yaml","cremeomycin"]],"b":[["antibacterial/cremeomycin.html","cremeomycin"]]},{"id":"CHEBI:190009","l":"himastatin","na":1,"nb":1,"a":[["amino_acids_and_peptides/himastatin.yaml","himastatin"]],"b":[["antibacterial/himastatin.html","himastatin"]]},{"id":"CHEBI:193157","l":"sceliphrolactam","na":1,"nb":1,"a":[["unclassified/sceliphrolactam.yaml","sceliphrolactam"]],"b":[["antifungal/sceliphrolactam.html","sceliphrolactam"]]},{"id":"CHEBI:206040","l":"","na":1,"nb":1,"a":[["polyketides/tartrolon-d.yaml","tartrolon D"]],"b":[["antibacterial/tartrolon-d.html","tartrolon D"]]},{"id":"CHEBI:219363","l":"reedsmycin A","na":1,"nb":1,"a":[["polyketides/reedsmycin-a.yaml","reedsmycin A"]],"b":[["antifungal/reedsmycin-a.html","reedsmycin A"]]},{"id":"CHEBI:219367","l":"reedsmycin B","na":1,"nb":1,"a":[["polyketides/reedsmycin-b.yaml","reedsmycin B"]],"b":[["antifungal/reedsmycin-b.html","reedsmycin B"]]},{"id":"CHEBI:219386","l":"reedsmycin E","na":1,"nb":1,"a":[["polyketides/reedsmycin-e.yaml","reedsmycin E"]],"b":[["antifungal/reedsmycin-e.html","reedsmycin E"]]},{"id":"CHEBI:2448","l":"actinorhodin","na":1,"nb":1,"a":[["polyketides/actinorhodin.yaml","actinorhodin"]],"b":[["unspecified/actinorhodin.html","actinorhodin"]]},{"id":"CHEBI:24750","l":"","na":1,"nb":1,"a":[["carbohydrates/5-hydroxystreptomycin.yaml","5'-hydroxystreptomycin"]],"b":[["unspecified/5-hydroxystreptomycin.html","5'-hydroxystreptomycin"]]},{"id":"CHEBI:2762","l":"antimycin A","na":1,"nb":1,"a":[["unclassified/antimycin-a.yaml","antimycin A"]],"b":[["antifungal/antimycin-a.html","antimycin A"]]},{"id":"CHEBI:2766","l":"aphidicolin","na":1,"nb":1,"a":[["terpenoids/aphidicolin.yaml","aphidicolin"]],"b":[["antiviral/aphidicolin.html","aphidicolin"]]},{"id":"CHEBI:27666","l":"actinomycin D","na":1,"nb":1,"a":[["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"]],"b":[["antibacterial/actinomycin-d.html","actinomycin D"]]},{"id":"CHEBI:27834","l":"pentostatin","na":1,"nb":1,"a":[["alkaloids/pentostatin.yaml","pentostatin"]],"b":[["unspecified/pentostatin.html","pentostatin"]]},{"id":"CHEBI:28001","l":"vancomycin","na":1,"nb":1,"a":[["amino_acids_and_peptides/vancomycin.yaml","vancomycin"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"CHEBI:28196","l":"erythromycin B","na":1,"nb":1,"a":[["polyketides/erythromycin-b.yaml","erythromycin B"]],"b":[["unspecified/erythromycin-b.html","erythromycin B"]]},{"id":"CHEBI:28283","l":"capsidiol","na":1,"nb":1,"a":[["terpenoids/capsidiol.yaml","capsidiol"]],"b":[["antifungal/capsidiol.html","capsidiol"]]},{"id":"CHEBI:28331","l":"erythromycin D","na":1,"nb":1,"a":[["polyketides/erythromycin-d.yaml","erythromycin D"]],"b":[["unspecified/erythromycin-d.html","erythromycin D"]]},{"id":"CHEBI:28748","l":"doxorubicin","na":1,"nb":1,"a":[["polyketides/doxorubicin.yaml","doxorubicin"]],"b":[["unspecified/doxorubicin.html","doxorubicin"]]},{"id":"CHEBI:28864","l":"tobramycin","na":1,"nb":1,"a":[["carbohydrates/tobramycin.yaml","tobramycin"]],"b":[["antibacterial/tobramycin.html","tobramycin"]]},{"id":"CHEBI:28915","l":"fosfomycin","na":1,"nb":1,"a":[["unclassified/fosfomycin.yaml","fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"CHEBI:29515","l":"ansamitocin P3","na":1,"nb":1,"a":[["polyketides/ansamitocin-p3.yaml","ansamitocin P3"]],"b":[["unspecified/ansamitocin-p3.html","ansamitocin P3"]]},{"id":"CHEBI:29556","l":"chloroeremomycin","na":1,"nb":1,"a":[["amino_acids_and_peptides/chloroeremomycin.yaml","chloroeremomycin"]],"b":[["antibacterial/chloroeremomycin.html","chloroeremomycin"]]},{"id":"CHEBI:29630","l":"methymycin","na":1,"nb":1,"a":[["polyketides/methymycin.yaml","methymycin"]],"b":[["antibacterial/methymycin.html","methymycin"]]},{"id":"CHEBI:29649","l":"narbomycin","na":1,"nb":1,"a":[["polyketides/narbomycin.yaml","narbomycin"]],"b":[["antibacterial/narbomycin.html","narbomycin"]]},{"id":"CHEBI:29656","l":"neomethymycin","na":1,"nb":1,"a":[["polyketides/neomethymycin.yaml","neomethymycin"]],"b":[["unspecified/neomethymycin.html","neomethymycin"]]},{"id":"CHEBI:29665","l":"pikromycin","na":1,"nb":1,"a":[["polyketides/pikromycin.yaml","pikromycin"]],"b":[["antibacterial/pikromycin.html","pikromycin"]]},{"id":"CHEBI:29673","l":"rifamycin SV","na":1,"nb":1,"a":[["polyketides/rifamycin-sv.yaml","rifamycin SV"]],"b":[["antimycobacterial/rifamycin-sv.html","rifamycin SV"]]},{"id":"CHEBI:29701","l":"tyrocidine A","na":1,"nb":1,"a":[["amino_acids_and_peptides/tyrocidine-a.yaml","tyrocidine A"]],"b":[["antibacterial/tyrocidine-a.html","tyrocidine A"]]},{"id":"CHEBI:29703","l":"validamycin A","na":1,"nb":1,"a":[["carbohydrates/validamycin-a.yaml","validamycin A"]],"b":[["antifungal/validamycin-a.html","validamycin A"]]},{"id":"CHEBI:3096","l":"bikaverin","na":1,"nb":1,"a":[["polyketides/bikaverin.yaml","bikaverin"]],"b":[["antibacterial/bikaverin.html","bikaverin"]]},{"id":"CHEBI:3139","l":"bleomycin A2","na":1,"nb":1,"a":[["amino_acids_and_peptides/bleomycin-a2.yaml","bleomycin A2"]],"b":[["antibacterial/bleomycin-a2.html","bleomycin A2"]]},{"id":"CHEBI:315018","l":"echinocandin B","na":1,"nb":1,"a":[["amino_acids_and_peptides/echinocandin-b.yaml","echinocandin B"]],"b":[["antifungal/echinocandin-b.html","echinocandin B"]]},{"id":"CHEBI:31856","l":"mithramycin","na":1,"nb":1,"a":[["polyketides/mithramycin.yaml","mithramycin"]],"b":[["unspecified/mithramycin.html","mithramycin"]]},{"id":"CHEBI:32079","l":"pyrrolnitrin","na":1,"nb":1,"a":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]],"b":[["antifungal/pyrrolnitrin.html","pyrrolnitrin"]]},{"id":"CHEBI:3252","l":"C-1027 chromophore","na":1,"nb":1,"a":[["polyketides/c-1027-chromophore.yaml","C-1027 chromophore"]],"b":[["unspecified/c-1027-chromophore.html","C-1027 chromophore"]]},{"id":"CHEBI:338412","l":"(-)-anisomycin","na":1,"nb":1,"a":[["alkaloids/anisomycin.yaml","(−)-anisomycin"]],"b":[["antiviral/anisomycin.html","(−)-anisomycin"]]},{"id":"CHEBI:34996","l":"teicoplanin A2-3","na":1,"nb":1,"a":[["amino_acids_and_peptides/teicoplanin-a2-3.yaml","teicoplanin A2-3"]],"b":[["unspecified/teicoplanin-a2-3.html","teicoplanin A2-3"]]},{"id":"CHEBI:34997","l":"teicoplanin A2-4","na":1,"nb":1,"a":[["amino_acids_and_peptides/teicoplanin-a2-4.yaml","teicoplanin A2-4"]],"b":[["unspecified/teicoplanin-a2-4.html","teicoplanin A2-4"]]},{"id":"CHEBI:3613","l":"chlorflavonin","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/chlorflavonin.yaml","chlorflavonin"]],"b":[["antifungal/chlorflavonin.html","chlorflavonin"]]},{"id":"CHEBI:3907","l":"coumermycin A1","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/coumermycin-a1.yaml","coumermycin A1"]],"b":[["antibacterial/coumermycin-a1.html","coumermycin A1"]]},{"id":"CHEBI:40009","l":"D-cycloserine","na":1,"nb":1,"a":[["amino_acids_and_peptides/cycloserine.yaml","cycloserine"]],"b":[["antimycobacterial/d-cycloserine.html","D-cycloserine"]]},{"id":"CHEBI:4031","l":"cyclosporin A","na":1,"nb":1,"a":[["amino_acids_and_peptides/cyclosporin-a.yaml","cyclosporin A"]],"b":[["antifungal/cyclosporin-a.html","cyclosporin A"]]},{"id":"CHEBI:41977","l":"daunorubicin","na":1,"nb":1,"a":[["polyketides/daunorubicin.yaml","daunorubicin"]],"b":[["unspecified/daunorubicin.html","daunorubicin"]]},{"id":"CHEBI:42355","l":"erythromycin A","na":1,"nb":1,"a":[["polyketides/erythromycin-a.yaml","erythromycin A"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"CHEBI:42452","l":"formycin A","na":1,"nb":1,"a":[["alkaloids/formycin-a.yaml","formycin A"]],"b":[["unspecified/formycin-a.html","formycin A"]]},{"id":"CHEBI:43616","l":"K-252a","na":1,"nb":1,"a":[["alkaloids/k-252a.yaml","K-252a"]],"b":[["unspecified/k-252a.html","K-252a"]]},{"id":"CHEBI:45257","l":"ribostamycin","na":1,"nb":1,"a":[["carbohydrates/ribostamycin.yaml","ribostamycin"]],"b":[["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"CHEBI:45327","l":"adenine arabinoside","na":1,"nb":1,"a":[["carbohydrates/adenine-arabinoside.yaml","adenine arabinoside"]],"b":[["unspecified/adenine-arabinoside.html","adenine arabinoside"]]},{"id":"CHEBI:45773","l":"streptolydigin","na":1,"nb":1,"a":[["polyketides/streptolydigin.yaml","streptolydigin"]],"b":[["unspecified/streptolydigin.html","streptolydigin"]]},{"id":"CHEBI:46416","l":"virginiamycin S1","na":1,"nb":1,"a":[["unclassified/virginiamycin-s1.yaml","virginiamycin S1"]],"b":[["antibacterial/virginiamycin-s1.html","virginiamycin S1"]]},{"id":"CHEBI:473992","l":"nystatin A1","na":1,"nb":1,"a":[["polyketides/nystatin-a1.yaml","nystatin A1"]],"b":[["antifungal/nystatin-a1.html","nystatin A1"]]},{"id":"CHEBI:48200","l":"griseusin B","na":1,"nb":1,"a":[["polyketides/griseusin-b.yaml","griseusin B"]],"b":[["unspecified/griseusin-b.html","griseusin B"]]},{"id":"CHEBI:48201","l":"frenolicin B","na":1,"nb":1,"a":[["polyketides/frenolicin-b.yaml","frenolicin B"]],"b":[["unspecified/frenolicin-b.html","frenolicin B"]]},{"id":"CHEBI:48267","l":"tubercidin","na":1,"nb":1,"a":[["carbohydrates/tubercidin.yaml","tubercidin"]],"b":[["antifungal/tubercidin.html","tubercidin"]]},{"id":"CHEBI:48635","l":"fumagillin","na":1,"nb":1,"a":[["polyketides/fumagillin.yaml","fumagillin"]],"b":[["antibacterial/fumagillin.html","fumagillin"]]},{"id":"CHEBI:48947","l":"clavulanic acid","na":1,"nb":1,"a":[["amino_acids_and_peptides/clavulanic-acid.yaml","clavulanic acid"]],"b":[["antibacterial/clavulanic-acid.html","clavulanic acid"]]},{"id":"CHEBI:50437","l":"nocardamine","na":1,"nb":1,"a":[["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"]],"b":[["antibacterial/nocardamine.html","nocardamine"]]},{"id":"CHEBI:51460","l":"albaflavenone","na":1,"nb":1,"a":[["terpenoids/albaflavenone.yaml","albaflavenone"]],"b":[["unspecified/albaflavenone.html","albaflavenone"]]},{"id":"CHEBI:52549","l":"sordarin","na":1,"nb":1,"a":[["terpenoids/sordarin.yaml","sordarin"]],"b":[["antifungal/sordarin.html","sordarin"]]},{"id":"CHEBI:5292","l":"geldanamycin","na":1,"nb":1,"a":[["polyketides/geldanamycin.yaml","geldanamycin"]],"b":[["antiviral/geldanamycin.html","geldanamycin"]]},{"id":"CHEBI:5674","l":"herbimycin","na":1,"nb":1,"a":[["polyketides/herbimycin-a.yaml","herbimycin A"]],"b":[["unspecified/herbimycin.html","herbimycin"]]},{"id":"CHEBI:59064","l":"colistin A","na":1,"nb":1,"a":[["amino_acids_and_peptides/colistin-a.yaml","colistin A"]],"b":[["antibacterial/colistin-a.html","colistin A"]]},{"id":"CHEBI:59673","l":"colistin B","na":1,"nb":1,"a":[["amino_acids_and_peptides/colistin-b.yaml","colistin B"]],"b":[["antibacterial/colistin-b.html","colistin B"]]},{"id":"CHEBI:60584","l":"bicozamycin","na":1,"nb":1,"a":[["unclassified/bicozamycin.yaml","bicozamycin"]],"b":[["antibacterial/bicozamycin.html","bicozamycin"]]},{"id":"CHEBI:60821","l":"streptothricin F","na":1,"nb":1,"a":[["carbohydrates/streptothricin-f.yaml","streptothricin F"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"]]},{"id":"CHEBI:60828","l":"streptothricin D","na":1,"nb":1,"a":[["carbohydrates/streptothricin-d.yaml","streptothricin D"]],"b":[["unspecified/streptothricin-d.html","streptothricin D"]]},{"id":"CHEBI:61080","l":"romidepsin","na":1,"nb":1,"a":[["unclassified/romidepsin.yaml","romidepsin"]],"b":[["unspecified/romidepsin.html","romidepsin"]]},{"id":"CHEBI:62219","l":"2-heptyl-4-quinolone","na":1,"nb":1,"a":[["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"]],"b":[["antibacterial/2-heptyl-4-quinolone.html","2-heptyl-4-quinolone"]]},{"id":"CHEBI:623918","l":"nikkomycin Z","na":1,"nb":1,"a":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"]],"b":[["antifungal/nikkomycin-z.html","nikkomycin Z"]]},{"id":"CHEBI:64248","l":"tunicamycin B1","na":1,"nb":1,"a":[["carbohydrates/tunicamycin-b1.yaml","tunicamycin B1"]],"b":[["unspecified/tunicamycin-b1.html","tunicamycin B1"]]},{"id":"CHEBI:64273","l":"erythromycin C","na":1,"nb":1,"a":[["polyketides/erythromycin-c.yaml","erythromycin C"]],"b":[["unspecified/erythromycin-c.html","erythromycin C"]]},{"id":"CHEBI:6472","l":"lincomycin","na":1,"nb":1,"a":[["carbohydrates/lincomycin.yaml","lincomycin"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"CHEBI:65110","l":"butirosin B","na":1,"nb":1,"a":[["carbohydrates/butirosin-b.yaml","butirosin B"]],"b":[["unspecified/butirosin-b.html","butirosin B"]]},{"id":"CHEBI:65112","l":"butirosin A","na":1,"nb":1,"a":[["carbohydrates/butirosin-a.yaml","butirosin A"]],"b":[["unspecified/butirosin-a.html","butirosin A"]]},{"id":"CHEBI:65401","l":"ambiguine I","na":1,"nb":1,"a":[["alkaloids/ambiguine-i-isonitrile.yaml","ambiguine I isonitrile"]],"b":[["antibacterial/ambiguine-i.html","ambiguine I"]]},{"id":"CHEBI:65474","l":"BE-24566B","na":1,"nb":1,"a":[["polyketides/be-24566b.yaml","BE-24566B"]],"b":[["antibacterial/be-24566b.html","BE-24566B"]]},{"id":"CHEBI:65517","l":"brasiliquinone B","na":1,"nb":1,"a":[["polyketides/brasiliquinone-b.yaml","brasiliquinone B"]],"b":[["antibacterial/brasiliquinone-b.html","brasiliquinone B"]]},{"id":"CHEBI:65619","l":"chloropeptin II","na":1,"nb":1,"a":[["amino_acids_and_peptides/isocomplestatin.yaml","isocomplestatin"]],"b":[["antiviral/chloropeptin-ii.html","chloropeptin II"]]},{"id":"CHEBI:65716","l":"cystothiazole A","na":1,"nb":1,"a":[["unclassified/cystothiazole-a.yaml","cystothiazole A"]],"b":[["antifungal/cystothiazole-a.html","cystothiazole A"]]},{"id":"CHEBI:65915","l":"FR901464","na":1,"nb":1,"a":[["fatty_acids/fr901464.yaml","FR901464"]],"b":[["unspecified/fr901464.html","FR901464"]]},{"id":"CHEBI:65964","l":"gilvusmycin","na":1,"nb":1,"a":[["alkaloids/gilvusmycin.yaml","gilvusmycin"]],"b":[["unspecified/gilvusmycin.html","gilvusmycin"]]},{"id":"CHEBI:66006","l":"harziphilone","na":1,"nb":1,"a":[["polyketides/harziphilone.yaml","harziphilone"]],"b":[["antiviral/harziphilone.html","harziphilone"]]},{"id":"CHEBI:66093","l":"isocomplestatin","na":1,"nb":1,"a":[["amino_acids_and_peptides/isocomplestatin.yaml","isocomplestatin"]],"b":[["antiviral/complestatin.html","isocomplestatin"]]},{"id":"CHEBI:66135","l":"kalimantacin A","na":1,"nb":1,"a":[["polyketides/kalimantacin-a.yaml","kalimantacin A"]],"b":[["antibacterial/kalimantacin-a.html","kalimantacin A"]]},{"id":"CHEBI:66553","l":"lactonamycin","na":1,"nb":1,"a":[["unclassified/lactonamycin.yaml","lactonamycin"]],"b":[["antibacterial/lactonamycin.html","lactonamycin"]]},{"id":"CHEBI:66678","l":"(−)-marinopyrrole A","na":1,"nb":1,"a":[["alkaloids/marinopyrrole-a.yaml","(−)-marinopyrrole A"]],"b":[["antibacterial/marinopyrrole-a.html","(−)-marinopyrrole A"]]},{"id":"CHEBI:66679","l":"(−)-marinopyrrole B","na":1,"nb":1,"a":[["alkaloids/marinopyrrole-b.yaml","(−)-marinopyrrole B"]],"b":[["antibacterial/marinopyrrole-b.html","(−)-marinopyrrole B"]]},{"id":"CHEBI:66687","l":"mediomycin A","na":1,"nb":1,"a":[["fatty_acids/mediomycin-a.yaml","mediomycin A"]],"b":[["antifungal/mediomycin-a.html","mediomycin A"]]},{"id":"CHEBI:66771","l":"polyketomycin","na":1,"nb":1,"a":[["polyketides/polyketomycin.yaml","polyketomycin"]],"b":[["antibacterial/polyketomycin.html","polyketomycin"]]},{"id":"CHEBI:6701","l":"maytansine","na":1,"nb":1,"a":[["polyketides/maytansine.yaml","maytansine"]],"b":[["unspecified/maytansine.html","maytansine"]]},{"id":"CHEBI:67811","l":"zorbamycin","na":1,"nb":1,"a":[["amino_acids_and_peptides/zorbamycin.yaml","zorbamycin"]],"b":[["unspecified/zorbamycin.html","zorbamycin"]]},{"id":"CHEBI:68236","l":"platensimycin","na":1,"nb":1,"a":[["terpenoids/platensimycin.yaml","platensimycin"]],"b":[["antibacterial/platensimycin.html","platensimycin"]]},{"id":"CHEBI:68241","l":"platencin","na":1,"nb":1,"a":[["terpenoids/platencin.yaml","platencin"]],"b":[["antibacterial/platencin.html","platencin"]]},{"id":"CHEBI:7025","l":"mupirocin","na":1,"nb":1,"a":[["polyketides/mupirocin.yaml","mupirocin"]],"b":[["antibacterial/mupirocin.html","mupirocin"]]},{"id":"CHEBI:70816","l":"pentalenolactone","na":1,"nb":1,"a":[["terpenoids/pentalenolactone.yaml","pentalenolactone"]],"b":[["unspecified/pentalenolactone.html","pentalenolactone"]]},{"id":"CHEBI:71961","l":"lividomycin A","na":1,"nb":1,"a":[["carbohydrates/lividomycin-a.yaml","lividomycin A"]],"b":[["antimycobacterial/lividomycin-a.html","lividomycin A"]]},{"id":"CHEBI:72590","l":"rhizoxin","na":1,"nb":1,"a":[["unclassified/rhizoxin-a.yaml","rhizoxin A"]],"b":[["unspecified/rhizoxin.html","rhizoxin"]]},{"id":"CHEBI:73167","l":"concanamycin A","na":1,"nb":1,"a":[["polyketides/concanamycin-a.yaml","concanamycin A"]],"b":[["antifungal/concanamycin-a.html","concanamycin A"]]},{"id":"CHEBI:7488","l":"natamycin","na":1,"nb":1,"a":[["polyketides/natamycin.yaml","natamycin"]],"b":[["antifungal/natamycin.html","natamycin"]]},{"id":"CHEBI:74926","l":"patulin","na":1,"nb":1,"a":[["polyketides/patulin.yaml","patulin"]],"b":[["unspecified/patulin.html","patulin"]]},{"id":"CHEBI:7508","l":"framycetin","na":1,"nb":1,"a":[["carbohydrates/framycetin.yaml","framycetin"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"CHEBI:75276","l":"ikarugamycin","na":1,"nb":1,"a":[["unclassified/ikarugamycin.yaml","ikarugamycin"]],"b":[["antiprotozoal/ikarugamycin.html","ikarugamycin"]]},{"id":"CHEBI:75306","l":"2-heptyl-4-hydroxyquinoline","na":1,"nb":1,"a":[["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"]],"b":[["antibacterial/2-heptyl-4-hydroxyquinoline.html","2-heptyl-4-hydroxyquinoline"]]},{"id":"CHEBI:7569","l":"nigericin","na":1,"nb":1,"a":[["polyketides/nigericin.yaml","nigericin"]],"b":[["antibacterial/nigericin.html","nigericin"]]},{"id":"CHEBI:77772","l":"ilicicolin H","na":1,"nb":1,"a":[["alkaloids/ilicicolin-h.yaml","ilicicolin H"]],"b":[["unspecified/ilicicolin-h.html","ilicicolin H"]]},{"id":"CHEBI:77879","l":"elaiophylin","na":1,"nb":1,"a":[["polyketides/elaiophylin.yaml","elaiophylin"]],"b":[["antifungal/elaiophylin.html","elaiophylin"]]},{"id":"CHEBI:78156","l":"mucidin","na":1,"nb":1,"a":[["polyketides/mucidin.yaml","mucidin"]],"b":[["antifungal/mucidin.html","mucidin"]]},{"id":"CHEBI:78688","l":"2,4-diacetylphloroglucinol","na":1,"nb":1,"a":[["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"]],"b":[["antifungal/2-4-diacetylphloroglucinol.html","2,4-diacetylphloroglucinol"]]},{"id":"CHEBI:79391","l":"(−)-chuangxinmycin","na":1,"nb":1,"a":[["alkaloids/chuangxinmycin.yaml","(−)-chuangxinmycin"]],"b":[["antibacterial/chuangxinmycin.html","(−)-chuangxinmycin"]]},{"id":"CHEBI:80729","l":"toxoflavin","na":1,"nb":1,"a":[["alkaloids/toxoflavin.yaml","toxoflavin"]],"b":[["antibacterial/toxoflavin.html","toxoflavin"]]},{"id":"CHEBI:82758","l":"prodigiosin","na":1,"nb":1,"a":[["alkaloids/prodigiosin.yaml","prodigiosin"]],"b":[["unspecified/prodigiosin.html","prodigiosin"]]},{"id":"CHEBI:83206","l":"albomycin δ1","na":1,"nb":1,"a":[["amino_acids_and_peptides/albomycin-1.yaml","albomycin δ1"]],"b":[["antibacterial/albomycin-%CE%B41.html","albomycin δ1"]]},{"id":"CHEBI:8349","l":"pradimicin A","na":1,"nb":1,"a":[["polyketides/pradimicin-a.yaml","pradimicin A"]],"b":[["antifungal/pradimicin-a.html","pradimicin A"]]},{"id":"CHEBI:84037","l":"ravidomycin","na":1,"nb":1,"a":[["polyketides/ravidomycin.yaml","ravidomycin"]],"b":[["unspecified/ravidomycin.html","ravidomycin"]]},{"id":"CHEBI:85129","l":"ristocetin","na":1,"nb":1,"a":[["amino_acids_and_peptides/ristocetin-a.yaml","Ristocetin A"]],"b":[["antibacterial/ristocetin.html","ristocetin"]]},{"id":"CHEBI:85251","l":"teicoplanin A2-2","na":1,"nb":1,"a":[["amino_acids_and_peptides/teicoplanin-a2-2.yaml","teicoplanin A2-2"]],"b":[["unspecified/teicoplanin-a2-2.html","teicoplanin A2-2"]]},{"id":"CHEBI:85616","l":"viridicatumtoxin","na":1,"nb":1,"a":[["unclassified/viridicatumtoxin.yaml","viridicatumtoxin"]],"b":[["unspecified/viridicatumtoxin.html","viridicatumtoxin"]]},{"id":"CHEBI:86012","l":"oxetanocin A","na":1,"nb":1,"a":[["carbohydrates/oxetanocin-a.yaml","oxetanocin A"]],"b":[["antibacterial/oxetanocin-a.html","oxetanocin A"]]},{"id":"CHEBI:8653","l":"pyocyanine","na":1,"nb":1,"a":[["alkaloids/pyocyanine.yaml","pyocyanine"]],"b":[["antibacterial/pyocyanine.html","pyocyanine"]]},{"id":"CHEBI:87084","l":"rosaramicin","na":1,"nb":1,"a":[["polyketides/rosaramicin.yaml","rosaramicin"]],"b":[["antibacterial/rosaramicin.html","rosaramicin"]]},{"id":"CHEBI:87399","l":"UK 63598","na":1,"nb":1,"a":[["unclassified/uk-63598.yaml","UK 63598"]],"b":[["unspecified/uk-63598.html","UK 63598"]]},{"id":"CHEBI:90284","l":"pirazofurin","na":1,"nb":1,"a":[["unclassified/pirazofurin.yaml","pirazofurin"]],"b":[["unspecified/pirazofurin.html","pirazofurin"]]},{"id":"CHEBI:90888","l":"aurachin C","na":1,"nb":1,"a":[["alkaloids/aurachin-c.yaml","aurachin C"]],"b":[["antibacterial/aurachin-c.html","aurachin C"]]},{"id":"CHEBI:90924","l":"aurachin A","na":1,"nb":1,"a":[["alkaloids/aurachin-a.yaml","aurachin A"]],"b":[["antibacterial/aurachin-a.html","aurachin A"]]},{"id":"CHEBI:90941","l":"sibiromycin","na":1,"nb":1,"a":[["carbohydrates/sibiromycin.yaml","sibiromycin"]],"b":[["unspecified/sibiromycin.html","sibiromycin"]]},{"id":"CHEBI:9168","l":"sirolimus","na":1,"nb":1,"a":[["polyketides/sirolimus.yaml","sirolimus"]],"b":[["antibacterial/sirolimus.html","sirolimus"]]},{"id":"CHEBI:9169","l":"sisomycin","na":1,"nb":1,"a":[["carbohydrates/sisomycin.yaml","sisomycin"]],"b":[["antibacterial/sisomycin.html","sisomycin"]]},{"id":"CHEBI:9215","l":"spectinomycin","na":1,"nb":1,"a":[["carbohydrates/spectinomycin.yaml","spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"CHEBI:92181","l":"lasalocid","na":1,"nb":1,"a":[["polyketides/lasalocid.yaml","lasalocid"]],"b":[["antiprotozoal/lasalocid.html","lasalocid"]]},{"id":"CHEBI:9232","l":"spinosyn D","na":1,"nb":1,"a":[["polyketides/spinosyn-d.yaml","spinosyn D"]],"b":[["unspecified/spinosyn-d.html","spinosyn D"]]},{"id":"CHEBI:9287","l":"streptonigrin","na":1,"nb":1,"a":[["alkaloids/streptonigrin.yaml","streptonigrin"]],"b":[["unspecified/streptonigrin.html","streptonigrin"]]},{"id":"CHEBI:9470","l":"tetracenomycin C","na":1,"nb":1,"a":[["polyketides/tetracenomycin-c.yaml","tetracenomycin C"]],"b":[["antibacterial/tetracenomycin-c.html","tetracenomycin C"]]},{"id":"CHEBI:9555","l":"tioguanine","na":1,"nb":1,"a":[["alkaloids/tioguanine.yaml","tioguanine"]],"b":[["antiviral/tioguanine.html","tioguanine"]]},{"id":"DOI:10.1002/anie.201910356","l":"","na":1,"nb":1,"a":[["unclassified/pirazofurin.yaml","pirazofurin"]],"b":[["unspecified/pirazofurin.html","pirazofurin"]]},{"id":"DOI:10.1016/j.chembiol.2006.09.007","l":"","na":1,"nb":1,"a":[["unclassified/fosfomycin.yaml","fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"DOI:10.1016/j.chembiol.2010.03.015","l":"","na":1,"nb":1,"a":[["unclassified/viridicatumtoxin.yaml","viridicatumtoxin"]],"b":[["unspecified/viridicatumtoxin.html","viridicatumtoxin"]]},{"id":"DOI:10.1021/ja00361a029","l":"","na":1,"nb":1,"a":[["amino_acids_and_peptides/vancomycin.yaml","vancomycin"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"DOI:10.1021/ja312503y","l":"","na":1,"nb":1,"a":[["polyketides/fumagillin.yaml","fumagillin"]],"b":[["antibacterial/fumagillin.html","fumagillin"]]},{"id":"DOI:10.1128/aem.03015-10","l":"","na":1,"nb":1,"a":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"]],"b":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]]},{"id":"DOI:10.1128/aem.41.3.729-736.1981","l":"","na":1,"nb":1,"a":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"]],"b":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]]},{"id":"DOI:10.1128/spectrum.01171-21","l":"","na":1,"nb":1,"a":[["alkaloids/prodigiosin.yaml","prodigiosin"]],"b":[["unspecified/prodigiosin.html","prodigiosin"]]},{"id":"NCBITaxon:1156913","l":"","na":1,"nb":1,"a":[["amino_acids_and_peptides/vancomycin.yaml","vancomycin"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"NCBITaxon:1352936","l":"","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/clorobiocin.yaml","clorobiocin"]],"b":[["antibacterial/clorobiocin.html","clorobiocin"]]},{"id":"NCBITaxon:1469403","l":"","na":1,"nb":1,"a":[["unclassified/ikarugamycin.yaml","ikarugamycin"]],"b":[["antiprotozoal/ikarugamycin.html","ikarugamycin"]]},{"id":"NCBITaxon:1654360","l":"Photobacterium galatheae","na":1,"nb":1,"a":[["alkaloids/holomycin.yaml","holomycin"]],"b":[["antibacterial/holomycin.html","holomycin"]]},{"id":"NCBITaxon:1764","l":"Mycobacterium avium","na":1,"nb":1,"a":[["fatty_acids/gpl-21.yaml","GPL-21"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"NCBITaxon:2583819","l":"","na":1,"nb":1,"a":[["polyketides/nigericin.yaml","nigericin"]],"b":[["antibacterial/nigericin.html","nigericin"]]},{"id":"NCBITaxon:263","l":"Francisella tularensis","na":1,"nb":1,"a":[["polyketides/emodin.yaml","emodin"]],"b":[["unspecified/%CE%B1-mangostin.html","α-mangostin"]]},{"id":"NCBITaxon:41251","l":"Strobilurus tenacellus","na":1,"nb":1,"a":[["polyketides/mucidin.yaml","mucidin"]],"b":[["antifungal/mucidin.html","mucidin"]]},{"id":"NCBITaxon:527005","l":"","na":1,"nb":1,"a":[["alkaloids/holomycin.yaml","holomycin"]],"b":[["antibacterial/holomycin.html","holomycin"]]},{"id":"NCBITaxon:5382","l":"Suillus grevillei","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/atromentin.yaml","atromentin"]],"b":[["antibacterial/atromentin.html","atromentin"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":1,"nb":1,"a":[["alkaloids/congocidine.yaml","congocidine"]],"b":[["antiprotozoal/emetine.html","emetine"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":1,"nb":1,"a":[["polyketides/emodin.yaml","emodin"]],"b":[["unspecified/%CE%B1-mangostin.html","α-mangostin"]]},{"id":"NCBITaxon:67283","l":"Streptomyces candidus","na":1,"nb":1,"a":[["unclassified/pirazofurin.yaml","pirazofurin"]],"b":[["unspecified/pirazofurin.html","pirazofurin"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":1,"a":[["unclassified/lysocin-e.yaml","lysocin E"]],"b":[["antibacterial/lysocin-e.html","lysocin E"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":1,"a":[["unclassified/mycobactin.yaml","mycobactin"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:889487","l":"","na":1,"nb":1,"a":[["unclassified/antimycin-a.yaml","antimycin A"]],"b":[["antifungal/antimycin-a.html","antimycin A"]]},{"id":"UniProt:A0A1S5RQP7","l":"","na":1,"nb":1,"a":[["alkaloids/pentostatin.yaml","pentostatin"]],"b":[["unspecified/pentostatin.html","pentostatin"]]},{"id":"UniProt:B1JQH1","l":"","na":1,"nb":1,"a":[["polyketides/emodin.yaml","emodin"]],"b":[["unspecified/%CE%B1-mangostin.html","α-mangostin"]]}]} \ No newline at end of file +{"a":"NaturalProductMech","b":"AntibioticMech","base":{"NaturalProductMech":"https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/natural_products/","AntibioticMech":"https://culturebotai.github.io/AntibioticMech/pages/"},"n":278,"by":{"CHEBI":180,"NCBITaxon":96,"UniProt":2},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":24,"nb":30,"a":[["alkaloids/biotin.yaml","biotin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":12,"nb":12,"a":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"NCBITaxon:330879","l":"Aspergillus fumigatus (strain ATCC MYA-4609 / CBS 101355 / FGSC A1100 / Af293)","na":14,"nb":5,"a":[["alkaloids/fumigaclavine-c.yaml","fumigaclavine C"],["alkaloids/fumiquinazoline-a.yaml","fumiquinazoline A"],["alkaloids/fumiquinazoline-c.yaml","fumiquinazoline C"],["alkaloids/fumiquinazoline-d.yaml","fumiquinazoline D"],["alkaloids/hexadehydroastechrome.yaml","hexadehydroastechrome"],["polyketides/endocrocin.yaml","endocrocin"]],"b":[["antibacterial/fumagillin.html","fumagillin"],["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/terbinafine.html","terbinafine"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:5518","l":"Fusarium graminearum","na":14,"nb":5,"a":[["amino_acids_and_peptides/fusaoctaxin-a.yaml","fusaoctaxin A"],["polyketides/aurofusarin.yaml","aurofusarin"],["polyketides/fusarielin-h.yaml","fusarielin H"],["polyketides/gibepyrone-a.yaml","gibepyrone A"],["polyketides/prolipyrone-b.yaml","prolipyrone B"],["polyketides/zearalenone.yaml","zearalenone"]],"b":[["antifungal/carbendazim.html","carbendazim"],["antifungal/difenoconazole.html","difenoconazole"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/prochloraz.html","prochloraz"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":5,"nb":13,"a":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"],["unclassified/leuvalin.yaml","leuvalin"],["unclassified/phevalin.yaml","phevalin"],["unclassified/tyrvalin.yaml","tyrvalin"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/bromodeoxytopsentin.html","bromodeoxytopsentin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"NCBITaxon:229533","l":"Fusarium graminearum PH-1","na":11,"nb":5,"a":[["alkaloids/chrysogine.yaml","chrysogine"],["amino_acids_and_peptides/fusaoctaxin-a.yaml","fusaoctaxin A"],["polyketides/aurofusarin.yaml","aurofusarin"],["polyketides/prolipyrone-b.yaml","prolipyrone B"],["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"],["terpenoids/15-acetyldeoxynivalenol.yaml","15-acetyldeoxynivalenol"]],"b":[["antifungal/carbendazim.html","carbendazim"],["antifungal/difenoconazole.html","difenoconazole"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/prochloraz.html","prochloraz"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:40559","l":"Botrytis cinerea","na":23,"nb":4,"a":[["terpenoids/1-epibotrydial.yaml","1-epibotrydial"],["terpenoids/10-dehydroxy-dihydrobotrydialone.yaml","10-dehydroxy dihydrobotrydialone"],["terpenoids/10-epi-dihydrobotrydial.yaml","10-epi-dihydrobotrydial"],["terpenoids/10-oxo-dihydrobotrydial.yaml","10-Oxo-dihydrobotrydial"],["terpenoids/10-oxodehydrodihydrobotrydial.yaml","10-Oxodehydrodihydrobotrydial"],["terpenoids/10-oxodihydrobotry-1-9-4-5-diendial.yaml","10-Oxodihydrobotry-1(9),4(5)-diendial"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/iprodione.html","iprodione"],["antifungal/pyrisoxazole.html","pyrisoxazole"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":4,"nb":22,"a":[["alkaloids/tilivalline.yaml","tilivalline"],["amino_acids_and_peptides/colibactin.yaml","colibactin"],["amino_acids_and_peptides/klebsidin.yaml","klebsidin"],["carbohydrates/capsular-polysaccharide-2.yaml","capsular polysaccharide"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"]]},{"id":"NCBITaxon:746128","l":"Aspergillus fumigatus","na":20,"nb":4,"a":[["alkaloids/fumigaclavine-c.yaml","fumigaclavine C"],["alkaloids/fumiquinazoline-a.yaml","fumiquinazoline A"],["alkaloids/fumiquinazoline-c.yaml","fumiquinazoline C"],["alkaloids/fumiquinazoline-d.yaml","fumiquinazoline D"],["alkaloids/hexadehydroastechrome.yaml","hexadehydroastechrome"],["carbohydrates/tobramycin.yaml","tobramycin"]],"b":[["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/terbinafine.html","terbinafine"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:405948","l":"","na":7,"nb":4,"a":[["amino_acids_and_peptides/erythrochelin.yaml","erythrochelin"],["polyketides/erythromycin-a.yaml","erythromycin A"],["polyketides/erythromycin-b.yaml","erythromycin B"],["polyketides/erythromycin-c.yaml","erythromycin C"],["polyketides/erythromycin-d.yaml","erythromycin D"],["polyketides/flaviolin.yaml","flaviolin"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["unspecified/erythromycin-b.html","erythromycin B"],["unspecified/erythromycin-c.html","erythromycin C"],["unspecified/erythromycin-d.html","erythromycin D"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":16,"nb":3,"a":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["amino_acids_and_peptides/ericin-s.yaml","ericin S"],["amino_acids_and_peptides/iturin.yaml","iturin"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"NCBITaxon:1890","l":"Streptomyces antibioticus","na":14,"nb":3,"a":[["alkaloids/esmeraldin.yaml","esmeraldin"],["alkaloids/pentostatin.yaml","pentostatin"],["amino_acids_and_peptides/2-2-hydroxyethyl-clavam.yaml","(-)-2-(2-hydroxyethyl)clavam"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["amino_acids_and_peptides/scabichelin.yaml","scabichelin"],["amino_acids_and_peptides/valclavam.yaml","valclavam"]],"b":[["antibacterial/indanomycin.html","indanomycin"],["unspecified/oviedomycin.html","oviedomycin"],["unspecified/pentostatin.html","pentostatin"]]},{"id":"NCBITaxon:117187","l":"Fusarium verticillioides","na":8,"nb":3,"a":[["alkaloids/dihydrofusarin-c.yaml","dihydrofusarin C"],["alkaloids/epi-fusarin-c.yaml","epi-fusarin C"],["alkaloids/fusaric-acid.yaml","fusaric acid"],["alkaloids/fusarin-c.yaml","fusarin C"],["alkaloids/fusarin-d.yaml","fusarin D"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/fludioxonil.html","fludioxonil"]]},{"id":"NCBITaxon:1867","l":"Actinoplanes teichomyceticus","na":6,"nb":3,"a":[["amino_acids_and_peptides/teicoplanin-a2-1.yaml","Teicoplanin A2-1"],["amino_acids_and_peptides/teicoplanin-a2-2.yaml","teicoplanin A2-2"],["amino_acids_and_peptides/teicoplanin-a2-3.yaml","teicoplanin A2-3"],["amino_acids_and_peptides/teicoplanin-a2-4.yaml","teicoplanin A2-4"],["amino_acids_and_peptides/teicoplanin-a2-5.yaml","Teicoplanin A2-5"],["amino_acids_and_peptides/teicoplanin.yaml","teicoplanin"]],"b":[["antibacterial/teicoplanin.html","teicoplanin"],["unspecified/teicoplanin-a2-2.html","teicoplanin A2-2"],["unspecified/teicoplanin-a2-3.html","teicoplanin A2-3"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":3,"nb":4,"a":[["amino_acids_and_peptides/epidermin.yaml","epidermin"],["amino_acids_and_peptides/epilancin-15x.yaml","epilancin 15x"],["amino_acids_and_peptides/pep5.yaml","pep5"]],"b":[["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/oxacillin.html","oxacillin"]]},{"id":"NCBITaxon:451804","l":"Aspergillus fumigatus (strain CBS 144.89 / FGSC A1163 / CEA10)","na":3,"nb":3,"a":[["terpenoids/21-h-hopane-3beta-22-diol.yaml","21-β-H-hopane-3beta, 22-diol"],["terpenoids/compound-3-3.yaml","compound 3"],["terpenoids/fumihopaside-a.yaml","fumihopaside A"]],"b":[["antifungal/itraconazole.html","itraconazole"],["antifungal/terbinafine.html","terbinafine"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":27,"nb":2,"a":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["alkaloids/pseudomonine.yaml","pseudomonine"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyreudione-c.yaml","pyreudione C"],["alkaloids/quinolobactin.yaml","quinolobactin"]],"b":[["antibacterial/mupirocin.html","mupirocin"],["antifungal/2-4-diacetylphloroglucinol.html","2,4-diacetylphloroglucinol"]]},{"id":"NCBITaxon:332648","l":"Botrytis cinerea B05.10","na":21,"nb":2,"a":[["terpenoids/1-epibotrydial.yaml","1-epibotrydial"],["terpenoids/10-dehydroxy-dihydrobotrydialone.yaml","10-dehydroxy dihydrobotrydialone"],["terpenoids/10-epi-dihydrobotrydial.yaml","10-epi-dihydrobotrydial"],["terpenoids/10-oxo-dihydrobotrydial.yaml","10-Oxo-dihydrobotrydial"],["terpenoids/10-oxodehydrodihydrobotrydial.yaml","10-Oxodehydrodihydrobotrydial"],["terpenoids/10-oxodihydrobotry-1-9-4-5-diendial.yaml","10-Oxodihydrobotry-1(9),4(5)-diendial"]],"b":[["antifungal/fludioxonil.html","fludioxonil"],["antifungal/iprodione.html","iprodione"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":2,"nb":15,"a":[["alkaloids/acinetobactin.yaml","acinetobactin"],["amino_acids_and_peptides/fimsbactin-a.yaml","fimsbactin A"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"NCBITaxon:58346","l":"Streptomyces platensis","na":14,"nb":2,"a":[["alkaloids/13-epi-dorrigocin-a.yaml","13-epi-dorrigocin A"],["alkaloids/17-hydroxy-8-desmethoxy-isomigrastatin.yaml","17-hydroxy-8-desmethoxy-isomigrastatin"],["alkaloids/dorrigocin-a.yaml","dorrigocin A"],["alkaloids/dorrigocin-b.yaml","dorrigocin B"],["alkaloids/iso-migrastatin.yaml","iso-migrastatin"],["alkaloids/staurosporine.yaml","staurosporine"]],"b":[["antibacterial/platencin.html","platencin"],["antibacterial/platensimycin.html","platensimycin"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":10,"nb":2,"a":[["amino_acids_and_peptides/lipopeptide-8d1-1.yaml","lipopeptide 8D1-1"],["amino_acids_and_peptides/lipopeptide-8d1-2.yaml","lipopeptide 8D1-2"],["carbohydrates/amicetin.yaml","amicetin"],["carbohydrates/streptothricin-c.yaml","streptothricin C"],["carbohydrates/streptothricin-d.yaml","streptothricin D"],["carbohydrates/streptothricin-e.yaml","streptothricin E"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"],["unspecified/streptothricin-d.html","streptothricin D"]]},{"id":"NCBITaxon:242507","l":"","na":10,"nb":2,"a":[["polyketides/1-alpha-l-2-o-methyl-6-deoxymannopyranosyloxy-3-6-8-trimethoxynaphthalene.yaml","1-(alpha-l-(2-O-methyl)-6-deoxymannopyranosyloxy)-3,6,8-trimethoxynaphthalene"],["polyketides/10-11-dihydroxymagnaporthepyrone.yaml","10,11-dihydroxymagnaporthepyrone"],["polyketides/12-13-dihydroxymagnaporthepyrone.yaml","12,13-dihydroxymagnaporthepyrone"],["polyketides/epipyriculol.yaml","epipyriculol"],["polyketides/naphthalene-1-3-6-8-tetrol.yaml","naphthalene-1,3,6,8-tetrol"],["polyketides/nectriapyrone-c.yaml","nectriapyrone C"]],"b":[["antifungal/carboxin.html","carboxin"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:1223523","l":"Streptomyces mobaraensis NBRC 13819 = DSM 40847","na":5,"nb":2,"a":[["amino_acids_and_peptides/bleomycin-a2.yaml","bleomycin A2"],["amino_acids_and_peptides/bleomycin-b2.yaml","bleomycin B2"],["amino_acids_and_peptides/cyclothiazomycin-b1.yaml","cyclothiazomycin b1"],["amino_acids_and_peptides/ketomemicin-b3.yaml","ketomemicin B3"],["amino_acids_and_peptides/ketomemicin-b4.yaml","ketomemicin B4"]],"b":[["antibacterial/bleomycin-a2.html","bleomycin A2"],["antibacterial/bleomycin-b2.html","bleomycin B2"]]},{"id":"NCBITaxon:467194","l":"Streptomyces sp. CNQ-418","na":5,"nb":2,"a":[["alkaloids/marinopyrrole-a.yaml","(−)-marinopyrrole A"],["alkaloids/marinopyrrole-b.yaml","(−)-marinopyrrole B"],["alkaloids/marinopyrrole-c.yaml","marinopyrrole C"],["alkaloids/marinopyrrole-d.yaml","marinopyrrole D"],["alkaloids/marinopyrrole-e.yaml","marinopyrrole E"]],"b":[["antibacterial/marinopyrrole-a.html","(−)-marinopyrrole A"],["antibacterial/marinopyrrole-b.html","(−)-marinopyrrole B"]]},{"id":"NCBITaxon:559292","l":"Saccharomyces cerevisiae (strain ATCC 204508 / S288c)","na":2,"nb":5,"a":[["polyketides/kojic-acid.yaml","kojic acid"],["polyketides/radicicol.yaml","radicicol"]],"b":[["antifungal/anidulafungin.html","anidulafungin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/caspofungin.html","caspofungin"],["antifungal/cycloheximide.html","cycloheximide"],["antifungal/micafungin.html","micafungin"]]},{"id":"NCBITaxon:212423","l":"Streptomyces kaniharaensis","na":2,"nb":2,"a":[["alkaloids/formycin-a.yaml","formycin A"],["carbohydrates/coformycin.yaml","coformycin"]],"b":[["unspecified/coformycin.html","coformycin"],["unspecified/formycin-a.html","formycin A"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":31,"nb":1,"a":[["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["alkaloids/myxofacycline-e.yaml","myxofacycline E"],["alkaloids/myxofacycline-f.yaml","myxofacycline F"],["alkaloids/myxofacycline-g.yaml","myxofacycline G"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"]],"b":[["antibacterial/althiomycin.html","althiomycin"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":30,"nb":1,"a":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["amino_acids_and_peptides/ditryptophenaline.yaml","(-)-ditryptophenaline"],["amino_acids_and_peptides/imizoquin-a.yaml","imizoquin A"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":23,"nb":1,"a":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/melanin.yaml","melanin"],["alkaloids/undecylprodigiosin.yaml","undecylprodigiosin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/sapb.yaml","SapB"]],"b":[["antibacterial/nocardamine.html","nocardamine"]]},{"id":"NCBITaxon:162425","l":"Aspergillus nidulans","na":22,"nb":1,"a":[["alkaloids/aspernidine-a.yaml","aspernidine A"],["alkaloids/aspyridone-a.yaml","aspyridone A"],["alkaloids/aspyridone-b.yaml","aspyridone B"],["alkaloids/biotin.yaml","biotin"],["alkaloids/cichorine.yaml","cichorine"],["alkaloids/pentostatin.yaml","pentostatin"]],"b":[["antifungal/thiabendazole.html","thiabendazole"]]},{"id":"NCBITaxon:227321","l":"Emericella nidulans (strain FGSC A4 / ATCC 38163 / CBS 112.46 / NRRL 194 / M139)","na":22,"nb":1,"a":[["alkaloids/aspernidine-a.yaml","aspernidine A"],["alkaloids/aspyridone-a.yaml","aspyridone A"],["alkaloids/aspyridone-b.yaml","aspyridone B"],["alkaloids/cichorine.yaml","cichorine"],["alkaloids/terrequinone-a.yaml","terrequinone A"],["amino_acids_and_peptides/fellutamide-b.yaml","fellutamide B"]],"b":[["antifungal/thiabendazole.html","thiabendazole"]]},{"id":"NCBITaxon:54571","l":"Streptomyces venezuelae","na":21,"nb":1,"a":[["alkaloids/anthelvencin-a.yaml","anthelvencin A"],["alkaloids/anthelvencin-b.yaml","anthelvencin B"],["alkaloids/anthelvencin-c.yaml","anthelvencin C"],["alkaloids/chloramphenicol.yaml","chloramphenicol"],["alkaloids/corynecin-ii.yaml","corynecin II"],["alkaloids/gaburedin-d.yaml","gaburedin D"]],"b":[["antibacterial/methymycin.html","methymycin"]]},{"id":"NCBITaxon:2878388","l":"Streptomyces sp. SCSIO 03032","na":20,"nb":1,"a":[["alkaloids/indimicin-a.yaml","indimicin A"],["alkaloids/indimicin-b.yaml","indimicin B"],["alkaloids/indimicin-c.yaml","indimicin C"],["alkaloids/indimicin-d.yaml","indimicin D"],["alkaloids/indimicin-e.yaml","indimicin E"],["alkaloids/lynamicin-a.yaml","lynamicin A"]],"b":[["unspecified/piericidin-a.html","piericidin A"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":20,"nb":1,"a":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/c-3-sulfonylated-derivative.yaml","C-3 sulfonylated derivative"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["alkaloids/n-n-dioxide-containing-derivate.yaml","N,N-dioxide containing derivate"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:341663","l":"","na":17,"nb":1,"a":[["alkaloids/asterriquinone-ct5.yaml","asterriquinone CT5"],["alkaloids/dihydroisoflavipucine.yaml","dihydroisoflavipucine"],["alkaloids/isoflavipucine.yaml","isoflavipucine"],["polyketides/citreoviridin.yaml","citreoviridin"],["polyketides/geodin.yaml","geodin"],["polyketides/terreic-acid.yaml","terreic acid"]],"b":[["antiviral/aspulvinone-e.html","aspulvinone E"]]},{"id":"NCBITaxon:41951","l":"Streptomyces argillaceus","na":15,"nb":1,"a":[["alkaloids/argimycin-pi.yaml","argimycin PI"],["alkaloids/argimycin-pii.yaml","argimycin PII"],["alkaloids/argimycin-piv.yaml","argimycin PIV"],["alkaloids/argimycin-pix.yaml","argimycin PIX"],["alkaloids/argimycin-pv.yaml","argimycin PV"],["alkaloids/argimycin-pvi.yaml","argimycin PVI"]],"b":[["unspecified/mithramycin.html","mithramycin"]]},{"id":"NCBITaxon:5127","l":"Fusarium fujikuroi","na":15,"nb":1,"a":[["alkaloids/fusaric-acid.yaml","fusaric acid"],["alkaloids/fusarin-c.yaml","fusarin C"],["polyketides/bikaverin.yaml","bikaverin"],["polyketides/fujikurin-c.yaml","fujikurin C"],["polyketides/fujikurin-d.yaml","fujikurin D"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":14,"nb":1,"a":[["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/framycetin.yaml","framycetin"],["carbohydrates/neomycin-c.yaml","neomycin C"],["carbohydrates/paromomycin.yaml","paromomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":13,"nb":1,"a":[["alkaloids/holomycin.yaml","holomycin"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/2-formyloxymethylclavam.yaml","2-formyloxymethylclavam"],["amino_acids_and_peptides/2-hydroxymethylclavam.yaml","2-hydroxymethylclavam"],["amino_acids_and_peptides/alanylclavam.yaml","alanylclavam"],["amino_acids_and_peptides/cephamycin-c.yaml","cephamycin C"]],"b":[["antibacterial/clavulanic-acid.html","clavulanic acid"]]},{"id":"NCBITaxon:1433842","l":"Hapalosiphon welwitschii UTEX B 1830","na":12,"nb":1,"a":[["alkaloids/12-epi-fischerindole-i-isonitrile.yaml","12-epi-fischerindole I isonitrile"],["alkaloids/12-epi-fischerindole-u-isonitrile.yaml","12-epi-fischerindole U isonitrile"],["alkaloids/12-epi-hapalindole-c-isonitrile.yaml","12-epi-hapalindole C isonitrile"],["alkaloids/12-epi-hapalindole-e.yaml","12-epi-hapalindole E"],["alkaloids/3-epi-welwitindolinone-b-isothiocyanate.yaml","3-epi-welwitindolinone B isothiocyanate"],["alkaloids/3-z-2-isocyanovinyl-indole.yaml","3-[(Z)-2-isocyanovinyl]indole"]],"b":[["antibacterial/3-z-2-isocyanovinyl-indole.html","3-[(Z)-2-isocyanovinyl]indole"]]},{"id":"NCBITaxon:5053","l":"Aspergillus aculeatus","na":11,"nb":1,"a":[["alkaloids/acurin-a.yaml","acurin A"],["polyketides/secalonic-acid-a.yaml","Secalonic acid A"],["terpenoids/aculene-a.yaml","aculene A"],["terpenoids/aculene-b.yaml","aculene B"],["terpenoids/aculene-c.yaml","aculene C"],["terpenoids/aculene-d.yaml","aculene D"]],"b":[["antifungal/aculeacin-a.html","aculeacin A"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":10,"nb":1,"a":[["alkaloids/labradorin-1.yaml","labradorin 1"],["alkaloids/labradorin-2.yaml","labradorin 2"],["alkaloids/secimide.yaml","secimide"],["amino_acids_and_peptides/phaseolotoxin.yaml","phaseolotoxin"],["amino_acids_and_peptides/syringolin-a.yaml","syringolin A"],["amino_acids_and_peptides/tabtoxin.yaml","tabtoxin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae (strain ATCC 42149 / RIB 40)","na":10,"nb":1,"a":[["fatty_acids/oryzine-a.yaml","oryzine A"],["polyketides/kojic-acid.yaml","kojic acid"],["polyketides/oryzine-b.yaml","oryzine B"],["polyketides/ywa1.yaml","YWA1"],["shikimates_and_phenylpropanoids/2-4-dihydroxy-3-methoxypropiophenone.yaml","2,4'-dihydroxy-3'-methoxypropiophenone"],["shikimates_and_phenylpropanoids/8-methyldiaporthin.yaml","8-methyldiaporthin"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"NCBITaxon:1159556","l":"Ustilaginoidea virens","na":9,"nb":1,"a":[["amino_acids_and_peptides/ustiloxin-b.yaml","ustiloxin B"],["polyketides/ustilaginoidin-a.yaml","ustilaginoidin A"],["polyketides/ustilaginoidin-d.yaml","ustilaginoidin D"],["polyketides/ustilaginoidin-e.yaml","ustilaginoidin E"],["polyketides/ustilaginoidin-f.yaml","ustilaginoidin F"],["polyketides/ustilaginoidin-g.yaml","ustilaginoidin G"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"]]},{"id":"NCBITaxon:1979465","l":"Phoma betae","na":9,"nb":1,"a":[["polyketides/betaenone-a.yaml","betaenone A"],["polyketides/betaenone-b.yaml","betaenone B"],["polyketides/betaenone-c.yaml","betaenone C"],["terpenoids/17-deoxyaphidicolin.yaml","17-deoxyaphidicolin"],["terpenoids/3-deoxyaphidicolin.yaml","3-deoxyaphidicolin"],["terpenoids/aphidicolan-16-ol.yaml","aphidicolan-16β-ol"]],"b":[["antiviral/aphidicolin.html","aphidicolin"]]},{"id":"NCBITaxon:5076","l":"Penicillium chrysogenum","na":9,"nb":1,"a":[["alkaloids/chrysogine.yaml","chrysogine"],["amino_acids_and_peptides/benzylpenicillin-sodium.yaml","benzylpenicillin sodium"],["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"],["amino_acids_and_peptides/n-5s-5-ammonio-5-carboxylatopentanoyl-l-cysteinyl-d-valinate.yaml","N-[(5S)-5-ammonio-5-carboxylatopentanoyl]-L-cysteinyl-D-valinate"],["polyketides/2-3-dihydrosorbicillin.yaml","2'3'-dihydrosorbicillin"],["polyketides/bisorbicillinol.yaml","bisorbicillinol"]],"b":[["unspecified/isopenicillin-n.html","isopenicillin N"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":1,"nb":8,"a":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]],"b":[["antifungal/anidulafungin.html","anidulafungin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/caspofungin.html","caspofungin"],["antifungal/cycloheximide.html","cycloheximide"],["antifungal/micafungin.html","micafungin"],["antifungal/oligomycin-a.html","oligomycin A"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":8,"nb":1,"a":[["amino_acids_and_peptides/ferrichrome-2.yaml","ferrichrome"],["polyketides/2-acetyl-1-3-6-8-tetrahydroxynaphthalene.yaml","2-acetyl-1,3,6,8-tetrahydroxynaphthalene"],["polyketides/kojic-acid.yaml","kojic acid"],["terpenoids/aphidicolin.yaml","aphidicolin"],["unclassified/2-oxocyclopiazonic-acid.yaml","2-oxocyclopiazonic acid"],["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":1,"nb":7,"a":[["amino_acids_and_peptides/enterocin-a.yaml","enterocin A"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":1,"nb":7,"a":[["unclassified/antimycin-a1b.yaml","antimycin A1B"]],"b":[["antibacterial/brefeldin-a.html","brefeldin A"],["antifungal/anidulafungin.html","anidulafungin"],["antifungal/caspofungin.html","caspofungin"],["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/micafungin.html","micafungin"]]},{"id":"NCBITaxon:68280","l":"Streptomyces violaceusniger","na":7,"nb":1,"a":[["fatty_acids/desulfoclethramycin.yaml","desulfoclethramycin"],["polyketides/be-24566b.yaml","BE-24566B"],["polyketides/elaiophylin.yaml","elaiophylin"],["polyketides/meridamycin-2.yaml","meridamycin"],["polyketides/nigericin.yaml","nigericin"],["terpenoids/2-methylisoborneol.yaml","2-methylisoborneol"]],"b":[["antibacterial/nigericin.html","nigericin"]]},{"id":"NCBITaxon:37326","l":"Nocardia brasiliensis","na":6,"nb":1,"a":[["polyketides/brasilinolide-a.yaml","brasilinolide A"],["polyketides/brasilinolide-b.yaml","brasilinolide B"],["polyketides/brasilinolide-c.yaml","brasilinolide C"],["polyketides/brasiliquinone-a.yaml","brasiliquinone A"],["polyketides/brasiliquinone-b.yaml","brasiliquinone B"],["terpenoids/brasilicardin-a.yaml","brasilicardin A"]],"b":[["antibacterial/brasiliquinone-b.html","brasiliquinone B"]]},{"id":"NCBITaxon:47763","l":"Streptomyces lydicus","na":6,"nb":1,"a":[["amino_acids_and_peptides/ectoine.yaml","ectoine"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"],["polyketides/erythromycin-a.yaml","erythromycin A"],["polyketides/natamycin.yaml","natamycin"],["polyketides/streptolydigin.yaml","streptolydigin"],["unclassified/lydicamycin.yaml","lydicamycin"]],"b":[["unspecified/streptolydigin.html","streptolydigin"]]},{"id":"NCBITaxon:5082","l":"Penicillium roqueforti","na":6,"nb":1,"a":[["alkaloids/mycophenolic-acid-2.yaml","mycophenolic acid"],["polyketides/mycophenolic-acid.yaml","mycophenolic acid"],["terpenoids/pr-toxin.yaml","PR-toxin"],["unclassified/andrastin-a.yaml","andrastin A"],["unclassified/roquefortine-c.yaml","roquefortine C"],["unclassified/roquefortine-d.yaml","roquefortine D"]],"b":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]]},{"id":"NCBITaxon:52","l":"Chondromyces crocatus","na":6,"nb":1,"a":[["polyketides/chondrochloren-a.yaml","chondrochloren A"],["polyketides/cmc-thuggacin-a.yaml","Cmc-thuggacin A"],["polyketides/crocacin.yaml","crocacin"],["shikimates_and_phenylpropanoids/ajudazol-a.yaml","ajudazol A"],["unclassified/chondramide-a.yaml","chondramide A"],["unclassified/cmc-thuggacin-b.yaml","Cmc-thuggacin B"]],"b":[["unspecified/chondrochloren-a.html","chondrochloren A"]]},{"id":"NCBITaxon:43658","l":"Pseudoalteromonas rubra","na":5,"nb":1,"a":[["alkaloids/prodigiosin.yaml","prodigiosin"],["polyketides/nonyltyrazolone.yaml","nonyltyrazolone"],["polyketides/undecyltyrazolone.yaml","undecyltyrazolone"],["shikimates_and_phenylpropanoids/z-6-undecenyltyrazolone.yaml","(Z)-ω-6-undecenyltyrazolone"],["unclassified/heptyltyrazolone.yaml","heptyltyrazolone"]],"b":[["unspecified/prodigiosin.html","prodigiosin"]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":1,"nb":5,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/imipenem.html","imipenem"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":1,"a":[["alkaloids/prodigiosin-2.yaml","prodigiosin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/serratiochelin-a.yaml","serratiochelin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["polyketides/oocydin-a.yaml","oocydin A"]],"b":[["antibacterial/althiomycin.html","althiomycin"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":4,"a":[["alkaloids/petrobactin.yaml","petrobactin"]],"b":[["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/trimethoprim.html","trimethoprim"],["antiprotozoal/suramin.html","suramin"],["antiviral/tilorone.html","tilorone"]]},{"id":"NCBITaxon:318829","l":"Magnaporthe oryzae","na":1,"nb":4,"a":[["polyketides/nectriapyrone.yaml","nectriapyrone"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/carboxin.html","carboxin"],["antifungal/carpropamid.html","carpropamid"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:36650","l":"Penicillium aethiopicum","na":4,"nb":1,"a":[["alkaloids/tryptoquialanine.yaml","tryptoquialanine"],["polyketides/epidechlorogriseofulvin.yaml","epidechlorogriseofulvin"],["polyketides/griseofulvin.yaml","griseofulvin"],["unclassified/viridicatumtoxin.yaml","viridicatumtoxin"]],"b":[["unspecified/viridicatumtoxin.html","viridicatumtoxin"]]},{"id":"NCBITaxon:412963","l":"","na":4,"nb":1,"a":[["amino_acids_and_peptides/endopyrrole-b.yaml","endopyrrole B"],["amino_acids_and_peptides/holrhizin-a.yaml","holrhizin A"],["unclassified/endopyrrole-a.yaml","endopyrrole A"],["unclassified/rhizoxin-a.yaml","rhizoxin A"]],"b":[["unspecified/rhizoxin.html","rhizoxin"]]},{"id":"NCBITaxon:68214","l":"Streptomyces griseochromogenes","na":4,"nb":1,"a":[["carbohydrates/blasticidin-s.yaml","blasticidin S"],["carbohydrates/streptothricin-f.yaml","streptothricin F"],["polyketides/tautomycetin-2.yaml","tautomycetin"],["polyketides/tautomycetin.yaml","tautomycetin"]],"b":[["antifungal/blasticidin-s.html","blasticidin S"]]},{"id":"NCBITaxon:1907","l":"Streptomyces glaucescens","na":3,"nb":1,"a":[["carbohydrates/5-hydroxystreptomycin.yaml","5'-hydroxystreptomycin"],["carbohydrates/streptomycin.yaml","streptomycin"],["polyketides/tetracenomycin-c.yaml","tetracenomycin C"]],"b":[["antibacterial/tetracenomycin-c.html","tetracenomycin C"]]},{"id":"NCBITaxon:264951","l":"Paecilomyces variotii","na":3,"nb":1,"a":[["polyketides/agnestin-a.yaml","agnestin A"],["polyketides/agnestin-b.yaml","agnestin B"],["polyketides/viriditoxin.yaml","viriditoxin"]],"b":[["antibacterial/m-viriditoxin.html","(M)-viriditoxin"]]},{"id":"NCBITaxon:316284","l":"Streptomyces noursei ATCC 11455","na":3,"nb":1,"a":[["amino_acids_and_peptides/dechlorocuracomycin.yaml","dechlorocuracomycin"],["polyketides/nystatin-a1.yaml","nystatin A1"],["unclassified/albonoursin.yaml","albonoursin"]],"b":[["antifungal/nystatin-a1.html","nystatin A1"]]},{"id":"NCBITaxon:334819","l":"Fusarium verticillioides 7600","na":1,"nb":3,"a":[["alkaloids/fusaric-acid.yaml","fusaric acid"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/fludioxonil.html","fludioxonil"]]},{"id":"NCBITaxon:53446","l":"Streptomyces cinnamoneus","na":3,"nb":1,"a":[["amino_acids_and_peptides/cinnamycin.yaml","cinnamycin"],["amino_acids_and_peptides/duramycin.yaml","duramycin"],["unclassified/bicozamycin.yaml","bicozamycin"]],"b":[["antibacterial/bicozamycin.html","bicozamycin"]]},{"id":"NCBITaxon:536","l":"Chromobacterium violaceum","na":3,"nb":1,"a":[["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["unclassified/romidepsin.yaml","romidepsin"]],"b":[["unspecified/romidepsin.html","romidepsin"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":3,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"NCBITaxon:668825","l":"Streptomyces sp. ATCC 700974","na":3,"nb":1,"a":[["amino_acids_and_peptides/albomycin-1.yaml","albomycin δ1"],["amino_acids_and_peptides/albomycin-delta2.yaml","albomycin delta2"],["amino_acids_and_peptides/albomycin-epsilon.yaml","albomycin epsilon"]],"b":[["antibacterial/albomycin-%CE%B41.html","albomycin δ1"]]},{"id":"NCBITaxon:686309","l":"Micromonospora haikouensis","na":3,"nb":1,"a":[["carbohydrates/aristeromycin.yaml","aristeromycin"],["carbohydrates/coformycin.yaml","coformycin"],["carbohydrates/kanamycin-a.yaml","kanamycin A"]],"b":[["unspecified/coformycin.html","coformycin"]]},{"id":"CHEBI:26789","l":"","na":1,"nb":2,"a":[["carbohydrates/streptothricin-f.yaml","streptothricin F"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"],["unspecified/streptothricin-d.html","streptothricin D"]]},{"id":"NCBITaxon:1079985","l":"Streptomyces chartreusis NRRL 3882","na":2,"nb":1,"a":[["carbohydrates/tunicamycin-b1.yaml","tunicamycin B1"],["polyketides/a23187.yaml","A23187"]],"b":[["unspecified/tunicamycin-b1.html","tunicamycin B1"]]},{"id":"NCBITaxon:27337","l":"Verticillium dahliae","na":2,"nb":1,"a":[["polyketides/flaviolin.yaml","flaviolin"],["polyketides/scytalone.yaml","scytalone"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"NCBITaxon:28576","l":"Talaromyces variabilis","na":2,"nb":1,"a":[["alkaloids/ilicicolin-h.yaml","ilicicolin H"],["unclassified/varicidin-a.yaml","varicidin A"]],"b":[["unspecified/ilicicolin-h.html","ilicicolin H"]]},{"id":"NCBITaxon:36651","l":"Penicillium digitatum","na":1,"nb":2,"a":[["alkaloids/tryptoquialanine.yaml","tryptoquialanine"]],"b":[["antifungal/pyrifenox.html","pyrifenox"],["antifungal/triflumizole.html","triflumizole"]]},{"id":"NCBITaxon:5074","l":"Penicillium brevicompactum","na":2,"nb":1,"a":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"],["unclassified/asperphenamate.yaml","asperphenamate"]],"b":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]]},{"id":"NCBITaxon:5270","l":"","na":2,"nb":1,"a":[["fatty_acids/itaconic-acid.yaml","itaconic acid"],["fatty_acids/ustilagic-acid.yaml","ustilagic acid"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":2,"nb":1,"a":[["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["alkaloids/yersiniabactin.yaml","yersiniabactin"]],"b":[["unspecified/chir-090.html","CHIR-090"]]},{"id":"NCBITaxon:68264","l":"Streptomyces rishiriensis","na":2,"nb":1,"a":[["shikimates_and_phenylpropanoids/coumermycin-a1.yaml","coumermycin A1"],["unclassified/lactonamycin.yaml","lactonamycin"]],"b":[["antibacterial/coumermycin-a1.html","coumermycin A1"]]},{"id":"CHEBI:131914","l":"violacein","na":1,"nb":1,"a":[["alkaloids/violacein.yaml","violacein"]],"b":[["antibacterial/violacein.html","violacein"]]},{"id":"CHEBI:132426","l":"chondrochloren A","na":1,"nb":1,"a":[["polyketides/chondrochloren-a.yaml","chondrochloren A"]],"b":[["unspecified/chondrochloren-a.html","chondrochloren A"]]},{"id":"CHEBI:133127","l":"lugdunin","na":1,"nb":1,"a":[["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]],"b":[["antibacterial/lugdunin.html","lugdunin"]]},{"id":"CHEBI:134606","l":"toyocamycin","na":1,"nb":1,"a":[["carbohydrates/toyocamycin.yaml","toyocamycin"]],"b":[["antifungal/toyocamycin.html","toyocamycin"]]},{"id":"CHEBI:138511","l":"piericidin A","na":1,"nb":1,"a":[["polyketides/piericidin-a.yaml","piericidin A"]],"b":[["unspecified/piericidin-a.html","piericidin A"]]},{"id":"CHEBI:140173","l":"malacidin A","na":1,"nb":1,"a":[["amino_acids_and_peptides/malacidin-a.yaml","malacidin A"]],"b":[["antibacterial/malacidin-a.html","malacidin A"]]},{"id":"CHEBI:140174","l":"malacidin B","na":1,"nb":1,"a":[["amino_acids_and_peptides/malacidin-b.yaml","malacidin B"]],"b":[["antibacterial/malacidin-b.html","malacidin B"]]},{"id":"CHEBI:140434","l":"3-[(Z)-2-isocyanovinyl]indole","na":1,"nb":1,"a":[["alkaloids/3-z-2-isocyanovinyl-indole.yaml","3-[(Z)-2-isocyanovinyl]indole"]],"b":[["antibacterial/3-z-2-isocyanovinyl-indole.html","3-[(Z)-2-isocyanovinyl]indole"]]},{"id":"CHEBI:141338","l":"sporothriolide","na":1,"nb":1,"a":[["polyketides/sporothriolide.yaml","sporothriolide"]],"b":[["antifungal/sporothriolide.html","sporothriolide"]]},{"id":"CHEBI:141380","l":"indanomycin","na":1,"nb":1,"a":[["polyketides/indanomycin.yaml","indanomycin"]],"b":[["antibacterial/indanomycin.html","indanomycin"]]},{"id":"CHEBI:144441","l":"triacsin C","na":1,"nb":1,"a":[["fatty_acids/triacsin-c.yaml","triacsin C"]],"b":[["antiprotozoal/triacsin-c.html","triacsin C"]]},{"id":"CHEBI:144729","l":"L-β-ethynylserine zwitterion","na":1,"nb":1,"a":[["amino_acids_and_peptides/ethynylserine.yaml","β-ethynylserine"]],"b":[["antibacterial/l-%CE%B2-ethynylserine-zwitterion.html","L-β-ethynylserine zwitterion"]]},{"id":"CHEBI:144833","l":"L-β-ethynylserine","na":1,"nb":1,"a":[["amino_acids_and_peptides/ethynylserine.yaml","β-ethynylserine"]],"b":[["antibacterial/l-%CE%B2-ethynylserine.html","L-β-ethynylserine"]]},{"id":"CHEBI:146007","l":"(M)-viriditoxin","na":1,"nb":1,"a":[["polyketides/viriditoxin.yaml","viriditoxin"]],"b":[["antibacterial/m-viriditoxin.html","(M)-viriditoxin"]]},{"id":"CHEBI:146153","l":"ilicicolin B","na":1,"nb":1,"a":[["unclassified/ilicicolin-b.yaml","ilicicolin B"]],"b":[["unspecified/ilicicolin-b.html","ilicicolin B"]]},{"id":"CHEBI:149660","l":"atromentin","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/atromentin.yaml","atromentin"]],"b":[["antibacterial/atromentin.html","atromentin"]]},{"id":"CHEBI:15353","l":"blasticidin S","na":1,"nb":1,"a":[["carbohydrates/blasticidin-s.yaml","blasticidin S"]],"b":[["antifungal/blasticidin-s.html","blasticidin S"]]},{"id":"CHEBI:156148","l":"ascofuranone","na":1,"nb":1,"a":[["unclassified/ascofuranone.yaml","ascofuranone"]],"b":[["antiprotozoal/ascofuranone.html","ascofuranone"]]},{"id":"CHEBI:156219","l":"ascochlorin","na":1,"nb":1,"a":[["unclassified/ascochlorin.yaml","ascochlorin"]],"b":[["antifungal/ascochlorin.html","ascochlorin"]]},{"id":"CHEBI:156291","l":"oviedomycin","na":1,"nb":1,"a":[["polyketides/oviedomycin.yaml","oviedomycin"]],"b":[["unspecified/oviedomycin.html","oviedomycin"]]},{"id":"CHEBI:156298","l":"aurafuron A","na":1,"nb":1,"a":[["polyketides/aurafuron-a.yaml","aurafuron A"]],"b":[["antifungal/aurafuron-a.html","aurafuron A"]]},{"id":"CHEBI:156301","l":"auricin","na":1,"nb":1,"a":[["polyketides/auricin.yaml","auricin"]],"b":[["unspecified/auricin.html","auricin"]]},{"id":"CHEBI:156313","l":"erdasporine A","na":1,"nb":1,"a":[["alkaloids/erdasporine-a.yaml","erdasporine A"]],"b":[["antibacterial/erdasporine-a.html","erdasporine A"]]},{"id":"CHEBI:156314","l":"erdasporine B","na":1,"nb":1,"a":[["alkaloids/erdasporine-b.yaml","erdasporine B"]],"b":[["antibacterial/erdasporine-b.html","erdasporine B"]]},{"id":"CHEBI:156315","l":"erdasporine C","na":1,"nb":1,"a":[["alkaloids/erdasporine-c.yaml","erdasporine C"]],"b":[["antibacterial/erdasporine-c.html","erdasporine C"]]},{"id":"CHEBI:156363","l":"gibepyrone A","na":1,"nb":1,"a":[["polyketides/gibepyrone-a.yaml","gibepyrone A"]],"b":[["antibacterial/gibepyrone-a.html","gibepyrone A"]]},{"id":"CHEBI:156386","l":"asperlactone","na":1,"nb":1,"a":[["polyketides/asperlactone.yaml","asperlactone"]],"b":[["antibacterial/asperlactone.html","asperlactone"]]},{"id":"CHEBI:156426","l":"curacomycin","na":1,"nb":1,"a":[["amino_acids_and_peptides/curacomycin.yaml","curacomycin"]],"b":[["antibacterial/curacomycin.html","curacomycin"]]},{"id":"CHEBI:156450","l":"thiolutin","na":1,"nb":1,"a":[["alkaloids/thiolutin.yaml","thiolutin"]],"b":[["antibacterial/thiolutin.html","thiolutin"]]},{"id":"CHEBI:156451","l":"holomycin","na":1,"nb":1,"a":[["alkaloids/holomycin.yaml","holomycin"]],"b":[["antibacterial/holomycin.html","holomycin"]]},{"id":"CHEBI:156453","l":"pyoluteorin","na":1,"nb":1,"a":[["alkaloids/pyoluteorin.yaml","pyoluteorin"]],"b":[["antibacterial/pyoluteorin.html","pyoluteorin"]]},{"id":"CHEBI:156455","l":"tropodithietic acid","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/tropodithietic-acid.yaml","tropodithietic acid"]],"b":[["antibacterial/tropodithietic-acid.html","tropodithietic acid"]]},{"id":"CHEBI:156550","l":"pyrrolomycin A","na":1,"nb":1,"a":[["alkaloids/pyrrolomycin-a.yaml","pyrrolomycin A"]],"b":[["antibacterial/pyrrolomycin-a.html","pyrrolomycin A"]]},{"id":"CHEBI:15732","l":"phosphonoacetic acid","na":1,"nb":1,"a":[["unclassified/phosphonoacetic-acid.yaml","phosphonoacetic acid"]],"b":[["antiviral/phosphonoacetic-acid.html","phosphonoacetic acid"]]},{"id":"CHEBI:161680","l":"aztreonam","na":1,"nb":1,"a":[["amino_acids_and_peptides/aztreonam.yaml","aztreonam"]],"b":[["antibacterial/aztreonam.html","aztreonam"]]},{"id":"CHEBI:16213","l":"coformycin","na":1,"nb":1,"a":[["carbohydrates/coformycin.yaml","coformycin"]],"b":[["unspecified/coformycin.html","coformycin"]]},{"id":"CHEBI:166872","l":"nucleocidin","na":1,"nb":1,"a":[["carbohydrates/nucleocidin.yaml","nucleocidin"]],"b":[["antibacterial/nucleocidin.html","nucleocidin"]]},{"id":"CHEBI:167043","l":"ochrindole A","na":1,"nb":1,"a":[["alkaloids/ochrindole-a.yaml","ochrindole A"]],"b":[["antibacterial/ochrindole-a.html","ochrindole A"]]},{"id":"CHEBI:167054","l":"acrophiarin","na":1,"nb":1,"a":[["amino_acids_and_peptides/acrophiarin.yaml","acrophiarin"]],"b":[["antifungal/acrophiarin.html","acrophiarin"]]},{"id":"CHEBI:168396","l":"mycophenolic acid","na":1,"nb":1,"a":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"]],"b":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]]},{"id":"CHEBI:17076","l":"streptomycin","na":1,"nb":1,"a":[["carbohydrates/streptomycin.yaml","streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"CHEBI:17630","l":"kanamycin A","na":1,"nb":1,"a":[["carbohydrates/kanamycin-a.yaml","kanamycin A"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"CHEBI:17695","l":"casbene","na":1,"nb":1,"a":[["terpenoids/casbene.yaml","casbene"]],"b":[["antifungal/casbene.html","casbene"]]},{"id":"CHEBI:17704","l":"aspulvinone E","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/aspulvinone-e.yaml","aspulvinone E"]],"b":[["antiviral/aspulvinone-e.html","aspulvinone E"]]},{"id":"CHEBI:17939","l":"puromycin","na":1,"nb":1,"a":[["carbohydrates/puromycin.yaml","puromycin"]],"b":[["antibacterial/puromycin.html","puromycin"]]},{"id":"CHEBI:18165","l":"isopenicillin N","na":1,"nb":1,"a":[["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"]],"b":[["unspecified/isopenicillin-n.html","isopenicillin N"]]},{"id":"CHEBI:184373","l":"cremeomycin","na":1,"nb":1,"a":[["unclassified/cremeomycin.yaml","cremeomycin"]],"b":[["antibacterial/cremeomycin.html","cremeomycin"]]},{"id":"CHEBI:190009","l":"himastatin","na":1,"nb":1,"a":[["amino_acids_and_peptides/himastatin.yaml","himastatin"]],"b":[["antibacterial/himastatin.html","himastatin"]]},{"id":"CHEBI:193157","l":"sceliphrolactam","na":1,"nb":1,"a":[["unclassified/sceliphrolactam.yaml","sceliphrolactam"]],"b":[["antifungal/sceliphrolactam.html","sceliphrolactam"]]},{"id":"CHEBI:206040","l":"","na":1,"nb":1,"a":[["polyketides/tartrolon-d.yaml","tartrolon D"]],"b":[["antibacterial/tartrolon-d.html","tartrolon D"]]},{"id":"CHEBI:219363","l":"reedsmycin A","na":1,"nb":1,"a":[["polyketides/reedsmycin-a.yaml","reedsmycin A"]],"b":[["antifungal/reedsmycin-a.html","reedsmycin A"]]},{"id":"CHEBI:219367","l":"reedsmycin B","na":1,"nb":1,"a":[["polyketides/reedsmycin-b.yaml","reedsmycin B"]],"b":[["antifungal/reedsmycin-b.html","reedsmycin B"]]},{"id":"CHEBI:219386","l":"reedsmycin E","na":1,"nb":1,"a":[["polyketides/reedsmycin-e.yaml","reedsmycin E"]],"b":[["antifungal/reedsmycin-e.html","reedsmycin E"]]},{"id":"CHEBI:2448","l":"actinorhodin","na":1,"nb":1,"a":[["polyketides/actinorhodin.yaml","actinorhodin"]],"b":[["unspecified/actinorhodin.html","actinorhodin"]]},{"id":"CHEBI:24750","l":"","na":1,"nb":1,"a":[["carbohydrates/5-hydroxystreptomycin.yaml","5'-hydroxystreptomycin"]],"b":[["unspecified/5-hydroxystreptomycin.html","5'-hydroxystreptomycin"]]},{"id":"CHEBI:2762","l":"antimycin A","na":1,"nb":1,"a":[["unclassified/antimycin-a.yaml","antimycin A"]],"b":[["antifungal/antimycin-a.html","antimycin A"]]},{"id":"CHEBI:2766","l":"aphidicolin","na":1,"nb":1,"a":[["terpenoids/aphidicolin.yaml","aphidicolin"]],"b":[["antiviral/aphidicolin.html","aphidicolin"]]},{"id":"CHEBI:27666","l":"actinomycin D","na":1,"nb":1,"a":[["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"]],"b":[["antibacterial/actinomycin-d.html","actinomycin D"]]},{"id":"CHEBI:27834","l":"pentostatin","na":1,"nb":1,"a":[["alkaloids/pentostatin.yaml","pentostatin"]],"b":[["unspecified/pentostatin.html","pentostatin"]]},{"id":"CHEBI:28001","l":"vancomycin","na":1,"nb":1,"a":[["amino_acids_and_peptides/vancomycin.yaml","vancomycin"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"CHEBI:28196","l":"erythromycin B","na":1,"nb":1,"a":[["polyketides/erythromycin-b.yaml","erythromycin B"]],"b":[["unspecified/erythromycin-b.html","erythromycin B"]]},{"id":"CHEBI:28283","l":"capsidiol","na":1,"nb":1,"a":[["terpenoids/capsidiol.yaml","capsidiol"]],"b":[["antifungal/capsidiol.html","capsidiol"]]},{"id":"CHEBI:28331","l":"erythromycin D","na":1,"nb":1,"a":[["polyketides/erythromycin-d.yaml","erythromycin D"]],"b":[["unspecified/erythromycin-d.html","erythromycin D"]]},{"id":"CHEBI:28748","l":"doxorubicin","na":1,"nb":1,"a":[["polyketides/doxorubicin.yaml","doxorubicin"]],"b":[["unspecified/doxorubicin.html","doxorubicin"]]},{"id":"CHEBI:28864","l":"tobramycin","na":1,"nb":1,"a":[["carbohydrates/tobramycin.yaml","tobramycin"]],"b":[["antibacterial/tobramycin.html","tobramycin"]]},{"id":"CHEBI:28915","l":"fosfomycin","na":1,"nb":1,"a":[["unclassified/fosfomycin.yaml","fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"CHEBI:29515","l":"ansamitocin P3","na":1,"nb":1,"a":[["polyketides/ansamitocin-p3.yaml","ansamitocin P3"]],"b":[["unspecified/ansamitocin-p3.html","ansamitocin P3"]]},{"id":"CHEBI:29556","l":"chloroeremomycin","na":1,"nb":1,"a":[["amino_acids_and_peptides/chloroeremomycin.yaml","chloroeremomycin"]],"b":[["antibacterial/chloroeremomycin.html","chloroeremomycin"]]},{"id":"CHEBI:29630","l":"methymycin","na":1,"nb":1,"a":[["polyketides/methymycin.yaml","methymycin"]],"b":[["antibacterial/methymycin.html","methymycin"]]},{"id":"CHEBI:29649","l":"narbomycin","na":1,"nb":1,"a":[["polyketides/narbomycin.yaml","narbomycin"]],"b":[["antibacterial/narbomycin.html","narbomycin"]]},{"id":"CHEBI:29656","l":"neomethymycin","na":1,"nb":1,"a":[["polyketides/neomethymycin.yaml","neomethymycin"]],"b":[["unspecified/neomethymycin.html","neomethymycin"]]},{"id":"CHEBI:29665","l":"pikromycin","na":1,"nb":1,"a":[["polyketides/pikromycin.yaml","pikromycin"]],"b":[["antibacterial/pikromycin.html","pikromycin"]]},{"id":"CHEBI:29673","l":"rifamycin SV","na":1,"nb":1,"a":[["polyketides/rifamycin-sv.yaml","rifamycin SV"]],"b":[["antimycobacterial/rifamycin-sv.html","rifamycin SV"]]},{"id":"CHEBI:29701","l":"tyrocidine A","na":1,"nb":1,"a":[["amino_acids_and_peptides/tyrocidine-a.yaml","tyrocidine A"]],"b":[["antibacterial/tyrocidine-a.html","tyrocidine A"]]},{"id":"CHEBI:29703","l":"validamycin A","na":1,"nb":1,"a":[["carbohydrates/validamycin-a.yaml","validamycin A"]],"b":[["antifungal/validamycin-a.html","validamycin A"]]},{"id":"CHEBI:3096","l":"bikaverin","na":1,"nb":1,"a":[["polyketides/bikaverin.yaml","bikaverin"]],"b":[["antibacterial/bikaverin.html","bikaverin"]]},{"id":"CHEBI:3139","l":"bleomycin A2","na":1,"nb":1,"a":[["amino_acids_and_peptides/bleomycin-a2.yaml","bleomycin A2"]],"b":[["antibacterial/bleomycin-a2.html","bleomycin A2"]]},{"id":"CHEBI:315018","l":"echinocandin B","na":1,"nb":1,"a":[["amino_acids_and_peptides/echinocandin-b.yaml","echinocandin B"]],"b":[["antifungal/echinocandin-b.html","echinocandin B"]]},{"id":"CHEBI:31856","l":"mithramycin","na":1,"nb":1,"a":[["polyketides/mithramycin.yaml","mithramycin"]],"b":[["unspecified/mithramycin.html","mithramycin"]]},{"id":"CHEBI:32079","l":"pyrrolnitrin","na":1,"nb":1,"a":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]],"b":[["antifungal/pyrrolnitrin.html","pyrrolnitrin"]]},{"id":"CHEBI:3252","l":"C-1027 chromophore","na":1,"nb":1,"a":[["polyketides/c-1027-chromophore.yaml","C-1027 chromophore"]],"b":[["unspecified/c-1027-chromophore.html","C-1027 chromophore"]]},{"id":"CHEBI:338412","l":"(-)-anisomycin","na":1,"nb":1,"a":[["alkaloids/anisomycin.yaml","(−)-anisomycin"]],"b":[["antiviral/anisomycin.html","(−)-anisomycin"]]},{"id":"CHEBI:34996","l":"teicoplanin A2-3","na":1,"nb":1,"a":[["amino_acids_and_peptides/teicoplanin-a2-3.yaml","teicoplanin A2-3"]],"b":[["unspecified/teicoplanin-a2-3.html","teicoplanin A2-3"]]},{"id":"CHEBI:34997","l":"teicoplanin A2-4","na":1,"nb":1,"a":[["amino_acids_and_peptides/teicoplanin-a2-4.yaml","teicoplanin A2-4"]],"b":[["unspecified/teicoplanin-a2-4.html","teicoplanin A2-4"]]},{"id":"CHEBI:3613","l":"chlorflavonin","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/chlorflavonin.yaml","chlorflavonin"]],"b":[["antifungal/chlorflavonin.html","chlorflavonin"]]},{"id":"CHEBI:3907","l":"coumermycin A1","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/coumermycin-a1.yaml","coumermycin A1"]],"b":[["antibacterial/coumermycin-a1.html","coumermycin A1"]]},{"id":"CHEBI:40009","l":"D-cycloserine","na":1,"nb":1,"a":[["amino_acids_and_peptides/cycloserine.yaml","cycloserine"]],"b":[["antimycobacterial/d-cycloserine.html","D-cycloserine"]]},{"id":"CHEBI:4031","l":"cyclosporin A","na":1,"nb":1,"a":[["amino_acids_and_peptides/cyclosporin-a.yaml","cyclosporin A"]],"b":[["antifungal/cyclosporin-a.html","cyclosporin A"]]},{"id":"CHEBI:41977","l":"daunorubicin","na":1,"nb":1,"a":[["polyketides/daunorubicin.yaml","daunorubicin"]],"b":[["unspecified/daunorubicin.html","daunorubicin"]]},{"id":"CHEBI:42355","l":"erythromycin A","na":1,"nb":1,"a":[["polyketides/erythromycin-a.yaml","erythromycin A"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"CHEBI:42452","l":"formycin A","na":1,"nb":1,"a":[["alkaloids/formycin-a.yaml","formycin A"]],"b":[["unspecified/formycin-a.html","formycin A"]]},{"id":"CHEBI:43616","l":"K-252a","na":1,"nb":1,"a":[["alkaloids/k-252a.yaml","K-252a"]],"b":[["unspecified/k-252a.html","K-252a"]]},{"id":"CHEBI:45257","l":"ribostamycin","na":1,"nb":1,"a":[["carbohydrates/ribostamycin.yaml","ribostamycin"]],"b":[["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"CHEBI:45327","l":"adenine arabinoside","na":1,"nb":1,"a":[["carbohydrates/adenine-arabinoside.yaml","adenine arabinoside"]],"b":[["unspecified/adenine-arabinoside.html","adenine arabinoside"]]},{"id":"CHEBI:45773","l":"streptolydigin","na":1,"nb":1,"a":[["polyketides/streptolydigin.yaml","streptolydigin"]],"b":[["unspecified/streptolydigin.html","streptolydigin"]]},{"id":"CHEBI:46416","l":"virginiamycin S1","na":1,"nb":1,"a":[["unclassified/virginiamycin-s1.yaml","virginiamycin S1"]],"b":[["antibacterial/virginiamycin-s1.html","virginiamycin S1"]]},{"id":"CHEBI:473992","l":"nystatin A1","na":1,"nb":1,"a":[["polyketides/nystatin-a1.yaml","nystatin A1"]],"b":[["antifungal/nystatin-a1.html","nystatin A1"]]},{"id":"CHEBI:48200","l":"griseusin B","na":1,"nb":1,"a":[["polyketides/griseusin-b.yaml","griseusin B"]],"b":[["unspecified/griseusin-b.html","griseusin B"]]},{"id":"CHEBI:48201","l":"frenolicin B","na":1,"nb":1,"a":[["polyketides/frenolicin-b.yaml","frenolicin B"]],"b":[["unspecified/frenolicin-b.html","frenolicin B"]]},{"id":"CHEBI:48267","l":"tubercidin","na":1,"nb":1,"a":[["carbohydrates/tubercidin.yaml","tubercidin"]],"b":[["antifungal/tubercidin.html","tubercidin"]]},{"id":"CHEBI:48635","l":"fumagillin","na":1,"nb":1,"a":[["polyketides/fumagillin.yaml","fumagillin"]],"b":[["antibacterial/fumagillin.html","fumagillin"]]},{"id":"CHEBI:48947","l":"clavulanic acid","na":1,"nb":1,"a":[["amino_acids_and_peptides/clavulanic-acid.yaml","clavulanic acid"]],"b":[["antibacterial/clavulanic-acid.html","clavulanic acid"]]},{"id":"CHEBI:50437","l":"nocardamine","na":1,"nb":1,"a":[["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"]],"b":[["antibacterial/nocardamine.html","nocardamine"]]},{"id":"CHEBI:51460","l":"albaflavenone","na":1,"nb":1,"a":[["terpenoids/albaflavenone.yaml","albaflavenone"]],"b":[["unspecified/albaflavenone.html","albaflavenone"]]},{"id":"CHEBI:52549","l":"sordarin","na":1,"nb":1,"a":[["terpenoids/sordarin.yaml","sordarin"]],"b":[["antifungal/sordarin.html","sordarin"]]},{"id":"CHEBI:5292","l":"geldanamycin","na":1,"nb":1,"a":[["polyketides/geldanamycin.yaml","geldanamycin"]],"b":[["antiviral/geldanamycin.html","geldanamycin"]]},{"id":"CHEBI:5674","l":"herbimycin","na":1,"nb":1,"a":[["polyketides/herbimycin-a.yaml","herbimycin A"]],"b":[["unspecified/herbimycin.html","herbimycin"]]},{"id":"CHEBI:59064","l":"colistin A","na":1,"nb":1,"a":[["amino_acids_and_peptides/colistin-a.yaml","colistin A"]],"b":[["antibacterial/colistin-a.html","colistin A"]]},{"id":"CHEBI:59673","l":"colistin B","na":1,"nb":1,"a":[["amino_acids_and_peptides/colistin-b.yaml","colistin B"]],"b":[["antibacterial/colistin-b.html","colistin B"]]},{"id":"CHEBI:60584","l":"bicozamycin","na":1,"nb":1,"a":[["unclassified/bicozamycin.yaml","bicozamycin"]],"b":[["antibacterial/bicozamycin.html","bicozamycin"]]},{"id":"CHEBI:60821","l":"streptothricin F","na":1,"nb":1,"a":[["carbohydrates/streptothricin-f.yaml","streptothricin F"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"]]},{"id":"CHEBI:60828","l":"streptothricin D","na":1,"nb":1,"a":[["carbohydrates/streptothricin-d.yaml","streptothricin D"]],"b":[["unspecified/streptothricin-d.html","streptothricin D"]]},{"id":"CHEBI:61080","l":"romidepsin","na":1,"nb":1,"a":[["unclassified/romidepsin.yaml","romidepsin"]],"b":[["unspecified/romidepsin.html","romidepsin"]]},{"id":"CHEBI:62219","l":"2-heptyl-4-quinolone","na":1,"nb":1,"a":[["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"]],"b":[["antibacterial/2-heptyl-4-quinolone.html","2-heptyl-4-quinolone"]]},{"id":"CHEBI:623918","l":"nikkomycin Z","na":1,"nb":1,"a":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"]],"b":[["antifungal/nikkomycin-z.html","nikkomycin Z"]]},{"id":"CHEBI:64248","l":"tunicamycin B1","na":1,"nb":1,"a":[["carbohydrates/tunicamycin-b1.yaml","tunicamycin B1"]],"b":[["unspecified/tunicamycin-b1.html","tunicamycin B1"]]},{"id":"CHEBI:64273","l":"erythromycin C","na":1,"nb":1,"a":[["polyketides/erythromycin-c.yaml","erythromycin C"]],"b":[["unspecified/erythromycin-c.html","erythromycin C"]]},{"id":"CHEBI:6472","l":"lincomycin","na":1,"nb":1,"a":[["carbohydrates/lincomycin.yaml","lincomycin"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"CHEBI:65110","l":"butirosin B","na":1,"nb":1,"a":[["carbohydrates/butirosin-b.yaml","butirosin B"]],"b":[["unspecified/butirosin-b.html","butirosin B"]]},{"id":"CHEBI:65112","l":"butirosin A","na":1,"nb":1,"a":[["carbohydrates/butirosin-a.yaml","butirosin A"]],"b":[["unspecified/butirosin-a.html","butirosin A"]]},{"id":"CHEBI:65401","l":"ambiguine I","na":1,"nb":1,"a":[["alkaloids/ambiguine-i-isonitrile.yaml","ambiguine I isonitrile"]],"b":[["antibacterial/ambiguine-i.html","ambiguine I"]]},{"id":"CHEBI:65474","l":"BE-24566B","na":1,"nb":1,"a":[["polyketides/be-24566b.yaml","BE-24566B"]],"b":[["antibacterial/be-24566b.html","BE-24566B"]]},{"id":"CHEBI:65517","l":"brasiliquinone B","na":1,"nb":1,"a":[["polyketides/brasiliquinone-b.yaml","brasiliquinone B"]],"b":[["antibacterial/brasiliquinone-b.html","brasiliquinone B"]]},{"id":"CHEBI:65619","l":"chloropeptin II","na":1,"nb":1,"a":[["amino_acids_and_peptides/isocomplestatin.yaml","isocomplestatin"]],"b":[["antiviral/chloropeptin-ii.html","chloropeptin II"]]},{"id":"CHEBI:65716","l":"cystothiazole A","na":1,"nb":1,"a":[["unclassified/cystothiazole-a.yaml","cystothiazole A"]],"b":[["antifungal/cystothiazole-a.html","cystothiazole A"]]},{"id":"CHEBI:65915","l":"FR901464","na":1,"nb":1,"a":[["fatty_acids/fr901464.yaml","FR901464"]],"b":[["unspecified/fr901464.html","FR901464"]]},{"id":"CHEBI:65964","l":"gilvusmycin","na":1,"nb":1,"a":[["alkaloids/gilvusmycin.yaml","gilvusmycin"]],"b":[["unspecified/gilvusmycin.html","gilvusmycin"]]},{"id":"CHEBI:66006","l":"harziphilone","na":1,"nb":1,"a":[["polyketides/harziphilone.yaml","harziphilone"]],"b":[["antiviral/harziphilone.html","harziphilone"]]},{"id":"CHEBI:66093","l":"isocomplestatin","na":1,"nb":1,"a":[["amino_acids_and_peptides/isocomplestatin.yaml","isocomplestatin"]],"b":[["antiviral/complestatin.html","isocomplestatin"]]},{"id":"CHEBI:66135","l":"kalimantacin A","na":1,"nb":1,"a":[["polyketides/kalimantacin-a.yaml","kalimantacin A"]],"b":[["antibacterial/kalimantacin-a.html","kalimantacin A"]]},{"id":"CHEBI:66553","l":"lactonamycin","na":1,"nb":1,"a":[["unclassified/lactonamycin.yaml","lactonamycin"]],"b":[["antibacterial/lactonamycin.html","lactonamycin"]]},{"id":"CHEBI:66678","l":"(−)-marinopyrrole A","na":1,"nb":1,"a":[["alkaloids/marinopyrrole-a.yaml","(−)-marinopyrrole A"]],"b":[["antibacterial/marinopyrrole-a.html","(−)-marinopyrrole A"]]},{"id":"CHEBI:66679","l":"(−)-marinopyrrole B","na":1,"nb":1,"a":[["alkaloids/marinopyrrole-b.yaml","(−)-marinopyrrole B"]],"b":[["antibacterial/marinopyrrole-b.html","(−)-marinopyrrole B"]]},{"id":"CHEBI:66687","l":"mediomycin A","na":1,"nb":1,"a":[["fatty_acids/mediomycin-a.yaml","mediomycin A"]],"b":[["antifungal/mediomycin-a.html","mediomycin A"]]},{"id":"CHEBI:66771","l":"polyketomycin","na":1,"nb":1,"a":[["polyketides/polyketomycin.yaml","polyketomycin"]],"b":[["antibacterial/polyketomycin.html","polyketomycin"]]},{"id":"CHEBI:6701","l":"maytansine","na":1,"nb":1,"a":[["polyketides/maytansine.yaml","maytansine"]],"b":[["unspecified/maytansine.html","maytansine"]]},{"id":"CHEBI:67811","l":"zorbamycin","na":1,"nb":1,"a":[["amino_acids_and_peptides/zorbamycin.yaml","zorbamycin"]],"b":[["unspecified/zorbamycin.html","zorbamycin"]]},{"id":"CHEBI:68236","l":"platensimycin","na":1,"nb":1,"a":[["terpenoids/platensimycin.yaml","platensimycin"]],"b":[["antibacterial/platensimycin.html","platensimycin"]]},{"id":"CHEBI:68241","l":"platencin","na":1,"nb":1,"a":[["terpenoids/platencin.yaml","platencin"]],"b":[["antibacterial/platencin.html","platencin"]]},{"id":"CHEBI:7025","l":"mupirocin","na":1,"nb":1,"a":[["polyketides/mupirocin.yaml","mupirocin"]],"b":[["antibacterial/mupirocin.html","mupirocin"]]},{"id":"CHEBI:70816","l":"pentalenolactone","na":1,"nb":1,"a":[["terpenoids/pentalenolactone.yaml","pentalenolactone"]],"b":[["unspecified/pentalenolactone.html","pentalenolactone"]]},{"id":"CHEBI:71961","l":"lividomycin A","na":1,"nb":1,"a":[["carbohydrates/lividomycin-a.yaml","lividomycin A"]],"b":[["antimycobacterial/lividomycin-a.html","lividomycin A"]]},{"id":"CHEBI:72590","l":"rhizoxin","na":1,"nb":1,"a":[["unclassified/rhizoxin-a.yaml","rhizoxin A"]],"b":[["unspecified/rhizoxin.html","rhizoxin"]]},{"id":"CHEBI:73167","l":"concanamycin A","na":1,"nb":1,"a":[["polyketides/concanamycin-a.yaml","concanamycin A"]],"b":[["antifungal/concanamycin-a.html","concanamycin A"]]},{"id":"CHEBI:7488","l":"natamycin","na":1,"nb":1,"a":[["polyketides/natamycin.yaml","natamycin"]],"b":[["antifungal/natamycin.html","natamycin"]]},{"id":"CHEBI:74926","l":"patulin","na":1,"nb":1,"a":[["polyketides/patulin.yaml","patulin"]],"b":[["unspecified/patulin.html","patulin"]]},{"id":"CHEBI:7508","l":"framycetin","na":1,"nb":1,"a":[["carbohydrates/framycetin.yaml","framycetin"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"CHEBI:75276","l":"ikarugamycin","na":1,"nb":1,"a":[["unclassified/ikarugamycin.yaml","ikarugamycin"]],"b":[["antiprotozoal/ikarugamycin.html","ikarugamycin"]]},{"id":"CHEBI:75306","l":"2-heptyl-4-hydroxyquinoline","na":1,"nb":1,"a":[["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"]],"b":[["antibacterial/2-heptyl-4-hydroxyquinoline.html","2-heptyl-4-hydroxyquinoline"]]},{"id":"CHEBI:7569","l":"nigericin","na":1,"nb":1,"a":[["polyketides/nigericin.yaml","nigericin"]],"b":[["antibacterial/nigericin.html","nigericin"]]},{"id":"CHEBI:77772","l":"ilicicolin H","na":1,"nb":1,"a":[["alkaloids/ilicicolin-h.yaml","ilicicolin H"]],"b":[["unspecified/ilicicolin-h.html","ilicicolin H"]]},{"id":"CHEBI:77879","l":"elaiophylin","na":1,"nb":1,"a":[["polyketides/elaiophylin.yaml","elaiophylin"]],"b":[["antifungal/elaiophylin.html","elaiophylin"]]},{"id":"CHEBI:78156","l":"mucidin","na":1,"nb":1,"a":[["polyketides/mucidin.yaml","mucidin"]],"b":[["antifungal/mucidin.html","mucidin"]]},{"id":"CHEBI:78688","l":"2,4-diacetylphloroglucinol","na":1,"nb":1,"a":[["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"]],"b":[["antifungal/2-4-diacetylphloroglucinol.html","2,4-diacetylphloroglucinol"]]},{"id":"CHEBI:79391","l":"(−)-chuangxinmycin","na":1,"nb":1,"a":[["alkaloids/chuangxinmycin.yaml","(−)-chuangxinmycin"]],"b":[["antibacterial/chuangxinmycin.html","(−)-chuangxinmycin"]]},{"id":"CHEBI:80729","l":"toxoflavin","na":1,"nb":1,"a":[["alkaloids/toxoflavin.yaml","toxoflavin"]],"b":[["antibacterial/toxoflavin.html","toxoflavin"]]},{"id":"CHEBI:82758","l":"prodigiosin","na":1,"nb":1,"a":[["alkaloids/prodigiosin.yaml","prodigiosin"]],"b":[["unspecified/prodigiosin.html","prodigiosin"]]},{"id":"CHEBI:83206","l":"albomycin δ1","na":1,"nb":1,"a":[["amino_acids_and_peptides/albomycin-1.yaml","albomycin δ1"]],"b":[["antibacterial/albomycin-%CE%B41.html","albomycin δ1"]]},{"id":"CHEBI:8349","l":"pradimicin A","na":1,"nb":1,"a":[["polyketides/pradimicin-a.yaml","pradimicin A"]],"b":[["antifungal/pradimicin-a.html","pradimicin A"]]},{"id":"CHEBI:84037","l":"ravidomycin","na":1,"nb":1,"a":[["polyketides/ravidomycin.yaml","ravidomycin"]],"b":[["unspecified/ravidomycin.html","ravidomycin"]]},{"id":"CHEBI:85129","l":"ristocetin","na":1,"nb":1,"a":[["amino_acids_and_peptides/ristocetin-a.yaml","Ristocetin A"]],"b":[["antibacterial/ristocetin.html","ristocetin"]]},{"id":"CHEBI:85251","l":"teicoplanin A2-2","na":1,"nb":1,"a":[["amino_acids_and_peptides/teicoplanin-a2-2.yaml","teicoplanin A2-2"]],"b":[["unspecified/teicoplanin-a2-2.html","teicoplanin A2-2"]]},{"id":"CHEBI:85616","l":"viridicatumtoxin","na":1,"nb":1,"a":[["unclassified/viridicatumtoxin.yaml","viridicatumtoxin"]],"b":[["unspecified/viridicatumtoxin.html","viridicatumtoxin"]]},{"id":"CHEBI:86012","l":"oxetanocin A","na":1,"nb":1,"a":[["carbohydrates/oxetanocin-a.yaml","oxetanocin A"]],"b":[["antibacterial/oxetanocin-a.html","oxetanocin A"]]},{"id":"CHEBI:8653","l":"pyocyanine","na":1,"nb":1,"a":[["alkaloids/pyocyanine.yaml","pyocyanine"]],"b":[["antibacterial/pyocyanine.html","pyocyanine"]]},{"id":"CHEBI:87084","l":"rosaramicin","na":1,"nb":1,"a":[["polyketides/rosaramicin.yaml","rosaramicin"]],"b":[["antibacterial/rosaramicin.html","rosaramicin"]]},{"id":"CHEBI:87399","l":"UK 63598","na":1,"nb":1,"a":[["unclassified/uk-63598.yaml","UK 63598"]],"b":[["unspecified/uk-63598.html","UK 63598"]]},{"id":"CHEBI:90284","l":"pirazofurin","na":1,"nb":1,"a":[["unclassified/pirazofurin.yaml","pirazofurin"]],"b":[["unspecified/pirazofurin.html","pirazofurin"]]},{"id":"CHEBI:90888","l":"aurachin C","na":1,"nb":1,"a":[["alkaloids/aurachin-c.yaml","aurachin C"]],"b":[["antibacterial/aurachin-c.html","aurachin C"]]},{"id":"CHEBI:90924","l":"aurachin A","na":1,"nb":1,"a":[["alkaloids/aurachin-a.yaml","aurachin A"]],"b":[["antibacterial/aurachin-a.html","aurachin A"]]},{"id":"CHEBI:90941","l":"sibiromycin","na":1,"nb":1,"a":[["carbohydrates/sibiromycin.yaml","sibiromycin"]],"b":[["unspecified/sibiromycin.html","sibiromycin"]]},{"id":"CHEBI:9168","l":"sirolimus","na":1,"nb":1,"a":[["polyketides/sirolimus.yaml","sirolimus"]],"b":[["antibacterial/sirolimus.html","sirolimus"]]},{"id":"CHEBI:9169","l":"sisomycin","na":1,"nb":1,"a":[["carbohydrates/sisomycin.yaml","sisomycin"]],"b":[["antibacterial/sisomycin.html","sisomycin"]]},{"id":"CHEBI:9215","l":"spectinomycin","na":1,"nb":1,"a":[["carbohydrates/spectinomycin.yaml","spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"CHEBI:92181","l":"lasalocid","na":1,"nb":1,"a":[["polyketides/lasalocid.yaml","lasalocid"]],"b":[["antiprotozoal/lasalocid.html","lasalocid"]]},{"id":"CHEBI:9232","l":"spinosyn D","na":1,"nb":1,"a":[["polyketides/spinosyn-d.yaml","spinosyn D"]],"b":[["unspecified/spinosyn-d.html","spinosyn D"]]},{"id":"CHEBI:9287","l":"streptonigrin","na":1,"nb":1,"a":[["alkaloids/streptonigrin.yaml","streptonigrin"]],"b":[["unspecified/streptonigrin.html","streptonigrin"]]},{"id":"CHEBI:9470","l":"tetracenomycin C","na":1,"nb":1,"a":[["polyketides/tetracenomycin-c.yaml","tetracenomycin C"]],"b":[["antibacterial/tetracenomycin-c.html","tetracenomycin C"]]},{"id":"CHEBI:9555","l":"tioguanine","na":1,"nb":1,"a":[["alkaloids/tioguanine.yaml","tioguanine"]],"b":[["antiviral/tioguanine.html","tioguanine"]]},{"id":"NCBITaxon:1156913","l":"","na":1,"nb":1,"a":[["amino_acids_and_peptides/vancomycin.yaml","vancomycin"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"NCBITaxon:1352936","l":"","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/clorobiocin.yaml","clorobiocin"]],"b":[["antibacterial/clorobiocin.html","clorobiocin"]]},{"id":"NCBITaxon:1469403","l":"","na":1,"nb":1,"a":[["unclassified/ikarugamycin.yaml","ikarugamycin"]],"b":[["antiprotozoal/ikarugamycin.html","ikarugamycin"]]},{"id":"NCBITaxon:1654360","l":"Photobacterium galatheae","na":1,"nb":1,"a":[["alkaloids/holomycin.yaml","holomycin"]],"b":[["antibacterial/holomycin.html","holomycin"]]},{"id":"NCBITaxon:1764","l":"Mycobacterium avium","na":1,"nb":1,"a":[["fatty_acids/gpl-21.yaml","GPL-21"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"NCBITaxon:2583819","l":"","na":1,"nb":1,"a":[["polyketides/nigericin.yaml","nigericin"]],"b":[["antibacterial/nigericin.html","nigericin"]]},{"id":"NCBITaxon:263","l":"Francisella tularensis","na":1,"nb":1,"a":[["polyketides/emodin.yaml","emodin"]],"b":[["unspecified/%CE%B1-mangostin.html","α-mangostin"]]},{"id":"NCBITaxon:41251","l":"Strobilurus tenacellus","na":1,"nb":1,"a":[["polyketides/mucidin.yaml","mucidin"]],"b":[["antifungal/mucidin.html","mucidin"]]},{"id":"NCBITaxon:527005","l":"","na":1,"nb":1,"a":[["alkaloids/holomycin.yaml","holomycin"]],"b":[["antibacterial/holomycin.html","holomycin"]]},{"id":"NCBITaxon:5382","l":"Suillus grevillei","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/atromentin.yaml","atromentin"]],"b":[["antibacterial/atromentin.html","atromentin"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":1,"nb":1,"a":[["alkaloids/congocidine.yaml","congocidine"]],"b":[["antiprotozoal/emetine.html","emetine"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":1,"nb":1,"a":[["polyketides/emodin.yaml","emodin"]],"b":[["unspecified/%CE%B1-mangostin.html","α-mangostin"]]},{"id":"NCBITaxon:67283","l":"Streptomyces candidus","na":1,"nb":1,"a":[["unclassified/pirazofurin.yaml","pirazofurin"]],"b":[["unspecified/pirazofurin.html","pirazofurin"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":1,"a":[["unclassified/lysocin-e.yaml","lysocin E"]],"b":[["antibacterial/lysocin-e.html","lysocin E"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":1,"a":[["unclassified/mycobactin.yaml","mycobactin"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:889487","l":"","na":1,"nb":1,"a":[["unclassified/antimycin-a.yaml","antimycin A"]],"b":[["antifungal/antimycin-a.html","antimycin A"]]},{"id":"UniProt:A0A1S5RQP7","l":"","na":1,"nb":1,"a":[["alkaloids/pentostatin.yaml","pentostatin"]],"b":[["unspecified/pentostatin.html","pentostatin"]]},{"id":"UniProt:B1JQH1","l":"","na":1,"nb":1,"a":[["polyketides/emodin.yaml","emodin"]],"b":[["unspecified/%CE%B1-mangostin.html","α-mangostin"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/NaturalProductMech--CultureMech.json b/assets/fleet/edges/NaturalProductMech--CultureMech.json index 04612dc..f7cff98 100644 --- a/assets/fleet/edges/NaturalProductMech--CultureMech.json +++ b/assets/fleet/edges/NaturalProductMech--CultureMech.json @@ -1 +1 @@ -{"a":"NaturalProductMech","b":"CultureMech","base":{"NaturalProductMech":"https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/natural_products/","CultureMech":"https://github.com/CultureBotAI/CultureMech/blob/main/data/merge_yaml/merged/"},"n":5,"by":{"CHEBI":3,"NCBITaxon":2},"terms":[{"id":"CHEBI:15956","l":"biotin","na":1,"nb":1645,"a":[["alkaloids/biotin.yaml","biotin"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_PYGV_MEDIUM_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2ASW.yaml","2asw"]]},{"id":"CHEBI:16349","l":"L-citrulline","na":1,"nb":9,"a":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"]]},{"id":"CHEBI:27592","l":"ectoine","na":1,"nb":6,"a":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["modified_m63_medium_with_ectoine_and_2_5_m_nacl.yaml","modified_m63_medium_with_ectoine_and_2_5_m_nacl"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":1,"nb":1,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["RHODOBACTER_SPHAEROIDES_MEDIUM.yaml","rhodobacter_sphaeroides_medium"]]},{"id":"NCBITaxon:511145","l":"Escherichia coli str. K-12 substr. MG1655","na":1,"nb":1,"a":[["unclassified/enterobactin.yaml","enterobactin"]],"b":[["LB_Medium.yaml","lb_medium"]]}]} \ No newline at end of file +{"a":"NaturalProductMech","b":"CultureMech","base":{"NaturalProductMech":"https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/natural_products/","CultureMech":"https://github.com/CultureBotAI/CultureMech/blob/main/data/merge_yaml/merged/"},"n":5,"by":{"CHEBI":3,"NCBITaxon":2},"terms":[{"id":"CHEBI:15956","l":"biotin","na":1,"nb":1645,"a":[["alkaloids/biotin.yaml","biotin"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2ASW.yaml","2asw"]]},{"id":"CHEBI:16349","l":"L-citrulline","na":1,"nb":9,"a":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"]]},{"id":"CHEBI:27592","l":"ectoine","na":1,"nb":6,"a":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["modified_m63_medium_with_ectoine_and_2_5_m_nacl.yaml","modified_m63_medium_with_ectoine_and_2_5_m_nacl"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":1,"nb":1,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["RHODOBACTER_SPHAEROIDES_MEDIUM.yaml","rhodobacter_sphaeroides_medium"]]},{"id":"NCBITaxon:511145","l":"Escherichia coli str. K-12 substr. MG1655","na":1,"nb":1,"a":[["unclassified/enterobactin.yaml","enterobactin"]],"b":[["LB_Medium.yaml","lb_medium"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/ProteinTraitsMech--AntibioticMech.json b/assets/fleet/edges/ProteinTraitsMech--AntibioticMech.json index 76dda87..a3b1c2b 100644 --- a/assets/fleet/edges/ProteinTraitsMech--AntibioticMech.json +++ b/assets/fleet/edges/ProteinTraitsMech--AntibioticMech.json @@ -1 +1 @@ -{"a":"ProteinTraitsMech","b":"AntibioticMech","base":{"ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record=","AntibioticMech":"https://culturebotai.github.io/AntibioticMech/pages/"},"n":2437,"by":{"ARO":1740,"CHEBI":594,"NCBITaxon":79,"UniProt":20,"GO":2,"DOI":2},"terms":[{"id":"ARO:0000032","l":"","na":3352,"nb":55,"a":[["ARO%3A3001815","ACC-1"],["ARO%3A3006228","ACC-1a"],["ARO%3A3006229","ACC-1b"],["ARO%3A3006230","ACC-1c"],["ARO%3A3006231","ACC-1d"],["ARO%3A3001816","ACC-2"]],"b":[["antibacterial/cefacetrile.html","cefacetrile"],["antibacterial/cefaclor.html","cefaclor"],["antibacterial/cefadroxil.html","cefadroxil"],["antibacterial/cefaloridine.html","cefaloridine"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefamandole.html","cefamandole"]]},{"id":"ARO:0000000","l":"","na":143,"nb":45,"a":[["ARO%3A3005099","23S rRNA (adenine(2058)-N(6))-methyltransferase Erm(A)"],["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3004125","23S rRNA with mutation conferring resistance to macrolide antibiotics"],["ARO%3A3005001","50S rRNA with mutation conferring resistance to macrolide antibiotics"],["ARO%3A3000772","AdeIJK"],["ARO%3A3004133","Brachyspira hyodysenteriae 23S rRNA with mutation conferring resistance to tylosin"]],"b":[["antibacterial/5-o-mycaminosyltylonolide.html","5-O-mycaminosyltylonolide"],["antibacterial/aplasmomycin.html","(+)-aplasmomycin"],["antibacterial/azalomycin-f.html","azalomycin F"],["antibacterial/azithromycin.html","azithromycin"],["antibacterial/boromycin.html","boromycin"],["antibacterial/brefeldin-a.html","brefeldin A"]]},{"id":"CHEBI:17478","l":"","na":62,"nb":33,"a":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.1.2","alcohol dehydrogenase (NADP(+))"],["EC%3A1.1.1.71","alcohol dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.2.8","alcohol dehydrogenase (cytochrome c)"],["EC%3A1.1.3.13","alcohol oxidase"]],"b":[["antibacterial/5-o-mycaminosyltylonolide.html","5-O-mycaminosyltylonolide"],["antibacterial/fatsicarpain-c.html","fatsicarpain C"],["antibacterial/josamycin.html","josamycin"],["antibacterial/rosaramicin.html","rosaramicin"],["antibacterial/spiramycin-i.html","spiramycin I"],["antibacterial/spiramycin-ii.html","spiramycin II"]]},{"id":"ARO:0000016","l":"","na":331,"nb":32,"a":[["ARO%3A3004272","16S rRNA methyltransferase (A1408)"],["ARO%3A3004271","16S rRNA methyltransferase (G1405)"],["ARO%3A3003666","16s rRNA with mutation conferring resistance to aminoglycoside antibiotics"],["ARO%3A3004936","23s rRNA with mutation conferring resistance to aminoglycoside antibiotics"],["ARO%3A3000341","AAC(2')"],["ARO%3A3007393","AAC(2')-I"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/apramycin.html","apramycin"],["antibacterial/arbekacin.html","arbekacin"]]},{"id":"ARO:0000001","l":"","na":223,"nb":31,"a":[["ARO%3A3005113","AAC(6')-Ib-cr"],["ARO%3A3002547","AAC(6')-Ib-cr1"],["ARO%3A3007770","aac(6')-Ib-cr10"],["ARO%3A3007771","aac(6')-Ib-cr11"],["ARO%3A3005112","AAC(6')-Ib-cr3"],["ARO%3A3005114","AAC(6')-Ib-cr4"]],"b":[["antibacterial/7-3-aminopyrrolidin-1-yl-1-2-4-difluorophenyl-6-fluoro-4-oxo-1-4-dihyd.html","7-(3-aminopyrrolidin-1-yl)-1-(2,4-difluorophenyl)-6-fluoro-4-oxo-1,4-dihydro-1,8-naphthyridine-3-carboxylic"],["antibacterial/9-fluoro-5-methyl-1-oxo-6-7-dihydro-1h-5h-pyrido-3-2-1-ij-quinoline-2-.html","9-fluoro-5-methyl-1-oxo-6,7-dihydro-1H,5H-pyrido[3,2,1-ij]quinoline-2-carboxylic"],["antibacterial/balofloxacin.html","Balofloxacin"],["antibacterial/cinoxacin.html","cinoxacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/clinafloxacin.html","clinafloxacin"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":156,"nb":30,"a":[["IDPO%3A0000033","flexible linker"],["IDPO%3A0000014","order to disorder"],["IDPO%3A0000004","pre-molten globule"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"]]},{"id":"CHEBI:15734","l":"","na":29,"nb":59,"a":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.1.2","alcohol dehydrogenase (NADP(+))"],["EC%3A1.1.1.71","alcohol dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.2.8","alcohol dehydrogenase (cytochrome c)"],["EC%3A1.1.3.13","alcohol oxidase"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/dihydroconiferyl-alcohol.html","dihydroconiferyl alcohol"],["antibacterial/equisetin.html","equisetin"],["antibacterial/hexan-1-ol.html","hexan-1-ol"],["antibacterial/lyoniresinol-3-%CE%B1-o-%CE%B2-d-glucopyranoside.html","(+)-lyoniresinol-3-α-O-β-D-glucopyranoside"],["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3000008","l":"","na":3168,"nb":27,"a":[["ARO%3A3001815","ACC-1"],["ARO%3A3006228","ACC-1a"],["ARO%3A3006229","ACC-1b"],["ARO%3A3006230","ACC-1c"],["ARO%3A3006231","ACC-1d"],["ARO%3A3001816","ACC-2"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aspoxicillin.html","aspoxicillin"],["antibacterial/azidocillin.html","azidocillin"],["antibacterial/azlocillin.html","azlocillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":31,"nb":22,"a":[["Pfam%3APF08787","Alginate lyase"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF08218","Citrate lyase ligase C-terminal domain"],["Pfam%3APF13727","CoA-binding domain"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["Pfam%3APF20714","DpiA-like helix-turn-helix domain"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"]]},{"id":"ARO:3000081","l":"","na":120,"nb":18,"a":[["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3004256","Bleomycin resistant protein"],["ARO%3A3005036","BLMT"],["ARO%3A3001205","BRP(MBL)"],["ARO%3A3004561","Clostridioides difficile murG with mutation conferring resistance to vancomycin"],["ARO%3A3004681","Clostridioides difficile rpoC with mutation conferring resistance to vancomycin"]],"b":[["antibacterial/a47934.html","A47934"],["antibacterial/antibiotic-a40926.html","antibiotic A40926"],["antibacterial/avoparcin.html","avoparcin"],["antibacterial/balhimycin.html","balhimycin"],["antibacterial/bleomycin-a2.html","bleomycin A2"],["antibacterial/bleomycin-b2.html","bleomycin B2"]]},{"id":"ARO:0000026","l":"","na":98,"nb":13,"a":[["ARO%3A3005099","23S rRNA (adenine(2058)-N(6))-methyltransferase Erm(A)"],["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3004182","23S rRNA with mutation conferring resistance to streptogramins antibiotics"],["ARO%3A3000202","Cfr 23S ribosomal RNA methyltransferase"],["ARO%3A3004649","cfr(B)"],["ARO%3A3004609","cfr(B) Group"]],"b":[["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/madumycin-ii.html","madumycin II"],["antibacterial/ostreogrycin-b3.html","ostreogrycin B3"],["antibacterial/patricin-a.html","patricin A"],["antibacterial/patricin-b.html","patricin B"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":51,"nb":13,"a":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF13166","AAA domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF27533","CapK C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/bromodeoxytopsentin.html","bromodeoxytopsentin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"ARO:3000053","l":"","na":203,"nb":12,"a":[["ARO%3A3003667","16s rRNA with mutation conferring resistance to peptide antibiotics"],["ARO%3A3003581","Acinetobacter mutant Lpx gene conferring resistance to colistin"],["ARO%3A3007430","alm glycyl carrier protein"],["ARO%3A3007432","alm glycyltransferase"],["ARO%3A3007433","almE"],["ARO%3A3007434","almEFG"]],"b":[["antibacterial/defensin.html","defensin"],["antibacterial/epinecidin-1.html","epinecidin-1"],["antibacterial/magainin-1.html","magainin 1"],["antibacterial/magainin-2.html","magainin 2"],["antibacterial/magainin-a.html","magainin A"],["antibacterial/magainin-b.html","magainin B"]]},{"id":"ARO:3001219","l":"","na":12,"nb":25,"a":[["ARO%3A3003357","Clostridioides difficile EF-Tu mutants conferring resistance to elfamycin"],["ARO%3A3001312","elfamycin resistant EF-Tu"],["ARO%3A3003875","Enterococcus faecium EF-Tu mutants conferring resistance to elfamycin"],["ARO%3A3003438","Enterococcus faecium EF-Tu mutants conferring resistance to GE2270A"],["ARO%3A3003358","Escherichia coli EF-Tu mutants conferring resistance to elfamycin"],["ARO%3A3003370","Escherichia coli EF-Tu mutants conferring resistance to Enacyloxin IIa"]],"b":[["antibacterial/amythiamicin-a.html","amythiamicin A"],["antibacterial/aurodox.html","aurodox"],["antibacterial/dihydromocimycin.html","dihydromocimycin"],["antibacterial/efrotomycin.html","efrotomycin"],["antibacterial/enacyloxin-iia.html","enacyloxin IIa"],["antibacterial/factumycin.html","factumycin"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":20,"nb":12,"a":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"],["Pfam%3APF18173","Bacterial HORMA domain 2"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["Pfam%3APF27322","Cap8 HORMA domain"],["Pfam%3APF01526","Tn3 transposase DDE domain"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3007499","l":"","na":11,"nb":18,"a":[["ARO%3A3007549","antibiotic resistant ergosterol biosynthesis pathway transcription factor"],["ARO%3A3007565","Aspergillus spp. cyp51A with mutations conferring resistance to triazoles antibiotics"],["ARO%3A3007670","Aspergillus spp. Hmg1 with mutations conferring resistance to triazoles antibiotics"],["ARO%3A3007666","Candida spp. cyp51A1 with mutations conferring resistance to triazoles and imidazole antibiotics"],["ARO%3A3007524","Candida spp. ERG11 with mutations conferring resistance to azole antibiotics"],["ARO%3A3007640","Candida spp. pleiotropic drug resistance factor 1"]],"b":[["antifungal/bromuconazole.html","bromuconazole"],["antifungal/cyproconazole.html","cyproconazole"],["antifungal/difenoconazole.html","difenoconazole"],["antifungal/epoxiconazole.html","epoxiconazole"],["antifungal/fenbuconazole.html","fenbuconazole"],["antifungal/fluconazole.html","fluconazole"]]},{"id":"CHEBI:17087","l":"","na":17,"nb":11,"a":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.1.184","carbonyl reductase (NADPH)"],["EC%3A1.1.1.2","alcohol dehydrogenase (NADP(+))"],["EC%3A1.1.3.18","secondary-alcohol oxidase"],["EC%3A1.1.98.5","secondary-alcohol dehydrogenase (coenzyme-F420)"],["EC%3A1.4.1.28","secondary-alkyl amine dehydrogenase [NAD(P)(+)]"]],"b":[["antibacterial/6-diazo-5-oxo-l-norleucine.html","6-diazo-5-oxo-L-norleucine"],["antibacterial/dehydroacetic-acid.html","dehydroacetic acid"],["antibacterial/ucs1025-a.html","UCS1025 A"],["antifungal/1-2-3-dihydro-1h-pyrrol-1-yl-2-methyldecane-1-3-dione.html","1-(2,3-dihydro-1H-pyrrol-1-yl)-2-methyldecane-1,3-dione"],["antifungal/e-1-2-3-dihydro-1h-pyrrol-1-yl-2-methyldec-8-ene-1-3-dione.html","(E)-1-(2,3-dihydro-1H-pyrrol-1-yl)-2-methyldec-8-ene-1,3-dione"],["antiprotozoal/ct3.html","CT3"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":11,"nb":15,"a":[["Pfam%3APF22829","HphA C-terminal domain"],["Pfam%3APF22828","HphA N-terminal heme-binding domain"],["Pfam%3APF28205","Ciprofloxacin tolerance protein"],["Pfam%3APF19582","Solute-binding protein AdeT 1/2"],["PROSITE%3APS00337","Beta-lactamase class-D active site"],["Pfam%3APF24575","Surface lipoprotein assembly modifier, N-terminal TPR repeats"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3000282","l":"","na":13,"nb":11,"a":[["ARO%3A3007426","ECF transporter S component"],["ARO%3A3003386","Escherichia coli folP with mutation conferring resistance to sulfonamides"],["ARO%3A3000386","MexAB-OprM"],["ARO%3A3004873","Neisseria gonorrhoeae folP with mutation conferring resistance to sulfonamides"],["ARO%3A3007749","Salmonella gallinarum folP with mutation conferring resistance to sulfonamides"],["ARO%3A3003387","Streptococcus pyogenes folP with mutation conferring resistance to sulfonamides"]],"b":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfacetamide.html","sulfacetamide"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfamerazine.html","sulfamerazine"],["antibacterial/sulfamethazine.html","sulfamethazine"],["antibacterial/sulfamethizole.html","sulfamethizole"]]},{"id":"CHEBI:33853","l":"","na":10,"nb":185,"a":[["EC%3A2.1.1.382","methoxylated aromatic compound--corrinoid protein Co-methyltransferase"],["EC%3A2.8.2.1","aryl sulfotransferase"],["EC%3A2.8.2.22","aryl-sulfate sulfotransferase"],["EC%3A3.1.1.2","arylesterase"],["EC%3A3.1.6.1","arylsulfatase (type I)"],["RHEA%3A72283","a methoxylated aromatic compound + Co(I)-[methoxylated-aromatic-compound-specific corrinoid protein] + H(+) = a phenol + methyl-Co(III)-[methoxylated-aromatic-compound-specific corrinoid protein]"]],"b":[["antibacterial/2e-6z-13-hydroxy-1-2-hydroxy-5-methoxy-3-methylphenyl-3-7-11-15-tetram.html","(2E,6Z)-13-hydroxy-1-(2-hydroxy-5-methoxy-3-methylphenyl)-3,7,11,15-tetramethylhexadeca-2,6,14-triene-5,12-dione"],["antibacterial/5e-7-oxozeaenol.html","5E-7-oxozeaenol"],["antibacterial/5z-7-oxozeaenol.html","5Z-7-oxozeaenol"],["antibacterial/7-hydroxy-5-hydroxymethyl-2h-benzo-1-4-thiazin-3-one.html","7-hydroxy-5-hydroxymethyl-2H-benzo[1,4]thiazin-3-one"],["antibacterial/actinodaphnine.html","actinodaphnine"],["antibacterial/anthramycin.html","anthramycin"]]},{"id":"CHEBI:35681","l":"","na":10,"nb":139,"a":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.1.184","carbonyl reductase (NADPH)"],["EC%3A1.1.1.2","alcohol dehydrogenase (NADP(+))"],["EC%3A1.1.3.18","secondary-alcohol oxidase"],["EC%3A1.1.98.5","secondary-alcohol dehydrogenase (coenzyme-F420)"],["RHEA%3A10740","a secondary alcohol + NAD(+) = a ketone + NADH + H(+)"]],"b":[["antibacterial/14-norpseurotin-a.html","14-norpseurotin A"],["antibacterial/2e-6z-13-hydroxy-1-2-hydroxy-5-methoxy-3-methylphenyl-3-7-11-15-tetram.html","(2E,6Z)-13-hydroxy-1-(2-hydroxy-5-methoxy-3-methylphenyl)-3,7,11,15-tetramethylhexadeca-2,6,14-triene-5,12-dione"],["antibacterial/5e-7-oxozeaenol.html","5E-7-oxozeaenol"],["antibacterial/5z-7-oxozeaenol.html","5Z-7-oxozeaenol"],["antibacterial/asperlactone.html","asperlactone"],["antibacterial/aspyrone.html","aspyrone"]]},{"id":"ARO:3000050","l":"","na":50,"nb":9,"a":[["ARO%3A3003669","16S rRNA with mutation conferring resistance to tetracycline derivatives"],["ARO%3A3003499","Cutibacterium acnes 16S rRNA mutation conferring resistance to tetracycline"],["ARO%3A3003411","Escherichia coli 16S rRNA (rrnB) mutation conferring resistance to tetracycline"],["ARO%3A3003410","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to tetracycline"],["ARO%3A3004126","Escherichia coli LamB"],["ARO%3A3003510","Helicobacter pylori 16S rRNA mutation conferring resistance to tetracycline"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/eravacycline.html","eravacycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/omadacycline.html","omadacycline"]]},{"id":"CHEBI:18379","l":"","na":9,"nb":21,"a":[["EC%3A3.5.5.1","nitrilase"],["EC%3A4.8.1.2","aliphatic aldoxime dehydratase"],["EC%3A4.8.1.5","thiohydroximate-O-sulfate sulfate/sulfur-lyase (nitrile-forming)"],["RHEA%3A21724","a nitrile + 2 H2O = a carboxylate + NH4(+)"],["RHEA%3A59956","a (Z)-N-(sulfonatooxy)alkanimidothioate = a nitrile + sulfur + sulfate"],["RHEA%3A11316","an aliphatic aldoxime = a nitrile + H2O"]],"b":[["antibacterial/bay11-7085.html","BAY11-7085"],["antibacterial/cccp.html","CCCP"],["antibacterial/finafloxacin.html","finafloxacin"],["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/cyazofamid.html","cyazofamid"],["antifungal/cymoxanil.html","cymoxanil"]]},{"id":"ARO:0000020","l":"","na":2703,"nb":8,"a":[["ARO%3A3006863","AAK-1"],["ARO%3A3005387","AAK beta-lactamase"],["ARO%3A3003809","Acinetobacter baumannii OprD conferring resistance to imipenem"],["ARO%3A3001821","ACT-1"],["ARO%3A3001832","ACT-10"],["ARO%3A3007883","ACT-100"]],"b":[["antibacterial/biapenem.html","biapenem"],["antibacterial/doripenem.html","doripenem"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"],["antibacterial/panipenem.html","panipenem"]]},{"id":"NCBITaxon:2697049","l":"Severe acute respiratory syndrome coronavirus 2","na":18,"nb":8,"a":[["IDPO%3A0000002","disorder"],["IDPO%3A0000033","flexible linker"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000041","glycosylation display site"],["IDPO%3A0000048","limited proteolysis display site"],["IDPO%3A0000037","molecular recognition display site"]],"b":[["antibacterial/3-6-diaminoacridine.html","3,6-diaminoacridine"],["antibacterial/anacardic-acid.html","anacardic acid"],["antibacterial/baicalein.html","baicalein"],["antibacterial/ebselen.html","ebselen"],["antibacterial/hexachlorophene.html","hexachlorophene"],["antifungal/disulfiram.html","disulfiram"]]},{"id":"ARO:3000034","l":"","na":8,"nb":9,"a":[["ARO%3A3002895","SAT-2"],["ARO%3A3002898","SAT-3"],["ARO%3A3002897","SAT-4"],["ARO%3A3005045","SatA"],["ARO%3A3004699","sta"],["ARO%3A3000869","streptothricin acetyltransferase (SAT)"]],"b":[["antibacterial/a201a.html","A201A"],["antibacterial/caprazamycin.html","caprazamycin"],["antibacterial/cordycepin.html","cordycepin"],["antibacterial/pseudouridimycin.html","pseudouridimycin"],["antibacterial/puromycin.html","puromycin"],["antibacterial/streptothricin-f.html","streptothricin F"]]},{"id":"CHEBI:33709","l":"amino acid","na":8,"nb":8,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.23","The Dicarboxylate/Amino Acid:Cation (Na+ or H+) Symporter (DAACS) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A1.V.1","The Filamentous Cyanobacterial Septal Pore (Septum) Family"],["TCDB%3A1.A.24","The Gap Junction-forming Connexin (Connexin) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/7-3-aminopyrrolidin-1-yl-1-2-4-difluorophenyl-6-fluoro-4-oxo-1-4-dihyd.html","7-(3-aminopyrrolidin-1-yl)-1-(2,4-difluorophenyl)-6-fluoro-4-oxo-1,4-dihydro-1,8-naphthyridine-3-carboxylic"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/pipemidic-acid.html","pipemidic acid"],["antibacterial/trovafloxacin.html","trovafloxacin"],["antifungal/mediomycin-a.html","mediomycin A"],["antifungal/mediomycin-b.html","mediomycin B"]]},{"id":"ARO:3000419","l":"quinolone resistance protein (qnr)","na":111,"nb":7,"a":[["ARO%3A3003844","mfd"],["ARO%3A3003035","mfpA"],["ARO%3A3002707","QnrA1"],["ARO%3A3002708","QnrA2"],["ARO%3A3002709","QnrA3"],["ARO%3A3002710","QnrA4"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"NCBITaxon:237561","l":"Candida albicans (strain SC5314 / ATCC MYA-2876)","na":48,"nb":7,"a":[["Pfam%3APF26023","Alanine--tRNA ligase domain"],["Pfam%3APF09757","Arb2-like domain"],["Pfam%3APF25026","Asd-4-like domain"],["Pfam%3APF07741","Brf1-like TBP-binding domain"],["Pfam%3APF11766","Agglutinin-like protein, N-terminal domain"],["Pfam%3APF16892","Chitin biosynthesis protein CHS5 N-terminus"]],"b":[["antibacterial/brefeldin-a.html","brefeldin A"],["antifungal/anidulafungin.html","anidulafungin"],["antifungal/caspofungin.html","caspofungin"],["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/micafungin.html","micafungin"]]},{"id":"CHEBI:87211","l":"","na":7,"nb":18,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.24","The Mycobacterial Porin (MBP) Family"],["TCDB%3A9.B.325","The Putative ABC4 (ABC4) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/dextrofloxacin.html","dextrofloxacin"],["antibacterial/difloxacin.html","difloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/fleroxacin.html","fleroxacin"],["antibacterial/gemifloxacin.html","gemifloxacin"]]},{"id":"ARO:3000384","l":"AcrAB-TolC","na":16,"nb":7,"a":[["ARO%3A3000384","AcrAB-TolC"],["ARO%3A3000702","acrR"],["ARO%3A3003374","Enterobacter aerogenes acrR with mutation conferring multidrug antibiotic resistance"],["ARO%3A3004108","Enterobacter cloacae rob"],["ARO%3A3003807","Escherichia coli AcrAB-TolC with AcrR mutation conferring resistance to ciprofloxacin, tetracycline, and ceftazidime"],["ARO%3A3003378","Escherichia coli AcrAB-TolC with MarR mutations conferring resistance to ciprofloxacin and tetracycline"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/tetracycline.html","tetracycline"],["antibacterial/tigecycline.html","tigecycline"],["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3000386","l":"MexAB-OprM","na":7,"nb":15,"a":[["ARO%3A3000831","CpxR"],["ARO%3A3000377","MexA"],["ARO%3A3000386","MexAB-OprM"],["ARO%3A3000378","MexB"],["ARO%3A3000506","MexR"],["ARO%3A3000819","nalD"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/azithromycin.html","azithromycin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3000103","l":"","na":12,"nb":7,"a":[["ARO%3A3003830","Aminocoumarin resistant alaS"],["ARO%3A3003840","aminocoumarin resistant cysB"],["ARO%3A3000479","aminocoumarin resistant gyrB"],["ARO%3A3000457","aminocoumarin resistant parE"],["ARO%3A3000480","aminocoumarin resistant parY"],["ARO%3A3003787","aminocoumarin self resistant parY"]],"b":[["antibacterial/chrysomycin-a.html","chrysomycin A"],["antibacterial/clorobiocin.html","clorobiocin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/declovanillobiocin.html","declovanillobiocin"],["antibacterial/isovanillobiocin.html","isovanillobiocin"],["antibacterial/novobiocin.html","novobiocin"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":11,"nb":7,"a":[["Pfam%3APF01721","Class II bacteriocin"],["Pfam%3APF13700","Domain of unknown function (DUF4158)"],["Pfam%3APF07478","D-ala D-ala ligase C-terminus"],["Pfam%3APF01820","D-ala D-ala ligase N-terminus"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"],["PROSITE%3APS00843","D-alanine--D-alanine ligase signature 1"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"UniProt:P0DTD1","l":"","na":11,"nb":7,"a":[["EC%3A3.4.22.69","SARS coronavirus main proteinase"],["IDPO%3A0000002","disorder"],["Pfam%3APF12379","Betacoronavirus replicase NSP3, N-terminal"],["ELM%3AELME000557","DEG_Cend_TRIM7_1"],["proteintraitsmech%3ABIOLIP_A1IB6","A1IB6-binding site"],["proteintraitsmech%3ABIOLIP_BJ6","BJ6-binding site"]],"b":[["antibacterial/3-6-diaminoacridine.html","3,6-diaminoacridine"],["antibacterial/anacardic-acid.html","anacardic acid"],["antibacterial/baicalein.html","baicalein"],["antibacterial/ebselen.html","ebselen"],["antibacterial/hexachlorophene.html","hexachlorophene"],["antifungal/disulfiram.html","disulfiram"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":7,"nb":7,"a":[["Pfam%3APF11766","Agglutinin-like protein, N-terminal domain"],["Pfam%3APF16856","Cell division control protein 4 dimerisation domain"],["Pfam%3APF18325","Fatty acid synthase subunit alpha Acyl carrier domain"],["Pfam%3APF18314","Fatty acid synthase type I helical domain"],["Pfam%3APF17828","N-terminal domain in fatty acid synthase subunit beta"],["Pfam%3APF05388","Carboxypeptidase Y pro-peptide"]],"b":[["antibacterial/brefeldin-a.html","brefeldin A"],["antifungal/anidulafungin.html","anidulafungin"],["antifungal/caspofungin.html","caspofungin"],["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/micafungin.html","micafungin"]]},{"id":"CHEBI:132124","l":"","na":91,"nb":6,"a":[["EC%3A1.1.5.10","D-2-hydroxyacid dehydrogenase (quinone)"],["EC%3A1.1.5.11","1-butanol dehydrogenase (quinone)"],["EC%3A1.1.5.12","D-lactate dehydrogenase (quinone)"],["EC%3A1.1.5.13","(S)-2-hydroxyglutarate dehydrogenase"],["EC%3A1.1.5.3","glycerol-3-phosphate dehydrogenase"],["EC%3A1.1.5.4","malate dehydrogenase (quinone)"]],"b":[["antiprotozoal/r-4-methoxydalbergione.html","(R)-4'-methoxydalbergione"],["antiviral/geldanamycin.html","geldanamycin"],["unspecified/auricin.html","auricin"],["unspecified/dutomycin.html","dutomycin"],["unspecified/herbimycin.html","herbimycin"],["unspecified/primin.html","primin"]]},{"id":"ARO:3000670","l":"","na":27,"nb":6,"a":[["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3004178","23S rRNA with mutation conferring resistance to pleuromutilin antibiotics"],["ARO%3A3004472","lsa-type ABC-F protein"],["ARO%3A3000300","lsaA"],["ARO%3A3003111","lsaB"],["ARO%3A3003112","lsaC"]],"b":[["antibacterial/azamulin.html","azamulin"],["antibacterial/lefamulin.html","lefamulin"],["antibacterial/pleuromutilin.html","pleuromutilin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/valnemulin.html","valnemulin"]]},{"id":"ARO:3005386","l":"","na":15,"nb":6,"a":[["ARO%3A3004284","antibiotic resistant fabG"],["ARO%3A3004270","antibiotic resistant fabI"],["ARO%3A3000309","emrD"],["ARO%3A3004049","Escherichia coli fabG mutations conferring resistance to triclosan"],["ARO%3A3004045","Escherichia coli fabI mutations conferring resistance to isoniazid and triclosan"],["ARO%3A3004335","Escherichia coli gyrA with mutation conferring resistance to triclosan"]],"b":[["antibacterial/3-6-diaminoacridine.html","3,6-diaminoacridine"],["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"],["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/triclosan.html","triclosan"],["biocide/acriflavine.html","acriflavine"],["biocide/thiacalixarene-derivatives.html","thiacalixarene derivatives"]]},{"id":"ARO:3000797","l":"MexCD-OprJ","na":6,"nb":7,"a":[["ARO%3A3000797","MexCD-OprJ"],["ARO%3A3004061","MexCD-OprJ with type A NfxB mutation"],["ARO%3A3004062","MexCD-OprJ with type B NfxB mutation"],["ARO%3A3000820","NfxB"],["ARO%3A3004059","Type A NfxB"],["ARO%3A3004060","Type B NfxB"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/gentamicin-c.html","gentamicin C"],["antibacterial/novobiocin.html","novobiocin"],["antibacterial/ofloxacin.html","ofloxacin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"CHEBI:36836","l":"","na":7,"nb":6,"a":[["EC%3A1.1.1.270","3beta-hydroxysteroid 3-dehydrogenase"],["EC%3A2.3.1.77","triacylglycerol--sterol O-acyltransferase"],["RHEA%3A16897","a 3beta-hydroxysteroid + a triacylglycerol = a 3beta-hydroxysteroid ester + a diacylglycerol"],["RHEA%3A78195","a 3beta-hydroxysteroid + a triacylglycerol = a 3beta-hydroxysteroid ester + a 1,2-diacylglycerol"],["RHEA%3A78199","a 3beta-hydroxysteroid + a triacylglycerol = a 3beta-hydroxysteroid ester + a 1,3-diacylglycerol"],["RHEA%3A81603","a 3beta-hydroxysteroid + NAD(+) = a 3-oxosteroid + NADH + H(+)"]],"b":[["antibacterial/5%CE%B1-cholesta-24-en-3%CE%B2-20%CE%B2-diol-23-one.html","5α-cholesta-24-en-3β,20β-diol-23-one"],["antibacterial/5%CE%B1-cholesta-9-11-en-3%CE%B2-20%CE%B2-diol.html","5α-cholesta-9(11)-en-3β, 20β-diol"],["antifungal/9%CE%BE-14%CE%BE-25s-cholestane-3%CE%B2-4%CE%B2-6%CE%B2-7%CE%B1-8-15%CE%B1-16%CE%B2-26-octol.html","(9ξ,14ξ,25S)-cholestane-3β,4β,6β,7α,8,15α,16β,26-octol"],["antifungal/fr171456.html","FR171456"],["antifungal/sclerodol-b.html","sclerodol B"],["antiprotozoal/hellebrigenin.html","hellebrigenin"]]},{"id":"NCBITaxon:559292","l":"Saccharomyces cerevisiae (strain ATCC 204508 / S288c)","na":14515,"nb":5,"a":[["EC%3A1.14.18.-","With another compound as one donor, and incorporation of one atom of oxygen"],["EC%3A1.16.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.18.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.5.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.8.-.-","Acting on a sulfur group of donors"]],"b":[["antifungal/anidulafungin.html","anidulafungin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/caspofungin.html","caspofungin"],["antifungal/cycloheximide.html","cycloheximide"],["antifungal/micafungin.html","micafungin"]]},{"id":"ARO:0000017","l":"","na":104,"nb":5,"a":[["ARO%3A3005099","23S rRNA (adenine(2058)-N(6))-methyltransferase Erm(A)"],["ARO%3A3004187","23S rRNA with mutation conferring resistance to lincosamide antibiotics"],["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3000772","AdeIJK"],["ARO%3A3000202","Cfr 23S ribosomal RNA methyltransferase"],["ARO%3A3004649","cfr(B)"]],"b":[["antibacterial/celesticetin.html","celesticetin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/iboxamycin.html","iboxamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/pirlimycin.html","pirlimycin"]]},{"id":"ARO:3000157","l":"","na":45,"nb":5,"a":[["ARO%3A3002846","arr-1"],["ARO%3A3002847","arr-2"],["ARO%3A3002848","arr-3"],["ARO%3A3002849","arr-4"],["ARO%3A3002850","arr-5"],["ARO%3A3002852","arr-7"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifalazil.html","rifalazil"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"NCBITaxon:330879","l":"Aspergillus fumigatus (strain ATCC MYA-4609 / CBS 101355 / FGSC A1100 / Af293)","na":34,"nb":5,"a":[["Pfam%3APF22624","4'-phosphopantetheinyl transferase, N-terminal"],["Pfam%3APF13523","Acetyltransferase (GNAT) domain"],["Pfam%3APF28338","AclK C-terminal domain"],["Pfam%3APF23297","Highly reducing polyketide synthase sdgA, C-terminal ACP domain"],["Pfam%3APF11001","YDR124W-like, helical bundle domain"],["Pfam%3APF25312","Allergen Asp f 4-like domain"]],"b":[["antibacterial/fumagillin.html","fumagillin"],["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/terbinafine.html","terbinafine"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"ARO:3004115","l":"","na":20,"nb":5,"a":[["ARO%3A3007056","Antibiotic resistant Helicobacter pylori nitroreductase"],["ARO%3A3007656","antibiotic resistant Mycobacterium tuberculosis nitroreductase"],["ARO%3A3007671","Clostridioides difficile nimB"],["ARO%3A3007851","delamanid-resistant fgd1"],["ARO%3A3007059","Helicobacter pylori frxA mutation conferring resistance to metronidazole"],["ARO%3A3007055","Helicobacter pylori rdxA mutation conferring resistance to metronidazole"]],"b":[["antibacterial/delamanid.html","delamanid"],["antibacterial/metronidazole.html","metronidazole"],["antibacterial/ornidazole.html","ornidazole"],["antibacterial/pretomanid.html","pretomanid"],["antibacterial/tinidazole.html","tinidazole"]]},{"id":"NCBITaxon:485","l":"Neisseria gonorrhoeae","na":13,"nb":5,"a":[["Pfam%3APF25860","Cryptic plasmid protein A"],["Pfam%3APF12852","Cupin"],["Pfam%3APF17845","FbpC C-terminal regulatory nucleotide binding domain"],["Pfam%3APF22443","FbpC-like, regulatory domain"],["Pfam%3APF18053","DNA gyrase B subunit insert domain"],["Pfam%3APF25885","EMRA, alpha-helical hairpin domain"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"CHEBI:46761","l":"","na":12,"nb":5,"a":[["MCSA%3A396","aspartic peptidase"],["MCSA%3A815","caspase-3"],["MCSA%3A818","caspase-8"],["MCSA%3A816","caspase-9"],["MCSA%3A814","cathepsin S"],["MCSA%3A912","endopeptidase Clp"]],"b":[["antifungal/gliotoxin.html","gliotoxin"],["antiprotozoal/wll-vs.html","WLL-vs"],["antiviral/ombitasvir.html","ombitasvir"],["unspecified/bacilysin.html","bacilysin"],["unspecified/tabtoxin.html","tabtoxin"]]},{"id":"ARO:3007500","l":"","na":5,"nb":11,"a":[["ARO%3A3007666","Candida spp. cyp51A1 with mutations conferring resistance to triazoles and imidazole antibiotics"],["ARO%3A3007640","Candida spp. pleiotropic drug resistance factor 1"],["ARO%3A3007563","Candida spp. TAC1 with mutations conferring resistance to azole antibiotics"],["ARO%3A3007667","imidazole-resistant fungal cytochrome P450 enzyme"],["ARO%3A3007555","Zn2Cys6 transcription factors"]],"b":[["antibacterial/imazalil.html","imazalil"],["antifungal/bifonazole.html","bifonazole"],["antifungal/clotrimazole.html","clotrimazole"],["antifungal/econazole.html","econazole"],["antifungal/hexaconazole.html","hexaconazole"],["antifungal/ketoconazole.html","ketoconazole"]]},{"id":"ARO:3001815","l":"ACC-1","na":5,"nb":9,"a":[["ARO%3A3001815","ACC-1"],["ARO%3A3006228","ACC-1a"],["ARO%3A3006229","ACC-1b"],["ARO%3A3006230","ACC-1c"],["ARO%3A3006231","ACC-1d"]],"b":[["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/cefotetan.html","cefotetan"],["antibacterial/cefpirome.html","cefpirome"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"NCBITaxon:229533","l":"Fusarium graminearum PH-1","na":8,"nb":5,"a":[["Pfam%3APF18388","Atg29 N-terminal domain"],["Pfam%3APF27599","CcsR C-terminal domain"],["Pfam%3APF07110","EthD domain"],["Pfam%3APF11700","Vacuole effluxer Atg22 like"],["Pfam%3APF28504","Gramillins biosynthetic cluster protein GRA5"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"]],"b":[["antifungal/carbendazim.html","carbendazim"],["antifungal/difenoconazole.html","difenoconazole"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/prochloraz.html","prochloraz"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"ARO:3000491","l":"acrD","na":7,"nb":5,"a":[["ARO%3A3000491","acrD"],["ARO%3A3000828","baeR"],["ARO%3A3000829","baeS"],["ARO%3A3000531","baeSR"],["ARO%3A3000830","cpxA"],["ARO%3A3000524","cpxAR"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":5,"nb":6,"a":[["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF09711","CRISPR-associated protein (Cas_Csn2)"],["Pfam%3APF06308","23S rRNA methylastransferase leader peptide (ErmCL)"],["MCSA%3A640","kanamycin kinase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"NCBITaxon:5518","l":"Fusarium graminearum","na":5,"nb":5,"a":[["Pfam%3APF09118","Galactose oxidase-like, Early set domain"],["Pfam%3APF07250","Glyoxal oxidase N-terminus"],["MCSA%3A322","galactose oxidiase"],["TED%3AAF-A0A2H3FY84-F1-model_v4_TED03","TED novel fold AF-A0A2H3FY84-F1-model_v4_TED03"],["TED%3AAF-A0A2H3G191-F1-model_v4_TED01","TED novel fold AF-A0A2H3G191-F1-model_v4_TED01"]],"b":[["antifungal/carbendazim.html","carbendazim"],["antifungal/difenoconazole.html","difenoconazole"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/prochloraz.html","prochloraz"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"ARO:0000004","l":"","na":1345,"nb":4,"a":[["ARO%3A3001815","ACC-1"],["ARO%3A3006228","ACC-1a"],["ARO%3A3006229","ACC-1b"],["ARO%3A3006230","ACC-1c"],["ARO%3A3006231","ACC-1d"],["ARO%3A3001816","ACC-2"]],"b":[["antibacterial/aztreonam.html","aztreonam"],["antibacterial/bal30072.html","BAL30072"],["antibacterial/carumonam.html","carumonam"],["antibacterial/lys228.html","LYS228"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":150,"nb":4,"a":[["Pfam%3APF09156","Anthrax toxin lethal factor, middle domain"],["Pfam%3APF08401","N-terminal domain of anti-restriction factor ArdC"],["Pfam%3APF07737","Anthrax toxin lethal factor, N- and C-terminal domain"],["Pfam%3APF27053","Bacillus anthracis plasmid pXO2 protein 26"],["Pfam%3APF13205","Bacterial Ig-like domain"],["Pfam%3APF17475","Clostridial binary toxin B/anthrax toxin PA domain 2"]],"b":[["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/trimethoprim.html","trimethoprim"],["antiprotozoal/suramin.html","suramin"],["antiviral/tilorone.html","tilorone"]]},{"id":"CHEBI:24646","l":"","na":88,"nb":4,"a":[["EC%3A1.1.5.10","D-2-hydroxyacid dehydrogenase (quinone)"],["EC%3A1.1.5.11","1-butanol dehydrogenase (quinone)"],["EC%3A1.1.5.12","D-lactate dehydrogenase (quinone)"],["EC%3A1.1.5.13","(S)-2-hydroxyglutarate dehydrogenase"],["EC%3A1.1.5.3","glycerol-3-phosphate dehydrogenase"],["EC%3A1.1.5.4","malate dehydrogenase (quinone)"]],"b":[["antibacterial/2-5-dihydroxy-3-methanesulfinylbenzyl-alcohol.html","2,5-dihydroxy-3-methanesulfinylbenzyl alcohol"],["antibacterial/cytotrienin-a.html","cytotrienin A"],["antibacterial/mygalin.html","mygalin"],["unspecified/trierixin.html","trierixin"]]},{"id":"CHEBI:47622","l":"","na":4,"nb":84,"a":[["EC%3A2.3.1.84","alcohol O-acetyltransferase"],["EC%3A3.1.1.6","acetylesterase"],["RHEA%3A12957","an acetyl ester + H2O = an aliphatic alcohol + acetate + H(+)"],["RHEA%3A17229","an aliphatic alcohol + acetyl-CoA = an acetyl ester + CoA"]],"b":[["antibacterial/3-5-di-o-acetyl-1-o-5%CE%B2-8%CE%B1-9%CE%B2-10%CE%B1-18-oxokaur-16-en-18-yl-%CE%B2-l-arabinofur.html","3,5-di-O-acetyl-1-O-[(5β,8α,9β,10α)-18-oxokaur-16-en-18-yl]-β-L-arabinofuranose"],["antibacterial/6%CE%B2-16%CE%B2-diacetoxy-25-hydroxy-3-7-dioxy-29-nordammara-1-17-20-dien-21-oi.html","6β,16β-diacetoxy-25-hydroxy-3,7-dioxy-29-nordammara-1,17(20)-dien-21-oic acid"],["antibacterial/caminoside-a.html","caminoside A"],["antibacterial/geranylgeranyl-acetate.html","geranylgeranyl acetate"],["antibacterial/helvolic-acid-methyl-ester.html","helvolic acid methyl ester"],["antibacterial/helvolic-acid.html","helvolic acid"]]},{"id":"CHEBI:59869","l":"","na":68,"nb":4,"a":[["EC%3A1.4.1.5","L-amino-acid dehydrogenase"],["EC%3A1.4.3.2","L-amino-acid oxidase"],["EC%3A1.5.3.2","N-methyl-L-amino-acid oxidase"],["EC%3A2.6.1.12","alanine--oxo-acid transaminase"],["EC%3A2.6.1.13","ornithine aminotransferase"],["EC%3A2.6.1.14","asparagine--oxo-acid transaminase"]],"b":[["antibacterial/l-%CE%B2-ethynylserine-zwitterion.html","L-β-ethynylserine zwitterion"],["unspecified/alliin-zwitterion.html","alliin zwitterion"],["unspecified/anticapsin-zwitterion.html","anticapsin zwitterion"],["unspecified/l-propargylglycine-zwitterion.html","L-propargylglycine zwitterion"]]},{"id":"ARO:3000387","l":"","na":58,"nb":4,"a":[["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3004188","23S rRNA with mutation conferring resistance to phenicol antibiotics"],["ARO%3A3004451","Agrobacterium fabrum chloramphenicol acetyltransferase"],["ARO%3A3004452","Alkalihalobacillus clausii chloramphenicol acetyltransferase"],["ARO%3A3002672","Bacillus pumilus cat86"],["ARO%3A3004454","Campylobacter coli chloramphenicol acetyltransferase"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"CHEBI:33308","l":"","na":4,"nb":43,"a":[["EC%3A3.1.1.1","carboxylesterase"],["RHEA%3A21164","a carboxylic ester + H2O = an alcohol + a carboxylate + H(+)"],["MCSA%3A631","cutinase"],["MCSA%3A556","esterase (estA)"]],"b":[["antibacterial/bacilysocin.html","bacilysocin"],["antibacterial/cefpodoxime-proxetil.html","cefpodoxime proxetil"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/fidaxomicin.html","fidaxomicin"],["antibacterial/fluquinometoate.html","fluquinometoate"],["antibacterial/fumagillin.html","fumagillin"]]},{"id":"ARO:3000079","l":"","na":21,"nb":4,"a":[["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3004172","23S rRNA with mutation conferring resistance to oxazolidinone antibiotics"],["ARO%3A3000202","Cfr 23S ribosomal RNA methyltransferase"],["ARO%3A3004649","cfr(B)"],["ARO%3A3004609","cfr(B) Group"],["ARO%3A3004610","cfr(C) Group"]],"b":[["antibacterial/contezolid.html","contezolid"],["antibacterial/linezolid.html","linezolid"],["antibacterial/tbi-223.html","TBI-223"],["antibacterial/tedizolid.html","tedizolid"]]},{"id":"CHEBI:22315","l":"alkaloid","na":4,"nb":21,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antibacterial/14-norpseurotin-a.html","14-norpseurotin A"],["antibacterial/5-bromo-8-methoxy-1-methyl-%CE%B2-carboline.html","5-bromo-8-methoxy-1-methyl-β-carboline"],["antibacterial/undecylprodigiosin.html","undecylprodigiosin"],["antifungal/feruloylagmatine.html","feruloylagmatine"],["antifungal/pyrrolnitrin.html","pyrrolnitrin"],["antifungal/sampangine.html","sampangine"]]},{"id":"CHEBI:23765","l":"","na":4,"nb":19,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.60","The Organo Anion Transporter (OAT) Family"]],"b":[["antibacterial/2-heptyl-4-quinolone.html","2-heptyl-4-quinolone"],["antibacterial/aurachin-c.html","aurachin C"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/difloxacin.html","difloxacin"],["antibacterial/e-1-hydroxy-2-non-1-en-1-yl-quinolin-4-one.html","(E)-1-hydroxy-2-(non-1-en-1-yl)quinolin-4-one"],["antibacterial/enrofloxacin.html","enrofloxacin"]]},{"id":"CHEBI:25106","l":"","na":4,"nb":18,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.28","The Bile Acid:Na+ Symporter (BASS) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/5e-7-oxozeaenol.html","5E-7-oxozeaenol"],["antibacterial/5z-7-oxozeaenol.html","5Z-7-oxozeaenol"],["antibacterial/bromophycolide-a.html","bromophycolide A"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/pristinamycin-iia.html","pristinamycin IIA"]]},{"id":"ARO:3003032","l":"MexXY-OprM","na":4,"nb":11,"a":[["ARO%3A3003032","MexXY-OprM"],["ARO%3A3005068","ParR"],["ARO%3A3005066","parRS"],["ARO%3A3005067","ParS"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/gentamicin-c.html","gentamicin C"],["antibacterial/meropenem.html","meropenem"]]},{"id":"CHEBI:33575","l":"carboxylic acid","na":4,"nb":11,"a":[["MCSA%3A105","aldehyde dehydrogenase (FAD-independent)"],["MCSA%3A803","aldehyde dehydrogenase (NAD+) (class 2)"],["MCSA%3A556","esterase (estA)"],["MCSA%3A755","lysophospholipase"]],"b":[["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefatrizine.html","cefatrizine"],["antibacterial/cefazedone.html","cefazedone"],["antibacterial/cefcapene.html","cefcapene"],["antibacterial/cefditoren.html","cefditoren"],["antibacterial/cefiderocol.html","cefiderocol"]]},{"id":"ARO:3000453","l":"streptogramin vat acetyltransferase","na":9,"nb":4,"a":[["ARO%3A3000453","streptogramin vat acetyltransferase"],["ARO%3A3002840","vatA"],["ARO%3A3002841","vatB"],["ARO%3A3002842","vatC"],["ARO%3A3002843","vatD"],["ARO%3A3002844","vatE"]],"b":[["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/madumycin-ii.html","madumycin II"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"NCBITaxon:746128","l":"Aspergillus fumigatus","na":9,"nb":4,"a":[["IEDB%3A174450","epitope EALQYFALEAYAFDI"],["IEDB%3A174452","epitope EAYAFDIAAPGVGCA"],["IEDB%3A174517","epitope GNRPTMEAVGAYDVI"],["IEDB%3A174535","epitope GYDEVIALAKSNGTE"],["IEDB%3A174536","epitope HFADGYDEVIALAKS"],["IEDB%3A174757","epitope TMEAVGAYDVIVNGD"]],"b":[["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/terbinafine.html","terbinafine"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":9,"nb":4,"a":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF25954","CusB-like, beta-barrel domain"],["Pfam%3APF13438","Domain of unknown function (DUF4113)"],["Pfam%3APF03767","HAD superfamily, subfamily IIIB (Acid phosphatase)"],["Pfam%3APF03496","ADP-ribosyltransferase exoenzyme"]],"b":[["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3000390","l":"rifampin ADP-ribosyltransferase (Arr)","na":8,"nb":4,"a":[["ARO%3A3002846","arr-1"],["ARO%3A3002847","arr-2"],["ARO%3A3002848","arr-3"],["ARO%3A3002849","arr-4"],["ARO%3A3002850","arr-5"],["ARO%3A3002852","arr-7"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3000788","l":"MdtEF-TolC","na":6,"nb":4,"a":[["ARO%3A3000518","CRP"],["ARO%3A3000832","evgA"],["ARO%3A3000515","evgSA"],["ARO%3A3003838","gadW"],["ARO%3A3000508","gadX"],["ARO%3A3000788","MdtEF-TolC"]],"b":[["antibacterial/cloxacillin.html","cloxacillin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/oxacillin.html","oxacillin"]]},{"id":"ARO:3004116","l":"","na":4,"nb":5,"a":[["ARO%3A3003754","antibiotic resistant nfsA"],["ARO%3A3003755","Antibiotic resistant nfsB"],["ARO%3A3003751","Escherichia coli nfsA mutations conferring resistance to nitrofurantoin"],["ARO%3A3003756","Escherichia coli nfsB with mutation conferring resistance to nitrofurantoin"]],"b":[["antibacterial/furagin.html","furagin"],["antibacterial/furazolidone.html","furazolidone"],["antibacterial/nifuratel.html","nifuratel"],["antibacterial/nifuroxazide.html","nifuroxazide"],["antibacterial/nitrofurantoin.html","nitrofurantoin"]]},{"id":"ARO:3007496","l":"","na":4,"nb":4,"a":[["ARO%3A3007548","Candida spp. FKS2 with mutations conferring resistance to echinocandin antibiotics"],["ARO%3A3007664","Candida spp. High Osmolarity Glycerol 1 conferring resistance to caspofungin via absence"],["ARO%3A3007546","echinocandin antibiotic-resistant beta-1,3-D-glucan synthase"],["ARO%3A3007663","stress-activated protein kinases"]],"b":[["antibacterial/arborcandin-c.html","arborcandin C"],["antifungal/anidulafungin.html","anidulafungin"],["antifungal/caspofungin.html","caspofungin"],["antifungal/micafungin.html","micafungin"]]},{"id":"ARO:3000171","l":"","na":60,"nb":3,"a":[["ARO%3A3005354","dfr22"],["ARO%3A3002854","dfrA1"],["ARO%3A3003011","dfrA10"],["ARO%3A3002858","dfrA12"],["ARO%3A3003012","dfrA13"],["ARO%3A3002859","dfrA14"]],"b":[["antibacterial/brodimoprim.html","brodimoprim"],["antibacterial/tetroxoprim.html","tetroxoprim"],["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"NCBITaxon:451804","l":"Aspergillus fumigatus (strain CBS 144.89 / FGSC A1163 / CEA10)","na":28,"nb":3,"a":[["Pfam%3APF28347","ACE1 small beta sheet domain"],["Pfam%3APF28329","Zinc finger transcription factor ace1 N-terminal domain"],["Pfam%3APF11001","YDR124W-like, helical bundle domain"],["Pfam%3APF28457","Probable beta-glucosidase btgE N-terminal domain"],["Pfam%3APF13373","DSC E3 ubiquitin ligase complex subunit 3, C-terminal domain"],["Pfam%3APF10302","DSC E3 ubiquitin ligase complex subunit 3, ubiquitin-like domain"]],"b":[["antifungal/itraconazole.html","itraconazole"],["antifungal/terbinafine.html","terbinafine"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":18,"nb":3,"a":[["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["Pfam%3APF14562","Restriction endonuclease BglI"],["Pfam%3APF09195","Restriction endonuclease BglII/BglIII"],["Pfam%3APF09208","Restriction endonuclease MspI"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3004598","l":"Klebsiella pneumoniae KpnGH-TolC","na":3,"nb":17,"a":[["ARO%3A3004588","Klebsiella pneumoniae KpnG"],["ARO%3A3004598","Klebsiella pneumoniae KpnGH-TolC"],["ARO%3A3004597","Klebsiella pneumoniae KpnH"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":15,"nb":3,"a":[["Pfam%3APF07832","Cfr10I/Bse634I restriction endonuclease"],["Pfam%3APF22348","Colicin-A N-terminal domain"],["Pfam%3APF01024","Colicin pore forming domain"],["Pfam%3APF18427","DD-reactivating factor swiveling domain"],["Pfam%3APF02286","Dehydratase large subunit"],["Pfam%3APF02288","Dehydratase medium subunit"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"CHEBI:35924","l":"","na":14,"nb":3,"a":[["EC%3A1.11.1.24","thioredoxin-dependent peroxiredoxin"],["EC%3A1.11.1.25","glutaredoxin-dependent peroxiredoxin"],["EC%3A1.11.1.26","NADH-dependent peroxiredoxin"],["EC%3A1.11.1.27","glutathione-dependent peroxiredoxin"],["EC%3A1.11.1.28","lipoyl-dependent peroxiredoxin"],["EC%3A1.11.1.29","mycoredoxin-dependent peroxiredoxin"]],"b":[["antiprotozoal/10%CE%B1-hydroperoxy-guaia-1-11-diene.html","10α-hydroperoxy-guaia-1,11-diene"],["antiprotozoal/1r-4s-1-hydroperoxy-p-menth-2-en-8-ol-acetate.html","(1R,4S)-1-hydroperoxy-p-menth-2-en-8-ol acetate"],["antiprotozoal/1%CE%B1-hydroperoxy-guaia-10-15-11-diene.html","1α-hydroperoxy-guaia-10(15),11-diene"]]},{"id":"UniProt:P38631","l":"","na":13,"nb":3,"a":[["ComplexPortal%3ACPX-1812","1,3-beta-D-glucan synthase complex, FKS1-RHO1 variant"],["GO%3A0000148","1,3-beta-D-glucan synthase complex"],["GO%3A0030479","actin cortical patch"],["GO%3A0003843","1,3-beta-D-glucan synthase activity"],["GO%3A0006075","(1->3)-beta-D-glucan biosynthetic process"],["GO%3A0030476","ascospore wall assembly"]],"b":[["antifungal/anidulafungin.html","anidulafungin"],["antifungal/caspofungin.html","caspofungin"],["antifungal/micafungin.html","micafungin"]]},{"id":"ARO:3004585","l":"Klebsiella pneumoniae KpnEF","na":3,"nb":11,"a":[["ARO%3A3004580","Klebsiella pneumoniae KpnE"],["ARO%3A3004585","Klebsiella pneumoniae KpnEF"],["ARO%3A3004583","Klebsiella pneumoniae KpnF"]],"b":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"],["antibacterial/cefepime.html","cefepime"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"CHEBI:33838","l":"","na":3,"nb":10,"a":[["RHEA%3A22140","a nucleoside 5'-phosphate + H2O = a nucleoside + phosphate"],["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"],["TCDB%3A9.A.72","The Putative Nucleoside Efflux Transporter (NET) Family"]],"b":[["unspecified/tunicamycin-a0.html","tunicamycin A0"],["unspecified/tunicamycin-a1.html","tunicamycin A1"],["unspecified/tunicamycin-a2.html","tunicamycin A2"],["unspecified/tunicamycin-b1.html","tunicamycin B1"],["unspecified/tunicamycin-b2.html","tunicamycin B2"],["unspecified/tunicamycin-b3.html","tunicamycin B3"]]},{"id":"CHEBI:55465","l":"","na":3,"nb":8,"a":[["EC%3A2.1.1.150","isoflavone 7-O-methyltransferase"],["RHEA%3A17933","a 7-hydroxyisoflavone + S-adenosyl-L-methionine = a 7-methoxyisoflavone + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A56344","a 7-hydroxyisoflavone + UDP-alpha-D-glucose = a 7-hydroxyisoflavone 7-O-beta-D-glucoside + UDP + H(+)"]],"b":[["antibacterial/5-7-4-trihydroxy-6-8-diprenylisoflavone.html","5,7,4'-trihydroxy-6,8-diprenylisoflavone"],["antibacterial/dihydrolicoisoflavone-a.html","dihydrolicoisoflavone A"],["antifungal/wighteone.html","wighteone"],["antiprotozoal/5-7-3-4-tetrahydroxy-2-3-3-dimethylallyl-isoflavone.html","5,7,3',4'-tetrahydroxy-2'-(3,3-dimethylallyl)isoflavone"],["antiprotozoal/7-4-dihydroxy-3-methoxyisoflavone.html","7,4'-dihydroxy-3'-methoxyisoflavone"],["antiprotozoal/pseudobaptigenin.html","pseudobaptigenin"]]},{"id":"CHEBI:17580","l":"linalool","na":6,"nb":3,"a":[["EC%3A1.14.14.84","linalool 8-monooxygenase"],["EC%3A5.4.4.8","linalool isomerase"],["RHEA%3A68708","(2E)-geranyl diphosphate + H2O = linalool + diphosphate"],["RHEA%3A32635","linalool + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = (6E)-8-oxolinalool + 2 oxidized [NADPH--hemoprotein reductase] + 3 H2O + 2 H(+)"],["RHEA%3A54656","linalool = (2E)-geraniol"],["RHEA%3A32503","linalool + reduced [NADPH--hemoprotein reductase] + O2 = (6E)-8-hydroxylinalool + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["unspecified/linalool.html","linalool"],["unspecified/r-linalool.html","(R)-linalool"],["unspecified/s-linalool.html","(S)-linalool"]]},{"id":"CHEBI:20156","l":"","na":5,"nb":3,"a":[["EC%3A1.17.99.11","3-oxo-Delta(1)-steroid hydratase/dehydrogenase"],["EC%3A1.3.99.4","3-oxosteroid 1-dehydrogenase"],["RHEA%3A65848","a 3-oxo-Delta(1)-steroid + A + H2O = a steroid 1,3-dione + AH2"],["RHEA%3A65852","a 3-oxo-Delta(1)-steroid + H2O = a 1-hydroxy-3-oxo steroid"],["RHEA%3A13329","a 3-oxosteroid + A = a 3-oxo-Delta(1)-steroid + AH2"]],"b":[["antibacterial/6%CE%B2-16%CE%B2-diacetoxy-25-hydroxy-3-7-dioxy-29-nordammara-1-17-20-dien-21-oi.html","6β,16β-diacetoxy-25-hydroxy-3,7-dioxy-29-nordammara-1,17(20)-dien-21-oic acid"],["antibacterial/helvolic-acid-methyl-ester.html","helvolic acid methyl ester"],["antibacterial/helvolic-acid.html","helvolic acid"]]},{"id":"CHEBI:25697","l":"","na":3,"nb":5,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antibacterial/chelerythrine.html","chelerythrine"],["antifungal/isavuconazonium.html","isavuconazonium"],["antiprotozoal/nostocarboline.html","nostocarboline"],["antiprotozoal/quinine-1.html","quinine(1+)"],["antiviral/meso-tetrakis-n-methyl-4-pyridyl-porphine-4.html","meso-tetrakis(N-methyl-4-pyridyl)porphine(4+)"]]},{"id":"CHEBI:38083","l":"","na":5,"nb":3,"a":[["TCDB%3A2.A.69","The Auxin Efflux Carrier (AEC) Family"],["TCDB%3A2.A.70","The Malonate:Na+ Symporter (MSS) Family"],["TCDB%3A2.A.101","The Malonate Uptake (MatC) Family (Formerly UIT1)"],["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["TCDB%3A2.A.56","The Tripartite ATP-independent Periplasmic Transporter (TRAP-T) Family"]],"b":[["antibacterial/6%CE%B1-malonyloxymanoyl-oxide.html","6α-malonyloxymanoyl oxide"],["antifungal/brasilinolide-a.html","brasilinolide A"],["antifungal/isoprothiolane.html","isoprothiolane"]]},{"id":"NCBITaxon:274","l":"Thermus thermophilus","na":5,"nb":3,"a":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF01861","Branched-chain polyamine synthase A C-terminal domain"],["Pfam%3APF07736","Chorismate mutase type I"],["MCSA%3A479","4-alpha-glucanotransferase"],["MCSA%3A539","phenylalanine---tRNA ligase"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"],["antibacterial/streptomycin.html","streptomycin"],["unspecified/streptolydigin.html","streptolydigin"]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":3,"nb":5,"a":[["Pfam%3APF07833","Copper amine oxidase N-terminal domain"],["MCSA%3A87","urease"],["TED%3AAF-A0A447L715-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A447L715-F1-model_v4_TED02"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3000391","l":"norA","na":4,"nb":3,"a":[["ARO%3A3000838","arlR"],["ARO%3A3000547","arlRS"],["ARO%3A3000839","arlS"],["ARO%3A3000391","norA"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"],["biocide/acriflavine.html","acriflavine"]]},{"id":"NCBITaxon:1213859","l":"Colletotrichum fructicola (strain Nara gc5)","na":4,"nb":3,"a":[["TED%3AAF-A0A7J6IJ15-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7J6IJ15-F1-model_v4_TED03"],["TED%3AAF-A0A7J6IKD8-F1-model_v4_TED01","TED novel fold AF-A0A7J6IKD8-F1-model_v4_TED01"],["TED%3AAF-L2G012-F1-model_v4_TED02","TED novel fold AF-L2G012-F1-model_v4_TED02"],["TED%3AAF-L2G364-F1-model_v4_TED02","TED novel fold AF-L2G364-F1-model_v4_TED02"]],"b":[["antifungal/difenoconazole.html","difenoconazole"],["antifungal/prochloraz.html","prochloraz"],["antifungal/propiconazole.html","propiconazole"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":3,"nb":4,"a":[["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF08130","Type A lantibiotic family"],["Pfam%3APF04738","Lantibiotic dehydratase, N terminus"]],"b":[["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/oxacillin.html","oxacillin"]]},{"id":"CHEBI:3638","l":"chloroquine","na":3,"nb":3,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antiprotozoal/chloroquine.html","chloroquine"],["antiprotozoal/r-chloroquine.html","(R)-chloroquine"],["antiprotozoal/s-chloroquine.html","(S)-chloroquine"]]},{"id":"CHEBI:75568","l":"1-monolinolein","na":3,"nb":3,"a":[["RHEA%3A38131","1-(9Z,12Z-octadecadienoyl)-glycerol + (9Z)-octadecenoyl-CoA = 1-(9Z,12Z-octadecadienoyl)-2-(9Z-octadecenoyl)-glycerol + CoA"],["RHEA%3A77591","1-(9Z,12Z-octadecadienoyl)-glycerol + (9Z)-octadecenoyl-CoA = 1-(9Z-octadecenoyl)-3-(9Z,12Z-octadecadienoyl)-glycerol + CoA"],["RHEA%3A48428","1-(9Z,12Z-octadecadienoyl)-glycerol + H2O = (9Z,12Z)-octadecadienoate + glycerol + H(+)"]],"b":[["antiviral/1-linoleoyl-sn-glycerol.html","1-linoleoyl-sn-glycerol"],["antiviral/1-monolinolein.html","1-monolinolein"],["antiviral/3-linoleoyl-sn-glycerol.html","3-linoleoyl-sn-glycerol"]]},{"id":"NCBITaxon:665079","l":"Sclerotinia sclerotiorum (strain ATCC 18683 / 1980 / Ss-1)","na":3,"nb":3,"a":[["TED%3AAF-A0A1D9PSD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1D9PSD6-F1-model_v4_TED01"],["TED%3AAF-A7EZS3-F1-model_v4_TED02","TED highly-symmetric fold AF-A7EZS3-F1-model_v4_TED02"],["TED%3AAF-A0A1D9QKV1-F1-model_v4_TED02","TED novel fold AF-A0A1D9QKV1-F1-model_v4_TED02"]],"b":[["antifungal/carboxin.html","carboxin"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/iprodione.html","iprodione"]]},{"id":"UniProt:P04585","l":"","na":3,"nb":3,"a":[["MCSA%3A175","HIV-1 retropepsin"],["proteintraitsmech%3ABIOLIP_E9B","E9B-binding site"],["proteintraitsmech%3ABIOLIP_TNF","TNF-binding site"]],"b":[["antiviral/delavirdine.html","delavirdine"],["antiviral/emivirine.html","emivirine"],["antiviral/nevirapine.html","nevirapine"]]},{"id":"CHEBI:35718","l":"","na":2,"nb":514,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/1-2-dodecanediol.html","1,2-dodecanediol"],["antibacterial/1-dodecylguanidine-acetate.html","1-dodecylguanidine acetate"],["antibacterial/1-dodecylguanidine.html","1-dodecylguanidine"],["antibacterial/5-bromo-8-methoxy-1-methyl-%CE%B2-carboline.html","5-bromo-8-methoxy-1-methyl-β-carboline"],["antibacterial/5-chloro-7-iodoquinolin-8-ol.html","5-chloro-7-iodoquinolin-8-ol"],["antibacterial/6-methoxy-2-benzoxazolinone.html","6-methoxy-2-benzoxazolinone"]]},{"id":"CHEBI:24127","l":"","na":2,"nb":155,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/allyl-alcohol.html","allyl alcohol"],["antibacterial/dehydroacetic-acid.html","dehydroacetic acid"],["antibacterial/hexachlorophene.html","hexachlorophene"],["antibacterial/methylene-bis-thiocyanate.html","methylene bis(thiocyanate)"],["antibacterial/streptomycin.html","streptomycin"],["antibacterial/tecloftalam.html","tecloftalam"]]},{"id":"CHEBI:22587","l":"","na":2,"nb":149,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/6-diazo-5-oxo-l-norleucine.html","6-diazo-5-oxo-L-norleucine"],["antibacterial/benzethonium-chloride.html","benzethonium chloride"],["antibacterial/gramine.html","gramine"],["antibacterial/hypothiocyanous-acid.html","hypothiocyanous acid"],["antibacterial/mi-1148.html","MI-1148"],["antibacterial/phenethyl-caffeate.html","phenethyl caffeate"]]},{"id":"ARO:3004268","l":"MCR phosphoethanolamine transferase","na":106,"nb":2,"a":[["ARO%3A3003689","MCR-1.1"],["ARO%3A3004506","MCR-1.10"],["ARO%3A3004688","MCR-1.11"],["ARO%3A3004689","MCR-1.12"],["ARO%3A3004690","MCR-1.13"],["ARO%3A3007246","MCR-1.14"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"CHEBI:23066","l":"","na":2,"nb":66,"a":[["TCDB%3A8.A.212","The d-Amino Acid Peptidase (dAAP) Family"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]],"b":[["antibacterial/cefacetrile.html","cefacetrile"],["antibacterial/cefaclor.html","cefaclor"],["antibacterial/cefadroxil.html","cefadroxil"],["antibacterial/cefaloram.html","cefaloram"],["antibacterial/cefaloridine.html","cefaloridine"],["antibacterial/cefalotin.html","cefalotin"]]},{"id":"ARO:3007149","l":"","na":53,"nb":2,"a":[["ARO%3A3004251","antibiotic-resistant cya adenylate cyclase"],["ARO%3A3004247","antibiotic-resistant GlpT"],["ARO%3A3002811","antibiotic-resistant murA transferase"],["ARO%3A3004250","antibiotic-resistant ptsI phosphotransferase"],["ARO%3A3004248","antibiotic-resistant UhpT"],["ARO%3A3003777","Borreliella burgdorferi murA with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"],["antibacterial/fosmidomycin.html","fosmidomycin"]]},{"id":"CHEBI:32955","l":"","na":2,"nb":52,"a":[["EC%3A3.3.2.10","soluble epoxide hydrolase"],["RHEA%3A19037","an epoxide + H2O = an ethanediol"]],"b":[["antibacterial/ambiguine-i.html","ambiguine I"],["antibacterial/asperlactone.html","asperlactone"],["antibacterial/aspyrone.html","aspyrone"],["antibacterial/asukamycin.html","asukamycin"],["antibacterial/ei-1511-3.html","EI-1511-3"],["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"CHEBI:26188","l":"","na":2,"nb":41,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["antibacterial/2-4-dihydroxy-3-methyl-6-2-oxopropyl-benzaldehyde.html","2,4-dihydroxy-3-methyl-6-(2-oxopropyl)benzaldehyde"],["antibacterial/asperlactone.html","asperlactone"],["antibacterial/aspyrone.html","aspyrone"],["antibacterial/asukamycin.html","asukamycin"],["antibacterial/bacillaene.html","bacillaene"],["antibacterial/butremycin.html","butremycin"]]},{"id":"CHEBI:37581","l":"","na":2,"nb":39,"a":[["EC%3A3.1.1.25","1,4-lactonase"],["RHEA%3A12745","a 1,4-lactone + H2O = a 4-hydroxyacid + H(+)"]],"b":[["antibacterial/1-hydroxycrisamicin-a.html","1-hydroxycrisamicin A"],["antibacterial/decatromicin-a.html","decatromicin A"],["antibacterial/decatromicin-b.html","decatromicin B"],["antibacterial/fumimycin.html","fumimycin"],["antibacterial/isopatulin.html","isopatulin"],["antibacterial/lactonamycin.html","lactonamycin"]]},{"id":"CHEBI:48219","l":"","na":2,"nb":26,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"],["antibacterial/benzethonium-chloride.html","benzethonium chloride"],["antibacterial/quaternium-15.html","quaternium-15"],["antifungal/2-4-xylenol.html","2,4-xylenol"],["antifungal/thimerosal.html","thimerosal"],["biocide/1-3-6-8-tetraazatricyclo-4-4-1-13-8-dodecane.html","1,3,6,8-tetraazatricyclo[4,4,1,13,8]dodecane"]]},{"id":"ARO:3007156","l":"","na":20,"nb":2,"a":[["ARO%3A3003457","ethionamide resistant ethA"],["ARO%3A3004888","ethionamide resistant fabG1"],["ARO%3A3004890","ethionamide resistant mshC"],["ARO%3A3004892","ethionamide resistant nudC"],["ARO%3A3004954","Ethionamide resistant Rv0565c"],["ARO%3A3004875","inhA with mutations with conferring resistance to ethionamide"]],"b":[["antibacterial/prothionamide.html","prothionamide"],["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":20,"nb":2,"a":[["Pfam%3APF16822","SGNH hydrolase-like domain, acetyltransferase AlgX"],["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"],["Pfam%3APF11182","Alginate O-acetyl transferase AlgF"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF27129","Functional amyloid protein FapB/FapC family"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]],"b":[["antibacterial/mupirocin.html","mupirocin"],["antifungal/2-4-diacetylphloroglucinol.html","2,4-diacetylphloroglucinol"]]},{"id":"CHEBI:17176","l":"","na":17,"nb":2,"a":[["EC%3A1.1.3.20","long-chain-alcohol oxidase"],["EC%3A1.14.14.3","bacterial luciferase"],["EC%3A1.2.1.48","long-chain-aldehyde dehydrogenase"],["EC%3A1.2.1.50","long-chain-fatty-acyl-CoA reductase"],["EC%3A1.2.1.80","long-chain acyl-[acyl-carrier-protein] reductase"],["EC%3A4.1.99.5","aldehyde oxygenase (deformylating)"]],"b":[["antibacterial/e-dodec-2-enal.html","(E)-dodec-2-enal"],["unspecified/pentadecanal.html","pentadecanal"]]},{"id":"UniProt:Q45066","l":"","na":16,"nb":2,"a":[["GO%3A0009330","DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) complex"],["GO%3A0034335","DNA negative supercoiling activity"],["NCBIfam%3ANF004044","DNA topoisomerase (ATP-hydrolyzing)"],["NCBIfam%3ATIGR01063","DNA topoisomerase (ATP-hydrolyzing) subunit A"],["NCBIfam%3ATIGR01061","DNA topoisomerase IV subunit A"],["CDD%3Acd00187","TOP4c"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"CHEBI:33566","l":"","na":2,"nb":15,"a":[["EC%3A2.1.1.6","catechol O-methyltransferase"],["RHEA%3A17877","a catechol + S-adenosyl-L-methionine = a guaiacol + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/acteoside.html","acteoside"],["antibacterial/brazilin.html","brazilin"],["antibacterial/comazaphilone-c.html","comazaphilone C"],["antibacterial/comazaphilone-e.html","comazaphilone E"],["antibacterial/ethyl-3-4-dihydroxybenzoate.html","ethyl 3,4-dihydroxybenzoate"],["antifungal/altenusin.html","altenusin"]]},{"id":"NCBITaxon:242507","l":"","na":14,"nb":2,"a":[["Pfam%3APF28293","Biotrophy-associated secreted protein 2"],["Pfam%3APF28414","Biotrophy-associated secreted protein 4"],["Pfam%3APF22997","Chitin synthase 4-like domain"],["Pfam%3APF27979","CON7 transcription factor helical domain"],["Pfam%3APF26980","Dicer-like protein 2, dsRNA binding domain"],["Pfam%3APF11327","Egh16-like virulence factor"]],"b":[["antifungal/carboxin.html","carboxin"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"GO:0003964","l":"RNA-directed DNA polymerase activity","na":13,"nb":2,"a":[["EC%3A2.7.7.49","RNA-directed DNA polymerase"],["GO%3A0003964","RNA-directed DNA polymerase activity"],["GO%3A0003720","telomerase activity"],["NCBIfam%3ATIGR04416","group II intron reverse transcriptase/maturase"],["InterPro%3AIPR010659","Reverse transcriptase connection"],["InterPro%3AIPR010661","Reverse transcriptase thumb"]],"b":[["antiviral/delavirdine.html","delavirdine"],["antiviral/nevirapine.html","nevirapine"]]},{"id":"CHEBI:140331","l":"","na":2,"nb":11,"a":[["EC%3A2.1.1.231","flavonoid 4'-O-methyltransferase"],["RHEA%3A31743","a 4'-hydroxyflavanone + S-adenosyl-L-methionine = a 4'-methoxyflavanone + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/6-8-diprenylnaringenin.html","6,8-diprenylnaringenin"],["antibacterial/naringenin-7-o-%CE%B2-d-glucoside.html","naringenin 7-O-β-D-glucoside"],["antibacterial/remangiflavanone-a.html","remangiflavanone A"],["antibacterial/remangiflavanone-b.html","remangiflavanone B"],["antibacterial/sigmoidin-a.html","sigmoidin A"],["antibacterial/sigmoidin-b.html","sigmoidin B"]]},{"id":"CHEBI:77396","l":"","na":11,"nb":2,"a":[["EC%3A1.1.1.192","long-chain-alcohol dehydrogenase"],["EC%3A1.1.3.20","long-chain-alcohol oxidase"],["EC%3A1.2.1.108","alcohol-forming fatty acyl-CoA reductase (NADH)"],["EC%3A1.2.1.84","alcohol-forming fatty acyl-CoA reductase (NADPH)"],["EC%3A1.2.1.n2","fatty acyl-CoA reductase"],["RHEA%3A36303","a fatty acyl-CoA + 2 NADPH + 2 H(+) = a long-chain primary fatty alcohol + 2 NADP(+) + CoA"]],"b":[["antibacterial/9z-12z-15z-octadecatrien-1-ol.html","(9Z,12Z,15Z)-octadecatrien-1-ol"],["antiviral/docosan-1-ol.html","docosan-1-ol"]]},{"id":"ARO:3007560","l":"","na":10,"nb":2,"a":[["ARO%3A3007642","Aspergillus spp. fcyB conferring resistance to 5-flucytosine via reduced permeability"],["ARO%3A3007643","Aspergillus spp. transcription factor pacC"],["ARO%3A3007665","Candida spp. FCY2 conferring resistance to 5-flucytosine via reduced permeability"],["ARO%3A3007557","Candida spp. FUR1 with mutations conferring resistance to 5-flucytosine"],["ARO%3A3007568","Cryptococcus spp. UXS1 conferring resistance to 5-flucytosine via absence"],["ARO%3A3007641","fungal nucleobase transporters"]],"b":[["antifungal/5-fluorouracil.html","5-Fluorouracil"],["antifungal/flucytosine.html","flucytosine"]]},{"id":"UniProt:Q59192","l":"","na":10,"nb":2,"a":[["GO%3A0034335","DNA negative supercoiling activity"],["NCBIfam%3ANF004189","DNA gyrase subunit B"],["NCBIfam%3ATIGR01058","DNA topoisomerase IV subunit B"],["InterPro%3AIPR018522","DNA topoisomerase, type IIA, conserved site"],["CDD%3Acd16928","HATPase_GyrB-like"],["CDD%3Acd00822","TopoII_Trans_DNA_gyrase"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"CHEBI:35489","l":"","na":2,"nb":9,"a":[["EC%3A1.8.3.7","formylglycine-generating enzyme"],["RHEA%3A51152","L-cysteinyl-[sulfatase] + 2 a thiol + O2 = an organic disulfide + 3-oxo-L-alanyl-[sulfatase] + hydrogen sulfide + H2O + H(+)"]],"b":[["antibacterial/2-methyldithio-pyridine-n-oxide.html","2-(methyldithio)pyridine-N-oxide"],["antibacterial/thiram.html","thiram"],["antibacterial/tropodithietic-acid.html","tropodithietic acid"],["antifungal/diallyl-disulfide.html","diallyl disulfide"],["antifungal/disulfiram.html","disulfiram"],["antifungal/gliotoxin.html","gliotoxin"]]},{"id":"CHEBI:13248","l":"","na":2,"nb":8,"a":[["EC%3A3.5.1.13","aryl-acylamidase"],["RHEA%3A20297","an anilide + H2O = aniline + a carboxylate + H(+)"]],"b":[["antifungal/benodanil.html","benodanil"],["antifungal/carboxin.html","carboxin"],["antifungal/cyclanilide.html","cyclanilide"],["antifungal/fenfuram.html","fenfuram"],["antifungal/methfuroxam.html","methfuroxam"],["antifungal/oxycarboxin.html","oxycarboxin"]]},{"id":"CHEBI:134251","l":"","na":2,"nb":8,"a":[["EC%3A2.1.1.6","catechol O-methyltransferase"],["RHEA%3A17877","a catechol + S-adenosyl-L-methionine = a guaiacol + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/rhapontigenin.html","rhapontigenin"],["antifungal/coniferyl-aldehyde.html","coniferyl aldehyde"],["antifungal/nk372135c.html","NK372135C"],["antimycobacterial/1-2-hydroxy-4-methoxyphenyl-3-4-hydroxy-3-methoxyphenyl-propane.html","1-(2-hydroxy-4-methoxyphenyl)-3-(4-hydroxy-3-methoxyphenyl)propane"],["antiviral/5r-5-hydroxy-7-4-hydroxy-3-methoxyphenyl-1-phenyl-3-heptanone.html","(5R)-5-hydroxy-7-(4'-hydroxy-3'-methoxyphenyl)-1-phenyl-3-heptanone"],["antiviral/isorhapontigenin.html","isorhapontigenin"]]},{"id":"CHEBI:18254","l":"","na":8,"nb":2,"a":[["EC%3A2.7.1.77","nucleoside phosphotransferase"],["EC%3A3.1.3.5","5'-nucleotidase"],["EC%3A3.1.3.6","3'-nucleotidase"],["RHEA%3A19961","a 2'-deoxyribonucleoside + a ribonucleoside 5'-phosphate = a ribonucleoside + a 2'-deoxyribonucleoside 5'-phosphate"],["RHEA%3A10144","a ribonucleoside 3'-phosphate + H2O = a ribonucleoside + phosphate"],["RHEA%3A12484","a ribonucleoside 5'-phosphate + H2O = a ribonucleoside + phosphate"]],"b":[["antifungal/toyocamycin.html","toyocamycin"],["antifungal/tubercidin.html","tubercidin"]]},{"id":"CHEBI:26191","l":"","na":2,"nb":8,"a":[["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A1.A.8","The Major Intrinsic Protein (MIP) Family"]],"b":[["antifungal/reedsmycin-a.html","reedsmycin A"],["antifungal/reedsmycin-b.html","reedsmycin B"],["antifungal/reedsmycin-c.html","reedsmycin C"],["antifungal/reedsmycin-d.html","reedsmycin D"],["antifungal/reedsmycin-e.html","reedsmycin E"],["antifungal/validamycin-a.html","validamycin A"]]},{"id":"CHEBI:59062","l":"","na":2,"nb":8,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["antibacterial/colistimethate-a.html","colistimethate A"],["antibacterial/colistimethate-b.html","colistimethate B"],["antibacterial/colistin-a-sodium-methanesulfonate.html","colistin A sodium methanesulfonate"],["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b-sodium-methanesulfonate.html","colistin B sodium methanesulfonate"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":2,"nb":8,"a":[["PROSITE%3APS00820","Glucoamylase active site region signature"],["TED%3AAF-A0A7I9G6Y3-F1-model_v4_TED02","TED novel fold AF-A0A7I9G6Y3-F1-model_v4_TED02"]],"b":[["antifungal/anidulafungin.html","anidulafungin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/caspofungin.html","caspofungin"],["antifungal/cycloheximide.html","cycloheximide"],["antifungal/micafungin.html","micafungin"],["antifungal/oligomycin-a.html","oligomycin A"]]},{"id":"ARO:3000798","l":"MexEF-OprN","na":7,"nb":2,"a":[["ARO%3A3000798","MexEF-OprN"],["ARO%3A3004068","MexEF-OprN with MexS mutations conferring resistance to chloramphenicol, ciprofloxacin, and trimethoprim"],["ARO%3A3004066","MexEF-OprN with MexT mutation conferring resistance to chloramphenicol, ciprofloxacin, and trimethoprim"],["ARO%3A3004070","MexEF-OprN with MvaT deletion conferring resistance to chloramphenicol and norfloxacin"],["ARO%3A3000813","MexS"],["ARO%3A3000814","MexT"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"CHEBI:33839","l":"","na":7,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.I.3","The Bacterial (Planctomycetes) Nuclear Pore-like Complex (B-NPC) Family"],["TCDB%3A1.A.21","The Bcl-2 (Bcl-2) Family"],["TCDB%3A1.N.4","The FF Fusogen (FFF) Family"],["TCDB%3A1.Q.1","The Fungal Septal Pore (FSP) Family"],["TCDB%3A1.N.3","The Hapless2 Male Gamete Fusion Factor (Fusexin) Family"]],"b":[["antifungal/propineb.html","propineb"],["antifungal/zineb.html","zineb"]]},{"id":"ARO:3000772","l":"AdeIJK","na":2,"nb":6,"a":[["ARO%3A3000772","AdeIJK"],["ARO%3A3000559","adeN"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/imipenem.html","imipenem"],["antibacterial/tetracycline.html","tetracycline"],["antibacterial/ticarcillin.html","ticarcillin"],["antibacterial/trimethoprim.html","trimethoprim"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3007159","l":"","na":6,"nb":2,"a":[["ARO%3A3004183","aminosalicylate resistant dihydrofolate reductase"],["ARO%3A3004155","aminosalicylate resistant dihydrofolate synthase"],["ARO%3A3004152","aminosalicylate resistant thymidylate synthase"],["ARO%3A3004157","Mycobacterium tuberculosis folC with mutation conferring resistance to para-aminosalicylic acid"],["ARO%3A3004184","Mycobacterium tuberculosis ribD with mutation conferring resistance to para-aminosalicylic acid"],["ARO%3A3004153","Mycobacterium tuberculosis thyA with mutation conferring resistance to para-aminosalicylic acid"]],"b":[["antibacterial/diflunisal.html","diflunisal"],["antimycobacterial/4-aminosalicylic-acid.html","4-aminosalicylic acid"]]},{"id":"ARO:3007434","l":"almEFG","na":6,"nb":2,"a":[["ARO%3A3007430","alm glycyl carrier protein"],["ARO%3A3007432","alm glycyltransferase"],["ARO%3A3007433","almE"],["ARO%3A3007434","almEFG"],["ARO%3A3007431","almF"],["ARO%3A3004364","almG"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"CHEBI:140377","l":"","na":2,"nb":6,"a":[["EC%3A1.14.11.9","flavanone 3-dioxygenase"],["RHEA%3A18621","a (2S)-flavan-4-one + 2-oxoglutarate + O2 = a (2R,3R)-dihydroflavonol + succinate + CO2"]],"b":[["antibacterial/6-8-diprenylnaringenin.html","6,8-diprenylnaringenin"],["antibacterial/naringenin-7-o-%CE%B2-d-glucoside.html","naringenin 7-O-β-D-glucoside"],["antibacterial/sophoraflavanone-a.html","sophoraflavanone A"],["antifungal/selinone.html","selinone"],["antimycobacterial/sakuranetin.html","sakuranetin"],["antiprotozoal/sophoraflavanone-g.html","sophoraflavanone G"]]},{"id":"CHEBI:28802","l":"","na":6,"nb":2,"a":[["EC%3A1.14.20.6","flavonol synthase"],["EC%3A2.4.1.91","flavonol 3-O-glucosyltransferase"],["EC%3A3.2.1.62","glycosylceramidase"],["RHEA%3A21088","a (2R,3R)-dihydroflavonol + 2-oxoglutarate + O2 = a flavonol + succinate + CO2 + H2O"],["RHEA%3A81339","a flavonol 3-O-beta-D-glucoside + H2O = a flavonol + D-glucose"],["RHEA%3A22300","a flavonol + UDP-alpha-D-glucose = a flavonol 3-O-beta-D-glucoside + UDP + H(+)"]],"b":[["antibacterial/kaempferol.html","kaempferol"],["antiviral/quercetagetin.html","quercetagetin"]]},{"id":"CHEBI:4917","l":"eugenol","na":6,"nb":2,"a":[["EC%3A1.1.1.318","eugenol synthase"],["EC%3A2.1.1.146","(iso)eugenol O-methyltransferase"],["RHEA%3A32655","eugenol + a carboxylate + NADP(+) = a coniferyl ester + NADPH"],["RHEA%3A24690","eugenol + acetate + NADP(+) = (E)-coniferyl acetate + NADPH"],["RHEA%3A80551","eugenol + S-adenosyl-L-methionine = O-methyleugenol + S-adenosyl-L-homocysteine + H(+)"],["proteintraitsmech%3ABIOLIP_EOL","EOL-binding site"]],"b":[["antibacterial/dihydroconiferyl-alcohol.html","dihydroconiferyl alcohol"],["antibacterial/eugenol.html","eugenol"]]},{"id":"ARO:3000617","l":"mecA","na":5,"nb":2,"a":[["ARO%3A3000617","mecA"],["ARO%3A3003440","mecB"],["ARO%3A3001209","mecC"],["ARO%3A3004185","mecD"],["ARO%3A3001208","methicillin resistant PBP2"]],"b":[["antibacterial/ceftaroline.html","ceftaroline"],["antibacterial/methicillin.html","methicillin"]]},{"id":"CHEBI:28034","l":"","na":5,"nb":2,"a":[["EC%3A2.3.1.18","galactoside O-acetyltransferase"],["EC%3A2.4.3.1","beta-galactoside alpha-(2,6)-sialyltransferase"],["RHEA%3A15713","a beta-D-galactoside + acetyl-CoA = a 6-acetyl-beta-D-galactoside + CoA"],["RHEA%3A52104","a beta-D-galactoside + CMP-N-acetyl-beta-neuraminate = an N-acetyl-alpha-neuraminyl-(2->6)-beta-D-galactosyl derivative + CMP + H(+)"],["RHEA%3A85983","a beta-D-galactoside + UDP-N-acetyl-alpha-D-glucosamine = an N-acetyl-alpha-D-glucosaminyl-(1->4)-beta-D-galactosyl derivative + UDP + H(+)"]],"b":[["antifungal/kaempferol-3-o-%CE%B2-d-galactoside.html","kaempferol 3-O-β-D-galactoside"],["antiviral/acacetin-7-o-%CE%B2-d-galactopyranoside.html","acacetin-7-O-β-D-galactopyranoside"]]},{"id":"CHEBI:35748","l":"","na":2,"nb":5,"a":[["RHEA%3A59388","a fatty acid ester + H2O = an aliphatic alcohol + a fatty acid + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antiprotozoal/neurolenin-a.html","neurolenin A"],["antiprotozoal/neurolenin-b.html","neurolenin B"],["antiprotozoal/neurolenin-c.html","neurolenin C"],["antiprotozoal/neurolenin-d.html","neurolenin D"],["antiviral/interiotherin-b.html","interiotherin B"]]},{"id":"ARO:3000248","l":"DnaA","na":2,"nb":4,"a":[["ARO%3A3000248","DnaA"],["ARO%3A3004244","DnaA chromosomal replication initiation protein"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3000369","l":"MtrCDE","na":4,"nb":2,"a":[["ARO%3A3000816","mtrA"],["ARO%3A3000369","MtrCDE"],["ARO%3A3000817","mtrR"],["ARO%3A3004851","Neisseria gonorrhoeae mtrR with mutation conferring resistance"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003581","l":"Acinetobacter mutant Lpx gene conferring resistance to colistin","na":4,"nb":2,"a":[["ARO%3A3003581","Acinetobacter mutant Lpx gene conferring resistance to colistin"],["ARO%3A3003573","LpxA"],["ARO%3A3003574","LpxC"],["ARO%3A3003575","LpxD"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004063","l":"EdeQ","na":2,"nb":4,"a":[["ARO%3A3004064","Edeine acetyltransferase"],["ARO%3A3004063","EdeQ"]],"b":[["antibacterial/edeine-a.html","edeine A"],["antibacterial/edeine-b.html","edeine B"],["antibacterial/edeine-d.html","edeine D"],["antibacterial/edeine-f.html","edeine F"]]},{"id":"ARO:3004287","l":"lipid A phosphatase","na":2,"nb":4,"a":[["ARO%3A3004287","lipid A phosphatase"],["ARO%3A3003920","pgpB"]],"b":[["antibacterial/polymyxin-b1.html","polymyxin B1"],["antibacterial/polymyxin-b2.html","polymyxin B2"],["antibacterial/polymyxin-b3.html","polymyxin B3"],["antibacterial/polymyxin-b4.html","polymyxin B4"]]},{"id":"CHEBI:12834","l":"","na":4,"nb":2,"a":[["EC%3A1.3.1.102","2-alkenal reductase (NADP(+))"],["EC%3A1.3.1.74","2-alkenal reductase [NAD(P)(+)]"],["RHEA%3A13733","an n-alkanal + NAD(+) = an alk-2-enal + NADH + H(+)"],["RHEA%3A13737","an n-alkanal + NADP(+) = an alk-2-enal + NADPH + H(+)"]],"b":[["antifungal/decanal.html","decanal"],["antimycobacterial/undecanal.html","undecanal"]]},{"id":"CHEBI:13601","l":"","na":4,"nb":2,"a":[["EC%3A1.3.1.22","3-oxo-5alpha-steroid 4-dehydrogenase (NADP(+))"],["EC%3A1.3.99.5","3-oxo-5alpha-steroid 4-dehydrogenase (acceptor)"],["RHEA%3A13805","a 3-oxo-5alpha-steroid + A = a 3-oxo-Delta(4)-steroid + AH2"],["RHEA%3A54384","a 3-oxo-5alpha-steroid + NADP(+) = a 3-oxo-Delta(4)-steroid + NADPH + H(+)"]],"b":[["antiviral/lucialdehyde-b.html","lucialdehyde B"],["antiviral/torvoside-h.html","torvoside H"]]},{"id":"CHEBI:140332","l":"","na":2,"nb":4,"a":[["EC%3A2.1.1.231","flavonoid 4'-O-methyltransferase"],["RHEA%3A31743","a 4'-hydroxyflavanone + S-adenosyl-L-methionine = a 4'-methoxyflavanone + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antifungal/chamaejasmenin-a.html","chamaejasmenin A"],["antifungal/chamaejasmenin-d.html","chamaejasmenin D"],["antifungal/isochamaejasmenin-b.html","isochamaejasmenin B"],["unspecified/erylatissin-c.html","erylatissin C"]]},{"id":"CHEBI:15904","l":"long-chain fatty acid","na":2,"nb":4,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/9z-12z-15z-octadeca-9-12-15-trien-6-ynoic-acid.html","(9Z,12Z,15Z)-octadeca-9,12,15-trien-6-ynoic acid"],["antifungal/10e-15z-9-12-13-trihydroxy-10-15-octadecadienoic-acid.html","(10E,15Z)-9,12,13-trihydroxy-10,15-octadecadienoic acid"],["antimycobacterial/scleropyric-acid.html","scleropyric acid"],["antiprotozoal/minquartynoic-acid.html","minquartynoic acid"]]},{"id":"CHEBI:35190","l":"","na":4,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.60","The Organo Anion Transporter (OAT) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antifungal/casbene.html","casbene"],["unspecified/neophytadiene.html","neophytadiene"]]},{"id":"CHEBI:35757","l":"","na":4,"nb":2,"a":[["EC%3A3.5.1.4","amidase"],["RHEA%3A12020","a monocarboxylic acid amide + H2O = a monocarboxylate + NH4(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["MCSA%3A726","peptide amidase"]],"b":[["antiviral/n-acetyl-l-cysteinate.html","N-acetyl-L-cysteinate"],["unspecified/nocardicin-e-2.html","nocardicin E(2−)"]]},{"id":"CHEBI:52267","l":"","na":2,"nb":4,"a":[["EC%3A2.4.1.237","flavonol 7-O-beta-glucosyltransferase"],["RHEA%3A23164","a 7-O-hydroxy-flavonol + UDP-alpha-D-glucose = a flavonol 7-O-beta-D-glucoside + UDP + H(+)"]],"b":[["antibacterial/kaempferol.html","kaempferol"],["antibacterial/morin.html","morin"],["antibacterial/quercetin.html","quercetin"],["unspecified/galangin.html","galangin"]]},{"id":"CHEBI:80291","l":"","na":4,"nb":2,"a":[["EC%3A3.5.5.7","aliphatic nitrilase"],["EC%3A4.2.1.84","nitrile hydratase"],["RHEA%3A46188","an aliphatic nitrile + 2 H2O = a carboxylate + NH4(+)"],["RHEA%3A12673","an aliphatic primary amide = an aliphatic nitrile + H2O"]],"b":[["antifungal/acrylonitrile.html","acrylonitrile"],["antifungal/borrelidin.html","borrelidin"]]},{"id":"NCBITaxon:318829","l":"Magnaporthe oryzae","na":2,"nb":4,"a":[["TED%3AAF-A0A4P7NAU2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P7NAU2-F1-model_v4_TED01"],["TED%3AAF-A0A4P7MZB7-F1-model_v4_TED02","TED novel fold AF-A0A4P7MZB7-F1-model_v4_TED02"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/carboxin.html","carboxin"],["antifungal/carpropamid.html","carpropamid"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:405948","l":"","na":2,"nb":4,"a":[["Pfam%3APF21036","Erythromycin biosynthesis protein CIII-like, N-terminal domain"],["MCSA%3A694","6-deoxyerythronolide B hydroxylase"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["unspecified/erythromycin-b.html","erythromycin B"],["unspecified/erythromycin-c.html","erythromycin C"],["unspecified/erythromycin-d.html","erythromycin D"]]},{"id":"ARO:3000770","l":"AdeABC","na":3,"nb":2,"a":[["ARO%3A3000770","AdeABC"],["ARO%3A3000553","adeR"],["ARO%3A3000549","adeS"]],"b":[["antibacterial/tetracycline.html","tetracycline"],["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:3000773","l":"CmeABC","na":2,"nb":3,"a":[["ARO%3A3000773","CmeABC"],["ARO%3A3000526","cmeR"]],"b":[["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3000799","l":"MexGHI-OpmD","na":2,"nb":3,"a":[["ARO%3A3000806","MexG"],["ARO%3A3000799","MexGHI-OpmD"]],"b":[["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/tetracycline.html","tetracycline"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3002986","l":"bacA","na":2,"nb":3,"a":[["ARO%3A3002986","bacA"],["ARO%3A3003250","bcrC"]],"b":[["antibacterial/bacitracin-a.html","bacitracin A"],["antibacterial/bacitracin-b.html","bacitracin B"],["antibacterial/bacitracin-f.html","bacitracin F"]]},{"id":"ARO:3003250","l":"bcrC","na":2,"nb":3,"a":[["ARO%3A3002986","bacA"],["ARO%3A3003250","bcrC"]],"b":[["antibacterial/bacitracin-a.html","bacitracin A"],["antibacterial/bacitracin-b.html","bacitracin B"],["antibacterial/bacitracin-f.html","bacitracin F"]]},{"id":"ARO:3003963","l":"flo","na":3,"nb":2,"a":[["ARO%3A3003963","flo"],["ARO%3A3002705","floR"],["ARO%3A3002812","pp-flo"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"]]},{"id":"CHEBI:142621","l":"","na":3,"nb":2,"a":[["RHEA%3A69763","a medium-chain fatty aldehyde + NAD(+) + H2O = a medium-chain fatty acid + NADH + 2 H(+)"],["RHEA%3A80815","a medium-chain fatty aldehyde + NADP(+) + H2O = a medium-chain fatty acid + NADPH + 2 H(+)"],["RHEA%3A58364","a medium-chain primary fatty alcohol + NADP(+) = a medium-chain fatty aldehyde + NADPH + H(+)"]],"b":[["antifungal/decanal.html","decanal"],["antimycobacterial/undecanal.html","undecanal"]]},{"id":"CHEBI:17012","l":"N-acetylneuraminic acid","na":2,"nb":3,"a":[["MCSA%3A835","exo-alpha-sialidase (GH33 Family)"],["MCSA%3A828","exo-alpha-sialidase (GH34 Family)"]],"b":[["antiviral/n-acetyl-%CE%B1-neuraminic-acid.html","N-acetyl-α-neuraminic acid"],["antiviral/n-acetyl-%CE%B2-neuraminic-acid.html","N-acetyl-β-neuraminic acid"],["antiviral/n-acetylneuraminic-acid.html","N-acetylneuraminic acid"]]},{"id":"CHEBI:83628","l":"","na":3,"nb":2,"a":[["EC%3A3.5.1.4","amidase"],["RHEA%3A12020","a monocarboxylic acid amide + H2O = a monocarboxylate + NH4(+)"],["MCSA%3A726","peptide amidase"]],"b":[["antifungal/2-chloroacetamide.html","2-chloroacetamide"],["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"NCBITaxon:332648","l":"Botrytis cinerea B05.10","na":3,"nb":2,"a":[["Pfam%3APF01670","Glycosyl hydrolase family 12"],["PROSITE%3APS00776","Glycosyl hydrolases family 11 (GH11) active site signature 1"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"]],"b":[["antifungal/fludioxonil.html","fludioxonil"],["antifungal/iprodione.html","iprodione"]]},{"id":"NCBITaxon:5482","l":"Candida tropicalis","na":3,"nb":2,"a":[["Pfam%3APF05203","Hom_end-associated Hint"],["Pfam%3APF05204","Homing endonuclease"],["MCSA%3A620","enoyl-[acyl-carrier-protein] reductase (NADPH, B-specific)"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"ARO:3003027","l":"lmrAB Operon","na":2,"nb":2,"a":[["ARO%3A3003028","lmrA"],["ARO%3A3003027","lmrAB Operon"]],"b":[["antibacterial/lincomycin.html","lincomycin"],["antibacterial/puromycin.html","puromycin"]]},{"id":"ARO:3004101","l":"MdtNOP","na":2,"nb":2,"a":[["ARO%3A3003843","leuO"],["ARO%3A3004101","MdtNOP"]],"b":[["antibacterial/puromycin.html","puromycin"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3004141","l":"AxyXY-OprZ","na":2,"nb":2,"a":[["ARO%3A3004141","AxyXY-OprZ"],["ARO%3A3004145","AxyZ"]],"b":[["antibacterial/cefepime.html","cefepime"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004919","l":"Mycobacterium tuberculosis eccC5 conferring resistance to fluoroquinolones","na":2,"nb":2,"a":[["ARO%3A3004918","Mycobacterium tuberculosis eccB5 conferring resistance to fluoroquinolones"],["ARO%3A3004919","Mycobacterium tuberculosis eccC5 conferring resistance to fluoroquinolones"]],"b":[["antibacterial/moxifloxacin.html","moxifloxacin"],["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3004995","l":"rifampicin resistant rpoC","na":2,"nb":2,"a":[["ARO%3A3004994","Mycobacterium tuberculosis rpoC mutations confer resistance to rifampicin"],["ARO%3A3004995","rifampicin resistant rpoC"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3007161","l":"","na":2,"nb":2,"a":[["ARO%3A3005178","Mycobacterium tuberculosis ethA mutations conferring resistance to perchlozone"],["ARO%3A3005205","perchlozone resistant ethA"]],"b":[["antibacterial/perchlozone.html","perchlozone"],["antibacterial/thioacetazone.html","thioacetazone"]]},{"id":"CHEBI:133959","l":"","na":2,"nb":2,"a":[["EC%3A2.1.1.46","isoflavone 4'-O-methyltransferase"],["RHEA%3A31739","a 4'-hydroxyisoflavone + S-adenosyl-L-methionine = a 4'-methoxyisoflavone + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/licoricone.html","licoricone"],["unspecified/erylatissin-a.html","erylatissin A"]]},{"id":"CHEBI:140310","l":"","na":2,"nb":2,"a":[["EC%3A3.1.1.2","arylesterase"],["RHEA%3A17309","a phenyl acetate + H2O = a phenol + acetate + H(+)"]],"b":[["antibacterial/resorcinol-monoacetate.html","resorcinol monoacetate"],["antifungal/ncx-4040.html","NCX-4040"]]},{"id":"CHEBI:17354","l":"","na":2,"nb":2,"a":[["EC%3A5.1.99.2","16-hydroxysteroid epimerase"],["RHEA%3A15829","a 16alpha-hydroxysteroid = a 16beta-hydroxysteroid"]],"b":[["antifungal/9%CE%BE-14%CE%BE-25s-cholestane-3%CE%B2-4%CE%B2-6%CE%B2-7%CE%B1-8-15%CE%B1-16%CE%B2-26-octol.html","(9ξ,14ξ,25S)-cholestane-3β,4β,6β,7α,8,15α,16β,26-octol"],["antiviral/clathsterol-disulfonic-acid.html","clathsterol disulfonic acid"]]},{"id":"CHEBI:28163","l":"","na":2,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/albomycin-%CE%B42.html","albomycin δ2"],["antibacterial/albomycin-%CE%B5.html","albomycin ε"]]},{"id":"CHEBI:4986","l":"","na":2,"nb":2,"a":[["EC%3A2.1.1.15","fatty-acid O-methyltransferase"],["RHEA%3A23012","a fatty acid + S-adenosyl-L-methionine = a fatty acid methyl ester + S-adenosyl-L-homocysteine"]],"b":[["antibacterial/methyl-%CE%B3-linolenate.html","methyl γ-linolenate"],["antifungal/methyl-nonanoate.html","methyl nonanoate"]]},{"id":"CHEBI:64627","l":"","na":2,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.A.18","The Peptide Uptake Permease (PUP) Family"]],"b":[["unspecified/microcin-b17.html","microcin B17"],["unspecified/microcin-c.html","microcin c"]]},{"id":"CHEBI:86315","l":"","na":2,"nb":2,"a":[["EC%3A2.1.1.9","thiol S-methyltransferase"],["RHEA%3A18277","a thiol + S-adenosyl-L-methionine = a methyl thioether + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antifungal/maremycin-g.html","maremycin G"],["antifungal/neticonazole.html","neticonazole"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":2669,"nb":1,"a":[["IDPO%3A0000002","disorder"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000045","phosphorylation display site"],["IDPO%3A0000059","self-inhibition"],["Pfam%3APF17837","4'-phosphopantetheinyl transferase N-terminal domain"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"CHEBI:33281","l":"","na":1,"nb":910,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/1-carbapenem-3-carboxylic-acid.html","1-carbapenem-3-carboxylic acid"],["antibacterial/1%CE%B2-methylcarbapenem.html","1β-methylcarbapenem"],["antibacterial/3-6-9-trihydroxypterocarpan.html","3,6,9-trihydroxypterocarpan"],["antibacterial/3z-ravenic-acid.html","(3Z)-ravenic acid"],["antibacterial/5-chloro-7-iodoquinolin-8-ol.html","5-chloro-7-iodoquinolin-8-ol"],["antibacterial/5-o-mycaminosyltylonolide.html","5-O-mycaminosyltylonolide"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":680,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16240","requires hydrogen peroxide"],["EC%3A1.1.3.10","pyranose oxidase"],["EC%3A1.1.3.11","L-sorbose oxidase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.3.13","alcohol oxidase"],["EC%3A1.1.3.15","(S)-2-hydroxy-acid oxidase"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"ARO:3000014","l":"TEM beta-lactamase","na":251,"nb":1,"a":[["ARO%3A3000873","TEM-1"],["ARO%3A3000882","TEM-10"],["ARO%3A3001366","TEM-100"],["ARO%3A3000964","TEM-101"],["ARO%3A3000965","TEM-102"],["ARO%3A3000966","TEM-103"]],"b":[["antibacterial/ampicillin.html","ampicillin"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":212,"nb":1,"a":[["EC%3A1.1.1.244","methanol dehydrogenase"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.99.37","methanol dehydrogenase (nicotinoprotein)"],["EC%3A1.13.11.94","4-vinylguaiacol dioxygenase"],["EC%3A1.14.11.27","[histone H3]-dimethyl-L-lysine(36) demethylase"]],"b":[["biocide/formaldehyde.html","formaldehyde"]]},{"id":"ARO:3000017","l":"OXA beta-lactamase","na":158,"nb":1,"a":[["ARO%3A3007696","OXA-1-like beta-lactamase"],["ARO%3A3007697","OXA-10-like beta-lactamase"],["ARO%3A3008427","OXA-1006"],["ARO%3A3008432","OXA-1011"],["ARO%3A3001706","OXA-102"],["ARO%3A3008457","OXA-1036"]],"b":[["antibacterial/oxacillin.html","oxacillin"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":138,"nb":1,"a":[["Pfam%3APF09255","Caf1 Capsule antigen"],["Pfam%3APF02611","CDP-diacylglycerol pyrophosphatase"],["Pfam%3APF07411","Domain of unknown function (DUF1508)"],["Pfam%3APF05171","Haemin-degrading HemS.ChuX domain"],["Pfam%3APF21500","DNA polymerase III subunit delta', AAA+ ATPase lid domain"],["Pfam%3APF11004","3-deoxy-D-manno-oct-2-ulosonic acid (Kdo) hydroxylase"]],"b":[["unspecified/%CE%B1-mangostin.html","α-mangostin"]]},{"id":"GO:0004146","l":"dihydrofolate reductase activity","na":125,"nb":1,"a":[["EC%3A1.5.1.3","dihydrofolate reductase"],["RHEA%3A15009","(6S)-5,6,7,8-tetrahydrofolate + NADP(+) = 7,8-dihydrofolate + NADPH + H(+)"],["GO%3A0004146","dihydrofolate reductase activity"],["NCBIfam%3ANF012208","bifunctional dihydropteridine reductase/dihydrofolate reductase TmpR"],["NCBIfam%3ANF000055","DfrA12/DfrA21 family trimethoprim-resistant dihydrofolate reductase"],["NCBIfam%3ANF000332","DfrD/DfrG/DfrK family trimethoprim-resistant dihydrofolate reductase"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"NCBITaxon:5076","l":"Penicillium chrysogenum","na":93,"nb":1,"a":[["Pfam%3APF03417","Acyl-coenzyme A:6-aminopenicillanic acid acyl-transferase"],["IEDB%3A30","epitope AAAEKAITVGAS"],["IEDB%3A168112","epitope AFHKELGAIYSEIKD"],["IEDB%3A168122","epitope AGIHFAVAAGNDNAD"],["IEDB%3A1615","epitope AGMDWAVKD"],["IEDB%3A1777","epitope AHIKKSKKGDKKFKGSVANMSLGGGSSRTLD"]],"b":[["unspecified/isopenicillin-n.html","isopenicillin N"]]},{"id":"NCBITaxon:5661","l":"Leishmania donovani","na":88,"nb":1,"a":[["IEDB%3A694","epitope ADKPDESTL"],["IEDB%3A1052","epitope AELLEQQKA"],["IEDB%3A2185","epitope AKFFADKPD"],["IEDB%3A2231","epitope AKLDRLDEE"],["IEDB%3A231775","epitope AMAGNPVVI"],["IEDB%3A5181","epitope ATTYEEFSA"]],"b":[["antiprotozoal/dihydrobetulinic-acid.html","dihydrobetulinic acid"]]},{"id":"CHEBI:25384","l":"","na":1,"nb":79,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/3-4-secoisopimara-4-18-7-15-triene-3-oic-acid.html","3,4-secoisopimara-4(18),7,15-triene-3-oic acid"],["antibacterial/3-phenylbutyric-acid.html","3-phenylbutyric acid"],["antibacterial/7-3-aminopyrrolidin-1-yl-1-2-4-difluorophenyl-6-fluoro-4-oxo-1-4-dihyd.html","7-(3-aminopyrrolidin-1-yl)-1-(2,4-difluorophenyl)-6-fluoro-4-oxo-1,4-dihydro-1,8-naphthyridine-3-carboxylic"],["antibacterial/chuangxinmycin.html","(−)-chuangxinmycin"],["antibacterial/cremeomycin.html","cremeomycin"],["antibacterial/decatromicin-a.html","decatromicin A"]]},{"id":"ARO:3001218","l":"trimethoprim resistant dihydrofolate reductase dfr","na":60,"nb":1,"a":[["ARO%3A3005354","dfr22"],["ARO%3A3002854","dfrA1"],["ARO%3A3003011","dfrA10"],["ARO%3A3002858","dfrA12"],["ARO%3A3003012","dfrA13"],["ARO%3A3002859","dfrA14"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"CHEBI:25105","l":"","na":1,"nb":58,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antibacterial/5-o-mycaminosyltylonolide.html","5-O-mycaminosyltylonolide"],["antibacterial/aplasmomycin.html","(+)-aplasmomycin"],["antibacterial/azithromycin.html","azithromycin"],["antibacterial/boromycin.html","boromycin"],["antibacterial/brefeldin-a.html","brefeldin A"],["antibacterial/cethromycin.html","cethromycin"]]},{"id":"NCBITaxon:227321","l":"Emericella nidulans (strain FGSC A4 / ATCC 38163 / CBS 112.46 / NRRL 194 / M139)","na":46,"nb":1,"a":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF05270","Alpha-L-arabinofuranosidase B (ABFB) domain"],["Pfam%3APF07792","Docking domain of Afi1 for Arf3 in vesicle trafficking"],["Pfam%3APF09206","Alpha-L-arabinofuranosidase B, catalytic"],["Pfam%3APF27751","ATEG_07667 C-terminal domain"],["Pfam%3APF20238","Copper acquisition factor BIM1-like"]],"b":[["antifungal/thiabendazole.html","thiabendazole"]]},{"id":"NCBITaxon:367110","l":"Neurospora crassa (strain ATCC 24698 / 74-OR23-1A / CBS 708.71 / DSM 1257 / FGSC 987)","na":43,"nb":1,"a":[["Pfam%3APF08509","Adenylate cyclase G-alpha binding domain"],["Pfam%3APF25026","Asd-4-like domain"],["Pfam%3APF21334","Fungal epsilon subunit of F1F0-ATP synthase C-terminal domain"],["Pfam%3APF20238","Copper acquisition factor BIM1-like"],["Pfam%3APF21492","Ribosomal protein L31p, N-terminal"],["Pfam%3APF00734","Fungal cellulose binding domain"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"ARO:3007152","l":"","na":40,"nb":1,"a":[["ARO%3A3004270","antibiotic resistant fabI"],["ARO%3A3003462","antibiotic resistant kasA"],["ARO%3A3003460","antibiotic resistant ndh"],["ARO%3A3004045","Escherichia coli fabI mutations conferring resistance to isoniazid and triclosan"],["ARO%3A3004894","Isoniazid resistant ahpC"],["ARO%3A3005103","isoniazid resistant ethA"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"CHEBI:17855","l":"triglyceride","na":34,"nb":1,"a":[["EC%3A2.3.1.158","phospholipid:diacylglycerol acyltransferase"],["EC%3A2.3.1.77","triacylglycerol--sterol O-acyltransferase"],["EC%3A3.1.1.3","triacylglycerol lipase"],["EC%3A3.1.1.34","lipoprotein lipase"],["EC%3A3.1.1.79","hormone-sensitive lipase"],["RHEA%3A77987","9-hydroxy-octadecanoate + a triacylglycerol = 9-(acyloxy)-octadecanoate + a 1,3-diacylglycerol"]],"b":[["antifungal/triacetin.html","triacetin"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":34,"nb":1,"a":[["Pfam%3APF25848","Rodlin protein"],["Pfam%3APF13420","Acetyltransferase (GNAT) domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF26381","BREX System ATPase PglY protein 5th domain"],["Pfam%3APF26382","BREX System ATPase PglY protein 6th domain"]],"b":[["antibacterial/nocardamine.html","nocardamine"]]},{"id":"CHEBI:35358","l":"","na":1,"nb":33,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/prontosil.html","prontosil"],["antibacterial/sulfabenzamide.html","sulfabenzamide"],["antibacterial/sulfabromomethazine.html","sulfabromomethazine"],["antibacterial/sulfachloropyridazine.html","sulfachloropyridazine"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfaethoxypyridazine.html","sulfaethoxypyridazine"]]},{"id":"ARO:3007155","l":"","na":31,"nb":1,"a":[["ARO%3A3005002","antibiotic resistant polyketide synthase genes"],["ARO%3A3004972","antibiotic resistant ppsA"],["ARO%3A3004883","antibiotic resistant ppsC"],["ARO%3A3004885","antibiotic resistant ppsD"],["ARO%3A3007184","multidrug resistant Rv1258c"],["ARO%3A3004957","Mycobacterium tuberculosis clpC1 with mutation conferring resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"CHEBI:15882","l":"phenol","na":31,"nb":1,"a":[["EC%3A1.14.13.244","phenol 2-monooxygenase (NADH)"],["EC%3A1.14.13.7","phenol 2-monooxygenase (NADPH)"],["EC%3A1.14.14.20","phenol 2-monooxygenase (FADH2)"],["EC%3A2.1.1.25","phenol O-methyltransferase"],["EC%3A2.4.2.55","nicotinate D-ribonucleotide:phenol phospho-D-ribosyltransferase"],["EC%3A2.7.1.238","phenol phosphorylase"]],"b":[["biocide/phenol.html","phenol"]]},{"id":"CHEBI:16236","l":"ethanol","na":31,"nb":1,"a":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.5.5","alcohol dehydrogenase (quinone)"],["EC%3A1.1.99.36","alcohol dehydrogenase (nicotinoprotein)"],["EC%3A2.3.1.268","ethanol O-acetyltransferase"],["EC%3A3.1.1.113","ethyl acetate hydrolase"],["EC%3A3.1.1.67","fatty-acyl-ethyl-ester synthase"]],"b":[["biocide/ethanol.html","ethanol"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae (strain ATCC 42149 / RIB 40)","na":29,"nb":1,"a":[["Pfam%3APF09260","Alpha-amylase, domain C"],["Pfam%3APF28338","AclK C-terminal domain"],["Pfam%3APF09206","Alpha-L-arabinofuranosidase B, catalytic"],["Pfam%3APF28380","Sesquiterpene cyclase astC-like C-terminal domain"],["Pfam%3APF13364","Beta-galactosidase second all-beta domain"],["Pfam%3APF10435","Beta-galactosidase, domain 2"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"ARO:3000527","l":"","na":25,"nb":1,"a":[["ARO%3A3003668","16s rRNA with mutation conferring resistance to polyamine antibiotics"],["ARO%3A3004064","Edeine acetyltransferase"],["ARO%3A3004063","EdeQ"],["ARO%3A3002876","ethambutol resistant aftA"],["ARO%3A3003452","ethambutol resistant embA"],["ARO%3A3000235","ethambutol resistant embB"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003292","l":"fluoroquinolone resistant gyrA","na":25,"nb":1,"a":[["ARO%3A3003817","Acinetobacter baumannii gyrA conferring resistance to fluoroquinolones"],["ARO%3A3003297","Bartonella bacilliformis gyrA conferring resistance to fluoroquinolones"],["ARO%3A3004860","Burkholderia dolosa gyrA conferring resistance to fluoroquinolones"],["ARO%3A3003789","Campylobacter jejuni gyrA conferring resistance to fluoroquinolones"],["ARO%3A3003931","Capnocytophaga gingivalis gyrA conferring resistance to fluoroquinolones"],["ARO%3A3003995","Clostridioides difficile gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/nybomycin.html","nybomycin"]]},{"id":"CHEBI:64683","l":"","na":25,"nb":1,"a":[["EC%3A2.3.1.73","diacylglycerol--sterol O-acyltransferase"],["EC%3A3.1.3.106","2-lysophosphatidate phosphatase"],["RHEA%3A39851","2 a 1-acyl-sn-glycerol = glycerol + a 1,2-diacyl-sn-glycerol"],["RHEA%3A77991","9-hydroxy-octadecanoate + a 1,2-diacyl-sn-glycerol = 9-(acyloxy)-octadecanoate + a 1-acyl-sn-glycerol"],["RHEA%3A35663","a 1,2-diacyl-sn-glycerol + H2O = a 1-acyl-sn-glycerol + a fatty acid + H(+)"],["RHEA%3A39859","a 1,3-diacyl-sn-glycerol + a 1-acyl-sn-glycerol = a triacyl-sn-glycerol + glycerol"]],"b":[["antiviral/1-linoleoyl-sn-glycerol.html","1-linoleoyl-sn-glycerol"]]},{"id":"ARO:3000250","l":"ErmC","na":1,"nb":24,"a":[["ARO%3A3000250","ErmC"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000326","l":"ErmE","na":1,"nb":24,"a":[["ARO%3A3000326","ErmE"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000347","l":"ErmA","na":1,"nb":24,"a":[["ARO%3A3000347","ErmA"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000375","l":"ErmB","na":1,"nb":24,"a":[["ARO%3A3000375","ErmB"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000392","l":"Erm(37)","na":1,"nb":24,"a":[["ARO%3A3000392","Erm(37)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000495","l":"ErmD","na":1,"nb":24,"a":[["ARO%3A3000495","ErmD"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000498","l":"ErmF","na":1,"nb":24,"a":[["ARO%3A3000498","ErmF"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000522","l":"ErmG","na":1,"nb":24,"a":[["ARO%3A3000522","ErmG"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000592","l":"ErmN","na":1,"nb":24,"a":[["ARO%3A3000592","ErmN"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000593","l":"ErmQ","na":1,"nb":24,"a":[["ARO%3A3000593","ErmQ"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000594","l":"ErmR","na":1,"nb":24,"a":[["ARO%3A3000594","ErmR"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000595","l":"ErmT","na":1,"nb":24,"a":[["ARO%3A3000595","ErmT"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000596","l":"ErmX","na":1,"nb":24,"a":[["ARO%3A3000596","ErmX"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000599","l":"Erm(33)","na":1,"nb":24,"a":[["ARO%3A3000599","Erm(33)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000600","l":"Erm(34)","na":1,"nb":24,"a":[["ARO%3A3000600","Erm(34)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000601","l":"Erm(38)","na":1,"nb":24,"a":[["ARO%3A3000601","Erm(38)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000602","l":"Erm(39)","na":1,"nb":24,"a":[["ARO%3A3000602","Erm(39)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000603","l":"Erm(41)","na":1,"nb":24,"a":[["ARO%3A3000603","Erm(41)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000604","l":"Erm(35)","na":1,"nb":24,"a":[["ARO%3A3000604","Erm(35)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000605","l":"Erm(36)","na":1,"nb":24,"a":[["ARO%3A3000605","Erm(36)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"CHEBI:62733","l":"","na":1,"nb":24,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_62733","requires methanophenazine"]],"b":[["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/platencin.html","platencin"],["antibacterial/platensimycin.html","platensimycin"],["antifungal/benomyl.html","benomyl"],["antifungal/bixafen.html","bixafen"],["antifungal/fenhexamid.html","fenhexamid"]]},{"id":"CHEBI:140324","l":"","na":1,"nb":23,"a":[["RHEA%3A85699","an amide = a nitrile + H2O"]],"b":[["antibacterial/cefsulodin.html","cefsulodin"],["antibacterial/cellocidin.html","cellocidin"],["antibacterial/durlobactam.html","durlobactam"],["antibacterial/methacycline.html","methacycline"],["antibacterial/pantocin-a.html","pantocin A"],["antibacterial/promysalin.html","promysalin"]]},{"id":"CHEBI:26658","l":"","na":1,"nb":23,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antibacterial/laurinterol.html","laurinterol"],["antibacterial/suaveolindole.html","suaveolindole"],["antifungal/albicanol.html","(+)-albicanol"],["antifungal/ascochlorin.html","ascochlorin"],["antifungal/caf-603.html","CAF-603"],["antifungal/cj-01.html","CJ-01"]]},{"id":"CHEBI:48132","l":"","na":1,"nb":22,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/minocycline.html","minocycline"],["antibacterial/tetracenomycin-a2.html","tetracenomycin A2"],["antibacterial/tetracenomycin-c.html","tetracenomycin C"],["antibacterial/tetracenomycin-x.html","tetracenomycin X"],["unspecified/8-demethyl-8-2-3-o-dimethyl-%CE%B1-l-rhamnosyl-tetracenomycin-c.html","8-demethyl-8-(2,3-O-dimethyl-α-L-rhamnosyl)tetracenomycin C"],["unspecified/8-demethyl-8-2-o-methyl-%CE%B1-l-rhamnosyl-tetracenomycin-c.html","8-demethyl-8-(2-O-methyl-α-L-rhamnosyl)tetracenomycin C"]]},{"id":"NCBITaxon:284593","l":"Candida glabrata (strain ATCC 2001 / BCRC 20586 / JCM 3761 / NBRC 0622 / NRRL Y-65 / CBS 138)","na":22,"nb":1,"a":[["Pfam%3APF08647","BRE1 E3 ubiquitin ligase"],["Pfam%3APF00649","Copper fist DNA binding domain"],["Pfam%3APF18499","Ubc7p-binding region of Cue1"],["Pfam%3APF18535","Gal11 activator-binding domain (ABD1)"],["Pfam%3APF05390","Yeast cell wall synthesis protein KRE9/KNH1 C-terminal"],["Pfam%3APF09451","Autophagy-related protein 27"]],"b":[["antifungal/fluconazole.html","fluconazole"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":21,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29108","requires calcium(2+)"],["EC%3A1.13.12.24","calcium-regulated photoprotein"],["EC%3A7.2.2.10","P-type Ca(2+) transporter"],["RHEA%3A72631","3 Li(+)(out) + Ca(2+)(in) = 3 Li(+)(in) + Ca(2+)(out)"],["RHEA%3A55884","[aequorin] + 3 Ca(2+) = [aequorin]--dioxetanone"],["RHEA%3A55888","[aequorin]--dioxetanone = excited state-[aequorin] + CO2"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"CHEBI:16016","l":"dihydroxyacetone","na":20,"nb":1,"a":[["EC%3A1.1.1.156","glycerol 2-dehydrogenase (NADP(+))"],["EC%3A1.1.1.6","glycerol dehydrogenase"],["EC%3A1.1.99.22","glycerol dehydrogenase (acceptor)"],["EC%3A2.2.1.3","formaldehyde transketolase"],["EC%3A2.7.1.121","phosphoenolpyruvate--glycerone phosphotransferase"],["EC%3A2.7.1.29","glycerone kinase"]],"b":[["antifungal/dihydroxyacetone.html","dihydroxyacetone"]]},{"id":"CHEBI:24400","l":"","na":1,"nb":17,"a":[["TCDB%3A3.A.3","The P-type ATPase (P-ATPase) Superfamily"]],"b":[["antibacterial/acteoside.html","acteoside"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/fidaxomicin.html","fidaxomicin"],["antibacterial/jadomycin-b.html","jadomycin B"],["antibacterial/josamycin.html","josamycin"],["antibacterial/polyketomycin.html","polyketomycin"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":17,"nb":1,"a":[["Pfam%3APF05932","Tir chaperone protein (CesT) family"],["Pfam%3APF17656","FlgA N-terminal domain"],["Pfam%3APF22200","ExsA N-terminal regulatory domain"],["Pfam%3APF05171","Haemin-degrading HemS.ChuX domain"],["Pfam%3APF07201","HrpJ-like domain"],["Pfam%3APF04391","Protein of unknown function (DUF533)"]],"b":[["unspecified/chir-090.html","CHIR-090"]]},{"id":"CHEBI:16247","l":"","na":16,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.A.79","The Autophagosomal Phospholipid Transmembrane Translocase (Atg9) Family"],["TCDB%3A9.A.36","The Ca2+-dependent Phospholipid Scramblase (Scramblase) Family"],["TCDB%3A1.A.17","The Calcium-dependent Chloride Channel (Ca-ClC) Family"],["TCDB%3A9.B.27","The Death Effector Domain A (DedA) Family"],["TCDB%3A8.A.97","The EPG-3/VMP1 (EPG/VPM) Scramblase Family"]],"b":[["antifungal/miltefosine.html","miltefosine"]]},{"id":"CHEBI:16933","l":"","na":16,"nb":1,"a":[["EC%3A1.3.1.71","Delta(24(24(1)))-sterol reductase"],["EC%3A2.3.2.37","ergosteryl-3beta-O-L-aspartate synthase"],["EC%3A3.1.1.121","ergosteryl-3beta-O-L-aspartate hydrolase"],["EC%3A4.2.1.62","5alpha-hydroxysteroid dehydratase"],["RHEA%3A76559","1-(ergostan-3beta-yl)-L-aspartate + H2O = ergosterol + L-aspartate + H(+)"],["RHEA%3A22064","5alpha-ergosta-7,22-diene-3beta,5-diol = ergosterol + H2O"]],"b":[["antifungal/natamycin.html","natamycin"]]},{"id":"NCBITaxon:498257","l":"Verticillium dahliae (strain VdLs.17 / ATCC MYA-4575 / FGSC 10137)","na":16,"nb":1,"a":[["Pfam%3APF11787","Aft1 HRR domain"],["Pfam%3APF16541","Alternaria alternata allergen 1"],["Pfam%3APF09792","Ubiquitin 3 binding protein But2 C-terminal domain"],["Pfam%3APF28223","CAP22"],["Pfam%3APF05730","CFEM domain"],["Pfam%3APF27979","CON7 transcription factor helical domain"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":16,"nb":1,"a":[["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF03173","Putative carbohydrate binding domain"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"],["Pfam%3APF06438","Heme-binding protein A (HasA)"],["Pfam%3APF02974","Protease inhibitor Inh"],["IEDB%3A36655","epitope LIPDGDGEV"]],"b":[["antibacterial/althiomycin.html","althiomycin"]]},{"id":"CHEBI:16619","l":"(2-trans,6-trans)-farnesol","na":14,"nb":1,"a":[["EC%3A1.1.1.216","farnesol dehydrogenase"],["EC%3A1.1.1.354","farnesol dehydrogenase (NAD(+))"],["EC%3A2.7.1.216","farnesol kinase"],["EC%3A3.1.7.6","farnesyl diphosphatase"],["EC%3A5.2.1.9","farnesol 2-isomerase"],["RHEA%3A13401","(2E,6E)-farnesol = (2Z,6E)-farnesol"]],"b":[["unspecified/2-trans-6-trans-farnesol.html","(2-trans,6-trans)-farnesol"]]},{"id":"CHEBI:60783","l":"","na":1,"nb":14,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antibacterial/oxetanocin-a.html","oxetanocin A"],["antifungal/flucytosine.html","flucytosine"],["antifungal/jawsamycin.html","jawsamycin"],["antiviral/6-azathymidine.html","6-azathymidine"],["antiviral/emtricitabine.html","emtricitabine"],["antiviral/favipiravir-rtp.html","favipiravir-RTP"]]},{"id":"ARO:3003294","l":"Escherichia coli gyrA conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003294","Escherichia coli gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003295","l":"Mycobacterium tuberculosis gyrA conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003295","Mycobacterium tuberculosis gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003296","l":"Staphylococcus aureus gyrA conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003296","Staphylococcus aureus gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003297","l":"Bartonella bacilliformis gyrA conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003297","Bartonella bacilliformis gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003298","l":"Mycobacterium leprae gyrA conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003298","Mycobacterium leprae gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003304","l":"Mycobacterium leprae gyrB conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003304","Mycobacterium leprae gyrB conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003305","l":"Ureaplasma urealyticum gyrB conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003305","Ureaplasma urealyticum gyrB conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003306","l":"Morganella morganii gyrB conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003306","Morganella morganii gyrB conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003307","l":"Salmonella serovars gyrB conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003307","Salmonella serovars gyrB conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003308","l":"Escherichia coli parC conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003308","Escherichia coli parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003309","l":"Ureaplasma urealyticum parC conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003309","Ureaplasma urealyticum parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003310","l":"Mycoplasma hominis parC conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003310","Mycoplasma hominis parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003311","l":"Streptococcus pneumoniae parC conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003311","Streptococcus pneumoniae parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003312","l":"Staphylococcus aureus parC conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003312","Staphylococcus aureus parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003315","l":"Staphylococcus aureus parE conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003315","Staphylococcus aureus parE conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003316","l":"Escherichia coli parE conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003316","Escherichia coli parE conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003317","l":"Salmonella serovars parE conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003317","Salmonella serovars parE conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003817","l":"Acinetobacter baumannii gyrA conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003817","Acinetobacter baumannii gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003818","l":"Acinetobacter baumannii parC conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003818","Acinetobacter baumannii parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003459","l":"Mycobacterium tuberculosis gyrB mutant conferring resistance to fluoroquinolones","na":1,"nb":12,"a":[["ARO%3A3003459","Mycobacterium tuberculosis gyrB mutant conferring resistance to fluoroquinolones"]],"b":[["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"CHEBI:16188","l":"octan-1-ol","na":12,"nb":1,"a":[["EC%3A1.1.1.73","octanol dehydrogenase"],["EC%3A1.14.15.3","alkane 1-monooxygenase"],["RHEA%3A79323","octan-1-ol + 2 Fe(III)-[cytochrome c] = octanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A64628","octan-1-ol + acetyl-CoA = octyl acetate + CoA"],["RHEA%3A64852","octan-1-ol + benzoyl-CoA = octyl benzoate + CoA"],["RHEA%3A44064","octan-1-ol + hexadecanoyl-CoA = octyl hexadecanoate + CoA"]],"b":[["antifungal/octan-1-ol.html","octan-1-ol"]]},{"id":"CHEBI:22479","l":"","na":1,"nb":12,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/astromicin.html","astromicin"],["antibacterial/etimicin.html","etimicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"CHEBI:28077","l":"rifampicin","na":12,"nb":1,"a":[["ARO%3A3007073","Bacillus subtilis rpoB mutants conferring resistance to rifampin"],["ARO%3A3004480","Bifidobacterium adolescentis rpoB mutants conferring resistance to rifampicin"],["ARO%3A3004563","Clostridioides difficile rpoB with mutation conferring resistance to rifampicin"],["ARO%3A3003288","Escherichia coli rpoB mutants conferring resistance to rifampicin"],["ARO%3A3007051","Helicobacter pylori rpoB mutation conferring resistance to rifampicin"],["ARO%3A3003284","Mycobacterium leprae rpoB mutations conferring resistance to rifampicin"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3000858","l":"armA","na":1,"nb":11,"a":[["ARO%3A3000858","armA"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/g418.html","G418"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3000859","l":"rmtA","na":1,"nb":11,"a":[["ARO%3A3000859","rmtA"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/g418.html","G418"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3000860","l":"rmtB","na":1,"nb":11,"a":[["ARO%3A3000860","rmtB"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/g418.html","G418"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3000861","l":"rmtC","na":1,"nb":11,"a":[["ARO%3A3000861","rmtC"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/g418.html","G418"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3000862","l":"sgm","na":1,"nb":11,"a":[["ARO%3A3000862","sgm"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/g418.html","G418"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3007153","l":"","na":11,"nb":1,"a":[["ARO%3A3003734","antibiotic resistant fusA"],["ARO%3A3003736","antibiotic resistant fusE"],["ARO%3A3003552","fusB"],["ARO%3A3003733","fusC"],["ARO%3A3003731","fusD"],["ARO%3A3004663","FusF"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"CHEBI:17847","l":"p-cresol","na":11,"nb":1,"a":[["EC%3A1.14.13.236","toluene 4-monooxygenase"],["EC%3A1.17.9.1","4-methylphenol dehydrogenase (hydroxylating)"],["EC%3A4.1.1.83","4-hydroxyphenylacetate decarboxylase"],["EC%3A4.1.99.19","2-iminoacetate synthase"],["RHEA%3A22732","4-hydroxyphenylacetate + H(+) = 4-methylphenol + CO2"],["RHEA%3A56976","4-methylphenol + 2 oxidized [azurin] + H2O = 4-hydroxybenzyl alcohol + 2 reduced [azurin] + 2 H(+)"]],"b":[["antifungal/p-cresol.html","p-cresol"]]},{"id":"CHEBI:24396","l":"","na":1,"nb":11,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/chloroeremomycin.html","chloroeremomycin"],["antibacterial/dalbavancin.html","dalbavancin"],["antibacterial/oritavancin.html","oritavancin"],["antibacterial/phleomycin-d1.html","phleomycin D1"],["antibacterial/ristocetin.html","ristocetin"],["antibacterial/telavancin.html","telavancin"]]},{"id":"CHEBI:24869","l":"ionophore","na":1,"nb":11,"a":[["TCDB%3A2.A.74","The 4 TMS Multidrug Endosomal Transporter (MET) Family"]],"b":[["antibacterial/cccp.html","CCCP"],["antibacterial/indanomycin.html","indanomycin"],["antifungal/beauvericin.html","beauvericin"],["antifungal/monensin-a.html","monensin A"],["antiprotozoal/lasalocid-sodium.html","lasalocid sodium"],["antiprotozoal/lasalocid.html","lasalocid"]]},{"id":"CHEBI:28591","l":"guaiacol","na":11,"nb":1,"a":[["EC%3A1.11.1.14","lignin peroxidase"],["EC%3A1.11.1.16","versatile peroxidase"],["RHEA%3A48004","1-(3,4-dimethoxyphenyl)-2-(2-methoxyphenoxy)propane-1,3-diol + H2O2 = 3,4-dimethoxybenzaldehyde + guaiacol + glycolaldehyde + H2O"],["RHEA%3A22396","1-(4-hydroxy-3-methoxyphenyl)-2-(2-methoxyphenoxy)propane-1,3-diol + H2O2 = guaiacol + vanillin + glycolaldehyde + H2O"],["RHEA%3A72243","catechol + S-adenosyl-L-methionine = guaiacol + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A72339","guaiacol + Co(I)-[methoxylated-aromatic-compound-specific corrinoid protein] + H(+) = methyl-Co(III)-[methoxylated-aromatic-compound-specific corrinoid protein] + catechol"]],"b":[["biocide/guaiacol.html","guaiacol"]]},{"id":"CHEBI:29256","l":"","na":11,"nb":1,"a":[["EC%3A1.8.3.7","formylglycine-generating enzyme"],["EC%3A2.1.1.9","thiol S-methyltransferase"],["EC%3A2.8.2.16","thiol sulfotransferase"],["EC%3A4.4.1.13","cysteine-S-conjugate beta-lyase"],["RHEA%3A82919","a thioester + H2O = a thiol + a carboxylate + H(+)"],["RHEA%3A14637","a thiol + 3'-phosphoadenylyl sulfate = S-alkyl thiosulfate + adenosine 3',5'-bisphosphate + H(+)"]],"b":[["antifungal/fusarithioamide-a.html","fusarithioamide A"]]},{"id":"CHEBI:46762","l":"(E,E,E)-geranylgeraniol","na":11,"nb":1,"a":[["EC%3A1.14.14.146","geranylgeraniol 18-hydroxylase"],["EC%3A3.1.7.5","geranylgeranyl diphosphate diphosphatase"],["RHEA%3A46108","(2E,6E,10E)-geranylgeraniol + 2 NADPH + 2 O2 + H(+) = (2E,6E,10E)-geranylgeranate + 2 NADP(+) + 3 H2O"],["RHEA%3A61664","(2E,6E,10E)-geranylgeraniol + ATP = (2E,6E,10E)-geranylgeranyl phosphate + ADP + H(+)"],["RHEA%3A63456","(2E,6E,10E)-geranylgeraniol + CTP = (2E,6E,10E)-geranylgeranyl phosphate + CDP + H(+)"],["RHEA%3A63460","(2E,6E,10E)-geranylgeraniol + GTP = (2E,6E,10E)-geranylgeranyl phosphate + GDP + H(+)"]],"b":[["antiprotozoal/e-e-e-geranylgeraniol.html","(E,E,E)-geranylgeraniol"]]},{"id":"CHEBI:50744","l":"","na":11,"nb":1,"a":[["TCDB%3A2.A.24","The 2-Hydroxycarboxylate Transporter (2-HCT) Family"],["TCDB%3A1.A.46","The Anion Channel-forming Bestrophin (Bestrophin) Family"],["TCDB%3A2.A.45","The Arsenite-Antimonite (ArsB) Efflux Family"],["TCDB%3A2.A.11","The Citrate-Mg2+:H+ (CitM) Citrate-Ca2+:H+ (CitH) Symporter (CitMHS) Family"],["TCDB%3A2.A.47","The Divalent Anion:Na+ Symporter (DASS) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antiviral/tamoxifen-citrate.html","tamoxifen citrate"]]},{"id":"NCBITaxon:341663","l":"","na":11,"nb":1,"a":[["Pfam%3APF27751","ATEG_07667 C-terminal domain"],["Pfam%3APF28386","BfoA family C-terminal domain"],["Pfam%3APF03879","Cgr1 family"],["Pfam%3APF22621","CurL-like, PKS C-terminal"],["Pfam%3APF18558","Methyltransferase, Helix-turn-helix domain"],["Pfam%3APF06355","Aegerolysin"]],"b":[["antiviral/aspulvinone-e.html","aspulvinone E"]]},{"id":"ARO:3002814","l":"clbA","na":1,"nb":10,"a":[["ARO%3A3002814","clbA"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002815","l":"clbB","na":1,"nb":10,"a":[["ARO%3A3002815","clbB"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002816","l":"clbC","na":1,"nb":10,"a":[["ARO%3A3002816","clbC"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3003038","l":"MexXY-OprA","na":1,"nb":10,"a":[["ARO%3A3003038","MexXY-OprA"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/gentamicin-c.html","gentamicin C"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3003441","l":"cfrA","na":1,"nb":10,"a":[["ARO%3A3003441","cfrA"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3003578","l":"PmrF","na":10,"nb":1,"a":[["ARO%3A3002985","arnA"],["ARO%3A3005053","ArnT"],["ARO%3A3005063","cprR"],["ARO%3A3005065","cprRS"],["ARO%3A3005064","cprS"],["ARO%3A3005068","ParR"]],"b":[["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3003907","l":"cipA","na":1,"nb":10,"a":[["ARO%3A3003907","cipA"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3003966","l":"Klebsiella pneumoniae OmpK35","na":1,"nb":10,"a":[["ARO%3A3003966","Klebsiella pneumoniae OmpK35"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefamandole.html","cefamandole"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"ARO:3003969","l":"lmrP","na":1,"nb":10,"a":[["ARO%3A3003969","lmrP"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"CHEBI:16547","l":"coniferyl aldehyde","na":10,"nb":1,"a":[["EC%3A1.1.1.194","coniferyl-alcohol dehydrogenase"],["EC%3A1.1.1.195","cinnamyl-alcohol dehydrogenase"],["EC%3A1.2.1.44","cinnamoyl-CoA reductase"],["EC%3A1.2.1.68","coniferyl-aldehyde dehydrogenase"],["RHEA%3A23968","(E)-coniferaldehyde + NAD(+) + H2O = (E)-ferulate + NADH + 2 H(+)"],["RHEA%3A64648","(E)-coniferaldehyde + NADP(+) + CoA = (E)-feruloyl-CoA + NADPH + H(+)"]],"b":[["antifungal/coniferyl-aldehyde.html","coniferyl aldehyde"]]},{"id":"CHEBI:17698","l":"chloramphenicol","na":10,"nb":1,"a":[["EC%3A1.14.99.67","alpha-N-dichloroacetyl-p-aminophenylserinol N-oxygenase"],["EC%3A2.3.1.28","chloramphenicol O-acetyltransferase"],["RHEA%3A58884","alpha-N-dichloroacetyl-p-aminophenylserinol + AH2 + 2 O2 = chloramphenicol + A + 2 H2O"],["RHEA%3A18421","chloramphenicol + acetyl-CoA = chloramphenicol 3-acetate + CoA"],["RHEA%3A35287","chloramphenicol(in) + ATP + H2O = chloramphenicol(out) + ADP + phosphate + H(+)"],["RHEA%3A35059","chloramphenicol(in) + H(+)(out) = chloramphenicol(out) + H(+)(in)"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"CHEBI:48120","l":"","na":1,"nb":10,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["unspecified/13-deoxydaunorubicin.html","13-deoxydaunorubicin"],["unspecified/13-dihydrodaunorubicin.html","13-dihydrodaunorubicin"],["unspecified/4-epidoxorubicin.html","4'-epidoxorubicin"],["unspecified/aclacinomycin-a.html","aclacinomycin A"],["unspecified/aclacinomycin-n.html","aclacinomycin N"],["unspecified/aclacinomycin-s.html","aclacinomycin S"]]},{"id":"CHEBI:4885","l":"ethionamide","na":10,"nb":1,"a":[["RHEA%3A47616","ethionamide + NADPH + O2 + H(+) = ethionamide S-oxide + NADP(+) + H2O"],["ARO%3A3003456","antibiotic resistant ethA"],["ARO%3A3003457","ethionamide resistant ethA"],["ARO%3A3005103","isoniazid resistant ethA"],["ARO%3A3005105","Mycobacterium tuberculosis ethA mutations conferring resistance to isoniazid"],["ARO%3A3005178","Mycobacterium tuberculosis ethA mutations conferring resistance to perchlozone"]],"b":[["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"CHEBI:64760","l":"","na":10,"nb":1,"a":[["RHEA%3A44876","a 1,3-diacylglycerol + H2O = a 3-acyl-sn-glycerol + a fatty acid + H(+)"],["RHEA%3A44176","a 2,3-diacyl-sn-glycerol + H2O = a 3-acyl-sn-glycerol + a fatty acid + H(+)"],["RHEA%3A39659","a 3-acyl-sn-glycerol + a 1,2-diacyl-sn-glycero-3-phosphocholine = a 1,3-diacyl-sn-glycerol + a 1-acyl-sn-glycero-3-phosphocholine"],["RHEA%3A78035","a 3-acyl-sn-glycerol + a 1,2-diacyl-sn-glycero-3-phosphocholine = a 1,3-diacyl-sn-glycerol + a 2-acyl-sn-glycero-3-phosphocholine"],["RHEA%3A78131","a 3-acyl-sn-glycerol + a 1,2-diacyl-sn-glycero-3-phosphocholine = a 1,3-diacylglycerol + a 1-acyl-sn-glycero-3-phosphocholine"],["RHEA%3A78135","a 3-acyl-sn-glycerol + a 1,2-diacyl-sn-glycero-3-phosphocholine = a 1,3-diacylglycerol + a 2-acyl-sn-glycero-3-phosphocholine"]],"b":[["antiviral/3-linoleoyl-sn-glycerol.html","3-linoleoyl-sn-glycerol"]]},{"id":"CHEBI:78236","l":"N-acetyl-L-cysteinate","na":10,"nb":1,"a":[["EC%3A1.10.3.15","grixazone synthase"],["RHEA%3A41424","2 3-amino-4-hydroxybenzaldehyde + N-acetyl-L-cysteine + 2 O2 = grixazone A + formate + 3 H2O + H(+)"],["RHEA%3A41420","2 3-amino-4-hydroxybenzoate + N-acetyl-L-cysteine + 2 O2 + H(+) = grixazone B + CO2 + 4 H2O"],["RHEA%3A75515","N-acetyl-L-cysteine + H2O = L-cysteine + acetate"],["RHEA%3A74567","N-acetyl-L-cysteine(out) + L-glutamate(in) = N-acetyl-L-cysteine(in) + L-glutamate(out)"],["RHEA%3A76543","N-acetyl-S-(2-succino)-L-cysteine = N-acetyl-L-cysteine + fumarate"]],"b":[["antiviral/n-acetyl-l-cysteinate.html","N-acetyl-L-cysteinate"]]},{"id":"NCBITaxon:1496","l":"Clostridioides difficile","na":10,"nb":1,"a":[["Pfam%3APF18671","4-Hydroxyphenylacetate decarboxylase subunit gamma N-terminal"],["Pfam%3APF00302","Chloramphenicol acetyltransferase"],["Pfam%3APF18524","High potential iron-sulfur protein like"],["Pfam%3APF06050","2-hydroxyglutaryl-CoA dehydratase, D-component"],["PROSITE%3APS00100","Chloramphenicol acetyltransferase active site"],["Pfam%3APF01473","Putative cell wall binding repeat"]],"b":[["antibacterial/fidaxomicin.html","fidaxomicin"]]},{"id":"ARO:3000318","l":"mphB","na":1,"nb":9,"a":[["ARO%3A3000318","mphB"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/oleandomycin.html","oleandomycin"],["antibacterial/roxithromycin.html","roxithromycin"]]},{"id":"ARO:3000319","l":"mphC","na":1,"nb":9,"a":[["ARO%3A3000319","mphC"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/oleandomycin.html","oleandomycin"],["antibacterial/roxithromycin.html","roxithromycin"]]},{"id":"ARO:3000410","l":"sul1","na":1,"nb":9,"a":[["ARO%3A3000410","sul1"]],"b":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfacetamide.html","sulfacetamide"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfamethazine.html","sulfamethazine"],["antibacterial/sulfamethizole.html","sulfamethizole"],["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3000412","l":"sul2","na":1,"nb":9,"a":[["ARO%3A3000412","sul2"]],"b":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfacetamide.html","sulfacetamide"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfamethazine.html","sulfamethazine"],["antibacterial/sulfamethizole.html","sulfamethizole"],["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3000413","l":"sul3","na":1,"nb":9,"a":[["ARO%3A3000413","sul3"]],"b":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfacetamide.html","sulfacetamide"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfamethazine.html","sulfamethazine"],["antibacterial/sulfamethizole.html","sulfamethizole"],["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3001307","l":"vgbA","na":1,"nb":9,"a":[["ARO%3A3001307","vgbA"]],"b":[["antibacterial/ostreogrycin-b3.html","ostreogrycin B3"],["antibacterial/patricin-a.html","patricin A"],["antibacterial/patricin-b.html","patricin B"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"],["antibacterial/pristinamycin-ib.html","pristinamycin IB"],["antibacterial/pristinamycin-ic.html","pristinamycin IC"]]},{"id":"ARO:3001308","l":"vgbB","na":1,"nb":9,"a":[["ARO%3A3001308","vgbB"]],"b":[["antibacterial/ostreogrycin-b3.html","ostreogrycin B3"],["antibacterial/patricin-a.html","patricin A"],["antibacterial/patricin-b.html","patricin B"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"],["antibacterial/pristinamycin-ib.html","pristinamycin IB"],["antibacterial/pristinamycin-ic.html","pristinamycin IC"]]},{"id":"ARO:3002536","l":"AAC(3)-IIIa","na":1,"nb":9,"a":[["ARO%3A3002536","AAC(3)-IIIa"]],"b":[["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"]]},{"id":"ARO:3002537","l":"AAC(3)-IIIb","na":1,"nb":9,"a":[["ARO%3A3002537","AAC(3)-IIIb"]],"b":[["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"]]},{"id":"ARO:3002597","l":"AAC(6')-Ie-APH(2')-Ia bifunctional protein","na":1,"nb":9,"a":[["ARO%3A3002597","AAC(6')-Ie-APH(2')-Ia bifunctional protein"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3002598","l":"ANT(3')-II-AAC(6')-IId bifunctional protein","na":1,"nb":9,"a":[["ARO%3A3002598","ANT(3')-II-AAC(6')-IId bifunctional protein"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002647","l":"","na":1,"nb":9,"a":[["ARO%3A3002647","APH(3')-IIIa"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/butirosin.html","butirosin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003386","l":"Escherichia coli folP with mutation conferring resistance to sulfonamides","na":1,"nb":9,"a":[["ARO%3A3003386","Escherichia coli folP with mutation conferring resistance to sulfonamides"]],"b":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfacetamide.html","sulfacetamide"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfamethazine.html","sulfamethazine"],["antibacterial/sulfamethizole.html","sulfamethizole"],["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3003387","l":"Streptococcus pyogenes folP with mutation conferring resistance to sulfonamides","na":1,"nb":9,"a":[["ARO%3A3003387","Streptococcus pyogenes folP with mutation conferring resistance to sulfonamides"]],"b":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfacetamide.html","sulfacetamide"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfamethazine.html","sulfamethazine"],["antibacterial/sulfamethizole.html","sulfamethizole"],["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3003697","l":"MexPQ-OpmE","na":1,"nb":9,"a":[["ARO%3A3003697","MexPQ-OpmE"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/imipenem.html","imipenem"],["antibacterial/josamycin.html","josamycin"],["antibacterial/rokitamycin.html","rokitamycin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003990","l":"vgbC","na":1,"nb":9,"a":[["ARO%3A3003990","vgbC"]],"b":[["antibacterial/ostreogrycin-b3.html","ostreogrycin B3"],["antibacterial/patricin-a.html","patricin A"],["antibacterial/patricin-b.html","patricin B"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"],["antibacterial/pristinamycin-ib.html","pristinamycin IB"],["antibacterial/pristinamycin-ic.html","pristinamycin IC"]]},{"id":"CHEBI:35627","l":"","na":9,"nb":1,"a":[["EC%3A3.5.2.6","beta-lactamase"],["RHEA%3A20401","a beta-lactam + H2O = a substituted beta-amino acid"],["TCDB%3A2.C.1","The TonB-ExbB-ExbD/TolA-TolQ-TolR Outer Membrane Receptor Energizers and Stabilizers (TonB/TolA) Family"],["MCSA%3A2","beta-lactamase (Class A)"],["MCSA%3A15","beta-lactamase (Class B1)"],["MCSA%3A16","beta-lactamase (Class B1)"]],"b":[["unspecified/azetidin-2-one.html","azetidin-2-one"]]},{"id":"CHEBI:78274","l":"ferruginol","na":9,"nb":1,"a":[["EC%3A1.14.14.175","ferruginol synthase"],["EC%3A1.14.14.60","ferruginol monooxygenase"],["EC%3A1.14.14.62","salviol synthase"],["EC%3A1.14.14.65","sugiol synthase"],["RHEA%3A48080","abieta-8,11,13-triene + reduced [NADPH--hemoprotein reductase] + O2 = ferruginol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A55456","ferruginol + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = sugiol + 2 oxidized [NADPH--hemoprotein reductase] + 3 H2O + 2 H(+)"]],"b":[["antibacterial/ferruginol.html","ferruginol"]]},{"id":"CHEBI:83563","l":"","na":9,"nb":1,"a":[["EC%3A1.14.14.28","long-chain alkane monooxygenase"],["EC%3A4.1.1.106","fatty acid photodecarboxylase"],["EC%3A4.1.99.5","aldehyde oxygenase (deformylating)"],["RHEA%3A49060","a long-chain alkane + FMNH2 + O2 = a long chain fatty alcohol + FMN + H2O + H(+)"],["RHEA%3A18969","a long-chain fatty acid + hnu + H(+) = a long-chain alkane + CO2"],["RHEA%3A21440","a long-chain fatty aldehyde + 2 NADPH + O2 + H(+) = a long-chain alkane + formate + 2 NADP(+) + H2O"]],"b":[["antimycobacterial/hentriacontane.html","hentriacontane"]]},{"id":"CHEBI:87393","l":"hexan-1-ol","na":9,"nb":1,"a":[["RHEA%3A65480","2-methylbutanoyl-CoA + hexan-1-ol = hexyl 2-methylbutanoate + CoA"],["RHEA%3A79331","hexan-1-ol + 2 Fe(III)-[cytochrome c] = hexanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A65460","hexan-1-ol + acetyl-CoA = hexyl acetate + CoA"],["RHEA%3A65444","hexan-1-ol + butanoyl-CoA = hexyl butanoate + CoA"],["RHEA%3A65484","hexan-1-ol + hexanoyl-CoA = hexyl hexanoate + CoA"],["RHEA%3A60972","hexan-1-ol + NAD(+) = hexanal + NADH + H(+)"]],"b":[["antibacterial/hexan-1-ol.html","hexan-1-ol"]]},{"id":"UniProt:P06633","l":"","na":9,"nb":1,"a":[["GO%3A0004424","imidazoleglycerol-phosphate dehydratase activity"],["NCBIfam%3ANF002114","imidazoleglycerol-phosphate dehydratase HisB"],["InterPro%3AIPR020565","Imidazoleglycerol-phosphate dehydratase, conserved site"],["CDD%3Acd07914","IGPD"],["InterPro%3AIPR038494","Imidazole glycerol phosphate dehydratase domain superfamily"],["PROSITE%3APS00954","Imidazoleglycerol-phosphate dehydratase signature 1"]],"b":[["antiviral/nevirapine.html","nevirapine"]]},{"id":"ARO:3002013","l":"CMY-2","na":1,"nb":8,"a":[["ARO%3A3002013","CMY-2"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002539","l":"AAC(3)-IVa","na":1,"nb":8,"a":[["ARO%3A3002539","AAC(3)-IVa"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/apramycin.html","apramycin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"]]},{"id":"ARO:3002585","l":"","na":1,"nb":8,"a":[["ARO%3A3002585","AAC(6')-31"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/netilmycin.html","netilmycin"]]},{"id":"ARO:3002652","l":"","na":1,"nb":8,"a":[["ARO%3A3002652","APH(3')-VIa"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/butirosin.html","butirosin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3002653","l":"","na":1,"nb":8,"a":[["ARO%3A3002653","APH(3')-VIb"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/butirosin.html","butirosin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004476","l":"vmlR","na":1,"nb":8,"a":[["ARO%3A3004476","vmlR"]],"b":[["antibacterial/a201a.html","A201A"],["antibacterial/hygromycin-a.html","hygromycin A"],["antibacterial/iboxamycin.html","iboxamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"]]},{"id":"ARO:3004578","l":"Acinetobacter baumannii AbuO","na":1,"nb":8,"a":[["ARO%3A3004578","Acinetobacter baumannii AbuO"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"],["antibacterial/carbenicillin.html","carbenicillin"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3004856","l":"SCO-1","na":1,"nb":8,"a":[["ARO%3A3004856","SCO-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/cefuroxime.html","cefuroxime"]]},{"id":"ARO:3005111","l":"blaS1","na":1,"nb":8,"a":[["ARO%3A3005111","blaS1"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/carbenicillin.html","carbenicillin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/mezlocillin.html","mezlocillin"]]},{"id":"ARO:3005511","l":"VIM-63","na":1,"nb":8,"a":[["ARO%3A3005511","VIM-63"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/faropenem.html","faropenem"]]},{"id":"CHEBI:27949","l":"(E)-sinapaldehyde","na":8,"nb":1,"a":[["EC%3A1.1.1.195","cinnamyl-alcohol dehydrogenase"],["RHEA%3A72027","(E)-sinapaldehyde + L-proline = (E)-nesocodin (alcohol-form) + H2O"],["RHEA%3A64656","(E)-sinapaldehyde + NADP(+) + CoA = (E)-sinapoyl-CoA + NADPH + H(+)"],["RHEA%3A57712","(E)-sinapaldehyde + UDP-alpha-D-glucose = 4-O-(beta-D-glucosyl)-4-trans-sinapoyl aldehyde + UDP + H(+)"],["RHEA%3A76459","(E)-sinapyl alcohol + A = (E)-sinapaldehyde + AH2"],["RHEA%3A45704","(E)-sinapyl alcohol + NADP(+) = (E)-sinapaldehyde + NADPH + H(+)"]],"b":[["antifungal/e-sinapaldehyde.html","(E)-sinapaldehyde"]]},{"id":"CHEBI:383703","l":"3,6-diamino-10-methylacridinium chloride","na":8,"nb":1,"a":[["TCDB%3A2.A.85","The Aromatic Acid Exporter (ArAE) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.117","The Chlorhexadine Exporter (CHX) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antibacterial/3-6-diamino-10-methylacridinium-chloride.html","3,6-diamino-10-methylacridinium chloride"]]},{"id":"CHEBI:6030","l":"isoniazide","na":8,"nb":1,"a":[["ARO%3A3004266","antibiotic resistant katG"],["ARO%3A3003416","isoniazid resistant katG"],["ARO%3A3003392","Mycobacterium tuberculosis katG mutations conferring resistance to isoniazid"],["ARO%3A3005102","Mycobacterium tuberculosis katG mutations conferring resistance to prothionamide"],["ARO%3A3005101","prothionamide resistant katG"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"CHEBI:77932","l":"tetracycline zwitterion","na":8,"nb":1,"a":[["EC%3A1.14.13.231","tetracycline 11a-monooxygenase"],["EC%3A1.14.19.49","tetracycline 7-halogenase"],["EC%3A1.3.98.4","5a,11a-dehydrotetracycline reductase"],["RHEA%3A50712","tetracycline + FADH2 + chloride + O2 = 7-chlorotetracycline + FAD + 2 H2O + H(+)"],["RHEA%3A35235","tetracycline(in) + H(+)(out) = tetracycline(out) + H(+)(in)"],["RHEA%3A35239","tetracycline(in) = tetracycline(out)"]],"b":[["antibacterial/tetracycline-zwitterion.html","tetracycline zwitterion"]]},{"id":"ARO:3000205","l":"tet(X)","na":1,"nb":7,"a":[["ARO%3A3000205","tet(X)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000316","l":"mphA","na":1,"nb":7,"a":[["ARO%3A3000316","mphA"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/oleandomycin.html","oleandomycin"],["antibacterial/roxithromycin.html","roxithromycin"]]},{"id":"ARO:3000497","l":"ethambutol","na":7,"nb":1,"a":[["ARO%3A3003447","ethambutol resistant iniA"],["ARO%3A3004136","Ethambutol resistant iniB"],["ARO%3A3003450","Ethambutol resistant iniC"],["ARO%3A3003448","Mycobacterium tuberculosis iniA mutant conferring resistance to ethambutol"],["ARO%3A3004135","Mycobacterium tuberculosis iniB with mutation conferring resistance to ethambutol"],["ARO%3A3003451","Mycobacterium tuberculosis iniC mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3000520","l":"isoniazid","na":7,"nb":1,"a":[["ARO%3A3004921","Mycobacterium tuberculosis ahpC mutations confer resistance to isoniazid"],["ARO%3A3004924","Mycobacterium tuberculosis inbR mutations conferring resistance to isoniazid"],["ARO%3A3007798","Mycobacterium tuberculosis iniA mutations conferring resistance to isoniazid"],["ARO%3A3003463","Mycobacterium tuberculosis kasA mutant conferring resistance to isoniazid"],["ARO%3A3004929","Mycobacterium tuberculosis mmaA3 mutations conferring resistance to isoniazid"],["ARO%3A3004928","Mycobacterium tuberculosis mymA mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3001866","l":"CTX-M-3","na":1,"nb":7,"a":[["ARO%3A3001866","CTX-M-3"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002500","l":"PDC-3","na":1,"nb":7,"a":[["ARO%3A3002500","PDC-3"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002502","l":"PDC-5","na":1,"nb":7,"a":[["ARO%3A3002502","PDC-5"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002533","l":"AAC(3)-IIa","na":1,"nb":7,"a":[["ARO%3A3002533","AAC(3)-IIa"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002534","l":"AAC(3)-IIb","na":1,"nb":7,"a":[["ARO%3A3002534","AAC(3)-IIb"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002535","l":"AAC(3)-IIc","na":1,"nb":7,"a":[["ARO%3A3002535","AAC(3)-IIc"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002545","l":"","na":1,"nb":7,"a":[["ARO%3A3002545","AAC(6')-Ia"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002549","l":"","na":1,"nb":7,"a":[["ARO%3A3002549","AAC(6')-Ic"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002553","l":"","na":1,"nb":7,"a":[["ARO%3A3002553","AAC(6')-If"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002554","l":"","na":1,"nb":7,"a":[["ARO%3A3002554","AAC(6')-Ig"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002555","l":"","na":1,"nb":7,"a":[["ARO%3A3002555","AAC(6')-Ih"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002556","l":"","na":1,"nb":7,"a":[["ARO%3A3002556","AAC(6')-Ii"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002557","l":"","na":1,"nb":7,"a":[["ARO%3A3002557","AAC(6')-Ij"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002558","l":"","na":1,"nb":7,"a":[["ARO%3A3002558","AAC(6')-Ik"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002559","l":"","na":1,"nb":7,"a":[["ARO%3A3002559","AAC(6')-Ip"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002560","l":"","na":1,"nb":7,"a":[["ARO%3A3002560","AAC(6')-Iq"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002561","l":"","na":1,"nb":7,"a":[["ARO%3A3002561","AAC(6')-Ir"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002562","l":"","na":1,"nb":7,"a":[["ARO%3A3002562","AAC(6')-Is"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002563","l":"","na":1,"nb":7,"a":[["ARO%3A3002563","AAC(6')-Isa"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002564","l":"","na":1,"nb":7,"a":[["ARO%3A3002564","AAC(6')-It"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002565","l":"","na":1,"nb":7,"a":[["ARO%3A3002565","AAC(6')-Iu"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002566","l":"","na":1,"nb":7,"a":[["ARO%3A3002566","AAC(6')-Iv"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002567","l":"","na":1,"nb":7,"a":[["ARO%3A3002567","AAC(6')-Iw"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002568","l":"","na":1,"nb":7,"a":[["ARO%3A3002568","AAC(6')-Ix"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002569","l":"","na":1,"nb":7,"a":[["ARO%3A3002569","AAC(6')-Iy"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002570","l":"","na":1,"nb":7,"a":[["ARO%3A3002570","AAC(6')-Iz"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002571","l":"","na":1,"nb":7,"a":[["ARO%3A3002571","AAC(6')-Iaa"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002572","l":"","na":1,"nb":7,"a":[["ARO%3A3002572","AAC(6')-Iad"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002573","l":"","na":1,"nb":7,"a":[["ARO%3A3002573","AAC(6')-Iae"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002574","l":"","na":1,"nb":7,"a":[["ARO%3A3002574","AAC(6')-Iaf"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002575","l":"","na":1,"nb":7,"a":[["ARO%3A3002575","AAC(6')-Iai"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002588","l":"","na":1,"nb":7,"a":[["ARO%3A3002588","AAC(6')-I30"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002589","l":"","na":1,"nb":7,"a":[["ARO%3A3002589","AAC(6')-Iid"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002590","l":"","na":1,"nb":7,"a":[["ARO%3A3002590","AAC(6')-Iih"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002594","l":"","na":1,"nb":7,"a":[["ARO%3A3002594","AAC(6')-IIa"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002595","l":"","na":1,"nb":7,"a":[["ARO%3A3002595","AAC(6')-IIb"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002596","l":"","na":1,"nb":7,"a":[["ARO%3A3002596","AAC(6')-IIc"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002824","l":"ErmV","na":1,"nb":7,"a":[["ARO%3A3002824","ErmV"]],"b":[["antibacterial/carbomycin.html","carbomycin"],["antibacterial/celesticetin.html","celesticetin"],["antibacterial/chalcomycin.html","chalcomycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/josamycin.html","josamycin"],["antibacterial/oleandomycin.html","oleandomycin"]]},{"id":"ARO:3003199","l":"","na":1,"nb":7,"a":[["ARO%3A3003199","AAC(6')-Iak"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3003200","l":"","na":1,"nb":7,"a":[["ARO%3A3003200","AAC(6')-Ian"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3003677","l":"","na":1,"nb":7,"a":[["ARO%3A3003677","AAC(6')-Iaj"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3004128","l":"Serratia marcescens Omp1","na":1,"nb":7,"a":[["ARO%3A3004128","Serratia marcescens Omp1"]],"b":[["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/moxalactam.html","moxalactam"]]},{"id":"ARO:3004491","l":"","na":7,"nb":1,"a":[["ARO%3A3007477","antibiotic resistant ATP synthase"],["ARO%3A3007673","bedaquiline resistant Rv0678"],["ARO%3A3007691","bedaquiline resistant Rv2535c"],["ARO%3A3007476","Mycobacterium abscessus atpE with mutation conferring resistance to bedaquiline"],["ARO%3A3007854","Mycobacterium tuberculosis atpE with mutation conferring resistance to bedaquiline"],["ARO%3A3007674","Mycobacterium tuberculosis Rv0678 with mutation conferring resistance to bedaquiline"]],"b":[["antimycobacterial/bedaquiline.html","bedaquiline"]]},{"id":"ARO:3004559","l":"CAM-1","na":1,"nb":7,"a":[["ARO%3A3004559","CAM-1"]],"b":[["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftolozane.html","ceftolozane"],["antibacterial/doripenem.html","doripenem"],["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3004572","l":"Staphylococcus aureus LmrS","na":1,"nb":7,"a":[["ARO%3A3004572","Staphylococcus aureus LmrS"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/florfenicol.html","florfenicol"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/linezolid.html","linezolid"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004621","l":"AAC(3)-IIe","na":1,"nb":7,"a":[["ARO%3A3004621","AAC(3)-IIe"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3004623","l":"AAC(3)-IId","na":1,"nb":7,"a":[["ARO%3A3004623","AAC(3)-IId"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3004629","l":"","na":1,"nb":7,"a":[["ARO%3A3004629","AAC(6')-Im"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3004635","l":"","na":1,"nb":7,"a":[["ARO%3A3004635","AAC(6')-Il"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3004638","l":"","na":1,"nb":7,"a":[["ARO%3A3004638","AAC(6')-I-48"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3004825","l":"LAP-1","na":1,"nb":7,"a":[["ARO%3A3004825","LAP-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefuroxime.html","cefuroxime"],["antibacterial/piperacillin.html","piperacillin"]]},{"id":"ARO:3004826","l":"LAP-2","na":1,"nb":7,"a":[["ARO%3A3004826","LAP-2"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefuroxime.html","cefuroxime"],["antibacterial/piperacillin.html","piperacillin"]]},{"id":"ARO:3005085","l":"AAC(3)-IIg","na":1,"nb":7,"a":[["ARO%3A3005085","AAC(3)-IIg"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3007011","l":"mdeA","na":1,"nb":7,"a":[["ARO%3A3007011","mdeA"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/nalidixic-acid.html","nalidixic acid"],["antibacterial/oxacillin.html","oxacillin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007204","l":"","na":1,"nb":7,"a":[["ARO%3A3007204","AAC(6')-Iap"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"CHEBI:15722","l":"","na":1,"nb":7,"a":[["MCSA%3A744","GyrA intein (Class 1 intein)"]],"b":[["antibacterial/mastoparan-a.html","mastoparan-A"],["antibacterial/mastoparan-af.html","mastoparan-AF"],["antibacterial/mastoparan-b.html","mastoparan-B"],["antibacterial/mastoparan-d.html","mastoparan-D"],["antibacterial/mastoparan-m.html","mastoparan-M"],["antibacterial/mastoparan-v.html","mastoparan-V"]]},{"id":"CHEBI:15837","l":"isoamylol","na":7,"nb":1,"a":[["EC%3A1.1.1.265","3-methylbutanal reductase"],["EC%3A3.1.1.112","isoamyl acetate esterase"],["RHEA%3A65236","3-methylbutan-1-ol + acetyl-CoA = 3-methylbutyl acetate + CoA"],["RHEA%3A85967","3-methylbutan-1-ol + hexadecanoyl-CoA = 3-methylbutyl hexadecanoate + CoA"],["RHEA%3A18529","3-methylbutan-1-ol + NAD(+) = 3-methylbutanal + NADH + H(+)"],["RHEA%3A18525","3-methylbutan-1-ol + NADP(+) = 3-methylbutanal + NADPH + H(+)"]],"b":[["antifungal/isoamylol.html","isoamylol"]]},{"id":"CHEBI:16118","l":"berberine","na":7,"nb":1,"a":[["EC%3A1.21.3.2","columbamine oxidase"],["EC%3A1.3.3.8","tetrahydroberberine oxidase"],["EC%3A1.5.1.31","berberine reductase"],["RHEA%3A23564","2 columbamine + O2 = 2 berberine + 2 H2O"],["RHEA%3A21268","(R)-canadine + 2 NADP(+) = berberine + 2 NADPH + H(+)"],["RHEA%3A13489","(S)-canadine + 2 O2 + H(+) = berberine + 2 H2O2"]],"b":[["antifungal/berberine.html","berberine"]]},{"id":"CHEBI:16731","l":"(E)-cinnamaldehyde","na":7,"nb":1,"a":[["EC%3A1.1.1.195","cinnamyl-alcohol dehydrogenase"],["EC%3A1.2.1.44","cinnamoyl-CoA reductase"],["RHEA%3A77507","(E)-cinnamaldehyde + hydrogen cyanide = (2S,3E)-2-hydroxy-4-phenylbut-3-enenitrile"],["RHEA%3A10620","(E)-cinnamaldehyde + NADP(+) + CoA = (E)-cinnamoyl-CoA + NADPH + H(+)"],["RHEA%3A58992","(E)-cinnamaldehyde + O2 + H2O = (E)-cinnamate + H2O2 + H(+)"],["RHEA%3A68872","(E)-cinnamate + ATP + NADPH + H(+) = (E)-cinnamaldehyde + AMP + diphosphate + NADP(+)"]],"b":[["antifungal/e-cinnamaldehyde.html","(E)-cinnamaldehyde"]]},{"id":"CHEBI:17209","l":"dihydrosanguinarine","na":7,"nb":1,"a":[["EC%3A1.14.14.100","dihydrosanguinarine 10-monooxygenase"],["EC%3A1.3.1.107","sanguinarine reductase"],["EC%3A1.5.3.12","dihydrobenzophenanthridine oxidase"],["RHEA%3A41660","dihydrosanguinarine + NAD(+) = sanguinarine + NADH"],["RHEA%3A41656","dihydrosanguinarine + NADP(+) = sanguinarine + NADPH"],["RHEA%3A16621","dihydrosanguinarine + O2 + H(+) = sanguinarine + H2O2"]],"b":[["antifungal/dihydrosanguinarine.html","dihydrosanguinarine"]]},{"id":"CHEBI:28831","l":"","na":7,"nb":1,"a":[["RHEA%3A62204","1-propanol + 2 Fe(III)-[cytochrome c] = propanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A65468","1-propanol + acetyl-CoA = propyl acetate + CoA"],["RHEA%3A65476","1-propanol + butanoyl-CoA = propyl butanoate + CoA"],["RHEA%3A50704","1-propanol + NAD(+) = propanal + NADH + H(+)"],["RHEA%3A64712","1-propanol + NADP(+) = propanal + NADPH + H(+)"],["MCSA%3A407","carboxylesterase"]],"b":[["antifungal/4-5-6-7-tetrachloro-2-benzofuran-1-3h-one.html","4,5,6,7-tetrachloro-2-benzofuran-1(3H)-one"]]},{"id":"CHEBI:83264","l":"","na":7,"nb":1,"a":[["RHEA%3A48056","a beta-D-galactosyl-(1->4)-beta-D-glucosyl-(1<->1)-ceramide + H2O = a beta-D-glucosylceramide + D-galactose"],["RHEA%3A85943","a beta-D-glucosylceramide + GDP-alpha-D-mannose = beta-D-Man-(1->4)-beta-D-Glc-(1<->1)-ceramide + GDP + H(+)"],["RHEA%3A78531","a beta-D-glucosylceramide + H2O = a beta-D-glucosyll-(1<->1')-sphingoid base + a fatty acid"],["RHEA%3A81447","a beta-D-glucosylceramide + H2O = an N-acyl-sphingoid base + D-glucose"],["RHEA%3A77255","a beta-D-glucosylceramide(in) = a beta-D-glucosylceramide(out)"],["RHEA%3A66660","a beta-D-glucosylceramide(in) + ATP + H2O = a beta-D-glucosylceramide(out) + ADP + phosphate + H(+)"]],"b":[["unspecified/chrysogeside-b.html","chrysogeside B"]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":7,"nb":1,"a":[["Pfam%3APF16861","Carbamoyltransferase C-terminus"],["Pfam%3APF02543","Carbamoyltransferase N-terminus"],["Pfam%3APF01960","ArgJ family"],["Pfam%3APF07467","Beta-lactamase inhibitor (BLIP)"],["MCSA%3A303","(carboxyethyl)arginine beta-lactam-synthase"],["MCSA%3A137","deacetoxycephalosporin-C synthase"]],"b":[["antibacterial/clavulanic-acid.html","clavulanic acid"]]},{"id":"ARO:3000186","l":"tet(M)","na":1,"nb":6,"a":[["ARO%3A3000186","tet(M)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000190","l":"tet(O)","na":1,"nb":6,"a":[["ARO%3A3000190","tet(O)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000191","l":"tet(Q)","na":1,"nb":6,"a":[["ARO%3A3000191","tet(Q)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000192","l":"tet(S)","na":1,"nb":6,"a":[["ARO%3A3000192","tet(S)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000193","l":"tet(T)","na":1,"nb":6,"a":[["ARO%3A3000193","tet(T)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000194","l":"tet(W)","na":1,"nb":6,"a":[["ARO%3A3000194","tet(W)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000195","l":"tetB(P)","na":1,"nb":6,"a":[["ARO%3A3000195","tetB(P)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000196","l":"tet(32)","na":1,"nb":6,"a":[["ARO%3A3000196","tet(32)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000197","l":"tet(36)","na":1,"nb":6,"a":[["ARO%3A3000197","tet(36)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000556","l":"tet(44)","na":1,"nb":6,"a":[["ARO%3A3000556","tet(44)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000787","l":"MdtABC-TolC","na":6,"nb":1,"a":[["ARO%3A3000828","baeR"],["ARO%3A3000829","baeS"],["ARO%3A3000531","baeSR"],["ARO%3A3000830","cpxA"],["ARO%3A3000524","cpxAR"],["ARO%3A3000787","MdtABC-TolC"]],"b":[["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3001889","l":"CTX-M-27","na":1,"nb":6,"a":[["ARO%3A3001889","CTX-M-27"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ertapenem.html","ertapenem"]]},{"id":"ARO:3002600","l":"","na":1,"nb":6,"a":[["ARO%3A3002600","AAC(3)-Ib/AAC(6')-Ib3 bifunctional protein"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/astromicin.html","astromicin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/sisomycin.html","sisomycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002641","l":"","na":1,"nb":6,"a":[["ARO%3A3002641","APH(3')-Ia"]],"b":[["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"],["antimycobacterial/lividomycin-a.html","lividomycin A"]]},{"id":"ARO:3002642","l":"","na":1,"nb":6,"a":[["ARO%3A3002642","APH(3')-Ib"]],"b":[["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"],["antimycobacterial/lividomycin-a.html","lividomycin A"]]},{"id":"ARO:3002644","l":"","na":1,"nb":6,"a":[["ARO%3A3002644","APH(3')-IIa"]],"b":[["antibacterial/butirosin.html","butirosin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3002645","l":"","na":1,"nb":6,"a":[["ARO%3A3002645","APH(3')-IIb"]],"b":[["antibacterial/butirosin.html","butirosin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3002646","l":"","na":1,"nb":6,"a":[["ARO%3A3002646","APH(3')-IIc"]],"b":[["antibacterial/butirosin.html","butirosin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3003684","l":"Pseudomonas aeruginosa gyrA conferring resistance to fluoroquinolones","na":1,"nb":6,"a":[["ARO%3A3003684","Pseudomonas aeruginosa gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/ofloxacin.html","ofloxacin"],["antibacterial/pefloxacin.html","pefloxacin"],["antibacterial/sitafloxacin.html","Sitafloxacin"],["antibacterial/sparfloxacin.html","sparfloxacin"]]},{"id":"ARO:3003688","l":"PvrR","na":1,"nb":6,"a":[["ARO%3A3003688","PvrR"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/carbenicillin.html","carbenicillin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tetracycline.html","tetracycline"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3003908","l":"Erm(47)","na":1,"nb":6,"a":[["ARO%3A3003908","Erm(47)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/quinupristin.html","quinupristin"],["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3004076","l":"MuxABC-OpmB","na":1,"nb":6,"a":[["ARO%3A3004076","MuxABC-OpmB"]],"b":[["antibacterial/aztreonam.html","aztreonam"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/josamycin.html","josamycin"],["antibacterial/novobiocin.html","novobiocin"],["antibacterial/rokitamycin.html","rokitamycin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004176","l":"Mycoplasma hominis 23S rRNA with mutation conferring resistance to macrolide antibiotics","na":1,"nb":6,"a":[["ARO%3A3004176","Mycoplasma hominis 23S rRNA with mutation conferring resistance to macrolide antibiotics"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/spiramycin-i.html","spiramycin I"],["antibacterial/telithromycin.html","telithromycin"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3004446","l":"Haemophilus influenzae PBP3 conferring resistance to beta-lactam antibiotics","na":1,"nb":6,"a":[["ARO%3A3004446","Haemophilus influenzae PBP3 conferring resistance to beta-lactam antibiotics"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefaclor.html","cefaclor"],["antibacterial/cefdinir.html","cefdinir"],["antibacterial/cefditoren.html","cefditoren"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3004715","l":"vga(E) Staphylococcus cohnii","na":1,"nb":6,"a":[["ARO%3A3004715","vga(E) Staphylococcus cohnii"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/valnemulin.html","valnemulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3005015","l":"VMB-1","na":1,"nb":6,"a":[["ARO%3A3005015","VMB-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3007085","l":"PRC-1","na":1,"nb":6,"a":[["ARO%3A3007085","PRC-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3007154","l":"","na":6,"nb":1,"a":[["ARO%3A3004943","cycloserine resistant ald"],["ARO%3A3004946","cycloserine resistant alr"],["ARO%3A3004939","cycloserine resistant ddlA"],["ARO%3A3004945","Mycobacterium tuberculosis ald mutations confer resistance to cycloserine"],["ARO%3A3004947","Mycobacterium tuberculosis alr with mutation conferring resistance to cycloserine"],["ARO%3A3004941","Mycobacterium tuberculosis ddlA mutations confer resistance to cycloserine"]],"b":[["antimycobacterial/d-cycloserine.html","D-cycloserine"]]},{"id":"ARO:3007437","l":"EBR-5","na":1,"nb":6,"a":[["ARO%3A3007437","EBR-5"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftiofur.html","ceftiofur"],["antibacterial/cefuroxime.html","cefuroxime"],["antibacterial/piperacillin.html","piperacillin"]]},{"id":"ARO:3007646","l":"Neobacillus vireti vmlR2","na":1,"nb":6,"a":[["ARO%3A3007646","Neobacillus vireti vmlR2"]],"b":[["antibacterial/a201a.html","A201A"],["antibacterial/hygromycin-a.html","hygromycin A"],["antibacterial/iboxamycin.html","iboxamycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3007648","l":"PSZ-1","na":1,"nb":6,"a":[["ARO%3A3007648","PSZ-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"ARO:3007659","l":"putative nickel/cobalt transporter","na":1,"nb":6,"a":[["ARO%3A3007659","putative nickel/cobalt transporter"]],"b":[["antibacterial/gentamicin.html","gentamicin"],["antibacterial/nalidixic-acid.html","nalidixic acid"],["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/ofloxacin.html","ofloxacin"],["antibacterial/sparfloxacin.html","sparfloxacin"],["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"CHEBI:134179","l":"","na":1,"nb":6,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antibacterial/3-phenethylamino-butan-2-one.html","3-(phenethylamino)-butan-2-one"],["antifungal/acrylonitrile.html","acrylonitrile"],["antifungal/isoamylol.html","isoamylol"],["antifungal/nerolidol.html","nerolidol"],["antifungal/prop-2-yn-1-ol.html","prop-2-yn-1-ol"],["biocide/ethanol.html","ethanol"]]},{"id":"CHEBI:15399","l":"(+)-carvone","na":6,"nb":1,"a":[["EC%3A1.1.1.275","(+)-trans-carveol dehydrogenase"],["EC%3A1.1.1.n4","(-)-trans-carveol dehydrogenase"],["EC%3A1.3.99.25","carvone reductase"],["RHEA%3A32427","(1R,4S)-isodihydrocarvone + A = (S)-carvone + AH2"],["RHEA%3A14825","(1R,5S)-carveol + NAD(+) = (S)-carvone + NADH + H(+)"],["RHEA%3A25848","(1S,5S)-carveol + NAD(+) = (S)-carvone + NADH + H(+)"]],"b":[["antifungal/carvone.html","(+)-carvone"]]},{"id":"CHEBI:15400","l":"(−)-carvone","na":6,"nb":1,"a":[["EC%3A1.1.1.243","carveol dehydrogenase"],["EC%3A1.1.1.n4","(-)-trans-carveol dehydrogenase"],["EC%3A1.3.99.25","carvone reductase"],["RHEA%3A32423","(1R,4R)-dihydrocarvone + A = (R)-carvone + AH2"],["RHEA%3A25844","(1S,5R)-carveol + NAD(+) = (R)-carvone + NADH + H(+)"],["RHEA%3A13629","(1S,5R)-carveol + NADP(+) = (R)-carvone + NADPH + H(+)"]],"b":[["antifungal/carvone-15400.html","(−)-carvone"]]},{"id":"CHEBI:16664","l":"albendazole","na":6,"nb":1,"a":[["EC%3A1.14.13.32","albendazole monooxygenase"],["EC%3A1.14.14.73","albendazole monooxygenase (sufoxide-forming)"],["EC%3A1.14.14.74","albendazole monooxygenase (hydroxylating)"],["RHEA%3A10796","albendazole + NADPH + O2 + H(+) = albendazole S-oxide + NADP(+) + H2O"],["RHEA%3A55924","albendazole + reduced [NADPH--hemoprotein reductase] + O2 = albendazole S-oxide + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A56288","albendazole + reduced [NADPH--hemoprotein reductase] + O2 = hydroxyalbendazole + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["antifungal/albendazole.html","albendazole"]]},{"id":"CHEBI:20702","l":"","na":1,"nb":6,"a":[["TCDB%3A2.A.40","The Nucleobase/Ascorbate Transporter (NAT) or Nucleobase:Cation Symporter-2 (NCS2) Family"]],"b":[["antiviral/acyclovir.html","acyclovir"],["antiviral/entecavir-anhydrous.html","entecavir (anhydrous)"],["antiviral/famciclovir.html","famciclovir"],["antiviral/ganciclovir.html","ganciclovir"],["antiviral/penciclovir.html","penciclovir"],["antiviral/tioguanine.html","tioguanine"]]},{"id":"CHEBI:25696","l":"","na":6,"nb":1,"a":[["TCDB%3A2.A.31","The Anion Exchanger (AE) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.28","The Bile Acid:Na+ Symporter (BASS) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.60","The Organo Anion Transporter (OAT) Family"],["TCDB%3A1.C.103","The Pore-forming Toxin, TisB (TisB) Family"]],"b":[["antibacterial/trichosetin-1.html","trichosetin(1−)"]]},{"id":"CHEBI:28054","l":"o-cresol","na":6,"nb":1,"a":[["EC%3A1.14.13.243","toluene 2-monooxygenase"],["RHEA%3A57948","2-hydroxytoluene + NADH + O2 + H(+) = 3-methylcatechol + NAD(+) + H2O"],["RHEA%3A57440","2-methylanisole + reduced [NADH--hemoprotein reductase] + O2 = 2-hydroxytoluene + oxidized [NADH--hemoprotein reductase] + formaldehyde + H2O + H(+)"],["RHEA%3A80607","(2-methylphenoxy)acetate + 2-oxoglutarate + O2 = 2-hydroxytoluene + glyoxylate + succinate + CO2"],["RHEA%3A20349","toluene + NADH + O2 + H(+) = 2-hydroxytoluene + NAD(+) + H2O"],["proteintraitsmech%3ABIOLIP_JZ0","JZ0-binding site"]],"b":[["antifungal/o-cresol.html","o-cresol"]]},{"id":"CHEBI:3020","l":"","na":6,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.117","The Chlorhexadine Exporter (CHX) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"]]},{"id":"CHEBI:31457","l":"decanal","na":6,"nb":1,"a":[["RHEA%3A58376","decan-1-ol + NADP(+) = decanal + NADPH + H(+)"],["RHEA%3A69496","decan-1-ol + O2 = decanal + H2O2"],["RHEA%3A44104","decanal + NAD(+) + H2O = decanoate + NADH + 2 H(+)"],["RHEA%3A50612","decanal + NADP(+) = (2E)-decenal + NADPH + H(+)"],["RHEA%3A65744","decyl sulfate + 2-oxoglutarate + O2 = decanal + sulfate + succinate + CO2 + H(+)"],["proteintraitsmech%3ABIOLIP_8YP","8YP-binding site"]],"b":[["antifungal/decanal.html","decanal"]]},{"id":"CHEBI:35915","l":"","na":6,"nb":1,"a":[["EC%3A2.3.1.43","phosphatidylcholine--sterol O-acyltransferase"],["EC%3A2.3.1.73","diacylglycerol--sterol O-acyltransferase"],["EC%3A3.1.1.13","sterol esterase"],["RHEA%3A21204","a sterol + a 1,2-diacyl-sn-glycero-3-phosphocholine = a sterol ester + a 1-acyl-sn-glycero-3-phosphocholine"],["RHEA%3A13301","a sterol + a 1,2-diacyl-sn-glycerol = a sterol ester + a 1-acyl-sn-glycerol"],["RHEA%3A10100","a sterol ester + H2O = a sterol + a fatty acid + H(+)"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"CHEBI:4883","l":"ethidium bromide","na":6,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.A.7","The ATP-gated P2X Receptor Cation Channel (P2X Receptor) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antiprotozoal/ethidium-bromide.html","ethidium bromide"]]},{"id":"CHEBI:50667","l":"mercaptopurine","na":6,"nb":1,"a":[["EC%3A2.1.1.67","thiopurine S-methyltransferase"],["RHEA%3A12609","mercaptopurine + S-adenosyl-L-methionine = 6-methylthiopurine + S-adenosyl-L-homocysteine + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.40","The Nucleobase/Ascorbate Transporter (NAT) or Nucleobase:Cation Symporter-2 (NCS2) Family"]],"b":[["antiviral/mercaptopurine.html","mercaptopurine"]]},{"id":"CHEBI:61748","l":"(E)-oct-2-enal","na":6,"nb":1,"a":[["EC%3A2.2.1.12","3-acetyloctanal synthase"],["RHEA%3A59920","(2E)-octenal + NAD(+) + H2O = (2E)-octenoate + NADH + 2 H(+)"],["RHEA%3A59916","(2E)-octenal + NADP(+) + H2O = (2E)-octenoate + NADPH + 2 H(+)"],["RHEA%3A42832","(2E)-octenal + pyruvate + H(+) = (S)-3-acetyloctanal + CO2"],["RHEA%3A58372","(E)-oct-2-en-1-ol + NADP(+) = (2E)-octenal + NADPH + H(+)"],["RHEA%3A50780","octanal + NADP(+) = (2E)-octenal + NADPH + H(+)"]],"b":[["antifungal/e-oct-2-enal.html","(E)-oct-2-enal"]]},{"id":"CHEBI:77722","l":"apigenin 7-O-β-D-glucoside(1−)","na":6,"nb":1,"a":[["EC%3A2.4.1.81","flavone 7-O-beta-glucosyltransferase"],["EC%3A2.4.2.25","flavone apiosyltransferase"],["RHEA%3A69679","apigenin 7-O-beta-D-glucoside + H2O = apigenin + beta-D-glucose"],["RHEA%3A67348","apigenin 7-O-beta-D-glucoside + malonyl-CoA = apigenin 7-O-(6-O-malonyl-beta-D-glucoside) + CoA"],["RHEA%3A59760","apigenin + UDP-alpha-D-glucose = apigenin 7-O-beta-D-glucoside + UDP + H(+)"],["RHEA%3A19153","UDP-alpha-D-apiose + apigenin 7-O-beta-D-glucoside = 7-O-(beta-D-apiofuranosyl-1,2-beta-D-glucosyl)-5,7,4'-trihydroxyflavone + UDP + H(+)"]],"b":[["antibacterial/apigenin-7-o-%CE%B2-d-glucoside-1.html","apigenin 7-O-β-D-glucoside(1−)"]]},{"id":"CHEBI:77979","l":"aclacinomycin T zwitterion","na":6,"nb":1,"a":[["EC%3A2.4.1.326","aklavinone 7-L-rhodosaminyltransferase"],["EC%3A2.4.1.327","aclacinomycin-T 2-deoxy-L-fucose transferase"],["EC%3A3.1.1.95","aclacinomycin methylesterase"],["RHEA%3A37891","aclacinomycin T + H2O = 15-demethylaclacinomycin T + methanol"],["RHEA%3A41568","dTDP-2-deoxy-beta-L-fucose + aclacinomycin T = aclacinomycin S + dTDP + H(+)"],["RHEA%3A41564","dTDP-beta-L-rhodosamine + aklavinone = aclacinomycin T + dTDP + 2 H(+)"]],"b":[["unspecified/aclacinomycin-t-zwitterion.html","aclacinomycin T zwitterion"]]},{"id":"CHEBI:86494","l":"","na":1,"nb":6,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/allicin.html","allicin"],["antifungal/berberine.html","berberine"],["antifungal/carvacrol.html","carvacrol"],["antifungal/carvone-38265.html","carvone"],["antifungal/sanguinarine.html","sanguinarine"],["antifungal/%CE%B1-santonin.html","α-santonin"]]},{"id":"CHEBI:98","l":"(S)-linalool","na":6,"nb":1,"a":[["EC%3A4.2.1.127","linalool dehydratase"],["EC%3A4.2.3.25","S-linalool synthase"],["EC%3A5.4.4.4","geraniol isomerase"],["RHEA%3A30715","(2E)-geraniol = (S)-linalool"],["RHEA%3A24116","(2E)-geranyl diphosphate + H2O = (S)-linalool + diphosphate"],["RHEA%3A30711","(S)-linalool = beta-myrcene + H2O"]],"b":[["unspecified/s-linalool.html","(S)-linalool"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":6,"nb":1,"a":[["IDPO%3A0000037","molecular recognition display site"],["Pfam%3APF05403","Plasmodium histidine-rich protein (HRPII/III)"],["Pfam%3APF17986","EMP3-KAHRP-like N-terminal domain"],["Pfam%3APF03805","Cytoadherence-linked asexual protein"],["Pfam%3APF06589","Circumsporozoite-related antigen (CRA)"],["TED%3AAF-Q9U431-F1-model_v4_TED01","TED novel fold AF-Q9U431-F1-model_v4_TED01"]],"b":[["antiprotozoal/emetine.html","emetine"]]},{"id":"ARO:3000230","l":"","na":1,"nb":5,"a":[["ARO%3A3000230","ANT(2')-Ia"]],"b":[["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/sisomycin.html","sisomycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3000753","l":"abeM","na":1,"nb":5,"a":[["ARO%3A3000753","abeM"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/ofloxacin.html","ofloxacin"],["antibacterial/triclosan.html","triclosan"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3001214","l":"mdtM","na":1,"nb":5,"a":[["ARO%3A3001214","mdtM"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/puromycin.html","puromycin"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3001304","l":"ErmS","na":1,"nb":5,"a":[["ARO%3A3001304","ErmS"]],"b":[["antibacterial/carbomycin.html","carbomycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/niddamycin.html","niddamycin"],["antibacterial/pristinamycin-ic.html","pristinamycin IC"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3001878","l":"CTX-M-15","na":1,"nb":5,"a":[["ARO%3A3001878","CTX-M-15"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3002523","l":"","na":1,"nb":5,"a":[["ARO%3A3002523","AAC(2')-Ia"]],"b":[["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002524","l":"","na":1,"nb":5,"a":[["ARO%3A3002524","AAC(2')-Ib"]],"b":[["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002525","l":"","na":1,"nb":5,"a":[["ARO%3A3002525","AAC(2')-Ic"]],"b":[["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002526","l":"","na":1,"nb":5,"a":[["ARO%3A3002526","AAC(2')-Id"]],"b":[["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002527","l":"","na":1,"nb":5,"a":[["ARO%3A3002527","AAC(2')-Ie"]],"b":[["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002583","l":"","na":1,"nb":5,"a":[["ARO%3A3002583","AAC(6')-29a"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002584","l":"","na":1,"nb":5,"a":[["ARO%3A3002584","AAC(6')-29b"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002648","l":"","na":1,"nb":5,"a":[["ARO%3A3002648","APH(3')-IVa"]],"b":[["antibacterial/butirosin.html","butirosin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3002823","l":"ErmH","na":1,"nb":5,"a":[["ARO%3A3002823","ErmH"]],"b":[["antibacterial/carbomycin.html","carbomycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/oleandomycin.html","oleandomycin"],["antibacterial/pristinamycin-ic.html","pristinamycin IC"]]},{"id":"ARO:3002831","l":"vgaC","na":1,"nb":5,"a":[["ARO%3A3002831","vgaC"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/valnemulin.html","valnemulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3003071","l":"mphF","na":1,"nb":5,"a":[["ARO%3A3003071","mphF"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/roxithromycin.html","roxithromycin"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3003374","l":"Enterobacter aerogenes acrR with mutation conferring multidrug antibiotic resistance","na":1,"nb":5,"a":[["ARO%3A3003374","Enterobacter aerogenes acrR with mutation conferring multidrug antibiotic resistance"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/tetracycline.html","tetracycline"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3003561","l":"SED-1","na":1,"nb":5,"a":[["ARO%3A3003561","SED-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefuroxime.html","cefuroxime"],["antibacterial/piperacillin.html","piperacillin"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3003713","l":"VCC-1","na":1,"nb":5,"a":[["ARO%3A3003713","VCC-1"]],"b":[["antibacterial/aztreonam.html","aztreonam"],["antibacterial/doripenem.html","doripenem"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3003749","l":"salA","na":1,"nb":5,"a":[["ARO%3A3003749","salA"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3003995","l":"Clostridioides difficile gyrA conferring resistance to fluoroquinolones","na":1,"nb":5,"a":[["ARO%3A3003995","Clostridioides difficile gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"],["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3004082","l":"AcrAD-TolC","na":1,"nb":5,"a":[["ARO%3A3004082","AcrAD-TolC"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3004191","l":"","na":1,"nb":5,"a":[["ARO%3A3004191","APH(2')-If"]],"b":[["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/sisomycin.html","sisomycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3004470","l":"poxtA","na":1,"nb":5,"a":[["ARO%3A3004470","poxtA"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/florfenicol.html","florfenicol"],["antibacterial/linezolid.html","linezolid"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004675","l":"aphA15","na":1,"nb":5,"a":[["ARO%3A3004675","aphA15"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004677","l":"rmtD2","na":1,"nb":5,"a":[["ARO%3A3004677","rmtD2"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005035","l":"YRC-1","na":1,"nb":5,"a":[["ARO%3A3005035","YRC-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/cefuroxime.html","cefuroxime"]]},{"id":"ARO:3007026","l":"salB","na":1,"nb":5,"a":[["ARO%3A3007026","salB"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3007027","l":"salC","na":1,"nb":5,"a":[["ARO%3A3007027","salC"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3007033","l":"Erm(51)","na":1,"nb":5,"a":[["ARO%3A3007033","Erm(51)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/pristinamycin-ib.html","pristinamycin IB"]]},{"id":"ARO:3007151","l":"","na":5,"nb":1,"a":[["ARO%3A3000446","antibiotic-resistant isoleucyl-tRNA synthetase (ileS)"],["ARO%3A3003730","Bifidobacterium bifidum ileS conferring resistance to mupirocin"],["ARO%3A3003729","Staphylococcus aureus ileS with mutation conferring resistance to mupirocin"],["ARO%3A3000521","Staphylococcus aureus mupA conferring resistance to mupirocin"],["ARO%3A3000510","Staphylococcus aureus mupB conferring resistance to mupirocin"]],"b":[["antibacterial/mupirocin.html","mupirocin"]]},{"id":"ARO:3007180","l":"MAB","na":1,"nb":5,"a":[["ARO%3A3007180","MAB"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/cefuroxime.html","cefuroxime"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3007182","l":"blaC","na":1,"nb":5,"a":[["ARO%3A3007182","blaC"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/temocillin.html","temocillin"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3007374","l":"PJM-1","na":1,"nb":5,"a":[["ARO%3A3007374","PJM-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3007438","l":"LAQ-1","na":1,"nb":5,"a":[["ARO%3A3007438","LAQ-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"ARO:3007635","l":"CAE-1","na":1,"nb":5,"a":[["ARO%3A3007635","CAE-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/cefuroxime.html","cefuroxime"],["antibacterial/piperacillin.html","piperacillin"]]},{"id":"ARO:3007637","l":"Clostridioides difficile cplR","na":1,"nb":5,"a":[["ARO%3A3007637","Clostridioides difficile cplR"]],"b":[["antibacterial/a201a.html","A201A"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/iboxamycin.html","iboxamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3007644","l":"Clostridium perfringes cplR","na":1,"nb":5,"a":[["ARO%3A3007644","Clostridium perfringes cplR"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/iboxamycin.html","iboxamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3007694","l":"AMZ-1","na":1,"nb":5,"a":[["ARO%3A3007694","AMZ-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"ARO:3009134","l":"antifungal resistance-associated MSH2","na":1,"nb":5,"a":[["ARO%3A3009134","antifungal resistance-associated MSH2"]],"b":[["antifungal/amphotericin-b.html","amphotericin B"],["antifungal/caspofungin.html","caspofungin"],["antifungal/fluconazole.html","fluconazole"],["antifungal/micafungin.html","micafungin"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"CHEBI:15649","l":"3,6,9-trihydroxypterocarpan","na":5,"nb":1,"a":[["EC%3A1.14.14.93","3,9-dihydroxypterocarpan 6a-monooxygenase"],["EC%3A2.5.1.36","trihydroxypterocarpan dimethylallyltransferase"],["RHEA%3A15321","(6aR,11aR)-3,9-dihydroxypterocarpan + reduced [NADPH--hemoprotein reductase] + O2 = (6aS,11aS)-3,6a,9-trihydroxypterocarpan + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A19345","(6aS,11aS)-3,6a,9-trihydroxypterocarpan + dimethylallyl diphosphate = (6aS,11aS)-2-dimethylallyl-3,6a,9-trihydroxypterocarpan + diphosphate"],["RHEA%3A23184","(6aS,11aS)-3,6a,9-trihydroxypterocarpan + dimethylallyl diphosphate = (6aS,11aS)-4-dimethylallyl-3,6a,9-trihydroxypterocarpan + diphosphate"]],"b":[["antibacterial/3-6-9-trihydroxypterocarpan.html","3,6,9-trihydroxypterocarpan"]]},{"id":"CHEBI:16670","l":"peptide","na":5,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A9.B.46","The Staphylococcus aureus Putative Quorum Sensing Peptide Exporter, AgrB (AgrB) Family"],["TCDB%3A3.A.25","The Symbiont-specific ERAD-like Machinery (SELMA) Family"],["proteintraitsmech%3ABIOLIP_PEPTIDE","peptide-binding site"]],"b":[["antibacterial/cefbuperazone.html","cefbuperazone"]]},{"id":"CHEBI:17043","l":"biphenyl-2-ol","na":5,"nb":1,"a":[["EC%3A1.14.13.44","2-hydroxybiphenyl 3-monooxygenase"],["EC%3A3.13.1.3","2'-hydroxybiphenyl-2-sulfinate desulfinase"],["RHEA%3A12945","2'-hydroxybiphenyl-2-sulfinate + H2O = biphenyl-2-ol + sulfite + H(+)"],["RHEA%3A11996","biphenyl-2-ol + NADH + O2 + H(+) = biphenyl-2,3-diol + NAD(+) + H2O"],["MCSA%3A971","2'-hydroxybiphenyl-2-sulfinate desulfinase"]],"b":[["antifungal/biphenyl-2-ol.html","biphenyl-2-ol"]]},{"id":"CHEBI:17183","l":"sanguinarine","na":5,"nb":1,"a":[["EC%3A1.3.1.107","sanguinarine reductase"],["EC%3A1.5.3.12","dihydrobenzophenanthridine oxidase"],["RHEA%3A41660","dihydrosanguinarine + NAD(+) = sanguinarine + NADH"],["RHEA%3A41656","dihydrosanguinarine + NADP(+) = sanguinarine + NADPH"],["RHEA%3A16621","dihydrosanguinarine + O2 + H(+) = sanguinarine + H2O2"]],"b":[["antifungal/sanguinarine.html","sanguinarine"]]},{"id":"CHEBI:18145","l":"(R,R,R)-α-tocopherol","na":5,"nb":1,"a":[["EC%3A2.1.1.95","tocopherol C-methyltransferase"],["RHEA%3A71507","(+)-alpha-tocopherol(out) = (+)-alpha-tocopherol(in)"],["RHEA%3A45108","(+)-alpha-tocopherol + reduced [NADPH--hemoprotein reductase] + O2 = 13-hydroxy-alpha-tocopherol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A24012","gamma-tocopherol + S-adenosyl-L-methionine = (+)-alpha-tocopherol + S-adenosyl-L-homocysteine + H(+)"],["proteintraitsmech%3ABIOLIP_VIV","VIV-binding site"]],"b":[["antiviral/r-r-r-%CE%B1-tocopherol.html","(R,R,R)-α-tocopherol"]]},{"id":"CHEBI:23403","l":"","na":1,"nb":5,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antibacterial/5-6-7-trimethoxycoumarin.html","5,6,7-trimethoxycoumarin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/glycyrin.html","glycyrin"],["antifungal/coumoxystrobin.html","coumoxystrobin"],["antiviral/soulattrolide.html","soulattrolide"]]},{"id":"CHEBI:28600","l":"farnesol","na":1,"nb":5,"a":[["RHEA%3A79359","farnesol + 2 Fe(III)-[cytochrome c] = farnesal + 2 Fe(II)-[cytochrome c] + 2 H(+)"]],"b":[["unspecified/2-cis-6-cis-farnesol.html","(2-cis,6-cis)-farnesol"],["unspecified/2-cis-6-trans-farnesol.html","(2-cis,6-trans)-farnesol"],["unspecified/2-trans-6-cis-farnesol.html","(2-trans,6-cis)-farnesol"],["unspecified/2-trans-6-trans-farnesol.html","(2-trans,6-trans)-farnesol"],["unspecified/farnesol.html","farnesol"]]},{"id":"CHEBI:33704","l":"","na":5,"nb":1,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["MCSA%3A396","aspartic peptidase"],["MCSA%3A169","dipeptidyl-peptidase IV"],["MCSA%3A425","plasmin"],["MCSA%3A412","prolyl aminopeptidase"]],"b":[["antiprotozoal/eflornithine.html","eflornithine"]]},{"id":"CHEBI:34994","l":"","na":1,"nb":5,"a":[["TCDB%3A2.A.128","The Multidrug Resistance Exporter VanZ (VanZ) Family"]],"b":[["unspecified/teicoplanin-a2-1.html","teicoplanin A2-1"],["unspecified/teicoplanin-a2-2.html","teicoplanin A2-2"],["unspecified/teicoplanin-a2-3.html","teicoplanin A2-3"],["unspecified/teicoplanin-a2-4.html","teicoplanin A2-4"],["unspecified/teicoplanin-a2-5.html","teicoplanin A2-5"]]},{"id":"CHEBI:36835","l":"","na":5,"nb":1,"a":[["EC%3A1.1.1.213","3alpha-hydroxysteroid dehydrogenase (Re-specific)"],["EC%3A1.1.1.357","3alpha-hydroxysteroid 3-dehydrogenase"],["EC%3A1.1.1.50","3alpha-hydroxysteroid 3-dehydrogenase (Si-specific)"],["RHEA%3A34779","a 3alpha-hydroxysteroid + NAD(+) = a 3-oxosteroid + NADH + H(+)"],["RHEA%3A34783","a 3alpha-hydroxysteroid + NADP(+) = a 3-oxosteroid + NADPH + H(+)"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"CHEBI:3900","l":"costunolide","na":5,"nb":1,"a":[["EC%3A1.14.14.150","costunolide synthase"],["RHEA%3A56992","6alpha-hydroxygermacra-1(10),4,11(13)-trien-12-oate + H(+) = (+)-costunolide + H2O"],["RHEA%3A61324","(+)-costunolide + reduced [NADPH--hemoprotein reductase] + O2 = 3beta-hydroxycostunolide + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A61320","(+)-costunolide + reduced [NADPH--hemoprotein reductase] + O2 = parthenolide + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A28230","germacra-1(10),4,11(13)-trien-12-oate + reduced [NADPH--hemoprotein reductase] + O2 = (+)-costunolide + oxidized [NADPH--hemoprotein reductase] + 2 H2O"]],"b":[["antiviral/costunolide.html","costunolide"]]},{"id":"CHEBI:3962","l":"curcumin","na":5,"nb":1,"a":[["EC%3A1.3.1.n3","curcumin reductase"],["EC%3A2.3.1.217","curcumin synthase"],["RHEA%3A34819","dihydrocurcumin + NADP(+) = curcumin + NADPH + H(+)"],["RHEA%3A34823","(E)-feruloylacetyl-CoA + (E)-feruloyl-CoA + H2O = curcumin + CO2 + 2 CoA"],["RHEA%3A34815","tetrahydrocurcumin + 2 NADP(+) = curcumin + 2 NADPH + 2 H(+)"]],"b":[["antifungal/curcumin.html","curcumin"]]},{"id":"CHEBI:5100","l":"flucytosine","na":5,"nb":1,"a":[["ARO%3A3007642","Aspergillus spp. fcyB conferring resistance to 5-flucytosine via reduced permeability"],["ARO%3A3007665","Candida spp. FCY2 conferring resistance to 5-flucytosine via reduced permeability"],["ARO%3A3007641","fungal nucleobase transporters"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.39","The Nucleobase:Cation Symporter-1 (NCS1) Family"]],"b":[["antifungal/flucytosine.html","flucytosine"]]},{"id":"CHEBI:58001","l":"","na":5,"nb":1,"a":[["EC%3A1.5.3.25","fructosyl amine oxidase (glucosone-forming)"],["RHEA%3A21916","2 Fe(III)-[cytochrome c550] + an aliphatic amine + H2O = 2 Fe(II)-[cytochrome c550] + an aldehyde + NH4(+) + 2 H(+)"],["RHEA%3A51128","an aliphatic amine + A + H2O = an aldehyde + AH2 + NH4(+)"],["RHEA%3A77795","an (E)-{[(2R,3S,4R,5R)-2,3,4,5-tetrahydroxyoxan-2-yl]methylidene}amine + H2O + H(+) = an aliphatic amine + 2-dehydro-D-glucose"],["RHEA%3A77787","an N-(1-deoxy-beta-D-fructopyranos-1-yl)amine + O2 + H2O = an aliphatic amine + 2-dehydro-D-glucose + H2O2"]],"b":[["unspecified/streptothricin-f-3.html","streptothricin F(3+)"]]},{"id":"CHEBI:62219","l":"2-heptyl-4-quinolone","na":5,"nb":1,"a":[["EC%3A1.14.13.182","2-heptyl-3-hydroxy-4(1H)-quinolone synthase"],["EC%3A2.3.1.230","2-heptyl-4(1H)-quinolone synthase"],["RHEA%3A50408","1-(2-aminophenyl)decane-1,3-dione = 2-heptyl-4(1H)-quinolone + H2O"],["RHEA%3A50396","(2-aminobenzoyl)acetate + octanoyl-CoA + H(+) = 2-heptyl-4(1H)-quinolone + CO2 + CoA + H2O"],["RHEA%3A37871","2-heptyl-4(1H)-quinolone + NADH + O2 + H(+) = 2-heptyl-3-hydroxy-4(1H)-quinolone + NAD(+) + H2O"]],"b":[["antibacterial/2-heptyl-4-quinolone.html","2-heptyl-4-quinolone"]]},{"id":"CHEBI:90888","l":"aurachin C","na":5,"nb":1,"a":[["EC%3A1.14.13.222","aurachin C monooxygenase/isomerase"],["RHEA%3A49000","aurachin C + NADH + O2 + H(+) = 4-hydroxy-2-methyl-3-oxo-4-[(2E,6E)-farnesyl]-3,4-dihydroquinoline 1-oxide + NAD(+) + H2O"],["RHEA%3A49012","aurachin C + NADH + O2 + H(+) = aurachin C epoxide + NAD(+) + H2O"],["RHEA%3A49004","aurachin C + NADPH + O2 + H(+) = 4-hydroxy-2-methyl-3-oxo-4-[(2E,6E)-farnesyl]-3,4-dihydroquinoline 1-oxide + NADP(+) + H2O"],["RHEA%3A49008","aurachin C + NADPH + O2 + H(+) = aurachin C epoxide + NADP(+) + H2O"]],"b":[["antibacterial/aurachin-c.html","aurachin C"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":5,"nb":1,"a":[["TED%3AAF-A0A4Y6CF56-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y6CF56-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6CNZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Y6CNZ1-F1-model_v4_TED02"],["TED%3AAF-A0A7Y4IIX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4IIX4-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6B7F9-F1-model_v4_TED01","TED novel fold AF-A0A4Y6B7F9-F1-model_v4_TED01"],["TED%3AAF-A0A7Y4IR70-F1-model_v4_TED01","TED novel fold AF-A0A7Y4IR70-F1-model_v4_TED01"]],"b":[["antibacterial/althiomycin.html","althiomycin"]]},{"id":"NCBITaxon:43658","l":"Pseudoalteromonas rubra","na":5,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_Orn_monoox","Metallophore-associated ornithine N5-monooxygenase family"],["TED%3AAF-A0A0F4QZE1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0F4QZE1-F1-model_v4_TED02"],["TED%3AAF-A0A0U3GWJ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0U3GWJ2-F1-model_v4_TED01"],["TED%3AAF-A0A0F4QSG0-F1-model_v4_TED02","TED novel fold AF-A0A0F4QSG0-F1-model_v4_TED02"],["TED%3AAF-A0A0L0EPH9-F1-model_v4_TED03","TED novel fold AF-A0A0L0EPH9-F1-model_v4_TED03"]],"b":[["unspecified/prodigiosin.html","prodigiosin"]]},{"id":"NCBITaxon:5053","l":"Aspergillus aculeatus","na":5,"nb":1,"a":[["Pfam%3APF14683","Polysaccharide lyase family 4, domain III"],["Pfam%3APF14686","Polysaccharide lyase family 4, domain II"],["Pfam%3APF01670","Glycosyl hydrolase family 12"],["MCSA%3A658","arabinogalactan endo-1,4-beta-galactosidase"],["MCSA%3A705","rhamnogalacturonan acetylesterase"]],"b":[["antifungal/aculeacin-a.html","aculeacin A"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":5,"nb":1,"a":[["Pfam%3APF11720","Peptidase inhibitor I78 family"],["Pfam%3APF12296","Hydrophobic surface binding protein A"],["MCSA%3A118","urate oxidase"],["TED%3AAF-A0A3M7JGA1-F1-model_v4_TED02","TED novel fold AF-A0A3M7JGA1-F1-model_v4_TED02"],["TED%3AAF-A0A7G5JNS3-F1-model_v4_TED03","TED novel fold AF-A0A7G5JNS3-F1-model_v4_TED03"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:5270","l":"","na":5,"nb":1,"a":[["Pfam%3APF17445","Mating factor A1"],["Pfam%3APF24563","Mug60/KHD4 KH type I domain"],["IEDB%3A126316","epitope IPVHPRHPY"],["Pfam%3APF01185","Fungal hydrophobin"],["Pfam%3APF07460","NUMOD3 motif"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"UniProt:P03366","l":"","na":5,"nb":1,"a":[["MCSA%3A1000","HIV-1 reverse transcriptase"],["proteintraitsmech%3ABIOLIP_7N1","7N1-binding site"],["proteintraitsmech%3ABIOLIP_VTN","VTN-binding site"],["proteintraitsmech%3ABIOLIP_ZP4","ZP4-binding site"],["proteintraitsmech%3AMETALPDB_Y_DINUCLEAR","dinuclear yttrium site"]],"b":[["antiviral/nevirapine.html","nevirapine"]]},{"id":"ARO:3000245","l":"RbpA","na":1,"nb":4,"a":[["ARO%3A3000245","RbpA"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3000261","l":"sigma factor conferring resistance to rifampin","na":1,"nb":4,"a":[["ARO%3A3000261","sigma factor conferring resistance to rifampin"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3000300","l":"lsaA","na":1,"nb":4,"a":[["ARO%3A3000300","lsaA"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/pleuromutilin.html","pleuromutilin"],["antibacterial/quinupristin.html","quinupristin"]]},{"id":"ARO:3000363","l":"EreB","na":1,"nb":4,"a":[["ARO%3A3000363","EreB"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/roxithromycin.html","roxithromycin"]]},{"id":"ARO:3000421","l":"norB","na":1,"nb":4,"a":[["ARO%3A3000421","norB"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"],["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/sparfloxacin.html","sparfloxacin"]]},{"id":"ARO:3000444","l":"rphA","na":1,"nb":4,"a":[["ARO%3A3000444","rphA"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3000462","l":"mgtA","na":1,"nb":4,"a":[["ARO%3A3000462","mgtA"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/methymycin.html","methymycin"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3000463","l":"gimA","na":1,"nb":4,"a":[["ARO%3A3000463","gimA"]],"b":[["antibacterial/chalcomycin.html","chalcomycin"],["antibacterial/methymycin.html","methymycin"],["antibacterial/oleandomycin.html","oleandomycin"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3000501","l":"rpoB2","na":1,"nb":4,"a":[["ARO%3A3000501","rpoB2"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3000873","l":"TEM-1","na":1,"nb":4,"a":[["ARO%3A3000873","TEM-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"]]},{"id":"ARO:3001328","l":"Escherichia coli mdfA","na":1,"nb":4,"a":[["ARO%3A3001328","Escherichia coli mdfA"]],"b":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/tetracycline.html","tetracycline"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3001396","l":"OXA-1","na":1,"nb":4,"a":[["ARO%3A3001396","OXA-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/piperacillin.html","piperacillin"]]},{"id":"ARO:3001818","l":"ACC-4","na":1,"nb":4,"a":[["ARO%3A3001818","ACC-4"]],"b":[["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/cefuroxime.html","cefuroxime"]]},{"id":"ARO:3002547","l":"","na":1,"nb":4,"a":[["ARO%3A3002547","AAC(6')-Ib-cr1"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002623","l":"","na":1,"nb":4,"a":[["ARO%3A3002623","ANT(4')-Ia"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002634","l":"","na":1,"nb":4,"a":[["ARO%3A3002634","APH(2')-Ie"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002636","l":"","na":1,"nb":4,"a":[["ARO%3A3002636","APH(2')-IIIa"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002637","l":"","na":1,"nb":4,"a":[["ARO%3A3002637","APH(2')-IVa"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002665","l":"npmA","na":1,"nb":4,"a":[["ARO%3A3002665","npmA"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3002667","l":"rmtD","na":1,"nb":4,"a":[["ARO%3A3002667","rmtD"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002668","l":"rmtG","na":1,"nb":4,"a":[["ARO%3A3002668","rmtG"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002669","l":"","na":1,"nb":4,"a":[["ARO%3A3002669","APH(2')-Ig"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002883","l":"rgt1438","na":1,"nb":4,"a":[["ARO%3A3002883","rgt1438"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3002884","l":"iri","na":1,"nb":4,"a":[["ARO%3A3002884","iri"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3002985","l":"arnA","na":4,"nb":1,"a":[["ARO%3A3002985","arnA"],["ARO%3A3005053","ArnT"],["ARO%3A3003578","PmrF"],["ARO%3A3003577","ugd"]],"b":[["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3003001","l":"CfxA","na":1,"nb":4,"a":[["ARO%3A3003001","CfxA"]],"b":[["antibacterial/cefmetazole.html","cefmetazole"],["antibacterial/cefotetan.html","cefotetan"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/flomoxef.html","flomoxef"]]},{"id":"ARO:3003029","l":"MexVW-OprM","na":1,"nb":4,"a":[["ARO%3A3003029","MexVW-OprM"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/tetracycline.html","tetracycline"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3003198","l":"rmtH","na":1,"nb":4,"a":[["ARO%3A3003198","rmtH"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3003223","l":"Escherichia coli 16S rRNA mutation conferring resistance to edeine","na":1,"nb":4,"a":[["ARO%3A3003223","Escherichia coli 16S rRNA mutation conferring resistance to edeine"]],"b":[["antibacterial/edeine-a.html","edeine A"],["antibacterial/edeine-b.html","edeine B"],["antibacterial/edeine-d.html","edeine D"],["antibacterial/edeine-f.html","edeine F"]]},{"id":"ARO:3003272","l":"daptomycin resistant cls","na":4,"nb":1,"a":[["ARO%3A3003272","daptomycin resistant cls"],["ARO%3A3003760","Enterococcus faecalis cls with mutation conferring resistance to daptomycin"],["ARO%3A3003092","Enterococcus faecium cls conferring resistance to daptomycin"],["ARO%3A3003074","Staphylococcus aureus cls conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003283","l":"Mycobacterium tuberculosis rpoB with mutations conferring resistance to rifampicin","na":1,"nb":4,"a":[["ARO%3A3003283","Mycobacterium tuberculosis rpoB with mutations conferring resistance to rifampicin"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3003284","l":"Mycobacterium leprae rpoB mutations conferring resistance to rifampicin","na":1,"nb":4,"a":[["ARO%3A3003284","Mycobacterium leprae rpoB mutations conferring resistance to rifampicin"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3003285","l":"Staphylococcus aureus rpoB mutants conferring resistance to rifampicin","na":1,"nb":4,"a":[["ARO%3A3003285","Staphylococcus aureus rpoB mutants conferring resistance to rifampicin"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3003288","l":"Escherichia coli rpoB mutants conferring resistance to rifampicin","na":1,"nb":4,"a":[["ARO%3A3003288","Escherichia coli rpoB mutants conferring resistance to rifampicin"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3003395","l":"Mycobacterium tuberculosis rpsL mutations conferring resistance to Streptomycin","na":4,"nb":1,"a":[["ARO%3A3003419","antibiotic-resistant rpsL"],["ARO%3A3003395","Mycobacterium tuberculosis rpsL mutations conferring resistance to Streptomycin"],["ARO%3A3005082","Ribosomal protein mutation conferring resistance to pleuromutilin antibiotics"],["ARO%3A3005081","Thermus thermophilus uL3 mutations conferring resistance to pleuromutilin antibiotics"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003686","l":"Pseudomonas aeruginosa oprD with mutation conferring resistance to imipenem","na":4,"nb":1,"a":[["ARO%3A3005068","ParR"],["ARO%3A3005066","parRS"],["ARO%3A3005067","ParS"],["ARO%3A3003686","Pseudomonas aeruginosa oprD with mutation conferring resistance to imipenem"]],"b":[["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3003746","l":"optrA","na":1,"nb":4,"a":[["ARO%3A3003746","optrA"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"],["antibacterial/linezolid.html","linezolid"],["antibacterial/tedizolid.html","tedizolid"]]},{"id":"ARO:3003905","l":"","na":1,"nb":4,"a":[["ARO%3A3003905","ANT(4')-Ib"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3003921","l":"oqxAB","na":1,"nb":4,"a":[["ARO%3A3003921","oqxAB"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nitrofurantoin.html","nitrofurantoin"],["antibacterial/tigecycline.html","tigecycline"],["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003942","l":"abcA","na":1,"nb":4,"a":[["ARO%3A3003942","abcA"]],"b":[["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/methicillin.html","methicillin"],["antibacterial/moenomycin-a1.html","moenomycin A1"]]},{"id":"ARO:3003965","l":"hp1184","na":1,"nb":4,"a":[["ARO%3A3003965","hp1184"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/metronidazole.html","metronidazole"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003992","l":"rphB","na":1,"nb":4,"a":[["ARO%3A3003992","rphB"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3004030","l":"RosAB","na":1,"nb":4,"a":[["ARO%3A3004030","RosAB"]],"b":[["antibacterial/polymyxin-b1.html","polymyxin B1"],["antibacterial/polymyxin-b2.html","polymyxin B2"],["antibacterial/polymyxin-b3.html","polymyxin B3"],["antibacterial/polymyxin-b4.html","polymyxin B4"]]},{"id":"ARO:3004123","l":"Burkholderia pseudomallei Omp38","na":1,"nb":4,"a":[["ARO%3A3004123","Burkholderia pseudomallei Omp38"]],"b":[["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3004126","l":"Escherichia coli LamB","na":1,"nb":4,"a":[["ARO%3A3004126","Escherichia coli LamB"]],"b":[["antibacterial/balofloxacin.html","Balofloxacin"],["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3004181","l":"Streptococcus pneumoniae 23S rRNA mutation conferring resistance to macrolides and streptogramins antibiotics","na":1,"nb":4,"a":[["ARO%3A3004181","Streptococcus pneumoniae 23S rRNA mutation conferring resistance to macrolides and streptogramins antibiotics"]],"b":[["antibacterial/josamycin.html","josamycin"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"],["antibacterial/tylosin.html","tylosin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3004359","l":"ACI-1","na":1,"nb":4,"a":[["ARO%3A3004359","ACI-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3004562","l":"Clostridioides difficile gyrB conferring resistance to fluoroquinolones","na":1,"nb":4,"a":[["ARO%3A3004562","Clostridioides difficile gyrB conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/gemifloxacin.html","gemifloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3004599","l":"clcD","na":1,"nb":4,"a":[["ARO%3A3004599","clcD"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/florfenicol.html","florfenicol"],["antibacterial/linezolid.html","linezolid"],["antibacterial/tiamulin.html","tiamulin"]]},{"id":"ARO:3004606","l":"erm(40)","na":1,"nb":4,"a":[["ARO%3A3004606","erm(40)"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3004667","l":"Staphylococcus aureus norA","na":1,"nb":4,"a":[["ARO%3A3004667","Staphylococcus aureus norA"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3005059","l":"LptD","na":1,"nb":4,"a":[["ARO%3A3005059","LptD"]],"b":[["antibacterial/imipenem.html","imipenem"],["antibacterial/novobiocin.html","novobiocin"],["antibacterial/polymyxin-b2.html","polymyxin B2"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3005112","l":"","na":1,"nb":4,"a":[["ARO%3A3005112","AAC(6')-Ib-cr3"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005114","l":"","na":1,"nb":4,"a":[["ARO%3A3005114","AAC(6')-Ib-cr4"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005115","l":"","na":1,"nb":4,"a":[["ARO%3A3005115","AAC(6')-Ib-cr5"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005116","l":"","na":1,"nb":4,"a":[["ARO%3A3005116","AAC(6')-Ib-cr6"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005117","l":"","na":1,"nb":4,"a":[["ARO%3A3005117","AAC(6')-Ib-cr7"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005118","l":"","na":1,"nb":4,"a":[["ARO%3A3005118","AAC(6')-Ib-cr8"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005119","l":"","na":1,"nb":4,"a":[["ARO%3A3005119","AAC(6')-Ib-cr9"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005121","l":"lsaD","na":1,"nb":4,"a":[["ARO%3A3005121","lsaD"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3007028","l":"salD","na":1,"nb":4,"a":[["ARO%3A3007028","salD"]],"b":[["antibacterial/lincomycin.html","lincomycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3007206","l":"KBL-1","na":1,"nb":4,"a":[["ARO%3A3007206","KBL-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/piperacillin.html","piperacillin"]]},{"id":"ARO:3007442","l":"SSA","na":1,"nb":4,"a":[["ARO%3A3007442","SSA"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007456","l":"dfrL","na":1,"nb":4,"a":[["ARO%3A3007456","dfrL"]],"b":[["antibacterial/streptomycin.html","streptomycin"],["antibacterial/tetracycline.html","tetracycline"],["antibacterial/tobramycin.html","tobramycin"],["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3007645","l":"Clostridium sporogenes cplR","na":1,"nb":4,"a":[["ARO%3A3007645","Clostridium sporogenes cplR"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/hygromycin-a.html","hygromycin A"],["antibacterial/iboxamycin.html","iboxamycin"],["antibacterial/retapamulin.html","retapamulin"]]},{"id":"ARO:3007650","l":"CDA-1","na":1,"nb":4,"a":[["ARO%3A3007650","CDA-1"]],"b":[["antibacterial/cefaloridine.html","cefaloridine"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3007670","l":"Aspergillus spp. Hmg1 with mutations conferring resistance to triazoles antibiotics","na":1,"nb":4,"a":[["ARO%3A3007670","Aspergillus spp. Hmg1 with mutations conferring resistance to triazoles antibiotics"]],"b":[["antifungal/isavuconazole.html","isavuconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"ARO:3007770","l":"","na":1,"nb":4,"a":[["ARO%3A3007770","aac(6')-Ib-cr10"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3007771","l":"","na":1,"nb":4,"a":[["ARO%3A3007771","aac(6')-Ib-cr11"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"CHEBI:140434","l":"3-[(Z)-2-isocyanovinyl]indole","na":4,"nb":1,"a":[["EC%3A1.14.20.11","3-[(Z)-2-isocyanoethenyl]-1H-indole synthase"],["EC%3A2.5.1.146","3-geranyl-3-[(Z)-2-isocyanoethenyl]indole synthase"],["RHEA%3A56700","(2S)-3-(1H-indol-3-yl)-2-isocyanopropanoate + 2-oxoglutarate + O2 + H(+) = 3-[(Z)-2-isocyanoethenyl]-1H-indole + succinate + 2 CO2 + H2O"],["RHEA%3A17349","3-[(Z)-2-isocyanoethenyl]-1H-indole + (2E)-geranyl diphosphate = 3-geranyl-3-[(Z)-2-isocyanoethenyl]-1H-indole + diphosphate"]],"b":[["antibacterial/3-z-2-isocyanovinyl-indole.html","3-[(Z)-2-isocyanovinyl]indole"]]},{"id":"CHEBI:140662","l":"2,4-diacetylphloroglucinol(1−)","na":4,"nb":1,"a":[["EC%3A2.3.1.272","2-acetylphloroglucinol acetyltransferase"],["EC%3A3.7.1.24","2,4-diacetylphloroglucinol hydrolase"],["RHEA%3A48236","2 2-acetylphloroglucinol = 2,4-diacetylphloroglucinol + 1,3,5-trihydroxybenzene + H(+)"],["RHEA%3A59184","2,4-diacetylphloroglucinol + H2O = 2-acetylphloroglucinol + acetate"]],"b":[["antifungal/2-4-diacetylphloroglucinol-1.html","2,4-diacetylphloroglucinol(1−)"]]},{"id":"CHEBI:16786","l":"vestitone","na":4,"nb":1,"a":[["EC%3A1.1.1.348","(3R)-2'-hydroxyisoflavanone reductase"],["EC%3A1.3.1.45","2'-hydroxyisoflavone reductase"],["RHEA%3A35403","(3R,4R)-7,2'-dihydroxy-4'-methoxyisoflavanol + NADP(+) = (3R)-vestitone + NADPH + H(+)"],["RHEA%3A22560","(3R)-vestitone + NADP(+) = 2'-hydroxyformononetin + NADPH + 2 H(+)"]],"b":[["antibacterial/vestitone.html","vestitone"]]},{"id":"CHEBI:17302","l":"pentadecanal","na":4,"nb":1,"a":[["EC%3A1.11.1.3","fatty-acid peroxidase"],["RHEA%3A68480","(2R)-2-hydroperoxyhexadecanoate + H(+) = pentadecanal + CO2 + H2O"],["RHEA%3A55212","(2R)-hydroxyhexadecanoyl-CoA = pentadecanal + formyl-CoA"],["RHEA%3A23960","hexadecanoate + 2 H2O2 + H(+) = pentadecanal + CO2 + 3 H2O"]],"b":[["unspecified/pentadecanal.html","pentadecanal"]]},{"id":"CHEBI:192702","l":"ladanein","na":4,"nb":1,"a":[["RHEA%3A73435","apigenin 4',7-dimethyl ether + reduced [NADPH--hemoprotein reductase] + O2 = ladanein + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A73247","ladanein + S-adenosyl-L-methionine = salvigenin + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A73111","scutellarein 4'-methyl ether + S-adenosyl-L-methionine = ladanein + S-adenosyl-L-homocysteine"],["RHEA%3A73239","scutellarein 7-methyl ether + S-adenosyl-L-methionine = ladanein + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antiviral/ladanein.html","ladanein"]]},{"id":"CHEBI:24043","l":"","na":4,"nb":1,"a":[["EC%3A1.14.19.76","flavone synthase II"],["EC%3A1.14.20.5","flavone synthase I"],["RHEA%3A10448","a flavanone + 2-oxoglutarate + O2 = a flavone + succinate + CO2 + H2O"],["RHEA%3A57680","a flavanone + reduced [NADPH--hemoprotein reductase] + O2 = a flavone + oxidized [NADPH--hemoprotein reductase] + 2 H2O + H(+)"]],"b":[["antibacterial/flavocillin.html","flavocillin"]]},{"id":"CHEBI:2448","l":"actinorhodin","na":4,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["proteintraitsmech%3ABIOLIP_ZCT","ZCT-binding site"]],"b":[["unspecified/actinorhodin.html","actinorhodin"]]},{"id":"CHEBI:25675","l":"","na":1,"nb":4,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/oligomycin-a.html","oligomycin A"],["antifungal/oligomycin-d.html","oligomycin D"],["unspecified/oligomycin-b.html","oligomycin B"],["unspecified/oligomycin-c.html","oligomycin C"]]},{"id":"CHEBI:26580","l":"","na":1,"nb":4,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifamycin-sv.html","rifamycin SV"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"CHEBI:27659","l":"","na":4,"nb":1,"a":[["EC%3A1.2.1.23","2-oxoaldehyde dehydrogenase (NAD(+))"],["EC%3A1.2.1.49","2-oxoaldehyde dehydrogenase (NADP(+))"],["RHEA%3A22276","2-oxoaldehyde + NAD(+) + H2O = a 2-oxocarboxylate + NADH + 2 H(+)"],["RHEA%3A18129","2-oxoaldehyde + NADP(+) + H2O = a 2-oxocarboxylate + NADPH + 2 H(+)"]],"b":[["antibacterial/4-hydroxy-2-oxobutanal.html","4-hydroxy-2-oxobutanal"]]},{"id":"CHEBI:27856","l":"","na":4,"nb":1,"a":[["EC%3A3.5.1.4","amidase"],["RHEA%3A85603","acetamide = acetonitrile + H2O"],["RHEA%3A45048","acetamide + H2O = acetate + NH4(+)"],["RHEA%3A51648","N(6)-acetyl-L-lysyl-[protein] + O2 + H2O = acetamide + (S)-2-amino-6-oxohexanoyl-[protein] + H2O2"]],"b":[["unspecified/acetylblasticidin-s.html","acetylblasticidin S"]]},{"id":"CHEBI:28327","l":"naringenin 7-O-β-D-glucoside","na":4,"nb":1,"a":[["EC%3A2.4.1.185","flavanone 7-O-beta-glucosyltransferase"],["RHEA%3A69671","(2S)-naringenin 7-O-beta-D-glucoside + H2O = (2S)-naringenin + beta-D-glucose"],["RHEA%3A67356","(2S)-naringenin 7-O-beta-D-glucoside + malonyl-CoA = (2S)-naringenin 7-O-(6-O-malonyl-beta-D-glucoside) + CoA"],["RHEA%3A65152","(2S)-naringenin + UDP-alpha-D-glucose = (2S)-naringenin 7-O-beta-D-glucoside + UDP + H(+)"]],"b":[["antibacterial/naringenin-7-o-%CE%B2-d-glucoside.html","naringenin 7-O-β-D-glucoside"]]},{"id":"CHEBI:28913","l":"(2E)-hexenal","na":4,"nb":1,"a":[["RHEA%3A60988","(E)-hex-2-en-1-ol + NAD(+) = (E)-hex-2-enal + NADH + H(+)"],["RHEA%3A58424","(E)-hex-2-en-1-ol + NADP(+) = (E)-hex-2-enal + NADPH + H(+)"],["RHEA%3A77419","(E)-hex-2-enal + hydrogen cyanide = (2S,3E)-2-hydroxyhept-3-enenitrile"],["RHEA%3A50776","hexanal + NADP(+) = (E)-hex-2-enal + NADPH + H(+)"]],"b":[["antibacterial/2e-hexenal.html","(2E)-hexenal"]]},{"id":"CHEBI:28927","l":"sakuranetin","na":4,"nb":1,"a":[["EC%3A2.1.1.232","naringenin 7-O-methyltransferase"],["RHEA%3A31539","(2S)-naringenin + S-adenosyl-L-methionine = (2S)-sakuranetin + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A73431","(2S)-sakuranetin + reduced [NADPH--hemoprotein reductase] + O2 = (2S)-7-methylcarthamidin + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A73255","(2S)-sakuranetin + S-adenosyl-L-methionine = (2S)-naringenin 4',7-dimethyl ether + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antimycobacterial/sakuranetin.html","sakuranetin"]]},{"id":"CHEBI:31144","l":"8-demethyltetracenomycin C","na":4,"nb":1,"a":[["EC%3A1.14.13.200","tetracenomycin A2 monooxygenase-diooxygenase"],["EC%3A2.4.1.331","8-demethyltetracenomycin C L-rhamnosyltransferase"],["RHEA%3A42848","8-demethyltetracenomycin C + dTDP-beta-L-rhamnose = 8-demethyl-8-alpha-L-rhamnosyl-tetracenomycin C + dTDP + H(+)"],["RHEA%3A76467","tetracenomycin B2 + 2 NADPH + 2 O2 + 2 H(+) = 8-demethyltetracenomycin C + 2 NADP(+) + H2O"]],"b":[["unspecified/8-demethyltetracenomycin-c.html","8-demethyltetracenomycin C"]]},{"id":"CHEBI:33859","l":"","na":1,"nb":4,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/oxolinic-acid.html","oxolinic acid"],["antifungal/1-2-3-benzothiadiazole-7-carboxylic-acid.html","1,2,3-benzothiadiazole-7-carboxylic acid"],["antifungal/phenazine-1-carboxylic-acid.html","phenazine-1-carboxylic acid"],["antifungal/piperonylic-acid.html","piperonylic acid"]]},{"id":"CHEBI:34848","l":"mevastatin","na":4,"nb":1,"a":[["RHEA%3A51668","mevastatin + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = pravastatin lactone + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"],["RHEA%3A62744","mevastatin + H2O = compactin diol lactone + (S)-2-methylbutanoate + H(+)"],["RHEA%3A63044","mevastatin + H2O = mevinic carboxylate + H(+)"],["proteintraitsmech%3ABIOLIP_2UO","2UO-binding site"]],"b":[["antifungal/mevastatin.html","mevastatin"]]},{"id":"CHEBI:3508","l":"ceftazidime","na":4,"nb":1,"a":[["TCDB%3A8.A.213","The Bon Domain-containing Protein (Bon DP) Family"],["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["TCDB%3A2.C.1","The TonB-ExbB-ExbD/TolA-TolQ-TolR Outer Membrane Receptor Energizers and Stabilizers (TonB/TolA) Family"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"CHEBI:45744","l":"N-acetyl-β-neuraminic acid","na":4,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.21","The Solute:Sodium Symporter (SSS) Family"],["TCDB%3A2.A.56","The Tripartite ATP-independent Periplasmic Transporter (TRAP-T) Family"],["proteintraitsmech%3ABIOLIP_SLB","SLB-binding site"]],"b":[["antiviral/n-acetyl-%CE%B2-neuraminic-acid.html","N-acetyl-β-neuraminic acid"]]},{"id":"CHEBI:46081","l":"fluconazole","na":4,"nb":1,"a":[["RHEA%3A61916","fluconazole(in) + ATP + H2O = fluconazole(out) + ADP + phosphate + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_TPF","TPF-binding site"]],"b":[["antifungal/fluconazole.html","fluconazole"]]},{"id":"CHEBI:46634","l":"","na":1,"nb":4,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/1-carbapenem-3-carboxylic-acid.html","1-carbapenem-3-carboxylic acid"],["antibacterial/carbapenem-mm22383.html","carbapenem MM22383"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"CHEBI:50477","l":"","na":1,"nb":4,"a":[["RHEA%3A47348","a butanoate ester + H2O = an aliphatic alcohol + butanoate + H(+)"]],"b":[["antibacterial/caminoside-a.html","caminoside A"],["antimycobacterial/caseargrewiin-b.html","caseargrewiin B"],["antiviral/clathsterol-disulfonic-acid.html","clathsterol disulfonic acid"],["antiviral/clathsterol.html","clathsterol"]]},{"id":"CHEBI:51460","l":"albaflavenone","na":4,"nb":1,"a":[["EC%3A1.14.15.39","epi-isozizaene 5-monooxygenase"],["RHEA%3A25988","(5R)-albaflavenol + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = albaflavenone + 2 oxidized [2Fe-2S]-[ferredoxin] + 2 H2O"],["RHEA%3A25980","(5S)-albaflavenol + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = albaflavenone + 2 oxidized [2Fe-2S]-[ferredoxin] + 2 H2O"],["RHEA%3A32439","(+)-epi-isozizaene + 4 reduced [2Fe-2S]-[ferredoxin] + 2 O2 + 4 H(+) = albaflavenone + 4 oxidized [2Fe-2S]-[ferredoxin] + 3 H2O"]],"b":[["unspecified/albaflavenone.html","albaflavenone"]]},{"id":"CHEBI:5169","l":"fraxetin","na":4,"nb":1,"a":[["EC%3A1.14.11.60","scopoletin 8-hydroxylase"],["EC%3A1.14.14.164","fraxetin 5-hydroxylase"],["RHEA%3A57844","fraxetin + reduced [NADPH--hemoprotein reductase] + O2 = sideretin (reduced form) + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A57848","scopoletin + 2-oxoglutarate + O2 = fraxetin + succinate + CO2"]],"b":[["antibacterial/fraxetin.html","fraxetin"]]},{"id":"CHEBI:55429","l":"cephamycin","na":1,"nb":4,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/cefminox.html","cefminox"],["antibacterial/cefotetan.html","cefotetan"],["antibacterial/cefoxitin.html","cefoxitin"],["unspecified/cephamycin-c.html","cephamycin C"]]},{"id":"CHEBI:66331","l":"xanthohumol","na":4,"nb":1,"a":[["EC%3A2.1.1.338","desmethylxanthohumol 6'-O-methyltransferase"],["EC%3A2.1.1.339","xanthohumol 4-O-methyltransferase"],["RHEA%3A51696","desmethylxanthohumol + S-adenosyl-L-methionine = xanthohumol + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A51704","xanthohumol + S-adenosyl-L-methionine = 4-O-methylxanthohumol + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antiviral/xanthohumol.html","xanthohumol"]]},{"id":"CHEBI:67246","l":"(+)-lariciresinol","na":4,"nb":1,"a":[["EC%3A1.23.1.1","(+)-pinoresinol reductase"],["EC%3A1.23.1.2","(+)-lariciresinol reductase"],["RHEA%3A34419","(+)-lariciresinol + NADP(+) = (+)-pinoresinol + NADPH + H(+)"],["RHEA%3A34423","(-)-secoisolariciresinol + NADP(+) = (+)-lariciresinol + NADPH + H(+)"]],"b":[["antifungal/lariciresinol.html","(+)-lariciresinol"]]},{"id":"CHEBI:69023","l":"preaustinoid A","na":4,"nb":1,"a":[["RHEA%3A65144","berkeleyone A + 2-oxoglutarate + O2 = preaustinoid A + succinate + CO2 + H2O"],["RHEA%3A65192","preaustinoid A + 2 2-oxoglutarate + 2 O2 = berkeleytrione + 2 succinate + 2 CO2 + H2O"],["RHEA%3A65168","preaustinoid A + AH2 + O2 = preaustinoid A1 + A + H2O"],["RHEA%3A65180","protoaustinoid B + AH2 + O2 = preaustinoid A + A + H2O"]],"b":[["antibacterial/preaustinoid-a.html","preaustinoid A"]]},{"id":"CHEBI:71311","l":"pyrazine-2-carboxylic acid","na":4,"nb":1,"a":[["ARO%3A3004267","antibiotic resistant pncA"],["ARO%3A3004721","Mycobacterium tuberculosis rpsA mutations conferring resistance to pyrazinamide"],["ARO%3A3004722","pyrazinamide resistant rpsA"],["proteintraitsmech%3ABIOLIP_VGL","VGL-binding site"]],"b":[["antimycobacterial/pyrazine-2-carboxylic-acid.html","pyrazine-2-carboxylic acid"]]},{"id":"CHEBI:74023","l":"dioscin","na":4,"nb":1,"a":[["EC%3A3.2.1.189","dioscin glycosidase (diosgenin-forming)"],["EC%3A3.2.1.190","dioscin glycosidase (3-O-beta-D-Glc-diosgenin-forming)"],["RHEA%3A38939","dioscin + 2 H2O = diosgenin 3-O-beta-D-glucoside + 2 L-rhamnopyranose"],["RHEA%3A36827","dioscin + 3 H2O = diosgenin + 2 L-rhamnopyranose + D-glucose"]],"b":[["antifungal/dioscin.html","dioscin"]]},{"id":"CHEBI:77980","l":"aclacinomycin A zwitterion","na":4,"nb":1,"a":[["EC%3A1.1.3.45","aclacinomycin-N oxidase"],["EC%3A1.3.3.14","aclacinomycin-A oxidase"],["RHEA%3A37791","aclacinomycin A + O2 = aclacinomycin Y + H2O2"],["RHEA%3A37423","aclacinomycin N + O2 = aclacinomycin A + H2O2"]],"b":[["unspecified/aclacinomycin-a-zwitterion.html","aclacinomycin A zwitterion"]]},{"id":"CHEBI:78283","l":"8-demethyl-8-(α-L-rhamnosyl)tetracenomycin C","na":4,"nb":1,"a":[["EC%3A2.1.1.305","8-demethyl-8-alpha-L-rhamnosyl tetracenomycin-C 2'-O-methyltransferase"],["EC%3A2.4.1.331","8-demethyltetracenomycin C L-rhamnosyltransferase"],["RHEA%3A41540","8-demethyl-8-alpha-L-rhamnosyl-tetracenomycin C + S-adenosyl-L-methionine = 8-demethyl-8-(2-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A42848","8-demethyltetracenomycin C + dTDP-beta-L-rhamnose = 8-demethyl-8-alpha-L-rhamnosyl-tetracenomycin C + dTDP + H(+)"]],"b":[["unspecified/8-demethyl-8-%CE%B1-l-rhamnosyl-tetracenomycin-c.html","8-demethyl-8-(α-L-rhamnosyl)tetracenomycin C"]]},{"id":"CHEBI:78285","l":"8-demethyl-8-(2-O-methyl-α-L-rhamnosyl)tetracenomycin C","na":4,"nb":1,"a":[["EC%3A2.1.1.305","8-demethyl-8-alpha-L-rhamnosyl tetracenomycin-C 2'-O-methyltransferase"],["EC%3A2.1.1.306","8-demethyl-8-(2-methoxy-alpha-L-rhamnosyl)-tetracenomycin-C 3'-O- methyltransferase"],["RHEA%3A41544","8-demethyl-8-(2-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-methionine = 8-demethyl-8-(2,3-di-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A41540","8-demethyl-8-alpha-L-rhamnosyl-tetracenomycin C + S-adenosyl-L-methionine = 8-demethyl-8-(2-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-homocysteine + H(+)"]],"b":[["unspecified/8-demethyl-8-2-o-methyl-%CE%B1-l-rhamnosyl-tetracenomycin-c.html","8-demethyl-8-(2-O-methyl-α-L-rhamnosyl)tetracenomycin C"]]},{"id":"CHEBI:78286","l":"8-demethyl-8-(2,3-O-dimethyl-α-L-rhamnosyl)tetracenomycin C","na":4,"nb":1,"a":[["EC%3A2.1.1.306","8-demethyl-8-(2-methoxy-alpha-L-rhamnosyl)-tetracenomycin-C 3'-O- methyltransferase"],["EC%3A2.1.1.307","8-demethyl-8-(2,3-dimethoxy-alpha-L-rhamnosyl)-tetracenomycin-C 4'-O- methyltransferase"],["RHEA%3A41548","8-demethyl-8-(2,3-di-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-methionine = 8-demethyl-8-(2,3,4-tri-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A41544","8-demethyl-8-(2-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-methionine = 8-demethyl-8-(2,3-di-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-homocysteine + H(+)"]],"b":[["unspecified/8-demethyl-8-2-3-o-dimethyl-%CE%B1-l-rhamnosyl-tetracenomycin-c.html","8-demethyl-8-(2,3-O-dimethyl-α-L-rhamnosyl)tetracenomycin C"]]},{"id":"CHEBI:84310","l":"anticapsin zwitterion","na":4,"nb":1,"a":[["EC%3A1.1.1.385","dihydroanticapsin 7-dehydrogenase"],["EC%3A6.3.2.49","L-alanine--L-anticapsin ligase"],["RHEA%3A44332","L-anticapsin + L-alanine + ATP = bacilysin + ADP + phosphate + H(+)"],["RHEA%3A44628","L-dihydroanticapsin + NAD(+) = L-anticapsin + NADH + H(+)"]],"b":[["unspecified/anticapsin-zwitterion.html","anticapsin zwitterion"]]},{"id":"CHEBI:90869","l":"validamycin A(1+)","na":4,"nb":1,"a":[["EC%3A1.14.11.52","validamycin A dioxygenase"],["EC%3A2.4.1.338","validoxylamine A glucosyltransferase"],["RHEA%3A48752","validamycin A + 2-oxoglutarate + O2 = validamycin B + succinate + CO2 + H(+)"],["RHEA%3A49388","validoxylamine A + UDP-alpha-D-glucose = validamycin A + UDP + H(+)"]],"b":[["antifungal/validamycin-a-1.html","validamycin A(1+)"]]},{"id":"CHEBI:9555","l":"tioguanine","na":4,"nb":1,"a":[["EC%3A2.1.1.67","thiopurine S-methyltransferase"],["RHEA%3A56580","6-thioguanine + S-adenosyl-L-methionine = 6-methylthioguanine + S-adenosyl-L-homocysteine + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.40","The Nucleobase/Ascorbate Transporter (NAT) or Nucleobase:Cation Symporter-2 (NCS2) Family"]],"b":[["antiviral/tioguanine.html","tioguanine"]]},{"id":"DOI:10.1021/ja312503y","l":"","na":4,"nb":1,"a":[["RHEA%3A74587","(2E,6E)-farnesyl diphosphate = (+)-exo-beta-bergamotene + diphosphate"],["RHEA%3A74751","fumagillol + dodecapentaneoyl-[polyketide synthase] = prefumagillin + holo-[polyketide synthase]"],["RHEA%3A74727","holo-[polyketide synthase] + 5 malonyl-CoA + acetyl-CoA + 5 NADPH + 10 H(+) = dodecapentaneoyl-[polyketide synthase] + 5 CO2 + 5 NADP(+) + 6 CoA + 5 H2O"],["NCBIfam%3ANF025196","monooxygenase family protein"]],"b":[["antibacterial/fumagillin.html","fumagillin"]]},{"id":"NCBITaxon:11676","l":"Human immunodeficiency virus 1","na":1,"nb":4,"a":[["IDPO%3A0000039","acetylation display site"]],"b":[["antiviral/delavirdine.html","delavirdine"],["antiviral/emivirine.html","emivirine"],["antiviral/etravirine.html","etravirine"],["antiviral/nevirapine.html","nevirapine"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":4,"nb":1,"a":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"],["TED%3AAF-A0A085UKV7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085UKV7-F1-model_v4_TED01"],["TED%3AAF-A0A4R6IU28-F1-model_v4_TED02","TED novel fold AF-A0A4R6IU28-F1-model_v4_TED02"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"NCBITaxon:40559","l":"Botrytis cinerea","na":1,"nb":4,"a":[["Pfam%3APF08883","Dopa 4,5-dioxygenase family"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/iprodione.html","iprodione"],["antifungal/pyrisoxazole.html","pyrisoxazole"]]},{"id":"UniProt:P38637","l":"","na":4,"nb":1,"a":[["GO%3A0031144","proteasome localization"],["Pfam%3APF08559","Cut8, nuclear proteasome tether protein"],["InterPro%3AIPR038422","Cut8/Sts1 superfamily"],["CATH%3A1.20.58.1590","Tethering factor for nuclear proteasome Cut8/Sts1"]],"b":[["antifungal/cycloheximide.html","cycloheximide"]]},{"id":"ARO:3000235","l":"ethambutol resistant embB","na":3,"nb":1,"a":[["ARO%3A3000235","ethambutol resistant embB"],["ARO%3A3003326","Mycobacterium tuberculosis embB mutant conferring resistance to ethambutol"],["ARO%3A3003325","Mycobacterium tuberculosis variant bovis embB with mutation conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3000361","l":"EreA","na":1,"nb":3,"a":[["ARO%3A3000361","EreA"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/roxithromycin.html","roxithromycin"]]},{"id":"ARO:3000373","l":"EmrKY-TolC","na":3,"nb":1,"a":[["ARO%3A3000373","EmrKY-TolC"],["ARO%3A3000832","evgA"],["ARO%3A3000515","evgSA"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000467","l":"NDM-5","na":1,"nb":3,"a":[["ARO%3A3000467","NDM-5"]],"b":[["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ertapenem.html","ertapenem"]]},{"id":"ARO:3000589","l":"NDM-1","na":1,"nb":3,"a":[["ARO%3A3000589","NDM-1"]],"b":[["antibacterial/ertapenem.html","ertapenem"],["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3000598","l":"Erm(31)","na":1,"nb":3,"a":[["ARO%3A3000598","Erm(31)"]],"b":[["antibacterial/methymycin.html","methymycin"],["antibacterial/narbomycin.html","narbomycin"],["antibacterial/pikromycin.html","pikromycin"]]},{"id":"ARO:3000843","l":"MUS-1","na":1,"nb":3,"a":[["ARO%3A3000843","MUS-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/piperacillin.html","piperacillin"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3000844","l":"TUS-1","na":1,"nb":3,"a":[["ARO%3A3000844","TUS-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/piperacillin.html","piperacillin"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3000900","l":"TEM-30","na":1,"nb":3,"a":[["ARO%3A3000900","TEM-30"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"]]},{"id":"ARO:3000930","l":"TEM-61","na":1,"nb":3,"a":[["ARO%3A3000930","TEM-61"]],"b":[["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001071","l":"SHV-12","na":1,"nb":3,"a":[["ARO%3A3001071","SHV-12"]],"b":[["antibacterial/cefalotin.html","cefalotin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3001205","l":"BRP(MBL)","na":1,"nb":3,"a":[["ARO%3A3001205","BRP(MBL)"]],"b":[["antibacterial/bleomycin-a2.html","bleomycin A2"],["antibacterial/bleomycin-b2.html","bleomycin B2"],["antibacterial/bleomycinic-acid.html","bleomycinic acid"]]},{"id":"ARO:3001265","l":"Erm(30)","na":1,"nb":3,"a":[["ARO%3A3001265","Erm(30)"]],"b":[["antibacterial/methymycin.html","methymycin"],["antibacterial/narbomycin.html","narbomycin"],["antibacterial/pikromycin.html","pikromycin"]]},{"id":"ARO:3001302","l":"chrB","na":1,"nb":3,"a":[["ARO%3A3001302","chrB"]],"b":[["antibacterial/chalcomycin.html","chalcomycin"],["antibacterial/mycinamicin-iv.html","mycinamicin IV"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3001303","l":"ErmO-srmA","na":1,"nb":3,"a":[["ARO%3A3001303","ErmO-srmA"]],"b":[["antibacterial/carbomycin.html","carbomycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3001397","l":"OXA-2","na":1,"nb":3,"a":[["ARO%3A3001397","OXA-2"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002528","l":"AAC(3)-Ia","na":1,"nb":3,"a":[["ARO%3A3002528","AAC(3)-Ia"]],"b":[["antibacterial/astromicin.html","astromicin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002529","l":"AAC(3)-Id","na":1,"nb":3,"a":[["ARO%3A3002529","AAC(3)-Id"]],"b":[["antibacterial/astromicin.html","astromicin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002530","l":"AAC(3)-Ib","na":1,"nb":3,"a":[["ARO%3A3002530","AAC(3)-Ib"]],"b":[["antibacterial/astromicin.html","astromicin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002531","l":"AAC(3)-Ic","na":1,"nb":3,"a":[["ARO%3A3002531","AAC(3)-Ic"]],"b":[["antibacterial/astromicin.html","astromicin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002540","l":"AAC(3)-VIa","na":1,"nb":3,"a":[["ARO%3A3002540","AAC(3)-VIa"]],"b":[["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002546","l":"","na":1,"nb":3,"a":[["ARO%3A3002546","AAC(6')-Ib"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002576","l":"","na":1,"nb":3,"a":[["ARO%3A3002576","AAC(6')-Ib3"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002577","l":"","na":1,"nb":3,"a":[["ARO%3A3002577","AAC(6')-Ib4"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002578","l":"","na":1,"nb":3,"a":[["ARO%3A3002578","AAC(6')-Ib7"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002579","l":"","na":1,"nb":3,"a":[["ARO%3A3002579","AAC(6')-Ib8"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002580","l":"","na":1,"nb":3,"a":[["ARO%3A3002580","AAC(6')-Ib9"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002581","l":"","na":1,"nb":3,"a":[["ARO%3A3002581","AAC(6')-Ib10"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002582","l":"","na":1,"nb":3,"a":[["ARO%3A3002582","AAC(6')-Ib11"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002586","l":"","na":1,"nb":3,"a":[["ARO%3A3002586","AAC(6')-32"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002591","l":"","na":1,"nb":3,"a":[["ARO%3A3002591","AAC(6')-Ib-Suzhou"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002592","l":"","na":1,"nb":3,"a":[["ARO%3A3002592","AAC(6')-Ib-Hangzhou"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002593","l":"","na":1,"nb":3,"a":[["ARO%3A3002593","AAC(6')-Ib-SK"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002624","l":"","na":1,"nb":3,"a":[["ARO%3A3002624","ANT(4')-IIa"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002625","l":"","na":1,"nb":3,"a":[["ARO%3A3002625","ANT(4')-IIb"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002649","l":"","na":1,"nb":3,"a":[["ARO%3A3002649","APH(3')-Va"]],"b":[["antibacterial/framycetin.html","framycetin"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3002650","l":"","na":1,"nb":3,"a":[["ARO%3A3002650","APH(3')-Vb"]],"b":[["antibacterial/framycetin.html","framycetin"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3002651","l":"","na":1,"nb":3,"a":[["ARO%3A3002651","APH(3')-Vc"]],"b":[["antibacterial/framycetin.html","framycetin"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3002666","l":"rmtF","na":1,"nb":3,"a":[["ARO%3A3002666","rmtF"]],"b":[["antibacterial/astromicin.html","astromicin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3002671","l":"Limosilactobacillus reuteri cat-TC","na":1,"nb":3,"a":[["ARO%3A3002671","Limosilactobacillus reuteri cat-TC"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002672","l":"Bacillus pumilus cat86","na":1,"nb":3,"a":[["ARO%3A3002672","Bacillus pumilus cat86"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002674","l":"Clostridium butyricum catB","na":1,"nb":3,"a":[["ARO%3A3002674","Clostridium butyricum catB"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002675","l":"catB2","na":1,"nb":3,"a":[["ARO%3A3002675","catB2"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002676","l":"catB3","na":1,"nb":3,"a":[["ARO%3A3002676","catB3"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002678","l":"Pseudomonas aeruginosa catB6","na":1,"nb":3,"a":[["ARO%3A3002678","Pseudomonas aeruginosa catB6"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002679","l":"Pseudomonas aeruginosa catB7","na":1,"nb":3,"a":[["ARO%3A3002679","Pseudomonas aeruginosa catB7"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002680","l":"catB8","na":1,"nb":3,"a":[["ARO%3A3002680","catB8"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002681","l":"catB9","na":1,"nb":3,"a":[["ARO%3A3002681","catB9"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002682","l":"catD","na":1,"nb":3,"a":[["ARO%3A3002682","catD"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002683","l":"catA1","na":1,"nb":3,"a":[["ARO%3A3002683","catA1"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002684","l":"catII","na":1,"nb":3,"a":[["ARO%3A3002684","catII"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002685","l":"catIII","na":1,"nb":3,"a":[["ARO%3A3002685","catIII"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002686","l":"catP","na":1,"nb":3,"a":[["ARO%3A3002686","catP"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002687","l":"catQ","na":1,"nb":3,"a":[["ARO%3A3002687","catQ"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002688","l":"catS","na":1,"nb":3,"a":[["ARO%3A3002688","catS"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002689","l":"Plasmid-encoded cat (pp-cat)","na":1,"nb":3,"a":[["ARO%3A3002689","Plasmid-encoded cat (pp-cat)"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002825","l":"ErmY","na":1,"nb":3,"a":[["ARO%3A3002825","ErmY"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/oleandomycin.html","oleandomycin"]]},{"id":"ARO:3002827","l":"tlrC","na":1,"nb":3,"a":[["ARO%3A3002827","tlrC"]],"b":[["antibacterial/lincomycin.html","lincomycin"],["antibacterial/mycinamicin-iv.html","mycinamicin IV"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3002830","l":"vgaALC","na":1,"nb":3,"a":[["ARO%3A3002830","vgaALC"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002833","l":"vgaE","na":1,"nb":3,"a":[["ARO%3A3002833","vgaE"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002881","l":"lmrC","na":1,"nb":3,"a":[["ARO%3A3002881","lmrC"]],"b":[["antibacterial/celesticetin.html","celesticetin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002987","l":"bcrA","na":1,"nb":3,"a":[["ARO%3A3002987","bcrA"]],"b":[["antibacterial/bacitracin-a.html","bacitracin A"],["antibacterial/bacitracin-b.html","bacitracin B"],["antibacterial/bacitracin-f.html","bacitracin F"]]},{"id":"ARO:3002988","l":"bcrB","na":1,"nb":3,"a":[["ARO%3A3002988","bcrB"]],"b":[["antibacterial/bacitracin-a.html","bacitracin A"],["antibacterial/bacitracin-b.html","bacitracin B"],["antibacterial/bacitracin-f.html","bacitracin F"]]},{"id":"ARO:3003007","l":"bmr","na":1,"nb":3,"a":[["ARO%3A3003007","bmr"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/puromycin.html","puromycin"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3003062","l":"ykkCD","na":1,"nb":3,"a":[["ARO%3A3003062","ykkCD"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/streptomycin.html","streptomycin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003072","l":"mphL","na":1,"nb":3,"a":[["ARO%3A3003072","mphL"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003080","l":"daptomycin resistant pgsA","na":3,"nb":1,"a":[["ARO%3A3003788","Bacillus subtilis pgsA with mutation conferring resistance to daptomycin"],["ARO%3A3003080","daptomycin resistant pgsA"],["ARO%3A3003323","Staphylococcus aureus pgsA mutations conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003110","l":"catB10","na":1,"nb":3,"a":[["ARO%3A3003110","catB10"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3003112","l":"lsaC","na":1,"nb":3,"a":[["ARO%3A3003112","lsaC"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"ARO:3003205","l":"Erm(43)","na":1,"nb":3,"a":[["ARO%3A3003205","Erm(43)"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"]]},{"id":"ARO:3003301","l":"Staphylococcus aureus gyrB conferring resistance to aminocoumarin","na":1,"nb":3,"a":[["ARO%3A3003301","Staphylococcus aureus gyrB conferring resistance to aminocoumarin"]],"b":[["antibacterial/clorobiocin.html","clorobiocin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3003302","l":"Bartonella bacilliformis gyrB conferring resistance to aminocoumarin","na":1,"nb":3,"a":[["ARO%3A3003302","Bartonella bacilliformis gyrB conferring resistance to aminocoumarin"]],"b":[["antibacterial/clorobiocin.html","clorobiocin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3003303","l":"Escherichia coli gyrB conferring resistance to aminocoumarin","na":1,"nb":3,"a":[["ARO%3A3003303","Escherichia coli gyrB conferring resistance to aminocoumarin"]],"b":[["antibacterial/clorobiocin.html","clorobiocin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3003314","l":"Staphylococcus aureus parE conferring resistance to aminocoumarin","na":1,"nb":3,"a":[["ARO%3A3003314","Staphylococcus aureus parE conferring resistance to aminocoumarin"]],"b":[["antibacterial/clorobiocin.html","clorobiocin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3003318","l":"Streptomyces rishiriensis parY mutant conferring resistance to aminocoumarin","na":1,"nb":3,"a":[["ARO%3A3003318","Streptomyces rishiriensis parY mutant conferring resistance to aminocoumarin"]],"b":[["antibacterial/clorobiocin.html","clorobiocin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3003381","l":"Escherichia coli soxR with mutation conferring antibiotic resistance","na":1,"nb":3,"a":[["ARO%3A3003381","Escherichia coli soxR with mutation conferring antibiotic resistance"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3003385","l":"Klebsiella aerogenes Omp36","na":1,"nb":3,"a":[["ARO%3A3003385","Klebsiella aerogenes Omp36"]],"b":[["antibacterial/cefepime.html","cefepime"],["antibacterial/cefpirome.html","cefpirome"],["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3003394","l":"Mycobacterium tuberculosis pncA mutations conferring resistance to pyrazinamide","na":3,"nb":1,"a":[["ARO%3A3004267","antibiotic resistant pncA"],["ARO%3A3003394","Mycobacterium tuberculosis pncA mutations conferring resistance to pyrazinamide"],["ARO%3A3003418","Pyrazinamide resistant pncA"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3003511","l":"Escherichia coli soxS with mutation conferring antibiotic resistance","na":1,"nb":3,"a":[["ARO%3A3003511","Escherichia coli soxS with mutation conferring antibiotic resistance"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enrofloxacin.html","enrofloxacin"]]},{"id":"ARO:3003589","l":"NmcA","na":1,"nb":3,"a":[["ARO%3A3003589","NmcA"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"ARO:3003702","l":"Pseudomonas aeruginosa gyrA and parC conferring resistance to fluoroquinolones","na":1,"nb":3,"a":[["ARO%3A3003702","Pseudomonas aeruginosa gyrA and parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/ofloxacin.html","ofloxacin"],["antibacterial/pefloxacin.html","pefloxacin"]]},{"id":"ARO:3003742","l":"mphG","na":1,"nb":3,"a":[["ARO%3A3003742","mphG"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003807","l":"Escherichia coli AcrAB-TolC with AcrR mutation conferring resistance to ciprofloxacin, tetracycline, and ceftazidime","na":1,"nb":3,"a":[["ARO%3A3003807","Escherichia coli AcrAB-TolC with AcrR mutation conferring resistance to ciprofloxacin, tetracycline, and ceftazidime"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003839","l":"Mrx","na":1,"nb":3,"a":[["ARO%3A3003839","Mrx"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3003842","l":"MUS-2","na":1,"nb":3,"a":[["ARO%3A3003842","MUS-2"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/piperacillin.html","piperacillin"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3003931","l":"Capnocytophaga gingivalis gyrA conferring resistance to fluoroquinolones","na":1,"nb":3,"a":[["ARO%3A3003931","Capnocytophaga gingivalis gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3003947","l":"EfrAB","na":1,"nb":3,"a":[["ARO%3A3003947","EfrAB"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3003960","l":"farAB","na":1,"nb":3,"a":[["ARO%3A3003960","farAB"]],"b":[["antibacterial/linoleic-acid.html","linoleic acid"],["antibacterial/oleic-acid.html","oleic acid"],["antibacterial/palmitic-acid.html","palmitic acid"]]},{"id":"ARO:3003964","l":"hp1181","na":1,"nb":3,"a":[["ARO%3A3003964","hp1181"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/metronidazole.html","metronidazole"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003983","l":"CatU","na":1,"nb":3,"a":[["ARO%3A3003983","CatU"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3003991","l":"mphI","na":1,"nb":3,"a":[["ARO%3A3003991","mphI"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/telithromycin.html","telithromycin"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3004066","l":"MexEF-OprN with MexT mutation conferring resistance to chloramphenicol, ciprofloxacin, and trimethoprim","na":1,"nb":3,"a":[["ARO%3A3004066","MexEF-OprN with MexT mutation conferring resistance to chloramphenicol, ciprofloxacin, and trimethoprim"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004068","l":"MexEF-OprN with MexS mutations conferring resistance to chloramphenicol, ciprofloxacin, and trimethoprim","na":1,"nb":3,"a":[["ARO%3A3004068","MexEF-OprN with MexS mutations conferring resistance to chloramphenicol, ciprofloxacin, and trimethoprim"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004077","l":"PmpM","na":1,"nb":3,"a":[["ARO%3A3004077","PmpM"]],"b":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"],["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3004094","l":"Erm(48)","na":1,"nb":3,"a":[["ARO%3A3004094","Erm(48)"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"]]},{"id":"ARO:3004098","l":"LpeAB","na":1,"nb":3,"a":[["ARO%3A3004098","LpeAB"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3004102","l":"kamB","na":1,"nb":3,"a":[["ARO%3A3004102","kamB"]],"b":[["antibacterial/apramycin.html","apramycin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004103","l":"QepA2","na":1,"nb":3,"a":[["ARO%3A3004103","QepA2"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3004108","l":"Enterobacter cloacae rob","na":1,"nb":3,"a":[["ARO%3A3004108","Enterobacter cloacae rob"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/telithromycin.html","telithromycin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004127","l":"Escherichia coli mipA","na":1,"nb":3,"a":[["ARO%3A3004127","Escherichia coli mipA"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/nalidixic-acid.html","nalidixic acid"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004174","l":"Chlamydia trachomatis 23S rRNA with mutation conferring resistance to macrolide antibiotics","na":1,"nb":3,"a":[["ARO%3A3004174","Chlamydia trachomatis 23S rRNA with mutation conferring resistance to macrolide antibiotics"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/josamycin.html","josamycin"]]},{"id":"ARO:3004378","l":"QepA3","na":1,"nb":3,"a":[["ARO%3A3004378","QepA3"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3004379","l":"QepA4","na":1,"nb":3,"a":[["ARO%3A3004379","QepA4"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3004441","l":"tet(59)","na":1,"nb":3,"a":[["ARO%3A3004441","tet(59)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004442","l":"tet(W/N/W)","na":1,"nb":3,"a":[["ARO%3A3004442","tet(W/N/W)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004544","l":"mphJ","na":1,"nb":3,"a":[["ARO%3A3004544","mphJ"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/telithromycin.html","telithromycin"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3004576","l":"tet(61)","na":1,"nb":3,"a":[["ARO%3A3004576","tet(61)"]],"b":[["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004589","l":"tet(53)","na":1,"nb":3,"a":[["ARO%3A3004589","tet(53)"]],"b":[["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004591","l":"tet(55)","na":1,"nb":3,"a":[["ARO%3A3004591","tet(55)"]],"b":[["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004592","l":"erm(32)","na":1,"nb":3,"a":[["ARO%3A3004592","erm(32)"]],"b":[["antibacterial/methymycin.html","methymycin"],["antibacterial/narbomycin.html","narbomycin"],["antibacterial/pikromycin.html","pikromycin"]]},{"id":"ARO:3004595","l":"erm(45)","na":1,"nb":3,"a":[["ARO%3A3004595","erm(45)"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"]]},{"id":"ARO:3004596","l":"erm(46)","na":1,"nb":3,"a":[["ARO%3A3004596","erm(46)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004639","l":"Corynebacterium striatum tetA","na":1,"nb":3,"a":[["ARO%3A3004639","Corynebacterium striatum tetA"]],"b":[["antibacterial/oxacillin.html","oxacillin"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004649","l":"cfr(B)","na":1,"nb":3,"a":[["ARO%3A3004649","cfr(B)"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/linezolid.html","linezolid"]]},{"id":"ARO:3004652","l":"Erm(O)-lrm","na":1,"nb":3,"a":[["ARO%3A3004652","Erm(O)-lrm"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3004679","l":"rmtE2","na":1,"nb":3,"a":[["ARO%3A3004679","rmtE2"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004854","l":"CMY-136","na":1,"nb":3,"a":[["ARO%3A3004854","CMY-136"]],"b":[["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftolozane.html","ceftolozane"],["antibacterial/cefuroxime.html","cefuroxime"]]},{"id":"ARO:3005021","l":"cfr(D)","na":1,"nb":3,"a":[["ARO%3A3005021","cfr(D)"]],"b":[["antibacterial/linezolid.html","linezolid"],["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3005047","l":"eptB","na":1,"nb":3,"a":[["ARO%3A3005047","eptB"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"],["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3005051","l":"LpsB","na":1,"nb":3,"a":[["ARO%3A3005051","LpsB"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"],["antibacterial/defensin.html","defensin"]]},{"id":"ARO:3005056","l":"tet(X6)","na":1,"nb":3,"a":[["ARO%3A3005056","tet(X6)"]],"b":[["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3005057","l":"tet(X5)","na":1,"nb":3,"a":[["ARO%3A3005057","tet(X5)"]],"b":[["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3005166","l":"tet(X1)","na":1,"nb":3,"a":[["ARO%3A3005166","tet(X1)"]],"b":[["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007032","l":"Erm(50)","na":1,"nb":3,"a":[["ARO%3A3007032","Erm(50)"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/roxithromycin.html","roxithromycin"]]},{"id":"ARO:3007050","l":"mreA","na":1,"nb":3,"a":[["ARO%3A3007050","mreA"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3007056","l":"Antibiotic resistant Helicobacter pylori nitroreductase","na":3,"nb":1,"a":[["ARO%3A3007056","Antibiotic resistant Helicobacter pylori nitroreductase"],["ARO%3A3007059","Helicobacter pylori frxA mutation conferring resistance to metronidazole"],["ARO%3A3007055","Helicobacter pylori rdxA mutation conferring resistance to metronidazole"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007062","l":"VAM-1","na":1,"nb":3,"a":[["ARO%3A3007062","VAM-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3007186","l":"Mycobacterium tuberculosis Rv1258c mutations confer resistance to pyrazinamide, isoniazid, and streptomycin","na":1,"nb":3,"a":[["ARO%3A3007186","Mycobacterium tuberculosis Rv1258c mutations confer resistance to pyrazinamide, isoniazid, and streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"],["antimycobacterial/isoniazide.html","isoniazide"],["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3007196","l":"KPC-123","na":1,"nb":3,"a":[["ARO%3A3007196","KPC-123"]],"b":[["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007208","l":"HelR","na":1,"nb":3,"a":[["ARO%3A3007208","HelR"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3007209","l":"Streptomyces venezuelae rox","na":1,"nb":3,"a":[["ARO%3A3007209","Streptomyces venezuelae rox"]],"b":[["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3007435","l":"WUS-1","na":1,"nb":3,"a":[["ARO%3A3007435","WUS-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/carbenicillin.html","carbenicillin"],["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3007473","l":"Mycobacterium avium gyrA with mutation conferring resistance to fluoroquinolone","na":1,"nb":3,"a":[["ARO%3A3007473","Mycobacterium avium gyrA with mutation conferring resistance to fluoroquinolone"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3007524","l":"Candida spp. ERG11 with mutations conferring resistance to azole antibiotics","na":1,"nb":3,"a":[["ARO%3A3007524","Candida spp. ERG11 with mutations conferring resistance to azole antibiotics"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"ARO:3007531","l":"Streptococcus pyogenes PBP2x conferring resistance to beta-lactam antibiotics","na":1,"nb":3,"a":[["ARO%3A3007531","Streptococcus pyogenes PBP2x conferring resistance to beta-lactam antibiotics"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefotaxime.html","cefotaxime"]]},{"id":"ARO:3007565","l":"Aspergillus spp. cyp51A with mutations conferring resistance to triazoles antibiotics","na":1,"nb":3,"a":[["ARO%3A3007565","Aspergillus spp. cyp51A with mutations conferring resistance to triazoles antibiotics"]],"b":[["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"ARO:3007632","l":"FRI-11","na":1,"nb":3,"a":[["ARO%3A3007632","FRI-11"]],"b":[["antibacterial/ertapenem.html","ertapenem"],["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3007654","l":"erm(56)","na":1,"nb":3,"a":[["ARO%3A3007654","erm(56)"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"]]},{"id":"ARO:3007666","l":"Candida spp. cyp51A1 with mutations conferring resistance to triazoles and imidazole antibiotics","na":1,"nb":3,"a":[["ARO%3A3007666","Candida spp. cyp51A1 with mutations conferring resistance to triazoles and imidazole antibiotics"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/ketoconazole.html","ketoconazole"]]},{"id":"ARO:3007669","l":"aadT","na":1,"nb":3,"a":[["ARO%3A3007669","aadT"]],"b":[["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"CHEBI:121196","l":"reumycin","na":3,"nb":1,"a":[["EC%3A2.1.1.349","toxoflavin synthase"],["RHEA%3A56848","1,6-didemethyltoxoflavin + S-adenosyl-L-methionine = reumycin + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A56852","reumycin + S-adenosyl-L-methionine = toxoflavin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["unspecified/reumycin.html","reumycin"]]},{"id":"CHEBI:131914","l":"violacein","na":3,"nb":1,"a":[["RHEA%3A49720","protoviolaceinate + NADH + 2 O2 + 2 H(+) = violacein + CO2 + NAD(+) + 2 H2O"],["RHEA%3A49728","protoviolaceinate + NADPH + 2 O2 + 2 H(+) = violacein + CO2 + NADP(+) + 2 H2O"],["RHEA%3A49732","violaceinate + O2 + H(+) = violacein + CO2 + H2O"]],"b":[["antibacterial/violacein.html","violacein"]]},{"id":"CHEBI:131915","l":"deoxyviolacein","na":3,"nb":1,"a":[["RHEA%3A49744","deoxyviolaceinate + O2 + H(+) = deoxyviolacein + CO2 + H2O"],["RHEA%3A49736","protodeoxyviolaceinate + NADH + 2 O2 + 2 H(+) = deoxyviolacein + CO2 + NAD(+) + 2 H2O"],["RHEA%3A49740","protodeoxyviolaceinate + NADPH + 2 O2 + 2 H(+) = deoxyviolacein + CO2 + NADP(+) + 2 H2O"]],"b":[["antibacterial/deoxyviolacein.html","deoxyviolacein"]]},{"id":"CHEBI:138730","l":"","na":3,"nb":1,"a":[["EC%3A2.1.1.267","flavonoid 3',5'-methyltransferase"],["EC%3A2.1.1.42","flavone 3'-O-methyltransferase"],["RHEA%3A55332","a 3'-hydroxyflavone + S-adenosyl-L-methionine = a 3'-methoxyflavone + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/3-3-dimethylquercetin.html","3,3'-dimethylquercetin"]]},{"id":"CHEBI:142605","l":"","na":3,"nb":1,"a":[["EC%3A2.3.1.332","medium-chain-alcohol O-fatty-acyltransferase"],["RHEA%3A85935","a medium-chain primary fatty alcohol + a fatty acyl-CoA = a medium-chain alcohol wax ester + CoA"],["RHEA%3A58364","a medium-chain primary fatty alcohol + NADP(+) = a medium-chain fatty aldehyde + NADPH + H(+)"]],"b":[["antibacterial/1-2-dodecanediol.html","1,2-dodecanediol"]]},{"id":"CHEBI:16363","l":"α-santonin","na":3,"nb":1,"a":[["EC%3A1.3.1.47","alpha-santonin 1,2-reductase"],["RHEA%3A23612","1,2-dihydro-alpha-santonin + NAD(+) = alpha-santonin + NADH + H(+)"],["RHEA%3A23616","1,2-dihydro-alpha-santonin + NADP(+) = alpha-santonin + NADPH + H(+)"]],"b":[["antifungal/%CE%B1-santonin.html","α-santonin"]]},{"id":"CHEBI:17097","l":"biphenyl","na":3,"nb":1,"a":[["EC%3A1.14.12.18","biphenyl 2,3-dioxygenase"],["RHEA%3A18165","biphenyl + NADH + O2 + H(+) = (2R,3S)-3-phenylcyclohexa-3,5-diene-1,2-diol + NAD(+)"],["proteintraitsmech%3ABIOLIP_BNL","BNL-binding site"]],"b":[["antifungal/biphenyl.html","biphenyl"]]},{"id":"CHEBI:1722","l":"","na":3,"nb":1,"a":[["EC%3A1.1.1.145","3beta-hydroxy-Delta(5)-steroid dehydrogenase"],["RHEA%3A24076","a 3beta-hydroxy-Delta(5)-steroid + NAD(+) = a 3-oxo-Delta(5)-steroid + NADH + H(+)"],["RHEA%3A56880","a 3beta-hydroxy-Delta(5)-steroid + NADP(+) = a 3-oxo-Delta(5)-steroid + NADPH + H(+)"]],"b":[["antibacterial/7-aminocholesterol.html","7-aminocholesterol"]]},{"id":"CHEBI:17231","l":"m-cresol","na":3,"nb":1,"a":[["EC%3A4.1.1.52","6-methylsalicylate decarboxylase"],["RHEA%3A62208","3-methylphenol + reduced [NADPH--hemoprotein reductase] + O2 = 3-hydroxybenzyl alcohol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A23112","6-methylsalicylate + H(+) = 3-methylphenol + CO2"]],"b":[["antifungal/m-cresol.html","m-cresol"]]},{"id":"CHEBI:173119","l":"(6Z)-nerolidol","na":1,"nb":3,"a":[["RHEA%3A68832","(2Z,6Z)-farnesyl diphosphate + H2O = (6Z)-nerolidol + diphosphate"]],"b":[["antifungal/3r-6z-nerolidol.html","(3R,6Z)-nerolidol"],["antifungal/3s-6z-nerolidol.html","(3S,6Z)-nerolidol"],["antifungal/6z-nerolidol.html","(6Z)-nerolidol"]]},{"id":"CHEBI:17484","l":"benzyl isothiocyanate","na":3,"nb":1,"a":[["EC%3A5.99.1.1","thiocyanate isomerase"],["RHEA%3A10004","benzyl isothiocyanate = benzyl thiocyanate"],["RHEA%3A69300","(Z)-phenyl-N-(sulfonatooxy)methanimidothioate = benzyl isothiocyanate + sulfate"]],"b":[["antibacterial/benzyl-isothiocyanate.html","benzyl isothiocyanate"]]},{"id":"CHEBI:195253","l":"5-hydroxy-3-methylfuran-2(5H)-one","na":3,"nb":1,"a":[["RHEA%3A76507","(-)-2'-epi-GR24 + H2O = (-)-2'-epi-GR24 ABC-rings + 5-hydroxy-3-methylfuran-2(5H)-one"],["RHEA%3A76511","5-deoxystrigol + H2O = 5-deoxystrigol ABC-rings + 5-hydroxy-3-methylfuran-2(5H)-one"],["RHEA%3A76515","orobanchol + H2O = orobanchol ABC-rings + 5-hydroxy-3-methylfuran-2(5H)-one"]],"b":[["antiviral/5-hydroxy-3-methylfuran-2-5h-one.html","5-hydroxy-3-methylfuran-2(5H)-one"]]},{"id":"CHEBI:2453","l":"acyclovir","na":3,"nb":1,"a":[["RHEA%3A83871","valacyclovir + H2O = acyclovir + L-valine + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antiviral/acyclovir.html","acyclovir"]]},{"id":"CHEBI:24838","l":"","na":3,"nb":1,"a":[["TCDB%3A2.A.30","The Cation-Chloride Cotransporter (CCC) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.58","The Phosphate:Na+ Symporter (PNaS) Family"]],"b":[["antibacterial/sodium-fluorophosphate.html","sodium fluorophosphate"]]},{"id":"CHEBI:26267","l":"","na":1,"nb":3,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antiviral/epigallocatechin-4%CE%B28-2%CE%B2o-7-epicatechin.html","epigallocatechin-(4β→8,2β→O-7)-epicatechin"],["antiviral/proanthocyanidin-a2.html","proanthocyanidin A2"],["antiviral/theasinensin-a.html","theasinensin A"]]},{"id":"CHEBI:28915","l":"fosfomycin","na":3,"nb":1,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.5","The Pseudomonas OprP Porin (POP) Family"],["proteintraitsmech%3ABIOLIP_FCN","FCN-binding site"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"CHEBI:3139","l":"bleomycin A2","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A9.A.18","The Peptide Uptake Permease (PUP) Family"]],"b":[["antibacterial/bleomycin-a2.html","bleomycin A2"]]},{"id":"CHEBI:32197","l":"tetracenomycin A2","na":3,"nb":1,"a":[["EC%3A1.14.13.200","tetracenomycin A2 monooxygenase-diooxygenase"],["RHEA%3A42824","tetracenomycin A2 + 2 NADH + 2 O2 + 2 H(+) = tetracenomycin C + 2 NAD(+) + H2O"],["RHEA%3A42820","tetracenomycin A2 + 2 NADPH + 2 O2 + 2 H(+) = tetracenomycin C + 2 NADP(+) + H2O"]],"b":[["antibacterial/tetracenomycin-a2.html","tetracenomycin A2"]]},{"id":"CHEBI:324935","l":"fumagillol","na":3,"nb":1,"a":[["EC%3A1.1.1.437","5-dehydrofumagillol 5-reductase"],["RHEA%3A74751","fumagillol + dodecapentaneoyl-[polyketide synthase] = prefumagillin + holo-[polyketide synthase]"],["RHEA%3A74707","fumagillol + NADP(+) = 5-dehydrofumagillol + NADPH + H(+)"]],"b":[["unspecified/fumagillol.html","fumagillol"]]},{"id":"CHEBI:3392","l":"carbendazim","na":3,"nb":1,"a":[["EC%3A3.1.1.122","carbendazim hydrolysing esterase"],["RHEA%3A78411","carbendazim + H2O = 2-aminobenzimidazole + methanol + CO2"],["RHEA%3A78415","carbendazim + H2O = N-(1H-1,3-benzodiazol-2-yl)carbamate + methanol + H(+)"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"CHEBI:35996","l":"","na":1,"nb":3,"a":[["TCDB%3A1.B.25","The Outer Membrane Porin (Opr) Family"]],"b":[["antibacterial/faropenem.html","faropenem"],["unspecified/faropenem-1.html","faropenem(1−)"],["unspecified/penem.html","penem"]]},{"id":"CHEBI:43968","l":"meropenem","na":3,"nb":1,"a":[["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"],["TCDB%3A1.B.25","The Outer Membrane Porin (Opr) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/meropenem.html","meropenem"]]},{"id":"CHEBI:44485","l":"N-ethylmaleimide","na":3,"nb":1,"a":[["RHEA%3A35527","N-ethylmaleimide + NADH + H(+) = N-ethylsuccinimide + NAD(+)"],["RHEA%3A35523","N-ethylmaleimide + NADPH + H(+) = N-ethylsuccinimide + NADP(+)"],["proteintraitsmech%3ABIOLIP_NEQ","NEQ-binding site"]],"b":[["antiviral/n-ethylmaleimide.html","N-ethylmaleimide"]]},{"id":"CHEBI:45453","l":"sinefungin","na":3,"nb":1,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A2.A.71","The Folate-Biopterin Transporter (FBT) Family"],["proteintraitsmech%3ABIOLIP_SFG","SFG-binding site"]],"b":[["antifungal/sinefungin.html","sinefungin"]]},{"id":"CHEBI:4629","l":"diosgenin","na":3,"nb":1,"a":[["EC%3A3.2.1.189","dioscin glycosidase (diosgenin-forming)"],["RHEA%3A36827","dioscin + 3 H2O = diosgenin + 2 L-rhamnopyranose + D-glucose"],["RHEA%3A61888","diosgenin + UDP-alpha-D-glucose = diosgenin 3-O-beta-D-glucoside + UDP + H(+)"]],"b":[["antiviral/diosgenin.html","diosgenin"]]},{"id":"CHEBI:47789","l":"","na":3,"nb":1,"a":[["EC%3A1.1.1.201","7beta-hydroxysteroid dehydrogenase (NADP(+))"],["RHEA%3A82271","7alpha-hydroxy steroid + NADP(+) = a 7-oxosteroid + NADPH + H(+)"],["RHEA%3A20233","a 7beta-hydroxysteroid + NADP(+) = a 7-oxosteroid + NADPH + H(+)"]],"b":[["antiviral/lucialdehyde-b.html","lucialdehyde B"]]},{"id":"CHEBI:51277","l":"","na":1,"nb":3,"a":[["RHEA%3A82919","a thioester + H2O = a thiol + a carboxylate + H(+)"]],"b":[["antifungal/acibenzolar-s-methyl.html","acibenzolar-S-methyl"],["antifungal/fenpyrazamine.html","fenpyrazamine"],["antiprotozoal/sid-26681509.html","SID 26681509"]]},{"id":"CHEBI:6076","l":"itraconazole","na":3,"nb":1,"a":[["RHEA%3A33503","itraconazole(in) + ATP + H2O = itraconazole(out) + ADP + phosphate + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/itraconazole.html","itraconazole"]]},{"id":"CHEBI:60822","l":"streptothricin F(3+)","na":3,"nb":1,"a":[["EC%3A3.5.2.19","streptothricin hydrolase"],["RHEA%3A57000","streptothricin F + acetyl-CoA = N(beta)-acetylstreptothricin F + CoA + H(+)"],["RHEA%3A28138","streptothricin F + H2O = streptothricin F acid"]],"b":[["unspecified/streptothricin-f-3.html","streptothricin F(3+)"]]},{"id":"CHEBI:6472","l":"lincomycin","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_3QB","3QB-binding site"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"CHEBI:67135","l":"2-nitroimidazole","na":3,"nb":1,"a":[["EC%3A3.5.99.9","2-nitroimidazole nitrohydrolase"],["RHEA%3A34271","2-nitroimidazole + H2O = 1,3-dihydro-2H-imidazol-2-one + nitrite + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antimycobacterial/2-nitroimidazole.html","2-nitroimidazole"]]},{"id":"CHEBI:75291","l":"ε-rhodomycinone","na":3,"nb":1,"a":[["EC%3A1.14.13.180","aklavinone 12-hydroxylase"],["RHEA%3A37835","aklavinone + NADPH + O2 + H(+) = epsilon-rhodomycinone + NADP(+) + H2O"],["RHEA%3A45760","dTDP-beta-L-daunosamine + epsilon-rhodomycinone = rhodomycin D + dTDP + H(+)"]],"b":[["unspecified/%CE%B5-rhodomycinone.html","ε-rhodomycinone"]]},{"id":"CHEBI:77879","l":"elaiophylin","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["proteintraitsmech%3ABIOLIP_ELO","ELO-binding site"]],"b":[["antifungal/elaiophylin.html","elaiophylin"]]},{"id":"CHEBI:78303","l":"aclacinomycin S zwitterion","na":3,"nb":1,"a":[["EC%3A2.4.1.327","aclacinomycin-T 2-deoxy-L-fucose transferase"],["RHEA%3A41652","dTDP-2-deoxy-beta-L-fucose + aclacinomycin S = 2-deoxy-alpha-L-fucosylaclacinomycin S + dTDP + H(+)"],["RHEA%3A41568","dTDP-2-deoxy-beta-L-fucose + aclacinomycin T = aclacinomycin S + dTDP + H(+)"]],"b":[["unspecified/aclacinomycin-s-zwitterion.html","aclacinomycin S zwitterion"]]},{"id":"CHEBI:80729","l":"toxoflavin","na":3,"nb":1,"a":[["EC%3A2.1.1.349","toxoflavin synthase"],["RHEA%3A56852","reumycin + S-adenosyl-L-methionine = toxoflavin + S-adenosyl-L-homocysteine + H(+)"],["proteintraitsmech%3ABIOLIP_TOF","TOF-binding site"]],"b":[["antibacterial/toxoflavin.html","toxoflavin"]]},{"id":"CHEBI:82744","l":"","na":3,"nb":1,"a":[["EC%3A4.8.1.2","aliphatic aldoxime dehydratase"],["RHEA%3A11316","an aliphatic aldoxime = a nitrile + H2O"],["MCSA%3A361","aldoxime dehydratase"]],"b":[["unspecified/ic202c.html","IC202C"]]},{"id":"CHEBI:84688","l":"","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]],"b":[["antibacterial/albomycin-%CE%B41.html","albomycin δ1"]]},{"id":"CHEBI:87208","l":"","na":1,"nb":3,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/cyprodinil.html","cyprodinil"],["antifungal/mepanipyrim.html","mepanipyrim"],["antifungal/pyrimethanil.html","pyrimethanil"]]},{"id":"CHEBI:9053","l":"sclareol","na":3,"nb":1,"a":[["EC%3A4.2.3.141","sclareol synthase"],["RHEA%3A34459","8-hydroxycopalyl diphosphate + H2O = sclareol + diphosphate"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/sclareol.html","sclareol"]]},{"id":"CHEBI:9215","l":"spectinomycin","na":3,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["proteintraitsmech%3ABIOLIP_SCM","SCM-binding site"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"CHEBI:9470","l":"tetracenomycin C","na":3,"nb":1,"a":[["EC%3A1.14.13.200","tetracenomycin A2 monooxygenase-diooxygenase"],["RHEA%3A42824","tetracenomycin A2 + 2 NADH + 2 O2 + 2 H(+) = tetracenomycin C + 2 NAD(+) + H2O"],["RHEA%3A42820","tetracenomycin A2 + 2 NADPH + 2 O2 + 2 H(+) = tetracenomycin C + 2 NADP(+) + H2O"]],"b":[["antibacterial/tetracenomycin-c.html","tetracenomycin C"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":3,"nb":1,"a":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF22041","Glutathione S-transferase, C-terminal domain"],["Pfam%3APF08493","Aflatoxin regulatory protein"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:54571","l":"Streptomyces venezuelae","na":3,"nb":1,"a":[["Pfam%3APF08990","Erythronolide synthase docking domain"],["TED%3AAF-A0A5P2CQV7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5P2CQV7-F1-model_v4_TED02"],["TED%3AAF-A0A5P2C5X4-F1-model_v4_TED01","TED novel fold AF-A0A5P2C5X4-F1-model_v4_TED01"]],"b":[["antibacterial/methymycin.html","methymycin"]]},{"id":"NCBITaxon:578454","l":"Candida parapsilosis (strain CDC 317 / ATCC MYA-4646)","na":1,"nb":3,"a":[["TED%3AAF-G8BAN6-F1-model_v4_TED01","TED novel fold AF-G8BAN6-F1-model_v4_TED01"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"UniProt:P10613","l":"","na":1,"nb":3,"a":[["proteintraitsmech%3ABIOLIP_1YN","1YN-binding site"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"UniProt:Q4WNT5","l":"","na":1,"nb":3,"a":[["EC%3A1.14.14.154","sterol 14alpha-demethylase"]],"b":[["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"ARO:0000040","l":"streptomycin","na":2,"nb":1,"a":[["ARO%3A3004968","Mycobacterium tuberculosis whib7 mutation conferring resistance to streptomycin"],["ARO%3A3004965","streptomycin resistant whib7"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:0000049","l":"kanamycin A","na":2,"nb":1,"a":[["ARO%3A3004966","Kanamycin resistant whib7"],["ARO%3A3004967","Mycobacterium tuberculosis whib7 mutations confer resistance to kanamycin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3000026","l":"mepA","na":2,"nb":1,"a":[["ARO%3A3000026","mepA"],["ARO%3A3000746","mepR"]],"b":[["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:3000118","l":"vgaB","na":1,"nb":2,"a":[["ARO%3A3000118","vgaB"]],"b":[["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3000165","l":"tet(A)","na":2,"nb":1,"a":[["ARO%3A3000165","tet(A)"],["ARO%3A3003479","tetR"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000236","l":"glycopeptide resistance gene cluster VanA","na":1,"nb":2,"a":[["ARO%3A3000236","glycopeptide resistance gene cluster VanA"]],"b":[["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000251","l":"msrA","na":1,"nb":2,"a":[["ARO%3A3000251","msrA"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/quinupristin.html","quinupristin"]]},{"id":"ARO:3000253","l":"glycopeptide resistance gene cluster VanD","na":1,"nb":2,"a":[["ARO%3A3000253","glycopeptide resistance gene cluster VanD"]],"b":[["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000256","l":"glycopeptide resistance gene cluster VanM","na":1,"nb":2,"a":[["ARO%3A3000256","glycopeptide resistance gene cluster VanM"]],"b":[["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000344","l":"EmrAB-TolC","na":2,"nb":1,"a":[["ARO%3A3000344","EmrAB-TolC"],["ARO%3A3000516","emrR"]],"b":[["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3000448","l":"QepA1","na":1,"nb":2,"a":[["ARO%3A3000448","QepA1"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3000545","l":"MacAB-TolC","na":2,"nb":1,"a":[["ARO%3A3000545","MacAB-TolC"],["ARO%3A3000834","phoP"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000616","l":"mel","na":1,"nb":2,"a":[["ARO%3A3000616","mel"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/telithromycin.html","telithromycin"]]},{"id":"ARO:3000768","l":"abeS","na":1,"nb":2,"a":[["ARO%3A3000768","abeS"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3000769","l":"PatA-PatB","na":1,"nb":2,"a":[["ARO%3A3000769","PatA-PatB"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3000771","l":"AdeFGH","na":2,"nb":1,"a":[["ARO%3A3000771","AdeFGH"],["ARO%3A3000620","adeL"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000786","l":"MdsABC","na":2,"nb":1,"a":[["ARO%3A3000504","golS"],["ARO%3A3000786","MdsABC"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3000822","l":"pmrA","na":1,"nb":2,"a":[["ARO%3A3000822","pmrA"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3000865","l":"oleD","na":1,"nb":2,"a":[["ARO%3A3000865","oleD"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3000966","l":"TEM-103","na":1,"nb":2,"a":[["ARO%3A3000966","TEM-103"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"]]},{"id":"ARO:3001216","l":"mdtH","na":1,"nb":2,"a":[["ARO%3A3001216","mdtH"]],"b":[["antibacterial/enoxacin.html","enoxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3001300","l":"myrA","na":1,"nb":2,"a":[["ARO%3A3001300","myrA"]],"b":[["antibacterial/mycinamicin-iv.html","mycinamicin IV"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3001301","l":"RlmA(II)","na":1,"nb":2,"a":[["ARO%3A3001301","RlmA(II)"]],"b":[["antibacterial/mycinamicin-iv.html","mycinamicin IV"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3001306","l":"ErmW","na":1,"nb":2,"a":[["ARO%3A3001306","ErmW"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/josamycin.html","josamycin"]]},{"id":"ARO:3001796","l":"OXA-50","na":1,"nb":2,"a":[["ARO%3A3001796","OXA-50"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"]]},{"id":"ARO:3001816","l":"ACC-2","na":1,"nb":2,"a":[["ARO%3A3001816","ACC-2"]],"b":[["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001917","l":"CTX-M-55","na":1,"nb":2,"a":[["ARO%3A3001917","CTX-M-55"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3002053","l":"CMY-42","na":1,"nb":2,"a":[["ARO%3A3002053","CMY-42"]],"b":[["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002587","l":"","na":1,"nb":2,"a":[["ARO%3A3002587","AAC(6')-I33"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002601","l":"aadA","na":1,"nb":2,"a":[["ARO%3A3002601","aadA"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002602","l":"aadA2","na":1,"nb":2,"a":[["ARO%3A3002602","aadA2"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002603","l":"aadA3","na":1,"nb":2,"a":[["ARO%3A3002603","aadA3"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002604","l":"aadA4","na":1,"nb":2,"a":[["ARO%3A3002604","aadA4"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002605","l":"aadA5","na":1,"nb":2,"a":[["ARO%3A3002605","aadA5"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002606","l":"aadA6","na":1,"nb":2,"a":[["ARO%3A3002606","aadA6"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002607","l":"aadA7","na":1,"nb":2,"a":[["ARO%3A3002607","aadA7"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002608","l":"aadA8","na":1,"nb":2,"a":[["ARO%3A3002608","aadA8"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002609","l":"aadA9","na":1,"nb":2,"a":[["ARO%3A3002609","aadA9"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002611","l":"aadA11","na":1,"nb":2,"a":[["ARO%3A3002611","aadA11"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002612","l":"aadA12","na":1,"nb":2,"a":[["ARO%3A3002612","aadA12"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002613","l":"aadA13","na":1,"nb":2,"a":[["ARO%3A3002613","aadA13"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002614","l":"aadA14","na":1,"nb":2,"a":[["ARO%3A3002614","aadA14"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002615","l":"aadA15","na":1,"nb":2,"a":[["ARO%3A3002615","aadA15"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002616","l":"aadA16","na":1,"nb":2,"a":[["ARO%3A3002616","aadA16"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002617","l":"aadA17","na":1,"nb":2,"a":[["ARO%3A3002617","aadA17"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002618","l":"aadA21","na":1,"nb":2,"a":[["ARO%3A3002618","aadA21"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002619","l":"aadA22","na":1,"nb":2,"a":[["ARO%3A3002619","aadA22"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002620","l":"aadA23","na":1,"nb":2,"a":[["ARO%3A3002620","aadA23"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002621","l":"aadA24","na":1,"nb":2,"a":[["ARO%3A3002621","aadA24"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002622","l":"aadA6/aadA10","na":1,"nb":2,"a":[["ARO%3A3002622","aadA6/aadA10"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002654","l":"","na":1,"nb":2,"a":[["ARO%3A3002654","APH(3')-VIIa"]],"b":[["antibacterial/framycetin.html","framycetin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3002704","l":"fexA","na":1,"nb":2,"a":[["ARO%3A3002704","fexA"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"]]},{"id":"ARO:3002705","l":"floR","na":1,"nb":2,"a":[["ARO%3A3002705","floR"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"]]},{"id":"ARO:3002706","l":"ethambutol resistant embC","na":2,"nb":1,"a":[["ARO%3A3002706","ethambutol resistant embC"],["ARO%3A3003327","Mycobacterium tuberculosis embC mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3002812","l":"pp-flo","na":1,"nb":2,"a":[["ARO%3A3002812","pp-flo"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"]]},{"id":"ARO:3002818","l":"msrB","na":1,"nb":2,"a":[["ARO%3A3002818","msrB"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/quinupristin.html","quinupristin"]]},{"id":"ARO:3002819","l":"msrC","na":1,"nb":2,"a":[["ARO%3A3002819","msrC"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/quinupristin.html","quinupristin"]]},{"id":"ARO:3002829","l":"vgaA","na":1,"nb":2,"a":[["ARO%3A3002829","vgaA"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002835","l":"lnuA","na":1,"nb":2,"a":[["ARO%3A3002835","lnuA"]],"b":[["antibacterial/lincomycin.html","lincomycin"],["antibacterial/pirlimycin.html","pirlimycin"]]},{"id":"ARO:3002836","l":"lnuB","na":1,"nb":2,"a":[["ARO%3A3002836","lnuB"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002838","l":"lnuD","na":1,"nb":2,"a":[["ARO%3A3002838","lnuD"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002839","l":"lnuF","na":1,"nb":2,"a":[["ARO%3A3002839","lnuF"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002876","l":"ethambutol resistant aftA","na":2,"nb":1,"a":[["ARO%3A3002876","ethambutol resistant aftA"],["ARO%3A3004951","Mycobacterium tuberculosis aftA mutations confer resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3002981","l":"AmrAB-OprM","na":1,"nb":2,"a":[["ARO%3A3002981","AmrAB-OprM"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002998","l":"CblA beta-lactamase","na":2,"nb":1,"a":[["ARO%3A3002999","CblA-1"],["ARO%3A3002998","CblA beta-lactamase"]],"b":[["antibacterial/cefaloridine.html","cefaloridine"]]},{"id":"ARO:3003035","l":"mfpA","na":1,"nb":2,"a":[["ARO%3A3003035","mfpA"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/sparfloxacin.html","sparfloxacin"]]},{"id":"ARO:3003054","l":"SmeDEF","na":1,"nb":2,"a":[["ARO%3A3003054","SmeDEF"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003090","l":"daptomycin-resistant beta-subunit of RNA polymerase (rpoB)","na":2,"nb":1,"a":[["ARO%3A3003090","daptomycin-resistant beta-subunit of RNA polymerase (rpoB)"],["ARO%3A3003287","Staphylococcus aureus rpoB mutants conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003091","l":"daptomycin resistant mprF","na":2,"nb":1,"a":[["ARO%3A3003091","daptomycin resistant mprF"],["ARO%3A3003319","Staphylococcus aureus mprF with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003106","l":"Erm(42)","na":1,"nb":2,"a":[["ARO%3A3003106","Erm(42)"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003107","l":"mef(B)","na":1,"nb":2,"a":[["ARO%3A3003107","mef(B)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003111","l":"lsaB","na":1,"nb":2,"a":[["ARO%3A3003111","lsaB"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"ARO:3003197","l":"aadA25","na":1,"nb":2,"a":[["ARO%3A3003197","aadA25"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003206","l":"lsaE","na":1,"nb":2,"a":[["ARO%3A3003206","lsaE"]],"b":[["antibacterial/lincomycin.html","lincomycin"],["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"ARO:3003209","l":"fosA5","na":1,"nb":2,"a":[["ARO%3A3003209","fosA5"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/gentamicin.html","gentamicin"]]},{"id":"ARO:3003290","l":"daptomycin-resistant beta prime subunit of RNA polymerase (rpoC)","na":2,"nb":1,"a":[["ARO%3A3003290","daptomycin-resistant beta prime subunit of RNA polymerase (rpoC)"],["ARO%3A3003291","Staphylococcus aureus rpoC conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003378","l":"Escherichia coli AcrAB-TolC with MarR mutations conferring resistance to ciprofloxacin and tetracycline","na":1,"nb":2,"a":[["ARO%3A3003378","Escherichia coli AcrAB-TolC with MarR mutations conferring resistance to ciprofloxacin and tetracycline"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003401","l":"","na":2,"nb":1,"a":[["ARO%3A3003388","dapsone resistant dihydropteroate synthase folP"],["ARO%3A3003389","Mycobacterium leprae folP with mutation conferring resistance to dapsone"]],"b":[["antimycobacterial/dapsone.html","dapsone"]]},{"id":"ARO:3003447","l":"ethambutol resistant iniA","na":2,"nb":1,"a":[["ARO%3A3003447","ethambutol resistant iniA"],["ARO%3A3003448","Mycobacterium tuberculosis iniA mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003450","l":"Ethambutol resistant iniC","na":2,"nb":1,"a":[["ARO%3A3003450","Ethambutol resistant iniC"],["ARO%3A3003451","Mycobacterium tuberculosis iniC mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003452","l":"ethambutol resistant embA","na":2,"nb":1,"a":[["ARO%3A3003452","ethambutol resistant embA"],["ARO%3A3003453","Mycobacterium tuberculosis embA mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003454","l":"ethambutol resistant embR","na":2,"nb":1,"a":[["ARO%3A3003454","ethambutol resistant embR"],["ARO%3A3003455","Mycobacterium tuberculosis embR mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003458","l":"Mycobacterium tuberculosis ethA with mutation conferring resistance to ethionamide","na":2,"nb":1,"a":[["ARO%3A3003457","ethionamide resistant ethA"],["ARO%3A3003458","Mycobacterium tuberculosis ethA with mutation conferring resistance to ethionamide"]],"b":[["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"ARO:3003499","l":"Cutibacterium acnes 16S rRNA mutation conferring resistance to tetracycline","na":2,"nb":1,"a":[["ARO%3A3003499","Cutibacterium acnes 16S rRNA mutation conferring resistance to tetracycline"],["ARO%3A3003977","Halobacterium salinarum 16S rRNA mutation conferring resistance to pactamycin"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003573","l":"LpxA","na":1,"nb":2,"a":[["ARO%3A3003573","LpxA"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003574","l":"LpxC","na":1,"nb":2,"a":[["ARO%3A3003574","LpxC"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003575","l":"LpxD","na":1,"nb":2,"a":[["ARO%3A3003575","LpxD"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003585","l":"Klebsiella mutant PhoP conferring antibiotic resistance to colistin","na":1,"nb":2,"a":[["ARO%3A3003585","Klebsiella mutant PhoP conferring antibiotic resistance to colistin"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003676","l":"AAC(6')-Ib'","na":1,"nb":2,"a":[["ARO%3A3003676","AAC(6')-Ib'"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3003689","l":"MCR-1.1","na":1,"nb":2,"a":[["ARO%3A3003689","MCR-1.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003694","l":"MexJK-OprM","na":1,"nb":2,"a":[["ARO%3A3003694","MexJK-OprM"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003703","l":"MexMN-OprM","na":1,"nb":2,"a":[["ARO%3A3003703","MexMN-OprM"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3003722","l":"glycopeptide resistance gene cluster VanI","na":1,"nb":2,"a":[["ARO%3A3003722","glycopeptide resistance gene cluster VanI"]],"b":[["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3003751","l":"Escherichia coli nfsA mutations conferring resistance to nitrofurantoin","na":2,"nb":1,"a":[["ARO%3A3003754","antibiotic resistant nfsA"],["ARO%3A3003751","Escherichia coli nfsA mutations conferring resistance to nitrofurantoin"]],"b":[["antibacterial/nitrofurantoin.html","nitrofurantoin"]]},{"id":"ARO:3003795","l":"daptomycin resistant walK","na":2,"nb":1,"a":[["ARO%3A3003795","daptomycin resistant walK"],["ARO%3A3003794","Staphylococcus aureus walK with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003796","l":"Acinetobacter baumannii ampC beta-lactamase","na":1,"nb":2,"a":[["ARO%3A3003796","Acinetobacter baumannii ampC beta-lactamase"]],"b":[["antibacterial/cefepime.html","cefepime"],["antibacterial/piperacillin.html","piperacillin"]]},{"id":"ARO:3003798","l":"daptomycin resistant YybT","na":2,"nb":1,"a":[["ARO%3A3003798","daptomycin resistant YybT"],["ARO%3A3003797","Enterococcus faecalis YybT with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003802","l":"daptomycin resistant gdpD","na":2,"nb":1,"a":[["ARO%3A3003802","daptomycin resistant gdpD"],["ARO%3A3003800","Enterococcus faecalis gdpD with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003804","l":"daptomycin resistant agrA","na":2,"nb":1,"a":[["ARO%3A3003804","daptomycin resistant agrA"],["ARO%3A3003803","Staphylococcus aureus agrA with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003808","l":"carO","na":1,"nb":2,"a":[["ARO%3A3003808","carO"]],"b":[["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3003814","l":"daptomycin resistant drmA","na":2,"nb":1,"a":[["ARO%3A3003814","daptomycin resistant drmA"],["ARO%3A3003813","Enterococcus faecalis drmA with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003816","l":"daptomycin resistant YvlB","na":2,"nb":1,"a":[["ARO%3A3003816","daptomycin resistant YvlB"],["ARO%3A3003815","Enterococcus faecalis YvlB with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003820","l":"mgrB","na":1,"nb":2,"a":[["ARO%3A3003820","mgrB"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003893","l":"Escherichia coli uhpA with mutation conferring resistance to fosfomycin","na":2,"nb":1,"a":[["ARO%3A3003893","Escherichia coli uhpA with mutation conferring resistance to fosfomycin"],["ARO%3A3004249","UhpA"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003895","l":"Pseudomonas mutant PhoP conferring resistance to colistin","na":1,"nb":2,"a":[["ARO%3A3003895","Pseudomonas mutant PhoP conferring resistance to colistin"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003896","l":"Pseudomonas mutant PhoQ conferring resistance to colistin","na":1,"nb":2,"a":[["ARO%3A3003896","Pseudomonas mutant PhoQ conferring resistance to colistin"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003899","l":"Escherichia coli PtsI with mutation conferring resistance to fosfomycin","na":2,"nb":1,"a":[["ARO%3A3004250","antibiotic-resistant ptsI phosphotransferase"],["ARO%3A3003899","Escherichia coli PtsI with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003926","l":"Salmonella enterica gyrA conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3003926","Salmonella enterica gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3003928","l":"Neisseria gonorrhoeae gyrA with mutations conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3003928","Neisseria gonorrhoeae gyrA with mutations conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/sitafloxacin.html","Sitafloxacin"]]},{"id":"ARO:3003929","l":"Neisseria gonorrhoeae parC conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3003929","Neisseria gonorrhoeae parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/sitafloxacin.html","Sitafloxacin"]]},{"id":"ARO:3003937","l":"Neisseria meningititis PBP2 conferring resistance to beta-lactam","na":1,"nb":2,"a":[["ARO%3A3003937","Neisseria meningititis PBP2 conferring resistance to beta-lactam"]],"b":[["antibacterial/cefixime.html","cefixime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3003939","l":"Salmonella enterica parC conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3003939","Salmonella enterica parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3003940","l":"Shigella flexneri gyrA conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3003940","Shigella flexneri gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/nalidixic-acid.html","nalidixic acid"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3003941","l":"Shigella flexneri parC conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3003941","Shigella flexneri parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/nalidixic-acid.html","nalidixic acid"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3003953","l":"hmrM","na":1,"nb":2,"a":[["ARO%3A3003953","hmrM"]],"b":[["antibacterial/norfloxacin.html","norfloxacin"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3003955","l":"efpA","na":1,"nb":2,"a":[["ARO%3A3003955","efpA"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3003967","l":"lfrA","na":1,"nb":2,"a":[["ARO%3A3003967","lfrA"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3003968","l":"Klebsiella pneumoniae OmpK36","na":1,"nb":2,"a":[["ARO%3A3003968","Klebsiella pneumoniae OmpK36"]],"b":[["antibacterial/cefalotin.html","cefalotin"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3003971","l":"Erm(44)v","na":1,"nb":2,"a":[["ARO%3A3003971","Erm(44)v"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003974","l":"Cutibacterium acnes gyrA conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3003974","Cutibacterium acnes gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"ARO:3004057","l":"23S rRNA with mutation conferring resistance to linezolid antibiotics","na":2,"nb":1,"a":[["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3004058","Staphylococcus aureus 23S rRNA with mutation conferring resistance to linezolid"]],"b":[["antibacterial/linezolid.html","linezolid"]]},{"id":"ARO:3004070","l":"MexEF-OprN with MvaT deletion conferring resistance to chloramphenicol and norfloxacin","na":1,"nb":2,"a":[["ARO%3A3004070","MexEF-OprN with MvaT deletion conferring resistance to chloramphenicol and norfloxacin"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3004086","l":"","na":1,"nb":2,"a":[["ARO%3A3004086","APH(3')-VIIIb"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004087","l":"","na":1,"nb":2,"a":[["ARO%3A3004087","APH(3')-IXa"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004089","l":"","na":1,"nb":2,"a":[["ARO%3A3004089","ANT(3')-IIa"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004090","l":"","na":1,"nb":2,"a":[["ARO%3A3004090","ANT(3')-IIb"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004091","l":"","na":1,"nb":2,"a":[["ARO%3A3004091","ANT(3')-IIc"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004096","l":"daptomycin resistant CdsA","na":2,"nb":1,"a":[["ARO%3A3004096","daptomycin resistant CdsA"],["ARO%3A3004097","Streptococcus mitis CdsA with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3004110","l":"MCR-2.1","na":1,"nb":2,"a":[["ARO%3A3004110","MCR-2.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004114","l":"porin OmpC","na":1,"nb":2,"a":[["ARO%3A3004114","porin OmpC"]],"b":[["antibacterial/cefaloridine.html","cefaloridine"],["antibacterial/cefazolin.html","cefazolin"]]},{"id":"ARO:3004122","l":"Klebsiella pneumoniae OmpK37","na":1,"nb":2,"a":[["ARO%3A3004122","Klebsiella pneumoniae OmpK37"]],"b":[["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"ARO:3004131","l":"Escherichia coli 23S rRNA with mutation conferring resistance to erythromycin and telithromycin","na":1,"nb":2,"a":[["ARO%3A3004131","Escherichia coli 23S rRNA with mutation conferring resistance to erythromycin and telithromycin"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/telithromycin.html","telithromycin"]]},{"id":"ARO:3004136","l":"Ethambutol resistant iniB","na":2,"nb":1,"a":[["ARO%3A3004136","Ethambutol resistant iniB"],["ARO%3A3004135","Mycobacterium tuberculosis iniB with mutation conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3004138","l":"Moraxella catarrhalis 23S rRNA with mutation conferring resistance to macrolide antibiotics","na":1,"nb":2,"a":[["ARO%3A3004138","Moraxella catarrhalis 23S rRNA with mutation conferring resistance to macrolide antibiotics"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004139","l":"MCR-3.1","na":1,"nb":2,"a":[["ARO%3A3004139","MCR-3.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004146","l":"cfrC","na":1,"nb":2,"a":[["ARO%3A3004146","cfrC"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"]]},{"id":"ARO:3004170","l":"Streptococcus pneumoniae 23S rRNA with mutation conferring resistance to macrolide antibiotics","na":1,"nb":2,"a":[["ARO%3A3004170","Streptococcus pneumoniae 23S rRNA with mutation conferring resistance to macrolide antibiotics"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3004177","l":"Mycoplasmopsis fermentans 23S rRNA with mutation conferring resistance to macrolide antibiotics","na":1,"nb":2,"a":[["ARO%3A3004177","Mycoplasmopsis fermentans 23S rRNA with mutation conferring resistance to macrolide antibiotics"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004194","l":"MCR-1.2","na":1,"nb":2,"a":[["ARO%3A3004194","MCR-1.2"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004285","l":"tunicamycin resistance protein","na":2,"nb":1,"a":[["ARO%3A3003059","tmrB"],["ARO%3A3004285","tunicamycin resistance protein"]],"b":[["antibacterial/tunicamycin.html","tunicamycin"]]},{"id":"ARO:3004325","l":"MCR-4.1","na":1,"nb":2,"a":[["ARO%3A3004325","MCR-4.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004332","l":"MCR-5.1","na":1,"nb":2,"a":[["ARO%3A3004332","MCR-5.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004466","l":"ICR-Mc","na":1,"nb":2,"a":[["ARO%3A3004466","ICR-Mc"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004490","l":"delamanid","na":2,"nb":1,"a":[["ARO%3A3007661","Mycobacterium tuberculosis ddn mutation conferring resistance to nitroimidazole antibiotics"],["ARO%3A3007849","Mycobacterium tuberculosis fgd1 with mutation conferring resistance to delamanid"]],"b":[["antibacterial/delamanid.html","delamanid"]]},{"id":"ARO:3004500","l":"MCR-3.11","na":1,"nb":2,"a":[["ARO%3A3004500","MCR-3.11"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004501","l":"MCR-6.1","na":1,"nb":2,"a":[["ARO%3A3004501","MCR-6.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004502","l":"MCR-2.2","na":1,"nb":2,"a":[["ARO%3A3004502","MCR-2.2"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004503","l":"MCR-3.6","na":1,"nb":2,"a":[["ARO%3A3004503","MCR-3.6"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004504","l":"MCR-3.10","na":1,"nb":2,"a":[["ARO%3A3004504","MCR-3.10"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004505","l":"MCR-3.5","na":1,"nb":2,"a":[["ARO%3A3004505","MCR-3.5"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004506","l":"MCR-1.10","na":1,"nb":2,"a":[["ARO%3A3004506","MCR-1.10"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004507","l":"MCR-1.9","na":1,"nb":2,"a":[["ARO%3A3004507","MCR-1.9"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004508","l":"MCR-3.9","na":1,"nb":2,"a":[["ARO%3A3004508","MCR-3.9"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004509","l":"MCR-3.8","na":1,"nb":2,"a":[["ARO%3A3004509","MCR-3.8"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004510","l":"MCR-3.7","na":1,"nb":2,"a":[["ARO%3A3004510","MCR-3.7"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004511","l":"MCR-3.2","na":1,"nb":2,"a":[["ARO%3A3004511","MCR-3.2"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004513","l":"MCR-1.6","na":1,"nb":2,"a":[["ARO%3A3004513","MCR-1.6"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004514","l":"MCR-1.3","na":1,"nb":2,"a":[["ARO%3A3004514","MCR-1.3"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004515","l":"MCR-1.4","na":1,"nb":2,"a":[["ARO%3A3004515","MCR-1.4"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004516","l":"MCR-8.1","na":1,"nb":2,"a":[["ARO%3A3004516","MCR-8.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004517","l":"MCR-7.1","na":1,"nb":2,"a":[["ARO%3A3004517","MCR-7.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004541","l":"mphK","na":1,"nb":2,"a":[["ARO%3A3004541","mphK"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/telithromycin.html","telithromycin"]]},{"id":"ARO:3004560","l":"murG transferase","na":2,"nb":1,"a":[["ARO%3A3004561","Clostridioides difficile murG with mutation conferring resistance to vancomycin"],["ARO%3A3004560","murG transferase"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3004563","l":"Clostridioides difficile rpoB with mutation conferring resistance to rifampicin","na":1,"nb":2,"a":[["ARO%3A3004563","Clostridioides difficile rpoB with mutation conferring resistance to rifampicin"]],"b":[["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3004569","l":"ICR-Mo","na":1,"nb":2,"a":[["ARO%3A3004569","ICR-Mo"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004574","l":"Acinetobacter baumannii AbaQ","na":1,"nb":2,"a":[["ARO%3A3004574","Acinetobacter baumannii AbaQ"]],"b":[["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3004577","l":"Acinetobacter baumannii AmvA","na":1,"nb":2,"a":[["ARO%3A3004577","Acinetobacter baumannii AmvA"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3004581","l":"tet(48)","na":1,"nb":2,"a":[["ARO%3A3004581","tet(48)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004582","l":"tet(49)","na":1,"nb":2,"a":[["ARO%3A3004582","tet(49)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004584","l":"tet(50)","na":1,"nb":2,"a":[["ARO%3A3004584","tet(50)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004586","l":"tet(51)","na":1,"nb":2,"a":[["ARO%3A3004586","tet(51)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004587","l":"tet(52)","na":1,"nb":2,"a":[["ARO%3A3004587","tet(52)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004590","l":"tet(54)","na":1,"nb":2,"a":[["ARO%3A3004590","tet(54)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004600","l":"LnuH","na":1,"nb":2,"a":[["ARO%3A3004600","LnuH"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3004603","l":"tet(56)","na":1,"nb":2,"a":[["ARO%3A3004603","tet(56)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004613","l":"tet(47)","na":1,"nb":2,"a":[["ARO%3A3004613","tet(47)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004616","l":"Mycoplasma genitalium 23S rRNA mutations confers resistance to fluoroquinolone and macrolide antibiotics","na":1,"nb":2,"a":[["ARO%3A3004616","Mycoplasma genitalium 23S rRNA mutations confers resistance to fluoroquinolone and macrolide antibiotics"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3004626","l":"Erm(49)","na":1,"nb":2,"a":[["ARO%3A3004626","Erm(49)"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004641","l":"","na":1,"nb":2,"a":[["ARO%3A3004641","AAC(6')-I-43"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3004654","l":"Clostridioides difficile 23S rRNA with mutation conferring resistance to erythromycin and clindamycin","na":1,"nb":2,"a":[["ARO%3A3004654","Clostridioides difficile 23S rRNA with mutation conferring resistance to erythromycin and clindamycin"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004662","l":"MCR-3.3","na":1,"nb":2,"a":[["ARO%3A3004662","MCR-3.3"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004666","l":"pexA","na":1,"nb":2,"a":[["ARO%3A3004666","pexA"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"]]},{"id":"ARO:3004678","l":"rmtE","na":1,"nb":2,"a":[["ARO%3A3004678","rmtE"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamycin-a.html","gentamycin A"]]},{"id":"ARO:3004680","l":"","na":1,"nb":2,"a":[["ARO%3A3004680","APH(3')-VIIIa"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004682","l":"aadA27","na":1,"nb":2,"a":[["ARO%3A3004682","aadA27"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004684","l":"MCR-9.1","na":1,"nb":2,"a":[["ARO%3A3004684","MCR-9.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004685","l":"MCR-1.5","na":1,"nb":2,"a":[["ARO%3A3004685","MCR-1.5"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004686","l":"MCR-1.7","na":1,"nb":2,"a":[["ARO%3A3004686","MCR-1.7"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004687","l":"MCR-1.8","na":1,"nb":2,"a":[["ARO%3A3004687","MCR-1.8"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004688","l":"MCR-1.11","na":1,"nb":2,"a":[["ARO%3A3004688","MCR-1.11"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004689","l":"MCR-1.12","na":1,"nb":2,"a":[["ARO%3A3004689","MCR-1.12"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004690","l":"MCR-1.13","na":1,"nb":2,"a":[["ARO%3A3004690","MCR-1.13"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004691","l":"MCR-3.4","na":1,"nb":2,"a":[["ARO%3A3004691","MCR-3.4"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004692","l":"aadA10","na":1,"nb":2,"a":[["ARO%3A3004692","aadA10"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004693","l":"MCR-3.12","na":1,"nb":2,"a":[["ARO%3A3004693","MCR-3.12"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004694","l":"MCR-4.2","na":1,"nb":2,"a":[["ARO%3A3004694","MCR-4.2"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004695","l":"MCR-4.3","na":1,"nb":2,"a":[["ARO%3A3004695","MCR-4.3"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004696","l":"MCR-4.4","na":1,"nb":2,"a":[["ARO%3A3004696","MCR-4.4"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004697","l":"MCR-4.5","na":1,"nb":2,"a":[["ARO%3A3004697","MCR-4.5"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004698","l":"MCR-5.2","na":1,"nb":2,"a":[["ARO%3A3004698","MCR-5.2"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004704","l":"aadA8b","na":1,"nb":2,"a":[["ARO%3A3004704","aadA8b"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004719","l":"tet(X3)","na":1,"nb":2,"a":[["ARO%3A3004719","tet(X3)"]],"b":[["antibacterial/tetracycline.html","tetracycline"],["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:3004720","l":"tet(X4)","na":1,"nb":2,"a":[["ARO%3A3004720","tet(X4)"]],"b":[["antibacterial/tetracycline.html","tetracycline"],["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:3004721","l":"Mycobacterium tuberculosis rpsA mutations conferring resistance to pyrazinamide","na":2,"nb":1,"a":[["ARO%3A3004721","Mycobacterium tuberculosis rpsA mutations conferring resistance to pyrazinamide"],["ARO%3A3004722","pyrazinamide resistant rpsA"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004832","l":"Neisseria gonorrhoeae PBP2 conferring resistance to beta-lactam antibiotics","na":1,"nb":2,"a":[["ARO%3A3004832","Neisseria gonorrhoeae PBP2 conferring resistance to beta-lactam antibiotics"]],"b":[["antibacterial/cefixime.html","cefixime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3004851","l":"Neisseria gonorrhoeae mtrR with mutation conferring resistance","na":1,"nb":2,"a":[["ARO%3A3004851","Neisseria gonorrhoeae mtrR with mutation conferring resistance"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004918","l":"Mycobacterium tuberculosis eccB5 conferring resistance to fluoroquinolones","na":2,"nb":1,"a":[["ARO%3A3004918","Mycobacterium tuberculosis eccB5 conferring resistance to fluoroquinolones"],["ARO%3A3004919","Mycobacterium tuberculosis eccC5 conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3004930","l":"Mycobacterium tuberculosis nat mutations conferring resistance to isoniazid","na":2,"nb":1,"a":[["ARO%3A3004910","isoniazid resistant nat"],["ARO%3A3004930","Mycobacterium tuberculosis nat mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004960","l":"Mycobacterium tuberculosis ponA1 mutations conferring resistance to rifabutin","na":1,"nb":2,"a":[["ARO%3A3004960","Mycobacterium tuberculosis ponA1 mutations conferring resistance to rifabutin"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3004965","l":"streptomycin resistant whib7","na":2,"nb":1,"a":[["ARO%3A3004968","Mycobacterium tuberculosis whib7 mutation conferring resistance to streptomycin"],["ARO%3A3004965","streptomycin resistant whib7"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004966","l":"Kanamycin resistant whib7","na":2,"nb":1,"a":[["ARO%3A3004966","Kanamycin resistant whib7"],["ARO%3A3004967","Mycobacterium tuberculosis whib7 mutations confer resistance to kanamycin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004994","l":"Mycobacterium tuberculosis rpoC mutations confer resistance to rifampicin","na":1,"nb":2,"a":[["ARO%3A3004994","Mycobacterium tuberculosis rpoC mutations confer resistance to rifampicin"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3004998","l":"rifampicin resistant rpoA","na":2,"nb":1,"a":[["ARO%3A3004999","Mycobacterium tuberculosis rpoA mutations confer resistance to rifampicin"],["ARO%3A3004998","rifampicin resistant rpoA"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3005023","l":"cfrE","na":1,"nb":2,"a":[["ARO%3A3005023","cfrE"]],"b":[["antibacterial/thiamphenicol.html","thiamphenicol"],["antibacterial/tiamulin.html","tiamulin"]]},{"id":"ARO:3005044","l":"OmpA","na":1,"nb":2,"a":[["ARO%3A3005044","OmpA"]],"b":[["antibacterial/defensin.html","defensin"],["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3005049","l":"CrcB","na":1,"nb":2,"a":[["ARO%3A3005049","CrcB"]],"b":[["antibacterial/gentamicin.html","gentamicin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005052","l":"LpsA","na":1,"nb":2,"a":[["ARO%3A3005052","LpsA"]],"b":[["antibacterial/defensin.html","defensin"],["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3005053","l":"ArnT","na":1,"nb":2,"a":[["ARO%3A3005053","ArnT"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3005061","l":"AAC(3)-IVb","na":1,"nb":2,"a":[["ARO%3A3005061","AAC(3)-IVb"]],"b":[["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005062","l":"","na":1,"nb":2,"a":[["ARO%3A3005062","ANT(3')-Ib"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3005081","l":"Thermus thermophilus uL3 mutations conferring resistance to pleuromutilin antibiotics","na":2,"nb":1,"a":[["ARO%3A3005082","Ribosomal protein mutation conferring resistance to pleuromutilin antibiotics"],["ARO%3A3005081","Thermus thermophilus uL3 mutations conferring resistance to pleuromutilin antibiotics"]],"b":[["antibacterial/tiamulin.html","tiamulin"]]},{"id":"ARO:3005221","l":"MCR-3.41","na":1,"nb":2,"a":[["ARO%3A3005221","MCR-3.41"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007023","l":"NDM-33","na":1,"nb":2,"a":[["ARO%3A3007023","NDM-33"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3007029","l":"salE","na":1,"nb":2,"a":[["ARO%3A3007029","salE"]],"b":[["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"]]},{"id":"ARO:3007042","l":"msr(G)","na":1,"nb":2,"a":[["ARO%3A3007042","msr(G)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3007044","l":"mef(F)","na":1,"nb":2,"a":[["ARO%3A3007044","mef(F)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3007051","l":"Helicobacter pylori rpoB mutation conferring resistance to rifampicin","na":1,"nb":2,"a":[["ARO%3A3007051","Helicobacter pylori rpoB mutation conferring resistance to rifampicin"]],"b":[["antibacterial/levofloxacin.html","levofloxacin"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3007053","l":"Helicobacter pylori gyrB conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3007053","Helicobacter pylori gyrB conferring resistance to fluoroquinolones"]],"b":[["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3007055","l":"Helicobacter pylori rdxA mutation conferring resistance to metronidazole","na":2,"nb":1,"a":[["ARO%3A3007056","Antibiotic resistant Helicobacter pylori nitroreductase"],["ARO%3A3007055","Helicobacter pylori rdxA mutation conferring resistance to metronidazole"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007070","l":"MCR-1.33","na":1,"nb":2,"a":[["ARO%3A3007070","MCR-1.33"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007118","l":"crxA","na":1,"nb":2,"a":[["ARO%3A3007118","crxA"]],"b":[["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3007137","l":"mcr-10.1","na":1,"nb":2,"a":[["ARO%3A3007137","mcr-10.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007158","l":"","na":2,"nb":1,"a":[["ARO%3A3003976","16S rRNA with mutation conferring resistance to pactamycin"],["ARO%3A3003977","Halobacterium salinarum 16S rRNA mutation conferring resistance to pactamycin"]],"b":[["antibacterial/pactamycin.html","pactamycin"]]},{"id":"ARO:3007160","l":"","na":2,"nb":1,"a":[["ARO%3A3004859","Neisseria gonorrhoeae gyrB conferring resistance to zoliflodacin"],["ARO%3A3005000","Zoliflodacin resistant gyrB"]],"b":[["antibacterial/zoliflodacin.html","zoliflodacin"]]},{"id":"ARO:3007187","l":"glycopeptide resistance gene cluster vanP","na":1,"nb":2,"a":[["ARO%3A3007187","glycopeptide resistance gene cluster vanP"]],"b":[["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3007199","l":"PAM-1","na":1,"nb":2,"a":[["ARO%3A3007199","PAM-1"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/doripenem.html","doripenem"]]},{"id":"ARO:3007203","l":"Klebsiella pneumoniae mutant PhoQ conferring resistance to colistin","na":1,"nb":2,"a":[["ARO%3A3007203","Klebsiella pneumoniae mutant PhoQ conferring resistance to colistin"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007227","l":"MCR-8.3","na":1,"nb":2,"a":[["ARO%3A3007227","MCR-8.3"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007228","l":"MCR-8.4","na":1,"nb":2,"a":[["ARO%3A3007228","MCR-8.4"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007229","l":"MCR-8.2","na":1,"nb":2,"a":[["ARO%3A3007229","MCR-8.2"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007230","l":"MCR-1.34","na":1,"nb":2,"a":[["ARO%3A3007230","MCR-1.34"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007231","l":"MCR-4.6","na":1,"nb":2,"a":[["ARO%3A3007231","MCR-4.6"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007232","l":"MCR-1.27","na":1,"nb":2,"a":[["ARO%3A3007232","MCR-1.27"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007233","l":"MCR-1.18","na":1,"nb":2,"a":[["ARO%3A3007233","MCR-1.18"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007234","l":"MCR-1.23","na":1,"nb":2,"a":[["ARO%3A3007234","MCR-1.23"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007235","l":"MCR-1.20","na":1,"nb":2,"a":[["ARO%3A3007235","MCR-1.20"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007236","l":"MCR-1.28","na":1,"nb":2,"a":[["ARO%3A3007236","MCR-1.28"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007237","l":"MCR-1.21","na":1,"nb":2,"a":[["ARO%3A3007237","MCR-1.21"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007238","l":"MCR-1.16","na":1,"nb":2,"a":[["ARO%3A3007238","MCR-1.16"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007239","l":"MCR-1.22","na":1,"nb":2,"a":[["ARO%3A3007239","MCR-1.22"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007240","l":"MCR-1.19","na":1,"nb":2,"a":[["ARO%3A3007240","MCR-1.19"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007241","l":"MCR-1.29","na":1,"nb":2,"a":[["ARO%3A3007241","MCR-1.29"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007242","l":"MCR-1.30","na":1,"nb":2,"a":[["ARO%3A3007242","MCR-1.30"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007243","l":"MCR-1.24","na":1,"nb":2,"a":[["ARO%3A3007243","MCR-1.24"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007244","l":"MCR-1.17","na":1,"nb":2,"a":[["ARO%3A3007244","MCR-1.17"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007245","l":"MCR-1.31","na":1,"nb":2,"a":[["ARO%3A3007245","MCR-1.31"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007246","l":"MCR-1.14","na":1,"nb":2,"a":[["ARO%3A3007246","MCR-1.14"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007247","l":"MCR-1.25","na":1,"nb":2,"a":[["ARO%3A3007247","MCR-1.25"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007248","l":"MCR-3.33","na":1,"nb":2,"a":[["ARO%3A3007248","MCR-3.33"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007249","l":"MCR-3.14","na":1,"nb":2,"a":[["ARO%3A3007249","MCR-3.14"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007250","l":"MCR-3.37","na":1,"nb":2,"a":[["ARO%3A3007250","MCR-3.37"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007251","l":"MCR-3.38","na":1,"nb":2,"a":[["ARO%3A3007251","MCR-3.38"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007252","l":"MCR-3.15","na":1,"nb":2,"a":[["ARO%3A3007252","MCR-3.15"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007253","l":"MCR-3.27","na":1,"nb":2,"a":[["ARO%3A3007253","MCR-3.27"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007254","l":"MCR-3.32","na":1,"nb":2,"a":[["ARO%3A3007254","MCR-3.32"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007255","l":"MCR-3.31","na":1,"nb":2,"a":[["ARO%3A3007255","MCR-3.31"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007256","l":"MCR-3.23","na":1,"nb":2,"a":[["ARO%3A3007256","MCR-3.23"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007257","l":"MCR-3.36","na":1,"nb":2,"a":[["ARO%3A3007257","MCR-3.36"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007258","l":"MCR-3.25","na":1,"nb":2,"a":[["ARO%3A3007258","MCR-3.25"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007259","l":"MCR-3.22","na":1,"nb":2,"a":[["ARO%3A3007259","MCR-3.22"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007260","l":"MCR-3.16","na":1,"nb":2,"a":[["ARO%3A3007260","MCR-3.16"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007261","l":"MCR-3.26","na":1,"nb":2,"a":[["ARO%3A3007261","MCR-3.26"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007262","l":"MCR-3.21","na":1,"nb":2,"a":[["ARO%3A3007262","MCR-3.21"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007263","l":"MCR-3.18","na":1,"nb":2,"a":[["ARO%3A3007263","MCR-3.18"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007264","l":"MCR-3.40","na":1,"nb":2,"a":[["ARO%3A3007264","MCR-3.40"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007265","l":"MCR-3.24","na":1,"nb":2,"a":[["ARO%3A3007265","MCR-3.24"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007266","l":"MCR-3.20","na":1,"nb":2,"a":[["ARO%3A3007266","MCR-3.20"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007267","l":"MCR-3.35","na":1,"nb":2,"a":[["ARO%3A3007267","MCR-3.35"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007268","l":"MCR-3.34","na":1,"nb":2,"a":[["ARO%3A3007268","MCR-3.34"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007269","l":"MCR-3.13","na":1,"nb":2,"a":[["ARO%3A3007269","MCR-3.13"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007270","l":"MCR-3.28","na":1,"nb":2,"a":[["ARO%3A3007270","MCR-3.28"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007271","l":"MCR-3.39","na":1,"nb":2,"a":[["ARO%3A3007271","MCR-3.39"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007272","l":"MCR-3.29","na":1,"nb":2,"a":[["ARO%3A3007272","MCR-3.29"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007273","l":"MCR-3.19","na":1,"nb":2,"a":[["ARO%3A3007273","MCR-3.19"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007274","l":"MCR-10.5","na":1,"nb":2,"a":[["ARO%3A3007274","MCR-10.5"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007275","l":"MCR-10.3","na":1,"nb":2,"a":[["ARO%3A3007275","MCR-10.3"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007276","l":"MCR-10.4","na":1,"nb":2,"a":[["ARO%3A3007276","MCR-10.4"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007277","l":"MCR-10.2","na":1,"nb":2,"a":[["ARO%3A3007277","MCR-10.2"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007278","l":"MCR-3.17","na":1,"nb":2,"a":[["ARO%3A3007278","MCR-3.17"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007279","l":"MCR-1.15","na":1,"nb":2,"a":[["ARO%3A3007279","MCR-1.15"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007280","l":"MCR-1.26","na":1,"nb":2,"a":[["ARO%3A3007280","MCR-1.26"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007281","l":"MCR-5.4","na":1,"nb":2,"a":[["ARO%3A3007281","MCR-5.4"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007282","l":"MCR-5.3","na":1,"nb":2,"a":[["ARO%3A3007282","MCR-5.3"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007283","l":"MCR-2.4","na":1,"nb":2,"a":[["ARO%3A3007283","MCR-2.4"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007284","l":"MCR-2.3","na":1,"nb":2,"a":[["ARO%3A3007284","MCR-2.3"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007285","l":"MCR-2.8","na":1,"nb":2,"a":[["ARO%3A3007285","MCR-2.8"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007286","l":"MCR-2.5","na":1,"nb":2,"a":[["ARO%3A3007286","MCR-2.5"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007287","l":"MCR-2.7","na":1,"nb":2,"a":[["ARO%3A3007287","MCR-2.7"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007288","l":"MCR-2.6","na":1,"nb":2,"a":[["ARO%3A3007288","MCR-2.6"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007289","l":"MCR-1.32","na":1,"nb":2,"a":[["ARO%3A3007289","MCR-1.32"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007375","l":"KPC-87","na":1,"nb":2,"a":[["ARO%3A3007375","KPC-87"]],"b":[["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3007402","l":"KPC-94","na":1,"nb":2,"a":[["ARO%3A3007402","KPC-94"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3007423","l":"Escherichia coli PBP3 mutants conferring resistance to beta-lactam antibiotics","na":1,"nb":2,"a":[["ARO%3A3007423","Escherichia coli PBP3 mutants conferring resistance to beta-lactam antibiotics"]],"b":[["antibacterial/ceftaroline.html","ceftaroline"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007493","l":"tet(63)","na":1,"nb":2,"a":[["ARO%3A3007493","tet(63)"]],"b":[["antibacterial/doxycycline.html","doxycycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007494","l":"tet(64)","na":1,"nb":2,"a":[["ARO%3A3007494","tet(64)"]],"b":[["antibacterial/doxycycline.html","doxycycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007498","l":"","na":1,"nb":2,"a":[["ARO%3A3007640","Candida spp. pleiotropic drug resistance factor 1"]],"b":[["antifungal/naftifine.html","naftifine"],["antifungal/terbinafine.html","terbinafine"]]},{"id":"ARO:3007533","l":"MCR-4.7","na":1,"nb":2,"a":[["ARO%3A3007533","MCR-4.7"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007553","l":"Candida spp. CDR1","na":1,"nb":2,"a":[["ARO%3A3007553","Candida spp. CDR1"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/miconazole.html","miconazole"]]},{"id":"ARO:3007554","l":"Candida spp. CDR2","na":1,"nb":2,"a":[["ARO%3A3007554","Candida spp. CDR2"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/terbinafine.html","terbinafine"]]},{"id":"ARO:3007661","l":"Mycobacterium tuberculosis ddn mutation conferring resistance to nitroimidazole antibiotics","na":1,"nb":2,"a":[["ARO%3A3007661","Mycobacterium tuberculosis ddn mutation conferring resistance to nitroimidazole antibiotics"]],"b":[["antibacterial/delamanid.html","delamanid"],["antibacterial/pretomanid.html","pretomanid"]]},{"id":"ARO:3007662","l":"Rv1877","na":1,"nb":2,"a":[["ARO%3A3007662","Rv1877"]],"b":[["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3007692","l":"Mycobacterium tuberculosis Rv2535c with mutation conferring resistance to bedaquiline","na":1,"nb":2,"a":[["ARO%3A3007692","Mycobacterium tuberculosis Rv2535c with mutation conferring resistance to bedaquiline"]],"b":[["antimycobacterial/bedaquiline.html","bedaquiline"],["antimycobacterial/clofazimine.html","clofazimine"]]},{"id":"ARO:3007751","l":"Salmonella isangi gyrA conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3007751","Salmonella isangi gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3007752","l":"Salmonella isangi gyrB conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3007752","Salmonella isangi gyrB conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3007861","l":"DYB-1","na":1,"nb":2,"a":[["ARO%3A3007861","DYB-1"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3009148","l":"MexJK","na":2,"nb":1,"a":[["ARO%3A3009148","MexJK"],["ARO%3A3003710","MexL"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3009153","l":"MexHI-OpmD","na":1,"nb":2,"a":[["ARO%3A3009153","MexHI-OpmD"]],"b":[["antibacterial/norfloxacin.html","norfloxacin"],["biocide/acriflavine.html","acriflavine"]]},{"id":"CHEBI:10023","l":"voriconazole","na":2,"nb":1,"a":[["RHEA%3A61912","voriconazole(in) + ATP + H2O = voriconazole(out) + ADP + phosphate + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"CHEBI:100246","l":"norfloxacin","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"CHEBI:10101","l":"zalcitabine","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.41","The Concentrative Nucleoside Transporter (CNT) Family"]],"b":[["antiviral/zalcitabine.html","zalcitabine"]]},{"id":"CHEBI:10110","l":"zidovudine","na":2,"nb":1,"a":[["TCDB%3A2.A.41","The Concentrative Nucleoside Transporter (CNT) Family"],["TCDB%3A2.A.60","The Organo Anion Transporter (OAT) Family"]],"b":[["antiviral/zidovudine.html","zidovudine"]]},{"id":"CHEBI:132426","l":"chondrochloren A","na":2,"nb":1,"a":[["EC%3A4.1.1.129","1'-carboxy-chondrochloren decarboxylase"],["RHEA%3A81491","1'-carboxy-chondrochloren A + FAD + 2 H(+) = chondrochloren A + FADH2 + CO2"]],"b":[["unspecified/chondrochloren-a.html","chondrochloren A"]]},{"id":"CHEBI:132442","l":"chondrochloren B","na":2,"nb":1,"a":[["EC%3A4.1.1.129","1'-carboxy-chondrochloren decarboxylase"],["RHEA%3A81495","1'-carboxy-chondrochloren B + FAD + 2 H(+) = chondrochloren B + FADH2 + CO2"]],"b":[["unspecified/chondrochloren-b.html","chondrochloren B"]]},{"id":"CHEBI:132987","l":"alliin zwitterion","na":2,"nb":1,"a":[["EC%3A4.4.1.4","alliin lyase"],["RHEA%3A54688","alliin = allylsulfenate + 2-aminoprop-2-enoate"]],"b":[["unspecified/alliin-zwitterion.html","alliin zwitterion"]]},{"id":"CHEBI:133907","l":"hypothiocyanous acid","na":2,"nb":1,"a":[["RHEA%3A69416","thiocyanate + H2O2 + H(+) = hypothiocyanous acid + H2O"],["MCSA%3A944","Lactoperoxidase"]],"b":[["antibacterial/hypothiocyanous-acid.html","hypothiocyanous acid"]]},{"id":"CHEBI:137041","l":"quinine(1+)","na":2,"nb":1,"a":[["EC%3A1.14.14.55","quinine 3-monooxygenase"],["RHEA%3A20149","quinine + reduced [NADPH--hemoprotein reductase] + O2 = 3-hydroxyquinine + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["antiprotozoal/quinine-1.html","quinine(1+)"]]},{"id":"CHEBI:137419","l":"","na":2,"nb":1,"a":[["EC%3A2.1.1.49","amine N-methyltransferase"],["RHEA%3A53924","a secondary amine + S-adenosyl-L-methionine = a methylated secondary amine + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antifungal/solasodine-1.html","solasodine(1+)"]]},{"id":"CHEBI:138224","l":"(13R)-epi-8,13-epoxylabd-14-ene","na":2,"nb":1,"a":[["EC%3A4.2.3.186","ent-13-epi-manoyl oxide synthase"],["RHEA%3A18721","ent-8alpha-hydroxylabd-13-en-15-yl diphosphate = ent-13-epi-manoyl oxide + diphosphate"]],"b":[["antibacterial/13r-epi-8-13-epoxylabd-14-ene.html","(13R)-epi-8,13-epoxylabd-14-ene"]]},{"id":"CHEBI:138945","l":"maniladiol","na":2,"nb":1,"a":[["EC%3A1.14.14.63","beta-amyrin 16beta-monooxygenase"],["RHEA%3A55440","beta-amyrin + reduced [NADPH--hemoprotein reductase] + O2 = maniladiol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["antimycobacterial/maniladiol.html","maniladiol"]]},{"id":"CHEBI:138961","l":"sugiol","na":2,"nb":1,"a":[["EC%3A1.14.14.65","sugiol synthase"],["RHEA%3A55456","ferruginol + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = sugiol + 2 oxidized [NADPH--hemoprotein reductase] + 3 H2O + 2 H(+)"]],"b":[["antiviral/sugiol.html","sugiol"]]},{"id":"CHEBI:140183","l":"","na":2,"nb":1,"a":[["EC%3A1.1.1.348","(3R)-2'-hydroxyisoflavanone reductase"],["RHEA%3A56284","a (3R,4R)-4,2'-dihydroxyisoflavan + NADP(+) = a (3R)-2'-hydroxyisoflavanone + NADPH + H(+)"]],"b":[["antibacterial/vestitone.html","vestitone"]]},{"id":"CHEBI:141992","l":"","na":2,"nb":1,"a":[["EC%3A1.14.14.162","flavanone 2-hydroxylase"],["RHEA%3A57584","a flavanone + reduced [NADPH--hemoprotein reductase] + O2 = a 2-hydroxyflavanone + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["antiviral/2s-2-7-dihydroxy-5-methoxy-6-8-dimethylflavanone.html","(2S)-2,7-dihydroxy-5-methoxy-6,8-dimethylflavanone"]]},{"id":"CHEBI:142061","l":"trichosetin(1−)","na":2,"nb":1,"a":[["RHEA%3A67328","(5S)-3-[(2E,6R,8E,10E,12E)-2,6-dimethyltetradeca-2,8,10,12-tetraenoyl]-5-(hydroxymethyl)pyrrolidine-2,4-dione = trichosetin"],["RHEA%3A57648","trichosetin + S-adenosyl-L-methionine = equisetin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/trichosetin-1.html","trichosetin(1−)"]]},{"id":"CHEBI:143285","l":"L-propargylglycine zwitterion","na":2,"nb":1,"a":[["RHEA%3A59892","L-2-amino-4-chloropent-4-enoate = L-propargylglycine + chloride + H(+)"],["RHEA%3A59896","L-propargylglycine + L-glutamate + ATP = L-gamma-glutamyl-L-propargylglycine + ADP + phosphate + H(+)"]],"b":[["unspecified/l-propargylglycine-zwitterion.html","L-propargylglycine zwitterion"]]},{"id":"CHEBI:145111","l":"isopatulin","na":2,"nb":1,"a":[["RHEA%3A62224","neopatulin + NADPH + H(+) = (E)-ascladiol + NADP(+)"],["RHEA%3A62220","phyllostine = neopatulin"]],"b":[["antibacterial/isopatulin.html","isopatulin"]]},{"id":"CHEBI:145874","l":"deoxyherqueinone(1−)","na":2,"nb":1,"a":[["RHEA%3A62664","(2'R)-atrovenetin + S-adenosyl-L-methionine = deoxyherqueinone + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A62668","deoxyherqueinone + NADPH + O2 + H(+) = herqueinone + NADP(+) + H2O"]],"b":[["antibacterial/deoxyherqueinone-1.html","deoxyherqueinone(1−)"]]},{"id":"CHEBI:146153","l":"ilicicolin B","na":2,"nb":1,"a":[["RHEA%3A63084","ilicicolin B + FADH2 + chloride + O2 = ilicicolin A + FAD + 2 H2O + H(+)"],["RHEA%3A63080","ilicicolinate B + AH2 + ATP = ilicicolin B + A + AMP + diphosphate"]],"b":[["unspecified/ilicicolin-b.html","ilicicolin B"]]},{"id":"CHEBI:15366","l":"acetic acid","na":2,"nb":1,"a":[["MCSA%3A431","acetylxylan esterase"],["MCSA%3A996","Peptidoglycan-N-acetylglucosamine deacetylase Bc1960"]],"b":[["biocide/acetic-acid.html","acetic acid"]]},{"id":"CHEBI:15390","l":"(+)-bisdechlorogeodin","na":2,"nb":1,"a":[["EC%3A1.21.3.4","sulochrin oxidase [(+)-bisdechlorogeodin-forming]"],["RHEA%3A24092","2 sulochrin + O2 + 2 H(+) = 2 (2S)-bisdechlorogeodin + 2 H2O"]],"b":[["unspecified/bisdechlorogeodin.html","(+)-bisdechlorogeodin"]]},{"id":"CHEBI:15391","l":"(−)-bisdechlorogeodin","na":2,"nb":1,"a":[["EC%3A1.21.3.5","sulochrin oxidase [(-)-bisdechlorogeodin-forming]"],["RHEA%3A22616","2 sulochrin + O2 + 2 H(+) = 2 (2R)-bisdechlorogeodin + 2 H2O"]],"b":[["unspecified/bisdechlorogeodin-15391.html","(−)-bisdechlorogeodin"]]},{"id":"CHEBI:15660","l":"(Z)-2-(2-furyl)-3-(5-nitro-2-furyl)acrylamide","na":2,"nb":1,"a":[["EC%3A5.2.1.6","furylfuramide isomerase"],["RHEA%3A21848","(E)-2-(2-furyl)-3-(5-nitro-2-furyl)acrylamide = (Z)-2-(2-furyl)-3-(5-nitro-2-furyl)acrylamide"]],"b":[["unspecified/z-2-2-furyl-3-5-nitro-2-furyl-acrylamide.html","(Z)-2-(2-furyl)-3-(5-nitro-2-furyl)acrylamide"]]},{"id":"CHEBI:15712","l":"2,3-dihydrobiochanin A","na":2,"nb":1,"a":[["EC%3A1.3.1.46","biochanin-A reductase"],["RHEA%3A12817","2,3-dihydrobiochanin A + NADP(+) = biochanin A + NADPH + 2 H(+)"]],"b":[["antifungal/2-3-dihydrobiochanin-a.html","2,3-dihydrobiochanin A"]]},{"id":"CHEBI:16196","l":"oleic acid","na":2,"nb":1,"a":[["TCDB%3A9.A.76","The Omega3 Fatty Acid Desaturase 3/Putative Transporter (FAD3) Family"],["proteintraitsmech%3ABIOLIP_OLA","OLA-binding site"]],"b":[["antibacterial/oleic-acid.html","oleic acid"]]},{"id":"CHEBI:16605","l":"allyl alcohol","na":2,"nb":1,"a":[["EC%3A1.1.1.54","allyl-alcohol dehydrogenase"],["RHEA%3A12168","allyl alcohol + NADP(+) = acrolein + NADPH + H(+)"]],"b":[["antibacterial/allyl-alcohol.html","allyl alcohol"]]},{"id":"CHEBI:16648","l":"","na":1,"nb":2,"a":[["MCSA%3A159","aryldialkylphosphatase"]],"b":[["antibacterial/dichlorvos.html","dichlorvos"],["antibacterial/naled.html","naled"]]},{"id":"CHEBI:16705","l":"6-aminopenicillanic acid","na":2,"nb":1,"a":[["MCSA%3A241","penicillin amidase (peptidase C59 family)"],["proteintraitsmech%3ABIOLIP_X1E","X1E-binding site"]],"b":[["unspecified/6-aminopenicillanic-acid.html","6-aminopenicillanic acid"]]},{"id":"CHEBI:16774","l":"(2-cis,6-trans)-farnesol","na":2,"nb":1,"a":[["EC%3A5.2.1.9","farnesol 2-isomerase"],["RHEA%3A13401","(2E,6E)-farnesol = (2Z,6E)-farnesol"]],"b":[["unspecified/2-cis-6-trans-farnesol.html","(2-cis,6-trans)-farnesol"]]},{"id":"CHEBI:167830","l":"isorhapontigenin","na":2,"nb":1,"a":[["EC%3A2.1.1.399","resveratrol 4'-O-methyltransferase"],["RHEA%3A82215","isorhapontigenin + S-adenosyl-L-methionine = 4'-O-methylisorhapontigenin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antiviral/isorhapontigenin.html","isorhapontigenin"]]},{"id":"CHEBI:17098","l":"veratraldehyde","na":2,"nb":1,"a":[["EC%3A1.11.1.14","lignin peroxidase"],["RHEA%3A48004","1-(3,4-dimethoxyphenyl)-2-(2-methoxyphenoxy)propane-1,3-diol + H2O2 = 3,4-dimethoxybenzaldehyde + guaiacol + glycolaldehyde + H2O"]],"b":[["antifungal/veratraldehyde.html","veratraldehyde"]]},{"id":"CHEBI:174376","l":"rhapontigenin","na":2,"nb":1,"a":[["EC%3A2.1.1.399","resveratrol 4'-O-methyltransferase"],["RHEA%3A82191","piceatannol + S-adenosyl-L-methionine = rhapontigenin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/rhapontigenin.html","rhapontigenin"]]},{"id":"CHEBI:17630","l":"kanamycin A","na":2,"nb":1,"a":[["MCSA%3A647","kanamycin nucleotidyltransferase"],["proteintraitsmech%3ABIOLIP_KAN","KAN-binding site"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"CHEBI:17695","l":"casbene","na":2,"nb":1,"a":[["EC%3A4.2.3.8","casbene synthase"],["RHEA%3A14901","(2E,6E,10E)-geranylgeranyl diphosphate = casbene + diphosphate"]],"b":[["antifungal/casbene.html","casbene"]]},{"id":"CHEBI:17909","l":"polysulfur","na":2,"nb":1,"a":[["EC%3A1.8.5.4","bacterial sulfide:quinone reductase"],["RHEA%3A30239","n a quinone + n hydrogen sulfide + n H(+) = polysulfur(n-2) + n a quinol"]],"b":[["antifungal/polysulfur.html","polysulfur"]]},{"id":"CHEBI:17939","l":"puromycin","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_PUY","PUY-binding site"]],"b":[["antibacterial/puromycin.html","puromycin"]]},{"id":"CHEBI:19129","l":"","na":1,"nb":2,"a":[["RHEA%3A86087","a steroid + reduced [NADPH--hemoprotein reductase] + O2 = a 11alpha-hydroxy steroid + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"],["antifungal/fr171456.html","FR171456"]]},{"id":"CHEBI:201384","l":"sartorypyrone D","na":2,"nb":1,"a":[["RHEA%3A80875","(S)-(2E,6E,10E)-epoxygeranylgeranyl-triacetate lactone = sartorypyrone D"],["RHEA%3A80883","sartorypyrone D + acetyl-CoA = sartorypyrone A + CoA"]],"b":[["antibacterial/sartorypyrone-d.html","sartorypyrone D"]]},{"id":"CHEBI:2469","l":"adefovir","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antiviral/adefovir.html","adefovir"]]},{"id":"CHEBI:26004","l":"","na":1,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antibacterial/eugenol.html","eugenol"],["antifungal/coniferyl-aldehyde.html","coniferyl aldehyde"]]},{"id":"CHEBI:26401","l":"purines","na":1,"nb":2,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antiviral/mercaptopurine.html","mercaptopurine"],["antiviral/valganciclovir.html","valganciclovir"]]},{"id":"CHEBI:26666","l":"","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.73","The Short Chain Fatty Acid Uptake (AtoE) Family"]],"b":[["antifungal/propionic-acid.html","propionic acid"]]},{"id":"CHEBI:26789","l":"","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_OI9","OI9-binding site"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"],["unspecified/streptothricin-d.html","streptothricin D"]]},{"id":"CHEBI:27446","l":"phenoxymethylpenicillin","na":2,"nb":1,"a":[["MCSA%3A241","penicillin amidase (peptidase C59 family)"],["proteintraitsmech%3ABIOLIP_PNV","PNV-binding site"]],"b":[["antibacterial/phenoxymethylpenicillin.html","phenoxymethylpenicillin"]]},{"id":"CHEBI:27641","l":"cycloheximide","na":2,"nb":1,"a":[["RHEA%3A61936","cycloheximide(in) + ATP + H2O = cycloheximide(out) + ADP + phosphate + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/cycloheximide.html","cycloheximide"]]},{"id":"CHEBI:27902","l":"tetracycline","na":2,"nb":1,"a":[["ARO%3A3000186","tet(M)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"CHEBI:28","l":"(R)-linalool","na":2,"nb":1,"a":[["EC%3A4.2.3.26","R-linalool synthase"],["RHEA%3A15809","(2E)-geranyl diphosphate + H2O = (R)-linalool + diphosphate"]],"b":[["unspecified/r-linalool.html","(R)-linalool"]]},{"id":"CHEBI:28283","l":"capsidiol","na":2,"nb":1,"a":[["EC%3A1.14.14.149","5-epiaristolochene 1,3-dihydroxylase"],["RHEA%3A28226","(+)-5-epi-aristolochene + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = capsidiol + 2 oxidized [NADPH--hemoprotein reductase] + 2 H2O + 2 H(+)"]],"b":[["antifungal/capsidiol.html","capsidiol"]]},{"id":"CHEBI:29007","l":"ceftriaxone","na":2,"nb":1,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"]],"b":[["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"CHEBI:2955","l":"azithromycin","na":2,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["proteintraitsmech%3ABIOLIP_ZIT","ZIT-binding site"]],"b":[["antibacterial/azithromycin.html","azithromycin"]]},{"id":"CHEBI:29673","l":"rifamycin SV","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]],"b":[["antimycobacterial/rifamycin-sv.html","rifamycin SV"]]},{"id":"CHEBI:29702","l":"undecylprodigiosin","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.B.102","The YedE/YeeE (YedE/YeeE) Family"]],"b":[["antibacterial/undecylprodigiosin.html","undecylprodigiosin"]]},{"id":"CHEBI:30746","l":"benzoic acid","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_BEZ","BEZ-binding site"]],"b":[["biocide/benzoic-acid.html","benzoic acid"],["biocide/carboxy-ptio.html","carboxy-PTIO"]]},{"id":"CHEBI:30751","l":"formic acid","na":2,"nb":1,"a":[["MCSA%3A38","GTP cyclohydrolase I"],["proteintraitsmech%3ABIOLIP_FMT","FMT-binding site"]],"b":[["antibacterial/formic-acid.html","formic acid"]]},{"id":"CHEBI:31000","l":"docosan-1-ol","na":2,"nb":1,"a":[["RHEA%3A81783","docosan-1-ol + (9Z)-octadecenoyl-CoA = 1-O-docosyl (9Z)-octadecenoate + CoA"],["RHEA%3A81731","docosanoyl-CoA + 2 NADPH + 2 H(+) = docosan-1-ol + 2 NADP(+) + CoA"]],"b":[["antiviral/docosan-1-ol.html","docosan-1-ol"]]},{"id":"CHEBI:31466","l":"dequalinium chloride","na":2,"nb":1,"a":[["TCDB%3A2.A.117","The Chlorhexadine Exporter (CHX) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antifungal/dequalinium-chloride.html","dequalinium chloride"]]},{"id":"CHEBI:32023","l":"plaunotol","na":2,"nb":1,"a":[["EC%3A1.14.14.146","geranylgeraniol 18-hydroxylase"],["RHEA%3A26233","(2E,6E,10E)-geranylgeraniol + reduced [NADPH--hemoprotein reductase] + O2 = plaunotol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["antibacterial/plaunotol.html","plaunotol"]]},{"id":"CHEBI:32199","l":"tetracenomycin B2","na":2,"nb":1,"a":[["EC%3A1.14.13.200","tetracenomycin A2 monooxygenase-diooxygenase"],["RHEA%3A76467","tetracenomycin B2 + 2 NADPH + 2 O2 + 2 H(+) = 8-demethyltetracenomycin C + 2 NADP(+) + H2O"]],"b":[["unspecified/tetracenomycin-b2.html","tetracenomycin B2"]]},{"id":"CHEBI:32215","l":"thiamphenicol","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_TH8","TH8-binding site"]],"b":[["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"CHEBI:3393","l":"carbenicillin","na":2,"nb":1,"a":[["TCDB%3A1.B.25","The Outer Membrane Porin (Opr) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/carbenicillin.html","carbenicillin"]]},{"id":"CHEBI:3440","l":"carvacrol","na":2,"nb":1,"a":[["RHEA%3A67412","alpha-terpinene + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = carvacrol + 2 oxidized [NADPH--hemoprotein reductase] + 3 H2O + 2 H(+)"],["RHEA%3A67404","gamma-terpinene + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = carvacrol + 2 oxidized [NADPH--hemoprotein reductase] + 3 H2O + 2 H(+)"]],"b":[["antifungal/carvacrol.html","carvacrol"]]},{"id":"CHEBI:35267","l":"","na":2,"nb":1,"a":[["EC%3A7.6.2.9","ABC-type quaternary amine transporter"],["RHEA%3A11036","a quaternary ammonium(out) + ATP + H2O = a quaternary ammonium(in) + ADP + phosphate + H(+)"]],"b":[["antifungal/rezafungin.html","rezafungin"]]},{"id":"CHEBI:35274","l":"","na":2,"nb":1,"a":[["TCDB%3A1.A.11","The Ammonium Transporter Channel (Amt) Family"],["TCDB%3A1.B.6","The OmpA-OmpF Porin (OOP) Family"]],"b":[["antifungal/validamycin-a-1.html","validamycin A(1+)"]]},{"id":"CHEBI:35986","l":"nonan-1-ol","na":2,"nb":1,"a":[["RHEA%3A44112","nonan-1-ol + hexadecanoyl-CoA = nonyl hexadecanoate + CoA"],["RHEA%3A58380","nonan-1-ol + NADP(+) = nonanal + NADPH + H(+)"]],"b":[["antifungal/nonan-1-ol.html","nonan-1-ol"]]},{"id":"CHEBI:3614","l":"chlorhexidine","na":2,"nb":1,"a":[["TCDB%3A2.A.117","The Chlorhexadine Exporter (CHX) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/chlorhexidine.html","chlorhexidine"]]},{"id":"CHEBI:368","l":"(S)-(−)-citronellal","na":2,"nb":1,"a":[["RHEA%3A60740","(S)-(-)-citronellal + NADP(+) + H2O = (S)-(-)-citronellate + NADPH + 2 H(+)"],["RHEA%3A60676","(S)-(-)-citronellol + NAD(+) = (S)-(-)-citronellal + NADH + H(+)"]],"b":[["antifungal/s-citronellal.html","(S)-(−)-citronellal"]]},{"id":"CHEBI:3732","l":"clarithromycin","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"CHEBI:37424","l":"","na":2,"nb":1,"a":[["EC%3A2.4.1.173","sterol 3beta-glucosyltransferase"],["RHEA%3A22724","a sterol + UDP-alpha-D-glucose = a sterol 3-beta-D-glucoside + UDP + H(+)"]],"b":[["antifungal/solasodine-3-%CE%B2-d-glucoside.html","solasodine 3-β-D-glucoside"]]},{"id":"CHEBI:3764","l":"clotrimazole","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antifungal/clotrimazole.html","clotrimazole"]]},{"id":"CHEBI:42452","l":"formycin A","na":2,"nb":1,"a":[["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"],["proteintraitsmech%3ABIOLIP_FMC","FMC-binding site"]],"b":[["unspecified/formycin-a.html","formycin A"]]},{"id":"CHEBI:42530","l":"peracetic acid","na":2,"nb":1,"a":[["RHEA%3A68392","peracetic acid + H2O = acetate + H2O2 + H(+)"],["proteintraitsmech%3ABIOLIP_F50","F50-binding site"]],"b":[["biocide/peracetic-acid.html","peracetic acid"]]},{"id":"CHEBI:44107","l":"malachite green cation","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_MGR","MGR-binding site"]],"b":[["antibacterial/malachite-green-cation.html","malachite green cation"]]},{"id":"CHEBI:443725","l":"fosmidomycin","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_FOM","FOM-binding site"]],"b":[["antibacterial/fosmidomycin.html","fosmidomycin"]]},{"id":"CHEBI:45081","l":"pentamidine","na":2,"nb":1,"a":[["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"],["TCDB%3A1.A.8","The Major Intrinsic Protein (MIP) Family"]],"b":[["antifungal/pentamidine.html","pentamidine"]]},{"id":"CHEBI:45285","l":"pyrazinecarboxamide","na":1,"nb":2,"a":[["RHEA%3A35063","pyrazinamide + H2O = pyrazine-2-carboxylate + NH4(+)"]],"b":[["antimycobacterial/n-butyl-5-4-hydroxyphenyl-6-oxo-1-6-dihydropyrazine-2-carboxamide.html","N-butyl-5-(4-hydroxyphenyl)-6-oxo-1,6-dihydropyrazine-2-carboxamide"],["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"CHEBI:45373","l":"sulfanilamide","na":2,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["proteintraitsmech%3ABIOLIP_SAN","SAN-binding site"]],"b":[["antibacterial/sulfanilamide.html","sulfanilamide"]]},{"id":"CHEBI:46202","l":"undecanal","na":2,"nb":1,"a":[["RHEA%3A68484","(2R)-2-hydroperoxydodecanoate + H(+) = undecanal + CO2 + H2O"],["RHEA%3A58408","undecan-1-ol + NADP(+) = undecanal + NADPH + H(+)"]],"b":[["antimycobacterial/undecanal.html","undecanal"]]},{"id":"CHEBI:48080","l":"brefeldin A","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["MCSA%3A453","Brefeldin A esterase"]],"b":[["antibacterial/brefeldin-a.html","brefeldin A"]]},{"id":"CHEBI:4877","l":"ethambutol","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_95E","95E-binding site"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"CHEBI:48981","l":"quinolin-8-ol","na":2,"nb":1,"a":[["RHEA%3A25924","quinolin-8-ol + A + H2O = 8-hydroxyquinolin-2(1H)-one + AH2"],["RHEA%3A72659","quinolin-8-ol + NADPH + O2 = 8-hydroxyquinoline N-oxide + NADP(+) + H2O"]],"b":[["antibacterial/quinolin-8-ol.html","quinolin-8-ol"]]},{"id":"CHEBI:50209","l":"sophoraflavanone G","na":2,"nb":1,"a":[["EC%3A2.5.1.71","leachianone-G 2'-dimethylallyltransferase"],["RHEA%3A10852","leachianone G + dimethylallyl diphosphate = sophoraflavanone G + diphosphate"]],"b":[["antiprotozoal/sophoraflavanone-g.html","sophoraflavanone G"]]},{"id":"CHEBI:50471","l":"","na":2,"nb":1,"a":[["EC%3A2.3.1.5","arylamine N-acetyltransferase"],["RHEA%3A16613","an arylamine + acetyl-CoA = an N-acetylarylamine + CoA"]],"b":[["antifungal/ferrostatin-1.html","ferrostatin-1"]]},{"id":"CHEBI:52086","l":"glyceollin III","na":2,"nb":1,"a":[["EC%3A1.14.14.135","glyceollin synthase"],["RHEA%3A26051","(6aS,11aS)-2-dimethylallyl-3,6a,9-trihydroxypterocarpan + reduced [NADPH--hemoprotein reductase] + O2 = glyceollin III + oxidized [NADPH--hemoprotein reductase] + 2 H2O + H(+)"]],"b":[["antifungal/glyceollin-iii.html","glyceollin III"]]},{"id":"CHEBI:52221","l":"","na":1,"nb":2,"a":[["RHEA%3A69264","a (Z)-N-(sulfonatooxy)alkanimidothioate = an isothiocyanate + sulfate"]],"b":[["antibacterial/benzyl-isothiocyanate.html","benzyl isothiocyanate"],["unspecified/allyl-isothiocyanate.html","allyl isothiocyanate"]]},{"id":"CHEBI:55517","l":"","na":1,"nb":2,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/trichothecin.html","trichothecin"],["unspecified/verrucarin-a.html","verrucarin A"]]},{"id":"CHEBI:57289","l":"blasticidin S(1+)","na":2,"nb":1,"a":[["EC%3A3.5.4.23","blasticidin-S deaminase"],["RHEA%3A10148","blasticidin S + H2O + H(+) = deaminohydroxyblasticidin S + NH4(+)"]],"b":[["antifungal/blasticidin-s-1.html","blasticidin S(1+)"]]},{"id":"CHEBI:61699","l":"(−)-α-gurjunene","na":2,"nb":1,"a":[["EC%3A4.2.3.72","alpha-gurjunene synthase"],["RHEA%3A29507","(2E,6E)-farnesyl diphosphate = (-)-alpha-gurjunene + diphosphate"]],"b":[["antibacterial/%CE%B1-gurjunene.html","(−)-α-gurjunene"]]},{"id":"CHEBI:62247","l":"(1R,2S)-epoxypropylphosphonate(1−)","na":2,"nb":1,"a":[["EC%3A1.11.1.23","(S)-2-hydroxypropylphosphonic acid epoxidase"],["RHEA%3A10808","(S)-2-hydroxypropylphosphonate + H2O2 = (1R,2S)-epoxypropylphosphonate + 2 H2O"]],"b":[["unspecified/1r-2s-epoxypropylphosphonate-1.html","(1R,2S)-epoxypropylphosphonate(1−)"]]},{"id":"CHEBI:64090","l":"tert-butyl hydroperoxide","na":2,"nb":1,"a":[["RHEA%3A69412","tert-butyl hydroperoxide + 2 glutathione = tert-butanol + glutathione disulfide + H2O"],["RHEA%3A63840","tert-butyl hydroperoxide + [thioredoxin]-dithiol = tert-butanol + [thioredoxin]-disulfide + H2O"]],"b":[["antibacterial/tert-butyl-hydroperoxide.html","tert-butyl hydroperoxide"]]},{"id":"CHEBI:67153","l":"(+)-larreatricin","na":2,"nb":1,"a":[["EC%3A1.14.99.47","(+)-larreatricin hydroxylase"],["RHEA%3A34259","(+)-larreatricin + AH2 + O2 = (+)-3'-hydroxylarreatricin + A + H2O"]],"b":[["antiviral/larreatricin.html","(+)-larreatricin"]]},{"id":"CHEBI:7518","l":"cis-trans-nepetalactone","na":2,"nb":1,"a":[["EC%3A1.1.1.419","nepetalactol dehydrogenase"],["RHEA%3A61428","cis-trans-nepetalactol + NAD(+) = cis-trans-nepetalactone + NADH + H(+)"]],"b":[["antibacterial/cis-trans-nepetalactone.html","cis-trans-nepetalactone"]]},{"id":"CHEBI:75561","l":"1-linoleoyl-sn-glycerol","na":2,"nb":1,"a":[["RHEA%3A41115","1-(9Z,12Z)-octadecadienoyl-sn-glycero-3-phosphocholine + H2O = 1-(9Z,12Z-octadecadienoyl)-sn-glycerol + phosphocholine + H(+)"],["RHEA%3A40603","1-(9Z,12Z-octadecadienoyl)-sn-glycerol + H2O = (9Z,12Z)-octadecadienoate + glycerol + H(+)"]],"b":[["antiviral/1-linoleoyl-sn-glycerol.html","1-linoleoyl-sn-glycerol"]]},{"id":"CHEBI:75616","l":"","na":2,"nb":1,"a":[["EC%3A2.3.1.60","gentamicin 3-N-acetyltransferase"],["RHEA%3A14441","gentamicin C + acetyl-CoA = N(3)-acetylgentamycin C + CoA + H(+)"]],"b":[["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"CHEBI:77152","l":"ginsenoside Rb2","na":2,"nb":1,"a":[["EC%3A3.2.1.191","ginsenosidase type III"],["RHEA%3A40739","(20S)-ginsenoside Rb2 + 2 H2O = (20S)-ginsenoside C-Y + 2 D-glucose"]],"b":[["antiviral/ginsenoside-rb2.html","ginsenoside Rb2"]]},{"id":"CHEBI:7731","l":"","na":2,"nb":1,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"CHEBI:77772","l":"ilicicolin H","na":2,"nb":1,"a":[["RHEA%3A64568","3-[(2E,4E,8S,10E,12Z)-4,8-dimethyltetradeca-2,4,10,12-tetraenoyl]-4-hydroxy-5-(4-hydroxyphenyl)-1,2-dihydropyridin-2-one = ilicicolin H"],["RHEA%3A64564","8-epi-ilicicolin H = ilicicolin H"]],"b":[["unspecified/ilicicolin-h.html","ilicicolin H"]]},{"id":"CHEBI:77885","l":"nocardicin E(2−)","na":2,"nb":1,"a":[["EC%3A2.5.1.38","isonocardicin synthase"],["RHEA%3A19845","nocardicin E + S-adenosyl-L-methionine = isonocardicin A + S-methyl-5'-thioadenosine + H(+)"]],"b":[["unspecified/nocardicin-e-2.html","nocardicin E(2−)"]]},{"id":"CHEBI:77985","l":"aclacinomycin Y zwitterion","na":2,"nb":1,"a":[["EC%3A1.3.3.14","aclacinomycin-A oxidase"],["RHEA%3A37791","aclacinomycin A + O2 = aclacinomycin Y + H2O2"]],"b":[["unspecified/aclacinomycin-y-zwitterion.html","aclacinomycin Y zwitterion"]]},{"id":"CHEBI:7809","l":"oxacillin","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/oxacillin.html","oxacillin"]]},{"id":"CHEBI:78327","l":"pseudobaptigenin(1−)","na":2,"nb":1,"a":[["EC%3A1.14.19.63","pseudobaptigenin synthase"],["RHEA%3A28238","calycosin + reduced [NADPH--hemoprotein reductase] + O2 = pseudobaptigenin + oxidized [NADPH--hemoprotein reductase] + 2 H2O + H(+)"]],"b":[["antiprotozoal/pseudobaptigenin-1.html","pseudobaptigenin(1−)"]]},{"id":"CHEBI:78884","l":"4-terpineol","na":2,"nb":1,"a":[["RHEA%3A60028","(2E)-geranyl diphosphate + H2O = 4-terpineol + diphosphate"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/4-terpineol.html","4-terpineol"]]},{"id":"CHEBI:80024","l":"aureothin","na":2,"nb":1,"a":[["EC%3A1.14.15.37","luteothin monooxygenase"],["RHEA%3A58824","luteothin + 4 reduced [2Fe-2S]-[ferredoxin] + 2 O2 + 4 H(+) = aureothin + 4 oxidized [2Fe-2S]-[ferredoxin] + 3 H2O"]],"b":[["antibacterial/aureothin.html","aureothin"]]},{"id":"CHEBI:81485","l":"osthenol","na":2,"nb":1,"a":[["EC%3A2.5.1.139","umbelliferone 6-dimethylallyltransferase"],["RHEA%3A51872","umbelliferone + dimethylallyl diphosphate = osthenol + diphosphate"]],"b":[["antifungal/osthenol.html","osthenol"]]},{"id":"CHEBI:82751","l":"cholesteryl arachidonate","na":2,"nb":1,"a":[["RHEA%3A53448","1-hexadecanoyl-2-(5Z,8Z,11Z,14Z-eicosatetraenoyl)-sn-glycero-3-phosphocholine + cholesterol = cholesteryl (5Z,8Z,11Z,14Z)-eicosatetraenoate + 1-hexadecanoyl-sn-glycero-3-phosphocholine"],["RHEA%3A42816","(5Z,8Z,11Z,14Z)-eicosatetraenoyl-CoA + cholesterol = cholesteryl (5Z,8Z,11Z,14Z)-eicosatetraenoate + CoA"]],"b":[["antibacterial/cholesteryl-arachidonate.html","cholesteryl arachidonate"]]},{"id":"CHEBI:8309","l":"polymyxin B1","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antibacterial/polymyxin-b1.html","polymyxin B1"]]},{"id":"CHEBI:8452","l":"3,6-diaminoacridine","na":2,"nb":1,"a":[["TCDB%3A2.A.117","The Chlorhexadine Exporter (CHX) Family"],["proteintraitsmech%3ABIOLIP_PRL","PRL-binding site"]],"b":[["antibacterial/3-6-diaminoacridine.html","3,6-diaminoacridine"]]},{"id":"CHEBI:86012","l":"oxetanocin A","na":2,"nb":1,"a":[["EC%3A3.1.3.112","4'-phosphooxetanocin A phosphatase"],["RHEA%3A81367","4'-phosphooxetanocin A + H2O = oxetanocin A + phosphate"]],"b":[["antibacterial/oxetanocin-a.html","oxetanocin A"]]},{"id":"CHEBI:87123","l":"tulipalin B","na":2,"nb":1,"a":[["EC%3A4.2.99.23","tuliposide B-converting enzyme"],["RHEA%3A38655","6-tuliposide B = tulipalin B + D-glucose"]],"b":[["antibacterial/tulipalin-b.html","tulipalin B"]]},{"id":"CHEBI:87124","l":"6-tuliposide B","na":2,"nb":1,"a":[["EC%3A4.2.99.23","tuliposide B-converting enzyme"],["RHEA%3A38655","6-tuliposide B = tulipalin B + D-glucose"]],"b":[["antibacterial/6-tuliposide-b.html","6-tuliposide B"]]},{"id":"CHEBI:90868","l":"validamycin B","na":2,"nb":1,"a":[["EC%3A1.14.11.52","validamycin A dioxygenase"],["RHEA%3A48752","validamycin A + 2-oxoglutarate + O2 = validamycin B + succinate + CO2 + H(+)"]],"b":[["antifungal/validamycin-b.html","validamycin B"]]},{"id":"CHEBI:9332","l":"sulfamethoxazole","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"CHEBI:9997","l":"pristinamycin IIA","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_VIR","VIR-binding site"]],"b":[["antibacterial/pristinamycin-iia.html","pristinamycin IIA"]]},{"id":"NCBITaxon:1159556","l":"Ustilaginoidea virens","na":2,"nb":1,"a":[["Pfam%3APF06966","Protein of unknown function (DUF1295)"],["TED%3AAF-A0A1B5L5W2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1B5L5W2-F1-model_v4_TED03"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"]]},{"id":"NCBITaxon:1654360","l":"Photobacterium galatheae","na":2,"nb":1,"a":[["TED%3AAF-A0A066RSN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A066RSN6-F1-model_v4_TED01"],["TED%3AAF-A0A066RLQ8-F1-model_v4_TED01","TED novel fold AF-A0A066RLQ8-F1-model_v4_TED01"]],"b":[["antibacterial/holomycin.html","holomycin"]]},{"id":"NCBITaxon:1907","l":"Streptomyces glaucescens","na":2,"nb":1,"a":[["Pfam%3APF04673","Polyketide synthesis cyclase"],["Pfam%3APF04655","Aminoglycoside/hydroxyurea antibiotic resistance kinase"]],"b":[["antibacterial/tetracenomycin-c.html","tetracenomycin C"]]},{"id":"NCBITaxon:271","l":"Thermus aquaticus","na":2,"nb":1,"a":[["Pfam%3APF07669","Eco57I restriction-modification methylase"],["MCSA%3A46","site-specific DNA-methyltransferase (adenine-specific)"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"NCBITaxon:5074","l":"Penicillium brevicompactum","na":2,"nb":1,"a":[["Pfam%3APF09227","Bubble protein"],["Pfam%3APF18558","Methyltransferase, Helix-turn-helix domain"]],"b":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]]},{"id":"NCBITaxon:5082","l":"Penicillium roqueforti","na":2,"nb":1,"a":[["Pfam%3APF07573","Nitrogen regulatory protein AreA N terminus"],["MCSA%3A261","aristolochene synthase"]],"b":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]]},{"id":"NCBITaxon:52","l":"Chondromyces crocatus","na":2,"nb":1,"a":[["TED%3AAF-A0A0K1ER44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0K1ER44-F1-model_v4_TED01"],["TED%3AAF-A0A0K1E854-F1-model_v4_TED01","TED novel fold AF-A0A0K1E854-F1-model_v4_TED01"]],"b":[["unspecified/chondrochloren-a.html","chondrochloren A"]]},{"id":"NCBITaxon:536","l":"Chromobacterium violaceum","na":2,"nb":1,"a":[["TED%3AAF-A0A381EUD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A381EUD6-F1-model_v4_TED01"],["TED%3AAF-A0A447THJ9-F1-model_v4_TED01","TED novel fold AF-A0A447THJ9-F1-model_v4_TED01"]],"b":[["unspecified/romidepsin.html","romidepsin"]]},{"id":"NCBITaxon:5478","l":"Candida glabrata","na":2,"nb":1,"a":[["TED%3AAF-A0A0W0D8W7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0W0D8W7-F1-model_v4_TED02"],["TED%3AAF-A0A0W0D4K9-F1-model_v4_TED02","TED novel fold AF-A0A0W0D4K9-F1-model_v4_TED02"]],"b":[["antifungal/fluconazole.html","fluconazole"]]},{"id":"NCBITaxon:58346","l":"Streptomyces platensis","na":1,"nb":2,"a":[["PROSITE%3APS00999","Streptomyces subtilisin-type inhibitors signature"]],"b":[["antibacterial/platencin.html","platencin"],["antibacterial/platensimycin.html","platensimycin"]]},{"id":"UniProt:P02557","l":"","na":2,"nb":1,"a":[["ComplexPortal%3ACPX-1424","Tubulin alpha-beta heterodimeric complex, TUB1 variant"],["ComplexPortal%3ACPX-1425","Tubulin alpha-beta heterodimeric complex, TUB3 variant"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"UniProt:P0C6U8","l":"","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_TTT","TTT-binding site"]],"b":[["antibacterial/hexachlorophene.html","hexachlorophene"],["antifungal/bithionol.html","bithionol"]]},{"id":"ARO:0000042","l":"","na":1,"nb":1,"a":[["ARO%3A3000026","mepA"]],"b":[["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:0000062","l":"ceftriaxone","na":1,"nb":1,"a":[["ARO%3A3004835","Neisseria gonorrhoeae pilQ gene conferring resistance to beta-lactam"]],"b":[["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3000149","l":"FosA","na":1,"nb":1,"a":[["ARO%3A3000149","FosA"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3000166","l":"tet(B)","na":1,"nb":1,"a":[["ARO%3A3000166","tet(B)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000167","l":"tet(C)","na":1,"nb":1,"a":[["ARO%3A3000167","tet(C)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000168","l":"tet(D)","na":1,"nb":1,"a":[["ARO%3A3000168","tet(D)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000169","l":"rifampin","na":1,"nb":1,"a":[["ARO%3A3004960","Mycobacterium tuberculosis ponA1 mutations conferring resistance to rifabutin"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3000172","l":"FosB","na":1,"nb":1,"a":[["ARO%3A3000172","FosB"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3000173","l":"tet(E)","na":1,"nb":1,"a":[["ARO%3A3000173","tet(E)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000174","l":"tet(G)","na":1,"nb":1,"a":[["ARO%3A3000174","tet(G)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000175","l":"tet(H)","na":1,"nb":1,"a":[["ARO%3A3000175","tet(H)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000177","l":"tet(J)","na":1,"nb":1,"a":[["ARO%3A3000177","tet(J)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000178","l":"tet(K)","na":1,"nb":1,"a":[["ARO%3A3000178","tet(K)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000179","l":"tet(L)","na":1,"nb":1,"a":[["ARO%3A3000179","tet(L)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000180","l":"tetA(P)","na":1,"nb":1,"a":[["ARO%3A3000180","tetA(P)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000181","l":"tet(V)","na":1,"nb":1,"a":[["ARO%3A3000181","tet(V)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000182","l":"tet(Y)","na":1,"nb":1,"a":[["ARO%3A3000182","tet(Y)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000183","l":"tet(Z)","na":1,"nb":1,"a":[["ARO%3A3000183","tet(Z)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000198","l":"FosX","na":1,"nb":1,"a":[["ARO%3A3000198","FosX"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3000216","l":"acrB","na":1,"nb":1,"a":[["ARO%3A3000216","acrB"]],"b":[["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3000238","l":"glycopeptide resistance gene cluster VanB","na":1,"nb":1,"a":[["ARO%3A3000238","glycopeptide resistance gene cluster VanB"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000246","l":"glycopeptide resistance gene cluster VanC","na":1,"nb":1,"a":[["ARO%3A3000246","glycopeptide resistance gene cluster VanC"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000255","l":"glycopeptide resistance gene cluster VanF","na":1,"nb":1,"a":[["ARO%3A3000255","glycopeptide resistance gene cluster VanF"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000257","l":"glycopeptide resistance gene cluster VanG","na":1,"nb":1,"a":[["ARO%3A3000257","glycopeptide resistance gene cluster VanG"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000259","l":"glycopeptide resistance gene cluster VanE","na":1,"nb":1,"a":[["ARO%3A3000259","glycopeptide resistance gene cluster VanE"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000260","l":"glycopeptide resistance gene cluster VanL","na":1,"nb":1,"a":[["ARO%3A3000260","glycopeptide resistance gene cluster VanL"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000309","l":"emrD","na":1,"nb":1,"a":[["ARO%3A3000309","emrD"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3000343","l":"tap","na":1,"nb":1,"a":[["ARO%3A3000343","tap"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000380","l":"FosC","na":1,"nb":1,"a":[["ARO%3A3000380","FosC"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3000423","l":"FomA","na":1,"nb":1,"a":[["ARO%3A3000423","FomA"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3000449","l":"FomB","na":1,"nb":1,"a":[["ARO%3A3000449","FomB"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3000464","l":"Neisseria gonorrhoeae porin PIB (por)","na":1,"nb":1,"a":[["ARO%3A3000464","Neisseria gonorrhoeae porin PIB (por)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000476","l":"tet(31)","na":1,"nb":1,"a":[["ARO%3A3000476","tet(31)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000478","l":"tet(33)","na":1,"nb":1,"a":[["ARO%3A3000478","tet(33)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000481","l":"tet(35)","na":1,"nb":1,"a":[["ARO%3A3000481","tet(35)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000510","l":"Staphylococcus aureus mupB conferring resistance to mupirocin","na":1,"nb":1,"a":[["ARO%3A3000510","Staphylococcus aureus mupB conferring resistance to mupirocin"]],"b":[["antibacterial/mupirocin.html","mupirocin"]]},{"id":"ARO:3000521","l":"Staphylococcus aureus mupA conferring resistance to mupirocin","na":1,"nb":1,"a":[["ARO%3A3000521","Staphylococcus aureus mupA conferring resistance to mupirocin"]],"b":[["antibacterial/mupirocin.html","mupirocin"]]},{"id":"ARO:3000561","l":"tet(30)","na":1,"nb":1,"a":[["ARO%3A3000561","tet(30)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000565","l":"tet(38)","na":1,"nb":1,"a":[["ARO%3A3000565","tet(38)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000566","l":"tet(39)","na":1,"nb":1,"a":[["ARO%3A3000566","tet(39)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000567","l":"tet(40)","na":1,"nb":1,"a":[["ARO%3A3000567","tet(40)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000569","l":"tet(41)","na":1,"nb":1,"a":[["ARO%3A3000569","tet(41)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000572","l":"tet(42)","na":1,"nb":1,"a":[["ARO%3A3000572","tet(42)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000573","l":"tet(43)","na":1,"nb":1,"a":[["ARO%3A3000573","tet(43)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000614","l":"mef(E)","na":1,"nb":1,"a":[["ARO%3A3000614","mef(E)"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000866","l":"oleI","na":1,"nb":1,"a":[["ARO%3A3000866","oleI"]],"b":[["antibacterial/oleandomycin.html","oleandomycin"]]},{"id":"ARO:3000874","l":"TEM-2","na":1,"nb":1,"a":[["ARO%3A3000874","TEM-2"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000875","l":"TEM-3","na":1,"nb":1,"a":[["ARO%3A3000875","TEM-3"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000876","l":"TEM-4","na":1,"nb":1,"a":[["ARO%3A3000876","TEM-4"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000877","l":"TEM-5","na":1,"nb":1,"a":[["ARO%3A3000877","TEM-5"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000878","l":"TEM-6","na":1,"nb":1,"a":[["ARO%3A3000878","TEM-6"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000879","l":"TEM-7","na":1,"nb":1,"a":[["ARO%3A3000879","TEM-7"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000880","l":"TEM-8","na":1,"nb":1,"a":[["ARO%3A3000880","TEM-8"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000881","l":"TEM-9","na":1,"nb":1,"a":[["ARO%3A3000881","TEM-9"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000882","l":"TEM-10","na":1,"nb":1,"a":[["ARO%3A3000882","TEM-10"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000883","l":"TEM-11","na":1,"nb":1,"a":[["ARO%3A3000883","TEM-11"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000884","l":"TEM-12","na":1,"nb":1,"a":[["ARO%3A3000884","TEM-12"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000886","l":"TEM-15","na":1,"nb":1,"a":[["ARO%3A3000886","TEM-15"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000887","l":"TEM-16","na":1,"nb":1,"a":[["ARO%3A3000887","TEM-16"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000888","l":"TEM-17","na":1,"nb":1,"a":[["ARO%3A3000888","TEM-17"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000890","l":"TEM-19","na":1,"nb":1,"a":[["ARO%3A3000890","TEM-19"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000891","l":"TEM-20","na":1,"nb":1,"a":[["ARO%3A3000891","TEM-20"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000892","l":"TEM-21","na":1,"nb":1,"a":[["ARO%3A3000892","TEM-21"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000893","l":"TEM-22","na":1,"nb":1,"a":[["ARO%3A3000893","TEM-22"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000894","l":"TEM-24","na":1,"nb":1,"a":[["ARO%3A3000894","TEM-24"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000896","l":"TEM-26","na":1,"nb":1,"a":[["ARO%3A3000896","TEM-26"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000898","l":"TEM-28","na":1,"nb":1,"a":[["ARO%3A3000898","TEM-28"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000899","l":"TEM-29","na":1,"nb":1,"a":[["ARO%3A3000899","TEM-29"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000901","l":"TEM-31","na":1,"nb":1,"a":[["ARO%3A3000901","TEM-31"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000902","l":"TEM-32","na":1,"nb":1,"a":[["ARO%3A3000902","TEM-32"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000903","l":"TEM-33","na":1,"nb":1,"a":[["ARO%3A3000903","TEM-33"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000904","l":"TEM-34","na":1,"nb":1,"a":[["ARO%3A3000904","TEM-34"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000905","l":"TEM-35","na":1,"nb":1,"a":[["ARO%3A3000905","TEM-35"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000906","l":"TEM-36","na":1,"nb":1,"a":[["ARO%3A3000906","TEM-36"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000907","l":"TEM-37","na":1,"nb":1,"a":[["ARO%3A3000907","TEM-37"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000909","l":"TEM-39","na":1,"nb":1,"a":[["ARO%3A3000909","TEM-39"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000910","l":"TEM-40","na":1,"nb":1,"a":[["ARO%3A3000910","TEM-40"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000911","l":"TEM-42","na":1,"nb":1,"a":[["ARO%3A3000911","TEM-42"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000912","l":"TEM-43","na":1,"nb":1,"a":[["ARO%3A3000912","TEM-43"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000914","l":"TEM-45","na":1,"nb":1,"a":[["ARO%3A3000914","TEM-45"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000916","l":"TEM-47","na":1,"nb":1,"a":[["ARO%3A3000916","TEM-47"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000917","l":"TEM-48","na":1,"nb":1,"a":[["ARO%3A3000917","TEM-48"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000918","l":"TEM-49","na":1,"nb":1,"a":[["ARO%3A3000918","TEM-49"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000921","l":"TEM-52","na":1,"nb":1,"a":[["ARO%3A3000921","TEM-52"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000922","l":"TEM-53","na":1,"nb":1,"a":[["ARO%3A3000922","TEM-53"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000923","l":"TEM-54","na":1,"nb":1,"a":[["ARO%3A3000923","TEM-54"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000924","l":"TEM-55","na":1,"nb":1,"a":[["ARO%3A3000924","TEM-55"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000926","l":"TEM-57","na":1,"nb":1,"a":[["ARO%3A3000926","TEM-57"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000927","l":"TEM-58","na":1,"nb":1,"a":[["ARO%3A3000927","TEM-58"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000928","l":"TEM-59","na":1,"nb":1,"a":[["ARO%3A3000928","TEM-59"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000929","l":"TEM-60","na":1,"nb":1,"a":[["ARO%3A3000929","TEM-60"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000931","l":"TEM-63","na":1,"nb":1,"a":[["ARO%3A3000931","TEM-63"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000934","l":"TEM-67","na":1,"nb":1,"a":[["ARO%3A3000934","TEM-67"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000935","l":"TEM-68","na":1,"nb":1,"a":[["ARO%3A3000935","TEM-68"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000936","l":"TEM-70","na":1,"nb":1,"a":[["ARO%3A3000936","TEM-70"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000937","l":"TEM-71","na":1,"nb":1,"a":[["ARO%3A3000937","TEM-71"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000938","l":"TEM-72","na":1,"nb":1,"a":[["ARO%3A3000938","TEM-72"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000939","l":"TEM-73","na":1,"nb":1,"a":[["ARO%3A3000939","TEM-73"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000941","l":"TEM-75","na":1,"nb":1,"a":[["ARO%3A3000941","TEM-75"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000942","l":"TEM-76","na":1,"nb":1,"a":[["ARO%3A3000942","TEM-76"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000944","l":"TEM-78","na":1,"nb":1,"a":[["ARO%3A3000944","TEM-78"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000946","l":"TEM-79","na":1,"nb":1,"a":[["ARO%3A3000946","TEM-79"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000947","l":"TEM-80","na":1,"nb":1,"a":[["ARO%3A3000947","TEM-80"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000948","l":"TEM-81","na":1,"nb":1,"a":[["ARO%3A3000948","TEM-81"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000949","l":"TEM-82","na":1,"nb":1,"a":[["ARO%3A3000949","TEM-82"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000950","l":"TEM-83","na":1,"nb":1,"a":[["ARO%3A3000950","TEM-83"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000951","l":"TEM-84","na":1,"nb":1,"a":[["ARO%3A3000951","TEM-84"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000952","l":"TEM-85","na":1,"nb":1,"a":[["ARO%3A3000952","TEM-85"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000953","l":"TEM-86","na":1,"nb":1,"a":[["ARO%3A3000953","TEM-86"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000954","l":"TEM-87","na":1,"nb":1,"a":[["ARO%3A3000954","TEM-87"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000955","l":"TEM-88","na":1,"nb":1,"a":[["ARO%3A3000955","TEM-88"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000956","l":"TEM-89","na":1,"nb":1,"a":[["ARO%3A3000956","TEM-89"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000957","l":"TEM-90","na":1,"nb":1,"a":[["ARO%3A3000957","TEM-90"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000958","l":"TEM-91","na":1,"nb":1,"a":[["ARO%3A3000958","TEM-91"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000959","l":"TEM-92","na":1,"nb":1,"a":[["ARO%3A3000959","TEM-92"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000960","l":"TEM-93","na":1,"nb":1,"a":[["ARO%3A3000960","TEM-93"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000961","l":"TEM-94","na":1,"nb":1,"a":[["ARO%3A3000961","TEM-94"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000962","l":"TEM-95","na":1,"nb":1,"a":[["ARO%3A3000962","TEM-95"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000963","l":"TEM-96","na":1,"nb":1,"a":[["ARO%3A3000963","TEM-96"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000964","l":"TEM-101","na":1,"nb":1,"a":[["ARO%3A3000964","TEM-101"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000965","l":"TEM-102","na":1,"nb":1,"a":[["ARO%3A3000965","TEM-102"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000967","l":"TEM-104","na":1,"nb":1,"a":[["ARO%3A3000967","TEM-104"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000968","l":"TEM-105","na":1,"nb":1,"a":[["ARO%3A3000968","TEM-105"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000969","l":"TEM-106","na":1,"nb":1,"a":[["ARO%3A3000969","TEM-106"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000970","l":"TEM-107","na":1,"nb":1,"a":[["ARO%3A3000970","TEM-107"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000971","l":"TEM-108","na":1,"nb":1,"a":[["ARO%3A3000971","TEM-108"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000972","l":"TEM-109","na":1,"nb":1,"a":[["ARO%3A3000972","TEM-109"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000973","l":"TEM-110","na":1,"nb":1,"a":[["ARO%3A3000973","TEM-110"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000974","l":"TEM-111","na":1,"nb":1,"a":[["ARO%3A3000974","TEM-111"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000975","l":"TEM-112","na":1,"nb":1,"a":[["ARO%3A3000975","TEM-112"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000976","l":"TEM-113","na":1,"nb":1,"a":[["ARO%3A3000976","TEM-113"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000977","l":"TEM-114","na":1,"nb":1,"a":[["ARO%3A3000977","TEM-114"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000978","l":"TEM-115","na":1,"nb":1,"a":[["ARO%3A3000978","TEM-115"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000979","l":"TEM-116","na":1,"nb":1,"a":[["ARO%3A3000979","TEM-116"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000980","l":"TEM-117","na":1,"nb":1,"a":[["ARO%3A3000980","TEM-117"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000981","l":"TEM-118","na":1,"nb":1,"a":[["ARO%3A3000981","TEM-118"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000982","l":"TEM-120","na":1,"nb":1,"a":[["ARO%3A3000982","TEM-120"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000983","l":"TEM-121","na":1,"nb":1,"a":[["ARO%3A3000983","TEM-121"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000984","l":"TEM-122","na":1,"nb":1,"a":[["ARO%3A3000984","TEM-122"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000985","l":"TEM-123","na":1,"nb":1,"a":[["ARO%3A3000985","TEM-123"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000986","l":"TEM-124","na":1,"nb":1,"a":[["ARO%3A3000986","TEM-124"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000987","l":"TEM-125","na":1,"nb":1,"a":[["ARO%3A3000987","TEM-125"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000988","l":"TEM-126","na":1,"nb":1,"a":[["ARO%3A3000988","TEM-126"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000989","l":"TEM-127","na":1,"nb":1,"a":[["ARO%3A3000989","TEM-127"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000990","l":"TEM-128","na":1,"nb":1,"a":[["ARO%3A3000990","TEM-128"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000993","l":"TEM-129","na":1,"nb":1,"a":[["ARO%3A3000993","TEM-129"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000994","l":"TEM-130","na":1,"nb":1,"a":[["ARO%3A3000994","TEM-130"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000995","l":"TEM-131","na":1,"nb":1,"a":[["ARO%3A3000995","TEM-131"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000996","l":"TEM-132","na":1,"nb":1,"a":[["ARO%3A3000996","TEM-132"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000997","l":"TEM-133","na":1,"nb":1,"a":[["ARO%3A3000997","TEM-133"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000998","l":"TEM-134","na":1,"nb":1,"a":[["ARO%3A3000998","TEM-134"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001000","l":"TEM-136","na":1,"nb":1,"a":[["ARO%3A3001000","TEM-136"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001001","l":"TEM-137","na":1,"nb":1,"a":[["ARO%3A3001001","TEM-137"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001002","l":"TEM-138","na":1,"nb":1,"a":[["ARO%3A3001002","TEM-138"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001003","l":"TEM-139","na":1,"nb":1,"a":[["ARO%3A3001003","TEM-139"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001004","l":"TEM-141","na":1,"nb":1,"a":[["ARO%3A3001004","TEM-141"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001005","l":"TEM-142","na":1,"nb":1,"a":[["ARO%3A3001005","TEM-142"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001006","l":"TEM-143","na":1,"nb":1,"a":[["ARO%3A3001006","TEM-143"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001007","l":"TEM-144","na":1,"nb":1,"a":[["ARO%3A3001007","TEM-144"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001012","l":"TEM-145","na":1,"nb":1,"a":[["ARO%3A3001012","TEM-145"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001013","l":"TEM-146","na":1,"nb":1,"a":[["ARO%3A3001013","TEM-146"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001014","l":"TEM-147","na":1,"nb":1,"a":[["ARO%3A3001014","TEM-147"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001015","l":"TEM-148","na":1,"nb":1,"a":[["ARO%3A3001015","TEM-148"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001016","l":"TEM-149","na":1,"nb":1,"a":[["ARO%3A3001016","TEM-149"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001017","l":"TEM-150","na":1,"nb":1,"a":[["ARO%3A3001017","TEM-150"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001018","l":"TEM-151","na":1,"nb":1,"a":[["ARO%3A3001018","TEM-151"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001019","l":"TEM-152","na":1,"nb":1,"a":[["ARO%3A3001019","TEM-152"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001020","l":"TEM-154","na":1,"nb":1,"a":[["ARO%3A3001020","TEM-154"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001021","l":"TEM-155","na":1,"nb":1,"a":[["ARO%3A3001021","TEM-155"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001022","l":"TEM-156","na":1,"nb":1,"a":[["ARO%3A3001022","TEM-156"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001023","l":"TEM-157","na":1,"nb":1,"a":[["ARO%3A3001023","TEM-157"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001024","l":"TEM-158","na":1,"nb":1,"a":[["ARO%3A3001024","TEM-158"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001025","l":"TEM-159","na":1,"nb":1,"a":[["ARO%3A3001025","TEM-159"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001026","l":"TEM-160","na":1,"nb":1,"a":[["ARO%3A3001026","TEM-160"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001028","l":"TEM-162","na":1,"nb":1,"a":[["ARO%3A3001028","TEM-162"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001029","l":"TEM-163","na":1,"nb":1,"a":[["ARO%3A3001029","TEM-163"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001030","l":"TEM-164","na":1,"nb":1,"a":[["ARO%3A3001030","TEM-164"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001032","l":"TEM-166","na":1,"nb":1,"a":[["ARO%3A3001032","TEM-166"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001033","l":"TEM-167","na":1,"nb":1,"a":[["ARO%3A3001033","TEM-167"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001034","l":"TEM-168","na":1,"nb":1,"a":[["ARO%3A3001034","TEM-168"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001035","l":"TEM-169","na":1,"nb":1,"a":[["ARO%3A3001035","TEM-169"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001037","l":"TEM-171","na":1,"nb":1,"a":[["ARO%3A3001037","TEM-171"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001041","l":"TEM-176","na":1,"nb":1,"a":[["ARO%3A3001041","TEM-176"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001042","l":"TEM-177","na":1,"nb":1,"a":[["ARO%3A3001042","TEM-177"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001043","l":"TEM-178","na":1,"nb":1,"a":[["ARO%3A3001043","TEM-178"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001044","l":"TEM-181","na":1,"nb":1,"a":[["ARO%3A3001044","TEM-181"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001045","l":"TEM-183","na":1,"nb":1,"a":[["ARO%3A3001045","TEM-183"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001046","l":"TEM-186","na":1,"nb":1,"a":[["ARO%3A3001046","TEM-186"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001047","l":"TEM-187","na":1,"nb":1,"a":[["ARO%3A3001047","TEM-187"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001048","l":"TEM-188","na":1,"nb":1,"a":[["ARO%3A3001048","TEM-188"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001049","l":"TEM-189","na":1,"nb":1,"a":[["ARO%3A3001049","TEM-189"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001050","l":"TEM-190","na":1,"nb":1,"a":[["ARO%3A3001050","TEM-190"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001051","l":"TEM-191","na":1,"nb":1,"a":[["ARO%3A3001051","TEM-191"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001052","l":"TEM-192","na":1,"nb":1,"a":[["ARO%3A3001052","TEM-192"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001053","l":"TEM-193","na":1,"nb":1,"a":[["ARO%3A3001053","TEM-193"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001054","l":"TEM-194","na":1,"nb":1,"a":[["ARO%3A3001054","TEM-194"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001055","l":"TEM-195","na":1,"nb":1,"a":[["ARO%3A3001055","TEM-195"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001056","l":"TEM-197","na":1,"nb":1,"a":[["ARO%3A3001056","TEM-197"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001057","l":"TEM-198","na":1,"nb":1,"a":[["ARO%3A3001057","TEM-198"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001058","l":"TEM-199","na":1,"nb":1,"a":[["ARO%3A3001058","TEM-199"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001059","l":"SHV-1","na":1,"nb":1,"a":[["ARO%3A3001059","SHV-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"]]},{"id":"ARO:3001209","l":"mecC","na":1,"nb":1,"a":[["ARO%3A3001209","mecC"]],"b":[["antibacterial/methicillin.html","methicillin"]]},{"id":"ARO:3001299","l":"tlrB conferring tylosin resistance","na":1,"nb":1,"a":[["ARO%3A3001299","tlrB conferring tylosin resistance"]],"b":[["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3001305","l":"ErmU","na":1,"nb":1,"a":[["ARO%3A3001305","ErmU"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3001313","l":"facT","na":1,"nb":1,"a":[["ARO%3A3001313","facT"]],"b":[["antibacterial/factumycin.html","factumycin"]]},{"id":"ARO:3001327","l":"MdtK","na":1,"nb":1,"a":[["ARO%3A3001327","MdtK"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3001329","l":"mdtG","na":1,"nb":1,"a":[["ARO%3A3001329","mdtG"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3001369","l":"TEM-153","na":1,"nb":1,"a":[["ARO%3A3001369","TEM-153"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001373","l":"TEM-182","na":1,"nb":1,"a":[["ARO%3A3001373","TEM-182"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001374","l":"TEM-185","na":1,"nb":1,"a":[["ARO%3A3001374","TEM-185"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001375","l":"TEM-184","na":1,"nb":1,"a":[["ARO%3A3001375","TEM-184"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001376","l":"TEM-196","na":1,"nb":1,"a":[["ARO%3A3001376","TEM-196"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001378","l":"TEM-201","na":1,"nb":1,"a":[["ARO%3A3001378","TEM-201"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001382","l":"TEM-205","na":1,"nb":1,"a":[["ARO%3A3001382","TEM-205"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001383","l":"TEM-206","na":1,"nb":1,"a":[["ARO%3A3001383","TEM-206"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001384","l":"TEM-207","na":1,"nb":1,"a":[["ARO%3A3001384","TEM-207"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001385","l":"TEM-208","na":1,"nb":1,"a":[["ARO%3A3001385","TEM-208"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001386","l":"TEM-209","na":1,"nb":1,"a":[["ARO%3A3001386","TEM-209"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001387","l":"TEM-210","na":1,"nb":1,"a":[["ARO%3A3001387","TEM-210"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001388","l":"TEM-211","na":1,"nb":1,"a":[["ARO%3A3001388","TEM-211"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001389","l":"TEM-212","na":1,"nb":1,"a":[["ARO%3A3001389","TEM-212"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001390","l":"TEM-213","na":1,"nb":1,"a":[["ARO%3A3001390","TEM-213"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001391","l":"TEM-214","na":1,"nb":1,"a":[["ARO%3A3001391","TEM-214"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001392","l":"TEM-215","na":1,"nb":1,"a":[["ARO%3A3001392","TEM-215"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001393","l":"TEM-216","na":1,"nb":1,"a":[["ARO%3A3001393","TEM-216"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001394","l":"TEM-217","na":1,"nb":1,"a":[["ARO%3A3001394","TEM-217"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001419","l":"OXA-24","na":1,"nb":1,"a":[["ARO%3A3001419","OXA-24"]],"b":[["antibacterial/bal30072.html","BAL30072"]]},{"id":"ARO:3001612","l":"OXA-51","na":1,"nb":1,"a":[["ARO%3A3001612","OXA-51"]],"b":[["antibacterial/bal30072.html","BAL30072"]]},{"id":"ARO:3001782","l":"OXA-48","na":1,"nb":1,"a":[["ARO%3A3001782","OXA-48"]],"b":[["antibacterial/temocillin.html","temocillin"]]},{"id":"ARO:3001817","l":"ACC-3","na":1,"nb":1,"a":[["ARO%3A3001817","ACC-3"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001819","l":"ACC-5","na":1,"nb":1,"a":[["ARO%3A3001819","ACC-5"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002355","l":"NDM-4","na":1,"nb":1,"a":[["ARO%3A3002355","NDM-4"]],"b":[["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3002508","l":"PDC-9","na":1,"nb":1,"a":[["ARO%3A3002508","PDC-9"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002509","l":"PDC-10","na":1,"nb":1,"a":[["ARO%3A3002509","PDC-10"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002522","l":"novA","na":1,"nb":1,"a":[["ARO%3A3002522","novA"]],"b":[["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3002538","l":"AAC(3)-IIIc","na":1,"nb":1,"a":[["ARO%3A3002538","AAC(3)-IIIc"]],"b":[["antibacterial/gentamycin-a.html","gentamycin A"]]},{"id":"ARO:3002541","l":"AAC(3)-VIIa","na":1,"nb":1,"a":[["ARO%3A3002541","AAC(3)-VIIa"]],"b":[["antibacterial/paromomycin.html","paromomycin"]]},{"id":"ARO:3002542","l":"AAC(3)-VIIIa","na":1,"nb":1,"a":[["ARO%3A3002542","AAC(3)-VIIIa"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3002543","l":"AAC(3)-IXa","na":1,"nb":1,"a":[["ARO%3A3002543","AAC(3)-IXa"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3002544","l":"AAC(3)-Xa","na":1,"nb":1,"a":[["ARO%3A3002544","AAC(3)-Xa"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3002599","l":"","na":1,"nb":1,"a":[["ARO%3A3002599","AAC(6')-30/AAC(6')-Ib' bifunctional protein"]],"b":[["antibacterial/gentamycin-a.html","gentamycin A"]]},{"id":"ARO:3002626","l":"ANT(6)-Ia","na":1,"nb":1,"a":[["ARO%3A3002626","ANT(6)-Ia"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002627","l":"aadK","na":1,"nb":1,"a":[["ARO%3A3002627","aadK"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002628","l":"aad(6)","na":1,"nb":1,"a":[["ARO%3A3002628","aad(6)"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002629","l":"ANT(6)-Ib","na":1,"nb":1,"a":[["ARO%3A3002629","ANT(6)-Ib"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002630","l":"ANT(9)-Ia","na":1,"nb":1,"a":[["ARO%3A3002630","ANT(9)-Ia"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3002631","l":"spd","na":1,"nb":1,"a":[["ARO%3A3002631","spd"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3002635","l":"","na":1,"nb":1,"a":[["ARO%3A3002635","APH(2')-IIa"]],"b":[["antibacterial/plazomicin.html","plazomicin"]]},{"id":"ARO:3002638","l":"","na":1,"nb":1,"a":[["ARO%3A3002638","APH(3')-Ia"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002639","l":"","na":1,"nb":1,"a":[["ARO%3A3002639","APH(3')-Ib"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002640","l":"","na":1,"nb":1,"a":[["ARO%3A3002640","APH(3')-Ic"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002655","l":"APH(4)-Ia","na":1,"nb":1,"a":[["ARO%3A3002655","APH(4)-Ia"]],"b":[["antibacterial/hygromycin-b.html","hygromycin B"]]},{"id":"ARO:3002656","l":"APH(4)-Ib","na":1,"nb":1,"a":[["ARO%3A3002656","APH(4)-Ib"]],"b":[["antibacterial/hygromycin-b.html","hygromycin B"]]},{"id":"ARO:3002657","l":"APH(6)-Ia","na":1,"nb":1,"a":[["ARO%3A3002657","APH(6)-Ia"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002658","l":"APH(6)-Ib","na":1,"nb":1,"a":[["ARO%3A3002658","APH(6)-Ib"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002659","l":"APH(6)-Ic","na":1,"nb":1,"a":[["ARO%3A3002659","APH(6)-Ic"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002660","l":"APH(6)-Id","na":1,"nb":1,"a":[["ARO%3A3002660","APH(6)-Id"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002661","l":"","na":1,"nb":1,"a":[["ARO%3A3002661","APH(7')-Ia"]],"b":[["antibacterial/hygromycin-b.html","hygromycin B"]]},{"id":"ARO:3002662","l":"APH(9)-Ia","na":1,"nb":1,"a":[["ARO%3A3002662","APH(9)-Ia"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3002663","l":"APH(9)-Ib","na":1,"nb":1,"a":[["ARO%3A3002663","APH(9)-Ib"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3002670","l":"cat","na":1,"nb":1,"a":[["ARO%3A3002670","cat"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002690","l":"Streptomyces lividans cmlR","na":1,"nb":1,"a":[["ARO%3A3002690","Streptomyces lividans cmlR"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002691","l":"Salmonella enterica cmlA","na":1,"nb":1,"a":[["ARO%3A3002691","Salmonella enterica cmlA"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002693","l":"cmlA1","na":1,"nb":1,"a":[["ARO%3A3002693","cmlA1"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002694","l":"cmlA4","na":1,"nb":1,"a":[["ARO%3A3002694","cmlA4"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002695","l":"cmlA5","na":1,"nb":1,"a":[["ARO%3A3002695","cmlA5"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002696","l":"cmlA6","na":1,"nb":1,"a":[["ARO%3A3002696","cmlA6"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002698","l":"cmlB","na":1,"nb":1,"a":[["ARO%3A3002698","cmlB"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002699","l":"cmlB1","na":1,"nb":1,"a":[["ARO%3A3002699","cmlB1"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002700","l":"cmlv","na":1,"nb":1,"a":[["ARO%3A3002700","cmlv"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002701","l":"Rhodococcus fascians cmr","na":1,"nb":1,"a":[["ARO%3A3002701","Rhodococcus fascians cmr"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002702","l":"cmrA","na":1,"nb":1,"a":[["ARO%3A3002702","cmrA"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002703","l":"cmx","na":1,"nb":1,"a":[["ARO%3A3002703","cmx"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002707","l":"QnrA1","na":1,"nb":1,"a":[["ARO%3A3002707","QnrA1"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002708","l":"QnrA2","na":1,"nb":1,"a":[["ARO%3A3002708","QnrA2"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002709","l":"QnrA3","na":1,"nb":1,"a":[["ARO%3A3002709","QnrA3"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002710","l":"QnrA4","na":1,"nb":1,"a":[["ARO%3A3002710","QnrA4"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002711","l":"QnrA5","na":1,"nb":1,"a":[["ARO%3A3002711","QnrA5"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002712","l":"QnrA6","na":1,"nb":1,"a":[["ARO%3A3002712","QnrA6"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002713","l":"QnrA7","na":1,"nb":1,"a":[["ARO%3A3002713","QnrA7"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002714","l":"QnrB1","na":1,"nb":1,"a":[["ARO%3A3002714","QnrB1"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002715","l":"QnrB2","na":1,"nb":1,"a":[["ARO%3A3002715","QnrB2"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002716","l":"QnrB3","na":1,"nb":1,"a":[["ARO%3A3002716","QnrB3"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002718","l":"QnrB4","na":1,"nb":1,"a":[["ARO%3A3002718","QnrB4"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002719","l":"QnrB5","na":1,"nb":1,"a":[["ARO%3A3002719","QnrB5"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002720","l":"QnrB6","na":1,"nb":1,"a":[["ARO%3A3002720","QnrB6"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002721","l":"QnrB7","na":1,"nb":1,"a":[["ARO%3A3002721","QnrB7"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002722","l":"QnrB8","na":1,"nb":1,"a":[["ARO%3A3002722","QnrB8"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002723","l":"QnrB9","na":1,"nb":1,"a":[["ARO%3A3002723","QnrB9"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002724","l":"QnrB10","na":1,"nb":1,"a":[["ARO%3A3002724","QnrB10"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002725","l":"QnrB11","na":1,"nb":1,"a":[["ARO%3A3002725","QnrB11"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002726","l":"QnrB12","na":1,"nb":1,"a":[["ARO%3A3002726","QnrB12"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002727","l":"QnrB13","na":1,"nb":1,"a":[["ARO%3A3002727","QnrB13"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002728","l":"QnrB14","na":1,"nb":1,"a":[["ARO%3A3002728","QnrB14"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002730","l":"QnrB15","na":1,"nb":1,"a":[["ARO%3A3002730","QnrB15"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002731","l":"QnrB16","na":1,"nb":1,"a":[["ARO%3A3002731","QnrB16"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002732","l":"QnrB17","na":1,"nb":1,"a":[["ARO%3A3002732","QnrB17"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002733","l":"QnrB18","na":1,"nb":1,"a":[["ARO%3A3002733","QnrB18"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002734","l":"QnrB19","na":1,"nb":1,"a":[["ARO%3A3002734","QnrB19"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002735","l":"QnrB20","na":1,"nb":1,"a":[["ARO%3A3002735","QnrB20"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002736","l":"QnrB21","na":1,"nb":1,"a":[["ARO%3A3002736","QnrB21"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002737","l":"QnrB22","na":1,"nb":1,"a":[["ARO%3A3002737","QnrB22"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002738","l":"QnrB23","na":1,"nb":1,"a":[["ARO%3A3002738","QnrB23"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002739","l":"QnrB24","na":1,"nb":1,"a":[["ARO%3A3002739","QnrB24"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002740","l":"QnrB25","na":1,"nb":1,"a":[["ARO%3A3002740","QnrB25"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002741","l":"QnrB26","na":1,"nb":1,"a":[["ARO%3A3002741","QnrB26"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002742","l":"QnrB27","na":1,"nb":1,"a":[["ARO%3A3002742","QnrB27"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002743","l":"QnrB28","na":1,"nb":1,"a":[["ARO%3A3002743","QnrB28"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002744","l":"QnrB29","na":1,"nb":1,"a":[["ARO%3A3002744","QnrB29"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002745","l":"QnrB30","na":1,"nb":1,"a":[["ARO%3A3002745","QnrB30"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002746","l":"QnrB31","na":1,"nb":1,"a":[["ARO%3A3002746","QnrB31"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002747","l":"QnrB32","na":1,"nb":1,"a":[["ARO%3A3002747","QnrB32"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002748","l":"QnrB33","na":1,"nb":1,"a":[["ARO%3A3002748","QnrB33"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002749","l":"QnrB34","na":1,"nb":1,"a":[["ARO%3A3002749","QnrB34"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002750","l":"QnrB35","na":1,"nb":1,"a":[["ARO%3A3002750","QnrB35"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002751","l":"QnrB36","na":1,"nb":1,"a":[["ARO%3A3002751","QnrB36"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002752","l":"QnrB37","na":1,"nb":1,"a":[["ARO%3A3002752","QnrB37"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002753","l":"QnrB38","na":1,"nb":1,"a":[["ARO%3A3002753","QnrB38"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002755","l":"QnrB40","na":1,"nb":1,"a":[["ARO%3A3002755","QnrB40"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002756","l":"QnrB41","na":1,"nb":1,"a":[["ARO%3A3002756","QnrB41"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002757","l":"QnrB42","na":1,"nb":1,"a":[["ARO%3A3002757","QnrB42"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002758","l":"QnrB43","na":1,"nb":1,"a":[["ARO%3A3002758","QnrB43"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002759","l":"QnrB44","na":1,"nb":1,"a":[["ARO%3A3002759","QnrB44"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002760","l":"QnrB45","na":1,"nb":1,"a":[["ARO%3A3002760","QnrB45"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002761","l":"QnrB46","na":1,"nb":1,"a":[["ARO%3A3002761","QnrB46"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002762","l":"QnrB47","na":1,"nb":1,"a":[["ARO%3A3002762","QnrB47"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002763","l":"QnrB48","na":1,"nb":1,"a":[["ARO%3A3002763","QnrB48"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002764","l":"QnrB49","na":1,"nb":1,"a":[["ARO%3A3002764","QnrB49"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002765","l":"QnrB50","na":1,"nb":1,"a":[["ARO%3A3002765","QnrB50"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002767","l":"QnrB54","na":1,"nb":1,"a":[["ARO%3A3002767","QnrB54"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002768","l":"QnrB55","na":1,"nb":1,"a":[["ARO%3A3002768","QnrB55"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002769","l":"QnrB56","na":1,"nb":1,"a":[["ARO%3A3002769","QnrB56"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002770","l":"QnrB57","na":1,"nb":1,"a":[["ARO%3A3002770","QnrB57"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002771","l":"QnrB58","na":1,"nb":1,"a":[["ARO%3A3002771","QnrB58"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002772","l":"QnrB59","na":1,"nb":1,"a":[["ARO%3A3002772","QnrB59"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002773","l":"QnrB60","na":1,"nb":1,"a":[["ARO%3A3002773","QnrB60"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002774","l":"QnrB61","na":1,"nb":1,"a":[["ARO%3A3002774","QnrB61"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002775","l":"QnrB62","na":1,"nb":1,"a":[["ARO%3A3002775","QnrB62"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002776","l":"QnrB64","na":1,"nb":1,"a":[["ARO%3A3002776","QnrB64"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002777","l":"QnrB65","na":1,"nb":1,"a":[["ARO%3A3002777","QnrB65"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002778","l":"QnrB66","na":1,"nb":1,"a":[["ARO%3A3002778","QnrB66"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002779","l":"QnrB67","na":1,"nb":1,"a":[["ARO%3A3002779","QnrB67"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002780","l":"QnrB68","na":1,"nb":1,"a":[["ARO%3A3002780","QnrB68"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002781","l":"QnrB69","na":1,"nb":1,"a":[["ARO%3A3002781","QnrB69"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002782","l":"QnrB70","na":1,"nb":1,"a":[["ARO%3A3002782","QnrB70"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002783","l":"QnrB71","na":1,"nb":1,"a":[["ARO%3A3002783","QnrB71"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002784","l":"QnrB72","na":1,"nb":1,"a":[["ARO%3A3002784","QnrB72"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002785","l":"QnrB73","na":1,"nb":1,"a":[["ARO%3A3002785","QnrB73"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002786","l":"QnrB74","na":1,"nb":1,"a":[["ARO%3A3002786","QnrB74"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002787","l":"QnrC","na":1,"nb":1,"a":[["ARO%3A3002787","QnrC"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002788","l":"QnrD1","na":1,"nb":1,"a":[["ARO%3A3002788","QnrD1"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002789","l":"QnrD2","na":1,"nb":1,"a":[["ARO%3A3002789","QnrD2"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002790","l":"QnrS1","na":1,"nb":1,"a":[["ARO%3A3002790","QnrS1"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002791","l":"QnrS2","na":1,"nb":1,"a":[["ARO%3A3002791","QnrS2"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002792","l":"QnrS3","na":1,"nb":1,"a":[["ARO%3A3002792","QnrS3"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002793","l":"QnrS4","na":1,"nb":1,"a":[["ARO%3A3002793","QnrS4"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002794","l":"QnrS5","na":1,"nb":1,"a":[["ARO%3A3002794","QnrS5"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002795","l":"QnrS6","na":1,"nb":1,"a":[["ARO%3A3002795","QnrS6"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002796","l":"QnrS7","na":1,"nb":1,"a":[["ARO%3A3002796","QnrS7"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002797","l":"QnrS8","na":1,"nb":1,"a":[["ARO%3A3002797","QnrS8"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002798","l":"QnrS9","na":1,"nb":1,"a":[["ARO%3A3002798","QnrS9"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002799","l":"QnrVC1","na":1,"nb":1,"a":[["ARO%3A3002799","QnrVC1"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002800","l":"QnrVC3","na":1,"nb":1,"a":[["ARO%3A3002800","QnrVC3"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002801","l":"QnrVC4","na":1,"nb":1,"a":[["ARO%3A3002801","QnrVC4"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002802","l":"QnrVC5","na":1,"nb":1,"a":[["ARO%3A3002802","QnrVC5"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002803","l":"QnrVC6","na":1,"nb":1,"a":[["ARO%3A3002803","QnrVC6"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002804","l":"FosA2","na":1,"nb":1,"a":[["ARO%3A3002804","FosA2"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3002817","l":"carA","na":1,"nb":1,"a":[["ARO%3A3002817","carA"]],"b":[["antibacterial/carbomycin.html","carbomycin"]]},{"id":"ARO:3002826","l":"EreA2","na":1,"nb":1,"a":[["ARO%3A3002826","EreA2"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3002828","l":"srmB","na":1,"nb":1,"a":[["ARO%3A3002828","srmB"]],"b":[["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3002832","l":"vgaD","na":1,"nb":1,"a":[["ARO%3A3002832","vgaD"]],"b":[["antibacterial/dalfopristin.html","dalfopristin"]]},{"id":"ARO:3002837","l":"lnuC","na":1,"nb":1,"a":[["ARO%3A3002837","lnuC"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002840","l":"vatA","na":1,"nb":1,"a":[["ARO%3A3002840","vatA"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002841","l":"vatB","na":1,"nb":1,"a":[["ARO%3A3002841","vatB"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002842","l":"vatC","na":1,"nb":1,"a":[["ARO%3A3002842","vatC"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002843","l":"vatD","na":1,"nb":1,"a":[["ARO%3A3002843","vatD"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002844","l":"vatE","na":1,"nb":1,"a":[["ARO%3A3002844","vatE"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002845","l":"vatH","na":1,"nb":1,"a":[["ARO%3A3002845","vatH"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002846","l":"arr-1","na":1,"nb":1,"a":[["ARO%3A3002846","arr-1"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3002847","l":"arr-2","na":1,"nb":1,"a":[["ARO%3A3002847","arr-2"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3002848","l":"arr-3","na":1,"nb":1,"a":[["ARO%3A3002848","arr-3"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3002849","l":"arr-4","na":1,"nb":1,"a":[["ARO%3A3002849","arr-4"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3002850","l":"arr-5","na":1,"nb":1,"a":[["ARO%3A3002850","arr-5"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3002852","l":"arr-7","na":1,"nb":1,"a":[["ARO%3A3002852","arr-7"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3002853","l":"arr-8","na":1,"nb":1,"a":[["ARO%3A3002853","arr-8"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3002854","l":"dfrA1","na":1,"nb":1,"a":[["ARO%3A3002854","dfrA1"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002856","l":"dfrA24","na":1,"nb":1,"a":[["ARO%3A3002856","dfrA24"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002857","l":"dfrA26","na":1,"nb":1,"a":[["ARO%3A3002857","dfrA26"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002858","l":"dfrA12","na":1,"nb":1,"a":[["ARO%3A3002858","dfrA12"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002859","l":"dfrA14","na":1,"nb":1,"a":[["ARO%3A3002859","dfrA14"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002860","l":"dfrA17","na":1,"nb":1,"a":[["ARO%3A3002860","dfrA17"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002861","l":"dfrA5","na":1,"nb":1,"a":[["ARO%3A3002861","dfrA5"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002862","l":"dfrA7","na":1,"nb":1,"a":[["ARO%3A3002862","dfrA7"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002863","l":"dfrA8","na":1,"nb":1,"a":[["ARO%3A3002863","dfrA8"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002864","l":"dfrB1","na":1,"nb":1,"a":[["ARO%3A3002864","dfrB1"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002865","l":"dfrC","na":1,"nb":1,"a":[["ARO%3A3002865","dfrC"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002866","l":"dfrD","na":1,"nb":1,"a":[["ARO%3A3002866","dfrD"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002867","l":"dfrF","na":1,"nb":1,"a":[["ARO%3A3002867","dfrF"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002868","l":"dfrG","na":1,"nb":1,"a":[["ARO%3A3002868","dfrG"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002869","l":"dfrK","na":1,"nb":1,"a":[["ARO%3A3002869","dfrK"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002870","l":"tet(34)","na":1,"nb":1,"a":[["ARO%3A3002870","tet(34)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3002871","l":"tet(37)","na":1,"nb":1,"a":[["ARO%3A3002871","tet(37)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3002872","l":"FosA3","na":1,"nb":1,"a":[["ARO%3A3002872","FosA3"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3002873","l":"FosB3","na":1,"nb":1,"a":[["ARO%3A3002873","FosB3"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3002874","l":"FosC2","na":1,"nb":1,"a":[["ARO%3A3002874","FosC2"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3002875","l":"dfrE","na":1,"nb":1,"a":[["ARO%3A3002875","dfrE"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002879","l":"linG","na":1,"nb":1,"a":[["ARO%3A3002879","linG"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002891","l":"Streptomyces rimosus otr(A)","na":1,"nb":1,"a":[["ARO%3A3002891","Streptomyces rimosus otr(A)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"]]},{"id":"ARO:3002892","l":"otr(B)","na":1,"nb":1,"a":[["ARO%3A3002892","otr(B)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3002893","l":"tcr3","na":1,"nb":1,"a":[["ARO%3A3002893","tcr3"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3002894","l":"otr(C)","na":1,"nb":1,"a":[["ARO%3A3002894","otr(C)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3002895","l":"SAT-2","na":1,"nb":1,"a":[["ARO%3A3002895","SAT-2"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"]]},{"id":"ARO:3002897","l":"SAT-4","na":1,"nb":1,"a":[["ARO%3A3002897","SAT-4"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"]]},{"id":"ARO:3002898","l":"SAT-3","na":1,"nb":1,"a":[["ARO%3A3002898","SAT-3"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"]]},{"id":"ARO:3002914","l":"vanJ","na":1,"nb":1,"a":[["ARO%3A3002914","vanJ"]],"b":[["antibacterial/teicoplanin.html","teicoplanin"]]},{"id":"ARO:3002917","l":"glycopeptide resistance gene cluster VanN","na":1,"nb":1,"a":[["ARO%3A3002917","glycopeptide resistance gene cluster VanN"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3002918","l":"glycopeptide resistance gene cluster VanO","na":1,"nb":1,"a":[["ARO%3A3002918","glycopeptide resistance gene cluster VanO"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3002999","l":"CblA-1","na":1,"nb":1,"a":[["ARO%3A3002999","CblA-1"]],"b":[["antibacterial/cefaloridine.html","cefaloridine"]]},{"id":"ARO:3003006","l":"blt","na":1,"nb":1,"a":[["ARO%3A3003006","blt"]],"b":[["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3003011","l":"dfrA10","na":1,"nb":1,"a":[["ARO%3A3003011","dfrA10"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003012","l":"dfrA13","na":1,"nb":1,"a":[["ARO%3A3003012","dfrA13"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003013","l":"dfrA15","na":1,"nb":1,"a":[["ARO%3A3003013","dfrA15"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003014","l":"dfrA16","na":1,"nb":1,"a":[["ARO%3A3003014","dfrA16"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003015","l":"dfrA19","na":1,"nb":1,"a":[["ARO%3A3003015","dfrA19"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003016","l":"dfrA20","na":1,"nb":1,"a":[["ARO%3A3003016","dfrA20"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003017","l":"dfrA21","na":1,"nb":1,"a":[["ARO%3A3003017","dfrA21"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003018","l":"dfrA22","na":1,"nb":1,"a":[["ARO%3A3003018","dfrA22"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003019","l":"dfrA23","na":1,"nb":1,"a":[["ARO%3A3003019","dfrA23"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003020","l":"dfrA25","na":1,"nb":1,"a":[["ARO%3A3003020","dfrA25"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003021","l":"dfrB2","na":1,"nb":1,"a":[["ARO%3A3003021","dfrB2"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003022","l":"dfrB3","na":1,"nb":1,"a":[["ARO%3A3003022","dfrB3"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003023","l":"dfrB6","na":1,"nb":1,"a":[["ARO%3A3003023","dfrB6"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003026","l":"fusH","na":1,"nb":1,"a":[["ARO%3A3003026","fusH"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3003036","l":"oleB","na":1,"nb":1,"a":[["ARO%3A3003036","oleB"]],"b":[["antibacterial/oleandomycin.html","oleandomycin"]]},{"id":"ARO:3003041","l":"Streptococcus pneumoniae PBP1a conferring resistance to amoxicillin","na":1,"nb":1,"a":[["ARO%3A3003041","Streptococcus pneumoniae PBP1a conferring resistance to amoxicillin"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3003042","l":"Streptococcus pneumoniae PBP2b conferring resistance to amoxicillin","na":1,"nb":1,"a":[["ARO%3A3003042","Streptococcus pneumoniae PBP2b conferring resistance to amoxicillin"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3003043","l":"Streptococcus pneumoniae PBP2x conferring resistance to amoxicillin","na":1,"nb":1,"a":[["ARO%3A3003043","Streptococcus pneumoniae PBP2x conferring resistance to amoxicillin"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3003059","l":"tmrB","na":1,"nb":1,"a":[["ARO%3A3003059","tmrB"]],"b":[["antibacterial/tunicamycin.html","tunicamycin"]]},{"id":"ARO:3003060","l":"tsnR","na":1,"nb":1,"a":[["ARO%3A3003060","tsnR"]],"b":[["antibacterial/thiostrepton.html","thiostrepton"]]},{"id":"ARO:3003061","l":"vph","na":1,"nb":1,"a":[["ARO%3A3003061","vph"]],"b":[["antimycobacterial/viomycin.html","viomycin"]]},{"id":"ARO:3003074","l":"Staphylococcus aureus cls conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003074","Staphylococcus aureus cls conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003077","l":"Enterococcus faecalis liaF mutant conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003077","Enterococcus faecalis liaF mutant conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003078","l":"Enterococcus faecium liaR mutant conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003078","Enterococcus faecium liaR mutant conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003079","l":"Enterococcus faecium liaS mutant conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003079","Enterococcus faecium liaS mutant conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003092","l":"Enterococcus faecium cls conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003092","Enterococcus faecium cls conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003105","l":"dfrA3","na":1,"nb":1,"a":[["ARO%3A3003105","dfrA3"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003109","l":"msrE","na":1,"nb":1,"a":[["ARO%3A3003109","msrE"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003157","l":"TEM-219","na":1,"nb":1,"a":[["ARO%3A3003157","TEM-219"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3003158","l":"TEM-220","na":1,"nb":1,"a":[["ARO%3A3003158","TEM-220"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3003193","l":"QnrVC7","na":1,"nb":1,"a":[["ARO%3A3003193","QnrVC7"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003196","l":"tet(45)","na":1,"nb":1,"a":[["ARO%3A3003196","tet(45)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003207","l":"FosK","na":1,"nb":1,"a":[["ARO%3A3003207","FosK"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003208","l":"FosXCC","na":1,"nb":1,"a":[["ARO%3A3003208","FosXCC"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003210","l":"FosA4","na":1,"nb":1,"a":[["ARO%3A3003210","FosA4"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003236","l":"Mycobacteroides abscessus 16S rRNA mutation conferring resistance to kanamycin","na":1,"nb":1,"a":[["ARO%3A3003236","Mycobacteroides abscessus 16S rRNA mutation conferring resistance to kanamycin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003237","l":"Mycobacteroides abscessus 16S rRNA mutation conferring resistance to tobramycin","na":1,"nb":1,"a":[["ARO%3A3003237","Mycobacteroides abscessus 16S rRNA mutation conferring resistance to tobramycin"]],"b":[["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3003238","l":"Mycobacteroides abscessus 16S rRNA mutation conferring resistance to neomycin","na":1,"nb":1,"a":[["ARO%3A3003238","Mycobacteroides abscessus 16S rRNA mutation conferring resistance to neomycin"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3003239","l":"Mycobacteroides abscessus 16S rRNA mutation conferring resistance to amikacin","na":1,"nb":1,"a":[["ARO%3A3003239","Mycobacteroides abscessus 16S rRNA mutation conferring resistance to amikacin"]],"b":[["antibacterial/amikacin.html","amikacin"]]},{"id":"ARO:3003240","l":"Mycobacteroides abscessus 16S rRNA mutation conferring resistance to gentamicin","na":1,"nb":1,"a":[["ARO%3A3003240","Mycobacteroides abscessus 16S rRNA mutation conferring resistance to gentamicin"]],"b":[["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3003287","l":"Staphylococcus aureus rpoB mutants conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003287","Staphylococcus aureus rpoB mutants conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003291","l":"Staphylococcus aureus rpoC conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003291","Staphylococcus aureus rpoC conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003319","l":"Staphylococcus aureus mprF with mutation conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003319","Staphylococcus aureus mprF with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003323","l":"Staphylococcus aureus pgsA mutations conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003323","Staphylococcus aureus pgsA mutations conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003324","l":"Bacillus subtilis mprF","na":1,"nb":1,"a":[["ARO%3A3003324","Bacillus subtilis mprF"]],"b":[["antibacterial/defensin.html","defensin"]]},{"id":"ARO:3003325","l":"Mycobacterium tuberculosis variant bovis embB with mutation conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3003325","Mycobacterium tuberculosis variant bovis embB with mutation conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003326","l":"Mycobacterium tuberculosis embB mutant conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3003326","Mycobacterium tuberculosis embB mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003327","l":"Mycobacterium tuberculosis embC mutant conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3003327","Mycobacterium tuberculosis embC mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003333","l":"Escherichia coli 16S rRNA (rrsC) mutation conferring resistance to kasugamicin","na":1,"nb":1,"a":[["ARO%3A3003333","Escherichia coli 16S rRNA (rrsC) mutation conferring resistance to kasugamicin"]],"b":[["antifungal/kasugamycin.html","kasugamycin"]]},{"id":"ARO:3003357","l":"Clostridioides difficile EF-Tu mutants conferring resistance to elfamycin","na":1,"nb":1,"a":[["ARO%3A3003357","Clostridioides difficile EF-Tu mutants conferring resistance to elfamycin"]],"b":[["antibacterial/lff571.html","LFF571"]]},{"id":"ARO:3003359","l":"Streptomyces cinnamoneus EF-Tu mutants conferring resistance to elfamycin","na":1,"nb":1,"a":[["ARO%3A3003359","Streptomyces cinnamoneus EF-Tu mutants conferring resistance to elfamycin"]],"b":[["antibacterial/kirromycin.html","kirromycin"]]},{"id":"ARO:3003361","l":"Planobispora rosea EF-Tu mutants conferring resistance to inhibitor GE2270A","na":1,"nb":1,"a":[["ARO%3A3003361","Planobispora rosea EF-Tu mutants conferring resistance to inhibitor GE2270A"]],"b":[["antibacterial/ge2270a.html","GE2270A"]]},{"id":"ARO:3003368","l":"Escherichia coli EF-Tu mutants conferring resistance to kirromycin","na":1,"nb":1,"a":[["ARO%3A3003368","Escherichia coli EF-Tu mutants conferring resistance to kirromycin"]],"b":[["antibacterial/kirromycin.html","kirromycin"]]},{"id":"ARO:3003369","l":"Escherichia coli EF-Tu mutants conferring resistance to Pulvomycin","na":1,"nb":1,"a":[["ARO%3A3003369","Escherichia coli EF-Tu mutants conferring resistance to Pulvomycin"]],"b":[["antibacterial/pulvomycin.html","pulvomycin"]]},{"id":"ARO:3003370","l":"Escherichia coli EF-Tu mutants conferring resistance to Enacyloxin IIa","na":1,"nb":1,"a":[["ARO%3A3003370","Escherichia coli EF-Tu mutants conferring resistance to Enacyloxin IIa"]],"b":[["antibacterial/enacyloxin-iia.html","enacyloxin IIa"]]},{"id":"ARO:3003372","l":"Escherichia coli 16S rRNA (rrsH) mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003372","Escherichia coli 16S rRNA (rrsH) mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003373","l":"Klebsiella pneumoniae acrR with mutation conferring multidrug antibiotic resistance","na":1,"nb":1,"a":[["ARO%3A3003373","Klebsiella pneumoniae acrR with mutation conferring multidrug antibiotic resistance"]],"b":[["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:3003376","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003376","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003377","l":"Escherichia coli 16S rRNA (rrnB) mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003377","Escherichia coli 16S rRNA (rrnB) mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003379","l":"Salmonella enterica ramR mutants","na":1,"nb":1,"a":[["ARO%3A3003379","Salmonella enterica ramR mutants"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003380","l":"Klebsiella pneumoniae ramR mutants","na":1,"nb":1,"a":[["ARO%3A3003380","Klebsiella pneumoniae ramR mutants"]],"b":[["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:3003382","l":"Salmonella enterica soxR with mutation conferring antibiotic resistance","na":1,"nb":1,"a":[["ARO%3A3003382","Salmonella enterica soxR with mutation conferring antibiotic resistance"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003383","l":"Salmonella serovars soxS with mutation conferring antibiotic resistance","na":1,"nb":1,"a":[["ARO%3A3003383","Salmonella serovars soxS with mutation conferring antibiotic resistance"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003389","l":"Mycobacterium leprae folP with mutation conferring resistance to dapsone","na":1,"nb":1,"a":[["ARO%3A3003389","Mycobacterium leprae folP with mutation conferring resistance to dapsone"]],"b":[["antimycobacterial/dapsone.html","dapsone"]]},{"id":"ARO:3003390","l":"Escherichia coli ompF with mutation conferring resistance to beta-lactam antibiotics","na":1,"nb":1,"a":[["ARO%3A3003390","Escherichia coli ompF with mutation conferring resistance to beta-lactam antibiotics"]],"b":[["antibacterial/cefepime.html","cefepime"]]},{"id":"ARO:3003392","l":"Mycobacterium tuberculosis katG mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3003392","Mycobacterium tuberculosis katG mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3003393","l":"Mycobacterium tuberculosis inhA mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3003393","Mycobacterium tuberculosis inhA mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3003396","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to gentamicin C","na":1,"nb":1,"a":[["ARO%3A3003396","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to gentamicin C"]],"b":[["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3003397","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to G418","na":1,"nb":1,"a":[["ARO%3A3003397","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to G418"]],"b":[["antibacterial/g418.html","G418"]]},{"id":"ARO:3003399","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to kanamycin A","na":1,"nb":1,"a":[["ARO%3A3003399","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to kanamycin A"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003402","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to neomycin","na":1,"nb":1,"a":[["ARO%3A3003402","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to neomycin"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3003403","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to paromomycin","na":1,"nb":1,"a":[["ARO%3A3003403","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to paromomycin"]],"b":[["antibacterial/paromomycin.html","paromomycin"]]},{"id":"ARO:3003405","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3003405","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003406","l":"Escherichia coli 16S rRNA (rrnB) mutation conferring resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3003406","Escherichia coli 16S rRNA (rrnB) mutation conferring resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003408","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to tobramycin","na":1,"nb":1,"a":[["ARO%3A3003408","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to tobramycin"]],"b":[["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3003410","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to tetracycline","na":1,"nb":1,"a":[["ARO%3A3003410","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to tetracycline"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003411","l":"Escherichia coli 16S rRNA (rrnB) mutation conferring resistance to tetracycline","na":1,"nb":1,"a":[["ARO%3A3003411","Escherichia coli 16S rRNA (rrnB) mutation conferring resistance to tetracycline"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003413","l":"pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004977","Mycobacterium tuberculosis gpsI with mutations conferring resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3003436","l":"Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to kanamycin","na":1,"nb":1,"a":[["ARO%3A3003436","Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to kanamycin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003437","l":"Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to viomycin","na":1,"nb":1,"a":[["ARO%3A3003437","Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to viomycin"]],"b":[["antimycobacterial/viomycin.html","viomycin"]]},{"id":"ARO:3003438","l":"Enterococcus faecium EF-Tu mutants conferring resistance to GE2270A","na":1,"nb":1,"a":[["ARO%3A3003438","Enterococcus faecium EF-Tu mutants conferring resistance to GE2270A"]],"b":[["antibacterial/ge2270a.html","GE2270A"]]},{"id":"ARO:3003440","l":"mecB","na":1,"nb":1,"a":[["ARO%3A3003440","mecB"]],"b":[["antibacterial/methicillin.html","methicillin"]]},{"id":"ARO:3003445","l":"Mycobacterium tuberculosis tlyA mutations conferring resistance to aminoglycosides","na":1,"nb":1,"a":[["ARO%3A3003445","Mycobacterium tuberculosis tlyA mutations conferring resistance to aminoglycosides"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003448","l":"Mycobacterium tuberculosis iniA mutant conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3003448","Mycobacterium tuberculosis iniA mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003451","l":"Mycobacterium tuberculosis iniC mutant conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3003451","Mycobacterium tuberculosis iniC mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003453","l":"Mycobacterium tuberculosis embA mutant conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3003453","Mycobacterium tuberculosis embA mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003455","l":"Mycobacterium tuberculosis embR mutant conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3003455","Mycobacterium tuberculosis embR mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003461","l":"Mycobacterium tuberculosis ndh with mutation conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3003461","Mycobacterium tuberculosis ndh with mutation conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3003463","l":"Mycobacterium tuberculosis kasA mutant conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3003463","Mycobacterium tuberculosis kasA mutant conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3003465","l":"Mycobacterium tuberculosis embB with mutation conferring resistance to rifampicin","na":1,"nb":1,"a":[["ARO%3A3003465","Mycobacterium tuberculosis embB with mutation conferring resistance to rifampicin"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3003470","l":"Mycobacterium tuberculosis gidB mutation conferring resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3003470","Mycobacterium tuberculosis gidB mutation conferring resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003480","l":"Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3003480","Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003481","l":"Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to amikacin","na":1,"nb":1,"a":[["ARO%3A3003481","Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to amikacin"]],"b":[["antibacterial/amikacin.html","amikacin"]]},{"id":"ARO:3003485","l":"Chlamydophila psittaci 16S rRNA mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003485","Chlamydophila psittaci 16S rRNA mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003493","l":"Pasteurella multocida 16S rRNA mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003493","Pasteurella multocida 16S rRNA mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003495","l":"Neisseria gonorrhoeae 16S rRNA mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003495","Neisseria gonorrhoeae 16S rRNA mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003497","l":"Neisseria meningitidis 16S rRNA mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003497","Neisseria meningitidis 16S rRNA mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003502","l":"Borreliella burgdorferi 16S rRNA mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003502","Borreliella burgdorferi 16S rRNA mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003503","l":"Borreliella burgdorferi 16S rRNA mutation conferring resistance to kanamycin","na":1,"nb":1,"a":[["ARO%3A3003503","Borreliella burgdorferi 16S rRNA mutation conferring resistance to kanamycin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003504","l":"Borreliella burgdorferi 16S rRNA mutation conferring resistance to gentamicin","na":1,"nb":1,"a":[["ARO%3A3003504","Borreliella burgdorferi 16S rRNA mutation conferring resistance to gentamicin"]],"b":[["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3003510","l":"Helicobacter pylori 16S rRNA mutation conferring resistance to tetracycline","na":1,"nb":1,"a":[["ARO%3A3003510","Helicobacter pylori 16S rRNA mutation conferring resistance to tetracycline"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003512","l":"Salmonella enterica 16S rRNA (rrsD) mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003512","Salmonella enterica 16S rRNA (rrsD) mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003514","l":"Mycobacteroides chelonae 16S rRNA mutation conferring resistance to amikacin","na":1,"nb":1,"a":[["ARO%3A3003514","Mycobacteroides chelonae 16S rRNA mutation conferring resistance to amikacin"]],"b":[["antibacterial/amikacin.html","amikacin"]]},{"id":"ARO:3003515","l":"Mycobacteroides chelonae 16S rRNA mutation conferring resistance to kanamycin A","na":1,"nb":1,"a":[["ARO%3A3003515","Mycobacteroides chelonae 16S rRNA mutation conferring resistance to kanamycin A"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003516","l":"Mycobacteroides chelonae 16S rRNA mutation conferring resistance to tobramycin","na":1,"nb":1,"a":[["ARO%3A3003516","Mycobacteroides chelonae 16S rRNA mutation conferring resistance to tobramycin"]],"b":[["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3003517","l":"Mycobacteroides chelonae 16S rRNA mutation conferring resistance to gentamicin C","na":1,"nb":1,"a":[["ARO%3A3003517","Mycobacteroides chelonae 16S rRNA mutation conferring resistance to gentamicin C"]],"b":[["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3003518","l":"Mycobacteroides chelonae 16S rRNA mutation conferring resistance to neomycin","na":1,"nb":1,"a":[["ARO%3A3003518","Mycobacteroides chelonae 16S rRNA mutation conferring resistance to neomycin"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3003539","l":"Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to hygromycin B","na":1,"nb":1,"a":[["ARO%3A3003539","Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to hygromycin B"]],"b":[["antibacterial/hygromycin-b.html","hygromycin B"]]},{"id":"ARO:3003540","l":"Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to hygromycin B","na":1,"nb":1,"a":[["ARO%3A3003540","Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to hygromycin B"]],"b":[["antibacterial/hygromycin-b.html","hygromycin B"]]},{"id":"ARO:3003541","l":"Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3003541","Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003542","l":"Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to kanamycin A","na":1,"nb":1,"a":[["ARO%3A3003542","Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to kanamycin A"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003543","l":"Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to kanamycin A","na":1,"nb":1,"a":[["ARO%3A3003543","Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to kanamycin A"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003544","l":"Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to neomycin","na":1,"nb":1,"a":[["ARO%3A3003544","Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to neomycin"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3003545","l":"Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to neomycin","na":1,"nb":1,"a":[["ARO%3A3003545","Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to neomycin"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3003546","l":"Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to viomycin","na":1,"nb":1,"a":[["ARO%3A3003546","Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to viomycin"]],"b":[["antimycobacterial/viomycin.html","viomycin"]]},{"id":"ARO:3003547","l":"Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to viomycin","na":1,"nb":1,"a":[["ARO%3A3003547","Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to viomycin"]],"b":[["antimycobacterial/viomycin.html","viomycin"]]},{"id":"ARO:3003551","l":"emeA","na":1,"nb":1,"a":[["ARO%3A3003551","emeA"]],"b":[["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3003552","l":"fusB","na":1,"nb":1,"a":[["ARO%3A3003552","fusB"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3003554","l":"tcmA","na":1,"nb":1,"a":[["ARO%3A3003554","tcmA"]],"b":[["antibacterial/tetracenomycin-c.html","tetracenomycin C"]]},{"id":"ARO:3003558","l":"y56 beta-lactamase","na":1,"nb":1,"a":[["ARO%3A3003558","y56 beta-lactamase"]],"b":[["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3003562","l":"blaF","na":1,"nb":1,"a":[["ARO%3A3003562","blaF"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3003576","l":"eptA","na":1,"nb":1,"a":[["ARO%3A3003576","eptA"]],"b":[["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3003577","l":"ugd","na":1,"nb":1,"a":[["ARO%3A3003577","ugd"]],"b":[["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3003678","l":"TriABC-OpmH","na":1,"nb":1,"a":[["ARO%3A3003678","TriABC-OpmH"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3003685","l":"Pseudomonas aeruginosa parE conferring resistance to fluoroquinolones","na":1,"nb":1,"a":[["ARO%3A3003685","Pseudomonas aeruginosa parE conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003691","l":"MexJK-OpmH","na":1,"nb":1,"a":[["ARO%3A3003691","MexJK-OpmH"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3003729","l":"Staphylococcus aureus ileS with mutation conferring resistance to mupirocin","na":1,"nb":1,"a":[["ARO%3A3003729","Staphylococcus aureus ileS with mutation conferring resistance to mupirocin"]],"b":[["antibacterial/mupirocin.html","mupirocin"]]},{"id":"ARO:3003730","l":"Bifidobacterium bifidum ileS conferring resistance to mupirocin","na":1,"nb":1,"a":[["ARO%3A3003730","Bifidobacterium bifidum ileS conferring resistance to mupirocin"]],"b":[["antibacterial/mupirocin.html","mupirocin"]]},{"id":"ARO:3003731","l":"fusD","na":1,"nb":1,"a":[["ARO%3A3003731","fusD"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3003733","l":"fusC","na":1,"nb":1,"a":[["ARO%3A3003733","fusC"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3003735","l":"Staphylococcus aureus fusA with mutation conferring resistance to fusidic acid","na":1,"nb":1,"a":[["ARO%3A3003735","Staphylococcus aureus fusA with mutation conferring resistance to fusidic acid"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3003737","l":"Staphylococcus aureus fusE with mutation conferring resistance to fusidic acid","na":1,"nb":1,"a":[["ARO%3A3003737","Staphylococcus aureus fusE with mutation conferring resistance to fusidic acid"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3003741","l":"mphE","na":1,"nb":1,"a":[["ARO%3A3003741","mphE"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003744","l":"vatF","na":1,"nb":1,"a":[["ARO%3A3003744","vatF"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3003745","l":"mef(C)","na":1,"nb":1,"a":[["ARO%3A3003745","mef(C)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"]]},{"id":"ARO:3003748","l":"oleC","na":1,"nb":1,"a":[["ARO%3A3003748","oleC"]],"b":[["antibacterial/oleandomycin.html","oleandomycin"]]},{"id":"ARO:3003756","l":"Escherichia coli nfsB with mutation conferring resistance to nitrofurantoin","na":1,"nb":1,"a":[["ARO%3A3003756","Escherichia coli nfsB with mutation conferring resistance to nitrofurantoin"]],"b":[["antibacterial/nitrofurantoin.html","nitrofurantoin"]]},{"id":"ARO:3003760","l":"Enterococcus faecalis cls with mutation conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003760","Enterococcus faecalis cls with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003761","l":"eatAv","na":1,"nb":1,"a":[["ARO%3A3003761","eatAv"]],"b":[["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"ARO:3003762","l":"lnuE","na":1,"nb":1,"a":[["ARO%3A3003762","lnuE"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3003767","l":"mphM","na":1,"nb":1,"a":[["ARO%3A3003767","mphM"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003769","l":"Staphylococcus aureus mprF","na":1,"nb":1,"a":[["ARO%3A3003769","Staphylococcus aureus mprF"]],"b":[["antibacterial/defensin.html","defensin"]]},{"id":"ARO:3003770","l":"Listeria monocytogenes mprF","na":1,"nb":1,"a":[["ARO%3A3003770","Listeria monocytogenes mprF"]],"b":[["antibacterial/defensin.html","defensin"]]},{"id":"ARO:3003772","l":"Brucella suis mprF","na":1,"nb":1,"a":[["ARO%3A3003772","Brucella suis mprF"]],"b":[["antibacterial/defensin.html","defensin"]]},{"id":"ARO:3003773","l":"Clostridium perfringens mprF","na":1,"nb":1,"a":[["ARO%3A3003773","Clostridium perfringens mprF"]],"b":[["antibacterial/defensin.html","defensin"]]},{"id":"ARO:3003774","l":"Streptococcus agalactiae mprF","na":1,"nb":1,"a":[["ARO%3A3003774","Streptococcus agalactiae mprF"]],"b":[["antibacterial/defensin.html","defensin"]]},{"id":"ARO:3003775","l":"Escherichia coli murA with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003775","Escherichia coli murA with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003776","l":"Staphylococcus aureus murA with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003776","Staphylococcus aureus murA with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003777","l":"Borreliella burgdorferi murA with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003777","Borreliella burgdorferi murA with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003778","l":"Mycolicibacterium smegmatis ndh with mutation conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3003778","Mycolicibacterium smegmatis ndh with mutation conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3003779","l":"Mycobacterium tuberculosis variant bovis ndh with mutation conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3003779","Mycobacterium tuberculosis variant bovis ndh with mutation conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3003784","l":"Mycobacterium tuberculosis intrinsic murA conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003784","Mycobacterium tuberculosis intrinsic murA conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003785","l":"Chlamydia trachomatis intrinsic murA conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003785","Chlamydia trachomatis intrinsic murA conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003788","l":"Bacillus subtilis pgsA with mutation conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003788","Bacillus subtilis pgsA with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003789","l":"Campylobacter jejuni gyrA conferring resistance to fluoroquinolones","na":1,"nb":1,"a":[["ARO%3A3003789","Campylobacter jejuni gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003790","l":"Enterococcus faecium liaF mutant conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003790","Enterococcus faecium liaF mutant conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003791","l":"Enterococcus faecalis liaS mutant conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003791","Enterococcus faecalis liaS mutant conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003792","l":"Enterococcus faecalis liaR mutant conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003792","Enterococcus faecalis liaR mutant conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003794","l":"Staphylococcus aureus walK with mutation conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003794","Staphylococcus aureus walK with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003797","l":"Enterococcus faecalis YybT with mutation conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003797","Enterococcus faecalis YybT with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003800","l":"Enterococcus faecalis gdpD with mutation conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003800","Enterococcus faecalis gdpD with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003801","l":"bcr-1","na":1,"nb":1,"a":[["ARO%3A3003801","bcr-1"]],"b":[["antibacterial/bicozamycin.html","bicozamycin"]]},{"id":"ARO:3003803","l":"Staphylococcus aureus agrA with mutation conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003803","Staphylococcus aureus agrA with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003805","l":"Enterococcus faecalis gshF with mutation conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003805","Enterococcus faecalis gshF with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003809","l":"Acinetobacter baumannii OprD conferring resistance to imipenem","na":1,"nb":1,"a":[["ARO%3A3003809","Acinetobacter baumannii OprD conferring resistance to imipenem"]],"b":[["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3003813","l":"Enterococcus faecalis drmA with mutation conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003813","Enterococcus faecalis drmA with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003815","l":"Enterococcus faecalis YvlB with mutation conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003815","Enterococcus faecalis YvlB with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003830","l":"Aminocoumarin resistant alaS","na":1,"nb":1,"a":[["ARO%3A3003830","Aminocoumarin resistant alaS"]],"b":[["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3003835","l":"cdeA","na":1,"nb":1,"a":[["ARO%3A3003835","cdeA"]],"b":[["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3003840","l":"aminocoumarin resistant cysB","na":1,"nb":1,"a":[["ARO%3A3003840","aminocoumarin resistant cysB"]],"b":[["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3003844","l":"mfd","na":1,"nb":1,"a":[["ARO%3A3003844","mfd"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003889","l":"Escherichia coli GlpT with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003889","Escherichia coli GlpT with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003890","l":"Escherichia coli UhpT with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003890","Escherichia coli UhpT with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003900","l":"Escherichia coli cyaA with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003900","Escherichia coli cyaA with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003901","l":"Staphylococcus aureus GlpT with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003901","Staphylococcus aureus GlpT with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003902","l":"Staphylococcus aureus UhpT with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003902","Staphylococcus aureus UhpT with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003917","l":"Staphylococcus aureus menA with mutation conferring resistance to lysocin","na":1,"nb":1,"a":[["ARO%3A3003917","Staphylococcus aureus menA with mutation conferring resistance to lysocin"]],"b":[["antibacterial/lysocin-e.html","lysocin E"]]},{"id":"ARO:3003918","l":"apmA","na":1,"nb":1,"a":[["ARO%3A3003918","apmA"]],"b":[["antibacterial/apramycin.html","apramycin"]]},{"id":"ARO:3003920","l":"pgpB","na":1,"nb":1,"a":[["ARO%3A3003920","pgpB"]],"b":[["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3003924","l":"Haemophilus parainfluenzae gyrA conferring resistance to fluoroquinolones","na":1,"nb":1,"a":[["ARO%3A3003924","Haemophilus parainfluenzae gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003925","l":"Haemophilus parainfluenzae parC conferring resistance to fluoroquinolones","na":1,"nb":1,"a":[["ARO%3A3003925","Haemophilus parainfluenzae parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003930","l":"rpsJ","na":1,"nb":1,"a":[["ARO%3A3003930","rpsJ"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003950","l":"msbA","na":1,"nb":1,"a":[["ARO%3A3003950","msbA"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3003952","l":"YojI","na":1,"nb":1,"a":[["ARO%3A3003952","YojI"]],"b":[["antibacterial/microcin-j25.html","microcin J25"]]},{"id":"ARO:3003954","l":"efmA","na":1,"nb":1,"a":[["ARO%3A3003954","efmA"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003970","l":"D-Ala-D-Ala ligase","na":1,"nb":1,"a":[["ARO%3A3003970","D-Ala-D-Ala ligase"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3003977","l":"Halobacterium salinarum 16S rRNA mutation conferring resistance to pactamycin","na":1,"nb":1,"a":[["ARO%3A3003977","Halobacterium salinarum 16S rRNA mutation conferring resistance to pactamycin"]],"b":[["antibacterial/pactamycin.html","pactamycin"]]},{"id":"ARO:3003978","l":"Chlamydomonas reinhardtii 16S rRNA (rrnS) mutation conferring resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3003978","Chlamydomonas reinhardtii 16S rRNA (rrnS) mutation conferring resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003980","l":"tetA(58)","na":1,"nb":1,"a":[["ARO%3A3003980","tetA(58)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003981","l":"tetB(58)","na":1,"nb":1,"a":[["ARO%3A3003981","tetB(58)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003982","l":"LlmA 23S ribosomal RNA methyltransferase","na":1,"nb":1,"a":[["ARO%3A3003982","LlmA 23S ribosomal RNA methyltransferase"]],"b":[["antibacterial/clindamycin.html","clindamycin"]]},{"id":"ARO:3003984","l":"BahA","na":1,"nb":1,"a":[["ARO%3A3003984","BahA"]],"b":[["antibacterial/bacitracin.html","bacitracin"]]},{"id":"ARO:3003986","l":"TaeA","na":1,"nb":1,"a":[["ARO%3A3003986","TaeA"]],"b":[["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"ARO:3003987","l":"VatI","na":1,"nb":1,"a":[["ARO%3A3003987","VatI"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3003988","l":"","na":1,"nb":1,"a":[["ARO%3A3003988","AAC(2')-IIb"]],"b":[["antifungal/kasugamycin.html","kasugamycin"]]},{"id":"ARO:3003989","l":"","na":1,"nb":1,"a":[["ARO%3A3003989","AAC(6')-34"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004031","l":"tetAB(46)","na":1,"nb":1,"a":[["ARO%3A3004031","tetAB(46)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004034","l":"tetAB(60)","na":1,"nb":1,"a":[["ARO%3A3004034","tetAB(60)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004038","l":"Pseudomonas aeruginosa emrE","na":1,"nb":1,"a":[["ARO%3A3004038","Pseudomonas aeruginosa emrE"]],"b":[["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3004039","l":"Escherichia coli emrE","na":1,"nb":1,"a":[["ARO%3A3004039","Escherichia coli emrE"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004041","l":"Klebsiella pneumoniae acrA","na":1,"nb":1,"a":[["ARO%3A3004041","Klebsiella pneumoniae acrA"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004042","l":"Enterobacter cloacae acrA","na":1,"nb":1,"a":[["ARO%3A3004042","Enterobacter cloacae acrA"]],"b":[["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:3004045","l":"Escherichia coli fabI mutations conferring resistance to isoniazid and triclosan","na":1,"nb":1,"a":[["ARO%3A3004045","Escherichia coli fabI mutations conferring resistance to isoniazid and triclosan"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3004046","l":"kdpDE","na":1,"nb":1,"a":[["ARO%3A3004046","kdpDE"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004049","l":"Escherichia coli fabG mutations conferring resistance to triclosan","na":1,"nb":1,"a":[["ARO%3A3004049","Escherichia coli fabG mutations conferring resistance to triclosan"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3004058","l":"Staphylococcus aureus 23S rRNA with mutation conferring resistance to linezolid","na":1,"nb":1,"a":[["ARO%3A3004058","Staphylococcus aureus 23S rRNA with mutation conferring resistance to linezolid"]],"b":[["antibacterial/linezolid.html","linezolid"]]},{"id":"ARO:3004083","l":"AcrEF-TolC confers resistance to ciprofloxacin","na":1,"nb":1,"a":[["ARO%3A3004083","AcrEF-TolC confers resistance to ciprofloxacin"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004085","l":"lnuG","na":1,"nb":1,"a":[["ARO%3A3004085","lnuG"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3004097","l":"Streptococcus mitis CdsA with mutation conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3004097","Streptococcus mitis CdsA with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3004105","l":"TMB-1","na":1,"nb":1,"a":[["ARO%3A3004105","TMB-1"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3004106","l":"TMB-2","na":1,"nb":1,"a":[["ARO%3A3004106","TMB-2"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3004111","l":"FosA6","na":1,"nb":1,"a":[["ARO%3A3004111","FosA6"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004113","l":"FosA7","na":1,"nb":1,"a":[["ARO%3A3004113","FosA7"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004124","l":"Moraxella catarrhalis M35","na":1,"nb":1,"a":[["ARO%3A3004124","Moraxella catarrhalis M35"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3004132","l":"Chlamydomonas reinhardtii 23S rRNA with mutation conferring resistance to erythromycin","na":1,"nb":1,"a":[["ARO%3A3004132","Chlamydomonas reinhardtii 23S rRNA with mutation conferring resistance to erythromycin"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004133","l":"Brachyspira hyodysenteriae 23S rRNA with mutation conferring resistance to tylosin","na":1,"nb":1,"a":[["ARO%3A3004133","Brachyspira hyodysenteriae 23S rRNA with mutation conferring resistance to tylosin"]],"b":[["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3004134","l":"Helicobacter pylori 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004134","Helicobacter pylori 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004135","l":"Mycobacterium tuberculosis iniB with mutation conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3004135","Mycobacterium tuberculosis iniB with mutation conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3004149","l":"Escherichia coli 23S rRNA with mutation conferring resistance to clindamycin","na":1,"nb":1,"a":[["ARO%3A3004149","Escherichia coli 23S rRNA with mutation conferring resistance to clindamycin"]],"b":[["antibacterial/clindamycin.html","clindamycin"]]},{"id":"ARO:3004150","l":"Escherichia coli 23S rRNA with mutation conferring resistance to chloramphenicol","na":1,"nb":1,"a":[["ARO%3A3004150","Escherichia coli 23S rRNA with mutation conferring resistance to chloramphenicol"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004153","l":"Mycobacterium tuberculosis thyA with mutation conferring resistance to para-aminosalicylic acid","na":1,"nb":1,"a":[["ARO%3A3004153","Mycobacterium tuberculosis thyA with mutation conferring resistance to para-aminosalicylic acid"]],"b":[["antimycobacterial/4-aminosalicylic-acid.html","4-aminosalicylic acid"]]},{"id":"ARO:3004157","l":"Mycobacterium tuberculosis folC with mutation conferring resistance to para-aminosalicylic acid","na":1,"nb":1,"a":[["ARO%3A3004157","Mycobacterium tuberculosis folC with mutation conferring resistance to para-aminosalicylic acid"]],"b":[["antimycobacterial/4-aminosalicylic-acid.html","4-aminosalicylic acid"]]},{"id":"ARO:3004159","l":"Mycoplasma gallisepticum 23S rRNA mutation conferring resistance to pleuromutilin antibiotics","na":1,"nb":1,"a":[["ARO%3A3004159","Mycoplasma gallisepticum 23S rRNA mutation conferring resistance to pleuromutilin antibiotics"]],"b":[["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"ARO:3004160","l":"Escherichia coli 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004160","Escherichia coli 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004161","l":"Propionibacteria 23S rRNA with mutation conferring resistance to macrolide antibiotics","na":1,"nb":1,"a":[["ARO%3A3004161","Propionibacteria 23S rRNA with mutation conferring resistance to macrolide antibiotics"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004163","l":"Mycobacteroides abscessus 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004163","Mycobacteroides abscessus 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004164","l":"Mycobacterium avium 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004164","Mycobacterium avium 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004165","l":"Mycobacteroides chelonae 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004165","Mycobacteroides chelonae 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004166","l":"Mycobacterium intracellulare 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004166","Mycobacterium intracellulare 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004167","l":"Mycobacterium intracellulare 23S rRNA with mutation conferring resistance to azithromycin","na":1,"nb":1,"a":[["ARO%3A3004167","Mycobacterium intracellulare 23S rRNA with mutation conferring resistance to azithromycin"]],"b":[["antibacterial/azithromycin.html","azithromycin"]]},{"id":"ARO:3004168","l":"Mycobacterium kansasii 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004168","Mycobacterium kansasii 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004169","l":"Mycolicibacterium smegmatis 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004169","Mycolicibacterium smegmatis 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004171","l":"Streptomyces ambofaciens 23S rRNA with mutation conferring resistance to macrolide antibiotics","na":1,"nb":1,"a":[["ARO%3A3004171","Streptomyces ambofaciens 23S rRNA with mutation conferring resistance to macrolide antibiotics"]],"b":[["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3004173","l":"Escherichia coli 23S rRNA with mutation conferring resistance to oxazolidinone antibiotics","na":1,"nb":1,"a":[["ARO%3A3004173","Escherichia coli 23S rRNA with mutation conferring resistance to oxazolidinone antibiotics"]],"b":[["antibacterial/linezolid.html","linezolid"]]},{"id":"ARO:3004179","l":"Mycoplasma pneumoniae 23S rRNA mutation conferring resistance to erythromycin","na":1,"nb":1,"a":[["ARO%3A3004179","Mycoplasma pneumoniae 23S rRNA mutation conferring resistance to erythromycin"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004180","l":"Halobacterium halobium 23S rRNA mutation conferring resistance to chloramphenicol","na":1,"nb":1,"a":[["ARO%3A3004180","Halobacterium halobium 23S rRNA mutation conferring resistance to chloramphenicol"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004184","l":"Mycobacterium tuberculosis ribD with mutation conferring resistance to para-aminosalicylic acid","na":1,"nb":1,"a":[["ARO%3A3004184","Mycobacterium tuberculosis ribD with mutation conferring resistance to para-aminosalicylic acid"]],"b":[["antimycobacterial/4-aminosalicylic-acid.html","4-aminosalicylic acid"]]},{"id":"ARO:3004185","l":"mecD","na":1,"nb":1,"a":[["ARO%3A3004185","mecD"]],"b":[["antibacterial/methicillin.html","methicillin"]]},{"id":"ARO:3004289","l":"Vibrio cholerae varG","na":1,"nb":1,"a":[["ARO%3A3004289","Vibrio cholerae varG"]],"b":[["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3004291","l":"Rhodobacter sphaeroides ampC beta-lactamase","na":1,"nb":1,"a":[["ARO%3A3004291","Rhodobacter sphaeroides ampC beta-lactamase"]],"b":[["antibacterial/benzylpenicillin.html","benzylpenicillin"]]},{"id":"ARO:3004334","l":"Salmonella enterica gyrA with mutation conferring resistance to triclosan","na":1,"nb":1,"a":[["ARO%3A3004334","Salmonella enterica gyrA with mutation conferring resistance to triclosan"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3004335","l":"Escherichia coli gyrA with mutation conferring resistance to triclosan","na":1,"nb":1,"a":[["ARO%3A3004335","Escherichia coli gyrA with mutation conferring resistance to triclosan"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3004357","l":"catV","na":1,"nb":1,"a":[["ARO%3A3004357","catV"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004361","l":"sul4","na":1,"nb":1,"a":[["ARO%3A3004361","sul4"]],"b":[["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3004450","l":"TRU-1","na":1,"nb":1,"a":[["ARO%3A3004450","TRU-1"]],"b":[["antibacterial/cefalotin.html","cefalotin"]]},{"id":"ARO:3004451","l":"Agrobacterium fabrum chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004451","Agrobacterium fabrum chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004452","l":"Alkalihalobacillus clausii chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004452","Alkalihalobacillus clausii chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004454","l":"Campylobacter coli chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004454","Campylobacter coli chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004455","l":"Streptococcus suis chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004455","Streptococcus suis chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004456","l":"Enterococcus faecium chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004456","Enterococcus faecium chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004457","l":"Staphylococcus intermedius chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004457","Staphylococcus intermedius chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004458","l":"Enterococcus faecalis chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004458","Enterococcus faecalis chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004460","l":"Vibrio anguillarum chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004460","Vibrio anguillarum chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004480","l":"Bifidobacterium adolescentis rpoB mutants conferring resistance to rifampicin","na":1,"nb":1,"a":[["ARO%3A3004480","Bifidobacterium adolescentis rpoB mutants conferring resistance to rifampicin"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3004498","l":"dfrB4","na":1,"nb":1,"a":[["ARO%3A3004498","dfrB4"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004539","l":"mphH","na":1,"nb":1,"a":[["ARO%3A3004539","mphH"]],"b":[["antibacterial/azithromycin.html","azithromycin"]]},{"id":"ARO:3004542","l":"mphN","na":1,"nb":1,"a":[["ARO%3A3004542","mphN"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004543","l":"mphO","na":1,"nb":1,"a":[["ARO%3A3004543","mphO"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004546","l":"Campylobacter jejuni 23S rRNA with mutation conferring resistance to erythromycin","na":1,"nb":1,"a":[["ARO%3A3004546","Campylobacter jejuni 23S rRNA with mutation conferring resistance to erythromycin"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004547","l":"dfrA6","na":1,"nb":1,"a":[["ARO%3A3004547","dfrA6"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004548","l":"dfrA9","na":1,"nb":1,"a":[["ARO%3A3004548","dfrA9"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004549","l":"dfrB5","na":1,"nb":1,"a":[["ARO%3A3004549","dfrB5"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004550","l":"dfrA27","na":1,"nb":1,"a":[["ARO%3A3004550","dfrA27"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004551","l":"dfrA28","na":1,"nb":1,"a":[["ARO%3A3004551","dfrA28"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004552","l":"dfrA30","na":1,"nb":1,"a":[["ARO%3A3004552","dfrA30"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004554","l":"dfrA29","na":1,"nb":1,"a":[["ARO%3A3004554","dfrA29"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004555","l":"dfrA32","na":1,"nb":1,"a":[["ARO%3A3004555","dfrA32"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004556","l":"dfrB7","na":1,"nb":1,"a":[["ARO%3A3004556","dfrB7"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004561","l":"Clostridioides difficile murG with mutation conferring resistance to vancomycin","na":1,"nb":1,"a":[["ARO%3A3004561","Clostridioides difficile murG with mutation conferring resistance to vancomycin"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3004568","l":"dfrA18","na":1,"nb":1,"a":[["ARO%3A3004568","dfrA18"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004573","l":"Acinetobacter baumannii AbaF","na":1,"nb":1,"a":[["ARO%3A3004573","Acinetobacter baumannii AbaF"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004601","l":"LnuP","na":1,"nb":1,"a":[["ARO%3A3004601","LnuP"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3004605","l":"ermZ","na":1,"nb":1,"a":[["ARO%3A3004605","ermZ"]],"b":[["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3004608","l":"EreD","na":1,"nb":1,"a":[["ARO%3A3004608","EreD"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004622","l":"QnrS10","na":1,"nb":1,"a":[["ARO%3A3004622","QnrS10"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004624","l":"QnrS11","na":1,"nb":1,"a":[["ARO%3A3004624","QnrS11"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004625","l":"QnrS12","na":1,"nb":1,"a":[["ARO%3A3004625","QnrS12"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004627","l":"QnrS15","na":1,"nb":1,"a":[["ARO%3A3004627","QnrS15"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004628","l":"","na":1,"nb":1,"a":[["ARO%3A3004628","AAC(2')-IIa"]],"b":[["antifungal/kasugamycin.html","kasugamycin"]]},{"id":"ARO:3004630","l":"Mycoplasma genitalium parC mutations confers resistance to Moxifloxacin","na":1,"nb":1,"a":[["ARO%3A3004630","Mycoplasma genitalium parC mutations confers resistance to Moxifloxacin"]],"b":[["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3004631","l":"Mycoplasma genitalium gyrA mutation confers resistance to fluoroquinolones","na":1,"nb":1,"a":[["ARO%3A3004631","Mycoplasma genitalium gyrA mutation confers resistance to fluoroquinolones"]],"b":[["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3004636","l":"qnrE1","na":1,"nb":1,"a":[["ARO%3A3004636","qnrE1"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004637","l":"qnrE2","na":1,"nb":1,"a":[["ARO%3A3004637","qnrE2"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004640","l":"dfrA15b","na":1,"nb":1,"a":[["ARO%3A3004640","dfrA15b"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004642","l":"dfrA3b","na":1,"nb":1,"a":[["ARO%3A3004642","dfrA3b"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004643","l":"Erm(K)","na":1,"nb":1,"a":[["ARO%3A3004643","Erm(K)"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004644","l":"dfrA6 from Proteus mirabilis","na":1,"nb":1,"a":[["ARO%3A3004644","dfrA6 from Proteus mirabilis"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004645","l":"dfrI","na":1,"nb":1,"a":[["ARO%3A3004645","dfrI"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004651","l":"lin","na":1,"nb":1,"a":[["ARO%3A3004651","lin"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3004653","l":"tetR(G)","na":1,"nb":1,"a":[["ARO%3A3004653","tetR(G)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004655","l":"nimB","na":1,"nb":1,"a":[["ARO%3A3004655","nimB"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3004656","l":"catII from Escherichia coli K-12","na":1,"nb":1,"a":[["ARO%3A3004656","catII from Escherichia coli K-12"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004657","l":"catA4","na":1,"nb":1,"a":[["ARO%3A3004657","catA4"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004658","l":"catA8","na":1,"nb":1,"a":[["ARO%3A3004658","catA8"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004659","l":"Mef(En2)","na":1,"nb":1,"a":[["ARO%3A3004659","Mef(En2)"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3004660","l":"catB11","na":1,"nb":1,"a":[["ARO%3A3004660","catB11"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004661","l":"Staphylococcus aureus FosB","na":1,"nb":1,"a":[["ARO%3A3004661","Staphylococcus aureus FosB"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004663","l":"FusF","na":1,"nb":1,"a":[["ARO%3A3004663","FusF"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3004665","l":"cmlA8","na":1,"nb":1,"a":[["ARO%3A3004665","cmlA8"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004669","l":"emtA","na":1,"nb":1,"a":[["ARO%3A3004669","emtA"]],"b":[["antibacterial/evernimicin.html","evernimicin"]]},{"id":"ARO:3004670","l":"FosB1","na":1,"nb":1,"a":[["ARO%3A3004670","FosB1"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004671","l":"FosB4","na":1,"nb":1,"a":[["ARO%3A3004671","FosB4"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004672","l":"FosB5","na":1,"nb":1,"a":[["ARO%3A3004672","FosB5"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004673","l":"FosB6","na":1,"nb":1,"a":[["ARO%3A3004673","FosB6"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004674","l":"FosD","na":1,"nb":1,"a":[["ARO%3A3004674","FosD"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004681","l":"Clostridioides difficile rpoC with mutation conferring resistance to vancomycin","na":1,"nb":1,"a":[["ARO%3A3004681","Clostridioides difficile rpoC with mutation conferring resistance to vancomycin"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3004683","l":"aadS","na":1,"nb":1,"a":[["ARO%3A3004683","aadS"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004699","l":"sta","na":1,"nb":1,"a":[["ARO%3A3004699","sta"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"]]},{"id":"ARO:3004730","l":"tva(A)","na":1,"nb":1,"a":[["ARO%3A3004730","tva(A)"]],"b":[["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"ARO:3004835","l":"Neisseria gonorrhoeae pilQ gene conferring resistance to beta-lactam","na":1,"nb":1,"a":[["ARO%3A3004835","Neisseria gonorrhoeae pilQ gene conferring resistance to beta-lactam"]],"b":[["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3004836","l":"Neisseria gonorrhoeae 23S rRNA with mutation conferring resistance to azithromycin","na":1,"nb":1,"a":[["ARO%3A3004836","Neisseria gonorrhoeae 23S rRNA with mutation conferring resistance to azithromycin"]],"b":[["antibacterial/azithromycin.html","azithromycin"]]},{"id":"ARO:3004859","l":"Neisseria gonorrhoeae gyrB conferring resistance to zoliflodacin","na":1,"nb":1,"a":[["ARO%3A3004859","Neisseria gonorrhoeae gyrB conferring resistance to zoliflodacin"]],"b":[["antibacterial/zoliflodacin.html","zoliflodacin"]]},{"id":"ARO:3004860","l":"Burkholderia dolosa gyrA conferring resistance to fluoroquinolones","na":1,"nb":1,"a":[["ARO%3A3004860","Burkholderia dolosa gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004873","l":"Neisseria gonorrhoeae folP with mutation conferring resistance to sulfonamides","na":1,"nb":1,"a":[["ARO%3A3004873","Neisseria gonorrhoeae folP with mutation conferring resistance to sulfonamides"]],"b":[["antibacterial/sulfisoxazole.html","sulfisoxazole"]]},{"id":"ARO:3004876","l":"Mycobacterium tuberculosis inhA mutations conferring resistance to ethionamide","na":1,"nb":1,"a":[["ARO%3A3004876","Mycobacterium tuberculosis inhA mutations conferring resistance to ethionamide"]],"b":[["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"ARO:3004921","l":"Mycobacterium tuberculosis ahpC mutations confer resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004921","Mycobacterium tuberculosis ahpC mutations confer resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004922","l":"Mycobacterium tuberculosis fabG1 mutations confer resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004922","Mycobacterium tuberculosis fabG1 mutations confer resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004923","l":"Mycobacterium tuberculosis furA mutations confer resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004923","Mycobacterium tuberculosis furA mutations confer resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004924","l":"Mycobacterium tuberculosis inbR mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004924","Mycobacterium tuberculosis inbR mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004925","l":"Mycobacterium tuberculosis mshA mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004925","Mycobacterium tuberculosis mshA mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004927","l":"Mycobacterium tuberculosis mshC mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004927","Mycobacterium tuberculosis mshC mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004928","l":"Mycobacterium tuberculosis mymA mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004928","Mycobacterium tuberculosis mymA mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004929","l":"Mycobacterium tuberculosis mmaA3 mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004929","Mycobacterium tuberculosis mmaA3 mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004931","l":"Mycobacterium tuberculosis nudC mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004931","Mycobacterium tuberculosis nudC mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004932","l":"Mycobacterium tuberculosis sigI mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004932","Mycobacterium tuberculosis sigI mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004933","l":"Mycobacterium tuberculosis fabG1 mutation conferring resistance to ethionamide","na":1,"nb":1,"a":[["ARO%3A3004933","Mycobacterium tuberculosis fabG1 mutation conferring resistance to ethionamide"]],"b":[["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"ARO:3004934","l":"Mycobacterium tuberculosis mshC mutations conferring resistance to ethionamide","na":1,"nb":1,"a":[["ARO%3A3004934","Mycobacterium tuberculosis mshC mutations conferring resistance to ethionamide"]],"b":[["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"ARO:3004935","l":"Mycobacterium tuberculosis nudC mutations conferring resistance to ethionamide","na":1,"nb":1,"a":[["ARO%3A3004935","Mycobacterium tuberculosis nudC mutations conferring resistance to ethionamide"]],"b":[["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"ARO:3004941","l":"Mycobacterium tuberculosis ddlA mutations confer resistance to cycloserine","na":1,"nb":1,"a":[["ARO%3A3004941","Mycobacterium tuberculosis ddlA mutations confer resistance to cycloserine"]],"b":[["antimycobacterial/d-cycloserine.html","D-cycloserine"]]},{"id":"ARO:3004945","l":"Mycobacterium tuberculosis ald mutations confer resistance to cycloserine","na":1,"nb":1,"a":[["ARO%3A3004945","Mycobacterium tuberculosis ald mutations confer resistance to cycloserine"]],"b":[["antimycobacterial/d-cycloserine.html","D-cycloserine"]]},{"id":"ARO:3004947","l":"Mycobacterium tuberculosis alr with mutation conferring resistance to cycloserine","na":1,"nb":1,"a":[["ARO%3A3004947","Mycobacterium tuberculosis alr with mutation conferring resistance to cycloserine"]],"b":[["antimycobacterial/d-cycloserine.html","D-cycloserine"]]},{"id":"ARO:3004950","l":"Mycobacterium tuberculosis ubiA mutations confer resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3004950","Mycobacterium tuberculosis ubiA mutations confer resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3004951","l":"Mycobacterium tuberculosis aftA mutations confer resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3004951","Mycobacterium tuberculosis aftA mutations confer resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3004955","l":"Mycobacterium tuberculosis Rv0565c mutation conferring resistance to ethionamide","na":1,"nb":1,"a":[["ARO%3A3004955","Mycobacterium tuberculosis Rv0565c mutation conferring resistance to ethionamide"]],"b":[["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"ARO:3004956","l":"Neisseria gonorrhoeae rpld","na":1,"nb":1,"a":[["ARO%3A3004956","Neisseria gonorrhoeae rpld"]],"b":[["antibacterial/azithromycin.html","azithromycin"]]},{"id":"ARO:3004957","l":"Mycobacterium tuberculosis clpC1 with mutation conferring resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004957","Mycobacterium tuberculosis clpC1 with mutation conferring resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004963","l":"Mycobacterium tuberculosis eis mutations confer resistance to kanamycin","na":1,"nb":1,"a":[["ARO%3A3004963","Mycobacterium tuberculosis eis mutations confer resistance to kanamycin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004967","l":"Mycobacterium tuberculosis whib7 mutations confer resistance to kanamycin","na":1,"nb":1,"a":[["ARO%3A3004967","Mycobacterium tuberculosis whib7 mutations confer resistance to kanamycin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004968","l":"Mycobacterium tuberculosis whib7 mutation conferring resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3004968","Mycobacterium tuberculosis whib7 mutation conferring resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004971","l":"Mycobacterium tuberculosis Rv1258c mutations confer resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3004971","Mycobacterium tuberculosis Rv1258c mutations confer resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004975","l":"Mycobacterium tuberculosis ppsC mutations confer resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004975","Mycobacterium tuberculosis ppsC mutations confer resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004976","l":"Mycobacterium tuberculosis ppsD mutations confer resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004976","Mycobacterium tuberculosis ppsD mutations confer resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004977","l":"Mycobacterium tuberculosis gpsI with mutations conferring resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004977","Mycobacterium tuberculosis gpsI with mutations conferring resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004978","l":"Mycobacterium tuberculosis mas mutations confer resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004978","Mycobacterium tuberculosis mas mutations confer resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004981","l":"Mycobacterium tuberculosis Rv0191 mutations confer resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004981","Mycobacterium tuberculosis Rv0191 mutations confer resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004984","l":"Mycobacterium tuberculosis Rv1667 mutations confer resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004984","Mycobacterium tuberculosis Rv1667 mutations confer resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004987","l":"Mycobacterium tuberculosis Rv2731 mutations confer resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004987","Mycobacterium tuberculosis Rv2731 mutations confer resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004993","l":"Mycobacterium tuberculosis Rv3169 mutations confer resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004993","Mycobacterium tuberculosis Rv3169 mutations confer resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004999","l":"Mycobacterium tuberculosis rpoA mutations confer resistance to rifampicin","na":1,"nb":1,"a":[["ARO%3A3004999","Mycobacterium tuberculosis rpoA mutations confer resistance to rifampicin"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3005006","l":"tet(57)","na":1,"nb":1,"a":[["ARO%3A3005006","tet(57)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3005007","l":"QnrVC2","na":1,"nb":1,"a":[["ARO%3A3005007","QnrVC2"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3005024","l":"FosL1","na":1,"nb":1,"a":[["ARO%3A3005024","FosL1"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3005036","l":"BLMT","na":1,"nb":1,"a":[["ARO%3A3005036","BLMT"]],"b":[["antibacterial/bleomycin.html","bleomycin"]]},{"id":"ARO:3005043","l":"cmlA9","na":1,"nb":1,"a":[["ARO%3A3005043","cmlA9"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3005045","l":"SatA","na":1,"nb":1,"a":[["ARO%3A3005045","SatA"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"]]},{"id":"ARO:3005058","l":"mlaFEDB","na":1,"nb":1,"a":[["ARO%3A3005058","mlaFEDB"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3005083","l":"Thermus thermophilus 23s rRNA conferring resistance to pleuromutilin antibiotics","na":1,"nb":1,"a":[["ARO%3A3005083","Thermus thermophilus 23s rRNA conferring resistance to pleuromutilin antibiotics"]],"b":[["antibacterial/tiamulin.html","tiamulin"]]},{"id":"ARO:3005084","l":"dfrA31","na":1,"nb":1,"a":[["ARO%3A3005084","dfrA31"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005087","l":"msrF","na":1,"nb":1,"a":[["ARO%3A3005087","msrF"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3005088","l":"msrH","na":1,"nb":1,"a":[["ARO%3A3005088","msrH"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3005089","l":"mef(D)","na":1,"nb":1,"a":[["ARO%3A3005089","mef(D)"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3005099","l":"23S rRNA (adenine(2058)-N(6))-methyltransferase Erm(A)","na":1,"nb":1,"a":[["ARO%3A3005099","23S rRNA (adenine(2058)-N(6))-methyltransferase Erm(A)"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3005100","l":"FosB2","na":1,"nb":1,"a":[["ARO%3A3005100","FosB2"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3005102","l":"Mycobacterium tuberculosis katG mutations conferring resistance to prothionamide","na":1,"nb":1,"a":[["ARO%3A3005102","Mycobacterium tuberculosis katG mutations conferring resistance to prothionamide"]],"b":[["antibacterial/prothionamide.html","prothionamide"]]},{"id":"ARO:3005105","l":"Mycobacterium tuberculosis ethA mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3005105","Mycobacterium tuberculosis ethA mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3005106","l":"Mycobacterium tuberculosis ethA mutations conferring resistance to prothionamide","na":1,"nb":1,"a":[["ARO%3A3005106","Mycobacterium tuberculosis ethA mutations conferring resistance to prothionamide"]],"b":[["antibacterial/prothionamide.html","prothionamide"]]},{"id":"ARO:3005108","l":"Mycobacterium tuberculosis mshA mutations conferring resistance to prothionamide","na":1,"nb":1,"a":[["ARO%3A3005108","Mycobacterium tuberculosis mshA mutations conferring resistance to prothionamide"]],"b":[["antibacterial/prothionamide.html","prothionamide"]]},{"id":"ARO:3005162","l":"FosA7.5","na":1,"nb":1,"a":[["ARO%3A3005162","FosA7.5"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3005164","l":"dfrA35","na":1,"nb":1,"a":[["ARO%3A3005164","dfrA35"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005178","l":"Mycobacterium tuberculosis ethA mutations conferring resistance to perchlozone","na":1,"nb":1,"a":[["ARO%3A3005178","Mycobacterium tuberculosis ethA mutations conferring resistance to perchlozone"]],"b":[["antibacterial/perchlozone.html","perchlozone"]]},{"id":"ARO:3005255","l":"TEM-224","na":1,"nb":1,"a":[["ARO%3A3005255","TEM-224"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005256","l":"TEM-225","na":1,"nb":1,"a":[["ARO%3A3005256","TEM-225"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005257","l":"TEM-226","na":1,"nb":1,"a":[["ARO%3A3005257","TEM-226"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005258","l":"TEM-227","na":1,"nb":1,"a":[["ARO%3A3005258","TEM-227"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005259","l":"TEM-228","na":1,"nb":1,"a":[["ARO%3A3005259","TEM-228"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005260","l":"TEM-229","na":1,"nb":1,"a":[["ARO%3A3005260","TEM-229"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005261","l":"TEM-230","na":1,"nb":1,"a":[["ARO%3A3005261","TEM-230"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005262","l":"TEM-231","na":1,"nb":1,"a":[["ARO%3A3005262","TEM-231"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005263","l":"TEM-232","na":1,"nb":1,"a":[["ARO%3A3005263","TEM-232"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005264","l":"TEM-233","na":1,"nb":1,"a":[["ARO%3A3005264","TEM-233"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005265","l":"TEM-234","na":1,"nb":1,"a":[["ARO%3A3005265","TEM-234"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005266","l":"TEM-235","na":1,"nb":1,"a":[["ARO%3A3005266","TEM-235"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005267","l":"TEM-236","na":1,"nb":1,"a":[["ARO%3A3005267","TEM-236"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005268","l":"TEM-237","na":1,"nb":1,"a":[["ARO%3A3005268","TEM-237"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005269","l":"TEM-238","na":1,"nb":1,"a":[["ARO%3A3005269","TEM-238"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005270","l":"TEM-240","na":1,"nb":1,"a":[["ARO%3A3005270","TEM-240"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005271","l":"TEM-241","na":1,"nb":1,"a":[["ARO%3A3005271","TEM-241"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005272","l":"TEM-242","na":1,"nb":1,"a":[["ARO%3A3005272","TEM-242"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005273","l":"TEM-243","na":1,"nb":1,"a":[["ARO%3A3005273","TEM-243"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005334","l":"Trimethoprim-resistant dihydrofolate reductase DfrA42","na":1,"nb":1,"a":[["ARO%3A3005334","Trimethoprim-resistant dihydrofolate reductase DfrA42"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005345","l":"Trimethoprim-resistant dihydrofolate reductase DfrA43","na":1,"nb":1,"a":[["ARO%3A3005345","Trimethoprim-resistant dihydrofolate reductase DfrA43"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005346","l":"DfrA34","na":1,"nb":1,"a":[["ARO%3A3005346","DfrA34"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005347","l":"DfrA37","na":1,"nb":1,"a":[["ARO%3A3005347","DfrA37"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005348","l":"DfrA36","na":1,"nb":1,"a":[["ARO%3A3005348","DfrA36"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005349","l":"DfrA38","na":1,"nb":1,"a":[["ARO%3A3005349","DfrA38"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005350","l":"DfrB9","na":1,"nb":1,"a":[["ARO%3A3005350","DfrB9"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005351","l":"DfrA39","na":1,"nb":1,"a":[["ARO%3A3005351","DfrA39"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005354","l":"dfr22","na":1,"nb":1,"a":[["ARO%3A3005354","dfr22"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3006139","l":"TEM-98","na":1,"nb":1,"a":[["ARO%3A3006139","TEM-98"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3006140","l":"TEM-99","na":1,"nb":1,"a":[["ARO%3A3006140","TEM-99"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3006228","l":"ACC-1a","na":1,"nb":1,"a":[["ARO%3A3006228","ACC-1a"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3006229","l":"ACC-1b","na":1,"nb":1,"a":[["ARO%3A3006229","ACC-1b"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3006230","l":"ACC-1c","na":1,"nb":1,"a":[["ARO%3A3006230","ACC-1c"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3006231","l":"ACC-1d","na":1,"nb":1,"a":[["ARO%3A3006231","ACC-1d"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3006232","l":"ACC-7","na":1,"nb":1,"a":[["ARO%3A3006232","ACC-7"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3006233","l":"ACC-8","na":1,"nb":1,"a":[["ARO%3A3006233","ACC-8"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007003","l":"VHH-1","na":1,"nb":1,"a":[["ARO%3A3007003","VHH-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"]]},{"id":"ARO:3007004","l":"VHW-1","na":1,"nb":1,"a":[["ARO%3A3007004","VHW-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"]]},{"id":"ARO:3007005","l":"YEM-1","na":1,"nb":1,"a":[["ARO%3A3007005","YEM-1"]],"b":[["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3007012","l":"sepA","na":1,"nb":1,"a":[["ARO%3A3007012","sepA"]],"b":[["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3007013","l":"sdrM","na":1,"nb":1,"a":[["ARO%3A3007013","sdrM"]],"b":[["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3007014","l":"qacJ","na":1,"nb":1,"a":[["ARO%3A3007014","qacJ"]],"b":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"]]},{"id":"ARO:3007015","l":"qacG","na":1,"nb":1,"a":[["ARO%3A3007015","qacG"]],"b":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"]]},{"id":"ARO:3007019","l":"fexB","na":1,"nb":1,"a":[["ARO%3A3007019","fexB"]],"b":[["antibacterial/florfenicol.html","florfenicol"]]},{"id":"ARO:3007041","l":"Erm(52)","na":1,"nb":1,"a":[["ARO%3A3007041","Erm(52)"]],"b":[["antibacterial/clindamycin.html","clindamycin"]]},{"id":"ARO:3007043","l":"msr(I)","na":1,"nb":1,"a":[["ARO%3A3007043","msr(I)"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007052","l":"Helicobacter pylori gyrA conferring resistance to fluoroquinolones","na":1,"nb":1,"a":[["ARO%3A3007052","Helicobacter pylori gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"ARO:3007057","l":"Helicobacter pylori pbp3 conferring resistance to amoxicillin","na":1,"nb":1,"a":[["ARO%3A3007057","Helicobacter pylori pbp3 conferring resistance to amoxicillin"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3007058","l":"Helicobacter pylori pbp2 mutants conferring resistance to amoxicillin","na":1,"nb":1,"a":[["ARO%3A3007058","Helicobacter pylori pbp2 mutants conferring resistance to amoxicillin"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3007059","l":"Helicobacter pylori frxA mutation conferring resistance to metronidazole","na":1,"nb":1,"a":[["ARO%3A3007059","Helicobacter pylori frxA mutation conferring resistance to metronidazole"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007060","l":"Helicobacter pylori pbp1 mutants conferring resistance to amoxicillin","na":1,"nb":1,"a":[["ARO%3A3007060","Helicobacter pylori pbp1 mutants conferring resistance to amoxicillin"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3007061","l":"hp1165","na":1,"nb":1,"a":[["ARO%3A3007061","hp1165"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007069","l":"FosY","na":1,"nb":1,"a":[["ARO%3A3007069","FosY"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007073","l":"Bacillus subtilis rpoB mutants conferring resistance to rifampin","na":1,"nb":1,"a":[["ARO%3A3007073","Bacillus subtilis rpoB mutants conferring resistance to rifampin"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3007097","l":"FosM1","na":1,"nb":1,"a":[["ARO%3A3007097","FosM1"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007098","l":"FosM2","na":1,"nb":1,"a":[["ARO%3A3007098","FosM2"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007099","l":"FosM3","na":1,"nb":1,"a":[["ARO%3A3007099","FosM3"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007104","l":"nimA","na":1,"nb":1,"a":[["ARO%3A3007104","nimA"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007105","l":"nimC","na":1,"nb":1,"a":[["ARO%3A3007105","nimC"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007106","l":"nimD","na":1,"nb":1,"a":[["ARO%3A3007106","nimD"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007107","l":"nimE","na":1,"nb":1,"a":[["ARO%3A3007107","nimE"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007108","l":"nimF","na":1,"nb":1,"a":[["ARO%3A3007108","nimF"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007109","l":"nimG","na":1,"nb":1,"a":[["ARO%3A3007109","nimG"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007110","l":"nimH","na":1,"nb":1,"a":[["ARO%3A3007110","nimH"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007111","l":"nimI","na":1,"nb":1,"a":[["ARO%3A3007111","nimI"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007112","l":"nimJ","na":1,"nb":1,"a":[["ARO%3A3007112","nimJ"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007113","l":"nimK","na":1,"nb":1,"a":[["ARO%3A3007113","nimK"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007119","l":"tet(O/32/O)","na":1,"nb":1,"a":[["ARO%3A3007119","tet(O/32/O)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007120","l":"tet(O/M/O)","na":1,"nb":1,"a":[["ARO%3A3007120","tet(O/M/O)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007121","l":"tet(O/W)","na":1,"nb":1,"a":[["ARO%3A3007121","tet(O/W)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007122","l":"tet(O/W/32/O)","na":1,"nb":1,"a":[["ARO%3A3007122","tet(O/W/32/O)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007123","l":"tet(O/W/O)","na":1,"nb":1,"a":[["ARO%3A3007123","tet(O/W/O)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007124","l":"tet(W/32/O)","na":1,"nb":1,"a":[["ARO%3A3007124","tet(W/32/O)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007127","l":"Streptomyces lividans otr(A)","na":1,"nb":1,"a":[["ARO%3A3007127","Streptomyces lividans otr(A)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007185","l":"Mycobacterium tuberculosis Rv1258c mutations confer resistance to ethambutol and capreomycin","na":1,"nb":1,"a":[["ARO%3A3007185","Mycobacterium tuberculosis Rv1258c mutations confer resistance to ethambutol and capreomycin"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3007200","l":"PAM-2","na":1,"nb":1,"a":[["ARO%3A3007200","PAM-2"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007210","l":"Nocardia farcinica rox","na":1,"nb":1,"a":[["ARO%3A3007210","Nocardia farcinica rox"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3007368","l":"FosG","na":1,"nb":1,"a":[["ARO%3A3007368","FosG"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007369","l":"FosH","na":1,"nb":1,"a":[["ARO%3A3007369","FosH"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007370","l":"FosI","na":1,"nb":1,"a":[["ARO%3A3007370","FosI"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007371","l":"FosA8","na":1,"nb":1,"a":[["ARO%3A3007371","FosA8"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007372","l":"FosBx1","na":1,"nb":1,"a":[["ARO%3A3007372","FosBx1"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007381","l":"KPC-86","na":1,"nb":1,"a":[["ARO%3A3007381","KPC-86"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007383","l":"KPC-95","na":1,"nb":1,"a":[["ARO%3A3007383","KPC-95"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007401","l":"ANT(9)-Ib","na":1,"nb":1,"a":[["ARO%3A3007401","ANT(9)-Ib"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3007420","l":"Klebsiella pneumoniae lamB with mutations conferring resistance to ceftazidime-avibactam","na":1,"nb":1,"a":[["ARO%3A3007420","Klebsiella pneumoniae lamB with mutations conferring resistance to ceftazidime-avibactam"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007421","l":"Klebsiella pneumoniae PBP3 mutants conferring resistance to ceftazidime-avibactam","na":1,"nb":1,"a":[["ARO%3A3007421","Klebsiella pneumoniae PBP3 mutants conferring resistance to ceftazidime-avibactam"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007427","l":"ThfT","na":1,"nb":1,"a":[["ARO%3A3007427","ThfT"]],"b":[["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3007436","l":"KPC-96","na":1,"nb":1,"a":[["ARO%3A3007436","KPC-96"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007446","l":"KPC-100","na":1,"nb":1,"a":[["ARO%3A3007446","KPC-100"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007448","l":"TEM-246","na":1,"nb":1,"a":[["ARO%3A3007448","TEM-246"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007449","l":"KPC-97","na":1,"nb":1,"a":[["ARO%3A3007449","KPC-97"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007450","l":"KPC-98","na":1,"nb":1,"a":[["ARO%3A3007450","KPC-98"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007451","l":"TEM-247","na":1,"nb":1,"a":[["ARO%3A3007451","TEM-247"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007452","l":"KPC-99","na":1,"nb":1,"a":[["ARO%3A3007452","KPC-99"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007453","l":"TEM-244","na":1,"nb":1,"a":[["ARO%3A3007453","TEM-244"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007454","l":"TEM-245","na":1,"nb":1,"a":[["ARO%3A3007454","TEM-245"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007459","l":"EstT","na":1,"nb":1,"a":[["ARO%3A3007459","EstT"]],"b":[["antibacterial/tilmicosin.html","tilmicosin"]]},{"id":"ARO:3007476","l":"Mycobacterium abscessus atpE with mutation conferring resistance to bedaquiline","na":1,"nb":1,"a":[["ARO%3A3007476","Mycobacterium abscessus atpE with mutation conferring resistance to bedaquiline"]],"b":[["antimycobacterial/bedaquiline.html","bedaquiline"]]},{"id":"ARO:3007489","l":"dfrB10","na":1,"nb":1,"a":[["ARO%3A3007489","dfrB10"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3007490","l":"dfrB11","na":1,"nb":1,"a":[["ARO%3A3007490","dfrB11"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3007491","l":"Pseudomonas aeruginosa ampR with mutation conferring resistance to aztreonam","na":1,"nb":1,"a":[["ARO%3A3007491","Pseudomonas aeruginosa ampR with mutation conferring resistance to aztreonam"]],"b":[["antibacterial/aztreonam.html","aztreonam"]]},{"id":"ARO:3007492","l":"tet(62)","na":1,"nb":1,"a":[["ARO%3A3007492","tet(62)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007509","l":"Shigella flexneri acrA","na":1,"nb":1,"a":[["ARO%3A3007509","Shigella flexneri acrA"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3007515","l":"ANT(9)-Ic","na":1,"nb":1,"a":[["ARO%3A3007515","ANT(9)-Ic"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3007527","l":"Bacillus subtilis rpsE mutations conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3007527","Bacillus subtilis rpsE mutations conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3007536","l":"Mycobacterium tuberculosis 16S rRNA (rrnS) mutation conferring resistance to amikacin","na":1,"nb":1,"a":[["ARO%3A3007536","Mycobacterium tuberculosis 16S rRNA (rrnS) mutation conferring resistance to amikacin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3007537","l":"Mycobacterium tuberculosis 16S rRNA (rrnS) mutation conferring resistance to kanamycin","na":1,"nb":1,"a":[["ARO%3A3007537","Mycobacterium tuberculosis 16S rRNA (rrnS) mutation conferring resistance to kanamycin"]],"b":[["antibacterial/amikacin.html","amikacin"]]},{"id":"ARO:3007539","l":"APH(9)-Ic","na":1,"nb":1,"a":[["ARO%3A3007539","APH(9)-Ic"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3007544","l":"Erysipelothrix rhusiopathiae gyrA with mutation conferring resistance to enrofloxacin","na":1,"nb":1,"a":[["ARO%3A3007544","Erysipelothrix rhusiopathiae gyrA with mutation conferring resistance to enrofloxacin"]],"b":[["antibacterial/enrofloxacin.html","enrofloxacin"]]},{"id":"ARO:3007548","l":"Candida spp. FKS2 with mutations conferring resistance to echinocandin antibiotics","na":1,"nb":1,"a":[["ARO%3A3007548","Candida spp. FKS2 with mutations conferring resistance to echinocandin antibiotics"]],"b":[["antifungal/micafungin.html","micafungin"]]},{"id":"ARO:3007551","l":"Candida spp. Upc2 with mutations conferring resistance to azole antibiotics","na":1,"nb":1,"a":[["ARO%3A3007551","Candida spp. Upc2 with mutations conferring resistance to azole antibiotics"]],"b":[["antifungal/fluconazole.html","fluconazole"]]},{"id":"ARO:3007557","l":"Candida spp. FUR1 with mutations conferring resistance to 5-flucytosine","na":1,"nb":1,"a":[["ARO%3A3007557","Candida spp. FUR1 with mutations conferring resistance to 5-flucytosine"]],"b":[["antifungal/flucytosine.html","flucytosine"]]},{"id":"ARO:3007559","l":"Saccharomyces spp. FUR1 with mutations conferring resistance to 5-flucytosine","na":1,"nb":1,"a":[["ARO%3A3007559","Saccharomyces spp. FUR1 with mutations conferring resistance to 5-flucytosine"]],"b":[["antifungal/flucytosine.html","flucytosine"]]},{"id":"ARO:3007561","l":"OXA-1038","na":1,"nb":1,"a":[["ARO%3A3007561","OXA-1038"]],"b":[["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3007562","l":"OXA-1039","na":1,"nb":1,"a":[["ARO%3A3007562","OXA-1039"]],"b":[["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3007566","l":"Cryptococcus spp. AFR1","na":1,"nb":1,"a":[["ARO%3A3007566","Cryptococcus spp. AFR1"]],"b":[["antifungal/fluconazole.html","fluconazole"]]},{"id":"ARO:3007568","l":"Cryptococcus spp. UXS1 conferring resistance to 5-flucytosine via absence","na":1,"nb":1,"a":[["ARO%3A3007568","Cryptococcus spp. UXS1 conferring resistance to 5-flucytosine via absence"]],"b":[["antifungal/flucytosine.html","flucytosine"]]},{"id":"ARO:3007642","l":"Aspergillus spp. fcyB conferring resistance to 5-flucytosine via reduced permeability","na":1,"nb":1,"a":[["ARO%3A3007642","Aspergillus spp. fcyB conferring resistance to 5-flucytosine via reduced permeability"]],"b":[["antifungal/flucytosine.html","flucytosine"]]},{"id":"ARO:3007664","l":"Candida spp. High Osmolarity Glycerol 1 conferring resistance to caspofungin via absence","na":1,"nb":1,"a":[["ARO%3A3007664","Candida spp. High Osmolarity Glycerol 1 conferring resistance to caspofungin via absence"]],"b":[["antifungal/caspofungin.html","caspofungin"]]},{"id":"ARO:3007665","l":"Candida spp. FCY2 conferring resistance to 5-flucytosine via reduced permeability","na":1,"nb":1,"a":[["ARO%3A3007665","Candida spp. FCY2 conferring resistance to 5-flucytosine via reduced permeability"]],"b":[["antifungal/flucytosine.html","flucytosine"]]},{"id":"ARO:3007671","l":"Clostridioides difficile nimB","na":1,"nb":1,"a":[["ARO%3A3007671","Clostridioides difficile nimB"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007674","l":"Mycobacterium tuberculosis Rv0678 with mutation conferring resistance to bedaquiline","na":1,"nb":1,"a":[["ARO%3A3007674","Mycobacterium tuberculosis Rv0678 with mutation conferring resistance to bedaquiline"]],"b":[["antimycobacterial/bedaquiline.html","bedaquiline"]]},{"id":"ARO:3007678","l":"IreK","na":1,"nb":1,"a":[["ARO%3A3007678","IreK"]],"b":[["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3007749","l":"Salmonella gallinarum folP with mutation conferring resistance to sulfonamides","na":1,"nb":1,"a":[["ARO%3A3007749","Salmonella gallinarum folP with mutation conferring resistance to sulfonamides"]],"b":[["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3007759","l":"Treponema pallidum 23S rRNA with mutation conferring resistance to erythromycin","na":1,"nb":1,"a":[["ARO%3A3007759","Treponema pallidum 23S rRNA with mutation conferring resistance to erythromycin"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3007794","l":"Vibrio vulnificus rpoB mutants conferring resistance to rifampin","na":1,"nb":1,"a":[["ARO%3A3007794","Vibrio vulnificus rpoB mutants conferring resistance to rifampin"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3007798","l":"Mycobacterium tuberculosis iniA mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3007798","Mycobacterium tuberculosis iniA mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3007806","l":"Mycobacterium tuberculosis gyrA mutations conferring resistance to moxifloxacin","na":1,"nb":1,"a":[["ARO%3A3007806","Mycobacterium tuberculosis gyrA mutations conferring resistance to moxifloxacin"]],"b":[["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3007807","l":"Mycobacterium tuberculosis gyrA mutations conferring resistance to ofloxacin","na":1,"nb":1,"a":[["ARO%3A3007807","Mycobacterium tuberculosis gyrA mutations conferring resistance to ofloxacin"]],"b":[["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3007808","l":"Mycobacterium tuberculosis gyrB mutations conferring resistance to ofloxacin","na":1,"nb":1,"a":[["ARO%3A3007808","Mycobacterium tuberculosis gyrB mutations conferring resistance to ofloxacin"]],"b":[["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3007809","l":"Mycobacterium tuberculosis gyrA mutations conferring resistance to levofloxacin","na":1,"nb":1,"a":[["ARO%3A3007809","Mycobacterium tuberculosis gyrA mutations conferring resistance to levofloxacin"]],"b":[["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"ARO:3007810","l":"Mycobacterium tuberculosis gyrB mutations conferring resistance to levofloxacin","na":1,"nb":1,"a":[["ARO%3A3007810","Mycobacterium tuberculosis gyrB mutations conferring resistance to levofloxacin"]],"b":[["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"ARO:3007811","l":"Mycobacterium tuberculosis fabG1 with mutations conferring resistance to prothionamide","na":1,"nb":1,"a":[["ARO%3A3007811","Mycobacterium tuberculosis fabG1 with mutations conferring resistance to prothionamide"]],"b":[["antibacterial/prothionamide.html","prothionamide"]]},{"id":"ARO:3007838","l":"tet(65)","na":1,"nb":1,"a":[["ARO%3A3007838","tet(65)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007843","l":"VRA-F","na":1,"nb":1,"a":[["ARO%3A3007843","VRA-F"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3007849","l":"Mycobacterium tuberculosis fgd1 with mutation conferring resistance to delamanid","na":1,"nb":1,"a":[["ARO%3A3007849","Mycobacterium tuberculosis fgd1 with mutation conferring resistance to delamanid"]],"b":[["antibacterial/delamanid.html","delamanid"]]},{"id":"ARO:3007852","l":"Mycobacterium tuberculosis Rv0678 with mutation conferring resistance to clofazimine","na":1,"nb":1,"a":[["ARO%3A3007852","Mycobacterium tuberculosis Rv0678 with mutation conferring resistance to clofazimine"]],"b":[["antimycobacterial/clofazimine.html","clofazimine"]]},{"id":"ARO:3007854","l":"Mycobacterium tuberculosis atpE with mutation conferring resistance to bedaquiline","na":1,"nb":1,"a":[["ARO%3A3007854","Mycobacterium tuberculosis atpE with mutation conferring resistance to bedaquiline"]],"b":[["antimycobacterial/bedaquiline.html","bedaquiline"]]},{"id":"ARO:3007857","l":"KPC-134","na":1,"nb":1,"a":[["ARO%3A3007857","KPC-134"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"CHEBI:10015","l":"vobasine","na":1,"nb":1,"a":[["RHEA%3A76147","perivine + S-adenosyl-L-methionine = vobasine + S-adenosyl-L-homocysteine + 2 H(+)"]],"b":[["antiviral/vobasine.html","vobasine"]]},{"id":"CHEBI:100241","l":"ciprofloxacin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CPF","CPF-binding site"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"CHEBI:127780","l":"phosphonoformic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PPF","PPF-binding site"]],"b":[["antiviral/phosphonoformic-acid.html","phosphonoformic acid"]]},{"id":"CHEBI:133741","l":"(E)-dodec-2-enal","na":1,"nb":1,"a":[["RHEA%3A50784","dodecanal + NADP(+) = (2E)-dodecenal + NADPH + H(+)"]],"b":[["antibacterial/e-dodec-2-enal.html","(E)-dodec-2-enal"]]},{"id":"CHEBI:134347","l":"glandicoline B","na":1,"nb":1,"a":[["RHEA%3A51732","glandicoline B + S-adenosyl-L-methionine = meleagrin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/glandicoline-b.html","glandicoline B"]]},{"id":"CHEBI:135029","l":"cycloguanil","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_1CY","1CY-binding site"]],"b":[["antiprotozoal/cycloguanil.html","cycloguanil"]]},{"id":"CHEBI:137236","l":"ilomastat","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_GM6","GM6-binding site"]],"b":[["antibacterial/ilomastat.html","ilomastat"]]},{"id":"CHEBI:138511","l":"piericidin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HQH","HQH-binding site"]],"b":[["unspecified/piericidin-a.html","piericidin A"]]},{"id":"CHEBI:140376","l":"cefiderocol","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_140376","requires cefiderocol"]],"b":[["antibacterial/cefiderocol.html","cefiderocol"]]},{"id":"CHEBI:142921","l":"","na":1,"nb":1,"a":[["RHEA%3A79335","cinnamyl alcohol + 2 Fe(III)-[cytochrome c] = cinnamaldehyde + 2 Fe(II)-[cytochrome c] + 2 H(+)"]],"b":[["antifungal/e-cinnamaldehyde.html","(E)-cinnamaldehyde"]]},{"id":"CHEBI:144586","l":"4-hydroxy-2-oxobutanal","na":1,"nb":1,"a":[["RHEA%3A21212","N(6)-(3-O-phospho-D-erythrulosyl)-L-lysyl-[protein] + H2O = 4-hydroxy-2-oxobutanal + L-lysyl-[protein] + phosphate"]],"b":[["antibacterial/4-hydroxy-2-oxobutanal.html","4-hydroxy-2-oxobutanal"]]},{"id":"CHEBI:145026","l":"L-psicose","na":1,"nb":1,"a":[["RHEA%3A61784","L-allulose = keto-L-fructose"]],"b":[["antiviral/l-psicose.html","L-psicose"]]},{"id":"CHEBI:145043","l":"solasodine(1+)","na":1,"nb":1,"a":[["RHEA%3A61844","solasodine + UDP-alpha-D-glucose = solasodine 3-beta-D-glucoside + UDP + H(+)"]],"b":[["antifungal/solasodine-1.html","solasodine(1+)"]]},{"id":"CHEBI:145950","l":"nigerone","na":1,"nb":1,"a":[["RHEA%3A62792","2 rubrofusarin B + NADPH + O2 + 3 H(+) = nigerone + NADP(+) + 2 H2O"]],"b":[["antifungal/nigerone.html","nigerone"]]},{"id":"CHEBI:146007","l":"(M)-viriditoxin","na":1,"nb":1,"a":[["RHEA%3A62884","4 semiviriditoxin + O2 = 2 (M)-viriditoxin + 2 H2O"]],"b":[["antibacterial/m-viriditoxin.html","(M)-viriditoxin"]]},{"id":"CHEBI:15353","l":"blasticidin S","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BLS","BLS-binding site"]],"b":[["antifungal/blasticidin-s.html","blasticidin S"]]},{"id":"CHEBI:155860","l":"2,4-dihydroxy-3-methyl-6-(2-oxopropyl)benzaldehyde","na":1,"nb":1,"a":[["RHEA%3A64508","4 malonyl-CoA + acetyl-CoA + AH2 + S-adenosyl-L-methionine + 3 H(+) = 2,4-dihydroxy-3-methyl-6-(2-oxopropyl)benzaldehyde + A + S-adenosyl-L-homocysteine + 4 CO2 + 5 CoA + H2O"]],"b":[["antibacterial/2-4-dihydroxy-3-methyl-6-2-oxopropyl-benzaldehyde.html","2,4-dihydroxy-3-methyl-6-(2-oxopropyl)benzaldehyde"]]},{"id":"CHEBI:156070","l":"butyl benzoate","na":1,"nb":1,"a":[["RHEA%3A64636","butan-1-ol + benzoyl-CoA = butyl benzoate + CoA"]],"b":[["biocide/butyl-benzoate.html","butyl benzoate"]]},{"id":"CHEBI:156511","l":"poacic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_V5M","V5M-binding site"]],"b":[["antifungal/poacic-acid.html","poacic acid"]]},{"id":"CHEBI:15732","l":"phosphonoacetic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PAE","PAE-binding site"]],"b":[["antiviral/phosphonoacetic-acid.html","phosphonoacetic acid"]]},{"id":"CHEBI:15756","l":"palmitic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PLM","PLM-binding site"]],"b":[["antibacterial/palmitic-acid.html","palmitic acid"]]},{"id":"CHEBI:16243","l":"quercetin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_QUE","QUE-binding site"]],"b":[["antibacterial/quercetin.html","quercetin"]]},{"id":"CHEBI:16348","l":"3-nitropropanoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_3NP","3NP-binding site"]],"b":[["antimycobacterial/3-nitropropanoic-acid.html","3-nitropropanoic acid"]]},{"id":"CHEBI:164200","l":"triclosan","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TCL","TCL-binding site"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"CHEBI:167176","l":"GRL-0617","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TTT","TTT-binding site"]],"b":[["antiviral/grl-0617.html","GRL-0617"]]},{"id":"CHEBI:168396","l":"mycophenolic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MOA","MOA-binding site"]],"b":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]]},{"id":"CHEBI:16914","l":"salicylic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SAL","SAL-binding site"]],"b":[["antifungal/salicylic-acid.html","salicylic acid"]]},{"id":"CHEBI:16961","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"]],"b":[["antibacterial/bacilysocin.html","bacilysocin"]]},{"id":"CHEBI:17351","l":"linoleic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_EIC","EIC-binding site"]],"b":[["antibacterial/linoleic-acid.html","linoleic acid"]]},{"id":"CHEBI:17558","l":"quercitrin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_QCT","QCT-binding site"]],"b":[["antiprotozoal/quercitrin.html","quercitrin"]]},{"id":"CHEBI:175901","l":"gemcitabine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_GEO","GEO-binding site"]],"b":[["antiviral/gemcitabine.html","gemcitabine"]]},{"id":"CHEBI:17642","l":"pentachlorophenol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PCI","PCI-binding site"]],"b":[["antifungal/pentachlorophenol.html","pentachlorophenol"]]},{"id":"CHEBI:17656","l":"(R)-mandelic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RMN","RMN-binding site"]],"b":[["antibacterial/r-mandelic-acid.html","(R)-mandelic acid"]]},{"id":"CHEBI:17658","l":"tylosin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TYK","TYK-binding site"]],"b":[["antibacterial/tylosin.html","tylosin"]]},{"id":"CHEBI:177047","l":"velutin","na":1,"nb":1,"a":[["RHEA%3A73083","chrysoeriol + S-adenosyl-L-methionine = velutin + S-adenosyl-L-homocysteine"]],"b":[["antibacterial/velutin.html","velutin"]]},{"id":"CHEBI:177878","l":"","na":1,"nb":1,"a":[["RHEA%3A68396","a percarboxylic acid + H2O = a carboxylate + H2O2 + H(+)"]],"b":[["biocide/peracetic-acid.html","peracetic acid"]]},{"id":"CHEBI:18203","l":"penicillin N","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["unspecified/penicillin-n.html","penicillin N"]]},{"id":"CHEBI:18208","l":"benzylpenicillin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PNN","PNN-binding site"]],"b":[["antibacterial/benzylpenicillin.html","benzylpenicillin"]]},{"id":"CHEBI:190786","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_KIR","KIR-binding site"]],"b":[["antibacterial/kirromycin.html","kirromycin"]]},{"id":"CHEBI:194138","l":"methyl trans-cinnamate","na":1,"nb":1,"a":[["RHEA%3A74871","(E)-cinnamate + S-adenosyl-L-methionine = (E)-cinnamic acid methyl ester + S-adenosyl-L-homocysteine"]],"b":[["antibacterial/methyl-trans-cinnamate.html","methyl trans-cinnamate"]]},{"id":"CHEBI:220158","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BLJ","BLJ-binding site"]],"b":[["antibacterial/arsinothricin.html","arsinothricin"]]},{"id":"CHEBI:22632","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.59","The Arsenical Resistance-3 (ACR3) Family"]],"b":[["antibacterial/sodium-arsenite.html","sodium arsenite"]]},{"id":"CHEBI:231919","l":"fluopsin","na":1,"nb":1,"a":[["RHEA%3A82395","thiohydroxamate + S-adenosyl-L-methionine = fluopsin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/fluopsin.html","fluopsin"]]},{"id":"CHEBI:233443","l":"","na":1,"nb":1,"a":[["RHEA%3A83863","an L-alpha-amino acid + acetyl-CoA = an N-acetyl-L-alpha-amino acid + CoA + H(+)"]],"b":[["antiviral/n-acetyl-l-cysteinate.html","N-acetyl-L-cysteinate"]]},{"id":"CHEBI:234507","l":"2-chloroacetamide","na":1,"nb":1,"a":[["RHEA%3A85695","chloroacetamide = chloroacetonitrile + H2O"]],"b":[["antifungal/2-chloroacetamide.html","2-chloroacetamide"]]},{"id":"CHEBI:23981","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"CHEBI:24402","l":"","na":1,"nb":1,"a":[["TCDB%3A3.A.3","The P-type ATPase (P-ATPase) Superfamily"]],"b":[["antifungal/oceanalin-a.html","oceanalin A"]]},{"id":"CHEBI:2637","l":"amikacin","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/amikacin.html","amikacin"]]},{"id":"CHEBI:2674","l":"amodiaquine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CQA","CQA-binding site"]],"b":[["antiprotozoal/amodiaquine.html","amodiaquine"]]},{"id":"CHEBI:2682","l":"amphotericin B","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_4UH","4UH-binding site"]],"b":[["antifungal/amphotericin-b.html","amphotericin B"]]},{"id":"CHEBI:27093","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.54","The Sideroflexin (SFXN) Family (formerly the Mitochondrial Tricarboxylate Carrier (MTC) Family)"]],"b":[["unspecified/citric-acid.html","citric acid"]]},{"id":"CHEBI:27779","l":"griseofulvin","na":1,"nb":1,"a":[["RHEA%3A73943","dehydrogriseofulvin + NADPH + H(+) = griseofulvin + NADP(+)"]],"b":[["antibacterial/griseofulvin.html","griseofulvin"]]},{"id":"CHEBI:27784","l":"gentamycin C1a","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_LLL","LLL-binding site"]],"b":[["unspecified/gentamycin-c1a.html","gentamycin C1a"]]},{"id":"CHEBI:27834","l":"pentostatin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DCF","DCF-binding site"]],"b":[["unspecified/pentostatin.html","pentostatin"]]},{"id":"CHEBI:27860","l":"castanospermine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CTS","CTS-binding site"]],"b":[["antiviral/castanospermine.html","castanospermine"]]},{"id":"CHEBI:28098","l":"kanamycin B","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9CS","9CS-binding site"]],"b":[["unspecified/kanamycin-b.html","kanamycin B"]]},{"id":"CHEBI:28121","l":"harmine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HRM","HRM-binding site"]],"b":[["antiviral/harmine.html","harmine"]]},{"id":"CHEBI:28147","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_8MM","8MM-binding site"]],"b":[["unspecified/n2-acetylgentamycin-c1a.html","N2'-acetylgentamycin C1a"]]},{"id":"CHEBI:28148","l":"sodium stibogluconate","na":1,"nb":1,"a":[["TCDB%3A1.A.8","The Major Intrinsic Protein (MIP) Family"]],"b":[["antiprotozoal/sodium-stibogluconate.html","sodium stibogluconate"]]},{"id":"CHEBI:28217","l":"acrylonitrile","na":1,"nb":1,"a":[["RHEA%3A85611","acrylamide = acrylonitrile + H2O"]],"b":[["antifungal/acrylonitrile.html","acrylonitrile"]]},{"id":"CHEBI:28285","l":"oligomycin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_EFO","EFO-binding site"]],"b":[["antifungal/oligomycin-a.html","oligomycin A"]]},{"id":"CHEBI:28368","l":"novobiocin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NOV","NOV-binding site"]],"b":[["antibacterial/novobiocin.html","novobiocin"]]},{"id":"CHEBI:28499","l":"kaempferol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_KMP","KMP-binding site"]],"b":[["antibacterial/kaempferol.html","kaempferol"]]},{"id":"CHEBI:28631","l":"3-phenylpropionic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HCI","HCI-binding site"]],"b":[["antifungal/3-phenylpropionic-acid.html","3-phenylpropionic acid"]]},{"id":"CHEBI:28748","l":"doxorubicin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DM2","DM2-binding site"]],"b":[["unspecified/doxorubicin.html","doxorubicin"]]},{"id":"CHEBI:28837","l":"octanoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_OCA","OCA-binding site"]],"b":[["antibacterial/octanoic-acid.html","octanoic acid"]]},{"id":"CHEBI:28864","l":"tobramycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TOY","TOY-binding site"]],"b":[["antibacterial/tobramycin.html","tobramycin"]]},{"id":"CHEBI:28905","l":"prop-2-yn-1-ol","na":1,"nb":1,"a":[["RHEA%3A31247","prop-2-ynal + pyrroloquinoline quinol + H(+) = prop-2-yn-1-ol + pyrroloquinoline quinone"]],"b":[["antifungal/prop-2-yn-1-ol.html","prop-2-yn-1-ol"]]},{"id":"CHEBI:28939","l":"N-acetyl-L-cysteine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SC2","SC2-binding site"]],"b":[["antiviral/n-acetyl-l-cysteine.html","N-acetyl-L-cysteine"]]},{"id":"CHEBI:2896","l":"astemizole","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_XB7","XB7-binding site"]],"b":[["antiviral/astemizole.html","astemizole"]]},{"id":"CHEBI:28971","l":"ampicillin","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/ampicillin.html","ampicillin"]]},{"id":"CHEBI:29013","l":"fusidic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_FUA","FUA-binding site"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"CHEBI:29014","l":"cordycepin","na":1,"nb":1,"a":[["RHEA%3A79047","cordycepin + H2O + H(+) = 3'-deoxyinosine + NH4(+)"]],"b":[["antibacterial/cordycepin.html","cordycepin"]]},{"id":"CHEBI:29582","l":"ascomycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_KXX","KXX-binding site"]],"b":[["antifungal/ascomycin.html","ascomycin"]]},{"id":"CHEBI:29699","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"]],"b":[["antibacterial/tunicamycin.html","tunicamycin"]]},{"id":"CHEBI:29703","l":"validamycin A","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/validamycin-a.html","validamycin A"]]},{"id":"CHEBI:3000","l":"beauvericin","na":1,"nb":1,"a":[["RHEA%3A62276","3 (R)-2-hydroxy-3-methylbutanoate + 3 L-phenylalanine + 3 S-adenosyl-L-methionine + 6 ATP = beauvericin + 6 AMP + 3 S-adenosyl-L-homocysteine + 6 diphosphate + 6 H(+)"]],"b":[["antifungal/beauvericin.html","beauvericin"]]},{"id":"CHEBI:3015","l":"benomyl","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/benomyl.html","benomyl"]]},{"id":"CHEBI:30769","l":"citric acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CIT","CIT-binding site"]],"b":[["unspecified/citric-acid.html","citric acid"]]},{"id":"CHEBI:30813","l":"decanoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DKA","DKA-binding site"]],"b":[["antibacterial/decanoic-acid.html","decanoic acid"]]},{"id":"CHEBI:3087","l":"betulinic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_06L","06L-binding site"]],"b":[["antiprotozoal/betulinic-acid.html","betulinic acid"]]},{"id":"CHEBI:315019","l":"cilofungin","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/cilofungin.html","cilofungin"]]},{"id":"CHEBI:31781","l":"lopinavir","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antiviral/lopinavir.html","lopinavir"]]},{"id":"CHEBI:31856","l":"mithramycin","na":1,"nb":1,"a":[["RHEA%3A85455","iso-mithramycin = mithramycin"]],"b":[["unspecified/mithramycin.html","mithramycin"]]},{"id":"CHEBI:32079","l":"pyrrolnitrin","na":1,"nb":1,"a":[["RHEA%3A46136","aminopyrrolnitrin + NADPH + 2 O2 + H(+) = pyrrolnitrin + NADP(+) + 2 H2O"]],"b":[["antifungal/pyrrolnitrin.html","pyrrolnitrin"]]},{"id":"CHEBI:32174","l":"","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/syringomycin-e.html","syringomycin E"]]},{"id":"CHEBI:32368","l":"undecanoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_11A","11A-binding site"]],"b":[["antifungal/undecanoic-acid.html","undecanoic acid"]]},{"id":"CHEBI:3259","l":"CCCP","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/cccp.html","CCCP"]]},{"id":"CHEBI:32800","l":"(S)-mandelic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SMN","SMN-binding site"]],"b":[["antibacterial/s-mandelic-acid.html","(S)-mandelic acid"]]},{"id":"CHEBI:32888","l":"γ-hexachlorocyclohexane","na":1,"nb":1,"a":[["RHEA%3A45480","gamma-hexachlorocyclohexane = (3R,4S,5S,6R)-pentachlorocyclohexene + chloride + H(+)"]],"b":[["antibacterial/%CE%B3-hexachlorocyclohexane.html","γ-hexachlorocyclohexane"]]},{"id":"CHEBI:3405","l":"carboxin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CBE","CBE-binding site"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"CHEBI:34652","l":"compactin diol lactone","na":1,"nb":1,"a":[["RHEA%3A62744","mevastatin + H2O = compactin diol lactone + (S)-2-methylbutanoate + H(+)"]],"b":[["unspecified/compactin-diol-lactone.html","compactin diol lactone"]]},{"id":"CHEBI:34908","l":"pentachloronitrobenzene","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/pentachloronitrobenzene.html","pentachloronitrobenzene"]]},{"id":"CHEBI:3493","l":"cefoperazone","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/cefoperazone.html","cefoperazone"]]},{"id":"CHEBI:3503","l":"cefpirome","na":1,"nb":1,"a":[["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"]],"b":[["antibacterial/cefpirome.html","cefpirome"]]},{"id":"CHEBI:35356","l":"","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/cycloheximide.html","cycloheximide"]]},{"id":"CHEBI:3537","l":"cefaloridine","na":1,"nb":1,"a":[["TCDB%3A1.B.6","The OmpA-OmpF Porin (OOP) Family"]],"b":[["antibacterial/cefaloridine.html","cefaloridine"]]},{"id":"CHEBI:3547","l":"cephradine","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/cephradine.html","cephradine"]]},{"id":"CHEBI:35817","l":"roxarsone","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/roxarsone.html","roxarsone"]]},{"id":"CHEBI:36243","l":"","na":1,"nb":1,"a":[["RHEA%3A48484","a propanoate ester + H2O = an aliphatic alcohol + propanoate + H(+)"]],"b":[["antifungal/metarylpicoxamid.html","metarylpicoxamid"]]},{"id":"CHEBI:3639","l":"chlorothalonil","na":1,"nb":1,"a":[["RHEA%3A65016","chlorothalonil + H2O = 4-hydroxychlorothalonil + chloride + 2 H(+)"]],"b":[["antifungal/chlorothalonil.html","chlorothalonil"]]},{"id":"CHEBI:3647","l":"chlorpromazine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_Z80","Z80-binding site"]],"b":[["antiviral/chlorpromazine.html","chlorpromazine"]]},{"id":"CHEBI:367163","l":"darunavir","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_017","017-binding site"]],"b":[["antiviral/darunavir.html","darunavir"]]},{"id":"CHEBI:36843","l":"","na":1,"nb":1,"a":[["RHEA%3A82271","7alpha-hydroxy steroid + NADP(+) = a 7-oxosteroid + NADPH + H(+)"]],"b":[["antifungal/9%CE%BE-14%CE%BE-25s-cholestane-3%CE%B2-4%CE%B2-6%CE%B2-7%CE%B1-8-15%CE%B1-16%CE%B2-26-octol.html","(9ξ,14ξ,25S)-cholestane-3β,4β,6β,7α,8,15α,16β,26-octol"]]},{"id":"CHEBI:3687","l":"chrysophanol","na":1,"nb":1,"a":[["RHEA%3A64276","chrysophanol-9-anthrone + O2 = chrysophanol + H2O"]],"b":[["antiviral/chrysophanol.html","chrysophanol"]]},{"id":"CHEBI:3745","l":"clindamycin","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/clindamycin.html","clindamycin"]]},{"id":"CHEBI:3749","l":"clofazimine","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antimycobacterial/clofazimine.html","clofazimine"]]},{"id":"CHEBI:37924","l":"atazanavir","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DR7","DR7-binding site"]],"b":[["antiviral/atazanavir.html","atazanavir"]]},{"id":"CHEBI:38167","l":"physcion","na":1,"nb":1,"a":[["RHEA%3A76767","emodin + S-adenosyl-L-methionine = physcion + S-adenosyl-L-homocysteine"]],"b":[["antibacterial/physcion.html","physcion"]]},{"id":"CHEBI:38291","l":"dihydrostreptomycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_71R","71R-binding site"]],"b":[["unspecified/dihydrostreptomycin.html","dihydrostreptomycin"]]},{"id":"CHEBI:38320","l":"(+)-usnic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_AIY","AIY-binding site"]],"b":[["antifungal/usnic-acid-38320.html","(+)-usnic acid"]]},{"id":"CHEBI:39352","l":"","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["unspecified/nifursol.html","nifursol"]]},{"id":"CHEBI:39932","l":"(R)-oct-1-en-3-ol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_3OL","3OL-binding site"]],"b":[["unspecified/r-oct-1-en-3-ol.html","(R)-oct-1-en-3-ol"]]},{"id":"CHEBI:40009","l":"D-cycloserine","na":1,"nb":1,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"]],"b":[["antimycobacterial/d-cycloserine.html","D-cycloserine"]]},{"id":"CHEBI:40021","l":"tiratricol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_4HY","4HY-binding site"]],"b":[["antiviral/tiratricol.html","tiratricol"]]},{"id":"CHEBI:404903","l":"ertapenem","na":1,"nb":1,"a":[["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"]],"b":[["antibacterial/ertapenem.html","ertapenem"]]},{"id":"CHEBI:41425","l":"(7R)-7-(4-carboxybutanamido)cephalosporanic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CEN","CEN-binding site"]],"b":[["unspecified/7r-7-4-carboxybutanamido-cephalosporanic-acid.html","(7R)-7-(4-carboxybutanamido)cephalosporanic acid"]]},{"id":"CHEBI:41688","l":"crystal violet","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/crystal-violet.html","crystal violet"]]},{"id":"CHEBI:41872","l":"dequalinium","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/dequalinium.html","dequalinium"]]},{"id":"CHEBI:41977","l":"daunorubicin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DM1","DM1-binding site"]],"b":[["unspecified/daunorubicin.html","daunorubicin"]]},{"id":"CHEBI:42068","l":"idarubicin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DM5","DM5-binding site"]],"b":[["unspecified/idarubicin.html","idarubicin"]]},{"id":"CHEBI:42355","l":"erythromycin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ERY","ERY-binding site"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"CHEBI:42471","l":"forskolin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_FOK","FOK-binding site"]],"b":[["antiviral/forskolin.html","forskolin"]]},{"id":"CHEBI:42600","l":"L-fucitol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_FOC","FOC-binding site"]],"b":[["antibacterial/l-fucitol.html","L-fucitol"]]},{"id":"CHEBI:42680","l":"(2-cis,6-cis)-farnesol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_FOH","FOH-binding site"]],"b":[["unspecified/2-cis-6-cis-farnesol.html","(2-cis,6-cis)-farnesol"]]},{"id":"CHEBI:43040","l":"hadacidin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HDA","HDA-binding site"]],"b":[["unspecified/hadacidin.html","hadacidin"]]},{"id":"CHEBI:4309","l":"dalfopristin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DOL","DOL-binding site"]],"b":[["antibacterial/dalfopristin.html","dalfopristin"]]},{"id":"CHEBI:43616","l":"K-252a","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_KSA","KSA-binding site"]],"b":[["unspecified/k-252a.html","K-252a"]]},{"id":"CHEBI:44032","l":"indinavir","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MK1","MK1-binding site"]],"b":[["antiviral/indinavir.html","indinavir"]]},{"id":"CHEBI:44369","l":"duvoglustat","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NOJ","NOJ-binding site"]],"b":[["antiviral/duvoglustat.html","duvoglustat"]]},{"id":"CHEBI:44499","l":"methyl nonanoate","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NON","NON-binding site"]],"b":[["antifungal/methyl-nonanoate.html","methyl nonanoate"]]},{"id":"CHEBI:45141","l":"pyroquilon","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PYQ","PYQ-binding site"]],"b":[["antifungal/pyroquilon.html","pyroquilon"]]},{"id":"CHEBI:45257","l":"ribostamycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RIO","RIO-binding site"]],"b":[["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"CHEBI:45304","l":"rifapentine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RPT","RPT-binding site"]],"b":[["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"CHEBI:45307","l":"seliciclib","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RRC","RRC-binding site"]],"b":[["antiviral/seliciclib.html","seliciclib"]]},{"id":"CHEBI:45367","l":"rifabutin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RBT","RBT-binding site"]],"b":[["antibacterial/rifabutin.html","rifabutin"]]},{"id":"CHEBI:45395","l":"pyrithiamine pyrophosphate","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PYI","PYI-binding site"]],"b":[["unspecified/pyrithiamine-pyrophosphate.html","pyrithiamine pyrophosphate"]]},{"id":"CHEBI:45409","l":"ritonavir","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RIT","RIT-binding site"]],"b":[["antiviral/ritonavir.html","ritonavir"]]},{"id":"CHEBI:45490","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RVP","RVP-binding site"]],"b":[["antiviral/ribavirin-5-monophosphate.html","ribavirin 5'-monophosphate"]]},{"id":"CHEBI:45906","l":"suramin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SVR","SVR-binding site"]],"b":[["antiprotozoal/suramin.html","suramin"]]},{"id":"CHEBI:45924","l":"trimethoprim","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TOP","TOP-binding site"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"CHEBI:45979","l":"thiabendazole","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TMG","TMG-binding site"]],"b":[["antifungal/thiabendazole.html","thiabendazole"]]},{"id":"CHEBI:46024","l":"trichostatin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TSN","TSN-binding site"]],"b":[["antifungal/trichostatin-a.html","trichostatin A"]]},{"id":"CHEBI:46345","l":"5-fluorouracil","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_URF","URF-binding site"]],"b":[["antifungal/5-fluorouracil.html","5-Fluorouracil"]]},{"id":"CHEBI:4640","l":"diphenylamine","na":1,"nb":1,"a":[["TCDB%3A9.A.11","The Dipicolinic Acid Transporter (DPA-T) Family"]],"b":[["antifungal/diphenylamine.html","diphenylamine"]]},{"id":"CHEBI:4672","l":"docetaxel anhydrous","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antiprotozoal/docetaxel-anhydrous.html","docetaxel anhydrous"]]},{"id":"CHEBI:46953","l":"","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["unspecified/adxanthromycin-a.html","adxanthromycin A"]]},{"id":"CHEBI:473992","l":"nystatin A1","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_A1AZ7","A1AZ7-binding site"]],"b":[["antifungal/nystatin-a1.html","nystatin A1"]]},{"id":"CHEBI:47780","l":"clomipramine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CXX","CXX-binding site"]],"b":[["antiviral/clomipramine.html","clomipramine"]]},{"id":"CHEBI:48131","l":"nonanedioic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_AZ1","AZ1-binding site"]],"b":[["antibacterial/nonanedioic-acid.html","nonanedioic acid"]]},{"id":"CHEBI:48267","l":"tubercidin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TBN","TBN-binding site"]],"b":[["antifungal/tubercidin.html","tubercidin"]]},{"id":"CHEBI:48545","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.67","The Oligopeptide Transporter (OPT) Family"]],"b":[["unspecified/n-palmitoyl-s-2-3-bis-palmitoyloxy-propyl-cys-ser-lys-lys-lys-lys.html","N-palmitoyl-S-[2,3-bis(palmitoyloxy)propyl]-Cys-Ser-Lys-Lys-Lys-Lys"]]},{"id":"CHEBI:48811","l":"(R)-chloroquine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CLQ","CLQ-binding site"]],"b":[["antiprotozoal/r-chloroquine.html","(R)-chloroquine"]]},{"id":"CHEBI:4893","l":"ethyl acetoacetate","na":1,"nb":1,"a":[["RHEA%3A68144","ethyl 3-oxobutanoate + NADPH + H(+) = ethyl (R)-3-hydroxybutanoate + NADP(+)"]],"b":[["antibacterial/ethyl-acetoacetate.html","ethyl acetoacetate"]]},{"id":"CHEBI:48947","l":"clavulanic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_J01","J01-binding site"]],"b":[["antibacterial/clavulanic-acid.html","clavulanic acid"]]},{"id":"CHEBI:48958","l":"diamide","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["unspecified/diamide.html","diamide"]]},{"id":"CHEBI:49026","l":"N-acetyl-α-neuraminic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SIA","SIA-binding site"]],"b":[["antiviral/n-acetyl-%CE%B1-neuraminic-acid.html","N-acetyl-α-neuraminic acid"]]},{"id":"CHEBI:49375","l":"dasatinib (anhydrous)","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_1N1","1N1-binding site"]],"b":[["antiviral/dasatinib-anhydrous.html","dasatinib (anhydrous)"]]},{"id":"CHEBI:50381","l":"miglustat","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NBV","NBV-binding site"]],"b":[["antiviral/miglustat.html","miglustat"]]},{"id":"CHEBI:50437","l":"nocardamine","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_50437","requires desferrioxamine E"]],"b":[["antibacterial/nocardamine.html","nocardamine"]]},{"id":"CHEBI:50663","l":"zanamivir","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ZMR","ZMR-binding site"]],"b":[["antiviral/zanamivir.html","zanamivir"]]},{"id":"CHEBI:50694","l":"minocycline","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MIY","MIY-binding site"]],"b":[["antibacterial/minocycline.html","minocycline"]]},{"id":"CHEBI:52172","l":"nilotinib","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NIL","NIL-binding site"]],"b":[["antiviral/nilotinib.html","nilotinib"]]},{"id":"CHEBI:52289","l":"wortmannin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_KWT","KWT-binding site"]],"b":[["antiviral/wortmannin.html","wortmannin"]]},{"id":"CHEBI:52316","l":"cordycepin triphosphate","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_3AT","3AT-binding site"]],"b":[["antifungal/cordycepin-triphosphate.html","cordycepin triphosphate"]]},{"id":"CHEBI:52646","l":"leptomycin B","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/leptomycin-b.html","leptomycin B"]]},{"id":"CHEBI:52717","l":"bortezomib","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BO2","BO2-binding site"]],"b":[["antiprotozoal/bortezomib.html","bortezomib"]]},{"id":"CHEBI:556075","l":"radicicol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RDC","RDC-binding site"]],"b":[["antifungal/radicicol.html","radicicol"]]},{"id":"CHEBI:575568","l":"atovaquone","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_AOQ","AOQ-binding site"]],"b":[["antifungal/atovaquone.html","atovaquone"]]},{"id":"CHEBI:59349","l":"cefepime(1+)","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9WT","9WT-binding site"]],"b":[["unspecified/cefepime-1.html","cefepime(1+)"]]},{"id":"CHEBI:60761","l":"floxuridine","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antiviral/floxuridine.html","floxuridine"]]},{"id":"CHEBI:623918","l":"nikkomycin Z","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BGI","BGI-binding site"]],"b":[["antifungal/nikkomycin-z.html","nikkomycin Z"]]},{"id":"CHEBI:63207","l":"mycinamicin III","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ZM3","ZM3-binding site"]],"b":[["unspecified/mycinamicin-iii.html","mycinamicin III"]]},{"id":"CHEBI:63285","l":"mycinamicin VI","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MVI","MVI-binding site"]],"b":[["unspecified/mycinamicin-vi.html","mycinamicin VI"]]},{"id":"CHEBI:63580","l":"ribavirin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RBV","RBV-binding site"]],"b":[["antiviral/ribavirin.html","ribavirin"]]},{"id":"CHEBI:63599","l":"fludarabine phosphate","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antiviral/fludarabine-phosphate.html","fludarabine phosphate"]]},{"id":"CHEBI:63611","l":"moxifloxacin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MFX","MFX-binding site"]],"b":[["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"CHEBI:63624","l":"telbivudine","na":1,"nb":1,"a":[["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"]],"b":[["antiviral/telbivudine.html","telbivudine"]]},{"id":"CHEBI:63684","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_YMZ","YMZ-binding site"]],"b":[["antiprotozoal/11r-2-s-erythro-mefloquine.html","(+)-(11R,2'S)-erythro-mefloquine"]]},{"id":"CHEBI:64250","l":"tunicamycin B2","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9LH","9LH-binding site"]],"b":[["unspecified/tunicamycin-b2.html","tunicamycin B2"]]},{"id":"CHEBI:64355","l":"posaconazole","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_X2N","X2N-binding site"]],"b":[["antifungal/posaconazole.html","posaconazole"]]},{"id":"CHEBI:66065","l":"IC202A","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_66065","requires IC202A"]],"b":[["unspecified/ic202a.html","IC202A"]]},{"id":"CHEBI:66067","l":"IC202C","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_66067","requires IC202C"]],"b":[["unspecified/ic202c.html","IC202C"]]},{"id":"CHEBI:66104","l":"jaspamide","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9UE","9UE-binding site"]],"b":[["antifungal/jaspamide.html","jaspamide"]]},{"id":"CHEBI:66222","l":"thiomarinol C","na":1,"nb":1,"a":[["RHEA%3A75895","marinoloyl-CoA C + holothin = thiomarinol C + CoA"]],"b":[["antibacterial/thiomarinol-c.html","thiomarinol C"]]},{"id":"CHEBI:67121","l":"nitroxoline","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HNQ","HNQ-binding site"]],"b":[["antifungal/nitroxoline.html","nitroxoline"]]},{"id":"CHEBI:67559","l":"5Z-7-oxozeaenol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_1FM","1FM-binding site"]],"b":[["antibacterial/5z-7-oxozeaenol.html","5Z-7-oxozeaenol"]]},{"id":"CHEBI:67811","l":"zorbamycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_52G","52G-binding site"]],"b":[["unspecified/zorbamycin.html","zorbamycin"]]},{"id":"CHEBI:68241","l":"platencin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_N32","N32-binding site"]],"b":[["antibacterial/platencin.html","platencin"]]},{"id":"CHEBI:6827","l":"methicillin","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/methicillin.html","methicillin"]]},{"id":"CHEBI:6909","l":"metronidazole","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"CHEBI:6923","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/miconazole.html","miconazole"]]},{"id":"CHEBI:7025","l":"mupirocin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MRC","MRC-binding site"]],"b":[["antibacterial/mupirocin.html","mupirocin"]]},{"id":"CHEBI:70508","l":"(16R,19E)-isositsirikine","na":1,"nb":1,"a":[["RHEA%3A83839","(19E)-geissoschizine + NADPH + H(+) = (16R,19E)-isositsirikine + NADP(+)"]],"b":[["antifungal/16r-19e-isositsirikine.html","(16R,19E)-isositsirikine"]]},{"id":"CHEBI:72292","l":"bedaquiline","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BQ1","BQ1-binding site"]],"b":[["antimycobacterial/bedaquiline.html","bedaquiline"]]},{"id":"CHEBI:72687","l":"bacilysin","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["unspecified/bacilysin.html","bacilysin"]]},{"id":"CHEBI:73079","l":"kanamycin D","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CJX","CJX-binding site"]],"b":[["unspecified/kanamycin-d.html","kanamycin D"]]},{"id":"CHEBI:73139","l":"oseltamivir acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_G39","G39-binding site"]],"b":[["antiviral/oseltamivir-acid.html","oseltamivir acid"]]},{"id":"CHEBI:73224","l":"allyl isothiocyanate","na":1,"nb":1,"a":[["RHEA%3A69272","(Z)-N-(sulfonatooxy)prop-2-enimidothioate = allyl isothiocyanate + sulfate"]],"b":[["unspecified/allyl-isothiocyanate.html","allyl isothiocyanate"]]},{"id":"CHEBI:73481","l":"asukamycin","na":1,"nb":1,"a":[["RHEA%3A75139","4-hydroxyprotoasukamycin + NADH + O2 + H(+) = asukamycin + NAD(+) + H2O"]],"b":[["antibacterial/asukamycin.html","asukamycin"]]},{"id":"CHEBI:74846","l":"azaserine","na":1,"nb":1,"a":[["TCDB%3A2.A.76","The Resistance to Homoserine/Threonine (RhtB) Family"]],"b":[["antifungal/azaserine.html","azaserine"]]},{"id":"CHEBI:7489","l":"neamine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_XXX","XXX-binding site"]],"b":[["antibacterial/neamine.html","neamine"]]},{"id":"CHEBI:74926","l":"patulin","na":1,"nb":1,"a":[["RHEA%3A62228","(E)-ascladiol + A = patulin + AH2"]],"b":[["unspecified/patulin.html","patulin"]]},{"id":"CHEBI:7508","l":"framycetin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NMY","NMY-binding site"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"CHEBI:75092","l":"morin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MRI","MRI-binding site"]],"b":[["antibacterial/morin.html","morin"]]},{"id":"CHEBI:75283","l":"miltefosine","na":1,"nb":1,"a":[["TCDB%3A3.A.3","The P-type ATPase (P-ATPase) Superfamily"]],"b":[["antifungal/miltefosine.html","miltefosine"]]},{"id":"CHEBI:75998","l":"trametinib","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_QOM","QOM-binding site"]],"b":[["antiviral/trametinib.html","trametinib"]]},{"id":"CHEBI:76010","l":"dolutegravir","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DLU","DLU-binding site"]],"b":[["antiviral/dolutegravir.html","dolutegravir"]]},{"id":"CHEBI:76244","l":"sapienic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_8Z9","8Z9-binding site"]],"b":[["antibacterial/sapienic-acid.html","sapienic acid"]]},{"id":"CHEBI:76293","l":"azadirone","na":1,"nb":1,"a":[["RHEA%3A80387","(1S,3bR,4R,5aR,9aR,9bR,11aS)-1-(1-hydroxy-4-oxobutan-2-yl)-3b,6,6,9a,11a-pentamethyl-7-oxo-1H,2H,3bH,4H,5H,5aH,6H,7H,9aH,9bH,10H,11H,11aH-cyclopenta[a]phenanthren-4-yl acetate + 2-oxoglutarate + O2 = azadirone + succinate + CO2 + 2 H2O"]],"b":[["antiprotozoal/azadirone.html","azadirone"]]},{"id":"CHEBI:76944","l":"13-epi-manool","na":1,"nb":1,"a":[["RHEA%3A40015","(+)-copalyl diphosphate + H2O = 13-epi-manool + diphosphate"]],"b":[["antifungal/13-epi-manool.html","13-epi-manool"]]},{"id":"CHEBI:76945","l":"manool","na":1,"nb":1,"a":[["RHEA%3A40011","(+)-copalyl diphosphate + H2O = manool + diphosphate"]],"b":[["antibacterial/manool.html","manool"]]},{"id":"CHEBI:77009","l":"5-O-β-D-mycaminosyl-20-oxotylonolide","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CGM","CGM-binding site"]],"b":[["unspecified/5-o-%CE%B2-d-mycaminosyl-20-oxotylonolide.html","5-O-β-D-mycaminosyl-20-oxotylonolide"]]},{"id":"CHEBI:77181","l":"crystal violet cation","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CVI","CVI-binding site"]],"b":[["antibacterial/crystal-violet-cation.html","crystal violet cation"]]},{"id":"CHEBI:77474","l":"(9Z,12Z,15Z)-octadecatrien-1-ol","na":1,"nb":1,"a":[["RHEA%3A40707","(9Z,12Z,15Z)-octadecatrien-1-ol + 1-hexadecanoylglycerone 3-phosphate = 1-O-(9Z,12Z,15Z)-octadecatrienylglycerone 3-phosphate + hexadecanoate + H(+)"]],"b":[["antibacterial/9z-12z-15z-octadecatrien-1-ol.html","(9Z,12Z,15Z)-octadecatrien-1-ol"]]},{"id":"CHEBI:77845","l":"7-aminocholesterol","na":1,"nb":1,"a":[["TCDB%3A9.A.26","The Lipid-translocating Exporter (LTE) Family"]],"b":[["antibacterial/7-aminocholesterol.html","7-aminocholesterol"]]},{"id":"CHEBI:79034","l":"monacolin J","na":1,"nb":1,"a":[["RHEA%3A62748","lovastatin + H2O = monacolin J + (S)-2-methylbutanoate + H(+)"]],"b":[["unspecified/monacolin-j.html","monacolin J"]]},{"id":"CHEBI:7934","l":"paromomycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PAR","PAR-binding site"]],"b":[["antibacterial/paromomycin.html","paromomycin"]]},{"id":"CHEBI:79391","l":"(−)-chuangxinmycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9E0","9E0-binding site"]],"b":[["antibacterial/chuangxinmycin.html","(−)-chuangxinmycin"]]},{"id":"CHEBI:79394","l":"indolmycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_5BX","5BX-binding site"]],"b":[["antibacterial/indolmycin.html","indolmycin"]]},{"id":"CHEBI:8062","l":"phenethyl caffeate","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_QAP","QAP-binding site"]],"b":[["antibacterial/phenethyl-caffeate.html","phenethyl caffeate"]]},{"id":"CHEBI:80751","l":"(S)-goitrin","na":1,"nb":1,"a":[["RHEA%3A69292","(Z)-(2R)-2-hydroxy-3-butenyl-N-(sulfonatooxy)methanimidothioate = goitrin + sulfate"]],"b":[["antiviral/s-goitrin.html","(S)-goitrin"]]},{"id":"CHEBI:81724","l":"diminazene","na":1,"nb":1,"a":[["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"]],"b":[["antiprotozoal/diminazene.html","diminazene"]]},{"id":"CHEBI:81761","l":"etridiazole","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/etridiazole.html","etridiazole"]]},{"id":"CHEBI:8232","l":"piperacillin","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/piperacillin.html","piperacillin"]]},{"id":"CHEBI:82754","l":"microcin c","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["unspecified/microcin-c.html","microcin c"]]},{"id":"CHEBI:82809","l":"agrocin 84","na":1,"nb":1,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["unspecified/agrocin-84.html","agrocin 84"]]},{"id":"CHEBI:83147","l":"","na":1,"nb":1,"a":[["RHEA%3A83179","a steroid + reduced [NADPH--hemoprotein reductase] + O2 = a 15alpha-hydroxy steroid + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["antifungal/9%CE%BE-14%CE%BE-25s-cholestane-3%CE%B2-4%CE%B2-6%CE%B2-7%CE%B1-8-15%CE%B1-16%CE%B2-26-octol.html","(9ξ,14ξ,25S)-cholestane-3β,4β,6β,7α,8,15α,16β,26-octol"]]},{"id":"CHEBI:8417","l":"pristinamycin IA","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/pristinamycin-ia.html","pristinamycin IA"]]},{"id":"CHEBI:84587","l":"","na":1,"nb":1,"a":[["RHEA%3A44724","2,3-saturated fatty aldehyde + NADP(+) = (2E)-fatty aldehyde + NADPH + H(+)"]],"b":[["unspecified/pentadecanal.html","pentadecanal"]]},{"id":"CHEBI:84588","l":"","na":1,"nb":1,"a":[["RHEA%3A44724","2,3-saturated fatty aldehyde + NADP(+) = (2E)-fatty aldehyde + NADPH + H(+)"]],"b":[["antibacterial/e-dodec-2-enal.html","(E)-dodec-2-enal"]]},{"id":"CHEBI:85083","l":"sofosbuvir","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_WG6","WG6-binding site"]],"b":[["antiviral/sofosbuvir.html","sofosbuvir"]]},{"id":"CHEBI:85273","l":"(R)-flumequine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_7X9","7X9-binding site"]],"b":[["unspecified/r-flumequine.html","(R)-flumequine"]]},{"id":"CHEBI:85412","l":"mitomycin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MQA","MQA-binding site"]],"b":[["unspecified/mitomycin-a.html","mitomycin A"]]},{"id":"CHEBI:8673","l":"pyrimethamine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CP6","CP6-binding site"]],"b":[["antiprotozoal/pyrimethamine.html","pyrimethamine"]]},{"id":"CHEBI:87185","l":"florfenicol","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/florfenicol.html","florfenicol"]]},{"id":"CHEBI:87805","l":"ethionamide S-oxide","na":1,"nb":1,"a":[["RHEA%3A47616","ethionamide + NADPH + O2 + H(+) = ethionamide S-oxide + NADP(+) + H2O"]],"b":[["antimycobacterial/ethionamide-s-oxide.html","ethionamide S-oxide"]]},{"id":"CHEBI:90531","l":"sotrastaurin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_LW4","LW4-binding site"]],"b":[["antiviral/sotrastaurin.html","sotrastaurin"]]},{"id":"CHEBI:9168","l":"sirolimus","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RAP","RAP-binding site"]],"b":[["antibacterial/sirolimus.html","sirolimus"]]},{"id":"CHEBI:9212","l":"sparfloxacin","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/sparfloxacin.html","sparfloxacin"]]},{"id":"CHEBI:92181","l":"lasalocid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_LSD","LSD-binding site"]],"b":[["antiprotozoal/lasalocid.html","lasalocid"]]},{"id":"CHEBI:92257","l":"IKK16","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_V17","V17-binding site"]],"b":[["antiprotozoal/ikk16.html","IKK16"]]},{"id":"CHEBI:9328","l":"sulfadiazine","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antiprotozoal/sulfadiazine.html","sulfadiazine"]]},{"id":"CHEBI:9337","l":"sulfathiazole","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["unspecified/sulfathiazole.html","sulfathiazole"]]},{"id":"CHEBI:9448","l":"terbinafine","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/terbinafine.html","terbinafine"]]},{"id":"CHEBI:9661","l":"triacetin","na":1,"nb":1,"a":[["RHEA%3A48028","triacetin + H2O = diacetylglycerol + acetate + H(+)"]],"b":[["antifungal/triacetin.html","triacetin"]]},{"id":"CHEBI:9688","l":"trichodermin","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/trichodermin.html","trichodermin"]]},{"id":"CHEBI:9691","l":"piperyline","na":1,"nb":1,"a":[["RHEA%3A73663","pyrrolidine + (E,E)-piperoyl-CoA = piperyline + CoA + H(+)"]],"b":[["antifungal/piperyline.html","piperyline"]]},{"id":"DOI:10.1016/j.chembiol.2006.09.007","l":"","na":1,"nb":1,"a":[["NCBIfam%3ANF039326","DUF6025 family protein"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"NCBITaxon:1764","l":"Mycobacterium avium","na":1,"nb":1,"a":[["Pfam%3APF01882","Protein of unknown function DUF58"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":1,"nb":1,"a":[["Pfam%3APF26312","Domain of unknown function (DUF8083)"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"NCBITaxon:263","l":"Francisella tularensis","na":1,"nb":1,"a":[["TED%3AAF-A0A6I4RUC7-F1-model_v4_TED02","TED novel fold AF-A0A6I4RUC7-F1-model_v4_TED02"]],"b":[["unspecified/%CE%B1-mangostin.html","α-mangostin"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":1,"nb":1,"a":[["Pfam%3APF07335","Fungal chitosanase of glycosyl hydrolase group 75"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"NCBITaxon:5127","l":"Fusarium fujikuroi","na":1,"nb":1,"a":[["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"NCBITaxon:5141","l":"Neurospora crassa","na":1,"nb":1,"a":[["TED%3AAF-A0A0B0E1R4-F1-model_v4_TED01","TED novel fold AF-A0A0B0E1R4-F1-model_v4_TED01"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"NCBITaxon:53446","l":"Streptomyces cinnamoneus","na":1,"nb":1,"a":[["TED%3AAF-A0A2S6XSK0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S6XSK0-F1-model_v4_TED01"]],"b":[["antibacterial/bicozamycin.html","bicozamycin"]]},{"id":"NCBITaxon:68280","l":"Streptomyces violaceusniger","na":1,"nb":1,"a":[["TED%3AAF-A0A0X3VKA0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0X3VKA0-F1-model_v4_TED01"]],"b":[["antibacterial/nigericin.html","nigericin"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A5C7XIK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7XIK2-F1-model_v4_TED01"]],"b":[["antibacterial/lysocin-e.html","lysocin E"]]},{"id":"UniProt:B8N2C8","l":"","na":1,"nb":1,"a":[["EC%3A1.14.14.154","sterol 14alpha-demethylase"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"UniProt:O30463","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TOP","TOP-binding site"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"UniProt:P0A017","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_0U5","0U5-binding site"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"UniProt:P13955","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TOP","TOP-binding site"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"UniProt:P42535","l":"","na":1,"nb":1,"a":[["EC%3A1.14.13.50","pentachlorophenol monooxygenase"]],"b":[["antifungal/pentachlorophenol.html","pentachlorophenol"]]},{"id":"UniProt:P50859","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_1YN","1YN-binding site"]],"b":[["antifungal/fluconazole.html","fluconazole"]]},{"id":"UniProt:Q5ALV2","l":"","na":1,"nb":1,"a":[["Pfam%3APF08226","Domain of unknown function (DUF1720)"]],"b":[["antifungal/fluconazole.html","fluconazole"]]},{"id":"UniProt:Q81R22","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_N22","N22-binding site"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]}]} \ No newline at end of file +{"a":"ProteinTraitsMech","b":"AntibioticMech","base":{"ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record=","AntibioticMech":"https://culturebotai.github.io/AntibioticMech/pages/"},"n":2435,"by":{"ARO":1740,"CHEBI":594,"NCBITaxon":79,"UniProt":20,"GO":2},"terms":[{"id":"ARO:0000032","l":"","na":3352,"nb":55,"a":[["ARO%3A3001815","ACC-1"],["ARO%3A3006228","ACC-1a"],["ARO%3A3006229","ACC-1b"],["ARO%3A3006230","ACC-1c"],["ARO%3A3006231","ACC-1d"],["ARO%3A3001816","ACC-2"]],"b":[["antibacterial/cefacetrile.html","cefacetrile"],["antibacterial/cefaclor.html","cefaclor"],["antibacterial/cefadroxil.html","cefadroxil"],["antibacterial/cefaloridine.html","cefaloridine"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefamandole.html","cefamandole"]]},{"id":"ARO:0000000","l":"","na":143,"nb":45,"a":[["ARO%3A3005099","23S rRNA (adenine(2058)-N(6))-methyltransferase Erm(A)"],["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3004125","23S rRNA with mutation conferring resistance to macrolide antibiotics"],["ARO%3A3005001","50S rRNA with mutation conferring resistance to macrolide antibiotics"],["ARO%3A3000772","AdeIJK"],["ARO%3A3004133","Brachyspira hyodysenteriae 23S rRNA with mutation conferring resistance to tylosin"]],"b":[["antibacterial/5-o-mycaminosyltylonolide.html","5-O-mycaminosyltylonolide"],["antibacterial/aplasmomycin.html","(+)-aplasmomycin"],["antibacterial/azalomycin-f.html","azalomycin F"],["antibacterial/azithromycin.html","azithromycin"],["antibacterial/boromycin.html","boromycin"],["antibacterial/brefeldin-a.html","brefeldin A"]]},{"id":"CHEBI:17478","l":"","na":62,"nb":33,"a":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.1.2","alcohol dehydrogenase (NADP(+))"],["EC%3A1.1.1.71","alcohol dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.2.8","alcohol dehydrogenase (cytochrome c)"],["EC%3A1.1.3.13","alcohol oxidase"]],"b":[["antibacterial/5-o-mycaminosyltylonolide.html","5-O-mycaminosyltylonolide"],["antibacterial/fatsicarpain-c.html","fatsicarpain C"],["antibacterial/josamycin.html","josamycin"],["antibacterial/rosaramicin.html","rosaramicin"],["antibacterial/spiramycin-i.html","spiramycin I"],["antibacterial/spiramycin-ii.html","spiramycin II"]]},{"id":"ARO:0000016","l":"","na":331,"nb":32,"a":[["ARO%3A3004272","16S rRNA methyltransferase (A1408)"],["ARO%3A3004271","16S rRNA methyltransferase (G1405)"],["ARO%3A3003666","16s rRNA with mutation conferring resistance to aminoglycoside antibiotics"],["ARO%3A3004936","23s rRNA with mutation conferring resistance to aminoglycoside antibiotics"],["ARO%3A3000341","AAC(2')"],["ARO%3A3007393","AAC(2')-I"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/apramycin.html","apramycin"],["antibacterial/arbekacin.html","arbekacin"]]},{"id":"ARO:0000001","l":"","na":223,"nb":31,"a":[["ARO%3A3005113","AAC(6')-Ib-cr"],["ARO%3A3002547","AAC(6')-Ib-cr1"],["ARO%3A3007770","aac(6')-Ib-cr10"],["ARO%3A3007771","aac(6')-Ib-cr11"],["ARO%3A3005112","AAC(6')-Ib-cr3"],["ARO%3A3005114","AAC(6')-Ib-cr4"]],"b":[["antibacterial/7-3-aminopyrrolidin-1-yl-1-2-4-difluorophenyl-6-fluoro-4-oxo-1-4-dihyd.html","7-(3-aminopyrrolidin-1-yl)-1-(2,4-difluorophenyl)-6-fluoro-4-oxo-1,4-dihydro-1,8-naphthyridine-3-carboxylic"],["antibacterial/9-fluoro-5-methyl-1-oxo-6-7-dihydro-1h-5h-pyrido-3-2-1-ij-quinoline-2-.html","9-fluoro-5-methyl-1-oxo-6,7-dihydro-1H,5H-pyrido[3,2,1-ij]quinoline-2-carboxylic"],["antibacterial/balofloxacin.html","Balofloxacin"],["antibacterial/cinoxacin.html","cinoxacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/clinafloxacin.html","clinafloxacin"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":145,"nb":30,"a":[["IDPO%3A0000033","flexible linker"],["IDPO%3A0000014","order to disorder"],["IDPO%3A0000004","pre-molten globule"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"]]},{"id":"CHEBI:15734","l":"","na":29,"nb":59,"a":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.1.2","alcohol dehydrogenase (NADP(+))"],["EC%3A1.1.1.71","alcohol dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.2.8","alcohol dehydrogenase (cytochrome c)"],["EC%3A1.1.3.13","alcohol oxidase"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/dihydroconiferyl-alcohol.html","dihydroconiferyl alcohol"],["antibacterial/equisetin.html","equisetin"],["antibacterial/hexan-1-ol.html","hexan-1-ol"],["antibacterial/lyoniresinol-3-%CE%B1-o-%CE%B2-d-glucopyranoside.html","(+)-lyoniresinol-3-α-O-β-D-glucopyranoside"],["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3000008","l":"","na":3168,"nb":27,"a":[["ARO%3A3001815","ACC-1"],["ARO%3A3006228","ACC-1a"],["ARO%3A3006229","ACC-1b"],["ARO%3A3006230","ACC-1c"],["ARO%3A3006231","ACC-1d"],["ARO%3A3001816","ACC-2"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aspoxicillin.html","aspoxicillin"],["antibacterial/azidocillin.html","azidocillin"],["antibacterial/azlocillin.html","azlocillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":30,"nb":22,"a":[["Pfam%3APF08787","Alginate lyase"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF08218","Citrate lyase ligase C-terminal domain"],["Pfam%3APF13727","CoA-binding domain"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["Pfam%3APF20714","DpiA-like helix-turn-helix domain"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"]]},{"id":"ARO:3000081","l":"","na":120,"nb":18,"a":[["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3004256","Bleomycin resistant protein"],["ARO%3A3005036","BLMT"],["ARO%3A3001205","BRP(MBL)"],["ARO%3A3004561","Clostridioides difficile murG with mutation conferring resistance to vancomycin"],["ARO%3A3004681","Clostridioides difficile rpoC with mutation conferring resistance to vancomycin"]],"b":[["antibacterial/a47934.html","A47934"],["antibacterial/antibiotic-a40926.html","antibiotic A40926"],["antibacterial/avoparcin.html","avoparcin"],["antibacterial/balhimycin.html","balhimycin"],["antibacterial/bleomycin-a2.html","bleomycin A2"],["antibacterial/bleomycin-b2.html","bleomycin B2"]]},{"id":"ARO:0000026","l":"","na":98,"nb":13,"a":[["ARO%3A3005099","23S rRNA (adenine(2058)-N(6))-methyltransferase Erm(A)"],["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3004182","23S rRNA with mutation conferring resistance to streptogramins antibiotics"],["ARO%3A3000202","Cfr 23S ribosomal RNA methyltransferase"],["ARO%3A3004649","cfr(B)"],["ARO%3A3004609","cfr(B) Group"]],"b":[["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/madumycin-ii.html","madumycin II"],["antibacterial/ostreogrycin-b3.html","ostreogrycin B3"],["antibacterial/patricin-a.html","patricin A"],["antibacterial/patricin-b.html","patricin B"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":46,"nb":13,"a":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF13166","AAA domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF27533","CapK C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/bromodeoxytopsentin.html","bromodeoxytopsentin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"ARO:3000053","l":"","na":203,"nb":12,"a":[["ARO%3A3003667","16s rRNA with mutation conferring resistance to peptide antibiotics"],["ARO%3A3003581","Acinetobacter mutant Lpx gene conferring resistance to colistin"],["ARO%3A3007430","alm glycyl carrier protein"],["ARO%3A3007432","alm glycyltransferase"],["ARO%3A3007433","almE"],["ARO%3A3007434","almEFG"]],"b":[["antibacterial/defensin.html","defensin"],["antibacterial/epinecidin-1.html","epinecidin-1"],["antibacterial/magainin-1.html","magainin 1"],["antibacterial/magainin-2.html","magainin 2"],["antibacterial/magainin-a.html","magainin A"],["antibacterial/magainin-b.html","magainin B"]]},{"id":"ARO:3001219","l":"","na":12,"nb":25,"a":[["ARO%3A3003357","Clostridioides difficile EF-Tu mutants conferring resistance to elfamycin"],["ARO%3A3001312","elfamycin resistant EF-Tu"],["ARO%3A3003875","Enterococcus faecium EF-Tu mutants conferring resistance to elfamycin"],["ARO%3A3003438","Enterococcus faecium EF-Tu mutants conferring resistance to GE2270A"],["ARO%3A3003358","Escherichia coli EF-Tu mutants conferring resistance to elfamycin"],["ARO%3A3003370","Escherichia coli EF-Tu mutants conferring resistance to Enacyloxin IIa"]],"b":[["antibacterial/amythiamicin-a.html","amythiamicin A"],["antibacterial/aurodox.html","aurodox"],["antibacterial/dihydromocimycin.html","dihydromocimycin"],["antibacterial/efrotomycin.html","efrotomycin"],["antibacterial/enacyloxin-iia.html","enacyloxin IIa"],["antibacterial/factumycin.html","factumycin"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":19,"nb":12,"a":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"],["Pfam%3APF18173","Bacterial HORMA domain 2"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["Pfam%3APF27322","Cap8 HORMA domain"],["Pfam%3APF01526","Tn3 transposase DDE domain"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3007499","l":"","na":11,"nb":18,"a":[["ARO%3A3007549","antibiotic resistant ergosterol biosynthesis pathway transcription factor"],["ARO%3A3007565","Aspergillus spp. cyp51A with mutations conferring resistance to triazoles antibiotics"],["ARO%3A3007670","Aspergillus spp. Hmg1 with mutations conferring resistance to triazoles antibiotics"],["ARO%3A3007666","Candida spp. cyp51A1 with mutations conferring resistance to triazoles and imidazole antibiotics"],["ARO%3A3007524","Candida spp. ERG11 with mutations conferring resistance to azole antibiotics"],["ARO%3A3007640","Candida spp. pleiotropic drug resistance factor 1"]],"b":[["antifungal/bromuconazole.html","bromuconazole"],["antifungal/cyproconazole.html","cyproconazole"],["antifungal/difenoconazole.html","difenoconazole"],["antifungal/epoxiconazole.html","epoxiconazole"],["antifungal/fenbuconazole.html","fenbuconazole"],["antifungal/fluconazole.html","fluconazole"]]},{"id":"CHEBI:17087","l":"","na":17,"nb":11,"a":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.1.184","carbonyl reductase (NADPH)"],["EC%3A1.1.1.2","alcohol dehydrogenase (NADP(+))"],["EC%3A1.1.3.18","secondary-alcohol oxidase"],["EC%3A1.1.98.5","secondary-alcohol dehydrogenase (coenzyme-F420)"],["EC%3A1.4.1.28","secondary-alkyl amine dehydrogenase [NAD(P)(+)]"]],"b":[["antibacterial/6-diazo-5-oxo-l-norleucine.html","6-diazo-5-oxo-L-norleucine"],["antibacterial/dehydroacetic-acid.html","dehydroacetic acid"],["antibacterial/ucs1025-a.html","UCS1025 A"],["antifungal/1-2-3-dihydro-1h-pyrrol-1-yl-2-methyldecane-1-3-dione.html","1-(2,3-dihydro-1H-pyrrol-1-yl)-2-methyldecane-1,3-dione"],["antifungal/e-1-2-3-dihydro-1h-pyrrol-1-yl-2-methyldec-8-ene-1-3-dione.html","(E)-1-(2,3-dihydro-1H-pyrrol-1-yl)-2-methyldec-8-ene-1,3-dione"],["antiprotozoal/ct3.html","CT3"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":11,"nb":15,"a":[["Pfam%3APF22829","HphA C-terminal domain"],["Pfam%3APF22828","HphA N-terminal heme-binding domain"],["Pfam%3APF28205","Ciprofloxacin tolerance protein"],["Pfam%3APF19582","Solute-binding protein AdeT 1/2"],["PROSITE%3APS00337","Beta-lactamase class-D active site"],["Pfam%3APF24575","Surface lipoprotein assembly modifier, N-terminal TPR repeats"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3000282","l":"","na":13,"nb":11,"a":[["ARO%3A3007426","ECF transporter S component"],["ARO%3A3003386","Escherichia coli folP with mutation conferring resistance to sulfonamides"],["ARO%3A3000386","MexAB-OprM"],["ARO%3A3004873","Neisseria gonorrhoeae folP with mutation conferring resistance to sulfonamides"],["ARO%3A3007749","Salmonella gallinarum folP with mutation conferring resistance to sulfonamides"],["ARO%3A3003387","Streptococcus pyogenes folP with mutation conferring resistance to sulfonamides"]],"b":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfacetamide.html","sulfacetamide"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfamerazine.html","sulfamerazine"],["antibacterial/sulfamethazine.html","sulfamethazine"],["antibacterial/sulfamethizole.html","sulfamethizole"]]},{"id":"CHEBI:33853","l":"","na":10,"nb":185,"a":[["EC%3A2.1.1.382","methoxylated aromatic compound--corrinoid protein Co-methyltransferase"],["EC%3A2.8.2.1","aryl sulfotransferase"],["EC%3A2.8.2.22","aryl-sulfate sulfotransferase"],["EC%3A3.1.1.2","arylesterase"],["EC%3A3.1.6.1","arylsulfatase (type I)"],["RHEA%3A72283","a methoxylated aromatic compound + Co(I)-[methoxylated-aromatic-compound-specific corrinoid protein] + H(+) = a phenol + methyl-Co(III)-[methoxylated-aromatic-compound-specific corrinoid protein]"]],"b":[["antibacterial/2e-6z-13-hydroxy-1-2-hydroxy-5-methoxy-3-methylphenyl-3-7-11-15-tetram.html","(2E,6Z)-13-hydroxy-1-(2-hydroxy-5-methoxy-3-methylphenyl)-3,7,11,15-tetramethylhexadeca-2,6,14-triene-5,12-dione"],["antibacterial/5e-7-oxozeaenol.html","5E-7-oxozeaenol"],["antibacterial/5z-7-oxozeaenol.html","5Z-7-oxozeaenol"],["antibacterial/7-hydroxy-5-hydroxymethyl-2h-benzo-1-4-thiazin-3-one.html","7-hydroxy-5-hydroxymethyl-2H-benzo[1,4]thiazin-3-one"],["antibacterial/actinodaphnine.html","actinodaphnine"],["antibacterial/anthramycin.html","anthramycin"]]},{"id":"CHEBI:35681","l":"","na":10,"nb":139,"a":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.1.184","carbonyl reductase (NADPH)"],["EC%3A1.1.1.2","alcohol dehydrogenase (NADP(+))"],["EC%3A1.1.3.18","secondary-alcohol oxidase"],["EC%3A1.1.98.5","secondary-alcohol dehydrogenase (coenzyme-F420)"],["RHEA%3A10740","a secondary alcohol + NAD(+) = a ketone + NADH + H(+)"]],"b":[["antibacterial/14-norpseurotin-a.html","14-norpseurotin A"],["antibacterial/2e-6z-13-hydroxy-1-2-hydroxy-5-methoxy-3-methylphenyl-3-7-11-15-tetram.html","(2E,6Z)-13-hydroxy-1-(2-hydroxy-5-methoxy-3-methylphenyl)-3,7,11,15-tetramethylhexadeca-2,6,14-triene-5,12-dione"],["antibacterial/5e-7-oxozeaenol.html","5E-7-oxozeaenol"],["antibacterial/5z-7-oxozeaenol.html","5Z-7-oxozeaenol"],["antibacterial/asperlactone.html","asperlactone"],["antibacterial/aspyrone.html","aspyrone"]]},{"id":"ARO:3000050","l":"","na":50,"nb":9,"a":[["ARO%3A3003669","16S rRNA with mutation conferring resistance to tetracycline derivatives"],["ARO%3A3003499","Cutibacterium acnes 16S rRNA mutation conferring resistance to tetracycline"],["ARO%3A3003411","Escherichia coli 16S rRNA (rrnB) mutation conferring resistance to tetracycline"],["ARO%3A3003410","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to tetracycline"],["ARO%3A3004126","Escherichia coli LamB"],["ARO%3A3003510","Helicobacter pylori 16S rRNA mutation conferring resistance to tetracycline"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/eravacycline.html","eravacycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/omadacycline.html","omadacycline"]]},{"id":"CHEBI:18379","l":"","na":9,"nb":21,"a":[["EC%3A3.5.5.1","nitrilase"],["EC%3A4.8.1.2","aliphatic aldoxime dehydratase"],["EC%3A4.8.1.5","thiohydroximate-O-sulfate sulfate/sulfur-lyase (nitrile-forming)"],["RHEA%3A21724","a nitrile + 2 H2O = a carboxylate + NH4(+)"],["RHEA%3A59956","a (Z)-N-(sulfonatooxy)alkanimidothioate = a nitrile + sulfur + sulfate"],["RHEA%3A11316","an aliphatic aldoxime = a nitrile + H2O"]],"b":[["antibacterial/bay11-7085.html","BAY11-7085"],["antibacterial/cccp.html","CCCP"],["antibacterial/finafloxacin.html","finafloxacin"],["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/cyazofamid.html","cyazofamid"],["antifungal/cymoxanil.html","cymoxanil"]]},{"id":"ARO:0000020","l":"","na":2703,"nb":8,"a":[["ARO%3A3006863","AAK-1"],["ARO%3A3005387","AAK beta-lactamase"],["ARO%3A3003809","Acinetobacter baumannii OprD conferring resistance to imipenem"],["ARO%3A3001821","ACT-1"],["ARO%3A3001832","ACT-10"],["ARO%3A3007883","ACT-100"]],"b":[["antibacterial/biapenem.html","biapenem"],["antibacterial/doripenem.html","doripenem"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"],["antibacterial/panipenem.html","panipenem"]]},{"id":"NCBITaxon:2697049","l":"Severe acute respiratory syndrome coronavirus 2","na":18,"nb":8,"a":[["IDPO%3A0000002","disorder"],["IDPO%3A0000033","flexible linker"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000041","glycosylation display site"],["IDPO%3A0000048","limited proteolysis display site"],["IDPO%3A0000037","molecular recognition display site"]],"b":[["antibacterial/3-6-diaminoacridine.html","3,6-diaminoacridine"],["antibacterial/anacardic-acid.html","anacardic acid"],["antibacterial/baicalein.html","baicalein"],["antibacterial/ebselen.html","ebselen"],["antibacterial/hexachlorophene.html","hexachlorophene"],["antifungal/disulfiram.html","disulfiram"]]},{"id":"ARO:3000034","l":"","na":8,"nb":9,"a":[["ARO%3A3002895","SAT-2"],["ARO%3A3002898","SAT-3"],["ARO%3A3002897","SAT-4"],["ARO%3A3005045","SatA"],["ARO%3A3004699","sta"],["ARO%3A3000869","streptothricin acetyltransferase (SAT)"]],"b":[["antibacterial/a201a.html","A201A"],["antibacterial/caprazamycin.html","caprazamycin"],["antibacterial/cordycepin.html","cordycepin"],["antibacterial/pseudouridimycin.html","pseudouridimycin"],["antibacterial/puromycin.html","puromycin"],["antibacterial/streptothricin-f.html","streptothricin F"]]},{"id":"CHEBI:33709","l":"amino acid","na":8,"nb":8,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.23","The Dicarboxylate/Amino Acid:Cation (Na+ or H+) Symporter (DAACS) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A1.V.1","The Filamentous Cyanobacterial Septal Pore (Septum) Family"],["TCDB%3A1.A.24","The Gap Junction-forming Connexin (Connexin) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/7-3-aminopyrrolidin-1-yl-1-2-4-difluorophenyl-6-fluoro-4-oxo-1-4-dihyd.html","7-(3-aminopyrrolidin-1-yl)-1-(2,4-difluorophenyl)-6-fluoro-4-oxo-1,4-dihydro-1,8-naphthyridine-3-carboxylic"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/pipemidic-acid.html","pipemidic acid"],["antibacterial/trovafloxacin.html","trovafloxacin"],["antifungal/mediomycin-a.html","mediomycin A"],["antifungal/mediomycin-b.html","mediomycin B"]]},{"id":"ARO:3000419","l":"quinolone resistance protein (qnr)","na":111,"nb":7,"a":[["ARO%3A3003844","mfd"],["ARO%3A3003035","mfpA"],["ARO%3A3002707","QnrA1"],["ARO%3A3002708","QnrA2"],["ARO%3A3002709","QnrA3"],["ARO%3A3002710","QnrA4"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"NCBITaxon:237561","l":"Candida albicans (strain SC5314 / ATCC MYA-2876)","na":46,"nb":7,"a":[["Pfam%3APF26023","Alanine--tRNA ligase domain"],["Pfam%3APF09757","Arb2-like domain"],["Pfam%3APF25026","Asd-4-like domain"],["Pfam%3APF07741","Brf1-like TBP-binding domain"],["Pfam%3APF11766","Agglutinin-like protein, N-terminal domain"],["Pfam%3APF16892","Chitin biosynthesis protein CHS5 N-terminus"]],"b":[["antibacterial/brefeldin-a.html","brefeldin A"],["antifungal/anidulafungin.html","anidulafungin"],["antifungal/caspofungin.html","caspofungin"],["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/micafungin.html","micafungin"]]},{"id":"CHEBI:87211","l":"","na":7,"nb":18,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.24","The Mycobacterial Porin (MBP) Family"],["TCDB%3A9.B.325","The Putative ABC4 (ABC4) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/dextrofloxacin.html","dextrofloxacin"],["antibacterial/difloxacin.html","difloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/fleroxacin.html","fleroxacin"],["antibacterial/gemifloxacin.html","gemifloxacin"]]},{"id":"ARO:3000384","l":"AcrAB-TolC","na":16,"nb":7,"a":[["ARO%3A3000384","AcrAB-TolC"],["ARO%3A3000702","acrR"],["ARO%3A3003374","Enterobacter aerogenes acrR with mutation conferring multidrug antibiotic resistance"],["ARO%3A3004108","Enterobacter cloacae rob"],["ARO%3A3003807","Escherichia coli AcrAB-TolC with AcrR mutation conferring resistance to ciprofloxacin, tetracycline, and ceftazidime"],["ARO%3A3003378","Escherichia coli AcrAB-TolC with MarR mutations conferring resistance to ciprofloxacin and tetracycline"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/tetracycline.html","tetracycline"],["antibacterial/tigecycline.html","tigecycline"],["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3000386","l":"MexAB-OprM","na":7,"nb":15,"a":[["ARO%3A3000831","CpxR"],["ARO%3A3000377","MexA"],["ARO%3A3000386","MexAB-OprM"],["ARO%3A3000378","MexB"],["ARO%3A3000506","MexR"],["ARO%3A3000819","nalD"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/azithromycin.html","azithromycin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3000103","l":"","na":12,"nb":7,"a":[["ARO%3A3003830","Aminocoumarin resistant alaS"],["ARO%3A3003840","aminocoumarin resistant cysB"],["ARO%3A3000479","aminocoumarin resistant gyrB"],["ARO%3A3000457","aminocoumarin resistant parE"],["ARO%3A3000480","aminocoumarin resistant parY"],["ARO%3A3003787","aminocoumarin self resistant parY"]],"b":[["antibacterial/chrysomycin-a.html","chrysomycin A"],["antibacterial/clorobiocin.html","clorobiocin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/declovanillobiocin.html","declovanillobiocin"],["antibacterial/isovanillobiocin.html","isovanillobiocin"],["antibacterial/novobiocin.html","novobiocin"]]},{"id":"UniProt:P0DTD1","l":"","na":11,"nb":7,"a":[["EC%3A3.4.22.69","SARS coronavirus main proteinase"],["IDPO%3A0000002","disorder"],["Pfam%3APF12379","Betacoronavirus replicase NSP3, N-terminal"],["ELM%3AELME000557","DEG_Cend_TRIM7_1"],["proteintraitsmech%3ABIOLIP_A1IB6","A1IB6-binding site"],["proteintraitsmech%3ABIOLIP_BJ6","BJ6-binding site"]],"b":[["antibacterial/3-6-diaminoacridine.html","3,6-diaminoacridine"],["antibacterial/anacardic-acid.html","anacardic acid"],["antibacterial/baicalein.html","baicalein"],["antibacterial/ebselen.html","ebselen"],["antibacterial/hexachlorophene.html","hexachlorophene"],["antifungal/disulfiram.html","disulfiram"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":9,"nb":7,"a":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF25954","CusB-like, beta-barrel domain"],["Pfam%3APF13438","Domain of unknown function (DUF4113)"],["Pfam%3APF03767","HAD superfamily, subfamily IIIB (Acid phosphatase)"],["Pfam%3APF03496","ADP-ribosyltransferase exoenzyme"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":8,"nb":7,"a":[["Pfam%3APF01721","Class II bacteriocin"],["Pfam%3APF13700","Domain of unknown function (DUF4158)"],["Pfam%3APF07478","D-ala D-ala ligase C-terminus"],["Pfam%3APF01820","D-ala D-ala ligase N-terminus"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"],["PROSITE%3APS00843","D-alanine--D-alanine ligase signature 1"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":7,"nb":7,"a":[["Pfam%3APF11766","Agglutinin-like protein, N-terminal domain"],["Pfam%3APF16856","Cell division control protein 4 dimerisation domain"],["Pfam%3APF18325","Fatty acid synthase subunit alpha Acyl carrier domain"],["Pfam%3APF18314","Fatty acid synthase type I helical domain"],["Pfam%3APF17828","N-terminal domain in fatty acid synthase subunit beta"],["Pfam%3APF05388","Carboxypeptidase Y pro-peptide"]],"b":[["antibacterial/brefeldin-a.html","brefeldin A"],["antifungal/anidulafungin.html","anidulafungin"],["antifungal/caspofungin.html","caspofungin"],["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/micafungin.html","micafungin"]]},{"id":"CHEBI:132124","l":"","na":91,"nb":6,"a":[["EC%3A1.1.5.10","D-2-hydroxyacid dehydrogenase (quinone)"],["EC%3A1.1.5.11","1-butanol dehydrogenase (quinone)"],["EC%3A1.1.5.12","D-lactate dehydrogenase (quinone)"],["EC%3A1.1.5.13","(S)-2-hydroxyglutarate dehydrogenase"],["EC%3A1.1.5.3","glycerol-3-phosphate dehydrogenase"],["EC%3A1.1.5.4","malate dehydrogenase (quinone)"]],"b":[["antiprotozoal/r-4-methoxydalbergione.html","(R)-4'-methoxydalbergione"],["antiviral/geldanamycin.html","geldanamycin"],["unspecified/auricin.html","auricin"],["unspecified/dutomycin.html","dutomycin"],["unspecified/herbimycin.html","herbimycin"],["unspecified/primin.html","primin"]]},{"id":"ARO:3000670","l":"","na":27,"nb":6,"a":[["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3004178","23S rRNA with mutation conferring resistance to pleuromutilin antibiotics"],["ARO%3A3004472","lsa-type ABC-F protein"],["ARO%3A3000300","lsaA"],["ARO%3A3003111","lsaB"],["ARO%3A3003112","lsaC"]],"b":[["antibacterial/azamulin.html","azamulin"],["antibacterial/lefamulin.html","lefamulin"],["antibacterial/pleuromutilin.html","pleuromutilin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/valnemulin.html","valnemulin"]]},{"id":"ARO:3005386","l":"","na":15,"nb":6,"a":[["ARO%3A3004284","antibiotic resistant fabG"],["ARO%3A3004270","antibiotic resistant fabI"],["ARO%3A3000309","emrD"],["ARO%3A3004049","Escherichia coli fabG mutations conferring resistance to triclosan"],["ARO%3A3004045","Escherichia coli fabI mutations conferring resistance to isoniazid and triclosan"],["ARO%3A3004335","Escherichia coli gyrA with mutation conferring resistance to triclosan"]],"b":[["antibacterial/3-6-diaminoacridine.html","3,6-diaminoacridine"],["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"],["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/triclosan.html","triclosan"],["biocide/acriflavine.html","acriflavine"],["biocide/thiacalixarene-derivatives.html","thiacalixarene derivatives"]]},{"id":"ARO:3000797","l":"MexCD-OprJ","na":6,"nb":7,"a":[["ARO%3A3000797","MexCD-OprJ"],["ARO%3A3004061","MexCD-OprJ with type A NfxB mutation"],["ARO%3A3004062","MexCD-OprJ with type B NfxB mutation"],["ARO%3A3000820","NfxB"],["ARO%3A3004059","Type A NfxB"],["ARO%3A3004060","Type B NfxB"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/gentamicin-c.html","gentamicin C"],["antibacterial/novobiocin.html","novobiocin"],["antibacterial/ofloxacin.html","ofloxacin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"CHEBI:36836","l":"","na":7,"nb":6,"a":[["EC%3A1.1.1.270","3beta-hydroxysteroid 3-dehydrogenase"],["EC%3A2.3.1.77","triacylglycerol--sterol O-acyltransferase"],["RHEA%3A16897","a 3beta-hydroxysteroid + a triacylglycerol = a 3beta-hydroxysteroid ester + a diacylglycerol"],["RHEA%3A78195","a 3beta-hydroxysteroid + a triacylglycerol = a 3beta-hydroxysteroid ester + a 1,2-diacylglycerol"],["RHEA%3A78199","a 3beta-hydroxysteroid + a triacylglycerol = a 3beta-hydroxysteroid ester + a 1,3-diacylglycerol"],["RHEA%3A81603","a 3beta-hydroxysteroid + NAD(+) = a 3-oxosteroid + NADH + H(+)"]],"b":[["antibacterial/5%CE%B1-cholesta-24-en-3%CE%B2-20%CE%B2-diol-23-one.html","5α-cholesta-24-en-3β,20β-diol-23-one"],["antibacterial/5%CE%B1-cholesta-9-11-en-3%CE%B2-20%CE%B2-diol.html","5α-cholesta-9(11)-en-3β, 20β-diol"],["antifungal/9%CE%BE-14%CE%BE-25s-cholestane-3%CE%B2-4%CE%B2-6%CE%B2-7%CE%B1-8-15%CE%B1-16%CE%B2-26-octol.html","(9ξ,14ξ,25S)-cholestane-3β,4β,6β,7α,8,15α,16β,26-octol"],["antifungal/fr171456.html","FR171456"],["antifungal/sclerodol-b.html","sclerodol B"],["antiprotozoal/hellebrigenin.html","hellebrigenin"]]},{"id":"NCBITaxon:559292","l":"Saccharomyces cerevisiae (strain ATCC 204508 / S288c)","na":14483,"nb":5,"a":[["EC%3A1.14.18.-","With another compound as one donor, and incorporation of one atom of oxygen"],["EC%3A1.16.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.18.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.5.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.8.-.-","Acting on a sulfur group of donors"]],"b":[["antifungal/anidulafungin.html","anidulafungin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/caspofungin.html","caspofungin"],["antifungal/cycloheximide.html","cycloheximide"],["antifungal/micafungin.html","micafungin"]]},{"id":"ARO:0000017","l":"","na":104,"nb":5,"a":[["ARO%3A3005099","23S rRNA (adenine(2058)-N(6))-methyltransferase Erm(A)"],["ARO%3A3004187","23S rRNA with mutation conferring resistance to lincosamide antibiotics"],["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3000772","AdeIJK"],["ARO%3A3000202","Cfr 23S ribosomal RNA methyltransferase"],["ARO%3A3004649","cfr(B)"]],"b":[["antibacterial/celesticetin.html","celesticetin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/iboxamycin.html","iboxamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/pirlimycin.html","pirlimycin"]]},{"id":"ARO:3000157","l":"","na":45,"nb":5,"a":[["ARO%3A3002846","arr-1"],["ARO%3A3002847","arr-2"],["ARO%3A3002848","arr-3"],["ARO%3A3002849","arr-4"],["ARO%3A3002850","arr-5"],["ARO%3A3002852","arr-7"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifalazil.html","rifalazil"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"NCBITaxon:330879","l":"Aspergillus fumigatus (strain ATCC MYA-4609 / CBS 101355 / FGSC A1100 / Af293)","na":34,"nb":5,"a":[["Pfam%3APF22624","4'-phosphopantetheinyl transferase, N-terminal"],["Pfam%3APF13523","Acetyltransferase (GNAT) domain"],["Pfam%3APF28338","AclK C-terminal domain"],["Pfam%3APF23297","Highly reducing polyketide synthase sdgA, C-terminal ACP domain"],["Pfam%3APF11001","YDR124W-like, helical bundle domain"],["Pfam%3APF25312","Allergen Asp f 4-like domain"]],"b":[["antibacterial/fumagillin.html","fumagillin"],["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/terbinafine.html","terbinafine"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"ARO:3004115","l":"","na":20,"nb":5,"a":[["ARO%3A3007056","Antibiotic resistant Helicobacter pylori nitroreductase"],["ARO%3A3007656","antibiotic resistant Mycobacterium tuberculosis nitroreductase"],["ARO%3A3007671","Clostridioides difficile nimB"],["ARO%3A3007851","delamanid-resistant fgd1"],["ARO%3A3007059","Helicobacter pylori frxA mutation conferring resistance to metronidazole"],["ARO%3A3007055","Helicobacter pylori rdxA mutation conferring resistance to metronidazole"]],"b":[["antibacterial/delamanid.html","delamanid"],["antibacterial/metronidazole.html","metronidazole"],["antibacterial/ornidazole.html","ornidazole"],["antibacterial/pretomanid.html","pretomanid"],["antibacterial/tinidazole.html","tinidazole"]]},{"id":"CHEBI:46761","l":"","na":12,"nb":5,"a":[["MCSA%3A396","aspartic peptidase"],["MCSA%3A815","caspase-3"],["MCSA%3A818","caspase-8"],["MCSA%3A816","caspase-9"],["MCSA%3A814","cathepsin S"],["MCSA%3A912","endopeptidase Clp"]],"b":[["antifungal/gliotoxin.html","gliotoxin"],["antiprotozoal/wll-vs.html","WLL-vs"],["antiviral/ombitasvir.html","ombitasvir"],["unspecified/bacilysin.html","bacilysin"],["unspecified/tabtoxin.html","tabtoxin"]]},{"id":"NCBITaxon:485","l":"Neisseria gonorrhoeae","na":12,"nb":5,"a":[["Pfam%3APF25860","Cryptic plasmid protein A"],["Pfam%3APF12852","Cupin"],["Pfam%3APF17845","FbpC C-terminal regulatory nucleotide binding domain"],["Pfam%3APF22443","FbpC-like, regulatory domain"],["Pfam%3APF18053","DNA gyrase B subunit insert domain"],["Pfam%3APF25885","EMRA, alpha-helical hairpin domain"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007500","l":"","na":5,"nb":11,"a":[["ARO%3A3007666","Candida spp. cyp51A1 with mutations conferring resistance to triazoles and imidazole antibiotics"],["ARO%3A3007640","Candida spp. pleiotropic drug resistance factor 1"],["ARO%3A3007563","Candida spp. TAC1 with mutations conferring resistance to azole antibiotics"],["ARO%3A3007667","imidazole-resistant fungal cytochrome P450 enzyme"],["ARO%3A3007555","Zn2Cys6 transcription factors"]],"b":[["antibacterial/imazalil.html","imazalil"],["antifungal/bifonazole.html","bifonazole"],["antifungal/clotrimazole.html","clotrimazole"],["antifungal/econazole.html","econazole"],["antifungal/hexaconazole.html","hexaconazole"],["antifungal/ketoconazole.html","ketoconazole"]]},{"id":"ARO:3001815","l":"ACC-1","na":5,"nb":9,"a":[["ARO%3A3001815","ACC-1"],["ARO%3A3006228","ACC-1a"],["ARO%3A3006229","ACC-1b"],["ARO%3A3006230","ACC-1c"],["ARO%3A3006231","ACC-1d"]],"b":[["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/cefotetan.html","cefotetan"],["antibacterial/cefpirome.html","cefpirome"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"NCBITaxon:229533","l":"Fusarium graminearum PH-1","na":8,"nb":5,"a":[["Pfam%3APF18388","Atg29 N-terminal domain"],["Pfam%3APF27599","CcsR C-terminal domain"],["Pfam%3APF07110","EthD domain"],["Pfam%3APF11700","Vacuole effluxer Atg22 like"],["Pfam%3APF28504","Gramillins biosynthetic cluster protein GRA5"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"]],"b":[["antifungal/carbendazim.html","carbendazim"],["antifungal/difenoconazole.html","difenoconazole"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/prochloraz.html","prochloraz"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"ARO:3000491","l":"acrD","na":7,"nb":5,"a":[["ARO%3A3000491","acrD"],["ARO%3A3000828","baeR"],["ARO%3A3000829","baeS"],["ARO%3A3000531","baeSR"],["ARO%3A3000830","cpxA"],["ARO%3A3000524","cpxAR"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:0000004","l":"","na":1345,"nb":4,"a":[["ARO%3A3001815","ACC-1"],["ARO%3A3006228","ACC-1a"],["ARO%3A3006229","ACC-1b"],["ARO%3A3006230","ACC-1c"],["ARO%3A3006231","ACC-1d"],["ARO%3A3001816","ACC-2"]],"b":[["antibacterial/aztreonam.html","aztreonam"],["antibacterial/bal30072.html","BAL30072"],["antibacterial/carumonam.html","carumonam"],["antibacterial/lys228.html","LYS228"]]},{"id":"CHEBI:24646","l":"","na":88,"nb":4,"a":[["EC%3A1.1.5.10","D-2-hydroxyacid dehydrogenase (quinone)"],["EC%3A1.1.5.11","1-butanol dehydrogenase (quinone)"],["EC%3A1.1.5.12","D-lactate dehydrogenase (quinone)"],["EC%3A1.1.5.13","(S)-2-hydroxyglutarate dehydrogenase"],["EC%3A1.1.5.3","glycerol-3-phosphate dehydrogenase"],["EC%3A1.1.5.4","malate dehydrogenase (quinone)"]],"b":[["antibacterial/2-5-dihydroxy-3-methanesulfinylbenzyl-alcohol.html","2,5-dihydroxy-3-methanesulfinylbenzyl alcohol"],["antibacterial/cytotrienin-a.html","cytotrienin A"],["antibacterial/mygalin.html","mygalin"],["unspecified/trierixin.html","trierixin"]]},{"id":"CHEBI:47622","l":"","na":4,"nb":84,"a":[["EC%3A2.3.1.84","alcohol O-acetyltransferase"],["EC%3A3.1.1.6","acetylesterase"],["RHEA%3A12957","an acetyl ester + H2O = an aliphatic alcohol + acetate + H(+)"],["RHEA%3A17229","an aliphatic alcohol + acetyl-CoA = an acetyl ester + CoA"]],"b":[["antibacterial/3-5-di-o-acetyl-1-o-5%CE%B2-8%CE%B1-9%CE%B2-10%CE%B1-18-oxokaur-16-en-18-yl-%CE%B2-l-arabinofur.html","3,5-di-O-acetyl-1-O-[(5β,8α,9β,10α)-18-oxokaur-16-en-18-yl]-β-L-arabinofuranose"],["antibacterial/6%CE%B2-16%CE%B2-diacetoxy-25-hydroxy-3-7-dioxy-29-nordammara-1-17-20-dien-21-oi.html","6β,16β-diacetoxy-25-hydroxy-3,7-dioxy-29-nordammara-1,17(20)-dien-21-oic acid"],["antibacterial/caminoside-a.html","caminoside A"],["antibacterial/geranylgeranyl-acetate.html","geranylgeranyl acetate"],["antibacterial/helvolic-acid-methyl-ester.html","helvolic acid methyl ester"],["antibacterial/helvolic-acid.html","helvolic acid"]]},{"id":"CHEBI:59869","l":"","na":68,"nb":4,"a":[["EC%3A1.4.1.5","L-amino-acid dehydrogenase"],["EC%3A1.4.3.2","L-amino-acid oxidase"],["EC%3A1.5.3.2","N-methyl-L-amino-acid oxidase"],["EC%3A2.6.1.12","alanine--oxo-acid transaminase"],["EC%3A2.6.1.13","ornithine aminotransferase"],["EC%3A2.6.1.14","asparagine--oxo-acid transaminase"]],"b":[["antibacterial/l-%CE%B2-ethynylserine-zwitterion.html","L-β-ethynylserine zwitterion"],["unspecified/alliin-zwitterion.html","alliin zwitterion"],["unspecified/anticapsin-zwitterion.html","anticapsin zwitterion"],["unspecified/l-propargylglycine-zwitterion.html","L-propargylglycine zwitterion"]]},{"id":"ARO:3000387","l":"","na":58,"nb":4,"a":[["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3004188","23S rRNA with mutation conferring resistance to phenicol antibiotics"],["ARO%3A3004451","Agrobacterium fabrum chloramphenicol acetyltransferase"],["ARO%3A3004452","Alkalihalobacillus clausii chloramphenicol acetyltransferase"],["ARO%3A3002672","Bacillus pumilus cat86"],["ARO%3A3004454","Campylobacter coli chloramphenicol acetyltransferase"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"CHEBI:33308","l":"","na":4,"nb":43,"a":[["EC%3A3.1.1.1","carboxylesterase"],["RHEA%3A21164","a carboxylic ester + H2O = an alcohol + a carboxylate + H(+)"],["MCSA%3A631","cutinase"],["MCSA%3A556","esterase (estA)"]],"b":[["antibacterial/bacilysocin.html","bacilysocin"],["antibacterial/cefpodoxime-proxetil.html","cefpodoxime proxetil"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/fidaxomicin.html","fidaxomicin"],["antibacterial/fluquinometoate.html","fluquinometoate"],["antibacterial/fumagillin.html","fumagillin"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":29,"nb":4,"a":[["Pfam%3APF09156","Anthrax toxin lethal factor, middle domain"],["Pfam%3APF08401","N-terminal domain of anti-restriction factor ArdC"],["Pfam%3APF07737","Anthrax toxin lethal factor, N- and C-terminal domain"],["Pfam%3APF27053","Bacillus anthracis plasmid pXO2 protein 26"],["Pfam%3APF13205","Bacterial Ig-like domain"],["Pfam%3APF17475","Clostridial binary toxin B/anthrax toxin PA domain 2"]],"b":[["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/trimethoprim.html","trimethoprim"],["antiprotozoal/suramin.html","suramin"],["antiviral/tilorone.html","tilorone"]]},{"id":"ARO:3000079","l":"","na":21,"nb":4,"a":[["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3004172","23S rRNA with mutation conferring resistance to oxazolidinone antibiotics"],["ARO%3A3000202","Cfr 23S ribosomal RNA methyltransferase"],["ARO%3A3004649","cfr(B)"],["ARO%3A3004609","cfr(B) Group"],["ARO%3A3004610","cfr(C) Group"]],"b":[["antibacterial/contezolid.html","contezolid"],["antibacterial/linezolid.html","linezolid"],["antibacterial/tbi-223.html","TBI-223"],["antibacterial/tedizolid.html","tedizolid"]]},{"id":"CHEBI:22315","l":"alkaloid","na":4,"nb":21,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antibacterial/14-norpseurotin-a.html","14-norpseurotin A"],["antibacterial/5-bromo-8-methoxy-1-methyl-%CE%B2-carboline.html","5-bromo-8-methoxy-1-methyl-β-carboline"],["antibacterial/undecylprodigiosin.html","undecylprodigiosin"],["antifungal/feruloylagmatine.html","feruloylagmatine"],["antifungal/pyrrolnitrin.html","pyrrolnitrin"],["antifungal/sampangine.html","sampangine"]]},{"id":"CHEBI:23765","l":"","na":4,"nb":19,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.60","The Organo Anion Transporter (OAT) Family"]],"b":[["antibacterial/2-heptyl-4-quinolone.html","2-heptyl-4-quinolone"],["antibacterial/aurachin-c.html","aurachin C"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/difloxacin.html","difloxacin"],["antibacterial/e-1-hydroxy-2-non-1-en-1-yl-quinolin-4-one.html","(E)-1-hydroxy-2-(non-1-en-1-yl)quinolin-4-one"],["antibacterial/enrofloxacin.html","enrofloxacin"]]},{"id":"CHEBI:25106","l":"","na":4,"nb":18,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.28","The Bile Acid:Na+ Symporter (BASS) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/5e-7-oxozeaenol.html","5E-7-oxozeaenol"],["antibacterial/5z-7-oxozeaenol.html","5Z-7-oxozeaenol"],["antibacterial/bromophycolide-a.html","bromophycolide A"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/pristinamycin-iia.html","pristinamycin IIA"]]},{"id":"ARO:3003032","l":"MexXY-OprM","na":4,"nb":11,"a":[["ARO%3A3003032","MexXY-OprM"],["ARO%3A3005068","ParR"],["ARO%3A3005066","parRS"],["ARO%3A3005067","ParS"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/gentamicin-c.html","gentamicin C"],["antibacterial/meropenem.html","meropenem"]]},{"id":"CHEBI:33575","l":"carboxylic acid","na":4,"nb":11,"a":[["MCSA%3A105","aldehyde dehydrogenase (FAD-independent)"],["MCSA%3A803","aldehyde dehydrogenase (NAD+) (class 2)"],["MCSA%3A556","esterase (estA)"],["MCSA%3A755","lysophospholipase"]],"b":[["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefatrizine.html","cefatrizine"],["antibacterial/cefazedone.html","cefazedone"],["antibacterial/cefcapene.html","cefcapene"],["antibacterial/cefditoren.html","cefditoren"],["antibacterial/cefiderocol.html","cefiderocol"]]},{"id":"ARO:3000453","l":"streptogramin vat acetyltransferase","na":9,"nb":4,"a":[["ARO%3A3000453","streptogramin vat acetyltransferase"],["ARO%3A3002840","vatA"],["ARO%3A3002841","vatB"],["ARO%3A3002842","vatC"],["ARO%3A3002843","vatD"],["ARO%3A3002844","vatE"]],"b":[["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/madumycin-ii.html","madumycin II"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3000390","l":"rifampin ADP-ribosyltransferase (Arr)","na":8,"nb":4,"a":[["ARO%3A3002846","arr-1"],["ARO%3A3002847","arr-2"],["ARO%3A3002848","arr-3"],["ARO%3A3002849","arr-4"],["ARO%3A3002850","arr-5"],["ARO%3A3002852","arr-7"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3000788","l":"MdtEF-TolC","na":6,"nb":4,"a":[["ARO%3A3000518","CRP"],["ARO%3A3000832","evgA"],["ARO%3A3000515","evgSA"],["ARO%3A3003838","gadW"],["ARO%3A3000508","gadX"],["ARO%3A3000788","MdtEF-TolC"]],"b":[["antibacterial/cloxacillin.html","cloxacillin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/oxacillin.html","oxacillin"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":4,"nb":6,"a":[["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF09711","CRISPR-associated protein (Cas_Csn2)"],["Pfam%3APF06308","23S rRNA methylastransferase leader peptide (ErmCL)"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3004116","l":"","na":4,"nb":5,"a":[["ARO%3A3003754","antibiotic resistant nfsA"],["ARO%3A3003755","Antibiotic resistant nfsB"],["ARO%3A3003751","Escherichia coli nfsA mutations conferring resistance to nitrofurantoin"],["ARO%3A3003756","Escherichia coli nfsB with mutation conferring resistance to nitrofurantoin"]],"b":[["antibacterial/furagin.html","furagin"],["antibacterial/furazolidone.html","furazolidone"],["antibacterial/nifuratel.html","nifuratel"],["antibacterial/nifuroxazide.html","nifuroxazide"],["antibacterial/nitrofurantoin.html","nitrofurantoin"]]},{"id":"NCBITaxon:5518","l":"Fusarium graminearum","na":4,"nb":5,"a":[["Pfam%3APF09118","Galactose oxidase-like, Early set domain"],["Pfam%3APF07250","Glyoxal oxidase N-terminus"],["TED%3AAF-A0A2H3FY84-F1-model_v4_TED03","TED novel fold AF-A0A2H3FY84-F1-model_v4_TED03"],["TED%3AAF-A0A2H3G191-F1-model_v4_TED01","TED novel fold AF-A0A2H3G191-F1-model_v4_TED01"]],"b":[["antifungal/carbendazim.html","carbendazim"],["antifungal/difenoconazole.html","difenoconazole"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/prochloraz.html","prochloraz"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"ARO:3007496","l":"","na":4,"nb":4,"a":[["ARO%3A3007548","Candida spp. FKS2 with mutations conferring resistance to echinocandin antibiotics"],["ARO%3A3007664","Candida spp. High Osmolarity Glycerol 1 conferring resistance to caspofungin via absence"],["ARO%3A3007546","echinocandin antibiotic-resistant beta-1,3-D-glucan synthase"],["ARO%3A3007663","stress-activated protein kinases"]],"b":[["antibacterial/arborcandin-c.html","arborcandin C"],["antifungal/anidulafungin.html","anidulafungin"],["antifungal/caspofungin.html","caspofungin"],["antifungal/micafungin.html","micafungin"]]},{"id":"ARO:3000171","l":"","na":60,"nb":3,"a":[["ARO%3A3005354","dfr22"],["ARO%3A3002854","dfrA1"],["ARO%3A3003011","dfrA10"],["ARO%3A3002858","dfrA12"],["ARO%3A3003012","dfrA13"],["ARO%3A3002859","dfrA14"]],"b":[["antibacterial/brodimoprim.html","brodimoprim"],["antibacterial/tetroxoprim.html","tetroxoprim"],["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004598","l":"Klebsiella pneumoniae KpnGH-TolC","na":3,"nb":17,"a":[["ARO%3A3004588","Klebsiella pneumoniae KpnG"],["ARO%3A3004598","Klebsiella pneumoniae KpnGH-TolC"],["ARO%3A3004597","Klebsiella pneumoniae KpnH"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":3,"a":[["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["Pfam%3APF14562","Restriction endonuclease BglI"],["Pfam%3APF09195","Restriction endonuclease BglII/BglIII"],["Pfam%3APF09208","Restriction endonuclease MspI"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"CHEBI:35924","l":"","na":14,"nb":3,"a":[["EC%3A1.11.1.24","thioredoxin-dependent peroxiredoxin"],["EC%3A1.11.1.25","glutaredoxin-dependent peroxiredoxin"],["EC%3A1.11.1.26","NADH-dependent peroxiredoxin"],["EC%3A1.11.1.27","glutathione-dependent peroxiredoxin"],["EC%3A1.11.1.28","lipoyl-dependent peroxiredoxin"],["EC%3A1.11.1.29","mycoredoxin-dependent peroxiredoxin"]],"b":[["antiprotozoal/10%CE%B1-hydroperoxy-guaia-1-11-diene.html","10α-hydroperoxy-guaia-1,11-diene"],["antiprotozoal/1r-4s-1-hydroperoxy-p-menth-2-en-8-ol-acetate.html","(1R,4S)-1-hydroperoxy-p-menth-2-en-8-ol acetate"],["antiprotozoal/1%CE%B1-hydroperoxy-guaia-10-15-11-diene.html","1α-hydroperoxy-guaia-10(15),11-diene"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":13,"nb":3,"a":[["Pfam%3APF07832","Cfr10I/Bse634I restriction endonuclease"],["Pfam%3APF22348","Colicin-A N-terminal domain"],["Pfam%3APF01024","Colicin pore forming domain"],["Pfam%3APF18427","DD-reactivating factor swiveling domain"],["Pfam%3APF02286","Dehydratase large subunit"],["Pfam%3APF02288","Dehydratase medium subunit"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"UniProt:P38631","l":"","na":13,"nb":3,"a":[["ComplexPortal%3ACPX-1812","1,3-beta-D-glucan synthase complex, FKS1-RHO1 variant"],["GO%3A0000148","1,3-beta-D-glucan synthase complex"],["GO%3A0030479","actin cortical patch"],["GO%3A0003843","1,3-beta-D-glucan synthase activity"],["GO%3A0006075","(1->3)-beta-D-glucan biosynthetic process"],["GO%3A0030476","ascospore wall assembly"]],"b":[["antifungal/anidulafungin.html","anidulafungin"],["antifungal/caspofungin.html","caspofungin"],["antifungal/micafungin.html","micafungin"]]},{"id":"ARO:3004585","l":"Klebsiella pneumoniae KpnEF","na":3,"nb":11,"a":[["ARO%3A3004580","Klebsiella pneumoniae KpnE"],["ARO%3A3004585","Klebsiella pneumoniae KpnEF"],["ARO%3A3004583","Klebsiella pneumoniae KpnF"]],"b":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"],["antibacterial/cefepime.html","cefepime"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"NCBITaxon:451804","l":"Aspergillus fumigatus (strain CBS 144.89 / FGSC A1163 / CEA10)","na":11,"nb":3,"a":[["Pfam%3APF28347","ACE1 small beta sheet domain"],["Pfam%3APF28329","Zinc finger transcription factor ace1 N-terminal domain"],["Pfam%3APF11001","YDR124W-like, helical bundle domain"],["Pfam%3APF28457","Probable beta-glucosidase btgE N-terminal domain"],["Pfam%3APF13373","DSC E3 ubiquitin ligase complex subunit 3, C-terminal domain"],["Pfam%3APF10302","DSC E3 ubiquitin ligase complex subunit 3, ubiquitin-like domain"]],"b":[["antifungal/itraconazole.html","itraconazole"],["antifungal/terbinafine.html","terbinafine"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"CHEBI:33838","l":"","na":3,"nb":10,"a":[["RHEA%3A22140","a nucleoside 5'-phosphate + H2O = a nucleoside + phosphate"],["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"],["TCDB%3A9.A.72","The Putative Nucleoside Efflux Transporter (NET) Family"]],"b":[["unspecified/tunicamycin-a0.html","tunicamycin A0"],["unspecified/tunicamycin-a1.html","tunicamycin A1"],["unspecified/tunicamycin-a2.html","tunicamycin A2"],["unspecified/tunicamycin-b1.html","tunicamycin B1"],["unspecified/tunicamycin-b2.html","tunicamycin B2"],["unspecified/tunicamycin-b3.html","tunicamycin B3"]]},{"id":"CHEBI:55465","l":"","na":3,"nb":8,"a":[["EC%3A2.1.1.150","isoflavone 7-O-methyltransferase"],["RHEA%3A17933","a 7-hydroxyisoflavone + S-adenosyl-L-methionine = a 7-methoxyisoflavone + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A56344","a 7-hydroxyisoflavone + UDP-alpha-D-glucose = a 7-hydroxyisoflavone 7-O-beta-D-glucoside + UDP + H(+)"]],"b":[["antibacterial/5-7-4-trihydroxy-6-8-diprenylisoflavone.html","5,7,4'-trihydroxy-6,8-diprenylisoflavone"],["antibacterial/dihydrolicoisoflavone-a.html","dihydrolicoisoflavone A"],["antifungal/wighteone.html","wighteone"],["antiprotozoal/5-7-3-4-tetrahydroxy-2-3-3-dimethylallyl-isoflavone.html","5,7,3',4'-tetrahydroxy-2'-(3,3-dimethylallyl)isoflavone"],["antiprotozoal/7-4-dihydroxy-3-methoxyisoflavone.html","7,4'-dihydroxy-3'-methoxyisoflavone"],["antiprotozoal/pseudobaptigenin.html","pseudobaptigenin"]]},{"id":"CHEBI:17580","l":"linalool","na":6,"nb":3,"a":[["EC%3A1.14.14.84","linalool 8-monooxygenase"],["EC%3A5.4.4.8","linalool isomerase"],["RHEA%3A68708","(2E)-geranyl diphosphate + H2O = linalool + diphosphate"],["RHEA%3A32635","linalool + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = (6E)-8-oxolinalool + 2 oxidized [NADPH--hemoprotein reductase] + 3 H2O + 2 H(+)"],["RHEA%3A54656","linalool = (2E)-geraniol"],["RHEA%3A32503","linalool + reduced [NADPH--hemoprotein reductase] + O2 = (6E)-8-hydroxylinalool + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["unspecified/linalool.html","linalool"],["unspecified/r-linalool.html","(R)-linalool"],["unspecified/s-linalool.html","(S)-linalool"]]},{"id":"CHEBI:20156","l":"","na":5,"nb":3,"a":[["EC%3A1.17.99.11","3-oxo-Delta(1)-steroid hydratase/dehydrogenase"],["EC%3A1.3.99.4","3-oxosteroid 1-dehydrogenase"],["RHEA%3A65848","a 3-oxo-Delta(1)-steroid + A + H2O = a steroid 1,3-dione + AH2"],["RHEA%3A65852","a 3-oxo-Delta(1)-steroid + H2O = a 1-hydroxy-3-oxo steroid"],["RHEA%3A13329","a 3-oxosteroid + A = a 3-oxo-Delta(1)-steroid + AH2"]],"b":[["antibacterial/6%CE%B2-16%CE%B2-diacetoxy-25-hydroxy-3-7-dioxy-29-nordammara-1-17-20-dien-21-oi.html","6β,16β-diacetoxy-25-hydroxy-3,7-dioxy-29-nordammara-1,17(20)-dien-21-oic acid"],["antibacterial/helvolic-acid-methyl-ester.html","helvolic acid methyl ester"],["antibacterial/helvolic-acid.html","helvolic acid"]]},{"id":"CHEBI:25697","l":"","na":3,"nb":5,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antibacterial/chelerythrine.html","chelerythrine"],["antifungal/isavuconazonium.html","isavuconazonium"],["antiprotozoal/nostocarboline.html","nostocarboline"],["antiprotozoal/quinine-1.html","quinine(1+)"],["antiviral/meso-tetrakis-n-methyl-4-pyridyl-porphine-4.html","meso-tetrakis(N-methyl-4-pyridyl)porphine(4+)"]]},{"id":"CHEBI:38083","l":"","na":5,"nb":3,"a":[["TCDB%3A2.A.69","The Auxin Efflux Carrier (AEC) Family"],["TCDB%3A2.A.70","The Malonate:Na+ Symporter (MSS) Family"],["TCDB%3A2.A.101","The Malonate Uptake (MatC) Family (Formerly UIT1)"],["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["TCDB%3A2.A.56","The Tripartite ATP-independent Periplasmic Transporter (TRAP-T) Family"]],"b":[["antibacterial/6%CE%B1-malonyloxymanoyl-oxide.html","6α-malonyloxymanoyl oxide"],["antifungal/brasilinolide-a.html","brasilinolide A"],["antifungal/isoprothiolane.html","isoprothiolane"]]},{"id":"ARO:3000391","l":"norA","na":4,"nb":3,"a":[["ARO%3A3000838","arlR"],["ARO%3A3000547","arlRS"],["ARO%3A3000839","arlS"],["ARO%3A3000391","norA"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"],["biocide/acriflavine.html","acriflavine"]]},{"id":"NCBITaxon:1213859","l":"Colletotrichum fructicola (strain Nara gc5)","na":4,"nb":3,"a":[["TED%3AAF-A0A7J6IJ15-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7J6IJ15-F1-model_v4_TED03"],["TED%3AAF-A0A7J6IKD8-F1-model_v4_TED01","TED novel fold AF-A0A7J6IKD8-F1-model_v4_TED01"],["TED%3AAF-L2G012-F1-model_v4_TED02","TED novel fold AF-L2G012-F1-model_v4_TED02"],["TED%3AAF-L2G364-F1-model_v4_TED02","TED novel fold AF-L2G364-F1-model_v4_TED02"]],"b":[["antifungal/difenoconazole.html","difenoconazole"],["antifungal/prochloraz.html","prochloraz"],["antifungal/propiconazole.html","propiconazole"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":3,"nb":4,"a":[["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF08130","Type A lantibiotic family"],["Pfam%3APF04738","Lantibiotic dehydratase, N terminus"]],"b":[["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/oxacillin.html","oxacillin"]]},{"id":"CHEBI:3638","l":"chloroquine","na":3,"nb":3,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antiprotozoal/chloroquine.html","chloroquine"],["antiprotozoal/r-chloroquine.html","(R)-chloroquine"],["antiprotozoal/s-chloroquine.html","(S)-chloroquine"]]},{"id":"CHEBI:75568","l":"1-monolinolein","na":3,"nb":3,"a":[["RHEA%3A38131","1-(9Z,12Z-octadecadienoyl)-glycerol + (9Z)-octadecenoyl-CoA = 1-(9Z,12Z-octadecadienoyl)-2-(9Z-octadecenoyl)-glycerol + CoA"],["RHEA%3A77591","1-(9Z,12Z-octadecadienoyl)-glycerol + (9Z)-octadecenoyl-CoA = 1-(9Z-octadecenoyl)-3-(9Z,12Z-octadecadienoyl)-glycerol + CoA"],["RHEA%3A48428","1-(9Z,12Z-octadecadienoyl)-glycerol + H2O = (9Z,12Z)-octadecadienoate + glycerol + H(+)"]],"b":[["antiviral/1-linoleoyl-sn-glycerol.html","1-linoleoyl-sn-glycerol"],["antiviral/1-monolinolein.html","1-monolinolein"],["antiviral/3-linoleoyl-sn-glycerol.html","3-linoleoyl-sn-glycerol"]]},{"id":"NCBITaxon:274","l":"Thermus thermophilus","na":3,"nb":3,"a":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF01861","Branched-chain polyamine synthase A C-terminal domain"],["Pfam%3APF07736","Chorismate mutase type I"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"],["antibacterial/streptomycin.html","streptomycin"],["unspecified/streptolydigin.html","streptolydigin"]]},{"id":"NCBITaxon:665079","l":"Sclerotinia sclerotiorum (strain ATCC 18683 / 1980 / Ss-1)","na":3,"nb":3,"a":[["TED%3AAF-A0A1D9PSD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1D9PSD6-F1-model_v4_TED01"],["TED%3AAF-A7EZS3-F1-model_v4_TED02","TED highly-symmetric fold AF-A7EZS3-F1-model_v4_TED02"],["TED%3AAF-A0A1D9QKV1-F1-model_v4_TED02","TED novel fold AF-A0A1D9QKV1-F1-model_v4_TED02"]],"b":[["antifungal/carboxin.html","carboxin"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/iprodione.html","iprodione"]]},{"id":"UniProt:P04585","l":"","na":3,"nb":3,"a":[["MCSA%3A175","HIV-1 retropepsin"],["proteintraitsmech%3ABIOLIP_E9B","E9B-binding site"],["proteintraitsmech%3ABIOLIP_TNF","TNF-binding site"]],"b":[["antiviral/delavirdine.html","delavirdine"],["antiviral/emivirine.html","emivirine"],["antiviral/nevirapine.html","nevirapine"]]},{"id":"CHEBI:35718","l":"","na":2,"nb":514,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/1-2-dodecanediol.html","1,2-dodecanediol"],["antibacterial/1-dodecylguanidine-acetate.html","1-dodecylguanidine acetate"],["antibacterial/1-dodecylguanidine.html","1-dodecylguanidine"],["antibacterial/5-bromo-8-methoxy-1-methyl-%CE%B2-carboline.html","5-bromo-8-methoxy-1-methyl-β-carboline"],["antibacterial/5-chloro-7-iodoquinolin-8-ol.html","5-chloro-7-iodoquinolin-8-ol"],["antibacterial/6-methoxy-2-benzoxazolinone.html","6-methoxy-2-benzoxazolinone"]]},{"id":"CHEBI:24127","l":"","na":2,"nb":155,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/allyl-alcohol.html","allyl alcohol"],["antibacterial/dehydroacetic-acid.html","dehydroacetic acid"],["antibacterial/hexachlorophene.html","hexachlorophene"],["antibacterial/methylene-bis-thiocyanate.html","methylene bis(thiocyanate)"],["antibacterial/streptomycin.html","streptomycin"],["antibacterial/tecloftalam.html","tecloftalam"]]},{"id":"CHEBI:22587","l":"","na":2,"nb":149,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/6-diazo-5-oxo-l-norleucine.html","6-diazo-5-oxo-L-norleucine"],["antibacterial/benzethonium-chloride.html","benzethonium chloride"],["antibacterial/gramine.html","gramine"],["antibacterial/hypothiocyanous-acid.html","hypothiocyanous acid"],["antibacterial/mi-1148.html","MI-1148"],["antibacterial/phenethyl-caffeate.html","phenethyl caffeate"]]},{"id":"ARO:3004268","l":"MCR phosphoethanolamine transferase","na":106,"nb":2,"a":[["ARO%3A3003689","MCR-1.1"],["ARO%3A3004506","MCR-1.10"],["ARO%3A3004688","MCR-1.11"],["ARO%3A3004689","MCR-1.12"],["ARO%3A3004690","MCR-1.13"],["ARO%3A3007246","MCR-1.14"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"CHEBI:23066","l":"","na":2,"nb":66,"a":[["TCDB%3A8.A.212","The d-Amino Acid Peptidase (dAAP) Family"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]],"b":[["antibacterial/cefacetrile.html","cefacetrile"],["antibacterial/cefaclor.html","cefaclor"],["antibacterial/cefadroxil.html","cefadroxil"],["antibacterial/cefaloram.html","cefaloram"],["antibacterial/cefaloridine.html","cefaloridine"],["antibacterial/cefalotin.html","cefalotin"]]},{"id":"ARO:3007149","l":"","na":53,"nb":2,"a":[["ARO%3A3004251","antibiotic-resistant cya adenylate cyclase"],["ARO%3A3004247","antibiotic-resistant GlpT"],["ARO%3A3002811","antibiotic-resistant murA transferase"],["ARO%3A3004250","antibiotic-resistant ptsI phosphotransferase"],["ARO%3A3004248","antibiotic-resistant UhpT"],["ARO%3A3003777","Borreliella burgdorferi murA with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"],["antibacterial/fosmidomycin.html","fosmidomycin"]]},{"id":"CHEBI:32955","l":"","na":2,"nb":52,"a":[["EC%3A3.3.2.10","soluble epoxide hydrolase"],["RHEA%3A19037","an epoxide + H2O = an ethanediol"]],"b":[["antibacterial/ambiguine-i.html","ambiguine I"],["antibacterial/asperlactone.html","asperlactone"],["antibacterial/aspyrone.html","aspyrone"],["antibacterial/asukamycin.html","asukamycin"],["antibacterial/ei-1511-3.html","EI-1511-3"],["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"CHEBI:26188","l":"","na":2,"nb":41,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["antibacterial/2-4-dihydroxy-3-methyl-6-2-oxopropyl-benzaldehyde.html","2,4-dihydroxy-3-methyl-6-(2-oxopropyl)benzaldehyde"],["antibacterial/asperlactone.html","asperlactone"],["antibacterial/aspyrone.html","aspyrone"],["antibacterial/asukamycin.html","asukamycin"],["antibacterial/bacillaene.html","bacillaene"],["antibacterial/butremycin.html","butremycin"]]},{"id":"CHEBI:37581","l":"","na":2,"nb":39,"a":[["EC%3A3.1.1.25","1,4-lactonase"],["RHEA%3A12745","a 1,4-lactone + H2O = a 4-hydroxyacid + H(+)"]],"b":[["antibacterial/1-hydroxycrisamicin-a.html","1-hydroxycrisamicin A"],["antibacterial/decatromicin-a.html","decatromicin A"],["antibacterial/decatromicin-b.html","decatromicin B"],["antibacterial/fumimycin.html","fumimycin"],["antibacterial/isopatulin.html","isopatulin"],["antibacterial/lactonamycin.html","lactonamycin"]]},{"id":"CHEBI:48219","l":"","na":2,"nb":26,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"],["antibacterial/benzethonium-chloride.html","benzethonium chloride"],["antibacterial/quaternium-15.html","quaternium-15"],["antifungal/2-4-xylenol.html","2,4-xylenol"],["antifungal/thimerosal.html","thimerosal"],["biocide/1-3-6-8-tetraazatricyclo-4-4-1-13-8-dodecane.html","1,3,6,8-tetraazatricyclo[4,4,1,13,8]dodecane"]]},{"id":"ARO:3007156","l":"","na":20,"nb":2,"a":[["ARO%3A3003457","ethionamide resistant ethA"],["ARO%3A3004888","ethionamide resistant fabG1"],["ARO%3A3004890","ethionamide resistant mshC"],["ARO%3A3004892","ethionamide resistant nudC"],["ARO%3A3004954","Ethionamide resistant Rv0565c"],["ARO%3A3004875","inhA with mutations with conferring resistance to ethionamide"]],"b":[["antibacterial/prothionamide.html","prothionamide"],["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"CHEBI:17176","l":"","na":17,"nb":2,"a":[["EC%3A1.1.3.20","long-chain-alcohol oxidase"],["EC%3A1.14.14.3","bacterial luciferase"],["EC%3A1.2.1.48","long-chain-aldehyde dehydrogenase"],["EC%3A1.2.1.50","long-chain-fatty-acyl-CoA reductase"],["EC%3A1.2.1.80","long-chain acyl-[acyl-carrier-protein] reductase"],["EC%3A4.1.99.5","aldehyde oxygenase (deformylating)"]],"b":[["antibacterial/e-dodec-2-enal.html","(E)-dodec-2-enal"],["unspecified/pentadecanal.html","pentadecanal"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":16,"nb":2,"a":[["Pfam%3APF16822","SGNH hydrolase-like domain, acetyltransferase AlgX"],["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"],["Pfam%3APF11182","Alginate O-acetyl transferase AlgF"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF27129","Functional amyloid protein FapB/FapC family"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]],"b":[["antibacterial/mupirocin.html","mupirocin"],["antifungal/2-4-diacetylphloroglucinol.html","2,4-diacetylphloroglucinol"]]},{"id":"UniProt:Q45066","l":"","na":16,"nb":2,"a":[["GO%3A0009330","DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) complex"],["GO%3A0034335","DNA negative supercoiling activity"],["NCBIfam%3ANF004044","DNA topoisomerase (ATP-hydrolyzing)"],["NCBIfam%3ATIGR01063","DNA topoisomerase (ATP-hydrolyzing) subunit A"],["NCBIfam%3ATIGR01061","DNA topoisomerase IV subunit A"],["CDD%3Acd00187","TOP4c"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"CHEBI:33566","l":"","na":2,"nb":15,"a":[["EC%3A2.1.1.6","catechol O-methyltransferase"],["RHEA%3A17877","a catechol + S-adenosyl-L-methionine = a guaiacol + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/acteoside.html","acteoside"],["antibacterial/brazilin.html","brazilin"],["antibacterial/comazaphilone-c.html","comazaphilone C"],["antibacterial/comazaphilone-e.html","comazaphilone E"],["antibacterial/ethyl-3-4-dihydroxybenzoate.html","ethyl 3,4-dihydroxybenzoate"],["antifungal/altenusin.html","altenusin"]]},{"id":"GO:0003964","l":"RNA-directed DNA polymerase activity","na":13,"nb":2,"a":[["EC%3A2.7.7.49","RNA-directed DNA polymerase"],["GO%3A0003964","RNA-directed DNA polymerase activity"],["GO%3A0003720","telomerase activity"],["NCBIfam%3ATIGR04416","group II intron reverse transcriptase/maturase"],["InterPro%3AIPR010659","Reverse transcriptase connection"],["InterPro%3AIPR010661","Reverse transcriptase thumb"]],"b":[["antiviral/delavirdine.html","delavirdine"],["antiviral/nevirapine.html","nevirapine"]]},{"id":"CHEBI:140331","l":"","na":2,"nb":11,"a":[["EC%3A2.1.1.231","flavonoid 4'-O-methyltransferase"],["RHEA%3A31743","a 4'-hydroxyflavanone + S-adenosyl-L-methionine = a 4'-methoxyflavanone + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/6-8-diprenylnaringenin.html","6,8-diprenylnaringenin"],["antibacterial/naringenin-7-o-%CE%B2-d-glucoside.html","naringenin 7-O-β-D-glucoside"],["antibacterial/remangiflavanone-a.html","remangiflavanone A"],["antibacterial/remangiflavanone-b.html","remangiflavanone B"],["antibacterial/sigmoidin-a.html","sigmoidin A"],["antibacterial/sigmoidin-b.html","sigmoidin B"]]},{"id":"CHEBI:77396","l":"","na":11,"nb":2,"a":[["EC%3A1.1.1.192","long-chain-alcohol dehydrogenase"],["EC%3A1.1.3.20","long-chain-alcohol oxidase"],["EC%3A1.2.1.108","alcohol-forming fatty acyl-CoA reductase (NADH)"],["EC%3A1.2.1.84","alcohol-forming fatty acyl-CoA reductase (NADPH)"],["EC%3A1.2.1.n2","fatty acyl-CoA reductase"],["RHEA%3A36303","a fatty acyl-CoA + 2 NADPH + 2 H(+) = a long-chain primary fatty alcohol + 2 NADP(+) + CoA"]],"b":[["antibacterial/9z-12z-15z-octadecatrien-1-ol.html","(9Z,12Z,15Z)-octadecatrien-1-ol"],["antiviral/docosan-1-ol.html","docosan-1-ol"]]},{"id":"ARO:3007560","l":"","na":10,"nb":2,"a":[["ARO%3A3007642","Aspergillus spp. fcyB conferring resistance to 5-flucytosine via reduced permeability"],["ARO%3A3007643","Aspergillus spp. transcription factor pacC"],["ARO%3A3007665","Candida spp. FCY2 conferring resistance to 5-flucytosine via reduced permeability"],["ARO%3A3007557","Candida spp. FUR1 with mutations conferring resistance to 5-flucytosine"],["ARO%3A3007568","Cryptococcus spp. UXS1 conferring resistance to 5-flucytosine via absence"],["ARO%3A3007641","fungal nucleobase transporters"]],"b":[["antifungal/5-fluorouracil.html","5-Fluorouracil"],["antifungal/flucytosine.html","flucytosine"]]},{"id":"NCBITaxon:242507","l":"","na":10,"nb":2,"a":[["Pfam%3APF28293","Biotrophy-associated secreted protein 2"],["Pfam%3APF28414","Biotrophy-associated secreted protein 4"],["Pfam%3APF22997","Chitin synthase 4-like domain"],["Pfam%3APF27979","CON7 transcription factor helical domain"],["Pfam%3APF26980","Dicer-like protein 2, dsRNA binding domain"],["Pfam%3APF11327","Egh16-like virulence factor"]],"b":[["antifungal/carboxin.html","carboxin"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"UniProt:Q59192","l":"","na":10,"nb":2,"a":[["GO%3A0034335","DNA negative supercoiling activity"],["NCBIfam%3ANF004189","DNA gyrase subunit B"],["NCBIfam%3ATIGR01058","DNA topoisomerase IV subunit B"],["InterPro%3AIPR018522","DNA topoisomerase, type IIA, conserved site"],["CDD%3Acd16928","HATPase_GyrB-like"],["CDD%3Acd00822","TopoII_Trans_DNA_gyrase"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"CHEBI:35489","l":"","na":2,"nb":9,"a":[["EC%3A1.8.3.7","formylglycine-generating enzyme"],["RHEA%3A51152","L-cysteinyl-[sulfatase] + 2 a thiol + O2 = an organic disulfide + 3-oxo-L-alanyl-[sulfatase] + hydrogen sulfide + H2O + H(+)"]],"b":[["antibacterial/2-methyldithio-pyridine-n-oxide.html","2-(methyldithio)pyridine-N-oxide"],["antibacterial/thiram.html","thiram"],["antibacterial/tropodithietic-acid.html","tropodithietic acid"],["antifungal/diallyl-disulfide.html","diallyl disulfide"],["antifungal/disulfiram.html","disulfiram"],["antifungal/gliotoxin.html","gliotoxin"]]},{"id":"CHEBI:13248","l":"","na":2,"nb":8,"a":[["EC%3A3.5.1.13","aryl-acylamidase"],["RHEA%3A20297","an anilide + H2O = aniline + a carboxylate + H(+)"]],"b":[["antifungal/benodanil.html","benodanil"],["antifungal/carboxin.html","carboxin"],["antifungal/cyclanilide.html","cyclanilide"],["antifungal/fenfuram.html","fenfuram"],["antifungal/methfuroxam.html","methfuroxam"],["antifungal/oxycarboxin.html","oxycarboxin"]]},{"id":"CHEBI:134251","l":"","na":2,"nb":8,"a":[["EC%3A2.1.1.6","catechol O-methyltransferase"],["RHEA%3A17877","a catechol + S-adenosyl-L-methionine = a guaiacol + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/rhapontigenin.html","rhapontigenin"],["antifungal/coniferyl-aldehyde.html","coniferyl aldehyde"],["antifungal/nk372135c.html","NK372135C"],["antimycobacterial/1-2-hydroxy-4-methoxyphenyl-3-4-hydroxy-3-methoxyphenyl-propane.html","1-(2-hydroxy-4-methoxyphenyl)-3-(4-hydroxy-3-methoxyphenyl)propane"],["antiviral/5r-5-hydroxy-7-4-hydroxy-3-methoxyphenyl-1-phenyl-3-heptanone.html","(5R)-5-hydroxy-7-(4'-hydroxy-3'-methoxyphenyl)-1-phenyl-3-heptanone"],["antiviral/isorhapontigenin.html","isorhapontigenin"]]},{"id":"CHEBI:18254","l":"","na":8,"nb":2,"a":[["EC%3A2.7.1.77","nucleoside phosphotransferase"],["EC%3A3.1.3.5","5'-nucleotidase"],["EC%3A3.1.3.6","3'-nucleotidase"],["RHEA%3A19961","a 2'-deoxyribonucleoside + a ribonucleoside 5'-phosphate = a ribonucleoside + a 2'-deoxyribonucleoside 5'-phosphate"],["RHEA%3A10144","a ribonucleoside 3'-phosphate + H2O = a ribonucleoside + phosphate"],["RHEA%3A12484","a ribonucleoside 5'-phosphate + H2O = a ribonucleoside + phosphate"]],"b":[["antifungal/toyocamycin.html","toyocamycin"],["antifungal/tubercidin.html","tubercidin"]]},{"id":"CHEBI:26191","l":"","na":2,"nb":8,"a":[["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A1.A.8","The Major Intrinsic Protein (MIP) Family"]],"b":[["antifungal/reedsmycin-a.html","reedsmycin A"],["antifungal/reedsmycin-b.html","reedsmycin B"],["antifungal/reedsmycin-c.html","reedsmycin C"],["antifungal/reedsmycin-d.html","reedsmycin D"],["antifungal/reedsmycin-e.html","reedsmycin E"],["antifungal/validamycin-a.html","validamycin A"]]},{"id":"CHEBI:59062","l":"","na":2,"nb":8,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["antibacterial/colistimethate-a.html","colistimethate A"],["antibacterial/colistimethate-b.html","colistimethate B"],["antibacterial/colistin-a-sodium-methanesulfonate.html","colistin A sodium methanesulfonate"],["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b-sodium-methanesulfonate.html","colistin B sodium methanesulfonate"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":2,"nb":8,"a":[["PROSITE%3APS00820","Glucoamylase active site region signature"],["TED%3AAF-A0A7I9G6Y3-F1-model_v4_TED02","TED novel fold AF-A0A7I9G6Y3-F1-model_v4_TED02"]],"b":[["antifungal/anidulafungin.html","anidulafungin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/caspofungin.html","caspofungin"],["antifungal/cycloheximide.html","cycloheximide"],["antifungal/micafungin.html","micafungin"],["antifungal/oligomycin-a.html","oligomycin A"]]},{"id":"ARO:3000798","l":"MexEF-OprN","na":7,"nb":2,"a":[["ARO%3A3000798","MexEF-OprN"],["ARO%3A3004068","MexEF-OprN with MexS mutations conferring resistance to chloramphenicol, ciprofloxacin, and trimethoprim"],["ARO%3A3004066","MexEF-OprN with MexT mutation conferring resistance to chloramphenicol, ciprofloxacin, and trimethoprim"],["ARO%3A3004070","MexEF-OprN with MvaT deletion conferring resistance to chloramphenicol and norfloxacin"],["ARO%3A3000813","MexS"],["ARO%3A3000814","MexT"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"CHEBI:33839","l":"","na":7,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.I.3","The Bacterial (Planctomycetes) Nuclear Pore-like Complex (B-NPC) Family"],["TCDB%3A1.A.21","The Bcl-2 (Bcl-2) Family"],["TCDB%3A1.N.4","The FF Fusogen (FFF) Family"],["TCDB%3A1.Q.1","The Fungal Septal Pore (FSP) Family"],["TCDB%3A1.N.3","The Hapless2 Male Gamete Fusion Factor (Fusexin) Family"]],"b":[["antifungal/propineb.html","propineb"],["antifungal/zineb.html","zineb"]]},{"id":"ARO:3000772","l":"AdeIJK","na":2,"nb":6,"a":[["ARO%3A3000772","AdeIJK"],["ARO%3A3000559","adeN"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/imipenem.html","imipenem"],["antibacterial/tetracycline.html","tetracycline"],["antibacterial/ticarcillin.html","ticarcillin"],["antibacterial/trimethoprim.html","trimethoprim"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3007159","l":"","na":6,"nb":2,"a":[["ARO%3A3004183","aminosalicylate resistant dihydrofolate reductase"],["ARO%3A3004155","aminosalicylate resistant dihydrofolate synthase"],["ARO%3A3004152","aminosalicylate resistant thymidylate synthase"],["ARO%3A3004157","Mycobacterium tuberculosis folC with mutation conferring resistance to para-aminosalicylic acid"],["ARO%3A3004184","Mycobacterium tuberculosis ribD with mutation conferring resistance to para-aminosalicylic acid"],["ARO%3A3004153","Mycobacterium tuberculosis thyA with mutation conferring resistance to para-aminosalicylic acid"]],"b":[["antibacterial/diflunisal.html","diflunisal"],["antimycobacterial/4-aminosalicylic-acid.html","4-aminosalicylic acid"]]},{"id":"ARO:3007434","l":"almEFG","na":6,"nb":2,"a":[["ARO%3A3007430","alm glycyl carrier protein"],["ARO%3A3007432","alm glycyltransferase"],["ARO%3A3007433","almE"],["ARO%3A3007434","almEFG"],["ARO%3A3007431","almF"],["ARO%3A3004364","almG"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"CHEBI:140377","l":"","na":2,"nb":6,"a":[["EC%3A1.14.11.9","flavanone 3-dioxygenase"],["RHEA%3A18621","a (2S)-flavan-4-one + 2-oxoglutarate + O2 = a (2R,3R)-dihydroflavonol + succinate + CO2"]],"b":[["antibacterial/6-8-diprenylnaringenin.html","6,8-diprenylnaringenin"],["antibacterial/naringenin-7-o-%CE%B2-d-glucoside.html","naringenin 7-O-β-D-glucoside"],["antibacterial/sophoraflavanone-a.html","sophoraflavanone A"],["antifungal/selinone.html","selinone"],["antimycobacterial/sakuranetin.html","sakuranetin"],["antiprotozoal/sophoraflavanone-g.html","sophoraflavanone G"]]},{"id":"CHEBI:28802","l":"","na":6,"nb":2,"a":[["EC%3A1.14.20.6","flavonol synthase"],["EC%3A2.4.1.91","flavonol 3-O-glucosyltransferase"],["EC%3A3.2.1.62","glycosylceramidase"],["RHEA%3A21088","a (2R,3R)-dihydroflavonol + 2-oxoglutarate + O2 = a flavonol + succinate + CO2 + H2O"],["RHEA%3A81339","a flavonol 3-O-beta-D-glucoside + H2O = a flavonol + D-glucose"],["RHEA%3A22300","a flavonol + UDP-alpha-D-glucose = a flavonol 3-O-beta-D-glucoside + UDP + H(+)"]],"b":[["antibacterial/kaempferol.html","kaempferol"],["antiviral/quercetagetin.html","quercetagetin"]]},{"id":"CHEBI:4917","l":"eugenol","na":6,"nb":2,"a":[["EC%3A1.1.1.318","eugenol synthase"],["EC%3A2.1.1.146","(iso)eugenol O-methyltransferase"],["RHEA%3A32655","eugenol + a carboxylate + NADP(+) = a coniferyl ester + NADPH"],["RHEA%3A24690","eugenol + acetate + NADP(+) = (E)-coniferyl acetate + NADPH"],["RHEA%3A80551","eugenol + S-adenosyl-L-methionine = O-methyleugenol + S-adenosyl-L-homocysteine + H(+)"],["proteintraitsmech%3ABIOLIP_EOL","EOL-binding site"]],"b":[["antibacterial/dihydroconiferyl-alcohol.html","dihydroconiferyl alcohol"],["antibacterial/eugenol.html","eugenol"]]},{"id":"ARO:3000617","l":"mecA","na":5,"nb":2,"a":[["ARO%3A3000617","mecA"],["ARO%3A3003440","mecB"],["ARO%3A3001209","mecC"],["ARO%3A3004185","mecD"],["ARO%3A3001208","methicillin resistant PBP2"]],"b":[["antibacterial/ceftaroline.html","ceftaroline"],["antibacterial/methicillin.html","methicillin"]]},{"id":"CHEBI:28034","l":"","na":5,"nb":2,"a":[["EC%3A2.3.1.18","galactoside O-acetyltransferase"],["EC%3A2.4.3.1","beta-galactoside alpha-(2,6)-sialyltransferase"],["RHEA%3A15713","a beta-D-galactoside + acetyl-CoA = a 6-acetyl-beta-D-galactoside + CoA"],["RHEA%3A52104","a beta-D-galactoside + CMP-N-acetyl-beta-neuraminate = an N-acetyl-alpha-neuraminyl-(2->6)-beta-D-galactosyl derivative + CMP + H(+)"],["RHEA%3A85983","a beta-D-galactoside + UDP-N-acetyl-alpha-D-glucosamine = an N-acetyl-alpha-D-glucosaminyl-(1->4)-beta-D-galactosyl derivative + UDP + H(+)"]],"b":[["antifungal/kaempferol-3-o-%CE%B2-d-galactoside.html","kaempferol 3-O-β-D-galactoside"],["antiviral/acacetin-7-o-%CE%B2-d-galactopyranoside.html","acacetin-7-O-β-D-galactopyranoside"]]},{"id":"CHEBI:35748","l":"","na":2,"nb":5,"a":[["RHEA%3A59388","a fatty acid ester + H2O = an aliphatic alcohol + a fatty acid + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antiprotozoal/neurolenin-a.html","neurolenin A"],["antiprotozoal/neurolenin-b.html","neurolenin B"],["antiprotozoal/neurolenin-c.html","neurolenin C"],["antiprotozoal/neurolenin-d.html","neurolenin D"],["antiviral/interiotherin-b.html","interiotherin B"]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":2,"nb":5,"a":[["Pfam%3APF07833","Copper amine oxidase N-terminal domain"],["TED%3AAF-A0A447L715-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A447L715-F1-model_v4_TED02"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3000248","l":"DnaA","na":2,"nb":4,"a":[["ARO%3A3000248","DnaA"],["ARO%3A3004244","DnaA chromosomal replication initiation protein"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3000369","l":"MtrCDE","na":4,"nb":2,"a":[["ARO%3A3000816","mtrA"],["ARO%3A3000369","MtrCDE"],["ARO%3A3000817","mtrR"],["ARO%3A3004851","Neisseria gonorrhoeae mtrR with mutation conferring resistance"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003581","l":"Acinetobacter mutant Lpx gene conferring resistance to colistin","na":4,"nb":2,"a":[["ARO%3A3003581","Acinetobacter mutant Lpx gene conferring resistance to colistin"],["ARO%3A3003573","LpxA"],["ARO%3A3003574","LpxC"],["ARO%3A3003575","LpxD"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004063","l":"EdeQ","na":2,"nb":4,"a":[["ARO%3A3004064","Edeine acetyltransferase"],["ARO%3A3004063","EdeQ"]],"b":[["antibacterial/edeine-a.html","edeine A"],["antibacterial/edeine-b.html","edeine B"],["antibacterial/edeine-d.html","edeine D"],["antibacterial/edeine-f.html","edeine F"]]},{"id":"ARO:3004287","l":"lipid A phosphatase","na":2,"nb":4,"a":[["ARO%3A3004287","lipid A phosphatase"],["ARO%3A3003920","pgpB"]],"b":[["antibacterial/polymyxin-b1.html","polymyxin B1"],["antibacterial/polymyxin-b2.html","polymyxin B2"],["antibacterial/polymyxin-b3.html","polymyxin B3"],["antibacterial/polymyxin-b4.html","polymyxin B4"]]},{"id":"CHEBI:12834","l":"","na":4,"nb":2,"a":[["EC%3A1.3.1.102","2-alkenal reductase (NADP(+))"],["EC%3A1.3.1.74","2-alkenal reductase [NAD(P)(+)]"],["RHEA%3A13733","an n-alkanal + NAD(+) = an alk-2-enal + NADH + H(+)"],["RHEA%3A13737","an n-alkanal + NADP(+) = an alk-2-enal + NADPH + H(+)"]],"b":[["antifungal/decanal.html","decanal"],["antimycobacterial/undecanal.html","undecanal"]]},{"id":"CHEBI:13601","l":"","na":4,"nb":2,"a":[["EC%3A1.3.1.22","3-oxo-5alpha-steroid 4-dehydrogenase (NADP(+))"],["EC%3A1.3.99.5","3-oxo-5alpha-steroid 4-dehydrogenase (acceptor)"],["RHEA%3A13805","a 3-oxo-5alpha-steroid + A = a 3-oxo-Delta(4)-steroid + AH2"],["RHEA%3A54384","a 3-oxo-5alpha-steroid + NADP(+) = a 3-oxo-Delta(4)-steroid + NADPH + H(+)"]],"b":[["antiviral/lucialdehyde-b.html","lucialdehyde B"],["antiviral/torvoside-h.html","torvoside H"]]},{"id":"CHEBI:140332","l":"","na":2,"nb":4,"a":[["EC%3A2.1.1.231","flavonoid 4'-O-methyltransferase"],["RHEA%3A31743","a 4'-hydroxyflavanone + S-adenosyl-L-methionine = a 4'-methoxyflavanone + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antifungal/chamaejasmenin-a.html","chamaejasmenin A"],["antifungal/chamaejasmenin-d.html","chamaejasmenin D"],["antifungal/isochamaejasmenin-b.html","isochamaejasmenin B"],["unspecified/erylatissin-c.html","erylatissin C"]]},{"id":"CHEBI:15904","l":"long-chain fatty acid","na":2,"nb":4,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/9z-12z-15z-octadeca-9-12-15-trien-6-ynoic-acid.html","(9Z,12Z,15Z)-octadeca-9,12,15-trien-6-ynoic acid"],["antifungal/10e-15z-9-12-13-trihydroxy-10-15-octadecadienoic-acid.html","(10E,15Z)-9,12,13-trihydroxy-10,15-octadecadienoic acid"],["antimycobacterial/scleropyric-acid.html","scleropyric acid"],["antiprotozoal/minquartynoic-acid.html","minquartynoic acid"]]},{"id":"CHEBI:35190","l":"","na":4,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.60","The Organo Anion Transporter (OAT) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antifungal/casbene.html","casbene"],["unspecified/neophytadiene.html","neophytadiene"]]},{"id":"CHEBI:35757","l":"","na":4,"nb":2,"a":[["EC%3A3.5.1.4","amidase"],["RHEA%3A12020","a monocarboxylic acid amide + H2O = a monocarboxylate + NH4(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["MCSA%3A726","peptide amidase"]],"b":[["antiviral/n-acetyl-l-cysteinate.html","N-acetyl-L-cysteinate"],["unspecified/nocardicin-e-2.html","nocardicin E(2−)"]]},{"id":"CHEBI:52267","l":"","na":2,"nb":4,"a":[["EC%3A2.4.1.237","flavonol 7-O-beta-glucosyltransferase"],["RHEA%3A23164","a 7-O-hydroxy-flavonol + UDP-alpha-D-glucose = a flavonol 7-O-beta-D-glucoside + UDP + H(+)"]],"b":[["antibacterial/kaempferol.html","kaempferol"],["antibacterial/morin.html","morin"],["antibacterial/quercetin.html","quercetin"],["unspecified/galangin.html","galangin"]]},{"id":"CHEBI:80291","l":"","na":4,"nb":2,"a":[["EC%3A3.5.5.7","aliphatic nitrilase"],["EC%3A4.2.1.84","nitrile hydratase"],["RHEA%3A46188","an aliphatic nitrile + 2 H2O = a carboxylate + NH4(+)"],["RHEA%3A12673","an aliphatic primary amide = an aliphatic nitrile + H2O"]],"b":[["antifungal/acrylonitrile.html","acrylonitrile"],["antifungal/borrelidin.html","borrelidin"]]},{"id":"NCBITaxon:318829","l":"Magnaporthe oryzae","na":2,"nb":4,"a":[["TED%3AAF-A0A4P7NAU2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P7NAU2-F1-model_v4_TED01"],["TED%3AAF-A0A4P7MZB7-F1-model_v4_TED02","TED novel fold AF-A0A4P7MZB7-F1-model_v4_TED02"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/carboxin.html","carboxin"],["antifungal/carpropamid.html","carpropamid"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:746128","l":"Aspergillus fumigatus","na":2,"nb":4,"a":[["Pfam%3APF07335","Fungal chitosanase of glycosyl hydrolase group 75"],["Pfam%3APF12296","Hydrophobic surface binding protein A"]],"b":[["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/terbinafine.html","terbinafine"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"ARO:3000770","l":"AdeABC","na":3,"nb":2,"a":[["ARO%3A3000770","AdeABC"],["ARO%3A3000553","adeR"],["ARO%3A3000549","adeS"]],"b":[["antibacterial/tetracycline.html","tetracycline"],["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:3000773","l":"CmeABC","na":2,"nb":3,"a":[["ARO%3A3000773","CmeABC"],["ARO%3A3000526","cmeR"]],"b":[["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3000799","l":"MexGHI-OpmD","na":2,"nb":3,"a":[["ARO%3A3000806","MexG"],["ARO%3A3000799","MexGHI-OpmD"]],"b":[["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/tetracycline.html","tetracycline"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3002986","l":"bacA","na":2,"nb":3,"a":[["ARO%3A3002986","bacA"],["ARO%3A3003250","bcrC"]],"b":[["antibacterial/bacitracin-a.html","bacitracin A"],["antibacterial/bacitracin-b.html","bacitracin B"],["antibacterial/bacitracin-f.html","bacitracin F"]]},{"id":"ARO:3003250","l":"bcrC","na":2,"nb":3,"a":[["ARO%3A3002986","bacA"],["ARO%3A3003250","bcrC"]],"b":[["antibacterial/bacitracin-a.html","bacitracin A"],["antibacterial/bacitracin-b.html","bacitracin B"],["antibacterial/bacitracin-f.html","bacitracin F"]]},{"id":"ARO:3003963","l":"flo","na":3,"nb":2,"a":[["ARO%3A3003963","flo"],["ARO%3A3002705","floR"],["ARO%3A3002812","pp-flo"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"]]},{"id":"CHEBI:142621","l":"","na":3,"nb":2,"a":[["RHEA%3A69763","a medium-chain fatty aldehyde + NAD(+) + H2O = a medium-chain fatty acid + NADH + 2 H(+)"],["RHEA%3A80815","a medium-chain fatty aldehyde + NADP(+) + H2O = a medium-chain fatty acid + NADPH + 2 H(+)"],["RHEA%3A58364","a medium-chain primary fatty alcohol + NADP(+) = a medium-chain fatty aldehyde + NADPH + H(+)"]],"b":[["antifungal/decanal.html","decanal"],["antimycobacterial/undecanal.html","undecanal"]]},{"id":"CHEBI:17012","l":"N-acetylneuraminic acid","na":2,"nb":3,"a":[["MCSA%3A835","exo-alpha-sialidase (GH33 Family)"],["MCSA%3A828","exo-alpha-sialidase (GH34 Family)"]],"b":[["antiviral/n-acetyl-%CE%B1-neuraminic-acid.html","N-acetyl-α-neuraminic acid"],["antiviral/n-acetyl-%CE%B2-neuraminic-acid.html","N-acetyl-β-neuraminic acid"],["antiviral/n-acetylneuraminic-acid.html","N-acetylneuraminic acid"]]},{"id":"CHEBI:83628","l":"","na":3,"nb":2,"a":[["EC%3A3.5.1.4","amidase"],["RHEA%3A12020","a monocarboxylic acid amide + H2O = a monocarboxylate + NH4(+)"],["MCSA%3A726","peptide amidase"]],"b":[["antifungal/2-chloroacetamide.html","2-chloroacetamide"],["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"NCBITaxon:332648","l":"Botrytis cinerea B05.10","na":3,"nb":2,"a":[["Pfam%3APF01670","Glycosyl hydrolase family 12"],["PROSITE%3APS00776","Glycosyl hydrolases family 11 (GH11) active site signature 1"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"]],"b":[["antifungal/fludioxonil.html","fludioxonil"],["antifungal/iprodione.html","iprodione"]]},{"id":"ARO:3003027","l":"lmrAB Operon","na":2,"nb":2,"a":[["ARO%3A3003028","lmrA"],["ARO%3A3003027","lmrAB Operon"]],"b":[["antibacterial/lincomycin.html","lincomycin"],["antibacterial/puromycin.html","puromycin"]]},{"id":"ARO:3004101","l":"MdtNOP","na":2,"nb":2,"a":[["ARO%3A3003843","leuO"],["ARO%3A3004101","MdtNOP"]],"b":[["antibacterial/puromycin.html","puromycin"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3004141","l":"AxyXY-OprZ","na":2,"nb":2,"a":[["ARO%3A3004141","AxyXY-OprZ"],["ARO%3A3004145","AxyZ"]],"b":[["antibacterial/cefepime.html","cefepime"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004919","l":"Mycobacterium tuberculosis eccC5 conferring resistance to fluoroquinolones","na":2,"nb":2,"a":[["ARO%3A3004918","Mycobacterium tuberculosis eccB5 conferring resistance to fluoroquinolones"],["ARO%3A3004919","Mycobacterium tuberculosis eccC5 conferring resistance to fluoroquinolones"]],"b":[["antibacterial/moxifloxacin.html","moxifloxacin"],["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3004995","l":"rifampicin resistant rpoC","na":2,"nb":2,"a":[["ARO%3A3004994","Mycobacterium tuberculosis rpoC mutations confer resistance to rifampicin"],["ARO%3A3004995","rifampicin resistant rpoC"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3007161","l":"","na":2,"nb":2,"a":[["ARO%3A3005178","Mycobacterium tuberculosis ethA mutations conferring resistance to perchlozone"],["ARO%3A3005205","perchlozone resistant ethA"]],"b":[["antibacterial/perchlozone.html","perchlozone"],["antibacterial/thioacetazone.html","thioacetazone"]]},{"id":"CHEBI:133959","l":"","na":2,"nb":2,"a":[["EC%3A2.1.1.46","isoflavone 4'-O-methyltransferase"],["RHEA%3A31739","a 4'-hydroxyisoflavone + S-adenosyl-L-methionine = a 4'-methoxyisoflavone + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/licoricone.html","licoricone"],["unspecified/erylatissin-a.html","erylatissin A"]]},{"id":"CHEBI:140310","l":"","na":2,"nb":2,"a":[["EC%3A3.1.1.2","arylesterase"],["RHEA%3A17309","a phenyl acetate + H2O = a phenol + acetate + H(+)"]],"b":[["antibacterial/resorcinol-monoacetate.html","resorcinol monoacetate"],["antifungal/ncx-4040.html","NCX-4040"]]},{"id":"CHEBI:17354","l":"","na":2,"nb":2,"a":[["EC%3A5.1.99.2","16-hydroxysteroid epimerase"],["RHEA%3A15829","a 16alpha-hydroxysteroid = a 16beta-hydroxysteroid"]],"b":[["antifungal/9%CE%BE-14%CE%BE-25s-cholestane-3%CE%B2-4%CE%B2-6%CE%B2-7%CE%B1-8-15%CE%B1-16%CE%B2-26-octol.html","(9ξ,14ξ,25S)-cholestane-3β,4β,6β,7α,8,15α,16β,26-octol"],["antiviral/clathsterol-disulfonic-acid.html","clathsterol disulfonic acid"]]},{"id":"CHEBI:28163","l":"","na":2,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/albomycin-%CE%B42.html","albomycin δ2"],["antibacterial/albomycin-%CE%B5.html","albomycin ε"]]},{"id":"CHEBI:4986","l":"","na":2,"nb":2,"a":[["EC%3A2.1.1.15","fatty-acid O-methyltransferase"],["RHEA%3A23012","a fatty acid + S-adenosyl-L-methionine = a fatty acid methyl ester + S-adenosyl-L-homocysteine"]],"b":[["antibacterial/methyl-%CE%B3-linolenate.html","methyl γ-linolenate"],["antifungal/methyl-nonanoate.html","methyl nonanoate"]]},{"id":"CHEBI:64627","l":"","na":2,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.A.18","The Peptide Uptake Permease (PUP) Family"]],"b":[["unspecified/microcin-b17.html","microcin B17"],["unspecified/microcin-c.html","microcin c"]]},{"id":"CHEBI:86315","l":"","na":2,"nb":2,"a":[["EC%3A2.1.1.9","thiol S-methyltransferase"],["RHEA%3A18277","a thiol + S-adenosyl-L-methionine = a methyl thioether + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antifungal/maremycin-g.html","maremycin G"],["antifungal/neticonazole.html","neticonazole"]]},{"id":"NCBITaxon:5482","l":"Candida tropicalis","na":2,"nb":2,"a":[["Pfam%3APF05203","Hom_end-associated Hint"],["Pfam%3APF05204","Homing endonuclease"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"CHEBI:33281","l":"","na":1,"nb":910,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/1-carbapenem-3-carboxylic-acid.html","1-carbapenem-3-carboxylic acid"],["antibacterial/1%CE%B2-methylcarbapenem.html","1β-methylcarbapenem"],["antibacterial/3-6-9-trihydroxypterocarpan.html","3,6,9-trihydroxypterocarpan"],["antibacterial/3z-ravenic-acid.html","(3Z)-ravenic acid"],["antibacterial/5-chloro-7-iodoquinolin-8-ol.html","5-chloro-7-iodoquinolin-8-ol"],["antibacterial/5-o-mycaminosyltylonolide.html","5-O-mycaminosyltylonolide"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":680,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16240","requires hydrogen peroxide"],["EC%3A1.1.3.10","pyranose oxidase"],["EC%3A1.1.3.11","L-sorbose oxidase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.3.13","alcohol oxidase"],["EC%3A1.1.3.15","(S)-2-hydroxy-acid oxidase"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":297,"nb":1,"a":[["IDPO%3A0000002","disorder"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000045","phosphorylation display site"],["IDPO%3A0000059","self-inhibition"],["Pfam%3APF17837","4'-phosphopantetheinyl transferase N-terminal domain"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"ARO:3000014","l":"TEM beta-lactamase","na":251,"nb":1,"a":[["ARO%3A3000873","TEM-1"],["ARO%3A3000882","TEM-10"],["ARO%3A3001366","TEM-100"],["ARO%3A3000964","TEM-101"],["ARO%3A3000965","TEM-102"],["ARO%3A3000966","TEM-103"]],"b":[["antibacterial/ampicillin.html","ampicillin"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":212,"nb":1,"a":[["EC%3A1.1.1.244","methanol dehydrogenase"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.99.37","methanol dehydrogenase (nicotinoprotein)"],["EC%3A1.13.11.94","4-vinylguaiacol dioxygenase"],["EC%3A1.14.11.27","[histone H3]-dimethyl-L-lysine(36) demethylase"]],"b":[["biocide/formaldehyde.html","formaldehyde"]]},{"id":"ARO:3000017","l":"OXA beta-lactamase","na":158,"nb":1,"a":[["ARO%3A3007696","OXA-1-like beta-lactamase"],["ARO%3A3007697","OXA-10-like beta-lactamase"],["ARO%3A3008427","OXA-1006"],["ARO%3A3008432","OXA-1011"],["ARO%3A3001706","OXA-102"],["ARO%3A3008457","OXA-1036"]],"b":[["antibacterial/oxacillin.html","oxacillin"]]},{"id":"GO:0004146","l":"dihydrofolate reductase activity","na":125,"nb":1,"a":[["EC%3A1.5.1.3","dihydrofolate reductase"],["RHEA%3A15009","(6S)-5,6,7,8-tetrahydrofolate + NADP(+) = 7,8-dihydrofolate + NADPH + H(+)"],["GO%3A0004146","dihydrofolate reductase activity"],["NCBIfam%3ANF012208","bifunctional dihydropteridine reductase/dihydrofolate reductase TmpR"],["NCBIfam%3ANF000055","DfrA12/DfrA21 family trimethoprim-resistant dihydrofolate reductase"],["NCBIfam%3ANF000332","DfrD/DfrG/DfrK family trimethoprim-resistant dihydrofolate reductase"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"CHEBI:25384","l":"","na":1,"nb":79,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/3-4-secoisopimara-4-18-7-15-triene-3-oic-acid.html","3,4-secoisopimara-4(18),7,15-triene-3-oic acid"],["antibacterial/3-phenylbutyric-acid.html","3-phenylbutyric acid"],["antibacterial/7-3-aminopyrrolidin-1-yl-1-2-4-difluorophenyl-6-fluoro-4-oxo-1-4-dihyd.html","7-(3-aminopyrrolidin-1-yl)-1-(2,4-difluorophenyl)-6-fluoro-4-oxo-1,4-dihydro-1,8-naphthyridine-3-carboxylic"],["antibacterial/chuangxinmycin.html","(−)-chuangxinmycin"],["antibacterial/cremeomycin.html","cremeomycin"],["antibacterial/decatromicin-a.html","decatromicin A"]]},{"id":"ARO:3001218","l":"trimethoprim resistant dihydrofolate reductase dfr","na":60,"nb":1,"a":[["ARO%3A3005354","dfr22"],["ARO%3A3002854","dfrA1"],["ARO%3A3003011","dfrA10"],["ARO%3A3002858","dfrA12"],["ARO%3A3003012","dfrA13"],["ARO%3A3002859","dfrA14"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"CHEBI:25105","l":"","na":1,"nb":58,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antibacterial/5-o-mycaminosyltylonolide.html","5-O-mycaminosyltylonolide"],["antibacterial/aplasmomycin.html","(+)-aplasmomycin"],["antibacterial/azithromycin.html","azithromycin"],["antibacterial/boromycin.html","boromycin"],["antibacterial/brefeldin-a.html","brefeldin A"],["antibacterial/cethromycin.html","cethromycin"]]},{"id":"NCBITaxon:227321","l":"Emericella nidulans (strain FGSC A4 / ATCC 38163 / CBS 112.46 / NRRL 194 / M139)","na":44,"nb":1,"a":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF05270","Alpha-L-arabinofuranosidase B (ABFB) domain"],["Pfam%3APF07792","Docking domain of Afi1 for Arf3 in vesicle trafficking"],["Pfam%3APF09206","Alpha-L-arabinofuranosidase B, catalytic"],["Pfam%3APF27751","ATEG_07667 C-terminal domain"],["Pfam%3APF20238","Copper acquisition factor BIM1-like"]],"b":[["antifungal/thiabendazole.html","thiabendazole"]]},{"id":"ARO:3007152","l":"","na":40,"nb":1,"a":[["ARO%3A3004270","antibiotic resistant fabI"],["ARO%3A3003462","antibiotic resistant kasA"],["ARO%3A3003460","antibiotic resistant ndh"],["ARO%3A3004045","Escherichia coli fabI mutations conferring resistance to isoniazid and triclosan"],["ARO%3A3004894","Isoniazid resistant ahpC"],["ARO%3A3005103","isoniazid resistant ethA"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"NCBITaxon:367110","l":"Neurospora crassa (strain ATCC 24698 / 74-OR23-1A / CBS 708.71 / DSM 1257 / FGSC 987)","na":40,"nb":1,"a":[["Pfam%3APF08509","Adenylate cyclase G-alpha binding domain"],["Pfam%3APF25026","Asd-4-like domain"],["Pfam%3APF21334","Fungal epsilon subunit of F1F0-ATP synthase C-terminal domain"],["Pfam%3APF20238","Copper acquisition factor BIM1-like"],["Pfam%3APF21492","Ribosomal protein L31p, N-terminal"],["Pfam%3APF00734","Fungal cellulose binding domain"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"CHEBI:17855","l":"triglyceride","na":34,"nb":1,"a":[["EC%3A2.3.1.158","phospholipid:diacylglycerol acyltransferase"],["EC%3A2.3.1.77","triacylglycerol--sterol O-acyltransferase"],["EC%3A3.1.1.3","triacylglycerol lipase"],["EC%3A3.1.1.34","lipoprotein lipase"],["EC%3A3.1.1.79","hormone-sensitive lipase"],["RHEA%3A77987","9-hydroxy-octadecanoate + a triacylglycerol = 9-(acyloxy)-octadecanoate + a 1,3-diacylglycerol"]],"b":[["antifungal/triacetin.html","triacetin"]]},{"id":"CHEBI:35358","l":"","na":1,"nb":33,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/prontosil.html","prontosil"],["antibacterial/sulfabenzamide.html","sulfabenzamide"],["antibacterial/sulfabromomethazine.html","sulfabromomethazine"],["antibacterial/sulfachloropyridazine.html","sulfachloropyridazine"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfaethoxypyridazine.html","sulfaethoxypyridazine"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":32,"nb":1,"a":[["Pfam%3APF25848","Rodlin protein"],["Pfam%3APF13420","Acetyltransferase (GNAT) domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF26381","BREX System ATPase PglY protein 5th domain"],["Pfam%3APF26382","BREX System ATPase PglY protein 6th domain"]],"b":[["antibacterial/nocardamine.html","nocardamine"]]},{"id":"ARO:3007155","l":"","na":31,"nb":1,"a":[["ARO%3A3005002","antibiotic resistant polyketide synthase genes"],["ARO%3A3004972","antibiotic resistant ppsA"],["ARO%3A3004883","antibiotic resistant ppsC"],["ARO%3A3004885","antibiotic resistant ppsD"],["ARO%3A3007184","multidrug resistant Rv1258c"],["ARO%3A3004957","Mycobacterium tuberculosis clpC1 with mutation conferring resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"CHEBI:15882","l":"phenol","na":31,"nb":1,"a":[["EC%3A1.14.13.244","phenol 2-monooxygenase (NADH)"],["EC%3A1.14.13.7","phenol 2-monooxygenase (NADPH)"],["EC%3A1.14.14.20","phenol 2-monooxygenase (FADH2)"],["EC%3A2.1.1.25","phenol O-methyltransferase"],["EC%3A2.4.2.55","nicotinate D-ribonucleotide:phenol phospho-D-ribosyltransferase"],["EC%3A2.7.1.238","phenol phosphorylase"]],"b":[["biocide/phenol.html","phenol"]]},{"id":"CHEBI:16236","l":"ethanol","na":31,"nb":1,"a":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.5.5","alcohol dehydrogenase (quinone)"],["EC%3A1.1.99.36","alcohol dehydrogenase (nicotinoprotein)"],["EC%3A2.3.1.268","ethanol O-acetyltransferase"],["EC%3A3.1.1.113","ethyl acetate hydrolase"],["EC%3A3.1.1.67","fatty-acyl-ethyl-ester synthase"]],"b":[["biocide/ethanol.html","ethanol"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae (strain ATCC 42149 / RIB 40)","na":27,"nb":1,"a":[["Pfam%3APF09260","Alpha-amylase, domain C"],["Pfam%3APF28338","AclK C-terminal domain"],["Pfam%3APF09206","Alpha-L-arabinofuranosidase B, catalytic"],["Pfam%3APF28380","Sesquiterpene cyclase astC-like C-terminal domain"],["Pfam%3APF13364","Beta-galactosidase second all-beta domain"],["Pfam%3APF10435","Beta-galactosidase, domain 2"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"ARO:3000527","l":"","na":25,"nb":1,"a":[["ARO%3A3003668","16s rRNA with mutation conferring resistance to polyamine antibiotics"],["ARO%3A3004064","Edeine acetyltransferase"],["ARO%3A3004063","EdeQ"],["ARO%3A3002876","ethambutol resistant aftA"],["ARO%3A3003452","ethambutol resistant embA"],["ARO%3A3000235","ethambutol resistant embB"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003292","l":"fluoroquinolone resistant gyrA","na":25,"nb":1,"a":[["ARO%3A3003817","Acinetobacter baumannii gyrA conferring resistance to fluoroquinolones"],["ARO%3A3003297","Bartonella bacilliformis gyrA conferring resistance to fluoroquinolones"],["ARO%3A3004860","Burkholderia dolosa gyrA conferring resistance to fluoroquinolones"],["ARO%3A3003789","Campylobacter jejuni gyrA conferring resistance to fluoroquinolones"],["ARO%3A3003931","Capnocytophaga gingivalis gyrA conferring resistance to fluoroquinolones"],["ARO%3A3003995","Clostridioides difficile gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/nybomycin.html","nybomycin"]]},{"id":"CHEBI:64683","l":"","na":25,"nb":1,"a":[["EC%3A2.3.1.73","diacylglycerol--sterol O-acyltransferase"],["EC%3A3.1.3.106","2-lysophosphatidate phosphatase"],["RHEA%3A39851","2 a 1-acyl-sn-glycerol = glycerol + a 1,2-diacyl-sn-glycerol"],["RHEA%3A77991","9-hydroxy-octadecanoate + a 1,2-diacyl-sn-glycerol = 9-(acyloxy)-octadecanoate + a 1-acyl-sn-glycerol"],["RHEA%3A35663","a 1,2-diacyl-sn-glycerol + H2O = a 1-acyl-sn-glycerol + a fatty acid + H(+)"],["RHEA%3A39859","a 1,3-diacyl-sn-glycerol + a 1-acyl-sn-glycerol = a triacyl-sn-glycerol + glycerol"]],"b":[["antiviral/1-linoleoyl-sn-glycerol.html","1-linoleoyl-sn-glycerol"]]},{"id":"ARO:3000250","l":"ErmC","na":1,"nb":24,"a":[["ARO%3A3000250","ErmC"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000326","l":"ErmE","na":1,"nb":24,"a":[["ARO%3A3000326","ErmE"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000347","l":"ErmA","na":1,"nb":24,"a":[["ARO%3A3000347","ErmA"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000375","l":"ErmB","na":1,"nb":24,"a":[["ARO%3A3000375","ErmB"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000392","l":"Erm(37)","na":1,"nb":24,"a":[["ARO%3A3000392","Erm(37)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000495","l":"ErmD","na":1,"nb":24,"a":[["ARO%3A3000495","ErmD"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000498","l":"ErmF","na":1,"nb":24,"a":[["ARO%3A3000498","ErmF"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000522","l":"ErmG","na":1,"nb":24,"a":[["ARO%3A3000522","ErmG"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000592","l":"ErmN","na":1,"nb":24,"a":[["ARO%3A3000592","ErmN"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000593","l":"ErmQ","na":1,"nb":24,"a":[["ARO%3A3000593","ErmQ"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000594","l":"ErmR","na":1,"nb":24,"a":[["ARO%3A3000594","ErmR"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000595","l":"ErmT","na":1,"nb":24,"a":[["ARO%3A3000595","ErmT"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000596","l":"ErmX","na":1,"nb":24,"a":[["ARO%3A3000596","ErmX"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000599","l":"Erm(33)","na":1,"nb":24,"a":[["ARO%3A3000599","Erm(33)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000600","l":"Erm(34)","na":1,"nb":24,"a":[["ARO%3A3000600","Erm(34)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000601","l":"Erm(38)","na":1,"nb":24,"a":[["ARO%3A3000601","Erm(38)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000602","l":"Erm(39)","na":1,"nb":24,"a":[["ARO%3A3000602","Erm(39)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000603","l":"Erm(41)","na":1,"nb":24,"a":[["ARO%3A3000603","Erm(41)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000604","l":"Erm(35)","na":1,"nb":24,"a":[["ARO%3A3000604","Erm(35)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000605","l":"Erm(36)","na":1,"nb":24,"a":[["ARO%3A3000605","Erm(36)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"CHEBI:62733","l":"","na":1,"nb":24,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_62733","requires methanophenazine"]],"b":[["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/platencin.html","platencin"],["antibacterial/platensimycin.html","platensimycin"],["antifungal/benomyl.html","benomyl"],["antifungal/bixafen.html","bixafen"],["antifungal/fenhexamid.html","fenhexamid"]]},{"id":"CHEBI:140324","l":"","na":1,"nb":23,"a":[["RHEA%3A85699","an amide = a nitrile + H2O"]],"b":[["antibacterial/cefsulodin.html","cefsulodin"],["antibacterial/cellocidin.html","cellocidin"],["antibacterial/durlobactam.html","durlobactam"],["antibacterial/methacycline.html","methacycline"],["antibacterial/pantocin-a.html","pantocin A"],["antibacterial/promysalin.html","promysalin"]]},{"id":"CHEBI:26658","l":"","na":1,"nb":23,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antibacterial/laurinterol.html","laurinterol"],["antibacterial/suaveolindole.html","suaveolindole"],["antifungal/albicanol.html","(+)-albicanol"],["antifungal/ascochlorin.html","ascochlorin"],["antifungal/caf-603.html","CAF-603"],["antifungal/cj-01.html","CJ-01"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":23,"nb":1,"a":[["Pfam%3APF09255","Caf1 Capsule antigen"],["Pfam%3APF02611","CDP-diacylglycerol pyrophosphatase"],["Pfam%3APF07411","Domain of unknown function (DUF1508)"],["Pfam%3APF05171","Haemin-degrading HemS.ChuX domain"],["Pfam%3APF21500","DNA polymerase III subunit delta', AAA+ ATPase lid domain"],["Pfam%3APF11004","3-deoxy-D-manno-oct-2-ulosonic acid (Kdo) hydroxylase"]],"b":[["unspecified/%CE%B1-mangostin.html","α-mangostin"]]},{"id":"CHEBI:48132","l":"","na":1,"nb":22,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/minocycline.html","minocycline"],["antibacterial/tetracenomycin-a2.html","tetracenomycin A2"],["antibacterial/tetracenomycin-c.html","tetracenomycin C"],["antibacterial/tetracenomycin-x.html","tetracenomycin X"],["unspecified/8-demethyl-8-2-3-o-dimethyl-%CE%B1-l-rhamnosyl-tetracenomycin-c.html","8-demethyl-8-(2,3-O-dimethyl-α-L-rhamnosyl)tetracenomycin C"],["unspecified/8-demethyl-8-2-o-methyl-%CE%B1-l-rhamnosyl-tetracenomycin-c.html","8-demethyl-8-(2-O-methyl-α-L-rhamnosyl)tetracenomycin C"]]},{"id":"NCBITaxon:284593","l":"Candida glabrata (strain ATCC 2001 / BCRC 20586 / JCM 3761 / NBRC 0622 / NRRL Y-65 / CBS 138)","na":22,"nb":1,"a":[["Pfam%3APF08647","BRE1 E3 ubiquitin ligase"],["Pfam%3APF00649","Copper fist DNA binding domain"],["Pfam%3APF18499","Ubc7p-binding region of Cue1"],["Pfam%3APF18535","Gal11 activator-binding domain (ABD1)"],["Pfam%3APF05390","Yeast cell wall synthesis protein KRE9/KNH1 C-terminal"],["Pfam%3APF09451","Autophagy-related protein 27"]],"b":[["antifungal/fluconazole.html","fluconazole"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":21,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29108","requires calcium(2+)"],["EC%3A1.13.12.24","calcium-regulated photoprotein"],["EC%3A7.2.2.10","P-type Ca(2+) transporter"],["RHEA%3A72631","3 Li(+)(out) + Ca(2+)(in) = 3 Li(+)(in) + Ca(2+)(out)"],["RHEA%3A55884","[aequorin] + 3 Ca(2+) = [aequorin]--dioxetanone"],["RHEA%3A55888","[aequorin]--dioxetanone = excited state-[aequorin] + CO2"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"CHEBI:16016","l":"dihydroxyacetone","na":20,"nb":1,"a":[["EC%3A1.1.1.156","glycerol 2-dehydrogenase (NADP(+))"],["EC%3A1.1.1.6","glycerol dehydrogenase"],["EC%3A1.1.99.22","glycerol dehydrogenase (acceptor)"],["EC%3A2.2.1.3","formaldehyde transketolase"],["EC%3A2.7.1.121","phosphoenolpyruvate--glycerone phosphotransferase"],["EC%3A2.7.1.29","glycerone kinase"]],"b":[["antifungal/dihydroxyacetone.html","dihydroxyacetone"]]},{"id":"CHEBI:24400","l":"","na":1,"nb":17,"a":[["TCDB%3A3.A.3","The P-type ATPase (P-ATPase) Superfamily"]],"b":[["antibacterial/acteoside.html","acteoside"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/fidaxomicin.html","fidaxomicin"],["antibacterial/jadomycin-b.html","jadomycin B"],["antibacterial/josamycin.html","josamycin"],["antibacterial/polyketomycin.html","polyketomycin"]]},{"id":"CHEBI:16247","l":"","na":16,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.A.79","The Autophagosomal Phospholipid Transmembrane Translocase (Atg9) Family"],["TCDB%3A9.A.36","The Ca2+-dependent Phospholipid Scramblase (Scramblase) Family"],["TCDB%3A1.A.17","The Calcium-dependent Chloride Channel (Ca-ClC) Family"],["TCDB%3A9.B.27","The Death Effector Domain A (DedA) Family"],["TCDB%3A8.A.97","The EPG-3/VMP1 (EPG/VPM) Scramblase Family"]],"b":[["antifungal/miltefosine.html","miltefosine"]]},{"id":"CHEBI:16933","l":"","na":16,"nb":1,"a":[["EC%3A1.3.1.71","Delta(24(24(1)))-sterol reductase"],["EC%3A2.3.2.37","ergosteryl-3beta-O-L-aspartate synthase"],["EC%3A3.1.1.121","ergosteryl-3beta-O-L-aspartate hydrolase"],["EC%3A4.2.1.62","5alpha-hydroxysteroid dehydratase"],["RHEA%3A76559","1-(ergostan-3beta-yl)-L-aspartate + H2O = ergosterol + L-aspartate + H(+)"],["RHEA%3A22064","5alpha-ergosta-7,22-diene-3beta,5-diol = ergosterol + H2O"]],"b":[["antifungal/natamycin.html","natamycin"]]},{"id":"NCBITaxon:498257","l":"Verticillium dahliae (strain VdLs.17 / ATCC MYA-4575 / FGSC 10137)","na":16,"nb":1,"a":[["Pfam%3APF11787","Aft1 HRR domain"],["Pfam%3APF16541","Alternaria alternata allergen 1"],["Pfam%3APF09792","Ubiquitin 3 binding protein But2 C-terminal domain"],["Pfam%3APF28223","CAP22"],["Pfam%3APF05730","CFEM domain"],["Pfam%3APF27979","CON7 transcription factor helical domain"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":16,"nb":1,"a":[["Pfam%3APF05932","Tir chaperone protein (CesT) family"],["Pfam%3APF17656","FlgA N-terminal domain"],["Pfam%3APF22200","ExsA N-terminal regulatory domain"],["Pfam%3APF05171","Haemin-degrading HemS.ChuX domain"],["Pfam%3APF07201","HrpJ-like domain"],["Pfam%3APF04391","Protein of unknown function (DUF533)"]],"b":[["unspecified/chir-090.html","CHIR-090"]]},{"id":"CHEBI:16619","l":"(2-trans,6-trans)-farnesol","na":14,"nb":1,"a":[["EC%3A1.1.1.216","farnesol dehydrogenase"],["EC%3A1.1.1.354","farnesol dehydrogenase (NAD(+))"],["EC%3A2.7.1.216","farnesol kinase"],["EC%3A3.1.7.6","farnesyl diphosphatase"],["EC%3A5.2.1.9","farnesol 2-isomerase"],["RHEA%3A13401","(2E,6E)-farnesol = (2Z,6E)-farnesol"]],"b":[["unspecified/2-trans-6-trans-farnesol.html","(2-trans,6-trans)-farnesol"]]},{"id":"CHEBI:60783","l":"","na":1,"nb":14,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antibacterial/oxetanocin-a.html","oxetanocin A"],["antifungal/flucytosine.html","flucytosine"],["antifungal/jawsamycin.html","jawsamycin"],["antiviral/6-azathymidine.html","6-azathymidine"],["antiviral/emtricitabine.html","emtricitabine"],["antiviral/favipiravir-rtp.html","favipiravir-RTP"]]},{"id":"ARO:3003294","l":"Escherichia coli gyrA conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003294","Escherichia coli gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003295","l":"Mycobacterium tuberculosis gyrA conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003295","Mycobacterium tuberculosis gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003296","l":"Staphylococcus aureus gyrA conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003296","Staphylococcus aureus gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003297","l":"Bartonella bacilliformis gyrA conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003297","Bartonella bacilliformis gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003298","l":"Mycobacterium leprae gyrA conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003298","Mycobacterium leprae gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003304","l":"Mycobacterium leprae gyrB conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003304","Mycobacterium leprae gyrB conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003305","l":"Ureaplasma urealyticum gyrB conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003305","Ureaplasma urealyticum gyrB conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003306","l":"Morganella morganii gyrB conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003306","Morganella morganii gyrB conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003307","l":"Salmonella serovars gyrB conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003307","Salmonella serovars gyrB conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003308","l":"Escherichia coli parC conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003308","Escherichia coli parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003309","l":"Ureaplasma urealyticum parC conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003309","Ureaplasma urealyticum parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003310","l":"Mycoplasma hominis parC conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003310","Mycoplasma hominis parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003311","l":"Streptococcus pneumoniae parC conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003311","Streptococcus pneumoniae parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003312","l":"Staphylococcus aureus parC conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003312","Staphylococcus aureus parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003315","l":"Staphylococcus aureus parE conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003315","Staphylococcus aureus parE conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003316","l":"Escherichia coli parE conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003316","Escherichia coli parE conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003317","l":"Salmonella serovars parE conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003317","Salmonella serovars parE conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003817","l":"Acinetobacter baumannii gyrA conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003817","Acinetobacter baumannii gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003818","l":"Acinetobacter baumannii parC conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003818","Acinetobacter baumannii parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":13,"nb":1,"a":[["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF03173","Putative carbohydrate binding domain"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"],["Pfam%3APF06438","Heme-binding protein A (HasA)"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF05247","Flagellar transcriptional activator (FlhD)"]],"b":[["antibacterial/althiomycin.html","althiomycin"]]},{"id":"ARO:3003459","l":"Mycobacterium tuberculosis gyrB mutant conferring resistance to fluoroquinolones","na":1,"nb":12,"a":[["ARO%3A3003459","Mycobacterium tuberculosis gyrB mutant conferring resistance to fluoroquinolones"]],"b":[["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"CHEBI:16188","l":"octan-1-ol","na":12,"nb":1,"a":[["EC%3A1.1.1.73","octanol dehydrogenase"],["EC%3A1.14.15.3","alkane 1-monooxygenase"],["RHEA%3A79323","octan-1-ol + 2 Fe(III)-[cytochrome c] = octanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A64628","octan-1-ol + acetyl-CoA = octyl acetate + CoA"],["RHEA%3A64852","octan-1-ol + benzoyl-CoA = octyl benzoate + CoA"],["RHEA%3A44064","octan-1-ol + hexadecanoyl-CoA = octyl hexadecanoate + CoA"]],"b":[["antifungal/octan-1-ol.html","octan-1-ol"]]},{"id":"CHEBI:22479","l":"","na":1,"nb":12,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/astromicin.html","astromicin"],["antibacterial/etimicin.html","etimicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"CHEBI:28077","l":"rifampicin","na":12,"nb":1,"a":[["ARO%3A3007073","Bacillus subtilis rpoB mutants conferring resistance to rifampin"],["ARO%3A3004480","Bifidobacterium adolescentis rpoB mutants conferring resistance to rifampicin"],["ARO%3A3004563","Clostridioides difficile rpoB with mutation conferring resistance to rifampicin"],["ARO%3A3003288","Escherichia coli rpoB mutants conferring resistance to rifampicin"],["ARO%3A3007051","Helicobacter pylori rpoB mutation conferring resistance to rifampicin"],["ARO%3A3003284","Mycobacterium leprae rpoB mutations conferring resistance to rifampicin"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3000858","l":"armA","na":1,"nb":11,"a":[["ARO%3A3000858","armA"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/g418.html","G418"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3000859","l":"rmtA","na":1,"nb":11,"a":[["ARO%3A3000859","rmtA"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/g418.html","G418"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3000860","l":"rmtB","na":1,"nb":11,"a":[["ARO%3A3000860","rmtB"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/g418.html","G418"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3000861","l":"rmtC","na":1,"nb":11,"a":[["ARO%3A3000861","rmtC"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/g418.html","G418"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3000862","l":"sgm","na":1,"nb":11,"a":[["ARO%3A3000862","sgm"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/g418.html","G418"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3007153","l":"","na":11,"nb":1,"a":[["ARO%3A3003734","antibiotic resistant fusA"],["ARO%3A3003736","antibiotic resistant fusE"],["ARO%3A3003552","fusB"],["ARO%3A3003733","fusC"],["ARO%3A3003731","fusD"],["ARO%3A3004663","FusF"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"CHEBI:17847","l":"p-cresol","na":11,"nb":1,"a":[["EC%3A1.14.13.236","toluene 4-monooxygenase"],["EC%3A1.17.9.1","4-methylphenol dehydrogenase (hydroxylating)"],["EC%3A4.1.1.83","4-hydroxyphenylacetate decarboxylase"],["EC%3A4.1.99.19","2-iminoacetate synthase"],["RHEA%3A22732","4-hydroxyphenylacetate + H(+) = 4-methylphenol + CO2"],["RHEA%3A56976","4-methylphenol + 2 oxidized [azurin] + H2O = 4-hydroxybenzyl alcohol + 2 reduced [azurin] + 2 H(+)"]],"b":[["antifungal/p-cresol.html","p-cresol"]]},{"id":"CHEBI:24396","l":"","na":1,"nb":11,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/chloroeremomycin.html","chloroeremomycin"],["antibacterial/dalbavancin.html","dalbavancin"],["antibacterial/oritavancin.html","oritavancin"],["antibacterial/phleomycin-d1.html","phleomycin D1"],["antibacterial/ristocetin.html","ristocetin"],["antibacterial/telavancin.html","telavancin"]]},{"id":"CHEBI:24869","l":"ionophore","na":1,"nb":11,"a":[["TCDB%3A2.A.74","The 4 TMS Multidrug Endosomal Transporter (MET) Family"]],"b":[["antibacterial/cccp.html","CCCP"],["antibacterial/indanomycin.html","indanomycin"],["antifungal/beauvericin.html","beauvericin"],["antifungal/monensin-a.html","monensin A"],["antiprotozoal/lasalocid-sodium.html","lasalocid sodium"],["antiprotozoal/lasalocid.html","lasalocid"]]},{"id":"CHEBI:28591","l":"guaiacol","na":11,"nb":1,"a":[["EC%3A1.11.1.14","lignin peroxidase"],["EC%3A1.11.1.16","versatile peroxidase"],["RHEA%3A48004","1-(3,4-dimethoxyphenyl)-2-(2-methoxyphenoxy)propane-1,3-diol + H2O2 = 3,4-dimethoxybenzaldehyde + guaiacol + glycolaldehyde + H2O"],["RHEA%3A22396","1-(4-hydroxy-3-methoxyphenyl)-2-(2-methoxyphenoxy)propane-1,3-diol + H2O2 = guaiacol + vanillin + glycolaldehyde + H2O"],["RHEA%3A72243","catechol + S-adenosyl-L-methionine = guaiacol + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A72339","guaiacol + Co(I)-[methoxylated-aromatic-compound-specific corrinoid protein] + H(+) = methyl-Co(III)-[methoxylated-aromatic-compound-specific corrinoid protein] + catechol"]],"b":[["biocide/guaiacol.html","guaiacol"]]},{"id":"CHEBI:29256","l":"","na":11,"nb":1,"a":[["EC%3A1.8.3.7","formylglycine-generating enzyme"],["EC%3A2.1.1.9","thiol S-methyltransferase"],["EC%3A2.8.2.16","thiol sulfotransferase"],["EC%3A4.4.1.13","cysteine-S-conjugate beta-lyase"],["RHEA%3A82919","a thioester + H2O = a thiol + a carboxylate + H(+)"],["RHEA%3A14637","a thiol + 3'-phosphoadenylyl sulfate = S-alkyl thiosulfate + adenosine 3',5'-bisphosphate + H(+)"]],"b":[["antifungal/fusarithioamide-a.html","fusarithioamide A"]]},{"id":"CHEBI:46762","l":"(E,E,E)-geranylgeraniol","na":11,"nb":1,"a":[["EC%3A1.14.14.146","geranylgeraniol 18-hydroxylase"],["EC%3A3.1.7.5","geranylgeranyl diphosphate diphosphatase"],["RHEA%3A46108","(2E,6E,10E)-geranylgeraniol + 2 NADPH + 2 O2 + H(+) = (2E,6E,10E)-geranylgeranate + 2 NADP(+) + 3 H2O"],["RHEA%3A61664","(2E,6E,10E)-geranylgeraniol + ATP = (2E,6E,10E)-geranylgeranyl phosphate + ADP + H(+)"],["RHEA%3A63456","(2E,6E,10E)-geranylgeraniol + CTP = (2E,6E,10E)-geranylgeranyl phosphate + CDP + H(+)"],["RHEA%3A63460","(2E,6E,10E)-geranylgeraniol + GTP = (2E,6E,10E)-geranylgeranyl phosphate + GDP + H(+)"]],"b":[["antiprotozoal/e-e-e-geranylgeraniol.html","(E,E,E)-geranylgeraniol"]]},{"id":"CHEBI:50744","l":"","na":11,"nb":1,"a":[["TCDB%3A2.A.24","The 2-Hydroxycarboxylate Transporter (2-HCT) Family"],["TCDB%3A1.A.46","The Anion Channel-forming Bestrophin (Bestrophin) Family"],["TCDB%3A2.A.45","The Arsenite-Antimonite (ArsB) Efflux Family"],["TCDB%3A2.A.11","The Citrate-Mg2+:H+ (CitM) Citrate-Ca2+:H+ (CitH) Symporter (CitMHS) Family"],["TCDB%3A2.A.47","The Divalent Anion:Na+ Symporter (DASS) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antiviral/tamoxifen-citrate.html","tamoxifen citrate"]]},{"id":"NCBITaxon:341663","l":"","na":11,"nb":1,"a":[["Pfam%3APF27751","ATEG_07667 C-terminal domain"],["Pfam%3APF28386","BfoA family C-terminal domain"],["Pfam%3APF03879","Cgr1 family"],["Pfam%3APF22621","CurL-like, PKS C-terminal"],["Pfam%3APF18558","Methyltransferase, Helix-turn-helix domain"],["Pfam%3APF06355","Aegerolysin"]],"b":[["antiviral/aspulvinone-e.html","aspulvinone E"]]},{"id":"ARO:3002814","l":"clbA","na":1,"nb":10,"a":[["ARO%3A3002814","clbA"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002815","l":"clbB","na":1,"nb":10,"a":[["ARO%3A3002815","clbB"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002816","l":"clbC","na":1,"nb":10,"a":[["ARO%3A3002816","clbC"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3003038","l":"MexXY-OprA","na":1,"nb":10,"a":[["ARO%3A3003038","MexXY-OprA"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/gentamicin-c.html","gentamicin C"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3003441","l":"cfrA","na":1,"nb":10,"a":[["ARO%3A3003441","cfrA"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3003578","l":"PmrF","na":10,"nb":1,"a":[["ARO%3A3002985","arnA"],["ARO%3A3005053","ArnT"],["ARO%3A3005063","cprR"],["ARO%3A3005065","cprRS"],["ARO%3A3005064","cprS"],["ARO%3A3005068","ParR"]],"b":[["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3003907","l":"cipA","na":1,"nb":10,"a":[["ARO%3A3003907","cipA"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3003966","l":"Klebsiella pneumoniae OmpK35","na":1,"nb":10,"a":[["ARO%3A3003966","Klebsiella pneumoniae OmpK35"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefamandole.html","cefamandole"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"ARO:3003969","l":"lmrP","na":1,"nb":10,"a":[["ARO%3A3003969","lmrP"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"CHEBI:16547","l":"coniferyl aldehyde","na":10,"nb":1,"a":[["EC%3A1.1.1.194","coniferyl-alcohol dehydrogenase"],["EC%3A1.1.1.195","cinnamyl-alcohol dehydrogenase"],["EC%3A1.2.1.44","cinnamoyl-CoA reductase"],["EC%3A1.2.1.68","coniferyl-aldehyde dehydrogenase"],["RHEA%3A23968","(E)-coniferaldehyde + NAD(+) + H2O = (E)-ferulate + NADH + 2 H(+)"],["RHEA%3A64648","(E)-coniferaldehyde + NADP(+) + CoA = (E)-feruloyl-CoA + NADPH + H(+)"]],"b":[["antifungal/coniferyl-aldehyde.html","coniferyl aldehyde"]]},{"id":"CHEBI:17698","l":"chloramphenicol","na":10,"nb":1,"a":[["EC%3A1.14.99.67","alpha-N-dichloroacetyl-p-aminophenylserinol N-oxygenase"],["EC%3A2.3.1.28","chloramphenicol O-acetyltransferase"],["RHEA%3A58884","alpha-N-dichloroacetyl-p-aminophenylserinol + AH2 + 2 O2 = chloramphenicol + A + 2 H2O"],["RHEA%3A18421","chloramphenicol + acetyl-CoA = chloramphenicol 3-acetate + CoA"],["RHEA%3A35287","chloramphenicol(in) + ATP + H2O = chloramphenicol(out) + ADP + phosphate + H(+)"],["RHEA%3A35059","chloramphenicol(in) + H(+)(out) = chloramphenicol(out) + H(+)(in)"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"CHEBI:48120","l":"","na":1,"nb":10,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["unspecified/13-deoxydaunorubicin.html","13-deoxydaunorubicin"],["unspecified/13-dihydrodaunorubicin.html","13-dihydrodaunorubicin"],["unspecified/4-epidoxorubicin.html","4'-epidoxorubicin"],["unspecified/aclacinomycin-a.html","aclacinomycin A"],["unspecified/aclacinomycin-n.html","aclacinomycin N"],["unspecified/aclacinomycin-s.html","aclacinomycin S"]]},{"id":"CHEBI:4885","l":"ethionamide","na":10,"nb":1,"a":[["RHEA%3A47616","ethionamide + NADPH + O2 + H(+) = ethionamide S-oxide + NADP(+) + H2O"],["ARO%3A3003456","antibiotic resistant ethA"],["ARO%3A3003457","ethionamide resistant ethA"],["ARO%3A3005103","isoniazid resistant ethA"],["ARO%3A3005105","Mycobacterium tuberculosis ethA mutations conferring resistance to isoniazid"],["ARO%3A3005178","Mycobacterium tuberculosis ethA mutations conferring resistance to perchlozone"]],"b":[["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"CHEBI:64760","l":"","na":10,"nb":1,"a":[["RHEA%3A44876","a 1,3-diacylglycerol + H2O = a 3-acyl-sn-glycerol + a fatty acid + H(+)"],["RHEA%3A44176","a 2,3-diacyl-sn-glycerol + H2O = a 3-acyl-sn-glycerol + a fatty acid + H(+)"],["RHEA%3A39659","a 3-acyl-sn-glycerol + a 1,2-diacyl-sn-glycero-3-phosphocholine = a 1,3-diacyl-sn-glycerol + a 1-acyl-sn-glycero-3-phosphocholine"],["RHEA%3A78035","a 3-acyl-sn-glycerol + a 1,2-diacyl-sn-glycero-3-phosphocholine = a 1,3-diacyl-sn-glycerol + a 2-acyl-sn-glycero-3-phosphocholine"],["RHEA%3A78131","a 3-acyl-sn-glycerol + a 1,2-diacyl-sn-glycero-3-phosphocholine = a 1,3-diacylglycerol + a 1-acyl-sn-glycero-3-phosphocholine"],["RHEA%3A78135","a 3-acyl-sn-glycerol + a 1,2-diacyl-sn-glycero-3-phosphocholine = a 1,3-diacylglycerol + a 2-acyl-sn-glycero-3-phosphocholine"]],"b":[["antiviral/3-linoleoyl-sn-glycerol.html","3-linoleoyl-sn-glycerol"]]},{"id":"CHEBI:78236","l":"N-acetyl-L-cysteinate","na":10,"nb":1,"a":[["EC%3A1.10.3.15","grixazone synthase"],["RHEA%3A41424","2 3-amino-4-hydroxybenzaldehyde + N-acetyl-L-cysteine + 2 O2 = grixazone A + formate + 3 H2O + H(+)"],["RHEA%3A41420","2 3-amino-4-hydroxybenzoate + N-acetyl-L-cysteine + 2 O2 + H(+) = grixazone B + CO2 + 4 H2O"],["RHEA%3A75515","N-acetyl-L-cysteine + H2O = L-cysteine + acetate"],["RHEA%3A74567","N-acetyl-L-cysteine(out) + L-glutamate(in) = N-acetyl-L-cysteine(in) + L-glutamate(out)"],["RHEA%3A76543","N-acetyl-S-(2-succino)-L-cysteine = N-acetyl-L-cysteine + fumarate"]],"b":[["antiviral/n-acetyl-l-cysteinate.html","N-acetyl-L-cysteinate"]]},{"id":"NCBITaxon:1496","l":"Clostridioides difficile","na":10,"nb":1,"a":[["Pfam%3APF18671","4-Hydroxyphenylacetate decarboxylase subunit gamma N-terminal"],["Pfam%3APF00302","Chloramphenicol acetyltransferase"],["Pfam%3APF18524","High potential iron-sulfur protein like"],["Pfam%3APF06050","2-hydroxyglutaryl-CoA dehydratase, D-component"],["PROSITE%3APS00100","Chloramphenicol acetyltransferase active site"],["Pfam%3APF01473","Putative cell wall binding repeat"]],"b":[["antibacterial/fidaxomicin.html","fidaxomicin"]]},{"id":"ARO:3000318","l":"mphB","na":1,"nb":9,"a":[["ARO%3A3000318","mphB"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/oleandomycin.html","oleandomycin"],["antibacterial/roxithromycin.html","roxithromycin"]]},{"id":"ARO:3000319","l":"mphC","na":1,"nb":9,"a":[["ARO%3A3000319","mphC"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/oleandomycin.html","oleandomycin"],["antibacterial/roxithromycin.html","roxithromycin"]]},{"id":"ARO:3000410","l":"sul1","na":1,"nb":9,"a":[["ARO%3A3000410","sul1"]],"b":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfacetamide.html","sulfacetamide"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfamethazine.html","sulfamethazine"],["antibacterial/sulfamethizole.html","sulfamethizole"],["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3000412","l":"sul2","na":1,"nb":9,"a":[["ARO%3A3000412","sul2"]],"b":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfacetamide.html","sulfacetamide"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfamethazine.html","sulfamethazine"],["antibacterial/sulfamethizole.html","sulfamethizole"],["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3000413","l":"sul3","na":1,"nb":9,"a":[["ARO%3A3000413","sul3"]],"b":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfacetamide.html","sulfacetamide"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfamethazine.html","sulfamethazine"],["antibacterial/sulfamethizole.html","sulfamethizole"],["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3001307","l":"vgbA","na":1,"nb":9,"a":[["ARO%3A3001307","vgbA"]],"b":[["antibacterial/ostreogrycin-b3.html","ostreogrycin B3"],["antibacterial/patricin-a.html","patricin A"],["antibacterial/patricin-b.html","patricin B"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"],["antibacterial/pristinamycin-ib.html","pristinamycin IB"],["antibacterial/pristinamycin-ic.html","pristinamycin IC"]]},{"id":"ARO:3001308","l":"vgbB","na":1,"nb":9,"a":[["ARO%3A3001308","vgbB"]],"b":[["antibacterial/ostreogrycin-b3.html","ostreogrycin B3"],["antibacterial/patricin-a.html","patricin A"],["antibacterial/patricin-b.html","patricin B"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"],["antibacterial/pristinamycin-ib.html","pristinamycin IB"],["antibacterial/pristinamycin-ic.html","pristinamycin IC"]]},{"id":"ARO:3002536","l":"AAC(3)-IIIa","na":1,"nb":9,"a":[["ARO%3A3002536","AAC(3)-IIIa"]],"b":[["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"]]},{"id":"ARO:3002537","l":"AAC(3)-IIIb","na":1,"nb":9,"a":[["ARO%3A3002537","AAC(3)-IIIb"]],"b":[["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"]]},{"id":"ARO:3002597","l":"AAC(6')-Ie-APH(2')-Ia bifunctional protein","na":1,"nb":9,"a":[["ARO%3A3002597","AAC(6')-Ie-APH(2')-Ia bifunctional protein"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3002598","l":"ANT(3')-II-AAC(6')-IId bifunctional protein","na":1,"nb":9,"a":[["ARO%3A3002598","ANT(3')-II-AAC(6')-IId bifunctional protein"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002647","l":"","na":1,"nb":9,"a":[["ARO%3A3002647","APH(3')-IIIa"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/butirosin.html","butirosin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003386","l":"Escherichia coli folP with mutation conferring resistance to sulfonamides","na":1,"nb":9,"a":[["ARO%3A3003386","Escherichia coli folP with mutation conferring resistance to sulfonamides"]],"b":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfacetamide.html","sulfacetamide"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfamethazine.html","sulfamethazine"],["antibacterial/sulfamethizole.html","sulfamethizole"],["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3003387","l":"Streptococcus pyogenes folP with mutation conferring resistance to sulfonamides","na":1,"nb":9,"a":[["ARO%3A3003387","Streptococcus pyogenes folP with mutation conferring resistance to sulfonamides"]],"b":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfacetamide.html","sulfacetamide"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfamethazine.html","sulfamethazine"],["antibacterial/sulfamethizole.html","sulfamethizole"],["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3003697","l":"MexPQ-OpmE","na":1,"nb":9,"a":[["ARO%3A3003697","MexPQ-OpmE"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/imipenem.html","imipenem"],["antibacterial/josamycin.html","josamycin"],["antibacterial/rokitamycin.html","rokitamycin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003990","l":"vgbC","na":1,"nb":9,"a":[["ARO%3A3003990","vgbC"]],"b":[["antibacterial/ostreogrycin-b3.html","ostreogrycin B3"],["antibacterial/patricin-a.html","patricin A"],["antibacterial/patricin-b.html","patricin B"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"],["antibacterial/pristinamycin-ib.html","pristinamycin IB"],["antibacterial/pristinamycin-ic.html","pristinamycin IC"]]},{"id":"CHEBI:35627","l":"","na":9,"nb":1,"a":[["EC%3A3.5.2.6","beta-lactamase"],["RHEA%3A20401","a beta-lactam + H2O = a substituted beta-amino acid"],["TCDB%3A2.C.1","The TonB-ExbB-ExbD/TolA-TolQ-TolR Outer Membrane Receptor Energizers and Stabilizers (TonB/TolA) Family"],["MCSA%3A2","beta-lactamase (Class A)"],["MCSA%3A15","beta-lactamase (Class B1)"],["MCSA%3A16","beta-lactamase (Class B1)"]],"b":[["unspecified/azetidin-2-one.html","azetidin-2-one"]]},{"id":"CHEBI:78274","l":"ferruginol","na":9,"nb":1,"a":[["EC%3A1.14.14.175","ferruginol synthase"],["EC%3A1.14.14.60","ferruginol monooxygenase"],["EC%3A1.14.14.62","salviol synthase"],["EC%3A1.14.14.65","sugiol synthase"],["RHEA%3A48080","abieta-8,11,13-triene + reduced [NADPH--hemoprotein reductase] + O2 = ferruginol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A55456","ferruginol + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = sugiol + 2 oxidized [NADPH--hemoprotein reductase] + 3 H2O + 2 H(+)"]],"b":[["antibacterial/ferruginol.html","ferruginol"]]},{"id":"CHEBI:83563","l":"","na":9,"nb":1,"a":[["EC%3A1.14.14.28","long-chain alkane monooxygenase"],["EC%3A4.1.1.106","fatty acid photodecarboxylase"],["EC%3A4.1.99.5","aldehyde oxygenase (deformylating)"],["RHEA%3A49060","a long-chain alkane + FMNH2 + O2 = a long chain fatty alcohol + FMN + H2O + H(+)"],["RHEA%3A18969","a long-chain fatty acid + hnu + H(+) = a long-chain alkane + CO2"],["RHEA%3A21440","a long-chain fatty aldehyde + 2 NADPH + O2 + H(+) = a long-chain alkane + formate + 2 NADP(+) + H2O"]],"b":[["antimycobacterial/hentriacontane.html","hentriacontane"]]},{"id":"CHEBI:87393","l":"hexan-1-ol","na":9,"nb":1,"a":[["RHEA%3A65480","2-methylbutanoyl-CoA + hexan-1-ol = hexyl 2-methylbutanoate + CoA"],["RHEA%3A79331","hexan-1-ol + 2 Fe(III)-[cytochrome c] = hexanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A65460","hexan-1-ol + acetyl-CoA = hexyl acetate + CoA"],["RHEA%3A65444","hexan-1-ol + butanoyl-CoA = hexyl butanoate + CoA"],["RHEA%3A65484","hexan-1-ol + hexanoyl-CoA = hexyl hexanoate + CoA"],["RHEA%3A60972","hexan-1-ol + NAD(+) = hexanal + NADH + H(+)"]],"b":[["antibacterial/hexan-1-ol.html","hexan-1-ol"]]},{"id":"UniProt:P06633","l":"","na":9,"nb":1,"a":[["GO%3A0004424","imidazoleglycerol-phosphate dehydratase activity"],["NCBIfam%3ANF002114","imidazoleglycerol-phosphate dehydratase HisB"],["InterPro%3AIPR020565","Imidazoleglycerol-phosphate dehydratase, conserved site"],["CDD%3Acd07914","IGPD"],["InterPro%3AIPR038494","Imidazole glycerol phosphate dehydratase domain superfamily"],["PROSITE%3APS00954","Imidazoleglycerol-phosphate dehydratase signature 1"]],"b":[["antiviral/nevirapine.html","nevirapine"]]},{"id":"ARO:3002013","l":"CMY-2","na":1,"nb":8,"a":[["ARO%3A3002013","CMY-2"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002539","l":"AAC(3)-IVa","na":1,"nb":8,"a":[["ARO%3A3002539","AAC(3)-IVa"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/apramycin.html","apramycin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"]]},{"id":"ARO:3002585","l":"","na":1,"nb":8,"a":[["ARO%3A3002585","AAC(6')-31"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/netilmycin.html","netilmycin"]]},{"id":"ARO:3002652","l":"","na":1,"nb":8,"a":[["ARO%3A3002652","APH(3')-VIa"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/butirosin.html","butirosin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3002653","l":"","na":1,"nb":8,"a":[["ARO%3A3002653","APH(3')-VIb"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/butirosin.html","butirosin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004476","l":"vmlR","na":1,"nb":8,"a":[["ARO%3A3004476","vmlR"]],"b":[["antibacterial/a201a.html","A201A"],["antibacterial/hygromycin-a.html","hygromycin A"],["antibacterial/iboxamycin.html","iboxamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"]]},{"id":"ARO:3004578","l":"Acinetobacter baumannii AbuO","na":1,"nb":8,"a":[["ARO%3A3004578","Acinetobacter baumannii AbuO"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"],["antibacterial/carbenicillin.html","carbenicillin"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3004856","l":"SCO-1","na":1,"nb":8,"a":[["ARO%3A3004856","SCO-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/cefuroxime.html","cefuroxime"]]},{"id":"ARO:3005111","l":"blaS1","na":1,"nb":8,"a":[["ARO%3A3005111","blaS1"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/carbenicillin.html","carbenicillin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/mezlocillin.html","mezlocillin"]]},{"id":"ARO:3005511","l":"VIM-63","na":1,"nb":8,"a":[["ARO%3A3005511","VIM-63"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/faropenem.html","faropenem"]]},{"id":"CHEBI:27949","l":"(E)-sinapaldehyde","na":8,"nb":1,"a":[["EC%3A1.1.1.195","cinnamyl-alcohol dehydrogenase"],["RHEA%3A72027","(E)-sinapaldehyde + L-proline = (E)-nesocodin (alcohol-form) + H2O"],["RHEA%3A64656","(E)-sinapaldehyde + NADP(+) + CoA = (E)-sinapoyl-CoA + NADPH + H(+)"],["RHEA%3A57712","(E)-sinapaldehyde + UDP-alpha-D-glucose = 4-O-(beta-D-glucosyl)-4-trans-sinapoyl aldehyde + UDP + H(+)"],["RHEA%3A76459","(E)-sinapyl alcohol + A = (E)-sinapaldehyde + AH2"],["RHEA%3A45704","(E)-sinapyl alcohol + NADP(+) = (E)-sinapaldehyde + NADPH + H(+)"]],"b":[["antifungal/e-sinapaldehyde.html","(E)-sinapaldehyde"]]},{"id":"CHEBI:383703","l":"3,6-diamino-10-methylacridinium chloride","na":8,"nb":1,"a":[["TCDB%3A2.A.85","The Aromatic Acid Exporter (ArAE) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.117","The Chlorhexadine Exporter (CHX) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antibacterial/3-6-diamino-10-methylacridinium-chloride.html","3,6-diamino-10-methylacridinium chloride"]]},{"id":"CHEBI:6030","l":"isoniazide","na":8,"nb":1,"a":[["ARO%3A3004266","antibiotic resistant katG"],["ARO%3A3003416","isoniazid resistant katG"],["ARO%3A3003392","Mycobacterium tuberculosis katG mutations conferring resistance to isoniazid"],["ARO%3A3005102","Mycobacterium tuberculosis katG mutations conferring resistance to prothionamide"],["ARO%3A3005101","prothionamide resistant katG"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"CHEBI:77932","l":"tetracycline zwitterion","na":8,"nb":1,"a":[["EC%3A1.14.13.231","tetracycline 11a-monooxygenase"],["EC%3A1.14.19.49","tetracycline 7-halogenase"],["EC%3A1.3.98.4","5a,11a-dehydrotetracycline reductase"],["RHEA%3A50712","tetracycline + FADH2 + chloride + O2 = 7-chlorotetracycline + FAD + 2 H2O + H(+)"],["RHEA%3A35235","tetracycline(in) + H(+)(out) = tetracycline(out) + H(+)(in)"],["RHEA%3A35239","tetracycline(in) = tetracycline(out)"]],"b":[["antibacterial/tetracycline-zwitterion.html","tetracycline zwitterion"]]},{"id":"ARO:3000205","l":"tet(X)","na":1,"nb":7,"a":[["ARO%3A3000205","tet(X)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000316","l":"mphA","na":1,"nb":7,"a":[["ARO%3A3000316","mphA"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/oleandomycin.html","oleandomycin"],["antibacterial/roxithromycin.html","roxithromycin"]]},{"id":"ARO:3000497","l":"ethambutol","na":7,"nb":1,"a":[["ARO%3A3003447","ethambutol resistant iniA"],["ARO%3A3004136","Ethambutol resistant iniB"],["ARO%3A3003450","Ethambutol resistant iniC"],["ARO%3A3003448","Mycobacterium tuberculosis iniA mutant conferring resistance to ethambutol"],["ARO%3A3004135","Mycobacterium tuberculosis iniB with mutation conferring resistance to ethambutol"],["ARO%3A3003451","Mycobacterium tuberculosis iniC mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3000520","l":"isoniazid","na":7,"nb":1,"a":[["ARO%3A3004921","Mycobacterium tuberculosis ahpC mutations confer resistance to isoniazid"],["ARO%3A3004924","Mycobacterium tuberculosis inbR mutations conferring resistance to isoniazid"],["ARO%3A3007798","Mycobacterium tuberculosis iniA mutations conferring resistance to isoniazid"],["ARO%3A3003463","Mycobacterium tuberculosis kasA mutant conferring resistance to isoniazid"],["ARO%3A3004929","Mycobacterium tuberculosis mmaA3 mutations conferring resistance to isoniazid"],["ARO%3A3004928","Mycobacterium tuberculosis mymA mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3001866","l":"CTX-M-3","na":1,"nb":7,"a":[["ARO%3A3001866","CTX-M-3"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002500","l":"PDC-3","na":1,"nb":7,"a":[["ARO%3A3002500","PDC-3"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002502","l":"PDC-5","na":1,"nb":7,"a":[["ARO%3A3002502","PDC-5"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002533","l":"AAC(3)-IIa","na":1,"nb":7,"a":[["ARO%3A3002533","AAC(3)-IIa"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002534","l":"AAC(3)-IIb","na":1,"nb":7,"a":[["ARO%3A3002534","AAC(3)-IIb"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002535","l":"AAC(3)-IIc","na":1,"nb":7,"a":[["ARO%3A3002535","AAC(3)-IIc"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002545","l":"","na":1,"nb":7,"a":[["ARO%3A3002545","AAC(6')-Ia"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002549","l":"","na":1,"nb":7,"a":[["ARO%3A3002549","AAC(6')-Ic"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002553","l":"","na":1,"nb":7,"a":[["ARO%3A3002553","AAC(6')-If"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002554","l":"","na":1,"nb":7,"a":[["ARO%3A3002554","AAC(6')-Ig"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002555","l":"","na":1,"nb":7,"a":[["ARO%3A3002555","AAC(6')-Ih"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002556","l":"","na":1,"nb":7,"a":[["ARO%3A3002556","AAC(6')-Ii"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002557","l":"","na":1,"nb":7,"a":[["ARO%3A3002557","AAC(6')-Ij"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002558","l":"","na":1,"nb":7,"a":[["ARO%3A3002558","AAC(6')-Ik"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002559","l":"","na":1,"nb":7,"a":[["ARO%3A3002559","AAC(6')-Ip"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002560","l":"","na":1,"nb":7,"a":[["ARO%3A3002560","AAC(6')-Iq"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002561","l":"","na":1,"nb":7,"a":[["ARO%3A3002561","AAC(6')-Ir"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002562","l":"","na":1,"nb":7,"a":[["ARO%3A3002562","AAC(6')-Is"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002563","l":"","na":1,"nb":7,"a":[["ARO%3A3002563","AAC(6')-Isa"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002564","l":"","na":1,"nb":7,"a":[["ARO%3A3002564","AAC(6')-It"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002565","l":"","na":1,"nb":7,"a":[["ARO%3A3002565","AAC(6')-Iu"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002566","l":"","na":1,"nb":7,"a":[["ARO%3A3002566","AAC(6')-Iv"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002567","l":"","na":1,"nb":7,"a":[["ARO%3A3002567","AAC(6')-Iw"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002568","l":"","na":1,"nb":7,"a":[["ARO%3A3002568","AAC(6')-Ix"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002569","l":"","na":1,"nb":7,"a":[["ARO%3A3002569","AAC(6')-Iy"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002570","l":"","na":1,"nb":7,"a":[["ARO%3A3002570","AAC(6')-Iz"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002571","l":"","na":1,"nb":7,"a":[["ARO%3A3002571","AAC(6')-Iaa"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002572","l":"","na":1,"nb":7,"a":[["ARO%3A3002572","AAC(6')-Iad"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002573","l":"","na":1,"nb":7,"a":[["ARO%3A3002573","AAC(6')-Iae"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002574","l":"","na":1,"nb":7,"a":[["ARO%3A3002574","AAC(6')-Iaf"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002575","l":"","na":1,"nb":7,"a":[["ARO%3A3002575","AAC(6')-Iai"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002588","l":"","na":1,"nb":7,"a":[["ARO%3A3002588","AAC(6')-I30"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002589","l":"","na":1,"nb":7,"a":[["ARO%3A3002589","AAC(6')-Iid"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002590","l":"","na":1,"nb":7,"a":[["ARO%3A3002590","AAC(6')-Iih"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002594","l":"","na":1,"nb":7,"a":[["ARO%3A3002594","AAC(6')-IIa"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002595","l":"","na":1,"nb":7,"a":[["ARO%3A3002595","AAC(6')-IIb"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002596","l":"","na":1,"nb":7,"a":[["ARO%3A3002596","AAC(6')-IIc"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002824","l":"ErmV","na":1,"nb":7,"a":[["ARO%3A3002824","ErmV"]],"b":[["antibacterial/carbomycin.html","carbomycin"],["antibacterial/celesticetin.html","celesticetin"],["antibacterial/chalcomycin.html","chalcomycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/josamycin.html","josamycin"],["antibacterial/oleandomycin.html","oleandomycin"]]},{"id":"ARO:3003199","l":"","na":1,"nb":7,"a":[["ARO%3A3003199","AAC(6')-Iak"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3003200","l":"","na":1,"nb":7,"a":[["ARO%3A3003200","AAC(6')-Ian"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3003677","l":"","na":1,"nb":7,"a":[["ARO%3A3003677","AAC(6')-Iaj"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3004128","l":"Serratia marcescens Omp1","na":1,"nb":7,"a":[["ARO%3A3004128","Serratia marcescens Omp1"]],"b":[["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/moxalactam.html","moxalactam"]]},{"id":"ARO:3004491","l":"","na":7,"nb":1,"a":[["ARO%3A3007477","antibiotic resistant ATP synthase"],["ARO%3A3007673","bedaquiline resistant Rv0678"],["ARO%3A3007691","bedaquiline resistant Rv2535c"],["ARO%3A3007476","Mycobacterium abscessus atpE with mutation conferring resistance to bedaquiline"],["ARO%3A3007854","Mycobacterium tuberculosis atpE with mutation conferring resistance to bedaquiline"],["ARO%3A3007674","Mycobacterium tuberculosis Rv0678 with mutation conferring resistance to bedaquiline"]],"b":[["antimycobacterial/bedaquiline.html","bedaquiline"]]},{"id":"ARO:3004559","l":"CAM-1","na":1,"nb":7,"a":[["ARO%3A3004559","CAM-1"]],"b":[["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftolozane.html","ceftolozane"],["antibacterial/doripenem.html","doripenem"],["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3004572","l":"Staphylococcus aureus LmrS","na":1,"nb":7,"a":[["ARO%3A3004572","Staphylococcus aureus LmrS"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/florfenicol.html","florfenicol"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/linezolid.html","linezolid"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004621","l":"AAC(3)-IIe","na":1,"nb":7,"a":[["ARO%3A3004621","AAC(3)-IIe"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3004623","l":"AAC(3)-IId","na":1,"nb":7,"a":[["ARO%3A3004623","AAC(3)-IId"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3004629","l":"","na":1,"nb":7,"a":[["ARO%3A3004629","AAC(6')-Im"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3004635","l":"","na":1,"nb":7,"a":[["ARO%3A3004635","AAC(6')-Il"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3004638","l":"","na":1,"nb":7,"a":[["ARO%3A3004638","AAC(6')-I-48"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3004825","l":"LAP-1","na":1,"nb":7,"a":[["ARO%3A3004825","LAP-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefuroxime.html","cefuroxime"],["antibacterial/piperacillin.html","piperacillin"]]},{"id":"ARO:3004826","l":"LAP-2","na":1,"nb":7,"a":[["ARO%3A3004826","LAP-2"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefuroxime.html","cefuroxime"],["antibacterial/piperacillin.html","piperacillin"]]},{"id":"ARO:3005085","l":"AAC(3)-IIg","na":1,"nb":7,"a":[["ARO%3A3005085","AAC(3)-IIg"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3007011","l":"mdeA","na":1,"nb":7,"a":[["ARO%3A3007011","mdeA"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/nalidixic-acid.html","nalidixic acid"],["antibacterial/oxacillin.html","oxacillin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007204","l":"","na":1,"nb":7,"a":[["ARO%3A3007204","AAC(6')-Iap"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"CHEBI:15722","l":"","na":1,"nb":7,"a":[["MCSA%3A744","GyrA intein (Class 1 intein)"]],"b":[["antibacterial/mastoparan-a.html","mastoparan-A"],["antibacterial/mastoparan-af.html","mastoparan-AF"],["antibacterial/mastoparan-b.html","mastoparan-B"],["antibacterial/mastoparan-d.html","mastoparan-D"],["antibacterial/mastoparan-m.html","mastoparan-M"],["antibacterial/mastoparan-v.html","mastoparan-V"]]},{"id":"CHEBI:15837","l":"isoamylol","na":7,"nb":1,"a":[["EC%3A1.1.1.265","3-methylbutanal reductase"],["EC%3A3.1.1.112","isoamyl acetate esterase"],["RHEA%3A65236","3-methylbutan-1-ol + acetyl-CoA = 3-methylbutyl acetate + CoA"],["RHEA%3A85967","3-methylbutan-1-ol + hexadecanoyl-CoA = 3-methylbutyl hexadecanoate + CoA"],["RHEA%3A18529","3-methylbutan-1-ol + NAD(+) = 3-methylbutanal + NADH + H(+)"],["RHEA%3A18525","3-methylbutan-1-ol + NADP(+) = 3-methylbutanal + NADPH + H(+)"]],"b":[["antifungal/isoamylol.html","isoamylol"]]},{"id":"CHEBI:16118","l":"berberine","na":7,"nb":1,"a":[["EC%3A1.21.3.2","columbamine oxidase"],["EC%3A1.3.3.8","tetrahydroberberine oxidase"],["EC%3A1.5.1.31","berberine reductase"],["RHEA%3A23564","2 columbamine + O2 = 2 berberine + 2 H2O"],["RHEA%3A21268","(R)-canadine + 2 NADP(+) = berberine + 2 NADPH + H(+)"],["RHEA%3A13489","(S)-canadine + 2 O2 + H(+) = berberine + 2 H2O2"]],"b":[["antifungal/berberine.html","berberine"]]},{"id":"CHEBI:16731","l":"(E)-cinnamaldehyde","na":7,"nb":1,"a":[["EC%3A1.1.1.195","cinnamyl-alcohol dehydrogenase"],["EC%3A1.2.1.44","cinnamoyl-CoA reductase"],["RHEA%3A77507","(E)-cinnamaldehyde + hydrogen cyanide = (2S,3E)-2-hydroxy-4-phenylbut-3-enenitrile"],["RHEA%3A10620","(E)-cinnamaldehyde + NADP(+) + CoA = (E)-cinnamoyl-CoA + NADPH + H(+)"],["RHEA%3A58992","(E)-cinnamaldehyde + O2 + H2O = (E)-cinnamate + H2O2 + H(+)"],["RHEA%3A68872","(E)-cinnamate + ATP + NADPH + H(+) = (E)-cinnamaldehyde + AMP + diphosphate + NADP(+)"]],"b":[["antifungal/e-cinnamaldehyde.html","(E)-cinnamaldehyde"]]},{"id":"CHEBI:17209","l":"dihydrosanguinarine","na":7,"nb":1,"a":[["EC%3A1.14.14.100","dihydrosanguinarine 10-monooxygenase"],["EC%3A1.3.1.107","sanguinarine reductase"],["EC%3A1.5.3.12","dihydrobenzophenanthridine oxidase"],["RHEA%3A41660","dihydrosanguinarine + NAD(+) = sanguinarine + NADH"],["RHEA%3A41656","dihydrosanguinarine + NADP(+) = sanguinarine + NADPH"],["RHEA%3A16621","dihydrosanguinarine + O2 + H(+) = sanguinarine + H2O2"]],"b":[["antifungal/dihydrosanguinarine.html","dihydrosanguinarine"]]},{"id":"CHEBI:28831","l":"","na":7,"nb":1,"a":[["RHEA%3A62204","1-propanol + 2 Fe(III)-[cytochrome c] = propanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A65468","1-propanol + acetyl-CoA = propyl acetate + CoA"],["RHEA%3A65476","1-propanol + butanoyl-CoA = propyl butanoate + CoA"],["RHEA%3A50704","1-propanol + NAD(+) = propanal + NADH + H(+)"],["RHEA%3A64712","1-propanol + NADP(+) = propanal + NADPH + H(+)"],["MCSA%3A407","carboxylesterase"]],"b":[["antifungal/4-5-6-7-tetrachloro-2-benzofuran-1-3h-one.html","4,5,6,7-tetrachloro-2-benzofuran-1(3H)-one"]]},{"id":"CHEBI:83264","l":"","na":7,"nb":1,"a":[["RHEA%3A48056","a beta-D-galactosyl-(1->4)-beta-D-glucosyl-(1<->1)-ceramide + H2O = a beta-D-glucosylceramide + D-galactose"],["RHEA%3A85943","a beta-D-glucosylceramide + GDP-alpha-D-mannose = beta-D-Man-(1->4)-beta-D-Glc-(1<->1)-ceramide + GDP + H(+)"],["RHEA%3A78531","a beta-D-glucosylceramide + H2O = a beta-D-glucosyll-(1<->1')-sphingoid base + a fatty acid"],["RHEA%3A81447","a beta-D-glucosylceramide + H2O = an N-acyl-sphingoid base + D-glucose"],["RHEA%3A77255","a beta-D-glucosylceramide(in) = a beta-D-glucosylceramide(out)"],["RHEA%3A66660","a beta-D-glucosylceramide(in) + ATP + H2O = a beta-D-glucosylceramide(out) + ADP + phosphate + H(+)"]],"b":[["unspecified/chrysogeside-b.html","chrysogeside B"]]},{"id":"ARO:3000186","l":"tet(M)","na":1,"nb":6,"a":[["ARO%3A3000186","tet(M)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000190","l":"tet(O)","na":1,"nb":6,"a":[["ARO%3A3000190","tet(O)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000191","l":"tet(Q)","na":1,"nb":6,"a":[["ARO%3A3000191","tet(Q)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000192","l":"tet(S)","na":1,"nb":6,"a":[["ARO%3A3000192","tet(S)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000193","l":"tet(T)","na":1,"nb":6,"a":[["ARO%3A3000193","tet(T)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000194","l":"tet(W)","na":1,"nb":6,"a":[["ARO%3A3000194","tet(W)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000195","l":"tetB(P)","na":1,"nb":6,"a":[["ARO%3A3000195","tetB(P)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000196","l":"tet(32)","na":1,"nb":6,"a":[["ARO%3A3000196","tet(32)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000197","l":"tet(36)","na":1,"nb":6,"a":[["ARO%3A3000197","tet(36)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000556","l":"tet(44)","na":1,"nb":6,"a":[["ARO%3A3000556","tet(44)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000787","l":"MdtABC-TolC","na":6,"nb":1,"a":[["ARO%3A3000828","baeR"],["ARO%3A3000829","baeS"],["ARO%3A3000531","baeSR"],["ARO%3A3000830","cpxA"],["ARO%3A3000524","cpxAR"],["ARO%3A3000787","MdtABC-TolC"]],"b":[["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3001889","l":"CTX-M-27","na":1,"nb":6,"a":[["ARO%3A3001889","CTX-M-27"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ertapenem.html","ertapenem"]]},{"id":"ARO:3002600","l":"","na":1,"nb":6,"a":[["ARO%3A3002600","AAC(3)-Ib/AAC(6')-Ib3 bifunctional protein"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/astromicin.html","astromicin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/sisomycin.html","sisomycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002641","l":"","na":1,"nb":6,"a":[["ARO%3A3002641","APH(3')-Ia"]],"b":[["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"],["antimycobacterial/lividomycin-a.html","lividomycin A"]]},{"id":"ARO:3002642","l":"","na":1,"nb":6,"a":[["ARO%3A3002642","APH(3')-Ib"]],"b":[["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"],["antimycobacterial/lividomycin-a.html","lividomycin A"]]},{"id":"ARO:3002644","l":"","na":1,"nb":6,"a":[["ARO%3A3002644","APH(3')-IIa"]],"b":[["antibacterial/butirosin.html","butirosin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3002645","l":"","na":1,"nb":6,"a":[["ARO%3A3002645","APH(3')-IIb"]],"b":[["antibacterial/butirosin.html","butirosin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3002646","l":"","na":1,"nb":6,"a":[["ARO%3A3002646","APH(3')-IIc"]],"b":[["antibacterial/butirosin.html","butirosin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3003684","l":"Pseudomonas aeruginosa gyrA conferring resistance to fluoroquinolones","na":1,"nb":6,"a":[["ARO%3A3003684","Pseudomonas aeruginosa gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/ofloxacin.html","ofloxacin"],["antibacterial/pefloxacin.html","pefloxacin"],["antibacterial/sitafloxacin.html","Sitafloxacin"],["antibacterial/sparfloxacin.html","sparfloxacin"]]},{"id":"ARO:3003688","l":"PvrR","na":1,"nb":6,"a":[["ARO%3A3003688","PvrR"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/carbenicillin.html","carbenicillin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tetracycline.html","tetracycline"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3003908","l":"Erm(47)","na":1,"nb":6,"a":[["ARO%3A3003908","Erm(47)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/quinupristin.html","quinupristin"],["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3004076","l":"MuxABC-OpmB","na":1,"nb":6,"a":[["ARO%3A3004076","MuxABC-OpmB"]],"b":[["antibacterial/aztreonam.html","aztreonam"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/josamycin.html","josamycin"],["antibacterial/novobiocin.html","novobiocin"],["antibacterial/rokitamycin.html","rokitamycin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004176","l":"Mycoplasma hominis 23S rRNA with mutation conferring resistance to macrolide antibiotics","na":1,"nb":6,"a":[["ARO%3A3004176","Mycoplasma hominis 23S rRNA with mutation conferring resistance to macrolide antibiotics"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/spiramycin-i.html","spiramycin I"],["antibacterial/telithromycin.html","telithromycin"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3004446","l":"Haemophilus influenzae PBP3 conferring resistance to beta-lactam antibiotics","na":1,"nb":6,"a":[["ARO%3A3004446","Haemophilus influenzae PBP3 conferring resistance to beta-lactam antibiotics"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefaclor.html","cefaclor"],["antibacterial/cefdinir.html","cefdinir"],["antibacterial/cefditoren.html","cefditoren"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3004715","l":"vga(E) Staphylococcus cohnii","na":1,"nb":6,"a":[["ARO%3A3004715","vga(E) Staphylococcus cohnii"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/valnemulin.html","valnemulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3005015","l":"VMB-1","na":1,"nb":6,"a":[["ARO%3A3005015","VMB-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3007085","l":"PRC-1","na":1,"nb":6,"a":[["ARO%3A3007085","PRC-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3007154","l":"","na":6,"nb":1,"a":[["ARO%3A3004943","cycloserine resistant ald"],["ARO%3A3004946","cycloserine resistant alr"],["ARO%3A3004939","cycloserine resistant ddlA"],["ARO%3A3004945","Mycobacterium tuberculosis ald mutations confer resistance to cycloserine"],["ARO%3A3004947","Mycobacterium tuberculosis alr with mutation conferring resistance to cycloserine"],["ARO%3A3004941","Mycobacterium tuberculosis ddlA mutations confer resistance to cycloserine"]],"b":[["antimycobacterial/d-cycloserine.html","D-cycloserine"]]},{"id":"ARO:3007437","l":"EBR-5","na":1,"nb":6,"a":[["ARO%3A3007437","EBR-5"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftiofur.html","ceftiofur"],["antibacterial/cefuroxime.html","cefuroxime"],["antibacterial/piperacillin.html","piperacillin"]]},{"id":"ARO:3007646","l":"Neobacillus vireti vmlR2","na":1,"nb":6,"a":[["ARO%3A3007646","Neobacillus vireti vmlR2"]],"b":[["antibacterial/a201a.html","A201A"],["antibacterial/hygromycin-a.html","hygromycin A"],["antibacterial/iboxamycin.html","iboxamycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3007648","l":"PSZ-1","na":1,"nb":6,"a":[["ARO%3A3007648","PSZ-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"ARO:3007659","l":"putative nickel/cobalt transporter","na":1,"nb":6,"a":[["ARO%3A3007659","putative nickel/cobalt transporter"]],"b":[["antibacterial/gentamicin.html","gentamicin"],["antibacterial/nalidixic-acid.html","nalidixic acid"],["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/ofloxacin.html","ofloxacin"],["antibacterial/sparfloxacin.html","sparfloxacin"],["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"CHEBI:134179","l":"","na":1,"nb":6,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antibacterial/3-phenethylamino-butan-2-one.html","3-(phenethylamino)-butan-2-one"],["antifungal/acrylonitrile.html","acrylonitrile"],["antifungal/isoamylol.html","isoamylol"],["antifungal/nerolidol.html","nerolidol"],["antifungal/prop-2-yn-1-ol.html","prop-2-yn-1-ol"],["biocide/ethanol.html","ethanol"]]},{"id":"CHEBI:15399","l":"(+)-carvone","na":6,"nb":1,"a":[["EC%3A1.1.1.275","(+)-trans-carveol dehydrogenase"],["EC%3A1.1.1.n4","(-)-trans-carveol dehydrogenase"],["EC%3A1.3.99.25","carvone reductase"],["RHEA%3A32427","(1R,4S)-isodihydrocarvone + A = (S)-carvone + AH2"],["RHEA%3A14825","(1R,5S)-carveol + NAD(+) = (S)-carvone + NADH + H(+)"],["RHEA%3A25848","(1S,5S)-carveol + NAD(+) = (S)-carvone + NADH + H(+)"]],"b":[["antifungal/carvone.html","(+)-carvone"]]},{"id":"CHEBI:15400","l":"(−)-carvone","na":6,"nb":1,"a":[["EC%3A1.1.1.243","carveol dehydrogenase"],["EC%3A1.1.1.n4","(-)-trans-carveol dehydrogenase"],["EC%3A1.3.99.25","carvone reductase"],["RHEA%3A32423","(1R,4R)-dihydrocarvone + A = (R)-carvone + AH2"],["RHEA%3A25844","(1S,5R)-carveol + NAD(+) = (R)-carvone + NADH + H(+)"],["RHEA%3A13629","(1S,5R)-carveol + NADP(+) = (R)-carvone + NADPH + H(+)"]],"b":[["antifungal/carvone-15400.html","(−)-carvone"]]},{"id":"CHEBI:16664","l":"albendazole","na":6,"nb":1,"a":[["EC%3A1.14.13.32","albendazole monooxygenase"],["EC%3A1.14.14.73","albendazole monooxygenase (sufoxide-forming)"],["EC%3A1.14.14.74","albendazole monooxygenase (hydroxylating)"],["RHEA%3A10796","albendazole + NADPH + O2 + H(+) = albendazole S-oxide + NADP(+) + H2O"],["RHEA%3A55924","albendazole + reduced [NADPH--hemoprotein reductase] + O2 = albendazole S-oxide + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A56288","albendazole + reduced [NADPH--hemoprotein reductase] + O2 = hydroxyalbendazole + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["antifungal/albendazole.html","albendazole"]]},{"id":"CHEBI:20702","l":"","na":1,"nb":6,"a":[["TCDB%3A2.A.40","The Nucleobase/Ascorbate Transporter (NAT) or Nucleobase:Cation Symporter-2 (NCS2) Family"]],"b":[["antiviral/acyclovir.html","acyclovir"],["antiviral/entecavir-anhydrous.html","entecavir (anhydrous)"],["antiviral/famciclovir.html","famciclovir"],["antiviral/ganciclovir.html","ganciclovir"],["antiviral/penciclovir.html","penciclovir"],["antiviral/tioguanine.html","tioguanine"]]},{"id":"CHEBI:25696","l":"","na":6,"nb":1,"a":[["TCDB%3A2.A.31","The Anion Exchanger (AE) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.28","The Bile Acid:Na+ Symporter (BASS) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.60","The Organo Anion Transporter (OAT) Family"],["TCDB%3A1.C.103","The Pore-forming Toxin, TisB (TisB) Family"]],"b":[["antibacterial/trichosetin-1.html","trichosetin(1−)"]]},{"id":"CHEBI:28054","l":"o-cresol","na":6,"nb":1,"a":[["EC%3A1.14.13.243","toluene 2-monooxygenase"],["RHEA%3A57948","2-hydroxytoluene + NADH + O2 + H(+) = 3-methylcatechol + NAD(+) + H2O"],["RHEA%3A57440","2-methylanisole + reduced [NADH--hemoprotein reductase] + O2 = 2-hydroxytoluene + oxidized [NADH--hemoprotein reductase] + formaldehyde + H2O + H(+)"],["RHEA%3A80607","(2-methylphenoxy)acetate + 2-oxoglutarate + O2 = 2-hydroxytoluene + glyoxylate + succinate + CO2"],["RHEA%3A20349","toluene + NADH + O2 + H(+) = 2-hydroxytoluene + NAD(+) + H2O"],["proteintraitsmech%3ABIOLIP_JZ0","JZ0-binding site"]],"b":[["antifungal/o-cresol.html","o-cresol"]]},{"id":"CHEBI:3020","l":"","na":6,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.117","The Chlorhexadine Exporter (CHX) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"]]},{"id":"CHEBI:31457","l":"decanal","na":6,"nb":1,"a":[["RHEA%3A58376","decan-1-ol + NADP(+) = decanal + NADPH + H(+)"],["RHEA%3A69496","decan-1-ol + O2 = decanal + H2O2"],["RHEA%3A44104","decanal + NAD(+) + H2O = decanoate + NADH + 2 H(+)"],["RHEA%3A50612","decanal + NADP(+) = (2E)-decenal + NADPH + H(+)"],["RHEA%3A65744","decyl sulfate + 2-oxoglutarate + O2 = decanal + sulfate + succinate + CO2 + H(+)"],["proteintraitsmech%3ABIOLIP_8YP","8YP-binding site"]],"b":[["antifungal/decanal.html","decanal"]]},{"id":"CHEBI:35915","l":"","na":6,"nb":1,"a":[["EC%3A2.3.1.43","phosphatidylcholine--sterol O-acyltransferase"],["EC%3A2.3.1.73","diacylglycerol--sterol O-acyltransferase"],["EC%3A3.1.1.13","sterol esterase"],["RHEA%3A21204","a sterol + a 1,2-diacyl-sn-glycero-3-phosphocholine = a sterol ester + a 1-acyl-sn-glycero-3-phosphocholine"],["RHEA%3A13301","a sterol + a 1,2-diacyl-sn-glycerol = a sterol ester + a 1-acyl-sn-glycerol"],["RHEA%3A10100","a sterol ester + H2O = a sterol + a fatty acid + H(+)"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"CHEBI:4883","l":"ethidium bromide","na":6,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.A.7","The ATP-gated P2X Receptor Cation Channel (P2X Receptor) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antiprotozoal/ethidium-bromide.html","ethidium bromide"]]},{"id":"CHEBI:50667","l":"mercaptopurine","na":6,"nb":1,"a":[["EC%3A2.1.1.67","thiopurine S-methyltransferase"],["RHEA%3A12609","mercaptopurine + S-adenosyl-L-methionine = 6-methylthiopurine + S-adenosyl-L-homocysteine + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.40","The Nucleobase/Ascorbate Transporter (NAT) or Nucleobase:Cation Symporter-2 (NCS2) Family"]],"b":[["antiviral/mercaptopurine.html","mercaptopurine"]]},{"id":"CHEBI:61748","l":"(E)-oct-2-enal","na":6,"nb":1,"a":[["EC%3A2.2.1.12","3-acetyloctanal synthase"],["RHEA%3A59920","(2E)-octenal + NAD(+) + H2O = (2E)-octenoate + NADH + 2 H(+)"],["RHEA%3A59916","(2E)-octenal + NADP(+) + H2O = (2E)-octenoate + NADPH + 2 H(+)"],["RHEA%3A42832","(2E)-octenal + pyruvate + H(+) = (S)-3-acetyloctanal + CO2"],["RHEA%3A58372","(E)-oct-2-en-1-ol + NADP(+) = (2E)-octenal + NADPH + H(+)"],["RHEA%3A50780","octanal + NADP(+) = (2E)-octenal + NADPH + H(+)"]],"b":[["antifungal/e-oct-2-enal.html","(E)-oct-2-enal"]]},{"id":"CHEBI:77722","l":"apigenin 7-O-β-D-glucoside(1−)","na":6,"nb":1,"a":[["EC%3A2.4.1.81","flavone 7-O-beta-glucosyltransferase"],["EC%3A2.4.2.25","flavone apiosyltransferase"],["RHEA%3A69679","apigenin 7-O-beta-D-glucoside + H2O = apigenin + beta-D-glucose"],["RHEA%3A67348","apigenin 7-O-beta-D-glucoside + malonyl-CoA = apigenin 7-O-(6-O-malonyl-beta-D-glucoside) + CoA"],["RHEA%3A59760","apigenin + UDP-alpha-D-glucose = apigenin 7-O-beta-D-glucoside + UDP + H(+)"],["RHEA%3A19153","UDP-alpha-D-apiose + apigenin 7-O-beta-D-glucoside = 7-O-(beta-D-apiofuranosyl-1,2-beta-D-glucosyl)-5,7,4'-trihydroxyflavone + UDP + H(+)"]],"b":[["antibacterial/apigenin-7-o-%CE%B2-d-glucoside-1.html","apigenin 7-O-β-D-glucoside(1−)"]]},{"id":"CHEBI:77979","l":"aclacinomycin T zwitterion","na":6,"nb":1,"a":[["EC%3A2.4.1.326","aklavinone 7-L-rhodosaminyltransferase"],["EC%3A2.4.1.327","aclacinomycin-T 2-deoxy-L-fucose transferase"],["EC%3A3.1.1.95","aclacinomycin methylesterase"],["RHEA%3A37891","aclacinomycin T + H2O = 15-demethylaclacinomycin T + methanol"],["RHEA%3A41568","dTDP-2-deoxy-beta-L-fucose + aclacinomycin T = aclacinomycin S + dTDP + H(+)"],["RHEA%3A41564","dTDP-beta-L-rhodosamine + aklavinone = aclacinomycin T + dTDP + 2 H(+)"]],"b":[["unspecified/aclacinomycin-t-zwitterion.html","aclacinomycin T zwitterion"]]},{"id":"CHEBI:86494","l":"","na":1,"nb":6,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/allicin.html","allicin"],["antifungal/berberine.html","berberine"],["antifungal/carvacrol.html","carvacrol"],["antifungal/carvone-38265.html","carvone"],["antifungal/sanguinarine.html","sanguinarine"],["antifungal/%CE%B1-santonin.html","α-santonin"]]},{"id":"CHEBI:98","l":"(S)-linalool","na":6,"nb":1,"a":[["EC%3A4.2.1.127","linalool dehydratase"],["EC%3A4.2.3.25","S-linalool synthase"],["EC%3A5.4.4.4","geraniol isomerase"],["RHEA%3A30715","(2E)-geraniol = (S)-linalool"],["RHEA%3A24116","(2E)-geranyl diphosphate + H2O = (S)-linalool + diphosphate"],["RHEA%3A30711","(S)-linalool = beta-myrcene + H2O"]],"b":[["unspecified/s-linalool.html","(S)-linalool"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":6,"nb":1,"a":[["IDPO%3A0000037","molecular recognition display site"],["Pfam%3APF05403","Plasmodium histidine-rich protein (HRPII/III)"],["Pfam%3APF17986","EMP3-KAHRP-like N-terminal domain"],["Pfam%3APF03805","Cytoadherence-linked asexual protein"],["Pfam%3APF06589","Circumsporozoite-related antigen (CRA)"],["TED%3AAF-Q9U431-F1-model_v4_TED01","TED novel fold AF-Q9U431-F1-model_v4_TED01"]],"b":[["antiprotozoal/emetine.html","emetine"]]},{"id":"ARO:3000230","l":"","na":1,"nb":5,"a":[["ARO%3A3000230","ANT(2')-Ia"]],"b":[["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/sisomycin.html","sisomycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3000753","l":"abeM","na":1,"nb":5,"a":[["ARO%3A3000753","abeM"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/ofloxacin.html","ofloxacin"],["antibacterial/triclosan.html","triclosan"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3001214","l":"mdtM","na":1,"nb":5,"a":[["ARO%3A3001214","mdtM"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/puromycin.html","puromycin"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3001304","l":"ErmS","na":1,"nb":5,"a":[["ARO%3A3001304","ErmS"]],"b":[["antibacterial/carbomycin.html","carbomycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/niddamycin.html","niddamycin"],["antibacterial/pristinamycin-ic.html","pristinamycin IC"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3001878","l":"CTX-M-15","na":1,"nb":5,"a":[["ARO%3A3001878","CTX-M-15"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3002523","l":"","na":1,"nb":5,"a":[["ARO%3A3002523","AAC(2')-Ia"]],"b":[["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002524","l":"","na":1,"nb":5,"a":[["ARO%3A3002524","AAC(2')-Ib"]],"b":[["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002525","l":"","na":1,"nb":5,"a":[["ARO%3A3002525","AAC(2')-Ic"]],"b":[["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002526","l":"","na":1,"nb":5,"a":[["ARO%3A3002526","AAC(2')-Id"]],"b":[["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002527","l":"","na":1,"nb":5,"a":[["ARO%3A3002527","AAC(2')-Ie"]],"b":[["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002583","l":"","na":1,"nb":5,"a":[["ARO%3A3002583","AAC(6')-29a"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002584","l":"","na":1,"nb":5,"a":[["ARO%3A3002584","AAC(6')-29b"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002648","l":"","na":1,"nb":5,"a":[["ARO%3A3002648","APH(3')-IVa"]],"b":[["antibacterial/butirosin.html","butirosin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3002823","l":"ErmH","na":1,"nb":5,"a":[["ARO%3A3002823","ErmH"]],"b":[["antibacterial/carbomycin.html","carbomycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/oleandomycin.html","oleandomycin"],["antibacterial/pristinamycin-ic.html","pristinamycin IC"]]},{"id":"ARO:3002831","l":"vgaC","na":1,"nb":5,"a":[["ARO%3A3002831","vgaC"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/valnemulin.html","valnemulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3003071","l":"mphF","na":1,"nb":5,"a":[["ARO%3A3003071","mphF"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/roxithromycin.html","roxithromycin"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3003374","l":"Enterobacter aerogenes acrR with mutation conferring multidrug antibiotic resistance","na":1,"nb":5,"a":[["ARO%3A3003374","Enterobacter aerogenes acrR with mutation conferring multidrug antibiotic resistance"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/tetracycline.html","tetracycline"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3003561","l":"SED-1","na":1,"nb":5,"a":[["ARO%3A3003561","SED-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefuroxime.html","cefuroxime"],["antibacterial/piperacillin.html","piperacillin"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3003713","l":"VCC-1","na":1,"nb":5,"a":[["ARO%3A3003713","VCC-1"]],"b":[["antibacterial/aztreonam.html","aztreonam"],["antibacterial/doripenem.html","doripenem"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3003749","l":"salA","na":1,"nb":5,"a":[["ARO%3A3003749","salA"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3003995","l":"Clostridioides difficile gyrA conferring resistance to fluoroquinolones","na":1,"nb":5,"a":[["ARO%3A3003995","Clostridioides difficile gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"],["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3004082","l":"AcrAD-TolC","na":1,"nb":5,"a":[["ARO%3A3004082","AcrAD-TolC"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3004191","l":"","na":1,"nb":5,"a":[["ARO%3A3004191","APH(2')-If"]],"b":[["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/sisomycin.html","sisomycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3004470","l":"poxtA","na":1,"nb":5,"a":[["ARO%3A3004470","poxtA"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/florfenicol.html","florfenicol"],["antibacterial/linezolid.html","linezolid"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004675","l":"aphA15","na":1,"nb":5,"a":[["ARO%3A3004675","aphA15"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004677","l":"rmtD2","na":1,"nb":5,"a":[["ARO%3A3004677","rmtD2"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005035","l":"YRC-1","na":1,"nb":5,"a":[["ARO%3A3005035","YRC-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/cefuroxime.html","cefuroxime"]]},{"id":"ARO:3007026","l":"salB","na":1,"nb":5,"a":[["ARO%3A3007026","salB"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3007027","l":"salC","na":1,"nb":5,"a":[["ARO%3A3007027","salC"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3007033","l":"Erm(51)","na":1,"nb":5,"a":[["ARO%3A3007033","Erm(51)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/pristinamycin-ib.html","pristinamycin IB"]]},{"id":"ARO:3007151","l":"","na":5,"nb":1,"a":[["ARO%3A3000446","antibiotic-resistant isoleucyl-tRNA synthetase (ileS)"],["ARO%3A3003730","Bifidobacterium bifidum ileS conferring resistance to mupirocin"],["ARO%3A3003729","Staphylococcus aureus ileS with mutation conferring resistance to mupirocin"],["ARO%3A3000521","Staphylococcus aureus mupA conferring resistance to mupirocin"],["ARO%3A3000510","Staphylococcus aureus mupB conferring resistance to mupirocin"]],"b":[["antibacterial/mupirocin.html","mupirocin"]]},{"id":"ARO:3007180","l":"MAB","na":1,"nb":5,"a":[["ARO%3A3007180","MAB"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/cefuroxime.html","cefuroxime"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3007182","l":"blaC","na":1,"nb":5,"a":[["ARO%3A3007182","blaC"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/temocillin.html","temocillin"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3007374","l":"PJM-1","na":1,"nb":5,"a":[["ARO%3A3007374","PJM-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3007438","l":"LAQ-1","na":1,"nb":5,"a":[["ARO%3A3007438","LAQ-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"ARO:3007635","l":"CAE-1","na":1,"nb":5,"a":[["ARO%3A3007635","CAE-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/cefuroxime.html","cefuroxime"],["antibacterial/piperacillin.html","piperacillin"]]},{"id":"ARO:3007637","l":"Clostridioides difficile cplR","na":1,"nb":5,"a":[["ARO%3A3007637","Clostridioides difficile cplR"]],"b":[["antibacterial/a201a.html","A201A"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/iboxamycin.html","iboxamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3007644","l":"Clostridium perfringes cplR","na":1,"nb":5,"a":[["ARO%3A3007644","Clostridium perfringes cplR"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/iboxamycin.html","iboxamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3007694","l":"AMZ-1","na":1,"nb":5,"a":[["ARO%3A3007694","AMZ-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"ARO:3009134","l":"antifungal resistance-associated MSH2","na":1,"nb":5,"a":[["ARO%3A3009134","antifungal resistance-associated MSH2"]],"b":[["antifungal/amphotericin-b.html","amphotericin B"],["antifungal/caspofungin.html","caspofungin"],["antifungal/fluconazole.html","fluconazole"],["antifungal/micafungin.html","micafungin"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"CHEBI:15649","l":"3,6,9-trihydroxypterocarpan","na":5,"nb":1,"a":[["EC%3A1.14.14.93","3,9-dihydroxypterocarpan 6a-monooxygenase"],["EC%3A2.5.1.36","trihydroxypterocarpan dimethylallyltransferase"],["RHEA%3A15321","(6aR,11aR)-3,9-dihydroxypterocarpan + reduced [NADPH--hemoprotein reductase] + O2 = (6aS,11aS)-3,6a,9-trihydroxypterocarpan + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A19345","(6aS,11aS)-3,6a,9-trihydroxypterocarpan + dimethylallyl diphosphate = (6aS,11aS)-2-dimethylallyl-3,6a,9-trihydroxypterocarpan + diphosphate"],["RHEA%3A23184","(6aS,11aS)-3,6a,9-trihydroxypterocarpan + dimethylallyl diphosphate = (6aS,11aS)-4-dimethylallyl-3,6a,9-trihydroxypterocarpan + diphosphate"]],"b":[["antibacterial/3-6-9-trihydroxypterocarpan.html","3,6,9-trihydroxypterocarpan"]]},{"id":"CHEBI:16670","l":"peptide","na":5,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A9.B.46","The Staphylococcus aureus Putative Quorum Sensing Peptide Exporter, AgrB (AgrB) Family"],["TCDB%3A3.A.25","The Symbiont-specific ERAD-like Machinery (SELMA) Family"],["proteintraitsmech%3ABIOLIP_PEPTIDE","peptide-binding site"]],"b":[["antibacterial/cefbuperazone.html","cefbuperazone"]]},{"id":"CHEBI:17043","l":"biphenyl-2-ol","na":5,"nb":1,"a":[["EC%3A1.14.13.44","2-hydroxybiphenyl 3-monooxygenase"],["EC%3A3.13.1.3","2'-hydroxybiphenyl-2-sulfinate desulfinase"],["RHEA%3A12945","2'-hydroxybiphenyl-2-sulfinate + H2O = biphenyl-2-ol + sulfite + H(+)"],["RHEA%3A11996","biphenyl-2-ol + NADH + O2 + H(+) = biphenyl-2,3-diol + NAD(+) + H2O"],["MCSA%3A971","2'-hydroxybiphenyl-2-sulfinate desulfinase"]],"b":[["antifungal/biphenyl-2-ol.html","biphenyl-2-ol"]]},{"id":"CHEBI:17183","l":"sanguinarine","na":5,"nb":1,"a":[["EC%3A1.3.1.107","sanguinarine reductase"],["EC%3A1.5.3.12","dihydrobenzophenanthridine oxidase"],["RHEA%3A41660","dihydrosanguinarine + NAD(+) = sanguinarine + NADH"],["RHEA%3A41656","dihydrosanguinarine + NADP(+) = sanguinarine + NADPH"],["RHEA%3A16621","dihydrosanguinarine + O2 + H(+) = sanguinarine + H2O2"]],"b":[["antifungal/sanguinarine.html","sanguinarine"]]},{"id":"CHEBI:18145","l":"(R,R,R)-α-tocopherol","na":5,"nb":1,"a":[["EC%3A2.1.1.95","tocopherol C-methyltransferase"],["RHEA%3A71507","(+)-alpha-tocopherol(out) = (+)-alpha-tocopherol(in)"],["RHEA%3A45108","(+)-alpha-tocopherol + reduced [NADPH--hemoprotein reductase] + O2 = 13-hydroxy-alpha-tocopherol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A24012","gamma-tocopherol + S-adenosyl-L-methionine = (+)-alpha-tocopherol + S-adenosyl-L-homocysteine + H(+)"],["proteintraitsmech%3ABIOLIP_VIV","VIV-binding site"]],"b":[["antiviral/r-r-r-%CE%B1-tocopherol.html","(R,R,R)-α-tocopherol"]]},{"id":"CHEBI:23403","l":"","na":1,"nb":5,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antibacterial/5-6-7-trimethoxycoumarin.html","5,6,7-trimethoxycoumarin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/glycyrin.html","glycyrin"],["antifungal/coumoxystrobin.html","coumoxystrobin"],["antiviral/soulattrolide.html","soulattrolide"]]},{"id":"CHEBI:28600","l":"farnesol","na":1,"nb":5,"a":[["RHEA%3A79359","farnesol + 2 Fe(III)-[cytochrome c] = farnesal + 2 Fe(II)-[cytochrome c] + 2 H(+)"]],"b":[["unspecified/2-cis-6-cis-farnesol.html","(2-cis,6-cis)-farnesol"],["unspecified/2-cis-6-trans-farnesol.html","(2-cis,6-trans)-farnesol"],["unspecified/2-trans-6-cis-farnesol.html","(2-trans,6-cis)-farnesol"],["unspecified/2-trans-6-trans-farnesol.html","(2-trans,6-trans)-farnesol"],["unspecified/farnesol.html","farnesol"]]},{"id":"CHEBI:33704","l":"","na":5,"nb":1,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["MCSA%3A396","aspartic peptidase"],["MCSA%3A169","dipeptidyl-peptidase IV"],["MCSA%3A425","plasmin"],["MCSA%3A412","prolyl aminopeptidase"]],"b":[["antiprotozoal/eflornithine.html","eflornithine"]]},{"id":"CHEBI:34994","l":"","na":1,"nb":5,"a":[["TCDB%3A2.A.128","The Multidrug Resistance Exporter VanZ (VanZ) Family"]],"b":[["unspecified/teicoplanin-a2-1.html","teicoplanin A2-1"],["unspecified/teicoplanin-a2-2.html","teicoplanin A2-2"],["unspecified/teicoplanin-a2-3.html","teicoplanin A2-3"],["unspecified/teicoplanin-a2-4.html","teicoplanin A2-4"],["unspecified/teicoplanin-a2-5.html","teicoplanin A2-5"]]},{"id":"CHEBI:36835","l":"","na":5,"nb":1,"a":[["EC%3A1.1.1.213","3alpha-hydroxysteroid dehydrogenase (Re-specific)"],["EC%3A1.1.1.357","3alpha-hydroxysteroid 3-dehydrogenase"],["EC%3A1.1.1.50","3alpha-hydroxysteroid 3-dehydrogenase (Si-specific)"],["RHEA%3A34779","a 3alpha-hydroxysteroid + NAD(+) = a 3-oxosteroid + NADH + H(+)"],["RHEA%3A34783","a 3alpha-hydroxysteroid + NADP(+) = a 3-oxosteroid + NADPH + H(+)"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"CHEBI:3900","l":"costunolide","na":5,"nb":1,"a":[["EC%3A1.14.14.150","costunolide synthase"],["RHEA%3A56992","6alpha-hydroxygermacra-1(10),4,11(13)-trien-12-oate + H(+) = (+)-costunolide + H2O"],["RHEA%3A61324","(+)-costunolide + reduced [NADPH--hemoprotein reductase] + O2 = 3beta-hydroxycostunolide + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A61320","(+)-costunolide + reduced [NADPH--hemoprotein reductase] + O2 = parthenolide + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A28230","germacra-1(10),4,11(13)-trien-12-oate + reduced [NADPH--hemoprotein reductase] + O2 = (+)-costunolide + oxidized [NADPH--hemoprotein reductase] + 2 H2O"]],"b":[["antiviral/costunolide.html","costunolide"]]},{"id":"CHEBI:3962","l":"curcumin","na":5,"nb":1,"a":[["EC%3A1.3.1.n3","curcumin reductase"],["EC%3A2.3.1.217","curcumin synthase"],["RHEA%3A34819","dihydrocurcumin + NADP(+) = curcumin + NADPH + H(+)"],["RHEA%3A34823","(E)-feruloylacetyl-CoA + (E)-feruloyl-CoA + H2O = curcumin + CO2 + 2 CoA"],["RHEA%3A34815","tetrahydrocurcumin + 2 NADP(+) = curcumin + 2 NADPH + 2 H(+)"]],"b":[["antifungal/curcumin.html","curcumin"]]},{"id":"CHEBI:5100","l":"flucytosine","na":5,"nb":1,"a":[["ARO%3A3007642","Aspergillus spp. fcyB conferring resistance to 5-flucytosine via reduced permeability"],["ARO%3A3007665","Candida spp. FCY2 conferring resistance to 5-flucytosine via reduced permeability"],["ARO%3A3007641","fungal nucleobase transporters"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.39","The Nucleobase:Cation Symporter-1 (NCS1) Family"]],"b":[["antifungal/flucytosine.html","flucytosine"]]},{"id":"CHEBI:58001","l":"","na":5,"nb":1,"a":[["EC%3A1.5.3.25","fructosyl amine oxidase (glucosone-forming)"],["RHEA%3A21916","2 Fe(III)-[cytochrome c550] + an aliphatic amine + H2O = 2 Fe(II)-[cytochrome c550] + an aldehyde + NH4(+) + 2 H(+)"],["RHEA%3A51128","an aliphatic amine + A + H2O = an aldehyde + AH2 + NH4(+)"],["RHEA%3A77795","an (E)-{[(2R,3S,4R,5R)-2,3,4,5-tetrahydroxyoxan-2-yl]methylidene}amine + H2O + H(+) = an aliphatic amine + 2-dehydro-D-glucose"],["RHEA%3A77787","an N-(1-deoxy-beta-D-fructopyranos-1-yl)amine + O2 + H2O = an aliphatic amine + 2-dehydro-D-glucose + H2O2"]],"b":[["unspecified/streptothricin-f-3.html","streptothricin F(3+)"]]},{"id":"CHEBI:62219","l":"2-heptyl-4-quinolone","na":5,"nb":1,"a":[["EC%3A1.14.13.182","2-heptyl-3-hydroxy-4(1H)-quinolone synthase"],["EC%3A2.3.1.230","2-heptyl-4(1H)-quinolone synthase"],["RHEA%3A50408","1-(2-aminophenyl)decane-1,3-dione = 2-heptyl-4(1H)-quinolone + H2O"],["RHEA%3A50396","(2-aminobenzoyl)acetate + octanoyl-CoA + H(+) = 2-heptyl-4(1H)-quinolone + CO2 + CoA + H2O"],["RHEA%3A37871","2-heptyl-4(1H)-quinolone + NADH + O2 + H(+) = 2-heptyl-3-hydroxy-4(1H)-quinolone + NAD(+) + H2O"]],"b":[["antibacterial/2-heptyl-4-quinolone.html","2-heptyl-4-quinolone"]]},{"id":"CHEBI:90888","l":"aurachin C","na":5,"nb":1,"a":[["EC%3A1.14.13.222","aurachin C monooxygenase/isomerase"],["RHEA%3A49000","aurachin C + NADH + O2 + H(+) = 4-hydroxy-2-methyl-3-oxo-4-[(2E,6E)-farnesyl]-3,4-dihydroquinoline 1-oxide + NAD(+) + H2O"],["RHEA%3A49012","aurachin C + NADH + O2 + H(+) = aurachin C epoxide + NAD(+) + H2O"],["RHEA%3A49004","aurachin C + NADPH + O2 + H(+) = 4-hydroxy-2-methyl-3-oxo-4-[(2E,6E)-farnesyl]-3,4-dihydroquinoline 1-oxide + NADP(+) + H2O"],["RHEA%3A49008","aurachin C + NADPH + O2 + H(+) = aurachin C epoxide + NADP(+) + H2O"]],"b":[["antibacterial/aurachin-c.html","aurachin C"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":5,"nb":1,"a":[["TED%3AAF-A0A4Y6CF56-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y6CF56-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6CNZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Y6CNZ1-F1-model_v4_TED02"],["TED%3AAF-A0A7Y4IIX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4IIX4-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6B7F9-F1-model_v4_TED01","TED novel fold AF-A0A4Y6B7F9-F1-model_v4_TED01"],["TED%3AAF-A0A7Y4IR70-F1-model_v4_TED01","TED novel fold AF-A0A7Y4IR70-F1-model_v4_TED01"]],"b":[["antibacterial/althiomycin.html","althiomycin"]]},{"id":"NCBITaxon:43658","l":"Pseudoalteromonas rubra","na":5,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_Orn_monoox","Metallophore-associated ornithine N5-monooxygenase family"],["TED%3AAF-A0A0F4QZE1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0F4QZE1-F1-model_v4_TED02"],["TED%3AAF-A0A0U3GWJ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0U3GWJ2-F1-model_v4_TED01"],["TED%3AAF-A0A0F4QSG0-F1-model_v4_TED02","TED novel fold AF-A0A0F4QSG0-F1-model_v4_TED02"],["TED%3AAF-A0A0L0EPH9-F1-model_v4_TED03","TED novel fold AF-A0A0L0EPH9-F1-model_v4_TED03"]],"b":[["unspecified/prodigiosin.html","prodigiosin"]]},{"id":"UniProt:P03366","l":"","na":5,"nb":1,"a":[["MCSA%3A1000","HIV-1 reverse transcriptase"],["proteintraitsmech%3ABIOLIP_7N1","7N1-binding site"],["proteintraitsmech%3ABIOLIP_VTN","VTN-binding site"],["proteintraitsmech%3ABIOLIP_ZP4","ZP4-binding site"],["proteintraitsmech%3AMETALPDB_Y_DINUCLEAR","dinuclear yttrium site"]],"b":[["antiviral/nevirapine.html","nevirapine"]]},{"id":"ARO:3000245","l":"RbpA","na":1,"nb":4,"a":[["ARO%3A3000245","RbpA"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3000261","l":"sigma factor conferring resistance to rifampin","na":1,"nb":4,"a":[["ARO%3A3000261","sigma factor conferring resistance to rifampin"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3000300","l":"lsaA","na":1,"nb":4,"a":[["ARO%3A3000300","lsaA"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/pleuromutilin.html","pleuromutilin"],["antibacterial/quinupristin.html","quinupristin"]]},{"id":"ARO:3000363","l":"EreB","na":1,"nb":4,"a":[["ARO%3A3000363","EreB"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/roxithromycin.html","roxithromycin"]]},{"id":"ARO:3000421","l":"norB","na":1,"nb":4,"a":[["ARO%3A3000421","norB"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"],["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/sparfloxacin.html","sparfloxacin"]]},{"id":"ARO:3000444","l":"rphA","na":1,"nb":4,"a":[["ARO%3A3000444","rphA"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3000462","l":"mgtA","na":1,"nb":4,"a":[["ARO%3A3000462","mgtA"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/methymycin.html","methymycin"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3000463","l":"gimA","na":1,"nb":4,"a":[["ARO%3A3000463","gimA"]],"b":[["antibacterial/chalcomycin.html","chalcomycin"],["antibacterial/methymycin.html","methymycin"],["antibacterial/oleandomycin.html","oleandomycin"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3000501","l":"rpoB2","na":1,"nb":4,"a":[["ARO%3A3000501","rpoB2"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3000873","l":"TEM-1","na":1,"nb":4,"a":[["ARO%3A3000873","TEM-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"]]},{"id":"ARO:3001328","l":"Escherichia coli mdfA","na":1,"nb":4,"a":[["ARO%3A3001328","Escherichia coli mdfA"]],"b":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/tetracycline.html","tetracycline"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3001396","l":"OXA-1","na":1,"nb":4,"a":[["ARO%3A3001396","OXA-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/piperacillin.html","piperacillin"]]},{"id":"ARO:3001818","l":"ACC-4","na":1,"nb":4,"a":[["ARO%3A3001818","ACC-4"]],"b":[["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/cefuroxime.html","cefuroxime"]]},{"id":"ARO:3002547","l":"","na":1,"nb":4,"a":[["ARO%3A3002547","AAC(6')-Ib-cr1"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002623","l":"","na":1,"nb":4,"a":[["ARO%3A3002623","ANT(4')-Ia"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002634","l":"","na":1,"nb":4,"a":[["ARO%3A3002634","APH(2')-Ie"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002636","l":"","na":1,"nb":4,"a":[["ARO%3A3002636","APH(2')-IIIa"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002637","l":"","na":1,"nb":4,"a":[["ARO%3A3002637","APH(2')-IVa"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002665","l":"npmA","na":1,"nb":4,"a":[["ARO%3A3002665","npmA"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3002667","l":"rmtD","na":1,"nb":4,"a":[["ARO%3A3002667","rmtD"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002668","l":"rmtG","na":1,"nb":4,"a":[["ARO%3A3002668","rmtG"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002669","l":"","na":1,"nb":4,"a":[["ARO%3A3002669","APH(2')-Ig"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002883","l":"rgt1438","na":1,"nb":4,"a":[["ARO%3A3002883","rgt1438"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3002884","l":"iri","na":1,"nb":4,"a":[["ARO%3A3002884","iri"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3002985","l":"arnA","na":4,"nb":1,"a":[["ARO%3A3002985","arnA"],["ARO%3A3005053","ArnT"],["ARO%3A3003578","PmrF"],["ARO%3A3003577","ugd"]],"b":[["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3003001","l":"CfxA","na":1,"nb":4,"a":[["ARO%3A3003001","CfxA"]],"b":[["antibacterial/cefmetazole.html","cefmetazole"],["antibacterial/cefotetan.html","cefotetan"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/flomoxef.html","flomoxef"]]},{"id":"ARO:3003029","l":"MexVW-OprM","na":1,"nb":4,"a":[["ARO%3A3003029","MexVW-OprM"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/tetracycline.html","tetracycline"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3003198","l":"rmtH","na":1,"nb":4,"a":[["ARO%3A3003198","rmtH"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3003223","l":"Escherichia coli 16S rRNA mutation conferring resistance to edeine","na":1,"nb":4,"a":[["ARO%3A3003223","Escherichia coli 16S rRNA mutation conferring resistance to edeine"]],"b":[["antibacterial/edeine-a.html","edeine A"],["antibacterial/edeine-b.html","edeine B"],["antibacterial/edeine-d.html","edeine D"],["antibacterial/edeine-f.html","edeine F"]]},{"id":"ARO:3003272","l":"daptomycin resistant cls","na":4,"nb":1,"a":[["ARO%3A3003272","daptomycin resistant cls"],["ARO%3A3003760","Enterococcus faecalis cls with mutation conferring resistance to daptomycin"],["ARO%3A3003092","Enterococcus faecium cls conferring resistance to daptomycin"],["ARO%3A3003074","Staphylococcus aureus cls conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003283","l":"Mycobacterium tuberculosis rpoB with mutations conferring resistance to rifampicin","na":1,"nb":4,"a":[["ARO%3A3003283","Mycobacterium tuberculosis rpoB with mutations conferring resistance to rifampicin"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3003284","l":"Mycobacterium leprae rpoB mutations conferring resistance to rifampicin","na":1,"nb":4,"a":[["ARO%3A3003284","Mycobacterium leprae rpoB mutations conferring resistance to rifampicin"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3003285","l":"Staphylococcus aureus rpoB mutants conferring resistance to rifampicin","na":1,"nb":4,"a":[["ARO%3A3003285","Staphylococcus aureus rpoB mutants conferring resistance to rifampicin"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3003288","l":"Escherichia coli rpoB mutants conferring resistance to rifampicin","na":1,"nb":4,"a":[["ARO%3A3003288","Escherichia coli rpoB mutants conferring resistance to rifampicin"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3003395","l":"Mycobacterium tuberculosis rpsL mutations conferring resistance to Streptomycin","na":4,"nb":1,"a":[["ARO%3A3003419","antibiotic-resistant rpsL"],["ARO%3A3003395","Mycobacterium tuberculosis rpsL mutations conferring resistance to Streptomycin"],["ARO%3A3005082","Ribosomal protein mutation conferring resistance to pleuromutilin antibiotics"],["ARO%3A3005081","Thermus thermophilus uL3 mutations conferring resistance to pleuromutilin antibiotics"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003686","l":"Pseudomonas aeruginosa oprD with mutation conferring resistance to imipenem","na":4,"nb":1,"a":[["ARO%3A3005068","ParR"],["ARO%3A3005066","parRS"],["ARO%3A3005067","ParS"],["ARO%3A3003686","Pseudomonas aeruginosa oprD with mutation conferring resistance to imipenem"]],"b":[["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3003746","l":"optrA","na":1,"nb":4,"a":[["ARO%3A3003746","optrA"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"],["antibacterial/linezolid.html","linezolid"],["antibacterial/tedizolid.html","tedizolid"]]},{"id":"ARO:3003905","l":"","na":1,"nb":4,"a":[["ARO%3A3003905","ANT(4')-Ib"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3003921","l":"oqxAB","na":1,"nb":4,"a":[["ARO%3A3003921","oqxAB"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nitrofurantoin.html","nitrofurantoin"],["antibacterial/tigecycline.html","tigecycline"],["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003942","l":"abcA","na":1,"nb":4,"a":[["ARO%3A3003942","abcA"]],"b":[["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/methicillin.html","methicillin"],["antibacterial/moenomycin-a1.html","moenomycin A1"]]},{"id":"ARO:3003965","l":"hp1184","na":1,"nb":4,"a":[["ARO%3A3003965","hp1184"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/metronidazole.html","metronidazole"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003992","l":"rphB","na":1,"nb":4,"a":[["ARO%3A3003992","rphB"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3004030","l":"RosAB","na":1,"nb":4,"a":[["ARO%3A3004030","RosAB"]],"b":[["antibacterial/polymyxin-b1.html","polymyxin B1"],["antibacterial/polymyxin-b2.html","polymyxin B2"],["antibacterial/polymyxin-b3.html","polymyxin B3"],["antibacterial/polymyxin-b4.html","polymyxin B4"]]},{"id":"ARO:3004123","l":"Burkholderia pseudomallei Omp38","na":1,"nb":4,"a":[["ARO%3A3004123","Burkholderia pseudomallei Omp38"]],"b":[["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3004126","l":"Escherichia coli LamB","na":1,"nb":4,"a":[["ARO%3A3004126","Escherichia coli LamB"]],"b":[["antibacterial/balofloxacin.html","Balofloxacin"],["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3004181","l":"Streptococcus pneumoniae 23S rRNA mutation conferring resistance to macrolides and streptogramins antibiotics","na":1,"nb":4,"a":[["ARO%3A3004181","Streptococcus pneumoniae 23S rRNA mutation conferring resistance to macrolides and streptogramins antibiotics"]],"b":[["antibacterial/josamycin.html","josamycin"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"],["antibacterial/tylosin.html","tylosin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3004359","l":"ACI-1","na":1,"nb":4,"a":[["ARO%3A3004359","ACI-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3004562","l":"Clostridioides difficile gyrB conferring resistance to fluoroquinolones","na":1,"nb":4,"a":[["ARO%3A3004562","Clostridioides difficile gyrB conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/gemifloxacin.html","gemifloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3004599","l":"clcD","na":1,"nb":4,"a":[["ARO%3A3004599","clcD"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/florfenicol.html","florfenicol"],["antibacterial/linezolid.html","linezolid"],["antibacterial/tiamulin.html","tiamulin"]]},{"id":"ARO:3004606","l":"erm(40)","na":1,"nb":4,"a":[["ARO%3A3004606","erm(40)"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3004667","l":"Staphylococcus aureus norA","na":1,"nb":4,"a":[["ARO%3A3004667","Staphylococcus aureus norA"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3005059","l":"LptD","na":1,"nb":4,"a":[["ARO%3A3005059","LptD"]],"b":[["antibacterial/imipenem.html","imipenem"],["antibacterial/novobiocin.html","novobiocin"],["antibacterial/polymyxin-b2.html","polymyxin B2"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3005112","l":"","na":1,"nb":4,"a":[["ARO%3A3005112","AAC(6')-Ib-cr3"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005114","l":"","na":1,"nb":4,"a":[["ARO%3A3005114","AAC(6')-Ib-cr4"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005115","l":"","na":1,"nb":4,"a":[["ARO%3A3005115","AAC(6')-Ib-cr5"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005116","l":"","na":1,"nb":4,"a":[["ARO%3A3005116","AAC(6')-Ib-cr6"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005117","l":"","na":1,"nb":4,"a":[["ARO%3A3005117","AAC(6')-Ib-cr7"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005118","l":"","na":1,"nb":4,"a":[["ARO%3A3005118","AAC(6')-Ib-cr8"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005119","l":"","na":1,"nb":4,"a":[["ARO%3A3005119","AAC(6')-Ib-cr9"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005121","l":"lsaD","na":1,"nb":4,"a":[["ARO%3A3005121","lsaD"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3007028","l":"salD","na":1,"nb":4,"a":[["ARO%3A3007028","salD"]],"b":[["antibacterial/lincomycin.html","lincomycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3007206","l":"KBL-1","na":1,"nb":4,"a":[["ARO%3A3007206","KBL-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/piperacillin.html","piperacillin"]]},{"id":"ARO:3007442","l":"SSA","na":1,"nb":4,"a":[["ARO%3A3007442","SSA"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007456","l":"dfrL","na":1,"nb":4,"a":[["ARO%3A3007456","dfrL"]],"b":[["antibacterial/streptomycin.html","streptomycin"],["antibacterial/tetracycline.html","tetracycline"],["antibacterial/tobramycin.html","tobramycin"],["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3007645","l":"Clostridium sporogenes cplR","na":1,"nb":4,"a":[["ARO%3A3007645","Clostridium sporogenes cplR"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/hygromycin-a.html","hygromycin A"],["antibacterial/iboxamycin.html","iboxamycin"],["antibacterial/retapamulin.html","retapamulin"]]},{"id":"ARO:3007650","l":"CDA-1","na":1,"nb":4,"a":[["ARO%3A3007650","CDA-1"]],"b":[["antibacterial/cefaloridine.html","cefaloridine"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3007670","l":"Aspergillus spp. Hmg1 with mutations conferring resistance to triazoles antibiotics","na":1,"nb":4,"a":[["ARO%3A3007670","Aspergillus spp. Hmg1 with mutations conferring resistance to triazoles antibiotics"]],"b":[["antifungal/isavuconazole.html","isavuconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"ARO:3007770","l":"","na":1,"nb":4,"a":[["ARO%3A3007770","aac(6')-Ib-cr10"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3007771","l":"","na":1,"nb":4,"a":[["ARO%3A3007771","aac(6')-Ib-cr11"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"CHEBI:140434","l":"3-[(Z)-2-isocyanovinyl]indole","na":4,"nb":1,"a":[["EC%3A1.14.20.11","3-[(Z)-2-isocyanoethenyl]-1H-indole synthase"],["EC%3A2.5.1.146","3-geranyl-3-[(Z)-2-isocyanoethenyl]indole synthase"],["RHEA%3A56700","(2S)-3-(1H-indol-3-yl)-2-isocyanopropanoate + 2-oxoglutarate + O2 + H(+) = 3-[(Z)-2-isocyanoethenyl]-1H-indole + succinate + 2 CO2 + H2O"],["RHEA%3A17349","3-[(Z)-2-isocyanoethenyl]-1H-indole + (2E)-geranyl diphosphate = 3-geranyl-3-[(Z)-2-isocyanoethenyl]-1H-indole + diphosphate"]],"b":[["antibacterial/3-z-2-isocyanovinyl-indole.html","3-[(Z)-2-isocyanovinyl]indole"]]},{"id":"CHEBI:140662","l":"2,4-diacetylphloroglucinol(1−)","na":4,"nb":1,"a":[["EC%3A2.3.1.272","2-acetylphloroglucinol acetyltransferase"],["EC%3A3.7.1.24","2,4-diacetylphloroglucinol hydrolase"],["RHEA%3A48236","2 2-acetylphloroglucinol = 2,4-diacetylphloroglucinol + 1,3,5-trihydroxybenzene + H(+)"],["RHEA%3A59184","2,4-diacetylphloroglucinol + H2O = 2-acetylphloroglucinol + acetate"]],"b":[["antifungal/2-4-diacetylphloroglucinol-1.html","2,4-diacetylphloroglucinol(1−)"]]},{"id":"CHEBI:16786","l":"vestitone","na":4,"nb":1,"a":[["EC%3A1.1.1.348","(3R)-2'-hydroxyisoflavanone reductase"],["EC%3A1.3.1.45","2'-hydroxyisoflavone reductase"],["RHEA%3A35403","(3R,4R)-7,2'-dihydroxy-4'-methoxyisoflavanol + NADP(+) = (3R)-vestitone + NADPH + H(+)"],["RHEA%3A22560","(3R)-vestitone + NADP(+) = 2'-hydroxyformononetin + NADPH + 2 H(+)"]],"b":[["antibacterial/vestitone.html","vestitone"]]},{"id":"CHEBI:17302","l":"pentadecanal","na":4,"nb":1,"a":[["EC%3A1.11.1.3","fatty-acid peroxidase"],["RHEA%3A68480","(2R)-2-hydroperoxyhexadecanoate + H(+) = pentadecanal + CO2 + H2O"],["RHEA%3A55212","(2R)-hydroxyhexadecanoyl-CoA = pentadecanal + formyl-CoA"],["RHEA%3A23960","hexadecanoate + 2 H2O2 + H(+) = pentadecanal + CO2 + 3 H2O"]],"b":[["unspecified/pentadecanal.html","pentadecanal"]]},{"id":"CHEBI:192702","l":"ladanein","na":4,"nb":1,"a":[["RHEA%3A73435","apigenin 4',7-dimethyl ether + reduced [NADPH--hemoprotein reductase] + O2 = ladanein + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A73247","ladanein + S-adenosyl-L-methionine = salvigenin + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A73111","scutellarein 4'-methyl ether + S-adenosyl-L-methionine = ladanein + S-adenosyl-L-homocysteine"],["RHEA%3A73239","scutellarein 7-methyl ether + S-adenosyl-L-methionine = ladanein + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antiviral/ladanein.html","ladanein"]]},{"id":"CHEBI:24043","l":"","na":4,"nb":1,"a":[["EC%3A1.14.19.76","flavone synthase II"],["EC%3A1.14.20.5","flavone synthase I"],["RHEA%3A10448","a flavanone + 2-oxoglutarate + O2 = a flavone + succinate + CO2 + H2O"],["RHEA%3A57680","a flavanone + reduced [NADPH--hemoprotein reductase] + O2 = a flavone + oxidized [NADPH--hemoprotein reductase] + 2 H2O + H(+)"]],"b":[["antibacterial/flavocillin.html","flavocillin"]]},{"id":"CHEBI:2448","l":"actinorhodin","na":4,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["proteintraitsmech%3ABIOLIP_ZCT","ZCT-binding site"]],"b":[["unspecified/actinorhodin.html","actinorhodin"]]},{"id":"CHEBI:25675","l":"","na":1,"nb":4,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/oligomycin-a.html","oligomycin A"],["antifungal/oligomycin-d.html","oligomycin D"],["unspecified/oligomycin-b.html","oligomycin B"],["unspecified/oligomycin-c.html","oligomycin C"]]},{"id":"CHEBI:26580","l":"","na":1,"nb":4,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifamycin-sv.html","rifamycin SV"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"CHEBI:27659","l":"","na":4,"nb":1,"a":[["EC%3A1.2.1.23","2-oxoaldehyde dehydrogenase (NAD(+))"],["EC%3A1.2.1.49","2-oxoaldehyde dehydrogenase (NADP(+))"],["RHEA%3A22276","2-oxoaldehyde + NAD(+) + H2O = a 2-oxocarboxylate + NADH + 2 H(+)"],["RHEA%3A18129","2-oxoaldehyde + NADP(+) + H2O = a 2-oxocarboxylate + NADPH + 2 H(+)"]],"b":[["antibacterial/4-hydroxy-2-oxobutanal.html","4-hydroxy-2-oxobutanal"]]},{"id":"CHEBI:27856","l":"","na":4,"nb":1,"a":[["EC%3A3.5.1.4","amidase"],["RHEA%3A85603","acetamide = acetonitrile + H2O"],["RHEA%3A45048","acetamide + H2O = acetate + NH4(+)"],["RHEA%3A51648","N(6)-acetyl-L-lysyl-[protein] + O2 + H2O = acetamide + (S)-2-amino-6-oxohexanoyl-[protein] + H2O2"]],"b":[["unspecified/acetylblasticidin-s.html","acetylblasticidin S"]]},{"id":"CHEBI:28327","l":"naringenin 7-O-β-D-glucoside","na":4,"nb":1,"a":[["EC%3A2.4.1.185","flavanone 7-O-beta-glucosyltransferase"],["RHEA%3A69671","(2S)-naringenin 7-O-beta-D-glucoside + H2O = (2S)-naringenin + beta-D-glucose"],["RHEA%3A67356","(2S)-naringenin 7-O-beta-D-glucoside + malonyl-CoA = (2S)-naringenin 7-O-(6-O-malonyl-beta-D-glucoside) + CoA"],["RHEA%3A65152","(2S)-naringenin + UDP-alpha-D-glucose = (2S)-naringenin 7-O-beta-D-glucoside + UDP + H(+)"]],"b":[["antibacterial/naringenin-7-o-%CE%B2-d-glucoside.html","naringenin 7-O-β-D-glucoside"]]},{"id":"CHEBI:28913","l":"(2E)-hexenal","na":4,"nb":1,"a":[["RHEA%3A60988","(E)-hex-2-en-1-ol + NAD(+) = (E)-hex-2-enal + NADH + H(+)"],["RHEA%3A58424","(E)-hex-2-en-1-ol + NADP(+) = (E)-hex-2-enal + NADPH + H(+)"],["RHEA%3A77419","(E)-hex-2-enal + hydrogen cyanide = (2S,3E)-2-hydroxyhept-3-enenitrile"],["RHEA%3A50776","hexanal + NADP(+) = (E)-hex-2-enal + NADPH + H(+)"]],"b":[["antibacterial/2e-hexenal.html","(2E)-hexenal"]]},{"id":"CHEBI:28927","l":"sakuranetin","na":4,"nb":1,"a":[["EC%3A2.1.1.232","naringenin 7-O-methyltransferase"],["RHEA%3A31539","(2S)-naringenin + S-adenosyl-L-methionine = (2S)-sakuranetin + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A73431","(2S)-sakuranetin + reduced [NADPH--hemoprotein reductase] + O2 = (2S)-7-methylcarthamidin + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A73255","(2S)-sakuranetin + S-adenosyl-L-methionine = (2S)-naringenin 4',7-dimethyl ether + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antimycobacterial/sakuranetin.html","sakuranetin"]]},{"id":"CHEBI:31144","l":"8-demethyltetracenomycin C","na":4,"nb":1,"a":[["EC%3A1.14.13.200","tetracenomycin A2 monooxygenase-diooxygenase"],["EC%3A2.4.1.331","8-demethyltetracenomycin C L-rhamnosyltransferase"],["RHEA%3A42848","8-demethyltetracenomycin C + dTDP-beta-L-rhamnose = 8-demethyl-8-alpha-L-rhamnosyl-tetracenomycin C + dTDP + H(+)"],["RHEA%3A76467","tetracenomycin B2 + 2 NADPH + 2 O2 + 2 H(+) = 8-demethyltetracenomycin C + 2 NADP(+) + H2O"]],"b":[["unspecified/8-demethyltetracenomycin-c.html","8-demethyltetracenomycin C"]]},{"id":"CHEBI:33859","l":"","na":1,"nb":4,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/oxolinic-acid.html","oxolinic acid"],["antifungal/1-2-3-benzothiadiazole-7-carboxylic-acid.html","1,2,3-benzothiadiazole-7-carboxylic acid"],["antifungal/phenazine-1-carboxylic-acid.html","phenazine-1-carboxylic acid"],["antifungal/piperonylic-acid.html","piperonylic acid"]]},{"id":"CHEBI:34848","l":"mevastatin","na":4,"nb":1,"a":[["RHEA%3A51668","mevastatin + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = pravastatin lactone + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"],["RHEA%3A62744","mevastatin + H2O = compactin diol lactone + (S)-2-methylbutanoate + H(+)"],["RHEA%3A63044","mevastatin + H2O = mevinic carboxylate + H(+)"],["proteintraitsmech%3ABIOLIP_2UO","2UO-binding site"]],"b":[["antifungal/mevastatin.html","mevastatin"]]},{"id":"CHEBI:3508","l":"ceftazidime","na":4,"nb":1,"a":[["TCDB%3A8.A.213","The Bon Domain-containing Protein (Bon DP) Family"],["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["TCDB%3A2.C.1","The TonB-ExbB-ExbD/TolA-TolQ-TolR Outer Membrane Receptor Energizers and Stabilizers (TonB/TolA) Family"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"CHEBI:45744","l":"N-acetyl-β-neuraminic acid","na":4,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.21","The Solute:Sodium Symporter (SSS) Family"],["TCDB%3A2.A.56","The Tripartite ATP-independent Periplasmic Transporter (TRAP-T) Family"],["proteintraitsmech%3ABIOLIP_SLB","SLB-binding site"]],"b":[["antiviral/n-acetyl-%CE%B2-neuraminic-acid.html","N-acetyl-β-neuraminic acid"]]},{"id":"CHEBI:46081","l":"fluconazole","na":4,"nb":1,"a":[["RHEA%3A61916","fluconazole(in) + ATP + H2O = fluconazole(out) + ADP + phosphate + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_TPF","TPF-binding site"]],"b":[["antifungal/fluconazole.html","fluconazole"]]},{"id":"CHEBI:46634","l":"","na":1,"nb":4,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/1-carbapenem-3-carboxylic-acid.html","1-carbapenem-3-carboxylic acid"],["antibacterial/carbapenem-mm22383.html","carbapenem MM22383"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"CHEBI:50477","l":"","na":1,"nb":4,"a":[["RHEA%3A47348","a butanoate ester + H2O = an aliphatic alcohol + butanoate + H(+)"]],"b":[["antibacterial/caminoside-a.html","caminoside A"],["antimycobacterial/caseargrewiin-b.html","caseargrewiin B"],["antiviral/clathsterol-disulfonic-acid.html","clathsterol disulfonic acid"],["antiviral/clathsterol.html","clathsterol"]]},{"id":"CHEBI:51460","l":"albaflavenone","na":4,"nb":1,"a":[["EC%3A1.14.15.39","epi-isozizaene 5-monooxygenase"],["RHEA%3A25988","(5R)-albaflavenol + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = albaflavenone + 2 oxidized [2Fe-2S]-[ferredoxin] + 2 H2O"],["RHEA%3A25980","(5S)-albaflavenol + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = albaflavenone + 2 oxidized [2Fe-2S]-[ferredoxin] + 2 H2O"],["RHEA%3A32439","(+)-epi-isozizaene + 4 reduced [2Fe-2S]-[ferredoxin] + 2 O2 + 4 H(+) = albaflavenone + 4 oxidized [2Fe-2S]-[ferredoxin] + 3 H2O"]],"b":[["unspecified/albaflavenone.html","albaflavenone"]]},{"id":"CHEBI:5169","l":"fraxetin","na":4,"nb":1,"a":[["EC%3A1.14.11.60","scopoletin 8-hydroxylase"],["EC%3A1.14.14.164","fraxetin 5-hydroxylase"],["RHEA%3A57844","fraxetin + reduced [NADPH--hemoprotein reductase] + O2 = sideretin (reduced form) + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A57848","scopoletin + 2-oxoglutarate + O2 = fraxetin + succinate + CO2"]],"b":[["antibacterial/fraxetin.html","fraxetin"]]},{"id":"CHEBI:55429","l":"cephamycin","na":1,"nb":4,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/cefminox.html","cefminox"],["antibacterial/cefotetan.html","cefotetan"],["antibacterial/cefoxitin.html","cefoxitin"],["unspecified/cephamycin-c.html","cephamycin C"]]},{"id":"CHEBI:66331","l":"xanthohumol","na":4,"nb":1,"a":[["EC%3A2.1.1.338","desmethylxanthohumol 6'-O-methyltransferase"],["EC%3A2.1.1.339","xanthohumol 4-O-methyltransferase"],["RHEA%3A51696","desmethylxanthohumol + S-adenosyl-L-methionine = xanthohumol + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A51704","xanthohumol + S-adenosyl-L-methionine = 4-O-methylxanthohumol + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antiviral/xanthohumol.html","xanthohumol"]]},{"id":"CHEBI:67246","l":"(+)-lariciresinol","na":4,"nb":1,"a":[["EC%3A1.23.1.1","(+)-pinoresinol reductase"],["EC%3A1.23.1.2","(+)-lariciresinol reductase"],["RHEA%3A34419","(+)-lariciresinol + NADP(+) = (+)-pinoresinol + NADPH + H(+)"],["RHEA%3A34423","(-)-secoisolariciresinol + NADP(+) = (+)-lariciresinol + NADPH + H(+)"]],"b":[["antifungal/lariciresinol.html","(+)-lariciresinol"]]},{"id":"CHEBI:69023","l":"preaustinoid A","na":4,"nb":1,"a":[["RHEA%3A65144","berkeleyone A + 2-oxoglutarate + O2 = preaustinoid A + succinate + CO2 + H2O"],["RHEA%3A65192","preaustinoid A + 2 2-oxoglutarate + 2 O2 = berkeleytrione + 2 succinate + 2 CO2 + H2O"],["RHEA%3A65168","preaustinoid A + AH2 + O2 = preaustinoid A1 + A + H2O"],["RHEA%3A65180","protoaustinoid B + AH2 + O2 = preaustinoid A + A + H2O"]],"b":[["antibacterial/preaustinoid-a.html","preaustinoid A"]]},{"id":"CHEBI:71311","l":"pyrazine-2-carboxylic acid","na":4,"nb":1,"a":[["ARO%3A3004267","antibiotic resistant pncA"],["ARO%3A3004721","Mycobacterium tuberculosis rpsA mutations conferring resistance to pyrazinamide"],["ARO%3A3004722","pyrazinamide resistant rpsA"],["proteintraitsmech%3ABIOLIP_VGL","VGL-binding site"]],"b":[["antimycobacterial/pyrazine-2-carboxylic-acid.html","pyrazine-2-carboxylic acid"]]},{"id":"CHEBI:74023","l":"dioscin","na":4,"nb":1,"a":[["EC%3A3.2.1.189","dioscin glycosidase (diosgenin-forming)"],["EC%3A3.2.1.190","dioscin glycosidase (3-O-beta-D-Glc-diosgenin-forming)"],["RHEA%3A38939","dioscin + 2 H2O = diosgenin 3-O-beta-D-glucoside + 2 L-rhamnopyranose"],["RHEA%3A36827","dioscin + 3 H2O = diosgenin + 2 L-rhamnopyranose + D-glucose"]],"b":[["antifungal/dioscin.html","dioscin"]]},{"id":"CHEBI:77980","l":"aclacinomycin A zwitterion","na":4,"nb":1,"a":[["EC%3A1.1.3.45","aclacinomycin-N oxidase"],["EC%3A1.3.3.14","aclacinomycin-A oxidase"],["RHEA%3A37791","aclacinomycin A + O2 = aclacinomycin Y + H2O2"],["RHEA%3A37423","aclacinomycin N + O2 = aclacinomycin A + H2O2"]],"b":[["unspecified/aclacinomycin-a-zwitterion.html","aclacinomycin A zwitterion"]]},{"id":"CHEBI:78283","l":"8-demethyl-8-(α-L-rhamnosyl)tetracenomycin C","na":4,"nb":1,"a":[["EC%3A2.1.1.305","8-demethyl-8-alpha-L-rhamnosyl tetracenomycin-C 2'-O-methyltransferase"],["EC%3A2.4.1.331","8-demethyltetracenomycin C L-rhamnosyltransferase"],["RHEA%3A41540","8-demethyl-8-alpha-L-rhamnosyl-tetracenomycin C + S-adenosyl-L-methionine = 8-demethyl-8-(2-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A42848","8-demethyltetracenomycin C + dTDP-beta-L-rhamnose = 8-demethyl-8-alpha-L-rhamnosyl-tetracenomycin C + dTDP + H(+)"]],"b":[["unspecified/8-demethyl-8-%CE%B1-l-rhamnosyl-tetracenomycin-c.html","8-demethyl-8-(α-L-rhamnosyl)tetracenomycin C"]]},{"id":"CHEBI:78285","l":"8-demethyl-8-(2-O-methyl-α-L-rhamnosyl)tetracenomycin C","na":4,"nb":1,"a":[["EC%3A2.1.1.305","8-demethyl-8-alpha-L-rhamnosyl tetracenomycin-C 2'-O-methyltransferase"],["EC%3A2.1.1.306","8-demethyl-8-(2-methoxy-alpha-L-rhamnosyl)-tetracenomycin-C 3'-O- methyltransferase"],["RHEA%3A41544","8-demethyl-8-(2-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-methionine = 8-demethyl-8-(2,3-di-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A41540","8-demethyl-8-alpha-L-rhamnosyl-tetracenomycin C + S-adenosyl-L-methionine = 8-demethyl-8-(2-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-homocysteine + H(+)"]],"b":[["unspecified/8-demethyl-8-2-o-methyl-%CE%B1-l-rhamnosyl-tetracenomycin-c.html","8-demethyl-8-(2-O-methyl-α-L-rhamnosyl)tetracenomycin C"]]},{"id":"CHEBI:78286","l":"8-demethyl-8-(2,3-O-dimethyl-α-L-rhamnosyl)tetracenomycin C","na":4,"nb":1,"a":[["EC%3A2.1.1.306","8-demethyl-8-(2-methoxy-alpha-L-rhamnosyl)-tetracenomycin-C 3'-O- methyltransferase"],["EC%3A2.1.1.307","8-demethyl-8-(2,3-dimethoxy-alpha-L-rhamnosyl)-tetracenomycin-C 4'-O- methyltransferase"],["RHEA%3A41548","8-demethyl-8-(2,3-di-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-methionine = 8-demethyl-8-(2,3,4-tri-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A41544","8-demethyl-8-(2-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-methionine = 8-demethyl-8-(2,3-di-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-homocysteine + H(+)"]],"b":[["unspecified/8-demethyl-8-2-3-o-dimethyl-%CE%B1-l-rhamnosyl-tetracenomycin-c.html","8-demethyl-8-(2,3-O-dimethyl-α-L-rhamnosyl)tetracenomycin C"]]},{"id":"CHEBI:84310","l":"anticapsin zwitterion","na":4,"nb":1,"a":[["EC%3A1.1.1.385","dihydroanticapsin 7-dehydrogenase"],["EC%3A6.3.2.49","L-alanine--L-anticapsin ligase"],["RHEA%3A44332","L-anticapsin + L-alanine + ATP = bacilysin + ADP + phosphate + H(+)"],["RHEA%3A44628","L-dihydroanticapsin + NAD(+) = L-anticapsin + NADH + H(+)"]],"b":[["unspecified/anticapsin-zwitterion.html","anticapsin zwitterion"]]},{"id":"CHEBI:90869","l":"validamycin A(1+)","na":4,"nb":1,"a":[["EC%3A1.14.11.52","validamycin A dioxygenase"],["EC%3A2.4.1.338","validoxylamine A glucosyltransferase"],["RHEA%3A48752","validamycin A + 2-oxoglutarate + O2 = validamycin B + succinate + CO2 + H(+)"],["RHEA%3A49388","validoxylamine A + UDP-alpha-D-glucose = validamycin A + UDP + H(+)"]],"b":[["antifungal/validamycin-a-1.html","validamycin A(1+)"]]},{"id":"CHEBI:9555","l":"tioguanine","na":4,"nb":1,"a":[["EC%3A2.1.1.67","thiopurine S-methyltransferase"],["RHEA%3A56580","6-thioguanine + S-adenosyl-L-methionine = 6-methylthioguanine + S-adenosyl-L-homocysteine + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.40","The Nucleobase/Ascorbate Transporter (NAT) or Nucleobase:Cation Symporter-2 (NCS2) Family"]],"b":[["antiviral/tioguanine.html","tioguanine"]]},{"id":"NCBITaxon:11676","l":"Human immunodeficiency virus 1","na":1,"nb":4,"a":[["IDPO%3A0000039","acetylation display site"]],"b":[["antiviral/delavirdine.html","delavirdine"],["antiviral/emivirine.html","emivirine"],["antiviral/etravirine.html","etravirine"],["antiviral/nevirapine.html","nevirapine"]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":4,"nb":1,"a":[["Pfam%3APF16861","Carbamoyltransferase C-terminus"],["Pfam%3APF02543","Carbamoyltransferase N-terminus"],["Pfam%3APF01960","ArgJ family"],["Pfam%3APF07467","Beta-lactamase inhibitor (BLIP)"]],"b":[["antibacterial/clavulanic-acid.html","clavulanic acid"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":4,"nb":1,"a":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"],["TED%3AAF-A0A085UKV7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085UKV7-F1-model_v4_TED01"],["TED%3AAF-A0A4R6IU28-F1-model_v4_TED02","TED novel fold AF-A0A4R6IU28-F1-model_v4_TED02"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"NCBITaxon:40559","l":"Botrytis cinerea","na":1,"nb":4,"a":[["Pfam%3APF08883","Dopa 4,5-dioxygenase family"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/iprodione.html","iprodione"],["antifungal/pyrisoxazole.html","pyrisoxazole"]]},{"id":"NCBITaxon:405948","l":"","na":1,"nb":4,"a":[["Pfam%3APF21036","Erythromycin biosynthesis protein CIII-like, N-terminal domain"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["unspecified/erythromycin-b.html","erythromycin B"],["unspecified/erythromycin-c.html","erythromycin C"],["unspecified/erythromycin-d.html","erythromycin D"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":4,"nb":1,"a":[["Pfam%3APF11720","Peptidase inhibitor I78 family"],["Pfam%3APF12296","Hydrophobic surface binding protein A"],["TED%3AAF-A0A3M7JGA1-F1-model_v4_TED02","TED novel fold AF-A0A3M7JGA1-F1-model_v4_TED02"],["TED%3AAF-A0A7G5JNS3-F1-model_v4_TED03","TED novel fold AF-A0A7G5JNS3-F1-model_v4_TED03"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:5076","l":"Penicillium chrysogenum","na":4,"nb":1,"a":[["Pfam%3APF03417","Acyl-coenzyme A:6-aminopenicillanic acid acyl-transferase"],["Pfam%3APF11402","Antifungal protein"],["PROSITE%3APS00185","Isopenicillin N synthase signature 1"],["PROSITE%3APS00186","Isopenicillin N synthase signature 2"]],"b":[["unspecified/isopenicillin-n.html","isopenicillin N"]]},{"id":"NCBITaxon:5270","l":"","na":4,"nb":1,"a":[["Pfam%3APF17445","Mating factor A1"],["Pfam%3APF24563","Mug60/KHD4 KH type I domain"],["Pfam%3APF01185","Fungal hydrophobin"],["Pfam%3APF07460","NUMOD3 motif"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"UniProt:P38637","l":"","na":4,"nb":1,"a":[["GO%3A0031144","proteasome localization"],["Pfam%3APF08559","Cut8, nuclear proteasome tether protein"],["InterPro%3AIPR038422","Cut8/Sts1 superfamily"],["CATH%3A1.20.58.1590","Tethering factor for nuclear proteasome Cut8/Sts1"]],"b":[["antifungal/cycloheximide.html","cycloheximide"]]},{"id":"ARO:3000235","l":"ethambutol resistant embB","na":3,"nb":1,"a":[["ARO%3A3000235","ethambutol resistant embB"],["ARO%3A3003326","Mycobacterium tuberculosis embB mutant conferring resistance to ethambutol"],["ARO%3A3003325","Mycobacterium tuberculosis variant bovis embB with mutation conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3000361","l":"EreA","na":1,"nb":3,"a":[["ARO%3A3000361","EreA"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/roxithromycin.html","roxithromycin"]]},{"id":"ARO:3000373","l":"EmrKY-TolC","na":3,"nb":1,"a":[["ARO%3A3000373","EmrKY-TolC"],["ARO%3A3000832","evgA"],["ARO%3A3000515","evgSA"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000467","l":"NDM-5","na":1,"nb":3,"a":[["ARO%3A3000467","NDM-5"]],"b":[["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ertapenem.html","ertapenem"]]},{"id":"ARO:3000589","l":"NDM-1","na":1,"nb":3,"a":[["ARO%3A3000589","NDM-1"]],"b":[["antibacterial/ertapenem.html","ertapenem"],["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3000598","l":"Erm(31)","na":1,"nb":3,"a":[["ARO%3A3000598","Erm(31)"]],"b":[["antibacterial/methymycin.html","methymycin"],["antibacterial/narbomycin.html","narbomycin"],["antibacterial/pikromycin.html","pikromycin"]]},{"id":"ARO:3000843","l":"MUS-1","na":1,"nb":3,"a":[["ARO%3A3000843","MUS-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/piperacillin.html","piperacillin"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3000844","l":"TUS-1","na":1,"nb":3,"a":[["ARO%3A3000844","TUS-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/piperacillin.html","piperacillin"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3000900","l":"TEM-30","na":1,"nb":3,"a":[["ARO%3A3000900","TEM-30"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"]]},{"id":"ARO:3000930","l":"TEM-61","na":1,"nb":3,"a":[["ARO%3A3000930","TEM-61"]],"b":[["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001071","l":"SHV-12","na":1,"nb":3,"a":[["ARO%3A3001071","SHV-12"]],"b":[["antibacterial/cefalotin.html","cefalotin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3001205","l":"BRP(MBL)","na":1,"nb":3,"a":[["ARO%3A3001205","BRP(MBL)"]],"b":[["antibacterial/bleomycin-a2.html","bleomycin A2"],["antibacterial/bleomycin-b2.html","bleomycin B2"],["antibacterial/bleomycinic-acid.html","bleomycinic acid"]]},{"id":"ARO:3001265","l":"Erm(30)","na":1,"nb":3,"a":[["ARO%3A3001265","Erm(30)"]],"b":[["antibacterial/methymycin.html","methymycin"],["antibacterial/narbomycin.html","narbomycin"],["antibacterial/pikromycin.html","pikromycin"]]},{"id":"ARO:3001302","l":"chrB","na":1,"nb":3,"a":[["ARO%3A3001302","chrB"]],"b":[["antibacterial/chalcomycin.html","chalcomycin"],["antibacterial/mycinamicin-iv.html","mycinamicin IV"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3001303","l":"ErmO-srmA","na":1,"nb":3,"a":[["ARO%3A3001303","ErmO-srmA"]],"b":[["antibacterial/carbomycin.html","carbomycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3001397","l":"OXA-2","na":1,"nb":3,"a":[["ARO%3A3001397","OXA-2"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002528","l":"AAC(3)-Ia","na":1,"nb":3,"a":[["ARO%3A3002528","AAC(3)-Ia"]],"b":[["antibacterial/astromicin.html","astromicin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002529","l":"AAC(3)-Id","na":1,"nb":3,"a":[["ARO%3A3002529","AAC(3)-Id"]],"b":[["antibacterial/astromicin.html","astromicin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002530","l":"AAC(3)-Ib","na":1,"nb":3,"a":[["ARO%3A3002530","AAC(3)-Ib"]],"b":[["antibacterial/astromicin.html","astromicin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002531","l":"AAC(3)-Ic","na":1,"nb":3,"a":[["ARO%3A3002531","AAC(3)-Ic"]],"b":[["antibacterial/astromicin.html","astromicin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002540","l":"AAC(3)-VIa","na":1,"nb":3,"a":[["ARO%3A3002540","AAC(3)-VIa"]],"b":[["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002546","l":"","na":1,"nb":3,"a":[["ARO%3A3002546","AAC(6')-Ib"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002576","l":"","na":1,"nb":3,"a":[["ARO%3A3002576","AAC(6')-Ib3"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002577","l":"","na":1,"nb":3,"a":[["ARO%3A3002577","AAC(6')-Ib4"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002578","l":"","na":1,"nb":3,"a":[["ARO%3A3002578","AAC(6')-Ib7"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002579","l":"","na":1,"nb":3,"a":[["ARO%3A3002579","AAC(6')-Ib8"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002580","l":"","na":1,"nb":3,"a":[["ARO%3A3002580","AAC(6')-Ib9"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002581","l":"","na":1,"nb":3,"a":[["ARO%3A3002581","AAC(6')-Ib10"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002582","l":"","na":1,"nb":3,"a":[["ARO%3A3002582","AAC(6')-Ib11"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002586","l":"","na":1,"nb":3,"a":[["ARO%3A3002586","AAC(6')-32"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002591","l":"","na":1,"nb":3,"a":[["ARO%3A3002591","AAC(6')-Ib-Suzhou"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002592","l":"","na":1,"nb":3,"a":[["ARO%3A3002592","AAC(6')-Ib-Hangzhou"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002593","l":"","na":1,"nb":3,"a":[["ARO%3A3002593","AAC(6')-Ib-SK"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002624","l":"","na":1,"nb":3,"a":[["ARO%3A3002624","ANT(4')-IIa"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002625","l":"","na":1,"nb":3,"a":[["ARO%3A3002625","ANT(4')-IIb"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002649","l":"","na":1,"nb":3,"a":[["ARO%3A3002649","APH(3')-Va"]],"b":[["antibacterial/framycetin.html","framycetin"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3002650","l":"","na":1,"nb":3,"a":[["ARO%3A3002650","APH(3')-Vb"]],"b":[["antibacterial/framycetin.html","framycetin"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3002651","l":"","na":1,"nb":3,"a":[["ARO%3A3002651","APH(3')-Vc"]],"b":[["antibacterial/framycetin.html","framycetin"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3002666","l":"rmtF","na":1,"nb":3,"a":[["ARO%3A3002666","rmtF"]],"b":[["antibacterial/astromicin.html","astromicin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3002671","l":"Limosilactobacillus reuteri cat-TC","na":1,"nb":3,"a":[["ARO%3A3002671","Limosilactobacillus reuteri cat-TC"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002672","l":"Bacillus pumilus cat86","na":1,"nb":3,"a":[["ARO%3A3002672","Bacillus pumilus cat86"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002674","l":"Clostridium butyricum catB","na":1,"nb":3,"a":[["ARO%3A3002674","Clostridium butyricum catB"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002675","l":"catB2","na":1,"nb":3,"a":[["ARO%3A3002675","catB2"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002676","l":"catB3","na":1,"nb":3,"a":[["ARO%3A3002676","catB3"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002678","l":"Pseudomonas aeruginosa catB6","na":1,"nb":3,"a":[["ARO%3A3002678","Pseudomonas aeruginosa catB6"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002679","l":"Pseudomonas aeruginosa catB7","na":1,"nb":3,"a":[["ARO%3A3002679","Pseudomonas aeruginosa catB7"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002680","l":"catB8","na":1,"nb":3,"a":[["ARO%3A3002680","catB8"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002681","l":"catB9","na":1,"nb":3,"a":[["ARO%3A3002681","catB9"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002682","l":"catD","na":1,"nb":3,"a":[["ARO%3A3002682","catD"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002683","l":"catA1","na":1,"nb":3,"a":[["ARO%3A3002683","catA1"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002684","l":"catII","na":1,"nb":3,"a":[["ARO%3A3002684","catII"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002685","l":"catIII","na":1,"nb":3,"a":[["ARO%3A3002685","catIII"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002686","l":"catP","na":1,"nb":3,"a":[["ARO%3A3002686","catP"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002687","l":"catQ","na":1,"nb":3,"a":[["ARO%3A3002687","catQ"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002688","l":"catS","na":1,"nb":3,"a":[["ARO%3A3002688","catS"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002689","l":"Plasmid-encoded cat (pp-cat)","na":1,"nb":3,"a":[["ARO%3A3002689","Plasmid-encoded cat (pp-cat)"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002825","l":"ErmY","na":1,"nb":3,"a":[["ARO%3A3002825","ErmY"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/oleandomycin.html","oleandomycin"]]},{"id":"ARO:3002827","l":"tlrC","na":1,"nb":3,"a":[["ARO%3A3002827","tlrC"]],"b":[["antibacterial/lincomycin.html","lincomycin"],["antibacterial/mycinamicin-iv.html","mycinamicin IV"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3002830","l":"vgaALC","na":1,"nb":3,"a":[["ARO%3A3002830","vgaALC"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002833","l":"vgaE","na":1,"nb":3,"a":[["ARO%3A3002833","vgaE"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002881","l":"lmrC","na":1,"nb":3,"a":[["ARO%3A3002881","lmrC"]],"b":[["antibacterial/celesticetin.html","celesticetin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002987","l":"bcrA","na":1,"nb":3,"a":[["ARO%3A3002987","bcrA"]],"b":[["antibacterial/bacitracin-a.html","bacitracin A"],["antibacterial/bacitracin-b.html","bacitracin B"],["antibacterial/bacitracin-f.html","bacitracin F"]]},{"id":"ARO:3002988","l":"bcrB","na":1,"nb":3,"a":[["ARO%3A3002988","bcrB"]],"b":[["antibacterial/bacitracin-a.html","bacitracin A"],["antibacterial/bacitracin-b.html","bacitracin B"],["antibacterial/bacitracin-f.html","bacitracin F"]]},{"id":"ARO:3003007","l":"bmr","na":1,"nb":3,"a":[["ARO%3A3003007","bmr"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/puromycin.html","puromycin"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3003062","l":"ykkCD","na":1,"nb":3,"a":[["ARO%3A3003062","ykkCD"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/streptomycin.html","streptomycin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003072","l":"mphL","na":1,"nb":3,"a":[["ARO%3A3003072","mphL"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003080","l":"daptomycin resistant pgsA","na":3,"nb":1,"a":[["ARO%3A3003788","Bacillus subtilis pgsA with mutation conferring resistance to daptomycin"],["ARO%3A3003080","daptomycin resistant pgsA"],["ARO%3A3003323","Staphylococcus aureus pgsA mutations conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003110","l":"catB10","na":1,"nb":3,"a":[["ARO%3A3003110","catB10"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3003112","l":"lsaC","na":1,"nb":3,"a":[["ARO%3A3003112","lsaC"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"ARO:3003205","l":"Erm(43)","na":1,"nb":3,"a":[["ARO%3A3003205","Erm(43)"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"]]},{"id":"ARO:3003301","l":"Staphylococcus aureus gyrB conferring resistance to aminocoumarin","na":1,"nb":3,"a":[["ARO%3A3003301","Staphylococcus aureus gyrB conferring resistance to aminocoumarin"]],"b":[["antibacterial/clorobiocin.html","clorobiocin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3003302","l":"Bartonella bacilliformis gyrB conferring resistance to aminocoumarin","na":1,"nb":3,"a":[["ARO%3A3003302","Bartonella bacilliformis gyrB conferring resistance to aminocoumarin"]],"b":[["antibacterial/clorobiocin.html","clorobiocin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3003303","l":"Escherichia coli gyrB conferring resistance to aminocoumarin","na":1,"nb":3,"a":[["ARO%3A3003303","Escherichia coli gyrB conferring resistance to aminocoumarin"]],"b":[["antibacterial/clorobiocin.html","clorobiocin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3003314","l":"Staphylococcus aureus parE conferring resistance to aminocoumarin","na":1,"nb":3,"a":[["ARO%3A3003314","Staphylococcus aureus parE conferring resistance to aminocoumarin"]],"b":[["antibacterial/clorobiocin.html","clorobiocin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3003318","l":"Streptomyces rishiriensis parY mutant conferring resistance to aminocoumarin","na":1,"nb":3,"a":[["ARO%3A3003318","Streptomyces rishiriensis parY mutant conferring resistance to aminocoumarin"]],"b":[["antibacterial/clorobiocin.html","clorobiocin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3003381","l":"Escherichia coli soxR with mutation conferring antibiotic resistance","na":1,"nb":3,"a":[["ARO%3A3003381","Escherichia coli soxR with mutation conferring antibiotic resistance"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3003385","l":"Klebsiella aerogenes Omp36","na":1,"nb":3,"a":[["ARO%3A3003385","Klebsiella aerogenes Omp36"]],"b":[["antibacterial/cefepime.html","cefepime"],["antibacterial/cefpirome.html","cefpirome"],["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3003394","l":"Mycobacterium tuberculosis pncA mutations conferring resistance to pyrazinamide","na":3,"nb":1,"a":[["ARO%3A3004267","antibiotic resistant pncA"],["ARO%3A3003394","Mycobacterium tuberculosis pncA mutations conferring resistance to pyrazinamide"],["ARO%3A3003418","Pyrazinamide resistant pncA"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3003511","l":"Escherichia coli soxS with mutation conferring antibiotic resistance","na":1,"nb":3,"a":[["ARO%3A3003511","Escherichia coli soxS with mutation conferring antibiotic resistance"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enrofloxacin.html","enrofloxacin"]]},{"id":"ARO:3003589","l":"NmcA","na":1,"nb":3,"a":[["ARO%3A3003589","NmcA"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"ARO:3003702","l":"Pseudomonas aeruginosa gyrA and parC conferring resistance to fluoroquinolones","na":1,"nb":3,"a":[["ARO%3A3003702","Pseudomonas aeruginosa gyrA and parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/ofloxacin.html","ofloxacin"],["antibacterial/pefloxacin.html","pefloxacin"]]},{"id":"ARO:3003742","l":"mphG","na":1,"nb":3,"a":[["ARO%3A3003742","mphG"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003807","l":"Escherichia coli AcrAB-TolC with AcrR mutation conferring resistance to ciprofloxacin, tetracycline, and ceftazidime","na":1,"nb":3,"a":[["ARO%3A3003807","Escherichia coli AcrAB-TolC with AcrR mutation conferring resistance to ciprofloxacin, tetracycline, and ceftazidime"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003839","l":"Mrx","na":1,"nb":3,"a":[["ARO%3A3003839","Mrx"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3003842","l":"MUS-2","na":1,"nb":3,"a":[["ARO%3A3003842","MUS-2"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/piperacillin.html","piperacillin"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3003931","l":"Capnocytophaga gingivalis gyrA conferring resistance to fluoroquinolones","na":1,"nb":3,"a":[["ARO%3A3003931","Capnocytophaga gingivalis gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3003947","l":"EfrAB","na":1,"nb":3,"a":[["ARO%3A3003947","EfrAB"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3003960","l":"farAB","na":1,"nb":3,"a":[["ARO%3A3003960","farAB"]],"b":[["antibacterial/linoleic-acid.html","linoleic acid"],["antibacterial/oleic-acid.html","oleic acid"],["antibacterial/palmitic-acid.html","palmitic acid"]]},{"id":"ARO:3003964","l":"hp1181","na":1,"nb":3,"a":[["ARO%3A3003964","hp1181"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/metronidazole.html","metronidazole"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003983","l":"CatU","na":1,"nb":3,"a":[["ARO%3A3003983","CatU"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3003991","l":"mphI","na":1,"nb":3,"a":[["ARO%3A3003991","mphI"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/telithromycin.html","telithromycin"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3004066","l":"MexEF-OprN with MexT mutation conferring resistance to chloramphenicol, ciprofloxacin, and trimethoprim","na":1,"nb":3,"a":[["ARO%3A3004066","MexEF-OprN with MexT mutation conferring resistance to chloramphenicol, ciprofloxacin, and trimethoprim"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004068","l":"MexEF-OprN with MexS mutations conferring resistance to chloramphenicol, ciprofloxacin, and trimethoprim","na":1,"nb":3,"a":[["ARO%3A3004068","MexEF-OprN with MexS mutations conferring resistance to chloramphenicol, ciprofloxacin, and trimethoprim"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004077","l":"PmpM","na":1,"nb":3,"a":[["ARO%3A3004077","PmpM"]],"b":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"],["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3004094","l":"Erm(48)","na":1,"nb":3,"a":[["ARO%3A3004094","Erm(48)"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"]]},{"id":"ARO:3004098","l":"LpeAB","na":1,"nb":3,"a":[["ARO%3A3004098","LpeAB"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3004102","l":"kamB","na":1,"nb":3,"a":[["ARO%3A3004102","kamB"]],"b":[["antibacterial/apramycin.html","apramycin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004103","l":"QepA2","na":1,"nb":3,"a":[["ARO%3A3004103","QepA2"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3004108","l":"Enterobacter cloacae rob","na":1,"nb":3,"a":[["ARO%3A3004108","Enterobacter cloacae rob"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/telithromycin.html","telithromycin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004127","l":"Escherichia coli mipA","na":1,"nb":3,"a":[["ARO%3A3004127","Escherichia coli mipA"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/nalidixic-acid.html","nalidixic acid"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004174","l":"Chlamydia trachomatis 23S rRNA with mutation conferring resistance to macrolide antibiotics","na":1,"nb":3,"a":[["ARO%3A3004174","Chlamydia trachomatis 23S rRNA with mutation conferring resistance to macrolide antibiotics"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/josamycin.html","josamycin"]]},{"id":"ARO:3004378","l":"QepA3","na":1,"nb":3,"a":[["ARO%3A3004378","QepA3"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3004379","l":"QepA4","na":1,"nb":3,"a":[["ARO%3A3004379","QepA4"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3004441","l":"tet(59)","na":1,"nb":3,"a":[["ARO%3A3004441","tet(59)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004442","l":"tet(W/N/W)","na":1,"nb":3,"a":[["ARO%3A3004442","tet(W/N/W)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004544","l":"mphJ","na":1,"nb":3,"a":[["ARO%3A3004544","mphJ"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/telithromycin.html","telithromycin"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3004576","l":"tet(61)","na":1,"nb":3,"a":[["ARO%3A3004576","tet(61)"]],"b":[["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004589","l":"tet(53)","na":1,"nb":3,"a":[["ARO%3A3004589","tet(53)"]],"b":[["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004591","l":"tet(55)","na":1,"nb":3,"a":[["ARO%3A3004591","tet(55)"]],"b":[["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004592","l":"erm(32)","na":1,"nb":3,"a":[["ARO%3A3004592","erm(32)"]],"b":[["antibacterial/methymycin.html","methymycin"],["antibacterial/narbomycin.html","narbomycin"],["antibacterial/pikromycin.html","pikromycin"]]},{"id":"ARO:3004595","l":"erm(45)","na":1,"nb":3,"a":[["ARO%3A3004595","erm(45)"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"]]},{"id":"ARO:3004596","l":"erm(46)","na":1,"nb":3,"a":[["ARO%3A3004596","erm(46)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004639","l":"Corynebacterium striatum tetA","na":1,"nb":3,"a":[["ARO%3A3004639","Corynebacterium striatum tetA"]],"b":[["antibacterial/oxacillin.html","oxacillin"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004649","l":"cfr(B)","na":1,"nb":3,"a":[["ARO%3A3004649","cfr(B)"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/linezolid.html","linezolid"]]},{"id":"ARO:3004652","l":"Erm(O)-lrm","na":1,"nb":3,"a":[["ARO%3A3004652","Erm(O)-lrm"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3004679","l":"rmtE2","na":1,"nb":3,"a":[["ARO%3A3004679","rmtE2"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004854","l":"CMY-136","na":1,"nb":3,"a":[["ARO%3A3004854","CMY-136"]],"b":[["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftolozane.html","ceftolozane"],["antibacterial/cefuroxime.html","cefuroxime"]]},{"id":"ARO:3005021","l":"cfr(D)","na":1,"nb":3,"a":[["ARO%3A3005021","cfr(D)"]],"b":[["antibacterial/linezolid.html","linezolid"],["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3005047","l":"eptB","na":1,"nb":3,"a":[["ARO%3A3005047","eptB"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"],["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3005051","l":"LpsB","na":1,"nb":3,"a":[["ARO%3A3005051","LpsB"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"],["antibacterial/defensin.html","defensin"]]},{"id":"ARO:3005056","l":"tet(X6)","na":1,"nb":3,"a":[["ARO%3A3005056","tet(X6)"]],"b":[["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3005057","l":"tet(X5)","na":1,"nb":3,"a":[["ARO%3A3005057","tet(X5)"]],"b":[["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3005166","l":"tet(X1)","na":1,"nb":3,"a":[["ARO%3A3005166","tet(X1)"]],"b":[["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007032","l":"Erm(50)","na":1,"nb":3,"a":[["ARO%3A3007032","Erm(50)"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/roxithromycin.html","roxithromycin"]]},{"id":"ARO:3007050","l":"mreA","na":1,"nb":3,"a":[["ARO%3A3007050","mreA"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3007056","l":"Antibiotic resistant Helicobacter pylori nitroreductase","na":3,"nb":1,"a":[["ARO%3A3007056","Antibiotic resistant Helicobacter pylori nitroreductase"],["ARO%3A3007059","Helicobacter pylori frxA mutation conferring resistance to metronidazole"],["ARO%3A3007055","Helicobacter pylori rdxA mutation conferring resistance to metronidazole"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007062","l":"VAM-1","na":1,"nb":3,"a":[["ARO%3A3007062","VAM-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3007186","l":"Mycobacterium tuberculosis Rv1258c mutations confer resistance to pyrazinamide, isoniazid, and streptomycin","na":1,"nb":3,"a":[["ARO%3A3007186","Mycobacterium tuberculosis Rv1258c mutations confer resistance to pyrazinamide, isoniazid, and streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"],["antimycobacterial/isoniazide.html","isoniazide"],["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3007196","l":"KPC-123","na":1,"nb":3,"a":[["ARO%3A3007196","KPC-123"]],"b":[["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007208","l":"HelR","na":1,"nb":3,"a":[["ARO%3A3007208","HelR"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3007209","l":"Streptomyces venezuelae rox","na":1,"nb":3,"a":[["ARO%3A3007209","Streptomyces venezuelae rox"]],"b":[["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3007435","l":"WUS-1","na":1,"nb":3,"a":[["ARO%3A3007435","WUS-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/carbenicillin.html","carbenicillin"],["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3007473","l":"Mycobacterium avium gyrA with mutation conferring resistance to fluoroquinolone","na":1,"nb":3,"a":[["ARO%3A3007473","Mycobacterium avium gyrA with mutation conferring resistance to fluoroquinolone"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3007524","l":"Candida spp. ERG11 with mutations conferring resistance to azole antibiotics","na":1,"nb":3,"a":[["ARO%3A3007524","Candida spp. ERG11 with mutations conferring resistance to azole antibiotics"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"ARO:3007531","l":"Streptococcus pyogenes PBP2x conferring resistance to beta-lactam antibiotics","na":1,"nb":3,"a":[["ARO%3A3007531","Streptococcus pyogenes PBP2x conferring resistance to beta-lactam antibiotics"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefotaxime.html","cefotaxime"]]},{"id":"ARO:3007565","l":"Aspergillus spp. cyp51A with mutations conferring resistance to triazoles antibiotics","na":1,"nb":3,"a":[["ARO%3A3007565","Aspergillus spp. cyp51A with mutations conferring resistance to triazoles antibiotics"]],"b":[["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"ARO:3007632","l":"FRI-11","na":1,"nb":3,"a":[["ARO%3A3007632","FRI-11"]],"b":[["antibacterial/ertapenem.html","ertapenem"],["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3007654","l":"erm(56)","na":1,"nb":3,"a":[["ARO%3A3007654","erm(56)"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"]]},{"id":"ARO:3007666","l":"Candida spp. cyp51A1 with mutations conferring resistance to triazoles and imidazole antibiotics","na":1,"nb":3,"a":[["ARO%3A3007666","Candida spp. cyp51A1 with mutations conferring resistance to triazoles and imidazole antibiotics"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/ketoconazole.html","ketoconazole"]]},{"id":"ARO:3007669","l":"aadT","na":1,"nb":3,"a":[["ARO%3A3007669","aadT"]],"b":[["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"CHEBI:121196","l":"reumycin","na":3,"nb":1,"a":[["EC%3A2.1.1.349","toxoflavin synthase"],["RHEA%3A56848","1,6-didemethyltoxoflavin + S-adenosyl-L-methionine = reumycin + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A56852","reumycin + S-adenosyl-L-methionine = toxoflavin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["unspecified/reumycin.html","reumycin"]]},{"id":"CHEBI:131914","l":"violacein","na":3,"nb":1,"a":[["RHEA%3A49720","protoviolaceinate + NADH + 2 O2 + 2 H(+) = violacein + CO2 + NAD(+) + 2 H2O"],["RHEA%3A49728","protoviolaceinate + NADPH + 2 O2 + 2 H(+) = violacein + CO2 + NADP(+) + 2 H2O"],["RHEA%3A49732","violaceinate + O2 + H(+) = violacein + CO2 + H2O"]],"b":[["antibacterial/violacein.html","violacein"]]},{"id":"CHEBI:131915","l":"deoxyviolacein","na":3,"nb":1,"a":[["RHEA%3A49744","deoxyviolaceinate + O2 + H(+) = deoxyviolacein + CO2 + H2O"],["RHEA%3A49736","protodeoxyviolaceinate + NADH + 2 O2 + 2 H(+) = deoxyviolacein + CO2 + NAD(+) + 2 H2O"],["RHEA%3A49740","protodeoxyviolaceinate + NADPH + 2 O2 + 2 H(+) = deoxyviolacein + CO2 + NADP(+) + 2 H2O"]],"b":[["antibacterial/deoxyviolacein.html","deoxyviolacein"]]},{"id":"CHEBI:138730","l":"","na":3,"nb":1,"a":[["EC%3A2.1.1.267","flavonoid 3',5'-methyltransferase"],["EC%3A2.1.1.42","flavone 3'-O-methyltransferase"],["RHEA%3A55332","a 3'-hydroxyflavone + S-adenosyl-L-methionine = a 3'-methoxyflavone + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/3-3-dimethylquercetin.html","3,3'-dimethylquercetin"]]},{"id":"CHEBI:142605","l":"","na":3,"nb":1,"a":[["EC%3A2.3.1.332","medium-chain-alcohol O-fatty-acyltransferase"],["RHEA%3A85935","a medium-chain primary fatty alcohol + a fatty acyl-CoA = a medium-chain alcohol wax ester + CoA"],["RHEA%3A58364","a medium-chain primary fatty alcohol + NADP(+) = a medium-chain fatty aldehyde + NADPH + H(+)"]],"b":[["antibacterial/1-2-dodecanediol.html","1,2-dodecanediol"]]},{"id":"CHEBI:16363","l":"α-santonin","na":3,"nb":1,"a":[["EC%3A1.3.1.47","alpha-santonin 1,2-reductase"],["RHEA%3A23612","1,2-dihydro-alpha-santonin + NAD(+) = alpha-santonin + NADH + H(+)"],["RHEA%3A23616","1,2-dihydro-alpha-santonin + NADP(+) = alpha-santonin + NADPH + H(+)"]],"b":[["antifungal/%CE%B1-santonin.html","α-santonin"]]},{"id":"CHEBI:17097","l":"biphenyl","na":3,"nb":1,"a":[["EC%3A1.14.12.18","biphenyl 2,3-dioxygenase"],["RHEA%3A18165","biphenyl + NADH + O2 + H(+) = (2R,3S)-3-phenylcyclohexa-3,5-diene-1,2-diol + NAD(+)"],["proteintraitsmech%3ABIOLIP_BNL","BNL-binding site"]],"b":[["antifungal/biphenyl.html","biphenyl"]]},{"id":"CHEBI:1722","l":"","na":3,"nb":1,"a":[["EC%3A1.1.1.145","3beta-hydroxy-Delta(5)-steroid dehydrogenase"],["RHEA%3A24076","a 3beta-hydroxy-Delta(5)-steroid + NAD(+) = a 3-oxo-Delta(5)-steroid + NADH + H(+)"],["RHEA%3A56880","a 3beta-hydroxy-Delta(5)-steroid + NADP(+) = a 3-oxo-Delta(5)-steroid + NADPH + H(+)"]],"b":[["antibacterial/7-aminocholesterol.html","7-aminocholesterol"]]},{"id":"CHEBI:17231","l":"m-cresol","na":3,"nb":1,"a":[["EC%3A4.1.1.52","6-methylsalicylate decarboxylase"],["RHEA%3A62208","3-methylphenol + reduced [NADPH--hemoprotein reductase] + O2 = 3-hydroxybenzyl alcohol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A23112","6-methylsalicylate + H(+) = 3-methylphenol + CO2"]],"b":[["antifungal/m-cresol.html","m-cresol"]]},{"id":"CHEBI:173119","l":"(6Z)-nerolidol","na":1,"nb":3,"a":[["RHEA%3A68832","(2Z,6Z)-farnesyl diphosphate + H2O = (6Z)-nerolidol + diphosphate"]],"b":[["antifungal/3r-6z-nerolidol.html","(3R,6Z)-nerolidol"],["antifungal/3s-6z-nerolidol.html","(3S,6Z)-nerolidol"],["antifungal/6z-nerolidol.html","(6Z)-nerolidol"]]},{"id":"CHEBI:17484","l":"benzyl isothiocyanate","na":3,"nb":1,"a":[["EC%3A5.99.1.1","thiocyanate isomerase"],["RHEA%3A10004","benzyl isothiocyanate = benzyl thiocyanate"],["RHEA%3A69300","(Z)-phenyl-N-(sulfonatooxy)methanimidothioate = benzyl isothiocyanate + sulfate"]],"b":[["antibacterial/benzyl-isothiocyanate.html","benzyl isothiocyanate"]]},{"id":"CHEBI:195253","l":"5-hydroxy-3-methylfuran-2(5H)-one","na":3,"nb":1,"a":[["RHEA%3A76507","(-)-2'-epi-GR24 + H2O = (-)-2'-epi-GR24 ABC-rings + 5-hydroxy-3-methylfuran-2(5H)-one"],["RHEA%3A76511","5-deoxystrigol + H2O = 5-deoxystrigol ABC-rings + 5-hydroxy-3-methylfuran-2(5H)-one"],["RHEA%3A76515","orobanchol + H2O = orobanchol ABC-rings + 5-hydroxy-3-methylfuran-2(5H)-one"]],"b":[["antiviral/5-hydroxy-3-methylfuran-2-5h-one.html","5-hydroxy-3-methylfuran-2(5H)-one"]]},{"id":"CHEBI:2453","l":"acyclovir","na":3,"nb":1,"a":[["RHEA%3A83871","valacyclovir + H2O = acyclovir + L-valine + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antiviral/acyclovir.html","acyclovir"]]},{"id":"CHEBI:24838","l":"","na":3,"nb":1,"a":[["TCDB%3A2.A.30","The Cation-Chloride Cotransporter (CCC) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.58","The Phosphate:Na+ Symporter (PNaS) Family"]],"b":[["antibacterial/sodium-fluorophosphate.html","sodium fluorophosphate"]]},{"id":"CHEBI:26267","l":"","na":1,"nb":3,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antiviral/epigallocatechin-4%CE%B28-2%CE%B2o-7-epicatechin.html","epigallocatechin-(4β→8,2β→O-7)-epicatechin"],["antiviral/proanthocyanidin-a2.html","proanthocyanidin A2"],["antiviral/theasinensin-a.html","theasinensin A"]]},{"id":"CHEBI:28915","l":"fosfomycin","na":3,"nb":1,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.5","The Pseudomonas OprP Porin (POP) Family"],["proteintraitsmech%3ABIOLIP_FCN","FCN-binding site"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"CHEBI:3139","l":"bleomycin A2","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A9.A.18","The Peptide Uptake Permease (PUP) Family"]],"b":[["antibacterial/bleomycin-a2.html","bleomycin A2"]]},{"id":"CHEBI:32197","l":"tetracenomycin A2","na":3,"nb":1,"a":[["EC%3A1.14.13.200","tetracenomycin A2 monooxygenase-diooxygenase"],["RHEA%3A42824","tetracenomycin A2 + 2 NADH + 2 O2 + 2 H(+) = tetracenomycin C + 2 NAD(+) + H2O"],["RHEA%3A42820","tetracenomycin A2 + 2 NADPH + 2 O2 + 2 H(+) = tetracenomycin C + 2 NADP(+) + H2O"]],"b":[["antibacterial/tetracenomycin-a2.html","tetracenomycin A2"]]},{"id":"CHEBI:324935","l":"fumagillol","na":3,"nb":1,"a":[["EC%3A1.1.1.437","5-dehydrofumagillol 5-reductase"],["RHEA%3A74751","fumagillol + dodecapentaneoyl-[polyketide synthase] = prefumagillin + holo-[polyketide synthase]"],["RHEA%3A74707","fumagillol + NADP(+) = 5-dehydrofumagillol + NADPH + H(+)"]],"b":[["unspecified/fumagillol.html","fumagillol"]]},{"id":"CHEBI:3392","l":"carbendazim","na":3,"nb":1,"a":[["EC%3A3.1.1.122","carbendazim hydrolysing esterase"],["RHEA%3A78411","carbendazim + H2O = 2-aminobenzimidazole + methanol + CO2"],["RHEA%3A78415","carbendazim + H2O = N-(1H-1,3-benzodiazol-2-yl)carbamate + methanol + H(+)"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"CHEBI:35996","l":"","na":1,"nb":3,"a":[["TCDB%3A1.B.25","The Outer Membrane Porin (Opr) Family"]],"b":[["antibacterial/faropenem.html","faropenem"],["unspecified/faropenem-1.html","faropenem(1−)"],["unspecified/penem.html","penem"]]},{"id":"CHEBI:43968","l":"meropenem","na":3,"nb":1,"a":[["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"],["TCDB%3A1.B.25","The Outer Membrane Porin (Opr) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/meropenem.html","meropenem"]]},{"id":"CHEBI:44485","l":"N-ethylmaleimide","na":3,"nb":1,"a":[["RHEA%3A35527","N-ethylmaleimide + NADH + H(+) = N-ethylsuccinimide + NAD(+)"],["RHEA%3A35523","N-ethylmaleimide + NADPH + H(+) = N-ethylsuccinimide + NADP(+)"],["proteintraitsmech%3ABIOLIP_NEQ","NEQ-binding site"]],"b":[["antiviral/n-ethylmaleimide.html","N-ethylmaleimide"]]},{"id":"CHEBI:45453","l":"sinefungin","na":3,"nb":1,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A2.A.71","The Folate-Biopterin Transporter (FBT) Family"],["proteintraitsmech%3ABIOLIP_SFG","SFG-binding site"]],"b":[["antifungal/sinefungin.html","sinefungin"]]},{"id":"CHEBI:4629","l":"diosgenin","na":3,"nb":1,"a":[["EC%3A3.2.1.189","dioscin glycosidase (diosgenin-forming)"],["RHEA%3A36827","dioscin + 3 H2O = diosgenin + 2 L-rhamnopyranose + D-glucose"],["RHEA%3A61888","diosgenin + UDP-alpha-D-glucose = diosgenin 3-O-beta-D-glucoside + UDP + H(+)"]],"b":[["antiviral/diosgenin.html","diosgenin"]]},{"id":"CHEBI:47789","l":"","na":3,"nb":1,"a":[["EC%3A1.1.1.201","7beta-hydroxysteroid dehydrogenase (NADP(+))"],["RHEA%3A82271","7alpha-hydroxy steroid + NADP(+) = a 7-oxosteroid + NADPH + H(+)"],["RHEA%3A20233","a 7beta-hydroxysteroid + NADP(+) = a 7-oxosteroid + NADPH + H(+)"]],"b":[["antiviral/lucialdehyde-b.html","lucialdehyde B"]]},{"id":"CHEBI:51277","l":"","na":1,"nb":3,"a":[["RHEA%3A82919","a thioester + H2O = a thiol + a carboxylate + H(+)"]],"b":[["antifungal/acibenzolar-s-methyl.html","acibenzolar-S-methyl"],["antifungal/fenpyrazamine.html","fenpyrazamine"],["antiprotozoal/sid-26681509.html","SID 26681509"]]},{"id":"CHEBI:6076","l":"itraconazole","na":3,"nb":1,"a":[["RHEA%3A33503","itraconazole(in) + ATP + H2O = itraconazole(out) + ADP + phosphate + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/itraconazole.html","itraconazole"]]},{"id":"CHEBI:60822","l":"streptothricin F(3+)","na":3,"nb":1,"a":[["EC%3A3.5.2.19","streptothricin hydrolase"],["RHEA%3A57000","streptothricin F + acetyl-CoA = N(beta)-acetylstreptothricin F + CoA + H(+)"],["RHEA%3A28138","streptothricin F + H2O = streptothricin F acid"]],"b":[["unspecified/streptothricin-f-3.html","streptothricin F(3+)"]]},{"id":"CHEBI:6472","l":"lincomycin","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_3QB","3QB-binding site"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"CHEBI:67135","l":"2-nitroimidazole","na":3,"nb":1,"a":[["EC%3A3.5.99.9","2-nitroimidazole nitrohydrolase"],["RHEA%3A34271","2-nitroimidazole + H2O = 1,3-dihydro-2H-imidazol-2-one + nitrite + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antimycobacterial/2-nitroimidazole.html","2-nitroimidazole"]]},{"id":"CHEBI:75291","l":"ε-rhodomycinone","na":3,"nb":1,"a":[["EC%3A1.14.13.180","aklavinone 12-hydroxylase"],["RHEA%3A37835","aklavinone + NADPH + O2 + H(+) = epsilon-rhodomycinone + NADP(+) + H2O"],["RHEA%3A45760","dTDP-beta-L-daunosamine + epsilon-rhodomycinone = rhodomycin D + dTDP + H(+)"]],"b":[["unspecified/%CE%B5-rhodomycinone.html","ε-rhodomycinone"]]},{"id":"CHEBI:77879","l":"elaiophylin","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["proteintraitsmech%3ABIOLIP_ELO","ELO-binding site"]],"b":[["antifungal/elaiophylin.html","elaiophylin"]]},{"id":"CHEBI:78303","l":"aclacinomycin S zwitterion","na":3,"nb":1,"a":[["EC%3A2.4.1.327","aclacinomycin-T 2-deoxy-L-fucose transferase"],["RHEA%3A41652","dTDP-2-deoxy-beta-L-fucose + aclacinomycin S = 2-deoxy-alpha-L-fucosylaclacinomycin S + dTDP + H(+)"],["RHEA%3A41568","dTDP-2-deoxy-beta-L-fucose + aclacinomycin T = aclacinomycin S + dTDP + H(+)"]],"b":[["unspecified/aclacinomycin-s-zwitterion.html","aclacinomycin S zwitterion"]]},{"id":"CHEBI:80729","l":"toxoflavin","na":3,"nb":1,"a":[["EC%3A2.1.1.349","toxoflavin synthase"],["RHEA%3A56852","reumycin + S-adenosyl-L-methionine = toxoflavin + S-adenosyl-L-homocysteine + H(+)"],["proteintraitsmech%3ABIOLIP_TOF","TOF-binding site"]],"b":[["antibacterial/toxoflavin.html","toxoflavin"]]},{"id":"CHEBI:82744","l":"","na":3,"nb":1,"a":[["EC%3A4.8.1.2","aliphatic aldoxime dehydratase"],["RHEA%3A11316","an aliphatic aldoxime = a nitrile + H2O"],["MCSA%3A361","aldoxime dehydratase"]],"b":[["unspecified/ic202c.html","IC202C"]]},{"id":"CHEBI:84688","l":"","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]],"b":[["antibacterial/albomycin-%CE%B41.html","albomycin δ1"]]},{"id":"CHEBI:87208","l":"","na":1,"nb":3,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/cyprodinil.html","cyprodinil"],["antifungal/mepanipyrim.html","mepanipyrim"],["antifungal/pyrimethanil.html","pyrimethanil"]]},{"id":"CHEBI:9053","l":"sclareol","na":3,"nb":1,"a":[["EC%3A4.2.3.141","sclareol synthase"],["RHEA%3A34459","8-hydroxycopalyl diphosphate + H2O = sclareol + diphosphate"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/sclareol.html","sclareol"]]},{"id":"CHEBI:9215","l":"spectinomycin","na":3,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["proteintraitsmech%3ABIOLIP_SCM","SCM-binding site"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"CHEBI:9470","l":"tetracenomycin C","na":3,"nb":1,"a":[["EC%3A1.14.13.200","tetracenomycin A2 monooxygenase-diooxygenase"],["RHEA%3A42824","tetracenomycin A2 + 2 NADH + 2 O2 + 2 H(+) = tetracenomycin C + 2 NAD(+) + H2O"],["RHEA%3A42820","tetracenomycin A2 + 2 NADPH + 2 O2 + 2 H(+) = tetracenomycin C + 2 NADP(+) + H2O"]],"b":[["antibacterial/tetracenomycin-c.html","tetracenomycin C"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":3,"nb":1,"a":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF22041","Glutathione S-transferase, C-terminal domain"],["Pfam%3APF08493","Aflatoxin regulatory protein"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:5053","l":"Aspergillus aculeatus","na":3,"nb":1,"a":[["Pfam%3APF14683","Polysaccharide lyase family 4, domain III"],["Pfam%3APF14686","Polysaccharide lyase family 4, domain II"],["Pfam%3APF01670","Glycosyl hydrolase family 12"]],"b":[["antifungal/aculeacin-a.html","aculeacin A"]]},{"id":"NCBITaxon:54571","l":"Streptomyces venezuelae","na":3,"nb":1,"a":[["Pfam%3APF08990","Erythronolide synthase docking domain"],["TED%3AAF-A0A5P2CQV7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5P2CQV7-F1-model_v4_TED02"],["TED%3AAF-A0A5P2C5X4-F1-model_v4_TED01","TED novel fold AF-A0A5P2C5X4-F1-model_v4_TED01"]],"b":[["antibacterial/methymycin.html","methymycin"]]},{"id":"NCBITaxon:578454","l":"Candida parapsilosis (strain CDC 317 / ATCC MYA-4646)","na":1,"nb":3,"a":[["TED%3AAF-G8BAN6-F1-model_v4_TED01","TED novel fold AF-G8BAN6-F1-model_v4_TED01"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"UniProt:P10613","l":"","na":1,"nb":3,"a":[["proteintraitsmech%3ABIOLIP_1YN","1YN-binding site"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"UniProt:Q4WNT5","l":"","na":1,"nb":3,"a":[["EC%3A1.14.14.154","sterol 14alpha-demethylase"]],"b":[["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"ARO:0000040","l":"streptomycin","na":2,"nb":1,"a":[["ARO%3A3004968","Mycobacterium tuberculosis whib7 mutation conferring resistance to streptomycin"],["ARO%3A3004965","streptomycin resistant whib7"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:0000049","l":"kanamycin A","na":2,"nb":1,"a":[["ARO%3A3004966","Kanamycin resistant whib7"],["ARO%3A3004967","Mycobacterium tuberculosis whib7 mutations confer resistance to kanamycin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3000026","l":"mepA","na":2,"nb":1,"a":[["ARO%3A3000026","mepA"],["ARO%3A3000746","mepR"]],"b":[["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:3000118","l":"vgaB","na":1,"nb":2,"a":[["ARO%3A3000118","vgaB"]],"b":[["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3000165","l":"tet(A)","na":2,"nb":1,"a":[["ARO%3A3000165","tet(A)"],["ARO%3A3003479","tetR"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000236","l":"glycopeptide resistance gene cluster VanA","na":1,"nb":2,"a":[["ARO%3A3000236","glycopeptide resistance gene cluster VanA"]],"b":[["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000251","l":"msrA","na":1,"nb":2,"a":[["ARO%3A3000251","msrA"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/quinupristin.html","quinupristin"]]},{"id":"ARO:3000253","l":"glycopeptide resistance gene cluster VanD","na":1,"nb":2,"a":[["ARO%3A3000253","glycopeptide resistance gene cluster VanD"]],"b":[["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000256","l":"glycopeptide resistance gene cluster VanM","na":1,"nb":2,"a":[["ARO%3A3000256","glycopeptide resistance gene cluster VanM"]],"b":[["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000344","l":"EmrAB-TolC","na":2,"nb":1,"a":[["ARO%3A3000344","EmrAB-TolC"],["ARO%3A3000516","emrR"]],"b":[["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3000448","l":"QepA1","na":1,"nb":2,"a":[["ARO%3A3000448","QepA1"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3000545","l":"MacAB-TolC","na":2,"nb":1,"a":[["ARO%3A3000545","MacAB-TolC"],["ARO%3A3000834","phoP"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000616","l":"mel","na":1,"nb":2,"a":[["ARO%3A3000616","mel"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/telithromycin.html","telithromycin"]]},{"id":"ARO:3000768","l":"abeS","na":1,"nb":2,"a":[["ARO%3A3000768","abeS"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3000769","l":"PatA-PatB","na":1,"nb":2,"a":[["ARO%3A3000769","PatA-PatB"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3000771","l":"AdeFGH","na":2,"nb":1,"a":[["ARO%3A3000771","AdeFGH"],["ARO%3A3000620","adeL"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000786","l":"MdsABC","na":2,"nb":1,"a":[["ARO%3A3000504","golS"],["ARO%3A3000786","MdsABC"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3000822","l":"pmrA","na":1,"nb":2,"a":[["ARO%3A3000822","pmrA"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3000865","l":"oleD","na":1,"nb":2,"a":[["ARO%3A3000865","oleD"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3000966","l":"TEM-103","na":1,"nb":2,"a":[["ARO%3A3000966","TEM-103"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"]]},{"id":"ARO:3001216","l":"mdtH","na":1,"nb":2,"a":[["ARO%3A3001216","mdtH"]],"b":[["antibacterial/enoxacin.html","enoxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3001300","l":"myrA","na":1,"nb":2,"a":[["ARO%3A3001300","myrA"]],"b":[["antibacterial/mycinamicin-iv.html","mycinamicin IV"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3001301","l":"RlmA(II)","na":1,"nb":2,"a":[["ARO%3A3001301","RlmA(II)"]],"b":[["antibacterial/mycinamicin-iv.html","mycinamicin IV"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3001306","l":"ErmW","na":1,"nb":2,"a":[["ARO%3A3001306","ErmW"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/josamycin.html","josamycin"]]},{"id":"ARO:3001796","l":"OXA-50","na":1,"nb":2,"a":[["ARO%3A3001796","OXA-50"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"]]},{"id":"ARO:3001816","l":"ACC-2","na":1,"nb":2,"a":[["ARO%3A3001816","ACC-2"]],"b":[["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001917","l":"CTX-M-55","na":1,"nb":2,"a":[["ARO%3A3001917","CTX-M-55"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3002053","l":"CMY-42","na":1,"nb":2,"a":[["ARO%3A3002053","CMY-42"]],"b":[["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002587","l":"","na":1,"nb":2,"a":[["ARO%3A3002587","AAC(6')-I33"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002601","l":"aadA","na":1,"nb":2,"a":[["ARO%3A3002601","aadA"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002602","l":"aadA2","na":1,"nb":2,"a":[["ARO%3A3002602","aadA2"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002603","l":"aadA3","na":1,"nb":2,"a":[["ARO%3A3002603","aadA3"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002604","l":"aadA4","na":1,"nb":2,"a":[["ARO%3A3002604","aadA4"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002605","l":"aadA5","na":1,"nb":2,"a":[["ARO%3A3002605","aadA5"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002606","l":"aadA6","na":1,"nb":2,"a":[["ARO%3A3002606","aadA6"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002607","l":"aadA7","na":1,"nb":2,"a":[["ARO%3A3002607","aadA7"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002608","l":"aadA8","na":1,"nb":2,"a":[["ARO%3A3002608","aadA8"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002609","l":"aadA9","na":1,"nb":2,"a":[["ARO%3A3002609","aadA9"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002611","l":"aadA11","na":1,"nb":2,"a":[["ARO%3A3002611","aadA11"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002612","l":"aadA12","na":1,"nb":2,"a":[["ARO%3A3002612","aadA12"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002613","l":"aadA13","na":1,"nb":2,"a":[["ARO%3A3002613","aadA13"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002614","l":"aadA14","na":1,"nb":2,"a":[["ARO%3A3002614","aadA14"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002615","l":"aadA15","na":1,"nb":2,"a":[["ARO%3A3002615","aadA15"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002616","l":"aadA16","na":1,"nb":2,"a":[["ARO%3A3002616","aadA16"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002617","l":"aadA17","na":1,"nb":2,"a":[["ARO%3A3002617","aadA17"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002618","l":"aadA21","na":1,"nb":2,"a":[["ARO%3A3002618","aadA21"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002619","l":"aadA22","na":1,"nb":2,"a":[["ARO%3A3002619","aadA22"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002620","l":"aadA23","na":1,"nb":2,"a":[["ARO%3A3002620","aadA23"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002621","l":"aadA24","na":1,"nb":2,"a":[["ARO%3A3002621","aadA24"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002622","l":"aadA6/aadA10","na":1,"nb":2,"a":[["ARO%3A3002622","aadA6/aadA10"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002654","l":"","na":1,"nb":2,"a":[["ARO%3A3002654","APH(3')-VIIa"]],"b":[["antibacterial/framycetin.html","framycetin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3002704","l":"fexA","na":1,"nb":2,"a":[["ARO%3A3002704","fexA"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"]]},{"id":"ARO:3002705","l":"floR","na":1,"nb":2,"a":[["ARO%3A3002705","floR"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"]]},{"id":"ARO:3002706","l":"ethambutol resistant embC","na":2,"nb":1,"a":[["ARO%3A3002706","ethambutol resistant embC"],["ARO%3A3003327","Mycobacterium tuberculosis embC mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3002812","l":"pp-flo","na":1,"nb":2,"a":[["ARO%3A3002812","pp-flo"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"]]},{"id":"ARO:3002818","l":"msrB","na":1,"nb":2,"a":[["ARO%3A3002818","msrB"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/quinupristin.html","quinupristin"]]},{"id":"ARO:3002819","l":"msrC","na":1,"nb":2,"a":[["ARO%3A3002819","msrC"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/quinupristin.html","quinupristin"]]},{"id":"ARO:3002829","l":"vgaA","na":1,"nb":2,"a":[["ARO%3A3002829","vgaA"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002835","l":"lnuA","na":1,"nb":2,"a":[["ARO%3A3002835","lnuA"]],"b":[["antibacterial/lincomycin.html","lincomycin"],["antibacterial/pirlimycin.html","pirlimycin"]]},{"id":"ARO:3002836","l":"lnuB","na":1,"nb":2,"a":[["ARO%3A3002836","lnuB"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002838","l":"lnuD","na":1,"nb":2,"a":[["ARO%3A3002838","lnuD"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002839","l":"lnuF","na":1,"nb":2,"a":[["ARO%3A3002839","lnuF"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002876","l":"ethambutol resistant aftA","na":2,"nb":1,"a":[["ARO%3A3002876","ethambutol resistant aftA"],["ARO%3A3004951","Mycobacterium tuberculosis aftA mutations confer resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3002981","l":"AmrAB-OprM","na":1,"nb":2,"a":[["ARO%3A3002981","AmrAB-OprM"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002998","l":"CblA beta-lactamase","na":2,"nb":1,"a":[["ARO%3A3002999","CblA-1"],["ARO%3A3002998","CblA beta-lactamase"]],"b":[["antibacterial/cefaloridine.html","cefaloridine"]]},{"id":"ARO:3003035","l":"mfpA","na":1,"nb":2,"a":[["ARO%3A3003035","mfpA"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/sparfloxacin.html","sparfloxacin"]]},{"id":"ARO:3003054","l":"SmeDEF","na":1,"nb":2,"a":[["ARO%3A3003054","SmeDEF"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003090","l":"daptomycin-resistant beta-subunit of RNA polymerase (rpoB)","na":2,"nb":1,"a":[["ARO%3A3003090","daptomycin-resistant beta-subunit of RNA polymerase (rpoB)"],["ARO%3A3003287","Staphylococcus aureus rpoB mutants conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003091","l":"daptomycin resistant mprF","na":2,"nb":1,"a":[["ARO%3A3003091","daptomycin resistant mprF"],["ARO%3A3003319","Staphylococcus aureus mprF with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003106","l":"Erm(42)","na":1,"nb":2,"a":[["ARO%3A3003106","Erm(42)"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003107","l":"mef(B)","na":1,"nb":2,"a":[["ARO%3A3003107","mef(B)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003111","l":"lsaB","na":1,"nb":2,"a":[["ARO%3A3003111","lsaB"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"ARO:3003197","l":"aadA25","na":1,"nb":2,"a":[["ARO%3A3003197","aadA25"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003206","l":"lsaE","na":1,"nb":2,"a":[["ARO%3A3003206","lsaE"]],"b":[["antibacterial/lincomycin.html","lincomycin"],["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"ARO:3003209","l":"fosA5","na":1,"nb":2,"a":[["ARO%3A3003209","fosA5"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/gentamicin.html","gentamicin"]]},{"id":"ARO:3003290","l":"daptomycin-resistant beta prime subunit of RNA polymerase (rpoC)","na":2,"nb":1,"a":[["ARO%3A3003290","daptomycin-resistant beta prime subunit of RNA polymerase (rpoC)"],["ARO%3A3003291","Staphylococcus aureus rpoC conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003378","l":"Escherichia coli AcrAB-TolC with MarR mutations conferring resistance to ciprofloxacin and tetracycline","na":1,"nb":2,"a":[["ARO%3A3003378","Escherichia coli AcrAB-TolC with MarR mutations conferring resistance to ciprofloxacin and tetracycline"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003401","l":"","na":2,"nb":1,"a":[["ARO%3A3003388","dapsone resistant dihydropteroate synthase folP"],["ARO%3A3003389","Mycobacterium leprae folP with mutation conferring resistance to dapsone"]],"b":[["antimycobacterial/dapsone.html","dapsone"]]},{"id":"ARO:3003447","l":"ethambutol resistant iniA","na":2,"nb":1,"a":[["ARO%3A3003447","ethambutol resistant iniA"],["ARO%3A3003448","Mycobacterium tuberculosis iniA mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003450","l":"Ethambutol resistant iniC","na":2,"nb":1,"a":[["ARO%3A3003450","Ethambutol resistant iniC"],["ARO%3A3003451","Mycobacterium tuberculosis iniC mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003452","l":"ethambutol resistant embA","na":2,"nb":1,"a":[["ARO%3A3003452","ethambutol resistant embA"],["ARO%3A3003453","Mycobacterium tuberculosis embA mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003454","l":"ethambutol resistant embR","na":2,"nb":1,"a":[["ARO%3A3003454","ethambutol resistant embR"],["ARO%3A3003455","Mycobacterium tuberculosis embR mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003458","l":"Mycobacterium tuberculosis ethA with mutation conferring resistance to ethionamide","na":2,"nb":1,"a":[["ARO%3A3003457","ethionamide resistant ethA"],["ARO%3A3003458","Mycobacterium tuberculosis ethA with mutation conferring resistance to ethionamide"]],"b":[["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"ARO:3003499","l":"Cutibacterium acnes 16S rRNA mutation conferring resistance to tetracycline","na":2,"nb":1,"a":[["ARO%3A3003499","Cutibacterium acnes 16S rRNA mutation conferring resistance to tetracycline"],["ARO%3A3003977","Halobacterium salinarum 16S rRNA mutation conferring resistance to pactamycin"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003573","l":"LpxA","na":1,"nb":2,"a":[["ARO%3A3003573","LpxA"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003574","l":"LpxC","na":1,"nb":2,"a":[["ARO%3A3003574","LpxC"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003575","l":"LpxD","na":1,"nb":2,"a":[["ARO%3A3003575","LpxD"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003585","l":"Klebsiella mutant PhoP conferring antibiotic resistance to colistin","na":1,"nb":2,"a":[["ARO%3A3003585","Klebsiella mutant PhoP conferring antibiotic resistance to colistin"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003676","l":"AAC(6')-Ib'","na":1,"nb":2,"a":[["ARO%3A3003676","AAC(6')-Ib'"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3003689","l":"MCR-1.1","na":1,"nb":2,"a":[["ARO%3A3003689","MCR-1.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003694","l":"MexJK-OprM","na":1,"nb":2,"a":[["ARO%3A3003694","MexJK-OprM"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003703","l":"MexMN-OprM","na":1,"nb":2,"a":[["ARO%3A3003703","MexMN-OprM"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3003722","l":"glycopeptide resistance gene cluster VanI","na":1,"nb":2,"a":[["ARO%3A3003722","glycopeptide resistance gene cluster VanI"]],"b":[["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3003751","l":"Escherichia coli nfsA mutations conferring resistance to nitrofurantoin","na":2,"nb":1,"a":[["ARO%3A3003754","antibiotic resistant nfsA"],["ARO%3A3003751","Escherichia coli nfsA mutations conferring resistance to nitrofurantoin"]],"b":[["antibacterial/nitrofurantoin.html","nitrofurantoin"]]},{"id":"ARO:3003795","l":"daptomycin resistant walK","na":2,"nb":1,"a":[["ARO%3A3003795","daptomycin resistant walK"],["ARO%3A3003794","Staphylococcus aureus walK with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003796","l":"Acinetobacter baumannii ampC beta-lactamase","na":1,"nb":2,"a":[["ARO%3A3003796","Acinetobacter baumannii ampC beta-lactamase"]],"b":[["antibacterial/cefepime.html","cefepime"],["antibacterial/piperacillin.html","piperacillin"]]},{"id":"ARO:3003798","l":"daptomycin resistant YybT","na":2,"nb":1,"a":[["ARO%3A3003798","daptomycin resistant YybT"],["ARO%3A3003797","Enterococcus faecalis YybT with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003802","l":"daptomycin resistant gdpD","na":2,"nb":1,"a":[["ARO%3A3003802","daptomycin resistant gdpD"],["ARO%3A3003800","Enterococcus faecalis gdpD with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003804","l":"daptomycin resistant agrA","na":2,"nb":1,"a":[["ARO%3A3003804","daptomycin resistant agrA"],["ARO%3A3003803","Staphylococcus aureus agrA with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003808","l":"carO","na":1,"nb":2,"a":[["ARO%3A3003808","carO"]],"b":[["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3003814","l":"daptomycin resistant drmA","na":2,"nb":1,"a":[["ARO%3A3003814","daptomycin resistant drmA"],["ARO%3A3003813","Enterococcus faecalis drmA with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003816","l":"daptomycin resistant YvlB","na":2,"nb":1,"a":[["ARO%3A3003816","daptomycin resistant YvlB"],["ARO%3A3003815","Enterococcus faecalis YvlB with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003820","l":"mgrB","na":1,"nb":2,"a":[["ARO%3A3003820","mgrB"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003893","l":"Escherichia coli uhpA with mutation conferring resistance to fosfomycin","na":2,"nb":1,"a":[["ARO%3A3003893","Escherichia coli uhpA with mutation conferring resistance to fosfomycin"],["ARO%3A3004249","UhpA"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003895","l":"Pseudomonas mutant PhoP conferring resistance to colistin","na":1,"nb":2,"a":[["ARO%3A3003895","Pseudomonas mutant PhoP conferring resistance to colistin"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003896","l":"Pseudomonas mutant PhoQ conferring resistance to colistin","na":1,"nb":2,"a":[["ARO%3A3003896","Pseudomonas mutant PhoQ conferring resistance to colistin"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003899","l":"Escherichia coli PtsI with mutation conferring resistance to fosfomycin","na":2,"nb":1,"a":[["ARO%3A3004250","antibiotic-resistant ptsI phosphotransferase"],["ARO%3A3003899","Escherichia coli PtsI with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003926","l":"Salmonella enterica gyrA conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3003926","Salmonella enterica gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3003928","l":"Neisseria gonorrhoeae gyrA with mutations conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3003928","Neisseria gonorrhoeae gyrA with mutations conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/sitafloxacin.html","Sitafloxacin"]]},{"id":"ARO:3003929","l":"Neisseria gonorrhoeae parC conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3003929","Neisseria gonorrhoeae parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/sitafloxacin.html","Sitafloxacin"]]},{"id":"ARO:3003937","l":"Neisseria meningititis PBP2 conferring resistance to beta-lactam","na":1,"nb":2,"a":[["ARO%3A3003937","Neisseria meningititis PBP2 conferring resistance to beta-lactam"]],"b":[["antibacterial/cefixime.html","cefixime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3003939","l":"Salmonella enterica parC conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3003939","Salmonella enterica parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3003940","l":"Shigella flexneri gyrA conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3003940","Shigella flexneri gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/nalidixic-acid.html","nalidixic acid"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3003941","l":"Shigella flexneri parC conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3003941","Shigella flexneri parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/nalidixic-acid.html","nalidixic acid"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3003953","l":"hmrM","na":1,"nb":2,"a":[["ARO%3A3003953","hmrM"]],"b":[["antibacterial/norfloxacin.html","norfloxacin"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3003955","l":"efpA","na":1,"nb":2,"a":[["ARO%3A3003955","efpA"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3003967","l":"lfrA","na":1,"nb":2,"a":[["ARO%3A3003967","lfrA"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3003968","l":"Klebsiella pneumoniae OmpK36","na":1,"nb":2,"a":[["ARO%3A3003968","Klebsiella pneumoniae OmpK36"]],"b":[["antibacterial/cefalotin.html","cefalotin"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3003971","l":"Erm(44)v","na":1,"nb":2,"a":[["ARO%3A3003971","Erm(44)v"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003974","l":"Cutibacterium acnes gyrA conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3003974","Cutibacterium acnes gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"ARO:3004057","l":"23S rRNA with mutation conferring resistance to linezolid antibiotics","na":2,"nb":1,"a":[["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3004058","Staphylococcus aureus 23S rRNA with mutation conferring resistance to linezolid"]],"b":[["antibacterial/linezolid.html","linezolid"]]},{"id":"ARO:3004070","l":"MexEF-OprN with MvaT deletion conferring resistance to chloramphenicol and norfloxacin","na":1,"nb":2,"a":[["ARO%3A3004070","MexEF-OprN with MvaT deletion conferring resistance to chloramphenicol and norfloxacin"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3004086","l":"","na":1,"nb":2,"a":[["ARO%3A3004086","APH(3')-VIIIb"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004087","l":"","na":1,"nb":2,"a":[["ARO%3A3004087","APH(3')-IXa"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004089","l":"","na":1,"nb":2,"a":[["ARO%3A3004089","ANT(3')-IIa"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004090","l":"","na":1,"nb":2,"a":[["ARO%3A3004090","ANT(3')-IIb"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004091","l":"","na":1,"nb":2,"a":[["ARO%3A3004091","ANT(3')-IIc"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004096","l":"daptomycin resistant CdsA","na":2,"nb":1,"a":[["ARO%3A3004096","daptomycin resistant CdsA"],["ARO%3A3004097","Streptococcus mitis CdsA with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3004110","l":"MCR-2.1","na":1,"nb":2,"a":[["ARO%3A3004110","MCR-2.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004114","l":"porin OmpC","na":1,"nb":2,"a":[["ARO%3A3004114","porin OmpC"]],"b":[["antibacterial/cefaloridine.html","cefaloridine"],["antibacterial/cefazolin.html","cefazolin"]]},{"id":"ARO:3004122","l":"Klebsiella pneumoniae OmpK37","na":1,"nb":2,"a":[["ARO%3A3004122","Klebsiella pneumoniae OmpK37"]],"b":[["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"ARO:3004131","l":"Escherichia coli 23S rRNA with mutation conferring resistance to erythromycin and telithromycin","na":1,"nb":2,"a":[["ARO%3A3004131","Escherichia coli 23S rRNA with mutation conferring resistance to erythromycin and telithromycin"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/telithromycin.html","telithromycin"]]},{"id":"ARO:3004136","l":"Ethambutol resistant iniB","na":2,"nb":1,"a":[["ARO%3A3004136","Ethambutol resistant iniB"],["ARO%3A3004135","Mycobacterium tuberculosis iniB with mutation conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3004138","l":"Moraxella catarrhalis 23S rRNA with mutation conferring resistance to macrolide antibiotics","na":1,"nb":2,"a":[["ARO%3A3004138","Moraxella catarrhalis 23S rRNA with mutation conferring resistance to macrolide antibiotics"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004139","l":"MCR-3.1","na":1,"nb":2,"a":[["ARO%3A3004139","MCR-3.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004146","l":"cfrC","na":1,"nb":2,"a":[["ARO%3A3004146","cfrC"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"]]},{"id":"ARO:3004170","l":"Streptococcus pneumoniae 23S rRNA with mutation conferring resistance to macrolide antibiotics","na":1,"nb":2,"a":[["ARO%3A3004170","Streptococcus pneumoniae 23S rRNA with mutation conferring resistance to macrolide antibiotics"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3004177","l":"Mycoplasmopsis fermentans 23S rRNA with mutation conferring resistance to macrolide antibiotics","na":1,"nb":2,"a":[["ARO%3A3004177","Mycoplasmopsis fermentans 23S rRNA with mutation conferring resistance to macrolide antibiotics"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004194","l":"MCR-1.2","na":1,"nb":2,"a":[["ARO%3A3004194","MCR-1.2"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004285","l":"tunicamycin resistance protein","na":2,"nb":1,"a":[["ARO%3A3003059","tmrB"],["ARO%3A3004285","tunicamycin resistance protein"]],"b":[["antibacterial/tunicamycin.html","tunicamycin"]]},{"id":"ARO:3004325","l":"MCR-4.1","na":1,"nb":2,"a":[["ARO%3A3004325","MCR-4.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004332","l":"MCR-5.1","na":1,"nb":2,"a":[["ARO%3A3004332","MCR-5.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004466","l":"ICR-Mc","na":1,"nb":2,"a":[["ARO%3A3004466","ICR-Mc"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004490","l":"delamanid","na":2,"nb":1,"a":[["ARO%3A3007661","Mycobacterium tuberculosis ddn mutation conferring resistance to nitroimidazole antibiotics"],["ARO%3A3007849","Mycobacterium tuberculosis fgd1 with mutation conferring resistance to delamanid"]],"b":[["antibacterial/delamanid.html","delamanid"]]},{"id":"ARO:3004500","l":"MCR-3.11","na":1,"nb":2,"a":[["ARO%3A3004500","MCR-3.11"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004501","l":"MCR-6.1","na":1,"nb":2,"a":[["ARO%3A3004501","MCR-6.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004502","l":"MCR-2.2","na":1,"nb":2,"a":[["ARO%3A3004502","MCR-2.2"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004503","l":"MCR-3.6","na":1,"nb":2,"a":[["ARO%3A3004503","MCR-3.6"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004504","l":"MCR-3.10","na":1,"nb":2,"a":[["ARO%3A3004504","MCR-3.10"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004505","l":"MCR-3.5","na":1,"nb":2,"a":[["ARO%3A3004505","MCR-3.5"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004506","l":"MCR-1.10","na":1,"nb":2,"a":[["ARO%3A3004506","MCR-1.10"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004507","l":"MCR-1.9","na":1,"nb":2,"a":[["ARO%3A3004507","MCR-1.9"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004508","l":"MCR-3.9","na":1,"nb":2,"a":[["ARO%3A3004508","MCR-3.9"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004509","l":"MCR-3.8","na":1,"nb":2,"a":[["ARO%3A3004509","MCR-3.8"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004510","l":"MCR-3.7","na":1,"nb":2,"a":[["ARO%3A3004510","MCR-3.7"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004511","l":"MCR-3.2","na":1,"nb":2,"a":[["ARO%3A3004511","MCR-3.2"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004513","l":"MCR-1.6","na":1,"nb":2,"a":[["ARO%3A3004513","MCR-1.6"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004514","l":"MCR-1.3","na":1,"nb":2,"a":[["ARO%3A3004514","MCR-1.3"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004515","l":"MCR-1.4","na":1,"nb":2,"a":[["ARO%3A3004515","MCR-1.4"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004516","l":"MCR-8.1","na":1,"nb":2,"a":[["ARO%3A3004516","MCR-8.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004517","l":"MCR-7.1","na":1,"nb":2,"a":[["ARO%3A3004517","MCR-7.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004541","l":"mphK","na":1,"nb":2,"a":[["ARO%3A3004541","mphK"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/telithromycin.html","telithromycin"]]},{"id":"ARO:3004560","l":"murG transferase","na":2,"nb":1,"a":[["ARO%3A3004561","Clostridioides difficile murG with mutation conferring resistance to vancomycin"],["ARO%3A3004560","murG transferase"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3004563","l":"Clostridioides difficile rpoB with mutation conferring resistance to rifampicin","na":1,"nb":2,"a":[["ARO%3A3004563","Clostridioides difficile rpoB with mutation conferring resistance to rifampicin"]],"b":[["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3004569","l":"ICR-Mo","na":1,"nb":2,"a":[["ARO%3A3004569","ICR-Mo"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004574","l":"Acinetobacter baumannii AbaQ","na":1,"nb":2,"a":[["ARO%3A3004574","Acinetobacter baumannii AbaQ"]],"b":[["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3004577","l":"Acinetobacter baumannii AmvA","na":1,"nb":2,"a":[["ARO%3A3004577","Acinetobacter baumannii AmvA"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3004581","l":"tet(48)","na":1,"nb":2,"a":[["ARO%3A3004581","tet(48)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004582","l":"tet(49)","na":1,"nb":2,"a":[["ARO%3A3004582","tet(49)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004584","l":"tet(50)","na":1,"nb":2,"a":[["ARO%3A3004584","tet(50)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004586","l":"tet(51)","na":1,"nb":2,"a":[["ARO%3A3004586","tet(51)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004587","l":"tet(52)","na":1,"nb":2,"a":[["ARO%3A3004587","tet(52)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004590","l":"tet(54)","na":1,"nb":2,"a":[["ARO%3A3004590","tet(54)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004600","l":"LnuH","na":1,"nb":2,"a":[["ARO%3A3004600","LnuH"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3004603","l":"tet(56)","na":1,"nb":2,"a":[["ARO%3A3004603","tet(56)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004613","l":"tet(47)","na":1,"nb":2,"a":[["ARO%3A3004613","tet(47)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004616","l":"Mycoplasma genitalium 23S rRNA mutations confers resistance to fluoroquinolone and macrolide antibiotics","na":1,"nb":2,"a":[["ARO%3A3004616","Mycoplasma genitalium 23S rRNA mutations confers resistance to fluoroquinolone and macrolide antibiotics"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3004626","l":"Erm(49)","na":1,"nb":2,"a":[["ARO%3A3004626","Erm(49)"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004641","l":"","na":1,"nb":2,"a":[["ARO%3A3004641","AAC(6')-I-43"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3004654","l":"Clostridioides difficile 23S rRNA with mutation conferring resistance to erythromycin and clindamycin","na":1,"nb":2,"a":[["ARO%3A3004654","Clostridioides difficile 23S rRNA with mutation conferring resistance to erythromycin and clindamycin"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004662","l":"MCR-3.3","na":1,"nb":2,"a":[["ARO%3A3004662","MCR-3.3"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004666","l":"pexA","na":1,"nb":2,"a":[["ARO%3A3004666","pexA"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"]]},{"id":"ARO:3004678","l":"rmtE","na":1,"nb":2,"a":[["ARO%3A3004678","rmtE"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamycin-a.html","gentamycin A"]]},{"id":"ARO:3004680","l":"","na":1,"nb":2,"a":[["ARO%3A3004680","APH(3')-VIIIa"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004682","l":"aadA27","na":1,"nb":2,"a":[["ARO%3A3004682","aadA27"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004684","l":"MCR-9.1","na":1,"nb":2,"a":[["ARO%3A3004684","MCR-9.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004685","l":"MCR-1.5","na":1,"nb":2,"a":[["ARO%3A3004685","MCR-1.5"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004686","l":"MCR-1.7","na":1,"nb":2,"a":[["ARO%3A3004686","MCR-1.7"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004687","l":"MCR-1.8","na":1,"nb":2,"a":[["ARO%3A3004687","MCR-1.8"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004688","l":"MCR-1.11","na":1,"nb":2,"a":[["ARO%3A3004688","MCR-1.11"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004689","l":"MCR-1.12","na":1,"nb":2,"a":[["ARO%3A3004689","MCR-1.12"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004690","l":"MCR-1.13","na":1,"nb":2,"a":[["ARO%3A3004690","MCR-1.13"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004691","l":"MCR-3.4","na":1,"nb":2,"a":[["ARO%3A3004691","MCR-3.4"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004692","l":"aadA10","na":1,"nb":2,"a":[["ARO%3A3004692","aadA10"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004693","l":"MCR-3.12","na":1,"nb":2,"a":[["ARO%3A3004693","MCR-3.12"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004694","l":"MCR-4.2","na":1,"nb":2,"a":[["ARO%3A3004694","MCR-4.2"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004695","l":"MCR-4.3","na":1,"nb":2,"a":[["ARO%3A3004695","MCR-4.3"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004696","l":"MCR-4.4","na":1,"nb":2,"a":[["ARO%3A3004696","MCR-4.4"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004697","l":"MCR-4.5","na":1,"nb":2,"a":[["ARO%3A3004697","MCR-4.5"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004698","l":"MCR-5.2","na":1,"nb":2,"a":[["ARO%3A3004698","MCR-5.2"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004704","l":"aadA8b","na":1,"nb":2,"a":[["ARO%3A3004704","aadA8b"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004719","l":"tet(X3)","na":1,"nb":2,"a":[["ARO%3A3004719","tet(X3)"]],"b":[["antibacterial/tetracycline.html","tetracycline"],["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:3004720","l":"tet(X4)","na":1,"nb":2,"a":[["ARO%3A3004720","tet(X4)"]],"b":[["antibacterial/tetracycline.html","tetracycline"],["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:3004721","l":"Mycobacterium tuberculosis rpsA mutations conferring resistance to pyrazinamide","na":2,"nb":1,"a":[["ARO%3A3004721","Mycobacterium tuberculosis rpsA mutations conferring resistance to pyrazinamide"],["ARO%3A3004722","pyrazinamide resistant rpsA"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004832","l":"Neisseria gonorrhoeae PBP2 conferring resistance to beta-lactam antibiotics","na":1,"nb":2,"a":[["ARO%3A3004832","Neisseria gonorrhoeae PBP2 conferring resistance to beta-lactam antibiotics"]],"b":[["antibacterial/cefixime.html","cefixime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3004851","l":"Neisseria gonorrhoeae mtrR with mutation conferring resistance","na":1,"nb":2,"a":[["ARO%3A3004851","Neisseria gonorrhoeae mtrR with mutation conferring resistance"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004918","l":"Mycobacterium tuberculosis eccB5 conferring resistance to fluoroquinolones","na":2,"nb":1,"a":[["ARO%3A3004918","Mycobacterium tuberculosis eccB5 conferring resistance to fluoroquinolones"],["ARO%3A3004919","Mycobacterium tuberculosis eccC5 conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3004930","l":"Mycobacterium tuberculosis nat mutations conferring resistance to isoniazid","na":2,"nb":1,"a":[["ARO%3A3004910","isoniazid resistant nat"],["ARO%3A3004930","Mycobacterium tuberculosis nat mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004960","l":"Mycobacterium tuberculosis ponA1 mutations conferring resistance to rifabutin","na":1,"nb":2,"a":[["ARO%3A3004960","Mycobacterium tuberculosis ponA1 mutations conferring resistance to rifabutin"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3004965","l":"streptomycin resistant whib7","na":2,"nb":1,"a":[["ARO%3A3004968","Mycobacterium tuberculosis whib7 mutation conferring resistance to streptomycin"],["ARO%3A3004965","streptomycin resistant whib7"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004966","l":"Kanamycin resistant whib7","na":2,"nb":1,"a":[["ARO%3A3004966","Kanamycin resistant whib7"],["ARO%3A3004967","Mycobacterium tuberculosis whib7 mutations confer resistance to kanamycin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004994","l":"Mycobacterium tuberculosis rpoC mutations confer resistance to rifampicin","na":1,"nb":2,"a":[["ARO%3A3004994","Mycobacterium tuberculosis rpoC mutations confer resistance to rifampicin"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3004998","l":"rifampicin resistant rpoA","na":2,"nb":1,"a":[["ARO%3A3004999","Mycobacterium tuberculosis rpoA mutations confer resistance to rifampicin"],["ARO%3A3004998","rifampicin resistant rpoA"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3005023","l":"cfrE","na":1,"nb":2,"a":[["ARO%3A3005023","cfrE"]],"b":[["antibacterial/thiamphenicol.html","thiamphenicol"],["antibacterial/tiamulin.html","tiamulin"]]},{"id":"ARO:3005044","l":"OmpA","na":1,"nb":2,"a":[["ARO%3A3005044","OmpA"]],"b":[["antibacterial/defensin.html","defensin"],["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3005049","l":"CrcB","na":1,"nb":2,"a":[["ARO%3A3005049","CrcB"]],"b":[["antibacterial/gentamicin.html","gentamicin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005052","l":"LpsA","na":1,"nb":2,"a":[["ARO%3A3005052","LpsA"]],"b":[["antibacterial/defensin.html","defensin"],["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3005053","l":"ArnT","na":1,"nb":2,"a":[["ARO%3A3005053","ArnT"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3005061","l":"AAC(3)-IVb","na":1,"nb":2,"a":[["ARO%3A3005061","AAC(3)-IVb"]],"b":[["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005062","l":"","na":1,"nb":2,"a":[["ARO%3A3005062","ANT(3')-Ib"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3005081","l":"Thermus thermophilus uL3 mutations conferring resistance to pleuromutilin antibiotics","na":2,"nb":1,"a":[["ARO%3A3005082","Ribosomal protein mutation conferring resistance to pleuromutilin antibiotics"],["ARO%3A3005081","Thermus thermophilus uL3 mutations conferring resistance to pleuromutilin antibiotics"]],"b":[["antibacterial/tiamulin.html","tiamulin"]]},{"id":"ARO:3005221","l":"MCR-3.41","na":1,"nb":2,"a":[["ARO%3A3005221","MCR-3.41"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007023","l":"NDM-33","na":1,"nb":2,"a":[["ARO%3A3007023","NDM-33"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3007029","l":"salE","na":1,"nb":2,"a":[["ARO%3A3007029","salE"]],"b":[["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"]]},{"id":"ARO:3007042","l":"msr(G)","na":1,"nb":2,"a":[["ARO%3A3007042","msr(G)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3007044","l":"mef(F)","na":1,"nb":2,"a":[["ARO%3A3007044","mef(F)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3007051","l":"Helicobacter pylori rpoB mutation conferring resistance to rifampicin","na":1,"nb":2,"a":[["ARO%3A3007051","Helicobacter pylori rpoB mutation conferring resistance to rifampicin"]],"b":[["antibacterial/levofloxacin.html","levofloxacin"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3007053","l":"Helicobacter pylori gyrB conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3007053","Helicobacter pylori gyrB conferring resistance to fluoroquinolones"]],"b":[["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3007055","l":"Helicobacter pylori rdxA mutation conferring resistance to metronidazole","na":2,"nb":1,"a":[["ARO%3A3007056","Antibiotic resistant Helicobacter pylori nitroreductase"],["ARO%3A3007055","Helicobacter pylori rdxA mutation conferring resistance to metronidazole"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007070","l":"MCR-1.33","na":1,"nb":2,"a":[["ARO%3A3007070","MCR-1.33"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007118","l":"crxA","na":1,"nb":2,"a":[["ARO%3A3007118","crxA"]],"b":[["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3007137","l":"mcr-10.1","na":1,"nb":2,"a":[["ARO%3A3007137","mcr-10.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007158","l":"","na":2,"nb":1,"a":[["ARO%3A3003976","16S rRNA with mutation conferring resistance to pactamycin"],["ARO%3A3003977","Halobacterium salinarum 16S rRNA mutation conferring resistance to pactamycin"]],"b":[["antibacterial/pactamycin.html","pactamycin"]]},{"id":"ARO:3007160","l":"","na":2,"nb":1,"a":[["ARO%3A3004859","Neisseria gonorrhoeae gyrB conferring resistance to zoliflodacin"],["ARO%3A3005000","Zoliflodacin resistant gyrB"]],"b":[["antibacterial/zoliflodacin.html","zoliflodacin"]]},{"id":"ARO:3007187","l":"glycopeptide resistance gene cluster vanP","na":1,"nb":2,"a":[["ARO%3A3007187","glycopeptide resistance gene cluster vanP"]],"b":[["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3007199","l":"PAM-1","na":1,"nb":2,"a":[["ARO%3A3007199","PAM-1"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/doripenem.html","doripenem"]]},{"id":"ARO:3007203","l":"Klebsiella pneumoniae mutant PhoQ conferring resistance to colistin","na":1,"nb":2,"a":[["ARO%3A3007203","Klebsiella pneumoniae mutant PhoQ conferring resistance to colistin"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007227","l":"MCR-8.3","na":1,"nb":2,"a":[["ARO%3A3007227","MCR-8.3"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007228","l":"MCR-8.4","na":1,"nb":2,"a":[["ARO%3A3007228","MCR-8.4"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007229","l":"MCR-8.2","na":1,"nb":2,"a":[["ARO%3A3007229","MCR-8.2"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007230","l":"MCR-1.34","na":1,"nb":2,"a":[["ARO%3A3007230","MCR-1.34"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007231","l":"MCR-4.6","na":1,"nb":2,"a":[["ARO%3A3007231","MCR-4.6"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007232","l":"MCR-1.27","na":1,"nb":2,"a":[["ARO%3A3007232","MCR-1.27"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007233","l":"MCR-1.18","na":1,"nb":2,"a":[["ARO%3A3007233","MCR-1.18"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007234","l":"MCR-1.23","na":1,"nb":2,"a":[["ARO%3A3007234","MCR-1.23"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007235","l":"MCR-1.20","na":1,"nb":2,"a":[["ARO%3A3007235","MCR-1.20"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007236","l":"MCR-1.28","na":1,"nb":2,"a":[["ARO%3A3007236","MCR-1.28"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007237","l":"MCR-1.21","na":1,"nb":2,"a":[["ARO%3A3007237","MCR-1.21"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007238","l":"MCR-1.16","na":1,"nb":2,"a":[["ARO%3A3007238","MCR-1.16"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007239","l":"MCR-1.22","na":1,"nb":2,"a":[["ARO%3A3007239","MCR-1.22"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007240","l":"MCR-1.19","na":1,"nb":2,"a":[["ARO%3A3007240","MCR-1.19"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007241","l":"MCR-1.29","na":1,"nb":2,"a":[["ARO%3A3007241","MCR-1.29"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007242","l":"MCR-1.30","na":1,"nb":2,"a":[["ARO%3A3007242","MCR-1.30"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007243","l":"MCR-1.24","na":1,"nb":2,"a":[["ARO%3A3007243","MCR-1.24"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007244","l":"MCR-1.17","na":1,"nb":2,"a":[["ARO%3A3007244","MCR-1.17"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007245","l":"MCR-1.31","na":1,"nb":2,"a":[["ARO%3A3007245","MCR-1.31"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007246","l":"MCR-1.14","na":1,"nb":2,"a":[["ARO%3A3007246","MCR-1.14"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007247","l":"MCR-1.25","na":1,"nb":2,"a":[["ARO%3A3007247","MCR-1.25"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007248","l":"MCR-3.33","na":1,"nb":2,"a":[["ARO%3A3007248","MCR-3.33"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007249","l":"MCR-3.14","na":1,"nb":2,"a":[["ARO%3A3007249","MCR-3.14"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007250","l":"MCR-3.37","na":1,"nb":2,"a":[["ARO%3A3007250","MCR-3.37"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007251","l":"MCR-3.38","na":1,"nb":2,"a":[["ARO%3A3007251","MCR-3.38"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007252","l":"MCR-3.15","na":1,"nb":2,"a":[["ARO%3A3007252","MCR-3.15"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007253","l":"MCR-3.27","na":1,"nb":2,"a":[["ARO%3A3007253","MCR-3.27"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007254","l":"MCR-3.32","na":1,"nb":2,"a":[["ARO%3A3007254","MCR-3.32"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007255","l":"MCR-3.31","na":1,"nb":2,"a":[["ARO%3A3007255","MCR-3.31"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007256","l":"MCR-3.23","na":1,"nb":2,"a":[["ARO%3A3007256","MCR-3.23"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007257","l":"MCR-3.36","na":1,"nb":2,"a":[["ARO%3A3007257","MCR-3.36"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007258","l":"MCR-3.25","na":1,"nb":2,"a":[["ARO%3A3007258","MCR-3.25"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007259","l":"MCR-3.22","na":1,"nb":2,"a":[["ARO%3A3007259","MCR-3.22"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007260","l":"MCR-3.16","na":1,"nb":2,"a":[["ARO%3A3007260","MCR-3.16"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007261","l":"MCR-3.26","na":1,"nb":2,"a":[["ARO%3A3007261","MCR-3.26"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007262","l":"MCR-3.21","na":1,"nb":2,"a":[["ARO%3A3007262","MCR-3.21"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007263","l":"MCR-3.18","na":1,"nb":2,"a":[["ARO%3A3007263","MCR-3.18"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007264","l":"MCR-3.40","na":1,"nb":2,"a":[["ARO%3A3007264","MCR-3.40"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007265","l":"MCR-3.24","na":1,"nb":2,"a":[["ARO%3A3007265","MCR-3.24"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007266","l":"MCR-3.20","na":1,"nb":2,"a":[["ARO%3A3007266","MCR-3.20"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007267","l":"MCR-3.35","na":1,"nb":2,"a":[["ARO%3A3007267","MCR-3.35"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007268","l":"MCR-3.34","na":1,"nb":2,"a":[["ARO%3A3007268","MCR-3.34"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007269","l":"MCR-3.13","na":1,"nb":2,"a":[["ARO%3A3007269","MCR-3.13"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007270","l":"MCR-3.28","na":1,"nb":2,"a":[["ARO%3A3007270","MCR-3.28"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007271","l":"MCR-3.39","na":1,"nb":2,"a":[["ARO%3A3007271","MCR-3.39"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007272","l":"MCR-3.29","na":1,"nb":2,"a":[["ARO%3A3007272","MCR-3.29"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007273","l":"MCR-3.19","na":1,"nb":2,"a":[["ARO%3A3007273","MCR-3.19"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007274","l":"MCR-10.5","na":1,"nb":2,"a":[["ARO%3A3007274","MCR-10.5"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007275","l":"MCR-10.3","na":1,"nb":2,"a":[["ARO%3A3007275","MCR-10.3"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007276","l":"MCR-10.4","na":1,"nb":2,"a":[["ARO%3A3007276","MCR-10.4"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007277","l":"MCR-10.2","na":1,"nb":2,"a":[["ARO%3A3007277","MCR-10.2"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007278","l":"MCR-3.17","na":1,"nb":2,"a":[["ARO%3A3007278","MCR-3.17"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007279","l":"MCR-1.15","na":1,"nb":2,"a":[["ARO%3A3007279","MCR-1.15"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007280","l":"MCR-1.26","na":1,"nb":2,"a":[["ARO%3A3007280","MCR-1.26"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007281","l":"MCR-5.4","na":1,"nb":2,"a":[["ARO%3A3007281","MCR-5.4"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007282","l":"MCR-5.3","na":1,"nb":2,"a":[["ARO%3A3007282","MCR-5.3"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007283","l":"MCR-2.4","na":1,"nb":2,"a":[["ARO%3A3007283","MCR-2.4"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007284","l":"MCR-2.3","na":1,"nb":2,"a":[["ARO%3A3007284","MCR-2.3"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007285","l":"MCR-2.8","na":1,"nb":2,"a":[["ARO%3A3007285","MCR-2.8"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007286","l":"MCR-2.5","na":1,"nb":2,"a":[["ARO%3A3007286","MCR-2.5"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007287","l":"MCR-2.7","na":1,"nb":2,"a":[["ARO%3A3007287","MCR-2.7"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007288","l":"MCR-2.6","na":1,"nb":2,"a":[["ARO%3A3007288","MCR-2.6"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007289","l":"MCR-1.32","na":1,"nb":2,"a":[["ARO%3A3007289","MCR-1.32"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007375","l":"KPC-87","na":1,"nb":2,"a":[["ARO%3A3007375","KPC-87"]],"b":[["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3007402","l":"KPC-94","na":1,"nb":2,"a":[["ARO%3A3007402","KPC-94"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3007423","l":"Escherichia coli PBP3 mutants conferring resistance to beta-lactam antibiotics","na":1,"nb":2,"a":[["ARO%3A3007423","Escherichia coli PBP3 mutants conferring resistance to beta-lactam antibiotics"]],"b":[["antibacterial/ceftaroline.html","ceftaroline"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007493","l":"tet(63)","na":1,"nb":2,"a":[["ARO%3A3007493","tet(63)"]],"b":[["antibacterial/doxycycline.html","doxycycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007494","l":"tet(64)","na":1,"nb":2,"a":[["ARO%3A3007494","tet(64)"]],"b":[["antibacterial/doxycycline.html","doxycycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007498","l":"","na":1,"nb":2,"a":[["ARO%3A3007640","Candida spp. pleiotropic drug resistance factor 1"]],"b":[["antifungal/naftifine.html","naftifine"],["antifungal/terbinafine.html","terbinafine"]]},{"id":"ARO:3007533","l":"MCR-4.7","na":1,"nb":2,"a":[["ARO%3A3007533","MCR-4.7"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007553","l":"Candida spp. CDR1","na":1,"nb":2,"a":[["ARO%3A3007553","Candida spp. CDR1"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/miconazole.html","miconazole"]]},{"id":"ARO:3007554","l":"Candida spp. CDR2","na":1,"nb":2,"a":[["ARO%3A3007554","Candida spp. CDR2"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/terbinafine.html","terbinafine"]]},{"id":"ARO:3007661","l":"Mycobacterium tuberculosis ddn mutation conferring resistance to nitroimidazole antibiotics","na":1,"nb":2,"a":[["ARO%3A3007661","Mycobacterium tuberculosis ddn mutation conferring resistance to nitroimidazole antibiotics"]],"b":[["antibacterial/delamanid.html","delamanid"],["antibacterial/pretomanid.html","pretomanid"]]},{"id":"ARO:3007662","l":"Rv1877","na":1,"nb":2,"a":[["ARO%3A3007662","Rv1877"]],"b":[["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3007692","l":"Mycobacterium tuberculosis Rv2535c with mutation conferring resistance to bedaquiline","na":1,"nb":2,"a":[["ARO%3A3007692","Mycobacterium tuberculosis Rv2535c with mutation conferring resistance to bedaquiline"]],"b":[["antimycobacterial/bedaquiline.html","bedaquiline"],["antimycobacterial/clofazimine.html","clofazimine"]]},{"id":"ARO:3007751","l":"Salmonella isangi gyrA conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3007751","Salmonella isangi gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3007752","l":"Salmonella isangi gyrB conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3007752","Salmonella isangi gyrB conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3007861","l":"DYB-1","na":1,"nb":2,"a":[["ARO%3A3007861","DYB-1"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3009148","l":"MexJK","na":2,"nb":1,"a":[["ARO%3A3009148","MexJK"],["ARO%3A3003710","MexL"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3009153","l":"MexHI-OpmD","na":1,"nb":2,"a":[["ARO%3A3009153","MexHI-OpmD"]],"b":[["antibacterial/norfloxacin.html","norfloxacin"],["biocide/acriflavine.html","acriflavine"]]},{"id":"CHEBI:10023","l":"voriconazole","na":2,"nb":1,"a":[["RHEA%3A61912","voriconazole(in) + ATP + H2O = voriconazole(out) + ADP + phosphate + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"CHEBI:100246","l":"norfloxacin","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"CHEBI:10101","l":"zalcitabine","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.41","The Concentrative Nucleoside Transporter (CNT) Family"]],"b":[["antiviral/zalcitabine.html","zalcitabine"]]},{"id":"CHEBI:10110","l":"zidovudine","na":2,"nb":1,"a":[["TCDB%3A2.A.41","The Concentrative Nucleoside Transporter (CNT) Family"],["TCDB%3A2.A.60","The Organo Anion Transporter (OAT) Family"]],"b":[["antiviral/zidovudine.html","zidovudine"]]},{"id":"CHEBI:132426","l":"chondrochloren A","na":2,"nb":1,"a":[["EC%3A4.1.1.129","1'-carboxy-chondrochloren decarboxylase"],["RHEA%3A81491","1'-carboxy-chondrochloren A + FAD + 2 H(+) = chondrochloren A + FADH2 + CO2"]],"b":[["unspecified/chondrochloren-a.html","chondrochloren A"]]},{"id":"CHEBI:132442","l":"chondrochloren B","na":2,"nb":1,"a":[["EC%3A4.1.1.129","1'-carboxy-chondrochloren decarboxylase"],["RHEA%3A81495","1'-carboxy-chondrochloren B + FAD + 2 H(+) = chondrochloren B + FADH2 + CO2"]],"b":[["unspecified/chondrochloren-b.html","chondrochloren B"]]},{"id":"CHEBI:132987","l":"alliin zwitterion","na":2,"nb":1,"a":[["EC%3A4.4.1.4","alliin lyase"],["RHEA%3A54688","alliin = allylsulfenate + 2-aminoprop-2-enoate"]],"b":[["unspecified/alliin-zwitterion.html","alliin zwitterion"]]},{"id":"CHEBI:133907","l":"hypothiocyanous acid","na":2,"nb":1,"a":[["RHEA%3A69416","thiocyanate + H2O2 + H(+) = hypothiocyanous acid + H2O"],["MCSA%3A944","Lactoperoxidase"]],"b":[["antibacterial/hypothiocyanous-acid.html","hypothiocyanous acid"]]},{"id":"CHEBI:137041","l":"quinine(1+)","na":2,"nb":1,"a":[["EC%3A1.14.14.55","quinine 3-monooxygenase"],["RHEA%3A20149","quinine + reduced [NADPH--hemoprotein reductase] + O2 = 3-hydroxyquinine + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["antiprotozoal/quinine-1.html","quinine(1+)"]]},{"id":"CHEBI:137419","l":"","na":2,"nb":1,"a":[["EC%3A2.1.1.49","amine N-methyltransferase"],["RHEA%3A53924","a secondary amine + S-adenosyl-L-methionine = a methylated secondary amine + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antifungal/solasodine-1.html","solasodine(1+)"]]},{"id":"CHEBI:138224","l":"(13R)-epi-8,13-epoxylabd-14-ene","na":2,"nb":1,"a":[["EC%3A4.2.3.186","ent-13-epi-manoyl oxide synthase"],["RHEA%3A18721","ent-8alpha-hydroxylabd-13-en-15-yl diphosphate = ent-13-epi-manoyl oxide + diphosphate"]],"b":[["antibacterial/13r-epi-8-13-epoxylabd-14-ene.html","(13R)-epi-8,13-epoxylabd-14-ene"]]},{"id":"CHEBI:138945","l":"maniladiol","na":2,"nb":1,"a":[["EC%3A1.14.14.63","beta-amyrin 16beta-monooxygenase"],["RHEA%3A55440","beta-amyrin + reduced [NADPH--hemoprotein reductase] + O2 = maniladiol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["antimycobacterial/maniladiol.html","maniladiol"]]},{"id":"CHEBI:138961","l":"sugiol","na":2,"nb":1,"a":[["EC%3A1.14.14.65","sugiol synthase"],["RHEA%3A55456","ferruginol + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = sugiol + 2 oxidized [NADPH--hemoprotein reductase] + 3 H2O + 2 H(+)"]],"b":[["antiviral/sugiol.html","sugiol"]]},{"id":"CHEBI:140183","l":"","na":2,"nb":1,"a":[["EC%3A1.1.1.348","(3R)-2'-hydroxyisoflavanone reductase"],["RHEA%3A56284","a (3R,4R)-4,2'-dihydroxyisoflavan + NADP(+) = a (3R)-2'-hydroxyisoflavanone + NADPH + H(+)"]],"b":[["antibacterial/vestitone.html","vestitone"]]},{"id":"CHEBI:141992","l":"","na":2,"nb":1,"a":[["EC%3A1.14.14.162","flavanone 2-hydroxylase"],["RHEA%3A57584","a flavanone + reduced [NADPH--hemoprotein reductase] + O2 = a 2-hydroxyflavanone + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["antiviral/2s-2-7-dihydroxy-5-methoxy-6-8-dimethylflavanone.html","(2S)-2,7-dihydroxy-5-methoxy-6,8-dimethylflavanone"]]},{"id":"CHEBI:142061","l":"trichosetin(1−)","na":2,"nb":1,"a":[["RHEA%3A67328","(5S)-3-[(2E,6R,8E,10E,12E)-2,6-dimethyltetradeca-2,8,10,12-tetraenoyl]-5-(hydroxymethyl)pyrrolidine-2,4-dione = trichosetin"],["RHEA%3A57648","trichosetin + S-adenosyl-L-methionine = equisetin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/trichosetin-1.html","trichosetin(1−)"]]},{"id":"CHEBI:143285","l":"L-propargylglycine zwitterion","na":2,"nb":1,"a":[["RHEA%3A59892","L-2-amino-4-chloropent-4-enoate = L-propargylglycine + chloride + H(+)"],["RHEA%3A59896","L-propargylglycine + L-glutamate + ATP = L-gamma-glutamyl-L-propargylglycine + ADP + phosphate + H(+)"]],"b":[["unspecified/l-propargylglycine-zwitterion.html","L-propargylglycine zwitterion"]]},{"id":"CHEBI:145111","l":"isopatulin","na":2,"nb":1,"a":[["RHEA%3A62224","neopatulin + NADPH + H(+) = (E)-ascladiol + NADP(+)"],["RHEA%3A62220","phyllostine = neopatulin"]],"b":[["antibacterial/isopatulin.html","isopatulin"]]},{"id":"CHEBI:145874","l":"deoxyherqueinone(1−)","na":2,"nb":1,"a":[["RHEA%3A62664","(2'R)-atrovenetin + S-adenosyl-L-methionine = deoxyherqueinone + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A62668","deoxyherqueinone + NADPH + O2 + H(+) = herqueinone + NADP(+) + H2O"]],"b":[["antibacterial/deoxyherqueinone-1.html","deoxyherqueinone(1−)"]]},{"id":"CHEBI:146153","l":"ilicicolin B","na":2,"nb":1,"a":[["RHEA%3A63084","ilicicolin B + FADH2 + chloride + O2 = ilicicolin A + FAD + 2 H2O + H(+)"],["RHEA%3A63080","ilicicolinate B + AH2 + ATP = ilicicolin B + A + AMP + diphosphate"]],"b":[["unspecified/ilicicolin-b.html","ilicicolin B"]]},{"id":"CHEBI:15366","l":"acetic acid","na":2,"nb":1,"a":[["MCSA%3A431","acetylxylan esterase"],["MCSA%3A996","Peptidoglycan-N-acetylglucosamine deacetylase Bc1960"]],"b":[["biocide/acetic-acid.html","acetic acid"]]},{"id":"CHEBI:15390","l":"(+)-bisdechlorogeodin","na":2,"nb":1,"a":[["EC%3A1.21.3.4","sulochrin oxidase [(+)-bisdechlorogeodin-forming]"],["RHEA%3A24092","2 sulochrin + O2 + 2 H(+) = 2 (2S)-bisdechlorogeodin + 2 H2O"]],"b":[["unspecified/bisdechlorogeodin.html","(+)-bisdechlorogeodin"]]},{"id":"CHEBI:15391","l":"(−)-bisdechlorogeodin","na":2,"nb":1,"a":[["EC%3A1.21.3.5","sulochrin oxidase [(-)-bisdechlorogeodin-forming]"],["RHEA%3A22616","2 sulochrin + O2 + 2 H(+) = 2 (2R)-bisdechlorogeodin + 2 H2O"]],"b":[["unspecified/bisdechlorogeodin-15391.html","(−)-bisdechlorogeodin"]]},{"id":"CHEBI:15660","l":"(Z)-2-(2-furyl)-3-(5-nitro-2-furyl)acrylamide","na":2,"nb":1,"a":[["EC%3A5.2.1.6","furylfuramide isomerase"],["RHEA%3A21848","(E)-2-(2-furyl)-3-(5-nitro-2-furyl)acrylamide = (Z)-2-(2-furyl)-3-(5-nitro-2-furyl)acrylamide"]],"b":[["unspecified/z-2-2-furyl-3-5-nitro-2-furyl-acrylamide.html","(Z)-2-(2-furyl)-3-(5-nitro-2-furyl)acrylamide"]]},{"id":"CHEBI:15712","l":"2,3-dihydrobiochanin A","na":2,"nb":1,"a":[["EC%3A1.3.1.46","biochanin-A reductase"],["RHEA%3A12817","2,3-dihydrobiochanin A + NADP(+) = biochanin A + NADPH + 2 H(+)"]],"b":[["antifungal/2-3-dihydrobiochanin-a.html","2,3-dihydrobiochanin A"]]},{"id":"CHEBI:16196","l":"oleic acid","na":2,"nb":1,"a":[["TCDB%3A9.A.76","The Omega3 Fatty Acid Desaturase 3/Putative Transporter (FAD3) Family"],["proteintraitsmech%3ABIOLIP_OLA","OLA-binding site"]],"b":[["antibacterial/oleic-acid.html","oleic acid"]]},{"id":"CHEBI:16605","l":"allyl alcohol","na":2,"nb":1,"a":[["EC%3A1.1.1.54","allyl-alcohol dehydrogenase"],["RHEA%3A12168","allyl alcohol + NADP(+) = acrolein + NADPH + H(+)"]],"b":[["antibacterial/allyl-alcohol.html","allyl alcohol"]]},{"id":"CHEBI:16648","l":"","na":1,"nb":2,"a":[["MCSA%3A159","aryldialkylphosphatase"]],"b":[["antibacterial/dichlorvos.html","dichlorvos"],["antibacterial/naled.html","naled"]]},{"id":"CHEBI:16705","l":"6-aminopenicillanic acid","na":2,"nb":1,"a":[["MCSA%3A241","penicillin amidase (peptidase C59 family)"],["proteintraitsmech%3ABIOLIP_X1E","X1E-binding site"]],"b":[["unspecified/6-aminopenicillanic-acid.html","6-aminopenicillanic acid"]]},{"id":"CHEBI:16774","l":"(2-cis,6-trans)-farnesol","na":2,"nb":1,"a":[["EC%3A5.2.1.9","farnesol 2-isomerase"],["RHEA%3A13401","(2E,6E)-farnesol = (2Z,6E)-farnesol"]],"b":[["unspecified/2-cis-6-trans-farnesol.html","(2-cis,6-trans)-farnesol"]]},{"id":"CHEBI:167830","l":"isorhapontigenin","na":2,"nb":1,"a":[["EC%3A2.1.1.399","resveratrol 4'-O-methyltransferase"],["RHEA%3A82215","isorhapontigenin + S-adenosyl-L-methionine = 4'-O-methylisorhapontigenin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antiviral/isorhapontigenin.html","isorhapontigenin"]]},{"id":"CHEBI:17098","l":"veratraldehyde","na":2,"nb":1,"a":[["EC%3A1.11.1.14","lignin peroxidase"],["RHEA%3A48004","1-(3,4-dimethoxyphenyl)-2-(2-methoxyphenoxy)propane-1,3-diol + H2O2 = 3,4-dimethoxybenzaldehyde + guaiacol + glycolaldehyde + H2O"]],"b":[["antifungal/veratraldehyde.html","veratraldehyde"]]},{"id":"CHEBI:174376","l":"rhapontigenin","na":2,"nb":1,"a":[["EC%3A2.1.1.399","resveratrol 4'-O-methyltransferase"],["RHEA%3A82191","piceatannol + S-adenosyl-L-methionine = rhapontigenin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/rhapontigenin.html","rhapontigenin"]]},{"id":"CHEBI:17630","l":"kanamycin A","na":2,"nb":1,"a":[["MCSA%3A647","kanamycin nucleotidyltransferase"],["proteintraitsmech%3ABIOLIP_KAN","KAN-binding site"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"CHEBI:17695","l":"casbene","na":2,"nb":1,"a":[["EC%3A4.2.3.8","casbene synthase"],["RHEA%3A14901","(2E,6E,10E)-geranylgeranyl diphosphate = casbene + diphosphate"]],"b":[["antifungal/casbene.html","casbene"]]},{"id":"CHEBI:17909","l":"polysulfur","na":2,"nb":1,"a":[["EC%3A1.8.5.4","bacterial sulfide:quinone reductase"],["RHEA%3A30239","n a quinone + n hydrogen sulfide + n H(+) = polysulfur(n-2) + n a quinol"]],"b":[["antifungal/polysulfur.html","polysulfur"]]},{"id":"CHEBI:17939","l":"puromycin","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_PUY","PUY-binding site"]],"b":[["antibacterial/puromycin.html","puromycin"]]},{"id":"CHEBI:19129","l":"","na":1,"nb":2,"a":[["RHEA%3A86087","a steroid + reduced [NADPH--hemoprotein reductase] + O2 = a 11alpha-hydroxy steroid + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"],["antifungal/fr171456.html","FR171456"]]},{"id":"CHEBI:201384","l":"sartorypyrone D","na":2,"nb":1,"a":[["RHEA%3A80875","(S)-(2E,6E,10E)-epoxygeranylgeranyl-triacetate lactone = sartorypyrone D"],["RHEA%3A80883","sartorypyrone D + acetyl-CoA = sartorypyrone A + CoA"]],"b":[["antibacterial/sartorypyrone-d.html","sartorypyrone D"]]},{"id":"CHEBI:2469","l":"adefovir","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antiviral/adefovir.html","adefovir"]]},{"id":"CHEBI:26004","l":"","na":1,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antibacterial/eugenol.html","eugenol"],["antifungal/coniferyl-aldehyde.html","coniferyl aldehyde"]]},{"id":"CHEBI:26401","l":"purines","na":1,"nb":2,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antiviral/mercaptopurine.html","mercaptopurine"],["antiviral/valganciclovir.html","valganciclovir"]]},{"id":"CHEBI:26666","l":"","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.73","The Short Chain Fatty Acid Uptake (AtoE) Family"]],"b":[["antifungal/propionic-acid.html","propionic acid"]]},{"id":"CHEBI:26789","l":"","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_OI9","OI9-binding site"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"],["unspecified/streptothricin-d.html","streptothricin D"]]},{"id":"CHEBI:27446","l":"phenoxymethylpenicillin","na":2,"nb":1,"a":[["MCSA%3A241","penicillin amidase (peptidase C59 family)"],["proteintraitsmech%3ABIOLIP_PNV","PNV-binding site"]],"b":[["antibacterial/phenoxymethylpenicillin.html","phenoxymethylpenicillin"]]},{"id":"CHEBI:27641","l":"cycloheximide","na":2,"nb":1,"a":[["RHEA%3A61936","cycloheximide(in) + ATP + H2O = cycloheximide(out) + ADP + phosphate + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/cycloheximide.html","cycloheximide"]]},{"id":"CHEBI:27902","l":"tetracycline","na":2,"nb":1,"a":[["ARO%3A3000186","tet(M)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"CHEBI:28","l":"(R)-linalool","na":2,"nb":1,"a":[["EC%3A4.2.3.26","R-linalool synthase"],["RHEA%3A15809","(2E)-geranyl diphosphate + H2O = (R)-linalool + diphosphate"]],"b":[["unspecified/r-linalool.html","(R)-linalool"]]},{"id":"CHEBI:28283","l":"capsidiol","na":2,"nb":1,"a":[["EC%3A1.14.14.149","5-epiaristolochene 1,3-dihydroxylase"],["RHEA%3A28226","(+)-5-epi-aristolochene + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = capsidiol + 2 oxidized [NADPH--hemoprotein reductase] + 2 H2O + 2 H(+)"]],"b":[["antifungal/capsidiol.html","capsidiol"]]},{"id":"CHEBI:29007","l":"ceftriaxone","na":2,"nb":1,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"]],"b":[["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"CHEBI:2955","l":"azithromycin","na":2,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["proteintraitsmech%3ABIOLIP_ZIT","ZIT-binding site"]],"b":[["antibacterial/azithromycin.html","azithromycin"]]},{"id":"CHEBI:29673","l":"rifamycin SV","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]],"b":[["antimycobacterial/rifamycin-sv.html","rifamycin SV"]]},{"id":"CHEBI:29702","l":"undecylprodigiosin","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.B.102","The YedE/YeeE (YedE/YeeE) Family"]],"b":[["antibacterial/undecylprodigiosin.html","undecylprodigiosin"]]},{"id":"CHEBI:30746","l":"benzoic acid","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_BEZ","BEZ-binding site"]],"b":[["biocide/benzoic-acid.html","benzoic acid"],["biocide/carboxy-ptio.html","carboxy-PTIO"]]},{"id":"CHEBI:30751","l":"formic acid","na":2,"nb":1,"a":[["MCSA%3A38","GTP cyclohydrolase I"],["proteintraitsmech%3ABIOLIP_FMT","FMT-binding site"]],"b":[["antibacterial/formic-acid.html","formic acid"]]},{"id":"CHEBI:31000","l":"docosan-1-ol","na":2,"nb":1,"a":[["RHEA%3A81783","docosan-1-ol + (9Z)-octadecenoyl-CoA = 1-O-docosyl (9Z)-octadecenoate + CoA"],["RHEA%3A81731","docosanoyl-CoA + 2 NADPH + 2 H(+) = docosan-1-ol + 2 NADP(+) + CoA"]],"b":[["antiviral/docosan-1-ol.html","docosan-1-ol"]]},{"id":"CHEBI:31466","l":"dequalinium chloride","na":2,"nb":1,"a":[["TCDB%3A2.A.117","The Chlorhexadine Exporter (CHX) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antifungal/dequalinium-chloride.html","dequalinium chloride"]]},{"id":"CHEBI:32023","l":"plaunotol","na":2,"nb":1,"a":[["EC%3A1.14.14.146","geranylgeraniol 18-hydroxylase"],["RHEA%3A26233","(2E,6E,10E)-geranylgeraniol + reduced [NADPH--hemoprotein reductase] + O2 = plaunotol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["antibacterial/plaunotol.html","plaunotol"]]},{"id":"CHEBI:32199","l":"tetracenomycin B2","na":2,"nb":1,"a":[["EC%3A1.14.13.200","tetracenomycin A2 monooxygenase-diooxygenase"],["RHEA%3A76467","tetracenomycin B2 + 2 NADPH + 2 O2 + 2 H(+) = 8-demethyltetracenomycin C + 2 NADP(+) + H2O"]],"b":[["unspecified/tetracenomycin-b2.html","tetracenomycin B2"]]},{"id":"CHEBI:32215","l":"thiamphenicol","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_TH8","TH8-binding site"]],"b":[["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"CHEBI:3393","l":"carbenicillin","na":2,"nb":1,"a":[["TCDB%3A1.B.25","The Outer Membrane Porin (Opr) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/carbenicillin.html","carbenicillin"]]},{"id":"CHEBI:3440","l":"carvacrol","na":2,"nb":1,"a":[["RHEA%3A67412","alpha-terpinene + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = carvacrol + 2 oxidized [NADPH--hemoprotein reductase] + 3 H2O + 2 H(+)"],["RHEA%3A67404","gamma-terpinene + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = carvacrol + 2 oxidized [NADPH--hemoprotein reductase] + 3 H2O + 2 H(+)"]],"b":[["antifungal/carvacrol.html","carvacrol"]]},{"id":"CHEBI:35267","l":"","na":2,"nb":1,"a":[["EC%3A7.6.2.9","ABC-type quaternary amine transporter"],["RHEA%3A11036","a quaternary ammonium(out) + ATP + H2O = a quaternary ammonium(in) + ADP + phosphate + H(+)"]],"b":[["antifungal/rezafungin.html","rezafungin"]]},{"id":"CHEBI:35274","l":"","na":2,"nb":1,"a":[["TCDB%3A1.A.11","The Ammonium Transporter Channel (Amt) Family"],["TCDB%3A1.B.6","The OmpA-OmpF Porin (OOP) Family"]],"b":[["antifungal/validamycin-a-1.html","validamycin A(1+)"]]},{"id":"CHEBI:35986","l":"nonan-1-ol","na":2,"nb":1,"a":[["RHEA%3A44112","nonan-1-ol + hexadecanoyl-CoA = nonyl hexadecanoate + CoA"],["RHEA%3A58380","nonan-1-ol + NADP(+) = nonanal + NADPH + H(+)"]],"b":[["antifungal/nonan-1-ol.html","nonan-1-ol"]]},{"id":"CHEBI:3614","l":"chlorhexidine","na":2,"nb":1,"a":[["TCDB%3A2.A.117","The Chlorhexadine Exporter (CHX) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/chlorhexidine.html","chlorhexidine"]]},{"id":"CHEBI:368","l":"(S)-(−)-citronellal","na":2,"nb":1,"a":[["RHEA%3A60740","(S)-(-)-citronellal + NADP(+) + H2O = (S)-(-)-citronellate + NADPH + 2 H(+)"],["RHEA%3A60676","(S)-(-)-citronellol + NAD(+) = (S)-(-)-citronellal + NADH + H(+)"]],"b":[["antifungal/s-citronellal.html","(S)-(−)-citronellal"]]},{"id":"CHEBI:3732","l":"clarithromycin","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"CHEBI:37424","l":"","na":2,"nb":1,"a":[["EC%3A2.4.1.173","sterol 3beta-glucosyltransferase"],["RHEA%3A22724","a sterol + UDP-alpha-D-glucose = a sterol 3-beta-D-glucoside + UDP + H(+)"]],"b":[["antifungal/solasodine-3-%CE%B2-d-glucoside.html","solasodine 3-β-D-glucoside"]]},{"id":"CHEBI:3764","l":"clotrimazole","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antifungal/clotrimazole.html","clotrimazole"]]},{"id":"CHEBI:42452","l":"formycin A","na":2,"nb":1,"a":[["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"],["proteintraitsmech%3ABIOLIP_FMC","FMC-binding site"]],"b":[["unspecified/formycin-a.html","formycin A"]]},{"id":"CHEBI:42530","l":"peracetic acid","na":2,"nb":1,"a":[["RHEA%3A68392","peracetic acid + H2O = acetate + H2O2 + H(+)"],["proteintraitsmech%3ABIOLIP_F50","F50-binding site"]],"b":[["biocide/peracetic-acid.html","peracetic acid"]]},{"id":"CHEBI:44107","l":"malachite green cation","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_MGR","MGR-binding site"]],"b":[["antibacterial/malachite-green-cation.html","malachite green cation"]]},{"id":"CHEBI:443725","l":"fosmidomycin","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_FOM","FOM-binding site"]],"b":[["antibacterial/fosmidomycin.html","fosmidomycin"]]},{"id":"CHEBI:45081","l":"pentamidine","na":2,"nb":1,"a":[["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"],["TCDB%3A1.A.8","The Major Intrinsic Protein (MIP) Family"]],"b":[["antifungal/pentamidine.html","pentamidine"]]},{"id":"CHEBI:45285","l":"pyrazinecarboxamide","na":1,"nb":2,"a":[["RHEA%3A35063","pyrazinamide + H2O = pyrazine-2-carboxylate + NH4(+)"]],"b":[["antimycobacterial/n-butyl-5-4-hydroxyphenyl-6-oxo-1-6-dihydropyrazine-2-carboxamide.html","N-butyl-5-(4-hydroxyphenyl)-6-oxo-1,6-dihydropyrazine-2-carboxamide"],["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"CHEBI:45373","l":"sulfanilamide","na":2,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["proteintraitsmech%3ABIOLIP_SAN","SAN-binding site"]],"b":[["antibacterial/sulfanilamide.html","sulfanilamide"]]},{"id":"CHEBI:46202","l":"undecanal","na":2,"nb":1,"a":[["RHEA%3A68484","(2R)-2-hydroperoxydodecanoate + H(+) = undecanal + CO2 + H2O"],["RHEA%3A58408","undecan-1-ol + NADP(+) = undecanal + NADPH + H(+)"]],"b":[["antimycobacterial/undecanal.html","undecanal"]]},{"id":"CHEBI:48080","l":"brefeldin A","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["MCSA%3A453","Brefeldin A esterase"]],"b":[["antibacterial/brefeldin-a.html","brefeldin A"]]},{"id":"CHEBI:4877","l":"ethambutol","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_95E","95E-binding site"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"CHEBI:48981","l":"quinolin-8-ol","na":2,"nb":1,"a":[["RHEA%3A25924","quinolin-8-ol + A + H2O = 8-hydroxyquinolin-2(1H)-one + AH2"],["RHEA%3A72659","quinolin-8-ol + NADPH + O2 = 8-hydroxyquinoline N-oxide + NADP(+) + H2O"]],"b":[["antibacterial/quinolin-8-ol.html","quinolin-8-ol"]]},{"id":"CHEBI:50209","l":"sophoraflavanone G","na":2,"nb":1,"a":[["EC%3A2.5.1.71","leachianone-G 2'-dimethylallyltransferase"],["RHEA%3A10852","leachianone G + dimethylallyl diphosphate = sophoraflavanone G + diphosphate"]],"b":[["antiprotozoal/sophoraflavanone-g.html","sophoraflavanone G"]]},{"id":"CHEBI:50471","l":"","na":2,"nb":1,"a":[["EC%3A2.3.1.5","arylamine N-acetyltransferase"],["RHEA%3A16613","an arylamine + acetyl-CoA = an N-acetylarylamine + CoA"]],"b":[["antifungal/ferrostatin-1.html","ferrostatin-1"]]},{"id":"CHEBI:52086","l":"glyceollin III","na":2,"nb":1,"a":[["EC%3A1.14.14.135","glyceollin synthase"],["RHEA%3A26051","(6aS,11aS)-2-dimethylallyl-3,6a,9-trihydroxypterocarpan + reduced [NADPH--hemoprotein reductase] + O2 = glyceollin III + oxidized [NADPH--hemoprotein reductase] + 2 H2O + H(+)"]],"b":[["antifungal/glyceollin-iii.html","glyceollin III"]]},{"id":"CHEBI:52221","l":"","na":1,"nb":2,"a":[["RHEA%3A69264","a (Z)-N-(sulfonatooxy)alkanimidothioate = an isothiocyanate + sulfate"]],"b":[["antibacterial/benzyl-isothiocyanate.html","benzyl isothiocyanate"],["unspecified/allyl-isothiocyanate.html","allyl isothiocyanate"]]},{"id":"CHEBI:55517","l":"","na":1,"nb":2,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/trichothecin.html","trichothecin"],["unspecified/verrucarin-a.html","verrucarin A"]]},{"id":"CHEBI:57289","l":"blasticidin S(1+)","na":2,"nb":1,"a":[["EC%3A3.5.4.23","blasticidin-S deaminase"],["RHEA%3A10148","blasticidin S + H2O + H(+) = deaminohydroxyblasticidin S + NH4(+)"]],"b":[["antifungal/blasticidin-s-1.html","blasticidin S(1+)"]]},{"id":"CHEBI:61699","l":"(−)-α-gurjunene","na":2,"nb":1,"a":[["EC%3A4.2.3.72","alpha-gurjunene synthase"],["RHEA%3A29507","(2E,6E)-farnesyl diphosphate = (-)-alpha-gurjunene + diphosphate"]],"b":[["antibacterial/%CE%B1-gurjunene.html","(−)-α-gurjunene"]]},{"id":"CHEBI:62247","l":"(1R,2S)-epoxypropylphosphonate(1−)","na":2,"nb":1,"a":[["EC%3A1.11.1.23","(S)-2-hydroxypropylphosphonic acid epoxidase"],["RHEA%3A10808","(S)-2-hydroxypropylphosphonate + H2O2 = (1R,2S)-epoxypropylphosphonate + 2 H2O"]],"b":[["unspecified/1r-2s-epoxypropylphosphonate-1.html","(1R,2S)-epoxypropylphosphonate(1−)"]]},{"id":"CHEBI:64090","l":"tert-butyl hydroperoxide","na":2,"nb":1,"a":[["RHEA%3A69412","tert-butyl hydroperoxide + 2 glutathione = tert-butanol + glutathione disulfide + H2O"],["RHEA%3A63840","tert-butyl hydroperoxide + [thioredoxin]-dithiol = tert-butanol + [thioredoxin]-disulfide + H2O"]],"b":[["antibacterial/tert-butyl-hydroperoxide.html","tert-butyl hydroperoxide"]]},{"id":"CHEBI:67153","l":"(+)-larreatricin","na":2,"nb":1,"a":[["EC%3A1.14.99.47","(+)-larreatricin hydroxylase"],["RHEA%3A34259","(+)-larreatricin + AH2 + O2 = (+)-3'-hydroxylarreatricin + A + H2O"]],"b":[["antiviral/larreatricin.html","(+)-larreatricin"]]},{"id":"CHEBI:7518","l":"cis-trans-nepetalactone","na":2,"nb":1,"a":[["EC%3A1.1.1.419","nepetalactol dehydrogenase"],["RHEA%3A61428","cis-trans-nepetalactol + NAD(+) = cis-trans-nepetalactone + NADH + H(+)"]],"b":[["antibacterial/cis-trans-nepetalactone.html","cis-trans-nepetalactone"]]},{"id":"CHEBI:75561","l":"1-linoleoyl-sn-glycerol","na":2,"nb":1,"a":[["RHEA%3A41115","1-(9Z,12Z)-octadecadienoyl-sn-glycero-3-phosphocholine + H2O = 1-(9Z,12Z-octadecadienoyl)-sn-glycerol + phosphocholine + H(+)"],["RHEA%3A40603","1-(9Z,12Z-octadecadienoyl)-sn-glycerol + H2O = (9Z,12Z)-octadecadienoate + glycerol + H(+)"]],"b":[["antiviral/1-linoleoyl-sn-glycerol.html","1-linoleoyl-sn-glycerol"]]},{"id":"CHEBI:75616","l":"","na":2,"nb":1,"a":[["EC%3A2.3.1.60","gentamicin 3-N-acetyltransferase"],["RHEA%3A14441","gentamicin C + acetyl-CoA = N(3)-acetylgentamycin C + CoA + H(+)"]],"b":[["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"CHEBI:77152","l":"ginsenoside Rb2","na":2,"nb":1,"a":[["EC%3A3.2.1.191","ginsenosidase type III"],["RHEA%3A40739","(20S)-ginsenoside Rb2 + 2 H2O = (20S)-ginsenoside C-Y + 2 D-glucose"]],"b":[["antiviral/ginsenoside-rb2.html","ginsenoside Rb2"]]},{"id":"CHEBI:7731","l":"","na":2,"nb":1,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"CHEBI:77772","l":"ilicicolin H","na":2,"nb":1,"a":[["RHEA%3A64568","3-[(2E,4E,8S,10E,12Z)-4,8-dimethyltetradeca-2,4,10,12-tetraenoyl]-4-hydroxy-5-(4-hydroxyphenyl)-1,2-dihydropyridin-2-one = ilicicolin H"],["RHEA%3A64564","8-epi-ilicicolin H = ilicicolin H"]],"b":[["unspecified/ilicicolin-h.html","ilicicolin H"]]},{"id":"CHEBI:77885","l":"nocardicin E(2−)","na":2,"nb":1,"a":[["EC%3A2.5.1.38","isonocardicin synthase"],["RHEA%3A19845","nocardicin E + S-adenosyl-L-methionine = isonocardicin A + S-methyl-5'-thioadenosine + H(+)"]],"b":[["unspecified/nocardicin-e-2.html","nocardicin E(2−)"]]},{"id":"CHEBI:77985","l":"aclacinomycin Y zwitterion","na":2,"nb":1,"a":[["EC%3A1.3.3.14","aclacinomycin-A oxidase"],["RHEA%3A37791","aclacinomycin A + O2 = aclacinomycin Y + H2O2"]],"b":[["unspecified/aclacinomycin-y-zwitterion.html","aclacinomycin Y zwitterion"]]},{"id":"CHEBI:7809","l":"oxacillin","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/oxacillin.html","oxacillin"]]},{"id":"CHEBI:78327","l":"pseudobaptigenin(1−)","na":2,"nb":1,"a":[["EC%3A1.14.19.63","pseudobaptigenin synthase"],["RHEA%3A28238","calycosin + reduced [NADPH--hemoprotein reductase] + O2 = pseudobaptigenin + oxidized [NADPH--hemoprotein reductase] + 2 H2O + H(+)"]],"b":[["antiprotozoal/pseudobaptigenin-1.html","pseudobaptigenin(1−)"]]},{"id":"CHEBI:78884","l":"4-terpineol","na":2,"nb":1,"a":[["RHEA%3A60028","(2E)-geranyl diphosphate + H2O = 4-terpineol + diphosphate"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/4-terpineol.html","4-terpineol"]]},{"id":"CHEBI:80024","l":"aureothin","na":2,"nb":1,"a":[["EC%3A1.14.15.37","luteothin monooxygenase"],["RHEA%3A58824","luteothin + 4 reduced [2Fe-2S]-[ferredoxin] + 2 O2 + 4 H(+) = aureothin + 4 oxidized [2Fe-2S]-[ferredoxin] + 3 H2O"]],"b":[["antibacterial/aureothin.html","aureothin"]]},{"id":"CHEBI:81485","l":"osthenol","na":2,"nb":1,"a":[["EC%3A2.5.1.139","umbelliferone 6-dimethylallyltransferase"],["RHEA%3A51872","umbelliferone + dimethylallyl diphosphate = osthenol + diphosphate"]],"b":[["antifungal/osthenol.html","osthenol"]]},{"id":"CHEBI:82751","l":"cholesteryl arachidonate","na":2,"nb":1,"a":[["RHEA%3A53448","1-hexadecanoyl-2-(5Z,8Z,11Z,14Z-eicosatetraenoyl)-sn-glycero-3-phosphocholine + cholesterol = cholesteryl (5Z,8Z,11Z,14Z)-eicosatetraenoate + 1-hexadecanoyl-sn-glycero-3-phosphocholine"],["RHEA%3A42816","(5Z,8Z,11Z,14Z)-eicosatetraenoyl-CoA + cholesterol = cholesteryl (5Z,8Z,11Z,14Z)-eicosatetraenoate + CoA"]],"b":[["antibacterial/cholesteryl-arachidonate.html","cholesteryl arachidonate"]]},{"id":"CHEBI:8309","l":"polymyxin B1","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antibacterial/polymyxin-b1.html","polymyxin B1"]]},{"id":"CHEBI:8452","l":"3,6-diaminoacridine","na":2,"nb":1,"a":[["TCDB%3A2.A.117","The Chlorhexadine Exporter (CHX) Family"],["proteintraitsmech%3ABIOLIP_PRL","PRL-binding site"]],"b":[["antibacterial/3-6-diaminoacridine.html","3,6-diaminoacridine"]]},{"id":"CHEBI:86012","l":"oxetanocin A","na":2,"nb":1,"a":[["EC%3A3.1.3.112","4'-phosphooxetanocin A phosphatase"],["RHEA%3A81367","4'-phosphooxetanocin A + H2O = oxetanocin A + phosphate"]],"b":[["antibacterial/oxetanocin-a.html","oxetanocin A"]]},{"id":"CHEBI:87123","l":"tulipalin B","na":2,"nb":1,"a":[["EC%3A4.2.99.23","tuliposide B-converting enzyme"],["RHEA%3A38655","6-tuliposide B = tulipalin B + D-glucose"]],"b":[["antibacterial/tulipalin-b.html","tulipalin B"]]},{"id":"CHEBI:87124","l":"6-tuliposide B","na":2,"nb":1,"a":[["EC%3A4.2.99.23","tuliposide B-converting enzyme"],["RHEA%3A38655","6-tuliposide B = tulipalin B + D-glucose"]],"b":[["antibacterial/6-tuliposide-b.html","6-tuliposide B"]]},{"id":"CHEBI:90868","l":"validamycin B","na":2,"nb":1,"a":[["EC%3A1.14.11.52","validamycin A dioxygenase"],["RHEA%3A48752","validamycin A + 2-oxoglutarate + O2 = validamycin B + succinate + CO2 + H(+)"]],"b":[["antifungal/validamycin-b.html","validamycin B"]]},{"id":"CHEBI:9332","l":"sulfamethoxazole","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"CHEBI:9997","l":"pristinamycin IIA","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_VIR","VIR-binding site"]],"b":[["antibacterial/pristinamycin-iia.html","pristinamycin IIA"]]},{"id":"NCBITaxon:1159556","l":"Ustilaginoidea virens","na":2,"nb":1,"a":[["Pfam%3APF06966","Protein of unknown function (DUF1295)"],["TED%3AAF-A0A1B5L5W2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1B5L5W2-F1-model_v4_TED03"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"]]},{"id":"NCBITaxon:1654360","l":"Photobacterium galatheae","na":2,"nb":1,"a":[["TED%3AAF-A0A066RSN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A066RSN6-F1-model_v4_TED01"],["TED%3AAF-A0A066RLQ8-F1-model_v4_TED01","TED novel fold AF-A0A066RLQ8-F1-model_v4_TED01"]],"b":[["antibacterial/holomycin.html","holomycin"]]},{"id":"NCBITaxon:1907","l":"Streptomyces glaucescens","na":2,"nb":1,"a":[["Pfam%3APF04673","Polyketide synthesis cyclase"],["Pfam%3APF04655","Aminoglycoside/hydroxyurea antibiotic resistance kinase"]],"b":[["antibacterial/tetracenomycin-c.html","tetracenomycin C"]]},{"id":"NCBITaxon:5074","l":"Penicillium brevicompactum","na":2,"nb":1,"a":[["Pfam%3APF09227","Bubble protein"],["Pfam%3APF18558","Methyltransferase, Helix-turn-helix domain"]],"b":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]]},{"id":"NCBITaxon:52","l":"Chondromyces crocatus","na":2,"nb":1,"a":[["TED%3AAF-A0A0K1ER44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0K1ER44-F1-model_v4_TED01"],["TED%3AAF-A0A0K1E854-F1-model_v4_TED01","TED novel fold AF-A0A0K1E854-F1-model_v4_TED01"]],"b":[["unspecified/chondrochloren-a.html","chondrochloren A"]]},{"id":"NCBITaxon:536","l":"Chromobacterium violaceum","na":2,"nb":1,"a":[["TED%3AAF-A0A381EUD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A381EUD6-F1-model_v4_TED01"],["TED%3AAF-A0A447THJ9-F1-model_v4_TED01","TED novel fold AF-A0A447THJ9-F1-model_v4_TED01"]],"b":[["unspecified/romidepsin.html","romidepsin"]]},{"id":"NCBITaxon:5478","l":"Candida glabrata","na":2,"nb":1,"a":[["TED%3AAF-A0A0W0D8W7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0W0D8W7-F1-model_v4_TED02"],["TED%3AAF-A0A0W0D4K9-F1-model_v4_TED02","TED novel fold AF-A0A0W0D4K9-F1-model_v4_TED02"]],"b":[["antifungal/fluconazole.html","fluconazole"]]},{"id":"NCBITaxon:5661","l":"Leishmania donovani","na":2,"nb":1,"a":[["Pfam%3APF03037","Kinetoplastid membrane protein 11"],["Pfam%3APF03130","PBS lyase HEAT-like repeat"]],"b":[["antiprotozoal/dihydrobetulinic-acid.html","dihydrobetulinic acid"]]},{"id":"NCBITaxon:58346","l":"Streptomyces platensis","na":1,"nb":2,"a":[["PROSITE%3APS00999","Streptomyces subtilisin-type inhibitors signature"]],"b":[["antibacterial/platencin.html","platencin"],["antibacterial/platensimycin.html","platensimycin"]]},{"id":"UniProt:P02557","l":"","na":2,"nb":1,"a":[["ComplexPortal%3ACPX-1424","Tubulin alpha-beta heterodimeric complex, TUB1 variant"],["ComplexPortal%3ACPX-1425","Tubulin alpha-beta heterodimeric complex, TUB3 variant"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"UniProt:P0C6U8","l":"","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_TTT","TTT-binding site"]],"b":[["antibacterial/hexachlorophene.html","hexachlorophene"],["antifungal/bithionol.html","bithionol"]]},{"id":"ARO:0000042","l":"","na":1,"nb":1,"a":[["ARO%3A3000026","mepA"]],"b":[["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:0000062","l":"ceftriaxone","na":1,"nb":1,"a":[["ARO%3A3004835","Neisseria gonorrhoeae pilQ gene conferring resistance to beta-lactam"]],"b":[["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3000149","l":"FosA","na":1,"nb":1,"a":[["ARO%3A3000149","FosA"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3000166","l":"tet(B)","na":1,"nb":1,"a":[["ARO%3A3000166","tet(B)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000167","l":"tet(C)","na":1,"nb":1,"a":[["ARO%3A3000167","tet(C)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000168","l":"tet(D)","na":1,"nb":1,"a":[["ARO%3A3000168","tet(D)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000169","l":"rifampin","na":1,"nb":1,"a":[["ARO%3A3004960","Mycobacterium tuberculosis ponA1 mutations conferring resistance to rifabutin"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3000172","l":"FosB","na":1,"nb":1,"a":[["ARO%3A3000172","FosB"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3000173","l":"tet(E)","na":1,"nb":1,"a":[["ARO%3A3000173","tet(E)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000174","l":"tet(G)","na":1,"nb":1,"a":[["ARO%3A3000174","tet(G)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000175","l":"tet(H)","na":1,"nb":1,"a":[["ARO%3A3000175","tet(H)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000177","l":"tet(J)","na":1,"nb":1,"a":[["ARO%3A3000177","tet(J)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000178","l":"tet(K)","na":1,"nb":1,"a":[["ARO%3A3000178","tet(K)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000179","l":"tet(L)","na":1,"nb":1,"a":[["ARO%3A3000179","tet(L)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000180","l":"tetA(P)","na":1,"nb":1,"a":[["ARO%3A3000180","tetA(P)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000181","l":"tet(V)","na":1,"nb":1,"a":[["ARO%3A3000181","tet(V)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000182","l":"tet(Y)","na":1,"nb":1,"a":[["ARO%3A3000182","tet(Y)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000183","l":"tet(Z)","na":1,"nb":1,"a":[["ARO%3A3000183","tet(Z)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000198","l":"FosX","na":1,"nb":1,"a":[["ARO%3A3000198","FosX"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3000216","l":"acrB","na":1,"nb":1,"a":[["ARO%3A3000216","acrB"]],"b":[["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3000238","l":"glycopeptide resistance gene cluster VanB","na":1,"nb":1,"a":[["ARO%3A3000238","glycopeptide resistance gene cluster VanB"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000246","l":"glycopeptide resistance gene cluster VanC","na":1,"nb":1,"a":[["ARO%3A3000246","glycopeptide resistance gene cluster VanC"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000255","l":"glycopeptide resistance gene cluster VanF","na":1,"nb":1,"a":[["ARO%3A3000255","glycopeptide resistance gene cluster VanF"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000257","l":"glycopeptide resistance gene cluster VanG","na":1,"nb":1,"a":[["ARO%3A3000257","glycopeptide resistance gene cluster VanG"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000259","l":"glycopeptide resistance gene cluster VanE","na":1,"nb":1,"a":[["ARO%3A3000259","glycopeptide resistance gene cluster VanE"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000260","l":"glycopeptide resistance gene cluster VanL","na":1,"nb":1,"a":[["ARO%3A3000260","glycopeptide resistance gene cluster VanL"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000309","l":"emrD","na":1,"nb":1,"a":[["ARO%3A3000309","emrD"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3000343","l":"tap","na":1,"nb":1,"a":[["ARO%3A3000343","tap"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000380","l":"FosC","na":1,"nb":1,"a":[["ARO%3A3000380","FosC"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3000423","l":"FomA","na":1,"nb":1,"a":[["ARO%3A3000423","FomA"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3000449","l":"FomB","na":1,"nb":1,"a":[["ARO%3A3000449","FomB"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3000464","l":"Neisseria gonorrhoeae porin PIB (por)","na":1,"nb":1,"a":[["ARO%3A3000464","Neisseria gonorrhoeae porin PIB (por)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000476","l":"tet(31)","na":1,"nb":1,"a":[["ARO%3A3000476","tet(31)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000478","l":"tet(33)","na":1,"nb":1,"a":[["ARO%3A3000478","tet(33)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000481","l":"tet(35)","na":1,"nb":1,"a":[["ARO%3A3000481","tet(35)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000510","l":"Staphylococcus aureus mupB conferring resistance to mupirocin","na":1,"nb":1,"a":[["ARO%3A3000510","Staphylococcus aureus mupB conferring resistance to mupirocin"]],"b":[["antibacterial/mupirocin.html","mupirocin"]]},{"id":"ARO:3000521","l":"Staphylococcus aureus mupA conferring resistance to mupirocin","na":1,"nb":1,"a":[["ARO%3A3000521","Staphylococcus aureus mupA conferring resistance to mupirocin"]],"b":[["antibacterial/mupirocin.html","mupirocin"]]},{"id":"ARO:3000561","l":"tet(30)","na":1,"nb":1,"a":[["ARO%3A3000561","tet(30)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000565","l":"tet(38)","na":1,"nb":1,"a":[["ARO%3A3000565","tet(38)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000566","l":"tet(39)","na":1,"nb":1,"a":[["ARO%3A3000566","tet(39)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000567","l":"tet(40)","na":1,"nb":1,"a":[["ARO%3A3000567","tet(40)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000569","l":"tet(41)","na":1,"nb":1,"a":[["ARO%3A3000569","tet(41)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000572","l":"tet(42)","na":1,"nb":1,"a":[["ARO%3A3000572","tet(42)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000573","l":"tet(43)","na":1,"nb":1,"a":[["ARO%3A3000573","tet(43)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000614","l":"mef(E)","na":1,"nb":1,"a":[["ARO%3A3000614","mef(E)"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000866","l":"oleI","na":1,"nb":1,"a":[["ARO%3A3000866","oleI"]],"b":[["antibacterial/oleandomycin.html","oleandomycin"]]},{"id":"ARO:3000874","l":"TEM-2","na":1,"nb":1,"a":[["ARO%3A3000874","TEM-2"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000875","l":"TEM-3","na":1,"nb":1,"a":[["ARO%3A3000875","TEM-3"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000876","l":"TEM-4","na":1,"nb":1,"a":[["ARO%3A3000876","TEM-4"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000877","l":"TEM-5","na":1,"nb":1,"a":[["ARO%3A3000877","TEM-5"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000878","l":"TEM-6","na":1,"nb":1,"a":[["ARO%3A3000878","TEM-6"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000879","l":"TEM-7","na":1,"nb":1,"a":[["ARO%3A3000879","TEM-7"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000880","l":"TEM-8","na":1,"nb":1,"a":[["ARO%3A3000880","TEM-8"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000881","l":"TEM-9","na":1,"nb":1,"a":[["ARO%3A3000881","TEM-9"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000882","l":"TEM-10","na":1,"nb":1,"a":[["ARO%3A3000882","TEM-10"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000883","l":"TEM-11","na":1,"nb":1,"a":[["ARO%3A3000883","TEM-11"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000884","l":"TEM-12","na":1,"nb":1,"a":[["ARO%3A3000884","TEM-12"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000886","l":"TEM-15","na":1,"nb":1,"a":[["ARO%3A3000886","TEM-15"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000887","l":"TEM-16","na":1,"nb":1,"a":[["ARO%3A3000887","TEM-16"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000888","l":"TEM-17","na":1,"nb":1,"a":[["ARO%3A3000888","TEM-17"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000890","l":"TEM-19","na":1,"nb":1,"a":[["ARO%3A3000890","TEM-19"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000891","l":"TEM-20","na":1,"nb":1,"a":[["ARO%3A3000891","TEM-20"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000892","l":"TEM-21","na":1,"nb":1,"a":[["ARO%3A3000892","TEM-21"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000893","l":"TEM-22","na":1,"nb":1,"a":[["ARO%3A3000893","TEM-22"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000894","l":"TEM-24","na":1,"nb":1,"a":[["ARO%3A3000894","TEM-24"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000896","l":"TEM-26","na":1,"nb":1,"a":[["ARO%3A3000896","TEM-26"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000898","l":"TEM-28","na":1,"nb":1,"a":[["ARO%3A3000898","TEM-28"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000899","l":"TEM-29","na":1,"nb":1,"a":[["ARO%3A3000899","TEM-29"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000901","l":"TEM-31","na":1,"nb":1,"a":[["ARO%3A3000901","TEM-31"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000902","l":"TEM-32","na":1,"nb":1,"a":[["ARO%3A3000902","TEM-32"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000903","l":"TEM-33","na":1,"nb":1,"a":[["ARO%3A3000903","TEM-33"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000904","l":"TEM-34","na":1,"nb":1,"a":[["ARO%3A3000904","TEM-34"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000905","l":"TEM-35","na":1,"nb":1,"a":[["ARO%3A3000905","TEM-35"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000906","l":"TEM-36","na":1,"nb":1,"a":[["ARO%3A3000906","TEM-36"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000907","l":"TEM-37","na":1,"nb":1,"a":[["ARO%3A3000907","TEM-37"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000909","l":"TEM-39","na":1,"nb":1,"a":[["ARO%3A3000909","TEM-39"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000910","l":"TEM-40","na":1,"nb":1,"a":[["ARO%3A3000910","TEM-40"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000911","l":"TEM-42","na":1,"nb":1,"a":[["ARO%3A3000911","TEM-42"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000912","l":"TEM-43","na":1,"nb":1,"a":[["ARO%3A3000912","TEM-43"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000914","l":"TEM-45","na":1,"nb":1,"a":[["ARO%3A3000914","TEM-45"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000916","l":"TEM-47","na":1,"nb":1,"a":[["ARO%3A3000916","TEM-47"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000917","l":"TEM-48","na":1,"nb":1,"a":[["ARO%3A3000917","TEM-48"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000918","l":"TEM-49","na":1,"nb":1,"a":[["ARO%3A3000918","TEM-49"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000921","l":"TEM-52","na":1,"nb":1,"a":[["ARO%3A3000921","TEM-52"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000922","l":"TEM-53","na":1,"nb":1,"a":[["ARO%3A3000922","TEM-53"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000923","l":"TEM-54","na":1,"nb":1,"a":[["ARO%3A3000923","TEM-54"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000924","l":"TEM-55","na":1,"nb":1,"a":[["ARO%3A3000924","TEM-55"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000926","l":"TEM-57","na":1,"nb":1,"a":[["ARO%3A3000926","TEM-57"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000927","l":"TEM-58","na":1,"nb":1,"a":[["ARO%3A3000927","TEM-58"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000928","l":"TEM-59","na":1,"nb":1,"a":[["ARO%3A3000928","TEM-59"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000929","l":"TEM-60","na":1,"nb":1,"a":[["ARO%3A3000929","TEM-60"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000931","l":"TEM-63","na":1,"nb":1,"a":[["ARO%3A3000931","TEM-63"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000934","l":"TEM-67","na":1,"nb":1,"a":[["ARO%3A3000934","TEM-67"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000935","l":"TEM-68","na":1,"nb":1,"a":[["ARO%3A3000935","TEM-68"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000936","l":"TEM-70","na":1,"nb":1,"a":[["ARO%3A3000936","TEM-70"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000937","l":"TEM-71","na":1,"nb":1,"a":[["ARO%3A3000937","TEM-71"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000938","l":"TEM-72","na":1,"nb":1,"a":[["ARO%3A3000938","TEM-72"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000939","l":"TEM-73","na":1,"nb":1,"a":[["ARO%3A3000939","TEM-73"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000941","l":"TEM-75","na":1,"nb":1,"a":[["ARO%3A3000941","TEM-75"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000942","l":"TEM-76","na":1,"nb":1,"a":[["ARO%3A3000942","TEM-76"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000944","l":"TEM-78","na":1,"nb":1,"a":[["ARO%3A3000944","TEM-78"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000946","l":"TEM-79","na":1,"nb":1,"a":[["ARO%3A3000946","TEM-79"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000947","l":"TEM-80","na":1,"nb":1,"a":[["ARO%3A3000947","TEM-80"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000948","l":"TEM-81","na":1,"nb":1,"a":[["ARO%3A3000948","TEM-81"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000949","l":"TEM-82","na":1,"nb":1,"a":[["ARO%3A3000949","TEM-82"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000950","l":"TEM-83","na":1,"nb":1,"a":[["ARO%3A3000950","TEM-83"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000951","l":"TEM-84","na":1,"nb":1,"a":[["ARO%3A3000951","TEM-84"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000952","l":"TEM-85","na":1,"nb":1,"a":[["ARO%3A3000952","TEM-85"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000953","l":"TEM-86","na":1,"nb":1,"a":[["ARO%3A3000953","TEM-86"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000954","l":"TEM-87","na":1,"nb":1,"a":[["ARO%3A3000954","TEM-87"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000955","l":"TEM-88","na":1,"nb":1,"a":[["ARO%3A3000955","TEM-88"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000956","l":"TEM-89","na":1,"nb":1,"a":[["ARO%3A3000956","TEM-89"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000957","l":"TEM-90","na":1,"nb":1,"a":[["ARO%3A3000957","TEM-90"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000958","l":"TEM-91","na":1,"nb":1,"a":[["ARO%3A3000958","TEM-91"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000959","l":"TEM-92","na":1,"nb":1,"a":[["ARO%3A3000959","TEM-92"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000960","l":"TEM-93","na":1,"nb":1,"a":[["ARO%3A3000960","TEM-93"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000961","l":"TEM-94","na":1,"nb":1,"a":[["ARO%3A3000961","TEM-94"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000962","l":"TEM-95","na":1,"nb":1,"a":[["ARO%3A3000962","TEM-95"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000963","l":"TEM-96","na":1,"nb":1,"a":[["ARO%3A3000963","TEM-96"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000964","l":"TEM-101","na":1,"nb":1,"a":[["ARO%3A3000964","TEM-101"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000965","l":"TEM-102","na":1,"nb":1,"a":[["ARO%3A3000965","TEM-102"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000967","l":"TEM-104","na":1,"nb":1,"a":[["ARO%3A3000967","TEM-104"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000968","l":"TEM-105","na":1,"nb":1,"a":[["ARO%3A3000968","TEM-105"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000969","l":"TEM-106","na":1,"nb":1,"a":[["ARO%3A3000969","TEM-106"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000970","l":"TEM-107","na":1,"nb":1,"a":[["ARO%3A3000970","TEM-107"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000971","l":"TEM-108","na":1,"nb":1,"a":[["ARO%3A3000971","TEM-108"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000972","l":"TEM-109","na":1,"nb":1,"a":[["ARO%3A3000972","TEM-109"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000973","l":"TEM-110","na":1,"nb":1,"a":[["ARO%3A3000973","TEM-110"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000974","l":"TEM-111","na":1,"nb":1,"a":[["ARO%3A3000974","TEM-111"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000975","l":"TEM-112","na":1,"nb":1,"a":[["ARO%3A3000975","TEM-112"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000976","l":"TEM-113","na":1,"nb":1,"a":[["ARO%3A3000976","TEM-113"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000977","l":"TEM-114","na":1,"nb":1,"a":[["ARO%3A3000977","TEM-114"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000978","l":"TEM-115","na":1,"nb":1,"a":[["ARO%3A3000978","TEM-115"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000979","l":"TEM-116","na":1,"nb":1,"a":[["ARO%3A3000979","TEM-116"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000980","l":"TEM-117","na":1,"nb":1,"a":[["ARO%3A3000980","TEM-117"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000981","l":"TEM-118","na":1,"nb":1,"a":[["ARO%3A3000981","TEM-118"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000982","l":"TEM-120","na":1,"nb":1,"a":[["ARO%3A3000982","TEM-120"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000983","l":"TEM-121","na":1,"nb":1,"a":[["ARO%3A3000983","TEM-121"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000984","l":"TEM-122","na":1,"nb":1,"a":[["ARO%3A3000984","TEM-122"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000985","l":"TEM-123","na":1,"nb":1,"a":[["ARO%3A3000985","TEM-123"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000986","l":"TEM-124","na":1,"nb":1,"a":[["ARO%3A3000986","TEM-124"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000987","l":"TEM-125","na":1,"nb":1,"a":[["ARO%3A3000987","TEM-125"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000988","l":"TEM-126","na":1,"nb":1,"a":[["ARO%3A3000988","TEM-126"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000989","l":"TEM-127","na":1,"nb":1,"a":[["ARO%3A3000989","TEM-127"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000990","l":"TEM-128","na":1,"nb":1,"a":[["ARO%3A3000990","TEM-128"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000993","l":"TEM-129","na":1,"nb":1,"a":[["ARO%3A3000993","TEM-129"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000994","l":"TEM-130","na":1,"nb":1,"a":[["ARO%3A3000994","TEM-130"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000995","l":"TEM-131","na":1,"nb":1,"a":[["ARO%3A3000995","TEM-131"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000996","l":"TEM-132","na":1,"nb":1,"a":[["ARO%3A3000996","TEM-132"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000997","l":"TEM-133","na":1,"nb":1,"a":[["ARO%3A3000997","TEM-133"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000998","l":"TEM-134","na":1,"nb":1,"a":[["ARO%3A3000998","TEM-134"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001000","l":"TEM-136","na":1,"nb":1,"a":[["ARO%3A3001000","TEM-136"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001001","l":"TEM-137","na":1,"nb":1,"a":[["ARO%3A3001001","TEM-137"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001002","l":"TEM-138","na":1,"nb":1,"a":[["ARO%3A3001002","TEM-138"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001003","l":"TEM-139","na":1,"nb":1,"a":[["ARO%3A3001003","TEM-139"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001004","l":"TEM-141","na":1,"nb":1,"a":[["ARO%3A3001004","TEM-141"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001005","l":"TEM-142","na":1,"nb":1,"a":[["ARO%3A3001005","TEM-142"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001006","l":"TEM-143","na":1,"nb":1,"a":[["ARO%3A3001006","TEM-143"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001007","l":"TEM-144","na":1,"nb":1,"a":[["ARO%3A3001007","TEM-144"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001012","l":"TEM-145","na":1,"nb":1,"a":[["ARO%3A3001012","TEM-145"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001013","l":"TEM-146","na":1,"nb":1,"a":[["ARO%3A3001013","TEM-146"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001014","l":"TEM-147","na":1,"nb":1,"a":[["ARO%3A3001014","TEM-147"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001015","l":"TEM-148","na":1,"nb":1,"a":[["ARO%3A3001015","TEM-148"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001016","l":"TEM-149","na":1,"nb":1,"a":[["ARO%3A3001016","TEM-149"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001017","l":"TEM-150","na":1,"nb":1,"a":[["ARO%3A3001017","TEM-150"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001018","l":"TEM-151","na":1,"nb":1,"a":[["ARO%3A3001018","TEM-151"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001019","l":"TEM-152","na":1,"nb":1,"a":[["ARO%3A3001019","TEM-152"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001020","l":"TEM-154","na":1,"nb":1,"a":[["ARO%3A3001020","TEM-154"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001021","l":"TEM-155","na":1,"nb":1,"a":[["ARO%3A3001021","TEM-155"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001022","l":"TEM-156","na":1,"nb":1,"a":[["ARO%3A3001022","TEM-156"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001023","l":"TEM-157","na":1,"nb":1,"a":[["ARO%3A3001023","TEM-157"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001024","l":"TEM-158","na":1,"nb":1,"a":[["ARO%3A3001024","TEM-158"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001025","l":"TEM-159","na":1,"nb":1,"a":[["ARO%3A3001025","TEM-159"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001026","l":"TEM-160","na":1,"nb":1,"a":[["ARO%3A3001026","TEM-160"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001028","l":"TEM-162","na":1,"nb":1,"a":[["ARO%3A3001028","TEM-162"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001029","l":"TEM-163","na":1,"nb":1,"a":[["ARO%3A3001029","TEM-163"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001030","l":"TEM-164","na":1,"nb":1,"a":[["ARO%3A3001030","TEM-164"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001032","l":"TEM-166","na":1,"nb":1,"a":[["ARO%3A3001032","TEM-166"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001033","l":"TEM-167","na":1,"nb":1,"a":[["ARO%3A3001033","TEM-167"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001034","l":"TEM-168","na":1,"nb":1,"a":[["ARO%3A3001034","TEM-168"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001035","l":"TEM-169","na":1,"nb":1,"a":[["ARO%3A3001035","TEM-169"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001037","l":"TEM-171","na":1,"nb":1,"a":[["ARO%3A3001037","TEM-171"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001041","l":"TEM-176","na":1,"nb":1,"a":[["ARO%3A3001041","TEM-176"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001042","l":"TEM-177","na":1,"nb":1,"a":[["ARO%3A3001042","TEM-177"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001043","l":"TEM-178","na":1,"nb":1,"a":[["ARO%3A3001043","TEM-178"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001044","l":"TEM-181","na":1,"nb":1,"a":[["ARO%3A3001044","TEM-181"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001045","l":"TEM-183","na":1,"nb":1,"a":[["ARO%3A3001045","TEM-183"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001046","l":"TEM-186","na":1,"nb":1,"a":[["ARO%3A3001046","TEM-186"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001047","l":"TEM-187","na":1,"nb":1,"a":[["ARO%3A3001047","TEM-187"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001048","l":"TEM-188","na":1,"nb":1,"a":[["ARO%3A3001048","TEM-188"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001049","l":"TEM-189","na":1,"nb":1,"a":[["ARO%3A3001049","TEM-189"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001050","l":"TEM-190","na":1,"nb":1,"a":[["ARO%3A3001050","TEM-190"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001051","l":"TEM-191","na":1,"nb":1,"a":[["ARO%3A3001051","TEM-191"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001052","l":"TEM-192","na":1,"nb":1,"a":[["ARO%3A3001052","TEM-192"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001053","l":"TEM-193","na":1,"nb":1,"a":[["ARO%3A3001053","TEM-193"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001054","l":"TEM-194","na":1,"nb":1,"a":[["ARO%3A3001054","TEM-194"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001055","l":"TEM-195","na":1,"nb":1,"a":[["ARO%3A3001055","TEM-195"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001056","l":"TEM-197","na":1,"nb":1,"a":[["ARO%3A3001056","TEM-197"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001057","l":"TEM-198","na":1,"nb":1,"a":[["ARO%3A3001057","TEM-198"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001058","l":"TEM-199","na":1,"nb":1,"a":[["ARO%3A3001058","TEM-199"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001059","l":"SHV-1","na":1,"nb":1,"a":[["ARO%3A3001059","SHV-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"]]},{"id":"ARO:3001209","l":"mecC","na":1,"nb":1,"a":[["ARO%3A3001209","mecC"]],"b":[["antibacterial/methicillin.html","methicillin"]]},{"id":"ARO:3001299","l":"tlrB conferring tylosin resistance","na":1,"nb":1,"a":[["ARO%3A3001299","tlrB conferring tylosin resistance"]],"b":[["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3001305","l":"ErmU","na":1,"nb":1,"a":[["ARO%3A3001305","ErmU"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3001313","l":"facT","na":1,"nb":1,"a":[["ARO%3A3001313","facT"]],"b":[["antibacterial/factumycin.html","factumycin"]]},{"id":"ARO:3001327","l":"MdtK","na":1,"nb":1,"a":[["ARO%3A3001327","MdtK"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3001329","l":"mdtG","na":1,"nb":1,"a":[["ARO%3A3001329","mdtG"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3001369","l":"TEM-153","na":1,"nb":1,"a":[["ARO%3A3001369","TEM-153"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001373","l":"TEM-182","na":1,"nb":1,"a":[["ARO%3A3001373","TEM-182"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001374","l":"TEM-185","na":1,"nb":1,"a":[["ARO%3A3001374","TEM-185"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001375","l":"TEM-184","na":1,"nb":1,"a":[["ARO%3A3001375","TEM-184"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001376","l":"TEM-196","na":1,"nb":1,"a":[["ARO%3A3001376","TEM-196"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001378","l":"TEM-201","na":1,"nb":1,"a":[["ARO%3A3001378","TEM-201"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001382","l":"TEM-205","na":1,"nb":1,"a":[["ARO%3A3001382","TEM-205"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001383","l":"TEM-206","na":1,"nb":1,"a":[["ARO%3A3001383","TEM-206"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001384","l":"TEM-207","na":1,"nb":1,"a":[["ARO%3A3001384","TEM-207"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001385","l":"TEM-208","na":1,"nb":1,"a":[["ARO%3A3001385","TEM-208"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001386","l":"TEM-209","na":1,"nb":1,"a":[["ARO%3A3001386","TEM-209"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001387","l":"TEM-210","na":1,"nb":1,"a":[["ARO%3A3001387","TEM-210"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001388","l":"TEM-211","na":1,"nb":1,"a":[["ARO%3A3001388","TEM-211"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001389","l":"TEM-212","na":1,"nb":1,"a":[["ARO%3A3001389","TEM-212"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001390","l":"TEM-213","na":1,"nb":1,"a":[["ARO%3A3001390","TEM-213"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001391","l":"TEM-214","na":1,"nb":1,"a":[["ARO%3A3001391","TEM-214"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001392","l":"TEM-215","na":1,"nb":1,"a":[["ARO%3A3001392","TEM-215"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001393","l":"TEM-216","na":1,"nb":1,"a":[["ARO%3A3001393","TEM-216"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001394","l":"TEM-217","na":1,"nb":1,"a":[["ARO%3A3001394","TEM-217"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001419","l":"OXA-24","na":1,"nb":1,"a":[["ARO%3A3001419","OXA-24"]],"b":[["antibacterial/bal30072.html","BAL30072"]]},{"id":"ARO:3001612","l":"OXA-51","na":1,"nb":1,"a":[["ARO%3A3001612","OXA-51"]],"b":[["antibacterial/bal30072.html","BAL30072"]]},{"id":"ARO:3001782","l":"OXA-48","na":1,"nb":1,"a":[["ARO%3A3001782","OXA-48"]],"b":[["antibacterial/temocillin.html","temocillin"]]},{"id":"ARO:3001817","l":"ACC-3","na":1,"nb":1,"a":[["ARO%3A3001817","ACC-3"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001819","l":"ACC-5","na":1,"nb":1,"a":[["ARO%3A3001819","ACC-5"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002355","l":"NDM-4","na":1,"nb":1,"a":[["ARO%3A3002355","NDM-4"]],"b":[["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3002508","l":"PDC-9","na":1,"nb":1,"a":[["ARO%3A3002508","PDC-9"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002509","l":"PDC-10","na":1,"nb":1,"a":[["ARO%3A3002509","PDC-10"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002522","l":"novA","na":1,"nb":1,"a":[["ARO%3A3002522","novA"]],"b":[["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3002538","l":"AAC(3)-IIIc","na":1,"nb":1,"a":[["ARO%3A3002538","AAC(3)-IIIc"]],"b":[["antibacterial/gentamycin-a.html","gentamycin A"]]},{"id":"ARO:3002541","l":"AAC(3)-VIIa","na":1,"nb":1,"a":[["ARO%3A3002541","AAC(3)-VIIa"]],"b":[["antibacterial/paromomycin.html","paromomycin"]]},{"id":"ARO:3002542","l":"AAC(3)-VIIIa","na":1,"nb":1,"a":[["ARO%3A3002542","AAC(3)-VIIIa"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3002543","l":"AAC(3)-IXa","na":1,"nb":1,"a":[["ARO%3A3002543","AAC(3)-IXa"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3002544","l":"AAC(3)-Xa","na":1,"nb":1,"a":[["ARO%3A3002544","AAC(3)-Xa"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3002599","l":"","na":1,"nb":1,"a":[["ARO%3A3002599","AAC(6')-30/AAC(6')-Ib' bifunctional protein"]],"b":[["antibacterial/gentamycin-a.html","gentamycin A"]]},{"id":"ARO:3002626","l":"ANT(6)-Ia","na":1,"nb":1,"a":[["ARO%3A3002626","ANT(6)-Ia"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002627","l":"aadK","na":1,"nb":1,"a":[["ARO%3A3002627","aadK"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002628","l":"aad(6)","na":1,"nb":1,"a":[["ARO%3A3002628","aad(6)"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002629","l":"ANT(6)-Ib","na":1,"nb":1,"a":[["ARO%3A3002629","ANT(6)-Ib"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002630","l":"ANT(9)-Ia","na":1,"nb":1,"a":[["ARO%3A3002630","ANT(9)-Ia"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3002631","l":"spd","na":1,"nb":1,"a":[["ARO%3A3002631","spd"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3002635","l":"","na":1,"nb":1,"a":[["ARO%3A3002635","APH(2')-IIa"]],"b":[["antibacterial/plazomicin.html","plazomicin"]]},{"id":"ARO:3002638","l":"","na":1,"nb":1,"a":[["ARO%3A3002638","APH(3')-Ia"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002639","l":"","na":1,"nb":1,"a":[["ARO%3A3002639","APH(3')-Ib"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002640","l":"","na":1,"nb":1,"a":[["ARO%3A3002640","APH(3')-Ic"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002655","l":"APH(4)-Ia","na":1,"nb":1,"a":[["ARO%3A3002655","APH(4)-Ia"]],"b":[["antibacterial/hygromycin-b.html","hygromycin B"]]},{"id":"ARO:3002656","l":"APH(4)-Ib","na":1,"nb":1,"a":[["ARO%3A3002656","APH(4)-Ib"]],"b":[["antibacterial/hygromycin-b.html","hygromycin B"]]},{"id":"ARO:3002657","l":"APH(6)-Ia","na":1,"nb":1,"a":[["ARO%3A3002657","APH(6)-Ia"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002658","l":"APH(6)-Ib","na":1,"nb":1,"a":[["ARO%3A3002658","APH(6)-Ib"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002659","l":"APH(6)-Ic","na":1,"nb":1,"a":[["ARO%3A3002659","APH(6)-Ic"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002660","l":"APH(6)-Id","na":1,"nb":1,"a":[["ARO%3A3002660","APH(6)-Id"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002661","l":"","na":1,"nb":1,"a":[["ARO%3A3002661","APH(7')-Ia"]],"b":[["antibacterial/hygromycin-b.html","hygromycin B"]]},{"id":"ARO:3002662","l":"APH(9)-Ia","na":1,"nb":1,"a":[["ARO%3A3002662","APH(9)-Ia"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3002663","l":"APH(9)-Ib","na":1,"nb":1,"a":[["ARO%3A3002663","APH(9)-Ib"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3002670","l":"cat","na":1,"nb":1,"a":[["ARO%3A3002670","cat"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002690","l":"Streptomyces lividans cmlR","na":1,"nb":1,"a":[["ARO%3A3002690","Streptomyces lividans cmlR"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002691","l":"Salmonella enterica cmlA","na":1,"nb":1,"a":[["ARO%3A3002691","Salmonella enterica cmlA"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002693","l":"cmlA1","na":1,"nb":1,"a":[["ARO%3A3002693","cmlA1"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002694","l":"cmlA4","na":1,"nb":1,"a":[["ARO%3A3002694","cmlA4"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002695","l":"cmlA5","na":1,"nb":1,"a":[["ARO%3A3002695","cmlA5"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002696","l":"cmlA6","na":1,"nb":1,"a":[["ARO%3A3002696","cmlA6"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002698","l":"cmlB","na":1,"nb":1,"a":[["ARO%3A3002698","cmlB"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002699","l":"cmlB1","na":1,"nb":1,"a":[["ARO%3A3002699","cmlB1"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002700","l":"cmlv","na":1,"nb":1,"a":[["ARO%3A3002700","cmlv"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002701","l":"Rhodococcus fascians cmr","na":1,"nb":1,"a":[["ARO%3A3002701","Rhodococcus fascians cmr"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002702","l":"cmrA","na":1,"nb":1,"a":[["ARO%3A3002702","cmrA"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002703","l":"cmx","na":1,"nb":1,"a":[["ARO%3A3002703","cmx"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002707","l":"QnrA1","na":1,"nb":1,"a":[["ARO%3A3002707","QnrA1"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002708","l":"QnrA2","na":1,"nb":1,"a":[["ARO%3A3002708","QnrA2"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002709","l":"QnrA3","na":1,"nb":1,"a":[["ARO%3A3002709","QnrA3"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002710","l":"QnrA4","na":1,"nb":1,"a":[["ARO%3A3002710","QnrA4"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002711","l":"QnrA5","na":1,"nb":1,"a":[["ARO%3A3002711","QnrA5"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002712","l":"QnrA6","na":1,"nb":1,"a":[["ARO%3A3002712","QnrA6"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002713","l":"QnrA7","na":1,"nb":1,"a":[["ARO%3A3002713","QnrA7"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002714","l":"QnrB1","na":1,"nb":1,"a":[["ARO%3A3002714","QnrB1"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002715","l":"QnrB2","na":1,"nb":1,"a":[["ARO%3A3002715","QnrB2"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002716","l":"QnrB3","na":1,"nb":1,"a":[["ARO%3A3002716","QnrB3"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002718","l":"QnrB4","na":1,"nb":1,"a":[["ARO%3A3002718","QnrB4"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002719","l":"QnrB5","na":1,"nb":1,"a":[["ARO%3A3002719","QnrB5"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002720","l":"QnrB6","na":1,"nb":1,"a":[["ARO%3A3002720","QnrB6"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002721","l":"QnrB7","na":1,"nb":1,"a":[["ARO%3A3002721","QnrB7"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002722","l":"QnrB8","na":1,"nb":1,"a":[["ARO%3A3002722","QnrB8"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002723","l":"QnrB9","na":1,"nb":1,"a":[["ARO%3A3002723","QnrB9"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002724","l":"QnrB10","na":1,"nb":1,"a":[["ARO%3A3002724","QnrB10"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002725","l":"QnrB11","na":1,"nb":1,"a":[["ARO%3A3002725","QnrB11"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002726","l":"QnrB12","na":1,"nb":1,"a":[["ARO%3A3002726","QnrB12"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002727","l":"QnrB13","na":1,"nb":1,"a":[["ARO%3A3002727","QnrB13"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002728","l":"QnrB14","na":1,"nb":1,"a":[["ARO%3A3002728","QnrB14"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002730","l":"QnrB15","na":1,"nb":1,"a":[["ARO%3A3002730","QnrB15"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002731","l":"QnrB16","na":1,"nb":1,"a":[["ARO%3A3002731","QnrB16"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002732","l":"QnrB17","na":1,"nb":1,"a":[["ARO%3A3002732","QnrB17"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002733","l":"QnrB18","na":1,"nb":1,"a":[["ARO%3A3002733","QnrB18"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002734","l":"QnrB19","na":1,"nb":1,"a":[["ARO%3A3002734","QnrB19"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002735","l":"QnrB20","na":1,"nb":1,"a":[["ARO%3A3002735","QnrB20"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002736","l":"QnrB21","na":1,"nb":1,"a":[["ARO%3A3002736","QnrB21"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002737","l":"QnrB22","na":1,"nb":1,"a":[["ARO%3A3002737","QnrB22"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002738","l":"QnrB23","na":1,"nb":1,"a":[["ARO%3A3002738","QnrB23"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002739","l":"QnrB24","na":1,"nb":1,"a":[["ARO%3A3002739","QnrB24"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002740","l":"QnrB25","na":1,"nb":1,"a":[["ARO%3A3002740","QnrB25"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002741","l":"QnrB26","na":1,"nb":1,"a":[["ARO%3A3002741","QnrB26"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002742","l":"QnrB27","na":1,"nb":1,"a":[["ARO%3A3002742","QnrB27"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002743","l":"QnrB28","na":1,"nb":1,"a":[["ARO%3A3002743","QnrB28"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002744","l":"QnrB29","na":1,"nb":1,"a":[["ARO%3A3002744","QnrB29"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002745","l":"QnrB30","na":1,"nb":1,"a":[["ARO%3A3002745","QnrB30"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002746","l":"QnrB31","na":1,"nb":1,"a":[["ARO%3A3002746","QnrB31"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002747","l":"QnrB32","na":1,"nb":1,"a":[["ARO%3A3002747","QnrB32"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002748","l":"QnrB33","na":1,"nb":1,"a":[["ARO%3A3002748","QnrB33"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002749","l":"QnrB34","na":1,"nb":1,"a":[["ARO%3A3002749","QnrB34"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002750","l":"QnrB35","na":1,"nb":1,"a":[["ARO%3A3002750","QnrB35"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002751","l":"QnrB36","na":1,"nb":1,"a":[["ARO%3A3002751","QnrB36"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002752","l":"QnrB37","na":1,"nb":1,"a":[["ARO%3A3002752","QnrB37"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002753","l":"QnrB38","na":1,"nb":1,"a":[["ARO%3A3002753","QnrB38"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002755","l":"QnrB40","na":1,"nb":1,"a":[["ARO%3A3002755","QnrB40"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002756","l":"QnrB41","na":1,"nb":1,"a":[["ARO%3A3002756","QnrB41"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002757","l":"QnrB42","na":1,"nb":1,"a":[["ARO%3A3002757","QnrB42"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002758","l":"QnrB43","na":1,"nb":1,"a":[["ARO%3A3002758","QnrB43"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002759","l":"QnrB44","na":1,"nb":1,"a":[["ARO%3A3002759","QnrB44"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002760","l":"QnrB45","na":1,"nb":1,"a":[["ARO%3A3002760","QnrB45"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002761","l":"QnrB46","na":1,"nb":1,"a":[["ARO%3A3002761","QnrB46"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002762","l":"QnrB47","na":1,"nb":1,"a":[["ARO%3A3002762","QnrB47"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002763","l":"QnrB48","na":1,"nb":1,"a":[["ARO%3A3002763","QnrB48"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002764","l":"QnrB49","na":1,"nb":1,"a":[["ARO%3A3002764","QnrB49"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002765","l":"QnrB50","na":1,"nb":1,"a":[["ARO%3A3002765","QnrB50"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002767","l":"QnrB54","na":1,"nb":1,"a":[["ARO%3A3002767","QnrB54"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002768","l":"QnrB55","na":1,"nb":1,"a":[["ARO%3A3002768","QnrB55"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002769","l":"QnrB56","na":1,"nb":1,"a":[["ARO%3A3002769","QnrB56"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002770","l":"QnrB57","na":1,"nb":1,"a":[["ARO%3A3002770","QnrB57"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002771","l":"QnrB58","na":1,"nb":1,"a":[["ARO%3A3002771","QnrB58"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002772","l":"QnrB59","na":1,"nb":1,"a":[["ARO%3A3002772","QnrB59"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002773","l":"QnrB60","na":1,"nb":1,"a":[["ARO%3A3002773","QnrB60"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002774","l":"QnrB61","na":1,"nb":1,"a":[["ARO%3A3002774","QnrB61"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002775","l":"QnrB62","na":1,"nb":1,"a":[["ARO%3A3002775","QnrB62"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002776","l":"QnrB64","na":1,"nb":1,"a":[["ARO%3A3002776","QnrB64"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002777","l":"QnrB65","na":1,"nb":1,"a":[["ARO%3A3002777","QnrB65"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002778","l":"QnrB66","na":1,"nb":1,"a":[["ARO%3A3002778","QnrB66"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002779","l":"QnrB67","na":1,"nb":1,"a":[["ARO%3A3002779","QnrB67"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002780","l":"QnrB68","na":1,"nb":1,"a":[["ARO%3A3002780","QnrB68"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002781","l":"QnrB69","na":1,"nb":1,"a":[["ARO%3A3002781","QnrB69"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002782","l":"QnrB70","na":1,"nb":1,"a":[["ARO%3A3002782","QnrB70"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002783","l":"QnrB71","na":1,"nb":1,"a":[["ARO%3A3002783","QnrB71"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002784","l":"QnrB72","na":1,"nb":1,"a":[["ARO%3A3002784","QnrB72"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002785","l":"QnrB73","na":1,"nb":1,"a":[["ARO%3A3002785","QnrB73"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002786","l":"QnrB74","na":1,"nb":1,"a":[["ARO%3A3002786","QnrB74"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002787","l":"QnrC","na":1,"nb":1,"a":[["ARO%3A3002787","QnrC"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002788","l":"QnrD1","na":1,"nb":1,"a":[["ARO%3A3002788","QnrD1"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002789","l":"QnrD2","na":1,"nb":1,"a":[["ARO%3A3002789","QnrD2"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002790","l":"QnrS1","na":1,"nb":1,"a":[["ARO%3A3002790","QnrS1"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002791","l":"QnrS2","na":1,"nb":1,"a":[["ARO%3A3002791","QnrS2"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002792","l":"QnrS3","na":1,"nb":1,"a":[["ARO%3A3002792","QnrS3"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002793","l":"QnrS4","na":1,"nb":1,"a":[["ARO%3A3002793","QnrS4"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002794","l":"QnrS5","na":1,"nb":1,"a":[["ARO%3A3002794","QnrS5"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002795","l":"QnrS6","na":1,"nb":1,"a":[["ARO%3A3002795","QnrS6"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002796","l":"QnrS7","na":1,"nb":1,"a":[["ARO%3A3002796","QnrS7"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002797","l":"QnrS8","na":1,"nb":1,"a":[["ARO%3A3002797","QnrS8"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002798","l":"QnrS9","na":1,"nb":1,"a":[["ARO%3A3002798","QnrS9"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002799","l":"QnrVC1","na":1,"nb":1,"a":[["ARO%3A3002799","QnrVC1"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002800","l":"QnrVC3","na":1,"nb":1,"a":[["ARO%3A3002800","QnrVC3"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002801","l":"QnrVC4","na":1,"nb":1,"a":[["ARO%3A3002801","QnrVC4"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002802","l":"QnrVC5","na":1,"nb":1,"a":[["ARO%3A3002802","QnrVC5"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002803","l":"QnrVC6","na":1,"nb":1,"a":[["ARO%3A3002803","QnrVC6"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002804","l":"FosA2","na":1,"nb":1,"a":[["ARO%3A3002804","FosA2"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3002817","l":"carA","na":1,"nb":1,"a":[["ARO%3A3002817","carA"]],"b":[["antibacterial/carbomycin.html","carbomycin"]]},{"id":"ARO:3002826","l":"EreA2","na":1,"nb":1,"a":[["ARO%3A3002826","EreA2"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3002828","l":"srmB","na":1,"nb":1,"a":[["ARO%3A3002828","srmB"]],"b":[["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3002832","l":"vgaD","na":1,"nb":1,"a":[["ARO%3A3002832","vgaD"]],"b":[["antibacterial/dalfopristin.html","dalfopristin"]]},{"id":"ARO:3002837","l":"lnuC","na":1,"nb":1,"a":[["ARO%3A3002837","lnuC"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002840","l":"vatA","na":1,"nb":1,"a":[["ARO%3A3002840","vatA"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002841","l":"vatB","na":1,"nb":1,"a":[["ARO%3A3002841","vatB"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002842","l":"vatC","na":1,"nb":1,"a":[["ARO%3A3002842","vatC"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002843","l":"vatD","na":1,"nb":1,"a":[["ARO%3A3002843","vatD"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002844","l":"vatE","na":1,"nb":1,"a":[["ARO%3A3002844","vatE"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002845","l":"vatH","na":1,"nb":1,"a":[["ARO%3A3002845","vatH"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002846","l":"arr-1","na":1,"nb":1,"a":[["ARO%3A3002846","arr-1"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3002847","l":"arr-2","na":1,"nb":1,"a":[["ARO%3A3002847","arr-2"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3002848","l":"arr-3","na":1,"nb":1,"a":[["ARO%3A3002848","arr-3"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3002849","l":"arr-4","na":1,"nb":1,"a":[["ARO%3A3002849","arr-4"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3002850","l":"arr-5","na":1,"nb":1,"a":[["ARO%3A3002850","arr-5"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3002852","l":"arr-7","na":1,"nb":1,"a":[["ARO%3A3002852","arr-7"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3002853","l":"arr-8","na":1,"nb":1,"a":[["ARO%3A3002853","arr-8"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3002854","l":"dfrA1","na":1,"nb":1,"a":[["ARO%3A3002854","dfrA1"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002856","l":"dfrA24","na":1,"nb":1,"a":[["ARO%3A3002856","dfrA24"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002857","l":"dfrA26","na":1,"nb":1,"a":[["ARO%3A3002857","dfrA26"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002858","l":"dfrA12","na":1,"nb":1,"a":[["ARO%3A3002858","dfrA12"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002859","l":"dfrA14","na":1,"nb":1,"a":[["ARO%3A3002859","dfrA14"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002860","l":"dfrA17","na":1,"nb":1,"a":[["ARO%3A3002860","dfrA17"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002861","l":"dfrA5","na":1,"nb":1,"a":[["ARO%3A3002861","dfrA5"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002862","l":"dfrA7","na":1,"nb":1,"a":[["ARO%3A3002862","dfrA7"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002863","l":"dfrA8","na":1,"nb":1,"a":[["ARO%3A3002863","dfrA8"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002864","l":"dfrB1","na":1,"nb":1,"a":[["ARO%3A3002864","dfrB1"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002865","l":"dfrC","na":1,"nb":1,"a":[["ARO%3A3002865","dfrC"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002866","l":"dfrD","na":1,"nb":1,"a":[["ARO%3A3002866","dfrD"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002867","l":"dfrF","na":1,"nb":1,"a":[["ARO%3A3002867","dfrF"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002868","l":"dfrG","na":1,"nb":1,"a":[["ARO%3A3002868","dfrG"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002869","l":"dfrK","na":1,"nb":1,"a":[["ARO%3A3002869","dfrK"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002870","l":"tet(34)","na":1,"nb":1,"a":[["ARO%3A3002870","tet(34)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3002871","l":"tet(37)","na":1,"nb":1,"a":[["ARO%3A3002871","tet(37)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3002872","l":"FosA3","na":1,"nb":1,"a":[["ARO%3A3002872","FosA3"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3002873","l":"FosB3","na":1,"nb":1,"a":[["ARO%3A3002873","FosB3"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3002874","l":"FosC2","na":1,"nb":1,"a":[["ARO%3A3002874","FosC2"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3002875","l":"dfrE","na":1,"nb":1,"a":[["ARO%3A3002875","dfrE"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002879","l":"linG","na":1,"nb":1,"a":[["ARO%3A3002879","linG"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002891","l":"Streptomyces rimosus otr(A)","na":1,"nb":1,"a":[["ARO%3A3002891","Streptomyces rimosus otr(A)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"]]},{"id":"ARO:3002892","l":"otr(B)","na":1,"nb":1,"a":[["ARO%3A3002892","otr(B)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3002893","l":"tcr3","na":1,"nb":1,"a":[["ARO%3A3002893","tcr3"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3002894","l":"otr(C)","na":1,"nb":1,"a":[["ARO%3A3002894","otr(C)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3002895","l":"SAT-2","na":1,"nb":1,"a":[["ARO%3A3002895","SAT-2"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"]]},{"id":"ARO:3002897","l":"SAT-4","na":1,"nb":1,"a":[["ARO%3A3002897","SAT-4"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"]]},{"id":"ARO:3002898","l":"SAT-3","na":1,"nb":1,"a":[["ARO%3A3002898","SAT-3"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"]]},{"id":"ARO:3002914","l":"vanJ","na":1,"nb":1,"a":[["ARO%3A3002914","vanJ"]],"b":[["antibacterial/teicoplanin.html","teicoplanin"]]},{"id":"ARO:3002917","l":"glycopeptide resistance gene cluster VanN","na":1,"nb":1,"a":[["ARO%3A3002917","glycopeptide resistance gene cluster VanN"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3002918","l":"glycopeptide resistance gene cluster VanO","na":1,"nb":1,"a":[["ARO%3A3002918","glycopeptide resistance gene cluster VanO"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3002999","l":"CblA-1","na":1,"nb":1,"a":[["ARO%3A3002999","CblA-1"]],"b":[["antibacterial/cefaloridine.html","cefaloridine"]]},{"id":"ARO:3003006","l":"blt","na":1,"nb":1,"a":[["ARO%3A3003006","blt"]],"b":[["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3003011","l":"dfrA10","na":1,"nb":1,"a":[["ARO%3A3003011","dfrA10"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003012","l":"dfrA13","na":1,"nb":1,"a":[["ARO%3A3003012","dfrA13"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003013","l":"dfrA15","na":1,"nb":1,"a":[["ARO%3A3003013","dfrA15"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003014","l":"dfrA16","na":1,"nb":1,"a":[["ARO%3A3003014","dfrA16"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003015","l":"dfrA19","na":1,"nb":1,"a":[["ARO%3A3003015","dfrA19"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003016","l":"dfrA20","na":1,"nb":1,"a":[["ARO%3A3003016","dfrA20"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003017","l":"dfrA21","na":1,"nb":1,"a":[["ARO%3A3003017","dfrA21"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003018","l":"dfrA22","na":1,"nb":1,"a":[["ARO%3A3003018","dfrA22"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003019","l":"dfrA23","na":1,"nb":1,"a":[["ARO%3A3003019","dfrA23"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003020","l":"dfrA25","na":1,"nb":1,"a":[["ARO%3A3003020","dfrA25"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003021","l":"dfrB2","na":1,"nb":1,"a":[["ARO%3A3003021","dfrB2"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003022","l":"dfrB3","na":1,"nb":1,"a":[["ARO%3A3003022","dfrB3"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003023","l":"dfrB6","na":1,"nb":1,"a":[["ARO%3A3003023","dfrB6"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003026","l":"fusH","na":1,"nb":1,"a":[["ARO%3A3003026","fusH"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3003036","l":"oleB","na":1,"nb":1,"a":[["ARO%3A3003036","oleB"]],"b":[["antibacterial/oleandomycin.html","oleandomycin"]]},{"id":"ARO:3003041","l":"Streptococcus pneumoniae PBP1a conferring resistance to amoxicillin","na":1,"nb":1,"a":[["ARO%3A3003041","Streptococcus pneumoniae PBP1a conferring resistance to amoxicillin"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3003042","l":"Streptococcus pneumoniae PBP2b conferring resistance to amoxicillin","na":1,"nb":1,"a":[["ARO%3A3003042","Streptococcus pneumoniae PBP2b conferring resistance to amoxicillin"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3003043","l":"Streptococcus pneumoniae PBP2x conferring resistance to amoxicillin","na":1,"nb":1,"a":[["ARO%3A3003043","Streptococcus pneumoniae PBP2x conferring resistance to amoxicillin"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3003059","l":"tmrB","na":1,"nb":1,"a":[["ARO%3A3003059","tmrB"]],"b":[["antibacterial/tunicamycin.html","tunicamycin"]]},{"id":"ARO:3003060","l":"tsnR","na":1,"nb":1,"a":[["ARO%3A3003060","tsnR"]],"b":[["antibacterial/thiostrepton.html","thiostrepton"]]},{"id":"ARO:3003061","l":"vph","na":1,"nb":1,"a":[["ARO%3A3003061","vph"]],"b":[["antimycobacterial/viomycin.html","viomycin"]]},{"id":"ARO:3003074","l":"Staphylococcus aureus cls conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003074","Staphylococcus aureus cls conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003077","l":"Enterococcus faecalis liaF mutant conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003077","Enterococcus faecalis liaF mutant conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003078","l":"Enterococcus faecium liaR mutant conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003078","Enterococcus faecium liaR mutant conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003079","l":"Enterococcus faecium liaS mutant conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003079","Enterococcus faecium liaS mutant conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003092","l":"Enterococcus faecium cls conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003092","Enterococcus faecium cls conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003105","l":"dfrA3","na":1,"nb":1,"a":[["ARO%3A3003105","dfrA3"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003109","l":"msrE","na":1,"nb":1,"a":[["ARO%3A3003109","msrE"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003157","l":"TEM-219","na":1,"nb":1,"a":[["ARO%3A3003157","TEM-219"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3003158","l":"TEM-220","na":1,"nb":1,"a":[["ARO%3A3003158","TEM-220"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3003193","l":"QnrVC7","na":1,"nb":1,"a":[["ARO%3A3003193","QnrVC7"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003196","l":"tet(45)","na":1,"nb":1,"a":[["ARO%3A3003196","tet(45)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003207","l":"FosK","na":1,"nb":1,"a":[["ARO%3A3003207","FosK"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003208","l":"FosXCC","na":1,"nb":1,"a":[["ARO%3A3003208","FosXCC"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003210","l":"FosA4","na":1,"nb":1,"a":[["ARO%3A3003210","FosA4"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003236","l":"Mycobacteroides abscessus 16S rRNA mutation conferring resistance to kanamycin","na":1,"nb":1,"a":[["ARO%3A3003236","Mycobacteroides abscessus 16S rRNA mutation conferring resistance to kanamycin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003237","l":"Mycobacteroides abscessus 16S rRNA mutation conferring resistance to tobramycin","na":1,"nb":1,"a":[["ARO%3A3003237","Mycobacteroides abscessus 16S rRNA mutation conferring resistance to tobramycin"]],"b":[["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3003238","l":"Mycobacteroides abscessus 16S rRNA mutation conferring resistance to neomycin","na":1,"nb":1,"a":[["ARO%3A3003238","Mycobacteroides abscessus 16S rRNA mutation conferring resistance to neomycin"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3003239","l":"Mycobacteroides abscessus 16S rRNA mutation conferring resistance to amikacin","na":1,"nb":1,"a":[["ARO%3A3003239","Mycobacteroides abscessus 16S rRNA mutation conferring resistance to amikacin"]],"b":[["antibacterial/amikacin.html","amikacin"]]},{"id":"ARO:3003240","l":"Mycobacteroides abscessus 16S rRNA mutation conferring resistance to gentamicin","na":1,"nb":1,"a":[["ARO%3A3003240","Mycobacteroides abscessus 16S rRNA mutation conferring resistance to gentamicin"]],"b":[["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3003287","l":"Staphylococcus aureus rpoB mutants conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003287","Staphylococcus aureus rpoB mutants conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003291","l":"Staphylococcus aureus rpoC conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003291","Staphylococcus aureus rpoC conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003319","l":"Staphylococcus aureus mprF with mutation conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003319","Staphylococcus aureus mprF with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003323","l":"Staphylococcus aureus pgsA mutations conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003323","Staphylococcus aureus pgsA mutations conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003324","l":"Bacillus subtilis mprF","na":1,"nb":1,"a":[["ARO%3A3003324","Bacillus subtilis mprF"]],"b":[["antibacterial/defensin.html","defensin"]]},{"id":"ARO:3003325","l":"Mycobacterium tuberculosis variant bovis embB with mutation conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3003325","Mycobacterium tuberculosis variant bovis embB with mutation conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003326","l":"Mycobacterium tuberculosis embB mutant conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3003326","Mycobacterium tuberculosis embB mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003327","l":"Mycobacterium tuberculosis embC mutant conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3003327","Mycobacterium tuberculosis embC mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003333","l":"Escherichia coli 16S rRNA (rrsC) mutation conferring resistance to kasugamicin","na":1,"nb":1,"a":[["ARO%3A3003333","Escherichia coli 16S rRNA (rrsC) mutation conferring resistance to kasugamicin"]],"b":[["antifungal/kasugamycin.html","kasugamycin"]]},{"id":"ARO:3003357","l":"Clostridioides difficile EF-Tu mutants conferring resistance to elfamycin","na":1,"nb":1,"a":[["ARO%3A3003357","Clostridioides difficile EF-Tu mutants conferring resistance to elfamycin"]],"b":[["antibacterial/lff571.html","LFF571"]]},{"id":"ARO:3003359","l":"Streptomyces cinnamoneus EF-Tu mutants conferring resistance to elfamycin","na":1,"nb":1,"a":[["ARO%3A3003359","Streptomyces cinnamoneus EF-Tu mutants conferring resistance to elfamycin"]],"b":[["antibacterial/kirromycin.html","kirromycin"]]},{"id":"ARO:3003361","l":"Planobispora rosea EF-Tu mutants conferring resistance to inhibitor GE2270A","na":1,"nb":1,"a":[["ARO%3A3003361","Planobispora rosea EF-Tu mutants conferring resistance to inhibitor GE2270A"]],"b":[["antibacterial/ge2270a.html","GE2270A"]]},{"id":"ARO:3003368","l":"Escherichia coli EF-Tu mutants conferring resistance to kirromycin","na":1,"nb":1,"a":[["ARO%3A3003368","Escherichia coli EF-Tu mutants conferring resistance to kirromycin"]],"b":[["antibacterial/kirromycin.html","kirromycin"]]},{"id":"ARO:3003369","l":"Escherichia coli EF-Tu mutants conferring resistance to Pulvomycin","na":1,"nb":1,"a":[["ARO%3A3003369","Escherichia coli EF-Tu mutants conferring resistance to Pulvomycin"]],"b":[["antibacterial/pulvomycin.html","pulvomycin"]]},{"id":"ARO:3003370","l":"Escherichia coli EF-Tu mutants conferring resistance to Enacyloxin IIa","na":1,"nb":1,"a":[["ARO%3A3003370","Escherichia coli EF-Tu mutants conferring resistance to Enacyloxin IIa"]],"b":[["antibacterial/enacyloxin-iia.html","enacyloxin IIa"]]},{"id":"ARO:3003372","l":"Escherichia coli 16S rRNA (rrsH) mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003372","Escherichia coli 16S rRNA (rrsH) mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003373","l":"Klebsiella pneumoniae acrR with mutation conferring multidrug antibiotic resistance","na":1,"nb":1,"a":[["ARO%3A3003373","Klebsiella pneumoniae acrR with mutation conferring multidrug antibiotic resistance"]],"b":[["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:3003376","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003376","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003377","l":"Escherichia coli 16S rRNA (rrnB) mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003377","Escherichia coli 16S rRNA (rrnB) mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003379","l":"Salmonella enterica ramR mutants","na":1,"nb":1,"a":[["ARO%3A3003379","Salmonella enterica ramR mutants"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003380","l":"Klebsiella pneumoniae ramR mutants","na":1,"nb":1,"a":[["ARO%3A3003380","Klebsiella pneumoniae ramR mutants"]],"b":[["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:3003382","l":"Salmonella enterica soxR with mutation conferring antibiotic resistance","na":1,"nb":1,"a":[["ARO%3A3003382","Salmonella enterica soxR with mutation conferring antibiotic resistance"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003383","l":"Salmonella serovars soxS with mutation conferring antibiotic resistance","na":1,"nb":1,"a":[["ARO%3A3003383","Salmonella serovars soxS with mutation conferring antibiotic resistance"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003389","l":"Mycobacterium leprae folP with mutation conferring resistance to dapsone","na":1,"nb":1,"a":[["ARO%3A3003389","Mycobacterium leprae folP with mutation conferring resistance to dapsone"]],"b":[["antimycobacterial/dapsone.html","dapsone"]]},{"id":"ARO:3003390","l":"Escherichia coli ompF with mutation conferring resistance to beta-lactam antibiotics","na":1,"nb":1,"a":[["ARO%3A3003390","Escherichia coli ompF with mutation conferring resistance to beta-lactam antibiotics"]],"b":[["antibacterial/cefepime.html","cefepime"]]},{"id":"ARO:3003392","l":"Mycobacterium tuberculosis katG mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3003392","Mycobacterium tuberculosis katG mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3003393","l":"Mycobacterium tuberculosis inhA mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3003393","Mycobacterium tuberculosis inhA mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3003396","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to gentamicin C","na":1,"nb":1,"a":[["ARO%3A3003396","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to gentamicin C"]],"b":[["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3003397","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to G418","na":1,"nb":1,"a":[["ARO%3A3003397","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to G418"]],"b":[["antibacterial/g418.html","G418"]]},{"id":"ARO:3003399","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to kanamycin A","na":1,"nb":1,"a":[["ARO%3A3003399","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to kanamycin A"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003402","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to neomycin","na":1,"nb":1,"a":[["ARO%3A3003402","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to neomycin"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3003403","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to paromomycin","na":1,"nb":1,"a":[["ARO%3A3003403","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to paromomycin"]],"b":[["antibacterial/paromomycin.html","paromomycin"]]},{"id":"ARO:3003405","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3003405","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003406","l":"Escherichia coli 16S rRNA (rrnB) mutation conferring resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3003406","Escherichia coli 16S rRNA (rrnB) mutation conferring resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003408","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to tobramycin","na":1,"nb":1,"a":[["ARO%3A3003408","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to tobramycin"]],"b":[["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3003410","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to tetracycline","na":1,"nb":1,"a":[["ARO%3A3003410","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to tetracycline"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003411","l":"Escherichia coli 16S rRNA (rrnB) mutation conferring resistance to tetracycline","na":1,"nb":1,"a":[["ARO%3A3003411","Escherichia coli 16S rRNA (rrnB) mutation conferring resistance to tetracycline"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003413","l":"pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004977","Mycobacterium tuberculosis gpsI with mutations conferring resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3003436","l":"Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to kanamycin","na":1,"nb":1,"a":[["ARO%3A3003436","Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to kanamycin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003437","l":"Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to viomycin","na":1,"nb":1,"a":[["ARO%3A3003437","Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to viomycin"]],"b":[["antimycobacterial/viomycin.html","viomycin"]]},{"id":"ARO:3003438","l":"Enterococcus faecium EF-Tu mutants conferring resistance to GE2270A","na":1,"nb":1,"a":[["ARO%3A3003438","Enterococcus faecium EF-Tu mutants conferring resistance to GE2270A"]],"b":[["antibacterial/ge2270a.html","GE2270A"]]},{"id":"ARO:3003440","l":"mecB","na":1,"nb":1,"a":[["ARO%3A3003440","mecB"]],"b":[["antibacterial/methicillin.html","methicillin"]]},{"id":"ARO:3003445","l":"Mycobacterium tuberculosis tlyA mutations conferring resistance to aminoglycosides","na":1,"nb":1,"a":[["ARO%3A3003445","Mycobacterium tuberculosis tlyA mutations conferring resistance to aminoglycosides"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003448","l":"Mycobacterium tuberculosis iniA mutant conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3003448","Mycobacterium tuberculosis iniA mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003451","l":"Mycobacterium tuberculosis iniC mutant conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3003451","Mycobacterium tuberculosis iniC mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003453","l":"Mycobacterium tuberculosis embA mutant conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3003453","Mycobacterium tuberculosis embA mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003455","l":"Mycobacterium tuberculosis embR mutant conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3003455","Mycobacterium tuberculosis embR mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003461","l":"Mycobacterium tuberculosis ndh with mutation conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3003461","Mycobacterium tuberculosis ndh with mutation conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3003463","l":"Mycobacterium tuberculosis kasA mutant conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3003463","Mycobacterium tuberculosis kasA mutant conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3003465","l":"Mycobacterium tuberculosis embB with mutation conferring resistance to rifampicin","na":1,"nb":1,"a":[["ARO%3A3003465","Mycobacterium tuberculosis embB with mutation conferring resistance to rifampicin"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3003470","l":"Mycobacterium tuberculosis gidB mutation conferring resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3003470","Mycobacterium tuberculosis gidB mutation conferring resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003480","l":"Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3003480","Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003481","l":"Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to amikacin","na":1,"nb":1,"a":[["ARO%3A3003481","Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to amikacin"]],"b":[["antibacterial/amikacin.html","amikacin"]]},{"id":"ARO:3003485","l":"Chlamydophila psittaci 16S rRNA mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003485","Chlamydophila psittaci 16S rRNA mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003493","l":"Pasteurella multocida 16S rRNA mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003493","Pasteurella multocida 16S rRNA mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003495","l":"Neisseria gonorrhoeae 16S rRNA mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003495","Neisseria gonorrhoeae 16S rRNA mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003497","l":"Neisseria meningitidis 16S rRNA mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003497","Neisseria meningitidis 16S rRNA mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003502","l":"Borreliella burgdorferi 16S rRNA mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003502","Borreliella burgdorferi 16S rRNA mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003503","l":"Borreliella burgdorferi 16S rRNA mutation conferring resistance to kanamycin","na":1,"nb":1,"a":[["ARO%3A3003503","Borreliella burgdorferi 16S rRNA mutation conferring resistance to kanamycin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003504","l":"Borreliella burgdorferi 16S rRNA mutation conferring resistance to gentamicin","na":1,"nb":1,"a":[["ARO%3A3003504","Borreliella burgdorferi 16S rRNA mutation conferring resistance to gentamicin"]],"b":[["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3003510","l":"Helicobacter pylori 16S rRNA mutation conferring resistance to tetracycline","na":1,"nb":1,"a":[["ARO%3A3003510","Helicobacter pylori 16S rRNA mutation conferring resistance to tetracycline"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003512","l":"Salmonella enterica 16S rRNA (rrsD) mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003512","Salmonella enterica 16S rRNA (rrsD) mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003514","l":"Mycobacteroides chelonae 16S rRNA mutation conferring resistance to amikacin","na":1,"nb":1,"a":[["ARO%3A3003514","Mycobacteroides chelonae 16S rRNA mutation conferring resistance to amikacin"]],"b":[["antibacterial/amikacin.html","amikacin"]]},{"id":"ARO:3003515","l":"Mycobacteroides chelonae 16S rRNA mutation conferring resistance to kanamycin A","na":1,"nb":1,"a":[["ARO%3A3003515","Mycobacteroides chelonae 16S rRNA mutation conferring resistance to kanamycin A"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003516","l":"Mycobacteroides chelonae 16S rRNA mutation conferring resistance to tobramycin","na":1,"nb":1,"a":[["ARO%3A3003516","Mycobacteroides chelonae 16S rRNA mutation conferring resistance to tobramycin"]],"b":[["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3003517","l":"Mycobacteroides chelonae 16S rRNA mutation conferring resistance to gentamicin C","na":1,"nb":1,"a":[["ARO%3A3003517","Mycobacteroides chelonae 16S rRNA mutation conferring resistance to gentamicin C"]],"b":[["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3003518","l":"Mycobacteroides chelonae 16S rRNA mutation conferring resistance to neomycin","na":1,"nb":1,"a":[["ARO%3A3003518","Mycobacteroides chelonae 16S rRNA mutation conferring resistance to neomycin"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3003539","l":"Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to hygromycin B","na":1,"nb":1,"a":[["ARO%3A3003539","Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to hygromycin B"]],"b":[["antibacterial/hygromycin-b.html","hygromycin B"]]},{"id":"ARO:3003540","l":"Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to hygromycin B","na":1,"nb":1,"a":[["ARO%3A3003540","Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to hygromycin B"]],"b":[["antibacterial/hygromycin-b.html","hygromycin B"]]},{"id":"ARO:3003541","l":"Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3003541","Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003542","l":"Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to kanamycin A","na":1,"nb":1,"a":[["ARO%3A3003542","Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to kanamycin A"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003543","l":"Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to kanamycin A","na":1,"nb":1,"a":[["ARO%3A3003543","Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to kanamycin A"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003544","l":"Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to neomycin","na":1,"nb":1,"a":[["ARO%3A3003544","Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to neomycin"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3003545","l":"Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to neomycin","na":1,"nb":1,"a":[["ARO%3A3003545","Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to neomycin"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3003546","l":"Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to viomycin","na":1,"nb":1,"a":[["ARO%3A3003546","Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to viomycin"]],"b":[["antimycobacterial/viomycin.html","viomycin"]]},{"id":"ARO:3003547","l":"Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to viomycin","na":1,"nb":1,"a":[["ARO%3A3003547","Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to viomycin"]],"b":[["antimycobacterial/viomycin.html","viomycin"]]},{"id":"ARO:3003551","l":"emeA","na":1,"nb":1,"a":[["ARO%3A3003551","emeA"]],"b":[["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3003552","l":"fusB","na":1,"nb":1,"a":[["ARO%3A3003552","fusB"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3003554","l":"tcmA","na":1,"nb":1,"a":[["ARO%3A3003554","tcmA"]],"b":[["antibacterial/tetracenomycin-c.html","tetracenomycin C"]]},{"id":"ARO:3003558","l":"y56 beta-lactamase","na":1,"nb":1,"a":[["ARO%3A3003558","y56 beta-lactamase"]],"b":[["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3003562","l":"blaF","na":1,"nb":1,"a":[["ARO%3A3003562","blaF"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3003576","l":"eptA","na":1,"nb":1,"a":[["ARO%3A3003576","eptA"]],"b":[["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3003577","l":"ugd","na":1,"nb":1,"a":[["ARO%3A3003577","ugd"]],"b":[["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3003678","l":"TriABC-OpmH","na":1,"nb":1,"a":[["ARO%3A3003678","TriABC-OpmH"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3003685","l":"Pseudomonas aeruginosa parE conferring resistance to fluoroquinolones","na":1,"nb":1,"a":[["ARO%3A3003685","Pseudomonas aeruginosa parE conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003691","l":"MexJK-OpmH","na":1,"nb":1,"a":[["ARO%3A3003691","MexJK-OpmH"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3003729","l":"Staphylococcus aureus ileS with mutation conferring resistance to mupirocin","na":1,"nb":1,"a":[["ARO%3A3003729","Staphylococcus aureus ileS with mutation conferring resistance to mupirocin"]],"b":[["antibacterial/mupirocin.html","mupirocin"]]},{"id":"ARO:3003730","l":"Bifidobacterium bifidum ileS conferring resistance to mupirocin","na":1,"nb":1,"a":[["ARO%3A3003730","Bifidobacterium bifidum ileS conferring resistance to mupirocin"]],"b":[["antibacterial/mupirocin.html","mupirocin"]]},{"id":"ARO:3003731","l":"fusD","na":1,"nb":1,"a":[["ARO%3A3003731","fusD"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3003733","l":"fusC","na":1,"nb":1,"a":[["ARO%3A3003733","fusC"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3003735","l":"Staphylococcus aureus fusA with mutation conferring resistance to fusidic acid","na":1,"nb":1,"a":[["ARO%3A3003735","Staphylococcus aureus fusA with mutation conferring resistance to fusidic acid"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3003737","l":"Staphylococcus aureus fusE with mutation conferring resistance to fusidic acid","na":1,"nb":1,"a":[["ARO%3A3003737","Staphylococcus aureus fusE with mutation conferring resistance to fusidic acid"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3003741","l":"mphE","na":1,"nb":1,"a":[["ARO%3A3003741","mphE"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003744","l":"vatF","na":1,"nb":1,"a":[["ARO%3A3003744","vatF"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3003745","l":"mef(C)","na":1,"nb":1,"a":[["ARO%3A3003745","mef(C)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"]]},{"id":"ARO:3003748","l":"oleC","na":1,"nb":1,"a":[["ARO%3A3003748","oleC"]],"b":[["antibacterial/oleandomycin.html","oleandomycin"]]},{"id":"ARO:3003756","l":"Escherichia coli nfsB with mutation conferring resistance to nitrofurantoin","na":1,"nb":1,"a":[["ARO%3A3003756","Escherichia coli nfsB with mutation conferring resistance to nitrofurantoin"]],"b":[["antibacterial/nitrofurantoin.html","nitrofurantoin"]]},{"id":"ARO:3003760","l":"Enterococcus faecalis cls with mutation conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003760","Enterococcus faecalis cls with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003761","l":"eatAv","na":1,"nb":1,"a":[["ARO%3A3003761","eatAv"]],"b":[["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"ARO:3003762","l":"lnuE","na":1,"nb":1,"a":[["ARO%3A3003762","lnuE"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3003767","l":"mphM","na":1,"nb":1,"a":[["ARO%3A3003767","mphM"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003769","l":"Staphylococcus aureus mprF","na":1,"nb":1,"a":[["ARO%3A3003769","Staphylococcus aureus mprF"]],"b":[["antibacterial/defensin.html","defensin"]]},{"id":"ARO:3003770","l":"Listeria monocytogenes mprF","na":1,"nb":1,"a":[["ARO%3A3003770","Listeria monocytogenes mprF"]],"b":[["antibacterial/defensin.html","defensin"]]},{"id":"ARO:3003772","l":"Brucella suis mprF","na":1,"nb":1,"a":[["ARO%3A3003772","Brucella suis mprF"]],"b":[["antibacterial/defensin.html","defensin"]]},{"id":"ARO:3003773","l":"Clostridium perfringens mprF","na":1,"nb":1,"a":[["ARO%3A3003773","Clostridium perfringens mprF"]],"b":[["antibacterial/defensin.html","defensin"]]},{"id":"ARO:3003774","l":"Streptococcus agalactiae mprF","na":1,"nb":1,"a":[["ARO%3A3003774","Streptococcus agalactiae mprF"]],"b":[["antibacterial/defensin.html","defensin"]]},{"id":"ARO:3003775","l":"Escherichia coli murA with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003775","Escherichia coli murA with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003776","l":"Staphylococcus aureus murA with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003776","Staphylococcus aureus murA with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003777","l":"Borreliella burgdorferi murA with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003777","Borreliella burgdorferi murA with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003778","l":"Mycolicibacterium smegmatis ndh with mutation conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3003778","Mycolicibacterium smegmatis ndh with mutation conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3003779","l":"Mycobacterium tuberculosis variant bovis ndh with mutation conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3003779","Mycobacterium tuberculosis variant bovis ndh with mutation conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3003784","l":"Mycobacterium tuberculosis intrinsic murA conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003784","Mycobacterium tuberculosis intrinsic murA conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003785","l":"Chlamydia trachomatis intrinsic murA conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003785","Chlamydia trachomatis intrinsic murA conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003788","l":"Bacillus subtilis pgsA with mutation conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003788","Bacillus subtilis pgsA with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003789","l":"Campylobacter jejuni gyrA conferring resistance to fluoroquinolones","na":1,"nb":1,"a":[["ARO%3A3003789","Campylobacter jejuni gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003790","l":"Enterococcus faecium liaF mutant conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003790","Enterococcus faecium liaF mutant conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003791","l":"Enterococcus faecalis liaS mutant conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003791","Enterococcus faecalis liaS mutant conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003792","l":"Enterococcus faecalis liaR mutant conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003792","Enterococcus faecalis liaR mutant conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003794","l":"Staphylococcus aureus walK with mutation conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003794","Staphylococcus aureus walK with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003797","l":"Enterococcus faecalis YybT with mutation conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003797","Enterococcus faecalis YybT with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003800","l":"Enterococcus faecalis gdpD with mutation conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003800","Enterococcus faecalis gdpD with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003801","l":"bcr-1","na":1,"nb":1,"a":[["ARO%3A3003801","bcr-1"]],"b":[["antibacterial/bicozamycin.html","bicozamycin"]]},{"id":"ARO:3003803","l":"Staphylococcus aureus agrA with mutation conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003803","Staphylococcus aureus agrA with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003805","l":"Enterococcus faecalis gshF with mutation conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003805","Enterococcus faecalis gshF with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003809","l":"Acinetobacter baumannii OprD conferring resistance to imipenem","na":1,"nb":1,"a":[["ARO%3A3003809","Acinetobacter baumannii OprD conferring resistance to imipenem"]],"b":[["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3003813","l":"Enterococcus faecalis drmA with mutation conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003813","Enterococcus faecalis drmA with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003815","l":"Enterococcus faecalis YvlB with mutation conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003815","Enterococcus faecalis YvlB with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003830","l":"Aminocoumarin resistant alaS","na":1,"nb":1,"a":[["ARO%3A3003830","Aminocoumarin resistant alaS"]],"b":[["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3003835","l":"cdeA","na":1,"nb":1,"a":[["ARO%3A3003835","cdeA"]],"b":[["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3003840","l":"aminocoumarin resistant cysB","na":1,"nb":1,"a":[["ARO%3A3003840","aminocoumarin resistant cysB"]],"b":[["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3003844","l":"mfd","na":1,"nb":1,"a":[["ARO%3A3003844","mfd"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003889","l":"Escherichia coli GlpT with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003889","Escherichia coli GlpT with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003890","l":"Escherichia coli UhpT with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003890","Escherichia coli UhpT with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003900","l":"Escherichia coli cyaA with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003900","Escherichia coli cyaA with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003901","l":"Staphylococcus aureus GlpT with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003901","Staphylococcus aureus GlpT with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003902","l":"Staphylococcus aureus UhpT with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003902","Staphylococcus aureus UhpT with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003917","l":"Staphylococcus aureus menA with mutation conferring resistance to lysocin","na":1,"nb":1,"a":[["ARO%3A3003917","Staphylococcus aureus menA with mutation conferring resistance to lysocin"]],"b":[["antibacterial/lysocin-e.html","lysocin E"]]},{"id":"ARO:3003918","l":"apmA","na":1,"nb":1,"a":[["ARO%3A3003918","apmA"]],"b":[["antibacterial/apramycin.html","apramycin"]]},{"id":"ARO:3003920","l":"pgpB","na":1,"nb":1,"a":[["ARO%3A3003920","pgpB"]],"b":[["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3003924","l":"Haemophilus parainfluenzae gyrA conferring resistance to fluoroquinolones","na":1,"nb":1,"a":[["ARO%3A3003924","Haemophilus parainfluenzae gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003925","l":"Haemophilus parainfluenzae parC conferring resistance to fluoroquinolones","na":1,"nb":1,"a":[["ARO%3A3003925","Haemophilus parainfluenzae parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003930","l":"rpsJ","na":1,"nb":1,"a":[["ARO%3A3003930","rpsJ"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003950","l":"msbA","na":1,"nb":1,"a":[["ARO%3A3003950","msbA"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3003952","l":"YojI","na":1,"nb":1,"a":[["ARO%3A3003952","YojI"]],"b":[["antibacterial/microcin-j25.html","microcin J25"]]},{"id":"ARO:3003954","l":"efmA","na":1,"nb":1,"a":[["ARO%3A3003954","efmA"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003970","l":"D-Ala-D-Ala ligase","na":1,"nb":1,"a":[["ARO%3A3003970","D-Ala-D-Ala ligase"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3003977","l":"Halobacterium salinarum 16S rRNA mutation conferring resistance to pactamycin","na":1,"nb":1,"a":[["ARO%3A3003977","Halobacterium salinarum 16S rRNA mutation conferring resistance to pactamycin"]],"b":[["antibacterial/pactamycin.html","pactamycin"]]},{"id":"ARO:3003978","l":"Chlamydomonas reinhardtii 16S rRNA (rrnS) mutation conferring resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3003978","Chlamydomonas reinhardtii 16S rRNA (rrnS) mutation conferring resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003980","l":"tetA(58)","na":1,"nb":1,"a":[["ARO%3A3003980","tetA(58)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003981","l":"tetB(58)","na":1,"nb":1,"a":[["ARO%3A3003981","tetB(58)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003982","l":"LlmA 23S ribosomal RNA methyltransferase","na":1,"nb":1,"a":[["ARO%3A3003982","LlmA 23S ribosomal RNA methyltransferase"]],"b":[["antibacterial/clindamycin.html","clindamycin"]]},{"id":"ARO:3003984","l":"BahA","na":1,"nb":1,"a":[["ARO%3A3003984","BahA"]],"b":[["antibacterial/bacitracin.html","bacitracin"]]},{"id":"ARO:3003986","l":"TaeA","na":1,"nb":1,"a":[["ARO%3A3003986","TaeA"]],"b":[["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"ARO:3003987","l":"VatI","na":1,"nb":1,"a":[["ARO%3A3003987","VatI"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3003988","l":"","na":1,"nb":1,"a":[["ARO%3A3003988","AAC(2')-IIb"]],"b":[["antifungal/kasugamycin.html","kasugamycin"]]},{"id":"ARO:3003989","l":"","na":1,"nb":1,"a":[["ARO%3A3003989","AAC(6')-34"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004031","l":"tetAB(46)","na":1,"nb":1,"a":[["ARO%3A3004031","tetAB(46)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004034","l":"tetAB(60)","na":1,"nb":1,"a":[["ARO%3A3004034","tetAB(60)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004038","l":"Pseudomonas aeruginosa emrE","na":1,"nb":1,"a":[["ARO%3A3004038","Pseudomonas aeruginosa emrE"]],"b":[["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3004039","l":"Escherichia coli emrE","na":1,"nb":1,"a":[["ARO%3A3004039","Escherichia coli emrE"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004041","l":"Klebsiella pneumoniae acrA","na":1,"nb":1,"a":[["ARO%3A3004041","Klebsiella pneumoniae acrA"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004042","l":"Enterobacter cloacae acrA","na":1,"nb":1,"a":[["ARO%3A3004042","Enterobacter cloacae acrA"]],"b":[["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:3004045","l":"Escherichia coli fabI mutations conferring resistance to isoniazid and triclosan","na":1,"nb":1,"a":[["ARO%3A3004045","Escherichia coli fabI mutations conferring resistance to isoniazid and triclosan"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3004046","l":"kdpDE","na":1,"nb":1,"a":[["ARO%3A3004046","kdpDE"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004049","l":"Escherichia coli fabG mutations conferring resistance to triclosan","na":1,"nb":1,"a":[["ARO%3A3004049","Escherichia coli fabG mutations conferring resistance to triclosan"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3004058","l":"Staphylococcus aureus 23S rRNA with mutation conferring resistance to linezolid","na":1,"nb":1,"a":[["ARO%3A3004058","Staphylococcus aureus 23S rRNA with mutation conferring resistance to linezolid"]],"b":[["antibacterial/linezolid.html","linezolid"]]},{"id":"ARO:3004083","l":"AcrEF-TolC confers resistance to ciprofloxacin","na":1,"nb":1,"a":[["ARO%3A3004083","AcrEF-TolC confers resistance to ciprofloxacin"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004085","l":"lnuG","na":1,"nb":1,"a":[["ARO%3A3004085","lnuG"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3004097","l":"Streptococcus mitis CdsA with mutation conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3004097","Streptococcus mitis CdsA with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3004105","l":"TMB-1","na":1,"nb":1,"a":[["ARO%3A3004105","TMB-1"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3004106","l":"TMB-2","na":1,"nb":1,"a":[["ARO%3A3004106","TMB-2"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3004111","l":"FosA6","na":1,"nb":1,"a":[["ARO%3A3004111","FosA6"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004113","l":"FosA7","na":1,"nb":1,"a":[["ARO%3A3004113","FosA7"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004124","l":"Moraxella catarrhalis M35","na":1,"nb":1,"a":[["ARO%3A3004124","Moraxella catarrhalis M35"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3004132","l":"Chlamydomonas reinhardtii 23S rRNA with mutation conferring resistance to erythromycin","na":1,"nb":1,"a":[["ARO%3A3004132","Chlamydomonas reinhardtii 23S rRNA with mutation conferring resistance to erythromycin"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004133","l":"Brachyspira hyodysenteriae 23S rRNA with mutation conferring resistance to tylosin","na":1,"nb":1,"a":[["ARO%3A3004133","Brachyspira hyodysenteriae 23S rRNA with mutation conferring resistance to tylosin"]],"b":[["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3004134","l":"Helicobacter pylori 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004134","Helicobacter pylori 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004135","l":"Mycobacterium tuberculosis iniB with mutation conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3004135","Mycobacterium tuberculosis iniB with mutation conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3004149","l":"Escherichia coli 23S rRNA with mutation conferring resistance to clindamycin","na":1,"nb":1,"a":[["ARO%3A3004149","Escherichia coli 23S rRNA with mutation conferring resistance to clindamycin"]],"b":[["antibacterial/clindamycin.html","clindamycin"]]},{"id":"ARO:3004150","l":"Escherichia coli 23S rRNA with mutation conferring resistance to chloramphenicol","na":1,"nb":1,"a":[["ARO%3A3004150","Escherichia coli 23S rRNA with mutation conferring resistance to chloramphenicol"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004153","l":"Mycobacterium tuberculosis thyA with mutation conferring resistance to para-aminosalicylic acid","na":1,"nb":1,"a":[["ARO%3A3004153","Mycobacterium tuberculosis thyA with mutation conferring resistance to para-aminosalicylic acid"]],"b":[["antimycobacterial/4-aminosalicylic-acid.html","4-aminosalicylic acid"]]},{"id":"ARO:3004157","l":"Mycobacterium tuberculosis folC with mutation conferring resistance to para-aminosalicylic acid","na":1,"nb":1,"a":[["ARO%3A3004157","Mycobacterium tuberculosis folC with mutation conferring resistance to para-aminosalicylic acid"]],"b":[["antimycobacterial/4-aminosalicylic-acid.html","4-aminosalicylic acid"]]},{"id":"ARO:3004159","l":"Mycoplasma gallisepticum 23S rRNA mutation conferring resistance to pleuromutilin antibiotics","na":1,"nb":1,"a":[["ARO%3A3004159","Mycoplasma gallisepticum 23S rRNA mutation conferring resistance to pleuromutilin antibiotics"]],"b":[["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"ARO:3004160","l":"Escherichia coli 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004160","Escherichia coli 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004161","l":"Propionibacteria 23S rRNA with mutation conferring resistance to macrolide antibiotics","na":1,"nb":1,"a":[["ARO%3A3004161","Propionibacteria 23S rRNA with mutation conferring resistance to macrolide antibiotics"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004163","l":"Mycobacteroides abscessus 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004163","Mycobacteroides abscessus 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004164","l":"Mycobacterium avium 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004164","Mycobacterium avium 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004165","l":"Mycobacteroides chelonae 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004165","Mycobacteroides chelonae 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004166","l":"Mycobacterium intracellulare 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004166","Mycobacterium intracellulare 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004167","l":"Mycobacterium intracellulare 23S rRNA with mutation conferring resistance to azithromycin","na":1,"nb":1,"a":[["ARO%3A3004167","Mycobacterium intracellulare 23S rRNA with mutation conferring resistance to azithromycin"]],"b":[["antibacterial/azithromycin.html","azithromycin"]]},{"id":"ARO:3004168","l":"Mycobacterium kansasii 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004168","Mycobacterium kansasii 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004169","l":"Mycolicibacterium smegmatis 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004169","Mycolicibacterium smegmatis 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004171","l":"Streptomyces ambofaciens 23S rRNA with mutation conferring resistance to macrolide antibiotics","na":1,"nb":1,"a":[["ARO%3A3004171","Streptomyces ambofaciens 23S rRNA with mutation conferring resistance to macrolide antibiotics"]],"b":[["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3004173","l":"Escherichia coli 23S rRNA with mutation conferring resistance to oxazolidinone antibiotics","na":1,"nb":1,"a":[["ARO%3A3004173","Escherichia coli 23S rRNA with mutation conferring resistance to oxazolidinone antibiotics"]],"b":[["antibacterial/linezolid.html","linezolid"]]},{"id":"ARO:3004179","l":"Mycoplasma pneumoniae 23S rRNA mutation conferring resistance to erythromycin","na":1,"nb":1,"a":[["ARO%3A3004179","Mycoplasma pneumoniae 23S rRNA mutation conferring resistance to erythromycin"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004180","l":"Halobacterium halobium 23S rRNA mutation conferring resistance to chloramphenicol","na":1,"nb":1,"a":[["ARO%3A3004180","Halobacterium halobium 23S rRNA mutation conferring resistance to chloramphenicol"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004184","l":"Mycobacterium tuberculosis ribD with mutation conferring resistance to para-aminosalicylic acid","na":1,"nb":1,"a":[["ARO%3A3004184","Mycobacterium tuberculosis ribD with mutation conferring resistance to para-aminosalicylic acid"]],"b":[["antimycobacterial/4-aminosalicylic-acid.html","4-aminosalicylic acid"]]},{"id":"ARO:3004185","l":"mecD","na":1,"nb":1,"a":[["ARO%3A3004185","mecD"]],"b":[["antibacterial/methicillin.html","methicillin"]]},{"id":"ARO:3004289","l":"Vibrio cholerae varG","na":1,"nb":1,"a":[["ARO%3A3004289","Vibrio cholerae varG"]],"b":[["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3004291","l":"Rhodobacter sphaeroides ampC beta-lactamase","na":1,"nb":1,"a":[["ARO%3A3004291","Rhodobacter sphaeroides ampC beta-lactamase"]],"b":[["antibacterial/benzylpenicillin.html","benzylpenicillin"]]},{"id":"ARO:3004334","l":"Salmonella enterica gyrA with mutation conferring resistance to triclosan","na":1,"nb":1,"a":[["ARO%3A3004334","Salmonella enterica gyrA with mutation conferring resistance to triclosan"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3004335","l":"Escherichia coli gyrA with mutation conferring resistance to triclosan","na":1,"nb":1,"a":[["ARO%3A3004335","Escherichia coli gyrA with mutation conferring resistance to triclosan"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3004357","l":"catV","na":1,"nb":1,"a":[["ARO%3A3004357","catV"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004361","l":"sul4","na":1,"nb":1,"a":[["ARO%3A3004361","sul4"]],"b":[["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3004450","l":"TRU-1","na":1,"nb":1,"a":[["ARO%3A3004450","TRU-1"]],"b":[["antibacterial/cefalotin.html","cefalotin"]]},{"id":"ARO:3004451","l":"Agrobacterium fabrum chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004451","Agrobacterium fabrum chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004452","l":"Alkalihalobacillus clausii chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004452","Alkalihalobacillus clausii chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004454","l":"Campylobacter coli chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004454","Campylobacter coli chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004455","l":"Streptococcus suis chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004455","Streptococcus suis chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004456","l":"Enterococcus faecium chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004456","Enterococcus faecium chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004457","l":"Staphylococcus intermedius chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004457","Staphylococcus intermedius chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004458","l":"Enterococcus faecalis chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004458","Enterococcus faecalis chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004460","l":"Vibrio anguillarum chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004460","Vibrio anguillarum chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004480","l":"Bifidobacterium adolescentis rpoB mutants conferring resistance to rifampicin","na":1,"nb":1,"a":[["ARO%3A3004480","Bifidobacterium adolescentis rpoB mutants conferring resistance to rifampicin"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3004498","l":"dfrB4","na":1,"nb":1,"a":[["ARO%3A3004498","dfrB4"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004539","l":"mphH","na":1,"nb":1,"a":[["ARO%3A3004539","mphH"]],"b":[["antibacterial/azithromycin.html","azithromycin"]]},{"id":"ARO:3004542","l":"mphN","na":1,"nb":1,"a":[["ARO%3A3004542","mphN"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004543","l":"mphO","na":1,"nb":1,"a":[["ARO%3A3004543","mphO"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004546","l":"Campylobacter jejuni 23S rRNA with mutation conferring resistance to erythromycin","na":1,"nb":1,"a":[["ARO%3A3004546","Campylobacter jejuni 23S rRNA with mutation conferring resistance to erythromycin"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004547","l":"dfrA6","na":1,"nb":1,"a":[["ARO%3A3004547","dfrA6"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004548","l":"dfrA9","na":1,"nb":1,"a":[["ARO%3A3004548","dfrA9"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004549","l":"dfrB5","na":1,"nb":1,"a":[["ARO%3A3004549","dfrB5"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004550","l":"dfrA27","na":1,"nb":1,"a":[["ARO%3A3004550","dfrA27"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004551","l":"dfrA28","na":1,"nb":1,"a":[["ARO%3A3004551","dfrA28"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004552","l":"dfrA30","na":1,"nb":1,"a":[["ARO%3A3004552","dfrA30"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004554","l":"dfrA29","na":1,"nb":1,"a":[["ARO%3A3004554","dfrA29"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004555","l":"dfrA32","na":1,"nb":1,"a":[["ARO%3A3004555","dfrA32"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004556","l":"dfrB7","na":1,"nb":1,"a":[["ARO%3A3004556","dfrB7"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004561","l":"Clostridioides difficile murG with mutation conferring resistance to vancomycin","na":1,"nb":1,"a":[["ARO%3A3004561","Clostridioides difficile murG with mutation conferring resistance to vancomycin"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3004568","l":"dfrA18","na":1,"nb":1,"a":[["ARO%3A3004568","dfrA18"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004573","l":"Acinetobacter baumannii AbaF","na":1,"nb":1,"a":[["ARO%3A3004573","Acinetobacter baumannii AbaF"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004601","l":"LnuP","na":1,"nb":1,"a":[["ARO%3A3004601","LnuP"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3004605","l":"ermZ","na":1,"nb":1,"a":[["ARO%3A3004605","ermZ"]],"b":[["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3004608","l":"EreD","na":1,"nb":1,"a":[["ARO%3A3004608","EreD"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004622","l":"QnrS10","na":1,"nb":1,"a":[["ARO%3A3004622","QnrS10"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004624","l":"QnrS11","na":1,"nb":1,"a":[["ARO%3A3004624","QnrS11"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004625","l":"QnrS12","na":1,"nb":1,"a":[["ARO%3A3004625","QnrS12"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004627","l":"QnrS15","na":1,"nb":1,"a":[["ARO%3A3004627","QnrS15"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004628","l":"","na":1,"nb":1,"a":[["ARO%3A3004628","AAC(2')-IIa"]],"b":[["antifungal/kasugamycin.html","kasugamycin"]]},{"id":"ARO:3004630","l":"Mycoplasma genitalium parC mutations confers resistance to Moxifloxacin","na":1,"nb":1,"a":[["ARO%3A3004630","Mycoplasma genitalium parC mutations confers resistance to Moxifloxacin"]],"b":[["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3004631","l":"Mycoplasma genitalium gyrA mutation confers resistance to fluoroquinolones","na":1,"nb":1,"a":[["ARO%3A3004631","Mycoplasma genitalium gyrA mutation confers resistance to fluoroquinolones"]],"b":[["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3004636","l":"qnrE1","na":1,"nb":1,"a":[["ARO%3A3004636","qnrE1"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004637","l":"qnrE2","na":1,"nb":1,"a":[["ARO%3A3004637","qnrE2"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004640","l":"dfrA15b","na":1,"nb":1,"a":[["ARO%3A3004640","dfrA15b"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004642","l":"dfrA3b","na":1,"nb":1,"a":[["ARO%3A3004642","dfrA3b"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004643","l":"Erm(K)","na":1,"nb":1,"a":[["ARO%3A3004643","Erm(K)"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004644","l":"dfrA6 from Proteus mirabilis","na":1,"nb":1,"a":[["ARO%3A3004644","dfrA6 from Proteus mirabilis"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004645","l":"dfrI","na":1,"nb":1,"a":[["ARO%3A3004645","dfrI"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004651","l":"lin","na":1,"nb":1,"a":[["ARO%3A3004651","lin"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3004653","l":"tetR(G)","na":1,"nb":1,"a":[["ARO%3A3004653","tetR(G)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004655","l":"nimB","na":1,"nb":1,"a":[["ARO%3A3004655","nimB"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3004656","l":"catII from Escherichia coli K-12","na":1,"nb":1,"a":[["ARO%3A3004656","catII from Escherichia coli K-12"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004657","l":"catA4","na":1,"nb":1,"a":[["ARO%3A3004657","catA4"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004658","l":"catA8","na":1,"nb":1,"a":[["ARO%3A3004658","catA8"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004659","l":"Mef(En2)","na":1,"nb":1,"a":[["ARO%3A3004659","Mef(En2)"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3004660","l":"catB11","na":1,"nb":1,"a":[["ARO%3A3004660","catB11"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004661","l":"Staphylococcus aureus FosB","na":1,"nb":1,"a":[["ARO%3A3004661","Staphylococcus aureus FosB"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004663","l":"FusF","na":1,"nb":1,"a":[["ARO%3A3004663","FusF"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3004665","l":"cmlA8","na":1,"nb":1,"a":[["ARO%3A3004665","cmlA8"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004669","l":"emtA","na":1,"nb":1,"a":[["ARO%3A3004669","emtA"]],"b":[["antibacterial/evernimicin.html","evernimicin"]]},{"id":"ARO:3004670","l":"FosB1","na":1,"nb":1,"a":[["ARO%3A3004670","FosB1"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004671","l":"FosB4","na":1,"nb":1,"a":[["ARO%3A3004671","FosB4"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004672","l":"FosB5","na":1,"nb":1,"a":[["ARO%3A3004672","FosB5"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004673","l":"FosB6","na":1,"nb":1,"a":[["ARO%3A3004673","FosB6"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004674","l":"FosD","na":1,"nb":1,"a":[["ARO%3A3004674","FosD"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004681","l":"Clostridioides difficile rpoC with mutation conferring resistance to vancomycin","na":1,"nb":1,"a":[["ARO%3A3004681","Clostridioides difficile rpoC with mutation conferring resistance to vancomycin"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3004683","l":"aadS","na":1,"nb":1,"a":[["ARO%3A3004683","aadS"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004699","l":"sta","na":1,"nb":1,"a":[["ARO%3A3004699","sta"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"]]},{"id":"ARO:3004730","l":"tva(A)","na":1,"nb":1,"a":[["ARO%3A3004730","tva(A)"]],"b":[["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"ARO:3004835","l":"Neisseria gonorrhoeae pilQ gene conferring resistance to beta-lactam","na":1,"nb":1,"a":[["ARO%3A3004835","Neisseria gonorrhoeae pilQ gene conferring resistance to beta-lactam"]],"b":[["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3004836","l":"Neisseria gonorrhoeae 23S rRNA with mutation conferring resistance to azithromycin","na":1,"nb":1,"a":[["ARO%3A3004836","Neisseria gonorrhoeae 23S rRNA with mutation conferring resistance to azithromycin"]],"b":[["antibacterial/azithromycin.html","azithromycin"]]},{"id":"ARO:3004859","l":"Neisseria gonorrhoeae gyrB conferring resistance to zoliflodacin","na":1,"nb":1,"a":[["ARO%3A3004859","Neisseria gonorrhoeae gyrB conferring resistance to zoliflodacin"]],"b":[["antibacterial/zoliflodacin.html","zoliflodacin"]]},{"id":"ARO:3004860","l":"Burkholderia dolosa gyrA conferring resistance to fluoroquinolones","na":1,"nb":1,"a":[["ARO%3A3004860","Burkholderia dolosa gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004873","l":"Neisseria gonorrhoeae folP with mutation conferring resistance to sulfonamides","na":1,"nb":1,"a":[["ARO%3A3004873","Neisseria gonorrhoeae folP with mutation conferring resistance to sulfonamides"]],"b":[["antibacterial/sulfisoxazole.html","sulfisoxazole"]]},{"id":"ARO:3004876","l":"Mycobacterium tuberculosis inhA mutations conferring resistance to ethionamide","na":1,"nb":1,"a":[["ARO%3A3004876","Mycobacterium tuberculosis inhA mutations conferring resistance to ethionamide"]],"b":[["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"ARO:3004921","l":"Mycobacterium tuberculosis ahpC mutations confer resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004921","Mycobacterium tuberculosis ahpC mutations confer resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004922","l":"Mycobacterium tuberculosis fabG1 mutations confer resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004922","Mycobacterium tuberculosis fabG1 mutations confer resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004923","l":"Mycobacterium tuberculosis furA mutations confer resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004923","Mycobacterium tuberculosis furA mutations confer resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004924","l":"Mycobacterium tuberculosis inbR mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004924","Mycobacterium tuberculosis inbR mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004925","l":"Mycobacterium tuberculosis mshA mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004925","Mycobacterium tuberculosis mshA mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004927","l":"Mycobacterium tuberculosis mshC mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004927","Mycobacterium tuberculosis mshC mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004928","l":"Mycobacterium tuberculosis mymA mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004928","Mycobacterium tuberculosis mymA mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004929","l":"Mycobacterium tuberculosis mmaA3 mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004929","Mycobacterium tuberculosis mmaA3 mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004931","l":"Mycobacterium tuberculosis nudC mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004931","Mycobacterium tuberculosis nudC mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004932","l":"Mycobacterium tuberculosis sigI mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004932","Mycobacterium tuberculosis sigI mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004933","l":"Mycobacterium tuberculosis fabG1 mutation conferring resistance to ethionamide","na":1,"nb":1,"a":[["ARO%3A3004933","Mycobacterium tuberculosis fabG1 mutation conferring resistance to ethionamide"]],"b":[["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"ARO:3004934","l":"Mycobacterium tuberculosis mshC mutations conferring resistance to ethionamide","na":1,"nb":1,"a":[["ARO%3A3004934","Mycobacterium tuberculosis mshC mutations conferring resistance to ethionamide"]],"b":[["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"ARO:3004935","l":"Mycobacterium tuberculosis nudC mutations conferring resistance to ethionamide","na":1,"nb":1,"a":[["ARO%3A3004935","Mycobacterium tuberculosis nudC mutations conferring resistance to ethionamide"]],"b":[["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"ARO:3004941","l":"Mycobacterium tuberculosis ddlA mutations confer resistance to cycloserine","na":1,"nb":1,"a":[["ARO%3A3004941","Mycobacterium tuberculosis ddlA mutations confer resistance to cycloserine"]],"b":[["antimycobacterial/d-cycloserine.html","D-cycloserine"]]},{"id":"ARO:3004945","l":"Mycobacterium tuberculosis ald mutations confer resistance to cycloserine","na":1,"nb":1,"a":[["ARO%3A3004945","Mycobacterium tuberculosis ald mutations confer resistance to cycloserine"]],"b":[["antimycobacterial/d-cycloserine.html","D-cycloserine"]]},{"id":"ARO:3004947","l":"Mycobacterium tuberculosis alr with mutation conferring resistance to cycloserine","na":1,"nb":1,"a":[["ARO%3A3004947","Mycobacterium tuberculosis alr with mutation conferring resistance to cycloserine"]],"b":[["antimycobacterial/d-cycloserine.html","D-cycloserine"]]},{"id":"ARO:3004950","l":"Mycobacterium tuberculosis ubiA mutations confer resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3004950","Mycobacterium tuberculosis ubiA mutations confer resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3004951","l":"Mycobacterium tuberculosis aftA mutations confer resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3004951","Mycobacterium tuberculosis aftA mutations confer resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3004955","l":"Mycobacterium tuberculosis Rv0565c mutation conferring resistance to ethionamide","na":1,"nb":1,"a":[["ARO%3A3004955","Mycobacterium tuberculosis Rv0565c mutation conferring resistance to ethionamide"]],"b":[["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"ARO:3004956","l":"Neisseria gonorrhoeae rpld","na":1,"nb":1,"a":[["ARO%3A3004956","Neisseria gonorrhoeae rpld"]],"b":[["antibacterial/azithromycin.html","azithromycin"]]},{"id":"ARO:3004957","l":"Mycobacterium tuberculosis clpC1 with mutation conferring resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004957","Mycobacterium tuberculosis clpC1 with mutation conferring resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004963","l":"Mycobacterium tuberculosis eis mutations confer resistance to kanamycin","na":1,"nb":1,"a":[["ARO%3A3004963","Mycobacterium tuberculosis eis mutations confer resistance to kanamycin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004967","l":"Mycobacterium tuberculosis whib7 mutations confer resistance to kanamycin","na":1,"nb":1,"a":[["ARO%3A3004967","Mycobacterium tuberculosis whib7 mutations confer resistance to kanamycin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004968","l":"Mycobacterium tuberculosis whib7 mutation conferring resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3004968","Mycobacterium tuberculosis whib7 mutation conferring resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004971","l":"Mycobacterium tuberculosis Rv1258c mutations confer resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3004971","Mycobacterium tuberculosis Rv1258c mutations confer resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004975","l":"Mycobacterium tuberculosis ppsC mutations confer resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004975","Mycobacterium tuberculosis ppsC mutations confer resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004976","l":"Mycobacterium tuberculosis ppsD mutations confer resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004976","Mycobacterium tuberculosis ppsD mutations confer resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004977","l":"Mycobacterium tuberculosis gpsI with mutations conferring resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004977","Mycobacterium tuberculosis gpsI with mutations conferring resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004978","l":"Mycobacterium tuberculosis mas mutations confer resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004978","Mycobacterium tuberculosis mas mutations confer resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004981","l":"Mycobacterium tuberculosis Rv0191 mutations confer resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004981","Mycobacterium tuberculosis Rv0191 mutations confer resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004984","l":"Mycobacterium tuberculosis Rv1667 mutations confer resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004984","Mycobacterium tuberculosis Rv1667 mutations confer resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004987","l":"Mycobacterium tuberculosis Rv2731 mutations confer resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004987","Mycobacterium tuberculosis Rv2731 mutations confer resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004993","l":"Mycobacterium tuberculosis Rv3169 mutations confer resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004993","Mycobacterium tuberculosis Rv3169 mutations confer resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004999","l":"Mycobacterium tuberculosis rpoA mutations confer resistance to rifampicin","na":1,"nb":1,"a":[["ARO%3A3004999","Mycobacterium tuberculosis rpoA mutations confer resistance to rifampicin"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3005006","l":"tet(57)","na":1,"nb":1,"a":[["ARO%3A3005006","tet(57)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3005007","l":"QnrVC2","na":1,"nb":1,"a":[["ARO%3A3005007","QnrVC2"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3005024","l":"FosL1","na":1,"nb":1,"a":[["ARO%3A3005024","FosL1"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3005036","l":"BLMT","na":1,"nb":1,"a":[["ARO%3A3005036","BLMT"]],"b":[["antibacterial/bleomycin.html","bleomycin"]]},{"id":"ARO:3005043","l":"cmlA9","na":1,"nb":1,"a":[["ARO%3A3005043","cmlA9"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3005045","l":"SatA","na":1,"nb":1,"a":[["ARO%3A3005045","SatA"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"]]},{"id":"ARO:3005058","l":"mlaFEDB","na":1,"nb":1,"a":[["ARO%3A3005058","mlaFEDB"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3005083","l":"Thermus thermophilus 23s rRNA conferring resistance to pleuromutilin antibiotics","na":1,"nb":1,"a":[["ARO%3A3005083","Thermus thermophilus 23s rRNA conferring resistance to pleuromutilin antibiotics"]],"b":[["antibacterial/tiamulin.html","tiamulin"]]},{"id":"ARO:3005084","l":"dfrA31","na":1,"nb":1,"a":[["ARO%3A3005084","dfrA31"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005087","l":"msrF","na":1,"nb":1,"a":[["ARO%3A3005087","msrF"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3005088","l":"msrH","na":1,"nb":1,"a":[["ARO%3A3005088","msrH"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3005089","l":"mef(D)","na":1,"nb":1,"a":[["ARO%3A3005089","mef(D)"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3005099","l":"23S rRNA (adenine(2058)-N(6))-methyltransferase Erm(A)","na":1,"nb":1,"a":[["ARO%3A3005099","23S rRNA (adenine(2058)-N(6))-methyltransferase Erm(A)"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3005100","l":"FosB2","na":1,"nb":1,"a":[["ARO%3A3005100","FosB2"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3005102","l":"Mycobacterium tuberculosis katG mutations conferring resistance to prothionamide","na":1,"nb":1,"a":[["ARO%3A3005102","Mycobacterium tuberculosis katG mutations conferring resistance to prothionamide"]],"b":[["antibacterial/prothionamide.html","prothionamide"]]},{"id":"ARO:3005105","l":"Mycobacterium tuberculosis ethA mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3005105","Mycobacterium tuberculosis ethA mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3005106","l":"Mycobacterium tuberculosis ethA mutations conferring resistance to prothionamide","na":1,"nb":1,"a":[["ARO%3A3005106","Mycobacterium tuberculosis ethA mutations conferring resistance to prothionamide"]],"b":[["antibacterial/prothionamide.html","prothionamide"]]},{"id":"ARO:3005108","l":"Mycobacterium tuberculosis mshA mutations conferring resistance to prothionamide","na":1,"nb":1,"a":[["ARO%3A3005108","Mycobacterium tuberculosis mshA mutations conferring resistance to prothionamide"]],"b":[["antibacterial/prothionamide.html","prothionamide"]]},{"id":"ARO:3005162","l":"FosA7.5","na":1,"nb":1,"a":[["ARO%3A3005162","FosA7.5"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3005164","l":"dfrA35","na":1,"nb":1,"a":[["ARO%3A3005164","dfrA35"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005178","l":"Mycobacterium tuberculosis ethA mutations conferring resistance to perchlozone","na":1,"nb":1,"a":[["ARO%3A3005178","Mycobacterium tuberculosis ethA mutations conferring resistance to perchlozone"]],"b":[["antibacterial/perchlozone.html","perchlozone"]]},{"id":"ARO:3005255","l":"TEM-224","na":1,"nb":1,"a":[["ARO%3A3005255","TEM-224"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005256","l":"TEM-225","na":1,"nb":1,"a":[["ARO%3A3005256","TEM-225"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005257","l":"TEM-226","na":1,"nb":1,"a":[["ARO%3A3005257","TEM-226"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005258","l":"TEM-227","na":1,"nb":1,"a":[["ARO%3A3005258","TEM-227"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005259","l":"TEM-228","na":1,"nb":1,"a":[["ARO%3A3005259","TEM-228"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005260","l":"TEM-229","na":1,"nb":1,"a":[["ARO%3A3005260","TEM-229"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005261","l":"TEM-230","na":1,"nb":1,"a":[["ARO%3A3005261","TEM-230"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005262","l":"TEM-231","na":1,"nb":1,"a":[["ARO%3A3005262","TEM-231"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005263","l":"TEM-232","na":1,"nb":1,"a":[["ARO%3A3005263","TEM-232"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005264","l":"TEM-233","na":1,"nb":1,"a":[["ARO%3A3005264","TEM-233"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005265","l":"TEM-234","na":1,"nb":1,"a":[["ARO%3A3005265","TEM-234"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005266","l":"TEM-235","na":1,"nb":1,"a":[["ARO%3A3005266","TEM-235"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005267","l":"TEM-236","na":1,"nb":1,"a":[["ARO%3A3005267","TEM-236"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005268","l":"TEM-237","na":1,"nb":1,"a":[["ARO%3A3005268","TEM-237"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005269","l":"TEM-238","na":1,"nb":1,"a":[["ARO%3A3005269","TEM-238"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005270","l":"TEM-240","na":1,"nb":1,"a":[["ARO%3A3005270","TEM-240"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005271","l":"TEM-241","na":1,"nb":1,"a":[["ARO%3A3005271","TEM-241"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005272","l":"TEM-242","na":1,"nb":1,"a":[["ARO%3A3005272","TEM-242"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005273","l":"TEM-243","na":1,"nb":1,"a":[["ARO%3A3005273","TEM-243"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005334","l":"Trimethoprim-resistant dihydrofolate reductase DfrA42","na":1,"nb":1,"a":[["ARO%3A3005334","Trimethoprim-resistant dihydrofolate reductase DfrA42"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005345","l":"Trimethoprim-resistant dihydrofolate reductase DfrA43","na":1,"nb":1,"a":[["ARO%3A3005345","Trimethoprim-resistant dihydrofolate reductase DfrA43"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005346","l":"DfrA34","na":1,"nb":1,"a":[["ARO%3A3005346","DfrA34"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005347","l":"DfrA37","na":1,"nb":1,"a":[["ARO%3A3005347","DfrA37"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005348","l":"DfrA36","na":1,"nb":1,"a":[["ARO%3A3005348","DfrA36"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005349","l":"DfrA38","na":1,"nb":1,"a":[["ARO%3A3005349","DfrA38"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005350","l":"DfrB9","na":1,"nb":1,"a":[["ARO%3A3005350","DfrB9"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005351","l":"DfrA39","na":1,"nb":1,"a":[["ARO%3A3005351","DfrA39"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005354","l":"dfr22","na":1,"nb":1,"a":[["ARO%3A3005354","dfr22"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3006139","l":"TEM-98","na":1,"nb":1,"a":[["ARO%3A3006139","TEM-98"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3006140","l":"TEM-99","na":1,"nb":1,"a":[["ARO%3A3006140","TEM-99"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3006228","l":"ACC-1a","na":1,"nb":1,"a":[["ARO%3A3006228","ACC-1a"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3006229","l":"ACC-1b","na":1,"nb":1,"a":[["ARO%3A3006229","ACC-1b"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3006230","l":"ACC-1c","na":1,"nb":1,"a":[["ARO%3A3006230","ACC-1c"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3006231","l":"ACC-1d","na":1,"nb":1,"a":[["ARO%3A3006231","ACC-1d"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3006232","l":"ACC-7","na":1,"nb":1,"a":[["ARO%3A3006232","ACC-7"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3006233","l":"ACC-8","na":1,"nb":1,"a":[["ARO%3A3006233","ACC-8"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007003","l":"VHH-1","na":1,"nb":1,"a":[["ARO%3A3007003","VHH-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"]]},{"id":"ARO:3007004","l":"VHW-1","na":1,"nb":1,"a":[["ARO%3A3007004","VHW-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"]]},{"id":"ARO:3007005","l":"YEM-1","na":1,"nb":1,"a":[["ARO%3A3007005","YEM-1"]],"b":[["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3007012","l":"sepA","na":1,"nb":1,"a":[["ARO%3A3007012","sepA"]],"b":[["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3007013","l":"sdrM","na":1,"nb":1,"a":[["ARO%3A3007013","sdrM"]],"b":[["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3007014","l":"qacJ","na":1,"nb":1,"a":[["ARO%3A3007014","qacJ"]],"b":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"]]},{"id":"ARO:3007015","l":"qacG","na":1,"nb":1,"a":[["ARO%3A3007015","qacG"]],"b":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"]]},{"id":"ARO:3007019","l":"fexB","na":1,"nb":1,"a":[["ARO%3A3007019","fexB"]],"b":[["antibacterial/florfenicol.html","florfenicol"]]},{"id":"ARO:3007041","l":"Erm(52)","na":1,"nb":1,"a":[["ARO%3A3007041","Erm(52)"]],"b":[["antibacterial/clindamycin.html","clindamycin"]]},{"id":"ARO:3007043","l":"msr(I)","na":1,"nb":1,"a":[["ARO%3A3007043","msr(I)"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007052","l":"Helicobacter pylori gyrA conferring resistance to fluoroquinolones","na":1,"nb":1,"a":[["ARO%3A3007052","Helicobacter pylori gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"ARO:3007057","l":"Helicobacter pylori pbp3 conferring resistance to amoxicillin","na":1,"nb":1,"a":[["ARO%3A3007057","Helicobacter pylori pbp3 conferring resistance to amoxicillin"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3007058","l":"Helicobacter pylori pbp2 mutants conferring resistance to amoxicillin","na":1,"nb":1,"a":[["ARO%3A3007058","Helicobacter pylori pbp2 mutants conferring resistance to amoxicillin"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3007059","l":"Helicobacter pylori frxA mutation conferring resistance to metronidazole","na":1,"nb":1,"a":[["ARO%3A3007059","Helicobacter pylori frxA mutation conferring resistance to metronidazole"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007060","l":"Helicobacter pylori pbp1 mutants conferring resistance to amoxicillin","na":1,"nb":1,"a":[["ARO%3A3007060","Helicobacter pylori pbp1 mutants conferring resistance to amoxicillin"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3007061","l":"hp1165","na":1,"nb":1,"a":[["ARO%3A3007061","hp1165"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007069","l":"FosY","na":1,"nb":1,"a":[["ARO%3A3007069","FosY"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007073","l":"Bacillus subtilis rpoB mutants conferring resistance to rifampin","na":1,"nb":1,"a":[["ARO%3A3007073","Bacillus subtilis rpoB mutants conferring resistance to rifampin"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3007097","l":"FosM1","na":1,"nb":1,"a":[["ARO%3A3007097","FosM1"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007098","l":"FosM2","na":1,"nb":1,"a":[["ARO%3A3007098","FosM2"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007099","l":"FosM3","na":1,"nb":1,"a":[["ARO%3A3007099","FosM3"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007104","l":"nimA","na":1,"nb":1,"a":[["ARO%3A3007104","nimA"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007105","l":"nimC","na":1,"nb":1,"a":[["ARO%3A3007105","nimC"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007106","l":"nimD","na":1,"nb":1,"a":[["ARO%3A3007106","nimD"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007107","l":"nimE","na":1,"nb":1,"a":[["ARO%3A3007107","nimE"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007108","l":"nimF","na":1,"nb":1,"a":[["ARO%3A3007108","nimF"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007109","l":"nimG","na":1,"nb":1,"a":[["ARO%3A3007109","nimG"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007110","l":"nimH","na":1,"nb":1,"a":[["ARO%3A3007110","nimH"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007111","l":"nimI","na":1,"nb":1,"a":[["ARO%3A3007111","nimI"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007112","l":"nimJ","na":1,"nb":1,"a":[["ARO%3A3007112","nimJ"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007113","l":"nimK","na":1,"nb":1,"a":[["ARO%3A3007113","nimK"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007119","l":"tet(O/32/O)","na":1,"nb":1,"a":[["ARO%3A3007119","tet(O/32/O)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007120","l":"tet(O/M/O)","na":1,"nb":1,"a":[["ARO%3A3007120","tet(O/M/O)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007121","l":"tet(O/W)","na":1,"nb":1,"a":[["ARO%3A3007121","tet(O/W)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007122","l":"tet(O/W/32/O)","na":1,"nb":1,"a":[["ARO%3A3007122","tet(O/W/32/O)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007123","l":"tet(O/W/O)","na":1,"nb":1,"a":[["ARO%3A3007123","tet(O/W/O)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007124","l":"tet(W/32/O)","na":1,"nb":1,"a":[["ARO%3A3007124","tet(W/32/O)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007127","l":"Streptomyces lividans otr(A)","na":1,"nb":1,"a":[["ARO%3A3007127","Streptomyces lividans otr(A)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007185","l":"Mycobacterium tuberculosis Rv1258c mutations confer resistance to ethambutol and capreomycin","na":1,"nb":1,"a":[["ARO%3A3007185","Mycobacterium tuberculosis Rv1258c mutations confer resistance to ethambutol and capreomycin"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3007200","l":"PAM-2","na":1,"nb":1,"a":[["ARO%3A3007200","PAM-2"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007210","l":"Nocardia farcinica rox","na":1,"nb":1,"a":[["ARO%3A3007210","Nocardia farcinica rox"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3007368","l":"FosG","na":1,"nb":1,"a":[["ARO%3A3007368","FosG"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007369","l":"FosH","na":1,"nb":1,"a":[["ARO%3A3007369","FosH"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007370","l":"FosI","na":1,"nb":1,"a":[["ARO%3A3007370","FosI"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007371","l":"FosA8","na":1,"nb":1,"a":[["ARO%3A3007371","FosA8"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007372","l":"FosBx1","na":1,"nb":1,"a":[["ARO%3A3007372","FosBx1"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007381","l":"KPC-86","na":1,"nb":1,"a":[["ARO%3A3007381","KPC-86"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007383","l":"KPC-95","na":1,"nb":1,"a":[["ARO%3A3007383","KPC-95"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007401","l":"ANT(9)-Ib","na":1,"nb":1,"a":[["ARO%3A3007401","ANT(9)-Ib"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3007420","l":"Klebsiella pneumoniae lamB with mutations conferring resistance to ceftazidime-avibactam","na":1,"nb":1,"a":[["ARO%3A3007420","Klebsiella pneumoniae lamB with mutations conferring resistance to ceftazidime-avibactam"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007421","l":"Klebsiella pneumoniae PBP3 mutants conferring resistance to ceftazidime-avibactam","na":1,"nb":1,"a":[["ARO%3A3007421","Klebsiella pneumoniae PBP3 mutants conferring resistance to ceftazidime-avibactam"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007427","l":"ThfT","na":1,"nb":1,"a":[["ARO%3A3007427","ThfT"]],"b":[["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3007436","l":"KPC-96","na":1,"nb":1,"a":[["ARO%3A3007436","KPC-96"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007446","l":"KPC-100","na":1,"nb":1,"a":[["ARO%3A3007446","KPC-100"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007448","l":"TEM-246","na":1,"nb":1,"a":[["ARO%3A3007448","TEM-246"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007449","l":"KPC-97","na":1,"nb":1,"a":[["ARO%3A3007449","KPC-97"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007450","l":"KPC-98","na":1,"nb":1,"a":[["ARO%3A3007450","KPC-98"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007451","l":"TEM-247","na":1,"nb":1,"a":[["ARO%3A3007451","TEM-247"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007452","l":"KPC-99","na":1,"nb":1,"a":[["ARO%3A3007452","KPC-99"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007453","l":"TEM-244","na":1,"nb":1,"a":[["ARO%3A3007453","TEM-244"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007454","l":"TEM-245","na":1,"nb":1,"a":[["ARO%3A3007454","TEM-245"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007459","l":"EstT","na":1,"nb":1,"a":[["ARO%3A3007459","EstT"]],"b":[["antibacterial/tilmicosin.html","tilmicosin"]]},{"id":"ARO:3007476","l":"Mycobacterium abscessus atpE with mutation conferring resistance to bedaquiline","na":1,"nb":1,"a":[["ARO%3A3007476","Mycobacterium abscessus atpE with mutation conferring resistance to bedaquiline"]],"b":[["antimycobacterial/bedaquiline.html","bedaquiline"]]},{"id":"ARO:3007489","l":"dfrB10","na":1,"nb":1,"a":[["ARO%3A3007489","dfrB10"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3007490","l":"dfrB11","na":1,"nb":1,"a":[["ARO%3A3007490","dfrB11"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3007491","l":"Pseudomonas aeruginosa ampR with mutation conferring resistance to aztreonam","na":1,"nb":1,"a":[["ARO%3A3007491","Pseudomonas aeruginosa ampR with mutation conferring resistance to aztreonam"]],"b":[["antibacterial/aztreonam.html","aztreonam"]]},{"id":"ARO:3007492","l":"tet(62)","na":1,"nb":1,"a":[["ARO%3A3007492","tet(62)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007509","l":"Shigella flexneri acrA","na":1,"nb":1,"a":[["ARO%3A3007509","Shigella flexneri acrA"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3007515","l":"ANT(9)-Ic","na":1,"nb":1,"a":[["ARO%3A3007515","ANT(9)-Ic"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3007527","l":"Bacillus subtilis rpsE mutations conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3007527","Bacillus subtilis rpsE mutations conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3007536","l":"Mycobacterium tuberculosis 16S rRNA (rrnS) mutation conferring resistance to amikacin","na":1,"nb":1,"a":[["ARO%3A3007536","Mycobacterium tuberculosis 16S rRNA (rrnS) mutation conferring resistance to amikacin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3007537","l":"Mycobacterium tuberculosis 16S rRNA (rrnS) mutation conferring resistance to kanamycin","na":1,"nb":1,"a":[["ARO%3A3007537","Mycobacterium tuberculosis 16S rRNA (rrnS) mutation conferring resistance to kanamycin"]],"b":[["antibacterial/amikacin.html","amikacin"]]},{"id":"ARO:3007539","l":"APH(9)-Ic","na":1,"nb":1,"a":[["ARO%3A3007539","APH(9)-Ic"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3007544","l":"Erysipelothrix rhusiopathiae gyrA with mutation conferring resistance to enrofloxacin","na":1,"nb":1,"a":[["ARO%3A3007544","Erysipelothrix rhusiopathiae gyrA with mutation conferring resistance to enrofloxacin"]],"b":[["antibacterial/enrofloxacin.html","enrofloxacin"]]},{"id":"ARO:3007548","l":"Candida spp. FKS2 with mutations conferring resistance to echinocandin antibiotics","na":1,"nb":1,"a":[["ARO%3A3007548","Candida spp. FKS2 with mutations conferring resistance to echinocandin antibiotics"]],"b":[["antifungal/micafungin.html","micafungin"]]},{"id":"ARO:3007551","l":"Candida spp. Upc2 with mutations conferring resistance to azole antibiotics","na":1,"nb":1,"a":[["ARO%3A3007551","Candida spp. Upc2 with mutations conferring resistance to azole antibiotics"]],"b":[["antifungal/fluconazole.html","fluconazole"]]},{"id":"ARO:3007557","l":"Candida spp. FUR1 with mutations conferring resistance to 5-flucytosine","na":1,"nb":1,"a":[["ARO%3A3007557","Candida spp. FUR1 with mutations conferring resistance to 5-flucytosine"]],"b":[["antifungal/flucytosine.html","flucytosine"]]},{"id":"ARO:3007559","l":"Saccharomyces spp. FUR1 with mutations conferring resistance to 5-flucytosine","na":1,"nb":1,"a":[["ARO%3A3007559","Saccharomyces spp. FUR1 with mutations conferring resistance to 5-flucytosine"]],"b":[["antifungal/flucytosine.html","flucytosine"]]},{"id":"ARO:3007561","l":"OXA-1038","na":1,"nb":1,"a":[["ARO%3A3007561","OXA-1038"]],"b":[["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3007562","l":"OXA-1039","na":1,"nb":1,"a":[["ARO%3A3007562","OXA-1039"]],"b":[["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3007566","l":"Cryptococcus spp. AFR1","na":1,"nb":1,"a":[["ARO%3A3007566","Cryptococcus spp. AFR1"]],"b":[["antifungal/fluconazole.html","fluconazole"]]},{"id":"ARO:3007568","l":"Cryptococcus spp. UXS1 conferring resistance to 5-flucytosine via absence","na":1,"nb":1,"a":[["ARO%3A3007568","Cryptococcus spp. UXS1 conferring resistance to 5-flucytosine via absence"]],"b":[["antifungal/flucytosine.html","flucytosine"]]},{"id":"ARO:3007642","l":"Aspergillus spp. fcyB conferring resistance to 5-flucytosine via reduced permeability","na":1,"nb":1,"a":[["ARO%3A3007642","Aspergillus spp. fcyB conferring resistance to 5-flucytosine via reduced permeability"]],"b":[["antifungal/flucytosine.html","flucytosine"]]},{"id":"ARO:3007664","l":"Candida spp. High Osmolarity Glycerol 1 conferring resistance to caspofungin via absence","na":1,"nb":1,"a":[["ARO%3A3007664","Candida spp. High Osmolarity Glycerol 1 conferring resistance to caspofungin via absence"]],"b":[["antifungal/caspofungin.html","caspofungin"]]},{"id":"ARO:3007665","l":"Candida spp. FCY2 conferring resistance to 5-flucytosine via reduced permeability","na":1,"nb":1,"a":[["ARO%3A3007665","Candida spp. FCY2 conferring resistance to 5-flucytosine via reduced permeability"]],"b":[["antifungal/flucytosine.html","flucytosine"]]},{"id":"ARO:3007671","l":"Clostridioides difficile nimB","na":1,"nb":1,"a":[["ARO%3A3007671","Clostridioides difficile nimB"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007674","l":"Mycobacterium tuberculosis Rv0678 with mutation conferring resistance to bedaquiline","na":1,"nb":1,"a":[["ARO%3A3007674","Mycobacterium tuberculosis Rv0678 with mutation conferring resistance to bedaquiline"]],"b":[["antimycobacterial/bedaquiline.html","bedaquiline"]]},{"id":"ARO:3007678","l":"IreK","na":1,"nb":1,"a":[["ARO%3A3007678","IreK"]],"b":[["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3007749","l":"Salmonella gallinarum folP with mutation conferring resistance to sulfonamides","na":1,"nb":1,"a":[["ARO%3A3007749","Salmonella gallinarum folP with mutation conferring resistance to sulfonamides"]],"b":[["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3007759","l":"Treponema pallidum 23S rRNA with mutation conferring resistance to erythromycin","na":1,"nb":1,"a":[["ARO%3A3007759","Treponema pallidum 23S rRNA with mutation conferring resistance to erythromycin"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3007794","l":"Vibrio vulnificus rpoB mutants conferring resistance to rifampin","na":1,"nb":1,"a":[["ARO%3A3007794","Vibrio vulnificus rpoB mutants conferring resistance to rifampin"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3007798","l":"Mycobacterium tuberculosis iniA mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3007798","Mycobacterium tuberculosis iniA mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3007806","l":"Mycobacterium tuberculosis gyrA mutations conferring resistance to moxifloxacin","na":1,"nb":1,"a":[["ARO%3A3007806","Mycobacterium tuberculosis gyrA mutations conferring resistance to moxifloxacin"]],"b":[["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3007807","l":"Mycobacterium tuberculosis gyrA mutations conferring resistance to ofloxacin","na":1,"nb":1,"a":[["ARO%3A3007807","Mycobacterium tuberculosis gyrA mutations conferring resistance to ofloxacin"]],"b":[["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3007808","l":"Mycobacterium tuberculosis gyrB mutations conferring resistance to ofloxacin","na":1,"nb":1,"a":[["ARO%3A3007808","Mycobacterium tuberculosis gyrB mutations conferring resistance to ofloxacin"]],"b":[["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3007809","l":"Mycobacterium tuberculosis gyrA mutations conferring resistance to levofloxacin","na":1,"nb":1,"a":[["ARO%3A3007809","Mycobacterium tuberculosis gyrA mutations conferring resistance to levofloxacin"]],"b":[["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"ARO:3007810","l":"Mycobacterium tuberculosis gyrB mutations conferring resistance to levofloxacin","na":1,"nb":1,"a":[["ARO%3A3007810","Mycobacterium tuberculosis gyrB mutations conferring resistance to levofloxacin"]],"b":[["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"ARO:3007811","l":"Mycobacterium tuberculosis fabG1 with mutations conferring resistance to prothionamide","na":1,"nb":1,"a":[["ARO%3A3007811","Mycobacterium tuberculosis fabG1 with mutations conferring resistance to prothionamide"]],"b":[["antibacterial/prothionamide.html","prothionamide"]]},{"id":"ARO:3007838","l":"tet(65)","na":1,"nb":1,"a":[["ARO%3A3007838","tet(65)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007843","l":"VRA-F","na":1,"nb":1,"a":[["ARO%3A3007843","VRA-F"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3007849","l":"Mycobacterium tuberculosis fgd1 with mutation conferring resistance to delamanid","na":1,"nb":1,"a":[["ARO%3A3007849","Mycobacterium tuberculosis fgd1 with mutation conferring resistance to delamanid"]],"b":[["antibacterial/delamanid.html","delamanid"]]},{"id":"ARO:3007852","l":"Mycobacterium tuberculosis Rv0678 with mutation conferring resistance to clofazimine","na":1,"nb":1,"a":[["ARO%3A3007852","Mycobacterium tuberculosis Rv0678 with mutation conferring resistance to clofazimine"]],"b":[["antimycobacterial/clofazimine.html","clofazimine"]]},{"id":"ARO:3007854","l":"Mycobacterium tuberculosis atpE with mutation conferring resistance to bedaquiline","na":1,"nb":1,"a":[["ARO%3A3007854","Mycobacterium tuberculosis atpE with mutation conferring resistance to bedaquiline"]],"b":[["antimycobacterial/bedaquiline.html","bedaquiline"]]},{"id":"ARO:3007857","l":"KPC-134","na":1,"nb":1,"a":[["ARO%3A3007857","KPC-134"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"CHEBI:10015","l":"vobasine","na":1,"nb":1,"a":[["RHEA%3A76147","perivine + S-adenosyl-L-methionine = vobasine + S-adenosyl-L-homocysteine + 2 H(+)"]],"b":[["antiviral/vobasine.html","vobasine"]]},{"id":"CHEBI:100241","l":"ciprofloxacin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CPF","CPF-binding site"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"CHEBI:127780","l":"phosphonoformic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PPF","PPF-binding site"]],"b":[["antiviral/phosphonoformic-acid.html","phosphonoformic acid"]]},{"id":"CHEBI:133741","l":"(E)-dodec-2-enal","na":1,"nb":1,"a":[["RHEA%3A50784","dodecanal + NADP(+) = (2E)-dodecenal + NADPH + H(+)"]],"b":[["antibacterial/e-dodec-2-enal.html","(E)-dodec-2-enal"]]},{"id":"CHEBI:134347","l":"glandicoline B","na":1,"nb":1,"a":[["RHEA%3A51732","glandicoline B + S-adenosyl-L-methionine = meleagrin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/glandicoline-b.html","glandicoline B"]]},{"id":"CHEBI:135029","l":"cycloguanil","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_1CY","1CY-binding site"]],"b":[["antiprotozoal/cycloguanil.html","cycloguanil"]]},{"id":"CHEBI:137236","l":"ilomastat","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_GM6","GM6-binding site"]],"b":[["antibacterial/ilomastat.html","ilomastat"]]},{"id":"CHEBI:138511","l":"piericidin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HQH","HQH-binding site"]],"b":[["unspecified/piericidin-a.html","piericidin A"]]},{"id":"CHEBI:140376","l":"cefiderocol","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_140376","requires cefiderocol"]],"b":[["antibacterial/cefiderocol.html","cefiderocol"]]},{"id":"CHEBI:142921","l":"","na":1,"nb":1,"a":[["RHEA%3A79335","cinnamyl alcohol + 2 Fe(III)-[cytochrome c] = cinnamaldehyde + 2 Fe(II)-[cytochrome c] + 2 H(+)"]],"b":[["antifungal/e-cinnamaldehyde.html","(E)-cinnamaldehyde"]]},{"id":"CHEBI:144586","l":"4-hydroxy-2-oxobutanal","na":1,"nb":1,"a":[["RHEA%3A21212","N(6)-(3-O-phospho-D-erythrulosyl)-L-lysyl-[protein] + H2O = 4-hydroxy-2-oxobutanal + L-lysyl-[protein] + phosphate"]],"b":[["antibacterial/4-hydroxy-2-oxobutanal.html","4-hydroxy-2-oxobutanal"]]},{"id":"CHEBI:145026","l":"L-psicose","na":1,"nb":1,"a":[["RHEA%3A61784","L-allulose = keto-L-fructose"]],"b":[["antiviral/l-psicose.html","L-psicose"]]},{"id":"CHEBI:145043","l":"solasodine(1+)","na":1,"nb":1,"a":[["RHEA%3A61844","solasodine + UDP-alpha-D-glucose = solasodine 3-beta-D-glucoside + UDP + H(+)"]],"b":[["antifungal/solasodine-1.html","solasodine(1+)"]]},{"id":"CHEBI:145950","l":"nigerone","na":1,"nb":1,"a":[["RHEA%3A62792","2 rubrofusarin B + NADPH + O2 + 3 H(+) = nigerone + NADP(+) + 2 H2O"]],"b":[["antifungal/nigerone.html","nigerone"]]},{"id":"CHEBI:146007","l":"(M)-viriditoxin","na":1,"nb":1,"a":[["RHEA%3A62884","4 semiviriditoxin + O2 = 2 (M)-viriditoxin + 2 H2O"]],"b":[["antibacterial/m-viriditoxin.html","(M)-viriditoxin"]]},{"id":"CHEBI:15353","l":"blasticidin S","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BLS","BLS-binding site"]],"b":[["antifungal/blasticidin-s.html","blasticidin S"]]},{"id":"CHEBI:155860","l":"2,4-dihydroxy-3-methyl-6-(2-oxopropyl)benzaldehyde","na":1,"nb":1,"a":[["RHEA%3A64508","4 malonyl-CoA + acetyl-CoA + AH2 + S-adenosyl-L-methionine + 3 H(+) = 2,4-dihydroxy-3-methyl-6-(2-oxopropyl)benzaldehyde + A + S-adenosyl-L-homocysteine + 4 CO2 + 5 CoA + H2O"]],"b":[["antibacterial/2-4-dihydroxy-3-methyl-6-2-oxopropyl-benzaldehyde.html","2,4-dihydroxy-3-methyl-6-(2-oxopropyl)benzaldehyde"]]},{"id":"CHEBI:156070","l":"butyl benzoate","na":1,"nb":1,"a":[["RHEA%3A64636","butan-1-ol + benzoyl-CoA = butyl benzoate + CoA"]],"b":[["biocide/butyl-benzoate.html","butyl benzoate"]]},{"id":"CHEBI:156511","l":"poacic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_V5M","V5M-binding site"]],"b":[["antifungal/poacic-acid.html","poacic acid"]]},{"id":"CHEBI:15732","l":"phosphonoacetic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PAE","PAE-binding site"]],"b":[["antiviral/phosphonoacetic-acid.html","phosphonoacetic acid"]]},{"id":"CHEBI:15756","l":"palmitic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PLM","PLM-binding site"]],"b":[["antibacterial/palmitic-acid.html","palmitic acid"]]},{"id":"CHEBI:16243","l":"quercetin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_QUE","QUE-binding site"]],"b":[["antibacterial/quercetin.html","quercetin"]]},{"id":"CHEBI:16348","l":"3-nitropropanoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_3NP","3NP-binding site"]],"b":[["antimycobacterial/3-nitropropanoic-acid.html","3-nitropropanoic acid"]]},{"id":"CHEBI:164200","l":"triclosan","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TCL","TCL-binding site"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"CHEBI:167176","l":"GRL-0617","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TTT","TTT-binding site"]],"b":[["antiviral/grl-0617.html","GRL-0617"]]},{"id":"CHEBI:168396","l":"mycophenolic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MOA","MOA-binding site"]],"b":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]]},{"id":"CHEBI:16914","l":"salicylic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SAL","SAL-binding site"]],"b":[["antifungal/salicylic-acid.html","salicylic acid"]]},{"id":"CHEBI:16961","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"]],"b":[["antibacterial/bacilysocin.html","bacilysocin"]]},{"id":"CHEBI:17351","l":"linoleic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_EIC","EIC-binding site"]],"b":[["antibacterial/linoleic-acid.html","linoleic acid"]]},{"id":"CHEBI:17558","l":"quercitrin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_QCT","QCT-binding site"]],"b":[["antiprotozoal/quercitrin.html","quercitrin"]]},{"id":"CHEBI:175901","l":"gemcitabine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_GEO","GEO-binding site"]],"b":[["antiviral/gemcitabine.html","gemcitabine"]]},{"id":"CHEBI:17642","l":"pentachlorophenol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PCI","PCI-binding site"]],"b":[["antifungal/pentachlorophenol.html","pentachlorophenol"]]},{"id":"CHEBI:17656","l":"(R)-mandelic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RMN","RMN-binding site"]],"b":[["antibacterial/r-mandelic-acid.html","(R)-mandelic acid"]]},{"id":"CHEBI:17658","l":"tylosin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TYK","TYK-binding site"]],"b":[["antibacterial/tylosin.html","tylosin"]]},{"id":"CHEBI:177047","l":"velutin","na":1,"nb":1,"a":[["RHEA%3A73083","chrysoeriol + S-adenosyl-L-methionine = velutin + S-adenosyl-L-homocysteine"]],"b":[["antibacterial/velutin.html","velutin"]]},{"id":"CHEBI:177878","l":"","na":1,"nb":1,"a":[["RHEA%3A68396","a percarboxylic acid + H2O = a carboxylate + H2O2 + H(+)"]],"b":[["biocide/peracetic-acid.html","peracetic acid"]]},{"id":"CHEBI:18203","l":"penicillin N","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["unspecified/penicillin-n.html","penicillin N"]]},{"id":"CHEBI:18208","l":"benzylpenicillin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PNN","PNN-binding site"]],"b":[["antibacterial/benzylpenicillin.html","benzylpenicillin"]]},{"id":"CHEBI:190786","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_KIR","KIR-binding site"]],"b":[["antibacterial/kirromycin.html","kirromycin"]]},{"id":"CHEBI:194138","l":"methyl trans-cinnamate","na":1,"nb":1,"a":[["RHEA%3A74871","(E)-cinnamate + S-adenosyl-L-methionine = (E)-cinnamic acid methyl ester + S-adenosyl-L-homocysteine"]],"b":[["antibacterial/methyl-trans-cinnamate.html","methyl trans-cinnamate"]]},{"id":"CHEBI:220158","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BLJ","BLJ-binding site"]],"b":[["antibacterial/arsinothricin.html","arsinothricin"]]},{"id":"CHEBI:22632","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.59","The Arsenical Resistance-3 (ACR3) Family"]],"b":[["antibacterial/sodium-arsenite.html","sodium arsenite"]]},{"id":"CHEBI:231919","l":"fluopsin","na":1,"nb":1,"a":[["RHEA%3A82395","thiohydroxamate + S-adenosyl-L-methionine = fluopsin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/fluopsin.html","fluopsin"]]},{"id":"CHEBI:233443","l":"","na":1,"nb":1,"a":[["RHEA%3A83863","an L-alpha-amino acid + acetyl-CoA = an N-acetyl-L-alpha-amino acid + CoA + H(+)"]],"b":[["antiviral/n-acetyl-l-cysteinate.html","N-acetyl-L-cysteinate"]]},{"id":"CHEBI:234507","l":"2-chloroacetamide","na":1,"nb":1,"a":[["RHEA%3A85695","chloroacetamide = chloroacetonitrile + H2O"]],"b":[["antifungal/2-chloroacetamide.html","2-chloroacetamide"]]},{"id":"CHEBI:23981","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"CHEBI:24402","l":"","na":1,"nb":1,"a":[["TCDB%3A3.A.3","The P-type ATPase (P-ATPase) Superfamily"]],"b":[["antifungal/oceanalin-a.html","oceanalin A"]]},{"id":"CHEBI:2637","l":"amikacin","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/amikacin.html","amikacin"]]},{"id":"CHEBI:2674","l":"amodiaquine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CQA","CQA-binding site"]],"b":[["antiprotozoal/amodiaquine.html","amodiaquine"]]},{"id":"CHEBI:2682","l":"amphotericin B","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_4UH","4UH-binding site"]],"b":[["antifungal/amphotericin-b.html","amphotericin B"]]},{"id":"CHEBI:27093","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.54","The Sideroflexin (SFXN) Family (formerly the Mitochondrial Tricarboxylate Carrier (MTC) Family)"]],"b":[["unspecified/citric-acid.html","citric acid"]]},{"id":"CHEBI:27779","l":"griseofulvin","na":1,"nb":1,"a":[["RHEA%3A73943","dehydrogriseofulvin + NADPH + H(+) = griseofulvin + NADP(+)"]],"b":[["antibacterial/griseofulvin.html","griseofulvin"]]},{"id":"CHEBI:27784","l":"gentamycin C1a","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_LLL","LLL-binding site"]],"b":[["unspecified/gentamycin-c1a.html","gentamycin C1a"]]},{"id":"CHEBI:27834","l":"pentostatin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DCF","DCF-binding site"]],"b":[["unspecified/pentostatin.html","pentostatin"]]},{"id":"CHEBI:27860","l":"castanospermine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CTS","CTS-binding site"]],"b":[["antiviral/castanospermine.html","castanospermine"]]},{"id":"CHEBI:28098","l":"kanamycin B","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9CS","9CS-binding site"]],"b":[["unspecified/kanamycin-b.html","kanamycin B"]]},{"id":"CHEBI:28121","l":"harmine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HRM","HRM-binding site"]],"b":[["antiviral/harmine.html","harmine"]]},{"id":"CHEBI:28147","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_8MM","8MM-binding site"]],"b":[["unspecified/n2-acetylgentamycin-c1a.html","N2'-acetylgentamycin C1a"]]},{"id":"CHEBI:28148","l":"sodium stibogluconate","na":1,"nb":1,"a":[["TCDB%3A1.A.8","The Major Intrinsic Protein (MIP) Family"]],"b":[["antiprotozoal/sodium-stibogluconate.html","sodium stibogluconate"]]},{"id":"CHEBI:28217","l":"acrylonitrile","na":1,"nb":1,"a":[["RHEA%3A85611","acrylamide = acrylonitrile + H2O"]],"b":[["antifungal/acrylonitrile.html","acrylonitrile"]]},{"id":"CHEBI:28285","l":"oligomycin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_EFO","EFO-binding site"]],"b":[["antifungal/oligomycin-a.html","oligomycin A"]]},{"id":"CHEBI:28368","l":"novobiocin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NOV","NOV-binding site"]],"b":[["antibacterial/novobiocin.html","novobiocin"]]},{"id":"CHEBI:28499","l":"kaempferol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_KMP","KMP-binding site"]],"b":[["antibacterial/kaempferol.html","kaempferol"]]},{"id":"CHEBI:28631","l":"3-phenylpropionic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HCI","HCI-binding site"]],"b":[["antifungal/3-phenylpropionic-acid.html","3-phenylpropionic acid"]]},{"id":"CHEBI:28748","l":"doxorubicin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DM2","DM2-binding site"]],"b":[["unspecified/doxorubicin.html","doxorubicin"]]},{"id":"CHEBI:28837","l":"octanoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_OCA","OCA-binding site"]],"b":[["antibacterial/octanoic-acid.html","octanoic acid"]]},{"id":"CHEBI:28864","l":"tobramycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TOY","TOY-binding site"]],"b":[["antibacterial/tobramycin.html","tobramycin"]]},{"id":"CHEBI:28905","l":"prop-2-yn-1-ol","na":1,"nb":1,"a":[["RHEA%3A31247","prop-2-ynal + pyrroloquinoline quinol + H(+) = prop-2-yn-1-ol + pyrroloquinoline quinone"]],"b":[["antifungal/prop-2-yn-1-ol.html","prop-2-yn-1-ol"]]},{"id":"CHEBI:28939","l":"N-acetyl-L-cysteine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SC2","SC2-binding site"]],"b":[["antiviral/n-acetyl-l-cysteine.html","N-acetyl-L-cysteine"]]},{"id":"CHEBI:2896","l":"astemizole","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_XB7","XB7-binding site"]],"b":[["antiviral/astemizole.html","astemizole"]]},{"id":"CHEBI:28971","l":"ampicillin","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/ampicillin.html","ampicillin"]]},{"id":"CHEBI:29013","l":"fusidic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_FUA","FUA-binding site"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"CHEBI:29014","l":"cordycepin","na":1,"nb":1,"a":[["RHEA%3A79047","cordycepin + H2O + H(+) = 3'-deoxyinosine + NH4(+)"]],"b":[["antibacterial/cordycepin.html","cordycepin"]]},{"id":"CHEBI:29582","l":"ascomycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_KXX","KXX-binding site"]],"b":[["antifungal/ascomycin.html","ascomycin"]]},{"id":"CHEBI:29699","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"]],"b":[["antibacterial/tunicamycin.html","tunicamycin"]]},{"id":"CHEBI:29703","l":"validamycin A","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/validamycin-a.html","validamycin A"]]},{"id":"CHEBI:3000","l":"beauvericin","na":1,"nb":1,"a":[["RHEA%3A62276","3 (R)-2-hydroxy-3-methylbutanoate + 3 L-phenylalanine + 3 S-adenosyl-L-methionine + 6 ATP = beauvericin + 6 AMP + 3 S-adenosyl-L-homocysteine + 6 diphosphate + 6 H(+)"]],"b":[["antifungal/beauvericin.html","beauvericin"]]},{"id":"CHEBI:3015","l":"benomyl","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/benomyl.html","benomyl"]]},{"id":"CHEBI:30769","l":"citric acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CIT","CIT-binding site"]],"b":[["unspecified/citric-acid.html","citric acid"]]},{"id":"CHEBI:30813","l":"decanoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DKA","DKA-binding site"]],"b":[["antibacterial/decanoic-acid.html","decanoic acid"]]},{"id":"CHEBI:3087","l":"betulinic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_06L","06L-binding site"]],"b":[["antiprotozoal/betulinic-acid.html","betulinic acid"]]},{"id":"CHEBI:315019","l":"cilofungin","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/cilofungin.html","cilofungin"]]},{"id":"CHEBI:31781","l":"lopinavir","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antiviral/lopinavir.html","lopinavir"]]},{"id":"CHEBI:31856","l":"mithramycin","na":1,"nb":1,"a":[["RHEA%3A85455","iso-mithramycin = mithramycin"]],"b":[["unspecified/mithramycin.html","mithramycin"]]},{"id":"CHEBI:32079","l":"pyrrolnitrin","na":1,"nb":1,"a":[["RHEA%3A46136","aminopyrrolnitrin + NADPH + 2 O2 + H(+) = pyrrolnitrin + NADP(+) + 2 H2O"]],"b":[["antifungal/pyrrolnitrin.html","pyrrolnitrin"]]},{"id":"CHEBI:32174","l":"","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/syringomycin-e.html","syringomycin E"]]},{"id":"CHEBI:32368","l":"undecanoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_11A","11A-binding site"]],"b":[["antifungal/undecanoic-acid.html","undecanoic acid"]]},{"id":"CHEBI:3259","l":"CCCP","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/cccp.html","CCCP"]]},{"id":"CHEBI:32800","l":"(S)-mandelic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SMN","SMN-binding site"]],"b":[["antibacterial/s-mandelic-acid.html","(S)-mandelic acid"]]},{"id":"CHEBI:32888","l":"γ-hexachlorocyclohexane","na":1,"nb":1,"a":[["RHEA%3A45480","gamma-hexachlorocyclohexane = (3R,4S,5S,6R)-pentachlorocyclohexene + chloride + H(+)"]],"b":[["antibacterial/%CE%B3-hexachlorocyclohexane.html","γ-hexachlorocyclohexane"]]},{"id":"CHEBI:3405","l":"carboxin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CBE","CBE-binding site"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"CHEBI:34652","l":"compactin diol lactone","na":1,"nb":1,"a":[["RHEA%3A62744","mevastatin + H2O = compactin diol lactone + (S)-2-methylbutanoate + H(+)"]],"b":[["unspecified/compactin-diol-lactone.html","compactin diol lactone"]]},{"id":"CHEBI:34908","l":"pentachloronitrobenzene","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/pentachloronitrobenzene.html","pentachloronitrobenzene"]]},{"id":"CHEBI:3493","l":"cefoperazone","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/cefoperazone.html","cefoperazone"]]},{"id":"CHEBI:3503","l":"cefpirome","na":1,"nb":1,"a":[["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"]],"b":[["antibacterial/cefpirome.html","cefpirome"]]},{"id":"CHEBI:35356","l":"","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/cycloheximide.html","cycloheximide"]]},{"id":"CHEBI:3537","l":"cefaloridine","na":1,"nb":1,"a":[["TCDB%3A1.B.6","The OmpA-OmpF Porin (OOP) Family"]],"b":[["antibacterial/cefaloridine.html","cefaloridine"]]},{"id":"CHEBI:3547","l":"cephradine","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/cephradine.html","cephradine"]]},{"id":"CHEBI:35817","l":"roxarsone","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/roxarsone.html","roxarsone"]]},{"id":"CHEBI:36243","l":"","na":1,"nb":1,"a":[["RHEA%3A48484","a propanoate ester + H2O = an aliphatic alcohol + propanoate + H(+)"]],"b":[["antifungal/metarylpicoxamid.html","metarylpicoxamid"]]},{"id":"CHEBI:3639","l":"chlorothalonil","na":1,"nb":1,"a":[["RHEA%3A65016","chlorothalonil + H2O = 4-hydroxychlorothalonil + chloride + 2 H(+)"]],"b":[["antifungal/chlorothalonil.html","chlorothalonil"]]},{"id":"CHEBI:3647","l":"chlorpromazine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_Z80","Z80-binding site"]],"b":[["antiviral/chlorpromazine.html","chlorpromazine"]]},{"id":"CHEBI:367163","l":"darunavir","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_017","017-binding site"]],"b":[["antiviral/darunavir.html","darunavir"]]},{"id":"CHEBI:36843","l":"","na":1,"nb":1,"a":[["RHEA%3A82271","7alpha-hydroxy steroid + NADP(+) = a 7-oxosteroid + NADPH + H(+)"]],"b":[["antifungal/9%CE%BE-14%CE%BE-25s-cholestane-3%CE%B2-4%CE%B2-6%CE%B2-7%CE%B1-8-15%CE%B1-16%CE%B2-26-octol.html","(9ξ,14ξ,25S)-cholestane-3β,4β,6β,7α,8,15α,16β,26-octol"]]},{"id":"CHEBI:3687","l":"chrysophanol","na":1,"nb":1,"a":[["RHEA%3A64276","chrysophanol-9-anthrone + O2 = chrysophanol + H2O"]],"b":[["antiviral/chrysophanol.html","chrysophanol"]]},{"id":"CHEBI:3745","l":"clindamycin","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/clindamycin.html","clindamycin"]]},{"id":"CHEBI:3749","l":"clofazimine","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antimycobacterial/clofazimine.html","clofazimine"]]},{"id":"CHEBI:37924","l":"atazanavir","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DR7","DR7-binding site"]],"b":[["antiviral/atazanavir.html","atazanavir"]]},{"id":"CHEBI:38167","l":"physcion","na":1,"nb":1,"a":[["RHEA%3A76767","emodin + S-adenosyl-L-methionine = physcion + S-adenosyl-L-homocysteine"]],"b":[["antibacterial/physcion.html","physcion"]]},{"id":"CHEBI:38291","l":"dihydrostreptomycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_71R","71R-binding site"]],"b":[["unspecified/dihydrostreptomycin.html","dihydrostreptomycin"]]},{"id":"CHEBI:38320","l":"(+)-usnic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_AIY","AIY-binding site"]],"b":[["antifungal/usnic-acid-38320.html","(+)-usnic acid"]]},{"id":"CHEBI:39352","l":"","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["unspecified/nifursol.html","nifursol"]]},{"id":"CHEBI:39932","l":"(R)-oct-1-en-3-ol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_3OL","3OL-binding site"]],"b":[["unspecified/r-oct-1-en-3-ol.html","(R)-oct-1-en-3-ol"]]},{"id":"CHEBI:40009","l":"D-cycloserine","na":1,"nb":1,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"]],"b":[["antimycobacterial/d-cycloserine.html","D-cycloserine"]]},{"id":"CHEBI:40021","l":"tiratricol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_4HY","4HY-binding site"]],"b":[["antiviral/tiratricol.html","tiratricol"]]},{"id":"CHEBI:404903","l":"ertapenem","na":1,"nb":1,"a":[["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"]],"b":[["antibacterial/ertapenem.html","ertapenem"]]},{"id":"CHEBI:41425","l":"(7R)-7-(4-carboxybutanamido)cephalosporanic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CEN","CEN-binding site"]],"b":[["unspecified/7r-7-4-carboxybutanamido-cephalosporanic-acid.html","(7R)-7-(4-carboxybutanamido)cephalosporanic acid"]]},{"id":"CHEBI:41688","l":"crystal violet","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/crystal-violet.html","crystal violet"]]},{"id":"CHEBI:41872","l":"dequalinium","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/dequalinium.html","dequalinium"]]},{"id":"CHEBI:41977","l":"daunorubicin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DM1","DM1-binding site"]],"b":[["unspecified/daunorubicin.html","daunorubicin"]]},{"id":"CHEBI:42068","l":"idarubicin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DM5","DM5-binding site"]],"b":[["unspecified/idarubicin.html","idarubicin"]]},{"id":"CHEBI:42355","l":"erythromycin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ERY","ERY-binding site"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"CHEBI:42471","l":"forskolin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_FOK","FOK-binding site"]],"b":[["antiviral/forskolin.html","forskolin"]]},{"id":"CHEBI:42600","l":"L-fucitol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_FOC","FOC-binding site"]],"b":[["antibacterial/l-fucitol.html","L-fucitol"]]},{"id":"CHEBI:42680","l":"(2-cis,6-cis)-farnesol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_FOH","FOH-binding site"]],"b":[["unspecified/2-cis-6-cis-farnesol.html","(2-cis,6-cis)-farnesol"]]},{"id":"CHEBI:43040","l":"hadacidin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HDA","HDA-binding site"]],"b":[["unspecified/hadacidin.html","hadacidin"]]},{"id":"CHEBI:4309","l":"dalfopristin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DOL","DOL-binding site"]],"b":[["antibacterial/dalfopristin.html","dalfopristin"]]},{"id":"CHEBI:43616","l":"K-252a","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_KSA","KSA-binding site"]],"b":[["unspecified/k-252a.html","K-252a"]]},{"id":"CHEBI:44032","l":"indinavir","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MK1","MK1-binding site"]],"b":[["antiviral/indinavir.html","indinavir"]]},{"id":"CHEBI:44369","l":"duvoglustat","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NOJ","NOJ-binding site"]],"b":[["antiviral/duvoglustat.html","duvoglustat"]]},{"id":"CHEBI:44499","l":"methyl nonanoate","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NON","NON-binding site"]],"b":[["antifungal/methyl-nonanoate.html","methyl nonanoate"]]},{"id":"CHEBI:45141","l":"pyroquilon","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PYQ","PYQ-binding site"]],"b":[["antifungal/pyroquilon.html","pyroquilon"]]},{"id":"CHEBI:45257","l":"ribostamycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RIO","RIO-binding site"]],"b":[["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"CHEBI:45304","l":"rifapentine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RPT","RPT-binding site"]],"b":[["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"CHEBI:45307","l":"seliciclib","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RRC","RRC-binding site"]],"b":[["antiviral/seliciclib.html","seliciclib"]]},{"id":"CHEBI:45367","l":"rifabutin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RBT","RBT-binding site"]],"b":[["antibacterial/rifabutin.html","rifabutin"]]},{"id":"CHEBI:45395","l":"pyrithiamine pyrophosphate","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PYI","PYI-binding site"]],"b":[["unspecified/pyrithiamine-pyrophosphate.html","pyrithiamine pyrophosphate"]]},{"id":"CHEBI:45409","l":"ritonavir","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RIT","RIT-binding site"]],"b":[["antiviral/ritonavir.html","ritonavir"]]},{"id":"CHEBI:45490","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RVP","RVP-binding site"]],"b":[["antiviral/ribavirin-5-monophosphate.html","ribavirin 5'-monophosphate"]]},{"id":"CHEBI:45906","l":"suramin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SVR","SVR-binding site"]],"b":[["antiprotozoal/suramin.html","suramin"]]},{"id":"CHEBI:45924","l":"trimethoprim","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TOP","TOP-binding site"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"CHEBI:45979","l":"thiabendazole","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TMG","TMG-binding site"]],"b":[["antifungal/thiabendazole.html","thiabendazole"]]},{"id":"CHEBI:46024","l":"trichostatin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TSN","TSN-binding site"]],"b":[["antifungal/trichostatin-a.html","trichostatin A"]]},{"id":"CHEBI:46345","l":"5-fluorouracil","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_URF","URF-binding site"]],"b":[["antifungal/5-fluorouracil.html","5-Fluorouracil"]]},{"id":"CHEBI:4640","l":"diphenylamine","na":1,"nb":1,"a":[["TCDB%3A9.A.11","The Dipicolinic Acid Transporter (DPA-T) Family"]],"b":[["antifungal/diphenylamine.html","diphenylamine"]]},{"id":"CHEBI:4672","l":"docetaxel anhydrous","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antiprotozoal/docetaxel-anhydrous.html","docetaxel anhydrous"]]},{"id":"CHEBI:46953","l":"","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["unspecified/adxanthromycin-a.html","adxanthromycin A"]]},{"id":"CHEBI:473992","l":"nystatin A1","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_A1AZ7","A1AZ7-binding site"]],"b":[["antifungal/nystatin-a1.html","nystatin A1"]]},{"id":"CHEBI:47780","l":"clomipramine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CXX","CXX-binding site"]],"b":[["antiviral/clomipramine.html","clomipramine"]]},{"id":"CHEBI:48131","l":"nonanedioic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_AZ1","AZ1-binding site"]],"b":[["antibacterial/nonanedioic-acid.html","nonanedioic acid"]]},{"id":"CHEBI:48267","l":"tubercidin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TBN","TBN-binding site"]],"b":[["antifungal/tubercidin.html","tubercidin"]]},{"id":"CHEBI:48545","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.67","The Oligopeptide Transporter (OPT) Family"]],"b":[["unspecified/n-palmitoyl-s-2-3-bis-palmitoyloxy-propyl-cys-ser-lys-lys-lys-lys.html","N-palmitoyl-S-[2,3-bis(palmitoyloxy)propyl]-Cys-Ser-Lys-Lys-Lys-Lys"]]},{"id":"CHEBI:48811","l":"(R)-chloroquine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CLQ","CLQ-binding site"]],"b":[["antiprotozoal/r-chloroquine.html","(R)-chloroquine"]]},{"id":"CHEBI:4893","l":"ethyl acetoacetate","na":1,"nb":1,"a":[["RHEA%3A68144","ethyl 3-oxobutanoate + NADPH + H(+) = ethyl (R)-3-hydroxybutanoate + NADP(+)"]],"b":[["antibacterial/ethyl-acetoacetate.html","ethyl acetoacetate"]]},{"id":"CHEBI:48947","l":"clavulanic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_J01","J01-binding site"]],"b":[["antibacterial/clavulanic-acid.html","clavulanic acid"]]},{"id":"CHEBI:48958","l":"diamide","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["unspecified/diamide.html","diamide"]]},{"id":"CHEBI:49026","l":"N-acetyl-α-neuraminic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SIA","SIA-binding site"]],"b":[["antiviral/n-acetyl-%CE%B1-neuraminic-acid.html","N-acetyl-α-neuraminic acid"]]},{"id":"CHEBI:49375","l":"dasatinib (anhydrous)","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_1N1","1N1-binding site"]],"b":[["antiviral/dasatinib-anhydrous.html","dasatinib (anhydrous)"]]},{"id":"CHEBI:50381","l":"miglustat","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NBV","NBV-binding site"]],"b":[["antiviral/miglustat.html","miglustat"]]},{"id":"CHEBI:50437","l":"nocardamine","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_50437","requires desferrioxamine E"]],"b":[["antibacterial/nocardamine.html","nocardamine"]]},{"id":"CHEBI:50663","l":"zanamivir","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ZMR","ZMR-binding site"]],"b":[["antiviral/zanamivir.html","zanamivir"]]},{"id":"CHEBI:50694","l":"minocycline","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MIY","MIY-binding site"]],"b":[["antibacterial/minocycline.html","minocycline"]]},{"id":"CHEBI:52172","l":"nilotinib","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NIL","NIL-binding site"]],"b":[["antiviral/nilotinib.html","nilotinib"]]},{"id":"CHEBI:52289","l":"wortmannin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_KWT","KWT-binding site"]],"b":[["antiviral/wortmannin.html","wortmannin"]]},{"id":"CHEBI:52316","l":"cordycepin triphosphate","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_3AT","3AT-binding site"]],"b":[["antifungal/cordycepin-triphosphate.html","cordycepin triphosphate"]]},{"id":"CHEBI:52646","l":"leptomycin B","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/leptomycin-b.html","leptomycin B"]]},{"id":"CHEBI:52717","l":"bortezomib","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BO2","BO2-binding site"]],"b":[["antiprotozoal/bortezomib.html","bortezomib"]]},{"id":"CHEBI:556075","l":"radicicol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RDC","RDC-binding site"]],"b":[["antifungal/radicicol.html","radicicol"]]},{"id":"CHEBI:575568","l":"atovaquone","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_AOQ","AOQ-binding site"]],"b":[["antifungal/atovaquone.html","atovaquone"]]},{"id":"CHEBI:59349","l":"cefepime(1+)","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9WT","9WT-binding site"]],"b":[["unspecified/cefepime-1.html","cefepime(1+)"]]},{"id":"CHEBI:60761","l":"floxuridine","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antiviral/floxuridine.html","floxuridine"]]},{"id":"CHEBI:623918","l":"nikkomycin Z","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BGI","BGI-binding site"]],"b":[["antifungal/nikkomycin-z.html","nikkomycin Z"]]},{"id":"CHEBI:63207","l":"mycinamicin III","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ZM3","ZM3-binding site"]],"b":[["unspecified/mycinamicin-iii.html","mycinamicin III"]]},{"id":"CHEBI:63285","l":"mycinamicin VI","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MVI","MVI-binding site"]],"b":[["unspecified/mycinamicin-vi.html","mycinamicin VI"]]},{"id":"CHEBI:63580","l":"ribavirin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RBV","RBV-binding site"]],"b":[["antiviral/ribavirin.html","ribavirin"]]},{"id":"CHEBI:63599","l":"fludarabine phosphate","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antiviral/fludarabine-phosphate.html","fludarabine phosphate"]]},{"id":"CHEBI:63611","l":"moxifloxacin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MFX","MFX-binding site"]],"b":[["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"CHEBI:63624","l":"telbivudine","na":1,"nb":1,"a":[["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"]],"b":[["antiviral/telbivudine.html","telbivudine"]]},{"id":"CHEBI:63684","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_YMZ","YMZ-binding site"]],"b":[["antiprotozoal/11r-2-s-erythro-mefloquine.html","(+)-(11R,2'S)-erythro-mefloquine"]]},{"id":"CHEBI:64250","l":"tunicamycin B2","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9LH","9LH-binding site"]],"b":[["unspecified/tunicamycin-b2.html","tunicamycin B2"]]},{"id":"CHEBI:64355","l":"posaconazole","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_X2N","X2N-binding site"]],"b":[["antifungal/posaconazole.html","posaconazole"]]},{"id":"CHEBI:66065","l":"IC202A","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_66065","requires IC202A"]],"b":[["unspecified/ic202a.html","IC202A"]]},{"id":"CHEBI:66067","l":"IC202C","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_66067","requires IC202C"]],"b":[["unspecified/ic202c.html","IC202C"]]},{"id":"CHEBI:66104","l":"jaspamide","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9UE","9UE-binding site"]],"b":[["antifungal/jaspamide.html","jaspamide"]]},{"id":"CHEBI:66222","l":"thiomarinol C","na":1,"nb":1,"a":[["RHEA%3A75895","marinoloyl-CoA C + holothin = thiomarinol C + CoA"]],"b":[["antibacterial/thiomarinol-c.html","thiomarinol C"]]},{"id":"CHEBI:67121","l":"nitroxoline","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HNQ","HNQ-binding site"]],"b":[["antifungal/nitroxoline.html","nitroxoline"]]},{"id":"CHEBI:67559","l":"5Z-7-oxozeaenol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_1FM","1FM-binding site"]],"b":[["antibacterial/5z-7-oxozeaenol.html","5Z-7-oxozeaenol"]]},{"id":"CHEBI:67811","l":"zorbamycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_52G","52G-binding site"]],"b":[["unspecified/zorbamycin.html","zorbamycin"]]},{"id":"CHEBI:68241","l":"platencin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_N32","N32-binding site"]],"b":[["antibacterial/platencin.html","platencin"]]},{"id":"CHEBI:6827","l":"methicillin","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/methicillin.html","methicillin"]]},{"id":"CHEBI:6909","l":"metronidazole","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"CHEBI:6923","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/miconazole.html","miconazole"]]},{"id":"CHEBI:7025","l":"mupirocin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MRC","MRC-binding site"]],"b":[["antibacterial/mupirocin.html","mupirocin"]]},{"id":"CHEBI:70508","l":"(16R,19E)-isositsirikine","na":1,"nb":1,"a":[["RHEA%3A83839","(19E)-geissoschizine + NADPH + H(+) = (16R,19E)-isositsirikine + NADP(+)"]],"b":[["antifungal/16r-19e-isositsirikine.html","(16R,19E)-isositsirikine"]]},{"id":"CHEBI:72292","l":"bedaquiline","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BQ1","BQ1-binding site"]],"b":[["antimycobacterial/bedaquiline.html","bedaquiline"]]},{"id":"CHEBI:72687","l":"bacilysin","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["unspecified/bacilysin.html","bacilysin"]]},{"id":"CHEBI:73079","l":"kanamycin D","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CJX","CJX-binding site"]],"b":[["unspecified/kanamycin-d.html","kanamycin D"]]},{"id":"CHEBI:73139","l":"oseltamivir acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_G39","G39-binding site"]],"b":[["antiviral/oseltamivir-acid.html","oseltamivir acid"]]},{"id":"CHEBI:73224","l":"allyl isothiocyanate","na":1,"nb":1,"a":[["RHEA%3A69272","(Z)-N-(sulfonatooxy)prop-2-enimidothioate = allyl isothiocyanate + sulfate"]],"b":[["unspecified/allyl-isothiocyanate.html","allyl isothiocyanate"]]},{"id":"CHEBI:73481","l":"asukamycin","na":1,"nb":1,"a":[["RHEA%3A75139","4-hydroxyprotoasukamycin + NADH + O2 + H(+) = asukamycin + NAD(+) + H2O"]],"b":[["antibacterial/asukamycin.html","asukamycin"]]},{"id":"CHEBI:74846","l":"azaserine","na":1,"nb":1,"a":[["TCDB%3A2.A.76","The Resistance to Homoserine/Threonine (RhtB) Family"]],"b":[["antifungal/azaserine.html","azaserine"]]},{"id":"CHEBI:7489","l":"neamine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_XXX","XXX-binding site"]],"b":[["antibacterial/neamine.html","neamine"]]},{"id":"CHEBI:74926","l":"patulin","na":1,"nb":1,"a":[["RHEA%3A62228","(E)-ascladiol + A = patulin + AH2"]],"b":[["unspecified/patulin.html","patulin"]]},{"id":"CHEBI:7508","l":"framycetin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NMY","NMY-binding site"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"CHEBI:75092","l":"morin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MRI","MRI-binding site"]],"b":[["antibacterial/morin.html","morin"]]},{"id":"CHEBI:75283","l":"miltefosine","na":1,"nb":1,"a":[["TCDB%3A3.A.3","The P-type ATPase (P-ATPase) Superfamily"]],"b":[["antifungal/miltefosine.html","miltefosine"]]},{"id":"CHEBI:75998","l":"trametinib","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_QOM","QOM-binding site"]],"b":[["antiviral/trametinib.html","trametinib"]]},{"id":"CHEBI:76010","l":"dolutegravir","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DLU","DLU-binding site"]],"b":[["antiviral/dolutegravir.html","dolutegravir"]]},{"id":"CHEBI:76244","l":"sapienic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_8Z9","8Z9-binding site"]],"b":[["antibacterial/sapienic-acid.html","sapienic acid"]]},{"id":"CHEBI:76293","l":"azadirone","na":1,"nb":1,"a":[["RHEA%3A80387","(1S,3bR,4R,5aR,9aR,9bR,11aS)-1-(1-hydroxy-4-oxobutan-2-yl)-3b,6,6,9a,11a-pentamethyl-7-oxo-1H,2H,3bH,4H,5H,5aH,6H,7H,9aH,9bH,10H,11H,11aH-cyclopenta[a]phenanthren-4-yl acetate + 2-oxoglutarate + O2 = azadirone + succinate + CO2 + 2 H2O"]],"b":[["antiprotozoal/azadirone.html","azadirone"]]},{"id":"CHEBI:76944","l":"13-epi-manool","na":1,"nb":1,"a":[["RHEA%3A40015","(+)-copalyl diphosphate + H2O = 13-epi-manool + diphosphate"]],"b":[["antifungal/13-epi-manool.html","13-epi-manool"]]},{"id":"CHEBI:76945","l":"manool","na":1,"nb":1,"a":[["RHEA%3A40011","(+)-copalyl diphosphate + H2O = manool + diphosphate"]],"b":[["antibacterial/manool.html","manool"]]},{"id":"CHEBI:77009","l":"5-O-β-D-mycaminosyl-20-oxotylonolide","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CGM","CGM-binding site"]],"b":[["unspecified/5-o-%CE%B2-d-mycaminosyl-20-oxotylonolide.html","5-O-β-D-mycaminosyl-20-oxotylonolide"]]},{"id":"CHEBI:77181","l":"crystal violet cation","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CVI","CVI-binding site"]],"b":[["antibacterial/crystal-violet-cation.html","crystal violet cation"]]},{"id":"CHEBI:77474","l":"(9Z,12Z,15Z)-octadecatrien-1-ol","na":1,"nb":1,"a":[["RHEA%3A40707","(9Z,12Z,15Z)-octadecatrien-1-ol + 1-hexadecanoylglycerone 3-phosphate = 1-O-(9Z,12Z,15Z)-octadecatrienylglycerone 3-phosphate + hexadecanoate + H(+)"]],"b":[["antibacterial/9z-12z-15z-octadecatrien-1-ol.html","(9Z,12Z,15Z)-octadecatrien-1-ol"]]},{"id":"CHEBI:77845","l":"7-aminocholesterol","na":1,"nb":1,"a":[["TCDB%3A9.A.26","The Lipid-translocating Exporter (LTE) Family"]],"b":[["antibacterial/7-aminocholesterol.html","7-aminocholesterol"]]},{"id":"CHEBI:79034","l":"monacolin J","na":1,"nb":1,"a":[["RHEA%3A62748","lovastatin + H2O = monacolin J + (S)-2-methylbutanoate + H(+)"]],"b":[["unspecified/monacolin-j.html","monacolin J"]]},{"id":"CHEBI:7934","l":"paromomycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PAR","PAR-binding site"]],"b":[["antibacterial/paromomycin.html","paromomycin"]]},{"id":"CHEBI:79391","l":"(−)-chuangxinmycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9E0","9E0-binding site"]],"b":[["antibacterial/chuangxinmycin.html","(−)-chuangxinmycin"]]},{"id":"CHEBI:79394","l":"indolmycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_5BX","5BX-binding site"]],"b":[["antibacterial/indolmycin.html","indolmycin"]]},{"id":"CHEBI:8062","l":"phenethyl caffeate","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_QAP","QAP-binding site"]],"b":[["antibacterial/phenethyl-caffeate.html","phenethyl caffeate"]]},{"id":"CHEBI:80751","l":"(S)-goitrin","na":1,"nb":1,"a":[["RHEA%3A69292","(Z)-(2R)-2-hydroxy-3-butenyl-N-(sulfonatooxy)methanimidothioate = goitrin + sulfate"]],"b":[["antiviral/s-goitrin.html","(S)-goitrin"]]},{"id":"CHEBI:81724","l":"diminazene","na":1,"nb":1,"a":[["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"]],"b":[["antiprotozoal/diminazene.html","diminazene"]]},{"id":"CHEBI:81761","l":"etridiazole","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/etridiazole.html","etridiazole"]]},{"id":"CHEBI:8232","l":"piperacillin","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/piperacillin.html","piperacillin"]]},{"id":"CHEBI:82754","l":"microcin c","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["unspecified/microcin-c.html","microcin c"]]},{"id":"CHEBI:82809","l":"agrocin 84","na":1,"nb":1,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["unspecified/agrocin-84.html","agrocin 84"]]},{"id":"CHEBI:83147","l":"","na":1,"nb":1,"a":[["RHEA%3A83179","a steroid + reduced [NADPH--hemoprotein reductase] + O2 = a 15alpha-hydroxy steroid + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["antifungal/9%CE%BE-14%CE%BE-25s-cholestane-3%CE%B2-4%CE%B2-6%CE%B2-7%CE%B1-8-15%CE%B1-16%CE%B2-26-octol.html","(9ξ,14ξ,25S)-cholestane-3β,4β,6β,7α,8,15α,16β,26-octol"]]},{"id":"CHEBI:8417","l":"pristinamycin IA","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/pristinamycin-ia.html","pristinamycin IA"]]},{"id":"CHEBI:84587","l":"","na":1,"nb":1,"a":[["RHEA%3A44724","2,3-saturated fatty aldehyde + NADP(+) = (2E)-fatty aldehyde + NADPH + H(+)"]],"b":[["unspecified/pentadecanal.html","pentadecanal"]]},{"id":"CHEBI:84588","l":"","na":1,"nb":1,"a":[["RHEA%3A44724","2,3-saturated fatty aldehyde + NADP(+) = (2E)-fatty aldehyde + NADPH + H(+)"]],"b":[["antibacterial/e-dodec-2-enal.html","(E)-dodec-2-enal"]]},{"id":"CHEBI:85083","l":"sofosbuvir","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_WG6","WG6-binding site"]],"b":[["antiviral/sofosbuvir.html","sofosbuvir"]]},{"id":"CHEBI:85273","l":"(R)-flumequine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_7X9","7X9-binding site"]],"b":[["unspecified/r-flumequine.html","(R)-flumequine"]]},{"id":"CHEBI:85412","l":"mitomycin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MQA","MQA-binding site"]],"b":[["unspecified/mitomycin-a.html","mitomycin A"]]},{"id":"CHEBI:8673","l":"pyrimethamine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CP6","CP6-binding site"]],"b":[["antiprotozoal/pyrimethamine.html","pyrimethamine"]]},{"id":"CHEBI:87185","l":"florfenicol","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/florfenicol.html","florfenicol"]]},{"id":"CHEBI:87805","l":"ethionamide S-oxide","na":1,"nb":1,"a":[["RHEA%3A47616","ethionamide + NADPH + O2 + H(+) = ethionamide S-oxide + NADP(+) + H2O"]],"b":[["antimycobacterial/ethionamide-s-oxide.html","ethionamide S-oxide"]]},{"id":"CHEBI:90531","l":"sotrastaurin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_LW4","LW4-binding site"]],"b":[["antiviral/sotrastaurin.html","sotrastaurin"]]},{"id":"CHEBI:9168","l":"sirolimus","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RAP","RAP-binding site"]],"b":[["antibacterial/sirolimus.html","sirolimus"]]},{"id":"CHEBI:9212","l":"sparfloxacin","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/sparfloxacin.html","sparfloxacin"]]},{"id":"CHEBI:92181","l":"lasalocid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_LSD","LSD-binding site"]],"b":[["antiprotozoal/lasalocid.html","lasalocid"]]},{"id":"CHEBI:92257","l":"IKK16","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_V17","V17-binding site"]],"b":[["antiprotozoal/ikk16.html","IKK16"]]},{"id":"CHEBI:9328","l":"sulfadiazine","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antiprotozoal/sulfadiazine.html","sulfadiazine"]]},{"id":"CHEBI:9337","l":"sulfathiazole","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["unspecified/sulfathiazole.html","sulfathiazole"]]},{"id":"CHEBI:9448","l":"terbinafine","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/terbinafine.html","terbinafine"]]},{"id":"CHEBI:9661","l":"triacetin","na":1,"nb":1,"a":[["RHEA%3A48028","triacetin + H2O = diacetylglycerol + acetate + H(+)"]],"b":[["antifungal/triacetin.html","triacetin"]]},{"id":"CHEBI:9688","l":"trichodermin","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/trichodermin.html","trichodermin"]]},{"id":"CHEBI:9691","l":"piperyline","na":1,"nb":1,"a":[["RHEA%3A73663","pyrrolidine + (E,E)-piperoyl-CoA = piperyline + CoA + H(+)"]],"b":[["antifungal/piperyline.html","piperyline"]]},{"id":"NCBITaxon:1764","l":"Mycobacterium avium","na":1,"nb":1,"a":[["Pfam%3APF01882","Protein of unknown function DUF58"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":1,"nb":1,"a":[["Pfam%3APF26312","Domain of unknown function (DUF8083)"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"NCBITaxon:263","l":"Francisella tularensis","na":1,"nb":1,"a":[["TED%3AAF-A0A6I4RUC7-F1-model_v4_TED02","TED novel fold AF-A0A6I4RUC7-F1-model_v4_TED02"]],"b":[["unspecified/%CE%B1-mangostin.html","α-mangostin"]]},{"id":"NCBITaxon:271","l":"Thermus aquaticus","na":1,"nb":1,"a":[["Pfam%3APF07669","Eco57I restriction-modification methylase"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":1,"nb":1,"a":[["Pfam%3APF07335","Fungal chitosanase of glycosyl hydrolase group 75"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"NCBITaxon:5082","l":"Penicillium roqueforti","na":1,"nb":1,"a":[["Pfam%3APF07573","Nitrogen regulatory protein AreA N terminus"]],"b":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]]},{"id":"NCBITaxon:5127","l":"Fusarium fujikuroi","na":1,"nb":1,"a":[["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"NCBITaxon:5141","l":"Neurospora crassa","na":1,"nb":1,"a":[["TED%3AAF-A0A0B0E1R4-F1-model_v4_TED01","TED novel fold AF-A0A0B0E1R4-F1-model_v4_TED01"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"NCBITaxon:53446","l":"Streptomyces cinnamoneus","na":1,"nb":1,"a":[["TED%3AAF-A0A2S6XSK0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S6XSK0-F1-model_v4_TED01"]],"b":[["antibacterial/bicozamycin.html","bicozamycin"]]},{"id":"NCBITaxon:68280","l":"Streptomyces violaceusniger","na":1,"nb":1,"a":[["TED%3AAF-A0A0X3VKA0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0X3VKA0-F1-model_v4_TED01"]],"b":[["antibacterial/nigericin.html","nigericin"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A5C7XIK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7XIK2-F1-model_v4_TED01"]],"b":[["antibacterial/lysocin-e.html","lysocin E"]]},{"id":"UniProt:B8N2C8","l":"","na":1,"nb":1,"a":[["EC%3A1.14.14.154","sterol 14alpha-demethylase"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"UniProt:O30463","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TOP","TOP-binding site"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"UniProt:P0A017","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_0U5","0U5-binding site"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"UniProt:P13955","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TOP","TOP-binding site"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"UniProt:P42535","l":"","na":1,"nb":1,"a":[["EC%3A1.14.13.50","pentachlorophenol monooxygenase"]],"b":[["antifungal/pentachlorophenol.html","pentachlorophenol"]]},{"id":"UniProt:P50859","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_1YN","1YN-binding site"]],"b":[["antifungal/fluconazole.html","fluconazole"]]},{"id":"UniProt:Q5ALV2","l":"","na":1,"nb":1,"a":[["Pfam%3APF08226","Domain of unknown function (DUF1720)"]],"b":[["antifungal/fluconazole.html","fluconazole"]]},{"id":"UniProt:Q81R22","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_N22","N22-binding site"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/ProteinTraitsMech--CultureMech.json b/assets/fleet/edges/ProteinTraitsMech--CultureMech.json index 53bbe3b..d684f33 100644 --- a/assets/fleet/edges/ProteinTraitsMech--CultureMech.json +++ b/assets/fleet/edges/ProteinTraitsMech--CultureMech.json @@ -1 +1 @@ -{"a":"ProteinTraitsMech","b":"CultureMech","base":{"ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record=","CultureMech":"https://github.com/CultureBotAI/CultureMech/blob/main/data/merge_yaml/merged/"},"n":233,"by":{"CHEBI":221,"NCBITaxon":10,"UBERON":2},"terms":[{"id":"CHEBI:15377","l":"water","na":9376,"nb":2282,"a":[["EC%3A1.1.1.115","ribose 1-dehydrogenase (NADP(+))"],["EC%3A1.1.1.132","GDP-mannose 6-dehydrogenase"],["EC%3A1.1.1.136","UDP-N-acetylglucosamine 6-dehydrogenase"],["EC%3A1.1.1.186","dTDP-galactose 6-dehydrogenase"],["EC%3A1.1.1.192","long-chain-alcohol dehydrogenase"],["EC%3A1.1.1.205","IMP dehydrogenase"]],"b":[["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1_10_MB_agar.yaml","1_10_mb_agar"],["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"],["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":1616,"nb":709,"a":[["EC%3A1.1.1.170","3beta-hydroxysteroid-4alpha-carboxylate 3-dehydrogenase (decarboxylating)"],["EC%3A1.1.1.262","4-hydroxythreonine-4-phosphate dehydrogenase"],["EC%3A1.1.1.276","serine 3-dehydrogenase (NADP(+))"],["EC%3A1.1.1.286","isocitrate--homoisocitrate dehydrogenase"],["EC%3A1.1.1.305","UDP-glucuronic acid oxidase (UDP-4-keto-hexauronic acid decarboxylating)"],["EC%3A1.1.1.343","phosphogluconate dehydrogenase (NAD(+)-dependent, decarboxylating)"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["4_yaco_media.yaml","4_yaco_media"],["8kg_4_medium.yaml","8kg_4_medium"],["ABSS2.yaml","abss2"],["ABYSSISOLIBACTER_MEDIUM.yaml","abyssisolibacter_medium"]]},{"id":"CHEBI:17754","l":"glycerol","na":95,"nb":165,"a":[["EC%3A1.1.1.156","glycerol 2-dehydrogenase (NADP(+))"],["EC%3A1.1.1.372","D/L-glyceraldehyde reductase"],["EC%3A1.1.1.6","glycerol dehydrogenase"],["EC%3A1.1.1.72","glycerol dehydrogenase (NADP(+))"],["EC%3A1.1.99.22","glycerol dehydrogenase (acceptor)"],["EC%3A2.4.1.332","1,2-alpha-glucosylglycerol phosphorylase"]],"b":[["1_ogawa_medium.yaml","1_ogawa_medium"],["1_ogawa_medium__65d0ae34.yaml","1_ogawa_medium"],["5_G_MEDIUM.yaml","5_g_medium"],["5_g_medium__8aa8a45a.yaml","5_g_medium"],["6_B_MEDIUM.yaml","6_b_medium"],["6_b_medium__990e4708.yaml","6_b_medium"]]},{"id":"CHEBI:17154","l":"nicotinamide","na":92,"nb":117,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17154","requires nicotinamide"],["EC%3A2.1.1.1","nicotinamide N-methyltransferase"],["EC%3A2.3.1.286","protein acetyllysine N-acetyltransferase"],["EC%3A2.3.1.313","NAD-dependent lipoamidase"],["EC%3A2.4.2.12","nicotinamide phosphoribosyltransferase"],["EC%3A2.4.2.31","NAD(+)--protein-arginine ADP-ribosyltransferase"]],"b":[["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"],["ANAEROBIC_CHOLESTEROL_MEDIUM.yaml","anaerobic_cholesterol_medium"],["ANAEROBIC_THAUERA_MEDIUM.yaml","anaerobic_thauera_medium"],["ANCALOMICROBIUM_MEDIUM.yaml","ancalomicrobium_medium"],["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"]]},{"id":"CHEBI:17790","l":"methanol","na":86,"nb":107,"a":[["EC%3A1.1.1.244","methanol dehydrogenase"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.99.37","methanol dehydrogenase (nicotinoprotein)"],["EC%3A1.14.13.25","methane monooxygenase (soluble)"],["EC%3A1.14.14.117","aflatoxin B synthase"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["2_mh_medium.yaml","2_mh_medium"],["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["ALTEROMONAS_MEDIUM.yaml","alteromonas_medium"],["BM_MEDIUM.yaml","bm_medium"]]},{"id":"CHEBI:17992","l":"sucrose","na":49,"nb":108,"a":[["EC%3A1.1.99.13","glucoside 3-dehydrogenase (acceptor)"],["EC%3A2.4.1.10","levansucrase"],["EC%3A2.4.1.125","sucrose--1,6-alpha-glucan 3(6)-alpha-glucosyltransferase"],["EC%3A2.4.1.13","sucrose synthase"],["EC%3A2.4.1.166","raffinose--raffinose alpha-galactosyltransferase"],["EC%3A2.4.1.167","sucrose 6(F)-alpha-galactosyltransferase"]],"b":[["ACANTHAMOEBA_MEDIUM.yaml","acanthamoeba_medium"],["ACETIVIBRIO_MEDIUM.yaml","acetivibrio_medium"],["ALCALIPHILIC_AMPHIBACILLUS_STRAINS_MEDIUM.yaml","alcaliphilic_amphibacillus_strains_medium"],["ALKALIPHILIC_SPIROCHAETE_MEDIUM.yaml","alkaliphilic_spirochaete_medium"],["ANAEROBACTER_MEDIUM.yaml","anaerobacter_medium"],["AZOSPIRILLUM_AMAZONENSE_MEDIUM.yaml","azospirillum_amazonense_medium"]]},{"id":"CHEBI:16199","l":"urea","na":48,"nb":45,"a":[["EC%3A3.5.1.5","urease"],["EC%3A3.5.1.95","N-malonylurea hydrolase"],["EC%3A3.5.3.1","arginase"],["EC%3A3.5.3.10","D-arginase"],["EC%3A3.5.3.11","agmatinase"],["EC%3A3.5.3.14","amidinoaspartase"]],"b":[["A7_MEDIUM.yaml","a7_medium"],["Agro_defined_trehalose.yaml","Agro defined trehalose"],["BACILLUS_PASTEURII_MEDIUM.yaml","bacillus_pasteurii_medium"],["BM7CO_MEDIUM.yaml","bm7co_medium"],["C41_MEDIUM.yaml","c41_medium"],["CATONELLA_UREILYTICA_MEDIUM.yaml","catonella_ureilytica_medium"]]},{"id":"CHEBI:18276","l":"dihydrogen","na":42,"nb":231,"a":[["EC%3A1.12.1.2","hydrogen dehydrogenase"],["EC%3A1.12.1.3","hydrogen dehydrogenase (NADP(+))"],["EC%3A1.12.1.4","hydrogenase (NAD(+), ferredoxin)"],["EC%3A1.12.1.5","hydrogen dehydrogenase [NAD(P)(+)]"],["EC%3A1.12.2.1","cytochrome-c3 hydrogenase"],["EC%3A1.12.5.1","hydrogen:quinone oxidoreductase"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["4_yaco_media.yaml","4_yaco_media"],["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["AMMONIFEX_DEGENSII_MEDIUM.yaml","ammonifex_degensii_medium"],["AP11MH_medium.yaml","ap11mh_medium"]]},{"id":"CHEBI:17268","l":"myo-inositol","na":42,"nb":50,"a":[["EC%3A1.1.1.18","inositol 2-dehydrogenase"],["EC%3A1.1.5.n1","quinoprotein inositol dehydrogenase"],["EC%3A1.13.99.1","inositol oxygenase"],["EC%3A2.1.1.129","inositol 4-methyltransferase"],["EC%3A2.1.1.39","inositol 3-methyltransferase"],["EC%3A2.1.1.40","inositol 1-methyltransferase"]],"b":[["2ASW.yaml","2asw"],["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"],["ASW.yaml","asw"],["CDM_LP.yaml","cdm_lp"],["DESULFAMPLUS_MEDIUM.yaml","desulfamplus_medium"],["EGGC_MEDIUM.yaml","eggc_medium"]]},{"id":"CHEBI:30089","l":"acetate","na":302,"nb":31,"a":[["EC%3A1.1.1.318","eugenol synthase"],["EC%3A1.1.1.319","isoeugenol synthase"],["EC%3A1.13.11.50","acetylacetone-cleaving enzyme"],["EC%3A1.13.12.4","lactate 2-monooxygenase"],["EC%3A1.14.13.54","ketosteroid monooxygenase"],["EC%3A1.14.14.19","steroid 17alpha-monooxygenase"]],"b":[["AMOEBOBACTER_MEDIUM.yaml","amoebobacter_medium"],["FWAFC.yaml","fwafc"],["M9ZB_with_acetate.yaml","m9zb_with_acetate"],["MEDIUM_FOR_CHLOROBIUM_FERROOXIDANS.yaml","medium_for_chlorobium_ferrooxidans"],["NMM_with_acetate.yaml","nmm_with_acetate"],["Thauera_aminoaromatica_medium.yaml","thauera_aminoaromatica_medium"]]},{"id":"CHEBI:16236","l":"ethanol","na":31,"nb":70,"a":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.5.5","alcohol dehydrogenase (quinone)"],["EC%3A1.1.99.36","alcohol dehydrogenase (nicotinoprotein)"],["EC%3A2.3.1.268","ethanol O-acetyltransferase"],["EC%3A3.1.1.113","ethyl acetate hydrolase"],["EC%3A3.1.1.67","fatty-acyl-ethyl-ester synthase"]],"b":[["ACETOBACTER_PEROXYDANS_MEDIUM.yaml","acetobacter_peroxydans_medium"],["AE_BROTH.yaml","ae_broth"],["ANAEROTIGNUM_NEOPROPIONICUM_MEDIUM.yaml","anaerotignum_neopropionicum_medium"],["Acetobacter_Europaeus_Medium.yaml","acetobacter_europaeus_medium"],["BTU_MEDIUM.yaml","btu_medium"],["CLOSTRIDIUM_KLUYVERI_MEDIUM.yaml","clostridium_kluyveri_medium"]]},{"id":"CHEBI:16947","l":"citrate(3-)","na":49,"nb":31,"a":[["EC%3A2.3.3.1","citrate (Si)-synthase"],["EC%3A2.3.3.16","citrate synthase (unknown stereospecificity)"],["EC%3A2.3.3.3","citrate (Re)-synthase"],["EC%3A2.3.3.8","ATP citrate synthase"],["EC%3A2.8.3.10","citrate CoA-transferase"],["EC%3A4.1.3.6","citrate (pro-3S)-lyase"]],"b":[["E2_medium_with_citrate.yaml","e2_medium_with_citrate"],["M9_minimal_medium_with_citrate.yaml","m9_minimal_medium_with_citrate"],["Vogels_Medium_N.yaml","vogels_medium_n"],["aspartate_salt_schaechter_et_al.yaml","aspartate_salt_schaechter_et_al"],["batch_medium_mattanovich_et_al.yaml","batch_medium_mattanovich_et_al"],["bg11_0_015_mm_iron_shcolnick_2006.yaml","bg11_0_015_mm_iron_shcolnick_2006"]]},{"id":"CHEBI:17306","l":"maltose","na":27,"nb":50,"a":[["EC%3A2.3.1.79","maltose O-acetyltransferase"],["EC%3A2.4.1.139","maltose synthase"],["EC%3A2.4.1.8","maltose phosphorylase"],["EC%3A2.7.1.175","maltokinase"],["EC%3A2.7.1.208","protein-N(pi)-phosphohistidine--maltose phosphotransferase"],["EC%3A3.1.3.90","maltose 6'-phosphate phosphatase"]],"b":[["ALKALIPHILUS_LACT_MEDIUM.yaml","alkaliphilus_lact_medium"],["ANAEROCELLA_MEDIUM.yaml","anaerocella_medium"],["BUTYRIVIBRIO_M2_MEDIUM.yaml","butyrivibrio_m2_medium"],["COLON_EXTRACT_MEDIUM.yaml","colon_extract_medium"],["DEINOCOCCUS_MEDIUM.yaml","deinococcus_medium"],["HELMUTKOENIGIA_MEDIUM.yaml","helmutkoenigia_medium"]]},{"id":"CHEBI:17568","l":"uracil","na":47,"nb":26,"a":[["EC%3A1.14.11.10","pyrimidine-deoxynucleoside 1'-dioxygenase"],["EC%3A1.14.99.46","pyrimidine monooxygenase"],["EC%3A1.17.99.4","uracil/thymine dehydrogenase"],["EC%3A1.3.1.1","dihydrouracil dehydrogenase (NAD(+))"],["EC%3A1.3.1.2","dihydropyrimidine dehydrogenase (NADP(+))"],["EC%3A1.3.3.7","dihydrouracil oxidase"]],"b":[["CDM_LP.yaml","cdm_lp"],["MCD_Medium.yaml","mcd_medium"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"]]},{"id":"CHEBI:15361","l":"pyruvate","na":410,"nb":24,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15361","requires pyruvate"],["EC%3A1.1.1.27","L-lactate dehydrogenase"],["EC%3A1.1.1.28","D-lactate dehydrogenase"],["EC%3A1.1.1.38","malate dehydrogenase (oxaloacetate-decarboxylating)"],["EC%3A1.1.1.39","malate dehydrogenase (decarboxylating)"],["EC%3A1.1.1.40","malate dehydrogenase (oxaloacetate-decarboxylating) (NADP(+))"]],"b":[["ARCOBACTER_ANAEROPHILUS_MEDIUM.yaml","arcobacter_anaerophilus_medium"],["CENTENUM_MEDIUM.yaml","centenum_medium"],["CMM.yaml","cmm"],["NMM_with_pyruvate.yaml","nmm_with_pyruvate"],["ams1_pyruvate_glycine.yaml","ams1_pyruvate_glycine"],["ams1_pyruvate_glycine__08b97e38.yaml","ams1_pyruvate_glycine"]]},{"id":"CHEBI:26833","l":"sulfur atom","na":24,"nb":153,"a":[["EC%3A1.12.98.4","sulfhydrogenase"],["EC%3A1.13.11.55","sulfur oxygenase/reductase"],["EC%3A1.8.1.18","NAD(P)H sulfur oxidoreductase (CoA-dependent)"],["EC%3A1.8.1.19","sulfide dehydrogenase"],["EC%3A1.8.2.3","sulfide-cytochrome-c reductase (flavocytochrome c)"],["EC%3A1.8.2.7","thiocyanate desulfurase"]],"b":[["1_2_SME_MEDIUM.yaml","1_2_sme_medium"],["9K_WITH_SULFUR_MEDIUM.yaml","9k_with_sulfur_medium"],["ACIDIANUS_BRIERLEYI_MEDIUM.yaml","acidianus_brierleyi_medium"],["ACIDITHIOBACILLUS_CALDUS_MEDIUM.yaml","acidithiobacillus_caldus_medium"],["ACIDITHIOBACILLUS_MEDIUM.yaml","acidithiobacillus_medium"],["ACIDOLOBUS_ACETICUS_MEDIUM.yaml","acidolobus_aceticus_medium"]]},{"id":"CHEBI:17836","l":"4-aminobenzoate","na":20,"nb":87,"a":[["EC%3A1.14.13.27","4-aminobenzoate 1-monooxygenase"],["EC%3A1.14.99.68","4-aminobenzoate N-oxygenase"],["EC%3A2.4.2.54","beta-ribofuranosylphenol 5'-phosphate synthase"],["EC%3A2.5.1.15","dihydropteroate synthase"],["EC%3A4.1.1.24","aminobenzoate decarboxylase"],["EC%3A4.1.3.38","aminodeoxychorismate lyase"]],"b":[["Asp2.yaml","asp2"],["CAMM.yaml","camm"],["CDM_LP.yaml","cdm_lp"],["DESULFOMONILE_MEDIUM.yaml","desulfomonile_medium"],["FWAFC.yaml","fwafc"],["Gotz_minimal_medium_with_malate.yaml","gotz_minimal_medium_with_malate"]]},{"id":"CHEBI:17716","l":"lactose","na":20,"nb":25,"a":[["EC%3A2.4.1.22","lactose synthase"],["EC%3A2.7.1.207","protein-N(pi)-phosphohistidine--lactose phosphotransferase"],["EC%3A3.2.1.108","lactase"],["EC%3A3.2.1.140","lacto-N-biosidase"],["EC%3A3.2.1.227","N-acetyllactosaminidase"],["RHEA%3A86923","a beta-D-Gal-(1->4)-beta-D-Glc-(1<->1)-Cer(d18:1(4E)) + H2O = lactose + an N-acylsphing-4-enine"]],"b":[["1298.yaml","1298"],["ALKALINE_CELLULOSE_AGAR.yaml","alkaline_cellulose_agar"],["Basal_synthetic_medium.yaml","basal_synthetic_medium"],["CLOSTRIDIUM_VINCENTII_MEDIUM.yaml","clostridium_vincentii_medium"],["M17_MEDIUM_FOR_LACTIC_STREPTOCOCCI.yaml","m17_medium_for_lactic_streptococci"],["STREPTOCOCCUS_SUIS_MEDIUM.yaml","streptococcus_suis_medium"]]},{"id":"CHEBI:17821","l":"thymine","na":20,"nb":22,"a":[["EC%3A1.14.11.6","thymine dioxygenase"],["EC%3A1.14.99.46","pyrimidine monooxygenase"],["EC%3A1.17.99.4","uracil/thymine dehydrogenase"],["EC%3A1.3.1.1","dihydrouracil dehydrogenase (NAD(+))"],["EC%3A1.3.1.2","dihydropyrimidine dehydrogenase (NADP(+))"],["EC%3A2.4.2.2","pyrimidine-nucleoside phosphorylase"]],"b":[["2ASW.yaml","2asw"],["2asw__59e92e67.yaml","2asw"],["ASW.yaml","asw"],["Asp2.yaml","asp2"],["CDM_LP.yaml","cdm_lp"],["NLDM_defined.yaml","NLDM_defined"]]},{"id":"CHEBI:17057","l":"cellobiose","na":19,"nb":121,"a":[["EC%3A1.1.3.5","hexose oxidase"],["EC%3A1.1.99.18","cellobiose dehydrogenase (acceptor)"],["EC%3A2.4.1.20","cellobiose phosphorylase"],["EC%3A2.7.1.205","protein-N(pi)-phosphohistidine--D-cellobiose phosphotransferase"],["EC%3A2.7.1.85","beta-glucoside kinase"],["EC%3A5.1.3.11","cellobiose epimerase"]],"b":[["A7_MEDIUM.yaml","a7_medium"],["ACETIVIBRIO_ALKALICELLULOSI_MEDIUM.yaml","acetivibrio_alkalicellulosi_medium"],["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["ALKALIFLEXUS_MEDIUM.yaml","alkaliflexus_medium"],["ANAEROBACTERIUM_MEDIUM.yaml","anaerobacterium_medium"],["ANAEROCELLA_MEDIUM.yaml","anaerocella_medium"]]},{"id":"CHEBI:18385","l":"thiamine(1+)","na":19,"nb":94,"a":[["EC%3A1.1.3.23","thiamine oxidase"],["EC%3A2.5.1.2","thiamine pyridinylase"],["EC%3A2.7.1.89","thiamine kinase"],["EC%3A2.7.6.2","thiamine diphosphokinase"],["EC%3A3.1.3.100","thiamine phosphate phosphatase"],["EC%3A3.5.99.2","aminopyrimidine aminohydrolase"]],"b":[["ANB_aerobic.yaml","anb_aerobic"],["AQUASPIRILLUM_MEDIUM.yaml","aquaspirillum_medium"],["Basic_mineral_medium.yaml","basic_mineral_medium"],["CHITINIVIBRIO_MEDIUM.yaml","chitinivibrio_medium"],["Chemically_defined_medium.yaml","chemically_defined_medium"],["Chromatium_Medium.yaml","chromatium_medium"]]},{"id":"CHEBI:16709","l":"pyridoxine","na":19,"nb":38,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16709","requires pyridoxine"],["EC%3A1.1.1.65","pyridoxine 4-dehydrogenase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.99.9","pyridoxine 5-dehydrogenase"],["EC%3A2.4.1.160","pyridoxine 5'-O-beta-D-glucosyltransferase"],["EC%3A2.7.1.35","pyridoxal kinase"]],"b":[["1_10_PYGV_MEDIUM_modified.yaml","1_10_pygv_medium_modified"],["4_yaco_media.yaml","4_yaco_media"],["ANB_aerobic.yaml","anb_aerobic"],["AQUASPIRILLUM_MEDIUM.yaml","aquaspirillum_medium"],["BACTO_MIDDLEBROOK_7H9_BROTH.yaml","bacto_middlebrook_7h9_broth"],["Basic_mineral_medium.yaml","basic_mineral_medium"]]},{"id":"CHEBI:16235","l":"guanine","na":27,"nb":19,"a":[["EC%3A2.4.2.1","purine-nucleoside phosphorylase"],["EC%3A2.4.2.15","guanosine phosphorylase"],["EC%3A2.4.2.29","tRNA-guanosine(34) preQ1 transglycosylase"],["EC%3A2.4.2.48","tRNA-guanine(15) transglycosylase"],["EC%3A2.4.2.64","tRNA-guanosine(34) queuine transglycosylase"],["EC%3A2.4.2.8","hypoxanthine phosphoribosyltransferase"]],"b":[["MCD_Medium.yaml","mcd_medium"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"]]},{"id":"CHEBI:17997","l":"dinitrogen","na":18,"nb":903,"a":[["EC%3A1.18.6.1","nitrogenase"],["EC%3A1.18.6.2","vanadium-dependent nitrogenase"],["EC%3A1.19.6.1","nitrogenase (flavodoxin)"],["EC%3A1.7.2.4","nitrous-oxide reductase"],["EC%3A1.7.2.8","hydrazine dehydrogenase"],["RHEA%3A79967","3-diazoavenalumate + NADH + H(+) = avenalumate + N2 + NAD(+)"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_tryptic_soy_broth_anaerobic.yaml","1_2_tryptic_soy_broth_anaerobic"],["480g_medium__e94698e7.yaml","480g_medium"],["8kg_4_medium.yaml","8kg_4_medium"],["ABSS2.yaml","abss2"],["ABYSSISOLIBACTER_MEDIUM.yaml","abyssisolibacter_medium"]]},{"id":"CHEBI:16899","l":"D-mannitol","na":17,"nb":18,"a":[["EC%3A1.1.1.138","mannitol 2-dehydrogenase (NADP(+))"],["EC%3A1.1.1.255","mannitol dehydrogenase"],["EC%3A1.1.1.67","mannitol 2-dehydrogenase"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.3.40","D-mannitol oxidase"],["EC%3A2.7.1.197","protein-N(pi)-phosphohistidine--D-mannitol phosphotransferase"]],"b":[["HETEROTROPHIC_MEDIUM_H3P.yaml","heterotrophic_medium_h3p"],["MGL.yaml","MGL"],["Modified_YM.yaml","Modified YM"],["NF.yaml","NF"],["NL-CCM.yaml","NL-CCM"],["NLDM_defined.yaml","NLDM_defined"]]},{"id":"CHEBI:17596","l":"inosine","na":32,"nb":16,"a":[["EC%3A1.1.3.28","nucleoside oxidase"],["EC%3A2.7.1.73","inosine kinase"],["EC%3A3.1.3.99","IMP-specific 5'-nucleotidase"],["EC%3A3.13.1.9","S-inosyl-L-homocysteine hydrolase"],["EC%3A3.2.2.2","inosine nucleosidase"],["EC%3A3.5.4.4","adenosine deaminase"]],"b":[["MCD_Medium.yaml","mcd_medium"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:29032","l":"(R)-pantothenate","na":15,"nb":135,"a":[["EC%3A2.7.1.33","pantothenate kinase"],["EC%3A3.5.1.22","pantothenase"],["EC%3A3.5.1.92","pantetheine hydrolase"],["EC%3A6.3.2.1","pantoate--beta-alanine ligase (AMP-forming)"],["EC%3A6.3.2.44","pantoate--beta-alanine ligase (ADP-forming)"],["RHEA%3A68332","(R)-4'-phosphopantothenate + H2O = (R)-pantothenate + phosphate"]],"b":[["AP11MH_medium.yaml","ap11mh_medium"],["ARCHAEOGLOBUS_FULGIDUS_MEDIUM.yaml","archaeoglobus_fulgidus_medium"],["AS_medium.yaml","as_medium"],["A_medium.yaml","a_medium"],["Artificial_seawater_medium_for_strain_JS_SRB250Lac.yaml","artificial_seawater_medium_for_strain_js_srb250lac"],["Cedears_Standard_Medium_2.yaml","cedears_standard_medium_2"]]},{"id":"CHEBI:17750","l":"glycine betaine","na":33,"nb":15,"a":[["EC%3A1.1.3.17","choline oxidase"],["EC%3A1.13.11.90","[1-hydroxy-2-(trimethylamino)ethyl]phosphonate dioxygenase (glycine- betaine-forming)"],["EC%3A1.14.13.251","glycine betaine monooxygenase"],["EC%3A1.2.1.8","betaine-aldehyde dehydrogenase"],["EC%3A1.21.4.4","betaine reductase"],["EC%3A2.1.1.157","sarcosine/dimethylglycine N-methyltransferase"]],"b":[["CUNICULIPLASMA_MEDIUM.yaml","cuniculiplasma_medium"],["MALEDIVIBACTER_MEDIUM.yaml","maledivibacter_medium"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"]]},{"id":"CHEBI:15428","l":"glycine","na":13,"nb":87,"a":[["MCSA%3A718","caspase-1"],["MCSA%3A599","dipeptidase E"],["MCSA%3A906","gelatinase A"],["MCSA%3A762","glycine C-acetyltransferase"],["MCSA%3A746","L-peptidase"],["MCSA%3A477","picornain 3C"]],"b":[["ACETOBACTEROIDES_GLYCINOPHILUS_MEDIUM.yaml","acetobacteroides_glycinophilus_medium"],["ACIDAMINOBACTER_MEDIUM.yaml","acidaminobacter_medium"],["ACIDAMINOCOCCUS_FERMENTANS_MEDIUM.yaml","acidaminococcus_fermentans_medium"],["ANT.yaml","ant"],["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"]]},{"id":"CHEBI:16040","l":"cytosine","na":17,"nb":13,"a":[["EC%3A2.4.2.57","AMP phosphorylase"],["EC%3A3.2.2.10","pyrimidine-5'-nucleotide nucleosidase"],["EC%3A3.2.2.8","ribosylpyrimidine nucleosidase"],["EC%3A3.5.1.135","N(4)-acetylcytidine amidohydrolase"],["EC%3A3.5.4.1","cytosine deaminase"],["RHEA%3A30075","CMP + H2O = cytosine + D-ribose 5-phosphate"]],"b":[["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:26271","l":"proline","na":12,"nb":19,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.15","The Betaine/Carnitine/Choline Transporter (BCCT) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"]],"b":[["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["cdm_lab_medium.yaml","cdm_lab_medium"],["complete_chemically_defined_medium.yaml","complete_chemically_defined_medium"],["minimal_chemically_defined_medium_his_pro_letort_2001.yaml","minimal_chemically_defined_medium_his_pro_letort_2001"]]},{"id":"CHEBI:16977","l":"L-alanine","na":11,"nb":51,"a":[["ARO%3A3004943","cycloserine resistant ald"],["ARO%3A3004946","cycloserine resistant alr"],["ARO%3A3004945","Mycobacterium tuberculosis ald mutations confer resistance to cycloserine"],["ARO%3A3004947","Mycobacterium tuberculosis alr with mutation conferring resistance to cycloserine"],["MCSA%3A609","alpha-lytic endopeptidase"],["MCSA%3A238","assemblin"]],"b":[["ANAEROTIGNUM_MEDIUM.yaml","anaerotignum_medium"],["BGDM.yaml","bgdm"],["CMM.yaml","cmm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MCD_Medium.yaml","mcd_medium"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"]]},{"id":"CHEBI:18067","l":"phylloquinone","na":11,"nb":38,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18067","requires phylloquinone"],["EC%3A1.14.14.78","phylloquinone omega-hydroxylase"],["EC%3A1.14.99.20","phylloquinone monooxygenase (2,3-epoxidizing)"],["EC%3A1.17.4.4","vitamin-K-epoxide reductase (warfarin-sensitive)"],["RHEA%3A57744","phylloquinol + [protein]-disulfide = phylloquinone + [protein]-dithiol"],["RHEA%3A16745","phylloquinone + AH2 + O2 = 2,3-epoxyphylloquinone + A + H2O"]],"b":[["BTU_MEDIUM.yaml","btu_medium"],["Brucella_agar_plates_supplemented_with_hemin_and_vitamin_K1.yaml","brucella_agar_plates_supplemented_with_hemin_and_vitamin_k1"],["COLON_EXTRACT_MEDIUM.yaml","colon_extract_medium"],["Chopped_meat_carbohydrates_with_rumen_fluid.yaml","chopped_meat_carbohydrates_with_rumen_fluid"],["DIALISTER_MEDIUM.yaml","dialister_medium"],["EUBACTERIUM_LENTUM_MEDIUM.yaml","eubacterium_lentum_medium"]]},{"id":"CHEBI:17368","l":"hypoxanthine","na":28,"nb":11,"a":[["EC%3A1.17.1.4","xanthine dehydrogenase"],["EC%3A1.17.3.2","xanthine oxidase"],["EC%3A2.4.2.44","S-methyl-5'-thioinosine phosphorylase"],["EC%3A2.4.2.8","hypoxanthine phosphoribosyltransferase"],["EC%3A3.2.2.12","inosinate nucleosidase"],["EC%3A3.2.2.2","inosine nucleosidase"]],"b":[["CDM_LP.yaml","cdm_lp"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:16810","l":"2-oxoglutarate(2-)","na":672,"nb":10,"a":[["EC%3A1.1.1.286","isocitrate--homoisocitrate dehydrogenase"],["EC%3A1.1.1.399","2-oxoglutarate reductase"],["EC%3A1.1.1.41","isocitrate dehydrogenase (NAD(+))"],["EC%3A1.1.1.42","isocitrate dehydrogenase (NADP(+))"],["EC%3A1.1.5.13","(S)-2-hydroxyglutarate dehydrogenase"],["EC%3A1.1.99.2","L-2-hydroxyglutarate dehydrogenase"]],"b":[["BCYE_alpha_agar.yaml","bcye_alpha_agar"],["BM7_MEDIUM.yaml","bm7_medium"],["CTM_MEDIUM.yaml","ctm_medium"],["DinoMM_alphaKetoGlutAcid_NoNitrogen.yaml","DinoMM alphaKetoGlutAcid NoNitrogen"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"]]},{"id":"CHEBI:17712","l":"9H-xanthine","na":32,"nb":10,"a":[["EC%3A1.14.11.48","xanthine dioxygenase"],["EC%3A1.14.13.128","7-methylxanthine demethylase"],["EC%3A1.14.13.179","methylxanthine N(3)-demethylase"],["EC%3A1.17.1.4","xanthine dehydrogenase"],["EC%3A1.17.3.2","xanthine oxidase"],["EC%3A2.4.2.1","purine-nucleoside phosphorylase"]],"b":[["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["ZMB.yaml","ZMB"],["ZMB_ALS.yaml","ZMB ALS"]]},{"id":"CHEBI:18167","l":"alpha-maltose","na":9,"nb":41,"a":[["EC%3A5.1.3.21","maltose epimerase"],["EC%3A5.1.3.3","aldose 1-epimerase"],["RHEA%3A21228","alpha-maltose = beta-maltose"],["MCSA%3A479","4-alpha-glucanotransferase"],["MCSA%3A397","alpha-amylase"],["MCSA%3A905","glucan 1,4-alpha-maltohydrolase"]],"b":[["4_yaco_media.yaml","4_yaco_media"],["Chopped_Meat_Carbohydrate_Medium.yaml","chopped_meat_carbohydrate_medium"],["Chopped_Meat_Carbohydrate_Medium_w_Tween_80.yaml","chopped_meat_carbohydrate_medium_w_tween_80"],["Chopped_meat_carbohydrates_with_rumen_fluid.yaml","chopped_meat_carbohydrates_with_rumen_fluid"],["KTM_medium.yaml","ktm_medium"],["LACTOBACILLUS_PONTIS_MEDIUM.yaml","lactobacillus_pontis_medium"]]},{"id":"CHEBI:16857","l":"L-threonine","na":9,"nb":35,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.23","The Dicarboxylate/Amino Acid:Cation (Na+ or H+) Symporter (DAACS) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.42","The Hydroxy/Aromatic Amino Acid Permease (HAAAP) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"],["McAA_formate_No_pABA.yaml","McAA formate No pABA"],["Mops_medium.yaml","mops_medium"]]},{"id":"CHEBI:16704","l":"uridine","na":26,"nb":9,"a":[["EC%3A1.14.11.3","pyrimidine-deoxynucleoside 2'-dioxygenase"],["EC%3A2.4.2.2","pyrimidine-nucleoside phosphorylase"],["EC%3A2.4.2.3","uridine phosphorylase"],["EC%3A2.7.1.48","uridine/cytidine kinase"],["EC%3A3.2.2.3","uridine nucleosidase"],["EC%3A3.2.2.8","ribosylpyrimidine nucleosidase"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"]]},{"id":"CHEBI:18019","l":"L-lysine","na":8,"nb":32,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A2.A.53","The Sulfate Permease (SulP) Family"],["MCSA%3A746","L-peptidase"],["MCSA%3A786","peptidyl-Lys metalloendopeptidase"],["MCSA%3A597","ubiquitinyl hydrolase 1 (peptidase C12 type)"]],"b":[["Chamberlain_CDM.yaml","chamberlain_cdm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"],["McAA_formate_No_pABA.yaml","McAA formate No pABA"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"]]},{"id":"CHEBI:17562","l":"cytidine","na":25,"nb":8,"a":[["EC%3A2.7.1.213","cytidine kinase"],["EC%3A2.7.1.48","uridine/cytidine kinase"],["EC%3A3.1.3.91","7-methylguanosine nucleotidase"],["EC%3A3.2.2.8","ribosylpyrimidine nucleosidase"],["EC%3A3.5.1.135","N(4)-acetylcytidine amidohydrolase"],["EC%3A3.5.4.5","cytidine deaminase"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"]]},{"id":"CHEBI:17748","l":"thymidine","na":21,"nb":8,"a":[["EC%3A2.4.2.2","pyrimidine-nucleoside phosphorylase"],["EC%3A2.4.2.4","thymidine phosphorylase"],["EC%3A2.7.1.114","AMP--thymidine kinase"],["EC%3A2.7.1.118","ADP--thymidine kinase"],["EC%3A2.7.1.145","deoxynucleoside kinase"],["EC%3A2.7.1.21","thymidine kinase"]],"b":[["CHI_1776_MEDIUM.yaml","chi_1776_medium"],["MCD_Medium.yaml","mcd_medium"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"],["Soil_Defined_Media_%28SDM%29.yaml","Soil Defined Media (SDM)"],["cdm_lab_medium.yaml","cdm_lab_medium"],["cdm_teusink_et_al.yaml","cdm_teusink_et_al"]]},{"id":"CHEBI:16335","l":"adenosine","na":35,"nb":7,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16335","requires vitamin B12"],["EC%3A1.1.3.39","nucleoside oxidase (H2O2-forming)"],["EC%3A2.7.1.114","AMP--thymidine kinase"],["EC%3A2.7.1.20","adenosine kinase"],["EC%3A3.13.2.1","adenosylhomocysteinase"],["EC%3A3.13.2.3","(R)-S-adenosyl-L-methionine hydrolase (adenosine-forming)"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"]]},{"id":"CHEBI:30742","l":"ethylene glycol","na":7,"nb":21,"a":[["EC%3A3.1.1.102","mono(ethylene terephthalate) hydrolase"],["RHEA%3A42648","(2,5-ethylene furandicarboxylate)(n) + 2 H2O = (2,5-ethylene furandicarboxylate)(n-1) + 2,5-dicarboxyfuran + ethylene glycol + 2 H(+)"],["RHEA%3A49532","4-[(2-hydroxyethoxy)carbonyl]benzoate + H2O = terephthalate + ethylene glycol + H(+)"],["RHEA%3A80759","bis(2-hydroxyethyl) terephthalate + H2O = 4-[(2-hydroxyethoxy)carbonyl]benzoate + ethylene glycol + H(+)"],["RHEA%3A27630","ethylene glycol + NAD(+) = glycolaldehyde + NADH + H(+)"],["MCSA%3A847","epoxide hydrolase"]],"b":[["acetobacterium_medium_marine.yaml","acetobacterium_medium_marine"],["bm_in_arabinose_hodgson_et_al.yaml","bm_in_arabinose_hodgson_et_al"],["bm_in_cellobiose_hodgson_et_al.yaml","bm_in_cellobiose_hodgson_et_al"],["bm_in_fructose_hodgson_et_al.yaml","bm_in_fructose_hodgson_et_al"],["bm_in_galactose_hodgson_et_al.yaml","bm_in_galactose_hodgson_et_al"],["bm_in_glucose_hodgson_et_al.yaml","bm_in_glucose_hodgson_et_al"]]},{"id":"CHEBI:17578","l":"toluene","na":13,"nb":7,"a":[["EC%3A1.14.12.11","toluene dioxygenase"],["EC%3A1.14.13.236","toluene 4-monooxygenase"],["EC%3A1.14.13.243","toluene 2-monooxygenase"],["EC%3A1.14.15.26","toluene methyl-monooxygenase"],["EC%3A4.1.1.119","phenylacetate decarboxylase"],["EC%3A4.1.99.11","benzylsuccinate synthase"]],"b":[["FRESHWATER_MEDIUM_WITH_TOLUENE.yaml","freshwater_medium_with_toluene"],["GEORGFUCHSIA_MEDIUM.yaml","georgfuchsia_medium"],["Modified_m9_with_toluene.yaml","modified_m9_with_toluene"],["defined_freshwater_medium_cocl2__6b305113.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__35d08dce.yaml","defined_freshwater_medium_coso4"],["freshwater_medium_with_toluene__185c443d.yaml","freshwater_medium_with_toluene"]]},{"id":"CHEBI:506227","l":"N-acetyl-D-glucosamine","na":44,"nb":6,"a":[["EC%3A1.1.3.29","N-acylhexosamine oxidase"],["EC%3A2.3.1.3","glucosamine N-acetyltransferase"],["EC%3A2.4.1.211","1,3-beta-galactosyl-N-acetylhexosamine phosphorylase"],["EC%3A2.4.1.280","N,N'-diacetylchitobiose phosphorylase"],["EC%3A2.4.1.320","1,4-beta-mannosyl-N-acetylglucosamine phosphorylase"],["EC%3A2.4.1.90","N-acetyllactosamine synthase"]],"b":[["ANAEROBACCA_MEDIUM.yaml","anaerobacca_medium"],["BSK_MEDIUM.yaml","bsk_medium"],["NATRONOARCHAEA_MEDIUM_WITH_GLUCOSAMINE.yaml","natronoarchaea_medium_with_glucosamine"],["barbour_sfoenner_kelly_bsk_ii_medium.yaml","barbour_sfoenner_kelly_bsk_ii_medium"],["m30__354deb2e.yaml","m30"],["modified_bsk_medium__578ddf1c.yaml","modified_bsk_medium"]]},{"id":"CHEBI:24996","l":"lactate","na":23,"nb":6,"a":[["EC%3A1.1.1.436","lactate dehydrogenase (NAD(+),ferredoxin)"],["EC%3A3.5.1.124","protein deglycase"],["RHEA%3A57300","an N(2)-(1-hydroxy-2-oxopropyl)-2'-deoxyguanosine in DNA + H2O = a 2'-deoxyguanosine in DNA + lactate + H(+)"],["RHEA%3A57288","an N(2)-(1-hydroxy-2-oxopropyl)-guanosine in RNA + H2O = a guanosine in RNA + lactate + H(+)"],["RHEA%3A46964","lactate + 2 reduced [2Fe-2S]-[ferredoxin] + 2 NAD(+) = 2 oxidized [2Fe-2S]-[ferredoxin] + pyruvate + 2 NADH"],["RHEA%3A57244","N(2)-(1-hydroxy-2-oxopropyl)-dGTP + H2O = lactate + dGTP + H(+)"]],"b":[["ARCOBACTER_ANAEROPHILUS_MEDIUM.yaml","arcobacter_anaerophilus_medium"],["defined_freshwater_medium_cocl2__f0ffbcc6.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__41b1d433.yaml","defined_freshwater_medium_coso4"],["fermentation_medium_lactate_nh4cl.yaml","fermentation_medium_lactate_nh4cl"],["modified_m1_medium_with_20_mm_lactate_pinchuk_et_al.yaml","modified_m1_medium_with_20_mm_lactate_pinchuk_et_al"],["modified_m1_medium_with_lactate_and_glycine_no_nh4cl.yaml","modified_m1_medium_with_lactate_and_glycine_no_nh4cl"]]},{"id":"CHEBI:22653","l":"asparagine","na":6,"nb":21,"a":[["TCDB%3A2.A.25","The Alanine or Glycine:Cation Symporter (AGCS) Family"],["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.13","The C4-Dicarboxylate Uptake (Dcu) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["CDM_LP.yaml","cdm_lp"],["HALOACTINOMYCES_HALOPHILUS_MEDIUM.yaml","haloactinomyces_halophilus_medium"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["MYKORRHIZA_MEDIUM.yaml","mykorrhiza_medium"]]},{"id":"CHEBI:28645","l":"beta-D-fructofuranose","na":6,"nb":20,"a":[["EC%3A2.7.1.3","ketohexokinase"],["EC%3A3.2.1.48","sucrose alpha-glucosidase"],["RHEA%3A18145","beta-D-fructose + ATP = beta-D-fructose 1-phosphate + ADP + H(+)"],["RHEA%3A33791","sucrose 6(F)-phosphate + H2O = beta-D-fructose + beta-D-glucose 6-phosphate"],["RHEA%3A33795","sucrose + H2O = beta-D-fructose + alpha-D-glucose"],["proteintraitsmech%3ABIOLIP_FRU","FRU-binding site"]],"b":[["Clostridium_medium.yaml","clostridium_medium"],["FYP_medium.yaml","fyp_medium"],["Green_Sulfur_Bacterium_Medium.yaml","green_sulfur_bacterium_medium"],["Liquid_Fermentation_Medium.yaml","liquid_fermentation_medium"],["M1D_Medium.yaml","m1d_medium"],["MOORELLA_AN10_MEDIUM.yaml","moorella_an10_medium"]]},{"id":"CHEBI:18246","l":"(1->4)-beta-D-glucan","na":6,"nb":15,"a":[["EC%3A2.4.1.12","cellulose synthase (UDP-forming)"],["EC%3A2.4.1.29","cellulose synthase (GDP-forming)"],["EC%3A2.4.1.49","cellodextrin phosphorylase"],["RHEA%3A17797","[(1->4)-beta-D-glucosyl](n) + GDP-alpha-D-glucose = [(1->4)-beta-D-glucosyl](n+1) + GDP + H(+)"],["RHEA%3A23024","[(1->4)-beta-D-glucosyl](n) + phosphate = [(1->4)-beta-D-glucosyl](n-1) + alpha-D-glucose 1-phosphate"],["RHEA%3A19929","[(1->4)-beta-D-glucosyl](n) + UDP-alpha-D-glucose = [(1->4)-beta-D-glucosyl](n+1) + UDP + H(+)"]],"b":[["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["CLOSTRIDIUM_CELLULOVORANS_MEDIUM.yaml","clostridium_cellulovorans_medium"],["Clostridium_Cellulolytic_medium.yaml","clostridium_cellulolytic_medium"],["HALOCELLA_CELLULOLYTICA_MEDIUM.yaml","halocella_cellulolytica_medium"],["RUMINICLOSTRIDIUM_CELLOBIOPARUM_MEDIUM.yaml","ruminiclostridium_cellobioparum_medium"],["RUMINICLOSTRIDIUM_PAPYROSOLVENS_MEDIUM.yaml","ruminiclostridium_papyrosolvens_medium"]]},{"id":"CHEBI:17439","l":"cyanocob(III)alamin","na":5,"nb":187,"a":[["EC%3A1.16.1.6","cyanocobalamin reductase"],["RHEA%3A16113","2 cob(II)alamin-[cyanocobalamin reductase] + 2 hydrogen cyanide + NADP(+) = 2 cyanocob(III)alamin + 2 apo-[cyanocobalamin reductase] + NADPH + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["TCDB%3A9.B.87","The Selenoprotein P Receptor (SelP-Receptor) Family"]],"b":[["2ASW.yaml","2asw"],["2asw__59e92e67.yaml","2asw"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["3n_bbm_v_recipe_for_customer_orders.yaml","3n_bbm_v_recipe_for_customer_orders"],["ACY.yaml","ACY"],["ALP_defined.yaml","ALP defined"]]},{"id":"CHEBI:16750","l":"guanosine","na":19,"nb":5,"a":[["EC%3A2.4.2.1","purine-nucleoside phosphorylase"],["EC%3A2.4.2.15","guanosine phosphorylase"],["EC%3A2.7.1.73","inosine kinase"],["EC%3A3.5.4.15","guanosine deaminase"],["RHEA%3A27862","3'-GMP + H2O = guanosine + phosphate"],["RHEA%3A27714","GMP + H2O = guanosine + phosphate"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:18107","l":"xanthosine","na":9,"nb":5,"a":[["EC%3A2.1.1.158","7-methylxanthosine synthase"],["EC%3A2.4.2.1","purine-nucleoside phosphorylase"],["EC%3A3.5.4.15","guanosine deaminase"],["RHEA%3A12861","guanosine + H2O + H(+) = xanthosine + NH4(+)"],["RHEA%3A27994","xanthosine + H2O = D-ribose + xanthine"],["RHEA%3A28939","xanthosine(in) + H(+)(in) = xanthosine(out) + H(+)(out)"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:16634","l":"raffinose","na":8,"nb":5,"a":[["EC%3A2.4.1.166","raffinose--raffinose alpha-galactosyltransferase"],["EC%3A2.4.1.67","galactinol--raffinose galactosyltransferase"],["EC%3A2.4.1.82","galactinol--sucrose galactosyltransferase"],["RHEA%3A14125","2 raffinose = 1(F)-alpha-D-galactosylraffinose + sucrose"],["RHEA%3A20776","alpha-D-galactosyl-(1->3)-1D-myo-inositol + raffinose = stachyose + myo-inositol"],["RHEA%3A20161","alpha-D-galactosyl-(1->3)-1D-myo-inositol + sucrose = raffinose + myo-inositol"]],"b":[["MYXOCOCCUS_FLAVESCENS_MEDIUM.yaml","myxococcus_flavescens_medium"],["Modified_SP_Medium.yaml","modified_sp_medium"],["SP_Medium.yaml","sp_medium"],["myxococcus_flavescens_medium__aa6b37a2.yaml","myxococcus_flavescens_medium"],["sp_medium__3b598fd8.yaml","sp_medium"]]},{"id":"CHEBI:16865","l":"gamma-aminobutyric acid","na":5,"nb":6,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A2.A.42","The Hydroxy/Aromatic Amino Acid Permease (HAAAP) Family"],["TCDB%3A2.A.22","The Neurotransmitter:Sodium Symporter (NSS) Family"],["proteintraitsmech%3ABIOLIP_ABU","ABU-binding site"]],"b":[["CLOSTRIDIUM_AMINOBUTYRICUM_MEDIUM.yaml","clostridium_aminobutyricum_medium"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:28911","l":"cob(III)alamin","na":6,"nb":5,"a":[["RHEA%3A81907","(2R,3R,5R)-2-(S-pantetheinyl)-carbapenam-3-carboxylate + methylcob(III)alamin + S-adenosyl-L-methionine = (2R,3R,5S,6R)-6-(methyl)-2-(S-pantetheinyl)-carbapenam-3-carboxylate + cob(III)alamin + 5'-deoxyadenosine + L-methionine"],["RHEA%3A81911","(2R,3R,5S,6R)-6-(methyl)-2-(S-pantetheinyl)-carbapenam-3-carboxylate + methylcob(III)alamin + S-adenosyl-L-methionine = (2R,3R,5S,6R)-6-(ethyl)-2-(S-pantetheinyl)-carbapenam-3-carboxylate + cob(III)alamin + 5'-deoxyadenosine + L-methionine"],["RHEA%3A76471","cob(III)alamin + AH2 = cob(I)alamin + A + 2 H(+)"],["RHEA%3A81883","cytidine 5'-{[hydroxy(2-hydroxyethyl)phosphonoyl]phosphate} + methylcob(III)alamin + S-adenosyl-L-methionine = cytidine 5'-({hydroxy[(S)-2-hydroxypropyl]phosphonoyl}phosphate) + cob(III)alamin + 5'-deoxyadenosine + L-methionine"],["RHEA%3A77223","gentamicin X2 + methylcob(III)alamin + S-adenosyl-L-methionine = geneticin + cob(III)alamin + 5'-deoxyadenosine + L-methionine"],["RHEA%3A81891","N-acetyl-demethyl-L-phosphinothricin + methylcob(III)alamin + S-adenosyl-L-methionine = N-acetyl-L-phosphinothricin + cob(III)alamin + 5'-deoxyadenosine + L-methionine"]],"b":[["MEDIUM_for_SM250.yaml","medium_for_sm250"],["Medium_YCFAGSC.yaml","medium_ycfagsc"],["Medium_for_Freshwater_Flexibacteria.yaml","medium_for_freshwater_flexibacteria"],["Standard_PETC_medium.yaml","standard_petc_medium"],["YCFAG_medium.yaml","ycfag_medium"]]},{"id":"CHEBI:17191","l":"L-isoleucine","na":4,"nb":65,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.26","The Branched Chain Amino Acid:Cation Symporter (LIVCS) Family"],["proteintraitsmech%3ABIOLIP_ILE","ILE-binding site"]],"b":[["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["CTM_MEDIUM.yaml","ctm_medium"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MCD_Medium.yaml","mcd_medium"]]},{"id":"CHEBI:17879","l":"4-hydroxybenzoate","na":57,"nb":4,"a":[["EC%3A1.13.11.41","2,4'-dihydroxyacetophenone dioxygenase"],["EC%3A1.14.13.2","4-hydroxybenzoate 3-monooxygenase"],["EC%3A1.14.13.33","4-hydroxybenzoate 3-monooxygenase [NAD(P)H]"],["EC%3A1.14.13.64","4-hydroxybenzoate 1-hydroxylase"],["EC%3A1.14.14.92","benzoate 4-monooxygenase"],["EC%3A1.14.19.55","4-hydroxybenzoate brominase (decarboxylating)"]],"b":[["DIETHYL_PHOSPHONATE_MEDIUM.yaml","diethyl_phosphonate_medium"],["defined_freshwater_medium_cocl2__140b53e4.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__7cf7eff3.yaml","defined_freshwater_medium_coso4"],["nutrient_medium_p_hydroxybenzoate.yaml","nutrient_medium_p_hydroxybenzoate"]]},{"id":"CHEBI:16870","l":"choline alfoscerate","na":48,"nb":4,"a":[["EC%3A3.1.1.5","lysophospholipase"],["EC%3A3.1.4.2","glycerophosphocholine phosphodiesterase"],["EC%3A3.1.4.38","glycerophosphocholine cholinephosphodiesterase"],["EC%3A3.3.2.2","lysoplasmalogenase"],["RHEA%3A40835","1,2-di-(9Z-octadecenoyl)-sn-glycero-3-phosphocholine + 2 H2O = sn-glycerol 3-phosphocholine + 2 (9Z)-octadecenoate + 2 H(+)"],["RHEA%3A40975","1,2-dihexadecanoyl-sn-glycero-3-phosphocholine + 2 H2O = sn-glycerol 3-phosphocholine + 2 hexadecanoate + 2 H(+)"]],"b":[["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:18050","l":"L-glutamine","na":4,"nb":42,"a":[["MCSA%3A596","deuterolysin"],["MCSA%3A477","picornain 3C"],["MCSA%3A763","picornain 3C"],["proteintraitsmech%3ABIOLIP_GLN","GLN-binding site"]],"b":[["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"],["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"],["GLUTAMINE_MEDIUM.yaml","glutamine_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"]]},{"id":"CHEBI:17115","l":"L-serine","na":4,"nb":41,"a":[["MCSA%3A609","alpha-lytic endopeptidase"],["MCSA%3A238","assemblin"],["MCSA%3A688","classical-complement-pathway C3/C5 convertase"],["proteintraitsmech%3ABIOLIP_SER","SER-binding site"]],"b":[["AMINOMONAS_MEDIUM.yaml","aminomonas_medium"],["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"]]},{"id":"CHEBI:17925","l":"alpha-D-glucose","na":35,"nb":4,"a":[["EC%3A2.4.1.231","alpha,alpha-trehalose phosphorylase (configuration-retaining)"],["EC%3A3.1.3.58","sugar-terminal-phosphatase"],["EC%3A3.1.3.9","glucose-6-phosphatase"],["EC%3A3.2.1.10","oligo-1,6-glucosidase"],["EC%3A3.2.1.219","palatinase"],["EC%3A3.2.1.28","alpha,alpha-trehalase"]],"b":[["CDMM.yaml","cdmm"],["MDM.yaml","mdm"],["MM3.yaml","mm3"],["tsb_glucose_medium.yaml","tsb_glucose_medium"]]},{"id":"CHEBI:28869","l":"menadione","na":4,"nb":34,"a":[["RHEA%3A35611","menadiol + 2 O2 = menadione + 2 superoxide + 2 H(+)"],["RHEA%3A69695","menadione + NADH + H(+) = menadiol + NAD(+)"],["RHEA%3A63492","menadione + NADPH + H(+) = menadiol + NADP(+)"],["proteintraitsmech%3ABIOLIP_VK3","VK3-binding site"]],"b":[["ABB.yaml","ABB"],["ACY.yaml","ACY"],["BGDM.yaml","bgdm"],["BHIS.yaml","bhis"],["BHIS_K3.yaml","BHIS_K3"],["BHIS_K3_noGlucose.yaml","BHIS_K3_noGlucose"]]},{"id":"CHEBI:15882","l":"phenol","na":31,"nb":4,"a":[["EC%3A1.14.13.244","phenol 2-monooxygenase (NADH)"],["EC%3A1.14.13.7","phenol 2-monooxygenase (NADPH)"],["EC%3A1.14.14.20","phenol 2-monooxygenase (FADH2)"],["EC%3A2.1.1.25","phenol O-methyltransferase"],["EC%3A2.4.2.55","nicotinate D-ribonucleotide:phenol phospho-D-ribosyltransferase"],["EC%3A2.7.1.238","phenol phosphorylase"]],"b":[["MEDIUM_FOR_BACILLUS_STEAROTHERMOPHILUS.yaml","medium_for_bacillus_stearothermophilus"],["anaerobic_bicarbonate_buffered_medium_with_phenol.yaml","anaerobic_bicarbonate_buffered_medium_with_phenol"],["defined_freshwater_medium_cocl2__ac506908.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__0930ab53.yaml","defined_freshwater_medium_coso4"]]},{"id":"CHEBI:28262","l":"dimethyl sulfoxide","na":14,"nb":4,"a":[["EC%3A1.14.13.245","assimilatory dimethylsulfide S-monooxygenase"],["EC%3A1.8.1.17","dimethylsulfone reductase"],["EC%3A1.8.2.4","dimethyl sulfide:cytochrome c2 reductase"],["EC%3A1.8.5.3","respiratory dimethylsulfoxide reductase"],["RHEA%3A30587","2-demethylmenaquinol-8 + dimethyl sulfoxide = 2-demethylmenaquinone-8 + dimethyl sulfide + H2O"],["RHEA%3A30227","2 Fe(III)-[cytochrome c2] + dimethyl sulfide + H2O = 2 Fe(II)-[cytochrome c2] + dimethyl sulfoxide + 2 H(+)"]],"b":[["MINERAL_MEDIUM_WITH_DIBENZOFURAN.yaml","mineral_medium_with_dibenzofuran"],["SYNBIOBACTERIUM_KA13_MEDIUM.yaml","synbiobacterium_ka13_medium"],["mineral_medium_with_2_chlorobenzoate.yaml","mineral_medium_with_2_chlorobenzoate"],["synbiobacterium_ka13_medium__e7f47e80.yaml","synbiobacterium_ka13_medium"]]},{"id":"CHEBI:16856","l":"glutathione","na":4,"nb":11,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16856","requires glutathione"],["MCSA%3A359","lactoglutathione lyase"],["MCSA%3A32","lactoylglutathione lyase"],["proteintraitsmech%3ABIOLIP_GSH","GSH-binding site"]],"b":[["CDM_LP.yaml","cdm_lp"],["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"],["Modified_D58_medium.yaml","modified_d58_medium"],["SULFOBACILLUS_DISULFIDOOXIDANS_MEDIUM.yaml","sulfobacillus_disulfidooxidans_medium"],["clostridium_thermocellum_medium__d9fc1f82.yaml","clostridium_thermocellum_medium"]]},{"id":"CHEBI:9532","l":"thiamine(1+) diphosphate","na":8,"nb":4,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_9532","requires thiamine(1+) diphosphate"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["CTM_MEDIUM.yaml","ctm_medium"],["MODIFIED_NOS_MEDIUM.yaml","modified_nos_medium"],["TREPONEMA_ISOPTEROCOLA_MEDIUM.yaml","treponema_isopterocola_medium"],["glucose_sulfide_medium__486fbf43.yaml","glucose_sulfide_medium"]]},{"id":"CHEBI:17015","l":"riboflavin","na":3,"nb":1290,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17015","requires riboflavin"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_RBF","RBF-binding site"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_PYGV_MEDIUM_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"]]},{"id":"CHEBI:27470","l":"folic acid","na":3,"nb":1262,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_27470","requires folic acid"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["proteintraitsmech%3ABIOLIP_FOL","FOL-binding site"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_PYGV_MEDIUM_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2ASW.yaml","2asw"]]},{"id":"CHEBI:16113","l":"cholesterol","na":82,"nb":3,"a":[["EC%3A1.1.3.6","cholesterol oxidase"],["EC%3A1.14.14.23","cholesterol 7alpha-monooxygenase"],["EC%3A1.14.14.25","cholesterol 24-hydroxylase"],["EC%3A1.14.15.6","cholesterol monooxygenase (side-chain-cleaving)"],["EC%3A1.14.19.21","cholesterol 7-desaturase"],["EC%3A1.14.99.38","cholesterol 25-monooxygenase"]],"b":[["CDM_LP.yaml","cdm_lp"],["Nematode_growth_medium_agar.yaml","Nematode growth medium agar"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:16015","l":"L-glutamic acid","na":3,"nb":73,"a":[["MCSA%3A747","gamma-glutamyl hydrolase"],["proteintraitsmech%3ABIOLIP_GGL","GGL-binding site"],["proteintraitsmech%3ABIOLIP_GLU","GLU-binding site"]],"b":[["7H9.yaml","7H9"],["BACTO_MIDDLEBROOK_7H9_BROTH.yaml","bacto_middlebrook_7h9_broth"],["BGDM.yaml","bgdm"],["Bacillus_Medium.yaml","bacillus_medium"],["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"]]},{"id":"CHEBI:16643","l":"L-methionine","na":3,"nb":68,"a":[["MCSA%3A917","methionyl aminopeptidase"],["MCSA%3A965","Viperin"],["proteintraitsmech%3ABIOLIP_MET","MET-binding site"]],"b":[["Basic_mineral_medium.yaml","basic_mineral_medium"],["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MDM.yaml","mdm"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"]]},{"id":"CHEBI:17295","l":"L-phenylalanine","na":3,"nb":63,"a":[["MCSA%3A595","scytalidopepsin B"],["MCSA%3A598","streptopain"],["proteintraitsmech%3ABIOLIP_PHE","PHE-binding site"]],"b":[["BGDM.yaml","bgdm"],["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["CTM_MEDIUM.yaml","ctm_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["M9_minimal_media_aromix_noCarbon.yaml","M9 minimal media aromix noCarbon"]]},{"id":"CHEBI:16467","l":"L-arginine","na":3,"nb":51,"a":[["MCSA%3A688","classical-complement-pathway C3/C5 convertase"],["MCSA%3A425","plasmin"],["MCSA%3A798","t-plasminogen activator"]],"b":[["ABB.yaml","ABB"],["ACY.yaml","ACY"],["CAENICOLA_MOBILE_MEDIUM.yaml","caenicola_mobile_medium"],["CMM.yaml","cmm"],["CTM_MEDIUM.yaml","ctm_medium"],["Chamberlain_CDM.yaml","chamberlain_cdm"]]},{"id":"CHEBI:17203","l":"L-proline","na":3,"nb":48,"a":[["MCSA%3A403","astacin"],["MCSA%3A379","Xaa-Pro aminopeptidase"],["proteintraitsmech%3ABIOLIP_PRO","PRO-binding site"]],"b":[["CDM_LP.yaml","cdm_lp"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MDM.yaml","mdm"],["MEIOTHERMUS_MEDIUM_R8.yaml","meiothermus_medium_r8"]]},{"id":"CHEBI:18135","l":"catechol","na":47,"nb":3,"a":[["EC%3A1.1.3.14","catechol oxidase (dimerizing)"],["EC%3A1.10.3.1","catechol oxidase"],["EC%3A1.13.11.1","catechol 1,2-dioxygenase"],["EC%3A1.13.11.2","catechol 2,3-dioxygenase"],["EC%3A1.14.12.1","anthranilate 1,2-dioxygenase (deaminating, decarboxylating)"],["EC%3A1.14.12.13","2-halobenzoate 1,2-dioxygenase"]],"b":[["DESULFOBACTERIUM_CATECHOLICUM_MEDIUM.yaml","desulfobacterium_catecholicum_medium"],["DESULFOCASTAENA_MEDIUM.yaml","desulfocastaena_medium"],["desulfobacterium_catecholicum_medium__b7c6198a.yaml","desulfobacterium_catecholicum_medium"]]},{"id":"CHEBI:17053","l":"L-aspartic acid","na":3,"nb":21,"a":[["MCSA%3A718","caspase-1"],["MCSA%3A599","dipeptidase E"],["proteintraitsmech%3ABIOLIP_ASP","ASP-binding site"]],"b":[["CTM_MEDIUM.yaml","ctm_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["McAA_formate_No_pABA.yaml","McAA formate No pABA"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"]]},{"id":"CHEBI:15595","l":"malate(2-)","na":15,"nb":3,"a":[["RHEA%3A72015","malate + 6 malonyl-CoA + acetyl-CoA + 2 AH2 + 2 S-adenosyl-L-methionine + 5 NADPH + 9 H(+) = trihazone A + 2 A + 2 S-adenosyl-L-homocysteine + 6 CO2 + 5 NADP(+) + 7 CoA + 6 H2O"],["RHEA%3A72295","malate(out) + 3 Na(+)(out) = malate(in) + 3 Na(+)(in)"],["TCDB%3A2.A.24","The 2-Hydroxycarboxylate Transporter (2-HCT) Family"],["TCDB%3A2.A.85","The Aromatic Acid Exporter (ArAE) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.69","The Auxin Efflux Carrier (AEC) Family"]],"b":[["HETEROTROPHIC_MEDIUM_H3P.yaml","heterotrophic_medium_h3p"],["diazotrophic_medium_rba.yaml","diazotrophic_medium_rba"],["rhodobacter_marinus_medium_nkpb.yaml","rhodobacter_marinus_medium_nkpb"]]},{"id":"CHEBI:15846","l":"NAD(+)","na":14,"nb":3,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15846","requires NAD+"],["ARO%3A3002846","arr-1"],["ARO%3A3002847","arr-2"],["ARO%3A3002848","arr-3"],["ARO%3A3002849","arr-4"],["ARO%3A3002850","arr-5"]],"b":[["Vulcanimicrobium_alpinus_medium.yaml","vulcanimicrobium_alpinus_medium"],["ctm_medium__057c0b18.yaml","ctm_medium"],["treponema_isopterocola_medium__e7b07692.yaml","treponema_isopterocola_medium"]]},{"id":"CHEBI:18237","l":"glutamic acid","na":3,"nb":13,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["ACANTHAMOEBA_MEDIUM.yaml","acanthamoeba_medium"],["HALISCOMENOBACTER_MEDIUM.yaml","haliscomenobacter_medium"],["LENTIBACILLUS_MEDIUM.yaml","lentibacillus_medium"],["McAA_formate_No_pABA.yaml","McAA formate No pABA"],["NATRONOBACTERIUM_MEDIUM.yaml","natronobacterium_medium"],["PSA_medium.yaml","psa_medium"]]},{"id":"CHEBI:30911","l":"glucitol","na":3,"nb":11,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A4.A.4","The PTS Glucitol (Gut) Family"]],"b":[["M1D_Medium.yaml","m1d_medium"],["Modified_Rhodobacter_Spaeroides_Medium.yaml","modified_rhodobacter_spaeroides_medium"],["RHODOBACTER_SPHAEROIDES_MEDIUM.yaml","rhodobacter_sphaeroides_medium"],["RHODOBIUM_GOKURNUM_MEDIUM.yaml","rhodobium_gokurnum_medium"],["RHODOVULUM_MARINUM_MEDIUM.yaml","rhodovulum_marinum_medium"],["RHODOVULUM_VISAKHUM_MEDIUM.yaml","rhodovulum_visakhum_medium"]]},{"id":"CHEBI:22599","l":"arabinose","na":5,"nb":3,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.B.142","The Integral membrane Glycosyltransferase family 39 (GT39) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A9.B.28","The Putative Essential Component of the MusEFGKI ABC Transporter, MusI (MusI) Family"],["TCDB%3A2.A.21","The Solute:Sodium Symporter (SSS) Family"]],"b":[["MAG_Modified_arabinose_gluconate_medium.yaml","mag_modified_arabinose_gluconate_medium"],["mrs_medium__1506cddd.yaml","mrs_medium"],["togo_medium_m1594.yaml","togo_medium_m1594"]]},{"id":"CHEBI:16238","l":"FAD","na":4,"nb":3,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16238","requires FAD"],["MCSA%3A968","aldehyde oxidase"],["MCSA%3A969","Phytoene desaturase (lycopene-forming)"],["proteintraitsmech%3ABIOLIP_FAD","FAD-binding site"]],"b":[["HELMUTKOENIGIA_MEDIUM.yaml","helmutkoenigia_medium"],["TREPONEMA_ISOPTEROCOLA_MEDIUM.yaml","treponema_isopterocola_medium"],["treponema_isopterocola_medium__e7b07692.yaml","treponema_isopterocola_medium"]]},{"id":"CHEBI:16482","l":"naphthalene","na":3,"nb":3,"a":[["EC%3A1.14.12.12","naphthalene 1,2-dioxygenase"],["RHEA%3A19173","naphthalene + NADH + O2 + H(+) = (1R,2S)-1,2-dihydronaphthalene-1,2-diol + NAD(+)"],["MCSA%3A130","naphthalene 1,2-dioxygenase"]],"b":[["DESULFOBACTERIUM_NAPHTHALENIVOLANS_MEDIUM.yaml","desulfobacterium_naphthalenivolans_medium"],["LB_Medium_with_50_ppm_Naphthalene.yaml","lb_medium_with_50_ppm_naphthalene"],["desulfobacterium_naphthalenivolans_medium__c96254de.yaml","desulfobacterium_naphthalenivolans_medium"]]},{"id":"CHEBI:32816","l":"pyruvic acid","na":3,"nb":3,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_32816","requires pyruvic acid"],["MCSA%3A449","cystathionine beta-lyase"],["proteintraitsmech%3ABIOLIP_PYR","PYR-binding site"]],"b":[["ALGORIPHAGUS_ALKALIPHILUS_MEDIUM.yaml","algoriphagus_alkaliphilus_medium"],["modified_mrs.yaml","modified_mrs"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:15956","l":"biotin","na":2,"nb":1645,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15956","requires biotin"],["proteintraitsmech%3ABIOLIP_BTN","BTN-binding site"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_PYGV_MEDIUM_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2ASW.yaml","2asw"]]},{"id":"CHEBI:15940","l":"nicotinic acid","na":2,"nb":1433,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15940","requires nicotinic acid"],["proteintraitsmech%3ABIOLIP_NIO","NIO-binding site"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2ASW.yaml","2asw"],["2asw__59e92e67.yaml","2asw"]]},{"id":"CHEBI:30753","l":"4-aminobenzoic acid","na":2,"nb":1350,"a":[["TCDB%3A2.A.71","The Folate-Biopterin Transporter (FBT) Family"],["proteintraitsmech%3ABIOLIP_PAB","PAB-binding site"]],"b":[["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_PYGV_MEDIUM_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["A1_MARINE_MEDIUM.yaml","a1_marine_medium"]]},{"id":"CHEBI:17883","l":"hydrogen chloride","na":2,"nb":574,"a":[["MCSA%3A24","4-chlorobenzoyl-CoA dehalogenase"],["MCSA%3A348","chloromuconate cycloisomerase"]],"b":[["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_tryptic_soy_broth_anaerobe.yaml","1_2_tryptic_soy_broth_anaerobe"],["1_2_tryptic_soy_broth_anaerobic.yaml","1_2_tryptic_soy_broth_anaerobic"],["5_sorbitol_medium__c395a410.yaml","5_sorbitol_medium"],["ACETIVIBRIO_ALKALICELLULOSI_MEDIUM.yaml","acetivibrio_alkalicellulosi_medium"]]},{"id":"CHEBI:4735","l":"ethylenediaminetetraacetic acid","na":2,"nb":237,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["proteintraitsmech%3ABIOLIP_EDT","EDT-binding site"]],"b":[["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["ACIDOSOMA_MEDIUM.yaml","acidosoma_medium"],["ALCALIGENES_XYLOSOXYDANS_MEDIUM_WITH_BENZOATE.yaml","alcaligenes_xylosoxydans_medium_with_benzoate"],["ALLOCATENOCOCCUS_MEDIUM.yaml","allocatenococcus_medium"],["ANB_aerobic.yaml","anb_aerobic"],["AQUASPIRILLUM_MEDIUM.yaml","aquaspirillum_medium"]]},{"id":"CHEBI:57912","l":"L-tryptophan zwitterion","na":103,"nb":2,"a":[["EC%3A1.11.2.8","L-tryptophan 5-peroxygenase"],["EC%3A1.13.11.11","tryptophan 2,3-dioxygenase"],["EC%3A1.13.11.52","indoleamine 2,3-dioxygenase"],["EC%3A1.13.12.3","tryptophan 2-monooxygenase"],["EC%3A1.13.99.3","tryptophan 2'-dioxygenase"],["EC%3A1.14.14.156","tryptophan N-monooxygenase"]],"b":[["acidaminococcus_fermentans_medium__d515a0ab.yaml","acidaminococcus_fermentans_medium"],["togo_medium_m1435.yaml","togo_medium_m1435"]]},{"id":"CHEBI:15354","l":"choline","na":78,"nb":2,"a":[["EC%3A1.1.3.17","choline oxidase"],["EC%3A1.1.99.1","choline dehydrogenase"],["EC%3A1.14.15.7","choline monooxygenase"],["EC%3A2.3.1.6","choline O-acetyltransferase"],["EC%3A2.3.1.91","sinapoylglucose--choline O-sinapoyltransferase"],["EC%3A2.7.1.32","choline kinase"]],"b":[["CDM_LP.yaml","cdm_lp"],["HYPHOMICROBIUM_METHYLOVORUM_MEDIUM.yaml","hyphomicrobium_methylovorum_medium"]]},{"id":"CHEBI:17196","l":"L-asparagine","na":2,"nb":74,"a":[["MCSA%3A596","deuterolysin"],["proteintraitsmech%3ABIOLIP_ASN","ASN-binding site"]],"b":[["Alkali_B_medium.yaml","alkali_b_medium"],["CELLULOSE_AGAR.yaml","cellulose_agar"],["CMM.yaml","cmm"],["CTM_MEDIUM.yaml","ctm_medium"],["Glucose_Asparagine_Agar.yaml","glucose_asparagine_agar"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"]]},{"id":"CHEBI:16414","l":"L-valine","na":2,"nb":60,"a":[["MCSA%3A798","t-plasminogen activator"],["proteintraitsmech%3ABIOLIP_VAL","VAL-binding site"]],"b":[["CDM_LP.yaml","cdm_lp"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MCD_Medium.yaml","mcd_medium"],["MDM.yaml","mdm"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"]]},{"id":"CHEBI:326268","l":"1,4-butanediammonium","na":51,"nb":2,"a":[["EC%3A1.14.13.252","putrescine N-hydroxylase"],["EC%3A1.4.3.10","putrescine oxidase"],["EC%3A1.5.1.43","carboxynorspermidine synthase"],["EC%3A1.5.3.13","N(1)-acetylpolyamine oxidase"],["EC%3A1.5.3.17","non-specific polyamine oxidase"],["EC%3A2.1.1.53","putrescine N-methyltransferase"]],"b":[["veillonella_medium__a8952478.yaml","veillonella_medium"],["veillonella_medium__e057c5de.yaml","veillonella_medium"]]},{"id":"CHEBI:17905","l":"coenzyme M","na":2,"nb":40,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17905","requires coenzyme M"],["proteintraitsmech%3ABIOLIP_COM","COM-binding site"]],"b":[["ARCHAEOGLOBUS_INFECTUS_MEDIUM.yaml","archaeoglobus_infectus_medium"],["AROMATOLEUM_MEDIUM.yaml","aromatoleum_medium"],["BACILLUS_INFERNUS_MEDIUM.yaml","bacillus_infernus_medium"],["METHANOHALOPHILUS_PROFUNDI_MEDIUM.yaml","methanohalophilus_profundi_medium"],["METHANOMICROCOCCUS_MEDIUM.yaml","methanomicrococcus_medium"],["METHANONATRONARCHAEUM_MEDIUM.yaml","methanonatronarchaeum_medium"]]},{"id":"CHEBI:18320","l":"1,4-dithiothreitol","na":2,"nb":38,"a":[["EC%3A1.17.4.5","vitamin-K-epoxide reductase (warfarin-insensitive)"],["RHEA%3A21560","3-hydroxy-2-methyl-3-phytyl-2,3-dihydro-1,4-naphthoquinone + oxidized dithiothreitol = 1,4-dithiothreitol + 2,3-epoxyphylloquinone"]],"b":[["1_2_tryptic_soy_broth_anaerobe.yaml","1_2_tryptic_soy_broth_anaerobe"],["1_2_tryptic_soy_broth_anaerobic__d70593aa.yaml","1_2_tryptic_soy_broth_anaerobic"],["ARCHAEOGLOBUS_INFECTUS_MEDIUM.yaml","archaeoglobus_infectus_medium"],["ARCHAEOGLOBUS_NEPTUNIUS_MEDIUM.yaml","archaeoglobus_neptunius_medium"],["ARCHAEOGLOBUS_SULFATICALLIDUS_MEDIUM.yaml","archaeoglobus_sulfaticallidus_medium"],["CELLULOSILYTICUM_MEDIUM.yaml","cellulosilyticum_medium"]]},{"id":"CHEBI:17895","l":"L-tyrosine","na":2,"nb":29,"a":[["MCSA%3A638","neurolysin"],["proteintraitsmech%3ABIOLIP_TYR","TYR-binding site"]],"b":[["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"],["McAA_formate_No_pABA.yaml","McAA formate No pABA"],["NLDM_defined.yaml","NLDM_defined"]]},{"id":"CHEBI:30314","l":"(R)-lipoic acid","na":2,"nb":29,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_30314","requires (R)-lipoic acid"],["proteintraitsmech%3ABIOLIP_LPA","LPA-binding site"]],"b":[["A1_MEDIUM.yaml","a1_medium"],["CLOSTRIDIUM_THERMOCELLUM_MEDIUM.yaml","clostridium_thermocellum_medium"],["Chemically_defined_medium.yaml","chemically_defined_medium"],["Clostridium_aldrichii_medium.yaml","clostridium_aldrichii_medium"],["DESULFOMONILE_MEDIUM.yaml","desulfomonile_medium"],["JCM_medium_242.yaml","jcm_medium_242"]]},{"id":"CHEBI:28757","l":"fructose","na":2,"nb":27,"a":[["GO%3A0070061","fructose binding"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["ACETOBACTERIUM_MEDIUM.yaml","acetobacterium_medium"],["AQUINCOLA_MEDIUM.yaml","aquincola_medium"],["ARTFICIAL_FRESHWATER_MEDIUM_I.yaml","artficial_freshwater_medium_i"],["CLOSTRIDIUM_ACETATE_1_MEDIUM.yaml","clostridium_acetate_1_medium"],["DESULFOSPOROSINUS_ACIDOPHILUS_MEDIUM.yaml","desulfosporosinus_acidophilus_medium"],["EUBACTERIUM_AGGREGANS_MEDIUM.yaml","eubacterium_aggregans_medium"]]},{"id":"CHEBI:15366","l":"acetic acid","na":2,"nb":26,"a":[["MCSA%3A431","acetylxylan esterase"],["MCSA%3A996","Peptidoglycan-N-acetylglucosamine deacetylase Bc1960"]],"b":[["ACY.yaml","ACY"],["AE_BROTH.yaml","ae_broth"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Acetobacter_Europaeus_Medium.yaml","acetobacter_europaeus_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"]]},{"id":"CHEBI:29016","l":"arginine","na":2,"nb":26,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["ACIDAMINOCOCCUS_FERMENTANS_MEDIUM.yaml","acidaminococcus_fermentans_medium"],["EUBACTERIUM_LENTUM_MEDIUM.yaml","eubacterium_lentum_medium"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["MS15_Medium.yaml","ms15_medium"]]},{"id":"CHEBI:30772","l":"butyric acid","na":2,"nb":26,"a":[["MCSA%3A900","para-nitrobenzyl esterase"],["proteintraitsmech%3ABIOLIP_BUA","BUA-binding site"]],"b":[["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"],["Mega.yaml","Mega"],["PYG_MEDIUM_WITH_VOLATILE_FATTY_ACIDS.yaml","pyg_medium_with_volatile_fatty_acids"],["RUMEN_BACTERIA_MEDIUM.yaml","rumen_bacteria_medium"]]},{"id":"CHEBI:15824","l":"D-fructose","na":2,"nb":25,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"]],"b":[["ACETOBACTERIUM_FIMETARIUM_MEDIUM.yaml","acetobacterium_fimetarium_medium"],["ACETOBACTERIUM_TUNDRAE_MEDIUM.yaml","acetobacterium_tundrae_medium"],["ANAEROCOLUMNA_MEDIUM.yaml","anaerocolumna_medium"],["CLOSTRIDIUM_FORMICACETICUM_MEDIUM.yaml","clostridium_formicaceticum_medium"],["CLOSTRIDIUM_LJUNGDAHLII_MEDIUM.yaml","clostridium_ljungdahlii_medium"],["MOORELLA_THERMOACETICA_MEDIUM.yaml","moorella_thermoacetica_medium"]]},{"id":"CHEBI:16410","l":"pyridoxamine","na":2,"nb":21,"a":[["GO%3A0070281","pyridoxamine binding"],["proteintraitsmech%3ABIOLIP_PXM","PXM-binding site"]],"b":[["HALORHODOSPIRA_MEDIUM.yaml","halorhodospira_medium"],["MCD_Medium.yaml","mcd_medium"],["MEDIUM_FOR_ROSEOSPIRA.yaml","medium_for_roseospira"],["MEDIUM_WITH_EDTA_AS_CARBON_SOURCE.yaml","medium_with_edta_as_carbon_source"],["MINERAL_MEDIUM_WITH_SULFOBENZOIC_ACID.yaml","mineral_medium_with_sulfobenzoic_acid"],["MS10R_Medium.yaml","ms10r_medium"]]},{"id":"CHEBI:17924","l":"D-glucitol","na":20,"nb":2,"a":[["EC%3A1.1.1.14","L-iditol 2-dehydrogenase"],["EC%3A1.1.1.289","sorbose reductase"],["EC%3A1.1.3.40","D-mannitol oxidase"],["EC%3A1.1.99.21","D-sorbitol dehydrogenase (acceptor)"],["EC%3A1.1.99.28","glucose-fructose oxidoreductase"],["EC%3A2.7.1.198","protein-N(pi)-phosphohistidine--D-sorbitol phosphotransferase"]],"b":[["5_sorbitol_medium.yaml","5_sorbitol_medium"],["5_sorbitol_medium__c395a410.yaml","5_sorbitol_medium"]]},{"id":"CHEBI:15741","l":"succinic acid","na":2,"nb":16,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_SIN","SIN-binding site"]],"b":[["AQUASPIRILLUM_MEDIUM_II.yaml","aquaspirillum_medium_ii"],["DESULFUROBACTERIUM_MEDIUM.yaml","desulfurobacterium_medium"],["MAGNETOSPIRILLUM_MEDIUM.yaml","magnetospirillum_medium"],["MG_minimal_media.yaml","MG minimal media"],["MG_minimal_media_noIron.yaml","MG minimal media noIron"],["PETROBACTER_SUCCINIMANDENS_MEDIUM.yaml","petrobacter_succinimandens_medium"]]},{"id":"CHEBI:16450","l":"","na":14,"nb":2,"a":[["EC%3A1.14.11.10","pyrimidine-deoxynucleoside 1'-dioxygenase"],["EC%3A1.14.11.3","pyrimidine-deoxynucleoside 2'-dioxygenase"],["EC%3A2.4.2.2","pyrimidine-nucleoside phosphorylase"],["EC%3A3.5.4.5","cytidine deaminase"],["RHEA%3A13433","2'-deoxycytidine + H2O + H(+) = 2'-deoxyuridine + NH4(+)"],["RHEA%3A23316","2'-deoxyuridine + 2-oxoglutarate + O2 = 2-deoxy-D-ribono-1,4-lactone + uracil + succinate + CO2"]],"b":[["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"],["Soil_Defined_Media_%28SDM%29.yaml","Soil Defined Media (SDM)"]]},{"id":"CHEBI:17045","l":"dinitrogen oxide","na":13,"nb":2,"a":[["EC%3A1.7.1.14","nitric oxide reductase [NAD(P)(+), nitrous oxide-forming]"],["EC%3A1.7.2.4","nitrous-oxide reductase"],["EC%3A1.7.2.5","nitric-oxide reductase (cytochrome c)"],["EC%3A1.7.5.2","nitric oxide reductase (menaquinol)"],["RHEA%3A30215","a menaquinol + 2 nitric oxide = nitrous oxide + a menaquinone + H2O"],["RHEA%3A43108","N2 + 2 Fe(III)-[cytochrome c] + H2O = nitrous oxide + 2 Fe(II)-[cytochrome c] + 2 H(+)"]],"b":[["PM_N2O.yaml","PM N2O"],["PM_argon75_N2O25.yaml","PM argon75 N2O25"]]},{"id":"CHEBI:29073","l":"L-ascorbic acid","na":2,"nb":13,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29073","requires L-ascorbic acid"],["proteintraitsmech%3ABIOLIP_ASC","ASC-binding site"]],"b":[["CTM_MEDIUM.yaml","ctm_medium"],["MG_minimal_media.yaml","MG minimal media"],["MG_minimal_media_noCarbon.yaml","MG minimal media noCarbon"],["MG_minimal_media_noIron.yaml","MG minimal media noIron"],["THERMODESULFOVIBRIO_MEDIUM_FOR_N1.yaml","thermodesulfovibrio_medium_for_n1"],["THERMODESULFOVIBRIO_YELLOWSTONII_MEDIUM.yaml","thermodesulfovibrio_yellowstonii_medium"]]},{"id":"CHEBI:28077","l":"rifampicin","na":12,"nb":2,"a":[["ARO%3A3007073","Bacillus subtilis rpoB mutants conferring resistance to rifampin"],["ARO%3A3004480","Bifidobacterium adolescentis rpoB mutants conferring resistance to rifampicin"],["ARO%3A3004563","Clostridioides difficile rpoB with mutation conferring resistance to rifampicin"],["ARO%3A3003288","Escherichia coli rpoB mutants conferring resistance to rifampicin"],["ARO%3A3007051","Helicobacter pylori rpoB mutation conferring resistance to rifampicin"],["ARO%3A3003284","Mycobacterium leprae rpoB mutations conferring resistance to rifampicin"]],"b":[["lb_luria_bertani_agar_with_kanamycin_and_rifampicin__0472ff8f.yaml","lb_luria_bertani_agar_with_kanamycin_and_rifampicin"],["luria_bertani_lb_antibiotics.yaml","luria_bertani_lb_antibiotics"]]},{"id":"CHEBI:36218","l":"beta-lactose","na":2,"nb":9,"a":[["RHEA%3A28659","beta-lactose + H2O = beta-D-galactose + beta-D-glucose"],["RHEA%3A59352","beta-lactose + O2 = lactobiono-1,5-lactone + H2O2"]],"b":[["ALKALINE_LACTOSE_AGAR.yaml","alkaline_lactose_agar"],["LACTOBACILLUS_MEDIUM_I.yaml","lactobacillus_medium_i"],["M17_medium_supplemented_with_20_g_L_of_lactose.yaml","m17_medium_supplemented_with_20_g_l_of_lactose"],["ZMB_Gut.yaml","ZMB Gut"],["gam_broth_with_1_lactose.yaml","gam_broth_with_1_lactose"],["m17_broth_containing_lactose.yaml","m17_broth_containing_lactose"]]},{"id":"CHEBI:18403","l":"L-arabinitol","na":8,"nb":2,"a":[["EC%3A1.1.1.12","L-arabinitol 4-dehydrogenase"],["EC%3A1.1.1.13","L-arabinitol 2-dehydrogenase"],["EC%3A1.1.1.21","aldose reductase"],["RHEA%3A25225","L-arabinitol + NAD(+) = L-arabinose + NADH + H(+)"],["RHEA%3A21356","L-arabinitol + NAD(+) = L-ribulose + NADH + H(+)"],["RHEA%3A16381","L-arabinitol + NAD(+) = L-xylulose + NADH + H(+)"]],"b":[["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"],["Soil_Defined_Media_%28SDM%29.yaml","Soil Defined Media (SDM)"]]},{"id":"CHEBI:17824","l":"propan-2-ol","na":7,"nb":2,"a":[["EC%3A1.1.1.80","isopropanol dehydrogenase (NADP(+))"],["EC%3A1.14.13.227","propane 2-monooxygenase"],["RHEA%3A62196","propan-2-ol + 2 Fe(III)-[cytochrome c] = acetone + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A41984","propan-2-ol + NAD(+) = acetone + NADH + H(+)"],["RHEA%3A21792","propan-2-ol + NADP(+) = acetone + NADPH + H(+)"],["RHEA%3A49992","propane + NADH + O2 + H(+) = propan-2-ol + NAD(+) + H2O"]],"b":[["METHANOGENIUM_CV_MEDIUM.yaml","methanogenium_cv_medium"],["METHANOSPIRILLUM_SK_MEDIUM.yaml","methanospirillum_sk_medium"]]},{"id":"CHEBI:45296","l":"hexadecane","na":2,"nb":7,"a":[["RHEA%3A77375","heptadecanoate + hnu + H(+) = hexadecane + CO2"],["RHEA%3A76747","hexadecane + reduced [NADPH--hemoprotein reductase] + O2 = 9-hexadecanol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["FUNDIBACTER_JADENSIS_MEDIUM.yaml","fundibacter_jadensis_medium"],["MODIFIED_SEA_WATER_AGAR.yaml","modified_sea_water_agar"],["dehalobacter_restrictus_medium_tce.yaml","dehalobacter_restrictus_medium_tce"],["dehalobacter_restrictus_medium_tce__3ce89046.yaml","dehalobacter_restrictus_medium_tce"],["desulfuromonas_medium_tce.yaml","desulfuromonas_medium_tce"],["m9_with_1_0_glucose_and_40_emulsion.yaml","m9_with_1_0_glucose_and_40_emulsion"]]},{"id":"CHEBI:16196","l":"oleic acid","na":2,"nb":6,"a":[["TCDB%3A9.A.76","The Omega3 Fatty Acid Desaturase 3/Putative Transporter (FAD3) Family"],["proteintraitsmech%3ABIOLIP_OLA","OLA-binding site"]],"b":[["MIDDLEBROCK_7H11_AGAR.yaml","middlebrock_7h11_agar"],["MIDDLEBROOK_MEDIUM.yaml","middlebrook_medium"],["Middle_Brook_Medium.yaml","middle_brook_medium"],["Middlebrook_7H11_Agar.yaml","middlebrook_7h11_agar"],["middlebrook_7h11_agar_difco.yaml","middlebrook_7h11_agar_difco"],["modified_dixon_s_agar.yaml","modified_dixon_s_agar"]]},{"id":"CHEBI:27641","l":"cycloheximide","na":2,"nb":6,"a":[["RHEA%3A61936","cycloheximide(in) + ATP + H2O = cycloheximide(out) + ADP + phosphate + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["PPM.yaml","ppm"],["R2A_Kan50_Tween01_Cycloheximide200.yaml","R2A_Kan50_Tween01_Cycloheximide200"],["alkaliphiles_pirellula_medium_m1py.yaml","alkaliphiles_pirellula_medium_m1py"],["chlamydia_serpentis_poikilotherma_medium.yaml","chlamydia_serpentis_poikilotherma_medium"],["pirellula_medium_m31py.yaml","pirellula_medium_m31py"],["ppm__7a6a33ba.yaml","ppm"]]},{"id":"CHEBI:28053","l":"melibiose","na":6,"nb":2,"a":[["RHEA%3A28663","melibiose + H2O = D-galactose + D-glucose"],["RHEA%3A28855","melibiose(in) + H(+)(in) = melibiose(out) + H(+)(out)"],["RHEA%3A28847","melibiose(in) + Li(+)(in) = melibiose(out) + Li(+)(out)"],["RHEA%3A28851","melibiose(in) + Na(+)(in) = melibiose(out) + Na(+)(out)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["MCSA%3A913","alpha-galactosidase"]],"b":[["MP_AGAR.yaml","mp_agar"],["mp_agar__3414ec19.yaml","mp_agar"]]},{"id":"CHEBI:28997","l":"","na":6,"nb":2,"a":[["EC%3A3.5.4.4","adenosine deaminase"],["RHEA%3A28190","2'-deoxyadenosine + H2O + H(+) = 2'-deoxyinosine + NH4(+)"],["RHEA%3A29971","2'-deoxyinosine(in) + H(+)(in) = 2'-deoxyinosine(out) + H(+)(out)"],["RHEA%3A27750","2'-deoxyinosine + phosphate = 2-deoxy-alpha-D-ribose 1-phosphate + hypoxanthine"],["RHEA%3A29383","dIMP + H2O = 2'-deoxyinosine + phosphate"],["RHEA%3A69572","dIMP + inosine = 2'-deoxyinosine + IMP"]],"b":[["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"],["Soil_Defined_Media_%28SDM%29.yaml","Soil Defined Media (SDM)"]]},{"id":"CHEBI:15729","l":"L-ornithine","na":2,"nb":5,"a":[["MCSA%3A12","ornithine carbamoyltransferase"],["proteintraitsmech%3ABIOLIP_ORN","ORN-binding site"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:17300","l":"tetrachloroethene","na":2,"nb":5,"a":[["EC%3A1.21.99.5","tetrachloroethene reductive dehalogenase"],["RHEA%3A20353","trichloroethene + chloride + A + H(+) = tetrachloroethene + AH2"]],"b":[["MINERAL_SALTS_MEDIUM_WITH_TCE.yaml","mineral_salts_medium_with_tce"],["dehalobacter_restrictus_medium_tce.yaml","dehalobacter_restrictus_medium_tce"],["dehalobacter_restrictus_medium_tce__3ce89046.yaml","dehalobacter_restrictus_medium_tce"],["desulfuromonas_medium_tce.yaml","desulfuromonas_medium_tce"],["mineral_salts_medium_with_tce__be1bd293.yaml","mineral_salts_medium_with_tce"]]},{"id":"CHEBI:18101","l":"4-hydroxyphenylacetic acid","na":2,"nb":5,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_4HP","4HP-binding site"]],"b":[["ENDOMICROBIUM_PROAVITUM_RSA_MEDIUM.yaml","endomicrobium_proavitum_rsa_medium"],["MODIFIED_AM5_MEDIUM_2.yaml","modified_am5_medium_2"],["am5_medium_elusimicrobium_medium.yaml","am5_medium_elusimicrobium_medium"],["endomicrobium_proavitum_rsa_medium__51692939.yaml","endomicrobium_proavitum_rsa_medium"],["pjc_with_4_hpa.yaml","pjc_with_4_hpa"]]},{"id":"CHEBI:35899","l":"crotonate","na":5,"nb":2,"a":[["EC%3A1.3.1.31","2-enoate reductase"],["RHEA%3A74903","(2E)-2-butenoate + ATP + H(+) = (2E)-but-2-enoyl-AMP + diphosphate"],["RHEA%3A74899","(2E)-2-butenoate + holo-[ACP] + ATP = (2E)-butenoyl-[ACP] + AMP + diphosphate"],["RHEA%3A10200","butanoate + NAD(+) = (2E)-2-butenoate + NADH + H(+)"],["RHEA%3A69172","N(6)-(2E)-butenoyl-L-lysyl-[protein] + H2O = (2E)-2-butenoate + L-lysyl-[protein]"]],"b":[["SERPENTINICELLA_MEDIUM.yaml","serpentinicella_medium"],["for_dsm_17722.yaml","for_dsm_17722"]]},{"id":"CHEBI:15346","l":"coenzyme A","na":2,"nb":4,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15346","requires coenzyme A"],["proteintraitsmech%3ABIOLIP_COA","COA-binding site"]],"b":[["HELMUTKOENIGIA_MEDIUM.yaml","helmutkoenigia_medium"],["TREPONEMA_ISOPTEROCOLA_MEDIUM.yaml","treponema_isopterocola_medium"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"],["treponema_isopterocola_medium__e7b07692.yaml","treponema_isopterocola_medium"]]},{"id":"CHEBI:18405","l":"","na":2,"nb":4,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18405","requires pyridoxal 5'-phosphate"],["proteintraitsmech%3ABIOLIP_PLP","PLP-binding site"]],"b":[["HELMUTKOENIGIA_MEDIUM.yaml","helmutkoenigia_medium"],["TREPONEMA_ISOPTEROCOLA_MEDIUM.yaml","treponema_isopterocola_medium"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"],["treponema_isopterocola_medium__e7b07692.yaml","treponema_isopterocola_medium"]]},{"id":"CHEBI:22868","l":"bile salt","na":2,"nb":4,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["1298.yaml","1298"],["ALKALINE_CELLULOSE_AGAR.yaml","alkaline_cellulose_agar"],["acido_thermophile_medium.yaml","acido_thermophile_medium"],["modified_eggerth_gagnon_medium.yaml","modified_eggerth_gagnon_medium"]]},{"id":"CHEBI:25548","l":"nitrilotriacetate(3-)","na":2,"nb":4,"a":[["EC%3A1.14.14.10","nitrilotriacetate monooxygenase"],["RHEA%3A31359","nitrilotriacetate + FMNH2 + O2 = aminodiacetate + FMN + glyoxylate + H2O"]],"b":[["MEDIUM_FOR_CHELATOCOCCUS_BUHARII.yaml","medium_for_chelatococcus_buharii"],["NITRILOTRIACETATE_MEDIUM.yaml","nitrilotriacetate_medium"],["methanoregula_peat_medium__84e41704.yaml","methanoregula_peat_medium"],["methanosphaerula_peat_medium__1238714d.yaml","methanosphaerula_peat_medium"]]},{"id":"CHEBI:75456","l":"2-stearoylglycerol","na":2,"nb":4,"a":[["RHEA%3A38519","1-(9Z-octadecenoyl)-2-octadecanoyl-sn-glycerol + H2O = 2-octadecanoylglycerol + (9Z)-octadecenoate + H(+)"],["proteintraitsmech%3ABIOLIP_2JT","2JT-binding site"]],"b":[["LEEMING_AND_NOTMAN_AGAR.yaml","leeming_and_notman_agar"],["leeming_amp_notman_agar_lna_leeming_amp_notman_1987_in_the_yeasts_a_taxonomic_study_5th_edn.yaml","leeming_amp_notman_agar_lna_leeming_amp_notman_1987_in_the_yeasts_a_taxonomic_study_5th_edn"],["leeming_amp_notman_agar_modified_mlna.yaml","leeming_amp_notman_agar_modified_mlna"],["leeming_and_notman_agar__33424fef.yaml","leeming_and_notman_agar"]]},{"id":"NCBITaxon:556484","l":"","na":4,"nb":2,"a":[["TED%3AAF-B7GAJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-B7GAJ8-F1-model_v4_TED01"],["TED%3AAF-B7G520-F1-model_v4_TED02","TED novel fold AF-B7G520-F1-model_v4_TED02"],["TED%3AAF-B7G8V4-F1-model_v4_TED02","TED novel fold AF-B7G8V4-F1-model_v4_TED02"],["TED%3AAF-B7GB31-F1-model_v4_TED01","TED novel fold AF-B7GB31-F1-model_v4_TED01"]],"b":[["2ASW.yaml","2asw"],["F_2_Medium.yaml","f_2_medium"]]},{"id":"CHEBI:136511","l":"manganese dioxide","na":3,"nb":2,"a":[["EC%3A1.16.3.3","manganese oxidase"],["RHEA%3A52240","2 Mn(2+) + O2 + 2 H2O = 2 MnO2 + 4 H(+)"],["RHEA%3A52248","4 Mn(3+) + O2 + 6 H2O = 4 MnO2 + 12 H(+)"]],"b":[["SULFURIMONAS_MARISNIGRI_MEDIUM.yaml","sulfurimonas_marisnigri_medium"],["abss2__1d326b00.yaml","abss2"]]},{"id":"CHEBI:17909","l":"polysulfur","na":2,"nb":3,"a":[["EC%3A1.8.5.4","bacterial sulfide:quinone reductase"],["RHEA%3A30239","n a quinone + n hydrogen sulfide + n H(+) = polysulfur(n-2) + n a quinol"]],"b":[["THERMOCOCCUS_MEDIUM.yaml","thermococcus_medium"],["THERMOCOCCUS_WAIOTAPUENSE_MEDIUM.yaml","thermococcus_waiotapuense_medium"],["desulfurococcus_medium__dbcbba45.yaml","desulfurococcus_medium"]]},{"id":"CHEBI:30066","l":"thioglycolate(1-)","na":2,"nb":3,"a":[["EC%3A4.5.1.5","S-carboxymethylcysteine synthase"],["RHEA%3A22868","thioglycolate + 3-chloro-L-alanine = S-carboxymethyl-L-cysteine + chloride + H(+)"]],"b":[["eubacterium_medium__c1146137.yaml","eubacterium_medium"],["spirochaeta_stenostrepta_medium__5924ed4c.yaml","spirochaeta_stenostrepta_medium"],["thioglycollate_medium__bfdc2c9b.yaml","thioglycollate_medium"]]},{"id":"CHEBI:30915","l":"2-oxoglutaric acid","na":3,"nb":2,"a":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["TCDB%3A2.A.56","The Tripartite ATP-independent Periplasmic Transporter (TRAP-T) Family"],["proteintraitsmech%3ABIOLIP_AKG","AKG-binding site"]],"b":[["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"],["medium_for_tick_cells_rickettsia.yaml","medium_for_tick_cells_rickettsia"]]},{"id":"CHEBI:46020","l":"tetramethylammonium","na":2,"nb":3,"a":[["EC%3A2.1.1.252","tetramethylammonium--corrinoid protein Co-methyltransferase"],["RHEA%3A59856","tetramethylammonium + Co(I)-[tetramethylammonium-specific corrinoid protein] + H(+) = methyl-Co(III)-[tetramethylammonium-specific corrinoid protein] + trimethylamine"]],"b":[["TETRAMETHYL_AMMONIUM_MEDIUM.yaml","tetramethyl_ammonium_medium"],["methanogen_high_salt_medium__183d3bb4.yaml","methanogen_high_salt_medium"],["tetramethyl_ammonium_medium__e4bd4975.yaml","tetramethyl_ammonium_medium"]]},{"id":"CHEBI:53423","l":"polysorbate 40","na":2,"nb":3,"a":[["TCDB%3A1.A.46","The Anion Channel-forming Bestrophin (Bestrophin) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["MDA.yaml","mda"],["PITYROSPORUM_MEDIUM.yaml","pityrosporum_medium"],["modified_dixon_s_agar.yaml","modified_dixon_s_agar"]]},{"id":"CHEBI:18095","l":"trans-4-hydroxy-L-proline","na":2,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["proteintraitsmech%3ABIOLIP_HYP","HYP-binding site"]],"b":[["RPMI.yaml","RPMI"],["RPMI_with_Fetal_bovine_serum_Conditioned.yaml","RPMI with Fetal bovine serum Conditioned"]]},{"id":"CHEBI:26710","l":"sodium chloride","na":1,"nb":3472,"a":[["TCDB%3A2.A.30","The Cation-Chloride Cotransporter (CCC) Family"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["10_mh_medium.yaml","10_mh_medium"],["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["1298.yaml","1298"],["15_mgm_medium.yaml","15_mgm_medium"]]},{"id":"CHEBI:32588","l":"potassium chloride","na":1,"nb":1953,"a":[["TCDB%3A2.A.30","The Cation-Chloride Cotransporter (CCC) Family"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mgm_medium.yaml","15_mgm_medium"],["15_mh_medium.yaml","15_mh_medium"],["15_mh_medium__b586cb85.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"]]},{"id":"CHEBI:32139","l":"sodium hydrogencarbonate","na":1,"nb":1470,"a":[["TCDB%3A2.A.31","The Anion Exchanger (AE) Family"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mh_medium.yaml","15_mh_medium"],["15_mh_medium__b586cb85.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM.yaml","1_2_sme_medium"]]},{"id":"CHEBI:17234","l":"glucose","na":1,"nb":1113,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mh_medium.yaml","15_mh_medium"],["15_mh_medium__b586cb85.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1_10_PYGV_MEDIUM_modified.yaml","1_10_pygv_medium_modified"],["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"]]},{"id":"CHEBI:17634","l":"D-glucose","na":1,"nb":439,"a":[["MCSA%3A976","α‑glucosidase maltase-glucoamylase"]],"b":[["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"],["1_2_mrs_1_2_bhi_agar.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_mrs_1_2_bhi_agar__56430c33.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_tryptic_soy_broth_anaerobe.yaml","1_2_tryptic_soy_broth_anaerobe"],["1_2_tryptic_soy_broth_anaerobic.yaml","1_2_tryptic_soy_broth_anaerobic"],["1_2_tryptic_soy_broth_anaerobic__d70593aa.yaml","1_2_tryptic_soy_broth_anaerobic"]]},{"id":"CHEBI:50385","l":"hemin","na":1,"nb":129,"a":[["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]],"b":[["ABB.yaml","ABB"],["ACY.yaml","ACY"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["BGDM.yaml","bgdm"],["BHIS.yaml","bhis"],["BHIS_CaCl2.yaml","BHIS_CaCl2"]]},{"id":"CHEBI:63940","l":"sodium tungstate","na":1,"nb":116,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["ACETOBACTEROIDES_MEDIUM.yaml","acetobacteroides_medium"],["ALKALIPHILUS_CROTONATOXIDANS_MEDIUM.yaml","alkaliphilus_crotonatoxidans_medium"],["AP11MH_medium.yaml","ap11mh_medium"],["ARCHAEOGLOBUS_FULGIDUS_MEDIUM.yaml","archaeoglobus_fulgidus_medium"],["AS_medium.yaml","as_medium"],["A_medium.yaml","a_medium"]]},{"id":"CHEBI:15603","l":"L-leucine","na":1,"nb":70,"a":[["proteintraitsmech%3ABIOLIP_LEU","LEU-binding site"]],"b":[["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["Hypertonic_medium.yaml","hypertonic_medium"],["MCD_Medium.yaml","mcd_medium"]]},{"id":"UBERON:0000948","l":"heart","na":1,"nb":67,"a":[["GO%3A0007507","heart development"]],"b":[["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"],["1_2_mrs_1_2_bhi_agar.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_mrs_1_2_bhi_agar__56430c33.yaml","1_2_mrs_1_2_bhi_agar"],["70_30_sporulation_medium.yaml","70_30_sporulation_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Anaerobic_Brain_Heart_Infusion_Broth.yaml","anaerobic_brain_heart_infusion_broth"]]},{"id":"UBERON:0000955","l":"brain","na":1,"nb":66,"a":[["GO%3A0007420","brain development"]],"b":[["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"],["1_2_mrs_1_2_bhi_agar.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_mrs_1_2_bhi_agar__56430c33.yaml","1_2_mrs_1_2_bhi_agar"],["70_30_sporulation_medium.yaml","70_30_sporulation_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Anaerobic_Brain_Heart_Infusion_Broth.yaml","anaerobic_brain_heart_infusion_broth"]]},{"id":"CHEBI:17561","l":"L-cysteine","na":1,"nb":60,"a":[["proteintraitsmech%3ABIOLIP_CYS","CYS-binding site"]],"b":[["70_30_sporulation_medium.yaml","70_30_sporulation_medium"],["BACTEROIDES_GALACTURONICUS_MEDIUM.yaml","bacteroides_galacturonicus_medium"],["BHIS_CaCl2.yaml","BHIS_CaCl2"],["BHIS_HOMOPIPES.yaml","BHIS_HOMOPIPES"],["BHIS_K3.yaml","BHIS_K3"],["BHIS_K3_noGlucose.yaml","BHIS_K3_noGlucose"]]},{"id":"CHEBI:30769","l":"citric acid","na":1,"nb":55,"a":[["proteintraitsmech%3ABIOLIP_CIT","CIT-binding site"]],"b":[["Azospira_Medium.yaml","azospira_medium"],["BG11.yaml","bg11"],["BG11_medium.yaml","bg11_medium"],["CTM_MEDIUM.yaml","ctm_medium"],["ETHANOLOGENBACTERIUM_MEDIUM.yaml","ethanologenbacterium_medium"],["GINGER_BEER_PLANT_MEDIUM.yaml","ginger_beer_plant_medium"]]},{"id":"CHEBI:16135","l":"isobutyric acid","na":1,"nb":49,"a":[["proteintraitsmech%3ABIOLIP_ALQ","ALQ-binding site"]],"b":[["ACY.yaml","ACY"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["ANAEROFILUM_MEDIUM.yaml","anaerofilum_medium"],["DESULFONEMA_ISHIMOTOI_MEDIUM.yaml","desulfonema_ishimotoi_medium"],["DESULFUROBACTERIUM_MEDIUM.yaml","desulfurobacterium_medium"]]},{"id":"CHEBI:17418","l":"valeric acid","na":1,"nb":48,"a":[["proteintraitsmech%3ABIOLIP_LEA","LEA-binding site"]],"b":[["ACY.yaml","ACY"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["ANAEROFILUM_MEDIUM.yaml","anaerofilum_medium"],["DESULFUROBACTERIUM_MEDIUM.yaml","desulfurobacterium_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"]]},{"id":"CHEBI:15356","l":"cysteine","na":1,"nb":40,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["AMB_MEDIUM.yaml","amb_medium"],["Chopped_Meat_Carbohydrate_Medium.yaml","chopped_meat_carbohydrate_medium"],["Chopped_Meat_Carbohydrate_Medium_w_Tween_80.yaml","chopped_meat_carbohydrate_medium_w_tween_80"],["FRANCISELLA_HALIOTICIDA_MEDIUM.yaml","francisella_halioticida_medium"],["HALOANAEROBIUM_CONGOLENSE_MEDIUM.yaml","haloanaerobium_congolense_medium"],["MCD_Medium.yaml","mcd_medium"]]},{"id":"CHEBI:16828","l":"L-tryptophan","na":1,"nb":40,"a":[["proteintraitsmech%3ABIOLIP_TRP","TRP-binding site"]],"b":[["CDMM.yaml","cdmm"],["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["M9_minimal_media_aromix_noCarbon.yaml","M9 minimal media aromix noCarbon"],["MDM.yaml","mdm"]]},{"id":"CHEBI:78018","l":"dodecylphosphocholine","na":1,"nb":37,"a":[["proteintraitsmech%3ABIOLIP_DPV","DPV-binding site"]],"b":[["1_10_PYGV_MEDIUM_modified.yaml","1_10_pygv_medium_modified"],["ANAEROCELLA_MEDIUM.yaml","anaerocella_medium"],["BACTEROIDES_GALACTURONICUS_MEDIUM.yaml","bacteroides_galacturonicus_medium"],["CAMPYLOBACTER_RECTUS_MEDIUM.yaml","campylobacter_rectus_medium"],["CARYOPHANON_LATUM_MEDIUM.yaml","caryophanon_latum_medium"],["COPROTHERMOBACTER_PROTEOLYTICUS_MEDIUM.yaml","coprothermobacter_proteolyticus_medium"]]},{"id":"CHEBI:27570","l":"histidine","na":1,"nb":27,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["MS15_Medium.yaml","ms15_medium"],["NATRONINCOLA_HISTIDINOVORANS_MEDIUM.yaml","natronincola_histidinovorans_medium"]]},{"id":"CHEBI:59640","l":"N-acetylglucosamine","na":1,"nb":27,"a":[["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"]],"b":[["LARKINELLA_ARBORICOLA_MEDIUM.yaml","larkinella_arboricola_medium"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"],["MM3.yaml","mm3"],["Modified_M30_Medium.yaml","modified_m30_medium"],["PLANCTOMYCES_MEDIUM_WITH_DOUBLE_CONCENTRATED_ARTIFICAL_SEA_WATER.yaml","planctomyces_medium_with_double_concentrated_artifical_sea_water"],["PLANCTOMYCES_PYREFORMIS_MEDIUM.yaml","planctomyces_pyreformis_medium"]]},{"id":"CHEBI:16811","l":"methionine","na":1,"nb":25,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"]],"b":[["Chamberlain_CDM.yaml","chamberlain_cdm"],["DEINOCOCCUS_MEDIUM.yaml","deinococcus_medium"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["MS13_Medium.yaml","ms13_medium"]]},{"id":"CHEBI:61930","l":"N(6)-acetyl-L-lysine residue","na":22,"nb":1,"a":[["EC%3A2.3.1.108","alpha-tubulin N-acetyltransferase"],["EC%3A2.3.1.286","protein acetyllysine N-acetyltransferase"],["EC%3A2.3.1.309","[beta-tubulin]-L-lysine N-acetyltransferase"],["EC%3A2.3.1.48","histone acetyltransferase"],["EC%3A3.5.1.98","histone deacetylase"],["RHEA%3A64460","acetyl phosphate + L-lysyl-[protein] = N(6)-acetyl-L-lysyl-[protein] + phosphate + H(+)"]],"b":[["NLDM_defined.yaml","NLDM_defined"]]},{"id":"CHEBI:41131","l":"crotonic acid","na":1,"nb":21,"a":[["proteintraitsmech%3ABIOLIP_BEO","BEO-binding site"]],"b":[["ALKALIPHILUS_CROTONATOXIDANS_MEDIUM.yaml","alkaliphilus_crotonatoxidans_medium"],["ALKALIPHILUS_HYDROTHERMALIS_MEDIUM.yaml","alkaliphilus_hydrothermalis_medium"],["DESULFATIRHABDIUM_MEDIUM.yaml","desulfatirhabdium_medium"],["Desulfatirhabdium_Butyrativorans_Medium.yaml","desulfatirhabdium_butyrativorans_medium"],["EUBACTERIUM_OXIDOREDUCENS_MEDIUM.yaml","eubacterium_oxidoreducens_medium"],["MPA_Medium.yaml","mpa_medium"]]},{"id":"CHEBI:113451","l":"sodium ascorbate","na":1,"nb":19,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_113451","requires sodium ascorbate"]],"b":[["ALKALIPHILUS_MEDIUM.yaml","alkaliphilus_medium"],["CLOSTRIDUM_G4_MEDIUM.yaml","clostridum_g4_medium"],["Chromatium_Medium.yaml","chromatium_medium"],["GEOANAEROBACTER_MEDIUM.yaml","geoanaerobacter_medium"],["GILLIAMELLA_MEDIUM.yaml","gilliamella_medium"],["HALOANAEROBIUM_MEDIUM.yaml","haloanaerobium_medium"]]},{"id":"CHEBI:131529","l":"pyridoxal hydrochloride","na":1,"nb":19,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_131529","requires pyridoxal hydrochloride"]],"b":[["AROMATOLEUM_MEDIUM.yaml","aromatoleum_medium"],["CDM_LP.yaml","cdm_lp"],["ECTOTHIORHODOSPIRA_ABDELMALEKII_MEDIUM.yaml","ectothiorhodospira_abdelmalekii_medium"],["ECTOTHIORHODOSPIRA_VACUOLATA_MEDIUM.yaml","ectothiorhodospira_vacuolata_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"],["HELMUTKOENIGIA_MEDIUM.yaml","helmutkoenigia_medium"]]},{"id":"CHEBI:18186","l":"tyrosine","na":1,"nb":17,"a":[["MCSA%3A668","leishmanolysin"]],"b":[["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["Synthetic_Medium_C.yaml","synthetic_medium_c"],["complete_chemically_defined_medium.yaml","complete_chemically_defined_medium"],["fermentation_medium_glucose_tyrosine.yaml","fermentation_medium_glucose_tyrosine"]]},{"id":"CHEBI:17151","l":"xylitol","na":16,"nb":1,"a":[["EC%3A1.1.1.10","L-xylulose reductase"],["EC%3A1.1.1.15","D-iditol 2-dehydrogenase"],["EC%3A1.1.1.307","D-xylose reductase [NAD(P)H]"],["EC%3A1.1.1.430","D-xylose reductase (NADH)"],["EC%3A1.1.1.431","D-xylose reductase (NADPH)"],["EC%3A1.1.1.9","D-xylulose reductase"]],"b":[["atribacterium_medium__1e9c1fd9.yaml","atribacterium_medium"]]},{"id":"CHEBI:24848","l":"inositol","na":1,"nb":14,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["2asw__59e92e67.yaml","2asw"],["ABSS2.yaml","abss2"],["BAF_Medium.yaml","baf_medium"],["HYPHOMICROBIUM_METHYLOVORUM_MEDIUM.yaml","hyphomicrobium_methylovorum_medium"],["NAV_medium.yaml","nav_medium"],["THERMOACTINOMYCES_MEDIUM.yaml","thermoactinomyces_medium"]]},{"id":"CHEBI:28971","l":"ampicillin","na":1,"nb":14,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["2_5_nacl_heart_infusion_hi_medium.yaml","2_5_nacl_heart_infusion_hi_medium"],["PPLO_broth.yaml","pplo_broth"],["brain_heart_infusion_bhi_medium_supplemented_with_antibiotics.yaml","brain_heart_infusion_bhi_medium_supplemented_with_antibiotics"],["dehalogenimonas_medium__6a926cbc.yaml","dehalogenimonas_medium"],["ip3_3_medium__726cb47b.yaml","ip3_3_medium"],["lb_agar_supplemented_with_ampicillin.yaml","lb_agar_supplemented_with_ampicillin"]]},{"id":"CHEBI:37166","l":"xylan","na":1,"nb":14,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["CLOSTRIDIUM_AEROTOLERANS_MEDIUM.yaml","clostridium_aerotolerans_medium"],["TREPONEMA_THERMOPHILUM_MEDIUM.yaml","treponema_thermophilum_medium"],["VXG_GELLAN.yaml","vxg_gellan"],["XED_Agar.yaml","xed_agar"],["XYLAN_MEDIUM.yaml","xylan_medium"],["Xy_agar.yaml","xy_agar"]]},{"id":"CHEBI:36702","l":"2-acyl-1-alkyl-sn-glycero-3-phosphocholine","na":11,"nb":1,"a":[["EC%3A2.3.1.148","glycerophospholipid acyltransferase (CoA-dependent)"],["EC%3A2.3.1.63","1-alkylglycerophosphocholine O-acyltransferase"],["EC%3A2.7.8.2","diacylglycerol cholinephosphotransferase"],["EC%3A3.1.1.4","phospholipase A2"],["RHEA%3A36179","1-O-alkyl-2-acyl-sn-glycerol + CDP-choline = a 1-O-alkyl-2-acyl-sn-glycero-3-phosphocholine + CMP + H(+)"],["RHEA%3A77759","a 1-O-alkyl-2-acyl-sn-glycero-3-phosphocholine + a 1,2-diacylglycerol = a 1-O-alkyl-sn-glycero-3-phosphocholine + a triacylglycerol"]],"b":[["NLDM_defined.yaml","NLDM_defined"]]},{"id":"CHEBI:16024","l":"D-mannose","na":1,"nb":9,"a":[["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"]],"b":[["M9zb_with_mannose.yaml","m9zb_with_mannose"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"],["Soil_Defined_Media_%28SDM%29.yaml","Soil Defined Media (SDM)"],["defined_freshwater_medium_cocl2__f0ffbcc6.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__41b1d433.yaml","defined_freshwater_medium_coso4"],["fermentation_medium_mannose_nh4cl.yaml","fermentation_medium_mannose_nh4cl"]]},{"id":"CHEBI:16349","l":"L-citrulline","na":1,"nb":9,"a":[["proteintraitsmech%3ABIOLIP_CIR","CIR-binding site"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"]]},{"id":"CHEBI:18248","l":"iron atom","na":9,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18248","requires Fe"],["proteintraitsmech%3AMETALPDB_FE_DINUCLEAR","dinuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_HEPTANUCLEAR","heptanuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_HEXANUCLEAR","hexanuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_MONONUCLEAR","mononuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_OCTANUCLEAR","octanuclear iron site"]],"b":[["methanopyrus_medium_for_strain_116__7463935f.yaml","methanopyrus_medium_for_strain_116"]]},{"id":"NCBITaxon:210","l":"Helicobacter pylori","na":9,"nb":1,"a":[["Pfam%3APF18025","Alpha-(1,3)-fucosyltransferase FucT N-terminal domain"],["Pfam%3APF18971","CagA protein"],["Pfam%3APF03507","CagA exotoxin phosphopeptide substrate mimic region"],["Pfam%3APF02691","Vacuolating cyotoxin beta-helical domain"],["TED%3AAF-A0A2T6UWI4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T6UWI4-F1-model_v4_TED01"],["TED%3AAF-A0A1Q9JB12-F1-model_v4_TED01","TED novel fold AF-A0A1Q9JB12-F1-model_v4_TED01"]],"b":[["BRUCELLA_BROTH.yaml","brucella_broth"]]},{"id":"CHEBI:16283","l":"L-cystine","na":1,"nb":8,"a":[["proteintraitsmech%3ABIOLIP_IYY","IYY-binding site"]],"b":[["IGNISPHAERA_MEDIUM.yaml","ignisphaera_medium"],["Kosmotoga_Pacifica_Medium.yaml","kosmotoga_pacifica_medium"],["eg_medium__dd848cc7.yaml","eg_medium"],["fluid_thioglycolate_medium.yaml","fluid_thioglycolate_medium"],["fluid_thioglycollate_medium__e510d708.yaml","fluid_thioglycollate_medium"],["rc_medium__9776cd83.yaml","rc_medium"]]},{"id":"CHEBI:28260","l":"galactose","na":1,"nb":8,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["A1_MEDIUM.yaml","a1_medium"],["KPL_MEDIUM.yaml","kpl_medium"],["MYXOCOCCUS_FLAVESCENS_MEDIUM.yaml","myxococcus_flavescens_medium"],["Modified_SP_Medium.yaml","modified_sp_medium"],["SP_Medium.yaml","sp_medium"],["a1_medium__13c8113e.yaml","a1_medium"]]},{"id":"NCBITaxon:262724","l":"Thermus thermophilus (strain ATCC BAA-163 / DSM 7039 / HB27)","na":8,"nb":1,"a":[["Pfam%3APF22474","Argonaute, middle domain"],["Pfam%3APF22472","Argonaute, N-terminal domain"],["Pfam%3APF03449","Transcription elongation factor, N-terminal"],["Pfam%3APF01272","Transcription elongation factor, GreA/GreB, C-term"],["Pfam%3APF09704","CRISPR-associated protein (Cas_Cas5)"],["PROSITE%3APS01224","N-acetyl-gamma-glutamyl-phosphate reductase active site"]],"b":[["thermus_medium__6b1d1914.yaml","thermus_medium"]]},{"id":"CHEBI:16610","l":"spermidine","na":1,"nb":7,"a":[["proteintraitsmech%3ABIOLIP_SPD","SPD-binding site"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"]]},{"id":"CHEBI:16737","l":"creatinine","na":7,"nb":1,"a":[["EC%3A3.5.2.10","creatininase"],["EC%3A3.5.4.21","creatinine deaminase"],["RHEA%3A14533","creatinine + H2O = creatine"],["RHEA%3A12681","creatinine + H2O + H(+) = N-methylhydantoin + NH4(+)"],["RHEA%3A74539","creatinine(in) = creatinine(out)"],["RHEA%3A72183","creatinine(in) + H(+)(out) = creatinine(out) + H(+)(in)"]],"b":[["tissierella_sp_medium_creatinine.yaml","tissierella_sp_medium_creatinine"]]},{"id":"CHEBI:17126","l":"carnitine","na":7,"nb":1,"a":[["EC%3A1.1.1.108","carnitine 3-dehydrogenase"],["EC%3A1.14.11.1","gamma-butyrobetaine dioxygenase"],["EC%3A4.1.1.42","carnitine decarboxylase"],["RHEA%3A24028","4-(trimethylamino)butanoate + 2-oxoglutarate + O2 = carnitine + succinate + CO2"],["RHEA%3A21576","carnitine + H(+) = 2-methylcholine + CO2"],["RHEA%3A19265","carnitine + NAD(+) = 3-dehydrocarnitine + NADH + H(+)"]],"b":[["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:17309","l":"pectin","na":1,"nb":7,"a":[["MCSA%3A681","pectinesterase"]],"b":[["MEDIUM_FOR_TREPONEMA_PECTINOVORUM.yaml","medium_for_treponema_pectinovorum"],["MODIFIED_OTI_MEDIUM.yaml","modified_oti_medium"],["PPM.yaml","ppm"],["medium_for_treponema_pectinovorum__e5f7afef.yaml","medium_for_treponema_pectinovorum"],["oteb_medium.yaml","oteb_medium"],["pectin_medium__d8bc472f.yaml","pectin_medium"]]},{"id":"CHEBI:30776","l":"hexanoic acid","na":1,"nb":7,"a":[["proteintraitsmech%3ABIOLIP_6NA","6NA-binding site"]],"b":[["DESULFUROBACTERIUM_MEDIUM.yaml","desulfurobacterium_medium"],["TD3_MEDIUM.yaml","td3_medium"],["THERMODESULFOBACTERIUM_HYDROGENIPHILUM_MEDIUM.yaml","thermodesulfobacterium_hydrogeniphilum_medium"],["THERMODESULFOBACTERIUM_HYDROGENOPHILUM_MEDIUM.yaml","thermodesulfobacterium_hydrogenophilum_medium"],["desulfurobacterium_medium__edb237d2.yaml","desulfurobacterium_medium"],["td3_medium__4a2d4552.yaml","td3_medium"]]},{"id":"CHEBI:18012","l":"fumaric acid","na":1,"nb":6,"a":[["proteintraitsmech%3ABIOLIP_FUM","FUM-binding site"]],"b":[["Brucella_broth_with_formate_and_fumarate.yaml","brucella_broth_with_formate_and_fumarate"],["TRICHLOROMONAS_MEDIUM.yaml","trichloromonas_medium"],["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"],["jcm_medium_no_1264.yaml","jcm_medium_no_1264"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"],["togo_medium_m1360.yaml","togo_medium_m1360"]]},{"id":"CHEBI:27592","l":"ectoine","na":1,"nb":6,"a":[["proteintraitsmech%3ABIOLIP_4CS","4CS-binding site"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["modified_m63_medium_with_ectoine_and_2_5_m_nacl.yaml","modified_m63_medium_with_ectoine_and_2_5_m_nacl"]]},{"id":"CHEBI:46502","l":"tungstate","na":6,"nb":1,"a":[["EC%3A7.3.2.6","ABC-type tungstate transporter"],["RHEA%3A35295","adenylyl-molybdopterin + tungstate = W-molybdopterin cofactor + AMP + H(+)"],["RHEA%3A35027","tungstate(in) + ATP + H2O = tungstate(out) + ADP + phosphate + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.47","The Divalent Anion:Na+ Symporter (DASS) Family"],["proteintraitsmech%3ABIOLIP_WO4","WO4-binding site"]],"b":[["alcalilimnicola_ehrlichii_mhle_1_medium.yaml","alcalilimnicola_ehrlichii_mhle_1_medium"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":6,"nb":1,"a":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF02963","Restriction endonuclease EcoRI"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["PROSITE%3APS00974","Mannitol dehydrogenases signature"],["PROSITE%3APS00567","Phosphoribulokinase signature"],["MCSA%3A701","dimethylsulfoxide reductase"]],"b":[["RHODOBACTER_SPHAEROIDES_MEDIUM.yaml","rhodobacter_sphaeroides_medium"]]},{"id":"CHEBI:15671","l":"L-tartaric acid","na":1,"nb":5,"a":[["proteintraitsmech%3ABIOLIP_TLA","TLA-binding site"]],"b":[["MAGNETOSPIRILLUM_MEDIUM.yaml","magnetospirillum_medium"],["MG_minimal_media.yaml","MG minimal media"],["MG_minimal_media_noIron.yaml","MG minimal media noIron"],["magnetospirillum_medium__dc0f1596.yaml","magnetospirillum_medium"],["telmatospirillum_peat_medium.yaml","telmatospirillum_peat_medium"]]},{"id":"CHEBI:16119","l":"shikimic acid","na":1,"nb":5,"a":[["proteintraitsmech%3ABIOLIP_SKM","SKM-binding site"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:16830","l":"methylamine","na":1,"nb":5,"a":[["proteintraitsmech%3ABIOLIP_NME","NME-binding site"]],"b":[["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["MEDIUM_FOR_DSM_14457_AND_14458.yaml","medium_for_dsm_14457_and_14458"],["MEDIUM_FOR_METHYLOBACTERIUM_PODARIUM.yaml","medium_for_methylobacterium_podarium"],["acetobacterium_submarinus_medium__9fed26ec.yaml","acetobacterium_submarinus_medium"],["hyphomicrobium_medium__41859ce8.yaml","hyphomicrobium_medium"]]},{"id":"CHEBI:75937","l":"monooleoylglycerol","na":5,"nb":1,"a":[["RHEA%3A38455","1,2-di-(9Z-octadecenoyl)-glycerol + H2O = (9Z-octadecenoyl)-glycerol + (9Z)-octadecenoate + H(+)"],["RHEA%3A39935","1,2-di-(9Z-octadecenoyl)-sn-glycerol + H2O = (9Z-octadecenoyl)-glycerol + (9Z)-octadecenoate + H(+)"],["RHEA%3A39955","(9Z-octadecenoyl)-glycerol + H2O = glycerol + (9Z)-octadecenoate + H(+)"],["RHEA%3A50884","(9Z)-octadecenoyl-sn-glycero-3-phosphate + H2O = (9Z-octadecenoyl)-glycerol + phosphate"],["RHEA%3A47868","di-(9Z)-octadecenoylglycerol + H2O = (9Z-octadecenoyl)-glycerol + (9Z)-octadecenoate + H(+)"]],"b":[["PITYROSPORUM_MEDIUM.yaml","pityrosporum_medium"]]},{"id":"CHEBI:12936","l":"D-galactose","na":1,"nb":4,"a":[["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"]],"b":[["XYLOPHILUS_MEDIUM.yaml","xylophilus_medium"],["bm_in_galactose_hodgson_et_al.yaml","bm_in_galactose_hodgson_et_al"],["liquid_mm_with_galactose_hodgson_et_al.yaml","liquid_mm_with_galactose_hodgson_et_al"],["minimal_media__805aefdd.yaml","minimal_media"]]},{"id":"CHEBI:16148","l":"heptadecane","na":4,"nb":1,"a":[["EC%3A4.1.99.5","aldehyde oxygenase (deformylating)"],["RHEA%3A77243","hnu + octadecanoate + H(+) = heptadecane + CO2"],["RHEA%3A30415","octadecanal + 2 NADPH + O2 + H(+) = heptadecane + formate + 2 NADP(+) + H2O"],["RHEA%3A83559","octadecanal + reduced [NADPH--hemoprotein reductase] + O2 = heptadecane + oxidized [NADPH--hemoprotein reductase] + CO2 + H2O + H(+)"]],"b":[["THERMOMICROBIUM_FOSTERI_MEDIUM.yaml","thermomicrobium_fosteri_medium"]]},{"id":"CHEBI:16354","l":"N-methylhydantoin","na":4,"nb":1,"a":[["EC%3A3.5.2.14","N-methylhydantoinase (ATP-hydrolyzing)"],["EC%3A3.5.4.21","creatinine deaminase"],["RHEA%3A12681","creatinine + H2O + H(+) = N-methylhydantoin + NH4(+)"],["RHEA%3A11720","N-methylhydantoin + ATP + 2 H2O = N-carbamoylsarcosine + ADP + phosphate + 2 H(+)"]],"b":[["tissierella_amo_1_medium.yaml","tissierella_amo_1_medium"]]},{"id":"CHEBI:16411","l":"indole-3-acetic acid","na":1,"nb":4,"a":[["proteintraitsmech%3ABIOLIP_IAC","IAC-binding site"]],"b":[["ENDOMICROBIUM_PROAVITUM_RSA_MEDIUM.yaml","endomicrobium_proavitum_rsa_medium"],["MODIFIED_AM5_MEDIUM_2.yaml","modified_am5_medium_2"],["am5_medium_elusimicrobium_medium.yaml","am5_medium_elusimicrobium_medium"],["endomicrobium_proavitum_rsa_medium__51692939.yaml","endomicrobium_proavitum_rsa_medium"]]},{"id":"CHEBI:16742","l":"orotic acid","na":1,"nb":4,"a":[["proteintraitsmech%3ABIOLIP_ORO","ORO-binding site"]],"b":[["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"],["Soil_Defined_Media_%28SDM%29.yaml","Soil Defined Media (SDM)"],["cdm_lab_medium.yaml","cdm_lab_medium"],["ucm.yaml","ucm"]]},{"id":"CHEBI:16991","l":"deoxyribonucleic acid","na":1,"nb":4,"a":[["proteintraitsmech%3ABIOLIP_DNA","DNA-binding site"]],"b":[["PH_MEDIUM.yaml","ph_medium"],["sp4_z_medium__eae01184.yaml","sp4_z_medium"],["ureaplasma_medium__abc787f9.yaml","ureaplasma_medium"],["ureaplasma_medium__de7f9c49.yaml","ureaplasma_medium"]]},{"id":"CHEBI:17148","l":"putrescine","na":1,"nb":4,"a":[["proteintraitsmech%3ABIOLIP_PUT","PUT-binding site"]],"b":[["VEILLONELLA_MEDIUM.yaml","veillonella_medium"],["ucm.yaml","ucm"],["veillonella_medium__07b613b7.yaml","veillonella_medium"],["veillonella_medium__75ab349a.yaml","veillonella_medium"]]},{"id":"CHEBI:28621","l":"triethanolamine","na":1,"nb":4,"a":[["proteintraitsmech%3ABIOLIP_211","211-binding site"]],"b":[["LACTOBACILLUS_PONTIS_MEDIUM.yaml","lactobacillus_pontis_medium"],["lactobacillus_pontis_medium__899ad629.yaml","lactobacillus_pontis_medium"],["mic_cit_herriott_et_al.yaml","mic_cit_herriott_et_al"],["mic_herriott_et_al.yaml","mic_herriott_et_al"]]},{"id":"CHEBI:28631","l":"3-phenylpropionic acid","na":1,"nb":4,"a":[["proteintraitsmech%3ABIOLIP_HCI","HCI-binding site"]],"b":[["ENDOMICROBIUM_PROAVITUM_RSA_MEDIUM.yaml","endomicrobium_proavitum_rsa_medium"],["MODIFIED_AM5_MEDIUM_2.yaml","modified_am5_medium_2"],["am5_medium_elusimicrobium_medium.yaml","am5_medium_elusimicrobium_medium"],["endomicrobium_proavitum_rsa_medium__51692939.yaml","endomicrobium_proavitum_rsa_medium"]]},{"id":"CHEBI:30411","l":"cobalamin","na":4,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_30411","requires cobalamin"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.A.54","The Lysosomal Cobalamin (B12) Transporter (L-B12T) Family"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]],"b":[["1_10_PYGV_MEDIUM_modified.yaml","1_10_pygv_medium_modified"]]},{"id":"CHEBI:30745","l":"phenylacetic acid","na":1,"nb":4,"a":[["proteintraitsmech%3ABIOLIP_PAC","PAC-binding site"]],"b":[["ENDOMICROBIUM_PROAVITUM_RSA_MEDIUM.yaml","endomicrobium_proavitum_rsa_medium"],["MODIFIED_AM5_MEDIUM_2.yaml","modified_am5_medium_2"],["am5_medium_elusimicrobium_medium.yaml","am5_medium_elusimicrobium_medium"],["endomicrobium_proavitum_rsa_medium__51692939.yaml","endomicrobium_proavitum_rsa_medium"]]},{"id":"CHEBI:41688","l":"crystal violet","na":1,"nb":4,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["1298.yaml","1298"],["ALKALINE_CELLULOSE_AGAR.yaml","alkaline_cellulose_agar"],["acido_thermophile_medium.yaml","acido_thermophile_medium"],["modified_eggerth_gagnon_medium.yaml","modified_eggerth_gagnon_medium"]]},{"id":"CHEBI:47966","l":"aldehydo-N-acetylmuramic acid","na":1,"nb":4,"a":[["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"]],"b":[["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:16602","l":"trichloroethene","na":3,"nb":1,"a":[["EC%3A1.21.99.5","tetrachloroethene reductive dehalogenase"],["RHEA%3A67992","trichloroethene + AH2 = (Z)-1,2-dichloroethene + chloride + A + H(+)"],["RHEA%3A20353","trichloroethene + chloride + A + H(+) = tetrachloroethene + AH2"]],"b":[["dehalococcoides_medium__9ce6016b.yaml","dehalococcoides_medium"]]},{"id":"CHEBI:25351","l":"mevalonic acid","na":1,"nb":3,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["LACTOBACILLUS_MEDIUM_III.yaml","lactobacillus_medium_iii"],["lactobacillus_medium_ii__915ff5f7.yaml","lactobacillus_medium_ii"],["lactobacillus_medium_iii__eb3ab598.yaml","lactobacillus_medium_iii"]]},{"id":"CHEBI:2682","l":"amphotericin B","na":1,"nb":3,"a":[["proteintraitsmech%3ABIOLIP_4UH","4UH-binding site"]],"b":[["HELICOBACTER_MEDIUM.yaml","helicobacter_medium"],["brain_heart_infusion_agar_upplemented_with_10_calf_blood_and_antibiotics.yaml","brain_heart_infusion_agar_upplemented_with_10_calf_blood_and_antibiotics"],["eagles_minimum_essential_medium_mem_containing_antibiotics_and_fetal_bovine_serum.yaml","eagles_minimum_essential_medium_mem_containing_antibiotics_and_fetal_bovine_serum"]]},{"id":"CHEBI:28145","l":"dibenzofuran","na":1,"nb":3,"a":[["RHEA%3A42460","dibenzofuran + NADH + O2 + H(+) = biphenyl-2,2',3-triol + NAD(+)"]],"b":[["MINERAL_MEDIUM_WITH_DIBENZOFURAN.yaml","mineral_medium_with_dibenzofuran"],["cfmm_medium_0_1_dibenzofuran.yaml","cfmm_medium_0_1_dibenzofuran"],["mineral_medium_with_2_chlorobenzoate.yaml","mineral_medium_with_2_chlorobenzoate"]]},{"id":"CHEBI:41808","l":"decane","na":1,"nb":3,"a":[["RHEA%3A76735","decane + reduced [NADPH--hemoprotein reductase] + O2 = 3-decanol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["DESULFOGLAEBA_MEDIUM.yaml","desulfoglaeba_medium"],["MODIFIED_DESULFOGLAEBA_ALKANEXEDENS_MEDIUM.yaml","modified_desulfoglaeba_alkanexedens_medium"],["modified_desulfoglaeba_alkanexedens_medium__f10b64fd.yaml","modified_desulfoglaeba_alkanexedens_medium"]]},{"id":"NCBITaxon:41673","l":"Acidianus brierleyi","na":3,"nb":1,"a":[["TED%3AAF-A0A2U9IEJ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U9IEJ0-F1-model_v4_TED01"],["TED%3AAF-A0A2U9IC53-F1-model_v4_TED01","TED novel fold AF-A0A2U9IC53-F1-model_v4_TED01"],["TED%3AAF-A0A2U9ICQ8-F1-model_v4_TED02","TED novel fold AF-A0A2U9ICQ8-F1-model_v4_TED02"]],"b":[["sulfolobus_medium_anaerobic_for_dsm_2162.yaml","sulfolobus_medium_anaerobic_for_dsm_2162"]]},{"id":"NCBITaxon:44001","l":"Caldicellulosiruptor saccharolyticus","na":3,"nb":1,"a":[["Pfam%3APF12891","Glycoside hydrolase family 44"],["PROSITE%3APS01027","Glycosyl hydrolases family 39 active site"],["Pfam%3APF02011","Glycosyl hydrolase family 48"]],"b":[["caldicellulosiruptor_medium_for_dsm_10319.yaml","caldicellulosiruptor_medium_for_dsm_10319"]]},{"id":"NCBITaxon:823","l":"Parabacteroides distasonis","na":3,"nb":1,"a":[["TED%3AAF-A0A412R0B2-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A412R0B2-F1-model_v4_TED05"],["TED%3AAF-A0A4S2EEJ9-F1-model_v4_TED01","TED novel fold AF-A0A4S2EEJ9-F1-model_v4_TED01"],["TED%3AAF-A0A5C6KM13-F1-model_v4_TED03","TED novel fold AF-A0A5C6KM13-F1-model_v4_TED03"]],"b":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]]},{"id":"CHEBI:15676","l":"allantoin","na":1,"nb":2,"a":[["RHEA%3A30819","allantoin + H2O = allantoate + H(+)"]],"b":[["ALLANTOIN_MINERAL_MEDIUM.yaml","allantoin_mineral_medium"],["allantoin_mineral_medium__75896b1e.yaml","allantoin_mineral_medium"]]},{"id":"CHEBI:16261","l":"chitosan","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_GCS","GCS-binding site"]],"b":[["HALOACTINOMYCES_HALOPHILUS_MEDIUM.yaml","haloactinomyces_halophilus_medium"],["Matsuaria_Medium.yaml","matsuaria_medium"]]},{"id":"CHEBI:17533","l":"N-acetyl-L-glutamic acid","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["proteintraitsmech%3ABIOLIP_NLG","NLG-binding site"]],"b":[["NLDM_defined.yaml","NLDM_defined"]]},{"id":"CHEBI:18026","l":"2,3-dihydroxybenzoic acid","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_DBH","DBH-binding site"]],"b":[["M9_minimal_media_aromix_noCarbon.yaml","M9 minimal media aromix noCarbon"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"]]},{"id":"CHEBI:27941","l":"pullulan","na":1,"nb":2,"a":[["MCSA%3A433","neopullulanase"]],"b":[["ARTIFICIAL_SEAWATER_MEDIUM_WITH_PULLULAN.yaml","artificial_seawater_medium_with_pullulan"],["artificial_seawater_medium_with_pullulan__dbb4c222.yaml","artificial_seawater_medium_with_pullulan"]]},{"id":"CHEBI:28488","l":"m-xylene","na":2,"nb":1,"a":[["EC%3A1.14.15.26","toluene methyl-monooxygenase"],["RHEA%3A51600","m-xylene + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = 3-methylbenzyl alcohol + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"]],"b":[["DESULFOVIRGA_MEDIUM.yaml","desulfovirga_medium"]]},{"id":"CHEBI:30746","l":"benzoic acid","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_BEZ","BEZ-binding site"]],"b":[["UGA_defined_4CarbonMix_Nitrate_anaerobic_pH_7.1.yaml","UGA defined 4CarbonMix Nitrate anaerobic pH 7.1"],["togo_medium_m1949.yaml","togo_medium_m1949"]]},{"id":"CHEBI:30751","l":"formic acid","na":2,"nb":1,"a":[["MCSA%3A38","GTP cyclohydrolase I"],["proteintraitsmech%3ABIOLIP_FMT","FMT-binding site"]],"b":[["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:30764","l":"3-hydroxybenzoic acid","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_3HB","3HB-binding site"]],"b":[["ANAEROBIOSPIRILLUM_THOMASII_MEDIUM.yaml","anaerobiospirillum_thomasii_medium"],["SPOROTOMACULUM_MEDIUM.yaml","sporotomaculum_medium"]]},{"id":"CHEBI:35366","l":"fatty acid","na":1,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["MODIFIED_AM5_MEDIUM_2.yaml","modified_am5_medium_2"],["modified_am5_medium__421a5fe8.yaml","modified_am5_medium"]]},{"id":"CHEBI:133362","l":"N-acetyl-L-methionyl-L-glutaminyl residue","na":1,"nb":1,"a":[["RHEA%3A50492","N-terminal L-methionyl-L-glutaminyl-[protein] + acetyl-CoA = N-terminal N(alpha)-acetyl-L-methionyl-L-glutaminyl-[protein] + CoA + H(+)"]],"b":[["NLDM_defined.yaml","NLDM_defined"]]},{"id":"CHEBI:15978","l":"sn-glycerol 3-phosphate","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_G3P","G3P-binding site"]],"b":[["modified_dixon_s_agar.yaml","modified_dixon_s_agar"]]},{"id":"CHEBI:16867","l":"D-methionine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MED","MED-binding site"]],"b":[["methionine_salt_schaechter_et_al.yaml","methionine_salt_schaechter_et_al"]]},{"id":"CHEBI:17189","l":"2,5-dihydroxybenzoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_GTQ","GTQ-binding site"]],"b":[["syntrophus_hqg_1_medium.yaml","syntrophus_hqg_1_medium"]]},{"id":"CHEBI:22660","l":"aspartic acid","na":1,"nb":1,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"]],"b":[["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"]]},{"id":"CHEBI:24040","l":"flavin adenine dinucleotide","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_24040","requires flavin adenine dinucleotide"]],"b":[["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:26986","l":"threonine","na":1,"nb":1,"a":[["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["brain_heart_infusion_difco_medium_supplemented_with_dl_threonine_and_glucose.yaml","brain_heart_infusion_difco_medium_supplemented_with_dl_threonine_and_glucose"]]},{"id":"CHEBI:29125","l":"arsenate(3-)","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ART","ART-binding site"]],"b":[["HALARSENATIBACTER_MEDIUM.yaml","halarsenatibacter_medium"]]},{"id":"CHEBI:30452","l":"tellurium atom","na":1,"nb":1,"a":[["TCDB%3A2.A.109","The Tellurium Ion Resistance (TerC) Family"]],"b":[["ucm.yaml","ucm"]]},{"id":"CHEBI:30621","l":"diarsenic trioxide","na":1,"nb":1,"a":[["TCDB%3A1.A.8","The Major Intrinsic Protein (MIP) Family"]],"b":[["ucm.yaml","ucm"]]},{"id":"CHEBI:30845","l":"2-furoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_FOA","FOA-binding site"]],"b":[["pelobacter_fuf_medium.yaml","pelobacter_fuf_medium"]]},{"id":"CHEBI:33083","l":"fluoranthene","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["PLATES_WITH_FLUORANTHENE.yaml","plates_with_fluoranthene"]]},{"id":"CHEBI:40666","l":"1,6-anhydro-N-acetyl-beta-muramic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_AH0","AH0-binding site"]],"b":[["NLDM_defined.yaml","NLDM_defined"]]},{"id":"NCBITaxon:1670455","l":"Sulfodiicoccus acidiphilus","na":1,"nb":1,"a":[["TED%3AAF-A0A348B6D9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A348B6D9-F1-model_v4_TED02"]],"b":[["sulfolobus_medium_anaerobic_for_dsm_2162.yaml","sulfolobus_medium_anaerobic_for_dsm_2162"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":1,"nb":1,"a":[["TED%3AAF-A0A4R6CRR7-F1-model_v4_TED01","TED novel fold AF-A0A4R6CRR7-F1-model_v4_TED01"]],"b":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]]},{"id":"NCBITaxon:69656","l":"Sulfurisphaera ohwakuensis","na":1,"nb":1,"a":[["TED%3AAF-A0A650CK52-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A650CK52-F1-model_v4_TED01"]],"b":[["sulfolobus_medium_anaerobic_for_dsm_2162.yaml","sulfolobus_medium_anaerobic_for_dsm_2162"]]}]} \ No newline at end of file +{"a":"ProteinTraitsMech","b":"CultureMech","base":{"ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record=","CultureMech":"https://github.com/CultureBotAI/CultureMech/blob/main/data/merge_yaml/merged/"},"n":233,"by":{"CHEBI":221,"NCBITaxon":10,"UBERON":2},"terms":[{"id":"CHEBI:15377","l":"water","na":9376,"nb":2283,"a":[["EC%3A1.1.1.115","ribose 1-dehydrogenase (NADP(+))"],["EC%3A1.1.1.132","GDP-mannose 6-dehydrogenase"],["EC%3A1.1.1.136","UDP-N-acetylglucosamine 6-dehydrogenase"],["EC%3A1.1.1.186","dTDP-galactose 6-dehydrogenase"],["EC%3A1.1.1.192","long-chain-alcohol dehydrogenase"],["EC%3A1.1.1.205","IMP dehydrogenase"]],"b":[["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1_10_MB_agar.yaml","1_10_mb_agar"],["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"],["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":1616,"nb":711,"a":[["EC%3A1.1.1.170","3beta-hydroxysteroid-4alpha-carboxylate 3-dehydrogenase (decarboxylating)"],["EC%3A1.1.1.262","4-hydroxythreonine-4-phosphate dehydrogenase"],["EC%3A1.1.1.276","serine 3-dehydrogenase (NADP(+))"],["EC%3A1.1.1.286","isocitrate--homoisocitrate dehydrogenase"],["EC%3A1.1.1.305","UDP-glucuronic acid oxidase (UDP-4-keto-hexauronic acid decarboxylating)"],["EC%3A1.1.1.343","phosphogluconate dehydrogenase (NAD(+)-dependent, decarboxylating)"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["4_yaco_media.yaml","4_yaco_media"],["8kg_4_medium.yaml","8kg_4_medium"],["ABSS2.yaml","abss2"],["ABYSSISOLIBACTER_MEDIUM.yaml","abyssisolibacter_medium"]]},{"id":"CHEBI:17754","l":"glycerol","na":95,"nb":165,"a":[["EC%3A1.1.1.156","glycerol 2-dehydrogenase (NADP(+))"],["EC%3A1.1.1.372","D/L-glyceraldehyde reductase"],["EC%3A1.1.1.6","glycerol dehydrogenase"],["EC%3A1.1.1.72","glycerol dehydrogenase (NADP(+))"],["EC%3A1.1.99.22","glycerol dehydrogenase (acceptor)"],["EC%3A2.4.1.332","1,2-alpha-glucosylglycerol phosphorylase"]],"b":[["1_ogawa_medium.yaml","1_ogawa_medium"],["1_ogawa_medium__65d0ae34.yaml","1_ogawa_medium"],["5_G_MEDIUM.yaml","5_g_medium"],["5_g_medium__8aa8a45a.yaml","5_g_medium"],["6_B_MEDIUM.yaml","6_b_medium"],["6_b_medium__990e4708.yaml","6_b_medium"]]},{"id":"CHEBI:17154","l":"nicotinamide","na":92,"nb":117,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17154","requires nicotinamide"],["EC%3A2.1.1.1","nicotinamide N-methyltransferase"],["EC%3A2.3.1.286","protein acetyllysine N-acetyltransferase"],["EC%3A2.3.1.313","NAD-dependent lipoamidase"],["EC%3A2.4.2.12","nicotinamide phosphoribosyltransferase"],["EC%3A2.4.2.31","NAD(+)--protein-arginine ADP-ribosyltransferase"]],"b":[["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"],["ANAEROBIC_CHOLESTEROL_MEDIUM.yaml","anaerobic_cholesterol_medium"],["ANAEROBIC_THAUERA_MEDIUM.yaml","anaerobic_thauera_medium"],["ANCALOMICROBIUM_MEDIUM.yaml","ancalomicrobium_medium"],["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"]]},{"id":"CHEBI:17790","l":"methanol","na":86,"nb":107,"a":[["EC%3A1.1.1.244","methanol dehydrogenase"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.99.37","methanol dehydrogenase (nicotinoprotein)"],["EC%3A1.14.13.25","methane monooxygenase (soluble)"],["EC%3A1.14.14.117","aflatoxin B synthase"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["2_mh_medium.yaml","2_mh_medium"],["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["ALTEROMONAS_MEDIUM.yaml","alteromonas_medium"],["BM_MEDIUM.yaml","bm_medium"]]},{"id":"CHEBI:17992","l":"sucrose","na":49,"nb":108,"a":[["EC%3A1.1.99.13","glucoside 3-dehydrogenase (acceptor)"],["EC%3A2.4.1.10","levansucrase"],["EC%3A2.4.1.125","sucrose--1,6-alpha-glucan 3(6)-alpha-glucosyltransferase"],["EC%3A2.4.1.13","sucrose synthase"],["EC%3A2.4.1.166","raffinose--raffinose alpha-galactosyltransferase"],["EC%3A2.4.1.167","sucrose 6(F)-alpha-galactosyltransferase"]],"b":[["ACANTHAMOEBA_MEDIUM.yaml","acanthamoeba_medium"],["ACETIVIBRIO_MEDIUM.yaml","acetivibrio_medium"],["ALCALIPHILIC_AMPHIBACILLUS_STRAINS_MEDIUM.yaml","alcaliphilic_amphibacillus_strains_medium"],["ALKALIPHILIC_SPIROCHAETE_MEDIUM.yaml","alkaliphilic_spirochaete_medium"],["ANAEROBACTER_MEDIUM.yaml","anaerobacter_medium"],["AZOSPIRILLUM_AMAZONENSE_MEDIUM.yaml","azospirillum_amazonense_medium"]]},{"id":"CHEBI:16199","l":"urea","na":48,"nb":45,"a":[["EC%3A3.5.1.5","urease"],["EC%3A3.5.1.95","N-malonylurea hydrolase"],["EC%3A3.5.3.1","arginase"],["EC%3A3.5.3.10","D-arginase"],["EC%3A3.5.3.11","agmatinase"],["EC%3A3.5.3.14","amidinoaspartase"]],"b":[["A7_MEDIUM.yaml","a7_medium"],["Agro_defined_trehalose.yaml","Agro defined trehalose"],["BACILLUS_PASTEURII_MEDIUM.yaml","bacillus_pasteurii_medium"],["BM7CO_MEDIUM.yaml","bm7co_medium"],["C41_MEDIUM.yaml","c41_medium"],["CATONELLA_UREILYTICA_MEDIUM.yaml","catonella_ureilytica_medium"]]},{"id":"CHEBI:18276","l":"dihydrogen","na":42,"nb":231,"a":[["EC%3A1.12.1.2","hydrogen dehydrogenase"],["EC%3A1.12.1.3","hydrogen dehydrogenase (NADP(+))"],["EC%3A1.12.1.4","hydrogenase (NAD(+), ferredoxin)"],["EC%3A1.12.1.5","hydrogen dehydrogenase [NAD(P)(+)]"],["EC%3A1.12.2.1","cytochrome-c3 hydrogenase"],["EC%3A1.12.5.1","hydrogen:quinone oxidoreductase"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["4_yaco_media.yaml","4_yaco_media"],["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["AMMONIFEX_DEGENSII_MEDIUM.yaml","ammonifex_degensii_medium"],["AP11MH_medium.yaml","ap11mh_medium"]]},{"id":"CHEBI:17268","l":"myo-inositol","na":42,"nb":50,"a":[["EC%3A1.1.1.18","inositol 2-dehydrogenase"],["EC%3A1.1.5.n1","quinoprotein inositol dehydrogenase"],["EC%3A1.13.99.1","inositol oxygenase"],["EC%3A2.1.1.129","inositol 4-methyltransferase"],["EC%3A2.1.1.39","inositol 3-methyltransferase"],["EC%3A2.1.1.40","inositol 1-methyltransferase"]],"b":[["2ASW.yaml","2asw"],["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"],["ASW.yaml","asw"],["CDM_LP.yaml","cdm_lp"],["DESULFAMPLUS_MEDIUM.yaml","desulfamplus_medium"],["EGGC_MEDIUM.yaml","eggc_medium"]]},{"id":"CHEBI:30089","l":"acetate","na":302,"nb":31,"a":[["EC%3A1.1.1.318","eugenol synthase"],["EC%3A1.1.1.319","isoeugenol synthase"],["EC%3A1.13.11.50","acetylacetone-cleaving enzyme"],["EC%3A1.13.12.4","lactate 2-monooxygenase"],["EC%3A1.14.13.54","ketosteroid monooxygenase"],["EC%3A1.14.14.19","steroid 17alpha-monooxygenase"]],"b":[["AMOEBOBACTER_MEDIUM.yaml","amoebobacter_medium"],["FWAFC.yaml","fwafc"],["M9ZB_with_acetate.yaml","m9zb_with_acetate"],["MEDIUM_FOR_CHLOROBIUM_FERROOXIDANS.yaml","medium_for_chlorobium_ferrooxidans"],["NMM_with_acetate.yaml","nmm_with_acetate"],["Thauera_aminoaromatica_medium.yaml","thauera_aminoaromatica_medium"]]},{"id":"CHEBI:16236","l":"ethanol","na":31,"nb":70,"a":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.5.5","alcohol dehydrogenase (quinone)"],["EC%3A1.1.99.36","alcohol dehydrogenase (nicotinoprotein)"],["EC%3A2.3.1.268","ethanol O-acetyltransferase"],["EC%3A3.1.1.113","ethyl acetate hydrolase"],["EC%3A3.1.1.67","fatty-acyl-ethyl-ester synthase"]],"b":[["ACETOBACTER_PEROXYDANS_MEDIUM.yaml","acetobacter_peroxydans_medium"],["AE_BROTH.yaml","ae_broth"],["ANAEROTIGNUM_NEOPROPIONICUM_MEDIUM.yaml","anaerotignum_neopropionicum_medium"],["Acetobacter_Europaeus_Medium.yaml","acetobacter_europaeus_medium"],["BTU_MEDIUM.yaml","btu_medium"],["CLOSTRIDIUM_KLUYVERI_MEDIUM.yaml","clostridium_kluyveri_medium"]]},{"id":"CHEBI:16947","l":"citrate(3-)","na":49,"nb":31,"a":[["EC%3A2.3.3.1","citrate (Si)-synthase"],["EC%3A2.3.3.16","citrate synthase (unknown stereospecificity)"],["EC%3A2.3.3.3","citrate (Re)-synthase"],["EC%3A2.3.3.8","ATP citrate synthase"],["EC%3A2.8.3.10","citrate CoA-transferase"],["EC%3A4.1.3.6","citrate (pro-3S)-lyase"]],"b":[["E2_medium_with_citrate.yaml","e2_medium_with_citrate"],["M9_minimal_medium_with_citrate.yaml","m9_minimal_medium_with_citrate"],["Vogels_Medium_N.yaml","vogels_medium_n"],["aspartate_salt_schaechter_et_al.yaml","aspartate_salt_schaechter_et_al"],["batch_medium_mattanovich_et_al.yaml","batch_medium_mattanovich_et_al"],["bg11_0_015_mm_iron_shcolnick_2006.yaml","bg11_0_015_mm_iron_shcolnick_2006"]]},{"id":"CHEBI:17306","l":"maltose","na":27,"nb":50,"a":[["EC%3A2.3.1.79","maltose O-acetyltransferase"],["EC%3A2.4.1.139","maltose synthase"],["EC%3A2.4.1.8","maltose phosphorylase"],["EC%3A2.7.1.175","maltokinase"],["EC%3A2.7.1.208","protein-N(pi)-phosphohistidine--maltose phosphotransferase"],["EC%3A3.1.3.90","maltose 6'-phosphate phosphatase"]],"b":[["ALKALIPHILUS_LACT_MEDIUM.yaml","alkaliphilus_lact_medium"],["BUTYRIVIBRIO_M2_MEDIUM.yaml","butyrivibrio_m2_medium"],["COLON_EXTRACT_MEDIUM.yaml","colon_extract_medium"],["DEINOCOCCUS_MEDIUM.yaml","deinococcus_medium"],["HELMUTKOENIGIA_MEDIUM.yaml","helmutkoenigia_medium"],["HYPNOCYCLICUS_MEDIUM.yaml","hypnocyclicus_medium"]]},{"id":"CHEBI:17568","l":"uracil","na":47,"nb":26,"a":[["EC%3A1.14.11.10","pyrimidine-deoxynucleoside 1'-dioxygenase"],["EC%3A1.14.99.46","pyrimidine monooxygenase"],["EC%3A1.17.99.4","uracil/thymine dehydrogenase"],["EC%3A1.3.1.1","dihydrouracil dehydrogenase (NAD(+))"],["EC%3A1.3.1.2","dihydropyrimidine dehydrogenase (NADP(+))"],["EC%3A1.3.3.7","dihydrouracil oxidase"]],"b":[["CDM_LP.yaml","cdm_lp"],["MCD_Medium.yaml","mcd_medium"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"]]},{"id":"CHEBI:15361","l":"pyruvate","na":410,"nb":24,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15361","requires pyruvate"],["EC%3A1.1.1.27","L-lactate dehydrogenase"],["EC%3A1.1.1.28","D-lactate dehydrogenase"],["EC%3A1.1.1.38","malate dehydrogenase (oxaloacetate-decarboxylating)"],["EC%3A1.1.1.39","malate dehydrogenase (decarboxylating)"],["EC%3A1.1.1.40","malate dehydrogenase (oxaloacetate-decarboxylating) (NADP(+))"]],"b":[["ARCOBACTER_ANAEROPHILUS_MEDIUM.yaml","arcobacter_anaerophilus_medium"],["CENTENUM_MEDIUM.yaml","centenum_medium"],["CMM.yaml","cmm"],["NMM_with_pyruvate.yaml","nmm_with_pyruvate"],["ams1_pyruvate_glycine.yaml","ams1_pyruvate_glycine"],["ams1_pyruvate_glycine__08b97e38.yaml","ams1_pyruvate_glycine"]]},{"id":"CHEBI:26833","l":"sulfur atom","na":24,"nb":153,"a":[["EC%3A1.12.98.4","sulfhydrogenase"],["EC%3A1.13.11.55","sulfur oxygenase/reductase"],["EC%3A1.8.1.18","NAD(P)H sulfur oxidoreductase (CoA-dependent)"],["EC%3A1.8.1.19","sulfide dehydrogenase"],["EC%3A1.8.2.3","sulfide-cytochrome-c reductase (flavocytochrome c)"],["EC%3A1.8.2.7","thiocyanate desulfurase"]],"b":[["1_2_SME_MEDIUM.yaml","1_2_sme_medium"],["9K_WITH_SULFUR_MEDIUM.yaml","9k_with_sulfur_medium"],["ACIDIANUS_BRIERLEYI_MEDIUM.yaml","acidianus_brierleyi_medium"],["ACIDITHIOBACILLUS_CALDUS_MEDIUM.yaml","acidithiobacillus_caldus_medium"],["ACIDITHIOBACILLUS_MEDIUM.yaml","acidithiobacillus_medium"],["ACIDOLOBUS_ACETICUS_MEDIUM.yaml","acidolobus_aceticus_medium"]]},{"id":"CHEBI:17836","l":"4-aminobenzoate","na":20,"nb":87,"a":[["EC%3A1.14.13.27","4-aminobenzoate 1-monooxygenase"],["EC%3A1.14.99.68","4-aminobenzoate N-oxygenase"],["EC%3A2.4.2.54","beta-ribofuranosylphenol 5'-phosphate synthase"],["EC%3A2.5.1.15","dihydropteroate synthase"],["EC%3A4.1.1.24","aminobenzoate decarboxylase"],["EC%3A4.1.3.38","aminodeoxychorismate lyase"]],"b":[["Asp2.yaml","asp2"],["CAMM.yaml","camm"],["CDM_LP.yaml","cdm_lp"],["DESULFOMONILE_MEDIUM.yaml","desulfomonile_medium"],["FWAFC.yaml","fwafc"],["Gotz_minimal_medium_with_malate.yaml","gotz_minimal_medium_with_malate"]]},{"id":"CHEBI:17716","l":"lactose","na":20,"nb":25,"a":[["EC%3A2.4.1.22","lactose synthase"],["EC%3A2.7.1.207","protein-N(pi)-phosphohistidine--lactose phosphotransferase"],["EC%3A3.2.1.108","lactase"],["EC%3A3.2.1.140","lacto-N-biosidase"],["EC%3A3.2.1.227","N-acetyllactosaminidase"],["RHEA%3A86923","a beta-D-Gal-(1->4)-beta-D-Glc-(1<->1)-Cer(d18:1(4E)) + H2O = lactose + an N-acylsphing-4-enine"]],"b":[["1298.yaml","1298"],["ALKALINE_CELLULOSE_AGAR.yaml","alkaline_cellulose_agar"],["Basal_synthetic_medium.yaml","basal_synthetic_medium"],["CLOSTRIDIUM_VINCENTII_MEDIUM.yaml","clostridium_vincentii_medium"],["M17_MEDIUM_FOR_LACTIC_STREPTOCOCCI.yaml","m17_medium_for_lactic_streptococci"],["STREPTOCOCCUS_SUIS_MEDIUM.yaml","streptococcus_suis_medium"]]},{"id":"CHEBI:17821","l":"thymine","na":20,"nb":22,"a":[["EC%3A1.14.11.6","thymine dioxygenase"],["EC%3A1.14.99.46","pyrimidine monooxygenase"],["EC%3A1.17.99.4","uracil/thymine dehydrogenase"],["EC%3A1.3.1.1","dihydrouracil dehydrogenase (NAD(+))"],["EC%3A1.3.1.2","dihydropyrimidine dehydrogenase (NADP(+))"],["EC%3A2.4.2.2","pyrimidine-nucleoside phosphorylase"]],"b":[["2ASW.yaml","2asw"],["2asw__59e92e67.yaml","2asw"],["ASW.yaml","asw"],["Asp2.yaml","asp2"],["CDM_LP.yaml","cdm_lp"],["NLDM_defined.yaml","NLDM_defined"]]},{"id":"CHEBI:17057","l":"cellobiose","na":19,"nb":121,"a":[["EC%3A1.1.3.5","hexose oxidase"],["EC%3A1.1.99.18","cellobiose dehydrogenase (acceptor)"],["EC%3A2.4.1.20","cellobiose phosphorylase"],["EC%3A2.7.1.205","protein-N(pi)-phosphohistidine--D-cellobiose phosphotransferase"],["EC%3A2.7.1.85","beta-glucoside kinase"],["EC%3A5.1.3.11","cellobiose epimerase"]],"b":[["A7_MEDIUM.yaml","a7_medium"],["ACETIVIBRIO_ALKALICELLULOSI_MEDIUM.yaml","acetivibrio_alkalicellulosi_medium"],["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["ALKALIFLEXUS_MEDIUM.yaml","alkaliflexus_medium"],["ANAEROBACTERIUM_MEDIUM.yaml","anaerobacterium_medium"],["ANAEROCELLUM_MEDIUM.yaml","anaerocellum_medium"]]},{"id":"CHEBI:18385","l":"thiamine(1+)","na":19,"nb":94,"a":[["EC%3A1.1.3.23","thiamine oxidase"],["EC%3A2.5.1.2","thiamine pyridinylase"],["EC%3A2.7.1.89","thiamine kinase"],["EC%3A2.7.6.2","thiamine diphosphokinase"],["EC%3A3.1.3.100","thiamine phosphate phosphatase"],["EC%3A3.5.99.2","aminopyrimidine aminohydrolase"]],"b":[["ANB_aerobic.yaml","anb_aerobic"],["AQUASPIRILLUM_MEDIUM.yaml","aquaspirillum_medium"],["Basic_mineral_medium.yaml","basic_mineral_medium"],["CHITINIVIBRIO_MEDIUM.yaml","chitinivibrio_medium"],["Chemically_defined_medium.yaml","chemically_defined_medium"],["Chromatium_Medium.yaml","chromatium_medium"]]},{"id":"CHEBI:16709","l":"pyridoxine","na":19,"nb":38,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16709","requires pyridoxine"],["EC%3A1.1.1.65","pyridoxine 4-dehydrogenase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.99.9","pyridoxine 5-dehydrogenase"],["EC%3A2.4.1.160","pyridoxine 5'-O-beta-D-glucosyltransferase"],["EC%3A2.7.1.35","pyridoxal kinase"]],"b":[["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["4_yaco_media.yaml","4_yaco_media"],["ANB_aerobic.yaml","anb_aerobic"],["AQUASPIRILLUM_MEDIUM.yaml","aquaspirillum_medium"],["BACTO_MIDDLEBROOK_7H9_BROTH.yaml","bacto_middlebrook_7h9_broth"],["Basic_mineral_medium.yaml","basic_mineral_medium"]]},{"id":"CHEBI:16235","l":"guanine","na":27,"nb":19,"a":[["EC%3A2.4.2.1","purine-nucleoside phosphorylase"],["EC%3A2.4.2.15","guanosine phosphorylase"],["EC%3A2.4.2.29","tRNA-guanosine(34) preQ1 transglycosylase"],["EC%3A2.4.2.48","tRNA-guanine(15) transglycosylase"],["EC%3A2.4.2.64","tRNA-guanosine(34) queuine transglycosylase"],["EC%3A2.4.2.8","hypoxanthine phosphoribosyltransferase"]],"b":[["MCD_Medium.yaml","mcd_medium"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"]]},{"id":"CHEBI:17997","l":"dinitrogen","na":18,"nb":904,"a":[["EC%3A1.18.6.1","nitrogenase"],["EC%3A1.18.6.2","vanadium-dependent nitrogenase"],["EC%3A1.19.6.1","nitrogenase (flavodoxin)"],["EC%3A1.7.2.4","nitrous-oxide reductase"],["EC%3A1.7.2.8","hydrazine dehydrogenase"],["RHEA%3A79967","3-diazoavenalumate + NADH + H(+) = avenalumate + N2 + NAD(+)"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_tryptic_soy_broth_anaerobic.yaml","1_2_tryptic_soy_broth_anaerobic"],["480g_medium__e94698e7.yaml","480g_medium"],["8kg_4_medium.yaml","8kg_4_medium"],["ABSS2.yaml","abss2"],["ABYSSISOLIBACTER_MEDIUM.yaml","abyssisolibacter_medium"]]},{"id":"CHEBI:16899","l":"D-mannitol","na":17,"nb":18,"a":[["EC%3A1.1.1.138","mannitol 2-dehydrogenase (NADP(+))"],["EC%3A1.1.1.255","mannitol dehydrogenase"],["EC%3A1.1.1.67","mannitol 2-dehydrogenase"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.3.40","D-mannitol oxidase"],["EC%3A2.7.1.197","protein-N(pi)-phosphohistidine--D-mannitol phosphotransferase"]],"b":[["HETEROTROPHIC_MEDIUM_H3P.yaml","heterotrophic_medium_h3p"],["MGL.yaml","MGL"],["Modified_YM.yaml","Modified YM"],["NF.yaml","NF"],["NL-CCM.yaml","NL-CCM"],["NLDM_defined.yaml","NLDM_defined"]]},{"id":"CHEBI:17596","l":"inosine","na":32,"nb":16,"a":[["EC%3A1.1.3.28","nucleoside oxidase"],["EC%3A2.7.1.73","inosine kinase"],["EC%3A3.1.3.99","IMP-specific 5'-nucleotidase"],["EC%3A3.13.1.9","S-inosyl-L-homocysteine hydrolase"],["EC%3A3.2.2.2","inosine nucleosidase"],["EC%3A3.5.4.4","adenosine deaminase"]],"b":[["MCD_Medium.yaml","mcd_medium"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:29032","l":"(R)-pantothenate","na":15,"nb":135,"a":[["EC%3A2.7.1.33","pantothenate kinase"],["EC%3A3.5.1.22","pantothenase"],["EC%3A3.5.1.92","pantetheine hydrolase"],["EC%3A6.3.2.1","pantoate--beta-alanine ligase (AMP-forming)"],["EC%3A6.3.2.44","pantoate--beta-alanine ligase (ADP-forming)"],["RHEA%3A68332","(R)-4'-phosphopantothenate + H2O = (R)-pantothenate + phosphate"]],"b":[["AP11MH_medium.yaml","ap11mh_medium"],["ARCHAEOGLOBUS_FULGIDUS_MEDIUM.yaml","archaeoglobus_fulgidus_medium"],["AS_medium.yaml","as_medium"],["A_medium.yaml","a_medium"],["Artificial_seawater_medium_for_strain_JS_SRB250Lac.yaml","artificial_seawater_medium_for_strain_js_srb250lac"],["Cedears_Standard_Medium_2.yaml","cedears_standard_medium_2"]]},{"id":"CHEBI:17750","l":"glycine betaine","na":33,"nb":15,"a":[["EC%3A1.1.3.17","choline oxidase"],["EC%3A1.13.11.90","[1-hydroxy-2-(trimethylamino)ethyl]phosphonate dioxygenase (glycine- betaine-forming)"],["EC%3A1.14.13.251","glycine betaine monooxygenase"],["EC%3A1.2.1.8","betaine-aldehyde dehydrogenase"],["EC%3A1.21.4.4","betaine reductase"],["EC%3A2.1.1.157","sarcosine/dimethylglycine N-methyltransferase"]],"b":[["CUNICULIPLASMA_MEDIUM.yaml","cuniculiplasma_medium"],["MALEDIVIBACTER_MEDIUM.yaml","maledivibacter_medium"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"]]},{"id":"CHEBI:15428","l":"glycine","na":13,"nb":87,"a":[["MCSA%3A718","caspase-1"],["MCSA%3A599","dipeptidase E"],["MCSA%3A906","gelatinase A"],["MCSA%3A762","glycine C-acetyltransferase"],["MCSA%3A746","L-peptidase"],["MCSA%3A477","picornain 3C"]],"b":[["ACETOBACTEROIDES_GLYCINOPHILUS_MEDIUM.yaml","acetobacteroides_glycinophilus_medium"],["ACIDAMINOBACTER_MEDIUM.yaml","acidaminobacter_medium"],["ACIDAMINOCOCCUS_FERMENTANS_MEDIUM.yaml","acidaminococcus_fermentans_medium"],["ANT.yaml","ant"],["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"]]},{"id":"CHEBI:16040","l":"cytosine","na":17,"nb":13,"a":[["EC%3A2.4.2.57","AMP phosphorylase"],["EC%3A3.2.2.10","pyrimidine-5'-nucleotide nucleosidase"],["EC%3A3.2.2.8","ribosylpyrimidine nucleosidase"],["EC%3A3.5.1.135","N(4)-acetylcytidine amidohydrolase"],["EC%3A3.5.4.1","cytosine deaminase"],["RHEA%3A30075","CMP + H2O = cytosine + D-ribose 5-phosphate"]],"b":[["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:26271","l":"proline","na":12,"nb":19,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.15","The Betaine/Carnitine/Choline Transporter (BCCT) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"]],"b":[["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["cdm_lab_medium.yaml","cdm_lab_medium"],["complete_chemically_defined_medium.yaml","complete_chemically_defined_medium"],["minimal_chemically_defined_medium_his_pro_letort_2001.yaml","minimal_chemically_defined_medium_his_pro_letort_2001"]]},{"id":"CHEBI:16977","l":"L-alanine","na":11,"nb":51,"a":[["ARO%3A3004943","cycloserine resistant ald"],["ARO%3A3004946","cycloserine resistant alr"],["ARO%3A3004945","Mycobacterium tuberculosis ald mutations confer resistance to cycloserine"],["ARO%3A3004947","Mycobacterium tuberculosis alr with mutation conferring resistance to cycloserine"],["MCSA%3A609","alpha-lytic endopeptidase"],["MCSA%3A238","assemblin"]],"b":[["ANAEROTIGNUM_MEDIUM.yaml","anaerotignum_medium"],["BGDM.yaml","bgdm"],["CMM.yaml","cmm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MCD_Medium.yaml","mcd_medium"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"]]},{"id":"CHEBI:18067","l":"phylloquinone","na":11,"nb":38,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18067","requires phylloquinone"],["EC%3A1.14.14.78","phylloquinone omega-hydroxylase"],["EC%3A1.14.99.20","phylloquinone monooxygenase (2,3-epoxidizing)"],["EC%3A1.17.4.4","vitamin-K-epoxide reductase (warfarin-sensitive)"],["RHEA%3A57744","phylloquinol + [protein]-disulfide = phylloquinone + [protein]-dithiol"],["RHEA%3A16745","phylloquinone + AH2 + O2 = 2,3-epoxyphylloquinone + A + H2O"]],"b":[["BTU_MEDIUM.yaml","btu_medium"],["Brucella_agar_plates_supplemented_with_hemin_and_vitamin_K1.yaml","brucella_agar_plates_supplemented_with_hemin_and_vitamin_k1"],["COLON_EXTRACT_MEDIUM.yaml","colon_extract_medium"],["Chopped_meat_carbohydrates_with_rumen_fluid.yaml","chopped_meat_carbohydrates_with_rumen_fluid"],["EUBACTERIUM_LENTUM_MEDIUM.yaml","eubacterium_lentum_medium"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"]]},{"id":"CHEBI:17368","l":"hypoxanthine","na":28,"nb":11,"a":[["EC%3A1.17.1.4","xanthine dehydrogenase"],["EC%3A1.17.3.2","xanthine oxidase"],["EC%3A2.4.2.44","S-methyl-5'-thioinosine phosphorylase"],["EC%3A2.4.2.8","hypoxanthine phosphoribosyltransferase"],["EC%3A3.2.2.12","inosinate nucleosidase"],["EC%3A3.2.2.2","inosine nucleosidase"]],"b":[["CDM_LP.yaml","cdm_lp"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:16810","l":"2-oxoglutarate(2-)","na":672,"nb":10,"a":[["EC%3A1.1.1.286","isocitrate--homoisocitrate dehydrogenase"],["EC%3A1.1.1.399","2-oxoglutarate reductase"],["EC%3A1.1.1.41","isocitrate dehydrogenase (NAD(+))"],["EC%3A1.1.1.42","isocitrate dehydrogenase (NADP(+))"],["EC%3A1.1.5.13","(S)-2-hydroxyglutarate dehydrogenase"],["EC%3A1.1.99.2","L-2-hydroxyglutarate dehydrogenase"]],"b":[["BCYE_alpha_agar.yaml","bcye_alpha_agar"],["BM7_MEDIUM.yaml","bm7_medium"],["CTM_MEDIUM.yaml","ctm_medium"],["DinoMM_alphaKetoGlutAcid_NoNitrogen.yaml","DinoMM alphaKetoGlutAcid NoNitrogen"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"]]},{"id":"CHEBI:17712","l":"9H-xanthine","na":32,"nb":10,"a":[["EC%3A1.14.11.48","xanthine dioxygenase"],["EC%3A1.14.13.128","7-methylxanthine demethylase"],["EC%3A1.14.13.179","methylxanthine N(3)-demethylase"],["EC%3A1.17.1.4","xanthine dehydrogenase"],["EC%3A1.17.3.2","xanthine oxidase"],["EC%3A2.4.2.1","purine-nucleoside phosphorylase"]],"b":[["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["ZMB.yaml","ZMB"],["ZMB_ALS.yaml","ZMB ALS"]]},{"id":"CHEBI:18167","l":"alpha-maltose","na":9,"nb":41,"a":[["EC%3A5.1.3.21","maltose epimerase"],["EC%3A5.1.3.3","aldose 1-epimerase"],["RHEA%3A21228","alpha-maltose = beta-maltose"],["MCSA%3A479","4-alpha-glucanotransferase"],["MCSA%3A397","alpha-amylase"],["MCSA%3A905","glucan 1,4-alpha-maltohydrolase"]],"b":[["4_yaco_media.yaml","4_yaco_media"],["Chopped_Meat_Carbohydrate_Medium.yaml","chopped_meat_carbohydrate_medium"],["Chopped_Meat_Carbohydrate_Medium_w_Tween_80.yaml","chopped_meat_carbohydrate_medium_w_tween_80"],["Chopped_meat_carbohydrates_with_rumen_fluid.yaml","chopped_meat_carbohydrates_with_rumen_fluid"],["KTM_medium.yaml","ktm_medium"],["LACTOBACILLUS_PONTIS_MEDIUM.yaml","lactobacillus_pontis_medium"]]},{"id":"CHEBI:16857","l":"L-threonine","na":9,"nb":35,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.23","The Dicarboxylate/Amino Acid:Cation (Na+ or H+) Symporter (DAACS) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.42","The Hydroxy/Aromatic Amino Acid Permease (HAAAP) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"],["McAA_formate_No_pABA.yaml","McAA formate No pABA"],["Mops_medium.yaml","mops_medium"]]},{"id":"CHEBI:16704","l":"uridine","na":26,"nb":9,"a":[["EC%3A1.14.11.3","pyrimidine-deoxynucleoside 2'-dioxygenase"],["EC%3A2.4.2.2","pyrimidine-nucleoside phosphorylase"],["EC%3A2.4.2.3","uridine phosphorylase"],["EC%3A2.7.1.48","uridine/cytidine kinase"],["EC%3A3.2.2.3","uridine nucleosidase"],["EC%3A3.2.2.8","ribosylpyrimidine nucleosidase"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"]]},{"id":"CHEBI:18019","l":"L-lysine","na":8,"nb":32,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A2.A.53","The Sulfate Permease (SulP) Family"],["MCSA%3A746","L-peptidase"],["MCSA%3A786","peptidyl-Lys metalloendopeptidase"],["MCSA%3A597","ubiquitinyl hydrolase 1 (peptidase C12 type)"]],"b":[["Chamberlain_CDM.yaml","chamberlain_cdm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"],["McAA_formate_No_pABA.yaml","McAA formate No pABA"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"]]},{"id":"CHEBI:17562","l":"cytidine","na":25,"nb":8,"a":[["EC%3A2.7.1.213","cytidine kinase"],["EC%3A2.7.1.48","uridine/cytidine kinase"],["EC%3A3.1.3.91","7-methylguanosine nucleotidase"],["EC%3A3.2.2.8","ribosylpyrimidine nucleosidase"],["EC%3A3.5.1.135","N(4)-acetylcytidine amidohydrolase"],["EC%3A3.5.4.5","cytidine deaminase"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"]]},{"id":"CHEBI:17748","l":"thymidine","na":21,"nb":8,"a":[["EC%3A2.4.2.2","pyrimidine-nucleoside phosphorylase"],["EC%3A2.4.2.4","thymidine phosphorylase"],["EC%3A2.7.1.114","AMP--thymidine kinase"],["EC%3A2.7.1.118","ADP--thymidine kinase"],["EC%3A2.7.1.145","deoxynucleoside kinase"],["EC%3A2.7.1.21","thymidine kinase"]],"b":[["CHI_1776_MEDIUM.yaml","chi_1776_medium"],["MCD_Medium.yaml","mcd_medium"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"],["Soil_Defined_Media_%28SDM%29.yaml","Soil Defined Media (SDM)"],["cdm_lab_medium.yaml","cdm_lab_medium"],["cdm_teusink_et_al.yaml","cdm_teusink_et_al"]]},{"id":"CHEBI:16335","l":"adenosine","na":35,"nb":7,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16335","requires vitamin B12"],["EC%3A1.1.3.39","nucleoside oxidase (H2O2-forming)"],["EC%3A2.7.1.114","AMP--thymidine kinase"],["EC%3A2.7.1.20","adenosine kinase"],["EC%3A3.13.2.1","adenosylhomocysteinase"],["EC%3A3.13.2.3","(R)-S-adenosyl-L-methionine hydrolase (adenosine-forming)"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"]]},{"id":"CHEBI:30742","l":"ethylene glycol","na":7,"nb":21,"a":[["EC%3A3.1.1.102","mono(ethylene terephthalate) hydrolase"],["RHEA%3A42648","(2,5-ethylene furandicarboxylate)(n) + 2 H2O = (2,5-ethylene furandicarboxylate)(n-1) + 2,5-dicarboxyfuran + ethylene glycol + 2 H(+)"],["RHEA%3A49532","4-[(2-hydroxyethoxy)carbonyl]benzoate + H2O = terephthalate + ethylene glycol + H(+)"],["RHEA%3A80759","bis(2-hydroxyethyl) terephthalate + H2O = 4-[(2-hydroxyethoxy)carbonyl]benzoate + ethylene glycol + H(+)"],["RHEA%3A27630","ethylene glycol + NAD(+) = glycolaldehyde + NADH + H(+)"],["MCSA%3A847","epoxide hydrolase"]],"b":[["acetobacterium_medium_marine.yaml","acetobacterium_medium_marine"],["bm_in_arabinose_hodgson_et_al.yaml","bm_in_arabinose_hodgson_et_al"],["bm_in_cellobiose_hodgson_et_al.yaml","bm_in_cellobiose_hodgson_et_al"],["bm_in_fructose_hodgson_et_al.yaml","bm_in_fructose_hodgson_et_al"],["bm_in_galactose_hodgson_et_al.yaml","bm_in_galactose_hodgson_et_al"],["bm_in_glucose_hodgson_et_al.yaml","bm_in_glucose_hodgson_et_al"]]},{"id":"CHEBI:17578","l":"toluene","na":13,"nb":7,"a":[["EC%3A1.14.12.11","toluene dioxygenase"],["EC%3A1.14.13.236","toluene 4-monooxygenase"],["EC%3A1.14.13.243","toluene 2-monooxygenase"],["EC%3A1.14.15.26","toluene methyl-monooxygenase"],["EC%3A4.1.1.119","phenylacetate decarboxylase"],["EC%3A4.1.99.11","benzylsuccinate synthase"]],"b":[["FRESHWATER_MEDIUM_WITH_TOLUENE.yaml","freshwater_medium_with_toluene"],["GEORGFUCHSIA_MEDIUM.yaml","georgfuchsia_medium"],["Modified_m9_with_toluene.yaml","modified_m9_with_toluene"],["defined_freshwater_medium_cocl2__6b305113.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__35d08dce.yaml","defined_freshwater_medium_coso4"],["freshwater_medium_with_toluene__185c443d.yaml","freshwater_medium_with_toluene"]]},{"id":"CHEBI:506227","l":"N-acetyl-D-glucosamine","na":44,"nb":6,"a":[["EC%3A1.1.3.29","N-acylhexosamine oxidase"],["EC%3A2.3.1.3","glucosamine N-acetyltransferase"],["EC%3A2.4.1.211","1,3-beta-galactosyl-N-acetylhexosamine phosphorylase"],["EC%3A2.4.1.280","N,N'-diacetylchitobiose phosphorylase"],["EC%3A2.4.1.320","1,4-beta-mannosyl-N-acetylglucosamine phosphorylase"],["EC%3A2.4.1.90","N-acetyllactosamine synthase"]],"b":[["ANAEROBACCA_MEDIUM.yaml","anaerobacca_medium"],["BSK_MEDIUM.yaml","bsk_medium"],["NATRONOARCHAEA_MEDIUM_WITH_GLUCOSAMINE.yaml","natronoarchaea_medium_with_glucosamine"],["barbour_sfoenner_kelly_bsk_ii_medium.yaml","barbour_sfoenner_kelly_bsk_ii_medium"],["m30__354deb2e.yaml","m30"],["modified_bsk_medium__578ddf1c.yaml","modified_bsk_medium"]]},{"id":"CHEBI:24996","l":"lactate","na":23,"nb":6,"a":[["EC%3A1.1.1.436","lactate dehydrogenase (NAD(+),ferredoxin)"],["EC%3A3.5.1.124","protein deglycase"],["RHEA%3A57300","an N(2)-(1-hydroxy-2-oxopropyl)-2'-deoxyguanosine in DNA + H2O = a 2'-deoxyguanosine in DNA + lactate + H(+)"],["RHEA%3A57288","an N(2)-(1-hydroxy-2-oxopropyl)-guanosine in RNA + H2O = a guanosine in RNA + lactate + H(+)"],["RHEA%3A46964","lactate + 2 reduced [2Fe-2S]-[ferredoxin] + 2 NAD(+) = 2 oxidized [2Fe-2S]-[ferredoxin] + pyruvate + 2 NADH"],["RHEA%3A57244","N(2)-(1-hydroxy-2-oxopropyl)-dGTP + H2O = lactate + dGTP + H(+)"]],"b":[["ARCOBACTER_ANAEROPHILUS_MEDIUM.yaml","arcobacter_anaerophilus_medium"],["defined_freshwater_medium_cocl2__f0ffbcc6.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__41b1d433.yaml","defined_freshwater_medium_coso4"],["fermentation_medium_lactate_nh4cl.yaml","fermentation_medium_lactate_nh4cl"],["modified_m1_medium_with_20_mm_lactate_pinchuk_et_al.yaml","modified_m1_medium_with_20_mm_lactate_pinchuk_et_al"],["modified_m1_medium_with_lactate_and_glycine_no_nh4cl.yaml","modified_m1_medium_with_lactate_and_glycine_no_nh4cl"]]},{"id":"CHEBI:22653","l":"asparagine","na":6,"nb":21,"a":[["TCDB%3A2.A.25","The Alanine or Glycine:Cation Symporter (AGCS) Family"],["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.13","The C4-Dicarboxylate Uptake (Dcu) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["CDM_LP.yaml","cdm_lp"],["HALOACTINOMYCES_HALOPHILUS_MEDIUM.yaml","haloactinomyces_halophilus_medium"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["MYKORRHIZA_MEDIUM.yaml","mykorrhiza_medium"]]},{"id":"CHEBI:28645","l":"beta-D-fructofuranose","na":6,"nb":20,"a":[["EC%3A2.7.1.3","ketohexokinase"],["EC%3A3.2.1.48","sucrose alpha-glucosidase"],["RHEA%3A18145","beta-D-fructose + ATP = beta-D-fructose 1-phosphate + ADP + H(+)"],["RHEA%3A33791","sucrose 6(F)-phosphate + H2O = beta-D-fructose + beta-D-glucose 6-phosphate"],["RHEA%3A33795","sucrose + H2O = beta-D-fructose + alpha-D-glucose"],["proteintraitsmech%3ABIOLIP_FRU","FRU-binding site"]],"b":[["Clostridium_medium.yaml","clostridium_medium"],["FYP_medium.yaml","fyp_medium"],["Green_Sulfur_Bacterium_Medium.yaml","green_sulfur_bacterium_medium"],["Liquid_Fermentation_Medium.yaml","liquid_fermentation_medium"],["M1D_Medium.yaml","m1d_medium"],["MOORELLA_AN10_MEDIUM.yaml","moorella_an10_medium"]]},{"id":"CHEBI:18246","l":"(1->4)-beta-D-glucan","na":6,"nb":15,"a":[["EC%3A2.4.1.12","cellulose synthase (UDP-forming)"],["EC%3A2.4.1.29","cellulose synthase (GDP-forming)"],["EC%3A2.4.1.49","cellodextrin phosphorylase"],["RHEA%3A17797","[(1->4)-beta-D-glucosyl](n) + GDP-alpha-D-glucose = [(1->4)-beta-D-glucosyl](n+1) + GDP + H(+)"],["RHEA%3A23024","[(1->4)-beta-D-glucosyl](n) + phosphate = [(1->4)-beta-D-glucosyl](n-1) + alpha-D-glucose 1-phosphate"],["RHEA%3A19929","[(1->4)-beta-D-glucosyl](n) + UDP-alpha-D-glucose = [(1->4)-beta-D-glucosyl](n+1) + UDP + H(+)"]],"b":[["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["CLOSTRIDIUM_CELLULOVORANS_MEDIUM.yaml","clostridium_cellulovorans_medium"],["Clostridium_Cellulolytic_medium.yaml","clostridium_cellulolytic_medium"],["HALOCELLA_CELLULOLYTICA_MEDIUM.yaml","halocella_cellulolytica_medium"],["RUMINICLOSTRIDIUM_CELLOBIOPARUM_MEDIUM.yaml","ruminiclostridium_cellobioparum_medium"],["RUMINICLOSTRIDIUM_PAPYROSOLVENS_MEDIUM.yaml","ruminiclostridium_papyrosolvens_medium"]]},{"id":"CHEBI:17439","l":"cyanocob(III)alamin","na":5,"nb":187,"a":[["EC%3A1.16.1.6","cyanocobalamin reductase"],["RHEA%3A16113","2 cob(II)alamin-[cyanocobalamin reductase] + 2 hydrogen cyanide + NADP(+) = 2 cyanocob(III)alamin + 2 apo-[cyanocobalamin reductase] + NADPH + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["TCDB%3A9.B.87","The Selenoprotein P Receptor (SelP-Receptor) Family"]],"b":[["2ASW.yaml","2asw"],["2asw__59e92e67.yaml","2asw"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["3n_bbm_v_recipe_for_customer_orders.yaml","3n_bbm_v_recipe_for_customer_orders"],["ACY.yaml","ACY"],["ALP_defined.yaml","ALP defined"]]},{"id":"CHEBI:16750","l":"guanosine","na":19,"nb":5,"a":[["EC%3A2.4.2.1","purine-nucleoside phosphorylase"],["EC%3A2.4.2.15","guanosine phosphorylase"],["EC%3A2.7.1.73","inosine kinase"],["EC%3A3.5.4.15","guanosine deaminase"],["RHEA%3A27862","3'-GMP + H2O = guanosine + phosphate"],["RHEA%3A27714","GMP + H2O = guanosine + phosphate"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:18107","l":"xanthosine","na":9,"nb":5,"a":[["EC%3A2.1.1.158","7-methylxanthosine synthase"],["EC%3A2.4.2.1","purine-nucleoside phosphorylase"],["EC%3A3.5.4.15","guanosine deaminase"],["RHEA%3A12861","guanosine + H2O + H(+) = xanthosine + NH4(+)"],["RHEA%3A27994","xanthosine + H2O = D-ribose + xanthine"],["RHEA%3A28939","xanthosine(in) + H(+)(in) = xanthosine(out) + H(+)(out)"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:16634","l":"raffinose","na":8,"nb":5,"a":[["EC%3A2.4.1.166","raffinose--raffinose alpha-galactosyltransferase"],["EC%3A2.4.1.67","galactinol--raffinose galactosyltransferase"],["EC%3A2.4.1.82","galactinol--sucrose galactosyltransferase"],["RHEA%3A14125","2 raffinose = 1(F)-alpha-D-galactosylraffinose + sucrose"],["RHEA%3A20776","alpha-D-galactosyl-(1->3)-1D-myo-inositol + raffinose = stachyose + myo-inositol"],["RHEA%3A20161","alpha-D-galactosyl-(1->3)-1D-myo-inositol + sucrose = raffinose + myo-inositol"]],"b":[["MYXOCOCCUS_FLAVESCENS_MEDIUM.yaml","myxococcus_flavescens_medium"],["Modified_SP_Medium.yaml","modified_sp_medium"],["SP_Medium.yaml","sp_medium"],["myxococcus_flavescens_medium__aa6b37a2.yaml","myxococcus_flavescens_medium"],["sp_medium__3b598fd8.yaml","sp_medium"]]},{"id":"CHEBI:16865","l":"gamma-aminobutyric acid","na":5,"nb":6,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A2.A.42","The Hydroxy/Aromatic Amino Acid Permease (HAAAP) Family"],["TCDB%3A2.A.22","The Neurotransmitter:Sodium Symporter (NSS) Family"],["proteintraitsmech%3ABIOLIP_ABU","ABU-binding site"]],"b":[["CLOSTRIDIUM_AMINOBUTYRICUM_MEDIUM.yaml","clostridium_aminobutyricum_medium"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:28911","l":"cob(III)alamin","na":6,"nb":5,"a":[["RHEA%3A81907","(2R,3R,5R)-2-(S-pantetheinyl)-carbapenam-3-carboxylate + methylcob(III)alamin + S-adenosyl-L-methionine = (2R,3R,5S,6R)-6-(methyl)-2-(S-pantetheinyl)-carbapenam-3-carboxylate + cob(III)alamin + 5'-deoxyadenosine + L-methionine"],["RHEA%3A81911","(2R,3R,5S,6R)-6-(methyl)-2-(S-pantetheinyl)-carbapenam-3-carboxylate + methylcob(III)alamin + S-adenosyl-L-methionine = (2R,3R,5S,6R)-6-(ethyl)-2-(S-pantetheinyl)-carbapenam-3-carboxylate + cob(III)alamin + 5'-deoxyadenosine + L-methionine"],["RHEA%3A76471","cob(III)alamin + AH2 = cob(I)alamin + A + 2 H(+)"],["RHEA%3A81883","cytidine 5'-{[hydroxy(2-hydroxyethyl)phosphonoyl]phosphate} + methylcob(III)alamin + S-adenosyl-L-methionine = cytidine 5'-({hydroxy[(S)-2-hydroxypropyl]phosphonoyl}phosphate) + cob(III)alamin + 5'-deoxyadenosine + L-methionine"],["RHEA%3A77223","gentamicin X2 + methylcob(III)alamin + S-adenosyl-L-methionine = geneticin + cob(III)alamin + 5'-deoxyadenosine + L-methionine"],["RHEA%3A81891","N-acetyl-demethyl-L-phosphinothricin + methylcob(III)alamin + S-adenosyl-L-methionine = N-acetyl-L-phosphinothricin + cob(III)alamin + 5'-deoxyadenosine + L-methionine"]],"b":[["MEDIUM_for_SM250.yaml","medium_for_sm250"],["Medium_YCFAGSC.yaml","medium_ycfagsc"],["Medium_for_Freshwater_Flexibacteria.yaml","medium_for_freshwater_flexibacteria"],["Standard_PETC_medium.yaml","standard_petc_medium"],["YCFAG_medium.yaml","ycfag_medium"]]},{"id":"CHEBI:17191","l":"L-isoleucine","na":4,"nb":65,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.26","The Branched Chain Amino Acid:Cation Symporter (LIVCS) Family"],["proteintraitsmech%3ABIOLIP_ILE","ILE-binding site"]],"b":[["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["CTM_MEDIUM.yaml","ctm_medium"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MCD_Medium.yaml","mcd_medium"]]},{"id":"CHEBI:17879","l":"4-hydroxybenzoate","na":57,"nb":4,"a":[["EC%3A1.13.11.41","2,4'-dihydroxyacetophenone dioxygenase"],["EC%3A1.14.13.2","4-hydroxybenzoate 3-monooxygenase"],["EC%3A1.14.13.33","4-hydroxybenzoate 3-monooxygenase [NAD(P)H]"],["EC%3A1.14.13.64","4-hydroxybenzoate 1-hydroxylase"],["EC%3A1.14.14.92","benzoate 4-monooxygenase"],["EC%3A1.14.19.55","4-hydroxybenzoate brominase (decarboxylating)"]],"b":[["DIETHYL_PHOSPHONATE_MEDIUM.yaml","diethyl_phosphonate_medium"],["defined_freshwater_medium_cocl2__140b53e4.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__7cf7eff3.yaml","defined_freshwater_medium_coso4"],["nutrient_medium_p_hydroxybenzoate.yaml","nutrient_medium_p_hydroxybenzoate"]]},{"id":"CHEBI:16870","l":"choline alfoscerate","na":48,"nb":4,"a":[["EC%3A3.1.1.5","lysophospholipase"],["EC%3A3.1.4.2","glycerophosphocholine phosphodiesterase"],["EC%3A3.1.4.38","glycerophosphocholine cholinephosphodiesterase"],["EC%3A3.3.2.2","lysoplasmalogenase"],["RHEA%3A40835","1,2-di-(9Z-octadecenoyl)-sn-glycero-3-phosphocholine + 2 H2O = sn-glycerol 3-phosphocholine + 2 (9Z)-octadecenoate + 2 H(+)"],["RHEA%3A40975","1,2-dihexadecanoyl-sn-glycero-3-phosphocholine + 2 H2O = sn-glycerol 3-phosphocholine + 2 hexadecanoate + 2 H(+)"]],"b":[["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:18050","l":"L-glutamine","na":4,"nb":42,"a":[["MCSA%3A596","deuterolysin"],["MCSA%3A477","picornain 3C"],["MCSA%3A763","picornain 3C"],["proteintraitsmech%3ABIOLIP_GLN","GLN-binding site"]],"b":[["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"],["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"],["GLUTAMINE_MEDIUM.yaml","glutamine_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"]]},{"id":"CHEBI:17115","l":"L-serine","na":4,"nb":41,"a":[["MCSA%3A609","alpha-lytic endopeptidase"],["MCSA%3A238","assemblin"],["MCSA%3A688","classical-complement-pathway C3/C5 convertase"],["proteintraitsmech%3ABIOLIP_SER","SER-binding site"]],"b":[["AMINOMONAS_MEDIUM.yaml","aminomonas_medium"],["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"]]},{"id":"CHEBI:17925","l":"alpha-D-glucose","na":35,"nb":4,"a":[["EC%3A2.4.1.231","alpha,alpha-trehalose phosphorylase (configuration-retaining)"],["EC%3A3.1.3.58","sugar-terminal-phosphatase"],["EC%3A3.1.3.9","glucose-6-phosphatase"],["EC%3A3.2.1.10","oligo-1,6-glucosidase"],["EC%3A3.2.1.219","palatinase"],["EC%3A3.2.1.28","alpha,alpha-trehalase"]],"b":[["CDMM.yaml","cdmm"],["MDM.yaml","mdm"],["MM3.yaml","mm3"],["tsb_glucose_medium.yaml","tsb_glucose_medium"]]},{"id":"CHEBI:28869","l":"menadione","na":4,"nb":34,"a":[["RHEA%3A35611","menadiol + 2 O2 = menadione + 2 superoxide + 2 H(+)"],["RHEA%3A69695","menadione + NADH + H(+) = menadiol + NAD(+)"],["RHEA%3A63492","menadione + NADPH + H(+) = menadiol + NADP(+)"],["proteintraitsmech%3ABIOLIP_VK3","VK3-binding site"]],"b":[["ABB.yaml","ABB"],["ACY.yaml","ACY"],["BGDM.yaml","bgdm"],["BHIS.yaml","bhis"],["BHIS_K3.yaml","BHIS_K3"],["BHIS_K3_noGlucose.yaml","BHIS_K3_noGlucose"]]},{"id":"CHEBI:15882","l":"phenol","na":31,"nb":4,"a":[["EC%3A1.14.13.244","phenol 2-monooxygenase (NADH)"],["EC%3A1.14.13.7","phenol 2-monooxygenase (NADPH)"],["EC%3A1.14.14.20","phenol 2-monooxygenase (FADH2)"],["EC%3A2.1.1.25","phenol O-methyltransferase"],["EC%3A2.4.2.55","nicotinate D-ribonucleotide:phenol phospho-D-ribosyltransferase"],["EC%3A2.7.1.238","phenol phosphorylase"]],"b":[["MEDIUM_FOR_BACILLUS_STEAROTHERMOPHILUS.yaml","medium_for_bacillus_stearothermophilus"],["anaerobic_bicarbonate_buffered_medium_with_phenol.yaml","anaerobic_bicarbonate_buffered_medium_with_phenol"],["defined_freshwater_medium_cocl2__ac506908.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__0930ab53.yaml","defined_freshwater_medium_coso4"]]},{"id":"CHEBI:28262","l":"dimethyl sulfoxide","na":14,"nb":4,"a":[["EC%3A1.14.13.245","assimilatory dimethylsulfide S-monooxygenase"],["EC%3A1.8.1.17","dimethylsulfone reductase"],["EC%3A1.8.2.4","dimethyl sulfide:cytochrome c2 reductase"],["EC%3A1.8.5.3","respiratory dimethylsulfoxide reductase"],["RHEA%3A30587","2-demethylmenaquinol-8 + dimethyl sulfoxide = 2-demethylmenaquinone-8 + dimethyl sulfide + H2O"],["RHEA%3A30227","2 Fe(III)-[cytochrome c2] + dimethyl sulfide + H2O = 2 Fe(II)-[cytochrome c2] + dimethyl sulfoxide + 2 H(+)"]],"b":[["MINERAL_MEDIUM_WITH_DIBENZOFURAN.yaml","mineral_medium_with_dibenzofuran"],["SYNBIOBACTERIUM_KA13_MEDIUM.yaml","synbiobacterium_ka13_medium"],["mineral_medium_with_2_chlorobenzoate.yaml","mineral_medium_with_2_chlorobenzoate"],["synbiobacterium_ka13_medium__e7f47e80.yaml","synbiobacterium_ka13_medium"]]},{"id":"CHEBI:16856","l":"glutathione","na":4,"nb":11,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16856","requires glutathione"],["MCSA%3A359","lactoglutathione lyase"],["MCSA%3A32","lactoylglutathione lyase"],["proteintraitsmech%3ABIOLIP_GSH","GSH-binding site"]],"b":[["CDM_LP.yaml","cdm_lp"],["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"],["Modified_D58_medium.yaml","modified_d58_medium"],["SULFOBACILLUS_DISULFIDOOXIDANS_MEDIUM.yaml","sulfobacillus_disulfidooxidans_medium"],["clostridium_thermocellum_medium__d9fc1f82.yaml","clostridium_thermocellum_medium"]]},{"id":"CHEBI:9532","l":"thiamine(1+) diphosphate","na":8,"nb":4,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_9532","requires thiamine(1+) diphosphate"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["CTM_MEDIUM.yaml","ctm_medium"],["MODIFIED_NOS_MEDIUM.yaml","modified_nos_medium"],["TREPONEMA_ISOPTEROCOLA_MEDIUM.yaml","treponema_isopterocola_medium"],["glucose_sulfide_medium__486fbf43.yaml","glucose_sulfide_medium"]]},{"id":"CHEBI:17015","l":"riboflavin","na":3,"nb":1290,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17015","requires riboflavin"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_RBF","RBF-binding site"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"]]},{"id":"CHEBI:27470","l":"folic acid","na":3,"nb":1262,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_27470","requires folic acid"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["proteintraitsmech%3ABIOLIP_FOL","FOL-binding site"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2ASW.yaml","2asw"]]},{"id":"CHEBI:16113","l":"cholesterol","na":82,"nb":3,"a":[["EC%3A1.1.3.6","cholesterol oxidase"],["EC%3A1.14.14.23","cholesterol 7alpha-monooxygenase"],["EC%3A1.14.14.25","cholesterol 24-hydroxylase"],["EC%3A1.14.15.6","cholesterol monooxygenase (side-chain-cleaving)"],["EC%3A1.14.19.21","cholesterol 7-desaturase"],["EC%3A1.14.99.38","cholesterol 25-monooxygenase"]],"b":[["CDM_LP.yaml","cdm_lp"],["Nematode_growth_medium_agar.yaml","Nematode growth medium agar"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:16015","l":"L-glutamic acid","na":3,"nb":73,"a":[["MCSA%3A747","gamma-glutamyl hydrolase"],["proteintraitsmech%3ABIOLIP_GGL","GGL-binding site"],["proteintraitsmech%3ABIOLIP_GLU","GLU-binding site"]],"b":[["7H9.yaml","7H9"],["BACTO_MIDDLEBROOK_7H9_BROTH.yaml","bacto_middlebrook_7h9_broth"],["BGDM.yaml","bgdm"],["Bacillus_Medium.yaml","bacillus_medium"],["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"]]},{"id":"CHEBI:16643","l":"L-methionine","na":3,"nb":68,"a":[["MCSA%3A917","methionyl aminopeptidase"],["MCSA%3A965","Viperin"],["proteintraitsmech%3ABIOLIP_MET","MET-binding site"]],"b":[["Basic_mineral_medium.yaml","basic_mineral_medium"],["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MDM.yaml","mdm"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"]]},{"id":"CHEBI:17295","l":"L-phenylalanine","na":3,"nb":63,"a":[["MCSA%3A595","scytalidopepsin B"],["MCSA%3A598","streptopain"],["proteintraitsmech%3ABIOLIP_PHE","PHE-binding site"]],"b":[["BGDM.yaml","bgdm"],["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["CTM_MEDIUM.yaml","ctm_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["M9_minimal_media_aromix_noCarbon.yaml","M9 minimal media aromix noCarbon"]]},{"id":"CHEBI:16467","l":"L-arginine","na":3,"nb":51,"a":[["MCSA%3A688","classical-complement-pathway C3/C5 convertase"],["MCSA%3A425","plasmin"],["MCSA%3A798","t-plasminogen activator"]],"b":[["ABB.yaml","ABB"],["ACY.yaml","ACY"],["CAENICOLA_MOBILE_MEDIUM.yaml","caenicola_mobile_medium"],["CMM.yaml","cmm"],["CTM_MEDIUM.yaml","ctm_medium"],["Chamberlain_CDM.yaml","chamberlain_cdm"]]},{"id":"CHEBI:17203","l":"L-proline","na":3,"nb":48,"a":[["MCSA%3A403","astacin"],["MCSA%3A379","Xaa-Pro aminopeptidase"],["proteintraitsmech%3ABIOLIP_PRO","PRO-binding site"]],"b":[["CDM_LP.yaml","cdm_lp"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MDM.yaml","mdm"],["MEIOTHERMUS_MEDIUM_R8.yaml","meiothermus_medium_r8"]]},{"id":"CHEBI:18135","l":"catechol","na":47,"nb":3,"a":[["EC%3A1.1.3.14","catechol oxidase (dimerizing)"],["EC%3A1.10.3.1","catechol oxidase"],["EC%3A1.13.11.1","catechol 1,2-dioxygenase"],["EC%3A1.13.11.2","catechol 2,3-dioxygenase"],["EC%3A1.14.12.1","anthranilate 1,2-dioxygenase (deaminating, decarboxylating)"],["EC%3A1.14.12.13","2-halobenzoate 1,2-dioxygenase"]],"b":[["DESULFOBACTERIUM_CATECHOLICUM_MEDIUM.yaml","desulfobacterium_catecholicum_medium"],["DESULFOCASTAENA_MEDIUM.yaml","desulfocastaena_medium"],["desulfobacterium_catecholicum_medium__b7c6198a.yaml","desulfobacterium_catecholicum_medium"]]},{"id":"CHEBI:17053","l":"L-aspartic acid","na":3,"nb":21,"a":[["MCSA%3A718","caspase-1"],["MCSA%3A599","dipeptidase E"],["proteintraitsmech%3ABIOLIP_ASP","ASP-binding site"]],"b":[["CTM_MEDIUM.yaml","ctm_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["McAA_formate_No_pABA.yaml","McAA formate No pABA"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"]]},{"id":"CHEBI:15595","l":"malate(2-)","na":15,"nb":3,"a":[["RHEA%3A72015","malate + 6 malonyl-CoA + acetyl-CoA + 2 AH2 + 2 S-adenosyl-L-methionine + 5 NADPH + 9 H(+) = trihazone A + 2 A + 2 S-adenosyl-L-homocysteine + 6 CO2 + 5 NADP(+) + 7 CoA + 6 H2O"],["RHEA%3A72295","malate(out) + 3 Na(+)(out) = malate(in) + 3 Na(+)(in)"],["TCDB%3A2.A.24","The 2-Hydroxycarboxylate Transporter (2-HCT) Family"],["TCDB%3A2.A.85","The Aromatic Acid Exporter (ArAE) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.69","The Auxin Efflux Carrier (AEC) Family"]],"b":[["HETEROTROPHIC_MEDIUM_H3P.yaml","heterotrophic_medium_h3p"],["diazotrophic_medium_rba.yaml","diazotrophic_medium_rba"],["rhodobacter_marinus_medium_nkpb.yaml","rhodobacter_marinus_medium_nkpb"]]},{"id":"CHEBI:15846","l":"NAD(+)","na":14,"nb":3,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15846","requires NAD+"],["ARO%3A3002846","arr-1"],["ARO%3A3002847","arr-2"],["ARO%3A3002848","arr-3"],["ARO%3A3002849","arr-4"],["ARO%3A3002850","arr-5"]],"b":[["Vulcanimicrobium_alpinus_medium.yaml","vulcanimicrobium_alpinus_medium"],["ctm_medium__057c0b18.yaml","ctm_medium"],["treponema_isopterocola_medium__e7b07692.yaml","treponema_isopterocola_medium"]]},{"id":"CHEBI:18237","l":"glutamic acid","na":3,"nb":13,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["ACANTHAMOEBA_MEDIUM.yaml","acanthamoeba_medium"],["HALISCOMENOBACTER_MEDIUM.yaml","haliscomenobacter_medium"],["LENTIBACILLUS_MEDIUM.yaml","lentibacillus_medium"],["McAA_formate_No_pABA.yaml","McAA formate No pABA"],["NATRONOBACTERIUM_MEDIUM.yaml","natronobacterium_medium"],["PSA_medium.yaml","psa_medium"]]},{"id":"CHEBI:30911","l":"glucitol","na":3,"nb":11,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A4.A.4","The PTS Glucitol (Gut) Family"]],"b":[["M1D_Medium.yaml","m1d_medium"],["Modified_Rhodobacter_Spaeroides_Medium.yaml","modified_rhodobacter_spaeroides_medium"],["RHODOBACTER_SPHAEROIDES_MEDIUM.yaml","rhodobacter_sphaeroides_medium"],["RHODOBIUM_GOKURNUM_MEDIUM.yaml","rhodobium_gokurnum_medium"],["RHODOVULUM_MARINUM_MEDIUM.yaml","rhodovulum_marinum_medium"],["RHODOVULUM_VISAKHUM_MEDIUM.yaml","rhodovulum_visakhum_medium"]]},{"id":"CHEBI:22599","l":"arabinose","na":5,"nb":3,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.B.142","The Integral membrane Glycosyltransferase family 39 (GT39) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A9.B.28","The Putative Essential Component of the MusEFGKI ABC Transporter, MusI (MusI) Family"],["TCDB%3A2.A.21","The Solute:Sodium Symporter (SSS) Family"]],"b":[["MAG_Modified_arabinose_gluconate_medium.yaml","mag_modified_arabinose_gluconate_medium"],["mrs_medium__1506cddd.yaml","mrs_medium"],["togo_medium_m1594.yaml","togo_medium_m1594"]]},{"id":"CHEBI:16238","l":"FAD","na":4,"nb":3,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16238","requires FAD"],["MCSA%3A968","aldehyde oxidase"],["MCSA%3A969","Phytoene desaturase (lycopene-forming)"],["proteintraitsmech%3ABIOLIP_FAD","FAD-binding site"]],"b":[["HELMUTKOENIGIA_MEDIUM.yaml","helmutkoenigia_medium"],["TREPONEMA_ISOPTEROCOLA_MEDIUM.yaml","treponema_isopterocola_medium"],["treponema_isopterocola_medium__e7b07692.yaml","treponema_isopterocola_medium"]]},{"id":"CHEBI:16482","l":"naphthalene","na":3,"nb":3,"a":[["EC%3A1.14.12.12","naphthalene 1,2-dioxygenase"],["RHEA%3A19173","naphthalene + NADH + O2 + H(+) = (1R,2S)-1,2-dihydronaphthalene-1,2-diol + NAD(+)"],["MCSA%3A130","naphthalene 1,2-dioxygenase"]],"b":[["DESULFOBACTERIUM_NAPHTHALENIVOLANS_MEDIUM.yaml","desulfobacterium_naphthalenivolans_medium"],["LB_Medium_with_50_ppm_Naphthalene.yaml","lb_medium_with_50_ppm_naphthalene"],["desulfobacterium_naphthalenivolans_medium__c96254de.yaml","desulfobacterium_naphthalenivolans_medium"]]},{"id":"CHEBI:32816","l":"pyruvic acid","na":3,"nb":3,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_32816","requires pyruvic acid"],["MCSA%3A449","cystathionine beta-lyase"],["proteintraitsmech%3ABIOLIP_PYR","PYR-binding site"]],"b":[["ALGORIPHAGUS_ALKALIPHILUS_MEDIUM.yaml","algoriphagus_alkaliphilus_medium"],["modified_mrs.yaml","modified_mrs"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:15956","l":"biotin","na":2,"nb":1645,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15956","requires biotin"],["proteintraitsmech%3ABIOLIP_BTN","BTN-binding site"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2ASW.yaml","2asw"]]},{"id":"CHEBI:15940","l":"nicotinic acid","na":2,"nb":1433,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15940","requires nicotinic acid"],["proteintraitsmech%3ABIOLIP_NIO","NIO-binding site"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2ASW.yaml","2asw"],["2asw__59e92e67.yaml","2asw"]]},{"id":"CHEBI:30753","l":"4-aminobenzoic acid","na":2,"nb":1350,"a":[["TCDB%3A2.A.71","The Folate-Biopterin Transporter (FBT) Family"],["proteintraitsmech%3ABIOLIP_PAB","PAB-binding site"]],"b":[["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["A1_MARINE_MEDIUM.yaml","a1_marine_medium"]]},{"id":"CHEBI:17883","l":"hydrogen chloride","na":2,"nb":574,"a":[["MCSA%3A24","4-chlorobenzoyl-CoA dehalogenase"],["MCSA%3A348","chloromuconate cycloisomerase"]],"b":[["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_tryptic_soy_broth_anaerobe.yaml","1_2_tryptic_soy_broth_anaerobe"],["1_2_tryptic_soy_broth_anaerobic.yaml","1_2_tryptic_soy_broth_anaerobic"],["5_sorbitol_medium__c395a410.yaml","5_sorbitol_medium"],["ACETIVIBRIO_ALKALICELLULOSI_MEDIUM.yaml","acetivibrio_alkalicellulosi_medium"]]},{"id":"CHEBI:4735","l":"ethylenediaminetetraacetic acid","na":2,"nb":237,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["proteintraitsmech%3ABIOLIP_EDT","EDT-binding site"]],"b":[["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["ACIDOSOMA_MEDIUM.yaml","acidosoma_medium"],["ALCALIGENES_XYLOSOXYDANS_MEDIUM_WITH_BENZOATE.yaml","alcaligenes_xylosoxydans_medium_with_benzoate"],["ALLOCATENOCOCCUS_MEDIUM.yaml","allocatenococcus_medium"],["ANB_aerobic.yaml","anb_aerobic"],["AQUASPIRILLUM_MEDIUM.yaml","aquaspirillum_medium"]]},{"id":"CHEBI:57912","l":"L-tryptophan zwitterion","na":103,"nb":2,"a":[["EC%3A1.11.2.8","L-tryptophan 5-peroxygenase"],["EC%3A1.13.11.11","tryptophan 2,3-dioxygenase"],["EC%3A1.13.11.52","indoleamine 2,3-dioxygenase"],["EC%3A1.13.12.3","tryptophan 2-monooxygenase"],["EC%3A1.13.99.3","tryptophan 2'-dioxygenase"],["EC%3A1.14.14.156","tryptophan N-monooxygenase"]],"b":[["acidaminococcus_fermentans_medium__d515a0ab.yaml","acidaminococcus_fermentans_medium"],["togo_medium_m1435.yaml","togo_medium_m1435"]]},{"id":"CHEBI:15354","l":"choline","na":78,"nb":2,"a":[["EC%3A1.1.3.17","choline oxidase"],["EC%3A1.1.99.1","choline dehydrogenase"],["EC%3A1.14.15.7","choline monooxygenase"],["EC%3A2.3.1.6","choline O-acetyltransferase"],["EC%3A2.3.1.91","sinapoylglucose--choline O-sinapoyltransferase"],["EC%3A2.7.1.32","choline kinase"]],"b":[["CDM_LP.yaml","cdm_lp"],["HYPHOMICROBIUM_METHYLOVORUM_MEDIUM.yaml","hyphomicrobium_methylovorum_medium"]]},{"id":"CHEBI:17196","l":"L-asparagine","na":2,"nb":74,"a":[["MCSA%3A596","deuterolysin"],["proteintraitsmech%3ABIOLIP_ASN","ASN-binding site"]],"b":[["Alkali_B_medium.yaml","alkali_b_medium"],["CELLULOSE_AGAR.yaml","cellulose_agar"],["CMM.yaml","cmm"],["CTM_MEDIUM.yaml","ctm_medium"],["Glucose_Asparagine_Agar.yaml","glucose_asparagine_agar"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"]]},{"id":"CHEBI:16414","l":"L-valine","na":2,"nb":60,"a":[["MCSA%3A798","t-plasminogen activator"],["proteintraitsmech%3ABIOLIP_VAL","VAL-binding site"]],"b":[["CDM_LP.yaml","cdm_lp"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MCD_Medium.yaml","mcd_medium"],["MDM.yaml","mdm"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"]]},{"id":"CHEBI:326268","l":"1,4-butanediammonium","na":51,"nb":2,"a":[["EC%3A1.14.13.252","putrescine N-hydroxylase"],["EC%3A1.4.3.10","putrescine oxidase"],["EC%3A1.5.1.43","carboxynorspermidine synthase"],["EC%3A1.5.3.13","N(1)-acetylpolyamine oxidase"],["EC%3A1.5.3.17","non-specific polyamine oxidase"],["EC%3A2.1.1.53","putrescine N-methyltransferase"]],"b":[["veillonella_medium__a8952478.yaml","veillonella_medium"],["veillonella_medium__e057c5de.yaml","veillonella_medium"]]},{"id":"CHEBI:17905","l":"coenzyme M","na":2,"nb":40,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17905","requires coenzyme M"],["proteintraitsmech%3ABIOLIP_COM","COM-binding site"]],"b":[["ARCHAEOGLOBUS_INFECTUS_MEDIUM.yaml","archaeoglobus_infectus_medium"],["AROMATOLEUM_MEDIUM.yaml","aromatoleum_medium"],["BACILLUS_INFERNUS_MEDIUM.yaml","bacillus_infernus_medium"],["METHANOHALOPHILUS_PROFUNDI_MEDIUM.yaml","methanohalophilus_profundi_medium"],["METHANOMICROCOCCUS_MEDIUM.yaml","methanomicrococcus_medium"],["METHANONATRONARCHAEUM_MEDIUM.yaml","methanonatronarchaeum_medium"]]},{"id":"CHEBI:18320","l":"1,4-dithiothreitol","na":2,"nb":38,"a":[["EC%3A1.17.4.5","vitamin-K-epoxide reductase (warfarin-insensitive)"],["RHEA%3A21560","3-hydroxy-2-methyl-3-phytyl-2,3-dihydro-1,4-naphthoquinone + oxidized dithiothreitol = 1,4-dithiothreitol + 2,3-epoxyphylloquinone"]],"b":[["1_2_tryptic_soy_broth_anaerobe.yaml","1_2_tryptic_soy_broth_anaerobe"],["1_2_tryptic_soy_broth_anaerobic__d70593aa.yaml","1_2_tryptic_soy_broth_anaerobic"],["ARCHAEOGLOBUS_INFECTUS_MEDIUM.yaml","archaeoglobus_infectus_medium"],["ARCHAEOGLOBUS_NEPTUNIUS_MEDIUM.yaml","archaeoglobus_neptunius_medium"],["ARCHAEOGLOBUS_SULFATICALLIDUS_MEDIUM.yaml","archaeoglobus_sulfaticallidus_medium"],["CELLULOSILYTICUM_MEDIUM.yaml","cellulosilyticum_medium"]]},{"id":"CHEBI:17895","l":"L-tyrosine","na":2,"nb":29,"a":[["MCSA%3A638","neurolysin"],["proteintraitsmech%3ABIOLIP_TYR","TYR-binding site"]],"b":[["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"],["McAA_formate_No_pABA.yaml","McAA formate No pABA"],["NLDM_defined.yaml","NLDM_defined"]]},{"id":"CHEBI:30314","l":"(R)-lipoic acid","na":2,"nb":29,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_30314","requires (R)-lipoic acid"],["proteintraitsmech%3ABIOLIP_LPA","LPA-binding site"]],"b":[["A1_MEDIUM.yaml","a1_medium"],["CLOSTRIDIUM_THERMOCELLUM_MEDIUM.yaml","clostridium_thermocellum_medium"],["Chemically_defined_medium.yaml","chemically_defined_medium"],["Clostridium_aldrichii_medium.yaml","clostridium_aldrichii_medium"],["DESULFOMONILE_MEDIUM.yaml","desulfomonile_medium"],["JCM_medium_242.yaml","jcm_medium_242"]]},{"id":"CHEBI:28757","l":"fructose","na":2,"nb":27,"a":[["GO%3A0070061","fructose binding"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["ACETOBACTERIUM_MEDIUM.yaml","acetobacterium_medium"],["AQUINCOLA_MEDIUM.yaml","aquincola_medium"],["ARTFICIAL_FRESHWATER_MEDIUM_I.yaml","artficial_freshwater_medium_i"],["CLOSTRIDIUM_ACETATE_1_MEDIUM.yaml","clostridium_acetate_1_medium"],["DESULFOSPOROSINUS_ACIDOPHILUS_MEDIUM.yaml","desulfosporosinus_acidophilus_medium"],["EUBACTERIUM_AGGREGANS_MEDIUM.yaml","eubacterium_aggregans_medium"]]},{"id":"CHEBI:15366","l":"acetic acid","na":2,"nb":26,"a":[["MCSA%3A431","acetylxylan esterase"],["MCSA%3A996","Peptidoglycan-N-acetylglucosamine deacetylase Bc1960"]],"b":[["ACY.yaml","ACY"],["AE_BROTH.yaml","ae_broth"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Acetobacter_Europaeus_Medium.yaml","acetobacter_europaeus_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"]]},{"id":"CHEBI:29016","l":"arginine","na":2,"nb":26,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["ACIDAMINOCOCCUS_FERMENTANS_MEDIUM.yaml","acidaminococcus_fermentans_medium"],["EUBACTERIUM_LENTUM_MEDIUM.yaml","eubacterium_lentum_medium"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["MS15_Medium.yaml","ms15_medium"]]},{"id":"CHEBI:30772","l":"butyric acid","na":2,"nb":26,"a":[["MCSA%3A900","para-nitrobenzyl esterase"],["proteintraitsmech%3ABIOLIP_BUA","BUA-binding site"]],"b":[["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"],["Mega.yaml","Mega"],["RUMEN_BACTERIA_MEDIUM.yaml","rumen_bacteria_medium"],["SELENOMONAS_WG_MEDIUM.yaml","selenomonas_wg_medium"]]},{"id":"CHEBI:15824","l":"D-fructose","na":2,"nb":25,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"]],"b":[["ACETOBACTERIUM_FIMETARIUM_MEDIUM.yaml","acetobacterium_fimetarium_medium"],["ACETOBACTERIUM_TUNDRAE_MEDIUM.yaml","acetobacterium_tundrae_medium"],["ANAEROCOLUMNA_MEDIUM.yaml","anaerocolumna_medium"],["CLOSTRIDIUM_FORMICACETICUM_MEDIUM.yaml","clostridium_formicaceticum_medium"],["CLOSTRIDIUM_LJUNGDAHLII_MEDIUM.yaml","clostridium_ljungdahlii_medium"],["MOORELLA_THERMOACETICA_MEDIUM.yaml","moorella_thermoacetica_medium"]]},{"id":"CHEBI:16410","l":"pyridoxamine","na":2,"nb":21,"a":[["GO%3A0070281","pyridoxamine binding"],["proteintraitsmech%3ABIOLIP_PXM","PXM-binding site"]],"b":[["HALORHODOSPIRA_MEDIUM.yaml","halorhodospira_medium"],["MCD_Medium.yaml","mcd_medium"],["MEDIUM_FOR_ROSEOSPIRA.yaml","medium_for_roseospira"],["MEDIUM_WITH_EDTA_AS_CARBON_SOURCE.yaml","medium_with_edta_as_carbon_source"],["MINERAL_MEDIUM_WITH_SULFOBENZOIC_ACID.yaml","mineral_medium_with_sulfobenzoic_acid"],["MS10R_Medium.yaml","ms10r_medium"]]},{"id":"CHEBI:17924","l":"D-glucitol","na":20,"nb":2,"a":[["EC%3A1.1.1.14","L-iditol 2-dehydrogenase"],["EC%3A1.1.1.289","sorbose reductase"],["EC%3A1.1.3.40","D-mannitol oxidase"],["EC%3A1.1.99.21","D-sorbitol dehydrogenase (acceptor)"],["EC%3A1.1.99.28","glucose-fructose oxidoreductase"],["EC%3A2.7.1.198","protein-N(pi)-phosphohistidine--D-sorbitol phosphotransferase"]],"b":[["5_sorbitol_medium.yaml","5_sorbitol_medium"],["5_sorbitol_medium__c395a410.yaml","5_sorbitol_medium"]]},{"id":"CHEBI:15741","l":"succinic acid","na":2,"nb":16,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_SIN","SIN-binding site"]],"b":[["AQUASPIRILLUM_MEDIUM_II.yaml","aquaspirillum_medium_ii"],["DESULFUROBACTERIUM_MEDIUM.yaml","desulfurobacterium_medium"],["MAGNETOSPIRILLUM_MEDIUM.yaml","magnetospirillum_medium"],["MG_minimal_media.yaml","MG minimal media"],["MG_minimal_media_noIron.yaml","MG minimal media noIron"],["PETROBACTER_SUCCINIMANDENS_MEDIUM.yaml","petrobacter_succinimandens_medium"]]},{"id":"CHEBI:16450","l":"","na":14,"nb":2,"a":[["EC%3A1.14.11.10","pyrimidine-deoxynucleoside 1'-dioxygenase"],["EC%3A1.14.11.3","pyrimidine-deoxynucleoside 2'-dioxygenase"],["EC%3A2.4.2.2","pyrimidine-nucleoside phosphorylase"],["EC%3A3.5.4.5","cytidine deaminase"],["RHEA%3A13433","2'-deoxycytidine + H2O + H(+) = 2'-deoxyuridine + NH4(+)"],["RHEA%3A23316","2'-deoxyuridine + 2-oxoglutarate + O2 = 2-deoxy-D-ribono-1,4-lactone + uracil + succinate + CO2"]],"b":[["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"],["Soil_Defined_Media_%28SDM%29.yaml","Soil Defined Media (SDM)"]]},{"id":"CHEBI:17045","l":"dinitrogen oxide","na":13,"nb":2,"a":[["EC%3A1.7.1.14","nitric oxide reductase [NAD(P)(+), nitrous oxide-forming]"],["EC%3A1.7.2.4","nitrous-oxide reductase"],["EC%3A1.7.2.5","nitric-oxide reductase (cytochrome c)"],["EC%3A1.7.5.2","nitric oxide reductase (menaquinol)"],["RHEA%3A30215","a menaquinol + 2 nitric oxide = nitrous oxide + a menaquinone + H2O"],["RHEA%3A43108","N2 + 2 Fe(III)-[cytochrome c] + H2O = nitrous oxide + 2 Fe(II)-[cytochrome c] + 2 H(+)"]],"b":[["PM_N2O.yaml","PM N2O"],["PM_argon75_N2O25.yaml","PM argon75 N2O25"]]},{"id":"CHEBI:29073","l":"L-ascorbic acid","na":2,"nb":13,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29073","requires L-ascorbic acid"],["proteintraitsmech%3ABIOLIP_ASC","ASC-binding site"]],"b":[["CTM_MEDIUM.yaml","ctm_medium"],["MG_minimal_media.yaml","MG minimal media"],["MG_minimal_media_noCarbon.yaml","MG minimal media noCarbon"],["MG_minimal_media_noIron.yaml","MG minimal media noIron"],["THERMODESULFOVIBRIO_MEDIUM_FOR_N1.yaml","thermodesulfovibrio_medium_for_n1"],["THERMODESULFOVIBRIO_YELLOWSTONII_MEDIUM.yaml","thermodesulfovibrio_yellowstonii_medium"]]},{"id":"CHEBI:28077","l":"rifampicin","na":12,"nb":2,"a":[["ARO%3A3007073","Bacillus subtilis rpoB mutants conferring resistance to rifampin"],["ARO%3A3004480","Bifidobacterium adolescentis rpoB mutants conferring resistance to rifampicin"],["ARO%3A3004563","Clostridioides difficile rpoB with mutation conferring resistance to rifampicin"],["ARO%3A3003288","Escherichia coli rpoB mutants conferring resistance to rifampicin"],["ARO%3A3007051","Helicobacter pylori rpoB mutation conferring resistance to rifampicin"],["ARO%3A3003284","Mycobacterium leprae rpoB mutations conferring resistance to rifampicin"]],"b":[["lb_luria_bertani_agar_with_kanamycin_and_rifampicin__0472ff8f.yaml","lb_luria_bertani_agar_with_kanamycin_and_rifampicin"],["luria_bertani_lb_antibiotics.yaml","luria_bertani_lb_antibiotics"]]},{"id":"CHEBI:36218","l":"beta-lactose","na":2,"nb":9,"a":[["RHEA%3A28659","beta-lactose + H2O = beta-D-galactose + beta-D-glucose"],["RHEA%3A59352","beta-lactose + O2 = lactobiono-1,5-lactone + H2O2"]],"b":[["ALKALINE_LACTOSE_AGAR.yaml","alkaline_lactose_agar"],["LACTOBACILLUS_MEDIUM_I.yaml","lactobacillus_medium_i"],["M17_medium_supplemented_with_20_g_L_of_lactose.yaml","m17_medium_supplemented_with_20_g_l_of_lactose"],["ZMB_Gut.yaml","ZMB Gut"],["gam_broth_with_1_lactose.yaml","gam_broth_with_1_lactose"],["m17_broth_containing_lactose.yaml","m17_broth_containing_lactose"]]},{"id":"CHEBI:18403","l":"L-arabinitol","na":8,"nb":2,"a":[["EC%3A1.1.1.12","L-arabinitol 4-dehydrogenase"],["EC%3A1.1.1.13","L-arabinitol 2-dehydrogenase"],["EC%3A1.1.1.21","aldose reductase"],["RHEA%3A25225","L-arabinitol + NAD(+) = L-arabinose + NADH + H(+)"],["RHEA%3A21356","L-arabinitol + NAD(+) = L-ribulose + NADH + H(+)"],["RHEA%3A16381","L-arabinitol + NAD(+) = L-xylulose + NADH + H(+)"]],"b":[["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"],["Soil_Defined_Media_%28SDM%29.yaml","Soil Defined Media (SDM)"]]},{"id":"CHEBI:17824","l":"propan-2-ol","na":7,"nb":2,"a":[["EC%3A1.1.1.80","isopropanol dehydrogenase (NADP(+))"],["EC%3A1.14.13.227","propane 2-monooxygenase"],["RHEA%3A62196","propan-2-ol + 2 Fe(III)-[cytochrome c] = acetone + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A41984","propan-2-ol + NAD(+) = acetone + NADH + H(+)"],["RHEA%3A21792","propan-2-ol + NADP(+) = acetone + NADPH + H(+)"],["RHEA%3A49992","propane + NADH + O2 + H(+) = propan-2-ol + NAD(+) + H2O"]],"b":[["METHANOGENIUM_CV_MEDIUM.yaml","methanogenium_cv_medium"],["METHANOSPIRILLUM_SK_MEDIUM.yaml","methanospirillum_sk_medium"]]},{"id":"CHEBI:45296","l":"hexadecane","na":2,"nb":7,"a":[["RHEA%3A77375","heptadecanoate + hnu + H(+) = hexadecane + CO2"],["RHEA%3A76747","hexadecane + reduced [NADPH--hemoprotein reductase] + O2 = 9-hexadecanol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["FUNDIBACTER_JADENSIS_MEDIUM.yaml","fundibacter_jadensis_medium"],["MODIFIED_SEA_WATER_AGAR.yaml","modified_sea_water_agar"],["dehalobacter_restrictus_medium_tce.yaml","dehalobacter_restrictus_medium_tce"],["dehalobacter_restrictus_medium_tce__3ce89046.yaml","dehalobacter_restrictus_medium_tce"],["desulfuromonas_medium_tce.yaml","desulfuromonas_medium_tce"],["m9_with_1_0_glucose_and_40_emulsion.yaml","m9_with_1_0_glucose_and_40_emulsion"]]},{"id":"CHEBI:16196","l":"oleic acid","na":2,"nb":6,"a":[["TCDB%3A9.A.76","The Omega3 Fatty Acid Desaturase 3/Putative Transporter (FAD3) Family"],["proteintraitsmech%3ABIOLIP_OLA","OLA-binding site"]],"b":[["MIDDLEBROCK_7H11_AGAR.yaml","middlebrock_7h11_agar"],["MIDDLEBROOK_MEDIUM.yaml","middlebrook_medium"],["Middle_Brook_Medium.yaml","middle_brook_medium"],["Middlebrook_7H11_Agar.yaml","middlebrook_7h11_agar"],["middlebrook_7h11_agar_difco.yaml","middlebrook_7h11_agar_difco"],["modified_dixon_s_agar.yaml","modified_dixon_s_agar"]]},{"id":"CHEBI:27641","l":"cycloheximide","na":2,"nb":6,"a":[["RHEA%3A61936","cycloheximide(in) + ATP + H2O = cycloheximide(out) + ADP + phosphate + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["PPM.yaml","ppm"],["R2A_Kan50_Tween01_Cycloheximide200.yaml","R2A_Kan50_Tween01_Cycloheximide200"],["alkaliphiles_pirellula_medium_m1py.yaml","alkaliphiles_pirellula_medium_m1py"],["chlamydia_serpentis_poikilotherma_medium.yaml","chlamydia_serpentis_poikilotherma_medium"],["pirellula_medium_m31py.yaml","pirellula_medium_m31py"],["ppm__7a6a33ba.yaml","ppm"]]},{"id":"CHEBI:28053","l":"melibiose","na":6,"nb":2,"a":[["RHEA%3A28663","melibiose + H2O = D-galactose + D-glucose"],["RHEA%3A28855","melibiose(in) + H(+)(in) = melibiose(out) + H(+)(out)"],["RHEA%3A28847","melibiose(in) + Li(+)(in) = melibiose(out) + Li(+)(out)"],["RHEA%3A28851","melibiose(in) + Na(+)(in) = melibiose(out) + Na(+)(out)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["MCSA%3A913","alpha-galactosidase"]],"b":[["MP_AGAR.yaml","mp_agar"],["mp_agar__3414ec19.yaml","mp_agar"]]},{"id":"CHEBI:28997","l":"","na":6,"nb":2,"a":[["EC%3A3.5.4.4","adenosine deaminase"],["RHEA%3A28190","2'-deoxyadenosine + H2O + H(+) = 2'-deoxyinosine + NH4(+)"],["RHEA%3A29971","2'-deoxyinosine(in) + H(+)(in) = 2'-deoxyinosine(out) + H(+)(out)"],["RHEA%3A27750","2'-deoxyinosine + phosphate = 2-deoxy-alpha-D-ribose 1-phosphate + hypoxanthine"],["RHEA%3A29383","dIMP + H2O = 2'-deoxyinosine + phosphate"],["RHEA%3A69572","dIMP + inosine = 2'-deoxyinosine + IMP"]],"b":[["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"],["Soil_Defined_Media_%28SDM%29.yaml","Soil Defined Media (SDM)"]]},{"id":"CHEBI:15729","l":"L-ornithine","na":2,"nb":5,"a":[["MCSA%3A12","ornithine carbamoyltransferase"],["proteintraitsmech%3ABIOLIP_ORN","ORN-binding site"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:17300","l":"tetrachloroethene","na":2,"nb":5,"a":[["EC%3A1.21.99.5","tetrachloroethene reductive dehalogenase"],["RHEA%3A20353","trichloroethene + chloride + A + H(+) = tetrachloroethene + AH2"]],"b":[["MINERAL_SALTS_MEDIUM_WITH_TCE.yaml","mineral_salts_medium_with_tce"],["dehalobacter_restrictus_medium_tce.yaml","dehalobacter_restrictus_medium_tce"],["dehalobacter_restrictus_medium_tce__3ce89046.yaml","dehalobacter_restrictus_medium_tce"],["desulfuromonas_medium_tce.yaml","desulfuromonas_medium_tce"],["mineral_salts_medium_with_tce__be1bd293.yaml","mineral_salts_medium_with_tce"]]},{"id":"CHEBI:18101","l":"4-hydroxyphenylacetic acid","na":2,"nb":5,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_4HP","4HP-binding site"]],"b":[["ENDOMICROBIUM_PROAVITUM_RSA_MEDIUM.yaml","endomicrobium_proavitum_rsa_medium"],["MODIFIED_AM5_MEDIUM_2.yaml","modified_am5_medium_2"],["am5_medium_elusimicrobium_medium.yaml","am5_medium_elusimicrobium_medium"],["endomicrobium_proavitum_rsa_medium__51692939.yaml","endomicrobium_proavitum_rsa_medium"],["pjc_with_4_hpa.yaml","pjc_with_4_hpa"]]},{"id":"CHEBI:35899","l":"crotonate","na":5,"nb":2,"a":[["EC%3A1.3.1.31","2-enoate reductase"],["RHEA%3A74903","(2E)-2-butenoate + ATP + H(+) = (2E)-but-2-enoyl-AMP + diphosphate"],["RHEA%3A74899","(2E)-2-butenoate + holo-[ACP] + ATP = (2E)-butenoyl-[ACP] + AMP + diphosphate"],["RHEA%3A10200","butanoate + NAD(+) = (2E)-2-butenoate + NADH + H(+)"],["RHEA%3A69172","N(6)-(2E)-butenoyl-L-lysyl-[protein] + H2O = (2E)-2-butenoate + L-lysyl-[protein]"]],"b":[["SERPENTINICELLA_MEDIUM.yaml","serpentinicella_medium"],["for_dsm_17722.yaml","for_dsm_17722"]]},{"id":"CHEBI:15346","l":"coenzyme A","na":2,"nb":4,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15346","requires coenzyme A"],["proteintraitsmech%3ABIOLIP_COA","COA-binding site"]],"b":[["HELMUTKOENIGIA_MEDIUM.yaml","helmutkoenigia_medium"],["TREPONEMA_ISOPTEROCOLA_MEDIUM.yaml","treponema_isopterocola_medium"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"],["treponema_isopterocola_medium__e7b07692.yaml","treponema_isopterocola_medium"]]},{"id":"CHEBI:18405","l":"","na":2,"nb":4,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18405","requires pyridoxal 5'-phosphate"],["proteintraitsmech%3ABIOLIP_PLP","PLP-binding site"]],"b":[["HELMUTKOENIGIA_MEDIUM.yaml","helmutkoenigia_medium"],["TREPONEMA_ISOPTEROCOLA_MEDIUM.yaml","treponema_isopterocola_medium"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"],["treponema_isopterocola_medium__e7b07692.yaml","treponema_isopterocola_medium"]]},{"id":"CHEBI:22868","l":"bile salt","na":2,"nb":4,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["1298.yaml","1298"],["ALKALINE_CELLULOSE_AGAR.yaml","alkaline_cellulose_agar"],["acido_thermophile_medium.yaml","acido_thermophile_medium"],["modified_eggerth_gagnon_medium.yaml","modified_eggerth_gagnon_medium"]]},{"id":"CHEBI:25548","l":"nitrilotriacetate(3-)","na":2,"nb":4,"a":[["EC%3A1.14.14.10","nitrilotriacetate monooxygenase"],["RHEA%3A31359","nitrilotriacetate + FMNH2 + O2 = aminodiacetate + FMN + glyoxylate + H2O"]],"b":[["MEDIUM_FOR_CHELATOCOCCUS_BUHARII.yaml","medium_for_chelatococcus_buharii"],["NITRILOTRIACETATE_MEDIUM.yaml","nitrilotriacetate_medium"],["methanoregula_peat_medium__84e41704.yaml","methanoregula_peat_medium"],["methanosphaerula_peat_medium__1238714d.yaml","methanosphaerula_peat_medium"]]},{"id":"CHEBI:75456","l":"2-stearoylglycerol","na":2,"nb":4,"a":[["RHEA%3A38519","1-(9Z-octadecenoyl)-2-octadecanoyl-sn-glycerol + H2O = 2-octadecanoylglycerol + (9Z)-octadecenoate + H(+)"],["proteintraitsmech%3ABIOLIP_2JT","2JT-binding site"]],"b":[["LEEMING_AND_NOTMAN_AGAR.yaml","leeming_and_notman_agar"],["leeming_amp_notman_agar_lna_leeming_amp_notman_1987_in_the_yeasts_a_taxonomic_study_5th_edn.yaml","leeming_amp_notman_agar_lna_leeming_amp_notman_1987_in_the_yeasts_a_taxonomic_study_5th_edn"],["leeming_amp_notman_agar_modified_mlna.yaml","leeming_amp_notman_agar_modified_mlna"],["leeming_and_notman_agar__33424fef.yaml","leeming_and_notman_agar"]]},{"id":"NCBITaxon:556484","l":"","na":4,"nb":2,"a":[["TED%3AAF-B7GAJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-B7GAJ8-F1-model_v4_TED01"],["TED%3AAF-B7G520-F1-model_v4_TED02","TED novel fold AF-B7G520-F1-model_v4_TED02"],["TED%3AAF-B7G8V4-F1-model_v4_TED02","TED novel fold AF-B7G8V4-F1-model_v4_TED02"],["TED%3AAF-B7GB31-F1-model_v4_TED01","TED novel fold AF-B7GB31-F1-model_v4_TED01"]],"b":[["2ASW.yaml","2asw"],["F_2_Medium.yaml","f_2_medium"]]},{"id":"CHEBI:136511","l":"manganese dioxide","na":3,"nb":2,"a":[["EC%3A1.16.3.3","manganese oxidase"],["RHEA%3A52240","2 Mn(2+) + O2 + 2 H2O = 2 MnO2 + 4 H(+)"],["RHEA%3A52248","4 Mn(3+) + O2 + 6 H2O = 4 MnO2 + 12 H(+)"]],"b":[["SULFURIMONAS_MARISNIGRI_MEDIUM.yaml","sulfurimonas_marisnigri_medium"],["abss2__1d326b00.yaml","abss2"]]},{"id":"CHEBI:17909","l":"polysulfur","na":2,"nb":3,"a":[["EC%3A1.8.5.4","bacterial sulfide:quinone reductase"],["RHEA%3A30239","n a quinone + n hydrogen sulfide + n H(+) = polysulfur(n-2) + n a quinol"]],"b":[["THERMOCOCCUS_WAIOTAPUENSE_MEDIUM.yaml","thermococcus_waiotapuense_medium"],["desulfurococcus_medium__dbcbba45.yaml","desulfurococcus_medium"],["thermococcus_medium.yaml","thermococcus_medium"]]},{"id":"CHEBI:30066","l":"thioglycolate(1-)","na":2,"nb":3,"a":[["EC%3A4.5.1.5","S-carboxymethylcysteine synthase"],["RHEA%3A22868","thioglycolate + 3-chloro-L-alanine = S-carboxymethyl-L-cysteine + chloride + H(+)"]],"b":[["eubacterium_medium__c1146137.yaml","eubacterium_medium"],["spirochaeta_stenostrepta_medium__5924ed4c.yaml","spirochaeta_stenostrepta_medium"],["thioglycollate_medium__bfdc2c9b.yaml","thioglycollate_medium"]]},{"id":"CHEBI:30915","l":"2-oxoglutaric acid","na":3,"nb":2,"a":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["TCDB%3A2.A.56","The Tripartite ATP-independent Periplasmic Transporter (TRAP-T) Family"],["proteintraitsmech%3ABIOLIP_AKG","AKG-binding site"]],"b":[["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"],["medium_for_tick_cells_rickettsia.yaml","medium_for_tick_cells_rickettsia"]]},{"id":"CHEBI:46020","l":"tetramethylammonium","na":2,"nb":3,"a":[["EC%3A2.1.1.252","tetramethylammonium--corrinoid protein Co-methyltransferase"],["RHEA%3A59856","tetramethylammonium + Co(I)-[tetramethylammonium-specific corrinoid protein] + H(+) = methyl-Co(III)-[tetramethylammonium-specific corrinoid protein] + trimethylamine"]],"b":[["TETRAMETHYL_AMMONIUM_MEDIUM.yaml","tetramethyl_ammonium_medium"],["methanogen_high_salt_medium__183d3bb4.yaml","methanogen_high_salt_medium"],["tetramethyl_ammonium_medium__e4bd4975.yaml","tetramethyl_ammonium_medium"]]},{"id":"CHEBI:53423","l":"polysorbate 40","na":2,"nb":3,"a":[["TCDB%3A1.A.46","The Anion Channel-forming Bestrophin (Bestrophin) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["MDA.yaml","mda"],["PITYROSPORUM_MEDIUM.yaml","pityrosporum_medium"],["modified_dixon_s_agar.yaml","modified_dixon_s_agar"]]},{"id":"CHEBI:18095","l":"trans-4-hydroxy-L-proline","na":2,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["proteintraitsmech%3ABIOLIP_HYP","HYP-binding site"]],"b":[["RPMI.yaml","RPMI"],["RPMI_with_Fetal_bovine_serum_Conditioned.yaml","RPMI with Fetal bovine serum Conditioned"]]},{"id":"CHEBI:26710","l":"sodium chloride","na":1,"nb":3474,"a":[["TCDB%3A2.A.30","The Cation-Chloride Cotransporter (CCC) Family"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["10_mh_medium.yaml","10_mh_medium"],["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["1298.yaml","1298"],["15_mgm_medium.yaml","15_mgm_medium"]]},{"id":"CHEBI:32588","l":"potassium chloride","na":1,"nb":1953,"a":[["TCDB%3A2.A.30","The Cation-Chloride Cotransporter (CCC) Family"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mgm_medium.yaml","15_mgm_medium"],["15_mh_medium.yaml","15_mh_medium"],["15_mh_medium__b586cb85.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"]]},{"id":"CHEBI:32139","l":"sodium hydrogencarbonate","na":1,"nb":1471,"a":[["TCDB%3A2.A.31","The Anion Exchanger (AE) Family"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mh_medium.yaml","15_mh_medium"],["15_mh_medium__b586cb85.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM.yaml","1_2_sme_medium"]]},{"id":"CHEBI:17234","l":"glucose","na":1,"nb":1113,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mh_medium.yaml","15_mh_medium"],["15_mh_medium__b586cb85.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"]]},{"id":"CHEBI:17634","l":"D-glucose","na":1,"nb":441,"a":[["MCSA%3A976","α‑glucosidase maltase-glucoamylase"]],"b":[["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"],["1_2_mrs_1_2_bhi_agar.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_mrs_1_2_bhi_agar__56430c33.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_tryptic_soy_broth_anaerobe.yaml","1_2_tryptic_soy_broth_anaerobe"],["1_2_tryptic_soy_broth_anaerobic.yaml","1_2_tryptic_soy_broth_anaerobic"],["1_2_tryptic_soy_broth_anaerobic__d70593aa.yaml","1_2_tryptic_soy_broth_anaerobic"]]},{"id":"CHEBI:50385","l":"hemin","na":1,"nb":129,"a":[["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]],"b":[["ABB.yaml","ABB"],["ACY.yaml","ACY"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["BGDM.yaml","bgdm"],["BHIS.yaml","bhis"],["BHIS_CaCl2.yaml","BHIS_CaCl2"]]},{"id":"CHEBI:63940","l":"sodium tungstate","na":1,"nb":116,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["ACETOBACTEROIDES_MEDIUM.yaml","acetobacteroides_medium"],["ALKALIPHILUS_CROTONATOXIDANS_MEDIUM.yaml","alkaliphilus_crotonatoxidans_medium"],["AP11MH_medium.yaml","ap11mh_medium"],["ARCHAEOGLOBUS_FULGIDUS_MEDIUM.yaml","archaeoglobus_fulgidus_medium"],["AS_medium.yaml","as_medium"],["A_medium.yaml","a_medium"]]},{"id":"CHEBI:15603","l":"L-leucine","na":1,"nb":70,"a":[["proteintraitsmech%3ABIOLIP_LEU","LEU-binding site"]],"b":[["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["Hypertonic_medium.yaml","hypertonic_medium"],["MCD_Medium.yaml","mcd_medium"]]},{"id":"UBERON:0000948","l":"heart","na":1,"nb":67,"a":[["GO%3A0007507","heart development"]],"b":[["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"],["1_2_mrs_1_2_bhi_agar.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_mrs_1_2_bhi_agar__56430c33.yaml","1_2_mrs_1_2_bhi_agar"],["70_30_sporulation_medium.yaml","70_30_sporulation_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Anaerobic_Brain_Heart_Infusion_Broth.yaml","anaerobic_brain_heart_infusion_broth"]]},{"id":"UBERON:0000955","l":"brain","na":1,"nb":66,"a":[["GO%3A0007420","brain development"]],"b":[["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"],["1_2_mrs_1_2_bhi_agar.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_mrs_1_2_bhi_agar__56430c33.yaml","1_2_mrs_1_2_bhi_agar"],["70_30_sporulation_medium.yaml","70_30_sporulation_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Anaerobic_Brain_Heart_Infusion_Broth.yaml","anaerobic_brain_heart_infusion_broth"]]},{"id":"CHEBI:17561","l":"L-cysteine","na":1,"nb":60,"a":[["proteintraitsmech%3ABIOLIP_CYS","CYS-binding site"]],"b":[["70_30_sporulation_medium.yaml","70_30_sporulation_medium"],["BHIS_CaCl2.yaml","BHIS_CaCl2"],["BHIS_HOMOPIPES.yaml","BHIS_HOMOPIPES"],["BHIS_K3.yaml","BHIS_K3"],["BHIS_K3_noGlucose.yaml","BHIS_K3_noGlucose"],["BHIS_PIPES.yaml","BHIS_PIPES"]]},{"id":"CHEBI:30769","l":"citric acid","na":1,"nb":55,"a":[["proteintraitsmech%3ABIOLIP_CIT","CIT-binding site"]],"b":[["Azospira_Medium.yaml","azospira_medium"],["BG11.yaml","bg11"],["BG11_medium.yaml","bg11_medium"],["CTM_MEDIUM.yaml","ctm_medium"],["ETHANOLOGENBACTERIUM_MEDIUM.yaml","ethanologenbacterium_medium"],["GINGER_BEER_PLANT_MEDIUM.yaml","ginger_beer_plant_medium"]]},{"id":"CHEBI:16135","l":"isobutyric acid","na":1,"nb":49,"a":[["proteintraitsmech%3ABIOLIP_ALQ","ALQ-binding site"]],"b":[["ACY.yaml","ACY"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["ANAEROFILUM_MEDIUM.yaml","anaerofilum_medium"],["DESULFONEMA_ISHIMOTOI_MEDIUM.yaml","desulfonema_ishimotoi_medium"],["DESULFUROBACTERIUM_MEDIUM.yaml","desulfurobacterium_medium"]]},{"id":"CHEBI:17418","l":"valeric acid","na":1,"nb":48,"a":[["proteintraitsmech%3ABIOLIP_LEA","LEA-binding site"]],"b":[["ACY.yaml","ACY"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["ANAEROFILUM_MEDIUM.yaml","anaerofilum_medium"],["DESULFUROBACTERIUM_MEDIUM.yaml","desulfurobacterium_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"]]},{"id":"CHEBI:15356","l":"cysteine","na":1,"nb":40,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["AMB_MEDIUM.yaml","amb_medium"],["Chopped_Meat_Carbohydrate_Medium.yaml","chopped_meat_carbohydrate_medium"],["Chopped_Meat_Carbohydrate_Medium_w_Tween_80.yaml","chopped_meat_carbohydrate_medium_w_tween_80"],["FRANCISELLA_HALIOTICIDA_MEDIUM.yaml","francisella_halioticida_medium"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"]]},{"id":"CHEBI:16828","l":"L-tryptophan","na":1,"nb":40,"a":[["proteintraitsmech%3ABIOLIP_TRP","TRP-binding site"]],"b":[["CDMM.yaml","cdmm"],["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["M9_minimal_media_aromix_noCarbon.yaml","M9 minimal media aromix noCarbon"],["MDM.yaml","mdm"]]},{"id":"CHEBI:78018","l":"dodecylphosphocholine","na":1,"nb":37,"a":[["proteintraitsmech%3ABIOLIP_DPV","DPV-binding site"]],"b":[["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["an1_medium__e0323906.yaml","an1_medium"],["anaerocella_medium.yaml","anaerocella_medium"],["bacteroides_galacturonicus_medium.yaml","bacteroides_galacturonicus_medium"],["campylobacter_rectus_medium.yaml","campylobacter_rectus_medium"],["capnocytophaga_medium__a7f2b87e.yaml","capnocytophaga_medium"]]},{"id":"CHEBI:27570","l":"histidine","na":1,"nb":27,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["MS15_Medium.yaml","ms15_medium"],["NATRONINCOLA_HISTIDINOVORANS_MEDIUM.yaml","natronincola_histidinovorans_medium"]]},{"id":"CHEBI:59640","l":"N-acetylglucosamine","na":1,"nb":27,"a":[["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"]],"b":[["LARKINELLA_ARBORICOLA_MEDIUM.yaml","larkinella_arboricola_medium"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"],["MM3.yaml","mm3"],["Modified_M30_Medium.yaml","modified_m30_medium"],["PLANCTOMYCES_MEDIUM_WITH_DOUBLE_CONCENTRATED_ARTIFICAL_SEA_WATER.yaml","planctomyces_medium_with_double_concentrated_artifical_sea_water"],["PLANCTOMYCES_PYREFORMIS_MEDIUM.yaml","planctomyces_pyreformis_medium"]]},{"id":"CHEBI:16811","l":"methionine","na":1,"nb":25,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"]],"b":[["Chamberlain_CDM.yaml","chamberlain_cdm"],["DEINOCOCCUS_MEDIUM.yaml","deinococcus_medium"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["MS13_Medium.yaml","ms13_medium"]]},{"id":"CHEBI:61930","l":"N(6)-acetyl-L-lysine residue","na":22,"nb":1,"a":[["EC%3A2.3.1.108","alpha-tubulin N-acetyltransferase"],["EC%3A2.3.1.286","protein acetyllysine N-acetyltransferase"],["EC%3A2.3.1.309","[beta-tubulin]-L-lysine N-acetyltransferase"],["EC%3A2.3.1.48","histone acetyltransferase"],["EC%3A3.5.1.98","histone deacetylase"],["RHEA%3A64460","acetyl phosphate + L-lysyl-[protein] = N(6)-acetyl-L-lysyl-[protein] + phosphate + H(+)"]],"b":[["NLDM_defined.yaml","NLDM_defined"]]},{"id":"CHEBI:41131","l":"crotonic acid","na":1,"nb":21,"a":[["proteintraitsmech%3ABIOLIP_BEO","BEO-binding site"]],"b":[["ALKALIPHILUS_CROTONATOXIDANS_MEDIUM.yaml","alkaliphilus_crotonatoxidans_medium"],["ALKALIPHILUS_HYDROTHERMALIS_MEDIUM.yaml","alkaliphilus_hydrothermalis_medium"],["DESULFATIRHABDIUM_MEDIUM.yaml","desulfatirhabdium_medium"],["Desulfatirhabdium_Butyrativorans_Medium.yaml","desulfatirhabdium_butyrativorans_medium"],["EUBACTERIUM_OXIDOREDUCENS_MEDIUM.yaml","eubacterium_oxidoreducens_medium"],["MPA_Medium.yaml","mpa_medium"]]},{"id":"CHEBI:113451","l":"sodium ascorbate","na":1,"nb":19,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_113451","requires sodium ascorbate"]],"b":[["ALKALIPHILUS_MEDIUM.yaml","alkaliphilus_medium"],["CLOSTRIDUM_G4_MEDIUM.yaml","clostridum_g4_medium"],["Chromatium_Medium.yaml","chromatium_medium"],["GEOANAEROBACTER_MEDIUM.yaml","geoanaerobacter_medium"],["GILLIAMELLA_MEDIUM.yaml","gilliamella_medium"],["HELIOBACTERIUM_CHLORUM_MEDIUM.yaml","heliobacterium_chlorum_medium"]]},{"id":"CHEBI:131529","l":"pyridoxal hydrochloride","na":1,"nb":19,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_131529","requires pyridoxal hydrochloride"]],"b":[["AROMATOLEUM_MEDIUM.yaml","aromatoleum_medium"],["CDM_LP.yaml","cdm_lp"],["ECTOTHIORHODOSPIRA_ABDELMALEKII_MEDIUM.yaml","ectothiorhodospira_abdelmalekii_medium"],["ECTOTHIORHODOSPIRA_VACUOLATA_MEDIUM.yaml","ectothiorhodospira_vacuolata_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"],["HELMUTKOENIGIA_MEDIUM.yaml","helmutkoenigia_medium"]]},{"id":"CHEBI:18186","l":"tyrosine","na":1,"nb":17,"a":[["MCSA%3A668","leishmanolysin"]],"b":[["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["Synthetic_Medium_C.yaml","synthetic_medium_c"],["complete_chemically_defined_medium.yaml","complete_chemically_defined_medium"],["fermentation_medium_glucose_tyrosine.yaml","fermentation_medium_glucose_tyrosine"]]},{"id":"CHEBI:17151","l":"xylitol","na":16,"nb":1,"a":[["EC%3A1.1.1.10","L-xylulose reductase"],["EC%3A1.1.1.15","D-iditol 2-dehydrogenase"],["EC%3A1.1.1.307","D-xylose reductase [NAD(P)H]"],["EC%3A1.1.1.430","D-xylose reductase (NADH)"],["EC%3A1.1.1.431","D-xylose reductase (NADPH)"],["EC%3A1.1.1.9","D-xylulose reductase"]],"b":[["atribacterium_medium__1e9c1fd9.yaml","atribacterium_medium"]]},{"id":"CHEBI:24848","l":"inositol","na":1,"nb":14,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["2asw__59e92e67.yaml","2asw"],["ABSS2.yaml","abss2"],["BAF_Medium.yaml","baf_medium"],["HYPHOMICROBIUM_METHYLOVORUM_MEDIUM.yaml","hyphomicrobium_methylovorum_medium"],["NAV_medium.yaml","nav_medium"],["THERMOACTINOMYCES_MEDIUM.yaml","thermoactinomyces_medium"]]},{"id":"CHEBI:28971","l":"ampicillin","na":1,"nb":14,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["2_5_nacl_heart_infusion_hi_medium.yaml","2_5_nacl_heart_infusion_hi_medium"],["PPLO_broth.yaml","pplo_broth"],["brain_heart_infusion_bhi_medium_supplemented_with_antibiotics.yaml","brain_heart_infusion_bhi_medium_supplemented_with_antibiotics"],["dehalogenimonas_medium__6a926cbc.yaml","dehalogenimonas_medium"],["ip3_3_medium__726cb47b.yaml","ip3_3_medium"],["lb_agar_supplemented_with_ampicillin.yaml","lb_agar_supplemented_with_ampicillin"]]},{"id":"CHEBI:37166","l":"xylan","na":1,"nb":14,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["CLOSTRIDIUM_AEROTOLERANS_MEDIUM.yaml","clostridium_aerotolerans_medium"],["TREPONEMA_THERMOPHILUM_MEDIUM.yaml","treponema_thermophilum_medium"],["VXG_GELLAN.yaml","vxg_gellan"],["XED_Agar.yaml","xed_agar"],["XYLAN_MEDIUM.yaml","xylan_medium"],["Xy_agar.yaml","xy_agar"]]},{"id":"CHEBI:36702","l":"2-acyl-1-alkyl-sn-glycero-3-phosphocholine","na":11,"nb":1,"a":[["EC%3A2.3.1.148","glycerophospholipid acyltransferase (CoA-dependent)"],["EC%3A2.3.1.63","1-alkylglycerophosphocholine O-acyltransferase"],["EC%3A2.7.8.2","diacylglycerol cholinephosphotransferase"],["EC%3A3.1.1.4","phospholipase A2"],["RHEA%3A36179","1-O-alkyl-2-acyl-sn-glycerol + CDP-choline = a 1-O-alkyl-2-acyl-sn-glycero-3-phosphocholine + CMP + H(+)"],["RHEA%3A77759","a 1-O-alkyl-2-acyl-sn-glycero-3-phosphocholine + a 1,2-diacylglycerol = a 1-O-alkyl-sn-glycero-3-phosphocholine + a triacylglycerol"]],"b":[["NLDM_defined.yaml","NLDM_defined"]]},{"id":"CHEBI:16024","l":"D-mannose","na":1,"nb":9,"a":[["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"]],"b":[["M9zb_with_mannose.yaml","m9zb_with_mannose"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"],["Soil_Defined_Media_%28SDM%29.yaml","Soil Defined Media (SDM)"],["defined_freshwater_medium_cocl2__f0ffbcc6.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__41b1d433.yaml","defined_freshwater_medium_coso4"],["fermentation_medium_mannose_nh4cl.yaml","fermentation_medium_mannose_nh4cl"]]},{"id":"CHEBI:16349","l":"L-citrulline","na":1,"nb":9,"a":[["proteintraitsmech%3ABIOLIP_CIR","CIR-binding site"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"]]},{"id":"CHEBI:18248","l":"iron atom","na":9,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18248","requires Fe"],["proteintraitsmech%3AMETALPDB_FE_DINUCLEAR","dinuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_HEPTANUCLEAR","heptanuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_HEXANUCLEAR","hexanuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_MONONUCLEAR","mononuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_OCTANUCLEAR","octanuclear iron site"]],"b":[["methanopyrus_medium_for_strain_116__7463935f.yaml","methanopyrus_medium_for_strain_116"]]},{"id":"NCBITaxon:210","l":"Helicobacter pylori","na":9,"nb":1,"a":[["Pfam%3APF18025","Alpha-(1,3)-fucosyltransferase FucT N-terminal domain"],["Pfam%3APF18971","CagA protein"],["Pfam%3APF03507","CagA exotoxin phosphopeptide substrate mimic region"],["Pfam%3APF02691","Vacuolating cyotoxin beta-helical domain"],["TED%3AAF-A0A2T6UWI4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T6UWI4-F1-model_v4_TED01"],["TED%3AAF-A0A1Q9JB12-F1-model_v4_TED01","TED novel fold AF-A0A1Q9JB12-F1-model_v4_TED01"]],"b":[["BRUCELLA_BROTH.yaml","brucella_broth"]]},{"id":"CHEBI:16283","l":"L-cystine","na":1,"nb":8,"a":[["proteintraitsmech%3ABIOLIP_IYY","IYY-binding site"]],"b":[["IGNISPHAERA_MEDIUM.yaml","ignisphaera_medium"],["Kosmotoga_Pacifica_Medium.yaml","kosmotoga_pacifica_medium"],["eg_medium__dd848cc7.yaml","eg_medium"],["fluid_thioglycolate_medium.yaml","fluid_thioglycolate_medium"],["fluid_thioglycollate_medium__e510d708.yaml","fluid_thioglycollate_medium"],["rc_medium__9776cd83.yaml","rc_medium"]]},{"id":"CHEBI:28260","l":"galactose","na":1,"nb":8,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["A1_MEDIUM.yaml","a1_medium"],["KPL_MEDIUM.yaml","kpl_medium"],["MYXOCOCCUS_FLAVESCENS_MEDIUM.yaml","myxococcus_flavescens_medium"],["Modified_SP_Medium.yaml","modified_sp_medium"],["SP_Medium.yaml","sp_medium"],["a1_medium__13c8113e.yaml","a1_medium"]]},{"id":"CHEBI:16610","l":"spermidine","na":1,"nb":7,"a":[["proteintraitsmech%3ABIOLIP_SPD","SPD-binding site"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"]]},{"id":"CHEBI:16737","l":"creatinine","na":7,"nb":1,"a":[["EC%3A3.5.2.10","creatininase"],["EC%3A3.5.4.21","creatinine deaminase"],["RHEA%3A14533","creatinine + H2O = creatine"],["RHEA%3A12681","creatinine + H2O + H(+) = N-methylhydantoin + NH4(+)"],["RHEA%3A74539","creatinine(in) = creatinine(out)"],["RHEA%3A72183","creatinine(in) + H(+)(out) = creatinine(out) + H(+)(in)"]],"b":[["tissierella_sp_medium_creatinine.yaml","tissierella_sp_medium_creatinine"]]},{"id":"CHEBI:17126","l":"carnitine","na":7,"nb":1,"a":[["EC%3A1.1.1.108","carnitine 3-dehydrogenase"],["EC%3A1.14.11.1","gamma-butyrobetaine dioxygenase"],["EC%3A4.1.1.42","carnitine decarboxylase"],["RHEA%3A24028","4-(trimethylamino)butanoate + 2-oxoglutarate + O2 = carnitine + succinate + CO2"],["RHEA%3A21576","carnitine + H(+) = 2-methylcholine + CO2"],["RHEA%3A19265","carnitine + NAD(+) = 3-dehydrocarnitine + NADH + H(+)"]],"b":[["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:17309","l":"pectin","na":1,"nb":7,"a":[["MCSA%3A681","pectinesterase"]],"b":[["MEDIUM_FOR_TREPONEMA_PECTINOVORUM.yaml","medium_for_treponema_pectinovorum"],["MODIFIED_OTI_MEDIUM.yaml","modified_oti_medium"],["PPM.yaml","ppm"],["medium_for_treponema_pectinovorum__e5f7afef.yaml","medium_for_treponema_pectinovorum"],["oteb_medium.yaml","oteb_medium"],["pectin_medium__d8bc472f.yaml","pectin_medium"]]},{"id":"CHEBI:30776","l":"hexanoic acid","na":1,"nb":7,"a":[["proteintraitsmech%3ABIOLIP_6NA","6NA-binding site"]],"b":[["DESULFUROBACTERIUM_MEDIUM.yaml","desulfurobacterium_medium"],["TD3_MEDIUM.yaml","td3_medium"],["THERMODESULFOBACTERIUM_HYDROGENIPHILUM_MEDIUM.yaml","thermodesulfobacterium_hydrogeniphilum_medium"],["THERMODESULFOBACTERIUM_HYDROGENOPHILUM_MEDIUM.yaml","thermodesulfobacterium_hydrogenophilum_medium"],["desulfurobacterium_medium__edb237d2.yaml","desulfurobacterium_medium"],["td3_medium__4a2d4552.yaml","td3_medium"]]},{"id":"NCBITaxon:262724","l":"Thermus thermophilus (strain ATCC BAA-163 / DSM 7039 / HB27)","na":7,"nb":1,"a":[["Pfam%3APF22474","Argonaute, middle domain"],["Pfam%3APF22472","Argonaute, N-terminal domain"],["Pfam%3APF03449","Transcription elongation factor, N-terminal"],["Pfam%3APF01272","Transcription elongation factor, GreA/GreB, C-term"],["Pfam%3APF09704","CRISPR-associated protein (Cas_Cas5)"],["PROSITE%3APS01224","N-acetyl-gamma-glutamyl-phosphate reductase active site"]],"b":[["thermus_medium__6b1d1914.yaml","thermus_medium"]]},{"id":"CHEBI:18012","l":"fumaric acid","na":1,"nb":6,"a":[["proteintraitsmech%3ABIOLIP_FUM","FUM-binding site"]],"b":[["Brucella_broth_with_formate_and_fumarate.yaml","brucella_broth_with_formate_and_fumarate"],["TRICHLOROMONAS_MEDIUM.yaml","trichloromonas_medium"],["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"],["jcm_medium_no_1264.yaml","jcm_medium_no_1264"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"],["togo_medium_m1360.yaml","togo_medium_m1360"]]},{"id":"CHEBI:27592","l":"ectoine","na":1,"nb":6,"a":[["proteintraitsmech%3ABIOLIP_4CS","4CS-binding site"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["modified_m63_medium_with_ectoine_and_2_5_m_nacl.yaml","modified_m63_medium_with_ectoine_and_2_5_m_nacl"]]},{"id":"CHEBI:46502","l":"tungstate","na":6,"nb":1,"a":[["EC%3A7.3.2.6","ABC-type tungstate transporter"],["RHEA%3A35295","adenylyl-molybdopterin + tungstate = W-molybdopterin cofactor + AMP + H(+)"],["RHEA%3A35027","tungstate(in) + ATP + H2O = tungstate(out) + ADP + phosphate + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.47","The Divalent Anion:Na+ Symporter (DASS) Family"],["proteintraitsmech%3ABIOLIP_WO4","WO4-binding site"]],"b":[["alcalilimnicola_ehrlichii_mhle_1_medium.yaml","alcalilimnicola_ehrlichii_mhle_1_medium"]]},{"id":"CHEBI:15671","l":"L-tartaric acid","na":1,"nb":5,"a":[["proteintraitsmech%3ABIOLIP_TLA","TLA-binding site"]],"b":[["MAGNETOSPIRILLUM_MEDIUM.yaml","magnetospirillum_medium"],["MG_minimal_media.yaml","MG minimal media"],["MG_minimal_media_noIron.yaml","MG minimal media noIron"],["magnetospirillum_medium__dc0f1596.yaml","magnetospirillum_medium"],["telmatospirillum_peat_medium.yaml","telmatospirillum_peat_medium"]]},{"id":"CHEBI:16119","l":"shikimic acid","na":1,"nb":5,"a":[["proteintraitsmech%3ABIOLIP_SKM","SKM-binding site"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:16830","l":"methylamine","na":1,"nb":5,"a":[["proteintraitsmech%3ABIOLIP_NME","NME-binding site"]],"b":[["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["MEDIUM_FOR_DSM_14457_AND_14458.yaml","medium_for_dsm_14457_and_14458"],["MEDIUM_FOR_METHYLOBACTERIUM_PODARIUM.yaml","medium_for_methylobacterium_podarium"],["acetobacterium_submarinus_medium__9fed26ec.yaml","acetobacterium_submarinus_medium"],["hyphomicrobium_medium__41859ce8.yaml","hyphomicrobium_medium"]]},{"id":"CHEBI:75937","l":"monooleoylglycerol","na":5,"nb":1,"a":[["RHEA%3A38455","1,2-di-(9Z-octadecenoyl)-glycerol + H2O = (9Z-octadecenoyl)-glycerol + (9Z)-octadecenoate + H(+)"],["RHEA%3A39935","1,2-di-(9Z-octadecenoyl)-sn-glycerol + H2O = (9Z-octadecenoyl)-glycerol + (9Z)-octadecenoate + H(+)"],["RHEA%3A39955","(9Z-octadecenoyl)-glycerol + H2O = glycerol + (9Z)-octadecenoate + H(+)"],["RHEA%3A50884","(9Z)-octadecenoyl-sn-glycero-3-phosphate + H2O = (9Z-octadecenoyl)-glycerol + phosphate"],["RHEA%3A47868","di-(9Z)-octadecenoylglycerol + H2O = (9Z-octadecenoyl)-glycerol + (9Z)-octadecenoate + H(+)"]],"b":[["PITYROSPORUM_MEDIUM.yaml","pityrosporum_medium"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":5,"nb":1,"a":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF02963","Restriction endonuclease EcoRI"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["PROSITE%3APS00974","Mannitol dehydrogenases signature"],["PROSITE%3APS00567","Phosphoribulokinase signature"]],"b":[["RHODOBACTER_SPHAEROIDES_MEDIUM.yaml","rhodobacter_sphaeroides_medium"]]},{"id":"CHEBI:12936","l":"D-galactose","na":1,"nb":4,"a":[["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"]],"b":[["XYLOPHILUS_MEDIUM.yaml","xylophilus_medium"],["bm_in_galactose_hodgson_et_al.yaml","bm_in_galactose_hodgson_et_al"],["liquid_mm_with_galactose_hodgson_et_al.yaml","liquid_mm_with_galactose_hodgson_et_al"],["minimal_media__805aefdd.yaml","minimal_media"]]},{"id":"CHEBI:16148","l":"heptadecane","na":4,"nb":1,"a":[["EC%3A4.1.99.5","aldehyde oxygenase (deformylating)"],["RHEA%3A77243","hnu + octadecanoate + H(+) = heptadecane + CO2"],["RHEA%3A30415","octadecanal + 2 NADPH + O2 + H(+) = heptadecane + formate + 2 NADP(+) + H2O"],["RHEA%3A83559","octadecanal + reduced [NADPH--hemoprotein reductase] + O2 = heptadecane + oxidized [NADPH--hemoprotein reductase] + CO2 + H2O + H(+)"]],"b":[["THERMOMICROBIUM_FOSTERI_MEDIUM.yaml","thermomicrobium_fosteri_medium"]]},{"id":"CHEBI:16354","l":"N-methylhydantoin","na":4,"nb":1,"a":[["EC%3A3.5.2.14","N-methylhydantoinase (ATP-hydrolyzing)"],["EC%3A3.5.4.21","creatinine deaminase"],["RHEA%3A12681","creatinine + H2O + H(+) = N-methylhydantoin + NH4(+)"],["RHEA%3A11720","N-methylhydantoin + ATP + 2 H2O = N-carbamoylsarcosine + ADP + phosphate + 2 H(+)"]],"b":[["tissierella_amo_1_medium.yaml","tissierella_amo_1_medium"]]},{"id":"CHEBI:16411","l":"indole-3-acetic acid","na":1,"nb":4,"a":[["proteintraitsmech%3ABIOLIP_IAC","IAC-binding site"]],"b":[["ENDOMICROBIUM_PROAVITUM_RSA_MEDIUM.yaml","endomicrobium_proavitum_rsa_medium"],["MODIFIED_AM5_MEDIUM_2.yaml","modified_am5_medium_2"],["am5_medium_elusimicrobium_medium.yaml","am5_medium_elusimicrobium_medium"],["endomicrobium_proavitum_rsa_medium__51692939.yaml","endomicrobium_proavitum_rsa_medium"]]},{"id":"CHEBI:16742","l":"orotic acid","na":1,"nb":4,"a":[["proteintraitsmech%3ABIOLIP_ORO","ORO-binding site"]],"b":[["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"],["Soil_Defined_Media_%28SDM%29.yaml","Soil Defined Media (SDM)"],["cdm_lab_medium.yaml","cdm_lab_medium"],["ucm.yaml","ucm"]]},{"id":"CHEBI:16991","l":"deoxyribonucleic acid","na":1,"nb":4,"a":[["proteintraitsmech%3ABIOLIP_DNA","DNA-binding site"]],"b":[["PH_MEDIUM.yaml","ph_medium"],["sp4_z_medium__eae01184.yaml","sp4_z_medium"],["ureaplasma_medium__abc787f9.yaml","ureaplasma_medium"],["ureaplasma_medium__de7f9c49.yaml","ureaplasma_medium"]]},{"id":"CHEBI:17148","l":"putrescine","na":1,"nb":4,"a":[["proteintraitsmech%3ABIOLIP_PUT","PUT-binding site"]],"b":[["VEILLONELLA_MEDIUM.yaml","veillonella_medium"],["ucm.yaml","ucm"],["veillonella_medium__007a2b69.yaml","veillonella_medium"],["veillonella_medium__9e3e9781.yaml","veillonella_medium"]]},{"id":"CHEBI:28621","l":"triethanolamine","na":1,"nb":4,"a":[["proteintraitsmech%3ABIOLIP_211","211-binding site"]],"b":[["LACTOBACILLUS_PONTIS_MEDIUM.yaml","lactobacillus_pontis_medium"],["lactobacillus_pontis_medium__899ad629.yaml","lactobacillus_pontis_medium"],["mic_cit_herriott_et_al.yaml","mic_cit_herriott_et_al"],["mic_herriott_et_al.yaml","mic_herriott_et_al"]]},{"id":"CHEBI:28631","l":"3-phenylpropionic acid","na":1,"nb":4,"a":[["proteintraitsmech%3ABIOLIP_HCI","HCI-binding site"]],"b":[["ENDOMICROBIUM_PROAVITUM_RSA_MEDIUM.yaml","endomicrobium_proavitum_rsa_medium"],["MODIFIED_AM5_MEDIUM_2.yaml","modified_am5_medium_2"],["am5_medium_elusimicrobium_medium.yaml","am5_medium_elusimicrobium_medium"],["endomicrobium_proavitum_rsa_medium__51692939.yaml","endomicrobium_proavitum_rsa_medium"]]},{"id":"CHEBI:30411","l":"cobalamin","na":4,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_30411","requires cobalamin"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.A.54","The Lysosomal Cobalamin (B12) Transporter (L-B12T) Family"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]],"b":[["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"]]},{"id":"CHEBI:30745","l":"phenylacetic acid","na":1,"nb":4,"a":[["proteintraitsmech%3ABIOLIP_PAC","PAC-binding site"]],"b":[["ENDOMICROBIUM_PROAVITUM_RSA_MEDIUM.yaml","endomicrobium_proavitum_rsa_medium"],["MODIFIED_AM5_MEDIUM_2.yaml","modified_am5_medium_2"],["am5_medium_elusimicrobium_medium.yaml","am5_medium_elusimicrobium_medium"],["endomicrobium_proavitum_rsa_medium__51692939.yaml","endomicrobium_proavitum_rsa_medium"]]},{"id":"CHEBI:41688","l":"crystal violet","na":1,"nb":4,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["1298.yaml","1298"],["ALKALINE_CELLULOSE_AGAR.yaml","alkaline_cellulose_agar"],["acido_thermophile_medium.yaml","acido_thermophile_medium"],["modified_eggerth_gagnon_medium.yaml","modified_eggerth_gagnon_medium"]]},{"id":"CHEBI:47966","l":"aldehydo-N-acetylmuramic acid","na":1,"nb":4,"a":[["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"]],"b":[["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:16602","l":"trichloroethene","na":3,"nb":1,"a":[["EC%3A1.21.99.5","tetrachloroethene reductive dehalogenase"],["RHEA%3A67992","trichloroethene + AH2 = (Z)-1,2-dichloroethene + chloride + A + H(+)"],["RHEA%3A20353","trichloroethene + chloride + A + H(+) = tetrachloroethene + AH2"]],"b":[["dehalococcoides_medium__9ce6016b.yaml","dehalococcoides_medium"]]},{"id":"CHEBI:25351","l":"mevalonic acid","na":1,"nb":3,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["LACTOBACILLUS_MEDIUM_III.yaml","lactobacillus_medium_iii"],["lactobacillus_medium_ii__915ff5f7.yaml","lactobacillus_medium_ii"],["lactobacillus_medium_iii__eb3ab598.yaml","lactobacillus_medium_iii"]]},{"id":"CHEBI:2682","l":"amphotericin B","na":1,"nb":3,"a":[["proteintraitsmech%3ABIOLIP_4UH","4UH-binding site"]],"b":[["HELICOBACTER_MEDIUM.yaml","helicobacter_medium"],["brain_heart_infusion_agar_upplemented_with_10_calf_blood_and_antibiotics.yaml","brain_heart_infusion_agar_upplemented_with_10_calf_blood_and_antibiotics"],["eagles_minimum_essential_medium_mem_containing_antibiotics_and_fetal_bovine_serum.yaml","eagles_minimum_essential_medium_mem_containing_antibiotics_and_fetal_bovine_serum"]]},{"id":"CHEBI:28145","l":"dibenzofuran","na":1,"nb":3,"a":[["RHEA%3A42460","dibenzofuran + NADH + O2 + H(+) = biphenyl-2,2',3-triol + NAD(+)"]],"b":[["MINERAL_MEDIUM_WITH_DIBENZOFURAN.yaml","mineral_medium_with_dibenzofuran"],["cfmm_medium_0_1_dibenzofuran.yaml","cfmm_medium_0_1_dibenzofuran"],["mineral_medium_with_2_chlorobenzoate.yaml","mineral_medium_with_2_chlorobenzoate"]]},{"id":"CHEBI:41808","l":"decane","na":1,"nb":3,"a":[["RHEA%3A76735","decane + reduced [NADPH--hemoprotein reductase] + O2 = 3-decanol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["DESULFOGLAEBA_MEDIUM.yaml","desulfoglaeba_medium"],["MODIFIED_DESULFOGLAEBA_ALKANEXEDENS_MEDIUM.yaml","modified_desulfoglaeba_alkanexedens_medium"],["modified_desulfoglaeba_alkanexedens_medium__f10b64fd.yaml","modified_desulfoglaeba_alkanexedens_medium"]]},{"id":"NCBITaxon:41673","l":"Acidianus brierleyi","na":3,"nb":1,"a":[["TED%3AAF-A0A2U9IEJ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U9IEJ0-F1-model_v4_TED01"],["TED%3AAF-A0A2U9IC53-F1-model_v4_TED01","TED novel fold AF-A0A2U9IC53-F1-model_v4_TED01"],["TED%3AAF-A0A2U9ICQ8-F1-model_v4_TED02","TED novel fold AF-A0A2U9ICQ8-F1-model_v4_TED02"]],"b":[["sulfolobus_medium_anaerobic_for_dsm_2162.yaml","sulfolobus_medium_anaerobic_for_dsm_2162"]]},{"id":"NCBITaxon:44001","l":"Caldicellulosiruptor saccharolyticus","na":3,"nb":1,"a":[["Pfam%3APF12891","Glycoside hydrolase family 44"],["PROSITE%3APS01027","Glycosyl hydrolases family 39 active site"],["Pfam%3APF02011","Glycosyl hydrolase family 48"]],"b":[["caldicellulosiruptor_medium_for_dsm_10319.yaml","caldicellulosiruptor_medium_for_dsm_10319"]]},{"id":"NCBITaxon:823","l":"Parabacteroides distasonis","na":3,"nb":1,"a":[["TED%3AAF-A0A412R0B2-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A412R0B2-F1-model_v4_TED05"],["TED%3AAF-A0A4S2EEJ9-F1-model_v4_TED01","TED novel fold AF-A0A4S2EEJ9-F1-model_v4_TED01"],["TED%3AAF-A0A5C6KM13-F1-model_v4_TED03","TED novel fold AF-A0A5C6KM13-F1-model_v4_TED03"]],"b":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]]},{"id":"CHEBI:15676","l":"allantoin","na":1,"nb":2,"a":[["RHEA%3A30819","allantoin + H2O = allantoate + H(+)"]],"b":[["ALLANTOIN_MINERAL_MEDIUM.yaml","allantoin_mineral_medium"],["allantoin_mineral_medium__75896b1e.yaml","allantoin_mineral_medium"]]},{"id":"CHEBI:16261","l":"chitosan","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_GCS","GCS-binding site"]],"b":[["HALOACTINOMYCES_HALOPHILUS_MEDIUM.yaml","haloactinomyces_halophilus_medium"],["Matsuaria_Medium.yaml","matsuaria_medium"]]},{"id":"CHEBI:17533","l":"N-acetyl-L-glutamic acid","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["proteintraitsmech%3ABIOLIP_NLG","NLG-binding site"]],"b":[["NLDM_defined.yaml","NLDM_defined"]]},{"id":"CHEBI:18026","l":"2,3-dihydroxybenzoic acid","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_DBH","DBH-binding site"]],"b":[["M9_minimal_media_aromix_noCarbon.yaml","M9 minimal media aromix noCarbon"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"]]},{"id":"CHEBI:27941","l":"pullulan","na":1,"nb":2,"a":[["MCSA%3A433","neopullulanase"]],"b":[["ARTIFICIAL_SEAWATER_MEDIUM_WITH_PULLULAN.yaml","artificial_seawater_medium_with_pullulan"],["artificial_seawater_medium_with_pullulan__dbb4c222.yaml","artificial_seawater_medium_with_pullulan"]]},{"id":"CHEBI:28488","l":"m-xylene","na":2,"nb":1,"a":[["EC%3A1.14.15.26","toluene methyl-monooxygenase"],["RHEA%3A51600","m-xylene + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = 3-methylbenzyl alcohol + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"]],"b":[["DESULFOVIRGA_MEDIUM.yaml","desulfovirga_medium"]]},{"id":"CHEBI:30746","l":"benzoic acid","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_BEZ","BEZ-binding site"]],"b":[["UGA_defined_4CarbonMix_Nitrate_anaerobic_pH_7.1.yaml","UGA defined 4CarbonMix Nitrate anaerobic pH 7.1"],["togo_medium_m1949.yaml","togo_medium_m1949"]]},{"id":"CHEBI:30751","l":"formic acid","na":2,"nb":1,"a":[["MCSA%3A38","GTP cyclohydrolase I"],["proteintraitsmech%3ABIOLIP_FMT","FMT-binding site"]],"b":[["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:30764","l":"3-hydroxybenzoic acid","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_3HB","3HB-binding site"]],"b":[["ANAEROBIOSPIRILLUM_THOMASII_MEDIUM.yaml","anaerobiospirillum_thomasii_medium"],["sporotomaculum_medium.yaml","sporotomaculum_medium"]]},{"id":"CHEBI:35366","l":"fatty acid","na":1,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["MODIFIED_AM5_MEDIUM_2.yaml","modified_am5_medium_2"],["modified_am5_medium__421a5fe8.yaml","modified_am5_medium"]]},{"id":"CHEBI:133362","l":"N-acetyl-L-methionyl-L-glutaminyl residue","na":1,"nb":1,"a":[["RHEA%3A50492","N-terminal L-methionyl-L-glutaminyl-[protein] + acetyl-CoA = N-terminal N(alpha)-acetyl-L-methionyl-L-glutaminyl-[protein] + CoA + H(+)"]],"b":[["NLDM_defined.yaml","NLDM_defined"]]},{"id":"CHEBI:15978","l":"sn-glycerol 3-phosphate","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_G3P","G3P-binding site"]],"b":[["modified_dixon_s_agar.yaml","modified_dixon_s_agar"]]},{"id":"CHEBI:16867","l":"D-methionine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MED","MED-binding site"]],"b":[["methionine_salt_schaechter_et_al.yaml","methionine_salt_schaechter_et_al"]]},{"id":"CHEBI:17189","l":"2,5-dihydroxybenzoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_GTQ","GTQ-binding site"]],"b":[["syntrophus_hqg_1_medium.yaml","syntrophus_hqg_1_medium"]]},{"id":"CHEBI:22660","l":"aspartic acid","na":1,"nb":1,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"]],"b":[["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"]]},{"id":"CHEBI:24040","l":"flavin adenine dinucleotide","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_24040","requires flavin adenine dinucleotide"]],"b":[["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:26986","l":"threonine","na":1,"nb":1,"a":[["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["brain_heart_infusion_difco_medium_supplemented_with_dl_threonine_and_glucose.yaml","brain_heart_infusion_difco_medium_supplemented_with_dl_threonine_and_glucose"]]},{"id":"CHEBI:29125","l":"arsenate(3-)","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ART","ART-binding site"]],"b":[["HALARSENATIBACTER_MEDIUM.yaml","halarsenatibacter_medium"]]},{"id":"CHEBI:30452","l":"tellurium atom","na":1,"nb":1,"a":[["TCDB%3A2.A.109","The Tellurium Ion Resistance (TerC) Family"]],"b":[["ucm.yaml","ucm"]]},{"id":"CHEBI:30621","l":"diarsenic trioxide","na":1,"nb":1,"a":[["TCDB%3A1.A.8","The Major Intrinsic Protein (MIP) Family"]],"b":[["ucm.yaml","ucm"]]},{"id":"CHEBI:30845","l":"2-furoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_FOA","FOA-binding site"]],"b":[["pelobacter_fuf_medium.yaml","pelobacter_fuf_medium"]]},{"id":"CHEBI:33083","l":"fluoranthene","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["PLATES_WITH_FLUORANTHENE.yaml","plates_with_fluoranthene"]]},{"id":"CHEBI:40666","l":"1,6-anhydro-N-acetyl-beta-muramic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_AH0","AH0-binding site"]],"b":[["NLDM_defined.yaml","NLDM_defined"]]},{"id":"NCBITaxon:1670455","l":"Sulfodiicoccus acidiphilus","na":1,"nb":1,"a":[["TED%3AAF-A0A348B6D9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A348B6D9-F1-model_v4_TED02"]],"b":[["sulfolobus_medium_anaerobic_for_dsm_2162.yaml","sulfolobus_medium_anaerobic_for_dsm_2162"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":1,"nb":1,"a":[["TED%3AAF-A0A4R6CRR7-F1-model_v4_TED01","TED novel fold AF-A0A4R6CRR7-F1-model_v4_TED01"]],"b":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]]},{"id":"NCBITaxon:69656","l":"Sulfurisphaera ohwakuensis","na":1,"nb":1,"a":[["TED%3AAF-A0A650CK52-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A650CK52-F1-model_v4_TED01"]],"b":[["sulfolobus_medium_anaerobic_for_dsm_2162.yaml","sulfolobus_medium_anaerobic_for_dsm_2162"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/ProteinTraitsMech--MediaIngredientMech.json b/assets/fleet/edges/ProteinTraitsMech--MediaIngredientMech.json index 9f6539b..de7a5e7 100644 --- a/assets/fleet/edges/ProteinTraitsMech--MediaIngredientMech.json +++ b/assets/fleet/edges/ProteinTraitsMech--MediaIngredientMech.json @@ -1 +1 @@ -{"a":"ProteinTraitsMech","b":"MediaIngredientMech","base":{"ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record=","MediaIngredientMech":"https://github.com/CultureBotAI/MediaIngredientMech/blob/main/data/ingredients/"},"n":792,"by":{"CHEBI":791,"UBERON":1},"terms":[{"id":"CHEBI:15377","l":"water","na":9376,"nb":12,"a":[["EC%3A1.1.1.115","ribose 1-dehydrogenase (NADP(+))"],["EC%3A1.1.1.132","GDP-mannose 6-dehydrogenase"],["EC%3A1.1.1.136","UDP-N-acetylglucosamine 6-dehydrogenase"],["EC%3A1.1.1.186","dTDP-galactose 6-dehydrogenase"],["EC%3A1.1.1.192","long-chain-alcohol dehydrogenase"],["EC%3A1.1.1.205","IMP dehydrogenase"]],"b":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/Brain_Heart_Infusion_Broth.yaml","Brain heart infusion broth"],["mapped/Distilled_Water.yaml","Distilled water"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"]]},{"id":"CHEBI:15740","l":"formate","na":173,"nb":8,"a":[["EC%3A1.1.98.6","ribonucleoside-triphosphate reductase (formate)"],["EC%3A1.10.3.15","grixazone synthase"],["EC%3A1.13.11.41","2,4'-dihydroxyacetophenone dioxygenase"],["EC%3A1.13.11.53","acireductone dioxygenase (Ni(2+)-requiring)"],["EC%3A1.13.11.54","acireductone dioxygenase (Fe(2+)-requiring)"],["EC%3A1.13.11.72","2-hydroxyethylphosphonate dioxygenase"]],"b":[["mapped/Formate.yaml","Formate"],["mapped/Formate3-methyl_Mercaptopropionate.yaml","Formate+3-methyl Mercaptopropionate"],["mapped/Formatedimethylsulfide.yaml","Formate+dimethylsulfide"],["mapped/Formatemethanol.yaml","Formate+methanol"],["mapped/Formatetetramethylammonium.yaml","Formate+tetramethylammonium"],["mapped/Formatetrimethylamine.yaml","Formate+trimethylamine"]]},{"id":"CHEBI:33709","l":"amino acid","na":8,"nb":54,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.23","The Dicarboxylate/Amino Acid:Cation (Na+ or H+) Symporter (DAACS) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A1.V.1","The Filamentous Cyanobacterial Septal Pore (Septum) Family"],["TCDB%3A1.A.24","The Gap Junction-forming Connexin (Connexin) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/1-aminocyclopropane-1-carboxylate.yaml","1-aminocyclopropane-1-carboxylate"],["mapped/3-Chloro-L-tyrosine.yaml","3-Chloro-L-tyrosine"],["mapped/3-aminobutyric_Acid.yaml","3-aminobutyric acid"],["mapped/4-azido-L-phenylalanine.yaml","4-azido-L-phenylalanine"],["mapped/5-Aminolevulinic_Acid.yaml","5-Aminolevulinic acid"],["mapped/5-aminovaleric_Acid.yaml","5-Aminovaleric acid"]]},{"id":"CHEBI:18276","l":"dihydrogen","na":42,"nb":8,"a":[["EC%3A1.12.1.2","hydrogen dehydrogenase"],["EC%3A1.12.1.3","hydrogen dehydrogenase (NADP(+))"],["EC%3A1.12.1.4","hydrogenase (NAD(+), ferredoxin)"],["EC%3A1.12.1.5","hydrogen dehydrogenase [NAD(P)(+)]"],["EC%3A1.12.2.1","cytochrome-c3 hydrogenase"],["EC%3A1.12.5.1","hydrogen:quinone oxidoreductase"]],"b":[["mapped/H23-methyl_Mercaptopropionate.yaml","H2+3-methyl Mercaptopropionate"],["mapped/H2_CO2.yaml","H2 + CO2"],["mapped/H2dimethylsulfide.yaml","H2+dimethylsulfide"],["mapped/H2methanol.yaml","H2+methanol"],["mapped/H2tetramethylammonium.yaml","H2+tetramethylammonium"],["mapped/H2trimethylamine.yaml","H2+trimethylamine"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":1616,"nb":7,"a":[["EC%3A1.1.1.170","3beta-hydroxysteroid-4alpha-carboxylate 3-dehydrogenase (decarboxylating)"],["EC%3A1.1.1.262","4-hydroxythreonine-4-phosphate dehydrogenase"],["EC%3A1.1.1.276","serine 3-dehydrogenase (NADP(+))"],["EC%3A1.1.1.286","isocitrate--homoisocitrate dehydrogenase"],["EC%3A1.1.1.305","UDP-glucuronic acid oxidase (UDP-4-keto-hexauronic acid decarboxylating)"],["EC%3A1.1.1.343","phosphogluconate dehydrogenase (NAD(+)-dependent, decarboxylating)"]],"b":[["mapped/1-butanolCO2.yaml","1-butanol+CO2"],["mapped/1-propanolCO2.yaml","1-propanol+CO2"],["mapped/2-butanolCO2.yaml","2-butanol+CO2"],["mapped/2-propanolCO2.yaml","2-propanol+CO2"],["mapped/Carbon_dioxide_gas.yaml","Carbon dioxide gas"],["mapped/CyclopentanolCO2.yaml","Cyclopentanol+CO2"]]},{"id":"CHEBI:17306","l":"maltose","na":27,"nb":6,"a":[["EC%3A2.3.1.79","maltose O-acetyltransferase"],["EC%3A2.4.1.139","maltose synthase"],["EC%3A2.4.1.8","maltose phosphorylase"],["EC%3A2.7.1.175","maltokinase"],["EC%3A2.7.1.208","protein-N(pi)-phosphohistidine--maltose phosphotransferase"],["EC%3A3.1.3.90","maltose 6'-phosphate phosphatase"]],"b":[["mapped/D-Maltose_Monohydrate.yaml","D-Maltose monohydrate"],["mapped/Glucose_Maltose_Cellobiose_Starch_Glycerol.yaml","Glucose + Maltose + Cellobiose + Starch + Glycerol"],["mapped/Maltose.yaml","Maltose"],["mapped/Maltose_2.yaml","maltose"],["mapped/Maltose_Hydrate.yaml","Maltose Hydrate"],["mapped/PY-maltose.yaml","PY-maltose"]]},{"id":"CHEBI:17992","l":"sucrose","na":49,"nb":4,"a":[["EC%3A1.1.99.13","glucoside 3-dehydrogenase (acceptor)"],["EC%3A2.4.1.10","levansucrase"],["EC%3A2.4.1.125","sucrose--1,6-alpha-glucan 3(6)-alpha-glucosyltransferase"],["EC%3A2.4.1.13","sucrose synthase"],["EC%3A2.4.1.166","raffinose--raffinose alpha-galactosyltransferase"],["EC%3A2.4.1.167","sucrose 6(F)-alpha-galactosyltransferase"]],"b":[["mapped/D-Sucrose.yaml","D-Sucrose"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Sucrose.yaml","Sucrose"],["mapped/Sucrose_Yeast_Extract.yaml","Sucrose + Yeast Extract"]]},{"id":"CHEBI:17057","l":"cellobiose","na":19,"nb":4,"a":[["EC%3A1.1.3.5","hexose oxidase"],["EC%3A1.1.99.18","cellobiose dehydrogenase (acceptor)"],["EC%3A2.4.1.20","cellobiose phosphorylase"],["EC%3A2.7.1.205","protein-N(pi)-phosphohistidine--D-cellobiose phosphotransferase"],["EC%3A2.7.1.85","beta-glucoside kinase"],["EC%3A5.1.3.11","cellobiose epimerase"]],"b":[["mapped/Cellobiose.yaml","Cellobiose"],["mapped/Glucose_Cellobiose_Starch_Trypticase_Yeast_Extract.yaml","Glucose + Cellobiose + Starch + Trypticase + Yeast Extract"],["mapped/Glucose_Maltose_Cellobiose_Starch_Glycerol.yaml","Glucose + Maltose + Cellobiose + Starch + Glycerol"],["mapped/PY-cellobiose.yaml","PY-cellobiose"]]},{"id":"CHEBI:16857","l":"L-threonine","na":9,"nb":4,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.23","The Dicarboxylate/Amino Acid:Cation (Na+ or H+) Symporter (DAACS) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.42","The Hydroxy/Aromatic Amino Acid Permease (HAAAP) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-threonine.yaml","L-Threonine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Threonine.yaml","Threonine"]]},{"id":"CHEBI:17126","l":"carnitine","na":7,"nb":4,"a":[["EC%3A1.1.1.108","carnitine 3-dehydrogenase"],["EC%3A1.14.11.1","gamma-butyrobetaine dioxygenase"],["EC%3A4.1.1.42","carnitine decarboxylase"],["RHEA%3A24028","4-(trimethylamino)butanoate + 2-oxoglutarate + O2 = carnitine + succinate + CO2"],["RHEA%3A21576","carnitine + H(+) = 2-methylcholine + CO2"],["RHEA%3A19265","carnitine + NAD(+) = 3-dehydrocarnitine + NADH + H(+)"]],"b":[["mapped/Carnitine_Dl_Hydrochloride.yaml","Carnitine (Dl) Hydrochloride"],["mapped/Carnitine_Hydrochloride.yaml","Carnitine Hydrochloride"],["mapped/Dl-carnitine.yaml","DL-carnitine"],["mapped/L-Carnitine.yaml","L-Carnitine"]]},{"id":"CHEBI:17439","l":"cyanocob(III)alamin","na":5,"nb":4,"a":[["EC%3A1.16.1.6","cyanocobalamin reductase"],["RHEA%3A16113","2 cob(II)alamin-[cyanocobalamin reductase] + 2 hydrogen cyanide + NADP(+) = 2 cyanocob(III)alamin + 2 apo-[cyanocobalamin reductase] + NADPH + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["TCDB%3A9.B.87","The Selenoprotein P Receptor (SelP-Receptor) Family"]],"b":[["mapped/Cyanocobalamin.yaml","Cyanocobalamin"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Thauers_Vitamin_Mix_No_Biotin.yaml","Thauer's vitamin mix no Biotin"],["mapped/Vitamin_B12.yaml","Vitamin B12"]]},{"id":"CHEBI:30089","l":"acetate","na":302,"nb":3,"a":[["EC%3A1.1.1.318","eugenol synthase"],["EC%3A1.1.1.319","isoeugenol synthase"],["EC%3A1.13.11.50","acetylacetone-cleaving enzyme"],["EC%3A1.13.12.4","lactate 2-monooxygenase"],["EC%3A1.14.13.54","ketosteroid monooxygenase"],["EC%3A1.14.14.19","steroid 17alpha-monooxygenase"]],"b":[["mapped/Acetate.yaml","Acetate"],["mapped/Acetate_Carbon_Source.yaml","Acetate (carbon source)"],["mapped/Glucose_Acetate.yaml","Glucose + Acetate"]]},{"id":"CHEBI:4167","l":"D-glucopyranose","na":217,"nb":3,"a":[["EC%3A1.1.1.118","glucose 1-dehydrogenase (NAD(+))"],["EC%3A1.1.1.119","glucose 1-dehydrogenase (NADP(+))"],["EC%3A1.1.1.359","aldose 1-dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.1.360","glucose/galactose 1-dehydrogenase"],["EC%3A1.1.1.432","6-dehydroglucose reductase"],["EC%3A1.1.1.47","glucose 1-dehydrogenase [NAD(P)(+)]"]],"b":[["mapped/D-glucose.yaml","D-Glucose"],["mapped/Dextrose.yaml","Dextrose"],["mapped/Glucose_Xylose.yaml","Glucose + Xylose"]]},{"id":"CHEBI:17754","l":"glycerol","na":95,"nb":3,"a":[["EC%3A1.1.1.156","glycerol 2-dehydrogenase (NADP(+))"],["EC%3A1.1.1.372","D/L-glyceraldehyde reductase"],["EC%3A1.1.1.6","glycerol dehydrogenase"],["EC%3A1.1.1.72","glycerol dehydrogenase (NADP(+))"],["EC%3A1.1.99.22","glycerol dehydrogenase (acceptor)"],["EC%3A2.4.1.332","1,2-alpha-glucosylglycerol phosphorylase"]],"b":[["mapped/Glucose_Maltose_Cellobiose_Starch_Glycerol.yaml","Glucose + Maltose + Cellobiose + Starch + Glycerol"],["mapped/Glycerol.yaml","Glycerol"],["mapped/Glycerol_2.yaml","glycerol"]]},{"id":"CHEBI:17790","l":"methanol","na":86,"nb":3,"a":[["EC%3A1.1.1.244","methanol dehydrogenase"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.99.37","methanol dehydrogenase (nicotinoprotein)"],["EC%3A1.14.13.25","methane monooxygenase (soluble)"],["EC%3A1.14.14.117","aflatoxin B synthase"]],"b":[["mapped/Formatemethanol.yaml","Formate+methanol"],["mapped/H2methanol.yaml","H2+methanol"],["mapped/Methanol.yaml","Methanol"]]},{"id":"CHEBI:17268","l":"myo-inositol","na":42,"nb":3,"a":[["EC%3A1.1.1.18","inositol 2-dehydrogenase"],["EC%3A1.1.5.n1","quinoprotein inositol dehydrogenase"],["EC%3A1.13.99.1","inositol oxygenase"],["EC%3A2.1.1.129","inositol 4-methyltransferase"],["EC%3A2.1.1.39","inositol 3-methyltransferase"],["EC%3A2.1.1.40","inositol 1-methyltransferase"]],"b":[["mapped/M-inositol.yaml","m-Inositol"],["mapped/Myo-inositol.yaml","myo-Inositol"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:17925","l":"alpha-D-glucose","na":35,"nb":3,"a":[["EC%3A2.4.1.231","alpha,alpha-trehalose phosphorylase (configuration-retaining)"],["EC%3A3.1.3.58","sugar-terminal-phosphatase"],["EC%3A3.1.3.9","glucose-6-phosphatase"],["EC%3A3.2.1.10","oligo-1,6-glucosidase"],["EC%3A3.2.1.219","palatinase"],["EC%3A3.2.1.28","alpha,alpha-trehalase"]],"b":[["mapped/Alpha-d-glucose.yaml","alpha-D-Glucose"],["mapped/Glucose.yaml","Glucose"],["mapped/Glucose_Xylose.yaml","Glucose + Xylose"]]},{"id":"CHEBI:17437","l":"dimethyl sulfide","na":21,"nb":3,"a":[["EC%3A1.14.13.131","dissimilatory dimethyl-sulfide monooxygenase"],["EC%3A1.14.13.245","assimilatory dimethylsulfide S-monooxygenase"],["EC%3A1.8.2.4","dimethyl sulfide:cytochrome c2 reductase"],["EC%3A1.8.5.3","respiratory dimethylsulfoxide reductase"],["EC%3A2.1.1.19","trimethylsulfonium--tetrahydrofolate N-methyltransferase"],["EC%3A2.1.1.334","methanethiol S-methyltransferase"]],"b":[["mapped/Dimethyl_Sulfide.yaml","Dimethyl sulfide"],["mapped/Formatedimethylsulfide.yaml","Formate+dimethylsulfide"],["mapped/H2dimethylsulfide.yaml","H2+dimethylsulfide"]]},{"id":"CHEBI:8150","l":"Bacto Soytone","na":20,"nb":3,"a":[["TCDB%3A2.A.31","The Anion Exchanger (AE) Family"],["TCDB%3A1.A.31","The Annexin (Annexin) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.A.36","The Ca2+-dependent Phospholipid Scramblase (Scramblase) Family"],["TCDB%3A1.A.17","The Calcium-dependent Chloride Channel (Ca-ClC) Family"],["TCDB%3A9.A.14","The G-protein-coupled receptor (GPCR) Family"]],"b":[["mapped/Bacto_Soytone.yaml","Bacto Soytone"],["mapped/Sodium_L-lactate.yaml","Sodium L-lactate"],["mapped/Soy_Peptone.yaml","Soy peptone"]]},{"id":"CHEBI:15428","l":"glycine","na":13,"nb":3,"a":[["MCSA%3A718","caspase-1"],["MCSA%3A599","dipeptidase E"],["MCSA%3A906","gelatinase A"],["MCSA%3A762","glycine C-acetyltransferase"],["MCSA%3A746","L-peptidase"],["MCSA%3A477","picornain 3C"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/Glycine.yaml","Glycine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:16808","l":"2-dehydro-D-gluconate","na":12,"nb":3,"a":[["EC%3A1.1.1.215","gluconate 2-dehydrogenase"],["EC%3A1.1.1.274","2,5-didehydrogluconate reductase (2-dehydro-D-gluconate-forming)"],["EC%3A1.1.99.3","gluconate 2-dehydrogenase (acceptor)"],["EC%3A1.1.99.4","dehydrogluconate dehydrogenase"],["EC%3A2.7.1.13","dehydrogluconokinase"],["RHEA%3A12368","2-dehydro-D-gluconate + A = 2,5-didehydro-D-gluconate + AH2"]],"b":[["mapped/2-dehydro-D-gluconate.yaml","2-dehydro-D-gluconate"],["mapped/Potassium_2-dehydro-D-gluconate.yaml","Potassium 2-dehydro-D-gluconate"],["mapped/Potassium_2-ketogluconate.yaml","Potassium 2-ketogluconate"]]},{"id":"CHEBI:16977","l":"L-alanine","na":11,"nb":3,"a":[["ARO%3A3004943","cycloserine resistant ald"],["ARO%3A3004946","cycloserine resistant alr"],["ARO%3A3004945","Mycobacterium tuberculosis ald mutations confer resistance to cycloserine"],["ARO%3A3004947","Mycobacterium tuberculosis alr with mutation conferring resistance to cycloserine"],["MCSA%3A609","alpha-lytic endopeptidase"],["MCSA%3A238","assemblin"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-alanine.yaml","L-Alanine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:58143","l":"5-dehydro-D-gluconate","na":10,"nb":3,"a":[["EC%3A1.1.1.264","L-idonate 5-dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.1.366","L-idonate 5-dehydrogenase (NAD(+))"],["EC%3A1.1.1.69","gluconate 5-dehydrogenase"],["RHEA%3A30103","2,5-didehydro-D-gluconate + NADH + H(+) = 5-dehydro-D-gluconate + NAD(+)"],["RHEA%3A28819","5-dehydro-D-gluconate(in) + H(+)(in) = 5-dehydro-D-gluconate(out) + H(+)(out)"],["RHEA%3A27634","5-dehydro-D-gluconate + NADP(+) = 2,5-didehydro-D-gluconate + NADPH + H(+)"]],"b":[["mapped/5-dehydro-D-gluconate.yaml","5-dehydro-D-gluconate"],["mapped/Potassium_5-dehydro-D-gluconate.yaml","Potassium 5-dehydro-D-gluconate"],["mapped/Potassium_5-ketogluconate.yaml","Potassium 5-ketogluconate"]]},{"id":"CHEBI:18167","l":"alpha-maltose","na":9,"nb":3,"a":[["EC%3A5.1.3.21","maltose epimerase"],["EC%3A5.1.3.3","aldose 1-epimerase"],["RHEA%3A21228","alpha-maltose = beta-maltose"],["MCSA%3A479","4-alpha-glucanotransferase"],["MCSA%3A397","alpha-amylase"],["MCSA%3A905","glucan 1,4-alpha-maltohydrolase"]],"b":[["mapped/Maltose.yaml","Maltose"],["mapped/Maltose_2.yaml","maltose"],["mapped/Starch.yaml","Starch"]]},{"id":"CHEBI:33229","l":"vitamin (role)","na":3,"nb":9,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.21","The Solute:Sodium Symporter (SSS) Family"]],"b":[["mapped/4-Pyridoxic_Acid.yaml","4-Pyridoxic acid"],["mapped/Ca-folinate.yaml","Ca-folinate"],["mapped/Fad.yaml","FAD"],["mapped/Folinic_Acid.yaml","Folinic acid"],["mapped/L-Carnitine.yaml","L-Carnitine"],["mapped/Na-ascorbate.yaml","Na-ascorbate"]]},{"id":"CHEBI:17015","l":"riboflavin","na":3,"nb":8,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17015","requires riboflavin"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_RBF","RBF-binding site"]],"b":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/Riboflavin.yaml","Riboflavin"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Thauers_Vitamin_Mix_No_Biotin.yaml","Thauer's vitamin mix no Biotin"]]},{"id":"CHEBI:17029","l":"chitin","na":8,"nb":3,"a":[["EC%3A2.4.1.16","chitin synthase"],["EC%3A3.5.1.41","chitin deacetylase"],["RHEA%3A85463","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-1)-N-acetyl-alpha-D-glucosamine"],["RHEA%3A50672","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-2) + N,N'-diacetylchitobiose"],["RHEA%3A85003","[(1->4)-N-acetyl-beta-D-glucosaminyl](n)-N-acetyl-alpha-D-glucosamine + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n) + N-acetyl-alpha-D-glucosamine"],["RHEA%3A10464","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + n H2O = chitosan + n acetate"]],"b":[["mapped/Chitin.yaml","Chitin"],["unmapped/Chitin_From_Shrimp_Shells.yaml","Chitin from shrimp shells"],["unmapped/Colloidal_Chitin.yaml","Colloidal chitin"]]},{"id":"CHEBI:18019","l":"L-lysine","na":8,"nb":3,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A2.A.53","The Sulfate Permease (SulP) Family"],["MCSA%3A746","L-peptidase"],["MCSA%3A786","peptidyl-Lys metalloendopeptidase"],["MCSA%3A597","ubiquitinyl hydrolase 1 (peptidase C12 type)"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-lysine.yaml","L-Lysine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:27470","l":"folic acid","na":3,"nb":7,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_27470","requires folic acid"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["proteintraitsmech%3ABIOLIP_FOL","FOL-binding site"]],"b":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Folic_Acid.yaml","Folic acid"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Thauers_Vitamin_Mix_No_Biotin.yaml","Thauer's vitamin mix no Biotin"]]},{"id":"CHEBI:17053","l":"L-aspartic acid","na":3,"nb":5,"a":[["MCSA%3A718","caspase-1"],["MCSA%3A599","dipeptidase E"],["proteintraitsmech%3ABIOLIP_ASP","ASP-binding site"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-Aspartic_Acid_Potassium_Salt.yaml","L-Aspartic acid potassium salt"],["mapped/L-Aspartic_Acid_Sodium_Salt_Monohydrate.yaml","L-Aspartic acid sodium salt monohydrate"],["mapped/L-aspartic_Acid.yaml","L-Aspartic acid"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:16015","l":"L-glutamic acid","na":3,"nb":4,"a":[["MCSA%3A747","gamma-glutamyl hydrolase"],["proteintraitsmech%3ABIOLIP_GGL","GGL-binding site"],["proteintraitsmech%3ABIOLIP_GLU","GLU-binding site"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-Glutamic_Acid_Monopotassium_Salt_Monohydrate.yaml","L-Glutamic acid monopotassium salt monohydrate"],["mapped/L-glutamic_Acid.yaml","L-Glutamic acid"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:17115","l":"L-serine","na":4,"nb":3,"a":[["MCSA%3A609","alpha-lytic endopeptidase"],["MCSA%3A238","assemblin"],["MCSA%3A688","classical-complement-pathway C3/C5 convertase"],["proteintraitsmech%3ABIOLIP_SER","SER-binding site"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-serine.yaml","L-Serine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:17191","l":"L-isoleucine","na":4,"nb":3,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.26","The Branched Chain Amino Acid:Cation Symporter (LIVCS) Family"],["proteintraitsmech%3ABIOLIP_ILE","ILE-binding site"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-isoleucine.yaml","L-Isoleucine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:18050","l":"L-glutamine","na":4,"nb":3,"a":[["MCSA%3A596","deuterolysin"],["MCSA%3A477","picornain 3C"],["MCSA%3A763","picornain 3C"],["proteintraitsmech%3ABIOLIP_GLN","GLN-binding site"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-glutamine.yaml","L-Glutamine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:16467","l":"L-arginine","na":3,"nb":3,"a":[["MCSA%3A688","classical-complement-pathway C3/C5 convertase"],["MCSA%3A425","plasmin"],["MCSA%3A798","t-plasminogen activator"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-arginine.yaml","L-Arginine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:16643","l":"L-methionine","na":3,"nb":3,"a":[["MCSA%3A917","methionyl aminopeptidase"],["MCSA%3A965","Viperin"],["proteintraitsmech%3ABIOLIP_MET","MET-binding site"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-methionine.yaml","L-Methionine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:17203","l":"L-proline","na":3,"nb":3,"a":[["MCSA%3A403","astacin"],["MCSA%3A379","Xaa-Pro aminopeptidase"],["proteintraitsmech%3ABIOLIP_PRO","PRO-binding site"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-proline.yaml","L-Proline"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:17295","l":"L-phenylalanine","na":3,"nb":3,"a":[["MCSA%3A595","scytalidopepsin B"],["MCSA%3A598","streptopain"],["proteintraitsmech%3ABIOLIP_PHE","PHE-binding site"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-phenylalanine.yaml","L-Phenylalanine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:30915","l":"2-oxoglutaric acid","na":3,"nb":3,"a":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["TCDB%3A2.A.56","The Tripartite ATP-independent Periplasmic Transporter (TRAP-T) Family"],["proteintraitsmech%3ABIOLIP_AKG","AKG-binding site"]],"b":[["mapped/A-Ketoglutaric_Acid_Disodium_Salt_Hydrate.yaml","a-Ketoglutaric acid disodium salt hydrate"],["mapped/Alpha-ketoglutaric_Acid.yaml","alpha-ketoglutaric acid"],["mapped/Na2_Alpha-ketoglutarate.yaml","Na2 alpha-ketoglutarate"]]},{"id":"CHEBI:29034","l":"iron(3+)","na":376,"nb":2,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29034","requires iron(3+)"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.11","glucoside 3-dehydrogenase (cytochrome c)"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.2.3","L-lactate dehydrogenase (cytochrome)"],["EC%3A1.1.2.4","D-lactate dehydrogenase (cytochrome)"]],"b":[["mapped/Ferric_Iron.yaml","Ferric Iron"],["mapped/Ferrous_Ion.yaml","Ferrous Ion"]]},{"id":"CHEBI:17154","l":"nicotinamide","na":92,"nb":2,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17154","requires nicotinamide"],["EC%3A2.1.1.1","nicotinamide N-methyltransferase"],["EC%3A2.3.1.286","protein acetyllysine N-acetyltransferase"],["EC%3A2.3.1.313","NAD-dependent lipoamidase"],["EC%3A2.4.2.12","nicotinamide phosphoribosyltransferase"],["EC%3A2.4.2.31","NAD(+)--protein-arginine ADP-ribosyltransferase"]],"b":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Nicotinamide.yaml","Nicotinamide"]]},{"id":"CHEBI:16113","l":"cholesterol","na":82,"nb":2,"a":[["EC%3A1.1.3.6","cholesterol oxidase"],["EC%3A1.14.14.23","cholesterol 7alpha-monooxygenase"],["EC%3A1.14.14.25","cholesterol 24-hydroxylase"],["EC%3A1.14.15.6","cholesterol monooxygenase (side-chain-cleaving)"],["EC%3A1.14.19.21","cholesterol 7-desaturase"],["EC%3A1.14.99.38","cholesterol 25-monooxygenase"]],"b":[["mapped/Cholesterol_Lipid_Concentrate.yaml","cholesterol lipid concentrate"],["mapped/cholesterol.yaml","cholesterol"]]},{"id":"CHEBI:15354","l":"choline","na":78,"nb":2,"a":[["EC%3A1.1.3.17","choline oxidase"],["EC%3A1.1.99.1","choline dehydrogenase"],["EC%3A1.14.15.7","choline monooxygenase"],["EC%3A2.3.1.6","choline O-acetyltransferase"],["EC%3A2.3.1.91","sinapoylglucose--choline O-sinapoyltransferase"],["EC%3A2.7.1.32","choline kinase"]],"b":[["mapped/Choline.yaml","Choline"],["unmapped/Cholinium_Alpha_Ketoglutarate.yaml","Cholinium alpha ketoglutarate"]]},{"id":"CHEBI:16763","l":"2-oxobutanoate","na":51,"nb":2,"a":[["EC%3A1.1.1.n5","3-methylmalate dehydrogenase"],["EC%3A1.2.7.1","pyruvate synthase"],["EC%3A2.2.1.6","acetolactate synthase"],["EC%3A2.3.3.6","2-ethylmalate synthase"],["EC%3A2.6.1.44","alanine--glyoxylate transaminase"],["EC%3A3.5.99.10","2-iminobutanoate/2-iminopropanoate deaminase"]],"b":[["mapped/2-oxobutanoate.yaml","2-oxobutanoate"],["mapped/2-oxobutyric_Acid_Sodium_Salt.yaml","2-oxobutyric acid sodium salt"]]},{"id":"CHEBI:16870","l":"choline alfoscerate","na":48,"nb":2,"a":[["EC%3A3.1.1.5","lysophospholipase"],["EC%3A3.1.4.2","glycerophosphocholine phosphodiesterase"],["EC%3A3.1.4.38","glycerophosphocholine cholinephosphodiesterase"],["EC%3A3.3.2.2","lysoplasmalogenase"],["RHEA%3A40835","1,2-di-(9Z-octadecenoyl)-sn-glycero-3-phosphocholine + 2 H2O = sn-glycerol 3-phosphocholine + 2 (9Z)-octadecenoate + 2 H(+)"],["RHEA%3A40975","1,2-dihexadecanoyl-sn-glycero-3-phosphocholine + 2 H2O = sn-glycerol 3-phosphocholine + 2 hexadecanoate + 2 H(+)"]],"b":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Sn-glycero-3-phosphocholine.yaml","sn-glycero-3-phosphocholine"]]},{"id":"CHEBI:17568","l":"uracil","na":47,"nb":2,"a":[["EC%3A1.14.11.10","pyrimidine-deoxynucleoside 1'-dioxygenase"],["EC%3A1.14.99.46","pyrimidine monooxygenase"],["EC%3A1.17.99.4","uracil/thymine dehydrogenase"],["EC%3A1.3.1.1","dihydrouracil dehydrogenase (NAD(+))"],["EC%3A1.3.1.2","dihydropyrimidine dehydrogenase (NADP(+))"],["EC%3A1.3.3.7","dihydrouracil oxidase"]],"b":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Uracil.yaml","Uracil"]]},{"id":"CHEBI:16708","l":"adenine","na":44,"nb":2,"a":[["EC%3A1.5.99.12","cytokinin dehydrogenase"],["EC%3A2.4.2.28","S-methyl-5'-thioadenosine phosphorylase"],["EC%3A2.4.2.52","triphosphoribosyl-dephospho-CoA synthase"],["EC%3A2.4.2.57","AMP phosphorylase"],["EC%3A2.4.2.7","adenine phosphoribosyltransferase"],["EC%3A2.4.99.17","S-adenosylmethionine:tRNA ribosyltransferase-isomerase"]],"b":[["mapped/Adenine.yaml","Adenine"],["mapped/Adenine_Hydrochloride_Hydrate.yaml","Adenine hydrochloride hydrate"]]},{"id":"CHEBI:506227","l":"N-acetyl-D-glucosamine","na":44,"nb":2,"a":[["EC%3A1.1.3.29","N-acylhexosamine oxidase"],["EC%3A2.3.1.3","glucosamine N-acetyltransferase"],["EC%3A2.4.1.211","1,3-beta-galactosyl-N-acetylhexosamine phosphorylase"],["EC%3A2.4.1.280","N,N'-diacetylchitobiose phosphorylase"],["EC%3A2.4.1.320","1,4-beta-mannosyl-N-acetylglucosamine phosphorylase"],["EC%3A2.4.1.90","N-acetyllactosamine synthase"]],"b":[["mapped/N-acetyl-d-glucosamine.yaml","N-Acetyl-D-glucosamine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:16335","l":"adenosine","na":35,"nb":2,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16335","requires vitamin B12"],["EC%3A1.1.3.39","nucleoside oxidase (H2O2-forming)"],["EC%3A2.7.1.114","AMP--thymidine kinase"],["EC%3A2.7.1.20","adenosine kinase"],["EC%3A3.13.2.1","adenosylhomocysteinase"],["EC%3A3.13.2.3","(R)-S-adenosyl-L-methionine hydrolase (adenosine-forming)"]],"b":[["mapped/Adenosine.yaml","Adenosine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:17750","l":"glycine betaine","na":33,"nb":2,"a":[["EC%3A1.1.3.17","choline oxidase"],["EC%3A1.13.11.90","[1-hydroxy-2-(trimethylamino)ethyl]phosphonate dioxygenase (glycine- betaine-forming)"],["EC%3A1.14.13.251","glycine betaine monooxygenase"],["EC%3A1.2.1.8","betaine-aldehyde dehydrogenase"],["EC%3A1.21.4.4","betaine reductase"],["EC%3A2.1.1.157","sarcosine/dimethylglycine N-methyltransferase"]],"b":[["mapped/Betaine_Hydrochloride.yaml","Betaine hydrochloride"],["mapped/Betaine_X_H2o.yaml","Betaine x H2O"]]},{"id":"CHEBI:17596","l":"inosine","na":32,"nb":2,"a":[["EC%3A1.1.3.28","nucleoside oxidase"],["EC%3A2.7.1.73","inosine kinase"],["EC%3A3.1.3.99","IMP-specific 5'-nucleotidase"],["EC%3A3.13.1.9","S-inosyl-L-homocysteine hydrolase"],["EC%3A3.2.2.2","inosine nucleosidase"],["EC%3A3.5.4.4","adenosine deaminase"]],"b":[["mapped/Inosine.yaml","Inosine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:17712","l":"9H-xanthine","na":32,"nb":2,"a":[["EC%3A1.14.11.48","xanthine dioxygenase"],["EC%3A1.14.13.128","7-methylxanthine demethylase"],["EC%3A1.14.13.179","methylxanthine N(3)-demethylase"],["EC%3A1.17.1.4","xanthine dehydrogenase"],["EC%3A1.17.3.2","xanthine oxidase"],["EC%3A2.4.2.1","purine-nucleoside phosphorylase"]],"b":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Xanthine.yaml","Xanthine"]]},{"id":"CHEBI:17368","l":"hypoxanthine","na":28,"nb":2,"a":[["EC%3A1.17.1.4","xanthine dehydrogenase"],["EC%3A1.17.3.2","xanthine oxidase"],["EC%3A2.4.2.44","S-methyl-5'-thioinosine phosphorylase"],["EC%3A2.4.2.8","hypoxanthine phosphoribosyltransferase"],["EC%3A3.2.2.12","inosinate nucleosidase"],["EC%3A3.2.2.2","inosine nucleosidase"]],"b":[["mapped/Hypoxanthine.yaml","Hypoxanthine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:16235","l":"guanine","na":27,"nb":2,"a":[["EC%3A2.4.2.1","purine-nucleoside phosphorylase"],["EC%3A2.4.2.15","guanosine phosphorylase"],["EC%3A2.4.2.29","tRNA-guanosine(34) preQ1 transglycosylase"],["EC%3A2.4.2.48","tRNA-guanine(15) transglycosylase"],["EC%3A2.4.2.64","tRNA-guanosine(34) queuine transglycosylase"],["EC%3A2.4.2.8","hypoxanthine phosphoribosyltransferase"]],"b":[["mapped/Guanine.yaml","Guanine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:16704","l":"uridine","na":26,"nb":2,"a":[["EC%3A1.14.11.3","pyrimidine-deoxynucleoside 2'-dioxygenase"],["EC%3A2.4.2.2","pyrimidine-nucleoside phosphorylase"],["EC%3A2.4.2.3","uridine phosphorylase"],["EC%3A2.7.1.48","uridine/cytidine kinase"],["EC%3A3.2.2.3","uridine nucleosidase"],["EC%3A3.2.2.8","ribosylpyrimidine nucleosidase"]],"b":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Uridine.yaml","Uridine"]]},{"id":"CHEBI:17562","l":"cytidine","na":25,"nb":2,"a":[["EC%3A2.7.1.213","cytidine kinase"],["EC%3A2.7.1.48","uridine/cytidine kinase"],["EC%3A3.1.3.91","7-methylguanosine nucleotidase"],["EC%3A3.2.2.8","ribosylpyrimidine nucleosidase"],["EC%3A3.5.1.135","N(4)-acetylcytidine amidohydrolase"],["EC%3A3.5.4.5","cytidine deaminase"]],"b":[["mapped/Cytidine.yaml","Cytidine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:26833","l":"sulfur atom","na":24,"nb":2,"a":[["EC%3A1.12.98.4","sulfhydrogenase"],["EC%3A1.13.11.55","sulfur oxygenase/reductase"],["EC%3A1.8.1.18","NAD(P)H sulfur oxidoreductase (CoA-dependent)"],["EC%3A1.8.1.19","sulfide dehydrogenase"],["EC%3A1.8.2.3","sulfide-cytochrome-c reductase (flavocytochrome c)"],["EC%3A1.8.2.7","thiocyanate desulfurase"]],"b":[["mapped/Sulfur.yaml","Sulfur"],["mapped/Yeast_Extract_Sulfur.yaml","Yeast Extract + Sulfur"]]},{"id":"CHEBI:24996","l":"lactate","na":23,"nb":2,"a":[["EC%3A1.1.1.436","lactate dehydrogenase (NAD(+),ferredoxin)"],["EC%3A3.5.1.124","protein deglycase"],["RHEA%3A57300","an N(2)-(1-hydroxy-2-oxopropyl)-2'-deoxyguanosine in DNA + H2O = a 2'-deoxyguanosine in DNA + lactate + H(+)"],["RHEA%3A57288","an N(2)-(1-hydroxy-2-oxopropyl)-guanosine in RNA + H2O = a guanosine in RNA + lactate + H(+)"],["RHEA%3A46964","lactate + 2 reduced [2Fe-2S]-[ferredoxin] + 2 NAD(+) = 2 oxidized [2Fe-2S]-[ferredoxin] + pyruvate + 2 NADH"],["RHEA%3A57244","N(2)-(1-hydroxy-2-oxopropyl)-dGTP + H2O = lactate + dGTP + H(+)"]],"b":[["mapped/Glucose_Lactate.yaml","Glucose + Lactate"],["mapped/Lactate.yaml","Lactate"]]},{"id":"CHEBI:18391","l":"D-gluconate","na":21,"nb":2,"a":[["EC%3A1.1.1.215","gluconate 2-dehydrogenase"],["EC%3A1.1.1.69","gluconate 5-dehydrogenase"],["EC%3A1.1.99.3","gluconate 2-dehydrogenase (acceptor)"],["EC%3A2.4.1.321","cellobionic acid phosphorylase"],["EC%3A2.7.1.12","gluconokinase"],["EC%3A3.1.1.17","gluconolactonase"]],"b":[["mapped/D-gluconate.yaml","D-gluconate"],["mapped/Yeast_Extract_Gluconate.yaml","Yeast Extract + Gluconate"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":21,"nb":2,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29108","requires calcium(2+)"],["EC%3A1.13.12.24","calcium-regulated photoprotein"],["EC%3A7.2.2.10","P-type Ca(2+) transporter"],["RHEA%3A72631","3 Li(+)(out) + Ca(2+)(in) = 3 Li(+)(in) + Ca(2+)(out)"],["RHEA%3A55884","[aequorin] + 3 Ca(2+) = [aequorin]--dioxetanone"],["RHEA%3A55888","[aequorin]--dioxetanone = excited state-[aequorin] + CO2"]],"b":[["mapped/Calcium%282%29.yaml","Calcium(2+)"],["mapped/Calcium.yaml","Calcium"]]},{"id":"CHEBI:17821","l":"thymine","na":20,"nb":2,"a":[["EC%3A1.14.11.6","thymine dioxygenase"],["EC%3A1.14.99.46","pyrimidine monooxygenase"],["EC%3A1.17.99.4","uracil/thymine dehydrogenase"],["EC%3A1.3.1.1","dihydrouracil dehydrogenase (NAD(+))"],["EC%3A1.3.1.2","dihydropyrimidine dehydrogenase (NADP(+))"],["EC%3A2.4.2.2","pyrimidine-nucleoside phosphorylase"]],"b":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Thymine.yaml","Thymine"]]},{"id":"CHEBI:18420","l":"","na":20,"nb":2,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18420","requires magnesium(2+)"],["EC%3A4.99.1.10","magnesium dechelatase"],["EC%3A6.6.1.1","magnesium chelatase"],["EC%3A7.2.2.14","P-type Mg(2+) transporter"],["RHEA%3A52788","chlorophyll a + 2 H(+) = pheophytin a + Mg(2+)"],["RHEA%3A52792","chlorophyllide a + 2 H(+) = pheophorbide a + Mg(2+)"]],"b":[["mapped/Magnesium%282%29.yaml","Magnesium(2+)"],["mapped/Magnesium.yaml","Magnesium"]]},{"id":"CHEBI:16750","l":"guanosine","na":19,"nb":2,"a":[["EC%3A2.4.2.1","purine-nucleoside phosphorylase"],["EC%3A2.4.2.15","guanosine phosphorylase"],["EC%3A2.7.1.73","inosine kinase"],["EC%3A3.5.4.15","guanosine deaminase"],["RHEA%3A27862","3'-GMP + H2O = guanosine + phosphate"],["RHEA%3A27714","GMP + H2O = guanosine + phosphate"]],"b":[["mapped/Guanosine.yaml","Guanosine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:18385","l":"thiamine(1+)","na":19,"nb":2,"a":[["EC%3A1.1.3.23","thiamine oxidase"],["EC%3A2.5.1.2","thiamine pyridinylase"],["EC%3A2.7.1.89","thiamine kinase"],["EC%3A2.7.6.2","thiamine diphosphokinase"],["EC%3A3.1.3.100","thiamine phosphate phosphatase"],["EC%3A3.5.99.2","aminopyrimidine aminohydrolase"]],"b":[["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Thiamine.yaml","Thiamine"]]},{"id":"CHEBI:16040","l":"cytosine","na":17,"nb":2,"a":[["EC%3A2.4.2.57","AMP phosphorylase"],["EC%3A3.2.2.10","pyrimidine-5'-nucleotide nucleosidase"],["EC%3A3.2.2.8","ribosylpyrimidine nucleosidase"],["EC%3A3.5.1.135","N(4)-acetylcytidine amidohydrolase"],["EC%3A3.5.4.1","cytosine deaminase"],["RHEA%3A30075","CMP + H2O = cytosine + D-ribose 5-phosphate"]],"b":[["mapped/Cytosine.yaml","Cytosine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:16899","l":"D-mannitol","na":17,"nb":2,"a":[["EC%3A1.1.1.138","mannitol 2-dehydrogenase (NADP(+))"],["EC%3A1.1.1.255","mannitol dehydrogenase"],["EC%3A1.1.1.67","mannitol 2-dehydrogenase"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.3.40","D-mannitol oxidase"],["EC%3A2.7.1.197","protein-N(pi)-phosphohistidine--D-mannitol phosphotransferase"]],"b":[["mapped/D-mannitol.yaml","D-Mannitol"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:28885","l":"butan-1-ol","na":16,"nb":2,"a":[["EC%3A1.1.2.9","1-butanol dehydrogenase (cytochrome c)"],["EC%3A1.1.5.11","1-butanol dehydrogenase (quinone)"],["EC%3A1.14.13.230","butane monooxygenase (soluble)"],["RHEA%3A64672","2-(methylsulfanyl)acetyl-CoA + butan-1-ol = butyl 2-(methylsulfanyl)acetate + CoA"],["RHEA%3A64676","3-(methylsulfanyl)propanoyl-CoA + butan-1-ol = butyl 3-(methylsulfanyl)propanoate + CoA"],["RHEA%3A43432","butan-1-ol + 2 Fe(III)-[cytochrome c] = butanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"]],"b":[["mapped/1-butanolCO2.yaml","1-butanol+CO2"],["mapped/Butanol.yaml","Butanol"]]},{"id":"CHEBI:29032","l":"(R)-pantothenate","na":15,"nb":2,"a":[["EC%3A2.7.1.33","pantothenate kinase"],["EC%3A3.5.1.22","pantothenase"],["EC%3A3.5.1.92","pantetheine hydrolase"],["EC%3A6.3.2.1","pantoate--beta-alanine ligase (AMP-forming)"],["EC%3A6.3.2.44","pantoate--beta-alanine ligase (ADP-forming)"],["RHEA%3A68332","(R)-4'-phosphopantothenate + H2O = (R)-pantothenate + phosphate"]],"b":[["mapped/Ca-pantothenate.yaml","Ca-pantothenate"],["mapped/Calcium_Pantothenate.yaml","Calcium pantothenate"]]},{"id":"CHEBI:17256","l":"","na":13,"nb":2,"a":[["EC%3A2.7.1.76","deoxyadenosine kinase"],["EC%3A3.5.4.4","adenosine deaminase"],["RHEA%3A23452","2'-deoxyadenosine + ATP = dAMP + ADP + H(+)"],["RHEA%3A28190","2'-deoxyadenosine + H2O + H(+) = 2'-deoxyinosine + NH4(+)"],["RHEA%3A75691","2'-deoxyadenosine(in) = 2'-deoxyadenosine(out)"],["RHEA%3A29979","2'-deoxyadenosine(in) + H(+)(in) = 2'-deoxyadenosine(out) + H(+)(out)"]],"b":[["mapped/2-Deoxyadenosine_Monohydrate.yaml","2-Deoxyadenosine monohydrate"],["mapped/2-deoxyadenosine.yaml","2-deoxyadenosine"]]},{"id":"CHEBI:29987","l":"","na":13,"nb":2,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.23","The Dicarboxylate/Amino Acid:Cation (Na+ or H+) Symporter (DAACS) Family"],["TCDB%3A2.A.47","The Divalent Anion:Na+ Symporter (DASS) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A1.A.24","The Gap Junction-forming Connexin (Connexin) Family"]],"b":[["mapped/Aspartate.yaml","Aspartate"],["mapped/Glutamate.yaml","Glutamate"]]},{"id":"CHEBI:25107","l":"''magnesium atom''","na":11,"nb":2,"a":[["proteintraitsmech%3AMETALPDB_MG_DECANUCLEAR","decanuclear magnesium site"],["proteintraitsmech%3AMETALPDB_MG_DINUCLEAR","dinuclear magnesium site"],["proteintraitsmech%3AMETALPDB_MG_HEPTANUCLEAR","heptanuclear magnesium site"],["proteintraitsmech%3AMETALPDB_MG_HEXANUCLEAR","hexanuclear magnesium site"],["proteintraitsmech%3AMETALPDB_MG_MONONUCLEAR","mononuclear magnesium site"],["proteintraitsmech%3AMETALPDB_MG_MULTINUCLEAR","multinuclear magnesium site"]],"b":[["mapped/Magnesium%282%29.yaml","Magnesium(2+)"],["mapped/Magnesium.yaml","Magnesium"]]},{"id":"CHEBI:22984","l":"''calcium atom''","na":10,"nb":2,"a":[["TCDB%3A1.A.10","The Glutamate-gated Ion Channel (GIC) Family of Neurotransmitter Receptors"],["TCDB%3A1.A.77","The Mg2+/Ca2+ Uniporter (MCU) Family"],["proteintraitsmech%3AMETALPDB_CA_DINUCLEAR","dinuclear calcium site"],["proteintraitsmech%3AMETALPDB_CA_HEPTANUCLEAR","heptanuclear calcium site"],["proteintraitsmech%3AMETALPDB_CA_HEXANUCLEAR","hexanuclear calcium site"],["proteintraitsmech%3AMETALPDB_CA_MONONUCLEAR","mononuclear calcium site"]],"b":[["mapped/Calcium%282%29.yaml","Calcium(2+)"],["mapped/Calcium.yaml","Calcium"]]},{"id":"CHEBI:30924","l":"","na":10,"nb":2,"a":[["EC%3A1.1.1.93","tartrate dehydrogenase"],["EC%3A4.1.1.73","tartrate decarboxylase"],["EC%3A4.2.1.32","L(+)-tartrate dehydratase"],["EC%3A5.1.2.5","tartrate epimerase"],["RHEA%3A22212","(2R,3R)-tartrate = (2R,3S)-tartrate"],["RHEA%3A13317","(2R,3R)-tartrate + H(+) = (R)-glycerate + CO2"]],"b":[["mapped/Na-tartrate.yaml","Na-tartrate"],["mapped/Sodium_Tartrate.yaml","Sodium tartrate"]]},{"id":"CHEBI:18107","l":"xanthosine","na":9,"nb":2,"a":[["EC%3A2.1.1.158","7-methylxanthosine synthase"],["EC%3A2.4.2.1","purine-nucleoside phosphorylase"],["EC%3A3.5.4.15","guanosine deaminase"],["RHEA%3A12861","guanosine + H2O + H(+) = xanthosine + NH4(+)"],["RHEA%3A27994","xanthosine + H2O = D-ribose + xanthine"],["RHEA%3A28939","xanthosine(in) + H(+)(in) = xanthosine(out) + H(+)(out)"]],"b":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Xanthosine.yaml","Xanthosine"]]},{"id":"CHEBI:10642","l":"","na":8,"nb":2,"a":[["EC%3A1.1.1.370","scyllo-inositol 2-dehydrogenase (NAD(+))"],["EC%3A1.1.1.371","scyllo-inositol 2-dehydrogenase (NADP(+))"],["RHEA%3A82131","scyllo-inositol 1-phosphate + H2O = scyllo-inositol + phosphate"],["RHEA%3A17613","scyllo-inositol + NAD(+) = scyllo-inosose + NADH + H(+)"],["RHEA%3A39063","scyllo-inositol + NADP(+) = scyllo-inosose + NADPH + H(+)"],["RHEA%3A72991","scyllo-inositol(out) + 2 Na(+)(out) = scyllo-inositol(in) + 2 Na(+)(in)"]],"b":[["mapped/M-inositol.yaml","m-Inositol"],["mapped/Myo-inositol.yaml","myo-Inositol"]]},{"id":"CHEBI:35195","l":"surfactant","na":2,"nb":8,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.A.16","The Formate-Nitrite Transporter (FNT) Family"]],"b":[["mapped/Benzalkonium_Chloride.yaml","Benzalkonium Chloride"],["mapped/Cetrimonium_Bromide.yaml","Cetrimonium bromide"],["mapped/Na-laurate.yaml","Na-laurate"],["mapped/Na-stearate.yaml","Na-stearate"],["mapped/Rhamnolipid.yaml","Rhamnolipid"],["mapped/Sodium_Dodecyl_Sulfate.yaml","Sodium Dodecyl Sulfate"]]},{"id":"CHEBI:4735","l":"ethylenediaminetetraacetic acid","na":2,"nb":8,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["proteintraitsmech%3ABIOLIP_EDT","EDT-binding site"]],"b":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/EDTA_Tetrasodium_Tetrahydrate_Salt.yaml","EDTA tetrasodium tetrahydrate salt"],["mapped/Edta.yaml","EDTA"],["mapped/Edta_Acid_Form.yaml","EDTA (acid form)"],["mapped/UW_Concentrated_Base.yaml","UW concentrated base"],["mapped/UW_Concentrated_Base_No_Mo.yaml","UW concentrated base no Mo"]]},{"id":"CHEBI:9532","l":"thiamine(1+) diphosphate","na":8,"nb":2,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_9532","requires thiamine(1+) diphosphate"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["mapped/02_Thiamine_Pyrophosphate.yaml","0.2% Thiamine pyrophosphate"],["mapped/Thiamine_pyrophosphate.yaml","Thiamine pyrophosphate"]]},{"id":"CHEBI:15940","l":"nicotinic acid","na":2,"nb":7,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15940","requires nicotinic acid"],["proteintraitsmech%3ABIOLIP_NIO","NIO-binding site"]],"b":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/Nicotinic_Acid.yaml","Nicotinic acid"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Thauers_Vitamin_Mix_No_Biotin.yaml","Thauer's vitamin mix no Biotin"]]},{"id":"CHEBI:17824","l":"propan-2-ol","na":7,"nb":2,"a":[["EC%3A1.1.1.80","isopropanol dehydrogenase (NADP(+))"],["EC%3A1.14.13.227","propane 2-monooxygenase"],["RHEA%3A62196","propan-2-ol + 2 Fe(III)-[cytochrome c] = acetone + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A41984","propan-2-ol + NAD(+) = acetone + NADH + H(+)"],["RHEA%3A21792","propan-2-ol + NADP(+) = acetone + NADPH + H(+)"],["RHEA%3A49992","propane + NADH + O2 + H(+) = propan-2-ol + NAD(+) + H2O"]],"b":[["mapped/2-propanolCO2.yaml","2-propanol+CO2"],["mapped/Isopropyl_Alcohol.yaml","Isopropyl alcohol"]]},{"id":"CHEBI:28831","l":"","na":7,"nb":2,"a":[["RHEA%3A62204","1-propanol + 2 Fe(III)-[cytochrome c] = propanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A65468","1-propanol + acetyl-CoA = propyl acetate + CoA"],["RHEA%3A65476","1-propanol + butanoyl-CoA = propyl butanoate + CoA"],["RHEA%3A50704","1-propanol + NAD(+) = propanal + NADH + H(+)"],["RHEA%3A64712","1-propanol + NADP(+) = propanal + NADPH + H(+)"],["MCSA%3A407","carboxylesterase"]],"b":[["mapped/1-propanolCO2.yaml","1-propanol+CO2"],["mapped/Propan-1-ol.yaml","Propan-1-ol"]]},{"id":"CHEBI:30753","l":"4-aminobenzoic acid","na":2,"nb":7,"a":[["TCDB%3A2.A.71","The Folate-Biopterin Transporter (FBT) Family"],["proteintraitsmech%3ABIOLIP_PAB","PAB-binding site"]],"b":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/P-aminobenzoic_Acid.yaml","p-Aminobenzoic acid"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Thauers_Vitamin_Mix_No_Biotin.yaml","Thauer's vitamin mix no Biotin"]]},{"id":"CHEBI:15956","l":"biotin","na":2,"nb":6,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15956","requires biotin"],["proteintraitsmech%3ABIOLIP_BTN","BTN-binding site"]],"b":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/Biotin.yaml","Biotin"],["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Wolfes_Vitamin_Mix.yaml","Wolfe's vitamin mix"]]},{"id":"CHEBI:18394","l":"6-O-alpha-D-glucopyranosyl-D-fructofuranose","na":6,"nb":2,"a":[["EC%3A3.2.1.219","palatinase"],["EC%3A5.4.99.11","isomaltulose synthase"],["RHEA%3A68808","6-O-alpha-D-glucopyranosyl-D-fructose + H2O = alpha-D-glucose + D-fructose"],["RHEA%3A24032","sucrose = 6-O-alpha-D-glucopyranosyl-D-fructose"],["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"],["MCSA%3A582","isomaltulose synthase"]],"b":[["mapped/Palatinose.yaml","Palatinose"],["mapped/Palatinose_Hydrate.yaml","palatinose hydrate"]]},{"id":"CHEBI:28645","l":"beta-D-fructofuranose","na":6,"nb":2,"a":[["EC%3A2.7.1.3","ketohexokinase"],["EC%3A3.2.1.48","sucrose alpha-glucosidase"],["RHEA%3A18145","beta-D-fructose + ATP = beta-D-fructose 1-phosphate + ADP + H(+)"],["RHEA%3A33791","sucrose 6(F)-phosphate + H2O = beta-D-fructose + beta-D-glucose 6-phosphate"],["RHEA%3A33795","sucrose + H2O = beta-D-fructose + alpha-D-glucose"],["proteintraitsmech%3ABIOLIP_FRU","FRU-binding site"]],"b":[["mapped/Fructooligosaccharides_Fos.yaml","Fructooligosaccharides (FOS)"],["mapped/Fructose.yaml","Fructose"]]},{"id":"CHEBI:16856","l":"glutathione","na":4,"nb":2,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16856","requires glutathione"],["MCSA%3A359","lactoglutathione lyase"],["MCSA%3A32","lactoylglutathione lyase"],["proteintraitsmech%3ABIOLIP_GSH","GSH-binding site"]],"b":[["mapped/Glutathione.yaml","Glutathione"],["mapped/L-Glutathione.yaml","L-Glutathione"]]},{"id":"CHEBI:17895","l":"L-tyrosine","na":2,"nb":4,"a":[["MCSA%3A638","neurolysin"],["proteintraitsmech%3ABIOLIP_TYR","TYR-binding site"]],"b":[["mapped/DL-Tyrosine.yaml","DL-Tyrosine"],["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-tyrosine.yaml","L-Tyrosine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:24265","l":"","na":4,"nb":2,"a":[["TCDB%3A2.A.49","The Chloride Carrier/Channel (ClC) Family"],["TCDB%3A2.A.8","The Gluconate:H+ Symporter (GntP) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A4.A.6","The PTS Mannose-Fructose-Sorbose (Man) Family"]],"b":[["mapped/Gluconate.yaml","Gluconate"],["mapped/Yeast_Extract_Gluconate.yaml","Yeast Extract + Gluconate"]]},{"id":"CHEBI:28869","l":"menadione","na":4,"nb":2,"a":[["RHEA%3A35611","menadiol + 2 O2 = menadione + 2 superoxide + 2 H(+)"],["RHEA%3A69695","menadione + NADH + H(+) = menadiol + NAD(+)"],["RHEA%3A63492","menadione + NADPH + H(+) = menadiol + NADP(+)"],["proteintraitsmech%3ABIOLIP_VK3","VK3-binding site"]],"b":[["mapped/Menadione.yaml","Menadione"],["mapped/Menadione_Solution.yaml","Menadione solution"]]},{"id":"CHEBI:3508","l":"ceftazidime","na":4,"nb":2,"a":[["TCDB%3A8.A.213","The Bon Domain-containing Protein (Bon DP) Family"],["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["TCDB%3A2.C.1","The TonB-ExbB-ExbD/TolA-TolQ-TolR Outer Membrane Receptor Energizers and Stabilizers (TonB/TolA) Family"]],"b":[["mapped/Ceftazidime.yaml","Ceftazidime"],["mapped/Ceftazidime_Hydrate.yaml","Ceftazidime hydrate"]]},{"id":"CHEBI:36361","l":"phosphorous acid","na":4,"nb":2,"a":[["EC%3A1.20.1.1","phosphite dehydrogenase"],["RHEA%3A86123","phosphite + AMP + NAD(+) = ADP + NADH + 2 H(+)"],["RHEA%3A13173","phosphite + NAD(+) + H2O = phosphate + NADH + 3 H(+)"],["RHEA%3A48972","phosphite(out) + ATP + H2O = phosphite(in) + ADP + phosphate + H(+)"]],"b":[["mapped/Phosphorous_Acid.yaml","phosphorous acid"],["mapped/Sodium_Phosphite_Dibasic_Pentahydrate.yaml","Sodium phosphite dibasic pentahydrate"]]},{"id":"CHEBI:46020","l":"tetramethylammonium","na":2,"nb":4,"a":[["EC%3A2.1.1.252","tetramethylammonium--corrinoid protein Co-methyltransferase"],["RHEA%3A59856","tetramethylammonium + Co(I)-[tetramethylammonium-specific corrinoid protein] + H(+) = methyl-Co(III)-[tetramethylammonium-specific corrinoid protein] + trimethylamine"]],"b":[["mapped/Formatetetramethylammonium.yaml","Formate+tetramethylammonium"],["mapped/H2tetramethylammonium.yaml","H2+tetramethylammonium"],["mapped/Tetramethyl_Ammonium.yaml","Tetramethyl ammonium"],["mapped/Tetramethyl_Ammonium_Chloride.yaml","Tetramethyl ammonium chloride"]]},{"id":"CHEBI:16414","l":"L-valine","na":2,"nb":3,"a":[["MCSA%3A798","t-plasminogen activator"],["proteintraitsmech%3ABIOLIP_VAL","VAL-binding site"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-valine.yaml","L-Valine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:17164","l":"stachyose","na":3,"nb":2,"a":[["EC%3A2.4.1.67","galactinol--raffinose galactosyltransferase"],["RHEA%3A20776","alpha-D-galactosyl-(1->3)-1D-myo-inositol + raffinose = stachyose + myo-inositol"],["RHEA%3A70279","stachyose + H2O = raffinose + D-galactose"]],"b":[["mapped/Stachyose_-_70.yaml","Stachyose - 70%"],["mapped/Stachyose_Hydrate.yaml","Stachyose hydrate"]]},{"id":"CHEBI:17196","l":"L-asparagine","na":2,"nb":3,"a":[["MCSA%3A596","deuterolysin"],["proteintraitsmech%3ABIOLIP_ASN","ASN-binding site"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-asparagine.yaml","L-Asparagine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:18237","l":"glutamic acid","na":3,"nb":2,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["mapped/4_Carbon_Mix.yaml","4 Carbon Mix"],["mapped/Glutamic_Acid.yaml","Glutamic acid"]]},{"id":"CHEBI:30314","l":"(R)-lipoic acid","na":2,"nb":3,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_30314","requires (R)-lipoic acid"],["proteintraitsmech%3ABIOLIP_LPA","LPA-binding site"]],"b":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/Thioctic_Acid.yaml","Thioctic acid"],["mapped/Wolfes_Vitamin_Mix.yaml","Wolfe's vitamin mix"]]},{"id":"CHEBI:15729","l":"L-ornithine","na":2,"nb":2,"a":[["MCSA%3A12","ornithine carbamoyltransferase"],["proteintraitsmech%3ABIOLIP_ORN","ORN-binding site"]],"b":[["mapped/L-ornithine.yaml","L-Ornithine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:15741","l":"succinic acid","na":2,"nb":2,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_SIN","SIN-binding site"]],"b":[["mapped/Sodium_Succinate_Dibasic.yaml","Sodium succinate dibasic"],["mapped/Succinic_Acid.yaml","Succinic acid"]]},{"id":"CHEBI:16789","l":"aldehydo-D-lyxose","na":2,"nb":2,"a":[["EC%3A5.3.1.15","D-lyxose ketol-isomerase"],["RHEA%3A14201","D-lyxose = D-xylulose"]],"b":[["mapped/%282%29-D-lyxose.yaml","D-lyxose"],["mapped/D-_-lyxose.yaml","D-(-)-lyxose"]]},{"id":"CHEBI:17883","l":"hydrogen chloride","na":2,"nb":2,"a":[["MCSA%3A24","4-chlorobenzoyl-CoA dehalogenase"],["MCSA%3A348","chloromuconate cycloisomerase"]],"b":[["mapped/Hcl.yaml","HCl"],["mapped/Trace_Element_Solution_SL-10.yaml","Trace element solution SL-10"]]},{"id":"CHEBI:17909","l":"polysulfur","na":2,"nb":2,"a":[["EC%3A1.8.5.4","bacterial sulfide:quinone reductase"],["RHEA%3A30239","n a quinone + n hydrogen sulfide + n H(+) = polysulfur(n-2) + n a quinol"]],"b":[["mapped/Sulfur_Powder.yaml","Sulfur (powder)"],["mapped/Sulphur.yaml","Sulphur"]]},{"id":"CHEBI:28757","l":"fructose","na":2,"nb":2,"a":[["GO%3A0070061","fructose binding"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Fructose.yaml","Fructose"],["mapped/PY-fructose.yaml","PY-fructose"]]},{"id":"CHEBI:33697","l":"ribonucleic acid","na":2,"nb":2,"a":[["TCDB%3A1.A.79","The Cholesterol Uptake Protein (ChUP) or Double Stranded RNA Uptake Family"],["proteintraitsmech%3ABIOLIP_RNA","RNA-binding site"]],"b":[["mapped/Ribonucleic_Acid_From_Torula_Yeast_Type_VI.yaml","Ribonucleic acid from torula yeast type VI"],["mapped/Rna.yaml","Rna"]]},{"id":"CHEBI:42758","l":"'aldehydo-D-glucose'","na":2,"nb":2,"a":[["RHEA%3A15665","aldehydo-D-glucose + L-lysyl-[protein] = N(6)-(D-fructosyl)-L-lysyl-[protein] + H2O"],["proteintraitsmech%3ABIOLIP_GLO","GLO-binding site"]],"b":[["mapped/Glucose.yaml","Glucose"],["mapped/Glucose_2.yaml","glucose"]]},{"id":"CHEBI:4853","l":"'esculin'","na":2,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.V.1","The Filamentous Cyanobacterial Septal Pore (Septum) Family"]],"b":[["mapped/Esculin_Ferric_Citrate.yaml","Esculin Ferric Citrate"],["mapped/Esculin_Monohydrate.yaml","Esculin Monohydrate"]]},{"id":"CHEBI:15379","l":"dioxygen","na":3896,"nb":1,"a":[["EC%3A1.1.3.10","pyranose oxidase"],["EC%3A1.1.3.11","L-sorbose oxidase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.3.13","alcohol oxidase"],["EC%3A1.1.3.14","catechol oxidase (dimerizing)"],["EC%3A1.1.3.15","(S)-2-hydroxy-acid oxidase"]],"b":[["mapped/Dioxygen.yaml","Dioxygen"]]},{"id":"CHEBI:28938","l":"ammonium","na":837,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_28938","requires ammonium"],["EC%3A1.13.12.15","3,4-dihydroxyphenylalanine oxidative deaminase"],["EC%3A1.13.99.3","tryptophan 2'-dioxygenase"],["EC%3A1.14.11.37","kanamycin B dioxygenase"],["EC%3A1.14.12.1","anthranilate 1,2-dioxygenase (deaminating, decarboxylating)"],["EC%3A1.14.12.14","2-aminobenzenesulfonate 2,3-dioxygenase"]],"b":[["mapped/Ammonium.yaml","Ammonium"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":680,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16240","requires hydrogen peroxide"],["EC%3A1.1.3.10","pyranose oxidase"],["EC%3A1.1.3.11","L-sorbose oxidase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.3.13","alcohol oxidase"],["EC%3A1.1.3.15","(S)-2-hydroxy-acid oxidase"]],"b":[["mapped/Hydrogen_Peroxide.yaml","Hydrogen peroxide"]]},{"id":"CHEBI:16810","l":"2-oxoglutarate(2-)","na":672,"nb":1,"a":[["EC%3A1.1.1.286","isocitrate--homoisocitrate dehydrogenase"],["EC%3A1.1.1.399","2-oxoglutarate reductase"],["EC%3A1.1.1.41","isocitrate dehydrogenase (NAD(+))"],["EC%3A1.1.1.42","isocitrate dehydrogenase (NADP(+))"],["EC%3A1.1.5.13","(S)-2-hydroxyglutarate dehydrogenase"],["EC%3A1.1.99.2","L-2-hydroxyglutarate dehydrogenase"]],"b":[["mapped/Na2_Alpha-ketoglutarate.yaml","Na2 alpha-ketoglutarate"]]},{"id":"CHEBI:15361","l":"pyruvate","na":410,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15361","requires pyruvate"],["EC%3A1.1.1.27","L-lactate dehydrogenase"],["EC%3A1.1.1.28","D-lactate dehydrogenase"],["EC%3A1.1.1.38","malate dehydrogenase (oxaloacetate-decarboxylating)"],["EC%3A1.1.1.39","malate dehydrogenase (decarboxylating)"],["EC%3A1.1.1.40","malate dehydrogenase (oxaloacetate-decarboxylating) (NADP(+))"]],"b":[["mapped/Pyruvate.yaml","Pyruvate"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":396,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29033","requires iron(2+)"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.11","glucoside 3-dehydrogenase (cytochrome c)"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.2.3","L-lactate dehydrogenase (cytochrome)"],["EC%3A1.1.2.4","D-lactate dehydrogenase (cytochrome)"]],"b":[["mapped/Ferrous_Ion.yaml","Ferrous Ion"]]},{"id":"CHEBI:29101","l":"sodium(1+)","na":292,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29101","requires sodium(1+)"],["EC%3A7.2.1.1","NADH:ubiquinone reductase (Na(+)-transporting)"],["EC%3A7.2.1.2","ferredoxin--NAD(+) oxidoreductase (Na(+)-transporting)"],["EC%3A7.2.1.4","tetrahydromethanopterin S-methyltransferase"],["EC%3A7.2.2.1","Na(+)-transporting two-sector ATPase"],["EC%3A7.2.2.13","Na(+)/K(+)-exchanging ATPase"]],"b":[["mapped/Sodium%28%29.yaml","Sodium(+)"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":212,"nb":1,"a":[["EC%3A1.1.1.244","methanol dehydrogenase"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.99.37","methanol dehydrogenase (nicotinoprotein)"],["EC%3A1.13.11.94","4-vinylguaiacol dioxygenase"],["EC%3A1.14.11.27","[histone H3]-dimethyl-L-lysine(36) demethylase"]],"b":[["mapped/Formaldehyde.yaml","Formaldehyde"]]},{"id":"CHEBI:17996","l":"chloride","na":196,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17996","requires chloride"],["EC%3A1.11.2.2","myeloperoxidase"],["EC%3A1.13.11.49","chlorite O2-lyase"],["EC%3A1.14.12.13","2-halobenzoate 1,2-dioxygenase"],["EC%3A1.14.12.9","4-chlorophenylacetate 3,4-dioxygenase"],["EC%3A1.14.13.50","pentachlorophenol monooxygenase"]],"b":[["mapped/Cl.yaml","Cl-"]]},{"id":"CHEBI:16189","l":"sulfate","na":133,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16189","requires sulfate"],["EC%3A1.14.11.77","alkyl sulfatase"],["EC%3A1.8.2.1","sulfite dehydrogenase (cytochrome)"],["EC%3A1.8.3.1","sulfite oxidase"],["EC%3A1.8.5.6","sulfite dehydrogenase (quinone)"],["EC%3A2.7.7.4","sulfate adenylyltransferase"]],"b":[["mapped/Sulfate.yaml","Sulfate"]]},{"id":"CHEBI:36655","l":"","na":132,"nb":1,"a":[["EC%3A1.1.1.26","glyoxylate reductase"],["EC%3A1.1.1.79","glyoxylate reductase (NADP(+))"],["EC%3A1.1.3.15","(S)-2-hydroxy-acid oxidase"],["EC%3A1.1.99.14","glycolate dehydrogenase"],["EC%3A1.14.14.10","nitrilotriacetate monooxygenase"],["EC%3A1.14.14.33","ethylenediaminetetraacetate monooxygenase"]],"b":[["mapped/Glyoxylate.yaml","Glyoxylate"]]},{"id":"CHEBI:29991","l":"","na":130,"nb":1,"a":[["EC%3A1.14.13.248","L-aspartate N-monooxygenase (nitrosuccinate-forming)"],["EC%3A1.4.1.21","aspartate dehydrogenase"],["EC%3A1.4.1.29","iminosuccinate reductase"],["EC%3A1.4.3.16","L-aspartate oxidase"],["EC%3A2.1.3.2","aspartate carbamoyltransferase"],["EC%3A2.3.1.17","aspartate N-acetyltransferase"]],"b":[["mapped/L-aspartate.yaml","L-aspartate"]]},{"id":"CHEBI:16301","l":"nitrite","na":116,"nb":1,"a":[["EC%3A1.13.11.64","5-nitrosalicylate dioxygenase"],["EC%3A1.13.12.16","nitronate monooxygenase"],["EC%3A1.14.12.23","nitroarene dioxygenase"],["EC%3A1.14.12.24","2,4-dinitrotoluene dioxygenase"],["EC%3A1.14.13.166","4-nitrocatechol 4-monooxygenase"],["EC%3A1.14.13.167","4-nitrophenol 4-monooxygenase"]],"b":[["mapped/Nitrite.yaml","Nitrite"]]},{"id":"CHEBI:17359","l":"sulfite","na":109,"nb":1,"a":[["EC%3A1.13.11.18","persulfide dioxygenase"],["EC%3A1.13.11.55","sulfur oxygenase/reductase"],["EC%3A1.14.11.17","taurine dioxygenase"],["EC%3A1.14.12.8","4-sulfobenzoate 3,4-dioxygenase"],["EC%3A1.14.13.111","methanesulfonate monooxygenase (NADH)"],["EC%3A1.14.14.181","sulfoquinovose monooxygenase"]],"b":[["mapped/Sulfite.yaml","Sulfite"]]},{"id":"CHEBI:35235","l":"L-cysteine zwitterion","na":108,"nb":1,"a":[["EC%3A1.13.11.20","cysteine dioxygenase"],["EC%3A1.13.11.95","2-oxoethane-1-sulfonamide synthase"],["EC%3A1.14.99.52","L-cysteinyl-L-histidinylsulfoxide synthase"],["EC%3A1.21.3.10","hercynylcysteine S-oxide synthase"],["EC%3A1.8.1.6","cystine reductase"],["EC%3A1.8.3.5","prenylcysteine oxidase"]],"b":[["mapped/L-cysteine_Zwitterion.yaml","L-cysteine zwitterion"]]},{"id":"CHEBI:7896","l":"","na":106,"nb":1,"a":[["EC%3A1.11.1.3","fatty-acid peroxidase"],["EC%3A1.13.11.92","fatty acid alpha-dioxygenase"],["EC%3A1.14.14.80","long-chain fatty acid omega-monooxygenase"],["EC%3A3.1.1.63","11-cis-retinyl-palmitate hydrolase"],["EC%3A3.1.1.64","retinoid isomerohydrolase"],["EC%3A3.1.2.14","oleoyl-[acyl-carrier-protein] hydrolase"]],"b":[["mapped/Hexadecanoate.yaml","Hexadecanoate"]]},{"id":"CHEBI:57912","l":"L-tryptophan zwitterion","na":103,"nb":1,"a":[["EC%3A1.11.2.8","L-tryptophan 5-peroxygenase"],["EC%3A1.13.11.11","tryptophan 2,3-dioxygenase"],["EC%3A1.13.11.52","indoleamine 2,3-dioxygenase"],["EC%3A1.13.12.3","tryptophan 2-monooxygenase"],["EC%3A1.13.99.3","tryptophan 2'-dioxygenase"],["EC%3A1.14.14.156","tryptophan N-monooxygenase"]],"b":[["mapped/Dl-tryptophan.yaml","DL-Tryptophan"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":93,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17544","requires hydrogencarbonate"],["EC%3A1.13.11.73","methylphosphonate synthase"],["EC%3A1.2.1.27","methylmalonate-semialdehyde dehydrogenase (CoA acylating)"],["EC%3A2.5.1.120","aminodeoxyfutalosine synthase"],["EC%3A2.5.1.143","pyridinium-3,5-biscarboxylic acid mononucleotide synthase"],["EC%3A2.7.2.2","carbamate kinase"]],"b":[["mapped/Bicarbonate.yaml","Bicarbonate"]]},{"id":"CHEBI:15343","l":"acetaldehyde","na":88,"nb":1,"a":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.5.5","alcohol dehydrogenase (quinone)"],["EC%3A1.1.99.36","alcohol dehydrogenase (nicotinoprotein)"],["EC%3A1.13.11.88","isoeugenol monooxygenase"],["EC%3A1.13.12.16","nitronate monooxygenase"],["EC%3A1.2.1.10","acetaldehyde dehydrogenase (acetylating)"]],"b":[["mapped/Acetaldehyde.yaml","acetaldehyde"]]},{"id":"CHEBI:16646","l":"carbohydrate","na":1,"nb":80,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16646","requires pantothenate"]],"b":[["mapped/1-Kestose.yaml","1-Kestose"],["mapped/2-Deoxy-D-Ribose.yaml","2-Deoxy-D-Ribose"],["mapped/2-Deoxy-D-glucose.yaml","2-Deoxy-D-glucose"],["mapped/2-fucosyllactose.yaml","2'-fucosyllactose"],["mapped/A-Cyclodextrin.yaml","a-Cyclodextrin"],["mapped/Agarose.yaml","Agarose"]]},{"id":"CHEBI:29806","l":"fumarate(2-)","na":76,"nb":1,"a":[["EC%3A1.3.1.6","fumarate reductase (NADH)"],["EC%3A1.3.2.4","fumarate reductase (cytochrome)"],["EC%3A1.3.4.1","fumarate reductase (CoM/CoB)"],["EC%3A1.3.5.1","succinate dehydrogenase"],["EC%3A1.3.98.1","dihydroorotate oxidase (fumarate)"],["EC%3A3.7.1.14","2-hydroxy-6-oxonona-2,4-dienedioate hydrolase"]],"b":[["mapped/Fumarate.yaml","Fumarate"]]},{"id":"CHEBI:17509","l":"","na":64,"nb":1,"a":[["EC%3A2.3.1.184","acyl-homoserine-lactone synthase"],["EC%3A2.3.1.228","isovaleryl-homoserine lactone synthase"],["EC%3A2.3.1.229","4-coumaroyl-homoserine lactone synthase"],["EC%3A2.4.2.28","S-methyl-5'-thioadenosine phosphorylase"],["EC%3A2.5.1.104","N(1)-aminopropylagmatine synthase"],["EC%3A2.5.1.108","2-(3-amino-3-carboxypropyl)histidine synthase"]],"b":[["mapped/5-deoxy-5-_Methylthioadenosine.yaml","5'-Deoxy-5'-(methylthio)adenosine"]]},{"id":"CHEBI:15903","l":"","na":59,"nb":1,"a":[["EC%3A1.1.3.4","glucose oxidase"],["EC%3A1.1.3.5","hexose oxidase"],["EC%3A2.3.1.152","alcohol O-cinnamoyltransferase"],["EC%3A2.3.1.213","cyanidin 3-O-(6-O-glucosyl-2-O-xylosylgalactoside) 6''-O- hydroxycinnamoyltransferase"],["EC%3A3.2.1.106","mannosyl-oligosaccharide glucosidase"],["EC%3A3.2.1.175","beta-D-glucopyranosyl abscisate beta-glucosidase"]],"b":[["mapped/Beta-d-glucose.yaml","Beta-D-glucose"]]},{"id":"CHEBI:16347","l":"","na":59,"nb":1,"a":[["EC%3A1.14.13.239","carnitine monooxygenase"],["EC%3A2.1.1.383","L-carnitine--corrinoid protein Co-methyltransferase"],["EC%3A2.3.1.137","carnitine O-octanoyltransferase"],["EC%3A2.3.1.21","carnitine O-palmitoyltransferase"],["EC%3A2.3.1.7","carnitine O-acetyltransferase"],["EC%3A2.8.3.21","L-carnitine CoA-transferase"]],"b":[["mapped/L-Carnitine.yaml","L-Carnitine"]]},{"id":"CHEBI:17879","l":"4-hydroxybenzoate","na":57,"nb":1,"a":[["EC%3A1.13.11.41","2,4'-dihydroxyacetophenone dioxygenase"],["EC%3A1.14.13.2","4-hydroxybenzoate 3-monooxygenase"],["EC%3A1.14.13.33","4-hydroxybenzoate 3-monooxygenase [NAD(P)H]"],["EC%3A1.14.13.64","4-hydroxybenzoate 1-hydroxylase"],["EC%3A1.14.14.92","benzoate 4-monooxygenase"],["EC%3A1.14.19.55","4-hydroxybenzoate brominase (decarboxylating)"]],"b":[["mapped/P-hydroxybenzoate.yaml","p-Hydroxybenzoate"]]},{"id":"CHEBI:15589","l":"(S)-malate(2-)","na":56,"nb":1,"a":[["EC%3A1.1.1.299","malate dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.1.37","(S)-malate dehydrogenase (NAD(+), oxaloacetate-forming)"],["EC%3A1.1.1.38","malate dehydrogenase (oxaloacetate-decarboxylating)"],["EC%3A1.1.1.39","malate dehydrogenase (decarboxylating)"],["EC%3A1.1.1.40","malate dehydrogenase (oxaloacetate-decarboxylating) (NADP(+))"],["EC%3A1.1.1.82","malate dehydrogenase (NADP(+))"]],"b":[["mapped/L-malate.yaml","L-malate"]]},{"id":"CHEBI:16947","l":"citrate(3-)","na":49,"nb":1,"a":[["EC%3A2.3.3.1","citrate (Si)-synthase"],["EC%3A2.3.3.16","citrate synthase (unknown stereospecificity)"],["EC%3A2.3.3.3","citrate (Re)-synthase"],["EC%3A2.3.3.8","ATP citrate synthase"],["EC%3A2.8.3.10","citrate CoA-transferase"],["EC%3A4.1.3.6","citrate (pro-3S)-lyase"]],"b":[["mapped/Citrate.yaml","Citrate"]]},{"id":"CHEBI:36241","l":"","na":49,"nb":1,"a":[["EC%3A1.13.11.3","protocatechuate 3,4-dioxygenase"],["EC%3A1.13.11.8","protocatechuate 4,5-dioxygenase"],["EC%3A1.14.12.8","4-sulfobenzoate 3,4-dioxygenase"],["EC%3A1.14.13.2","4-hydroxybenzoate 3-monooxygenase"],["EC%3A1.14.13.23","3-hydroxybenzoate 4-monooxygenase"],["EC%3A1.14.13.33","4-hydroxybenzoate 3-monooxygenase [NAD(P)H]"]],"b":[["mapped/Protocatechuate.yaml","Protocatechuate"]]},{"id":"CHEBI:16004","l":"(R)-lactate","na":48,"nb":1,"a":[["EC%3A1.1.1.28","D-lactate dehydrogenase"],["EC%3A1.1.2.4","D-lactate dehydrogenase (cytochrome)"],["EC%3A1.1.2.5","D-lactate dehydrogenase (cytochrome c-553)"],["EC%3A1.1.5.12","D-lactate dehydrogenase (quinone)"],["EC%3A1.1.99.40","(R)-2-hydroxyglutarate--pyruvate transhydrogenase"],["EC%3A1.1.99.6","D-lactate dehydrogenase (acceptor)"]],"b":[["mapped/%28R%29-lactate.yaml","(R)-lactate"]]},{"id":"CHEBI:16199","l":"urea","na":48,"nb":1,"a":[["EC%3A3.5.1.5","urease"],["EC%3A3.5.1.95","N-malonylurea hydrolase"],["EC%3A3.5.3.1","arginase"],["EC%3A3.5.3.10","D-arginase"],["EC%3A3.5.3.11","agmatinase"],["EC%3A3.5.3.14","amidinoaspartase"]],"b":[["mapped/Urea.yaml","Urea"]]},{"id":"CHEBI:18135","l":"catechol","na":47,"nb":1,"a":[["EC%3A1.1.3.14","catechol oxidase (dimerizing)"],["EC%3A1.10.3.1","catechol oxidase"],["EC%3A1.13.11.1","catechol 1,2-dioxygenase"],["EC%3A1.13.11.2","catechol 2,3-dioxygenase"],["EC%3A1.14.12.1","anthranilate 1,2-dioxygenase (deaminating, decarboxylating)"],["EC%3A1.14.12.13","2-halobenzoate 1,2-dioxygenase"]],"b":[["mapped/Pyrocatechol.yaml","Pyrocatechol"]]},{"id":"CHEBI:35418","l":"N-acetylneuraminate","na":46,"nb":1,"a":[["EC%3A2.1.1.402","sialate 8-O-methyltransferase"],["EC%3A2.3.1.44","N-acetylneuraminate 4-O-acetyltransferase"],["EC%3A2.5.1.56","N-acetylneuraminate synthase"],["EC%3A3.1.1.53","sialate O-acetylesterase"],["EC%3A3.1.3.29","N-acylneuraminate-9-phosphatase"],["RHEA%3A47856","a ganglioside GD1a (d18:1(4E)) + H2O = a ganglioside GM1 (d18:1(4E)) + N-acetylneuraminate"]],"b":[["mapped/N-acetylneuraminate.yaml","N-acetylneuraminate"]]},{"id":"CHEBI:13705","l":"","na":42,"nb":1,"a":[["EC%3A1.1.1.30","3-hydroxybutyrate dehydrogenase"],["EC%3A1.1.99.24","hydroxyacid-oxoacid transhydrogenase"],["EC%3A1.8.1.5","2-oxopropyl-CoM reductase (carboxylating)"],["EC%3A2.3.1.247","(5S)-5-amino-3-oxohexanoate:acetyl-CoA ethylamine transferase"],["EC%3A2.3.1.317","3-dehydrocarnitine:acetyl-CoA trimethylamine transferase"],["EC%3A2.3.1.318","3-oxoadipate:acetyl-CoA acetyltransferase"]],"b":[["mapped/Acetoacetate.yaml","Acetoacetate"]]},{"id":"CHEBI:16567","l":"","na":41,"nb":1,"a":[["EC%3A1.13.11.23","2,3-dihydroxyindole 2,3-dioxygenase"],["EC%3A1.14.12.1","anthranilate 1,2-dioxygenase (deaminating, decarboxylating)"],["EC%3A1.14.13.35","anthranilate 3-monooxygenase (deaminating)"],["EC%3A1.14.14.8","anthranilate 3-monooxygenase (FAD)"],["EC%3A1.7.1.17","FMN-dependent NADH-azoreductase"],["EC%3A2.1.1.111","anthranilate N-methyltransferase"]],"b":[["mapped/2-aminobenzoate.yaml","2-aminobenzoate"]]},{"id":"CHEBI:16659","l":"D-glycerate","na":41,"nb":1,"a":[["EC%3A1.1.1.29","glycerate dehydrogenase"],["EC%3A1.1.1.60","2-hydroxy-3-oxopropionate reductase"],["EC%3A1.1.1.81","hydroxypyruvate reductase"],["EC%3A1.1.1.92","oxaloglycolate reductase (decarboxylating)"],["EC%3A1.2.1.89","D-glyceraldehyde dehydrogenase (NADP(+))"],["EC%3A1.2.99.8","glyceraldehyde dehydrogenase (FAD-containing)"]],"b":[["mapped/D-glycerate.yaml","D-glycerate"]]},{"id":"CHEBI:16382","l":"","na":40,"nb":1,"a":[["EC%3A1.11.1.8","iodide peroxidase"],["EC%3A1.21.1.1","iodotyrosine deiodinase"],["EC%3A1.21.99.3","thyroxine 5-deiodinase"],["EC%3A1.21.99.4","thyroxine 5'-deiodinase"],["EC%3A2.1.1.165","methyl halide transferase"],["RHEA%3A23336","2 iodide + H2O2 + 2 H(+) = diiodine + 2 H2O"]],"b":[["mapped/Iodide.yaml","Iodide"]]},{"id":"CHEBI:17632","l":"nitrate","na":40,"nb":1,"a":[["EC%3A1.14.12.17","nitric oxide dioxygenase"],["EC%3A1.7.1.1","nitrate reductase (NADH)"],["EC%3A1.7.1.2","nitrate reductase [NAD(P)H]"],["EC%3A1.7.1.3","nitrate reductase (NADPH)"],["EC%3A1.7.5.1","nitrate reductase (quinone)"],["EC%3A1.7.6.1","nitrite dismutase"]],"b":[["mapped/Nitrate.yaml","Nitrate"]]},{"id":"CHEBI:16374","l":"","na":39,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16374","requires vitamin K2"],["EC%3A1.1.5.4","malate dehydrogenase (quinone)"],["EC%3A1.12.5.1","hydrogen:quinone oxidoreductase"],["EC%3A1.17.5.3","formate dehydrogenase-N"],["EC%3A1.3.5.1","succinate dehydrogenase"],["EC%3A1.3.5.3","protoporphyrinogen IX dehydrogenase (quinone)"]],"b":[["mapped/Menaquinone.yaml","Menaquinone"]]},{"id":"CHEBI:29805","l":"","na":38,"nb":1,"a":[["EC%3A1.1.1.26","glyoxylate reductase"],["EC%3A1.1.1.79","glyoxylate reductase (NADP(+))"],["EC%3A1.1.3.15","(S)-2-hydroxy-acid oxidase"],["EC%3A1.1.99.14","glycolate dehydrogenase"],["EC%3A1.2.1.21","glycolaldehyde dehydrogenase"],["EC%3A3.1.3.18","phosphoglycolate phosphatase"]],"b":[["mapped/Glycolate.yaml","Glycolate"]]},{"id":"CHEBI:17158","l":"methylglyoxal","na":37,"nb":1,"a":[["EC%3A1.1.1.283","methylglyoxal reductase (NADPH)"],["EC%3A1.1.1.78","methylglyoxal reductase (NADH)"],["EC%3A1.13.11.50","acetylacetone-cleaving enzyme"],["EC%3A1.2.3.15","(methyl)glyoxal oxidase"],["EC%3A2.2.1.11","6-deoxy-5-ketofructose 1-phosphate synthase"],["EC%3A4.2.1.130","D-lactate dehydratase"]],"b":[["mapped/Methylglyoxal.yaml","methylglyoxal"]]},{"id":"CHEBI:16150","l":"benzoate","na":36,"nb":1,"a":[["EC%3A1.14.12.10","benzoate 1,2-dioxygenase"],["EC%3A1.14.14.92","benzoate 4-monooxygenase"],["EC%3A1.2.1.28","benzaldehyde dehydrogenase (NAD(+))"],["EC%3A1.2.1.7","benzaldehyde dehydrogenase (NADP(+))"],["EC%3A2.1.1.273","benzoate O-methyltransferase"],["EC%3A3.1.1.84","cocaine esterase"]],"b":[["mapped/Benzoate.yaml","Benzoate"]]},{"id":"CHEBI:30762","l":"","na":36,"nb":1,"a":[["EC%3A1.14.13.1","salicylate 1-monooxygenase"],["EC%3A1.14.13.172","salicylate 5-hydroxylase"],["EC%3A1.2.1.65","salicylaldehyde dehydrogenase"],["EC%3A2.1.1.274","salicylate carboxymethyltransferase"],["EC%3A3.1.1.55","acetylsalicylate deacetylase"],["EC%3A3.7.1.8","2,6-dioxo-6-phenylhexa-3-enoate hydrolase"]],"b":[["mapped/Salicylate.yaml","Salicylate"]]},{"id":"CHEBI:18262","l":"","na":35,"nb":1,"a":[["EC%3A1.14.14.130","laurate 7-monooxygenase"],["EC%3A3.1.2.21","dodecanoyl-[acyl-carrier-protein] hydrolase"],["RHEA%3A48540","1,2-didodecanoyl-3-beta-D-galactosyl-sn-glycerol + H2O = dodecanoyl-3-beta-D-galactosyl-sn-glycerol + dodecanoate + H(+)"],["RHEA%3A48516","1,2-didodecanoyl-3-O-[alpha-D-galactosyl-(1->6)-beta-D-galactosyl]-sn-glycerol + H2O = dodecanoyl-3-O-[alpha-D-galactosyl-(1->6)-beta-D-galactosyl]-sn-glycerol + dodecanoate + H(+)"],["RHEA%3A48536","1-beta-D-galactosyl-2,3-didodecanoyl-sn-glycerol + H2O = 1-beta-D-galactosyl-dodecanoyl-sn-glycerol + dodecanoate + H(+)"],["RHEA%3A44316","1-dodecanoylglycerol + H2O = dodecanoate + glycerol + H(+)"]],"b":[["mapped/Dodecanoate.yaml","Dodecanoate"]]},{"id":"CHEBI:17272","l":"propionate","na":34,"nb":1,"a":[["EC%3A1.3.1.125","acrylate reductase"],["EC%3A2.7.2.15","propionate kinase"],["EC%3A2.8.3.1","propionate CoA-transferase"],["EC%3A2.8.3.27","propanoyl-CoA:succinate CoA transferase"],["EC%3A4.1.3.32","2,3-dimethylmalate lyase"],["EC%3A6.2.1.13","acetate--CoA ligase (ADP-forming)"]],"b":[["mapped/Propionate.yaml","Propionate"]]},{"id":"CHEBI:17968","l":"butyrate","na":33,"nb":1,"a":[["EC%3A1.3.1.31","2-enoate reductase"],["EC%3A2.3.1.315","succinyl-CoA:cyclohexane-1-carboxylate CoA transferase"],["EC%3A2.7.2.7","butyrate kinase"],["EC%3A2.8.3.9","butyrate--acetoacetate CoA-transferase"],["EC%3A3.1.1.51","phorbol-diester hydrolase"],["EC%3A3.7.1.7","beta-diketone hydrolase"]],"b":[["mapped/Butyrate.yaml","Butyrate"]]},{"id":"CHEBI:15882","l":"phenol","na":31,"nb":1,"a":[["EC%3A1.14.13.244","phenol 2-monooxygenase (NADH)"],["EC%3A1.14.13.7","phenol 2-monooxygenase (NADPH)"],["EC%3A1.14.14.20","phenol 2-monooxygenase (FADH2)"],["EC%3A2.1.1.25","phenol O-methyltransferase"],["EC%3A2.4.2.55","nicotinate D-ribonucleotide:phenol phospho-D-ribosyltransferase"],["EC%3A2.7.1.238","phenol phosphorylase"]],"b":[["mapped/Phenol.yaml","Phenol"]]},{"id":"CHEBI:16236","l":"ethanol","na":31,"nb":1,"a":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.5.5","alcohol dehydrogenase (quinone)"],["EC%3A1.1.99.36","alcohol dehydrogenase (nicotinoprotein)"],["EC%3A2.3.1.268","ethanol O-acetyltransferase"],["EC%3A3.1.1.113","ethyl acetate hydrolase"],["EC%3A3.1.1.67","fatty-acyl-ethyl-ester synthase"]],"b":[["mapped/Ethanol.yaml","Ethanol"]]},{"id":"CHEBI:17245","l":"carbon monoxide","na":31,"nb":1,"a":[["EC%3A1.13.11.24","quercetin 2,3-dioxygenase"],["EC%3A1.13.11.47","3-hydroxy-4-oxoquinoline 2,4-dioxygenase"],["EC%3A1.13.11.48","3-hydroxy-2-methylquinolin-4-one 2,4-dioxygenase"],["EC%3A1.13.11.53","acireductone dioxygenase (Ni(2+)-requiring)"],["EC%3A1.14.14.18","heme oxygenase (biliverdin-producing)"],["EC%3A1.14.15.20","heme oxygenase (biliverdin-producing, ferredoxin)"]],"b":[["mapped/Carbon_Monoxide.yaml","Carbon Monoxide"]]},{"id":"CHEBI:17347","l":"testosterone","na":30,"nb":1,"a":[["EC%3A1.1.1.239","3alpha-(17beta)-hydroxysteroid dehydrogenase (NAD(+))"],["EC%3A1.1.1.51","3(or 17)beta-hydroxysteroid dehydrogenase"],["EC%3A1.1.1.64","testosterone 17beta-dehydrogenase (NADP(+))"],["EC%3A1.14.14.14","aromatase"],["EC%3A1.14.14.197","progesterone 11alpha-monooxygenase"],["EC%3A1.14.15.19","C-19 steroid 1alpha-hydroxylase"]],"b":[["mapped/Testosterone.yaml","testosterone"]]},{"id":"CHEBI:30854","l":"","na":29,"nb":1,"a":[["EC%3A1.14.13.168","indole-3-pyruvate monooxygenase"],["EC%3A1.14.13.235","indole-3-acetate monooxygenase"],["EC%3A1.2.3.7","indole-3-acetaldehyde oxidase"],["EC%3A2.1.1.278","indole-3-acetate O-methyltransferase"],["EC%3A2.4.1.121","indole-3-acetate beta-glucosyltransferase"],["EC%3A3.5.1.134","(indol-3-yl)acetyl-L-aspartate hydrolase"]],"b":[["mapped/Indole-3-acetate.yaml","Indole-3-acetate"]]},{"id":"CHEBI:15347","l":"acetone","na":27,"nb":1,"a":[["EC%3A1.1.1.80","isopropanol dehydrogenase (NADP(+))"],["EC%3A1.14.13.226","acetone monooxygenase (methyl acetate-forming)"],["EC%3A1.14.14.141","psoralen synthase"],["EC%3A1.14.14.148","angelicin synthase"],["EC%3A2.6.3.1","oximinotransferase"],["EC%3A4.1.1.4","acetoacetate decarboxylase"]],"b":[["mapped/Acetone.yaml","acetone"]]},{"id":"CHEBI:15792","l":"","na":27,"nb":1,"a":[["EC%3A1.2.1.15","malonate-semialdehyde dehydrogenase"],["EC%3A2.3.1.187","acetyl-S-ACP:malonate ACP transferase"],["EC%3A2.8.3.13","succinate--hydroxymethylglutarate CoA-transferase"],["EC%3A2.8.3.3","malonate CoA-transferase"],["EC%3A3.5.1.95","N-malonylurea hydrolase"],["EC%3A4.1.1.88","biotin-independent malonate decarboxylase"]],"b":[["mapped/Malonate.yaml","Malonate"]]},{"id":"CHEBI:17071","l":"glycolaldehyde","na":27,"nb":1,"a":[["EC%3A1.11.1.14","lignin peroxidase"],["EC%3A1.11.1.16","versatile peroxidase"],["EC%3A1.13.11.81","7,8-dihydroneopterin oxygenase"],["EC%3A1.2.1.21","glycolaldehyde dehydrogenase"],["EC%3A1.4.3.8","ethanolamine oxidase"],["EC%3A4.1.1.40","hydroxypyruvate decarboxylase"]],"b":[["mapped/Glycolaldehyde.yaml","glycolaldehyde"]]},{"id":"CHEBI:16217","l":"","na":26,"nb":1,"a":[["EC%3A1.1.1.118","glucose 1-dehydrogenase (NAD(+))"],["EC%3A1.1.1.119","glucose 1-dehydrogenase (NADP(+))"],["EC%3A1.1.1.359","aldose 1-dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.1.360","glucose/galactose 1-dehydrogenase"],["EC%3A1.1.1.47","glucose 1-dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.3.4","glucose oxidase"]],"b":[["mapped/D-_-gluconic_Acid_Gamma-lactone.yaml","D-(+)-Gluconic acid gamma-lactone"]]},{"id":"CHEBI:17169","l":"","na":26,"nb":1,"a":[["EC%3A1.2.1.28","benzaldehyde dehydrogenase (NAD(+))"],["EC%3A1.2.1.7","benzaldehyde dehydrogenase (NADP(+))"],["EC%3A4.1.1.7","benzoylformate decarboxylase"],["EC%3A4.1.2.10","(R)-mandelonitrile lyase"],["EC%3A4.1.2.26","phenylserine aldolase"],["EC%3A4.1.2.38","benzoin aldolase"]],"b":[["mapped/Benzaldehyde.yaml","Benzaldehyde"]]},{"id":"CHEBI:30839","l":"","na":26,"nb":1,"a":[["EC%3A1.3.1.14","dihydroorotate dehydrogenase (NAD(+))"],["EC%3A1.3.1.15","dihydroorotate dehydrogenase (NADP(+))"],["EC%3A1.3.5.2","dihydroorotate dehydrogenase (quinone)"],["EC%3A1.3.98.1","dihydroorotate oxidase (fumarate)"],["EC%3A2.4.2.10","orotate phosphoribosyltransferase"],["RHEA%3A29347","orotate(in) + 2 H(+)(in) = orotate(out) + 2 H(+)(out)"]],"b":[["mapped/Orotate.yaml","Orotate"]]},{"id":"CHEBI:17594","l":"","na":25,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17594","requires hydroquinone"],["EC%3A1.10.3.2","laccase"],["EC%3A1.13.11.66","hydroquinone 1,2-dioxygenase"],["EC%3A1.14.13.64","4-hydroxybenzoate 1-hydroxylase"],["EC%3A1.6.5.6","p-benzoquinone reductase (NADPH)"],["EC%3A1.8.5.7","glutathionyl-hydroquinone reductase"]],"b":[["mapped/Hydroquinone.yaml","Hydroquinone"]]},{"id":"CHEBI:18346","l":"vanillin","na":25,"nb":1,"a":[["EC%3A1.1.3.38","vanillyl-alcohol oxidase"],["EC%3A1.11.1.16","versatile peroxidase"],["EC%3A1.13.11.43","lignostilbene alphabeta-dioxygenase"],["EC%3A1.13.11.88","isoeugenol monooxygenase"],["EC%3A1.13.11.94","4-vinylguaiacol dioxygenase"],["EC%3A1.2.1.67","vanillin dehydrogenase"]],"b":[["mapped/Vanillin.yaml","Vanillin"]]},{"id":"CHEBI:16551","l":"","na":24,"nb":1,"a":[["EC%3A2.3.1.122","trehalose O-mycolyltransferase"],["EC%3A2.3.1.279","long-chain-acyl-CoA--trehalose acyltransferase"],["EC%3A2.4.1.231","alpha,alpha-trehalose phosphorylase (configuration-retaining)"],["EC%3A2.4.1.245","alpha,alpha-trehalose synthase"],["EC%3A2.4.1.64","alpha,alpha-trehalose phosphorylase"],["EC%3A2.7.1.201","protein-N(pi)-phosphohistidine--trehalose phosphotransferase"]],"b":[["mapped/Alphaalpha-Trehalose.yaml","alpha,alpha-Trehalose"]]},{"id":"CHEBI:17597","l":"","na":24,"nb":1,"a":[["EC%3A1.1.3.19","4-hydroxymandelate oxidase (decarboxylating)"],["EC%3A1.13.11.94","4-vinylguaiacol dioxygenase"],["EC%3A1.17.9.1","4-methylphenol dehydrogenase (hydroxylating)"],["EC%3A1.2.1.64","4-hydroxybenzaldehyde dehydrogenase (NAD(+))"],["EC%3A1.2.1.96","4-hydroxybenzaldehyde dehydrogenase (NADP(+))"],["EC%3A4.1.2.11","hydroxymandelonitrile lyase"]],"b":[["mapped/4-Hydroxybenzaldehyde.yaml","4-Hydroxybenzaldehyde"]]},{"id":"CHEBI:17234","l":"glucose","na":1,"nb":23,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Corn_Steep_Liquor_Glucose_Fumarate.yaml","Corn Steep Liquor + Glucose + Fumarate"],["mapped/Fastidious_Anaerobe_Broth_With_Meat_Granules.yaml","Fastidious Anaerobe Broth With Meat Granules"],["mapped/GYPS.yaml","GYPS"],["mapped/Glucose.yaml","Glucose"],["mapped/Glucose_2.yaml","glucose"],["mapped/Glucose_Acetate.yaml","Glucose + Acetate"]]},{"id":"CHEBI:36257","l":"","na":22,"nb":1,"a":[["RHEA%3A79091","an L-alpha-amino acid + taurocholate = an N-choloyl-L-alpha-amino acid + taurine"],["RHEA%3A47108","cholate + taurine = taurocholate + H2O"],["RHEA%3A47100","choloyl-CoA + taurine = taurocholate + CoA + H(+)"],["RHEA%3A67560","taurocholate + 3'-phosphoadenylyl sulfate = taurocholate 7-sulfate + adenosine 3',5'-bisphosphate + H(+)"],["RHEA%3A50052","taurocholate(in) + ATP + H2O = taurocholate(out) + ADP + phosphate + H(+)"],["RHEA%3A66404","taurocholate(in) + glutathione(in) + ATP + H2O = taurocholate(out) + glutathione(out) + ADP + phosphate + H(+)"]],"b":[["mapped/Taurocholate.yaml","Taurocholate"]]},{"id":"CHEBI:53455","l":"","na":22,"nb":1,"a":[["EC%3A1.1.1.175","D-xylose 1-dehydrogenase"],["EC%3A1.1.1.179","D-xylose 1-dehydrogenase (NADP(+), D-xylono-1,5-lactone-forming)"],["EC%3A1.1.1.307","D-xylose reductase [NAD(P)H]"],["EC%3A1.1.1.359","aldose 1-dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.1.430","D-xylose reductase (NADH)"],["EC%3A1.1.1.431","D-xylose reductase (NADPH)"]],"b":[["mapped/Glucose_Xylose.yaml","Glucose + Xylose"]]},{"id":"CHEBI:17748","l":"thymidine","na":21,"nb":1,"a":[["EC%3A2.4.2.2","pyrimidine-nucleoside phosphorylase"],["EC%3A2.4.2.4","thymidine phosphorylase"],["EC%3A2.7.1.114","AMP--thymidine kinase"],["EC%3A2.7.1.118","ADP--thymidine kinase"],["EC%3A2.7.1.145","deoxynucleoside kinase"],["EC%3A2.7.1.21","thymidine kinase"]],"b":[["mapped/Thymidine.yaml","Thymidine"]]},{"id":"CHEBI:16016","l":"dihydroxyacetone","na":20,"nb":1,"a":[["EC%3A1.1.1.156","glycerol 2-dehydrogenase (NADP(+))"],["EC%3A1.1.1.6","glycerol dehydrogenase"],["EC%3A1.1.99.22","glycerol dehydrogenase (acceptor)"],["EC%3A2.2.1.3","formaldehyde transketolase"],["EC%3A2.7.1.121","phosphoenolpyruvate--glycerone phosphotransferase"],["EC%3A2.7.1.29","glycerone kinase"]],"b":[["mapped/Dihydroxyacetone.yaml","Dihydroxyacetone"]]},{"id":"CHEBI:17716","l":"lactose","na":20,"nb":1,"a":[["EC%3A2.4.1.22","lactose synthase"],["EC%3A2.7.1.207","protein-N(pi)-phosphohistidine--lactose phosphotransferase"],["EC%3A3.2.1.108","lactase"],["EC%3A3.2.1.140","lacto-N-biosidase"],["EC%3A3.2.1.227","N-acetyllactosaminidase"],["RHEA%3A86923","a beta-D-Gal-(1->4)-beta-D-Glc-(1<->1)-Cer(d18:1(4E)) + H2O = lactose + an N-acylsphing-4-enine"]],"b":[["mapped/Lactose.yaml","Lactose"]]},{"id":"CHEBI:17836","l":"4-aminobenzoate","na":20,"nb":1,"a":[["EC%3A1.14.13.27","4-aminobenzoate 1-monooxygenase"],["EC%3A1.14.99.68","4-aminobenzoate N-oxygenase"],["EC%3A2.4.2.54","beta-ribofuranosylphenol 5'-phosphate synthase"],["EC%3A2.5.1.15","dihydropteroate synthase"],["EC%3A4.1.1.24","aminobenzoate decarboxylase"],["EC%3A4.1.3.38","aminodeoxychorismate lyase"]],"b":[["mapped/4-aminobenzoate.yaml","4-Aminobenzoate"]]},{"id":"CHEBI:17924","l":"D-glucitol","na":20,"nb":1,"a":[["EC%3A1.1.1.14","L-iditol 2-dehydrogenase"],["EC%3A1.1.1.289","sorbose reductase"],["EC%3A1.1.3.40","D-mannitol oxidase"],["EC%3A1.1.99.21","D-sorbitol dehydrogenase (acceptor)"],["EC%3A1.1.99.28","glucose-fructose oxidoreductase"],["EC%3A2.7.1.198","protein-N(pi)-phosphohistidine--D-sorbitol phosphotransferase"]],"b":[["mapped/D-sorbitol.yaml","D-Sorbitol"]]},{"id":"CHEBI:16709","l":"pyridoxine","na":19,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16709","requires pyridoxine"],["EC%3A1.1.1.65","pyridoxine 4-dehydrogenase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.99.9","pyridoxine 5-dehydrogenase"],["EC%3A2.4.1.160","pyridoxine 5'-O-beta-D-glucosyltransferase"],["EC%3A2.7.1.35","pyridoxal kinase"]],"b":[["mapped/Pyridoxine.yaml","Pyridoxine"]]},{"id":"CHEBI:17447","l":"","na":19,"nb":1,"a":[["EC%3A1.1.1.183","geraniol dehydrogenase (NADP(+))"],["EC%3A1.1.1.347","geraniol dehydrogenase (NAD(+))"],["EC%3A1.14.14.83","geraniol 8-hydroxylase"],["EC%3A2.7.1.216","farnesol kinase"],["EC%3A3.1.7.11","geranyl diphosphate diphosphatase"],["EC%3A5.4.4.4","geraniol isomerase"]],"b":[["mapped/Geraniol.yaml","Geraniol"]]},{"id":"CHEBI:17997","l":"dinitrogen","na":18,"nb":1,"a":[["EC%3A1.18.6.1","nitrogenase"],["EC%3A1.18.6.2","vanadium-dependent nitrogenase"],["EC%3A1.19.6.1","nitrogenase (flavodoxin)"],["EC%3A1.7.2.4","nitrous-oxide reductase"],["EC%3A1.7.2.8","hydrazine dehydrogenase"],["RHEA%3A79967","3-diazoavenalumate + NADH + H(+) = avenalumate + N2 + NAD(+)"]],"b":[["mapped/Nitrogen_gas.yaml","Nitrogen gas"]]},{"id":"CHEBI:16881","l":"","na":17,"nb":1,"a":[["EC%3A1.13.11.17","indole 2,3-dioxygenase"],["EC%3A1.14.14.153","indole-2-monooxygenase"],["EC%3A4.1.1.92","indole-3-carboxylate decarboxylase"],["EC%3A4.1.2.8","indole-3-glycerol-phosphate lyase"],["EC%3A4.1.99.1","tryptophanase"],["EC%3A4.2.1.122","tryptophan synthase (indole-salvaging)"]],"b":[["mapped/Indole.yaml","Indole"]]},{"id":"CHEBI:17120","l":"hexanoate","na":17,"nb":1,"a":[["EC%3A3.5.1.39","alkylamidase"],["RHEA%3A53496","1-hexanoyl-2-acyl-sn-glycero-3-phosphocholine + H2O = hexanoate + a 2-acyl-sn-glycero-3-phosphocholine + H(+)"],["RHEA%3A54464","1-octadecanoyl-2-hexanoyl-sn-glycero-3-phosphocholine + H2O = hexanoate + 1-octadecanoyl-sn-glycero-3-phosphocholine + H(+)"],["RHEA%3A47352","a hexanoate ester + H2O = an aliphatic alcohol + hexanoate + H(+)"],["RHEA%3A79351","hexanal + 2 Fe(III)-[cytochrome c] + H2O = hexanoate + 2 Fe(II)-[cytochrome c] + 3 H(+)"],["RHEA%3A67276","hexanal + NAD(+) + H2O = hexanoate + NADH + 2 H(+)"]],"b":[["mapped/Hexanoate.yaml","Hexanoate"]]},{"id":"CHEBI:10352","l":"","na":16,"nb":1,"a":[["EC%3A1.14.14.126","beta-amyrin 28-monooxygenase"],["EC%3A1.14.14.134","beta-amyrin 24-hydroxylase"],["EC%3A1.14.14.152","beta-amyrin 11-oxidase"],["EC%3A1.14.14.171","beta-amyrin 16alpha-hydroxylase"],["EC%3A1.14.14.63","beta-amyrin 16beta-monooxygenase"],["EC%3A1.14.14.64","beta-amyrin 6beta-monooxygenase"]],"b":[["mapped/Beta-Amyrin.yaml","Beta-Amyrin"]]},{"id":"CHEBI:15889","l":"","na":16,"nb":1,"a":[["EC%3A2.3.1.26","sterol O-acyltransferase"],["EC%3A2.3.1.43","phosphatidylcholine--sterol O-acyltransferase"],["EC%3A2.3.1.73","diacylglycerol--sterol O-acyltransferase"],["EC%3A2.4.1.173","sterol 3beta-glucosyltransferase"],["EC%3A3.1.1.13","sterol esterase"],["RHEA%3A21204","a sterol + a 1,2-diacyl-sn-glycero-3-phosphocholine = a sterol ester + a 1-acyl-sn-glycero-3-phosphocholine"]],"b":[["mapped/Sterol.yaml","Sterol"]]},{"id":"CHEBI:16247","l":"","na":16,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.A.79","The Autophagosomal Phospholipid Transmembrane Translocase (Atg9) Family"],["TCDB%3A9.A.36","The Ca2+-dependent Phospholipid Scramblase (Scramblase) Family"],["TCDB%3A1.A.17","The Calcium-dependent Chloride Channel (Ca-ClC) Family"],["TCDB%3A9.B.27","The Death Effector Domain A (DedA) Family"],["TCDB%3A8.A.97","The EPG-3/VMP1 (EPG/VPM) Scramblase Family"]],"b":[["mapped/Bacto_Soytone.yaml","Bacto Soytone"]]},{"id":"CHEBI:17151","l":"xylitol","na":16,"nb":1,"a":[["EC%3A1.1.1.10","L-xylulose reductase"],["EC%3A1.1.1.15","D-iditol 2-dehydrogenase"],["EC%3A1.1.1.307","D-xylose reductase [NAD(P)H]"],["EC%3A1.1.1.430","D-xylose reductase (NADH)"],["EC%3A1.1.1.431","D-xylose reductase (NADPH)"],["EC%3A1.1.1.9","D-xylulose reductase"]],"b":[["mapped/Xylitol.yaml","Xylitol"]]},{"id":"CHEBI:17240","l":"","na":15,"nb":1,"a":[["EC%3A2.8.3.22","succinyl-CoA--L-malate CoA-transferase"],["EC%3A4.1.1.113","trans-aconitate decarboxylase"],["EC%3A4.1.1.6","cis-aconitate decarboxylase"],["EC%3A6.2.1.4","succinate--CoA ligase (GDP-forming)"],["RHEA%3A15253","cis-aconitate + H(+) = itaconate + CO2"],["RHEA%3A86311","itaconate + ATP + CoA = itaconyl-CoA + ADP + phosphate"]],"b":[["mapped/Itaconate.yaml","Itaconate"]]},{"id":"CHEBI:17987","l":"","na":15,"nb":1,"a":[["EC%3A1.14.15.26","toluene methyl-monooxygenase"],["EC%3A2.3.1.196","benzyl alcohol O-benzoyltransferase"],["EC%3A2.3.1.224","acetyl-CoA-benzylalcohol acetyltransferase"],["EC%3A3.1.1.70","cetraxate benzylesterase"],["EC%3A3.5.1.58","N-benzyloxycarbonylglycine hydrolase"],["EC%3A3.5.1.64","N(alpha)-benzyloxycarbonylleucine hydrolase"]],"b":[["mapped/Benzyl_Alcohol.yaml","Benzyl Alcohol"]]},{"id":"CHEBI:15698","l":"","na":14,"nb":1,"a":[["EC%3A2.7.1.74","deoxycytidine kinase"],["EC%3A3.5.1.135","N(4)-acetylcytidine amidohydrolase"],["EC%3A3.5.4.5","cytidine deaminase"],["RHEA%3A20061","2'-deoxycytidine + a ribonucleoside 5'-triphosphate = dCMP + a ribonucleoside 5'-diphosphate + H(+)"],["RHEA%3A46040","2'-deoxycytidine + ATP = dCMP + ADP + H(+)"],["RHEA%3A13433","2'-deoxycytidine + H2O + H(+) = 2'-deoxyuridine + NH4(+)"]],"b":[["mapped/2-Deoxycytidine.yaml","2'-Deoxycytidine"]]},{"id":"CHEBI:15846","l":"NAD(+)","na":14,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15846","requires NAD+"],["ARO%3A3002846","arr-1"],["ARO%3A3002847","arr-2"],["ARO%3A3002848","arr-3"],["ARO%3A3002849","arr-4"],["ARO%3A3002850","arr-5"]],"b":[["mapped/Beta-nad.yaml","beta-NAD"]]},{"id":"CHEBI:16450","l":"","na":14,"nb":1,"a":[["EC%3A1.14.11.10","pyrimidine-deoxynucleoside 1'-dioxygenase"],["EC%3A1.14.11.3","pyrimidine-deoxynucleoside 2'-dioxygenase"],["EC%3A2.4.2.2","pyrimidine-nucleoside phosphorylase"],["EC%3A3.5.4.5","cytidine deaminase"],["RHEA%3A13433","2'-deoxycytidine + H2O + H(+) = 2'-deoxyuridine + NH4(+)"],["RHEA%3A23316","2'-deoxyuridine + 2-oxoglutarate + O2 = 2-deoxy-D-ribono-1,4-lactone + uracil + succinate + CO2"]],"b":[["mapped/2-deoxyuridine.yaml","2'-Deoxyuridine"]]},{"id":"CHEBI:16619","l":"(2-trans,6-trans)-farnesol","na":14,"nb":1,"a":[["EC%3A1.1.1.216","farnesol dehydrogenase"],["EC%3A1.1.1.354","farnesol dehydrogenase (NAD(+))"],["EC%3A2.7.1.216","farnesol kinase"],["EC%3A3.1.7.6","farnesyl diphosphatase"],["EC%3A5.2.1.9","farnesol 2-isomerase"],["RHEA%3A13401","(2E,6E)-farnesol = (2Z,6E)-farnesol"]],"b":[["mapped/TransTrans-Farnesol.yaml","Trans,Trans-Farnesol"]]},{"id":"CHEBI:18401","l":"","na":14,"nb":1,"a":[["EC%3A1.14.14.54","phenylacetate 2-hydroxylase"],["EC%3A1.2.1.39","phenylacetaldehyde dehydrogenase"],["EC%3A4.1.1.119","phenylacetate decarboxylase"],["EC%3A6.2.1.30","phenylacetate--CoA ligase"],["RHEA%3A21392","2-phenylacetaldehyde + NAD(+) + H2O = 2-phenylacetate + NADH + 2 H(+)"],["RHEA%3A64820","2-phenylacetamide + H2O = 2-phenylacetate + NH4(+)"]],"b":[["mapped/Phenylacetate.yaml","Phenylacetate"]]},{"id":"CHEBI:28262","l":"dimethyl sulfoxide","na":14,"nb":1,"a":[["EC%3A1.14.13.245","assimilatory dimethylsulfide S-monooxygenase"],["EC%3A1.8.1.17","dimethylsulfone reductase"],["EC%3A1.8.2.4","dimethyl sulfide:cytochrome c2 reductase"],["EC%3A1.8.5.3","respiratory dimethylsulfoxide reductase"],["RHEA%3A30587","2-demethylmenaquinol-8 + dimethyl sulfoxide = 2-demethylmenaquinone-8 + dimethyl sulfide + H2O"],["RHEA%3A30227","2 Fe(III)-[cytochrome c2] + dimethyl sulfide + H2O = 2 Fe(II)-[cytochrome c2] + dimethyl sulfoxide + 2 H(+)"]],"b":[["mapped/Dimethyl_Sulfoxide.yaml","Dimethyl sulfoxide"]]},{"id":"CHEBI:10983","l":"(R)-3-hydroxybutyrate","na":13,"nb":1,"a":[["EC%3A1.1.1.30","3-hydroxybutyrate dehydrogenase"],["EC%3A3.1.1.22","hydroxybutyrate-dimer hydrolase"],["EC%3A3.1.1.75","poly(3-hydroxybutyrate) depolymerase"],["RHEA%3A65204","(3R)-3-hydroxybutanoyl-CoA + H2O = (R)-3-hydroxybutanoate + CoA + H(+)"],["RHEA%3A10172","(3R)-hydroxybutanoate dimer + H2O = 2 (R)-3-hydroxybutanoate + H(+)"],["RHEA%3A11248","[(3R)-hydroxybutanoate](n) + H2O = [(3R)-hydroxybutanoate](n-1) + (R)-3-hydroxybutanoate + H(+)"]],"b":[["mapped/R-3-hydroxybutyrate.yaml","(R)-3-hydroxybutyrate"]]},{"id":"CHEBI:15588","l":"","na":13,"nb":1,"a":[["EC%3A1.1.1.83","D-malate dehydrogenase (decarboxylating)"],["EC%3A1.1.99.40","(R)-2-hydroxyglutarate--pyruvate transhydrogenase"],["EC%3A2.8.3.20","succinyl-CoA--D-citramalate CoA-transferase"],["EC%3A4.2.1.31","maleate hydratase"],["RHEA%3A81419","(3R)-3-hydroxy-4-oxobutanoate + NAD(+) + H2O = (R)-malate + NADH + 2 H(+)"],["RHEA%3A81423","(3R)-3-hydroxy-4-oxobutanoate + NADP(+) + H2O = (R)-malate + NADPH + 2 H(+)"]],"b":[["mapped/D-malate.yaml","D-malate"]]},{"id":"CHEBI:15724","l":"","na":13,"nb":1,"a":[["EC%3A1.14.13.148","trimethylamine monooxygenase"],["EC%3A1.7.2.3","trimethylamine-N-oxide reductase"],["EC%3A4.1.2.32","trimethylamine-oxide aldolase"],["RHEA%3A30583","2-demethylmenaquinol-8 + trimethylamine N-oxide + H(+) = 2-demethylmenaquinone-8 + trimethylamine + H2O"],["RHEA%3A24236","trimethylamine + 2 Fe(III)-[cytochrome c] + H2O = trimethylamine N-oxide + 2 Fe(II)-[cytochrome c] + 3 H(+)"],["RHEA%3A29271","trimethylamine N-oxide + a menaquinol + H(+) = trimethylamine + a menaquinone + H2O"]],"b":[["mapped/Trimethylamine-N-oxide.yaml","Trimethylamine-N-oxide"]]},{"id":"CHEBI:16183","l":"methane","na":13,"nb":1,"a":[["EC%3A1.14.13.25","methane monooxygenase (soluble)"],["EC%3A1.14.18.3","methane monooxygenase (particulate)"],["EC%3A2.8.4.1","coenzyme-B sulfoethylthiotransferase"],["EC%3A4.7.1.1","alpha-D-ribose 1-methylphosphonate 5-phosphate C-P-lyase"],["RHEA%3A34707","alpha-D-ribose 1-methylphosphonate 5-phosphate + AH2 + S-adenosyl-L-methionine = alpha-D-ribose 1,2-cyclic phosphate 5-phosphate + methane + 5'-deoxyadenosine + L-methionine + A + H(+)"],["RHEA%3A12532","coenzyme B + methyl-coenzyme M = methane + coenzyme M-coenzyme B heterodisulfide"]],"b":[["mapped/Methane.yaml","methane"]]},{"id":"CHEBI:17045","l":"dinitrogen oxide","na":13,"nb":1,"a":[["EC%3A1.7.1.14","nitric oxide reductase [NAD(P)(+), nitrous oxide-forming]"],["EC%3A1.7.2.4","nitrous-oxide reductase"],["EC%3A1.7.2.5","nitric-oxide reductase (cytochrome c)"],["EC%3A1.7.5.2","nitric oxide reductase (menaquinol)"],["RHEA%3A30215","a menaquinol + 2 nitric oxide = nitrous oxide + a menaquinone + H2O"],["RHEA%3A43108","N2 + 2 Fe(III)-[cytochrome c] + H2O = nitrous oxide + 2 Fe(II)-[cytochrome c] + 2 H(+)"]],"b":[["mapped/Nitrous_Oxide.yaml","nitrous oxide"]]},{"id":"CHEBI:17578","l":"toluene","na":13,"nb":1,"a":[["EC%3A1.14.12.11","toluene dioxygenase"],["EC%3A1.14.13.236","toluene 4-monooxygenase"],["EC%3A1.14.13.243","toluene 2-monooxygenase"],["EC%3A1.14.15.26","toluene methyl-monooxygenase"],["EC%3A4.1.1.119","phenylacetate decarboxylase"],["EC%3A4.1.99.11","benzylsuccinate synthase"]],"b":[["mapped/Toluene.yaml","Toluene"]]},{"id":"CHEBI:17612","l":"","na":13,"nb":1,"a":[["EC%3A1.13.11.15","3,4-dihydroxyphenylacetate 2,3-dioxygenase"],["EC%3A1.14.12.9","4-chlorophenylacetate 3,4-dioxygenase"],["EC%3A1.14.14.9","4-hydroxyphenylacetate 3-monooxygenase"],["EC%3A4.1.1.83","4-hydroxyphenylacetate decarboxylase"],["RHEA%3A69080","3,4-dihydroxyphenylacetaldehyde + NAD(+) + H2O = 3,4-dihydroxyphenylacetate + NADH + 2 H(+)"],["RHEA%3A62556","3,4-dihydroxyphenylacetate + H(+) = 4-methylcatechol + CO2"]],"b":[["mapped/34-Dihydroxyphenylacetate.yaml","3,4-Dihydroxyphenylacetate"]]},{"id":"CHEBI:18404","l":"","na":13,"nb":1,"a":[["EC%3A1.14.12.23","nitroarene dioxygenase"],["EC%3A1.14.13.243","toluene 2-monooxygenase"],["EC%3A1.3.1.19","cis-1,2-dihydrobenzene-1,2-diol dehydrogenase"],["EC%3A1.3.1.68","1,2-dihydroxy-6-methylcyclohexa-3,5-dienecarboxylate dehydrogenase"],["RHEA%3A15657","1,6-dihydroxy-2-methylcyclohexa-2,4-dienecarboxylate + NAD(+) = 3-methylcatechol + CO2 + NADH"],["RHEA%3A25193","(1S,2R)-3-methylcyclohexa-3,5-diene-1,2-diol + NAD(+) = 3-methylcatechol + NADH + H(+)"]],"b":[["mapped/3-Methylcatechol.yaml","3-Methylcatechol"]]},{"id":"CHEBI:27689","l":"","na":13,"nb":1,"a":[["RHEA%3A48596","1,2-didecanoylglycerol + H2O = decanoylglycerol + decanoate + H(+)"],["RHEA%3A44320","1-decanoylglycerol + H2O = decanoate + glycerol + H(+)"],["RHEA%3A44104","decanal + NAD(+) + H2O = decanoate + NADH + 2 H(+)"],["RHEA%3A33627","decanoate + ATP + CoA = decanoyl-CoA + AMP + diphosphate"],["RHEA%3A65008","decanoate + ATP + H(+) = decanoyl-AMP + diphosphate"],["RHEA%3A47360","decanoate ester + H2O = decanoate + an aliphatic alcohol + H(+)"]],"b":[["mapped/Decanoate.yaml","Decanoate"]]},{"id":"CHEBI:28037","l":"","na":13,"nb":1,"a":[["EC%3A1.1.3.29","N-acylhexosamine oxidase"],["EC%3A3.2.1.217","exo-acting protein-alpha-N-acetylgalactosaminidase"],["EC%3A3.2.1.49","alpha-N-acetylgalactosaminidase"],["RHEA%3A70555","a 3-O-[N-acetyl-alpha-D-galactosaminyl]-L-seryl-[protein] + H2O = N-acetyl-D-galactosamine + L-seryl-[protein]"],["RHEA%3A70559","a 3-O-[N-acetyl-alpha-D-galactosaminyl]-L-threonyl-[protein] + H2O = N-acetyl-D-galactosamine + L-threonyl-[protein]"],["RHEA%3A82815","a beta-D-GalNAc-(1->3)-alpha-D-Gal-(1->3)-[alpha-L-Fuc-(1->2)]-beta-D-Gal-(1->4)-beta-D-GlcNAc derivative + H2O = an alpha-D-Gal-(1->3)-[alpha-L-Fuc-(1->2)]-beta-D-Gal-(1->4)-beta-D-GlcNAc derivative + N-acetyl-D-galactosamine"]],"b":[["mapped/N-Acetyl-D-galactosamine.yaml","N-Acetyl-D-galactosamine"]]},{"id":"CHEBI:28946","l":"","na":13,"nb":1,"a":[["EC%3A1.14.13.178","methylxanthine N(1)-demethylase"],["EC%3A1.14.13.179","methylxanthine N(3)-demethylase"],["EC%3A1.17.5.2","caffeine dehydrogenase"],["EC%3A2.1.1.159","theobromine synthase"],["EC%3A2.1.1.160","caffeine synthase"],["RHEA%3A24604","7-methylxanthine + S-adenosyl-L-methionine = theobromine + S-adenosyl-L-homocysteine + H(+)"]],"b":[["mapped/Theobromine.yaml","Theobromine"]]},{"id":"CHEBI:16193","l":"3-hydroxybenzoate","na":12,"nb":1,"a":[["EC%3A1.14.13.23","3-hydroxybenzoate 4-monooxygenase"],["EC%3A1.14.13.24","3-hydroxybenzoate 6-monooxygenase"],["EC%3A1.14.99.23","3-hydroxybenzoate 2-monooxygenase"],["EC%3A4.1.3.45","3-hydroxybenzoate synthase"],["EC%3A6.2.1.37","3-hydroxybenzoate--CoA ligase"],["RHEA%3A14193","3-hydroxybenzoate + AH2 + O2 = 2,3-dihydroxybenzoate + A + H2O"]],"b":[["mapped/3-hydroxybenzoate.yaml","3-hydroxybenzoate"]]},{"id":"CHEBI:26271","l":"proline","na":12,"nb":1,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.15","The Betaine/Carnitine/Choline Transporter (BCCT) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"]],"b":[["mapped/Proline.yaml","Proline"]]},{"id":"CHEBI:28077","l":"rifampicin","na":12,"nb":1,"a":[["ARO%3A3007073","Bacillus subtilis rpoB mutants conferring resistance to rifampin"],["ARO%3A3004480","Bifidobacterium adolescentis rpoB mutants conferring resistance to rifampicin"],["ARO%3A3004563","Clostridioides difficile rpoB with mutation conferring resistance to rifampicin"],["ARO%3A3003288","Escherichia coli rpoB mutants conferring resistance to rifampicin"],["ARO%3A3007051","Helicobacter pylori rpoB mutation conferring resistance to rifampicin"],["ARO%3A3003284","Mycobacterium leprae rpoB mutations conferring resistance to rifampicin"]],"b":[["mapped/Rifampicin.yaml","Rifampicin"]]},{"id":"CHEBI:28115","l":"methylcobalamin","na":12,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_28115","requires methylcobalamin"],["EC%3A1.16.1.8","[methionine synthase] reductase"],["EC%3A2.5.1.151","alkylcobalamin dealkylase"],["RHEA%3A23908","2 methylcob(III)alamin-[methionine synthase] + 2 S-adenosyl-L-homocysteine + NADP(+) + H(+) = 2 cob(II)alamin-[methionine synthase] + 2 S-adenosyl-L-methionine + NADPH"],["RHEA%3A81907","(2R,3R,5R)-2-(S-pantetheinyl)-carbapenam-3-carboxylate + methylcob(III)alamin + S-adenosyl-L-methionine = (2R,3R,5S,6R)-6-(methyl)-2-(S-pantetheinyl)-carbapenam-3-carboxylate + cob(III)alamin + 5'-deoxyadenosine + L-methionine"],["RHEA%3A81911","(2R,3R,5S,6R)-6-(methyl)-2-(S-pantetheinyl)-carbapenam-3-carboxylate + methylcob(III)alamin + S-adenosyl-L-methionine = (2R,3R,5S,6R)-6-(ethyl)-2-(S-pantetheinyl)-carbapenam-3-carboxylate + cob(III)alamin + 5'-deoxyadenosine + L-methionine"]],"b":[["mapped/Methylcobalamin.yaml","methylcobalamin"]]},{"id":"CHEBI:30612","l":"","na":12,"nb":1,"a":[["EC%3A2.3.1.131","glucarate O-hydroxycinnamoyltransferase"],["EC%3A2.3.1.98","chlorogenate--glucarate O-hydroxycinnamoyltransferase"],["EC%3A4.2.1.40","glucarate dehydratase"],["RHEA%3A23204","chlorogenate + D-glucarate = 2-O-caffeoylglucarate + L-quinate"],["RHEA%3A14573","D-glucarate = 5-dehydro-4-deoxy-D-glucarate + H2O"],["RHEA%3A23308","D-glucarate + (E)-sinapoyl-CoA = 2-O-[(E)-sinapoyl]-D-glucarate + CoA"]],"b":[["mapped/D-glucarate.yaml","D-glucarate"]]},{"id":"CHEBI:31011","l":"","na":12,"nb":1,"a":[["EC%3A3.5.1.50","pentanamidase"],["RHEA%3A41199","1-hexadecanoyl-2-pentanoyl-sn-glycero-3-phosphocholine + H2O = pentanoate + 1-hexadecanoyl-sn-glycero-3-phosphocholine + H(+)"],["RHEA%3A54460","1-octadecanoyl-2-pentanoyl-sn-glycero-3-phosphocholine + H2O = pentanoate + 1-octadecanoyl-sn-glycero-3-phosphocholine + H(+)"],["RHEA%3A69092","pentanal + NAD(+) + H2O = pentanoate + NADH + 2 H(+)"],["RHEA%3A76663","pentanal + NADP(+) + H2O = pentanoate + NADPH + 2 H(+)"],["RHEA%3A10000","pentanamide + H2O = pentanoate + NH4(+)"]],"b":[["mapped/Valerate.yaml","Valerate"]]},{"id":"CHEBI:16134","l":"ammonia","na":11,"nb":1,"a":[["TCDB%3A1.A.11","The Ammonium Transporter Channel (Amt) Family"],["MCSA%3A376","adenosine deaminase"],["MCSA%3A75","aspartate-ammonia ligase"],["MCSA%3A449","cystathionine beta-lyase"],["MCSA%3A97","cytidine deaminase"],["MCSA%3A710","cytosine deaminase (bacterial)"]],"b":[["mapped/Ammonia.yaml","Ammonia"]]},{"id":"CHEBI:16510","l":"","na":11,"nb":1,"a":[["EC%3A1.1.1.298","3-hydroxypropionate dehydrogenase (NADP(+))"],["EC%3A1.1.1.59","3-hydroxypropionate dehydrogenase"],["EC%3A6.2.1.36","3-hydroxypropionyl-CoA synthase"],["RHEA%3A59432","3-hydroxypropanal + NAD(+) + H2O = 3-hydroxypropanoate + NADH + 2 H(+)"],["RHEA%3A59428","3-hydroxypropanal + NADP(+) + H2O = 3-hydroxypropanoate + NADPH + 2 H(+)"],["RHEA%3A67136","3-hydroxypropanoate + ATP + CoA = 3-hydroxypropanoyl-CoA + ADP + phosphate"]],"b":[["mapped/3-Hydroxypropionate.yaml","3-Hydroxypropionate"]]},{"id":"CHEBI:16537","l":"","na":11,"nb":1,"a":[["EC%3A2.3.1.130","galactarate O-hydroxycinnamoyltransferase"],["EC%3A4.2.1.158","galactarate dehydratase (D-threo-forming)"],["EC%3A4.2.1.42","galactarate dehydratase"],["RHEA%3A45808","galactarate = (2S,3R)-dihydroxy-5-oxohexanedioate + H2O"],["RHEA%3A16005","galactarate = 5-dehydro-4-deoxy-D-glucarate + H2O"],["RHEA%3A12997","galactarate + (E)-feruloyl-CoA = 2-O-[(E)-feruloyl]-D-galactarate + CoA"]],"b":[["mapped/Galactarate.yaml","Galactarate"]]},{"id":"CHEBI:16724","l":"4-hydroxybutyrate","na":11,"nb":1,"a":[["EC%3A1.1.1.61","4-hydroxybutyrate dehydrogenase"],["EC%3A1.1.1.n11","succinic semialdehyde reductase"],["EC%3A1.1.99.24","hydroxyacid-oxoacid transhydrogenase"],["EC%3A6.2.1.40","4-hydroxybutyrate--CoA ligase (AMP-forming)"],["EC%3A6.2.1.56","4-hydroxybutyrate--CoA ligase (ADP-forming)"],["RHEA%3A24734","4-hydroxybutanoate + 2-oxoglutarate = (R)-2-hydroxyglutarate + succinate semialdehyde"]],"b":[["mapped/4-hydroxybutyrate.yaml","4-hydroxybutyrate"]]},{"id":"CHEBI:16918","l":"gallate","na":11,"nb":1,"a":[["EC%3A1.13.11.57","gallate dioxygenase"],["EC%3A2.1.1.341","vanillate/3-O-methylgallate O-demethylase"],["EC%3A2.4.1.136","gallate 1-beta-glucosyltransferase"],["EC%3A3.1.1.20","tannase"],["EC%3A4.1.1.59","gallate decarboxylase"],["RHEA%3A12749","3,4,5-trihydroxybenzoate + H(+) = 1,2,3-trihydroxybenzene + CO2"]],"b":[["mapped/Gallate_Formate.yaml","Gallate + Formate"]]},{"id":"CHEBI:17847","l":"p-cresol","na":11,"nb":1,"a":[["EC%3A1.14.13.236","toluene 4-monooxygenase"],["EC%3A1.17.9.1","4-methylphenol dehydrogenase (hydroxylating)"],["EC%3A4.1.1.83","4-hydroxyphenylacetate decarboxylase"],["EC%3A4.1.99.19","2-iminoacetate synthase"],["RHEA%3A22732","4-hydroxyphenylacetate + H(+) = 4-methylphenol + CO2"],["RHEA%3A56976","4-methylphenol + 2 oxidized [azurin] + H2O = 4-hydroxybenzyl alcohol + 2 reduced [azurin] + 2 H(+)"]],"b":[["mapped/4-Cresol.yaml","4-Cresol"]]},{"id":"CHEBI:18067","l":"phylloquinone","na":11,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18067","requires phylloquinone"],["EC%3A1.14.14.78","phylloquinone omega-hydroxylase"],["EC%3A1.14.99.20","phylloquinone monooxygenase (2,3-epoxidizing)"],["EC%3A1.17.4.4","vitamin-K-epoxide reductase (warfarin-sensitive)"],["RHEA%3A57744","phylloquinol + [protein]-disulfide = phylloquinone + [protein]-dithiol"],["RHEA%3A16745","phylloquinone + AH2 + O2 = 2,3-epoxyphylloquinone + A + H2O"]],"b":[["mapped/Vitamin_K1.yaml","Vitamin K1"]]},{"id":"CHEBI:18212","l":"selenite(2-)","na":11,"nb":1,"a":[["EC%3A1.97.1.14","selenate reductase (quinol)"],["EC%3A1.97.1.9","selenate reductase (cytochrome c)"],["RHEA%3A80603","selenite + 2 Fe(III)-[cytochrome c] + H2O = 2 Fe(II)-[cytochrome] + selenate + 2 H(+)"],["RHEA%3A34903","selenite + 4 glutathione + 2 H(+) = selenodiglutathione + glutathione disulfide + 3 H2O"],["RHEA%3A14029","selenite + A + H2O = selenate + AH2"],["RHEA%3A51636","selenite + a quinone + H2O = selenate + a quinol"]],"b":[["mapped/Selenite.yaml","Selenite"]]},{"id":"CHEBI:25094","l":"","na":11,"nb":1,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.75","The L-Lysine Exporter (LysE) Family"],["TCDB%3A2.A.124","The Lysine Exporter (LysO) Family"]],"b":[["mapped/Lysine.yaml","Lysine"]]},{"id":"CHEBI:26710","l":"sodium chloride","na":1,"nb":11,"a":[["TCDB%3A2.A.30","The Cation-Chloride Cotransporter (CCC) Family"]],"b":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/Brain_Heart_Infusion_Broth.yaml","Brain heart infusion broth"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Mineral_3B_Solution.yaml","Mineral 3B solution"],["mapped/Mineral_3B_Solution_Minus_Nitrogen.yaml","Mineral 3B solution minus Nitrogen"]]},{"id":"CHEBI:27732","l":"","na":11,"nb":1,"a":[["EC%3A1.14.13.178","methylxanthine N(1)-demethylase"],["EC%3A1.17.5.2","caffeine dehydrogenase"],["EC%3A2.1.1.160","caffeine synthase"],["RHEA%3A10280","1,7-dimethylxanthine + S-adenosyl-L-methionine = caffeine + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A47148","caffeine + a ubiquinone + H2O = 1,3,7-trimethylurate + a ubiquinol"],["RHEA%3A36267","caffeine + NADH + O2 + H(+) = theobromine + formaldehyde + NAD(+) + H2O"]],"b":[["mapped/Caffeine.yaml","Caffeine"]]},{"id":"CHEBI:28591","l":"guaiacol","na":11,"nb":1,"a":[["EC%3A1.11.1.14","lignin peroxidase"],["EC%3A1.11.1.16","versatile peroxidase"],["RHEA%3A48004","1-(3,4-dimethoxyphenyl)-2-(2-methoxyphenoxy)propane-1,3-diol + H2O2 = 3,4-dimethoxybenzaldehyde + guaiacol + glycolaldehyde + H2O"],["RHEA%3A22396","1-(4-hydroxy-3-methoxyphenyl)-2-(2-methoxyphenoxy)propane-1,3-diol + H2O2 = guaiacol + vanillin + glycolaldehyde + H2O"],["RHEA%3A72243","catechol + S-adenosyl-L-methionine = guaiacol + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A72339","guaiacol + Co(I)-[methoxylated-aromatic-compound-specific corrinoid protein] + H(+) = methyl-Co(III)-[methoxylated-aromatic-compound-specific corrinoid protein] + catechol"]],"b":[["mapped/Guaiacol.yaml","Guaiacol"]]},{"id":"CHEBI:28685","l":"molybdenum atom","na":11,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MO","MO-binding site"],["proteintraitsmech%3AMETALPDB_MO_DINUCLEAR","dinuclear molybdenum site"],["proteintraitsmech%3AMETALPDB_MO_HEPTANUCLEAR","heptanuclear molybdenum site"],["proteintraitsmech%3AMETALPDB_MO_HEXANUCLEAR","hexanuclear molybdenum site"],["proteintraitsmech%3AMETALPDB_MO_MONONUCLEAR","mononuclear molybdenum site"],["proteintraitsmech%3AMETALPDB_MO_MULTINUCLEAR","multinuclear molybdenum site"]],"b":[["mapped/Molybdenum.yaml","Molybdenum"]]},{"id":"CHEBI:15075","l":"selenate","na":10,"nb":1,"a":[["EC%3A1.97.1.14","selenate reductase (quinol)"],["EC%3A1.97.1.9","selenate reductase (cytochrome c)"],["RHEA%3A34887","selenate(in) = selenate(out)"],["RHEA%3A72079","selenate(out) + 3 Na(+)(out) = selenate(in) + 3 Na(+)(in)"],["RHEA%3A34883","selenate(out) + ATP + H2O = selenate(in) + ADP + phosphate + H(+)"],["RHEA%3A80603","selenite + 2 Fe(III)-[cytochrome c] + H2O = 2 Fe(II)-[cytochrome] + selenate + 2 H(+)"]],"b":[["mapped/Selenate.yaml","Selenate"]]},{"id":"CHEBI:15688","l":"acetoin","na":10,"nb":1,"a":[["EC%3A2.2.1.4","acetoin--ribose-5-phosphate transaldolase"],["EC%3A2.3.1.190","acetoin dehydrogenase system"],["RHEA%3A54364","2 acetaldehyde = acetoin"],["RHEA%3A76879","3-aminobutan-2-ol + NAD(+) + H2O = acetoin + NH4(+) + NADH + H(+)"],["RHEA%3A76931","3-aminobutan-2-ol + NADP(+) + H2O = acetoin + NH4(+) + NADPH + H(+)"],["RHEA%3A54368","acetaldehyde + pyruvate + H(+) = acetoin + CO2"]],"b":[["mapped/Acetoin.yaml","Acetoin"]]},{"id":"CHEBI:16383","l":"","na":10,"nb":1,"a":[["EC%3A4.1.1.6","cis-aconitate decarboxylase"],["EC%3A5.3.3.7","aconitate Delta-isomerase"],["RHEA%3A15253","cis-aconitate + H(+) = itaconate + CO2"],["RHEA%3A22144","cis-aconitate + H2O = D-threo-isocitrate"],["RHEA%3A72475","cis-aconitate(in) + citrate(out) = cis-aconitate(out) + citrate(in)"],["RHEA%3A10228","citrate = cis-aconitate + H2O"]],"b":[["mapped/Cis-aconitate.yaml","Cis-aconitate"]]},{"id":"CHEBI:16547","l":"coniferyl aldehyde","na":10,"nb":1,"a":[["EC%3A1.1.1.194","coniferyl-alcohol dehydrogenase"],["EC%3A1.1.1.195","cinnamyl-alcohol dehydrogenase"],["EC%3A1.2.1.44","cinnamoyl-CoA reductase"],["EC%3A1.2.1.68","coniferyl-aldehyde dehydrogenase"],["RHEA%3A23968","(E)-coniferaldehyde + NAD(+) + H2O = (E)-ferulate + NADH + 2 H(+)"],["RHEA%3A64648","(E)-coniferaldehyde + NADP(+) + CoA = (E)-feruloyl-CoA + NADPH + H(+)"]],"b":[["mapped/Coniferyl_Aldehyde.yaml","coniferyl aldehyde"]]},{"id":"CHEBI:17698","l":"chloramphenicol","na":10,"nb":1,"a":[["EC%3A1.14.99.67","alpha-N-dichloroacetyl-p-aminophenylserinol N-oxygenase"],["EC%3A2.3.1.28","chloramphenicol O-acetyltransferase"],["RHEA%3A58884","alpha-N-dichloroacetyl-p-aminophenylserinol + AH2 + 2 O2 = chloramphenicol + A + 2 H2O"],["RHEA%3A18421","chloramphenicol + acetyl-CoA = chloramphenicol 3-acetate + CoA"],["RHEA%3A35287","chloramphenicol(in) + ATP + H2O = chloramphenicol(out) + ADP + phosphate + H(+)"],["RHEA%3A35059","chloramphenicol(in) + H(+)(out) = chloramphenicol(out) + H(+)(in)"]],"b":[["mapped/Chloramphenicol.yaml","Chloramphenicol"]]},{"id":"CHEBI:17745","l":"","na":10,"nb":1,"a":[["EC%3A1.1.1.194","coniferyl-alcohol dehydrogenase"],["EC%3A1.1.1.195","cinnamyl-alcohol dehydrogenase"],["EC%3A2.4.1.111","coniferyl-alcohol glucosyltransferase"],["EC%3A3.2.1.126","coniferin beta-glucosidase"],["RHEA%3A12252","4-O-(beta-D-glucosyl)-(E)-coniferol + H2O = (E)-coniferol + D-glucose"],["RHEA%3A76455","(E)-coniferol + A = (E)-coniferaldehyde + AH2"]],"b":[["mapped/Coniferyl_Alcohol.yaml","coniferyl alcohol"]]},{"id":"CHEBI:28189","l":"","na":10,"nb":1,"a":[["EC%3A3.2.1.10","oligo-1,6-glucosidase"],["EC%3A3.2.1.204","1,3-alpha-isomaltosidase"],["EC%3A3.2.1.205","isomaltose glucohydrolase"],["RHEA%3A52748","alpha-isomaltosyl-(1->3)-isomaltose + H2O = 2 isomaltose"],["RHEA%3A24844","cyclobis-(1->3)-alpha-D-isomaltosyl + 2 H2O = 2 isomaltose"],["RHEA%3A68864","isomaltose + H2O = alpha-D-glucose + D-glucose"]],"b":[["mapped/Isomaltose.yaml","Isomaltose"]]},{"id":"CHEBI:28694","l":"''copper atom''","na":10,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_28694","requires Cu"],["proteintraitsmech%3AMETALPDB_CU_DINUCLEAR","dinuclear copper site"],["proteintraitsmech%3AMETALPDB_CU_HEPTANUCLEAR","heptanuclear copper site"],["proteintraitsmech%3AMETALPDB_CU_HEXANUCLEAR","hexanuclear copper site"],["proteintraitsmech%3AMETALPDB_CU_MONONUCLEAR","mononuclear copper site"],["proteintraitsmech%3AMETALPDB_CU_MULTINUCLEAR","multinuclear copper site"]],"b":[["mapped/Copper.yaml","Copper"]]},{"id":"CHEBI:28940","l":"","na":10,"nb":1,"a":[["EC%3A1.14.14.24","vitamin D 25-hydroxylase"],["EC%3A1.14.15.22","vitamin D 1,25-hydroxylase"],["EC%3A1.17.99.10","steroid C-25 hydroxylase"],["RHEA%3A36411","7-dehydrocholesterol + hnu = calciol"],["RHEA%3A50696","calciol + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = calcidiol + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"],["RHEA%3A46588","calciol + 2 reduced [adrenodoxin] + O2 + 2 H(+) = calcidiol + 2 oxidized [adrenodoxin] + H2O"]],"b":[["mapped/Vitamin_D3.yaml","Vitamin D3"]]},{"id":"CHEBI:4885","l":"ethionamide","na":10,"nb":1,"a":[["RHEA%3A47616","ethionamide + NADPH + O2 + H(+) = ethionamide S-oxide + NADP(+) + H2O"],["ARO%3A3003456","antibiotic resistant ethA"],["ARO%3A3003457","ethionamide resistant ethA"],["ARO%3A3005103","isoniazid resistant ethA"],["ARO%3A3005105","Mycobacterium tuberculosis ethA mutations conferring resistance to isoniazid"],["ARO%3A3005178","Mycobacterium tuberculosis ethA mutations conferring resistance to perchlozone"]],"b":[["mapped/Ethionamide.yaml","Ethionamide"]]},{"id":"CHEBI:51057","l":"3-phenylpropionate","na":10,"nb":1,"a":[["EC%3A1.14.12.19","3-phenylpropanoate dioxygenase"],["EC%3A1.3.8.15","3-(aryl)acrylate reductase"],["EC%3A3.5.5.1","nitrilase"],["RHEA%3A68904","3-phenylpropanoate + ATP + NADPH + H(+) = 3-phenylpropanal + AMP + diphosphate + NADP(+)"],["RHEA%3A29747","3-phenylpropanoate(in) = 3-phenylpropanoate(out)"],["RHEA%3A50944","3-phenylpropanoate + NAD(+) = (E)-cinnamate + NADH + H(+)"]],"b":[["mapped/3-phenylpropionate.yaml","3-phenylpropionate"]]},{"id":"CHEBI:16813","l":"","na":9,"nb":1,"a":[["EC%3A1.1.1.16","galactitol 2-dehydrogenase"],["EC%3A1.1.1.406","galactitol 2-dehydrogenase (L-tagatose-forming)"],["EC%3A2.7.1.200","protein-N(pi)-phosphohistidine--galactitol phosphotransferase"],["RHEA%3A33143","galactitol(in) = galactitol(out)"],["RHEA%3A37963","galactitol + NAD(+) = D-galactose + NADH + H(+)"],["RHEA%3A20685","galactitol + NAD(+) = keto-D-tagatose + NADH + H(+)"]],"b":[["mapped/Galactitol.yaml","Galactitol"]]},{"id":"CHEBI:17488","l":"","na":9,"nb":1,"a":[["EC%3A1.14.11.60","scopoletin 8-hydroxylase"],["EC%3A2.4.1.128","scopoletin glucosyltransferase"],["RHEA%3A68564","6-methoxycoumarin + reduced [NADPH--hemoprotein reductase] + O2 = scopoletin + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A57860","(E)-6-hydroxyferuloyl-CoA = scopoletin + CoA"],["RHEA%3A68948","esculetin + S-adenosyl-L-methionine = scopoletin + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A57848","scopoletin + 2-oxoglutarate + O2 = fraxetin + succinate + CO2"]],"b":[["mapped/Scopoletin.yaml","Scopoletin"]]},{"id":"CHEBI:18248","l":"iron atom","na":9,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18248","requires Fe"],["proteintraitsmech%3AMETALPDB_FE_DINUCLEAR","dinuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_HEPTANUCLEAR","heptanuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_HEXANUCLEAR","hexanuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_MONONUCLEAR","mononuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_OCTANUCLEAR","octanuclear iron site"]],"b":[["mapped/Iron.yaml","Iron"]]},{"id":"CHEBI:18333","l":"","na":9,"nb":1,"a":[["EC%3A1.1.1.11","D-arabinitol 4-dehydrogenase"],["EC%3A1.1.1.250","D-arabinitol 2-dehydrogenase"],["EC%3A1.1.1.287","D-arabinitol dehydrogenase (NADP(+))"],["EC%3A1.1.3.40","D-mannitol oxidase"],["RHEA%3A17389","D-arabinitol + NAD(+) = D-ribulose + NADH + H(+)"],["RHEA%3A17921","D-arabinitol + NAD(+) = D-xylulose + NADH + H(+)"]],"b":[["mapped/D-arabitol.yaml","D-arabitol"]]},{"id":"CHEBI:29995","l":"","na":9,"nb":1,"a":[["GO%3A0070335","aspartate binding"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A2.A.81","The Aspartate:Alanine Exchanger (AAEx) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.13","The C4-Dicarboxylate Uptake (Dcu) Family"],["TCDB%3A2.A.23","The Dicarboxylate/Amino Acid:Cation (Na+ or H+) Symporter (DAACS) Family"]],"b":[["mapped/Aspartate.yaml","Aspartate"]]},{"id":"CHEBI:3098","l":"bile acid","na":9,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.28","The Bile Acid:Na+ Symporter (BASS) Family"],["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"],["TCDB%3A9.A.19","The Lipid Intermediate Transporter (Arv1) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["mapped/Bile_Acid.yaml","Bile Acid"]]},{"id":"CHEBI:12931","l":"D-galactonate","na":8,"nb":1,"a":[["EC%3A3.1.1.25","1,4-lactonase"],["EC%3A4.2.1.140","gluconate/galactonate dehydratase"],["EC%3A4.2.1.6","galactonate dehydratase"],["RHEA%3A18649","D-galactonate = 2-dehydro-3-deoxy-D-galactonate + H2O"],["RHEA%3A29835","D-galactonate(in) + H(+)(in) = D-galactonate(out) + H(+)(out)"],["RHEA%3A44900","D-galactono-1,4-lactone + H2O = D-galactonate + H(+)"]],"b":[["mapped/D-galactonate.yaml","D-galactonate"]]},{"id":"CHEBI:15570","l":"","na":8,"nb":1,"a":[["ARO%3A3004946","cycloserine resistant alr"],["ARO%3A3004939","cycloserine resistant ddlA"],["ARO%3A3004947","Mycobacterium tuberculosis alr with mutation conferring resistance to cycloserine"],["ARO%3A3004941","Mycobacterium tuberculosis ddlA mutations confer resistance to cycloserine"],["TCDB%3A2.A.81","The Aspartate:Alanine Exchanger (AAEx) Family"],["MCSA%3A782","D-stereospecific aminopeptidase (peptidase S12 family)"]],"b":[["mapped/D-Alanine.yaml","D-Alanine"]]},{"id":"CHEBI:15963","l":"","na":8,"nb":1,"a":[["EC%3A1.1.1.56","ribitol 2-dehydrogenase"],["EC%3A3.5.99.1","riboflavinase"],["RHEA%3A47652","D-ribitol 1-phosphate + H2O = ribitol + phosphate"],["RHEA%3A47648","D-ribitol 5-phosphate + H2O = ribitol + phosphate"],["RHEA%3A20053","ribitol + NAD(+) = D-ribulose + NADH + H(+)"],["RHEA%3A59932","ribitol + NADP(+) = D-ribose + NADPH + H(+)"]],"b":[["mapped/Ribitol.yaml","Ribitol"]]},{"id":"CHEBI:16164","l":"","na":8,"nb":1,"a":[["EC%3A1.13.11.35","pyrogallol 1,2-oxygenase"],["EC%3A1.97.1.2","pyrogallol hydroxytransferase"],["EC%3A4.1.1.59","gallate decarboxylase"],["RHEA%3A21000","1,2,3,5-tetrahydroxybenzene + 1,2,3-trihydroxybenzene = 1,2,3,5-tetrahydroxybenzene + 1,3,5-trihydroxybenzene"],["RHEA%3A19673","1,2,3-trihydroxybenzene + O2 = (2Z,4E)-2-hydroxyhexa-2,4-dienedioate + 2 H(+)"],["RHEA%3A12749","3,4,5-trihydroxybenzoate + H(+) = 1,2,3-trihydroxybenzene + CO2"]],"b":[["mapped/Pyrogallol.yaml","Pyrogallol"]]},{"id":"CHEBI:16397","l":"","na":8,"nb":1,"a":[["EC%3A3.5.1.49","formamidase"],["EC%3A3.5.3.8","formimidoylglutamase"],["EC%3A4.2.1.66","cyanide hydratase"],["RHEA%3A21948","formamide + H2O = formate + NH4(+)"],["RHEA%3A21720","formamide = hydrogen cyanide + H2O"],["RHEA%3A74387","formamide(out) = formamide(in)"]],"b":[["mapped/Formamide.yaml","Formamide"]]},{"id":"CHEBI:16634","l":"raffinose","na":8,"nb":1,"a":[["EC%3A2.4.1.166","raffinose--raffinose alpha-galactosyltransferase"],["EC%3A2.4.1.67","galactinol--raffinose galactosyltransferase"],["EC%3A2.4.1.82","galactinol--sucrose galactosyltransferase"],["RHEA%3A14125","2 raffinose = 1(F)-alpha-D-galactosylraffinose + sucrose"],["RHEA%3A20776","alpha-D-galactosyl-(1->3)-1D-myo-inositol + raffinose = stachyose + myo-inositol"],["RHEA%3A20161","alpha-D-galactosyl-(1->3)-1D-myo-inositol + sucrose = raffinose + myo-inositol"]],"b":[["mapped/Raffinose.yaml","Raffinose"]]},{"id":"CHEBI:17464","l":"","na":8,"nb":1,"a":[["EC%3A1.1.1.316","L-galactose 1-dehydrogenase"],["EC%3A1.3.2.3","L-galactonolactone dehydrogenase"],["EC%3A1.3.3.12","L-galactonolactone oxidase"],["RHEA%3A14757","L-galactono-1,4-lactone + 2 Fe(III)-[cytochrome c] = L-ascorbate + 2 Fe(II)-[cytochrome c] + 3 H(+)"],["RHEA%3A32367","L-galactono-1,4-lactone + 4 Fe(III)-[cytochrome c] = L-dehydroascorbate + 4 Fe(II)-[cytochrome c] + 5 H(+)"],["RHEA%3A75231","L-galactono-1,4-lactone + H2O = L-galactonate + H(+)"]],"b":[["mapped/L-galactonic_Acid_Gamma-lactone.yaml","L-galactonic Acid Gamma-lactone"]]},{"id":"CHEBI:17871","l":"","na":8,"nb":1,"a":[["EC%3A1.1.1.202","1,3-propanediol dehydrogenase"],["EC%3A4.2.1.30","glycerol dehydratase"],["RHEA%3A62920","1alpha,25-dihydroxy-2beta-(1,3-dihydroxypropoxy)-cholecalciferol = 1alpha,2beta,25-trihydroxycholecalciferol + 3-hydroxypropanal"],["RHEA%3A59432","3-hydroxypropanal + NAD(+) + H2O = 3-hydroxypropanoate + NADH + 2 H(+)"],["RHEA%3A59428","3-hydroxypropanal + NADP(+) + H2O = 3-hydroxypropanoate + NADPH + 2 H(+)"],["RHEA%3A19765","glycerol = 3-hydroxypropanal + H2O"]],"b":[["mapped/3-Hydroxypropanal.yaml","3-Hydroxypropanal"]]},{"id":"CHEBI:18403","l":"L-arabinitol","na":8,"nb":1,"a":[["EC%3A1.1.1.12","L-arabinitol 4-dehydrogenase"],["EC%3A1.1.1.13","L-arabinitol 2-dehydrogenase"],["EC%3A1.1.1.21","aldose reductase"],["RHEA%3A25225","L-arabinitol + NAD(+) = L-arabinose + NADH + H(+)"],["RHEA%3A21356","L-arabinitol + NAD(+) = L-ribulose + NADH + H(+)"],["RHEA%3A16381","L-arabinitol + NAD(+) = L-xylulose + NADH + H(+)"]],"b":[["mapped/Arabitol.yaml","Arabitol"]]},{"id":"CHEBI:27949","l":"(E)-sinapaldehyde","na":8,"nb":1,"a":[["EC%3A1.1.1.195","cinnamyl-alcohol dehydrogenase"],["RHEA%3A72027","(E)-sinapaldehyde + L-proline = (E)-nesocodin (alcohol-form) + H2O"],["RHEA%3A64656","(E)-sinapaldehyde + NADP(+) + CoA = (E)-sinapoyl-CoA + NADPH + H(+)"],["RHEA%3A57712","(E)-sinapaldehyde + UDP-alpha-D-glucose = 4-O-(beta-D-glucosyl)-4-trans-sinapoyl aldehyde + UDP + H(+)"],["RHEA%3A76459","(E)-sinapyl alcohol + A = (E)-sinapaldehyde + AH2"],["RHEA%3A45704","(E)-sinapyl alcohol + NADP(+) = (E)-sinapaldehyde + NADPH + H(+)"]],"b":[["mapped/Sinapinaldehyde.yaml","sinapinaldehyde"]]},{"id":"CHEBI:28644","l":"2-oxopentanoate","na":8,"nb":1,"a":[["RHEA%3A50312","2-oxopentanoate + H(+) = butanal + CO2"],["RHEA%3A66080","2-oxopentanoate + L-kynurenine = L-2-aminopentanoate + 4-(2-aminophenyl)-2,4-dioxobutanoate"],["RHEA%3A66076","2-oxopentanoate + L-kynurenine = L-2-aminopentanoate + kynurenate + H2O"],["RHEA%3A77359","2-oxopentanoate + N(omega),N(omega)-dimethyl-L-arginine = 5-(3,3-dimethylguanidino)-2-oxopentanoate + L-2-aminopentanoate"],["RHEA%3A82487","(2R)-hydroxypentanoate + FAD + H(+) = 2-oxopentanoate + FADH2"],["RHEA%3A37035","L-2-aminopentanoate + NAD(+) + H2O = 2-oxopentanoate + NH4(+) + NADH + H(+)"]],"b":[["mapped/2-oxopentanoate.yaml","2-oxopentanoate"]]},{"id":"CHEBI:48944","l":"","na":8,"nb":1,"a":[["EC%3A2.7.2.14","branched-chain-fatty-acid kinase"],["RHEA%3A80347","(1R,2R,3S,8R,10R,11R,15S,16S)-3-(acetyloxy)-15-[(4R)-4-[(2S)-3,3-dimethyloxiran-2-yl]-1,4-dihydroxybutan-2-yl]-2,7,7,11,16-pentamethyl-5-oxo-6-oxatetracyclo[9.7.0.0(2,8).0(12,16)]octadec-12-en-10-yl acetate + reduced [NADPH--hemoprotein reductase] + O2 = (1R,2R,3S,8R,10R,11R,15S,16S)-3-(acetyloxy)-15-(1-hydroxy-4-oxobutan-2-yl)-2,7,7,11,16-pentamethyl-5-oxo-6-oxatetracyclo[9.7.0.0(2,8).0(12,16)]octadec-12-en-10-yl acetate + 2-methylpropanoate + oxidized [NADPH--hemoprotein reductase] + H2O + 2 H(+)"],["RHEA%3A80351","(1S,3bR,4R,5aR,9aR,9bR,11aS)-1-[(4R)-5-[(2S)-3,3-dimethyloxiran-2-yl]-1,4-dihydroxybutan-2-yl]-3b,6,6,9a,11a-pentamethyl-7-oxo-1H,2H,3bH,4H,5H,5aH,6H,7H,9aH,9bH,10H,11H,11aH-cyclopenta[a]phenanthren-4-yl acetate + reduced [NADPH--hemoprotein reductase] + O2 = (1S,3bR,4R,5aR,9aR,9bR,11aS)-1-(1-hydroxy-4-oxobutan-2-yl)-3b,6,6,9a,11a-pentamethyl-7-oxo-1H,2H,3bH,4H,5H,5aH,6H,7H,9aH,9bH,10H,11H,11aH-cyclopenta[a]phenanthren-4-yl acetate + 2-methylpropanoate + oxidized [NADPH--hemoprotein reductase] + H2O + 2 H(+)"],["RHEA%3A42576","2-hydroxy-7-methyl-6-oxo-(2E,4E)-octadienoate + H2O = 2-oxopent-4-enoate + 2-methylpropanoate + H(+)"],["RHEA%3A24156","2-methylpropanoate + ATP = 2-methylpropanoyl phosphate + ADP"],["RHEA%3A46176","2-methylpropanoate + ATP + CoA = 2-methylpropanoyl-CoA + AMP + diphosphate"]],"b":[["mapped/Isobutyrate.yaml","Isobutyrate"]]},{"id":"CHEBI:53071","l":"L-galactonate","na":8,"nb":1,"a":[["EC%3A1.1.1.365","D-galacturonate reductase"],["EC%3A1.1.1.414","L-galactonate 5-dehydrogenase"],["EC%3A4.2.1.146","L-galactonate dehydratase"],["RHEA%3A38103","L-galactonate = 2-dehydro-3-deoxy-L-galactonate + H2O"],["RHEA%3A28823","L-galactonate(in) + H(+)(in) = L-galactonate(out) + H(+)(out)"],["RHEA%3A30183","L-galactonate + NAD(+) = keto-D-tagaturonate + NADH + H(+)"]],"b":[["mapped/L-galactonate.yaml","L-galactonate"]]},{"id":"CHEBI:6030","l":"isoniazide","na":8,"nb":1,"a":[["ARO%3A3004266","antibiotic resistant katG"],["ARO%3A3003416","isoniazid resistant katG"],["ARO%3A3003392","Mycobacterium tuberculosis katG mutations conferring resistance to isoniazid"],["ARO%3A3005102","Mycobacterium tuberculosis katG mutations conferring resistance to prothionamide"],["ARO%3A3005101","prothionamide resistant katG"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["mapped/Isoniazid.yaml","Isoniazid"]]},{"id":"CHEBI:15226","l":"","na":7,"nb":1,"a":[["EC%3A1.8.2.2","thiosulfate dehydrogenase"],["EC%3A1.8.5.2","thiosulfate dehydrogenase (quinone)"],["RHEA%3A20549","2 thiosulfate + 2 Fe(III)-[cytochrome c] = tetrathionate + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A10936","6-decylubiquinone + 2 thiosulfate = 6-decylubiquinol + tetrathionate"],["RHEA%3A13541","tetrathionate + H2O = sulfur + thiosulfate + sulfate + H(+)"],["TCDB%3A5.A.3","The Prokaryotic Molybdopterin-containing Oxidoreductase (PMO) Family"]],"b":[["mapped/Tetrathionate.yaml","Tetrathionate"]]},{"id":"CHEBI:15837","l":"isoamylol","na":7,"nb":1,"a":[["EC%3A1.1.1.265","3-methylbutanal reductase"],["EC%3A3.1.1.112","isoamyl acetate esterase"],["RHEA%3A65236","3-methylbutan-1-ol + acetyl-CoA = 3-methylbutyl acetate + CoA"],["RHEA%3A85967","3-methylbutan-1-ol + hexadecanoyl-CoA = 3-methylbutyl hexadecanoate + CoA"],["RHEA%3A18529","3-methylbutan-1-ol + NAD(+) = 3-methylbutanal + NADH + H(+)"],["RHEA%3A18525","3-methylbutan-1-ol + NADP(+) = 3-methylbutanal + NADPH + H(+)"]],"b":[["mapped/3-methyl-1-butanol.yaml","3-methyl-1-butanol"]]},{"id":"CHEBI:16118","l":"berberine","na":7,"nb":1,"a":[["EC%3A1.21.3.2","columbamine oxidase"],["EC%3A1.3.3.8","tetrahydroberberine oxidase"],["EC%3A1.5.1.31","berberine reductase"],["RHEA%3A23564","2 columbamine + O2 = 2 berberine + 2 H2O"],["RHEA%3A21268","(R)-canadine + 2 NADP(+) = berberine + 2 NADPH + H(+)"],["RHEA%3A13489","(S)-canadine + 2 O2 + H(+) = berberine + 2 H2O2"]],"b":[["mapped/Berberine.yaml","Berberine"]]},{"id":"CHEBI:16737","l":"creatinine","na":7,"nb":1,"a":[["EC%3A3.5.2.10","creatininase"],["EC%3A3.5.4.21","creatinine deaminase"],["RHEA%3A14533","creatinine + H2O = creatine"],["RHEA%3A12681","creatinine + H2O + H(+) = N-methylhydantoin + NH4(+)"],["RHEA%3A74539","creatinine(in) = creatinine(out)"],["RHEA%3A72183","creatinine(in) + H(+)(out) = creatinine(out) + H(+)(in)"]],"b":[["mapped/Creatinine.yaml","Creatinine"]]},{"id":"CHEBI:16892","l":"","na":7,"nb":1,"a":[["EC%3A2.7.1.49","hydroxymethylpyrimidine kinase"],["EC%3A3.5.99.2","aminopyrimidine aminohydrolase"],["RHEA%3A31799","4-amino-5-aminomethyl-2-methylpyrimidine + H2O = 4-amino-5-hydroxymethyl-2-methylpyrimidine + NH4(+)"],["RHEA%3A23096","4-amino-5-hydroxymethyl-2-methylpyrimidine + ATP = 4-amino-2-methyl-5-(phosphooxymethyl)pyrimidine + ADP + H(+)"],["RHEA%3A17509","thiamine + H2O = 5-(2-hydroxyethyl)-4-methylthiazole + 4-amino-5-hydroxymethyl-2-methylpyrimidine + H(+)"],["MCSA%3A670","hydroxymethylpyrimidine kinase"]],"b":[["mapped/4-Amino-5-hydroxymethyl-2-methylpyrimidine.yaml","4-Amino-5-hydroxymethyl-2-methylpyrimidine"]]},{"id":"CHEBI:16997","l":"","na":7,"nb":1,"a":[["EC%3A1.1.1.55","lactaldehyde reductase (NADPH)"],["EC%3A4.2.1.28","propanediol dehydratase"],["RHEA%3A56584","1,2-epoxypropane + H2O = propane-1,2-diol"],["RHEA%3A15885","propane-1,2-diol + NADP(+) = (S)-lactaldehyde + NADPH + H(+)"],["RHEA%3A14569","propane-1,2-diol = propanal + H2O"],["TCDB%3A1.S.4","The Bacterial Microcompartment Shell/Pore-forming Protein-4 (BMC-SP4) Family"]],"b":[["mapped/12-Propanediol.yaml","1,2-Propanediol"]]},{"id":"CHEBI:17113","l":"","na":7,"nb":1,"a":[["EC%3A2.7.1.215","erythritol kinase (D-erythritol 1-phosphate-forming)"],["EC%3A2.7.1.27","erythritol kinase (D-erythritol 4-phosphate-forming)"],["RHEA%3A49624","erythritol + ATP = D-erythritol 1-phosphate + ADP + H(+)"],["RHEA%3A20708","erythritol + ATP = D-erythritol 4-phosphate + ADP + H(+)"],["RHEA%3A48756","erythritol + NAD(+) = D-erythrulose + NADH + H(+)"],["RHEA%3A59928","erythritol + NADP(+) = D-erythrose + NADPH + H(+)"]],"b":[["mapped/Meso-Erythritol.yaml","meso-Erythritol"]]},{"id":"CHEBI:17634","l":"D-glucose","na":1,"nb":7,"a":[["MCSA%3A976","α‑glucosidase maltase-glucoamylase"]],"b":[["mapped/Brain_Heart_Infusion_Broth.yaml","Brain heart infusion broth"],["mapped/D-glucose.yaml","D-Glucose"],["mapped/Dextrose.yaml","Dextrose"],["mapped/Glucose_Acetate.yaml","Glucose + Acetate"],["mapped/Glucose_Cellobiose_Starch_Trypticase_Yeast_Extract.yaml","Glucose + Cellobiose + Starch + Trypticase + Yeast Extract"],["mapped/Glucose_Formate.yaml","Glucose + Formate"]]},{"id":"CHEBI:1883","l":"","na":7,"nb":1,"a":[["EC%3A1.13.11.94","4-vinylguaiacol dioxygenase"],["EC%3A4.1.1.102","phenacrylate decarboxylase"],["RHEA%3A70603","4-vinylphenol + NADH + H(+) = 4-ethylphenol + NAD(+)"],["RHEA%3A80571","4-vinylphenol + O2 = 4-hydroxybenzaldehyde + formaldehyde"],["RHEA%3A86075","4-vinylphenol + S-adenosyl-L-methionine = 4-vinylanisole + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A33227","(E)-4-coumarate + H(+) = 4-vinylphenol + CO2"]],"b":[["mapped/4-vinylphenol.yaml","4-vinylphenol"]]},{"id":"CHEBI:30742","l":"ethylene glycol","na":7,"nb":1,"a":[["EC%3A3.1.1.102","mono(ethylene terephthalate) hydrolase"],["RHEA%3A42648","(2,5-ethylene furandicarboxylate)(n) + 2 H2O = (2,5-ethylene furandicarboxylate)(n-1) + 2,5-dicarboxyfuran + ethylene glycol + 2 H(+)"],["RHEA%3A49532","4-[(2-hydroxyethoxy)carbonyl]benzoate + H2O = terephthalate + ethylene glycol + H(+)"],["RHEA%3A80759","bis(2-hydroxyethyl) terephthalate + H2O = 4-[(2-hydroxyethoxy)carbonyl]benzoate + ethylene glycol + H(+)"],["RHEA%3A27630","ethylene glycol + NAD(+) = glycolaldehyde + NADH + H(+)"],["MCSA%3A847","epoxide hydrolase"]],"b":[["mapped/Ethylene_Glycol.yaml","Ethylene glycol"]]},{"id":"CHEBI:50205","l":"","na":7,"nb":1,"a":[["EC%3A4.1.2.61","feruloyl-CoA hydratase/lyase"],["RHEA%3A36311","3,4-dihydroxybenzaldehyde + NAD(+) + H2O = 3,4-dihydroxybenzoate + NADH + 2 H(+)"],["RHEA%3A72539","3,4-dihydroxybenzaldehyde + NADP(+) + H2O = 3,4-dihydroxybenzoate + NADPH + 2 H(+)"],["RHEA%3A63188","3,4-dihydroxybenzaldehyde + tyramine + AH2 = norbelladine + A + H2O"],["RHEA%3A62428","3-hydroxy-3-(3,4-dihydroxyphenyl)propanoyl-CoA = 3,4-dihydroxybenzaldehyde + acetyl-CoA"],["RHEA%3A36307","(E)-caffeoyl-CoA + H2O = 3,4-dihydroxybenzaldehyde + acetyl-CoA"]],"b":[["mapped/Protocatechualdehyde.yaml","Protocatechualdehyde"]]},{"id":"CHEBI:62974","l":"","na":7,"nb":1,"a":[["RHEA%3A84443","D-cellotetraose = beta-D-glucosyl-(1->4)-beta-D-glucosyl-(1->4)-beta-D-glucosyl-(1->4)-D-mannopyranose"],["RHEA%3A59660","D-cellotetraose + O2 = D-cellotetraono-1,5-lactone + H2O2"],["MCSA%3A560","cellulase (GH12)"],["MCSA%3A561","cellulase (GH45)"],["MCSA%3A559","cellulase (GH9)"],["MCSA%3A440","cellulose 1,4-beta-cellobiosidase (non-reducing end)"]],"b":[["mapped/Cellotetraose.yaml","Cellotetraose"]]},{"id":"CHEBI:9349","l":"","na":7,"nb":1,"a":[["EC%3A1.14.13.245","assimilatory dimethylsulfide S-monooxygenase"],["EC%3A1.14.14.35","dimethylsulfone monooxygenase"],["EC%3A1.8.1.17","dimethylsulfone reductase"],["RHEA%3A50716","dimethyl sulfone + FMNH2 + O2 = methanesulfinate + FMN + formaldehyde + H2O + 2 H(+)"],["RHEA%3A30219","dimethyl sulfoxide + NAD(+) + H2O = dimethyl sulfone + NADH + H(+)"],["RHEA%3A57956","dimethyl sulfoxide + NADH + O2 + H(+) = dimethyl sulfone + NAD(+) + H2O"]],"b":[["mapped/Dimethyl_Sulfone.yaml","dimethyl sulfone"]]},{"id":"CHEBI:15399","l":"(+)-carvone","na":6,"nb":1,"a":[["EC%3A1.1.1.275","(+)-trans-carveol dehydrogenase"],["EC%3A1.1.1.n4","(-)-trans-carveol dehydrogenase"],["EC%3A1.3.99.25","carvone reductase"],["RHEA%3A32427","(1R,4S)-isodihydrocarvone + A = (S)-carvone + AH2"],["RHEA%3A14825","(1R,5S)-carveol + NAD(+) = (S)-carvone + NADH + H(+)"],["RHEA%3A25848","(1S,5S)-carveol + NAD(+) = (S)-carvone + NADH + H(+)"]],"b":[["mapped/D_-carvone.yaml","D(+)-Carvone"]]},{"id":"CHEBI:15409","l":"","na":6,"nb":1,"a":[["EC%3A1.1.1.207","(-)-menthol dehydrogenase"],["EC%3A1.14.13.46","(-)-menthol monooxygenase"],["EC%3A2.4.1.127","monoterpenol beta-glucosyltransferase"],["RHEA%3A13917","(-)-menthol + NADP(+) = (1R,4S)-menthone + NADPH + H(+)"],["RHEA%3A11648","(-)-menthol + NADPH + O2 + H(+) = 1,4-menthane-3,8-diol + NADP(+) + H2O"],["RHEA%3A11520","(-)-menthol + UDP-alpha-D-glucose = (-)-menthyl beta-D-glucoside + UDP + H(+)"]],"b":[["mapped/Levomenthol.yaml","Levomenthol"]]},{"id":"CHEBI:15978","l":"sn-glycerol 3-phosphate","na":1,"nb":6,"a":[["proteintraitsmech%3ABIOLIP_G3P","G3P-binding site"]],"b":[["mapped/Glycerol_2.yaml","glycerol"],["mapped/Glycerol_3-phosphate.yaml","Glycerol 3-phosphate"],["mapped/Na2_Beta-glycerol_PO4_X_5_H2O.yaml","Na2 beta-glycerol PO4 x 5 H2O"],["mapped/Na2glycerophosphate5h2o.yaml","Na2glycerophosphate•5H2O"],["mapped/Sn-Glycerol_3-phosphate_Lithium_Salt.yaml","sn-Glycerol 3-phosphate lithium salt"],["mapped/Sn-glycerol_3-phosphate_Bis_Cyclohexylammonium_Salt.yaml","sn-Glycerol 3-phosphate bis(cyclohexylammonium) salt"]]},{"id":"CHEBI:16457","l":"S,S-dimethyl-beta-propiothetin","na":6,"nb":1,"a":[["EC%3A2.1.1.269","dimethylsulfoniopropionate demethylase"],["EC%3A4.4.1.3","dimethylpropiothetin dethiomethylase"],["RHEA%3A35467","S,S-dimethyl-beta-propiothetin + (6S)-5,6,7,8-tetrahydrofolate = 3-(methylsulfanyl)propanoate + (6S)-5-methyl-5,6,7,8-tetrahydrofolate + H(+)"],["RHEA%3A19965","S,S-dimethyl-beta-propiothetin = acrylate + dimethyl sulfide + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.15","The Betaine/Carnitine/Choline Transporter (BCCT) Family"]],"b":[["mapped/Dimethylsulfoniopropionate_Hydrochloride.yaml","Dimethylsulfoniopropionate hydrochloride"]]},{"id":"CHEBI:16583","l":"","na":6,"nb":1,"a":[["EC%3A1.1.1.303","diacetyl reductase [(R)-acetoin forming]"],["EC%3A1.1.1.304","diacetyl reductase [(S)-acetoin forming]"],["RHEA%3A35607","acetoin + NADP(+) = diacetyl + NADPH + H(+)"],["RHEA%3A22900","(R)-acetoin + NAD(+) = diacetyl + NADH + H(+)"],["RHEA%3A27286","(S)-acetoin + NAD(+) = diacetyl + NADH + H(+)"],["proteintraitsmech%3ABIOLIP_BUO","BUO-binding site"]],"b":[["mapped/Diacetyl.yaml","Diacetyl"]]},{"id":"CHEBI:16719","l":"","na":6,"nb":1,"a":[["EC%3A1.1.1.168","2-dehydropantolactone reductase (Re-specific)"],["EC%3A1.1.1.214","2-dehydropantolactone reductase (Si-specific)"],["EC%3A1.1.1.358","2-dehydropantolactone reductase"],["EC%3A1.1.99.27","(R)-pantolactone dehydrogenase (flavin)"],["RHEA%3A21004","(R)-pantolactone + A = 2-dehydropantolactone + AH2"],["RHEA%3A18981","(R)-pantolactone + NADP(+) = 2-dehydropantolactone + NADPH + H(+)"]],"b":[["mapped/D-_-pantolactone.yaml","D-(-)-Pantolactone"]]},{"id":"CHEBI:17276","l":"","na":6,"nb":1,"a":[["EC%3A2.4.1.357","phlorizin synthase"],["EC%3A3.7.1.4","phloretin hydrolase"],["RHEA%3A23396","phloretin + H2O = phloretate + 1,3,5-trihydroxybenzene + H(+)"],["RHEA%3A51576","phloretin + UDP-alpha-D-glucose = phlorizin + UDP + H(+)"],["RHEA%3A65148","phloretin + UDP-alpha-D-glucose = trilobatin + UDP + H(+)"],["RHEA%3A69639","phlorizin + H2O = phloretin + beta-D-glucose"]],"b":[["mapped/Phloretin.yaml","Phloretin"]]},{"id":"CHEBI:17489","l":"","na":6,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17489","requires cAMP"],["ARO%3A3004251","antibiotic-resistant cya adenylate cyclase"],["ARO%3A3004250","antibiotic-resistant ptsI phosphotransferase"],["ARO%3A3003900","Escherichia coli cyaA with mutation conferring resistance to fosfomycin"],["ARO%3A3003899","Escherichia coli PtsI with mutation conferring resistance to fosfomycin"],["proteintraitsmech%3ABIOLIP_CMP","CMP-binding site"]],"b":[["mapped/Adenosine_35-Cyclic_Monophosphate.yaml","Adenosine 3,5-Cyclic Monophosphate"]]},{"id":"CHEBI:17580","l":"linalool","na":6,"nb":1,"a":[["EC%3A1.14.14.84","linalool 8-monooxygenase"],["EC%3A5.4.4.8","linalool isomerase"],["RHEA%3A68708","(2E)-geranyl diphosphate + H2O = linalool + diphosphate"],["RHEA%3A32635","linalool + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = (6E)-8-oxolinalool + 2 oxidized [NADPH--hemoprotein reductase] + 3 H2O + 2 H(+)"],["RHEA%3A54656","linalool = (2E)-geraniol"],["RHEA%3A32503","linalool + reduced [NADPH--hemoprotein reductase] + O2 = (6E)-8-hydroxylinalool + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["mapped/Linalool.yaml","Linalool"]]},{"id":"CHEBI:18246","l":"(1->4)-beta-D-glucan","na":6,"nb":1,"a":[["EC%3A2.4.1.12","cellulose synthase (UDP-forming)"],["EC%3A2.4.1.29","cellulose synthase (GDP-forming)"],["EC%3A2.4.1.49","cellodextrin phosphorylase"],["RHEA%3A17797","[(1->4)-beta-D-glucosyl](n) + GDP-alpha-D-glucose = [(1->4)-beta-D-glucosyl](n+1) + GDP + H(+)"],["RHEA%3A23024","[(1->4)-beta-D-glucosyl](n) + phosphate = [(1->4)-beta-D-glucosyl](n-1) + alpha-D-glucose 1-phosphate"],["RHEA%3A19929","[(1->4)-beta-D-glucosyl](n) + UDP-alpha-D-glucose = [(1->4)-beta-D-glucosyl](n+1) + UDP + H(+)"]],"b":[["mapped/Cellulose.yaml","Cellulose"]]},{"id":"CHEBI:22653","l":"asparagine","na":6,"nb":1,"a":[["TCDB%3A2.A.25","The Alanine or Glycine:Cation Symporter (AGCS) Family"],["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.13","The C4-Dicarboxylate Uptake (Dcu) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["mapped/Asparagine.yaml","Asparagine"]]},{"id":"CHEBI:28053","l":"melibiose","na":6,"nb":1,"a":[["RHEA%3A28663","melibiose + H2O = D-galactose + D-glucose"],["RHEA%3A28855","melibiose(in) + H(+)(in) = melibiose(out) + H(+)(out)"],["RHEA%3A28847","melibiose(in) + Li(+)(in) = melibiose(out) + Li(+)(out)"],["RHEA%3A28851","melibiose(in) + Na(+)(in) = melibiose(out) + Na(+)(out)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["MCSA%3A913","alpha-galactosidase"]],"b":[["mapped/Melibiose.yaml","Melibiose"]]},{"id":"CHEBI:28903","l":"","na":6,"nb":1,"a":[["RHEA%3A38223","decan-1-ol + (9Z)-octadecenoyl-CoA = decyl (9Z)-octadecenoate + CoA"],["RHEA%3A44096","decan-1-ol + hexadecanoyl-CoA = decyl hexadecanoate + CoA"],["RHEA%3A58376","decan-1-ol + NADP(+) = decanal + NADPH + H(+)"],["RHEA%3A69496","decan-1-ol + O2 = decanal + H2O2"],["RHEA%3A76755","decan-1-ol + reduced [NADPH--hemoprotein reductase] + O2 = 1,3-decanediol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A76775","decan-1-ol + reduced [NADPH--hemoprotein reductase] + O2 = 1,7-decanediol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["mapped/Decyl_Alcohol.yaml","decyl alcohol"]]},{"id":"CHEBI:28911","l":"cob(III)alamin","na":6,"nb":1,"a":[["RHEA%3A81907","(2R,3R,5R)-2-(S-pantetheinyl)-carbapenam-3-carboxylate + methylcob(III)alamin + S-adenosyl-L-methionine = (2R,3R,5S,6R)-6-(methyl)-2-(S-pantetheinyl)-carbapenam-3-carboxylate + cob(III)alamin + 5'-deoxyadenosine + L-methionine"],["RHEA%3A81911","(2R,3R,5S,6R)-6-(methyl)-2-(S-pantetheinyl)-carbapenam-3-carboxylate + methylcob(III)alamin + S-adenosyl-L-methionine = (2R,3R,5S,6R)-6-(ethyl)-2-(S-pantetheinyl)-carbapenam-3-carboxylate + cob(III)alamin + 5'-deoxyadenosine + L-methionine"],["RHEA%3A76471","cob(III)alamin + AH2 = cob(I)alamin + A + 2 H(+)"],["RHEA%3A81883","cytidine 5'-{[hydroxy(2-hydroxyethyl)phosphonoyl]phosphate} + methylcob(III)alamin + S-adenosyl-L-methionine = cytidine 5'-({hydroxy[(S)-2-hydroxypropyl]phosphonoyl}phosphate) + cob(III)alamin + 5'-deoxyadenosine + L-methionine"],["RHEA%3A77223","gentamicin X2 + methylcob(III)alamin + S-adenosyl-L-methionine = geneticin + cob(III)alamin + 5'-deoxyadenosine + L-methionine"],["RHEA%3A81891","N-acetyl-demethyl-L-phosphinothricin + methylcob(III)alamin + S-adenosyl-L-methionine = N-acetyl-L-phosphinothricin + cob(III)alamin + 5'-deoxyadenosine + L-methionine"]],"b":[["mapped/Cobalamine.yaml","Cobalamine"]]},{"id":"CHEBI:28997","l":"","na":6,"nb":1,"a":[["EC%3A3.5.4.4","adenosine deaminase"],["RHEA%3A28190","2'-deoxyadenosine + H2O + H(+) = 2'-deoxyinosine + NH4(+)"],["RHEA%3A29971","2'-deoxyinosine(in) + H(+)(in) = 2'-deoxyinosine(out) + H(+)(out)"],["RHEA%3A27750","2'-deoxyinosine + phosphate = 2-deoxy-alpha-D-ribose 1-phosphate + hypoxanthine"],["RHEA%3A29383","dIMP + H2O = 2'-deoxyinosine + phosphate"],["RHEA%3A69572","dIMP + inosine = 2'-deoxyinosine + IMP"]],"b":[["mapped/2-deoxyinosine.yaml","2'-Deoxyinosine"]]},{"id":"CHEBI:3020","l":"","na":6,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.117","The Chlorhexadine Exporter (CHX) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["mapped/Benzalkonium_Chloride.yaml","Benzalkonium Chloride"]]},{"id":"CHEBI:30477","l":"","na":6,"nb":1,"a":[["EC%3A2.1.1.265","tellurite methyltransferase"],["RHEA%3A68940","tellurite(in) + Na(+)(in) = tellurite(out) + Na(+)(out)"],["RHEA%3A34539","tellurite + S-adenosyl-L-methionine = methanetellurite + S-adenosyl-L-homocysteine"],["TCDB%3A2.A.20","The Inorganic Phosphate Transporter (PiT) Family"],["TCDB%3A2.A.21","The Solute:Sodium Symporter (SSS) Family"],["TCDB%3A2.A.16","The Telurite-resistance/Dicarboxylate Transporter (TDT) Family"]],"b":[["mapped/Tellurite.yaml","Tellurite"]]},{"id":"CHEBI:310312","l":"","na":6,"nb":1,"a":[["EC%3A2.1.1.154","isoliquiritigenin 2'-O-methyltransferase"],["EC%3A2.3.1.170","6'-deoxychalcone synthase"],["RHEA%3A10584","4-coumaroyl-CoA + 3 malonyl-CoA + NADPH + 4 H(+) = isoliquiritigenin + 3 CO2 + NADP(+) + 4 CoA + H2O"],["RHEA%3A79903","isoliquiritigenin = (2S)-liquiritigenin"],["RHEA%3A21608","isoliquiritigenin + S-adenosyl-L-methionine = 2'-O-methylisoliquiritigenin + S-adenosyl-L-homocysteine + H(+)"],["proteintraitsmech%3ABIOLIP_HCC","HCC-binding site"]],"b":[["mapped/Isoliquiritigenin.yaml","Isoliquiritigenin"]]},{"id":"CHEBI:46502","l":"tungstate","na":6,"nb":1,"a":[["EC%3A7.3.2.6","ABC-type tungstate transporter"],["RHEA%3A35295","adenylyl-molybdopterin + tungstate = W-molybdopterin cofactor + AMP + H(+)"],["RHEA%3A35027","tungstate(in) + ATP + H2O = tungstate(out) + ADP + phosphate + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.47","The Divalent Anion:Na+ Symporter (DASS) Family"],["proteintraitsmech%3ABIOLIP_WO4","WO4-binding site"]],"b":[["mapped/Tungstate.yaml","Tungstate"]]},{"id":"CHEBI:4883","l":"ethidium bromide","na":6,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.A.7","The ATP-gated P2X Receptor Cation Channel (P2X Receptor) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["mapped/Ethidium_Bromide.yaml","Ethidium Bromide"]]},{"id":"CHEBI:4917","l":"eugenol","na":6,"nb":1,"a":[["EC%3A1.1.1.318","eugenol synthase"],["EC%3A2.1.1.146","(iso)eugenol O-methyltransferase"],["RHEA%3A32655","eugenol + a carboxylate + NADP(+) = a coniferyl ester + NADPH"],["RHEA%3A24690","eugenol + acetate + NADP(+) = (E)-coniferyl acetate + NADPH"],["RHEA%3A80551","eugenol + S-adenosyl-L-methionine = O-methyleugenol + S-adenosyl-L-homocysteine + H(+)"],["proteintraitsmech%3ABIOLIP_EOL","EOL-binding site"]],"b":[["mapped/Eugenol.yaml","Eugenol"]]},{"id":"CHEBI:16689","l":"D-apiose","na":5,"nb":1,"a":[["EC%3A1.1.1.114","apiose 1-reductase"],["EC%3A5.3.1.36","D-apiose isomerase"],["RHEA%3A56996","aldehydo-D-apiose = apulose"],["RHEA%3A57040","aldehydo-D-apiose = D-apiofuranose"],["RHEA%3A15301","D-apiitol + NAD(+) = aldehydo-D-apiose + NADH + H(+)"]],"b":[["mapped/D-apiose.yaml","D-apiose"]]},{"id":"CHEBI:16865","l":"gamma-aminobutyric acid","na":5,"nb":1,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A2.A.42","The Hydroxy/Aromatic Amino Acid Permease (HAAAP) Family"],["TCDB%3A2.A.22","The Neurotransmitter:Sodium Symporter (NSS) Family"],["proteintraitsmech%3ABIOLIP_ABU","ABU-binding site"]],"b":[["mapped/Gamma-aminobutyric_Acid.yaml","gamma-Aminobutyric acid"]]},{"id":"CHEBI:17043","l":"biphenyl-2-ol","na":5,"nb":1,"a":[["EC%3A1.14.13.44","2-hydroxybiphenyl 3-monooxygenase"],["EC%3A3.13.1.3","2'-hydroxybiphenyl-2-sulfinate desulfinase"],["RHEA%3A12945","2'-hydroxybiphenyl-2-sulfinate + H2O = biphenyl-2-ol + sulfite + H(+)"],["RHEA%3A11996","biphenyl-2-ol + NADH + O2 + H(+) = biphenyl-2,3-diol + NAD(+) + H2O"],["MCSA%3A971","2'-hydroxybiphenyl-2-sulfinate desulfinase"]],"b":[["mapped/11-Biphenyl-2-ol.yaml","[1,1′-Biphenyl]-2-ol"]]},{"id":"CHEBI:17128","l":"","na":5,"nb":1,"a":[["EC%3A1.2.1.63","6-oxohexanoate dehydrogenase"],["RHEA%3A13397","6-oxohexanoate + NADP(+) + H2O = hexanedioate + NADPH + 2 H(+)"],["RHEA%3A81711","hexanedioate + glutaryl-CoA = hexanedioyl-CoA + glutarate"],["RHEA%3A71743","hexanedioate(in) + 2-oxoglutarate(out) = hexanedioate(out) + 2-oxoglutarate(in)"],["RHEA%3A40583","hexanedioyl-CoA + H2O = hexanedioate + CoA + H(+)"]],"b":[["mapped/Adipate.yaml","Adipate"]]},{"id":"CHEBI:17540","l":"","na":5,"nb":1,"a":[["EC%3A3.2.1.63","1,2-alpha-L-fucosidase"],["RHEA%3A10816","methyl-2-alpha-L-fucopyranosyl-beta-D-galactoside + H2O = methyl beta-D-galactoside + L-fucose"],["RHEA%3A72531","methyl beta-D-galactoside(out) + ATP + H2O = methyl beta-D-galactoside(in) + ADP + phosphate + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_MBG","MBG-binding site"]],"b":[["mapped/Methyl-B-D-galactopyranoside.yaml","Methyl-B-D-galactopyranoside"]]},{"id":"CHEBI:17781","l":"","na":5,"nb":1,"a":[["EC%3A3.5.99.1","riboflavinase"],["RHEA%3A86403","lumichrome(in) + ATP + H2O = lumichrome(out) + ADP + phosphate + H(+)"],["RHEA%3A86407","riboflavin + FMNH2 + O2 = lumichrome + D-ribose + FMN + H2O"],["RHEA%3A11408","riboflavin + H2O + H(+) = lumichrome + ribitol"],["proteintraitsmech%3ABIOLIP_LUM","LUM-binding site"]],"b":[["mapped/Lumichrome.yaml","Lumichrome"]]},{"id":"CHEBI:18145","l":"(R,R,R)-α-tocopherol","na":5,"nb":1,"a":[["EC%3A2.1.1.95","tocopherol C-methyltransferase"],["RHEA%3A71507","(+)-alpha-tocopherol(out) = (+)-alpha-tocopherol(in)"],["RHEA%3A45108","(+)-alpha-tocopherol + reduced [NADPH--hemoprotein reductase] + O2 = 13-hydroxy-alpha-tocopherol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A24012","gamma-tocopherol + S-adenosyl-L-methionine = (+)-alpha-tocopherol + S-adenosyl-L-homocysteine + H(+)"],["proteintraitsmech%3ABIOLIP_VIV","VIV-binding site"]],"b":[["mapped/Alpha-Tocopherol.yaml","alpha-Tocopherol"]]},{"id":"CHEBI:22599","l":"arabinose","na":5,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.B.142","The Integral membrane Glycosyltransferase family 39 (GT39) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A9.B.28","The Putative Essential Component of the MusEFGKI ABC Transporter, MusI (MusI) Family"],["TCDB%3A2.A.21","The Solute:Sodium Symporter (SSS) Family"]],"b":[["mapped/Arabinose.yaml","Arabinose"]]},{"id":"CHEBI:25979","l":"","na":5,"nb":1,"a":[["EC%3A1.14.14.77","phenylacetonitrile alpha-monooxygenase"],["EC%3A4.8.1.4","phenylacetaldoxime dehydratase"],["RHEA%3A52164","phenylacetonitrile + reduced [NADPH--hemoprotein reductase] + O2 = (R)-mandelonitrile + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A69308","(Z)-phenyl-N-(sulfonatooxy)methanimidothioate = phenylacetonitrile + sulfur + sulfate"],["RHEA%3A20069","(Z)-phenylacetaldehyde oxime = phenylacetonitrile + H2O"]],"b":[["mapped/Benzylcyanide.yaml","Benzylcyanide"]]},{"id":"CHEBI:26672","l":"siderophore","na":5,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_26672","siderophore cofactor class"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.17","The Outer Membrane Factor (OMF) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["mapped/Siderophore.yaml","Siderophore"]]},{"id":"CHEBI:27750","l":"ethyl acetate","na":5,"nb":1,"a":[["EC%3A2.3.1.268","ethanol O-acetyltransferase"],["EC%3A3.1.1.113","ethyl acetate hydrolase"],["RHEA%3A55972","ethanol + acetyl-CoA = ethyl acetate + CoA"],["RHEA%3A58148","ethyl acetate + H2O = ethanol + acetate + H(+)"],["proteintraitsmech%3ABIOLIP_EEE","EEE-binding site"]],"b":[["mapped/Ethyl_Acetate.yaml","ethyl acetate"]]},{"id":"CHEBI:28034","l":"","na":5,"nb":1,"a":[["EC%3A2.3.1.18","galactoside O-acetyltransferase"],["EC%3A2.4.3.1","beta-galactoside alpha-(2,6)-sialyltransferase"],["RHEA%3A15713","a beta-D-galactoside + acetyl-CoA = a 6-acetyl-beta-D-galactoside + CoA"],["RHEA%3A52104","a beta-D-galactoside + CMP-N-acetyl-beta-neuraminate = an N-acetyl-alpha-neuraminyl-(2->6)-beta-D-galactosyl derivative + CMP + H(+)"],["RHEA%3A85983","a beta-D-galactoside + UDP-N-acetyl-alpha-D-glucosamine = an N-acetyl-alpha-D-glucosaminyl-(1->4)-beta-D-galactosyl derivative + UDP + H(+)"]],"b":[["mapped/Beta-D-galactoside.yaml","Beta-D-galactoside"]]},{"id":"CHEBI:30043","l":"","na":5,"nb":1,"a":[["EC%3A1.14.12.15","terephthalate 1,2-dioxygenase"],["EC%3A3.1.1.102","mono(ethylene terephthalate) hydrolase"],["RHEA%3A49532","4-[(2-hydroxyethoxy)carbonyl]benzoate + H2O = terephthalate + ethylene glycol + H(+)"],["RHEA%3A10312","terephthalate + NADH + O2 + H(+) = (3S,4R)-3,4-dihydroxycyclohexa-1,5-diene-1,4-dicarboxylate + NAD(+)"],["TCDB%3A2.A.80","The Tricarboxylate Transporter (TTT) Family"]],"b":[["mapped/Terephthalate.yaml","Terephthalate"]]},{"id":"CHEBI:32588","l":"potassium chloride","na":1,"nb":5,"a":[["TCDB%3A2.A.30","The Cation-Chloride Cotransporter (CCC) Family"]],"b":[["mapped/Kcl.yaml","KCl"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Mc_general_salts.yaml","Mc_general_salts"],["mapped/Mc_general_salts_SO4free.yaml","Mc_general_salts_SO4free"]]},{"id":"CHEBI:35899","l":"crotonate","na":5,"nb":1,"a":[["EC%3A1.3.1.31","2-enoate reductase"],["RHEA%3A74903","(2E)-2-butenoate + ATP + H(+) = (2E)-but-2-enoyl-AMP + diphosphate"],["RHEA%3A74899","(2E)-2-butenoate + holo-[ACP] + ATP = (2E)-butenoyl-[ACP] + AMP + diphosphate"],["RHEA%3A10200","butanoate + NAD(+) = (2E)-2-butenoate + NADH + H(+)"],["RHEA%3A69172","N(6)-(2E)-butenoyl-L-lysyl-[protein] + H2O = (2E)-2-butenoate + L-lysyl-[protein]"]],"b":[["mapped/Na-crotonate.yaml","Na-crotonate"]]},{"id":"CHEBI:37671","l":"(1->3)-beta-D-glucan","na":5,"nb":1,"a":[["EC%3A2.4.1.30","1,3-beta-oligoglucan phosphorylase"],["EC%3A2.4.1.34","1,3-beta-glucan synthase"],["EC%3A2.4.1.97","1,3-beta-D-glucan phosphorylase"],["RHEA%3A16041","[(1->3)-beta-D-glucosyl](n) + phosphate = [(1->3)-beta-D-glucosyl](n-1) + alpha-D-glucose 1-phosphate"],["RHEA%3A21476","[(1->3)-beta-D-glucosyl](n) + UDP-alpha-D-glucose = [(1->3)-beta-D-glucosyl](n+1) + UDP + H(+)"]],"b":[["mapped/3-beta-d-glucan.yaml","3-beta-D-glucan"]]},{"id":"CHEBI:38028","l":"","na":5,"nb":1,"a":[["EC%3A3.5.2.15","cyanuric acid amidohydrolase"],["EC%3A3.5.4.42","N-isopropylammelide isopropylaminohydrolase"],["RHEA%3A70363","cyanurate + H2O = 1-carboxybiuret + H(+)"],["RHEA%3A14641","cyanurate + H2O = biuret + CO2"],["RHEA%3A23608","N-isopropylammelide + H2O + H(+) = isopropylamine + cyanurate"]],"b":[["mapped/Cyanuric_acid.yaml","Cyanuric acid"]]},{"id":"CHEBI:3962","l":"curcumin","na":5,"nb":1,"a":[["EC%3A1.3.1.n3","curcumin reductase"],["EC%3A2.3.1.217","curcumin synthase"],["RHEA%3A34819","dihydrocurcumin + NADP(+) = curcumin + NADPH + H(+)"],["RHEA%3A34823","(E)-feruloylacetyl-CoA + (E)-feruloyl-CoA + H2O = curcumin + CO2 + 2 CoA"],["RHEA%3A34815","tetrahydrocurcumin + 2 NADP(+) = curcumin + 2 NADPH + 2 H(+)"]],"b":[["mapped/Curcumin.yaml","Curcumin"]]},{"id":"CHEBI:44423","l":"","na":5,"nb":1,"a":[["EC%3A2.6.99.3","O-ureido-L-serine synthase"],["EC%3A3.5.3.25","N(omega)-hydroxy-L-arginine amidinohydrolase"],["RHEA%3A36263","hydroxyurea + O-acetyl-L-serine = O-ureido-L-serine + acetate + H(+)"],["RHEA%3A36791","N(omega)-hydroxy-L-arginine + H2O = hydroxyurea + L-ornithine"],["proteintraitsmech%3ABIOLIP_NHY","NHY-binding site"]],"b":[["mapped/Hydroxyurea.yaml","Hydroxyurea"]]},{"id":"CHEBI:541975","l":"","na":5,"nb":1,"a":[["RHEA%3A42188","3beta-hydroxy-5alpha-androstan-17-one + NAD(+) = 5alpha-androstan-3,17-dione + NADH + H(+)"],["RHEA%3A56916","3beta-hydroxy-5alpha-androstan-17-one + NADP(+) = 5alpha-androstan-3,17-dione + NADPH + H(+)"],["RHEA%3A53480","3beta-hydroxy-5alpha-androstan-17-one + NADPH + H(+) = 5alpha-androstane-3beta,17beta-diol + NADP(+)"],["RHEA%3A43896","3beta-hydroxy-5alpha-androstan-17-one + reduced [NADPH--hemoprotein reductase] + O2 = 3beta,7alpha-dihydroxy-5alpha-androstan-17-one + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A61820","3beta-hydroxy-5alpha-androstan-17-one + UDP-alpha-D-glucose = epiandrosterone 3-beta-D-glucoside + UDP + H(+)"]],"b":[["mapped/Epiandrosterone.yaml","Epiandrosterone"]]},{"id":"CHEBI:75937","l":"monooleoylglycerol","na":5,"nb":1,"a":[["RHEA%3A38455","1,2-di-(9Z-octadecenoyl)-glycerol + H2O = (9Z-octadecenoyl)-glycerol + (9Z)-octadecenoate + H(+)"],["RHEA%3A39935","1,2-di-(9Z-octadecenoyl)-sn-glycerol + H2O = (9Z-octadecenoyl)-glycerol + (9Z)-octadecenoate + H(+)"],["RHEA%3A39955","(9Z-octadecenoyl)-glycerol + H2O = glycerol + (9Z)-octadecenoate + H(+)"],["RHEA%3A50884","(9Z)-octadecenoyl-sn-glycero-3-phosphate + H2O = (9Z-octadecenoyl)-glycerol + phosphate"],["RHEA%3A47868","di-(9Z)-octadecenoylglycerol + H2O = (9Z-octadecenoyl)-glycerol + (9Z)-octadecenoate + H(+)"]],"b":[["mapped/Glycerol_Mono-oleate.yaml","Glycerol mono-oleate"]]},{"id":"CHEBI:11047","l":"(S)-3-hydroxybutyrate","na":4,"nb":1,"a":[["EC%3A1.1.99.24","hydroxyacid-oxoacid transhydrogenase"],["RHEA%3A65208","(3S)-3-hydroxybutanoyl-CoA + H2O = (S)-3-hydroxybutanoate + CoA + H(+)"],["RHEA%3A23048","(S)-3-hydroxybutanoate + 2-oxoglutarate = (R)-2-hydroxyglutarate + acetoacetate"],["RHEA%3A71871","(S)-3-hydroxybutanoate(out) + H(+)(out) = (S)-3-hydroxybutanoate(in) + H(+)(in)"]],"b":[["mapped/S-3-hydroxybutyrate.yaml","(S)-3-hydroxybutyrate"]]},{"id":"CHEBI:13997","l":"","na":4,"nb":1,"a":[["EC%3A2.8.3.11","citramalate CoA-transferase"],["RHEA%3A17621","citramalate + acetyl-CoA = (3S)-citramalyl-CoA + acetate"],["TCDB%3A2.A.24","The 2-Hydroxycarboxylate Transporter (2-HCT) Family"],["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"]],"b":[["mapped/Citramalate.yaml","Citramalate"]]},{"id":"CHEBI:15447","l":"","na":4,"nb":1,"a":[["EC%3A2.4.2.24","1,4-beta-D-xylan synthase"],["RHEA%3A15289","[(1->4)-beta-D-xylan](n) + UDP-alpha-D-xylose = [(1->4)-beta-D-xylan](n+1) + UDP + H(+)"],["MCSA%3A431","acetylxylan esterase"],["proteintraitsmech%3ABIOLIP_XYP","XYP-binding site"]],"b":[["mapped/Xylan_From_Beechwood.yaml","Xylan from Beechwood"]]},{"id":"CHEBI:15794","l":"","na":4,"nb":1,"a":[["EC%3A1.17.3.4","juglone 3-hydroxylase"],["RHEA%3A18745","2 juglone + O2 = 2 3,5-dihydroxy-1,4-naphthoquinone + 2 H(+)"],["RHEA%3A50748","juglone + H2O = naphthalene-1,2,4,8-tetrol"],["proteintraitsmech%3ABIOLIP_JUG","JUG-binding site"]],"b":[["mapped/Juglone.yaml","Juglone"]]},{"id":"CHEBI:15895","l":"","na":4,"nb":1,"a":[["EC%3A1.1.1.48","D-galactose 1-dehydrogenase"],["EC%3A3.1.1.25","1,4-lactonase"],["RHEA%3A44900","D-galactono-1,4-lactone + H2O = D-galactonate + H(+)"],["RHEA%3A21296","D-galactose + NAD(+) = D-galactono-1,4-lactone + NADH + H(+)"]],"b":[["mapped/D-galactonic_Acid_Lactone.yaml","D-galactonic Acid Lactone"]]},{"id":"CHEBI:16087","l":"","na":4,"nb":1,"a":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["TCDB%3A1.B.25","The Outer Membrane Porin (Opr) Family"],["MCSA%3A552","aconitate hydratase"],["MCSA%3A272","isocitrate lyase"]],"b":[["mapped/Isocitrate.yaml","Isocitrate"]]},{"id":"CHEBI:16096","l":"","na":4,"nb":1,"a":[["EC%3A2.1.1.118","columbamine O-methyltransferase"],["EC%3A2.1.1.147","corydaline synthase"],["RHEA%3A15373","columbamine + S-adenosyl-L-methionine = palmatine + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A14773","palmatine + S-adenosyl-L-methionine + 2 NADPH = corydaline + S-adenosyl-L-homocysteine + 2 NADP(+)"]],"b":[["mapped/Palmatine.yaml","Palmatine"]]},{"id":"CHEBI:16109","l":"propane-1,3-diol","na":4,"nb":1,"a":[["EC%3A1.1.1.202","1,3-propanediol dehydrogenase"],["RHEA%3A23188","propane-1,3-diol + NAD(+) = 3-hydroxypropanal + NADH + H(+)"],["RHEA%3A35599","propane-1,3-diol + NADP(+) = 3-hydroxypropanal + NADPH + H(+)"],["proteintraitsmech%3ABIOLIP_PDO","PDO-binding site"]],"b":[["mapped/13-Propanediol.yaml","1,3-Propanediol"]]},{"id":"CHEBI:16148","l":"heptadecane","na":4,"nb":1,"a":[["EC%3A4.1.99.5","aldehyde oxygenase (deformylating)"],["RHEA%3A77243","hnu + octadecanoate + H(+) = heptadecane + CO2"],["RHEA%3A30415","octadecanal + 2 NADPH + O2 + H(+) = heptadecane + formate + 2 NADP(+) + H2O"],["RHEA%3A83559","octadecanal + reduced [NADPH--hemoprotein reductase] + O2 = heptadecane + oxidized [NADPH--hemoprotein reductase] + CO2 + H2O + H(+)"]],"b":[["mapped/Heptadecane.yaml","Heptadecane"]]},{"id":"CHEBI:16226","l":"","na":4,"nb":1,"a":[["EC%3A2.4.1.210","limonoid glucosyltransferase"],["EC%3A3.1.1.36","limonin-D-ring-lactonase"],["RHEA%3A10896","limonin + 2 H2O = limonoate + 2 H(+)"],["RHEA%3A11256","limonin + UDP-alpha-D-glucose + H2O = limonin 17-beta-D-glucoside + UDP + 2 H(+)"]],"b":[["mapped/Limonin.yaml","Limonin"]]},{"id":"CHEBI:16238","l":"FAD","na":4,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16238","requires FAD"],["MCSA%3A968","aldehyde oxidase"],["MCSA%3A969","Phytoene desaturase (lycopene-forming)"],["proteintraitsmech%3ABIOLIP_FAD","FAD-binding site"]],"b":[["mapped/Fad.yaml","FAD"]]},{"id":"CHEBI:16354","l":"N-methylhydantoin","na":4,"nb":1,"a":[["EC%3A3.5.2.14","N-methylhydantoinase (ATP-hydrolyzing)"],["EC%3A3.5.4.21","creatinine deaminase"],["RHEA%3A12681","creatinine + H2O + H(+) = N-methylhydantoin + NH4(+)"],["RHEA%3A11720","N-methylhydantoin + ATP + 2 H2O = N-carbamoylsarcosine + ADP + phosphate + 2 H(+)"]],"b":[["mapped/N-methylhydantoin.yaml","N-methylhydantoin"]]},{"id":"CHEBI:16523","l":"","na":4,"nb":1,"a":[["GO%3A0070179","D-serine biosynthetic process"],["ARO%3A3002973","vanTm gene in vanL cluster"],["ARO%3A3002974","vanTr gene in vanL cluster"],["proteintraitsmech%3ABIOLIP_DSN","DSN-binding site"]],"b":[["mapped/D-Serine.yaml","D-Serine"]]},{"id":"CHEBI:17246","l":"","na":4,"nb":1,"a":[["EC%3A1.1.2.6","polyvinyl alcohol dehydrogenase (cytochrome)"],["EC%3A1.1.3.30","polyvinyl-alcohol oxidase"],["RHEA%3A20157","a polyvinyl alcohol + 2n Fe(III)-[cytochrome c] = an oxidized polyvinyl alcohol + 2n Fe(II)-[cytochrome c] + 2n H(+)"],["RHEA%3A21688","a polyvinyl alcohol + n O2 = an oxidized polyvinyl alcohol + n H2O2"]],"b":[["mapped/Polyvinyl_alcohol.yaml","Polyvinyl alcohol"]]},{"id":"CHEBI:17561","l":"L-cysteine","na":1,"nb":4,"a":[["proteintraitsmech%3ABIOLIP_CYS","CYS-binding site"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-cysteine.yaml","L-Cysteine"],["mapped/L-cysteine_Hcl_X_H2o.yaml","L-Cysteine HCl x H2O"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:17682","l":"","na":4,"nb":1,"a":[["EC%3A4.1.2.38","benzoin aldolase"],["RHEA%3A21460","benzoin = 2 benzaldehyde"],["RHEA%3A25960","benzoin + NADP(+) = benzil + NADPH + H(+)"],["MCSA%3A221","benzoin aldolase"]],"b":[["mapped/Benzoin.yaml","Benzoin"]]},{"id":"CHEBI:18154","l":"polysaccharide","na":4,"nb":1,"a":[["TCDB%3A9.B.97","The Acyltransferase-3/Putative Acetyl-CoA Transporter (AT3AT) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.18","The Outer Membrane Auxiliary (OMA) Protein Family"]],"b":[["mapped/Polysaccharides.yaml","Polysaccharides"]]},{"id":"CHEBI:18268","l":"","na":4,"nb":1,"a":[["EC%3A1.1.1.20","glucuronolactone reductase"],["RHEA%3A30767","D-glucurono-3,6-lactone + H2O = D-glucuronate + H(+)"],["RHEA%3A30883","D-glucurono-3,6-lactone + NAD(+) + 2 H2O = D-glucarate + NADH + 3 H(+)"],["RHEA%3A18925","L-gulono-1,4-lactone + NADP(+) = D-glucurono-3,6-lactone + NADPH + H(+)"]],"b":[["mapped/D-Glucuronic_Acid_Gamma_Lactone.yaml","D-Glucuronic acid gamma lactone"]]},{"id":"CHEBI:18353","l":"","na":4,"nb":1,"a":[["EC%3A1.1.3.38","vanillyl-alcohol oxidase"],["RHEA%3A10036","4-hydroxy-3-methoxy-benzenemethanol + O2 = vanillin + H2O2"],["RHEA%3A76619","(6E)-8-methylnon-6-enoyl-CoA + 4-hydroxy-3-methoxy-benzenemethanol = capsiate + CoA"],["RHEA%3A76611","vanillin + NADPH + H(+) = 4-hydroxy-3-methoxy-benzenemethanol + NADP(+)"]],"b":[["mapped/Vanillyl_Alcohol.yaml","Vanillyl Alcohol"]]},{"id":"CHEBI:23681","l":"dibenzothiophene","na":4,"nb":1,"a":[["EC%3A1.14.14.21","dibenzothiophene monooxygenase"],["RHEA%3A49072","dibenzothiophene + 2 FMNH2 + 2 O2 = dibenzothiophene 5,5-dioxide + 2 FMN + 2 H2O + 2 H(+)"],["RHEA%3A49076","dibenzothiophene + FMNH2 + O2 = dibenzothiophene 5-oxide + FMN + H2O + H(+)"],["MCSA%3A973","DszC protein"]],"b":[["mapped/Dibenzothiophene.yaml","Dibenzothiophene"]]},{"id":"CHEBI:27605","l":"D-psicose","na":4,"nb":1,"a":[["EC%3A5.1.3.30","D-psicose 3-epimerase"],["EC%3A5.1.3.31","D-tagatose 3-epimerase"],["RHEA%3A42360","D-allulose = keto-D-fructose"],["proteintraitsmech%3ABIOLIP_PSJ","PSJ-binding site"]],"b":[["mapped/D-psicose.yaml","D-psicose"]]},{"id":"CHEBI:27856","l":"","na":4,"nb":1,"a":[["EC%3A3.5.1.4","amidase"],["RHEA%3A85603","acetamide = acetonitrile + H2O"],["RHEA%3A45048","acetamide + H2O = acetate + NH4(+)"],["RHEA%3A51648","N(6)-acetyl-L-lysyl-[protein] + O2 + H2O = acetamide + (S)-2-amino-6-oxohexanoyl-[protein] + H2O2"]],"b":[["mapped/Acetamide.yaml","Acetamide"]]},{"id":"CHEBI:27904","l":"D-erythrose","na":4,"nb":1,"a":[["RHEA%3A80075","D-erythrose + 3-hydroxypyruvate = (3S,4S,5R,6R)-3,4,5,6,7-pentahydroxy-2-oxoheptanoate"],["RHEA%3A66376","D-erythrose 4-phosphate + H2O = D-erythrose + phosphate"],["RHEA%3A53180","D-erythrose = D-erythrulose"],["RHEA%3A59928","erythritol + NADP(+) = D-erythrose + NADPH + H(+)"]],"b":[["mapped/D-erythrose.yaml","D-erythrose"]]},{"id":"CHEBI:28161","l":"","na":4,"nb":1,"a":[["RHEA%3A84895","4-O-methyl-alpha-D-glucuronosyl-(1->2)-beta-D-xylose + H2O = beta-D-xylose + 4-O-methyl-beta-D-glucuronate"],["RHEA%3A63336","alpha-D-xylose = beta-D-xylose"],["MCSA%3A548","endo-1,4-beta-xylanase (glycosyl hydrolase 10)"],["MCSA%3A432","endo-1,4-beta-xylanase (glycosyl hydrolase 11 family)"]],"b":[["mapped/Beta-D-xylose.yaml","Beta-D-xylose"]]},{"id":"CHEBI:30411","l":"cobalamin","na":4,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_30411","requires cobalamin"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.A.54","The Lysosomal Cobalamin (B12) Transporter (L-B12T) Family"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]],"b":[["mapped/Cobalamine.yaml","Cobalamine"]]},{"id":"CHEBI:30769","l":"citric acid","na":1,"nb":4,"a":[["proteintraitsmech%3ABIOLIP_CIT","CIT-binding site"]],"b":[["mapped/Citric_Acid.yaml","Citric acid"],["mapped/Citric_Acid_X_H2o.yaml","Citric acid x H2O"],["mapped/Citric_Acidh2o.yaml","Citric Acid•H2O"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:32139","l":"sodium hydrogencarbonate","na":1,"nb":4,"a":[["TCDB%3A2.A.31","The Anion Exchanger (AE) Family"]],"b":[["mapped/84_GL_NaHCO3_Solution.yaml","84 g/L NaHCO3 solution"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Nahco3.yaml","NaHCO3"]]},{"id":"CHEBI:34768","l":"furfural","na":4,"nb":1,"a":[["RHEA%3A77519","furfural + hydrogen cyanide = (2R)-2-(furan-2-yl)-2-hydroxyacetonitrile"],["RHEA%3A76667","furfural + NAD(+) + H2O = 2-furoate + NADH + 2 H(+)"],["RHEA%3A76671","furfural + NADP(+) + H2O = 2-furoate + NADPH + 2 H(+)"],["TCDB%3A1.C.113","The Hemolysin III (Hly III) Family"]],"b":[["mapped/2-Furfuraldehyde.yaml","2-Furfuraldehyde"]]},{"id":"CHEBI:3528","l":"","na":4,"nb":1,"a":[["RHEA%3A84439","D-cellotriose = beta-D-glucosyl-(1->4)-beta-D-glucosyl-(1->4)-D-mannopyranose"],["RHEA%3A59656","D-cellotriose + O2 = D-cellotriono-1,5-lactone + H2O2"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A4.A.3","The PTS Lactose-N,N'-Diacetylchitobiose-β-glucoside (Lac) Family"]],"b":[["mapped/Cellotriose.yaml","Cellotriose"]]},{"id":"CHEBI:4167)","l":"","na":4,"nb":1,"a":[["RHEA%3A22152","a ubiquinone + D-glucose = D-glucono-1,5-lactone + a ubiquinol"],["RHEA%3A20637","D-fructose + D-glucose = D-glucono-1,5-lactone + D-sorbitol"],["RHEA%3A17825","D-glucose + ATP = D-glucose 6-phosphate + ADP + H(+)"],["RHEA%3A68864","isomaltose + H2O = alpha-D-glucose + D-glucose"]],"b":[["mapped/Dextrose.yaml","Dextrose"]]},{"id":"CHEBI:45422","l":"","na":4,"nb":1,"a":[["RHEA%3A68112","propanamide + H2O = propanoate + NH4(+)"],["RHEA%3A85607","propanamide = propanonitrile + H2O"],["TCDB%3A1.B.94","The Pro-Pro-Glu Outer Membrane Porin (PPE) Family"],["proteintraitsmech%3ABIOLIP_ROP","ROP-binding site"]],"b":[["mapped/Propionamide.yaml","Propionamide"]]},{"id":"CHEBI:48942","l":"","na":4,"nb":1,"a":[["RHEA%3A76655","3-methylbutanal + NAD(+) + H2O = 3-methylbutanoate + NADH + 2 H(+)"],["RHEA%3A76651","3-methylbutanal + NADP(+) + H2O = 3-methylbutanoate + NADPH + 2 H(+)"],["RHEA%3A46184","3-methylbutanoate + ATP + CoA = 3-methylbutanoyl-CoA + AMP + diphosphate"],["RHEA%3A66984","3-methylbutanoyl-CoA + H2O = 3-methylbutanoate + CoA + H(+)"]],"b":[["mapped/Isovalerate.yaml","Isovalerate"]]},{"id":"CHEBI:48945","l":"","na":4,"nb":1,"a":[["RHEA%3A65456","2-methylbutan-1-ol + acetyl-CoA = 2-methylbutyl acetate + CoA"],["RHEA%3A65464","2-methylbutan-1-ol + butanoyl-CoA = 2-methylbutyl butanoate + CoA"],["RHEA%3A65532","2-methylbutan-1-ol + hexanoyl-CoA = 2-methylbutyl hexanoate + CoA"],["RHEA%3A84375","2-methylbutan-1-ol + NADP(+) = 2-methylbutanal + NADPH + H(+)"]],"b":[["mapped/2-methyl-1-butanol.yaml","2-methyl-1-butanol"]]},{"id":"CHEBI:5169","l":"fraxetin","na":4,"nb":1,"a":[["EC%3A1.14.11.60","scopoletin 8-hydroxylase"],["EC%3A1.14.14.164","fraxetin 5-hydroxylase"],["RHEA%3A57844","fraxetin + reduced [NADPH--hemoprotein reductase] + O2 = sideretin (reduced form) + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A57848","scopoletin + 2-oxoglutarate + O2 = fraxetin + succinate + CO2"]],"b":[["mapped/Fraxetin.yaml","Fraxetin"]]},{"id":"CHEBI:59899","l":"3-nitropropanoate","na":4,"nb":1,"a":[["EC%3A1.3.1.16","beta-nitroacrylate reductase"],["RHEA%3A81391","2-nitrobutanedioate + H(+) = 3-nitropropanoate + CO2"],["RHEA%3A81399","3-nitropropanoate + A + H2O = 3-oxopropanoate + nitrite + AH2 + H(+)"],["RHEA%3A23892","3-nitropropanoate + NADP(+) = 3-nitroacrylate + NADPH + H(+)"]],"b":[["mapped/3-nitropropanoate.yaml","3-nitropropanoate"]]},{"id":"CHEBI:6104","l":"","na":4,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["mapped/Kanamycin.yaml","Kanamycin"]]},{"id":"CHEBI:74904","l":"","na":4,"nb":1,"a":[["EC%3A2.8.3.24","(R)-2-hydroxy-4-methylpentanoate CoA-transferase"],["RHEA%3A66988","4-methylpentanoate + ATP + CoA = 4-methylpentanoyl-CoA + AMP + diphosphate"],["RHEA%3A49440","4-methylpentanoyl-CoA + (2R)-hydroxy-4-methylpentanoate = (R)-2-hydroxy-4-methylpentanoyl-CoA + 4-methylpentanoate"],["RHEA%3A55064","4-methylpentanoyl-CoA + H2O = 4-methylpentanoate + CoA + H(+)"]],"b":[["mapped/Isocaproate.yaml","Isocaproate"]]},{"id":"CHEBI:8984","l":"","na":4,"nb":1,"a":[["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["mapped/Sodium_Dodecyl_Sulfate.yaml","Sodium Dodecyl Sulfate"]]},{"id":"CHEBI:9533","l":"","na":4,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["TCDB%3A2.A.88","The Vitamin Uptake Transporter (VUT) Family"],["proteintraitsmech%3ABIOLIP_TPS","TPS-binding site"]],"b":[["mapped/Thiamine_monophosphate.yaml","thiamine monophosphate"]]},{"id":"CHEBI:125610","l":"N-acetyltyramine","na":3,"nb":1,"a":[["RHEA%3A67200","N-acetyltyramine + H2O = tyramine + acetate"],["RHEA%3A80971","N-acetyltyramine + reduced [NADPH--hemoprotein reductase] + O2 = N-acetyldopamine + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A66136","tyramine + acetyl-CoA = N-acetyltyramine + CoA + H(+)"]],"b":[["mapped/N-acetyltyramine.yaml","N-acetyltyramine"]]},{"id":"CHEBI:136511","l":"manganese dioxide","na":3,"nb":1,"a":[["EC%3A1.16.3.3","manganese oxidase"],["RHEA%3A52240","2 Mn(2+) + O2 + 2 H2O = 2 MnO2 + 4 H(+)"],["RHEA%3A52248","4 Mn(3+) + O2 + 6 H2O = 4 MnO2 + 12 H(+)"]],"b":[["mapped/Mno2.yaml","MnO2"]]},{"id":"CHEBI:145933","l":"","na":3,"nb":1,"a":[["RHEA%3A51668","mevastatin + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = pravastatin lactone + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"],["RHEA%3A62752","pravastatin lactone + H2O = pravastatin diol lactone + (S)-2-methylbutanoate + H(+)"],["RHEA%3A63048","pravastatin lactone + H2O = pravastatin + H(+)"]],"b":[["mapped/Pravastatin_Lactone.yaml","Pravastatin lactone"]]},{"id":"CHEBI:149531","l":"","na":3,"nb":1,"a":[["EC%3A1.1.3.50","C-glycoside oxidase"],["RHEA%3A75251","carminate + O2 = 3'-dehydrocarminate + H2O2"],["RHEA%3A63752","kermesate + UDP-alpha-D-glucose = carminate + UDP + 2 H(+)"]],"b":[["mapped/Carminate.yaml","Carminate"]]},{"id":"CHEBI:15603","l":"L-leucine","na":1,"nb":3,"a":[["proteintraitsmech%3ABIOLIP_LEU","LEU-binding site"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-leucine.yaml","L-Leucine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:15929","l":"","na":3,"nb":1,"a":[["EC%3A2.1.1.141","jasmonate O-methyltransferase"],["RHEA%3A13349","jasmonate + S-adenosyl-L-methionine = methyl (-)-jasmonate + S-adenosyl-L-homocysteine"],["RHEA%3A55372","methyl (-)-jasmonate + H2O = jasmonate + methanol + H(+)"]],"b":[["mapped/Methyl_Jasmonate.yaml","methyl jasmonate"]]},{"id":"CHEBI:16019","l":"","na":3,"nb":1,"a":[["EC%3A3.1.7.1","prenyl-diphosphatase"],["RHEA%3A21496","dimethylallyl diphosphate + H2O = prenol + diphosphate"],["RHEA%3A58420","prenol + NADP(+) = 3-methyl-2-butenal + NADPH + H(+)"]],"b":[["mapped/3-methyl-2-butenol.yaml","3-methyl-2-butenol"]]},{"id":"CHEBI:16027","l":"","na":3,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16027","requires adenosine 5'-monophosphate"],["MCSA%3A632","DNA nucleotidylexotransferase"],["proteintraitsmech%3ABIOLIP_AMP","AMP-binding site"]],"b":[["mapped/Adenosine_5-monophosphate.yaml","Adenosine 5'-monophosphate"]]},{"id":"CHEBI:16482","l":"naphthalene","na":3,"nb":1,"a":[["EC%3A1.14.12.12","naphthalene 1,2-dioxygenase"],["RHEA%3A19173","naphthalene + NADH + O2 + H(+) = (1R,2S)-1,2-dihydronaphthalene-1,2-diol + NAD(+)"],["MCSA%3A130","naphthalene 1,2-dioxygenase"]],"b":[["mapped/Naphthalene.yaml","Naphthalene"]]},{"id":"CHEBI:16602","l":"trichloroethene","na":3,"nb":1,"a":[["EC%3A1.21.99.5","tetrachloroethene reductive dehalogenase"],["RHEA%3A67992","trichloroethene + AH2 = (Z)-1,2-dichloroethene + chloride + A + H(+)"],["RHEA%3A20353","trichloroethene + chloride + A + H(+) = tetrachloroethene + AH2"]],"b":[["mapped/Trichloroethylene.yaml","Trichloroethylene"]]},{"id":"CHEBI:16828","l":"L-tryptophan","na":1,"nb":3,"a":[["proteintraitsmech%3ABIOLIP_TRP","TRP-binding site"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-tryptophan.yaml","L-Tryptophan"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:16885","l":"","na":3,"nb":1,"a":[["EC%3A2.4.1.99","sucrose:sucrose fructosyltransferase"],["RHEA%3A33783","1(F)-beta-D-fructosylsucrose + sucrose = 1,6-kestotetraose + beta-D-glucose"],["RHEA%3A23312","2 sucrose = 1(F)-beta-D-fructosylsucrose + D-glucose"]],"b":[["mapped/1-Kestose.yaml","1-Kestose"]]},{"id":"CHEBI:17097","l":"biphenyl","na":3,"nb":1,"a":[["EC%3A1.14.12.18","biphenyl 2,3-dioxygenase"],["RHEA%3A18165","biphenyl + NADH + O2 + H(+) = (2R,3S)-3-phenylcyclohexa-3,5-diene-1,2-diol + NAD(+)"],["proteintraitsmech%3ABIOLIP_BNL","BNL-binding site"]],"b":[["mapped/Biphenyl.yaml","Biphenyl"]]},{"id":"CHEBI:17484","l":"benzyl isothiocyanate","na":3,"nb":1,"a":[["EC%3A5.99.1.1","thiocyanate isomerase"],["RHEA%3A10004","benzyl isothiocyanate = benzyl thiocyanate"],["RHEA%3A69300","(Z)-phenyl-N-(sulfonatooxy)methanimidothioate = benzyl isothiocyanate + sulfate"]],"b":[["mapped/Benzyl_Isothiocyanate.yaml","Benzyl isothiocyanate"]]},{"id":"CHEBI:18367","l":"phosphate(3-)","na":3,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["proteintraitsmech%3ABIOLIP_PO4","PO4-binding site"]],"b":[["mapped/Orthophosphate.yaml","Orthophosphate"]]},{"id":"CHEBI:2179","l":"","na":3,"nb":1,"a":[["RHEA%3A35007","D-fucose(in) = D-fucose(out)"],["RHEA%3A35011","D-fucose(in) + H(+)(in) = D-fucose(out) + H(+)(out)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/6-deoxy-d-galactose.yaml","6-deoxy-D-galactose"]]},{"id":"CHEBI:22908","l":"","na":3,"nb":1,"a":[["TCDB%3A2.A.31","The Anion Exchanger (AE) Family"],["TCDB%3A3.A.31","The Endosomal Sorting Complexes Required for Transport III (ESCRT-III) Family"],["TCDB%3A1.A.8","The Major Intrinsic Protein (MIP) Family"]],"b":[["mapped/Borate.yaml","Borate"]]},{"id":"CHEBI:2365","l":"(+)-abscisic acid","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.17","The Proton-dependent Oligopeptide Transporter (POT/PTR) Family"],["proteintraitsmech%3ABIOLIP_A8S","A8S-binding site"]],"b":[["mapped/Abscisic_Acid.yaml","Abscisic acid"]]},{"id":"CHEBI:27789","l":"1,2-dichloroethane","na":3,"nb":1,"a":[["EC%3A3.8.1.5","haloalkane dehalogenase"],["RHEA%3A25185","1,2-dichloroethane + H2O = 2-chloroethanol + chloride + H(+)"],["proteintraitsmech%3ABIOLIP_DCE","DCE-binding site"]],"b":[["mapped/2-dichloroethane.yaml","1,2-dichloroethane"]]},{"id":"CHEBI:27907","l":"","na":3,"nb":1,"a":[["EC%3A5.1.3.32","L-rhamnose mutarotase"],["RHEA%3A25584","alpha-L-rhamnose = beta-L-rhamnose"],["proteintraitsmech%3ABIOLIP_RAM","RAM-binding site"]],"b":[["mapped/Alpha-L-rhamnose.yaml","Alpha-L-rhamnose"]]},{"id":"CHEBI:28309","l":"","na":3,"nb":1,"a":[["RHEA%3A59632","D-xylobiose + O2 = D-xylobiono-1,5-lactone + H2O2"],["MCSA%3A548","endo-1,4-beta-xylanase (glycosyl hydrolase 10)"],["MCSA%3A432","endo-1,4-beta-xylanase (glycosyl hydrolase 11 family)"]],"b":[["mapped/Xylobiose.yaml","Xylobiose"]]},{"id":"CHEBI:28915","l":"fosfomycin","na":3,"nb":1,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.5","The Pseudomonas OprP Porin (POP) Family"],["proteintraitsmech%3ABIOLIP_FCN","FCN-binding site"]],"b":[["mapped/Fosfomycin.yaml","Fosfomycin"]]},{"id":"CHEBI:29452","l":"","na":3,"nb":1,"a":[["EC%3A3.1.7.13","neryl diphosphate diphosphatase"],["RHEA%3A60672","nerol + NAD(+) = neral + NADH + H(+)"],["RHEA%3A65828","neryl diphosphate + H2O = nerol + diphosphate"]],"b":[["mapped/Nerol.yaml","Nerol"]]},{"id":"CHEBI:30719","l":"","na":3,"nb":1,"a":[["EC%3A4.2.1.35","(R)-2-methylmalate dehydratase"],["RHEA%3A42424","2-methylmaleate + H2O = (2R,3S)-3-methylmalate"],["RHEA%3A22332","(3R)-citramalate = 2-methylmaleate + H2O"]],"b":[["mapped/Citraconate.yaml","Citraconate"]]},{"id":"CHEBI:30803","l":"isophthalate(2-)","na":3,"nb":1,"a":[["EC%3A6.2.1.58","isophthalate--CoA ligase"],["RHEA%3A61636","isophthalate + ATP + CoA = isophthalyl-CoA + AMP + diphosphate"],["TCDB%3A2.A.80","The Tricarboxylate Transporter (TTT) Family"]],"b":[["mapped/Isophthalate.yaml","Isophthalate"]]},{"id":"CHEBI:30911","l":"glucitol","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A4.A.4","The PTS Glucitol (Gut) Family"]],"b":[["mapped/Sorbitol.yaml","Sorbitol"]]},{"id":"CHEBI:31128","l":"","na":3,"nb":1,"a":[["EC%3A1.14.13.84","4-hydroxyacetophenone monooxygenase"],["RHEA%3A47384","4-acetoxyphenol + H2O = hydroquinone + acetate + H(+)"],["RHEA%3A22916","4'-hydroxyacetophenone + NADPH + O2 + H(+) = 4-acetoxyphenol + NADP(+) + H2O"]],"b":[["mapped/4-acetoxyphenol.yaml","4-acetoxyphenol"]]},{"id":"CHEBI:32816","l":"pyruvic acid","na":3,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_32816","requires pyruvic acid"],["MCSA%3A449","cystathionine beta-lyase"],["proteintraitsmech%3ABIOLIP_PYR","PYR-binding site"]],"b":[["mapped/Pyruvic_Acid.yaml","Pyruvic acid"]]},{"id":"CHEBI:37054","l":"3-hydroxybutyrate","na":1,"nb":3,"a":[["RHEA%3A81351","3-hydroxybutanoate(in) = 3-hydroxybutanoate(out)"]],"b":[["mapped/3-hydroxybutyrate.yaml","3-hydroxybutyrate"],["mapped/R-3-hydroxybutyrate.yaml","(R)-3-hydroxybutyrate"],["mapped/S-3-hydroxybutyrate.yaml","(S)-3-hydroxybutyrate"]]},{"id":"CHEBI:40968","l":"astaxanthin","na":3,"nb":1,"a":[["EC%3A1.14.99.64","zeaxanthin 4-ketolase"],["RHEA%3A56772","all-trans-adonixanthin + 2 AH2 + 2 O2 = all-trans-(3S,3'S)-astaxanthin + 2 A + 3 H2O"],["proteintraitsmech%3ABIOLIP_AXT","AXT-binding site"]],"b":[["mapped/Astaxanthin.yaml","Astaxanthin"]]},{"id":"CHEBI:41189","l":"","na":1,"nb":3,"a":[["proteintraitsmech%3ABIOLIP_BU1","BU1-binding site"]],"b":[["mapped/14-Butanediol.yaml","1,4-Butanediol"],["mapped/Butane-14-diol.yaml","Butane-1,4-diol"],["unmapped/4-diol.yaml","4-diol"]]},{"id":"CHEBI:412516","l":"5-hydroxymethylfurfural","na":3,"nb":1,"a":[["EC%3A1.1.3.47","5-(hydroxymethyl)furfural oxidase"],["RHEA%3A32683","5-hydroxymethylfurfural + 3 O2 + 2 H2O = 2,5-dicarboxyfuran + 3 H2O2 + 2 H(+)"],["RHEA%3A43504","5-hydroxymethylfurfural + O2 = 2,5-diformylfuran + H2O2"]],"b":[["mapped/5-Hydroxymethylfurfural.yaml","5-Hydroxymethylfurfural"]]},{"id":"CHEBI:43968","l":"meropenem","na":3,"nb":1,"a":[["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"],["TCDB%3A1.B.25","The Outer Membrane Porin (Opr) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["mapped/Meropenem.yaml","Meropenem"]]},{"id":"CHEBI:45863","l":"","na":3,"nb":1,"a":[["EC%3A2.3.1.321","3'-N-debenzoyltaxol N-benzoyltransferase"],["RHEA%3A33687","3'-N-debenzoyltaxol + benzoyl-CoA = paclitaxel + CoA + H(+)"],["proteintraitsmech%3ABIOLIP_TA1","TA1-binding site"]],"b":[["mapped/Paclitaxel.yaml","Paclitaxel"]]},{"id":"CHEBI:4629","l":"diosgenin","na":3,"nb":1,"a":[["EC%3A3.2.1.189","dioscin glycosidase (diosgenin-forming)"],["RHEA%3A36827","dioscin + 3 H2O = diosgenin + 2 L-rhamnopyranose + D-glucose"],["RHEA%3A61888","diosgenin + UDP-alpha-D-glucose = diosgenin 3-O-beta-D-glucoside + UDP + H(+)"]],"b":[["mapped/Diosgenin.yaml","Diosgenin"]]},{"id":"CHEBI:5199","l":"Fusaric acid","na":3,"nb":1,"a":[["TCDB%3A2.A.85","The Aromatic Acid Exporter (ArAE) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.17","The Outer Membrane Factor (OMF) Family"]],"b":[["mapped/Fusaric_Acid.yaml","Fusaric acid"]]},{"id":"CHEBI:5417","l":"","na":3,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"],["TCDB%3A4.A.6","The PTS Mannose-Fructose-Sorbose (Man) Family"]],"b":[["mapped/Glucosamine.yaml","Glucosamine"]]},{"id":"CHEBI:58187","l":"alginate","na":3,"nb":1,"a":[["EC%3A5.1.3.37","mannuronan 5-epimerase"],["RHEA%3A45572","[(1->4)-beta-D-mannuronosyl](n) = [alginate](n)"],["RHEA%3A15637","[alginate](n) + GDP-alpha-D-mannuronate = [alginate](n+1) + GDP + H(+)"]],"b":[["mapped/Alginate.yaml","Alginate"]]},{"id":"CHEBI:60239","l":"","na":3,"nb":1,"a":[["EC%3A3.2.1.227","N-acetyllactosaminidase"],["RHEA%3A77187","beta-D-Gal-(1->4)-beta-D-GlcNAc-(1->3)-beta-D-Gal-(1->4)-D-Glc + GDP-beta-L-fucose = beta-D-Gal-(1->4)-[alpha-L-Fuc-(1->3)]-beta-D-GlcNAc-(1->3)-beta-D-Gal-(1->4)-D-Glc + GDP + H(+)"],["RHEA%3A83143","beta-D-Gal-(1->4)-beta-D-GlcNAc-(1->3)-beta-D-Gal-(1->4)-D-Glc + H2O = N-acetyllactosamine + lactose"]],"b":[["mapped/Lacto-N-neotetraose.yaml","Lacto-N-neotetraose"]]},{"id":"CHEBI:64243","l":"","na":1,"nb":3,"a":[["TCDB%3A9.A.14","The G-protein-coupled receptor (GPCR) Family"]],"b":[["mapped/Na-glutamate.yaml","Na-glutamate"],["mapped/Sodium_Glutamate_Monohydrate.yaml","Sodium glutamate monohydrate"],["mapped/Sodium_L-glutamate.yaml","Sodium L-glutamate"]]},{"id":"CHEBI:6472","l":"lincomycin","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_3QB","3QB-binding site"]],"b":[["mapped/Lincomycin.yaml","Lincomycin"]]},{"id":"CHEBI:64755","l":"''EDTA(2-","na":3,"nb":1,"a":[["EC%3A1.14.14.33","ethylenediaminetetraacetate monooxygenase"],["RHEA%3A40987","EDTA + 2 FMNH2 + 2 O2 = ethylenediaminediacetate + 2 FMN + 2 glyoxylate + 2 H2O + 3 H(+)"],["RHEA%3A49760","EDTA + FMNH2 + O2 = ethylenediaminetriacetate + FMN + glyoxylate + H2O + 2 H(+)"]],"b":[["mapped/Edta.yaml","EDTA"]]},{"id":"CHEBI:67135","l":"2-nitroimidazole","na":3,"nb":1,"a":[["EC%3A3.5.99.9","2-nitroimidazole nitrohydrolase"],["RHEA%3A34271","2-nitroimidazole + H2O = 1,3-dihydro-2H-imidazol-2-one + nitrite + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Azomycin.yaml","Azomycin"]]},{"id":"CHEBI:67410","l":"","na":3,"nb":1,"a":[["RHEA%3A62588","2-hydroxy-2-(4-hydroxyphenyl)acetate + H(+) = 4-hydroxybenzyl alcohol + CO2"],["RHEA%3A56980","4-hydroxybenzyl alcohol + 2 oxidized [azurin] = 2 reduced [azurin] + 4-hydroxybenzaldehyde + 2 H(+)"],["RHEA%3A56976","4-methylphenol + 2 oxidized [azurin] + H2O = 4-hydroxybenzyl alcohol + 2 reduced [azurin] + 2 H(+)"]],"b":[["mapped/P-Hydroxybenzyl_alcohol.yaml","p-Hydroxybenzyl alcohol"]]},{"id":"CHEBI:72813","l":"exopolysaccharide","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.18","The Outer Membrane Auxiliary (OMA) Protein Family"]],"b":[["mapped/Exopolysaccharide.yaml","Exopolysaccharide"]]},{"id":"CHEBI:8113","l":"","na":3,"nb":1,"a":[["EC%3A2.4.1.357","phlorizin synthase"],["RHEA%3A51576","phloretin + UDP-alpha-D-glucose = phlorizin + UDP + H(+)"],["RHEA%3A69639","phlorizin + H2O = phloretin + beta-D-glucose"]],"b":[["mapped/Phloridzin.yaml","Phloridzin"]]},{"id":"CHEBI:8337","l":"","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.126","The Fatty Acid Exporter (FAX) Family"],["TCDB%3A9.A.24","The Mitochondrial Cholesterol/Porphyrin/5-aminolevulinic acid Uptake Translocator Protein (TSPO) Family"]],"b":[["mapped/Porphyrin.yaml","Porphyrin"]]},{"id":"CHEBI:8630","l":"","na":3,"nb":1,"a":[["EC%3A2.1.1.240","trans-resveratrol di-O-methyltransferase"],["RHEA%3A32107","3-methoxy-4',5-dihydroxy-trans-stilbene + S-adenosyl-L-methionine = pterostilbene + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A32103","trans-resveratrol + 2 S-adenosyl-L-methionine = pterostilbene + 2 S-adenosyl-L-homocysteine + 2 H(+)"]],"b":[["mapped/Pterostilbene.yaml","Pterostilbene"]]},{"id":"CHEBI:9215","l":"spectinomycin","na":3,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["proteintraitsmech%3ABIOLIP_SCM","SCM-binding site"]],"b":[["mapped/Spectinomycin.yaml","Spectinomycin"]]},{"id":"CHEBI:100246","l":"norfloxacin","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["mapped/Norfloxacin.yaml","Norfloxacin"]]},{"id":"CHEBI:10357","l":"","na":2,"nb":1,"a":[["EC%3A4.2.3.57","(-)-beta-caryophyllene synthase"],["RHEA%3A28294","(2E,6E)-farnesyl diphosphate = (-)-(E)-beta-caryophyllene + diphosphate"]],"b":[["mapped/Caryophyllene_T.yaml","Caryophyllene [T(-)]"]]},{"id":"CHEBI:14336","l":"glycerol 1-phosphate","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/DL-Glycerol_1-phosphate_Sodium_Salt_Hydrate.yaml","DL-Glycerol 1-phosphate sodium salt hydrate"]]},{"id":"CHEBI:15346","l":"coenzyme A","na":2,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15346","requires coenzyme A"],["proteintraitsmech%3ABIOLIP_COA","COA-binding site"]],"b":[["mapped/Coenzyme_A.yaml","Coenzyme A"]]},{"id":"CHEBI:15366","l":"acetic acid","na":2,"nb":1,"a":[["MCSA%3A431","acetylxylan esterase"],["MCSA%3A996","Peptidoglycan-N-acetylglucosamine deacetylase Bc1960"]],"b":[["mapped/Acetic_Acid.yaml","Acetic acid"]]},{"id":"CHEBI:15377)","l":"","na":2,"nb":1,"a":[["RHEA%3A17561","acetylcholine + H2O = choline + acetate + H(+)"],["RHEA%3A50240","[hyaluronan](n) = n 3-(4-deoxy-beta-D-gluc-4-enuronosyl)-N-acetyl-D-glucosamine + H2O"]],"b":[["mapped/Distilled_Water.yaml","Distilled water"]]},{"id":"CHEBI:15420","l":"","na":2,"nb":1,"a":[["EC%3A1.1.1.144","perillyl-alcohol dehydrogenase"],["RHEA%3A10664","perillyl alcohol + NAD(+) = perillyl aldehyde + NADH + H(+)"]],"b":[["mapped/Perillyl_Alcohol.yaml","Perillyl Alcohol"]]},{"id":"CHEBI:15748","l":"D-glucuronate","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.25","The Outer Membrane Porin (Opr) Family"]],"b":[["mapped/D-glucuronate.yaml","D-glucuronate"]]},{"id":"CHEBI:15767","l":"","na":2,"nb":1,"a":[["EC%3A4.5.1.3","dichloromethane dehalogenase"],["RHEA%3A15397","dichloromethane + H2O = formaldehyde + 2 chloride + 2 H(+)"]],"b":[["mapped/Methylene_Chloride.yaml","methylene chloride"]]},{"id":"CHEBI:15824","l":"D-fructose","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"]],"b":[["mapped/D-fructose.yaml","D-Fructose"]]},{"id":"CHEBI:15866","l":"","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A4.A.6","The PTS Mannose-Fructose-Sorbose (Man) Family"]],"b":[["mapped/2-Deoxy-D-glucose.yaml","2-Deoxy-D-glucose"]]},{"id":"CHEBI:15930","l":"atrazine","na":2,"nb":1,"a":[["EC%3A3.8.1.8","atrazine chlorohydrolase"],["RHEA%3A11312","atrazine + H2O = hydroxyatrazine + chloride + H(+)"]],"b":[["mapped/2-chloro-4ethylamino-6-isopropylamino-135-triazine.yaml","2-chloro-4ethylamino-6-isopropylamino-1,3,5-triazine"]]},{"id":"CHEBI:15946","l":"","na":2,"nb":1,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["proteintraitsmech%3ABIOLIP_F6R","F6R-binding site"]],"b":[["mapped/Fructose-6-phosphate.yaml","Fructose-6-phosphate"]]},{"id":"CHEBI:15987","l":"","na":2,"nb":1,"a":[["EC%3A3.12.1.1","trithionate hydrolase"],["RHEA%3A21884","trithionate + H2O = thiosulfate + sulfate + H(+)"]],"b":[["mapped/Trithionate.yaml","Trithionate"]]},{"id":"CHEBI:16011","l":"","na":2,"nb":1,"a":[["EC%3A3.1.1.60","bis(2-ethylhexyl)phthalate esterase"],["RHEA%3A15529","bis(2-ethylhexyl)phthalate + H2O = 2-ethylhexan-1-ol + 2-ethylhexyl phthalate + H(+)"]],"b":[["mapped/2-Ethylhexanol.yaml","2-Ethylhexanol"]]},{"id":"CHEBI:16077","l":"","na":2,"nb":1,"a":[["TCDB%3A1.B.96","The Chloroplast Outer Envelope Porin 40 (OEP40) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["mapped/Glucose_1-phosphate.yaml","Glucose 1-phosphate"]]},{"id":"CHEBI:16119","l":"shikimic acid","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_SKM","SKM-binding site"]],"b":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Shikimic_Acid.yaml","Shikimic Acid"]]},{"id":"CHEBI:16133","l":"not class CHEBI:23495","na":2,"nb":1,"a":[["EC%3A1.1.1.163","cyclopentanol dehydrogenase"],["RHEA%3A11728","cyclopentanol + NAD(+) = cyclopentanone + NADH + H(+)"]],"b":[["mapped/CyclopentanolCO2.yaml","Cyclopentanol+CO2"]]},{"id":"CHEBI:16136","l":"hydrogen sulfide","na":1,"nb":2,"a":[["MCSA%3A398","sulfite reductase (NADPH)"]],"b":[["mapped/Hydrogen_Sulfide.yaml","Hydrogen sulfide"],["mapped/Sulfur.yaml","Sulfur"]]},{"id":"CHEBI:16196","l":"oleic acid","na":2,"nb":1,"a":[["TCDB%3A9.A.76","The Omega3 Fatty Acid Desaturase 3/Putative Transporter (FAD3) Family"],["proteintraitsmech%3ABIOLIP_OLA","OLA-binding site"]],"b":[["mapped/Oleic_Acid.yaml","Oleic acid"]]},{"id":"CHEBI:16324","l":"","na":2,"nb":1,"a":[["EC%3A1.10.3.6","rifamycin-B oxidase"],["RHEA%3A11292","rifamycin B + O2 + 2 H(+) = rifamycin O + H2O2"]],"b":[["mapped/Rifamycin_O.yaml","Rifamycin O"]]},{"id":"CHEBI:16349","l":"L-citrulline","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_CIR","CIR-binding site"]],"b":[["mapped/L-citrulline.yaml","L-Citrulline"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:16410","l":"pyridoxamine","na":2,"nb":1,"a":[["GO%3A0070281","pyridoxamine binding"],["proteintraitsmech%3ABIOLIP_PXM","PXM-binding site"]],"b":[["mapped/Pyridoxamine.yaml","Pyridoxamine"]]},{"id":"CHEBI:16489","l":"","na":2,"nb":1,"a":[["EC%3A3.5.4.11","pterin deaminase"],["RHEA%3A11904","2-amino-4-hydroxypteridine + H2O + H(+) = 2,4-dihydroxypteridine + NH4(+)"]],"b":[["mapped/Lumazine.yaml","Lumazine"]]},{"id":"CHEBI:16540","l":"","na":2,"nb":1,"a":[["EC%3A1.14.99.26","2-hydroxypyridine 5-monooxygenase"],["RHEA%3A16973","2-hydroxypyridine + AH2 + O2 = 2,5-dihydroxypyridine + A + H2O"]],"b":[["mapped/2-Hydroxypyridine.yaml","2-Hydroxypyridine"]]},{"id":"CHEBI:16545","l":"","na":2,"nb":1,"a":[["EC%3A1.14.13.16","cyclopentanone monooxygenase"],["RHEA%3A15737","cyclopentanone + NADPH + O2 + H(+) = 5-valerolactone + NADP(+) + H2O"]],"b":[["mapped/Valerolactone.yaml","Valerolactone"]]},{"id":"CHEBI:16610","l":"spermidine","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_SPD","SPD-binding site"]],"b":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/spermidine.yaml","spermidine"]]},{"id":"CHEBI:16716","l":"","na":2,"nb":1,"a":[["EC%3A1.14.12.3","benzene 1,2-dioxygenase"],["RHEA%3A13813","benzene + NADH + O2 + H(+) = cis-1,2-dihydrobenzene-1,2-diol + NAD(+)"]],"b":[["mapped/Benzene.yaml","Benzene"]]},{"id":"CHEBI:16991","l":"deoxyribonucleic acid","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_DNA","DNA-binding site"]],"b":[["mapped/Deoxyribonucleic_Acid_From_Herring_Sperm.yaml","Deoxyribonucleic acid from herring sperm"],["mapped/Fish-sperm_Dna.yaml","Fish-Sperm DNA"]]},{"id":"CHEBI:16995","l":"oxalic acid","na":2,"nb":1,"a":[["TCDB%3A2.A.53","The Sulfate Permease (SulP) Family"],["proteintraitsmech%3ABIOLIP_OXD","OXD-binding site"]],"b":[["mapped/Oxalic_Acid.yaml","Oxalic Acid"]]},{"id":"CHEBI:17012","l":"N-acetylneuraminic acid","na":2,"nb":1,"a":[["MCSA%3A835","exo-alpha-sialidase (GH33 Family)"],["MCSA%3A828","exo-alpha-sialidase (GH34 Family)"]],"b":[["mapped/N-acetylneuraminic_Acid.yaml","N-acetylneuraminic acid"]]},{"id":"CHEBI:17019","l":"(R)-amygdalin","na":2,"nb":1,"a":[["EC%3A3.2.1.117","amygdalin beta-glucosidase"],["RHEA%3A14177","(R)-amygdalin + H2O = (R)-prunasin + D-glucose"]],"b":[["mapped/%28R%29-amygdalin.yaml","(R)-amygdalin"]]},{"id":"CHEBI:17154)","l":"","na":2,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17154","requires nicotinamide"],["RHEA%3A14545","nicotinamide + H2O = nicotinate + NH4(+)"]],"b":[["mapped/Nicotinamide.yaml","Nicotinamide"]]},{"id":"CHEBI:17300","l":"tetrachloroethene","na":2,"nb":1,"a":[["EC%3A1.21.99.5","tetrachloroethene reductive dehalogenase"],["RHEA%3A20353","trichloroethene + chloride + A + H(+) = tetrachloroethene + AH2"]],"b":[["mapped/Tetrachloroethene.yaml","Tetrachloroethene"]]},{"id":"CHEBI:17309","l":"pectin","na":1,"nb":2,"a":[["MCSA%3A681","pectinesterase"]],"b":[["mapped/PY-pectin.yaml","PY-pectin"],["mapped/Pectin.yaml","Pectin"]]},{"id":"CHEBI:17315","l":"D-glucosamine","na":2,"nb":1,"a":[["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"],["TCDB%3A4.A.6","The PTS Mannose-Fructose-Sorbose (Man) Family"]],"b":[["mapped/D-glucosamine.yaml","D-glucosamine"]]},{"id":"CHEBI:17361","l":"","na":2,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_C","C-binding site"],["proteintraitsmech%3ABIOLIP_C5P","C5P-binding site"]],"b":[["mapped/Cytidine_5-Monophosphate.yaml","Cytidine 5'-Monophosphate"]]},{"id":"CHEBI:17362","l":"","na":2,"nb":1,"a":[["EC%3A1.3.99.17","quinoline 2-oxidoreductase"],["RHEA%3A17749","quinoline + A + H2O = quinolin-2(1H)-one + AH2"]],"b":[["mapped/Quinoline.yaml","Quinoline"]]},{"id":"CHEBI:17533","l":"N-acetyl-L-glutamic acid","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["proteintraitsmech%3ABIOLIP_NLG","NLG-binding site"]],"b":[["mapped/N-Acetyl-L-Glutamic_Acid.yaml","N-Acetyl-L-Glutamic Acid"]]},{"id":"CHEBI:17549","l":"","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.A.24","The Mitochondrial Cholesterol/Porphyrin/5-aminolevulinic acid Uptake Translocator Protein (TSPO) Family"]],"b":[["mapped/5-Aminolevulinic_Acid.yaml","5-Aminolevulinic acid"]]},{"id":"CHEBI:17590","l":"octane","na":2,"nb":1,"a":[["EC%3A1.14.15.3","alkane 1-monooxygenase"],["RHEA%3A19341","octane + 2 reduced [rubredoxin] + O2 + 2 H(+) = 2 oxidized [rubredoxin] + octan-1-ol + H2O"]],"b":[["mapped/Octane.yaml","octane"]]},{"id":"CHEBI:17747","l":"","na":2,"nb":1,"a":[["EC%3A3.1.1.60","bis(2-ethylhexyl)phthalate esterase"],["RHEA%3A15529","bis(2-ethylhexyl)phthalate + H2O = 2-ethylhexan-1-ol + 2-ethylhexyl phthalate + H(+)"]],"b":[["mapped/Bis%282-ethylhexyl%29phthalate.yaml","Bis(2-ethylhexyl)phthalate"]]},{"id":"CHEBI:17814","l":"","na":2,"nb":1,"a":[["EC%3A2.4.1.172","salicyl-alcohol beta-D-glucosyltransferase"],["RHEA%3A11512","salicyl alcohol + UDP-alpha-D-glucose = salicin + UDP + H(+)"]],"b":[["mapped/Salicin.yaml","Salicin"]]},{"id":"CHEBI:17901","l":"","na":2,"nb":1,"a":[["EC%3A3.1.1.33","6-acetylglucose deacetylase"],["RHEA%3A18485","6-acetyl-D-glucose + H2O = D-glucose + acetate + H(+)"]],"b":[["mapped/6-O-Acetyl-D-glucose.yaml","6-O-Acetyl-D-glucose"]]},{"id":"CHEBI:17905","l":"coenzyme M","na":2,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17905","requires coenzyme M"],["proteintraitsmech%3ABIOLIP_COM","COM-binding site"]],"b":[["mapped/2-mercaptoethanesulfonate.yaml","2-Mercaptoethanesulfonate"]]},{"id":"CHEBI:17939","l":"puromycin","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_PUY","PUY-binding site"]],"b":[["mapped/Puromycin.yaml","Puromycin"]]},{"id":"CHEBI:18012","l":"fumaric acid","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_FUM","FUM-binding site"]],"b":[["mapped/Corn_Steep_Liquor_Glucose_Fumarate.yaml","Corn Steep Liquor + Glucose + Fumarate"],["mapped/Fumaric_Acid.yaml","Fumaric acid"]]},{"id":"CHEBI:18095","l":"trans-4-hydroxy-L-proline","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["proteintraitsmech%3ABIOLIP_HYP","HYP-binding site"]],"b":[["mapped/Hydroxy-l-proline.yaml","Hydroxy-L-Proline"]]},{"id":"CHEBI:18101","l":"4-hydroxyphenylacetic acid","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_4HP","4HP-binding site"]],"b":[["mapped/4-hydroxyphenyl_Acetic_Acid.yaml","4-Hydroxyphenyl acetic acid"]]},{"id":"CHEBI:18132","l":"","na":2,"nb":1,"a":[["MCSA%3A27","phospholipase C"],["proteintraitsmech%3ABIOLIP_PC","PC-binding site"]],"b":[["mapped/Phosphocholine.yaml","Phosphocholine"]]},{"id":"CHEBI:18293","l":"","na":2,"nb":1,"a":[["EC%3A2.1.1.69","5-hydroxyfuranocoumarin 5-O-methyltransferase"],["RHEA%3A11808","bergaptol + S-adenosyl-L-methionine = bergapten + S-adenosyl-L-homocysteine"]],"b":[["mapped/Bergapten.yaml","Bergapten"]]},{"id":"CHEBI:18320","l":"1,4-dithiothreitol","na":2,"nb":1,"a":[["EC%3A1.17.4.5","vitamin-K-epoxide reductase (warfarin-insensitive)"],["RHEA%3A21560","3-hydroxy-2-methyl-3-phytyl-2,3-dihydro-1,4-naphthoquinone + oxidized dithiothreitol = 1,4-dithiothreitol + 2,3-epoxyphylloquinone"]],"b":[["mapped/Dl-dithiothreitol.yaml","DL-Dithiothreitol"]]},{"id":"CHEBI:18405","l":"","na":2,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18405","requires pyridoxal 5'-phosphate"],["proteintraitsmech%3ABIOLIP_PLP","PLP-binding site"]],"b":[["mapped/Pyridoxal_Phosphate.yaml","Pyridoxal phosphate"]]},{"id":"CHEBI:18411","l":"","na":2,"nb":1,"a":[["EC%3A2.4.1.31","laminaribiose phosphorylase"],["RHEA%3A16617","beta-D-glucosyl-(1->3)-D-glucose + phosphate = alpha-D-glucose 1-phosphate + D-glucose"]],"b":[["mapped/Laminaribiose.yaml","Laminaribiose"]]},{"id":"CHEBI:194094","l":"(E)-4-coumaric acid methyl ester","na":2,"nb":1,"a":[["RHEA%3A74879","(E)-4-coumarate + S-adenosyl-L-methionine = (E)-4-coumaric acid methyl ester + S-adenosyl-L-homocysteine"],["RHEA%3A82267","(E)-4-coumaric acid methyl ester + reduced [NADPH--hemoprotein reductase] + O2 = methyl (E)-caffeate + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["mapped/Methyl-trans-p-coumarate.yaml","methyl-trans-p-coumarate"]]},{"id":"CHEBI:195418","l":"","na":2,"nb":1,"a":[["RHEA%3A76751","5-hydroxydodecanoate + H(+) = delta-dodecalactone + H2O"],["RHEA%3A76723","dodecanoate + reduced [NADPH--hemoprotein reductase] + O2 = 5-hydroxydodecanoate + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["mapped/5-Hydroxydodecanoate.yaml","5-Hydroxydodecanoate"]]},{"id":"CHEBI:20067","l":"3-hydroxybutyric acid","na":1,"nb":2,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/3-hydroxybutyric_Acid.yaml","3-hydroxybutyric acid"],["mapped/Poly_3-hydroxybutyric_Acid.yaml","Poly(3-hydroxybutyric acid)"]]},{"id":"CHEBI:22605","l":"","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A4.A.5","The PTS Galactitol (Gat) Family"]],"b":[["mapped/Arabinitol.yaml","Arabinitol"]]},{"id":"CHEBI:22660","l":"aspartic acid","na":1,"nb":2,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"]],"b":[["mapped/DL-Tyrosine.yaml","DL-Tyrosine"],["mapped/Dl-aspartic_Acid.yaml","DL-aspartic acid"]]},{"id":"CHEBI:22868","l":"bile salt","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["mapped/Bile_Salts.yaml","Bile salts"]]},{"id":"CHEBI:23066","l":"","na":2,"nb":1,"a":[["TCDB%3A8.A.212","The d-Amino Acid Peptidase (dAAP) Family"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]],"b":[["mapped/Cephalosporin.yaml","Cephalosporin"]]},{"id":"CHEBI:25548","l":"nitrilotriacetate(3-)","na":2,"nb":1,"a":[["EC%3A1.14.14.10","nitrilotriacetate monooxygenase"],["RHEA%3A31359","nitrilotriacetate + FMNH2 + O2 = aminodiacetate + FMN + glyoxylate + H2O"]],"b":[["mapped/Nitrilotriacetate.yaml","Nitrilotriacetate"]]},{"id":"CHEBI:25941","l":"peroxynitrite","na":2,"nb":1,"a":[["RHEA%3A63116","peroxynitrite = nitrate"],["RHEA%3A51188","superoxide + nitric oxide = peroxynitrite"]],"b":[["mapped/Peroxynitrite.yaml","peroxynitrite"]]},{"id":"CHEBI:2682","l":"amphotericin B","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_4UH","4UH-binding site"]],"b":[["mapped/Amphotericin_B.yaml","Amphotericin B"],["unmapped/Amphotericin.yaml","Amphotericin"]]},{"id":"CHEBI:27446","l":"phenoxymethylpenicillin","na":2,"nb":1,"a":[["MCSA%3A241","penicillin amidase (peptidase C59 family)"],["proteintraitsmech%3ABIOLIP_PNV","PNV-binding site"]],"b":[["mapped/Phenoxymethylpenicillin.yaml","Phenoxymethylpenicillin"]]},{"id":"CHEBI:27518","l":"acetylene","na":2,"nb":1,"a":[["EC%3A4.2.1.112","acetylene hydratase"],["RHEA%3A17885","acetaldehyde = acetylene + H2O"]],"b":[["mapped/Acetylene.yaml","Acetylene"]]},{"id":"CHEBI:27570","l":"histidine","na":1,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["mapped/Dl-histidine.yaml","DL-Histidine"],["mapped/L-histidine.yaml","L-Histidine"]]},{"id":"CHEBI:27592","l":"ectoine","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_4CS","4CS-binding site"]],"b":[["mapped/Ectoine.yaml","Ectoine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:27641","l":"cycloheximide","na":2,"nb":1,"a":[["RHEA%3A61936","cycloheximide(in) + ATP + H2O = cycloheximide(out) + ADP + phosphate + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Cycloheximid.yaml","Cycloheximid"]]},{"id":"CHEBI:27902","l":"tetracycline","na":2,"nb":1,"a":[["ARO%3A3000186","tet(M)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Tetracycline.yaml","Tetracycline"]]},{"id":"CHEBI:28032","l":"","na":2,"nb":1,"a":[["EC%3A1.14.13.84","4-hydroxyacetophenone monooxygenase"],["RHEA%3A22916","4'-hydroxyacetophenone + NADPH + O2 + H(+) = 4-acetoxyphenol + NADP(+) + H2O"]],"b":[["mapped/4-Hydroxyacetophenone.yaml","4-Hydroxyacetophenone"]]},{"id":"CHEBI:28177","l":"","na":2,"nb":1,"a":[["RHEA%3A36279","theophylline + NADH + O2 + H(+) = 3-methylxanthine + formaldehyde + NAD(+) + H2O"],["RHEA%3A36275","theophylline + NADPH + O2 + H(+) = 3-methylxanthine + formaldehyde + NADP(+) + H2O"]],"b":[["mapped/Theophylline.yaml","Theophylline"]]},{"id":"CHEBI:28235","l":"","na":2,"nb":1,"a":[["RHEA%3A77447","4-methoxybenzaldehyde + hydrogen cyanide = (2S)-2-hydroxy-2-(4-methoxyphenyl)acetonitrile"],["RHEA%3A68900","4-methoxybenzoate + ATP + NADPH + H(+) = 4-methoxybenzaldehyde + AMP + diphosphate + NADP(+)"]],"b":[["mapped/4-Anisaldehyde.yaml","4-Anisaldehyde"]]},{"id":"CHEBI:28488","l":"m-xylene","na":2,"nb":1,"a":[["EC%3A1.14.15.26","toluene methyl-monooxygenase"],["RHEA%3A51600","m-xylene + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = 3-methylbenzyl alcohol + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"]],"b":[["mapped/M-xylene.yaml","m-Xylene"]]},{"id":"CHEBI:28775","l":"","na":2,"nb":1,"a":[["EC%3A3.2.1.168","hesperidin 6-O-alpha-L-rhamnosyl-beta-D-glucosidase"],["RHEA%3A28134","(2S)-hesperidin + H2O = rutinose + (2S)-hesperetin"]],"b":[["mapped/Hesperidin.yaml","Hesperidin"]]},{"id":"CHEBI:28817","l":"dodecane","na":2,"nb":1,"a":[["RHEA%3A76739","dodecane + reduced [NADPH--hemoprotein reductase] + O2 = 5-dodecanol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["proteintraitsmech%3ABIOLIP_D12","D12-binding site"]],"b":[["mapped/Dodecane.yaml","dodecane"]]},{"id":"CHEBI:28821","l":"","na":2,"nb":1,"a":[["EC%3A2.3.1.145","piperidine N-piperoyltransferase"],["RHEA%3A14561","piperidine + (E,E)-piperoyl-CoA = piperine + CoA + H(+)"]],"b":[["mapped/Piperine.yaml","Piperine"]]},{"id":"CHEBI:28855","l":"","na":2,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_28855","requires enterobactin"],["proteintraitsmech%3ABIOLIP_EB4","EB4-binding site"]],"b":[["mapped/Enterobactin.yaml","Enterobactin"]]},{"id":"CHEBI:29007","l":"ceftriaxone","na":2,"nb":1,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"]],"b":[["mapped/Ceftriaxone.yaml","Ceftriaxone"]]},{"id":"CHEBI:29016","l":"arginine","na":2,"nb":1,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["mapped/Arginine.yaml","Arginine"]]},{"id":"CHEBI:29073","l":"L-ascorbic acid","na":2,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29073","requires L-ascorbic acid"],["proteintraitsmech%3ABIOLIP_ASC","ASC-binding site"]],"b":[["mapped/L-ascorbic_Acid.yaml","L-Ascorbic acid"]]},{"id":"CHEBI:2955","l":"azithromycin","na":2,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["proteintraitsmech%3ABIOLIP_ZIT","ZIT-binding site"]],"b":[["mapped/Azithromycin.yaml","Azithromycin"]]},{"id":"CHEBI:29673","l":"rifamycin SV","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]],"b":[["mapped/Rifamycin_Sv.yaml","Rifamycin Sv"]]},{"id":"CHEBI:29994","l":"","na":2,"nb":1,"a":[["TCDB%3A2.A.81","The Aspartate:Alanine Exchanger (AAEx) Family"],["TCDB%3A2.A.23","The Dicarboxylate/Amino Acid:Cation (Na+ or H+) Symporter (DAACS) Family"]],"b":[["mapped/D-aspartate.yaml","D-aspartate"]]},{"id":"CHEBI:30248","l":"beta-D-Gal-(1->3)-beta-D-GlcNAc-(1->3)-beta-D-Gal-(1->4)-D-Glc","na":2,"nb":1,"a":[["EC%3A3.2.1.140","lacto-N-biosidase"],["RHEA%3A21568","beta-D-Gal-(1->3)-beta-D-GlcNAc-(1->3)-beta-D-Gal-(1->4)-D-Glc + H2O = beta-D-galactosyl-(1->3)-N-acetyl-D-glucosamine + lactose"]],"b":[["mapped/Lacto-N-tetraose.yaml","Lacto-N-tetraose"]]},{"id":"CHEBI:30295","l":"","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.A.8","The Major Intrinsic Protein (MIP) Family"]],"b":[["mapped/Antimonate.yaml","Antimonate"]]},{"id":"CHEBI:30746","l":"benzoic acid","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_BEZ","BEZ-binding site"]],"b":[["mapped/4_Carbon_Mix.yaml","4 Carbon Mix"],["mapped/Benzoic_Acid.yaml","benzoic acid"]]},{"id":"CHEBI:30751","l":"formic acid","na":2,"nb":1,"a":[["MCSA%3A38","GTP cyclohydrolase I"],["proteintraitsmech%3ABIOLIP_FMT","FMT-binding site"]],"b":[["mapped/Formic_Acid.yaml","Formic acid"]]},{"id":"CHEBI:30772","l":"butyric acid","na":2,"nb":1,"a":[["MCSA%3A900","para-nitrobenzyl esterase"],["proteintraitsmech%3ABIOLIP_BUA","BUA-binding site"]],"b":[["mapped/Butyric_Acid.yaml","Butyric acid"]]},{"id":"CHEBI:30778","l":"gallic acid","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_GDE","GDE-binding site"]],"b":[["mapped/Gallate_Formate.yaml","Gallate + Formate"],["mapped/Gallic_Acid.yaml","Gallic Acid"]]},{"id":"CHEBI:30832","l":"","na":2,"nb":1,"a":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["proteintraitsmech%3ABIOLIP_0L1","0L1-binding site"]],"b":[["mapped/Adipic_Acid.yaml","Adipic acid"]]},{"id":"CHEBI:320061","l":"","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_GYP","GYP-binding site"]],"b":[["mapped/Methyl_Alpha-D-glucopyranoside.yaml","Methyl alpha-D-glucopyranoside"]]},{"id":"CHEBI:32528","l":"","na":2,"nb":1,"a":[["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"],["proteintraitsmech%3ABIOLIP_OTU","OTU-binding site"]],"b":[["mapped/D-_-turanose.yaml","D-(+)-Turanose"]]},{"id":"CHEBI:3374","l":"capsaicin","na":2,"nb":1,"a":[["EC%3A2.3.2.35","capsaicin synthase"],["RHEA%3A63832","vanillylamine + (6E)-8-methylnon-6-enoyl-CoA = capsaicin + CoA + H(+)"]],"b":[["mapped/Capsaicin.yaml","capsaicin"]]},{"id":"CHEBI:3393","l":"carbenicillin","na":2,"nb":1,"a":[["TCDB%3A1.B.25","The Outer Membrane Porin (Opr) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["mapped/Carbenicillin.yaml","Carbenicillin"]]},{"id":"CHEBI:35687","l":"","na":2,"nb":1,"a":[["RHEA%3A79327","butan-2-ol + 2 Fe(III)-[cytochrome c] = butan-2-one + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A64560","butan-2-ol + NAD(+) = butan-2-one + NADH + H(+)"]],"b":[["mapped/2-butanolCO2.yaml","2-butanol+CO2"]]},{"id":"CHEBI:36218","l":"beta-lactose","na":2,"nb":1,"a":[["RHEA%3A28659","beta-lactose + H2O = beta-D-galactose + beta-D-glucose"],["RHEA%3A59352","beta-lactose + O2 = lactobiono-1,5-lactone + H2O2"]],"b":[["mapped/Beta-lactose.yaml","Beta-Lactose"]]},{"id":"CHEBI:36592","l":"","na":2,"nb":1,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["proteintraitsmech%3ABIOLIP_BAQ","BAQ-binding site"]],"b":[["mapped/Butyrolactam.yaml","Butyrolactam"]]},{"id":"CHEBI:37166","l":"xylan","na":1,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["mapped/Xylan.yaml","Xylan"],["unmapped/Larchwood_Xylan.yaml","Larchwood xylan"]]},{"id":"CHEBI:3732","l":"clarithromycin","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["mapped/Clarithromycin.yaml","Clarithromycin"]]},{"id":"CHEBI:3764","l":"clotrimazole","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["mapped/Clotrimazole.yaml","Clotrimazole"]]},{"id":"CHEBI:39150","l":"4-oxopentanoate","na":2,"nb":1,"a":[["RHEA%3A75923","(S)-4-aminopentanoate + NAD(+) + H2O = 4-oxopentanoate + NH4(+) + NADH + H(+)"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["mapped/4-oxopentanoate.yaml","4-oxopentanoate"]]},{"id":"CHEBI:40303","l":"","na":2,"nb":1,"a":[["RHEA%3A63040","lovastatin + H2O = lovastatin carboxylate + H(+)"],["RHEA%3A62748","lovastatin + H2O = monacolin J + (S)-2-methylbutanoate + H(+)"]],"b":[["mapped/Lovastatin.yaml","Lovastatin"]]},{"id":"CHEBI:41131","l":"crotonic acid","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_BEO","BEO-binding site"]],"b":[["mapped/Crotonic_Acid.yaml","Crotonic acid"],["mapped/Na-crotonate.yaml","Na-crotonate"]]},{"id":"CHEBI:44185","l":"","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["proteintraitsmech%3ABIOLIP_MTX","MTX-binding site"]],"b":[["mapped/Methotrexate.yaml","Methotrexate"]]},{"id":"CHEBI:45296","l":"hexadecane","na":2,"nb":1,"a":[["RHEA%3A77375","heptadecanoate + hnu + H(+) = hexadecane + CO2"],["RHEA%3A76747","hexadecane + reduced [NADPH--hemoprotein reductase] + O2 = 9-hexadecanol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["mapped/Hexadecane.yaml","Hexadecane"]]},{"id":"CHEBI:45373","l":"sulfanilamide","na":2,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["proteintraitsmech%3ABIOLIP_SAN","SAN-binding site"]],"b":[["mapped/Sulfanilamide.yaml","Sulfanilamide"]]},{"id":"CHEBI:4608","l":"","na":2,"nb":1,"a":[["EC%3A1.8.1.21","dissimilatory dimethyldisulfide reductase"],["RHEA%3A59056","2 methanethiol + NAD(+) = dimethyl disulfide + NADH + H(+)"]],"b":[["mapped/Dimethyl_Disulfide.yaml","Dimethyl Disulfide"]]},{"id":"CHEBI:47966","l":"aldehydo-N-acetylmuramic acid","na":1,"nb":2,"a":[["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"]],"b":[["mapped/N-acetyl-muramic_Acid.yaml","n-Acetyl-muramic acid"],["mapped/N-acetylmuramic_Acid.yaml","N-acetylmuramic acid"]]},{"id":"CHEBI:4828","l":"","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/L-_-ergothioneine.yaml","L-(+)-Ergothioneine"]]},{"id":"CHEBI:48430","l":"4-methyl-2-oxopentanoic acid","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_COI","COI-binding site"]],"b":[["mapped/4-Methyl-2-oxopentanoic_Acid_Sodium_Salt.yaml","4-Methyl-2-oxopentanoic acid sodium salt"],["mapped/4-Methyl-2-oxovaleric_Acid.yaml","4-Methyl-2-oxovaleric acid"]]},{"id":"CHEBI:4867","l":"","na":2,"nb":1,"a":[["EC%3A2.1.1.146","(iso)eugenol O-methyltransferase"],["RHEA%3A80583","chavicol + S-adenosyl-L-methionine = O-methylchavicol + S-adenosyl-L-homocysteine + H(+)"]],"b":[["mapped/Estragole.yaml","Estragole"]]},{"id":"CHEBI:4877","l":"ethambutol","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_95E","95E-binding site"]],"b":[["mapped/Ethambutol.yaml","Ethambutol"]]},{"id":"CHEBI:53423","l":"polysorbate 40","na":2,"nb":1,"a":[["TCDB%3A1.A.46","The Anion Channel-forming Bestrophin (Bestrophin) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["mapped/Tween_40.yaml","Tween 40"]]},{"id":"CHEBI:546840","l":"","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_9PG","9PG-binding site"]],"b":[["mapped/4-nitrophenyl_Alpha-D-galactoside.yaml","4-nitrophenyl Alpha-D-galactoside"]]},{"id":"CHEBI:58242","l":"Renilla luciferyl sulfate(1-","na":2,"nb":1,"a":[["EC%3A2.8.2.10","Renilla-luciferin sulfotransferase"],["RHEA%3A20481","coelenterazine h + 3'-phosphoadenylyl sulfate = luciferyl sulfate + adenosine 3',5'-bisphosphate + H(+)"]],"b":[["mapped/Kno3.yaml","KNO3"]]},{"id":"CHEBI:59062","l":"","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["mapped/Polymyxin.yaml","Polymyxin"]]},{"id":"CHEBI:61448","l":"isopropyl beta-D-thiogalactopyranoside","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_IPT","IPT-binding site"]],"b":[["mapped/IPTG.yaml","IPTG"]]},{"id":"CHEBI:64552","l":"2-hydroxybutyrate","na":2,"nb":1,"a":[["RHEA%3A52608","2-hydroxybutanoate + NADP(+) = 2-oxobutanoate + NADPH + H(+)"],["TCDB%3A2.A.21","The Solute:Sodium Symporter (SSS) Family"]],"b":[["mapped/2-hydroxybutyrate.yaml","2-hydroxybutyrate"]]},{"id":"CHEBI:6570","l":"lupeol","na":2,"nb":1,"a":[["EC%3A5.4.99.41","lupeol synthase"],["RHEA%3A31383","(S)-2,3-epoxysqualene = lupeol"]],"b":[["mapped/Lupeol.yaml","Lupeol"]]},{"id":"CHEBI:71321","l":"","na":2,"nb":1,"a":[["RHEA%3A35103","fusidate(in) = fusidate(out)"],["RHEA%3A35099","fusidate(in) + H(+)(out) = fusidate(out) + H(+)(in)"]],"b":[["mapped/Fusidate.yaml","Fusidate"]]},{"id":"CHEBI:75456","l":"2-stearoylglycerol","na":2,"nb":1,"a":[["RHEA%3A38519","1-(9Z-octadecenoyl)-2-octadecanoyl-sn-glycerol + H2O = 2-octadecanoylglycerol + (9Z)-octadecenoate + H(+)"],["proteintraitsmech%3ABIOLIP_2JT","2JT-binding site"]],"b":[["mapped/Glycerol_Monostearate.yaml","Glycerol monostearate"]]},{"id":"CHEBI:7731","l":"","na":2,"nb":1,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["mapped/Ofloxacin.yaml","Ofloxacin"]]},{"id":"CHEBI:78018","l":"dodecylphosphocholine","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_DPV","DPV-binding site"]],"b":[["mapped/Bacto-tryptone.yaml","Bacto-tryptone"],["mapped/Trypticase.yaml","Trypticase"]]},{"id":"CHEBI:7809","l":"oxacillin","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Oxacillin.yaml","Oxacillin"]]},{"id":"CHEBI:78673","l":"","na":2,"nb":1,"a":[["RHEA%3A69651","cumene hydroperoxide + 2 glutathione = 2-phenylpropan-2-ol + glutathione disulfide + H2O"],["RHEA%3A63844","cumene hydroperoxide + [thioredoxin]-dithiol = 2-phenylpropan-2-ol + [thioredoxin]-disulfide + H2O"]],"b":[["mapped/Cumene_Hydroperoxide.yaml","Cumene hydroperoxide"]]},{"id":"CHEBI:7939","l":"","na":2,"nb":1,"a":[["RHEA%3A61320","(+)-costunolide + reduced [NADPH--hemoprotein reductase] + O2 = parthenolide + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A61328","parthenolide + reduced [NADPH--hemoprotein reductase] + O2 = 3beta-hydroxyparthenolide + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["mapped/Parthenolide.yaml","Parthenolide"]]},{"id":"CHEBI:8075","l":"","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["MCSA%3A241","penicillin amidase (peptidase C59 family)"]],"b":[["mapped/Phenoxyacetic_Acid.yaml","Phenoxyacetic acid"]]},{"id":"CHEBI:80946","l":"3-octanone","na":2,"nb":1,"a":[["RHEA%3A54856","octan-3-one + NADPH + O2 + H(+) = ethyl hexanoate + NADP(+) + H2O"],["RHEA%3A54840","octan-3-one + NADPH + O2 + H(+) = pentyl propanoate + NADP(+) + H2O"]],"b":[["mapped/3-octanone.yaml","3-octanone"]]},{"id":"CHEBI:9332","l":"sulfamethoxazole","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["mapped/Sulfamethoxazole.yaml","Sulfamethoxazole"]]},{"id":"CHEBI:100241","l":"ciprofloxacin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CPF","CPF-binding site"]],"b":[["mapped/Ciprofloxacin.yaml","Ciprofloxacin"]]},{"id":"CHEBI:10100","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ZLK","ZLK-binding site"]],"b":[["mapped/Zafirlukast.yaml","Zafirlukast"]]},{"id":"CHEBI:113451","l":"sodium ascorbate","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_113451","requires sodium ascorbate"]],"b":[["mapped/Na-ascorbate.yaml","Na-ascorbate"]]},{"id":"CHEBI:113451)","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_113451","requires sodium ascorbate"]],"b":[["mapped/Na-ascorbate.yaml","Na-ascorbate"]]},{"id":"CHEBI:116509","l":"","na":1,"nb":1,"a":[["RHEA%3A65788","diuron + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = 3-(3,4-dichlorophenyl)-1-methylurea + formaldehyde + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"]],"b":[["mapped/DCMU.yaml","DCMU"]]},{"id":"CHEBI:12936","l":"D-galactose","na":1,"nb":1,"a":[["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"]],"b":[["mapped/D-galactose.yaml","D-Galactose"]]},{"id":"CHEBI:131529","l":"pyridoxal hydrochloride","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_131529","requires pyridoxal hydrochloride"]],"b":[["mapped/Pyridoxal_Hydrochloride.yaml","Pyridoxal hydrochloride"]]},{"id":"CHEBI:134431","l":"","na":1,"nb":1,"a":[["MCSA%3A431","acetylxylan esterase"]],"b":[["mapped/Acetylated_Xylan.yaml","Acetylated xylan"]]},{"id":"CHEBI:142593","l":"","na":1,"nb":1,"a":[["RHEA%3A58336","a 4-hydroxynonen-1-ol + NADP(+) = a 4-hydroxynonenal + NADPH + H(+)"]],"b":[["mapped/4-Hydroxynonenal.yaml","4-Hydroxynonenal"]]},{"id":"CHEBI:147155","l":"","na":1,"nb":1,"a":[["RHEA%3A64016","alpha-L-Fuc-(1->2)-beta-D-Gal-(1->4)-D-Glc + GDP-beta-L-fucose = alpha-L-Fuc-(1->2)-beta-D-Gal-(1->4)-[alpha-L-Fuc-(1->3)]-D-Glc + GDP + H(+)"]],"b":[["mapped/2-fucosyllactose.yaml","2'-fucosyllactose"]]},{"id":"CHEBI:15346)","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15346","requires coenzyme A"]],"b":[["mapped/Coenzyme_A.yaml","Coenzyme A"]]},{"id":"CHEBI:15353","l":"blasticidin S","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BLS","BLS-binding site"]],"b":[["mapped/Blasticidin_S.yaml","Blasticidin S"]]},{"id":"CHEBI:15356","l":"cysteine","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Cysteine.yaml","Cysteine"]]},{"id":"CHEBI:15356)","l":"","na":1,"nb":1,"a":[["ComplexPortal%3ACPX-4601","Glutathione/cysteine ABC exporter complex"]],"b":[["mapped/Cysteine.yaml","Cysteine"]]},{"id":"CHEBI:15573","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_P7I","P7I-binding site"]],"b":[["mapped/2-Aminoethylphosphonate.yaml","2-Aminoethylphosphonate"]]},{"id":"CHEBI:156074","l":"","na":1,"nb":1,"a":[["RHEA%3A64680","ethanol + benzoyl-CoA = ethyl benzoate + CoA"]],"b":[["mapped/Ethyl_Benzoate.yaml","Ethyl benzoate"]]},{"id":"CHEBI:15611","l":"sarcosine","na":1,"nb":1,"a":[["MCSA%3A25","N-carbamoylsarcosine amidase"]],"b":[["mapped/Sarcosine.yaml","sarcosine"]]},{"id":"CHEBI:15671","l":"L-tartaric acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TLA","TLA-binding site"]],"b":[["mapped/L_-tartaric_Acid.yaml","L(+)-Tartaric acid"]]},{"id":"CHEBI:15676","l":"allantoin","na":1,"nb":1,"a":[["RHEA%3A30819","allantoin + H2O = allantoate + H(+)"]],"b":[["mapped/Allantoin.yaml","Allantoin"]]},{"id":"CHEBI:15699","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HSE","HSE-binding site"]],"b":[["mapped/L-Homoserine.yaml","L-Homoserine"]]},{"id":"CHEBI:15738","l":"staurosporine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_STU","STU-binding site"]],"b":[["mapped/Staurosporine.yaml","Staurosporine"]]},{"id":"CHEBI:15756","l":"palmitic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PLM","PLM-binding site"]],"b":[["mapped/Palmitic_Acid.yaml","Palmitic acid"]]},{"id":"CHEBI:15765","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DAH","DAH-binding site"]],"b":[["mapped/Levodopa.yaml","Levodopa"]]},{"id":"CHEBI:15811","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SEP","SEP-binding site"]],"b":[["mapped/O-Phospho-L-serine.yaml","O-Phospho-L-serine"]]},{"id":"CHEBI:15918","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DCM","DCM-binding site"]],"b":[["mapped/2-Deoxycytidine_5-monophosphate.yaml","2-Deoxycytidine 5-monophosphate"]]},{"id":"CHEBI:15956)","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15956","requires biotin"]],"b":[["mapped/Biotin.yaml","Biotin"]]},{"id":"CHEBI:15966","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DGL","DGL-binding site"]],"b":[["mapped/D-Glutamic_Acid.yaml","D-Glutamic Acid"]]},{"id":"CHEBI:16000","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ETA","ETA-binding site"]],"b":[["mapped/Ethanolamine.yaml","Ethanolamine"]]},{"id":"CHEBI:16024","l":"D-mannose","na":1,"nb":1,"a":[["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"]],"b":[["mapped/D-mannose.yaml","D-Mannose"]]},{"id":"CHEBI:16135","l":"isobutyric acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ALQ","ALQ-binding site"]],"b":[["mapped/Isobutyric_Acid.yaml","Isobutyric acid"]]},{"id":"CHEBI:16176","l":"D-ornithine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ORD","ORD-binding site"]],"b":[["mapped/D-ornithine.yaml","D-ornithine"]]},{"id":"CHEBI:16243","l":"quercetin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_QUE","QUE-binding site"]],"b":[["mapped/Quercetin.yaml","Quercetin"]]},{"id":"CHEBI:16260","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_OPO","OPO-binding site"]],"b":[["mapped/2-Nitrophenol.yaml","2-Nitrophenol"]]},{"id":"CHEBI:16261","l":"chitosan","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_GCS","GCS-binding site"]],"b":[["mapped/Chitosan.yaml","Chitosan"]]},{"id":"CHEBI:16283","l":"L-cystine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_IYY","IYY-binding site"]],"b":[["mapped/L-cystine.yaml","L-Cystine"]]},{"id":"CHEBI:16296","l":"D-tryptophan","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DTR","DTR-binding site"]],"b":[["mapped/D-tryptophan.yaml","D-tryptophan"]]},{"id":"CHEBI:16344","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NMG","NMG-binding site"]],"b":[["mapped/Glycocyamine.yaml","Glycocyamine"]]},{"id":"CHEBI:16359","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CHD","CHD-binding site"]],"b":[["mapped/Cholic_Acid.yaml","Cholic acid"]]},{"id":"CHEBI:16398","l":"D-threonine","na":1,"nb":1,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"]],"b":[["mapped/D-threonine.yaml","D-threonine"]]},{"id":"CHEBI:16411","l":"indole-3-acetic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_IAC","IAC-binding site"]],"b":[["mapped/3-indolyl_Acetic_Acid.yaml","3-Indolyl acetic acid"]]},{"id":"CHEBI:16412","l":"","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["mapped/Lipopolysaccharide.yaml","Lipopolysaccharide"]]},{"id":"CHEBI:164200","l":"triclosan","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TCL","TCL-binding site"]],"b":[["mapped/Irgasan.yaml","Irgasan"]]},{"id":"CHEBI:16443","l":"D-tagatose","na":1,"nb":1,"a":[["TCDB%3A4.A.2","The PTS Fructose-Mannitol (Fru) Family"]],"b":[["mapped/D-tagatose.yaml","D-tagatose"]]},{"id":"CHEBI:16530","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_KIV","KIV-binding site"]],"b":[["mapped/3-Methyl-2-Oxobutanoic_Acid.yaml","3-Methyl-2-Oxobutanoic Acid"]]},{"id":"CHEBI:16586","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ACA","ACA-binding site"]],"b":[["mapped/E-Amino-N-Caproic_Acid.yaml","e-Amino-N-Caproic Acid"]]},{"id":"CHEBI:166575","l":"Ginkgotoxin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_GT0","GT0-binding site"]],"b":[["mapped/Ginkgotoxin.yaml","Ginkgotoxin"]]},{"id":"CHEBI:16742","l":"orotic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ORO","ORO-binding site"]],"b":[["mapped/Orotic_acid.yaml","Orotic acid"]]},{"id":"CHEBI:16755","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_JN3","JN3-binding site"]],"b":[["mapped/Chenodeoxycholic_Acid.yaml","Chenodeoxycholic acid"]]},{"id":"CHEBI:16765","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TSS","TSS-binding site"]],"b":[["mapped/Tryptamine.yaml","Tryptamine"]]},{"id":"CHEBI:16811","l":"methionine","na":1,"nb":1,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"]],"b":[["mapped/Dl-methionine.yaml","DL-methionine"]]},{"id":"CHEBI:16830","l":"methylamine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NME","NME-binding site"]],"b":[["mapped/Methylamine.yaml","Methylamine"]]},{"id":"CHEBI:16841","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NSD","NSD-binding site"]],"b":[["mapped/Bis_3-aminopropylamine.yaml","Bis(3-aminopropyl)amine"]]},{"id":"CHEBI:16855","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DLY","DLY-binding site"]],"b":[["mapped/D-Lysine.yaml","D-Lysine"]]},{"id":"CHEBI:16867","l":"D-methionine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MED","MED-binding site"]],"b":[["mapped/D-Methionine.yaml","D-Methionine"]]},{"id":"CHEBI:169041","l":"simvastatin hydroxy acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SIM","SIM-binding site"]],"b":[["mapped/Simvastatin_Hydroxy_Acid_Ammonium_Salt.yaml","Simvastatin Hydroxy Acid Ammonium Salt"]]},{"id":"CHEBI:16914","l":"salicylic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SAL","SAL-binding site"]],"b":[["mapped/Salicylic_Acid.yaml","Salicylic acid"]]},{"id":"CHEBI:16958","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BAL","BAL-binding site"]],"b":[["mapped/Beta-alanine.yaml","Beta-alanine"]]},{"id":"CHEBI:16988","l":"D-ribose","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["mapped/D-Ribose.yaml","D-Ribose"]]},{"id":"CHEBI:17015)","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17015","requires riboflavin"]],"b":[["mapped/Riboflavin.yaml","Riboflavin"]]},{"id":"CHEBI:17061","l":"D-glutamine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DGN","DGN-binding site"]],"b":[["mapped/D-glutamine.yaml","D-glutamine"]]},{"id":"CHEBI:17148","l":"putrescine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PUT","PUT-binding site"]],"b":[["mapped/Putrescine.yaml","Putrescine"]]},{"id":"CHEBI:171817","l":"","na":1,"nb":1,"a":[["RHEA%3A76751","5-hydroxydodecanoate + H(+) = delta-dodecalactone + H2O"]],"b":[["mapped/Delta-Dodecalactone.yaml","Delta-Dodecalactone"]]},{"id":"CHEBI:17189","l":"2,5-dihydroxybenzoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_GTQ","GTQ-binding site"]],"b":[["mapped/Gentisic_Acid.yaml","Gentisic acid"]]},{"id":"CHEBI:17285","l":"L-cysteic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_OCS","OCS-binding site"]],"b":[["mapped/L-Cysteic_Acid_Monohydrate.yaml","L-Cysteic acid monohydrate"]]},{"id":"CHEBI:17364","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DAS","DAS-binding site"]],"b":[["mapped/D-Aspartic_Acid.yaml","D-Aspartic Acid"]]},{"id":"CHEBI:17418","l":"valeric acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_LEA","LEA-binding site"]],"b":[["mapped/Valeric_Acid.yaml","Valeric acid"]]},{"id":"CHEBI:17440","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_4NP","4NP-binding site"]],"b":[["mapped/4-nitrophenyl_Phosphate.yaml","4-nitrophenyl Phosphate"]]},{"id":"CHEBI:17497","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_GOA","GOA-binding site"]],"b":[["mapped/Glycolic_Acid.yaml","Glycolic Acid"]]},{"id":"CHEBI:17521","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_QIC","QIC-binding site"]],"b":[["mapped/%28-%29-quinic_Acid.yaml","(-)-quinic Acid"]]},{"id":"CHEBI:17553","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_OPE","OPE-binding site"]],"b":[["mapped/O-Phosphoryl-Ethanolamine.yaml","O-Phosphoryl-Ethanolamine"]]},{"id":"CHEBI:17620","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_FER","FER-binding site"]],"b":[["mapped/Ferulate.yaml","Ferulate"]]},{"id":"CHEBI:17642","l":"pentachlorophenol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PCI","PCI-binding site"]],"b":[["mapped/Pentachlorophenol.yaml","Pentachlorophenol"]]},{"id":"CHEBI:176565","l":"","na":1,"nb":1,"a":[["RHEA%3A74883","phloretate + S-adenosyl-L-methionine = 3-(4-hydroxyphenyl)propionic acid methyl ether + S-adenosyl-L-homocysteine"]],"b":[["mapped/Methyl_3-_4-hydroxyphenylpropionate.yaml","Methyl 3-(4-hydroxyphenyl)propionate"]]},{"id":"CHEBI:17665","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_G6P","G6P-binding site"]],"b":[["mapped/Alpha-D-glucose_6-phosphate.yaml","Alpha-D-glucose 6-phosphate"]]},{"id":"CHEBI:17713","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_D5M","D5M-binding site"]],"b":[["mapped/2-Deoxyadenosine_5-monophosphate.yaml","2-Deoxyadenosine 5-monophosphate"]]},{"id":"CHEBI:17836)","l":"","na":1,"nb":1,"a":[["RHEA%3A16201","4-amino-4-deoxychorismate = 4-aminobenzoate + pyruvate + H(+)"]],"b":[["mapped/4-aminobenzoate.yaml","4-Aminobenzoate"]]},{"id":"CHEBI:17858","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_GDS","GDS-binding site"]],"b":[["mapped/Glutathione_Oxidized.yaml","Glutathione oxidized"]]},{"id":"CHEBI:17905)","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17905","requires coenzyme M"]],"b":[["mapped/2-mercaptoethanesulfonate.yaml","2-Mercaptoethanesulfonate"]]},{"id":"CHEBI:17965","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_H9R","H9R-binding site"]],"b":[["mapped/Isoorientin.yaml","Isoorientin"]]},{"id":"CHEBI:17973","l":"alpha-D-galactose 1-phosphate","na":1,"nb":1,"a":[["TCDB%3A9.B.18","The Xanthan Glycosyl Transferase, GumD (GumD) Family"]],"b":[["mapped/Galactose_1-phosphate_Dipotassium_Salt_Pentahydrate.yaml","Galactose 1-phosphate dipotassium salt pentahydrate"]]},{"id":"CHEBI:18026","l":"2,3-dihydroxybenzoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DBH","DBH-binding site"]],"b":[["mapped/23-dihydroxybenzoic_Acid.yaml","2,3-dihydroxybenzoic acid"]]},{"id":"CHEBI:18053","l":"1-aminocyclopropanecarboxylic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_1AC","1AC-binding site"]],"b":[["mapped/1-aminocyclopropane-1-carboxylate.yaml","1-aminocyclopropane-1-carboxylate"]]},{"id":"CHEBI:18127","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_N2P","N2P-binding site"]],"b":[["mapped/Cadaverine.yaml","Cadaverine"]]},{"id":"CHEBI:18152","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MYC","MYC-binding site"]],"b":[["mapped/Myricetin.yaml","Myricetin"]]},{"id":"CHEBI:18183","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PCA","PCA-binding site"]],"b":[["mapped/L-Pyroglutamic_Acid.yaml","L-Pyroglutamic acid"]]},{"id":"CHEBI:18186","l":"tyrosine","na":1,"nb":1,"a":[["MCSA%3A668","leishmanolysin"]],"b":[["mapped/DL-Tyrosine.yaml","DL-Tyrosine"]]},{"id":"CHEBI:18292","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_JAA","JAA-binding site"]],"b":[["mapped/Jasmonic_Acid.yaml","Jasmonic acid"]]},{"id":"CHEBI:18295","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HSM","HSM-binding site"]],"b":[["mapped/Histamine.yaml","Histamine"]]},{"id":"CHEBI:18357","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_LNR","LNR-binding site"]],"b":[["mapped/Norepinephrine.yaml","(-)-Norepinephrine"]]},{"id":"CHEBI:18385)","l":"","na":1,"nb":1,"a":[["RHEA%3A17697","pyridine + thiamine = heteropyrithiamine + 5-(2-hydroxyethyl)-4-methylthiazole"]],"b":[["mapped/Thiamine.yaml","Thiamine"]]},{"id":"CHEBI:18388","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_AGI","AGI-binding site"]],"b":[["mapped/Apigenin.yaml","Apigenin"]]},{"id":"CHEBI:185431","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9JE","9JE-binding site"]],"b":[["mapped/15-Pentanediol.yaml","1,5-Pentanediol"]]},{"id":"CHEBI:191055","l":"N-[tris(hydroxymethyl)methyl]-3-aminopropanesulfonic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_T3A","T3A-binding site"]],"b":[["mapped/TAPS_Sodium_Salt.yaml","TAPS sodium salt"]]},{"id":"CHEBI:192558","l":"","na":1,"nb":1,"a":[["RHEA%3A72983","harmol + dimethylallyl diphosphate = 6-(3-dimethylallyl)harmol + diphosphate"]],"b":[["mapped/Harmol.yaml","Harmol"]]},{"id":"CHEBI:21553","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NLQ","NLQ-binding site"]],"b":[["mapped/N-Acetyl-L-glutamine.yaml","N-Acetyl-L-glutamine"]]},{"id":"CHEBI:231886","l":"ethyl methyl sulfide","na":1,"nb":1,"a":[["RHEA%3A81435","methyl ethyl sulfide + AH2 = ethane + methanethiol + A"]],"b":[["mapped/Ethyl_Methyl_Sulfide.yaml","ethyl methyl sulfide"]]},{"id":"CHEBI:23456","l":"","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["mapped/Cyclodextrin.yaml","Cyclodextrin"]]},{"id":"CHEBI:24040","l":"flavin adenine dinucleotide","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_24040","requires flavin adenine dinucleotide"]],"b":[["mapped/Flavin_Adenine_Dinucleotide.yaml","Flavin adenine dinucleotide"]]},{"id":"CHEBI:24175","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Galacturonate.yaml","Galacturonate"]]},{"id":"CHEBI:24632","l":"hydrocarbon","na":1,"nb":1,"a":[["TCDB%3A1.B.9","The FadL Outer Membrane Protein (FadL) Family"]],"b":[["mapped/Hydrocarbon.yaml","Hydrocarbon"]]},{"id":"CHEBI:24848","l":"inositol","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Inositol.yaml","Inositol"]]},{"id":"CHEBI:25105","l":"","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["mapped/Macrolide_Antibiotic.yaml","Macrolide Antibiotic"]]},{"id":"CHEBI:25164","l":"","na":1,"nb":1,"a":[["RHEA%3A84991","D-mannobiose = beta-D-mannosyl-(1->4)-D-glucose"]],"b":[["mapped/Mannobiose.yaml","Mannobiose"]]},{"id":"CHEBI:25351","l":"mevalonic acid","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Dl-mevalonic_Acid.yaml","DL-mevalonic acid"]]},{"id":"CHEBI:26078","l":"","na":1,"nb":1,"a":[["MCSA%3A486","polynucleotide 5'-phosphatase"]],"b":[["mapped/H3PO4.yaml","H3PO4"]]},{"id":"CHEBI:2637","l":"amikacin","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["mapped/Amikacin.yaml","Amikacin"]]},{"id":"CHEBI:26401","l":"purines","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Purines.yaml","Purines"]]},{"id":"CHEBI:26546","l":"","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["mapped/Rhamnose.yaml","Rhamnose"]]},{"id":"CHEBI:26986","l":"threonine","na":1,"nb":1,"a":[["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["mapped/Threonine.yaml","Threonine"]]},{"id":"CHEBI:27027","l":"","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["mapped/Micronutrients.yaml","Micronutrients"]]},{"id":"CHEBI:27442","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_FCB","FCB-binding site"]],"b":[["mapped/Beta-D-fucose.yaml","Beta-D-fucose"]]},{"id":"CHEBI:27612","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HYN","HYN-binding site"]],"b":[["mapped/Hydantoin.yaml","Hydantoin"]]},{"id":"CHEBI:27729","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_AJP","AJP-binding site"]],"b":[["mapped/Digitonin.yaml","Digitonin"]]},{"id":"CHEBI:27899","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CPT","CPT-binding site"]],"b":[["mapped/Cisplatin.yaml","Cisplatin"]]},{"id":"CHEBI:27941","l":"pullulan","na":1,"nb":1,"a":[["MCSA%3A433","neopullulanase"]],"b":[["mapped/Pullulan.yaml","Pullulan"]]},{"id":"CHEBI:28093","l":"","na":1,"nb":1,"a":[["RHEA%3A68828","borneol + NAD(+) = camphor + NADH + H(+)"]],"b":[["mapped/Borneol.yaml","Borneol"]]},{"id":"CHEBI:28121","l":"harmine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HRM","HRM-binding site"]],"b":[["mapped/Harmine.yaml","Harmine"]]},{"id":"CHEBI:28145","l":"dibenzofuran","na":1,"nb":1,"a":[["RHEA%3A42460","dibenzofuran + NADH + O2 + H(+) = biphenyl-2,2',3-triol + NAD(+)"]],"b":[["mapped/Dibenzofuran.yaml","Dibenzofuran"]]},{"id":"CHEBI:28225","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DLE","DLE-binding site"]],"b":[["mapped/D-Leucine.yaml","D-Leucine"]]},{"id":"CHEBI:2825","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_GOQ","GOQ-binding site"]],"b":[["mapped/Aristolochic_Acid.yaml","Aristolochic Acid"]]},{"id":"CHEBI:28260","l":"galactose","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Galactose.yaml","Galactose"]]},{"id":"CHEBI:28362","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HQO","HQO-binding site"]],"b":[["mapped/2-n-Heptyl-4-hydroxyquinoline_N-oxide.yaml","2-n-Heptyl-4-hydroxyquinoline N-oxide"]]},{"id":"CHEBI:28368","l":"novobiocin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NOV","NOV-binding site"]],"b":[["mapped/Novobiocin.yaml","Novobiocin"]]},{"id":"CHEBI:28600","l":"farnesol","na":1,"nb":1,"a":[["RHEA%3A79359","farnesol + 2 Fe(III)-[cytochrome c] = farnesal + 2 Fe(II)-[cytochrome c] + 2 H(+)"]],"b":[["mapped/TransTrans-Farnesol.yaml","Trans,Trans-Farnesol"]]},{"id":"CHEBI:28621","l":"triethanolamine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_211","211-binding site"]],"b":[["mapped/Triethanolamine.yaml","Triethanolamine"]]},{"id":"CHEBI:28631","l":"3-phenylpropionic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HCI","HCI-binding site"]],"b":[["mapped/Phenyl_Propionic_Acid.yaml","Phenyl propionic acid"]]},{"id":"CHEBI:28747","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_6PC","6PC-binding site"]],"b":[["mapped/Picolinic_Acid.yaml","Picolinic acid"]]},{"id":"CHEBI:28748","l":"doxorubicin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DM2","DM2-binding site"]],"b":[["mapped/Doxorubicin.yaml","Doxorubicin"]]},{"id":"CHEBI:28790","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SRO","SRO-binding site"]],"b":[["mapped/Serotonin.yaml","Serotonin"]]},{"id":"CHEBI:28808","l":"mannan","na":1,"nb":1,"a":[["TCDB%3A4.A.3","The PTS Lactose-N,N'-Diacetylchitobiose-β-glucoside (Lac) Family"]],"b":[["unmapped/Prebiotin.yaml","Prebiotin"]]},{"id":"CHEBI:28834","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DXC","DXC-binding site"]],"b":[["mapped/Deoxycholic_Acid.yaml","Deoxycholic acid"]]},{"id":"CHEBI:28837","l":"octanoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_OCA","OCA-binding site"]],"b":[["mapped/Octanoic_Acid.yaml","Octanoic acid"]]},{"id":"CHEBI:28854","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CFA","CFA-binding site"]],"b":[["mapped/24-Dichlorophenoxyacetic_acid.yaml","2,4-Dichlorophenoxyacetic acid"]]},{"id":"CHEBI:28860","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BDP","BDP-binding site"]],"b":[["mapped/Beta-D-glucuronic_Acid.yaml","Beta-D-glucuronic Acid"]]},{"id":"CHEBI:28864","l":"tobramycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TOY","TOY-binding site"]],"b":[["mapped/Tobramycin.yaml","Tobramycin"]]},{"id":"CHEBI:28875","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MYR","MYR-binding site"]],"b":[["mapped/Myristic_Acid.yaml","Myristic acid"]]},{"id":"CHEBI:28918","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ALE","ALE-binding site"]],"b":[["mapped/Epinephrine.yaml","(-)-Epinephrine"]]},{"id":"CHEBI:28971","l":"ampicillin","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["mapped/Ampicillin.yaml","Ampicillin"]]},{"id":"CHEBI:28987","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_A9H","A9H-binding site"]],"b":[["mapped/Abietic_Acid.yaml","Abietic Acid"]]},{"id":"CHEBI:29013","l":"fusidic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_FUA","FUA-binding site"]],"b":[["mapped/Fusidic_Acid_Sodium_Salt.yaml","Fusidic acid sodium salt"]]},{"id":"CHEBI:29019","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_KNA","KNA-binding site"]],"b":[["mapped/Nonanoic_Acid.yaml","Nonanoic acid"]]},{"id":"CHEBI:29021","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HEX","HEX-binding site"]],"b":[["mapped/Hexane.yaml","Hexane"]]},{"id":"CHEBI:29125","l":"arsenate(3-)","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ART","ART-binding site"]],"b":[["mapped/Arsenate.yaml","Arsenate"]]},{"id":"CHEBI:29582","l":"ascomycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_KXX","KXX-binding site"]],"b":[["mapped/Ascomycin.yaml","Ascomycin"]]},{"id":"CHEBI:29699","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"]],"b":[["mapped/Tunicamycin.yaml","Tunicamycin"]]},{"id":"CHEBI:30033","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BCL","BCL-binding site"]],"b":[["mapped/Bacteriochlorophyll_A.yaml","Bacteriochlorophyll A"]]},{"id":"CHEBI:30531","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PML","PML-binding site"]],"b":[["mapped/Pimelic_Acid.yaml","Pimelic acid"]]},{"id":"CHEBI:30745","l":"phenylacetic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PAC","PAC-binding site"]],"b":[["mapped/Phenyl_Acetic_Acid.yaml","Phenyl acetic acid"]]},{"id":"CHEBI:30754","l":"anthranilic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BE2","BE2-binding site"]],"b":[["mapped/Anthranilic_Acid.yaml","anthranilic acid"]]},{"id":"CHEBI:30764","l":"3-hydroxybenzoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_3HB","3HB-binding site"]],"b":[["mapped/3-hydroxybenzoic_Acid.yaml","3-Hydroxybenzoic acid"]]},{"id":"CHEBI:30776","l":"hexanoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_6NA","6NA-binding site"]],"b":[["mapped/Caproic_Acid.yaml","Caproic acid"]]},{"id":"CHEBI:30794","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MLA","MLA-binding site"]],"b":[["mapped/Malonic_Acid.yaml","Malonic acid"]]},{"id":"CHEBI:30796","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MLT","MLT-binding site"]],"b":[["mapped/%28R%29-malic_Acid.yaml","(R)-malic Acid"]]},{"id":"CHEBI:30797","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_LMR","LMR-binding site"]],"b":[["mapped/L-Malic_Acid.yaml","L-Malic acid"]]},{"id":"CHEBI:30813","l":"decanoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DKA","DKA-binding site"]],"b":[["mapped/Decanoic_Acid.yaml","Decanoic acid"]]},{"id":"CHEBI:30838","l":"itaconic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ITN","ITN-binding site"]],"b":[["mapped/Itaconic_Acid.yaml","Itaconic Acid"]]},{"id":"CHEBI:30845","l":"2-furoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_FOA","FOA-binding site"]],"b":[["mapped/2-furoic_Acid.yaml","2-Furoic acid"]]},{"id":"CHEBI:30913","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_YCP","YCP-binding site"]],"b":[["mapped/L-Pipecolic_Acid.yaml","L-Pipecolic Acid"]]},{"id":"CHEBI:31348","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["mapped/Capecitabine.yaml","Capecitabine"]]},{"id":"CHEBI:320055","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MGL","MGL-binding site"]],"b":[["mapped/Methyl_Beta-D-glucopyranoside.yaml","Methyl beta-D-glucopyranoside"]]},{"id":"CHEBI:32111","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_LSA","LSA-binding site"]],"b":[["mapped/Saccharin.yaml","Saccharin"]]},{"id":"CHEBI:32365","l":"heptadecanoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_X90","X90-binding site"]],"b":[["mapped/Heptadecanoic_Acid.yaml","heptadecanoic acid"]]},{"id":"CHEBI:32373","l":"4-coumarate","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["mapped/4-coumarate.yaml","4-coumarate"]]},{"id":"CHEBI:32397","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_O4B","O4B-binding site"]],"b":[["mapped/18-Crown-6.yaml","18-Crown-6"]]},{"id":"CHEBI:3259","l":"CCCP","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/CCCP.yaml","CCCP"]]},{"id":"CHEBI:32800","l":"(S)-mandelic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SMN","SMN-binding site"]],"b":[["mapped/%28S%29-mandelic_Acid.yaml","(S)-mandelic Acid"]]},{"id":"CHEBI:33083","l":"fluoranthene","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["mapped/Fluoranthene.yaml","Fluoranthene"]]},{"id":"CHEBI:33198","l":"D-gluconic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_GCO","GCO-binding site"]],"b":[["mapped/D-Gluconic_acid.yaml","D-Gluconic acid"]]},{"id":"CHEBI:33655","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Aromatic_Compound.yaml","Aromatic compound"]]},{"id":"CHEBI:33658","l":"","na":1,"nb":1,"a":[["TCDB%3A1.B.9","The FadL Outer Membrane Protein (FadL) Family"]],"b":[["mapped/Aromatic_Hydrocarbon.yaml","Aromatic hydrocarbon"]]},{"id":"CHEBI:3371","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Capreomycin.yaml","Capreomycin"]]},{"id":"CHEBI:33848","l":"polycyclic arene","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["mapped/Aromatic_Hydrocarbon.yaml","Aromatic hydrocarbon"]]},{"id":"CHEBI:33871","l":"","na":1,"nb":1,"a":[["RHEA%3A81639","glycerate + NAD(+) = 3-hydroxypyruvate + NADH + H(+)"]],"b":[["mapped/Glycerate.yaml","Glycerate"]]},{"id":"CHEBI:3493","l":"cefoperazone","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["mapped/Cefoperazone.yaml","Cefoperazone"]]},{"id":"CHEBI:35020","l":"","na":1,"nb":1,"a":[["RHEA%3A40475","1,2,3-tributanoylglycerol + H2O = dibutanoylglycerol + butanoate + H(+)"]],"b":[["mapped/Tributyrin.yaml","Tributyrin"]]},{"id":"CHEBI:35358","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Sulfonamide.yaml","Sulfonamide"]]},{"id":"CHEBI:35366","l":"fatty acid","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["mapped/Fatty_Acid_Mixture_See_Medium_No_266.yaml","Fatty acid mixture (see Medium No. 266)"]]},{"id":"CHEBI:3537","l":"cefaloridine","na":1,"nb":1,"a":[["TCDB%3A1.B.6","The OmpA-OmpF Porin (OOP) Family"]],"b":[["mapped/Cefaloridine.yaml","Cefaloridine"]]},{"id":"CHEBI:35381","l":"monosaccharide","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Mono-_And_Disaccharides.yaml","Mono- And Disaccharides"]]},{"id":"CHEBI:3547","l":"cephradine","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Cephradine.yaml","Cephradine"]]},{"id":"CHEBI:355715","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/4-nitrophenyl_Beta-D-galactopyranoside.yaml","4-nitrophenyl beta-D-galactopyranoside"]]},{"id":"CHEBI:3567","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["mapped/Cetrimonium_Bromide.yaml","Cetrimonium bromide"]]},{"id":"CHEBI:36062","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DHB","DHB-binding site"]],"b":[["mapped/Protocatechuic_Acid.yaml","Protocatechuic Acid"]]},{"id":"CHEBI:36219","l":"alpha-lactose","na":1,"nb":1,"a":[["RHEA%3A84479","alpha-lactose = lactulose"]],"b":[["mapped/Alpha-Lactose.yaml","alpha-Lactose"]]},{"id":"CHEBI:36233","l":"","na":1,"nb":1,"a":[["TCDB%3A1.A.69","The Heteromeric Odorant Receptor Channel (HORC) Family"]],"b":[["mapped/Mono-_And_Disaccharides.yaml","Mono- And Disaccharides"]]},{"id":"CHEBI:3686","l":"","na":1,"nb":1,"a":[["RHEA%3A64276","chrysophanol-9-anthrone + O2 = chrysophanol + H2O"]],"b":[["mapped/Chrysarobin.yaml","Chrysarobin"]]},{"id":"CHEBI:3687","l":"chrysophanol","na":1,"nb":1,"a":[["RHEA%3A64276","chrysophanol-9-anthrone + O2 = chrysophanol + H2O"]],"b":[["mapped/Chrysophanol.yaml","Chrysophanol"]]},{"id":"CHEBI:36946","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TOU","TOU-binding site"]],"b":[["mapped/Thiourea.yaml","Thiourea"]]},{"id":"CHEBI:3745","l":"clindamycin","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["mapped/Clindamycin.yaml","Clindamycin"]]},{"id":"CHEBI:3749","l":"clofazimine","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Clofazimine.yaml","Clofazimine"]]},{"id":"CHEBI:3815","l":"Collagen","na":1,"nb":1,"a":[["TCDB%3A9.B.113","The Collagen Secretory Protein, Mia3 (Mia3) Family"]],"b":[["mapped/Collagen.yaml","Collagen"]]},{"id":"CHEBI:38167","l":"physcion","na":1,"nb":1,"a":[["RHEA%3A76767","emodin + S-adenosyl-L-methionine = physcion + S-adenosyl-L-homocysteine"]],"b":[["mapped/Physcion.yaml","Physcion"]]},{"id":"CHEBI:38291","l":"dihydrostreptomycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_71R","71R-binding site"]],"b":[["mapped/Dihydrostreptomycin.yaml","Dihydrostreptomycin"]]},{"id":"CHEBI:40009","l":"D-cycloserine","na":1,"nb":1,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"]],"b":[["mapped/D-Cycloserine.yaml","D-Cycloserine"]]},{"id":"CHEBI:40035","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_4MZ","4MZ-binding site"]],"b":[["mapped/4-Methylimidazole.yaml","4-Methylimidazole"]]},{"id":"CHEBI:404903","l":"ertapenem","na":1,"nb":1,"a":[["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"]],"b":[["mapped/Ertapenem.yaml","Ertapenem"]]},{"id":"CHEBI:40585","l":"","na":1,"nb":1,"a":[["MCSA%3A45","cyclomaltodextrin glucanotransferase"]],"b":[["mapped/A-Cyclodextrin.yaml","a-Cyclodextrin"]]},{"id":"CHEBI:41688","l":"crystal violet","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Crystal_Violet.yaml","Crystal Violet"]]},{"id":"CHEBI:41808","l":"decane","na":1,"nb":1,"a":[["RHEA%3A76735","decane + reduced [NADPH--hemoprotein reductase] + O2 = 3-decanol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["mapped/N-decane.yaml","n-Decane"]]},{"id":"CHEBI:41977","l":"daunorubicin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DM1","DM1-binding site"]],"b":[["mapped/Daunorubicin.yaml","Daunorubicin"]]},{"id":"CHEBI:42098","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DOG","DOG-binding site"]],"b":[["mapped/Digoxigenin.yaml","Digoxigenin"]]},{"id":"CHEBI:42223","l":"emodin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_EMO","EMO-binding site"]],"b":[["mapped/Emodin.yaml","Emodin"]]},{"id":"CHEBI:42334","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_EPE","EPE-binding site"]],"b":[["mapped/Hepes.yaml","HEPES"]]},{"id":"CHEBI:42355","l":"erythromycin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ERY","ERY-binding site"]],"b":[["mapped/Erythromycin_A.yaml","Erythromycin A"]]},{"id":"CHEBI:43943","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MMA","MMA-binding site"]],"b":[["mapped/Methyl_Alpha-D-mannoside.yaml","Methyl Alpha-D-mannoside"]]},{"id":"CHEBI:45129","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_GB","GB-binding site"]],"b":[["mapped/Methylphosphonic_acid.yaml","Methylphosphonic acid"]]},{"id":"CHEBI:45285","l":"pyrazinecarboxamide","na":1,"nb":1,"a":[["RHEA%3A35063","pyrazinamide + H2O = pyrazine-2-carboxylate + NH4(+)"]],"b":[["mapped/Pyrazinamide.yaml","Pyrazinamide"]]},{"id":"CHEBI:45367","l":"rifabutin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RBT","RBT-binding site"]],"b":[["mapped/Rifabutin.yaml","Rifabutin"]]},{"id":"CHEBI:45395","l":"pyrithiamine pyrophosphate","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PYI","PYI-binding site"]],"b":[["mapped/Thiamine_pyrophosphate.yaml","Thiamine pyrophosphate"]]},{"id":"CHEBI:45571","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SHV","SHV-binding site"]],"b":[["mapped/Heptanoic_Acid.yaml","Heptanoic acid"]]},{"id":"CHEBI:45630","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SHF","SHF-binding site"]],"b":[["mapped/Levulinic_Acid.yaml","Levulinic Acid"]]},{"id":"CHEBI:45924","l":"trimethoprim","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TOP","TOP-binding site"]],"b":[["mapped/Trimethoprim.yaml","Trimethoprim"]]},{"id":"CHEBI:46345","l":"5-fluorouracil","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_URF","URF-binding site"]],"b":[["mapped/5-fluorouracil.yaml","5-fluorouracil"]]},{"id":"CHEBI:46645","l":"isobutanol","na":1,"nb":1,"a":[["RHEA%3A64692","isobutanol + NAD(+) = 2-methylpropanal + NADH + H(+)"]],"b":[["mapped/Isobutyl_Alcohol.yaml","Isobutyl alcohol"]]},{"id":"CHEBI:46837","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PDC","PDC-binding site"]],"b":[["mapped/Dipicolinic_Acid.yaml","Dipicolinic Acid"]]},{"id":"CHEBI:47106","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_3C4","3C4-binding site"]],"b":[["mapped/3-Chloro-4-hydroxyphenylacetic_acid.yaml","3-Chloro-4-hydroxyphenylacetic acid"]]},{"id":"CHEBI:48131","l":"nonanedioic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_AZ1","AZ1-binding site"]],"b":[["mapped/Azelaic_Acid.yaml","Azelaic acid"]]},{"id":"CHEBI:48267","l":"tubercidin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TBN","TBN-binding site"]],"b":[["mapped/Tubercidin.yaml","Tubercidin"]]},{"id":"CHEBI:48947","l":"clavulanic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_J01","J01-binding site"]],"b":[["mapped/Clavulanic_Acid.yaml","Clavulanic Acid"]]},{"id":"CHEBI:50385","l":"hemin","na":1,"nb":1,"a":[["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]],"b":[["mapped/Haemin.yaml","Haemin"]]},{"id":"CHEBI:50694","l":"minocycline","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MIY","MIY-binding site"]],"b":[["mapped/Minocycline.yaml","Minocycline"]]},{"id":"CHEBI:51240","l":"","na":1,"nb":1,"a":[["TCDB%3A1.C.94","The Thuricin (Thuricin) Family"]],"b":[["mapped/Propidium_Iodide.yaml","Propidium iodide"]]},{"id":"CHEBI:55429","l":"cephamycin","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Cephamycin_A.yaml","Cephamycin A"]]},{"id":"CHEBI:55507","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_AMG","AMG-binding site"]],"b":[["mapped/1-o-methyl_Alpha-galactopyranoside.yaml","1-o-methyl Alpha-galactopyranoside"]]},{"id":"CHEBI:556075","l":"radicicol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RDC","RDC-binding site"]],"b":[["mapped/Radicicol.yaml","Radicicol"]]},{"id":"CHEBI:5656","l":"","na":1,"nb":1,"a":[["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]],"b":[["mapped/Hemoglobin.yaml","Hemoglobin"]]},{"id":"CHEBI:59640","l":"N-acetylglucosamine","na":1,"nb":1,"a":[["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"]],"b":[["mapped/N-acetylglucosamine.yaml","N-Acetylglucosamine"]]},{"id":"CHEBI:62898","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/3-methyl-3-butenol.yaml","3-methyl-3-butenol"]]},{"id":"CHEBI:62972","l":"","na":1,"nb":1,"a":[["RHEA%3A59640","D-xylotetraose + O2 = D-xylotetraono-1,5-lactone + H2O2"]],"b":[["mapped/Xylotetraose.yaml","Xylotetraose"]]},{"id":"CHEBI:62976","l":"","na":1,"nb":1,"a":[["RHEA%3A59664","D-cellopentaose + O2 = D-cellopentaono-1,5-lactone + H2O2"]],"b":[["mapped/Cellopentaose.yaml","Cellopentaose"]]},{"id":"CHEBI:6359","l":"","na":1,"nb":1,"a":[["RHEA%3A84479","alpha-lactose = lactulose"]],"b":[["mapped/Lactulose.yaml","Lactulose"]]},{"id":"CHEBI:63611","l":"moxifloxacin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MFX","MFX-binding site"]],"b":[["mapped/Moxifloxacin.yaml","Moxifloxacin"]]},{"id":"CHEBI:63861","l":"","na":1,"nb":1,"a":[["RHEA%3A81439","2-(methylsulfanyl)ethanol + AH2 = ethene + methanethiol + A + H2O"]],"b":[["mapped/2-_Methylthioethanol.yaml","2-(Methylthio)ethanol"]]},{"id":"CHEBI:63940","l":"sodium tungstate","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["mapped/Na2wo4.yaml","Na2WO4"]]},{"id":"CHEBI:63961","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_GGG","GGG-binding site"]],"b":[["mapped/Glycylglycylglycine.yaml","Glycylglycylglycine"]]},{"id":"CHEBI:67121","l":"nitroxoline","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HNQ","HNQ-binding site"]],"b":[["mapped/8-hydroxy-nitroquinoline.yaml","8-hydroxy-nitroquinoline"]]},{"id":"CHEBI:67379","l":"trans-methylferulate","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SZQ","SZQ-binding site"]],"b":[["mapped/Methyl_Ferulate.yaml","methyl ferulate"]]},{"id":"CHEBI:6827","l":"methicillin","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Methicillin.yaml","Methicillin"]]},{"id":"CHEBI:68428","l":"","na":1,"nb":1,"a":[["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"]],"b":[["mapped/Maltitol.yaml","Maltitol"]]},{"id":"CHEBI:6909","l":"metronidazole","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["mapped/Metronidazole.yaml","Metronidazole"]]},{"id":"CHEBI:70744","l":"Gly-Pro","na":1,"nb":1,"a":[["MCSA%3A1001","Prolidase (Xaa-Pro dipeptidase)"]],"b":[["mapped/Glycyl-L-proline.yaml","Glycyl-L-proline"]]},{"id":"CHEBI:72292","l":"bedaquiline","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BQ1","BQ1-binding site"]],"b":[["mapped/Bedaquiline.yaml","Bedaquiline"]]},{"id":"CHEBI:73757","l":"Ala-Gly","na":1,"nb":1,"a":[["MCSA%3A724","repressor LexA"]],"b":[["mapped/L-alanylglycine.yaml","L-alanylglycine"]]},{"id":"CHEBI:73918","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/3-O-methyl-glucose.yaml","3-O-methyl-glucose"]]},{"id":"CHEBI:74846","l":"azaserine","na":1,"nb":1,"a":[["TCDB%3A2.A.76","The Resistance to Homoserine/Threonine (RhtB) Family"]],"b":[["mapped/Azaserine.yaml","Azaserine"]]},{"id":"CHEBI:74863","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_6MJ","6MJ-binding site"]],"b":[["mapped/Methyl_Beta-D-xylopyranoside.yaml","Methyl Beta-D-xylopyranoside"]]},{"id":"CHEBI:7507","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["mapped/Neomycin.yaml","Neomycin"]]},{"id":"CHEBI:7508","l":"framycetin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NMY","NMY-binding site"]],"b":[["mapped/Framycetin.yaml","Framycetin"]]},{"id":"CHEBI:75092","l":"morin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MRI","MRI-binding site"]],"b":[["mapped/Morin.yaml","Morin"]]},{"id":"CHEBI:75095","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_57D","57D-binding site"]],"b":[["mapped/Chrysin.yaml","Chrysin"]]},{"id":"CHEBI:75323","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"]],"b":[["mapped/Lactitol.yaml","Lactitol"]]},{"id":"CHEBI:7934","l":"paromomycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PAR","PAR-binding site"]],"b":[["mapped/Paromomycin.yaml","Paromomycin"]]},{"id":"CHEBI:79394","l":"indolmycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_5BX","5BX-binding site"]],"b":[["mapped/Indolmycin.yaml","Indolmycin"]]},{"id":"CHEBI:79928","l":"","na":1,"nb":1,"a":[["RHEA%3A84959","asiatic acid 28-O-[beta-D-glucosyl-(1->6)-beta-D-glucoside] + UDP-beta-L-rhamnose = asiaticoside + UDP + H(+)"]],"b":[["mapped/Asiaticoside.yaml","Asiaticoside"]]},{"id":"CHEBI:8082","l":"","na":1,"nb":1,"a":[["MCSA%3A740","arylesterase"]],"b":[["mapped/Phenyl_acetate.yaml","Phenyl acetate"]]},{"id":"CHEBI:8232","l":"piperacillin","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["mapped/Piperacillin.yaml","Piperacillin"]]},{"id":"CHEBI:85274","l":"","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["mapped/Pristinamycin.yaml","Pristinamycin"]]},{"id":"CHEBI:86471","l":"pyrite","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["mapped/Pyrite.yaml","Pyrite"]]},{"id":"CHEBI:8673","l":"pyrimethamine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CP6","CP6-binding site"]],"b":[["mapped/Pyrimethamine.yaml","Pyrimethamine"]]},{"id":"CHEBI:88937","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HHS","HHS-binding site"]],"b":[["mapped/Pterin-6-Carboxylic_Acid.yaml","Pterin-6-Carboxylic Acid"]]},{"id":"CHEBI:90065","l":"3-fucosyllactose","na":1,"nb":1,"a":[["RHEA%3A62888","lactose + GDP-beta-L-fucose = beta-D-galactosyl-(1->4)-[alpha-L-fucosyl-(1->3)]-D-glucose + GDP + H(+)"]],"b":[["mapped/3-fucosyllactose.yaml","3'-fucosyllactose"]]},{"id":"CHEBI:9009","l":"Salidroside","na":1,"nb":1,"a":[["RHEA%3A84635","4-tyrosol + UDP-alpha-D-glucose = salidroside + UDP + H(+)"]],"b":[["mapped/Salidroside.yaml","Salidroside"]]},{"id":"CHEBI:90146","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_C3G","C3G-binding site"]],"b":[["mapped/4-nitrophenyl_Beta-D-glucuronide.yaml","4-nitrophenyl Beta-D-glucuronide"]]},{"id":"CHEBI:91122","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PNG","PNG-binding site"]],"b":[["mapped/4-nitrophenyl_Alpha-D-glucopyranoside.yaml","4-nitrophenyl Alpha-D-glucopyranoside"]]},{"id":"CHEBI:9150","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.28","The Bile Acid:Na+ Symporter (BASS) Family"]],"b":[["mapped/Simvastatin.yaml","Simvastatin"]]},{"id":"CHEBI:9747","l":"Triptolide","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TLI","TLI-binding site"]],"b":[["mapped/Triptolide.yaml","Triptolide"]]},{"id":"UBERON:0000955","l":"brain","na":1,"nb":1,"a":[["GO%3A0007420","brain development"]],"b":[["unmapped/Calf_Brains.yaml","Calf brains"]]}]} \ No newline at end of file +{"a":"ProteinTraitsMech","b":"MediaIngredientMech","base":{"ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record=","MediaIngredientMech":"https://github.com/CultureBotAI/MediaIngredientMech/blob/main/data/ingredients/"},"n":798,"by":{"CHEBI":797,"UBERON":1},"terms":[{"id":"CHEBI:15377","l":"water","na":9376,"nb":12,"a":[["EC%3A1.1.1.115","ribose 1-dehydrogenase (NADP(+))"],["EC%3A1.1.1.132","GDP-mannose 6-dehydrogenase"],["EC%3A1.1.1.136","UDP-N-acetylglucosamine 6-dehydrogenase"],["EC%3A1.1.1.186","dTDP-galactose 6-dehydrogenase"],["EC%3A1.1.1.192","long-chain-alcohol dehydrogenase"],["EC%3A1.1.1.205","IMP dehydrogenase"]],"b":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/Brain_Heart_Infusion_Broth.yaml","Brain heart infusion broth"],["mapped/Distilled_Water.yaml","Distilled water"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"]]},{"id":"CHEBI:15740","l":"formate","na":173,"nb":8,"a":[["EC%3A1.1.98.6","ribonucleoside-triphosphate reductase (formate)"],["EC%3A1.10.3.15","grixazone synthase"],["EC%3A1.13.11.41","2,4'-dihydroxyacetophenone dioxygenase"],["EC%3A1.13.11.53","acireductone dioxygenase (Ni(2+)-requiring)"],["EC%3A1.13.11.54","acireductone dioxygenase (Fe(2+)-requiring)"],["EC%3A1.13.11.72","2-hydroxyethylphosphonate dioxygenase"]],"b":[["mapped/Formate.yaml","Formate"],["mapped/Formate3-methyl_Mercaptopropionate.yaml","Formate+3-methyl Mercaptopropionate"],["mapped/Formatedimethylsulfide.yaml","Formate+dimethylsulfide"],["mapped/Formatemethanol.yaml","Formate+methanol"],["mapped/Formatetetramethylammonium.yaml","Formate+tetramethylammonium"],["mapped/Formatetrimethylamine.yaml","Formate+trimethylamine"]]},{"id":"CHEBI:33709","l":"amino acid","na":8,"nb":54,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.23","The Dicarboxylate/Amino Acid:Cation (Na+ or H+) Symporter (DAACS) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A1.V.1","The Filamentous Cyanobacterial Septal Pore (Septum) Family"],["TCDB%3A1.A.24","The Gap Junction-forming Connexin (Connexin) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/1-aminocyclopropane-1-carboxylate.yaml","1-aminocyclopropane-1-carboxylate"],["mapped/3-Chloro-L-tyrosine.yaml","3-Chloro-L-tyrosine"],["mapped/3-aminobutyric_Acid.yaml","3-aminobutyric acid"],["mapped/4-azido-L-phenylalanine.yaml","4-azido-L-phenylalanine"],["mapped/5-Aminolevulinic_Acid.yaml","5-Aminolevulinic acid"],["mapped/5-aminovaleric_Acid.yaml","5-Aminovaleric acid"]]},{"id":"CHEBI:18276","l":"dihydrogen","na":42,"nb":8,"a":[["EC%3A1.12.1.2","hydrogen dehydrogenase"],["EC%3A1.12.1.3","hydrogen dehydrogenase (NADP(+))"],["EC%3A1.12.1.4","hydrogenase (NAD(+), ferredoxin)"],["EC%3A1.12.1.5","hydrogen dehydrogenase [NAD(P)(+)]"],["EC%3A1.12.2.1","cytochrome-c3 hydrogenase"],["EC%3A1.12.5.1","hydrogen:quinone oxidoreductase"]],"b":[["mapped/H23-methyl_Mercaptopropionate.yaml","H2+3-methyl Mercaptopropionate"],["mapped/H2_CO2.yaml","H2 + CO2"],["mapped/H2dimethylsulfide.yaml","H2+dimethylsulfide"],["mapped/H2methanol.yaml","H2+methanol"],["mapped/H2tetramethylammonium.yaml","H2+tetramethylammonium"],["mapped/H2trimethylamine.yaml","H2+trimethylamine"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":1616,"nb":7,"a":[["EC%3A1.1.1.170","3beta-hydroxysteroid-4alpha-carboxylate 3-dehydrogenase (decarboxylating)"],["EC%3A1.1.1.262","4-hydroxythreonine-4-phosphate dehydrogenase"],["EC%3A1.1.1.276","serine 3-dehydrogenase (NADP(+))"],["EC%3A1.1.1.286","isocitrate--homoisocitrate dehydrogenase"],["EC%3A1.1.1.305","UDP-glucuronic acid oxidase (UDP-4-keto-hexauronic acid decarboxylating)"],["EC%3A1.1.1.343","phosphogluconate dehydrogenase (NAD(+)-dependent, decarboxylating)"]],"b":[["mapped/1-butanolCO2.yaml","1-butanol+CO2"],["mapped/1-propanolCO2.yaml","1-propanol+CO2"],["mapped/2-butanolCO2.yaml","2-butanol+CO2"],["mapped/2-propanolCO2.yaml","2-propanol+CO2"],["mapped/Carbon_dioxide_gas.yaml","Carbon dioxide gas"],["mapped/CyclopentanolCO2.yaml","Cyclopentanol+CO2"]]},{"id":"CHEBI:17306","l":"maltose","na":27,"nb":6,"a":[["EC%3A2.3.1.79","maltose O-acetyltransferase"],["EC%3A2.4.1.139","maltose synthase"],["EC%3A2.4.1.8","maltose phosphorylase"],["EC%3A2.7.1.175","maltokinase"],["EC%3A2.7.1.208","protein-N(pi)-phosphohistidine--maltose phosphotransferase"],["EC%3A3.1.3.90","maltose 6'-phosphate phosphatase"]],"b":[["mapped/D-Maltose_Monohydrate.yaml","D-Maltose monohydrate"],["mapped/Glucose_Maltose_Cellobiose_Starch_Glycerol.yaml","Glucose + Maltose + Cellobiose + Starch + Glycerol"],["mapped/Maltose.yaml","Maltose"],["mapped/Maltose_2.yaml","maltose"],["mapped/Maltose_Hydrate.yaml","Maltose Hydrate"],["mapped/PY-maltose.yaml","PY-maltose"]]},{"id":"CHEBI:17992","l":"sucrose","na":49,"nb":4,"a":[["EC%3A1.1.99.13","glucoside 3-dehydrogenase (acceptor)"],["EC%3A2.4.1.10","levansucrase"],["EC%3A2.4.1.125","sucrose--1,6-alpha-glucan 3(6)-alpha-glucosyltransferase"],["EC%3A2.4.1.13","sucrose synthase"],["EC%3A2.4.1.166","raffinose--raffinose alpha-galactosyltransferase"],["EC%3A2.4.1.167","sucrose 6(F)-alpha-galactosyltransferase"]],"b":[["mapped/D-Sucrose.yaml","D-Sucrose"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Sucrose.yaml","Sucrose"],["mapped/Sucrose_Yeast_Extract.yaml","Sucrose + Yeast Extract"]]},{"id":"CHEBI:17057","l":"cellobiose","na":19,"nb":4,"a":[["EC%3A1.1.3.5","hexose oxidase"],["EC%3A1.1.99.18","cellobiose dehydrogenase (acceptor)"],["EC%3A2.4.1.20","cellobiose phosphorylase"],["EC%3A2.7.1.205","protein-N(pi)-phosphohistidine--D-cellobiose phosphotransferase"],["EC%3A2.7.1.85","beta-glucoside kinase"],["EC%3A5.1.3.11","cellobiose epimerase"]],"b":[["mapped/Cellobiose.yaml","Cellobiose"],["mapped/Glucose_Cellobiose_Starch_Trypticase_Yeast_Extract.yaml","Glucose + Cellobiose + Starch + Trypticase + Yeast Extract"],["mapped/Glucose_Maltose_Cellobiose_Starch_Glycerol.yaml","Glucose + Maltose + Cellobiose + Starch + Glycerol"],["mapped/PY-cellobiose.yaml","PY-cellobiose"]]},{"id":"CHEBI:16857","l":"L-threonine","na":9,"nb":4,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.23","The Dicarboxylate/Amino Acid:Cation (Na+ or H+) Symporter (DAACS) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.42","The Hydroxy/Aromatic Amino Acid Permease (HAAAP) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-threonine.yaml","L-Threonine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Threonine.yaml","Threonine"]]},{"id":"CHEBI:17126","l":"carnitine","na":7,"nb":4,"a":[["EC%3A1.1.1.108","carnitine 3-dehydrogenase"],["EC%3A1.14.11.1","gamma-butyrobetaine dioxygenase"],["EC%3A4.1.1.42","carnitine decarboxylase"],["RHEA%3A24028","4-(trimethylamino)butanoate + 2-oxoglutarate + O2 = carnitine + succinate + CO2"],["RHEA%3A21576","carnitine + H(+) = 2-methylcholine + CO2"],["RHEA%3A19265","carnitine + NAD(+) = 3-dehydrocarnitine + NADH + H(+)"]],"b":[["mapped/Carnitine_Dl_Hydrochloride.yaml","Carnitine (Dl) Hydrochloride"],["mapped/Carnitine_Hydrochloride.yaml","Carnitine Hydrochloride"],["mapped/Dl-carnitine.yaml","DL-carnitine"],["mapped/L-Carnitine.yaml","L-Carnitine"]]},{"id":"CHEBI:17439","l":"cyanocob(III)alamin","na":5,"nb":4,"a":[["EC%3A1.16.1.6","cyanocobalamin reductase"],["RHEA%3A16113","2 cob(II)alamin-[cyanocobalamin reductase] + 2 hydrogen cyanide + NADP(+) = 2 cyanocob(III)alamin + 2 apo-[cyanocobalamin reductase] + NADPH + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["TCDB%3A9.B.87","The Selenoprotein P Receptor (SelP-Receptor) Family"]],"b":[["mapped/Cyanocobalamin.yaml","Cyanocobalamin"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Thauers_Vitamin_Mix_No_Biotin.yaml","Thauer's vitamin mix no Biotin"],["mapped/Vitamin_B12.yaml","Vitamin B12"]]},{"id":"CHEBI:30089","l":"acetate","na":302,"nb":3,"a":[["EC%3A1.1.1.318","eugenol synthase"],["EC%3A1.1.1.319","isoeugenol synthase"],["EC%3A1.13.11.50","acetylacetone-cleaving enzyme"],["EC%3A1.13.12.4","lactate 2-monooxygenase"],["EC%3A1.14.13.54","ketosteroid monooxygenase"],["EC%3A1.14.14.19","steroid 17alpha-monooxygenase"]],"b":[["mapped/Acetate.yaml","Acetate"],["mapped/Acetate_Carbon_Source.yaml","Acetate (carbon source)"],["mapped/Glucose_Acetate.yaml","Glucose + Acetate"]]},{"id":"CHEBI:4167","l":"D-glucopyranose","na":217,"nb":3,"a":[["EC%3A1.1.1.118","glucose 1-dehydrogenase (NAD(+))"],["EC%3A1.1.1.119","glucose 1-dehydrogenase (NADP(+))"],["EC%3A1.1.1.359","aldose 1-dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.1.360","glucose/galactose 1-dehydrogenase"],["EC%3A1.1.1.432","6-dehydroglucose reductase"],["EC%3A1.1.1.47","glucose 1-dehydrogenase [NAD(P)(+)]"]],"b":[["mapped/D-glucose.yaml","D-Glucose"],["mapped/Dextrose.yaml","Dextrose"],["mapped/Glucose_Xylose.yaml","Glucose + Xylose"]]},{"id":"CHEBI:17754","l":"glycerol","na":95,"nb":3,"a":[["EC%3A1.1.1.156","glycerol 2-dehydrogenase (NADP(+))"],["EC%3A1.1.1.372","D/L-glyceraldehyde reductase"],["EC%3A1.1.1.6","glycerol dehydrogenase"],["EC%3A1.1.1.72","glycerol dehydrogenase (NADP(+))"],["EC%3A1.1.99.22","glycerol dehydrogenase (acceptor)"],["EC%3A2.4.1.332","1,2-alpha-glucosylglycerol phosphorylase"]],"b":[["mapped/Glucose_Maltose_Cellobiose_Starch_Glycerol.yaml","Glucose + Maltose + Cellobiose + Starch + Glycerol"],["mapped/Glycerol.yaml","Glycerol"],["mapped/Glycerol_2.yaml","glycerol"]]},{"id":"CHEBI:17790","l":"methanol","na":86,"nb":3,"a":[["EC%3A1.1.1.244","methanol dehydrogenase"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.99.37","methanol dehydrogenase (nicotinoprotein)"],["EC%3A1.14.13.25","methane monooxygenase (soluble)"],["EC%3A1.14.14.117","aflatoxin B synthase"]],"b":[["mapped/Formatemethanol.yaml","Formate+methanol"],["mapped/H2methanol.yaml","H2+methanol"],["mapped/Methanol.yaml","Methanol"]]},{"id":"CHEBI:17268","l":"myo-inositol","na":42,"nb":3,"a":[["EC%3A1.1.1.18","inositol 2-dehydrogenase"],["EC%3A1.1.5.n1","quinoprotein inositol dehydrogenase"],["EC%3A1.13.99.1","inositol oxygenase"],["EC%3A2.1.1.129","inositol 4-methyltransferase"],["EC%3A2.1.1.39","inositol 3-methyltransferase"],["EC%3A2.1.1.40","inositol 1-methyltransferase"]],"b":[["mapped/M-inositol.yaml","m-Inositol"],["mapped/Myo-inositol.yaml","myo-Inositol"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:17925","l":"alpha-D-glucose","na":35,"nb":3,"a":[["EC%3A2.4.1.231","alpha,alpha-trehalose phosphorylase (configuration-retaining)"],["EC%3A3.1.3.58","sugar-terminal-phosphatase"],["EC%3A3.1.3.9","glucose-6-phosphatase"],["EC%3A3.2.1.10","oligo-1,6-glucosidase"],["EC%3A3.2.1.219","palatinase"],["EC%3A3.2.1.28","alpha,alpha-trehalase"]],"b":[["mapped/Alpha-d-glucose.yaml","alpha-D-Glucose"],["mapped/Glucose.yaml","Glucose"],["mapped/Glucose_Xylose.yaml","Glucose + Xylose"]]},{"id":"CHEBI:17437","l":"dimethyl sulfide","na":21,"nb":3,"a":[["EC%3A1.14.13.131","dissimilatory dimethyl-sulfide monooxygenase"],["EC%3A1.14.13.245","assimilatory dimethylsulfide S-monooxygenase"],["EC%3A1.8.2.4","dimethyl sulfide:cytochrome c2 reductase"],["EC%3A1.8.5.3","respiratory dimethylsulfoxide reductase"],["EC%3A2.1.1.19","trimethylsulfonium--tetrahydrofolate N-methyltransferase"],["EC%3A2.1.1.334","methanethiol S-methyltransferase"]],"b":[["mapped/Dimethyl_Sulfide.yaml","Dimethyl sulfide"],["mapped/Formatedimethylsulfide.yaml","Formate+dimethylsulfide"],["mapped/H2dimethylsulfide.yaml","H2+dimethylsulfide"]]},{"id":"CHEBI:8150","l":"Bacto Soytone","na":20,"nb":3,"a":[["TCDB%3A2.A.31","The Anion Exchanger (AE) Family"],["TCDB%3A1.A.31","The Annexin (Annexin) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.A.36","The Ca2+-dependent Phospholipid Scramblase (Scramblase) Family"],["TCDB%3A1.A.17","The Calcium-dependent Chloride Channel (Ca-ClC) Family"],["TCDB%3A9.A.14","The G-protein-coupled receptor (GPCR) Family"]],"b":[["mapped/Bacto_Soytone.yaml","Bacto Soytone"],["mapped/Sodium_L-lactate.yaml","Sodium L-lactate"],["mapped/Soy_Peptone.yaml","Soy peptone"]]},{"id":"CHEBI:15428","l":"glycine","na":13,"nb":3,"a":[["MCSA%3A718","caspase-1"],["MCSA%3A599","dipeptidase E"],["MCSA%3A906","gelatinase A"],["MCSA%3A762","glycine C-acetyltransferase"],["MCSA%3A746","L-peptidase"],["MCSA%3A477","picornain 3C"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/Glycine.yaml","Glycine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:16808","l":"2-dehydro-D-gluconate","na":12,"nb":3,"a":[["EC%3A1.1.1.215","gluconate 2-dehydrogenase"],["EC%3A1.1.1.274","2,5-didehydrogluconate reductase (2-dehydro-D-gluconate-forming)"],["EC%3A1.1.99.3","gluconate 2-dehydrogenase (acceptor)"],["EC%3A1.1.99.4","dehydrogluconate dehydrogenase"],["EC%3A2.7.1.13","dehydrogluconokinase"],["RHEA%3A12368","2-dehydro-D-gluconate + A = 2,5-didehydro-D-gluconate + AH2"]],"b":[["mapped/2-dehydro-D-gluconate.yaml","2-dehydro-D-gluconate"],["mapped/Potassium_2-dehydro-D-gluconate.yaml","Potassium 2-dehydro-D-gluconate"],["mapped/Potassium_2-ketogluconate.yaml","Potassium 2-ketogluconate"]]},{"id":"CHEBI:16977","l":"L-alanine","na":11,"nb":3,"a":[["ARO%3A3004943","cycloserine resistant ald"],["ARO%3A3004946","cycloserine resistant alr"],["ARO%3A3004945","Mycobacterium tuberculosis ald mutations confer resistance to cycloserine"],["ARO%3A3004947","Mycobacterium tuberculosis alr with mutation conferring resistance to cycloserine"],["MCSA%3A609","alpha-lytic endopeptidase"],["MCSA%3A238","assemblin"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-alanine.yaml","L-Alanine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:58143","l":"5-dehydro-D-gluconate","na":10,"nb":3,"a":[["EC%3A1.1.1.264","L-idonate 5-dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.1.366","L-idonate 5-dehydrogenase (NAD(+))"],["EC%3A1.1.1.69","gluconate 5-dehydrogenase"],["RHEA%3A30103","2,5-didehydro-D-gluconate + NADH + H(+) = 5-dehydro-D-gluconate + NAD(+)"],["RHEA%3A28819","5-dehydro-D-gluconate(in) + H(+)(in) = 5-dehydro-D-gluconate(out) + H(+)(out)"],["RHEA%3A27634","5-dehydro-D-gluconate + NADP(+) = 2,5-didehydro-D-gluconate + NADPH + H(+)"]],"b":[["mapped/5-dehydro-D-gluconate.yaml","5-dehydro-D-gluconate"],["mapped/Potassium_5-dehydro-D-gluconate.yaml","Potassium 5-dehydro-D-gluconate"],["mapped/Potassium_5-ketogluconate.yaml","Potassium 5-ketogluconate"]]},{"id":"CHEBI:18167","l":"alpha-maltose","na":9,"nb":3,"a":[["EC%3A5.1.3.21","maltose epimerase"],["EC%3A5.1.3.3","aldose 1-epimerase"],["RHEA%3A21228","alpha-maltose = beta-maltose"],["MCSA%3A479","4-alpha-glucanotransferase"],["MCSA%3A397","alpha-amylase"],["MCSA%3A905","glucan 1,4-alpha-maltohydrolase"]],"b":[["mapped/Maltose.yaml","Maltose"],["mapped/Maltose_2.yaml","maltose"],["mapped/Starch.yaml","Starch"]]},{"id":"CHEBI:33229","l":"vitamin (role)","na":3,"nb":9,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.21","The Solute:Sodium Symporter (SSS) Family"]],"b":[["mapped/4-Pyridoxic_Acid.yaml","4-Pyridoxic acid"],["mapped/Ca-folinate.yaml","Ca-folinate"],["mapped/Fad.yaml","FAD"],["mapped/Folinic_Acid.yaml","Folinic acid"],["mapped/L-Carnitine.yaml","L-Carnitine"],["mapped/Na-ascorbate.yaml","Na-ascorbate"]]},{"id":"CHEBI:17015","l":"riboflavin","na":3,"nb":8,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17015","requires riboflavin"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_RBF","RBF-binding site"]],"b":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/Riboflavin.yaml","Riboflavin"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Thauers_Vitamin_Mix_No_Biotin.yaml","Thauer's vitamin mix no Biotin"]]},{"id":"CHEBI:17029","l":"chitin","na":8,"nb":3,"a":[["EC%3A2.4.1.16","chitin synthase"],["EC%3A3.5.1.41","chitin deacetylase"],["RHEA%3A85463","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-1)-N-acetyl-alpha-D-glucosamine"],["RHEA%3A50672","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-2) + N,N'-diacetylchitobiose"],["RHEA%3A85003","[(1->4)-N-acetyl-beta-D-glucosaminyl](n)-N-acetyl-alpha-D-glucosamine + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n) + N-acetyl-alpha-D-glucosamine"],["RHEA%3A10464","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + n H2O = chitosan + n acetate"]],"b":[["mapped/Chitin.yaml","Chitin"],["unmapped/Chitin_From_Shrimp_Shells.yaml","Chitin from shrimp shells"],["unmapped/Colloidal_Chitin.yaml","Colloidal chitin"]]},{"id":"CHEBI:18019","l":"L-lysine","na":8,"nb":3,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A2.A.53","The Sulfate Permease (SulP) Family"],["MCSA%3A746","L-peptidase"],["MCSA%3A786","peptidyl-Lys metalloendopeptidase"],["MCSA%3A597","ubiquitinyl hydrolase 1 (peptidase C12 type)"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-lysine.yaml","L-Lysine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:27470","l":"folic acid","na":3,"nb":7,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_27470","requires folic acid"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["proteintraitsmech%3ABIOLIP_FOL","FOL-binding site"]],"b":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Folic_Acid.yaml","Folic acid"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Thauers_Vitamin_Mix_No_Biotin.yaml","Thauer's vitamin mix no Biotin"]]},{"id":"CHEBI:17053","l":"L-aspartic acid","na":3,"nb":5,"a":[["MCSA%3A718","caspase-1"],["MCSA%3A599","dipeptidase E"],["proteintraitsmech%3ABIOLIP_ASP","ASP-binding site"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-Aspartic_Acid_Potassium_Salt.yaml","L-Aspartic acid potassium salt"],["mapped/L-Aspartic_Acid_Sodium_Salt_Monohydrate.yaml","L-Aspartic acid sodium salt monohydrate"],["mapped/L-aspartic_Acid.yaml","L-Aspartic acid"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:16015","l":"L-glutamic acid","na":3,"nb":4,"a":[["MCSA%3A747","gamma-glutamyl hydrolase"],["proteintraitsmech%3ABIOLIP_GGL","GGL-binding site"],["proteintraitsmech%3ABIOLIP_GLU","GLU-binding site"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-Glutamic_Acid_Monopotassium_Salt_Monohydrate.yaml","L-Glutamic acid monopotassium salt monohydrate"],["mapped/L-glutamic_Acid.yaml","L-Glutamic acid"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:17115","l":"L-serine","na":4,"nb":3,"a":[["MCSA%3A609","alpha-lytic endopeptidase"],["MCSA%3A238","assemblin"],["MCSA%3A688","classical-complement-pathway C3/C5 convertase"],["proteintraitsmech%3ABIOLIP_SER","SER-binding site"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-serine.yaml","L-Serine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:17191","l":"L-isoleucine","na":4,"nb":3,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.26","The Branched Chain Amino Acid:Cation Symporter (LIVCS) Family"],["proteintraitsmech%3ABIOLIP_ILE","ILE-binding site"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-isoleucine.yaml","L-Isoleucine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:18050","l":"L-glutamine","na":4,"nb":3,"a":[["MCSA%3A596","deuterolysin"],["MCSA%3A477","picornain 3C"],["MCSA%3A763","picornain 3C"],["proteintraitsmech%3ABIOLIP_GLN","GLN-binding site"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-glutamine.yaml","L-Glutamine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:16467","l":"L-arginine","na":3,"nb":3,"a":[["MCSA%3A688","classical-complement-pathway C3/C5 convertase"],["MCSA%3A425","plasmin"],["MCSA%3A798","t-plasminogen activator"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-arginine.yaml","L-Arginine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:16643","l":"L-methionine","na":3,"nb":3,"a":[["MCSA%3A917","methionyl aminopeptidase"],["MCSA%3A965","Viperin"],["proteintraitsmech%3ABIOLIP_MET","MET-binding site"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-methionine.yaml","L-Methionine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:17203","l":"L-proline","na":3,"nb":3,"a":[["MCSA%3A403","astacin"],["MCSA%3A379","Xaa-Pro aminopeptidase"],["proteintraitsmech%3ABIOLIP_PRO","PRO-binding site"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-proline.yaml","L-Proline"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:17295","l":"L-phenylalanine","na":3,"nb":3,"a":[["MCSA%3A595","scytalidopepsin B"],["MCSA%3A598","streptopain"],["proteintraitsmech%3ABIOLIP_PHE","PHE-binding site"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-phenylalanine.yaml","L-Phenylalanine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:30915","l":"2-oxoglutaric acid","na":3,"nb":3,"a":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["TCDB%3A2.A.56","The Tripartite ATP-independent Periplasmic Transporter (TRAP-T) Family"],["proteintraitsmech%3ABIOLIP_AKG","AKG-binding site"]],"b":[["mapped/A-Ketoglutaric_Acid_Disodium_Salt_Hydrate.yaml","a-Ketoglutaric acid disodium salt hydrate"],["mapped/Alpha-ketoglutaric_Acid.yaml","alpha-ketoglutaric acid"],["mapped/Na2_Alpha-ketoglutarate.yaml","Na2 alpha-ketoglutarate"]]},{"id":"CHEBI:29034","l":"iron(3+)","na":376,"nb":2,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29034","requires iron(3+)"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.11","glucoside 3-dehydrogenase (cytochrome c)"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.2.3","L-lactate dehydrogenase (cytochrome)"],["EC%3A1.1.2.4","D-lactate dehydrogenase (cytochrome)"]],"b":[["mapped/Ferric_Iron.yaml","Ferric Iron"],["mapped/Ferrous_Ion.yaml","Ferrous Ion"]]},{"id":"CHEBI:35235","l":"L-cysteine zwitterion","na":108,"nb":2,"a":[["EC%3A1.13.11.20","cysteine dioxygenase"],["EC%3A1.13.11.95","2-oxoethane-1-sulfonamide synthase"],["EC%3A1.14.99.52","L-cysteinyl-L-histidinylsulfoxide synthase"],["EC%3A1.21.3.10","hercynylcysteine S-oxide synthase"],["EC%3A1.8.1.6","cystine reductase"],["EC%3A1.8.3.5","prenylcysteine oxidase"]],"b":[["mapped/L-cysteine.yaml","L-Cysteine"],["mapped/L-cysteine_Zwitterion.yaml","L-cysteine zwitterion"]]},{"id":"CHEBI:17154","l":"nicotinamide","na":92,"nb":2,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17154","requires nicotinamide"],["EC%3A2.1.1.1","nicotinamide N-methyltransferase"],["EC%3A2.3.1.286","protein acetyllysine N-acetyltransferase"],["EC%3A2.3.1.313","NAD-dependent lipoamidase"],["EC%3A2.4.2.12","nicotinamide phosphoribosyltransferase"],["EC%3A2.4.2.31","NAD(+)--protein-arginine ADP-ribosyltransferase"]],"b":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Nicotinamide.yaml","Nicotinamide"]]},{"id":"CHEBI:16113","l":"cholesterol","na":82,"nb":2,"a":[["EC%3A1.1.3.6","cholesterol oxidase"],["EC%3A1.14.14.23","cholesterol 7alpha-monooxygenase"],["EC%3A1.14.14.25","cholesterol 24-hydroxylase"],["EC%3A1.14.15.6","cholesterol monooxygenase (side-chain-cleaving)"],["EC%3A1.14.19.21","cholesterol 7-desaturase"],["EC%3A1.14.99.38","cholesterol 25-monooxygenase"]],"b":[["mapped/Cholesterol_Lipid_Concentrate.yaml","cholesterol lipid concentrate"],["mapped/cholesterol.yaml","cholesterol"]]},{"id":"CHEBI:15354","l":"choline","na":78,"nb":2,"a":[["EC%3A1.1.3.17","choline oxidase"],["EC%3A1.1.99.1","choline dehydrogenase"],["EC%3A1.14.15.7","choline monooxygenase"],["EC%3A2.3.1.6","choline O-acetyltransferase"],["EC%3A2.3.1.91","sinapoylglucose--choline O-sinapoyltransferase"],["EC%3A2.7.1.32","choline kinase"]],"b":[["mapped/Choline.yaml","Choline"],["unmapped/Cholinium_Alpha_Ketoglutarate.yaml","Cholinium alpha ketoglutarate"]]},{"id":"CHEBI:16763","l":"2-oxobutanoate","na":51,"nb":2,"a":[["EC%3A1.1.1.n5","3-methylmalate dehydrogenase"],["EC%3A1.2.7.1","pyruvate synthase"],["EC%3A2.2.1.6","acetolactate synthase"],["EC%3A2.3.3.6","2-ethylmalate synthase"],["EC%3A2.6.1.44","alanine--glyoxylate transaminase"],["EC%3A3.5.99.10","2-iminobutanoate/2-iminopropanoate deaminase"]],"b":[["mapped/2-oxobutanoate.yaml","2-oxobutanoate"],["mapped/2-oxobutyric_Acid_Sodium_Salt.yaml","2-oxobutyric acid sodium salt"]]},{"id":"CHEBI:16947","l":"citrate(3-)","na":49,"nb":2,"a":[["EC%3A2.3.3.1","citrate (Si)-synthase"],["EC%3A2.3.3.16","citrate synthase (unknown stereospecificity)"],["EC%3A2.3.3.3","citrate (Re)-synthase"],["EC%3A2.3.3.8","ATP citrate synthase"],["EC%3A2.8.3.10","citrate CoA-transferase"],["EC%3A4.1.3.6","citrate (pro-3S)-lyase"]],"b":[["mapped/Citrate.yaml","Citrate"],["mapped/Citric_Acid.yaml","Citric acid"]]},{"id":"CHEBI:16870","l":"choline alfoscerate","na":48,"nb":2,"a":[["EC%3A3.1.1.5","lysophospholipase"],["EC%3A3.1.4.2","glycerophosphocholine phosphodiesterase"],["EC%3A3.1.4.38","glycerophosphocholine cholinephosphodiesterase"],["EC%3A3.3.2.2","lysoplasmalogenase"],["RHEA%3A40835","1,2-di-(9Z-octadecenoyl)-sn-glycero-3-phosphocholine + 2 H2O = sn-glycerol 3-phosphocholine + 2 (9Z)-octadecenoate + 2 H(+)"],["RHEA%3A40975","1,2-dihexadecanoyl-sn-glycero-3-phosphocholine + 2 H2O = sn-glycerol 3-phosphocholine + 2 hexadecanoate + 2 H(+)"]],"b":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Sn-glycero-3-phosphocholine.yaml","sn-glycero-3-phosphocholine"]]},{"id":"CHEBI:17568","l":"uracil","na":47,"nb":2,"a":[["EC%3A1.14.11.10","pyrimidine-deoxynucleoside 1'-dioxygenase"],["EC%3A1.14.99.46","pyrimidine monooxygenase"],["EC%3A1.17.99.4","uracil/thymine dehydrogenase"],["EC%3A1.3.1.1","dihydrouracil dehydrogenase (NAD(+))"],["EC%3A1.3.1.2","dihydropyrimidine dehydrogenase (NADP(+))"],["EC%3A1.3.3.7","dihydrouracil oxidase"]],"b":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Uracil.yaml","Uracil"]]},{"id":"CHEBI:16708","l":"adenine","na":44,"nb":2,"a":[["EC%3A1.5.99.12","cytokinin dehydrogenase"],["EC%3A2.4.2.28","S-methyl-5'-thioadenosine phosphorylase"],["EC%3A2.4.2.52","triphosphoribosyl-dephospho-CoA synthase"],["EC%3A2.4.2.57","AMP phosphorylase"],["EC%3A2.4.2.7","adenine phosphoribosyltransferase"],["EC%3A2.4.99.17","S-adenosylmethionine:tRNA ribosyltransferase-isomerase"]],"b":[["mapped/Adenine.yaml","Adenine"],["mapped/Adenine_Hydrochloride_Hydrate.yaml","Adenine hydrochloride hydrate"]]},{"id":"CHEBI:506227","l":"N-acetyl-D-glucosamine","na":44,"nb":2,"a":[["EC%3A1.1.3.29","N-acylhexosamine oxidase"],["EC%3A2.3.1.3","glucosamine N-acetyltransferase"],["EC%3A2.4.1.211","1,3-beta-galactosyl-N-acetylhexosamine phosphorylase"],["EC%3A2.4.1.280","N,N'-diacetylchitobiose phosphorylase"],["EC%3A2.4.1.320","1,4-beta-mannosyl-N-acetylglucosamine phosphorylase"],["EC%3A2.4.1.90","N-acetyllactosamine synthase"]],"b":[["mapped/N-acetyl-d-glucosamine.yaml","N-Acetyl-D-glucosamine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:16335","l":"adenosine","na":35,"nb":2,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16335","requires vitamin B12"],["EC%3A1.1.3.39","nucleoside oxidase (H2O2-forming)"],["EC%3A2.7.1.114","AMP--thymidine kinase"],["EC%3A2.7.1.20","adenosine kinase"],["EC%3A3.13.2.1","adenosylhomocysteinase"],["EC%3A3.13.2.3","(R)-S-adenosyl-L-methionine hydrolase (adenosine-forming)"]],"b":[["mapped/Adenosine.yaml","Adenosine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:17750","l":"glycine betaine","na":33,"nb":2,"a":[["EC%3A1.1.3.17","choline oxidase"],["EC%3A1.13.11.90","[1-hydroxy-2-(trimethylamino)ethyl]phosphonate dioxygenase (glycine- betaine-forming)"],["EC%3A1.14.13.251","glycine betaine monooxygenase"],["EC%3A1.2.1.8","betaine-aldehyde dehydrogenase"],["EC%3A1.21.4.4","betaine reductase"],["EC%3A2.1.1.157","sarcosine/dimethylglycine N-methyltransferase"]],"b":[["mapped/Betaine_Hydrochloride.yaml","Betaine hydrochloride"],["mapped/Betaine_X_H2o.yaml","Betaine x H2O"]]},{"id":"CHEBI:17596","l":"inosine","na":32,"nb":2,"a":[["EC%3A1.1.3.28","nucleoside oxidase"],["EC%3A2.7.1.73","inosine kinase"],["EC%3A3.1.3.99","IMP-specific 5'-nucleotidase"],["EC%3A3.13.1.9","S-inosyl-L-homocysteine hydrolase"],["EC%3A3.2.2.2","inosine nucleosidase"],["EC%3A3.5.4.4","adenosine deaminase"]],"b":[["mapped/Inosine.yaml","Inosine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:17712","l":"9H-xanthine","na":32,"nb":2,"a":[["EC%3A1.14.11.48","xanthine dioxygenase"],["EC%3A1.14.13.128","7-methylxanthine demethylase"],["EC%3A1.14.13.179","methylxanthine N(3)-demethylase"],["EC%3A1.17.1.4","xanthine dehydrogenase"],["EC%3A1.17.3.2","xanthine oxidase"],["EC%3A2.4.2.1","purine-nucleoside phosphorylase"]],"b":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Xanthine.yaml","Xanthine"]]},{"id":"CHEBI:17368","l":"hypoxanthine","na":28,"nb":2,"a":[["EC%3A1.17.1.4","xanthine dehydrogenase"],["EC%3A1.17.3.2","xanthine oxidase"],["EC%3A2.4.2.44","S-methyl-5'-thioinosine phosphorylase"],["EC%3A2.4.2.8","hypoxanthine phosphoribosyltransferase"],["EC%3A3.2.2.12","inosinate nucleosidase"],["EC%3A3.2.2.2","inosine nucleosidase"]],"b":[["mapped/Hypoxanthine.yaml","Hypoxanthine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:16235","l":"guanine","na":27,"nb":2,"a":[["EC%3A2.4.2.1","purine-nucleoside phosphorylase"],["EC%3A2.4.2.15","guanosine phosphorylase"],["EC%3A2.4.2.29","tRNA-guanosine(34) preQ1 transglycosylase"],["EC%3A2.4.2.48","tRNA-guanine(15) transglycosylase"],["EC%3A2.4.2.64","tRNA-guanosine(34) queuine transglycosylase"],["EC%3A2.4.2.8","hypoxanthine phosphoribosyltransferase"]],"b":[["mapped/Guanine.yaml","Guanine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:16704","l":"uridine","na":26,"nb":2,"a":[["EC%3A1.14.11.3","pyrimidine-deoxynucleoside 2'-dioxygenase"],["EC%3A2.4.2.2","pyrimidine-nucleoside phosphorylase"],["EC%3A2.4.2.3","uridine phosphorylase"],["EC%3A2.7.1.48","uridine/cytidine kinase"],["EC%3A3.2.2.3","uridine nucleosidase"],["EC%3A3.2.2.8","ribosylpyrimidine nucleosidase"]],"b":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Uridine.yaml","Uridine"]]},{"id":"CHEBI:17562","l":"cytidine","na":25,"nb":2,"a":[["EC%3A2.7.1.213","cytidine kinase"],["EC%3A2.7.1.48","uridine/cytidine kinase"],["EC%3A3.1.3.91","7-methylguanosine nucleotidase"],["EC%3A3.2.2.8","ribosylpyrimidine nucleosidase"],["EC%3A3.5.1.135","N(4)-acetylcytidine amidohydrolase"],["EC%3A3.5.4.5","cytidine deaminase"]],"b":[["mapped/Cytidine.yaml","Cytidine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:26833","l":"sulfur atom","na":24,"nb":2,"a":[["EC%3A1.12.98.4","sulfhydrogenase"],["EC%3A1.13.11.55","sulfur oxygenase/reductase"],["EC%3A1.8.1.18","NAD(P)H sulfur oxidoreductase (CoA-dependent)"],["EC%3A1.8.1.19","sulfide dehydrogenase"],["EC%3A1.8.2.3","sulfide-cytochrome-c reductase (flavocytochrome c)"],["EC%3A1.8.2.7","thiocyanate desulfurase"]],"b":[["mapped/Sulfur.yaml","Sulfur"],["mapped/Yeast_Extract_Sulfur.yaml","Yeast Extract + Sulfur"]]},{"id":"CHEBI:24996","l":"lactate","na":23,"nb":2,"a":[["EC%3A1.1.1.436","lactate dehydrogenase (NAD(+),ferredoxin)"],["EC%3A3.5.1.124","protein deglycase"],["RHEA%3A57300","an N(2)-(1-hydroxy-2-oxopropyl)-2'-deoxyguanosine in DNA + H2O = a 2'-deoxyguanosine in DNA + lactate + H(+)"],["RHEA%3A57288","an N(2)-(1-hydroxy-2-oxopropyl)-guanosine in RNA + H2O = a guanosine in RNA + lactate + H(+)"],["RHEA%3A46964","lactate + 2 reduced [2Fe-2S]-[ferredoxin] + 2 NAD(+) = 2 oxidized [2Fe-2S]-[ferredoxin] + pyruvate + 2 NADH"],["RHEA%3A57244","N(2)-(1-hydroxy-2-oxopropyl)-dGTP + H2O = lactate + dGTP + H(+)"]],"b":[["mapped/Glucose_Lactate.yaml","Glucose + Lactate"],["mapped/Lactate.yaml","Lactate"]]},{"id":"CHEBI:18391","l":"D-gluconate","na":21,"nb":2,"a":[["EC%3A1.1.1.215","gluconate 2-dehydrogenase"],["EC%3A1.1.1.69","gluconate 5-dehydrogenase"],["EC%3A1.1.99.3","gluconate 2-dehydrogenase (acceptor)"],["EC%3A2.4.1.321","cellobionic acid phosphorylase"],["EC%3A2.7.1.12","gluconokinase"],["EC%3A3.1.1.17","gluconolactonase"]],"b":[["mapped/D-gluconate.yaml","D-gluconate"],["mapped/Yeast_Extract_Gluconate.yaml","Yeast Extract + Gluconate"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":21,"nb":2,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29108","requires calcium(2+)"],["EC%3A1.13.12.24","calcium-regulated photoprotein"],["EC%3A7.2.2.10","P-type Ca(2+) transporter"],["RHEA%3A72631","3 Li(+)(out) + Ca(2+)(in) = 3 Li(+)(in) + Ca(2+)(out)"],["RHEA%3A55884","[aequorin] + 3 Ca(2+) = [aequorin]--dioxetanone"],["RHEA%3A55888","[aequorin]--dioxetanone = excited state-[aequorin] + CO2"]],"b":[["mapped/Calcium%282%29.yaml","Calcium(2+)"],["mapped/Calcium.yaml","Calcium"]]},{"id":"CHEBI:17821","l":"thymine","na":20,"nb":2,"a":[["EC%3A1.14.11.6","thymine dioxygenase"],["EC%3A1.14.99.46","pyrimidine monooxygenase"],["EC%3A1.17.99.4","uracil/thymine dehydrogenase"],["EC%3A1.3.1.1","dihydrouracil dehydrogenase (NAD(+))"],["EC%3A1.3.1.2","dihydropyrimidine dehydrogenase (NADP(+))"],["EC%3A2.4.2.2","pyrimidine-nucleoside phosphorylase"]],"b":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Thymine.yaml","Thymine"]]},{"id":"CHEBI:18420","l":"","na":20,"nb":2,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18420","requires magnesium(2+)"],["EC%3A4.99.1.10","magnesium dechelatase"],["EC%3A6.6.1.1","magnesium chelatase"],["EC%3A7.2.2.14","P-type Mg(2+) transporter"],["RHEA%3A52788","chlorophyll a + 2 H(+) = pheophytin a + Mg(2+)"],["RHEA%3A52792","chlorophyllide a + 2 H(+) = pheophorbide a + Mg(2+)"]],"b":[["mapped/Magnesium%282%29.yaml","Magnesium(2+)"],["mapped/Magnesium.yaml","Magnesium"]]},{"id":"CHEBI:16750","l":"guanosine","na":19,"nb":2,"a":[["EC%3A2.4.2.1","purine-nucleoside phosphorylase"],["EC%3A2.4.2.15","guanosine phosphorylase"],["EC%3A2.7.1.73","inosine kinase"],["EC%3A3.5.4.15","guanosine deaminase"],["RHEA%3A27862","3'-GMP + H2O = guanosine + phosphate"],["RHEA%3A27714","GMP + H2O = guanosine + phosphate"]],"b":[["mapped/Guanosine.yaml","Guanosine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:18385","l":"thiamine(1+)","na":19,"nb":2,"a":[["EC%3A1.1.3.23","thiamine oxidase"],["EC%3A2.5.1.2","thiamine pyridinylase"],["EC%3A2.7.1.89","thiamine kinase"],["EC%3A2.7.6.2","thiamine diphosphokinase"],["EC%3A3.1.3.100","thiamine phosphate phosphatase"],["EC%3A3.5.99.2","aminopyrimidine aminohydrolase"]],"b":[["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Thiamine.yaml","Thiamine"]]},{"id":"CHEBI:16040","l":"cytosine","na":17,"nb":2,"a":[["EC%3A2.4.2.57","AMP phosphorylase"],["EC%3A3.2.2.10","pyrimidine-5'-nucleotide nucleosidase"],["EC%3A3.2.2.8","ribosylpyrimidine nucleosidase"],["EC%3A3.5.1.135","N(4)-acetylcytidine amidohydrolase"],["EC%3A3.5.4.1","cytosine deaminase"],["RHEA%3A30075","CMP + H2O = cytosine + D-ribose 5-phosphate"]],"b":[["mapped/Cytosine.yaml","Cytosine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:16899","l":"D-mannitol","na":17,"nb":2,"a":[["EC%3A1.1.1.138","mannitol 2-dehydrogenase (NADP(+))"],["EC%3A1.1.1.255","mannitol dehydrogenase"],["EC%3A1.1.1.67","mannitol 2-dehydrogenase"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.3.40","D-mannitol oxidase"],["EC%3A2.7.1.197","protein-N(pi)-phosphohistidine--D-mannitol phosphotransferase"]],"b":[["mapped/D-mannitol.yaml","D-Mannitol"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:28885","l":"butan-1-ol","na":16,"nb":2,"a":[["EC%3A1.1.2.9","1-butanol dehydrogenase (cytochrome c)"],["EC%3A1.1.5.11","1-butanol dehydrogenase (quinone)"],["EC%3A1.14.13.230","butane monooxygenase (soluble)"],["RHEA%3A64672","2-(methylsulfanyl)acetyl-CoA + butan-1-ol = butyl 2-(methylsulfanyl)acetate + CoA"],["RHEA%3A64676","3-(methylsulfanyl)propanoyl-CoA + butan-1-ol = butyl 3-(methylsulfanyl)propanoate + CoA"],["RHEA%3A43432","butan-1-ol + 2 Fe(III)-[cytochrome c] = butanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"]],"b":[["mapped/1-butanolCO2.yaml","1-butanol+CO2"],["mapped/Butanol.yaml","Butanol"]]},{"id":"CHEBI:29032","l":"(R)-pantothenate","na":15,"nb":2,"a":[["EC%3A2.7.1.33","pantothenate kinase"],["EC%3A3.5.1.22","pantothenase"],["EC%3A3.5.1.92","pantetheine hydrolase"],["EC%3A6.3.2.1","pantoate--beta-alanine ligase (AMP-forming)"],["EC%3A6.3.2.44","pantoate--beta-alanine ligase (ADP-forming)"],["RHEA%3A68332","(R)-4'-phosphopantothenate + H2O = (R)-pantothenate + phosphate"]],"b":[["mapped/Ca-pantothenate.yaml","Ca-pantothenate"],["mapped/Calcium_Pantothenate.yaml","Calcium pantothenate"]]},{"id":"CHEBI:17256","l":"","na":13,"nb":2,"a":[["EC%3A2.7.1.76","deoxyadenosine kinase"],["EC%3A3.5.4.4","adenosine deaminase"],["RHEA%3A23452","2'-deoxyadenosine + ATP = dAMP + ADP + H(+)"],["RHEA%3A28190","2'-deoxyadenosine + H2O + H(+) = 2'-deoxyinosine + NH4(+)"],["RHEA%3A75691","2'-deoxyadenosine(in) = 2'-deoxyadenosine(out)"],["RHEA%3A29979","2'-deoxyadenosine(in) + H(+)(in) = 2'-deoxyadenosine(out) + H(+)(out)"]],"b":[["mapped/2-Deoxyadenosine_Monohydrate.yaml","2-Deoxyadenosine monohydrate"],["mapped/2-deoxyadenosine.yaml","2-deoxyadenosine"]]},{"id":"CHEBI:29987","l":"","na":13,"nb":2,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.23","The Dicarboxylate/Amino Acid:Cation (Na+ or H+) Symporter (DAACS) Family"],["TCDB%3A2.A.47","The Divalent Anion:Na+ Symporter (DASS) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A1.A.24","The Gap Junction-forming Connexin (Connexin) Family"]],"b":[["mapped/Aspartate.yaml","Aspartate"],["mapped/Glutamate.yaml","Glutamate"]]},{"id":"CHEBI:25107","l":"''magnesium atom''","na":11,"nb":2,"a":[["proteintraitsmech%3AMETALPDB_MG_DECANUCLEAR","decanuclear magnesium site"],["proteintraitsmech%3AMETALPDB_MG_DINUCLEAR","dinuclear magnesium site"],["proteintraitsmech%3AMETALPDB_MG_HEPTANUCLEAR","heptanuclear magnesium site"],["proteintraitsmech%3AMETALPDB_MG_HEXANUCLEAR","hexanuclear magnesium site"],["proteintraitsmech%3AMETALPDB_MG_MONONUCLEAR","mononuclear magnesium site"],["proteintraitsmech%3AMETALPDB_MG_MULTINUCLEAR","multinuclear magnesium site"]],"b":[["mapped/Magnesium%282%29.yaml","Magnesium(2+)"],["mapped/Magnesium.yaml","Magnesium"]]},{"id":"CHEBI:22984","l":"''calcium atom''","na":10,"nb":2,"a":[["TCDB%3A1.A.10","The Glutamate-gated Ion Channel (GIC) Family of Neurotransmitter Receptors"],["TCDB%3A1.A.77","The Mg2+/Ca2+ Uniporter (MCU) Family"],["proteintraitsmech%3AMETALPDB_CA_DINUCLEAR","dinuclear calcium site"],["proteintraitsmech%3AMETALPDB_CA_HEPTANUCLEAR","heptanuclear calcium site"],["proteintraitsmech%3AMETALPDB_CA_HEXANUCLEAR","hexanuclear calcium site"],["proteintraitsmech%3AMETALPDB_CA_MONONUCLEAR","mononuclear calcium site"]],"b":[["mapped/Calcium%282%29.yaml","Calcium(2+)"],["mapped/Calcium.yaml","Calcium"]]},{"id":"CHEBI:30924","l":"","na":10,"nb":2,"a":[["EC%3A1.1.1.93","tartrate dehydrogenase"],["EC%3A4.1.1.73","tartrate decarboxylase"],["EC%3A4.2.1.32","L(+)-tartrate dehydratase"],["EC%3A5.1.2.5","tartrate epimerase"],["RHEA%3A22212","(2R,3R)-tartrate = (2R,3S)-tartrate"],["RHEA%3A13317","(2R,3R)-tartrate + H(+) = (R)-glycerate + CO2"]],"b":[["mapped/Na-tartrate.yaml","Na-tartrate"],["mapped/Sodium_Tartrate.yaml","Sodium tartrate"]]},{"id":"CHEBI:18107","l":"xanthosine","na":9,"nb":2,"a":[["EC%3A2.1.1.158","7-methylxanthosine synthase"],["EC%3A2.4.2.1","purine-nucleoside phosphorylase"],["EC%3A3.5.4.15","guanosine deaminase"],["RHEA%3A12861","guanosine + H2O + H(+) = xanthosine + NH4(+)"],["RHEA%3A27994","xanthosine + H2O = D-ribose + xanthine"],["RHEA%3A28939","xanthosine(in) + H(+)(in) = xanthosine(out) + H(+)(out)"]],"b":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Xanthosine.yaml","Xanthosine"]]},{"id":"CHEBI:4735","l":"ethylenediaminetetraacetic acid","na":2,"nb":9,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["proteintraitsmech%3ABIOLIP_EDT","EDT-binding site"]],"b":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/EDTA_Tetrasodium_Tetrahydrate_Salt.yaml","EDTA tetrasodium tetrahydrate salt"],["mapped/Edta.yaml","EDTA"],["mapped/Edta_Acid_Form.yaml","EDTA (acid form)"],["mapped/Edta_Chelating_Agent.yaml","EDTA (chelating agent)"],["mapped/UW_Concentrated_Base.yaml","UW concentrated base"]]},{"id":"CHEBI:10642","l":"","na":8,"nb":2,"a":[["EC%3A1.1.1.370","scyllo-inositol 2-dehydrogenase (NAD(+))"],["EC%3A1.1.1.371","scyllo-inositol 2-dehydrogenase (NADP(+))"],["RHEA%3A82131","scyllo-inositol 1-phosphate + H2O = scyllo-inositol + phosphate"],["RHEA%3A17613","scyllo-inositol + NAD(+) = scyllo-inosose + NADH + H(+)"],["RHEA%3A39063","scyllo-inositol + NADP(+) = scyllo-inosose + NADPH + H(+)"],["RHEA%3A72991","scyllo-inositol(out) + 2 Na(+)(out) = scyllo-inositol(in) + 2 Na(+)(in)"]],"b":[["mapped/M-inositol.yaml","m-Inositol"],["mapped/Myo-inositol.yaml","myo-Inositol"]]},{"id":"CHEBI:35195","l":"surfactant","na":2,"nb":8,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.A.16","The Formate-Nitrite Transporter (FNT) Family"]],"b":[["mapped/Benzalkonium_Chloride.yaml","Benzalkonium Chloride"],["mapped/Cetrimonium_Bromide.yaml","Cetrimonium bromide"],["mapped/Na-laurate.yaml","Na-laurate"],["mapped/Na-stearate.yaml","Na-stearate"],["mapped/Rhamnolipid.yaml","Rhamnolipid"],["mapped/Sodium_Dodecyl_Sulfate.yaml","Sodium Dodecyl Sulfate"]]},{"id":"CHEBI:9532","l":"thiamine(1+) diphosphate","na":8,"nb":2,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_9532","requires thiamine(1+) diphosphate"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["mapped/02_Thiamine_Pyrophosphate.yaml","0.2% Thiamine pyrophosphate"],["mapped/Thiamine_pyrophosphate.yaml","Thiamine pyrophosphate"]]},{"id":"CHEBI:15940","l":"nicotinic acid","na":2,"nb":7,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15940","requires nicotinic acid"],["proteintraitsmech%3ABIOLIP_NIO","NIO-binding site"]],"b":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/Nicotinic_Acid.yaml","Nicotinic acid"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Thauers_Vitamin_Mix_No_Biotin.yaml","Thauer's vitamin mix no Biotin"]]},{"id":"CHEBI:17824","l":"propan-2-ol","na":7,"nb":2,"a":[["EC%3A1.1.1.80","isopropanol dehydrogenase (NADP(+))"],["EC%3A1.14.13.227","propane 2-monooxygenase"],["RHEA%3A62196","propan-2-ol + 2 Fe(III)-[cytochrome c] = acetone + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A41984","propan-2-ol + NAD(+) = acetone + NADH + H(+)"],["RHEA%3A21792","propan-2-ol + NADP(+) = acetone + NADPH + H(+)"],["RHEA%3A49992","propane + NADH + O2 + H(+) = propan-2-ol + NAD(+) + H2O"]],"b":[["mapped/2-propanolCO2.yaml","2-propanol+CO2"],["mapped/Isopropyl_Alcohol.yaml","Isopropyl alcohol"]]},{"id":"CHEBI:28831","l":"","na":7,"nb":2,"a":[["RHEA%3A62204","1-propanol + 2 Fe(III)-[cytochrome c] = propanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A65468","1-propanol + acetyl-CoA = propyl acetate + CoA"],["RHEA%3A65476","1-propanol + butanoyl-CoA = propyl butanoate + CoA"],["RHEA%3A50704","1-propanol + NAD(+) = propanal + NADH + H(+)"],["RHEA%3A64712","1-propanol + NADP(+) = propanal + NADPH + H(+)"],["MCSA%3A407","carboxylesterase"]],"b":[["mapped/1-propanolCO2.yaml","1-propanol+CO2"],["mapped/Propan-1-ol.yaml","Propan-1-ol"]]},{"id":"CHEBI:30753","l":"4-aminobenzoic acid","na":2,"nb":7,"a":[["TCDB%3A2.A.71","The Folate-Biopterin Transporter (FBT) Family"],["proteintraitsmech%3ABIOLIP_PAB","PAB-binding site"]],"b":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/P-aminobenzoic_Acid.yaml","p-Aminobenzoic acid"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Thauers_Vitamin_Mix_No_Biotin.yaml","Thauer's vitamin mix no Biotin"]]},{"id":"CHEBI:15956","l":"biotin","na":2,"nb":6,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15956","requires biotin"],["proteintraitsmech%3ABIOLIP_BTN","BTN-binding site"]],"b":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/Biotin.yaml","Biotin"],["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Wolfes_Vitamin_Mix.yaml","Wolfe's vitamin mix"]]},{"id":"CHEBI:18394","l":"6-O-alpha-D-glucopyranosyl-D-fructofuranose","na":6,"nb":2,"a":[["EC%3A3.2.1.219","palatinase"],["EC%3A5.4.99.11","isomaltulose synthase"],["RHEA%3A68808","6-O-alpha-D-glucopyranosyl-D-fructose + H2O = alpha-D-glucose + D-fructose"],["RHEA%3A24032","sucrose = 6-O-alpha-D-glucopyranosyl-D-fructose"],["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"],["MCSA%3A582","isomaltulose synthase"]],"b":[["mapped/Palatinose.yaml","Palatinose"],["mapped/Palatinose_Hydrate.yaml","palatinose hydrate"]]},{"id":"CHEBI:28645","l":"beta-D-fructofuranose","na":6,"nb":2,"a":[["EC%3A2.7.1.3","ketohexokinase"],["EC%3A3.2.1.48","sucrose alpha-glucosidase"],["RHEA%3A18145","beta-D-fructose + ATP = beta-D-fructose 1-phosphate + ADP + H(+)"],["RHEA%3A33791","sucrose 6(F)-phosphate + H2O = beta-D-fructose + beta-D-glucose 6-phosphate"],["RHEA%3A33795","sucrose + H2O = beta-D-fructose + alpha-D-glucose"],["proteintraitsmech%3ABIOLIP_FRU","FRU-binding site"]],"b":[["mapped/Fructooligosaccharides_Fos.yaml","Fructooligosaccharides (FOS)"],["mapped/Fructose.yaml","Fructose"]]},{"id":"CHEBI:16856","l":"glutathione","na":4,"nb":2,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16856","requires glutathione"],["MCSA%3A359","lactoglutathione lyase"],["MCSA%3A32","lactoylglutathione lyase"],["proteintraitsmech%3ABIOLIP_GSH","GSH-binding site"]],"b":[["mapped/Glutathione.yaml","Glutathione"],["mapped/L-Glutathione.yaml","L-Glutathione"]]},{"id":"CHEBI:17895","l":"L-tyrosine","na":2,"nb":4,"a":[["MCSA%3A638","neurolysin"],["proteintraitsmech%3ABIOLIP_TYR","TYR-binding site"]],"b":[["mapped/DL-Tyrosine.yaml","DL-Tyrosine"],["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-tyrosine.yaml","L-Tyrosine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:24265","l":"","na":4,"nb":2,"a":[["TCDB%3A2.A.49","The Chloride Carrier/Channel (ClC) Family"],["TCDB%3A2.A.8","The Gluconate:H+ Symporter (GntP) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A4.A.6","The PTS Mannose-Fructose-Sorbose (Man) Family"]],"b":[["mapped/Gluconate.yaml","Gluconate"],["mapped/Yeast_Extract_Gluconate.yaml","Yeast Extract + Gluconate"]]},{"id":"CHEBI:28869","l":"menadione","na":4,"nb":2,"a":[["RHEA%3A35611","menadiol + 2 O2 = menadione + 2 superoxide + 2 H(+)"],["RHEA%3A69695","menadione + NADH + H(+) = menadiol + NAD(+)"],["RHEA%3A63492","menadione + NADPH + H(+) = menadiol + NADP(+)"],["proteintraitsmech%3ABIOLIP_VK3","VK3-binding site"]],"b":[["mapped/Menadione.yaml","Menadione"],["mapped/Menadione_Solution.yaml","Menadione solution"]]},{"id":"CHEBI:3508","l":"ceftazidime","na":4,"nb":2,"a":[["TCDB%3A8.A.213","The Bon Domain-containing Protein (Bon DP) Family"],["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["TCDB%3A2.C.1","The TonB-ExbB-ExbD/TolA-TolQ-TolR Outer Membrane Receptor Energizers and Stabilizers (TonB/TolA) Family"]],"b":[["mapped/Ceftazidime.yaml","Ceftazidime"],["mapped/Ceftazidime_Hydrate.yaml","Ceftazidime hydrate"]]},{"id":"CHEBI:36361","l":"phosphorous acid","na":4,"nb":2,"a":[["EC%3A1.20.1.1","phosphite dehydrogenase"],["RHEA%3A86123","phosphite + AMP + NAD(+) = ADP + NADH + 2 H(+)"],["RHEA%3A13173","phosphite + NAD(+) + H2O = phosphate + NADH + 3 H(+)"],["RHEA%3A48972","phosphite(out) + ATP + H2O = phosphite(in) + ADP + phosphate + H(+)"]],"b":[["mapped/Phosphorous_Acid.yaml","phosphorous acid"],["mapped/Sodium_Phosphite_Dibasic_Pentahydrate.yaml","Sodium phosphite dibasic pentahydrate"]]},{"id":"CHEBI:46020","l":"tetramethylammonium","na":2,"nb":4,"a":[["EC%3A2.1.1.252","tetramethylammonium--corrinoid protein Co-methyltransferase"],["RHEA%3A59856","tetramethylammonium + Co(I)-[tetramethylammonium-specific corrinoid protein] + H(+) = methyl-Co(III)-[tetramethylammonium-specific corrinoid protein] + trimethylamine"]],"b":[["mapped/Formatetetramethylammonium.yaml","Formate+tetramethylammonium"],["mapped/H2tetramethylammonium.yaml","H2+tetramethylammonium"],["mapped/Tetramethyl_Ammonium.yaml","Tetramethyl ammonium"],["mapped/Tetramethyl_Ammonium_Chloride.yaml","Tetramethyl ammonium chloride"]]},{"id":"CHEBI:16414","l":"L-valine","na":2,"nb":3,"a":[["MCSA%3A798","t-plasminogen activator"],["proteintraitsmech%3ABIOLIP_VAL","VAL-binding site"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-valine.yaml","L-Valine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:17164","l":"stachyose","na":3,"nb":2,"a":[["EC%3A2.4.1.67","galactinol--raffinose galactosyltransferase"],["RHEA%3A20776","alpha-D-galactosyl-(1->3)-1D-myo-inositol + raffinose = stachyose + myo-inositol"],["RHEA%3A70279","stachyose + H2O = raffinose + D-galactose"]],"b":[["mapped/Stachyose_-_70.yaml","Stachyose - 70%"],["mapped/Stachyose_Hydrate.yaml","Stachyose hydrate"]]},{"id":"CHEBI:17196","l":"L-asparagine","na":2,"nb":3,"a":[["MCSA%3A596","deuterolysin"],["proteintraitsmech%3ABIOLIP_ASN","ASN-binding site"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-asparagine.yaml","L-Asparagine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:18237","l":"glutamic acid","na":3,"nb":2,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["mapped/4_Carbon_Mix.yaml","4 Carbon Mix"],["mapped/Glutamic_Acid.yaml","Glutamic acid"]]},{"id":"CHEBI:30314","l":"(R)-lipoic acid","na":2,"nb":3,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_30314","requires (R)-lipoic acid"],["proteintraitsmech%3ABIOLIP_LPA","LPA-binding site"]],"b":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/Thioctic_Acid.yaml","Thioctic acid"],["mapped/Wolfes_Vitamin_Mix.yaml","Wolfe's vitamin mix"]]},{"id":"CHEBI:15729","l":"L-ornithine","na":2,"nb":2,"a":[["MCSA%3A12","ornithine carbamoyltransferase"],["proteintraitsmech%3ABIOLIP_ORN","ORN-binding site"]],"b":[["mapped/L-ornithine.yaml","L-Ornithine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:15741","l":"succinic acid","na":2,"nb":2,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_SIN","SIN-binding site"]],"b":[["mapped/Sodium_Succinate_Dibasic.yaml","Sodium succinate dibasic"],["mapped/Succinic_Acid.yaml","Succinic acid"]]},{"id":"CHEBI:15930","l":"atrazine","na":2,"nb":2,"a":[["EC%3A3.8.1.8","atrazine chlorohydrolase"],["RHEA%3A11312","atrazine + H2O = hydroxyatrazine + chloride + H(+)"]],"b":[["mapped/2-chloro-4ethylamino-6-isopropylamino-135-triazine.yaml","2-chloro-4ethylamino-6-isopropylamino-1,3,5-triazine"],["mapped/Atrazin.yaml","Atrazin"]]},{"id":"CHEBI:16789","l":"aldehydo-D-lyxose","na":2,"nb":2,"a":[["EC%3A5.3.1.15","D-lyxose ketol-isomerase"],["RHEA%3A14201","D-lyxose = D-xylulose"]],"b":[["mapped/%282%29-D-lyxose.yaml","D-lyxose"],["mapped/D-_-lyxose.yaml","D-(-)-lyxose"]]},{"id":"CHEBI:17883","l":"hydrogen chloride","na":2,"nb":2,"a":[["MCSA%3A24","4-chlorobenzoyl-CoA dehalogenase"],["MCSA%3A348","chloromuconate cycloisomerase"]],"b":[["mapped/Hcl.yaml","HCl"],["mapped/Trace_Element_Solution_SL-10.yaml","Trace element solution SL-10"]]},{"id":"CHEBI:17909","l":"polysulfur","na":2,"nb":2,"a":[["EC%3A1.8.5.4","bacterial sulfide:quinone reductase"],["RHEA%3A30239","n a quinone + n hydrogen sulfide + n H(+) = polysulfur(n-2) + n a quinol"]],"b":[["mapped/Sulfur_Powder.yaml","Sulfur (powder)"],["mapped/Sulphur.yaml","Sulphur"]]},{"id":"CHEBI:28757","l":"fructose","na":2,"nb":2,"a":[["GO%3A0070061","fructose binding"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Fructose.yaml","Fructose"],["mapped/PY-fructose.yaml","PY-fructose"]]},{"id":"CHEBI:33697","l":"ribonucleic acid","na":2,"nb":2,"a":[["TCDB%3A1.A.79","The Cholesterol Uptake Protein (ChUP) or Double Stranded RNA Uptake Family"],["proteintraitsmech%3ABIOLIP_RNA","RNA-binding site"]],"b":[["mapped/Ribonucleic_Acid_From_Torula_Yeast_Type_VI.yaml","Ribonucleic acid from torula yeast type VI"],["mapped/Rna.yaml","Rna"]]},{"id":"CHEBI:42758","l":"'aldehydo-D-glucose'","na":2,"nb":2,"a":[["RHEA%3A15665","aldehydo-D-glucose + L-lysyl-[protein] = N(6)-(D-fructosyl)-L-lysyl-[protein] + H2O"],["proteintraitsmech%3ABIOLIP_GLO","GLO-binding site"]],"b":[["mapped/Glucose.yaml","Glucose"],["mapped/Glucose_2.yaml","glucose"]]},{"id":"CHEBI:4853","l":"'esculin'","na":2,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.V.1","The Filamentous Cyanobacterial Septal Pore (Septum) Family"]],"b":[["mapped/Esculin_Ferric_Citrate.yaml","Esculin Ferric Citrate"],["mapped/Esculin_Monohydrate.yaml","Esculin Monohydrate"]]},{"id":"CHEBI:15379","l":"dioxygen","na":3896,"nb":1,"a":[["EC%3A1.1.3.10","pyranose oxidase"],["EC%3A1.1.3.11","L-sorbose oxidase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.3.13","alcohol oxidase"],["EC%3A1.1.3.14","catechol oxidase (dimerizing)"],["EC%3A1.1.3.15","(S)-2-hydroxy-acid oxidase"]],"b":[["mapped/Dioxygen.yaml","Dioxygen"]]},{"id":"CHEBI:28938","l":"ammonium","na":837,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_28938","requires ammonium"],["EC%3A1.13.12.15","3,4-dihydroxyphenylalanine oxidative deaminase"],["EC%3A1.13.99.3","tryptophan 2'-dioxygenase"],["EC%3A1.14.11.37","kanamycin B dioxygenase"],["EC%3A1.14.12.1","anthranilate 1,2-dioxygenase (deaminating, decarboxylating)"],["EC%3A1.14.12.14","2-aminobenzenesulfonate 2,3-dioxygenase"]],"b":[["mapped/Ammonium.yaml","Ammonium"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":680,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16240","requires hydrogen peroxide"],["EC%3A1.1.3.10","pyranose oxidase"],["EC%3A1.1.3.11","L-sorbose oxidase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.3.13","alcohol oxidase"],["EC%3A1.1.3.15","(S)-2-hydroxy-acid oxidase"]],"b":[["mapped/Hydrogen_Peroxide.yaml","Hydrogen peroxide"]]},{"id":"CHEBI:16810","l":"2-oxoglutarate(2-)","na":672,"nb":1,"a":[["EC%3A1.1.1.286","isocitrate--homoisocitrate dehydrogenase"],["EC%3A1.1.1.399","2-oxoglutarate reductase"],["EC%3A1.1.1.41","isocitrate dehydrogenase (NAD(+))"],["EC%3A1.1.1.42","isocitrate dehydrogenase (NADP(+))"],["EC%3A1.1.5.13","(S)-2-hydroxyglutarate dehydrogenase"],["EC%3A1.1.99.2","L-2-hydroxyglutarate dehydrogenase"]],"b":[["mapped/Na2_Alpha-ketoglutarate.yaml","Na2 alpha-ketoglutarate"]]},{"id":"CHEBI:15361","l":"pyruvate","na":410,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15361","requires pyruvate"],["EC%3A1.1.1.27","L-lactate dehydrogenase"],["EC%3A1.1.1.28","D-lactate dehydrogenase"],["EC%3A1.1.1.38","malate dehydrogenase (oxaloacetate-decarboxylating)"],["EC%3A1.1.1.39","malate dehydrogenase (decarboxylating)"],["EC%3A1.1.1.40","malate dehydrogenase (oxaloacetate-decarboxylating) (NADP(+))"]],"b":[["mapped/Pyruvate.yaml","Pyruvate"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":396,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29033","requires iron(2+)"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.11","glucoside 3-dehydrogenase (cytochrome c)"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.2.3","L-lactate dehydrogenase (cytochrome)"],["EC%3A1.1.2.4","D-lactate dehydrogenase (cytochrome)"]],"b":[["mapped/Ferrous_Ion.yaml","Ferrous Ion"]]},{"id":"CHEBI:29101","l":"sodium(1+)","na":292,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29101","requires sodium(1+)"],["EC%3A7.2.1.1","NADH:ubiquinone reductase (Na(+)-transporting)"],["EC%3A7.2.1.2","ferredoxin--NAD(+) oxidoreductase (Na(+)-transporting)"],["EC%3A7.2.1.4","tetrahydromethanopterin S-methyltransferase"],["EC%3A7.2.2.1","Na(+)-transporting two-sector ATPase"],["EC%3A7.2.2.13","Na(+)/K(+)-exchanging ATPase"]],"b":[["mapped/Sodium%28%29.yaml","Sodium(+)"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":212,"nb":1,"a":[["EC%3A1.1.1.244","methanol dehydrogenase"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.99.37","methanol dehydrogenase (nicotinoprotein)"],["EC%3A1.13.11.94","4-vinylguaiacol dioxygenase"],["EC%3A1.14.11.27","[histone H3]-dimethyl-L-lysine(36) demethylase"]],"b":[["mapped/Formaldehyde.yaml","Formaldehyde"]]},{"id":"CHEBI:17996","l":"chloride","na":196,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17996","requires chloride"],["EC%3A1.11.2.2","myeloperoxidase"],["EC%3A1.13.11.49","chlorite O2-lyase"],["EC%3A1.14.12.13","2-halobenzoate 1,2-dioxygenase"],["EC%3A1.14.12.9","4-chlorophenylacetate 3,4-dioxygenase"],["EC%3A1.14.13.50","pentachlorophenol monooxygenase"]],"b":[["mapped/Cl.yaml","Cl-"]]},{"id":"CHEBI:16189","l":"sulfate","na":133,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16189","requires sulfate"],["EC%3A1.14.11.77","alkyl sulfatase"],["EC%3A1.8.2.1","sulfite dehydrogenase (cytochrome)"],["EC%3A1.8.3.1","sulfite oxidase"],["EC%3A1.8.5.6","sulfite dehydrogenase (quinone)"],["EC%3A2.7.7.4","sulfate adenylyltransferase"]],"b":[["mapped/Sulfate.yaml","Sulfate"]]},{"id":"CHEBI:36655","l":"","na":132,"nb":1,"a":[["EC%3A1.1.1.26","glyoxylate reductase"],["EC%3A1.1.1.79","glyoxylate reductase (NADP(+))"],["EC%3A1.1.3.15","(S)-2-hydroxy-acid oxidase"],["EC%3A1.1.99.14","glycolate dehydrogenase"],["EC%3A1.14.14.10","nitrilotriacetate monooxygenase"],["EC%3A1.14.14.33","ethylenediaminetetraacetate monooxygenase"]],"b":[["mapped/Glyoxylate.yaml","Glyoxylate"]]},{"id":"CHEBI:29991","l":"","na":130,"nb":1,"a":[["EC%3A1.14.13.248","L-aspartate N-monooxygenase (nitrosuccinate-forming)"],["EC%3A1.4.1.21","aspartate dehydrogenase"],["EC%3A1.4.1.29","iminosuccinate reductase"],["EC%3A1.4.3.16","L-aspartate oxidase"],["EC%3A2.1.3.2","aspartate carbamoyltransferase"],["EC%3A2.3.1.17","aspartate N-acetyltransferase"]],"b":[["mapped/L-aspartate.yaml","L-aspartate"]]},{"id":"CHEBI:16301","l":"nitrite","na":116,"nb":1,"a":[["EC%3A1.13.11.64","5-nitrosalicylate dioxygenase"],["EC%3A1.13.12.16","nitronate monooxygenase"],["EC%3A1.14.12.23","nitroarene dioxygenase"],["EC%3A1.14.12.24","2,4-dinitrotoluene dioxygenase"],["EC%3A1.14.13.166","4-nitrocatechol 4-monooxygenase"],["EC%3A1.14.13.167","4-nitrophenol 4-monooxygenase"]],"b":[["mapped/Nitrite.yaml","Nitrite"]]},{"id":"CHEBI:17359","l":"sulfite","na":109,"nb":1,"a":[["EC%3A1.13.11.18","persulfide dioxygenase"],["EC%3A1.13.11.55","sulfur oxygenase/reductase"],["EC%3A1.14.11.17","taurine dioxygenase"],["EC%3A1.14.12.8","4-sulfobenzoate 3,4-dioxygenase"],["EC%3A1.14.13.111","methanesulfonate monooxygenase (NADH)"],["EC%3A1.14.14.181","sulfoquinovose monooxygenase"]],"b":[["mapped/Sulfite.yaml","Sulfite"]]},{"id":"CHEBI:7896","l":"","na":106,"nb":1,"a":[["EC%3A1.11.1.3","fatty-acid peroxidase"],["EC%3A1.13.11.92","fatty acid alpha-dioxygenase"],["EC%3A1.14.14.80","long-chain fatty acid omega-monooxygenase"],["EC%3A3.1.1.63","11-cis-retinyl-palmitate hydrolase"],["EC%3A3.1.1.64","retinoid isomerohydrolase"],["EC%3A3.1.2.14","oleoyl-[acyl-carrier-protein] hydrolase"]],"b":[["mapped/Hexadecanoate.yaml","Hexadecanoate"]]},{"id":"CHEBI:57912","l":"L-tryptophan zwitterion","na":103,"nb":1,"a":[["EC%3A1.11.2.8","L-tryptophan 5-peroxygenase"],["EC%3A1.13.11.11","tryptophan 2,3-dioxygenase"],["EC%3A1.13.11.52","indoleamine 2,3-dioxygenase"],["EC%3A1.13.12.3","tryptophan 2-monooxygenase"],["EC%3A1.13.99.3","tryptophan 2'-dioxygenase"],["EC%3A1.14.14.156","tryptophan N-monooxygenase"]],"b":[["mapped/Dl-tryptophan.yaml","DL-Tryptophan"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":93,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17544","requires hydrogencarbonate"],["EC%3A1.13.11.73","methylphosphonate synthase"],["EC%3A1.2.1.27","methylmalonate-semialdehyde dehydrogenase (CoA acylating)"],["EC%3A2.5.1.120","aminodeoxyfutalosine synthase"],["EC%3A2.5.1.143","pyridinium-3,5-biscarboxylic acid mononucleotide synthase"],["EC%3A2.7.2.2","carbamate kinase"]],"b":[["mapped/Bicarbonate.yaml","Bicarbonate"]]},{"id":"CHEBI:15343","l":"acetaldehyde","na":88,"nb":1,"a":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.5.5","alcohol dehydrogenase (quinone)"],["EC%3A1.1.99.36","alcohol dehydrogenase (nicotinoprotein)"],["EC%3A1.13.11.88","isoeugenol monooxygenase"],["EC%3A1.13.12.16","nitronate monooxygenase"],["EC%3A1.2.1.10","acetaldehyde dehydrogenase (acetylating)"]],"b":[["mapped/Acetaldehyde.yaml","acetaldehyde"]]},{"id":"CHEBI:16646","l":"carbohydrate","na":1,"nb":80,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16646","requires pantothenate"]],"b":[["mapped/1-Kestose.yaml","1-Kestose"],["mapped/2-Deoxy-D-Ribose.yaml","2-Deoxy-D-Ribose"],["mapped/2-Deoxy-D-glucose.yaml","2-Deoxy-D-glucose"],["mapped/2-fucosyllactose.yaml","2'-fucosyllactose"],["mapped/A-Cyclodextrin.yaml","a-Cyclodextrin"],["mapped/Agarose.yaml","Agarose"]]},{"id":"CHEBI:29806","l":"fumarate(2-)","na":76,"nb":1,"a":[["EC%3A1.3.1.6","fumarate reductase (NADH)"],["EC%3A1.3.2.4","fumarate reductase (cytochrome)"],["EC%3A1.3.4.1","fumarate reductase (CoM/CoB)"],["EC%3A1.3.5.1","succinate dehydrogenase"],["EC%3A1.3.98.1","dihydroorotate oxidase (fumarate)"],["EC%3A3.7.1.14","2-hydroxy-6-oxonona-2,4-dienedioate hydrolase"]],"b":[["mapped/Fumarate.yaml","Fumarate"]]},{"id":"CHEBI:17509","l":"","na":64,"nb":1,"a":[["EC%3A2.3.1.184","acyl-homoserine-lactone synthase"],["EC%3A2.3.1.228","isovaleryl-homoserine lactone synthase"],["EC%3A2.3.1.229","4-coumaroyl-homoserine lactone synthase"],["EC%3A2.4.2.28","S-methyl-5'-thioadenosine phosphorylase"],["EC%3A2.5.1.104","N(1)-aminopropylagmatine synthase"],["EC%3A2.5.1.108","2-(3-amino-3-carboxypropyl)histidine synthase"]],"b":[["mapped/5-deoxy-5-_Methylthioadenosine.yaml","5'-Deoxy-5'-(methylthio)adenosine"]]},{"id":"CHEBI:15903","l":"","na":59,"nb":1,"a":[["EC%3A1.1.3.4","glucose oxidase"],["EC%3A1.1.3.5","hexose oxidase"],["EC%3A2.3.1.152","alcohol O-cinnamoyltransferase"],["EC%3A2.3.1.213","cyanidin 3-O-(6-O-glucosyl-2-O-xylosylgalactoside) 6''-O- hydroxycinnamoyltransferase"],["EC%3A3.2.1.106","mannosyl-oligosaccharide glucosidase"],["EC%3A3.2.1.175","beta-D-glucopyranosyl abscisate beta-glucosidase"]],"b":[["mapped/Beta-d-glucose.yaml","Beta-D-glucose"]]},{"id":"CHEBI:16347","l":"","na":59,"nb":1,"a":[["EC%3A1.14.13.239","carnitine monooxygenase"],["EC%3A2.1.1.383","L-carnitine--corrinoid protein Co-methyltransferase"],["EC%3A2.3.1.137","carnitine O-octanoyltransferase"],["EC%3A2.3.1.21","carnitine O-palmitoyltransferase"],["EC%3A2.3.1.7","carnitine O-acetyltransferase"],["EC%3A2.8.3.21","L-carnitine CoA-transferase"]],"b":[["mapped/L-Carnitine.yaml","L-Carnitine"]]},{"id":"CHEBI:17879","l":"4-hydroxybenzoate","na":57,"nb":1,"a":[["EC%3A1.13.11.41","2,4'-dihydroxyacetophenone dioxygenase"],["EC%3A1.14.13.2","4-hydroxybenzoate 3-monooxygenase"],["EC%3A1.14.13.33","4-hydroxybenzoate 3-monooxygenase [NAD(P)H]"],["EC%3A1.14.13.64","4-hydroxybenzoate 1-hydroxylase"],["EC%3A1.14.14.92","benzoate 4-monooxygenase"],["EC%3A1.14.19.55","4-hydroxybenzoate brominase (decarboxylating)"]],"b":[["mapped/P-hydroxybenzoate.yaml","p-Hydroxybenzoate"]]},{"id":"CHEBI:15589","l":"(S)-malate(2-)","na":56,"nb":1,"a":[["EC%3A1.1.1.299","malate dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.1.37","(S)-malate dehydrogenase (NAD(+), oxaloacetate-forming)"],["EC%3A1.1.1.38","malate dehydrogenase (oxaloacetate-decarboxylating)"],["EC%3A1.1.1.39","malate dehydrogenase (decarboxylating)"],["EC%3A1.1.1.40","malate dehydrogenase (oxaloacetate-decarboxylating) (NADP(+))"],["EC%3A1.1.1.82","malate dehydrogenase (NADP(+))"]],"b":[["mapped/L-malate.yaml","L-malate"]]},{"id":"CHEBI:36241","l":"","na":49,"nb":1,"a":[["EC%3A1.13.11.3","protocatechuate 3,4-dioxygenase"],["EC%3A1.13.11.8","protocatechuate 4,5-dioxygenase"],["EC%3A1.14.12.8","4-sulfobenzoate 3,4-dioxygenase"],["EC%3A1.14.13.2","4-hydroxybenzoate 3-monooxygenase"],["EC%3A1.14.13.23","3-hydroxybenzoate 4-monooxygenase"],["EC%3A1.14.13.33","4-hydroxybenzoate 3-monooxygenase [NAD(P)H]"]],"b":[["mapped/Protocatechuate.yaml","Protocatechuate"]]},{"id":"CHEBI:16004","l":"(R)-lactate","na":48,"nb":1,"a":[["EC%3A1.1.1.28","D-lactate dehydrogenase"],["EC%3A1.1.2.4","D-lactate dehydrogenase (cytochrome)"],["EC%3A1.1.2.5","D-lactate dehydrogenase (cytochrome c-553)"],["EC%3A1.1.5.12","D-lactate dehydrogenase (quinone)"],["EC%3A1.1.99.40","(R)-2-hydroxyglutarate--pyruvate transhydrogenase"],["EC%3A1.1.99.6","D-lactate dehydrogenase (acceptor)"]],"b":[["mapped/%28R%29-lactate.yaml","(R)-lactate"]]},{"id":"CHEBI:16199","l":"urea","na":48,"nb":1,"a":[["EC%3A3.5.1.5","urease"],["EC%3A3.5.1.95","N-malonylurea hydrolase"],["EC%3A3.5.3.1","arginase"],["EC%3A3.5.3.10","D-arginase"],["EC%3A3.5.3.11","agmatinase"],["EC%3A3.5.3.14","amidinoaspartase"]],"b":[["mapped/Urea.yaml","Urea"]]},{"id":"CHEBI:18135","l":"catechol","na":47,"nb":1,"a":[["EC%3A1.1.3.14","catechol oxidase (dimerizing)"],["EC%3A1.10.3.1","catechol oxidase"],["EC%3A1.13.11.1","catechol 1,2-dioxygenase"],["EC%3A1.13.11.2","catechol 2,3-dioxygenase"],["EC%3A1.14.12.1","anthranilate 1,2-dioxygenase (deaminating, decarboxylating)"],["EC%3A1.14.12.13","2-halobenzoate 1,2-dioxygenase"]],"b":[["mapped/Pyrocatechol.yaml","Pyrocatechol"]]},{"id":"CHEBI:35418","l":"N-acetylneuraminate","na":46,"nb":1,"a":[["EC%3A2.1.1.402","sialate 8-O-methyltransferase"],["EC%3A2.3.1.44","N-acetylneuraminate 4-O-acetyltransferase"],["EC%3A2.5.1.56","N-acetylneuraminate synthase"],["EC%3A3.1.1.53","sialate O-acetylesterase"],["EC%3A3.1.3.29","N-acylneuraminate-9-phosphatase"],["RHEA%3A47856","a ganglioside GD1a (d18:1(4E)) + H2O = a ganglioside GM1 (d18:1(4E)) + N-acetylneuraminate"]],"b":[["mapped/N-acetylneuraminate.yaml","N-acetylneuraminate"]]},{"id":"CHEBI:13705","l":"","na":42,"nb":1,"a":[["EC%3A1.1.1.30","3-hydroxybutyrate dehydrogenase"],["EC%3A1.1.99.24","hydroxyacid-oxoacid transhydrogenase"],["EC%3A1.8.1.5","2-oxopropyl-CoM reductase (carboxylating)"],["EC%3A2.3.1.247","(5S)-5-amino-3-oxohexanoate:acetyl-CoA ethylamine transferase"],["EC%3A2.3.1.317","3-dehydrocarnitine:acetyl-CoA trimethylamine transferase"],["EC%3A2.3.1.318","3-oxoadipate:acetyl-CoA acetyltransferase"]],"b":[["mapped/Acetoacetate.yaml","Acetoacetate"]]},{"id":"CHEBI:16567","l":"","na":41,"nb":1,"a":[["EC%3A1.13.11.23","2,3-dihydroxyindole 2,3-dioxygenase"],["EC%3A1.14.12.1","anthranilate 1,2-dioxygenase (deaminating, decarboxylating)"],["EC%3A1.14.13.35","anthranilate 3-monooxygenase (deaminating)"],["EC%3A1.14.14.8","anthranilate 3-monooxygenase (FAD)"],["EC%3A1.7.1.17","FMN-dependent NADH-azoreductase"],["EC%3A2.1.1.111","anthranilate N-methyltransferase"]],"b":[["mapped/2-aminobenzoate.yaml","2-aminobenzoate"]]},{"id":"CHEBI:16659","l":"D-glycerate","na":41,"nb":1,"a":[["EC%3A1.1.1.29","glycerate dehydrogenase"],["EC%3A1.1.1.60","2-hydroxy-3-oxopropionate reductase"],["EC%3A1.1.1.81","hydroxypyruvate reductase"],["EC%3A1.1.1.92","oxaloglycolate reductase (decarboxylating)"],["EC%3A1.2.1.89","D-glyceraldehyde dehydrogenase (NADP(+))"],["EC%3A1.2.99.8","glyceraldehyde dehydrogenase (FAD-containing)"]],"b":[["mapped/D-glycerate.yaml","D-glycerate"]]},{"id":"CHEBI:16382","l":"","na":40,"nb":1,"a":[["EC%3A1.11.1.8","iodide peroxidase"],["EC%3A1.21.1.1","iodotyrosine deiodinase"],["EC%3A1.21.99.3","thyroxine 5-deiodinase"],["EC%3A1.21.99.4","thyroxine 5'-deiodinase"],["EC%3A2.1.1.165","methyl halide transferase"],["RHEA%3A23336","2 iodide + H2O2 + 2 H(+) = diiodine + 2 H2O"]],"b":[["mapped/Iodide.yaml","Iodide"]]},{"id":"CHEBI:17632","l":"nitrate","na":40,"nb":1,"a":[["EC%3A1.14.12.17","nitric oxide dioxygenase"],["EC%3A1.7.1.1","nitrate reductase (NADH)"],["EC%3A1.7.1.2","nitrate reductase [NAD(P)H]"],["EC%3A1.7.1.3","nitrate reductase (NADPH)"],["EC%3A1.7.5.1","nitrate reductase (quinone)"],["EC%3A1.7.6.1","nitrite dismutase"]],"b":[["mapped/Nitrate.yaml","Nitrate"]]},{"id":"CHEBI:16374","l":"","na":39,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16374","requires vitamin K2"],["EC%3A1.1.5.4","malate dehydrogenase (quinone)"],["EC%3A1.12.5.1","hydrogen:quinone oxidoreductase"],["EC%3A1.17.5.3","formate dehydrogenase-N"],["EC%3A1.3.5.1","succinate dehydrogenase"],["EC%3A1.3.5.3","protoporphyrinogen IX dehydrogenase (quinone)"]],"b":[["mapped/Menaquinone.yaml","Menaquinone"]]},{"id":"CHEBI:29805","l":"","na":38,"nb":1,"a":[["EC%3A1.1.1.26","glyoxylate reductase"],["EC%3A1.1.1.79","glyoxylate reductase (NADP(+))"],["EC%3A1.1.3.15","(S)-2-hydroxy-acid oxidase"],["EC%3A1.1.99.14","glycolate dehydrogenase"],["EC%3A1.2.1.21","glycolaldehyde dehydrogenase"],["EC%3A3.1.3.18","phosphoglycolate phosphatase"]],"b":[["mapped/Glycolate.yaml","Glycolate"]]},{"id":"CHEBI:17158","l":"methylglyoxal","na":37,"nb":1,"a":[["EC%3A1.1.1.283","methylglyoxal reductase (NADPH)"],["EC%3A1.1.1.78","methylglyoxal reductase (NADH)"],["EC%3A1.13.11.50","acetylacetone-cleaving enzyme"],["EC%3A1.2.3.15","(methyl)glyoxal oxidase"],["EC%3A2.2.1.11","6-deoxy-5-ketofructose 1-phosphate synthase"],["EC%3A4.2.1.130","D-lactate dehydratase"]],"b":[["mapped/Methylglyoxal.yaml","methylglyoxal"]]},{"id":"CHEBI:16150","l":"benzoate","na":36,"nb":1,"a":[["EC%3A1.14.12.10","benzoate 1,2-dioxygenase"],["EC%3A1.14.14.92","benzoate 4-monooxygenase"],["EC%3A1.2.1.28","benzaldehyde dehydrogenase (NAD(+))"],["EC%3A1.2.1.7","benzaldehyde dehydrogenase (NADP(+))"],["EC%3A2.1.1.273","benzoate O-methyltransferase"],["EC%3A3.1.1.84","cocaine esterase"]],"b":[["mapped/Benzoate.yaml","Benzoate"]]},{"id":"CHEBI:30762","l":"","na":36,"nb":1,"a":[["EC%3A1.14.13.1","salicylate 1-monooxygenase"],["EC%3A1.14.13.172","salicylate 5-hydroxylase"],["EC%3A1.2.1.65","salicylaldehyde dehydrogenase"],["EC%3A2.1.1.274","salicylate carboxymethyltransferase"],["EC%3A3.1.1.55","acetylsalicylate deacetylase"],["EC%3A3.7.1.8","2,6-dioxo-6-phenylhexa-3-enoate hydrolase"]],"b":[["mapped/Salicylate.yaml","Salicylate"]]},{"id":"CHEBI:18262","l":"","na":35,"nb":1,"a":[["EC%3A1.14.14.130","laurate 7-monooxygenase"],["EC%3A3.1.2.21","dodecanoyl-[acyl-carrier-protein] hydrolase"],["RHEA%3A48540","1,2-didodecanoyl-3-beta-D-galactosyl-sn-glycerol + H2O = dodecanoyl-3-beta-D-galactosyl-sn-glycerol + dodecanoate + H(+)"],["RHEA%3A48516","1,2-didodecanoyl-3-O-[alpha-D-galactosyl-(1->6)-beta-D-galactosyl]-sn-glycerol + H2O = dodecanoyl-3-O-[alpha-D-galactosyl-(1->6)-beta-D-galactosyl]-sn-glycerol + dodecanoate + H(+)"],["RHEA%3A48536","1-beta-D-galactosyl-2,3-didodecanoyl-sn-glycerol + H2O = 1-beta-D-galactosyl-dodecanoyl-sn-glycerol + dodecanoate + H(+)"],["RHEA%3A44316","1-dodecanoylglycerol + H2O = dodecanoate + glycerol + H(+)"]],"b":[["mapped/Dodecanoate.yaml","Dodecanoate"]]},{"id":"CHEBI:17272","l":"propionate","na":34,"nb":1,"a":[["EC%3A1.3.1.125","acrylate reductase"],["EC%3A2.7.2.15","propionate kinase"],["EC%3A2.8.3.1","propionate CoA-transferase"],["EC%3A2.8.3.27","propanoyl-CoA:succinate CoA transferase"],["EC%3A4.1.3.32","2,3-dimethylmalate lyase"],["EC%3A6.2.1.13","acetate--CoA ligase (ADP-forming)"]],"b":[["mapped/Propionate.yaml","Propionate"]]},{"id":"CHEBI:17968","l":"butyrate","na":33,"nb":1,"a":[["EC%3A1.3.1.31","2-enoate reductase"],["EC%3A2.3.1.315","succinyl-CoA:cyclohexane-1-carboxylate CoA transferase"],["EC%3A2.7.2.7","butyrate kinase"],["EC%3A2.8.3.9","butyrate--acetoacetate CoA-transferase"],["EC%3A3.1.1.51","phorbol-diester hydrolase"],["EC%3A3.7.1.7","beta-diketone hydrolase"]],"b":[["mapped/Butyrate.yaml","Butyrate"]]},{"id":"CHEBI:15882","l":"phenol","na":31,"nb":1,"a":[["EC%3A1.14.13.244","phenol 2-monooxygenase (NADH)"],["EC%3A1.14.13.7","phenol 2-monooxygenase (NADPH)"],["EC%3A1.14.14.20","phenol 2-monooxygenase (FADH2)"],["EC%3A2.1.1.25","phenol O-methyltransferase"],["EC%3A2.4.2.55","nicotinate D-ribonucleotide:phenol phospho-D-ribosyltransferase"],["EC%3A2.7.1.238","phenol phosphorylase"]],"b":[["mapped/Phenol.yaml","Phenol"]]},{"id":"CHEBI:16236","l":"ethanol","na":31,"nb":1,"a":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.5.5","alcohol dehydrogenase (quinone)"],["EC%3A1.1.99.36","alcohol dehydrogenase (nicotinoprotein)"],["EC%3A2.3.1.268","ethanol O-acetyltransferase"],["EC%3A3.1.1.113","ethyl acetate hydrolase"],["EC%3A3.1.1.67","fatty-acyl-ethyl-ester synthase"]],"b":[["mapped/Ethanol.yaml","Ethanol"]]},{"id":"CHEBI:17245","l":"carbon monoxide","na":31,"nb":1,"a":[["EC%3A1.13.11.24","quercetin 2,3-dioxygenase"],["EC%3A1.13.11.47","3-hydroxy-4-oxoquinoline 2,4-dioxygenase"],["EC%3A1.13.11.48","3-hydroxy-2-methylquinolin-4-one 2,4-dioxygenase"],["EC%3A1.13.11.53","acireductone dioxygenase (Ni(2+)-requiring)"],["EC%3A1.14.14.18","heme oxygenase (biliverdin-producing)"],["EC%3A1.14.15.20","heme oxygenase (biliverdin-producing, ferredoxin)"]],"b":[["mapped/Carbon_Monoxide.yaml","Carbon Monoxide"]]},{"id":"CHEBI:17347","l":"testosterone","na":30,"nb":1,"a":[["EC%3A1.1.1.239","3alpha-(17beta)-hydroxysteroid dehydrogenase (NAD(+))"],["EC%3A1.1.1.51","3(or 17)beta-hydroxysteroid dehydrogenase"],["EC%3A1.1.1.64","testosterone 17beta-dehydrogenase (NADP(+))"],["EC%3A1.14.14.14","aromatase"],["EC%3A1.14.14.197","progesterone 11alpha-monooxygenase"],["EC%3A1.14.15.19","C-19 steroid 1alpha-hydroxylase"]],"b":[["mapped/Testosterone.yaml","testosterone"]]},{"id":"CHEBI:30854","l":"","na":29,"nb":1,"a":[["EC%3A1.14.13.168","indole-3-pyruvate monooxygenase"],["EC%3A1.14.13.235","indole-3-acetate monooxygenase"],["EC%3A1.2.3.7","indole-3-acetaldehyde oxidase"],["EC%3A2.1.1.278","indole-3-acetate O-methyltransferase"],["EC%3A2.4.1.121","indole-3-acetate beta-glucosyltransferase"],["EC%3A3.5.1.134","(indol-3-yl)acetyl-L-aspartate hydrolase"]],"b":[["mapped/Indole-3-acetate.yaml","Indole-3-acetate"]]},{"id":"CHEBI:15347","l":"acetone","na":27,"nb":1,"a":[["EC%3A1.1.1.80","isopropanol dehydrogenase (NADP(+))"],["EC%3A1.14.13.226","acetone monooxygenase (methyl acetate-forming)"],["EC%3A1.14.14.141","psoralen synthase"],["EC%3A1.14.14.148","angelicin synthase"],["EC%3A2.6.3.1","oximinotransferase"],["EC%3A4.1.1.4","acetoacetate decarboxylase"]],"b":[["mapped/Acetone.yaml","acetone"]]},{"id":"CHEBI:15792","l":"","na":27,"nb":1,"a":[["EC%3A1.2.1.15","malonate-semialdehyde dehydrogenase"],["EC%3A2.3.1.187","acetyl-S-ACP:malonate ACP transferase"],["EC%3A2.8.3.13","succinate--hydroxymethylglutarate CoA-transferase"],["EC%3A2.8.3.3","malonate CoA-transferase"],["EC%3A3.5.1.95","N-malonylurea hydrolase"],["EC%3A4.1.1.88","biotin-independent malonate decarboxylase"]],"b":[["mapped/Malonate.yaml","Malonate"]]},{"id":"CHEBI:17071","l":"glycolaldehyde","na":27,"nb":1,"a":[["EC%3A1.11.1.14","lignin peroxidase"],["EC%3A1.11.1.16","versatile peroxidase"],["EC%3A1.13.11.81","7,8-dihydroneopterin oxygenase"],["EC%3A1.2.1.21","glycolaldehyde dehydrogenase"],["EC%3A1.4.3.8","ethanolamine oxidase"],["EC%3A4.1.1.40","hydroxypyruvate decarboxylase"]],"b":[["mapped/Glycolaldehyde.yaml","glycolaldehyde"]]},{"id":"CHEBI:16217","l":"","na":26,"nb":1,"a":[["EC%3A1.1.1.118","glucose 1-dehydrogenase (NAD(+))"],["EC%3A1.1.1.119","glucose 1-dehydrogenase (NADP(+))"],["EC%3A1.1.1.359","aldose 1-dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.1.360","glucose/galactose 1-dehydrogenase"],["EC%3A1.1.1.47","glucose 1-dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.3.4","glucose oxidase"]],"b":[["mapped/D-_-gluconic_Acid_Gamma-lactone.yaml","D-(+)-Gluconic acid gamma-lactone"]]},{"id":"CHEBI:17169","l":"","na":26,"nb":1,"a":[["EC%3A1.2.1.28","benzaldehyde dehydrogenase (NAD(+))"],["EC%3A1.2.1.7","benzaldehyde dehydrogenase (NADP(+))"],["EC%3A4.1.1.7","benzoylformate decarboxylase"],["EC%3A4.1.2.10","(R)-mandelonitrile lyase"],["EC%3A4.1.2.26","phenylserine aldolase"],["EC%3A4.1.2.38","benzoin aldolase"]],"b":[["mapped/Benzaldehyde.yaml","Benzaldehyde"]]},{"id":"CHEBI:30839","l":"","na":26,"nb":1,"a":[["EC%3A1.3.1.14","dihydroorotate dehydrogenase (NAD(+))"],["EC%3A1.3.1.15","dihydroorotate dehydrogenase (NADP(+))"],["EC%3A1.3.5.2","dihydroorotate dehydrogenase (quinone)"],["EC%3A1.3.98.1","dihydroorotate oxidase (fumarate)"],["EC%3A2.4.2.10","orotate phosphoribosyltransferase"],["RHEA%3A29347","orotate(in) + 2 H(+)(in) = orotate(out) + 2 H(+)(out)"]],"b":[["mapped/Orotate.yaml","Orotate"]]},{"id":"CHEBI:17594","l":"","na":25,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17594","requires hydroquinone"],["EC%3A1.10.3.2","laccase"],["EC%3A1.13.11.66","hydroquinone 1,2-dioxygenase"],["EC%3A1.14.13.64","4-hydroxybenzoate 1-hydroxylase"],["EC%3A1.6.5.6","p-benzoquinone reductase (NADPH)"],["EC%3A1.8.5.7","glutathionyl-hydroquinone reductase"]],"b":[["mapped/Hydroquinone.yaml","Hydroquinone"]]},{"id":"CHEBI:18346","l":"vanillin","na":25,"nb":1,"a":[["EC%3A1.1.3.38","vanillyl-alcohol oxidase"],["EC%3A1.11.1.16","versatile peroxidase"],["EC%3A1.13.11.43","lignostilbene alphabeta-dioxygenase"],["EC%3A1.13.11.88","isoeugenol monooxygenase"],["EC%3A1.13.11.94","4-vinylguaiacol dioxygenase"],["EC%3A1.2.1.67","vanillin dehydrogenase"]],"b":[["mapped/Vanillin.yaml","Vanillin"]]},{"id":"CHEBI:16551","l":"","na":24,"nb":1,"a":[["EC%3A2.3.1.122","trehalose O-mycolyltransferase"],["EC%3A2.3.1.279","long-chain-acyl-CoA--trehalose acyltransferase"],["EC%3A2.4.1.231","alpha,alpha-trehalose phosphorylase (configuration-retaining)"],["EC%3A2.4.1.245","alpha,alpha-trehalose synthase"],["EC%3A2.4.1.64","alpha,alpha-trehalose phosphorylase"],["EC%3A2.7.1.201","protein-N(pi)-phosphohistidine--trehalose phosphotransferase"]],"b":[["mapped/Alphaalpha-Trehalose.yaml","alpha,alpha-Trehalose"]]},{"id":"CHEBI:17597","l":"","na":24,"nb":1,"a":[["EC%3A1.1.3.19","4-hydroxymandelate oxidase (decarboxylating)"],["EC%3A1.13.11.94","4-vinylguaiacol dioxygenase"],["EC%3A1.17.9.1","4-methylphenol dehydrogenase (hydroxylating)"],["EC%3A1.2.1.64","4-hydroxybenzaldehyde dehydrogenase (NAD(+))"],["EC%3A1.2.1.96","4-hydroxybenzaldehyde dehydrogenase (NADP(+))"],["EC%3A4.1.2.11","hydroxymandelonitrile lyase"]],"b":[["mapped/4-Hydroxybenzaldehyde.yaml","4-Hydroxybenzaldehyde"]]},{"id":"CHEBI:17234","l":"glucose","na":1,"nb":23,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Corn_Steep_Liquor_Glucose_Fumarate.yaml","Corn Steep Liquor + Glucose + Fumarate"],["mapped/Fastidious_Anaerobe_Broth_With_Meat_Granules.yaml","Fastidious Anaerobe Broth With Meat Granules"],["mapped/GYPS.yaml","GYPS"],["mapped/Glucose.yaml","Glucose"],["mapped/Glucose_2.yaml","glucose"],["mapped/Glucose_Acetate.yaml","Glucose + Acetate"]]},{"id":"CHEBI:29242","l":"","na":23,"nb":1,"a":[["EC%3A1.20.2.1","arsenate reductase (cytochrome c)"],["EC%3A1.20.4.1","arsenate reductase (glutathione/glutaredoxin)"],["EC%3A1.20.4.3","mycoredoxin"],["EC%3A1.20.4.4","arsenate reductase (thioredoxin)"],["EC%3A1.20.9.1","arsenate reductase (azurin)"],["EC%3A1.20.99.1","arsenate reductase (donor)"]],"b":[["mapped/Arsenate.yaml","Arsenate"]]},{"id":"CHEBI:29749","l":"","na":23,"nb":1,"a":[["EC%3A1.2.1.68","coniferyl-aldehyde dehydrogenase"],["EC%3A2.1.1.68","caffeate O-methyltransferase"],["EC%3A3.5.1.71","N-feruloylglycine deacylase"],["EC%3A4.1.1.102","phenacrylate decarboxylase"],["EC%3A4.1.2.65","ferulate hydratase/lyase"],["EC%3A6.2.1.34","trans-feruloyl-CoA synthase"]],"b":[["mapped/Ferulate.yaml","Ferulate"]]},{"id":"CHEBI:36257","l":"","na":22,"nb":1,"a":[["RHEA%3A79091","an L-alpha-amino acid + taurocholate = an N-choloyl-L-alpha-amino acid + taurine"],["RHEA%3A47108","cholate + taurine = taurocholate + H2O"],["RHEA%3A47100","choloyl-CoA + taurine = taurocholate + CoA + H(+)"],["RHEA%3A67560","taurocholate + 3'-phosphoadenylyl sulfate = taurocholate 7-sulfate + adenosine 3',5'-bisphosphate + H(+)"],["RHEA%3A50052","taurocholate(in) + ATP + H2O = taurocholate(out) + ADP + phosphate + H(+)"],["RHEA%3A66404","taurocholate(in) + glutathione(in) + ATP + H2O = taurocholate(out) + glutathione(out) + ADP + phosphate + H(+)"]],"b":[["mapped/Taurocholate.yaml","Taurocholate"]]},{"id":"CHEBI:53455","l":"","na":22,"nb":1,"a":[["EC%3A1.1.1.175","D-xylose 1-dehydrogenase"],["EC%3A1.1.1.179","D-xylose 1-dehydrogenase (NADP(+), D-xylono-1,5-lactone-forming)"],["EC%3A1.1.1.307","D-xylose reductase [NAD(P)H]"],["EC%3A1.1.1.359","aldose 1-dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.1.430","D-xylose reductase (NADH)"],["EC%3A1.1.1.431","D-xylose reductase (NADPH)"]],"b":[["mapped/Glucose_Xylose.yaml","Glucose + Xylose"]]},{"id":"CHEBI:17748","l":"thymidine","na":21,"nb":1,"a":[["EC%3A2.4.2.2","pyrimidine-nucleoside phosphorylase"],["EC%3A2.4.2.4","thymidine phosphorylase"],["EC%3A2.7.1.114","AMP--thymidine kinase"],["EC%3A2.7.1.118","ADP--thymidine kinase"],["EC%3A2.7.1.145","deoxynucleoside kinase"],["EC%3A2.7.1.21","thymidine kinase"]],"b":[["mapped/Thymidine.yaml","Thymidine"]]},{"id":"CHEBI:16016","l":"dihydroxyacetone","na":20,"nb":1,"a":[["EC%3A1.1.1.156","glycerol 2-dehydrogenase (NADP(+))"],["EC%3A1.1.1.6","glycerol dehydrogenase"],["EC%3A1.1.99.22","glycerol dehydrogenase (acceptor)"],["EC%3A2.2.1.3","formaldehyde transketolase"],["EC%3A2.7.1.121","phosphoenolpyruvate--glycerone phosphotransferase"],["EC%3A2.7.1.29","glycerone kinase"]],"b":[["mapped/Dihydroxyacetone.yaml","Dihydroxyacetone"]]},{"id":"CHEBI:17716","l":"lactose","na":20,"nb":1,"a":[["EC%3A2.4.1.22","lactose synthase"],["EC%3A2.7.1.207","protein-N(pi)-phosphohistidine--lactose phosphotransferase"],["EC%3A3.2.1.108","lactase"],["EC%3A3.2.1.140","lacto-N-biosidase"],["EC%3A3.2.1.227","N-acetyllactosaminidase"],["RHEA%3A86923","a beta-D-Gal-(1->4)-beta-D-Glc-(1<->1)-Cer(d18:1(4E)) + H2O = lactose + an N-acylsphing-4-enine"]],"b":[["mapped/Lactose.yaml","Lactose"]]},{"id":"CHEBI:17836","l":"4-aminobenzoate","na":20,"nb":1,"a":[["EC%3A1.14.13.27","4-aminobenzoate 1-monooxygenase"],["EC%3A1.14.99.68","4-aminobenzoate N-oxygenase"],["EC%3A2.4.2.54","beta-ribofuranosylphenol 5'-phosphate synthase"],["EC%3A2.5.1.15","dihydropteroate synthase"],["EC%3A4.1.1.24","aminobenzoate decarboxylase"],["EC%3A4.1.3.38","aminodeoxychorismate lyase"]],"b":[["mapped/4-aminobenzoate.yaml","4-Aminobenzoate"]]},{"id":"CHEBI:17924","l":"D-glucitol","na":20,"nb":1,"a":[["EC%3A1.1.1.14","L-iditol 2-dehydrogenase"],["EC%3A1.1.1.289","sorbose reductase"],["EC%3A1.1.3.40","D-mannitol oxidase"],["EC%3A1.1.99.21","D-sorbitol dehydrogenase (acceptor)"],["EC%3A1.1.99.28","glucose-fructose oxidoreductase"],["EC%3A2.7.1.198","protein-N(pi)-phosphohistidine--D-sorbitol phosphotransferase"]],"b":[["mapped/D-sorbitol.yaml","D-Sorbitol"]]},{"id":"CHEBI:16709","l":"pyridoxine","na":19,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16709","requires pyridoxine"],["EC%3A1.1.1.65","pyridoxine 4-dehydrogenase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.99.9","pyridoxine 5-dehydrogenase"],["EC%3A2.4.1.160","pyridoxine 5'-O-beta-D-glucosyltransferase"],["EC%3A2.7.1.35","pyridoxal kinase"]],"b":[["mapped/Pyridoxine.yaml","Pyridoxine"]]},{"id":"CHEBI:17447","l":"","na":19,"nb":1,"a":[["EC%3A1.1.1.183","geraniol dehydrogenase (NADP(+))"],["EC%3A1.1.1.347","geraniol dehydrogenase (NAD(+))"],["EC%3A1.14.14.83","geraniol 8-hydroxylase"],["EC%3A2.7.1.216","farnesol kinase"],["EC%3A3.1.7.11","geranyl diphosphate diphosphatase"],["EC%3A5.4.4.4","geraniol isomerase"]],"b":[["mapped/Geraniol.yaml","Geraniol"]]},{"id":"CHEBI:17997","l":"dinitrogen","na":18,"nb":1,"a":[["EC%3A1.18.6.1","nitrogenase"],["EC%3A1.18.6.2","vanadium-dependent nitrogenase"],["EC%3A1.19.6.1","nitrogenase (flavodoxin)"],["EC%3A1.7.2.4","nitrous-oxide reductase"],["EC%3A1.7.2.8","hydrazine dehydrogenase"],["RHEA%3A79967","3-diazoavenalumate + NADH + H(+) = avenalumate + N2 + NAD(+)"]],"b":[["mapped/Nitrogen_gas.yaml","Nitrogen gas"]]},{"id":"CHEBI:16881","l":"1H-indole","na":17,"nb":1,"a":[["EC%3A1.13.11.17","indole 2,3-dioxygenase"],["EC%3A1.14.14.153","indole-2-monooxygenase"],["EC%3A4.1.1.92","indole-3-carboxylate decarboxylase"],["EC%3A4.1.2.8","indole-3-glycerol-phosphate lyase"],["EC%3A4.1.99.1","tryptophanase"],["EC%3A4.2.1.122","tryptophan synthase (indole-salvaging)"]],"b":[["mapped/Indole.yaml","Indole"]]},{"id":"CHEBI:17120","l":"hexanoate","na":17,"nb":1,"a":[["EC%3A3.5.1.39","alkylamidase"],["RHEA%3A53496","1-hexanoyl-2-acyl-sn-glycero-3-phosphocholine + H2O = hexanoate + a 2-acyl-sn-glycero-3-phosphocholine + H(+)"],["RHEA%3A54464","1-octadecanoyl-2-hexanoyl-sn-glycero-3-phosphocholine + H2O = hexanoate + 1-octadecanoyl-sn-glycero-3-phosphocholine + H(+)"],["RHEA%3A47352","a hexanoate ester + H2O = an aliphatic alcohol + hexanoate + H(+)"],["RHEA%3A79351","hexanal + 2 Fe(III)-[cytochrome c] + H2O = hexanoate + 2 Fe(II)-[cytochrome c] + 3 H(+)"],["RHEA%3A67276","hexanal + NAD(+) + H2O = hexanoate + NADH + 2 H(+)"]],"b":[["mapped/Hexanoate.yaml","Hexanoate"]]},{"id":"CHEBI:10352","l":"","na":16,"nb":1,"a":[["EC%3A1.14.14.126","beta-amyrin 28-monooxygenase"],["EC%3A1.14.14.134","beta-amyrin 24-hydroxylase"],["EC%3A1.14.14.152","beta-amyrin 11-oxidase"],["EC%3A1.14.14.171","beta-amyrin 16alpha-hydroxylase"],["EC%3A1.14.14.63","beta-amyrin 16beta-monooxygenase"],["EC%3A1.14.14.64","beta-amyrin 6beta-monooxygenase"]],"b":[["mapped/Beta-Amyrin.yaml","Beta-Amyrin"]]},{"id":"CHEBI:15889","l":"","na":16,"nb":1,"a":[["EC%3A2.3.1.26","sterol O-acyltransferase"],["EC%3A2.3.1.43","phosphatidylcholine--sterol O-acyltransferase"],["EC%3A2.3.1.73","diacylglycerol--sterol O-acyltransferase"],["EC%3A2.4.1.173","sterol 3beta-glucosyltransferase"],["EC%3A3.1.1.13","sterol esterase"],["RHEA%3A21204","a sterol + a 1,2-diacyl-sn-glycero-3-phosphocholine = a sterol ester + a 1-acyl-sn-glycero-3-phosphocholine"]],"b":[["mapped/Sterol.yaml","Sterol"]]},{"id":"CHEBI:16247","l":"","na":16,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.A.79","The Autophagosomal Phospholipid Transmembrane Translocase (Atg9) Family"],["TCDB%3A9.A.36","The Ca2+-dependent Phospholipid Scramblase (Scramblase) Family"],["TCDB%3A1.A.17","The Calcium-dependent Chloride Channel (Ca-ClC) Family"],["TCDB%3A9.B.27","The Death Effector Domain A (DedA) Family"],["TCDB%3A8.A.97","The EPG-3/VMP1 (EPG/VPM) Scramblase Family"]],"b":[["mapped/Bacto_Soytone.yaml","Bacto Soytone"]]},{"id":"CHEBI:17151","l":"xylitol","na":16,"nb":1,"a":[["EC%3A1.1.1.10","L-xylulose reductase"],["EC%3A1.1.1.15","D-iditol 2-dehydrogenase"],["EC%3A1.1.1.307","D-xylose reductase [NAD(P)H]"],["EC%3A1.1.1.430","D-xylose reductase (NADH)"],["EC%3A1.1.1.431","D-xylose reductase (NADPH)"],["EC%3A1.1.1.9","D-xylulose reductase"]],"b":[["mapped/Xylitol.yaml","Xylitol"]]},{"id":"CHEBI:17240","l":"","na":15,"nb":1,"a":[["EC%3A2.8.3.22","succinyl-CoA--L-malate CoA-transferase"],["EC%3A4.1.1.113","trans-aconitate decarboxylase"],["EC%3A4.1.1.6","cis-aconitate decarboxylase"],["EC%3A6.2.1.4","succinate--CoA ligase (GDP-forming)"],["RHEA%3A15253","cis-aconitate + H(+) = itaconate + CO2"],["RHEA%3A86311","itaconate + ATP + CoA = itaconyl-CoA + ADP + phosphate"]],"b":[["mapped/Itaconate.yaml","Itaconate"]]},{"id":"CHEBI:17987","l":"","na":15,"nb":1,"a":[["EC%3A1.14.15.26","toluene methyl-monooxygenase"],["EC%3A2.3.1.196","benzyl alcohol O-benzoyltransferase"],["EC%3A2.3.1.224","acetyl-CoA-benzylalcohol acetyltransferase"],["EC%3A3.1.1.70","cetraxate benzylesterase"],["EC%3A3.5.1.58","N-benzyloxycarbonylglycine hydrolase"],["EC%3A3.5.1.64","N(alpha)-benzyloxycarbonylleucine hydrolase"]],"b":[["mapped/Benzyl_Alcohol.yaml","Benzyl Alcohol"]]},{"id":"CHEBI:15698","l":"","na":14,"nb":1,"a":[["EC%3A2.7.1.74","deoxycytidine kinase"],["EC%3A3.5.1.135","N(4)-acetylcytidine amidohydrolase"],["EC%3A3.5.4.5","cytidine deaminase"],["RHEA%3A20061","2'-deoxycytidine + a ribonucleoside 5'-triphosphate = dCMP + a ribonucleoside 5'-diphosphate + H(+)"],["RHEA%3A46040","2'-deoxycytidine + ATP = dCMP + ADP + H(+)"],["RHEA%3A13433","2'-deoxycytidine + H2O + H(+) = 2'-deoxyuridine + NH4(+)"]],"b":[["mapped/2-Deoxycytidine.yaml","2'-Deoxycytidine"]]},{"id":"CHEBI:15846","l":"NAD(+)","na":14,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15846","requires NAD+"],["ARO%3A3002846","arr-1"],["ARO%3A3002847","arr-2"],["ARO%3A3002848","arr-3"],["ARO%3A3002849","arr-4"],["ARO%3A3002850","arr-5"]],"b":[["mapped/Beta-nad.yaml","beta-NAD"]]},{"id":"CHEBI:16450","l":"","na":14,"nb":1,"a":[["EC%3A1.14.11.10","pyrimidine-deoxynucleoside 1'-dioxygenase"],["EC%3A1.14.11.3","pyrimidine-deoxynucleoside 2'-dioxygenase"],["EC%3A2.4.2.2","pyrimidine-nucleoside phosphorylase"],["EC%3A3.5.4.5","cytidine deaminase"],["RHEA%3A13433","2'-deoxycytidine + H2O + H(+) = 2'-deoxyuridine + NH4(+)"],["RHEA%3A23316","2'-deoxyuridine + 2-oxoglutarate + O2 = 2-deoxy-D-ribono-1,4-lactone + uracil + succinate + CO2"]],"b":[["mapped/2-deoxyuridine.yaml","2'-Deoxyuridine"]]},{"id":"CHEBI:16619","l":"(2-trans,6-trans)-farnesol","na":14,"nb":1,"a":[["EC%3A1.1.1.216","farnesol dehydrogenase"],["EC%3A1.1.1.354","farnesol dehydrogenase (NAD(+))"],["EC%3A2.7.1.216","farnesol kinase"],["EC%3A3.1.7.6","farnesyl diphosphatase"],["EC%3A5.2.1.9","farnesol 2-isomerase"],["RHEA%3A13401","(2E,6E)-farnesol = (2Z,6E)-farnesol"]],"b":[["mapped/TransTrans-Farnesol.yaml","Trans,Trans-Farnesol"]]},{"id":"CHEBI:18401","l":"","na":14,"nb":1,"a":[["EC%3A1.14.14.54","phenylacetate 2-hydroxylase"],["EC%3A1.2.1.39","phenylacetaldehyde dehydrogenase"],["EC%3A4.1.1.119","phenylacetate decarboxylase"],["EC%3A6.2.1.30","phenylacetate--CoA ligase"],["RHEA%3A21392","2-phenylacetaldehyde + NAD(+) + H2O = 2-phenylacetate + NADH + 2 H(+)"],["RHEA%3A64820","2-phenylacetamide + H2O = 2-phenylacetate + NH4(+)"]],"b":[["mapped/Phenylacetate.yaml","Phenylacetate"]]},{"id":"CHEBI:28262","l":"dimethyl sulfoxide","na":14,"nb":1,"a":[["EC%3A1.14.13.245","assimilatory dimethylsulfide S-monooxygenase"],["EC%3A1.8.1.17","dimethylsulfone reductase"],["EC%3A1.8.2.4","dimethyl sulfide:cytochrome c2 reductase"],["EC%3A1.8.5.3","respiratory dimethylsulfoxide reductase"],["RHEA%3A30587","2-demethylmenaquinol-8 + dimethyl sulfoxide = 2-demethylmenaquinone-8 + dimethyl sulfide + H2O"],["RHEA%3A30227","2 Fe(III)-[cytochrome c2] + dimethyl sulfide + H2O = 2 Fe(II)-[cytochrome c2] + dimethyl sulfoxide + 2 H(+)"]],"b":[["mapped/Dimethyl_Sulfoxide.yaml","Dimethyl sulfoxide"]]},{"id":"CHEBI:10983","l":"(R)-3-hydroxybutyrate","na":13,"nb":1,"a":[["EC%3A1.1.1.30","3-hydroxybutyrate dehydrogenase"],["EC%3A3.1.1.22","hydroxybutyrate-dimer hydrolase"],["EC%3A3.1.1.75","poly(3-hydroxybutyrate) depolymerase"],["RHEA%3A65204","(3R)-3-hydroxybutanoyl-CoA + H2O = (R)-3-hydroxybutanoate + CoA + H(+)"],["RHEA%3A10172","(3R)-hydroxybutanoate dimer + H2O = 2 (R)-3-hydroxybutanoate + H(+)"],["RHEA%3A11248","[(3R)-hydroxybutanoate](n) + H2O = [(3R)-hydroxybutanoate](n-1) + (R)-3-hydroxybutanoate + H(+)"]],"b":[["mapped/R-3-hydroxybutyrate.yaml","(R)-3-hydroxybutyrate"]]},{"id":"CHEBI:15588","l":"","na":13,"nb":1,"a":[["EC%3A1.1.1.83","D-malate dehydrogenase (decarboxylating)"],["EC%3A1.1.99.40","(R)-2-hydroxyglutarate--pyruvate transhydrogenase"],["EC%3A2.8.3.20","succinyl-CoA--D-citramalate CoA-transferase"],["EC%3A4.2.1.31","maleate hydratase"],["RHEA%3A81419","(3R)-3-hydroxy-4-oxobutanoate + NAD(+) + H2O = (R)-malate + NADH + 2 H(+)"],["RHEA%3A81423","(3R)-3-hydroxy-4-oxobutanoate + NADP(+) + H2O = (R)-malate + NADPH + 2 H(+)"]],"b":[["mapped/D-malate.yaml","D-malate"]]},{"id":"CHEBI:15724","l":"","na":13,"nb":1,"a":[["EC%3A1.14.13.148","trimethylamine monooxygenase"],["EC%3A1.7.2.3","trimethylamine-N-oxide reductase"],["EC%3A4.1.2.32","trimethylamine-oxide aldolase"],["RHEA%3A30583","2-demethylmenaquinol-8 + trimethylamine N-oxide + H(+) = 2-demethylmenaquinone-8 + trimethylamine + H2O"],["RHEA%3A24236","trimethylamine + 2 Fe(III)-[cytochrome c] + H2O = trimethylamine N-oxide + 2 Fe(II)-[cytochrome c] + 3 H(+)"],["RHEA%3A29271","trimethylamine N-oxide + a menaquinol + H(+) = trimethylamine + a menaquinone + H2O"]],"b":[["mapped/Trimethylamine-N-oxide.yaml","Trimethylamine-N-oxide"]]},{"id":"CHEBI:16183","l":"methane","na":13,"nb":1,"a":[["EC%3A1.14.13.25","methane monooxygenase (soluble)"],["EC%3A1.14.18.3","methane monooxygenase (particulate)"],["EC%3A2.8.4.1","coenzyme-B sulfoethylthiotransferase"],["EC%3A4.7.1.1","alpha-D-ribose 1-methylphosphonate 5-phosphate C-P-lyase"],["RHEA%3A34707","alpha-D-ribose 1-methylphosphonate 5-phosphate + AH2 + S-adenosyl-L-methionine = alpha-D-ribose 1,2-cyclic phosphate 5-phosphate + methane + 5'-deoxyadenosine + L-methionine + A + H(+)"],["RHEA%3A12532","coenzyme B + methyl-coenzyme M = methane + coenzyme M-coenzyme B heterodisulfide"]],"b":[["mapped/Methane.yaml","methane"]]},{"id":"CHEBI:17045","l":"dinitrogen oxide","na":13,"nb":1,"a":[["EC%3A1.7.1.14","nitric oxide reductase [NAD(P)(+), nitrous oxide-forming]"],["EC%3A1.7.2.4","nitrous-oxide reductase"],["EC%3A1.7.2.5","nitric-oxide reductase (cytochrome c)"],["EC%3A1.7.5.2","nitric oxide reductase (menaquinol)"],["RHEA%3A30215","a menaquinol + 2 nitric oxide = nitrous oxide + a menaquinone + H2O"],["RHEA%3A43108","N2 + 2 Fe(III)-[cytochrome c] + H2O = nitrous oxide + 2 Fe(II)-[cytochrome c] + 2 H(+)"]],"b":[["mapped/Nitrous_Oxide.yaml","nitrous oxide"]]},{"id":"CHEBI:17578","l":"toluene","na":13,"nb":1,"a":[["EC%3A1.14.12.11","toluene dioxygenase"],["EC%3A1.14.13.236","toluene 4-monooxygenase"],["EC%3A1.14.13.243","toluene 2-monooxygenase"],["EC%3A1.14.15.26","toluene methyl-monooxygenase"],["EC%3A4.1.1.119","phenylacetate decarboxylase"],["EC%3A4.1.99.11","benzylsuccinate synthase"]],"b":[["mapped/Toluene.yaml","Toluene"]]},{"id":"CHEBI:17612","l":"","na":13,"nb":1,"a":[["EC%3A1.13.11.15","3,4-dihydroxyphenylacetate 2,3-dioxygenase"],["EC%3A1.14.12.9","4-chlorophenylacetate 3,4-dioxygenase"],["EC%3A1.14.14.9","4-hydroxyphenylacetate 3-monooxygenase"],["EC%3A4.1.1.83","4-hydroxyphenylacetate decarboxylase"],["RHEA%3A69080","3,4-dihydroxyphenylacetaldehyde + NAD(+) + H2O = 3,4-dihydroxyphenylacetate + NADH + 2 H(+)"],["RHEA%3A62556","3,4-dihydroxyphenylacetate + H(+) = 4-methylcatechol + CO2"]],"b":[["mapped/34-Dihydroxyphenylacetate.yaml","3,4-Dihydroxyphenylacetate"]]},{"id":"CHEBI:18404","l":"","na":13,"nb":1,"a":[["EC%3A1.14.12.23","nitroarene dioxygenase"],["EC%3A1.14.13.243","toluene 2-monooxygenase"],["EC%3A1.3.1.19","cis-1,2-dihydrobenzene-1,2-diol dehydrogenase"],["EC%3A1.3.1.68","1,2-dihydroxy-6-methylcyclohexa-3,5-dienecarboxylate dehydrogenase"],["RHEA%3A15657","1,6-dihydroxy-2-methylcyclohexa-2,4-dienecarboxylate + NAD(+) = 3-methylcatechol + CO2 + NADH"],["RHEA%3A25193","(1S,2R)-3-methylcyclohexa-3,5-diene-1,2-diol + NAD(+) = 3-methylcatechol + NADH + H(+)"]],"b":[["mapped/3-Methylcatechol.yaml","3-Methylcatechol"]]},{"id":"CHEBI:27689","l":"","na":13,"nb":1,"a":[["RHEA%3A48596","1,2-didecanoylglycerol + H2O = decanoylglycerol + decanoate + H(+)"],["RHEA%3A44320","1-decanoylglycerol + H2O = decanoate + glycerol + H(+)"],["RHEA%3A44104","decanal + NAD(+) + H2O = decanoate + NADH + 2 H(+)"],["RHEA%3A33627","decanoate + ATP + CoA = decanoyl-CoA + AMP + diphosphate"],["RHEA%3A65008","decanoate + ATP + H(+) = decanoyl-AMP + diphosphate"],["RHEA%3A47360","decanoate ester + H2O = decanoate + an aliphatic alcohol + H(+)"]],"b":[["mapped/Decanoate.yaml","Decanoate"]]},{"id":"CHEBI:28037","l":"","na":13,"nb":1,"a":[["EC%3A1.1.3.29","N-acylhexosamine oxidase"],["EC%3A3.2.1.217","exo-acting protein-alpha-N-acetylgalactosaminidase"],["EC%3A3.2.1.49","alpha-N-acetylgalactosaminidase"],["RHEA%3A70555","a 3-O-[N-acetyl-alpha-D-galactosaminyl]-L-seryl-[protein] + H2O = N-acetyl-D-galactosamine + L-seryl-[protein]"],["RHEA%3A70559","a 3-O-[N-acetyl-alpha-D-galactosaminyl]-L-threonyl-[protein] + H2O = N-acetyl-D-galactosamine + L-threonyl-[protein]"],["RHEA%3A82815","a beta-D-GalNAc-(1->3)-alpha-D-Gal-(1->3)-[alpha-L-Fuc-(1->2)]-beta-D-Gal-(1->4)-beta-D-GlcNAc derivative + H2O = an alpha-D-Gal-(1->3)-[alpha-L-Fuc-(1->2)]-beta-D-Gal-(1->4)-beta-D-GlcNAc derivative + N-acetyl-D-galactosamine"]],"b":[["mapped/N-Acetyl-D-galactosamine.yaml","N-Acetyl-D-galactosamine"]]},{"id":"CHEBI:28946","l":"","na":13,"nb":1,"a":[["EC%3A1.14.13.178","methylxanthine N(1)-demethylase"],["EC%3A1.14.13.179","methylxanthine N(3)-demethylase"],["EC%3A1.17.5.2","caffeine dehydrogenase"],["EC%3A2.1.1.159","theobromine synthase"],["EC%3A2.1.1.160","caffeine synthase"],["RHEA%3A24604","7-methylxanthine + S-adenosyl-L-methionine = theobromine + S-adenosyl-L-homocysteine + H(+)"]],"b":[["mapped/Theobromine.yaml","Theobromine"]]},{"id":"CHEBI:16193","l":"3-hydroxybenzoate","na":12,"nb":1,"a":[["EC%3A1.14.13.23","3-hydroxybenzoate 4-monooxygenase"],["EC%3A1.14.13.24","3-hydroxybenzoate 6-monooxygenase"],["EC%3A1.14.99.23","3-hydroxybenzoate 2-monooxygenase"],["EC%3A4.1.3.45","3-hydroxybenzoate synthase"],["EC%3A6.2.1.37","3-hydroxybenzoate--CoA ligase"],["RHEA%3A14193","3-hydroxybenzoate + AH2 + O2 = 2,3-dihydroxybenzoate + A + H2O"]],"b":[["mapped/3-hydroxybenzoate.yaml","3-hydroxybenzoate"]]},{"id":"CHEBI:26271","l":"proline","na":12,"nb":1,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.15","The Betaine/Carnitine/Choline Transporter (BCCT) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"]],"b":[["mapped/Proline.yaml","Proline"]]},{"id":"CHEBI:28077","l":"rifampicin","na":12,"nb":1,"a":[["ARO%3A3007073","Bacillus subtilis rpoB mutants conferring resistance to rifampin"],["ARO%3A3004480","Bifidobacterium adolescentis rpoB mutants conferring resistance to rifampicin"],["ARO%3A3004563","Clostridioides difficile rpoB with mutation conferring resistance to rifampicin"],["ARO%3A3003288","Escherichia coli rpoB mutants conferring resistance to rifampicin"],["ARO%3A3007051","Helicobacter pylori rpoB mutation conferring resistance to rifampicin"],["ARO%3A3003284","Mycobacterium leprae rpoB mutations conferring resistance to rifampicin"]],"b":[["mapped/Rifampicin.yaml","Rifampicin"]]},{"id":"CHEBI:28115","l":"methylcobalamin","na":12,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_28115","requires methylcobalamin"],["EC%3A1.16.1.8","[methionine synthase] reductase"],["EC%3A2.5.1.151","alkylcobalamin dealkylase"],["RHEA%3A23908","2 methylcob(III)alamin-[methionine synthase] + 2 S-adenosyl-L-homocysteine + NADP(+) + H(+) = 2 cob(II)alamin-[methionine synthase] + 2 S-adenosyl-L-methionine + NADPH"],["RHEA%3A81907","(2R,3R,5R)-2-(S-pantetheinyl)-carbapenam-3-carboxylate + methylcob(III)alamin + S-adenosyl-L-methionine = (2R,3R,5S,6R)-6-(methyl)-2-(S-pantetheinyl)-carbapenam-3-carboxylate + cob(III)alamin + 5'-deoxyadenosine + L-methionine"],["RHEA%3A81911","(2R,3R,5S,6R)-6-(methyl)-2-(S-pantetheinyl)-carbapenam-3-carboxylate + methylcob(III)alamin + S-adenosyl-L-methionine = (2R,3R,5S,6R)-6-(ethyl)-2-(S-pantetheinyl)-carbapenam-3-carboxylate + cob(III)alamin + 5'-deoxyadenosine + L-methionine"]],"b":[["mapped/Methylcobalamin.yaml","methylcobalamin"]]},{"id":"CHEBI:30612","l":"","na":12,"nb":1,"a":[["EC%3A2.3.1.131","glucarate O-hydroxycinnamoyltransferase"],["EC%3A2.3.1.98","chlorogenate--glucarate O-hydroxycinnamoyltransferase"],["EC%3A4.2.1.40","glucarate dehydratase"],["RHEA%3A23204","chlorogenate + D-glucarate = 2-O-caffeoylglucarate + L-quinate"],["RHEA%3A14573","D-glucarate = 5-dehydro-4-deoxy-D-glucarate + H2O"],["RHEA%3A23308","D-glucarate + (E)-sinapoyl-CoA = 2-O-[(E)-sinapoyl]-D-glucarate + CoA"]],"b":[["mapped/D-glucarate.yaml","D-glucarate"]]},{"id":"CHEBI:31011","l":"","na":12,"nb":1,"a":[["EC%3A3.5.1.50","pentanamidase"],["RHEA%3A41199","1-hexadecanoyl-2-pentanoyl-sn-glycero-3-phosphocholine + H2O = pentanoate + 1-hexadecanoyl-sn-glycero-3-phosphocholine + H(+)"],["RHEA%3A54460","1-octadecanoyl-2-pentanoyl-sn-glycero-3-phosphocholine + H2O = pentanoate + 1-octadecanoyl-sn-glycero-3-phosphocholine + H(+)"],["RHEA%3A69092","pentanal + NAD(+) + H2O = pentanoate + NADH + 2 H(+)"],["RHEA%3A76663","pentanal + NADP(+) + H2O = pentanoate + NADPH + 2 H(+)"],["RHEA%3A10000","pentanamide + H2O = pentanoate + NH4(+)"]],"b":[["mapped/Valerate.yaml","Valerate"]]},{"id":"CHEBI:16134","l":"ammonia","na":11,"nb":1,"a":[["TCDB%3A1.A.11","The Ammonium Transporter Channel (Amt) Family"],["MCSA%3A376","adenosine deaminase"],["MCSA%3A75","aspartate-ammonia ligase"],["MCSA%3A449","cystathionine beta-lyase"],["MCSA%3A97","cytidine deaminase"],["MCSA%3A710","cytosine deaminase (bacterial)"]],"b":[["mapped/Ammonia.yaml","Ammonia"]]},{"id":"CHEBI:16510","l":"","na":11,"nb":1,"a":[["EC%3A1.1.1.298","3-hydroxypropionate dehydrogenase (NADP(+))"],["EC%3A1.1.1.59","3-hydroxypropionate dehydrogenase"],["EC%3A6.2.1.36","3-hydroxypropionyl-CoA synthase"],["RHEA%3A59432","3-hydroxypropanal + NAD(+) + H2O = 3-hydroxypropanoate + NADH + 2 H(+)"],["RHEA%3A59428","3-hydroxypropanal + NADP(+) + H2O = 3-hydroxypropanoate + NADPH + 2 H(+)"],["RHEA%3A67136","3-hydroxypropanoate + ATP + CoA = 3-hydroxypropanoyl-CoA + ADP + phosphate"]],"b":[["mapped/3-Hydroxypropionate.yaml","3-Hydroxypropionate"]]},{"id":"CHEBI:16537","l":"","na":11,"nb":1,"a":[["EC%3A2.3.1.130","galactarate O-hydroxycinnamoyltransferase"],["EC%3A4.2.1.158","galactarate dehydratase (D-threo-forming)"],["EC%3A4.2.1.42","galactarate dehydratase"],["RHEA%3A45808","galactarate = (2S,3R)-dihydroxy-5-oxohexanedioate + H2O"],["RHEA%3A16005","galactarate = 5-dehydro-4-deoxy-D-glucarate + H2O"],["RHEA%3A12997","galactarate + (E)-feruloyl-CoA = 2-O-[(E)-feruloyl]-D-galactarate + CoA"]],"b":[["mapped/Galactarate.yaml","Galactarate"]]},{"id":"CHEBI:16724","l":"4-hydroxybutyrate","na":11,"nb":1,"a":[["EC%3A1.1.1.61","4-hydroxybutyrate dehydrogenase"],["EC%3A1.1.1.n11","succinic semialdehyde reductase"],["EC%3A1.1.99.24","hydroxyacid-oxoacid transhydrogenase"],["EC%3A6.2.1.40","4-hydroxybutyrate--CoA ligase (AMP-forming)"],["EC%3A6.2.1.56","4-hydroxybutyrate--CoA ligase (ADP-forming)"],["RHEA%3A24734","4-hydroxybutanoate + 2-oxoglutarate = (R)-2-hydroxyglutarate + succinate semialdehyde"]],"b":[["mapped/4-hydroxybutyrate.yaml","4-hydroxybutyrate"]]},{"id":"CHEBI:16918","l":"gallate","na":11,"nb":1,"a":[["EC%3A1.13.11.57","gallate dioxygenase"],["EC%3A2.1.1.341","vanillate/3-O-methylgallate O-demethylase"],["EC%3A2.4.1.136","gallate 1-beta-glucosyltransferase"],["EC%3A3.1.1.20","tannase"],["EC%3A4.1.1.59","gallate decarboxylase"],["RHEA%3A12749","3,4,5-trihydroxybenzoate + H(+) = 1,2,3-trihydroxybenzene + CO2"]],"b":[["mapped/Gallate_Formate.yaml","Gallate + Formate"]]},{"id":"CHEBI:17847","l":"p-cresol","na":11,"nb":1,"a":[["EC%3A1.14.13.236","toluene 4-monooxygenase"],["EC%3A1.17.9.1","4-methylphenol dehydrogenase (hydroxylating)"],["EC%3A4.1.1.83","4-hydroxyphenylacetate decarboxylase"],["EC%3A4.1.99.19","2-iminoacetate synthase"],["RHEA%3A22732","4-hydroxyphenylacetate + H(+) = 4-methylphenol + CO2"],["RHEA%3A56976","4-methylphenol + 2 oxidized [azurin] + H2O = 4-hydroxybenzyl alcohol + 2 reduced [azurin] + 2 H(+)"]],"b":[["mapped/4-Cresol.yaml","4-Cresol"]]},{"id":"CHEBI:18067","l":"phylloquinone","na":11,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18067","requires phylloquinone"],["EC%3A1.14.14.78","phylloquinone omega-hydroxylase"],["EC%3A1.14.99.20","phylloquinone monooxygenase (2,3-epoxidizing)"],["EC%3A1.17.4.4","vitamin-K-epoxide reductase (warfarin-sensitive)"],["RHEA%3A57744","phylloquinol + [protein]-disulfide = phylloquinone + [protein]-dithiol"],["RHEA%3A16745","phylloquinone + AH2 + O2 = 2,3-epoxyphylloquinone + A + H2O"]],"b":[["mapped/Vitamin_K1.yaml","Vitamin K1"]]},{"id":"CHEBI:18212","l":"selenite(2-)","na":11,"nb":1,"a":[["EC%3A1.97.1.14","selenate reductase (quinol)"],["EC%3A1.97.1.9","selenate reductase (cytochrome c)"],["RHEA%3A80603","selenite + 2 Fe(III)-[cytochrome c] + H2O = 2 Fe(II)-[cytochrome] + selenate + 2 H(+)"],["RHEA%3A34903","selenite + 4 glutathione + 2 H(+) = selenodiglutathione + glutathione disulfide + 3 H2O"],["RHEA%3A14029","selenite + A + H2O = selenate + AH2"],["RHEA%3A51636","selenite + a quinone + H2O = selenate + a quinol"]],"b":[["mapped/Selenite.yaml","Selenite"]]},{"id":"CHEBI:25094","l":"","na":11,"nb":1,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.75","The L-Lysine Exporter (LysE) Family"],["TCDB%3A2.A.124","The Lysine Exporter (LysO) Family"]],"b":[["mapped/Lysine.yaml","Lysine"]]},{"id":"CHEBI:26710","l":"sodium chloride","na":1,"nb":11,"a":[["TCDB%3A2.A.30","The Cation-Chloride Cotransporter (CCC) Family"]],"b":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/Brain_Heart_Infusion_Broth.yaml","Brain heart infusion broth"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Mineral_3B_Solution.yaml","Mineral 3B solution"],["mapped/Mineral_3B_Solution_Minus_Nitrogen.yaml","Mineral 3B solution minus Nitrogen"]]},{"id":"CHEBI:27732","l":"","na":11,"nb":1,"a":[["EC%3A1.14.13.178","methylxanthine N(1)-demethylase"],["EC%3A1.17.5.2","caffeine dehydrogenase"],["EC%3A2.1.1.160","caffeine synthase"],["RHEA%3A10280","1,7-dimethylxanthine + S-adenosyl-L-methionine = caffeine + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A47148","caffeine + a ubiquinone + H2O = 1,3,7-trimethylurate + a ubiquinol"],["RHEA%3A36267","caffeine + NADH + O2 + H(+) = theobromine + formaldehyde + NAD(+) + H2O"]],"b":[["mapped/Caffeine.yaml","Caffeine"]]},{"id":"CHEBI:28591","l":"guaiacol","na":11,"nb":1,"a":[["EC%3A1.11.1.14","lignin peroxidase"],["EC%3A1.11.1.16","versatile peroxidase"],["RHEA%3A48004","1-(3,4-dimethoxyphenyl)-2-(2-methoxyphenoxy)propane-1,3-diol + H2O2 = 3,4-dimethoxybenzaldehyde + guaiacol + glycolaldehyde + H2O"],["RHEA%3A22396","1-(4-hydroxy-3-methoxyphenyl)-2-(2-methoxyphenoxy)propane-1,3-diol + H2O2 = guaiacol + vanillin + glycolaldehyde + H2O"],["RHEA%3A72243","catechol + S-adenosyl-L-methionine = guaiacol + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A72339","guaiacol + Co(I)-[methoxylated-aromatic-compound-specific corrinoid protein] + H(+) = methyl-Co(III)-[methoxylated-aromatic-compound-specific corrinoid protein] + catechol"]],"b":[["mapped/Guaiacol.yaml","Guaiacol"]]},{"id":"CHEBI:28685","l":"molybdenum atom","na":11,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MO","MO-binding site"],["proteintraitsmech%3AMETALPDB_MO_DINUCLEAR","dinuclear molybdenum site"],["proteintraitsmech%3AMETALPDB_MO_HEPTANUCLEAR","heptanuclear molybdenum site"],["proteintraitsmech%3AMETALPDB_MO_HEXANUCLEAR","hexanuclear molybdenum site"],["proteintraitsmech%3AMETALPDB_MO_MONONUCLEAR","mononuclear molybdenum site"],["proteintraitsmech%3AMETALPDB_MO_MULTINUCLEAR","multinuclear molybdenum site"]],"b":[["mapped/Molybdenum.yaml","Molybdenum"]]},{"id":"CHEBI:15075","l":"selenate","na":10,"nb":1,"a":[["EC%3A1.97.1.14","selenate reductase (quinol)"],["EC%3A1.97.1.9","selenate reductase (cytochrome c)"],["RHEA%3A34887","selenate(in) = selenate(out)"],["RHEA%3A72079","selenate(out) + 3 Na(+)(out) = selenate(in) + 3 Na(+)(in)"],["RHEA%3A34883","selenate(out) + ATP + H2O = selenate(in) + ADP + phosphate + H(+)"],["RHEA%3A80603","selenite + 2 Fe(III)-[cytochrome c] + H2O = 2 Fe(II)-[cytochrome] + selenate + 2 H(+)"]],"b":[["mapped/Selenate.yaml","Selenate"]]},{"id":"CHEBI:15688","l":"acetoin","na":10,"nb":1,"a":[["EC%3A2.2.1.4","acetoin--ribose-5-phosphate transaldolase"],["EC%3A2.3.1.190","acetoin dehydrogenase system"],["RHEA%3A54364","2 acetaldehyde = acetoin"],["RHEA%3A76879","3-aminobutan-2-ol + NAD(+) + H2O = acetoin + NH4(+) + NADH + H(+)"],["RHEA%3A76931","3-aminobutan-2-ol + NADP(+) + H2O = acetoin + NH4(+) + NADPH + H(+)"],["RHEA%3A54368","acetaldehyde + pyruvate + H(+) = acetoin + CO2"]],"b":[["mapped/Acetoin.yaml","Acetoin"]]},{"id":"CHEBI:16383","l":"","na":10,"nb":1,"a":[["EC%3A4.1.1.6","cis-aconitate decarboxylase"],["EC%3A5.3.3.7","aconitate Delta-isomerase"],["RHEA%3A15253","cis-aconitate + H(+) = itaconate + CO2"],["RHEA%3A22144","cis-aconitate + H2O = D-threo-isocitrate"],["RHEA%3A72475","cis-aconitate(in) + citrate(out) = cis-aconitate(out) + citrate(in)"],["RHEA%3A10228","citrate = cis-aconitate + H2O"]],"b":[["mapped/Cis-aconitate.yaml","Cis-aconitate"]]},{"id":"CHEBI:16547","l":"coniferyl aldehyde","na":10,"nb":1,"a":[["EC%3A1.1.1.194","coniferyl-alcohol dehydrogenase"],["EC%3A1.1.1.195","cinnamyl-alcohol dehydrogenase"],["EC%3A1.2.1.44","cinnamoyl-CoA reductase"],["EC%3A1.2.1.68","coniferyl-aldehyde dehydrogenase"],["RHEA%3A23968","(E)-coniferaldehyde + NAD(+) + H2O = (E)-ferulate + NADH + 2 H(+)"],["RHEA%3A64648","(E)-coniferaldehyde + NADP(+) + CoA = (E)-feruloyl-CoA + NADPH + H(+)"]],"b":[["mapped/Coniferyl_Aldehyde.yaml","coniferyl aldehyde"]]},{"id":"CHEBI:17698","l":"chloramphenicol","na":10,"nb":1,"a":[["EC%3A1.14.99.67","alpha-N-dichloroacetyl-p-aminophenylserinol N-oxygenase"],["EC%3A2.3.1.28","chloramphenicol O-acetyltransferase"],["RHEA%3A58884","alpha-N-dichloroacetyl-p-aminophenylserinol + AH2 + 2 O2 = chloramphenicol + A + 2 H2O"],["RHEA%3A18421","chloramphenicol + acetyl-CoA = chloramphenicol 3-acetate + CoA"],["RHEA%3A35287","chloramphenicol(in) + ATP + H2O = chloramphenicol(out) + ADP + phosphate + H(+)"],["RHEA%3A35059","chloramphenicol(in) + H(+)(out) = chloramphenicol(out) + H(+)(in)"]],"b":[["mapped/Chloramphenicol.yaml","Chloramphenicol"]]},{"id":"CHEBI:17745","l":"","na":10,"nb":1,"a":[["EC%3A1.1.1.194","coniferyl-alcohol dehydrogenase"],["EC%3A1.1.1.195","cinnamyl-alcohol dehydrogenase"],["EC%3A2.4.1.111","coniferyl-alcohol glucosyltransferase"],["EC%3A3.2.1.126","coniferin beta-glucosidase"],["RHEA%3A12252","4-O-(beta-D-glucosyl)-(E)-coniferol + H2O = (E)-coniferol + D-glucose"],["RHEA%3A76455","(E)-coniferol + A = (E)-coniferaldehyde + AH2"]],"b":[["mapped/Coniferyl_Alcohol.yaml","coniferyl alcohol"]]},{"id":"CHEBI:28189","l":"","na":10,"nb":1,"a":[["EC%3A3.2.1.10","oligo-1,6-glucosidase"],["EC%3A3.2.1.204","1,3-alpha-isomaltosidase"],["EC%3A3.2.1.205","isomaltose glucohydrolase"],["RHEA%3A52748","alpha-isomaltosyl-(1->3)-isomaltose + H2O = 2 isomaltose"],["RHEA%3A24844","cyclobis-(1->3)-alpha-D-isomaltosyl + 2 H2O = 2 isomaltose"],["RHEA%3A68864","isomaltose + H2O = alpha-D-glucose + D-glucose"]],"b":[["mapped/Isomaltose.yaml","Isomaltose"]]},{"id":"CHEBI:28694","l":"''copper atom''","na":10,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_28694","requires Cu"],["proteintraitsmech%3AMETALPDB_CU_DINUCLEAR","dinuclear copper site"],["proteintraitsmech%3AMETALPDB_CU_HEPTANUCLEAR","heptanuclear copper site"],["proteintraitsmech%3AMETALPDB_CU_HEXANUCLEAR","hexanuclear copper site"],["proteintraitsmech%3AMETALPDB_CU_MONONUCLEAR","mononuclear copper site"],["proteintraitsmech%3AMETALPDB_CU_MULTINUCLEAR","multinuclear copper site"]],"b":[["mapped/Copper.yaml","Copper"]]},{"id":"CHEBI:28940","l":"","na":10,"nb":1,"a":[["EC%3A1.14.14.24","vitamin D 25-hydroxylase"],["EC%3A1.14.15.22","vitamin D 1,25-hydroxylase"],["EC%3A1.17.99.10","steroid C-25 hydroxylase"],["RHEA%3A36411","7-dehydrocholesterol + hnu = calciol"],["RHEA%3A50696","calciol + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = calcidiol + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"],["RHEA%3A46588","calciol + 2 reduced [adrenodoxin] + O2 + 2 H(+) = calcidiol + 2 oxidized [adrenodoxin] + H2O"]],"b":[["mapped/Vitamin_D3.yaml","Vitamin D3"]]},{"id":"CHEBI:4885","l":"ethionamide","na":10,"nb":1,"a":[["RHEA%3A47616","ethionamide + NADPH + O2 + H(+) = ethionamide S-oxide + NADP(+) + H2O"],["ARO%3A3003456","antibiotic resistant ethA"],["ARO%3A3003457","ethionamide resistant ethA"],["ARO%3A3005103","isoniazid resistant ethA"],["ARO%3A3005105","Mycobacterium tuberculosis ethA mutations conferring resistance to isoniazid"],["ARO%3A3005178","Mycobacterium tuberculosis ethA mutations conferring resistance to perchlozone"]],"b":[["mapped/Ethionamide.yaml","Ethionamide"]]},{"id":"CHEBI:51057","l":"3-phenylpropionate","na":10,"nb":1,"a":[["EC%3A1.14.12.19","3-phenylpropanoate dioxygenase"],["EC%3A1.3.8.15","3-(aryl)acrylate reductase"],["EC%3A3.5.5.1","nitrilase"],["RHEA%3A68904","3-phenylpropanoate + ATP + NADPH + H(+) = 3-phenylpropanal + AMP + diphosphate + NADP(+)"],["RHEA%3A29747","3-phenylpropanoate(in) = 3-phenylpropanoate(out)"],["RHEA%3A50944","3-phenylpropanoate + NAD(+) = (E)-cinnamate + NADH + H(+)"]],"b":[["mapped/3-phenylpropionate.yaml","3-phenylpropionate"]]},{"id":"CHEBI:16813","l":"","na":9,"nb":1,"a":[["EC%3A1.1.1.16","galactitol 2-dehydrogenase"],["EC%3A1.1.1.406","galactitol 2-dehydrogenase (L-tagatose-forming)"],["EC%3A2.7.1.200","protein-N(pi)-phosphohistidine--galactitol phosphotransferase"],["RHEA%3A33143","galactitol(in) = galactitol(out)"],["RHEA%3A37963","galactitol + NAD(+) = D-galactose + NADH + H(+)"],["RHEA%3A20685","galactitol + NAD(+) = keto-D-tagatose + NADH + H(+)"]],"b":[["mapped/Galactitol.yaml","Galactitol"]]},{"id":"CHEBI:17488","l":"","na":9,"nb":1,"a":[["EC%3A1.14.11.60","scopoletin 8-hydroxylase"],["EC%3A2.4.1.128","scopoletin glucosyltransferase"],["RHEA%3A68564","6-methoxycoumarin + reduced [NADPH--hemoprotein reductase] + O2 = scopoletin + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A57860","(E)-6-hydroxyferuloyl-CoA = scopoletin + CoA"],["RHEA%3A68948","esculetin + S-adenosyl-L-methionine = scopoletin + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A57848","scopoletin + 2-oxoglutarate + O2 = fraxetin + succinate + CO2"]],"b":[["mapped/Scopoletin.yaml","Scopoletin"]]},{"id":"CHEBI:18248","l":"iron atom","na":9,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18248","requires Fe"],["proteintraitsmech%3AMETALPDB_FE_DINUCLEAR","dinuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_HEPTANUCLEAR","heptanuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_HEXANUCLEAR","hexanuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_MONONUCLEAR","mononuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_OCTANUCLEAR","octanuclear iron site"]],"b":[["mapped/Iron.yaml","Iron"]]},{"id":"CHEBI:18333","l":"","na":9,"nb":1,"a":[["EC%3A1.1.1.11","D-arabinitol 4-dehydrogenase"],["EC%3A1.1.1.250","D-arabinitol 2-dehydrogenase"],["EC%3A1.1.1.287","D-arabinitol dehydrogenase (NADP(+))"],["EC%3A1.1.3.40","D-mannitol oxidase"],["RHEA%3A17389","D-arabinitol + NAD(+) = D-ribulose + NADH + H(+)"],["RHEA%3A17921","D-arabinitol + NAD(+) = D-xylulose + NADH + H(+)"]],"b":[["mapped/D-arabitol.yaml","D-arabitol"]]},{"id":"CHEBI:29995","l":"","na":9,"nb":1,"a":[["GO%3A0070335","aspartate binding"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A2.A.81","The Aspartate:Alanine Exchanger (AAEx) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.13","The C4-Dicarboxylate Uptake (Dcu) Family"],["TCDB%3A2.A.23","The Dicarboxylate/Amino Acid:Cation (Na+ or H+) Symporter (DAACS) Family"]],"b":[["mapped/Aspartate.yaml","Aspartate"]]},{"id":"CHEBI:3098","l":"bile acid","na":9,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.28","The Bile Acid:Na+ Symporter (BASS) Family"],["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"],["TCDB%3A9.A.19","The Lipid Intermediate Transporter (Arv1) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["mapped/Bile_Acid.yaml","Bile Acid"]]},{"id":"CHEBI:12931","l":"D-galactonate","na":8,"nb":1,"a":[["EC%3A3.1.1.25","1,4-lactonase"],["EC%3A4.2.1.140","gluconate/galactonate dehydratase"],["EC%3A4.2.1.6","galactonate dehydratase"],["RHEA%3A18649","D-galactonate = 2-dehydro-3-deoxy-D-galactonate + H2O"],["RHEA%3A29835","D-galactonate(in) + H(+)(in) = D-galactonate(out) + H(+)(out)"],["RHEA%3A44900","D-galactono-1,4-lactone + H2O = D-galactonate + H(+)"]],"b":[["mapped/D-galactonate.yaml","D-galactonate"]]},{"id":"CHEBI:15570","l":"","na":8,"nb":1,"a":[["ARO%3A3004946","cycloserine resistant alr"],["ARO%3A3004939","cycloserine resistant ddlA"],["ARO%3A3004947","Mycobacterium tuberculosis alr with mutation conferring resistance to cycloserine"],["ARO%3A3004941","Mycobacterium tuberculosis ddlA mutations confer resistance to cycloserine"],["TCDB%3A2.A.81","The Aspartate:Alanine Exchanger (AAEx) Family"],["MCSA%3A782","D-stereospecific aminopeptidase (peptidase S12 family)"]],"b":[["mapped/D-Alanine.yaml","D-Alanine"]]},{"id":"CHEBI:15963","l":"","na":8,"nb":1,"a":[["EC%3A1.1.1.56","ribitol 2-dehydrogenase"],["EC%3A3.5.99.1","riboflavinase"],["RHEA%3A47652","D-ribitol 1-phosphate + H2O = ribitol + phosphate"],["RHEA%3A47648","D-ribitol 5-phosphate + H2O = ribitol + phosphate"],["RHEA%3A20053","ribitol + NAD(+) = D-ribulose + NADH + H(+)"],["RHEA%3A59932","ribitol + NADP(+) = D-ribose + NADPH + H(+)"]],"b":[["mapped/Ribitol.yaml","Ribitol"]]},{"id":"CHEBI:16164","l":"","na":8,"nb":1,"a":[["EC%3A1.13.11.35","pyrogallol 1,2-oxygenase"],["EC%3A1.97.1.2","pyrogallol hydroxytransferase"],["EC%3A4.1.1.59","gallate decarboxylase"],["RHEA%3A21000","1,2,3,5-tetrahydroxybenzene + 1,2,3-trihydroxybenzene = 1,2,3,5-tetrahydroxybenzene + 1,3,5-trihydroxybenzene"],["RHEA%3A19673","1,2,3-trihydroxybenzene + O2 = (2Z,4E)-2-hydroxyhexa-2,4-dienedioate + 2 H(+)"],["RHEA%3A12749","3,4,5-trihydroxybenzoate + H(+) = 1,2,3-trihydroxybenzene + CO2"]],"b":[["mapped/Pyrogallol.yaml","Pyrogallol"]]},{"id":"CHEBI:16397","l":"","na":8,"nb":1,"a":[["EC%3A3.5.1.49","formamidase"],["EC%3A3.5.3.8","formimidoylglutamase"],["EC%3A4.2.1.66","cyanide hydratase"],["RHEA%3A21948","formamide + H2O = formate + NH4(+)"],["RHEA%3A21720","formamide = hydrogen cyanide + H2O"],["RHEA%3A74387","formamide(out) = formamide(in)"]],"b":[["mapped/Formamide.yaml","Formamide"]]},{"id":"CHEBI:16634","l":"raffinose","na":8,"nb":1,"a":[["EC%3A2.4.1.166","raffinose--raffinose alpha-galactosyltransferase"],["EC%3A2.4.1.67","galactinol--raffinose galactosyltransferase"],["EC%3A2.4.1.82","galactinol--sucrose galactosyltransferase"],["RHEA%3A14125","2 raffinose = 1(F)-alpha-D-galactosylraffinose + sucrose"],["RHEA%3A20776","alpha-D-galactosyl-(1->3)-1D-myo-inositol + raffinose = stachyose + myo-inositol"],["RHEA%3A20161","alpha-D-galactosyl-(1->3)-1D-myo-inositol + sucrose = raffinose + myo-inositol"]],"b":[["mapped/Raffinose.yaml","Raffinose"]]},{"id":"CHEBI:17464","l":"","na":8,"nb":1,"a":[["EC%3A1.1.1.316","L-galactose 1-dehydrogenase"],["EC%3A1.3.2.3","L-galactonolactone dehydrogenase"],["EC%3A1.3.3.12","L-galactonolactone oxidase"],["RHEA%3A14757","L-galactono-1,4-lactone + 2 Fe(III)-[cytochrome c] = L-ascorbate + 2 Fe(II)-[cytochrome c] + 3 H(+)"],["RHEA%3A32367","L-galactono-1,4-lactone + 4 Fe(III)-[cytochrome c] = L-dehydroascorbate + 4 Fe(II)-[cytochrome c] + 5 H(+)"],["RHEA%3A75231","L-galactono-1,4-lactone + H2O = L-galactonate + H(+)"]],"b":[["mapped/L-galactonic_Acid_Gamma-lactone.yaml","L-galactonic Acid Gamma-lactone"]]},{"id":"CHEBI:17871","l":"","na":8,"nb":1,"a":[["EC%3A1.1.1.202","1,3-propanediol dehydrogenase"],["EC%3A4.2.1.30","glycerol dehydratase"],["RHEA%3A62920","1alpha,25-dihydroxy-2beta-(1,3-dihydroxypropoxy)-cholecalciferol = 1alpha,2beta,25-trihydroxycholecalciferol + 3-hydroxypropanal"],["RHEA%3A59432","3-hydroxypropanal + NAD(+) + H2O = 3-hydroxypropanoate + NADH + 2 H(+)"],["RHEA%3A59428","3-hydroxypropanal + NADP(+) + H2O = 3-hydroxypropanoate + NADPH + 2 H(+)"],["RHEA%3A19765","glycerol = 3-hydroxypropanal + H2O"]],"b":[["mapped/3-Hydroxypropanal.yaml","3-Hydroxypropanal"]]},{"id":"CHEBI:18403","l":"L-arabinitol","na":8,"nb":1,"a":[["EC%3A1.1.1.12","L-arabinitol 4-dehydrogenase"],["EC%3A1.1.1.13","L-arabinitol 2-dehydrogenase"],["EC%3A1.1.1.21","aldose reductase"],["RHEA%3A25225","L-arabinitol + NAD(+) = L-arabinose + NADH + H(+)"],["RHEA%3A21356","L-arabinitol + NAD(+) = L-ribulose + NADH + H(+)"],["RHEA%3A16381","L-arabinitol + NAD(+) = L-xylulose + NADH + H(+)"]],"b":[["mapped/Arabitol.yaml","Arabitol"]]},{"id":"CHEBI:27949","l":"(E)-sinapaldehyde","na":8,"nb":1,"a":[["EC%3A1.1.1.195","cinnamyl-alcohol dehydrogenase"],["RHEA%3A72027","(E)-sinapaldehyde + L-proline = (E)-nesocodin (alcohol-form) + H2O"],["RHEA%3A64656","(E)-sinapaldehyde + NADP(+) + CoA = (E)-sinapoyl-CoA + NADPH + H(+)"],["RHEA%3A57712","(E)-sinapaldehyde + UDP-alpha-D-glucose = 4-O-(beta-D-glucosyl)-4-trans-sinapoyl aldehyde + UDP + H(+)"],["RHEA%3A76459","(E)-sinapyl alcohol + A = (E)-sinapaldehyde + AH2"],["RHEA%3A45704","(E)-sinapyl alcohol + NADP(+) = (E)-sinapaldehyde + NADPH + H(+)"]],"b":[["mapped/Sinapinaldehyde.yaml","sinapinaldehyde"]]},{"id":"CHEBI:28644","l":"2-oxopentanoate","na":8,"nb":1,"a":[["RHEA%3A50312","2-oxopentanoate + H(+) = butanal + CO2"],["RHEA%3A66080","2-oxopentanoate + L-kynurenine = L-2-aminopentanoate + 4-(2-aminophenyl)-2,4-dioxobutanoate"],["RHEA%3A66076","2-oxopentanoate + L-kynurenine = L-2-aminopentanoate + kynurenate + H2O"],["RHEA%3A77359","2-oxopentanoate + N(omega),N(omega)-dimethyl-L-arginine = 5-(3,3-dimethylguanidino)-2-oxopentanoate + L-2-aminopentanoate"],["RHEA%3A82487","(2R)-hydroxypentanoate + FAD + H(+) = 2-oxopentanoate + FADH2"],["RHEA%3A37035","L-2-aminopentanoate + NAD(+) + H2O = 2-oxopentanoate + NH4(+) + NADH + H(+)"]],"b":[["mapped/2-oxopentanoate.yaml","2-oxopentanoate"]]},{"id":"CHEBI:48944","l":"","na":8,"nb":1,"a":[["EC%3A2.7.2.14","branched-chain-fatty-acid kinase"],["RHEA%3A80347","(1R,2R,3S,8R,10R,11R,15S,16S)-3-(acetyloxy)-15-[(4R)-4-[(2S)-3,3-dimethyloxiran-2-yl]-1,4-dihydroxybutan-2-yl]-2,7,7,11,16-pentamethyl-5-oxo-6-oxatetracyclo[9.7.0.0(2,8).0(12,16)]octadec-12-en-10-yl acetate + reduced [NADPH--hemoprotein reductase] + O2 = (1R,2R,3S,8R,10R,11R,15S,16S)-3-(acetyloxy)-15-(1-hydroxy-4-oxobutan-2-yl)-2,7,7,11,16-pentamethyl-5-oxo-6-oxatetracyclo[9.7.0.0(2,8).0(12,16)]octadec-12-en-10-yl acetate + 2-methylpropanoate + oxidized [NADPH--hemoprotein reductase] + H2O + 2 H(+)"],["RHEA%3A80351","(1S,3bR,4R,5aR,9aR,9bR,11aS)-1-[(4R)-5-[(2S)-3,3-dimethyloxiran-2-yl]-1,4-dihydroxybutan-2-yl]-3b,6,6,9a,11a-pentamethyl-7-oxo-1H,2H,3bH,4H,5H,5aH,6H,7H,9aH,9bH,10H,11H,11aH-cyclopenta[a]phenanthren-4-yl acetate + reduced [NADPH--hemoprotein reductase] + O2 = (1S,3bR,4R,5aR,9aR,9bR,11aS)-1-(1-hydroxy-4-oxobutan-2-yl)-3b,6,6,9a,11a-pentamethyl-7-oxo-1H,2H,3bH,4H,5H,5aH,6H,7H,9aH,9bH,10H,11H,11aH-cyclopenta[a]phenanthren-4-yl acetate + 2-methylpropanoate + oxidized [NADPH--hemoprotein reductase] + H2O + 2 H(+)"],["RHEA%3A42576","2-hydroxy-7-methyl-6-oxo-(2E,4E)-octadienoate + H2O = 2-oxopent-4-enoate + 2-methylpropanoate + H(+)"],["RHEA%3A24156","2-methylpropanoate + ATP = 2-methylpropanoyl phosphate + ADP"],["RHEA%3A46176","2-methylpropanoate + ATP + CoA = 2-methylpropanoyl-CoA + AMP + diphosphate"]],"b":[["mapped/Isobutyrate.yaml","Isobutyrate"]]},{"id":"CHEBI:53071","l":"L-galactonate","na":8,"nb":1,"a":[["EC%3A1.1.1.365","D-galacturonate reductase"],["EC%3A1.1.1.414","L-galactonate 5-dehydrogenase"],["EC%3A4.2.1.146","L-galactonate dehydratase"],["RHEA%3A38103","L-galactonate = 2-dehydro-3-deoxy-L-galactonate + H2O"],["RHEA%3A28823","L-galactonate(in) + H(+)(in) = L-galactonate(out) + H(+)(out)"],["RHEA%3A30183","L-galactonate + NAD(+) = keto-D-tagaturonate + NADH + H(+)"]],"b":[["mapped/L-galactonate.yaml","L-galactonate"]]},{"id":"CHEBI:6030","l":"isoniazide","na":8,"nb":1,"a":[["ARO%3A3004266","antibiotic resistant katG"],["ARO%3A3003416","isoniazid resistant katG"],["ARO%3A3003392","Mycobacterium tuberculosis katG mutations conferring resistance to isoniazid"],["ARO%3A3005102","Mycobacterium tuberculosis katG mutations conferring resistance to prothionamide"],["ARO%3A3005101","prothionamide resistant katG"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["mapped/Isoniazid.yaml","Isoniazid"]]},{"id":"CHEBI:15226","l":"","na":7,"nb":1,"a":[["EC%3A1.8.2.2","thiosulfate dehydrogenase"],["EC%3A1.8.5.2","thiosulfate dehydrogenase (quinone)"],["RHEA%3A20549","2 thiosulfate + 2 Fe(III)-[cytochrome c] = tetrathionate + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A10936","6-decylubiquinone + 2 thiosulfate = 6-decylubiquinol + tetrathionate"],["RHEA%3A13541","tetrathionate + H2O = sulfur + thiosulfate + sulfate + H(+)"],["TCDB%3A5.A.3","The Prokaryotic Molybdopterin-containing Oxidoreductase (PMO) Family"]],"b":[["mapped/Tetrathionate.yaml","Tetrathionate"]]},{"id":"CHEBI:15837","l":"isoamylol","na":7,"nb":1,"a":[["EC%3A1.1.1.265","3-methylbutanal reductase"],["EC%3A3.1.1.112","isoamyl acetate esterase"],["RHEA%3A65236","3-methylbutan-1-ol + acetyl-CoA = 3-methylbutyl acetate + CoA"],["RHEA%3A85967","3-methylbutan-1-ol + hexadecanoyl-CoA = 3-methylbutyl hexadecanoate + CoA"],["RHEA%3A18529","3-methylbutan-1-ol + NAD(+) = 3-methylbutanal + NADH + H(+)"],["RHEA%3A18525","3-methylbutan-1-ol + NADP(+) = 3-methylbutanal + NADPH + H(+)"]],"b":[["mapped/3-methyl-1-butanol.yaml","3-methyl-1-butanol"]]},{"id":"CHEBI:16118","l":"berberine","na":7,"nb":1,"a":[["EC%3A1.21.3.2","columbamine oxidase"],["EC%3A1.3.3.8","tetrahydroberberine oxidase"],["EC%3A1.5.1.31","berberine reductase"],["RHEA%3A23564","2 columbamine + O2 = 2 berberine + 2 H2O"],["RHEA%3A21268","(R)-canadine + 2 NADP(+) = berberine + 2 NADPH + H(+)"],["RHEA%3A13489","(S)-canadine + 2 O2 + H(+) = berberine + 2 H2O2"]],"b":[["mapped/Berberine.yaml","Berberine"]]},{"id":"CHEBI:16737","l":"creatinine","na":7,"nb":1,"a":[["EC%3A3.5.2.10","creatininase"],["EC%3A3.5.4.21","creatinine deaminase"],["RHEA%3A14533","creatinine + H2O = creatine"],["RHEA%3A12681","creatinine + H2O + H(+) = N-methylhydantoin + NH4(+)"],["RHEA%3A74539","creatinine(in) = creatinine(out)"],["RHEA%3A72183","creatinine(in) + H(+)(out) = creatinine(out) + H(+)(in)"]],"b":[["mapped/Creatinine.yaml","Creatinine"]]},{"id":"CHEBI:16892","l":"","na":7,"nb":1,"a":[["EC%3A2.7.1.49","hydroxymethylpyrimidine kinase"],["EC%3A3.5.99.2","aminopyrimidine aminohydrolase"],["RHEA%3A31799","4-amino-5-aminomethyl-2-methylpyrimidine + H2O = 4-amino-5-hydroxymethyl-2-methylpyrimidine + NH4(+)"],["RHEA%3A23096","4-amino-5-hydroxymethyl-2-methylpyrimidine + ATP = 4-amino-2-methyl-5-(phosphooxymethyl)pyrimidine + ADP + H(+)"],["RHEA%3A17509","thiamine + H2O = 5-(2-hydroxyethyl)-4-methylthiazole + 4-amino-5-hydroxymethyl-2-methylpyrimidine + H(+)"],["MCSA%3A670","hydroxymethylpyrimidine kinase"]],"b":[["mapped/4-Amino-5-hydroxymethyl-2-methylpyrimidine.yaml","4-Amino-5-hydroxymethyl-2-methylpyrimidine"]]},{"id":"CHEBI:16997","l":"","na":7,"nb":1,"a":[["EC%3A1.1.1.55","lactaldehyde reductase (NADPH)"],["EC%3A4.2.1.28","propanediol dehydratase"],["RHEA%3A56584","1,2-epoxypropane + H2O = propane-1,2-diol"],["RHEA%3A15885","propane-1,2-diol + NADP(+) = (S)-lactaldehyde + NADPH + H(+)"],["RHEA%3A14569","propane-1,2-diol = propanal + H2O"],["TCDB%3A1.S.4","The Bacterial Microcompartment Shell/Pore-forming Protein-4 (BMC-SP4) Family"]],"b":[["mapped/12-Propanediol.yaml","1,2-Propanediol"]]},{"id":"CHEBI:17113","l":"","na":7,"nb":1,"a":[["EC%3A2.7.1.215","erythritol kinase (D-erythritol 1-phosphate-forming)"],["EC%3A2.7.1.27","erythritol kinase (D-erythritol 4-phosphate-forming)"],["RHEA%3A49624","erythritol + ATP = D-erythritol 1-phosphate + ADP + H(+)"],["RHEA%3A20708","erythritol + ATP = D-erythritol 4-phosphate + ADP + H(+)"],["RHEA%3A48756","erythritol + NAD(+) = D-erythrulose + NADH + H(+)"],["RHEA%3A59928","erythritol + NADP(+) = D-erythrose + NADPH + H(+)"]],"b":[["mapped/Meso-Erythritol.yaml","meso-Erythritol"]]},{"id":"CHEBI:17634","l":"D-glucose","na":1,"nb":7,"a":[["MCSA%3A976","α‑glucosidase maltase-glucoamylase"]],"b":[["mapped/Brain_Heart_Infusion_Broth.yaml","Brain heart infusion broth"],["mapped/D-glucose.yaml","D-Glucose"],["mapped/Dextrose.yaml","Dextrose"],["mapped/Glucose_Acetate.yaml","Glucose + Acetate"],["mapped/Glucose_Cellobiose_Starch_Trypticase_Yeast_Extract.yaml","Glucose + Cellobiose + Starch + Trypticase + Yeast Extract"],["mapped/Glucose_Formate.yaml","Glucose + Formate"]]},{"id":"CHEBI:1883","l":"","na":7,"nb":1,"a":[["EC%3A1.13.11.94","4-vinylguaiacol dioxygenase"],["EC%3A4.1.1.102","phenacrylate decarboxylase"],["RHEA%3A70603","4-vinylphenol + NADH + H(+) = 4-ethylphenol + NAD(+)"],["RHEA%3A80571","4-vinylphenol + O2 = 4-hydroxybenzaldehyde + formaldehyde"],["RHEA%3A86075","4-vinylphenol + S-adenosyl-L-methionine = 4-vinylanisole + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A33227","(E)-4-coumarate + H(+) = 4-vinylphenol + CO2"]],"b":[["mapped/4-vinylphenol.yaml","4-vinylphenol"]]},{"id":"CHEBI:30742","l":"ethylene glycol","na":7,"nb":1,"a":[["EC%3A3.1.1.102","mono(ethylene terephthalate) hydrolase"],["RHEA%3A42648","(2,5-ethylene furandicarboxylate)(n) + 2 H2O = (2,5-ethylene furandicarboxylate)(n-1) + 2,5-dicarboxyfuran + ethylene glycol + 2 H(+)"],["RHEA%3A49532","4-[(2-hydroxyethoxy)carbonyl]benzoate + H2O = terephthalate + ethylene glycol + H(+)"],["RHEA%3A80759","bis(2-hydroxyethyl) terephthalate + H2O = 4-[(2-hydroxyethoxy)carbonyl]benzoate + ethylene glycol + H(+)"],["RHEA%3A27630","ethylene glycol + NAD(+) = glycolaldehyde + NADH + H(+)"],["MCSA%3A847","epoxide hydrolase"]],"b":[["mapped/Ethylene_Glycol.yaml","Ethylene glycol"]]},{"id":"CHEBI:50205","l":"","na":7,"nb":1,"a":[["EC%3A4.1.2.61","feruloyl-CoA hydratase/lyase"],["RHEA%3A36311","3,4-dihydroxybenzaldehyde + NAD(+) + H2O = 3,4-dihydroxybenzoate + NADH + 2 H(+)"],["RHEA%3A72539","3,4-dihydroxybenzaldehyde + NADP(+) + H2O = 3,4-dihydroxybenzoate + NADPH + 2 H(+)"],["RHEA%3A63188","3,4-dihydroxybenzaldehyde + tyramine + AH2 = norbelladine + A + H2O"],["RHEA%3A62428","3-hydroxy-3-(3,4-dihydroxyphenyl)propanoyl-CoA = 3,4-dihydroxybenzaldehyde + acetyl-CoA"],["RHEA%3A36307","(E)-caffeoyl-CoA + H2O = 3,4-dihydroxybenzaldehyde + acetyl-CoA"]],"b":[["mapped/Protocatechualdehyde.yaml","Protocatechualdehyde"]]},{"id":"CHEBI:58968","l":"","na":7,"nb":1,"a":[["RHEA%3A64736","4-hydroxynonanal + NADP(+) = (E)-4-hydroxynon-2-enal + NADPH + H(+)"],["RHEA%3A60976","(E)-4-hydroxynon-2-en-1-ol + NAD(+) = (E)-4-hydroxynon-2-enal + NADH + H(+)"],["RHEA%3A58416","(E)-4-hydroxynon-2-en-1-ol + NADP(+) = (E)-4-hydroxynon-2-enal + NADPH + H(+)"],["RHEA%3A85343","(E)-4-hydroxynon-2-enal + glutathione = 3-(glutathion-S-yl)-4-hydroxynonanal"],["RHEA%3A67248","(E)-4-hydroxynon-2-enal + NAD(+) + H2O = (E)-4-hydroxynon-2-enoate + NADH + 2 H(+)"],["RHEA%3A59912","(E)-4-hydroxynon-2-enal + NADP(+) + H2O = (E)-4-hydroxynon-2-enoate + NADPH + 2 H(+)"]],"b":[["mapped/4-Hydroxynonenal.yaml","4-Hydroxynonenal"]]},{"id":"CHEBI:62974","l":"","na":7,"nb":1,"a":[["RHEA%3A84443","D-cellotetraose = beta-D-glucosyl-(1->4)-beta-D-glucosyl-(1->4)-beta-D-glucosyl-(1->4)-D-mannopyranose"],["RHEA%3A59660","D-cellotetraose + O2 = D-cellotetraono-1,5-lactone + H2O2"],["MCSA%3A560","cellulase (GH12)"],["MCSA%3A561","cellulase (GH45)"],["MCSA%3A559","cellulase (GH9)"],["MCSA%3A440","cellulose 1,4-beta-cellobiosidase (non-reducing end)"]],"b":[["mapped/Cellotetraose.yaml","Cellotetraose"]]},{"id":"CHEBI:9349","l":"","na":7,"nb":1,"a":[["EC%3A1.14.13.245","assimilatory dimethylsulfide S-monooxygenase"],["EC%3A1.14.14.35","dimethylsulfone monooxygenase"],["EC%3A1.8.1.17","dimethylsulfone reductase"],["RHEA%3A50716","dimethyl sulfone + FMNH2 + O2 = methanesulfinate + FMN + formaldehyde + H2O + 2 H(+)"],["RHEA%3A30219","dimethyl sulfoxide + NAD(+) + H2O = dimethyl sulfone + NADH + H(+)"],["RHEA%3A57956","dimethyl sulfoxide + NADH + O2 + H(+) = dimethyl sulfone + NAD(+) + H2O"]],"b":[["mapped/Dimethyl_Sulfone.yaml","dimethyl sulfone"]]},{"id":"CHEBI:15399","l":"(+)-carvone","na":6,"nb":1,"a":[["EC%3A1.1.1.275","(+)-trans-carveol dehydrogenase"],["EC%3A1.1.1.n4","(-)-trans-carveol dehydrogenase"],["EC%3A1.3.99.25","carvone reductase"],["RHEA%3A32427","(1R,4S)-isodihydrocarvone + A = (S)-carvone + AH2"],["RHEA%3A14825","(1R,5S)-carveol + NAD(+) = (S)-carvone + NADH + H(+)"],["RHEA%3A25848","(1S,5S)-carveol + NAD(+) = (S)-carvone + NADH + H(+)"]],"b":[["mapped/D_-carvone.yaml","D(+)-Carvone"]]},{"id":"CHEBI:15409","l":"","na":6,"nb":1,"a":[["EC%3A1.1.1.207","(-)-menthol dehydrogenase"],["EC%3A1.14.13.46","(-)-menthol monooxygenase"],["EC%3A2.4.1.127","monoterpenol beta-glucosyltransferase"],["RHEA%3A13917","(-)-menthol + NADP(+) = (1R,4S)-menthone + NADPH + H(+)"],["RHEA%3A11648","(-)-menthol + NADPH + O2 + H(+) = 1,4-menthane-3,8-diol + NADP(+) + H2O"],["RHEA%3A11520","(-)-menthol + UDP-alpha-D-glucose = (-)-menthyl beta-D-glucoside + UDP + H(+)"]],"b":[["mapped/Levomenthol.yaml","Levomenthol"]]},{"id":"CHEBI:15978","l":"sn-glycerol 3-phosphate","na":1,"nb":6,"a":[["proteintraitsmech%3ABIOLIP_G3P","G3P-binding site"]],"b":[["mapped/Glycerol_2.yaml","glycerol"],["mapped/Glycerol_3-phosphate.yaml","Glycerol 3-phosphate"],["mapped/Na2_Beta-glycerol_PO4_X_5_H2O.yaml","Na2 beta-glycerol PO4 x 5 H2O"],["mapped/Na2glycerophosphate5h2o.yaml","Na2glycerophosphate•5H2O"],["mapped/Sn-Glycerol_3-phosphate_Lithium_Salt.yaml","sn-Glycerol 3-phosphate lithium salt"],["mapped/Sn-glycerol_3-phosphate_Bis_Cyclohexylammonium_Salt.yaml","sn-Glycerol 3-phosphate bis(cyclohexylammonium) salt"]]},{"id":"CHEBI:16457","l":"S,S-dimethyl-beta-propiothetin","na":6,"nb":1,"a":[["EC%3A2.1.1.269","dimethylsulfoniopropionate demethylase"],["EC%3A4.4.1.3","dimethylpropiothetin dethiomethylase"],["RHEA%3A35467","S,S-dimethyl-beta-propiothetin + (6S)-5,6,7,8-tetrahydrofolate = 3-(methylsulfanyl)propanoate + (6S)-5-methyl-5,6,7,8-tetrahydrofolate + H(+)"],["RHEA%3A19965","S,S-dimethyl-beta-propiothetin = acrylate + dimethyl sulfide + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.15","The Betaine/Carnitine/Choline Transporter (BCCT) Family"]],"b":[["mapped/Dimethylsulfoniopropionate_Hydrochloride.yaml","Dimethylsulfoniopropionate hydrochloride"]]},{"id":"CHEBI:16583","l":"","na":6,"nb":1,"a":[["EC%3A1.1.1.303","diacetyl reductase [(R)-acetoin forming]"],["EC%3A1.1.1.304","diacetyl reductase [(S)-acetoin forming]"],["RHEA%3A35607","acetoin + NADP(+) = diacetyl + NADPH + H(+)"],["RHEA%3A22900","(R)-acetoin + NAD(+) = diacetyl + NADH + H(+)"],["RHEA%3A27286","(S)-acetoin + NAD(+) = diacetyl + NADH + H(+)"],["proteintraitsmech%3ABIOLIP_BUO","BUO-binding site"]],"b":[["mapped/Diacetyl.yaml","Diacetyl"]]},{"id":"CHEBI:16719","l":"","na":6,"nb":1,"a":[["EC%3A1.1.1.168","2-dehydropantolactone reductase (Re-specific)"],["EC%3A1.1.1.214","2-dehydropantolactone reductase (Si-specific)"],["EC%3A1.1.1.358","2-dehydropantolactone reductase"],["EC%3A1.1.99.27","(R)-pantolactone dehydrogenase (flavin)"],["RHEA%3A21004","(R)-pantolactone + A = 2-dehydropantolactone + AH2"],["RHEA%3A18981","(R)-pantolactone + NADP(+) = 2-dehydropantolactone + NADPH + H(+)"]],"b":[["mapped/D-_-pantolactone.yaml","D-(-)-Pantolactone"]]},{"id":"CHEBI:17276","l":"","na":6,"nb":1,"a":[["EC%3A2.4.1.357","phlorizin synthase"],["EC%3A3.7.1.4","phloretin hydrolase"],["RHEA%3A23396","phloretin + H2O = phloretate + 1,3,5-trihydroxybenzene + H(+)"],["RHEA%3A51576","phloretin + UDP-alpha-D-glucose = phlorizin + UDP + H(+)"],["RHEA%3A65148","phloretin + UDP-alpha-D-glucose = trilobatin + UDP + H(+)"],["RHEA%3A69639","phlorizin + H2O = phloretin + beta-D-glucose"]],"b":[["mapped/Phloretin.yaml","Phloretin"]]},{"id":"CHEBI:17489","l":"","na":6,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17489","requires cAMP"],["ARO%3A3004251","antibiotic-resistant cya adenylate cyclase"],["ARO%3A3004250","antibiotic-resistant ptsI phosphotransferase"],["ARO%3A3003900","Escherichia coli cyaA with mutation conferring resistance to fosfomycin"],["ARO%3A3003899","Escherichia coli PtsI with mutation conferring resistance to fosfomycin"],["proteintraitsmech%3ABIOLIP_CMP","CMP-binding site"]],"b":[["mapped/Adenosine_35-Cyclic_Monophosphate.yaml","Adenosine 3,5-Cyclic Monophosphate"]]},{"id":"CHEBI:17580","l":"linalool","na":6,"nb":1,"a":[["EC%3A1.14.14.84","linalool 8-monooxygenase"],["EC%3A5.4.4.8","linalool isomerase"],["RHEA%3A68708","(2E)-geranyl diphosphate + H2O = linalool + diphosphate"],["RHEA%3A32635","linalool + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = (6E)-8-oxolinalool + 2 oxidized [NADPH--hemoprotein reductase] + 3 H2O + 2 H(+)"],["RHEA%3A54656","linalool = (2E)-geraniol"],["RHEA%3A32503","linalool + reduced [NADPH--hemoprotein reductase] + O2 = (6E)-8-hydroxylinalool + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["mapped/Linalool.yaml","Linalool"]]},{"id":"CHEBI:18246","l":"(1->4)-beta-D-glucan","na":6,"nb":1,"a":[["EC%3A2.4.1.12","cellulose synthase (UDP-forming)"],["EC%3A2.4.1.29","cellulose synthase (GDP-forming)"],["EC%3A2.4.1.49","cellodextrin phosphorylase"],["RHEA%3A17797","[(1->4)-beta-D-glucosyl](n) + GDP-alpha-D-glucose = [(1->4)-beta-D-glucosyl](n+1) + GDP + H(+)"],["RHEA%3A23024","[(1->4)-beta-D-glucosyl](n) + phosphate = [(1->4)-beta-D-glucosyl](n-1) + alpha-D-glucose 1-phosphate"],["RHEA%3A19929","[(1->4)-beta-D-glucosyl](n) + UDP-alpha-D-glucose = [(1->4)-beta-D-glucosyl](n+1) + UDP + H(+)"]],"b":[["mapped/Cellulose.yaml","Cellulose"]]},{"id":"CHEBI:22653","l":"asparagine","na":6,"nb":1,"a":[["TCDB%3A2.A.25","The Alanine or Glycine:Cation Symporter (AGCS) Family"],["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.13","The C4-Dicarboxylate Uptake (Dcu) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["mapped/Asparagine.yaml","Asparagine"]]},{"id":"CHEBI:28053","l":"melibiose","na":6,"nb":1,"a":[["RHEA%3A28663","melibiose + H2O = D-galactose + D-glucose"],["RHEA%3A28855","melibiose(in) + H(+)(in) = melibiose(out) + H(+)(out)"],["RHEA%3A28847","melibiose(in) + Li(+)(in) = melibiose(out) + Li(+)(out)"],["RHEA%3A28851","melibiose(in) + Na(+)(in) = melibiose(out) + Na(+)(out)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["MCSA%3A913","alpha-galactosidase"]],"b":[["mapped/Melibiose.yaml","Melibiose"]]},{"id":"CHEBI:28903","l":"","na":6,"nb":1,"a":[["RHEA%3A38223","decan-1-ol + (9Z)-octadecenoyl-CoA = decyl (9Z)-octadecenoate + CoA"],["RHEA%3A44096","decan-1-ol + hexadecanoyl-CoA = decyl hexadecanoate + CoA"],["RHEA%3A58376","decan-1-ol + NADP(+) = decanal + NADPH + H(+)"],["RHEA%3A69496","decan-1-ol + O2 = decanal + H2O2"],["RHEA%3A76755","decan-1-ol + reduced [NADPH--hemoprotein reductase] + O2 = 1,3-decanediol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A76775","decan-1-ol + reduced [NADPH--hemoprotein reductase] + O2 = 1,7-decanediol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["mapped/Decyl_Alcohol.yaml","decyl alcohol"]]},{"id":"CHEBI:28911","l":"cob(III)alamin","na":6,"nb":1,"a":[["RHEA%3A81907","(2R,3R,5R)-2-(S-pantetheinyl)-carbapenam-3-carboxylate + methylcob(III)alamin + S-adenosyl-L-methionine = (2R,3R,5S,6R)-6-(methyl)-2-(S-pantetheinyl)-carbapenam-3-carboxylate + cob(III)alamin + 5'-deoxyadenosine + L-methionine"],["RHEA%3A81911","(2R,3R,5S,6R)-6-(methyl)-2-(S-pantetheinyl)-carbapenam-3-carboxylate + methylcob(III)alamin + S-adenosyl-L-methionine = (2R,3R,5S,6R)-6-(ethyl)-2-(S-pantetheinyl)-carbapenam-3-carboxylate + cob(III)alamin + 5'-deoxyadenosine + L-methionine"],["RHEA%3A76471","cob(III)alamin + AH2 = cob(I)alamin + A + 2 H(+)"],["RHEA%3A81883","cytidine 5'-{[hydroxy(2-hydroxyethyl)phosphonoyl]phosphate} + methylcob(III)alamin + S-adenosyl-L-methionine = cytidine 5'-({hydroxy[(S)-2-hydroxypropyl]phosphonoyl}phosphate) + cob(III)alamin + 5'-deoxyadenosine + L-methionine"],["RHEA%3A77223","gentamicin X2 + methylcob(III)alamin + S-adenosyl-L-methionine = geneticin + cob(III)alamin + 5'-deoxyadenosine + L-methionine"],["RHEA%3A81891","N-acetyl-demethyl-L-phosphinothricin + methylcob(III)alamin + S-adenosyl-L-methionine = N-acetyl-L-phosphinothricin + cob(III)alamin + 5'-deoxyadenosine + L-methionine"]],"b":[["mapped/Cobalamine.yaml","Cobalamine"]]},{"id":"CHEBI:28997","l":"","na":6,"nb":1,"a":[["EC%3A3.5.4.4","adenosine deaminase"],["RHEA%3A28190","2'-deoxyadenosine + H2O + H(+) = 2'-deoxyinosine + NH4(+)"],["RHEA%3A29971","2'-deoxyinosine(in) + H(+)(in) = 2'-deoxyinosine(out) + H(+)(out)"],["RHEA%3A27750","2'-deoxyinosine + phosphate = 2-deoxy-alpha-D-ribose 1-phosphate + hypoxanthine"],["RHEA%3A29383","dIMP + H2O = 2'-deoxyinosine + phosphate"],["RHEA%3A69572","dIMP + inosine = 2'-deoxyinosine + IMP"]],"b":[["mapped/2-deoxyinosine.yaml","2'-Deoxyinosine"]]},{"id":"CHEBI:3020","l":"","na":6,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.117","The Chlorhexadine Exporter (CHX) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["mapped/Benzalkonium_Chloride.yaml","Benzalkonium Chloride"]]},{"id":"CHEBI:30477","l":"","na":6,"nb":1,"a":[["EC%3A2.1.1.265","tellurite methyltransferase"],["RHEA%3A68940","tellurite(in) + Na(+)(in) = tellurite(out) + Na(+)(out)"],["RHEA%3A34539","tellurite + S-adenosyl-L-methionine = methanetellurite + S-adenosyl-L-homocysteine"],["TCDB%3A2.A.20","The Inorganic Phosphate Transporter (PiT) Family"],["TCDB%3A2.A.21","The Solute:Sodium Symporter (SSS) Family"],["TCDB%3A2.A.16","The Telurite-resistance/Dicarboxylate Transporter (TDT) Family"]],"b":[["mapped/Tellurite.yaml","Tellurite"]]},{"id":"CHEBI:30769","l":"citric acid","na":1,"nb":6,"a":[["proteintraitsmech%3ABIOLIP_CIT","CIT-binding site"]],"b":[["mapped/Citric_Acid.yaml","Citric acid"],["mapped/Citric_Acid_X_H2o.yaml","Citric acid x H2O"],["mapped/Citric_Acidh2o.yaml","Citric Acid•H2O"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Na2-citrate.yaml","Na2-citrate"],["mapped/Trisodium_Citrate.yaml","Trisodium citrate"]]},{"id":"CHEBI:310312","l":"","na":6,"nb":1,"a":[["EC%3A2.1.1.154","isoliquiritigenin 2'-O-methyltransferase"],["EC%3A2.3.1.170","6'-deoxychalcone synthase"],["RHEA%3A10584","4-coumaroyl-CoA + 3 malonyl-CoA + NADPH + 4 H(+) = isoliquiritigenin + 3 CO2 + NADP(+) + 4 CoA + H2O"],["RHEA%3A79903","isoliquiritigenin = (2S)-liquiritigenin"],["RHEA%3A21608","isoliquiritigenin + S-adenosyl-L-methionine = 2'-O-methylisoliquiritigenin + S-adenosyl-L-homocysteine + H(+)"],["proteintraitsmech%3ABIOLIP_HCC","HCC-binding site"]],"b":[["mapped/Isoliquiritigenin.yaml","Isoliquiritigenin"]]},{"id":"CHEBI:46502","l":"tungstate","na":6,"nb":1,"a":[["EC%3A7.3.2.6","ABC-type tungstate transporter"],["RHEA%3A35295","adenylyl-molybdopterin + tungstate = W-molybdopterin cofactor + AMP + H(+)"],["RHEA%3A35027","tungstate(in) + ATP + H2O = tungstate(out) + ADP + phosphate + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.47","The Divalent Anion:Na+ Symporter (DASS) Family"],["proteintraitsmech%3ABIOLIP_WO4","WO4-binding site"]],"b":[["mapped/Tungstate.yaml","Tungstate"]]},{"id":"CHEBI:4883","l":"ethidium bromide","na":6,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.A.7","The ATP-gated P2X Receptor Cation Channel (P2X Receptor) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["mapped/Ethidium_Bromide.yaml","Ethidium Bromide"]]},{"id":"CHEBI:4917","l":"eugenol","na":6,"nb":1,"a":[["EC%3A1.1.1.318","eugenol synthase"],["EC%3A2.1.1.146","(iso)eugenol O-methyltransferase"],["RHEA%3A32655","eugenol + a carboxylate + NADP(+) = a coniferyl ester + NADPH"],["RHEA%3A24690","eugenol + acetate + NADP(+) = (E)-coniferyl acetate + NADPH"],["RHEA%3A80551","eugenol + S-adenosyl-L-methionine = O-methyleugenol + S-adenosyl-L-homocysteine + H(+)"],["proteintraitsmech%3ABIOLIP_EOL","EOL-binding site"]],"b":[["mapped/Eugenol.yaml","Eugenol"]]},{"id":"CHEBI:16689","l":"D-apiose","na":5,"nb":1,"a":[["EC%3A1.1.1.114","apiose 1-reductase"],["EC%3A5.3.1.36","D-apiose isomerase"],["RHEA%3A56996","aldehydo-D-apiose = apulose"],["RHEA%3A57040","aldehydo-D-apiose = D-apiofuranose"],["RHEA%3A15301","D-apiitol + NAD(+) = aldehydo-D-apiose + NADH + H(+)"]],"b":[["mapped/D-apiose.yaml","D-apiose"]]},{"id":"CHEBI:16865","l":"gamma-aminobutyric acid","na":5,"nb":1,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A2.A.42","The Hydroxy/Aromatic Amino Acid Permease (HAAAP) Family"],["TCDB%3A2.A.22","The Neurotransmitter:Sodium Symporter (NSS) Family"],["proteintraitsmech%3ABIOLIP_ABU","ABU-binding site"]],"b":[["mapped/Gamma-aminobutyric_Acid.yaml","gamma-Aminobutyric acid"]]},{"id":"CHEBI:17043","l":"biphenyl-2-ol","na":5,"nb":1,"a":[["EC%3A1.14.13.44","2-hydroxybiphenyl 3-monooxygenase"],["EC%3A3.13.1.3","2'-hydroxybiphenyl-2-sulfinate desulfinase"],["RHEA%3A12945","2'-hydroxybiphenyl-2-sulfinate + H2O = biphenyl-2-ol + sulfite + H(+)"],["RHEA%3A11996","biphenyl-2-ol + NADH + O2 + H(+) = biphenyl-2,3-diol + NAD(+) + H2O"],["MCSA%3A971","2'-hydroxybiphenyl-2-sulfinate desulfinase"]],"b":[["mapped/11-Biphenyl-2-ol.yaml","[1,1′-Biphenyl]-2-ol"]]},{"id":"CHEBI:17128","l":"","na":5,"nb":1,"a":[["EC%3A1.2.1.63","6-oxohexanoate dehydrogenase"],["RHEA%3A13397","6-oxohexanoate + NADP(+) + H2O = hexanedioate + NADPH + 2 H(+)"],["RHEA%3A81711","hexanedioate + glutaryl-CoA = hexanedioyl-CoA + glutarate"],["RHEA%3A71743","hexanedioate(in) + 2-oxoglutarate(out) = hexanedioate(out) + 2-oxoglutarate(in)"],["RHEA%3A40583","hexanedioyl-CoA + H2O = hexanedioate + CoA + H(+)"]],"b":[["mapped/Adipate.yaml","Adipate"]]},{"id":"CHEBI:17540","l":"","na":5,"nb":1,"a":[["EC%3A3.2.1.63","1,2-alpha-L-fucosidase"],["RHEA%3A10816","methyl-2-alpha-L-fucopyranosyl-beta-D-galactoside + H2O = methyl beta-D-galactoside + L-fucose"],["RHEA%3A72531","methyl beta-D-galactoside(out) + ATP + H2O = methyl beta-D-galactoside(in) + ADP + phosphate + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_MBG","MBG-binding site"]],"b":[["mapped/Methyl-B-D-galactopyranoside.yaml","Methyl-B-D-galactopyranoside"]]},{"id":"CHEBI:17781","l":"","na":5,"nb":1,"a":[["EC%3A3.5.99.1","riboflavinase"],["RHEA%3A86403","lumichrome(in) + ATP + H2O = lumichrome(out) + ADP + phosphate + H(+)"],["RHEA%3A86407","riboflavin + FMNH2 + O2 = lumichrome + D-ribose + FMN + H2O"],["RHEA%3A11408","riboflavin + H2O + H(+) = lumichrome + ribitol"],["proteintraitsmech%3ABIOLIP_LUM","LUM-binding site"]],"b":[["mapped/Lumichrome.yaml","Lumichrome"]]},{"id":"CHEBI:18145","l":"(R,R,R)-α-tocopherol","na":5,"nb":1,"a":[["EC%3A2.1.1.95","tocopherol C-methyltransferase"],["RHEA%3A71507","(+)-alpha-tocopherol(out) = (+)-alpha-tocopherol(in)"],["RHEA%3A45108","(+)-alpha-tocopherol + reduced [NADPH--hemoprotein reductase] + O2 = 13-hydroxy-alpha-tocopherol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A24012","gamma-tocopherol + S-adenosyl-L-methionine = (+)-alpha-tocopherol + S-adenosyl-L-homocysteine + H(+)"],["proteintraitsmech%3ABIOLIP_VIV","VIV-binding site"]],"b":[["mapped/Alpha-Tocopherol.yaml","alpha-Tocopherol"]]},{"id":"CHEBI:22599","l":"arabinose","na":5,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.B.142","The Integral membrane Glycosyltransferase family 39 (GT39) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A9.B.28","The Putative Essential Component of the MusEFGKI ABC Transporter, MusI (MusI) Family"],["TCDB%3A2.A.21","The Solute:Sodium Symporter (SSS) Family"]],"b":[["mapped/Arabinose.yaml","Arabinose"]]},{"id":"CHEBI:25979","l":"","na":5,"nb":1,"a":[["EC%3A1.14.14.77","phenylacetonitrile alpha-monooxygenase"],["EC%3A4.8.1.4","phenylacetaldoxime dehydratase"],["RHEA%3A52164","phenylacetonitrile + reduced [NADPH--hemoprotein reductase] + O2 = (R)-mandelonitrile + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A69308","(Z)-phenyl-N-(sulfonatooxy)methanimidothioate = phenylacetonitrile + sulfur + sulfate"],["RHEA%3A20069","(Z)-phenylacetaldehyde oxime = phenylacetonitrile + H2O"]],"b":[["mapped/Benzylcyanide.yaml","Benzylcyanide"]]},{"id":"CHEBI:26672","l":"siderophore","na":5,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_26672","siderophore cofactor class"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.17","The Outer Membrane Factor (OMF) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["mapped/Siderophore.yaml","Siderophore"]]},{"id":"CHEBI:27750","l":"ethyl acetate","na":5,"nb":1,"a":[["EC%3A2.3.1.268","ethanol O-acetyltransferase"],["EC%3A3.1.1.113","ethyl acetate hydrolase"],["RHEA%3A55972","ethanol + acetyl-CoA = ethyl acetate + CoA"],["RHEA%3A58148","ethyl acetate + H2O = ethanol + acetate + H(+)"],["proteintraitsmech%3ABIOLIP_EEE","EEE-binding site"]],"b":[["mapped/Ethyl_Acetate.yaml","ethyl acetate"]]},{"id":"CHEBI:28034","l":"","na":5,"nb":1,"a":[["EC%3A2.3.1.18","galactoside O-acetyltransferase"],["EC%3A2.4.3.1","beta-galactoside alpha-(2,6)-sialyltransferase"],["RHEA%3A15713","a beta-D-galactoside + acetyl-CoA = a 6-acetyl-beta-D-galactoside + CoA"],["RHEA%3A52104","a beta-D-galactoside + CMP-N-acetyl-beta-neuraminate = an N-acetyl-alpha-neuraminyl-(2->6)-beta-D-galactosyl derivative + CMP + H(+)"],["RHEA%3A85983","a beta-D-galactoside + UDP-N-acetyl-alpha-D-glucosamine = an N-acetyl-alpha-D-glucosaminyl-(1->4)-beta-D-galactosyl derivative + UDP + H(+)"]],"b":[["mapped/Beta-D-galactoside.yaml","Beta-D-galactoside"]]},{"id":"CHEBI:30043","l":"","na":5,"nb":1,"a":[["EC%3A1.14.12.15","terephthalate 1,2-dioxygenase"],["EC%3A3.1.1.102","mono(ethylene terephthalate) hydrolase"],["RHEA%3A49532","4-[(2-hydroxyethoxy)carbonyl]benzoate + H2O = terephthalate + ethylene glycol + H(+)"],["RHEA%3A10312","terephthalate + NADH + O2 + H(+) = (3S,4R)-3,4-dihydroxycyclohexa-1,5-diene-1,4-dicarboxylate + NAD(+)"],["TCDB%3A2.A.80","The Tricarboxylate Transporter (TTT) Family"]],"b":[["mapped/Terephthalate.yaml","Terephthalate"]]},{"id":"CHEBI:32588","l":"potassium chloride","na":1,"nb":5,"a":[["TCDB%3A2.A.30","The Cation-Chloride Cotransporter (CCC) Family"]],"b":[["mapped/Kcl.yaml","KCl"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Mc_general_salts.yaml","Mc_general_salts"],["mapped/Mc_general_salts_SO4free.yaml","Mc_general_salts_SO4free"]]},{"id":"CHEBI:35899","l":"crotonate","na":5,"nb":1,"a":[["EC%3A1.3.1.31","2-enoate reductase"],["RHEA%3A74903","(2E)-2-butenoate + ATP + H(+) = (2E)-but-2-enoyl-AMP + diphosphate"],["RHEA%3A74899","(2E)-2-butenoate + holo-[ACP] + ATP = (2E)-butenoyl-[ACP] + AMP + diphosphate"],["RHEA%3A10200","butanoate + NAD(+) = (2E)-2-butenoate + NADH + H(+)"],["RHEA%3A69172","N(6)-(2E)-butenoyl-L-lysyl-[protein] + H2O = (2E)-2-butenoate + L-lysyl-[protein]"]],"b":[["mapped/Na-crotonate.yaml","Na-crotonate"]]},{"id":"CHEBI:37671","l":"(1->3)-beta-D-glucan","na":5,"nb":1,"a":[["EC%3A2.4.1.30","1,3-beta-oligoglucan phosphorylase"],["EC%3A2.4.1.34","1,3-beta-glucan synthase"],["EC%3A2.4.1.97","1,3-beta-D-glucan phosphorylase"],["RHEA%3A16041","[(1->3)-beta-D-glucosyl](n) + phosphate = [(1->3)-beta-D-glucosyl](n-1) + alpha-D-glucose 1-phosphate"],["RHEA%3A21476","[(1->3)-beta-D-glucosyl](n) + UDP-alpha-D-glucose = [(1->3)-beta-D-glucosyl](n+1) + UDP + H(+)"]],"b":[["mapped/3-beta-d-glucan.yaml","3-beta-D-glucan"]]},{"id":"CHEBI:38028","l":"","na":5,"nb":1,"a":[["EC%3A3.5.2.15","cyanuric acid amidohydrolase"],["EC%3A3.5.4.42","N-isopropylammelide isopropylaminohydrolase"],["RHEA%3A70363","cyanurate + H2O = 1-carboxybiuret + H(+)"],["RHEA%3A14641","cyanurate + H2O = biuret + CO2"],["RHEA%3A23608","N-isopropylammelide + H2O + H(+) = isopropylamine + cyanurate"]],"b":[["mapped/Cyanuric_acid.yaml","Cyanuric acid"]]},{"id":"CHEBI:3962","l":"curcumin","na":5,"nb":1,"a":[["EC%3A1.3.1.n3","curcumin reductase"],["EC%3A2.3.1.217","curcumin synthase"],["RHEA%3A34819","dihydrocurcumin + NADP(+) = curcumin + NADPH + H(+)"],["RHEA%3A34823","(E)-feruloylacetyl-CoA + (E)-feruloyl-CoA + H2O = curcumin + CO2 + 2 CoA"],["RHEA%3A34815","tetrahydrocurcumin + 2 NADP(+) = curcumin + 2 NADPH + 2 H(+)"]],"b":[["mapped/Curcumin.yaml","Curcumin"]]},{"id":"CHEBI:44423","l":"","na":5,"nb":1,"a":[["EC%3A2.6.99.3","O-ureido-L-serine synthase"],["EC%3A3.5.3.25","N(omega)-hydroxy-L-arginine amidinohydrolase"],["RHEA%3A36263","hydroxyurea + O-acetyl-L-serine = O-ureido-L-serine + acetate + H(+)"],["RHEA%3A36791","N(omega)-hydroxy-L-arginine + H2O = hydroxyurea + L-ornithine"],["proteintraitsmech%3ABIOLIP_NHY","NHY-binding site"]],"b":[["mapped/Hydroxyurea.yaml","Hydroxyurea"]]},{"id":"CHEBI:541975","l":"","na":5,"nb":1,"a":[["RHEA%3A42188","3beta-hydroxy-5alpha-androstan-17-one + NAD(+) = 5alpha-androstan-3,17-dione + NADH + H(+)"],["RHEA%3A56916","3beta-hydroxy-5alpha-androstan-17-one + NADP(+) = 5alpha-androstan-3,17-dione + NADPH + H(+)"],["RHEA%3A53480","3beta-hydroxy-5alpha-androstan-17-one + NADPH + H(+) = 5alpha-androstane-3beta,17beta-diol + NADP(+)"],["RHEA%3A43896","3beta-hydroxy-5alpha-androstan-17-one + reduced [NADPH--hemoprotein reductase] + O2 = 3beta,7alpha-dihydroxy-5alpha-androstan-17-one + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A61820","3beta-hydroxy-5alpha-androstan-17-one + UDP-alpha-D-glucose = epiandrosterone 3-beta-D-glucoside + UDP + H(+)"]],"b":[["mapped/Epiandrosterone.yaml","Epiandrosterone"]]},{"id":"CHEBI:75937","l":"monooleoylglycerol","na":5,"nb":1,"a":[["RHEA%3A38455","1,2-di-(9Z-octadecenoyl)-glycerol + H2O = (9Z-octadecenoyl)-glycerol + (9Z)-octadecenoate + H(+)"],["RHEA%3A39935","1,2-di-(9Z-octadecenoyl)-sn-glycerol + H2O = (9Z-octadecenoyl)-glycerol + (9Z)-octadecenoate + H(+)"],["RHEA%3A39955","(9Z-octadecenoyl)-glycerol + H2O = glycerol + (9Z)-octadecenoate + H(+)"],["RHEA%3A50884","(9Z)-octadecenoyl-sn-glycero-3-phosphate + H2O = (9Z-octadecenoyl)-glycerol + phosphate"],["RHEA%3A47868","di-(9Z)-octadecenoylglycerol + H2O = (9Z-octadecenoyl)-glycerol + (9Z)-octadecenoate + H(+)"]],"b":[["mapped/Glycerol_Mono-oleate.yaml","Glycerol mono-oleate"]]},{"id":"CHEBI:11047","l":"(S)-3-hydroxybutyrate","na":4,"nb":1,"a":[["EC%3A1.1.99.24","hydroxyacid-oxoacid transhydrogenase"],["RHEA%3A65208","(3S)-3-hydroxybutanoyl-CoA + H2O = (S)-3-hydroxybutanoate + CoA + H(+)"],["RHEA%3A23048","(S)-3-hydroxybutanoate + 2-oxoglutarate = (R)-2-hydroxyglutarate + acetoacetate"],["RHEA%3A71871","(S)-3-hydroxybutanoate(out) + H(+)(out) = (S)-3-hydroxybutanoate(in) + H(+)(in)"]],"b":[["mapped/S-3-hydroxybutyrate.yaml","(S)-3-hydroxybutyrate"]]},{"id":"CHEBI:13997","l":"","na":4,"nb":1,"a":[["EC%3A2.8.3.11","citramalate CoA-transferase"],["RHEA%3A17621","citramalate + acetyl-CoA = (3S)-citramalyl-CoA + acetate"],["TCDB%3A2.A.24","The 2-Hydroxycarboxylate Transporter (2-HCT) Family"],["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"]],"b":[["mapped/Citramalate.yaml","Citramalate"]]},{"id":"CHEBI:15447","l":"","na":4,"nb":1,"a":[["EC%3A2.4.2.24","1,4-beta-D-xylan synthase"],["RHEA%3A15289","[(1->4)-beta-D-xylan](n) + UDP-alpha-D-xylose = [(1->4)-beta-D-xylan](n+1) + UDP + H(+)"],["MCSA%3A431","acetylxylan esterase"],["proteintraitsmech%3ABIOLIP_XYP","XYP-binding site"]],"b":[["mapped/Xylan_From_Beechwood.yaml","Xylan from Beechwood"]]},{"id":"CHEBI:15794","l":"","na":4,"nb":1,"a":[["EC%3A1.17.3.4","juglone 3-hydroxylase"],["RHEA%3A18745","2 juglone + O2 = 2 3,5-dihydroxy-1,4-naphthoquinone + 2 H(+)"],["RHEA%3A50748","juglone + H2O = naphthalene-1,2,4,8-tetrol"],["proteintraitsmech%3ABIOLIP_JUG","JUG-binding site"]],"b":[["mapped/Juglone.yaml","Juglone"]]},{"id":"CHEBI:15895","l":"","na":4,"nb":1,"a":[["EC%3A1.1.1.48","D-galactose 1-dehydrogenase"],["EC%3A3.1.1.25","1,4-lactonase"],["RHEA%3A44900","D-galactono-1,4-lactone + H2O = D-galactonate + H(+)"],["RHEA%3A21296","D-galactose + NAD(+) = D-galactono-1,4-lactone + NADH + H(+)"]],"b":[["mapped/D-galactonic_Acid_Lactone.yaml","D-galactonic Acid Lactone"]]},{"id":"CHEBI:16087","l":"","na":4,"nb":1,"a":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["TCDB%3A1.B.25","The Outer Membrane Porin (Opr) Family"],["MCSA%3A552","aconitate hydratase"],["MCSA%3A272","isocitrate lyase"]],"b":[["mapped/Isocitrate.yaml","Isocitrate"]]},{"id":"CHEBI:16096","l":"","na":4,"nb":1,"a":[["EC%3A2.1.1.118","columbamine O-methyltransferase"],["EC%3A2.1.1.147","corydaline synthase"],["RHEA%3A15373","columbamine + S-adenosyl-L-methionine = palmatine + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A14773","palmatine + S-adenosyl-L-methionine + 2 NADPH = corydaline + S-adenosyl-L-homocysteine + 2 NADP(+)"]],"b":[["mapped/Palmatine.yaml","Palmatine"]]},{"id":"CHEBI:16109","l":"propane-1,3-diol","na":4,"nb":1,"a":[["EC%3A1.1.1.202","1,3-propanediol dehydrogenase"],["RHEA%3A23188","propane-1,3-diol + NAD(+) = 3-hydroxypropanal + NADH + H(+)"],["RHEA%3A35599","propane-1,3-diol + NADP(+) = 3-hydroxypropanal + NADPH + H(+)"],["proteintraitsmech%3ABIOLIP_PDO","PDO-binding site"]],"b":[["mapped/13-Propanediol.yaml","1,3-Propanediol"]]},{"id":"CHEBI:16148","l":"heptadecane","na":4,"nb":1,"a":[["EC%3A4.1.99.5","aldehyde oxygenase (deformylating)"],["RHEA%3A77243","hnu + octadecanoate + H(+) = heptadecane + CO2"],["RHEA%3A30415","octadecanal + 2 NADPH + O2 + H(+) = heptadecane + formate + 2 NADP(+) + H2O"],["RHEA%3A83559","octadecanal + reduced [NADPH--hemoprotein reductase] + O2 = heptadecane + oxidized [NADPH--hemoprotein reductase] + CO2 + H2O + H(+)"]],"b":[["mapped/Heptadecane.yaml","Heptadecane"]]},{"id":"CHEBI:16226","l":"","na":4,"nb":1,"a":[["EC%3A2.4.1.210","limonoid glucosyltransferase"],["EC%3A3.1.1.36","limonin-D-ring-lactonase"],["RHEA%3A10896","limonin + 2 H2O = limonoate + 2 H(+)"],["RHEA%3A11256","limonin + UDP-alpha-D-glucose + H2O = limonin 17-beta-D-glucoside + UDP + 2 H(+)"]],"b":[["mapped/Limonin.yaml","Limonin"]]},{"id":"CHEBI:16238","l":"FAD","na":4,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16238","requires FAD"],["MCSA%3A968","aldehyde oxidase"],["MCSA%3A969","Phytoene desaturase (lycopene-forming)"],["proteintraitsmech%3ABIOLIP_FAD","FAD-binding site"]],"b":[["mapped/Fad.yaml","FAD"]]},{"id":"CHEBI:16354","l":"N-methylhydantoin","na":4,"nb":1,"a":[["EC%3A3.5.2.14","N-methylhydantoinase (ATP-hydrolyzing)"],["EC%3A3.5.4.21","creatinine deaminase"],["RHEA%3A12681","creatinine + H2O + H(+) = N-methylhydantoin + NH4(+)"],["RHEA%3A11720","N-methylhydantoin + ATP + 2 H2O = N-carbamoylsarcosine + ADP + phosphate + 2 H(+)"]],"b":[["mapped/N-methylhydantoin.yaml","N-methylhydantoin"]]},{"id":"CHEBI:16523","l":"","na":4,"nb":1,"a":[["GO%3A0070179","D-serine biosynthetic process"],["ARO%3A3002973","vanTm gene in vanL cluster"],["ARO%3A3002974","vanTr gene in vanL cluster"],["proteintraitsmech%3ABIOLIP_DSN","DSN-binding site"]],"b":[["mapped/D-Serine.yaml","D-Serine"]]},{"id":"CHEBI:17246","l":"","na":4,"nb":1,"a":[["EC%3A1.1.2.6","polyvinyl alcohol dehydrogenase (cytochrome)"],["EC%3A1.1.3.30","polyvinyl-alcohol oxidase"],["RHEA%3A20157","a polyvinyl alcohol + 2n Fe(III)-[cytochrome c] = an oxidized polyvinyl alcohol + 2n Fe(II)-[cytochrome c] + 2n H(+)"],["RHEA%3A21688","a polyvinyl alcohol + n O2 = an oxidized polyvinyl alcohol + n H2O2"]],"b":[["mapped/Polyvinyl_alcohol.yaml","Polyvinyl alcohol"]]},{"id":"CHEBI:17561","l":"L-cysteine","na":1,"nb":4,"a":[["proteintraitsmech%3ABIOLIP_CYS","CYS-binding site"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-cysteine.yaml","L-Cysteine"],["mapped/L-cysteine_Hcl_X_H2o.yaml","L-Cysteine HCl x H2O"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:17682","l":"","na":4,"nb":1,"a":[["EC%3A4.1.2.38","benzoin aldolase"],["RHEA%3A21460","benzoin = 2 benzaldehyde"],["RHEA%3A25960","benzoin + NADP(+) = benzil + NADPH + H(+)"],["MCSA%3A221","benzoin aldolase"]],"b":[["mapped/Benzoin.yaml","Benzoin"]]},{"id":"CHEBI:18154","l":"polysaccharide","na":4,"nb":1,"a":[["TCDB%3A9.B.97","The Acyltransferase-3/Putative Acetyl-CoA Transporter (AT3AT) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.18","The Outer Membrane Auxiliary (OMA) Protein Family"]],"b":[["mapped/Polysaccharides.yaml","Polysaccharides"]]},{"id":"CHEBI:18268","l":"","na":4,"nb":1,"a":[["EC%3A1.1.1.20","glucuronolactone reductase"],["RHEA%3A30767","D-glucurono-3,6-lactone + H2O = D-glucuronate + H(+)"],["RHEA%3A30883","D-glucurono-3,6-lactone + NAD(+) + 2 H2O = D-glucarate + NADH + 3 H(+)"],["RHEA%3A18925","L-gulono-1,4-lactone + NADP(+) = D-glucurono-3,6-lactone + NADPH + H(+)"]],"b":[["mapped/D-Glucuronic_Acid_Gamma_Lactone.yaml","D-Glucuronic acid gamma lactone"]]},{"id":"CHEBI:18353","l":"","na":4,"nb":1,"a":[["EC%3A1.1.3.38","vanillyl-alcohol oxidase"],["RHEA%3A10036","4-hydroxy-3-methoxy-benzenemethanol + O2 = vanillin + H2O2"],["RHEA%3A76619","(6E)-8-methylnon-6-enoyl-CoA + 4-hydroxy-3-methoxy-benzenemethanol = capsiate + CoA"],["RHEA%3A76611","vanillin + NADPH + H(+) = 4-hydroxy-3-methoxy-benzenemethanol + NADP(+)"]],"b":[["mapped/Vanillyl_Alcohol.yaml","Vanillyl Alcohol"]]},{"id":"CHEBI:23681","l":"dibenzothiophene","na":4,"nb":1,"a":[["EC%3A1.14.14.21","dibenzothiophene monooxygenase"],["RHEA%3A49072","dibenzothiophene + 2 FMNH2 + 2 O2 = dibenzothiophene 5,5-dioxide + 2 FMN + 2 H2O + 2 H(+)"],["RHEA%3A49076","dibenzothiophene + FMNH2 + O2 = dibenzothiophene 5-oxide + FMN + H2O + H(+)"],["MCSA%3A973","DszC protein"]],"b":[["mapped/Dibenzothiophene.yaml","Dibenzothiophene"]]},{"id":"CHEBI:27605","l":"D-psicose","na":4,"nb":1,"a":[["EC%3A5.1.3.30","D-psicose 3-epimerase"],["EC%3A5.1.3.31","D-tagatose 3-epimerase"],["RHEA%3A42360","D-allulose = keto-D-fructose"],["proteintraitsmech%3ABIOLIP_PSJ","PSJ-binding site"]],"b":[["mapped/D-psicose.yaml","D-psicose"]]},{"id":"CHEBI:27856","l":"","na":4,"nb":1,"a":[["EC%3A3.5.1.4","amidase"],["RHEA%3A85603","acetamide = acetonitrile + H2O"],["RHEA%3A45048","acetamide + H2O = acetate + NH4(+)"],["RHEA%3A51648","N(6)-acetyl-L-lysyl-[protein] + O2 + H2O = acetamide + (S)-2-amino-6-oxohexanoyl-[protein] + H2O2"]],"b":[["mapped/Acetamide.yaml","Acetamide"]]},{"id":"CHEBI:27904","l":"D-erythrose","na":4,"nb":1,"a":[["RHEA%3A80075","D-erythrose + 3-hydroxypyruvate = (3S,4S,5R,6R)-3,4,5,6,7-pentahydroxy-2-oxoheptanoate"],["RHEA%3A66376","D-erythrose 4-phosphate + H2O = D-erythrose + phosphate"],["RHEA%3A53180","D-erythrose = D-erythrulose"],["RHEA%3A59928","erythritol + NADP(+) = D-erythrose + NADPH + H(+)"]],"b":[["mapped/D-erythrose.yaml","D-erythrose"]]},{"id":"CHEBI:28161","l":"","na":4,"nb":1,"a":[["RHEA%3A84895","4-O-methyl-alpha-D-glucuronosyl-(1->2)-beta-D-xylose + H2O = beta-D-xylose + 4-O-methyl-beta-D-glucuronate"],["RHEA%3A63336","alpha-D-xylose = beta-D-xylose"],["MCSA%3A548","endo-1,4-beta-xylanase (glycosyl hydrolase 10)"],["MCSA%3A432","endo-1,4-beta-xylanase (glycosyl hydrolase 11 family)"]],"b":[["mapped/Beta-D-xylose.yaml","Beta-D-xylose"]]},{"id":"CHEBI:30411","l":"cobalamin","na":4,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_30411","requires cobalamin"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.A.54","The Lysosomal Cobalamin (B12) Transporter (L-B12T) Family"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]],"b":[["mapped/Cobalamine.yaml","Cobalamine"]]},{"id":"CHEBI:32139","l":"sodium hydrogencarbonate","na":1,"nb":4,"a":[["TCDB%3A2.A.31","The Anion Exchanger (AE) Family"]],"b":[["mapped/84_GL_NaHCO3_Solution.yaml","84 g/L NaHCO3 solution"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Nahco3.yaml","NaHCO3"]]},{"id":"CHEBI:34768","l":"furfural","na":4,"nb":1,"a":[["RHEA%3A77519","furfural + hydrogen cyanide = (2R)-2-(furan-2-yl)-2-hydroxyacetonitrile"],["RHEA%3A76667","furfural + NAD(+) + H2O = 2-furoate + NADH + 2 H(+)"],["RHEA%3A76671","furfural + NADP(+) + H2O = 2-furoate + NADPH + 2 H(+)"],["TCDB%3A1.C.113","The Hemolysin III (Hly III) Family"]],"b":[["mapped/2-Furfuraldehyde.yaml","2-Furfuraldehyde"]]},{"id":"CHEBI:3528","l":"","na":4,"nb":1,"a":[["RHEA%3A84439","D-cellotriose = beta-D-glucosyl-(1->4)-beta-D-glucosyl-(1->4)-D-mannopyranose"],["RHEA%3A59656","D-cellotriose + O2 = D-cellotriono-1,5-lactone + H2O2"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A4.A.3","The PTS Lactose-N,N'-Diacetylchitobiose-β-glucoside (Lac) Family"]],"b":[["mapped/Cellotriose.yaml","Cellotriose"]]},{"id":"CHEBI:4167)","l":"","na":4,"nb":1,"a":[["RHEA%3A22152","a ubiquinone + D-glucose = D-glucono-1,5-lactone + a ubiquinol"],["RHEA%3A20637","D-fructose + D-glucose = D-glucono-1,5-lactone + D-sorbitol"],["RHEA%3A17825","D-glucose + ATP = D-glucose 6-phosphate + ADP + H(+)"],["RHEA%3A68864","isomaltose + H2O = alpha-D-glucose + D-glucose"]],"b":[["mapped/Dextrose.yaml","Dextrose"]]},{"id":"CHEBI:45422","l":"","na":4,"nb":1,"a":[["RHEA%3A68112","propanamide + H2O = propanoate + NH4(+)"],["RHEA%3A85607","propanamide = propanonitrile + H2O"],["TCDB%3A1.B.94","The Pro-Pro-Glu Outer Membrane Porin (PPE) Family"],["proteintraitsmech%3ABIOLIP_ROP","ROP-binding site"]],"b":[["mapped/Propionamide.yaml","Propionamide"]]},{"id":"CHEBI:48942","l":"","na":4,"nb":1,"a":[["RHEA%3A76655","3-methylbutanal + NAD(+) + H2O = 3-methylbutanoate + NADH + 2 H(+)"],["RHEA%3A76651","3-methylbutanal + NADP(+) + H2O = 3-methylbutanoate + NADPH + 2 H(+)"],["RHEA%3A46184","3-methylbutanoate + ATP + CoA = 3-methylbutanoyl-CoA + AMP + diphosphate"],["RHEA%3A66984","3-methylbutanoyl-CoA + H2O = 3-methylbutanoate + CoA + H(+)"]],"b":[["mapped/Isovalerate.yaml","Isovalerate"]]},{"id":"CHEBI:48945","l":"","na":4,"nb":1,"a":[["RHEA%3A65456","2-methylbutan-1-ol + acetyl-CoA = 2-methylbutyl acetate + CoA"],["RHEA%3A65464","2-methylbutan-1-ol + butanoyl-CoA = 2-methylbutyl butanoate + CoA"],["RHEA%3A65532","2-methylbutan-1-ol + hexanoyl-CoA = 2-methylbutyl hexanoate + CoA"],["RHEA%3A84375","2-methylbutan-1-ol + NADP(+) = 2-methylbutanal + NADPH + H(+)"]],"b":[["mapped/2-methyl-1-butanol.yaml","2-methyl-1-butanol"]]},{"id":"CHEBI:5169","l":"fraxetin","na":4,"nb":1,"a":[["EC%3A1.14.11.60","scopoletin 8-hydroxylase"],["EC%3A1.14.14.164","fraxetin 5-hydroxylase"],["RHEA%3A57844","fraxetin + reduced [NADPH--hemoprotein reductase] + O2 = sideretin (reduced form) + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A57848","scopoletin + 2-oxoglutarate + O2 = fraxetin + succinate + CO2"]],"b":[["mapped/Fraxetin.yaml","Fraxetin"]]},{"id":"CHEBI:59899","l":"3-nitropropanoate","na":4,"nb":1,"a":[["EC%3A1.3.1.16","beta-nitroacrylate reductase"],["RHEA%3A81391","2-nitrobutanedioate + H(+) = 3-nitropropanoate + CO2"],["RHEA%3A81399","3-nitropropanoate + A + H2O = 3-oxopropanoate + nitrite + AH2 + H(+)"],["RHEA%3A23892","3-nitropropanoate + NADP(+) = 3-nitroacrylate + NADPH + H(+)"]],"b":[["mapped/3-nitropropanoate.yaml","3-nitropropanoate"]]},{"id":"CHEBI:6104","l":"","na":4,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["mapped/Kanamycin.yaml","Kanamycin"]]},{"id":"CHEBI:74904","l":"","na":4,"nb":1,"a":[["EC%3A2.8.3.24","(R)-2-hydroxy-4-methylpentanoate CoA-transferase"],["RHEA%3A66988","4-methylpentanoate + ATP + CoA = 4-methylpentanoyl-CoA + AMP + diphosphate"],["RHEA%3A49440","4-methylpentanoyl-CoA + (2R)-hydroxy-4-methylpentanoate = (R)-2-hydroxy-4-methylpentanoyl-CoA + 4-methylpentanoate"],["RHEA%3A55064","4-methylpentanoyl-CoA + H2O = 4-methylpentanoate + CoA + H(+)"]],"b":[["mapped/Isocaproate.yaml","Isocaproate"]]},{"id":"CHEBI:8984","l":"","na":4,"nb":1,"a":[["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["mapped/Sodium_Dodecyl_Sulfate.yaml","Sodium Dodecyl Sulfate"]]},{"id":"CHEBI:9533","l":"","na":4,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["TCDB%3A2.A.88","The Vitamin Uptake Transporter (VUT) Family"],["proteintraitsmech%3ABIOLIP_TPS","TPS-binding site"]],"b":[["mapped/Thiamine_monophosphate.yaml","thiamine monophosphate"]]},{"id":"CHEBI:125610","l":"N-acetyltyramine","na":3,"nb":1,"a":[["RHEA%3A67200","N-acetyltyramine + H2O = tyramine + acetate"],["RHEA%3A80971","N-acetyltyramine + reduced [NADPH--hemoprotein reductase] + O2 = N-acetyldopamine + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A66136","tyramine + acetyl-CoA = N-acetyltyramine + CoA + H(+)"]],"b":[["mapped/N-acetyltyramine.yaml","N-acetyltyramine"]]},{"id":"CHEBI:136511","l":"manganese dioxide","na":3,"nb":1,"a":[["EC%3A1.16.3.3","manganese oxidase"],["RHEA%3A52240","2 Mn(2+) + O2 + 2 H2O = 2 MnO2 + 4 H(+)"],["RHEA%3A52248","4 Mn(3+) + O2 + 6 H2O = 4 MnO2 + 12 H(+)"]],"b":[["mapped/Mno2.yaml","MnO2"]]},{"id":"CHEBI:145933","l":"","na":3,"nb":1,"a":[["RHEA%3A51668","mevastatin + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = pravastatin lactone + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"],["RHEA%3A62752","pravastatin lactone + H2O = pravastatin diol lactone + (S)-2-methylbutanoate + H(+)"],["RHEA%3A63048","pravastatin lactone + H2O = pravastatin + H(+)"]],"b":[["mapped/Pravastatin_Lactone.yaml","Pravastatin lactone"]]},{"id":"CHEBI:149531","l":"","na":3,"nb":1,"a":[["EC%3A1.1.3.50","C-glycoside oxidase"],["RHEA%3A75251","carminate + O2 = 3'-dehydrocarminate + H2O2"],["RHEA%3A63752","kermesate + UDP-alpha-D-glucose = carminate + UDP + 2 H(+)"]],"b":[["mapped/Carminate.yaml","Carminate"]]},{"id":"CHEBI:15603","l":"L-leucine","na":1,"nb":3,"a":[["proteintraitsmech%3ABIOLIP_LEU","LEU-binding site"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-leucine.yaml","L-Leucine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:15929","l":"","na":3,"nb":1,"a":[["EC%3A2.1.1.141","jasmonate O-methyltransferase"],["RHEA%3A13349","jasmonate + S-adenosyl-L-methionine = methyl (-)-jasmonate + S-adenosyl-L-homocysteine"],["RHEA%3A55372","methyl (-)-jasmonate + H2O = jasmonate + methanol + H(+)"]],"b":[["mapped/Methyl_Jasmonate.yaml","methyl jasmonate"]]},{"id":"CHEBI:16019","l":"","na":3,"nb":1,"a":[["EC%3A3.1.7.1","prenyl-diphosphatase"],["RHEA%3A21496","dimethylallyl diphosphate + H2O = prenol + diphosphate"],["RHEA%3A58420","prenol + NADP(+) = 3-methyl-2-butenal + NADPH + H(+)"]],"b":[["mapped/3-methyl-2-butenol.yaml","3-methyl-2-butenol"]]},{"id":"CHEBI:16027","l":"","na":3,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16027","requires adenosine 5'-monophosphate"],["MCSA%3A632","DNA nucleotidylexotransferase"],["proteintraitsmech%3ABIOLIP_AMP","AMP-binding site"]],"b":[["mapped/Adenosine_5-monophosphate.yaml","Adenosine 5'-monophosphate"]]},{"id":"CHEBI:16482","l":"naphthalene","na":3,"nb":1,"a":[["EC%3A1.14.12.12","naphthalene 1,2-dioxygenase"],["RHEA%3A19173","naphthalene + NADH + O2 + H(+) = (1R,2S)-1,2-dihydronaphthalene-1,2-diol + NAD(+)"],["MCSA%3A130","naphthalene 1,2-dioxygenase"]],"b":[["mapped/Naphthalene.yaml","Naphthalene"]]},{"id":"CHEBI:16602","l":"trichloroethene","na":3,"nb":1,"a":[["EC%3A1.21.99.5","tetrachloroethene reductive dehalogenase"],["RHEA%3A67992","trichloroethene + AH2 = (Z)-1,2-dichloroethene + chloride + A + H(+)"],["RHEA%3A20353","trichloroethene + chloride + A + H(+) = tetrachloroethene + AH2"]],"b":[["mapped/Trichloroethylene.yaml","Trichloroethylene"]]},{"id":"CHEBI:16828","l":"L-tryptophan","na":1,"nb":3,"a":[["proteintraitsmech%3ABIOLIP_TRP","TRP-binding site"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-tryptophan.yaml","L-Tryptophan"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:16885","l":"","na":3,"nb":1,"a":[["EC%3A2.4.1.99","sucrose:sucrose fructosyltransferase"],["RHEA%3A33783","1(F)-beta-D-fructosylsucrose + sucrose = 1,6-kestotetraose + beta-D-glucose"],["RHEA%3A23312","2 sucrose = 1(F)-beta-D-fructosylsucrose + D-glucose"]],"b":[["mapped/1-Kestose.yaml","1-Kestose"]]},{"id":"CHEBI:17097","l":"biphenyl","na":3,"nb":1,"a":[["EC%3A1.14.12.18","biphenyl 2,3-dioxygenase"],["RHEA%3A18165","biphenyl + NADH + O2 + H(+) = (2R,3S)-3-phenylcyclohexa-3,5-diene-1,2-diol + NAD(+)"],["proteintraitsmech%3ABIOLIP_BNL","BNL-binding site"]],"b":[["mapped/Biphenyl.yaml","Biphenyl"]]},{"id":"CHEBI:17484","l":"benzyl isothiocyanate","na":3,"nb":1,"a":[["EC%3A5.99.1.1","thiocyanate isomerase"],["RHEA%3A10004","benzyl isothiocyanate = benzyl thiocyanate"],["RHEA%3A69300","(Z)-phenyl-N-(sulfonatooxy)methanimidothioate = benzyl isothiocyanate + sulfate"]],"b":[["mapped/Benzyl_Isothiocyanate.yaml","Benzyl isothiocyanate"]]},{"id":"CHEBI:18367","l":"phosphate(3-)","na":3,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["proteintraitsmech%3ABIOLIP_PO4","PO4-binding site"]],"b":[["mapped/Orthophosphate.yaml","Orthophosphate"]]},{"id":"CHEBI:2179","l":"","na":3,"nb":1,"a":[["RHEA%3A35007","D-fucose(in) = D-fucose(out)"],["RHEA%3A35011","D-fucose(in) + H(+)(in) = D-fucose(out) + H(+)(out)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/6-deoxy-d-galactose.yaml","6-deoxy-D-galactose"]]},{"id":"CHEBI:22908","l":"","na":3,"nb":1,"a":[["TCDB%3A2.A.31","The Anion Exchanger (AE) Family"],["TCDB%3A3.A.31","The Endosomal Sorting Complexes Required for Transport III (ESCRT-III) Family"],["TCDB%3A1.A.8","The Major Intrinsic Protein (MIP) Family"]],"b":[["mapped/Borate.yaml","Borate"]]},{"id":"CHEBI:2365","l":"(+)-abscisic acid","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.17","The Proton-dependent Oligopeptide Transporter (POT/PTR) Family"],["proteintraitsmech%3ABIOLIP_A8S","A8S-binding site"]],"b":[["mapped/Abscisic_Acid.yaml","Abscisic acid"]]},{"id":"CHEBI:2769","l":"","na":3,"nb":1,"a":[["RHEA%3A73107","acacetin + S-adenosyl-L-methionine = apigenin 4',7-dimethyl ether + S-adenosyl-L-homocysteine"],["RHEA%3A73435","apigenin 4',7-dimethyl ether + reduced [NADPH--hemoprotein reductase] + O2 = ladanein + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A73263","genkwanin + S-adenosyl-L-methionine = apigenin 4',7-dimethyl ether + S-adenosyl-L-homocysteine"]],"b":[["mapped/Apigenin_Dimethyl_Ether.yaml","Apigenin Dimethyl Ether"]]},{"id":"CHEBI:27789","l":"1,2-dichloroethane","na":3,"nb":1,"a":[["EC%3A3.8.1.5","haloalkane dehalogenase"],["RHEA%3A25185","1,2-dichloroethane + H2O = 2-chloroethanol + chloride + H(+)"],["proteintraitsmech%3ABIOLIP_DCE","DCE-binding site"]],"b":[["mapped/2-dichloroethane.yaml","1,2-dichloroethane"]]},{"id":"CHEBI:27907","l":"","na":3,"nb":1,"a":[["EC%3A5.1.3.32","L-rhamnose mutarotase"],["RHEA%3A25584","alpha-L-rhamnose = beta-L-rhamnose"],["proteintraitsmech%3ABIOLIP_RAM","RAM-binding site"]],"b":[["mapped/Alpha-L-rhamnose.yaml","Alpha-L-rhamnose"]]},{"id":"CHEBI:28309","l":"","na":3,"nb":1,"a":[["RHEA%3A59632","D-xylobiose + O2 = D-xylobiono-1,5-lactone + H2O2"],["MCSA%3A548","endo-1,4-beta-xylanase (glycosyl hydrolase 10)"],["MCSA%3A432","endo-1,4-beta-xylanase (glycosyl hydrolase 11 family)"]],"b":[["mapped/Xylobiose.yaml","Xylobiose"]]},{"id":"CHEBI:28915","l":"fosfomycin","na":3,"nb":1,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.5","The Pseudomonas OprP Porin (POP) Family"],["proteintraitsmech%3ABIOLIP_FCN","FCN-binding site"]],"b":[["mapped/Fosfomycin.yaml","Fosfomycin"]]},{"id":"CHEBI:29452","l":"","na":3,"nb":1,"a":[["EC%3A3.1.7.13","neryl diphosphate diphosphatase"],["RHEA%3A60672","nerol + NAD(+) = neral + NADH + H(+)"],["RHEA%3A65828","neryl diphosphate + H2O = nerol + diphosphate"]],"b":[["mapped/Nerol.yaml","Nerol"]]},{"id":"CHEBI:30719","l":"","na":3,"nb":1,"a":[["EC%3A4.2.1.35","(R)-2-methylmalate dehydratase"],["RHEA%3A42424","2-methylmaleate + H2O = (2R,3S)-3-methylmalate"],["RHEA%3A22332","(3R)-citramalate = 2-methylmaleate + H2O"]],"b":[["mapped/Citraconate.yaml","Citraconate"]]},{"id":"CHEBI:30803","l":"isophthalate(2-)","na":3,"nb":1,"a":[["EC%3A6.2.1.58","isophthalate--CoA ligase"],["RHEA%3A61636","isophthalate + ATP + CoA = isophthalyl-CoA + AMP + diphosphate"],["TCDB%3A2.A.80","The Tricarboxylate Transporter (TTT) Family"]],"b":[["mapped/Isophthalate.yaml","Isophthalate"]]},{"id":"CHEBI:30911","l":"glucitol","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A4.A.4","The PTS Glucitol (Gut) Family"]],"b":[["mapped/Sorbitol.yaml","Sorbitol"]]},{"id":"CHEBI:31128","l":"","na":3,"nb":1,"a":[["EC%3A1.14.13.84","4-hydroxyacetophenone monooxygenase"],["RHEA%3A47384","4-acetoxyphenol + H2O = hydroquinone + acetate + H(+)"],["RHEA%3A22916","4'-hydroxyacetophenone + NADPH + O2 + H(+) = 4-acetoxyphenol + NADP(+) + H2O"]],"b":[["mapped/4-acetoxyphenol.yaml","4-acetoxyphenol"]]},{"id":"CHEBI:32816","l":"pyruvic acid","na":3,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_32816","requires pyruvic acid"],["MCSA%3A449","cystathionine beta-lyase"],["proteintraitsmech%3ABIOLIP_PYR","PYR-binding site"]],"b":[["mapped/Pyruvic_Acid.yaml","Pyruvic acid"]]},{"id":"CHEBI:37054","l":"3-hydroxybutyrate","na":1,"nb":3,"a":[["RHEA%3A81351","3-hydroxybutanoate(in) = 3-hydroxybutanoate(out)"]],"b":[["mapped/3-hydroxybutyrate.yaml","3-hydroxybutyrate"],["mapped/R-3-hydroxybutyrate.yaml","(R)-3-hydroxybutyrate"],["mapped/S-3-hydroxybutyrate.yaml","(S)-3-hydroxybutyrate"]]},{"id":"CHEBI:40968","l":"astaxanthin","na":3,"nb":1,"a":[["EC%3A1.14.99.64","zeaxanthin 4-ketolase"],["RHEA%3A56772","all-trans-adonixanthin + 2 AH2 + 2 O2 = all-trans-(3S,3'S)-astaxanthin + 2 A + 3 H2O"],["proteintraitsmech%3ABIOLIP_AXT","AXT-binding site"]],"b":[["mapped/Astaxanthin.yaml","Astaxanthin"]]},{"id":"CHEBI:41189","l":"","na":1,"nb":3,"a":[["proteintraitsmech%3ABIOLIP_BU1","BU1-binding site"]],"b":[["mapped/14-Butanediol.yaml","1,4-Butanediol"],["mapped/Butane-14-diol.yaml","Butane-1,4-diol"],["unmapped/4-diol.yaml","4-diol"]]},{"id":"CHEBI:412516","l":"5-hydroxymethylfurfural","na":3,"nb":1,"a":[["EC%3A1.1.3.47","5-(hydroxymethyl)furfural oxidase"],["RHEA%3A32683","5-hydroxymethylfurfural + 3 O2 + 2 H2O = 2,5-dicarboxyfuran + 3 H2O2 + 2 H(+)"],["RHEA%3A43504","5-hydroxymethylfurfural + O2 = 2,5-diformylfuran + H2O2"]],"b":[["mapped/5-Hydroxymethylfurfural.yaml","5-Hydroxymethylfurfural"]]},{"id":"CHEBI:43968","l":"meropenem","na":3,"nb":1,"a":[["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"],["TCDB%3A1.B.25","The Outer Membrane Porin (Opr) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["mapped/Meropenem.yaml","Meropenem"]]},{"id":"CHEBI:45863","l":"","na":3,"nb":1,"a":[["EC%3A2.3.1.321","3'-N-debenzoyltaxol N-benzoyltransferase"],["RHEA%3A33687","3'-N-debenzoyltaxol + benzoyl-CoA = paclitaxel + CoA + H(+)"],["proteintraitsmech%3ABIOLIP_TA1","TA1-binding site"]],"b":[["mapped/Paclitaxel.yaml","Paclitaxel"]]},{"id":"CHEBI:4629","l":"diosgenin","na":3,"nb":1,"a":[["EC%3A3.2.1.189","dioscin glycosidase (diosgenin-forming)"],["RHEA%3A36827","dioscin + 3 H2O = diosgenin + 2 L-rhamnopyranose + D-glucose"],["RHEA%3A61888","diosgenin + UDP-alpha-D-glucose = diosgenin 3-O-beta-D-glucoside + UDP + H(+)"]],"b":[["mapped/Diosgenin.yaml","Diosgenin"]]},{"id":"CHEBI:5199","l":"Fusaric acid","na":3,"nb":1,"a":[["TCDB%3A2.A.85","The Aromatic Acid Exporter (ArAE) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.17","The Outer Membrane Factor (OMF) Family"]],"b":[["mapped/Fusaric_Acid.yaml","Fusaric acid"]]},{"id":"CHEBI:5417","l":"","na":3,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"],["TCDB%3A4.A.6","The PTS Mannose-Fructose-Sorbose (Man) Family"]],"b":[["mapped/Glucosamine.yaml","Glucosamine"]]},{"id":"CHEBI:58187","l":"alginate","na":3,"nb":1,"a":[["EC%3A5.1.3.37","mannuronan 5-epimerase"],["RHEA%3A45572","[(1->4)-beta-D-mannuronosyl](n) = [alginate](n)"],["RHEA%3A15637","[alginate](n) + GDP-alpha-D-mannuronate = [alginate](n+1) + GDP + H(+)"]],"b":[["mapped/Alginate.yaml","Alginate"]]},{"id":"CHEBI:60239","l":"","na":3,"nb":1,"a":[["EC%3A3.2.1.227","N-acetyllactosaminidase"],["RHEA%3A77187","beta-D-Gal-(1->4)-beta-D-GlcNAc-(1->3)-beta-D-Gal-(1->4)-D-Glc + GDP-beta-L-fucose = beta-D-Gal-(1->4)-[alpha-L-Fuc-(1->3)]-beta-D-GlcNAc-(1->3)-beta-D-Gal-(1->4)-D-Glc + GDP + H(+)"],["RHEA%3A83143","beta-D-Gal-(1->4)-beta-D-GlcNAc-(1->3)-beta-D-Gal-(1->4)-D-Glc + H2O = N-acetyllactosamine + lactose"]],"b":[["mapped/Lacto-N-neotetraose.yaml","Lacto-N-neotetraose"]]},{"id":"CHEBI:64243","l":"","na":1,"nb":3,"a":[["TCDB%3A9.A.14","The G-protein-coupled receptor (GPCR) Family"]],"b":[["mapped/Na-glutamate.yaml","Na-glutamate"],["mapped/Sodium_Glutamate_Monohydrate.yaml","Sodium glutamate monohydrate"],["mapped/Sodium_L-glutamate.yaml","Sodium L-glutamate"]]},{"id":"CHEBI:6472","l":"lincomycin","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_3QB","3QB-binding site"]],"b":[["mapped/Lincomycin.yaml","Lincomycin"]]},{"id":"CHEBI:64755","l":"''EDTA(2-","na":3,"nb":1,"a":[["EC%3A1.14.14.33","ethylenediaminetetraacetate monooxygenase"],["RHEA%3A40987","EDTA + 2 FMNH2 + 2 O2 = ethylenediaminediacetate + 2 FMN + 2 glyoxylate + 2 H2O + 3 H(+)"],["RHEA%3A49760","EDTA + FMNH2 + O2 = ethylenediaminetriacetate + FMN + glyoxylate + H2O + 2 H(+)"]],"b":[["mapped/Edta.yaml","EDTA"]]},{"id":"CHEBI:67135","l":"2-nitroimidazole","na":3,"nb":1,"a":[["EC%3A3.5.99.9","2-nitroimidazole nitrohydrolase"],["RHEA%3A34271","2-nitroimidazole + H2O = 1,3-dihydro-2H-imidazol-2-one + nitrite + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Azomycin.yaml","Azomycin"]]},{"id":"CHEBI:67410","l":"","na":3,"nb":1,"a":[["RHEA%3A62588","2-hydroxy-2-(4-hydroxyphenyl)acetate + H(+) = 4-hydroxybenzyl alcohol + CO2"],["RHEA%3A56980","4-hydroxybenzyl alcohol + 2 oxidized [azurin] = 2 reduced [azurin] + 4-hydroxybenzaldehyde + 2 H(+)"],["RHEA%3A56976","4-methylphenol + 2 oxidized [azurin] + H2O = 4-hydroxybenzyl alcohol + 2 reduced [azurin] + 2 H(+)"]],"b":[["mapped/P-Hydroxybenzyl_alcohol.yaml","p-Hydroxybenzyl alcohol"]]},{"id":"CHEBI:72813","l":"exopolysaccharide","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.18","The Outer Membrane Auxiliary (OMA) Protein Family"]],"b":[["mapped/Exopolysaccharide.yaml","Exopolysaccharide"]]},{"id":"CHEBI:8113","l":"","na":3,"nb":1,"a":[["EC%3A2.4.1.357","phlorizin synthase"],["RHEA%3A51576","phloretin + UDP-alpha-D-glucose = phlorizin + UDP + H(+)"],["RHEA%3A69639","phlorizin + H2O = phloretin + beta-D-glucose"]],"b":[["mapped/Phloridzin.yaml","Phloridzin"]]},{"id":"CHEBI:8337","l":"","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.126","The Fatty Acid Exporter (FAX) Family"],["TCDB%3A9.A.24","The Mitochondrial Cholesterol/Porphyrin/5-aminolevulinic acid Uptake Translocator Protein (TSPO) Family"]],"b":[["mapped/Porphyrin.yaml","Porphyrin"]]},{"id":"CHEBI:8630","l":"","na":3,"nb":1,"a":[["EC%3A2.1.1.240","trans-resveratrol di-O-methyltransferase"],["RHEA%3A32107","3-methoxy-4',5-dihydroxy-trans-stilbene + S-adenosyl-L-methionine = pterostilbene + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A32103","trans-resveratrol + 2 S-adenosyl-L-methionine = pterostilbene + 2 S-adenosyl-L-homocysteine + 2 H(+)"]],"b":[["mapped/Pterostilbene.yaml","Pterostilbene"]]},{"id":"CHEBI:9215","l":"spectinomycin","na":3,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["proteintraitsmech%3ABIOLIP_SCM","SCM-binding site"]],"b":[["mapped/Spectinomycin.yaml","Spectinomycin"]]},{"id":"CHEBI:100246","l":"norfloxacin","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["mapped/Norfloxacin.yaml","Norfloxacin"]]},{"id":"CHEBI:10357","l":"","na":2,"nb":1,"a":[["EC%3A4.2.3.57","(-)-beta-caryophyllene synthase"],["RHEA%3A28294","(2E,6E)-farnesyl diphosphate = (-)-(E)-beta-caryophyllene + diphosphate"]],"b":[["mapped/Caryophyllene_T.yaml","Caryophyllene [T(-)]"]]},{"id":"CHEBI:14336","l":"glycerol 1-phosphate","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/DL-Glycerol_1-phosphate_Sodium_Salt_Hydrate.yaml","DL-Glycerol 1-phosphate sodium salt hydrate"]]},{"id":"CHEBI:15346","l":"coenzyme A","na":2,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15346","requires coenzyme A"],["proteintraitsmech%3ABIOLIP_COA","COA-binding site"]],"b":[["mapped/Coenzyme_A.yaml","Coenzyme A"]]},{"id":"CHEBI:15366","l":"acetic acid","na":2,"nb":1,"a":[["MCSA%3A431","acetylxylan esterase"],["MCSA%3A996","Peptidoglycan-N-acetylglucosamine deacetylase Bc1960"]],"b":[["mapped/Acetic_Acid.yaml","Acetic acid"]]},{"id":"CHEBI:15377)","l":"","na":2,"nb":1,"a":[["RHEA%3A17561","acetylcholine + H2O = choline + acetate + H(+)"],["RHEA%3A50240","[hyaluronan](n) = n 3-(4-deoxy-beta-D-gluc-4-enuronosyl)-N-acetyl-D-glucosamine + H2O"]],"b":[["mapped/Distilled_Water.yaml","Distilled water"]]},{"id":"CHEBI:15420","l":"","na":2,"nb":1,"a":[["EC%3A1.1.1.144","perillyl-alcohol dehydrogenase"],["RHEA%3A10664","perillyl alcohol + NAD(+) = perillyl aldehyde + NADH + H(+)"]],"b":[["mapped/Perillyl_Alcohol.yaml","Perillyl Alcohol"]]},{"id":"CHEBI:15748","l":"D-glucuronate","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.25","The Outer Membrane Porin (Opr) Family"]],"b":[["mapped/D-glucuronate.yaml","D-glucuronate"]]},{"id":"CHEBI:15767","l":"","na":2,"nb":1,"a":[["EC%3A4.5.1.3","dichloromethane dehalogenase"],["RHEA%3A15397","dichloromethane + H2O = formaldehyde + 2 chloride + 2 H(+)"]],"b":[["mapped/Methylene_Chloride.yaml","methylene chloride"]]},{"id":"CHEBI:15824","l":"D-fructose","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"]],"b":[["mapped/D-fructose.yaml","D-Fructose"]]},{"id":"CHEBI:15866","l":"","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A4.A.6","The PTS Mannose-Fructose-Sorbose (Man) Family"]],"b":[["mapped/2-Deoxy-D-glucose.yaml","2-Deoxy-D-glucose"]]},{"id":"CHEBI:15946","l":"","na":2,"nb":1,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["proteintraitsmech%3ABIOLIP_F6R","F6R-binding site"]],"b":[["mapped/Fructose-6-phosphate.yaml","Fructose-6-phosphate"]]},{"id":"CHEBI:15987","l":"","na":2,"nb":1,"a":[["EC%3A3.12.1.1","trithionate hydrolase"],["RHEA%3A21884","trithionate + H2O = thiosulfate + sulfate + H(+)"]],"b":[["mapped/Trithionate.yaml","Trithionate"]]},{"id":"CHEBI:16011","l":"","na":2,"nb":1,"a":[["EC%3A3.1.1.60","bis(2-ethylhexyl)phthalate esterase"],["RHEA%3A15529","bis(2-ethylhexyl)phthalate + H2O = 2-ethylhexan-1-ol + 2-ethylhexyl phthalate + H(+)"]],"b":[["mapped/2-Ethylhexanol.yaml","2-Ethylhexanol"]]},{"id":"CHEBI:16077","l":"","na":2,"nb":1,"a":[["TCDB%3A1.B.96","The Chloroplast Outer Envelope Porin 40 (OEP40) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["mapped/Glucose_1-phosphate.yaml","Glucose 1-phosphate"]]},{"id":"CHEBI:16119","l":"shikimic acid","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_SKM","SKM-binding site"]],"b":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Shikimic_Acid.yaml","Shikimic Acid"]]},{"id":"CHEBI:16133","l":"not class CHEBI:23495","na":2,"nb":1,"a":[["EC%3A1.1.1.163","cyclopentanol dehydrogenase"],["RHEA%3A11728","cyclopentanol + NAD(+) = cyclopentanone + NADH + H(+)"]],"b":[["mapped/CyclopentanolCO2.yaml","Cyclopentanol+CO2"]]},{"id":"CHEBI:16136","l":"hydrogen sulfide","na":1,"nb":2,"a":[["MCSA%3A398","sulfite reductase (NADPH)"]],"b":[["mapped/Hydrogen_Sulfide.yaml","Hydrogen sulfide"],["mapped/Sulfur.yaml","Sulfur"]]},{"id":"CHEBI:16196","l":"oleic acid","na":2,"nb":1,"a":[["TCDB%3A9.A.76","The Omega3 Fatty Acid Desaturase 3/Putative Transporter (FAD3) Family"],["proteintraitsmech%3ABIOLIP_OLA","OLA-binding site"]],"b":[["mapped/Oleic_Acid.yaml","Oleic acid"]]},{"id":"CHEBI:16324","l":"","na":2,"nb":1,"a":[["EC%3A1.10.3.6","rifamycin-B oxidase"],["RHEA%3A11292","rifamycin B + O2 + 2 H(+) = rifamycin O + H2O2"]],"b":[["mapped/Rifamycin_O.yaml","Rifamycin O"]]},{"id":"CHEBI:16349","l":"L-citrulline","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_CIR","CIR-binding site"]],"b":[["mapped/L-citrulline.yaml","L-Citrulline"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:16410","l":"pyridoxamine","na":2,"nb":1,"a":[["GO%3A0070281","pyridoxamine binding"],["proteintraitsmech%3ABIOLIP_PXM","PXM-binding site"]],"b":[["mapped/Pyridoxamine.yaml","Pyridoxamine"]]},{"id":"CHEBI:16489","l":"","na":2,"nb":1,"a":[["EC%3A3.5.4.11","pterin deaminase"],["RHEA%3A11904","2-amino-4-hydroxypteridine + H2O + H(+) = 2,4-dihydroxypteridine + NH4(+)"]],"b":[["mapped/Lumazine.yaml","Lumazine"]]},{"id":"CHEBI:16540","l":"","na":2,"nb":1,"a":[["EC%3A1.14.99.26","2-hydroxypyridine 5-monooxygenase"],["RHEA%3A16973","2-hydroxypyridine + AH2 + O2 = 2,5-dihydroxypyridine + A + H2O"]],"b":[["mapped/2-Hydroxypyridine.yaml","2-Hydroxypyridine"]]},{"id":"CHEBI:16545","l":"","na":2,"nb":1,"a":[["EC%3A1.14.13.16","cyclopentanone monooxygenase"],["RHEA%3A15737","cyclopentanone + NADPH + O2 + H(+) = 5-valerolactone + NADP(+) + H2O"]],"b":[["mapped/Valerolactone.yaml","Valerolactone"]]},{"id":"CHEBI:16610","l":"spermidine","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_SPD","SPD-binding site"]],"b":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/spermidine.yaml","spermidine"]]},{"id":"CHEBI:16716","l":"","na":2,"nb":1,"a":[["EC%3A1.14.12.3","benzene 1,2-dioxygenase"],["RHEA%3A13813","benzene + NADH + O2 + H(+) = cis-1,2-dihydrobenzene-1,2-diol + NAD(+)"]],"b":[["mapped/Benzene.yaml","Benzene"]]},{"id":"CHEBI:16991","l":"deoxyribonucleic acid","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_DNA","DNA-binding site"]],"b":[["mapped/Deoxyribonucleic_Acid_From_Herring_Sperm.yaml","Deoxyribonucleic acid from herring sperm"],["mapped/Fish-sperm_Dna.yaml","Fish-Sperm DNA"]]},{"id":"CHEBI:16995","l":"oxalic acid","na":2,"nb":1,"a":[["TCDB%3A2.A.53","The Sulfate Permease (SulP) Family"],["proteintraitsmech%3ABIOLIP_OXD","OXD-binding site"]],"b":[["mapped/Oxalic_Acid.yaml","Oxalic Acid"]]},{"id":"CHEBI:17012","l":"N-acetylneuraminic acid","na":2,"nb":1,"a":[["MCSA%3A835","exo-alpha-sialidase (GH33 Family)"],["MCSA%3A828","exo-alpha-sialidase (GH34 Family)"]],"b":[["mapped/N-acetylneuraminic_Acid.yaml","N-acetylneuraminic acid"]]},{"id":"CHEBI:17019","l":"(R)-amygdalin","na":2,"nb":1,"a":[["EC%3A3.2.1.117","amygdalin beta-glucosidase"],["RHEA%3A14177","(R)-amygdalin + H2O = (R)-prunasin + D-glucose"]],"b":[["mapped/%28R%29-amygdalin.yaml","(R)-amygdalin"]]},{"id":"CHEBI:17154)","l":"","na":2,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17154","requires nicotinamide"],["RHEA%3A14545","nicotinamide + H2O = nicotinate + NH4(+)"]],"b":[["mapped/Nicotinamide.yaml","Nicotinamide"]]},{"id":"CHEBI:17300","l":"tetrachloroethene","na":2,"nb":1,"a":[["EC%3A1.21.99.5","tetrachloroethene reductive dehalogenase"],["RHEA%3A20353","trichloroethene + chloride + A + H(+) = tetrachloroethene + AH2"]],"b":[["mapped/Tetrachloroethene.yaml","Tetrachloroethene"]]},{"id":"CHEBI:17309","l":"pectin","na":1,"nb":2,"a":[["MCSA%3A681","pectinesterase"]],"b":[["mapped/PY-pectin.yaml","PY-pectin"],["mapped/Pectin.yaml","Pectin"]]},{"id":"CHEBI:17315","l":"D-glucosamine","na":2,"nb":1,"a":[["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"],["TCDB%3A4.A.6","The PTS Mannose-Fructose-Sorbose (Man) Family"]],"b":[["mapped/D-glucosamine.yaml","D-glucosamine"]]},{"id":"CHEBI:17361","l":"","na":2,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_C","C-binding site"],["proteintraitsmech%3ABIOLIP_C5P","C5P-binding site"]],"b":[["mapped/Cytidine_5-Monophosphate.yaml","Cytidine 5'-Monophosphate"]]},{"id":"CHEBI:17362","l":"","na":2,"nb":1,"a":[["EC%3A1.3.99.17","quinoline 2-oxidoreductase"],["RHEA%3A17749","quinoline + A + H2O = quinolin-2(1H)-one + AH2"]],"b":[["mapped/Quinoline.yaml","Quinoline"]]},{"id":"CHEBI:17533","l":"N-acetyl-L-glutamic acid","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["proteintraitsmech%3ABIOLIP_NLG","NLG-binding site"]],"b":[["mapped/N-Acetyl-L-Glutamic_Acid.yaml","N-Acetyl-L-Glutamic Acid"]]},{"id":"CHEBI:17549","l":"","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.A.24","The Mitochondrial Cholesterol/Porphyrin/5-aminolevulinic acid Uptake Translocator Protein (TSPO) Family"]],"b":[["mapped/5-Aminolevulinic_Acid.yaml","5-Aminolevulinic acid"]]},{"id":"CHEBI:17590","l":"octane","na":2,"nb":1,"a":[["EC%3A1.14.15.3","alkane 1-monooxygenase"],["RHEA%3A19341","octane + 2 reduced [rubredoxin] + O2 + 2 H(+) = 2 oxidized [rubredoxin] + octan-1-ol + H2O"]],"b":[["mapped/Octane.yaml","octane"]]},{"id":"CHEBI:17747","l":"bis(2-ethylhexyl) phthalate","na":2,"nb":1,"a":[["EC%3A3.1.1.60","bis(2-ethylhexyl)phthalate esterase"],["RHEA%3A15529","bis(2-ethylhexyl)phthalate + H2O = 2-ethylhexan-1-ol + 2-ethylhexyl phthalate + H(+)"]],"b":[["mapped/Bis%282-ethylhexyl%29phthalate.yaml","Bis(2-ethylhexyl)phthalate"]]},{"id":"CHEBI:17814","l":"","na":2,"nb":1,"a":[["EC%3A2.4.1.172","salicyl-alcohol beta-D-glucosyltransferase"],["RHEA%3A11512","salicyl alcohol + UDP-alpha-D-glucose = salicin + UDP + H(+)"]],"b":[["mapped/Salicin.yaml","Salicin"]]},{"id":"CHEBI:17901","l":"","na":2,"nb":1,"a":[["EC%3A3.1.1.33","6-acetylglucose deacetylase"],["RHEA%3A18485","6-acetyl-D-glucose + H2O = D-glucose + acetate + H(+)"]],"b":[["mapped/6-O-Acetyl-D-glucose.yaml","6-O-Acetyl-D-glucose"]]},{"id":"CHEBI:17905","l":"coenzyme M","na":2,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17905","requires coenzyme M"],["proteintraitsmech%3ABIOLIP_COM","COM-binding site"]],"b":[["mapped/2-mercaptoethanesulfonate.yaml","2-Mercaptoethanesulfonate"]]},{"id":"CHEBI:17939","l":"puromycin","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_PUY","PUY-binding site"]],"b":[["mapped/Puromycin.yaml","Puromycin"]]},{"id":"CHEBI:18012","l":"fumaric acid","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_FUM","FUM-binding site"]],"b":[["mapped/Corn_Steep_Liquor_Glucose_Fumarate.yaml","Corn Steep Liquor + Glucose + Fumarate"],["mapped/Fumaric_Acid.yaml","Fumaric acid"]]},{"id":"CHEBI:18095","l":"trans-4-hydroxy-L-proline","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["proteintraitsmech%3ABIOLIP_HYP","HYP-binding site"]],"b":[["mapped/Hydroxy-l-proline.yaml","Hydroxy-L-Proline"]]},{"id":"CHEBI:18101","l":"4-hydroxyphenylacetic acid","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_4HP","4HP-binding site"]],"b":[["mapped/4-hydroxyphenyl_Acetic_Acid.yaml","4-Hydroxyphenyl acetic acid"]]},{"id":"CHEBI:18132","l":"","na":2,"nb":1,"a":[["MCSA%3A27","phospholipase C"],["proteintraitsmech%3ABIOLIP_PC","PC-binding site"]],"b":[["mapped/Phosphocholine.yaml","Phosphocholine"]]},{"id":"CHEBI:18293","l":"","na":2,"nb":1,"a":[["EC%3A2.1.1.69","5-hydroxyfuranocoumarin 5-O-methyltransferase"],["RHEA%3A11808","bergaptol + S-adenosyl-L-methionine = bergapten + S-adenosyl-L-homocysteine"]],"b":[["mapped/Bergapten.yaml","Bergapten"]]},{"id":"CHEBI:18320","l":"1,4-dithiothreitol","na":2,"nb":1,"a":[["EC%3A1.17.4.5","vitamin-K-epoxide reductase (warfarin-insensitive)"],["RHEA%3A21560","3-hydroxy-2-methyl-3-phytyl-2,3-dihydro-1,4-naphthoquinone + oxidized dithiothreitol = 1,4-dithiothreitol + 2,3-epoxyphylloquinone"]],"b":[["mapped/Dl-dithiothreitol.yaml","DL-Dithiothreitol"]]},{"id":"CHEBI:18405","l":"","na":2,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18405","requires pyridoxal 5'-phosphate"],["proteintraitsmech%3ABIOLIP_PLP","PLP-binding site"]],"b":[["mapped/Pyridoxal_Phosphate.yaml","Pyridoxal phosphate"]]},{"id":"CHEBI:18411","l":"","na":2,"nb":1,"a":[["EC%3A2.4.1.31","laminaribiose phosphorylase"],["RHEA%3A16617","beta-D-glucosyl-(1->3)-D-glucose + phosphate = alpha-D-glucose 1-phosphate + D-glucose"]],"b":[["mapped/Laminaribiose.yaml","Laminaribiose"]]},{"id":"CHEBI:194094","l":"(E)-4-coumaric acid methyl ester","na":2,"nb":1,"a":[["RHEA%3A74879","(E)-4-coumarate + S-adenosyl-L-methionine = (E)-4-coumaric acid methyl ester + S-adenosyl-L-homocysteine"],["RHEA%3A82267","(E)-4-coumaric acid methyl ester + reduced [NADPH--hemoprotein reductase] + O2 = methyl (E)-caffeate + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["mapped/Methyl-trans-p-coumarate.yaml","methyl-trans-p-coumarate"]]},{"id":"CHEBI:195418","l":"","na":2,"nb":1,"a":[["RHEA%3A76751","5-hydroxydodecanoate + H(+) = delta-dodecalactone + H2O"],["RHEA%3A76723","dodecanoate + reduced [NADPH--hemoprotein reductase] + O2 = 5-hydroxydodecanoate + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["mapped/5-Hydroxydodecanoate.yaml","5-Hydroxydodecanoate"]]},{"id":"CHEBI:20067","l":"3-hydroxybutyric acid","na":1,"nb":2,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/3-hydroxybutyric_Acid.yaml","3-hydroxybutyric acid"],["mapped/Poly_3-hydroxybutyric_Acid.yaml","Poly(3-hydroxybutyric acid)"]]},{"id":"CHEBI:22605","l":"","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A4.A.5","The PTS Galactitol (Gat) Family"]],"b":[["mapped/Arabinitol.yaml","Arabinitol"]]},{"id":"CHEBI:22660","l":"aspartic acid","na":1,"nb":2,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"]],"b":[["mapped/DL-Tyrosine.yaml","DL-Tyrosine"],["mapped/Dl-aspartic_Acid.yaml","DL-aspartic acid"]]},{"id":"CHEBI:22868","l":"bile salt","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["mapped/Bile_Salts.yaml","Bile salts"]]},{"id":"CHEBI:23066","l":"","na":2,"nb":1,"a":[["TCDB%3A8.A.212","The d-Amino Acid Peptidase (dAAP) Family"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]],"b":[["mapped/Cephalosporin.yaml","Cephalosporin"]]},{"id":"CHEBI:25548","l":"nitrilotriacetate(3-)","na":2,"nb":1,"a":[["EC%3A1.14.14.10","nitrilotriacetate monooxygenase"],["RHEA%3A31359","nitrilotriacetate + FMNH2 + O2 = aminodiacetate + FMN + glyoxylate + H2O"]],"b":[["mapped/Nitrilotriacetate.yaml","Nitrilotriacetate"]]},{"id":"CHEBI:25941","l":"peroxynitrite","na":2,"nb":1,"a":[["RHEA%3A63116","peroxynitrite = nitrate"],["RHEA%3A51188","superoxide + nitric oxide = peroxynitrite"]],"b":[["mapped/Peroxynitrite.yaml","peroxynitrite"]]},{"id":"CHEBI:2682","l":"amphotericin B","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_4UH","4UH-binding site"]],"b":[["mapped/Amphotericin_B.yaml","Amphotericin B"],["unmapped/Amphotericin.yaml","Amphotericin"]]},{"id":"CHEBI:27446","l":"phenoxymethylpenicillin","na":2,"nb":1,"a":[["MCSA%3A241","penicillin amidase (peptidase C59 family)"],["proteintraitsmech%3ABIOLIP_PNV","PNV-binding site"]],"b":[["mapped/Phenoxymethylpenicillin.yaml","Phenoxymethylpenicillin"]]},{"id":"CHEBI:27518","l":"acetylene","na":2,"nb":1,"a":[["EC%3A4.2.1.112","acetylene hydratase"],["RHEA%3A17885","acetaldehyde = acetylene + H2O"]],"b":[["mapped/Acetylene.yaml","Acetylene"]]},{"id":"CHEBI:27570","l":"histidine","na":1,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["mapped/Dl-histidine.yaml","DL-Histidine"],["mapped/L-histidine.yaml","L-Histidine"]]},{"id":"CHEBI:27592","l":"ectoine","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_4CS","4CS-binding site"]],"b":[["mapped/Ectoine.yaml","Ectoine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:27641","l":"cycloheximide","na":2,"nb":1,"a":[["RHEA%3A61936","cycloheximide(in) + ATP + H2O = cycloheximide(out) + ADP + phosphate + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Cycloheximid.yaml","Cycloheximid"]]},{"id":"CHEBI:27902","l":"tetracycline","na":2,"nb":1,"a":[["ARO%3A3000186","tet(M)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Tetracycline.yaml","Tetracycline"]]},{"id":"CHEBI:28032","l":"","na":2,"nb":1,"a":[["EC%3A1.14.13.84","4-hydroxyacetophenone monooxygenase"],["RHEA%3A22916","4'-hydroxyacetophenone + NADPH + O2 + H(+) = 4-acetoxyphenol + NADP(+) + H2O"]],"b":[["mapped/4-Hydroxyacetophenone.yaml","4-Hydroxyacetophenone"]]},{"id":"CHEBI:28177","l":"","na":2,"nb":1,"a":[["RHEA%3A36279","theophylline + NADH + O2 + H(+) = 3-methylxanthine + formaldehyde + NAD(+) + H2O"],["RHEA%3A36275","theophylline + NADPH + O2 + H(+) = 3-methylxanthine + formaldehyde + NADP(+) + H2O"]],"b":[["mapped/Theophylline.yaml","Theophylline"]]},{"id":"CHEBI:28235","l":"","na":2,"nb":1,"a":[["RHEA%3A77447","4-methoxybenzaldehyde + hydrogen cyanide = (2S)-2-hydroxy-2-(4-methoxyphenyl)acetonitrile"],["RHEA%3A68900","4-methoxybenzoate + ATP + NADPH + H(+) = 4-methoxybenzaldehyde + AMP + diphosphate + NADP(+)"]],"b":[["mapped/4-Anisaldehyde.yaml","4-Anisaldehyde"]]},{"id":"CHEBI:28488","l":"m-xylene","na":2,"nb":1,"a":[["EC%3A1.14.15.26","toluene methyl-monooxygenase"],["RHEA%3A51600","m-xylene + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = 3-methylbenzyl alcohol + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"]],"b":[["mapped/M-xylene.yaml","m-Xylene"]]},{"id":"CHEBI:28775","l":"","na":2,"nb":1,"a":[["EC%3A3.2.1.168","hesperidin 6-O-alpha-L-rhamnosyl-beta-D-glucosidase"],["RHEA%3A28134","(2S)-hesperidin + H2O = rutinose + (2S)-hesperetin"]],"b":[["mapped/Hesperidin.yaml","Hesperidin"]]},{"id":"CHEBI:28817","l":"dodecane","na":2,"nb":1,"a":[["RHEA%3A76739","dodecane + reduced [NADPH--hemoprotein reductase] + O2 = 5-dodecanol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["proteintraitsmech%3ABIOLIP_D12","D12-binding site"]],"b":[["mapped/Dodecane.yaml","dodecane"]]},{"id":"CHEBI:28821","l":"","na":2,"nb":1,"a":[["EC%3A2.3.1.145","piperidine N-piperoyltransferase"],["RHEA%3A14561","piperidine + (E,E)-piperoyl-CoA = piperine + CoA + H(+)"]],"b":[["mapped/Piperine.yaml","Piperine"]]},{"id":"CHEBI:28855","l":"","na":2,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_28855","requires enterobactin"],["proteintraitsmech%3ABIOLIP_EB4","EB4-binding site"]],"b":[["mapped/Enterobactin.yaml","Enterobactin"]]},{"id":"CHEBI:29007","l":"ceftriaxone","na":2,"nb":1,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"]],"b":[["mapped/Ceftriaxone.yaml","Ceftriaxone"]]},{"id":"CHEBI:29016","l":"arginine","na":2,"nb":1,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["mapped/Arginine.yaml","Arginine"]]},{"id":"CHEBI:29073","l":"L-ascorbic acid","na":2,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29073","requires L-ascorbic acid"],["proteintraitsmech%3ABIOLIP_ASC","ASC-binding site"]],"b":[["mapped/L-ascorbic_Acid.yaml","L-Ascorbic acid"]]},{"id":"CHEBI:2955","l":"azithromycin","na":2,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["proteintraitsmech%3ABIOLIP_ZIT","ZIT-binding site"]],"b":[["mapped/Azithromycin.yaml","Azithromycin"]]},{"id":"CHEBI:29673","l":"rifamycin SV","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]],"b":[["mapped/Rifamycin_Sv.yaml","Rifamycin Sv"]]},{"id":"CHEBI:29994","l":"","na":2,"nb":1,"a":[["TCDB%3A2.A.81","The Aspartate:Alanine Exchanger (AAEx) Family"],["TCDB%3A2.A.23","The Dicarboxylate/Amino Acid:Cation (Na+ or H+) Symporter (DAACS) Family"]],"b":[["mapped/D-aspartate.yaml","D-aspartate"]]},{"id":"CHEBI:30248","l":"beta-D-Gal-(1->3)-beta-D-GlcNAc-(1->3)-beta-D-Gal-(1->4)-D-Glc","na":2,"nb":1,"a":[["EC%3A3.2.1.140","lacto-N-biosidase"],["RHEA%3A21568","beta-D-Gal-(1->3)-beta-D-GlcNAc-(1->3)-beta-D-Gal-(1->4)-D-Glc + H2O = beta-D-galactosyl-(1->3)-N-acetyl-D-glucosamine + lactose"]],"b":[["mapped/Lacto-N-tetraose.yaml","Lacto-N-tetraose"]]},{"id":"CHEBI:30295","l":"","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.A.8","The Major Intrinsic Protein (MIP) Family"]],"b":[["mapped/Antimonate.yaml","Antimonate"]]},{"id":"CHEBI:30746","l":"benzoic acid","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_BEZ","BEZ-binding site"]],"b":[["mapped/4_Carbon_Mix.yaml","4 Carbon Mix"],["mapped/Benzoic_Acid.yaml","benzoic acid"]]},{"id":"CHEBI:30751","l":"formic acid","na":2,"nb":1,"a":[["MCSA%3A38","GTP cyclohydrolase I"],["proteintraitsmech%3ABIOLIP_FMT","FMT-binding site"]],"b":[["mapped/Formic_Acid.yaml","Formic acid"]]},{"id":"CHEBI:30772","l":"butyric acid","na":2,"nb":1,"a":[["MCSA%3A900","para-nitrobenzyl esterase"],["proteintraitsmech%3ABIOLIP_BUA","BUA-binding site"]],"b":[["mapped/Butyric_Acid.yaml","Butyric acid"]]},{"id":"CHEBI:30778","l":"gallic acid","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_GDE","GDE-binding site"]],"b":[["mapped/Gallate_Formate.yaml","Gallate + Formate"],["mapped/Gallic_Acid.yaml","Gallic Acid"]]},{"id":"CHEBI:30832","l":"adipic acid","na":2,"nb":1,"a":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["proteintraitsmech%3ABIOLIP_0L1","0L1-binding site"]],"b":[["mapped/Adipic_Acid.yaml","Adipic acid"]]},{"id":"CHEBI:320061","l":"","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_GYP","GYP-binding site"]],"b":[["mapped/Methyl_Alpha-D-glucopyranoside.yaml","Methyl alpha-D-glucopyranoside"]]},{"id":"CHEBI:32528","l":"","na":2,"nb":1,"a":[["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"],["proteintraitsmech%3ABIOLIP_OTU","OTU-binding site"]],"b":[["mapped/D-_-turanose.yaml","D-(+)-Turanose"]]},{"id":"CHEBI:3374","l":"capsaicin","na":2,"nb":1,"a":[["EC%3A2.3.2.35","capsaicin synthase"],["RHEA%3A63832","vanillylamine + (6E)-8-methylnon-6-enoyl-CoA = capsaicin + CoA + H(+)"]],"b":[["mapped/Capsaicin.yaml","capsaicin"]]},{"id":"CHEBI:3393","l":"carbenicillin","na":2,"nb":1,"a":[["TCDB%3A1.B.25","The Outer Membrane Porin (Opr) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["mapped/Carbenicillin.yaml","Carbenicillin"]]},{"id":"CHEBI:35687","l":"","na":2,"nb":1,"a":[["RHEA%3A79327","butan-2-ol + 2 Fe(III)-[cytochrome c] = butan-2-one + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A64560","butan-2-ol + NAD(+) = butan-2-one + NADH + H(+)"]],"b":[["mapped/2-butanolCO2.yaml","2-butanol+CO2"]]},{"id":"CHEBI:36218","l":"beta-lactose","na":2,"nb":1,"a":[["RHEA%3A28659","beta-lactose + H2O = beta-D-galactose + beta-D-glucose"],["RHEA%3A59352","beta-lactose + O2 = lactobiono-1,5-lactone + H2O2"]],"b":[["mapped/Beta-lactose.yaml","Beta-Lactose"]]},{"id":"CHEBI:36592","l":"","na":2,"nb":1,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["proteintraitsmech%3ABIOLIP_BAQ","BAQ-binding site"]],"b":[["mapped/Butyrolactam.yaml","Butyrolactam"]]},{"id":"CHEBI:37166","l":"xylan","na":1,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["mapped/Xylan.yaml","Xylan"],["unmapped/Larchwood_Xylan.yaml","Larchwood xylan"]]},{"id":"CHEBI:3732","l":"clarithromycin","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["mapped/Clarithromycin.yaml","Clarithromycin"]]},{"id":"CHEBI:3764","l":"clotrimazole","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["mapped/Clotrimazole.yaml","Clotrimazole"]]},{"id":"CHEBI:39150","l":"4-oxopentanoate","na":2,"nb":1,"a":[["RHEA%3A75923","(S)-4-aminopentanoate + NAD(+) + H2O = 4-oxopentanoate + NH4(+) + NADH + H(+)"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["mapped/4-oxopentanoate.yaml","4-oxopentanoate"]]},{"id":"CHEBI:40303","l":"","na":2,"nb":1,"a":[["RHEA%3A63040","lovastatin + H2O = lovastatin carboxylate + H(+)"],["RHEA%3A62748","lovastatin + H2O = monacolin J + (S)-2-methylbutanoate + H(+)"]],"b":[["mapped/Lovastatin.yaml","Lovastatin"]]},{"id":"CHEBI:41131","l":"crotonic acid","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_BEO","BEO-binding site"]],"b":[["mapped/Crotonic_Acid.yaml","Crotonic acid"],["mapped/Na-crotonate.yaml","Na-crotonate"]]},{"id":"CHEBI:44185","l":"","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["proteintraitsmech%3ABIOLIP_MTX","MTX-binding site"]],"b":[["mapped/Methotrexate.yaml","Methotrexate"]]},{"id":"CHEBI:45296","l":"hexadecane","na":2,"nb":1,"a":[["RHEA%3A77375","heptadecanoate + hnu + H(+) = hexadecane + CO2"],["RHEA%3A76747","hexadecane + reduced [NADPH--hemoprotein reductase] + O2 = 9-hexadecanol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["mapped/Hexadecane.yaml","Hexadecane"]]},{"id":"CHEBI:45373","l":"sulfanilamide","na":2,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["proteintraitsmech%3ABIOLIP_SAN","SAN-binding site"]],"b":[["mapped/Sulfanilamide.yaml","Sulfanilamide"]]},{"id":"CHEBI:4608","l":"","na":2,"nb":1,"a":[["EC%3A1.8.1.21","dissimilatory dimethyldisulfide reductase"],["RHEA%3A59056","2 methanethiol + NAD(+) = dimethyl disulfide + NADH + H(+)"]],"b":[["mapped/Dimethyl_Disulfide.yaml","Dimethyl Disulfide"]]},{"id":"CHEBI:47966","l":"aldehydo-N-acetylmuramic acid","na":1,"nb":2,"a":[["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"]],"b":[["mapped/N-acetyl-muramic_Acid.yaml","n-Acetyl-muramic acid"],["mapped/N-acetylmuramic_Acid.yaml","N-acetylmuramic acid"]]},{"id":"CHEBI:4828","l":"","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/L-_-ergothioneine.yaml","L-(+)-Ergothioneine"]]},{"id":"CHEBI:48430","l":"4-methyl-2-oxopentanoic acid","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_COI","COI-binding site"]],"b":[["mapped/4-Methyl-2-oxopentanoic_Acid_Sodium_Salt.yaml","4-Methyl-2-oxopentanoic acid sodium salt"],["mapped/4-Methyl-2-oxovaleric_Acid.yaml","4-Methyl-2-oxovaleric acid"]]},{"id":"CHEBI:4867","l":"","na":2,"nb":1,"a":[["EC%3A2.1.1.146","(iso)eugenol O-methyltransferase"],["RHEA%3A80583","chavicol + S-adenosyl-L-methionine = O-methylchavicol + S-adenosyl-L-homocysteine + H(+)"]],"b":[["mapped/Estragole.yaml","Estragole"]]},{"id":"CHEBI:4877","l":"ethambutol","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_95E","95E-binding site"]],"b":[["mapped/Ethambutol.yaml","Ethambutol"]]},{"id":"CHEBI:53423","l":"polysorbate 40","na":2,"nb":1,"a":[["TCDB%3A1.A.46","The Anion Channel-forming Bestrophin (Bestrophin) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["mapped/Tween_40.yaml","Tween 40"]]},{"id":"CHEBI:546840","l":"","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_9PG","9PG-binding site"]],"b":[["mapped/4-nitrophenyl_Alpha-D-galactoside.yaml","4-nitrophenyl Alpha-D-galactoside"]]},{"id":"CHEBI:58242","l":"Renilla luciferyl sulfate(1-","na":2,"nb":1,"a":[["EC%3A2.8.2.10","Renilla-luciferin sulfotransferase"],["RHEA%3A20481","coelenterazine h + 3'-phosphoadenylyl sulfate = luciferyl sulfate + adenosine 3',5'-bisphosphate + H(+)"]],"b":[["mapped/Kno3.yaml","KNO3"]]},{"id":"CHEBI:59062","l":"","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["mapped/Polymyxin.yaml","Polymyxin"]]},{"id":"CHEBI:61448","l":"isopropyl beta-D-thiogalactopyranoside","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_IPT","IPT-binding site"]],"b":[["mapped/IPTG.yaml","IPTG"]]},{"id":"CHEBI:64552","l":"2-hydroxybutyrate","na":2,"nb":1,"a":[["RHEA%3A52608","2-hydroxybutanoate + NADP(+) = 2-oxobutanoate + NADPH + H(+)"],["TCDB%3A2.A.21","The Solute:Sodium Symporter (SSS) Family"]],"b":[["mapped/2-hydroxybutyrate.yaml","2-hydroxybutyrate"]]},{"id":"CHEBI:6570","l":"lupeol","na":2,"nb":1,"a":[["EC%3A5.4.99.41","lupeol synthase"],["RHEA%3A31383","(S)-2,3-epoxysqualene = lupeol"]],"b":[["mapped/Lupeol.yaml","Lupeol"]]},{"id":"CHEBI:71321","l":"","na":2,"nb":1,"a":[["RHEA%3A35103","fusidate(in) = fusidate(out)"],["RHEA%3A35099","fusidate(in) + H(+)(out) = fusidate(out) + H(+)(in)"]],"b":[["mapped/Fusidate.yaml","Fusidate"]]},{"id":"CHEBI:75456","l":"2-stearoylglycerol","na":2,"nb":1,"a":[["RHEA%3A38519","1-(9Z-octadecenoyl)-2-octadecanoyl-sn-glycerol + H2O = 2-octadecanoylglycerol + (9Z)-octadecenoate + H(+)"],["proteintraitsmech%3ABIOLIP_2JT","2JT-binding site"]],"b":[["mapped/Glycerol_Monostearate.yaml","Glycerol monostearate"]]},{"id":"CHEBI:7731","l":"","na":2,"nb":1,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["mapped/Ofloxacin.yaml","Ofloxacin"]]},{"id":"CHEBI:78018","l":"dodecylphosphocholine","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_DPV","DPV-binding site"]],"b":[["mapped/Bacto-tryptone.yaml","Bacto-tryptone"],["mapped/Trypticase.yaml","Trypticase"]]},{"id":"CHEBI:7809","l":"oxacillin","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Oxacillin.yaml","Oxacillin"]]},{"id":"CHEBI:78673","l":"","na":2,"nb":1,"a":[["RHEA%3A69651","cumene hydroperoxide + 2 glutathione = 2-phenylpropan-2-ol + glutathione disulfide + H2O"],["RHEA%3A63844","cumene hydroperoxide + [thioredoxin]-dithiol = 2-phenylpropan-2-ol + [thioredoxin]-disulfide + H2O"]],"b":[["mapped/Cumene_Hydroperoxide.yaml","Cumene hydroperoxide"]]},{"id":"CHEBI:7939","l":"","na":2,"nb":1,"a":[["RHEA%3A61320","(+)-costunolide + reduced [NADPH--hemoprotein reductase] + O2 = parthenolide + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A61328","parthenolide + reduced [NADPH--hemoprotein reductase] + O2 = 3beta-hydroxyparthenolide + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["mapped/Parthenolide.yaml","Parthenolide"]]},{"id":"CHEBI:8075","l":"","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["MCSA%3A241","penicillin amidase (peptidase C59 family)"]],"b":[["mapped/Phenoxyacetic_Acid.yaml","Phenoxyacetic acid"]]},{"id":"CHEBI:80946","l":"3-octanone","na":2,"nb":1,"a":[["RHEA%3A54856","octan-3-one + NADPH + O2 + H(+) = ethyl hexanoate + NADP(+) + H2O"],["RHEA%3A54840","octan-3-one + NADPH + O2 + H(+) = pentyl propanoate + NADP(+) + H2O"]],"b":[["mapped/3-octanone.yaml","3-octanone"]]},{"id":"CHEBI:87346","l":"","na":2,"nb":1,"a":[["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["mapped/Acridine_Orange.yaml","Acridine orange"]]},{"id":"CHEBI:9332","l":"sulfamethoxazole","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["mapped/Sulfamethoxazole.yaml","Sulfamethoxazole"]]},{"id":"CHEBI:100241","l":"ciprofloxacin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CPF","CPF-binding site"]],"b":[["mapped/Ciprofloxacin.yaml","Ciprofloxacin"]]},{"id":"CHEBI:10100","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ZLK","ZLK-binding site"]],"b":[["mapped/Zafirlukast.yaml","Zafirlukast"]]},{"id":"CHEBI:113451","l":"sodium ascorbate","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_113451","requires sodium ascorbate"]],"b":[["mapped/Na-ascorbate.yaml","Na-ascorbate"]]},{"id":"CHEBI:113451)","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_113451","requires sodium ascorbate"]],"b":[["mapped/Na-ascorbate.yaml","Na-ascorbate"]]},{"id":"CHEBI:116509","l":"","na":1,"nb":1,"a":[["RHEA%3A65788","diuron + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = 3-(3,4-dichlorophenyl)-1-methylurea + formaldehyde + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"]],"b":[["mapped/DCMU.yaml","DCMU"]]},{"id":"CHEBI:12936","l":"D-galactose","na":1,"nb":1,"a":[["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"]],"b":[["mapped/D-galactose.yaml","D-Galactose"]]},{"id":"CHEBI:131529","l":"pyridoxal hydrochloride","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_131529","requires pyridoxal hydrochloride"]],"b":[["mapped/Pyridoxal_Hydrochloride.yaml","Pyridoxal hydrochloride"]]},{"id":"CHEBI:134431","l":"","na":1,"nb":1,"a":[["MCSA%3A431","acetylxylan esterase"]],"b":[["mapped/Acetylated_Xylan.yaml","Acetylated xylan"]]},{"id":"CHEBI:142593","l":"''4-hydroxynonenal''","na":1,"nb":1,"a":[["RHEA%3A58336","a 4-hydroxynonen-1-ol + NADP(+) = a 4-hydroxynonenal + NADPH + H(+)"]],"b":[["mapped/4-Hydroxynonenal.yaml","4-Hydroxynonenal"]]},{"id":"CHEBI:147155","l":"","na":1,"nb":1,"a":[["RHEA%3A64016","alpha-L-Fuc-(1->2)-beta-D-Gal-(1->4)-D-Glc + GDP-beta-L-fucose = alpha-L-Fuc-(1->2)-beta-D-Gal-(1->4)-[alpha-L-Fuc-(1->3)]-D-Glc + GDP + H(+)"]],"b":[["mapped/2-fucosyllactose.yaml","2'-fucosyllactose"]]},{"id":"CHEBI:15346)","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15346","requires coenzyme A"]],"b":[["mapped/Coenzyme_A.yaml","Coenzyme A"]]},{"id":"CHEBI:15353","l":"blasticidin S","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BLS","BLS-binding site"]],"b":[["mapped/Blasticidin_S.yaml","Blasticidin S"]]},{"id":"CHEBI:15356","l":"cysteine","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Cysteine.yaml","Cysteine"]]},{"id":"CHEBI:15356)","l":"","na":1,"nb":1,"a":[["ComplexPortal%3ACPX-4601","Glutathione/cysteine ABC exporter complex"]],"b":[["mapped/Cysteine.yaml","Cysteine"]]},{"id":"CHEBI:15573","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_P7I","P7I-binding site"]],"b":[["mapped/2-Aminoethylphosphonate.yaml","2-Aminoethylphosphonate"]]},{"id":"CHEBI:156074","l":"","na":1,"nb":1,"a":[["RHEA%3A64680","ethanol + benzoyl-CoA = ethyl benzoate + CoA"]],"b":[["mapped/Ethyl_Benzoate.yaml","Ethyl benzoate"]]},{"id":"CHEBI:15611","l":"sarcosine","na":1,"nb":1,"a":[["MCSA%3A25","N-carbamoylsarcosine amidase"]],"b":[["mapped/Sarcosine.yaml","sarcosine"]]},{"id":"CHEBI:15671","l":"L-tartaric acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TLA","TLA-binding site"]],"b":[["mapped/L_-tartaric_Acid.yaml","L(+)-Tartaric acid"]]},{"id":"CHEBI:15676","l":"allantoin","na":1,"nb":1,"a":[["RHEA%3A30819","allantoin + H2O = allantoate + H(+)"]],"b":[["mapped/Allantoin.yaml","Allantoin"]]},{"id":"CHEBI:15699","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HSE","HSE-binding site"]],"b":[["mapped/L-Homoserine.yaml","L-Homoserine"]]},{"id":"CHEBI:15738","l":"staurosporine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_STU","STU-binding site"]],"b":[["mapped/Staurosporine.yaml","Staurosporine"]]},{"id":"CHEBI:15756","l":"palmitic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PLM","PLM-binding site"]],"b":[["mapped/Palmitic_Acid.yaml","Palmitic acid"]]},{"id":"CHEBI:15765","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DAH","DAH-binding site"]],"b":[["mapped/Levodopa.yaml","Levodopa"]]},{"id":"CHEBI:15811","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SEP","SEP-binding site"]],"b":[["mapped/O-Phospho-L-serine.yaml","O-Phospho-L-serine"]]},{"id":"CHEBI:15918","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DCM","DCM-binding site"]],"b":[["mapped/2-Deoxycytidine_5-monophosphate.yaml","2-Deoxycytidine 5-monophosphate"]]},{"id":"CHEBI:15956)","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15956","requires biotin"]],"b":[["mapped/Biotin.yaml","Biotin"]]},{"id":"CHEBI:15966","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DGL","DGL-binding site"]],"b":[["mapped/D-Glutamic_Acid.yaml","D-Glutamic Acid"]]},{"id":"CHEBI:16000","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ETA","ETA-binding site"]],"b":[["mapped/Ethanolamine.yaml","Ethanolamine"]]},{"id":"CHEBI:16024","l":"D-mannose","na":1,"nb":1,"a":[["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"]],"b":[["mapped/D-mannose.yaml","D-Mannose"]]},{"id":"CHEBI:16135","l":"isobutyric acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ALQ","ALQ-binding site"]],"b":[["mapped/Isobutyric_Acid.yaml","Isobutyric acid"]]},{"id":"CHEBI:16176","l":"D-ornithine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ORD","ORD-binding site"]],"b":[["mapped/D-ornithine.yaml","D-ornithine"]]},{"id":"CHEBI:16243","l":"quercetin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_QUE","QUE-binding site"]],"b":[["mapped/Quercetin.yaml","Quercetin"]]},{"id":"CHEBI:16260","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_OPO","OPO-binding site"]],"b":[["mapped/2-Nitrophenol.yaml","2-Nitrophenol"]]},{"id":"CHEBI:16261","l":"chitosan","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_GCS","GCS-binding site"]],"b":[["mapped/Chitosan.yaml","Chitosan"]]},{"id":"CHEBI:16283","l":"L-cystine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_IYY","IYY-binding site"]],"b":[["mapped/L-cystine.yaml","L-Cystine"]]},{"id":"CHEBI:16296","l":"D-tryptophan","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DTR","DTR-binding site"]],"b":[["mapped/D-tryptophan.yaml","D-tryptophan"]]},{"id":"CHEBI:16344","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NMG","NMG-binding site"]],"b":[["mapped/Glycocyamine.yaml","Glycocyamine"]]},{"id":"CHEBI:16359","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CHD","CHD-binding site"]],"b":[["mapped/Cholic_Acid.yaml","Cholic acid"]]},{"id":"CHEBI:16398","l":"D-threonine","na":1,"nb":1,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"]],"b":[["mapped/D-threonine.yaml","D-threonine"]]},{"id":"CHEBI:16411","l":"indole-3-acetic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_IAC","IAC-binding site"]],"b":[["mapped/3-indolyl_Acetic_Acid.yaml","3-Indolyl acetic acid"]]},{"id":"CHEBI:16412","l":"","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["mapped/Lipopolysaccharide.yaml","Lipopolysaccharide"]]},{"id":"CHEBI:164200","l":"triclosan","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TCL","TCL-binding site"]],"b":[["mapped/Irgasan.yaml","Irgasan"]]},{"id":"CHEBI:16443","l":"D-tagatose","na":1,"nb":1,"a":[["TCDB%3A4.A.2","The PTS Fructose-Mannitol (Fru) Family"]],"b":[["mapped/D-tagatose.yaml","D-tagatose"]]},{"id":"CHEBI:16530","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_KIV","KIV-binding site"]],"b":[["mapped/3-Methyl-2-Oxobutanoic_Acid.yaml","3-Methyl-2-Oxobutanoic Acid"]]},{"id":"CHEBI:16586","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ACA","ACA-binding site"]],"b":[["mapped/E-Amino-N-Caproic_Acid.yaml","e-Amino-N-Caproic Acid"]]},{"id":"CHEBI:166575","l":"Ginkgotoxin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_GT0","GT0-binding site"]],"b":[["mapped/Ginkgotoxin.yaml","Ginkgotoxin"]]},{"id":"CHEBI:16742","l":"orotic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ORO","ORO-binding site"]],"b":[["mapped/Orotic_acid.yaml","Orotic acid"]]},{"id":"CHEBI:16755","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_JN3","JN3-binding site"]],"b":[["mapped/Chenodeoxycholic_Acid.yaml","Chenodeoxycholic acid"]]},{"id":"CHEBI:16765","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TSS","TSS-binding site"]],"b":[["mapped/Tryptamine.yaml","Tryptamine"]]},{"id":"CHEBI:16811","l":"methionine","na":1,"nb":1,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"]],"b":[["mapped/Dl-methionine.yaml","DL-methionine"]]},{"id":"CHEBI:16830","l":"methylamine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NME","NME-binding site"]],"b":[["mapped/Methylamine.yaml","Methylamine"]]},{"id":"CHEBI:16841","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NSD","NSD-binding site"]],"b":[["mapped/Bis_3-aminopropylamine.yaml","Bis(3-aminopropyl)amine"]]},{"id":"CHEBI:16855","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DLY","DLY-binding site"]],"b":[["mapped/D-Lysine.yaml","D-Lysine"]]},{"id":"CHEBI:16867","l":"D-methionine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MED","MED-binding site"]],"b":[["mapped/D-Methionine.yaml","D-Methionine"]]},{"id":"CHEBI:169041","l":"simvastatin hydroxy acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SIM","SIM-binding site"]],"b":[["mapped/Simvastatin_Hydroxy_Acid_Ammonium_Salt.yaml","Simvastatin Hydroxy Acid Ammonium Salt"]]},{"id":"CHEBI:16914","l":"salicylic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SAL","SAL-binding site"]],"b":[["mapped/Salicylic_Acid.yaml","Salicylic acid"]]},{"id":"CHEBI:16958","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BAL","BAL-binding site"]],"b":[["mapped/Beta-alanine.yaml","Beta-alanine"]]},{"id":"CHEBI:16988","l":"D-ribose","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["mapped/D-Ribose.yaml","D-Ribose"]]},{"id":"CHEBI:17015)","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17015","requires riboflavin"]],"b":[["mapped/Riboflavin.yaml","Riboflavin"]]},{"id":"CHEBI:17061","l":"D-glutamine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DGN","DGN-binding site"]],"b":[["mapped/D-glutamine.yaml","D-glutamine"]]},{"id":"CHEBI:17148","l":"putrescine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PUT","PUT-binding site"]],"b":[["mapped/Putrescine.yaml","Putrescine"]]},{"id":"CHEBI:171817","l":"","na":1,"nb":1,"a":[["RHEA%3A76751","5-hydroxydodecanoate + H(+) = delta-dodecalactone + H2O"]],"b":[["mapped/Delta-Dodecalactone.yaml","Delta-Dodecalactone"]]},{"id":"CHEBI:17189","l":"2,5-dihydroxybenzoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_GTQ","GTQ-binding site"]],"b":[["mapped/Gentisic_Acid.yaml","Gentisic acid"]]},{"id":"CHEBI:17285","l":"L-cysteic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_OCS","OCS-binding site"]],"b":[["mapped/L-Cysteic_Acid_Monohydrate.yaml","L-Cysteic acid monohydrate"]]},{"id":"CHEBI:17364","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DAS","DAS-binding site"]],"b":[["mapped/D-Aspartic_Acid.yaml","D-Aspartic Acid"]]},{"id":"CHEBI:17418","l":"valeric acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_LEA","LEA-binding site"]],"b":[["mapped/Valeric_Acid.yaml","Valeric acid"]]},{"id":"CHEBI:17440","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_4NP","4NP-binding site"]],"b":[["mapped/4-nitrophenyl_Phosphate.yaml","4-nitrophenyl Phosphate"]]},{"id":"CHEBI:17497","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_GOA","GOA-binding site"]],"b":[["mapped/Glycolic_Acid.yaml","Glycolic Acid"]]},{"id":"CHEBI:17521","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_QIC","QIC-binding site"]],"b":[["mapped/%28-%29-quinic_Acid.yaml","(-)-quinic Acid"]]},{"id":"CHEBI:17553","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_OPE","OPE-binding site"]],"b":[["mapped/O-Phosphoryl-Ethanolamine.yaml","O-Phosphoryl-Ethanolamine"]]},{"id":"CHEBI:17620","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_FER","FER-binding site"]],"b":[["mapped/Ferulate.yaml","Ferulate"]]},{"id":"CHEBI:17642","l":"pentachlorophenol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PCI","PCI-binding site"]],"b":[["mapped/Pentachlorophenol.yaml","Pentachlorophenol"]]},{"id":"CHEBI:176565","l":"","na":1,"nb":1,"a":[["RHEA%3A74883","phloretate + S-adenosyl-L-methionine = 3-(4-hydroxyphenyl)propionic acid methyl ether + S-adenosyl-L-homocysteine"]],"b":[["mapped/Methyl_3-_4-hydroxyphenylpropionate.yaml","Methyl 3-(4-hydroxyphenyl)propionate"]]},{"id":"CHEBI:17665","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_G6P","G6P-binding site"]],"b":[["mapped/Alpha-D-glucose_6-phosphate.yaml","Alpha-D-glucose 6-phosphate"]]},{"id":"CHEBI:17713","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_D5M","D5M-binding site"]],"b":[["mapped/2-Deoxyadenosine_5-monophosphate.yaml","2-Deoxyadenosine 5-monophosphate"]]},{"id":"CHEBI:17836)","l":"","na":1,"nb":1,"a":[["RHEA%3A16201","4-amino-4-deoxychorismate = 4-aminobenzoate + pyruvate + H(+)"]],"b":[["mapped/4-aminobenzoate.yaml","4-Aminobenzoate"]]},{"id":"CHEBI:17858","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_GDS","GDS-binding site"]],"b":[["mapped/Glutathione_Oxidized.yaml","Glutathione oxidized"]]},{"id":"CHEBI:17905)","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17905","requires coenzyme M"]],"b":[["mapped/2-mercaptoethanesulfonate.yaml","2-Mercaptoethanesulfonate"]]},{"id":"CHEBI:17965","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_H9R","H9R-binding site"]],"b":[["mapped/Isoorientin.yaml","Isoorientin"]]},{"id":"CHEBI:17973","l":"alpha-D-galactose 1-phosphate","na":1,"nb":1,"a":[["TCDB%3A9.B.18","The Xanthan Glycosyl Transferase, GumD (GumD) Family"]],"b":[["mapped/Galactose_1-phosphate_Dipotassium_Salt_Pentahydrate.yaml","Galactose 1-phosphate dipotassium salt pentahydrate"]]},{"id":"CHEBI:18026","l":"2,3-dihydroxybenzoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DBH","DBH-binding site"]],"b":[["mapped/23-dihydroxybenzoic_Acid.yaml","2,3-dihydroxybenzoic acid"]]},{"id":"CHEBI:18053","l":"1-aminocyclopropanecarboxylic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_1AC","1AC-binding site"]],"b":[["mapped/1-aminocyclopropane-1-carboxylate.yaml","1-aminocyclopropane-1-carboxylate"]]},{"id":"CHEBI:18127","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_N2P","N2P-binding site"]],"b":[["mapped/Cadaverine.yaml","Cadaverine"]]},{"id":"CHEBI:18152","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MYC","MYC-binding site"]],"b":[["mapped/Myricetin.yaml","Myricetin"]]},{"id":"CHEBI:18183","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PCA","PCA-binding site"]],"b":[["mapped/L-Pyroglutamic_Acid.yaml","L-Pyroglutamic acid"]]},{"id":"CHEBI:18186","l":"tyrosine","na":1,"nb":1,"a":[["MCSA%3A668","leishmanolysin"]],"b":[["mapped/DL-Tyrosine.yaml","DL-Tyrosine"]]},{"id":"CHEBI:18292","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_JAA","JAA-binding site"]],"b":[["mapped/Jasmonic_Acid.yaml","Jasmonic acid"]]},{"id":"CHEBI:18295","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HSM","HSM-binding site"]],"b":[["mapped/Histamine.yaml","Histamine"]]},{"id":"CHEBI:18357","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_LNR","LNR-binding site"]],"b":[["mapped/Norepinephrine.yaml","(-)-Norepinephrine"]]},{"id":"CHEBI:18385)","l":"","na":1,"nb":1,"a":[["RHEA%3A17697","pyridine + thiamine = heteropyrithiamine + 5-(2-hydroxyethyl)-4-methylthiazole"]],"b":[["mapped/Thiamine.yaml","Thiamine"]]},{"id":"CHEBI:18388","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_AGI","AGI-binding site"]],"b":[["mapped/Apigenin.yaml","Apigenin"]]},{"id":"CHEBI:185431","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9JE","9JE-binding site"]],"b":[["mapped/15-Pentanediol.yaml","1,5-Pentanediol"]]},{"id":"CHEBI:191055","l":"N-[tris(hydroxymethyl)methyl]-3-aminopropanesulfonic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_T3A","T3A-binding site"]],"b":[["mapped/TAPS_Sodium_Salt.yaml","TAPS sodium salt"]]},{"id":"CHEBI:192558","l":"","na":1,"nb":1,"a":[["RHEA%3A72983","harmol + dimethylallyl diphosphate = 6-(3-dimethylallyl)harmol + diphosphate"]],"b":[["mapped/Harmol.yaml","Harmol"]]},{"id":"CHEBI:21553","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NLQ","NLQ-binding site"]],"b":[["mapped/N-Acetyl-L-glutamine.yaml","N-Acetyl-L-glutamine"]]},{"id":"CHEBI:231886","l":"ethyl methyl sulfide","na":1,"nb":1,"a":[["RHEA%3A81435","methyl ethyl sulfide + AH2 = ethane + methanethiol + A"]],"b":[["mapped/Ethyl_Methyl_Sulfide.yaml","ethyl methyl sulfide"]]},{"id":"CHEBI:23456","l":"","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["mapped/Cyclodextrin.yaml","Cyclodextrin"]]},{"id":"CHEBI:24040","l":"flavin adenine dinucleotide","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_24040","requires flavin adenine dinucleotide"]],"b":[["mapped/Flavin_Adenine_Dinucleotide.yaml","Flavin adenine dinucleotide"]]},{"id":"CHEBI:24175","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Galacturonate.yaml","Galacturonate"]]},{"id":"CHEBI:24632","l":"hydrocarbon","na":1,"nb":1,"a":[["TCDB%3A1.B.9","The FadL Outer Membrane Protein (FadL) Family"]],"b":[["mapped/Hydrocarbon.yaml","Hydrocarbon"]]},{"id":"CHEBI:24848","l":"inositol","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Inositol.yaml","Inositol"]]},{"id":"CHEBI:25105","l":"","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["mapped/Macrolide_Antibiotic.yaml","Macrolide Antibiotic"]]},{"id":"CHEBI:25164","l":"","na":1,"nb":1,"a":[["RHEA%3A84991","D-mannobiose = beta-D-mannosyl-(1->4)-D-glucose"]],"b":[["mapped/Mannobiose.yaml","Mannobiose"]]},{"id":"CHEBI:25351","l":"mevalonic acid","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Dl-mevalonic_Acid.yaml","DL-mevalonic acid"]]},{"id":"CHEBI:26078","l":"","na":1,"nb":1,"a":[["MCSA%3A486","polynucleotide 5'-phosphatase"]],"b":[["mapped/H3PO4.yaml","H3PO4"]]},{"id":"CHEBI:2637","l":"amikacin","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["mapped/Amikacin.yaml","Amikacin"]]},{"id":"CHEBI:26401","l":"purines","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Purines.yaml","Purines"]]},{"id":"CHEBI:26546","l":"","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["mapped/Rhamnose.yaml","Rhamnose"]]},{"id":"CHEBI:26986","l":"threonine","na":1,"nb":1,"a":[["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["mapped/Threonine.yaml","Threonine"]]},{"id":"CHEBI:27027","l":"","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["mapped/Micronutrients.yaml","Micronutrients"]]},{"id":"CHEBI:27442","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_FCB","FCB-binding site"]],"b":[["mapped/Beta-D-fucose.yaml","Beta-D-fucose"]]},{"id":"CHEBI:27612","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HYN","HYN-binding site"]],"b":[["mapped/Hydantoin.yaml","Hydantoin"]]},{"id":"CHEBI:27729","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_AJP","AJP-binding site"]],"b":[["mapped/Digitonin.yaml","Digitonin"]]},{"id":"CHEBI:27899","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CPT","CPT-binding site"]],"b":[["mapped/Cisplatin.yaml","Cisplatin"]]},{"id":"CHEBI:27941","l":"pullulan","na":1,"nb":1,"a":[["MCSA%3A433","neopullulanase"]],"b":[["mapped/Pullulan.yaml","Pullulan"]]},{"id":"CHEBI:28093","l":"","na":1,"nb":1,"a":[["RHEA%3A68828","borneol + NAD(+) = camphor + NADH + H(+)"]],"b":[["mapped/Borneol.yaml","Borneol"]]},{"id":"CHEBI:28121","l":"harmine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HRM","HRM-binding site"]],"b":[["mapped/Harmine.yaml","Harmine"]]},{"id":"CHEBI:28145","l":"dibenzofuran","na":1,"nb":1,"a":[["RHEA%3A42460","dibenzofuran + NADH + O2 + H(+) = biphenyl-2,2',3-triol + NAD(+)"]],"b":[["mapped/Dibenzofuran.yaml","Dibenzofuran"]]},{"id":"CHEBI:28225","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DLE","DLE-binding site"]],"b":[["mapped/D-Leucine.yaml","D-Leucine"]]},{"id":"CHEBI:2825","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_GOQ","GOQ-binding site"]],"b":[["mapped/Aristolochic_Acid.yaml","Aristolochic Acid"]]},{"id":"CHEBI:28260","l":"galactose","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Galactose.yaml","Galactose"]]},{"id":"CHEBI:28362","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HQO","HQO-binding site"]],"b":[["mapped/2-n-Heptyl-4-hydroxyquinoline_N-oxide.yaml","2-n-Heptyl-4-hydroxyquinoline N-oxide"]]},{"id":"CHEBI:28368","l":"novobiocin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NOV","NOV-binding site"]],"b":[["mapped/Novobiocin.yaml","Novobiocin"]]},{"id":"CHEBI:28600","l":"farnesol","na":1,"nb":1,"a":[["RHEA%3A79359","farnesol + 2 Fe(III)-[cytochrome c] = farnesal + 2 Fe(II)-[cytochrome c] + 2 H(+)"]],"b":[["mapped/TransTrans-Farnesol.yaml","Trans,Trans-Farnesol"]]},{"id":"CHEBI:28621","l":"triethanolamine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_211","211-binding site"]],"b":[["mapped/Triethanolamine.yaml","Triethanolamine"]]},{"id":"CHEBI:28631","l":"3-phenylpropionic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HCI","HCI-binding site"]],"b":[["mapped/Phenyl_Propionic_Acid.yaml","Phenyl propionic acid"]]},{"id":"CHEBI:28747","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_6PC","6PC-binding site"]],"b":[["mapped/Picolinic_Acid.yaml","Picolinic acid"]]},{"id":"CHEBI:28748","l":"doxorubicin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DM2","DM2-binding site"]],"b":[["mapped/Doxorubicin.yaml","Doxorubicin"]]},{"id":"CHEBI:28790","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SRO","SRO-binding site"]],"b":[["mapped/Serotonin.yaml","Serotonin"]]},{"id":"CHEBI:28808","l":"mannan","na":1,"nb":1,"a":[["TCDB%3A4.A.3","The PTS Lactose-N,N'-Diacetylchitobiose-β-glucoside (Lac) Family"]],"b":[["unmapped/Prebiotin.yaml","Prebiotin"]]},{"id":"CHEBI:28834","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DXC","DXC-binding site"]],"b":[["mapped/Deoxycholic_Acid.yaml","Deoxycholic acid"]]},{"id":"CHEBI:28837","l":"octanoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_OCA","OCA-binding site"]],"b":[["mapped/Octanoic_Acid.yaml","Octanoic acid"]]},{"id":"CHEBI:28854","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CFA","CFA-binding site"]],"b":[["mapped/24-Dichlorophenoxyacetic_acid.yaml","2,4-Dichlorophenoxyacetic acid"]]},{"id":"CHEBI:28860","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BDP","BDP-binding site"]],"b":[["mapped/Beta-D-glucuronic_Acid.yaml","Beta-D-glucuronic Acid"]]},{"id":"CHEBI:28864","l":"tobramycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TOY","TOY-binding site"]],"b":[["mapped/Tobramycin.yaml","Tobramycin"]]},{"id":"CHEBI:28875","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MYR","MYR-binding site"]],"b":[["mapped/Myristic_Acid.yaml","Myristic acid"]]},{"id":"CHEBI:28918","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ALE","ALE-binding site"]],"b":[["mapped/Epinephrine.yaml","(-)-Epinephrine"]]},{"id":"CHEBI:28971","l":"ampicillin","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["mapped/Ampicillin.yaml","Ampicillin"]]},{"id":"CHEBI:28987","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_A9H","A9H-binding site"]],"b":[["mapped/Abietic_Acid.yaml","Abietic Acid"]]},{"id":"CHEBI:29013","l":"fusidic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_FUA","FUA-binding site"]],"b":[["mapped/Fusidic_Acid_Sodium_Salt.yaml","Fusidic acid sodium salt"]]},{"id":"CHEBI:29019","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_KNA","KNA-binding site"]],"b":[["mapped/Nonanoic_Acid.yaml","Nonanoic acid"]]},{"id":"CHEBI:29021","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HEX","HEX-binding site"]],"b":[["mapped/Hexane.yaml","Hexane"]]},{"id":"CHEBI:29125","l":"arsenate(3-)","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ART","ART-binding site"]],"b":[["mapped/Arsenate.yaml","Arsenate"]]},{"id":"CHEBI:29582","l":"ascomycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_KXX","KXX-binding site"]],"b":[["mapped/Ascomycin.yaml","Ascomycin"]]},{"id":"CHEBI:29699","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"]],"b":[["mapped/Tunicamycin.yaml","Tunicamycin"]]},{"id":"CHEBI:30033","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BCL","BCL-binding site"]],"b":[["mapped/Bacteriochlorophyll_A.yaml","Bacteriochlorophyll A"]]},{"id":"CHEBI:30531","l":"pimelic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PML","PML-binding site"]],"b":[["mapped/Pimelic_Acid.yaml","Pimelic acid"]]},{"id":"CHEBI:30745","l":"phenylacetic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PAC","PAC-binding site"]],"b":[["mapped/Phenyl_Acetic_Acid.yaml","Phenyl acetic acid"]]},{"id":"CHEBI:30754","l":"anthranilic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BE2","BE2-binding site"]],"b":[["mapped/Anthranilic_Acid.yaml","anthranilic acid"]]},{"id":"CHEBI:30764","l":"3-hydroxybenzoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_3HB","3HB-binding site"]],"b":[["mapped/3-hydroxybenzoic_Acid.yaml","3-Hydroxybenzoic acid"]]},{"id":"CHEBI:30776","l":"hexanoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_6NA","6NA-binding site"]],"b":[["mapped/Caproic_Acid.yaml","Caproic acid"]]},{"id":"CHEBI:30794","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MLA","MLA-binding site"]],"b":[["mapped/Malonic_Acid.yaml","Malonic acid"]]},{"id":"CHEBI:30796","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MLT","MLT-binding site"]],"b":[["mapped/%28R%29-malic_Acid.yaml","(R)-malic Acid"]]},{"id":"CHEBI:30797","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_LMR","LMR-binding site"]],"b":[["mapped/L-Malic_Acid.yaml","L-Malic acid"]]},{"id":"CHEBI:30813","l":"decanoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DKA","DKA-binding site"]],"b":[["mapped/Decanoic_Acid.yaml","Decanoic acid"]]},{"id":"CHEBI:30831","l":"2-oxobutanoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_2KT","2KT-binding site"]],"b":[["mapped/2-oxobutyric_Acid_Sodium_Salt.yaml","2-oxobutyric acid sodium salt"]]},{"id":"CHEBI:30838","l":"itaconic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ITN","ITN-binding site"]],"b":[["mapped/Itaconic_Acid.yaml","Itaconic Acid"]]},{"id":"CHEBI:30845","l":"2-furoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_FOA","FOA-binding site"]],"b":[["mapped/2-furoic_Acid.yaml","2-Furoic acid"]]},{"id":"CHEBI:30913","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_YCP","YCP-binding site"]],"b":[["mapped/L-Pipecolic_Acid.yaml","L-Pipecolic Acid"]]},{"id":"CHEBI:31348","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["mapped/Capecitabine.yaml","Capecitabine"]]},{"id":"CHEBI:320055","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MGL","MGL-binding site"]],"b":[["mapped/Methyl_Beta-D-glucopyranoside.yaml","Methyl beta-D-glucopyranoside"]]},{"id":"CHEBI:32111","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_LSA","LSA-binding site"]],"b":[["mapped/Saccharin.yaml","Saccharin"]]},{"id":"CHEBI:32365","l":"heptadecanoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_X90","X90-binding site"]],"b":[["mapped/Heptadecanoic_Acid.yaml","heptadecanoic acid"]]},{"id":"CHEBI:32373","l":"4-coumarate","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["mapped/4-coumarate.yaml","4-coumarate"]]},{"id":"CHEBI:32397","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_O4B","O4B-binding site"]],"b":[["mapped/18-Crown-6.yaml","18-Crown-6"]]},{"id":"CHEBI:3259","l":"CCCP","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/CCCP.yaml","CCCP"]]},{"id":"CHEBI:32800","l":"(S)-mandelic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SMN","SMN-binding site"]],"b":[["mapped/%28S%29-mandelic_Acid.yaml","(S)-mandelic Acid"]]},{"id":"CHEBI:33083","l":"fluoranthene","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["mapped/Fluoranthene.yaml","Fluoranthene"]]},{"id":"CHEBI:33198","l":"D-gluconic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_GCO","GCO-binding site"]],"b":[["mapped/D-Gluconic_acid.yaml","D-Gluconic acid"]]},{"id":"CHEBI:33655","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Aromatic_Compound.yaml","Aromatic compound"]]},{"id":"CHEBI:33658","l":"","na":1,"nb":1,"a":[["TCDB%3A1.B.9","The FadL Outer Membrane Protein (FadL) Family"]],"b":[["mapped/Aromatic_Hydrocarbon.yaml","Aromatic hydrocarbon"]]},{"id":"CHEBI:3371","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Capreomycin.yaml","Capreomycin"]]},{"id":"CHEBI:33848","l":"polycyclic arene","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["mapped/Aromatic_Hydrocarbon.yaml","Aromatic hydrocarbon"]]},{"id":"CHEBI:33871","l":"","na":1,"nb":1,"a":[["RHEA%3A81639","glycerate + NAD(+) = 3-hydroxypyruvate + NADH + H(+)"]],"b":[["mapped/Glycerate.yaml","Glycerate"]]},{"id":"CHEBI:3493","l":"cefoperazone","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["mapped/Cefoperazone.yaml","Cefoperazone"]]},{"id":"CHEBI:35020","l":"","na":1,"nb":1,"a":[["RHEA%3A40475","1,2,3-tributanoylglycerol + H2O = dibutanoylglycerol + butanoate + H(+)"]],"b":[["mapped/Tributyrin.yaml","Tributyrin"]]},{"id":"CHEBI:35358","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Sulfonamide.yaml","Sulfonamide"]]},{"id":"CHEBI:35366","l":"fatty acid","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["mapped/Fatty_Acid_Mixture_See_Medium_No_266.yaml","Fatty acid mixture (see Medium No. 266)"]]},{"id":"CHEBI:3537","l":"cefaloridine","na":1,"nb":1,"a":[["TCDB%3A1.B.6","The OmpA-OmpF Porin (OOP) Family"]],"b":[["mapped/Cefaloridine.yaml","Cefaloridine"]]},{"id":"CHEBI:35381","l":"monosaccharide","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Mono-_And_Disaccharides.yaml","Mono- And Disaccharides"]]},{"id":"CHEBI:3547","l":"cephradine","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Cephradine.yaml","Cephradine"]]},{"id":"CHEBI:355715","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/4-nitrophenyl_Beta-D-galactopyranoside.yaml","4-nitrophenyl beta-D-galactopyranoside"]]},{"id":"CHEBI:3567","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["mapped/Cetrimonium_Bromide.yaml","Cetrimonium bromide"]]},{"id":"CHEBI:36062","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DHB","DHB-binding site"]],"b":[["mapped/Protocatechuic_Acid.yaml","Protocatechuic Acid"]]},{"id":"CHEBI:36219","l":"alpha-lactose","na":1,"nb":1,"a":[["RHEA%3A84479","alpha-lactose = lactulose"]],"b":[["mapped/Alpha-Lactose.yaml","alpha-Lactose"]]},{"id":"CHEBI:36233","l":"","na":1,"nb":1,"a":[["TCDB%3A1.A.69","The Heteromeric Odorant Receptor Channel (HORC) Family"]],"b":[["mapped/Mono-_And_Disaccharides.yaml","Mono- And Disaccharides"]]},{"id":"CHEBI:3686","l":"","na":1,"nb":1,"a":[["RHEA%3A64276","chrysophanol-9-anthrone + O2 = chrysophanol + H2O"]],"b":[["mapped/Chrysarobin.yaml","Chrysarobin"]]},{"id":"CHEBI:3687","l":"chrysophanol","na":1,"nb":1,"a":[["RHEA%3A64276","chrysophanol-9-anthrone + O2 = chrysophanol + H2O"]],"b":[["mapped/Chrysophanol.yaml","Chrysophanol"]]},{"id":"CHEBI:36946","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TOU","TOU-binding site"]],"b":[["mapped/Thiourea.yaml","Thiourea"]]},{"id":"CHEBI:3745","l":"clindamycin","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["mapped/Clindamycin.yaml","Clindamycin"]]},{"id":"CHEBI:3749","l":"clofazimine","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Clofazimine.yaml","Clofazimine"]]},{"id":"CHEBI:3815","l":"Collagen","na":1,"nb":1,"a":[["TCDB%3A9.B.113","The Collagen Secretory Protein, Mia3 (Mia3) Family"]],"b":[["mapped/Collagen.yaml","Collagen"]]},{"id":"CHEBI:38167","l":"physcion","na":1,"nb":1,"a":[["RHEA%3A76767","emodin + S-adenosyl-L-methionine = physcion + S-adenosyl-L-homocysteine"]],"b":[["mapped/Physcion.yaml","Physcion"]]},{"id":"CHEBI:38291","l":"dihydrostreptomycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_71R","71R-binding site"]],"b":[["mapped/Dihydrostreptomycin.yaml","Dihydrostreptomycin"]]},{"id":"CHEBI:40009","l":"D-cycloserine","na":1,"nb":1,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"]],"b":[["mapped/D-Cycloserine.yaml","D-Cycloserine"]]},{"id":"CHEBI:40035","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_4MZ","4MZ-binding site"]],"b":[["mapped/4-Methylimidazole.yaml","4-Methylimidazole"]]},{"id":"CHEBI:404903","l":"ertapenem","na":1,"nb":1,"a":[["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"]],"b":[["mapped/Ertapenem.yaml","Ertapenem"]]},{"id":"CHEBI:40585","l":"","na":1,"nb":1,"a":[["MCSA%3A45","cyclomaltodextrin glucanotransferase"]],"b":[["mapped/A-Cyclodextrin.yaml","a-Cyclodextrin"]]},{"id":"CHEBI:41688","l":"crystal violet","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Crystal_Violet.yaml","Crystal Violet"]]},{"id":"CHEBI:41808","l":"decane","na":1,"nb":1,"a":[["RHEA%3A76735","decane + reduced [NADPH--hemoprotein reductase] + O2 = 3-decanol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["mapped/N-decane.yaml","n-Decane"]]},{"id":"CHEBI:41977","l":"daunorubicin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DM1","DM1-binding site"]],"b":[["mapped/Daunorubicin.yaml","Daunorubicin"]]},{"id":"CHEBI:42098","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DOG","DOG-binding site"]],"b":[["mapped/Digoxigenin.yaml","Digoxigenin"]]},{"id":"CHEBI:42223","l":"emodin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_EMO","EMO-binding site"]],"b":[["mapped/Emodin.yaml","Emodin"]]},{"id":"CHEBI:42334","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_EPE","EPE-binding site"]],"b":[["mapped/Hepes.yaml","HEPES"]]},{"id":"CHEBI:42355","l":"erythromycin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ERY","ERY-binding site"]],"b":[["mapped/Erythromycin_A.yaml","Erythromycin A"]]},{"id":"CHEBI:43943","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MMA","MMA-binding site"]],"b":[["mapped/Methyl_Alpha-D-mannoside.yaml","Methyl Alpha-D-mannoside"]]},{"id":"CHEBI:45129","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_GB","GB-binding site"]],"b":[["mapped/Methylphosphonic_acid.yaml","Methylphosphonic acid"]]},{"id":"CHEBI:45285","l":"pyrazinecarboxamide","na":1,"nb":1,"a":[["RHEA%3A35063","pyrazinamide + H2O = pyrazine-2-carboxylate + NH4(+)"]],"b":[["mapped/Pyrazinamide.yaml","Pyrazinamide"]]},{"id":"CHEBI:45367","l":"rifabutin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RBT","RBT-binding site"]],"b":[["mapped/Rifabutin.yaml","Rifabutin"]]},{"id":"CHEBI:45395","l":"pyrithiamine pyrophosphate","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PYI","PYI-binding site"]],"b":[["mapped/Thiamine_pyrophosphate.yaml","Thiamine pyrophosphate"]]},{"id":"CHEBI:45571","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SHV","SHV-binding site"]],"b":[["mapped/Heptanoic_Acid.yaml","Heptanoic acid"]]},{"id":"CHEBI:45630","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SHF","SHF-binding site"]],"b":[["mapped/Levulinic_Acid.yaml","Levulinic Acid"]]},{"id":"CHEBI:45924","l":"trimethoprim","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TOP","TOP-binding site"]],"b":[["mapped/Trimethoprim.yaml","Trimethoprim"]]},{"id":"CHEBI:46345","l":"5-fluorouracil","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_URF","URF-binding site"]],"b":[["mapped/5-fluorouracil.yaml","5-fluorouracil"]]},{"id":"CHEBI:46645","l":"isobutanol","na":1,"nb":1,"a":[["RHEA%3A64692","isobutanol + NAD(+) = 2-methylpropanal + NADH + H(+)"]],"b":[["mapped/Isobutyl_Alcohol.yaml","Isobutyl alcohol"]]},{"id":"CHEBI:46837","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PDC","PDC-binding site"]],"b":[["mapped/Dipicolinic_Acid.yaml","Dipicolinic Acid"]]},{"id":"CHEBI:47106","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_3C4","3C4-binding site"]],"b":[["mapped/3-Chloro-4-hydroxyphenylacetic_acid.yaml","3-Chloro-4-hydroxyphenylacetic acid"]]},{"id":"CHEBI:48131","l":"nonanedioic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_AZ1","AZ1-binding site"]],"b":[["mapped/Azelaic_Acid.yaml","Azelaic acid"]]},{"id":"CHEBI:48267","l":"tubercidin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TBN","TBN-binding site"]],"b":[["mapped/Tubercidin.yaml","Tubercidin"]]},{"id":"CHEBI:48947","l":"clavulanic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_J01","J01-binding site"]],"b":[["mapped/Clavulanic_Acid.yaml","Clavulanic Acid"]]},{"id":"CHEBI:50385","l":"hemin","na":1,"nb":1,"a":[["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]],"b":[["mapped/Haemin.yaml","Haemin"]]},{"id":"CHEBI:50694","l":"minocycline","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MIY","MIY-binding site"]],"b":[["mapped/Minocycline.yaml","Minocycline"]]},{"id":"CHEBI:51240","l":"","na":1,"nb":1,"a":[["TCDB%3A1.C.94","The Thuricin (Thuricin) Family"]],"b":[["mapped/Propidium_Iodide.yaml","Propidium iodide"]]},{"id":"CHEBI:55429","l":"cephamycin","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Cephamycin_A.yaml","Cephamycin A"]]},{"id":"CHEBI:55507","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_AMG","AMG-binding site"]],"b":[["mapped/1-o-methyl_Alpha-galactopyranoside.yaml","1-o-methyl Alpha-galactopyranoside"]]},{"id":"CHEBI:556075","l":"radicicol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RDC","RDC-binding site"]],"b":[["mapped/Radicicol.yaml","Radicicol"]]},{"id":"CHEBI:5656","l":"","na":1,"nb":1,"a":[["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]],"b":[["mapped/Hemoglobin.yaml","Hemoglobin"]]},{"id":"CHEBI:59640","l":"N-acetylglucosamine","na":1,"nb":1,"a":[["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"]],"b":[["mapped/N-acetylglucosamine.yaml","N-Acetylglucosamine"]]},{"id":"CHEBI:62898","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/3-methyl-3-butenol.yaml","3-methyl-3-butenol"]]},{"id":"CHEBI:62972","l":"","na":1,"nb":1,"a":[["RHEA%3A59640","D-xylotetraose + O2 = D-xylotetraono-1,5-lactone + H2O2"]],"b":[["mapped/Xylotetraose.yaml","Xylotetraose"]]},{"id":"CHEBI:62976","l":"","na":1,"nb":1,"a":[["RHEA%3A59664","D-cellopentaose + O2 = D-cellopentaono-1,5-lactone + H2O2"]],"b":[["mapped/Cellopentaose.yaml","Cellopentaose"]]},{"id":"CHEBI:6359","l":"","na":1,"nb":1,"a":[["RHEA%3A84479","alpha-lactose = lactulose"]],"b":[["mapped/Lactulose.yaml","Lactulose"]]},{"id":"CHEBI:63611","l":"moxifloxacin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MFX","MFX-binding site"]],"b":[["mapped/Moxifloxacin.yaml","Moxifloxacin"]]},{"id":"CHEBI:63861","l":"","na":1,"nb":1,"a":[["RHEA%3A81439","2-(methylsulfanyl)ethanol + AH2 = ethene + methanethiol + A + H2O"]],"b":[["mapped/2-_Methylthioethanol.yaml","2-(Methylthio)ethanol"]]},{"id":"CHEBI:63940","l":"sodium tungstate","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["mapped/Na2wo4.yaml","Na2WO4"]]},{"id":"CHEBI:63961","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_GGG","GGG-binding site"]],"b":[["mapped/Glycylglycylglycine.yaml","Glycylglycylglycine"]]},{"id":"CHEBI:67121","l":"nitroxoline","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HNQ","HNQ-binding site"]],"b":[["mapped/8-hydroxy-nitroquinoline.yaml","8-hydroxy-nitroquinoline"]]},{"id":"CHEBI:67379","l":"trans-methylferulate","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SZQ","SZQ-binding site"]],"b":[["mapped/Methyl_Ferulate.yaml","methyl ferulate"]]},{"id":"CHEBI:6827","l":"methicillin","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/Methicillin.yaml","Methicillin"]]},{"id":"CHEBI:68428","l":"","na":1,"nb":1,"a":[["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"]],"b":[["mapped/Maltitol.yaml","Maltitol"]]},{"id":"CHEBI:6909","l":"metronidazole","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["mapped/Metronidazole.yaml","Metronidazole"]]},{"id":"CHEBI:70744","l":"Gly-Pro","na":1,"nb":1,"a":[["MCSA%3A1001","Prolidase (Xaa-Pro dipeptidase)"]],"b":[["mapped/Glycyl-L-proline.yaml","Glycyl-L-proline"]]},{"id":"CHEBI:72292","l":"bedaquiline","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BQ1","BQ1-binding site"]],"b":[["mapped/Bedaquiline.yaml","Bedaquiline"]]},{"id":"CHEBI:73757","l":"Ala-Gly","na":1,"nb":1,"a":[["MCSA%3A724","repressor LexA"]],"b":[["mapped/L-alanylglycine.yaml","L-alanylglycine"]]},{"id":"CHEBI:73918","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["mapped/3-O-methyl-glucose.yaml","3-O-methyl-glucose"]]},{"id":"CHEBI:74846","l":"azaserine","na":1,"nb":1,"a":[["TCDB%3A2.A.76","The Resistance to Homoserine/Threonine (RhtB) Family"]],"b":[["mapped/Azaserine.yaml","Azaserine"]]},{"id":"CHEBI:74863","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_6MJ","6MJ-binding site"]],"b":[["mapped/Methyl_Beta-D-xylopyranoside.yaml","Methyl Beta-D-xylopyranoside"]]},{"id":"CHEBI:7507","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["mapped/Neomycin.yaml","Neomycin"]]},{"id":"CHEBI:7508","l":"framycetin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NMY","NMY-binding site"]],"b":[["mapped/Framycetin.yaml","Framycetin"]]},{"id":"CHEBI:75092","l":"morin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MRI","MRI-binding site"]],"b":[["mapped/Morin.yaml","Morin"]]},{"id":"CHEBI:75095","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_57D","57D-binding site"]],"b":[["mapped/Chrysin.yaml","Chrysin"]]},{"id":"CHEBI:75323","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"]],"b":[["mapped/Lactitol.yaml","Lactitol"]]},{"id":"CHEBI:7934","l":"paromomycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PAR","PAR-binding site"]],"b":[["mapped/Paromomycin.yaml","Paromomycin"]]},{"id":"CHEBI:79394","l":"indolmycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_5BX","5BX-binding site"]],"b":[["mapped/Indolmycin.yaml","Indolmycin"]]},{"id":"CHEBI:79928","l":"","na":1,"nb":1,"a":[["RHEA%3A84959","asiatic acid 28-O-[beta-D-glucosyl-(1->6)-beta-D-glucoside] + UDP-beta-L-rhamnose = asiaticoside + UDP + H(+)"]],"b":[["mapped/Asiaticoside.yaml","Asiaticoside"]]},{"id":"CHEBI:8082","l":"","na":1,"nb":1,"a":[["MCSA%3A740","arylesterase"]],"b":[["mapped/Phenyl_acetate.yaml","Phenyl acetate"]]},{"id":"CHEBI:8232","l":"piperacillin","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["mapped/Piperacillin.yaml","Piperacillin"]]},{"id":"CHEBI:85274","l":"","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["mapped/Pristinamycin.yaml","Pristinamycin"]]},{"id":"CHEBI:86471","l":"pyrite","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["mapped/Pyrite.yaml","Pyrite"]]},{"id":"CHEBI:8673","l":"pyrimethamine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CP6","CP6-binding site"]],"b":[["mapped/Pyrimethamine.yaml","Pyrimethamine"]]},{"id":"CHEBI:88937","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HHS","HHS-binding site"]],"b":[["mapped/Pterin-6-Carboxylic_Acid.yaml","Pterin-6-Carboxylic Acid"]]},{"id":"CHEBI:90065","l":"3-fucosyllactose","na":1,"nb":1,"a":[["RHEA%3A62888","lactose + GDP-beta-L-fucose = beta-D-galactosyl-(1->4)-[alpha-L-fucosyl-(1->3)]-D-glucose + GDP + H(+)"]],"b":[["mapped/3-fucosyllactose.yaml","3'-fucosyllactose"]]},{"id":"CHEBI:9009","l":"Salidroside","na":1,"nb":1,"a":[["RHEA%3A84635","4-tyrosol + UDP-alpha-D-glucose = salidroside + UDP + H(+)"]],"b":[["mapped/Salidroside.yaml","Salidroside"]]},{"id":"CHEBI:90146","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_C3G","C3G-binding site"]],"b":[["mapped/4-nitrophenyl_Beta-D-glucuronide.yaml","4-nitrophenyl Beta-D-glucuronide"]]},{"id":"CHEBI:91122","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PNG","PNG-binding site"]],"b":[["mapped/4-nitrophenyl_Alpha-D-glucopyranoside.yaml","4-nitrophenyl Alpha-D-glucopyranoside"]]},{"id":"CHEBI:9150","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.28","The Bile Acid:Na+ Symporter (BASS) Family"]],"b":[["mapped/Simvastatin.yaml","Simvastatin"]]},{"id":"CHEBI:9747","l":"Triptolide","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TLI","TLI-binding site"]],"b":[["mapped/Triptolide.yaml","Triptolide"]]},{"id":"UBERON:0000955","l":"brain","na":1,"nb":1,"a":[["GO%3A0007420","brain development"]],"b":[["unmapped/Calf_Brains.yaml","Calf brains"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/ProteinTraitsMech--NaturalProductMech.json b/assets/fleet/edges/ProteinTraitsMech--NaturalProductMech.json index 34a309b..f537abb 100644 --- a/assets/fleet/edges/ProteinTraitsMech--NaturalProductMech.json +++ b/assets/fleet/edges/ProteinTraitsMech--NaturalProductMech.json @@ -1 +1 @@ -{"a":"ProteinTraitsMech","b":"NaturalProductMech","base":{"ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record=","NaturalProductMech":"https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/natural_products/"},"n":900,"by":{"NCBITaxon":497,"UniProt":156,"CHEBI":148,"DOI":96,"RHEA":3},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":156,"nb":24,"a":[["IDPO%3A0000033","flexible linker"],["IDPO%3A0000014","order to disorder"],["IDPO%3A0000004","pre-molten globule"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":34,"nb":23,"a":[["Pfam%3APF25848","Rodlin protein"],["Pfam%3APF13420","Acetyltransferase (GNAT) domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF26381","BREX System ATPase PglY protein 5th domain"],["Pfam%3APF26382","BREX System ATPase PglY protein 6th domain"]],"b":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/melanin.yaml","melanin"],["alkaloids/undecylprodigiosin.yaml","undecylprodigiosin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/sapb.yaml","SapB"]]},{"id":"NCBITaxon:227321","l":"Emericella nidulans (strain FGSC A4 / ATCC 38163 / CBS 112.46 / NRRL 194 / M139)","na":46,"nb":22,"a":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF05270","Alpha-L-arabinofuranosidase B (ABFB) domain"],["Pfam%3APF07792","Docking domain of Afi1 for Arf3 in vesicle trafficking"],["Pfam%3APF09206","Alpha-L-arabinofuranosidase B, catalytic"],["Pfam%3APF27751","ATEG_07667 C-terminal domain"],["Pfam%3APF20238","Copper acquisition factor BIM1-like"]],"b":[["alkaloids/aspernidine-a.yaml","aspernidine A"],["alkaloids/aspyridone-a.yaml","aspyridone A"],["alkaloids/aspyridone-b.yaml","aspyridone B"],["alkaloids/cichorine.yaml","cichorine"],["alkaloids/terrequinone-a.yaml","terrequinone A"],["amino_acids_and_peptides/fellutamide-b.yaml","fellutamide B"]]},{"id":"NCBITaxon:77133","l":"uncultured bacterium","na":22,"nb":34,"a":[["TED%3AAF-A0A059X489-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A059X489-F1-model_v4_TED02"],["TED%3AAF-A0A059X769-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A059X769-F1-model_v4_TED01"],["TED%3AAF-K1YCK5-F1-model_v4_TED02","TED highly-symmetric fold AF-K1YCK5-F1-model_v4_TED02"],["TED%3AAF-K1Z363-F1-model_v4_TED05","TED highly-symmetric fold AF-K1Z363-F1-model_v4_TED05"],["TED%3AAF-K1ZVQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-K1ZVQ3-F1-model_v4_TED01"],["TED%3AAF-K2AKZ9-F1-model_v4_TED01","TED highly-symmetric fold AF-K2AKZ9-F1-model_v4_TED01"]],"b":[["alkaloids/borregomycin-a.yaml","borregomycin A"],["alkaloids/borregomycin-b.yaml","borregomycin B"],["alkaloids/borregomycin-c.yaml","borregomycin C"],["alkaloids/borregomycin-d.yaml","borregomycin D"],["alkaloids/erdasporine-a.yaml","erdasporine A"],["alkaloids/erdasporine-b.yaml","erdasporine B"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":20,"nb":27,"a":[["Pfam%3APF16822","SGNH hydrolase-like domain, acetyltransferase AlgX"],["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"],["Pfam%3APF11182","Alginate O-acetyl transferase AlgF"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF27129","Functional amyloid protein FapB/FapC family"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]],"b":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["alkaloids/pseudomonine.yaml","pseudomonine"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyreudione-c.yaml","pyreudione C"],["alkaloids/quinolobactin.yaml","quinolobactin"]]},{"id":"UniProt:P43405","l":"","na":32,"nb":17,"a":[["GO%3A0019815","B cell receptor complex"],["GO%3A0042101","T cell receptor complex"],["GO%3A0016170","interleukin-15 receptor binding"],["GO%3A0004715","non-membrane spanning protein tyrosine kinase activity"],["GO%3A0035325","Toll-like receptor binding"],["GO%3A0002752","cell surface pattern recognition receptor signaling pathway"]],"b":[["alkaloids/cytochalasin-e.yaml","cytochalasin E"],["alkaloids/fumiquinazoline-a.yaml","fumiquinazoline A"],["alkaloids/fumiquinazoline-d.yaml","fumiquinazoline D"],["alkaloids/psilocybin.yaml","psilocybin"],["amino_acids_and_peptides/epoxomicin.yaml","epoxomicin"],["amino_acids_and_peptides/tubulysin-a.yaml","tubulysin A"]]},{"id":"UniProt:O96028","l":"","na":27,"nb":16,"a":[["ComplexPortal%3ACPX-16414","-"],["CDD%3Acd20162","PWWP_NSD2_rpt1"],["CDD%3Acd21991","HMG-box_NSD2"],["CDD%3Acd15648","PHD1_NSD1_2"],["CDD%3Acd15651","PHD2_NSD2"],["CDD%3Acd15654","PHD3_NSD2"]],"b":[["alkaloids/cytochalasin-e.yaml","cytochalasin E"],["alkaloids/fumiquinazoline-d.yaml","fumiquinazoline D"],["amino_acids_and_peptides/epoxomicin.yaml","epoxomicin"],["amino_acids_and_peptides/tubulysin-a.yaml","tubulysin A"],["carbohydrates/puromycin.yaml","puromycin"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":18,"nb":16,"a":[["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["Pfam%3APF14562","Restriction endonuclease BglI"],["Pfam%3APF09195","Restriction endonuclease BglII/BglIII"],["Pfam%3APF09208","Restriction endonuclease MspI"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["amino_acids_and_peptides/ericin-s.yaml","ericin S"],["amino_acids_and_peptides/iturin.yaml","iturin"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"]]},{"id":"NCBITaxon:330879","l":"Aspergillus fumigatus (strain ATCC MYA-4609 / CBS 101355 / FGSC A1100 / Af293)","na":34,"nb":14,"a":[["Pfam%3APF22624","4'-phosphopantetheinyl transferase, N-terminal"],["Pfam%3APF13523","Acetyltransferase (GNAT) domain"],["Pfam%3APF28338","AclK C-terminal domain"],["Pfam%3APF23297","Highly reducing polyketide synthase sdgA, C-terminal ACP domain"],["Pfam%3APF11001","YDR124W-like, helical bundle domain"],["Pfam%3APF25312","Allergen Asp f 4-like domain"]],"b":[["alkaloids/fumigaclavine-c.yaml","fumigaclavine C"],["alkaloids/fumiquinazoline-a.yaml","fumiquinazoline A"],["alkaloids/fumiquinazoline-c.yaml","fumiquinazoline C"],["alkaloids/fumiquinazoline-d.yaml","fumiquinazoline D"],["alkaloids/hexadehydroastechrome.yaml","hexadehydroastechrome"],["polyketides/endocrocin.yaml","endocrocin"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":50101,"nb":13,"a":[["EC%3A1.1.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.1.98.-","With other, known, acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/congocidine.yaml","congocidine"],["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]]},{"id":"NCBITaxon:56","l":"Sorangium cellulosum","na":13,"nb":25,"a":[["TED%3AAF-A0A150SQB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A150SQB4-F1-model_v4_TED01"],["TED%3AAF-A0A2L0EP96-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0EP96-F1-model_v4_TED01"],["TED%3AAF-A0A2L0F1G5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0F1G5-F1-model_v4_TED01"],["TED%3AAF-A0A2L0F230-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0F230-F1-model_v4_TED01"],["TED%3AAF-A0A4P2R1W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P2R1W3-F1-model_v4_TED01"],["TED%3AAF-A0A150P579-F1-model_v4_TED02","TED novel fold AF-A0A150P579-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/microsclerodermin-m.yaml","microsclerodermin M"],["polyketides/ambruticin.yaml","ambruticin"],["polyketides/chivosazol.yaml","chivosazol"],["polyketides/chlorotonil-a.yaml","chlorotonil A"],["polyketides/disorazol-a.yaml","disorazol A"],["polyketides/etnangien.yaml","etnangien"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":20,"nb":12,"a":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"],["Pfam%3APF18173","Bacterial HORMA domain 2"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["Pfam%3APF27322","Cap8 HORMA domain"],["Pfam%3APF01526","Tn3 transposase DDE domain"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:341663","l":"","na":11,"nb":17,"a":[["Pfam%3APF27751","ATEG_07667 C-terminal domain"],["Pfam%3APF28386","BfoA family C-terminal domain"],["Pfam%3APF03879","Cgr1 family"],["Pfam%3APF22621","CurL-like, PKS C-terminal"],["Pfam%3APF18558","Methyltransferase, Helix-turn-helix domain"],["Pfam%3APF06355","Aegerolysin"]],"b":[["alkaloids/asterriquinone-ct5.yaml","asterriquinone CT5"],["alkaloids/dihydroisoflavipucine.yaml","dihydroisoflavipucine"],["alkaloids/isoflavipucine.yaml","isoflavipucine"],["polyketides/citreoviridin.yaml","citreoviridin"],["polyketides/geodin.yaml","geodin"],["polyketides/terreic-acid.yaml","terreic acid"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":12,"nb":11,"a":[["Pfam%3APF17433","Glycosyl hydrolase family 49 N-terminal Ig-like domain"],["PROSITE%3APS00820","Glucoamylase active site region signature"],["PROSITE%3APS00920","Nitrilases / cyanide hydratase signature 1"],["PROSITE%3APS00502","Polygalacturonase active site"],["Pfam%3APF18841","Beta solenoid repeat from Dextranase"],["Pfam%3APF03718","Glycosyl hydrolase family 49"]],"b":[["amino_acids_and_peptides/ferrichrome.yaml","ferrichrome"],["polyketides/1-2-3-5-10-tetrahydroxy-7-methoxy-4-oxo-1-2-3-4-tetrahydroanthracen-2-yl-pentane.yaml","1-(2,3,5,10-tetrahydroxy-7-methoxy-4-oxo-1,2,3,4-tetrahydroanthracen-2-yl)pentane-2,4-dione"],["polyketides/azanigerone-a.yaml","azanigerone A"],["polyketides/campyrone-b.yaml","campyrone B"],["polyketides/desmethyl-tan-1612.yaml","desmethyl TAN-1612"],["polyketides/fumonisin-b2.yaml","fumonisin B2"]]},{"id":"NCBITaxon:3702","l":"Arabidopsis thaliana","na":18776,"nb":10,"a":[["EC%3A1.1.99.-","With other acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.14.11.-","With 2-oxoglutarate as one donor, and incorporation of one atom each of oxygen into both donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.14.-","With reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/itaconic-acid.yaml","itaconic acid"],["terpenoids/ent-quiannulatene.yaml","(-)-ent-quiannulatene"],["terpenoids/euphol.yaml","euphol"],["terpenoids/marneral.yaml","marneral"],["terpenoids/thaliandiol.yaml","thaliandiol"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa PAO1","na":174,"nb":10,"a":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF06750","Bacterial Peptidase A24 N-terminal domain"],["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF28403","Aconitase X second domain"],["Pfam%3APF28406","Aconitase X third domain"],["Pfam%3APF04412","Aconitase X first domain"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:1911","l":"Streptomyces griseus","na":10,"nb":32,"a":[["Pfam%3APF13207","AAA domain"],["Pfam%3APF27054","Beta-methylindole-3-pyruvate reductase C-terminal domain"],["Pfam%3APF26558","3-dehydroquinate synthase II C-terminal domain"],["Pfam%3APF01959","3-dehydroquinate synthase II N-terminal domain"],["Pfam%3APF13459","4Fe-4S single cluster domain"],["Pfam%3APF04655","Aminoglycoside/hydroxyurea antibiotic resistance kinase"]],"b":[["alkaloids/cycloheximide.yaml","cycloheximide"],["alkaloids/grixazone-a.yaml","grixazone A"],["alkaloids/iminimycin-a.yaml","iminimycin A"],["alkaloids/iminimycin-b.yaml","iminimycin B"],["alkaloids/indolmycin.yaml","indolmycin"],["alkaloids/melanin.yaml","melanin"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae (strain ATCC 42149 / RIB 40)","na":29,"nb":10,"a":[["Pfam%3APF09260","Alpha-amylase, domain C"],["Pfam%3APF28338","AclK C-terminal domain"],["Pfam%3APF09206","Alpha-L-arabinofuranosidase B, catalytic"],["Pfam%3APF28380","Sesquiterpene cyclase astC-like C-terminal domain"],["Pfam%3APF13364","Beta-galactosidase second all-beta domain"],["Pfam%3APF10435","Beta-galactosidase, domain 2"]],"b":[["fatty_acids/oryzine-a.yaml","oryzine A"],["polyketides/kojic-acid.yaml","kojic acid"],["polyketides/oryzine-b.yaml","oryzine B"],["polyketides/ywa1.yaml","YWA1"],["shikimates_and_phenylpropanoids/2-4-dihydroxy-3-methoxypropiophenone.yaml","2,4'-dihydroxy-3'-methoxypropiophenone"],["shikimates_and_phenylpropanoids/8-methyldiaporthin.yaml","8-methyldiaporthin"]]},{"id":"NCBITaxon:242507","l":"","na":14,"nb":10,"a":[["Pfam%3APF28293","Biotrophy-associated secreted protein 2"],["Pfam%3APF28414","Biotrophy-associated secreted protein 4"],["Pfam%3APF22997","Chitin synthase 4-like domain"],["Pfam%3APF27979","CON7 transcription factor helical domain"],["Pfam%3APF26980","Dicer-like protein 2, dsRNA binding domain"],["Pfam%3APF11327","Egh16-like virulence factor"]],"b":[["polyketides/1-alpha-l-2-o-methyl-6-deoxymannopyranosyloxy-3-6-8-trimethoxynaphthalene.yaml","1-(alpha-l-(2-O-methyl)-6-deoxymannopyranosyloxy)-3,6,8-trimethoxynaphthalene"],["polyketides/10-11-dihydroxymagnaporthepyrone.yaml","10,11-dihydroxymagnaporthepyrone"],["polyketides/12-13-dihydroxymagnaporthepyrone.yaml","12,13-dihydroxymagnaporthepyrone"],["polyketides/epipyriculol.yaml","epipyriculol"],["polyketides/naphthalene-1-3-6-8-tetrol.yaml","naphthalene-1,3,6,8-tetrol"],["polyketides/nectriapyrone-c.yaml","nectriapyrone C"]]},{"id":"NCBITaxon:5076","l":"Penicillium chrysogenum","na":93,"nb":9,"a":[["Pfam%3APF03417","Acyl-coenzyme A:6-aminopenicillanic acid acyl-transferase"],["IEDB%3A30","epitope AAAEKAITVGAS"],["IEDB%3A168112","epitope AFHKELGAIYSEIKD"],["IEDB%3A168122","epitope AGIHFAVAAGNDNAD"],["IEDB%3A1615","epitope AGMDWAVKD"],["IEDB%3A1777","epitope AHIKKSKKGDKKFKGSVANMSLGGGSSRTLD"]],"b":[["alkaloids/chrysogine.yaml","chrysogine"],["amino_acids_and_peptides/benzylpenicillin-sodium.yaml","benzylpenicillin sodium"],["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"],["amino_acids_and_peptides/n-5s-5-ammonio-5-carboxylatopentanoyl-l-cysteinyl-d-valinate.yaml","N-[(5S)-5-ammonio-5-carboxylatopentanoyl]-L-cysteinyl-D-valinate"],["polyketides/2-3-dihydrosorbicillin.yaml","2'3'-dihydrosorbicillin"],["polyketides/bisorbicillinol.yaml","bisorbicillinol"]]},{"id":"UniProt:P18054","l":"","na":25,"nb":9,"a":[["EC%3A1.13.11.31","arachidonate 12-lipoxygenase"],["EC%3A1.13.11.33","arachidonate 15-lipoxygenase"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"],["RHEA%3A10428","(5Z,8Z,11Z,14Z)-eicosatetraenoate + O2 = (12S)-hydroperoxy-(5Z,8Z,10E,14Z)-eicosatetraenoate"],["RHEA%3A16869","(5Z,8Z,11Z,14Z)-eicosatetraenoate + O2 = (15S)-hydroperoxy-(5Z,8Z,11Z,13E)-eicosatetraenoate"],["GO%3A0004052","arachidonate 12(S)-lipoxygenase activity"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/actinonin.yaml","actinonin"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"],["fatty_acids/triacsin-c.yaml","triacsin C"],["polyketides/terreic-acid.yaml","terreic acid"],["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"NCBITaxon:746128","l":"Aspergillus fumigatus","na":9,"nb":20,"a":[["IEDB%3A174450","epitope EALQYFALEAYAFDI"],["IEDB%3A174452","epitope EAYAFDIAAPGVGCA"],["IEDB%3A174517","epitope GNRPTMEAVGAYDVI"],["IEDB%3A174535","epitope GYDEVIALAKSNGTE"],["IEDB%3A174536","epitope HFADGYDEVIALAKS"],["IEDB%3A174757","epitope TMEAVGAYDVIVNGD"]],"b":[["alkaloids/fumigaclavine-c.yaml","fumigaclavine C"],["alkaloids/fumiquinazoline-a.yaml","fumiquinazoline A"],["alkaloids/fumiquinazoline-c.yaml","fumiquinazoline C"],["alkaloids/fumiquinazoline-d.yaml","fumiquinazoline D"],["alkaloids/hexadehydroastechrome.yaml","hexadehydroastechrome"],["carbohydrates/tobramycin.yaml","tobramycin"]]},{"id":"UniProt:Q96RU2","l":"","na":14,"nb":9,"a":[["ComplexPortal%3ACPX-15530","-"],["ComplexPortal%3ACPX-15595","-"],["ComplexPortal%3ACPX-15768","-"],["ComplexPortal%3ACPX-24431","-"],["InterPro%3AIPR054108","Ubiquitin carboxyl-terminal hydrolase 25/28, UIM"],["CDD%3Acd02665","Peptidase_C19I"]],"b":[["alkaloids/esmeraldin.yaml","esmeraldin"],["alkaloids/fervenulin.yaml","fervenulin"],["alkaloids/neocarazostatin-a.yaml","neocarazostatin A"],["alkaloids/nybomycin.yaml","nybomycin"],["amino_acids_and_peptides/tyrocidine-a.yaml","tyrocidine A"],["polyketides/asukamycin.yaml","asukamycin"]]},{"id":"UniProt:O95398","l":"","na":20,"nb":8,"a":[["ComplexPortal%3ACPX-10829","-"],["ComplexPortal%3ACPX-12123","-"],["ComplexPortal%3ACPX-12892","-"],["ComplexPortal%3ACPX-13579","-"],["ComplexPortal%3ACPX-13585","-"],["ComplexPortal%3ACPX-14152","-"]],"b":[["alkaloids/8-azaguanine.yaml","8-azaguanine"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/thiostrepton.yaml","thiostrepton"],["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"],["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK1622","na":8,"nb":12,"a":[["Pfam%3APF27281","DevT C-terminal domain"],["Pfam%3APF27372","DevT N-terminal domain"],["Pfam%3APF17762","ParB HTH domain"],["Pfam%3APF01930","Domain of unknown function DUF83"],["Pfam%3APF09559","Cas6 Crispr"],["Pfam%3APF01905","CRISPR-associated negative auto-regulator DevR/Csa2"]],"b":[["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"],["amino_acids_and_peptides/myxochromide-a.yaml","myxochromide A"],["amino_acids_and_peptides/myxoprincomide-c506.yaml","myxoprincomide-c506"]]},{"id":"NCBITaxon:229533","l":"Fusarium graminearum PH-1","na":8,"nb":11,"a":[["Pfam%3APF18388","Atg29 N-terminal domain"],["Pfam%3APF27599","CcsR C-terminal domain"],["Pfam%3APF07110","EthD domain"],["Pfam%3APF11700","Vacuole effluxer Atg22 like"],["Pfam%3APF28504","Gramillins biosynthetic cluster protein GRA5"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"]],"b":[["alkaloids/chrysogine.yaml","chrysogine"],["amino_acids_and_peptides/fusaoctaxin-a.yaml","fusaoctaxin A"],["polyketides/aurofusarin.yaml","aurofusarin"],["polyketides/prolipyrone-b.yaml","prolipyrone B"],["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"],["terpenoids/15-acetyldeoxynivalenol.yaml","15-acetyldeoxynivalenol"]]},{"id":"NCBITaxon:5599","l":"Alternaria alternata","na":63,"nb":7,"a":[["Pfam%3APF16541","Alternaria alternata allergen 1"],["IEDB%3A168075","epitope AALDNYIQTKTVSIR"],["IEDB%3A168092","epitope ADKVVLVAYFAADDK"],["IEDB%3A168093","epitope ADLAITYNSRAEGAE"],["IEDB%3A168100","epitope ADVKAVLESVGIEAD"],["IEDB%3A168144","epitope AIVYYSMYGHIKKMA"]],"b":[["alkaloids/ak-toxin-i.yaml","AK-toxin I"],["alkaloids/dimethylcoprogen.yaml","dimethylcoprogen"],["amino_acids_and_peptides/am-toxin.yaml","AM-toxin"],["polyketides/act-toxin-ii.yaml","ACT-Toxin II"],["polyketides/unii-yc2q1o94pt.yaml","UNII-YC2Q1O94PT"],["unclassified/af-toxin.yaml","AF-toxin"]]},{"id":"NCBITaxon:5077","l":"Penicillium citrinum","na":28,"nb":7,"a":[["IEDB%3A164560","epitope AAANVVKSGIFLSVAAGNE"],["IEDB%3A164565","epitope AAPHVAGVAAYLM"],["IEDB%3A164579","epitope AKSRGANGKYVMNMSLGGE"],["IEDB%3A164582","epitope ALEGVSAGNACARIVQLA"],["IEDB%3A164583","epitope ALEGVSAGNACARIVQLATSSISRAPSGTTSK"],["IEDB%3A164593","epitope ANVVQSNVPSWGLARISSK"]],"b":[["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["polyketides/citrinin.yaml","(+)-citrinin"],["polyketides/mevinic-acid.yaml","mevinic acid"],["unclassified/orcinol.yaml","orcinol"],["unclassified/penigainamide-a.yaml","penigainamide A"],["unclassified/penigainamide-b.yaml","penigainamide B"]]},{"id":"NCBITaxon:1916","l":"Streptomyces lividans","na":7,"nb":18,"a":[["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["Pfam%3APF27079","SpdB plasmid transfer protein, C-terminal HTH domain"],["Pfam%3APF27072","KilB plasmid transfer protein"],["Pfam%3APF08386","TAP-like protein"],["PROSITE%3APS00999","Streptomyces subtilisin-type inhibitors signature"],["Pfam%3APF03664","Glycosyl hydrolase family 62"]],"b":[["alkaloids/rebeccamycin.yaml","rebeccamycin"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["amino_acids_and_peptides/dehydroxynocardamine.yaml","dehydroxynocardamine"],["amino_acids_and_peptides/goadsporin.yaml","goadsporin"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"]]},{"id":"NCBITaxon:223283","l":"Pseudomonas syringae pv. tomato (strain ATCC BAA-871 / DC3000)","na":14,"nb":7,"a":[["IDPO%3A0000030","entropic chain"],["IDPO%3A0000037","molecular recognition display site"],["Pfam%3APF16847","Avirulence AvrPtoB, BAK1-binding domain"],["Pfam%3APF09046","AvrPtoB E3 ubiquitin ligase"],["Pfam%3APF25965","ALG44 beta-barrel domain"],["Pfam%3APF25964","ALG44, barrel-sandwich hybrid domain"]],"b":[["alkaloids/yersiniabactin.yaml","yersiniabactin"],["amino_acids_and_peptides/syringafactin-a.yaml","syringafactin A"],["amino_acids_and_peptides/syringafactin-b.yaml","syringafactin B"],["amino_acids_and_peptides/syringafactin-c.yaml","syringafactin C"],["amino_acids_and_peptides/syringafactin-d.yaml","syringafactin D"],["amino_acids_and_peptides/syringafactin-e.yaml","syringafactin E"]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":7,"nb":13,"a":[["Pfam%3APF16861","Carbamoyltransferase C-terminus"],["Pfam%3APF02543","Carbamoyltransferase N-terminus"],["Pfam%3APF01960","ArgJ family"],["Pfam%3APF07467","Beta-lactamase inhibitor (BLIP)"],["MCSA%3A303","(carboxyethyl)arginine beta-lactam-synthase"],["MCSA%3A137","deacetoxycephalosporin-C synthase"]],"b":[["alkaloids/holomycin.yaml","holomycin"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/2-formyloxymethylclavam.yaml","2-formyloxymethylclavam"],["amino_acids_and_peptides/2-hydroxymethylclavam.yaml","2-hydroxymethylclavam"],["amino_acids_and_peptides/alanylclavam.yaml","alanylclavam"],["amino_acids_and_peptides/cephamycin-c.yaml","cephamycin C"]]},{"id":"NCBITaxon:5507","l":"Fusarium oxysporum","na":7,"nb":11,"a":[["Pfam%3APF02015","Glycosyl hydrolase family 45"],["PROSITE%3APS01140","Glycosyl hydrolases family 45 active site"],["MCSA%3A473","NADP nitrous oxide-forming nitric oxide reductase"],["MCSA%3A173","trypsin"],["TED%3AAF-A0A2H3TJY2-F1-model_v4_TED01","TED novel fold AF-A0A2H3TJY2-F1-model_v4_TED01"],["TED%3AAF-A0A420N954-F1-model_v4_TED01","TED novel fold AF-A0A420N954-F1-model_v4_TED01"]],"b":[["alkaloids/fusaric-acid.yaml","fusaric acid"],["polyketides/bikaverin.yaml","bikaverin"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"],["polyketides/fumonisin-c1.yaml","Fumonisin C1"],["polyketides/fumonisin-c2.yaml","Fumonisin C2"],["polyketides/fumonisin-c3.yaml","Fumonisin C3"]]},{"id":"NCBITaxon:27334","l":"Penicillium expansum","na":7,"nb":10,"a":[["Pfam%3APF11786","Aft1 HRA domain"],["Pfam%3APF11787","Aft1 HRR domain"],["Pfam%3APF11785","Aft1 osmotic stress response (OSM) domain"],["Pfam%3APF14856","Pathogen effector; putative necrosis-inducing factor"],["PROSITE%3APS00624","GMC oxidoreductases signature 2"],["TED%3AAF-A0A0A2ILJ4-F1-model_v4_TED03","TED novel fold AF-A0A0A2ILJ4-F1-model_v4_TED03"]],"b":[["alkaloids/chaetoglobosin-a.yaml","chaetoglobosin A"],["alkaloids/chaetoglobosin-c.yaml","chaetoglobosin C"],["alkaloids/communesin-a.yaml","communesin A"],["alkaloids/communesin-b.yaml","communesin B"],["alkaloids/communesin-c.yaml","communesin C"],["alkaloids/communesin-d.yaml","communesin D"]]},{"id":"NCBITaxon:2024858","l":"","na":7,"nb":7,"a":[["TED%3AAF-A0A2D9T9L6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9T9L6-F1-model_v4_TED01"],["TED%3AAF-A0A2E0T9R7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0T9R7-F1-model_v4_TED01"],["TED%3AAF-A0A891ZV95-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A891ZV95-F1-model_v4_TED01"],["TED%3AAF-A0A2D9SYS7-F1-model_v4_TED02","TED novel fold AF-A0A2D9SYS7-F1-model_v4_TED02"],["TED%3AAF-A0A2D9TFN8-F1-model_v4_TED02","TED novel fold AF-A0A2D9TFN8-F1-model_v4_TED02"],["TED%3AAF-A0A2E0TMV1-F1-model_v4_TED03","TED novel fold AF-A0A2E0TMV1-F1-model_v4_TED03"]],"b":[["amino_acids_and_peptides/sandarazol-a.yaml","sandarazol A"],["amino_acids_and_peptides/sandarazol-c.yaml","sandarazol C"],["amino_acids_and_peptides/sandarazol-d.yaml","sandarazol D"],["amino_acids_and_peptides/sandarazol-f.yaml","sandarazol F"],["amino_acids_and_peptides/sandarazol-g.yaml","sandarazol G"],["unclassified/sandarazol-b.yaml","sandarazol B"]]},{"id":"NCBITaxon:63737","l":"Nostoc punctiforme PCC 73102","na":7,"nb":7,"a":[["Pfam%3APF11266","Long-chain fatty aldehyde decarbonylase"],["Pfam%3APF21808","Bacterial dynamin-like protein, helical domain"],["Pfam%3APF18460","Heterocyst differentiation regulator C-terminal Hood domain"],["Pfam%3APF13619","KTSC domain"],["IEDB%3A127372","epitope WFSSGLWPF"],["IEDB%3A110157","epitope YWPTEGYEF"]],"b":[["amino_acids_and_peptides/microviridin-n3.yaml","microviridin N3"],["amino_acids_and_peptides/microviridin-n4.yaml","microviridin N4"],["amino_acids_and_peptides/microviridin-n6.yaml","microviridin N6"],["amino_acids_and_peptides/microviridin-n7.yaml","microviridin N7"],["amino_acids_and_peptides/microviridin-n8.yaml","microviridin N8"],["amino_acids_and_peptides/microviridin-n9.yaml","microviridin N9"]]},{"id":"UniProt:Q14694","l":"","na":27,"nb":6,"a":[["ComplexPortal%3ACPX-11609","-"],["ComplexPortal%3ACPX-11855","-"],["ComplexPortal%3ACPX-12223","-"],["ComplexPortal%3ACPX-12431","-"],["ComplexPortal%3ACPX-12812","-"],["ComplexPortal%3ACPX-13824","-"]],"b":[["alkaloids/esmeraldin.yaml","esmeraldin"],["alkaloids/fervenulin.yaml","fervenulin"],["alkaloids/nybomycin.yaml","nybomycin"],["polyketides/asukamycin.yaml","asukamycin"],["polyketides/dehydrorabelomycin.yaml","dehydrorabelomycin"],["polyketides/flaviolin.yaml","flaviolin"]]},{"id":"NCBITaxon:4577","l":"Zea mays","na":22,"nb":6,"a":[["IDPO%3A0000002","disorder"],["Pfam%3APF14861","Plant antimicrobial peptide"],["Pfam%3APF02041","Auxin binding protein"],["Pfam%3APF25436","BSD2 cysteine rich domain"],["Pfam%3APF23493","Cysteinyl-tRNA ligase anticodon binding domain"],["Pfam%3APF03330","Lytic transglycolase"]],"b":[["alkaloids/dimboa.yaml","DIMBOA"],["polyketides/emodin.yaml","emodin"],["terpenoids/zealexin-a1.yaml","zealexin A1"],["terpenoids/zealexin-b3.yaml","zealexin B3"],["terpenoids/zealexin-c2.yaml","zealexin C2"],["unclassified/aflatoxin.yaml","aflatoxin"]]},{"id":"UniProt:Q99700","l":"","na":20,"nb":6,"a":[["ComplexPortal%3ACPX-12180","-"],["ComplexPortal%3ACPX-12321","-"],["ComplexPortal%3ACPX-12947","-"],["ComplexPortal%3ACPX-13401","-"],["ComplexPortal%3ACPX-15183","-"],["ComplexPortal%3ACPX-17860","-"]],"b":[["alkaloids/8-azaguanine.yaml","8-azaguanine"],["alkaloids/cycloheximide.yaml","cycloheximide"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"],["unclassified/antimycin-a.yaml","antimycin A"],["unclassified/echinomycin.yaml","echinomycin"]]},{"id":"UniProt:P40818","l":"","na":16,"nb":6,"a":[["ComplexPortal%3ACPX-13765","-"],["ComplexPortal%3ACPX-16972","-"],["ComplexPortal%3ACPX-18301","-"],["ComplexPortal%3ACPX-19098","-"],["ComplexPortal%3ACPX-24015","-"],["GO%3A0004843","cysteine-type deubiquitinase activity"]],"b":[["alkaloids/esmeraldin.yaml","esmeraldin"],["alkaloids/fervenulin.yaml","fervenulin"],["alkaloids/neocarazostatin-a.yaml","neocarazostatin A"],["alkaloids/nybomycin.yaml","nybomycin"],["polyketides/dehydrorabelomycin.yaml","dehydrorabelomycin"],["polyketides/flaviolin.yaml","flaviolin"]]},{"id":"NCBITaxon:321614","l":"","na":6,"nb":12,"a":[["Pfam%3APF11786","Aft1 HRA domain"],["Pfam%3APF11787","Aft1 HRR domain"],["Pfam%3APF26980","Dicer-like protein 2, dsRNA binding domain"],["Pfam%3APF18973","Putative Chitin binding like"],["Pfam%3APF25326","SRB8 ARM-like domain"],["TED%3AAF-A0A7U2I0S3-F1-model_v4_TED02","TED novel fold AF-A0A7U2I0S3-F1-model_v4_TED02"]],"b":[["alkaloids/phomacin-d.yaml","phomacin D"],["alkaloids/phomacin-e.yaml","phomacin E"],["polyketides/betaenone-b.yaml","betaenone B"],["polyketides/betaenone-c.yaml","betaenone C"],["polyketides/compound-3-2.yaml","compound 3"],["polyketides/compound-5-2.yaml","compound 5"]]},{"id":"UniProt:Q70CQ3","l":"","na":11,"nb":6,"a":[["ComplexPortal%3ACPX-14824","-"],["ComplexPortal%3ACPX-15800","-"],["ComplexPortal%3ACPX-20518","-"],["ComplexPortal%3ACPX-22415","-"],["ComplexPortal%3ACPX-22784","-"],["GO%3A0035871","protein K11-linked deubiquitination"]],"b":[["alkaloids/esmeraldin.yaml","esmeraldin"],["alkaloids/fervenulin.yaml","fervenulin"],["alkaloids/holomycin.yaml","holomycin"],["alkaloids/neocarazostatin-a.yaml","neocarazostatin A"],["polyketides/flaviolin.yaml","flaviolin"],["polyketides/nigericin.yaml","nigericin"]]},{"id":"UniProt:P09936","l":"","na":10,"nb":6,"a":[["GO%3A0031694","alpha-2A adrenergic receptor binding"],["GO%3A0008242","omega peptidase activity"],["InterPro%3AIPR057254","Ubiquitin carboxyl-terminal hydrolase family 1, cysteine active-site"],["CDD%3Acd09616","Peptidase_C12_UCH_L1_L3"],["InterPro%3AIPR001578","Peptidase C12, ubiquitin carboxyl-terminal hydrolase"],["Pfam%3APF01088","Ubiquitin carboxyl-terminal hydrolase, family 1"]],"b":[["alkaloids/esmeraldin.yaml","esmeraldin"],["alkaloids/fervenulin.yaml","fervenulin"],["polyketides/asukamycin.yaml","asukamycin"],["polyketides/chelocardin.yaml","chelocardin"],["polyketides/dehydrorabelomycin.yaml","dehydrorabelomycin"],["polyketides/flaviolin.yaml","flaviolin"]]},{"id":"NCBITaxon:10090","l":"Mus musculus","na":46010,"nb":5,"a":[["EC%3A1.1.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.1.98.-","With other, known, acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"],["terpenoids/carotene.yaml","β-carotene"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":51,"nb":5,"a":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF13166","AAA domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF27533","CapK C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"],["unclassified/leuvalin.yaml","leuvalin"],["unclassified/phevalin.yaml","phevalin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":32,"nb":5,"a":[["Pfam%3APF14535","AMP-binding enzyme C-terminal domain"],["Pfam%3APF13442","Cytochrome C oxidase, cbb3-type, subunit III"],["Pfam%3APF22247","Catechol 2,3-dioxygenase-like N-terminal domain"],["Pfam%3APF25371","Domain of unknown function (DUF7884)"],["Pfam%3APF19301","LigXa C-terminal domain like"],["Pfam%3APF12729","Four helix bundle sensory module for signal transduction"]],"b":[["alkaloids/promysalin.yaml","promysalin"],["polyketides/pseudopyronine-a.yaml","pseudopyronine A"],["polyketides/pseudopyronine-b.yaml","pseudopyronine B"],["unclassified/putisolvin-iii.yaml","putisolvin III"],["unclassified/putisolvin-v.yaml","putisolvin V"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":5,"nb":31,"a":[["TED%3AAF-A0A4Y6CF56-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y6CF56-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6CNZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Y6CNZ1-F1-model_v4_TED02"],["TED%3AAF-A0A7Y4IIX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4IIX4-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6B7F9-F1-model_v4_TED01","TED novel fold AF-A0A4Y6B7F9-F1-model_v4_TED01"],["TED%3AAF-A0A7Y4IR70-F1-model_v4_TED01","TED novel fold AF-A0A7Y4IR70-F1-model_v4_TED01"]],"b":[["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["alkaloids/myxofacycline-e.yaml","myxofacycline E"],["alkaloids/myxofacycline-f.yaml","myxofacycline F"],["alkaloids/myxofacycline-g.yaml","myxofacycline G"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":5,"nb":30,"a":[["Pfam%3APF11720","Peptidase inhibitor I78 family"],["Pfam%3APF12296","Hydrophobic surface binding protein A"],["MCSA%3A118","urate oxidase"],["TED%3AAF-A0A3M7JGA1-F1-model_v4_TED02","TED novel fold AF-A0A3M7JGA1-F1-model_v4_TED02"],["TED%3AAF-A0A7G5JNS3-F1-model_v4_TED03","TED novel fold AF-A0A7G5JNS3-F1-model_v4_TED03"]],"b":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["amino_acids_and_peptides/ditryptophenaline.yaml","(-)-ditryptophenaline"],["amino_acids_and_peptides/imizoquin-a.yaml","imizoquin A"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":26,"nb":5,"a":[["Pfam%3APF13372","Alginate export"],["Pfam%3APF25965","ALG44 beta-barrel domain"],["Pfam%3APF25964","ALG44, barrel-sandwich hybrid domain"],["Pfam%3APF16844","Dinitrogenase iron-molybdenum cofactor, N-terminal"],["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"]],"b":[["alkaloids/aminochelin.yaml","aminochelin"],["alkaloids/azotochelin.yaml","azotochelin"],["alkaloids/protochelin.yaml","protochelin"],["amino_acids_and_peptides/azotobactin-d.yaml","azotobactin D"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"UniProt:O14656","l":"","na":21,"nb":5,"a":[["ComplexPortal%3ACPX-21660","-"],["ComplexPortal%3ACPX-26140","-"],["ComplexPortal%3ACPX-26338","Cytoplasmic organelles"],["ComplexPortal%3ACPX-26301","Secretory organelles"],["GO%3A0008092","cytoskeletal protein binding"],["GO%3A0019894","kinesin binding"]],"b":[["alkaloids/chloramphenicol.yaml","chloramphenicol"],["alkaloids/cycloheximide.yaml","cycloheximide"],["alkaloids/tioguanine.yaml","tioguanine"],["amino_acids_and_peptides/cyclosporin-a.yaml","cyclosporin A"],["polyketides/daunorubicin.yaml","daunorubicin"]]},{"id":"NCBITaxon:3562","l":"Spinacia oleracea","na":17,"nb":5,"a":[["Pfam%3APF21329","Peptidyl-prolyl cis-trans isomerase CYP38-like, PsbQ-like domain"],["Pfam%3APF02941","Ferredoxin thioredoxin reductase variable alpha chain"],["Pfam%3APF02943","Ferredoxin thioredoxin reductase catalytic beta chain"],["Pfam%3APF17257","Family of unknown function (DUF5323)"],["PROSITE%3APS00567","Phosphoribulokinase signature"],["PROSITE%3APS01026","Photosystem I psaG and psaK proteins signature"]],"b":[["terpenoids/yossoside-i.yaml","Yossoside I"],["terpenoids/yossoside-ii.yaml","Yossoside II"],["terpenoids/yossoside-iii.yaml","Yossoside III"],["terpenoids/yossoside-iv.yaml","Yossoside IV"],["terpenoids/yossoside-v.yaml","Yossoside V"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":16,"nb":5,"a":[["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF03173","Putative carbohydrate binding domain"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"],["Pfam%3APF06438","Heme-binding protein A (HasA)"],["Pfam%3APF02974","Protease inhibitor Inh"],["IEDB%3A36655","epitope LIPDGDGEV"]],"b":[["alkaloids/prodigiosin-2.yaml","prodigiosin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/serratiochelin-a.yaml","serratiochelin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["polyketides/oocydin-a.yaml","oocydin A"]]},{"id":"NCBITaxon:5518","l":"Fusarium graminearum","na":5,"nb":14,"a":[["Pfam%3APF09118","Galactose oxidase-like, Early set domain"],["Pfam%3APF07250","Glyoxal oxidase N-terminus"],["MCSA%3A322","galactose oxidiase"],["TED%3AAF-A0A2H3FY84-F1-model_v4_TED03","TED novel fold AF-A0A2H3FY84-F1-model_v4_TED03"],["TED%3AAF-A0A2H3G191-F1-model_v4_TED01","TED novel fold AF-A0A2H3G191-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/fusaoctaxin-a.yaml","fusaoctaxin A"],["polyketides/aurofusarin.yaml","aurofusarin"],["polyketides/fusarielin-h.yaml","fusarielin H"],["polyketides/gibepyrone-a.yaml","gibepyrone A"],["polyketides/prolipyrone-b.yaml","prolipyrone B"],["polyketides/zearalenone.yaml","zearalenone"]]},{"id":"UniProt:P36969","l":"","na":12,"nb":5,"a":[["ComplexPortal%3ACPX-18066","-"],["GO%3A0047066","phospholipid-hydroperoxide glutathione peroxidase activity"],["GO%3A0008430","selenium binding"],["GO%3A0034599","cellular response to oxidative stress"],["InterPro%3AIPR029759","Glutathione peroxidase active site"],["InterPro%3AIPR029760","Glutathione peroxidase conserved site"]],"b":[["alkaloids/ergotamine.yaml","ergotamine"],["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"],["polyketides/pentamycin.yaml","pentamycin"],["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"],["unclassified/antimycin-a.yaml","antimycin A"]]},{"id":"NCBITaxon:5053","l":"Aspergillus aculeatus","na":5,"nb":11,"a":[["Pfam%3APF14683","Polysaccharide lyase family 4, domain III"],["Pfam%3APF14686","Polysaccharide lyase family 4, domain II"],["Pfam%3APF01670","Glycosyl hydrolase family 12"],["MCSA%3A658","arabinogalactan endo-1,4-beta-galactosidase"],["MCSA%3A705","rhamnogalacturonan acetylesterase"]],"b":[["alkaloids/acurin-a.yaml","acurin A"],["polyketides/secalonic-acid-a.yaml","Secalonic acid A"],["terpenoids/aculene-a.yaml","aculene A"],["terpenoids/aculene-b.yaml","aculene B"],["terpenoids/aculene-c.yaml","aculene C"],["terpenoids/aculene-d.yaml","aculene D"]]},{"id":"NCBITaxon:953739","l":"Streptomyces venezuelae ATCC 10712","na":5,"nb":10,"a":[["Pfam%3APF11583","P-aminobenzoate N-oxygenase AurF"],["Pfam%3APF18456","Diiron non-heme beta-hydroxylase N-terminal domain"],["Pfam%3APF07931","Chloramphenicol phosphotransferase-like protein"],["Pfam%3APF02650","WhiA C-terminal HTH domain"],["Pfam%3APF14527","WhiA LAGLIDADG-like domain"]],"b":[["alkaloids/chloramphenicol.yaml","chloramphenicol"],["alkaloids/gaburedin-d.yaml","gaburedin D"],["alkaloids/watasemycin-a.yaml","watasemycin A"],["alkaloids/watasemycin-b.yaml","watasemycin B"],["amino_acids_and_peptides/gaburedin-a.yaml","gaburedin A"],["amino_acids_and_peptides/gaburedin-b.yaml","gaburedin B"]]},{"id":"NCBITaxon:1836","l":"Saccharopolyspora erythraea","na":5,"nb":8,"a":[["Pfam%3APF08990","Erythronolide synthase docking domain"],["Pfam%3APF09277","Erythronolide synthase, docking"],["Pfam%3APF12728","Helix-turn-helix domain"],["Pfam%3APF12307","Protein of unknown function (DUF3631)"],["MCSA%3A602","6-deoxyerythronolide-B synthase"]],"b":[["amino_acids_and_peptides/erythrochelin.yaml","erythrochelin"],["polyketides/3-3-diflaviolin.yaml","3,3'-diflaviolin"],["polyketides/erythromycin-a.yaml","erythromycin A"],["polyketides/erythromycin-b.yaml","erythromycin B"],["polyketides/flaviolin-rhamnoside.yaml","flaviolin rhamnoside"],["polyketides/flaviolin.yaml","flaviolin"]]},{"id":"NCBITaxon:5081","l":"","na":5,"nb":6,"a":[["Pfam%3APF13364","Beta-galactosidase second all-beta domain"],["Pfam%3APF10435","Beta-galactosidase, domain 2"],["Pfam%3APF13363","Beta-galactosidase, domain 3"],["Pfam%3APF01301","Glycosyl hydrolases family 35"],["PROSITE%3APS01182","Glycosyl hydrolases family 35 putative active site"]],"b":[["alkaloids/citridone-a.yaml","citridone A"],["alkaloids/citridone-b-2.yaml","citridone B'"],["alkaloids/citridone-b.yaml","citridone B"],["alkaloids/cj-15-696.yaml","CJ-15,696"],["alkaloids/cj-16-173.yaml","CJ-16,173"],["polyketides/gregatin-a.yaml","gregatin A"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":6,"nb":5,"a":[["Pfam%3APF02929","Beta galactosidase small chain"],["Pfam%3APF27279","Fumarate--diaminopropanoate ligase C-terminal domain"],["Pfam%3APF18024","Helix-turn-helix domain"],["Pfam%3APF16353","Beta-galactosidase, domain 4"],["PROSITE%3APS00594","Aromatic amino acids permeases signature"],["PROSITE%3APS00853","Beta-eliminating lyases pyridoxal-phosphate attachment site"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/andrimid.yaml","andrimid"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/pantocin-a.yaml","pantocin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:43658","l":"Pseudoalteromonas rubra","na":5,"nb":5,"a":[["proteintraitsmech%3AELIFE109154_Orn_monoox","Metallophore-associated ornithine N5-monooxygenase family"],["TED%3AAF-A0A0F4QZE1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0F4QZE1-F1-model_v4_TED02"],["TED%3AAF-A0A0U3GWJ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0U3GWJ2-F1-model_v4_TED01"],["TED%3AAF-A0A0F4QSG0-F1-model_v4_TED02","TED novel fold AF-A0A0F4QSG0-F1-model_v4_TED02"],["TED%3AAF-A0A0L0EPH9-F1-model_v4_TED03","TED novel fold AF-A0A0L0EPH9-F1-model_v4_TED03"]],"b":[["alkaloids/prodigiosin.yaml","prodigiosin"],["polyketides/nonyltyrazolone.yaml","nonyltyrazolone"],["polyketides/undecyltyrazolone.yaml","undecyltyrazolone"],["shikimates_and_phenylpropanoids/z-6-undecenyltyrazolone.yaml","(Z)-ω-6-undecenyltyrazolone"],["unclassified/heptyltyrazolone.yaml","heptyltyrazolone"]]},{"id":"NCBITaxon:6239","l":"Caenorhabditis elegans","na":9682,"nb":4,"a":[["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.14.14.-","With reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.17.-","With reduced ascorbate as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.19.-","With oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water"],["EC%3A1.14.99.-","Miscellaneous"]],"b":[["alkaloids/biotin.yaml","biotin"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/itaconic-acid.yaml","itaconic acid"],["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"]]},{"id":"NCBITaxon:10116","l":"Rattus norvegicus","na":1096,"nb":4,"a":[["IDPO%3A0000011","disorder to order"],["IDPO%3A0000030","entropic chain"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000033","flexible linker"],["IDPO%3A0000041","glycosylation display site"],["IDPO%3A0000003","molten globule"]],"b":[["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/methylarcyriarubin.yaml","methylarcyriarubin"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]]},{"id":"NCBITaxon:39947","l":"Oryza sativa subsp. japonica","na":164,"nb":4,"a":[["Pfam%3APF03157","High molecular weight glutenin subunit"],["Pfam%3APF26249","RdRP3/4/5, N-terminal four helical bundle domain"],["Pfam%3APF23242","TRIP13-like, AAA+ ATPase lid C-terminal domain"],["Pfam%3APF26791","AAPxQ domain"],["Pfam%3APF24922","Acyl-CoA-binding domain-containing protein 4-6, C-terminal"],["Pfam%3APF04864","Allinase"]],"b":[["terpenoids/10-oxodepressin.yaml","10-Oxodepressin"],["terpenoids/momilactone-b.yaml","momilactone B"],["terpenoids/oryzalides.yaml","oryzalides"],["terpenoids/phytocassane.yaml","phytocassane"]]},{"id":"UniProt:P04637","l":"","na":55,"nb":4,"a":[["ComplexPortal%3ACPX-12293","-"],["ComplexPortal%3ACPX-12528","-"],["ComplexPortal%3ACPX-13029","-"],["ComplexPortal%3ACPX-14009","-"],["ComplexPortal%3ACPX-16240","-"],["ComplexPortal%3ACPX-21406","-"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["polyketides/herboxidiene.yaml","herboxidiene"],["terpenoids/zeaxanthin.yaml","zeaxanthin"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":31,"nb":4,"a":[["Pfam%3APF08787","Alginate lyase"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF08218","Citrate lyase ligase C-terminal domain"],["Pfam%3APF13727","CoA-binding domain"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["Pfam%3APF20714","DpiA-like helix-turn-helix domain"]],"b":[["alkaloids/tilivalline.yaml","tilivalline"],["amino_acids_and_peptides/colibactin.yaml","colibactin"],["amino_acids_and_peptides/klebsidin.yaml","klebsidin"],["carbohydrates/capsular-polysaccharide-2.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":28,"nb":4,"a":[["Pfam%3APF08878","HamA"],["Pfam%3APF05791","Bacillus haemolytic enterotoxin (HBL)"],["Pfam%3APF10803","Spore germination GerPB"],["Pfam%3APF10737","Spore germination protein GerPC"],["Pfam%3APF10970","Spore germination protein GerPE"],["Pfam%3APF07486","Cell Wall Hydrolase"]],"b":[["alkaloids/zwittermicin-a.yaml","zwittermicin A"],["amino_acids_and_peptides/livipeptin.yaml","Livipeptin"],["carbohydrates/tunicamycin.yaml","tunicamycin"],["unclassified/cereulide.yaml","cereulide"]]},{"id":"NCBITaxon:378806","l":"Stigmatella aurantiaca DW4/3-1","na":4,"nb":17,"a":[["TED%3AAF-Q098I8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q098I8-F1-model_v4_TED01"],["TED%3AAF-E3FRW3-F1-model_v4_TED01","TED novel fold AF-E3FRW3-F1-model_v4_TED01"],["TED%3AAF-E3G0M4-F1-model_v4_TED01","TED novel fold AF-E3G0M4-F1-model_v4_TED01"],["TED%3AAF-Q08VS7-F1-model_v4_TED01","TED novel fold AF-Q08VS7-F1-model_v4_TED01"]],"b":[["polyketides/aurafuron-a.yaml","aurafuron A"],["polyketides/dawenol.yaml","dawenol"],["unclassified/dkxanthene-504.yaml","dkxanthene 504"],["unclassified/dkxanthene-508.yaml","dkxanthene 508"],["unclassified/dkxanthene-518.yaml","dkxanthene 518"],["unclassified/dkxanthene-520.yaml","dkxanthene 520"]]},{"id":"NCBITaxon:1914","l":"Streptomyces lavendulae","na":4,"nb":12,"a":[["Pfam%3APF01678","Diaminopimelate epimerase"],["Pfam%3APF27100","D-cycloserine synthetase DcsG, N-terminal domain"],["Pfam%3APF20240","Domain of unknown function (DUF6597)"],["Pfam%3APF11731","Pathogenicity locus"]],"b":[["alkaloids/indigoidine.yaml","indigoidine"],["alkaloids/saframycin-a.yaml","saframycin A"],["alkaloids/saframycin-b.yaml","saframycin B"],["amino_acids_and_peptides/cycloserine.yaml","cycloserine"],["amino_acids_and_peptides/isocomplestatin.yaml","isocomplestatin"],["carbohydrates/showdomycin.yaml","showdomycin"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":4,"nb":10,"a":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"],["TED%3AAF-A0A085UKV7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085UKV7-F1-model_v4_TED01"],["TED%3AAF-A0A4R6IU28-F1-model_v4_TED02","TED novel fold AF-A0A4R6IU28-F1-model_v4_TED02"]],"b":[["alkaloids/labradorin-1.yaml","labradorin 1"],["alkaloids/labradorin-2.yaml","labradorin 2"],["alkaloids/secimide.yaml","secimide"],["amino_acids_and_peptides/phaseolotoxin.yaml","phaseolotoxin"],["amino_acids_and_peptides/syringolin-a.yaml","syringolin A"],["amino_acids_and_peptides/tabtoxin.yaml","tabtoxin"]]},{"id":"NCBITaxon:1397","l":"Niallia circulans","na":9,"nb":4,"a":[["Pfam%3APF03423","Carbohydrate binding domain (family 25)"],["Pfam%3APF13199","Glycosyl hydrolase family 66"],["Pfam%3APF14399","Butirosin biosynthesis protein H, N-terminal"],["Pfam%3APF19634","Family of unknown function (DUF6137)"],["PROSITE%3APS60000","Chitosanases families 46 and 80 active sites signature"],["MCSA%3A817","chitinase (GH18, class II)"]],"b":[["carbohydrates/butirosin-a.yaml","butirosin A"],["carbohydrates/butirosin-b.yaml","butirosin B"],["carbohydrates/butirosin.yaml","butirosin"],["unclassified/pelgipeptin-b.yaml","Pelgipeptin B"]]},{"id":"NCBITaxon:500485","l":"Penicillium rubens Wisconsin 54-1255","na":4,"nb":9,"a":[["Pfam%3APF03417","Acyl-coenzyme A:6-aminopenicillanic acid acyl-transferase"],["Pfam%3APF03659","Glycosyl hydrolase family 71"],["PROSITE%3APS00185","Isopenicillin N synthase signature 1"],["PROSITE%3APS00186","Isopenicillin N synthase signature 2"]],"b":[["alkaloids/dehydrohistidyltryptophanyldiketopiperazine.yaml","dehydrohistidyltryptophanyldiketopiperazine"],["alkaloids/glandicoline-a.yaml","glandicoline A"],["alkaloids/glandicoline-b.yaml","glandicoline B"],["alkaloids/meleagrine.yaml","meleagrine"],["polyketides/sorbicillin.yaml","sorbicillin"],["terpenoids/conidiogenone.yaml","conidiogenone"]]},{"id":"NCBITaxon:227882","l":"","na":8,"nb":4,"a":[["Pfam%3APF17390","Bacterial alpha-L-rhamnosidase C-terminal domain"],["Pfam%3APF08531","Alpha-L-rhamnosidase N-terminal domain"],["Pfam%3APF05592","Bacterial alpha-L-rhamnosidase concanavalin-like domain"],["Pfam%3APF26366","Domain of unknown function (DUF8094)"],["Pfam%3APF25788","Rha78A-like, N-terminal immunoglobulin domain"],["Pfam%3APF06781","Cell division protein CrgA"]],"b":[["amino_acids_and_peptides/edha.yaml","EDHA"],["polyketides/filipin-iii.yaml","filipin III"],["terpenoids/avermitilol.yaml","avermitilol"],["terpenoids/pentalenolactone.yaml","pentalenolactone"]]},{"id":"NCBITaxon:326423","l":"Bacillus velezensis FZB42","na":4,"nb":8,"a":[["Pfam%3APF21607","[Acyl-carrier-protein] S-malonyltransferase, inserted helical domain"],["Pfam%3APF21996","Histidyl-tRNA synthetase HisZ, C-terminal domain"],["Pfam%3APF07293","Protein of unknown function (DUF1450)"],["Pfam%3APF12227","Protein of unknown function (DUF3603)"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["polyketides/bacillaene.yaml","bacillaene"],["polyketides/difficidin.yaml","difficidin"],["polyketides/macrolactin-h.yaml","macrolactin H"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:32049","l":"Picosynechococcus sp. PCC 7002","na":6,"nb":4,"a":[["Pfam%3APF09367","CpeS-like protein"],["Pfam%3APF06206","CpeT/CpcT family (DUF1001)"],["Pfam%3APF12965","Domain of unknown function (DUF3854)"],["Pfam%3APF19928","Domain of unknown function (DUF6391)"],["Pfam%3APF09366","Protein of unknown function (DUF1997)"],["Pfam%3APF14870","Photosynthesis system II assembly factor YCF48"]],"b":[["alkaloids/synechobactin-a.yaml","synechobactin A"],["alkaloids/synechobactin-b.yaml","synechobactin B"],["alkaloids/synechobactin-c.yaml","synechobactin C"],["fatty_acids/nonadec-1-ene.yaml","nonadec-1-ene"]]},{"id":"NCBITaxon:1393","l":"Brevibacillus brevis","na":5,"nb":4,"a":[["Pfam%3APF03306","Alpha-acetolactate decarboxylase"],["Pfam%3APF05384","Sensor protein DegS"],["TED%3AAF-A0A2Z4MK38-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z4MK38-F1-model_v4_TED01"],["TED%3AAF-A0A2Z4MPQ6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2Z4MPQ6-F1-model_v4_TED02"],["TED%3AAF-A0A517IGN3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A517IGN3-F1-model_v4_TED03"]],"b":[["alkaloids/ulbactin-f.yaml","ulbactin F"],["alkaloids/ulbactin-g.yaml","ulbactin G"],["amino_acids_and_peptides/gramicidin.yaml","gramicidin"],["amino_acids_and_peptides/tyrocidine-a.yaml","tyrocidine A"]]},{"id":"NCBITaxon:31958","l":"Amycolatopsis orientalis","na":5,"nb":4,"a":[["Pfam%3APF16990","Carbohydrate binding module (family 35)"],["Pfam%3APF14696","Hydroxyphenylpyruvate dioxygenase, HPPD, N-terminal"],["Pfam%3APF03559","NDP-hexose 2,3-dehydratase"],["Pfam%3APF18368","Exo-beta-D-glucosaminidase Ig-fold domain"],["TED%3AAF-K4FDK5-F1-model_v4_TED01","TED highly-symmetric fold AF-K4FDK5-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/chloroeremomycin.yaml","chloroeremomycin"],["amino_acids_and_peptides/vancomycin.yaml","vancomycin"],["polyketides/eco-0501.yaml","ECO-0501"],["polyketides/quartromicin-a1.yaml","quartromicin A1"]]},{"id":"NCBITaxon:3885","l":"Phaseolus vulgaris","na":4,"nb":5,"a":[["Pfam%3APF14829","Glycerol-3-phosphate acyltransferase N-terminal"],["PROSITE%3APS00281","Bowman-Birk serine protease inhibitors family signature"],["PROSITE%3APS00308","Legume lectins alpha-chain signature"],["MCSA%3A43","purple acid phosphatase"]],"b":[["alkaloids/biotin.yaml","biotin"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/ectoine.yaml","ectoine"],["fatty_acids/itaconic-acid.yaml","itaconic acid"],["unclassified/orcinol.yaml","orcinol"]]},{"id":"NCBITaxon:43","l":"Cystobacter fuscus","na":4,"nb":5,"a":[["TED%3AAF-A0A250J1A4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J1A4-F1-model_v4_TED01"],["TED%3AAF-A0A250J4G5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J4G5-F1-model_v4_TED01"],["TED%3AAF-A0A250J8W0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J8W0-F1-model_v4_TED01"],["TED%3AAF-A0A250J3K5-F1-model_v4_TED03","TED novel fold AF-A0A250J3K5-F1-model_v4_TED03"]],"b":[["amino_acids_and_peptides/cystomanamide-a.yaml","cystomanamide A"],["amino_acids_and_peptides/cystomanamide-b.yaml","cystomanamide B"],["amino_acids_and_peptides/cystomanamide-c.yaml","cystomanamide C"],["amino_acids_and_peptides/cystomanamide-d.yaml","cystomanamide D"],["unclassified/cystothiazole-a.yaml","cystothiazole A"]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":4,"nb":5,"a":[["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"],["PROSITE%3APS00896","LacY family proton/sugar symporters signature 1"],["PROSITE%3APS00897","LacY family proton/sugar symporters signature 2"],["MCSA%3A494","propanediol dehydratase"]],"b":[["alkaloids/9-deoxy-tilivalline.yaml","9-deoxy tilivalline"],["alkaloids/dehydro-tilivalline.yaml","dehydro tilivalline"],["alkaloids/dihydroxy-dehydro-tilivalline.yaml","dihydroxy-dehydro tilivalline"],["alkaloids/dihydroxy-tilivalline.yaml","dihydroxy tilivalline"],["alkaloids/tilivalline.yaml","tilivalline"]]},{"id":"NCBITaxon:48","l":"Archangium gephyra","na":4,"nb":4,"a":[["TED%3AAF-A0A0G2ZQX3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G2ZQX3-F1-model_v4_TED01"],["TED%3AAF-A0A0G3A8M9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G3A8M9-F1-model_v4_TED01"],["TED%3AAF-A0A2W5T6H4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2W5T6H4-F1-model_v4_TED03"],["TED%3AAF-A0A0G2ZR59-F1-model_v4_TED01","TED novel fold AF-A0A0G2ZR59-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/tubulysin-f.yaml","tubulysin F"],["amino_acids_and_peptides/tubulysin-g.yaml","tubulysin G"],["amino_acids_and_peptides/tubulysin-i.yaml","tubulysin I"],["polyketides/aurafuron-a.yaml","aurafuron A"]]},{"id":"UniProt:P00784","l":"","na":4,"nb":4,"a":[["EC%3A3.4.22.2","papain"],["MCSA%3A174","papain"],["proteintraitsmech%3ABIOLIP_ALD","ALD-binding site"],["proteintraitsmech%3AMETALPDB_RU_DINUCLEAR","dinuclear ruthenium site"]],"b":[["alkaloids/ergotamine.yaml","ergotamine"],["amino_acids_and_peptides/leupeptin-a.yaml","leupeptin A"],["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"],["terpenoids/carotene.yaml","β-carotene"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":17633,"nb":3,"a":[["EC%3A1.1.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.16.-.-","Oxidizing metal ions"],["EC%3A1.18.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.7.-","With an iron-sulfur protein as acceptor"]],"b":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"],["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"],["unclassified/telomestatin.yaml","telomestatin"]]},{"id":"NCBITaxon:9913","l":"Bos taurus","na":471,"nb":3,"a":[["IDPO%3A0000018","disorder to molten globule"],["IDPO%3A0000011","disorder to order"],["IDPO%3A0000019","disorder to pre-molten globule"],["IDPO%3A0000030","entropic chain"],["IDPO%3A0000003","molten globule"],["IDPO%3A0000014","order to disorder"]],"b":[["alkaloids/methylarcyriarubin.yaml","methylarcyriarubin"],["alkaloids/staurosporine-2.yaml","staurosporine"],["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"DOI:10.1023/B","l":"","na":31,"nb":3,"a":[["RHEA%3A14581","2 monodehydro-L-ascorbate radical + NADH + H(+) = 2 L-ascorbate + NAD(+)"],["RHEA%3A10780","(2R)-2-hydroxy-3-(4-hydroxyphenyl)propanoate + NAD(+) = 3-(4-hydroxyphenyl)pyruvate + NADH + H(+)"],["RHEA%3A10776","(2R)-2-hydroxy-3-(4-hydroxyphenyl)propanoate + NADP(+) = 3-(4-hydroxyphenyl)pyruvate + NADPH + H(+)"],["RHEA%3A57408","(2R)-3-(3,4-dihydroxyphenyl)lactate + NAD(+) = 3-(3,4-dihydroxyphenyl)pyruvate + NADH + H(+)"],["RHEA%3A57704","(2R)-3-(3,4-dihydroxyphenyl)lactate + NADP(+) = 3-(3,4-dihydroxyphenyl)pyruvate + NADPH + H(+)"],["RHEA%3A37923","(9Z,12Z,15Z)-octadecatrienoate + O2 = (8E,10S,12Z,15Z)-10-hydroperoxyoctadeca-8,12,15-trienoate"]],"b":[["alkaloids/pyochelin-i.yaml","pyochelin I"],["carbohydrates/tobramycin.yaml","tobramycin"],["polyketides/peloruside-a.yaml","peloruside A"]]},{"id":"NCBITaxon:451804","l":"Aspergillus fumigatus (strain CBS 144.89 / FGSC A1163 / CEA10)","na":28,"nb":3,"a":[["Pfam%3APF28347","ACE1 small beta sheet domain"],["Pfam%3APF28329","Zinc finger transcription factor ace1 N-terminal domain"],["Pfam%3APF11001","YDR124W-like, helical bundle domain"],["Pfam%3APF28457","Probable beta-glucosidase btgE N-terminal domain"],["Pfam%3APF13373","DSC E3 ubiquitin ligase complex subunit 3, C-terminal domain"],["Pfam%3APF10302","DSC E3 ubiquitin ligase complex subunit 3, ubiquitin-like domain"]],"b":[["terpenoids/21-h-hopane-3beta-22-diol.yaml","21-β-H-hopane-3beta, 22-diol"],["terpenoids/compound-3-3.yaml","compound 3"],["terpenoids/fumihopaside-a.yaml","fumihopaside A"]]},{"id":"NCBITaxon:33178","l":"Aspergillus terreus","na":3,"nb":22,"a":[["Pfam%3APF28386","BfoA family C-terminal domain"],["Pfam%3APF28387","BfoA N-terminal domain"],["Pfam%3APF12351","Ca2+ regulator and membrane fusion protein Fig1"]],"b":[["alkaloids/asterriquinone-ct5.yaml","asterriquinone CT5"],["alkaloids/cytochalasin-e.yaml","cytochalasin E"],["alkaloids/dihydroisoflavipucine.yaml","dihydroisoflavipucine"],["alkaloids/terrequinone-a.yaml","terrequinone A"],["amino_acids_and_peptides/valactamide-a.yaml","valactamide A"],["polyketides/citreoviridin.yaml","citreoviridin"]]},{"id":"NCBITaxon:332648","l":"Botrytis cinerea B05.10","na":3,"nb":21,"a":[["Pfam%3APF01670","Glycosyl hydrolase family 12"],["PROSITE%3APS00776","Glycosyl hydrolases family 11 (GH11) active site signature 1"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"]],"b":[["terpenoids/1-epibotrydial.yaml","1-epibotrydial"],["terpenoids/10-dehydroxy-dihydrobotrydialone.yaml","10-dehydroxy dihydrobotrydialone"],["terpenoids/10-epi-dihydrobotrydial.yaml","10-epi-dihydrobotrydial"],["terpenoids/10-oxo-dihydrobotrydial.yaml","10-Oxo-dihydrobotrydial"],["terpenoids/10-oxodehydrodihydrobotrydial.yaml","10-Oxodehydrodihydrobotrydial"],["terpenoids/10-oxodihydrobotry-1-9-4-5-diendial.yaml","10-Oxodihydrobotry-1(9),4(5)-diendial"]]},{"id":"NCBITaxon:54571","l":"Streptomyces venezuelae","na":3,"nb":21,"a":[["Pfam%3APF08990","Erythronolide synthase docking domain"],["TED%3AAF-A0A5P2CQV7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5P2CQV7-F1-model_v4_TED02"],["TED%3AAF-A0A5P2C5X4-F1-model_v4_TED01","TED novel fold AF-A0A5P2C5X4-F1-model_v4_TED01"]],"b":[["alkaloids/anthelvencin-a.yaml","anthelvencin A"],["alkaloids/anthelvencin-b.yaml","anthelvencin B"],["alkaloids/anthelvencin-c.yaml","anthelvencin C"],["alkaloids/chloramphenicol.yaml","chloramphenicol"],["alkaloids/corynecin-ii.yaml","corynecin II"],["alkaloids/gaburedin-d.yaml","gaburedin D"]]},{"id":"UniProt:P22303","l":"","na":21,"nb":3,"a":[["ComplexPortal%3ACPX-10631","-"],["ComplexPortal%3ACPX-11637","-"],["ComplexPortal%3ACPX-12676","-"],["ComplexPortal%3ACPX-14124","-"],["ComplexPortal%3ACPX-18577","-"],["ComplexPortal%3ACPX-24024","-"]],"b":[["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/physostigmine.yaml","physostigmine"],["unclassified/aflatoxin-b1.yaml","aflatoxin B1"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":3,"nb":20,"a":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF22041","Glutathione S-transferase, C-terminal domain"],["Pfam%3APF08493","Aflatoxin regulatory protein"]],"b":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/c-3-sulfonylated-derivative.yaml","C-3 sulfonylated derivative"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["alkaloids/n-n-dioxide-containing-derivate.yaml","N,N-dioxide containing derivate"]]},{"id":"NCBITaxon:3847","l":"Glycine max","na":19,"nb":3,"a":[["Pfam%3APF02095","Extensin-like protein"],["Pfam%3APF00477","Small hydrophilic plant seed protein"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF08027","Albumin I chain b"],["Pfam%3APF10539","Development and cell death domain"],["Pfam%3APF03386","Early nodulin 93 ENOD93 protein"]],"b":[["alkaloids/biotin.yaml","biotin"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":3,"nb":13,"a":[["Pfam%3APF14864","Alkyl sulfatase C-terminal"],["Pfam%3APF13816","Haem-containing dehydratase"],["Pfam%3APF14863","Alkyl sulfatase dimerisation"]],"b":[["unclassified/bananamide-d.yaml","bananamide D"],["unclassified/bananamide-e.yaml","bananamide E"],["unclassified/bananamide-f.yaml","bananamide F"],["unclassified/bananamide-g.yaml","bananamide G"],["unclassified/lokisin.yaml","lokisin"],["unclassified/pseudodesmin-a.yaml","pseudodesmin A"]]},{"id":"NCBITaxon:54","l":"Nannocystis exedens","na":13,"nb":3,"a":[["TED%3AAF-A0A1I2A5Z6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2A5Z6-F1-model_v4_TED01"],["TED%3AAF-A0A1I2FM38-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I2FM38-F1-model_v4_TED02"],["TED%3AAF-A0A1I2H0F9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2H0F9-F1-model_v4_TED01"],["TED%3AAF-A0A831ZMD9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A831ZMD9-F1-model_v4_TED01"],["TED%3AAF-A0A1I1T6U3-F1-model_v4_TED01","TED novel fold AF-A0A1I1T6U3-F1-model_v4_TED01"],["TED%3AAF-A0A1I1XLT5-F1-model_v4_TED02","TED novel fold AF-A0A1I1XLT5-F1-model_v4_TED02"]],"b":[["polyketides/phenylnannolone-a.yaml","phenylnannolone A"],["polyketides/phenylnannolone-b.yaml","phenylnannolone B"],["polyketides/phenylnannolone-c.yaml","phenylnannolone C"]]},{"id":"UniProt:Q8WZA2","l":"","na":3,"nb":10,"a":[["ComplexPortal%3ACPX-12363","-"],["CDD%3Acd04437","DEP_Epac"],["CATH%3A1.10.8.1240","CATH homologous superfamily 1.10.8.1240"]],"b":[["alkaloids/8-azaguanine.yaml","8-azaguanine"],["alkaloids/psilocybin.yaml","psilocybin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/actinonin.yaml","actinonin"],["amino_acids_and_peptides/thiostrepton.yaml","thiostrepton"],["carbohydrates/tobramycin.yaml","tobramycin"]]},{"id":"UniProt:Q9BV86","l":"","na":10,"nb":3,"a":[["ComplexPortal%3ACPX-14881","-"],["ComplexPortal%3ACPX-15959","-"],["ComplexPortal%3ACPX-20462","-"],["ComplexPortal%3ACPX-23498","-"],["GO%3A0071885","N-terminal protein N-methyltransferase activity"],["GO%3A0018013","N-terminal peptidyl-glycine methylation"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["polyketides/chlortetracycline.yaml","chlortetracycline"],["polyketides/kojic-acid.yaml","kojic acid"]]},{"id":"NCBITaxon:4081","l":"Solanum lycopersicum","na":9,"nb":3,"a":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF02977","Carboxypeptidase A inhibitor"],["Pfam%3APF26410","GH family 5 beta-mannosidase-like"],["Pfam%3APF02496","ABA/WDS induced protein"],["Pfam%3APF17302","Family of unknown function (DUF5351)"],["PROSITE%3APS00502","Polygalacturonase active site"]],"b":[["fatty_acids/falcarindiol.yaml","falcarindiol"],["terpenoids/lycosantalonol.yaml","lycosantalonol"],["terpenoids/phellandrene.yaml","β-phellandrene"]]},{"id":"NCBITaxon:1971","l":"Streptomyces noursei","na":3,"nb":8,"a":[["Pfam%3APF16715","Cyclodipeptide synthase"],["Pfam%3APF19585","Family of unknown function (DUF6092)"],["TED%3AAF-A0A2N8PAT0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N8PAT0-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/curacomycin.yaml","curacomycin"],["amino_acids_and_peptides/dechlorocuracomycin.yaml","dechlorocuracomycin"],["amino_acids_and_peptides/deimino-antipain.yaml","deimino-antipain"],["carbohydrates/streptothricin-f.yaml","streptothricin F"],["polyketides/nystatin-a1.yaml","nystatin A1"],["polyketides/nystatin.yaml","nystatin"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":8,"nb":3,"a":[["Pfam%3APF14525","AraC-binding-like domain"],["Pfam%3APF06139","BphX-like"],["Pfam%3APF13340","Putative transposase of IS4/5 family (DUF4096)"],["Pfam%3APF11794","4-hydroxyphenylacetate 3-hydroxylase N terminal"],["Pfam%3APF03241","4-hydroxyphenylacetate 3-hydroxylase C terminal"],["MCSA%3A482","2,2-dialkylglycine decarboxylase (pyruvate)"]],"b":[["alkaloids/cepaciachelin.yaml","cepaciachelin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["terpenoids/hopene.yaml","hopene"]]},{"id":"NCBITaxon:1833","l":"Rhodococcus erythropolis","na":7,"nb":3,"a":[["Pfam%3APF08028","Acyl-CoA dehydrogenase, C-terminal domain"],["Pfam%3APF13816","Haem-containing dehydratase"],["Pfam%3APF07858","Limonene-1,2-epoxide hydrolase catalytic domain"],["Pfam%3APF09663","Amidohydrolase ring-opening protein (Amido_AtzD_TrzD)"],["MCSA%3A361","aldoxime dehydratase"],["MCSA%3A644","limonene-1,2-epoxide hydrolase"]],"b":[["alkaloids/aurachin-re.yaml","aurachin RE"],["amino_acids_and_peptides/heterobactin-a.yaml","heterobactin A"],["amino_acids_and_peptides/heterobactin-s2.yaml","heterobactin S2"]]},{"id":"NCBITaxon:2021","l":"Thermobifida fusca","na":7,"nb":3,"a":[["Pfam%3APF00553","Cellulose binding domain"],["Pfam%3APF01341","Glycosyl hydrolases family 6"],["PROSITE%3APS00561","CBM2a (carbohydrate-binding type-2) domain signature"],["PROSITE%3APS00655","Glycosyl hydrolases family 6 signature 1"],["PROSITE%3APS00656","Glycosyl hydrolases family 6 signature 2"],["MCSA%3A559","cellulase (GH9)"]],"b":[["amino_acids_and_peptides/fuscachelin-a.yaml","Fuscachelin A"],["amino_acids_and_peptides/fuscachelin-b.yaml","Fuscachelin B"],["amino_acids_and_peptides/fuscachelin-c.yaml","Fuscachelin C"]]},{"id":"NCBITaxon:331117","l":"Aspergillus fischeri NRRL 181","na":3,"nb":7,"a":[["Pfam%3APF23681","ATP-dependent rRNA helicase SPB4-like, C-terminal tail"],["Pfam%3APF16803","Fe-S cluster assembly protein DRE2 N-terminus"],["Pfam%3APF02012","BNR/Asp-box repeat"]],"b":[["terpenoids/compound-5.yaml","compound 5"],["terpenoids/compound-6-2.yaml","compound 6"],["terpenoids/compound-7a.yaml","compound 7a"],["terpenoids/compound-8-2.yaml","compound 8"],["terpenoids/sesterfisheric-acid.yaml","sesterfisheric acid"],["terpenoids/sesterfisherol.yaml","sesterfisherol"]]},{"id":"NCBITaxon:1028729","l":"Fusarium pseudograminearum CS3096","na":3,"nb":6,"a":[["Pfam%3APF26087","Domain of unknown function (DUF8032)"],["Pfam%3APF05704","Capsular polysaccharide synthesis protein"],["TED%3AAF-K3V788-F1-model_v4_TED02","TED novel fold AF-K3V788-F1-model_v4_TED02"]],"b":[["alkaloids/8-oxo-fusatin.yaml","8-oxo-fusatin"],["alkaloids/8-oxo-isopentenyladenine.yaml","8-oxo-isopentenyladenine"],["alkaloids/fusatin.yaml","fusatin"],["alkaloids/fusatinic-acid.yaml","fusatinic acid"],["unclassified/w493-a.yaml","W493 A"],["unclassified/w493-b.yaml","W493 B"]]},{"id":"NCBITaxon:1894","l":"Kitasatospora aureofaciens","na":3,"nb":6,"a":[["Pfam%3APF01933","2-phospho-L-lactate transferase CofD"],["MCSA%3A459","guanyl-specific ribonuclease Sa"],["TED%3AAF-A0A1E7NF13-F1-model_v4_TED01","TED novel fold AF-A0A1E7NF13-F1-model_v4_TED01"]],"b":[["fatty_acids/triacsin-c.yaml","triacsin C"],["polyketides/auricin.yaml","auricin"],["polyketides/chlortetracycline.yaml","chlortetracycline"],["polyketides/lipomycin.yaml","α-lipomycin"],["polyketides/oxytetracycline.yaml","oxytetracycline"],["polyketides/venturicidin-a.yaml","venturicidin A"]]},{"id":"NCBITaxon:556","l":"Dickeya chrysanthemi","na":6,"nb":3,"a":[["Pfam%3APF18390","Glycogen debranching enzyme C-terminal domain"],["Pfam%3APF25994","AprE, long alpha-helical hairpin"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF03812","2-keto-3-deoxygluconate permease"],["Pfam%3APF09589","HrpA pilus formation protein"],["MCSA%3A896","pectate lyase C (polysaccharide lyase 1 family)"]],"b":[["amino_acids_and_peptides/chrysobactin.yaml","chrysobactin"],["amino_acids_and_peptides/dichrysobactin.yaml","dichrysobactin"],["unclassified/cyclic-trichrysobactin.yaml","cyclic trichrysobactin"]]},{"id":"DOI:10.1038/s41589-020-0541-x","l":"","na":3,"nb":5,"a":[["RHEA%3A85075","augustate + 3 reduced [NADPH--hemoprotein reductase] + 3 O2 = medicagenate + 3 oxidized [NADPH--hemoprotein reductase] + 4 H2O + 4 H(+)"],["RHEA%3A85079","medicagenate + UDP-alpha-D-glucuronate = 3-O-(beta-D-glucuronosyl)-medicagenate + UDP + H(+)"],["RHEA%3A85071","oleanolate + reduced [NADPH--hemoprotein reductase] + O2 = augustate + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["terpenoids/yossoside-i.yaml","Yossoside I"],["terpenoids/yossoside-ii.yaml","Yossoside II"],["terpenoids/yossoside-iii.yaml","Yossoside III"],["terpenoids/yossoside-iv.yaml","Yossoside IV"],["terpenoids/yossoside-v.yaml","Yossoside V"]]},{"id":"NCBITaxon:112509","l":"Hordeum vulgare subsp. vulgare","na":3,"nb":4,"a":[["IDPO%3A0000004","pre-molten globule"],["IEDB%3A227903","epitope AAFRTAATAADAA"],["MCSA%3A790","glucan 1,3-beta-glucosidase"]],"b":[["fatty_acids/diketones.yaml","β-Diketones"],["terpenoids/11-hydroxy-hordetriene.yaml","11-hydroxy-hordetriene"],["terpenoids/hordediene.yaml","hordediene"],["terpenoids/hordetriene.yaml","hordetriene"]]},{"id":"NCBITaxon:269800","l":"","na":4,"nb":3,"a":[["Pfam%3APF20628","Dyp-type peroxidase, C-terminal"],["Pfam%3APF04261","Dyp-type peroxidase, N-terminal"],["Pfam%3APF18374","Enolase N-terminal domain-like"],["PROSITE%3APS00909","Mandelate racemase / muconate lactonizing enzyme family signature 2"]],"b":[["amino_acids_and_peptides/fuscachelin-a.yaml","Fuscachelin A"],["amino_acids_and_peptides/fuscachelin-b.yaml","Fuscachelin B"],["amino_acids_and_peptides/fuscachelin-c.yaml","Fuscachelin C"]]},{"id":"NCBITaxon:306901","l":"","na":4,"nb":3,"a":[["Pfam%3APF07960","CBP4"],["TED%3AAF-Q2GNU1-F1-model_v4_TED01","TED highly-symmetric fold AF-Q2GNU1-F1-model_v4_TED01"],["TED%3AAF-Q2GZS7-F1-model_v4_TED01","TED novel fold AF-Q2GZS7-F1-model_v4_TED01"],["TED%3AAF-Q2H4N9-F1-model_v4_TED02","TED novel fold AF-Q2H4N9-F1-model_v4_TED02"]],"b":[["polyketides/11-epichaetomugilin-a.yaml","11-epichaetomugilin A"],["polyketides/chaetoviridin-e.yaml","chaetoviridin E"],["polyketides/shanorellin.yaml","shanorellin"]]},{"id":"NCBITaxon:33","l":"Myxococcus fulvus","na":4,"nb":3,"a":[["TED%3AAF-A0A511SVC1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A511SVC1-F1-model_v4_TED01"],["TED%3AAF-A0A511SU64-F1-model_v4_TED01","TED novel fold AF-A0A511SU64-F1-model_v4_TED01"],["TED%3AAF-A0A511T2U3-F1-model_v4_TED02","TED novel fold AF-A0A511T2U3-F1-model_v4_TED02"],["TED%3AAF-A0A511T9F8-F1-model_v4_TED05","TED novel fold AF-A0A511T9F8-F1-model_v4_TED05"]],"b":[["unclassified/fulvuthiacene-a.yaml","Fulvuthiacene A"],["unclassified/fulvuthiacene-b.yaml","Fulvuthiacene B"],["unclassified/myxothiazol.yaml","myxothiazol"]]},{"id":"NCBITaxon:34305","l":"Lotus japonicus","na":4,"nb":3,"a":[["Pfam%3APF06241","Castor and Pollux, part of voltage-gated ion channel"],["Pfam%3APF23654","E3 ubiquitin-protein ligase LIN-like, ARM repeat"],["Pfam%3APF23628","Putative E3 ubiquitin-protein ligase LIN, ARM-like domain"],["Pfam%3APF23568","E3 ubiquitin-protein ligase LIN-like, ARM repeat"]],"b":[["amino_acids_and_peptides/linamarin.yaml","linamarin"],["amino_acids_and_peptides/lotaustralin.yaml","lotaustralin"],["terpenoids/lupeol.yaml","lupeol"]]},{"id":"NCBITaxon:392500","l":"","na":3,"nb":4,"a":[["Pfam%3APF23763","GLAA-B beta-barrel domain I"],["TED%3AAF-B1KH33-F1-model_v4_TED01","TED novel fold AF-B1KH33-F1-model_v4_TED01"],["TED%3AAF-B1KQT1-F1-model_v4_TED01","TED novel fold AF-B1KQT1-F1-model_v4_TED01"]],"b":[["fatty_acids/woodybactin-d.yaml","woodybactin D"],["unclassified/woodybactin-a.yaml","woodybactin A"],["unclassified/woodybactin-b.yaml","woodybactin B"],["unclassified/woodybactin-c.yaml","woodybactin C"]]},{"id":"NCBITaxon:5544","l":"Trichoderma harzianum","na":4,"nb":3,"a":[["Pfam%3APF00840","Glycosyl hydrolase family 7"],["Pfam%3APF12708","Rhamnogalacturonase A/epimerase, pectate lyase-like"],["TED%3AAF-A0A0F9XDU3-F1-model_v4_TED01","TED novel fold AF-A0A0F9XDU3-F1-model_v4_TED01"],["TED%3AAF-A0A0G0ASL4-F1-model_v4_TED01","TED novel fold AF-A0A0G0ASL4-F1-model_v4_TED01"]],"b":[["polyketides/1-2-dehydropenicillide.yaml","1,2-dehydropenicillide"],["polyketides/harziphilone.yaml","harziphilone"],["unclassified/harzianopyridone.yaml","harzianopyridone"]]},{"id":"NCBITaxon:655844","l":"","na":3,"nb":4,"a":[["Pfam%3APF07110","EthD domain"],["Pfam%3APF09421","Frequency clock protein"],["TED%3AAF-A0A0B2XHY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0B2XHY6-F1-model_v4_TED01"]],"b":[["alkaloids/swainsonine.yaml","swainsonine"],["unclassified/destruxin-a.yaml","destruxin A"],["unclassified/subglutinol-a.yaml","subglutinol A"],["unclassified/subglutinol-b.yaml","subglutinol B"]]},{"id":"NCBITaxon:1003195","l":"","na":3,"nb":3,"a":[["Pfam%3APF23169","Halogenase D"],["Pfam%3APF02655","ATP-grasp domain"],["Pfam%3APF14518","Iron-containing redox enzyme"]],"b":[["amino_acids_and_peptides/cattlecin.yaml","cattlecin"],["amino_acids_and_peptides/ethynylserine.yaml","β-ethynylserine"],["terpenoids/cattleyene.yaml","cattleyene"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":3,"nb":3,"a":[["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF08130","Type A lantibiotic family"],["Pfam%3APF04738","Lantibiotic dehydratase, N terminus"]],"b":[["amino_acids_and_peptides/epidermin.yaml","epidermin"],["amino_acids_and_peptides/epilancin-15x.yaml","epilancin 15x"],["amino_acids_and_peptides/pep5.yaml","pep5"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":3,"nb":3,"a":[["Pfam%3APF03423","Carbohydrate binding domain (family 25)"],["Pfam%3APF03422","Carbohydrate binding module (family 6)"],["TED%3AAF-A0A7X5SGP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X5SGP7-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/polymyxin-b.yaml","polymyxin B"],["amino_acids_and_peptides/polymyxin.yaml","polymyxin"],["unclassified/fusaricidin-b.yaml","fusaricidin B"]]},{"id":"NCBITaxon:1961","l":"Streptomyces virginiae","na":3,"nb":3,"a":[["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF19328","2,4-diaminopentanoate dehydrogenase C-terminal domain"],["PROSITE%3APS01014","Transcription termination factor nusG signature"]],"b":[["alkaloids/endophenazine-a.yaml","endophenazine A"],["polyketides/monensin.yaml","monensin"],["unclassified/virginiamycin-s1.yaml","virginiamycin S1"]]},{"id":"NCBITaxon:216591","l":"Burkholderia cenocepacia J2315","na":3,"nb":3,"a":[["IEDB%3A230761","epitope FAKPAGTPM"],["IEDB%3A34250","epitope KVVRVDKL"],["Pfam%3APF04199","Putative cyclase"]],"b":[["unclassified/ornibactin-c4.yaml","ornibactin C4"],["unclassified/ornibactin-c6.yaml","ornibactin C6"],["unclassified/ornibactin-c8.yaml","ornibactin C8"]]},{"id":"NCBITaxon:384676","l":"","na":3,"nb":3,"a":[["Pfam%3APF18063","Beta barrel Pore-forming domain"],["Pfam%3APF08548","Peptidase M10 serralysin C terminal"],["TED%3AAF-Q1I2P2-F1-model_v4_TED01","TED novel fold AF-Q1I2P2-F1-model_v4_TED01"]],"b":[["alkaloids/labradorin-1.yaml","labradorin 1"],["alkaloids/labradorin-2.yaml","labradorin 2"],["alkaloids/pimprinine.yaml","pimprinine"]]},{"id":"NCBITaxon:448385","l":"","na":3,"nb":3,"a":[["TED%3AAF-A9FYP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A9FYP8-F1-model_v4_TED01"],["TED%3AAF-A9G932-F1-model_v4_TED01","TED highly-symmetric fold AF-A9G932-F1-model_v4_TED01"],["TED%3AAF-A9F9E5-F1-model_v4_TED01","TED novel fold AF-A9F9E5-F1-model_v4_TED01"]],"b":[["polyketides/etnangien.yaml","etnangien"],["polyketides/soraphen-a.yaml","soraphen A"],["terpenoids/eremophilene.yaml","(+)-eremophilene"]]},{"id":"NCBITaxon:45133","l":"Lasiodiplodia theobromae","na":3,"nb":3,"a":[["TED%3AAF-A0A5N5DCC3-F1-model_v4_TED01","TED novel fold AF-A0A5N5DCC3-F1-model_v4_TED01"],["TED%3AAF-A0A5N5DDT9-F1-model_v4_TED01","TED novel fold AF-A0A5N5DDT9-F1-model_v4_TED01"],["TED%3AAF-A0A5N5DLG2-F1-model_v4_TED02","TED novel fold AF-A0A5N5DLG2-F1-model_v4_TED02"]],"b":[["polyketides/lasiodiplodin.yaml","lasiodiplodin"],["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"],["shikimates_and_phenylpropanoids/mellein.yaml","(-)-Mellein"]]},{"id":"NCBITaxon:454130","l":"Aspergillus calidoustus","na":3,"nb":3,"a":[["Pfam%3APF28380","Sesquiterpene cyclase astC-like C-terminal domain"],["TED%3AAF-A0A0U5FXA2-F1-model_v4_TED01","TED novel fold AF-A0A0U5FXA2-F1-model_v4_TED01"],["TED%3AAF-A0A0U5GJ59-F1-model_v4_TED01","TED novel fold AF-A0A0U5GJ59-F1-model_v4_TED01"]],"b":[["terpenoids/calidoustene-a.yaml","calidoustene A"],["terpenoids/calidoustene-b.yaml","calidoustene B"],["terpenoids/calidoustene-c.yaml","calidoustene C"]]},{"id":"UniProt:P59594","l":"","na":3,"nb":3,"a":[["ComplexPortal%3ACPX-7088","SARS-CoV uncleaved Spike protein complex"],["proteintraitsmech%3AMEROPS_CLEAVAGE_S01_247","epitheliasin cleavage specificity"],["IDPO%3A0000048","limited proteolysis display site"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/linaclotide.yaml","linaclotide"],["carbohydrates/kanamycin-a.yaml","kanamycin A"]]},{"id":"NCBITaxon:559292","l":"Saccharomyces cerevisiae (strain ATCC 204508 / S288c)","na":14515,"nb":2,"a":[["EC%3A1.14.18.-","With another compound as one donor, and incorporation of one atom of oxygen"],["EC%3A1.16.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.18.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.5.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.8.-.-","Acting on a sulfur group of donors"]],"b":[["polyketides/kojic-acid.yaml","kojic acid"],["polyketides/radicicol.yaml","radicicol"]]},{"id":"NCBITaxon:224308","l":"Bacillus subtilis (strain 168)","na":11323,"nb":2,"a":[["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.10.3.-","With oxygen as acceptor"],["EC%3A1.13.12.-","With incorporation of one atom of oxygen (internal monooxygenases or internal mixed function oxidases)"],["EC%3A1.14.19.-","With oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water"],["EC%3A1.17.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.21.98.-","With other, known acceptors"]],"b":[["unclassified/corynebactin.yaml","corynebactin"],["unclassified/pulcherriminic-acid.yaml","pulcherriminic acid"]]},{"id":"UniProt:P37840","l":"","na":102,"nb":2,"a":[["ComplexPortal%3ACPX-22614","-"],["ComplexPortal%3ACPX-25548","-"],["GO%3A0030424","axon"],["GO%3A0043679","axon terminus"],["GO%3A0005938","cell cortex"],["GO%3A0030426","growth cone"]],"b":[["amino_acids_and_peptides/actinonin.yaml","actinonin"],["polyketides/sirolimus.yaml","sirolimus"]]},{"id":"NCBITaxon:93061","l":"Staphylococcus aureus (strain NCTC 8325 / PS 47)","na":47,"nb":2,"a":[["IDPO%3A0000033","flexible linker"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF07694","5TMR of 5TMR-LYT"],["Pfam%3APF01757","Acyltransferase domain"],["Pfam%3APF18719","ArlS sensor domain"],["Pfam%3APF02216","B domain"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["unclassified/staphyloferrin-a.yaml","staphyloferrin A"]]},{"id":"UniProt:P00519","l":"","na":42,"nb":2,"a":[["EC%3A2.7.10.2","non-specific protein-tyrosine kinase"],["ComplexPortal%3ACPX-20158","-"],["ComplexPortal%3ACPX-24443","-"],["ComplexPortal%3ACPX-24492","-"],["ComplexPortal%3ACPX-25676","-"],["GO%3A0000405","bubble DNA binding"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"],["polyketides/emodin.yaml","emodin"]]},{"id":"UniProt:P24941","l":"","na":34,"nb":2,"a":[["ComplexPortal%3ACPX-10673","-"],["ComplexPortal%3ACPX-11851","-"],["ComplexPortal%3ACPX-13027","-"],["ComplexPortal%3ACPX-15343","-"],["ComplexPortal%3ACPX-19796","-"],["ComplexPortal%3ACPX-21602","-"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"],["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:1912","l":"Streptomyces hygroscopicus","na":2,"nb":29,"a":[["Pfam%3APF21168","Chorismatase FkbO/Hyg5-like, N-terminal"],["TED%3AAF-A0A1S6RUT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S6RUT8-F1-model_v4_TED01"]],"b":[["alkaloids/9-methylstreptimidone.yaml","9-methylstreptimidone"],["alkaloids/indigoidine-2.yaml","indigoidine"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/cyclothiazomycin.yaml","cyclothiazomycin"],["amino_acids_and_peptides/eponemycin.yaml","eponemycin"],["amino_acids_and_peptides/himastatin.yaml","himastatin"]]},{"id":"UniProt:O15296","l":"","na":26,"nb":2,"a":[["ComplexPortal%3ACPX-11775","-"],["ComplexPortal%3ACPX-23490","-"],["ComplexPortal%3ACPX-25286","-"],["GO%3A0050473","arachidonate 15-lipoxygenase activity"],["GO%3A0036403","arachidonate 8(S)-lipoxygenase activity"],["GO%3A0016165","linoleate 13S-lipoxygenase activity"]],"b":[["amino_acids_and_peptides/polymyxin.yaml","polymyxin"],["polyketides/tautomycetin.yaml","tautomycetin"]]},{"id":"UniProt:P62937","l":"","na":26,"nb":2,"a":[["ComplexPortal%3ACPX-16615","-"],["ComplexPortal%3ACPX-25278","-"],["GO%3A1904813","ficolin-1-rich granule lumen"],["GO%3A0016018","cyclosporin A binding"],["GO%3A1904399","heparan sulfate binding"],["GO%3A0003755","peptidyl-prolyl cis-trans isomerase activity"]],"b":[["amino_acids_and_peptides/cyclosporin-a.yaml","cyclosporin A"],["amino_acids_and_peptides/sanglifehrin-a.yaml","sanglifehrin A"]]},{"id":"UniProt:P06276","l":"","na":23,"nb":2,"a":[["ComplexPortal%3ACPX-12760","-"],["ComplexPortal%3ACPX-18032","-"],["ComplexPortal%3ACPX-20651","-"],["ComplexPortal%3ACPX-21068","-"],["ComplexPortal%3ACPX-21174","-"],["ComplexPortal%3ACPX-21255","-"]],"b":[["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/physostigmine.yaml","physostigmine"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":21,"nb":2,"a":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF28265","Lipoprotein N-acylation protein LnsA-like"],["Pfam%3APF16403","Bacterial surface protein, Ig-like domain"],["Pfam%3APF03944","delta endotoxin"],["Pfam%3APF03945","delta endotoxin, N-terminal domain"],["IEDB%3A125782","epitope CLRIPMTDK"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["unclassified/andalusicin-a.yaml","andalusicin A"]]},{"id":"UniProt:P07203","l":"","na":21,"nb":2,"a":[["ComplexPortal%3ACPX-13707","-"],["ComplexPortal%3ACPX-15014","-"],["ComplexPortal%3ACPX-20814","-"],["ComplexPortal%3ACPX-20823","-"],["ComplexPortal%3ACPX-23329","-"],["ComplexPortal%3ACPX-23744","-"]],"b":[["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"],["unclassified/beauvericin.yaml","beauvericin"]]},{"id":"UniProt:P63092","l":"","na":21,"nb":2,"a":[["GO%3A0005834","heterotrimeric G-protein complex"],["GO%3A0010856","adenylate cyclase activator activity"],["GO%3A0031748","D1 dopamine receptor binding"],["GO%3A0031683","G-protein beta/gamma-subunit complex binding"],["GO%3A0007190","activation of adenylate cyclase activity"],["GO%3A0038184","adenylate cyclase-activating G protein-coupled bile acid receptor signaling pathway"]],"b":[["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"]]},{"id":"NCBITaxon:176299","l":"Agrobacterium fabrum (strain C58 / ATCC 33970)","na":19,"nb":2,"a":[["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF28403","Aconitase X second domain"],["Pfam%3APF28406","Aconitase X third domain"],["Pfam%3APF04412","Aconitase X first domain"],["Pfam%3APF01989","Aconitase X swivel domain"]],"b":[["amino_acids_and_peptides/fabrubactin-a.yaml","fabrubactin A"],["amino_acids_and_peptides/fabrubactin-b.yaml","fabrubactin B"]]},{"id":"NCBITaxon:455632","l":"Streptomyces griseus subsp. griseus NBRC 13350","na":2,"nb":17,"a":[["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["PROSITE%3APS01311","Prolipoprotein diacylglyceryl transferase signature"]],"b":[["alkaloids/grixazone-a.yaml","grixazone A"],["alkaloids/iminimycin-a.yaml","iminimycin A"],["alkaloids/iminimycin-b.yaml","iminimycin B"],["alkaloids/melanin.yaml","melanin"],["carbohydrates/streptomycin.yaml","streptomycin"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":17,"nb":2,"a":[["Pfam%3APF05932","Tir chaperone protein (CesT) family"],["Pfam%3APF17656","FlgA N-terminal domain"],["Pfam%3APF22200","ExsA N-terminal regulatory domain"],["Pfam%3APF05171","Haemin-degrading HemS.ChuX domain"],["Pfam%3APF07201","HrpJ-like domain"],["Pfam%3APF04391","Protein of unknown function (DUF533)"]],"b":[["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["alkaloids/yersiniabactin.yaml","yersiniabactin"]]},{"id":"NCBITaxon:1360","l":"Lactococcus lactis subsp. lactis","na":16,"nb":2,"a":[["Pfam%3APF08951","Bacteriocin immunity protein family"],["Pfam%3APF08998","Bacterial epsilon antitoxin"],["Pfam%3APF25887","LcnD-like, long helical bundle domain"],["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF25940","LcnD-like, C-terminal domain"],["Pfam%3APF08129","Alpha/beta enterocin family"]],"b":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"],["amino_acids_and_peptides/nisin-a.yaml","nisin A"]]},{"id":"DOI:10.1080/09168451.2018.1553605","l":"","na":15,"nb":2,"a":[["NCBIfam%3ANF041231","AfsR/SARP family transcriptional regulator BagI/FevR"],["NCBIfam%3ANF041224","bagremycin/ferroverdin biosynthesis 3,4-AHBA synthase BagC/FevH"],["NCBIfam%3ANF041221","bagremycin/ferroverdin biosynthesis copper chaperon BagZ/FevE"],["NCBIfam%3ANF041223","bagremycin/ferroverdin biosynthesis DhnA-type aldolase BagB/FevI"],["NCBIfam%3ANF041227","bagremycin/ferroverdin biosynthesis FAD-dependent oxygenase BagG/FevA2"],["NCBIfam%3ANF041226","bagremycin/ferroverdin biosynthesis FAD-dependent oxygenase BagK/FevA1"]],"b":[["shikimates_and_phenylpropanoids/bagremycin-a.yaml","bagremycin A"],["shikimates_and_phenylpropanoids/bagremycin-b.yaml","bagremycin B"]]},{"id":"NCBITaxon:29488","l":"Photorhabdus luminescens","na":2,"nb":14,"a":[["Pfam%3APF02273","Acyl transferase"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"]],"b":[["alkaloids/photobactin.yaml","photobactin"],["alkaloids/pzn5.yaml","PZN5"],["amino_acids_and_peptides/gamexpeptide-c.yaml","gamexpeptide C"],["amino_acids_and_peptides/glidobactin.yaml","glidobactin"],["amino_acids_and_peptides/luminmycin-a.yaml","luminmycin A"],["polyketides/photopyrone-a.yaml","photopyrone A"]]},{"id":"NCBITaxon:759273","l":"Colletotrichum higginsianum IMI 349063","na":2,"nb":14,"a":[["TED%3AAF-A0A1B7Y9H0-F1-model_v4_TED01","TED novel fold AF-A0A1B7Y9H0-F1-model_v4_TED01"],["TED%3AAF-H1V1S2-F1-model_v4_TED01","TED novel fold AF-H1V1S2-F1-model_v4_TED01"]],"b":[["shikimates_and_phenylpropanoids/colletorin-d-acid.yaml","Colletorin D acid"],["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"],["unclassified/13-epi-higginsianin-c.yaml","13-epi-higginsianin C"],["unclassified/colletochlorin-a.yaml","Colletochlorin A"],["unclassified/colletochlorin-b.yaml","Colletochlorin B"],["unclassified/colletochlorin-d.yaml","Colletochlorin D"]]},{"id":"NCBITaxon:271848","l":"Burkholderia thailandensis E264","na":2,"nb":12,"a":[["Pfam%3APF12091","Protein of unknown function (DUF3567)"],["Pfam%3APF01075","Glycosyltransferase family 9 (heptosyltransferase)"]],"b":[["alkaloids/malleobactin-b.yaml","malleobactin B"],["alkaloids/malleobactin-d.yaml","malleobactin D"],["polyketides/malleicyprol.yaml","malleicyprol"],["polyketides/malleilactone.yaml","malleilactone"],["polyketides/thailandamide-lactone.yaml","thailandamide lactone"],["polyketides/thailandamide.yaml","thailandamide"]]},{"id":"NCBITaxon:1111077","l":"Claviceps purpurea 20.1","na":2,"nb":11,"a":[["Pfam%3APF28338","AclK C-terminal domain"],["TED%3AAF-M1W301-F1-model_v4_TED01","TED highly-symmetric fold AF-M1W301-F1-model_v4_TED01"]],"b":[["alkaloids/ergotamine.yaml","ergotamine"],["polyketides/clavorubin.yaml","Clavorubin"],["polyketides/endocrocin.yaml","endocrocin"],["polyketides/o-orsellinate-depside.yaml","o-orsellinate depside"],["polyketides/secalonic-acid-a.yaml","Secalonic acid A"],["polyketides/secalonic-acid-b.yaml","Secalonic acid B"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":11,"nb":2,"a":[["Pfam%3APF22829","HphA C-terminal domain"],["Pfam%3APF22828","HphA N-terminal heme-binding domain"],["Pfam%3APF28205","Ciprofloxacin tolerance protein"],["Pfam%3APF19582","Solute-binding protein AdeT 1/2"],["PROSITE%3APS00337","Beta-lactamase class-D active site"],["Pfam%3APF24575","Surface lipoprotein assembly modifier, N-terminal TPR repeats"]],"b":[["alkaloids/acinetobactin.yaml","acinetobactin"],["amino_acids_and_peptides/fimsbactin-a.yaml","fimsbactin A"]]},{"id":"UniProt:P11802","l":"","na":11,"nb":2,"a":[["ComplexPortal%3ACPX-10673","-"],["ComplexPortal%3ACPX-18434","-"],["ComplexPortal%3ACPX-20361","-"],["ComplexPortal%3ACPX-21602","-"],["ComplexPortal%3ACPX-26168","-"],["ComplexPortal%3ACPX-2010","Cyclin D1-CDK4 complex"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"],["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:455432","l":"Nocardia terpenica","na":2,"nb":10,"a":[["TED%3AAF-A0A6G9ZDY9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6G9ZDY9-F1-model_v4_TED01"],["TED%3AAF-A0A164L9V7-F1-model_v4_TED03","TED novel fold AF-A0A164L9V7-F1-model_v4_TED03"]],"b":[["amino_acids_and_peptides/nocapeptin-a.yaml","nocapeptin A"],["amino_acids_and_peptides/nocathioamide-a.yaml","nocathioamide A"],["polyketides/brasilinolide-a.yaml","brasilinolide A"],["polyketides/brasilinolide-b.yaml","brasilinolide B"],["polyketides/brasilinolide-c.yaml","brasilinolide C"],["polyketides/terpenomycin.yaml","terpenomycin"]]},{"id":"NCBITaxon:1159556","l":"Ustilaginoidea virens","na":2,"nb":9,"a":[["Pfam%3APF06966","Protein of unknown function (DUF1295)"],["TED%3AAF-A0A1B5L5W2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1B5L5W2-F1-model_v4_TED03"]],"b":[["amino_acids_and_peptides/ustiloxin-b.yaml","ustiloxin B"],["polyketides/ustilaginoidin-a.yaml","ustilaginoidin A"],["polyketides/ustilaginoidin-d.yaml","ustilaginoidin D"],["polyketides/ustilaginoidin-e.yaml","ustilaginoidin E"],["polyketides/ustilaginoidin-f.yaml","ustilaginoidin F"],["polyketides/ustilaginoidin-g.yaml","ustilaginoidin G"]]},{"id":"NCBITaxon:158878","l":"Staphylococcus aureus (strain Mu50 / ATCC 700699)","na":9,"nb":2,"a":[["Pfam%3APF26317","Histidine racemase CntK N-terminal domain"],["Pfam%3APF13610","DDE domain"],["Pfam%3APF12199","Extracellular fibrinogen binding protein C terminal"],["Pfam%3APF26323","Staphylococcus aureus type VII secretion system substrate EsxC"],["Pfam%3APF19776","Family of unknown function (DUF6262)"],["Pfam%3APF27790","Poly-beta-1,6-N-acetyl-D-glucosamine synthesis protein IcaD"]],"b":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"]]},{"id":"NCBITaxon:57975","l":"Burkholderia thailandensis","na":2,"nb":9,"a":[["TED%3AAF-A0A7Z8HH79-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Z8HH79-F1-model_v4_TED01"],["TED%3AAF-A0A7Z8HK43-F1-model_v4_TED01","TED novel fold AF-A0A7Z8HK43-F1-model_v4_TED01"]],"b":[["fatty_acids/fr901464.yaml","FR901464"],["polyketides/malleicyprol.yaml","malleicyprol"],["polyketides/thailandamide-lactone.yaml","thailandamide lactone"],["polyketides/thailandamide.yaml","thailandamide"],["polyketides/thailanstatin-a.yaml","thailanstatin A"],["shikimates_and_phenylpropanoids/bactobolin.yaml","bactobolin"]]},{"id":"UniProt:P11309","l":"","na":9,"nb":2,"a":[["ComplexPortal%3ACPX-11827","-"],["ComplexPortal%3ACPX-16792","-"],["ComplexPortal%3ACPX-21719","-"],["ComplexPortal%3ACPX-26168","-"],["GO%3A1905062","positive regulation of cardioblast proliferation"],["GO%3A1905701","positive regulation of xenobiotic detoxification by transmembrane export across the plasma membrane"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"],["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"DOI:10.1021/cb400541z","l":"","na":8,"nb":2,"a":[["RHEA%3A73919","2-(2,4-dihydroxy-6-oxidobenzoyl)-5-hydroxy-3-methylbenzenolate + H(+) = norlichexanthone + H2O"],["RHEA%3A73923","2-(2,4-dihydroxy-6-oxidobenzoyl)-5-hydroxy-3-methylbenzenolate + S-adenosyl-L-methionine = griseophenone D + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A73915","6 malonyl-CoA + acetyl-CoA + 4 H(+) = 2-(2,4-dihydroxy-6-oxidobenzoyl)-5-hydroxy-3-methylbenzenolate + 6 CO2 + 7 CoA + H2O"],["RHEA%3A73943","dehydrogriseofulvin + NADPH + H(+) = griseofulvin + NADP(+)"],["RHEA%3A73939","desmethyl-dehydrogriseofulvin + S-adenosyl-L-methionine = dehydrogriseofulvin + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A73935","griseophenone B + reduced [NADPH--hemoprotein reductase] + O2 + H(+) = desmethyl-dehydrogriseofulvin + oxidized [NADPH--hemoprotein reductase] + 2 H2O"]],"b":[["polyketides/epidechlorogriseofulvin.yaml","epidechlorogriseofulvin"],["polyketides/griseofulvin.yaml","griseofulvin"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":8,"nb":2,"a":[["Pfam%3APF01890","Cobalamin synthesis G C-terminus"],["Pfam%3APF11761","Cobalamin biosynthesis central region"],["Pfam%3APF11760","Cobalamin synthesis G N-terminal"],["Pfam%3APF02570","Precorrin-8X methylmutase"],["PROSITE%3APS00304","Small, acid-soluble spore proteins, alpha/beta type, signature 1"],["PROSITE%3APS00684","Small, acid-soluble spore proteins, alpha/beta type, signature 2"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"],["carbohydrates/oxetanocin-a.yaml","oxetanocin A"]]},{"id":"NCBITaxon:1908","l":"Streptomyces globisporus","na":2,"nb":8,"a":[["PROSITE%3APS00953","Glycosyl hydrolases family 25 active site signature"],["MCSA%3A245","tyrosine 2,3-aminomutase"]],"b":[["polyketides/c-1027-chromophore.yaml","C-1027 chromophore"],["polyketides/c-1027.yaml","C-1027"],["polyketides/landomycin-a.yaml","landomycin A"],["polyketides/nonactin.yaml","nonactin"],["polyketides/prejadomycin.yaml","prejadomycin"],["polyketides/tetranactin.yaml","tetranactin"]]},{"id":"NCBITaxon:303698","l":"Penicillium steckii","na":2,"nb":8,"a":[["TED%3AAF-A0A1V6TCF9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1V6TCF9-F1-model_v4_TED03"],["TED%3AAF-A0A1V6U0I0-F1-model_v4_TED02","TED novel fold AF-A0A1V6U0I0-F1-model_v4_TED02"]],"b":[["unclassified/adametizine-a.yaml","adametizine A"],["unclassified/fa2097.yaml","FA2097"],["unclassified/outovirin-a.yaml","outovirin A"],["unclassified/outovirin-c.yaml","outovirin C"],["unclassified/penigainamide-a.yaml","penigainamide A"],["unclassified/penigainamide-b.yaml","penigainamide B"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":8,"nb":2,"a":[["Pfam%3APF19443","DAHL domain"],["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"],["Pfam%3APF03524","Conjugal transfer protein"],["Pfam%3APF27439","Chaperone protein DnaJ C-terminal region"],["Pfam%3APF10907","Protein of unknown function (DUF2749)"],["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]],"b":[["alkaloids/agrobactin.yaml","agrobactin"],["amino_acids_and_peptides/aztreonam.yaml","aztreonam"]]},{"id":"DOI:10.1073/pnas.1501124112","l":"","na":2,"nb":7,"a":[["NCBIfam%3ANF039717","DUF6292 family protein"],["InterPro%3AIPR046259","Domain of unknown function DUF6292"]],"b":[["amino_acids_and_peptides/clarexpoxcin-a.yaml","Clarexpoxcin A"],["amino_acids_and_peptides/clarexpoxcin-b.yaml","Clarexpoxcin B"],["amino_acids_and_peptides/clarexpoxcin-c.yaml","Clarexpoxcin C"],["amino_acids_and_peptides/clarexpoxcin-d.yaml","Clarexpoxcin D"],["amino_acids_and_peptides/clarexpoxcin-e.yaml","Clarexpoxcin E"],["polyketides/isofuranonaphthoquinone-c.yaml","Isofuranonaphthoquinone C"]]},{"id":"NCBITaxon:119927","l":"Alternaria tenuissima","na":7,"nb":2,"a":[["TED%3AAF-A0A4Q4MR18-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q4MR18-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4M1N1-F1-model_v4_TED01","TED novel fold AF-A0A4Q4M1N1-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4M2G6-F1-model_v4_TED01","TED novel fold AF-A0A4Q4M2G6-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4MJL0-F1-model_v4_TED01","TED novel fold AF-A0A4Q4MJL0-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4PGY1-F1-model_v4_TED01","TED novel fold AF-A0A4Q4PGY1-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4RTT0-F1-model_v4_TED01","TED novel fold AF-A0A4Q4RTT0-F1-model_v4_TED01"]],"b":[["polyketides/patulin.yaml","patulin"],["polyketides/solanapyrone-a.yaml","solanapyrone A"]]},{"id":"NCBITaxon:1279085","l":"Fusarium fujikuroi IMI 58289","na":2,"nb":7,"a":[["Pfam%3APF12585","Virulence factor CipC-like"],["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"]],"b":[["polyketides/bikaverin.yaml","bikaverin"],["polyketides/fujikurin-c.yaml","fujikurin C"],["polyketides/fujikurin-d.yaml","fujikurin D"],["polyketides/gibepyrone-a.yaml","gibepyrone A"],["terpenoids/acorenol.yaml","α-acorenol"],["terpenoids/koraiol.yaml","koraiol"]]},{"id":"NCBITaxon:1380566","l":"Pochonia chlamydosporia 170","na":2,"nb":7,"a":[["TED%3AAF-A0A179FUG8-F1-model_v4_TED01","TED novel fold AF-A0A179FUG8-F1-model_v4_TED01"],["TED%3AAF-A0A179FWH3-F1-model_v4_TED01","TED novel fold AF-A0A179FWH3-F1-model_v4_TED01"]],"b":[["polyketides/monocillin-ii.yaml","monocillin II"],["polyketides/monocillin-iv.yaml","monocillin IV"],["polyketides/monocillin-v.yaml","monocillin V"],["polyketides/monocillin-vi.yaml","monocillin VI"],["polyketides/monocillin-vii.yaml","monocillin VII"],["polyketides/monorden-d.yaml","monorden D"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":7,"nb":2,"a":[["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF03744","6-carboxyhexanoate--CoA ligase"],["PROSITE%3APS00836","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 1"],["PROSITE%3APS00837","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 2"],["MCSA%3A241","penicillin amidase (peptidase C59 family)"],["TED%3AAF-A0A2S5D092-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5D092-F1-model_v4_TED01"]],"b":[["alkaloids/biotin.yaml","biotin"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:405948","l":"","na":2,"nb":7,"a":[["Pfam%3APF21036","Erythromycin biosynthesis protein CIII-like, N-terminal domain"],["MCSA%3A694","6-deoxyerythronolide B hydroxylase"]],"b":[["amino_acids_and_peptides/erythrochelin.yaml","erythrochelin"],["polyketides/erythromycin-a.yaml","erythromycin A"],["polyketides/erythromycin-b.yaml","erythromycin B"],["polyketides/erythromycin-c.yaml","erythromycin C"],["polyketides/erythromycin-d.yaml","erythromycin D"],["polyketides/flaviolin.yaml","flaviolin"]]},{"id":"DOI:10.1021/jacs.5b08319","l":"","na":2,"nb":6,"a":[["RHEA%3A54068","(2E,6E,10E,14E)-geranylfarnesyl diphosphate + H2O = sesterfisherol + diphosphate"],["RHEA%3A78407","sesterfisherol + 3 reduced [NADPH--hemoprotein reductase] + 3 O2 = sesterfisherate + 3 oxidized [NADPH--hemoprotein reductase] + 4 H2O + 4 H(+)"]],"b":[["terpenoids/compound-5.yaml","compound 5"],["terpenoids/compound-6-2.yaml","compound 6"],["terpenoids/compound-7a.yaml","compound 7a"],["terpenoids/compound-8-2.yaml","compound 8"],["terpenoids/sesterfisheric-acid.yaml","sesterfisheric acid"],["terpenoids/sesterfisherol.yaml","sesterfisherol"]]},{"id":"NCBITaxon:321","l":"Pseudomonas syringae pv. syringae","na":6,"nb":2,"a":[["Pfam%3APF03421","YopJ Serine/Threonine acetyltransferase"],["Pfam%3APF17914","HopA1 effector protein family"],["Pfam%3APF27361","HrcQa N-terminal domain"],["Pfam%3APF04877","HrpZ"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]],"b":[["amino_acids_and_peptides/3-methylarginine.yaml","3-methylarginine"],["unclassified/syringopeptin-25a.yaml","syringopeptin 25A"]]},{"id":"NCBITaxon:5082","l":"Penicillium roqueforti","na":2,"nb":6,"a":[["Pfam%3APF07573","Nitrogen regulatory protein AreA N terminus"],["MCSA%3A261","aristolochene synthase"]],"b":[["alkaloids/mycophenolic-acid-2.yaml","mycophenolic acid"],["polyketides/mycophenolic-acid.yaml","mycophenolic acid"],["terpenoids/pr-toxin.yaml","PR-toxin"],["unclassified/andrastin-a.yaml","andrastin A"],["unclassified/roquefortine-c.yaml","roquefortine C"],["unclassified/roquefortine-d.yaml","roquefortine D"]]},{"id":"NCBITaxon:52","l":"Chondromyces crocatus","na":2,"nb":6,"a":[["TED%3AAF-A0A0K1ER44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0K1ER44-F1-model_v4_TED01"],["TED%3AAF-A0A0K1E854-F1-model_v4_TED01","TED novel fold AF-A0A0K1E854-F1-model_v4_TED01"]],"b":[["polyketides/chondrochloren-a.yaml","chondrochloren A"],["polyketides/cmc-thuggacin-a.yaml","Cmc-thuggacin A"],["polyketides/crocacin.yaml","crocacin"],["shikimates_and_phenylpropanoids/ajudazol-a.yaml","ajudazol A"],["unclassified/chondramide-a.yaml","chondramide A"],["unclassified/cmc-thuggacin-b.yaml","Cmc-thuggacin B"]]},{"id":"DOI:10.1023/A","l":"","na":5,"nb":2,"a":[["RHEA%3A24780","C-13(2)-carboxypyropheophorbide a + H(+) = pyropheophorbide a + CO2"],["RHEA%3A24776","pheophorbide a + H2O = C-13(2)-carboxypyropheophorbide a + methanol"],["RHEA%3A32483","pheophorbide a + H2O + H(+) = pyropheophorbide a + methanol + CO2"],["InterPro%3AIPR006151","Quinate/shikimate 5-dehydrogenase/glutamyl-tRNA reductase"],["InterPro%3AIPR036559","Bacteriochlorophyll A superfamily"]],"b":[["carbohydrates/lincomycin.yaml","lincomycin"],["terpenoids/culmorin.yaml","culmorin"]]},{"id":"DOI:10.1128/AEM.01172-14","l":"","na":5,"nb":2,"a":[["RHEA%3A78823","(3R)-5-guanidino-3-methyl-2-oxopentanoate + L-aspartate = (3R)-3-methyl-L-arginine + oxaloacetate"],["RHEA%3A32663","5-guanidino-2-oxopentanoate + S-adenosyl-L-methionine = (3R)-5-guanidino-3-methyl-2-oxopentanoate + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A78819","L-arginine + 2-oxoglutarate = 5-guanidino-2-oxopentanoate + L-glutamate"],["NCBIfam%3ATIGR04543","2-ketoarginine methyltransferase"],["NCBIfam%3ATIGR04544","beta-methylarginine biosynthesis bifunctional aminotransferase"]],"b":[["carbohydrates/arginomycin.yaml","arginomycin"],["carbohydrates/blasticidin-s.yaml","blasticidin S"]]},{"id":"NCBITaxon:220664","l":"","na":2,"nb":5,"a":[["Pfam%3APF18089","DAPG hydrolase PhiG domain"],["MCSA%3A269","muconate cycloisomerase (syn)"]],"b":[["alkaloids/pyoluteorin.yaml","pyoluteorin"],["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"],["unclassified/orfamide-a.yaml","orfamide A"],["unclassified/orfamide-c.yaml","orfamide C"],["unclassified/pf-5-pyoverdine.yaml","Pf-5 pyoverdine"]]},{"id":"NCBITaxon:2795974","l":"Stieleria maiorica","na":2,"nb":5,"a":[["TED%3AAF-A0A5B9MHL4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5B9MHL4-F1-model_v4_TED02"],["TED%3AAF-A0A5B9MK37-F1-model_v4_TED03","TED novel fold AF-A0A5B9MK37-F1-model_v4_TED03"]],"b":[["alkaloids/stieleriacine-a1.yaml","stieleriacine A1"],["alkaloids/stieleriacine-a2.yaml","stieleriacine A2"],["fatty_acids/stieleriacine-c.yaml","stieleriacine C"],["unclassified/stieleriacine-b1.yaml","stieleriacine B1"],["unclassified/stieleriacine-b2.yaml","stieleriacine B2"]]},{"id":"NCBITaxon:305","l":"Ralstonia solanacearum","na":5,"nb":2,"a":[["Pfam%3APF14897","EpsG family"],["TED%3AAF-A0A7I8FQZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7I8FQZ6-F1-model_v4_TED01"],["TED%3AAF-A0A7H1MI34-F1-model_v4_TED01","TED novel fold AF-A0A7H1MI34-F1-model_v4_TED01"],["TED%3AAF-A0A7I8FKL4-F1-model_v4_TED01","TED novel fold AF-A0A7I8FKL4-F1-model_v4_TED01"],["TED%3AAF-A0A850FKB0-F1-model_v4_TED01","TED novel fold AF-A0A850FKB0-F1-model_v4_TED01"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"],["unclassified/micacocidin.yaml","micacocidin"]]},{"id":"NCBITaxon:380704","l":"Aspergillus niger ATCC 1015","na":2,"nb":5,"a":[["Pfam%3APF28387","BfoA N-terminal domain"],["MCSA%3A480","polygalacturonase"]],"b":[["polyketides/azanigerone-a.yaml","azanigerone A"],["polyketides/campyrone-b.yaml","campyrone B"],["polyketides/pyranonigrin-e.yaml","pyranonigrin E"],["polyketides/pyrophen.yaml","pyrophen"],["terpenoids/yanuthone-d.yaml","yanuthone D"]]},{"id":"NCBITaxon:394096","l":"Hyalangium minutum","na":5,"nb":2,"a":[["TED%3AAF-A0A085W4M3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085W4M3-F1-model_v4_TED01"],["TED%3AAF-A0A085WRA7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085WRA7-F1-model_v4_TED01"],["TED%3AAF-A0A085WWM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085WWM4-F1-model_v4_TED01"],["TED%3AAF-A0A085W7S5-F1-model_v4_TED03","TED novel fold AF-A0A085W7S5-F1-model_v4_TED03"],["TED%3AAF-A0A085WH04-F1-model_v4_TED01","TED novel fold AF-A0A085WH04-F1-model_v4_TED01"]],"b":[["polyketides/nystatin-a1.yaml","nystatin A1"],["unclassified/myxochromide-d-2.yaml","myxochromide D"]]},{"id":"NCBITaxon:5270","l":"","na":5,"nb":2,"a":[["Pfam%3APF17445","Mating factor A1"],["Pfam%3APF24563","Mug60/KHD4 KH type I domain"],["IEDB%3A126316","epitope IPVHPRHPY"],["Pfam%3APF01185","Fungal hydrophobin"],["Pfam%3APF07460","NUMOD3 motif"]],"b":[["fatty_acids/itaconic-acid.yaml","itaconic acid"],["fatty_acids/ustilagic-acid.yaml","ustilagic acid"]]},{"id":"NCBITaxon:193462","l":"Streptomyces niveus","na":2,"nb":4,"a":[["Pfam%3APF16861","Carbamoyltransferase C-terminus"],["Pfam%3APF02543","Carbamoyltransferase N-terminus"]],"b":[["alkaloids/phenaziterpene-a.yaml","phenaziterpene A"],["carbohydrates/kanamycin-a.yaml","kanamycin A"],["shikimates_and_phenylpropanoids/cathomycin.yaml","cathomycin"],["unclassified/be-14106.yaml","BE-14106"]]},{"id":"NCBITaxon:394095","l":"Pyxidicoccus fallax","na":4,"nb":2,"a":[["TED%3AAF-A0A848LUK3-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A848LUK3-F1-model_v4_TED04"],["TED%3AAF-A0A848LF16-F1-model_v4_TED01","TED novel fold AF-A0A848LF16-F1-model_v4_TED01"],["TED%3AAF-A0A848LFV1-F1-model_v4_TED03","TED novel fold AF-A0A848LFV1-F1-model_v4_TED03"],["TED%3AAF-A0A848LG55-F1-model_v4_TED01","TED novel fold AF-A0A848LG55-F1-model_v4_TED01"]],"b":[["polyketides/gulmirecin-a.yaml","gulmirecin A"],["unclassified/myxarylin.yaml","Myxarylin"]]},{"id":"NCBITaxon:426418","l":"Pyrenophora tritici-repentis Pt-1C-BFP","na":2,"nb":4,"a":[["TED%3AAF-B2VYP9-F1-model_v4_TED01","TED novel fold AF-B2VYP9-F1-model_v4_TED01"],["TED%3AAF-B2VZ40-F1-model_v4_TED02","TED novel fold AF-B2VZ40-F1-model_v4_TED02"]],"b":[["unclassified/triticone-a.yaml","triticone A"],["unclassified/triticone-b.yaml","triticone B"],["unclassified/triticone-c.yaml","triticone C"],["unclassified/triticone-f.yaml","triticone F"]]},{"id":"NCBITaxon:55601","l":"Vibrio anguillarum","na":4,"nb":2,"a":[["Pfam%3APF17327","Acyl homoserine lactone synthase"],["PROSITE%3APS00949","Autoinducer synthase family signature"],["TED%3AAF-A0A241NLV5-F1-model_v4_TED03","TED novel fold AF-A0A241NLV5-F1-model_v4_TED03"],["TED%3AAF-A0A290PUC4-F1-model_v4_TED02","TED novel fold AF-A0A290PUC4-F1-model_v4_TED02"]],"b":[["alkaloids/anguibactin.yaml","anguibactin"],["amino_acids_and_peptides/vanchrobactin.yaml","vanchrobactin"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":4,"nb":2,"a":[["Pfam%3APF01375","Heat-labile enterotoxin alpha chain"],["Pfam%3APF09101","Exotoxin A binding"],["Pfam%3APF09009","Exotoxin A catalytic"],["Pfam%3APF09102","Exotoxin A, targeting"]],"b":[["alkaloids/vibriobactin-2.yaml","vibriobactin"],["alkaloids/vibriobactin.yaml","vibriobactin"]]},{"id":"UniProt:P02829","l":"","na":4,"nb":2,"a":[["ComplexPortal%3ACPX-1276","HMC complex"],["GO%3A0006458","'de novo' protein folding"],["GO%3A0043248","proteasome assembly"],["GO%3A0070482","response to oxygen levels"]],"b":[["polyketides/monocillin-iv.yaml","monocillin IV"],["polyketides/radicicol.yaml","radicicol"]]},{"id":"DOI:10.1002/anie.201902910","l":"","na":3,"nb":2,"a":[["RHEA%3A67476","dimethylallyl diphosphate + L-glutamate = prekainate + diphosphate"],["RHEA%3A68224","prekainate + 2-oxoglutarate + O2 + H(+) = kainate lactone + succinate + CO2 + H2O"],["RHEA%3A67480","prekainate + 2-oxoglutarate + O2 = kainate + succinate + CO2 + H2O"]],"b":[["amino_acids_and_peptides/kainic-acid.yaml","kainic acid"],["terpenoids/kainic-acid-lactone.yaml","Kainic acid lactone"]]},{"id":"DOI:10.1016/j.chembiol.2013.07.004","l":"","na":2,"nb":3,"a":[["InterPro%3AIPR044086","Aldehyde dehydrogenase LUC3-like"],["NCBIfam%3ANF018234","alpha/beta hydrolase"]],"b":[["alkaloids/dihydrofusarin-c.yaml","dihydrofusarin C"],["alkaloids/epi-fusarin-c.yaml","epi-fusarin C"],["alkaloids/fusarin-d.yaml","fusarin D"]]},{"id":"DOI:10.3390/molecules24122267","l":"","na":3,"nb":2,"a":[["RHEA%3A64568","3-[(2E,4E,8S,10E,12Z)-4,8-dimethyltetradeca-2,4,10,12-tetraenoyl]-4-hydroxy-5-(4-hydroxyphenyl)-1,2-dihydropyridin-2-one = ilicicolin H"],["RHEA%3A64544","L-tyrosine + holo-[ACP] + 7 malonyl-CoA + acetyl-CoA + 8 AH2 + 2 S-adenosyl-L-methionine + ATP + 4 H(+) = N-[(4E,6E,10S,12Z,14E)-6,10-dimethyl-3-oxohexadeca-4,6,12,14-tetraenoyl]-L-tyrosyl-[ACP] + 8 A + AMP + 2 S-adenosyl-L-homocysteine + 7 CO2 + diphosphate + 8 CoA + 6 H2O"],["RHEA%3A64548","N-[(4E,6E,10S,12Z,14E)-6,10-dimethyl-3-oxohexadeca-4,6,12,14-tetraenoyl]-L-tyrosyl-[ACP] = (3E,5S)-3-[(2E,4E,8S,10E,12Z)-1-hydroxy-4,8-dimethyltetradeca-2,4,10,12-tetraen-1-ylidene]-5-[(4-hydroxyphenyl)methyl]pyrrolidine-2,4-dione + holo-[ACP] + H(+)"]],"b":[["alkaloids/ilicicolin-h.yaml","ilicicolin H"],["alkaloids/ilicicolin-j.yaml","ilicicolin J"]]},{"id":"NCBITaxon:1120925","l":"Acinetobacter bouvetii DSM 14964 = CIP 107468","na":2,"nb":3,"a":[["proteintraitsmech%3AELIFE109154_VibH_like","VibH-like metallophore standalone condensation enzyme family"],["TED%3AAF-N9C7M4-F1-model_v4_TED02","TED novel fold AF-N9C7M4-F1-model_v4_TED02"]],"b":[["alkaloids/butanochelin.yaml","butanochelin"],["alkaloids/pentanochelin.yaml","pentanochelin"],["alkaloids/propanochelin.yaml","propanochelin"]]},{"id":"NCBITaxon:1229662","l":"Pestalotiopsis fici (strain W106-1 / CGMCC3.15140)","na":3,"nb":2,"a":[["Pfam%3APF26087","Domain of unknown function (DUF8032)"],["Pfam%3APF07110","EthD domain"],["TED%3AAF-W3WKJ8-F1-model_v4_TED01","TED novel fold AF-W3WKJ8-F1-model_v4_TED01"]],"b":[["polyketides/naphthalene-1-3-8-triol.yaml","naphthalene-1,3,8-triol"],["polyketides/scytalone.yaml","scytalone"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":2,"nb":3,"a":[["Pfam%3APF02052","Gallidermin"],["Pfam%3APF04604","Type-A lantibiotic"]],"b":[["unclassified/leuvalin.yaml","leuvalin"],["unclassified/mutanocyclin.yaml","mutanocyclin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":2,"a":[["TED%3AAF-A0A142EAM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142EAM9-F1-model_v4_TED03"],["TED%3AAF-A0A1Q3DTY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3DTY6-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3DNE3-F1-model_v4_TED01","TED novel fold AF-A0A1Q3DNE3-F1-model_v4_TED01"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:1907","l":"Streptomyces glaucescens","na":2,"nb":3,"a":[["Pfam%3APF04673","Polyketide synthesis cyclase"],["Pfam%3APF04655","Aminoglycoside/hydroxyurea antibiotic resistance kinase"]],"b":[["carbohydrates/5-hydroxystreptomycin.yaml","5'-hydroxystreptomycin"],["carbohydrates/streptomycin.yaml","streptomycin"],["polyketides/tetracenomycin-c.yaml","tetracenomycin C"]]},{"id":"NCBITaxon:1932","l":"Streptomyces tendae","na":2,"nb":3,"a":[["Pfam%3APF01356","Alpha amylase inhibitor"],["MCSA%3A942","NikD"]],"b":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"],["polyketides/lysolipin-i.yaml","lysolipin I"],["terpenoids/geosmin.yaml","(−)-geosmin"]]},{"id":"NCBITaxon:1935","l":"Streptomyces violaceoruber","na":2,"nb":3,"a":[["Pfam%3APF03559","NDP-hexose 2,3-dehydratase"],["MCSA%3A528","phospholipase A2 (prokaryotic/fungal)"]],"b":[["polyketides/granaticin.yaml","granaticin"],["polyketides/kendomycin.yaml","kendomycin"],["terpenoids/methylenomycin-a.yaml","methylenomycin A"]]},{"id":"NCBITaxon:1940","l":"Streptomyces albireticuli NRRL B-1670","na":2,"nb":3,"a":[["TED%3AAF-A0A1Z2LD39-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z2LD39-F1-model_v4_TED01"],["TED%3AAF-A0A1Z2LBV3-F1-model_v4_TED01","TED novel fold AF-A0A1Z2LBV3-F1-model_v4_TED01"]],"b":[["fatty_acids/fuelimicin-b.yaml","fuelimicin B"],["fatty_acids/fuelimicin-c.yaml","fuelimicin C"],["fatty_acids/fuelimycin-a.yaml","fuelimycin A"]]},{"id":"NCBITaxon:240292","l":"Trichormus variabilis ATCC 29413","na":2,"nb":3,"a":[["Pfam%3APF18921","Cyanophycin synthase-like N-terminal domain"],["Pfam%3APF13619","KTSC domain"]],"b":[["unclassified/4-deoxygadusol.yaml","4-deoxygadusol"],["unclassified/mycosporine-glycine.yaml","mycosporine glycine"],["unclassified/shinorine.yaml","shinorine"]]},{"id":"NCBITaxon:344612","l":"Aspergillus clavatus (strain ATCC 1007 / CBS 513.65 / DSM 816 / NCTC 3887 / NRRL 1 / QM 1276 / 107)","na":3,"nb":2,"a":[["Pfam%3APF28457","Probable beta-glucosidase btgE N-terminal domain"],["Pfam%3APF24438","IML1, N-terminal, fungi"],["Pfam%3APF25326","SRB8 ARM-like domain"]],"b":[["alkaloids/cytochalasin-e.yaml","cytochalasin E"],["alkaloids/cytochalasin-k.yaml","cytochalasin K"]]},{"id":"NCBITaxon:3635","l":"Gossypium hirsutum","na":3,"nb":2,"a":[["Pfam%3APF20452","Calmodulin binding protein C-terminal domain"],["Pfam%3APF20451","Calmodulin binding protein central domain"],["Pfam%3APF07887","Calmodulin binding protein-like N-terminal domain"]],"b":[["fatty_acids/butyrolactone.yaml","γ-butyrolactone"],["terpenoids/cadinene.yaml","(−)-δ-cadinene"]]},{"id":"NCBITaxon:394503","l":"","na":3,"nb":2,"a":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["PROSITE%3APS00812","Glycosyl hydrolases family 8 signature"],["Pfam%3APF01270","Glycosyl hydrolases family 8"]],"b":[["alkaloids/closthioamide.yaml","closthioamide"],["amino_acids_and_peptides/rc-aip1.yaml","Rc-AIP1"]]},{"id":"NCBITaxon:42236","l":"Streptomyces diastatochromogenes","na":2,"nb":3,"a":[["TED%3AAF-A0A233S9R2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A233S9R2-F1-model_v4_TED01"],["TED%3AAF-A0A233SM76-F1-model_v4_TED01","TED novel fold AF-A0A233SM76-F1-model_v4_TED01"]],"b":[["carbohydrates/toyocamycin.yaml","toyocamycin"],["polyketides/concanamycin-a.yaml","concanamycin A"],["polyketides/polyketomycin.yaml","polyketomycin"]]},{"id":"NCBITaxon:44250","l":"Paenibacillus alvei","na":3,"nb":2,"a":[["PROSITE%3APS00481","Thiol-activated cytolysins signature"],["TED%3AAF-A0A383R9F4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A383R9F4-F1-model_v4_TED01"],["TED%3AAF-A0A7Y4MLP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4MLP7-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/colistin-a.yaml","colistin A"],["amino_acids_and_peptides/colistin-b.yaml","colistin B"]]},{"id":"NCBITaxon:4530","l":"Oryza sativa","na":2,"nb":3,"a":[["Pfam%3APF10839","Protein of unknown function (DUF2647)"],["PROSITE%3APS00937","Ribosomal protein L20 signature"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/nonadec-1-ene.yaml","nonadec-1-ene"],["terpenoids/phytocassane.yaml","phytocassane"]]},{"id":"NCBITaxon:474922","l":"Colletotrichum gloeosporioides","na":2,"nb":3,"a":[["Pfam%3APF28223","CAP22"],["PROSITE%3APS00155","Cutinase, serine active site"]],"b":[["unclassified/colletochlorin-a.yaml","Colletochlorin A"],["unclassified/colletotrichin.yaml","colletotrichin"],["unclassified/orcinol.yaml","orcinol"]]},{"id":"NCBITaxon:51201","l":"Streptomyces griseocarneus","na":3,"nb":2,"a":[["TED%3AAF-A0A3L8IG13-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3L8IG13-F1-model_v4_TED01"],["TED%3AAF-A0A3L8KW22-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3L8KW22-F1-model_v4_TED02"],["TED%3AAF-A0A8A3HJQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8A3HJQ3-F1-model_v4_TED01"]],"b":[["alkaloids/pimprinine.yaml","pimprinine"],["carbohydrates/5-hydroxystreptomycin.yaml","5'-hydroxystreptomycin"]]},{"id":"NCBITaxon:536","l":"Chromobacterium violaceum","na":2,"nb":3,"a":[["TED%3AAF-A0A381EUD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A381EUD6-F1-model_v4_TED01"],["TED%3AAF-A0A447THJ9-F1-model_v4_TED01","TED novel fold AF-A0A447THJ9-F1-model_v4_TED01"]],"b":[["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["unclassified/romidepsin.yaml","romidepsin"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":3,"nb":2,"a":[["PROSITE%3APS00336","Beta-lactamase class-C active site"],["MCSA%3A257","beta-lactamase (Class C)"],["TED%3AAF-A0A155XQ59-F1-model_v4_TED02","TED novel fold AF-A0A155XQ59-F1-model_v4_TED02"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["terpenoids/mk-8.yaml","MK-8"]]},{"id":"NCBITaxon:5514","l":"Fusarium sporotrichioides","na":3,"nb":2,"a":[["Pfam%3APF22701","Mal s 1 allergenic protein-like"],["MCSA%3A262","trichodiene synthase"],["TED%3AAF-A0A395RG49-F1-model_v4_TED02","TED novel fold AF-A0A395RG49-F1-model_v4_TED02"]],"b":[["terpenoids/t-2-toxin.yaml","T-2 toxin"],["unclassified/beauvericin.yaml","beauvericin"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":3,"nb":2,"a":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"],["TED%3AAF-A0A7H8I034-F1-model_v4_TED01","TED novel fold AF-A0A7H8I034-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/aerobactin.yaml","aerobactin"],["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":3,"nb":2,"a":[["Pfam%3APF04205","FMN-binding domain"],["Pfam%3APF10795","Protein of unknown function (DUF2607)"],["TED%3AAF-A0A1W6U0N2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W6U0N2-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/vibrioferrin-2.yaml","vibrioferrin"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:67267","l":"Streptomyces alboflavus","na":3,"nb":2,"a":[["TED%3AAF-A0A1Z1WH37-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z1WH37-F1-model_v4_TED01"],["TED%3AAF-A0A291W4F3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A291W4F3-F1-model_v4_TED01"],["TED%3AAF-A0A291W5G3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A291W5G3-F1-model_v4_TED01"]],"b":[["alkaloids/thienodolin.yaml","thienodolin"],["terpenoids/2-methylisoborneol.yaml","2-methylisoborneol"]]},{"id":"NCBITaxon:69","l":"Lysobacter enzymogenes","na":3,"nb":2,"a":[["MCSA%3A609","alpha-lytic endopeptidase"],["TED%3AAF-A0A1J1E6A8-F1-model_v4_TED02","TED novel fold AF-A0A1J1E6A8-F1-model_v4_TED02"],["TED%3AAF-A0A7T8MLU2-F1-model_v4_TED03","TED novel fold AF-A0A7T8MLU2-F1-model_v4_TED03"]],"b":[["unclassified/heat-stable-antifungal-factor.yaml","heat-stable antifungal factor"],["unclassified/wap-8294a2.yaml","WAP-8294A2"]]},{"id":"DOI:10.1128/AEM.00478-08","l":"","na":2,"nb":2,"a":[["InterPro%3AIPR059857","Pneumocandin biosynthesis cluster protein B-like, C-terminal domain"],["NCBIfam%3ANF055577","Pneumocandin biosynthesis cluster protein B C-terminal domain"]],"b":[["polyketides/hypothemycin.yaml","hypothemycin"],["polyketides/radicicol.yaml","radicicol"]]},{"id":"NCBITaxon:1116229","l":"","na":2,"nb":2,"a":[["Pfam%3APF28402","Pneumocandin biosynthesis cluster protein B C-terminal domain"],["TED%3AAF-S3CJ96-F1-model_v4_TED01","TED novel fold AF-S3CJ96-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/pneumocandin-a0.yaml","pneumocandin A0"],["amino_acids_and_peptides/pneumocandin-b0.yaml","pneumocandin B0"]]},{"id":"NCBITaxon:1284","l":"Staphylococcus hyicus","na":2,"nb":2,"a":[["Pfam%3APF04650","YSIRK type signal peptide"],["PROSITE%3APS01123","Thermonuclease family signature 1"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["unclassified/staphyloferrin-a.yaml","staphyloferrin A"]]},{"id":"NCBITaxon:1365484","l":"","na":2,"nb":2,"a":[["Pfam%3APF11578","Protein of unknown function (DUF3237)"],["Pfam%3APF14269","Arylsulfotransferase (ASST)"]],"b":[["alkaloids/mycophenolic-acid-2.yaml","mycophenolic acid"],["terpenoids/pr-toxin.yaml","PR-toxin"]]},{"id":"NCBITaxon:1392255","l":"","na":2,"nb":2,"a":[["Pfam%3APF08592","Anthrone oxygenase"],["TED%3AAF-A0A2I1CES2-F1-model_v4_TED03","TED novel fold AF-A0A2I1CES2-F1-model_v4_TED03"]],"b":[["polyketides/neosartorin.yaml","neosartorin"],["unclassified/novofumigatonin.yaml","novofumigatonin"]]},{"id":"NCBITaxon:247156","l":"","na":2,"nb":2,"a":[["Pfam%3APF19288","CofH/MqnC C-terminal region"],["Pfam%3APF17645","Arylmalonate decarboxylase"]],"b":[["amino_acids_and_peptides/nocobactin-na.yaml","nocobactin NA"],["unclassified/nocobactin-na-10152b.yaml","nocobactin NA 10152B"]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":2,"nb":2,"a":[["Pfam%3APF21252","Glycosyl hydrolase 109, C-terminal domain"],["TED%3AAF-A0A3P1YJQ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3P1YJQ6-F1-model_v4_TED01"]],"b":[["carbohydrates/legionaminic-acid.yaml","legionaminic acid"],["carbohydrates/pseudaminate.yaml","pseudaminate"]]},{"id":"NCBITaxon:285532","l":"Streptomyces achromogenes subsp. streptozoticus","na":2,"nb":2,"a":[["Pfam%3APF07883","Cupin domain"],["Pfam%3APF14518","Iron-containing redox enzyme"]],"b":[["carbohydrates/streptozotocin.yaml","streptozotocin"],["unclassified/enteromycin.yaml","enteromycin"]]},{"id":"NCBITaxon:29430","l":"Acinetobacter haemolyticus","na":2,"nb":2,"a":[["TED%3AAF-A0A845PGH5-F1-model_v4_TED01","TED novel fold AF-A0A845PGH5-F1-model_v4_TED01"],["TED%3AAF-A0A857IU13-F1-model_v4_TED06","TED novel fold AF-A0A857IU13-F1-model_v4_TED06"]],"b":[["alkaloids/acinetoferrin.yaml","acinetoferrin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":2,"nb":2,"a":[["TED%3AAF-A0A6N3WS12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N3WS12-F1-model_v4_TED01"],["TED%3AAF-A0A3R7GIU2-F1-model_v4_TED02","TED novel fold AF-A0A3R7GIU2-F1-model_v4_TED02"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["terpenoids/xanthan.yaml","xanthan"]]},{"id":"NCBITaxon:3469","l":"Papaver somniferum","na":2,"nb":2,"a":[["Pfam%3APF00407","Pathogenesis-related protein Bet v 1 family"],["TED%3AAF-A0A4Y7LH48-F1-model_v4_TED01","TED novel fold AF-A0A4Y7LH48-F1-model_v4_TED01"]],"b":[["alkaloids/noscapine.yaml","(−)-noscapine"],["alkaloids/thebaine.yaml","thebaine"]]},{"id":"NCBITaxon:4558","l":"Sorghum bicolor","na":2,"nb":2,"a":[["MCSA%3A382","P-(S)-hydroxymandelonitrile lyase"],["TED%3AAF-A0A1W0W5T3-F1-model_v4_TED02","TED novel fold AF-A0A1W0W5T3-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/s-4-hydroxymandelonitrile-d-glucoside.yaml","(S)-4-hydroxymandelonitrile β-D-glucoside"],["shikimates_and_phenylpropanoids/alternariol.yaml","alternariol"]]},{"id":"NCBITaxon:5044","l":"","na":2,"nb":2,"a":[["PROSITE%3APS00185","Isopenicillin N synthase signature 1"],["PROSITE%3APS00186","Isopenicillin N synthase signature 2"]],"b":[["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"],["polyketides/sorbicillin.yaml","sorbicillin"]]},{"id":"NCBITaxon:5074","l":"Penicillium brevicompactum","na":2,"nb":2,"a":[["Pfam%3APF09227","Bubble protein"],["Pfam%3APF18558","Methyltransferase, Helix-turn-helix domain"]],"b":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"],["unclassified/asperphenamate.yaml","asperphenamate"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":2,"nb":2,"a":[["TED%3AAF-B5UAE0-F1-model_v4_TED01","TED highly-symmetric fold AF-B5UAE0-F1-model_v4_TED01"],["TED%3AAF-A0A3E1IF45-F1-model_v4_TED01","TED novel fold AF-A0A3E1IF45-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/vibrioferrin-2.yaml","vibrioferrin"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:68170","l":"Lechevalieria aerocolonigenes","na":2,"nb":2,"a":[["Pfam%3APF12902","Ferritin-like"],["TED%3AAF-A0A0F0GZM7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0F0GZM7-F1-model_v4_TED03"]],"b":[["alkaloids/rebeccamycin.yaml","rebeccamycin"],["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:983644","l":"","na":2,"nb":2,"a":[["TED%3AAF-G3J617-F1-model_v4_TED01","TED highly-symmetric fold AF-G3J617-F1-model_v4_TED01"],["TED%3AAF-G3JAX2-F1-model_v4_TED03","TED novel fold AF-G3JAX2-F1-model_v4_TED03"]],"b":[["unclassified/beauveriolide-i.yaml","beauveriolide I"],["unclassified/beauveriolide-iii.yaml","beauveriolide III"]]},{"id":"UniProt:P04058","l":"","na":2,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_03S","03S-binding site"],["proteintraitsmech%3ABIOLIP_AA7","AA7-binding site"]],"b":[["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/physostigmine.yaml","physostigmine"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":2669,"nb":1,"a":[["IDPO%3A0000002","disorder"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000045","phosphorylation display site"],["IDPO%3A0000059","self-inhibition"],["Pfam%3APF17837","4'-phosphopantetheinyl transferase N-terminal domain"]],"b":[["unclassified/mycobactin.yaml","mycobactin"]]},{"id":"NCBITaxon:6192","l":"Fasciola hepatica","na":224,"nb":1,"a":[["IEDB%3A123014","epitope AIMRYIADK"],["IEDB%3A123015","epitope AIRYLEPHC"],["IEDB%3A123019","epitope ALDCIRYLA"],["IEDB%3A123020","epitope ALPSIKAYM"],["IEDB%3A123029","epitope APHCLDEFP"],["IEDB%3A123032","epitope APPSHEKK"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":150,"nb":1,"a":[["Pfam%3APF09156","Anthrax toxin lethal factor, middle domain"],["Pfam%3APF08401","N-terminal domain of anti-restriction factor ArdC"],["Pfam%3APF07737","Anthrax toxin lethal factor, N- and C-terminal domain"],["Pfam%3APF27053","Bacillus anthracis plasmid pXO2 protein 26"],["Pfam%3APF13205","Bacterial Ig-like domain"],["Pfam%3APF17475","Clostridial binary toxin B/anthrax toxin PA domain 2"]],"b":[["alkaloids/petrobactin.yaml","petrobactin"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":138,"nb":1,"a":[["Pfam%3APF09255","Caf1 Capsule antigen"],["Pfam%3APF02611","CDP-diacylglycerol pyrophosphatase"],["Pfam%3APF07411","Domain of unknown function (DUF1508)"],["Pfam%3APF05171","Haemin-degrading HemS.ChuX domain"],["Pfam%3APF21500","DNA polymerase III subunit delta', AAA+ ATPase lid domain"],["Pfam%3APF11004","3-deoxy-D-manno-oct-2-ulosonic acid (Kdo) hydroxylase"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":1,"nb":116,"a":[["Pfam%3APF03437","BtpA family"]],"b":[["alkaloids/altemicidin.yaml","altemicidin"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"],["alkaloids/aurachin-ss.yaml","aurachin SS"],["alkaloids/berninamycin-j.yaml","berninamycin J"],["alkaloids/berninamycin-k.yaml","berninamycin K"]]},{"id":"UniProt:P35222","l":"","na":91,"nb":1,"a":[["ComplexPortal%3ACPX-316","beta1-catenin - LEF1 complex"],["ComplexPortal%3ACPX-12016","-"],["ComplexPortal%3ACPX-14403","-"],["ComplexPortal%3ACPX-16015","-"],["ComplexPortal%3ACPX-16618","-"],["ComplexPortal%3ACPX-17387","-"]],"b":[["alkaloids/toxoflavin.yaml","toxoflavin"]]},{"id":"NCBITaxon:199310","l":"Escherichia coli O6:H1 (strain CFT073 / ATCC 700928 / UPEC)","na":90,"nb":1,"a":[["Pfam%3APF12343","DeaD helicase C-terminal disordered region"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF08298","PrkA AAA domain"],["Pfam%3APF17425","Arylsulfotransferase Ig-like domain"],["Pfam%3APF02611","CDP-diacylglycerol pyrophosphatase"],["Pfam%3APF10729","Cell division activator CedA"]],"b":[["unclassified/ape-ec.yaml","APE Ec"]]},{"id":"NCBITaxon:1883427","l":"Actinomycetia bacterium","na":78,"nb":1,"a":[["TED%3AAF-A0A2E4AXX0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2E4AXX0-F1-model_v4_TED04"],["TED%3AAF-A0A2W4J8T7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W4J8T7-F1-model_v4_TED01"],["TED%3AAF-A0A350SGF5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A350SGF5-F1-model_v4_TED03"],["TED%3AAF-A0A350XSJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A350XSJ9-F1-model_v4_TED01"],["TED%3AAF-A0A3A4PC78-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A4PC78-F1-model_v4_TED01"],["TED%3AAF-A0A3A4PG42-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A4PG42-F1-model_v4_TED01"]],"b":[["polyketides/anthrabenzoxocinone.yaml","anthrabenzoxocinone"]]},{"id":"NCBITaxon:9986","l":"Oryctolagus cuniculus","na":71,"nb":1,"a":[["IDPO%3A0000018","disorder to molten globule"],["IDPO%3A0000023","pre-molten globule to molten globule"],["Pfam%3APF27603","AKAP9-like coiled-coil region"],["Pfam%3APF17860","RK-1-like defensin"],["IEDB%3A186980","epitope AAAPVVGA"],["IEDB%3A186981","epitope AAKKAVQG"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:Q13547","l":"","na":66,"nb":1,"a":[["ComplexPortal%3ACPX-12294","-"],["ComplexPortal%3ACPX-13515","-"],["ComplexPortal%3ACPX-14890","-"],["ComplexPortal%3ACPX-15325","-"],["ComplexPortal%3ACPX-18342","-"],["ComplexPortal%3ACPX-20908","-"]],"b":[["amino_acids_and_peptides/apicidin.yaml","apicidin"]]},{"id":"NCBITaxon:9031","l":"Gallus gallus","na":64,"nb":1,"a":[["Pfam%3APF16620","Unstructured linker between I-set domains 2 and 3 on MYLCK"],["Pfam%3APF15512","Chromatin assembly factor complex 1 subunit p60, C-terminal"],["Pfam%3APF18130","ATP-grasp N-terminal domain"],["Pfam%3APF15632","ATP-grasp in the biosynthetic pathway with Ter operon"],["Pfam%3APF01382","Avidin family"],["Pfam%3APF08072","BDHCT (NUC031) domain"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P42345","l":"","na":62,"nb":1,"a":[["ComplexPortal%3ACPX-11469","-"],["ComplexPortal%3ACPX-12119","-"],["ComplexPortal%3ACPX-12694","-"],["ComplexPortal%3ACPX-13423","-"],["ComplexPortal%3ACPX-15386","-"],["ComplexPortal%3ACPX-15693","-"]],"b":[["polyketides/sirolimus.yaml","sirolimus"]]},{"id":"UniProt:P21802","l":"","na":52,"nb":1,"a":[["ComplexPortal%3ACPX-11311","-"],["ComplexPortal%3ACPX-13057","-"],["ComplexPortal%3ACPX-19802","-"],["ComplexPortal%3ACPX-20298","-"],["ComplexPortal%3ACPX-21995","-"],["ComplexPortal%3ACPX-24266","-"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:2026763","l":"Myxococcales bacterium","na":51,"nb":1,"a":[["TED%3AAF-A0A2E5HQQ8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E5HQQ8-F1-model_v4_TED02"],["TED%3AAF-A0A2E6VRH0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E6VRH0-F1-model_v4_TED01"],["TED%3AAF-A0A2E6VU88-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E6VU88-F1-model_v4_TED01"],["TED%3AAF-A0A2F0AQB0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2F0AQB0-F1-model_v4_TED03"],["TED%3AAF-A0A2F0AS25-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2F0AS25-F1-model_v4_TED01"],["TED%3AAF-A0A356T3G6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A356T3G6-F1-model_v4_TED01"]],"b":[["polyketides/sorangipyranone.yaml","Sorangipyranone"]]},{"id":"UniProt:O15379","l":"","na":49,"nb":1,"a":[["ComplexPortal%3ACPX-11143","-"],["ComplexPortal%3ACPX-11157","-"],["ComplexPortal%3ACPX-15289","-"],["ComplexPortal%3ACPX-16349","-"],["ComplexPortal%3ACPX-18525","-"],["ComplexPortal%3ACPX-22988","-"]],"b":[["amino_acids_and_peptides/apicidin.yaml","apicidin"]]},{"id":"UniProt:P49841","l":"","na":49,"nb":1,"a":[["ComplexPortal%3ACPX-109","Beta-catenin destruction core complex, APC-AXIN1-GSK3B variant"],["ComplexPortal%3ACPX-439","Beta-catenin destruction core complex, APC-AXIN2-GSK3B variant"],["ComplexPortal%3ACPX-99","Beta-catenin destruction core complex, APC2-AXIN1-GSK3B variant"],["ComplexPortal%3ACPX-440","Beta-catenin destruction core complex, APC2-AXIN2-GSK3B variant"],["ComplexPortal%3ACPX-14345","-"],["ComplexPortal%3ACPX-16629","-"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:243277","l":"Vibrio cholerae serotype O1 (strain ATCC 39315 / El Tor Inaba N16961)","na":48,"nb":1,"a":[["IDPO%3A0000011","disorder to order"],["IDPO%3A0000014","order to disorder"],["Pfam%3APF16671","Actin cross-linking domain"],["Pfam%3APF00842","Alanine racemase, C-terminal domain"],["Pfam%3APF06228","Haem utilisation ChuX/HutX"],["Pfam%3APF19425","Csd3 second domain"]],"b":[["alkaloids/vibriobactin-2.yaml","vibriobactin"]]},{"id":"UniProt:P08684","l":"","na":47,"nb":1,"a":[["EC%3A1.14.14.55","quinine 3-monooxygenase"],["EC%3A1.14.14.56","1,8-cineole 2-exo-monooxygenase"],["EC%3A1.14.14.73","albendazole monooxygenase (sufoxide-forming)"],["RHEA%3A32895","1,8-cineole + reduced [NADPH--hemoprotein reductase] + O2 = 2-exo-hydroxy-1,8-cineole + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A20149","quinine + reduced [NADPH--hemoprotein reductase] + O2 = 3-hydroxyquinine + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["ComplexPortal%3ACPX-11243","-"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"UniProt:P0A8V2","l":"","na":47,"nb":1,"a":[["ComplexPortal%3ACPX-4888","DNA-directed RNA polymerase holoenzyme complex, Sigma fecI variant"],["ComplexPortal%3ACPX-4884","DNA-directed RNA polymerase holoenzyme complex, Sigma54 variant"],["ComplexPortal%3ACPX-4881","DNA-directed RNA polymerase holoenzyme complex, Sigma70 variant"],["ComplexPortal%3ACPX-4885","DNA-directed RNA polymerase holoenzyme complex, SigmaE variant"],["ComplexPortal%3ACPX-4886","DNA-directed RNA polymerase holoenzyme complex, SigmaF variant"],["ComplexPortal%3ACPX-4887","DNA-directed RNA polymerase holoenzyme complex, SigmaH variant"]],"b":[["polyketides/rifamycin-sv.yaml","rifamycin SV"]]},{"id":"UniProt:P31749","l":"","na":46,"nb":1,"a":[["ComplexPortal%3ACPX-22352","-"],["ComplexPortal%3ACPX-24286","-"],["GO%3A0099104","potassium channel activator activity"],["GO%3A1904841","TORC2 complex binding"],["GO%3A0006924","activation-induced cell death of T cells"],["GO%3A0043276","anoikis"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P07900","l":"","na":45,"nb":1,"a":[["ComplexPortal%3ACPX-12937","-"],["ComplexPortal%3ACPX-14751","-"],["ComplexPortal%3ACPX-15245","-"],["ComplexPortal%3ACPX-17900","-"],["ComplexPortal%3ACPX-18328","-"],["ComplexPortal%3ACPX-19396","-"]],"b":[["polyketides/radicicol.yaml","radicicol"]]},{"id":"UniProt:P25054","l":"","na":44,"nb":1,"a":[["ComplexPortal%3ACPX-107","Beta-catenin destruction core complex, APC-AXIN1-GSK3A variant"],["ComplexPortal%3ACPX-109","Beta-catenin destruction core complex, APC-AXIN1-GSK3B variant"],["ComplexPortal%3ACPX-441","Beta-catenin destruction core complex, APC-AXIN2-GSK3A variant"],["ComplexPortal%3ACPX-439","Beta-catenin destruction core complex, APC-AXIN2-GSK3B variant"],["ComplexPortal%3ACPX-12016","-"],["ComplexPortal%3ACPX-14403","-"]],"b":[["alkaloids/toxoflavin.yaml","toxoflavin"]]},{"id":"NCBITaxon:1902","l":"Streptomyces coelicolor","na":1,"nb":42,"a":[["MCSA%3A201","propionyl-CoA carboxylase"]],"b":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/anthramycin.yaml","anthramycin"],["alkaloids/holomycin.yaml","holomycin"],["alkaloids/melanin.yaml","melanin"],["alkaloids/prodigiosin-2.yaml","prodigiosin"],["alkaloids/undecylprodigiosin-2.yaml","undecylprodigiosin"]]},{"id":"UniProt:P09917","l":"","na":42,"nb":1,"a":[["EC%3A1.13.11.34","arachidonate 5-lipoxygenase"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"],["RHEA%3A32307","(5Z,8Z,11Z,14Z)-eicosatetraenoate + O2 = leukotriene A4 + H2O"],["ComplexPortal%3ACPX-15832","-"],["ComplexPortal%3ACPX-18202","-"],["ComplexPortal%3ACPX-20365","-"]],"b":[["alkaloids/myxochelin-a.yaml","myxochelin A"]]},{"id":"UniProt:Q9UBN7","l":"","na":38,"nb":1,"a":[["EC%3A3.5.1.-","In linear amides"],["ComplexPortal%3ACPX-11040","-"],["ComplexPortal%3ACPX-17348","-"],["ComplexPortal%3ACPX-19115","-"],["ComplexPortal%3ACPX-25368","-"],["ComplexPortal%3ACPX-25485","-"]],"b":[["amino_acids_and_peptides/apicidin.yaml","apicidin"]]},{"id":"UniProt:Q04771","l":"","na":37,"nb":1,"a":[["ComplexPortal%3ACPX-11394","-"],["ComplexPortal%3ACPX-11893","-"],["ComplexPortal%3ACPX-14842","-"],["ComplexPortal%3ACPX-15036","-"],["ComplexPortal%3ACPX-17430","-"],["ComplexPortal%3ACPX-18135","-"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P06493","l":"","na":36,"nb":1,"a":[["ComplexPortal%3ACPX-10673","-"],["ComplexPortal%3ACPX-11851","-"],["ComplexPortal%3ACPX-13027","-"],["ComplexPortal%3ACPX-15730","-"],["ComplexPortal%3ACPX-19796","-"],["ComplexPortal%3ACPX-21602","-"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P18031","l":"","na":35,"nb":1,"a":[["ComplexPortal%3ACPX-26130","-"],["GO%3A0098554","cytoplasmic side of endoplasmic reticulum membrane"],["GO%3A0031904","endosome lumen"],["GO%3A0030061","mitochondrial crista"],["GO%3A0097443","sorting endosome"],["GO%3A0046875","ephrin receptor binding"]],"b":[["terpenoids/lupeol.yaml","lupeol"]]},{"id":"UniProt:P09619","l":"","na":34,"nb":1,"a":[["ComplexPortal%3ACPX-11721","-"],["ComplexPortal%3ACPX-18342","-"],["ComplexPortal%3ACPX-18512","-"],["ComplexPortal%3ACPX-22260","-"],["ComplexPortal%3ACPX-25686","-"],["ComplexPortal%3ACPX-2892","PDGF receptor alpha-beta - PDGF-AB complex"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P62942","l":"","na":33,"nb":1,"a":[["ComplexPortal%3ACPX-15625","-"],["ComplexPortal%3ACPX-17368","-"],["GO%3A0098562","cytoplasmic side of membrane"],["GO%3A1990425","ryanodine receptor complex"],["GO%3A0016529","sarcoplasmic reticulum"],["GO%3A0033017","sarcoplasmic reticulum membrane"]],"b":[["polyketides/sirolimus.yaml","sirolimus"]]},{"id":"UniProt:P07711","l":"","na":31,"nb":1,"a":[["ComplexPortal%3ACPX-10815","-"],["ComplexPortal%3ACPX-12146","-"],["ComplexPortal%3ACPX-12243","-"],["ComplexPortal%3ACPX-18379","-"],["ComplexPortal%3ACPX-23732","-"],["ComplexPortal%3ACPX-23795","-"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"UniProt:P08238","l":"","na":31,"nb":1,"a":[["ComplexPortal%3ACPX-12937","-"],["ComplexPortal%3ACPX-15245","-"],["ComplexPortal%3ACPX-17900","-"],["ComplexPortal%3ACPX-18328","-"],["ComplexPortal%3ACPX-19396","-"],["ComplexPortal%3ACPX-23773","-"]],"b":[["polyketides/radicicol.yaml","radicicol"]]},{"id":"UniProt:P16234","l":"","na":30,"nb":1,"a":[["ComplexPortal%3ACPX-11080","-"],["ComplexPortal%3ACPX-11911","-"],["ComplexPortal%3ACPX-21238","-"],["ComplexPortal%3ACPX-23986","-"],["ComplexPortal%3ACPX-25630","-"],["ComplexPortal%3ACPX-2892","PDGF receptor alpha-beta - PDGF-AB complex"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"]]},{"id":"UniProt:P36897","l":"","na":30,"nb":1,"a":[["ComplexPortal%3ACPX-529","TGF-beta-1-TGFR complex"],["ComplexPortal%3ACPX-834","TGF-beta-2-TGFR complex"],["ComplexPortal%3ACPX-2544","TGF-beta-3-TGFR complex"],["GO%3A0048179","activin receptor complex"],["GO%3A0048185","activin binding"],["GO%3A0016361","activin receptor activity, type I"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P00747","l":"","na":29,"nb":1,"a":[["ComplexPortal%3ACPX-11986","-"],["ComplexPortal%3ACPX-14765","-"],["ComplexPortal%3ACPX-15280","-"],["ComplexPortal%3ACPX-16758","-"],["ComplexPortal%3ACPX-17221","-"],["ComplexPortal%3ACPX-19201","-"]],"b":[["alkaloids/congocidine.yaml","congocidine"]]},{"id":"CHEBI:57743","l":"","na":28,"nb":1,"a":[["EC%3A1.14.13.39","nitric-oxide synthase (NADPH)"],["EC%3A1.14.14.47","nitric-oxide synthase (flavodoxin)"],["EC%3A2.1.3.3","ornithine carbamoyltransferase"],["EC%3A3.5.1.20","citrullinase"],["EC%3A3.5.3.18","dimethylargininase"],["EC%3A3.5.3.6","arginine deiminase"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"UniProt:P00156","l":"","na":27,"nb":1,"a":[["ComplexPortal%3ACPX-13288","-"],["ComplexPortal%3ACPX-13705","-"],["ComplexPortal%3ACPX-14252","-"],["ComplexPortal%3ACPX-15275","-"],["ComplexPortal%3ACPX-15481","-"],["ComplexPortal%3ACPX-19909","-"]],"b":[["unclassified/antimycin-a1b.yaml","antimycin A1B"]]},{"id":"UniProt:P56524","l":"","na":27,"nb":1,"a":[["ComplexPortal%3ACPX-10863","-"],["ComplexPortal%3ACPX-10978","-"],["ComplexPortal%3ACPX-11176","-"],["ComplexPortal%3ACPX-11281","-"],["ComplexPortal%3ACPX-12671","-"],["ComplexPortal%3ACPX-12759","-"]],"b":[["amino_acids_and_peptides/apicidin.yaml","apicidin"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":26,"nb":1,"a":[["Pfam%3APF27270","Alr1449"],["Pfam%3APF27301","Alr2735 N-terminal domain"],["Pfam%3APF27288","Alr2735"],["Pfam%3APF21571","Arginine dihydrolase ArgZ-like, C-terminal, first region"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF13205","Bacterial Ig-like domain"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"]]},{"id":"UniProt:P48736","l":"","na":26,"nb":1,"a":[["ComplexPortal%3ACPX-5986","Phosphatidylinositol 3-kinase complex class IB, p110gamma/p101"],["ComplexPortal%3ACPX-5987","Phosphatidylinositol 3-kinase complex class IB, p110gamma/p87"],["GO%3A0005943","phosphatidylinositol 3-kinase complex, class IA"],["GO%3A0005944","phosphatidylinositol 3-kinase complex, class IB"],["GO%3A0046934","1-phosphatidylinositol-4,5-bisphosphate 3-kinase activity"],["GO%3A0035005","1-phosphatidylinositol-4-phosphate 3-kinase activity"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P53350","l":"","na":26,"nb":1,"a":[["ComplexPortal%3ACPX-14028","-"],["ComplexPortal%3ACPX-17085","-"],["ComplexPortal%3ACPX-19451","-"],["GO%3A0010997","anaphase-promoting complex binding"],["GO%3A0097681","double-strand break repair via alternative nonhomologous end joining"],["GO%3A0048313","Golgi inheritance"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P29466","l":"","na":25,"nb":1,"a":[["ComplexPortal%3ACPX-4142","AIM2 inflammasome"],["ComplexPortal%3ACPX-10594","-"],["ComplexPortal%3ACPX-13219","-"],["ComplexPortal%3ACPX-13566","-"],["ComplexPortal%3ACPX-21295","-"],["ComplexPortal%3ACPX-21498","-"]],"b":[["alkaloids/toxoflavin.yaml","toxoflavin"]]},{"id":"UniProt:Q03181","l":"","na":25,"nb":1,"a":[["ComplexPortal%3ACPX-12990","-"],["ComplexPortal%3ACPX-17750","-"],["ComplexPortal%3ACPX-18139","-"],["ComplexPortal%3ACPX-19679","-"],["ComplexPortal%3ACPX-24893","-"],["GO%3A0070539","linoleic acid binding"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"NCBITaxon:2925","l":"Alexandrium catenella","na":24,"nb":1,"a":[["TED%3AAF-A0A7S1KY03-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1KY03-F1-model_v4_TED01"],["TED%3AAF-A0A7S1L1S9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S1L1S9-F1-model_v4_TED02"],["TED%3AAF-A0A7S1ML43-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1ML43-F1-model_v4_TED01"],["TED%3AAF-A0A7S1PQ85-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1PQ85-F1-model_v4_TED01"],["TED%3AAF-A0A7S1QA17-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A7S1QA17-F1-model_v4_TED05"],["TED%3AAF-A0A7S1QL55-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S1QL55-F1-model_v4_TED03"]],"b":[["alkaloids/saxitoxin.yaml","saxitoxin"]]},{"id":"NCBITaxon:73915","l":"Pyrodinium bahamense","na":24,"nb":1,"a":[["TED%3AAF-A0A7S0A4R5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0A4R5-F1-model_v4_TED01"],["TED%3AAF-A0A7S0AC67-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0AC67-F1-model_v4_TED01"],["TED%3AAF-A0A7S0APM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0APM3-F1-model_v4_TED01"],["TED%3AAF-A0A7S0AQ53-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0AQ53-F1-model_v4_TED01"],["TED%3AAF-A0A7S0AX35-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0AX35-F1-model_v4_TED01"],["TED%3AAF-A0A7S0B705-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S0B705-F1-model_v4_TED02"]],"b":[["alkaloids/saxitoxin.yaml","saxitoxin"]]},{"id":"UniProt:O00444","l":"","na":24,"nb":1,"a":[["ComplexPortal%3ACPX-1299","CEP152-PLK4 complex"],["ComplexPortal%3ACPX-1161","CEP192-PLK4 complex"],["GO%3A0098536","deuterosome"],["GO%3A0120098","procentriole"],["GO%3A0098535","de novo centriole assembly involved in multi-ciliated epithelial cell differentiation"],["GO%3A0046601","positive regulation of centriole replication"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P23284","l":"","na":24,"nb":1,"a":[["ComplexPortal%3ACPX-11676","-"],["ComplexPortal%3ACPX-12341","-"],["ComplexPortal%3ACPX-12626","-"],["ComplexPortal%3ACPX-13324","-"],["ComplexPortal%3ACPX-14387","-"],["ComplexPortal%3ACPX-17992","-"]],"b":[["amino_acids_and_peptides/cyclosporin-a.yaml","cyclosporin A"]]},{"id":"NCBITaxon:40559","l":"Botrytis cinerea","na":1,"nb":23,"a":[["Pfam%3APF08883","Dopa 4,5-dioxygenase family"]],"b":[["terpenoids/1-epibotrydial.yaml","1-epibotrydial"],["terpenoids/10-dehydroxy-dihydrobotrydialone.yaml","10-dehydroxy dihydrobotrydialone"],["terpenoids/10-epi-dihydrobotrydial.yaml","10-epi-dihydrobotrydial"],["terpenoids/10-oxo-dihydrobotrydial.yaml","10-Oxo-dihydrobotrydial"],["terpenoids/10-oxodehydrodihydrobotrydial.yaml","10-Oxodehydrodihydrobotrydial"],["terpenoids/10-oxodihydrobotry-1-9-4-5-diendial.yaml","10-Oxodihydrobotry-1(9),4(5)-diendial"]]},{"id":"UniProt:O00763","l":"","na":23,"nb":1,"a":[["ComplexPortal%3ACPX-12392","-"],["ComplexPortal%3ACPX-13685","-"],["ComplexPortal%3ACPX-15849","-"],["ComplexPortal%3ACPX-19952","-"],["ComplexPortal%3ACPX-20498","-"],["ComplexPortal%3ACPX-20638","-"]],"b":[["polyketides/soraphen-a.yaml","soraphen A"]]},{"id":"UniProt:P12830","l":"","na":23,"nb":1,"a":[["ComplexPortal%3ACPX-12016","-"],["ComplexPortal%3ACPX-14403","-"],["ComplexPortal%3ACPX-16015","-"],["ComplexPortal%3ACPX-16575","-"],["ComplexPortal%3ACPX-17484","-"],["ComplexPortal%3ACPX-23131","-"]],"b":[["alkaloids/toxoflavin.yaml","toxoflavin"]]},{"id":"UniProt:P24385","l":"","na":23,"nb":1,"a":[["ComplexPortal%3ACPX-10673","-"],["ComplexPortal%3ACPX-18871","-"],["ComplexPortal%3ACPX-20404","-"],["ComplexPortal%3ACPX-21602","-"],["ComplexPortal%3ACPX-26221","-"],["ComplexPortal%3ACPX-26273","-"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"]]},{"id":"UniProt:Q15119","l":"","na":23,"nb":1,"a":[["ComplexPortal%3ACPX-11733","-"],["ComplexPortal%3ACPX-12952","-"],["ComplexPortal%3ACPX-15696","-"],["ComplexPortal%3ACPX-16639","-"],["ComplexPortal%3ACPX-16656","-"],["ComplexPortal%3ACPX-17227","-"]],"b":[["polyketides/radicicol.yaml","radicicol"]]},{"id":"CHEBI:27547","l":"zeaxanthin","na":22,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_27547","requires zeaxanthin"],["EC%3A1.13.11.65","carotenoid isomerooxygenase"],["EC%3A1.13.11.84","crocetin dialdehyde synthase"],["EC%3A1.14.15.21","zeaxanthin epoxidase"],["EC%3A1.14.15.24","beta-carotene 3-hydroxylase"],["EC%3A1.14.99.64","zeaxanthin 4-ketolase"]],"b":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]]},{"id":"NCBITaxon:394","l":"Sinorhizobium fredii (strain NBRC 101917 / NGR234)","na":22,"nb":1,"a":[["Pfam%3APF17841","BID domain of Bartonella effector protein (Bep)"],["Pfam%3APF04255","Protein of unknown function (DUF433)"],["Pfam%3APF18480","Domain of unknown function (DUF5615)"],["Pfam%3APF20008","Domain of unknown function (DUF6429)"],["Pfam%3APF24134","Domain of unknown function (DUF7401)"],["Pfam%3APF18728","AbiV"]],"b":[["terpenoids/gibberellin.yaml","gibberellin"]]},{"id":"UniProt:P42858","l":"","na":22,"nb":1,"a":[["ComplexPortal%3ACPX-25173","-"],["ComplexPortal%3ACPX-11549","Huntingtin-HAP40 endosomal complex"],["GO%3A0005522","profilin binding"],["GO%3A1905337","positive regulation of aggrephagy"],["GO%3A1905291","positive regulation of CAMKK-AMPK signaling cascade"],["GO%3A1904504","positive regulation of lipophagy"]],"b":[["unclassified/antimycin-a.yaml","antimycin A"]]},{"id":"UniProt:P68400","l":"","na":22,"nb":1,"a":[["ComplexPortal%3ACPX-2437","Casein kinase II complex, CSNK2A1-CNSK2A2 variant"],["ComplexPortal%3ACPX-914","Casein kinase II complex, CSNK2A1 variant"],["ComplexPortal%3ACPX-11941","-"],["ComplexPortal%3ACPX-12009","-"],["ComplexPortal%3ACPX-12888","-"],["ComplexPortal%3ACPX-14603","-"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"UniProt:Q24451","l":"","na":22,"nb":1,"a":[["GO%3A0015923","mannosidase activity"],["GO%3A0004572","mannosyl-oligosaccharide 1,3-1,6-alpha-mannosidase activity"],["GO%3A0035010","encapsulation of foreign target"],["GO%3A1904381","Golgi apparatus N-glycan mannose trimming"],["GO%3A0016063","rhodopsin biosynthetic process"],["CDD%3Acd10809","GH38N_AMII_GMII_SfManIII_like"]],"b":[["alkaloids/swainsonine.yaml","swainsonine"]]},{"id":"NCBITaxon:243265","l":"Photorhabdus laumondii subsp. laumondii TTO1","na":1,"nb":21,"a":[["Pfam%3APF07927","HicA toxin of bacterial toxin-antitoxin,"]],"b":[["amino_acids_and_peptides/gamexpeptide-c.yaml","gamexpeptide C"],["amino_acids_and_peptides/luminmycin-a.yaml","luminmycin A"],["amino_acids_and_peptides/ririwpeptide-a.yaml","ririwpeptide A"],["amino_acids_and_peptides/ririwpeptide-b.yaml","ririwpeptide B"],["carbohydrates/oligosaccharide-1-glcnac-1-4-1-6-anhydro-glcnac.yaml","oligosaccharide 1 (GlcNAc-β(1-4)-1,6-anhydro-β-GlcNAc)"],["carbohydrates/oligosaccharide-2-glcnac-1-4-glcnac-1-4-1-6-anhydro-glcnac.yaml","oligosaccharide 2 (GlcNAc-β(1-4)-GlcNAc-β(1-4)-1,6-anhydro-β-GlcNAc)"]]},{"id":"UniProt:O14757","l":"","na":21,"nb":1,"a":[["ComplexPortal%3ACPX-26328","Chromatin regulation assembly"],["ComplexPortal%3ACPX-10797","-"],["ComplexPortal%3ACPX-11546","-"],["ComplexPortal%3ACPX-14608","-"],["ComplexPortal%3ACPX-15285","-"],["ComplexPortal%3ACPX-15872","-"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P00749","l":"","na":21,"nb":1,"a":[["EC%3A3.4.21.73","u-plasminogen activator"],["ComplexPortal%3ACPX-483","uPA-PAI-1 complex"],["ComplexPortal%3ACPX-487","uPA-uPAR complex"],["ComplexPortal%3ACPX-501","uPA-uPAR-vitronectin complex"],["GO%3A1905370","serine-type endopeptidase complex"],["GO%3A0010757","negative regulation of plasminogen activation"]],"b":[["alkaloids/congocidine.yaml","congocidine"]]},{"id":"UniProt:P12268","l":"","na":21,"nb":1,"a":[["ComplexPortal%3ACPX-10668","-"],["ComplexPortal%3ACPX-16204","-"],["ComplexPortal%3ACPX-19278","-"],["ComplexPortal%3ACPX-20073","-"],["ComplexPortal%3ACPX-23201","-"],["ComplexPortal%3ACPX-24150","-"]],"b":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"]]},{"id":"UniProt:P20839","l":"","na":21,"nb":1,"a":[["ComplexPortal%3ACPX-11065","-"],["ComplexPortal%3ACPX-13142","-"],["ComplexPortal%3ACPX-14906","-"],["ComplexPortal%3ACPX-14944","-"],["ComplexPortal%3ACPX-18455","-"],["ComplexPortal%3ACPX-19278","-"]],"b":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"]]},{"id":"UniProt:P49760","l":"","na":21,"nb":1,"a":[["ComplexPortal%3ACPX-11057","-"],["ComplexPortal%3ACPX-12352","-"],["ComplexPortal%3ACPX-13888","-"],["ComplexPortal%3ACPX-15887","-"],["ComplexPortal%3ACPX-18111","-"],["ComplexPortal%3ACPX-18764","-"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P00918","l":"","na":20,"nb":1,"a":[["RHEA%3A10748","hydrogencarbonate + H(+) = CO2 + H2O"],["ComplexPortal%3ACPX-14819","-"],["ComplexPortal%3ACPX-22076","-"],["ComplexPortal%3ACPX-23290","-"],["ComplexPortal%3ACPX-24928","-"],["GO%3A0004089","carbonate dehydratase activity"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:P03372","l":"","na":20,"nb":1,"a":[["ComplexPortal%3ACPX-19787","-"],["ComplexPortal%3ACPX-21796","-"],["ComplexPortal%3ACPX-5156","ERalpha-NCOA2 activated estrogen receptor complex"],["GO%3A0034056","estrogen response element binding"],["GO%3A0030284","nuclear estrogen receptor activity"],["GO%3A0030520","estrogen receptor signaling pathway"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:P11362","l":"","na":20,"nb":1,"a":[["ComplexPortal%3ACPX-13057","-"],["ComplexPortal%3ACPX-18540","-"],["ComplexPortal%3ACPX-19802","-"],["ComplexPortal%3ACPX-21241","-"],["ComplexPortal%3ACPX-21995","-"],["GO%3A0005007","fibroblast growth factor receptor activity"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:Q16706","l":"","na":20,"nb":1,"a":[["EC%3A3.2.1.114","mannosyl-oligosaccharide 1,3-1,6-alpha-mannosidase"],["RHEA%3A56052","N(4)-{beta-D-GlcNAc-(1->2)-alpha-D-Man-(1->3)-[alpha-D-Man-(1->3)-[alpha-D-Man-(1->6)]-alpha-D-Man-(1->6)]-beta-D-Man-(1->4)-beta-D-GlcNAc-(1->4)-beta-D-GlcNAc}-L-asparaginyl-[protein] + 2 H2O = 2 alpha-D-mannopyranose + an N(4)-{beta-D-GlcNAc-(1->2)-alpha-D-Man-(1->3)-[alpha-D-Man-(1->6)]-beta-D-Man-(1->4)-beta-D-GlcNAc-(1->4)-beta-D-GlcNAc}-L-asparaginyl-[protein]"],["ComplexPortal%3ACPX-12202","-"],["ComplexPortal%3ACPX-15107","-"],["ComplexPortal%3ACPX-22647","-"],["GO%3A0016799","hydrolase activity, hydrolyzing N-glycosyl compounds"]],"b":[["alkaloids/swainsonine.yaml","swainsonine"]]},{"id":"UniProt:P07333","l":"","na":19,"nb":1,"a":[["ComplexPortal%3ACPX-22260","-"],["ComplexPortal%3ACPX-10333","IL34-CSF1R complex"],["ComplexPortal%3ACPX-25717","Macrophage colony-stimulating factor-1 receptor-ligand complex"],["GO%3A1990682","CSF1-CSF1R complex"],["GO%3A0005011","macrophage colony-stimulating factor receptor activity"],["GO%3A0036006","cellular response to macrophage colony-stimulating factor stimulus"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P35968","l":"","na":19,"nb":1,"a":[["GO%3A0097443","sorting endosome"],["GO%3A0038085","vascular endothelial growth factor binding"],["GO%3A0005021","vascular endothelial growth factor receptor activity"],["GO%3A1904881","cellular response to hydrogen sulfide"],["GO%3A0003157","endocardium development"],["GO%3A0141150","positive regulation of nitric oxide-cGMP mediated signal transduction"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:Q96QE3","l":"","na":19,"nb":1,"a":[["ComplexPortal%3ACPX-11703","-"],["ComplexPortal%3ACPX-13085","-"],["ComplexPortal%3ACPX-14089","-"],["ComplexPortal%3ACPX-14271","-"],["ComplexPortal%3ACPX-16564","-"],["ComplexPortal%3ACPX-17722","-"]],"b":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]]},{"id":"UniProt:Q05513","l":"","na":18,"nb":1,"a":[["ComplexPortal%3ACPX-10855","-"],["ComplexPortal%3ACPX-16356","-"],["ComplexPortal%3ACPX-18654","-"],["ComplexPortal%3ACPX-18746","-"],["ComplexPortal%3ACPX-22762","-"],["ComplexPortal%3ACPX-23337","-"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:Q12809","l":"","na":18,"nb":1,"a":[["ComplexPortal%3ACPX-12423","-"],["ComplexPortal%3ACPX-16470","-"],["ComplexPortal%3ACPX-16985","-"],["ComplexPortal%3ACPX-21446","-"],["ComplexPortal%3ACPX-22668","-"],["ComplexPortal%3ACPX-3072","Voltage-gated potassium channel complex variant 1"]],"b":[["unclassified/teixobactin.yaml","teixobactin"]]},{"id":"UniProt:O94760","l":"","na":17,"nb":1,"a":[["EC%3A3.5.3.18","dimethylargininase"],["ComplexPortal%3ACPX-11521","-"],["ComplexPortal%3ACPX-12381","-"],["ComplexPortal%3ACPX-13858","-"],["ComplexPortal%3ACPX-15777","-"],["ComplexPortal%3ACPX-18623","-"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"UniProt:P24864","l":"","na":17,"nb":1,"a":[["ComplexPortal%3ACPX-10673","-"],["ComplexPortal%3ACPX-11851","-"],["ComplexPortal%3ACPX-13027","-"],["ComplexPortal%3ACPX-19796","-"],["ComplexPortal%3ACPX-20481","-"],["ComplexPortal%3ACPX-21602","-"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"]]},{"id":"CHEBI:17579","l":"β-carotene","na":16,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17579","requires β-carotene"],["EC%3A1.13.11.63","beta-carotene 15,15'-dioxygenase"],["EC%3A1.13.11.71","carotenoid-9',10'-cleaving dioxygenase"],["EC%3A1.14.15.24","beta-carotene 3-hydroxylase"],["EC%3A1.14.99.63","beta-carotene 4-ketolase"],["EC%3A5.2.1.14","beta-carotene isomerase"]],"b":[["terpenoids/carotene.yaml","β-carotene"]]},{"id":"UniProt:P01215","l":"","na":16,"nb":1,"a":[["ComplexPortal%3ACPX-748","Chorionic gonadotropin hormone complex"],["ComplexPortal%3ACPX-14986","-"],["ComplexPortal%3ACPX-16532","-"],["ComplexPortal%3ACPX-19116","-"],["ComplexPortal%3ACPX-23467","-"],["ComplexPortal%3ACPX-665","Follicle-stimulating hormone complex"]],"b":[["amino_acids_and_peptides/ditryptophenaline.yaml","(-)-ditryptophenaline"]]},{"id":"UniProt:P11086","l":"","na":16,"nb":1,"a":[["EC%3A2.1.1.28","phenylethanolamine N-methyltransferase"],["RHEA%3A25269","(R)-noradrenaline + S-adenosyl-L-methionine = (R)-adrenaline + S-adenosyl-L-homocysteine + H(+)"],["ComplexPortal%3ACPX-11076","-"],["ComplexPortal%3ACPX-14242","-"],["ComplexPortal%3ACPX-17963","-"],["ComplexPortal%3ACPX-21796","-"]],"b":[["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"UniProt:Q9H4B4","l":"","na":16,"nb":1,"a":[["GO%3A0007113","endomitotic cell cycle"],["GO%3A0090166","Golgi disassembly"],["GO%3A0044819","mitotic G1/S transition checkpoint signaling"],["GO%3A1904716","positive regulation of chaperone-mediated autophagy"],["CDD%3Acd14189","STKc_PLK3"],["CDD%3Acd13118","POLO_box_1"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"DOI:10.1021/acs.orglett.8b03268","l":"","na":15,"nb":1,"a":[["RHEA%3A65264","3-hydroxypentacecilide A + A = chrodrimanin C + AH2"],["RHEA%3A65268","3-hydroxypentacecilide A + NADPH + O2 + H(+) = chrodrimanin F + NADP(+) + H2O"],["RHEA%3A65248","5 malonyl-CoA + AH2 + 5 H(+) = 6-hydroxymellein + A + 5 CO2 + 5 CoA + H2O"],["RHEA%3A65252","6-hydroxymellein + (2E,6E)-farnesyl diphosphate = verruculide C + diphosphate"],["RHEA%3A65324","chrodrimanin A + acetyl-CoA = chrodrimanin B + CoA"],["RHEA%3A65300","chrodrimanin C + 2-oxoglutarate + O2 = verruculide A + succinate + CO2 + H2O"]],"b":[["unclassified/chrodrimanin-b.yaml","chrodrimanin B"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":15,"nb":1,"a":[["Pfam%3APF03703","Bacterial PH domain"],["Pfam%3APF01322","Cytochrome C'"],["Pfam%3APF03139","Vanadium/alternative nitrogenase delta subunit"],["Pfam%3APF09527","Putative F0F1-ATPase subunit Ca2+/Mg2+ transporter"],["Pfam%3APF03270","Protein of unknown function, DUF269"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"]],"b":[["alkaloids/molybdenum-cofactor.yaml","molybdenum cofactor"]]},{"id":"NCBITaxon:5127","l":"Fusarium fujikuroi","na":1,"nb":15,"a":[["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"]],"b":[["alkaloids/fusaric-acid.yaml","fusaric acid"],["alkaloids/fusarin-c.yaml","fusarin C"],["polyketides/bikaverin.yaml","bikaverin"],["polyketides/fujikurin-c.yaml","fujikurin C"],["polyketides/fujikurin-d.yaml","fujikurin D"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":15,"nb":1,"a":[["Pfam%3APF07832","Cfr10I/Bse634I restriction endonuclease"],["Pfam%3APF22348","Colicin-A N-terminal domain"],["Pfam%3APF01024","Colicin pore forming domain"],["Pfam%3APF18427","DD-reactivating factor swiveling domain"],["Pfam%3APF02286","Dehydratase large subunit"],["Pfam%3APF02288","Dehydratase medium subunit"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"UniProt:P11511","l":"","na":15,"nb":1,"a":[["ComplexPortal%3ACPX-11590","-"],["ComplexPortal%3ACPX-12153","-"],["ComplexPortal%3ACPX-14456","-"],["ComplexPortal%3ACPX-20752","-"],["ComplexPortal%3ACPX-20895","-"],["ComplexPortal%3ACPX-20967","-"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:P21964","l":"","na":15,"nb":1,"a":[["ComplexPortal%3ACPX-13290","-"],["ComplexPortal%3ACPX-13949","-"],["ComplexPortal%3ACPX-14233","-"],["ComplexPortal%3ACPX-14264","-"],["ComplexPortal%3ACPX-19464","-"],["ComplexPortal%3ACPX-26179","-"]],"b":[["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"UniProt:P22748","l":"","na":15,"nb":1,"a":[["ComplexPortal%3ACPX-17339","-"],["ComplexPortal%3ACPX-17919","-"],["ComplexPortal%3ACPX-18486","-"],["ComplexPortal%3ACPX-19014","-"],["ComplexPortal%3ACPX-23066","-"],["ComplexPortal%3ACPX-23243","-"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:Q02779","l":"","na":15,"nb":1,"a":[["ComplexPortal%3ACPX-10957","-"],["ComplexPortal%3ACPX-11452","-"],["ComplexPortal%3ACPX-11502","-"],["ComplexPortal%3ACPX-11859","-"],["ComplexPortal%3ACPX-13254","-"],["ComplexPortal%3ACPX-13493","-"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":1,"nb":14,"a":[["Pfam%3APF26312","Domain of unknown function (DUF8083)"]],"b":[["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/framycetin.yaml","framycetin"],["carbohydrates/neomycin-c.yaml","neomycin C"],["carbohydrates/paromomycin.yaml","paromomycin"]]},{"id":"NCBITaxon:58346","l":"Streptomyces platensis","na":1,"nb":14,"a":[["PROSITE%3APS00999","Streptomyces subtilisin-type inhibitors signature"]],"b":[["alkaloids/13-epi-dorrigocin-a.yaml","13-epi-dorrigocin A"],["alkaloids/17-hydroxy-8-desmethoxy-isomigrastatin.yaml","17-hydroxy-8-desmethoxy-isomigrastatin"],["alkaloids/dorrigocin-a.yaml","dorrigocin A"],["alkaloids/dorrigocin-b.yaml","dorrigocin B"],["alkaloids/iso-migrastatin.yaml","iso-migrastatin"],["alkaloids/staurosporine.yaml","staurosporine"]]},{"id":"NCBITaxon:69488","l":"Penicillium simplicissimum","na":1,"nb":14,"a":[["MCSA%3A103","vanillyl-alcohol oxidase"]],"b":[["polyketides/citreoviridin.yaml","citreoviridin"],["unclassified/andrastin-a.yaml","andrastin A"],["unclassified/okaramine-b.yaml","okaramine B"],["unclassified/okaramine-d.yaml","okaramine D"],["unclassified/paraherquamide.yaml","paraherquamide"],["unclassified/paraherquonin.yaml","paraherquonin"]]},{"id":"UniProt:P27169","l":"","na":14,"nb":1,"a":[["ComplexPortal%3ACPX-10649","-"],["ComplexPortal%3ACPX-12297","-"],["ComplexPortal%3ACPX-16876","-"],["ComplexPortal%3ACPX-25382","-"],["GO%3A0102007","acyl-L-homoserine-lactone lactonohydrolase activity"],["GO%3A0004063","aryldialkylphosphatase activity"]],"b":[["carbohydrates/lincomycin.yaml","lincomycin"]]},{"id":"UniProt:P80192","l":"","na":14,"nb":1,"a":[["ComplexPortal%3ACPX-10957","-"],["ComplexPortal%3ACPX-11452","-"],["ComplexPortal%3ACPX-11502","-"],["ComplexPortal%3ACPX-13254","-"],["ComplexPortal%3ACPX-13493","-"],["ComplexPortal%3ACPX-14473","-"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"]]},{"id":"UniProt:Q9NYY3","l":"","na":14,"nb":1,"a":[["ComplexPortal%3ACPX-18657","-"],["GO%3A0071866","negative regulation of apoptotic process in bone marrow cell"],["CDD%3Acd14188","STKc_PLK2"],["CDD%3Acd13118","POLO_box_1"],["CDD%3Acd13117","POLO_box_2"],["InterPro%3AIPR033701","First polo-box domain"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:644","l":"Aeromonas hydrophila","na":13,"nb":1,"a":[["Pfam%3APF01117","Aerolysin toxin"],["Pfam%3APF03440","Aerolysin/Pertussis toxin (APT) domain"],["Pfam%3APF21327","GspA, peptidase C39-like domain"],["Pfam%3APF04231","Endonuclease I"],["PROSITE%3APS01092","Adenylate cyclase class-I signature 1"],["PROSITE%3APS01093","Adenylate cyclase class-I signature 2"]],"b":[["amino_acids_and_peptides/amonabactin-p-750.yaml","amonabactin P 750"]]},{"id":"UniProt:O00754","l":"","na":13,"nb":1,"a":[["ComplexPortal%3ACPX-15965","-"],["ComplexPortal%3ACPX-19551","-"],["ComplexPortal%3ACPX-20291","-"],["ComplexPortal%3ACPX-26077","-"],["ComplexPortal%3ACPX-26144","-"],["CDD%3Acd10810","GH38N_AMII_LAM_like"]],"b":[["alkaloids/swainsonine.yaml","swainsonine"]]},{"id":"UniProt:O15530","l":"","na":13,"nb":1,"a":[["ComplexPortal%3ACPX-13979","-"],["ComplexPortal%3ACPX-20891","-"],["ComplexPortal%3ACPX-24544","-"],["GO%3A0004676","3-phosphoinositide-dependent protein kinase activity"],["GO%3A0141124","intracellular signaling cassette"],["GO%3A0043304","regulation of mast cell degranulation"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:Q14749","l":"","na":13,"nb":1,"a":[["EC%3A2.1.1.20","glycine N-methyltransferase"],["RHEA%3A19937","glycine + S-adenosyl-L-methionine = sarcosine + S-adenosyl-L-homocysteine + H(+)"],["ComplexPortal%3ACPX-10845","-"],["ComplexPortal%3ACPX-14981","-"],["ComplexPortal%3ACPX-21780","-"],["ComplexPortal%3ACPX-22832","-"]],"b":[["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"NCBITaxon:28095","l":"Burkholderia gladioli","na":1,"nb":12,"a":[["MCSA%3A466","fusarinine-C ornithinesterase"]],"b":[["alkaloids/gladiofungin-a.yaml","gladiofungin A"],["alkaloids/gladiofungin-b.yaml","gladiofungin B"],["alkaloids/toxoflavin.yaml","toxoflavin"],["amino_acids_and_peptides/arsinothricin.yaml","arsinothricin"],["amino_acids_and_peptides/bolagladin-a.yaml","bolagladin A"],["fatty_acids/bongkrekic-acid-2.yaml","bongkrekic acid"]]},{"id":"NCBITaxon:60172","l":"Penicillium solitum","na":1,"nb":12,"a":[["TED%3AAF-A0A1V6R6Y6-F1-model_v4_TED01","TED novel fold AF-A0A1V6R6Y6-F1-model_v4_TED01"]],"b":[["polyketides/dihydrobisvertinolone.yaml","dihydrobisvertinolone"],["polyketides/sorbicillin.yaml","sorbicillin"],["polyketides/terrestric-acid.yaml","terrestric acid"],["polyketides/tetrahydrobisvertinolone.yaml","tetrahydrobisvertinolone"],["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"],["unclassified/penitrem-a.yaml","penitrem A"]]},{"id":"UniProt:P05129","l":"","na":12,"nb":1,"a":[["ComplexPortal%3ACPX-12748","-"],["ComplexPortal%3ACPX-19449","-"],["ComplexPortal%3ACPX-19476","-"],["ComplexPortal%3ACPX-24173","-"],["GO%3A0004698","calcium,diacylglycerol-dependent serine/threonine kinase activity"],["GO%3A0032425","positive regulation of mismatch repair"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P0A853","l":"","na":12,"nb":1,"a":[["GO%3A0060187","cell pole"],["GO%3A0080146","L-cysteine desulfhydrase activity"],["GO%3A0016829","lyase activity"],["GO%3A0030955","potassium ion binding"],["GO%3A0009034","tryptophanase activity"],["GO%3A0042431","indole metabolic process"]],"b":[["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]]},{"id":"UniProt:P31751","l":"","na":12,"nb":1,"a":[["ComplexPortal%3ACPX-10780","-"],["ComplexPortal%3ACPX-16948","-"],["ComplexPortal%3ACPX-22352","-"],["GO%3A0010748","negative regulation of long-chain fatty acid import across plasma membrane"],["GO%3A1903676","positive regulation of cap-dependent translational initiation"],["CDD%3Acd05595","STKc_PKB_beta"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P40261","l":"","na":12,"nb":1,"a":[["EC%3A2.1.1.1","nicotinamide N-methyltransferase"],["RHEA%3A23884","nicotinamide + S-adenosyl-L-methionine = 1-methylnicotinamide + S-adenosyl-L-homocysteine"],["GO%3A0008112","nicotinamide N-methyltransferase activity"],["GO%3A0030760","pyridine N-methyltransferase activity"],["GO%3A0006769","nicotinamide metabolic process"],["GO%3A0090312","positive regulation of protein deacetylation"]],"b":[["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"UniProt:P48454","l":"","na":12,"nb":1,"a":[["ComplexPortal%3ACPX-1112","Calcineurin-Calmodulin-AKAP5 complex, gamma-R1 variant"],["ComplexPortal%3ACPX-1118","Calcineurin-Calmodulin-AKAP5 complex, gamma-R2 variant"],["ComplexPortal%3ACPX-1001","Calcineurin-Calmodulin complex, gamma-R1 variant"],["ComplexPortal%3ACPX-1050","Calcineurin-Calmodulin complex, gamma-R2 variant"],["ComplexPortal%3ACPX-17012","-"],["ComplexPortal%3ACPX-17541","-"]],"b":[["amino_acids_and_peptides/cyclosporin-a.yaml","cyclosporin A"]]},{"id":"UniProt:Q08881","l":"","na":12,"nb":1,"a":[["GO%3A0046629","gamma-delta T cell activation"],["GO%3A0001865","NK T cell differentiation"],["InterPro%3AIPR001562","Zinc finger, Btk motif"],["CDD%3Acd01238","PH_Btk"],["CDD%3Acd05112","PTKc_Itk"],["CDD%3Acd10396","SH2_Tec_Itk"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":11,"nb":1,"a":[["Pfam%3APF01721","Class II bacteriocin"],["Pfam%3APF13700","Domain of unknown function (DUF4158)"],["Pfam%3APF07478","D-ala D-ala ligase C-terminus"],["Pfam%3APF01820","D-ala D-ala ligase N-terminus"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"],["PROSITE%3APS00843","D-alanine--D-alanine ligase signature 1"]],"b":[["amino_acids_and_peptides/enterocin-a.yaml","enterocin A"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":11,"nb":1,"a":[["Pfam%3APF07835","Bacterial aa3 type cytochrome c oxidase subunit IV"],["Pfam%3APF04828","Glutathione-dependent formaldehyde-activating enzyme"],["Pfam%3APF16448","LapD/MoxY periplasmic domain"],["Pfam%3APF17267","Family of unknown function (DUF5333)"],["Pfam%3APF17272","Family of unknown function (DUF5337)"],["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"]],"b":[["alkaloids/parabactin.yaml","parabactin"]]},{"id":"NCBITaxon:4113","l":"Solanum tuberosum","na":11,"nb":1,"a":[["Pfam%3APF02977","Carboxypeptidase A inhibitor"],["Pfam%3APF01474","Class-II DAHP synthetase family"],["Pfam%3APF23229","Alpha-glucan water dikinase, DUF7067"],["Pfam%3APF02446","4-alpha-glucanotransferase"],["Pfam%3APF22973","Alpha-glucan water dikinase, phosphohistidine-like domain"],["Pfam%3APF23166","Alpha-glucan water dikinase 1 Ig-like N-terminal domain"]],"b":[["fatty_acids/itaconic-acid.yaml","itaconic acid"]]},{"id":"UniProt:O60503","l":"","na":11,"nb":1,"a":[["ComplexPortal%3ACPX-10819","-"],["ComplexPortal%3ACPX-10882","-"],["ComplexPortal%3ACPX-14634","-"],["ComplexPortal%3ACPX-14903","-"],["ComplexPortal%3ACPX-17315","-"],["ComplexPortal%3ACPX-18747","-"]],"b":[["polyketides/chlortetracycline.yaml","chlortetracycline"]]},{"id":"UniProt:P00915","l":"","na":11,"nb":1,"a":[["ComplexPortal%3ACPX-11364","-"],["ComplexPortal%3ACPX-12060","-"],["ComplexPortal%3ACPX-14728","-"],["ComplexPortal%3ACPX-15000","-"],["ComplexPortal%3ACPX-25381","-"],["GO%3A0018820","cyanamide hydratase activity"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:Q9BX63","l":"","na":11,"nb":1,"a":[["ComplexPortal%3ACPX-4426","BRCA1-B complex"],["ComplexPortal%3ACPX-17429","-"],["ComplexPortal%3ACPX-26140","-"],["CDD%3Acd18788","SF2_C_XPD"],["CDD%3Acd17970","DEAHc_FancJ"],["InterPro%3AIPR006554","Helicase-like, DEXD box c2 type"]],"b":[["unclassified/telomestatin.yaml","telomestatin"]]},{"id":"DOI:10.1002/cbic.201000628","l":"","na":1,"nb":10,"a":[["NCBIfam%3ANF039627","DUF6023 family protein"]],"b":[["polyketides/6-anteisoheptadecyl-4-o-dihydrogeranyl-2-methoxyhydroquinone.yaml","6-anteisoheptadecyl-4-O-dihydrogeranyl-2-methoxyhydroquinone"],["polyketides/6-isoheptadecyl-4-o-dihydrogeranyl-2-methoxyhydroquinone.yaml","6-isoheptadecyl-4-O-dihydrogeranyl-2-methoxyhydroquinone"],["polyketides/6-palmityl-4-o-dihydrofarnesyl-2-methoxyhydroquinone.yaml","6-palmityl-4-O-dihydrofarnesyl-2-methoxyhydroquinone"],["polyketides/6-palmityl-4-o-geranyl-2-methoxyhydroquinone.yaml","6-palmityl-4-O-geranyl-2-methoxyhydroquinone"],["terpenoids/6-anteisoheptadecyl-4-o-dihydrofarnesyl-2-methoxyhydroquinone.yaml","6-anteisoheptadecyl-4-O-dihydrofarnesyl-2-methoxyhydroquinone"],["terpenoids/6-anteisoheptadecyl-4-o-geranyl-2-methoxyhydroquinone.yaml","6-anteisoheptadecyl-4-O-geranyl-2-methoxyhydroquinone"]]},{"id":"DOI:10.1021/jacs.2c01424","l":"","na":10,"nb":1,"a":[["NCBIfam%3ANF041359","GntG family PLP-dependent aldolase"],["NCBIfam%3ANF041366","guanitoxin biosynthesis heme-dependent pre-guanitoxin N-hydroxylase GntA"],["NCBIfam%3ANF041365","guanitoxin biosynthesis L-arginine gamma (S) hydroxylase"],["NCBIfam%3ANF041363","guanitoxin biosynthesis L-enduracididine beta-hydroxylase GntD"],["NCBIfam%3ANF041358","guanitoxin biosynthesis MATE family efflux transporter GntT"],["NCBIfam%3ANF041257","guanitoxin biosynthesis MBL fold metallo-hydrolase GntH"]],"b":[["alkaloids/guanitoxin.yaml","guanitoxin"]]},{"id":"NCBITaxon:116188","l":"Streptomyces coeruleorubidus","na":1,"nb":10,"a":[["Pfam%3APF13732","ATP-binding protein DrrA1-3-like, C-terminal domain"]],"b":[["amino_acids_and_peptides/pacidamycin-1.yaml","pacidamycin 1"],["amino_acids_and_peptides/pacidamycin-2.yaml","pacidamycin 2"],["amino_acids_and_peptides/pacidamycin-3.yaml","pacidamycin 3"],["amino_acids_and_peptides/pacidamycin-4.yaml","pacidamycin 4"],["amino_acids_and_peptides/pacidamycin-5.yaml","pacidamycin 5"],["amino_acids_and_peptides/pacidamycin-6.yaml","pacidamycin 6"]]},{"id":"NCBITaxon:257313","l":"Bordetella pertussis (strain Tohama I / ATCC BAA-589 / NCTC 13251)","na":10,"nb":1,"a":[["Pfam%3APF03440","Aerolysin/Pertussis toxin (APT) domain"],["Pfam%3APF07411","Domain of unknown function (DUF1508)"],["Pfam%3APF25988","CyaD, alpha-helical hairpin domain"],["Pfam%3APF03497","Anthrax toxin LF subunit"],["Pfam%3APF02537","CrcB-like protein, Camphor Resistance (CrcB)"],["Pfam%3APF16970","Type-1 fimbrial protein, A"]],"b":[["amino_acids_and_peptides/alcaligin.yaml","alcaligin"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":10,"nb":1,"a":[["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF09081","Glucan 1,4-alpha-maltotetraohydrolase, domain C"],["Pfam%3APF09459","Ethylbenzene dehydrogenase"],["Pfam%3APF08406","CbbQ/NirQ/NorQ C-terminal"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"],["Pfam%3APF18793","Nitrous oxide reductase propeller repeat 2"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"UniProt:P0A749","l":"","na":10,"nb":1,"a":[["GO%3A0008760","UDP-N-acetylglucosamine 1-carboxyvinyltransferase activity"],["GO%3A0019277","UDP-N-acetylgalactosamine biosynthetic process"],["NCBIfam%3ANF006873","UDP-N-acetylglucosamine 1-carboxyvinyltransferase"],["NCBIfam%3ATIGR01072","UDP-N-acetylglucosamine 1-carboxyvinyltransferase"],["CDD%3Acd01555","UdpNAET"],["InterPro%3AIPR001986","Enolpyruvate transferase domain"]],"b":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"]]},{"id":"UniProt:P14679","l":"","na":10,"nb":1,"a":[["GO%3A0004503","tyrosinase activity"],["GO%3A0006726","eye pigment biosynthetic process"],["GO%3A0006583","melanin biosynthetic process from tyrosine"],["GO%3A0042438","melanin biosynthetic process"],["InterPro%3AIPR002227","Tyrosinase copper-binding domain"],["Pfam%3APF00264","Common central domain of tyrosinase"]],"b":[["polyketides/kojic-acid.yaml","kojic acid"]]},{"id":"UniProt:P15884","l":"","na":10,"nb":1,"a":[["ComplexPortal%3ACPX-11961","-"],["ComplexPortal%3ACPX-14266","-"],["ComplexPortal%3ACPX-14268","-"],["ComplexPortal%3ACPX-14282","-"],["ComplexPortal%3ACPX-21052","-"],["ComplexPortal%3ACPX-26210","-"]],"b":[["alkaloids/toxoflavin.yaml","toxoflavin"]]},{"id":"UniProt:P41240","l":"","na":10,"nb":1,"a":[["EC%3A2.7.10.4","[Src-family] C-terminal protein kinase"],["ComplexPortal%3ACPX-11775","-"],["ComplexPortal%3ACPX-18631","-"],["ComplexPortal%3ACPX-19439","-"],["GO%3A0042997","negative regulation of Golgi to plasma membrane protein transport"],["GO%3A0060368","regulation of Fc receptor mediated stimulatory signaling pathway"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:4513","l":"Hordeum vulgare","na":9,"nb":1,"a":[["Pfam%3APF20241","Domain of unknown function (DUF6598)"],["PROSITE%3APS00771","Barwin domain signature 1"],["PROSITE%3APS00426","Cereal trypsin/alpha-amylase inhibitors family signature"],["PROSITE%3APS00725","Germin family signature"],["PROSITE%3APS00431","Small hydrophilic plant seed proteins signature"],["MCSA%3A397","alpha-amylase"]],"b":[["unclassified/roquefortine-c.yaml","roquefortine C"]]},{"id":"UniProt:P00811","l":"","na":9,"nb":1,"a":[["EC%3A3.5.2.6","beta-lactamase"],["RHEA%3A20401","a beta-lactam + H2O = a substituted beta-amino acid"],["GO%3A0017001","antibiotic catabolic process"],["NCBIfam%3ANF000185","BlaEC family class C beta-lactamase"],["NCBIfam%3ANF033085","class C beta-lactamase"],["NCBIfam%3ANF012173","CMY2/MIR/ACT/EC family class C beta-lactamase"]],"b":[["amino_acids_and_peptides/clavulanic-acid-2.yaml","clavulanic acid"]]},{"id":"UniProt:P23280","l":"","na":9,"nb":1,"a":[["ComplexPortal%3ACPX-11709","-"],["ComplexPortal%3ACPX-12376","-"],["ComplexPortal%3ACPX-12422","-"],["ComplexPortal%3ACPX-12445","-"],["ComplexPortal%3ACPX-13747","-"],["ComplexPortal%3ACPX-17694","-"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:P24666","l":"","na":9,"nb":1,"a":[["ComplexPortal%3ACPX-17111","-"],["ComplexPortal%3ACPX-18047","-"],["ComplexPortal%3ACPX-19744","-"],["ComplexPortal%3ACPX-26078","-"],["CDD%3Acd16343","LMWPTP"],["InterPro%3AIPR023485","Phosphotyrosine protein phosphatase I"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"UniProt:P43250","l":"","na":9,"nb":1,"a":[["ComplexPortal%3ACPX-15339","-"],["ComplexPortal%3ACPX-18479","-"],["ComplexPortal%3ACPX-21827","-"],["ComplexPortal%3ACPX-23485","-"],["ComplexPortal%3ACPX-26222","-"],["GO%3A0047696","beta-adrenergic receptor kinase activity"]],"b":[["carbohydrates/sangivamycin.yaml","sangivamycin"]]},{"id":"UniProt:Q14353","l":"","na":9,"nb":1,"a":[["ComplexPortal%3ACPX-17611","-"],["ComplexPortal%3ACPX-22207","-"],["ComplexPortal%3ACPX-25132","-"],["GO%3A0030731","guanidinoacetate N-methyltransferase activity"],["GO%3A0006601","creatine biosynthetic process"],["GO%3A0006600","creatine metabolic process"]],"b":[["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"UniProt:Q8JUX6","l":"","na":1,"nb":9,"a":[["proteintraitsmech%3ABIOLIP_LFO","LFO-binding site"]],"b":[["alkaloids/ergotamine.yaml","ergotamine"],["amino_acids_and_peptides/leupeptin-a.yaml","leupeptin A"],["amino_acids_and_peptides/linaclotide.yaml","linaclotide"],["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"],["polyketides/kojic-acid.yaml","kojic acid"],["polyketides/monactin.yaml","monactin"]]},{"id":"CHEBI:58515","l":"","na":8,"nb":1,"a":[["EC%3A1.14.11.55","ectoine hydroxylase"],["EC%3A3.5.4.44","ectoine hydrolase"],["EC%3A4.2.1.108","ectoine synthase"],["RHEA%3A17281","(2S)-4-acetamido-2-aminobutanoate = L-ectoine + H2O"],["RHEA%3A45740","L-ectoine + 2-oxoglutarate + O2 = 5-hydroxyectoine + succinate + CO2"],["RHEA%3A52304","L-ectoine + H2O = (2S)-2-acetamido-4-aminobutanoate"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"DOI:10.1002/anie.202015105","l":"","na":1,"nb":8,"a":[["NCBIfam%3ANF055241","Acyl halogenase CylC-like"]],"b":[["unclassified/hapalosin-c.yaml","hapalosin C"],["unclassified/hapalosin-d.yaml","hapalosin D"],["unclassified/hapalosin-e.yaml","hapalosin E"],["unclassified/hapalosin-f.yaml","hapalosin F"],["unclassified/hapalosin-g.yaml","hapalosin G"],["unclassified/nocuolactylate-a.yaml","Nocuolactylate A"]]},{"id":"DOI:10.1111/1751-7915.12110","l":"","na":8,"nb":1,"a":[["NCBIfam%3ANF053550","BtrH-related acyltransferase DarH"],["NCBIfam%3ANF053536","DarG family dialkylresorcinol biosynthesis protein"],["NCBIfam%3ANF053539","dialkylresorcinol biosynthesis protein DarB"],["NCBIfam%3ANF053545","flexirubin biosynthesis protein DarG"],["NCBIfam%3ANF053551","flexirubin biosynthesis putative acyl-CoA ligase FlxY"],["NCBIfam%3ANF053542","flexirubin biosynthesis SDR family reductase FlxB"]],"b":[["polyketides/flexirubin.yaml","flexirubin"]]},{"id":"DOI:10.1128/AAC.01226-09","l":"","na":8,"nb":1,"a":[["RHEA%3A36263","hydroxyurea + O-acetyl-L-serine = O-ureido-L-serine + acetate + H(+)"],["RHEA%3A36791","N(omega)-hydroxy-L-arginine + H2O = hydroxyurea + L-ornithine"],["RHEA%3A36711","O-ureido-D-serine + ATP + H2O + H(+) = D-cycloserine + NH4(+) + ADP + CO2 + phosphate"],["RHEA%3A36707","O-ureido-L-serine = O-ureido-D-serine"],["NCBIfam%3ANF058666","D-cycloserine synthetase"],["NCBIfam%3ANF039383","DUF6225 family protein"]],"b":[["amino_acids_and_peptides/cycloserine.yaml","cycloserine"]]},{"id":"NCBITaxon:1703937","l":"Streptomyces sp. CB03234","na":1,"nb":8,"a":[["TED%3AAF-A0A1Q5LKM4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q5LKM4-F1-model_v4_TED02"]],"b":[["terpenoids/tiancilactone-a.yaml","tiancilactone A"],["terpenoids/tiancilactone-b.yaml","tiancilactone B"],["terpenoids/tiancilactone-c.yaml","tiancilactone C"],["terpenoids/tiancilactone-d.yaml","tiancilactone D"],["terpenoids/tiancilactone-e.yaml","tiancilactone E"],["terpenoids/tiancilactone-f.yaml","tiancilactone F"]]},{"id":"NCBITaxon:345341","l":"Kutzneria sp. 744","na":1,"nb":8,"a":[["TED%3AAF-W7SU68-F1-model_v4_TED01","TED novel fold AF-W7SU68-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/kutzneride-6.yaml","Kutzneride 6"],["unclassified/kutzneride-1.yaml","Kutzneride 1"],["unclassified/kutzneride-2.yaml","Kutzneride 2"],["unclassified/kutzneride-3.yaml","Kutzneride 3"],["unclassified/kutzneride-4.yaml","Kutzneride 4"],["unclassified/kutzneride-5.yaml","Kutzneride 5"]]},{"id":"NCBITaxon:380703","l":"Aeromonas hydrophila subsp. hydrophila (strain ATCC 7966 / DSM 30187 / BCRC 13018 / CCUG 14551 / JCM 1027 / KCTC 2358 / NCIMB 9240 / NCTC 8049)","na":8,"nb":1,"a":[["Pfam%3APF26341","tRNA 2-selenouridine synthase AAA domain"],["Pfam%3APF11890","Domain of unknown function (DUF3410)"],["Pfam%3APF11944","Protein of unknown function (DUF3461)"],["Pfam%3APF04356","Protein of unknown function (DUF489)"],["Pfam%3APF12563","Hemolytic toxin N terminal"],["Pfam%3APF04362","Bacterial Fe(2+) trafficking"]],"b":[["amino_acids_and_peptides/amonabactin-p-750.yaml","amonabactin P 750"]]},{"id":"NCBITaxon:40318","l":"Streptomyces nodosus","na":1,"nb":8,"a":[["TED%3AAF-A0A0B5DA96-F1-model_v4_TED01","TED novel fold AF-A0A0B5DA96-F1-model_v4_TED01"]],"b":[["alkaloids/melanin.yaml","melanin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/ectoine.yaml","ectoine"],["amino_acids_and_peptides/siamycin-i.yaml","siamycin I"],["fatty_acids/butyrolactone.yaml","γ-butyrolactone"]]},{"id":"NCBITaxon:420953","l":"Paraburkholderia megapolitana","na":1,"nb":8,"a":[["proteintraitsmech%3AELIFE109154_GrbD","GrbD-type graminine biosynthesis protein family"]],"b":[["amino_acids_and_peptides/megapolibactin-a.yaml","megapolibactin A"],["amino_acids_and_peptides/megapolibactin-acyc.yaml","megapolibactin Acyc"],["amino_acids_and_peptides/megapolibactin-b.yaml","megapolibactin B"],["amino_acids_and_peptides/megapolibactin-c.yaml","megapolibactin C"],["amino_acids_and_peptides/megapolibactin-d.yaml","megapolibactin D"],["amino_acids_and_peptides/megapolibactin-e.yaml","megapolibactin E"]]},{"id":"NCBITaxon:492670","l":"Bacillus velezensis","na":1,"nb":8,"a":[["TED%3AAF-A0A7S9EWF1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S9EWF1-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["polyketides/bacillaene.yaml","bacillaene"],["polyketides/difficidin.yaml","difficidin"],["polyketides/macrolactin-h.yaml","macrolactin H"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":1,"nb":8,"a":[["Pfam%3APF07335","Fungal chitosanase of glycosyl hydrolase group 75"]],"b":[["amino_acids_and_peptides/ferrichrome-2.yaml","ferrichrome"],["polyketides/2-acetyl-1-3-6-8-tetrahydroxynaphthalene.yaml","2-acetyl-1,3,6,8-tetrahydroxynaphthalene"],["polyketides/kojic-acid.yaml","kojic acid"],["terpenoids/aphidicolin.yaml","aphidicolin"],["unclassified/2-oxocyclopiazonic-acid.yaml","2-oxocyclopiazonic acid"],["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"NCBITaxon:78245","l":"Xanthobacter autotrophicus (strain ATCC BAA-1158 / Py2)","na":8,"nb":1,"a":[["Pfam%3APF08882","Acetone carboxylase gamma subunit"],["Pfam%3APF19278","Hydantoinase/oxoprolinase C-terminal domain"],["IEDB%3A126169","epitope GQMYNMNTL"],["Pfam%3APF05378","Hydantoinase/oxoprolinase N-terminal region"],["Pfam%3APF01968","Hydantoinase/oxoprolinase"],["Pfam%3APF02538","Hydantoinase B/oxoprolinase"]],"b":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]]},{"id":"UniProt:O96017","l":"","na":8,"nb":1,"a":[["ComplexPortal%3ACPX-16839","-"],["ComplexPortal%3ACPX-21166","-"],["GO%3A0044773","mitotic DNA damage checkpoint signaling"],["CDD%3Acd14084","STKc_Chk2"],["CDD%3Acd22666","FHA_CHK2"],["ELM%3AELME000425","DOC_PP2A_B56_1"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:Q8TD30","l":"","na":8,"nb":1,"a":[["ComplexPortal%3ACPX-11669","-"],["ComplexPortal%3ACPX-11684","-"],["ComplexPortal%3ACPX-18140","-"],["ComplexPortal%3ACPX-18547","-"],["ComplexPortal%3ACPX-25098","-"],["ComplexPortal%3ACPX-26258","-"]],"b":[["polyketides/monactin.yaml","monactin"]]},{"id":"CHEBI:16089","l":"","na":7,"nb":1,"a":[["EC%3A1.14.15.35","6-deoxyerythronolide B hydroxylase"],["EC%3A2.3.1.94","6-deoxyerythronolide-B synthase"],["RHEA%3A40299","6-deoxyerythronolide B + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = erythronolide B + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"],["RHEA%3A23068","6 (S)-methylmalonyl-CoA + propanoyl-CoA + 6 NADPH + 12 H(+) = 6-deoxyerythronolide B + 6 CO2 + 6 NADP(+) + 7 CoA + H2O"],["MCSA%3A694","6-deoxyerythronolide B hydroxylase"],["MCSA%3A602","6-deoxyerythronolide-B synthase"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"DOI:10.1016/j.chembiol.2013.09.021","l":"","na":7,"nb":1,"a":[["RHEA%3A50408","1-(2-aminophenyl)decane-1,3-dione = 2-heptyl-4(1H)-quinolone + H2O"],["RHEA%3A50396","(2-aminobenzoyl)acetate + octanoyl-CoA + H(+) = 2-heptyl-4(1H)-quinolone + CO2 + CoA + H2O"],["RHEA%3A50472","anthraniloyl-CoA + malonyl-CoA + H(+) = (2-aminobenzoyl)acetyl-CoA + CO2 + CoA"],["RHEA%3A50400","L-cysteinyl-[PqsC protein] + octanoyl-CoA = S-octanoyl-L-cysteinyl-[PqsC protein] + CoA"],["RHEA%3A50476","L-cysteinyl-[PqsD protein] + anthraniloyl-CoA = S-anthraniloyl-L-cysteinyl-[PqsD protein] + CoA"],["RHEA%3A38543","S-anthraniloyl-L-cysteinyl-[PqsD protein] + malonyl-CoA + H(+) = L-cysteinyl-[PqsD protein] + (2-aminobenzoyl)acetyl-CoA + CO2"]],"b":[["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"]]},{"id":"NCBITaxon:1314807","l":"Dendrothele bispora (strain CBS 962.96)","na":7,"nb":1,"a":[["TED%3AAF-A0A4S8L719-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S8L719-F1-model_v4_TED01"],["TED%3AAF-A0A4S8LBA1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4S8LBA1-F1-model_v4_TED02"],["TED%3AAF-A0A4S8KM73-F1-model_v4_TED02","TED novel fold AF-A0A4S8KM73-F1-model_v4_TED02"],["TED%3AAF-A0A4S8KTD4-F1-model_v4_TED01","TED novel fold AF-A0A4S8KTD4-F1-model_v4_TED01"],["TED%3AAF-A0A4S8LE48-F1-model_v4_TED01","TED novel fold AF-A0A4S8LE48-F1-model_v4_TED01"],["TED%3AAF-A0A4S8MMV1-F1-model_v4_TED02","TED novel fold AF-A0A4S8MMV1-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/dendrothelin-a.yaml","dendrothelin A"]]},{"id":"NCBITaxon:391037","l":"Salinispora arenicola CNS-205","na":1,"nb":7,"a":[["Pfam%3APF12072","RNase Y N-terminal region"]],"b":[["alkaloids/lymphostin.yaml","lymphostin"],["alkaloids/lymphostinol.yaml","lymphostinol"],["alkaloids/neolymphostin-b.yaml","neolymphostin b"],["alkaloids/neolymphostinol-b.yaml","neolymphostinol B"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/cyclomarin-d.yaml","cyclomarin D"]]},{"id":"NCBITaxon:4097","l":"Nicotiana tabacum","na":7,"nb":1,"a":[["Pfam%3APF02041","Auxin binding protein"],["Pfam%3APF12481","Aluminium induced protein"],["Pfam%3APF11995","Domain of unknown function (DUF3490)"],["Pfam%3APF07172","Glycine rich protein family"],["PROSITE%3APS00157","Ribulose bisphosphate carboxylase large chain active site"],["MCSA%3A265","5-epi-aristolochene synthase"]],"b":[["terpenoids/capsidiol.yaml","capsidiol"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":7,"nb":1,"a":[["Pfam%3APF11766","Agglutinin-like protein, N-terminal domain"],["Pfam%3APF16856","Cell division control protein 4 dimerisation domain"],["Pfam%3APF18325","Fatty acid synthase subunit alpha Acyl carrier domain"],["Pfam%3APF18314","Fatty acid synthase type I helical domain"],["Pfam%3APF17828","N-terminal domain in fatty acid synthase subunit beta"],["Pfam%3APF05388","Carboxypeptidase Y pro-peptide"]],"b":[["unclassified/antimycin-a1b.yaml","antimycin A1B"]]},{"id":"NCBITaxon:5580","l":"Aureobasidium pullulans","na":7,"nb":1,"a":[["TED%3AAF-A0A4S8XR15-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S8XR15-F1-model_v4_TED01"],["TED%3AAF-A0A4S8YVB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S8YVB9-F1-model_v4_TED01"],["TED%3AAF-A0A4S9KUA9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S9KUA9-F1-model_v4_TED01"],["TED%3AAF-A0A4T0BHY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4T0BHY6-F1-model_v4_TED01"],["TED%3AAF-A0A4S9MB45-F1-model_v4_TED01","TED novel fold AF-A0A4S9MB45-F1-model_v4_TED01"],["TED%3AAF-A0A4S9RE93-F1-model_v4_TED01","TED novel fold AF-A0A4S9RE93-F1-model_v4_TED01"]],"b":[["unclassified/abt1.yaml","AbT1"]]},{"id":"NCBITaxon:672","l":"Vibrio vulnificus","na":7,"nb":1,"a":[["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF08021","Siderophore-interacting FAD-binding domain"],["Pfam%3APF11575","FhuF 2Fe-2S C-terminal domain"],["Pfam%3APF27349","IcsB middle domain"],["Pfam%3APF21735","C-terminal repeat from RTX toxins"],["Pfam%3APF07634","RtxA repeat"]],"b":[["alkaloids/vulnibactin.yaml","vulnibactin"]]},{"id":"NCBITaxon:67339","l":"Streptomyces orinoci","na":1,"nb":7,"a":[["Pfam%3APF09277","Erythronolide synthase, docking"]],"b":[["polyketides/aureothin.yaml","aureothin"],["polyketides/orinocin.yaml","orinocin"],["polyketides/spectinabilin.yaml","spectinabilin"],["terpenoids/snf4435c.yaml","SNF4435C"],["terpenoids/snf4435d.yaml","SNF4435D"],["unclassified/neoantimycin-2.yaml","neoantimycin"]]},{"id":"NCBITaxon:68280","l":"Streptomyces violaceusniger","na":1,"nb":7,"a":[["TED%3AAF-A0A0X3VKA0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0X3VKA0-F1-model_v4_TED01"]],"b":[["fatty_acids/desulfoclethramycin.yaml","desulfoclethramycin"],["polyketides/be-24566b.yaml","BE-24566B"],["polyketides/elaiophylin.yaml","elaiophylin"],["polyketides/meridamycin-2.yaml","meridamycin"],["polyketides/nigericin.yaml","nigericin"],["terpenoids/2-methylisoborneol.yaml","2-methylisoborneol"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":7,"nb":1,"a":[["Pfam%3APF16376","N-terminal domain of fragilysin"],["MCSA%3A15","beta-lactamase (Class B1)"],["TED%3AAF-A0A412XR06-F1-model_v4_TED03","TED novel fold AF-A0A412XR06-F1-model_v4_TED03"],["TED%3AAF-A0A4V1EUI2-F1-model_v4_TED02","TED novel fold AF-A0A4V1EUI2-F1-model_v4_TED02"],["TED%3AAF-A0A5C6IXH5-F1-model_v4_TED01","TED novel fold AF-A0A5C6IXH5-F1-model_v4_TED01"],["TED%3AAF-A0A5C6L6G9-F1-model_v4_TED02","TED novel fold AF-A0A5C6L6G9-F1-model_v4_TED02"]],"b":[["fatty_acids/galactosylceramide.yaml","α-galactosylceramide"]]},{"id":"UniProt:P27296","l":"","na":7,"nb":1,"a":[["GO%3A0033677","DNA/RNA helicase activity"],["NCBIfam%3ANF008729","ATP-dependent DNA helicase DinG"],["InterPro%3AIPR006555","ATP-dependent helicase, C-terminal"],["InterPro%3AIPR006554","Helicase-like, DEXD box c2 type"],["InterPro%3AIPR014013","Helicase superfamily 1/2, ATP-binding domain, DinG/Rad3-type"],["InterPro%3AIPR010614","RAD3-like helicase, DEAD"]],"b":[["unclassified/telomestatin.yaml","telomestatin"]]},{"id":"UniProt:P50135","l":"","na":7,"nb":1,"a":[["GO%3A0046539","histamine N-methyltransferase activity"],["GO%3A0001695","histamine catabolic process"],["GO%3A0001692","histamine metabolic process"],["GO%3A0006548","L-histidine catabolic process"],["Pfam%3APF13489","Methyltransferase domain"],["PROSITE%3APS51597","Histamine N-methyltransferase (EC 2.1.1.8) family profile"]],"b":[["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"UniProt:Q8IZQ5","l":"","na":7,"nb":1,"a":[["ComplexPortal%3ACPX-14418","-"],["ComplexPortal%3ACPX-17411","-"],["ComplexPortal%3ACPX-17423","-"],["ComplexPortal%3ACPX-17969","-"],["ComplexPortal%3ACPX-19650","-"],["ComplexPortal%3ACPX-22629","-"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"UniProt:Q92731","l":"","na":7,"nb":1,"a":[["GO%3A0030284","nuclear estrogen receptor activity"],["CDD%3Acd07171","NR_DBD_ER"],["CDD%3Acd06949","NR_LBD_ER"],["InterPro%3AIPR021064","Estrogen receptor beta-like, N-terminal"],["Pfam%3APF12497","Estrogen receptor beta"],["ELM%3AELME000053","MOD_GSK3_1"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:Q96LB1","l":"","na":7,"nb":1,"a":[["GO%3A0004985","G protein-coupled opioid receptor activity"],["GO%3A1990595","mast cell secretagogue receptor activity"],["GO%3A0045576","mast cell activation"],["CDD%3Acd15106","7tmA_MrgprX-like"],["InterPro%3AIPR017452","GPCR, rhodopsin-like, 7TM"],["PROSITE%3APS50262","G-protein coupled receptors family 1 profile"]],"b":[["alkaloids/thebaine.yaml","thebaine"]]},{"id":"UniProt:Q9FUZ2","l":"","na":7,"nb":1,"a":[["GO%3A0042586","peptide deformylase activity"],["NCBIfam%3ANF001159","peptide deformylase"],["NCBIfam%3ATIGR00079","peptide deformylase"],["CDD%3Acd00487","Pep_deformylase"],["Pfam%3APF01327","Polypeptide deformylase"],["InterPro%3AIPR036821","Peptide deformylase superfamily"]],"b":[["amino_acids_and_peptides/actinonin.yaml","actinonin"]]},{"id":"CHEBI:16536","l":"orcinol","na":6,"nb":1,"a":[["EC%3A1.14.13.6","orcinol 2-monooxygenase"],["EC%3A4.1.1.58","orsellinate decarboxylase"],["RHEA%3A63072","3 malonyl-CoA + acetyl-CoA + 3 H(+) = orcinol + 4 CO2 + 4 CoA"],["RHEA%3A19601","orcinol + NADH + O2 + H(+) = 2,3,5-trihydroxytoluene + NAD(+) + H2O"],["RHEA%3A80563","orcinol + S-adenosyl-L-methionine = 3-methoxy-5-methylphenol + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A16733","orsellinate + H(+) = orcinol + CO2"]],"b":[["unclassified/orcinol.yaml","orcinol"]]},{"id":"CHEBI:18365","l":"naphthalene-1,3,6,8-tetrol","na":6,"nb":1,"a":[["EC%3A1.1.1.252","tetrahydroxynaphthalene reductase"],["EC%3A2.3.1.233","1,3,6,8-tetrahydroxynaphthalene synthase"],["RHEA%3A41524","5 malonyl-CoA + 5 H(+) = naphthalene-1,3,6,8-tetrol + 5 CO2 + 5 CoA + H2O"],["RHEA%3A62700","naphtopyrone YWA1 + H2O = naphthalene-1,3,6,8-tetrol + acetoacetate + H(+)"],["RHEA%3A21908","scytalone + NADP(+) = naphthalene-1,3,6,8-tetrol + NADPH + H(+)"],["MCSA%3A891","Tetrahydroxynaphthalene reductase"]],"b":[["polyketides/naphthalene-1-3-6-8-tetrol.yaml","naphthalene-1,3,6,8-tetrol"]]},{"id":"CHEBI:63677","l":"","na":6,"nb":1,"a":[["EC%3A1.14.13.154","erythromycin 12 hydroxylase"],["EC%3A2.1.1.254","erythromycin 3'-O-methyltransferase"],["EC%3A2.4.1.278","3-alpha-mycarosylerythronolide B desosaminyl transferase"],["RHEA%3A32091","3-O-alpha-L-mycarosylerythronolide B + dTDP-alpha-D-desosamine = erythromycin D + dTDP + H(+)"],["RHEA%3A32631","erythromycin D + NADPH + O2 + H(+) = erythromycin C + NADP(+) + H2O"],["RHEA%3A32651","erythromycin D + S-adenosyl-L-methionine = erythromycin B + S-adenosyl-L-homocysteine + H(+)"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"DOI:10.1016/j.cell.2016.12.021","l":"","na":1,"nb":6,"a":[["NCBIfam%3ANF039691","DUF6219 family protein"]],"b":[["alkaloids/pzn10.yaml","PZN10"],["alkaloids/pzn11.yaml","PZN11"],["alkaloids/pzn5.yaml","PZN5"],["alkaloids/pzn6.yaml","PZN6"],["alkaloids/pzn7.yaml","PZN7"],["alkaloids/pzn9.yaml","PZN9"]]},{"id":"DOI:10.1073/pnas.0501424102","l":"","na":6,"nb":1,"a":[["RHEA%3A63356","(1S,4R)-2-(C-substituted-aminomethyl)-4-acyl-2-thiazoline-[protein] + O2 = (S)-2-(C-substituted-aminomethyl)-4-acyl-1,3-thiazole-[protein] + H2O2"],["RHEA%3A63360","(S,S)-2-(C-substituted-aminomethyl)-4-acyl-2-oxazoline-[protein] + O2 = (S)-2-(C-substituted-aminomethyl)-4-acyl-1,3-oxazole-[protein] + H2O2"],["RHEA%3A63364","(S,S)-2-(C-substituted-aminomethyl)-4-acyl-5-methyl-2-oxazoline-[protein] + O2 = (S)-2-(C-substituted-aminomethyl)-4-acyl-5-methyl-1,3-oxazole-[protein] + H2O2"],["InterPro%3AIPR031035","Cyanobactin cluster PatC/TenC/TruC protein"],["NCBIfam%3ATIGR04447","cyanobactin biosynthesis PatC/TenC/TruC family protein"],["NCBIfam%3ATIGR03895","PatA/PatG family cyanobactin maturation protease"]],"b":[["amino_acids_and_peptides/patellamide-a.yaml","patellamide A"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":6,"nb":1,"a":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF02963","Restriction endonuclease EcoRI"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["PROSITE%3APS00974","Mannitol dehydrogenases signature"],["PROSITE%3APS00567","Phosphoribulokinase signature"],["MCSA%3A701","dimethylsulfoxide reductase"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:128403","l":"Scytonema hofmannii PCC 7110","na":1,"nb":6,"a":[["TED%3AAF-A0A139X3P3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A139X3P3-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/scytocyclamide-a.yaml","scytocyclamide A"],["amino_acids_and_peptides/scytocyclamide-a2.yaml","scytocyclamide A2"],["amino_acids_and_peptides/scytocyclamide-b.yaml","scytocyclamide B"],["amino_acids_and_peptides/scytocyclamide-b2.yaml","scytocyclamide B2"],["amino_acids_and_peptides/scytocyclamide-b3.yaml","scytocyclamide B3"],["amino_acids_and_peptides/scytocyclamide-c.yaml","scytocyclamide C"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":6,"nb":1,"a":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF10779","Haemolysin XhlA"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF08181","DegQ (SacQ) family"],["Pfam%3APF08057","Erythromycin resistance leader peptide"],["Pfam%3APF14867","Lantibiotic alpha"]],"b":[["amino_acids_and_peptides/bacitracin.yaml","bacitracin"]]},{"id":"NCBITaxon:1877","l":"Micromonospora echinospora","na":1,"nb":6,"a":[["Pfam%3APF07091","Ribosomal RNA methyltransferase (FmrO)"]],"b":[["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/gentamicin-2.yaml","gentamicin"],["carbohydrates/gentamicin.yaml","gentamicin"],["polyketides/1-6-dihydro-8-propylanthraquinone.yaml","1,6-dihydro-8-propylanthraquinone"],["polyketides/calicheamicin.yaml","calicheamicin"],["polyketides/tiacumicin-b.yaml","tiacumicin B"]]},{"id":"NCBITaxon:1920","l":"Streptomyces nigrescens","na":1,"nb":6,"a":[["Pfam%3APF03995","Peptidase inhibitor family I36"]],"b":[["alkaloids/5athq-10a.yaml","5aTHQ-10a"],["alkaloids/5athq-9i.yaml","5aTHQ-9i"],["alkaloids/5athq-9n.yaml","5aTHQ-9n"],["alkaloids/stams-9i.yaml","STAMs-9i"],["alkaloids/stams-9n.yaml","STAMs-9n"],["polyketides/phoslactomycin-b.yaml","phoslactomycin B"]]},{"id":"NCBITaxon:1930","l":"Streptomyces scabiei","na":1,"nb":6,"a":[["TED%3AAF-A0A086GLG9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A086GLG9-F1-model_v4_TED01"]],"b":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"],["amino_acids_and_peptides/thaxtomin-c.yaml","thaxtomin C"],["polyketides/oronofacic-acid.yaml","oronofacic acid"],["unclassified/n-coronafacoyl-l-isoleucine.yaml","N-coronafacoyl-L-isoleucine"],["unclassified/thaxtomin-a.yaml","thaxtomin A"],["unclassified/thaxtomin-b.yaml","thaxtomin B"]]},{"id":"NCBITaxon:278992","l":"Streptomyces ambofaciens ATCC 23877","na":1,"nb":6,"a":[["Pfam%3APF00553","Cellulose binding domain"]],"b":[["alkaloids/congocidine.yaml","congocidine"],["polyketides/spiramycin.yaml","spiramycin"],["polyketides/stambomycin-a.yaml","stambomycin A"],["polyketides/stambomycin-b.yaml","stambomycin B"],["polyketides/stambomycin-c.yaml","stambomycin C"],["polyketides/stambomycin-d.yaml","stambomycin D"]]},{"id":"NCBITaxon:3879","l":"Medicago sativa","na":6,"nb":1,"a":[["Pfam%3APF02095","Extensin-like protein"],["Pfam%3APF02431","Chalcone-flavanone isomerase"],["PROSITE%3APS00441","Chalcone and stilbene synthases active site"],["MCSA%3A621","caffeate O-methyltransferase"],["MCSA%3A196","chalcone isomerase"],["MCSA%3A355","naringenin-chalcone synthase"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:46472","l":"Aspergillus versicolor","na":1,"nb":6,"a":[["Pfam%3APF13810","Domain of unknown function (DUF4185)"]],"b":[["alkaloids/psychrophilin-f.yaml","psychrophilin F"],["alkaloids/psychrophilin-g.yaml","psychrophilin G"],["polyketides/sterigmatocystin.yaml","sterigmatocystin"],["unclassified/chevalone-e.yaml","chevalone E"],["unclassified/notoamide-a.yaml","notoamide A"],["unclassified/psychrophilin-h.yaml","psychrophilin H"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":6,"nb":1,"a":[["IDPO%3A0000037","molecular recognition display site"],["Pfam%3APF05403","Plasmodium histidine-rich protein (HRPII/III)"],["Pfam%3APF17986","EMP3-KAHRP-like N-terminal domain"],["Pfam%3APF03805","Cytoadherence-linked asexual protein"],["Pfam%3APF06589","Circumsporozoite-related antigen (CRA)"],["TED%3AAF-Q9U431-F1-model_v4_TED01","TED novel fold AF-Q9U431-F1-model_v4_TED01"]],"b":[["alkaloids/congocidine.yaml","congocidine"]]},{"id":"NCBITaxon:62977","l":"Acinetobacter baylyi (strain ATCC 33305 / BD413 / ADP1)","na":6,"nb":1,"a":[["Pfam%3APF03594","Benzoate membrane transport protein"],["Pfam%3APF27541","Citrate utilization protein B"],["Pfam%3APF05232","Chlorhexidine efflux transporter"],["PROSITE%3APS00083","Intradiol ring-cleavage dioxygenases signature"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"],["Pfam%3APF11846","Virulence factor membrane-bound polymerase, C-terminal"]],"b":[["amino_acids_and_peptides/fimsbactin-a.yaml","fimsbactin A"]]},{"id":"NCBITaxon:882378","l":"","na":1,"nb":6,"a":[["Pfam%3APF01983","Guanylyl transferase CofC like"]],"b":[["amino_acids_and_peptides/endopyrrole-b.yaml","endopyrrole B"],["amino_acids_and_peptides/holrhizin-a.yaml","holrhizin A"],["amino_acids_and_peptides/holrhizin-b.yaml","holrhizin B"],["amino_acids_and_peptides/holrhizin-c.yaml","holrhizin C"],["amino_acids_and_peptides/holrhizin-d.yaml","holrhizin D"],["unclassified/endopyrrole-a.yaml","endopyrrole A"]]},{"id":"UniProt:Q9XUB2","l":"","na":6,"nb":1,"a":[["GO%3A0008187","poly-pyrimidine tract binding"],["InterPro%3AIPR000571","Zinc finger, CCCH-type"],["Pfam%3APF00642","Zinc finger C-x8-C-x5-C-x3-H type (and similar)"],["InterPro%3AIPR036855","Zinc finger, CCCH-type superfamily"],["PROSITE%3APS50103","Zinc finger C3H1-type profile"],["CATH%3A4.10.1000.10","Zinc finger, CCCH-type"]],"b":[["polyketides/pyrophen.yaml","pyrophen"]]},{"id":"CHEBI:27977","l":"","na":5,"nb":1,"a":[["EC%3A1.14.15.35","6-deoxyerythronolide B hydroxylase"],["EC%3A2.4.1.328","erythronolide mycarosyltransferase"],["RHEA%3A40299","6-deoxyerythronolide B + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = erythronolide B + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"],["RHEA%3A41576","dTDP-beta-L-mycarose + erythronolide B = 3-O-alpha-L-mycarosylerythronolide B + dTDP + H(+)"],["MCSA%3A694","6-deoxyerythronolide B hydroxylase"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"CHEBI:58572","l":"N-[(5S)-5-ammonio-5-carboxylatopentanoyl]-L-cysteinyl-D-valinate","na":5,"nb":1,"a":[["EC%3A1.21.3.1","isopenicillin-N synthase"],["EC%3A6.3.2.26","N-(5-amino-5-carboxypentanoyl)-L-cysteinyl-D-valine synthase"],["RHEA%3A23196","L-2-aminoadipate + L-valine + L-cysteine + 3 ATP + H2O = N-[(5S)-5-amino-5-carboxypentanoyl]-L-cysteinyl-D-valine + 3 AMP + 3 diphosphate + 3 H(+)"],["RHEA%3A22428","N-[(5S)-5-amino-5-carboxypentanoyl]-L-cysteinyl-D-valine + O2 = isopenicillin N + 2 H2O"],["MCSA%3A145","isopenicillin-N synthase"]],"b":[["amino_acids_and_peptides/n-5s-5-ammonio-5-carboxylatopentanoyl-l-cysteinyl-d-valinate.yaml","N-[(5S)-5-ammonio-5-carboxylatopentanoyl]-L-cysteinyl-D-valinate"]]},{"id":"CHEBI:62219","l":"2-heptyl-4-quinolone","na":5,"nb":1,"a":[["EC%3A1.14.13.182","2-heptyl-3-hydroxy-4(1H)-quinolone synthase"],["EC%3A2.3.1.230","2-heptyl-4(1H)-quinolone synthase"],["RHEA%3A50408","1-(2-aminophenyl)decane-1,3-dione = 2-heptyl-4(1H)-quinolone + H2O"],["RHEA%3A50396","(2-aminobenzoyl)acetate + octanoyl-CoA + H(+) = 2-heptyl-4(1H)-quinolone + CO2 + CoA + H2O"],["RHEA%3A37871","2-heptyl-4(1H)-quinolone + NADH + O2 + H(+) = 2-heptyl-3-hydroxy-4(1H)-quinolone + NAD(+) + H2O"]],"b":[["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"]]},{"id":"CHEBI:90888","l":"aurachin C","na":5,"nb":1,"a":[["EC%3A1.14.13.222","aurachin C monooxygenase/isomerase"],["RHEA%3A49000","aurachin C + NADH + O2 + H(+) = 4-hydroxy-2-methyl-3-oxo-4-[(2E,6E)-farnesyl]-3,4-dihydroquinoline 1-oxide + NAD(+) + H2O"],["RHEA%3A49012","aurachin C + NADH + O2 + H(+) = aurachin C epoxide + NAD(+) + H2O"],["RHEA%3A49004","aurachin C + NADPH + O2 + H(+) = 4-hydroxy-2-methyl-3-oxo-4-[(2E,6E)-farnesyl]-3,4-dihydroquinoline 1-oxide + NADP(+) + H2O"],["RHEA%3A49008","aurachin C + NADPH + O2 + H(+) = aurachin C epoxide + NADP(+) + H2O"]],"b":[["alkaloids/aurachin-c.yaml","aurachin C"]]},{"id":"DOI:10.1016/j.str.2007.12.020","l":"","na":5,"nb":1,"a":[["InterPro%3AIPR034136","Topoisomerase 6 subunit A/Spo11, TOPRIM domain"],["InterPro%3AIPR049333","Type II DNA topoisomerase VI subunit A, all-beta domain"],["NCBIfam%3ANF044616","All-beta domain in DNA topoisomerase VI alpha subunit"],["NCBIfam%3ANF044723","Topoisomerase 6 subunit A/Spo11, Toprim domain"],["PROSITE%3APDOC52041","Topoisomerase (Topo) IIB-type catalytic"]],"b":[["polyketides/radicicol.yaml","radicicol"]]},{"id":"DOI:10.1128/JB.181.13.4118-4124.1999","l":"","na":5,"nb":1,"a":[["InterPro%3AIPR024719","HpaB/PvcC/4-BUDH C-terminal"],["InterPro%3AIPR024674","HpaB/PvcC/4-BUDH N-terminal"],["NCBIfam%3ANF015214","4-hydroxyphenylacetate 3-hydroxylase C-terminal domain-containing protein"],["NCBIfam%3ANF023222","4-hydroxyphenylacetate 3-hydroxylase N-terminal domain-containing protein"],["NCBIfam%3ANF040299","DUF6011 domain-containing protein"]],"b":[["shikimates_and_phenylpropanoids/paerucumarin.yaml","paerucumarin"]]},{"id":"NCBITaxon:1110502","l":"Tistrella mobilis KA081020-065","na":1,"nb":5,"a":[["TED%3AAF-I3TTD1-F1-model_v4_TED03","TED novel fold AF-I3TTD1-F1-model_v4_TED03"]],"b":[["unclassified/dehydrodidemnin-b-aplidine.yaml","dehydrodidemnin B (aplidine)"],["unclassified/didemnin-b.yaml","didemnin B"],["unclassified/didemnin-x.yaml","didemnin X"],["unclassified/didemnin-y.yaml","didemnin Y"],["unclassified/nordidemnin-b.yaml","nordidemnin B"]]},{"id":"NCBITaxon:1437453","l":"Streptomyces leeuwenhoekii","na":1,"nb":5,"a":[["TED%3AAF-A0A0F7VQ57-F1-model_v4_TED03","TED novel fold AF-A0A0F7VQ57-F1-model_v4_TED03"]],"b":[["amino_acids_and_peptides/leepeptin.yaml","Leepeptin"],["polyketides/chaxamycin-a.yaml","chaxamycin A"],["polyketides/chaxamycin-b.yaml","chaxamycin B"],["polyketides/chaxamycin-c.yaml","chaxamycin C"],["polyketides/chaxamycin-d.yaml","chaxamycin D"]]},{"id":"NCBITaxon:1465","l":"Brevibacillus laterosporus","na":1,"nb":5,"a":[["TED%3AAF-A0A0F7BZ24-F1-model_v4_TED01","TED novel fold AF-A0A0F7BZ24-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/bogorol-a.yaml","bogorol A"],["amino_acids_and_peptides/tauramamide.yaml","tauramamide"],["shikimates_and_phenylpropanoids/basiliskamide-a.yaml","Basiliskamide A"],["unclassified/basiliskamide-b.yaml","Basiliskamide B"],["unclassified/laterocidine.yaml","laterocidine"]]},{"id":"NCBITaxon:176275","l":"Beauveria bassiana","na":1,"nb":5,"a":[["TED%3AAF-A0A2S7Y157-F1-model_v4_TED02","TED novel fold AF-A0A2S7Y157-F1-model_v4_TED02"]],"b":[["alkaloids/desmethylbassianin.yaml","desmethylbassianin"],["alkaloids/tenellin.yaml","tenellin"],["polyketides/oosporein.yaml","oosporein"],["unclassified/bassianolide.yaml","bassianolide"],["unclassified/beauvericin.yaml","beauvericin"]]},{"id":"NCBITaxon:226900","l":"","na":5,"nb":1,"a":[["IDPO%3A0000060","self-assembly"],["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF14436","Bacterial EndoU nuclease"],["Pfam%3APF10803","Spore germination GerPB"],["MCSA%3A958","N-succinylamino acid racemase (type 2)"]],"b":[["amino_acids_and_peptides/thiocillin-i.yaml","thiocillin I"]]},{"id":"NCBITaxon:269797","l":"Methanosarcina barkeri str. Fusaro","na":5,"nb":1,"a":[["Pfam%3APF27274","Coenzyme F430 synthetase CfbE, C-terminal domain"],["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"],["Pfam%3APF09505","Dimethylamine methyltransferase (Dimeth_PyL)"],["PROSITE%3APS00507","Nickel-dependent hydrogenases large subunit signature 1"],["MCSA%3A885","Serine-tRNA ligase (archaeal)"]],"b":[["alkaloids/coenzyme-f430.yaml","coenzyme F430"]]},{"id":"NCBITaxon:29303","l":"Streptomyces cattleya","na":1,"nb":5,"a":[["Pfam%3APF22636","Fluoroacetyl-CoA-specific thioesterase"]],"b":[["amino_acids_and_peptides/cattlecin.yaml","cattlecin"],["amino_acids_and_peptides/clavulanic-acid.yaml","clavulanic acid"],["amino_acids_and_peptides/ethynylserine.yaml","β-ethynylserine"],["amino_acids_and_peptides/thienamycin.yaml","thienamycin"],["terpenoids/cattleyene.yaml","cattleyene"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans Pd1222","na":5,"nb":1,"a":[["Pfam%3APF27518","Heme exporter protein C"],["Pfam%3APF22039","Imidazolonepropionase-like composite domain, bacteria"],["IEDB%3A123936","epitope ALAAAGAAY"],["PROSITE%3APS01181","Ribosomal protein S21 signature"],["Pfam%3APF02239","Cytochrome D1 heme domain"]],"b":[["alkaloids/parabactin.yaml","parabactin"]]},{"id":"NCBITaxon:384","l":"Rhizobium leguminosarum","na":5,"nb":1,"a":[["Pfam%3APF10931","Protein of unknown function (DUF2735)"],["TED%3AAF-A0A1B1C3F3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1B1C3F3-F1-model_v4_TED02"],["TED%3AAF-A0A4Q8XNE1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q8XNE1-F1-model_v4_TED01"],["TED%3AAF-A0A6P0B3F8-F1-model_v4_TED02","TED novel fold AF-A0A6P0B3F8-F1-model_v4_TED02"],["TED%3AAF-A0A6P0DM15-F1-model_v4_TED01","TED novel fold AF-A0A6P0DM15-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/vicibactin.yaml","vicibactin"]]},{"id":"NCBITaxon:47427","l":"Armillaria gallica","na":5,"nb":1,"a":[["TED%3AAF-A0A2H3CFH3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H3CFH3-F1-model_v4_TED02"],["TED%3AAF-A0A2H3DFZ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H3DFZ3-F1-model_v4_TED01"],["TED%3AAF-A0A2H3DTE1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H3DTE1-F1-model_v4_TED02"],["TED%3AAF-A0A2H3E1R0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H3E1R0-F1-model_v4_TED02"],["TED%3AAF-A0A2H3CX67-F1-model_v4_TED02","TED novel fold AF-A0A2H3CX67-F1-model_v4_TED02"]],"b":[["terpenoids/8-hydroxy-6-protoilludene.yaml","8α-hydroxy-6-protoilludene"]]},{"id":"NCBITaxon:5454","l":"","na":5,"nb":1,"a":[["TED%3AAF-A0A162YC52-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A162YC52-F1-model_v4_TED01"],["TED%3AAF-A0A163JCD7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A163JCD7-F1-model_v4_TED01"],["TED%3AAF-A0A163LJZ7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A163LJZ7-F1-model_v4_TED02"],["TED%3AAF-A0A163LQ36-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A163LQ36-F1-model_v4_TED01"],["TED%3AAF-A0A163M9G4-F1-model_v4_TED01","TED novel fold AF-A0A163M9G4-F1-model_v4_TED01"]],"b":[["polyketides/solanapyrone-a.yaml","solanapyrone A"]]},{"id":"UniProt:P22629","l":"","na":5,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_4IR","4IR-binding site"],["proteintraitsmech%3ABIOLIP_HL9","HL9-binding site"],["proteintraitsmech%3ABIOLIP_ZOE","ZOE-binding site"],["proteintraitsmech%3AMETALPDB_RH_DINUCLEAR","dinuclear rhodium site"],["proteintraitsmech%3AMETALPDB_CO_TETRANUCLEAR","tetranuclear cobalt site"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"CHEBI:140434","l":"3-[(Z)-2-isocyanovinyl]indole","na":4,"nb":1,"a":[["EC%3A1.14.20.11","3-[(Z)-2-isocyanoethenyl]-1H-indole synthase"],["EC%3A2.5.1.146","3-geranyl-3-[(Z)-2-isocyanoethenyl]indole synthase"],["RHEA%3A56700","(2S)-3-(1H-indol-3-yl)-2-isocyanopropanoate + 2-oxoglutarate + O2 + H(+) = 3-[(Z)-2-isocyanoethenyl]-1H-indole + succinate + 2 CO2 + H2O"],["RHEA%3A17349","3-[(Z)-2-isocyanoethenyl]-1H-indole + (2E)-geranyl diphosphate = 3-geranyl-3-[(Z)-2-isocyanoethenyl]-1H-indole + diphosphate"]],"b":[["alkaloids/3-z-2-isocyanovinyl-indole.yaml","3-[(Z)-2-isocyanovinyl]indole"]]},{"id":"CHEBI:140442","l":"12-epi-fischerindole U isonitrile","na":4,"nb":1,"a":[["EC%3A1.14.20.14","hapalindole-type alkaloid chlorinase"],["EC%3A5.5.1.33","12-epi-fischerindole U synthase"],["RHEA%3A56764","12-epi-fischerindole U + chloride + 2-oxoglutarate + O2 + H(+) = 12-epi-fischerindole G + succinate + CO2 + H2O"],["RHEA%3A56456","3-geranyl-3-[(Z)-2-isocyanoethenyl]-1H-indole = 12-epi-fischerindole U"]],"b":[["alkaloids/12-epi-fischerindole-u-isonitrile.yaml","12-epi-fischerindole U isonitrile"]]},{"id":"CHEBI:155910","l":"aculene D","na":4,"nb":1,"a":[["RHEA%3A65112","aculene D + 2-oxoglutarate + O2 = aculene C + succinate + CO2 + H2O"],["RHEA%3A65104","aculene D + L-prolyl-[peptidyl-carrier protein] = aculene B + holo-[peptidyl-carrier protein]"],["RHEA%3A65084","asperaculane E + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = aculene D + 2 oxidized [NADPH--hemoprotein reductase] + CO2 + 3 H2O + H(+)"],["RHEA%3A65092","asperaculane G + reduced [NADPH--hemoprotein reductase] + O2 = aculene D + oxidized [NADPH--hemoprotein reductase] + CO2 + 2 H2O"]],"b":[["terpenoids/aculene-d.yaml","aculene D"]]},{"id":"CHEBI:16368","l":"6-hydroxymellein","na":4,"nb":1,"a":[["EC%3A2.1.1.108","6-hydroxymellein O-methyltransferase"],["RHEA%3A65248","5 malonyl-CoA + AH2 + 5 H(+) = 6-hydroxymellein + A + 5 CO2 + 5 CoA + H2O"],["RHEA%3A65252","6-hydroxymellein + (2E,6E)-farnesyl diphosphate = verruculide C + diphosphate"],["RHEA%3A15201","6-hydroxymellein + S-adenosyl-L-methionine = 6-methoxymellein + S-adenosyl-L-homocysteine + H(+)"]],"b":[["shikimates_and_phenylpropanoids/6-hydroxymellein.yaml","6-hydroxymellein"]]},{"id":"CHEBI:18048","l":"DIMBOA","na":4,"nb":1,"a":[["EC%3A2.4.1.202","2,4-dihydroxy-7-methoxy-2H-1,4-benzoxazin-3(4H)-one 2-D- glucosyltransferase"],["EC%3A3.2.1.182","4-hydroxy-7-methoxy-3-oxo-3,4-dihydro-2H-1,4-benzoxazin-2-yl glucoside beta-D-glucosidase"],["RHEA%3A33975","DIMBOA beta-D-glucoside + H2O = DIMBOA + D-glucose"],["RHEA%3A15541","DIMBOA + UDP-alpha-D-glucose = DIMBOA beta-D-glucoside + UDP + H(+)"]],"b":[["alkaloids/dimboa.yaml","DIMBOA"]]},{"id":"CHEBI:18227","l":"sterigmatocystin","na":4,"nb":1,"a":[["EC%3A2.1.1.109","demethylsterigmatocystin 6-O-methyltransferase"],["EC%3A2.1.1.110","sterigmatocystin 8-O-methyltransferase"],["RHEA%3A11504","6-demethylsterigmatocystin + S-adenosyl-L-methionine = sterigmatocystin + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A15561","sterigmatocystin + S-adenosyl-L-methionine = 8-O-methylsterigmatocystin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["polyketides/sterigmatocystin.yaml","sterigmatocystin"]]},{"id":"CHEBI:2448","l":"actinorhodin","na":4,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["proteintraitsmech%3ABIOLIP_ZCT","ZCT-binding site"]],"b":[["polyketides/actinorhodin.yaml","actinorhodin"]]},{"id":"CHEBI:4356","l":"desferrioxamine B","na":4,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_4356","requires desferrioxamine B"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["proteintraitsmech%3ABIOLIP_KTY","KTY-binding site"]],"b":[["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"]]},{"id":"CHEBI:51460","l":"albaflavenone","na":4,"nb":1,"a":[["EC%3A1.14.15.39","epi-isozizaene 5-monooxygenase"],["RHEA%3A25988","(5R)-albaflavenol + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = albaflavenone + 2 oxidized [2Fe-2S]-[ferredoxin] + 2 H2O"],["RHEA%3A25980","(5S)-albaflavenol + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = albaflavenone + 2 oxidized [2Fe-2S]-[ferredoxin] + 2 H2O"],["RHEA%3A32439","(+)-epi-isozizaene + 4 reduced [2Fe-2S]-[ferredoxin] + 2 O2 + 4 H(+) = albaflavenone + 4 oxidized [2Fe-2S]-[ferredoxin] + 3 H2O"]],"b":[["terpenoids/albaflavenone.yaml","albaflavenone"]]},{"id":"CHEBI:63282","l":"pseudaminate","na":4,"nb":1,"a":[["EC%3A2.5.1.97","pseudaminic acid synthase"],["EC%3A2.7.7.81","pseudaminic acid cytidylyltransferase"],["RHEA%3A31631","2,4-diacetamido-2,4,6-trideoxy-beta-L-altrose + phosphoenolpyruvate + H2O = pseudaminate + phosphate"],["RHEA%3A32083","pseudaminate + CTP = CMP-pseudaminate + diphosphate"]],"b":[["carbohydrates/pseudaminate.yaml","pseudaminate"]]},{"id":"CHEBI:64258","l":"","na":4,"nb":1,"a":[["EC%3A1.14.13.154","erythromycin 12 hydroxylase"],["EC%3A2.1.1.254","erythromycin 3'-O-methyltransferase"],["RHEA%3A32647","erythromycin C + S-adenosyl-L-methionine = erythromycin A + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A32631","erythromycin D + NADPH + O2 + H(+) = erythromycin C + NADP(+) + H2O"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"CHEBI:79296","l":"indigoidine","na":4,"nb":1,"a":[["EC%3A4.3.3.9","indigoidine synthase"],["RHEA%3A81507","2 3-amino-1,5-dihydropyridine-2,6-dione + O2 = indigoidine + 2 H2O"],["RHEA%3A81499","2 FMN + 2 L-glutamine + 2 ATP + O2 = indigoidine + 2 FMNH2 + 2 AMP + 2 diphosphate + 2 H2O"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["alkaloids/indigoidine.yaml","indigoidine"]]},{"id":"CHEBI:9555","l":"tioguanine","na":4,"nb":1,"a":[["EC%3A2.1.1.67","thiopurine S-methyltransferase"],["RHEA%3A56580","6-thioguanine + S-adenosyl-L-methionine = 6-methylthioguanine + S-adenosyl-L-homocysteine + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.40","The Nucleobase/Ascorbate Transporter (NAT) or Nucleobase:Cation Symporter-2 (NCS2) Family"]],"b":[["alkaloids/tioguanine.yaml","tioguanine"]]},{"id":"DOI:10.1021/ja312503y","l":"","na":4,"nb":1,"a":[["RHEA%3A74587","(2E,6E)-farnesyl diphosphate = (+)-exo-beta-bergamotene + diphosphate"],["RHEA%3A74751","fumagillol + dodecapentaneoyl-[polyketide synthase] = prefumagillin + holo-[polyketide synthase]"],["RHEA%3A74727","holo-[polyketide synthase] + 5 malonyl-CoA + acetyl-CoA + 5 NADPH + 10 H(+) = dodecapentaneoyl-[polyketide synthase] + 5 CO2 + 5 NADP(+) + 6 CoA + 5 H2O"],["NCBIfam%3ANF025196","monooxygenase family protein"]],"b":[["polyketides/fumagillin.yaml","fumagillin"]]},{"id":"DOI:10.1128/JB.183.21.6454-6465.2001","l":"","na":4,"nb":1,"a":[["RHEA%3A49456","(2S)-2-amino-4-deoxychorismate + H2O = (5S,6S)-6-amino-5-hydroxycyclohexa-1,3-diene-1-carboxyate + pyruvate"],["RHEA%3A48976","5-methyl-phenazine-1-carboxylate + NADH + O2 + 2 H(+) = pyocyanin + CO2 + NAD(+) + H2O"],["RHEA%3A53868","phenazine-1-carboxylate + NADH + O2 + 2 H(+) = 1-hydroxyphenazine + CO2 + NAD(+) + H2O"],["NCBIfam%3ANF038138","phenazine biosynthesis FMN-dependent oxidase PhzG"]],"b":[["alkaloids/pyocyanine.yaml","pyocyanine"]]},{"id":"NCBITaxon:101028","l":"Fusarium pseudograminearum","na":1,"nb":4,"a":[["TED%3AAF-A0A7S8DXW2-F1-model_v4_TED02","TED novel fold AF-A0A7S8DXW2-F1-model_v4_TED02"]],"b":[["alkaloids/8-oxo-fusatin.yaml","8-oxo-fusatin"],["alkaloids/8-oxo-isopentenyladenine.yaml","8-oxo-isopentenyladenine"],["alkaloids/fusatin.yaml","fusatin"],["alkaloids/fusatinic-acid.yaml","fusatinic acid"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":4,"nb":1,"a":[["Pfam%3APF05258","Dna[CI] antecedent, DciA"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"],["MCSA%3A437","2,6-dioxo-6-phenylhexa-3-enoate hydrolase"],["TED%3AAF-Q0RZW9-F1-model_v4_TED03","TED highly-symmetric fold AF-Q0RZW9-F1-model_v4_TED03"]],"b":[["unclassified/rhodochelin.yaml","rhodochelin"]]},{"id":"NCBITaxon:1038928","l":"Streptomyces xinghaiensis","na":1,"nb":4,"a":[["TED%3AAF-A0A3R7FP99-F1-model_v4_TED01","TED novel fold AF-A0A3R7FP99-F1-model_v4_TED01"]],"b":[["alkaloids/dixiamycin-a.yaml","dixiamycin A"],["alkaloids/xiamycin-a.yaml","xiamycin A"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"],["polyketides/oligomycin.yaml","oligomycin"]]},{"id":"NCBITaxon:105351","l":"Aspergillus awamori","na":4,"nb":1,"a":[["PROSITE%3APS00820","Glucoamylase active site region signature"],["MCSA%3A827","fructan beta-fructosidase"],["MCSA%3A393","glucan 1,4-alpha-glucosidase"],["TED%3AAF-A0A401KM36-F1-model_v4_TED03","TED novel fold AF-A0A401KM36-F1-model_v4_TED03"]],"b":[["alkaloids/aspergillin-pz.yaml","aspergillin PZ"]]},{"id":"NCBITaxon:1311","l":"Streptococcus agalactiae","na":4,"nb":1,"a":[["Pfam%3APF19567","Capsular polysaccharide synthesis, CpsB/CapC"],["Pfam%3APF16828","GAG-binding domain on surface antigen"],["Pfam%3APF27244","GtfB middle domain"],["Pfam%3APF07373","CAMP factor (Cfa)"]],"b":[["carbohydrates/capsular-polysaccharide-3.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:1813822","l":"Xylariales sp. No.14919","na":4,"nb":1,"a":[["TED%3AAF-A0A1V1SW90-F1-model_v4_TED01","TED novel fold AF-A0A1V1SW90-F1-model_v4_TED01"],["TED%3AAF-A0A1V1T5K0-F1-model_v4_TED01","TED novel fold AF-A0A1V1T5K0-F1-model_v4_TED01"],["TED%3AAF-A0A1V1TFW0-F1-model_v4_TED03","TED novel fold AF-A0A1V1TFW0-F1-model_v4_TED03"],["TED%3AAF-A0A1V1THH5-F1-model_v4_TED03","TED novel fold AF-A0A1V1THH5-F1-model_v4_TED03"]],"b":[["polyketides/fr901512.yaml","FR901512"]]},{"id":"NCBITaxon:1944","l":"Streptomyces halstedii","na":1,"nb":4,"a":[["Pfam%3APF09277","Erythronolide synthase, docking"]],"b":[["alkaloids/rotihibin-a.yaml","rotihibin A"],["polyketides/halstoctacosanolide-a.yaml","halstoctacosanolide A"],["terpenoids/geosmin.yaml","(−)-geosmin"],["unclassified/vicenistatin.yaml","vicenistatin"]]},{"id":"NCBITaxon:1967","l":"Streptomyces kanamyceticus","na":1,"nb":4,"a":[["Pfam%3APF13579","Glycosyl transferase 4-like domain"]],"b":[["amino_acids_and_peptides/gausemycin-a.yaml","gausemycin A"],["amino_acids_and_peptides/gausemycin-b.yaml","gausemycin B"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/kanamycin-a.yaml","kanamycin A"]]},{"id":"NCBITaxon:2017","l":"Streptoalloteichus hindustanus","na":1,"nb":4,"a":[["Pfam%3APF19581","Glyoxalase superfamily protein"]],"b":[["amino_acids_and_peptides/tallysomycin-a.yaml","tallysomycin A"],["amino_acids_and_peptides/tallysomycin-b.yaml","tallysomycin B"],["carbohydrates/apramycin.yaml","apramycin"],["carbohydrates/tobramycin.yaml","tobramycin"]]},{"id":"NCBITaxon:2045","l":"Nocardioides simplex","na":4,"nb":1,"a":[["Pfam%3APF00775","Dioxygenase"],["Pfam%3APF04444","Catechol dioxygenase N terminus"],["PROSITE%3APS00083","Intradiol ring-cleavage dioxygenases signature"],["TED%3AAF-A0A4Y3NBY1-F1-model_v4_TED01","TED novel fold AF-A0A4Y3NBY1-F1-model_v4_TED01"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:267608","l":"Ralstonia nicotianae (strain ATCC BAA-1114 / GMI1000)","na":4,"nb":1,"a":[["Pfam%3APF13473","Cupredoxin-like domain"],["Pfam%3APF09483","Type III secretion protein (HpaP)"],["Pfam%3APF14897","EpsG family"],["Pfam%3APF03377","TAL effector repeat"]],"b":[["unclassified/micacocidin.yaml","micacocidin"]]},{"id":"NCBITaxon:2747968","l":"Fusarium vanettenii","na":4,"nb":1,"a":[["Pfam%3APF01083","Cutinase"],["PROSITE%3APS00155","Cutinase, serine active site"],["PROSITE%3APS00931","Cutinase, aspartate and histidine active sites"],["MCSA%3A631","cutinase"]],"b":[["polyketides/bikaverin.yaml","bikaverin"]]},{"id":"NCBITaxon:28447","l":"Clavibacter michiganensis","na":4,"nb":1,"a":[["TED%3AAF-A0A251YC11-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A251YC11-F1-model_v4_TED02"],["TED%3AAF-A0A2S5VA57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5VA57-F1-model_v4_TED01"],["TED%3AAF-A0A2S5VJK2-F1-model_v4_TED01","TED novel fold AF-A0A2S5VJK2-F1-model_v4_TED01"],["TED%3AAF-A0A399NHQ8-F1-model_v4_TED01","TED novel fold AF-A0A399NHQ8-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/michiganin-a.yaml","michiganin A"]]},{"id":"NCBITaxon:28450","l":"Burkholderia pseudomallei","na":4,"nb":1,"a":[["Pfam%3APF18664","CdiA C-terminal tRNase domain"],["Pfam%3APF12106","Colicin E5 ribonuclease domain"],["Pfam%3APF11480","Colicin-E5 Imm protein"],["Pfam%3APF13332","Hemagglutinin repeat"]],"b":[["polyketides/malleilactone.yaml","malleilactone"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":1,"nb":4,"a":[["TED%3AAF-A0A679J1E9-F1-model_v4_TED01","TED novel fold AF-A0A679J1E9-F1-model_v4_TED01"]],"b":[["unclassified/vacidobactin-a.yaml","vacidobactin A"],["unclassified/vacidobactin-b.yaml","vacidobactin B"],["unclassified/variobactin-a.yaml","variobactin A"],["unclassified/variobactin-b.yaml","variobactin B"]]},{"id":"NCBITaxon:347834","l":"Rhizobium etli (strain ATCC 51251 / DSM 11541 / JCM 21823 / NBRC 15573 / CFN 42)","na":4,"nb":1,"a":[["Pfam%3APF02632","BioY family"],["proteintraitsmech%3AELIFE109154_VbsL","Vicibactin acyl-hydroxyornithine epimerase family"],["PROSITE%3APS01349","Nodulation protein nodA signature"],["MCSA%3A223","pyruvate carboxylase"]],"b":[["amino_acids_and_peptides/vicibactin.yaml","vicibactin"]]},{"id":"NCBITaxon:3988","l":"Ricinus communis","na":4,"nb":1,"a":[["Pfam%3APF10998","Protein of unknown function (DUF2838)"],["PROSITE%3APS00574","Fatty acid desaturases family 2 signature"],["PROSITE%3APS00275","Shiga/ricin ribosomal inactivating toxins active site signature"],["MCSA%3A136","acyl-[acyl-carrier-protein] desaturase"]],"b":[["terpenoids/casbene.yaml","casbene"]]},{"id":"NCBITaxon:4039","l":"Daucus carota","na":4,"nb":1,"a":[["PROSITE%3APS00451","Pathogenesis-related proteins Bet v I family signature"],["PROSITE%3APS00431","Small hydrophilic plant seed proteins signature"],["Pfam%3APF02987","Late embryogenesis abundant protein"],["MCSA%3A681","pectinesterase"]],"b":[["carbohydrates/adenine-arabinoside.yaml","adenine arabinoside"]]},{"id":"NCBITaxon:40602","l":"Claviceps fusiformis","na":1,"nb":4,"a":[["Pfam%3APF06766","Fungal hydrophobin"]],"b":[["alkaloids/agroclavine-i.yaml","Agroclavine I"],["alkaloids/elymoclavine.yaml","elymoclavine"],["alkaloids/ergocryptine.yaml","α-ergocryptine"],["alkaloids/ergotamine.yaml","ergotamine"]]},{"id":"NCBITaxon:43662","l":"Pseudoalteromonas piscicida","na":1,"nb":4,"a":[["Pfam%3APF08329","Chitinase A, N-terminal domain"]],"b":[["alkaloids/2-3-4-5-tetrabromopyrrole.yaml","2,3,4,5-tetrabromopyrrole"],["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["alkaloids/pseudochelin-a.yaml","pseudochelin A"]]},{"id":"NCBITaxon:497965","l":"","na":4,"nb":1,"a":[["TED%3AAF-E0UJA0-F1-model_v4_TED01","TED highly-symmetric fold AF-E0UJA0-F1-model_v4_TED01"],["TED%3AAF-E0U6M3-F1-model_v4_TED03","TED novel fold AF-E0U6M3-F1-model_v4_TED03"],["TED%3AAF-E0UE39-F1-model_v4_TED02","TED novel fold AF-E0UE39-F1-model_v4_TED02"],["TED%3AAF-E0UM93-F1-model_v4_TED01","TED novel fold AF-E0UM93-F1-model_v4_TED01"]],"b":[["fatty_acids/1-heptadecene.yaml","1-heptadecene"]]},{"id":"NCBITaxon:5067","l":"Aspergillus parasiticus","na":1,"nb":4,"a":[["IEDB%3A127597","epitope ASQNRPRDDVQ"]],"b":[["polyketides/aflatoxin-b2.yaml","aflatoxin B2"],["terpenoids/astellolide-a.yaml","astellolide A"],["unclassified/aflatoxin.yaml","aflatoxin"],["unclassified/aspergillic-acid.yaml","aspergillic acid"]]},{"id":"NCBITaxon:5083","l":"Penicillium canescens","na":1,"nb":4,"a":[["Pfam%3APF09206","Alpha-L-arabinofuranosidase B, catalytic"]],"b":[["alkaloids/agroclavine-i.yaml","Agroclavine I"],["unclassified/outovirin-a.yaml","outovirin A"],["unclassified/outovirin-c.yaml","outovirin C"],["unclassified/penitrem-a.yaml","penitrem A"]]},{"id":"NCBITaxon:512","l":"Alcaligenes sp","na":4,"nb":1,"a":[["Pfam%3APF26354","N,N-dimethylformamidase alpha subunit"],["Pfam%3APF20254","N,N-dimethylformamidase beta subunit-like, C-terminal"],["Pfam%3APF11606","Family 31 carbohydrate binding protein"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"]],"b":[["polyketides/kalimantacin-a.yaml","kalimantacin A"]]},{"id":"NCBITaxon:5353","l":"Lentinula edodes","na":4,"nb":1,"a":[["Pfam%3APF21671","Protein CPL1-like"],["Pfam%3APF16850","Peptidase inhibitor I66"],["TED%3AAF-A0A1Q3EBL0-F1-model_v4_TED01","TED novel fold AF-A0A1Q3EBL0-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3ENK4-F1-model_v4_TED01","TED novel fold AF-A0A1Q3ENK4-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/lentinulin-a.yaml","lentinulin A"]]},{"id":"NCBITaxon:5516","l":"Fusarium culmorum","na":1,"nb":4,"a":[["TED%3AAF-A0A2T4GUL3-F1-model_v4_TED01","TED novel fold AF-A0A2T4GUL3-F1-model_v4_TED01"]],"b":[["polyketides/zearalenone.yaml","zearalenone"],["terpenoids/15-acetyldeoxynivalenol.yaml","15-acetyldeoxynivalenol"],["terpenoids/culmorin.yaml","culmorin"],["terpenoids/nivalenol.yaml","nivalenol"]]},{"id":"NCBITaxon:655819","l":"Beauveria bassiana ARSEF 2860","na":1,"nb":4,"a":[["Pfam%3APF22354","Hydrophobin"]],"b":[["polyketides/oosporein.yaml","oosporein"],["unclassified/beauverolide-ba.yaml","beauverolide Ba"],["unclassified/beauverolide-ca.yaml","beauverolide Ca"],["unclassified/beauverolide-ka.yaml","beauverolide Ka"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":4,"nb":1,"a":[["PROSITE%3APS00949","Autoinducer synthase family signature"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"],["PROSITE%3APS00607","cAMP phosphodiesterases class-II signature"],["TED%3AAF-A0A844NWZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A844NWZ1-F1-model_v4_TED02"]],"b":[["unclassified/ape-vf.yaml","APE Vf"]]},{"id":"NCBITaxon:715","l":"Actinobacillus pleuropneumoniae","na":4,"nb":1,"a":[["Pfam%3APF26002","AprE-like, beta-barrel domain"],["Pfam%3APF02794","RTX toxin acyltransferase family"],["IEDB%3A124022","epitope DLYRMYSRY"],["PROSITE%3APS00543","HlyD family secretion proteins signature"]],"b":[["unclassified/capsular-polysaccharide.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:76728","l":"Streptomyces vitaminophilus","na":1,"nb":4,"a":[["TED%3AAF-A0A0T6LRN4-F1-model_v4_TED01","TED novel fold AF-A0A0T6LRN4-F1-model_v4_TED01"]],"b":[["alkaloids/pyrrolomycin-a.yaml","pyrrolomycin A"],["alkaloids/pyrrolomycin-b.yaml","pyrrolomycin B"],["alkaloids/pyrrolomycin-c.yaml","pyrrolomycin C"],["alkaloids/pyrrolomycin-d.yaml","pyrrolomycin D"]]},{"id":"NCBITaxon:85698","l":"","na":4,"nb":1,"a":[["Pfam%3APF25975","CzcB C-terminal circularly permuted SH3-like domain"],["Pfam%3APF17524","Anti-sigma factor CnrY"],["Pfam%3APF10778","Halocarboxylic acid dehydrogenase DehI"],["TED%3AAF-A0A1R1JVF9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1R1JVF9-F1-model_v4_TED03"]],"b":[["amino_acids_and_peptides/alcaligin.yaml","alcaligin"]]},{"id":"NCBITaxon:933388","l":"Penicillium oxalicum (strain 114-2 / CGMCC 5302)","na":4,"nb":1,"a":[["Pfam%3APF27751","ATEG_07667 C-terminal domain"],["Pfam%3APF11402","Antifungal protein"],["Pfam%3APF12311","Protein of unknown function (DUF3632)"],["TED%3AAF-S8ATN5-F1-model_v4_TED01","TED highly-symmetric fold AF-S8ATN5-F1-model_v4_TED01"]],"b":[["unclassified/atpenin-b.yaml","atpenin B"]]},{"id":"NCBITaxon:93625","l":"Psilocybe cyanescens","na":4,"nb":1,"a":[["Pfam%3APF02958","Ecdysteroid kinase-like family"],["TED%3AAF-A0A409XLW7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A409XLW7-F1-model_v4_TED01"],["TED%3AAF-A0A409XPY8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A409XPY8-F1-model_v4_TED01"],["TED%3AAF-A0A409XED8-F1-model_v4_TED01","TED novel fold AF-A0A409XED8-F1-model_v4_TED01"]],"b":[["alkaloids/psilocybin.yaml","psilocybin"]]},{"id":"UniProt:P02701","l":"","na":4,"nb":1,"a":[["Pfam%3APF01382","Avidin family"],["PROSITE%3APS00577","Avidin-like domain signature"],["proteintraitsmech%3ABIOLIP_B1R","B1R-binding site"],["proteintraitsmech%3ABIOLIP_BTN","BTN-binding site"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"UniProt:P62593","l":"","na":4,"nb":1,"a":[["proteintraitsmech%3AMEROPS_CLEAVAGE_M50_004","RseP peptidase cleavage specificity"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["PROSITE%3APS00146","Beta-lactamase class-A active site"],["MCSA%3A2","beta-lactamase (Class A)"]],"b":[["amino_acids_and_peptides/clavulanic-acid-2.yaml","clavulanic acid"]]},{"id":"UniProt:Q00441","l":"","na":4,"nb":1,"a":[["EC%3A1.14.15.35","6-deoxyerythronolide B hydroxylase"],["RHEA%3A40299","6-deoxyerythronolide B + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = erythronolide B + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"],["MCSA%3A694","6-deoxyerythronolide B hydroxylase"],["proteintraitsmech%3ABIOLIP_9AP","9AP-binding site"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"UniProt:Q8TDV0","l":"","na":4,"nb":1,"a":[["ComplexPortal%3ACPX-16132","-"],["ComplexPortal%3ACPX-17565","-"],["ComplexPortal%3ACPX-24374","-"],["CDD%3Acd15002","7tmA_GPR151"]],"b":[["carbohydrates/tobramycin.yaml","tobramycin"]]},{"id":"UniProt:Q9Y243","l":"","na":4,"nb":1,"a":[["ComplexPortal%3ACPX-22352","-"],["ComplexPortal%3ACPX-24286","-"],["CDD%3Acd05593","STKc_PKB_gamma"],["InterPro%3AIPR034675","Protein kinase B gamma, catalytic domain"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"CHEBI:131914","l":"violacein","na":3,"nb":1,"a":[["RHEA%3A49720","protoviolaceinate + NADH + 2 O2 + 2 H(+) = violacein + CO2 + NAD(+) + 2 H2O"],["RHEA%3A49728","protoviolaceinate + NADPH + 2 O2 + 2 H(+) = violacein + CO2 + NADP(+) + 2 H2O"],["RHEA%3A49732","violaceinate + O2 + H(+) = violacein + CO2 + H2O"]],"b":[["alkaloids/violacein.yaml","violacein"]]},{"id":"CHEBI:133763","l":"YWA1","na":3,"nb":1,"a":[["RHEA%3A62652","6 malonyl-CoA + acetyl-CoA + 6 H(+) = naphtopyrone YWA1 + 6 CO2 + 7 CoA + H2O"],["RHEA%3A62700","naphtopyrone YWA1 + H2O = naphthalene-1,3,6,8-tetrol + acetoacetate + H(+)"],["RHEA%3A62680","naphtopyrone YWA1 = norrubrofusarin + H2O + H(+)"]],"b":[["polyketides/ywa1.yaml","YWA1"]]},{"id":"CHEBI:138046","l":"sesterfisherol","na":3,"nb":1,"a":[["EC%3A4.2.3.176","sesterfisherol synthase"],["RHEA%3A54068","(2E,6E,10E,14E)-geranylfarnesyl diphosphate + H2O = sesterfisherol + diphosphate"],["RHEA%3A78407","sesterfisherol + 3 reduced [NADPH--hemoprotein reductase] + 3 O2 = sesterfisherate + 3 oxidized [NADPH--hemoprotein reductase] + 4 H2O + 4 H(+)"]],"b":[["terpenoids/sesterfisherol.yaml","sesterfisherol"]]},{"id":"CHEBI:18393","l":"naphthalene-1,3,8-triol","na":3,"nb":1,"a":[["EC%3A4.2.1.94","scytalone dehydratase"],["RHEA%3A24396","scytalone = 1,3,8-trihydroxynaphthalene + H2O"],["MCSA%3A910","scytalone dehydratase"]],"b":[["polyketides/naphthalene-1-3-8-triol.yaml","naphthalene-1,3,8-triol"]]},{"id":"CHEBI:28915","l":"fosfomycin","na":3,"nb":1,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.5","The Pseudomonas OprP Porin (POP) Family"],["proteintraitsmech%3ABIOLIP_FCN","FCN-binding site"]],"b":[["unclassified/fosfomycin.yaml","fosfomycin"]]},{"id":"CHEBI:29472","l":"2-heptyl-3-hydroxy-4-quinolone","na":3,"nb":1,"a":[["EC%3A1.14.13.182","2-heptyl-3-hydroxy-4(1H)-quinolone synthase"],["RHEA%3A60352","2-heptyl-3-hydroxy-4(1H)-quinolone + O2 = N-octanoylanthranilate + CO + H(+)"],["RHEA%3A37871","2-heptyl-4(1H)-quinolone + NADH + O2 + H(+) = 2-heptyl-3-hydroxy-4(1H)-quinolone + NAD(+) + H2O"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"]]},{"id":"CHEBI:3139","l":"bleomycin A2","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A9.A.18","The Peptide Uptake Permease (PUP) Family"]],"b":[["amino_acids_and_peptides/bleomycin-a2.yaml","bleomycin A2"]]},{"id":"CHEBI:31432","l":"corynebactin","na":3,"nb":1,"a":[["RHEA%3A33811","3 2,3-dihydroxybenzoate + 3 L-threonine + 3 glycine + 6 ATP = corynebactin + 6 AMP + 6 diphosphate + 3 H2O + 3 H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"CHEBI:31550","l":"epothilone B","na":3,"nb":1,"a":[["RHEA%3A47808","epothilone D + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = epothilone B + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["proteintraitsmech%3ABIOLIP_EPB","EPB-binding site"]],"b":[["unclassified/epothilone-b.yaml","epothilone B"]]},{"id":"CHEBI:40968","l":"astaxanthin","na":3,"nb":1,"a":[["EC%3A1.14.99.64","zeaxanthin 4-ketolase"],["RHEA%3A56772","all-trans-adonixanthin + 2 AH2 + 2 O2 = all-trans-(3S,3'S)-astaxanthin + 2 A + 3 H2O"],["proteintraitsmech%3ABIOLIP_AXT","AXT-binding site"]],"b":[["terpenoids/astaxanthin.yaml","astaxanthin"]]},{"id":"CHEBI:46702","l":"(−)-geosmin","na":3,"nb":1,"a":[["EC%3A4.1.99.16","geosmin synthase"],["RHEA%3A30371","(1E,4S,5E,7R)-germacra-1(10),5-dien-11-ol + H2O = (-)-geosmin + acetone"],["RHEA%3A30455","(1S,4aS)-1,4a-dimethyl-1,2,3,4,4a,5,6,8a-octahydronaphthalene + H2O = (-)-geosmin"]],"b":[["terpenoids/geosmin.yaml","(−)-geosmin"]]},{"id":"CHEBI:48741","l":"β-phellandrene","na":3,"nb":1,"a":[["EC%3A4.2.3.51","beta-phellandrene synthase (neryl-diphosphate-cyclizing)"],["RHEA%3A25504","(2E)-geranyl diphosphate = beta-phellandrene + diphosphate"],["RHEA%3A27830","neryl diphosphate = beta-phellandrene + diphosphate"]],"b":[["terpenoids/phellandrene.yaml","β-phellandrene"]]},{"id":"CHEBI:50432","l":"putrebactin","na":3,"nb":1,"a":[["EC%3A6.3.2.63","putrebactin synthase"],["RHEA%3A79279","2 N-(3-carboxypropanoyl)-N-hydroxyputrescine + 2 ATP = putrebactin + 2 AMP + 2 diphosphate + 2 H(+)"],["RHEA%3A79287","pre-putrebactin + ATP = putrebactin + AMP + diphosphate + H(+)"]],"b":[["amino_acids_and_peptides/putrebactin.yaml","putrebactin"]]},{"id":"CHEBI:63468","l":"tirucalla-7,24-dien-3β-ol","na":3,"nb":1,"a":[["EC%3A5.4.99.56","tirucalladienol synthase"],["RHEA%3A31887","(S)-2,3-epoxysqualene = tirucalla-7,24-dien-3beta-ol"],["RHEA%3A80279","tirucalla-7,24-dien-3beta-ol + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = dihydroniloticin + 2 oxidized [NADPH--hemoprotein reductase] + 2 H2O + 2 H(+)"]],"b":[["terpenoids/tirucalla-7-24-dien-3-ol.yaml","tirucalla-7,24-dien-3β-ol"]]},{"id":"CHEBI:6472","l":"lincomycin","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_3QB","3QB-binding site"]],"b":[["carbohydrates/lincomycin.yaml","lincomycin"]]},{"id":"CHEBI:71609","l":"albonoursin","na":3,"nb":1,"a":[["EC%3A1.3.3.13","albonoursin synthase"],["RHEA%3A35531","cyclo(L-phenylalanyl-L-leucyl) + 2 O2 = albonoursin + 2 H2O2"],["RHEA%3A35539","cyclo[(Z)-alpha,beta-didehydrophenylalanyl-L-leucyl] + O2 = albonoursin + H2O2"]],"b":[["unclassified/albonoursin.yaml","albonoursin"]]},{"id":"CHEBI:7719","l":"ochratoxin A","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.60","The Organo Anion Transporter (OAT) Family"]],"b":[["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"]]},{"id":"CHEBI:77879","l":"elaiophylin","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["proteintraitsmech%3ABIOLIP_ELO","ELO-binding site"]],"b":[["polyketides/elaiophylin.yaml","elaiophylin"]]},{"id":"CHEBI:80729","l":"toxoflavin","na":3,"nb":1,"a":[["EC%3A2.1.1.349","toxoflavin synthase"],["RHEA%3A56852","reumycin + S-adenosyl-L-methionine = toxoflavin + S-adenosyl-L-homocysteine + H(+)"],["proteintraitsmech%3ABIOLIP_TOF","TOF-binding site"]],"b":[["alkaloids/toxoflavin.yaml","toxoflavin"]]},{"id":"CHEBI:9215","l":"spectinomycin","na":3,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["proteintraitsmech%3ABIOLIP_SCM","SCM-binding site"]],"b":[["carbohydrates/spectinomycin.yaml","spectinomycin"]]},{"id":"CHEBI:9470","l":"tetracenomycin C","na":3,"nb":1,"a":[["EC%3A1.14.13.200","tetracenomycin A2 monooxygenase-diooxygenase"],["RHEA%3A42824","tetracenomycin A2 + 2 NADH + 2 O2 + 2 H(+) = tetracenomycin C + 2 NAD(+) + H2O"],["RHEA%3A42820","tetracenomycin A2 + 2 NADPH + 2 O2 + 2 H(+) = tetracenomycin C + 2 NADP(+) + H2O"]],"b":[["polyketides/tetracenomycin-c.yaml","tetracenomycin C"]]},{"id":"DOI:10.1006/jmbi.1993.1321","l":"","na":3,"nb":1,"a":[["InterPro%3AIPR017889","Avidin-like, conserved site"],["PROSITE%3APDOC00499","Avidin-like"],["InterPro%3AIPR036896","Avidin-like superfamily"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"DOI:10.1007/BF00260640","l":"","na":3,"nb":1,"a":[["InterPro%3AIPR018299","Alkaline phosphatase, active site"],["InterPro%3AIPR059123","Streptomycin biosynthesis protein StrF domain"],["PROSITE%3APDOC00113","Alkaline phosphatase active site"]],"b":[["carbohydrates/5-hydroxystreptomycin.yaml","5'-hydroxystreptomycin"]]},{"id":"DOI:10.1007/BF00290527","l":"","na":3,"nb":1,"a":[["InterPro%3AIPR007295","Domain of unknown function DUF402"],["NCBIfam%3ANF016085","DUF402 domain-containing protein"],["InterPro%3AIPR035930","FomD-like superfamily"]],"b":[["unclassified/fosfomycin.yaml","fosfomycin"]]},{"id":"DOI:10.1016/j.chembiol.2004.03.030","l":"","na":1,"nb":3,"a":[["RHEA%3A50460","a medium-chain fatty acid + holo-[ACP] + ATP = a medium-chain fatty acyl-[ACP] + AMP + diphosphate"]],"b":[["unclassified/jamaicamide-a.yaml","jamaicamide A"],["unclassified/jamaicamide-b.yaml","jamaicamide B"],["unclassified/jamaicamide-c.yaml","jamaicamide C"]]},{"id":"DOI:10.1016/j.chembiol.2004.03.033","l":"","na":3,"nb":1,"a":[["InterPro%3AIPR003594","Histidine kinase/HSP90-like ATPase domain"],["NCBIfam%3ANF014567","ATP-binding protein"],["InterPro%3AIPR036890","Histidine kinase/HSP90-like ATPase superfamily"]],"b":[["polyketides/radicicol.yaml","radicicol"]]},{"id":"DOI:10.1016/j.chembiol.2016.12.012","l":"","na":3,"nb":1,"a":[["NCBIfam%3ANF040044","DUF6283 family protein"],["NCBIfam%3ANF039737","DUF6354 family protein"],["NCBIfam%3ANF039647","DUF6083 domain-containing protein"]],"b":[["alkaloids/pentostatin.yaml","pentostatin"]]},{"id":"DOI:10.1021/cb800225v","l":"","na":1,"nb":3,"a":[["RHEA%3A27954","(2E,6E)-farnesyl diphosphate + H2O = presilphiperfolan-8beta-ol + diphosphate"]],"b":[["terpenoids/12-hydroxydehydrobotrydienol.yaml","12-hydroxydehydrobotrydienol"],["terpenoids/botrydial.yaml","botrydial"],["terpenoids/dihydrobotrydial.yaml","Dihydrobotrydial"]]},{"id":"DOI:10.1094/MPMI-09-14-0264-R","l":"","na":3,"nb":1,"a":[["InterPro%3AIPR014031","Beta-ketoacyl synthase, C-terminal domain"],["InterPro%3AIPR060221","Cytochalasin cluster regulator ccsR-like, C-terminal domain"],["NCBIfam%3ANF054743","CcsR C-terminal domain"]],"b":[["alkaloids/fusaric-acid.yaml","fusaric acid"]]},{"id":"DOI:10.1128/AEM.02392-07","l":"","na":3,"nb":1,"a":[["NCBIfam%3ATIGR04220","cyanobactin biosynthesis system PatB/AcyB/McaB family protein"],["InterPro%3AIPR022264","Microcyclamide/patellamide bacteriocin family, leader peptide"],["NCBIfam%3ATIGR03678","microcyclamide/patellamide family RiPP"]],"b":[["amino_acids_and_peptides/microcyclamide.yaml","microcyclamide"]]},{"id":"DOI:10.1128/JB.00052-06","l":"","na":1,"nb":3,"a":[["InterPro%3AIPR014179","PfaD-like, TIM-barrel domain"]],"b":[["polyketides/bacillaene.yaml","bacillaene"],["polyketides/difficidin.yaml","difficidin"],["polyketides/macrolactin-h.yaml","macrolactin H"]]},{"id":"DOI:10.1128/JB.00826-07","l":"","na":3,"nb":1,"a":[["RHEA%3A33407","glycine + ATP + H(+) = glycyl-5'-AMP + diphosphate"],["RHEA%3A61700","glycyl-5'-AMP + holo-[peptidyl-carrier protein] = glycyl-[peptidyl-carrier protein] + AMP + H(+)"],["RHEA%3A61696","holo-[peptidyl-carrier protein] + glycine + ATP = glycyl-[peptidyl-carrier protein] + AMP + diphosphate"]],"b":[["alkaloids/saframycin-a.yaml","saframycin A"]]},{"id":"DOI:10.1371/journal.pone.0065328","l":"","na":1,"nb":3,"a":[["RHEA%3A51732","glandicoline B + S-adenosyl-L-methionine = meleagrin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["alkaloids/dehydrohistidyltryptophanyldiketopiperazine.yaml","dehydrohistidyltryptophanyldiketopiperazine"],["alkaloids/glandicoline-b.yaml","glandicoline B"],["unclassified/roquefortine-d.yaml","roquefortine D"]]},{"id":"DOI:10.3389/fcimb.2017.00107","l":"","na":3,"nb":1,"a":[["NCBIfam%3ANF041040","rhizoferrin export MFS transporter FslB"],["NCBIfam%3ANF041041","rhizoferrin import MFS transporter FslD"],["NCBIfam%3ANF041042","rhizoferrin import outer membrane protein FslE"]],"b":[["unclassified/rhizoferrin.yaml","rhizoferrin"]]},{"id":"NCBITaxon:10141","l":"Cavia porcellus","na":3,"nb":1,"a":[["IDPO%3A0000048","limited proteolysis display site"],["Pfam%3APF16681","Ig-like domain on T-cell surface glycoprotein CD3 epsilon chain"],["PROSITE%3APS00799","Granulins signature"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"NCBITaxon:1125972","l":"Amycolatopsis alba DSM 44262","na":3,"nb":1,"a":[["TED%3AAF-A0A229R958-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A229R958-F1-model_v4_TED01"],["TED%3AAF-A0A229REG9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A229REG9-F1-model_v4_TED01"],["TED%3AAF-A0A229RFD1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A229RFD1-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/albachelin.yaml","albachelin"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":3,"nb":1,"a":[["Pfam%3APF22538","Hexaprenyl diphosphate synthase, small subunit"],["PROSITE%3APS01066","Undecaprenyl pyrophosphate synthase family signature"],["MCSA%3A543","ditrans,polycis-undecaprenyl-diphosphate synthase [(2E,6E)-farnesyl-diphosphate specific]"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:1278073","l":"Myxococcus stipitatus (strain DSM 14675 / JCM 12634 / Mx s8)","na":3,"nb":1,"a":[["IEDB%3A230057","epitope SSARLHFFRALPHP"],["TED%3AAF-L7U5Z3-F1-model_v4_TED02","TED novel fold AF-L7U5Z3-F1-model_v4_TED02"],["TED%3AAF-L7UEI7-F1-model_v4_TED03","TED novel fold AF-L7UEI7-F1-model_v4_TED03"]],"b":[["polyketides/phenalamide-a2.yaml","phenalamide A2"]]},{"id":"NCBITaxon:1381753","l":"Moniliophthora roreri (strain MCA 2997)","na":3,"nb":1,"a":[["TED%3AAF-V2WPW3-F1-model_v4_TED02","TED highly-symmetric fold AF-V2WPW3-F1-model_v4_TED02"],["TED%3AAF-V2WSW5-F1-model_v4_TED05","TED highly-symmetric fold AF-V2WSW5-F1-model_v4_TED05"],["TED%3AAF-V2XCP9-F1-model_v4_TED03","TED highly-symmetric fold AF-V2XCP9-F1-model_v4_TED03"]],"b":[["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"]]},{"id":"NCBITaxon:1392250","l":"Aspergillus steynii IBT 23096","na":3,"nb":1,"a":[["TED%3AAF-A0A2I2FXR6-F1-model_v4_TED02","TED novel fold AF-A0A2I2FXR6-F1-model_v4_TED02"],["TED%3AAF-A0A2I2GJL8-F1-model_v4_TED01","TED novel fold AF-A0A2I2GJL8-F1-model_v4_TED01"],["TED%3AAF-A0A2I2GP63-F1-model_v4_TED02","TED novel fold AF-A0A2I2GP63-F1-model_v4_TED02"]],"b":[["alkaloids/ochrindole-a.yaml","ochrindole A"]]},{"id":"NCBITaxon:1406225","l":"Archangium violaceum Cb vi76","na":3,"nb":1,"a":[["TED%3AAF-A0A084STC5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A084STC5-F1-model_v4_TED01"],["TED%3AAF-A0A084SQF5-F1-model_v4_TED01","TED novel fold AF-A0A084SQF5-F1-model_v4_TED01"],["TED%3AAF-A0A084SQH8-F1-model_v4_TED01","TED novel fold AF-A0A084SQH8-F1-model_v4_TED01"]],"b":[["polyketides/gephyronic-acid.yaml","gephyronic acid"]]},{"id":"NCBITaxon:1756125","l":"Pyrenochaetopsis sp.","na":1,"nb":3,"a":[["Pfam%3APF22903","Diels-Alderase-like"]],"b":[["polyketides/wakodecalines-a.yaml","wakodecalines A"],["polyketides/wakodecalines-b.yaml","wakodecalines B"],["unclassified/phomasetin.yaml","phomasetin"]]},{"id":"NCBITaxon:1810919","l":"Aspergillus mulundensis","na":3,"nb":1,"a":[["TED%3AAF-A0A3D8QN50-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D8QN50-F1-model_v4_TED01"],["TED%3AAF-A0A3D8RF64-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D8RF64-F1-model_v4_TED01"],["TED%3AAF-A0A3D8R479-F1-model_v4_TED02","TED novel fold AF-A0A3D8R479-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/mulundocandin.yaml","mulundocandin"]]},{"id":"NCBITaxon:1857892","l":"Streptomyces sp. MP131-18","na":1,"nb":3,"a":[["TED%3AAF-A0A1V2RLA5-F1-model_v4_TED02","TED novel fold AF-A0A1V2RLA5-F1-model_v4_TED02"]],"b":[["polyketides/lagunapyrone-a.yaml","lagunapyrone A"],["polyketides/lagunapyrone-b.yaml","lagunapyrone B"],["polyketides/lagunapyrone-c.yaml","lagunapyrone C"]]},{"id":"NCBITaxon:1885","l":"Streptomyces actuosus","na":1,"nb":3,"a":[["Pfam%3APF17258","Family of unknown function (DUF5324)"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/nosiheptide-2.yaml","nosiheptide"]]},{"id":"NCBITaxon:1904","l":"Streptomyces cyaneus","na":1,"nb":3,"a":[["Pfam%3APF04673","Polyketide synthesis cyclase"]],"b":[["carbohydrates/curamycin.yaml","curamycin"],["polyketides/cardol.yaml","cardol"],["polyketides/cosmomycin-d.yaml","cosmomycin D"]]},{"id":"NCBITaxon:1905","l":"Streptomyces exfoliatus","na":1,"nb":3,"a":[["MCSA%3A89","pentalenene synthase"]],"b":[["alkaloids/carquinostatin-a.yaml","carquinostatin A"],["alkaloids/carquinostatin-b.yaml","carquinostatin B"],["unclassified/valinomycin-2.yaml","valinomycin"]]},{"id":"NCBITaxon:1938","l":"Streptomyces viridochromogenes","na":1,"nb":3,"a":[["Pfam%3APF11599","RRNA methyltransferase AviRa"]],"b":[["amino_acids_and_peptides/glycinocin-a.yaml","glycinocin A"],["carbohydrates/avilamycin-a.yaml","avilamycin A"],["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"]]},{"id":"NCBITaxon:1950","l":"Streptomyces peucetius","na":1,"nb":3,"a":[["Pfam%3APF13732","ATP-binding protein DrrA1-3-like, C-terminal domain"]],"b":[["amino_acids_and_peptides/peucechelin.yaml","peucechelin"],["polyketides/daunorubicin.yaml","daunorubicin"],["polyketides/doxorubicin.yaml","doxorubicin"]]},{"id":"NCBITaxon:1956","l":"Streptomyces diastaticus","na":1,"nb":3,"a":[["TED%3AAF-A0A7K3Q596-F1-model_v4_TED01","TED novel fold AF-A0A7K3Q596-F1-model_v4_TED01"]],"b":[["alkaloids/diastaphenazine.yaml","diastaphenazine"],["alkaloids/izumiphenazine-c.yaml","izumiphenazine C"],["polyketides/rimocidin.yaml","rimocidin"]]},{"id":"NCBITaxon:2572248","l":"Cryptosporiopsis sp. 8999","na":1,"nb":3,"a":[["Pfam%3APF08592","Anthrone oxygenase"]],"b":[["polyketides/cryptosporioptide-a.yaml","cryptosporioptide A"],["polyketides/cryptosporioptide-b.yaml","cryptosporioptide B"],["polyketides/cryptosporioptide-c.yaml","cryptosporioptide C"]]},{"id":"NCBITaxon:312309","l":"Aliivibrio fischeri (strain ATCC 700601 / ES114)","na":3,"nb":1,"a":[["Pfam%3APF06610","L-alanine exporter"],["Pfam%3APF00765","Autoinducer synthase"],["PROSITE%3APS00949","Autoinducer synthase family signature"]],"b":[["unclassified/ape-vf.yaml","APE Vf"]]},{"id":"NCBITaxon:322159","l":"Streptococcus thermophilus (strain ATCC BAA-491 / LMD-9)","na":3,"nb":1,"a":[["Pfam%3APF18470","Cas9 alpha-helical lobe domain"],["Pfam%3APF18070","CRISPR-Cas9 PI domain"],["Pfam%3APF18061","CRISPR-Cas9 WED domain"]],"b":[["amino_acids_and_peptides/streptide.yaml","streptide"]]},{"id":"NCBITaxon:322710","l":"","na":3,"nb":1,"a":[["IEDB%3A124004","epitope DGLSSVGGY"],["proteintraitsmech%3AELIFE109154_Orn_monoox","Metallophore-associated ornithine N5-monooxygenase family"],["proteintraitsmech%3AELIFE109154_PvdP","Pyoverdine chromophore maturation tyrosinase family"]],"b":[["amino_acids_and_peptides/azotobactin-d.yaml","azotobactin D"]]},{"id":"NCBITaxon:324833","l":"Streptomyces lasaliensis","na":1,"nb":3,"a":[["TED%3AAF-A0A4U5W597-F1-model_v4_TED01","TED novel fold AF-A0A4U5W597-F1-model_v4_TED01"]],"b":[["polyketides/lasalocid-2.yaml","lasalocid"],["polyketides/lasalocid.yaml","lasalocid"],["unclassified/echinomycin.yaml","echinomycin"]]},{"id":"NCBITaxon:33203","l":"Purpureocillium lilacinum","na":1,"nb":3,"a":[["TED%3AAF-A0A2U3ENJ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U3ENJ6-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/leucinostatin-a.yaml","leucinostatin A"],["amino_acids_and_peptides/leucinostatin-b.yaml","leucinostatin B"],["polyketides/patulin.yaml","patulin"]]},{"id":"NCBITaxon:34381","l":"Aspergillus japonicus","na":1,"nb":3,"a":[["MCSA%3A743","quercetin 2,3-dioxygenase"]],"b":[["amino_acids_and_peptides/aculeacin-a.yaml","aculeacin A"],["fatty_acids/himeic-acid-a.yaml","himeic acid A"],["unclassified/paraherquamide.yaml","paraherquamide"]]},{"id":"NCBITaxon:362242","l":"","na":3,"nb":1,"a":[["Pfam%3APF02654","Cobalamin-5-phosphate synthase"],["Pfam%3APF02622","AlgH-like"],["Pfam%3APF01628","HrcA protein C terminal domain"]],"b":[["polyketides/mycolactone-b.yaml","mycolactone B"]]},{"id":"NCBITaxon:3755","l":"Prunus dulcis","na":3,"nb":1,"a":[["PROSITE%3APS00305","11-S plant seed storage proteins signature"],["MCSA%3A941","(R)-mandelonitrile lyase"],["TED%3AAF-A0A5E4FP94-F1-model_v4_TED01","TED novel fold AF-A0A5E4FP94-F1-model_v4_TED01"]],"b":[["shikimates_and_phenylpropanoids/4-hydroxy-3-prenylbenzoic-acid.yaml","4-hydroxy-3-prenylbenzoic acid"]]},{"id":"NCBITaxon:376686","l":"","na":3,"nb":1,"a":[["Pfam%3APF17957","Bacterial Ig domain"],["Pfam%3APF24850","Bacillithiol biosynthesis BshC, C-terminal coiled-coil domain"],["Pfam%3APF14109","GldH lipoprotein"]],"b":[["polyketides/flexirubin.yaml","flexirubin"]]},{"id":"NCBITaxon:381666","l":"Cupriavidus necator H16","na":3,"nb":1,"a":[["Pfam%3APF13473","Cupredoxin-like domain"],["Pfam%3APF10605","3HB-oligomer hydrolase (3HBOH)"],["Pfam%3APF21783","YNCE-like beta-propeller"]],"b":[["amino_acids_and_peptides/cupriachelin.yaml","cupriachelin"]]},{"id":"NCBITaxon:393595","l":"Alcanivorax borkumensis SK2","na":1,"nb":3,"a":[["TED%3AAF-Q0VNH7-F1-model_v4_TED01","TED highly-symmetric fold AF-Q0VNH7-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/amphibactin-e.yaml","amphibactin E"],["amino_acids_and_peptides/amphibactin-h.yaml","amphibactin H"],["fatty_acids/amphibactin-i.yaml","amphibactin I"]]},{"id":"NCBITaxon:41067","l":"Aspergillus candidus","na":1,"nb":3,"a":[["TED%3AAF-A0A2I2EZ62-F1-model_v4_TED02","TED novel fold AF-A0A2I2EZ62-F1-model_v4_TED02"]],"b":[["alkaloids/aspcandine.yaml","aspcandine"],["polyketides/kojic-acid.yaml","kojic acid"],["shikimates_and_phenylpropanoids/chlorflavonin.yaml","chlorflavonin"]]},{"id":"NCBITaxon:41899","l":"Burkholderia plantarii","na":3,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_GrbD","GrbD-type graminine biosynthesis protein family"],["proteintraitsmech%3AELIFE109154_GrbE","GrbE-type graminine biosynthesis protein family"],["TED%3AAF-A0A0B6RMB1-F1-model_v4_TED01","TED novel fold AF-A0A0B6RMB1-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/plantaribactin.yaml","plantaribactin"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":3,"nb":1,"a":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF22277","EncFtn-like"],["TED%3AAF-D0LJ11-F1-model_v4_TED04","TED highly-symmetric fold AF-D0LJ11-F1-model_v4_TED04"]],"b":[["polyketides/haliamide.yaml","haliamide"]]},{"id":"NCBITaxon:53446","l":"Streptomyces cinnamoneus","na":1,"nb":3,"a":[["TED%3AAF-A0A2S6XSK0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S6XSK0-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/cinnamycin.yaml","cinnamycin"],["amino_acids_and_peptides/duramycin.yaml","duramycin"],["unclassified/bicozamycin.yaml","bicozamycin"]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":3,"nb":1,"a":[["Pfam%3APF07833","Copper amine oxidase N-terminal domain"],["MCSA%3A87","urease"],["TED%3AAF-A0A447L715-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A447L715-F1-model_v4_TED02"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:645","l":"Aeromonas salmonicida","na":3,"nb":1,"a":[["Pfam%3APF28601","Heat shock protein 15, C-terminal region"],["Pfam%3APF12563","Hemolytic toxin N terminal"],["Pfam%3APF01203","Type II secretion system (T2SS), protein N"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:659352","l":"Streptomyces sp. SN-593","na":1,"nb":3,"a":[["TED%3AAF-A0A7U3V0R8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7U3V0R8-F1-model_v4_TED02"]],"b":[["polyketides/kinanthraquinone-b.yaml","kinanthraquinone B"],["polyketides/kinanthraquinone.yaml","kinanthraquinone"],["polyketides/reveromycin-a.yaml","reveromycin A"]]},{"id":"NCBITaxon:660122","l":"Fusarium vanettenii (strain ATCC MYA-4622 / CBS 123669 / FGSC 9596 / NRRL 45880 / 77-13-4)","na":3,"nb":1,"a":[["Pfam%3APF17660","Polyglycine hydrolase-like, structural repeat"],["Pfam%3APF26719","ATPase synthesis protein 25, C-terminal TPR repeats"],["TED%3AAF-C7YNY6-F1-model_v4_TED02","TED highly-symmetric fold AF-C7YNY6-F1-model_v4_TED02"]],"b":[["unclassified/sansalvamide.yaml","sansalvamide"]]},{"id":"NCBITaxon:66374","l":"Streptomyces nojiriensis","na":1,"nb":3,"a":[["TED%3AAF-A0A8A6HBY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8A6HBY6-F1-model_v4_TED01"]],"b":[["carbohydrates/streptothricin-d.yaml","streptothricin D"],["carbohydrates/streptothricin-e.yaml","streptothricin E"],["carbohydrates/streptothricin-f.yaml","streptothricin F"]]},{"id":"NCBITaxon:68239","l":"Streptomyces mirabilis strain P8-A","na":1,"nb":3,"a":[["TED%3AAF-A0A1I2Y4U7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2Y4U7-F1-model_v4_TED01"]],"b":[["alkaloids/azodyrecin-a.yaml","Azodyrecin A"],["alkaloids/azodyrecin-b.yaml","Azodyrecin B"],["alkaloids/azodyrecin-c.yaml","Azodyrecin C"]]},{"id":"NCBITaxon:717774","l":"Marinomonas mediterranea MMB-1","na":1,"nb":3,"a":[["TED%3AAF-F2K4E6-F1-model_v4_TED01","TED novel fold AF-F2K4E6-F1-model_v4_TED01"]],"b":[["alkaloids/bistribromopyrrole.yaml","bistribromopyrrole"],["shikimates_and_phenylpropanoids/bromophene.yaml","bromophene"],["shikimates_and_phenylpropanoids/pentabromopseudilin.yaml","pentabromopseudilin"]]},{"id":"NCBITaxon:749414","l":"","na":3,"nb":1,"a":[["Pfam%3APF14509","Glycosyl-hydrolase 97 C-terminal, oligomerisation"],["Pfam%3APF14508","Glycosyl-hydrolase 97 N-terminal"],["Pfam%3APF10566","Glycoside hydrolase 97"]],"b":[["polyketides/nanchangmycin.yaml","nanchangmycin"]]},{"id":"NCBITaxon:889282","l":"Polyangium spumosum","na":3,"nb":1,"a":[["TED%3AAF-A0A6N7PQI9-F1-model_v4_TED01","TED novel fold AF-A0A6N7PQI9-F1-model_v4_TED01"],["TED%3AAF-A0A6N7PTT9-F1-model_v4_TED02","TED novel fold AF-A0A6N7PTT9-F1-model_v4_TED02"],["TED%3AAF-A0A6N7Q2E0-F1-model_v4_TED01","TED novel fold AF-A0A6N7Q2E0-F1-model_v4_TED01"]],"b":[["unclassified/antalid.yaml","antalid"]]},{"id":"NCBITaxon:95486","l":"Burkholderia cenocepacia","na":3,"nb":1,"a":[["TED%3AAF-A0A109EHZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A109EHZ6-F1-model_v4_TED01"],["TED%3AAF-A0A071M3L2-F1-model_v4_TED01","TED novel fold AF-A0A071M3L2-F1-model_v4_TED01"],["TED%3AAF-A0A088UYL8-F1-model_v4_TED01","TED novel fold AF-A0A088UYL8-F1-model_v4_TED01"]],"b":[["unclassified/ornibactin-c8.yaml","ornibactin C8"]]},{"id":"RHEA:32647","l":"","na":3,"nb":1,"a":[["EC%3A2.1.1.254","erythromycin 3'-O-methyltransferase"],["RHEA%3A32647","erythromycin C + S-adenosyl-L-methionine = erythromycin A + S-adenosyl-L-homocysteine + H(+)"],["GO%3A0102307","erythromycin 3'-o-methyltransferase activity"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"UniProt:P22629.","l":"","na":3,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_4IR","4IR-binding site"],["proteintraitsmech%3ABIOLIP_HL9","HL9-binding site"],["proteintraitsmech%3ABIOLIP_ZOE","ZOE-binding site"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"UniProt:P48635","l":"","na":3,"nb":1,"a":[["EC%3A1.14.13.154","erythromycin 12 hydroxylase"],["RHEA%3A32631","erythromycin D + NADPH + O2 + H(+) = erythromycin C + NADP(+) + H2O"],["proteintraitsmech%3ABIOLIP_KLN","KLN-binding site"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"UniProt:Q00975","l":"","na":3,"nb":1,"a":[["GO%3A1903235","positive regulation of calcium ion-dependent exocytosis of neurotransmitter"],["ELM%3AELME000451","LIG_PDZ_Wminus1_1"],["proteintraitsmech%3ABIOLIP_PT5","PT5-binding site"]],"b":[["alkaloids/odilorhabdin-noso-95c.yaml","odilorhabdin NOSO-95C"]]},{"id":"UniProt:Q16584","l":"","na":3,"nb":1,"a":[["CDD%3Acd14147","STKc_MLK3"],["CDD%3Acd12059","SH3_MLK1-3"],["InterPro%3AIPR035779","MLK1-3, SH3 domain"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"]]},{"id":"CHEBI:10106","l":"zearalenone","na":2,"nb":1,"a":[["RHEA%3A79255","zearalenone + H2O = hydrolyzed zearalenone + H(+)"],["proteintraitsmech%3ABIOLIP_ZER","ZER-binding site"]],"b":[["polyketides/zearalenone.yaml","zearalenone"]]},{"id":"CHEBI:132426","l":"chondrochloren A","na":2,"nb":1,"a":[["EC%3A4.1.1.129","1'-carboxy-chondrochloren decarboxylase"],["RHEA%3A81491","1'-carboxy-chondrochloren A + FAD + 2 H(+) = chondrochloren A + FADH2 + CO2"]],"b":[["polyketides/chondrochloren-a.yaml","chondrochloren A"]]},{"id":"CHEBI:134612","l":"staphyloferrin B","na":2,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_134612","requires staphyloferrin B"],["proteintraitsmech%3ABIOLIP_SE8","SE8-binding site"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"]]},{"id":"CHEBI:135511","l":"rebeccamycin","na":2,"nb":1,"a":[["EC%3A2.1.1.164","demethylrebeccamycin-D-glucose O-methyltransferase"],["RHEA%3A27353","4'-demethylrebeccamycin + S-adenosyl-L-methionine = rebeccamycin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["alkaloids/rebeccamycin.yaml","rebeccamycin"]]},{"id":"CHEBI:137562","l":"(+)-eremophilene","na":2,"nb":1,"a":[["EC%3A4.2.3.164","(+)-eremophilene synthase"],["RHEA%3A52804","(2E,6E)-farnesyl diphosphate = (+)-eremophilene + diphosphate"]],"b":[["terpenoids/eremophilene.yaml","(+)-eremophilene"]]},{"id":"CHEBI:138165","l":"(+)-(2S,3R,9R)-pristinol","na":2,"nb":1,"a":[["EC%3A4.2.3.182","pristinol synthase"],["RHEA%3A54372","(2E,6E)-farnesyl diphosphate + H2O = (+)-(2S,3R,9R)-pristinol + diphosphate"]],"b":[["terpenoids/2s-3r-9r-pristinol.yaml","(+)-(2S,3R,9R)-pristinol"]]},{"id":"CHEBI:139480","l":"(+)-O-methylkolavelool","na":2,"nb":1,"a":[["EC%3A2.1.1.347","(+)-O-methylkolavelool synthase"],["RHEA%3A55968","(+)-kolavelool + S-adenosyl-L-methionine = (+)-O-methylkolavelool + S-adenosyl-L-homocysteine + H(+)"]],"b":[["terpenoids/o-methylkolavelool.yaml","(+)-O-methylkolavelool"]]},{"id":"CHEBI:145066","l":"stemphyloxin II","na":2,"nb":1,"a":[["RHEA%3A61904","betaenone A + NADPH + O2 + H(+) = stemphyloxin II + NADP(+) + H2O"],["RHEA%3A62716","stemphyloxin I = stemphyloxin II"]],"b":[["polyketides/stemphyloxin-ii.yaml","stemphyloxin II"]]},{"id":"CHEBI:145070","l":"stemphyloxin I","na":2,"nb":1,"a":[["RHEA%3A62712","betaenone C + NADPH + O2 + H(+) = stemphyloxin I + NADP(+) + H2O"],["RHEA%3A62716","stemphyloxin I = stemphyloxin II"]],"b":[["polyketides/stemphyloxin-i.yaml","stemphyloxin I"]]},{"id":"CHEBI:146153","l":"ilicicolin B","na":2,"nb":1,"a":[["RHEA%3A63084","ilicicolin B + FADH2 + chloride + O2 = ilicicolin A + FAD + 2 H2O + H(+)"],["RHEA%3A63080","ilicicolinate B + AH2 + ATP = ilicicolin B + A + AMP + diphosphate"]],"b":[["unclassified/ilicicolin-b.yaml","ilicicolin B"]]},{"id":"CHEBI:155912","l":"aculene C","na":2,"nb":1,"a":[["RHEA%3A65108","aculene C + L-prolyl-[peptidyl-carrier protein] = aculene A + holo-[peptidyl-carrier protein]"],["RHEA%3A65112","aculene D + 2-oxoglutarate + O2 = aculene C + succinate + CO2 + H2O"]],"b":[["terpenoids/aculene-c.yaml","aculene C"]]},{"id":"CHEBI:15956","l":"biotin","na":2,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15956","requires biotin"],["proteintraitsmech%3ABIOLIP_BTN","BTN-binding site"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"CHEBI:16441","l":"linamarin","na":2,"nb":1,"a":[["EC%3A2.4.1.63","linamarin synthase"],["RHEA%3A20009","2-hydroxy-2-methylpropanenitrile + UDP-alpha-D-glucose = linamarin + UDP + H(+)"]],"b":[["amino_acids_and_peptides/linamarin.yaml","linamarin"]]},{"id":"CHEBI:17630","l":"kanamycin A","na":2,"nb":1,"a":[["MCSA%3A647","kanamycin nucleotidyltransferase"],["proteintraitsmech%3ABIOLIP_KAN","KAN-binding site"]],"b":[["carbohydrates/kanamycin-a.yaml","kanamycin A"]]},{"id":"CHEBI:17695","l":"casbene","na":2,"nb":1,"a":[["EC%3A4.2.3.8","casbene synthase"],["RHEA%3A14901","(2E,6E,10E)-geranylgeranyl diphosphate = casbene + diphosphate"]],"b":[["terpenoids/casbene.yaml","casbene"]]},{"id":"CHEBI:17939","l":"puromycin","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_PUY","PUY-binding site"]],"b":[["carbohydrates/puromycin.yaml","puromycin"]]},{"id":"CHEBI:2504","l":"aflatoxin B1","na":2,"nb":1,"a":[["EC%3A1.14.14.117","aflatoxin B synthase"],["RHEA%3A35759","8-O-methylsterigmatocystin + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = aflatoxin B1 + methanol + 2 oxidized [NADPH--hemoprotein reductase] + CO2 + H2O + 2 H(+)"]],"b":[["unclassified/aflatoxin-b1.yaml","aflatoxin B1"]]},{"id":"CHEBI:27826","l":"(S)-4-hydroxymandelonitrile β-D-glucoside","na":2,"nb":1,"a":[["EC%3A2.4.1.85","cyanohydrin beta-glucosyltransferase"],["RHEA%3A12853","(S)-4-hydroxymandelonitrile + UDP-alpha-D-glucose = dhurrin + UDP + H(+)"]],"b":[["amino_acids_and_peptides/s-4-hydroxymandelonitrile-d-glucoside.yaml","(S)-4-hydroxymandelonitrile β-D-glucoside"]]},{"id":"CHEBI:28283","l":"capsidiol","na":2,"nb":1,"a":[["EC%3A1.14.14.149","5-epiaristolochene 1,3-dihydroxylase"],["RHEA%3A28226","(+)-5-epi-aristolochene + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = capsidiol + 2 oxidized [NADPH--hemoprotein reductase] + 2 H2O + 2 H(+)"]],"b":[["terpenoids/capsidiol.yaml","capsidiol"]]},{"id":"CHEBI:29519","l":"","na":2,"nb":1,"a":[["EC%3A4.2.3.42","aphidicolan-16beta-ol synthase"],["RHEA%3A26213","9alpha-copalyl diphosphate + H2O = aphidicolan-16beta-ol + diphosphate"]],"b":[["terpenoids/aphidicolan-16-ol.yaml","aphidicolan-16β-ol"]]},{"id":"CHEBI:29673","l":"rifamycin SV","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]],"b":[["polyketides/rifamycin-sv.yaml","rifamycin SV"]]},{"id":"CHEBI:38229","l":"solanapyrone A","na":2,"nb":1,"a":[["EC%3A5.5.1.20","prosolanapyrone-III cycloisomerase"],["RHEA%3A31683","prosolanapyrone III = (-)-solanapyrone A"]],"b":[["polyketides/solanapyrone-a.yaml","solanapyrone A"]]},{"id":"CHEBI:42452","l":"formycin A","na":2,"nb":1,"a":[["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"],["proteintraitsmech%3ABIOLIP_FMC","FMC-binding site"]],"b":[["alkaloids/formycin-a.yaml","formycin A"]]},{"id":"CHEBI:48209","l":"aflatoxin B2","na":2,"nb":1,"a":[["EC%3A1.14.14.117","aflatoxin B synthase"],["RHEA%3A35763","8-O-methyldihydrosterigmatocystin + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = aflatoxin B2 + methanol + 2 oxidized [NADPH--hemoprotein reductase] + CO2 + H2O + 2 H(+)"]],"b":[["polyketides/aflatoxin-b2.yaml","aflatoxin B2"]]},{"id":"CHEBI:52317","l":"thalianol","na":2,"nb":1,"a":[["EC%3A5.4.99.31","thalianol synthase"],["RHEA%3A26160","(S)-2,3-epoxysqualene = thalianol"]],"b":[["terpenoids/thalianol.yaml","thalianol"]]},{"id":"CHEBI:61345","l":"chrysobactin","na":2,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_61345","requires chrysobactin"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["amino_acids_and_peptides/chrysobactin.yaml","chrysobactin"]]},{"id":"CHEBI:63465","l":"marneral","na":2,"nb":1,"a":[["EC%3A5.4.99.53","marneral synthase"],["RHEA%3A31875","(S)-2,3-epoxysqualene = marneral"]],"b":[["terpenoids/marneral.yaml","marneral"]]},{"id":"CHEBI:63702","l":"avermitilol","na":2,"nb":1,"a":[["EC%3A4.2.3.96","avermitilol synthase"],["RHEA%3A32023","(2E,6E)-farnesyl diphosphate + H2O = avermitilol + diphosphate"]],"b":[["terpenoids/avermitilol.yaml","avermitilol"]]},{"id":"CHEBI:63703","l":"(−)-δ-cadinene","na":2,"nb":1,"a":[["EC%3A4.2.3.97","(-)-delta-cadinene synthase"],["RHEA%3A32015","(2E,6E)-farnesyl diphosphate = (-)-delta-cadinene + diphosphate"]],"b":[["terpenoids/cadinene.yaml","(−)-δ-cadinene"]]},{"id":"CHEBI:63704","l":"(+)-Τ-muurolol","na":2,"nb":1,"a":[["EC%3A4.2.3.98","(+)-T-muurolol synthase"],["RHEA%3A32011","(2E,6E)-farnesyl diphosphate + H2O = (+)-T-muurolol + diphosphate"]],"b":[["terpenoids/muurolol.yaml","(+)-Τ-muurolol"]]},{"id":"CHEBI:64268","l":"","na":2,"nb":1,"a":[["EC%3A2.1.1.254","erythromycin 3'-O-methyltransferase"],["RHEA%3A32647","erythromycin C + S-adenosyl-L-methionine = erythromycin A + S-adenosyl-L-homocysteine + H(+)"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"CHEBI:6570","l":"lupeol","na":2,"nb":1,"a":[["EC%3A5.4.99.41","lupeol synthase"],["RHEA%3A31383","(S)-2,3-epoxysqualene = lupeol"]],"b":[["terpenoids/lupeol.yaml","lupeol"]]},{"id":"CHEBI:73237","l":"(−)-noscapine","na":2,"nb":1,"a":[["EC%3A1.1.1.415","noscapine synthase"],["RHEA%3A57404","narcotine hemiacetal + NAD(+) = noscapine + NADH + H(+)"]],"b":[["alkaloids/noscapine.yaml","(−)-noscapine"]]},{"id":"CHEBI:77772","l":"ilicicolin H","na":2,"nb":1,"a":[["RHEA%3A64568","3-[(2E,4E,8S,10E,12Z)-4,8-dimethyltetradeca-2,4,10,12-tetraenoyl]-4-hydroxy-5-(4-hydroxyphenyl)-1,2-dihydropyridin-2-one = ilicicolin H"],["RHEA%3A64564","8-epi-ilicicolin H = ilicicolin H"]],"b":[["alkaloids/ilicicolin-h.yaml","ilicicolin H"]]},{"id":"CHEBI:80049","l":"coelichelin","na":2,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_80049","requires coelichelin"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["amino_acids_and_peptides/coelichelin.yaml","coelichelin"]]},{"id":"CHEBI:82799","l":"(R)-nephthenol","na":2,"nb":1,"a":[["EC%3A4.2.3.149","nephthenol synthase"],["RHEA%3A42992","(2E,6E,10E)-geranylgeranyl diphosphate + H2O = (R)-nephthenol + diphosphate"]],"b":[["terpenoids/r-nephthenol.yaml","(R)-nephthenol"]]},{"id":"CHEBI:84711","l":"staphyloferrin A","na":2,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_84711","requires staphyloferrin A"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["unclassified/staphyloferrin-a.yaml","staphyloferrin A"]]},{"id":"CHEBI:86012","l":"oxetanocin A","na":2,"nb":1,"a":[["EC%3A3.1.3.112","4'-phosphooxetanocin A phosphatase"],["RHEA%3A81367","4'-phosphooxetanocin A + H2O = oxetanocin A + phosphate"]],"b":[["carbohydrates/oxetanocin-a.yaml","oxetanocin A"]]},{"id":"DOI:10.1007/s00253-017-8465-4","l":"","na":2,"nb":1,"a":[["NCBIfam%3ANF040066","DUF6336 family protein"],["NCBIfam%3ANF039733","DUF6338 family protein"]],"b":[["amino_acids_and_peptides/ficellomycin.yaml","Ficellomycin"]]},{"id":"DOI:10.1016/0378-1119(95)00442-9","l":"","na":2,"nb":1,"a":[["ARO%3A3004274","23S ribosomal RNA methyltransferase"],["ARO%3A3003060","tsnR"]],"b":[["amino_acids_and_peptides/thiostrepton.yaml","thiostrepton"]]},{"id":"DOI:10.1021/acs.jafc.6b04455","l":"","na":2,"nb":1,"a":[["NCBIfam%3ANF040063","DUF6323 family protein"],["NCBIfam%3ANF040016","DUF6179 domain-containing protein"]],"b":[["polyketides/aurantinin-c.yaml","aurantinin C"]]},{"id":"DOI:10.1073/pnas.0904113106","l":"","na":2,"nb":1,"a":[["RHEA%3A11328","isopentenyl diphosphate + dimethylallyl diphosphate = neryl diphosphate + diphosphate"],["RHEA%3A27830","neryl diphosphate = beta-phellandrene + diphosphate"]],"b":[["terpenoids/phellandrene.yaml","β-phellandrene"]]},{"id":"DOI:10.1094/MPMI-22-10-1258","l":"","na":2,"nb":1,"a":[["InterPro%3AIPR063058","CtvD domain"],["NCBIfam%3ANF022643","DUF2834 domain-containing protein"]],"b":[["fatty_acids/depudecin.yaml","depudecin"]]},{"id":"DOI:10.1099/13500872-141-4-1007","l":"","na":2,"nb":1,"a":[["RHEA%3A37835","aklavinone + NADPH + O2 + H(+) = epsilon-rhodomycinone + NADP(+) + H2O"],["NCBIfam%3ANF046068","aklavinone 12-hydroxylase DnrF"]],"b":[["polyketides/daunorubicin.yaml","daunorubicin"]]},{"id":"DOI:10.1105/tpc.108.063677","l":"","na":1,"nb":2,"a":[["RHEA%3A31967","ent-cassa-12,15-diene + reduced [NADPH--hemoprotein reductase] + O2 = ent-11beta-hydroxycassa-12,15-diene + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["terpenoids/oryzalides.yaml","oryzalides"],["terpenoids/phytocassane.yaml","phytocassane"]]},{"id":"DOI:10.1111/1751-7915.12329","l":"","na":2,"nb":1,"a":[["RHEA%3A57728","trans-aconitate + H(+) = itaconate + CO2"],["InterPro%3AIPR020557","Fumarate lyase, conserved site"]],"b":[["fatty_acids/itaconic-acid.yaml","itaconic acid"]]},{"id":"DOI:10.1126/science.1154990","l":"","na":1,"nb":2,"a":[["RHEA%3A26160","(S)-2,3-epoxysqualene = thalianol"]],"b":[["terpenoids/thaliandiol.yaml","thaliandiol"],["terpenoids/thalianol.yaml","thalianol"]]},{"id":"DOI:10.1126/science.273.5272.239","l":"","na":2,"nb":1,"a":[["InterPro%3AIPR009076","FKBP12-rapamycin binding domain"],["InterPro%3AIPR036738","FKBP12-rapamycin binding domain superfamily"]],"b":[["polyketides/sirolimus.yaml","sirolimus"]]},{"id":"DOI:10.1128/AAC.44.3.647-650.2000","l":"","na":2,"nb":1,"a":[["ARO%3A3000423","FomA"],["ARO%3A3000359","fosfomycin phosphotransferase"]],"b":[["unclassified/fosfomycin.yaml","fosfomycin"]]},{"id":"DOI:10.1128/AEM.01061-09","l":"","na":2,"nb":1,"a":[["NCBIfam%3ANF039246","anacyclamide/piricyclamide family prenylated cyclic peptide"],["NCBIfam%3ATIGR04220","cyanobactin biosynthesis system PatB/AcyB/McaB family protein"]],"b":[["amino_acids_and_peptides/anacyclamide-a10.yaml","anacyclamide A10"]]},{"id":"DOI:10.1128/AEM.01743-08","l":"","na":2,"nb":1,"a":[["RHEA%3A64076","3,6,8,9-tetrahydroxy-1-oxo-3-(2-oxopropyl)-1,2,3,4-tetrahydroanthracene-2-carboxyl-[ACP] + NADPH + O2 + H(+) = 2,3,6,8,9-pentahydroxy-1-oxo-3-(2-oxopropyl)-1,2,3,4-tetrahydroanthracene-2-carboxyl-[ACP] + NADP(+) + H2O"],["RHEA%3A64072","holo-[ACP] + 8 malonyl-CoA + acetyl-CoA + 8 H(+) = 3,6,8,9-tetrahydroxy-1-oxo-3-(2-oxopropyl)-1,2,3,4-tetrahydroanthracene-2-carboxyl-[ACP] + 8 CO2 + 9 CoA + 2 H2O"]],"b":[["polyketides/asperthecin.yaml","asperthecin"]]},{"id":"DOI:10.1128/AEM.03254-12","l":"","na":2,"nb":1,"a":[["NCBIfam%3ATIGR04469","CGA synthase-related protein"],["NCBIfam%3ANF055038","CGA synthase-related protein"]],"b":[["carbohydrates/blasticidin-s.yaml","blasticidin S"]]},{"id":"DOI:10.1128/JB.00801-08","l":"","na":2,"nb":1,"a":[["RHEA%3A56688","(2S)-3-(4-hydroxyphenyl)-2-isocyanopropanoate + 2-oxoglutarate + O2 = (2E)-3-(4-hydroxyphenyl)-2-isocyanoprop-2-enoate + succinate + CO2 + H2O"],["RHEA%3A45732","D-ribulose 5-phosphate + L-tyrosine = (2S)-3-(4-hydroxyphenyl)-2-isocyanopropanoate + hydroxyacetone + formaldehyde + phosphate + H2O + H(+)"]],"b":[["shikimates_and_phenylpropanoids/paerucumarin.yaml","paerucumarin"]]},{"id":"DOI:10.1128/JB.187.6.2084-2092.2005","l":"","na":2,"nb":1,"a":[["RHEA%3A27302","7-chloro-L-tryptophan + O2 = 3-(7-chloroindol-3-yl)-2-iminopropanoate + H2O2"],["RHEA%3A49024","L-tryptophan + O2 = 2-iminio-3-(indol-3-yl)propanoate + H2O2"]],"b":[["alkaloids/rebeccamycin.yaml","rebeccamycin"]]},{"id":"DOI:10.1128/aem.61.5.1923-1930.1995","l":"","na":2,"nb":1,"a":[["InterPro%3AIPR060750","Tri6-like, C2H2 zinc finger domain"],["NCBIfam%3ANF054991","Trichothecene biosynthesis transcription regulator TRI6"]],"b":[["terpenoids/t-2-toxin.yaml","T-2 toxin"]]},{"id":"DOI:10.1128/jb.172.5.2541-2546.1990","l":"","na":2,"nb":1,"a":[["RHEA%3A32647","erythromycin C + S-adenosyl-L-methionine = erythromycin A + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A32651","erythromycin D + S-adenosyl-L-methionine = erythromycin B + S-adenosyl-L-homocysteine + H(+)"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"DOI:10.1186/1471-2164-14-339","l":"","na":2,"nb":1,"a":[["InterPro%3AIPR045702","Domain of unknown function DUF6060"],["NCBIfam%3ANF039973","DUF6060 domain-containing protein"]],"b":[["amino_acids_and_peptides/pneumocandin-b0.yaml","pneumocandin B0"]]},{"id":"DOI:10.1371/journal.pone.0119302","l":"","na":2,"nb":1,"a":[["RHEA%3A64580","(2Z,6Z)-farnesyl diphosphate + isopentenyl diphosphate = nerylneryl diphosphate + diphosphate"],["RHEA%3A55520","3 isopentenyl diphosphate + dimethylallyl diphosphate = nerylneryl diphosphate + 3 diphosphate"]],"b":[["terpenoids/lycosantalonol.yaml","lycosantalonol"]]},{"id":"DOI:10.3389/fmicb.2018.00690","l":"","na":2,"nb":1,"a":[["InterPro%3AIPR053790","Pyrroline-5-carboxylate reductase-like conserved site"],["InterPro%3AIPR062688","KK-1 biosynthesis cluster protein D, N-terminal region"]],"b":[["unclassified/kk-1.yaml","KK-1"]]},{"id":"NCBITaxon:105696","l":"Epicoccum nigrum","na":1,"nb":2,"a":[["TED%3AAF-A0A1Y2LQ80-F1-model_v4_TED02","TED novel fold AF-A0A1Y2LQ80-F1-model_v4_TED02"]],"b":[["polyketides/epipyrone-a.yaml","epipyrone A"],["terpenoids/carotene.yaml","β-carotene"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":1,"nb":2,"a":[["TED%3AAF-A0A367PA30-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A367PA30-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/cupriachelin.yaml","cupriachelin"],["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"]]},{"id":"NCBITaxon:1214568","l":"Diaporthe amygdali","na":1,"nb":2,"a":[["Pfam%3APF05704","Capsular polysaccharide synthesis protein"]],"b":[["terpenoids/5-9-10-labda-8-20-13-dien-15-yl-diphosphate.yaml","5α,9α,10β-labda-8(20),13-dien-15-yl diphosphate"],["terpenoids/phyllocladan-16-ol.yaml","phyllocladan-16α-ol"]]},{"id":"NCBITaxon:1266744","l":"Talaromyces purpureogenus","na":2,"nb":1,"a":[["Pfam%3APF10503","Esterase PHB depolymerase"],["MCSA%3A431","acetylxylan esterase"]],"b":[["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"]]},{"id":"NCBITaxon:1288362","l":"Actinoplanes sp. ATCC 53533","na":2,"nb":1,"a":[["TED%3AAF-A0A428XH31-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A428XH31-F1-model_v4_TED01"],["TED%3AAF-A0A428XQY1-F1-model_v4_TED01","TED novel fold AF-A0A428XQY1-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/uk-68-597.yaml","UK-68,597"]]},{"id":"NCBITaxon:1353533","l":"Pseudoalteromonas luteoviolacea 2ta16","na":2,"nb":1,"a":[["TED%3AAF-V4HNX8-F1-model_v4_TED01","TED novel fold AF-V4HNX8-F1-model_v4_TED01"],["TED%3AAF-V4JDU9-F1-model_v4_TED01","TED novel fold AF-V4JDU9-F1-model_v4_TED01"]],"b":[["shikimates_and_phenylpropanoids/pentabromopseudilin.yaml","pentabromopseudilin"]]},{"id":"NCBITaxon:1392248","l":"Aspergillus campestris (strain IBT 28561)","na":2,"nb":1,"a":[["Pfam%3APF11954","Domain of unknown function (DUF3471)"],["TED%3AAF-A0A2I1D498-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I1D498-F1-model_v4_TED01"]],"b":[["shikimates_and_phenylpropanoids/chlorflavonin.yaml","chlorflavonin"]]},{"id":"NCBITaxon:1449976","l":"Kutzneria albida DSM 43870","na":1,"nb":2,"a":[["TED%3AAF-W5WK35-F1-model_v4_TED01","TED novel fold AF-W5WK35-F1-model_v4_TED01"]],"b":[["carbohydrates/huimycin.yaml","huimycin"],["unclassified/aculeximycin.yaml","aculeximycin"]]},{"id":"NCBITaxon:1450533","l":"Aspergillus niger CBS 101883","na":1,"nb":2,"a":[["TED%3AAF-A0A319AKL5-F1-model_v4_TED01","TED novel fold AF-A0A319AKL5-F1-model_v4_TED01"]],"b":[["polyketides/campyrone-b.yaml","campyrone B"],["polyketides/pyrophen.yaml","pyrophen"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":2,"nb":1,"a":[["PROSITE%3APS01120","Urease nickel ligands signature"],["PROSITE%3APS00145","Urease active site"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:148305","l":"Pyricularia grisea","na":1,"nb":2,"a":[["TED%3AAF-A0A6P8AZV3-F1-model_v4_TED01","TED novel fold AF-A0A6P8AZV3-F1-model_v4_TED01"]],"b":[["alkaloids/pyrichalasin-h.yaml","pyrichalasin H"],["polyketides/terrestric-acid.yaml","terrestric acid"]]},{"id":"NCBITaxon:1519471","l":"Streptomyces sp. NRRL S-4","na":1,"nb":2,"a":[["TED%3AAF-A0A0N0YGV9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0N0YGV9-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/thiostreptamide-s4.yaml","thiostreptamide S4"],["polyketides/venturicidin-a.yaml","venturicidin A"]]},{"id":"NCBITaxon:161398","l":"Pseudoalteromonas phenolica","na":2,"nb":1,"a":[["TED%3AAF-A0A4Q7IPD1-F1-model_v4_TED01","TED novel fold AF-A0A4Q7IPD1-F1-model_v4_TED01"],["TED%3AAF-A0A4Q7IRU1-F1-model_v4_TED01","TED novel fold AF-A0A4Q7IRU1-F1-model_v4_TED01"]],"b":[["shikimates_and_phenylpropanoids/bromophene.yaml","bromophene"]]},{"id":"NCBITaxon:164546","l":"Cupriavidus taiwanensis","na":2,"nb":1,"a":[["TED%3AAF-A0A375CFL3-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A375CFL3-F1-model_v4_TED04"],["TED%3AAF-A0A375EJW3-F1-model_v4_TED03","TED novel fold AF-A0A375EJW3-F1-model_v4_TED03"]],"b":[["amino_acids_and_peptides/taiwachelin.yaml","taiwachelin"]]},{"id":"NCBITaxon:1654360","l":"Photobacterium galatheae","na":2,"nb":1,"a":[["TED%3AAF-A0A066RSN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A066RSN6-F1-model_v4_TED01"],["TED%3AAF-A0A066RLQ8-F1-model_v4_TED01","TED novel fold AF-A0A066RLQ8-F1-model_v4_TED01"]],"b":[["alkaloids/holomycin.yaml","holomycin"]]},{"id":"NCBITaxon:179408","l":"Oscillatoria nigro-viridis PCC 7112","na":2,"nb":1,"a":[["TED%3AAF-K9VAQ4-F1-model_v4_TED02","TED highly-symmetric fold AF-K9VAQ4-F1-model_v4_TED02"],["TED%3AAF-K9VBA8-F1-model_v4_TED02","TED novel fold AF-K9VBA8-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/viridisamide-a.yaml","viridisamide A"]]},{"id":"NCBITaxon:182096","l":"Aspergillus chevalieri","na":1,"nb":2,"a":[["TED%3AAF-A0A7R7VIB2-F1-model_v4_TED01","TED novel fold AF-A0A7R7VIB2-F1-model_v4_TED01"]],"b":[["polyketides/flavoglaucin.yaml","flavoglaucin"],["polyketides/sterigmatocystin.yaml","sterigmatocystin"]]},{"id":"NCBITaxon:1883078","l":"Dentipellis sp. KUC8613","na":2,"nb":1,"a":[["TED%3AAF-A0A5B1QTZ2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A5B1QTZ2-F1-model_v4_TED03"],["TED%3AAF-A0A5B1QFU0-F1-model_v4_TED02","TED novel fold AF-A0A5B1QFU0-F1-model_v4_TED02"]],"b":[["terpenoids/cyatha-3-12-diene.yaml","(-)-Cyatha-3,12-diene"]]},{"id":"NCBITaxon:1896","l":"Streptomyces bikiniensis","na":1,"nb":2,"a":[["Pfam%3APF00908","dTDP-4-dehydrorhamnose 3,5-epimerase"]],"b":[["carbohydrates/streptomycin.yaml","streptomycin"],["polyketides/chalcomycin-a.yaml","chalcomycin A"]]},{"id":"NCBITaxon:1921","l":"Streptomyces olivaceoviridis","na":1,"nb":2,"a":[["Pfam%3APF01356","Alpha amylase inhibitor"]],"b":[["polyketides/resistoflavine.yaml","resistoflavine"],["polyketides/resistomycin.yaml","resistomycin"]]},{"id":"NCBITaxon:1933","l":"","na":2,"nb":1,"a":[["Pfam%3APF16861","Carbamoyltransferase C-terminus"],["Pfam%3APF02543","Carbamoyltransferase N-terminus"]],"b":[["carbohydrates/tobramycin.yaml","tobramycin"]]},{"id":"NCBITaxon:205918","l":"Pseudomonas syringae pv. syringae B728a","na":1,"nb":2,"a":[["Pfam%3APF15457","Type III T3SS secreted effector HopW1-1/HopPmaA"]],"b":[["alkaloids/secimide.yaml","secimide"],["unclassified/syringomycin.yaml","syringomycin"]]},{"id":"NCBITaxon:216595","l":"","na":2,"nb":1,"a":[["Pfam%3APF04996","Succinylarginine dihydrolase"],["TED%3AAF-A0A0G4E5V4-F1-model_v4_TED01","TED novel fold AF-A0A0G4E5V4-F1-model_v4_TED01"]],"b":[["unclassified/viscosin.yaml","viscosin"]]},{"id":"NCBITaxon:229535","l":"Penicillium nordicum","na":2,"nb":1,"a":[["TED%3AAF-A0A0M8NW73-F1-model_v4_TED02","TED novel fold AF-A0A0M8NW73-F1-model_v4_TED02"],["TED%3AAF-A0A0N0RXF0-F1-model_v4_TED02","TED novel fold AF-A0A0N0RXF0-F1-model_v4_TED02"]],"b":[["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"]]},{"id":"NCBITaxon:230091","l":"Micromonospora endolithica","na":1,"nb":2,"a":[["TED%3AAF-A0A3A9ZCA3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3A9ZCA3-F1-model_v4_TED02"]],"b":[["polyketides/loseolamycin-a1.yaml","loseolamycin A1"],["polyketides/loseolamycin-a2.yaml","loseolamycin A2"]]},{"id":"NCBITaxon:234621","l":"Rhodococcus erythropolis PR4","na":1,"nb":2,"a":[["TED%3AAF-C0ZLI2-F1-model_v4_TED01","TED novel fold AF-C0ZLI2-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/heterobactin-a.yaml","heterobactin A"],["amino_acids_and_peptides/heterobactin-s2.yaml","heterobactin S2"]]},{"id":"NCBITaxon:237631","l":"Ustilago maydis (strain 521 / FGSC 9021)","na":2,"nb":1,"a":[["TED%3AAF-A0A0D1E1G8-F1-model_v4_TED01","TED novel fold AF-A0A0D1E1G8-F1-model_v4_TED01"],["TED%3AAF-A0A0D1E4C0-F1-model_v4_TED02","TED novel fold AF-A0A0D1E4C0-F1-model_v4_TED02"]],"b":[["fatty_acids/ustilagic-acid.yaml","ustilagic acid"]]},{"id":"NCBITaxon:2607326","l":"Streptomonospora sp. PA3","na":2,"nb":1,"a":[["TED%3AAF-A0A6N8GAL7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8GAL7-F1-model_v4_TED01"],["TED%3AAF-A0A6N8GG78-F1-model_v4_TED01","TED novel fold AF-A0A6N8GG78-F1-model_v4_TED01"]],"b":[["polyketides/persiamycin-a.yaml","persiamycin A"]]},{"id":"NCBITaxon:264445","l":"Streptomyces hygroscopicus subsp. limoneus","na":1,"nb":2,"a":[["TED%3AAF-A0A0S2PAJ8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0S2PAJ8-F1-model_v4_TED03"]],"b":[["carbohydrates/validamycin-a-2.yaml","validamycin A"],["carbohydrates/validamycin-a.yaml","validamycin A"]]},{"id":"NCBITaxon:272123","l":"Anabaena cylindrica (strain ATCC 27899 / PCC 7122)","na":2,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_FbnM","FbnM-type Dmaq biosynthesis peroxidase subunit family"],["TED%3AAF-K9ZFU9-F1-model_v4_TED01","TED highly-symmetric fold AF-K9ZFU9-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/anachelin.yaml","anachelin"]]},{"id":"NCBITaxon:272559","l":"","na":2,"nb":1,"a":[["Pfam%3APF16355","Domain of unknown function (DUF4982)"],["Pfam%3APF14229","Domain of unknown function (DUF4332)"]],"b":[["fatty_acids/galactosylceramide.yaml","α-galactosylceramide"]]},{"id":"NCBITaxon:2743","l":"Marinobacter hydrocarbonoclasticus","na":2,"nb":1,"a":[["MCSA%3A749","cytochrome-c peroxidase (di-heme type)"],["TED%3AAF-A0A368Y858-F1-model_v4_TED02","TED novel fold AF-A0A368Y858-F1-model_v4_TED02"]],"b":[["alkaloids/petrobactin.yaml","petrobactin"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":2,"nb":1,"a":[["PROSITE%3APS01322","Phosphotriesterase family signature 1"],["MCSA%3A159","aryldialkylphosphatase"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:316274","l":"Herpetosiphon aurantiacus DSM 785","na":1,"nb":2,"a":[["TED%3AAF-A9AZN6-F1-model_v4_TED02","TED highly-symmetric fold AF-A9AZN6-F1-model_v4_TED02"]],"b":[["alkaloids/auriculamide.yaml","auriculamide"],["terpenoids/o-methylkolavelool.yaml","(+)-O-methylkolavelool"]]},{"id":"NCBITaxon:318","l":"Pseudomonas savastanoi pv. glycinea","na":2,"nb":1,"a":[["Pfam%3APF05394","Avirulence protein"],["TED%3AAF-A0A3M5VJX5-F1-model_v4_TED01","TED novel fold AF-A0A3M5VJX5-F1-model_v4_TED01"]],"b":[["polyketides/coronatine.yaml","coronatine"]]},{"id":"NCBITaxon:318829","l":"Magnaporthe oryzae","na":2,"nb":1,"a":[["TED%3AAF-A0A4P7NAU2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P7NAU2-F1-model_v4_TED01"],["TED%3AAF-A0A4P7MZB7-F1-model_v4_TED02","TED novel fold AF-A0A4P7MZB7-F1-model_v4_TED02"]],"b":[["polyketides/nectriapyrone.yaml","nectriapyrone"]]},{"id":"NCBITaxon:333849","l":"Enterococcus faecium (strain ATCC BAA-472 / TX0016 / DO)","na":2,"nb":1,"a":[["Pfam%3APF08546","Ketopantoate reductase PanE/ApbA C terminal"],["Pfam%3APF02558","Ketopantoate reductase PanE/ApbA"]],"b":[["amino_acids_and_peptides/enterocin-a.yaml","enterocin A"]]},{"id":"NCBITaxon:338584","l":"Polymorphospora rubra","na":2,"nb":1,"a":[["TED%3AAF-A0A810NDK9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A810NDK9-F1-model_v4_TED01"],["TED%3AAF-A0A810N2K6-F1-model_v4_TED01","TED novel fold AF-A0A810N2K6-F1-model_v4_TED01"]],"b":[["terpenoids/trehangelin.yaml","trehangelin"]]},{"id":"NCBITaxon:33899","l":"Streptomyces galilaeus","na":1,"nb":2,"a":[["Pfam%3APF21036","Erythromycin biosynthesis protein CIII-like, N-terminal domain"]],"b":[["polyketides/aclacinomycin.yaml","aclacinomycin"],["polyketides/cinerubin-b.yaml","cinerubin B"]]},{"id":"NCBITaxon:339670","l":"Burkholderia ambifaria AMMD","na":1,"nb":2,"a":[["Pfam%3APF11004","3-deoxy-D-manno-oct-2-ulosonic acid (Kdo) hydroxylase"]],"b":[["alkaloids/cepaciachelin.yaml","cepaciachelin"],["polyketides/enacyloxin-iia.yaml","enacyloxin IIa"]]},{"id":"NCBITaxon:348901","l":"Cercospora zeina","na":2,"nb":1,"a":[["TED%3AAF-A0A2I0RIM7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I0RIM7-F1-model_v4_TED01"],["TED%3AAF-A0A2I0RWG4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I0RWG4-F1-model_v4_TED01"]],"b":[["polyketides/cercosporin-2.yaml","cercosporin"]]},{"id":"NCBITaxon:349521","l":"","na":2,"nb":1,"a":[["TED%3AAF-Q2SFS2-F1-model_v4_TED01","TED novel fold AF-Q2SFS2-F1-model_v4_TED01"],["TED%3AAF-Q2SI43-F1-model_v4_TED03","TED novel fold AF-Q2SI43-F1-model_v4_TED03"]],"b":[["alkaloids/prodigiosin-2.yaml","prodigiosin"]]},{"id":"NCBITaxon:349966","l":"Yersinia frederiksenii ATCC 33641","na":2,"nb":1,"a":[["IEDB%3A231133","epitope LAIEATLAF"],["IEDB%3A124501","epitope MENMLDLLM"]],"b":[["unclassified/frederiksenibactin.yaml","frederiksenibactin"]]},{"id":"NCBITaxon:362","l":"Agrobacterium radiobacter","na":2,"nb":1,"a":[["Pfam%3APF04909","Amidohydrolase"],["MCSA%3A671","N-carbamoyl-D-amino-acid hydrolase"]],"b":[["alkaloids/agrobactin.yaml","agrobactin"]]},{"id":"NCBITaxon:36746","l":"Pseudomonas cichorii","na":1,"nb":2,"a":[["TED%3AAF-A0A3M4VH83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M4VH83-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/cichofactin-a.yaml","cichofactin A"],["amino_acids_and_peptides/cichofactin-b.yaml","cichofactin B"]]},{"id":"NCBITaxon:377629","l":"Teredinibacter turnerae T7901","na":1,"nb":2,"a":[["TED%3AAF-C5BKS7-F1-model_v4_TED02","TED novel fold AF-C5BKS7-F1-model_v4_TED02"]],"b":[["polyketides/tartrolon-d.yaml","tartrolon D"],["polyketides/tartrolon-e.yaml","tartrolon E"]]},{"id":"NCBITaxon:38300","l":"Streptomyces pristinaespiralis","na":1,"nb":2,"a":[["Pfam%3APF12323","Helix-turn-helix domain"]],"b":[["amino_acids_and_peptides/pristinin-a3.yaml","pristinin A3"],["terpenoids/2s-3r-9r-pristinol.yaml","(+)-(2S,3R,9R)-pristinol"]]},{"id":"NCBITaxon:38313","l":"Shewanella algae","na":2,"nb":1,"a":[["TED%3AAF-A0A1S2T8W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S2T8W3-F1-model_v4_TED01"],["TED%3AAF-A0A8A5EFG1-F1-model_v4_TED02","TED novel fold AF-A0A8A5EFG1-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/avaroferrin.yaml","avaroferrin"]]},{"id":"NCBITaxon:413071","l":"Trichoderma virens Gv29-8","na":1,"nb":2,"a":[["Pfam%3APF07249","Cerato-platanin"]],"b":[["polyketides/trichoxide.yaml","trichoxide"],["unclassified/gliovirin.yaml","gliovirin"]]},{"id":"NCBITaxon:42881","l":"Streptomyces chromofuscus","na":1,"nb":2,"a":[["TED%3AAF-A0A7M2T2Z7-F1-model_v4_TED01","TED novel fold AF-A0A7M2T2Z7-F1-model_v4_TED01"]],"b":[["alkaloids/indigoidine.yaml","indigoidine"],["polyketides/herboxidiene.yaml","herboxidiene"]]},{"id":"NCBITaxon:436515","l":"Variovorax boronicumulans","na":1,"nb":2,"a":[["TED%3AAF-A0A250DMB0-F1-model_v4_TED01","TED novel fold AF-A0A250DMB0-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/variochelin-a.yaml","variochelin A"],["amino_acids_and_peptides/variochelin-b.yaml","variochelin B"]]},{"id":"NCBITaxon:441959","l":"Talaromyces stipitatus ATCC 10500","na":1,"nb":2,"a":[["Pfam%3APF26719","ATPase synthesis protein 25, C-terminal TPR repeats"]],"b":[["polyketides/duclauxin.yaml","duclauxin"],["shikimates_and_phenylpropanoids/stipitatic-acid.yaml","stipitatic acid"]]},{"id":"NCBITaxon:446","l":"Legionella pneumophila","na":2,"nb":1,"a":[["Pfam%3APF14860","DrrA phosphatidylinositol 4-phosphate binding domain"],["TED%3AAF-A0A822WCM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A822WCM6-F1-model_v4_TED01"]],"b":[["fatty_acids/lipopolysaccharide.yaml","lipopolysaccharide"]]},{"id":"NCBITaxon:45151","l":"Pyrenophora tritici-repentis","na":2,"nb":1,"a":[["TED%3AAF-A0A2W1ECP7-F1-model_v4_TED01","TED novel fold AF-A0A2W1ECP7-F1-model_v4_TED01"],["TED%3AAF-A0A834SF78-F1-model_v4_TED01","TED novel fold AF-A0A834SF78-F1-model_v4_TED01"]],"b":[["unclassified/triticone-b.yaml","triticone B"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":2,"nb":1,"a":[["PROSITE%3APS00820","Glucoamylase active site region signature"],["TED%3AAF-A0A7I9G6Y3-F1-model_v4_TED02","TED novel fold AF-A0A7I9G6Y3-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:578457","l":"Serpula lacrymans var. lacrymans (strain S7.9)","na":2,"nb":1,"a":[["TED%3AAF-F8NT94-F1-model_v4_TED01","TED highly-symmetric fold AF-F8NT94-F1-model_v4_TED01"],["TED%3AAF-F8NMD8-F1-model_v4_TED01","TED novel fold AF-F8NMD8-F1-model_v4_TED01"]],"b":[["terpenoids/ent-kauren-16alpha-ol.yaml","ent-kauren-16alpha-ol"]]},{"id":"NCBITaxon:58291","l":"Rhizopus microsporus","na":2,"nb":1,"a":[["TED%3AAF-A0A1X0RNA5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1X0RNA5-F1-model_v4_TED03"],["TED%3AAF-A0A1X0S5N4-F1-model_v4_TED01","TED novel fold AF-A0A1X0S5N4-F1-model_v4_TED01"]],"b":[["unclassified/rhizoxin-a.yaml","rhizoxin A"]]},{"id":"NCBITaxon:587753","l":"Pseudomonas chlororaphis","na":2,"nb":1,"a":[["TED%3AAF-A0A8A9Z2C4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A8A9Z2C4-F1-model_v4_TED03"],["TED%3AAF-A0A0A6DEM6-F1-model_v4_TED01","TED novel fold AF-A0A0A6DEM6-F1-model_v4_TED01"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"NCBITaxon:60894","l":"Saccharopolyspora spinosa","na":1,"nb":2,"a":[["Pfam%3APF03559","NDP-hexose 2,3-dehydratase"]],"b":[["polyketides/a83543a.yaml","A83543A"],["polyketides/spinosyn-d.yaml","spinosyn D"]]},{"id":"NCBITaxon:62101","l":"Candidatus Endobugula sertula","na":1,"nb":2,"a":[["TED%3AAF-A0A1D2QPY2-F1-model_v4_TED01","TED novel fold AF-A0A1D2QPY2-F1-model_v4_TED01"]],"b":[["polyketides/bryostatin-2.yaml","bryostatin"],["polyketides/bryostatin.yaml","bryostatin"]]},{"id":"NCBITaxon:634771","l":"Chitinophaga eiseniae","na":1,"nb":2,"a":[["TED%3AAF-A0A847SE20-F1-model_v4_TED01","TED novel fold AF-A0A847SE20-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/pentacitidin-a.yaml","pentacitidin A"],["amino_acids_and_peptides/pentacitidin-b.yaml","pentacitidin B"]]},{"id":"NCBITaxon:643403","l":"Streptomyces sp. MK730-62F2","na":1,"nb":2,"a":[["Pfam%3APF14269","Arylsulfotransferase (ASST)"]],"b":[["carbohydrates/caprazamycin-aglycon.yaml","caprazamycin aglycon"],["carbohydrates/caprazamycin.yaml","caprazamycin"]]},{"id":"NCBITaxon:65","l":"Herpetosiphon aurantiacus","na":1,"nb":2,"a":[["Pfam%3APF09520","Type II restriction endonuclease, HinfI"]],"b":[["alkaloids/auriculamide.yaml","auriculamide"],["terpenoids/o-methylkolavelool.yaml","(+)-O-methylkolavelool"]]},{"id":"NCBITaxon:6573","l":"Mizuhopecten yessoensis","na":2,"nb":1,"a":[["TED%3AAF-A0A210PVN9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A210PVN9-F1-model_v4_TED02"],["TED%3AAF-A0A210PMU5-F1-model_v4_TED01","TED novel fold AF-A0A210PMU5-F1-model_v4_TED01"]],"b":[["alkaloids/gonyautoxin-2.yaml","gonyautoxin 2"]]},{"id":"NCBITaxon:66431","l":"Streptomyces thioluteus","na":1,"nb":2,"a":[["Pfam%3APF11583","P-aminobenzoate N-oxygenase AurF"]],"b":[["alkaloids/sf2768.yaml","SF2768"],["polyketides/aureothin.yaml","aureothin"]]},{"id":"NCBITaxon:6848","l":"Carcinoscorpius rotundicauda","na":1,"nb":2,"a":[["Pfam%3APF02035","Coagulin"]],"b":[["alkaloids/neosaxitoxin.yaml","neosaxitoxin"],["alkaloids/saxitoxin.yaml","saxitoxin"]]},{"id":"NCBITaxon:713604","l":"Amycolatopsis mediterranei (strain S699)","na":2,"nb":1,"a":[["MCSA%3A419","3-amino-5-hydroxybenzoate synthase"],["TED%3AAF-G0FSL6-F1-model_v4_TED01","TED novel fold AF-G0FSL6-F1-model_v4_TED01"]],"b":[["polyketides/rifamycin-sv.yaml","rifamycin SV"]]},{"id":"NCBITaxon:7787","l":"Tetronarce californica","na":2,"nb":1,"a":[["PROSITE%3APS00405","43 Kd postsynaptic protein signature"],["Pfam%3APF10579","Rapsyn N-terminal myristoylation and linker region"]],"b":[["alkaloids/huperzine-a.yaml","huperzine A"]]},{"id":"NCBITaxon:78410","l":"Neonectria ditissima","na":1,"nb":2,"a":[["TED%3AAF-A0A0P7AKS8-F1-model_v4_TED02","TED novel fold AF-A0A0P7AKS8-F1-model_v4_TED02"]],"b":[["unclassified/colletochlorin-b.yaml","Colletochlorin B"],["unclassified/colletorin-b.yaml","Colletorin B"]]},{"id":"NCBITaxon:79329","l":"Chitinophaga pinensis","na":2,"nb":1,"a":[["TED%3AAF-A0A5C6LK20-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C6LK20-F1-model_v4_TED01"],["TED%3AAF-A0A5C6LKB6-F1-model_v4_TED01","TED novel fold AF-A0A5C6LKB6-F1-model_v4_TED01"]],"b":[["polyketides/flexirubin.yaml","flexirubin"]]},{"id":"NCBITaxon:945553","l":"Hypholoma sublateritium (strain FD-334 SS-4)","na":2,"nb":1,"a":[["TED%3AAF-A0A0D2NQE0-F1-model_v4_TED01","TED novel fold AF-A0A0D2NQE0-F1-model_v4_TED01"],["TED%3AAF-A0A0D2PBZ7-F1-model_v4_TED01","TED novel fold AF-A0A0D2PBZ7-F1-model_v4_TED01"]],"b":[["terpenoids/naematolin.yaml","naematolin"]]},{"id":"NCBITaxon:985895","l":"Leptosphaeria maculans (strain JN3 / isolate v23.1.3 / race Av1-4-5-6-7-8)","na":2,"nb":1,"a":[["TED%3AAF-E5A7U7-F1-model_v4_TED01","TED novel fold AF-E5A7U7-F1-model_v4_TED01"],["TED%3AAF-E5A9E1-F1-model_v4_TED03","TED novel fold AF-E5A9E1-F1-model_v4_TED03"]],"b":[["terpenoids/2-cis-abscisic-acid.yaml","2-cis-abscisic acid"]]},{"id":"RHEA:32631","l":"","na":2,"nb":1,"a":[["EC%3A1.14.13.154","erythromycin 12 hydroxylase"],["RHEA%3A32631","erythromycin D + NADPH + O2 + H(+) = erythromycin C + NADP(+) + H2O"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"RHEA:40299","l":"","na":2,"nb":1,"a":[["EC%3A1.14.15.35","6-deoxyerythronolide B hydroxylase"],["RHEA%3A40299","6-deoxyerythronolide B + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = erythronolide B + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"UniProt:O00763.","l":"","na":2,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RCP","RCP-binding site"],["proteintraitsmech%3ABIOLIP_S1A","S1A-binding site"]],"b":[["polyketides/soraphen-a.yaml","soraphen A"]]},{"id":"UniProt:P00516","l":"","na":2,"nb":1,"a":[["EC%3A2.7.11.12","cGMP-dependent protein kinase"],["Pfam%3APF16808","Coiled-coil N-terminus of cGMP-dependent protein kinase"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P00517","l":"","na":1,"nb":2,"a":[["MCSA%3A757","cAMP-dependent protein kinase"]],"b":[["alkaloids/methylarcyriarubin.yaml","methylarcyriarubin"],["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P04058.","l":"","na":2,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_03S","03S-binding site"],["proteintraitsmech%3ABIOLIP_AA7","AA7-binding site"]],"b":[["alkaloids/physostigmine.yaml","physostigmine"]]},{"id":"UniProt:P0AD64","l":"","na":2,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MA4","MA4-binding site"],["proteintraitsmech%3ABIOLIP_TSL","TSL-binding site"]],"b":[["amino_acids_and_peptides/clavulanic-acid-2.yaml","clavulanic acid"]]},{"id":"CHEBI:133919","l":"decarbamoylsaxitoxin","na":1,"nb":1,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"]]},{"id":"CHEBI:138511","l":"piericidin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HQH","HQH-binding site"]],"b":[["polyketides/piericidin-a.yaml","piericidin A"]]},{"id":"CHEBI:142639","l":"nectriapyrone","na":1,"nb":1,"a":[["RHEA%3A58748","desmethylnectriapyrone + S-adenosyl-L-methionine = nectriapyrone + S-adenosyl-L-homocysteine + H(+)"]],"b":[["polyketides/nectriapyrone.yaml","nectriapyrone"]]},{"id":"CHEBI:145105","l":"asperphenamate","na":1,"nb":1,"a":[["RHEA%3A61908","N-benzoyl-L-phenylalaninol + benzoate + L-phenylalanine + 2 ATP = asperphenamate + 2 AMP + 2 diphosphate + H(+)"]],"b":[["unclassified/asperphenamate.yaml","asperphenamate"]]},{"id":"CHEBI:146007","l":"(M)-viriditoxin","na":1,"nb":1,"a":[["RHEA%3A62884","4 semiviriditoxin + O2 = 2 (M)-viriditoxin + 2 H2O"]],"b":[["polyketides/viriditoxin.yaml","viriditoxin"]]},{"id":"CHEBI:15353","l":"blasticidin S","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BLS","BLS-binding site"]],"b":[["carbohydrates/blasticidin-s.yaml","blasticidin S"]]},{"id":"CHEBI:15732","l":"phosphonoacetic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PAE","PAE-binding site"]],"b":[["unclassified/phosphonoacetic-acid.yaml","phosphonoacetic acid"]]},{"id":"CHEBI:15738","l":"staurosporine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_STU","STU-binding site"]],"b":[["alkaloids/staurosporine.yaml","staurosporine"]]},{"id":"CHEBI:157682","l":"vanchrobactin","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_157682","requires vanchrobactin"]],"b":[["amino_acids_and_peptides/vanchrobactin.yaml","vanchrobactin"]]},{"id":"CHEBI:16349","l":"L-citrulline","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CIR","CIR-binding site"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"CHEBI:167379","l":"trichobrasilenol","na":1,"nb":1,"a":[["RHEA%3A66644","(2E,6E)-farnesyl diphosphate + H2O = trichobrasilenol + diphosphate"]],"b":[["terpenoids/trichobrasilenol.yaml","trichobrasilenol"]]},{"id":"CHEBI:167886","l":"aetokthonotoxin","na":1,"nb":1,"a":[["RHEA%3A82519","5,7-dibromo-indole-3-carbonitrile + 2,3,5-tribromoindole + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = aetokthonotoxin + 2 oxidized [2Fe-2S]-[ferredoxin] + 2 H2O"]],"b":[["alkaloids/aetokthonotoxin.yaml","aetokthonotoxin"]]},{"id":"CHEBI:168396","l":"mycophenolic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MOA","MOA-binding site"]],"b":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"]]},{"id":"CHEBI:171659","l":"quinolobactin","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_171659","requires quinolobactin"]],"b":[["alkaloids/quinolobactin.yaml","quinolobactin"]]},{"id":"CHEBI:18157","l":"aerobactin","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18157","requires aerobactin"]],"b":[["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]]},{"id":"CHEBI:219836","l":"anditomin","na":1,"nb":1,"a":[["RHEA%3A82659","andilesin C + 2-oxoglutarate + O2 = anditomin + succinate + CO2 + H2O"]],"b":[["unclassified/anditomin.yaml","anditomin"]]},{"id":"CHEBI:22152","l":"2-cis-abscisic acid","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["terpenoids/2-cis-abscisic-acid.yaml","2-cis-abscisic acid"]]},{"id":"CHEBI:26789","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_OI9","OI9-binding site"]],"b":[["carbohydrates/streptothricin-f.yaml","streptothricin F"]]},{"id":"CHEBI:27592","l":"ectoine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_4CS","4CS-binding site"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"CHEBI:27834","l":"pentostatin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DCF","DCF-binding site"]],"b":[["alkaloids/pentostatin.yaml","pentostatin"]]},{"id":"CHEBI:28364","l":"all-cis-5,8,11,14,17-icosapentaenoic acid","na":1,"nb":1,"a":[["TCDB%3A4.C.1","The Fatty Acid Group Translocation (FAT) Family"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"CHEBI:28748","l":"doxorubicin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DM2","DM2-binding site"]],"b":[["polyketides/doxorubicin.yaml","doxorubicin"]]},{"id":"CHEBI:28864","l":"tobramycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TOY","TOY-binding site"]],"b":[["carbohydrates/tobramycin.yaml","tobramycin"]]},{"id":"CHEBI:29703","l":"validamycin A","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["carbohydrates/validamycin-a.yaml","validamycin A"]]},{"id":"CHEBI:30838","l":"itaconic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ITN","ITN-binding site"]],"b":[["fatty_acids/itaconic-acid.yaml","itaconic acid"]]},{"id":"CHEBI:31856","l":"mithramycin","na":1,"nb":1,"a":[["RHEA%3A85455","iso-mithramycin = mithramycin"]],"b":[["polyketides/mithramycin.yaml","mithramycin"]]},{"id":"CHEBI:32079","l":"pyrrolnitrin","na":1,"nb":1,"a":[["RHEA%3A46136","aminopyrrolnitrin + NADPH + 2 O2 + H(+) = pyrrolnitrin + NADP(+) + 2 H2O"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"CHEBI:34970","l":"saxitoxin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9SL","9SL-binding site"]],"b":[["alkaloids/saxitoxin.yaml","saxitoxin"]]},{"id":"CHEBI:38240","l":"solanapyrone D","na":1,"nb":1,"a":[["RHEA%3A75143","prosolanapyrone III = solanapyrone D"]],"b":[["polyketides/solanapyrone-d.yaml","solanapyrone D"]]},{"id":"CHEBI:40009","l":"D-cycloserine","na":1,"nb":1,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"]],"b":[["amino_acids_and_peptides/cycloserine.yaml","cycloserine"]]},{"id":"CHEBI:41977","l":"daunorubicin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DM1","DM1-binding site"]],"b":[["polyketides/daunorubicin.yaml","daunorubicin"]]},{"id":"CHEBI:42223","l":"emodin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_EMO","EMO-binding site"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"CHEBI:42355","l":"erythromycin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ERY","ERY-binding site"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"CHEBI:42639","l":"γ-butyrolactone","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_GBL","GBL-binding site"]],"b":[["fatty_acids/butyrolactone.yaml","γ-butyrolactone"]]},{"id":"CHEBI:43616","l":"K-252a","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_KSA","KSA-binding site"]],"b":[["alkaloids/k-252a.yaml","K-252a"]]},{"id":"CHEBI:45257","l":"ribostamycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RIO","RIO-binding site"]],"b":[["carbohydrates/ribostamycin.yaml","ribostamycin"]]},{"id":"CHEBI:473992","l":"nystatin A1","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_A1AZ7","A1AZ7-binding site"]],"b":[["polyketides/nystatin-a1.yaml","nystatin A1"]]},{"id":"CHEBI:48267","l":"tubercidin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TBN","TBN-binding site"]],"b":[["carbohydrates/tubercidin.yaml","tubercidin"]]},{"id":"CHEBI:48947","l":"clavulanic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_J01","J01-binding site"]],"b":[["amino_acids_and_peptides/clavulanic-acid.yaml","clavulanic acid"]]},{"id":"CHEBI:50437","l":"nocardamine","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_50437","requires desferrioxamine E"]],"b":[["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"]]},{"id":"CHEBI:623918","l":"nikkomycin Z","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BGI","BGI-binding site"]],"b":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"]]},{"id":"CHEBI:64318","l":"ergotamine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ERM","ERM-binding site"]],"b":[["alkaloids/ergotamine.yaml","ergotamine"]]},{"id":"CHEBI:64695","l":"pyripyropene A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_7T8","7T8-binding site"]],"b":[["unclassified/pyripyropene-a.yaml","pyripyropene A"]]},{"id":"CHEBI:67811","l":"zorbamycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_52G","52G-binding site"]],"b":[["amino_acids_and_peptides/zorbamycin.yaml","zorbamycin"]]},{"id":"CHEBI:68241","l":"platencin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_N32","N32-binding site"]],"b":[["terpenoids/platencin.yaml","platencin"]]},{"id":"CHEBI:70064","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["polyketides/landomycin-a.yaml","landomycin A"]]},{"id":"CHEBI:7025","l":"mupirocin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MRC","MRC-binding site"]],"b":[["polyketides/mupirocin.yaml","mupirocin"]]},{"id":"CHEBI:70399","l":"meleagrine","na":1,"nb":1,"a":[["RHEA%3A51732","glandicoline B + S-adenosyl-L-methionine = meleagrin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["alkaloids/meleagrine.yaml","meleagrine"]]},{"id":"CHEBI:7061","l":"myxochelin B","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_7061","requires myxochelin B"]],"b":[["alkaloids/myxochelin-b.yaml","myxochelin B"]]},{"id":"CHEBI:74926","l":"patulin","na":1,"nb":1,"a":[["RHEA%3A62228","(E)-ascladiol + A = patulin + AH2"]],"b":[["polyketides/patulin.yaml","patulin"]]},{"id":"CHEBI:7508","l":"framycetin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NMY","NMY-binding site"]],"b":[["carbohydrates/framycetin.yaml","framycetin"]]},{"id":"CHEBI:77742","l":"bongkrekic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BKC","BKC-binding site"]],"b":[["fatty_acids/bongkrekic-acid.yaml","bongkrekic acid"]]},{"id":"CHEBI:79391","l":"(−)-chuangxinmycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9E0","9E0-binding site"]],"b":[["alkaloids/chuangxinmycin.yaml","(−)-chuangxinmycin"]]},{"id":"CHEBI:84168","l":"4-hydroxy-6-pentadecylpyran-2-one","na":1,"nb":1,"a":[["RHEA%3A44260","hexadecanoyl-CoA + 2 malonyl-CoA + 2 H(+) = 4-hydroxy-6-pentadecylpyran-2-one + 2 CO2 + 3 CoA"]],"b":[["polyketides/4-hydroxy-6-pentadecylpyran-2-one.yaml","4-hydroxy-6-pentadecylpyran-2-one"]]},{"id":"CHEBI:84171","l":"4-hydroxy-6-(2-oxoheptadecyl)pyran-2-one","na":1,"nb":1,"a":[["RHEA%3A44268","hexadecanoyl-CoA + 3 malonyl-CoA + 3 H(+) = 4-hydroxy-6-(2-oxoheptadecyl)pyran-2-one + 3 CO2 + 4 CoA"]],"b":[["polyketides/4-hydroxy-6-2-oxoheptadecyl-pyran-2-one.yaml","4-hydroxy-6-(2-oxoheptadecyl)pyran-2-one"]]},{"id":"CHEBI:84582","l":"schizokinen","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_84582","requires schizokinen"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"]]},{"id":"CHEBI:84585","l":"vibrioferrin","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_84585","requires vibrioferrin"]],"b":[["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"CHEBI:85997","l":"sangivamycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SGV","SGV-binding site"]],"b":[["carbohydrates/sangivamycin.yaml","sangivamycin"]]},{"id":"CHEBI:9168","l":"sirolimus","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RAP","RAP-binding site"]],"b":[["polyketides/sirolimus.yaml","sirolimus"]]},{"id":"CHEBI:9200","l":"soraphen A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_S1A","S1A-binding site"]],"b":[["polyketides/soraphen-a.yaml","soraphen A"]]},{"id":"CHEBI:92181","l":"lasalocid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_LSD","LSD-binding site"]],"b":[["polyketides/lasalocid.yaml","lasalocid"]]},{"id":"CHEBI:9367","l":"swainsonine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SWA","SWA-binding site"]],"b":[["alkaloids/swainsonine.yaml","swainsonine"]]},{"id":"CHEBI:9519","l":"thebaine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_D4R","D4R-binding site"]],"b":[["alkaloids/thebaine.yaml","thebaine"]]},{"id":"CHEBI:9973","l":"vibriobactin","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_9973","requires vibriobactin"]],"b":[["alkaloids/vibriobactin.yaml","vibriobactin"]]},{"id":"DOI:10.1016/0003-9861(85)90171-7","l":"","na":1,"nb":1,"a":[["RHEA%3A14901","(2E,6E,10E)-geranylgeranyl diphosphate = casbene + diphosphate"]],"b":[["terpenoids/casbene.yaml","casbene"]]},{"id":"DOI:10.1016/0378-1119(88)90031-5","l":"","na":1,"nb":1,"a":[["ARO%3A3002650","APH(3')-Vb"]],"b":[["carbohydrates/ribostamycin.yaml","ribostamycin"]]},{"id":"DOI:10.1016/S0378-1097(04)00074-6","l":"","na":1,"nb":1,"a":[["NCBIfam%3ANF040300","DUF6012 family protein"]],"b":[["alkaloids/pyoluteorin.yaml","pyoluteorin"]]},{"id":"DOI:10.1016/j.bioorg.2014.03.008","l":"","na":1,"nb":1,"a":[["InterPro%3AIPR035911","MurE/MurF, N-terminal"]],"b":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"]]},{"id":"DOI:10.1016/j.chembiol.2006.09.007","l":"","na":1,"nb":1,"a":[["NCBIfam%3ANF039326","DUF6025 family protein"]],"b":[["unclassified/fosfomycin.yaml","fosfomycin"]]},{"id":"DOI:10.1021/acschembio.6b01154","l":"","na":1,"nb":1,"a":[["NCBIfam%3ANF033471","acinetodin/klebsidin/J25 family lasso peptide"]],"b":[["amino_acids_and_peptides/klebsidin.yaml","klebsidin"]]},{"id":"DOI:10.1021/bi00006a006","l":"","na":1,"nb":1,"a":[["RHEA%3A32631","erythromycin D + NADPH + O2 + H(+) = erythromycin C + NADP(+) + H2O"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"DOI:10.1038/s41467-018-04364-9","l":"","na":1,"nb":1,"a":[["NCBIfam%3ANF056629","Alpha-humulene synthase"]],"b":[["unclassified/xenovulene-a.yaml","xenovulene A"]]},{"id":"DOI:10.1073/pnas.0610503104","l":"","na":1,"nb":1,"a":[["InterPro%3AIPR014179","PfaD-like, TIM-barrel domain"]],"b":[["polyketides/bacillaene.yaml","bacillaene"]]},{"id":"DOI:10.1080/09168451.2018.1549934","l":"","na":1,"nb":1,"a":[["InterPro%3AIPR060750","Tri6-like, C2H2 zinc finger domain"]],"b":[["terpenoids/heptelidic-acid.yaml","heptelidic acid"]]},{"id":"DOI:10.1080/09168451.2020.1725419","l":"","na":1,"nb":1,"a":[["InterPro%3AIPR044086","Aldehyde dehydrogenase LUC3-like"]],"b":[["alkaloids/lucilactaene.yaml","lucilactaene"]]},{"id":"DOI:10.1086/519262","l":"","na":1,"nb":1,"a":[["NCBIfam%3ANF040392","DUF6369 family protein"]],"b":[["carbohydrates/capsular-polysaccharide-2.yaml","capsular polysaccharide"]]},{"id":"DOI:10.1099/00221287-147-8-2127","l":"","na":1,"nb":1,"a":[["NCBIfam%3ATIGR04020","MupA/Atu3671 family FMN-dependent luciferase-like monooxygenase"]],"b":[["polyketides/mupirocin.yaml","mupirocin"]]},{"id":"DOI:10.1111/1462-2920.13007","l":"","na":1,"nb":1,"a":[["InterPro%3AIPR061948","Trypacidin cluster transcriptional coactivator tpcD-like, N-terminal domain"]],"b":[["polyketides/trypacidin.yaml","trypacidin"]]},{"id":"DOI:10.1126/science.1072105","l":"","na":1,"nb":1,"a":[["NCBIfam%3ANF039317","DUF6004 family protein"]],"b":[["polyketides/calicheamicin.yaml","calicheamicin"]]},{"id":"DOI:10.1126/science.aax9050","l":"","na":1,"nb":1,"a":[["RHEA%3A82463","bromide + L-tryptophan + NADPH + O2 + 2 H(+) = 5-bromo-L-tryptophan + NADP(+) + 2 H2O"]],"b":[["alkaloids/aetokthonotoxin.yaml","aetokthonotoxin"]]},{"id":"DOI:10.1128/AAC.06478-11","l":"","na":1,"nb":1,"a":[["NCBIfam%3ANF040398","DUF6388 family protein"]],"b":[["unclassified/fosfomycin.yaml","fosfomycin"]]},{"id":"DOI:10.1128/AAC.44.2.382-392.2000","l":"","na":1,"nb":1,"a":[["NCBIfam%3ANF039626","DUF6009 family protein"]],"b":[["polyketides/c-1027-2.yaml","C-1027"]]},{"id":"DOI:10.1128/AAC.48.1.192-202.2004","l":"","na":1,"nb":1,"a":[["RHEA%3A42428","clavaminate = (3R,5R)-clavulanate-9-aldehyde"]],"b":[["amino_acids_and_peptides/clavulanic-acid-2.yaml","clavulanic acid"]]},{"id":"DOI:10.1128/AAC.8.6.721","l":"","na":1,"nb":1,"a":[["RHEA%3A22280","O-demethylpuromycin + S-adenosyl-L-methionine = puromycin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["carbohydrates/puromycin.yaml","puromycin"]]},{"id":"DOI:10.1128/AEM.00078-17","l":"","na":1,"nb":1,"a":[["RHEA%3A24408","adenosine + H2O + H(+) = inosine + NH4(+)"]],"b":[["carbohydrates/2-chloropentostatin.yaml","2'-chloropentostatin"]]},{"id":"DOI:10.1128/AEM.00257-07","l":"","na":1,"nb":1,"a":[["NCBIfam%3ATIGR03649","ergot alkaloid biosynthesis protein"]],"b":[["alkaloids/ergovaline.yaml","ergovaline"]]},{"id":"DOI:10.1128/AEM.01978-13","l":"","na":1,"nb":1,"a":[["NCBIfam%3ANF033415","thioviridamide family RiPP peptide"]],"b":[["amino_acids_and_peptides/thioviridamide.yaml","thioviridamide"]]},{"id":"DOI:10.1128/AEM.02017-09","l":"","na":1,"nb":1,"a":[["RHEA%3A83907","(2E,6E)-farnesyl diphosphate + H2O = (-)-longiborneol + diphosphate"]],"b":[["terpenoids/culmorin.yaml","culmorin"]]},{"id":"DOI:10.1128/AEM.02321-17","l":"","na":1,"nb":1,"a":[["NCBIfam%3ANF039723","DUF6312 domain-containing protein"]],"b":[["polyketides/swinholide-a.yaml","swinholide A"]]},{"id":"DOI:10.1128/AEM.06701-11","l":"","na":1,"nb":1,"a":[["NCBIfam%3ANF040083","DUF6400 family protein"]],"b":[["polyketides/salinomycin.yaml","salinomycin"]]},{"id":"DOI:10.1128/AEM.07710-11","l":"","na":1,"nb":1,"a":[["NCBIfam%3ANF020177","anthrone oxygenase family protein"]],"b":[["polyketides/endocrocin.yaml","endocrocin"]]},{"id":"DOI:10.1128/AEM.70.2.686-692.2004","l":"","na":1,"nb":1,"a":[["NCBIfam%3ANF039318","DUF6006 family protein"]],"b":[["amino_acids_and_peptides/microcystin-lr.yaml","microcystin-LR"]]},{"id":"DOI:10.1128/AEM.71.1.105-113.2005","l":"","na":1,"nb":1,"a":[["NCBIfam%3ANF039958","DUF6018 family natural product bioysynthesis protein"]],"b":[["unclassified/cereulide.yaml","cereulide"]]},{"id":"DOI:10.1128/JB.00492-10","l":"","na":1,"nb":1,"a":[["InterPro%3AIPR006342","Methyltransferase FkbM"]],"b":[["amino_acids_and_peptides/l-2-amino-4-methoxy-trans-3-butenoic-acid.yaml","L-2-amino-4-methoxy-trans-3-butenoic acid"]]},{"id":"DOI:10.1128/JB.00897-10","l":"","na":1,"nb":1,"a":[["NCBIfam%3ANF037941","nocobactin polyketide synthase NbtC"]],"b":[["amino_acids_and_peptides/nocobactin-na.yaml","nocobactin NA"]]},{"id":"DOI:10.1128/JB.06643-11","l":"","na":1,"nb":1,"a":[["NCBIfam%3ANF039756","DUF6403 family protein"]],"b":[["polyketides/primycin.yaml","primycin"]]},{"id":"DOI:10.1128/JB.181.10.3155-3163.1999","l":"","na":1,"nb":1,"a":[["NCBIfam%3ATIGR00748","hydroxymethylglutaryl-CoA synthase"]],"b":[["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"]]},{"id":"DOI:10.1128/JB.184.24.7013-7024.2002","l":"","na":1,"nb":1,"a":[["NCBIfam%3ANF039633","DUF6039 family protein"]],"b":[["amino_acids_and_peptides/leinamycin.yaml","leinamycin"]]},{"id":"DOI:10.1128/jb.178.12.3661-3663.1996","l":"","na":1,"nb":1,"a":[["NCBIfam%3ANF033471","acinetodin/klebsidin/J25 family lasso peptide"]],"b":[["amino_acids_and_peptides/microcin-j25.yaml","microcin J25"]]},{"id":"DOI:10.1371/journal.pone.0172850","l":"","na":1,"nb":1,"a":[["NCBIfam%3ANF055241","Acyl halogenase CylC-like"]],"b":[["alkaloids/nocuolin-a.yaml","Nocuolin A"]]},{"id":"DOI:10.3389/fmicb.2018.02550","l":"","na":1,"nb":1,"a":[["NCBIfam%3ANF039687","DUF6207 family protein"]],"b":[["polyketides/nystatin.yaml","nystatin"]]},{"id":"NCBITaxon:103733","l":"Saccharothrix syringae","na":1,"nb":1,"a":[["TED%3AAF-A0A5Q0GZB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Q0GZB9-F1-model_v4_TED01"]],"b":[["polyketides/nocamycin.yaml","nocamycin"]]},{"id":"NCBITaxon:104268","l":"Tenacibaculum mesophilum","na":1,"nb":1,"a":[["TED%3AAF-A0A1M5HMT5-F1-model_v4_TED01","TED novel fold AF-A0A1M5HMT5-F1-model_v4_TED01"]],"b":[["fatty_acids/bisucaberin-b.yaml","bisucaberin B"]]},{"id":"NCBITaxon:1081091","l":"Amycolatopsis balhimycina DSM 5908","na":1,"nb":1,"a":[["TED%3AAF-A0A428WRS4-F1-model_v4_TED02","TED novel fold AF-A0A428WRS4-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/balhimycin.yaml","balhimycin"]]},{"id":"NCBITaxon:1108595","l":"Chromobacterium vaccinii","na":1,"nb":1,"a":[["TED%3AAF-A0A2L2B8V3-F1-model_v4_TED02","TED novel fold AF-A0A2L2B8V3-F1-model_v4_TED02"]],"b":[["unclassified/fr900359-2.yaml","FR900359"]]},{"id":"NCBITaxon:1124983","l":"","na":1,"nb":1,"a":[["Pfam%3APF18089","DAPG hydrolase PhiG domain"]],"b":[["fatty_acids/protegencin.yaml","protegencin"]]},{"id":"NCBITaxon:1165","l":"Anabaena cylindrica","na":1,"nb":1,"a":[["Pfam%3APF17275","Family of unknown function (DUF5340)"]],"b":[["amino_acids_and_peptides/anachelin.yaml","anachelin"]]},{"id":"NCBITaxon:1214242","l":"","na":1,"nb":1,"a":[["TED%3AAF-S5VBX8-F1-model_v4_TED03","TED novel fold AF-S5VBX8-F1-model_v4_TED03"]],"b":[["unclassified/kirromycin.yaml","kirromycin"]]},{"id":"NCBITaxon:122368","l":"Cercospora beticola","na":1,"nb":1,"a":[["TED%3AAF-A0A2G5HT37-F1-model_v4_TED02","TED novel fold AF-A0A2G5HT37-F1-model_v4_TED02"]],"b":[["polyketides/cercosporin.yaml","cercosporin"]]},{"id":"NCBITaxon:1254432","l":"Sorangium cellulosum So0157-2","na":1,"nb":1,"a":[["TED%3AAF-S4XT05-F1-model_v4_TED01","TED novel fold AF-S4XT05-F1-model_v4_TED01"]],"b":[["unclassified/epothilone-b.yaml","epothilone B"]]},{"id":"NCBITaxon:1283841","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A084QGW0-F1-model_v4_TED01","TED novel fold AF-A0A084QGW0-F1-model_v4_TED01"]],"b":[["alkaloids/isoindolin-1-one.yaml","isoindolin-1-one"]]},{"id":"NCBITaxon:1297742","l":"Myxococcus hansupus","na":1,"nb":1,"a":[["TED%3AAF-A0A0H4X3W5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0H4X3W5-F1-model_v4_TED02"]],"b":[["unclassified/myxochromide-c.yaml","myxochromide C"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":1,"nb":1,"a":[["PROSITE%3APS01043","Transposases, IS30 family, signature"]],"b":[["amino_acids_and_peptides/salivaricin-d.yaml","salivaricin D"]]},{"id":"NCBITaxon:1341132","l":"Aspergillus welwitschiae","na":1,"nb":1,"a":[["TED%3AAF-A0A3F3Q9J6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3F3Q9J6-F1-model_v4_TED02"]],"b":[["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"]]},{"id":"NCBITaxon:1343740","l":"","na":1,"nb":1,"a":[["Pfam%3APF21168","Chorismatase FkbO/Hyg5-like, N-terminal"]],"b":[["polyketides/sirolimus.yaml","sirolimus"]]},{"id":"NCBITaxon:13689","l":"Sphingomonas paucimobilis","na":1,"nb":1,"a":[["PROSITE%3APS00082","Extradiol ring-cleavage dioxygenases signature"]],"b":[["unclassified/minimycin.yaml","minimycin"]]},{"id":"NCBITaxon:1408161","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A6A7APH0-F1-model_v4_TED02","TED novel fold AF-A0A6A7APH0-F1-model_v4_TED02"]],"b":[["shikimates_and_phenylpropanoids/mellein.yaml","(-)-Mellein"]]},{"id":"NCBITaxon:150374","l":"Escovopsis weberi","na":1,"nb":1,"a":[["TED%3AAF-A0A0M8MSE0-F1-model_v4_TED01","TED novel fold AF-A0A0M8MSE0-F1-model_v4_TED01"]],"b":[["unclassified/melinacidin-iv.yaml","melinacidin IV"]]},{"id":"NCBITaxon:1563222","l":"Citrobacter pasteurii","na":1,"nb":1,"a":[["TED%3AAF-A0A6N6K4M5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N6K4M5-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/citrocin.yaml","citrocin"]]},{"id":"NCBITaxon:1593482","l":"Massilia sp. YMA4","na":1,"nb":1,"a":[["TED%3AAF-A0A7U5XZA1-F1-model_v4_TED02","TED novel fold AF-A0A7U5XZA1-F1-model_v4_TED02"]],"b":[["unclassified/empedopeptin.yaml","empedopeptin"]]},{"id":"NCBITaxon:159449","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1T3P567-F1-model_v4_TED01","TED novel fold AF-A0A1T3P567-F1-model_v4_TED01"]],"b":[["unclassified/hitachimycin.yaml","hitachimycin"]]},{"id":"NCBITaxon:173365","l":"Methylobacter tundripaludum","na":1,"nb":1,"a":[["TED%3AAF-A0A2S6HGL6-F1-model_v4_TED02","TED novel fold AF-A0A2S6HGL6-F1-model_v4_TED02"]],"b":[["unclassified/tundrenone.yaml","tundrenone"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":1,"nb":1,"a":[["Pfam%3APF08124","Polysaccharide lyase family 8, N terminal alpha-helical domain"]],"b":[["amino_acids_and_peptides/cutimycin.yaml","cutimycin"]]},{"id":"NCBITaxon:1764","l":"Mycobacterium avium","na":1,"nb":1,"a":[["Pfam%3APF01882","Protein of unknown function DUF58"]],"b":[["fatty_acids/gpl-21.yaml","GPL-21"]]},{"id":"NCBITaxon:180498","l":"Jatropha curcas","na":1,"nb":1,"a":[["TED%3AAF-A0A067KNY2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A067KNY2-F1-model_v4_TED01"]],"b":[["terpenoids/casbene.yaml","casbene"]]},{"id":"NCBITaxon:1828523","l":"","na":1,"nb":1,"a":[["Pfam%3APF26335","Beta-lactamase-like ARB_00930-like, C-terminal domain"]],"b":[["polyketides/squalestatin-s1.yaml","squalestatin S1"]]},{"id":"NCBITaxon:1869241","l":"Nostoc sp. CENA543","na":1,"nb":1,"a":[["TED%3AAF-A0A2I8A446-F1-model_v4_TED01","TED novel fold AF-A0A2I8A446-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/nodularin-2.yaml","nodularin"]]},{"id":"NCBITaxon:1874","l":"Micromonospora chalcea","na":1,"nb":1,"a":[["TED%3AAF-A0A365UW89-F1-model_v4_TED01","TED novel fold AF-A0A365UW89-F1-model_v4_TED01"]],"b":[["polyketides/tetrocarcin-a.yaml","tetrocarcin A"]]},{"id":"NCBITaxon:1887","l":"Streptomyces albogriseolus","na":1,"nb":1,"a":[["PROSITE%3APS00999","Streptomyces subtilisin-type inhibitors signature"]],"b":[["alkaloids/thienodolin.yaml","thienodolin"]]},{"id":"NCBITaxon:1918945","l":"Vibrio spartinae","na":1,"nb":1,"a":[["TED%3AAF-A0A7D8BB99-F1-model_v4_TED01","TED novel fold AF-A0A7D8BB99-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/vancomycin.yaml","vancomycin"]]},{"id":"NCBITaxon:1948","l":"Streptomyces longisporus","na":1,"nb":1,"a":[["PROSITE%3APS00999","Streptomyces subtilisin-type inhibitors signature"]],"b":[["alkaloids/undecylprodigiosin-2.yaml","undecylprodigiosin"]]},{"id":"NCBITaxon:1970","l":"Streptomyces morookaense","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y7E7U7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y7E7U7-F1-model_v4_TED01"]],"b":[["carbohydrates/blasticidin-s.yaml","blasticidin S"]]},{"id":"NCBITaxon:205922","l":"Pseudomonas fluorescens Pf0-1","na":1,"nb":1,"a":[["Pfam%3APF07927","HicA toxin of bacterial toxin-antitoxin,"]],"b":[["unclassified/gacamide-a.yaml","gacamide A"]]},{"id":"NCBITaxon:216895","l":"Vibrio vulnificus CMCP6","na":1,"nb":1,"a":[["Pfam%3APF18416","N-acetylglucosamine binding protein domain 2"]],"b":[["alkaloids/vulnibactin.yaml","vulnibactin"]]},{"id":"NCBITaxon:2203296","l":"","na":1,"nb":1,"a":[["Pfam%3APF18558","Methyltransferase, Helix-turn-helix domain"]],"b":[["unclassified/xenovulene-a.yaml","xenovulene A"]]},{"id":"NCBITaxon:240499","l":"Calcarisporium arbuscula","na":1,"nb":1,"a":[["Pfam%3APF28402","Pneumocandin biosynthesis cluster protein B C-terminal domain"]],"b":[["polyketides/patulin.yaml","patulin"]]},{"id":"NCBITaxon:2480843","l":"","na":1,"nb":1,"a":[["Pfam%3APF22903","Diels-Alderase-like"]],"b":[["unclassified/xenoacremone-a.yaml","xenoacremone A"]]},{"id":"NCBITaxon:249581","l":"Streptomyces ossamyceticus","na":1,"nb":1,"a":[["TED%3AAF-A0A3N1M1Z0-F1-model_v4_TED02","TED novel fold AF-A0A3N1M1Z0-F1-model_v4_TED02"]],"b":[["polyketides/ossamycin.yaml","ossamycin"]]},{"id":"NCBITaxon:2545265","l":"Streptomyces sp. AJS327","na":1,"nb":1,"a":[["TED%3AAF-A0A7V8NJX1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V8NJX1-F1-model_v4_TED01"]],"b":[["alkaloids/tetrachlorizine.yaml","tetrachlorizine"]]},{"id":"NCBITaxon:263","l":"Francisella tularensis","na":1,"nb":1,"a":[["TED%3AAF-A0A6I4RUC7-F1-model_v4_TED02","TED novel fold AF-A0A6I4RUC7-F1-model_v4_TED02"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"NCBITaxon:264691","l":"Anabaena variabilis","na":1,"nb":1,"a":[["Pfam%3APF09194","Restriction endonuclease BsobI"]],"b":[["unclassified/shinorine.yaml","shinorine"]]},{"id":"NCBITaxon:267747","l":"Cutibacterium acnes KPA171202","na":1,"nb":1,"a":[["Pfam%3APF27542","ArfC"]],"b":[["amino_acids_and_peptides/cutimycin.yaml","cutimycin"]]},{"id":"NCBITaxon:269709","l":"Methylomicrobium kenyense","na":1,"nb":1,"a":[["TED%3AAF-A0A543V9Z8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A543V9Z8-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:279113","l":"Collimonas pratensis","na":1,"nb":1,"a":[["TED%3AAF-A0A127Q9K0-F1-model_v4_TED02","TED novel fold AF-A0A127Q9K0-F1-model_v4_TED02"]],"b":[["unclassified/malleobactin-x.yaml","malleobactin X"]]},{"id":"NCBITaxon:285525","l":"Streptomyces sahachiroi","na":1,"nb":1,"a":[["Pfam%3APF06224","DNA glycosylase AlkZ-like"]],"b":[["unclassified/azinomycin-b.yaml","azinomycin B"]]},{"id":"NCBITaxon:28985","l":"Kluyveromyces lactis","na":1,"nb":1,"a":[["Pfam%3APF03930","Recombinase Flp protein N-terminus"]],"b":[["alkaloids/pulcherrimin.yaml","pulcherrimin"]]},{"id":"NCBITaxon:29447","l":"Xanthomonas albilineans","na":1,"nb":1,"a":[["TED%3AAF-A0A6P1SIK7-F1-model_v4_TED02","TED novel fold AF-A0A6P1SIK7-F1-model_v4_TED02"]],"b":[["alkaloids/albicidin.yaml","albicidin"]]},{"id":"NCBITaxon:29456","l":"","na":1,"nb":1,"a":[["Pfam%3APF12559","Serine endopeptidase inhibitors"]],"b":[["unclassified/marinostatin.yaml","marinostatin"]]},{"id":"NCBITaxon:29829","l":"Lipomyces starkeyi","na":1,"nb":1,"a":[["Pfam%3APF03702","Anhydro-N-acetylmuramic acid kinase"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"NCBITaxon:298386","l":"Photobacterium profundum SS9","na":1,"nb":1,"a":[["Pfam%3APF12558","ATP-binding cassette cobalt transporter"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"NCBITaxon:337","l":"Burkholderia glumae","na":1,"nb":1,"a":[["TED%3AAF-A0A8A8MA15-F1-model_v4_TED01","TED novel fold AF-A0A8A8MA15-F1-model_v4_TED01"]],"b":[["alkaloids/toxoflavin.yaml","toxoflavin"]]},{"id":"NCBITaxon:35621","l":"Streptomyces mobaraensis","na":1,"nb":1,"a":[["MCSA%3A761","protein-glutamine gamma-glutamyltransferase (bacterial)"]],"b":[["amino_acids_and_peptides/bleomycin-a2.yaml","bleomycin A2"]]},{"id":"NCBITaxon:359131","l":"","na":1,"nb":1,"a":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"]],"b":[["unclassified/fr-900098.yaml","FR-900098"]]},{"id":"NCBITaxon:37329","l":"Nocardia farcinica","na":1,"nb":1,"a":[["TED%3AAF-A0A449G5H5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A449G5H5-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/nocobactin-na.yaml","nocobactin NA"]]},{"id":"NCBITaxon:37727","l":"Talaromyces marneffei","na":1,"nb":1,"a":[["Pfam%3APF12296","Hydrophobic surface binding protein A"]],"b":[["polyketides/monascorubrin.yaml","monascorubrin"]]},{"id":"NCBITaxon:38945","l":"Flammulina velutipes","na":1,"nb":1,"a":[["Pfam%3APF09259","Fungal immunomodulatory protein Fve"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:391936","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0B4XPB7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0B4XPB7-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/pacifibactin.yaml","pacifibactin"]]},{"id":"NCBITaxon:396598","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_GrbE","GrbE-type graminine biosynthesis protein family"]],"b":[["unclassified/gramibactin.yaml","gramibactin"]]},{"id":"NCBITaxon:4100","l":"Nicotiana benthamiana","na":1,"nb":1,"a":[["Pfam%3APF11833","Protein CHAPERONE-LIKE PROTEIN OF POR1-like"]],"b":[["terpenoids/capsidiol.yaml","capsidiol"]]},{"id":"NCBITaxon:41047","l":"","na":1,"nb":1,"a":[["Pfam%3APF28486","AnkG N-terminal domain"]],"b":[["unclassified/pyripyropene-a.yaml","pyripyropene A"]]},{"id":"NCBITaxon:426","l":"Methylosinus trichosporium","na":1,"nb":1,"a":[["MCSA%3A600","methane monooxygenase (soluble)"]],"b":[["amino_acids_and_peptides/group-1-methanobactin.yaml","group 1 methanobactin"]]},{"id":"NCBITaxon:43657","l":"Pseudoalteromonas luteoviolacea","na":1,"nb":1,"a":[["TED%3AAF-A0A1C0TIS0-F1-model_v4_TED02","TED novel fold AF-A0A1C0TIS0-F1-model_v4_TED02"]],"b":[["shikimates_and_phenylpropanoids/pentabromopseudilin.yaml","pentabromopseudilin"]]},{"id":"NCBITaxon:43759","l":"Streptomyces wedmorensis","na":1,"nb":1,"a":[["Pfam%3APF04167","Protein of unknown function (DUF402)"]],"b":[["unclassified/fosfomycin.yaml","fosfomycin"]]},{"id":"NCBITaxon:452652","l":"Kitasatospora setae KM-6054","na":1,"nb":1,"a":[["IEDB%3A230017","epitope MHGNWHFFRNFLSN"]],"b":[["alkaloids/kitasetaline.yaml","kitasetaline"]]},{"id":"NCBITaxon:463","l":"Fluoribacter dumoffii","na":1,"nb":1,"a":[["TED%3AAF-A0A377G6U6-F1-model_v4_TED01","TED novel fold AF-A0A377G6U6-F1-model_v4_TED01"]],"b":[["shikimates_and_phenylpropanoids/legioliulin.yaml","legioliulin"]]},{"id":"NCBITaxon:4679","l":"Allium cepa","na":1,"nb":1,"a":[["Pfam%3APF04863","Alliinase EGF-like domain"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:4682","l":"Allium sativum","na":1,"nb":1,"a":[["Pfam%3APF04863","Alliinase EGF-like domain"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:469371","l":"Thermobispora bispora DSM 43833","na":1,"nb":1,"a":[["TED%3AAF-D6Y8C2-F1-model_v4_TED02","TED novel fold AF-D6Y8C2-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/thiomuracin.yaml","thiomuracin"]]},{"id":"NCBITaxon:47759","l":"Streptomyces tubercidicus","na":1,"nb":1,"a":[["TED%3AAF-A0A640UN74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A640UN74-F1-model_v4_TED01"]],"b":[["carbohydrates/tubercidin.yaml","tubercidin"]]},{"id":"NCBITaxon:47850","l":"Micromonospora aurantiaca","na":1,"nb":1,"a":[["TED%3AAF-A0A1C6SK92-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C6SK92-F1-model_v4_TED01"]],"b":[["polyketides/dynemicin-a.yaml","dynemicin A"]]},{"id":"NCBITaxon:47886","l":"Pseudomonas luteola","na":1,"nb":1,"a":[["TED%3AAF-A0A2X2CC74-F1-model_v4_TED02","TED novel fold AF-A0A2X2CC74-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/chrysobactin.yaml","chrysobactin"]]},{"id":"NCBITaxon:483219","l":"","na":1,"nb":1,"a":[["TED%3AAF-F8C8K4-F1-model_v4_TED01","TED highly-symmetric fold AF-F8C8K4-F1-model_v4_TED01"]],"b":[["unclassified/myxochromide-a-2.yaml","myxochromide A"]]},{"id":"NCBITaxon:488447","l":"Burkholderia contaminans","na":1,"nb":1,"a":[["TED%3AAF-A0A3N8RI51-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N8RI51-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/occidiofungin-a.yaml","occidiofungin A"]]},{"id":"NCBITaxon:528191","l":"Paenibacillus xylanexedens","na":1,"nb":1,"a":[["TED%3AAF-A0A3N6BL17-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N6BL17-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/macolacin.yaml","macolacin"]]},{"id":"NCBITaxon:5341","l":"Agaricus bisporus","na":1,"nb":1,"a":[["Pfam%3APF07367","Fungal fruit body lectin"]],"b":[["polyketides/kojic-acid.yaml","kojic acid"]]},{"id":"NCBITaxon:573841","l":"Sordaria araneosa","na":1,"nb":1,"a":[["Pfam%3APF26335","Beta-lactamase-like ARB_00930-like, C-terminal domain"]],"b":[["terpenoids/sordarin.yaml","sordarin"]]},{"id":"NCBITaxon:5839","l":"Plasmodium falciparum (isolate K1 / Thailand)","na":1,"nb":1,"a":[["Pfam%3APF12946","MSP1 EGF domain 1"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:66425","l":"Streptomyces luteoverticillatus","na":1,"nb":1,"a":[["TED%3AAF-A0A3S9PBS5-F1-model_v4_TED01","TED novel fold AF-A0A3S9PBS5-F1-model_v4_TED01"]],"b":[["alkaloids/carbazomycin-b.yaml","carbazomycin B"]]},{"id":"NCBITaxon:68197","l":"Streptomyces fimbriatus","na":1,"nb":1,"a":[["PROSITE%3APS00093","N-4 cytosine-specific DNA methylases signature"]],"b":[["alkaloids/spicamycin.yaml","spicamycin"]]},{"id":"NCBITaxon:69771","l":"Penicillium decumbens","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6PJ92-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V6PJ92-F1-model_v4_TED01"]],"b":[["polyketides/decumbenone-a.yaml","decumbenone a"]]},{"id":"NCBITaxon:698760","l":"Streptomyces turgidiscabies Car8","na":1,"nb":1,"a":[["TED%3AAF-L7F7V3-F1-model_v4_TED02","TED highly-symmetric fold AF-L7F7V3-F1-model_v4_TED02"]],"b":[["unclassified/thaxtomin-a.yaml","thaxtomin A"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A5C7XIK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7XIK2-F1-model_v4_TED01"]],"b":[["unclassified/lysocin-e.yaml","lysocin E"]]},{"id":"NCBITaxon:741275","l":"","na":1,"nb":1,"a":[["TED%3AAF-R7S2Z2-F1-model_v4_TED02","TED novel fold AF-R7S2Z2-F1-model_v4_TED02"]],"b":[["terpenoids/ent-kauren-16alpha-ol-2.yaml","Ent-kauren-16alpha-ol"]]},{"id":"NCBITaxon:747457","l":"","na":1,"nb":1,"a":[["Pfam%3APF18014","Acetyltransferase (GNAT) domain"]],"b":[["polyketides/thiomarinol.yaml","thiomarinol"]]},{"id":"NCBITaxon:749593","l":"Epicoccum sorghinum","na":1,"nb":1,"a":[["Pfam%3APF17660","Polyglycine hydrolase-like, structural repeat"]],"b":[["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"]]},{"id":"NCBITaxon:75695","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A654SF36-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A654SF36-F1-model_v4_TED02"]],"b":[["alkaloids/7-epi-cylindrospermopsin.yaml","7-epi-cylindrospermopsin"]]},{"id":"NCBITaxon:85336","l":"Rothia nasimurium","na":1,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_EntC","EntC-type catechol biosynthesis isochorismate synthase family"]],"b":[["unclassified/valinomycin-2.yaml","valinomycin"]]},{"id":"NCBITaxon:866895","l":"","na":1,"nb":1,"a":[["TED%3AAF-I0JI49-F1-model_v4_TED03","TED highly-symmetric fold AF-I0JI49-F1-model_v4_TED03"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:877550","l":"","na":1,"nb":1,"a":[["Pfam%3APF13810","Domain of unknown function (DUF4185)"]],"b":[["unclassified/notoamide-a.yaml","notoamide A"]]},{"id":"NCBITaxon:89489","l":"Monascus ruber","na":1,"nb":1,"a":[["Pfam%3APF17828","N-terminal domain in fatty acid synthase subunit beta"]],"b":[["polyketides/citrinin.yaml","(+)-citrinin"]]},{"id":"NCBITaxon:948311","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A420SS57-F1-model_v4_TED01","TED novel fold AF-A0A420SS57-F1-model_v4_TED01"]],"b":[["polyketides/prolipyrone-b.yaml","prolipyrone B"]]},{"id":"NCBITaxon:96241","l":"","na":1,"nb":1,"a":[["Pfam%3APF05952","Bacillus competence pheromone ComX"]],"b":[["amino_acids_and_peptides/entianin.yaml","entianin"]]},{"id":"NCBITaxon:986","l":"Flavobacterium johnsoniae","na":1,"nb":1,"a":[["TED%3AAF-A0A1J7BWE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1J7BWE6-F1-model_v4_TED01"]],"b":[["polyketides/flexirubin.yaml","flexirubin"]]},{"id":"NCBITaxon:994086","l":"Hydnomerulius pinastri MD-312","na":1,"nb":1,"a":[["TED%3AAF-A0A0C9W3H2-F1-model_v4_TED01","TED novel fold AF-A0A0C9W3H2-F1-model_v4_TED01"]],"b":[["fatty_acids/methyl-2s-4-methyl-2-octanoylamino-pentanoate.yaml","methyl (2S)-4-methyl-2-(octanoylamino)pentanoate"]]},{"id":"UniProt:A4F7P5","l":"","na":1,"nb":1,"a":[["EC%3A2.1.1.254","erythromycin 3'-O-methyltransferase"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"UniProt:O05207","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RDC","RDC-binding site"]],"b":[["polyketides/radicicol.yaml","radicicol"]]},{"id":"UniProt:O42713","l":"","na":1,"nb":1,"a":[["EC%3A1.14.18.1","tyrosinase"]],"b":[["polyketides/kojic-acid.yaml","kojic acid"]]},{"id":"UniProt:P00523","l":"","na":1,"nb":1,"a":[["ELM%3AELME000013","MOD_TYR_CSK"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P02701.","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_B1R","B1R-binding site"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"UniProt:P09917.","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_AF7","AF7-binding site"]],"b":[["alkaloids/myxochelin-a.yaml","myxochelin A"]]},{"id":"UniProt:P0C8L0","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ZL5","ZL5-binding site"]],"b":[["unclassified/antimycin-a1b.yaml","antimycin A1B"]]},{"id":"UniProt:P11799","l":"","na":1,"nb":1,"a":[["Pfam%3APF16620","Unstructured linker between I-set domains 2 and 3 on MYLCK"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P28523","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_7M0","7M0-binding site"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"UniProt:P43250.","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SGV","SGV-binding site"]],"b":[["carbohydrates/sangivamycin.yaml","sangivamycin"]]},{"id":"UniProt:Q00024","l":"","na":1,"nb":1,"a":[["EC%3A1.14.18.1","tyrosinase"]],"b":[["polyketides/kojic-acid.yaml","kojic acid"]]},{"id":"UniProt:Q03181.","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_433","433-binding site"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"UniProt:Q13451","l":"","na":1,"nb":1,"a":[["ComplexPortal%3ACPX-13334","-"]],"b":[["polyketides/sirolimus.yaml","sirolimus"]]},{"id":"UniProt:Q28021","l":"","na":1,"nb":1,"a":[["Pfam%3APF08912","Rho Binding"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:Q5G940","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_JUG","JUG-binding site"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"UniProt:Q5G940.","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_JUG","JUG-binding site"]],"b":[["polyketides/emodin.yaml","emodin"]]}]} \ No newline at end of file +{"a":"ProteinTraitsMech","b":"NaturalProductMech","base":{"ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record=","NaturalProductMech":"https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/natural_products/"},"n":794,"by":{"NCBITaxon":487,"UniProt":156,"CHEBI":148,"RHEA":3},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":145,"nb":24,"a":[["IDPO%3A0000033","flexible linker"],["IDPO%3A0000014","order to disorder"],["IDPO%3A0000004","pre-molten globule"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":32,"nb":23,"a":[["Pfam%3APF25848","Rodlin protein"],["Pfam%3APF13420","Acetyltransferase (GNAT) domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF26381","BREX System ATPase PglY protein 5th domain"],["Pfam%3APF26382","BREX System ATPase PglY protein 6th domain"]],"b":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/melanin.yaml","melanin"],["alkaloids/undecylprodigiosin.yaml","undecylprodigiosin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/sapb.yaml","SapB"]]},{"id":"NCBITaxon:227321","l":"Emericella nidulans (strain FGSC A4 / ATCC 38163 / CBS 112.46 / NRRL 194 / M139)","na":44,"nb":22,"a":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF05270","Alpha-L-arabinofuranosidase B (ABFB) domain"],["Pfam%3APF07792","Docking domain of Afi1 for Arf3 in vesicle trafficking"],["Pfam%3APF09206","Alpha-L-arabinofuranosidase B, catalytic"],["Pfam%3APF27751","ATEG_07667 C-terminal domain"],["Pfam%3APF20238","Copper acquisition factor BIM1-like"]],"b":[["alkaloids/aspernidine-a.yaml","aspernidine A"],["alkaloids/aspyridone-a.yaml","aspyridone A"],["alkaloids/aspyridone-b.yaml","aspyridone B"],["alkaloids/cichorine.yaml","cichorine"],["alkaloids/terrequinone-a.yaml","terrequinone A"],["amino_acids_and_peptides/fellutamide-b.yaml","fellutamide B"]]},{"id":"NCBITaxon:77133","l":"uncultured bacterium","na":22,"nb":34,"a":[["TED%3AAF-A0A059X489-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A059X489-F1-model_v4_TED02"],["TED%3AAF-A0A059X769-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A059X769-F1-model_v4_TED01"],["TED%3AAF-K1YCK5-F1-model_v4_TED02","TED highly-symmetric fold AF-K1YCK5-F1-model_v4_TED02"],["TED%3AAF-K1Z363-F1-model_v4_TED05","TED highly-symmetric fold AF-K1Z363-F1-model_v4_TED05"],["TED%3AAF-K1ZVQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-K1ZVQ3-F1-model_v4_TED01"],["TED%3AAF-K2AKZ9-F1-model_v4_TED01","TED highly-symmetric fold AF-K2AKZ9-F1-model_v4_TED01"]],"b":[["alkaloids/borregomycin-a.yaml","borregomycin A"],["alkaloids/borregomycin-b.yaml","borregomycin B"],["alkaloids/borregomycin-c.yaml","borregomycin C"],["alkaloids/borregomycin-d.yaml","borregomycin D"],["alkaloids/erdasporine-a.yaml","erdasporine A"],["alkaloids/erdasporine-b.yaml","erdasporine B"]]},{"id":"UniProt:P43405","l":"","na":32,"nb":17,"a":[["GO%3A0019815","B cell receptor complex"],["GO%3A0042101","T cell receptor complex"],["GO%3A0016170","interleukin-15 receptor binding"],["GO%3A0004715","non-membrane spanning protein tyrosine kinase activity"],["GO%3A0035325","Toll-like receptor binding"],["GO%3A0002752","cell surface pattern recognition receptor signaling pathway"]],"b":[["alkaloids/cytochalasin-e.yaml","cytochalasin E"],["alkaloids/fumiquinazoline-a.yaml","fumiquinazoline A"],["alkaloids/fumiquinazoline-d.yaml","fumiquinazoline D"],["alkaloids/psilocybin.yaml","psilocybin"],["amino_acids_and_peptides/epoxomicin.yaml","epoxomicin"],["amino_acids_and_peptides/tubulysin-a.yaml","tubulysin A"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":16,"nb":27,"a":[["Pfam%3APF16822","SGNH hydrolase-like domain, acetyltransferase AlgX"],["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"],["Pfam%3APF11182","Alginate O-acetyl transferase AlgF"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF27129","Functional amyloid protein FapB/FapC family"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]],"b":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["alkaloids/pseudomonine.yaml","pseudomonine"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyreudione-c.yaml","pyreudione C"],["alkaloids/quinolobactin.yaml","quinolobactin"]]},{"id":"UniProt:O96028","l":"","na":27,"nb":16,"a":[["ComplexPortal%3ACPX-16414","-"],["CDD%3Acd20162","PWWP_NSD2_rpt1"],["CDD%3Acd21991","HMG-box_NSD2"],["CDD%3Acd15648","PHD1_NSD1_2"],["CDD%3Acd15651","PHD2_NSD2"],["CDD%3Acd15654","PHD3_NSD2"]],"b":[["alkaloids/cytochalasin-e.yaml","cytochalasin E"],["alkaloids/fumiquinazoline-d.yaml","fumiquinazoline D"],["amino_acids_and_peptides/epoxomicin.yaml","epoxomicin"],["amino_acids_and_peptides/tubulysin-a.yaml","tubulysin A"],["carbohydrates/puromycin.yaml","puromycin"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":16,"a":[["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["Pfam%3APF14562","Restriction endonuclease BglI"],["Pfam%3APF09195","Restriction endonuclease BglII/BglIII"],["Pfam%3APF09208","Restriction endonuclease MspI"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["amino_acids_and_peptides/ericin-s.yaml","ericin S"],["amino_acids_and_peptides/iturin.yaml","iturin"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"]]},{"id":"NCBITaxon:330879","l":"Aspergillus fumigatus (strain ATCC MYA-4609 / CBS 101355 / FGSC A1100 / Af293)","na":34,"nb":14,"a":[["Pfam%3APF22624","4'-phosphopantetheinyl transferase, N-terminal"],["Pfam%3APF13523","Acetyltransferase (GNAT) domain"],["Pfam%3APF28338","AclK C-terminal domain"],["Pfam%3APF23297","Highly reducing polyketide synthase sdgA, C-terminal ACP domain"],["Pfam%3APF11001","YDR124W-like, helical bundle domain"],["Pfam%3APF25312","Allergen Asp f 4-like domain"]],"b":[["alkaloids/fumigaclavine-c.yaml","fumigaclavine C"],["alkaloids/fumiquinazoline-a.yaml","fumiquinazoline A"],["alkaloids/fumiquinazoline-c.yaml","fumiquinazoline C"],["alkaloids/fumiquinazoline-d.yaml","fumiquinazoline D"],["alkaloids/hexadehydroastechrome.yaml","hexadehydroastechrome"],["polyketides/endocrocin.yaml","endocrocin"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":49554,"nb":13,"a":[["EC%3A1.1.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.1.98.-","With other, known, acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/congocidine.yaml","congocidine"],["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]]},{"id":"NCBITaxon:56","l":"Sorangium cellulosum","na":13,"nb":25,"a":[["TED%3AAF-A0A150SQB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A150SQB4-F1-model_v4_TED01"],["TED%3AAF-A0A2L0EP96-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0EP96-F1-model_v4_TED01"],["TED%3AAF-A0A2L0F1G5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0F1G5-F1-model_v4_TED01"],["TED%3AAF-A0A2L0F230-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0F230-F1-model_v4_TED01"],["TED%3AAF-A0A4P2R1W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P2R1W3-F1-model_v4_TED01"],["TED%3AAF-A0A150P579-F1-model_v4_TED02","TED novel fold AF-A0A150P579-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/microsclerodermin-m.yaml","microsclerodermin M"],["polyketides/ambruticin.yaml","ambruticin"],["polyketides/chivosazol.yaml","chivosazol"],["polyketides/chlorotonil-a.yaml","chlorotonil A"],["polyketides/disorazol-a.yaml","disorazol A"],["polyketides/etnangien.yaml","etnangien"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":19,"nb":12,"a":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"],["Pfam%3APF18173","Bacterial HORMA domain 2"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["Pfam%3APF27322","Cap8 HORMA domain"],["Pfam%3APF01526","Tn3 transposase DDE domain"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:341663","l":"","na":11,"nb":17,"a":[["Pfam%3APF27751","ATEG_07667 C-terminal domain"],["Pfam%3APF28386","BfoA family C-terminal domain"],["Pfam%3APF03879","Cgr1 family"],["Pfam%3APF22621","CurL-like, PKS C-terminal"],["Pfam%3APF18558","Methyltransferase, Helix-turn-helix domain"],["Pfam%3APF06355","Aegerolysin"]],"b":[["alkaloids/asterriquinone-ct5.yaml","asterriquinone CT5"],["alkaloids/dihydroisoflavipucine.yaml","dihydroisoflavipucine"],["alkaloids/isoflavipucine.yaml","isoflavipucine"],["polyketides/citreoviridin.yaml","citreoviridin"],["polyketides/geodin.yaml","geodin"],["polyketides/terreic-acid.yaml","terreic acid"]]},{"id":"NCBITaxon:3702","l":"Arabidopsis thaliana","na":18772,"nb":10,"a":[["EC%3A1.1.99.-","With other acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.14.11.-","With 2-oxoglutarate as one donor, and incorporation of one atom each of oxygen into both donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.14.-","With reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/itaconic-acid.yaml","itaconic acid"],["terpenoids/ent-quiannulatene.yaml","(-)-ent-quiannulatene"],["terpenoids/euphol.yaml","euphol"],["terpenoids/marneral.yaml","marneral"],["terpenoids/thaliandiol.yaml","thaliandiol"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa (strain ATCC 15692 / DSM 22644 / CIP 104116 / JCM 14847 / LMG 12228 / 1C / PRS 101 / PAO1)","na":162,"nb":10,"a":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF06750","Bacterial Peptidase A24 N-terminal domain"],["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF28403","Aconitase X second domain"],["Pfam%3APF28406","Aconitase X third domain"],["Pfam%3APF04412","Aconitase X first domain"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae (strain ATCC 42149 / RIB 40)","na":27,"nb":10,"a":[["Pfam%3APF09260","Alpha-amylase, domain C"],["Pfam%3APF28338","AclK C-terminal domain"],["Pfam%3APF09206","Alpha-L-arabinofuranosidase B, catalytic"],["Pfam%3APF28380","Sesquiterpene cyclase astC-like C-terminal domain"],["Pfam%3APF13364","Beta-galactosidase second all-beta domain"],["Pfam%3APF10435","Beta-galactosidase, domain 2"]],"b":[["fatty_acids/oryzine-a.yaml","oryzine A"],["polyketides/kojic-acid.yaml","kojic acid"],["polyketides/oryzine-b.yaml","oryzine B"],["polyketides/ywa1.yaml","YWA1"],["shikimates_and_phenylpropanoids/2-4-dihydroxy-3-methoxypropiophenone.yaml","2,4'-dihydroxy-3'-methoxypropiophenone"],["shikimates_and_phenylpropanoids/8-methyldiaporthin.yaml","8-methyldiaporthin"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":10,"nb":11,"a":[["Pfam%3APF17433","Glycosyl hydrolase family 49 N-terminal Ig-like domain"],["PROSITE%3APS00820","Glucoamylase active site region signature"],["PROSITE%3APS00920","Nitrilases / cyanide hydratase signature 1"],["PROSITE%3APS00502","Polygalacturonase active site"],["Pfam%3APF18841","Beta solenoid repeat from Dextranase"],["Pfam%3APF03718","Glycosyl hydrolase family 49"]],"b":[["amino_acids_and_peptides/ferrichrome.yaml","ferrichrome"],["polyketides/1-2-3-5-10-tetrahydroxy-7-methoxy-4-oxo-1-2-3-4-tetrahydroanthracen-2-yl-pentane.yaml","1-(2,3,5,10-tetrahydroxy-7-methoxy-4-oxo-1,2,3,4-tetrahydroanthracen-2-yl)pentane-2,4-dione"],["polyketides/azanigerone-a.yaml","azanigerone A"],["polyketides/campyrone-b.yaml","campyrone B"],["polyketides/desmethyl-tan-1612.yaml","desmethyl TAN-1612"],["polyketides/fumonisin-b2.yaml","fumonisin B2"]]},{"id":"NCBITaxon:242507","l":"","na":10,"nb":10,"a":[["Pfam%3APF28293","Biotrophy-associated secreted protein 2"],["Pfam%3APF28414","Biotrophy-associated secreted protein 4"],["Pfam%3APF22997","Chitin synthase 4-like domain"],["Pfam%3APF27979","CON7 transcription factor helical domain"],["Pfam%3APF26980","Dicer-like protein 2, dsRNA binding domain"],["Pfam%3APF11327","Egh16-like virulence factor"]],"b":[["polyketides/1-alpha-l-2-o-methyl-6-deoxymannopyranosyloxy-3-6-8-trimethoxynaphthalene.yaml","1-(alpha-l-(2-O-methyl)-6-deoxymannopyranosyloxy)-3,6,8-trimethoxynaphthalene"],["polyketides/10-11-dihydroxymagnaporthepyrone.yaml","10,11-dihydroxymagnaporthepyrone"],["polyketides/12-13-dihydroxymagnaporthepyrone.yaml","12,13-dihydroxymagnaporthepyrone"],["polyketides/epipyriculol.yaml","epipyriculol"],["polyketides/naphthalene-1-3-6-8-tetrol.yaml","naphthalene-1,3,6,8-tetrol"],["polyketides/nectriapyrone-c.yaml","nectriapyrone C"]]},{"id":"UniProt:P18054","l":"","na":25,"nb":9,"a":[["EC%3A1.13.11.31","arachidonate 12-lipoxygenase"],["EC%3A1.13.11.33","arachidonate 15-lipoxygenase"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"],["RHEA%3A10428","(5Z,8Z,11Z,14Z)-eicosatetraenoate + O2 = (12S)-hydroperoxy-(5Z,8Z,10E,14Z)-eicosatetraenoate"],["RHEA%3A16869","(5Z,8Z,11Z,14Z)-eicosatetraenoate + O2 = (15S)-hydroperoxy-(5Z,8Z,11Z,13E)-eicosatetraenoate"],["GO%3A0004052","arachidonate 12(S)-lipoxygenase activity"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/actinonin.yaml","actinonin"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"],["fatty_acids/triacsin-c.yaml","triacsin C"],["polyketides/terreic-acid.yaml","terreic acid"],["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:Q96RU2","l":"","na":14,"nb":9,"a":[["ComplexPortal%3ACPX-15530","-"],["ComplexPortal%3ACPX-15595","-"],["ComplexPortal%3ACPX-15768","-"],["ComplexPortal%3ACPX-24431","-"],["InterPro%3AIPR054108","Ubiquitin carboxyl-terminal hydrolase 25/28, UIM"],["CDD%3Acd02665","Peptidase_C19I"]],"b":[["alkaloids/esmeraldin.yaml","esmeraldin"],["alkaloids/fervenulin.yaml","fervenulin"],["alkaloids/neocarazostatin-a.yaml","neocarazostatin A"],["alkaloids/nybomycin.yaml","nybomycin"],["amino_acids_and_peptides/tyrocidine-a.yaml","tyrocidine A"],["polyketides/asukamycin.yaml","asukamycin"]]},{"id":"UniProt:O95398","l":"","na":20,"nb":8,"a":[["ComplexPortal%3ACPX-10829","-"],["ComplexPortal%3ACPX-12123","-"],["ComplexPortal%3ACPX-12892","-"],["ComplexPortal%3ACPX-13579","-"],["ComplexPortal%3ACPX-13585","-"],["ComplexPortal%3ACPX-14152","-"]],"b":[["alkaloids/8-azaguanine.yaml","8-azaguanine"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/thiostrepton.yaml","thiostrepton"],["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"],["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK1622","na":8,"nb":12,"a":[["Pfam%3APF27281","DevT C-terminal domain"],["Pfam%3APF27372","DevT N-terminal domain"],["Pfam%3APF17762","ParB HTH domain"],["Pfam%3APF01930","Domain of unknown function DUF83"],["Pfam%3APF09559","Cas6 Crispr"],["Pfam%3APF01905","CRISPR-associated negative auto-regulator DevR/Csa2"]],"b":[["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"],["amino_acids_and_peptides/myxochromide-a.yaml","myxochromide A"],["amino_acids_and_peptides/myxoprincomide-c506.yaml","myxoprincomide-c506"]]},{"id":"NCBITaxon:229533","l":"Fusarium graminearum PH-1","na":8,"nb":11,"a":[["Pfam%3APF18388","Atg29 N-terminal domain"],["Pfam%3APF27599","CcsR C-terminal domain"],["Pfam%3APF07110","EthD domain"],["Pfam%3APF11700","Vacuole effluxer Atg22 like"],["Pfam%3APF28504","Gramillins biosynthetic cluster protein GRA5"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"]],"b":[["alkaloids/chrysogine.yaml","chrysogine"],["amino_acids_and_peptides/fusaoctaxin-a.yaml","fusaoctaxin A"],["polyketides/aurofusarin.yaml","aurofusarin"],["polyketides/prolipyrone-b.yaml","prolipyrone B"],["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"],["terpenoids/15-acetyldeoxynivalenol.yaml","15-acetyldeoxynivalenol"]]},{"id":"NCBITaxon:1911","l":"Streptomyces griseus","na":7,"nb":32,"a":[["Pfam%3APF13207","AAA domain"],["Pfam%3APF27054","Beta-methylindole-3-pyruvate reductase C-terminal domain"],["Pfam%3APF26558","3-dehydroquinate synthase II C-terminal domain"],["Pfam%3APF01959","3-dehydroquinate synthase II N-terminal domain"],["Pfam%3APF13459","4Fe-4S single cluster domain"],["Pfam%3APF04655","Aminoglycoside/hydroxyurea antibiotic resistance kinase"]],"b":[["alkaloids/cycloheximide.yaml","cycloheximide"],["alkaloids/grixazone-a.yaml","grixazone A"],["alkaloids/iminimycin-a.yaml","iminimycin A"],["alkaloids/iminimycin-b.yaml","iminimycin B"],["alkaloids/indolmycin.yaml","indolmycin"],["alkaloids/melanin.yaml","melanin"]]},{"id":"NCBITaxon:223283","l":"Pseudomonas syringae pv. tomato (strain ATCC BAA-871 / DC3000)","na":14,"nb":7,"a":[["IDPO%3A0000030","entropic chain"],["IDPO%3A0000037","molecular recognition display site"],["Pfam%3APF16847","Avirulence AvrPtoB, BAK1-binding domain"],["Pfam%3APF09046","AvrPtoB E3 ubiquitin ligase"],["Pfam%3APF25965","ALG44 beta-barrel domain"],["Pfam%3APF25964","ALG44, barrel-sandwich hybrid domain"]],"b":[["alkaloids/yersiniabactin.yaml","yersiniabactin"],["amino_acids_and_peptides/syringafactin-a.yaml","syringafactin A"],["amino_acids_and_peptides/syringafactin-b.yaml","syringafactin B"],["amino_acids_and_peptides/syringafactin-c.yaml","syringafactin C"],["amino_acids_and_peptides/syringafactin-d.yaml","syringafactin D"],["amino_acids_and_peptides/syringafactin-e.yaml","syringafactin E"]]},{"id":"NCBITaxon:27334","l":"Penicillium expansum","na":7,"nb":10,"a":[["Pfam%3APF11786","Aft1 HRA domain"],["Pfam%3APF11787","Aft1 HRR domain"],["Pfam%3APF11785","Aft1 osmotic stress response (OSM) domain"],["Pfam%3APF14856","Pathogen effector; putative necrosis-inducing factor"],["PROSITE%3APS00624","GMC oxidoreductases signature 2"],["TED%3AAF-A0A0A2ILJ4-F1-model_v4_TED03","TED novel fold AF-A0A0A2ILJ4-F1-model_v4_TED03"]],"b":[["alkaloids/chaetoglobosin-a.yaml","chaetoglobosin A"],["alkaloids/chaetoglobosin-c.yaml","chaetoglobosin C"],["alkaloids/communesin-a.yaml","communesin A"],["alkaloids/communesin-b.yaml","communesin B"],["alkaloids/communesin-c.yaml","communesin C"],["alkaloids/communesin-d.yaml","communesin D"]]},{"id":"NCBITaxon:2024858","l":"","na":7,"nb":7,"a":[["TED%3AAF-A0A2D9T9L6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9T9L6-F1-model_v4_TED01"],["TED%3AAF-A0A2E0T9R7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0T9R7-F1-model_v4_TED01"],["TED%3AAF-A0A891ZV95-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A891ZV95-F1-model_v4_TED01"],["TED%3AAF-A0A2D9SYS7-F1-model_v4_TED02","TED novel fold AF-A0A2D9SYS7-F1-model_v4_TED02"],["TED%3AAF-A0A2D9TFN8-F1-model_v4_TED02","TED novel fold AF-A0A2D9TFN8-F1-model_v4_TED02"],["TED%3AAF-A0A2E0TMV1-F1-model_v4_TED03","TED novel fold AF-A0A2E0TMV1-F1-model_v4_TED03"]],"b":[["amino_acids_and_peptides/sandarazol-a.yaml","sandarazol A"],["amino_acids_and_peptides/sandarazol-c.yaml","sandarazol C"],["amino_acids_and_peptides/sandarazol-d.yaml","sandarazol D"],["amino_acids_and_peptides/sandarazol-f.yaml","sandarazol F"],["amino_acids_and_peptides/sandarazol-g.yaml","sandarazol G"],["unclassified/sandarazol-b.yaml","sandarazol B"]]},{"id":"UniProt:Q14694","l":"","na":27,"nb":6,"a":[["ComplexPortal%3ACPX-11609","-"],["ComplexPortal%3ACPX-11855","-"],["ComplexPortal%3ACPX-12223","-"],["ComplexPortal%3ACPX-12431","-"],["ComplexPortal%3ACPX-12812","-"],["ComplexPortal%3ACPX-13824","-"]],"b":[["alkaloids/esmeraldin.yaml","esmeraldin"],["alkaloids/fervenulin.yaml","fervenulin"],["alkaloids/nybomycin.yaml","nybomycin"],["polyketides/asukamycin.yaml","asukamycin"],["polyketides/dehydrorabelomycin.yaml","dehydrorabelomycin"],["polyketides/flaviolin.yaml","flaviolin"]]},{"id":"UniProt:Q99700","l":"","na":20,"nb":6,"a":[["ComplexPortal%3ACPX-12180","-"],["ComplexPortal%3ACPX-12321","-"],["ComplexPortal%3ACPX-12947","-"],["ComplexPortal%3ACPX-13401","-"],["ComplexPortal%3ACPX-15183","-"],["ComplexPortal%3ACPX-17860","-"]],"b":[["alkaloids/8-azaguanine.yaml","8-azaguanine"],["alkaloids/cycloheximide.yaml","cycloheximide"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"],["unclassified/antimycin-a.yaml","antimycin A"],["unclassified/echinomycin.yaml","echinomycin"]]},{"id":"NCBITaxon:1916","l":"Streptomyces lividans","na":6,"nb":18,"a":[["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["Pfam%3APF27079","SpdB plasmid transfer protein, C-terminal HTH domain"],["Pfam%3APF27072","KilB plasmid transfer protein"],["Pfam%3APF08386","TAP-like protein"],["PROSITE%3APS00999","Streptomyces subtilisin-type inhibitors signature"],["Pfam%3APF03664","Glycosyl hydrolase family 62"]],"b":[["alkaloids/rebeccamycin.yaml","rebeccamycin"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["amino_acids_and_peptides/dehydroxynocardamine.yaml","dehydroxynocardamine"],["amino_acids_and_peptides/goadsporin.yaml","goadsporin"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"]]},{"id":"NCBITaxon:4577","l":"Zea mays","na":18,"nb":6,"a":[["IDPO%3A0000002","disorder"],["Pfam%3APF14861","Plant antimicrobial peptide"],["Pfam%3APF02041","Auxin binding protein"],["Pfam%3APF25436","BSD2 cysteine rich domain"],["Pfam%3APF23493","Cysteinyl-tRNA ligase anticodon binding domain"],["Pfam%3APF03330","Lytic transglycolase"]],"b":[["alkaloids/dimboa.yaml","DIMBOA"],["polyketides/emodin.yaml","emodin"],["terpenoids/zealexin-a1.yaml","zealexin A1"],["terpenoids/zealexin-b3.yaml","zealexin B3"],["terpenoids/zealexin-c2.yaml","zealexin C2"],["unclassified/aflatoxin.yaml","aflatoxin"]]},{"id":"UniProt:P40818","l":"","na":16,"nb":6,"a":[["ComplexPortal%3ACPX-13765","-"],["ComplexPortal%3ACPX-16972","-"],["ComplexPortal%3ACPX-18301","-"],["ComplexPortal%3ACPX-19098","-"],["ComplexPortal%3ACPX-24015","-"],["GO%3A0004843","cysteine-type deubiquitinase activity"]],"b":[["alkaloids/esmeraldin.yaml","esmeraldin"],["alkaloids/fervenulin.yaml","fervenulin"],["alkaloids/neocarazostatin-a.yaml","neocarazostatin A"],["alkaloids/nybomycin.yaml","nybomycin"],["polyketides/dehydrorabelomycin.yaml","dehydrorabelomycin"],["polyketides/flaviolin.yaml","flaviolin"]]},{"id":"NCBITaxon:321614","l":"","na":6,"nb":12,"a":[["Pfam%3APF11786","Aft1 HRA domain"],["Pfam%3APF11787","Aft1 HRR domain"],["Pfam%3APF26980","Dicer-like protein 2, dsRNA binding domain"],["Pfam%3APF18973","Putative Chitin binding like"],["Pfam%3APF25326","SRB8 ARM-like domain"],["TED%3AAF-A0A7U2I0S3-F1-model_v4_TED02","TED novel fold AF-A0A7U2I0S3-F1-model_v4_TED02"]],"b":[["alkaloids/phomacin-d.yaml","phomacin D"],["alkaloids/phomacin-e.yaml","phomacin E"],["polyketides/betaenone-b.yaml","betaenone B"],["polyketides/betaenone-c.yaml","betaenone C"],["polyketides/compound-3-2.yaml","compound 3"],["polyketides/compound-5-2.yaml","compound 5"]]},{"id":"UniProt:Q70CQ3","l":"","na":11,"nb":6,"a":[["ComplexPortal%3ACPX-14824","-"],["ComplexPortal%3ACPX-15800","-"],["ComplexPortal%3ACPX-20518","-"],["ComplexPortal%3ACPX-22415","-"],["ComplexPortal%3ACPX-22784","-"],["GO%3A0035871","protein K11-linked deubiquitination"]],"b":[["alkaloids/esmeraldin.yaml","esmeraldin"],["alkaloids/fervenulin.yaml","fervenulin"],["alkaloids/holomycin.yaml","holomycin"],["alkaloids/neocarazostatin-a.yaml","neocarazostatin A"],["polyketides/flaviolin.yaml","flaviolin"],["polyketides/nigericin.yaml","nigericin"]]},{"id":"UniProt:P09936","l":"","na":10,"nb":6,"a":[["GO%3A0031694","alpha-2A adrenergic receptor binding"],["GO%3A0008242","omega peptidase activity"],["InterPro%3AIPR057254","Ubiquitin carboxyl-terminal hydrolase family 1, cysteine active-site"],["CDD%3Acd09616","Peptidase_C12_UCH_L1_L3"],["InterPro%3AIPR001578","Peptidase C12, ubiquitin carboxyl-terminal hydrolase"],["Pfam%3APF01088","Ubiquitin carboxyl-terminal hydrolase, family 1"]],"b":[["alkaloids/esmeraldin.yaml","esmeraldin"],["alkaloids/fervenulin.yaml","fervenulin"],["polyketides/asukamycin.yaml","asukamycin"],["polyketides/chelocardin.yaml","chelocardin"],["polyketides/dehydrorabelomycin.yaml","dehydrorabelomycin"],["polyketides/flaviolin.yaml","flaviolin"]]},{"id":"NCBITaxon:10090","l":"Mus musculus","na":45870,"nb":5,"a":[["EC%3A1.1.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.1.98.-","With other, known, acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"],["terpenoids/carotene.yaml","β-carotene"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":46,"nb":5,"a":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF13166","AAA domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF27533","CapK C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"],["unclassified/leuvalin.yaml","leuvalin"],["unclassified/phevalin.yaml","phevalin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":5,"nb":31,"a":[["TED%3AAF-A0A4Y6CF56-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y6CF56-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6CNZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Y6CNZ1-F1-model_v4_TED02"],["TED%3AAF-A0A7Y4IIX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4IIX4-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6B7F9-F1-model_v4_TED01","TED novel fold AF-A0A4Y6B7F9-F1-model_v4_TED01"],["TED%3AAF-A0A7Y4IR70-F1-model_v4_TED01","TED novel fold AF-A0A7Y4IR70-F1-model_v4_TED01"]],"b":[["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["alkaloids/myxofacycline-e.yaml","myxofacycline E"],["alkaloids/myxofacycline-f.yaml","myxofacycline F"],["alkaloids/myxofacycline-g.yaml","myxofacycline G"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":25,"nb":5,"a":[["Pfam%3APF13372","Alginate export"],["Pfam%3APF25965","ALG44 beta-barrel domain"],["Pfam%3APF25964","ALG44, barrel-sandwich hybrid domain"],["Pfam%3APF16844","Dinitrogenase iron-molybdenum cofactor, N-terminal"],["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"]],"b":[["alkaloids/aminochelin.yaml","aminochelin"],["alkaloids/azotochelin.yaml","azotochelin"],["alkaloids/protochelin.yaml","protochelin"],["amino_acids_and_peptides/azotobactin-d.yaml","azotobactin D"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"UniProt:O14656","l":"","na":21,"nb":5,"a":[["ComplexPortal%3ACPX-21660","-"],["ComplexPortal%3ACPX-26140","-"],["ComplexPortal%3ACPX-26338","Cytoplasmic organelles"],["ComplexPortal%3ACPX-26301","Secretory organelles"],["GO%3A0008092","cytoskeletal protein binding"],["GO%3A0019894","kinesin binding"]],"b":[["alkaloids/chloramphenicol.yaml","chloramphenicol"],["alkaloids/cycloheximide.yaml","cycloheximide"],["alkaloids/tioguanine.yaml","tioguanine"],["amino_acids_and_peptides/cyclosporin-a.yaml","cyclosporin A"],["polyketides/daunorubicin.yaml","daunorubicin"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":20,"nb":5,"a":[["Pfam%3APF14535","AMP-binding enzyme C-terminal domain"],["Pfam%3APF13442","Cytochrome C oxidase, cbb3-type, subunit III"],["Pfam%3APF22247","Catechol 2,3-dioxygenase-like N-terminal domain"],["Pfam%3APF25371","Domain of unknown function (DUF7884)"],["Pfam%3APF19301","LigXa C-terminal domain like"],["Pfam%3APF12729","Four helix bundle sensory module for signal transduction"]],"b":[["alkaloids/promysalin.yaml","promysalin"],["polyketides/pseudopyronine-a.yaml","pseudopyronine A"],["polyketides/pseudopyronine-b.yaml","pseudopyronine B"],["unclassified/putisolvin-iii.yaml","putisolvin III"],["unclassified/putisolvin-v.yaml","putisolvin V"]]},{"id":"NCBITaxon:3562","l":"Spinacia oleracea","na":13,"nb":5,"a":[["Pfam%3APF21329","Peptidyl-prolyl cis-trans isomerase CYP38-like, PsbQ-like domain"],["Pfam%3APF02941","Ferredoxin thioredoxin reductase variable alpha chain"],["Pfam%3APF02943","Ferredoxin thioredoxin reductase catalytic beta chain"],["Pfam%3APF17257","Family of unknown function (DUF5323)"],["PROSITE%3APS00567","Phosphoribulokinase signature"],["PROSITE%3APS01026","Photosystem I psaG and psaK proteins signature"]],"b":[["terpenoids/yossoside-i.yaml","Yossoside I"],["terpenoids/yossoside-ii.yaml","Yossoside II"],["terpenoids/yossoside-iii.yaml","Yossoside III"],["terpenoids/yossoside-iv.yaml","Yossoside IV"],["terpenoids/yossoside-v.yaml","Yossoside V"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":13,"nb":5,"a":[["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF03173","Putative carbohydrate binding domain"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"],["Pfam%3APF06438","Heme-binding protein A (HasA)"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF05247","Flagellar transcriptional activator (FlhD)"]],"b":[["alkaloids/prodigiosin-2.yaml","prodigiosin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/serratiochelin-a.yaml","serratiochelin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["polyketides/oocydin-a.yaml","oocydin A"]]},{"id":"UniProt:P36969","l":"","na":12,"nb":5,"a":[["ComplexPortal%3ACPX-18066","-"],["GO%3A0047066","phospholipid-hydroperoxide glutathione peroxidase activity"],["GO%3A0008430","selenium binding"],["GO%3A0034599","cellular response to oxidative stress"],["InterPro%3AIPR029759","Glutathione peroxidase active site"],["InterPro%3AIPR029760","Glutathione peroxidase conserved site"]],"b":[["alkaloids/ergotamine.yaml","ergotamine"],["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"],["polyketides/pentamycin.yaml","pentamycin"],["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"],["unclassified/antimycin-a.yaml","antimycin A"]]},{"id":"NCBITaxon:5507","l":"Fusarium oxysporum","na":5,"nb":11,"a":[["Pfam%3APF02015","Glycosyl hydrolase family 45"],["PROSITE%3APS01140","Glycosyl hydrolases family 45 active site"],["TED%3AAF-A0A2H3TJY2-F1-model_v4_TED01","TED novel fold AF-A0A2H3TJY2-F1-model_v4_TED01"],["TED%3AAF-A0A420N954-F1-model_v4_TED01","TED novel fold AF-A0A420N954-F1-model_v4_TED01"],["TED%3AAF-A0A420P6J4-F1-model_v4_TED01","TED novel fold AF-A0A420P6J4-F1-model_v4_TED01"]],"b":[["alkaloids/fusaric-acid.yaml","fusaric acid"],["polyketides/bikaverin.yaml","bikaverin"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"],["polyketides/fumonisin-c1.yaml","Fumonisin C1"],["polyketides/fumonisin-c2.yaml","Fumonisin C2"],["polyketides/fumonisin-c3.yaml","Fumonisin C3"]]},{"id":"NCBITaxon:953739","l":"Streptomyces venezuelae ATCC 10712","na":5,"nb":10,"a":[["Pfam%3APF11583","P-aminobenzoate N-oxygenase AurF"],["Pfam%3APF18456","Diiron non-heme beta-hydroxylase N-terminal domain"],["Pfam%3APF07931","Chloramphenicol phosphotransferase-like protein"],["Pfam%3APF02650","WhiA C-terminal HTH domain"],["Pfam%3APF14527","WhiA LAGLIDADG-like domain"]],"b":[["alkaloids/chloramphenicol.yaml","chloramphenicol"],["alkaloids/gaburedin-d.yaml","gaburedin D"],["alkaloids/watasemycin-a.yaml","watasemycin A"],["alkaloids/watasemycin-b.yaml","watasemycin B"],["amino_acids_and_peptides/gaburedin-a.yaml","gaburedin A"],["amino_acids_and_peptides/gaburedin-b.yaml","gaburedin B"]]},{"id":"NCBITaxon:63737","l":"Nostoc punctiforme PCC 73102","na":5,"nb":7,"a":[["Pfam%3APF11266","Long-chain fatty aldehyde decarbonylase"],["Pfam%3APF21808","Bacterial dynamin-like protein, helical domain"],["Pfam%3APF18460","Heterocyst differentiation regulator C-terminal Hood domain"],["Pfam%3APF13619","KTSC domain"],["PROSITE%3APS01026","Photosystem I psaG and psaK proteins signature"]],"b":[["amino_acids_and_peptides/microviridin-n3.yaml","microviridin N3"],["amino_acids_and_peptides/microviridin-n4.yaml","microviridin N4"],["amino_acids_and_peptides/microviridin-n6.yaml","microviridin N6"],["amino_acids_and_peptides/microviridin-n7.yaml","microviridin N7"],["amino_acids_and_peptides/microviridin-n8.yaml","microviridin N8"],["amino_acids_and_peptides/microviridin-n9.yaml","microviridin N9"]]},{"id":"NCBITaxon:5081","l":"","na":5,"nb":6,"a":[["Pfam%3APF13364","Beta-galactosidase second all-beta domain"],["Pfam%3APF10435","Beta-galactosidase, domain 2"],["Pfam%3APF13363","Beta-galactosidase, domain 3"],["Pfam%3APF01301","Glycosyl hydrolases family 35"],["PROSITE%3APS01182","Glycosyl hydrolases family 35 putative active site"]],"b":[["alkaloids/citridone-a.yaml","citridone A"],["alkaloids/citridone-b-2.yaml","citridone B'"],["alkaloids/citridone-b.yaml","citridone B"],["alkaloids/cj-15-696.yaml","CJ-15,696"],["alkaloids/cj-16-173.yaml","CJ-16,173"],["polyketides/gregatin-a.yaml","gregatin A"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":6,"nb":5,"a":[["Pfam%3APF02929","Beta galactosidase small chain"],["Pfam%3APF27279","Fumarate--diaminopropanoate ligase C-terminal domain"],["Pfam%3APF18024","Helix-turn-helix domain"],["Pfam%3APF16353","Beta-galactosidase, domain 4"],["PROSITE%3APS00594","Aromatic amino acids permeases signature"],["PROSITE%3APS00853","Beta-eliminating lyases pyridoxal-phosphate attachment site"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/andrimid.yaml","andrimid"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/pantocin-a.yaml","pantocin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:43658","l":"Pseudoalteromonas rubra","na":5,"nb":5,"a":[["proteintraitsmech%3AELIFE109154_Orn_monoox","Metallophore-associated ornithine N5-monooxygenase family"],["TED%3AAF-A0A0F4QZE1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0F4QZE1-F1-model_v4_TED02"],["TED%3AAF-A0A0U3GWJ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0U3GWJ2-F1-model_v4_TED01"],["TED%3AAF-A0A0F4QSG0-F1-model_v4_TED02","TED novel fold AF-A0A0F4QSG0-F1-model_v4_TED02"],["TED%3AAF-A0A0L0EPH9-F1-model_v4_TED03","TED novel fold AF-A0A0L0EPH9-F1-model_v4_TED03"]],"b":[["alkaloids/prodigiosin.yaml","prodigiosin"],["polyketides/nonyltyrazolone.yaml","nonyltyrazolone"],["polyketides/undecyltyrazolone.yaml","undecyltyrazolone"],["shikimates_and_phenylpropanoids/z-6-undecenyltyrazolone.yaml","(Z)-ω-6-undecenyltyrazolone"],["unclassified/heptyltyrazolone.yaml","heptyltyrazolone"]]},{"id":"NCBITaxon:6239","l":"Caenorhabditis elegans","na":9682,"nb":4,"a":[["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.14.14.-","With reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.17.-","With reduced ascorbate as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.19.-","With oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water"],["EC%3A1.14.99.-","Miscellaneous"]],"b":[["alkaloids/biotin.yaml","biotin"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/itaconic-acid.yaml","itaconic acid"],["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"]]},{"id":"NCBITaxon:10116","l":"Rattus norvegicus","na":1002,"nb":4,"a":[["IDPO%3A0000011","disorder to order"],["IDPO%3A0000030","entropic chain"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000033","flexible linker"],["IDPO%3A0000041","glycosylation display site"],["IDPO%3A0000003","molten globule"]],"b":[["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/methylarcyriarubin.yaml","methylarcyriarubin"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]]},{"id":"NCBITaxon:39947","l":"Oryza sativa subsp. japonica","na":158,"nb":4,"a":[["Pfam%3APF03157","High molecular weight glutenin subunit"],["Pfam%3APF26249","RdRP3/4/5, N-terminal four helical bundle domain"],["Pfam%3APF23242","TRIP13-like, AAA+ ATPase lid C-terminal domain"],["Pfam%3APF26791","AAPxQ domain"],["Pfam%3APF24922","Acyl-CoA-binding domain-containing protein 4-6, C-terminal"],["Pfam%3APF04864","Allinase"]],"b":[["terpenoids/10-oxodepressin.yaml","10-Oxodepressin"],["terpenoids/momilactone-b.yaml","momilactone B"],["terpenoids/oryzalides.yaml","oryzalides"],["terpenoids/phytocassane.yaml","phytocassane"]]},{"id":"UniProt:P04637","l":"","na":55,"nb":4,"a":[["ComplexPortal%3ACPX-12293","-"],["ComplexPortal%3ACPX-12528","-"],["ComplexPortal%3ACPX-13029","-"],["ComplexPortal%3ACPX-14009","-"],["ComplexPortal%3ACPX-16240","-"],["ComplexPortal%3ACPX-21406","-"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["polyketides/herboxidiene.yaml","herboxidiene"],["terpenoids/zeaxanthin.yaml","zeaxanthin"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":4,"nb":30,"a":[["Pfam%3APF11720","Peptidase inhibitor I78 family"],["Pfam%3APF12296","Hydrophobic surface binding protein A"],["TED%3AAF-A0A3M7JGA1-F1-model_v4_TED02","TED novel fold AF-A0A3M7JGA1-F1-model_v4_TED02"],["TED%3AAF-A0A7G5JNS3-F1-model_v4_TED03","TED novel fold AF-A0A7G5JNS3-F1-model_v4_TED03"]],"b":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["amino_acids_and_peptides/ditryptophenaline.yaml","(-)-ditryptophenaline"],["amino_acids_and_peptides/imizoquin-a.yaml","imizoquin A"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":30,"nb":4,"a":[["Pfam%3APF08787","Alginate lyase"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF08218","Citrate lyase ligase C-terminal domain"],["Pfam%3APF13727","CoA-binding domain"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["Pfam%3APF20714","DpiA-like helix-turn-helix domain"]],"b":[["alkaloids/tilivalline.yaml","tilivalline"],["amino_acids_and_peptides/colibactin.yaml","colibactin"],["amino_acids_and_peptides/klebsidin.yaml","klebsidin"],["carbohydrates/capsular-polysaccharide-2.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":23,"nb":4,"a":[["Pfam%3APF08878","HamA"],["Pfam%3APF05791","Bacillus haemolytic enterotoxin (HBL)"],["Pfam%3APF10803","Spore germination GerPB"],["Pfam%3APF10737","Spore germination protein GerPC"],["Pfam%3APF10970","Spore germination protein GerPE"],["Pfam%3APF07486","Cell Wall Hydrolase"]],"b":[["alkaloids/zwittermicin-a.yaml","zwittermicin A"],["amino_acids_and_peptides/livipeptin.yaml","Livipeptin"],["carbohydrates/tunicamycin.yaml","tunicamycin"],["unclassified/cereulide.yaml","cereulide"]]},{"id":"NCBITaxon:378806","l":"Stigmatella aurantiaca DW4/3-1","na":4,"nb":17,"a":[["TED%3AAF-Q098I8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q098I8-F1-model_v4_TED01"],["TED%3AAF-E3FRW3-F1-model_v4_TED01","TED novel fold AF-E3FRW3-F1-model_v4_TED01"],["TED%3AAF-E3G0M4-F1-model_v4_TED01","TED novel fold AF-E3G0M4-F1-model_v4_TED01"],["TED%3AAF-Q08VS7-F1-model_v4_TED01","TED novel fold AF-Q08VS7-F1-model_v4_TED01"]],"b":[["polyketides/aurafuron-a.yaml","aurafuron A"],["polyketides/dawenol.yaml","dawenol"],["unclassified/dkxanthene-504.yaml","dkxanthene 504"],["unclassified/dkxanthene-508.yaml","dkxanthene 508"],["unclassified/dkxanthene-518.yaml","dkxanthene 518"],["unclassified/dkxanthene-520.yaml","dkxanthene 520"]]},{"id":"NCBITaxon:5518","l":"Fusarium graminearum","na":4,"nb":14,"a":[["Pfam%3APF09118","Galactose oxidase-like, Early set domain"],["Pfam%3APF07250","Glyoxal oxidase N-terminus"],["TED%3AAF-A0A2H3FY84-F1-model_v4_TED03","TED novel fold AF-A0A2H3FY84-F1-model_v4_TED03"],["TED%3AAF-A0A2H3G191-F1-model_v4_TED01","TED novel fold AF-A0A2H3G191-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/fusaoctaxin-a.yaml","fusaoctaxin A"],["polyketides/aurofusarin.yaml","aurofusarin"],["polyketides/fusarielin-h.yaml","fusarielin H"],["polyketides/gibepyrone-a.yaml","gibepyrone A"],["polyketides/prolipyrone-b.yaml","prolipyrone B"],["polyketides/zearalenone.yaml","zearalenone"]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":4,"nb":13,"a":[["Pfam%3APF16861","Carbamoyltransferase C-terminus"],["Pfam%3APF02543","Carbamoyltransferase N-terminus"],["Pfam%3APF01960","ArgJ family"],["Pfam%3APF07467","Beta-lactamase inhibitor (BLIP)"]],"b":[["alkaloids/holomycin.yaml","holomycin"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/2-formyloxymethylclavam.yaml","2-formyloxymethylclavam"],["amino_acids_and_peptides/2-hydroxymethylclavam.yaml","2-hydroxymethylclavam"],["amino_acids_and_peptides/alanylclavam.yaml","alanylclavam"],["amino_acids_and_peptides/cephamycin-c.yaml","cephamycin C"]]},{"id":"NCBITaxon:1914","l":"Streptomyces lavendulae","na":4,"nb":12,"a":[["Pfam%3APF01678","Diaminopimelate epimerase"],["Pfam%3APF27100","D-cycloserine synthetase DcsG, N-terminal domain"],["Pfam%3APF20240","Domain of unknown function (DUF6597)"],["Pfam%3APF11731","Pathogenicity locus"]],"b":[["alkaloids/indigoidine.yaml","indigoidine"],["alkaloids/saframycin-a.yaml","saframycin A"],["alkaloids/saframycin-b.yaml","saframycin B"],["amino_acids_and_peptides/cycloserine.yaml","cycloserine"],["amino_acids_and_peptides/isocomplestatin.yaml","isocomplestatin"],["carbohydrates/showdomycin.yaml","showdomycin"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":4,"nb":10,"a":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"],["TED%3AAF-A0A085UKV7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085UKV7-F1-model_v4_TED01"],["TED%3AAF-A0A4R6IU28-F1-model_v4_TED02","TED novel fold AF-A0A4R6IU28-F1-model_v4_TED02"]],"b":[["alkaloids/labradorin-1.yaml","labradorin 1"],["alkaloids/labradorin-2.yaml","labradorin 2"],["alkaloids/secimide.yaml","secimide"],["amino_acids_and_peptides/phaseolotoxin.yaml","phaseolotoxin"],["amino_acids_and_peptides/syringolin-a.yaml","syringolin A"],["amino_acids_and_peptides/tabtoxin.yaml","tabtoxin"]]},{"id":"NCBITaxon:500485","l":"Penicillium rubens Wisconsin 54-1255","na":4,"nb":9,"a":[["Pfam%3APF03417","Acyl-coenzyme A:6-aminopenicillanic acid acyl-transferase"],["Pfam%3APF03659","Glycosyl hydrolase family 71"],["PROSITE%3APS00185","Isopenicillin N synthase signature 1"],["PROSITE%3APS00186","Isopenicillin N synthase signature 2"]],"b":[["alkaloids/dehydrohistidyltryptophanyldiketopiperazine.yaml","dehydrohistidyltryptophanyldiketopiperazine"],["alkaloids/glandicoline-a.yaml","glandicoline A"],["alkaloids/glandicoline-b.yaml","glandicoline B"],["alkaloids/meleagrine.yaml","meleagrine"],["polyketides/sorbicillin.yaml","sorbicillin"],["terpenoids/conidiogenone.yaml","conidiogenone"]]},{"id":"NCBITaxon:5076","l":"Penicillium chrysogenum","na":4,"nb":9,"a":[["Pfam%3APF03417","Acyl-coenzyme A:6-aminopenicillanic acid acyl-transferase"],["Pfam%3APF11402","Antifungal protein"],["PROSITE%3APS00185","Isopenicillin N synthase signature 1"],["PROSITE%3APS00186","Isopenicillin N synthase signature 2"]],"b":[["alkaloids/chrysogine.yaml","chrysogine"],["amino_acids_and_peptides/benzylpenicillin-sodium.yaml","benzylpenicillin sodium"],["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"],["amino_acids_and_peptides/n-5s-5-ammonio-5-carboxylatopentanoyl-l-cysteinyl-d-valinate.yaml","N-[(5S)-5-ammonio-5-carboxylatopentanoyl]-L-cysteinyl-D-valinate"],["polyketides/2-3-dihydrosorbicillin.yaml","2'3'-dihydrosorbicillin"],["polyketides/bisorbicillinol.yaml","bisorbicillinol"]]},{"id":"NCBITaxon:1836","l":"Saccharopolyspora erythraea","na":4,"nb":8,"a":[["Pfam%3APF08990","Erythronolide synthase docking domain"],["Pfam%3APF09277","Erythronolide synthase, docking"],["Pfam%3APF12728","Helix-turn-helix domain"],["Pfam%3APF12307","Protein of unknown function (DUF3631)"]],"b":[["amino_acids_and_peptides/erythrochelin.yaml","erythrochelin"],["polyketides/3-3-diflaviolin.yaml","3,3'-diflaviolin"],["polyketides/erythromycin-a.yaml","erythromycin A"],["polyketides/erythromycin-b.yaml","erythromycin B"],["polyketides/flaviolin-rhamnoside.yaml","flaviolin rhamnoside"],["polyketides/flaviolin.yaml","flaviolin"]]},{"id":"NCBITaxon:227882","l":"Streptomyces avermitilis (strain ATCC 31267 / DSM 46492 / JCM 5070 / NBRC 14893 / NCIMB 12804 / NRRL 8165 / MA-4680)","na":8,"nb":4,"a":[["Pfam%3APF17390","Bacterial alpha-L-rhamnosidase C-terminal domain"],["Pfam%3APF08531","Alpha-L-rhamnosidase N-terminal domain"],["Pfam%3APF05592","Bacterial alpha-L-rhamnosidase concanavalin-like domain"],["Pfam%3APF26366","Domain of unknown function (DUF8094)"],["Pfam%3APF25788","Rha78A-like, N-terminal immunoglobulin domain"],["Pfam%3APF06781","Cell division protein CrgA"]],"b":[["amino_acids_and_peptides/edha.yaml","EDHA"],["polyketides/filipin-iii.yaml","filipin III"],["terpenoids/avermitilol.yaml","avermitilol"],["terpenoids/pentalenolactone.yaml","pentalenolactone"]]},{"id":"NCBITaxon:326423","l":"Bacillus velezensis FZB42","na":4,"nb":8,"a":[["Pfam%3APF21607","[Acyl-carrier-protein] S-malonyltransferase, inserted helical domain"],["Pfam%3APF21996","Histidyl-tRNA synthetase HisZ, C-terminal domain"],["Pfam%3APF07293","Protein of unknown function (DUF1450)"],["Pfam%3APF12227","Protein of unknown function (DUF3603)"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["polyketides/bacillaene.yaml","bacillaene"],["polyketides/difficidin.yaml","difficidin"],["polyketides/macrolactin-h.yaml","macrolactin H"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:1397","l":"Niallia circulans","na":6,"nb":4,"a":[["Pfam%3APF03423","Carbohydrate binding domain (family 25)"],["Pfam%3APF13199","Glycosyl hydrolase family 66"],["Pfam%3APF14399","Butirosin biosynthesis protein H, N-terminal"],["Pfam%3APF19634","Family of unknown function (DUF6137)"],["PROSITE%3APS60000","Chitosanases families 46 and 80 active sites signature"],["TED%3AAF-A0A0J1IR10-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0J1IR10-F1-model_v4_TED01"]],"b":[["carbohydrates/butirosin-a.yaml","butirosin A"],["carbohydrates/butirosin-b.yaml","butirosin B"],["carbohydrates/butirosin.yaml","butirosin"],["unclassified/pelgipeptin-b.yaml","Pelgipeptin B"]]},{"id":"NCBITaxon:32049","l":"Picosynechococcus sp. PCC 7002","na":6,"nb":4,"a":[["Pfam%3APF09367","CpeS-like protein"],["Pfam%3APF06206","CpeT/CpcT family (DUF1001)"],["Pfam%3APF12965","Domain of unknown function (DUF3854)"],["Pfam%3APF19928","Domain of unknown function (DUF6391)"],["Pfam%3APF09366","Protein of unknown function (DUF1997)"],["Pfam%3APF14870","Photosynthesis system II assembly factor YCF48"]],"b":[["alkaloids/synechobactin-a.yaml","synechobactin A"],["alkaloids/synechobactin-b.yaml","synechobactin B"],["alkaloids/synechobactin-c.yaml","synechobactin C"],["fatty_acids/nonadec-1-ene.yaml","nonadec-1-ene"]]},{"id":"NCBITaxon:1393","l":"Brevibacillus brevis","na":5,"nb":4,"a":[["Pfam%3APF03306","Alpha-acetolactate decarboxylase"],["Pfam%3APF05384","Sensor protein DegS"],["TED%3AAF-A0A2Z4MK38-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z4MK38-F1-model_v4_TED01"],["TED%3AAF-A0A2Z4MPQ6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2Z4MPQ6-F1-model_v4_TED02"],["TED%3AAF-A0A517IGN3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A517IGN3-F1-model_v4_TED03"]],"b":[["alkaloids/ulbactin-f.yaml","ulbactin F"],["alkaloids/ulbactin-g.yaml","ulbactin G"],["amino_acids_and_peptides/gramicidin.yaml","gramicidin"],["amino_acids_and_peptides/tyrocidine-a.yaml","tyrocidine A"]]},{"id":"NCBITaxon:31958","l":"Amycolatopsis orientalis","na":5,"nb":4,"a":[["Pfam%3APF16990","Carbohydrate binding module (family 35)"],["Pfam%3APF14696","Hydroxyphenylpyruvate dioxygenase, HPPD, N-terminal"],["Pfam%3APF03559","NDP-hexose 2,3-dehydratase"],["Pfam%3APF18368","Exo-beta-D-glucosaminidase Ig-fold domain"],["TED%3AAF-K4FDK5-F1-model_v4_TED01","TED highly-symmetric fold AF-K4FDK5-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/chloroeremomycin.yaml","chloroeremomycin"],["amino_acids_and_peptides/vancomycin.yaml","vancomycin"],["polyketides/eco-0501.yaml","ECO-0501"],["polyketides/quartromicin-a1.yaml","quartromicin A1"]]},{"id":"NCBITaxon:43","l":"Cystobacter fuscus","na":4,"nb":5,"a":[["TED%3AAF-A0A250J1A4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J1A4-F1-model_v4_TED01"],["TED%3AAF-A0A250J4G5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J4G5-F1-model_v4_TED01"],["TED%3AAF-A0A250J8W0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J8W0-F1-model_v4_TED01"],["TED%3AAF-A0A250J3K5-F1-model_v4_TED03","TED novel fold AF-A0A250J3K5-F1-model_v4_TED03"]],"b":[["amino_acids_and_peptides/cystomanamide-a.yaml","cystomanamide A"],["amino_acids_and_peptides/cystomanamide-b.yaml","cystomanamide B"],["amino_acids_and_peptides/cystomanamide-c.yaml","cystomanamide C"],["amino_acids_and_peptides/cystomanamide-d.yaml","cystomanamide D"],["unclassified/cystothiazole-a.yaml","cystothiazole A"]]},{"id":"NCBITaxon:48","l":"Archangium gephyra","na":4,"nb":4,"a":[["TED%3AAF-A0A0G2ZQX3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G2ZQX3-F1-model_v4_TED01"],["TED%3AAF-A0A0G3A8M9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G3A8M9-F1-model_v4_TED01"],["TED%3AAF-A0A2W5T6H4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2W5T6H4-F1-model_v4_TED03"],["TED%3AAF-A0A0G2ZR59-F1-model_v4_TED01","TED novel fold AF-A0A0G2ZR59-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/tubulysin-f.yaml","tubulysin F"],["amino_acids_and_peptides/tubulysin-g.yaml","tubulysin G"],["amino_acids_and_peptides/tubulysin-i.yaml","tubulysin I"],["polyketides/aurafuron-a.yaml","aurafuron A"]]},{"id":"UniProt:P00784","l":"","na":4,"nb":4,"a":[["EC%3A3.4.22.2","papain"],["MCSA%3A174","papain"],["proteintraitsmech%3ABIOLIP_ALD","ALD-binding site"],["proteintraitsmech%3AMETALPDB_RU_DINUCLEAR","dinuclear ruthenium site"]],"b":[["alkaloids/ergotamine.yaml","ergotamine"],["amino_acids_and_peptides/leupeptin-a.yaml","leupeptin A"],["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"],["terpenoids/carotene.yaml","β-carotene"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":17470,"nb":3,"a":[["EC%3A1.1.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.16.-.-","Oxidizing metal ions"],["EC%3A1.18.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.7.-","With an iron-sulfur protein as acceptor"]],"b":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"],["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"],["unclassified/telomestatin.yaml","telomestatin"]]},{"id":"NCBITaxon:9913","l":"Bos taurus","na":435,"nb":3,"a":[["IDPO%3A0000018","disorder to molten globule"],["IDPO%3A0000011","disorder to order"],["IDPO%3A0000019","disorder to pre-molten globule"],["IDPO%3A0000030","entropic chain"],["IDPO%3A0000003","molten globule"],["IDPO%3A0000014","order to disorder"]],"b":[["alkaloids/methylarcyriarubin.yaml","methylarcyriarubin"],["alkaloids/staurosporine-2.yaml","staurosporine"],["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"NCBITaxon:33178","l":"Aspergillus terreus","na":3,"nb":22,"a":[["Pfam%3APF28386","BfoA family C-terminal domain"],["Pfam%3APF28387","BfoA N-terminal domain"],["Pfam%3APF12351","Ca2+ regulator and membrane fusion protein Fig1"]],"b":[["alkaloids/asterriquinone-ct5.yaml","asterriquinone CT5"],["alkaloids/cytochalasin-e.yaml","cytochalasin E"],["alkaloids/dihydroisoflavipucine.yaml","dihydroisoflavipucine"],["alkaloids/terrequinone-a.yaml","terrequinone A"],["amino_acids_and_peptides/valactamide-a.yaml","valactamide A"],["polyketides/citreoviridin.yaml","citreoviridin"]]},{"id":"NCBITaxon:332648","l":"Botrytis cinerea B05.10","na":3,"nb":21,"a":[["Pfam%3APF01670","Glycosyl hydrolase family 12"],["PROSITE%3APS00776","Glycosyl hydrolases family 11 (GH11) active site signature 1"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"]],"b":[["terpenoids/1-epibotrydial.yaml","1-epibotrydial"],["terpenoids/10-dehydroxy-dihydrobotrydialone.yaml","10-dehydroxy dihydrobotrydialone"],["terpenoids/10-epi-dihydrobotrydial.yaml","10-epi-dihydrobotrydial"],["terpenoids/10-oxo-dihydrobotrydial.yaml","10-Oxo-dihydrobotrydial"],["terpenoids/10-oxodehydrodihydrobotrydial.yaml","10-Oxodehydrodihydrobotrydial"],["terpenoids/10-oxodihydrobotry-1-9-4-5-diendial.yaml","10-Oxodihydrobotry-1(9),4(5)-diendial"]]},{"id":"NCBITaxon:54571","l":"Streptomyces venezuelae","na":3,"nb":21,"a":[["Pfam%3APF08990","Erythronolide synthase docking domain"],["TED%3AAF-A0A5P2CQV7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5P2CQV7-F1-model_v4_TED02"],["TED%3AAF-A0A5P2C5X4-F1-model_v4_TED01","TED novel fold AF-A0A5P2C5X4-F1-model_v4_TED01"]],"b":[["alkaloids/anthelvencin-a.yaml","anthelvencin A"],["alkaloids/anthelvencin-b.yaml","anthelvencin B"],["alkaloids/anthelvencin-c.yaml","anthelvencin C"],["alkaloids/chloramphenicol.yaml","chloramphenicol"],["alkaloids/corynecin-ii.yaml","corynecin II"],["alkaloids/gaburedin-d.yaml","gaburedin D"]]},{"id":"UniProt:P22303","l":"","na":21,"nb":3,"a":[["ComplexPortal%3ACPX-10631","-"],["ComplexPortal%3ACPX-11637","-"],["ComplexPortal%3ACPX-12676","-"],["ComplexPortal%3ACPX-14124","-"],["ComplexPortal%3ACPX-18577","-"],["ComplexPortal%3ACPX-24024","-"]],"b":[["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/physostigmine.yaml","physostigmine"],["unclassified/aflatoxin-b1.yaml","aflatoxin B1"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":3,"nb":20,"a":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF22041","Glutathione S-transferase, C-terminal domain"],["Pfam%3APF08493","Aflatoxin regulatory protein"]],"b":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/c-3-sulfonylated-derivative.yaml","C-3 sulfonylated derivative"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["alkaloids/n-n-dioxide-containing-derivate.yaml","N,N-dioxide containing derivate"]]},{"id":"NCBITaxon:3847","l":"Glycine max","na":16,"nb":3,"a":[["Pfam%3APF02095","Extensin-like protein"],["Pfam%3APF00477","Small hydrophilic plant seed protein"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF08027","Albumin I chain b"],["Pfam%3APF10539","Development and cell death domain"],["Pfam%3APF03386","Early nodulin 93 ENOD93 protein"]],"b":[["alkaloids/biotin.yaml","biotin"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":3,"nb":13,"a":[["Pfam%3APF14864","Alkyl sulfatase C-terminal"],["Pfam%3APF13816","Haem-containing dehydratase"],["Pfam%3APF14863","Alkyl sulfatase dimerisation"]],"b":[["unclassified/bananamide-d.yaml","bananamide D"],["unclassified/bananamide-e.yaml","bananamide E"],["unclassified/bananamide-f.yaml","bananamide F"],["unclassified/bananamide-g.yaml","bananamide G"],["unclassified/lokisin.yaml","lokisin"],["unclassified/pseudodesmin-a.yaml","pseudodesmin A"]]},{"id":"NCBITaxon:54","l":"Nannocystis exedens","na":13,"nb":3,"a":[["TED%3AAF-A0A1I2A5Z6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2A5Z6-F1-model_v4_TED01"],["TED%3AAF-A0A1I2FM38-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I2FM38-F1-model_v4_TED02"],["TED%3AAF-A0A1I2H0F9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2H0F9-F1-model_v4_TED01"],["TED%3AAF-A0A831ZMD9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A831ZMD9-F1-model_v4_TED01"],["TED%3AAF-A0A1I1T6U3-F1-model_v4_TED01","TED novel fold AF-A0A1I1T6U3-F1-model_v4_TED01"],["TED%3AAF-A0A1I1XLT5-F1-model_v4_TED02","TED novel fold AF-A0A1I1XLT5-F1-model_v4_TED02"]],"b":[["polyketides/phenylnannolone-a.yaml","phenylnannolone A"],["polyketides/phenylnannolone-b.yaml","phenylnannolone B"],["polyketides/phenylnannolone-c.yaml","phenylnannolone C"]]},{"id":"NCBITaxon:451804","l":"Aspergillus fumigatus (strain CBS 144.89 / FGSC A1163 / CEA10)","na":11,"nb":3,"a":[["Pfam%3APF28347","ACE1 small beta sheet domain"],["Pfam%3APF28329","Zinc finger transcription factor ace1 N-terminal domain"],["Pfam%3APF11001","YDR124W-like, helical bundle domain"],["Pfam%3APF28457","Probable beta-glucosidase btgE N-terminal domain"],["Pfam%3APF13373","DSC E3 ubiquitin ligase complex subunit 3, C-terminal domain"],["Pfam%3APF10302","DSC E3 ubiquitin ligase complex subunit 3, ubiquitin-like domain"]],"b":[["terpenoids/21-h-hopane-3beta-22-diol.yaml","21-β-H-hopane-3beta, 22-diol"],["terpenoids/compound-3-3.yaml","compound 3"],["terpenoids/fumihopaside-a.yaml","fumihopaside A"]]},{"id":"NCBITaxon:5053","l":"Aspergillus aculeatus","na":3,"nb":11,"a":[["Pfam%3APF14683","Polysaccharide lyase family 4, domain III"],["Pfam%3APF14686","Polysaccharide lyase family 4, domain II"],["Pfam%3APF01670","Glycosyl hydrolase family 12"]],"b":[["alkaloids/acurin-a.yaml","acurin A"],["polyketides/secalonic-acid-a.yaml","Secalonic acid A"],["terpenoids/aculene-a.yaml","aculene A"],["terpenoids/aculene-b.yaml","aculene B"],["terpenoids/aculene-c.yaml","aculene C"],["terpenoids/aculene-d.yaml","aculene D"]]},{"id":"UniProt:Q8WZA2","l":"","na":3,"nb":10,"a":[["ComplexPortal%3ACPX-12363","-"],["CDD%3Acd04437","DEP_Epac"],["CATH%3A1.10.8.1240","CATH homologous superfamily 1.10.8.1240"]],"b":[["alkaloids/8-azaguanine.yaml","8-azaguanine"],["alkaloids/psilocybin.yaml","psilocybin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/actinonin.yaml","actinonin"],["amino_acids_and_peptides/thiostrepton.yaml","thiostrepton"],["carbohydrates/tobramycin.yaml","tobramycin"]]},{"id":"UniProt:Q9BV86","l":"","na":10,"nb":3,"a":[["ComplexPortal%3ACPX-14881","-"],["ComplexPortal%3ACPX-15959","-"],["ComplexPortal%3ACPX-20462","-"],["ComplexPortal%3ACPX-23498","-"],["GO%3A0071885","N-terminal protein N-methyltransferase activity"],["GO%3A0018013","N-terminal peptidyl-glycine methylation"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["polyketides/chlortetracycline.yaml","chlortetracycline"],["polyketides/kojic-acid.yaml","kojic acid"]]},{"id":"NCBITaxon:1971","l":"Streptomyces noursei","na":3,"nb":8,"a":[["Pfam%3APF16715","Cyclodipeptide synthase"],["Pfam%3APF19585","Family of unknown function (DUF6092)"],["TED%3AAF-A0A2N8PAT0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N8PAT0-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/curacomycin.yaml","curacomycin"],["amino_acids_and_peptides/dechlorocuracomycin.yaml","dechlorocuracomycin"],["amino_acids_and_peptides/deimino-antipain.yaml","deimino-antipain"],["carbohydrates/streptothricin-f.yaml","streptothricin F"],["polyketides/nystatin-a1.yaml","nystatin A1"],["polyketides/nystatin.yaml","nystatin"]]},{"id":"NCBITaxon:4081","l":"Solanum lycopersicum","na":8,"nb":3,"a":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF02977","Carboxypeptidase A inhibitor"],["Pfam%3APF26410","GH family 5 beta-mannosidase-like"],["Pfam%3APF02496","ABA/WDS induced protein"],["Pfam%3APF17302","Family of unknown function (DUF5351)"],["PROSITE%3APS00502","Polygalacturonase active site"]],"b":[["fatty_acids/falcarindiol.yaml","falcarindiol"],["terpenoids/lycosantalonol.yaml","lycosantalonol"],["terpenoids/phellandrene.yaml","β-phellandrene"]]},{"id":"NCBITaxon:331117","l":"Aspergillus fischeri NRRL 181","na":3,"nb":7,"a":[["Pfam%3APF23681","ATP-dependent rRNA helicase SPB4-like, C-terminal tail"],["Pfam%3APF16803","Fe-S cluster assembly protein DRE2 N-terminus"],["Pfam%3APF02012","BNR/Asp-box repeat"]],"b":[["terpenoids/compound-5.yaml","compound 5"],["terpenoids/compound-6-2.yaml","compound 6"],["terpenoids/compound-7a.yaml","compound 7a"],["terpenoids/compound-8-2.yaml","compound 8"],["terpenoids/sesterfisheric-acid.yaml","sesterfisheric acid"],["terpenoids/sesterfisherol.yaml","sesterfisherol"]]},{"id":"NCBITaxon:1028729","l":"Fusarium pseudograminearum CS3096","na":3,"nb":6,"a":[["Pfam%3APF26087","Domain of unknown function (DUF8032)"],["Pfam%3APF05704","Capsular polysaccharide synthesis protein"],["TED%3AAF-K3V788-F1-model_v4_TED02","TED novel fold AF-K3V788-F1-model_v4_TED02"]],"b":[["alkaloids/8-oxo-fusatin.yaml","8-oxo-fusatin"],["alkaloids/8-oxo-isopentenyladenine.yaml","8-oxo-isopentenyladenine"],["alkaloids/fusatin.yaml","fusatin"],["alkaloids/fusatinic-acid.yaml","fusatinic acid"],["unclassified/w493-a.yaml","W493 A"],["unclassified/w493-b.yaml","W493 B"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":6,"nb":3,"a":[["Pfam%3APF14525","AraC-binding-like domain"],["Pfam%3APF06139","BphX-like"],["Pfam%3APF13340","Putative transposase of IS4/5 family (DUF4096)"],["Pfam%3APF11794","4-hydroxyphenylacetate 3-hydroxylase N terminal"],["Pfam%3APF03241","4-hydroxyphenylacetate 3-hydroxylase C terminal"],["TED%3AAF-A0A4S3H3T1-F1-model_v4_TED02","TED novel fold AF-A0A4S3H3T1-F1-model_v4_TED02"]],"b":[["alkaloids/cepaciachelin.yaml","cepaciachelin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["terpenoids/hopene.yaml","hopene"]]},{"id":"NCBITaxon:1833","l":"Rhodococcus erythropolis","na":5,"nb":3,"a":[["Pfam%3APF08028","Acyl-CoA dehydrogenase, C-terminal domain"],["Pfam%3APF13816","Haem-containing dehydratase"],["Pfam%3APF07858","Limonene-1,2-epoxide hydrolase catalytic domain"],["Pfam%3APF09663","Amidohydrolase ring-opening protein (Amido_AtzD_TrzD)"],["TED%3AAF-A0A401N7F7-F1-model_v4_TED02","TED novel fold AF-A0A401N7F7-F1-model_v4_TED02"]],"b":[["alkaloids/aurachin-re.yaml","aurachin RE"],["amino_acids_and_peptides/heterobactin-a.yaml","heterobactin A"],["amino_acids_and_peptides/heterobactin-s2.yaml","heterobactin S2"]]},{"id":"NCBITaxon:2021","l":"Thermobifida fusca","na":5,"nb":3,"a":[["Pfam%3APF00553","Cellulose binding domain"],["Pfam%3APF01341","Glycosyl hydrolases family 6"],["PROSITE%3APS00561","CBM2a (carbohydrate-binding type-2) domain signature"],["PROSITE%3APS00655","Glycosyl hydrolases family 6 signature 1"],["PROSITE%3APS00656","Glycosyl hydrolases family 6 signature 2"]],"b":[["amino_acids_and_peptides/fuscachelin-a.yaml","Fuscachelin A"],["amino_acids_and_peptides/fuscachelin-b.yaml","Fuscachelin B"],["amino_acids_and_peptides/fuscachelin-c.yaml","Fuscachelin C"]]},{"id":"NCBITaxon:3885","l":"Phaseolus vulgaris","na":3,"nb":5,"a":[["Pfam%3APF14829","Glycerol-3-phosphate acyltransferase N-terminal"],["PROSITE%3APS00281","Bowman-Birk serine protease inhibitors family signature"],["PROSITE%3APS00308","Legume lectins alpha-chain signature"]],"b":[["alkaloids/biotin.yaml","biotin"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/ectoine.yaml","ectoine"],["fatty_acids/itaconic-acid.yaml","itaconic acid"],["unclassified/orcinol.yaml","orcinol"]]},{"id":"NCBITaxon:556","l":"Dickeya chrysanthemi","na":5,"nb":3,"a":[["Pfam%3APF18390","Glycogen debranching enzyme C-terminal domain"],["Pfam%3APF25994","AprE, long alpha-helical hairpin"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF03812","2-keto-3-deoxygluconate permease"],["Pfam%3APF09589","HrpA pilus formation protein"]],"b":[["amino_acids_and_peptides/chrysobactin.yaml","chrysobactin"],["amino_acids_and_peptides/dichrysobactin.yaml","dichrysobactin"],["unclassified/cyclic-trichrysobactin.yaml","cyclic trichrysobactin"]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":3,"nb":5,"a":[["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"],["PROSITE%3APS00896","LacY family proton/sugar symporters signature 1"],["PROSITE%3APS00897","LacY family proton/sugar symporters signature 2"]],"b":[["alkaloids/9-deoxy-tilivalline.yaml","9-deoxy tilivalline"],["alkaloids/dehydro-tilivalline.yaml","dehydro tilivalline"],["alkaloids/dihydroxy-dehydro-tilivalline.yaml","dihydroxy-dehydro tilivalline"],["alkaloids/dihydroxy-tilivalline.yaml","dihydroxy tilivalline"],["alkaloids/tilivalline.yaml","tilivalline"]]},{"id":"NCBITaxon:269800","l":"","na":4,"nb":3,"a":[["Pfam%3APF20628","Dyp-type peroxidase, C-terminal"],["Pfam%3APF04261","Dyp-type peroxidase, N-terminal"],["Pfam%3APF18374","Enolase N-terminal domain-like"],["PROSITE%3APS00909","Mandelate racemase / muconate lactonizing enzyme family signature 2"]],"b":[["amino_acids_and_peptides/fuscachelin-a.yaml","Fuscachelin A"],["amino_acids_and_peptides/fuscachelin-b.yaml","Fuscachelin B"],["amino_acids_and_peptides/fuscachelin-c.yaml","Fuscachelin C"]]},{"id":"NCBITaxon:306901","l":"","na":4,"nb":3,"a":[["Pfam%3APF07960","CBP4"],["TED%3AAF-Q2GNU1-F1-model_v4_TED01","TED highly-symmetric fold AF-Q2GNU1-F1-model_v4_TED01"],["TED%3AAF-Q2GZS7-F1-model_v4_TED01","TED novel fold AF-Q2GZS7-F1-model_v4_TED01"],["TED%3AAF-Q2H4N9-F1-model_v4_TED02","TED novel fold AF-Q2H4N9-F1-model_v4_TED02"]],"b":[["polyketides/11-epichaetomugilin-a.yaml","11-epichaetomugilin A"],["polyketides/chaetoviridin-e.yaml","chaetoviridin E"],["polyketides/shanorellin.yaml","shanorellin"]]},{"id":"NCBITaxon:33","l":"Myxococcus fulvus","na":4,"nb":3,"a":[["TED%3AAF-A0A511SVC1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A511SVC1-F1-model_v4_TED01"],["TED%3AAF-A0A511SU64-F1-model_v4_TED01","TED novel fold AF-A0A511SU64-F1-model_v4_TED01"],["TED%3AAF-A0A511T2U3-F1-model_v4_TED02","TED novel fold AF-A0A511T2U3-F1-model_v4_TED02"],["TED%3AAF-A0A511T9F8-F1-model_v4_TED05","TED novel fold AF-A0A511T9F8-F1-model_v4_TED05"]],"b":[["unclassified/fulvuthiacene-a.yaml","Fulvuthiacene A"],["unclassified/fulvuthiacene-b.yaml","Fulvuthiacene B"],["unclassified/myxothiazol.yaml","myxothiazol"]]},{"id":"NCBITaxon:34305","l":"Lotus japonicus","na":4,"nb":3,"a":[["Pfam%3APF06241","Castor and Pollux, part of voltage-gated ion channel"],["Pfam%3APF23654","E3 ubiquitin-protein ligase LIN-like, ARM repeat"],["Pfam%3APF23628","Putative E3 ubiquitin-protein ligase LIN, ARM-like domain"],["Pfam%3APF23568","E3 ubiquitin-protein ligase LIN-like, ARM repeat"]],"b":[["amino_acids_and_peptides/linamarin.yaml","linamarin"],["amino_acids_and_peptides/lotaustralin.yaml","lotaustralin"],["terpenoids/lupeol.yaml","lupeol"]]},{"id":"NCBITaxon:392500","l":"","na":3,"nb":4,"a":[["Pfam%3APF23763","GLAA-B beta-barrel domain I"],["TED%3AAF-B1KH33-F1-model_v4_TED01","TED novel fold AF-B1KH33-F1-model_v4_TED01"],["TED%3AAF-B1KQT1-F1-model_v4_TED01","TED novel fold AF-B1KQT1-F1-model_v4_TED01"]],"b":[["fatty_acids/woodybactin-d.yaml","woodybactin D"],["unclassified/woodybactin-a.yaml","woodybactin A"],["unclassified/woodybactin-b.yaml","woodybactin B"],["unclassified/woodybactin-c.yaml","woodybactin C"]]},{"id":"NCBITaxon:5544","l":"Trichoderma harzianum","na":4,"nb":3,"a":[["Pfam%3APF00840","Glycosyl hydrolase family 7"],["Pfam%3APF12708","Rhamnogalacturonase A/epimerase, pectate lyase-like"],["TED%3AAF-A0A0F9XDU3-F1-model_v4_TED01","TED novel fold AF-A0A0F9XDU3-F1-model_v4_TED01"],["TED%3AAF-A0A0G0ASL4-F1-model_v4_TED01","TED novel fold AF-A0A0G0ASL4-F1-model_v4_TED01"]],"b":[["polyketides/1-2-dehydropenicillide.yaml","1,2-dehydropenicillide"],["polyketides/harziphilone.yaml","harziphilone"],["unclassified/harzianopyridone.yaml","harzianopyridone"]]},{"id":"NCBITaxon:655844","l":"","na":3,"nb":4,"a":[["Pfam%3APF07110","EthD domain"],["Pfam%3APF09421","Frequency clock protein"],["TED%3AAF-A0A0B2XHY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0B2XHY6-F1-model_v4_TED01"]],"b":[["alkaloids/swainsonine.yaml","swainsonine"],["unclassified/destruxin-a.yaml","destruxin A"],["unclassified/subglutinol-a.yaml","subglutinol A"],["unclassified/subglutinol-b.yaml","subglutinol B"]]},{"id":"NCBITaxon:1003195","l":"","na":3,"nb":3,"a":[["Pfam%3APF23169","Halogenase D"],["Pfam%3APF02655","ATP-grasp domain"],["Pfam%3APF14518","Iron-containing redox enzyme"]],"b":[["amino_acids_and_peptides/cattlecin.yaml","cattlecin"],["amino_acids_and_peptides/ethynylserine.yaml","β-ethynylserine"],["terpenoids/cattleyene.yaml","cattleyene"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":3,"nb":3,"a":[["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF08130","Type A lantibiotic family"],["Pfam%3APF04738","Lantibiotic dehydratase, N terminus"]],"b":[["amino_acids_and_peptides/epidermin.yaml","epidermin"],["amino_acids_and_peptides/epilancin-15x.yaml","epilancin 15x"],["amino_acids_and_peptides/pep5.yaml","pep5"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":3,"nb":3,"a":[["Pfam%3APF03423","Carbohydrate binding domain (family 25)"],["Pfam%3APF03422","Carbohydrate binding module (family 6)"],["TED%3AAF-A0A7X5SGP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X5SGP7-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/polymyxin-b.yaml","polymyxin B"],["amino_acids_and_peptides/polymyxin.yaml","polymyxin"],["unclassified/fusaricidin-b.yaml","fusaricidin B"]]},{"id":"NCBITaxon:1961","l":"Streptomyces virginiae","na":3,"nb":3,"a":[["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF19328","2,4-diaminopentanoate dehydrogenase C-terminal domain"],["PROSITE%3APS01014","Transcription termination factor nusG signature"]],"b":[["alkaloids/endophenazine-a.yaml","endophenazine A"],["polyketides/monensin.yaml","monensin"],["unclassified/virginiamycin-s1.yaml","virginiamycin S1"]]},{"id":"NCBITaxon:384676","l":"","na":3,"nb":3,"a":[["Pfam%3APF18063","Beta barrel Pore-forming domain"],["Pfam%3APF08548","Peptidase M10 serralysin C terminal"],["TED%3AAF-Q1I2P2-F1-model_v4_TED01","TED novel fold AF-Q1I2P2-F1-model_v4_TED01"]],"b":[["alkaloids/labradorin-1.yaml","labradorin 1"],["alkaloids/labradorin-2.yaml","labradorin 2"],["alkaloids/pimprinine.yaml","pimprinine"]]},{"id":"NCBITaxon:448385","l":"","na":3,"nb":3,"a":[["TED%3AAF-A9FYP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A9FYP8-F1-model_v4_TED01"],["TED%3AAF-A9G932-F1-model_v4_TED01","TED highly-symmetric fold AF-A9G932-F1-model_v4_TED01"],["TED%3AAF-A9F9E5-F1-model_v4_TED01","TED novel fold AF-A9F9E5-F1-model_v4_TED01"]],"b":[["polyketides/etnangien.yaml","etnangien"],["polyketides/soraphen-a.yaml","soraphen A"],["terpenoids/eremophilene.yaml","(+)-eremophilene"]]},{"id":"NCBITaxon:45133","l":"Lasiodiplodia theobromae","na":3,"nb":3,"a":[["TED%3AAF-A0A5N5DCC3-F1-model_v4_TED01","TED novel fold AF-A0A5N5DCC3-F1-model_v4_TED01"],["TED%3AAF-A0A5N5DDT9-F1-model_v4_TED01","TED novel fold AF-A0A5N5DDT9-F1-model_v4_TED01"],["TED%3AAF-A0A5N5DLG2-F1-model_v4_TED02","TED novel fold AF-A0A5N5DLG2-F1-model_v4_TED02"]],"b":[["polyketides/lasiodiplodin.yaml","lasiodiplodin"],["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"],["shikimates_and_phenylpropanoids/mellein.yaml","(-)-Mellein"]]},{"id":"NCBITaxon:454130","l":"Aspergillus calidoustus","na":3,"nb":3,"a":[["Pfam%3APF28380","Sesquiterpene cyclase astC-like C-terminal domain"],["TED%3AAF-A0A0U5FXA2-F1-model_v4_TED01","TED novel fold AF-A0A0U5FXA2-F1-model_v4_TED01"],["TED%3AAF-A0A0U5GJ59-F1-model_v4_TED01","TED novel fold AF-A0A0U5GJ59-F1-model_v4_TED01"]],"b":[["terpenoids/calidoustene-a.yaml","calidoustene A"],["terpenoids/calidoustene-b.yaml","calidoustene B"],["terpenoids/calidoustene-c.yaml","calidoustene C"]]},{"id":"UniProt:P59594","l":"","na":3,"nb":3,"a":[["ComplexPortal%3ACPX-7088","SARS-CoV uncleaved Spike protein complex"],["proteintraitsmech%3AMEROPS_CLEAVAGE_S01_247","epitheliasin cleavage specificity"],["IDPO%3A0000048","limited proteolysis display site"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/linaclotide.yaml","linaclotide"],["carbohydrates/kanamycin-a.yaml","kanamycin A"]]},{"id":"NCBITaxon:559292","l":"Saccharomyces cerevisiae (strain ATCC 204508 / S288c)","na":14483,"nb":2,"a":[["EC%3A1.14.18.-","With another compound as one donor, and incorporation of one atom of oxygen"],["EC%3A1.16.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.18.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.5.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.8.-.-","Acting on a sulfur group of donors"]],"b":[["polyketides/kojic-acid.yaml","kojic acid"],["polyketides/radicicol.yaml","radicicol"]]},{"id":"NCBITaxon:224308","l":"Bacillus subtilis (strain 168)","na":11310,"nb":2,"a":[["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.10.3.-","With oxygen as acceptor"],["EC%3A1.13.12.-","With incorporation of one atom of oxygen (internal monooxygenases or internal mixed function oxidases)"],["EC%3A1.14.19.-","With oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water"],["EC%3A1.17.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.21.98.-","With other, known acceptors"]],"b":[["unclassified/corynebactin.yaml","corynebactin"],["unclassified/pulcherriminic-acid.yaml","pulcherriminic acid"]]},{"id":"UniProt:P37840","l":"","na":102,"nb":2,"a":[["ComplexPortal%3ACPX-22614","-"],["ComplexPortal%3ACPX-25548","-"],["GO%3A0030424","axon"],["GO%3A0043679","axon terminus"],["GO%3A0005938","cell cortex"],["GO%3A0030426","growth cone"]],"b":[["amino_acids_and_peptides/actinonin.yaml","actinonin"],["polyketides/sirolimus.yaml","sirolimus"]]},{"id":"NCBITaxon:93061","l":"Staphylococcus aureus (strain NCTC 8325 / PS 47)","na":47,"nb":2,"a":[["IDPO%3A0000033","flexible linker"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF07694","5TMR of 5TMR-LYT"],["Pfam%3APF01757","Acyltransferase domain"],["Pfam%3APF18719","ArlS sensor domain"],["Pfam%3APF02216","B domain"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["unclassified/staphyloferrin-a.yaml","staphyloferrin A"]]},{"id":"UniProt:P00519","l":"","na":42,"nb":2,"a":[["EC%3A2.7.10.2","non-specific protein-tyrosine kinase"],["ComplexPortal%3ACPX-20158","-"],["ComplexPortal%3ACPX-24443","-"],["ComplexPortal%3ACPX-24492","-"],["ComplexPortal%3ACPX-25676","-"],["GO%3A0000405","bubble DNA binding"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"],["polyketides/emodin.yaml","emodin"]]},{"id":"UniProt:P24941","l":"","na":34,"nb":2,"a":[["ComplexPortal%3ACPX-10673","-"],["ComplexPortal%3ACPX-11851","-"],["ComplexPortal%3ACPX-13027","-"],["ComplexPortal%3ACPX-15343","-"],["ComplexPortal%3ACPX-19796","-"],["ComplexPortal%3ACPX-21602","-"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"],["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:1912","l":"Streptomyces hygroscopicus","na":2,"nb":29,"a":[["Pfam%3APF21168","Chorismatase FkbO/Hyg5-like, N-terminal"],["TED%3AAF-A0A1S6RUT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S6RUT8-F1-model_v4_TED01"]],"b":[["alkaloids/9-methylstreptimidone.yaml","9-methylstreptimidone"],["alkaloids/indigoidine-2.yaml","indigoidine"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/cyclothiazomycin.yaml","cyclothiazomycin"],["amino_acids_and_peptides/eponemycin.yaml","eponemycin"],["amino_acids_and_peptides/himastatin.yaml","himastatin"]]},{"id":"UniProt:O15296","l":"","na":26,"nb":2,"a":[["ComplexPortal%3ACPX-11775","-"],["ComplexPortal%3ACPX-23490","-"],["ComplexPortal%3ACPX-25286","-"],["GO%3A0050473","arachidonate 15-lipoxygenase activity"],["GO%3A0036403","arachidonate 8(S)-lipoxygenase activity"],["GO%3A0016165","linoleate 13S-lipoxygenase activity"]],"b":[["amino_acids_and_peptides/polymyxin.yaml","polymyxin"],["polyketides/tautomycetin.yaml","tautomycetin"]]},{"id":"UniProt:P62937","l":"","na":26,"nb":2,"a":[["ComplexPortal%3ACPX-16615","-"],["ComplexPortal%3ACPX-25278","-"],["GO%3A1904813","ficolin-1-rich granule lumen"],["GO%3A0016018","cyclosporin A binding"],["GO%3A1904399","heparan sulfate binding"],["GO%3A0003755","peptidyl-prolyl cis-trans isomerase activity"]],"b":[["amino_acids_and_peptides/cyclosporin-a.yaml","cyclosporin A"],["amino_acids_and_peptides/sanglifehrin-a.yaml","sanglifehrin A"]]},{"id":"UniProt:P06276","l":"","na":23,"nb":2,"a":[["ComplexPortal%3ACPX-12760","-"],["ComplexPortal%3ACPX-18032","-"],["ComplexPortal%3ACPX-20651","-"],["ComplexPortal%3ACPX-21068","-"],["ComplexPortal%3ACPX-21174","-"],["ComplexPortal%3ACPX-21255","-"]],"b":[["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/physostigmine.yaml","physostigmine"]]},{"id":"UniProt:P07203","l":"","na":21,"nb":2,"a":[["ComplexPortal%3ACPX-13707","-"],["ComplexPortal%3ACPX-15014","-"],["ComplexPortal%3ACPX-20814","-"],["ComplexPortal%3ACPX-20823","-"],["ComplexPortal%3ACPX-23329","-"],["ComplexPortal%3ACPX-23744","-"]],"b":[["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"],["unclassified/beauvericin.yaml","beauvericin"]]},{"id":"UniProt:P63092","l":"","na":21,"nb":2,"a":[["GO%3A0005834","heterotrimeric G-protein complex"],["GO%3A0010856","adenylate cyclase activator activity"],["GO%3A0031748","D1 dopamine receptor binding"],["GO%3A0031683","G-protein beta/gamma-subunit complex binding"],["GO%3A0007190","activation of adenylate cyclase activity"],["GO%3A0038184","adenylate cyclase-activating G protein-coupled bile acid receptor signaling pathway"]],"b":[["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"]]},{"id":"NCBITaxon:746128","l":"Aspergillus fumigatus","na":2,"nb":20,"a":[["Pfam%3APF07335","Fungal chitosanase of glycosyl hydrolase group 75"],["Pfam%3APF12296","Hydrophobic surface binding protein A"]],"b":[["alkaloids/fumigaclavine-c.yaml","fumigaclavine C"],["alkaloids/fumiquinazoline-a.yaml","fumiquinazoline A"],["alkaloids/fumiquinazoline-c.yaml","fumiquinazoline C"],["alkaloids/fumiquinazoline-d.yaml","fumiquinazoline D"],["alkaloids/hexadehydroastechrome.yaml","hexadehydroastechrome"],["carbohydrates/tobramycin.yaml","tobramycin"]]},{"id":"NCBITaxon:176299","l":"Agrobacterium fabrum (strain C58 / ATCC 33970)","na":17,"nb":2,"a":[["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF28403","Aconitase X second domain"],["Pfam%3APF28406","Aconitase X third domain"],["Pfam%3APF04412","Aconitase X first domain"],["Pfam%3APF01989","Aconitase X swivel domain"]],"b":[["amino_acids_and_peptides/fabrubactin-a.yaml","fabrubactin A"],["amino_acids_and_peptides/fabrubactin-b.yaml","fabrubactin B"]]},{"id":"NCBITaxon:455632","l":"Streptomyces griseus subsp. griseus NBRC 13350","na":2,"nb":17,"a":[["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["PROSITE%3APS01311","Prolipoprotein diacylglyceryl transferase signature"]],"b":[["alkaloids/grixazone-a.yaml","grixazone A"],["alkaloids/iminimycin-a.yaml","iminimycin A"],["alkaloids/iminimycin-b.yaml","iminimycin B"],["alkaloids/melanin.yaml","melanin"],["carbohydrates/streptomycin.yaml","streptomycin"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":16,"nb":2,"a":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF28265","Lipoprotein N-acylation protein LnsA-like"],["Pfam%3APF16403","Bacterial surface protein, Ig-like domain"],["Pfam%3APF03944","delta endotoxin"],["Pfam%3APF03945","delta endotoxin, N-terminal domain"],["Pfam%3APF06355","Aegerolysin"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["unclassified/andalusicin-a.yaml","andalusicin A"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":16,"nb":2,"a":[["Pfam%3APF05932","Tir chaperone protein (CesT) family"],["Pfam%3APF17656","FlgA N-terminal domain"],["Pfam%3APF22200","ExsA N-terminal regulatory domain"],["Pfam%3APF05171","Haemin-degrading HemS.ChuX domain"],["Pfam%3APF07201","HrpJ-like domain"],["Pfam%3APF04391","Protein of unknown function (DUF533)"]],"b":[["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["alkaloids/yersiniabactin.yaml","yersiniabactin"]]},{"id":"NCBITaxon:1360","l":"Lactococcus lactis subsp. lactis","na":14,"nb":2,"a":[["Pfam%3APF08951","Bacteriocin immunity protein family"],["Pfam%3APF08998","Bacterial epsilon antitoxin"],["Pfam%3APF25887","LcnD-like, long helical bundle domain"],["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF25940","LcnD-like, C-terminal domain"],["Pfam%3APF08129","Alpha/beta enterocin family"]],"b":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"],["amino_acids_and_peptides/nisin-a.yaml","nisin A"]]},{"id":"NCBITaxon:29488","l":"Photorhabdus luminescens","na":2,"nb":14,"a":[["Pfam%3APF02273","Acyl transferase"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"]],"b":[["alkaloids/photobactin.yaml","photobactin"],["alkaloids/pzn5.yaml","PZN5"],["amino_acids_and_peptides/gamexpeptide-c.yaml","gamexpeptide C"],["amino_acids_and_peptides/glidobactin.yaml","glidobactin"],["amino_acids_and_peptides/luminmycin-a.yaml","luminmycin A"],["polyketides/photopyrone-a.yaml","photopyrone A"]]},{"id":"NCBITaxon:759273","l":"Colletotrichum higginsianum IMI 349063","na":2,"nb":14,"a":[["TED%3AAF-A0A1B7Y9H0-F1-model_v4_TED01","TED novel fold AF-A0A1B7Y9H0-F1-model_v4_TED01"],["TED%3AAF-H1V1S2-F1-model_v4_TED01","TED novel fold AF-H1V1S2-F1-model_v4_TED01"]],"b":[["shikimates_and_phenylpropanoids/colletorin-d-acid.yaml","Colletorin D acid"],["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"],["unclassified/13-epi-higginsianin-c.yaml","13-epi-higginsianin C"],["unclassified/colletochlorin-a.yaml","Colletochlorin A"],["unclassified/colletochlorin-b.yaml","Colletochlorin B"],["unclassified/colletochlorin-d.yaml","Colletochlorin D"]]},{"id":"NCBITaxon:271848","l":"Burkholderia thailandensis E264","na":2,"nb":12,"a":[["Pfam%3APF12091","Protein of unknown function (DUF3567)"],["Pfam%3APF01075","Glycosyltransferase family 9 (heptosyltransferase)"]],"b":[["alkaloids/malleobactin-b.yaml","malleobactin B"],["alkaloids/malleobactin-d.yaml","malleobactin D"],["polyketides/malleicyprol.yaml","malleicyprol"],["polyketides/malleilactone.yaml","malleilactone"],["polyketides/thailandamide-lactone.yaml","thailandamide lactone"],["polyketides/thailandamide.yaml","thailandamide"]]},{"id":"NCBITaxon:1111077","l":"Claviceps purpurea 20.1","na":2,"nb":11,"a":[["Pfam%3APF28338","AclK C-terminal domain"],["TED%3AAF-M1W301-F1-model_v4_TED01","TED highly-symmetric fold AF-M1W301-F1-model_v4_TED01"]],"b":[["alkaloids/ergotamine.yaml","ergotamine"],["polyketides/clavorubin.yaml","Clavorubin"],["polyketides/endocrocin.yaml","endocrocin"],["polyketides/o-orsellinate-depside.yaml","o-orsellinate depside"],["polyketides/secalonic-acid-a.yaml","Secalonic acid A"],["polyketides/secalonic-acid-b.yaml","Secalonic acid B"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":11,"nb":2,"a":[["Pfam%3APF22829","HphA C-terminal domain"],["Pfam%3APF22828","HphA N-terminal heme-binding domain"],["Pfam%3APF28205","Ciprofloxacin tolerance protein"],["Pfam%3APF19582","Solute-binding protein AdeT 1/2"],["PROSITE%3APS00337","Beta-lactamase class-D active site"],["Pfam%3APF24575","Surface lipoprotein assembly modifier, N-terminal TPR repeats"]],"b":[["alkaloids/acinetobactin.yaml","acinetobactin"],["amino_acids_and_peptides/fimsbactin-a.yaml","fimsbactin A"]]},{"id":"UniProt:P11802","l":"","na":11,"nb":2,"a":[["ComplexPortal%3ACPX-10673","-"],["ComplexPortal%3ACPX-18434","-"],["ComplexPortal%3ACPX-20361","-"],["ComplexPortal%3ACPX-21602","-"],["ComplexPortal%3ACPX-26168","-"],["ComplexPortal%3ACPX-2010","Cyclin D1-CDK4 complex"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"],["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:455432","l":"Nocardia terpenica","na":2,"nb":10,"a":[["TED%3AAF-A0A6G9ZDY9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6G9ZDY9-F1-model_v4_TED01"],["TED%3AAF-A0A164L9V7-F1-model_v4_TED03","TED novel fold AF-A0A164L9V7-F1-model_v4_TED03"]],"b":[["amino_acids_and_peptides/nocapeptin-a.yaml","nocapeptin A"],["amino_acids_and_peptides/nocathioamide-a.yaml","nocathioamide A"],["polyketides/brasilinolide-a.yaml","brasilinolide A"],["polyketides/brasilinolide-b.yaml","brasilinolide B"],["polyketides/brasilinolide-c.yaml","brasilinolide C"],["polyketides/terpenomycin.yaml","terpenomycin"]]},{"id":"NCBITaxon:1159556","l":"Ustilaginoidea virens","na":2,"nb":9,"a":[["Pfam%3APF06966","Protein of unknown function (DUF1295)"],["TED%3AAF-A0A1B5L5W2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1B5L5W2-F1-model_v4_TED03"]],"b":[["amino_acids_and_peptides/ustiloxin-b.yaml","ustiloxin B"],["polyketides/ustilaginoidin-a.yaml","ustilaginoidin A"],["polyketides/ustilaginoidin-d.yaml","ustilaginoidin D"],["polyketides/ustilaginoidin-e.yaml","ustilaginoidin E"],["polyketides/ustilaginoidin-f.yaml","ustilaginoidin F"],["polyketides/ustilaginoidin-g.yaml","ustilaginoidin G"]]},{"id":"NCBITaxon:158878","l":"Staphylococcus aureus (strain Mu50 / ATCC 700699)","na":9,"nb":2,"a":[["Pfam%3APF26317","Histidine racemase CntK N-terminal domain"],["Pfam%3APF13610","DDE domain"],["Pfam%3APF12199","Extracellular fibrinogen binding protein C terminal"],["Pfam%3APF26323","Staphylococcus aureus type VII secretion system substrate EsxC"],["Pfam%3APF19776","Family of unknown function (DUF6262)"],["Pfam%3APF27790","Poly-beta-1,6-N-acetyl-D-glucosamine synthesis protein IcaD"]],"b":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"]]},{"id":"NCBITaxon:57975","l":"Burkholderia thailandensis","na":2,"nb":9,"a":[["TED%3AAF-A0A7Z8HH79-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Z8HH79-F1-model_v4_TED01"],["TED%3AAF-A0A7Z8HK43-F1-model_v4_TED01","TED novel fold AF-A0A7Z8HK43-F1-model_v4_TED01"]],"b":[["fatty_acids/fr901464.yaml","FR901464"],["polyketides/malleicyprol.yaml","malleicyprol"],["polyketides/thailandamide-lactone.yaml","thailandamide lactone"],["polyketides/thailandamide.yaml","thailandamide"],["polyketides/thailanstatin-a.yaml","thailanstatin A"],["shikimates_and_phenylpropanoids/bactobolin.yaml","bactobolin"]]},{"id":"UniProt:P11309","l":"","na":9,"nb":2,"a":[["ComplexPortal%3ACPX-11827","-"],["ComplexPortal%3ACPX-16792","-"],["ComplexPortal%3ACPX-21719","-"],["ComplexPortal%3ACPX-26168","-"],["GO%3A1905062","positive regulation of cardioblast proliferation"],["GO%3A1905701","positive regulation of xenobiotic detoxification by transmembrane export across the plasma membrane"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"],["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":8,"nb":2,"a":[["Pfam%3APF01890","Cobalamin synthesis G C-terminus"],["Pfam%3APF11761","Cobalamin biosynthesis central region"],["Pfam%3APF11760","Cobalamin synthesis G N-terminal"],["Pfam%3APF02570","Precorrin-8X methylmutase"],["PROSITE%3APS00304","Small, acid-soluble spore proteins, alpha/beta type, signature 1"],["PROSITE%3APS00684","Small, acid-soluble spore proteins, alpha/beta type, signature 2"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"],["carbohydrates/oxetanocin-a.yaml","oxetanocin A"]]},{"id":"NCBITaxon:303698","l":"Penicillium steckii","na":2,"nb":8,"a":[["TED%3AAF-A0A1V6TCF9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1V6TCF9-F1-model_v4_TED03"],["TED%3AAF-A0A1V6U0I0-F1-model_v4_TED02","TED novel fold AF-A0A1V6U0I0-F1-model_v4_TED02"]],"b":[["unclassified/adametizine-a.yaml","adametizine A"],["unclassified/fa2097.yaml","FA2097"],["unclassified/outovirin-a.yaml","outovirin A"],["unclassified/outovirin-c.yaml","outovirin C"],["unclassified/penigainamide-a.yaml","penigainamide A"],["unclassified/penigainamide-b.yaml","penigainamide B"]]},{"id":"NCBITaxon:119927","l":"Alternaria tenuissima","na":7,"nb":2,"a":[["TED%3AAF-A0A4Q4MR18-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q4MR18-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4M1N1-F1-model_v4_TED01","TED novel fold AF-A0A4Q4M1N1-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4M2G6-F1-model_v4_TED01","TED novel fold AF-A0A4Q4M2G6-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4MJL0-F1-model_v4_TED01","TED novel fold AF-A0A4Q4MJL0-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4PGY1-F1-model_v4_TED01","TED novel fold AF-A0A4Q4PGY1-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4RTT0-F1-model_v4_TED01","TED novel fold AF-A0A4Q4RTT0-F1-model_v4_TED01"]],"b":[["polyketides/patulin.yaml","patulin"],["polyketides/solanapyrone-a.yaml","solanapyrone A"]]},{"id":"NCBITaxon:1279085","l":"Fusarium fujikuroi IMI 58289","na":2,"nb":7,"a":[["Pfam%3APF12585","Virulence factor CipC-like"],["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"]],"b":[["polyketides/bikaverin.yaml","bikaverin"],["polyketides/fujikurin-c.yaml","fujikurin C"],["polyketides/fujikurin-d.yaml","fujikurin D"],["polyketides/gibepyrone-a.yaml","gibepyrone A"],["terpenoids/acorenol.yaml","α-acorenol"],["terpenoids/koraiol.yaml","koraiol"]]},{"id":"NCBITaxon:1380566","l":"Pochonia chlamydosporia 170","na":2,"nb":7,"a":[["TED%3AAF-A0A179FUG8-F1-model_v4_TED01","TED novel fold AF-A0A179FUG8-F1-model_v4_TED01"],["TED%3AAF-A0A179FWH3-F1-model_v4_TED01","TED novel fold AF-A0A179FWH3-F1-model_v4_TED01"]],"b":[["polyketides/monocillin-ii.yaml","monocillin II"],["polyketides/monocillin-iv.yaml","monocillin IV"],["polyketides/monocillin-v.yaml","monocillin V"],["polyketides/monocillin-vi.yaml","monocillin VI"],["polyketides/monocillin-vii.yaml","monocillin VII"],["polyketides/monorden-d.yaml","monorden D"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":7,"nb":2,"a":[["Pfam%3APF19443","DAHL domain"],["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"],["Pfam%3APF03524","Conjugal transfer protein"],["Pfam%3APF27439","Chaperone protein DnaJ C-terminal region"],["Pfam%3APF10907","Protein of unknown function (DUF2749)"],["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]],"b":[["alkaloids/agrobactin.yaml","agrobactin"],["amino_acids_and_peptides/aztreonam.yaml","aztreonam"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":6,"nb":2,"a":[["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF03744","6-carboxyhexanoate--CoA ligase"],["PROSITE%3APS00836","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 1"],["PROSITE%3APS00837","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 2"],["TED%3AAF-A0A2S5D092-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5D092-F1-model_v4_TED01"],["TED%3AAF-A0A2S0JW09-F1-model_v4_TED01","TED novel fold AF-A0A2S0JW09-F1-model_v4_TED01"]],"b":[["alkaloids/biotin.yaml","biotin"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:1894","l":"Kitasatospora aureofaciens","na":2,"nb":6,"a":[["Pfam%3APF01933","2-phospho-L-lactate transferase CofD"],["TED%3AAF-A0A1E7NF13-F1-model_v4_TED01","TED novel fold AF-A0A1E7NF13-F1-model_v4_TED01"]],"b":[["fatty_acids/triacsin-c.yaml","triacsin C"],["polyketides/auricin.yaml","auricin"],["polyketides/chlortetracycline.yaml","chlortetracycline"],["polyketides/lipomycin.yaml","α-lipomycin"],["polyketides/oxytetracycline.yaml","oxytetracycline"],["polyketides/venturicidin-a.yaml","venturicidin A"]]},{"id":"NCBITaxon:321","l":"Pseudomonas syringae pv. syringae","na":6,"nb":2,"a":[["Pfam%3APF03421","YopJ Serine/Threonine acetyltransferase"],["Pfam%3APF17914","HopA1 effector protein family"],["Pfam%3APF27361","HrcQa N-terminal domain"],["Pfam%3APF04877","HrpZ"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]],"b":[["amino_acids_and_peptides/3-methylarginine.yaml","3-methylarginine"],["unclassified/syringopeptin-25a.yaml","syringopeptin 25A"]]},{"id":"NCBITaxon:52","l":"Chondromyces crocatus","na":2,"nb":6,"a":[["TED%3AAF-A0A0K1ER44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0K1ER44-F1-model_v4_TED01"],["TED%3AAF-A0A0K1E854-F1-model_v4_TED01","TED novel fold AF-A0A0K1E854-F1-model_v4_TED01"]],"b":[["polyketides/chondrochloren-a.yaml","chondrochloren A"],["polyketides/cmc-thuggacin-a.yaml","Cmc-thuggacin A"],["polyketides/crocacin.yaml","crocacin"],["shikimates_and_phenylpropanoids/ajudazol-a.yaml","ajudazol A"],["unclassified/chondramide-a.yaml","chondramide A"],["unclassified/cmc-thuggacin-b.yaml","Cmc-thuggacin B"]]},{"id":"NCBITaxon:2795974","l":"Stieleria maiorica","na":2,"nb":5,"a":[["TED%3AAF-A0A5B9MHL4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5B9MHL4-F1-model_v4_TED02"],["TED%3AAF-A0A5B9MK37-F1-model_v4_TED03","TED novel fold AF-A0A5B9MK37-F1-model_v4_TED03"]],"b":[["alkaloids/stieleriacine-a1.yaml","stieleriacine A1"],["alkaloids/stieleriacine-a2.yaml","stieleriacine A2"],["fatty_acids/stieleriacine-c.yaml","stieleriacine C"],["unclassified/stieleriacine-b1.yaml","stieleriacine B1"],["unclassified/stieleriacine-b2.yaml","stieleriacine B2"]]},{"id":"NCBITaxon:305","l":"Ralstonia solanacearum","na":5,"nb":2,"a":[["Pfam%3APF14897","EpsG family"],["TED%3AAF-A0A7I8FQZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7I8FQZ6-F1-model_v4_TED01"],["TED%3AAF-A0A7H1MI34-F1-model_v4_TED01","TED novel fold AF-A0A7H1MI34-F1-model_v4_TED01"],["TED%3AAF-A0A7I8FKL4-F1-model_v4_TED01","TED novel fold AF-A0A7I8FKL4-F1-model_v4_TED01"],["TED%3AAF-A0A850FKB0-F1-model_v4_TED01","TED novel fold AF-A0A850FKB0-F1-model_v4_TED01"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"],["unclassified/micacocidin.yaml","micacocidin"]]},{"id":"NCBITaxon:394096","l":"Hyalangium minutum","na":5,"nb":2,"a":[["TED%3AAF-A0A085W4M3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085W4M3-F1-model_v4_TED01"],["TED%3AAF-A0A085WRA7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085WRA7-F1-model_v4_TED01"],["TED%3AAF-A0A085WWM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085WWM4-F1-model_v4_TED01"],["TED%3AAF-A0A085W7S5-F1-model_v4_TED03","TED novel fold AF-A0A085W7S5-F1-model_v4_TED03"],["TED%3AAF-A0A085WH04-F1-model_v4_TED01","TED novel fold AF-A0A085WH04-F1-model_v4_TED01"]],"b":[["polyketides/nystatin-a1.yaml","nystatin A1"],["unclassified/myxochromide-d-2.yaml","myxochromide D"]]},{"id":"NCBITaxon:193462","l":"Streptomyces niveus","na":2,"nb":4,"a":[["Pfam%3APF16861","Carbamoyltransferase C-terminus"],["Pfam%3APF02543","Carbamoyltransferase N-terminus"]],"b":[["alkaloids/phenaziterpene-a.yaml","phenaziterpene A"],["carbohydrates/kanamycin-a.yaml","kanamycin A"],["shikimates_and_phenylpropanoids/cathomycin.yaml","cathomycin"],["unclassified/be-14106.yaml","BE-14106"]]},{"id":"NCBITaxon:394095","l":"Pyxidicoccus fallax","na":4,"nb":2,"a":[["TED%3AAF-A0A848LUK3-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A848LUK3-F1-model_v4_TED04"],["TED%3AAF-A0A848LF16-F1-model_v4_TED01","TED novel fold AF-A0A848LF16-F1-model_v4_TED01"],["TED%3AAF-A0A848LFV1-F1-model_v4_TED03","TED novel fold AF-A0A848LFV1-F1-model_v4_TED03"],["TED%3AAF-A0A848LG55-F1-model_v4_TED01","TED novel fold AF-A0A848LG55-F1-model_v4_TED01"]],"b":[["polyketides/gulmirecin-a.yaml","gulmirecin A"],["unclassified/myxarylin.yaml","Myxarylin"]]},{"id":"NCBITaxon:426418","l":"Pyrenophora tritici-repentis Pt-1C-BFP","na":2,"nb":4,"a":[["TED%3AAF-B2VYP9-F1-model_v4_TED01","TED novel fold AF-B2VYP9-F1-model_v4_TED01"],["TED%3AAF-B2VZ40-F1-model_v4_TED02","TED novel fold AF-B2VZ40-F1-model_v4_TED02"]],"b":[["unclassified/triticone-a.yaml","triticone A"],["unclassified/triticone-b.yaml","triticone B"],["unclassified/triticone-c.yaml","triticone C"],["unclassified/triticone-f.yaml","triticone F"]]},{"id":"NCBITaxon:5270","l":"","na":4,"nb":2,"a":[["Pfam%3APF17445","Mating factor A1"],["Pfam%3APF24563","Mug60/KHD4 KH type I domain"],["Pfam%3APF01185","Fungal hydrophobin"],["Pfam%3APF07460","NUMOD3 motif"]],"b":[["fatty_acids/itaconic-acid.yaml","itaconic acid"],["fatty_acids/ustilagic-acid.yaml","ustilagic acid"]]},{"id":"NCBITaxon:55601","l":"Vibrio anguillarum","na":4,"nb":2,"a":[["Pfam%3APF17327","Acyl homoserine lactone synthase"],["PROSITE%3APS00949","Autoinducer synthase family signature"],["TED%3AAF-A0A241NLV5-F1-model_v4_TED03","TED novel fold AF-A0A241NLV5-F1-model_v4_TED03"],["TED%3AAF-A0A290PUC4-F1-model_v4_TED02","TED novel fold AF-A0A290PUC4-F1-model_v4_TED02"]],"b":[["alkaloids/anguibactin.yaml","anguibactin"],["amino_acids_and_peptides/vanchrobactin.yaml","vanchrobactin"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":4,"nb":2,"a":[["Pfam%3APF01375","Heat-labile enterotoxin alpha chain"],["Pfam%3APF09101","Exotoxin A binding"],["Pfam%3APF09009","Exotoxin A catalytic"],["Pfam%3APF09102","Exotoxin A, targeting"]],"b":[["alkaloids/vibriobactin-2.yaml","vibriobactin"],["alkaloids/vibriobactin.yaml","vibriobactin"]]},{"id":"UniProt:P02829","l":"","na":4,"nb":2,"a":[["ComplexPortal%3ACPX-1276","HMC complex"],["GO%3A0006458","'de novo' protein folding"],["GO%3A0043248","proteasome assembly"],["GO%3A0070482","response to oxygen levels"]],"b":[["polyketides/monocillin-iv.yaml","monocillin IV"],["polyketides/radicicol.yaml","radicicol"]]},{"id":"NCBITaxon:1120925","l":"Acinetobacter bouvetii DSM 14964 = CIP 107468","na":2,"nb":3,"a":[["proteintraitsmech%3AELIFE109154_VibH_like","VibH-like metallophore standalone condensation enzyme family"],["TED%3AAF-N9C7M4-F1-model_v4_TED02","TED novel fold AF-N9C7M4-F1-model_v4_TED02"]],"b":[["alkaloids/butanochelin.yaml","butanochelin"],["alkaloids/pentanochelin.yaml","pentanochelin"],["alkaloids/propanochelin.yaml","propanochelin"]]},{"id":"NCBITaxon:1229662","l":"Pestalotiopsis fici (strain W106-1 / CGMCC3.15140)","na":3,"nb":2,"a":[["Pfam%3APF26087","Domain of unknown function (DUF8032)"],["Pfam%3APF07110","EthD domain"],["TED%3AAF-W3WKJ8-F1-model_v4_TED01","TED novel fold AF-W3WKJ8-F1-model_v4_TED01"]],"b":[["polyketides/naphthalene-1-3-8-triol.yaml","naphthalene-1,3,8-triol"],["polyketides/scytalone.yaml","scytalone"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":2,"nb":3,"a":[["Pfam%3APF02052","Gallidermin"],["Pfam%3APF04604","Type-A lantibiotic"]],"b":[["unclassified/leuvalin.yaml","leuvalin"],["unclassified/mutanocyclin.yaml","mutanocyclin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":2,"a":[["TED%3AAF-A0A142EAM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142EAM9-F1-model_v4_TED03"],["TED%3AAF-A0A1Q3DTY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3DTY6-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3DNE3-F1-model_v4_TED01","TED novel fold AF-A0A1Q3DNE3-F1-model_v4_TED01"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:1907","l":"Streptomyces glaucescens","na":2,"nb":3,"a":[["Pfam%3APF04673","Polyketide synthesis cyclase"],["Pfam%3APF04655","Aminoglycoside/hydroxyurea antibiotic resistance kinase"]],"b":[["carbohydrates/5-hydroxystreptomycin.yaml","5'-hydroxystreptomycin"],["carbohydrates/streptomycin.yaml","streptomycin"],["polyketides/tetracenomycin-c.yaml","tetracenomycin C"]]},{"id":"NCBITaxon:1940","l":"Streptomyces albireticuli NRRL B-1670","na":2,"nb":3,"a":[["TED%3AAF-A0A1Z2LD39-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z2LD39-F1-model_v4_TED01"],["TED%3AAF-A0A1Z2LBV3-F1-model_v4_TED01","TED novel fold AF-A0A1Z2LBV3-F1-model_v4_TED01"]],"b":[["fatty_acids/fuelimicin-b.yaml","fuelimicin B"],["fatty_acids/fuelimicin-c.yaml","fuelimicin C"],["fatty_acids/fuelimycin-a.yaml","fuelimycin A"]]},{"id":"NCBITaxon:240292","l":"Trichormus variabilis ATCC 29413","na":2,"nb":3,"a":[["Pfam%3APF18921","Cyanophycin synthase-like N-terminal domain"],["Pfam%3APF13619","KTSC domain"]],"b":[["unclassified/4-deoxygadusol.yaml","4-deoxygadusol"],["unclassified/mycosporine-glycine.yaml","mycosporine glycine"],["unclassified/shinorine.yaml","shinorine"]]},{"id":"NCBITaxon:344612","l":"Aspergillus clavatus (strain ATCC 1007 / CBS 513.65 / DSM 816 / NCTC 3887 / NRRL 1 / QM 1276 / 107)","na":3,"nb":2,"a":[["Pfam%3APF28457","Probable beta-glucosidase btgE N-terminal domain"],["Pfam%3APF24438","IML1, N-terminal, fungi"],["Pfam%3APF25326","SRB8 ARM-like domain"]],"b":[["alkaloids/cytochalasin-e.yaml","cytochalasin E"],["alkaloids/cytochalasin-k.yaml","cytochalasin K"]]},{"id":"NCBITaxon:3635","l":"Gossypium hirsutum","na":3,"nb":2,"a":[["Pfam%3APF20452","Calmodulin binding protein C-terminal domain"],["Pfam%3APF20451","Calmodulin binding protein central domain"],["Pfam%3APF07887","Calmodulin binding protein-like N-terminal domain"]],"b":[["fatty_acids/butyrolactone.yaml","γ-butyrolactone"],["terpenoids/cadinene.yaml","(−)-δ-cadinene"]]},{"id":"NCBITaxon:394503","l":"","na":3,"nb":2,"a":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["PROSITE%3APS00812","Glycosyl hydrolases family 8 signature"],["Pfam%3APF01270","Glycosyl hydrolases family 8"]],"b":[["alkaloids/closthioamide.yaml","closthioamide"],["amino_acids_and_peptides/rc-aip1.yaml","Rc-AIP1"]]},{"id":"NCBITaxon:42236","l":"Streptomyces diastatochromogenes","na":2,"nb":3,"a":[["TED%3AAF-A0A233S9R2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A233S9R2-F1-model_v4_TED01"],["TED%3AAF-A0A233SM76-F1-model_v4_TED01","TED novel fold AF-A0A233SM76-F1-model_v4_TED01"]],"b":[["carbohydrates/toyocamycin.yaml","toyocamycin"],["polyketides/concanamycin-a.yaml","concanamycin A"],["polyketides/polyketomycin.yaml","polyketomycin"]]},{"id":"NCBITaxon:44250","l":"Paenibacillus alvei","na":3,"nb":2,"a":[["PROSITE%3APS00481","Thiol-activated cytolysins signature"],["TED%3AAF-A0A383R9F4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A383R9F4-F1-model_v4_TED01"],["TED%3AAF-A0A7Y4MLP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4MLP7-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/colistin-a.yaml","colistin A"],["amino_acids_and_peptides/colistin-b.yaml","colistin B"]]},{"id":"NCBITaxon:4530","l":"Oryza sativa","na":2,"nb":3,"a":[["Pfam%3APF10839","Protein of unknown function (DUF2647)"],["PROSITE%3APS00937","Ribosomal protein L20 signature"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/nonadec-1-ene.yaml","nonadec-1-ene"],["terpenoids/phytocassane.yaml","phytocassane"]]},{"id":"NCBITaxon:474922","l":"Colletotrichum gloeosporioides","na":2,"nb":3,"a":[["Pfam%3APF28223","CAP22"],["PROSITE%3APS00155","Cutinase, serine active site"]],"b":[["unclassified/colletochlorin-a.yaml","Colletochlorin A"],["unclassified/colletotrichin.yaml","colletotrichin"],["unclassified/orcinol.yaml","orcinol"]]},{"id":"NCBITaxon:51201","l":"Streptomyces griseocarneus","na":3,"nb":2,"a":[["TED%3AAF-A0A3L8IG13-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3L8IG13-F1-model_v4_TED01"],["TED%3AAF-A0A3L8KW22-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3L8KW22-F1-model_v4_TED02"],["TED%3AAF-A0A8A3HJQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8A3HJQ3-F1-model_v4_TED01"]],"b":[["alkaloids/pimprinine.yaml","pimprinine"],["carbohydrates/5-hydroxystreptomycin.yaml","5'-hydroxystreptomycin"]]},{"id":"NCBITaxon:536","l":"Chromobacterium violaceum","na":2,"nb":3,"a":[["TED%3AAF-A0A381EUD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A381EUD6-F1-model_v4_TED01"],["TED%3AAF-A0A447THJ9-F1-model_v4_TED01","TED novel fold AF-A0A447THJ9-F1-model_v4_TED01"]],"b":[["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["unclassified/romidepsin.yaml","romidepsin"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":3,"nb":2,"a":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"],["TED%3AAF-A0A7H8I034-F1-model_v4_TED01","TED novel fold AF-A0A7H8I034-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/aerobactin.yaml","aerobactin"],["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":3,"nb":2,"a":[["Pfam%3APF04205","FMN-binding domain"],["Pfam%3APF10795","Protein of unknown function (DUF2607)"],["TED%3AAF-A0A1W6U0N2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W6U0N2-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/vibrioferrin-2.yaml","vibrioferrin"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:67267","l":"Streptomyces alboflavus","na":3,"nb":2,"a":[["TED%3AAF-A0A1Z1WH37-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z1WH37-F1-model_v4_TED01"],["TED%3AAF-A0A291W4F3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A291W4F3-F1-model_v4_TED01"],["TED%3AAF-A0A291W5G3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A291W5G3-F1-model_v4_TED01"]],"b":[["alkaloids/thienodolin.yaml","thienodolin"],["terpenoids/2-methylisoborneol.yaml","2-methylisoborneol"]]},{"id":"NCBITaxon:1116229","l":"","na":2,"nb":2,"a":[["Pfam%3APF28402","Pneumocandin biosynthesis cluster protein B C-terminal domain"],["TED%3AAF-S3CJ96-F1-model_v4_TED01","TED novel fold AF-S3CJ96-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/pneumocandin-a0.yaml","pneumocandin A0"],["amino_acids_and_peptides/pneumocandin-b0.yaml","pneumocandin B0"]]},{"id":"NCBITaxon:1284","l":"Staphylococcus hyicus","na":2,"nb":2,"a":[["Pfam%3APF04650","YSIRK type signal peptide"],["PROSITE%3APS01123","Thermonuclease family signature 1"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["unclassified/staphyloferrin-a.yaml","staphyloferrin A"]]},{"id":"NCBITaxon:1365484","l":"","na":2,"nb":2,"a":[["Pfam%3APF11578","Protein of unknown function (DUF3237)"],["Pfam%3APF14269","Arylsulfotransferase (ASST)"]],"b":[["alkaloids/mycophenolic-acid-2.yaml","mycophenolic acid"],["terpenoids/pr-toxin.yaml","PR-toxin"]]},{"id":"NCBITaxon:1392255","l":"","na":2,"nb":2,"a":[["Pfam%3APF08592","Anthrone oxygenase"],["TED%3AAF-A0A2I1CES2-F1-model_v4_TED03","TED novel fold AF-A0A2I1CES2-F1-model_v4_TED03"]],"b":[["polyketides/neosartorin.yaml","neosartorin"],["unclassified/novofumigatonin.yaml","novofumigatonin"]]},{"id":"NCBITaxon:247156","l":"","na":2,"nb":2,"a":[["Pfam%3APF19288","CofH/MqnC C-terminal region"],["Pfam%3APF17645","Arylmalonate decarboxylase"]],"b":[["amino_acids_and_peptides/nocobactin-na.yaml","nocobactin NA"],["unclassified/nocobactin-na-10152b.yaml","nocobactin NA 10152B"]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":2,"nb":2,"a":[["Pfam%3APF21252","Glycosyl hydrolase 109, C-terminal domain"],["TED%3AAF-A0A3P1YJQ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3P1YJQ6-F1-model_v4_TED01"]],"b":[["carbohydrates/legionaminic-acid.yaml","legionaminic acid"],["carbohydrates/pseudaminate.yaml","pseudaminate"]]},{"id":"NCBITaxon:285532","l":"Streptomyces achromogenes subsp. streptozoticus","na":2,"nb":2,"a":[["Pfam%3APF07883","Cupin domain"],["Pfam%3APF14518","Iron-containing redox enzyme"]],"b":[["carbohydrates/streptozotocin.yaml","streptozotocin"],["unclassified/enteromycin.yaml","enteromycin"]]},{"id":"NCBITaxon:29430","l":"Acinetobacter haemolyticus","na":2,"nb":2,"a":[["TED%3AAF-A0A845PGH5-F1-model_v4_TED01","TED novel fold AF-A0A845PGH5-F1-model_v4_TED01"],["TED%3AAF-A0A857IU13-F1-model_v4_TED06","TED novel fold AF-A0A857IU13-F1-model_v4_TED06"]],"b":[["alkaloids/acinetoferrin.yaml","acinetoferrin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":2,"nb":2,"a":[["TED%3AAF-A0A6N3WS12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N3WS12-F1-model_v4_TED01"],["TED%3AAF-A0A3R7GIU2-F1-model_v4_TED02","TED novel fold AF-A0A3R7GIU2-F1-model_v4_TED02"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["terpenoids/xanthan.yaml","xanthan"]]},{"id":"NCBITaxon:3469","l":"Papaver somniferum","na":2,"nb":2,"a":[["Pfam%3APF00407","Pathogenesis-related protein Bet v 1 family"],["TED%3AAF-A0A4Y7LH48-F1-model_v4_TED01","TED novel fold AF-A0A4Y7LH48-F1-model_v4_TED01"]],"b":[["alkaloids/noscapine.yaml","(−)-noscapine"],["alkaloids/thebaine.yaml","thebaine"]]},{"id":"NCBITaxon:5044","l":"","na":2,"nb":2,"a":[["PROSITE%3APS00185","Isopenicillin N synthase signature 1"],["PROSITE%3APS00186","Isopenicillin N synthase signature 2"]],"b":[["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"],["polyketides/sorbicillin.yaml","sorbicillin"]]},{"id":"NCBITaxon:5074","l":"Penicillium brevicompactum","na":2,"nb":2,"a":[["Pfam%3APF09227","Bubble protein"],["Pfam%3APF18558","Methyltransferase, Helix-turn-helix domain"]],"b":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"],["unclassified/asperphenamate.yaml","asperphenamate"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":2,"nb":2,"a":[["PROSITE%3APS00336","Beta-lactamase class-C active site"],["TED%3AAF-A0A155XQ59-F1-model_v4_TED02","TED novel fold AF-A0A155XQ59-F1-model_v4_TED02"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["terpenoids/mk-8.yaml","MK-8"]]},{"id":"NCBITaxon:5514","l":"Fusarium sporotrichioides","na":2,"nb":2,"a":[["Pfam%3APF22701","Mal s 1 allergenic protein-like"],["TED%3AAF-A0A395RG49-F1-model_v4_TED02","TED novel fold AF-A0A395RG49-F1-model_v4_TED02"]],"b":[["terpenoids/t-2-toxin.yaml","T-2 toxin"],["unclassified/beauvericin.yaml","beauvericin"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":2,"nb":2,"a":[["TED%3AAF-B5UAE0-F1-model_v4_TED01","TED highly-symmetric fold AF-B5UAE0-F1-model_v4_TED01"],["TED%3AAF-A0A3E1IF45-F1-model_v4_TED01","TED novel fold AF-A0A3E1IF45-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/vibrioferrin-2.yaml","vibrioferrin"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:68170","l":"Lechevalieria aerocolonigenes","na":2,"nb":2,"a":[["Pfam%3APF12902","Ferritin-like"],["TED%3AAF-A0A0F0GZM7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0F0GZM7-F1-model_v4_TED03"]],"b":[["alkaloids/rebeccamycin.yaml","rebeccamycin"],["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:69","l":"Lysobacter enzymogenes","na":2,"nb":2,"a":[["TED%3AAF-A0A1J1E6A8-F1-model_v4_TED02","TED novel fold AF-A0A1J1E6A8-F1-model_v4_TED02"],["TED%3AAF-A0A7T8MLU2-F1-model_v4_TED03","TED novel fold AF-A0A7T8MLU2-F1-model_v4_TED03"]],"b":[["unclassified/heat-stable-antifungal-factor.yaml","heat-stable antifungal factor"],["unclassified/wap-8294a2.yaml","WAP-8294A2"]]},{"id":"NCBITaxon:983644","l":"","na":2,"nb":2,"a":[["TED%3AAF-G3J617-F1-model_v4_TED01","TED highly-symmetric fold AF-G3J617-F1-model_v4_TED01"],["TED%3AAF-G3JAX2-F1-model_v4_TED03","TED novel fold AF-G3JAX2-F1-model_v4_TED03"]],"b":[["unclassified/beauveriolide-i.yaml","beauveriolide I"],["unclassified/beauveriolide-iii.yaml","beauveriolide III"]]},{"id":"UniProt:P04058","l":"","na":2,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_03S","03S-binding site"],["proteintraitsmech%3ABIOLIP_AA7","AA7-binding site"]],"b":[["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/physostigmine.yaml","physostigmine"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":297,"nb":1,"a":[["IDPO%3A0000002","disorder"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000045","phosphorylation display site"],["IDPO%3A0000059","self-inhibition"],["Pfam%3APF17837","4'-phosphopantetheinyl transferase N-terminal domain"]],"b":[["unclassified/mycobactin.yaml","mycobactin"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":1,"nb":116,"a":[["Pfam%3APF03437","BtpA family"]],"b":[["alkaloids/altemicidin.yaml","altemicidin"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"],["alkaloids/aurachin-ss.yaml","aurachin SS"],["alkaloids/berninamycin-j.yaml","berninamycin J"],["alkaloids/berninamycin-k.yaml","berninamycin K"]]},{"id":"UniProt:P35222","l":"","na":91,"nb":1,"a":[["ComplexPortal%3ACPX-316","beta1-catenin - LEF1 complex"],["ComplexPortal%3ACPX-12016","-"],["ComplexPortal%3ACPX-14403","-"],["ComplexPortal%3ACPX-16015","-"],["ComplexPortal%3ACPX-16618","-"],["ComplexPortal%3ACPX-17387","-"]],"b":[["alkaloids/toxoflavin.yaml","toxoflavin"]]},{"id":"NCBITaxon:199310","l":"Escherichia coli O6:H1 (strain CFT073 / ATCC 700928 / UPEC)","na":89,"nb":1,"a":[["Pfam%3APF12343","DeaD helicase C-terminal disordered region"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF08298","PrkA AAA domain"],["Pfam%3APF17425","Arylsulfotransferase Ig-like domain"],["Pfam%3APF02611","CDP-diacylglycerol pyrophosphatase"],["Pfam%3APF10729","Cell division activator CedA"]],"b":[["unclassified/ape-ec.yaml","APE Ec"]]},{"id":"NCBITaxon:1883427","l":"Actinomycetia bacterium","na":78,"nb":1,"a":[["TED%3AAF-A0A2E4AXX0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2E4AXX0-F1-model_v4_TED04"],["TED%3AAF-A0A2W4J8T7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W4J8T7-F1-model_v4_TED01"],["TED%3AAF-A0A350SGF5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A350SGF5-F1-model_v4_TED03"],["TED%3AAF-A0A350XSJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A350XSJ9-F1-model_v4_TED01"],["TED%3AAF-A0A3A4PC78-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A4PC78-F1-model_v4_TED01"],["TED%3AAF-A0A3A4PG42-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A4PG42-F1-model_v4_TED01"]],"b":[["polyketides/anthrabenzoxocinone.yaml","anthrabenzoxocinone"]]},{"id":"UniProt:Q13547","l":"","na":66,"nb":1,"a":[["ComplexPortal%3ACPX-12294","-"],["ComplexPortal%3ACPX-13515","-"],["ComplexPortal%3ACPX-14890","-"],["ComplexPortal%3ACPX-15325","-"],["ComplexPortal%3ACPX-18342","-"],["ComplexPortal%3ACPX-20908","-"]],"b":[["amino_acids_and_peptides/apicidin.yaml","apicidin"]]},{"id":"UniProt:P42345","l":"","na":62,"nb":1,"a":[["ComplexPortal%3ACPX-11469","-"],["ComplexPortal%3ACPX-12119","-"],["ComplexPortal%3ACPX-12694","-"],["ComplexPortal%3ACPX-13423","-"],["ComplexPortal%3ACPX-15386","-"],["ComplexPortal%3ACPX-15693","-"]],"b":[["polyketides/sirolimus.yaml","sirolimus"]]},{"id":"UniProt:P21802","l":"","na":52,"nb":1,"a":[["ComplexPortal%3ACPX-11311","-"],["ComplexPortal%3ACPX-13057","-"],["ComplexPortal%3ACPX-19802","-"],["ComplexPortal%3ACPX-20298","-"],["ComplexPortal%3ACPX-21995","-"],["ComplexPortal%3ACPX-24266","-"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:2026763","l":"Myxococcales bacterium","na":51,"nb":1,"a":[["TED%3AAF-A0A2E5HQQ8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E5HQQ8-F1-model_v4_TED02"],["TED%3AAF-A0A2E6VRH0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E6VRH0-F1-model_v4_TED01"],["TED%3AAF-A0A2E6VU88-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E6VU88-F1-model_v4_TED01"],["TED%3AAF-A0A2F0AQB0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2F0AQB0-F1-model_v4_TED03"],["TED%3AAF-A0A2F0AS25-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2F0AS25-F1-model_v4_TED01"],["TED%3AAF-A0A356T3G6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A356T3G6-F1-model_v4_TED01"]],"b":[["polyketides/sorangipyranone.yaml","Sorangipyranone"]]},{"id":"UniProt:O15379","l":"","na":49,"nb":1,"a":[["ComplexPortal%3ACPX-11143","-"],["ComplexPortal%3ACPX-11157","-"],["ComplexPortal%3ACPX-15289","-"],["ComplexPortal%3ACPX-16349","-"],["ComplexPortal%3ACPX-18525","-"],["ComplexPortal%3ACPX-22988","-"]],"b":[["amino_acids_and_peptides/apicidin.yaml","apicidin"]]},{"id":"UniProt:P49841","l":"","na":49,"nb":1,"a":[["ComplexPortal%3ACPX-109","Beta-catenin destruction core complex, APC-AXIN1-GSK3B variant"],["ComplexPortal%3ACPX-439","Beta-catenin destruction core complex, APC-AXIN2-GSK3B variant"],["ComplexPortal%3ACPX-99","Beta-catenin destruction core complex, APC2-AXIN1-GSK3B variant"],["ComplexPortal%3ACPX-440","Beta-catenin destruction core complex, APC2-AXIN2-GSK3B variant"],["ComplexPortal%3ACPX-14345","-"],["ComplexPortal%3ACPX-16629","-"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:9031","l":"Gallus gallus","na":48,"nb":1,"a":[["Pfam%3APF16620","Unstructured linker between I-set domains 2 and 3 on MYLCK"],["Pfam%3APF15512","Chromatin assembly factor complex 1 subunit p60, C-terminal"],["Pfam%3APF18130","ATP-grasp N-terminal domain"],["Pfam%3APF15632","ATP-grasp in the biosynthetic pathway with Ter operon"],["Pfam%3APF01382","Avidin family"],["Pfam%3APF08072","BDHCT (NUC031) domain"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P08684","l":"","na":47,"nb":1,"a":[["EC%3A1.14.14.55","quinine 3-monooxygenase"],["EC%3A1.14.14.56","1,8-cineole 2-exo-monooxygenase"],["EC%3A1.14.14.73","albendazole monooxygenase (sufoxide-forming)"],["RHEA%3A32895","1,8-cineole + reduced [NADPH--hemoprotein reductase] + O2 = 2-exo-hydroxy-1,8-cineole + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A20149","quinine + reduced [NADPH--hemoprotein reductase] + O2 = 3-hydroxyquinine + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["ComplexPortal%3ACPX-11243","-"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"UniProt:P0A8V2","l":"","na":47,"nb":1,"a":[["ComplexPortal%3ACPX-4888","DNA-directed RNA polymerase holoenzyme complex, Sigma fecI variant"],["ComplexPortal%3ACPX-4884","DNA-directed RNA polymerase holoenzyme complex, Sigma54 variant"],["ComplexPortal%3ACPX-4881","DNA-directed RNA polymerase holoenzyme complex, Sigma70 variant"],["ComplexPortal%3ACPX-4885","DNA-directed RNA polymerase holoenzyme complex, SigmaE variant"],["ComplexPortal%3ACPX-4886","DNA-directed RNA polymerase holoenzyme complex, SigmaF variant"],["ComplexPortal%3ACPX-4887","DNA-directed RNA polymerase holoenzyme complex, SigmaH variant"]],"b":[["polyketides/rifamycin-sv.yaml","rifamycin SV"]]},{"id":"UniProt:P31749","l":"","na":46,"nb":1,"a":[["ComplexPortal%3ACPX-22352","-"],["ComplexPortal%3ACPX-24286","-"],["GO%3A0099104","potassium channel activator activity"],["GO%3A1904841","TORC2 complex binding"],["GO%3A0006924","activation-induced cell death of T cells"],["GO%3A0043276","anoikis"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P07900","l":"","na":45,"nb":1,"a":[["ComplexPortal%3ACPX-12937","-"],["ComplexPortal%3ACPX-14751","-"],["ComplexPortal%3ACPX-15245","-"],["ComplexPortal%3ACPX-17900","-"],["ComplexPortal%3ACPX-18328","-"],["ComplexPortal%3ACPX-19396","-"]],"b":[["polyketides/radicicol.yaml","radicicol"]]},{"id":"NCBITaxon:243277","l":"Vibrio cholerae serotype O1 (strain ATCC 39315 / El Tor Inaba N16961)","na":44,"nb":1,"a":[["IDPO%3A0000011","disorder to order"],["IDPO%3A0000014","order to disorder"],["Pfam%3APF16671","Actin cross-linking domain"],["Pfam%3APF00842","Alanine racemase, C-terminal domain"],["Pfam%3APF06228","Haem utilisation ChuX/HutX"],["Pfam%3APF19425","Csd3 second domain"]],"b":[["alkaloids/vibriobactin-2.yaml","vibriobactin"]]},{"id":"UniProt:P25054","l":"","na":44,"nb":1,"a":[["ComplexPortal%3ACPX-107","Beta-catenin destruction core complex, APC-AXIN1-GSK3A variant"],["ComplexPortal%3ACPX-109","Beta-catenin destruction core complex, APC-AXIN1-GSK3B variant"],["ComplexPortal%3ACPX-441","Beta-catenin destruction core complex, APC-AXIN2-GSK3A variant"],["ComplexPortal%3ACPX-439","Beta-catenin destruction core complex, APC-AXIN2-GSK3B variant"],["ComplexPortal%3ACPX-12016","-"],["ComplexPortal%3ACPX-14403","-"]],"b":[["alkaloids/toxoflavin.yaml","toxoflavin"]]},{"id":"UniProt:P09917","l":"","na":42,"nb":1,"a":[["EC%3A1.13.11.34","arachidonate 5-lipoxygenase"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"],["RHEA%3A32307","(5Z,8Z,11Z,14Z)-eicosatetraenoate + O2 = leukotriene A4 + H2O"],["ComplexPortal%3ACPX-15832","-"],["ComplexPortal%3ACPX-18202","-"],["ComplexPortal%3ACPX-20365","-"]],"b":[["alkaloids/myxochelin-a.yaml","myxochelin A"]]},{"id":"UniProt:Q9UBN7","l":"","na":38,"nb":1,"a":[["EC%3A3.5.1.-","In linear amides"],["ComplexPortal%3ACPX-11040","-"],["ComplexPortal%3ACPX-17348","-"],["ComplexPortal%3ACPX-19115","-"],["ComplexPortal%3ACPX-25368","-"],["ComplexPortal%3ACPX-25485","-"]],"b":[["amino_acids_and_peptides/apicidin.yaml","apicidin"]]},{"id":"UniProt:Q04771","l":"","na":37,"nb":1,"a":[["ComplexPortal%3ACPX-11394","-"],["ComplexPortal%3ACPX-11893","-"],["ComplexPortal%3ACPX-14842","-"],["ComplexPortal%3ACPX-15036","-"],["ComplexPortal%3ACPX-17430","-"],["ComplexPortal%3ACPX-18135","-"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P06493","l":"","na":36,"nb":1,"a":[["ComplexPortal%3ACPX-10673","-"],["ComplexPortal%3ACPX-11851","-"],["ComplexPortal%3ACPX-13027","-"],["ComplexPortal%3ACPX-15730","-"],["ComplexPortal%3ACPX-19796","-"],["ComplexPortal%3ACPX-21602","-"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P18031","l":"","na":35,"nb":1,"a":[["ComplexPortal%3ACPX-26130","-"],["GO%3A0098554","cytoplasmic side of endoplasmic reticulum membrane"],["GO%3A0031904","endosome lumen"],["GO%3A0030061","mitochondrial crista"],["GO%3A0097443","sorting endosome"],["GO%3A0046875","ephrin receptor binding"]],"b":[["terpenoids/lupeol.yaml","lupeol"]]},{"id":"UniProt:P09619","l":"","na":34,"nb":1,"a":[["ComplexPortal%3ACPX-11721","-"],["ComplexPortal%3ACPX-18342","-"],["ComplexPortal%3ACPX-18512","-"],["ComplexPortal%3ACPX-22260","-"],["ComplexPortal%3ACPX-25686","-"],["ComplexPortal%3ACPX-2892","PDGF receptor alpha-beta - PDGF-AB complex"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P62942","l":"","na":33,"nb":1,"a":[["ComplexPortal%3ACPX-15625","-"],["ComplexPortal%3ACPX-17368","-"],["GO%3A0098562","cytoplasmic side of membrane"],["GO%3A1990425","ryanodine receptor complex"],["GO%3A0016529","sarcoplasmic reticulum"],["GO%3A0033017","sarcoplasmic reticulum membrane"]],"b":[["polyketides/sirolimus.yaml","sirolimus"]]},{"id":"UniProt:P07711","l":"","na":31,"nb":1,"a":[["ComplexPortal%3ACPX-10815","-"],["ComplexPortal%3ACPX-12146","-"],["ComplexPortal%3ACPX-12243","-"],["ComplexPortal%3ACPX-18379","-"],["ComplexPortal%3ACPX-23732","-"],["ComplexPortal%3ACPX-23795","-"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"UniProt:P08238","l":"","na":31,"nb":1,"a":[["ComplexPortal%3ACPX-12937","-"],["ComplexPortal%3ACPX-15245","-"],["ComplexPortal%3ACPX-17900","-"],["ComplexPortal%3ACPX-18328","-"],["ComplexPortal%3ACPX-19396","-"],["ComplexPortal%3ACPX-23773","-"]],"b":[["polyketides/radicicol.yaml","radicicol"]]},{"id":"UniProt:P16234","l":"","na":30,"nb":1,"a":[["ComplexPortal%3ACPX-11080","-"],["ComplexPortal%3ACPX-11911","-"],["ComplexPortal%3ACPX-21238","-"],["ComplexPortal%3ACPX-23986","-"],["ComplexPortal%3ACPX-25630","-"],["ComplexPortal%3ACPX-2892","PDGF receptor alpha-beta - PDGF-AB complex"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"]]},{"id":"UniProt:P36897","l":"","na":30,"nb":1,"a":[["ComplexPortal%3ACPX-529","TGF-beta-1-TGFR complex"],["ComplexPortal%3ACPX-834","TGF-beta-2-TGFR complex"],["ComplexPortal%3ACPX-2544","TGF-beta-3-TGFR complex"],["GO%3A0048179","activin receptor complex"],["GO%3A0048185","activin binding"],["GO%3A0016361","activin receptor activity, type I"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":29,"nb":1,"a":[["Pfam%3APF09156","Anthrax toxin lethal factor, middle domain"],["Pfam%3APF08401","N-terminal domain of anti-restriction factor ArdC"],["Pfam%3APF07737","Anthrax toxin lethal factor, N- and C-terminal domain"],["Pfam%3APF27053","Bacillus anthracis plasmid pXO2 protein 26"],["Pfam%3APF13205","Bacterial Ig-like domain"],["Pfam%3APF17475","Clostridial binary toxin B/anthrax toxin PA domain 2"]],"b":[["alkaloids/petrobactin.yaml","petrobactin"]]},{"id":"UniProt:P00747","l":"","na":29,"nb":1,"a":[["ComplexPortal%3ACPX-11986","-"],["ComplexPortal%3ACPX-14765","-"],["ComplexPortal%3ACPX-15280","-"],["ComplexPortal%3ACPX-16758","-"],["ComplexPortal%3ACPX-17221","-"],["ComplexPortal%3ACPX-19201","-"]],"b":[["alkaloids/congocidine.yaml","congocidine"]]},{"id":"CHEBI:57743","l":"","na":28,"nb":1,"a":[["EC%3A1.14.13.39","nitric-oxide synthase (NADPH)"],["EC%3A1.14.14.47","nitric-oxide synthase (flavodoxin)"],["EC%3A2.1.3.3","ornithine carbamoyltransferase"],["EC%3A3.5.1.20","citrullinase"],["EC%3A3.5.3.18","dimethylargininase"],["EC%3A3.5.3.6","arginine deiminase"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"UniProt:P00156","l":"","na":27,"nb":1,"a":[["ComplexPortal%3ACPX-13288","-"],["ComplexPortal%3ACPX-13705","-"],["ComplexPortal%3ACPX-14252","-"],["ComplexPortal%3ACPX-15275","-"],["ComplexPortal%3ACPX-15481","-"],["ComplexPortal%3ACPX-19909","-"]],"b":[["unclassified/antimycin-a1b.yaml","antimycin A1B"]]},{"id":"UniProt:P56524","l":"","na":27,"nb":1,"a":[["ComplexPortal%3ACPX-10863","-"],["ComplexPortal%3ACPX-10978","-"],["ComplexPortal%3ACPX-11176","-"],["ComplexPortal%3ACPX-11281","-"],["ComplexPortal%3ACPX-12671","-"],["ComplexPortal%3ACPX-12759","-"]],"b":[["amino_acids_and_peptides/apicidin.yaml","apicidin"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":26,"nb":1,"a":[["Pfam%3APF27270","Alr1449"],["Pfam%3APF27301","Alr2735 N-terminal domain"],["Pfam%3APF27288","Alr2735"],["Pfam%3APF21571","Arginine dihydrolase ArgZ-like, C-terminal, first region"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF13205","Bacterial Ig-like domain"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"]]},{"id":"UniProt:P48736","l":"","na":26,"nb":1,"a":[["ComplexPortal%3ACPX-5986","Phosphatidylinositol 3-kinase complex class IB, p110gamma/p101"],["ComplexPortal%3ACPX-5987","Phosphatidylinositol 3-kinase complex class IB, p110gamma/p87"],["GO%3A0005943","phosphatidylinositol 3-kinase complex, class IA"],["GO%3A0005944","phosphatidylinositol 3-kinase complex, class IB"],["GO%3A0046934","1-phosphatidylinositol-4,5-bisphosphate 3-kinase activity"],["GO%3A0035005","1-phosphatidylinositol-4-phosphate 3-kinase activity"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P53350","l":"","na":26,"nb":1,"a":[["ComplexPortal%3ACPX-14028","-"],["ComplexPortal%3ACPX-17085","-"],["ComplexPortal%3ACPX-19451","-"],["GO%3A0010997","anaphase-promoting complex binding"],["GO%3A0097681","double-strand break repair via alternative nonhomologous end joining"],["GO%3A0048313","Golgi inheritance"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P29466","l":"","na":25,"nb":1,"a":[["ComplexPortal%3ACPX-4142","AIM2 inflammasome"],["ComplexPortal%3ACPX-10594","-"],["ComplexPortal%3ACPX-13219","-"],["ComplexPortal%3ACPX-13566","-"],["ComplexPortal%3ACPX-21295","-"],["ComplexPortal%3ACPX-21498","-"]],"b":[["alkaloids/toxoflavin.yaml","toxoflavin"]]},{"id":"UniProt:Q03181","l":"","na":25,"nb":1,"a":[["ComplexPortal%3ACPX-12990","-"],["ComplexPortal%3ACPX-17750","-"],["ComplexPortal%3ACPX-18139","-"],["ComplexPortal%3ACPX-19679","-"],["ComplexPortal%3ACPX-24893","-"],["GO%3A0070539","linoleic acid binding"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"NCBITaxon:2925","l":"Alexandrium catenella","na":24,"nb":1,"a":[["TED%3AAF-A0A7S1KY03-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1KY03-F1-model_v4_TED01"],["TED%3AAF-A0A7S1L1S9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S1L1S9-F1-model_v4_TED02"],["TED%3AAF-A0A7S1ML43-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1ML43-F1-model_v4_TED01"],["TED%3AAF-A0A7S1PQ85-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1PQ85-F1-model_v4_TED01"],["TED%3AAF-A0A7S1QA17-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A7S1QA17-F1-model_v4_TED05"],["TED%3AAF-A0A7S1QL55-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S1QL55-F1-model_v4_TED03"]],"b":[["alkaloids/saxitoxin.yaml","saxitoxin"]]},{"id":"NCBITaxon:73915","l":"Pyrodinium bahamense","na":24,"nb":1,"a":[["TED%3AAF-A0A7S0A4R5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0A4R5-F1-model_v4_TED01"],["TED%3AAF-A0A7S0AC67-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0AC67-F1-model_v4_TED01"],["TED%3AAF-A0A7S0APM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0APM3-F1-model_v4_TED01"],["TED%3AAF-A0A7S0AQ53-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0AQ53-F1-model_v4_TED01"],["TED%3AAF-A0A7S0AX35-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0AX35-F1-model_v4_TED01"],["TED%3AAF-A0A7S0B705-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S0B705-F1-model_v4_TED02"]],"b":[["alkaloids/saxitoxin.yaml","saxitoxin"]]},{"id":"UniProt:O00444","l":"","na":24,"nb":1,"a":[["ComplexPortal%3ACPX-1299","CEP152-PLK4 complex"],["ComplexPortal%3ACPX-1161","CEP192-PLK4 complex"],["GO%3A0098536","deuterosome"],["GO%3A0120098","procentriole"],["GO%3A0098535","de novo centriole assembly involved in multi-ciliated epithelial cell differentiation"],["GO%3A0046601","positive regulation of centriole replication"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P23284","l":"","na":24,"nb":1,"a":[["ComplexPortal%3ACPX-11676","-"],["ComplexPortal%3ACPX-12341","-"],["ComplexPortal%3ACPX-12626","-"],["ComplexPortal%3ACPX-13324","-"],["ComplexPortal%3ACPX-14387","-"],["ComplexPortal%3ACPX-17992","-"]],"b":[["amino_acids_and_peptides/cyclosporin-a.yaml","cyclosporin A"]]},{"id":"NCBITaxon:40559","l":"Botrytis cinerea","na":1,"nb":23,"a":[["Pfam%3APF08883","Dopa 4,5-dioxygenase family"]],"b":[["terpenoids/1-epibotrydial.yaml","1-epibotrydial"],["terpenoids/10-dehydroxy-dihydrobotrydialone.yaml","10-dehydroxy dihydrobotrydialone"],["terpenoids/10-epi-dihydrobotrydial.yaml","10-epi-dihydrobotrydial"],["terpenoids/10-oxo-dihydrobotrydial.yaml","10-Oxo-dihydrobotrydial"],["terpenoids/10-oxodehydrodihydrobotrydial.yaml","10-Oxodehydrodihydrobotrydial"],["terpenoids/10-oxodihydrobotry-1-9-4-5-diendial.yaml","10-Oxodihydrobotry-1(9),4(5)-diendial"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":23,"nb":1,"a":[["Pfam%3APF09255","Caf1 Capsule antigen"],["Pfam%3APF02611","CDP-diacylglycerol pyrophosphatase"],["Pfam%3APF07411","Domain of unknown function (DUF1508)"],["Pfam%3APF05171","Haemin-degrading HemS.ChuX domain"],["Pfam%3APF21500","DNA polymerase III subunit delta', AAA+ ATPase lid domain"],["Pfam%3APF11004","3-deoxy-D-manno-oct-2-ulosonic acid (Kdo) hydroxylase"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"UniProt:O00763","l":"","na":23,"nb":1,"a":[["ComplexPortal%3ACPX-12392","-"],["ComplexPortal%3ACPX-13685","-"],["ComplexPortal%3ACPX-15849","-"],["ComplexPortal%3ACPX-19952","-"],["ComplexPortal%3ACPX-20498","-"],["ComplexPortal%3ACPX-20638","-"]],"b":[["polyketides/soraphen-a.yaml","soraphen A"]]},{"id":"UniProt:P12830","l":"","na":23,"nb":1,"a":[["ComplexPortal%3ACPX-12016","-"],["ComplexPortal%3ACPX-14403","-"],["ComplexPortal%3ACPX-16015","-"],["ComplexPortal%3ACPX-16575","-"],["ComplexPortal%3ACPX-17484","-"],["ComplexPortal%3ACPX-23131","-"]],"b":[["alkaloids/toxoflavin.yaml","toxoflavin"]]},{"id":"UniProt:P24385","l":"","na":23,"nb":1,"a":[["ComplexPortal%3ACPX-10673","-"],["ComplexPortal%3ACPX-18871","-"],["ComplexPortal%3ACPX-20404","-"],["ComplexPortal%3ACPX-21602","-"],["ComplexPortal%3ACPX-26221","-"],["ComplexPortal%3ACPX-26273","-"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"]]},{"id":"UniProt:Q15119","l":"","na":23,"nb":1,"a":[["ComplexPortal%3ACPX-11733","-"],["ComplexPortal%3ACPX-12952","-"],["ComplexPortal%3ACPX-15696","-"],["ComplexPortal%3ACPX-16639","-"],["ComplexPortal%3ACPX-16656","-"],["ComplexPortal%3ACPX-17227","-"]],"b":[["polyketides/radicicol.yaml","radicicol"]]},{"id":"CHEBI:27547","l":"zeaxanthin","na":22,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_27547","requires zeaxanthin"],["EC%3A1.13.11.65","carotenoid isomerooxygenase"],["EC%3A1.13.11.84","crocetin dialdehyde synthase"],["EC%3A1.14.15.21","zeaxanthin epoxidase"],["EC%3A1.14.15.24","beta-carotene 3-hydroxylase"],["EC%3A1.14.99.64","zeaxanthin 4-ketolase"]],"b":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]]},{"id":"NCBITaxon:394","l":"Sinorhizobium fredii (strain NBRC 101917 / NGR234)","na":22,"nb":1,"a":[["Pfam%3APF17841","BID domain of Bartonella effector protein (Bep)"],["Pfam%3APF04255","Protein of unknown function (DUF433)"],["Pfam%3APF18480","Domain of unknown function (DUF5615)"],["Pfam%3APF20008","Domain of unknown function (DUF6429)"],["Pfam%3APF24134","Domain of unknown function (DUF7401)"],["Pfam%3APF18728","AbiV"]],"b":[["terpenoids/gibberellin.yaml","gibberellin"]]},{"id":"UniProt:P42858","l":"","na":22,"nb":1,"a":[["ComplexPortal%3ACPX-25173","-"],["ComplexPortal%3ACPX-11549","Huntingtin-HAP40 endosomal complex"],["GO%3A0005522","profilin binding"],["GO%3A1905337","positive regulation of aggrephagy"],["GO%3A1905291","positive regulation of CAMKK-AMPK signaling cascade"],["GO%3A1904504","positive regulation of lipophagy"]],"b":[["unclassified/antimycin-a.yaml","antimycin A"]]},{"id":"UniProt:P68400","l":"","na":22,"nb":1,"a":[["ComplexPortal%3ACPX-2437","Casein kinase II complex, CSNK2A1-CNSK2A2 variant"],["ComplexPortal%3ACPX-914","Casein kinase II complex, CSNK2A1 variant"],["ComplexPortal%3ACPX-11941","-"],["ComplexPortal%3ACPX-12009","-"],["ComplexPortal%3ACPX-12888","-"],["ComplexPortal%3ACPX-14603","-"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"UniProt:Q24451","l":"","na":22,"nb":1,"a":[["GO%3A0015923","mannosidase activity"],["GO%3A0004572","mannosyl-oligosaccharide 1,3-1,6-alpha-mannosidase activity"],["GO%3A0035010","encapsulation of foreign target"],["GO%3A1904381","Golgi apparatus N-glycan mannose trimming"],["GO%3A0016063","rhodopsin biosynthetic process"],["CDD%3Acd10809","GH38N_AMII_GMII_SfManIII_like"]],"b":[["alkaloids/swainsonine.yaml","swainsonine"]]},{"id":"NCBITaxon:243265","l":"Photorhabdus laumondii subsp. laumondii TTO1","na":1,"nb":21,"a":[["Pfam%3APF07927","HicA toxin of bacterial toxin-antitoxin,"]],"b":[["amino_acids_and_peptides/gamexpeptide-c.yaml","gamexpeptide C"],["amino_acids_and_peptides/luminmycin-a.yaml","luminmycin A"],["amino_acids_and_peptides/ririwpeptide-a.yaml","ririwpeptide A"],["amino_acids_and_peptides/ririwpeptide-b.yaml","ririwpeptide B"],["carbohydrates/oligosaccharide-1-glcnac-1-4-1-6-anhydro-glcnac.yaml","oligosaccharide 1 (GlcNAc-β(1-4)-1,6-anhydro-β-GlcNAc)"],["carbohydrates/oligosaccharide-2-glcnac-1-4-glcnac-1-4-1-6-anhydro-glcnac.yaml","oligosaccharide 2 (GlcNAc-β(1-4)-GlcNAc-β(1-4)-1,6-anhydro-β-GlcNAc)"]]},{"id":"UniProt:O14757","l":"","na":21,"nb":1,"a":[["ComplexPortal%3ACPX-26328","Chromatin regulation assembly"],["ComplexPortal%3ACPX-10797","-"],["ComplexPortal%3ACPX-11546","-"],["ComplexPortal%3ACPX-14608","-"],["ComplexPortal%3ACPX-15285","-"],["ComplexPortal%3ACPX-15872","-"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P00749","l":"","na":21,"nb":1,"a":[["EC%3A3.4.21.73","u-plasminogen activator"],["ComplexPortal%3ACPX-483","uPA-PAI-1 complex"],["ComplexPortal%3ACPX-487","uPA-uPAR complex"],["ComplexPortal%3ACPX-501","uPA-uPAR-vitronectin complex"],["GO%3A1905370","serine-type endopeptidase complex"],["GO%3A0010757","negative regulation of plasminogen activation"]],"b":[["alkaloids/congocidine.yaml","congocidine"]]},{"id":"UniProt:P12268","l":"","na":21,"nb":1,"a":[["ComplexPortal%3ACPX-10668","-"],["ComplexPortal%3ACPX-16204","-"],["ComplexPortal%3ACPX-19278","-"],["ComplexPortal%3ACPX-20073","-"],["ComplexPortal%3ACPX-23201","-"],["ComplexPortal%3ACPX-24150","-"]],"b":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"]]},{"id":"UniProt:P20839","l":"","na":21,"nb":1,"a":[["ComplexPortal%3ACPX-11065","-"],["ComplexPortal%3ACPX-13142","-"],["ComplexPortal%3ACPX-14906","-"],["ComplexPortal%3ACPX-14944","-"],["ComplexPortal%3ACPX-18455","-"],["ComplexPortal%3ACPX-19278","-"]],"b":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"]]},{"id":"UniProt:P49760","l":"","na":21,"nb":1,"a":[["ComplexPortal%3ACPX-11057","-"],["ComplexPortal%3ACPX-12352","-"],["ComplexPortal%3ACPX-13888","-"],["ComplexPortal%3ACPX-15887","-"],["ComplexPortal%3ACPX-18111","-"],["ComplexPortal%3ACPX-18764","-"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P00918","l":"","na":20,"nb":1,"a":[["RHEA%3A10748","hydrogencarbonate + H(+) = CO2 + H2O"],["ComplexPortal%3ACPX-14819","-"],["ComplexPortal%3ACPX-22076","-"],["ComplexPortal%3ACPX-23290","-"],["ComplexPortal%3ACPX-24928","-"],["GO%3A0004089","carbonate dehydratase activity"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:P03372","l":"","na":20,"nb":1,"a":[["ComplexPortal%3ACPX-19787","-"],["ComplexPortal%3ACPX-21796","-"],["ComplexPortal%3ACPX-5156","ERalpha-NCOA2 activated estrogen receptor complex"],["GO%3A0034056","estrogen response element binding"],["GO%3A0030284","nuclear estrogen receptor activity"],["GO%3A0030520","estrogen receptor signaling pathway"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:P11362","l":"","na":20,"nb":1,"a":[["ComplexPortal%3ACPX-13057","-"],["ComplexPortal%3ACPX-18540","-"],["ComplexPortal%3ACPX-19802","-"],["ComplexPortal%3ACPX-21241","-"],["ComplexPortal%3ACPX-21995","-"],["GO%3A0005007","fibroblast growth factor receptor activity"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:Q16706","l":"","na":20,"nb":1,"a":[["EC%3A3.2.1.114","mannosyl-oligosaccharide 1,3-1,6-alpha-mannosidase"],["RHEA%3A56052","N(4)-{beta-D-GlcNAc-(1->2)-alpha-D-Man-(1->3)-[alpha-D-Man-(1->3)-[alpha-D-Man-(1->6)]-alpha-D-Man-(1->6)]-beta-D-Man-(1->4)-beta-D-GlcNAc-(1->4)-beta-D-GlcNAc}-L-asparaginyl-[protein] + 2 H2O = 2 alpha-D-mannopyranose + an N(4)-{beta-D-GlcNAc-(1->2)-alpha-D-Man-(1->3)-[alpha-D-Man-(1->6)]-beta-D-Man-(1->4)-beta-D-GlcNAc-(1->4)-beta-D-GlcNAc}-L-asparaginyl-[protein]"],["ComplexPortal%3ACPX-12202","-"],["ComplexPortal%3ACPX-15107","-"],["ComplexPortal%3ACPX-22647","-"],["GO%3A0016799","hydrolase activity, hydrolyzing N-glycosyl compounds"]],"b":[["alkaloids/swainsonine.yaml","swainsonine"]]},{"id":"UniProt:P07333","l":"","na":19,"nb":1,"a":[["ComplexPortal%3ACPX-22260","-"],["ComplexPortal%3ACPX-10333","IL34-CSF1R complex"],["ComplexPortal%3ACPX-25717","Macrophage colony-stimulating factor-1 receptor-ligand complex"],["GO%3A1990682","CSF1-CSF1R complex"],["GO%3A0005011","macrophage colony-stimulating factor receptor activity"],["GO%3A0036006","cellular response to macrophage colony-stimulating factor stimulus"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P35968","l":"","na":19,"nb":1,"a":[["GO%3A0097443","sorting endosome"],["GO%3A0038085","vascular endothelial growth factor binding"],["GO%3A0005021","vascular endothelial growth factor receptor activity"],["GO%3A1904881","cellular response to hydrogen sulfide"],["GO%3A0003157","endocardium development"],["GO%3A0141150","positive regulation of nitric oxide-cGMP mediated signal transduction"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:Q96QE3","l":"","na":19,"nb":1,"a":[["ComplexPortal%3ACPX-11703","-"],["ComplexPortal%3ACPX-13085","-"],["ComplexPortal%3ACPX-14089","-"],["ComplexPortal%3ACPX-14271","-"],["ComplexPortal%3ACPX-16564","-"],["ComplexPortal%3ACPX-17722","-"]],"b":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]]},{"id":"UniProt:Q05513","l":"","na":18,"nb":1,"a":[["ComplexPortal%3ACPX-10855","-"],["ComplexPortal%3ACPX-16356","-"],["ComplexPortal%3ACPX-18654","-"],["ComplexPortal%3ACPX-18746","-"],["ComplexPortal%3ACPX-22762","-"],["ComplexPortal%3ACPX-23337","-"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:Q12809","l":"","na":18,"nb":1,"a":[["ComplexPortal%3ACPX-12423","-"],["ComplexPortal%3ACPX-16470","-"],["ComplexPortal%3ACPX-16985","-"],["ComplexPortal%3ACPX-21446","-"],["ComplexPortal%3ACPX-22668","-"],["ComplexPortal%3ACPX-3072","Voltage-gated potassium channel complex variant 1"]],"b":[["unclassified/teixobactin.yaml","teixobactin"]]},{"id":"UniProt:O94760","l":"","na":17,"nb":1,"a":[["EC%3A3.5.3.18","dimethylargininase"],["ComplexPortal%3ACPX-11521","-"],["ComplexPortal%3ACPX-12381","-"],["ComplexPortal%3ACPX-13858","-"],["ComplexPortal%3ACPX-15777","-"],["ComplexPortal%3ACPX-18623","-"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"UniProt:P24864","l":"","na":17,"nb":1,"a":[["ComplexPortal%3ACPX-10673","-"],["ComplexPortal%3ACPX-11851","-"],["ComplexPortal%3ACPX-13027","-"],["ComplexPortal%3ACPX-19796","-"],["ComplexPortal%3ACPX-20481","-"],["ComplexPortal%3ACPX-21602","-"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"]]},{"id":"CHEBI:17579","l":"β-carotene","na":16,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17579","requires β-carotene"],["EC%3A1.13.11.63","beta-carotene 15,15'-dioxygenase"],["EC%3A1.13.11.71","carotenoid-9',10'-cleaving dioxygenase"],["EC%3A1.14.15.24","beta-carotene 3-hydroxylase"],["EC%3A1.14.99.63","beta-carotene 4-ketolase"],["EC%3A5.2.1.14","beta-carotene isomerase"]],"b":[["terpenoids/carotene.yaml","β-carotene"]]},{"id":"UniProt:P01215","l":"","na":16,"nb":1,"a":[["ComplexPortal%3ACPX-748","Chorionic gonadotropin hormone complex"],["ComplexPortal%3ACPX-14986","-"],["ComplexPortal%3ACPX-16532","-"],["ComplexPortal%3ACPX-19116","-"],["ComplexPortal%3ACPX-23467","-"],["ComplexPortal%3ACPX-665","Follicle-stimulating hormone complex"]],"b":[["amino_acids_and_peptides/ditryptophenaline.yaml","(-)-ditryptophenaline"]]},{"id":"UniProt:P11086","l":"","na":16,"nb":1,"a":[["EC%3A2.1.1.28","phenylethanolamine N-methyltransferase"],["RHEA%3A25269","(R)-noradrenaline + S-adenosyl-L-methionine = (R)-adrenaline + S-adenosyl-L-homocysteine + H(+)"],["ComplexPortal%3ACPX-11076","-"],["ComplexPortal%3ACPX-14242","-"],["ComplexPortal%3ACPX-17963","-"],["ComplexPortal%3ACPX-21796","-"]],"b":[["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"UniProt:Q9H4B4","l":"","na":16,"nb":1,"a":[["GO%3A0007113","endomitotic cell cycle"],["GO%3A0090166","Golgi disassembly"],["GO%3A0044819","mitotic G1/S transition checkpoint signaling"],["GO%3A1904716","positive regulation of chaperone-mediated autophagy"],["CDD%3Acd14189","STKc_PLK3"],["CDD%3Acd13118","POLO_box_1"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:5127","l":"Fusarium fujikuroi","na":1,"nb":15,"a":[["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"]],"b":[["alkaloids/fusaric-acid.yaml","fusaric acid"],["alkaloids/fusarin-c.yaml","fusarin C"],["polyketides/bikaverin.yaml","bikaverin"],["polyketides/fujikurin-c.yaml","fujikurin C"],["polyketides/fujikurin-d.yaml","fujikurin D"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"]]},{"id":"UniProt:P11511","l":"","na":15,"nb":1,"a":[["ComplexPortal%3ACPX-11590","-"],["ComplexPortal%3ACPX-12153","-"],["ComplexPortal%3ACPX-14456","-"],["ComplexPortal%3ACPX-20752","-"],["ComplexPortal%3ACPX-20895","-"],["ComplexPortal%3ACPX-20967","-"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:P21964","l":"","na":15,"nb":1,"a":[["ComplexPortal%3ACPX-13290","-"],["ComplexPortal%3ACPX-13949","-"],["ComplexPortal%3ACPX-14233","-"],["ComplexPortal%3ACPX-14264","-"],["ComplexPortal%3ACPX-19464","-"],["ComplexPortal%3ACPX-26179","-"]],"b":[["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"UniProt:P22748","l":"","na":15,"nb":1,"a":[["ComplexPortal%3ACPX-17339","-"],["ComplexPortal%3ACPX-17919","-"],["ComplexPortal%3ACPX-18486","-"],["ComplexPortal%3ACPX-19014","-"],["ComplexPortal%3ACPX-23066","-"],["ComplexPortal%3ACPX-23243","-"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:Q02779","l":"","na":15,"nb":1,"a":[["ComplexPortal%3ACPX-10957","-"],["ComplexPortal%3ACPX-11452","-"],["ComplexPortal%3ACPX-11502","-"],["ComplexPortal%3ACPX-11859","-"],["ComplexPortal%3ACPX-13254","-"],["ComplexPortal%3ACPX-13493","-"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":14,"nb":1,"a":[["Pfam%3APF03703","Bacterial PH domain"],["Pfam%3APF01322","Cytochrome C'"],["Pfam%3APF03139","Vanadium/alternative nitrogenase delta subunit"],["Pfam%3APF09527","Putative F0F1-ATPase subunit Ca2+/Mg2+ transporter"],["Pfam%3APF03270","Protein of unknown function, DUF269"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"]],"b":[["alkaloids/molybdenum-cofactor.yaml","molybdenum cofactor"]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":1,"nb":14,"a":[["Pfam%3APF26312","Domain of unknown function (DUF8083)"]],"b":[["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/framycetin.yaml","framycetin"],["carbohydrates/neomycin-c.yaml","neomycin C"],["carbohydrates/paromomycin.yaml","paromomycin"]]},{"id":"NCBITaxon:58346","l":"Streptomyces platensis","na":1,"nb":14,"a":[["PROSITE%3APS00999","Streptomyces subtilisin-type inhibitors signature"]],"b":[["alkaloids/13-epi-dorrigocin-a.yaml","13-epi-dorrigocin A"],["alkaloids/17-hydroxy-8-desmethoxy-isomigrastatin.yaml","17-hydroxy-8-desmethoxy-isomigrastatin"],["alkaloids/dorrigocin-a.yaml","dorrigocin A"],["alkaloids/dorrigocin-b.yaml","dorrigocin B"],["alkaloids/iso-migrastatin.yaml","iso-migrastatin"],["alkaloids/staurosporine.yaml","staurosporine"]]},{"id":"NCBITaxon:9986","l":"Oryctolagus cuniculus","na":14,"nb":1,"a":[["IDPO%3A0000018","disorder to molten globule"],["IDPO%3A0000023","pre-molten globule to molten globule"],["Pfam%3APF27603","AKAP9-like coiled-coil region"],["Pfam%3APF17860","RK-1-like defensin"],["Pfam%3APF14965","Negative regulator of p53/TP53"],["PROSITE%3APS00328","HCP repeats signature"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P27169","l":"","na":14,"nb":1,"a":[["ComplexPortal%3ACPX-10649","-"],["ComplexPortal%3ACPX-12297","-"],["ComplexPortal%3ACPX-16876","-"],["ComplexPortal%3ACPX-25382","-"],["GO%3A0102007","acyl-L-homoserine-lactone lactonohydrolase activity"],["GO%3A0004063","aryldialkylphosphatase activity"]],"b":[["carbohydrates/lincomycin.yaml","lincomycin"]]},{"id":"UniProt:P80192","l":"","na":14,"nb":1,"a":[["ComplexPortal%3ACPX-10957","-"],["ComplexPortal%3ACPX-11452","-"],["ComplexPortal%3ACPX-11502","-"],["ComplexPortal%3ACPX-13254","-"],["ComplexPortal%3ACPX-13493","-"],["ComplexPortal%3ACPX-14473","-"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"]]},{"id":"UniProt:Q9NYY3","l":"","na":14,"nb":1,"a":[["ComplexPortal%3ACPX-18657","-"],["GO%3A0071866","negative regulation of apoptotic process in bone marrow cell"],["CDD%3Acd14188","STKc_PLK2"],["CDD%3Acd13118","POLO_box_1"],["CDD%3Acd13117","POLO_box_2"],["InterPro%3AIPR033701","First polo-box domain"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":13,"nb":1,"a":[["Pfam%3APF07832","Cfr10I/Bse634I restriction endonuclease"],["Pfam%3APF22348","Colicin-A N-terminal domain"],["Pfam%3APF01024","Colicin pore forming domain"],["Pfam%3APF18427","DD-reactivating factor swiveling domain"],["Pfam%3APF02286","Dehydratase large subunit"],["Pfam%3APF02288","Dehydratase medium subunit"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:644","l":"Aeromonas hydrophila","na":13,"nb":1,"a":[["Pfam%3APF01117","Aerolysin toxin"],["Pfam%3APF03440","Aerolysin/Pertussis toxin (APT) domain"],["Pfam%3APF21327","GspA, peptidase C39-like domain"],["Pfam%3APF04231","Endonuclease I"],["PROSITE%3APS01092","Adenylate cyclase class-I signature 1"],["PROSITE%3APS01093","Adenylate cyclase class-I signature 2"]],"b":[["amino_acids_and_peptides/amonabactin-p-750.yaml","amonabactin P 750"]]},{"id":"UniProt:O00754","l":"","na":13,"nb":1,"a":[["ComplexPortal%3ACPX-15965","-"],["ComplexPortal%3ACPX-19551","-"],["ComplexPortal%3ACPX-20291","-"],["ComplexPortal%3ACPX-26077","-"],["ComplexPortal%3ACPX-26144","-"],["CDD%3Acd10810","GH38N_AMII_LAM_like"]],"b":[["alkaloids/swainsonine.yaml","swainsonine"]]},{"id":"UniProt:O15530","l":"","na":13,"nb":1,"a":[["ComplexPortal%3ACPX-13979","-"],["ComplexPortal%3ACPX-20891","-"],["ComplexPortal%3ACPX-24544","-"],["GO%3A0004676","3-phosphoinositide-dependent protein kinase activity"],["GO%3A0141124","intracellular signaling cassette"],["GO%3A0043304","regulation of mast cell degranulation"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:Q14749","l":"","na":13,"nb":1,"a":[["EC%3A2.1.1.20","glycine N-methyltransferase"],["RHEA%3A19937","glycine + S-adenosyl-L-methionine = sarcosine + S-adenosyl-L-homocysteine + H(+)"],["ComplexPortal%3ACPX-10845","-"],["ComplexPortal%3ACPX-14981","-"],["ComplexPortal%3ACPX-21780","-"],["ComplexPortal%3ACPX-22832","-"]],"b":[["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"NCBITaxon:60172","l":"Penicillium solitum","na":1,"nb":12,"a":[["TED%3AAF-A0A1V6R6Y6-F1-model_v4_TED01","TED novel fold AF-A0A1V6R6Y6-F1-model_v4_TED01"]],"b":[["polyketides/dihydrobisvertinolone.yaml","dihydrobisvertinolone"],["polyketides/sorbicillin.yaml","sorbicillin"],["polyketides/terrestric-acid.yaml","terrestric acid"],["polyketides/tetrahydrobisvertinolone.yaml","tetrahydrobisvertinolone"],["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"],["unclassified/penitrem-a.yaml","penitrem A"]]},{"id":"UniProt:P05129","l":"","na":12,"nb":1,"a":[["ComplexPortal%3ACPX-12748","-"],["ComplexPortal%3ACPX-19449","-"],["ComplexPortal%3ACPX-19476","-"],["ComplexPortal%3ACPX-24173","-"],["GO%3A0004698","calcium,diacylglycerol-dependent serine/threonine kinase activity"],["GO%3A0032425","positive regulation of mismatch repair"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P0A853","l":"","na":12,"nb":1,"a":[["GO%3A0060187","cell pole"],["GO%3A0080146","L-cysteine desulfhydrase activity"],["GO%3A0016829","lyase activity"],["GO%3A0030955","potassium ion binding"],["GO%3A0009034","tryptophanase activity"],["GO%3A0042431","indole metabolic process"]],"b":[["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]]},{"id":"UniProt:P31751","l":"","na":12,"nb":1,"a":[["ComplexPortal%3ACPX-10780","-"],["ComplexPortal%3ACPX-16948","-"],["ComplexPortal%3ACPX-22352","-"],["GO%3A0010748","negative regulation of long-chain fatty acid import across plasma membrane"],["GO%3A1903676","positive regulation of cap-dependent translational initiation"],["CDD%3Acd05595","STKc_PKB_beta"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P40261","l":"","na":12,"nb":1,"a":[["EC%3A2.1.1.1","nicotinamide N-methyltransferase"],["RHEA%3A23884","nicotinamide + S-adenosyl-L-methionine = 1-methylnicotinamide + S-adenosyl-L-homocysteine"],["GO%3A0008112","nicotinamide N-methyltransferase activity"],["GO%3A0030760","pyridine N-methyltransferase activity"],["GO%3A0006769","nicotinamide metabolic process"],["GO%3A0090312","positive regulation of protein deacetylation"]],"b":[["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"UniProt:P48454","l":"","na":12,"nb":1,"a":[["ComplexPortal%3ACPX-1112","Calcineurin-Calmodulin-AKAP5 complex, gamma-R1 variant"],["ComplexPortal%3ACPX-1118","Calcineurin-Calmodulin-AKAP5 complex, gamma-R2 variant"],["ComplexPortal%3ACPX-1001","Calcineurin-Calmodulin complex, gamma-R1 variant"],["ComplexPortal%3ACPX-1050","Calcineurin-Calmodulin complex, gamma-R2 variant"],["ComplexPortal%3ACPX-17012","-"],["ComplexPortal%3ACPX-17541","-"]],"b":[["amino_acids_and_peptides/cyclosporin-a.yaml","cyclosporin A"]]},{"id":"UniProt:Q08881","l":"","na":12,"nb":1,"a":[["GO%3A0046629","gamma-delta T cell activation"],["GO%3A0001865","NK T cell differentiation"],["InterPro%3AIPR001562","Zinc finger, Btk motif"],["CDD%3Acd01238","PH_Btk"],["CDD%3Acd05112","PTKc_Itk"],["CDD%3Acd10396","SH2_Tec_Itk"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:4113","l":"Solanum tuberosum","na":11,"nb":1,"a":[["Pfam%3APF02977","Carboxypeptidase A inhibitor"],["Pfam%3APF01474","Class-II DAHP synthetase family"],["Pfam%3APF23229","Alpha-glucan water dikinase, DUF7067"],["Pfam%3APF02446","4-alpha-glucanotransferase"],["Pfam%3APF22973","Alpha-glucan water dikinase, phosphohistidine-like domain"],["Pfam%3APF23166","Alpha-glucan water dikinase 1 Ig-like N-terminal domain"]],"b":[["fatty_acids/itaconic-acid.yaml","itaconic acid"]]},{"id":"UniProt:O60503","l":"","na":11,"nb":1,"a":[["ComplexPortal%3ACPX-10819","-"],["ComplexPortal%3ACPX-10882","-"],["ComplexPortal%3ACPX-14634","-"],["ComplexPortal%3ACPX-14903","-"],["ComplexPortal%3ACPX-17315","-"],["ComplexPortal%3ACPX-18747","-"]],"b":[["polyketides/chlortetracycline.yaml","chlortetracycline"]]},{"id":"UniProt:P00915","l":"","na":11,"nb":1,"a":[["ComplexPortal%3ACPX-11364","-"],["ComplexPortal%3ACPX-12060","-"],["ComplexPortal%3ACPX-14728","-"],["ComplexPortal%3ACPX-15000","-"],["ComplexPortal%3ACPX-25381","-"],["GO%3A0018820","cyanamide hydratase activity"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:Q9BX63","l":"","na":11,"nb":1,"a":[["ComplexPortal%3ACPX-4426","BRCA1-B complex"],["ComplexPortal%3ACPX-17429","-"],["ComplexPortal%3ACPX-26140","-"],["CDD%3Acd18788","SF2_C_XPD"],["CDD%3Acd17970","DEAHc_FancJ"],["InterPro%3AIPR006554","Helicase-like, DEXD box c2 type"]],"b":[["unclassified/telomestatin.yaml","telomestatin"]]},{"id":"NCBITaxon:116188","l":"Streptomyces coeruleorubidus","na":1,"nb":10,"a":[["Pfam%3APF13732","ATP-binding protein DrrA1-3-like, C-terminal domain"]],"b":[["amino_acids_and_peptides/pacidamycin-1.yaml","pacidamycin 1"],["amino_acids_and_peptides/pacidamycin-2.yaml","pacidamycin 2"],["amino_acids_and_peptides/pacidamycin-3.yaml","pacidamycin 3"],["amino_acids_and_peptides/pacidamycin-4.yaml","pacidamycin 4"],["amino_acids_and_peptides/pacidamycin-5.yaml","pacidamycin 5"],["amino_acids_and_peptides/pacidamycin-6.yaml","pacidamycin 6"]]},{"id":"NCBITaxon:257313","l":"Bordetella pertussis (strain Tohama I / ATCC BAA-589 / NCTC 13251)","na":10,"nb":1,"a":[["Pfam%3APF03440","Aerolysin/Pertussis toxin (APT) domain"],["Pfam%3APF07411","Domain of unknown function (DUF1508)"],["Pfam%3APF25988","CyaD, alpha-helical hairpin domain"],["Pfam%3APF03497","Anthrax toxin LF subunit"],["Pfam%3APF02537","CrcB-like protein, Camphor Resistance (CrcB)"],["Pfam%3APF16970","Type-1 fimbrial protein, A"]],"b":[["amino_acids_and_peptides/alcaligin.yaml","alcaligin"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":10,"nb":1,"a":[["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF09081","Glucan 1,4-alpha-maltotetraohydrolase, domain C"],["Pfam%3APF09459","Ethylbenzene dehydrogenase"],["Pfam%3APF08406","CbbQ/NirQ/NorQ C-terminal"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"],["Pfam%3APF18793","Nitrous oxide reductase propeller repeat 2"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"UniProt:P0A749","l":"","na":10,"nb":1,"a":[["GO%3A0008760","UDP-N-acetylglucosamine 1-carboxyvinyltransferase activity"],["GO%3A0019277","UDP-N-acetylgalactosamine biosynthetic process"],["NCBIfam%3ANF006873","UDP-N-acetylglucosamine 1-carboxyvinyltransferase"],["NCBIfam%3ATIGR01072","UDP-N-acetylglucosamine 1-carboxyvinyltransferase"],["CDD%3Acd01555","UdpNAET"],["InterPro%3AIPR001986","Enolpyruvate transferase domain"]],"b":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"]]},{"id":"UniProt:P14679","l":"","na":10,"nb":1,"a":[["GO%3A0004503","tyrosinase activity"],["GO%3A0006726","eye pigment biosynthetic process"],["GO%3A0006583","melanin biosynthetic process from tyrosine"],["GO%3A0042438","melanin biosynthetic process"],["InterPro%3AIPR002227","Tyrosinase copper-binding domain"],["Pfam%3APF00264","Common central domain of tyrosinase"]],"b":[["polyketides/kojic-acid.yaml","kojic acid"]]},{"id":"UniProt:P15884","l":"","na":10,"nb":1,"a":[["ComplexPortal%3ACPX-11961","-"],["ComplexPortal%3ACPX-14266","-"],["ComplexPortal%3ACPX-14268","-"],["ComplexPortal%3ACPX-14282","-"],["ComplexPortal%3ACPX-21052","-"],["ComplexPortal%3ACPX-26210","-"]],"b":[["alkaloids/toxoflavin.yaml","toxoflavin"]]},{"id":"UniProt:P41240","l":"","na":10,"nb":1,"a":[["EC%3A2.7.10.4","[Src-family] C-terminal protein kinase"],["ComplexPortal%3ACPX-11775","-"],["ComplexPortal%3ACPX-18631","-"],["ComplexPortal%3ACPX-19439","-"],["GO%3A0042997","negative regulation of Golgi to plasma membrane protein transport"],["GO%3A0060368","regulation of Fc receptor mediated stimulatory signaling pathway"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":9,"nb":1,"a":[["Pfam%3APF07835","Bacterial aa3 type cytochrome c oxidase subunit IV"],["Pfam%3APF04828","Glutathione-dependent formaldehyde-activating enzyme"],["Pfam%3APF16448","LapD/MoxY periplasmic domain"],["Pfam%3APF17267","Family of unknown function (DUF5333)"],["Pfam%3APF17272","Family of unknown function (DUF5337)"],["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"]],"b":[["alkaloids/parabactin.yaml","parabactin"]]},{"id":"UniProt:P00811","l":"","na":9,"nb":1,"a":[["EC%3A3.5.2.6","beta-lactamase"],["RHEA%3A20401","a beta-lactam + H2O = a substituted beta-amino acid"],["GO%3A0017001","antibiotic catabolic process"],["NCBIfam%3ANF000185","BlaEC family class C beta-lactamase"],["NCBIfam%3ANF033085","class C beta-lactamase"],["NCBIfam%3ANF012173","CMY2/MIR/ACT/EC family class C beta-lactamase"]],"b":[["amino_acids_and_peptides/clavulanic-acid-2.yaml","clavulanic acid"]]},{"id":"UniProt:P23280","l":"","na":9,"nb":1,"a":[["ComplexPortal%3ACPX-11709","-"],["ComplexPortal%3ACPX-12376","-"],["ComplexPortal%3ACPX-12422","-"],["ComplexPortal%3ACPX-12445","-"],["ComplexPortal%3ACPX-13747","-"],["ComplexPortal%3ACPX-17694","-"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:P24666","l":"","na":9,"nb":1,"a":[["ComplexPortal%3ACPX-17111","-"],["ComplexPortal%3ACPX-18047","-"],["ComplexPortal%3ACPX-19744","-"],["ComplexPortal%3ACPX-26078","-"],["CDD%3Acd16343","LMWPTP"],["InterPro%3AIPR023485","Phosphotyrosine protein phosphatase I"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"UniProt:P43250","l":"","na":9,"nb":1,"a":[["ComplexPortal%3ACPX-15339","-"],["ComplexPortal%3ACPX-18479","-"],["ComplexPortal%3ACPX-21827","-"],["ComplexPortal%3ACPX-23485","-"],["ComplexPortal%3ACPX-26222","-"],["GO%3A0047696","beta-adrenergic receptor kinase activity"]],"b":[["carbohydrates/sangivamycin.yaml","sangivamycin"]]},{"id":"UniProt:Q14353","l":"","na":9,"nb":1,"a":[["ComplexPortal%3ACPX-17611","-"],["ComplexPortal%3ACPX-22207","-"],["ComplexPortal%3ACPX-25132","-"],["GO%3A0030731","guanidinoacetate N-methyltransferase activity"],["GO%3A0006601","creatine biosynthetic process"],["GO%3A0006600","creatine metabolic process"]],"b":[["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"UniProt:Q8JUX6","l":"","na":1,"nb":9,"a":[["proteintraitsmech%3ABIOLIP_LFO","LFO-binding site"]],"b":[["alkaloids/ergotamine.yaml","ergotamine"],["amino_acids_and_peptides/leupeptin-a.yaml","leupeptin A"],["amino_acids_and_peptides/linaclotide.yaml","linaclotide"],["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"],["polyketides/kojic-acid.yaml","kojic acid"],["polyketides/monactin.yaml","monactin"]]},{"id":"CHEBI:58515","l":"","na":8,"nb":1,"a":[["EC%3A1.14.11.55","ectoine hydroxylase"],["EC%3A3.5.4.44","ectoine hydrolase"],["EC%3A4.2.1.108","ectoine synthase"],["RHEA%3A17281","(2S)-4-acetamido-2-aminobutanoate = L-ectoine + H2O"],["RHEA%3A45740","L-ectoine + 2-oxoglutarate + O2 = 5-hydroxyectoine + succinate + CO2"],["RHEA%3A52304","L-ectoine + H2O = (2S)-2-acetamido-4-aminobutanoate"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":8,"nb":1,"a":[["Pfam%3APF01721","Class II bacteriocin"],["Pfam%3APF13700","Domain of unknown function (DUF4158)"],["Pfam%3APF07478","D-ala D-ala ligase C-terminus"],["Pfam%3APF01820","D-ala D-ala ligase N-terminus"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"],["PROSITE%3APS00843","D-alanine--D-alanine ligase signature 1"]],"b":[["amino_acids_and_peptides/enterocin-a.yaml","enterocin A"]]},{"id":"NCBITaxon:1703937","l":"Streptomyces sp. CB03234","na":1,"nb":8,"a":[["TED%3AAF-A0A1Q5LKM4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q5LKM4-F1-model_v4_TED02"]],"b":[["terpenoids/tiancilactone-a.yaml","tiancilactone A"],["terpenoids/tiancilactone-b.yaml","tiancilactone B"],["terpenoids/tiancilactone-c.yaml","tiancilactone C"],["terpenoids/tiancilactone-d.yaml","tiancilactone D"],["terpenoids/tiancilactone-e.yaml","tiancilactone E"],["terpenoids/tiancilactone-f.yaml","tiancilactone F"]]},{"id":"NCBITaxon:1908","l":"Streptomyces globisporus","na":1,"nb":8,"a":[["PROSITE%3APS00953","Glycosyl hydrolases family 25 active site signature"]],"b":[["polyketides/c-1027-chromophore.yaml","C-1027 chromophore"],["polyketides/c-1027.yaml","C-1027"],["polyketides/landomycin-a.yaml","landomycin A"],["polyketides/nonactin.yaml","nonactin"],["polyketides/prejadomycin.yaml","prejadomycin"],["polyketides/tetranactin.yaml","tetranactin"]]},{"id":"NCBITaxon:345341","l":"Kutzneria sp. 744","na":1,"nb":8,"a":[["TED%3AAF-W7SU68-F1-model_v4_TED01","TED novel fold AF-W7SU68-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/kutzneride-6.yaml","Kutzneride 6"],["unclassified/kutzneride-1.yaml","Kutzneride 1"],["unclassified/kutzneride-2.yaml","Kutzneride 2"],["unclassified/kutzneride-3.yaml","Kutzneride 3"],["unclassified/kutzneride-4.yaml","Kutzneride 4"],["unclassified/kutzneride-5.yaml","Kutzneride 5"]]},{"id":"NCBITaxon:380703","l":"Aeromonas hydrophila subsp. hydrophila (strain ATCC 7966 / DSM 30187 / BCRC 13018 / CCUG 14551 / JCM 1027 / KCTC 2358 / NCIMB 9240 / NCTC 8049)","na":8,"nb":1,"a":[["Pfam%3APF26341","tRNA 2-selenouridine synthase AAA domain"],["Pfam%3APF11890","Domain of unknown function (DUF3410)"],["Pfam%3APF11944","Protein of unknown function (DUF3461)"],["Pfam%3APF04356","Protein of unknown function (DUF489)"],["Pfam%3APF12563","Hemolytic toxin N terminal"],["Pfam%3APF04362","Bacterial Fe(2+) trafficking"]],"b":[["amino_acids_and_peptides/amonabactin-p-750.yaml","amonabactin P 750"]]},{"id":"NCBITaxon:40318","l":"Streptomyces nodosus","na":1,"nb":8,"a":[["TED%3AAF-A0A0B5DA96-F1-model_v4_TED01","TED novel fold AF-A0A0B5DA96-F1-model_v4_TED01"]],"b":[["alkaloids/melanin.yaml","melanin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/ectoine.yaml","ectoine"],["amino_acids_and_peptides/siamycin-i.yaml","siamycin I"],["fatty_acids/butyrolactone.yaml","γ-butyrolactone"]]},{"id":"NCBITaxon:420953","l":"Paraburkholderia megapolitana","na":1,"nb":8,"a":[["proteintraitsmech%3AELIFE109154_GrbD","GrbD-type graminine biosynthesis protein family"]],"b":[["amino_acids_and_peptides/megapolibactin-a.yaml","megapolibactin A"],["amino_acids_and_peptides/megapolibactin-acyc.yaml","megapolibactin Acyc"],["amino_acids_and_peptides/megapolibactin-b.yaml","megapolibactin B"],["amino_acids_and_peptides/megapolibactin-c.yaml","megapolibactin C"],["amino_acids_and_peptides/megapolibactin-d.yaml","megapolibactin D"],["amino_acids_and_peptides/megapolibactin-e.yaml","megapolibactin E"]]},{"id":"NCBITaxon:492670","l":"Bacillus velezensis","na":1,"nb":8,"a":[["TED%3AAF-A0A7S9EWF1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S9EWF1-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["polyketides/bacillaene.yaml","bacillaene"],["polyketides/difficidin.yaml","difficidin"],["polyketides/macrolactin-h.yaml","macrolactin H"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":1,"nb":8,"a":[["Pfam%3APF07335","Fungal chitosanase of glycosyl hydrolase group 75"]],"b":[["amino_acids_and_peptides/ferrichrome-2.yaml","ferrichrome"],["polyketides/2-acetyl-1-3-6-8-tetrahydroxynaphthalene.yaml","2-acetyl-1,3,6,8-tetrahydroxynaphthalene"],["polyketides/kojic-acid.yaml","kojic acid"],["terpenoids/aphidicolin.yaml","aphidicolin"],["unclassified/2-oxocyclopiazonic-acid.yaml","2-oxocyclopiazonic acid"],["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"UniProt:O96017","l":"","na":8,"nb":1,"a":[["ComplexPortal%3ACPX-16839","-"],["ComplexPortal%3ACPX-21166","-"],["GO%3A0044773","mitotic DNA damage checkpoint signaling"],["CDD%3Acd14084","STKc_Chk2"],["CDD%3Acd22666","FHA_CHK2"],["ELM%3AELME000425","DOC_PP2A_B56_1"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:Q8TD30","l":"","na":8,"nb":1,"a":[["ComplexPortal%3ACPX-11669","-"],["ComplexPortal%3ACPX-11684","-"],["ComplexPortal%3ACPX-18140","-"],["ComplexPortal%3ACPX-18547","-"],["ComplexPortal%3ACPX-25098","-"],["ComplexPortal%3ACPX-26258","-"]],"b":[["polyketides/monactin.yaml","monactin"]]},{"id":"CHEBI:16089","l":"","na":7,"nb":1,"a":[["EC%3A1.14.15.35","6-deoxyerythronolide B hydroxylase"],["EC%3A2.3.1.94","6-deoxyerythronolide-B synthase"],["RHEA%3A40299","6-deoxyerythronolide B + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = erythronolide B + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"],["RHEA%3A23068","6 (S)-methylmalonyl-CoA + propanoyl-CoA + 6 NADPH + 12 H(+) = 6-deoxyerythronolide B + 6 CO2 + 6 NADP(+) + 7 CoA + H2O"],["MCSA%3A694","6-deoxyerythronolide B hydroxylase"],["MCSA%3A602","6-deoxyerythronolide-B synthase"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"NCBITaxon:1314807","l":"Dendrothele bispora (strain CBS 962.96)","na":7,"nb":1,"a":[["TED%3AAF-A0A4S8L719-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S8L719-F1-model_v4_TED01"],["TED%3AAF-A0A4S8LBA1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4S8LBA1-F1-model_v4_TED02"],["TED%3AAF-A0A4S8KM73-F1-model_v4_TED02","TED novel fold AF-A0A4S8KM73-F1-model_v4_TED02"],["TED%3AAF-A0A4S8KTD4-F1-model_v4_TED01","TED novel fold AF-A0A4S8KTD4-F1-model_v4_TED01"],["TED%3AAF-A0A4S8LE48-F1-model_v4_TED01","TED novel fold AF-A0A4S8LE48-F1-model_v4_TED01"],["TED%3AAF-A0A4S8MMV1-F1-model_v4_TED02","TED novel fold AF-A0A4S8MMV1-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/dendrothelin-a.yaml","dendrothelin A"]]},{"id":"NCBITaxon:391037","l":"Salinispora arenicola CNS-205","na":1,"nb":7,"a":[["Pfam%3APF12072","RNase Y N-terminal region"]],"b":[["alkaloids/lymphostin.yaml","lymphostin"],["alkaloids/lymphostinol.yaml","lymphostinol"],["alkaloids/neolymphostin-b.yaml","neolymphostin b"],["alkaloids/neolymphostinol-b.yaml","neolymphostinol B"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/cyclomarin-d.yaml","cyclomarin D"]]},{"id":"NCBITaxon:405948","l":"","na":1,"nb":7,"a":[["Pfam%3APF21036","Erythromycin biosynthesis protein CIII-like, N-terminal domain"]],"b":[["amino_acids_and_peptides/erythrochelin.yaml","erythrochelin"],["polyketides/erythromycin-a.yaml","erythromycin A"],["polyketides/erythromycin-b.yaml","erythromycin B"],["polyketides/erythromycin-c.yaml","erythromycin C"],["polyketides/erythromycin-d.yaml","erythromycin D"],["polyketides/flaviolin.yaml","flaviolin"]]},{"id":"NCBITaxon:5077","l":"Penicillium citrinum","na":1,"nb":7,"a":[["PROSITE%3APS00876","Indoleamine 2,3-dioxygenase signature 1"]],"b":[["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["polyketides/citrinin.yaml","(+)-citrinin"],["polyketides/mevinic-acid.yaml","mevinic acid"],["unclassified/orcinol.yaml","orcinol"],["unclassified/penigainamide-a.yaml","penigainamide A"],["unclassified/penigainamide-b.yaml","penigainamide B"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":7,"nb":1,"a":[["Pfam%3APF11766","Agglutinin-like protein, N-terminal domain"],["Pfam%3APF16856","Cell division control protein 4 dimerisation domain"],["Pfam%3APF18325","Fatty acid synthase subunit alpha Acyl carrier domain"],["Pfam%3APF18314","Fatty acid synthase type I helical domain"],["Pfam%3APF17828","N-terminal domain in fatty acid synthase subunit beta"],["Pfam%3APF05388","Carboxypeptidase Y pro-peptide"]],"b":[["unclassified/antimycin-a1b.yaml","antimycin A1B"]]},{"id":"NCBITaxon:5580","l":"Aureobasidium pullulans","na":7,"nb":1,"a":[["TED%3AAF-A0A4S8XR15-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S8XR15-F1-model_v4_TED01"],["TED%3AAF-A0A4S8YVB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S8YVB9-F1-model_v4_TED01"],["TED%3AAF-A0A4S9KUA9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S9KUA9-F1-model_v4_TED01"],["TED%3AAF-A0A4T0BHY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4T0BHY6-F1-model_v4_TED01"],["TED%3AAF-A0A4S9MB45-F1-model_v4_TED01","TED novel fold AF-A0A4S9MB45-F1-model_v4_TED01"],["TED%3AAF-A0A4S9RE93-F1-model_v4_TED01","TED novel fold AF-A0A4S9RE93-F1-model_v4_TED01"]],"b":[["unclassified/abt1.yaml","AbT1"]]},{"id":"NCBITaxon:5599","l":"Alternaria alternata","na":1,"nb":7,"a":[["Pfam%3APF16541","Alternaria alternata allergen 1"]],"b":[["alkaloids/ak-toxin-i.yaml","AK-toxin I"],["alkaloids/dimethylcoprogen.yaml","dimethylcoprogen"],["amino_acids_and_peptides/am-toxin.yaml","AM-toxin"],["polyketides/act-toxin-ii.yaml","ACT-Toxin II"],["polyketides/unii-yc2q1o94pt.yaml","UNII-YC2Q1O94PT"],["unclassified/af-toxin.yaml","AF-toxin"]]},{"id":"NCBITaxon:672","l":"Vibrio vulnificus","na":7,"nb":1,"a":[["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF08021","Siderophore-interacting FAD-binding domain"],["Pfam%3APF11575","FhuF 2Fe-2S C-terminal domain"],["Pfam%3APF27349","IcsB middle domain"],["Pfam%3APF21735","C-terminal repeat from RTX toxins"],["Pfam%3APF07634","RtxA repeat"]],"b":[["alkaloids/vulnibactin.yaml","vulnibactin"]]},{"id":"NCBITaxon:67339","l":"Streptomyces orinoci","na":1,"nb":7,"a":[["Pfam%3APF09277","Erythronolide synthase, docking"]],"b":[["polyketides/aureothin.yaml","aureothin"],["polyketides/orinocin.yaml","orinocin"],["polyketides/spectinabilin.yaml","spectinabilin"],["terpenoids/snf4435c.yaml","SNF4435C"],["terpenoids/snf4435d.yaml","SNF4435D"],["unclassified/neoantimycin-2.yaml","neoantimycin"]]},{"id":"NCBITaxon:68280","l":"Streptomyces violaceusniger","na":1,"nb":7,"a":[["TED%3AAF-A0A0X3VKA0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0X3VKA0-F1-model_v4_TED01"]],"b":[["fatty_acids/desulfoclethramycin.yaml","desulfoclethramycin"],["polyketides/be-24566b.yaml","BE-24566B"],["polyketides/elaiophylin.yaml","elaiophylin"],["polyketides/meridamycin-2.yaml","meridamycin"],["polyketides/nigericin.yaml","nigericin"],["terpenoids/2-methylisoborneol.yaml","2-methylisoborneol"]]},{"id":"UniProt:P27296","l":"","na":7,"nb":1,"a":[["GO%3A0033677","DNA/RNA helicase activity"],["NCBIfam%3ANF008729","ATP-dependent DNA helicase DinG"],["InterPro%3AIPR006555","ATP-dependent helicase, C-terminal"],["InterPro%3AIPR006554","Helicase-like, DEXD box c2 type"],["InterPro%3AIPR014013","Helicase superfamily 1/2, ATP-binding domain, DinG/Rad3-type"],["InterPro%3AIPR010614","RAD3-like helicase, DEAD"]],"b":[["unclassified/telomestatin.yaml","telomestatin"]]},{"id":"UniProt:P50135","l":"","na":7,"nb":1,"a":[["GO%3A0046539","histamine N-methyltransferase activity"],["GO%3A0001695","histamine catabolic process"],["GO%3A0001692","histamine metabolic process"],["GO%3A0006548","L-histidine catabolic process"],["Pfam%3APF13489","Methyltransferase domain"],["PROSITE%3APS51597","Histamine N-methyltransferase (EC 2.1.1.8) family profile"]],"b":[["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"UniProt:Q8IZQ5","l":"","na":7,"nb":1,"a":[["ComplexPortal%3ACPX-14418","-"],["ComplexPortal%3ACPX-17411","-"],["ComplexPortal%3ACPX-17423","-"],["ComplexPortal%3ACPX-17969","-"],["ComplexPortal%3ACPX-19650","-"],["ComplexPortal%3ACPX-22629","-"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"UniProt:Q92731","l":"","na":7,"nb":1,"a":[["GO%3A0030284","nuclear estrogen receptor activity"],["CDD%3Acd07171","NR_DBD_ER"],["CDD%3Acd06949","NR_LBD_ER"],["InterPro%3AIPR021064","Estrogen receptor beta-like, N-terminal"],["Pfam%3APF12497","Estrogen receptor beta"],["ELM%3AELME000053","MOD_GSK3_1"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:Q96LB1","l":"","na":7,"nb":1,"a":[["GO%3A0004985","G protein-coupled opioid receptor activity"],["GO%3A1990595","mast cell secretagogue receptor activity"],["GO%3A0045576","mast cell activation"],["CDD%3Acd15106","7tmA_MrgprX-like"],["InterPro%3AIPR017452","GPCR, rhodopsin-like, 7TM"],["PROSITE%3APS50262","G-protein coupled receptors family 1 profile"]],"b":[["alkaloids/thebaine.yaml","thebaine"]]},{"id":"UniProt:Q9FUZ2","l":"","na":7,"nb":1,"a":[["GO%3A0042586","peptide deformylase activity"],["NCBIfam%3ANF001159","peptide deformylase"],["NCBIfam%3ATIGR00079","peptide deformylase"],["CDD%3Acd00487","Pep_deformylase"],["Pfam%3APF01327","Polypeptide deformylase"],["InterPro%3AIPR036821","Peptide deformylase superfamily"]],"b":[["amino_acids_and_peptides/actinonin.yaml","actinonin"]]},{"id":"CHEBI:16536","l":"orcinol","na":6,"nb":1,"a":[["EC%3A1.14.13.6","orcinol 2-monooxygenase"],["EC%3A4.1.1.58","orsellinate decarboxylase"],["RHEA%3A63072","3 malonyl-CoA + acetyl-CoA + 3 H(+) = orcinol + 4 CO2 + 4 CoA"],["RHEA%3A19601","orcinol + NADH + O2 + H(+) = 2,3,5-trihydroxytoluene + NAD(+) + H2O"],["RHEA%3A80563","orcinol + S-adenosyl-L-methionine = 3-methoxy-5-methylphenol + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A16733","orsellinate + H(+) = orcinol + CO2"]],"b":[["unclassified/orcinol.yaml","orcinol"]]},{"id":"CHEBI:18365","l":"naphthalene-1,3,6,8-tetrol","na":6,"nb":1,"a":[["EC%3A1.1.1.252","tetrahydroxynaphthalene reductase"],["EC%3A2.3.1.233","1,3,6,8-tetrahydroxynaphthalene synthase"],["RHEA%3A41524","5 malonyl-CoA + 5 H(+) = naphthalene-1,3,6,8-tetrol + 5 CO2 + 5 CoA + H2O"],["RHEA%3A62700","naphtopyrone YWA1 + H2O = naphthalene-1,3,6,8-tetrol + acetoacetate + H(+)"],["RHEA%3A21908","scytalone + NADP(+) = naphthalene-1,3,6,8-tetrol + NADPH + H(+)"],["MCSA%3A891","Tetrahydroxynaphthalene reductase"]],"b":[["polyketides/naphthalene-1-3-6-8-tetrol.yaml","naphthalene-1,3,6,8-tetrol"]]},{"id":"CHEBI:63677","l":"","na":6,"nb":1,"a":[["EC%3A1.14.13.154","erythromycin 12 hydroxylase"],["EC%3A2.1.1.254","erythromycin 3'-O-methyltransferase"],["EC%3A2.4.1.278","3-alpha-mycarosylerythronolide B desosaminyl transferase"],["RHEA%3A32091","3-O-alpha-L-mycarosylerythronolide B + dTDP-alpha-D-desosamine = erythromycin D + dTDP + H(+)"],["RHEA%3A32631","erythromycin D + NADPH + O2 + H(+) = erythromycin C + NADP(+) + H2O"],["RHEA%3A32651","erythromycin D + S-adenosyl-L-methionine = erythromycin B + S-adenosyl-L-homocysteine + H(+)"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"NCBITaxon:128403","l":"Scytonema hofmannii PCC 7110","na":1,"nb":6,"a":[["TED%3AAF-A0A139X3P3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A139X3P3-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/scytocyclamide-a.yaml","scytocyclamide A"],["amino_acids_and_peptides/scytocyclamide-a2.yaml","scytocyclamide A2"],["amino_acids_and_peptides/scytocyclamide-b.yaml","scytocyclamide B"],["amino_acids_and_peptides/scytocyclamide-b2.yaml","scytocyclamide B2"],["amino_acids_and_peptides/scytocyclamide-b3.yaml","scytocyclamide B3"],["amino_acids_and_peptides/scytocyclamide-c.yaml","scytocyclamide C"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":6,"nb":1,"a":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF10779","Haemolysin XhlA"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF08181","DegQ (SacQ) family"],["Pfam%3APF08057","Erythromycin resistance leader peptide"],["Pfam%3APF14867","Lantibiotic alpha"]],"b":[["amino_acids_and_peptides/bacitracin.yaml","bacitracin"]]},{"id":"NCBITaxon:1877","l":"Micromonospora echinospora","na":1,"nb":6,"a":[["Pfam%3APF07091","Ribosomal RNA methyltransferase (FmrO)"]],"b":[["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/gentamicin-2.yaml","gentamicin"],["carbohydrates/gentamicin.yaml","gentamicin"],["polyketides/1-6-dihydro-8-propylanthraquinone.yaml","1,6-dihydro-8-propylanthraquinone"],["polyketides/calicheamicin.yaml","calicheamicin"],["polyketides/tiacumicin-b.yaml","tiacumicin B"]]},{"id":"NCBITaxon:1920","l":"Streptomyces nigrescens","na":1,"nb":6,"a":[["Pfam%3APF03995","Peptidase inhibitor family I36"]],"b":[["alkaloids/5athq-10a.yaml","5aTHQ-10a"],["alkaloids/5athq-9i.yaml","5aTHQ-9i"],["alkaloids/5athq-9n.yaml","5aTHQ-9n"],["alkaloids/stams-9i.yaml","STAMs-9i"],["alkaloids/stams-9n.yaml","STAMs-9n"],["polyketides/phoslactomycin-b.yaml","phoslactomycin B"]]},{"id":"NCBITaxon:1930","l":"Streptomyces scabiei","na":1,"nb":6,"a":[["TED%3AAF-A0A086GLG9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A086GLG9-F1-model_v4_TED01"]],"b":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"],["amino_acids_and_peptides/thaxtomin-c.yaml","thaxtomin C"],["polyketides/oronofacic-acid.yaml","oronofacic acid"],["unclassified/n-coronafacoyl-l-isoleucine.yaml","N-coronafacoyl-L-isoleucine"],["unclassified/thaxtomin-a.yaml","thaxtomin A"],["unclassified/thaxtomin-b.yaml","thaxtomin B"]]},{"id":"NCBITaxon:278992","l":"Streptomyces ambofaciens ATCC 23877","na":1,"nb":6,"a":[["Pfam%3APF00553","Cellulose binding domain"]],"b":[["alkaloids/congocidine.yaml","congocidine"],["polyketides/spiramycin.yaml","spiramycin"],["polyketides/stambomycin-a.yaml","stambomycin A"],["polyketides/stambomycin-b.yaml","stambomycin B"],["polyketides/stambomycin-c.yaml","stambomycin C"],["polyketides/stambomycin-d.yaml","stambomycin D"]]},{"id":"NCBITaxon:4097","l":"Nicotiana tabacum","na":6,"nb":1,"a":[["Pfam%3APF02041","Auxin binding protein"],["Pfam%3APF12481","Aluminium induced protein"],["Pfam%3APF11995","Domain of unknown function (DUF3490)"],["Pfam%3APF07172","Glycine rich protein family"],["PROSITE%3APS00157","Ribulose bisphosphate carboxylase large chain active site"],["TED%3AAF-A0A1S4A696-F1-model_v4_TED01","TED novel fold AF-A0A1S4A696-F1-model_v4_TED01"]],"b":[["terpenoids/capsidiol.yaml","capsidiol"]]},{"id":"NCBITaxon:46472","l":"Aspergillus versicolor","na":1,"nb":6,"a":[["Pfam%3APF13810","Domain of unknown function (DUF4185)"]],"b":[["alkaloids/psychrophilin-f.yaml","psychrophilin F"],["alkaloids/psychrophilin-g.yaml","psychrophilin G"],["polyketides/sterigmatocystin.yaml","sterigmatocystin"],["unclassified/chevalone-e.yaml","chevalone E"],["unclassified/notoamide-a.yaml","notoamide A"],["unclassified/psychrophilin-h.yaml","psychrophilin H"]]},{"id":"NCBITaxon:5082","l":"Penicillium roqueforti","na":1,"nb":6,"a":[["Pfam%3APF07573","Nitrogen regulatory protein AreA N terminus"]],"b":[["alkaloids/mycophenolic-acid-2.yaml","mycophenolic acid"],["polyketides/mycophenolic-acid.yaml","mycophenolic acid"],["terpenoids/pr-toxin.yaml","PR-toxin"],["unclassified/andrastin-a.yaml","andrastin A"],["unclassified/roquefortine-c.yaml","roquefortine C"],["unclassified/roquefortine-d.yaml","roquefortine D"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":6,"nb":1,"a":[["IDPO%3A0000037","molecular recognition display site"],["Pfam%3APF05403","Plasmodium histidine-rich protein (HRPII/III)"],["Pfam%3APF17986","EMP3-KAHRP-like N-terminal domain"],["Pfam%3APF03805","Cytoadherence-linked asexual protein"],["Pfam%3APF06589","Circumsporozoite-related antigen (CRA)"],["TED%3AAF-Q9U431-F1-model_v4_TED01","TED novel fold AF-Q9U431-F1-model_v4_TED01"]],"b":[["alkaloids/congocidine.yaml","congocidine"]]},{"id":"NCBITaxon:62977","l":"Acinetobacter baylyi (strain ATCC 33305 / BD413 / ADP1)","na":6,"nb":1,"a":[["Pfam%3APF03594","Benzoate membrane transport protein"],["Pfam%3APF27541","Citrate utilization protein B"],["Pfam%3APF05232","Chlorhexidine efflux transporter"],["PROSITE%3APS00083","Intradiol ring-cleavage dioxygenases signature"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"],["Pfam%3APF11846","Virulence factor membrane-bound polymerase, C-terminal"]],"b":[["amino_acids_and_peptides/fimsbactin-a.yaml","fimsbactin A"]]},{"id":"NCBITaxon:78245","l":"Xanthobacter autotrophicus (strain ATCC BAA-1158 / Py2)","na":6,"nb":1,"a":[["Pfam%3APF08882","Acetone carboxylase gamma subunit"],["Pfam%3APF19278","Hydantoinase/oxoprolinase C-terminal domain"],["Pfam%3APF05378","Hydantoinase/oxoprolinase N-terminal region"],["Pfam%3APF01968","Hydantoinase/oxoprolinase"],["Pfam%3APF02538","Hydantoinase B/oxoprolinase"],["TED%3AAF-A7IL68-F1-model_v4_TED01","TED highly-symmetric fold AF-A7IL68-F1-model_v4_TED01"]],"b":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":6,"nb":1,"a":[["Pfam%3APF16376","N-terminal domain of fragilysin"],["TED%3AAF-A0A412XR06-F1-model_v4_TED03","TED novel fold AF-A0A412XR06-F1-model_v4_TED03"],["TED%3AAF-A0A4V1EUI2-F1-model_v4_TED02","TED novel fold AF-A0A4V1EUI2-F1-model_v4_TED02"],["TED%3AAF-A0A5C6IXH5-F1-model_v4_TED01","TED novel fold AF-A0A5C6IXH5-F1-model_v4_TED01"],["TED%3AAF-A0A5C6L6G9-F1-model_v4_TED02","TED novel fold AF-A0A5C6L6G9-F1-model_v4_TED02"],["TED%3AAF-A0A642KY52-F1-model_v4_TED01","TED novel fold AF-A0A642KY52-F1-model_v4_TED01"]],"b":[["fatty_acids/galactosylceramide.yaml","α-galactosylceramide"]]},{"id":"NCBITaxon:882378","l":"","na":1,"nb":6,"a":[["Pfam%3APF01983","Guanylyl transferase CofC like"]],"b":[["amino_acids_and_peptides/endopyrrole-b.yaml","endopyrrole B"],["amino_acids_and_peptides/holrhizin-a.yaml","holrhizin A"],["amino_acids_and_peptides/holrhizin-b.yaml","holrhizin B"],["amino_acids_and_peptides/holrhizin-c.yaml","holrhizin C"],["amino_acids_and_peptides/holrhizin-d.yaml","holrhizin D"],["unclassified/endopyrrole-a.yaml","endopyrrole A"]]},{"id":"UniProt:Q9XUB2","l":"","na":6,"nb":1,"a":[["GO%3A0008187","poly-pyrimidine tract binding"],["InterPro%3AIPR000571","Zinc finger, CCCH-type"],["Pfam%3APF00642","Zinc finger C-x8-C-x5-C-x3-H type (and similar)"],["InterPro%3AIPR036855","Zinc finger, CCCH-type superfamily"],["PROSITE%3APS50103","Zinc finger C3H1-type profile"],["CATH%3A4.10.1000.10","Zinc finger, CCCH-type"]],"b":[["polyketides/pyrophen.yaml","pyrophen"]]},{"id":"CHEBI:27977","l":"","na":5,"nb":1,"a":[["EC%3A1.14.15.35","6-deoxyerythronolide B hydroxylase"],["EC%3A2.4.1.328","erythronolide mycarosyltransferase"],["RHEA%3A40299","6-deoxyerythronolide B + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = erythronolide B + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"],["RHEA%3A41576","dTDP-beta-L-mycarose + erythronolide B = 3-O-alpha-L-mycarosylerythronolide B + dTDP + H(+)"],["MCSA%3A694","6-deoxyerythronolide B hydroxylase"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"CHEBI:58572","l":"N-[(5S)-5-ammonio-5-carboxylatopentanoyl]-L-cysteinyl-D-valinate","na":5,"nb":1,"a":[["EC%3A1.21.3.1","isopenicillin-N synthase"],["EC%3A6.3.2.26","N-(5-amino-5-carboxypentanoyl)-L-cysteinyl-D-valine synthase"],["RHEA%3A23196","L-2-aminoadipate + L-valine + L-cysteine + 3 ATP + H2O = N-[(5S)-5-amino-5-carboxypentanoyl]-L-cysteinyl-D-valine + 3 AMP + 3 diphosphate + 3 H(+)"],["RHEA%3A22428","N-[(5S)-5-amino-5-carboxypentanoyl]-L-cysteinyl-D-valine + O2 = isopenicillin N + 2 H2O"],["MCSA%3A145","isopenicillin-N synthase"]],"b":[["amino_acids_and_peptides/n-5s-5-ammonio-5-carboxylatopentanoyl-l-cysteinyl-d-valinate.yaml","N-[(5S)-5-ammonio-5-carboxylatopentanoyl]-L-cysteinyl-D-valinate"]]},{"id":"CHEBI:62219","l":"2-heptyl-4-quinolone","na":5,"nb":1,"a":[["EC%3A1.14.13.182","2-heptyl-3-hydroxy-4(1H)-quinolone synthase"],["EC%3A2.3.1.230","2-heptyl-4(1H)-quinolone synthase"],["RHEA%3A50408","1-(2-aminophenyl)decane-1,3-dione = 2-heptyl-4(1H)-quinolone + H2O"],["RHEA%3A50396","(2-aminobenzoyl)acetate + octanoyl-CoA + H(+) = 2-heptyl-4(1H)-quinolone + CO2 + CoA + H2O"],["RHEA%3A37871","2-heptyl-4(1H)-quinolone + NADH + O2 + H(+) = 2-heptyl-3-hydroxy-4(1H)-quinolone + NAD(+) + H2O"]],"b":[["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"]]},{"id":"CHEBI:90888","l":"aurachin C","na":5,"nb":1,"a":[["EC%3A1.14.13.222","aurachin C monooxygenase/isomerase"],["RHEA%3A49000","aurachin C + NADH + O2 + H(+) = 4-hydroxy-2-methyl-3-oxo-4-[(2E,6E)-farnesyl]-3,4-dihydroquinoline 1-oxide + NAD(+) + H2O"],["RHEA%3A49012","aurachin C + NADH + O2 + H(+) = aurachin C epoxide + NAD(+) + H2O"],["RHEA%3A49004","aurachin C + NADPH + O2 + H(+) = 4-hydroxy-2-methyl-3-oxo-4-[(2E,6E)-farnesyl]-3,4-dihydroquinoline 1-oxide + NADP(+) + H2O"],["RHEA%3A49008","aurachin C + NADPH + O2 + H(+) = aurachin C epoxide + NADP(+) + H2O"]],"b":[["alkaloids/aurachin-c.yaml","aurachin C"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":5,"nb":1,"a":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF02963","Restriction endonuclease EcoRI"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["PROSITE%3APS00974","Mannitol dehydrogenases signature"],["PROSITE%3APS00567","Phosphoribulokinase signature"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:1110502","l":"Tistrella mobilis KA081020-065","na":1,"nb":5,"a":[["TED%3AAF-I3TTD1-F1-model_v4_TED03","TED novel fold AF-I3TTD1-F1-model_v4_TED03"]],"b":[["unclassified/dehydrodidemnin-b-aplidine.yaml","dehydrodidemnin B (aplidine)"],["unclassified/didemnin-b.yaml","didemnin B"],["unclassified/didemnin-x.yaml","didemnin X"],["unclassified/didemnin-y.yaml","didemnin Y"],["unclassified/nordidemnin-b.yaml","nordidemnin B"]]},{"id":"NCBITaxon:1437453","l":"Streptomyces leeuwenhoekii","na":1,"nb":5,"a":[["TED%3AAF-A0A0F7VQ57-F1-model_v4_TED03","TED novel fold AF-A0A0F7VQ57-F1-model_v4_TED03"]],"b":[["amino_acids_and_peptides/leepeptin.yaml","Leepeptin"],["polyketides/chaxamycin-a.yaml","chaxamycin A"],["polyketides/chaxamycin-b.yaml","chaxamycin B"],["polyketides/chaxamycin-c.yaml","chaxamycin C"],["polyketides/chaxamycin-d.yaml","chaxamycin D"]]},{"id":"NCBITaxon:1465","l":"Brevibacillus laterosporus","na":1,"nb":5,"a":[["TED%3AAF-A0A0F7BZ24-F1-model_v4_TED01","TED novel fold AF-A0A0F7BZ24-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/bogorol-a.yaml","bogorol A"],["amino_acids_and_peptides/tauramamide.yaml","tauramamide"],["shikimates_and_phenylpropanoids/basiliskamide-a.yaml","Basiliskamide A"],["unclassified/basiliskamide-b.yaml","Basiliskamide B"],["unclassified/laterocidine.yaml","laterocidine"]]},{"id":"NCBITaxon:176275","l":"Beauveria bassiana","na":1,"nb":5,"a":[["TED%3AAF-A0A2S7Y157-F1-model_v4_TED02","TED novel fold AF-A0A2S7Y157-F1-model_v4_TED02"]],"b":[["alkaloids/desmethylbassianin.yaml","desmethylbassianin"],["alkaloids/tenellin.yaml","tenellin"],["polyketides/oosporein.yaml","oosporein"],["unclassified/bassianolide.yaml","bassianolide"],["unclassified/beauvericin.yaml","beauvericin"]]},{"id":"NCBITaxon:220664","l":"Pseudomonas protegens Pf-5","na":1,"nb":5,"a":[["Pfam%3APF18089","DAPG hydrolase PhiG domain"]],"b":[["alkaloids/pyoluteorin.yaml","pyoluteorin"],["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"],["unclassified/orfamide-a.yaml","orfamide A"],["unclassified/orfamide-c.yaml","orfamide C"],["unclassified/pf-5-pyoverdine.yaml","Pf-5 pyoverdine"]]},{"id":"NCBITaxon:29303","l":"Streptomyces cattleya","na":1,"nb":5,"a":[["Pfam%3APF22636","Fluoroacetyl-CoA-specific thioesterase"]],"b":[["amino_acids_and_peptides/cattlecin.yaml","cattlecin"],["amino_acids_and_peptides/clavulanic-acid.yaml","clavulanic acid"],["amino_acids_and_peptides/ethynylserine.yaml","β-ethynylserine"],["amino_acids_and_peptides/thienamycin.yaml","thienamycin"],["terpenoids/cattleyene.yaml","cattleyene"]]},{"id":"NCBITaxon:380704","l":"Aspergillus niger ATCC 1015","na":1,"nb":5,"a":[["Pfam%3APF28387","BfoA N-terminal domain"]],"b":[["polyketides/azanigerone-a.yaml","azanigerone A"],["polyketides/campyrone-b.yaml","campyrone B"],["polyketides/pyranonigrin-e.yaml","pyranonigrin E"],["polyketides/pyrophen.yaml","pyrophen"],["terpenoids/yanuthone-d.yaml","yanuthone D"]]},{"id":"NCBITaxon:384","l":"Rhizobium leguminosarum","na":5,"nb":1,"a":[["Pfam%3APF10931","Protein of unknown function (DUF2735)"],["TED%3AAF-A0A1B1C3F3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1B1C3F3-F1-model_v4_TED02"],["TED%3AAF-A0A4Q8XNE1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q8XNE1-F1-model_v4_TED01"],["TED%3AAF-A0A6P0B3F8-F1-model_v4_TED02","TED novel fold AF-A0A6P0B3F8-F1-model_v4_TED02"],["TED%3AAF-A0A6P0DM15-F1-model_v4_TED01","TED novel fold AF-A0A6P0DM15-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/vicibactin.yaml","vicibactin"]]},{"id":"NCBITaxon:4513","l":"Hordeum vulgare","na":5,"nb":1,"a":[["Pfam%3APF20241","Domain of unknown function (DUF6598)"],["PROSITE%3APS00771","Barwin domain signature 1"],["PROSITE%3APS00426","Cereal trypsin/alpha-amylase inhibitors family signature"],["PROSITE%3APS00725","Germin family signature"],["PROSITE%3APS00431","Small hydrophilic plant seed proteins signature"]],"b":[["unclassified/roquefortine-c.yaml","roquefortine C"]]},{"id":"NCBITaxon:47427","l":"Armillaria gallica","na":5,"nb":1,"a":[["TED%3AAF-A0A2H3CFH3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H3CFH3-F1-model_v4_TED02"],["TED%3AAF-A0A2H3DFZ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H3DFZ3-F1-model_v4_TED01"],["TED%3AAF-A0A2H3DTE1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H3DTE1-F1-model_v4_TED02"],["TED%3AAF-A0A2H3E1R0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H3E1R0-F1-model_v4_TED02"],["TED%3AAF-A0A2H3CX67-F1-model_v4_TED02","TED novel fold AF-A0A2H3CX67-F1-model_v4_TED02"]],"b":[["terpenoids/8-hydroxy-6-protoilludene.yaml","8α-hydroxy-6-protoilludene"]]},{"id":"NCBITaxon:5454","l":"","na":5,"nb":1,"a":[["TED%3AAF-A0A162YC52-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A162YC52-F1-model_v4_TED01"],["TED%3AAF-A0A163JCD7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A163JCD7-F1-model_v4_TED01"],["TED%3AAF-A0A163LJZ7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A163LJZ7-F1-model_v4_TED02"],["TED%3AAF-A0A163LQ36-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A163LQ36-F1-model_v4_TED01"],["TED%3AAF-A0A163M9G4-F1-model_v4_TED01","TED novel fold AF-A0A163M9G4-F1-model_v4_TED01"]],"b":[["polyketides/solanapyrone-a.yaml","solanapyrone A"]]},{"id":"UniProt:P22629","l":"","na":5,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_4IR","4IR-binding site"],["proteintraitsmech%3ABIOLIP_HL9","HL9-binding site"],["proteintraitsmech%3ABIOLIP_ZOE","ZOE-binding site"],["proteintraitsmech%3AMETALPDB_RH_DINUCLEAR","dinuclear rhodium site"],["proteintraitsmech%3AMETALPDB_CO_TETRANUCLEAR","tetranuclear cobalt site"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"CHEBI:140434","l":"3-[(Z)-2-isocyanovinyl]indole","na":4,"nb":1,"a":[["EC%3A1.14.20.11","3-[(Z)-2-isocyanoethenyl]-1H-indole synthase"],["EC%3A2.5.1.146","3-geranyl-3-[(Z)-2-isocyanoethenyl]indole synthase"],["RHEA%3A56700","(2S)-3-(1H-indol-3-yl)-2-isocyanopropanoate + 2-oxoglutarate + O2 + H(+) = 3-[(Z)-2-isocyanoethenyl]-1H-indole + succinate + 2 CO2 + H2O"],["RHEA%3A17349","3-[(Z)-2-isocyanoethenyl]-1H-indole + (2E)-geranyl diphosphate = 3-geranyl-3-[(Z)-2-isocyanoethenyl]-1H-indole + diphosphate"]],"b":[["alkaloids/3-z-2-isocyanovinyl-indole.yaml","3-[(Z)-2-isocyanovinyl]indole"]]},{"id":"CHEBI:140442","l":"12-epi-fischerindole U isonitrile","na":4,"nb":1,"a":[["EC%3A1.14.20.14","hapalindole-type alkaloid chlorinase"],["EC%3A5.5.1.33","12-epi-fischerindole U synthase"],["RHEA%3A56764","12-epi-fischerindole U + chloride + 2-oxoglutarate + O2 + H(+) = 12-epi-fischerindole G + succinate + CO2 + H2O"],["RHEA%3A56456","3-geranyl-3-[(Z)-2-isocyanoethenyl]-1H-indole = 12-epi-fischerindole U"]],"b":[["alkaloids/12-epi-fischerindole-u-isonitrile.yaml","12-epi-fischerindole U isonitrile"]]},{"id":"CHEBI:155910","l":"aculene D","na":4,"nb":1,"a":[["RHEA%3A65112","aculene D + 2-oxoglutarate + O2 = aculene C + succinate + CO2 + H2O"],["RHEA%3A65104","aculene D + L-prolyl-[peptidyl-carrier protein] = aculene B + holo-[peptidyl-carrier protein]"],["RHEA%3A65084","asperaculane E + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = aculene D + 2 oxidized [NADPH--hemoprotein reductase] + CO2 + 3 H2O + H(+)"],["RHEA%3A65092","asperaculane G + reduced [NADPH--hemoprotein reductase] + O2 = aculene D + oxidized [NADPH--hemoprotein reductase] + CO2 + 2 H2O"]],"b":[["terpenoids/aculene-d.yaml","aculene D"]]},{"id":"CHEBI:16368","l":"6-hydroxymellein","na":4,"nb":1,"a":[["EC%3A2.1.1.108","6-hydroxymellein O-methyltransferase"],["RHEA%3A65248","5 malonyl-CoA + AH2 + 5 H(+) = 6-hydroxymellein + A + 5 CO2 + 5 CoA + H2O"],["RHEA%3A65252","6-hydroxymellein + (2E,6E)-farnesyl diphosphate = verruculide C + diphosphate"],["RHEA%3A15201","6-hydroxymellein + S-adenosyl-L-methionine = 6-methoxymellein + S-adenosyl-L-homocysteine + H(+)"]],"b":[["shikimates_and_phenylpropanoids/6-hydroxymellein.yaml","6-hydroxymellein"]]},{"id":"CHEBI:18048","l":"DIMBOA","na":4,"nb":1,"a":[["EC%3A2.4.1.202","2,4-dihydroxy-7-methoxy-2H-1,4-benzoxazin-3(4H)-one 2-D- glucosyltransferase"],["EC%3A3.2.1.182","4-hydroxy-7-methoxy-3-oxo-3,4-dihydro-2H-1,4-benzoxazin-2-yl glucoside beta-D-glucosidase"],["RHEA%3A33975","DIMBOA beta-D-glucoside + H2O = DIMBOA + D-glucose"],["RHEA%3A15541","DIMBOA + UDP-alpha-D-glucose = DIMBOA beta-D-glucoside + UDP + H(+)"]],"b":[["alkaloids/dimboa.yaml","DIMBOA"]]},{"id":"CHEBI:18227","l":"sterigmatocystin","na":4,"nb":1,"a":[["EC%3A2.1.1.109","demethylsterigmatocystin 6-O-methyltransferase"],["EC%3A2.1.1.110","sterigmatocystin 8-O-methyltransferase"],["RHEA%3A11504","6-demethylsterigmatocystin + S-adenosyl-L-methionine = sterigmatocystin + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A15561","sterigmatocystin + S-adenosyl-L-methionine = 8-O-methylsterigmatocystin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["polyketides/sterigmatocystin.yaml","sterigmatocystin"]]},{"id":"CHEBI:2448","l":"actinorhodin","na":4,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["proteintraitsmech%3ABIOLIP_ZCT","ZCT-binding site"]],"b":[["polyketides/actinorhodin.yaml","actinorhodin"]]},{"id":"CHEBI:4356","l":"desferrioxamine B","na":4,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_4356","requires desferrioxamine B"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["proteintraitsmech%3ABIOLIP_KTY","KTY-binding site"]],"b":[["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"]]},{"id":"CHEBI:51460","l":"albaflavenone","na":4,"nb":1,"a":[["EC%3A1.14.15.39","epi-isozizaene 5-monooxygenase"],["RHEA%3A25988","(5R)-albaflavenol + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = albaflavenone + 2 oxidized [2Fe-2S]-[ferredoxin] + 2 H2O"],["RHEA%3A25980","(5S)-albaflavenol + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = albaflavenone + 2 oxidized [2Fe-2S]-[ferredoxin] + 2 H2O"],["RHEA%3A32439","(+)-epi-isozizaene + 4 reduced [2Fe-2S]-[ferredoxin] + 2 O2 + 4 H(+) = albaflavenone + 4 oxidized [2Fe-2S]-[ferredoxin] + 3 H2O"]],"b":[["terpenoids/albaflavenone.yaml","albaflavenone"]]},{"id":"CHEBI:63282","l":"pseudaminate","na":4,"nb":1,"a":[["EC%3A2.5.1.97","pseudaminic acid synthase"],["EC%3A2.7.7.81","pseudaminic acid cytidylyltransferase"],["RHEA%3A31631","2,4-diacetamido-2,4,6-trideoxy-beta-L-altrose + phosphoenolpyruvate + H2O = pseudaminate + phosphate"],["RHEA%3A32083","pseudaminate + CTP = CMP-pseudaminate + diphosphate"]],"b":[["carbohydrates/pseudaminate.yaml","pseudaminate"]]},{"id":"CHEBI:64258","l":"","na":4,"nb":1,"a":[["EC%3A1.14.13.154","erythromycin 12 hydroxylase"],["EC%3A2.1.1.254","erythromycin 3'-O-methyltransferase"],["RHEA%3A32647","erythromycin C + S-adenosyl-L-methionine = erythromycin A + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A32631","erythromycin D + NADPH + O2 + H(+) = erythromycin C + NADP(+) + H2O"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"CHEBI:79296","l":"indigoidine","na":4,"nb":1,"a":[["EC%3A4.3.3.9","indigoidine synthase"],["RHEA%3A81507","2 3-amino-1,5-dihydropyridine-2,6-dione + O2 = indigoidine + 2 H2O"],["RHEA%3A81499","2 FMN + 2 L-glutamine + 2 ATP + O2 = indigoidine + 2 FMNH2 + 2 AMP + 2 diphosphate + 2 H2O"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["alkaloids/indigoidine.yaml","indigoidine"]]},{"id":"CHEBI:9555","l":"tioguanine","na":4,"nb":1,"a":[["EC%3A2.1.1.67","thiopurine S-methyltransferase"],["RHEA%3A56580","6-thioguanine + S-adenosyl-L-methionine = 6-methylthioguanine + S-adenosyl-L-homocysteine + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.40","The Nucleobase/Ascorbate Transporter (NAT) or Nucleobase:Cation Symporter-2 (NCS2) Family"]],"b":[["alkaloids/tioguanine.yaml","tioguanine"]]},{"id":"NCBITaxon:101028","l":"Fusarium pseudograminearum","na":1,"nb":4,"a":[["TED%3AAF-A0A7S8DXW2-F1-model_v4_TED02","TED novel fold AF-A0A7S8DXW2-F1-model_v4_TED02"]],"b":[["alkaloids/8-oxo-fusatin.yaml","8-oxo-fusatin"],["alkaloids/8-oxo-isopentenyladenine.yaml","8-oxo-isopentenyladenine"],["alkaloids/fusatin.yaml","fusatin"],["alkaloids/fusatinic-acid.yaml","fusatinic acid"]]},{"id":"NCBITaxon:1038928","l":"Streptomyces xinghaiensis","na":1,"nb":4,"a":[["TED%3AAF-A0A3R7FP99-F1-model_v4_TED01","TED novel fold AF-A0A3R7FP99-F1-model_v4_TED01"]],"b":[["alkaloids/dixiamycin-a.yaml","dixiamycin A"],["alkaloids/xiamycin-a.yaml","xiamycin A"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"],["polyketides/oligomycin.yaml","oligomycin"]]},{"id":"NCBITaxon:112509","l":"Hordeum vulgare subsp. vulgare","na":1,"nb":4,"a":[["IDPO%3A0000004","pre-molten globule"]],"b":[["fatty_acids/diketones.yaml","β-Diketones"],["terpenoids/11-hydroxy-hordetriene.yaml","11-hydroxy-hordetriene"],["terpenoids/hordediene.yaml","hordediene"],["terpenoids/hordetriene.yaml","hordetriene"]]},{"id":"NCBITaxon:1311","l":"Streptococcus agalactiae","na":4,"nb":1,"a":[["Pfam%3APF19567","Capsular polysaccharide synthesis, CpsB/CapC"],["Pfam%3APF16828","GAG-binding domain on surface antigen"],["Pfam%3APF27244","GtfB middle domain"],["Pfam%3APF07373","CAMP factor (Cfa)"]],"b":[["carbohydrates/capsular-polysaccharide-3.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:1813822","l":"Xylariales sp. No.14919","na":4,"nb":1,"a":[["TED%3AAF-A0A1V1SW90-F1-model_v4_TED01","TED novel fold AF-A0A1V1SW90-F1-model_v4_TED01"],["TED%3AAF-A0A1V1T5K0-F1-model_v4_TED01","TED novel fold AF-A0A1V1T5K0-F1-model_v4_TED01"],["TED%3AAF-A0A1V1TFW0-F1-model_v4_TED03","TED novel fold AF-A0A1V1TFW0-F1-model_v4_TED03"],["TED%3AAF-A0A1V1THH5-F1-model_v4_TED03","TED novel fold AF-A0A1V1THH5-F1-model_v4_TED03"]],"b":[["polyketides/fr901512.yaml","FR901512"]]},{"id":"NCBITaxon:1944","l":"Streptomyces halstedii","na":1,"nb":4,"a":[["Pfam%3APF09277","Erythronolide synthase, docking"]],"b":[["alkaloids/rotihibin-a.yaml","rotihibin A"],["polyketides/halstoctacosanolide-a.yaml","halstoctacosanolide A"],["terpenoids/geosmin.yaml","(−)-geosmin"],["unclassified/vicenistatin.yaml","vicenistatin"]]},{"id":"NCBITaxon:1967","l":"Streptomyces kanamyceticus","na":1,"nb":4,"a":[["Pfam%3APF13579","Glycosyl transferase 4-like domain"]],"b":[["amino_acids_and_peptides/gausemycin-a.yaml","gausemycin A"],["amino_acids_and_peptides/gausemycin-b.yaml","gausemycin B"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/kanamycin-a.yaml","kanamycin A"]]},{"id":"NCBITaxon:2017","l":"Streptoalloteichus hindustanus","na":1,"nb":4,"a":[["Pfam%3APF19581","Glyoxalase superfamily protein"]],"b":[["amino_acids_and_peptides/tallysomycin-a.yaml","tallysomycin A"],["amino_acids_and_peptides/tallysomycin-b.yaml","tallysomycin B"],["carbohydrates/apramycin.yaml","apramycin"],["carbohydrates/tobramycin.yaml","tobramycin"]]},{"id":"NCBITaxon:2045","l":"Nocardioides simplex","na":4,"nb":1,"a":[["Pfam%3APF00775","Dioxygenase"],["Pfam%3APF04444","Catechol dioxygenase N terminus"],["PROSITE%3APS00083","Intradiol ring-cleavage dioxygenases signature"],["TED%3AAF-A0A4Y3NBY1-F1-model_v4_TED01","TED novel fold AF-A0A4Y3NBY1-F1-model_v4_TED01"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:226900","l":"Bacillus cereus (strain ATCC 14579 / DSM 31 / CCUG 7414 / JCM 2152 / NBRC 15305 / NCIMB 9373 / NCTC 2599 / NRRL B-3711)","na":4,"nb":1,"a":[["IDPO%3A0000060","self-assembly"],["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF14436","Bacterial EndoU nuclease"],["Pfam%3APF10803","Spore germination GerPB"]],"b":[["amino_acids_and_peptides/thiocillin-i.yaml","thiocillin I"]]},{"id":"NCBITaxon:267608","l":"Ralstonia nicotianae (strain ATCC BAA-1114 / GMI1000)","na":4,"nb":1,"a":[["Pfam%3APF13473","Cupredoxin-like domain"],["Pfam%3APF09483","Type III secretion protein (HpaP)"],["Pfam%3APF14897","EpsG family"],["Pfam%3APF03377","TAL effector repeat"]],"b":[["unclassified/micacocidin.yaml","micacocidin"]]},{"id":"NCBITaxon:269797","l":"Methanosarcina barkeri str. Fusaro","na":4,"nb":1,"a":[["Pfam%3APF27274","Coenzyme F430 synthetase CfbE, C-terminal domain"],["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"],["Pfam%3APF09505","Dimethylamine methyltransferase (Dimeth_PyL)"],["PROSITE%3APS00507","Nickel-dependent hydrogenases large subunit signature 1"]],"b":[["alkaloids/coenzyme-f430.yaml","coenzyme F430"]]},{"id":"NCBITaxon:28447","l":"Clavibacter michiganensis","na":4,"nb":1,"a":[["TED%3AAF-A0A251YC11-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A251YC11-F1-model_v4_TED02"],["TED%3AAF-A0A2S5VA57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5VA57-F1-model_v4_TED01"],["TED%3AAF-A0A2S5VJK2-F1-model_v4_TED01","TED novel fold AF-A0A2S5VJK2-F1-model_v4_TED01"],["TED%3AAF-A0A399NHQ8-F1-model_v4_TED01","TED novel fold AF-A0A399NHQ8-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/michiganin-a.yaml","michiganin A"]]},{"id":"NCBITaxon:28450","l":"Burkholderia pseudomallei","na":4,"nb":1,"a":[["Pfam%3APF18664","CdiA C-terminal tRNase domain"],["Pfam%3APF12106","Colicin E5 ribonuclease domain"],["Pfam%3APF11480","Colicin-E5 Imm protein"],["Pfam%3APF13332","Hemagglutinin repeat"]],"b":[["polyketides/malleilactone.yaml","malleilactone"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans Pd1222","na":4,"nb":1,"a":[["Pfam%3APF27518","Heme exporter protein C"],["Pfam%3APF22039","Imidazolonepropionase-like composite domain, bacteria"],["PROSITE%3APS01181","Ribosomal protein S21 signature"],["Pfam%3APF02239","Cytochrome D1 heme domain"]],"b":[["alkaloids/parabactin.yaml","parabactin"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":1,"nb":4,"a":[["TED%3AAF-A0A679J1E9-F1-model_v4_TED01","TED novel fold AF-A0A679J1E9-F1-model_v4_TED01"]],"b":[["unclassified/vacidobactin-a.yaml","vacidobactin A"],["unclassified/vacidobactin-b.yaml","vacidobactin B"],["unclassified/variobactin-a.yaml","variobactin A"],["unclassified/variobactin-b.yaml","variobactin B"]]},{"id":"NCBITaxon:40602","l":"Claviceps fusiformis","na":1,"nb":4,"a":[["Pfam%3APF06766","Fungal hydrophobin"]],"b":[["alkaloids/agroclavine-i.yaml","Agroclavine I"],["alkaloids/elymoclavine.yaml","elymoclavine"],["alkaloids/ergocryptine.yaml","α-ergocryptine"],["alkaloids/ergotamine.yaml","ergotamine"]]},{"id":"NCBITaxon:43662","l":"Pseudoalteromonas piscicida","na":1,"nb":4,"a":[["Pfam%3APF08329","Chitinase A, N-terminal domain"]],"b":[["alkaloids/2-3-4-5-tetrabromopyrrole.yaml","2,3,4,5-tetrabromopyrrole"],["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["alkaloids/pseudochelin-a.yaml","pseudochelin A"]]},{"id":"NCBITaxon:497965","l":"","na":4,"nb":1,"a":[["TED%3AAF-E0UJA0-F1-model_v4_TED01","TED highly-symmetric fold AF-E0UJA0-F1-model_v4_TED01"],["TED%3AAF-E0U6M3-F1-model_v4_TED03","TED novel fold AF-E0U6M3-F1-model_v4_TED03"],["TED%3AAF-E0UE39-F1-model_v4_TED02","TED novel fold AF-E0UE39-F1-model_v4_TED02"],["TED%3AAF-E0UM93-F1-model_v4_TED01","TED novel fold AF-E0UM93-F1-model_v4_TED01"]],"b":[["fatty_acids/1-heptadecene.yaml","1-heptadecene"]]},{"id":"NCBITaxon:5083","l":"Penicillium canescens","na":1,"nb":4,"a":[["Pfam%3APF09206","Alpha-L-arabinofuranosidase B, catalytic"]],"b":[["alkaloids/agroclavine-i.yaml","Agroclavine I"],["unclassified/outovirin-a.yaml","outovirin A"],["unclassified/outovirin-c.yaml","outovirin C"],["unclassified/penitrem-a.yaml","penitrem A"]]},{"id":"NCBITaxon:512","l":"Alcaligenes sp","na":4,"nb":1,"a":[["Pfam%3APF26354","N,N-dimethylformamidase alpha subunit"],["Pfam%3APF20254","N,N-dimethylformamidase beta subunit-like, C-terminal"],["Pfam%3APF11606","Family 31 carbohydrate binding protein"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"]],"b":[["polyketides/kalimantacin-a.yaml","kalimantacin A"]]},{"id":"NCBITaxon:5353","l":"Lentinula edodes","na":4,"nb":1,"a":[["Pfam%3APF21671","Protein CPL1-like"],["Pfam%3APF16850","Peptidase inhibitor I66"],["TED%3AAF-A0A1Q3EBL0-F1-model_v4_TED01","TED novel fold AF-A0A1Q3EBL0-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3ENK4-F1-model_v4_TED01","TED novel fold AF-A0A1Q3ENK4-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/lentinulin-a.yaml","lentinulin A"]]},{"id":"NCBITaxon:5516","l":"Fusarium culmorum","na":1,"nb":4,"a":[["TED%3AAF-A0A2T4GUL3-F1-model_v4_TED01","TED novel fold AF-A0A2T4GUL3-F1-model_v4_TED01"]],"b":[["polyketides/zearalenone.yaml","zearalenone"],["terpenoids/15-acetyldeoxynivalenol.yaml","15-acetyldeoxynivalenol"],["terpenoids/culmorin.yaml","culmorin"],["terpenoids/nivalenol.yaml","nivalenol"]]},{"id":"NCBITaxon:655819","l":"Beauveria bassiana ARSEF 2860","na":1,"nb":4,"a":[["Pfam%3APF22354","Hydrophobin"]],"b":[["polyketides/oosporein.yaml","oosporein"],["unclassified/beauverolide-ba.yaml","beauverolide Ba"],["unclassified/beauverolide-ca.yaml","beauverolide Ca"],["unclassified/beauverolide-ka.yaml","beauverolide Ka"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":4,"nb":1,"a":[["PROSITE%3APS00949","Autoinducer synthase family signature"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"],["PROSITE%3APS00607","cAMP phosphodiesterases class-II signature"],["TED%3AAF-A0A844NWZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A844NWZ1-F1-model_v4_TED02"]],"b":[["unclassified/ape-vf.yaml","APE Vf"]]},{"id":"NCBITaxon:76728","l":"Streptomyces vitaminophilus","na":1,"nb":4,"a":[["TED%3AAF-A0A0T6LRN4-F1-model_v4_TED01","TED novel fold AF-A0A0T6LRN4-F1-model_v4_TED01"]],"b":[["alkaloids/pyrrolomycin-a.yaml","pyrrolomycin A"],["alkaloids/pyrrolomycin-b.yaml","pyrrolomycin B"],["alkaloids/pyrrolomycin-c.yaml","pyrrolomycin C"],["alkaloids/pyrrolomycin-d.yaml","pyrrolomycin D"]]},{"id":"NCBITaxon:85698","l":"","na":4,"nb":1,"a":[["Pfam%3APF25975","CzcB C-terminal circularly permuted SH3-like domain"],["Pfam%3APF17524","Anti-sigma factor CnrY"],["Pfam%3APF10778","Halocarboxylic acid dehydrogenase DehI"],["TED%3AAF-A0A1R1JVF9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1R1JVF9-F1-model_v4_TED03"]],"b":[["amino_acids_and_peptides/alcaligin.yaml","alcaligin"]]},{"id":"NCBITaxon:933388","l":"Penicillium oxalicum (strain 114-2 / CGMCC 5302)","na":4,"nb":1,"a":[["Pfam%3APF27751","ATEG_07667 C-terminal domain"],["Pfam%3APF11402","Antifungal protein"],["Pfam%3APF12311","Protein of unknown function (DUF3632)"],["TED%3AAF-S8ATN5-F1-model_v4_TED01","TED highly-symmetric fold AF-S8ATN5-F1-model_v4_TED01"]],"b":[["unclassified/atpenin-b.yaml","atpenin B"]]},{"id":"NCBITaxon:93625","l":"Psilocybe cyanescens","na":4,"nb":1,"a":[["Pfam%3APF02958","Ecdysteroid kinase-like family"],["TED%3AAF-A0A409XLW7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A409XLW7-F1-model_v4_TED01"],["TED%3AAF-A0A409XPY8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A409XPY8-F1-model_v4_TED01"],["TED%3AAF-A0A409XED8-F1-model_v4_TED01","TED novel fold AF-A0A409XED8-F1-model_v4_TED01"]],"b":[["alkaloids/psilocybin.yaml","psilocybin"]]},{"id":"UniProt:P02701","l":"","na":4,"nb":1,"a":[["Pfam%3APF01382","Avidin family"],["PROSITE%3APS00577","Avidin-like domain signature"],["proteintraitsmech%3ABIOLIP_B1R","B1R-binding site"],["proteintraitsmech%3ABIOLIP_BTN","BTN-binding site"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"UniProt:P62593","l":"","na":4,"nb":1,"a":[["proteintraitsmech%3AMEROPS_CLEAVAGE_M50_004","RseP peptidase cleavage specificity"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["PROSITE%3APS00146","Beta-lactamase class-A active site"],["MCSA%3A2","beta-lactamase (Class A)"]],"b":[["amino_acids_and_peptides/clavulanic-acid-2.yaml","clavulanic acid"]]},{"id":"UniProt:Q00441","l":"","na":4,"nb":1,"a":[["EC%3A1.14.15.35","6-deoxyerythronolide B hydroxylase"],["RHEA%3A40299","6-deoxyerythronolide B + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = erythronolide B + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"],["MCSA%3A694","6-deoxyerythronolide B hydroxylase"],["proteintraitsmech%3ABIOLIP_9AP","9AP-binding site"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"UniProt:Q8TDV0","l":"","na":4,"nb":1,"a":[["ComplexPortal%3ACPX-16132","-"],["ComplexPortal%3ACPX-17565","-"],["ComplexPortal%3ACPX-24374","-"],["CDD%3Acd15002","7tmA_GPR151"]],"b":[["carbohydrates/tobramycin.yaml","tobramycin"]]},{"id":"UniProt:Q9Y243","l":"","na":4,"nb":1,"a":[["ComplexPortal%3ACPX-22352","-"],["ComplexPortal%3ACPX-24286","-"],["CDD%3Acd05593","STKc_PKB_gamma"],["InterPro%3AIPR034675","Protein kinase B gamma, catalytic domain"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"CHEBI:131914","l":"violacein","na":3,"nb":1,"a":[["RHEA%3A49720","protoviolaceinate + NADH + 2 O2 + 2 H(+) = violacein + CO2 + NAD(+) + 2 H2O"],["RHEA%3A49728","protoviolaceinate + NADPH + 2 O2 + 2 H(+) = violacein + CO2 + NADP(+) + 2 H2O"],["RHEA%3A49732","violaceinate + O2 + H(+) = violacein + CO2 + H2O"]],"b":[["alkaloids/violacein.yaml","violacein"]]},{"id":"CHEBI:133763","l":"YWA1","na":3,"nb":1,"a":[["RHEA%3A62652","6 malonyl-CoA + acetyl-CoA + 6 H(+) = naphtopyrone YWA1 + 6 CO2 + 7 CoA + H2O"],["RHEA%3A62700","naphtopyrone YWA1 + H2O = naphthalene-1,3,6,8-tetrol + acetoacetate + H(+)"],["RHEA%3A62680","naphtopyrone YWA1 = norrubrofusarin + H2O + H(+)"]],"b":[["polyketides/ywa1.yaml","YWA1"]]},{"id":"CHEBI:138046","l":"sesterfisherol","na":3,"nb":1,"a":[["EC%3A4.2.3.176","sesterfisherol synthase"],["RHEA%3A54068","(2E,6E,10E,14E)-geranylfarnesyl diphosphate + H2O = sesterfisherol + diphosphate"],["RHEA%3A78407","sesterfisherol + 3 reduced [NADPH--hemoprotein reductase] + 3 O2 = sesterfisherate + 3 oxidized [NADPH--hemoprotein reductase] + 4 H2O + 4 H(+)"]],"b":[["terpenoids/sesterfisherol.yaml","sesterfisherol"]]},{"id":"CHEBI:18393","l":"naphthalene-1,3,8-triol","na":3,"nb":1,"a":[["EC%3A4.2.1.94","scytalone dehydratase"],["RHEA%3A24396","scytalone = 1,3,8-trihydroxynaphthalene + H2O"],["MCSA%3A910","scytalone dehydratase"]],"b":[["polyketides/naphthalene-1-3-8-triol.yaml","naphthalene-1,3,8-triol"]]},{"id":"CHEBI:28915","l":"fosfomycin","na":3,"nb":1,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.5","The Pseudomonas OprP Porin (POP) Family"],["proteintraitsmech%3ABIOLIP_FCN","FCN-binding site"]],"b":[["unclassified/fosfomycin.yaml","fosfomycin"]]},{"id":"CHEBI:29472","l":"2-heptyl-3-hydroxy-4-quinolone","na":3,"nb":1,"a":[["EC%3A1.14.13.182","2-heptyl-3-hydroxy-4(1H)-quinolone synthase"],["RHEA%3A60352","2-heptyl-3-hydroxy-4(1H)-quinolone + O2 = N-octanoylanthranilate + CO + H(+)"],["RHEA%3A37871","2-heptyl-4(1H)-quinolone + NADH + O2 + H(+) = 2-heptyl-3-hydroxy-4(1H)-quinolone + NAD(+) + H2O"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"]]},{"id":"CHEBI:3139","l":"bleomycin A2","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A9.A.18","The Peptide Uptake Permease (PUP) Family"]],"b":[["amino_acids_and_peptides/bleomycin-a2.yaml","bleomycin A2"]]},{"id":"CHEBI:31432","l":"corynebactin","na":3,"nb":1,"a":[["RHEA%3A33811","3 2,3-dihydroxybenzoate + 3 L-threonine + 3 glycine + 6 ATP = corynebactin + 6 AMP + 6 diphosphate + 3 H2O + 3 H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"CHEBI:31550","l":"epothilone B","na":3,"nb":1,"a":[["RHEA%3A47808","epothilone D + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = epothilone B + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["proteintraitsmech%3ABIOLIP_EPB","EPB-binding site"]],"b":[["unclassified/epothilone-b.yaml","epothilone B"]]},{"id":"CHEBI:40968","l":"astaxanthin","na":3,"nb":1,"a":[["EC%3A1.14.99.64","zeaxanthin 4-ketolase"],["RHEA%3A56772","all-trans-adonixanthin + 2 AH2 + 2 O2 = all-trans-(3S,3'S)-astaxanthin + 2 A + 3 H2O"],["proteintraitsmech%3ABIOLIP_AXT","AXT-binding site"]],"b":[["terpenoids/astaxanthin.yaml","astaxanthin"]]},{"id":"CHEBI:46702","l":"(−)-geosmin","na":3,"nb":1,"a":[["EC%3A4.1.99.16","geosmin synthase"],["RHEA%3A30371","(1E,4S,5E,7R)-germacra-1(10),5-dien-11-ol + H2O = (-)-geosmin + acetone"],["RHEA%3A30455","(1S,4aS)-1,4a-dimethyl-1,2,3,4,4a,5,6,8a-octahydronaphthalene + H2O = (-)-geosmin"]],"b":[["terpenoids/geosmin.yaml","(−)-geosmin"]]},{"id":"CHEBI:48741","l":"β-phellandrene","na":3,"nb":1,"a":[["EC%3A4.2.3.51","beta-phellandrene synthase (neryl-diphosphate-cyclizing)"],["RHEA%3A25504","(2E)-geranyl diphosphate = beta-phellandrene + diphosphate"],["RHEA%3A27830","neryl diphosphate = beta-phellandrene + diphosphate"]],"b":[["terpenoids/phellandrene.yaml","β-phellandrene"]]},{"id":"CHEBI:50432","l":"putrebactin","na":3,"nb":1,"a":[["EC%3A6.3.2.63","putrebactin synthase"],["RHEA%3A79279","2 N-(3-carboxypropanoyl)-N-hydroxyputrescine + 2 ATP = putrebactin + 2 AMP + 2 diphosphate + 2 H(+)"],["RHEA%3A79287","pre-putrebactin + ATP = putrebactin + AMP + diphosphate + H(+)"]],"b":[["amino_acids_and_peptides/putrebactin.yaml","putrebactin"]]},{"id":"CHEBI:63468","l":"tirucalla-7,24-dien-3β-ol","na":3,"nb":1,"a":[["EC%3A5.4.99.56","tirucalladienol synthase"],["RHEA%3A31887","(S)-2,3-epoxysqualene = tirucalla-7,24-dien-3beta-ol"],["RHEA%3A80279","tirucalla-7,24-dien-3beta-ol + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = dihydroniloticin + 2 oxidized [NADPH--hemoprotein reductase] + 2 H2O + 2 H(+)"]],"b":[["terpenoids/tirucalla-7-24-dien-3-ol.yaml","tirucalla-7,24-dien-3β-ol"]]},{"id":"CHEBI:6472","l":"lincomycin","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_3QB","3QB-binding site"]],"b":[["carbohydrates/lincomycin.yaml","lincomycin"]]},{"id":"CHEBI:71609","l":"albonoursin","na":3,"nb":1,"a":[["EC%3A1.3.3.13","albonoursin synthase"],["RHEA%3A35531","cyclo(L-phenylalanyl-L-leucyl) + 2 O2 = albonoursin + 2 H2O2"],["RHEA%3A35539","cyclo[(Z)-alpha,beta-didehydrophenylalanyl-L-leucyl] + O2 = albonoursin + H2O2"]],"b":[["unclassified/albonoursin.yaml","albonoursin"]]},{"id":"CHEBI:7719","l":"ochratoxin A","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.60","The Organo Anion Transporter (OAT) Family"]],"b":[["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"]]},{"id":"CHEBI:77879","l":"elaiophylin","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["proteintraitsmech%3ABIOLIP_ELO","ELO-binding site"]],"b":[["polyketides/elaiophylin.yaml","elaiophylin"]]},{"id":"CHEBI:80729","l":"toxoflavin","na":3,"nb":1,"a":[["EC%3A2.1.1.349","toxoflavin synthase"],["RHEA%3A56852","reumycin + S-adenosyl-L-methionine = toxoflavin + S-adenosyl-L-homocysteine + H(+)"],["proteintraitsmech%3ABIOLIP_TOF","TOF-binding site"]],"b":[["alkaloids/toxoflavin.yaml","toxoflavin"]]},{"id":"CHEBI:9215","l":"spectinomycin","na":3,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["proteintraitsmech%3ABIOLIP_SCM","SCM-binding site"]],"b":[["carbohydrates/spectinomycin.yaml","spectinomycin"]]},{"id":"CHEBI:9470","l":"tetracenomycin C","na":3,"nb":1,"a":[["EC%3A1.14.13.200","tetracenomycin A2 monooxygenase-diooxygenase"],["RHEA%3A42824","tetracenomycin A2 + 2 NADH + 2 O2 + 2 H(+) = tetracenomycin C + 2 NAD(+) + H2O"],["RHEA%3A42820","tetracenomycin A2 + 2 NADPH + 2 O2 + 2 H(+) = tetracenomycin C + 2 NADP(+) + H2O"]],"b":[["polyketides/tetracenomycin-c.yaml","tetracenomycin C"]]},{"id":"NCBITaxon:10141","l":"Cavia porcellus","na":3,"nb":1,"a":[["IDPO%3A0000048","limited proteolysis display site"],["Pfam%3APF16681","Ig-like domain on T-cell surface glycoprotein CD3 epsilon chain"],["PROSITE%3APS00799","Granulins signature"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":3,"nb":1,"a":[["Pfam%3APF05258","Dna[CI] antecedent, DciA"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"],["TED%3AAF-Q0RZW9-F1-model_v4_TED03","TED highly-symmetric fold AF-Q0RZW9-F1-model_v4_TED03"]],"b":[["unclassified/rhodochelin.yaml","rhodochelin"]]},{"id":"NCBITaxon:1125972","l":"Amycolatopsis alba DSM 44262","na":3,"nb":1,"a":[["TED%3AAF-A0A229R958-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A229R958-F1-model_v4_TED01"],["TED%3AAF-A0A229REG9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A229REG9-F1-model_v4_TED01"],["TED%3AAF-A0A229RFD1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A229RFD1-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/albachelin.yaml","albachelin"]]},{"id":"NCBITaxon:1381753","l":"Moniliophthora roreri (strain MCA 2997)","na":3,"nb":1,"a":[["TED%3AAF-V2WPW3-F1-model_v4_TED02","TED highly-symmetric fold AF-V2WPW3-F1-model_v4_TED02"],["TED%3AAF-V2WSW5-F1-model_v4_TED05","TED highly-symmetric fold AF-V2WSW5-F1-model_v4_TED05"],["TED%3AAF-V2XCP9-F1-model_v4_TED03","TED highly-symmetric fold AF-V2XCP9-F1-model_v4_TED03"]],"b":[["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"]]},{"id":"NCBITaxon:1392250","l":"Aspergillus steynii IBT 23096","na":3,"nb":1,"a":[["TED%3AAF-A0A2I2FXR6-F1-model_v4_TED02","TED novel fold AF-A0A2I2FXR6-F1-model_v4_TED02"],["TED%3AAF-A0A2I2GJL8-F1-model_v4_TED01","TED novel fold AF-A0A2I2GJL8-F1-model_v4_TED01"],["TED%3AAF-A0A2I2GP63-F1-model_v4_TED02","TED novel fold AF-A0A2I2GP63-F1-model_v4_TED02"]],"b":[["alkaloids/ochrindole-a.yaml","ochrindole A"]]},{"id":"NCBITaxon:1406225","l":"Archangium violaceum Cb vi76","na":3,"nb":1,"a":[["TED%3AAF-A0A084STC5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A084STC5-F1-model_v4_TED01"],["TED%3AAF-A0A084SQF5-F1-model_v4_TED01","TED novel fold AF-A0A084SQF5-F1-model_v4_TED01"],["TED%3AAF-A0A084SQH8-F1-model_v4_TED01","TED novel fold AF-A0A084SQH8-F1-model_v4_TED01"]],"b":[["polyketides/gephyronic-acid.yaml","gephyronic acid"]]},{"id":"NCBITaxon:1756125","l":"Pyrenochaetopsis sp.","na":1,"nb":3,"a":[["Pfam%3APF22903","Diels-Alderase-like"]],"b":[["polyketides/wakodecalines-a.yaml","wakodecalines A"],["polyketides/wakodecalines-b.yaml","wakodecalines B"],["unclassified/phomasetin.yaml","phomasetin"]]},{"id":"NCBITaxon:1810919","l":"Aspergillus mulundensis","na":3,"nb":1,"a":[["TED%3AAF-A0A3D8QN50-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D8QN50-F1-model_v4_TED01"],["TED%3AAF-A0A3D8RF64-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D8RF64-F1-model_v4_TED01"],["TED%3AAF-A0A3D8R479-F1-model_v4_TED02","TED novel fold AF-A0A3D8R479-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/mulundocandin.yaml","mulundocandin"]]},{"id":"NCBITaxon:1857892","l":"Streptomyces sp. MP131-18","na":1,"nb":3,"a":[["TED%3AAF-A0A1V2RLA5-F1-model_v4_TED02","TED novel fold AF-A0A1V2RLA5-F1-model_v4_TED02"]],"b":[["polyketides/lagunapyrone-a.yaml","lagunapyrone A"],["polyketides/lagunapyrone-b.yaml","lagunapyrone B"],["polyketides/lagunapyrone-c.yaml","lagunapyrone C"]]},{"id":"NCBITaxon:1885","l":"Streptomyces actuosus","na":1,"nb":3,"a":[["Pfam%3APF17258","Family of unknown function (DUF5324)"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/nosiheptide-2.yaml","nosiheptide"]]},{"id":"NCBITaxon:1904","l":"Streptomyces cyaneus","na":1,"nb":3,"a":[["Pfam%3APF04673","Polyketide synthesis cyclase"]],"b":[["carbohydrates/curamycin.yaml","curamycin"],["polyketides/cardol.yaml","cardol"],["polyketides/cosmomycin-d.yaml","cosmomycin D"]]},{"id":"NCBITaxon:1932","l":"Streptomyces tendae","na":1,"nb":3,"a":[["Pfam%3APF01356","Alpha amylase inhibitor"]],"b":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"],["polyketides/lysolipin-i.yaml","lysolipin I"],["terpenoids/geosmin.yaml","(−)-geosmin"]]},{"id":"NCBITaxon:1935","l":"Streptomyces violaceoruber","na":1,"nb":3,"a":[["Pfam%3APF03559","NDP-hexose 2,3-dehydratase"]],"b":[["polyketides/granaticin.yaml","granaticin"],["polyketides/kendomycin.yaml","kendomycin"],["terpenoids/methylenomycin-a.yaml","methylenomycin A"]]},{"id":"NCBITaxon:1938","l":"Streptomyces viridochromogenes","na":1,"nb":3,"a":[["Pfam%3APF11599","RRNA methyltransferase AviRa"]],"b":[["amino_acids_and_peptides/glycinocin-a.yaml","glycinocin A"],["carbohydrates/avilamycin-a.yaml","avilamycin A"],["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"]]},{"id":"NCBITaxon:1950","l":"Streptomyces peucetius","na":1,"nb":3,"a":[["Pfam%3APF13732","ATP-binding protein DrrA1-3-like, C-terminal domain"]],"b":[["amino_acids_and_peptides/peucechelin.yaml","peucechelin"],["polyketides/daunorubicin.yaml","daunorubicin"],["polyketides/doxorubicin.yaml","doxorubicin"]]},{"id":"NCBITaxon:1956","l":"Streptomyces diastaticus","na":1,"nb":3,"a":[["TED%3AAF-A0A7K3Q596-F1-model_v4_TED01","TED novel fold AF-A0A7K3Q596-F1-model_v4_TED01"]],"b":[["alkaloids/diastaphenazine.yaml","diastaphenazine"],["alkaloids/izumiphenazine-c.yaml","izumiphenazine C"],["polyketides/rimocidin.yaml","rimocidin"]]},{"id":"NCBITaxon:216591","l":"Burkholderia cenocepacia J2315","na":1,"nb":3,"a":[["Pfam%3APF04199","Putative cyclase"]],"b":[["unclassified/ornibactin-c4.yaml","ornibactin C4"],["unclassified/ornibactin-c6.yaml","ornibactin C6"],["unclassified/ornibactin-c8.yaml","ornibactin C8"]]},{"id":"NCBITaxon:2572248","l":"Cryptosporiopsis sp. 8999","na":1,"nb":3,"a":[["Pfam%3APF08592","Anthrone oxygenase"]],"b":[["polyketides/cryptosporioptide-a.yaml","cryptosporioptide A"],["polyketides/cryptosporioptide-b.yaml","cryptosporioptide B"],["polyketides/cryptosporioptide-c.yaml","cryptosporioptide C"]]},{"id":"NCBITaxon:2747968","l":"Fusarium vanettenii","na":3,"nb":1,"a":[["Pfam%3APF01083","Cutinase"],["PROSITE%3APS00155","Cutinase, serine active site"],["PROSITE%3APS00931","Cutinase, aspartate and histidine active sites"]],"b":[["polyketides/bikaverin.yaml","bikaverin"]]},{"id":"NCBITaxon:312309","l":"Aliivibrio fischeri (strain ATCC 700601 / ES114)","na":3,"nb":1,"a":[["Pfam%3APF06610","L-alanine exporter"],["Pfam%3APF00765","Autoinducer synthase"],["PROSITE%3APS00949","Autoinducer synthase family signature"]],"b":[["unclassified/ape-vf.yaml","APE Vf"]]},{"id":"NCBITaxon:322159","l":"Streptococcus thermophilus (strain ATCC BAA-491 / LMD-9)","na":3,"nb":1,"a":[["Pfam%3APF18470","Cas9 alpha-helical lobe domain"],["Pfam%3APF18070","CRISPR-Cas9 PI domain"],["Pfam%3APF18061","CRISPR-Cas9 WED domain"]],"b":[["amino_acids_and_peptides/streptide.yaml","streptide"]]},{"id":"NCBITaxon:324833","l":"Streptomyces lasaliensis","na":1,"nb":3,"a":[["TED%3AAF-A0A4U5W597-F1-model_v4_TED01","TED novel fold AF-A0A4U5W597-F1-model_v4_TED01"]],"b":[["polyketides/lasalocid-2.yaml","lasalocid"],["polyketides/lasalocid.yaml","lasalocid"],["unclassified/echinomycin.yaml","echinomycin"]]},{"id":"NCBITaxon:33203","l":"Purpureocillium lilacinum","na":1,"nb":3,"a":[["TED%3AAF-A0A2U3ENJ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U3ENJ6-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/leucinostatin-a.yaml","leucinostatin A"],["amino_acids_and_peptides/leucinostatin-b.yaml","leucinostatin B"],["polyketides/patulin.yaml","patulin"]]},{"id":"NCBITaxon:347834","l":"Rhizobium etli (strain ATCC 51251 / DSM 11541 / JCM 21823 / NBRC 15573 / CFN 42)","na":3,"nb":1,"a":[["Pfam%3APF02632","BioY family"],["proteintraitsmech%3AELIFE109154_VbsL","Vicibactin acyl-hydroxyornithine epimerase family"],["PROSITE%3APS01349","Nodulation protein nodA signature"]],"b":[["amino_acids_and_peptides/vicibactin.yaml","vicibactin"]]},{"id":"NCBITaxon:362242","l":"","na":3,"nb":1,"a":[["Pfam%3APF02654","Cobalamin-5-phosphate synthase"],["Pfam%3APF02622","AlgH-like"],["Pfam%3APF01628","HrcA protein C terminal domain"]],"b":[["polyketides/mycolactone-b.yaml","mycolactone B"]]},{"id":"NCBITaxon:376686","l":"Flavobacterium johnsoniae (strain ATCC 17061 / DSM 2064 / JCM 8514 / BCRC 14874 / CCUG 350202 / NBRC 14942 / NCIMB 11054 / UW101)","na":3,"nb":1,"a":[["Pfam%3APF17957","Bacterial Ig domain"],["Pfam%3APF24850","Bacillithiol biosynthesis BshC, C-terminal coiled-coil domain"],["Pfam%3APF14109","GldH lipoprotein"]],"b":[["polyketides/flexirubin.yaml","flexirubin"]]},{"id":"NCBITaxon:381666","l":"Cupriavidus necator H16","na":3,"nb":1,"a":[["Pfam%3APF13473","Cupredoxin-like domain"],["Pfam%3APF10605","3HB-oligomer hydrolase (3HBOH)"],["Pfam%3APF21783","YNCE-like beta-propeller"]],"b":[["amino_acids_and_peptides/cupriachelin.yaml","cupriachelin"]]},{"id":"NCBITaxon:3879","l":"Medicago sativa","na":3,"nb":1,"a":[["Pfam%3APF02095","Extensin-like protein"],["Pfam%3APF02431","Chalcone-flavanone isomerase"],["PROSITE%3APS00441","Chalcone and stilbene synthases active site"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:393595","l":"Alcanivorax borkumensis SK2","na":1,"nb":3,"a":[["TED%3AAF-Q0VNH7-F1-model_v4_TED01","TED highly-symmetric fold AF-Q0VNH7-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/amphibactin-e.yaml","amphibactin E"],["amino_acids_and_peptides/amphibactin-h.yaml","amphibactin H"],["fatty_acids/amphibactin-i.yaml","amphibactin I"]]},{"id":"NCBITaxon:3988","l":"Ricinus communis","na":3,"nb":1,"a":[["Pfam%3APF10998","Protein of unknown function (DUF2838)"],["PROSITE%3APS00574","Fatty acid desaturases family 2 signature"],["PROSITE%3APS00275","Shiga/ricin ribosomal inactivating toxins active site signature"]],"b":[["terpenoids/casbene.yaml","casbene"]]},{"id":"NCBITaxon:4039","l":"Daucus carota","na":3,"nb":1,"a":[["PROSITE%3APS00451","Pathogenesis-related proteins Bet v I family signature"],["PROSITE%3APS00431","Small hydrophilic plant seed proteins signature"],["Pfam%3APF02987","Late embryogenesis abundant protein"]],"b":[["carbohydrates/adenine-arabinoside.yaml","adenine arabinoside"]]},{"id":"NCBITaxon:41067","l":"Aspergillus candidus","na":1,"nb":3,"a":[["TED%3AAF-A0A2I2EZ62-F1-model_v4_TED02","TED novel fold AF-A0A2I2EZ62-F1-model_v4_TED02"]],"b":[["alkaloids/aspcandine.yaml","aspcandine"],["polyketides/kojic-acid.yaml","kojic acid"],["shikimates_and_phenylpropanoids/chlorflavonin.yaml","chlorflavonin"]]},{"id":"NCBITaxon:41899","l":"Burkholderia plantarii","na":3,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_GrbD","GrbD-type graminine biosynthesis protein family"],["proteintraitsmech%3AELIFE109154_GrbE","GrbE-type graminine biosynthesis protein family"],["TED%3AAF-A0A0B6RMB1-F1-model_v4_TED01","TED novel fold AF-A0A0B6RMB1-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/plantaribactin.yaml","plantaribactin"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":3,"nb":1,"a":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF22277","EncFtn-like"],["TED%3AAF-D0LJ11-F1-model_v4_TED04","TED highly-symmetric fold AF-D0LJ11-F1-model_v4_TED04"]],"b":[["polyketides/haliamide.yaml","haliamide"]]},{"id":"NCBITaxon:53446","l":"Streptomyces cinnamoneus","na":1,"nb":3,"a":[["TED%3AAF-A0A2S6XSK0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S6XSK0-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/cinnamycin.yaml","cinnamycin"],["amino_acids_and_peptides/duramycin.yaml","duramycin"],["unclassified/bicozamycin.yaml","bicozamycin"]]},{"id":"NCBITaxon:645","l":"Aeromonas salmonicida","na":3,"nb":1,"a":[["Pfam%3APF28601","Heat shock protein 15, C-terminal region"],["Pfam%3APF12563","Hemolytic toxin N terminal"],["Pfam%3APF01203","Type II secretion system (T2SS), protein N"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:659352","l":"Streptomyces sp. SN-593","na":1,"nb":3,"a":[["TED%3AAF-A0A7U3V0R8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7U3V0R8-F1-model_v4_TED02"]],"b":[["polyketides/kinanthraquinone-b.yaml","kinanthraquinone B"],["polyketides/kinanthraquinone.yaml","kinanthraquinone"],["polyketides/reveromycin-a.yaml","reveromycin A"]]},{"id":"NCBITaxon:660122","l":"Fusarium vanettenii (strain ATCC MYA-4622 / CBS 123669 / FGSC 9596 / NRRL 45880 / 77-13-4)","na":3,"nb":1,"a":[["Pfam%3APF17660","Polyglycine hydrolase-like, structural repeat"],["Pfam%3APF26719","ATPase synthesis protein 25, C-terminal TPR repeats"],["TED%3AAF-C7YNY6-F1-model_v4_TED02","TED highly-symmetric fold AF-C7YNY6-F1-model_v4_TED02"]],"b":[["unclassified/sansalvamide.yaml","sansalvamide"]]},{"id":"NCBITaxon:66374","l":"Streptomyces nojiriensis","na":1,"nb":3,"a":[["TED%3AAF-A0A8A6HBY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8A6HBY6-F1-model_v4_TED01"]],"b":[["carbohydrates/streptothricin-d.yaml","streptothricin D"],["carbohydrates/streptothricin-e.yaml","streptothricin E"],["carbohydrates/streptothricin-f.yaml","streptothricin F"]]},{"id":"NCBITaxon:68239","l":"Streptomyces mirabilis strain P8-A","na":1,"nb":3,"a":[["TED%3AAF-A0A1I2Y4U7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2Y4U7-F1-model_v4_TED01"]],"b":[["alkaloids/azodyrecin-a.yaml","Azodyrecin A"],["alkaloids/azodyrecin-b.yaml","Azodyrecin B"],["alkaloids/azodyrecin-c.yaml","Azodyrecin C"]]},{"id":"NCBITaxon:715","l":"Actinobacillus pleuropneumoniae","na":3,"nb":1,"a":[["Pfam%3APF26002","AprE-like, beta-barrel domain"],["Pfam%3APF02794","RTX toxin acyltransferase family"],["PROSITE%3APS00543","HlyD family secretion proteins signature"]],"b":[["unclassified/capsular-polysaccharide.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:717774","l":"Marinomonas mediterranea MMB-1","na":1,"nb":3,"a":[["TED%3AAF-F2K4E6-F1-model_v4_TED01","TED novel fold AF-F2K4E6-F1-model_v4_TED01"]],"b":[["alkaloids/bistribromopyrrole.yaml","bistribromopyrrole"],["shikimates_and_phenylpropanoids/bromophene.yaml","bromophene"],["shikimates_and_phenylpropanoids/pentabromopseudilin.yaml","pentabromopseudilin"]]},{"id":"NCBITaxon:749414","l":"","na":3,"nb":1,"a":[["Pfam%3APF14509","Glycosyl-hydrolase 97 C-terminal, oligomerisation"],["Pfam%3APF14508","Glycosyl-hydrolase 97 N-terminal"],["Pfam%3APF10566","Glycoside hydrolase 97"]],"b":[["polyketides/nanchangmycin.yaml","nanchangmycin"]]},{"id":"NCBITaxon:889282","l":"Polyangium spumosum","na":3,"nb":1,"a":[["TED%3AAF-A0A6N7PQI9-F1-model_v4_TED01","TED novel fold AF-A0A6N7PQI9-F1-model_v4_TED01"],["TED%3AAF-A0A6N7PTT9-F1-model_v4_TED02","TED novel fold AF-A0A6N7PTT9-F1-model_v4_TED02"],["TED%3AAF-A0A6N7Q2E0-F1-model_v4_TED01","TED novel fold AF-A0A6N7Q2E0-F1-model_v4_TED01"]],"b":[["unclassified/antalid.yaml","antalid"]]},{"id":"NCBITaxon:95486","l":"Burkholderia cenocepacia","na":3,"nb":1,"a":[["TED%3AAF-A0A109EHZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A109EHZ6-F1-model_v4_TED01"],["TED%3AAF-A0A071M3L2-F1-model_v4_TED01","TED novel fold AF-A0A071M3L2-F1-model_v4_TED01"],["TED%3AAF-A0A088UYL8-F1-model_v4_TED01","TED novel fold AF-A0A088UYL8-F1-model_v4_TED01"]],"b":[["unclassified/ornibactin-c8.yaml","ornibactin C8"]]},{"id":"RHEA:32647","l":"","na":3,"nb":1,"a":[["EC%3A2.1.1.254","erythromycin 3'-O-methyltransferase"],["RHEA%3A32647","erythromycin C + S-adenosyl-L-methionine = erythromycin A + S-adenosyl-L-homocysteine + H(+)"],["GO%3A0102307","erythromycin 3'-o-methyltransferase activity"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"UniProt:P22629.","l":"","na":3,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_4IR","4IR-binding site"],["proteintraitsmech%3ABIOLIP_HL9","HL9-binding site"],["proteintraitsmech%3ABIOLIP_ZOE","ZOE-binding site"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"UniProt:P48635","l":"","na":3,"nb":1,"a":[["EC%3A1.14.13.154","erythromycin 12 hydroxylase"],["RHEA%3A32631","erythromycin D + NADPH + O2 + H(+) = erythromycin C + NADP(+) + H2O"],["proteintraitsmech%3ABIOLIP_KLN","KLN-binding site"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"UniProt:Q00975","l":"","na":3,"nb":1,"a":[["GO%3A1903235","positive regulation of calcium ion-dependent exocytosis of neurotransmitter"],["ELM%3AELME000451","LIG_PDZ_Wminus1_1"],["proteintraitsmech%3ABIOLIP_PT5","PT5-binding site"]],"b":[["alkaloids/odilorhabdin-noso-95c.yaml","odilorhabdin NOSO-95C"]]},{"id":"UniProt:Q16584","l":"","na":3,"nb":1,"a":[["CDD%3Acd14147","STKc_MLK3"],["CDD%3Acd12059","SH3_MLK1-3"],["InterPro%3AIPR035779","MLK1-3, SH3 domain"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"]]},{"id":"CHEBI:10106","l":"zearalenone","na":2,"nb":1,"a":[["RHEA%3A79255","zearalenone + H2O = hydrolyzed zearalenone + H(+)"],["proteintraitsmech%3ABIOLIP_ZER","ZER-binding site"]],"b":[["polyketides/zearalenone.yaml","zearalenone"]]},{"id":"CHEBI:132426","l":"chondrochloren A","na":2,"nb":1,"a":[["EC%3A4.1.1.129","1'-carboxy-chondrochloren decarboxylase"],["RHEA%3A81491","1'-carboxy-chondrochloren A + FAD + 2 H(+) = chondrochloren A + FADH2 + CO2"]],"b":[["polyketides/chondrochloren-a.yaml","chondrochloren A"]]},{"id":"CHEBI:134612","l":"staphyloferrin B","na":2,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_134612","requires staphyloferrin B"],["proteintraitsmech%3ABIOLIP_SE8","SE8-binding site"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"]]},{"id":"CHEBI:135511","l":"rebeccamycin","na":2,"nb":1,"a":[["EC%3A2.1.1.164","demethylrebeccamycin-D-glucose O-methyltransferase"],["RHEA%3A27353","4'-demethylrebeccamycin + S-adenosyl-L-methionine = rebeccamycin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["alkaloids/rebeccamycin.yaml","rebeccamycin"]]},{"id":"CHEBI:137562","l":"(+)-eremophilene","na":2,"nb":1,"a":[["EC%3A4.2.3.164","(+)-eremophilene synthase"],["RHEA%3A52804","(2E,6E)-farnesyl diphosphate = (+)-eremophilene + diphosphate"]],"b":[["terpenoids/eremophilene.yaml","(+)-eremophilene"]]},{"id":"CHEBI:138165","l":"(+)-(2S,3R,9R)-pristinol","na":2,"nb":1,"a":[["EC%3A4.2.3.182","pristinol synthase"],["RHEA%3A54372","(2E,6E)-farnesyl diphosphate + H2O = (+)-(2S,3R,9R)-pristinol + diphosphate"]],"b":[["terpenoids/2s-3r-9r-pristinol.yaml","(+)-(2S,3R,9R)-pristinol"]]},{"id":"CHEBI:139480","l":"(+)-O-methylkolavelool","na":2,"nb":1,"a":[["EC%3A2.1.1.347","(+)-O-methylkolavelool synthase"],["RHEA%3A55968","(+)-kolavelool + S-adenosyl-L-methionine = (+)-O-methylkolavelool + S-adenosyl-L-homocysteine + H(+)"]],"b":[["terpenoids/o-methylkolavelool.yaml","(+)-O-methylkolavelool"]]},{"id":"CHEBI:145066","l":"stemphyloxin II","na":2,"nb":1,"a":[["RHEA%3A61904","betaenone A + NADPH + O2 + H(+) = stemphyloxin II + NADP(+) + H2O"],["RHEA%3A62716","stemphyloxin I = stemphyloxin II"]],"b":[["polyketides/stemphyloxin-ii.yaml","stemphyloxin II"]]},{"id":"CHEBI:145070","l":"stemphyloxin I","na":2,"nb":1,"a":[["RHEA%3A62712","betaenone C + NADPH + O2 + H(+) = stemphyloxin I + NADP(+) + H2O"],["RHEA%3A62716","stemphyloxin I = stemphyloxin II"]],"b":[["polyketides/stemphyloxin-i.yaml","stemphyloxin I"]]},{"id":"CHEBI:146153","l":"ilicicolin B","na":2,"nb":1,"a":[["RHEA%3A63084","ilicicolin B + FADH2 + chloride + O2 = ilicicolin A + FAD + 2 H2O + H(+)"],["RHEA%3A63080","ilicicolinate B + AH2 + ATP = ilicicolin B + A + AMP + diphosphate"]],"b":[["unclassified/ilicicolin-b.yaml","ilicicolin B"]]},{"id":"CHEBI:155912","l":"aculene C","na":2,"nb":1,"a":[["RHEA%3A65108","aculene C + L-prolyl-[peptidyl-carrier protein] = aculene A + holo-[peptidyl-carrier protein]"],["RHEA%3A65112","aculene D + 2-oxoglutarate + O2 = aculene C + succinate + CO2 + H2O"]],"b":[["terpenoids/aculene-c.yaml","aculene C"]]},{"id":"CHEBI:15956","l":"biotin","na":2,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15956","requires biotin"],["proteintraitsmech%3ABIOLIP_BTN","BTN-binding site"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"CHEBI:16441","l":"linamarin","na":2,"nb":1,"a":[["EC%3A2.4.1.63","linamarin synthase"],["RHEA%3A20009","2-hydroxy-2-methylpropanenitrile + UDP-alpha-D-glucose = linamarin + UDP + H(+)"]],"b":[["amino_acids_and_peptides/linamarin.yaml","linamarin"]]},{"id":"CHEBI:17630","l":"kanamycin A","na":2,"nb":1,"a":[["MCSA%3A647","kanamycin nucleotidyltransferase"],["proteintraitsmech%3ABIOLIP_KAN","KAN-binding site"]],"b":[["carbohydrates/kanamycin-a.yaml","kanamycin A"]]},{"id":"CHEBI:17695","l":"casbene","na":2,"nb":1,"a":[["EC%3A4.2.3.8","casbene synthase"],["RHEA%3A14901","(2E,6E,10E)-geranylgeranyl diphosphate = casbene + diphosphate"]],"b":[["terpenoids/casbene.yaml","casbene"]]},{"id":"CHEBI:17939","l":"puromycin","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_PUY","PUY-binding site"]],"b":[["carbohydrates/puromycin.yaml","puromycin"]]},{"id":"CHEBI:2504","l":"aflatoxin B1","na":2,"nb":1,"a":[["EC%3A1.14.14.117","aflatoxin B synthase"],["RHEA%3A35759","8-O-methylsterigmatocystin + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = aflatoxin B1 + methanol + 2 oxidized [NADPH--hemoprotein reductase] + CO2 + H2O + 2 H(+)"]],"b":[["unclassified/aflatoxin-b1.yaml","aflatoxin B1"]]},{"id":"CHEBI:27826","l":"(S)-4-hydroxymandelonitrile β-D-glucoside","na":2,"nb":1,"a":[["EC%3A2.4.1.85","cyanohydrin beta-glucosyltransferase"],["RHEA%3A12853","(S)-4-hydroxymandelonitrile + UDP-alpha-D-glucose = dhurrin + UDP + H(+)"]],"b":[["amino_acids_and_peptides/s-4-hydroxymandelonitrile-d-glucoside.yaml","(S)-4-hydroxymandelonitrile β-D-glucoside"]]},{"id":"CHEBI:28283","l":"capsidiol","na":2,"nb":1,"a":[["EC%3A1.14.14.149","5-epiaristolochene 1,3-dihydroxylase"],["RHEA%3A28226","(+)-5-epi-aristolochene + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = capsidiol + 2 oxidized [NADPH--hemoprotein reductase] + 2 H2O + 2 H(+)"]],"b":[["terpenoids/capsidiol.yaml","capsidiol"]]},{"id":"CHEBI:29519","l":"","na":2,"nb":1,"a":[["EC%3A4.2.3.42","aphidicolan-16beta-ol synthase"],["RHEA%3A26213","9alpha-copalyl diphosphate + H2O = aphidicolan-16beta-ol + diphosphate"]],"b":[["terpenoids/aphidicolan-16-ol.yaml","aphidicolan-16β-ol"]]},{"id":"CHEBI:29673","l":"rifamycin SV","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]],"b":[["polyketides/rifamycin-sv.yaml","rifamycin SV"]]},{"id":"CHEBI:38229","l":"solanapyrone A","na":2,"nb":1,"a":[["EC%3A5.5.1.20","prosolanapyrone-III cycloisomerase"],["RHEA%3A31683","prosolanapyrone III = (-)-solanapyrone A"]],"b":[["polyketides/solanapyrone-a.yaml","solanapyrone A"]]},{"id":"CHEBI:42452","l":"formycin A","na":2,"nb":1,"a":[["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"],["proteintraitsmech%3ABIOLIP_FMC","FMC-binding site"]],"b":[["alkaloids/formycin-a.yaml","formycin A"]]},{"id":"CHEBI:48209","l":"aflatoxin B2","na":2,"nb":1,"a":[["EC%3A1.14.14.117","aflatoxin B synthase"],["RHEA%3A35763","8-O-methyldihydrosterigmatocystin + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = aflatoxin B2 + methanol + 2 oxidized [NADPH--hemoprotein reductase] + CO2 + H2O + 2 H(+)"]],"b":[["polyketides/aflatoxin-b2.yaml","aflatoxin B2"]]},{"id":"CHEBI:52317","l":"thalianol","na":2,"nb":1,"a":[["EC%3A5.4.99.31","thalianol synthase"],["RHEA%3A26160","(S)-2,3-epoxysqualene = thalianol"]],"b":[["terpenoids/thalianol.yaml","thalianol"]]},{"id":"CHEBI:61345","l":"chrysobactin","na":2,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_61345","requires chrysobactin"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["amino_acids_and_peptides/chrysobactin.yaml","chrysobactin"]]},{"id":"CHEBI:63465","l":"marneral","na":2,"nb":1,"a":[["EC%3A5.4.99.53","marneral synthase"],["RHEA%3A31875","(S)-2,3-epoxysqualene = marneral"]],"b":[["terpenoids/marneral.yaml","marneral"]]},{"id":"CHEBI:63702","l":"avermitilol","na":2,"nb":1,"a":[["EC%3A4.2.3.96","avermitilol synthase"],["RHEA%3A32023","(2E,6E)-farnesyl diphosphate + H2O = avermitilol + diphosphate"]],"b":[["terpenoids/avermitilol.yaml","avermitilol"]]},{"id":"CHEBI:63703","l":"(−)-δ-cadinene","na":2,"nb":1,"a":[["EC%3A4.2.3.97","(-)-delta-cadinene synthase"],["RHEA%3A32015","(2E,6E)-farnesyl diphosphate = (-)-delta-cadinene + diphosphate"]],"b":[["terpenoids/cadinene.yaml","(−)-δ-cadinene"]]},{"id":"CHEBI:63704","l":"(+)-Τ-muurolol","na":2,"nb":1,"a":[["EC%3A4.2.3.98","(+)-T-muurolol synthase"],["RHEA%3A32011","(2E,6E)-farnesyl diphosphate + H2O = (+)-T-muurolol + diphosphate"]],"b":[["terpenoids/muurolol.yaml","(+)-Τ-muurolol"]]},{"id":"CHEBI:64268","l":"","na":2,"nb":1,"a":[["EC%3A2.1.1.254","erythromycin 3'-O-methyltransferase"],["RHEA%3A32647","erythromycin C + S-adenosyl-L-methionine = erythromycin A + S-adenosyl-L-homocysteine + H(+)"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"CHEBI:6570","l":"lupeol","na":2,"nb":1,"a":[["EC%3A5.4.99.41","lupeol synthase"],["RHEA%3A31383","(S)-2,3-epoxysqualene = lupeol"]],"b":[["terpenoids/lupeol.yaml","lupeol"]]},{"id":"CHEBI:73237","l":"(−)-noscapine","na":2,"nb":1,"a":[["EC%3A1.1.1.415","noscapine synthase"],["RHEA%3A57404","narcotine hemiacetal + NAD(+) = noscapine + NADH + H(+)"]],"b":[["alkaloids/noscapine.yaml","(−)-noscapine"]]},{"id":"CHEBI:77772","l":"ilicicolin H","na":2,"nb":1,"a":[["RHEA%3A64568","3-[(2E,4E,8S,10E,12Z)-4,8-dimethyltetradeca-2,4,10,12-tetraenoyl]-4-hydroxy-5-(4-hydroxyphenyl)-1,2-dihydropyridin-2-one = ilicicolin H"],["RHEA%3A64564","8-epi-ilicicolin H = ilicicolin H"]],"b":[["alkaloids/ilicicolin-h.yaml","ilicicolin H"]]},{"id":"CHEBI:80049","l":"coelichelin","na":2,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_80049","requires coelichelin"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["amino_acids_and_peptides/coelichelin.yaml","coelichelin"]]},{"id":"CHEBI:82799","l":"(R)-nephthenol","na":2,"nb":1,"a":[["EC%3A4.2.3.149","nephthenol synthase"],["RHEA%3A42992","(2E,6E,10E)-geranylgeranyl diphosphate + H2O = (R)-nephthenol + diphosphate"]],"b":[["terpenoids/r-nephthenol.yaml","(R)-nephthenol"]]},{"id":"CHEBI:84711","l":"staphyloferrin A","na":2,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_84711","requires staphyloferrin A"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["unclassified/staphyloferrin-a.yaml","staphyloferrin A"]]},{"id":"CHEBI:86012","l":"oxetanocin A","na":2,"nb":1,"a":[["EC%3A3.1.3.112","4'-phosphooxetanocin A phosphatase"],["RHEA%3A81367","4'-phosphooxetanocin A + H2O = oxetanocin A + phosphate"]],"b":[["carbohydrates/oxetanocin-a.yaml","oxetanocin A"]]},{"id":"NCBITaxon:105351","l":"Aspergillus awamori","na":2,"nb":1,"a":[["PROSITE%3APS00820","Glucoamylase active site region signature"],["TED%3AAF-A0A401KM36-F1-model_v4_TED03","TED novel fold AF-A0A401KM36-F1-model_v4_TED03"]],"b":[["alkaloids/aspergillin-pz.yaml","aspergillin PZ"]]},{"id":"NCBITaxon:105696","l":"Epicoccum nigrum","na":1,"nb":2,"a":[["TED%3AAF-A0A1Y2LQ80-F1-model_v4_TED02","TED novel fold AF-A0A1Y2LQ80-F1-model_v4_TED02"]],"b":[["polyketides/epipyrone-a.yaml","epipyrone A"],["terpenoids/carotene.yaml","β-carotene"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":1,"nb":2,"a":[["TED%3AAF-A0A367PA30-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A367PA30-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/cupriachelin.yaml","cupriachelin"],["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"]]},{"id":"NCBITaxon:1214568","l":"Diaporthe amygdali","na":1,"nb":2,"a":[["Pfam%3APF05704","Capsular polysaccharide synthesis protein"]],"b":[["terpenoids/5-9-10-labda-8-20-13-dien-15-yl-diphosphate.yaml","5α,9α,10β-labda-8(20),13-dien-15-yl diphosphate"],["terpenoids/phyllocladan-16-ol.yaml","phyllocladan-16α-ol"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":2,"nb":1,"a":[["Pfam%3APF22538","Hexaprenyl diphosphate synthase, small subunit"],["PROSITE%3APS01066","Undecaprenyl pyrophosphate synthase family signature"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:1278073","l":"Myxococcus stipitatus (strain DSM 14675 / JCM 12634 / Mx s8)","na":2,"nb":1,"a":[["TED%3AAF-L7U5Z3-F1-model_v4_TED02","TED novel fold AF-L7U5Z3-F1-model_v4_TED02"],["TED%3AAF-L7UEI7-F1-model_v4_TED03","TED novel fold AF-L7UEI7-F1-model_v4_TED03"]],"b":[["polyketides/phenalamide-a2.yaml","phenalamide A2"]]},{"id":"NCBITaxon:1288362","l":"Actinoplanes sp. ATCC 53533","na":2,"nb":1,"a":[["TED%3AAF-A0A428XH31-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A428XH31-F1-model_v4_TED01"],["TED%3AAF-A0A428XQY1-F1-model_v4_TED01","TED novel fold AF-A0A428XQY1-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/uk-68-597.yaml","UK-68,597"]]},{"id":"NCBITaxon:1353533","l":"Pseudoalteromonas luteoviolacea 2ta16","na":2,"nb":1,"a":[["TED%3AAF-V4HNX8-F1-model_v4_TED01","TED novel fold AF-V4HNX8-F1-model_v4_TED01"],["TED%3AAF-V4JDU9-F1-model_v4_TED01","TED novel fold AF-V4JDU9-F1-model_v4_TED01"]],"b":[["shikimates_and_phenylpropanoids/pentabromopseudilin.yaml","pentabromopseudilin"]]},{"id":"NCBITaxon:1392248","l":"Aspergillus campestris (strain IBT 28561)","na":2,"nb":1,"a":[["Pfam%3APF11954","Domain of unknown function (DUF3471)"],["TED%3AAF-A0A2I1D498-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I1D498-F1-model_v4_TED01"]],"b":[["shikimates_and_phenylpropanoids/chlorflavonin.yaml","chlorflavonin"]]},{"id":"NCBITaxon:1449976","l":"Kutzneria albida DSM 43870","na":1,"nb":2,"a":[["TED%3AAF-W5WK35-F1-model_v4_TED01","TED novel fold AF-W5WK35-F1-model_v4_TED01"]],"b":[["carbohydrates/huimycin.yaml","huimycin"],["unclassified/aculeximycin.yaml","aculeximycin"]]},{"id":"NCBITaxon:1450533","l":"Aspergillus niger CBS 101883","na":1,"nb":2,"a":[["TED%3AAF-A0A319AKL5-F1-model_v4_TED01","TED novel fold AF-A0A319AKL5-F1-model_v4_TED01"]],"b":[["polyketides/campyrone-b.yaml","campyrone B"],["polyketides/pyrophen.yaml","pyrophen"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":2,"nb":1,"a":[["PROSITE%3APS01120","Urease nickel ligands signature"],["PROSITE%3APS00145","Urease active site"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:148305","l":"Pyricularia grisea","na":1,"nb":2,"a":[["TED%3AAF-A0A6P8AZV3-F1-model_v4_TED01","TED novel fold AF-A0A6P8AZV3-F1-model_v4_TED01"]],"b":[["alkaloids/pyrichalasin-h.yaml","pyrichalasin H"],["polyketides/terrestric-acid.yaml","terrestric acid"]]},{"id":"NCBITaxon:1519471","l":"Streptomyces sp. NRRL S-4","na":1,"nb":2,"a":[["TED%3AAF-A0A0N0YGV9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0N0YGV9-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/thiostreptamide-s4.yaml","thiostreptamide S4"],["polyketides/venturicidin-a.yaml","venturicidin A"]]},{"id":"NCBITaxon:161398","l":"Pseudoalteromonas phenolica","na":2,"nb":1,"a":[["TED%3AAF-A0A4Q7IPD1-F1-model_v4_TED01","TED novel fold AF-A0A4Q7IPD1-F1-model_v4_TED01"],["TED%3AAF-A0A4Q7IRU1-F1-model_v4_TED01","TED novel fold AF-A0A4Q7IRU1-F1-model_v4_TED01"]],"b":[["shikimates_and_phenylpropanoids/bromophene.yaml","bromophene"]]},{"id":"NCBITaxon:164546","l":"Cupriavidus taiwanensis","na":2,"nb":1,"a":[["TED%3AAF-A0A375CFL3-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A375CFL3-F1-model_v4_TED04"],["TED%3AAF-A0A375EJW3-F1-model_v4_TED03","TED novel fold AF-A0A375EJW3-F1-model_v4_TED03"]],"b":[["amino_acids_and_peptides/taiwachelin.yaml","taiwachelin"]]},{"id":"NCBITaxon:1654360","l":"Photobacterium galatheae","na":2,"nb":1,"a":[["TED%3AAF-A0A066RSN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A066RSN6-F1-model_v4_TED01"],["TED%3AAF-A0A066RLQ8-F1-model_v4_TED01","TED novel fold AF-A0A066RLQ8-F1-model_v4_TED01"]],"b":[["alkaloids/holomycin.yaml","holomycin"]]},{"id":"NCBITaxon:179408","l":"Oscillatoria nigro-viridis PCC 7112","na":2,"nb":1,"a":[["TED%3AAF-K9VAQ4-F1-model_v4_TED02","TED highly-symmetric fold AF-K9VAQ4-F1-model_v4_TED02"],["TED%3AAF-K9VBA8-F1-model_v4_TED02","TED novel fold AF-K9VBA8-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/viridisamide-a.yaml","viridisamide A"]]},{"id":"NCBITaxon:182096","l":"Aspergillus chevalieri","na":1,"nb":2,"a":[["TED%3AAF-A0A7R7VIB2-F1-model_v4_TED01","TED novel fold AF-A0A7R7VIB2-F1-model_v4_TED01"]],"b":[["polyketides/flavoglaucin.yaml","flavoglaucin"],["polyketides/sterigmatocystin.yaml","sterigmatocystin"]]},{"id":"NCBITaxon:1883078","l":"Dentipellis sp. KUC8613","na":2,"nb":1,"a":[["TED%3AAF-A0A5B1QTZ2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A5B1QTZ2-F1-model_v4_TED03"],["TED%3AAF-A0A5B1QFU0-F1-model_v4_TED02","TED novel fold AF-A0A5B1QFU0-F1-model_v4_TED02"]],"b":[["terpenoids/cyatha-3-12-diene.yaml","(-)-Cyatha-3,12-diene"]]},{"id":"NCBITaxon:1896","l":"Streptomyces bikiniensis","na":1,"nb":2,"a":[["Pfam%3APF00908","dTDP-4-dehydrorhamnose 3,5-epimerase"]],"b":[["carbohydrates/streptomycin.yaml","streptomycin"],["polyketides/chalcomycin-a.yaml","chalcomycin A"]]},{"id":"NCBITaxon:1921","l":"Streptomyces olivaceoviridis","na":1,"nb":2,"a":[["Pfam%3APF01356","Alpha amylase inhibitor"]],"b":[["polyketides/resistoflavine.yaml","resistoflavine"],["polyketides/resistomycin.yaml","resistomycin"]]},{"id":"NCBITaxon:1933","l":"","na":2,"nb":1,"a":[["Pfam%3APF16861","Carbamoyltransferase C-terminus"],["Pfam%3APF02543","Carbamoyltransferase N-terminus"]],"b":[["carbohydrates/tobramycin.yaml","tobramycin"]]},{"id":"NCBITaxon:205918","l":"Pseudomonas syringae pv. syringae B728a","na":1,"nb":2,"a":[["Pfam%3APF15457","Type III T3SS secreted effector HopW1-1/HopPmaA"]],"b":[["alkaloids/secimide.yaml","secimide"],["unclassified/syringomycin.yaml","syringomycin"]]},{"id":"NCBITaxon:216595","l":"","na":2,"nb":1,"a":[["Pfam%3APF04996","Succinylarginine dihydrolase"],["TED%3AAF-A0A0G4E5V4-F1-model_v4_TED01","TED novel fold AF-A0A0G4E5V4-F1-model_v4_TED01"]],"b":[["unclassified/viscosin.yaml","viscosin"]]},{"id":"NCBITaxon:229535","l":"Penicillium nordicum","na":2,"nb":1,"a":[["TED%3AAF-A0A0M8NW73-F1-model_v4_TED02","TED novel fold AF-A0A0M8NW73-F1-model_v4_TED02"],["TED%3AAF-A0A0N0RXF0-F1-model_v4_TED02","TED novel fold AF-A0A0N0RXF0-F1-model_v4_TED02"]],"b":[["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"]]},{"id":"NCBITaxon:230091","l":"Micromonospora endolithica","na":1,"nb":2,"a":[["TED%3AAF-A0A3A9ZCA3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3A9ZCA3-F1-model_v4_TED02"]],"b":[["polyketides/loseolamycin-a1.yaml","loseolamycin A1"],["polyketides/loseolamycin-a2.yaml","loseolamycin A2"]]},{"id":"NCBITaxon:234621","l":"Rhodococcus erythropolis PR4","na":1,"nb":2,"a":[["TED%3AAF-C0ZLI2-F1-model_v4_TED01","TED novel fold AF-C0ZLI2-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/heterobactin-a.yaml","heterobactin A"],["amino_acids_and_peptides/heterobactin-s2.yaml","heterobactin S2"]]},{"id":"NCBITaxon:237631","l":"Ustilago maydis (strain 521 / FGSC 9021)","na":2,"nb":1,"a":[["TED%3AAF-A0A0D1E1G8-F1-model_v4_TED01","TED novel fold AF-A0A0D1E1G8-F1-model_v4_TED01"],["TED%3AAF-A0A0D1E4C0-F1-model_v4_TED02","TED novel fold AF-A0A0D1E4C0-F1-model_v4_TED02"]],"b":[["fatty_acids/ustilagic-acid.yaml","ustilagic acid"]]},{"id":"NCBITaxon:2607326","l":"Streptomonospora sp. PA3","na":2,"nb":1,"a":[["TED%3AAF-A0A6N8GAL7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8GAL7-F1-model_v4_TED01"],["TED%3AAF-A0A6N8GG78-F1-model_v4_TED01","TED novel fold AF-A0A6N8GG78-F1-model_v4_TED01"]],"b":[["polyketides/persiamycin-a.yaml","persiamycin A"]]},{"id":"NCBITaxon:264445","l":"Streptomyces hygroscopicus subsp. limoneus","na":1,"nb":2,"a":[["TED%3AAF-A0A0S2PAJ8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0S2PAJ8-F1-model_v4_TED03"]],"b":[["carbohydrates/validamycin-a-2.yaml","validamycin A"],["carbohydrates/validamycin-a.yaml","validamycin A"]]},{"id":"NCBITaxon:272123","l":"Anabaena cylindrica (strain ATCC 27899 / PCC 7122)","na":2,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_FbnM","FbnM-type Dmaq biosynthesis peroxidase subunit family"],["TED%3AAF-K9ZFU9-F1-model_v4_TED01","TED highly-symmetric fold AF-K9ZFU9-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/anachelin.yaml","anachelin"]]},{"id":"NCBITaxon:272559","l":"Bacteroides fragilis (strain ATCC 25285 / DSM 2151 / CCUG 4856 / JCM 11019 / LMG 10263 / NCTC 9343 / Onslow / VPI 2553 / EN-2)","na":2,"nb":1,"a":[["Pfam%3APF16355","Domain of unknown function (DUF4982)"],["Pfam%3APF14229","Domain of unknown function (DUF4332)"]],"b":[["fatty_acids/galactosylceramide.yaml","α-galactosylceramide"]]},{"id":"NCBITaxon:316274","l":"Herpetosiphon aurantiacus DSM 785","na":1,"nb":2,"a":[["TED%3AAF-A9AZN6-F1-model_v4_TED02","TED highly-symmetric fold AF-A9AZN6-F1-model_v4_TED02"]],"b":[["alkaloids/auriculamide.yaml","auriculamide"],["terpenoids/o-methylkolavelool.yaml","(+)-O-methylkolavelool"]]},{"id":"NCBITaxon:318","l":"Pseudomonas savastanoi pv. glycinea","na":2,"nb":1,"a":[["Pfam%3APF05394","Avirulence protein"],["TED%3AAF-A0A3M5VJX5-F1-model_v4_TED01","TED novel fold AF-A0A3M5VJX5-F1-model_v4_TED01"]],"b":[["polyketides/coronatine.yaml","coronatine"]]},{"id":"NCBITaxon:318829","l":"Magnaporthe oryzae","na":2,"nb":1,"a":[["TED%3AAF-A0A4P7NAU2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P7NAU2-F1-model_v4_TED01"],["TED%3AAF-A0A4P7MZB7-F1-model_v4_TED02","TED novel fold AF-A0A4P7MZB7-F1-model_v4_TED02"]],"b":[["polyketides/nectriapyrone.yaml","nectriapyrone"]]},{"id":"NCBITaxon:322710","l":"","na":2,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_Orn_monoox","Metallophore-associated ornithine N5-monooxygenase family"],["proteintraitsmech%3AELIFE109154_PvdP","Pyoverdine chromophore maturation tyrosinase family"]],"b":[["amino_acids_and_peptides/azotobactin-d.yaml","azotobactin D"]]},{"id":"NCBITaxon:333849","l":"Enterococcus faecium (strain ATCC BAA-472 / TX0016 / DO)","na":2,"nb":1,"a":[["Pfam%3APF08546","Ketopantoate reductase PanE/ApbA C terminal"],["Pfam%3APF02558","Ketopantoate reductase PanE/ApbA"]],"b":[["amino_acids_and_peptides/enterocin-a.yaml","enterocin A"]]},{"id":"NCBITaxon:338584","l":"Polymorphospora rubra","na":2,"nb":1,"a":[["TED%3AAF-A0A810NDK9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A810NDK9-F1-model_v4_TED01"],["TED%3AAF-A0A810N2K6-F1-model_v4_TED01","TED novel fold AF-A0A810N2K6-F1-model_v4_TED01"]],"b":[["terpenoids/trehangelin.yaml","trehangelin"]]},{"id":"NCBITaxon:33899","l":"Streptomyces galilaeus","na":1,"nb":2,"a":[["Pfam%3APF21036","Erythromycin biosynthesis protein CIII-like, N-terminal domain"]],"b":[["polyketides/aclacinomycin.yaml","aclacinomycin"],["polyketides/cinerubin-b.yaml","cinerubin B"]]},{"id":"NCBITaxon:339670","l":"Burkholderia ambifaria AMMD","na":1,"nb":2,"a":[["Pfam%3APF11004","3-deoxy-D-manno-oct-2-ulosonic acid (Kdo) hydroxylase"]],"b":[["alkaloids/cepaciachelin.yaml","cepaciachelin"],["polyketides/enacyloxin-iia.yaml","enacyloxin IIa"]]},{"id":"NCBITaxon:348901","l":"Cercospora zeina","na":2,"nb":1,"a":[["TED%3AAF-A0A2I0RIM7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I0RIM7-F1-model_v4_TED01"],["TED%3AAF-A0A2I0RWG4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I0RWG4-F1-model_v4_TED01"]],"b":[["polyketides/cercosporin-2.yaml","cercosporin"]]},{"id":"NCBITaxon:349521","l":"","na":2,"nb":1,"a":[["TED%3AAF-Q2SFS2-F1-model_v4_TED01","TED novel fold AF-Q2SFS2-F1-model_v4_TED01"],["TED%3AAF-Q2SI43-F1-model_v4_TED03","TED novel fold AF-Q2SI43-F1-model_v4_TED03"]],"b":[["alkaloids/prodigiosin-2.yaml","prodigiosin"]]},{"id":"NCBITaxon:36746","l":"Pseudomonas cichorii","na":1,"nb":2,"a":[["TED%3AAF-A0A3M4VH83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M4VH83-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/cichofactin-a.yaml","cichofactin A"],["amino_acids_and_peptides/cichofactin-b.yaml","cichofactin B"]]},{"id":"NCBITaxon:3755","l":"Prunus dulcis","na":2,"nb":1,"a":[["PROSITE%3APS00305","11-S plant seed storage proteins signature"],["TED%3AAF-A0A5E4FP94-F1-model_v4_TED01","TED novel fold AF-A0A5E4FP94-F1-model_v4_TED01"]],"b":[["shikimates_and_phenylpropanoids/4-hydroxy-3-prenylbenzoic-acid.yaml","4-hydroxy-3-prenylbenzoic acid"]]},{"id":"NCBITaxon:377629","l":"Teredinibacter turnerae T7901","na":1,"nb":2,"a":[["TED%3AAF-C5BKS7-F1-model_v4_TED02","TED novel fold AF-C5BKS7-F1-model_v4_TED02"]],"b":[["polyketides/tartrolon-d.yaml","tartrolon D"],["polyketides/tartrolon-e.yaml","tartrolon E"]]},{"id":"NCBITaxon:38300","l":"Streptomyces pristinaespiralis","na":1,"nb":2,"a":[["Pfam%3APF12323","Helix-turn-helix domain"]],"b":[["amino_acids_and_peptides/pristinin-a3.yaml","pristinin A3"],["terpenoids/2s-3r-9r-pristinol.yaml","(+)-(2S,3R,9R)-pristinol"]]},{"id":"NCBITaxon:38313","l":"Shewanella algae","na":2,"nb":1,"a":[["TED%3AAF-A0A1S2T8W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S2T8W3-F1-model_v4_TED01"],["TED%3AAF-A0A8A5EFG1-F1-model_v4_TED02","TED novel fold AF-A0A8A5EFG1-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/avaroferrin.yaml","avaroferrin"]]},{"id":"NCBITaxon:413071","l":"Trichoderma virens Gv29-8","na":1,"nb":2,"a":[["Pfam%3APF07249","Cerato-platanin"]],"b":[["polyketides/trichoxide.yaml","trichoxide"],["unclassified/gliovirin.yaml","gliovirin"]]},{"id":"NCBITaxon:42881","l":"Streptomyces chromofuscus","na":1,"nb":2,"a":[["TED%3AAF-A0A7M2T2Z7-F1-model_v4_TED01","TED novel fold AF-A0A7M2T2Z7-F1-model_v4_TED01"]],"b":[["alkaloids/indigoidine.yaml","indigoidine"],["polyketides/herboxidiene.yaml","herboxidiene"]]},{"id":"NCBITaxon:436515","l":"Variovorax boronicumulans","na":1,"nb":2,"a":[["TED%3AAF-A0A250DMB0-F1-model_v4_TED01","TED novel fold AF-A0A250DMB0-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/variochelin-a.yaml","variochelin A"],["amino_acids_and_peptides/variochelin-b.yaml","variochelin B"]]},{"id":"NCBITaxon:441959","l":"Talaromyces stipitatus ATCC 10500","na":1,"nb":2,"a":[["Pfam%3APF26719","ATPase synthesis protein 25, C-terminal TPR repeats"]],"b":[["polyketides/duclauxin.yaml","duclauxin"],["shikimates_and_phenylpropanoids/stipitatic-acid.yaml","stipitatic acid"]]},{"id":"NCBITaxon:446","l":"Legionella pneumophila","na":2,"nb":1,"a":[["Pfam%3APF14860","DrrA phosphatidylinositol 4-phosphate binding domain"],["TED%3AAF-A0A822WCM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A822WCM6-F1-model_v4_TED01"]],"b":[["fatty_acids/lipopolysaccharide.yaml","lipopolysaccharide"]]},{"id":"NCBITaxon:45151","l":"Pyrenophora tritici-repentis","na":2,"nb":1,"a":[["TED%3AAF-A0A2W1ECP7-F1-model_v4_TED01","TED novel fold AF-A0A2W1ECP7-F1-model_v4_TED01"],["TED%3AAF-A0A834SF78-F1-model_v4_TED01","TED novel fold AF-A0A834SF78-F1-model_v4_TED01"]],"b":[["unclassified/triticone-b.yaml","triticone B"]]},{"id":"NCBITaxon:4558","l":"Sorghum bicolor","na":1,"nb":2,"a":[["TED%3AAF-A0A1W0W5T3-F1-model_v4_TED02","TED novel fold AF-A0A1W0W5T3-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/s-4-hydroxymandelonitrile-d-glucoside.yaml","(S)-4-hydroxymandelonitrile β-D-glucoside"],["shikimates_and_phenylpropanoids/alternariol.yaml","alternariol"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":2,"nb":1,"a":[["PROSITE%3APS00820","Glucoamylase active site region signature"],["TED%3AAF-A0A7I9G6Y3-F1-model_v4_TED02","TED novel fold AF-A0A7I9G6Y3-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":2,"nb":1,"a":[["Pfam%3APF07833","Copper amine oxidase N-terminal domain"],["TED%3AAF-A0A447L715-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A447L715-F1-model_v4_TED02"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:578457","l":"Serpula lacrymans var. lacrymans (strain S7.9)","na":2,"nb":1,"a":[["TED%3AAF-F8NT94-F1-model_v4_TED01","TED highly-symmetric fold AF-F8NT94-F1-model_v4_TED01"],["TED%3AAF-F8NMD8-F1-model_v4_TED01","TED novel fold AF-F8NMD8-F1-model_v4_TED01"]],"b":[["terpenoids/ent-kauren-16alpha-ol.yaml","ent-kauren-16alpha-ol"]]},{"id":"NCBITaxon:58291","l":"Rhizopus microsporus","na":2,"nb":1,"a":[["TED%3AAF-A0A1X0RNA5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1X0RNA5-F1-model_v4_TED03"],["TED%3AAF-A0A1X0S5N4-F1-model_v4_TED01","TED novel fold AF-A0A1X0S5N4-F1-model_v4_TED01"]],"b":[["unclassified/rhizoxin-a.yaml","rhizoxin A"]]},{"id":"NCBITaxon:587753","l":"Pseudomonas chlororaphis","na":2,"nb":1,"a":[["TED%3AAF-A0A8A9Z2C4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A8A9Z2C4-F1-model_v4_TED03"],["TED%3AAF-A0A0A6DEM6-F1-model_v4_TED01","TED novel fold AF-A0A0A6DEM6-F1-model_v4_TED01"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"NCBITaxon:60894","l":"Saccharopolyspora spinosa","na":1,"nb":2,"a":[["Pfam%3APF03559","NDP-hexose 2,3-dehydratase"]],"b":[["polyketides/a83543a.yaml","A83543A"],["polyketides/spinosyn-d.yaml","spinosyn D"]]},{"id":"NCBITaxon:62101","l":"Candidatus Endobugula sertula","na":1,"nb":2,"a":[["TED%3AAF-A0A1D2QPY2-F1-model_v4_TED01","TED novel fold AF-A0A1D2QPY2-F1-model_v4_TED01"]],"b":[["polyketides/bryostatin-2.yaml","bryostatin"],["polyketides/bryostatin.yaml","bryostatin"]]},{"id":"NCBITaxon:634771","l":"Chitinophaga eiseniae","na":1,"nb":2,"a":[["TED%3AAF-A0A847SE20-F1-model_v4_TED01","TED novel fold AF-A0A847SE20-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/pentacitidin-a.yaml","pentacitidin A"],["amino_acids_and_peptides/pentacitidin-b.yaml","pentacitidin B"]]},{"id":"NCBITaxon:643403","l":"Streptomyces sp. MK730-62F2","na":1,"nb":2,"a":[["Pfam%3APF14269","Arylsulfotransferase (ASST)"]],"b":[["carbohydrates/caprazamycin-aglycon.yaml","caprazamycin aglycon"],["carbohydrates/caprazamycin.yaml","caprazamycin"]]},{"id":"NCBITaxon:65","l":"Herpetosiphon aurantiacus","na":1,"nb":2,"a":[["Pfam%3APF09520","Type II restriction endonuclease, HinfI"]],"b":[["alkaloids/auriculamide.yaml","auriculamide"],["terpenoids/o-methylkolavelool.yaml","(+)-O-methylkolavelool"]]},{"id":"NCBITaxon:6573","l":"Mizuhopecten yessoensis","na":2,"nb":1,"a":[["TED%3AAF-A0A210PVN9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A210PVN9-F1-model_v4_TED02"],["TED%3AAF-A0A210PMU5-F1-model_v4_TED01","TED novel fold AF-A0A210PMU5-F1-model_v4_TED01"]],"b":[["alkaloids/gonyautoxin-2.yaml","gonyautoxin 2"]]},{"id":"NCBITaxon:66431","l":"Streptomyces thioluteus","na":1,"nb":2,"a":[["Pfam%3APF11583","P-aminobenzoate N-oxygenase AurF"]],"b":[["alkaloids/sf2768.yaml","SF2768"],["polyketides/aureothin.yaml","aureothin"]]},{"id":"NCBITaxon:6848","l":"Carcinoscorpius rotundicauda","na":1,"nb":2,"a":[["Pfam%3APF02035","Coagulin"]],"b":[["alkaloids/neosaxitoxin.yaml","neosaxitoxin"],["alkaloids/saxitoxin.yaml","saxitoxin"]]},{"id":"NCBITaxon:7787","l":"Tetronarce californica","na":2,"nb":1,"a":[["PROSITE%3APS00405","43 Kd postsynaptic protein signature"],["Pfam%3APF10579","Rapsyn N-terminal myristoylation and linker region"]],"b":[["alkaloids/huperzine-a.yaml","huperzine A"]]},{"id":"NCBITaxon:78410","l":"Neonectria ditissima","na":1,"nb":2,"a":[["TED%3AAF-A0A0P7AKS8-F1-model_v4_TED02","TED novel fold AF-A0A0P7AKS8-F1-model_v4_TED02"]],"b":[["unclassified/colletochlorin-b.yaml","Colletochlorin B"],["unclassified/colletorin-b.yaml","Colletorin B"]]},{"id":"NCBITaxon:79329","l":"Chitinophaga pinensis","na":2,"nb":1,"a":[["TED%3AAF-A0A5C6LK20-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C6LK20-F1-model_v4_TED01"],["TED%3AAF-A0A5C6LKB6-F1-model_v4_TED01","TED novel fold AF-A0A5C6LKB6-F1-model_v4_TED01"]],"b":[["polyketides/flexirubin.yaml","flexirubin"]]},{"id":"NCBITaxon:945553","l":"Hypholoma sublateritium (strain FD-334 SS-4)","na":2,"nb":1,"a":[["TED%3AAF-A0A0D2NQE0-F1-model_v4_TED01","TED novel fold AF-A0A0D2NQE0-F1-model_v4_TED01"],["TED%3AAF-A0A0D2PBZ7-F1-model_v4_TED01","TED novel fold AF-A0A0D2PBZ7-F1-model_v4_TED01"]],"b":[["terpenoids/naematolin.yaml","naematolin"]]},{"id":"NCBITaxon:985895","l":"Leptosphaeria maculans (strain JN3 / isolate v23.1.3 / race Av1-4-5-6-7-8)","na":2,"nb":1,"a":[["TED%3AAF-E5A7U7-F1-model_v4_TED01","TED novel fold AF-E5A7U7-F1-model_v4_TED01"],["TED%3AAF-E5A9E1-F1-model_v4_TED03","TED novel fold AF-E5A9E1-F1-model_v4_TED03"]],"b":[["terpenoids/2-cis-abscisic-acid.yaml","2-cis-abscisic acid"]]},{"id":"RHEA:32631","l":"","na":2,"nb":1,"a":[["EC%3A1.14.13.154","erythromycin 12 hydroxylase"],["RHEA%3A32631","erythromycin D + NADPH + O2 + H(+) = erythromycin C + NADP(+) + H2O"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"RHEA:40299","l":"","na":2,"nb":1,"a":[["EC%3A1.14.15.35","6-deoxyerythronolide B hydroxylase"],["RHEA%3A40299","6-deoxyerythronolide B + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = erythronolide B + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"UniProt:O00763.","l":"","na":2,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RCP","RCP-binding site"],["proteintraitsmech%3ABIOLIP_S1A","S1A-binding site"]],"b":[["polyketides/soraphen-a.yaml","soraphen A"]]},{"id":"UniProt:P00516","l":"","na":2,"nb":1,"a":[["EC%3A2.7.11.12","cGMP-dependent protein kinase"],["Pfam%3APF16808","Coiled-coil N-terminus of cGMP-dependent protein kinase"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P00517","l":"","na":1,"nb":2,"a":[["MCSA%3A757","cAMP-dependent protein kinase"]],"b":[["alkaloids/methylarcyriarubin.yaml","methylarcyriarubin"],["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P04058.","l":"","na":2,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_03S","03S-binding site"],["proteintraitsmech%3ABIOLIP_AA7","AA7-binding site"]],"b":[["alkaloids/physostigmine.yaml","physostigmine"]]},{"id":"UniProt:P0AD64","l":"","na":2,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MA4","MA4-binding site"],["proteintraitsmech%3ABIOLIP_TSL","TSL-binding site"]],"b":[["amino_acids_and_peptides/clavulanic-acid-2.yaml","clavulanic acid"]]},{"id":"CHEBI:133919","l":"decarbamoylsaxitoxin","na":1,"nb":1,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"]]},{"id":"CHEBI:138511","l":"piericidin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HQH","HQH-binding site"]],"b":[["polyketides/piericidin-a.yaml","piericidin A"]]},{"id":"CHEBI:142639","l":"nectriapyrone","na":1,"nb":1,"a":[["RHEA%3A58748","desmethylnectriapyrone + S-adenosyl-L-methionine = nectriapyrone + S-adenosyl-L-homocysteine + H(+)"]],"b":[["polyketides/nectriapyrone.yaml","nectriapyrone"]]},{"id":"CHEBI:145105","l":"asperphenamate","na":1,"nb":1,"a":[["RHEA%3A61908","N-benzoyl-L-phenylalaninol + benzoate + L-phenylalanine + 2 ATP = asperphenamate + 2 AMP + 2 diphosphate + H(+)"]],"b":[["unclassified/asperphenamate.yaml","asperphenamate"]]},{"id":"CHEBI:146007","l":"(M)-viriditoxin","na":1,"nb":1,"a":[["RHEA%3A62884","4 semiviriditoxin + O2 = 2 (M)-viriditoxin + 2 H2O"]],"b":[["polyketides/viriditoxin.yaml","viriditoxin"]]},{"id":"CHEBI:15353","l":"blasticidin S","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BLS","BLS-binding site"]],"b":[["carbohydrates/blasticidin-s.yaml","blasticidin S"]]},{"id":"CHEBI:15732","l":"phosphonoacetic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PAE","PAE-binding site"]],"b":[["unclassified/phosphonoacetic-acid.yaml","phosphonoacetic acid"]]},{"id":"CHEBI:15738","l":"staurosporine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_STU","STU-binding site"]],"b":[["alkaloids/staurosporine.yaml","staurosporine"]]},{"id":"CHEBI:157682","l":"vanchrobactin","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_157682","requires vanchrobactin"]],"b":[["amino_acids_and_peptides/vanchrobactin.yaml","vanchrobactin"]]},{"id":"CHEBI:16349","l":"L-citrulline","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CIR","CIR-binding site"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"CHEBI:167379","l":"trichobrasilenol","na":1,"nb":1,"a":[["RHEA%3A66644","(2E,6E)-farnesyl diphosphate + H2O = trichobrasilenol + diphosphate"]],"b":[["terpenoids/trichobrasilenol.yaml","trichobrasilenol"]]},{"id":"CHEBI:167886","l":"aetokthonotoxin","na":1,"nb":1,"a":[["RHEA%3A82519","5,7-dibromo-indole-3-carbonitrile + 2,3,5-tribromoindole + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = aetokthonotoxin + 2 oxidized [2Fe-2S]-[ferredoxin] + 2 H2O"]],"b":[["alkaloids/aetokthonotoxin.yaml","aetokthonotoxin"]]},{"id":"CHEBI:168396","l":"mycophenolic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MOA","MOA-binding site"]],"b":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"]]},{"id":"CHEBI:171659","l":"quinolobactin","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_171659","requires quinolobactin"]],"b":[["alkaloids/quinolobactin.yaml","quinolobactin"]]},{"id":"CHEBI:18157","l":"aerobactin","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18157","requires aerobactin"]],"b":[["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]]},{"id":"CHEBI:219836","l":"anditomin","na":1,"nb":1,"a":[["RHEA%3A82659","andilesin C + 2-oxoglutarate + O2 = anditomin + succinate + CO2 + H2O"]],"b":[["unclassified/anditomin.yaml","anditomin"]]},{"id":"CHEBI:22152","l":"2-cis-abscisic acid","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["terpenoids/2-cis-abscisic-acid.yaml","2-cis-abscisic acid"]]},{"id":"CHEBI:26789","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_OI9","OI9-binding site"]],"b":[["carbohydrates/streptothricin-f.yaml","streptothricin F"]]},{"id":"CHEBI:27592","l":"ectoine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_4CS","4CS-binding site"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"CHEBI:27834","l":"pentostatin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DCF","DCF-binding site"]],"b":[["alkaloids/pentostatin.yaml","pentostatin"]]},{"id":"CHEBI:28364","l":"all-cis-5,8,11,14,17-icosapentaenoic acid","na":1,"nb":1,"a":[["TCDB%3A4.C.1","The Fatty Acid Group Translocation (FAT) Family"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"CHEBI:28748","l":"doxorubicin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DM2","DM2-binding site"]],"b":[["polyketides/doxorubicin.yaml","doxorubicin"]]},{"id":"CHEBI:28864","l":"tobramycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TOY","TOY-binding site"]],"b":[["carbohydrates/tobramycin.yaml","tobramycin"]]},{"id":"CHEBI:29703","l":"validamycin A","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["carbohydrates/validamycin-a.yaml","validamycin A"]]},{"id":"CHEBI:30838","l":"itaconic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ITN","ITN-binding site"]],"b":[["fatty_acids/itaconic-acid.yaml","itaconic acid"]]},{"id":"CHEBI:31856","l":"mithramycin","na":1,"nb":1,"a":[["RHEA%3A85455","iso-mithramycin = mithramycin"]],"b":[["polyketides/mithramycin.yaml","mithramycin"]]},{"id":"CHEBI:32079","l":"pyrrolnitrin","na":1,"nb":1,"a":[["RHEA%3A46136","aminopyrrolnitrin + NADPH + 2 O2 + H(+) = pyrrolnitrin + NADP(+) + 2 H2O"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"CHEBI:34970","l":"saxitoxin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9SL","9SL-binding site"]],"b":[["alkaloids/saxitoxin.yaml","saxitoxin"]]},{"id":"CHEBI:38240","l":"solanapyrone D","na":1,"nb":1,"a":[["RHEA%3A75143","prosolanapyrone III = solanapyrone D"]],"b":[["polyketides/solanapyrone-d.yaml","solanapyrone D"]]},{"id":"CHEBI:40009","l":"D-cycloserine","na":1,"nb":1,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"]],"b":[["amino_acids_and_peptides/cycloserine.yaml","cycloserine"]]},{"id":"CHEBI:41977","l":"daunorubicin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DM1","DM1-binding site"]],"b":[["polyketides/daunorubicin.yaml","daunorubicin"]]},{"id":"CHEBI:42223","l":"emodin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_EMO","EMO-binding site"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"CHEBI:42355","l":"erythromycin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ERY","ERY-binding site"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"CHEBI:42639","l":"γ-butyrolactone","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_GBL","GBL-binding site"]],"b":[["fatty_acids/butyrolactone.yaml","γ-butyrolactone"]]},{"id":"CHEBI:43616","l":"K-252a","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_KSA","KSA-binding site"]],"b":[["alkaloids/k-252a.yaml","K-252a"]]},{"id":"CHEBI:45257","l":"ribostamycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RIO","RIO-binding site"]],"b":[["carbohydrates/ribostamycin.yaml","ribostamycin"]]},{"id":"CHEBI:473992","l":"nystatin A1","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_A1AZ7","A1AZ7-binding site"]],"b":[["polyketides/nystatin-a1.yaml","nystatin A1"]]},{"id":"CHEBI:48267","l":"tubercidin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TBN","TBN-binding site"]],"b":[["carbohydrates/tubercidin.yaml","tubercidin"]]},{"id":"CHEBI:48947","l":"clavulanic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_J01","J01-binding site"]],"b":[["amino_acids_and_peptides/clavulanic-acid.yaml","clavulanic acid"]]},{"id":"CHEBI:50437","l":"nocardamine","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_50437","requires desferrioxamine E"]],"b":[["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"]]},{"id":"CHEBI:623918","l":"nikkomycin Z","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BGI","BGI-binding site"]],"b":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"]]},{"id":"CHEBI:64318","l":"ergotamine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ERM","ERM-binding site"]],"b":[["alkaloids/ergotamine.yaml","ergotamine"]]},{"id":"CHEBI:64695","l":"pyripyropene A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_7T8","7T8-binding site"]],"b":[["unclassified/pyripyropene-a.yaml","pyripyropene A"]]},{"id":"CHEBI:67811","l":"zorbamycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_52G","52G-binding site"]],"b":[["amino_acids_and_peptides/zorbamycin.yaml","zorbamycin"]]},{"id":"CHEBI:68241","l":"platencin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_N32","N32-binding site"]],"b":[["terpenoids/platencin.yaml","platencin"]]},{"id":"CHEBI:70064","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["polyketides/landomycin-a.yaml","landomycin A"]]},{"id":"CHEBI:7025","l":"mupirocin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MRC","MRC-binding site"]],"b":[["polyketides/mupirocin.yaml","mupirocin"]]},{"id":"CHEBI:70399","l":"meleagrine","na":1,"nb":1,"a":[["RHEA%3A51732","glandicoline B + S-adenosyl-L-methionine = meleagrin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["alkaloids/meleagrine.yaml","meleagrine"]]},{"id":"CHEBI:7061","l":"myxochelin B","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_7061","requires myxochelin B"]],"b":[["alkaloids/myxochelin-b.yaml","myxochelin B"]]},{"id":"CHEBI:74926","l":"patulin","na":1,"nb":1,"a":[["RHEA%3A62228","(E)-ascladiol + A = patulin + AH2"]],"b":[["polyketides/patulin.yaml","patulin"]]},{"id":"CHEBI:7508","l":"framycetin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NMY","NMY-binding site"]],"b":[["carbohydrates/framycetin.yaml","framycetin"]]},{"id":"CHEBI:77742","l":"bongkrekic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BKC","BKC-binding site"]],"b":[["fatty_acids/bongkrekic-acid.yaml","bongkrekic acid"]]},{"id":"CHEBI:79391","l":"(−)-chuangxinmycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9E0","9E0-binding site"]],"b":[["alkaloids/chuangxinmycin.yaml","(−)-chuangxinmycin"]]},{"id":"CHEBI:84168","l":"4-hydroxy-6-pentadecylpyran-2-one","na":1,"nb":1,"a":[["RHEA%3A44260","hexadecanoyl-CoA + 2 malonyl-CoA + 2 H(+) = 4-hydroxy-6-pentadecylpyran-2-one + 2 CO2 + 3 CoA"]],"b":[["polyketides/4-hydroxy-6-pentadecylpyran-2-one.yaml","4-hydroxy-6-pentadecylpyran-2-one"]]},{"id":"CHEBI:84171","l":"4-hydroxy-6-(2-oxoheptadecyl)pyran-2-one","na":1,"nb":1,"a":[["RHEA%3A44268","hexadecanoyl-CoA + 3 malonyl-CoA + 3 H(+) = 4-hydroxy-6-(2-oxoheptadecyl)pyran-2-one + 3 CO2 + 4 CoA"]],"b":[["polyketides/4-hydroxy-6-2-oxoheptadecyl-pyran-2-one.yaml","4-hydroxy-6-(2-oxoheptadecyl)pyran-2-one"]]},{"id":"CHEBI:84582","l":"schizokinen","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_84582","requires schizokinen"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"]]},{"id":"CHEBI:84585","l":"vibrioferrin","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_84585","requires vibrioferrin"]],"b":[["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"CHEBI:85997","l":"sangivamycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SGV","SGV-binding site"]],"b":[["carbohydrates/sangivamycin.yaml","sangivamycin"]]},{"id":"CHEBI:9168","l":"sirolimus","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RAP","RAP-binding site"]],"b":[["polyketides/sirolimus.yaml","sirolimus"]]},{"id":"CHEBI:9200","l":"soraphen A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_S1A","S1A-binding site"]],"b":[["polyketides/soraphen-a.yaml","soraphen A"]]},{"id":"CHEBI:92181","l":"lasalocid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_LSD","LSD-binding site"]],"b":[["polyketides/lasalocid.yaml","lasalocid"]]},{"id":"CHEBI:9367","l":"swainsonine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SWA","SWA-binding site"]],"b":[["alkaloids/swainsonine.yaml","swainsonine"]]},{"id":"CHEBI:9519","l":"thebaine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_D4R","D4R-binding site"]],"b":[["alkaloids/thebaine.yaml","thebaine"]]},{"id":"CHEBI:9973","l":"vibriobactin","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_9973","requires vibriobactin"]],"b":[["alkaloids/vibriobactin.yaml","vibriobactin"]]},{"id":"NCBITaxon:103733","l":"Saccharothrix syringae","na":1,"nb":1,"a":[["TED%3AAF-A0A5Q0GZB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Q0GZB9-F1-model_v4_TED01"]],"b":[["polyketides/nocamycin.yaml","nocamycin"]]},{"id":"NCBITaxon:104268","l":"Tenacibaculum mesophilum","na":1,"nb":1,"a":[["TED%3AAF-A0A1M5HMT5-F1-model_v4_TED01","TED novel fold AF-A0A1M5HMT5-F1-model_v4_TED01"]],"b":[["fatty_acids/bisucaberin-b.yaml","bisucaberin B"]]},{"id":"NCBITaxon:1081091","l":"Amycolatopsis balhimycina DSM 5908","na":1,"nb":1,"a":[["TED%3AAF-A0A428WRS4-F1-model_v4_TED02","TED novel fold AF-A0A428WRS4-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/balhimycin.yaml","balhimycin"]]},{"id":"NCBITaxon:1108595","l":"Chromobacterium vaccinii","na":1,"nb":1,"a":[["TED%3AAF-A0A2L2B8V3-F1-model_v4_TED02","TED novel fold AF-A0A2L2B8V3-F1-model_v4_TED02"]],"b":[["unclassified/fr900359-2.yaml","FR900359"]]},{"id":"NCBITaxon:1124983","l":"","na":1,"nb":1,"a":[["Pfam%3APF18089","DAPG hydrolase PhiG domain"]],"b":[["fatty_acids/protegencin.yaml","protegencin"]]},{"id":"NCBITaxon:1165","l":"Anabaena cylindrica","na":1,"nb":1,"a":[["Pfam%3APF17275","Family of unknown function (DUF5340)"]],"b":[["amino_acids_and_peptides/anachelin.yaml","anachelin"]]},{"id":"NCBITaxon:1214242","l":"","na":1,"nb":1,"a":[["TED%3AAF-S5VBX8-F1-model_v4_TED03","TED novel fold AF-S5VBX8-F1-model_v4_TED03"]],"b":[["unclassified/kirromycin.yaml","kirromycin"]]},{"id":"NCBITaxon:122368","l":"Cercospora beticola","na":1,"nb":1,"a":[["TED%3AAF-A0A2G5HT37-F1-model_v4_TED02","TED novel fold AF-A0A2G5HT37-F1-model_v4_TED02"]],"b":[["polyketides/cercosporin.yaml","cercosporin"]]},{"id":"NCBITaxon:1254432","l":"Sorangium cellulosum So0157-2","na":1,"nb":1,"a":[["TED%3AAF-S4XT05-F1-model_v4_TED01","TED novel fold AF-S4XT05-F1-model_v4_TED01"]],"b":[["unclassified/epothilone-b.yaml","epothilone B"]]},{"id":"NCBITaxon:1266744","l":"Talaromyces purpureogenus","na":1,"nb":1,"a":[["Pfam%3APF10503","Esterase PHB depolymerase"]],"b":[["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"]]},{"id":"NCBITaxon:1283841","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A084QGW0-F1-model_v4_TED01","TED novel fold AF-A0A084QGW0-F1-model_v4_TED01"]],"b":[["alkaloids/isoindolin-1-one.yaml","isoindolin-1-one"]]},{"id":"NCBITaxon:1297742","l":"Myxococcus hansupus","na":1,"nb":1,"a":[["TED%3AAF-A0A0H4X3W5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0H4X3W5-F1-model_v4_TED02"]],"b":[["unclassified/myxochromide-c.yaml","myxochromide C"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":1,"nb":1,"a":[["PROSITE%3APS01043","Transposases, IS30 family, signature"]],"b":[["amino_acids_and_peptides/salivaricin-d.yaml","salivaricin D"]]},{"id":"NCBITaxon:1341132","l":"Aspergillus welwitschiae","na":1,"nb":1,"a":[["TED%3AAF-A0A3F3Q9J6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3F3Q9J6-F1-model_v4_TED02"]],"b":[["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"]]},{"id":"NCBITaxon:1343740","l":"","na":1,"nb":1,"a":[["Pfam%3APF21168","Chorismatase FkbO/Hyg5-like, N-terminal"]],"b":[["polyketides/sirolimus.yaml","sirolimus"]]},{"id":"NCBITaxon:13689","l":"Sphingomonas paucimobilis","na":1,"nb":1,"a":[["PROSITE%3APS00082","Extradiol ring-cleavage dioxygenases signature"]],"b":[["unclassified/minimycin.yaml","minimycin"]]},{"id":"NCBITaxon:1408161","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A6A7APH0-F1-model_v4_TED02","TED novel fold AF-A0A6A7APH0-F1-model_v4_TED02"]],"b":[["shikimates_and_phenylpropanoids/mellein.yaml","(-)-Mellein"]]},{"id":"NCBITaxon:150374","l":"Escovopsis weberi","na":1,"nb":1,"a":[["TED%3AAF-A0A0M8MSE0-F1-model_v4_TED01","TED novel fold AF-A0A0M8MSE0-F1-model_v4_TED01"]],"b":[["unclassified/melinacidin-iv.yaml","melinacidin IV"]]},{"id":"NCBITaxon:1563222","l":"Citrobacter pasteurii","na":1,"nb":1,"a":[["TED%3AAF-A0A6N6K4M5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N6K4M5-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/citrocin.yaml","citrocin"]]},{"id":"NCBITaxon:1593482","l":"Massilia sp. YMA4","na":1,"nb":1,"a":[["TED%3AAF-A0A7U5XZA1-F1-model_v4_TED02","TED novel fold AF-A0A7U5XZA1-F1-model_v4_TED02"]],"b":[["unclassified/empedopeptin.yaml","empedopeptin"]]},{"id":"NCBITaxon:159449","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1T3P567-F1-model_v4_TED01","TED novel fold AF-A0A1T3P567-F1-model_v4_TED01"]],"b":[["unclassified/hitachimycin.yaml","hitachimycin"]]},{"id":"NCBITaxon:173365","l":"Methylobacter tundripaludum","na":1,"nb":1,"a":[["TED%3AAF-A0A2S6HGL6-F1-model_v4_TED02","TED novel fold AF-A0A2S6HGL6-F1-model_v4_TED02"]],"b":[["unclassified/tundrenone.yaml","tundrenone"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":1,"nb":1,"a":[["Pfam%3APF08124","Polysaccharide lyase family 8, N terminal alpha-helical domain"]],"b":[["amino_acids_and_peptides/cutimycin.yaml","cutimycin"]]},{"id":"NCBITaxon:1764","l":"Mycobacterium avium","na":1,"nb":1,"a":[["Pfam%3APF01882","Protein of unknown function DUF58"]],"b":[["fatty_acids/gpl-21.yaml","GPL-21"]]},{"id":"NCBITaxon:180498","l":"Jatropha curcas","na":1,"nb":1,"a":[["TED%3AAF-A0A067KNY2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A067KNY2-F1-model_v4_TED01"]],"b":[["terpenoids/casbene.yaml","casbene"]]},{"id":"NCBITaxon:1828523","l":"","na":1,"nb":1,"a":[["Pfam%3APF26335","Beta-lactamase-like ARB_00930-like, C-terminal domain"]],"b":[["polyketides/squalestatin-s1.yaml","squalestatin S1"]]},{"id":"NCBITaxon:1869241","l":"Nostoc sp. CENA543","na":1,"nb":1,"a":[["TED%3AAF-A0A2I8A446-F1-model_v4_TED01","TED novel fold AF-A0A2I8A446-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/nodularin-2.yaml","nodularin"]]},{"id":"NCBITaxon:1874","l":"Micromonospora chalcea","na":1,"nb":1,"a":[["TED%3AAF-A0A365UW89-F1-model_v4_TED01","TED novel fold AF-A0A365UW89-F1-model_v4_TED01"]],"b":[["polyketides/tetrocarcin-a.yaml","tetrocarcin A"]]},{"id":"NCBITaxon:1887","l":"Streptomyces albogriseolus","na":1,"nb":1,"a":[["PROSITE%3APS00999","Streptomyces subtilisin-type inhibitors signature"]],"b":[["alkaloids/thienodolin.yaml","thienodolin"]]},{"id":"NCBITaxon:1918945","l":"Vibrio spartinae","na":1,"nb":1,"a":[["TED%3AAF-A0A7D8BB99-F1-model_v4_TED01","TED novel fold AF-A0A7D8BB99-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/vancomycin.yaml","vancomycin"]]},{"id":"NCBITaxon:1948","l":"Streptomyces longisporus","na":1,"nb":1,"a":[["PROSITE%3APS00999","Streptomyces subtilisin-type inhibitors signature"]],"b":[["alkaloids/undecylprodigiosin-2.yaml","undecylprodigiosin"]]},{"id":"NCBITaxon:1970","l":"Streptomyces morookaense","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y7E7U7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y7E7U7-F1-model_v4_TED01"]],"b":[["carbohydrates/blasticidin-s.yaml","blasticidin S"]]},{"id":"NCBITaxon:205922","l":"Pseudomonas fluorescens Pf0-1","na":1,"nb":1,"a":[["Pfam%3APF07927","HicA toxin of bacterial toxin-antitoxin,"]],"b":[["unclassified/gacamide-a.yaml","gacamide A"]]},{"id":"NCBITaxon:216895","l":"Vibrio vulnificus CMCP6","na":1,"nb":1,"a":[["Pfam%3APF18416","N-acetylglucosamine binding protein domain 2"]],"b":[["alkaloids/vulnibactin.yaml","vulnibactin"]]},{"id":"NCBITaxon:2203296","l":"","na":1,"nb":1,"a":[["Pfam%3APF18558","Methyltransferase, Helix-turn-helix domain"]],"b":[["unclassified/xenovulene-a.yaml","xenovulene A"]]},{"id":"NCBITaxon:240499","l":"Calcarisporium arbuscula","na":1,"nb":1,"a":[["Pfam%3APF28402","Pneumocandin biosynthesis cluster protein B C-terminal domain"]],"b":[["polyketides/patulin.yaml","patulin"]]},{"id":"NCBITaxon:2480843","l":"","na":1,"nb":1,"a":[["Pfam%3APF22903","Diels-Alderase-like"]],"b":[["unclassified/xenoacremone-a.yaml","xenoacremone A"]]},{"id":"NCBITaxon:249581","l":"Streptomyces ossamyceticus","na":1,"nb":1,"a":[["TED%3AAF-A0A3N1M1Z0-F1-model_v4_TED02","TED novel fold AF-A0A3N1M1Z0-F1-model_v4_TED02"]],"b":[["polyketides/ossamycin.yaml","ossamycin"]]},{"id":"NCBITaxon:2545265","l":"Streptomyces sp. AJS327","na":1,"nb":1,"a":[["TED%3AAF-A0A7V8NJX1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V8NJX1-F1-model_v4_TED01"]],"b":[["alkaloids/tetrachlorizine.yaml","tetrachlorizine"]]},{"id":"NCBITaxon:263","l":"Francisella tularensis","na":1,"nb":1,"a":[["TED%3AAF-A0A6I4RUC7-F1-model_v4_TED02","TED novel fold AF-A0A6I4RUC7-F1-model_v4_TED02"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"NCBITaxon:264691","l":"Anabaena variabilis","na":1,"nb":1,"a":[["Pfam%3APF09194","Restriction endonuclease BsobI"]],"b":[["unclassified/shinorine.yaml","shinorine"]]},{"id":"NCBITaxon:267747","l":"Cutibacterium acnes KPA171202","na":1,"nb":1,"a":[["Pfam%3APF27542","ArfC"]],"b":[["amino_acids_and_peptides/cutimycin.yaml","cutimycin"]]},{"id":"NCBITaxon:269709","l":"Methylomicrobium kenyense","na":1,"nb":1,"a":[["TED%3AAF-A0A543V9Z8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A543V9Z8-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:2743","l":"Marinobacter hydrocarbonoclasticus","na":1,"nb":1,"a":[["TED%3AAF-A0A368Y858-F1-model_v4_TED02","TED novel fold AF-A0A368Y858-F1-model_v4_TED02"]],"b":[["alkaloids/petrobactin.yaml","petrobactin"]]},{"id":"NCBITaxon:279113","l":"Collimonas pratensis","na":1,"nb":1,"a":[["TED%3AAF-A0A127Q9K0-F1-model_v4_TED02","TED novel fold AF-A0A127Q9K0-F1-model_v4_TED02"]],"b":[["unclassified/malleobactin-x.yaml","malleobactin X"]]},{"id":"NCBITaxon:285525","l":"Streptomyces sahachiroi","na":1,"nb":1,"a":[["Pfam%3APF06224","DNA glycosylase AlkZ-like"]],"b":[["unclassified/azinomycin-b.yaml","azinomycin B"]]},{"id":"NCBITaxon:28985","l":"Kluyveromyces lactis","na":1,"nb":1,"a":[["Pfam%3APF03930","Recombinase Flp protein N-terminus"]],"b":[["alkaloids/pulcherrimin.yaml","pulcherrimin"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":1,"nb":1,"a":[["PROSITE%3APS01322","Phosphotriesterase family signature 1"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:29447","l":"Xanthomonas albilineans","na":1,"nb":1,"a":[["TED%3AAF-A0A6P1SIK7-F1-model_v4_TED02","TED novel fold AF-A0A6P1SIK7-F1-model_v4_TED02"]],"b":[["alkaloids/albicidin.yaml","albicidin"]]},{"id":"NCBITaxon:29456","l":"","na":1,"nb":1,"a":[["Pfam%3APF12559","Serine endopeptidase inhibitors"]],"b":[["unclassified/marinostatin.yaml","marinostatin"]]},{"id":"NCBITaxon:29829","l":"Lipomyces starkeyi","na":1,"nb":1,"a":[["Pfam%3APF03702","Anhydro-N-acetylmuramic acid kinase"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"NCBITaxon:298386","l":"Photobacterium profundum SS9","na":1,"nb":1,"a":[["Pfam%3APF12558","ATP-binding cassette cobalt transporter"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"NCBITaxon:337","l":"Burkholderia glumae","na":1,"nb":1,"a":[["TED%3AAF-A0A8A8MA15-F1-model_v4_TED01","TED novel fold AF-A0A8A8MA15-F1-model_v4_TED01"]],"b":[["alkaloids/toxoflavin.yaml","toxoflavin"]]},{"id":"NCBITaxon:359131","l":"","na":1,"nb":1,"a":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"]],"b":[["unclassified/fr-900098.yaml","FR-900098"]]},{"id":"NCBITaxon:362","l":"Agrobacterium radiobacter","na":1,"nb":1,"a":[["Pfam%3APF04909","Amidohydrolase"]],"b":[["alkaloids/agrobactin.yaml","agrobactin"]]},{"id":"NCBITaxon:37329","l":"Nocardia farcinica","na":1,"nb":1,"a":[["TED%3AAF-A0A449G5H5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A449G5H5-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/nocobactin-na.yaml","nocobactin NA"]]},{"id":"NCBITaxon:37727","l":"Talaromyces marneffei","na":1,"nb":1,"a":[["Pfam%3APF12296","Hydrophobic surface binding protein A"]],"b":[["polyketides/monascorubrin.yaml","monascorubrin"]]},{"id":"NCBITaxon:38945","l":"Flammulina velutipes","na":1,"nb":1,"a":[["Pfam%3APF09259","Fungal immunomodulatory protein Fve"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:391936","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0B4XPB7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0B4XPB7-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/pacifibactin.yaml","pacifibactin"]]},{"id":"NCBITaxon:396598","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_GrbE","GrbE-type graminine biosynthesis protein family"]],"b":[["unclassified/gramibactin.yaml","gramibactin"]]},{"id":"NCBITaxon:4100","l":"Nicotiana benthamiana","na":1,"nb":1,"a":[["Pfam%3APF11833","Protein CHAPERONE-LIKE PROTEIN OF POR1-like"]],"b":[["terpenoids/capsidiol.yaml","capsidiol"]]},{"id":"NCBITaxon:41047","l":"","na":1,"nb":1,"a":[["Pfam%3APF28486","AnkG N-terminal domain"]],"b":[["unclassified/pyripyropene-a.yaml","pyripyropene A"]]},{"id":"NCBITaxon:43657","l":"Pseudoalteromonas luteoviolacea","na":1,"nb":1,"a":[["TED%3AAF-A0A1C0TIS0-F1-model_v4_TED02","TED novel fold AF-A0A1C0TIS0-F1-model_v4_TED02"]],"b":[["shikimates_and_phenylpropanoids/pentabromopseudilin.yaml","pentabromopseudilin"]]},{"id":"NCBITaxon:43759","l":"Streptomyces wedmorensis","na":1,"nb":1,"a":[["Pfam%3APF04167","Protein of unknown function (DUF402)"]],"b":[["unclassified/fosfomycin.yaml","fosfomycin"]]},{"id":"NCBITaxon:463","l":"Fluoribacter dumoffii","na":1,"nb":1,"a":[["TED%3AAF-A0A377G6U6-F1-model_v4_TED01","TED novel fold AF-A0A377G6U6-F1-model_v4_TED01"]],"b":[["shikimates_and_phenylpropanoids/legioliulin.yaml","legioliulin"]]},{"id":"NCBITaxon:4679","l":"Allium cepa","na":1,"nb":1,"a":[["Pfam%3APF04863","Alliinase EGF-like domain"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:4682","l":"Allium sativum","na":1,"nb":1,"a":[["Pfam%3APF04863","Alliinase EGF-like domain"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:469371","l":"Thermobispora bispora DSM 43833","na":1,"nb":1,"a":[["TED%3AAF-D6Y8C2-F1-model_v4_TED02","TED novel fold AF-D6Y8C2-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/thiomuracin.yaml","thiomuracin"]]},{"id":"NCBITaxon:47759","l":"Streptomyces tubercidicus","na":1,"nb":1,"a":[["TED%3AAF-A0A640UN74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A640UN74-F1-model_v4_TED01"]],"b":[["carbohydrates/tubercidin.yaml","tubercidin"]]},{"id":"NCBITaxon:47850","l":"Micromonospora aurantiaca","na":1,"nb":1,"a":[["TED%3AAF-A0A1C6SK92-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C6SK92-F1-model_v4_TED01"]],"b":[["polyketides/dynemicin-a.yaml","dynemicin A"]]},{"id":"NCBITaxon:47886","l":"Pseudomonas luteola","na":1,"nb":1,"a":[["TED%3AAF-A0A2X2CC74-F1-model_v4_TED02","TED novel fold AF-A0A2X2CC74-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/chrysobactin.yaml","chrysobactin"]]},{"id":"NCBITaxon:483219","l":"","na":1,"nb":1,"a":[["TED%3AAF-F8C8K4-F1-model_v4_TED01","TED highly-symmetric fold AF-F8C8K4-F1-model_v4_TED01"]],"b":[["unclassified/myxochromide-a-2.yaml","myxochromide A"]]},{"id":"NCBITaxon:488447","l":"Burkholderia contaminans","na":1,"nb":1,"a":[["TED%3AAF-A0A3N8RI51-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N8RI51-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/occidiofungin-a.yaml","occidiofungin A"]]},{"id":"NCBITaxon:528191","l":"Paenibacillus xylanexedens","na":1,"nb":1,"a":[["TED%3AAF-A0A3N6BL17-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N6BL17-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/macolacin.yaml","macolacin"]]},{"id":"NCBITaxon:5341","l":"Agaricus bisporus","na":1,"nb":1,"a":[["Pfam%3APF07367","Fungal fruit body lectin"]],"b":[["polyketides/kojic-acid.yaml","kojic acid"]]},{"id":"NCBITaxon:573841","l":"Sordaria araneosa","na":1,"nb":1,"a":[["Pfam%3APF26335","Beta-lactamase-like ARB_00930-like, C-terminal domain"]],"b":[["terpenoids/sordarin.yaml","sordarin"]]},{"id":"NCBITaxon:5839","l":"Plasmodium falciparum (isolate K1 / Thailand)","na":1,"nb":1,"a":[["Pfam%3APF12946","MSP1 EGF domain 1"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:6192","l":"Fasciola hepatica","na":1,"nb":1,"a":[["TED%3AAF-A0A4E0R9C7-F1-model_v4_TED02","TED novel fold AF-A0A4E0R9C7-F1-model_v4_TED02"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"]]},{"id":"NCBITaxon:66425","l":"Streptomyces luteoverticillatus","na":1,"nb":1,"a":[["TED%3AAF-A0A3S9PBS5-F1-model_v4_TED01","TED novel fold AF-A0A3S9PBS5-F1-model_v4_TED01"]],"b":[["alkaloids/carbazomycin-b.yaml","carbazomycin B"]]},{"id":"NCBITaxon:68197","l":"Streptomyces fimbriatus","na":1,"nb":1,"a":[["PROSITE%3APS00093","N-4 cytosine-specific DNA methylases signature"]],"b":[["alkaloids/spicamycin.yaml","spicamycin"]]},{"id":"NCBITaxon:69771","l":"Penicillium decumbens","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6PJ92-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V6PJ92-F1-model_v4_TED01"]],"b":[["polyketides/decumbenone-a.yaml","decumbenone a"]]},{"id":"NCBITaxon:698760","l":"Streptomyces turgidiscabies Car8","na":1,"nb":1,"a":[["TED%3AAF-L7F7V3-F1-model_v4_TED02","TED highly-symmetric fold AF-L7F7V3-F1-model_v4_TED02"]],"b":[["unclassified/thaxtomin-a.yaml","thaxtomin A"]]},{"id":"NCBITaxon:713604","l":"","na":1,"nb":1,"a":[["TED%3AAF-G0FSL6-F1-model_v4_TED01","TED novel fold AF-G0FSL6-F1-model_v4_TED01"]],"b":[["polyketides/rifamycin-sv.yaml","rifamycin SV"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A5C7XIK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7XIK2-F1-model_v4_TED01"]],"b":[["unclassified/lysocin-e.yaml","lysocin E"]]},{"id":"NCBITaxon:741275","l":"","na":1,"nb":1,"a":[["TED%3AAF-R7S2Z2-F1-model_v4_TED02","TED novel fold AF-R7S2Z2-F1-model_v4_TED02"]],"b":[["terpenoids/ent-kauren-16alpha-ol-2.yaml","Ent-kauren-16alpha-ol"]]},{"id":"NCBITaxon:747457","l":"","na":1,"nb":1,"a":[["Pfam%3APF18014","Acetyltransferase (GNAT) domain"]],"b":[["polyketides/thiomarinol.yaml","thiomarinol"]]},{"id":"NCBITaxon:749593","l":"Epicoccum sorghinum","na":1,"nb":1,"a":[["Pfam%3APF17660","Polyglycine hydrolase-like, structural repeat"]],"b":[["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"]]},{"id":"NCBITaxon:75695","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A654SF36-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A654SF36-F1-model_v4_TED02"]],"b":[["alkaloids/7-epi-cylindrospermopsin.yaml","7-epi-cylindrospermopsin"]]},{"id":"NCBITaxon:85336","l":"Rothia nasimurium","na":1,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_EntC","EntC-type catechol biosynthesis isochorismate synthase family"]],"b":[["unclassified/valinomycin-2.yaml","valinomycin"]]},{"id":"NCBITaxon:866895","l":"","na":1,"nb":1,"a":[["TED%3AAF-I0JI49-F1-model_v4_TED03","TED highly-symmetric fold AF-I0JI49-F1-model_v4_TED03"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:877550","l":"","na":1,"nb":1,"a":[["Pfam%3APF13810","Domain of unknown function (DUF4185)"]],"b":[["unclassified/notoamide-a.yaml","notoamide A"]]},{"id":"NCBITaxon:89489","l":"Monascus ruber","na":1,"nb":1,"a":[["Pfam%3APF17828","N-terminal domain in fatty acid synthase subunit beta"]],"b":[["polyketides/citrinin.yaml","(+)-citrinin"]]},{"id":"NCBITaxon:948311","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A420SS57-F1-model_v4_TED01","TED novel fold AF-A0A420SS57-F1-model_v4_TED01"]],"b":[["polyketides/prolipyrone-b.yaml","prolipyrone B"]]},{"id":"NCBITaxon:96241","l":"Bacillus spizizenii","na":1,"nb":1,"a":[["Pfam%3APF05952","Bacillus competence pheromone ComX"]],"b":[["amino_acids_and_peptides/entianin.yaml","entianin"]]},{"id":"NCBITaxon:986","l":"Flavobacterium johnsoniae","na":1,"nb":1,"a":[["TED%3AAF-A0A1J7BWE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1J7BWE6-F1-model_v4_TED01"]],"b":[["polyketides/flexirubin.yaml","flexirubin"]]},{"id":"NCBITaxon:994086","l":"Hydnomerulius pinastri MD-312","na":1,"nb":1,"a":[["TED%3AAF-A0A0C9W3H2-F1-model_v4_TED01","TED novel fold AF-A0A0C9W3H2-F1-model_v4_TED01"]],"b":[["fatty_acids/methyl-2s-4-methyl-2-octanoylamino-pentanoate.yaml","methyl (2S)-4-methyl-2-(octanoylamino)pentanoate"]]},{"id":"UniProt:A4F7P5","l":"","na":1,"nb":1,"a":[["EC%3A2.1.1.254","erythromycin 3'-O-methyltransferase"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"UniProt:O05207","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RDC","RDC-binding site"]],"b":[["polyketides/radicicol.yaml","radicicol"]]},{"id":"UniProt:O42713","l":"","na":1,"nb":1,"a":[["EC%3A1.14.18.1","tyrosinase"]],"b":[["polyketides/kojic-acid.yaml","kojic acid"]]},{"id":"UniProt:P00523","l":"","na":1,"nb":1,"a":[["ELM%3AELME000013","MOD_TYR_CSK"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P02701.","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_B1R","B1R-binding site"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"UniProt:P09917.","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_AF7","AF7-binding site"]],"b":[["alkaloids/myxochelin-a.yaml","myxochelin A"]]},{"id":"UniProt:P0C8L0","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ZL5","ZL5-binding site"]],"b":[["unclassified/antimycin-a1b.yaml","antimycin A1B"]]},{"id":"UniProt:P11799","l":"","na":1,"nb":1,"a":[["Pfam%3APF16620","Unstructured linker between I-set domains 2 and 3 on MYLCK"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P28523","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_7M0","7M0-binding site"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"UniProt:P43250.","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SGV","SGV-binding site"]],"b":[["carbohydrates/sangivamycin.yaml","sangivamycin"]]},{"id":"UniProt:Q00024","l":"","na":1,"nb":1,"a":[["EC%3A1.14.18.1","tyrosinase"]],"b":[["polyketides/kojic-acid.yaml","kojic acid"]]},{"id":"UniProt:Q03181.","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_433","433-binding site"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"UniProt:Q13451","l":"","na":1,"nb":1,"a":[["ComplexPortal%3ACPX-13334","-"]],"b":[["polyketides/sirolimus.yaml","sirolimus"]]},{"id":"UniProt:Q28021","l":"","na":1,"nb":1,"a":[["Pfam%3APF08912","Rho Binding"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:Q5G940","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_JUG","JUG-binding site"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"UniProt:Q5G940.","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_JUG","JUG-binding site"]],"b":[["polyketides/emodin.yaml","emodin"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/TraitMech--AntibioticMech.json b/assets/fleet/edges/TraitMech--AntibioticMech.json index f95b1ea..634d96e 100644 --- a/assets/fleet/edges/TraitMech--AntibioticMech.json +++ b/assets/fleet/edges/TraitMech--AntibioticMech.json @@ -1 +1 @@ -{"a":"TraitMech","b":"AntibioticMech","base":{"TraitMech":"https://culturebotai.github.io/TraitMech/pages/traits/","AntibioticMech":"https://culturebotai.github.io/AntibioticMech/pages/"},"n":31,"by":{"NCBITaxon":21,"CHEBI":10},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":62,"nb":30,"a":[["ecology/biosafety_level.html","biosafety level"],["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/host_associated.html","host-associated"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/halophily_preference.html","halophily preference"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":15,"nb":13,"a":[["ecology/biosafety_level_2.html","biosafety level 2"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/coccus_shaped.html","coccus shaped"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/bromodeoxytopsentin.html","bromodeoxytopsentin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":10,"nb":12,"a":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/aerobic.html","aerobic"],["genomics/avast_system.html","AVAST system"],["morphology/motile.html","motile"],["morphology/motility.html","motility"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":6,"nb":22,"a":[["metabolism/butanediol_fermentation.html","2,3-butanediol fermentation"],["metabolism/citrate_fermentation.html","citrate fermentation"],["morphology/capsule.html","capsule"],["morphology/non_motile.html","non motile"],["other/indole_test_negative.html","indole test negative"],["other/methyl_red_test_negative.html","methyl red test negative"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":17,"nb":3,"a":[["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/neutrophilic.html","neutrophilic"],["environment/non_halophilic.html","non halophilic"],["metabolism/biopolymer_degradation.html","biopolymer degradation"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"CHEBI:26523","l":"reactive oxygen species","na":9,"nb":2,"a":[["environment/aerobic.html","aerobic"],["environment/aerotolerant.html","aerotolerant"],["environment/anaerobic.html","anaerobic"],["environment/microaerophilic.html","microaerophilic"],["environment/microaerotolerant.html","microaerotolerant"],["environment/obligately_anaerobic.html","obligately anaerobic"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"],["biocide/ozone.html","ozone"]]},{"id":"NCBITaxon:1299","l":"Deinococcus radiodurans","na":6,"nb":2,"a":[["environment/ionizing_radiation_tolerant.html","ionizing radiation tolerant"],["environment/radiotolerant.html","radiotolerant"],["environment/uv_radiation_tolerant.html","UV radiation tolerant"],["environment/xerophilic.html","xerophilic"],["morphology/orange_pigmented.html","orange pigmented"],["physiology/stress_response.html","stress response"]],"b":[["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/linezolid.html","linezolid"]]},{"id":"NCBITaxon:1773","l":"Mycobacterium tuberculosis","na":5,"nb":2,"a":[["ecology/biosafety_level_3.html","biosafety level 3"],["ecology/human_pathogen.html","human pathogen"],["physiology/acid_phosphatase_activity.html","acid phosphatase activity"],["physiology/dormancy.html","dormancy"],["physiology/pyrazinamidase_activity.html","pyrazinamidase activity"]],"b":[["antibacterial/sulfanilamide.html","sulfanilamide"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:485","l":"Neisseria gonorrhoeae","na":2,"nb":5,"a":[["physiology/oxidase_activity.html","oxidase activity"],["physiology/prolyl_aminopeptidase_activity.html","prolyl aminopeptidase activity"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":2,"nb":4,"a":[["ecology/commensalism.html","commensalism"],["other/coagulase_negative.html","coagulase negative"]],"b":[["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/oxacillin.html","oxacillin"]]},{"id":"NCBITaxon:274","l":"Thermus thermophilus","na":2,"nb":3,"a":[["environment/thermophilic.html","thermophilic"],["morphology/cell_width.html","cell width"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"],["antibacterial/streptomycin.html","streptomycin"],["unspecified/streptolydigin.html","streptolydigin"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":3,"nb":2,"a":[["ecology/rhizosphere_association.html","rhizosphere association"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/psychrotolerant.html","psychrotolerant"]],"b":[["antibacterial/mupirocin.html","mupirocin"],["antifungal/2-4-diacetylphloroglucinol.html","2,4-diacetylphloroglucinol"]]},{"id":"CHEBI:25105","l":"","na":1,"nb":58,"a":[["physiology/antibiotic_resistance.html","antibiotic resistance"]],"b":[["antibacterial/5-o-mycaminosyltylonolide.html","5-O-mycaminosyltylonolide"],["antibacterial/aplasmomycin.html","(+)-aplasmomycin"],["antibacterial/azithromycin.html","azithromycin"],["antibacterial/boromycin.html","boromycin"],["antibacterial/brefeldin-a.html","brefeldin A"],["antibacterial/cethromycin.html","cethromycin"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":1,"nb":15,"a":[["ecology/opportunistic_pathogen.html","opportunistic pathogen"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":8,"nb":1,"a":[["environment/aerotolerant.html","aerotolerant"],["environment/microaerophilic.html","microaerophilic"],["environment/microaerotolerant.html","microaerotolerant"],["environment/obligately_aerobic.html","obligately aerobic"],["environment/obligately_anaerobic.html","obligately anaerobic"],["environment/oxygen_preference.html","oxygen preference"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":1,"nb":7,"a":[["other/catalase_negative.html","catalase negative"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":1,"nb":6,"a":[["physiology/gelatinase_activity.html","gelatinase activity"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":1,"a":[["metabolism/chitinolysis.html","chitinolysis"],["morphology/pigmentation.html","pigmentation"],["morphology/red_pigmented.html","red pigmented"],["morphology/white_pigmented.html","white pigmented"],["physiology/beta_n_acetylhexosaminidase_activity.html","beta-N-acetylhexosaminidase activity"]],"b":[["antibacterial/althiomycin.html","althiomycin"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":4,"a":[["morphology/motility.html","motility"]],"b":[["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"CHEBI:16236","l":"ethanol","na":2,"nb":1,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]],"b":[["biocide/ethanol.html","ethanol"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":2,"nb":1,"a":[["physiology/methanotrophic.html","methanotrophic"],["physiology/methylotrophic.html","methylotrophic"]],"b":[["biocide/formaldehyde.html","formaldehyde"]]},{"id":"CHEBI:27933","l":"","na":1,"nb":2,"a":[["physiology/antibiotic_resistance.html","antibiotic resistance"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["unspecified/sulbactam-sodium.html","sulbactam sodium"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":2,"nb":1,"a":[["genomics/gc_mid1.html","GC mid1"],["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["antibacterial/nocardamine.html","nocardamine"]]},{"id":"CHEBI:26666","l":"","na":1,"nb":1,"a":[["physiology/chemoheterotrophic.html","chemoheterotrophic"]],"b":[["antifungal/propionic-acid.html","propionic acid"]]},{"id":"CHEBI:28908","l":"bambermycin","na":1,"nb":1,"a":[["morphology/bacillus_shaped.html","bacillus shaped"]],"b":[["unspecified/bambermycin.html","bambermycin"]]},{"id":"CHEBI:41688","l":"crystal violet","na":1,"nb":1,"a":[["morphology/gram_stain.html","gram stain"]],"b":[["antibacterial/crystal-violet.html","crystal violet"]]},{"id":"CHEBI:82758","l":"prodigiosin","na":1,"nb":1,"a":[["morphology/red_pigmented.html","red pigmented"]],"b":[["unspecified/prodigiosin.html","prodigiosin"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":1,"nb":1,"a":[["ecology/plant_pathogen.html","plant pathogen"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":1,"nb":1,"a":[["morphology/gliding.html","gliding"]],"b":[["antibacterial/althiomycin.html","althiomycin"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":1,"nb":1,"a":[["ecology/biosafety_level_3.html","biosafety level 3"]],"b":[["unspecified/%CE%B1-mangostin.html","α-mangostin"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":1,"a":[["physiology/dormancy.html","dormancy"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]}]} \ No newline at end of file +{"a":"TraitMech","b":"AntibioticMech","base":{"TraitMech":"https://culturebotai.github.io/TraitMech/pages/traits/","AntibioticMech":"https://culturebotai.github.io/AntibioticMech/pages/"},"n":31,"by":{"NCBITaxon":21,"CHEBI":10},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":65,"nb":30,"a":[["ecology/biosafety_level.html","biosafety level"],["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/host_associated.html","host-associated"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/halophily_preference.html","halophily preference"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":15,"nb":13,"a":[["ecology/biosafety_level_2.html","biosafety level 2"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/coccus_shaped.html","coccus shaped"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/bromodeoxytopsentin.html","bromodeoxytopsentin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":11,"nb":12,"a":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/aerobic.html","aerobic"],["genomics/avast_system.html","AVAST system"],["genomics/jukab_system.html","JukAB system"],["morphology/motile.html","motile"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":6,"nb":22,"a":[["metabolism/butanediol_fermentation.html","2,3-butanediol fermentation"],["metabolism/citrate_fermentation.html","citrate fermentation"],["morphology/capsule.html","capsule"],["morphology/non_motile.html","non motile"],["other/indole_test_negative.html","indole test negative"],["other/methyl_red_test_negative.html","methyl red test negative"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":18,"nb":3,"a":[["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/neutrophilic.html","neutrophilic"],["environment/non_halophilic.html","non halophilic"],["genomics/spbk_system.html","SpbK system"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":3,"nb":4,"a":[["ecology/commensalism.html","commensalism"],["genomics/nhi_system.html","Nhi system"],["other/coagulase_negative.html","coagulase negative"]],"b":[["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/oxacillin.html","oxacillin"]]},{"id":"CHEBI:26523","l":"reactive oxygen species","na":9,"nb":2,"a":[["environment/aerobic.html","aerobic"],["environment/aerotolerant.html","aerotolerant"],["environment/anaerobic.html","anaerobic"],["environment/microaerophilic.html","microaerophilic"],["environment/microaerotolerant.html","microaerotolerant"],["environment/obligately_anaerobic.html","obligately anaerobic"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"],["biocide/ozone.html","ozone"]]},{"id":"NCBITaxon:1299","l":"Deinococcus radiodurans","na":6,"nb":2,"a":[["environment/ionizing_radiation_tolerant.html","ionizing radiation tolerant"],["environment/radiotolerant.html","radiotolerant"],["environment/uv_radiation_tolerant.html","UV radiation tolerant"],["environment/xerophilic.html","xerophilic"],["morphology/orange_pigmented.html","orange pigmented"],["physiology/stress_response.html","stress response"]],"b":[["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/linezolid.html","linezolid"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":2,"nb":6,"a":[["genomics/abialpha_system.html","AbiAlpha system"],["physiology/gelatinase_activity.html","gelatinase activity"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"NCBITaxon:1773","l":"Mycobacterium tuberculosis","na":5,"nb":2,"a":[["ecology/biosafety_level_3.html","biosafety level 3"],["ecology/human_pathogen.html","human pathogen"],["physiology/acid_phosphatase_activity.html","acid phosphatase activity"],["physiology/dormancy.html","dormancy"],["physiology/pyrazinamidase_activity.html","pyrazinamidase activity"]],"b":[["antibacterial/sulfanilamide.html","sulfanilamide"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:485","l":"Neisseria gonorrhoeae","na":2,"nb":5,"a":[["physiology/oxidase_activity.html","oxidase activity"],["physiology/prolyl_aminopeptidase_activity.html","prolyl aminopeptidase activity"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"NCBITaxon:274","l":"Thermus thermophilus","na":2,"nb":3,"a":[["environment/thermophilic.html","thermophilic"],["morphology/cell_width.html","cell width"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"],["antibacterial/streptomycin.html","streptomycin"],["unspecified/streptolydigin.html","streptolydigin"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":3,"nb":2,"a":[["ecology/rhizosphere_association.html","rhizosphere association"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/psychrotolerant.html","psychrotolerant"]],"b":[["antibacterial/mupirocin.html","mupirocin"],["antifungal/2-4-diacetylphloroglucinol.html","2,4-diacetylphloroglucinol"]]},{"id":"CHEBI:25105","l":"","na":1,"nb":58,"a":[["physiology/antibiotic_resistance.html","antibiotic resistance"]],"b":[["antibacterial/5-o-mycaminosyltylonolide.html","5-O-mycaminosyltylonolide"],["antibacterial/aplasmomycin.html","(+)-aplasmomycin"],["antibacterial/azithromycin.html","azithromycin"],["antibacterial/boromycin.html","boromycin"],["antibacterial/brefeldin-a.html","brefeldin A"],["antibacterial/cethromycin.html","cethromycin"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":1,"nb":15,"a":[["ecology/opportunistic_pathogen.html","opportunistic pathogen"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":8,"nb":1,"a":[["environment/aerotolerant.html","aerotolerant"],["environment/microaerophilic.html","microaerophilic"],["environment/microaerotolerant.html","microaerotolerant"],["environment/obligately_aerobic.html","obligately aerobic"],["environment/obligately_anaerobic.html","obligately anaerobic"],["environment/oxygen_preference.html","oxygen preference"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":1,"nb":7,"a":[["other/catalase_negative.html","catalase negative"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":7,"a":[["morphology/motility.html","motility"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":1,"a":[["metabolism/chitinolysis.html","chitinolysis"],["morphology/pigmentation.html","pigmentation"],["morphology/red_pigmented.html","red pigmented"],["morphology/white_pigmented.html","white pigmented"],["physiology/beta_n_acetylhexosaminidase_activity.html","beta-N-acetylhexosaminidase activity"]],"b":[["antibacterial/althiomycin.html","althiomycin"]]},{"id":"CHEBI:16236","l":"ethanol","na":2,"nb":1,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]],"b":[["biocide/ethanol.html","ethanol"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":2,"nb":1,"a":[["physiology/methanotrophic.html","methanotrophic"],["physiology/methylotrophic.html","methylotrophic"]],"b":[["biocide/formaldehyde.html","formaldehyde"]]},{"id":"CHEBI:27933","l":"","na":1,"nb":2,"a":[["physiology/antibiotic_resistance.html","antibiotic resistance"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["unspecified/sulbactam-sodium.html","sulbactam sodium"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":2,"nb":1,"a":[["genomics/gc_mid1.html","GC mid1"],["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["antibacterial/nocardamine.html","nocardamine"]]},{"id":"CHEBI:26666","l":"","na":1,"nb":1,"a":[["physiology/chemoheterotrophic.html","chemoheterotrophic"]],"b":[["antifungal/propionic-acid.html","propionic acid"]]},{"id":"CHEBI:28908","l":"bambermycin","na":1,"nb":1,"a":[["morphology/bacillus_shaped.html","bacillus shaped"]],"b":[["unspecified/bambermycin.html","bambermycin"]]},{"id":"CHEBI:41688","l":"crystal violet","na":1,"nb":1,"a":[["morphology/gram_stain.html","gram stain"]],"b":[["antibacterial/crystal-violet.html","crystal violet"]]},{"id":"CHEBI:82758","l":"prodigiosin","na":1,"nb":1,"a":[["morphology/red_pigmented.html","red pigmented"]],"b":[["unspecified/prodigiosin.html","prodigiosin"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":1,"nb":1,"a":[["ecology/plant_pathogen.html","plant pathogen"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":1,"nb":1,"a":[["morphology/gliding.html","gliding"]],"b":[["antibacterial/althiomycin.html","althiomycin"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":1,"nb":1,"a":[["ecology/biosafety_level_3.html","biosafety level 3"]],"b":[["unspecified/%CE%B1-mangostin.html","α-mangostin"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":1,"a":[["physiology/dormancy.html","dormancy"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/TraitMech--CellStructureMech.json b/assets/fleet/edges/TraitMech--CellStructureMech.json index 3cf95b1..23a49d7 100644 --- a/assets/fleet/edges/TraitMech--CellStructureMech.json +++ b/assets/fleet/edges/TraitMech--CellStructureMech.json @@ -1 +1 @@ -{"a":"TraitMech","b":"CellStructureMech","base":{"TraitMech":"https://culturebotai.github.io/TraitMech/pages/traits/","CellStructureMech":"https://culturebotai.github.io/CellStructureMech/pages/structures/"},"n":123,"by":{"GO":44,"NCBITaxon":37,"DOI":21,"CHEBI":7,"UniProt":6,"METPO":5,"InterPro":3},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":62,"nb":19,"a":[["ecology/biosafety_level.html","biosafety level"],["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/host_associated.html","host-associated"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/halophily_preference.html","halophily preference"]],"b":[["appendage/curli.html","curli"],["appendage/p_pilus.html","P pilus"],["appendage/pilus.html","pilus"],["appendage/type_i_pilus.html","type I pilus"],["cytoskeleton/parm_filament.html","ParM filament"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":25,"nb":10,"a":[["environment/ph_phenotype_with_numerical_limits.html","pH phenotype with numerical limits"],["environment/temperature_optimum_mid4.html","temperature optimum mid4"],["metabolism/metabolism.html","metabolism"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/respiration.html","respiration"],["metabolism/trimethylamine_n_oxide_respiration.html","trimethylamine N-oxide respiration"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]]},{"id":"GO:0009767","l":"photosynthetic electron transport chain","na":9,"nb":11,"a":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["metabolism/phototrophy.html","phototrophy"],["physiology/photoautotrophic.html","photoautotrophic"],["physiology/photoheterotrophic.html","photoheterotrophic"]],"b":[["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"],["energy_complex/rc_lh1_pufx_core_complex.html","RC-LH1-PufX core complex"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":17,"nb":8,"a":[["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/neutrophilic.html","neutrophilic"],["environment/non_halophilic.html","non halophilic"],["metabolism/biopolymer_degradation.html","biopolymer degradation"]],"b":[["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["spore/endospore_coat.html","endospore coat"],["spore/endospore_cortex.html","endospore cortex"]]},{"id":"GO:0009288","l":"bacterial-type flagellum","na":7,"nb":9,"a":[["morphology/amphitrichous.html","amphitrichous"],["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/lophotrichous.html","lophotrichous"],["morphology/monotrichous.html","monotrichous"],["morphology/non_motile.html","non motile"],["morphology/peritrichous.html","peritrichous"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]]},{"id":"NCBITaxon:155892","l":"Caulobacter vibrioides","na":7,"nb":9,"a":[["ecology/free_living.html","free-living"],["morphology/cell_width.html","cell width"],["morphology/crescent_shaped.html","crescent shaped"],["morphology/curved_shaped.html","curved shaped"],["morphology/holdfast.html","holdfast"],["morphology/monotrichous.html","monotrichous"]],"b":[["appendage/prostheca.html","prostheca"],["appendage/stalk_crossband.html","stalk crossband"],["appendage/tad_pilus.html","Tad pilus"],["cytoskeleton/bactofilin_filament.html","bactofilin filament"],["cytoskeleton/crescentin_filament.html","crescentin filament"],["cytoskeleton/cytoophidium.html","cytoophidium"]]},{"id":"GO:0045259","l":"proton-transporting ATP synthase complex","na":13,"nb":5,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/fermentation.html","Fermentation"],["metabolism/metabolism.html","metabolism"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/carboxydotrophic.html","carboxydotrophic"]],"b":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]]},{"id":"GO:0009274","l":"peptidoglycan-based cell wall","na":5,"nb":7,"a":[["morphology/cell_shape.html","cell shape"],["morphology/cell_width.html","cell width"],["morphology/gram_stain.html","gram stain"],["morphology/pleomorphic_shaped.html","pleomorphic shaped"],["morphology/sphere_shaped.html","sphere shaped"]],"b":[["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"],["appendage/prostheca.html","prostheca"],["division_machinery/elongasome.html","elongasome"],["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]]},{"id":"NCBITaxon:1148","l":"Synechocystis sp. PCC 6803","na":4,"nb":11,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/trophic_type.html","trophic type"]],"b":[["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["inclusion/cyanophycin_granule.html","cyanophycin granule"],["inclusion/glycogen_granule.html","glycogen granule"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"]]},{"id":"GO:0006119","l":"oxidative phosphorylation","na":4,"nb":4,"a":[["environment/ph_delta.html","pH delta"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["physiology/organoheterotrophic.html","organoheterotrophic"],["physiology/persister_cell_formation.html","persister cell formation"]],"b":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":30,"nb":3,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"],["other/pyrenoid.html","pyrenoid"]]},{"id":"GO:0005737","l":"cytoplasm","na":3,"nb":11,"a":[["environment/ph_range_mid2.html","pH range mid2"],["environment/ph_range_very_low.html","pH range very low"],["morphology/spiral_shaped.html","spiral shaped"]],"b":[["envelope/plasma_membrane.html","plasma membrane"],["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"],["membrane_organelle/mitosome.html","mitosome"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":10,"nb":3,"a":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/aerobic.html","aerobic"],["genomics/avast_system.html","AVAST system"],["morphology/motile.html","motile"],["morphology/motility.html","motility"]],"b":[["appendage/type_iv_pilus.html","type IV pilus"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]]},{"id":"DOI:10.1038/nrmicro2921","l":"","na":3,"nb":5,"a":[["morphology/spore_forming.html","spore forming"],["morphology/spore_shaped.html","spore shaped"],["morphology/sporulation.html","sporulation"]],"b":[["spore/endospore_coat.html","endospore coat"],["spore/endospore_cortex.html","endospore cortex"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"],["spore/microsporidian_type_exospore.html","microsporidian-type exospore"],["spore/outer_endospore_membrane.html","outer endospore membrane"]]},{"id":"NCBITaxon:224308","l":"Bacillus subtilis (strain 168)","na":4,"nb":3,"a":[["metabolism/proteolysis.html","proteolysis"],["morphology/spore_forming.html","spore forming"],["morphology/spore_shaped.html","spore shaped"],["morphology/sporulation.html","sporulation"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["division_machinery/divisome_complex.html","divisome complex"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]]},{"id":"NCBITaxon:431944","l":"Magnetospirillum gryphiswaldense MSR-1","na":3,"nb":4,"a":[["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/magnetosome.html","magnetosome"],["physiology/magnetotaxis.html","magnetotaxis"]],"b":[["cytoskeleton/mamk_filament.html","MamK filament"],["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]]},{"id":"GO:0015977","l":"carbon fixation","na":15,"nb":2,"a":[["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["other/pyrenoid.html","pyrenoid"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":11,"nb":2,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"],["morphology/carboxysome.html","carboxysome"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]]},{"id":"NCBITaxon:565050","l":"Caulobacter vibrioides NA1000","na":2,"nb":8,"a":[["morphology/crescent_shaped.html","crescent shaped"],["morphology/tailed_shaped.html","tailed shaped"]],"b":[["appendage/prostheca.html","prostheca"],["appendage/stalk_crossband.html","stalk crossband"],["appendage/tad_pilus.html","Tad pilus"],["cytoskeleton/bactofilin_filament.html","bactofilin filament"],["cytoskeleton/crescentin_filament.html","crescentin filament"],["cytoskeleton/cytoophidium.html","cytoophidium"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":8,"nb":2,"a":[["environment/euryhaline.html","euryhaline"],["genomics/dartg_system.html","DarTG system"],["genomics/ddmde_system.html","DdmDE system"],["genomics/genomic_island.html","genomic island"],["genomics/lamassu_system.html","Lamassu system"],["morphology/curved_shaped.html","curved shaped"]],"b":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"],["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"]]},{"id":"METPO:1000702","l":"motile","na":6,"nb":2,"a":[["morphology/axially_filamented.html","axially filamented"],["morphology/flagellated.html","flagellated"],["morphology/gliding.html","gliding"],["morphology/motile.html","motile"],["morphology/swarming_motility.html","swarming motility"],["morphology/twitching_motility.html","twitching motility"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":2,"nb":6,"a":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"]],"b":[["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/rc_lh1_pufx_core_complex.html","RC-LH1-PufX core complex"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"],["membrane_organelle/plasma_membrane_derived_chromatophore_membrane.html","plasma membrane-derived chromatophore membrane"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":6,"nb":2,"a":[["ecology/animal_pathogen.html","animal pathogen"],["ecology/biosafety_level_2.html","biosafety level 2"],["genomics/genomic_island.html","genomic island"],["genomics/prophage.html","prophage"],["morphology/flagellated.html","flagellated"],["morphology/peritrichous.html","peritrichous"]],"b":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]]},{"id":"GO:0031470","l":"carboxysome","na":5,"nb":2,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["morphology/carboxysome.html","carboxysome"],["physiology/autotrophic.html","autotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]]},{"id":"GO:0044096","l":"type IV pilus","na":5,"nb":2,"a":[["ecology/predatory_bacterium.html","predatory bacterium"],["morphology/motile.html","motile"],["morphology/motility.html","motility"],["morphology/twitching_motility.html","twitching motility"],["morphology/type_iv_pilus.html","type IV pilus"]],"b":[["appendage/tad_pilus.html","Tad pilus"],["appendage/type_iv_pilus.html","type IV pilus"]]},{"id":"GO:0009252","l":"peptidoglycan biosynthetic process","na":4,"nb":2,"a":[["morphology/bacillus_shaped.html","bacillus shaped"],["morphology/cell_shape.html","cell shape"],["morphology/coccobacillus_shaped.html","coccobacillus shaped"],["morphology/rod_shaped.html","rod shaped"]],"b":[["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/elongasome.html","elongasome"]]},{"id":"GO:0009523","l":"photosystem II","na":4,"nb":2,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]]},{"id":"GO:0031469","l":"bacterial microcompartment","na":2,"nb":4,"a":[["morphology/carboxysome.html","carboxysome"],["morphology/intracellular_inclusion.html","intracellular inclusion"]],"b":[["microcompartment/bacterial_microcompartment.html","bacterial microcompartment"],["microcompartment/carboxysome.html","carboxysome"],["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"],["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]]},{"id":"GO:0071973","l":"bacterial-type flagellum-dependent cell motility","na":2,"nb":4,"a":[["ecology/soil_dwelling.html","soil-dwelling"],["morphology/swarming_motility.html","swarming motility"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/periplasmic_flagellum.html","periplasmic flagellum"]]},{"id":"NCBITaxon:1097","l":"Chlorobaculum tepidum","na":2,"nb":4,"a":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"],["morphology/green_pigmented.html","green pigmented"]],"b":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":4,"nb":2,"a":[["morphology/diplococcus_shaped.html","diplococcus shaped"],["morphology/non_motile.html","non motile"],["morphology/sphere_shaped.html","sphere shaped"],["physiology/natural_competence.html","natural competence"]],"b":[["envelope/capsule.html","capsule"],["envelope/glycocalyx.html","glycocalyx"]]},{"id":"NCBITaxon:194439","l":"Chlorobaculum tepidum TLS","na":4,"nb":2,"a":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"],["physiology/photoautotrophic.html","photoautotrophic"],["physiology/photolithoautotrophic.html","photolithoautotrophic"],["physiology/photolithotrophic.html","photolithotrophic"]],"b":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["membrane_organelle/chlorosome.html","chlorosome"]]},{"id":"DOI:10.1038/nrmicro.2018.10","l":"","na":2,"nb":3,"a":[["morphology/carboxysome.html","carboxysome"],["morphology/intracellular_inclusion.html","intracellular inclusion"]],"b":[["microcompartment/bacterial_microcompartment.html","bacterial microcompartment"],["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]]},{"id":"DOI:10.1038/nrmicro2677","l":"","na":3,"nb":2,"a":[["morphology/bacillus_shaped.html","bacillus shaped"],["morphology/cell_shape.html","cell shape"],["morphology/rod_shaped.html","rod shaped"]],"b":[["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/elongasome.html","elongasome"]]},{"id":"GO:0031160","l":"spore wall","na":2,"nb":3,"a":[["morphology/spore_forming.html","spore forming"],["morphology/spore_shaped.html","spore shaped"]],"b":[["spore/microsporidian_type_endospore.html","microsporidian-type endospore"],["spore/microsporidian_type_exospore.html","microsporidian-type exospore"],["spore/polar_tube_anchoring_disc.html","polar tube anchoring disc"]]},{"id":"NCBITaxon:1108","l":"Chloroflexus aurantiacus","na":2,"nb":3,"a":[["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["morphology/green_pigmented.html","green pigmented"]],"b":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"]]},{"id":"GO:0031411","l":"gas vesicle","na":2,"nb":2,"a":[["morphology/gas_vesicle.html","gas vesicle"],["morphology/intracellular_inclusion.html","intracellular inclusion"]],"b":[["inclusion/gas_vesicle.html","gas vesicle"],["inclusion/gas_vesicle_shell.html","gas vesicle shell"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":2,"nb":2,"a":[["morphology/carboxysome.html","carboxysome"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]]},{"id":"NCBITaxon:274","l":"Thermus thermophilus","na":2,"nb":2,"a":[["environment/thermophilic.html","thermophilic"],["morphology/cell_width.html","cell width"]],"b":[["ribonucleoprotein/ribosome.html","ribosome"],["ribonucleoprotein/small_ribosomal_subunit.html","small ribosomal subunit"]]},{"id":"METPO:1000666","l":"cell shape","na":35,"nb":1,"a":[["morphology/bacillus_shaped.html","bacillus shaped"],["morphology/branched_shaped.html","branched shaped"],["morphology/cell_shape.html","cell shape"],["morphology/coccobacillus_shaped.html","coccobacillus shaped"],["morphology/coccus_shaped.html","coccus shaped"],["morphology/crescent_shaped.html","crescent shaped"]],"b":[["cytoskeleton/mreb_filament.html","MreB filament"]]},{"id":"GO:0016020","l":"membrane","na":1,"nb":21,"a":[["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"]],"b":[["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["envelope/cell_outer_membrane.html","cell outer membrane"],["envelope/cellular_bud_membrane.html","cellular bud membrane"],["envelope/plasma_membrane.html","plasma membrane"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"]]},{"id":"NCBITaxon:99287","l":"Salmonella typhimurium (strain LT2 / SGSC1412 / ATCC 700720)","na":1,"nb":16,"a":[["metabolism/tetrathionate_respiration.html","tetrathionate respiration"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"],["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":15,"nb":1,"a":[["ecology/biosafety_level_2.html","biosafety level 2"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/coccus_shaped.html","coccus shaped"]],"b":[["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":15,"a":[["morphology/motility.html","motility"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]]},{"id":"GO:0005886","l":"plasma membrane","na":1,"nb":8,"a":[["environment/desiccation_tolerant.html","desiccation tolerant"]],"b":[["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["appendage/prostheca.html","prostheca"],["envelope/cellular_bud_membrane.html","cellular bud membrane"],["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"],["envelope/plasma_membrane.html","plasma membrane"]]},{"id":"GO:0031090","l":"organelle membrane","na":1,"nb":8,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["membrane_organelle/apicomplexan_dense_granule_membrane.html","apicomplexan dense granule membrane"],["membrane_organelle/microneme_membrane.html","microneme membrane"],["membrane_organelle/mitosome_inner_membrane.html","mitosome inner membrane"],["membrane_organelle/mitosome_outer_membrane.html","mitosome outer membrane"],["membrane_organelle/nuclear_inner_membrane.html","nuclear inner membrane"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"]]},{"id":"UniProt:P0ABB4","l":"","na":8,"nb":1,"a":[["metabolism/metabolism.html","metabolism"],["metabolism/respiration.html","respiration"],["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"],["physiology/chemotrophic.html","chemotrophic"],["physiology/heterotrophic.html","heterotrophic"]],"b":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":7,"nb":1,"a":[["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/iron_oxidation.html","iron oxidation"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"]],"b":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]]},{"id":"DOI:10.1146/annurev.micro.57.030502.090832","l":"","na":1,"nb":7,"a":[["morphology/non_motile.html","non motile"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"]]},{"id":"NCBITaxon:1111708","l":"Synechocystis sp. (strain ATCC 27184 / PCC 6803 / Kazusa)","na":6,"nb":1,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/photoautotrophic.html","photoautotrophic"],["physiology/photolithotrophic.html","photolithotrophic"],["physiology/phototrophic.html","phototrophic"]],"b":[["energy_complex/phycobilisome.html","phycobilisome"]]},{"id":"NCBITaxon:381666","l":"Cupriavidus necator H16","na":6,"nb":1,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"],["physiology/autotrophic.html","autotrophic"],["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["inclusion/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]]},{"id":"GO:0006935","l":"chemotaxis","na":5,"nb":1,"a":[["morphology/flagellated.html","flagellated"],["morphology/motile.html","motile"],["morphology/motility.html","motility"],["physiology/chemotaxis.html","chemotaxis"],["physiology/copiotrophic.html","copiotrophic"]],"b":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]]},{"id":"GO:0009420","l":"bacterial-type flagellum filament","na":1,"nb":5,"a":[["morphology/flagellated.html","flagellated"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]]},{"id":"GO:0009512","l":"cytochrome b6f complex","na":1,"nb":5,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"]],"b":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]]},{"id":"GO:0015979","l":"photosynthesis","na":1,"nb":5,"a":[["metabolism/photosynthesis.html","photosynthesis"]],"b":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"],["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"]]},{"id":"NCBITaxon:1773","l":"Mycobacterium tuberculosis","na":5,"nb":1,"a":[["ecology/biosafety_level_3.html","biosafety level 3"],["ecology/human_pathogen.html","human pathogen"],["physiology/acid_phosphatase_activity.html","acid phosphatase activity"],["physiology/dormancy.html","dormancy"],["physiology/pyrazinamidase_activity.html","pyrazinamidase activity"]],"b":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":5,"a":[["physiology/dormancy.html","dormancy"]],"b":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"],["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]]},{"id":"DOI:10.1038/nrmicro.2016.99","l":"","na":1,"nb":4,"a":[["morphology/magnetosome.html","magnetosome"]],"b":[["cytoskeleton/mamk_filament.html","MamK filament"],["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]]},{"id":"GO:0006412","l":"translation","na":4,"nb":1,"a":[["environment/mesophilic.html","mesophilic"],["genomics/codon_usage_bias.html","codon usage bias"],["physiology/cold_shock_response.html","cold shock response"],["physiology/dormancy.html","dormancy"]],"b":[["ribonucleoprotein/ribosome.html","ribosome"]]},{"id":"GO:0009424","l":"bacterial-type flagellum hook","na":1,"nb":4,"a":[["morphology/flagellated.html","flagellated"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]]},{"id":"GO:0042597","l":"periplasmic space","na":4,"nb":1,"a":[["morphology/axially_filamented.html","axially filamented"],["morphology/gram_negative.html","gram negative"],["physiology/methylotrophic.html","methylotrophic"],["physiology/natural_competence.html","natural competence"]],"b":[["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"]]},{"id":"GO:0043684","l":"type IV secretion system complex","na":4,"nb":1,"a":[["ecology/animal_pathogen.html","animal pathogen"],["ecology/human_pathogen.html","human pathogen"],["genomics/genomic_island.html","genomic island"],["genomics/mobile_genetic_element.html","mobile genetic element"]],"b":[["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]]},{"id":"GO:0051301","l":"cell division","na":4,"nb":1,"a":[["morphology/sarcina_arrangement.html","sarcina arrangement"],["morphology/staphylococcus_arrangement.html","staphylococcus arrangement"],["morphology/streptococcus_arrangement.html","streptococcus arrangement"],["morphology/tetrad_arrangement.html","tetrad arrangement"]],"b":[["division_machinery/divisome_complex.html","divisome complex"]]},{"id":"GO:0110143","l":"magnetosome","na":1,"nb":4,"a":[["morphology/magnetosome.html","magnetosome"]],"b":[["cytoskeleton/mamk_filament.html","MamK filament"],["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]]},{"id":"InterPro:IPR001182","l":"","na":4,"nb":1,"a":[["morphology/fusiform_shaped.html","fusiform shaped"],["morphology/oval_shaped.html","oval shaped"],["morphology/prosthecate.html","prosthecate"],["morphology/tailed_shaped.html","tailed shaped"]],"b":[["envelope/peptidoglycan_based_cell_wall.html","peptidoglycan-based cell wall"]]},{"id":"InterPro:IPR001492","l":"","na":1,"nb":4,"a":[["morphology/spirochete_shaped.html","spirochete shaped"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]]},{"id":"GO:0005840","l":"ribosome","na":1,"nb":3,"a":[["physiology/dormancy.html","dormancy"]],"b":[["ribonucleoprotein/large_ribosomal_subunit.html","large ribosomal subunit"],["ribonucleoprotein/ribosome.html","ribosome"],["ribonucleoprotein/small_ribosomal_subunit.html","small ribosomal subunit"]]},{"id":"GO:0009522","l":"photosystem I","na":1,"nb":3,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"]],"b":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]]},{"id":"GO:0042603","l":"capsule","na":1,"nb":3,"a":[["morphology/capsule.html","capsule"]],"b":[["envelope/capsule.html","capsule"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]]},{"id":"METPO:1000870","l":"sporulation","na":3,"nb":1,"a":[["morphology/non_spore_forming.html","non-spore forming"],["morphology/spore_forming.html","spore forming"],["morphology/sporulation.html","sporulation"]],"b":[["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":1,"nb":3,"a":[["morphology/heterocyst.html","heterocyst"]],"b":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":1,"nb":3,"a":[["environment/microaerophilic.html","microaerophilic"]],"b":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"]]},{"id":"CHEBI:16412","l":"","na":1,"nb":2,"a":[["morphology/gram_negative.html","gram negative"]],"b":[["envelope/cell_outer_membrane.html","cell outer membrane"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"]]},{"id":"CHEBI:17029","l":"chitin","na":1,"nb":2,"a":[["metabolism/chitinolysis.html","chitinolysis"]],"b":[["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["spore/microsporidian_type_endospore.html","microsporidian-type endospore"]]},{"id":"CHEBI:27692","l":"","na":2,"nb":1,"a":[["morphology/cell_width_large.html","cell width large"],["morphology/sphere_shaped.html","sphere shaped"]],"b":[["envelope/peptidoglycan_based_cell_wall.html","peptidoglycan-based cell wall"]]},{"id":"DOI:10.1016/j.cell.2018.02.050","l":"","na":1,"nb":2,"a":[["morphology/cell_width_small.html","cell width small"]],"b":[["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/elongasome.html","elongasome"]]},{"id":"DOI:10.1038/nature13983","l":"","na":1,"nb":2,"a":[["morphology/disc_shaped.html","disc shaped"]],"b":[["cytoskeleton/cetz_filament.html","CetZ filament"],["cytoskeleton/microtubule.html","microtubule"]]},{"id":"DOI:10.3390/biom11020186","l":"","na":1,"nb":2,"a":[["morphology/flagellated.html","flagellated"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"]]},{"id":"GO:0000917","l":"division septum assembly","na":2,"nb":1,"a":[["morphology/sarcina_arrangement.html","sarcina arrangement"],["morphology/tetrad_arrangement.html","tetrad arrangement"]],"b":[["division_machinery/divisome_complex.html","divisome complex"]]},{"id":"GO:0006097","l":"glyoxylate cycle","na":1,"nb":2,"a":[["physiology/heterotrophic.html","heterotrophic"]],"b":[["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysome.html","glyoxysome"]]},{"id":"GO:0030115","l":"S-layer","na":2,"nb":1,"a":[["morphology/square_shaped.html","square shaped"],["morphology/triangular_shaped.html","triangular shaped"]],"b":[["envelope/s_layer.html","S-layer"]]},{"id":"GO:0043107","l":"type IV pilus-dependent motility","na":2,"nb":1,"a":[["morphology/motile.html","motile"],["morphology/twitching_motility.html","twitching motility"]],"b":[["appendage/type_iv_pilus.html","type IV pilus"]]},{"id":"GO:0070088","l":"polyhydroxyalkanoate granule","na":2,"nb":1,"a":[["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]],"b":[["inclusion/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]]},{"id":"GO:1990586","l":"divisome complex","na":2,"nb":1,"a":[["morphology/coccus_shaped.html","coccus shaped"],["morphology/ellipsoidal.html","ellipsoidal"]],"b":[["division_machinery/divisome_complex.html","divisome complex"]]},{"id":"METPO:1000681","l":"rod shaped","na":1,"nb":2,"a":[["morphology/rod_shaped.html","rod shaped"]],"b":[["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/elongasome.html","elongasome"]]},{"id":"METPO:1000704","l":"flagellated","na":2,"nb":1,"a":[["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/flagellated.html","flagellated"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":2,"nb":1,"a":[["genomics/wadjet_system.html","Wadjet system"],["morphology/irregular_shaped.html","irregular shaped"]],"b":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]]},{"id":"NCBITaxon:2261","l":"Pyrococcus furiosus","na":2,"nb":1,"a":[["environment/hyperthermophilic.html","hyperthermophilic"],["environment/temperature_range_high.html","temperature range high"]],"b":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"]]},{"id":"UniProt:Q03511","l":"","na":1,"nb":2,"a":[["morphology/carboxysome.html","carboxysome"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]]},{"id":"CHEBI:16838","l":"polyphosphate","na":1,"nb":1,"a":[["environment/zinc_tolerant.html","zinc tolerant"]],"b":[["membrane_organelle/acidocalcisome.html","acidocalcisome"]]},{"id":"DOI:10.1016/S0092-8674(03)00935-8","l":"","na":1,"nb":1,"a":[["morphology/crescent_shaped.html","crescent shaped"]],"b":[["cytoskeleton/crescentin_filament.html","crescentin filament"]]},{"id":"DOI:10.1016/j.molcel.2008.05.030","l":"","na":1,"nb":1,"a":[["morphology/spore_shaped.html","spore shaped"]],"b":[["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]]},{"id":"DOI:10.1038/nrmicro1913","l":"","na":1,"nb":1,"a":[["morphology/carboxysome.html","carboxysome"]],"b":[["microcompartment/carboxysome.html","carboxysome"]]},{"id":"DOI:10.1038/nrmicro3213","l":"","na":1,"nb":1,"a":[["morphology/s_layer.html","S-layer"]],"b":[["envelope/s_layer.html","S-layer"]]},{"id":"DOI:10.1038/s41564-023-01401-2","l":"","na":1,"nb":1,"a":[["ecology/predatory_bacterium.html","predatory bacterium"]],"b":[["appendage/type_iv_pilus.html","type IV pilus"]]},{"id":"DOI:10.1038/s41579-020-0366-3","l":"","na":1,"nb":1,"a":[["morphology/fusiform_shaped.html","fusiform shaped"]],"b":[["envelope/peptidoglycan_based_cell_wall.html","peptidoglycan-based cell wall"]]},{"id":"DOI:10.1038/s44318-024-00178-2","l":"","na":1,"nb":1,"a":[["morphology/gas_vesicle.html","gas vesicle"]],"b":[["inclusion/gas_vesicle.html","gas vesicle"]]},{"id":"DOI:10.1073/pnas.200221797","l":"","na":1,"nb":1,"a":[["morphology/spirochete_shaped.html","spirochete shaped"]],"b":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]]},{"id":"DOI:10.1111/1574-6976.12063","l":"","na":1,"nb":1,"a":[["morphology/s_layer.html","S-layer"]],"b":[["envelope/s_layer.html","S-layer"]]},{"id":"DOI:10.1146/annurev.biochem.75.103004.142545","l":"","na":1,"nb":1,"a":[["morphology/capsule.html","capsule"]],"b":[["envelope/capsule.html","capsule"]]},{"id":"DOI:10.1146/annurev.micro.50.1.285","l":"","na":1,"nb":1,"a":[["morphology/capsule.html","capsule"]],"b":[["envelope/capsule.html","capsule"]]},{"id":"DOI:10.1371/journal.pone.0007521","l":"","na":1,"nb":1,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"]],"b":[["microcompartment/carboxysome_shell.html","carboxysome shell"]]},{"id":"DOI:10.3390/biom10040550","l":"","na":1,"nb":1,"a":[["morphology/axially_filamented.html","axially filamented"]],"b":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]]},{"id":"GO:0006457","l":"protein folding","na":1,"nb":1,"a":[["environment/temperature_range_high.html","temperature range high"]],"b":[["other/chaperonin_containing_t_complex.html","chaperonin-containing T-complex"]]},{"id":"GO:0031012","l":"extracellular matrix","na":1,"nb":1,"a":[["ecology/biofilm_formation.html","biofilm formation"]],"b":[["other/holdfast.html","holdfast"]]},{"id":"GO:0031411.","l":"","na":1,"nb":1,"a":[["morphology/gas_vesicle.html","gas vesicle"]],"b":[["inclusion/gas_vesicle.html","gas vesicle"]]},{"id":"GO:0033172","l":"gas vesicle shell","na":1,"nb":1,"a":[["morphology/gas_vesicle.html","gas vesicle"]],"b":[["inclusion/gas_vesicle_shell.html","gas vesicle shell"]]},{"id":"GO:0042254","l":"ribosome biogenesis","na":1,"nb":1,"a":[["genomics/rrna_operon_copy_number.html","rRNA operon copy number"]],"b":[["other/nucleolus.html","nucleolus"]]},{"id":"GO:0043263","l":"cellulosome","na":1,"nb":1,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["other/cellulosome.html","cellulosome"]]},{"id":"GO:0071944","l":"cell periphery","na":1,"nb":1,"a":[["morphology/spiral_shaped.html","spiral shaped"]],"b":[["envelope/plasma_membrane.html","plasma membrane"]]},{"id":"InterPro:IPR000067","l":"","na":1,"nb":1,"a":[["morphology/lophotrichous.html","lophotrichous"]],"b":[["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"]]},{"id":"NCBITaxon:139","l":"Borreliella burgdorferi","na":1,"nb":1,"a":[["genomics/plasmid_carriage.html","plasmid carriage"]],"b":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":1,"nb":1,"a":[["morphology/s_layer.html","S-layer"]],"b":[["envelope/s_layer.html","S-layer"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":1,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["other/cellulosome.html","cellulosome"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":1,"nb":1,"a":[["physiology/alkaline_phosphatase_activity.html","alkaline phosphatase activity"]],"b":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]]},{"id":"NCBITaxon:2246","l":"Haloferax volcanii","na":1,"nb":1,"a":[["morphology/disc_shaped.html","disc shaped"]],"b":[["cytoskeleton/cetz_filament.html","CetZ filament"]]},{"id":"NCBITaxon:2285","l":"Sulfolobus acidocaldarius","na":1,"nb":1,"a":[["environment/temperature_range_high.html","temperature range high"]],"b":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"]]},{"id":"NCBITaxon:243233","l":"Methylococcus capsulatus Bath","na":1,"nb":1,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["membrane_organelle/methane_oxidizing_organelle.html","methane-oxidizing organelle"]]},{"id":"NCBITaxon:837","l":"Porphyromonas gingivalis","na":1,"nb":1,"a":[["morphology/black_pigmented.html","black pigmented"]],"b":[["secretion_system/type_ix_protein_secretion_system_complex.html","type IX protein secretion system complex"]]},{"id":"UniProt:P0C2S5","l":"","na":1,"nb":1,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["other/cellulosome.html","cellulosome"]]},{"id":"UniProt:P35149","l":"","na":1,"nb":1,"a":[["morphology/spore_shaped.html","spore shaped"]],"b":[["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]]},{"id":"UniProt:Q31NB3","l":"","na":1,"nb":1,"a":[["physiology/photolithoautotrophic.html","photolithoautotrophic"]],"b":[["microcompartment/carboxysome.html","carboxysome"]]},{"id":"UniProt:Q6NE59","l":"","na":1,"nb":1,"a":[["morphology/magnetosome.html","magnetosome"]],"b":[["cytoskeleton/mamk_filament.html","MamK filament"]]}]} \ No newline at end of file +{"a":"TraitMech","b":"CellStructureMech","base":{"TraitMech":"https://culturebotai.github.io/TraitMech/pages/traits/","CellStructureMech":"https://culturebotai.github.io/CellStructureMech/pages/structures/"},"n":114,"by":{"GO":53,"NCBITaxon":40,"CHEBI":7,"UniProt":6,"METPO":5,"InterPro":3},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":65,"nb":31,"a":[["ecology/biosafety_level.html","biosafety level"],["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/host_associated.html","host-associated"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/halophily_preference.html","halophily preference"]],"b":[["appendage/curli.html","curli"],["appendage/p_pilus.html","P pilus"],["appendage/pilus.html","pilus"],["appendage/type_i_pilus.html","type I pilus"],["cytoskeleton/parm_filament.html","ParM filament"],["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":26,"nb":15,"a":[["environment/ph_phenotype_with_numerical_limits.html","pH phenotype with numerical limits"],["environment/temperature_optimum_mid4.html","temperature optimum mid4"],["genomics/rnlab_system.html","RnlAB system"],["metabolism/metabolism.html","metabolism"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/respiration.html","respiration"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":18,"nb":14,"a":[["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/neutrophilic.html","neutrophilic"],["environment/non_halophilic.html","non halophilic"],["genomics/spbk_system.html","SpbK system"]],"b":[["cytoskeleton/alfa_filament.html","AlfA filament"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]]},{"id":"GO:0009767","l":"photosynthetic electron transport chain","na":9,"nb":13,"a":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["metabolism/phototrophy.html","phototrophy"],["physiology/photoautotrophic.html","photoautotrophic"],["physiology/photoheterotrophic.html","photoheterotrophic"]],"b":[["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/photosystem_i.html","photosystem I"],["energy_complex/photosystem_ii.html","photosystem II"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]]},{"id":"NCBITaxon:155892","l":"Caulobacter vibrioides","na":7,"nb":9,"a":[["ecology/free_living.html","free-living"],["morphology/cell_width.html","cell width"],["morphology/crescent_shaped.html","crescent shaped"],["morphology/curved_shaped.html","curved shaped"],["morphology/holdfast.html","holdfast"],["morphology/monotrichous.html","monotrichous"]],"b":[["appendage/prostheca.html","prostheca"],["appendage/stalk_crossband.html","stalk crossband"],["appendage/tad_pilus.html","Tad pilus"],["cytoskeleton/bactofilin_filament.html","bactofilin filament"],["cytoskeleton/crescentin_filament.html","crescentin filament"],["cytoskeleton/cytoophidium.html","cytoophidium"]]},{"id":"GO:0009288","l":"bacterial-type flagellum","na":7,"nb":8,"a":[["morphology/amphitrichous.html","amphitrichous"],["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/lophotrichous.html","lophotrichous"],["morphology/monotrichous.html","monotrichous"],["morphology/non_motile.html","non motile"],["morphology/peritrichous.html","peritrichous"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":9,"nb":6,"a":[["environment/euryhaline.html","euryhaline"],["genomics/dartg_system.html","DarTG system"],["genomics/ddmde_system.html","DdmDE system"],["genomics/genomic_island.html","genomic island"],["genomics/lamassu_system.html","Lamassu system"],["genomics/nixi_system.html","NixI system"]],"b":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"],["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"],["secretion_system/type_vi_secretion_system_baseplate.html","type VI secretion system baseplate"],["secretion_system/type_vi_secretion_system_contractile_sheath.html","type VI secretion system contractile sheath"],["secretion_system/type_vi_secretion_system_hcp_tube.html","type VI secretion system Hcp tube"],["secretion_system/type_vi_secretion_system_vgrg_paar_spike_complex.html","type VI secretion system VgrG/PAAR spike complex"]]},{"id":"GO:0045259","l":"proton-transporting ATP synthase complex","na":13,"nb":5,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/fermentation.html","Fermentation"],["metabolism/metabolism.html","metabolism"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/carboxydotrophic.html","carboxydotrophic"]],"b":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]]},{"id":"GO:0009274","l":"peptidoglycan-based cell wall","na":5,"nb":7,"a":[["morphology/cell_shape.html","cell shape"],["morphology/cell_width.html","cell width"],["morphology/gram_stain.html","gram stain"],["morphology/pleomorphic_shaped.html","pleomorphic shaped"],["morphology/sphere_shaped.html","sphere shaped"]],"b":[["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"],["appendage/prostheca.html","prostheca"],["division_machinery/elongasome.html","elongasome"],["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]]},{"id":"NCBITaxon:1148","l":"Synechocystis sp. PCC 6803","na":4,"nb":11,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/trophic_type.html","trophic type"]],"b":[["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["inclusion/cyanophycin_granule.html","cyanophycin granule"],["inclusion/glycogen_granule.html","glycogen granule"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"]]},{"id":"GO:0006119","l":"oxidative phosphorylation","na":4,"nb":4,"a":[["environment/ph_delta.html","pH delta"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["physiology/organoheterotrophic.html","organoheterotrophic"],["physiology/persister_cell_formation.html","persister cell formation"]],"b":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":30,"nb":3,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"],["other/pyrenoid.html","pyrenoid"]]},{"id":"GO:0005737","l":"cytoplasm","na":3,"nb":13,"a":[["environment/ph_range_mid2.html","pH range mid2"],["environment/ph_range_very_low.html","pH range very low"],["morphology/spiral_shaped.html","spiral shaped"]],"b":[["envelope/plasma_membrane.html","plasma membrane"],["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"],["membrane_organelle/mitosome.html","mitosome"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":11,"nb":3,"a":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/aerobic.html","aerobic"],["genomics/avast_system.html","AVAST system"],["genomics/jukab_system.html","JukAB system"],["morphology/motile.html","motile"]],"b":[["appendage/type_iv_pilus.html","type IV pilus"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]]},{"id":"GO:0009523","l":"photosystem II","na":4,"nb":3,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["energy_complex/photosystem_ii.html","photosystem II"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]]},{"id":"NCBITaxon:224308","l":"Bacillus subtilis (strain 168)","na":4,"nb":3,"a":[["metabolism/proteolysis.html","proteolysis"],["morphology/spore_forming.html","spore forming"],["morphology/spore_shaped.html","spore shaped"],["morphology/sporulation.html","sporulation"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["division_machinery/divisome_complex.html","divisome complex"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]]},{"id":"NCBITaxon:431944","l":"Magnetospirillum gryphiswaldense MSR-1","na":3,"nb":4,"a":[["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/magnetosome.html","magnetosome"],["physiology/magnetotaxis.html","magnetotaxis"]],"b":[["cytoskeleton/mamk_filament.html","MamK filament"],["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]]},{"id":"GO:0015977","l":"carbon fixation","na":15,"nb":2,"a":[["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["other/pyrenoid.html","pyrenoid"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":15,"nb":2,"a":[["ecology/biosafety_level_2.html","biosafety level 2"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/coccus_shaped.html","coccus shaped"]],"b":[["envelope/periplasmic_space.html","periplasmic space"],["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":11,"nb":2,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"],["morphology/carboxysome.html","carboxysome"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":2,"nb":7,"a":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"]],"b":[["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/rc_lh1_pufx_core_complex.html","RC-LH1-PufX core complex"],["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"]]},{"id":"NCBITaxon:565050","l":"Caulobacter vibrioides NA1000","na":2,"nb":7,"a":[["morphology/crescent_shaped.html","crescent shaped"],["morphology/tailed_shaped.html","tailed shaped"]],"b":[["appendage/prostheca.html","prostheca"],["appendage/stalk_crossband.html","stalk crossband"],["appendage/tad_pilus.html","Tad pilus"],["cytoskeleton/bactofilin_filament.html","bactofilin filament"],["cytoskeleton/cytoophidium.html","cytoophidium"],["other/holdfast.html","holdfast"]]},{"id":"METPO:1000702","l":"motile","na":6,"nb":2,"a":[["morphology/axially_filamented.html","axially filamented"],["morphology/flagellated.html","flagellated"],["morphology/gliding.html","gliding"],["morphology/motile.html","motile"],["morphology/swarming_motility.html","swarming motility"],["morphology/twitching_motility.html","twitching motility"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":6,"nb":2,"a":[["ecology/animal_pathogen.html","animal pathogen"],["ecology/biosafety_level_2.html","biosafety level 2"],["genomics/genomic_island.html","genomic island"],["genomics/prophage.html","prophage"],["morphology/flagellated.html","flagellated"],["morphology/peritrichous.html","peritrichous"]],"b":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]]},{"id":"GO:0031470","l":"carboxysome","na":5,"nb":2,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["morphology/carboxysome.html","carboxysome"],["physiology/autotrophic.html","autotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]]},{"id":"GO:0044096","l":"type IV pilus","na":5,"nb":2,"a":[["ecology/predatory_bacterium.html","predatory bacterium"],["morphology/motile.html","motile"],["morphology/motility.html","motility"],["morphology/twitching_motility.html","twitching motility"],["morphology/type_iv_pilus.html","type IV pilus"]],"b":[["appendage/tad_pilus.html","Tad pilus"],["appendage/type_iv_pilus.html","type IV pilus"]]},{"id":"GO:0009252","l":"peptidoglycan biosynthetic process","na":4,"nb":2,"a":[["morphology/bacillus_shaped.html","bacillus shaped"],["morphology/cell_shape.html","cell shape"],["morphology/coccobacillus_shaped.html","coccobacillus shaped"],["morphology/rod_shaped.html","rod shaped"]],"b":[["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/elongasome.html","elongasome"]]},{"id":"GO:0031160","l":"spore wall","na":2,"nb":4,"a":[["morphology/spore_forming.html","spore forming"],["morphology/spore_shaped.html","spore shaped"]],"b":[["spore/microsporidian_type_endospore.html","microsporidian-type endospore"],["spore/microsporidian_type_exospore.html","microsporidian-type exospore"],["spore/polar_tube_anchoring_disc.html","polar tube anchoring disc"],["spore/spore_wall.html","spore wall"]]},{"id":"GO:0031469","l":"bacterial microcompartment","na":2,"nb":4,"a":[["morphology/carboxysome.html","carboxysome"],["morphology/intracellular_inclusion.html","intracellular inclusion"]],"b":[["microcompartment/bacterial_microcompartment.html","bacterial microcompartment"],["microcompartment/carboxysome.html","carboxysome"],["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"],["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]]},{"id":"GO:0042597","l":"periplasmic space","na":4,"nb":2,"a":[["morphology/axially_filamented.html","axially filamented"],["morphology/gram_negative.html","gram negative"],["physiology/methylotrophic.html","methylotrophic"],["physiology/natural_competence.html","natural competence"]],"b":[["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"],["envelope/periplasmic_space.html","periplasmic space"]]},{"id":"GO:0071973","l":"bacterial-type flagellum-dependent cell motility","na":2,"nb":4,"a":[["ecology/soil_dwelling.html","soil-dwelling"],["morphology/swarming_motility.html","swarming motility"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/periplasmic_flagellum.html","periplasmic flagellum"]]},{"id":"NCBITaxon:1097","l":"Chlorobaculum tepidum","na":2,"nb":4,"a":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"],["morphology/green_pigmented.html","green pigmented"]],"b":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":4,"nb":2,"a":[["morphology/diplococcus_shaped.html","diplococcus shaped"],["morphology/non_motile.html","non motile"],["morphology/sphere_shaped.html","sphere shaped"],["physiology/natural_competence.html","natural competence"]],"b":[["envelope/capsule.html","capsule"],["envelope/glycocalyx.html","glycocalyx"]]},{"id":"NCBITaxon:194439","l":"Chlorobaculum tepidum TLS","na":4,"nb":2,"a":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"],["physiology/photoautotrophic.html","photoautotrophic"],["physiology/photolithoautotrophic.html","photolithoautotrophic"],["physiology/photolithotrophic.html","photolithotrophic"]],"b":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["membrane_organelle/chlorosome.html","chlorosome"]]},{"id":"NCBITaxon:1108","l":"Chloroflexus aurantiacus","na":2,"nb":3,"a":[["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["morphology/green_pigmented.html","green pigmented"]],"b":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"]]},{"id":"NCBITaxon:274","l":"Thermus thermophilus","na":2,"nb":3,"a":[["environment/thermophilic.html","thermophilic"],["morphology/cell_width.html","cell width"]],"b":[["energy_complex/respiratory_chain_complex_i.html","respiratory chain complex I"],["ribonucleoprotein/ribosome.html","ribosome"],["ribonucleoprotein/small_ribosomal_subunit.html","small ribosomal subunit"]]},{"id":"GO:0031411","l":"gas vesicle","na":2,"nb":2,"a":[["morphology/gas_vesicle.html","gas vesicle"],["morphology/intracellular_inclusion.html","intracellular inclusion"]],"b":[["inclusion/gas_vesicle.html","gas vesicle"],["inclusion/gas_vesicle_shell.html","gas vesicle shell"]]},{"id":"GO:1990586","l":"divisome complex","na":2,"nb":2,"a":[["morphology/coccus_shaped.html","coccus shaped"],["morphology/ellipsoidal.html","ellipsoidal"]],"b":[["division_machinery/divisome_complex.html","divisome complex"],["envelope/division_septum.html","division septum"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":2,"nb":2,"a":[["morphology/carboxysome.html","carboxysome"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]]},{"id":"NCBITaxon:2261","l":"Pyrococcus furiosus","na":2,"nb":2,"a":[["environment/hyperthermophilic.html","hyperthermophilic"],["environment/temperature_range_high.html","temperature range high"]],"b":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"]]},{"id":"METPO:1000666","l":"cell shape","na":35,"nb":1,"a":[["morphology/bacillus_shaped.html","bacillus shaped"],["morphology/branched_shaped.html","branched shaped"],["morphology/cell_shape.html","cell shape"],["morphology/coccobacillus_shaped.html","coccobacillus shaped"],["morphology/coccus_shaped.html","coccus shaped"],["morphology/crescent_shaped.html","crescent shaped"]],"b":[["cytoskeleton/mreb_filament.html","MreB filament"]]},{"id":"GO:0016020","l":"membrane","na":1,"nb":23,"a":[["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"]],"b":[["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["envelope/cell_outer_membrane.html","cell outer membrane"],["envelope/cellular_bud_membrane.html","cellular bud membrane"],["envelope/plasma_membrane.html","plasma membrane"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"]]},{"id":"NCBITaxon:99287","l":"Salmonella typhimurium (strain LT2 / SGSC1412 / ATCC 700720)","na":1,"nb":16,"a":[["metabolism/tetrathionate_respiration.html","tetrathionate respiration"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"],["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":15,"a":[["morphology/motility.html","motility"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]]},{"id":"GO:0005886","l":"plasma membrane","na":1,"nb":10,"a":[["environment/desiccation_tolerant.html","desiccation tolerant"]],"b":[["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["appendage/prostheca.html","prostheca"],["envelope/cellular_bud_membrane.html","cellular bud membrane"],["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"],["envelope/plasma_membrane.html","plasma membrane"]]},{"id":"GO:0031090","l":"organelle membrane","na":1,"nb":8,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["membrane_organelle/apicomplexan_dense_granule_membrane.html","apicomplexan dense granule membrane"],["membrane_organelle/microneme_membrane.html","microneme membrane"],["membrane_organelle/mitosome_inner_membrane.html","mitosome inner membrane"],["membrane_organelle/mitosome_outer_membrane.html","mitosome outer membrane"],["membrane_organelle/nuclear_inner_membrane.html","nuclear inner membrane"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"]]},{"id":"UniProt:P0ABB4","l":"","na":8,"nb":1,"a":[["metabolism/metabolism.html","metabolism"],["metabolism/respiration.html","respiration"],["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"],["physiology/chemotrophic.html","chemotrophic"],["physiology/heterotrophic.html","heterotrophic"]],"b":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":7,"nb":1,"a":[["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/iron_oxidation.html","iron oxidation"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"]],"b":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]]},{"id":"NCBITaxon:1111708","l":"Synechocystis sp. (strain ATCC 27184 / PCC 6803 / Kazusa)","na":6,"nb":1,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/photoautotrophic.html","photoautotrophic"],["physiology/photolithotrophic.html","photolithotrophic"],["physiology/phototrophic.html","phototrophic"]],"b":[["energy_complex/phycobilisome.html","phycobilisome"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":6,"nb":1,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/oxidase_activity.html","oxidase activity"]],"b":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]]},{"id":"NCBITaxon:381666","l":"Cupriavidus necator H16","na":6,"nb":1,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"],["physiology/autotrophic.html","autotrophic"],["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["inclusion/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]]},{"id":"GO:0006935","l":"chemotaxis","na":5,"nb":1,"a":[["morphology/flagellated.html","flagellated"],["morphology/motile.html","motile"],["morphology/motility.html","motility"],["physiology/chemotaxis.html","chemotaxis"],["physiology/copiotrophic.html","copiotrophic"]],"b":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]]},{"id":"GO:0009420","l":"bacterial-type flagellum filament","na":1,"nb":5,"a":[["morphology/flagellated.html","flagellated"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]]},{"id":"GO:0009512","l":"cytochrome b6f complex","na":1,"nb":5,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"]],"b":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]]},{"id":"GO:0015979","l":"photosynthesis","na":1,"nb":5,"a":[["metabolism/photosynthesis.html","photosynthesis"]],"b":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"],["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"]]},{"id":"NCBITaxon:1773","l":"Mycobacterium tuberculosis","na":5,"nb":1,"a":[["ecology/biosafety_level_3.html","biosafety level 3"],["ecology/human_pathogen.html","human pathogen"],["physiology/acid_phosphatase_activity.html","acid phosphatase activity"],["physiology/dormancy.html","dormancy"],["physiology/pyrazinamidase_activity.html","pyrazinamidase activity"]],"b":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":5,"a":[["physiology/dormancy.html","dormancy"]],"b":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"],["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]]},{"id":"GO:0006412","l":"translation","na":4,"nb":1,"a":[["environment/mesophilic.html","mesophilic"],["genomics/codon_usage_bias.html","codon usage bias"],["physiology/cold_shock_response.html","cold shock response"],["physiology/dormancy.html","dormancy"]],"b":[["ribonucleoprotein/ribosome.html","ribosome"]]},{"id":"GO:0009424","l":"bacterial-type flagellum hook","na":1,"nb":4,"a":[["morphology/flagellated.html","flagellated"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]]},{"id":"GO:0009522","l":"photosystem I","na":1,"nb":4,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"]],"b":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/photosystem_i.html","photosystem I"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]]},{"id":"GO:0043684","l":"type IV secretion system complex","na":4,"nb":1,"a":[["ecology/animal_pathogen.html","animal pathogen"],["ecology/human_pathogen.html","human pathogen"],["genomics/genomic_island.html","genomic island"],["genomics/mobile_genetic_element.html","mobile genetic element"]],"b":[["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]]},{"id":"GO:0051301","l":"cell division","na":4,"nb":1,"a":[["morphology/sarcina_arrangement.html","sarcina arrangement"],["morphology/staphylococcus_arrangement.html","staphylococcus arrangement"],["morphology/streptococcus_arrangement.html","streptococcus arrangement"],["morphology/tetrad_arrangement.html","tetrad arrangement"]],"b":[["division_machinery/divisome_complex.html","divisome complex"]]},{"id":"GO:0110143","l":"magnetosome","na":1,"nb":4,"a":[["morphology/magnetosome.html","magnetosome"]],"b":[["cytoskeleton/mamk_filament.html","MamK filament"],["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]]},{"id":"InterPro:IPR001182","l":"","na":4,"nb":1,"a":[["morphology/fusiform_shaped.html","fusiform shaped"],["morphology/oval_shaped.html","oval shaped"],["morphology/prosthecate.html","prosthecate"],["morphology/tailed_shaped.html","tailed shaped"]],"b":[["envelope/peptidoglycan_based_cell_wall.html","peptidoglycan-based cell wall"]]},{"id":"InterPro:IPR001492","l":"","na":1,"nb":4,"a":[["morphology/spirochete_shaped.html","spirochete shaped"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]]},{"id":"CHEBI:17029","l":"chitin","na":1,"nb":3,"a":[["metabolism/chitinolysis.html","chitinolysis"]],"b":[["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["membrane_organelle/chitosome.html","chitosome"],["spore/microsporidian_type_endospore.html","microsporidian-type endospore"]]},{"id":"GO:0004129","l":"cytochrome-c oxidase activity","na":3,"nb":1,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["other/oxidase_negative.html","oxidase negative"],["physiology/oxidase_activity.html","oxidase activity"]],"b":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]]},{"id":"GO:0005840","l":"ribosome","na":1,"nb":3,"a":[["physiology/dormancy.html","dormancy"]],"b":[["ribonucleoprotein/large_ribosomal_subunit.html","large ribosomal subunit"],["ribonucleoprotein/ribosome.html","ribosome"],["ribonucleoprotein/small_ribosomal_subunit.html","small ribosomal subunit"]]},{"id":"GO:0042603","l":"capsule","na":1,"nb":3,"a":[["morphology/capsule.html","capsule"]],"b":[["envelope/capsule.html","capsule"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]]},{"id":"METPO:1000870","l":"sporulation","na":3,"nb":1,"a":[["morphology/non_spore_forming.html","non-spore forming"],["morphology/spore_forming.html","spore forming"],["morphology/sporulation.html","sporulation"]],"b":[["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":1,"nb":3,"a":[["morphology/heterocyst.html","heterocyst"]],"b":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":1,"nb":3,"a":[["environment/microaerophilic.html","microaerophilic"]],"b":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"]]},{"id":"CHEBI:16412","l":"","na":1,"nb":2,"a":[["morphology/gram_negative.html","gram negative"]],"b":[["envelope/cell_outer_membrane.html","cell outer membrane"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"]]},{"id":"CHEBI:27692","l":"","na":2,"nb":1,"a":[["morphology/cell_width_large.html","cell width large"],["morphology/sphere_shaped.html","sphere shaped"]],"b":[["envelope/peptidoglycan_based_cell_wall.html","peptidoglycan-based cell wall"]]},{"id":"GO:0000917","l":"division septum assembly","na":2,"nb":1,"a":[["morphology/sarcina_arrangement.html","sarcina arrangement"],["morphology/tetrad_arrangement.html","tetrad arrangement"]],"b":[["division_machinery/divisome_complex.html","divisome complex"]]},{"id":"GO:0006097","l":"glyoxylate cycle","na":1,"nb":2,"a":[["physiology/heterotrophic.html","heterotrophic"]],"b":[["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysome.html","glyoxysome"]]},{"id":"GO:0006260","l":"DNA replication","na":1,"nb":2,"a":[["genomics/gc_skew.html","GC skew"]],"b":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"],["other/single_stranded_dna_binding_protein_complex.html","single-stranded DNA-binding protein complex"]]},{"id":"GO:0016610","l":"nitrogenase complex","na":2,"nb":1,"a":[["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"]]},{"id":"GO:0030115","l":"S-layer","na":2,"nb":1,"a":[["morphology/square_shaped.html","square shaped"],["morphology/triangular_shaped.html","triangular shaped"]],"b":[["envelope/s_layer.html","S-layer"]]},{"id":"GO:0043107","l":"type IV pilus-dependent motility","na":2,"nb":1,"a":[["morphology/motile.html","motile"],["morphology/twitching_motility.html","twitching motility"]],"b":[["appendage/type_iv_pilus.html","type IV pilus"]]},{"id":"GO:0044674","l":"methyl coenzyme M reductase complex","na":2,"nb":1,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/methanogenesis.html","Methanogenesis"]],"b":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]]},{"id":"GO:0070088","l":"polyhydroxyalkanoate granule","na":2,"nb":1,"a":[["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]],"b":[["inclusion/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]]},{"id":"METPO:1000681","l":"rod shaped","na":1,"nb":2,"a":[["morphology/rod_shaped.html","rod shaped"]],"b":[["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/elongasome.html","elongasome"]]},{"id":"METPO:1000704","l":"flagellated","na":2,"nb":1,"a":[["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/flagellated.html","flagellated"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":2,"nb":1,"a":[["genomics/wadjet_system.html","Wadjet system"],["morphology/irregular_shaped.html","irregular shaped"]],"b":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]]},{"id":"NCBITaxon:2285","l":"Sulfolobus acidocaldarius","na":1,"nb":2,"a":[["environment/temperature_range_high.html","temperature range high"]],"b":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"]]},{"id":"NCBITaxon:32046","l":"Synechococcus elongatus","na":2,"nb":1,"a":[["morphology/carboxysome.html","carboxysome"],["physiology/autotrophic.html","autotrophic"]],"b":[["energy_complex/photosystem_i.html","photosystem I"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":2,"nb":1,"a":[["genomics/ploidy.html","ploidy"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"]]},{"id":"UniProt:Q03511","l":"","na":1,"nb":2,"a":[["morphology/carboxysome.html","carboxysome"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]]},{"id":"CHEBI:16838","l":"polyphosphate","na":1,"nb":1,"a":[["environment/zinc_tolerant.html","zinc tolerant"]],"b":[["membrane_organelle/acidocalcisome.html","acidocalcisome"]]},{"id":"GO:0006457","l":"protein folding","na":1,"nb":1,"a":[["environment/temperature_range_high.html","temperature range high"]],"b":[["other/chaperonin_containing_t_complex.html","chaperonin-containing T-complex"]]},{"id":"GO:0031012","l":"extracellular matrix","na":1,"nb":1,"a":[["ecology/biofilm_formation.html","biofilm formation"]],"b":[["other/holdfast.html","holdfast"]]},{"id":"GO:0031411.","l":"","na":1,"nb":1,"a":[["morphology/gas_vesicle.html","gas vesicle"]],"b":[["inclusion/gas_vesicle.html","gas vesicle"]]},{"id":"GO:0033172","l":"gas vesicle shell","na":1,"nb":1,"a":[["morphology/gas_vesicle.html","gas vesicle"]],"b":[["inclusion/gas_vesicle_shell.html","gas vesicle shell"]]},{"id":"GO:0042254","l":"ribosome biogenesis","na":1,"nb":1,"a":[["genomics/rrna_operon_copy_number.html","rRNA operon copy number"]],"b":[["other/nucleolus.html","nucleolus"]]},{"id":"GO:0042763","l":"intracellular immature spore","na":1,"nb":1,"a":[["morphology/spore_forming.html","spore forming"]],"b":[["spore/endospore_forming_forespore.html","endospore-forming forespore"]]},{"id":"GO:0043263","l":"cellulosome","na":1,"nb":1,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["other/cellulosome.html","cellulosome"]]},{"id":"GO:0045271","l":"respiratory chain complex I","na":1,"nb":1,"a":[["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"]],"b":[["energy_complex/respiratory_chain_complex_i.html","respiratory chain complex I"]]},{"id":"GO:0045273","l":"respiratory chain complex II (succinate dehydrogenase)","na":1,"nb":1,"a":[["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"]],"b":[["energy_complex/respiratory_chain_complex_ii_succinate_dehydrogenase.html","respiratory chain complex II (succinate dehydrogenase)"]]},{"id":"GO:0045275","l":"respiratory chain complex III","na":1,"nb":1,"a":[["physiology/organoheterotrophic.html","organoheterotrophic"]],"b":[["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"]]},{"id":"GO:0045277","l":"respiratory chain complex IV","na":1,"nb":1,"a":[["physiology/oxidase_activity.html","oxidase activity"]],"b":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]]},{"id":"GO:0071944","l":"cell periphery","na":1,"nb":1,"a":[["morphology/spiral_shaped.html","spiral shaped"]],"b":[["envelope/plasma_membrane.html","plasma membrane"]]},{"id":"InterPro:IPR000067","l":"","na":1,"nb":1,"a":[["morphology/lophotrichous.html","lophotrichous"]],"b":[["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"]]},{"id":"NCBITaxon:139","l":"Borreliella burgdorferi","na":1,"nb":1,"a":[["genomics/plasmid_carriage.html","plasmid carriage"]],"b":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":1,"nb":1,"a":[["morphology/s_layer.html","S-layer"]],"b":[["envelope/s_layer.html","S-layer"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":1,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["other/cellulosome.html","cellulosome"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":1,"nb":1,"a":[["physiology/alkaline_phosphatase_activity.html","alkaline phosphatase activity"]],"b":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]]},{"id":"NCBITaxon:2246","l":"Haloferax volcanii","na":1,"nb":1,"a":[["morphology/disc_shaped.html","disc shaped"]],"b":[["cytoskeleton/cetz_filament.html","CetZ filament"]]},{"id":"NCBITaxon:243233","l":"Methylococcus capsulatus Bath","na":1,"nb":1,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["membrane_organelle/methane_oxidizing_organelle.html","methane-oxidizing organelle"]]},{"id":"NCBITaxon:837","l":"Porphyromonas gingivalis","na":1,"nb":1,"a":[["morphology/black_pigmented.html","black pigmented"]],"b":[["secretion_system/type_ix_protein_secretion_system_complex.html","type IX protein secretion system complex"]]},{"id":"UniProt:P0C2S5","l":"","na":1,"nb":1,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["other/cellulosome.html","cellulosome"]]},{"id":"UniProt:P35149","l":"","na":1,"nb":1,"a":[["morphology/spore_shaped.html","spore shaped"]],"b":[["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]]},{"id":"UniProt:Q31NB3","l":"","na":1,"nb":1,"a":[["physiology/photolithoautotrophic.html","photolithoautotrophic"]],"b":[["microcompartment/carboxysome.html","carboxysome"]]},{"id":"UniProt:Q6NE59","l":"","na":1,"nb":1,"a":[["morphology/magnetosome.html","magnetosome"]],"b":[["cytoskeleton/mamk_filament.html","MamK filament"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/TraitMech--CultureMech.json b/assets/fleet/edges/TraitMech--CultureMech.json index e47e175..f7f25a2 100644 --- a/assets/fleet/edges/TraitMech--CultureMech.json +++ b/assets/fleet/edges/TraitMech--CultureMech.json @@ -1 +1 @@ -{"a":"TraitMech","b":"CultureMech","base":{"TraitMech":"https://culturebotai.github.io/TraitMech/pages/traits/","CultureMech":"https://github.com/CultureBotAI/CultureMech/blob/main/data/merge_yaml/merged/"},"n":36,"by":{"CHEBI":26,"NCBITaxon":10},"terms":[{"id":"CHEBI:16526","l":"carbon dioxide","na":30,"nb":709,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["4_yaco_media.yaml","4_yaco_media"],["8kg_4_medium.yaml","8kg_4_medium"],["ABSS2.yaml","abss2"],["ABYSSISOLIBACTER_MEDIUM.yaml","abyssisolibacter_medium"]]},{"id":"CHEBI:18276","l":"dihydrogen","na":13,"nb":231,"a":[["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/does_not_use_as_electron_donor.html","does not use as electron donor"],["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["4_yaco_media.yaml","4_yaco_media"],["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["AMMONIFEX_DEGENSII_MEDIUM.yaml","ammonifex_degensii_medium"],["AP11MH_medium.yaml","ap11mh_medium"]]},{"id":"CHEBI:17234","l":"glucose","na":9,"nb":1113,"a":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/biopolymer_degradation.html","biopolymer degradation"],["metabolism/cellulolysis.html","cellulolysis"],["metabolism/does_not_use_as_carbon_source.html","does not use as carbon source"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/starch_degradation.html","starch degradation"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mh_medium.yaml","15_mh_medium"],["15_mh_medium__b586cb85.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1_10_PYGV_MEDIUM_modified.yaml","1_10_pygv_medium_modified"],["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"]]},{"id":"CHEBI:17750","l":"glycine betaine","na":8,"nb":15,"a":[["environment/euryhaline.html","euryhaline"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/moderately_halophilic.html","moderately halophilic"],["environment/nacl_optimum_mid1.html","NaCl optimum mid1"],["environment/nacl_optimum_mid2.html","NaCl optimum mid2"],["environment/nacl_range_mid2.html","NaCl range mid2"]],"b":[["CUNICULIPLASMA_MEDIUM.yaml","cuniculiplasma_medium"],["MALEDIVIBACTER_MEDIUM.yaml","maledivibacter_medium"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"]]},{"id":"CHEBI:15361","l":"pyruvate","na":7,"nb":24,"a":[["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["ARCOBACTER_ANAEROPHILUS_MEDIUM.yaml","arcobacter_anaerophilus_medium"],["CENTENUM_MEDIUM.yaml","centenum_medium"],["CMM.yaml","cmm"],["NMM_with_pyruvate.yaml","nmm_with_pyruvate"],["ams1_pyruvate_glycine.yaml","ams1_pyruvate_glycine"],["ams1_pyruvate_glycine__08b97e38.yaml","ams1_pyruvate_glycine"]]},{"id":"CHEBI:27592","l":"ectoine","na":6,"nb":6,"a":[["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"],["environment/nacl_delta_mid1.html","NaCl delta mid1"],["environment/nacl_optimum_mid2.html","NaCl optimum mid2"],["environment/nacl_range_mid2.html","NaCl range mid2"],["environment/slightly_halophilic.html","slightly halophilic"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["modified_m63_medium_with_ectoine_and_2_5_m_nacl.yaml","modified_m63_medium_with_ectoine_and_2_5_m_nacl"]]},{"id":"CHEBI:15377","l":"water","na":4,"nb":2282,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["physiology/catalase_activity.html","catalase activity"],["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1_10_MB_agar.yaml","1_10_mb_agar"],["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"],["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"]]},{"id":"CHEBI:26833","l":"sulfur atom","na":4,"nb":153,"a":[["metabolism/disproportionation.html","Disproportionation"],["morphology/sulfur_globule.html","sulfur globule"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/photolithotrophic.html","photolithotrophic"]],"b":[["1_2_SME_MEDIUM.yaml","1_2_sme_medium"],["9K_WITH_SULFUR_MEDIUM.yaml","9k_with_sulfur_medium"],["ACIDIANUS_BRIERLEYI_MEDIUM.yaml","acidianus_brierleyi_medium"],["ACIDITHIOBACILLUS_CALDUS_MEDIUM.yaml","acidithiobacillus_caldus_medium"],["ACIDITHIOBACILLUS_MEDIUM.yaml","acidithiobacillus_medium"],["ACIDOLOBUS_ACETICUS_MEDIUM.yaml","acidolobus_aceticus_medium"]]},{"id":"CHEBI:30089","l":"acetate","na":4,"nb":31,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["AMOEBOBACTER_MEDIUM.yaml","amoebobacter_medium"],["FWAFC.yaml","fwafc"],["M9ZB_with_acetate.yaml","m9zb_with_acetate"],["MEDIUM_FOR_CHLOROBIUM_FERROOXIDANS.yaml","medium_for_chlorobium_ferrooxidans"],["NMM_with_acetate.yaml","nmm_with_acetate"],["Thauera_aminoaromatica_medium.yaml","thauera_aminoaromatica_medium"]]},{"id":"CHEBI:17997","l":"dinitrogen","na":3,"nb":903,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_tryptic_soy_broth_anaerobic.yaml","1_2_tryptic_soy_broth_anaerobic"],["480g_medium__e94698e7.yaml","480g_medium"],["8kg_4_medium.yaml","8kg_4_medium"],["ABSS2.yaml","abss2"],["ABYSSISOLIBACTER_MEDIUM.yaml","abyssisolibacter_medium"]]},{"id":"CHEBI:17790","l":"methanol","na":2,"nb":107,"a":[["physiology/methanotrophic.html","methanotrophic"],["physiology/methylotrophic.html","methylotrophic"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["2_mh_medium.yaml","2_mh_medium"],["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["ALTEROMONAS_MEDIUM.yaml","alteromonas_medium"],["BM_MEDIUM.yaml","bm_medium"]]},{"id":"CHEBI:16236","l":"ethanol","na":2,"nb":70,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]],"b":[["ACETOBACTER_PEROXYDANS_MEDIUM.yaml","acetobacter_peroxydans_medium"],["AE_BROTH.yaml","ae_broth"],["ANAEROTIGNUM_NEOPROPIONICUM_MEDIUM.yaml","anaerotignum_neopropionicum_medium"],["Acetobacter_Europaeus_Medium.yaml","acetobacter_europaeus_medium"],["BTU_MEDIUM.yaml","btu_medium"],["CLOSTRIDIUM_KLUYVERI_MEDIUM.yaml","clostridium_kluyveri_medium"]]},{"id":"CHEBI:18246","l":"(1->4)-beta-D-glucan","na":2,"nb":15,"a":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/cellulolysis.html","cellulolysis"]],"b":[["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["CLOSTRIDIUM_CELLULOVORANS_MEDIUM.yaml","clostridium_cellulovorans_medium"],["Clostridium_Cellulolytic_medium.yaml","clostridium_cellulolytic_medium"],["HALOCELLA_CELLULOLYTICA_MEDIUM.yaml","halocella_cellulolytica_medium"],["RUMINICLOSTRIDIUM_CELLOBIOPARUM_MEDIUM.yaml","ruminiclostridium_cellobioparum_medium"],["RUMINICLOSTRIDIUM_PAPYROSOLVENS_MEDIUM.yaml","ruminiclostridium_papyrosolvens_medium"]]},{"id":"CHEBI:15846","l":"NAD(+)","na":2,"nb":3,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"]],"b":[["Vulcanimicrobium_alpinus_medium.yaml","vulcanimicrobium_alpinus_medium"],["ctm_medium__057c0b18.yaml","ctm_medium"],["treponema_isopterocola_medium__e7b07692.yaml","treponema_isopterocola_medium"]]},{"id":"CHEBI:17045","l":"dinitrogen oxide","na":2,"nb":2,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["physiology/chemolithotrophic.html","chemolithotrophic"]],"b":[["PM_N2O.yaml","PM N2O"],["PM_argon75_N2O25.yaml","PM argon75 N2O25"]]},{"id":"CHEBI:26710","l":"sodium chloride","na":1,"nb":3472,"a":[["environment/halophilic.html","halophilic"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["10_mh_medium.yaml","10_mh_medium"],["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["1298.yaml","1298"],["15_mgm_medium.yaml","15_mgm_medium"]]},{"id":"CHEBI:17057","l":"cellobiose","na":1,"nb":121,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["A7_MEDIUM.yaml","a7_medium"],["ACETIVIBRIO_ALKALICELLULOSI_MEDIUM.yaml","acetivibrio_alkalicellulosi_medium"],["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["ALKALIFLEXUS_MEDIUM.yaml","alkaliflexus_medium"],["ANAEROBACTERIUM_MEDIUM.yaml","anaerobacterium_medium"],["ANAEROCELLA_MEDIUM.yaml","anaerocella_medium"]]},{"id":"CHEBI:17203","l":"L-proline","na":1,"nb":48,"a":[["environment/non_halophilic.html","non halophilic"]],"b":[["CDM_LP.yaml","cdm_lp"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MDM.yaml","mdm"],["MEIOTHERMUS_MEDIUM_R8.yaml","meiothermus_medium_r8"]]},{"id":"CHEBI:16199","l":"urea","na":1,"nb":45,"a":[["physiology/urease_activity.html","urease activity"]],"b":[["A7_MEDIUM.yaml","a7_medium"],["Agro_defined_trehalose.yaml","Agro defined trehalose"],["BACILLUS_PASTEURII_MEDIUM.yaml","bacillus_pasteurii_medium"],["BM7CO_MEDIUM.yaml","bm7co_medium"],["C41_MEDIUM.yaml","c41_medium"],["CATONELLA_UREILYTICA_MEDIUM.yaml","catonella_ureilytica_medium"]]},{"id":"CHEBI:16947","l":"citrate(3-)","na":1,"nb":31,"a":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"]],"b":[["E2_medium_with_citrate.yaml","e2_medium_with_citrate"],["M9_minimal_medium_with_citrate.yaml","m9_minimal_medium_with_citrate"],["Vogels_Medium_N.yaml","vogels_medium_n"],["aspartate_salt_schaechter_et_al.yaml","aspartate_salt_schaechter_et_al"],["batch_medium_mattanovich_et_al.yaml","batch_medium_mattanovich_et_al"],["bg11_0_015_mm_iron_shcolnick_2006.yaml","bg11_0_015_mm_iron_shcolnick_2006"]]},{"id":"CHEBI:18222","l":"xylose","na":1,"nb":14,"a":[["metabolism/xylan_degradation.html","xylan degradation"]],"b":[["COLON_EXTRACT_MEDIUM.yaml","colon_extract_medium"],["MODIFIED_CALDICELLULOSIRUPTOR_MEDIUM.yaml","modified_caldicellulosiruptor_medium"],["MRSsi.yaml","mrssi"],["Thermotoga_hypogea_medium.yaml","thermotoga_hypogea_medium"],["batch_cultivation_medium_for_a28.yaml","batch_cultivation_medium_for_a28"],["batch_cultivation_medium_for_ta1.yaml","batch_cultivation_medium_for_ta1"]]},{"id":"CHEBI:16856","l":"glutathione","na":1,"nb":11,"a":[["environment/zinc_tolerant.html","zinc tolerant"]],"b":[["CDM_LP.yaml","cdm_lp"],["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"],["Modified_D58_medium.yaml","modified_d58_medium"],["SULFOBACILLUS_DISULFIDOOXIDANS_MEDIUM.yaml","sulfobacillus_disulfidooxidans_medium"],["clostridium_thermocellum_medium__d9fc1f82.yaml","clostridium_thermocellum_medium"]]},{"id":"CHEBI:24996","l":"lactate","na":1,"nb":6,"a":[["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]],"b":[["ARCOBACTER_ANAEROPHILUS_MEDIUM.yaml","arcobacter_anaerophilus_medium"],["defined_freshwater_medium_cocl2__f0ffbcc6.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__41b1d433.yaml","defined_freshwater_medium_coso4"],["fermentation_medium_lactate_nh4cl.yaml","fermentation_medium_lactate_nh4cl"],["modified_m1_medium_with_20_mm_lactate_pinchuk_et_al.yaml","modified_m1_medium_with_20_mm_lactate_pinchuk_et_al"],["modified_m1_medium_with_lactate_and_glycine_no_nh4cl.yaml","modified_m1_medium_with_lactate_and_glycine_no_nh4cl"]]},{"id":"NCBITaxon:46632","l":"Picrophilus oshimae","na":5,"nb":1,"a":[["environment/acidophilic.html","acidophilic"],["environment/obligately_acidophilic.html","obligately acidophilic"],["environment/ph_growth_preference.html","pH growth preference"],["environment/ph_optimum_low.html","pH optimum low"],["environment/ph_range_very_low.html","pH range very low"]],"b":[["sulfolobus_medium_for_dsm_9790.yaml","sulfolobus_medium_for_dsm_9790"]]},{"id":"CHEBI:41688","l":"crystal violet","na":1,"nb":4,"a":[["morphology/gram_stain.html","gram stain"]],"b":[["1298.yaml","1298"],["ALKALINE_CELLULOSE_AGAR.yaml","alkaline_cellulose_agar"],["acido_thermophile_medium.yaml","acido_thermophile_medium"],["modified_eggerth_gagnon_medium.yaml","modified_eggerth_gagnon_medium"]]},{"id":"NCBITaxon:1148","l":"Synechocystis sp. PCC 6803","na":4,"nb":1,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/trophic_type.html","trophic type"]],"b":[["bg11__f771062f.yaml","bg11"]]},{"id":"NCBITaxon:210","l":"Helicobacter pylori","na":3,"nb":1,"a":[["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/helical_shaped.html","helical shaped"],["morphology/lophotrichous.html","lophotrichous"]],"b":[["BRUCELLA_BROTH.yaml","brucella_broth"]]},{"id":"NCBITaxon:35554","l":"Geobacter sulfurreducens","na":3,"nb":1,"a":[["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/electron_transfer.html","Electron transfer"]],"b":[["GEOBACTER_SULFURREDUCENS_MEDIUM.yaml","geobacter_sulfurreducens_medium"]]},{"id":"CHEBI:15354","l":"choline","na":1,"nb":2,"a":[["environment/euryhaline.html","euryhaline"]],"b":[["CDM_LP.yaml","cdm_lp"],["HYPHOMICROBIUM_METHYLOVORUM_MEDIUM.yaml","hyphomicrobium_methylovorum_medium"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":2,"nb":1,"a":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"]],"b":[["RHODOBACTER_SPHAEROIDES_MEDIUM.yaml","rhodobacter_sphaeroides_medium"]]},{"id":"NCBITaxon:2261","l":"Pyrococcus furiosus","na":2,"nb":1,"a":[["environment/hyperthermophilic.html","hyperthermophilic"],["environment/temperature_range_high.html","temperature range high"]],"b":[["pyrococcus_medium__6ffabef8.yaml","pyrococcus_medium"]]},{"id":"CHEBI:29125","l":"arsenate(3-)","na":1,"nb":1,"a":[["environment/arsenic_tolerant.html","arsenic tolerant"]],"b":[["HALARSENATIBACTER_MEDIUM.yaml","halarsenatibacter_medium"]]},{"id":"NCBITaxon:160233","l":"Ignicoccus hospitalis","na":1,"nb":1,"a":[["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"]],"b":[["ignicoccus_medium_for_dsm_18386.yaml","ignicoccus_medium_for_dsm_18386"]]},{"id":"NCBITaxon:43687","l":"Metallosphaera sedula","na":1,"nb":1,"a":[["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]],"b":[["sulfolobus_medium_for_dsm_5348.yaml","sulfolobus_medium_for_dsm_5348"]]},{"id":"NCBITaxon:44001","l":"Caldicellulosiruptor saccharolyticus","na":1,"nb":1,"a":[["metabolism/xylan_degradation.html","xylan degradation"]],"b":[["caldicellulosiruptor_medium_for_dsm_10319.yaml","caldicellulosiruptor_medium_for_dsm_10319"]]},{"id":"NCBITaxon:851","l":"Fusobacterium nucleatum","na":1,"nb":1,"a":[["morphology/fusiform_shaped.html","fusiform shaped"]],"b":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]]}]} \ No newline at end of file +{"a":"TraitMech","b":"CultureMech","base":{"TraitMech":"https://culturebotai.github.io/TraitMech/pages/traits/","CultureMech":"https://github.com/CultureBotAI/CultureMech/blob/main/data/merge_yaml/merged/"},"n":36,"by":{"CHEBI":26,"NCBITaxon":10},"terms":[{"id":"CHEBI:16526","l":"carbon dioxide","na":30,"nb":711,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["4_yaco_media.yaml","4_yaco_media"],["8kg_4_medium.yaml","8kg_4_medium"],["ABSS2.yaml","abss2"],["ABYSSISOLIBACTER_MEDIUM.yaml","abyssisolibacter_medium"]]},{"id":"CHEBI:18276","l":"dihydrogen","na":13,"nb":231,"a":[["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/does_not_use_as_electron_donor.html","does not use as electron donor"],["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["4_yaco_media.yaml","4_yaco_media"],["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["AMMONIFEX_DEGENSII_MEDIUM.yaml","ammonifex_degensii_medium"],["AP11MH_medium.yaml","ap11mh_medium"]]},{"id":"CHEBI:17234","l":"glucose","na":9,"nb":1113,"a":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/biopolymer_degradation.html","biopolymer degradation"],["metabolism/cellulolysis.html","cellulolysis"],["metabolism/does_not_use_as_carbon_source.html","does not use as carbon source"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/starch_degradation.html","starch degradation"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mh_medium.yaml","15_mh_medium"],["15_mh_medium__b586cb85.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"]]},{"id":"CHEBI:17750","l":"glycine betaine","na":8,"nb":15,"a":[["environment/euryhaline.html","euryhaline"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/moderately_halophilic.html","moderately halophilic"],["environment/nacl_optimum_mid1.html","NaCl optimum mid1"],["environment/nacl_optimum_mid2.html","NaCl optimum mid2"],["environment/nacl_range_mid2.html","NaCl range mid2"]],"b":[["CUNICULIPLASMA_MEDIUM.yaml","cuniculiplasma_medium"],["MALEDIVIBACTER_MEDIUM.yaml","maledivibacter_medium"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"]]},{"id":"CHEBI:15361","l":"pyruvate","na":7,"nb":24,"a":[["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["ARCOBACTER_ANAEROPHILUS_MEDIUM.yaml","arcobacter_anaerophilus_medium"],["CENTENUM_MEDIUM.yaml","centenum_medium"],["CMM.yaml","cmm"],["NMM_with_pyruvate.yaml","nmm_with_pyruvate"],["ams1_pyruvate_glycine.yaml","ams1_pyruvate_glycine"],["ams1_pyruvate_glycine__08b97e38.yaml","ams1_pyruvate_glycine"]]},{"id":"CHEBI:27592","l":"ectoine","na":6,"nb":6,"a":[["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"],["environment/nacl_delta_mid1.html","NaCl delta mid1"],["environment/nacl_optimum_mid2.html","NaCl optimum mid2"],["environment/nacl_range_mid2.html","NaCl range mid2"],["environment/slightly_halophilic.html","slightly halophilic"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["modified_m63_medium_with_ectoine_and_2_5_m_nacl.yaml","modified_m63_medium_with_ectoine_and_2_5_m_nacl"]]},{"id":"CHEBI:15377","l":"water","na":4,"nb":2283,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["physiology/catalase_activity.html","catalase activity"],["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1_10_MB_agar.yaml","1_10_mb_agar"],["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"],["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"]]},{"id":"CHEBI:26833","l":"sulfur atom","na":4,"nb":153,"a":[["metabolism/disproportionation.html","Disproportionation"],["morphology/sulfur_globule.html","sulfur globule"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/photolithotrophic.html","photolithotrophic"]],"b":[["1_2_SME_MEDIUM.yaml","1_2_sme_medium"],["9K_WITH_SULFUR_MEDIUM.yaml","9k_with_sulfur_medium"],["ACIDIANUS_BRIERLEYI_MEDIUM.yaml","acidianus_brierleyi_medium"],["ACIDITHIOBACILLUS_CALDUS_MEDIUM.yaml","acidithiobacillus_caldus_medium"],["ACIDITHIOBACILLUS_MEDIUM.yaml","acidithiobacillus_medium"],["ACIDOLOBUS_ACETICUS_MEDIUM.yaml","acidolobus_aceticus_medium"]]},{"id":"CHEBI:30089","l":"acetate","na":4,"nb":31,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["AMOEBOBACTER_MEDIUM.yaml","amoebobacter_medium"],["FWAFC.yaml","fwafc"],["M9ZB_with_acetate.yaml","m9zb_with_acetate"],["MEDIUM_FOR_CHLOROBIUM_FERROOXIDANS.yaml","medium_for_chlorobium_ferrooxidans"],["NMM_with_acetate.yaml","nmm_with_acetate"],["Thauera_aminoaromatica_medium.yaml","thauera_aminoaromatica_medium"]]},{"id":"CHEBI:17997","l":"dinitrogen","na":3,"nb":904,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_tryptic_soy_broth_anaerobic.yaml","1_2_tryptic_soy_broth_anaerobic"],["480g_medium__e94698e7.yaml","480g_medium"],["8kg_4_medium.yaml","8kg_4_medium"],["ABSS2.yaml","abss2"],["ABYSSISOLIBACTER_MEDIUM.yaml","abyssisolibacter_medium"]]},{"id":"CHEBI:17790","l":"methanol","na":2,"nb":107,"a":[["physiology/methanotrophic.html","methanotrophic"],["physiology/methylotrophic.html","methylotrophic"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["2_mh_medium.yaml","2_mh_medium"],["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["ALTEROMONAS_MEDIUM.yaml","alteromonas_medium"],["BM_MEDIUM.yaml","bm_medium"]]},{"id":"CHEBI:16236","l":"ethanol","na":2,"nb":70,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]],"b":[["ACETOBACTER_PEROXYDANS_MEDIUM.yaml","acetobacter_peroxydans_medium"],["AE_BROTH.yaml","ae_broth"],["ANAEROTIGNUM_NEOPROPIONICUM_MEDIUM.yaml","anaerotignum_neopropionicum_medium"],["Acetobacter_Europaeus_Medium.yaml","acetobacter_europaeus_medium"],["BTU_MEDIUM.yaml","btu_medium"],["CLOSTRIDIUM_KLUYVERI_MEDIUM.yaml","clostridium_kluyveri_medium"]]},{"id":"CHEBI:18246","l":"(1->4)-beta-D-glucan","na":2,"nb":15,"a":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/cellulolysis.html","cellulolysis"]],"b":[["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["CLOSTRIDIUM_CELLULOVORANS_MEDIUM.yaml","clostridium_cellulovorans_medium"],["Clostridium_Cellulolytic_medium.yaml","clostridium_cellulolytic_medium"],["HALOCELLA_CELLULOLYTICA_MEDIUM.yaml","halocella_cellulolytica_medium"],["RUMINICLOSTRIDIUM_CELLOBIOPARUM_MEDIUM.yaml","ruminiclostridium_cellobioparum_medium"],["RUMINICLOSTRIDIUM_PAPYROSOLVENS_MEDIUM.yaml","ruminiclostridium_papyrosolvens_medium"]]},{"id":"CHEBI:15846","l":"NAD(+)","na":2,"nb":3,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"]],"b":[["Vulcanimicrobium_alpinus_medium.yaml","vulcanimicrobium_alpinus_medium"],["ctm_medium__057c0b18.yaml","ctm_medium"],["treponema_isopterocola_medium__e7b07692.yaml","treponema_isopterocola_medium"]]},{"id":"CHEBI:17045","l":"dinitrogen oxide","na":2,"nb":2,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["physiology/chemolithotrophic.html","chemolithotrophic"]],"b":[["PM_N2O.yaml","PM N2O"],["PM_argon75_N2O25.yaml","PM argon75 N2O25"]]},{"id":"CHEBI:26710","l":"sodium chloride","na":1,"nb":3474,"a":[["environment/halophilic.html","halophilic"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["10_mh_medium.yaml","10_mh_medium"],["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["1298.yaml","1298"],["15_mgm_medium.yaml","15_mgm_medium"]]},{"id":"CHEBI:17057","l":"cellobiose","na":1,"nb":121,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["A7_MEDIUM.yaml","a7_medium"],["ACETIVIBRIO_ALKALICELLULOSI_MEDIUM.yaml","acetivibrio_alkalicellulosi_medium"],["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["ALKALIFLEXUS_MEDIUM.yaml","alkaliflexus_medium"],["ANAEROBACTERIUM_MEDIUM.yaml","anaerobacterium_medium"],["ANAEROCELLUM_MEDIUM.yaml","anaerocellum_medium"]]},{"id":"CHEBI:17203","l":"L-proline","na":1,"nb":48,"a":[["environment/non_halophilic.html","non halophilic"]],"b":[["CDM_LP.yaml","cdm_lp"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MDM.yaml","mdm"],["MEIOTHERMUS_MEDIUM_R8.yaml","meiothermus_medium_r8"]]},{"id":"CHEBI:16199","l":"urea","na":1,"nb":45,"a":[["physiology/urease_activity.html","urease activity"]],"b":[["A7_MEDIUM.yaml","a7_medium"],["Agro_defined_trehalose.yaml","Agro defined trehalose"],["BACILLUS_PASTEURII_MEDIUM.yaml","bacillus_pasteurii_medium"],["BM7CO_MEDIUM.yaml","bm7co_medium"],["C41_MEDIUM.yaml","c41_medium"],["CATONELLA_UREILYTICA_MEDIUM.yaml","catonella_ureilytica_medium"]]},{"id":"CHEBI:16947","l":"citrate(3-)","na":1,"nb":31,"a":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"]],"b":[["E2_medium_with_citrate.yaml","e2_medium_with_citrate"],["M9_minimal_medium_with_citrate.yaml","m9_minimal_medium_with_citrate"],["Vogels_Medium_N.yaml","vogels_medium_n"],["aspartate_salt_schaechter_et_al.yaml","aspartate_salt_schaechter_et_al"],["batch_medium_mattanovich_et_al.yaml","batch_medium_mattanovich_et_al"],["bg11_0_015_mm_iron_shcolnick_2006.yaml","bg11_0_015_mm_iron_shcolnick_2006"]]},{"id":"CHEBI:18222","l":"xylose","na":1,"nb":14,"a":[["metabolism/xylan_degradation.html","xylan degradation"]],"b":[["COLON_EXTRACT_MEDIUM.yaml","colon_extract_medium"],["MODIFIED_CALDICELLULOSIRUPTOR_MEDIUM.yaml","modified_caldicellulosiruptor_medium"],["MRSsi.yaml","mrssi"],["Thermotoga_hypogea_medium.yaml","thermotoga_hypogea_medium"],["batch_cultivation_medium_for_a28.yaml","batch_cultivation_medium_for_a28"],["batch_cultivation_medium_for_ta1.yaml","batch_cultivation_medium_for_ta1"]]},{"id":"CHEBI:16856","l":"glutathione","na":1,"nb":11,"a":[["environment/zinc_tolerant.html","zinc tolerant"]],"b":[["CDM_LP.yaml","cdm_lp"],["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"],["Modified_D58_medium.yaml","modified_d58_medium"],["SULFOBACILLUS_DISULFIDOOXIDANS_MEDIUM.yaml","sulfobacillus_disulfidooxidans_medium"],["clostridium_thermocellum_medium__d9fc1f82.yaml","clostridium_thermocellum_medium"]]},{"id":"CHEBI:24996","l":"lactate","na":1,"nb":6,"a":[["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]],"b":[["ARCOBACTER_ANAEROPHILUS_MEDIUM.yaml","arcobacter_anaerophilus_medium"],["defined_freshwater_medium_cocl2__f0ffbcc6.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__41b1d433.yaml","defined_freshwater_medium_coso4"],["fermentation_medium_lactate_nh4cl.yaml","fermentation_medium_lactate_nh4cl"],["modified_m1_medium_with_20_mm_lactate_pinchuk_et_al.yaml","modified_m1_medium_with_20_mm_lactate_pinchuk_et_al"],["modified_m1_medium_with_lactate_and_glycine_no_nh4cl.yaml","modified_m1_medium_with_lactate_and_glycine_no_nh4cl"]]},{"id":"NCBITaxon:46632","l":"Picrophilus oshimae","na":5,"nb":1,"a":[["environment/acidophilic.html","acidophilic"],["environment/obligately_acidophilic.html","obligately acidophilic"],["environment/ph_growth_preference.html","pH growth preference"],["environment/ph_optimum_low.html","pH optimum low"],["environment/ph_range_very_low.html","pH range very low"]],"b":[["sulfolobus_medium_for_dsm_9790.yaml","sulfolobus_medium_for_dsm_9790"]]},{"id":"CHEBI:41688","l":"crystal violet","na":1,"nb":4,"a":[["morphology/gram_stain.html","gram stain"]],"b":[["1298.yaml","1298"],["ALKALINE_CELLULOSE_AGAR.yaml","alkaline_cellulose_agar"],["acido_thermophile_medium.yaml","acido_thermophile_medium"],["modified_eggerth_gagnon_medium.yaml","modified_eggerth_gagnon_medium"]]},{"id":"NCBITaxon:1148","l":"Synechocystis sp. PCC 6803","na":4,"nb":1,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/trophic_type.html","trophic type"]],"b":[["bg11__f771062f.yaml","bg11"]]},{"id":"NCBITaxon:210","l":"Helicobacter pylori","na":3,"nb":1,"a":[["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/helical_shaped.html","helical shaped"],["morphology/lophotrichous.html","lophotrichous"]],"b":[["BRUCELLA_BROTH.yaml","brucella_broth"]]},{"id":"NCBITaxon:35554","l":"Geobacter sulfurreducens","na":3,"nb":1,"a":[["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/electron_transfer.html","Electron transfer"]],"b":[["GEOBACTER_SULFURREDUCENS_MEDIUM.yaml","geobacter_sulfurreducens_medium"]]},{"id":"CHEBI:15354","l":"choline","na":1,"nb":2,"a":[["environment/euryhaline.html","euryhaline"]],"b":[["CDM_LP.yaml","cdm_lp"],["HYPHOMICROBIUM_METHYLOVORUM_MEDIUM.yaml","hyphomicrobium_methylovorum_medium"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":2,"nb":1,"a":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"]],"b":[["RHODOBACTER_SPHAEROIDES_MEDIUM.yaml","rhodobacter_sphaeroides_medium"]]},{"id":"NCBITaxon:2261","l":"Pyrococcus furiosus","na":2,"nb":1,"a":[["environment/hyperthermophilic.html","hyperthermophilic"],["environment/temperature_range_high.html","temperature range high"]],"b":[["pyrococcus_medium__6ffabef8.yaml","pyrococcus_medium"]]},{"id":"CHEBI:29125","l":"arsenate(3-)","na":1,"nb":1,"a":[["environment/arsenic_tolerant.html","arsenic tolerant"]],"b":[["HALARSENATIBACTER_MEDIUM.yaml","halarsenatibacter_medium"]]},{"id":"NCBITaxon:160233","l":"Ignicoccus hospitalis","na":1,"nb":1,"a":[["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"]],"b":[["ignicoccus_medium_for_dsm_18386.yaml","ignicoccus_medium_for_dsm_18386"]]},{"id":"NCBITaxon:43687","l":"Metallosphaera sedula","na":1,"nb":1,"a":[["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]],"b":[["sulfolobus_medium_for_dsm_5348.yaml","sulfolobus_medium_for_dsm_5348"]]},{"id":"NCBITaxon:44001","l":"Caldicellulosiruptor saccharolyticus","na":1,"nb":1,"a":[["metabolism/xylan_degradation.html","xylan degradation"]],"b":[["caldicellulosiruptor_medium_for_dsm_10319.yaml","caldicellulosiruptor_medium_for_dsm_10319"]]},{"id":"NCBITaxon:851","l":"Fusobacterium nucleatum","na":1,"nb":1,"a":[["morphology/fusiform_shaped.html","fusiform shaped"]],"b":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/TraitMech--MediaIngredientMech.json b/assets/fleet/edges/TraitMech--MediaIngredientMech.json index c1153b1..d202c96 100644 --- a/assets/fleet/edges/TraitMech--MediaIngredientMech.json +++ b/assets/fleet/edges/TraitMech--MediaIngredientMech.json @@ -1 +1 @@ -{"a":"TraitMech","b":"MediaIngredientMech","base":{"TraitMech":"https://culturebotai.github.io/TraitMech/pages/traits/","MediaIngredientMech":"https://github.com/CultureBotAI/MediaIngredientMech/blob/main/data/ingredients/"},"n":58,"by":{"CHEBI":58},"terms":[{"id":"CHEBI:17234","l":"glucose","na":9,"nb":23,"a":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/biopolymer_degradation.html","biopolymer degradation"],["metabolism/cellulolysis.html","cellulolysis"],["metabolism/does_not_use_as_carbon_source.html","does not use as carbon source"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/starch_degradation.html","starch degradation"]],"b":[["mapped/Corn_Steep_Liquor_Glucose_Fumarate.yaml","Corn Steep Liquor + Glucose + Fumarate"],["mapped/Fastidious_Anaerobe_Broth_With_Meat_Granules.yaml","Fastidious Anaerobe Broth With Meat Granules"],["mapped/GYPS.yaml","GYPS"],["mapped/Glucose.yaml","Glucose"],["mapped/Glucose_2.yaml","glucose"],["mapped/Glucose_Acetate.yaml","Glucose + Acetate"]]},{"id":"CHEBI:18276","l":"dihydrogen","na":13,"nb":8,"a":[["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/does_not_use_as_electron_donor.html","does not use as electron donor"],["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"]],"b":[["mapped/H23-methyl_Mercaptopropionate.yaml","H2+3-methyl Mercaptopropionate"],["mapped/H2_CO2.yaml","H2 + CO2"],["mapped/H2dimethylsulfide.yaml","H2+dimethylsulfide"],["mapped/H2methanol.yaml","H2+methanol"],["mapped/H2tetramethylammonium.yaml","H2+tetramethylammonium"],["mapped/H2trimethylamine.yaml","H2+trimethylamine"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":30,"nb":7,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"]],"b":[["mapped/1-butanolCO2.yaml","1-butanol+CO2"],["mapped/1-propanolCO2.yaml","1-propanol+CO2"],["mapped/2-butanolCO2.yaml","2-butanol+CO2"],["mapped/2-propanolCO2.yaml","2-propanol+CO2"],["mapped/Carbon_dioxide_gas.yaml","Carbon dioxide gas"],["mapped/CyclopentanolCO2.yaml","Cyclopentanol+CO2"]]},{"id":"CHEBI:15377","l":"water","na":4,"nb":12,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["physiology/catalase_activity.html","catalase activity"],["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/Brain_Heart_Infusion_Broth.yaml","Brain heart infusion broth"],["mapped/Distilled_Water.yaml","Distilled water"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"]]},{"id":"CHEBI:30089","l":"acetate","na":4,"nb":3,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["mapped/Acetate.yaml","Acetate"],["mapped/Acetate_Carbon_Source.yaml","Acetate (carbon source)"],["mapped/Glucose_Acetate.yaml","Glucose + Acetate"]]},{"id":"CHEBI:17750","l":"glycine betaine","na":8,"nb":2,"a":[["environment/euryhaline.html","euryhaline"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/moderately_halophilic.html","moderately halophilic"],["environment/nacl_optimum_mid1.html","NaCl optimum mid1"],["environment/nacl_optimum_mid2.html","NaCl optimum mid2"],["environment/nacl_range_mid2.html","NaCl range mid2"]],"b":[["mapped/Betaine_Hydrochloride.yaml","Betaine hydrochloride"],["mapped/Betaine_X_H2o.yaml","Betaine x H2O"]]},{"id":"CHEBI:27592","l":"ectoine","na":6,"nb":2,"a":[["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"],["environment/nacl_delta_mid1.html","NaCl delta mid1"],["environment/nacl_optimum_mid2.html","NaCl optimum mid2"],["environment/nacl_range_mid2.html","NaCl range mid2"],["environment/slightly_halophilic.html","slightly halophilic"]],"b":[["mapped/Ectoine.yaml","Ectoine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:26833","l":"sulfur atom","na":4,"nb":2,"a":[["metabolism/disproportionation.html","Disproportionation"],["morphology/sulfur_globule.html","sulfur globule"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/photolithotrophic.html","photolithotrophic"]],"b":[["mapped/Sulfur.yaml","Sulfur"],["mapped/Yeast_Extract_Sulfur.yaml","Yeast Extract + Sulfur"]]},{"id":"CHEBI:17790","l":"methanol","na":2,"nb":3,"a":[["physiology/methanotrophic.html","methanotrophic"],["physiology/methylotrophic.html","methylotrophic"]],"b":[["mapped/Formatemethanol.yaml","Formate+methanol"],["mapped/H2methanol.yaml","H2+methanol"],["mapped/Methanol.yaml","Methanol"]]},{"id":"CHEBI:29034","l":"iron(3+)","na":3,"nb":2,"a":[["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/iron_oxidation.html","iron oxidation"],["metabolism/photoferrotrophy.html","photoferrotrophy"]],"b":[["mapped/Ferric_Iron.yaml","Ferric Iron"],["mapped/Ferrous_Ion.yaml","Ferrous Ion"]]},{"id":"CHEBI:16136","l":"hydrogen sulfide","na":2,"nb":2,"a":[["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/photolithotrophic.html","photolithotrophic"]],"b":[["mapped/Hydrogen_Sulfide.yaml","Hydrogen sulfide"],["mapped/Sulfur.yaml","Sulfur"]]},{"id":"CHEBI:15379","l":"dioxygen","na":25,"nb":1,"a":[["environment/aerobic.html","aerobic"],["environment/aerotolerant.html","aerotolerant"],["environment/anaerobic.html","anaerobic"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_aerobic.html","facultatively aerobic"],["environment/facultatively_anaerobic.html","facultatively anaerobic"]],"b":[["mapped/Dioxygen.yaml","Dioxygen"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":11,"nb":1,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"],["morphology/carboxysome.html","carboxysome"]],"b":[["mapped/Bicarbonate.yaml","Bicarbonate"]]},{"id":"CHEBI:26710","l":"sodium chloride","na":1,"nb":11,"a":[["environment/halophilic.html","halophilic"]],"b":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/Brain_Heart_Infusion_Broth.yaml","Brain heart infusion broth"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Mineral_3B_Solution.yaml","Mineral 3B solution"],["mapped/Mineral_3B_Solution_Minus_Nitrogen.yaml","Mineral 3B solution minus Nitrogen"]]},{"id":"CHEBI:17632","l":"nitrate","na":9,"nb":1,"a":[["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"],["metabolism/does_not_use_as_electron_acceptor.html","does not use as electron acceptor"]],"b":[["mapped/Nitrate.yaml","Nitrate"]]},{"id":"CHEBI:15740","l":"formate","na":1,"nb":8,"a":[["metabolism/syntrophy.html","Syntrophy"]],"b":[["mapped/Formate.yaml","Formate"],["mapped/Formate3-methyl_Mercaptopropionate.yaml","Formate+3-methyl Mercaptopropionate"],["mapped/Formatedimethylsulfide.yaml","Formate+dimethylsulfide"],["mapped/Formatemethanol.yaml","Formate+methanol"],["mapped/Formatetetramethylammonium.yaml","Formate+tetramethylammonium"],["mapped/Formatetrimethylamine.yaml","Formate+trimethylamine"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":8,"nb":1,"a":[["environment/aerotolerant.html","aerotolerant"],["environment/microaerophilic.html","microaerophilic"],["environment/microaerotolerant.html","microaerotolerant"],["environment/obligately_aerobic.html","obligately aerobic"],["environment/obligately_anaerobic.html","obligately anaerobic"],["environment/oxygen_preference.html","oxygen preference"]],"b":[["mapped/Hydrogen_Peroxide.yaml","Hydrogen peroxide"]]},{"id":"CHEBI:15361","l":"pyruvate","na":7,"nb":1,"a":[["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["mapped/Pyruvate.yaml","Pyruvate"]]},{"id":"CHEBI:16189","l":"sulfate","na":7,"nb":1,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"],["metabolism/disproportionation.html","Disproportionation"],["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"],["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"]],"b":[["mapped/Sulfate.yaml","Sulfate"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":7,"nb":1,"a":[["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/iron_oxidation.html","iron oxidation"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"]],"b":[["mapped/Ferrous_Ion.yaml","Ferrous Ion"]]},{"id":"CHEBI:29101","l":"sodium(1+)","na":7,"nb":1,"a":[["environment/alkaphilic.html","alkaliphilic"],["environment/euryhaline.html","euryhaline"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/nacl_delta_mid2.html","NaCl delta mid2"]],"b":[["mapped/Sodium%28%29.yaml","Sodium(+)"]]},{"id":"CHEBI:16134","l":"ammonia","na":6,"nb":1,"a":[["environment/ph_delta_mid1.html","pH delta mid1"],["metabolism/nitrogen_fixation.html","nitrogen fixation"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"],["physiology/urease_activity.html","urease activity"]],"b":[["mapped/Ammonia.yaml","Ammonia"]]},{"id":"CHEBI:16301","l":"nitrite","na":5,"nb":1,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["mapped/Nitrite.yaml","Nitrite"]]},{"id":"CHEBI:17057","l":"cellobiose","na":1,"nb":4,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["mapped/Cellobiose.yaml","Cellobiose"],["mapped/Glucose_Cellobiose_Starch_Trypticase_Yeast_Extract.yaml","Glucose + Cellobiose + Starch + Trypticase + Yeast Extract"],["mapped/Glucose_Maltose_Cellobiose_Starch_Glycerol.yaml","Glucose + Maltose + Cellobiose + Starch + Glycerol"],["mapped/PY-cellobiose.yaml","PY-cellobiose"]]},{"id":"CHEBI:17245","l":"carbon monoxide","na":4,"nb":1,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["physiology/carboxydotrophic.html","carboxydotrophic"],["physiology/oxidase_activity.html","oxidase activity"]],"b":[["mapped/Carbon_Monoxide.yaml","Carbon Monoxide"]]},{"id":"CHEBI:16183","l":"methane","na":3,"nb":1,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/methanogenesis.html","Methanogenesis"],["physiology/methanotrophic.html","methanotrophic"]],"b":[["mapped/Methane.yaml","methane"]]},{"id":"CHEBI:17029","l":"chitin","na":1,"nb":3,"a":[["metabolism/chitinolysis.html","chitinolysis"]],"b":[["mapped/Chitin.yaml","Chitin"],["unmapped/Chitin_From_Shrimp_Shells.yaml","Chitin from shrimp shells"],["unmapped/Colloidal_Chitin.yaml","Colloidal chitin"]]},{"id":"CHEBI:17203","l":"L-proline","na":1,"nb":3,"a":[["environment/non_halophilic.html","non halophilic"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-proline.yaml","L-Proline"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:17997","l":"dinitrogen","na":3,"nb":1,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["mapped/Nitrogen_gas.yaml","Nitrogen gas"]]},{"id":"CHEBI:15354","l":"choline","na":1,"nb":2,"a":[["environment/euryhaline.html","euryhaline"]],"b":[["mapped/Choline.yaml","Choline"],["unmapped/Cholinium_Alpha_Ketoglutarate.yaml","Cholinium alpha ketoglutarate"]]},{"id":"CHEBI:15846","l":"NAD(+)","na":2,"nb":1,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"]],"b":[["mapped/Beta-nad.yaml","beta-NAD"]]},{"id":"CHEBI:16236","l":"ethanol","na":2,"nb":1,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]],"b":[["mapped/Ethanol.yaml","Ethanol"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":2,"nb":1,"a":[["physiology/methanotrophic.html","methanotrophic"],["physiology/methylotrophic.html","methylotrophic"]],"b":[["mapped/Formaldehyde.yaml","Formaldehyde"]]},{"id":"CHEBI:16856","l":"glutathione","na":1,"nb":2,"a":[["environment/zinc_tolerant.html","zinc tolerant"]],"b":[["mapped/Glutathione.yaml","Glutathione"],["mapped/L-Glutathione.yaml","L-Glutathione"]]},{"id":"CHEBI:17045","l":"dinitrogen oxide","na":2,"nb":1,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["physiology/chemolithotrophic.html","chemolithotrophic"]],"b":[["mapped/Nitrous_Oxide.yaml","nitrous oxide"]]},{"id":"CHEBI:18222","l":"xylose","na":1,"nb":2,"a":[["metabolism/xylan_degradation.html","xylan degradation"]],"b":[["mapped/Glucose_Xylose.yaml","Glucose + Xylose"],["mapped/Xylose.yaml","Xylose"]]},{"id":"CHEBI:18246","l":"(1->4)-beta-D-glucan","na":2,"nb":1,"a":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/cellulolysis.html","cellulolysis"]],"b":[["mapped/Cellulose.yaml","Cellulose"]]},{"id":"CHEBI:18420","l":"","na":1,"nb":2,"a":[["morphology/cell_width_small.html","cell width small"]],"b":[["mapped/Magnesium%282%29.yaml","Magnesium(2+)"],["mapped/Magnesium.yaml","Magnesium"]]},{"id":"CHEBI:24996","l":"lactate","na":1,"nb":2,"a":[["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]],"b":[["mapped/Glucose_Lactate.yaml","Glucose + Lactate"],["mapped/Lactate.yaml","Lactate"]]},{"id":"CHEBI:6457","l":"lignin","na":2,"nb":1,"a":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/biopolymer_degradation.html","biopolymer degradation"]],"b":[["mapped/Lignin.yaml","Lignin"]]},{"id":"CHEBI:15343","l":"acetaldehyde","na":1,"nb":1,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"]],"b":[["mapped/Acetaldehyde.yaml","acetaldehyde"]]},{"id":"CHEBI:16199","l":"urea","na":1,"nb":1,"a":[["physiology/urease_activity.html","urease activity"]],"b":[["mapped/Urea.yaml","Urea"]]},{"id":"CHEBI:16412","l":"","na":1,"nb":1,"a":[["morphology/gram_negative.html","gram negative"]],"b":[["mapped/Lipopolysaccharide.yaml","Lipopolysaccharide"]]},{"id":"CHEBI:16510","l":"","na":1,"nb":1,"a":[["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"]],"b":[["mapped/3-Hydroxypropionate.yaml","3-Hydroxypropionate"]]},{"id":"CHEBI:16724","l":"4-hydroxybutyrate","na":1,"nb":1,"a":[["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]],"b":[["mapped/4-hydroxybutyrate.yaml","4-hydroxybutyrate"]]},{"id":"CHEBI:16947","l":"citrate(3-)","na":1,"nb":1,"a":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"]],"b":[["mapped/Citrate.yaml","Citrate"]]},{"id":"CHEBI:17272","l":"propionate","na":1,"nb":1,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["mapped/Propionate.yaml","Propionate"]]},{"id":"CHEBI:17968","l":"butyrate","na":1,"nb":1,"a":[["ecology/gut_associated.html","gut-associated"]],"b":[["mapped/Butyrate.yaml","Butyrate"]]},{"id":"CHEBI:23044","l":"","na":1,"nb":1,"a":[["physiology/phototrophic.html","phototrophic"]],"b":[["mapped/Carotenoid.yaml","Carotenoid"]]},{"id":"CHEBI:25105","l":"","na":1,"nb":1,"a":[["physiology/antibiotic_resistance.html","antibiotic resistance"]],"b":[["mapped/Macrolide_Antibiotic.yaml","Macrolide Antibiotic"]]},{"id":"CHEBI:26672","l":"siderophore","na":1,"nb":1,"a":[["physiology/siderophore_production.html","siderophore production"]],"b":[["mapped/Siderophore.yaml","Siderophore"]]},{"id":"CHEBI:28908","l":"bambermycin","na":1,"nb":1,"a":[["morphology/bacillus_shaped.html","bacillus shaped"]],"b":[["mapped/Flavomycin.yaml","Flavomycin"]]},{"id":"CHEBI:28938","l":"ammonium","na":1,"nb":1,"a":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]],"b":[["mapped/Ammonium.yaml","Ammonium"]]},{"id":"CHEBI:29125","l":"arsenate(3-)","na":1,"nb":1,"a":[["environment/arsenic_tolerant.html","arsenic tolerant"]],"b":[["mapped/Arsenate.yaml","Arsenate"]]},{"id":"CHEBI:29806","l":"fumarate(2-)","na":1,"nb":1,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["mapped/Fumarate.yaml","Fumarate"]]},{"id":"CHEBI:41688","l":"crystal violet","na":1,"nb":1,"a":[["morphology/gram_stain.html","gram stain"]],"b":[["mapped/Crystal_Violet.yaml","Crystal Violet"]]},{"id":"CHEBI:46837","l":"","na":1,"nb":1,"a":[["morphology/spore_forming.html","spore forming"]],"b":[["mapped/Dipicolinic_Acid.yaml","Dipicolinic Acid"]]},{"id":"CHEBI:89634","l":"Melanin","na":1,"nb":1,"a":[["morphology/white_pigmented.html","white pigmented"]],"b":[["mapped/Melanin.yaml","Melanin"]]}]} \ No newline at end of file +{"a":"TraitMech","b":"MediaIngredientMech","base":{"TraitMech":"https://culturebotai.github.io/TraitMech/pages/traits/","MediaIngredientMech":"https://github.com/CultureBotAI/MediaIngredientMech/blob/main/data/ingredients/"},"n":59,"by":{"CHEBI":59},"terms":[{"id":"CHEBI:17234","l":"glucose","na":9,"nb":23,"a":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/biopolymer_degradation.html","biopolymer degradation"],["metabolism/cellulolysis.html","cellulolysis"],["metabolism/does_not_use_as_carbon_source.html","does not use as carbon source"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/starch_degradation.html","starch degradation"]],"b":[["mapped/Corn_Steep_Liquor_Glucose_Fumarate.yaml","Corn Steep Liquor + Glucose + Fumarate"],["mapped/Fastidious_Anaerobe_Broth_With_Meat_Granules.yaml","Fastidious Anaerobe Broth With Meat Granules"],["mapped/GYPS.yaml","GYPS"],["mapped/Glucose.yaml","Glucose"],["mapped/Glucose_2.yaml","glucose"],["mapped/Glucose_Acetate.yaml","Glucose + Acetate"]]},{"id":"CHEBI:18276","l":"dihydrogen","na":13,"nb":8,"a":[["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/does_not_use_as_electron_donor.html","does not use as electron donor"],["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"]],"b":[["mapped/H23-methyl_Mercaptopropionate.yaml","H2+3-methyl Mercaptopropionate"],["mapped/H2_CO2.yaml","H2 + CO2"],["mapped/H2dimethylsulfide.yaml","H2+dimethylsulfide"],["mapped/H2methanol.yaml","H2+methanol"],["mapped/H2tetramethylammonium.yaml","H2+tetramethylammonium"],["mapped/H2trimethylamine.yaml","H2+trimethylamine"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":30,"nb":7,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"]],"b":[["mapped/1-butanolCO2.yaml","1-butanol+CO2"],["mapped/1-propanolCO2.yaml","1-propanol+CO2"],["mapped/2-butanolCO2.yaml","2-butanol+CO2"],["mapped/2-propanolCO2.yaml","2-propanol+CO2"],["mapped/Carbon_dioxide_gas.yaml","Carbon dioxide gas"],["mapped/CyclopentanolCO2.yaml","Cyclopentanol+CO2"]]},{"id":"CHEBI:15377","l":"water","na":4,"nb":12,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["physiology/catalase_activity.html","catalase activity"],["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/Brain_Heart_Infusion_Broth.yaml","Brain heart infusion broth"],["mapped/Distilled_Water.yaml","Distilled water"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"]]},{"id":"CHEBI:30089","l":"acetate","na":4,"nb":3,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["mapped/Acetate.yaml","Acetate"],["mapped/Acetate_Carbon_Source.yaml","Acetate (carbon source)"],["mapped/Glucose_Acetate.yaml","Glucose + Acetate"]]},{"id":"CHEBI:17750","l":"glycine betaine","na":8,"nb":2,"a":[["environment/euryhaline.html","euryhaline"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/moderately_halophilic.html","moderately halophilic"],["environment/nacl_optimum_mid1.html","NaCl optimum mid1"],["environment/nacl_optimum_mid2.html","NaCl optimum mid2"],["environment/nacl_range_mid2.html","NaCl range mid2"]],"b":[["mapped/Betaine_Hydrochloride.yaml","Betaine hydrochloride"],["mapped/Betaine_X_H2o.yaml","Betaine x H2O"]]},{"id":"CHEBI:27592","l":"ectoine","na":6,"nb":2,"a":[["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"],["environment/nacl_delta_mid1.html","NaCl delta mid1"],["environment/nacl_optimum_mid2.html","NaCl optimum mid2"],["environment/nacl_range_mid2.html","NaCl range mid2"],["environment/slightly_halophilic.html","slightly halophilic"]],"b":[["mapped/Ectoine.yaml","Ectoine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:26833","l":"sulfur atom","na":4,"nb":2,"a":[["metabolism/disproportionation.html","Disproportionation"],["morphology/sulfur_globule.html","sulfur globule"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/photolithotrophic.html","photolithotrophic"]],"b":[["mapped/Sulfur.yaml","Sulfur"],["mapped/Yeast_Extract_Sulfur.yaml","Yeast Extract + Sulfur"]]},{"id":"CHEBI:17790","l":"methanol","na":2,"nb":3,"a":[["physiology/methanotrophic.html","methanotrophic"],["physiology/methylotrophic.html","methylotrophic"]],"b":[["mapped/Formatemethanol.yaml","Formate+methanol"],["mapped/H2methanol.yaml","H2+methanol"],["mapped/Methanol.yaml","Methanol"]]},{"id":"CHEBI:29034","l":"iron(3+)","na":3,"nb":2,"a":[["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/iron_oxidation.html","iron oxidation"],["metabolism/photoferrotrophy.html","photoferrotrophy"]],"b":[["mapped/Ferric_Iron.yaml","Ferric Iron"],["mapped/Ferrous_Ion.yaml","Ferrous Ion"]]},{"id":"CHEBI:16136","l":"hydrogen sulfide","na":2,"nb":2,"a":[["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/photolithotrophic.html","photolithotrophic"]],"b":[["mapped/Hydrogen_Sulfide.yaml","Hydrogen sulfide"],["mapped/Sulfur.yaml","Sulfur"]]},{"id":"CHEBI:15379","l":"dioxygen","na":25,"nb":1,"a":[["environment/aerobic.html","aerobic"],["environment/aerotolerant.html","aerotolerant"],["environment/anaerobic.html","anaerobic"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_aerobic.html","facultatively aerobic"],["environment/facultatively_anaerobic.html","facultatively anaerobic"]],"b":[["mapped/Dioxygen.yaml","Dioxygen"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":11,"nb":1,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"],["morphology/carboxysome.html","carboxysome"]],"b":[["mapped/Bicarbonate.yaml","Bicarbonate"]]},{"id":"CHEBI:26710","l":"sodium chloride","na":1,"nb":11,"a":[["environment/halophilic.html","halophilic"]],"b":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/Brain_Heart_Infusion_Broth.yaml","Brain heart infusion broth"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Mineral_3B_Solution.yaml","Mineral 3B solution"],["mapped/Mineral_3B_Solution_Minus_Nitrogen.yaml","Mineral 3B solution minus Nitrogen"]]},{"id":"CHEBI:17632","l":"nitrate","na":9,"nb":1,"a":[["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"],["metabolism/does_not_use_as_electron_acceptor.html","does not use as electron acceptor"]],"b":[["mapped/Nitrate.yaml","Nitrate"]]},{"id":"CHEBI:15740","l":"formate","na":1,"nb":8,"a":[["metabolism/syntrophy.html","Syntrophy"]],"b":[["mapped/Formate.yaml","Formate"],["mapped/Formate3-methyl_Mercaptopropionate.yaml","Formate+3-methyl Mercaptopropionate"],["mapped/Formatedimethylsulfide.yaml","Formate+dimethylsulfide"],["mapped/Formatemethanol.yaml","Formate+methanol"],["mapped/Formatetetramethylammonium.yaml","Formate+tetramethylammonium"],["mapped/Formatetrimethylamine.yaml","Formate+trimethylamine"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":8,"nb":1,"a":[["environment/aerotolerant.html","aerotolerant"],["environment/microaerophilic.html","microaerophilic"],["environment/microaerotolerant.html","microaerotolerant"],["environment/obligately_aerobic.html","obligately aerobic"],["environment/obligately_anaerobic.html","obligately anaerobic"],["environment/oxygen_preference.html","oxygen preference"]],"b":[["mapped/Hydrogen_Peroxide.yaml","Hydrogen peroxide"]]},{"id":"CHEBI:15361","l":"pyruvate","na":7,"nb":1,"a":[["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["mapped/Pyruvate.yaml","Pyruvate"]]},{"id":"CHEBI:16189","l":"sulfate","na":7,"nb":1,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"],["metabolism/disproportionation.html","Disproportionation"],["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"],["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"]],"b":[["mapped/Sulfate.yaml","Sulfate"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":7,"nb":1,"a":[["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/iron_oxidation.html","iron oxidation"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"]],"b":[["mapped/Ferrous_Ion.yaml","Ferrous Ion"]]},{"id":"CHEBI:29101","l":"sodium(1+)","na":7,"nb":1,"a":[["environment/alkaphilic.html","alkaliphilic"],["environment/euryhaline.html","euryhaline"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/nacl_delta_mid2.html","NaCl delta mid2"]],"b":[["mapped/Sodium%28%29.yaml","Sodium(+)"]]},{"id":"CHEBI:16134","l":"ammonia","na":6,"nb":1,"a":[["environment/ph_delta_mid1.html","pH delta mid1"],["metabolism/nitrogen_fixation.html","nitrogen fixation"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"],["physiology/urease_activity.html","urease activity"]],"b":[["mapped/Ammonia.yaml","Ammonia"]]},{"id":"CHEBI:16301","l":"nitrite","na":5,"nb":1,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["mapped/Nitrite.yaml","Nitrite"]]},{"id":"CHEBI:17057","l":"cellobiose","na":1,"nb":4,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["mapped/Cellobiose.yaml","Cellobiose"],["mapped/Glucose_Cellobiose_Starch_Trypticase_Yeast_Extract.yaml","Glucose + Cellobiose + Starch + Trypticase + Yeast Extract"],["mapped/Glucose_Maltose_Cellobiose_Starch_Glycerol.yaml","Glucose + Maltose + Cellobiose + Starch + Glycerol"],["mapped/PY-cellobiose.yaml","PY-cellobiose"]]},{"id":"CHEBI:17245","l":"carbon monoxide","na":4,"nb":1,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["physiology/carboxydotrophic.html","carboxydotrophic"],["physiology/oxidase_activity.html","oxidase activity"]],"b":[["mapped/Carbon_Monoxide.yaml","Carbon Monoxide"]]},{"id":"CHEBI:16183","l":"methane","na":3,"nb":1,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/methanogenesis.html","Methanogenesis"],["physiology/methanotrophic.html","methanotrophic"]],"b":[["mapped/Methane.yaml","methane"]]},{"id":"CHEBI:17029","l":"chitin","na":1,"nb":3,"a":[["metabolism/chitinolysis.html","chitinolysis"]],"b":[["mapped/Chitin.yaml","Chitin"],["unmapped/Chitin_From_Shrimp_Shells.yaml","Chitin from shrimp shells"],["unmapped/Colloidal_Chitin.yaml","Colloidal chitin"]]},{"id":"CHEBI:17203","l":"L-proline","na":1,"nb":3,"a":[["environment/non_halophilic.html","non halophilic"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-proline.yaml","L-Proline"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:17997","l":"dinitrogen","na":3,"nb":1,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["mapped/Nitrogen_gas.yaml","Nitrogen gas"]]},{"id":"CHEBI:15354","l":"choline","na":1,"nb":2,"a":[["environment/euryhaline.html","euryhaline"]],"b":[["mapped/Choline.yaml","Choline"],["unmapped/Cholinium_Alpha_Ketoglutarate.yaml","Cholinium alpha ketoglutarate"]]},{"id":"CHEBI:15846","l":"NAD(+)","na":2,"nb":1,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"]],"b":[["mapped/Beta-nad.yaml","beta-NAD"]]},{"id":"CHEBI:16236","l":"ethanol","na":2,"nb":1,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]],"b":[["mapped/Ethanol.yaml","Ethanol"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":2,"nb":1,"a":[["physiology/methanotrophic.html","methanotrophic"],["physiology/methylotrophic.html","methylotrophic"]],"b":[["mapped/Formaldehyde.yaml","Formaldehyde"]]},{"id":"CHEBI:16856","l":"glutathione","na":1,"nb":2,"a":[["environment/zinc_tolerant.html","zinc tolerant"]],"b":[["mapped/Glutathione.yaml","Glutathione"],["mapped/L-Glutathione.yaml","L-Glutathione"]]},{"id":"CHEBI:16947","l":"citrate(3-)","na":1,"nb":2,"a":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"]],"b":[["mapped/Citrate.yaml","Citrate"],["mapped/Citric_Acid.yaml","Citric acid"]]},{"id":"CHEBI:17045","l":"dinitrogen oxide","na":2,"nb":1,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["physiology/chemolithotrophic.html","chemolithotrophic"]],"b":[["mapped/Nitrous_Oxide.yaml","nitrous oxide"]]},{"id":"CHEBI:18222","l":"xylose","na":1,"nb":2,"a":[["metabolism/xylan_degradation.html","xylan degradation"]],"b":[["mapped/Glucose_Xylose.yaml","Glucose + Xylose"],["mapped/Xylose.yaml","Xylose"]]},{"id":"CHEBI:18246","l":"(1->4)-beta-D-glucan","na":2,"nb":1,"a":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/cellulolysis.html","cellulolysis"]],"b":[["mapped/Cellulose.yaml","Cellulose"]]},{"id":"CHEBI:18420","l":"","na":1,"nb":2,"a":[["morphology/cell_width_small.html","cell width small"]],"b":[["mapped/Magnesium%282%29.yaml","Magnesium(2+)"],["mapped/Magnesium.yaml","Magnesium"]]},{"id":"CHEBI:24996","l":"lactate","na":1,"nb":2,"a":[["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]],"b":[["mapped/Glucose_Lactate.yaml","Glucose + Lactate"],["mapped/Lactate.yaml","Lactate"]]},{"id":"CHEBI:6457","l":"lignin","na":2,"nb":1,"a":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/biopolymer_degradation.html","biopolymer degradation"]],"b":[["mapped/Lignin.yaml","Lignin"]]},{"id":"CHEBI:15343","l":"acetaldehyde","na":1,"nb":1,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"]],"b":[["mapped/Acetaldehyde.yaml","acetaldehyde"]]},{"id":"CHEBI:16199","l":"urea","na":1,"nb":1,"a":[["physiology/urease_activity.html","urease activity"]],"b":[["mapped/Urea.yaml","Urea"]]},{"id":"CHEBI:16412","l":"","na":1,"nb":1,"a":[["morphology/gram_negative.html","gram negative"]],"b":[["mapped/Lipopolysaccharide.yaml","Lipopolysaccharide"]]},{"id":"CHEBI:16510","l":"","na":1,"nb":1,"a":[["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"]],"b":[["mapped/3-Hydroxypropionate.yaml","3-Hydroxypropionate"]]},{"id":"CHEBI:16724","l":"4-hydroxybutyrate","na":1,"nb":1,"a":[["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]],"b":[["mapped/4-hydroxybutyrate.yaml","4-hydroxybutyrate"]]},{"id":"CHEBI:17272","l":"propionate","na":1,"nb":1,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["mapped/Propionate.yaml","Propionate"]]},{"id":"CHEBI:17968","l":"butyrate","na":1,"nb":1,"a":[["ecology/gut_associated.html","gut-associated"]],"b":[["mapped/Butyrate.yaml","Butyrate"]]},{"id":"CHEBI:23044","l":"","na":1,"nb":1,"a":[["physiology/phototrophic.html","phototrophic"]],"b":[["mapped/Carotenoid.yaml","Carotenoid"]]},{"id":"CHEBI:25105","l":"","na":1,"nb":1,"a":[["physiology/antibiotic_resistance.html","antibiotic resistance"]],"b":[["mapped/Macrolide_Antibiotic.yaml","Macrolide Antibiotic"]]},{"id":"CHEBI:26672","l":"siderophore","na":1,"nb":1,"a":[["physiology/siderophore_production.html","siderophore production"]],"b":[["mapped/Siderophore.yaml","Siderophore"]]},{"id":"CHEBI:28908","l":"bambermycin","na":1,"nb":1,"a":[["morphology/bacillus_shaped.html","bacillus shaped"]],"b":[["mapped/Flavomycin.yaml","Flavomycin"]]},{"id":"CHEBI:28938","l":"ammonium","na":1,"nb":1,"a":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]],"b":[["mapped/Ammonium.yaml","Ammonium"]]},{"id":"CHEBI:29125","l":"arsenate(3-)","na":1,"nb":1,"a":[["environment/arsenic_tolerant.html","arsenic tolerant"]],"b":[["mapped/Arsenate.yaml","Arsenate"]]},{"id":"CHEBI:29242","l":"","na":1,"nb":1,"a":[["environment/arsenic_tolerant.html","arsenic tolerant"]],"b":[["mapped/Arsenate.yaml","Arsenate"]]},{"id":"CHEBI:29806","l":"fumarate(2-)","na":1,"nb":1,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["mapped/Fumarate.yaml","Fumarate"]]},{"id":"CHEBI:41688","l":"crystal violet","na":1,"nb":1,"a":[["morphology/gram_stain.html","gram stain"]],"b":[["mapped/Crystal_Violet.yaml","Crystal Violet"]]},{"id":"CHEBI:46837","l":"","na":1,"nb":1,"a":[["morphology/spore_forming.html","spore forming"]],"b":[["mapped/Dipicolinic_Acid.yaml","Dipicolinic Acid"]]},{"id":"CHEBI:89634","l":"Melanin","na":1,"nb":1,"a":[["morphology/white_pigmented.html","white pigmented"]],"b":[["mapped/Melanin.yaml","Melanin"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/TraitMech--NaturalProductMech.json b/assets/fleet/edges/TraitMech--NaturalProductMech.json index e4dbe6d..b8d54f9 100644 --- a/assets/fleet/edges/TraitMech--NaturalProductMech.json +++ b/assets/fleet/edges/TraitMech--NaturalProductMech.json @@ -1 +1 @@ -{"a":"TraitMech","b":"NaturalProductMech","base":{"TraitMech":"https://culturebotai.github.io/TraitMech/pages/traits/","NaturalProductMech":"https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/natural_products/"},"n":57,"by":{"NCBITaxon":52,"CHEBI":4,"DOI":1},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":62,"nb":24,"a":[["ecology/biosafety_level.html","biosafety level"],["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/host_associated.html","host-associated"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/halophily_preference.html","halophily preference"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":17,"nb":16,"a":[["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/neutrophilic.html","neutrophilic"],["environment/non_halophilic.html","non halophilic"],["metabolism/biopolymer_degradation.html","biopolymer degradation"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["amino_acids_and_peptides/ericin-s.yaml","ericin S"],["amino_acids_and_peptides/iturin.yaml","iturin"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":10,"nb":12,"a":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/aerobic.html","aerobic"],["genomics/avast_system.html","AVAST system"],["morphology/motile.html","motile"],["morphology/motility.html","motility"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":15,"nb":5,"a":[["ecology/biosafety_level_2.html","biosafety level 2"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/coccus_shaped.html","coccus shaped"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"],["unclassified/leuvalin.yaml","leuvalin"],["unclassified/phevalin.yaml","phevalin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":6,"nb":5,"a":[["ecology/free_living.html","free-living"],["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["genomics/transposable_element.html","transposable element"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"]],"b":[["alkaloids/promysalin.yaml","promysalin"],["polyketides/pseudopyronine-a.yaml","pseudopyronine A"],["polyketides/pseudopyronine-b.yaml","pseudopyronine B"],["unclassified/putisolvin-iii.yaml","putisolvin III"],["unclassified/putisolvin-v.yaml","putisolvin V"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":5,"a":[["metabolism/chitinolysis.html","chitinolysis"],["morphology/pigmentation.html","pigmentation"],["morphology/red_pigmented.html","red pigmented"],["morphology/white_pigmented.html","white pigmented"],["physiology/beta_n_acetylhexosaminidase_activity.html","beta-N-acetylhexosaminidase activity"]],"b":[["alkaloids/prodigiosin-2.yaml","prodigiosin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/serratiochelin-a.yaml","serratiochelin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["polyketides/oocydin-a.yaml","oocydin A"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":6,"nb":4,"a":[["metabolism/butanediol_fermentation.html","2,3-butanediol fermentation"],["metabolism/citrate_fermentation.html","citrate fermentation"],["morphology/capsule.html","capsule"],["morphology/non_motile.html","non motile"],["other/indole_test_negative.html","indole test negative"],["other/methyl_red_test_negative.html","methyl red test negative"]],"b":[["alkaloids/tilivalline.yaml","tilivalline"],["amino_acids_and_peptides/colibactin.yaml","colibactin"],["amino_acids_and_peptides/klebsidin.yaml","klebsidin"],["carbohydrates/capsular-polysaccharide-2.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":5,"nb":4,"a":[["genomics/gabija_system.html","Gabija system"],["genomics/shedu_system.html","Shedu system"],["genomics/thoeris_system.html","Thoeris system"],["physiology/caseinase_activity.html","caseinase activity"],["physiology/lecithinase_activity.html","lecithinase activity"]],"b":[["alkaloids/zwittermicin-a.yaml","zwittermicin A"],["amino_acids_and_peptides/livipeptin.yaml","Livipeptin"],["carbohydrates/tunicamycin.yaml","tunicamycin"],["unclassified/cereulide.yaml","cereulide"]]},{"id":"NCBITaxon:1902","l":"Streptomyces coelicolor","na":3,"nb":42,"a":[["ecology/saprotrophy.html","saprotrophy"],["ecology/soil_dwelling.html","soil-dwelling"],["morphology/mycelial_growth.html","mycelial growth"]],"b":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/anthramycin.yaml","anthramycin"],["alkaloids/holomycin.yaml","holomycin"],["alkaloids/melanin.yaml","melanin"],["alkaloids/prodigiosin-2.yaml","prodigiosin"],["alkaloids/undecylprodigiosin-2.yaml","undecylprodigiosin"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":3,"nb":27,"a":[["ecology/rhizosphere_association.html","rhizosphere association"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/psychrotolerant.html","psychrotolerant"]],"b":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["alkaloids/pseudomonine.yaml","pseudomonine"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyreudione-c.yaml","pyreudione C"],["alkaloids/quinolobactin.yaml","quinolobactin"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":25,"nb":3,"a":[["environment/ph_phenotype_with_numerical_limits.html","pH phenotype with numerical limits"],["environment/temperature_optimum_mid4.html","temperature optimum mid4"],["metabolism/metabolism.html","metabolism"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/respiration.html","respiration"],["metabolism/trimethylamine_n_oxide_respiration.html","trimethylamine N-oxide respiration"]],"b":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"],["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"],["unclassified/telomestatin.yaml","telomestatin"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa PAO1","na":3,"nb":10,"a":[["ecology/biofilm_formation.html","biofilm formation"],["morphology/twitching_motility.html","twitching motility"],["morphology/type_iv_pilus.html","type IV pilus"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":9,"nb":3,"a":[["environment/aerotolerant.html","aerotolerant"],["genomics/abie_system.html","AbiE system"],["genomics/abik_system.html","AbiK system"],["genomics/abiq_system.html","AbiQ system"],["genomics/abit_system.html","AbiT system"],["genomics/abiz_system.html","AbiZ system"]],"b":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"],["amino_acids_and_peptides/lacticin-z.yaml","lacticin Z"],["amino_acids_and_peptides/nisin-a.yaml","nisin A"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":2,"nb":23,"a":[["genomics/gc_mid1.html","GC mid1"],["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/melanin.yaml","melanin"],["alkaloids/undecylprodigiosin.yaml","undecylprodigiosin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/sapb.yaml","SapB"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":8,"nb":2,"a":[["environment/euryhaline.html","euryhaline"],["genomics/dartg_system.html","DarTG system"],["genomics/ddmde_system.html","DdmDE system"],["genomics/genomic_island.html","genomic island"],["genomics/lamassu_system.html","Lamassu system"],["morphology/curved_shaped.html","curved shaped"]],"b":[["alkaloids/vibriobactin-2.yaml","vibriobactin"],["alkaloids/vibriobactin.yaml","vibriobactin"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":5,"nb":2,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"],["physiology/hydrogenotrophic.html","hydrogenotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"]],"b":[["amino_acids_and_peptides/cupriachelin.yaml","cupriachelin"],["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":2,"nb":5,"a":[["genomics/ploidy.html","ploidy"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["alkaloids/aminochelin.yaml","aminochelin"],["alkaloids/azotochelin.yaml","azotochelin"],["alkaloids/protochelin.yaml","protochelin"],["amino_acids_and_peptides/azotobactin-d.yaml","azotobactin D"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:224308","l":"Bacillus subtilis (strain 168)","na":4,"nb":2,"a":[["metabolism/proteolysis.html","proteolysis"],["morphology/spore_forming.html","spore forming"],["morphology/spore_shaped.html","spore shaped"],["morphology/sporulation.html","sporulation"]],"b":[["unclassified/corynebactin.yaml","corynebactin"],["unclassified/pulcherriminic-acid.yaml","pulcherriminic acid"]]},{"id":"DOI:10.1023/A","l":"","na":3,"nb":2,"a":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"]],"b":[["carbohydrates/lincomycin.yaml","lincomycin"],["terpenoids/culmorin.yaml","culmorin"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":2,"nb":3,"a":[["ecology/commensalism.html","commensalism"],["other/coagulase_negative.html","coagulase negative"]],"b":[["amino_acids_and_peptides/epidermin.yaml","epidermin"],["amino_acids_and_peptides/epilancin-15x.yaml","epilancin 15x"],["amino_acids_and_peptides/pep5.yaml","pep5"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":2,"nb":2,"a":[["genomics/wadjet_system.html","Wadjet system"],["morphology/irregular_shaped.html","irregular shaped"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:1126","l":"Microcystis aeruginosa","na":1,"nb":36,"a":[["morphology/gas_vesicle.html","gas vesicle"]],"b":[["alkaloids/anatoxin-a.yaml","anatoxin-a"],["amino_acids_and_peptides/aerucyclamide-a.yaml","aerucyclamide A"],["amino_acids_and_peptides/aerucyclamide-c.yaml","aerucyclamide C"],["amino_acids_and_peptides/aerucyclamide-d.yaml","aerucyclamide D"],["amino_acids_and_peptides/aeruginosamide-b.yaml","aeruginosamide B"],["amino_acids_and_peptides/aeruginosamide-c.yaml","aeruginosamide C"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":1,"nb":31,"a":[["morphology/gliding.html","gliding"]],"b":[["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["alkaloids/myxofacycline-e.yaml","myxofacycline E"],["alkaloids/myxofacycline-f.yaml","myxofacycline F"],["alkaloids/myxofacycline-g.yaml","myxofacycline G"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK1622","na":1,"nb":12,"a":[["morphology/gliding.html","gliding"]],"b":[["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"],["amino_acids_and_peptides/myxochromide-a.yaml","myxochromide A"],["amino_acids_and_peptides/myxoprincomide-c506.yaml","myxoprincomide-c506"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":1,"nb":10,"a":[["ecology/plant_pathogen.html","plant pathogen"]],"b":[["alkaloids/labradorin-1.yaml","labradorin 1"],["alkaloids/labradorin-2.yaml","labradorin 2"],["alkaloids/secimide.yaml","secimide"],["amino_acids_and_peptides/phaseolotoxin.yaml","phaseolotoxin"],["amino_acids_and_peptides/syringolin-a.yaml","syringolin A"],["amino_acids_and_peptides/tabtoxin.yaml","tabtoxin"]]},{"id":"CHEBI:27592","l":"ectoine","na":6,"nb":1,"a":[["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"],["environment/nacl_delta_mid1.html","NaCl delta mid1"],["environment/nacl_optimum_mid2.html","NaCl optimum mid2"],["environment/nacl_range_mid2.html","NaCl range mid2"],["environment/slightly_halophilic.html","slightly halophilic"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":6,"nb":1,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/oxidase_activity.html","oxidase activity"]],"b":[["alkaloids/parabactin.yaml","parabactin"]]},{"id":"NCBITaxon:381666","l":"Cupriavidus necator H16","na":6,"nb":1,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"],["physiology/autotrophic.html","autotrophic"],["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["amino_acids_and_peptides/cupriachelin.yaml","cupriachelin"]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":1,"nb":5,"a":[["other/voges_proskauer_test_positive.html","Voges-Proskauer test positive"]],"b":[["alkaloids/9-deoxy-tilivalline.yaml","9-deoxy tilivalline"],["alkaloids/dehydro-tilivalline.yaml","dehydro tilivalline"],["alkaloids/dihydroxy-dehydro-tilivalline.yaml","dihydroxy-dehydro tilivalline"],["alkaloids/dihydroxy-tilivalline.yaml","dihydroxy tilivalline"],["alkaloids/tilivalline.yaml","tilivalline"]]},{"id":"NCBITaxon:75750","l":"Aspergillus sydowii","na":1,"nb":4,"a":[["environment/nacl_delta_high.html","NaCl delta high"]],"b":[["alkaloids/fumigaclavine-c.yaml","fumigaclavine C"],["amino_acids_and_peptides/mulundocandin.yaml","mulundocandin"],["unclassified/orcinol.yaml","orcinol"],["unclassified/pyripyropene-a.yaml","pyripyropene A"]]},{"id":"CHEBI:17579","l":"β-carotene","na":3,"nb":1,"a":[["metabolism/proteorhodopsin_phototrophy.html","proteorhodopsin phototrophy"],["morphology/orange_pigmented.html","orange pigmented"],["morphology/yellow_pigmented.html","yellow pigmented"]],"b":[["terpenoids/carotene.yaml","β-carotene"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":3,"nb":1,"a":[["environment/aerobic.html","aerobic"],["environment/obligately_aerobic.html","obligately aerobic"],["morphology/tetrad_arrangement.html","tetrad arrangement"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:240292","l":"Trichormus variabilis ATCC 29413","na":1,"nb":3,"a":[["morphology/akinete.html","akinete"]],"b":[["unclassified/4-deoxygadusol.yaml","4-deoxygadusol"],["unclassified/mycosporine-glycine.yaml","mycosporine glycine"],["unclassified/shinorine.yaml","shinorine"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":3,"nb":1,"a":[["ecology/mutualism.html","mutualism"],["physiology/bioluminescence.html","bioluminescence"],["physiology/quorum_sensing.html","quorum sensing"]],"b":[["unclassified/ape-vf.yaml","APE Vf"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":3,"nb":1,"a":[["environment/anaerobic.html","anaerobic"],["environment/strictly_anaerobic.html","strictly anaerobic"],["metabolism/fumarate_respiration.html","fumarate respiration"]],"b":[["fatty_acids/galactosylceramide.yaml","α-galactosylceramide"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":2,"nb":1,"a":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:132919","l":"Rhodococcus jostii","na":1,"nb":2,"a":[["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["amino_acids_and_peptides/lariatin.yaml","lariatin"],["unclassified/rhodochelin.yaml","rhodochelin"]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":1,"nb":2,"a":[["physiology/alpha_fucosidase_activity.html","alpha-fucosidase activity"]],"b":[["carbohydrates/legionaminic-acid.yaml","legionaminic acid"],["carbohydrates/pseudaminate.yaml","pseudaminate"]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":1,"nb":2,"a":[["morphology/yellow_pigmented.html","yellow pigmented"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["terpenoids/xanthan.yaml","xanthan"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":1,"nb":2,"a":[["ecology/opportunistic_pathogen.html","opportunistic pathogen"]],"b":[["alkaloids/acinetobactin.yaml","acinetobactin"],["amino_acids_and_peptides/fimsbactin-a.yaml","fimsbactin A"]]},{"id":"NCBITaxon:55601","l":"Vibrio anguillarum","na":1,"nb":2,"a":[["genomics/sspabcd_sspfgh_system.html","SspABCD-SspFGH system"]],"b":[["alkaloids/anguibactin.yaml","anguibactin"],["amino_acids_and_peptides/vanchrobactin.yaml","vanchrobactin"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":1,"nb":2,"a":[["morphology/polar_flagellation.html","polar flagellation"]],"b":[["amino_acids_and_peptides/vibrioferrin-2.yaml","vibrioferrin"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":1,"nb":2,"a":[["morphology/lateral_flagellation.html","lateral flagellation"]],"b":[["amino_acids_and_peptides/vibrioferrin-2.yaml","vibrioferrin"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:93061","l":"Staphylococcus aureus (strain NCTC 8325 / PS 47)","na":1,"nb":2,"a":[["physiology/catalase_activity.html","catalase activity"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["unclassified/staphyloferrin-a.yaml","staphyloferrin A"]]},{"id":"CHEBI:27547","l":"zeaxanthin","na":1,"nb":1,"a":[["morphology/orange_pigmented.html","orange pigmented"]],"b":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]]},{"id":"CHEBI:82758","l":"prodigiosin","na":1,"nb":1,"a":[["morphology/red_pigmented.html","red pigmented"]],"b":[["alkaloids/prodigiosin.yaml","prodigiosin"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":1,"nb":1,"a":[["morphology/heterocyst.html","heterocyst"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":1,"nb":1,"a":[["other/catalase_negative.html","catalase negative"]],"b":[["amino_acids_and_peptides/enterocin-a.yaml","enterocin A"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":1,"nb":1,"a":[["metabolism/starch_degradation.html","starch degradation"]],"b":[["amino_acids_and_peptides/bacitracin.yaml","bacitracin"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":1,"nb":1,"a":[["physiology/lipase_activity.html","lipase activity"]],"b":[["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":1,"nb":1,"a":[["physiology/urease_activity.html","urease activity"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:1570","l":"Halobacillus halophilus","na":1,"nb":1,"a":[["environment/halotolerant.html","halotolerant"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:1599","l":"Latilactobacillus sakei","na":1,"nb":1,"a":[["physiology/arginine_dihydrolase_activity.html","arginine dihydrolase activity"]],"b":[["unclassified/lactocin-s.yaml","lactocin S"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans Pd1222","na":1,"nb":1,"a":[["physiology/mixotrophic.html","mixotrophic"]],"b":[["alkaloids/parabactin.yaml","parabactin"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":1,"nb":1,"a":[["ecology/biosafety_level_3.html","biosafety level 3"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"NCBITaxon:672","l":"Vibrio vulnificus","na":1,"nb":1,"a":[["physiology/viable_but_nonculturable_state.html","viable but nonculturable state"]],"b":[["alkaloids/vulnibactin.yaml","vulnibactin"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":1,"a":[["physiology/dormancy.html","dormancy"]],"b":[["unclassified/mycobactin.yaml","mycobactin"]]}]} \ No newline at end of file +{"a":"TraitMech","b":"NaturalProductMech","base":{"TraitMech":"https://culturebotai.github.io/TraitMech/pages/traits/","NaturalProductMech":"https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/natural_products/"},"n":57,"by":{"NCBITaxon":53,"CHEBI":4},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":65,"nb":24,"a":[["ecology/biosafety_level.html","biosafety level"],["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/host_associated.html","host-associated"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/halophily_preference.html","halophily preference"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":18,"nb":16,"a":[["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/neutrophilic.html","neutrophilic"],["environment/non_halophilic.html","non halophilic"],["genomics/spbk_system.html","SpbK system"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["amino_acids_and_peptides/ericin-s.yaml","ericin S"],["amino_acids_and_peptides/iturin.yaml","iturin"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":11,"nb":12,"a":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/aerobic.html","aerobic"],["genomics/avast_system.html","AVAST system"],["genomics/jukab_system.html","JukAB system"],["morphology/motile.html","motile"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":15,"nb":5,"a":[["ecology/biosafety_level_2.html","biosafety level 2"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/coccus_shaped.html","coccus shaped"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"],["unclassified/leuvalin.yaml","leuvalin"],["unclassified/phevalin.yaml","phevalin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":6,"nb":5,"a":[["ecology/free_living.html","free-living"],["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["genomics/transposable_element.html","transposable element"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"]],"b":[["alkaloids/promysalin.yaml","promysalin"],["polyketides/pseudopyronine-a.yaml","pseudopyronine A"],["polyketides/pseudopyronine-b.yaml","pseudopyronine B"],["unclassified/putisolvin-iii.yaml","putisolvin III"],["unclassified/putisolvin-v.yaml","putisolvin V"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":5,"a":[["metabolism/chitinolysis.html","chitinolysis"],["morphology/pigmentation.html","pigmentation"],["morphology/red_pigmented.html","red pigmented"],["morphology/white_pigmented.html","white pigmented"],["physiology/beta_n_acetylhexosaminidase_activity.html","beta-N-acetylhexosaminidase activity"]],"b":[["alkaloids/prodigiosin-2.yaml","prodigiosin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/serratiochelin-a.yaml","serratiochelin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["polyketides/oocydin-a.yaml","oocydin A"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":6,"nb":4,"a":[["metabolism/butanediol_fermentation.html","2,3-butanediol fermentation"],["metabolism/citrate_fermentation.html","citrate fermentation"],["morphology/capsule.html","capsule"],["morphology/non_motile.html","non motile"],["other/indole_test_negative.html","indole test negative"],["other/methyl_red_test_negative.html","methyl red test negative"]],"b":[["alkaloids/tilivalline.yaml","tilivalline"],["amino_acids_and_peptides/colibactin.yaml","colibactin"],["amino_acids_and_peptides/klebsidin.yaml","klebsidin"],["carbohydrates/capsular-polysaccharide-2.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":5,"nb":4,"a":[["genomics/gabija_system.html","Gabija system"],["genomics/shedu_system.html","Shedu system"],["genomics/thoeris_system.html","Thoeris system"],["physiology/caseinase_activity.html","caseinase activity"],["physiology/lecithinase_activity.html","lecithinase activity"]],"b":[["alkaloids/zwittermicin-a.yaml","zwittermicin A"],["amino_acids_and_peptides/livipeptin.yaml","Livipeptin"],["carbohydrates/tunicamycin.yaml","tunicamycin"],["unclassified/cereulide.yaml","cereulide"]]},{"id":"NCBITaxon:1902","l":"Streptomyces coelicolor","na":3,"nb":42,"a":[["ecology/saprotrophy.html","saprotrophy"],["ecology/soil_dwelling.html","soil-dwelling"],["morphology/mycelial_growth.html","mycelial growth"]],"b":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/anthramycin.yaml","anthramycin"],["alkaloids/holomycin.yaml","holomycin"],["alkaloids/melanin.yaml","melanin"],["alkaloids/prodigiosin-2.yaml","prodigiosin"],["alkaloids/undecylprodigiosin-2.yaml","undecylprodigiosin"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":3,"nb":27,"a":[["ecology/rhizosphere_association.html","rhizosphere association"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/psychrotolerant.html","psychrotolerant"]],"b":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["alkaloids/pseudomonine.yaml","pseudomonine"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyreudione-c.yaml","pyreudione C"],["alkaloids/quinolobactin.yaml","quinolobactin"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":26,"nb":3,"a":[["environment/ph_phenotype_with_numerical_limits.html","pH phenotype with numerical limits"],["environment/temperature_optimum_mid4.html","temperature optimum mid4"],["genomics/rnlab_system.html","RnlAB system"],["metabolism/metabolism.html","metabolism"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/respiration.html","respiration"]],"b":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"],["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"],["unclassified/telomestatin.yaml","telomestatin"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":19,"nb":3,"a":[["environment/aerotolerant.html","aerotolerant"],["genomics/abia_system.html","AbiA system"],["genomics/abib_system.html","AbiB system"],["genomics/abic_system.html","AbiC system"],["genomics/abid_system.html","AbiD system"],["genomics/abie_system.html","AbiE system"]],"b":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"],["amino_acids_and_peptides/lacticin-z.yaml","lacticin Z"],["amino_acids_and_peptides/nisin-a.yaml","nisin A"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa (strain ATCC 15692 / DSM 22644 / CIP 104116 / JCM 14847 / LMG 12228 / 1C / PRS 101 / PAO1)","na":3,"nb":10,"a":[["ecology/biofilm_formation.html","biofilm formation"],["morphology/twitching_motility.html","twitching motility"],["morphology/type_iv_pilus.html","type IV pilus"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":3,"nb":3,"a":[["ecology/commensalism.html","commensalism"],["genomics/nhi_system.html","Nhi system"],["other/coagulase_negative.html","coagulase negative"]],"b":[["amino_acids_and_peptides/epidermin.yaml","epidermin"],["amino_acids_and_peptides/epilancin-15x.yaml","epilancin 15x"],["amino_acids_and_peptides/pep5.yaml","pep5"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":2,"nb":23,"a":[["genomics/gc_mid1.html","GC mid1"],["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/melanin.yaml","melanin"],["alkaloids/undecylprodigiosin.yaml","undecylprodigiosin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/sapb.yaml","SapB"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":9,"nb":2,"a":[["environment/euryhaline.html","euryhaline"],["genomics/dartg_system.html","DarTG system"],["genomics/ddmde_system.html","DdmDE system"],["genomics/genomic_island.html","genomic island"],["genomics/lamassu_system.html","Lamassu system"],["genomics/nixi_system.html","NixI system"]],"b":[["alkaloids/vibriobactin-2.yaml","vibriobactin"],["alkaloids/vibriobactin.yaml","vibriobactin"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":5,"nb":2,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"],["physiology/hydrogenotrophic.html","hydrogenotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"]],"b":[["amino_acids_and_peptides/cupriachelin.yaml","cupriachelin"],["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":2,"nb":5,"a":[["genomics/ploidy.html","ploidy"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["alkaloids/aminochelin.yaml","aminochelin"],["alkaloids/azotochelin.yaml","azotochelin"],["alkaloids/protochelin.yaml","protochelin"],["amino_acids_and_peptides/azotobactin-d.yaml","azotobactin D"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:224308","l":"Bacillus subtilis (strain 168)","na":4,"nb":2,"a":[["metabolism/proteolysis.html","proteolysis"],["morphology/spore_forming.html","spore forming"],["morphology/spore_shaped.html","spore shaped"],["morphology/sporulation.html","sporulation"]],"b":[["unclassified/corynebactin.yaml","corynebactin"],["unclassified/pulcherriminic-acid.yaml","pulcherriminic acid"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":2,"nb":2,"a":[["genomics/wadjet_system.html","Wadjet system"],["morphology/irregular_shaped.html","irregular shaped"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:1126","l":"Microcystis aeruginosa","na":1,"nb":36,"a":[["morphology/gas_vesicle.html","gas vesicle"]],"b":[["alkaloids/anatoxin-a.yaml","anatoxin-a"],["amino_acids_and_peptides/aerucyclamide-a.yaml","aerucyclamide A"],["amino_acids_and_peptides/aerucyclamide-c.yaml","aerucyclamide C"],["amino_acids_and_peptides/aerucyclamide-d.yaml","aerucyclamide D"],["amino_acids_and_peptides/aeruginosamide-b.yaml","aeruginosamide B"],["amino_acids_and_peptides/aeruginosamide-c.yaml","aeruginosamide C"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":1,"nb":31,"a":[["morphology/gliding.html","gliding"]],"b":[["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["alkaloids/myxofacycline-e.yaml","myxofacycline E"],["alkaloids/myxofacycline-f.yaml","myxofacycline F"],["alkaloids/myxofacycline-g.yaml","myxofacycline G"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK1622","na":1,"nb":12,"a":[["morphology/gliding.html","gliding"]],"b":[["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"],["amino_acids_and_peptides/myxochromide-a.yaml","myxochromide A"],["amino_acids_and_peptides/myxoprincomide-c506.yaml","myxoprincomide-c506"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":1,"nb":10,"a":[["ecology/plant_pathogen.html","plant pathogen"]],"b":[["alkaloids/labradorin-1.yaml","labradorin 1"],["alkaloids/labradorin-2.yaml","labradorin 2"],["alkaloids/secimide.yaml","secimide"],["amino_acids_and_peptides/phaseolotoxin.yaml","phaseolotoxin"],["amino_acids_and_peptides/syringolin-a.yaml","syringolin A"],["amino_acids_and_peptides/tabtoxin.yaml","tabtoxin"]]},{"id":"CHEBI:27592","l":"ectoine","na":6,"nb":1,"a":[["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"],["environment/nacl_delta_mid1.html","NaCl delta mid1"],["environment/nacl_optimum_mid2.html","NaCl optimum mid2"],["environment/nacl_range_mid2.html","NaCl range mid2"],["environment/slightly_halophilic.html","slightly halophilic"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":6,"nb":1,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/oxidase_activity.html","oxidase activity"]],"b":[["alkaloids/parabactin.yaml","parabactin"]]},{"id":"NCBITaxon:381666","l":"Cupriavidus necator H16","na":6,"nb":1,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"],["physiology/autotrophic.html","autotrophic"],["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["amino_acids_and_peptides/cupriachelin.yaml","cupriachelin"]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":1,"nb":5,"a":[["other/voges_proskauer_test_positive.html","Voges-Proskauer test positive"]],"b":[["alkaloids/9-deoxy-tilivalline.yaml","9-deoxy tilivalline"],["alkaloids/dehydro-tilivalline.yaml","dehydro tilivalline"],["alkaloids/dihydroxy-dehydro-tilivalline.yaml","dihydroxy-dehydro tilivalline"],["alkaloids/dihydroxy-tilivalline.yaml","dihydroxy tilivalline"],["alkaloids/tilivalline.yaml","tilivalline"]]},{"id":"NCBITaxon:75750","l":"Aspergillus sydowii","na":1,"nb":4,"a":[["environment/nacl_delta_high.html","NaCl delta high"]],"b":[["alkaloids/fumigaclavine-c.yaml","fumigaclavine C"],["amino_acids_and_peptides/mulundocandin.yaml","mulundocandin"],["unclassified/orcinol.yaml","orcinol"],["unclassified/pyripyropene-a.yaml","pyripyropene A"]]},{"id":"CHEBI:17579","l":"β-carotene","na":3,"nb":1,"a":[["metabolism/proteorhodopsin_phototrophy.html","proteorhodopsin phototrophy"],["morphology/orange_pigmented.html","orange pigmented"],["morphology/yellow_pigmented.html","yellow pigmented"]],"b":[["terpenoids/carotene.yaml","β-carotene"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":3,"nb":1,"a":[["environment/aerobic.html","aerobic"],["environment/obligately_aerobic.html","obligately aerobic"],["morphology/tetrad_arrangement.html","tetrad arrangement"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:240292","l":"Trichormus variabilis ATCC 29413","na":1,"nb":3,"a":[["morphology/akinete.html","akinete"]],"b":[["unclassified/4-deoxygadusol.yaml","4-deoxygadusol"],["unclassified/mycosporine-glycine.yaml","mycosporine glycine"],["unclassified/shinorine.yaml","shinorine"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":3,"nb":1,"a":[["ecology/mutualism.html","mutualism"],["physiology/bioluminescence.html","bioluminescence"],["physiology/quorum_sensing.html","quorum sensing"]],"b":[["unclassified/ape-vf.yaml","APE Vf"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":3,"nb":1,"a":[["environment/anaerobic.html","anaerobic"],["environment/strictly_anaerobic.html","strictly anaerobic"],["metabolism/fumarate_respiration.html","fumarate respiration"]],"b":[["fatty_acids/galactosylceramide.yaml","α-galactosylceramide"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":2,"nb":1,"a":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:132919","l":"Rhodococcus jostii","na":1,"nb":2,"a":[["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["amino_acids_and_peptides/lariatin.yaml","lariatin"],["unclassified/rhodochelin.yaml","rhodochelin"]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":1,"nb":2,"a":[["physiology/alpha_fucosidase_activity.html","alpha-fucosidase activity"]],"b":[["carbohydrates/legionaminic-acid.yaml","legionaminic acid"],["carbohydrates/pseudaminate.yaml","pseudaminate"]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":1,"nb":2,"a":[["morphology/yellow_pigmented.html","yellow pigmented"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["terpenoids/xanthan.yaml","xanthan"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":1,"nb":2,"a":[["ecology/opportunistic_pathogen.html","opportunistic pathogen"]],"b":[["alkaloids/acinetobactin.yaml","acinetobactin"],["amino_acids_and_peptides/fimsbactin-a.yaml","fimsbactin A"]]},{"id":"NCBITaxon:55601","l":"Vibrio anguillarum","na":1,"nb":2,"a":[["genomics/sspabcd_sspfgh_system.html","SspABCD-SspFGH system"]],"b":[["alkaloids/anguibactin.yaml","anguibactin"],["amino_acids_and_peptides/vanchrobactin.yaml","vanchrobactin"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":1,"nb":2,"a":[["morphology/polar_flagellation.html","polar flagellation"]],"b":[["amino_acids_and_peptides/vibrioferrin-2.yaml","vibrioferrin"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":1,"nb":2,"a":[["morphology/lateral_flagellation.html","lateral flagellation"]],"b":[["amino_acids_and_peptides/vibrioferrin-2.yaml","vibrioferrin"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:69","l":"Lysobacter enzymogenes","na":1,"nb":2,"a":[["genomics/gasdermin_system.html","GasderMIN system"]],"b":[["unclassified/heat-stable-antifungal-factor.yaml","heat-stable antifungal factor"],["unclassified/wap-8294a2.yaml","WAP-8294A2"]]},{"id":"NCBITaxon:93061","l":"Staphylococcus aureus (strain NCTC 8325 / PS 47)","na":1,"nb":2,"a":[["physiology/catalase_activity.html","catalase activity"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["unclassified/staphyloferrin-a.yaml","staphyloferrin A"]]},{"id":"CHEBI:27547","l":"zeaxanthin","na":1,"nb":1,"a":[["morphology/orange_pigmented.html","orange pigmented"]],"b":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]]},{"id":"CHEBI:82758","l":"prodigiosin","na":1,"nb":1,"a":[["morphology/red_pigmented.html","red pigmented"]],"b":[["alkaloids/prodigiosin.yaml","prodigiosin"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":1,"nb":1,"a":[["morphology/heterocyst.html","heterocyst"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":1,"nb":1,"a":[["other/catalase_negative.html","catalase negative"]],"b":[["amino_acids_and_peptides/enterocin-a.yaml","enterocin A"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":1,"nb":1,"a":[["metabolism/starch_degradation.html","starch degradation"]],"b":[["amino_acids_and_peptides/bacitracin.yaml","bacitracin"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":1,"nb":1,"a":[["physiology/lipase_activity.html","lipase activity"]],"b":[["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":1,"nb":1,"a":[["physiology/urease_activity.html","urease activity"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:1570","l":"Halobacillus halophilus","na":1,"nb":1,"a":[["environment/halotolerant.html","halotolerant"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:1599","l":"Latilactobacillus sakei","na":1,"nb":1,"a":[["physiology/arginine_dihydrolase_activity.html","arginine dihydrolase activity"]],"b":[["unclassified/lactocin-s.yaml","lactocin S"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans Pd1222","na":1,"nb":1,"a":[["physiology/mixotrophic.html","mixotrophic"]],"b":[["alkaloids/parabactin.yaml","parabactin"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":1,"nb":1,"a":[["ecology/biosafety_level_3.html","biosafety level 3"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"NCBITaxon:672","l":"Vibrio vulnificus","na":1,"nb":1,"a":[["physiology/viable_but_nonculturable_state.html","viable but nonculturable state"]],"b":[["alkaloids/vulnibactin.yaml","vulnibactin"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":1,"a":[["physiology/dormancy.html","dormancy"]],"b":[["unclassified/mycobactin.yaml","mycobactin"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/TraitMech--ProteinTraitsMech.json b/assets/fleet/edges/TraitMech--ProteinTraitsMech.json index 14f8769..6817d6d 100644 --- a/assets/fleet/edges/TraitMech--ProteinTraitsMech.json +++ b/assets/fleet/edges/TraitMech--ProteinTraitsMech.json @@ -1 +1 @@ -{"a":"TraitMech","b":"ProteinTraitsMech","base":{"TraitMech":"https://culturebotai.github.io/TraitMech/pages/traits/","ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record="},"n":807,"by":{"GO":248,"NCBITaxon":136,"METPO":111,"CHEBI":109,"DOI":100,"UniProt":56,"InterPro":47},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":62,"nb":156,"a":[["ecology/biosafety_level.html","biosafety level"],["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/host_associated.html","host-associated"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/halophily_preference.html","halophily preference"]],"b":[["IDPO%3A0000033","flexible linker"],["IDPO%3A0000014","order to disorder"],["IDPO%3A0000004","pre-molten globule"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":30,"nb":1616,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"]],"b":[["EC%3A1.1.1.170","3beta-hydroxysteroid-4alpha-carboxylate 3-dehydrogenase (decarboxylating)"],["EC%3A1.1.1.262","4-hydroxythreonine-4-phosphate dehydrogenase"],["EC%3A1.1.1.276","serine 3-dehydrogenase (NADP(+))"],["EC%3A1.1.1.286","isocitrate--homoisocitrate dehydrogenase"],["EC%3A1.1.1.305","UDP-glucuronic acid oxidase (UDP-4-keto-hexauronic acid decarboxylating)"],["EC%3A1.1.1.343","phosphogluconate dehydrogenase (NAD(+)-dependent, decarboxylating)"]]},{"id":"METPO:1000631","l":"trophic type","na":30,"nb":29,"a":[["physiology/autotrophic.html","autotrophic"],["physiology/carboxydotrophic.html","carboxydotrophic"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"]],"b":[["METPO%3A1000632","autotrophic"],["METPO%3A1000633","carboxydotrophic"],["METPO%3A1000634","chemoautolithotrophic"],["METPO%3A1000635","chemoautotrophic"],["METPO%3A1000636","chemoheterotrophic"],["METPO%3A1000637","chemolithoautotrophic"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":25,"nb":17633,"a":[["environment/ph_phenotype_with_numerical_limits.html","pH phenotype with numerical limits"],["environment/temperature_optimum_mid4.html","temperature optimum mid4"],["metabolism/metabolism.html","metabolism"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/respiration.html","respiration"],["metabolism/trimethylamine_n_oxide_respiration.html","trimethylamine N-oxide respiration"]],"b":[["EC%3A1.1.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.16.-.-","Oxidizing metal ions"],["EC%3A1.18.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.7.-","With an iron-sulfur protein as acceptor"]]},{"id":"CHEBI:15379","l":"dioxygen","na":25,"nb":3896,"a":[["environment/aerobic.html","aerobic"],["environment/aerotolerant.html","aerotolerant"],["environment/anaerobic.html","anaerobic"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_aerobic.html","facultatively aerobic"],["environment/facultatively_anaerobic.html","facultatively anaerobic"]],"b":[["EC%3A1.1.3.10","pyranose oxidase"],["EC%3A1.1.3.11","L-sorbose oxidase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.3.13","alcohol oxidase"],["EC%3A1.1.3.14","catechol oxidase (dimerizing)"],["EC%3A1.1.3.15","(S)-2-hydroxy-acid oxidase"]]},{"id":"CHEBI:30616","l":"","na":24,"nb":2111,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/fermentation.html","Fermentation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/nitrogen_fixation.html","nitrogen fixation"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_30616","requires ATP(4−)"],["EC%3A1.13.12.7","firefly luciferase"],["EC%3A1.16.99.1","[Co(II) methylated amine-specific corrinoid protein] reductase"],["EC%3A1.18.6.1","nitrogenase"],["EC%3A1.18.6.2","vanadium-dependent nitrogenase"],["EC%3A1.19.6.1","nitrogenase (flavodoxin)"]]},{"id":"METPO:1000059","l":"phenotype","na":117,"nb":18,"a":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/habitat_association.html","habitat association"],["ecology/pathogenic_to_host.html","pathogenic to host"],["ecology/predatory_bacterium.html","predatory bacterium"],["ecology/saprotrophy.html","saprotrophy"],["ecology/symbiosis.html","symbiosis"]],"b":[["METPO%3A1000629","halophily preference"],["METPO%3A1007074","metal tolerance"],["METPO%3A1007073","osmotic tolerance"],["METPO%3A1000601","oxygen preference"],["METPO%3A1003000","pH growth preference"],["METPO%3A1000059","phenotype"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":17,"nb":18,"a":[["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/neutrophilic.html","neutrophilic"],["environment/non_halophilic.html","non halophilic"],["metabolism/biopolymer_degradation.html","biopolymer degradation"]],"b":[["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["Pfam%3APF14562","Restriction endonuclease BglI"],["Pfam%3APF09195","Restriction endonuclease BglII/BglIII"],["Pfam%3APF09208","Restriction endonuclease MspI"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":15,"nb":51,"a":[["ecology/biosafety_level_2.html","biosafety level 2"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/coccus_shaped.html","coccus shaped"]],"b":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF13166","AAA domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF27533","CapK C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"]]},{"id":"GO:0015977","l":"carbon fixation","na":15,"nb":30,"a":[["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]],"b":[["GO%3A0009760","C4 photosynthesis"],["GO%3A0009761","CAM photosynthesis"],["GO%3A0043427","carbon fixation by 3-hydroxypropionate cycle"],["GO%3A0030634","carbon fixation by acetyl-CoA pathway"],["GO%3A0015977","carbon fixation"],["GO%3A0019643","reductive tricarboxylic acid cycle"]]},{"id":"GO:0051453","l":"regulation of intracellular pH","na":17,"nb":15,"a":[["environment/acidophilic.html","acidophilic"],["environment/acidotolerant.html","acidotolerant"],["environment/alkalotolerant.html","alkalotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"]],"b":[["ComplexPortal%3ACPX-3090","Glutathione-regulated potassium-efflux system KefB-KefG complex"],["ComplexPortal%3ACPX-2543","Glutathione-regulated potassium-efflux system KefC-KefF complex"],["ComplexPortal%3ACPX-26449","Sodium/proton exchanger complex, NHE1-CHP1 variant"],["ComplexPortal%3ACPX-26462","Sodium/proton exchanger complex, NHE1-CHP2 variant"],["ComplexPortal%3ACPX-26464","Sodium/proton exchanger complex, NHE1-CHP3 variant"],["ComplexPortal%3ACPX-26469","Sodium/proton exchanger complex, NHE2-CHP1 variant"]]},{"id":"GO:0045259","l":"proton-transporting ATP synthase complex","na":13,"nb":52,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/fermentation.html","Fermentation"],["metabolism/metabolism.html","metabolism"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/carboxydotrophic.html","carboxydotrophic"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["ComplexPortal%3ACPX-25764","Mitochondrial proton translocating ATP synthase complex"],["ComplexPortal%3ACPX-3281","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-6151","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-8618","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-8619","Mitochondrial proton-transporting ATP synthase complex, testis-specific variant"]]},{"id":"CHEBI:18276","l":"dihydrogen","na":13,"nb":42,"a":[["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/does_not_use_as_electron_donor.html","does not use as electron donor"],["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"]],"b":[["EC%3A1.12.1.2","hydrogen dehydrogenase"],["EC%3A1.12.1.3","hydrogen dehydrogenase (NADP(+))"],["EC%3A1.12.1.4","hydrogenase (NAD(+), ferredoxin)"],["EC%3A1.12.1.5","hydrogen dehydrogenase [NAD(P)(+)]"],["EC%3A1.12.2.1","cytochrome-c3 hydrogenase"],["EC%3A1.12.5.1","hydrogen:quinone oxidoreductase"]]},{"id":"METPO:1000060","l":"metabolism","na":26,"nb":12,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/aromatic_compound_degradation.html","aromatic compound degradation"],["metabolism/arsenite_oxidation.html","arsenite oxidation"],["metabolism/biopolymer_degradation.html","biopolymer degradation"],["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"],["metabolism/carbon_fixation.html","carbon fixation"]],"b":[["METPO%3A1000845","Acetogenesis"],["METPO%3A1002003","Cable bacteria metabolism"],["METPO%3A1000806","Disproportionation"],["METPO%3A1000805","Electron transfer"],["METPO%3A1002005","Fermentation"],["METPO%3A1000846","Homoacetogenesis"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":11,"nb":93,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"],["morphology/carboxysome.html","carboxysome"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17544","requires hydrogencarbonate"],["EC%3A1.13.11.73","methylphosphonate synthase"],["EC%3A1.2.1.27","methylmalonate-semialdehyde dehydrogenase (CoA acylating)"],["EC%3A2.5.1.120","aminodeoxyfutalosine synthase"],["EC%3A2.5.1.143","pyridinium-3,5-biscarboxylic acid mononucleotide synthase"],["EC%3A2.7.2.2","carbamate kinase"]]},{"id":"GO:0006113","l":"fermentation","na":11,"nb":14,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"],["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["ComplexPortal%3ACPX-281","Hydrogenase-1 complex"],["GO%3A0030645","acetyl-CoA fermentation to butanoate"],["GO%3A0019665","amino acid fermentation"],["GO%3A0019588","anaerobic glycerol catabolic process"],["GO%3A0019658","bifid shunt"],["GO%3A0044577","D-xylose fermentation"]]},{"id":"GO:0004177","l":"aminopeptidase activity","na":10,"nb":58,"a":[["physiology/arginine_arylamidase_activity.html","arginine arylamidase activity"],["physiology/cystine_arylamidase_activity.html","cystine arylamidase activity"],["physiology/glycine_arylamidase_activity.html","glycine arylamidase activity"],["physiology/histidine_arylamidase_activity.html","histidine arylamidase activity"],["physiology/leucine_arylamidase_activity.html","leucine arylamidase activity"],["physiology/phenylalanine_arylamidase_activity.html","phenylalanine arylamidase activity"]],"b":[["EC%3A3.4.11.1","leucyl aminopeptidase"],["EC%3A3.4.11.21","aspartyl aminopeptidase"],["EC%3A3.4.11.22","aminopeptidase I"],["EC%3A3.4.11.5","prolyl aminopeptidase"],["EC%3A3.4.11.6","aminopeptidase B"],["EC%3A3.4.11.9","Xaa-Pro aminopeptidase"]]},{"id":"GO:0022900","l":"electron transport chain","na":10,"nb":50,"a":[["environment/obligately_aerobic.html","obligately aerobic"],["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/electron_transfer.html","Electron transfer"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"]],"b":[["GO%3A0022900","electron transport chain"],["GO%3A0140647","P450-containing electron transport chain"],["GO%3A0009767","photosynthetic electron transport chain"],["GO%3A0022904","respiratory electron transport chain"],["NCBIfam%3ANF058577","4Fe-4S ferredoxin"],["NCBIfam%3ANF042982","8-methylmenaquinol:fumarate reductase flavoprotein subunit"]]},{"id":"GO:0022904","l":"respiratory electron transport chain","na":10,"nb":30,"a":[["metabolism/metabolism.html","metabolism"],["physiology/carboxydotrophic.html","carboxydotrophic"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"]],"b":[["ComplexPortal%3ACPX-865","Electron transfer flavoprotein complex"],["ComplexPortal%3ACPX-2731","Mitochondrial electron transfer flavoprotein complex"],["ComplexPortal%3ACPX-243","Respiratory chain complex I"],["GO%3A0019646","aerobic electron transport chain"],["GO%3A0019645","anaerobic electron transport chain"],["GO%3A0042773","ATP synthesis coupled electron transport"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":10,"nb":20,"a":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/aerobic.html","aerobic"],["genomics/avast_system.html","AVAST system"],["morphology/motile.html","motile"],["morphology/motility.html","motility"]],"b":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"],["Pfam%3APF18173","Bacterial HORMA domain 2"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["Pfam%3APF27322","Cap8 HORMA domain"],["Pfam%3APF01526","Tn3 transposase DDE domain"]]},{"id":"METPO:1000601","l":"oxygen preference","na":12,"nb":10,"a":[["environment/aerobic.html","aerobic"],["environment/aerotolerant.html","aerotolerant"],["environment/anaerobic.html","anaerobic"],["environment/capnophilic.html","capnophilic"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_aerobic.html","facultatively aerobic"]],"b":[["METPO%3A1000602","aerobic"],["METPO%3A1000609","aerotolerant"],["METPO%3A1000603","anaerobic"],["METPO%3A1005021","capnophilic"],["METPO%3A1000612","facultative oxygen preference"],["METPO%3A1000608","facultatively aerobic"]]},{"id":"CHEBI:17632","l":"nitrate","na":9,"nb":40,"a":[["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"],["metabolism/does_not_use_as_electron_acceptor.html","does not use as electron acceptor"]],"b":[["EC%3A1.14.12.17","nitric oxide dioxygenase"],["EC%3A1.7.1.1","nitrate reductase (NADH)"],["EC%3A1.7.1.2","nitrate reductase [NAD(P)H]"],["EC%3A1.7.1.3","nitrate reductase (NADPH)"],["EC%3A1.7.5.1","nitrate reductase (quinone)"],["EC%3A1.7.6.1","nitrite dismutase"]]},{"id":"GO:0006970","l":"response to osmotic stress","na":9,"nb":15,"a":[["environment/extremely_halophilic.html","extremely halophilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/halotolerant.html","halotolerant"],["environment/moderately_halophilic.html","moderately halophilic"],["environment/nacl_delta.html","NaCl delta"]],"b":[["GO%3A0071470","cellular response to osmotic stress"],["GO%3A0043575","detection of osmotic stimulus"],["GO%3A0006972","hyperosmotic response"],["GO%3A0006971","hypotonic response"],["GO%3A0010335","response to non-ionic osmotic stress"],["GO%3A0006970","response to osmotic stress"]]},{"id":"GO:0009767","l":"photosynthetic electron transport chain","na":9,"nb":13,"a":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["metabolism/phototrophy.html","phototrophy"],["physiology/photoautotrophic.html","photoautotrophic"],["physiology/photoheterotrophic.html","photoheterotrophic"]],"b":[["GO%3A0009767","photosynthetic electron transport chain"],["GO%3A0009773","photosynthetic electron transport in photosystem I"],["GO%3A0009772","photosynthetic electron transport in photosystem II"],["NCBIfam%3ATIGR01332","cytochrome b559 subunit alpha"],["NCBIfam%3ATIGR01333","cytochrome b559 subunit beta"],["NCBIfam%3ATIGR01156","cytochrome b6-f complex subunit IV"]]},{"id":"CHEBI:15378","l":"hydron","na":8,"nb":14383,"a":[["environment/acidophilic.html","acidophilic"],["environment/acidotolerant.html","acidotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"],["environment/obligately_acidophilic.html","obligately acidophilic"]],"b":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.1.10","L-xylulose reductase"],["EC%3A1.1.1.100","3-oxoacyl-[acyl-carrier-protein] reductase"],["EC%3A1.1.1.101","acylglycerone-phosphate reductase"],["EC%3A1.1.1.102","3-dehydrosphinganine reductase"],["EC%3A1.1.1.103","L-threonine 3-dehydrogenase"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":8,"nb":680,"a":[["environment/aerotolerant.html","aerotolerant"],["environment/microaerophilic.html","microaerophilic"],["environment/microaerotolerant.html","microaerotolerant"],["environment/obligately_aerobic.html","obligately aerobic"],["environment/obligately_anaerobic.html","obligately anaerobic"],["environment/oxygen_preference.html","oxygen preference"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16240","requires hydrogen peroxide"],["EC%3A1.1.3.10","pyranose oxidase"],["EC%3A1.1.3.11","L-sorbose oxidase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.3.13","alcohol oxidase"],["EC%3A1.1.3.15","(S)-2-hydroxy-acid oxidase"]]},{"id":"GO:0009061","l":"anaerobic respiration","na":8,"nb":36,"a":[["environment/anaerobic.html","anaerobic"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["ComplexPortal%3ACPX-4841","Anaerobic glycerol-3-phosphate dehydrogenase complex"],["ComplexPortal%3ACPX-317","Formate hydrogenlyase-H/Hydrogenase-3 complex"],["ComplexPortal%3ACPX-6028","Formate hydrogenlyase-H/Hydrogenase-4 complex"],["ComplexPortal%3ACPX-281","Hydrogenase-1 complex"],["ComplexPortal%3ACPX-282","Hydrogenase-2 complex"],["ComplexPortal%3ACPX-3447","NapAB nitrate reductase complex"]]},{"id":"CHEBI:17750","l":"glycine betaine","na":8,"nb":33,"a":[["environment/euryhaline.html","euryhaline"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/moderately_halophilic.html","moderately halophilic"],["environment/nacl_optimum_mid1.html","NaCl optimum mid1"],["environment/nacl_optimum_mid2.html","NaCl optimum mid2"],["environment/nacl_range_mid2.html","NaCl range mid2"]],"b":[["EC%3A1.1.3.17","choline oxidase"],["EC%3A1.13.11.90","[1-hydroxy-2-(trimethylamino)ethyl]phosphonate dioxygenase (glycine- betaine-forming)"],["EC%3A1.14.13.251","glycine betaine monooxygenase"],["EC%3A1.2.1.8","betaine-aldehyde dehydrogenase"],["EC%3A1.21.4.4","betaine reductase"],["EC%3A2.1.1.157","sarcosine/dimethylglycine N-methyltransferase"]]},{"id":"GO:0009060","l":"aerobic respiration","na":8,"nb":25,"a":[["environment/aerobic.html","aerobic"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_aerobic.html","facultatively aerobic"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/obligately_aerobic.html","obligately aerobic"],["metabolism/aerobic_respiration.html","Aerobic respiration"]],"b":[["ComplexPortal%3ACPX-266","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-577","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-319","Trimethylamine-N-oxide reductase TorAC complex"],["GO%3A0019646","aerobic electron transport chain"],["GO%3A0009060","aerobic respiration"],["GO%3A0019409","aerobic respiration, using ammonia as electron donor"]]},{"id":"METPO:1003000","l":"pH growth preference","na":10,"nb":8,"a":[["environment/acidophilic.html","acidophilic"],["environment/acidotolerant.html","acidotolerant"],["environment/alkalotolerant.html","alkalotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"]],"b":[["METPO%3A1003003","acidophilic"],["METPO%3A1003008","acidotolerant"],["METPO%3A1003002","alkaliphilic"],["METPO%3A1003009","alkalotolerant"],["METPO%3A1003007","facultatively acidophilic"],["METPO%3A1003005","facultatively alkaliphilic"]]},{"id":"METPO:1000613","l":"temperature preference","na":9,"nb":8,"a":[["environment/extreme_hyperthermophilic.html","extreme hyperthermophilic"],["environment/facultative_psychrophilic.html","facultative psychrophilic"],["environment/hyperthermophilic.html","hyperthermophilic"],["environment/mesophilic.html","mesophilic"],["environment/psychrophilic.html","psychrophilic"],["environment/psychrotolerant.html","psychrotolerant"]],"b":[["METPO%3A1000720","facultative psychrophilic"],["METPO%3A1000617","hyperthermophilic"],["METPO%3A1000615","mesophilic"],["METPO%3A1000614","psychrophilic"],["METPO%3A1000618","psychrotolerant"],["METPO%3A1000613","temperature preference"]]},{"id":"CHEBI:15361","l":"pyruvate","na":7,"nb":410,"a":[["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15361","requires pyruvate"],["EC%3A1.1.1.27","L-lactate dehydrogenase"],["EC%3A1.1.1.28","D-lactate dehydrogenase"],["EC%3A1.1.1.38","malate dehydrogenase (oxaloacetate-decarboxylating)"],["EC%3A1.1.1.39","malate dehydrogenase (decarboxylating)"],["EC%3A1.1.1.40","malate dehydrogenase (oxaloacetate-decarboxylating) (NADP(+))"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":7,"nb":396,"a":[["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/iron_oxidation.html","iron oxidation"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29033","requires iron(2+)"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.11","glucoside 3-dehydrogenase (cytochrome c)"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.2.3","L-lactate dehydrogenase (cytochrome)"],["EC%3A1.1.2.4","D-lactate dehydrogenase (cytochrome)"]]},{"id":"CHEBI:29101","l":"sodium(1+)","na":7,"nb":292,"a":[["environment/alkaphilic.html","alkaliphilic"],["environment/euryhaline.html","euryhaline"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/nacl_delta_mid2.html","NaCl delta mid2"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29101","requires sodium(1+)"],["EC%3A7.2.1.1","NADH:ubiquinone reductase (Na(+)-transporting)"],["EC%3A7.2.1.2","ferredoxin--NAD(+) oxidoreductase (Na(+)-transporting)"],["EC%3A7.2.1.4","tetrahydromethanopterin S-methyltransferase"],["EC%3A7.2.2.1","Na(+)-transporting two-sector ATPase"],["EC%3A7.2.2.13","Na(+)/K(+)-exchanging ATPase"]]},{"id":"CHEBI:16189","l":"sulfate","na":7,"nb":133,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"],["metabolism/disproportionation.html","Disproportionation"],["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"],["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16189","requires sulfate"],["EC%3A1.14.11.77","alkyl sulfatase"],["EC%3A1.8.2.1","sulfite dehydrogenase (cytochrome)"],["EC%3A1.8.3.1","sulfite oxidase"],["EC%3A1.8.5.6","sulfite dehydrogenase (quinone)"],["EC%3A2.7.7.4","sulfate adenylyltransferase"]]},{"id":"GO:0009288","l":"bacterial-type flagellum","na":7,"nb":31,"a":[["morphology/amphitrichous.html","amphitrichous"],["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/lophotrichous.html","lophotrichous"],["morphology/monotrichous.html","monotrichous"],["morphology/non_motile.html","non motile"],["morphology/peritrichous.html","peritrichous"]],"b":[["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009288","bacterial-type flagellum"]]},{"id":"GO:0004096","l":"catalase activity","na":7,"nb":20,"a":[["environment/aerotolerant.html","aerotolerant"],["environment/desiccation_tolerant.html","desiccation tolerant"],["environment/microaerophilic.html","microaerophilic"],["environment/oxygen_preference.html","oxygen preference"],["environment/uv_radiation_tolerant.html","UV radiation tolerant"],["other/catalase_negative.html","catalase negative"]],"b":[["EC%3A1.11.1.6","catalase"],["METPO%3A1007084","catalase negative"],["METPO%3A1007083","catalase positive"],["RHEA%3A20309","2 H2O2 = O2 + 2 H2O"],["ComplexPortal%3ACPX-4742","Catalase complex"],["ComplexPortal%3ACPX-4767","Catalase complex"]]},{"id":"METPO:1000629","l":"halophily preference","na":10,"nb":7,"a":[["environment/euryhaline.html","euryhaline"],["environment/extremely_halophilic.html","extremely halophilic"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/halotolerant.html","halotolerant"]],"b":[["METPO%3A1000627","euryhaline"],["METPO%3A1000621","haloalkaliphilic"],["METPO%3A1000620","halophilic"],["METPO%3A1000629","halophily preference"],["METPO%3A1000622","halotolerant"],["METPO%3A1000624","non halophilic"]]},{"id":"CHEBI:65015","l":"","na":7,"nb":7,"a":[["environment/euryhaline.html","euryhaline"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/halotolerant.html","halotolerant"],["environment/nacl_optimum.html","NaCl optimum"]],"b":[["EC%3A1.1.3.43","paromamine 6'-oxidase"],["EC%3A2.4.1.301","2'-deamino-2'-hydroxyneamine 1-alpha-D-kanosaminyltransferase"],["EC%3A3.5.1.112","2'-N-acetylparomamine deacetylase"],["RHEA%3A34031","2'-N-acetylparomamine + H2O = paromamine + acetate"],["RHEA%3A34035","paromamine + O2 = 6'-oxoparomamine + H2O2"],["RHEA%3A35927","paromamine + UDP-alpha-D-glucose = 3'-deamino-3'-hydroxykanamycin C + UDP + H(+)"]]},{"id":"GO:0042710","l":"biofilm formation","na":7,"nb":7,"a":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/host_associated.html","host-associated"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["ecology/plant_pathogen.html","plant pathogen"],["ecology/rhizosphere_association.html","rhizosphere association"]],"b":[["GO%3A0042710","biofilm formation"],["GO%3A0044399","multi-species biofilm formation"],["GO%3A0044010","single-species biofilm formation"],["GO%3A0090605","submerged biofilm formation"],["GO%3A0090604","surface biofilm formation"],["Reactome%3AR-HSA-9931953","Biofilm formation"]]},{"id":"NCBITaxon:1111708","l":"Synechocystis sp. (strain ATCC 27184 / PCC 6803 / Kazusa)","na":6,"nb":62,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/photoautotrophic.html","photoautotrophic"],["physiology/photolithotrophic.html","photolithotrophic"],["physiology/phototrophic.html","phototrophic"]],"b":[["Pfam%3APF07698","7TM receptor with intracellular HD hydrolase"],["Pfam%3APF07697","7TM-HD extracellular"],["Pfam%3APF11266","Long-chain fatty aldehyde decarbonylase"],["Pfam%3APF21571","Arginine dihydrolase ArgZ-like, C-terminal, first region"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF17886","HSP20-like domain found in ArsA"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":6,"nb":32,"a":[["ecology/free_living.html","free-living"],["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["genomics/transposable_element.html","transposable element"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"]],"b":[["Pfam%3APF14535","AMP-binding enzyme C-terminal domain"],["Pfam%3APF13442","Cytochrome C oxidase, cbb3-type, subunit III"],["Pfam%3APF22247","Catechol 2,3-dioxygenase-like N-terminal domain"],["Pfam%3APF25371","Domain of unknown function (DUF7884)"],["Pfam%3APF19301","LigXa C-terminal domain like"],["Pfam%3APF12729","Four helix bundle sensory module for signal transduction"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":6,"nb":31,"a":[["metabolism/butanediol_fermentation.html","2,3-butanediol fermentation"],["metabolism/citrate_fermentation.html","citrate fermentation"],["morphology/capsule.html","capsule"],["morphology/non_motile.html","non motile"],["other/indole_test_negative.html","indole test negative"],["other/methyl_red_test_negative.html","methyl red test negative"]],"b":[["Pfam%3APF08787","Alginate lyase"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF08218","Citrate lyase ligase C-terminal domain"],["Pfam%3APF13727","CoA-binding domain"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["Pfam%3APF20714","DpiA-like helix-turn-helix domain"]]},{"id":"GO:0016117","l":"carotenoid biosynthetic process","na":6,"nb":26,"a":[["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/cream_pigmented.html","cream pigmented"],["morphology/orange_pigmented.html","orange pigmented"],["morphology/pigmentation.html","pigmentation"],["morphology/pink_pigmented.html","pink pigmented"],["morphology/yellow_pigmented.html","yellow pigmented"]],"b":[["GO%3A1901824","alpha-carotene biosynthetic process"],["GO%3A1901821","alpha-zeacarotene biosynthetic process"],["GO%3A1901812","beta-carotene biosynthetic process"],["GO%3A1901818","beta-zeacarotene biosynthetic process"],["GO%3A0016117","carotenoid biosynthetic process"],["GO%3A0016123","xanthophyll biosynthetic process"]]},{"id":"GO:0006754","l":"ATP biosynthetic process","na":6,"nb":22,"a":[["environment/aerobic.html","aerobic"],["environment/ph_range_mid2.html","pH range mid2"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/lithoautotrophic.html","lithoautotrophic"],["physiology/mixotrophic.html","mixotrophic"]],"b":[["GO%3A0006756","AMP phosphorylation"],["GO%3A0006754","ATP biosynthetic process"],["GO%3A0015986","proton motive force-driven ATP synthesis"],["NCBIfam%3ATIGR02546","type III secretion system ATPase SctN"],["InterPro%3AIPR020971","ATP synthase, F1 beta subunit"],["PANTHER%3APTHR11910","ATP SYNTHASE DELTA CHAIN"]]},{"id":"CHEBI:16134","l":"ammonia","na":6,"nb":11,"a":[["environment/ph_delta_mid1.html","pH delta mid1"],["metabolism/nitrogen_fixation.html","nitrogen fixation"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"],["physiology/urease_activity.html","urease activity"]],"b":[["TCDB%3A1.A.11","The Ammonium Transporter Channel (Amt) Family"],["MCSA%3A376","adenosine deaminase"],["MCSA%3A75","aspartate-ammonia ligase"],["MCSA%3A449","cystathionine beta-lyase"],["MCSA%3A97","cytidine deaminase"],["MCSA%3A710","cytosine deaminase (bacterial)"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":6,"nb":11,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/oxidase_activity.html","oxidase activity"]],"b":[["Pfam%3APF07835","Bacterial aa3 type cytochrome c oxidase subunit IV"],["Pfam%3APF04828","Glutathione-dependent formaldehyde-activating enzyme"],["Pfam%3APF16448","LapD/MoxY periplasmic domain"],["Pfam%3APF17267","Family of unknown function (DUF5333)"],["Pfam%3APF17272","Family of unknown function (DUF5337)"],["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"]]},{"id":"NCBITaxon:266264","l":"Cupriavidus metallidurans CH34","na":6,"nb":10,"a":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/copper_tolerant.html","copper tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["environment/zinc_tolerant.html","zinc tolerant"]],"b":[["Pfam%3APF25973","CzcB-like, barrel-sandwich hybrid domain"],["Pfam%3APF09828","ChrB, C-terminal domain"],["Pfam%3APF20229","Protein ChrB, N-terminal"],["Pfam%3APF01923","Cobalamin adenosyltransferase"],["Pfam%3APF25975","CzcB C-terminal circularly permuted SH3-like domain"],["Pfam%3APF25971","CzcB, N-terminal domain"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":6,"nb":10,"a":[["ecology/animal_pathogen.html","animal pathogen"],["ecology/biosafety_level_2.html","biosafety level 2"],["genomics/genomic_island.html","genomic island"],["genomics/prophage.html","prophage"],["morphology/flagellated.html","flagellated"],["morphology/peritrichous.html","peritrichous"]],"b":[["TED%3AAF-A0A5T2E4X7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5T2E4X7-F1-model_v4_TED01"],["TED%3AAF-A0A5Y4BP44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Y4BP44-F1-model_v4_TED01"],["TED%3AAF-A0A623P6F3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A623P6F3-F1-model_v4_TED02"],["TED%3AAF-A0A721BDS7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A721BDS7-F1-model_v4_TED02"],["TED%3AAF-A0A743P324-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A743P324-F1-model_v4_TED01"],["TED%3AAF-A0A757VWR3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A757VWR3-F1-model_v4_TED02"]]},{"id":"GO:0009292","l":"horizontal gene transfer","na":6,"nb":7,"a":[["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["genomics/genome_size.html","genome size"],["genomics/genomic_island.html","genomic island"],["genomics/mobile_genetic_element.html","mobile genetic element"],["genomics/pangenome_openness.html","pangenome openness"]],"b":[["GO%3A0009294","DNA-mediated transformation"],["GO%3A0009292","horizontal gene transfer"],["GO%3A0009293","transduction"],["GO%3A0009291","unidirectional conjugation"],["NCBIfam%3ATIGR04359","entry exclusion lipoprotein TrbK"],["NCBIfam%3ATIGR04361","entry exclusion protein TrbK"]]},{"id":"CHEBI:16474","l":"","na":6,"nb":6,"a":[["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16474","requires NADPH"],["MCSA%3A112","dihydrofolate reductase (bacterial)"],["MCSA%3A6","glutathione-disulfide reductase"],["MCSA%3A7","isocitrate dehydrogenase (NADP+)"],["MCSA%3A21","malate dehydrogenase (oxaloacetate-decarboxylating)"],["proteintraitsmech%3ABIOLIP_NDP","NDP-binding site"]]},{"id":"CHEBI:16301","l":"nitrite","na":5,"nb":116,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["EC%3A1.13.11.64","5-nitrosalicylate dioxygenase"],["EC%3A1.13.12.16","nitronate monooxygenase"],["EC%3A1.14.12.23","nitroarene dioxygenase"],["EC%3A1.14.12.24","2,4-dinitrotoluene dioxygenase"],["EC%3A1.14.13.166","4-nitrocatechol 4-monooxygenase"],["EC%3A1.14.13.167","4-nitrophenol 4-monooxygenase"]]},{"id":"GO:0009056","l":"catabolic process","na":5,"nb":109,"a":[["metabolism/metabolism.html","metabolism"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"],["physiology/heterotrophic.html","heterotrophic"],["physiology/organotrophic.html","organotrophic"]],"b":[["GO%3A0018911","1,2,4-trichlorobenzene catabolic process"],["GO%3A0019261","1,4-dichlorobenzene catabolic process"],["GO%3A0046302","2-chloro-N-isopropylacetanilide catabolic process"],["GO%3A1901851","7,8-didemethyl-8-hydroxy-5-deazariboflavin catabolic process"],["GO%3A0006581","acetylcholine catabolic process"],["GO%3A0046185","aldehyde catabolic process"]]},{"id":"GO:0006935","l":"chemotaxis","na":5,"nb":64,"a":[["morphology/flagellated.html","flagellated"],["morphology/motile.html","motile"],["morphology/motility.html","motility"],["physiology/chemotaxis.html","chemotaxis"],["physiology/copiotrophic.html","copiotrophic"]],"b":[["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009454","aerotaxis"]]},{"id":"DOI:10.1126/science.aar4120","l":"","na":5,"nb":37,"a":[["genomics/druantia_system.html","Druantia system"],["genomics/kiwa_system.html","Kiwa system"],["genomics/lamassu_system.html","Lamassu system"],["genomics/phage_defense_system.html","phage defense system"],["genomics/septu_system.html","Septu system"]],"b":[["NCBIfam%3ANF041622","anti-phage protein KwaA"],["NCBIfam%3ANF041623","anti-phage protein KwaB"],["NCBIfam%3ANF033914","anti-phage ZorAB system protein ZorA"],["NCBIfam%3ANF033915","anti-phage ZorAB system protein ZorA"],["NCBIfam%3ANF033916","anti-phage ZorAB system protein ZorA"],["NCBIfam%3ANF033917","anti-phage ZorAB system protein ZorA"]]},{"id":"CHEBI:29103","l":"potassium(1+)","na":5,"nb":32,"a":[["environment/extremely_halophilic.html","extremely halophilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/non_halophilic.html","non halophilic"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29103","requires potassium(1+)"],["EC%3A7.2.2.13","Na(+)/K(+)-exchanging ATPase"],["EC%3A7.2.2.19","H(+)/K(+)-exchanging ATPase"],["EC%3A7.2.2.6","P-type K(+) transporter"],["RHEA%3A18353","2 K(+)(out) + 3 Na(+)(in) + ATP + H2O = 2 K(+)(in) + 3 Na(+)(out) + ADP + phosphate + H(+)"],["RHEA%3A69967","Ca(2+)(out) + K(+)(out) + 4 Na(+)(in) = Ca(2+)(in) + K(+)(in) + 4 Na(+)(out)"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":5,"nb":28,"a":[["genomics/gabija_system.html","Gabija system"],["genomics/shedu_system.html","Shedu system"],["genomics/thoeris_system.html","Thoeris system"],["physiology/caseinase_activity.html","caseinase activity"],["physiology/lecithinase_activity.html","lecithinase activity"]],"b":[["Pfam%3APF08878","HamA"],["Pfam%3APF05791","Bacillus haemolytic enterotoxin (HBL)"],["Pfam%3APF10803","Spore germination GerPB"],["Pfam%3APF10737","Spore germination protein GerPC"],["Pfam%3APF10970","Spore germination protein GerPE"],["Pfam%3APF07486","Cell Wall Hydrolase"]]},{"id":"GO:0004784","l":"superoxide dismutase activity","na":5,"nb":27,"a":[["environment/aerotolerant.html","aerotolerant"],["environment/desiccation_tolerant.html","desiccation tolerant"],["environment/microaerophilic.html","microaerophilic"],["environment/obligately_aerobic.html","obligately aerobic"],["environment/oxygen_preference.html","oxygen preference"]],"b":[["EC%3A1.15.1.1","superoxide dismutase"],["RHEA%3A20696","2 superoxide + 2 H(+) = H2O2 + O2"],["ComplexPortal%3ACPX-21824","CCS-SOD1, oxidative stress response complex"],["ComplexPortal%3ACPX-2896","[Cu-Zn] Superoxide dismutase complex"],["ComplexPortal%3ACPX-2897","[Cu-Zn] Superoxide dismutase complex"],["ComplexPortal%3ACPX-2898","[Cu-Zn] Superoxide dismutase complex"]]},{"id":"CHEBI:15948","l":"","na":5,"nb":20,"a":[["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/orange_pigmented.html","orange pigmented"],["morphology/pink_pigmented.html","pink pigmented"],["morphology/red_pigmented.html","red pigmented"],["morphology/yellow_pigmented.html","yellow pigmented"]],"b":[["EC%3A1.3.99.26","all-trans-zeta-carotene desaturase"],["EC%3A1.3.99.31","phytoene desaturase (lycopene-forming)"],["EC%3A2.5.1.149","lycopene elongase/hydratase (flavuxanthin-forming)"],["EC%3A2.5.1.150","lycopene elongase/hydratase (dihydrobisanhydrobacterioruberin-forming)"],["EC%3A4.2.1.131","carotenoid 1,2-hydratase"],["EC%3A5.2.1.13","prolycopene isomerase"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":16,"a":[["metabolism/chitinolysis.html","chitinolysis"],["morphology/pigmentation.html","pigmentation"],["morphology/red_pigmented.html","red pigmented"],["morphology/white_pigmented.html","white pigmented"],["physiology/beta_n_acetylhexosaminidase_activity.html","beta-N-acetylhexosaminidase activity"]],"b":[["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF03173","Putative carbohydrate binding domain"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"],["Pfam%3APF06438","Heme-binding protein A (HasA)"],["Pfam%3APF02974","Protease inhibitor Inh"],["IEDB%3A36655","epitope LIPDGDGEV"]]},{"id":"GO:0031470","l":"carboxysome","na":5,"nb":10,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["morphology/carboxysome.html","carboxysome"],["physiology/autotrophic.html","autotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["GO%3A0031470","carboxysome"],["NCBIfam%3ANF053791","alpha-carboxysome major shell protein CsoS1"],["NCBIfam%3ANF049993","beta-carboxysome assembly chaperone CcmS"],["NCBIfam%3ANF053792","beta-carboxysome assembly protein CcmO"],["NCBIfam%3ANF053796","beta-carboxysome protein CcmP"],["NCBIfam%3ANF053793","beta-carboxysome scaffolding protein CcmN"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":5,"nb":10,"a":[["metabolism/dimethyl_sulfoxide_respiration.html","dimethyl sulfoxide respiration"],["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/electron_transfer.html","Electron transfer"]],"b":[["Pfam%3APF27445","Adaptation to cold protein A"],["Pfam%3APF27450","AtcB C-terminal domain"],["Pfam%3APF27486","AtcB N-terminal domain"],["Pfam%3APF02464","CinA C-terminal domain"],["Pfam%3APF13657","HipA N-terminal domain"],["Pfam%3APF01934","Ribonuclease HepT-like"]]},{"id":"GO:0009274","l":"peptidoglycan-based cell wall","na":5,"nb":8,"a":[["morphology/cell_shape.html","cell shape"],["morphology/cell_width.html","cell width"],["morphology/gram_stain.html","gram stain"],["morphology/pleomorphic_shaped.html","pleomorphic shaped"],["morphology/sphere_shaped.html","sphere shaped"]],"b":[["GO%3A0009276","Gram-negative-bacterium-type cell wall"],["GO%3A0009275","Gram-positive-bacterium-type cell wall"],["GO%3A0009274","peptidoglycan-based cell wall"],["NCBIfam%3ANF007061","bifunctional glycosyl transferase/transpeptidase"],["NCBIfam%3ATIGR03656","heme uptake protein IsdC"],["NCBIfam%3ATIGR02070","monofunctional biosynthetic peptidoglycan transglycosylase"]]},{"id":"InterPro:IPR001765","l":"","na":6,"nb":5,"a":[["metabolism/carbon_fixation.html","carbon fixation"],["morphology/carboxysome.html","carboxysome"],["physiology/autotrophic.html","autotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]],"b":[["Pfam%3APF00484","Carbonic anhydrase"],["PANTHER%3APTHR11002","CARBONIC ANHYDRASE"],["PANTHER%3APTHR43175","CARBONIC ANHYDRASE"],["PROSITE%3APS00704","Prokaryotic-type carbonic anhydrases signature 1"],["PROSITE%3APS00705","Prokaryotic-type carbonic anhydrases signature 2"]]},{"id":"NCBITaxon:1085","l":"Rhodospirillum rubrum","na":6,"nb":5,"a":[["metabolism/phototrophy.html","phototrophy"],["morphology/spiral_shaped.html","spiral shaped"],["physiology/carboxydotrophic.html","carboxydotrophic"],["physiology/photoheterotrophic.html","photoheterotrophic"],["physiology/photoorganoheterotrophic.html","photoorganoheterotrophic"],["physiology/phototrophic.html","phototrophic"]],"b":[["Pfam%3APF00556","Antenna complex alpha/beta subunit"],["Pfam%3APF09527","Putative F0F1-ATPase subunit Ca2+/Mg2+ transporter"],["Pfam%3APF07357","Dinitrogenase reductase ADP-ribosyltransferase (DRAT)"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["MCSA%3A797","ribulose-bisphosphate carboxylase (type II)"]]},{"id":"NCBITaxon:224308","l":"Bacillus subtilis (strain 168)","na":4,"nb":11323,"a":[["metabolism/proteolysis.html","proteolysis"],["morphology/spore_forming.html","spore forming"],["morphology/spore_shaped.html","spore shaped"],["morphology/sporulation.html","sporulation"]],"b":[["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.10.3.-","With oxygen as acceptor"],["EC%3A1.13.12.-","With incorporation of one atom of oxygen (internal monooxygenases or internal mixed function oxidases)"],["EC%3A1.14.19.-","With oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water"],["EC%3A1.17.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.21.98.-","With other, known acceptors"]]},{"id":"CHEBI:15377","l":"water","na":4,"nb":9376,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["physiology/catalase_activity.html","catalase activity"],["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["EC%3A1.1.1.115","ribose 1-dehydrogenase (NADP(+))"],["EC%3A1.1.1.132","GDP-mannose 6-dehydrogenase"],["EC%3A1.1.1.136","UDP-N-acetylglucosamine 6-dehydrogenase"],["EC%3A1.1.1.186","dTDP-galactose 6-dehydrogenase"],["EC%3A1.1.1.192","long-chain-alcohol dehydrogenase"],["EC%3A1.1.1.205","IMP dehydrogenase"]]},{"id":"GO:0006412","l":"translation","na":4,"nb":455,"a":[["environment/mesophilic.html","mesophilic"],["genomics/codon_usage_bias.html","codon usage bias"],["physiology/cold_shock_response.html","cold shock response"],["physiology/dormancy.html","dormancy"]],"b":[["GO%3A0002181","cytoplasmic translation"],["GO%3A0032543","mitochondrial translation"],["GO%3A0032544","plastid translation"],["GO%3A0140241","translation at synapse"],["GO%3A0006412","translation"],["Reactome%3AR-HSA-72766","Translation"]]},{"id":"CHEBI:30089","l":"acetate","na":4,"nb":302,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["EC%3A1.1.1.318","eugenol synthase"],["EC%3A1.1.1.319","isoeugenol synthase"],["EC%3A1.13.11.50","acetylacetone-cleaving enzyme"],["EC%3A1.13.12.4","lactate 2-monooxygenase"],["EC%3A1.14.13.54","ketosteroid monooxygenase"],["EC%3A1.14.14.19","steroid 17alpha-monooxygenase"]]},{"id":"GO:0009252","l":"peptidoglycan biosynthetic process","na":4,"nb":90,"a":[["morphology/bacillus_shaped.html","bacillus shaped"],["morphology/cell_shape.html","cell shape"],["morphology/coccobacillus_shaped.html","coccobacillus shaped"],["morphology/rod_shaped.html","rod shaped"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["GO%3A0009252","peptidoglycan biosynthetic process"],["GO%3A0018104","peptidoglycan-protein cross-linking"],["NCBIfam%3ATIGR00492","alanine racemase"],["NCBIfam%3ANF007061","bifunctional glycosyl transferase/transpeptidase"],["NCBIfam%3ANF006986","bifunctional UDP-N-acetylglucosamine diphosphorylase/glucosamine-1-phosphate N-acetyltransferase GlmU"]]},{"id":"GO:0051301","l":"cell division","na":4,"nb":86,"a":[["morphology/sarcina_arrangement.html","sarcina arrangement"],["morphology/staphylococcus_arrangement.html","staphylococcus arrangement"],["morphology/streptococcus_arrangement.html","streptococcus arrangement"],["morphology/tetrad_arrangement.html","tetrad arrangement"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["ComplexPortal%3ACPX-5782","Tol-Pal cell envelope complex"],["GO%3A0090510","anticlinal cell division"],["GO%3A0008356","asymmetric cell division"],["GO%3A0007114","cell budding"],["GO%3A0051301","cell division"]]},{"id":"GO:0042597","l":"periplasmic space","na":4,"nb":76,"a":[["morphology/axially_filamented.html","axially filamented"],["morphology/gram_negative.html","gram negative"],["physiology/methylotrophic.html","methylotrophic"],["physiology/natural_competence.html","natural competence"]],"b":[["ComplexPortal%3ACPX-3447","NapAB nitrate reductase complex"],["ComplexPortal%3ACPX-4281","PaoABC periplasmic aldehyde oxidoreductase"],["GO%3A0030287","cell wall-bounded periplasmic space"],["GO%3A0030288","outer membrane-bounded periplasmic space"],["GO%3A0042597","periplasmic space"],["GO%3A0036240","septal periplasm"]]},{"id":"GO:0030001","l":"metal ion transport","na":4,"nb":66,"a":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/metal_tolerant.html","metal tolerant"]],"b":[["GO%3A0015690","aluminum cation transport"],["GO%3A0006816","calcium ion transport"],["GO%3A0015692","lead ion transport"],["GO%3A0010351","lithium ion transport"],["GO%3A0015693","magnesium ion transport"],["GO%3A0030001","metal ion transport"]]},{"id":"GO:0009523","l":"photosystem II","na":4,"nb":59,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["GO%3A0030095","chloroplast photosystem II"],["GO%3A0009523","photosystem II"],["GO%3A0030096","plasma membrane-derived thylakoid photosystem II"],["NCBIfam%3ATIGR01332","cytochrome b559 subunit alpha"],["NCBIfam%3ATIGR01333","cytochrome b559 subunit beta"],["NCBIfam%3ANF012505","Lumenal portion of Cytochrome b559, alpha (gene psbE) subunit"]]},{"id":"CHEBI:17245","l":"carbon monoxide","na":4,"nb":31,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["physiology/carboxydotrophic.html","carboxydotrophic"],["physiology/oxidase_activity.html","oxidase activity"]],"b":[["EC%3A1.13.11.24","quercetin 2,3-dioxygenase"],["EC%3A1.13.11.47","3-hydroxy-4-oxoquinoline 2,4-dioxygenase"],["EC%3A1.13.11.48","3-hydroxy-2-methylquinolin-4-one 2,4-dioxygenase"],["EC%3A1.13.11.53","acireductone dioxygenase (Ni(2+)-requiring)"],["EC%3A1.14.14.18","heme oxygenase (biliverdin-producing)"],["EC%3A1.14.15.20","heme oxygenase (biliverdin-producing, ferredoxin)"]]},{"id":"NCBITaxon:171101","l":"Streptococcus pneumoniae (strain ATCC BAA-255 / R6)","na":4,"nb":31,"a":[["morphology/ellipsoidal.html","ellipsoidal"],["morphology/oval_shaped.html","oval shaped"],["morphology/ovoid_shaped.html","ovoid shaped"],["physiology/natural_competence.html","natural competence"]],"b":[["Pfam%3APF03590","Aspartate-ammonia ligase"],["Pfam%3APF25935","LcnD-like, barrel-sandwich hybrid domain"],["Pfam%3APF24568","Peptidoglycan hydrolase PcsB, coiled-coil domain"],["Pfam%3APF05257","CHAP domain"],["Pfam%3APF27342","ComB N-terminal domain"],["Pfam%3APF26697","Competence protein ComGC, C-terminal domain"]]},{"id":"CHEBI:26833","l":"sulfur atom","na":4,"nb":24,"a":[["metabolism/disproportionation.html","Disproportionation"],["morphology/sulfur_globule.html","sulfur globule"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/photolithotrophic.html","photolithotrophic"]],"b":[["EC%3A1.12.98.4","sulfhydrogenase"],["EC%3A1.13.11.55","sulfur oxygenase/reductase"],["EC%3A1.8.1.18","NAD(P)H sulfur oxidoreductase (CoA-dependent)"],["EC%3A1.8.1.19","sulfide dehydrogenase"],["EC%3A1.8.2.3","sulfide-cytochrome-c reductase (flavocytochrome c)"],["EC%3A1.8.2.7","thiocyanate desulfurase"]]},{"id":"GO:0009372","l":"quorum sensing","na":4,"nb":21,"a":[["ecology/plant_pathogen.html","plant pathogen"],["morphology/green_pigmented.html","green pigmented"],["morphology/swarming_motility.html","swarming motility"],["physiology/quorum_sensing.html","quorum sensing"]],"b":[["ComplexPortal%3ACPX-4315","Autoinducer-2 ABC transporter complex"],["GO%3A0120218","host interaction involved in quorum sensing"],["GO%3A0009372","quorum sensing"],["NCBIfam%3ANF052393","acyl-homoserine-lactone synthase"],["NCBIfam%3ANF008187","autoinducer-2 kinase"],["NCBIfam%3ANF010444","autoinducer-binding transcriptional regulator TraR"]]},{"id":"GO:0009432","l":"SOS response","na":4,"nb":14,"a":[["genomics/prophage.html","prophage"],["morphology/cell_length_large.html","cell length large"],["morphology/filament_shaped.html","filament shaped"],["physiology/sos_response.html","SOS response"]],"b":[["ComplexPortal%3ACPX-5544","DNA polymerase V mutasome complex"],["ComplexPortal%3ACPX-6026","YafNO toxin-antitoxin complex"],["GO%3A0009432","SOS response"],["NCBIfam%3ATIGR01389","DNA helicase RecQ"],["NCBIfam%3ATIGR00611","DNA replication/repair protein RecF"],["NCBIfam%3ANF041583","SOS-induced cell division inhibitor SulA"]]},{"id":"CHEBI:25728","l":"","na":11,"nb":4,"a":[["environment/euryhaline.html","euryhaline"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/halotolerant.html","halotolerant"],["environment/nacl_optimum.html","NaCl optimum"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.A.22","The Large Conductance Mechanosensitive Ion Channel (MscL) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.A.23","The Small Conductance Mechanosensitive Ion Channel (MscS) Family"]]},{"id":"GO:0009326","l":"formate dehydrogenase complex","na":4,"nb":9,"a":[["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/syntrophy.html","Syntrophy"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"],["physiology/methylotrophic.html","methylotrophic"]],"b":[["ComplexPortal%3ACPX-1975","Formate dehydrogenase N complex"],["ComplexPortal%3ACPX-6029","Formate dehydrogenase Z complex"],["ComplexPortal%3ACPX-317","Formate hydrogenlyase-H/Hydrogenase-3 complex"],["ComplexPortal%3ACPX-6028","Formate hydrogenlyase-H/Hydrogenase-4 complex"],["GO%3A0009326","formate dehydrogenase complex"],["NCBIfam%3ATIGR00129","formate dehydrogenase accessory sulfurtransferase FdhD"]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":4,"nb":9,"a":[["morphology/diplococcus_shaped.html","diplococcus shaped"],["morphology/non_motile.html","non motile"],["morphology/sphere_shaped.html","sphere shaped"],["physiology/natural_competence.html","natural competence"]],"b":[["Pfam%3APF19567","Capsular polysaccharide synthesis, CpsB/CapC"],["Pfam%3APF07501","G5 domain"],["Pfam%3APF13551","Winged helix-turn helix"],["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF03047","COMC family"],["Pfam%3APF04556","DpnII restriction endonuclease"]]},{"id":"GO:0006119","l":"oxidative phosphorylation","na":4,"nb":8,"a":[["environment/ph_delta.html","pH delta"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["physiology/organoheterotrophic.html","organoheterotrophic"],["physiology/persister_cell_formation.html","persister cell formation"]],"b":[["ComplexPortal%3ACPX-268","Cytochrome bd-I ubiquinol oxidase complex"],["ComplexPortal%3ACPX-269","Cytochrome bd-II ubiquinol oxidase complex"],["GO%3A0006119","oxidative phosphorylation"],["PANTHER%3APTHR12448","ATP SYNTHASE EPSILON CHAIN, MITOCHONDRIAL"],["PANTHER%3APTHR13080","ATP SYNTHASE F CHAIN, MITOCHONDRIAL-RELATED"],["PANTHER%3APTHR43141","CYTOCHROME BD2 SUBUNIT II"]]},{"id":"GO:0030964","l":"NADH dehydrogenase complex","na":4,"nb":8,"a":[["metabolism/electron_transfer.html","Electron transfer"],["metabolism/respiration.html","respiration"],["physiology/organoheterotrophic.html","organoheterotrophic"],["physiology/organotrophic.html","organotrophic"]],"b":[["GO%3A0030964","NADH dehydrogenase complex"],["GO%3A0071685","NADH dehydrogenase complex (plastoquinone)"],["GO%3A0045271","respiratory chain complex I"],["NCBIfam%3ATIGR00403","NAD(P)H-quinone oxidoreductase subunit I"],["NCBIfam%3ATIGR01957","NADH-quinone oxidoreductase subunit B"],["NCBIfam%3ANF008728","NADH-quinone oxidoreductase subunit C/D"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":8,"nb":4,"a":[["environment/euryhaline.html","euryhaline"],["genomics/dartg_system.html","DarTG system"],["genomics/ddmde_system.html","DdmDE system"],["genomics/genomic_island.html","genomic island"],["genomics/lamassu_system.html","Lamassu system"],["morphology/curved_shaped.html","curved shaped"]],"b":[["Pfam%3APF01375","Heat-labile enterotoxin alpha chain"],["Pfam%3APF09101","Exotoxin A binding"],["Pfam%3APF09009","Exotoxin A catalytic"],["Pfam%3APF09102","Exotoxin A, targeting"]]},{"id":"NCBITaxon:194439","l":"Chlorobaculum tepidum TLS","na":4,"nb":7,"a":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"],["physiology/photoautotrophic.html","photoautotrophic"],["physiology/photolithoautotrophic.html","photolithoautotrophic"],["physiology/photolithotrophic.html","photolithotrophic"]],"b":[["Pfam%3APF02327","Bacteriochlorophyll A protein"],["Pfam%3APF27499","CsmB chlorosome envelope protein"],["Pfam%3APF28537","Probable trigger factor, FKBP-like domain"],["Pfam%3APF02043","Bacteriochlorophyll C binding protein"],["Pfam%3APF11098","Chlorosome envelope protein C"],["Pfam%3APF10643","Photosystem P840 reaction-centre cytochrome c-551"]]},{"id":"InterPro:IPR000158","l":"","na":6,"nb":4,"a":[["morphology/bacillus_shaped.html","bacillus shaped"],["morphology/cell_length_large.html","cell length large"],["morphology/cell_shape.html","cell shape"],["morphology/rod_shaped.html","rod shaped"],["morphology/sarcina_arrangement.html","sarcina arrangement"],["morphology/staphylococcus_arrangement.html","staphylococcus arrangement"]],"b":[["Pfam%3APF12327","FtsZ family, C-terminal domain"],["HAMAP%3AMF_00909","Cell division protein FtsZ [ftsZ]"],["PROSITE%3APS01134","FtsZ protein signature 1"],["PROSITE%3APS01135","FtsZ protein signature 2"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":4,"nb":6,"a":[["ecology/mutualism.html","mutualism"],["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["ecology/symbiosis.html","symbiosis"],["genomics/hna_system.html","Hna system"]],"b":[["Pfam%3APF01177","Asp/Glu/Hydantoin racemase"],["Pfam%3APF11339","Protein of unknown function (DUF3141)"],["PROSITE%3APS01303","BCCT family of transporters signature"],["PROSITE%3APS00665","Dihydrodipicolinate synthase signature 1"],["TED%3AAF-A0A2J0YSD4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J0YSD4-F1-model_v4_TED01"],["TED%3AAF-A0A843ZNG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843ZNG8-F1-model_v4_TED01"]]},{"id":"CHEBI:24431","l":"","na":5,"nb":4,"a":[["metabolism/does_not_use_as_nitrogen_source.html","does not use as nitrogen source"],["metabolism/does_not_use_as_sulfur_source.html","does not use as sulfur source"],["metabolism/uses_as_nitrogen_source.html","uses as nitrogen source"],["metabolism/uses_as_sulfur_source.html","uses as sulfur source"],["upper/chemical_entity.html","chemical entity"]],"b":[["EC%3A1.13.12.16","nitronate monooxygenase"],["EC%3A1.17.3.1","pteridine oxidase"],["RHEA%3A12777","2-amino-4-hydroxypteridine + O2 = 2-amino-4,7-dihydroxypteridine + chemical entity"],["RHEA%3A28767","ethylnitronate + O2 = chemical entity + acetaldehyde + nitrite + H(+)"]]},{"id":"GO:0043684","l":"type IV secretion system complex","na":4,"nb":5,"a":[["ecology/animal_pathogen.html","animal pathogen"],["ecology/human_pathogen.html","human pathogen"],["genomics/genomic_island.html","genomic island"],["genomics/mobile_genetic_element.html","mobile genetic element"]],"b":[["GO%3A0043684","type IV secretion system complex"],["NCBIfam%3ANF049884","Dot/Icm T4SS effector Ceg23"],["NCBIfam%3ATIGR02788","P-type DNA transfer ATPase VirB11"],["NCBIfam%3ATIGR02791","P-type DNA transfer protein VirB5"],["NCBIfam%3ANF047983","T4SS effector phosphatidylinositol 3-Kinase RisK1"]]},{"id":"METPO:1000630","l":"biological process","na":4,"nb":5,"a":[["metabolism/metabolism.html","metabolism"],["metabolism/nitrification.html","nitrification"],["upper/biological_process.html","biological process"],["upper/material_entity.html","material entity"]],"b":[["METPO%3A1000630","biological process"],["METPO%3A1005038","denitrification"],["METPO%3A1000060","metabolism"],["METPO%3A1005001","nitrification"],["METPO%3A1005039","nitrogen fixation"]]},{"id":"METPO:2000303","l":"does not show activity of","na":5,"nb":4,"a":[["metabolism/does_not_show_activity_of.html","does not show activity of"],["other/catalase_negative.html","catalase negative"],["other/coagulase_negative.html","coagulase negative"],["other/oxidase_negative.html","oxidase negative"],["other/urease_negative.html","urease negative"]],"b":[["METPO%3A1007084","catalase negative"],["METPO%3A1007091","coagulase negative"],["METPO%3A1007086","oxidase negative"],["METPO%3A1007088","urease negative"]]},{"id":"NCBITaxon:228410","l":"Nitrosomonas europaea ATCC 19718","na":5,"nb":4,"a":[["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["Pfam%3APF02461","Ammonia monooxygenase"],["Pfam%3APF13435","Cytochrome c554 and c-prime"],["MCSA%3A581","hydroxylamine oxidase"],["TED%3AAF-Q82SR8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q82SR8-F1-model_v4_TED01"]]},{"id":"InterPro:IPR033875","l":"Flagellum site-determining protein FlhG","na":4,"nb":4,"a":[["morphology/amphitrichous.html","amphitrichous"],["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/lophotrichous.html","lophotrichous"],["morphology/monotrichous.html","monotrichous"]],"b":[["GO%3A0044781","bacterial-type flagellum organization"],["CDD%3Acd02038","FlhG-like"],["InterPro%3AIPR033875","Flagellum site-determining protein FlhG"],["Pfam%3APF10609","NUBPL iron-transfer P-loop NTPase"]]},{"id":"GO:0005737","l":"cytoplasm","na":3,"nb":2018,"a":[["environment/ph_range_mid2.html","pH range mid2"],["environment/ph_range_very_low.html","pH range very low"],["morphology/spiral_shaped.html","spiral shaped"]],"b":[["ComplexPortal%3ACPX-3921","2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["ComplexPortal%3ACPX-1599","40S cytosolic small ribosomal subunit"],["ComplexPortal%3ACPX-5223","40S cytosolic small ribosomal subunit"],["ComplexPortal%3ACPX-5261","40S cytosolic small ribosomal subunit"],["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"]]},{"id":"CHEBI:29034","l":"iron(3+)","na":3,"nb":376,"a":[["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/iron_oxidation.html","iron oxidation"],["metabolism/photoferrotrophy.html","photoferrotrophy"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29034","requires iron(3+)"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.11","glucoside 3-dehydrogenase (cytochrome c)"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.2.3","L-lactate dehydrogenase (cytochrome)"],["EC%3A1.1.2.4","D-lactate dehydrogenase (cytochrome)"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa PAO1","na":3,"nb":174,"a":[["ecology/biofilm_formation.html","biofilm formation"],["morphology/twitching_motility.html","twitching motility"],["morphology/type_iv_pilus.html","type IV pilus"]],"b":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF06750","Bacterial Peptidase A24 N-terminal domain"],["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF28403","Aconitase X second domain"],["Pfam%3APF28406","Aconitase X third domain"],["Pfam%3APF04412","Aconitase X first domain"]]},{"id":"CHEBI:15351","l":"","na":3,"nb":169,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["physiology/autotrophic.html","autotrophic"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15351","requires acetyl-CoA"],["ARO%3A3000341","AAC(2')"],["ARO%3A3007393","AAC(2')-I"],["ARO%3A3002523","AAC(2')-Ia"],["ARO%3A3002524","AAC(2')-Ib"],["ARO%3A3002525","AAC(2')-Ic"]]},{"id":"GO:0019867","l":"outer membrane","na":3,"nb":143,"a":[["morphology/gram_negative.html","gram negative"],["morphology/gram_stain.html","gram stain"],["morphology/triangular_shaped.html","triangular shaped"]],"b":[["GO%3A0009279","cell outer membrane"],["GO%3A0031968","organelle outer membrane"],["GO%3A0043594","outer endospore membrane"],["GO%3A0019867","outer membrane"],["NCBIfam%3ANF047447","adhesin OmpL37 family surface protein"],["NCBIfam%3ANF007285","AIDA-I family autotransporter adhesin YfaL/EhaC"]]},{"id":"GO:0015948","l":"methanogenesis","na":3,"nb":82,"a":[["metabolism/acetoclastic_methanogenesis.html","acetoclastic methanogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/methyl_based_methanogenesis.html","methyl-based methanogenesis"]],"b":[["GO%3A0019385","methanogenesis, from acetate"],["GO%3A0019386","methanogenesis, from carbon dioxide"],["GO%3A0019387","methanogenesis, from methanol"],["GO%3A0015948","methanogenesis"],["proteintraitsmech%3ASEED_SUBSYSTEM_Methanogenesis","Methanogenesis"],["NCBIfam%3ATIGR03957","5,10-methenyltetrahydromethanopterin hydrogenase cofactor biosynthesis protein HmdB"]]},{"id":"CHEBI:29035","l":"manganese(2+)","na":3,"nb":44,"a":[["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/lignin_degradation.html","lignin degradation"],["metabolism/manganese_oxidation.html","manganese oxidation"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29035","requires manganese(2+)"],["EC%3A1.11.1.13","manganese peroxidase"],["EC%3A1.11.1.16","versatile peroxidase"],["EC%3A1.16.3.3","manganese oxidase"],["EC%3A7.2.2.22","P-type Mn(2+) transporter"],["EC%3A7.2.2.5","ABC-type Mn(2+) transporter"]]},{"id":"DOI:10.1126/science.aba0372","l":"","na":3,"nb":44,"a":[["genomics/avast_system.html","AVAST system"],["genomics/drt_system.html","DRT system"],["genomics/dsr_system.html","Dsr system"]],"b":[["NCBIfam%3ANF042963","anti-phage-associated DUF1156 domain-containing protein"],["NCBIfam%3ANF042961","anti-phage-associated DUF3780 domain-containing protein"],["NCBIfam%3ANF042962","anti-phage-associated DUF499 domain-containing protein"],["NCBIfam%3ANF042943","anti-phage-associated helicase HerA"],["NCBIfam%3ANF042944","anti-phage-associated helicase HerA"],["NCBIfam%3ANF042959","anti-phage ATPase IteA"]]},{"id":"GO:0004129","l":"cytochrome-c oxidase activity","na":3,"nb":41,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["other/oxidase_negative.html","oxidase negative"],["physiology/oxidase_activity.html","oxidase activity"]],"b":[["EC%3A7.1.1.9","cytochrome-c oxidase"],["METPO%3A1007086","oxidase negative"],["METPO%3A1007085","oxidase positive"],["RHEA%3A11436","4 Fe(II)-[cytochrome c] + O2 + 8 H(+)(in) = 4 Fe(III)-[cytochrome c] + 2 H2O + 4 H(+)(out)"],["ComplexPortal%3ACPX-1721","Mitochondrial respiratory chain complex IV, COX5A variant"],["ComplexPortal%3ACPX-1722","Mitochondrial respiratory chain complex IV, COX5B variant"]]},{"id":"GO:0009399","l":"nitrogen fixation","na":3,"nb":36,"a":[["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["metabolism/nitrogen_fixation.html","nitrogen fixation"],["morphology/heterocyst.html","heterocyst"]],"b":[["GO%3A0009399","nitrogen fixation"],["proteintraitsmech%3ASEED_SUBSYSTEM_Nitrogen_fixation","Nitrogen fixation"],["NCBIfam%3ATIGR02662","ADP-ribosyl-[dinitrogen reductase] hydrolase"],["NCBIfam%3ATIGR02931","Fe-only nitrogenase subunit beta"],["NCBIfam%3ATIGR02929","Fe-only nitrogenase subunit delta"],["NCBIfam%3ATIGR02000","Fe-S cluster assembly protein NifU"]]},{"id":"GO:0008422","l":"beta-glucosidase activity","na":3,"nb":31,"a":[["metabolism/biopolymer_degradation.html","biopolymer degradation"],["metabolism/cellulolysis.html","cellulolysis"],["physiology/beta_glucosidase_activity.html","beta-glucosidase activity"]],"b":[["EC%3A3.2.1.21","beta-glucosidase"],["RHEA%3A69655","quercetin 3-O-beta-D-glucoside + H2O = quercetin + beta-D-glucose"],["RHEA%3A69647","quercetin 4'-O-beta-D-glucoside + H2O = quercetin + beta-D-glucose"],["GO%3A0080081","4-methylumbelliferyl-beta-D-glucopyranoside beta-glucosidase activity"],["GO%3A0008706","6-phospho-beta-glucosidase activity"],["GO%3A0051993","abscisic acid glucose ester beta-glucosidase activity"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":3,"nb":20,"a":[["ecology/rhizosphere_association.html","rhizosphere association"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/psychrotolerant.html","psychrotolerant"]],"b":[["Pfam%3APF16822","SGNH hydrolase-like domain, acetyltransferase AlgX"],["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"],["Pfam%3APF11182","Alginate O-acetyl transferase AlgF"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF27129","Functional amyloid protein FapB/FapC family"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]]},{"id":"GO:0022611","l":"dormancy process","na":3,"nb":19,"a":[["physiology/dormancy.html","dormancy"],["physiology/persister_cell_formation.html","persister cell formation"],["physiology/viable_but_nonculturable_state.html","viable but nonculturable state"]],"b":[["GO%3A0097439","acquisition of desiccation tolerance"],["GO%3A0097207","bud dormancy process"],["GO%3A0085014","dormancy entry of symbiont in host"],["GO%3A0085016","dormancy exit of symbiont in host"],["GO%3A0085015","dormancy maintenance of symbiont in host"],["GO%3A0022611","dormancy process"]]},{"id":"CHEBI:17997","l":"dinitrogen","na":3,"nb":18,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["EC%3A1.18.6.1","nitrogenase"],["EC%3A1.18.6.2","vanadium-dependent nitrogenase"],["EC%3A1.19.6.1","nitrogenase (flavodoxin)"],["EC%3A1.7.2.4","nitrous-oxide reductase"],["EC%3A1.7.2.8","hydrazine dehydrogenase"],["RHEA%3A79967","3-diazoavenalumate + NADH + H(+) = avenalumate + N2 + NAD(+)"]]},{"id":"CHEBI:17579","l":"β-carotene","na":3,"nb":16,"a":[["metabolism/proteorhodopsin_phototrophy.html","proteorhodopsin phototrophy"],["morphology/orange_pigmented.html","orange pigmented"],["morphology/yellow_pigmented.html","yellow pigmented"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17579","requires β-carotene"],["EC%3A1.13.11.63","beta-carotene 15,15'-dioxygenase"],["EC%3A1.13.11.71","carotenoid-9',10'-cleaving dioxygenase"],["EC%3A1.14.15.24","beta-carotene 3-hydroxylase"],["EC%3A1.14.99.63","beta-carotene 4-ketolase"],["EC%3A5.2.1.14","beta-carotene isomerase"]]},{"id":"DOI:10.1038/nrmicro1235","l":"","na":3,"nb":15,"a":[["genomics/mobile_genetic_element.html","mobile genetic element"],["genomics/plasmid_carriage.html","plasmid carriage"],["genomics/transposable_element.html","transposable element"]],"b":[["NCBIfam%3ATIGR02750","type-F conjugative transfer system mating-pair stabilization protein TraN"],["NCBIfam%3ATIGR02755","type-F conjugative transfer system pilin acetylase TraX"],["NCBIfam%3ATIGR02739","type-F conjugative transfer system pilin assembly protein TraF"],["NCBIfam%3ATIGR02742","type-F conjugative transfer system pilin assembly protein TrbC"],["NCBIfam%3ATIGR02738","type-F conjugative transfer system pilin assembly thiol-disulfide isomerase TrbB"],["NCBIfam%3ATIGR02741","type-F conjugative transfer system pilin chaperone TraQ"]]},{"id":"CHEBI:16183","l":"methane","na":3,"nb":13,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/methanogenesis.html","Methanogenesis"],["physiology/methanotrophic.html","methanotrophic"]],"b":[["EC%3A1.14.13.25","methane monooxygenase (soluble)"],["EC%3A1.14.18.3","methane monooxygenase (particulate)"],["EC%3A2.8.4.1","coenzyme-B sulfoethylthiotransferase"],["EC%3A4.7.1.1","alpha-D-ribose 1-methylphosphonate 5-phosphate C-P-lyase"],["RHEA%3A34707","alpha-D-ribose 1-methylphosphonate 5-phosphate + AH2 + S-adenosyl-L-methionine = alpha-D-ribose 1,2-cyclic phosphate 5-phosphate + methane + 5'-deoxyadenosine + L-methionine + A + H(+)"],["RHEA%3A12532","coenzyme B + methyl-coenzyme M = methane + coenzyme M-coenzyme B heterodisulfide"]]},{"id":"GO:0060187","l":"cell pole","na":3,"nb":10,"a":[["morphology/amphitrichous.html","amphitrichous"],["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/lophotrichous.html","lophotrichous"]],"b":[["GO%3A0044225","apical pole of neuron"],["GO%3A0044226","basal pole of neuron"],["GO%3A0090712","basal pole of outer hair cell"],["GO%3A0060187","cell pole"],["GO%3A0051286","cell tip"],["GO%3A1990902","new cell pole"]]},{"id":"GO:0009325","l":"nitrate reductase complex","na":3,"nb":9,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]],"b":[["ComplexPortal%3ACPX-3447","NapAB nitrate reductase complex"],["ComplexPortal%3ACPX-5581","Nitrate reductase Z complex"],["GO%3A0044799","NarGHI complex"],["GO%3A0009325","nitrate reductase complex"],["NCBIfam%3ATIGR01580","nitrate reductase subunit alpha"],["NCBIfam%3ATIGR01660","nitrate reductase subunit beta"]]},{"id":"InterPro:IPR033966","l":"","na":9,"nb":3,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["physiology/autotrophic.html","autotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"]],"b":[["SFLD%3ASFLDS00014","RuBisCO"],["PANTHER%3APTHR42704","RIBULOSE BISPHOSPHATE CARBOXYLASE"],["PROSITE%3APS00157","Ribulose bisphosphate carboxylase large chain active site"]]},{"id":"NCBITaxon:1314","l":"Streptococcus pyogenes","na":3,"nb":9,"a":[["environment/aerotolerant.html","aerotolerant"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"],["morphology/streptococcus_arrangement.html","streptococcus arrangement"]],"b":[["Pfam%3APF13585","CHU_C Type IX secretion signal domain"],["Pfam%3APF24547","Domain of unknown function (DUF7601)"],["Pfam%3APF08998","Bacterial epsilon antitoxin"],["Pfam%3APF06280","Fn3-like domain"],["Pfam%3APF02274","Arginine deiminase"],["Pfam%3APF13734","Spi protease inhibitor"]]},{"id":"NCBITaxon:210","l":"Helicobacter pylori","na":3,"nb":9,"a":[["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/helical_shaped.html","helical shaped"],["morphology/lophotrichous.html","lophotrichous"]],"b":[["Pfam%3APF18025","Alpha-(1,3)-fucosyltransferase FucT N-terminal domain"],["Pfam%3APF18971","CagA protein"],["Pfam%3APF03507","CagA exotoxin phosphopeptide substrate mimic region"],["Pfam%3APF02691","Vacuolating cyotoxin beta-helical domain"],["TED%3AAF-A0A2T6UWI4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T6UWI4-F1-model_v4_TED01"],["TED%3AAF-A0A1Q9JB12-F1-model_v4_TED01","TED novel fold AF-A0A1Q9JB12-F1-model_v4_TED01"]]},{"id":"GO:0019491","l":"ectoine biosynthetic process","na":3,"nb":8,"a":[["environment/euryhaline.html","euryhaline"],["environment/halotolerant.html","halotolerant"],["environment/slightly_halophilic.html","slightly halophilic"]],"b":[["GO%3A0019491","ectoine biosynthetic process"],["proteintraitsmech%3ASEED_SUBSYSTEM_Ectoine_synthesis","Ectoine synthesis"],["NCBIfam%3ATIGR00709","diaminobutyrate--2-oxoglutarate transaminase family protein"],["NCBIfam%3ATIGR02407","diaminobutyrate--2-oxoglutarate transaminase"],["NCBIfam%3ATIGR02406","diaminobutyrate acetyltransferase"],["NCBIfam%3ANF009806","ectoine synthase"]]},{"id":"GO:0031456","l":"glycine betaine biosynthetic process","na":3,"nb":8,"a":[["environment/euryhaline.html","euryhaline"],["environment/halotolerant.html","halotolerant"],["environment/nacl_range_low.html","NaCl range low"]],"b":[["GO%3A0031456","glycine betaine biosynthetic process"],["NCBIfam%3ANF009725","betaine-aldehyde dehydrogenase"],["NCBIfam%3ATIGR01804","betaine-aldehyde dehydrogenase"],["NCBIfam%3ATIGR03384","choline-binding transcriptional repressor BetI"],["NCBIfam%3ANF053866","choline dehydrogenase"],["NCBIfam%3ATIGR01810","choline dehydrogenase"]]},{"id":"GO:0006636","l":"unsaturated fatty acid biosynthetic process","na":3,"nb":7,"a":[["environment/pressure_range.html","pressure range"],["environment/temperature_delta_high.html","temperature delta high"],["environment/thermotolerant.html","thermotolerant"]],"b":[["GO%3A2001303","lipoxin A4 biosynthetic process"],["GO%3A2001306","lipoxin B4 biosynthetic process"],["GO%3A2001280","positive regulation of unsaturated fatty acid biosynthetic process"],["GO%3A0046457","prostanoid biosynthetic process"],["GO%3A1902609","(R)-2-hydroxy-alpha-linolenic acid biosynthetic process"],["GO%3A2001279","regulation of unsaturated fatty acid biosynthetic process"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":3,"nb":7,"a":[["environment/anaerobic.html","anaerobic"],["environment/strictly_anaerobic.html","strictly anaerobic"],["metabolism/fumarate_respiration.html","fumarate respiration"]],"b":[["Pfam%3APF16376","N-terminal domain of fragilysin"],["MCSA%3A15","beta-lactamase (Class B1)"],["TED%3AAF-A0A412XR06-F1-model_v4_TED03","TED novel fold AF-A0A412XR06-F1-model_v4_TED03"],["TED%3AAF-A0A4V1EUI2-F1-model_v4_TED02","TED novel fold AF-A0A4V1EUI2-F1-model_v4_TED02"],["TED%3AAF-A0A5C6IXH5-F1-model_v4_TED01","TED novel fold AF-A0A5C6IXH5-F1-model_v4_TED01"],["TED%3AAF-A0A5C6L6G9-F1-model_v4_TED02","TED novel fold AF-A0A5C6L6G9-F1-model_v4_TED02"]]},{"id":"GO:0070224","l":"sulfide:quinone oxidoreductase activity","na":3,"nb":6,"a":[["metabolism/sulfur_oxidation.html","sulfur oxidation"],["morphology/sulfur_globule.html","sulfur globule"],["physiology/lithoheterotrophic.html","lithoheterotrophic"]],"b":[["EC%3A1.8.5.4","bacterial sulfide:quinone reductase"],["RHEA%3A30239","n a quinone + n hydrogen sulfide + n H(+) = polysulfur(n-2) + n a quinol"],["GO%3A0070224","sulfide:quinone oxidoreductase activity"],["MCSA%3A320","sulfide:quinone oxidoreductase"],["proteintraitsmech%3ABIOLIP_PS9","PS9-binding site"],["proteintraitsmech%3ABIOLIP_S3H","S3H-binding site"]]},{"id":"METPO:1000800","l":"respiration","na":6,"nb":3,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/fermentation.html","Fermentation"],["metabolism/respiration.html","respiration"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"]],"b":[["METPO%3A1000801","Aerobic respiration"],["METPO%3A1000802","Anaerobic respiration"],["METPO%3A1000800","respiration"]]},{"id":"NCBITaxon:381666","l":"Cupriavidus necator H16","na":6,"nb":3,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"],["physiology/autotrophic.html","autotrophic"],["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["Pfam%3APF13473","Cupredoxin-like domain"],["Pfam%3APF10605","3HB-oligomer hydrolase (3HBOH)"],["Pfam%3APF21783","YNCE-like beta-propeller"]]},{"id":"UniProt:P27988","l":"","na":3,"nb":6,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"]],"b":[["Pfam%3APF18537","Carbon monoxide dehydrogenase subunit alpha N-terminal domain"],["proteintraitsmech%3AMETALPDB_CU_HEXANUCLEAR","hexanuclear copper site"],["proteintraitsmech%3AMETALPDB_FE_HEXANUCLEAR","hexanuclear iron site"],["proteintraitsmech%3AMETALPDB_NI_HEXANUCLEAR","hexanuclear nickel site"],["proteintraitsmech%3AMETALPDB_ZN_HEXANUCLEAR","hexanuclear zinc site"],["proteintraitsmech%3AMETALPDB_ZN_PENTANUCLEAR","pentanuclear zinc site"]]},{"id":"DOI:10.1023/A","l":"","na":3,"nb":5,"a":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"]],"b":[["RHEA%3A24780","C-13(2)-carboxypyropheophorbide a + H(+) = pyropheophorbide a + CO2"],["RHEA%3A24776","pheophorbide a + H2O = C-13(2)-carboxypyropheophorbide a + methanol"],["RHEA%3A32483","pheophorbide a + H2O + H(+) = pyropheophorbide a + methanol + CO2"],["InterPro%3AIPR006151","Quinate/shikimate 5-dehydrogenase/glutamyl-tRNA reductase"],["InterPro%3AIPR036559","Bacteriochlorophyll A superfamily"]]},{"id":"DOI:10.1038/ncomms4842","l":"","na":5,"nb":3,"a":[["morphology/diplococcus_shaped.html","diplococcus shaped"],["morphology/sarcina_arrangement.html","sarcina arrangement"],["morphology/staphylococcus_arrangement.html","staphylococcus arrangement"],["morphology/streptococcus_arrangement.html","streptococcus arrangement"],["morphology/tetrad_arrangement.html","tetrad arrangement"]],"b":[["NCBIfam%3ANF046104","peptidoglycan hydrolase PcsB"],["InterPro%3AIPR057309","Peptidoglycan hydrolase PcsB, coiled-coil domain"],["NCBIfam%3ANF048395","PcsB-like coiled-coil domain-containing protein"]]},{"id":"NCBITaxon:1525","l":"Neomoorella thermoacetica","na":3,"nb":5,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"]],"b":[["Pfam%3APF25461","Selenocysteine-specific elongation factor, beta-barrel domain"],["Pfam%3APF18537","Carbon monoxide dehydrogenase subunit alpha N-terminal domain"],["Pfam%3APF04060","Putative Fe-S cluster"],["Pfam%3APF03599","CO dehydrogenase/acetyl-CoA synthase delta subunit"],["MCSA%3A385","formyltetrahydrofolate synthetase"]]},{"id":"NCBITaxon:920","l":"Acidithiobacillus ferrooxidans","na":5,"nb":3,"a":[["environment/obligately_acidophilic.html","obligately acidophilic"],["environment/ph_range_low.html","pH range low"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["Pfam%3APF20538","Family of unknown function (DUF6753)"],["PROSITE%3APS01007","Transposases, Mutator family, signature"],["MCSA%3A371","3-isopropylmalate dehydrogenase"]]},{"id":"DOI:10.1146/annurev.genet.30.1.297","l":"","na":4,"nb":3,"a":[["morphology/non_spore_forming.html","non-spore forming"],["morphology/spore_forming.html","spore forming"],["morphology/spore_shaped.html","spore shaped"],["morphology/sporulation.html","sporulation"]],"b":[["NCBIfam%3ANF016201","SpoVR family protein"],["InterPro%3AIPR056174","SpoVR protein-like, N-terminal"],["NCBIfam%3ANF049815","SpoVR-like C-terminal domain"]]},{"id":"GO:0008776","l":"acetate kinase activity","na":3,"nb":4,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["EC%3A2.7.2.1","acetate kinase"],["RHEA%3A11352","acetate + ATP = acetyl phosphate + ADP"],["GO%3A0008776","acetate kinase activity"],["MCSA%3A643","acetate kinase"]]},{"id":"GO:0018597","l":"ammonia monooxygenase activity","na":3,"nb":4,"a":[["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["EC%3A1.14.99.39","ammonia monooxygenase"],["RHEA%3A27341","AH2 + NH4(+) + O2 = hydroxylamine + A + H2O + H(+)"],["GO%3A0018597","ammonia monooxygenase activity"],["NCBIfam%3ANF041557","bacterial ammonia monooxygenase, subunit AmoA"]]},{"id":"InterPro:IPR001182","l":"","na":4,"nb":3,"a":[["morphology/fusiform_shaped.html","fusiform shaped"],["morphology/oval_shaped.html","oval shaped"],["morphology/prosthecate.html","prosthecate"],["morphology/tailed_shaped.html","tailed shaped"]],"b":[["PANTHER%3APTHR30474","CELL CYCLE PROTEIN"],["Pfam%3APF01098","Cell cycle protein"],["PROSITE%3APS00428","Cell cycle proteins ftsW / rodA / spoVE signature"]]},{"id":"NCBITaxon:431944","l":"Magnetospirillum gryphiswaldense MSR-1","na":3,"nb":4,"a":[["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/magnetosome.html","magnetosome"],["physiology/magnetotaxis.html","magnetotaxis"]],"b":[["Pfam%3APF12728","Helix-turn-helix domain"],["IEDB%3A158794","epitope GKMVAPSFTAEEKAQK"],["Pfam%3APF04011","LemA family"],["Pfam%3APF07219","HemY protein N-terminus"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":3,"nb":4,"a":[["ecology/mutualism.html","mutualism"],["physiology/bioluminescence.html","bioluminescence"],["physiology/quorum_sensing.html","quorum sensing"]],"b":[["PROSITE%3APS00949","Autoinducer synthase family signature"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"],["PROSITE%3APS00607","cAMP phosphodiesterases class-II signature"],["TED%3AAF-A0A844NWZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A844NWZ1-F1-model_v4_TED02"]]},{"id":"GO:0016689","l":"manganese peroxidase activity","na":3,"nb":3,"a":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/lignin_degradation.html","lignin degradation"],["metabolism/manganese_oxidation.html","manganese oxidation"]],"b":[["EC%3A1.11.1.13","manganese peroxidase"],["RHEA%3A22776","2 Mn(2+) + H2O2 + 2 H(+) = 2 Mn(3+) + 2 H2O"],["GO%3A0016689","manganese peroxidase activity"]]},{"id":"METPO:1000731","l":"nutrient adaptation","na":3,"nb":3,"a":[["physiology/copiotrophic.html","copiotrophic"],["physiology/nutrient_adaptation.html","nutrient adaptation"],["physiology/oligotrophic.html","oligotrophic"]],"b":[["METPO%3A1000642","copiotrophic"],["METPO%3A1000731","nutrient adaptation"],["METPO%3A1000654","oligotrophic"]]},{"id":"METPO:1005010","l":"indole test","na":3,"nb":3,"a":[["other/indole_test.html","indole test"],["other/indole_test_negative.html","indole test negative"],["other/indole_test_positive.html","indole test positive"]],"b":[["METPO%3A1005010","indole test"],["METPO%3A1005012","indole test negative"],["METPO%3A1005011","indole test positive"]]},{"id":"METPO:1005013","l":"methyl red test","na":3,"nb":3,"a":[["other/methyl_red_test.html","methyl red test"],["other/methyl_red_test_negative.html","methyl red test negative"],["other/methyl_red_test_positive.html","methyl red test positive"]],"b":[["METPO%3A1005013","methyl red test"],["METPO%3A1005015","methyl red test negative"],["METPO%3A1005014","methyl red test positive"]]},{"id":"METPO:1005016","l":"Voges-Proskauer test","na":3,"nb":3,"a":[["other/voges_proskauer_test.html","Voges-Proskauer test"],["other/voges_proskauer_test_negative.html","Voges-Proskauer test negative"],["other/voges_proskauer_test_positive.html","Voges-Proskauer test positive"]],"b":[["METPO%3A1005016","Voges-Proskauer test"],["METPO%3A1005018","Voges-Proskauer test negative"],["METPO%3A1005017","Voges-Proskauer test positive"]]},{"id":"METPO:1007089","l":"coagulase activity","na":3,"nb":3,"a":[["other/coagulase_negative.html","coagulase negative"],["other/coagulase_positive.html","coagulase positive"],["physiology/coagulase_activity.html","coagulase activity"]],"b":[["METPO%3A1007089","coagulase activity"],["METPO%3A1007091","coagulase negative"],["METPO%3A1007090","coagulase positive"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":3,"nb":3,"a":[["environment/aerobic.html","aerobic"],["environment/obligately_aerobic.html","obligately aerobic"],["morphology/tetrad_arrangement.html","tetrad arrangement"]],"b":[["Pfam%3APF22538","Hexaprenyl diphosphate synthase, small subunit"],["PROSITE%3APS01066","Undecaprenyl pyrophosphate synthase family signature"],["MCSA%3A543","ditrans,polycis-undecaprenyl-diphosphate synthase [(2E,6E)-farnesyl-diphosphate specific]"]]},{"id":"NCBITaxon:2257","l":"Natronomonas pharaonis","na":3,"nb":3,"a":[["environment/alkaphilic.html","alkaliphilic"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/obligately_alkaphilic.html","obligately alkaliphilic"]],"b":[["Pfam%3APF17909","Htr2 transmembrane domain"],["PROSITE%3APS00950","Bacterial rhodopsins signature 1"],["PROSITE%3APS00327","Bacterial rhodopsins retinal binding site"]]},{"id":"UniProt:P10717","l":"","na":3,"nb":3,"a":[["physiology/photoheterotrophic.html","photoheterotrophic"],["physiology/photoorganoheterotrophic.html","photoorganoheterotrophic"],["physiology/phototrophic.html","phototrophic"]],"b":[["proteintraitsmech%3ABIOLIP_07D","07D-binding site"],["proteintraitsmech%3ABIOLIP_08I","08I-binding site"],["proteintraitsmech%3ABIOLIP_RQ0","RQ0-binding site"]]},{"id":"UniProt:Q04507","l":"","na":3,"nb":3,"a":[["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["EC%3A1.14.99.39","ammonia monooxygenase"],["RHEA%3A27341","AH2 + NH4(+) + O2 = hydroxylamine + A + H2O + H(+)"],["Pfam%3APF02461","Ammonia monooxygenase"]]},{"id":"GO:0009058","l":"biosynthetic process","na":2,"nb":733,"a":[["metabolism/metabolism.html","metabolism"],["physiology/heterotrophic.html","heterotrophic"]],"b":[["GO%3A1901852","7,8-didemethyl-8-hydroxy-5-deazariboflavin biosynthetic process"],["GO%3A0008292","acetylcholine biosynthetic process"],["GO%3A0046184","aldehyde biosynthetic process"],["GO%3A0019428","allantoin biosynthetic process"],["GO%3A0009309","amine biosynthetic process"],["GO%3A0008652","amino acid biosynthetic process"]]},{"id":"CHEBI:17499","l":"","na":2,"nb":633,"a":[["metabolism/electron_transfer.html","Electron transfer"],["metabolism/respiration.html","respiration"]],"b":[["EC%3A1.1.99.1","choline dehydrogenase"],["EC%3A1.1.99.12","sorbose dehydrogenase"],["EC%3A1.1.99.13","glucoside 3-dehydrogenase (acceptor)"],["EC%3A1.1.99.14","glycolate dehydrogenase"],["EC%3A1.1.99.18","cellobiose dehydrogenase (acceptor)"],["EC%3A1.1.99.2","L-2-hydroxyglutarate dehydrogenase"]]},{"id":"GO:0004252","l":"serine-type endopeptidase activity","na":2,"nb":281,"a":[["physiology/alpha_chymotrypsin_activity.html","alpha-chymotrypsin activity"],["physiology/trypsin_activity.html","trypsin activity"]],"b":[["EC%3A3.4.21.1","chymotrypsin"],["EC%3A3.4.21.10","acrosin"],["EC%3A3.4.21.102","C-terminal processing peptidase"],["EC%3A3.4.21.20","cathepsin G"],["EC%3A3.4.21.21","coagulation factor VIIa"],["EC%3A3.4.21.22","coagulation factor IXa"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":2,"nb":212,"a":[["physiology/methanotrophic.html","methanotrophic"],["physiology/methylotrophic.html","methylotrophic"]],"b":[["EC%3A1.1.1.244","methanol dehydrogenase"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.99.37","methanol dehydrogenase (nicotinoprotein)"],["EC%3A1.13.11.94","4-vinylguaiacol dioxygenase"],["EC%3A1.14.11.27","[histone H3]-dimethyl-L-lysine(36) demethylase"]]},{"id":"GO:0008233","l":"peptidase activity","na":2,"nb":141,"a":[["physiology/caseinase_activity.html","caseinase activity"],["physiology/gelatinase_activity.html","gelatinase activity"]],"b":[["ComplexPortal%3ACPX-9002","PA28-alphabeta single-capped 20S proteasome complex"],["ComplexPortal%3ACPX-9022","PA28-gamma double-capped 20S proteasome complex"],["ComplexPortal%3ACPX-9001","PA28-gamma single-capped 20S proteasome complex"],["ComplexPortal%3ACPX-3785","Tryptase alpha/beta-1 complex"],["ComplexPortal%3ACPX-3804","Tryptase alpha/beta-1 complex"],["ComplexPortal%3ACPX-3805","Tryptase beta-2 complex"]]},{"id":"CHEBI:16452","l":"","na":2,"nb":117,"a":[["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["EC%3A1.1.1.299","malate dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.1.37","(S)-malate dehydrogenase (NAD(+), oxaloacetate-forming)"],["EC%3A1.1.1.38","malate dehydrogenase (oxaloacetate-decarboxylating)"],["EC%3A1.1.1.40","malate dehydrogenase (oxaloacetate-decarboxylating) (NADP(+))"],["EC%3A1.1.1.82","malate dehydrogenase (NADP(+))"],["EC%3A1.1.5.4","malate dehydrogenase (quinone)"]]},{"id":"GO:0006099","l":"tricarboxylic acid cycle","na":2,"nb":92,"a":[["physiology/heterotrophic.html","heterotrophic"],["physiology/organoheterotrophic.html","organoheterotrophic"]],"b":[["ComplexPortal%3ACPX-3921","2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-9044","Mitochondrial 2-oxoglutarate dehydrogenase complex,CG1544 variant"],["ComplexPortal%3ACPX-9043","Mitochondrial 2-oxoglutarate dehydrogenase complex, CG33791 variant"],["ComplexPortal%3ACPX-1293","Mitochondrial 2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-9061","Mitochondrial 2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-9042","Mitochondrial 2-oxoglutarate dehydrogenase complex, ODGH variant"]]},{"id":"CHEBI:17790","l":"methanol","na":2,"nb":86,"a":[["physiology/methanotrophic.html","methanotrophic"],["physiology/methylotrophic.html","methylotrophic"]],"b":[["EC%3A1.1.1.244","methanol dehydrogenase"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.99.37","methanol dehydrogenase (nicotinoprotein)"],["EC%3A1.14.13.25","methane monooxygenase (soluble)"],["EC%3A1.14.14.117","aflatoxin B synthase"]]},{"id":"GO:0006302","l":"double-strand break repair","na":2,"nb":85,"a":[["environment/desiccation_tolerant.html","desiccation tolerant"],["environment/ionizing_radiation_tolerant.html","ionizing radiation tolerant"]],"b":[["ComplexPortal%3ACPX-10302","MRN double-strand break repair complex"],["ComplexPortal%3ACPX-1872","MRX double-strand break repair complex"],["ComplexPortal%3ACPX-511","MUS81-EME1 structure-specific endonuclease complex"],["ComplexPortal%3ACPX-585","MUS81-EME1 structure-specific endonuclease complex"],["ComplexPortal%3ACPX-586","MUS81-EME2 structure-specific endonuclease complex"],["ComplexPortal%3ACPX-587","MUS81-EME2 structure-specific endonuclease complex"]]},{"id":"GO:0051607","l":"defense response to virus","na":2,"nb":80,"a":[["genomics/crispr_cas_system.html","CRISPR-Cas system"],["genomics/phage_defense_system.html","phage defense system"]],"b":[["UniProtKB-KW%3AKW-0051","Antiviral defense"],["ComplexPortal%3ACPX-4142","AIM2 inflammasome"],["ComplexPortal%3ACPX-4243","AIM2 inflammasome"],["ComplexPortal%3ACPX-6037","MAVS-TRAF3 E3 ubiquitin ligase complex"],["ComplexPortal%3ACPX-2128","Sting complex"],["ComplexPortal%3ACPX-6018","STING-TRAF3-TBK1 complex"]]},{"id":"GO:0071973","l":"bacterial-type flagellum-dependent cell motility","na":2,"nb":60,"a":[["ecology/soil_dwelling.html","soil-dwelling"],["morphology/swarming_motility.html","swarming motility"]],"b":[["ComplexPortal%3ACPX-4886","DNA-directed RNA polymerase holoenzyme complex, SigmaF variant"],["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["GO%3A0071973","bacterial-type flagellum-dependent cell motility"],["GO%3A0071978","bacterial-type flagellum-dependent swarming motility"]]},{"id":"CHEBI:33542","l":"","na":2,"nb":38,"a":[["metabolism/disproportionation.html","Disproportionation"],["physiology/chemolithotrophic.html","chemolithotrophic"]],"b":[["EC%3A1.8.2.2","thiosulfate dehydrogenase"],["EC%3A1.8.2.5","thiosulfate reductase (cytochrome)"],["EC%3A1.8.5.2","thiosulfate dehydrogenase (quinone)"],["EC%3A1.8.5.5","thiosulfate reductase (quinone)"],["EC%3A2.5.1.144","S-sulfo-L-cysteine synthase (O-acetyl-L-serine-dependent)"],["EC%3A2.8.1.1","thiosulfate sulfurtransferase"]]},{"id":"GO:0004022","l":"alcohol dehydrogenase (NAD+) activity","na":2,"nb":38,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["physiology/nad_dependent_alcohol_dehydrogenase_activity.html","NAD-dependent alcohol dehydrogenase activity"]],"b":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["RHEA%3A10736","a primary alcohol + NAD(+) = an aldehyde + NADH + H(+)"],["RHEA%3A10740","a secondary alcohol + NAD(+) = a ketone + NADH + H(+)"],["GO%3A0106429","11-cis-retinol dehydrogenase (NAD+) activity"],["GO%3A0052676","3-methylbutanal reductase (NADH) activity"],["GO%3A0004022","alcohol dehydrogenase (NAD+) activity"]]},{"id":"GO:0016805","l":"dipeptidase activity","na":2,"nb":36,"a":[["physiology/glutamyl_glutamic_acid_arylamidase_activity.html","glutamyl glutamic acid arylamidase activity"],["physiology/leucyl_glycine_arylamidase_activity.html","leucyl glycine arylamidase activity"]],"b":[["EC%3A3.4.13.18","cytosol non-specific dipeptidase"],["EC%3A3.4.13.19","membrane dipeptidase"],["EC%3A3.4.13.21","dipeptidase E"],["GO%3A0160237","D-Ala-D-Ala dipeptidase activity"],["GO%3A0016805","dipeptidase activity"],["GO%3A0070573","metallodipeptidase activity"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":2,"nb":34,"a":[["genomics/gc_mid1.html","GC mid1"],["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["Pfam%3APF25848","Rodlin protein"],["Pfam%3APF13420","Acetyltransferase (GNAT) domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF26381","BREX System ATPase PglY protein 5th domain"],["Pfam%3APF26382","BREX System ATPase PglY protein 6th domain"]]},{"id":"GO:0016298","l":"lipase activity","na":2,"nb":33,"a":[["metabolism/lipolysis.html","lipolysis"],["physiology/lipase_activity.html","lipase activity"]],"b":[["GO%3A0120516","diacylglycerol lipase activity"],["GO%3A0047714","galactolipase activity"],["GO%3A0016298","lipase activity"],["GO%3A0047372","monoacylglycerol lipase activity"],["GO%3A0120569","phospholipase activity"],["GO%3A0004771","sterol ester esterase activity"]]},{"id":"CHEBI:36242","l":"","na":2,"nb":32,"a":[["morphology/black_pigmented.html","black pigmented"],["morphology/brown_pigmented.html","brown pigmented"]],"b":[["EC%3A1.1.1.110","aromatic 2-oxoacid reductase"],["EC%3A1.1.1.237","hydroxyphenylpyruvate reductase"],["EC%3A1.13.11.27","4-hydroxyphenylpyruvate dioxygenase"],["EC%3A1.13.11.46","4-hydroxymandelate synthase"],["EC%3A1.2.3.13","4-hydroxyphenylpyruvate oxidase"],["EC%3A1.3.1.12","prephenate dehydrogenase"]]},{"id":"CHEBI:16236","l":"ethanol","na":2,"nb":31,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]],"b":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.5.5","alcohol dehydrogenase (quinone)"],["EC%3A1.1.99.36","alcohol dehydrogenase (nicotinoprotein)"],["EC%3A2.3.1.268","ethanol O-acetyltransferase"],["EC%3A3.1.1.113","ethyl acetate hydrolase"],["EC%3A3.1.1.67","fatty-acyl-ethyl-ester synthase"]]},{"id":"NCBITaxon:243273","l":"Mycoplasmoides genitalium (strain ATCC 33530 / DSM 19775 / NCTC 10195 / G37)","na":2,"nb":31,"a":[["genomics/gc_high.html","GC high"],["genomics/genome_size.html","genome size"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF03257","Mycoplasma adhesin P1, C-terminal"],["Pfam%3APF09185","Domain of unknown function (DUF1948)"],["Pfam%3APF09188","Domain of unknown function (DUF1951)"],["Pfam%3APF03072","Domain of unknown function (DUF237)"],["Pfam%3APF03086","Domain of unknown function (DUF240)"]]},{"id":"GO:0008810","l":"cellulase activity","na":2,"nb":28,"a":[["metabolism/biopolymer_degradation.html","biopolymer degradation"],["metabolism/cellulolysis.html","cellulolysis"]],"b":[["EC%3A3.2.1.4","cellulase"],["GO%3A0008810","cellulase activity"],["InterPro%3AIPR005087","Carbohydrate binding module family 11"],["InterPro%3AIPR005086","Carbohydrate binding module family 17/28"],["InterPro%3AIPR004197","Cellulase, Ig-like domain"],["InterPro%3AIPR000334","Glycoside hydrolase, family 45"]]},{"id":"GO:0051139","l":"metal cation:proton antiporter activity","na":2,"nb":26,"a":[["environment/alkalotolerant.html","alkalotolerant"],["environment/neutrophilic.html","neutrophilic"]],"b":[["GO%3A0015369","calcium:proton antiporter activity"],["GO%3A0010348","lithium:proton antiporter activity"],["GO%3A0010486","manganese:proton antiporter activity"],["GO%3A0051139","metal cation:proton antiporter activity"],["GO%3A0015386","potassium:proton antiporter activity"],["GO%3A0015385","sodium:proton antiporter activity"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":2,"nb":26,"a":[["genomics/ploidy.html","ploidy"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["Pfam%3APF13372","Alginate export"],["Pfam%3APF25965","ALG44 beta-barrel domain"],["Pfam%3APF25964","ALG44, barrel-sandwich hybrid domain"],["Pfam%3APF16844","Dinitrogenase iron-molybdenum cofactor, N-terminal"],["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"]]},{"id":"GO:1990573","l":"potassium ion import across plasma membrane","na":2,"nb":25,"a":[["environment/nacl_delta.html","NaCl delta"],["environment/nacl_delta_mid1.html","NaCl delta mid1"]],"b":[["ComplexPortal%3ACPX-260","HCN1 channel complex"],["ComplexPortal%3ACPX-142","HCN2 channel complex"],["ComplexPortal%3ACPX-270","HCN3 channel complex"],["ComplexPortal%3ACPX-139","HCN4 channel complex"],["ComplexPortal%3ACPX-186","Inward rectifying potassium channel complex, Kir6.2-SUR1"],["ComplexPortal%3ACPX-194","Inward rectifying potassium channel complex, Kir6.2-SUR1"]]},{"id":"GO:0004089","l":"carbonate dehydratase activity","na":2,"nb":24,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["physiology/urease_activity.html","urease activity"]],"b":[["EC%3A4.2.1.1","carbonic anhydrase"],["RHEA%3A10748","hydrogencarbonate + H(+) = CO2 + H2O"],["GO%3A0004089","carbonate dehydratase activity"],["NCBIfam%3ANF007756","carbonate dehydratase"],["NCBIfam%3ANF011765","carbonic anhydrase family protein"],["NCBIfam%3ANF040597","carbonic anhydrase"]]},{"id":"UniProt:P0AE67","l":"","na":2,"nb":24,"a":[["morphology/motile.html","motile"],["physiology/chemotaxis.html","chemotaxis"]],"b":[["ComplexPortal%3ACPX-1077","Chemotaxis phosphorelay complex CheA-CheY"],["ComplexPortal%3ACPX-1088","Chemotaxis phosphorelay complex CheY-CheZ"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009433","bacterial-type flagellum basal body, C ring"],["GO%3A0009288","bacterial-type flagellum"],["GO%3A0120107","bacterial-type flagellum rotor complex"]]},{"id":"CHEBI:15429","l":"","na":2,"nb":23,"a":[["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["EC%3A1.14.99.39","ammonia monooxygenase"],["EC%3A1.3.7.8","benzoyl-CoA reductase"],["EC%3A1.7.1.10","hydroxylamine reductase (NADH)"],["EC%3A1.7.1.5","hyponitrite reductase"],["EC%3A1.7.2.6","hydroxylamine dehydrogenase"],["EC%3A1.7.2.9","hydroxylamine oxidase"]]},{"id":"CHEBI:29105","l":"zinc(2+)","na":2,"nb":20,"a":[["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/zinc_tolerant.html","zinc tolerant"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29105","requires zinc(2+)"],["EC%3A7.2.2.12","P-type Zn(2+) transporter"],["EC%3A7.2.2.20","ABC-type Zn(2+) transporter"],["RHEA%3A62264","selenite(out) + Zn(2+)(out) + hydrogencarbonate(out) = selenite(in) + Zn(2+)(in) + hydrogencarbonate(in)"],["RHEA%3A72627","Zn(2+)(in) + 2 H(+)(out) = Zn(2+)(out) + 2 H(+)(in)"],["RHEA%3A20621","Zn(2+)(in) + ATP + H2O = Zn(2+)(out) + ADP + phosphate + H(+)"]]},{"id":"CHEBI:18421","l":"","na":2,"nb":19,"a":[["environment/microaerotolerant.html","microaerotolerant"],["environment/obligately_aerobic.html","obligately aerobic"]],"b":[["EC%3A1.10.3.17","superoxide oxidase"],["EC%3A1.15.1.1","superoxide dismutase"],["EC%3A1.15.1.2","superoxide reductase"],["RHEA%3A80515","2,4,6-trinitrotoluene radical + O2 = 2,4,6-trinitrotoluene + superoxide + H(+)"],["RHEA%3A20696","2 superoxide + 2 H(+) = H2O2 + O2"],["RHEA%3A29179","a menaquinol + 2 O2 = 2 superoxide + a menaquinone + 2 H(+)"]]},{"id":"GO:0009039","l":"urease activity","na":2,"nb":19,"a":[["other/urease_negative.html","urease negative"],["physiology/urease_activity.html","urease activity"]],"b":[["EC%3A3.5.1.5","urease"],["METPO%3A1007088","urease negative"],["METPO%3A1007087","urease positive"],["RHEA%3A20557","urea + 2 H2O + H(+) = hydrogencarbonate + 2 NH4(+)"],["GO%3A0009039","urease activity"],["NCBIfam%3ANF009685","urease subunit alpha"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":2,"nb":19,"a":[["genomics/crispr_cas_system.html","CRISPR-Cas system"],["genomics/phage_defense_system.html","phage defense system"]],"b":[["Pfam%3APF03306","Alpha-acetolactate decarboxylase"],["Pfam%3APF22208","Cas_Csm6 CARF domain"],["Pfam%3APF09659","Cas_Csm6 HEPN domain"],["Pfam%3APF22335","Cas10/Cmr2, second palm domain"],["Pfam%3APF18395","Cas3 C-terminal domain"],["Pfam%3APF18019","Cas3, HD domain"]]},{"id":"DOI:10.1016/j.chom.2022.09.017","l":"","na":18,"nb":2,"a":[["genomics/aditi_system.html","Aditi system"],["genomics/azaca_system.html","Azaca system"],["genomics/borvo_system.html","Borvo system"],["genomics/bunzi_system.html","Bunzi system"],["genomics/dazbog_system.html","Dazbog system"],["genomics/dodola_system.html","Dodola system"]],"b":[["InterPro%3AIPR059687","BilA, ubiquitin-like domain 2"],["PROSITE%3APDOC52055","Bacterial ISG15-like (Bil) ubiquitin-like"]]},{"id":"GO:0031411","l":"gas vesicle","na":2,"nb":18,"a":[["morphology/gas_vesicle.html","gas vesicle"],["morphology/intracellular_inclusion.html","intracellular inclusion"]],"b":[["GO%3A0031411","gas vesicle"],["NCBIfam%3ANF041667","gas vesicle accessory protein GvpU"],["NCBIfam%3ANF046092","gas vesicle protein GvpA"],["NCBIfam%3ANF045779","gas vesicle protein GvpG"],["NCBIfam%3ANF046090","gas vesicle protein GvpJ"],["NCBIfam%3ANF045778","gas vesicle protein GvpL"]]},{"id":"UniProt:P13445","l":"","na":2,"nb":15,"a":[["physiology/stress_response.html","stress response"],["physiology/viable_but_nonculturable_state.html","viable but nonculturable state"]],"b":[["ComplexPortal%3ACPX-4883","DNA-directed RNA polymerase holoenzyme complex, SigmaS variant"],["ComplexPortal%3ACPX-5024","rpoS-rssB sigma-antisigma complex"],["GO%3A1903865","sigma factor antagonist complex"],["GO%3A0001000","bacterial-type RNA polymerase core enzyme binding"],["GO%3A0016987","sigma factor activity"],["GO%3A0006352","DNA-templated transcription initiation"]]},{"id":"CHEBI:15846","l":"NAD(+)","na":2,"nb":14,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15846","requires NAD+"],["ARO%3A3002846","arr-1"],["ARO%3A3002847","arr-2"],["ARO%3A3002848","arr-3"],["ARO%3A3002849","arr-4"],["ARO%3A3002850","arr-5"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":2,"nb":14,"a":[["morphology/carboxysome.html","carboxysome"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF02224","Cytidylate kinase"],["Pfam%3APF03319","Ethanolamine utilisation protein EutN/carboxysome"],["Pfam%3APF22019","alpha-1,4-glucan branching enzyme GlgB, N-terminal domain"],["Pfam%3APF21714","Circadian clock protein KaiA, N-terminal domain"],["Pfam%3APF07688","KaiA C-terminal domain"]]},{"id":"CHEBI:17045","l":"dinitrogen oxide","na":2,"nb":13,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["physiology/chemolithotrophic.html","chemolithotrophic"]],"b":[["EC%3A1.7.1.14","nitric oxide reductase [NAD(P)(+), nitrous oxide-forming]"],["EC%3A1.7.2.4","nitrous-oxide reductase"],["EC%3A1.7.2.5","nitric-oxide reductase (cytochrome c)"],["EC%3A1.7.5.2","nitric oxide reductase (menaquinol)"],["RHEA%3A30215","a menaquinol + 2 nitric oxide = nitrous oxide + a menaquinone + H2O"],["RHEA%3A43108","N2 + 2 Fe(III)-[cytochrome c] + H2O = nitrous oxide + 2 Fe(II)-[cytochrome c] + 2 H(+)"]]},{"id":"NCBITaxon:272562","l":"Clostridium acetobutylicum ATCC 824","na":2,"nb":13,"a":[["metabolism/acetone_butanol_ethanol_fermentation.html","acetone-butanol-ethanol fermentation"],["metabolism/fermentation.html","Fermentation"]],"b":[["Pfam%3APF10882","Bacterial PH domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["Pfam%3APF09940","Domain of unknown function (DUF2172)"],["Pfam%3APF16254","Domain of unknown function (DUF4910)"],["Pfam%3APF01183","Glycosyl hydrolases family 25"],["Pfam%3APF16221","winged helix-turn-helix"]]},{"id":"NCBITaxon:485","l":"Neisseria gonorrhoeae","na":2,"nb":13,"a":[["physiology/oxidase_activity.html","oxidase activity"],["physiology/prolyl_aminopeptidase_activity.html","prolyl aminopeptidase activity"]],"b":[["Pfam%3APF25860","Cryptic plasmid protein A"],["Pfam%3APF12852","Cupin"],["Pfam%3APF17845","FbpC C-terminal regulatory nucleotide binding domain"],["Pfam%3APF22443","FbpC-like, regulatory domain"],["Pfam%3APF18053","DNA gyrase B subunit insert domain"],["Pfam%3APF25885","EMRA, alpha-helical hairpin domain"]]},{"id":"GO:0031469","l":"bacterial microcompartment","na":2,"nb":12,"a":[["morphology/carboxysome.html","carboxysome"],["morphology/intracellular_inclusion.html","intracellular inclusion"]],"b":[["GO%3A0031469","bacterial microcompartment"],["GO%3A0031470","carboxysome"],["GO%3A0031471","ethanolamine degradation polyhedral organelle"],["GO%3A0031472","propanediol degradation polyhedral organelle"],["NCBIfam%3ATIGR02704","carboxysome peptide B"],["NCBIfam%3ANF011934","ethanolamine utilization microcompartment protein EutL"]]},{"id":"NCBITaxon:301447","l":"Streptococcus pyogenes serotype M1","na":2,"nb":12,"a":[["genomics/crispr_cas_system.html","CRISPR-Cas system"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["Pfam%3APF16595","PAM-interacting domain of CRISPR-associated endonuclease Cas9"],["Pfam%3APF22702","Cas9 RuvC domain"],["Pfam%3APF24547","Domain of unknown function (DUF7601)"],["Pfam%3APF22382","Endo-beta-N-acetylglucosaminidase, helical bundle"],["Pfam%3APF20746","Endo-beta-N-acetylglucosaminidase F2, Ig-like domain"],["Pfam%3APF12892","Spy0128-like isopeptide containing domain"]]},{"id":"GO:0030641","l":"","na":11,"nb":2,"a":[["environment/acidophilic.html","acidophilic"],["environment/acidotolerant.html","acidotolerant"],["environment/alkalotolerant.html","alkalotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"]],"b":[["PANTHER%3APTHR10110","SODIUM/HYDROGEN EXCHANGER"],["PANTHER%3APTHR12471","VACUOLAR ATP SYNTHASE SUBUNIT S1"]]},{"id":"GO:0035825","l":"homologous recombination","na":2,"nb":11,"a":[["environment/radiotolerant.html","radiotolerant"],["genomics/gc_mid2.html","GC mid2"]],"b":[["ComplexPortal%3ACPX-4426","BRCA1-B complex"],["ComplexPortal%3ACPX-4721","BRCA1-B complex"],["ComplexPortal%3ACPX-4441","BRCA1-C complex"],["ComplexPortal%3ACPX-4722","BRCA1-C complex"],["ComplexPortal%3ACPX-9561","FLIP-FIGNL1 DNA interstrand crosslink repair complex"],["ComplexPortal%3ACPX-1386","Synapsis initiation complex"]]},{"id":"GO:0044403","l":"biological process involved in symbiotic interaction","na":2,"nb":11,"a":[["ecology/plant_pathogen.html","plant pathogen"],["ecology/symbiosis.html","symbiosis"]],"b":[["GO%3A0036377","arbuscular mycorrhizal association"],["GO%3A0051701","biological process involved in interaction with host"],["GO%3A0051702","biological process involved in interaction with symbiont"],["GO%3A0044403","biological process involved in symbiotic interaction"],["GO%3A0075733","intracellular transport of virus"],["GO%3A0044399","multi-species biofilm formation"]]},{"id":"GO:1990586","l":"divisome complex","na":2,"nb":11,"a":[["morphology/coccus_shaped.html","coccus shaped"],["morphology/ellipsoidal.html","ellipsoidal"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["ComplexPortal%3ACPX-3299","FtsBL complex"],["ComplexPortal%3ACPX-3099","FtsQBL complex"],["GO%3A1990586","divisome complex"],["GO%3A1990588","FtsBL complex"],["GO%3A1990587","FtsQBL complex"]]},{"id":"GO:0008976","l":"polyphosphate kinase activity","na":2,"nb":10,"a":[["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/polyphosphate_granule.html","polyphosphate granule"]],"b":[["EC%3A2.7.4.1","ATP-polyphosphate phosphotransferase"],["RHEA%3A19573","[phosphate](n) + ATP = [phosphate](n+1) + ADP"],["GO%3A0008976","polyphosphate kinase activity"],["NCBIfam%3ANF042973","ADP-polyphosphate phosphotransferase"],["NCBIfam%3ATIGR03705","polyphosphate kinase 1"],["NCBIfam%3ATIGR03707","polyphosphate kinase 2"]]},{"id":"DOI:10.1093/nar/gkt1419","l":"","na":2,"nb":9,"a":[["genomics/abie_system.html","AbiE system"],["genomics/abortive_infection_system.html","abortive infection system"]],"b":[["NCBIfam%3ANF028503","AbiEi antitoxin N-terminal domain-containing protein"],["NCBIfam%3ANF020419","nucleotidyl transferase AbiEii/AbiGii toxin family protein"],["NCBIfam%3ANF022898","type IV toxin-antitoxin system AbiEi family antitoxin domain-containing protein"],["NCBIfam%3ANF021469","type IV toxin-antitoxin system AbiEi family antitoxin"],["NCBIfam%3ANF047376","type IV toxin-antitoxin system AbiEi family antitoxin"],["InterPro%3AIPR025159","AbiEi antitoxin, N-terminal domain"]]},{"id":"GO:0004329","l":"formate-tetrahydrofolate ligase activity","na":2,"nb":9,"a":[["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"]],"b":[["EC%3A6.3.4.3","formate--tetrahydrofolate ligase"],["RHEA%3A20221","(6S)-5,6,7,8-tetrahydrofolate + formate + ATP = (6R)-10-formyltetrahydrofolate + ADP + phosphate"],["GO%3A0004329","formate-tetrahydrofolate ligase activity"],["NCBIfam%3ANF010030","formate--tetrahydrofolate ligase"],["NCBIfam%3ANF010031","formate--tetrahydrofolate ligase"],["NCBIfam%3ANF013436","formate--tetrahydrofolate ligase"]]},{"id":"GO:0019164","l":"pyruvate synthase activity","na":2,"nb":9,"a":[["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"]],"b":[["EC%3A1.2.7.1","pyruvate synthase"],["RHEA%3A12765","2 oxidized [2Fe-2S]-[ferredoxin] + pyruvate + CoA = 2 reduced [2Fe-2S]-[ferredoxin] + acetyl-CoA + CO2 + H(+)"],["GO%3A0019164","pyruvate synthase activity"],["NCBIfam%3ANF041170","2-oxoacid:ferredoxin oxidoreductase subunit alpha"],["NCBIfam%3ANF041171","2-oxoacid:ferredoxin oxidoreductase subunit beta"],["NCBIfam%3ANF040682","pyruvate synthase subunit PorA"]]},{"id":"GO:0031160","l":"spore wall","na":2,"nb":9,"a":[["morphology/spore_forming.html","spore forming"],["morphology/spore_shaped.html","spore shaped"]],"b":[["ComplexPortal%3ACPX-3028","1,3-beta-D-glucan synthase complex, FKS3-RHO1 variant"],["GO%3A0005619","ascospore wall"],["GO%3A0097515","asexual spore wall"],["GO%3A0043591","endospore external encapsulating structure"],["GO%3A0097514","sexual spore wall"],["GO%3A0031160","spore wall"]]},{"id":"NCBITaxon:818","l":"Bacteroides thetaiotaomicron","na":2,"nb":9,"a":[["ecology/gut_associated.html","gut-associated"],["ecology/host_associated.html","host-associated"]],"b":[["Pfam%3APF09093","Lyase, catalytic"],["TED%3AAF-A0A174W9M0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A174W9M0-F1-model_v4_TED01"],["TED%3AAF-A0A679HCU6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A679HCU6-F1-model_v4_TED01"],["TED%3AAF-A0A139L295-F1-model_v4_TED04","TED novel fold AF-A0A139L295-F1-model_v4_TED04"],["TED%3AAF-A0A174QBB7-F1-model_v4_TED02","TED novel fold AF-A0A174QBB7-F1-model_v4_TED02"],["TED%3AAF-A0A679H9T4-F1-model_v4_TED03","TED novel fold AF-A0A679H9T4-F1-model_v4_TED03"]]},{"id":"GO:0000917","l":"division septum assembly","na":2,"nb":8,"a":[["morphology/sarcina_arrangement.html","sarcina arrangement"],["morphology/tetrad_arrangement.html","tetrad arrangement"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["GO%3A0000917","division septum assembly"],["GO%3A0140278","mitotic division septum assembly"],["NCBIfam%3ATIGR02205","cell division protein ZipA"],["NCBIfam%3ATIGR00172","Maf family nucleotide pyrophosphatase"],["PANTHER%3APTHR36419","ARRESTIN FAMILY PROTEIN 1"]]},{"id":"GO:0061579","l":"N-acyl homoserine lactone synthase activity","na":2,"nb":8,"a":[["physiology/bioluminescence.html","bioluminescence"],["physiology/quorum_sensing.html","quorum sensing"]],"b":[["EC%3A2.3.1.184","acyl-homoserine-lactone synthase"],["RHEA%3A10096","a fatty acyl-[ACP] + S-adenosyl-L-methionine = an N-acyl-L-homoserine lactone + S-methyl-5'-thioadenosine + holo-[ACP] + H(+)"],["GO%3A0061579","N-acyl homoserine lactone synthase activity"],["NCBIfam%3ANF052393","acyl-homoserine-lactone synthase"],["NCBIfam%3ANF036435","acyl-homoserine-lactone synthase"],["Pfam%3APF17327","Acyl homoserine lactone synthase"]]},{"id":"NCBITaxon:565050","l":"Caulobacter vibrioides NA1000","na":2,"nb":8,"a":[["morphology/crescent_shaped.html","crescent shaped"],["morphology/tailed_shaped.html","tailed shaped"]],"b":[["Pfam%3APF02767","DNA polymerase III beta subunit, central domain"],["Pfam%3APF02768","DNA polymerase III beta subunit, C-terminal domain"],["Pfam%3APF00712","DNA polymerase III beta subunit, N-terminal domain"],["Pfam%3APF21249","GyrB, hook"],["Pfam%3APF07378","Flagellar protein FlbT"],["Pfam%3APF03748","Flagellar basal body-associated protein FliL"]]},{"id":"DOI:10.1126/science.1149976","l":"","na":2,"nb":7,"a":[["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]],"b":[["RHEA%3A26534","3-hydroxypropanoate + ATP + CoA = 3-hydroxypropanoyl-CoA + AMP + diphosphate"],["RHEA%3A26438","3-hydroxypropanoate + NADP(+) = 3-oxopropanoate + NADPH + H(+)"],["RHEA%3A26518","3-hydroxypropanoyl-CoA = acryloyl-CoA + H2O"],["RHEA%3A26446","3-oxopropanoate + NADP(+) + CoA = malonyl-CoA + NADPH + H(+)"],["RHEA%3A26530","4-hydroxybutanoyl-CoA = (2E)-butenoyl-CoA + H2O"],["RHEA%3A26454","propanoyl-CoA + NADP(+) = acryloyl-CoA + NADPH + H(+)"]]},{"id":"GO:0042438","l":"melanin biosynthetic process","na":2,"nb":7,"a":[["morphology/black_pigmented.html","black pigmented"],["morphology/white_pigmented.html","white pigmented"]],"b":[["GO%3A0140614","1,8-dihydroxynaphthalene-melanin biosynthetic process"],["GO%3A0006583","melanin biosynthetic process from tyrosine"],["GO%3A0042438","melanin biosynthetic process"],["Reactome%3AR-HSA-5662702","Melanin biosynthesis"],["NCBIfam%3ANF017995","tyrosinase family oxidase copper chaperone"],["NCBIfam%3ANF047834","tyrosinase MelC2"]]},{"id":"GO:0050304","l":"nitrous-oxide reductase activity","na":2,"nb":7,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"]],"b":[["EC%3A1.7.2.4","nitrous-oxide reductase"],["RHEA%3A43108","N2 + 2 Fe(III)-[cytochrome c] + H2O = nitrous oxide + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["GO%3A0050304","nitrous-oxide reductase activity"],["NCBIfam%3ANF052460","clade III lactonase-type nitrous-oxide reductase"],["NCBIfam%3ATIGR04244","TAT-dependent nitrous-oxide reductase"],["NCBIfam%3ATIGR04246","Sec-dependent nitrous-oxide reductase"]]},{"id":"NCBITaxon:28116","l":"Bacteroides ovatus","na":2,"nb":7,"a":[["metabolism/xylan_degradation.html","xylan degradation"],["physiology/amylase_activity.html","amylase activity"]],"b":[["TED%3AAF-A0A515J030-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A515J030-F1-model_v4_TED01"],["TED%3AAF-A0A5M5C3M7-F1-model_v4_TED01","TED novel fold AF-A0A5M5C3M7-F1-model_v4_TED01"],["TED%3AAF-A0A641PL20-F1-model_v4_TED01","TED novel fold AF-A0A641PL20-F1-model_v4_TED01"],["TED%3AAF-A0A641V3P9-F1-model_v4_TED03","TED novel fold AF-A0A641V3P9-F1-model_v4_TED03"],["TED%3AAF-A0A641VT79-F1-model_v4_TED01","TED novel fold AF-A0A641VT79-F1-model_v4_TED01"],["TED%3AAF-A0A642C648-F1-model_v4_TED01","TED novel fold AF-A0A642C648-F1-model_v4_TED01"]]},{"id":"CHEBI:18246","l":"(1->4)-beta-D-glucan","na":2,"nb":6,"a":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/cellulolysis.html","cellulolysis"]],"b":[["EC%3A2.4.1.12","cellulose synthase (UDP-forming)"],["EC%3A2.4.1.29","cellulose synthase (GDP-forming)"],["EC%3A2.4.1.49","cellodextrin phosphorylase"],["RHEA%3A17797","[(1->4)-beta-D-glucosyl](n) + GDP-alpha-D-glucose = [(1->4)-beta-D-glucosyl](n+1) + GDP + H(+)"],["RHEA%3A23024","[(1->4)-beta-D-glucosyl](n) + phosphate = [(1->4)-beta-D-glucosyl](n-1) + alpha-D-glucose 1-phosphate"],["RHEA%3A19929","[(1->4)-beta-D-glucosyl](n) + UDP-alpha-D-glucose = [(1->4)-beta-D-glucosyl](n+1) + UDP + H(+)"]]},{"id":"CHEBI:27208","l":"","na":6,"nb":2,"a":[["environment/mesophilic.html","mesophilic"],["environment/temperature_delta.html","temperature delta"],["environment/temperature_delta_mid2.html","temperature delta mid2"],["environment/temperature_optimum_mid1.html","temperature optimum mid1"],["environment/temperature_optimum_mid2.html","temperature optimum mid2"],["environment/temperature_optimum_very_low.html","temperature optimum very low"]],"b":[["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"],["TCDB%3A9.A.76","The Omega3 Fatty Acid Desaturase 3/Putative Transporter (FAD3) Family"]]},{"id":"DOI:10.1007/s00018-003-3206-5","l":"","na":2,"nb":6,"a":[["physiology/catalase_activity.html","catalase activity"],["physiology/oxidative_stress_response.html","oxidative stress response"]],"b":[["InterPro%3AIPR024708","Catalase active site"],["InterPro%3AIPR002226","Catalase haem-binding site"],["InterPro%3AIPR011614","Catalase core domain"],["InterPro%3AIPR010582","Catalase immune-responsive domain"],["PROSITE%3APDOC00395","catalase family"],["InterPro%3AIPR043156","Catalase, mono-functional, haem-containing, clade 2, helical domain"]]},{"id":"InterPro:IPR012171","l":"","na":2,"nb":6,"a":[["environment/facultative_psychrophilic.html","facultative psychrophilic"],["environment/temperature_preference.html","temperature preference"]],"b":[["Pfam%3APF00173","Cytochrome b5-like Heme/Steroid binding domain"],["Pfam%3APF00487","Fatty acid desaturase"],["PANTHER%3APTHR19353","FATTY ACID DESATURASE 2"],["PANTHER%3APTHR32100","OMEGA-6 FATTY ACID DESATURASE, CHLOROPLASTIC"],["Pfam%3APF11960","Domain of unknown function (DUF3474)"],["PROSITE%3APS00574","Fatty acid desaturases family 2 signature"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":2,"nb":6,"a":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"]],"b":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF02963","Restriction endonuclease EcoRI"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["PROSITE%3APS00974","Mannitol dehydrogenases signature"],["PROSITE%3APS00567","Phosphoribulokinase signature"],["MCSA%3A701","dimethylsulfoxide reductase"]]},{"id":"NCBITaxon:727","l":"Haemophilus influenzae","na":2,"nb":6,"a":[["genomics/restriction_modification_system.html","restriction-modification system"],["morphology/coccobacillus_shaped.html","coccobacillus shaped"]],"b":[["Pfam%3APF06808","Tripartite ATP-independent periplasmic transporter, DctM component"],["Pfam%3APF04290","Tripartite ATP-independent periplasmic transporters, DctQ component"],["Pfam%3APF09226","Restriction endonuclease HincII"],["Pfam%3APF09520","Type II restriction endonuclease, HinfI"],["Pfam%3APF24077","Immunoglobulin A1 protease autotransporter domain 2"],["PROSITE%3APS01068","OmpA-like domain"]]},{"id":"CHEBI:16094","l":"thiosulfate(2-)","na":5,"nb":2,"a":[["metabolism/disproportionation.html","Disproportionation"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["proteintraitsmech%3ABIOLIP_THJ","THJ-binding site"]]},{"id":"DOI:10.1038/s41467-024-45196-0","l":"","na":2,"nb":5,"a":[["morphology/disc_shaped.html","disc shaped"],["morphology/ring_shaped.html","ring shaped"]],"b":[["NCBIfam%3ANF053557","DdfA family disk-determining factor"],["NCBIfam%3ANF045161","rod-determining factor RdfA"],["InterPro%3AIPR040624","Halobacterial output domain 1"],["NCBIfam%3ANF051722","disk-shape morphogenesis protein volactin"],["NCBIfam%3ANF036897","HalOD1 output domain-containing protein"]]},{"id":"GO:0009291","l":"unidirectional conjugation","na":2,"nb":5,"a":[["genomics/genomic_island.html","genomic island"],["genomics/plasmid_carriage.html","plasmid carriage"]],"b":[["GO%3A0000762","pheromone-induced unidirectional conjugation"],["GO%3A0009291","unidirectional conjugation"],["NCBIfam%3ATIGR02775","P-type conjugative transfer protein TrbG"],["NCBIfam%3ATIGR02780","P-type conjugative transfer protein TrbJ"],["NCBIfam%3ATIGR02783","P-type conjugative transfer protein TrbL"]]},{"id":"GO:0016610","l":"nitrogenase complex","na":2,"nb":5,"a":[["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["GO%3A0016611","iron-iron nitrogenase complex"],["GO%3A0016612","molybdenum-iron nitrogenase complex"],["GO%3A0016610","nitrogenase complex"],["GO%3A0016613","vanadium-iron nitrogenase complex"],["NCBIfam%3ATIGR01287","nitrogenase iron protein"]]},{"id":"NCBITaxon:274","l":"Thermus thermophilus","na":2,"nb":5,"a":[["environment/thermophilic.html","thermophilic"],["morphology/cell_width.html","cell width"]],"b":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF01861","Branched-chain polyamine synthase A C-terminal domain"],["Pfam%3APF07736","Chorismate mutase type I"],["MCSA%3A479","4-alpha-glucanotransferase"],["MCSA%3A539","phenylalanine---tRNA ligase"]]},{"id":"CHEBI:16234","l":"","na":2,"nb":4,"a":[["environment/alkalotolerant.html","alkalotolerant"],["physiology/urease_activity.html","urease activity"]],"b":[["TCDB%3A2.A.53","The Sulfate Permease (SulP) Family"],["MCSA%3A172","isoaspartyl dipeptidase"],["MCSA%3A989","Retroviral integrase"],["MCSA%3A965","Viperin"]]},{"id":"DOI:10.1146/annurev.micro.52.1.191","l":"","na":2,"nb":4,"a":[["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"]],"b":[["InterPro%3AIPR020808","Bacterial microcompartments protein, conserved site"],["InterPro%3AIPR000249","Bacterial microcompartment domain"],["InterPro%3AIPR037233","CcmK-like superfamily"],["InterPro%3AIPR036677","EutN/Ccml superfamily"]]},{"id":"GO:0000920","l":"septum digestion after cytokinesis","na":2,"nb":4,"a":[["morphology/diplococcus_shaped.html","diplococcus shaped"],["morphology/dumbbell_shaped.html","dumbbell shaped"]],"b":[["ComplexPortal%3ACPX-1684","CBK1-MOB2 kinase complex"],["ComplexPortal%3ACPX-1712","Gin4 serine/threonine kinase complex"],["ComplexPortal%3ACPX-1426","Myosin class II complex"],["GO%3A0000920","septum digestion after cytokinesis"]]},{"id":"GO:0030115","l":"S-layer","na":2,"nb":4,"a":[["morphology/square_shaped.html","square shaped"],["morphology/triangular_shaped.html","triangular shaped"]],"b":[["GO%3A0030115","S-layer"],["NCBIfam%3ANF041335","ArtA-dependent S-layer glycoprotein"],["NCBIfam%3ANF053619","BT1927 family outer membrane S-layer protein"],["NCBIfam%3ANF041073","S-layer protein SlaA"]]},{"id":"GO:0043107","l":"type IV pilus-dependent motility","na":2,"nb":4,"a":[["morphology/motile.html","motile"],["morphology/twitching_motility.html","twitching motility"]],"b":[["GO%3A0043107","type IV pilus-dependent motility"],["NCBIfam%3ATIGR01420","PilT/PilU family type 4a pilus ATPase"],["NCBIfam%3ANF016253","type 4a pilus biogenesis protein PilO"],["Pfam%3APF04350","Type IVa pilus alignment subcomplex PilO C-terminal domain"]]},{"id":"GO:0043884","l":"CO-methylating acetyl-CoA synthase activity","na":2,"nb":4,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"]],"b":[["EC%3A2.3.1.169","CO-methylating acetyl-CoA synthase"],["RHEA%3A45212","Co(I)-[corrinoid Fe-S protein] + acetyl-CoA + H(+) = methyl-Co(III)-[corrinoid Fe-S protein] + CO + CoA"],["GO%3A0043884","CO-methylating acetyl-CoA synthase activity"],["NCBIfam%3ATIGR00316","CO dehydrogenase/CO-methylating acetyl-CoA synthase complex subunit beta"]]},{"id":"GO:0050338","l":"thiosulfate dehydrogenase activity","na":2,"nb":4,"a":[["metabolism/disproportionation.html","Disproportionation"],["metabolism/sulfur_oxidation.html","sulfur oxidation"]],"b":[["EC%3A1.8.2.2","thiosulfate dehydrogenase"],["RHEA%3A20549","2 thiosulfate + 2 Fe(III)-[cytochrome c] = tetrathionate + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["GO%3A0050338","thiosulfate dehydrogenase activity"],["MCSA%3A986","Thiosulfate dehydrogenase"]]},{"id":"METPO:2000302","l":"shows activity of","na":2,"nb":4,"a":[["metabolism/shows_activity_of.html","shows activity of"],["other/coagulase_positive.html","coagulase positive"]],"b":[["METPO%3A1007083","catalase positive"],["METPO%3A1007090","coagulase positive"],["METPO%3A1007085","oxidase positive"],["METPO%3A1007087","urease positive"]]},{"id":"DOI:10.1128/jb.175.8.2436-2444.1993","l":"","na":3,"nb":2,"a":[["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["RHEA%3A27341","AH2 + NH4(+) + O2 = hydroxylamine + A + H2O + H(+)"],["NCBIfam%3ANF014514","methane monooxygenase/ammonia monooxygenase subunit A"]]},{"id":"DOI:10.4056/sigs.1804360","l":"","na":2,"nb":3,"a":[["metabolism/phototrophy.html","phototrophy"],["physiology/phototrophic.html","phototrophic"]],"b":[["COG%3ACOG5753","Bacteriochlorophyllide reductase subunit BchX"],["COG%3ACOG5754","Bacteriochlorophyllide reductase subunit BchY"],["COG%3ACOG5755","Bacteriochlorophyllide reductase subunit BchZ"]]},{"id":"GO:0019329","l":"ammonia oxidation","na":2,"nb":3,"a":[["metabolism/complete_ammonia_oxidation.html","complete ammonia oxidation"],["metabolism/nitrification.html","nitrification"]],"b":[["GO%3A0019409","aerobic respiration, using ammonia as electron donor"],["GO%3A0019329","ammonia oxidation"],["GO%3A0019331","anaerobic respiration, using ammonium as electron donor"]]},{"id":"GO:0070088","l":"polyhydroxyalkanoate granule","na":2,"nb":3,"a":[["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]],"b":[["GO%3A0070088","polyhydroxyalkanoate granule"],["NCBIfam%3ANF045536","polyhydroxyalkanoate granule-associated phasin"],["NCBIfam%3ANF045537","polyhydroxyalkanoate granule-associated phasin"]]},{"id":"InterPro:IPR007793","l":"","na":3,"nb":2,"a":[["morphology/ellipsoidal.html","ellipsoidal"],["morphology/filament_shaped.html","filament shaped"],["morphology/ovoid_shaped.html","ovoid shaped"]],"b":[["PANTHER%3APTHR35794","CELL DIVISION PROTEIN DIVIVA"],["Pfam%3APF05103","DivIVA protein"]]},{"id":"InterPro:IPR012761","l":"","na":3,"nb":2,"a":[["physiology/oxidative_stress_response.html","oxidative stress response"],["physiology/stress_response.html","stress response"],["physiology/viable_but_nonculturable_state.html","viable but nonculturable state"]],"b":[["HAMAP%3AMF_00959","RNA polymerase sigma factor RpoS [rpoS]"],["PROSITE%3APS00716","Sigma-70 factors family signature 2"]]},{"id":"InterPro:IPR050077","l":"","na":2,"nb":3,"a":[["genomics/prophage.html","prophage"],["physiology/sos_response.html","SOS response"]],"b":[["Pfam%3APF12840","Helix-turn-helix domain"],["Pfam%3APF01726","LexA DNA binding domain"],["PANTHER%3APTHR33516","LEXA REPRESSOR"]]},{"id":"METPO:1000602","l":"aerobic","na":3,"nb":2,"a":[["environment/aerobic.html","aerobic"],["environment/oxygen_preference.html","oxygen preference"],["physiology/aerobic_anoxygenic_phototrophy.html","aerobic anoxygenic phototrophy"]],"b":[["METPO%3A1000602","aerobic"],["METPO%3A1000606","obligately aerobic"]]},{"id":"METPO:1007080","l":"catalase test","na":2,"nb":3,"a":[["other/catalase_negative.html","catalase negative"],["other/catalase_test.html","catalase test"]],"b":[["METPO%3A1007084","catalase negative"],["METPO%3A1007083","catalase positive"],["METPO%3A1007080","catalase test"]]},{"id":"METPO:1007081","l":"oxidase test","na":2,"nb":3,"a":[["other/oxidase_negative.html","oxidase negative"],["other/oxidase_test.html","oxidase test"]],"b":[["METPO%3A1007086","oxidase negative"],["METPO%3A1007085","oxidase positive"],["METPO%3A1007081","oxidase test"]]},{"id":"METPO:1007082","l":"urease test","na":2,"nb":3,"a":[["other/urease_negative.html","urease negative"],["other/urease_test.html","urease test"]],"b":[["METPO%3A1007088","urease negative"],["METPO%3A1007087","urease positive"],["METPO%3A1007082","urease test"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":2,"nb":3,"a":[["ecology/commensalism.html","commensalism"],["other/coagulase_negative.html","coagulase negative"]],"b":[["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF08130","Type A lantibiotic family"],["Pfam%3APF04738","Lantibiotic dehydratase, N terminus"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":2,"nb":3,"a":[["genomics/wadjet_system.html","Wadjet system"],["morphology/irregular_shaped.html","irregular shaped"]],"b":[["TED%3AAF-A0A142EAM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142EAM9-F1-model_v4_TED03"],["TED%3AAF-A0A1Q3DTY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3DTY6-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3DNE3-F1-model_v4_TED01","TED novel fold AF-A0A1Q3DNE3-F1-model_v4_TED01"]]},{"id":"UniProt:Q51705","l":"","na":2,"nb":3,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"]],"b":[["Pfam%3APF18793","Nitrous oxide reductase propeller repeat 2"],["Pfam%3APF18764","Nitrous oxide reductase propeller repeat"],["proteintraitsmech%3ABIOLIP_CUA","CUA-binding site"]]},{"id":"DOI:10.3390/ijms21124566","l":"","na":2,"nb":2,"a":[["environment/alkalotolerant.html","alkalotolerant"],["environment/neutrophilic.html","neutrophilic"]],"b":[["InterPro%3AIPR057290","Cation/H(+) antiporter, C-terminal domain"],["InterPro%3AIPR057291","Cation/H(+) antiporter, central domain"]]},{"id":"GO:0019417","l":"sulfur oxidation","na":2,"nb":2,"a":[["physiology/lithotrophic.html","lithotrophic"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]],"b":[["GO%3A0019417","sulfur oxidation"],["NCBIfam%3ATIGR04484","sulfur oxidation c-type cytochrome SoxA"]]},{"id":"GO:0019649","l":"formaldehyde assimilation","na":2,"nb":2,"a":[["physiology/methanotrophic.html","methanotrophic"],["physiology/methylotrophic.html","methylotrophic"]],"b":[["GO%3A0019649","formaldehyde assimilation"],["NCBIfam%3ATIGR03128","3-hexulose-6-phosphate synthase"]]},{"id":"InterPro:IPR017402","l":"","na":2,"nb":2,"a":[["metabolism/proteorhodopsin_phototrophy.html","proteorhodopsin phototrophy"],["physiology/photoheterotrophic.html","photoheterotrophic"]],"b":[["Pfam%3APF01036","Bacteriorhodopsin-like protein"],["PROSITE%3APS00950","Bacterial rhodopsins signature 1"]]},{"id":"InterPro:IPR017761","l":"","na":2,"nb":2,"a":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["Pfam%3APF00394","Multicopper oxidase"],["PROSITE%3APS00080","Multicopper oxidases signature 2"]]},{"id":"InterPro:IPR023690","l":"","na":2,"nb":2,"a":[["morphology/bacillus_shaped.html","bacillus shaped"],["morphology/fusiform_shaped.html","fusiform shaped"]],"b":[["Pfam%3APF13413","Helix-turn-helix domain"],["HAMAP%3AMF_02017","Cytoskeleton protein RodZ [rodZ]"]]},{"id":"METPO:1000603","l":"anaerobic","na":2,"nb":2,"a":[["environment/anaerobic.html","anaerobic"],["environment/oxygen_preference.html","oxygen preference"]],"b":[["METPO%3A1000603","anaerobic"],["METPO%3A1000607","obligately anaerobic"]]},{"id":"METPO:1000607","l":"obligately anaerobic","na":2,"nb":2,"a":[["environment/obligately_anaerobic.html","obligately anaerobic"],["environment/strictly_anaerobic.html","strictly anaerobic"]],"b":[["METPO%3A1000607","obligately anaerobic"],["METPO%3A1000611","strictly anaerobic"]]},{"id":"METPO:1003002","l":"alkaliphilic","na":2,"nb":2,"a":[["environment/alkaphilic.html","alkaliphilic"],["environment/obligately_alkaphilic.html","obligately alkaliphilic"]],"b":[["METPO%3A1003002","alkaliphilic"],["METPO%3A1003004","obligately alkaliphilic"]]},{"id":"NCBITaxon:1232683","l":"Marinobacterium lacunae","na":2,"nb":2,"a":[["morphology/cell_length_medium.html","cell length medium"],["morphology/cell_width_large.html","cell width large"]],"b":[["TED%3AAF-A0A081FTJ9-F1-model_v4_TED01","TED novel fold AF-A0A081FTJ9-F1-model_v4_TED01"],["TED%3AAF-A0A081FX50-F1-model_v4_TED01","TED novel fold AF-A0A081FX50-F1-model_v4_TED01"]]},{"id":"GO:0046677","l":"response to antibiotic","na":1,"nb":7410,"a":[["physiology/antibiotic_resistance.html","antibiotic resistance"]],"b":[["UniProtKB-KW%3AKW-0046","Antibiotic resistance"],["GO%3A0071236","cellular response to antibiotic"],["GO%3A0072716","response to actinomycin D"],["GO%3A0046677","response to antibiotic"],["GO%3A0046678","response to bacteriocin"],["GO%3A0031001","response to brefeldin A"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii (strain ATCC 43067 / DSM 2661 / JAL-1 / JCM 10045 / NBRC 100440)","na":1,"nb":5186,"a":[["metabolism/methanogenesis.html","Methanogenesis"]],"b":[["EC%3A1.12.99.-","With other acceptors"],["EC%3A1.3.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.3.-.-","Acting on the CH-CH group of donors"],["EC%3A1.8.98.-","With other, known, acceptors"],["EC%3A1.97.1.-","Other oxidoreductases"],["EC%3A2.1.2.-","Hydroxymethyl-, formyl- and related transferases"]]},{"id":"GO:0016020","l":"membrane","na":1,"nb":3003,"a":[["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"]],"b":[["ComplexPortal%3ACPX-1813","1,3-beta-D-glucan synthase complex, FKS2-RHO1 variant"],["ComplexPortal%3ACPX-4313","Aliphatic sulfonate ABC transporter complex"],["ComplexPortal%3ACPX-4314","Arabinose ABC transporter complex"],["ComplexPortal%3ACPX-4318","Arginine ABC transporter complex, artI variant"],["ComplexPortal%3ACPX-4319","Arginine ABC transporter complex, artJ variant"],["ComplexPortal%3ACPX-6308","ATP10B-CDC50A P4-ATPase complex"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":2669,"a":[["physiology/dormancy.html","dormancy"]],"b":[["IDPO%3A0000002","disorder"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000045","phosphorylation display site"],["IDPO%3A0000059","self-inhibition"],["Pfam%3APF17837","4'-phosphopantetheinyl transferase N-terminal domain"]]},{"id":"GO:0005886","l":"plasma membrane","na":1,"nb":861,"a":[["environment/desiccation_tolerant.html","desiccation tolerant"]],"b":[["ComplexPortal%3ACPX-2838","3M complex"],["ComplexPortal%3ACPX-850","AHNAK - Annexin A2 - S100-A10 complex"],["ComplexPortal%3ACPX-6581","Alpha-beta T cell receptor complex, TRBC1 variant"],["ComplexPortal%3ACPX-6482","Alpha-beta T cell receptor complex, TRBC2 variant"],["ComplexPortal%3ACPX-2188","Amiloride-sensitive sodium channel complex, alpha-beta-gamma"],["ComplexPortal%3ACPX-3582","AMT1-1 - AMT1-3 heterotrimer, variant 1"]]},{"id":"CHEBI:28938","l":"ammonium","na":1,"nb":837,"a":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_28938","requires ammonium"],["EC%3A1.13.12.15","3,4-dihydroxyphenylalanine oxidative deaminase"],["EC%3A1.13.99.3","tryptophan 2'-dioxygenase"],["EC%3A1.14.11.37","kanamycin B dioxygenase"],["EC%3A1.14.12.1","anthranilate 1,2-dioxygenase (deaminating, decarboxylating)"],["EC%3A1.14.12.14","2-aminobenzenesulfonate 2,3-dioxygenase"]]},{"id":"GO:0016491","l":"oxidoreductase activity","na":1,"nb":695,"a":[["physiology/chemotrophic.html","chemotrophic"]],"b":[["GO%3A0047143","chlorate reductase activity"],["GO%3A0051213","dioxygenase activity"],["GO%3A0043364","glycyl-radical enzyme activating activity"],["GO%3A0004497","monooxygenase activity"],["GO%3A0050781","ortho-trichlorophenol reductive dehalogenase activity"],["GO%3A0016675","oxidoreductase activity, acting on a heme group of donors"]]},{"id":"GO:0003824","l":"catalytic activity","na":1,"nb":663,"a":[["upper/enzyme.html","enzyme"]],"b":[["GO%3A0140640","catalytic activity, acting on a nucleic acid"],["GO%3A0140096","catalytic activity, acting on a protein"],["GO%3A0003824","catalytic activity"],["GO%3A0009975","cyclase activity"],["GO%3A0160215","deacylase activity"],["GO%3A0032451","demethylase activity"]]},{"id":"GO:0071944","l":"cell periphery","na":1,"nb":440,"a":[["morphology/spiral_shaped.html","spiral shaped"]],"b":[["GO%3A0071944","cell periphery"],["PANTHER%3APTHR31468","1,3-BETA-GLUCANOSYLTRANSFERASE GAS1"],["PANTHER%3APTHR28145","12 KDA HEAT SHOCK PROTEIN"],["PANTHER%3APTHR42755","3-DEOXY-MANNO-OCTULOSONATE CYTIDYLYLTRANSFERASE"],["PANTHER%3APTHR46574","43 KDA RECEPTOR-ASSOCIATED PROTEIN OF THE SYNAPSE"],["PANTHER%3APTHR15182","A-KINASE ANCHOR PROTEIN 5-RELATED"]]},{"id":"GO:0005840","l":"ribosome","na":1,"nb":418,"a":[["physiology/dormancy.html","dormancy"]],"b":[["ComplexPortal%3ACPX-2854","Elongation Factor eEF1 complex, variant CAM1"],["ComplexPortal%3ACPX-425","Elongation Factor eEF1 complex, variant TEF4"],["ComplexPortal%3ACPX-427","Eukaryotic translation initiation factor 2 complex"],["ComplexPortal%3ACPX-430","Eukaryotic translation initiation factor 4F complex, variant TIF4631"],["ComplexPortal%3ACPX-431","Eukaryotic translation initiation factor 4F complex, variant TIF4632"],["ComplexPortal%3ACPX-1295","MKT1-PBP1 translation regulation complex"]]},{"id":"GO:0006260","l":"DNA replication","na":1,"nb":311,"a":[["genomics/gc_skew.html","GC skew"]],"b":[["ComplexPortal%3ACPX-6641","ASCC DNA alkylation repair complex"],["ComplexPortal%3ACPX-568","Chromatin assembly factor 1 complex"],["ComplexPortal%3ACPX-2671","CMG helicase complex"],["ComplexPortal%3ACPX-297","CMG helicase complex"],["ComplexPortal%3ACPX-4526","CMG helicase complex"],["ComplexPortal%3ACPX-4541","CMG helicase complex"]]},{"id":"GO:0008800","l":"beta-lactamase activity","na":1,"nb":311,"a":[["physiology/antibiotic_resistance.html","antibiotic resistance"]],"b":[["EC%3A3.5.2.6","beta-lactamase"],["RHEA%3A20401","a beta-lactam + H2O = a substituted beta-amino acid"],["GO%3A0008800","beta-lactamase activity"],["NCBIfam%3ANF038195","AAK family class A beta-lactamase"],["NCBIfam%3ANF000397","ACC family cephalosporin-hydrolyzing class C beta-lactamase"],["NCBIfam%3ANF000448","ACI family class A beta-lactamase"]]},{"id":"GO:0006281","l":"DNA repair","na":1,"nb":272,"a":[["environment/radiotolerant.html","radiotolerant"]],"b":[["ComplexPortal%3ACPX-4426","BRCA1-B complex"],["ComplexPortal%3ACPX-4721","BRCA1-B complex"],["ComplexPortal%3ACPX-568","Chromatin assembly factor 1 complex"],["ComplexPortal%3ACPX-1959","HU complex, variant hupA"],["ComplexPortal%3ACPX-1958","HU complex, variant hupAB"],["ComplexPortal%3ACPX-863","INO80 chromatin remodeling complex"]]},{"id":"GO:0031090","l":"organelle membrane","na":1,"nb":270,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["GO%3A0098588","bounding membrane of organelle"],["GO%3A0005789","endoplasmic reticulum membrane"],["GO%3A0032580","Golgi cisterna membrane"],["GO%3A0110146","magnetosome membrane"],["GO%3A0031966","mitochondrial membrane"],["GO%3A0031965","nuclear membrane"]]},{"id":"GO:0016301","l":"kinase activity","na":1,"nb":246,"a":[["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["GO%3A0050515","4-(cytidine 5'-diphospho)-2-C-methyl-D-erythritol kinase activity"],["GO%3A0140383","4-hydroxytryptamine kinase activity"],["GO%3A0047590","5-dehydro-2-deoxygluconokinase activity"],["GO%3A0047336","5-methyldeoxycytidine-5'-phosphate kinase activity"],["GO%3A0008776","acetate kinase activity"],["GO%3A0047601","acetate kinase (diphosphate) activity"]]},{"id":"GO:0008152","l":"metabolic process","na":1,"nb":224,"a":[["metabolism/metabolism.html","metabolism"]],"b":[["GO%3A0006666","3-keto-sphinganine metabolic process"],["GO%3A0008291","acetylcholine metabolic process"],["GO%3A0006081","aldehyde metabolic process"],["GO%3A0019330","aldoxime metabolic process"],["GO%3A0009820","alkaloid metabolic process"],["GO%3A0000255","allantoin metabolic process"]]},{"id":"NCBITaxon:99287","l":"Salmonella typhimurium (strain LT2 / SGSC1412 / ATCC 700720)","na":1,"nb":178,"a":[["metabolism/tetrathionate_respiration.html","tetrathionate respiration"]],"b":[["Pfam%3APF16031","TonB polyproline region"],["Pfam%3APF13521","AAA domain"],["Pfam%3APF26341","tRNA 2-selenouridine synthase AAA domain"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"],["Pfam%3APF09317","Acyl-CoA dehydrogenase, C-terminal, bacterial type"],["Pfam%3APF06315","Isocitrate dehydrogenase kinase/phosphatase (AceK) kinase domain"]]},{"id":"CHEBI:15740","l":"formate","na":1,"nb":173,"a":[["metabolism/syntrophy.html","Syntrophy"]],"b":[["EC%3A1.1.98.6","ribonucleoside-triphosphate reductase (formate)"],["EC%3A1.10.3.15","grixazone synthase"],["EC%3A1.13.11.41","2,4'-dihydroxyacetophenone dioxygenase"],["EC%3A1.13.11.53","acireductone dioxygenase (Ni(2+)-requiring)"],["EC%3A1.13.11.54","acireductone dioxygenase (Fe(2+)-requiring)"],["EC%3A1.13.11.72","2-hydroxyethylphosphonate dioxygenase"]]},{"id":"GO:0016791","l":"phosphatase activity","na":1,"nb":171,"a":[["physiology/naphthol_as_bi_phosphohydrolase_activity.html","naphthol-AS-BI-phosphohydrolase activity"]],"b":[["ComplexPortal%3ACPX-120","Prostatic acid phosphatase complex"],["ComplexPortal%3ACPX-121","Prostatic acid phosphatase complex"],["GO%3A0033885","10-hydroxy-9-(phosphonooxy)octadecanoate phosphatase activity"],["GO%3A0047538","2-carboxy-D-arabinitol-1-phosphatase activity"],["GO%3A0043716","2-hydroxy-3-keto-5-methylthiopentenyl-1-phosphate phosphatase activity"],["GO%3A0050532","2-phosphosulfolactate phosphatase activity"]]},{"id":"GO:0015979","l":"photosynthesis","na":1,"nb":146,"a":[["metabolism/photosynthesis.html","photosynthesis"]],"b":[["GO%3A0015979","photosynthesis"],["NCBIfam%3ATIGR01337","allophycocyanin subunit beta"],["NCBIfam%3ATIGR03056","alpha/beta fold hydrolase BchO"],["NCBIfam%3ANF013497","Apocytochrome F, C-terminal"],["NCBIfam%3ANF014391","Bacteriochlorophyll A protein"],["NCBIfam%3ANF058502","C-phycocyanin alpha-cysteine-84 phycocyanobilin lyase subunit CpcE"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":1,"nb":138,"a":[["ecology/biosafety_level_3.html","biosafety level 3"]],"b":[["Pfam%3APF09255","Caf1 Capsule antigen"],["Pfam%3APF02611","CDP-diacylglycerol pyrophosphatase"],["Pfam%3APF07411","Domain of unknown function (DUF1508)"],["Pfam%3APF05171","Haemin-degrading HemS.ChuX domain"],["Pfam%3APF21500","DNA polymerase III subunit delta', AAA+ ATPase lid domain"],["Pfam%3APF11004","3-deoxy-D-manno-oct-2-ulosonic acid (Kdo) hydroxylase"]]},{"id":"NCBITaxon:71421","l":"Haemophilus influenzae (strain ATCC 51907 / DSM 11121 / KW20 / Rd)","na":1,"nb":137,"a":[["genomics/restriction_modification_system.html","restriction-modification system"]],"b":[["Pfam%3APF13521","AAA domain"],["Pfam%3APF13654","LonB-like, AAA domain"],["Pfam%3APF16326","ABC transporter C-terminal domain"],["Pfam%3APF13710","ACT domain"],["Pfam%3APF12633","Adenylate cyclase NT domain"],["Pfam%3APF26690","Adenylate cyclase, class-I, third domain"]]},{"id":"GO:0006457","l":"protein folding","na":1,"nb":129,"a":[["environment/temperature_range_high.html","temperature range high"]],"b":[["ComplexPortal%3ACPX-2156","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-2772","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-6030","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-2113","GroEL-GroES complex"],["ComplexPortal%3ACPX-1671","Prefoldin co-chaperone complex"],["ComplexPortal%3ACPX-2389","Prefoldin co-chaperone complex"]]},{"id":"GO:0030154","l":"cell differentiation","na":1,"nb":108,"a":[["morphology/heterocyst.html","heterocyst"]],"b":[["GO%3A0048657","anther wall tapetum cell differentiation"],["GO%3A0009557","antipodal cell differentiation"],["GO%3A1903498","bundle sheath cell differentiation"],["GO%3A0035051","cardiocyte differentiation"],["GO%3A0030154","cell differentiation"],["GO%3A0021533","cell differentiation in hindbrain"]]},{"id":"CHEBI:15343","l":"acetaldehyde","na":1,"nb":88,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"]],"b":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.5.5","alcohol dehydrogenase (quinone)"],["EC%3A1.1.99.36","alcohol dehydrogenase (nicotinoprotein)"],["EC%3A1.13.11.88","isoeugenol monooxygenase"],["EC%3A1.13.12.16","nitronate monooxygenase"],["EC%3A1.2.1.10","acetaldehyde dehydrogenase (acetylating)"]]},{"id":"GO:0009307","l":"DNA restriction-modification system","na":1,"nb":83,"a":[["genomics/restriction_modification_system.html","restriction-modification system"]],"b":[["ComplexPortal%3ACPX-5285","McrBC 5-methylcytosine-specific restriction endonuclease complex"],["ComplexPortal%3ACPX-5628","Type I restriction-modification EcoKI complex"],["GO%3A0009307","DNA restriction-modification system"],["NCBIfam%3ANF007277","5-methylcytosine-specific restriction endonuclease system specificity protein McrC"],["NCBIfam%3ATIGR02986","Alw26I/Eco31I/Esp3I family type II restriction endonuclease"],["NCBIfam%3ANF020756","AvaI/BsoBI family type II restriction endonuclease"]]},{"id":"CHEBI:15354","l":"choline","na":1,"nb":78,"a":[["environment/euryhaline.html","euryhaline"]],"b":[["EC%3A1.1.3.17","choline oxidase"],["EC%3A1.1.99.1","choline dehydrogenase"],["EC%3A1.14.15.7","choline monooxygenase"],["EC%3A2.3.1.6","choline O-acetyltransferase"],["EC%3A2.3.1.91","sinapoylglucose--choline O-sinapoyltransferase"],["EC%3A2.7.1.32","choline kinase"]]},{"id":"CHEBI:29806","l":"fumarate(2-)","na":1,"nb":76,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["EC%3A1.3.1.6","fumarate reductase (NADH)"],["EC%3A1.3.2.4","fumarate reductase (cytochrome)"],["EC%3A1.3.4.1","fumarate reductase (CoM/CoB)"],["EC%3A1.3.5.1","succinate dehydrogenase"],["EC%3A1.3.98.1","dihydroorotate oxidase (fumarate)"],["EC%3A3.7.1.14","2-hydroxy-6-oxonona-2,4-dienedioate hydrolase"]]},{"id":"GO:0004803","l":"transposase activity","na":1,"nb":73,"a":[["genomics/transposable_element.html","transposable element"]],"b":[["GO%3A0004803","transposase activity"],["NCBIfam%3ANF015365","IS1 family transposase"],["NCBIfam%3ANF033558","IS1 family transposase"],["NCBIfam%3ANF033542","IS110 family RNA-guided transposase"],["NCBIfam%3ANF033551","IS1182 family transposase"],["NCBIfam%3ANF033544","IS1249 family transposase"]]},{"id":"GO:0006413","l":"translational initiation","na":1,"nb":67,"a":[["genomics/codon_usage_bias.html","codon usage bias"]],"b":[["ComplexPortal%3ACPX-427","Eukaryotic translation initiation factor 2 complex"],["ComplexPortal%3ACPX-1831","Eukaryotic translation initiation factor 3 core complex"],["ComplexPortal%3ACPX-3482","Eukaryotic translation initiation factor 4E-Mxt complex"],["ComplexPortal%3ACPX-2666","Eukaryotic translation initiation factor 4F, EIF4A1 and EIF4G1 variant"],["ComplexPortal%3ACPX-5863","Eukaryotic translation initiation factor 4F, EIF4A1 and EIF4G1 variant"],["ComplexPortal%3ACPX-5635","Eukaryotic translation initiation factor 4F, EIF4A1 and EIF4G3 variant"]]},{"id":"GO:0006950","l":"response to stress","na":1,"nb":67,"a":[["physiology/stress_response.html","stress response"]],"b":[["GO%3A0033554","cellular response to stress"],["GO%3A0006952","defense response"],["GO%3A0033555","multicellular organismal response to stress"],["GO%3A0003299","muscle hypertrophy in response to stress"],["GO%3A0009271","phage shock"],["GO%3A0034059","response to anoxia"]]},{"id":"GO:0031012","l":"extracellular matrix","na":1,"nb":64,"a":[["ecology/biofilm_formation.html","biofilm formation"]],"b":[["ComplexPortal%3ACPX-461","155 kDa platelet multimerin complex"],["ComplexPortal%3ACPX-960","Collagen type II trimer"],["ComplexPortal%3ACPX-1749","Collagen type X trimer"],["ComplexPortal%3ACPX-2971","Collagen type X trimer"],["ComplexPortal%3ACPX-1750","Collagen type XI trimer variant 1"],["ComplexPortal%3ACPX-2975","Collagen type XI trimer variant 1"]]},{"id":"GO:0006289","l":"nucleotide-excision repair","na":1,"nb":60,"a":[["environment/uv_radiation_tolerant.html","UV radiation tolerant"]],"b":[["ComplexPortal%3ACPX-2757","CRL4-ERCC8 E3 ubiquitin ligase complex, CUL4A variant"],["ComplexPortal%3ACPX-2758","CRL4-ERCC8 E3 ubiquitin ligase complex, CUL4B variant"],["ComplexPortal%3ACPX-1837","CUL3-HRT1-ELC1-ELA1 ubiquitin ligase complex"],["ComplexPortal%3ACPX-478","ERCC1-XPF endonuclease complex"],["ComplexPortal%3ACPX-491","Ercc1-Xpf endonuclease complex"],["ComplexPortal%3ACPX-1659","General transcription factor TFIIH complex"]]},{"id":"InterPro:IPR000792","l":"Transcription regulator LuxR-like, C-terminal","na":1,"nb":59,"a":[["physiology/quorum_sensing.html","quorum sensing"]],"b":[["GO%3A0071111","cyclic-guanylate-specific phosphodiesterase activity"],["GO%3A0048031","trisaccharide binding"],["GO%3A1990451","cellular stress response to acidic pH"],["GO%3A0000023","maltose metabolic process"],["GO%3A0000160","phosphorelay signal transduction system"],["GO%3A0045913","positive regulation of carbohydrate metabolic process"]]},{"id":"CHEBI:17976","l":"","na":1,"nb":56,"a":[["metabolism/electron_transfer.html","Electron transfer"]],"b":[["EC%3A1.1.5.14","fructose 5-dehydrogenase"],["EC%3A1.1.5.2","quinoprotein glucose dehydrogenase (PQQ, quinone)"],["EC%3A1.1.5.3","glycerol-3-phosphate dehydrogenase"],["EC%3A1.1.5.5","alcohol dehydrogenase (quinone)"],["EC%3A1.10.3.11","ubiquinol oxidase (non-electrogenic)"],["EC%3A1.10.3.17","superoxide oxidase"]]},{"id":"GO:0006979","l":"response to oxidative stress","na":1,"nb":50,"a":[["physiology/oxidative_stress_response.html","oxidative stress response"]],"b":[["ComplexPortal%3ACPX-9082","19S-20S-PA28-alphabeta hybrid proteasome complex"],["ComplexPortal%3ACPX-9085","19S-20S-PA28-gamma hybrid proteasome complex"],["ComplexPortal%3ACPX-8806","20S proteasome complex"],["ComplexPortal%3ACPX-4862","Alkyl hydroperoxide reductase complex"],["ComplexPortal%3ACPX-8842","PA28-alphabeta double-capped 20S proteasome complex"],["ComplexPortal%3ACPX-9002","PA28-alphabeta single-capped 20S proteasome complex"]]},{"id":"CHEBI:16947","l":"citrate(3-)","na":1,"nb":49,"a":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"]],"b":[["EC%3A2.3.3.1","citrate (Si)-synthase"],["EC%3A2.3.3.16","citrate synthase (unknown stereospecificity)"],["EC%3A2.3.3.3","citrate (Re)-synthase"],["EC%3A2.3.3.8","ATP citrate synthase"],["EC%3A2.8.3.10","citrate CoA-transferase"],["EC%3A4.1.3.6","citrate (pro-3S)-lyase"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima (strain ATCC 43589 / DSM 3109 / JCM 10099 / NBRC 100826 / MSB8)","na":1,"nb":49,"a":[["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"]],"b":[["Pfam%3APF02829","3H domain"],["Pfam%3APF13175","AAA ATPase domain"],["Pfam%3APF01958","Aspartate dehydrogenase, C-terminal"],["Pfam%3APF05448","Acetyl xylan esterase (AXE1)"],["Pfam%3APF04509","CheC-like family"],["Pfam%3APF13690","Chemotaxis phosphatase CheX"]]},{"id":"CHEBI:16199","l":"urea","na":1,"nb":48,"a":[["physiology/urease_activity.html","urease activity"]],"b":[["EC%3A3.5.1.5","urease"],["EC%3A3.5.1.95","N-malonylurea hydrolase"],["EC%3A3.5.3.1","arginase"],["EC%3A3.5.3.10","D-arginase"],["EC%3A3.5.3.11","agmatinase"],["EC%3A3.5.3.14","amidinoaspartase"]]},{"id":"NCBITaxon:93061","l":"Staphylococcus aureus (strain NCTC 8325 / PS 47)","na":1,"nb":47,"a":[["physiology/catalase_activity.html","catalase activity"]],"b":[["IDPO%3A0000033","flexible linker"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF07694","5TMR of 5TMR-LYT"],["Pfam%3APF01757","Acyltransferase domain"],["Pfam%3APF18719","ArlS sensor domain"],["Pfam%3APF02216","B domain"]]},{"id":"CHEBI:22563","l":"","na":1,"nb":46,"a":[["environment/euryhaline.html","euryhaline"]],"b":[["TCDB%3A1.C.55","The Agrobacterial VirE2 Target Host Cell Membrane Anion Channel (VirE2) Family"],["TCDB%3A1.A.46","The Anion Channel-forming Bestrophin (Bestrophin) Family"],["TCDB%3A1.A.48","The Anion Channel Tweety (Tweety) Family"],["TCDB%3A2.A.31","The Anion Exchanger (AE) Family"],["TCDB%3A2.A.85","The Aromatic Acid Exporter (ArAE) Family"],["TCDB%3A2.A.45","The Arsenite-Antimonite (ArsB) Efflux Family"]]},{"id":"GO:0006313","l":"DNA transposition","na":1,"nb":46,"a":[["genomics/transposable_element.html","transposable element"]],"b":[["GO%3A0006313","DNA transposition"],["GO%3A0098038","non-replicative DNA transposition"],["GO%3A0098039","replicative DNA transposition"],["NCBIfam%3ANF015365","IS1 family transposase"],["NCBIfam%3ANF038385","IS66-like element accessory protein TnpA"],["NCBIfam%3ANF040815","site-specific tyrosine recombinase/integron integrase"]]},{"id":"GO:0042254","l":"ribosome biogenesis","na":1,"nb":44,"a":[["genomics/rrna_operon_copy_number.html","rRNA operon copy number"]],"b":[["ComplexPortal%3ACPX-8940","Ribosome biogenesis complex"],["GO%3A0042254","ribosome biogenesis"],["NCBIfam%3ANF012679","50S ribosomal protein L10"],["NCBIfam%3ANF016308","Gar1/Naf1 RNA binding region"],["NCBIfam%3ANF016057","nucleolar RNA-binding Nop10p family protein"],["NCBIfam%3ATIGR01575","ribosomal protein S18-alanine N-acetyltransferase"]]},{"id":"CHEBI:16480","l":"nitric oxide","na":1,"nb":43,"a":[["ecology/biofilm_formation.html","biofilm formation"]],"b":[["EC%3A1.14.12.17","nitric oxide dioxygenase"],["EC%3A1.14.13.39","nitric-oxide synthase (NADPH)"],["EC%3A1.14.14.47","nitric-oxide synthase (flavodoxin)"],["EC%3A1.14.15.41","L-tryptophan 4-nitrase"],["EC%3A1.14.15.42","L-tyrosine 3-nitrase"],["EC%3A1.7.1.14","nitric oxide reductase [NAD(P)(+), nitrous oxide-forming]"]]},{"id":"GO:0045271","l":"respiratory chain complex I","na":1,"nb":43,"a":[["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"]],"b":[["ComplexPortal%3ACPX-266","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-577","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-8628","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-8638","Mitochondrial respiratory chain complex I, testis-specific variant"],["ComplexPortal%3ACPX-243","Respiratory chain complex I"],["GO%3A0045271","respiratory chain complex I"]]},{"id":"CHEBI:29036","l":"copper(2+)","na":1,"nb":40,"a":[["environment/copper_tolerant.html","copper tolerant"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29036","requires copper(2+)"],["EC%3A1.1.9.1","alcohol dehydrogenase (azurin)"],["EC%3A1.16.3.4","cuproxidase"],["EC%3A1.17.9.1","4-methylphenol dehydrogenase (hydroxylating)"],["EC%3A1.17.9.2","(+)-pinoresinol hydroxylase"],["EC%3A1.20.9.1","arsenate reductase (azurin)"]]},{"id":"DOI:10.15252/embj.201489455","l":"","na":1,"nb":38,"a":[["genomics/brex_system.html","BREX system"]],"b":[["NCBIfam%3ANF033452","BREX-1 system adenine-specific DNA-methyltransferase PglX"],["NCBIfam%3ATIGR02687","BREX-1 system phosphatase PglZ type A"],["NCBIfam%3ANF033450","BREX-1 system phosphatase PglZ type B"],["NCBIfam%3ANF033451","BREX-2 system adenine-specific DNA-methyltransferase PglX"],["NCBIfam%3ANF033446","BREX-2 system phosphatase PglZ"],["NCBIfam%3ANF033449","BREX-3 system phosphatase PglZ"]]},{"id":"CHEBI:17272","l":"propionate","na":1,"nb":34,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["EC%3A1.3.1.125","acrylate reductase"],["EC%3A2.7.2.15","propionate kinase"],["EC%3A2.8.3.1","propionate CoA-transferase"],["EC%3A2.8.3.27","propanoyl-CoA:succinate CoA transferase"],["EC%3A4.1.3.32","2,3-dimethylmalate lyase"],["EC%3A6.2.1.13","acetate--CoA ligase (ADP-forming)"]]},{"id":"GO:0003674","l":"molecular_function","na":1,"nb":34,"a":[["upper/biological_process.html","biological process"]],"b":[["GO%3A0016209","antioxidant activity"],["GO%3A0140657","ATP-dependent activity"],["GO%3A0005488","binding"],["GO%3A0038024","cargo receptor activity"],["GO%3A0003824","catalytic activity"],["GO%3A0003774","cytoskeletal motor activity"]]},{"id":"CHEBI:17968","l":"butyrate","na":1,"nb":33,"a":[["ecology/gut_associated.html","gut-associated"]],"b":[["EC%3A1.3.1.31","2-enoate reductase"],["EC%3A2.3.1.315","succinyl-CoA:cyclohexane-1-carboxylate CoA transferase"],["EC%3A2.7.2.7","butyrate kinase"],["EC%3A2.8.3.9","butyrate--acetoacetate CoA-transferase"],["EC%3A3.1.1.51","phorbol-diester hydrolase"],["EC%3A3.7.1.7","beta-diketone hydrolase"]]},{"id":"GO:0009522","l":"photosystem I","na":1,"nb":33,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"]],"b":[["GO%3A0030093","chloroplast photosystem I"],["GO%3A0009522","photosystem I"],["GO%3A0030094","plasma membrane-derived photosystem I"],["NCBIfam%3ANF014449","photosystem I assembly protein Ycf4"],["NCBIfam%3ATIGR01336","photosystem I core protein PsaB"],["NCBIfam%3ANF014578","photosystem I reaction center subunit II"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":1,"nb":31,"a":[["morphology/s_layer.html","S-layer"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF27529","AMPT"],["Pfam%3APF24856","L-arabinose isomerase central domain"],["Pfam%3APF02610","L-arabinose isomerase N-terminal domain"],["Pfam%3APF11762","L-arabinose isomerase C-terminal domain"],["Pfam%3APF17727","CtsR C-terminal dimerization domain"]]},{"id":"CHEBI:29748","l":"","na":1,"nb":30,"a":[["morphology/green_pigmented.html","green pigmented"]],"b":[["EC%3A2.6.1.123","4-amino-4-deoxychorismate synthase (2-amino-4-deoxychorismate-forming)"],["EC%3A2.6.1.85","aminodeoxychorismate synthase"],["EC%3A2.6.1.86","2-amino-4-deoxychorismate synthase"],["EC%3A3.3.2.13","chorismatase"],["EC%3A4.1.3.27","anthranilate synthase"],["EC%3A4.1.3.40","chorismate lyase"]]},{"id":"CHEBI:24636","l":"","na":1,"nb":28,"a":[["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"]],"b":[["TCDB%3A3.A.4","The Arsenite-Antimonite (ArsAB) Efflux Family"],["TCDB%3A2.A.61","The C4-dicarboxylate Uptake C (DcuC) Family"],["TCDB%3A2.A.106","The Ca2+:H+ Antiporter-2 (CaCA2) Family"],["TCDB%3A1.A.110","The Channel-forming Otopetrin (OTOP) Family"],["TCDB%3A9.A.14","The G-protein-coupled receptor (GPCR) Family"],["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"]]},{"id":"GO:0004565","l":"beta-galactosidase activity","na":1,"nb":28,"a":[["physiology/beta_galactosidase_activity.html","beta-galactosidase activity"]],"b":[["EC%3A3.2.1.23","beta-galactosidase"],["GO%3A0004565","beta-galactosidase activity"],["GO%3A0033943","galactan 1,3-beta-galactosidase activity"],["NCBIfam%3ANF041004","beta-galactosidase BgaS"],["NCBIfam%3ANF041462","beta-galactosidase GalA"],["NCBIfam%3ANF041463","beta-galactosidase GalB"]]},{"id":"GO:0046148","l":"pigment biosynthetic process","na":1,"nb":27,"a":[["morphology/pigmentation.html","pigmentation"]],"b":[["GO%3A0120577","1,2-dehydro-N-acetyldopamine biosynthetic process"],["GO%3A0120576","1,2-dehydro-N-beta-alanyldopamine biosynthetic process"],["GO%3A0009718","anthocyanin-containing compound biosynthetic process"],["GO%3A0051551","aurone biosynthetic process"],["GO%3A0016117","carotenoid biosynthetic process"],["GO%3A0015995","chlorophyll biosynthetic process"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":1,"nb":26,"a":[["morphology/heterocyst.html","heterocyst"]],"b":[["Pfam%3APF27270","Alr1449"],["Pfam%3APF27301","Alr2735 N-terminal domain"],["Pfam%3APF27288","Alr2735"],["Pfam%3APF21571","Arginine dihydrolase ArgZ-like, C-terminal, first region"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF13205","Bacterial Ig-like domain"]]},{"id":"GO:0000910","l":"cytokinesis","na":1,"nb":24,"a":[["morphology/cell_length.html","cell length"]],"b":[["ComplexPortal%3ACPX-24856","GNAI1-RGS14, Gi-signalling regulatory complex"],["GO%3A0061639","Cdv-dependent cytokinesis"],["GO%3A0000911","cytokinesis by cell plate formation"],["GO%3A0000910","cytokinesis"],["GO%3A0061640","cytoskeleton-dependent cytokinesis"],["GO%3A0043093","FtsZ-dependent cytokinesis"]]},{"id":"GO:0006783","l":"heme biosynthetic process","na":1,"nb":24,"a":[["physiology/catalase_activity.html","catalase activity"]],"b":[["ComplexPortal%3ACPX-8302","ABCB10-ABCB7-FECH ABC transporter"],["GO%3A0006784","heme A biosynthetic process"],["GO%3A0006785","heme B biosynthetic process"],["GO%3A0006783","heme biosynthetic process"],["GO%3A0006786","heme C biosynthetic process"],["GO%3A0048034","heme O biosynthetic process"]]},{"id":"GO:0031412","l":"gas vesicle organization","na":1,"nb":24,"a":[["morphology/gas_vesicle.html","gas vesicle"]],"b":[["GO%3A0031412","gas vesicle organization"],["NCBIfam%3ANF041667","gas vesicle accessory protein GvpU"],["NCBIfam%3ANF046092","gas vesicle protein GvpA"],["NCBIfam%3ANF052351","gas vesicle protein GvpF"],["NCBIfam%3ANF045779","gas vesicle protein GvpG"],["NCBIfam%3ANF046090","gas vesicle protein GvpJ"]]},{"id":"CHEBI:24996","l":"lactate","na":1,"nb":23,"a":[["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]],"b":[["EC%3A1.1.1.436","lactate dehydrogenase (NAD(+),ferredoxin)"],["EC%3A3.5.1.124","protein deglycase"],["RHEA%3A57300","an N(2)-(1-hydroxy-2-oxopropyl)-2'-deoxyguanosine in DNA + H2O = a 2'-deoxyguanosine in DNA + lactate + H(+)"],["RHEA%3A57288","an N(2)-(1-hydroxy-2-oxopropyl)-guanosine in RNA + H2O = a guanosine in RNA + lactate + H(+)"],["RHEA%3A46964","lactate + 2 reduced [2Fe-2S]-[ferredoxin] + 2 NAD(+) = 2 oxidized [2Fe-2S]-[ferredoxin] + pyruvate + 2 NADH"],["RHEA%3A57244","N(2)-(1-hydroxy-2-oxopropyl)-dGTP + H2O = lactate + dGTP + H(+)"]]},{"id":"CHEBI:29242","l":"","na":1,"nb":23,"a":[["environment/arsenic_tolerant.html","arsenic tolerant"]],"b":[["EC%3A1.20.2.1","arsenate reductase (cytochrome c)"],["EC%3A1.20.4.1","arsenate reductase (glutathione/glutaredoxin)"],["EC%3A1.20.4.3","mycoredoxin"],["EC%3A1.20.4.4","arsenate reductase (thioredoxin)"],["EC%3A1.20.9.1","arsenate reductase (azurin)"],["EC%3A1.20.99.1","arsenate reductase (donor)"]]},{"id":"GO:0004563","l":"beta-N-acetylhexosaminidase activity","na":1,"nb":23,"a":[["physiology/beta_n_acetylhexosaminidase_activity.html","beta-N-acetylhexosaminidase activity"]],"b":[["EC%3A3.2.1.52","beta-N-acetylhexosaminidase"],["ComplexPortal%3ACPX-502","Beta-hexosaminidase A complex"],["ComplexPortal%3ACPX-689","Beta-hexosaminidase A complex"],["ComplexPortal%3ACPX-686","Beta-hexosaminidase B complex"],["ComplexPortal%3ACPX-690","Beta-hexosaminidase B complex"],["ComplexPortal%3ACPX-687","Beta-hexosaminidase S complex"]]},{"id":"GO:0008843","l":"endochitinase activity","na":1,"nb":23,"a":[["metabolism/biopolymer_degradation.html","biopolymer degradation"]],"b":[["EC%3A3.2.1.14","chitinase"],["GO%3A0008843","endochitinase activity"],["MCSA%3A819","chitinase C"],["MCSA%3A478","chitinase (GH18, Class II)"],["MCSA%3A817","chitinase (GH18, class II)"],["MCSA%3A475","chitinase (GH19, Class II)"]]},{"id":"GO:0009847","l":"spore germination","na":1,"nb":23,"a":[["physiology/spore_germination.html","spore germination"]],"b":[["GO%3A0120164","conidium germination"],["GO%3A0075226","encysted zoospore germination"],["GO%3A0009847","spore germination"],["proteintraitsmech%3ASEED_SUBSYSTEM_Spore_germination","Spore germination"],["NCBIfam%3ATIGR00912","endospore germination permease"],["NCBIfam%3ATIGR02887","Ger(x)C family spore germination protein"]]},{"id":"NCBITaxon:243230","l":"Deinococcus radiodurans R1","na":1,"nb":23,"a":[["environment/radiotolerant.html","radiotolerant"]],"b":[["Pfam%3APF07282","Cas12f1-like, TNB domain"],["Pfam%3APF26517","DNA damage response protein D family"],["Pfam%3APF07733","Bacterial DNA polymerase III alpha NTPase domain"],["Pfam%3APF17657","Bacterial DNA polymerase III alpha subunit finger domain"],["Pfam%3APF11638","DnaA N-terminal domain"],["Pfam%3APF09348","Domain of unknown function (DUF1990)"]]},{"id":"NCBITaxon:266834","l":"Rhizobium meliloti (strain 1021)","na":1,"nb":23,"a":[["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"]],"b":[["Pfam%3APF13279","Thioesterase-like superfamily"],["Pfam%3APF26956","ACR family N-terminal ACT domain"],["Pfam%3APF27143","Atu0565 family"],["Pfam%3APF27488","BioS helical-like domain"],["Pfam%3APF05853","beta-keto acid cleavage enzyme"],["Pfam%3APF13746","4Fe-4S dicluster domain"]]},{"id":"CHEBI:27547","l":"zeaxanthin","na":1,"nb":22,"a":[["morphology/orange_pigmented.html","orange pigmented"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_27547","requires zeaxanthin"],["EC%3A1.13.11.65","carotenoid isomerooxygenase"],["EC%3A1.13.11.84","crocetin dialdehyde synthase"],["EC%3A1.14.15.21","zeaxanthin epoxidase"],["EC%3A1.14.15.24","beta-carotene 3-hydroxylase"],["EC%3A1.14.99.64","zeaxanthin 4-ketolase"]]},{"id":"GO:0003341","l":"cilium movement","na":1,"nb":21,"a":[["ecology/soil_dwelling.html","soil-dwelling"]],"b":[["ComplexPortal%3ACPX-8086","Nexin-dynein regulatory complex"],["ComplexPortal%3ACPX-2626","Outer dynein arm-docking complex"],["ComplexPortal%3ACPX-8161","Radial spoke complex, ciliiar variant"],["ComplexPortal%3ACPX-8163","Radial spoke complex, ciliiar variant"],["ComplexPortal%3ACPX-8162","Radial spoke complex, flagellar variant"],["GO%3A0003341","cilium movement"]]},{"id":"CHEBI:18420","l":"","na":1,"nb":20,"a":[["morphology/cell_width_small.html","cell width small"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18420","requires magnesium(2+)"],["EC%3A4.99.1.10","magnesium dechelatase"],["EC%3A6.6.1.1","magnesium chelatase"],["EC%3A7.2.2.14","P-type Mg(2+) transporter"],["RHEA%3A52788","chlorophyll a + 2 H(+) = pheophytin a + Mg(2+)"],["RHEA%3A52792","chlorophyllide a + 2 H(+) = pheophorbide a + Mg(2+)"]]},{"id":"DOI:10.1126/science.1138140","l":"","na":1,"nb":20,"a":[["genomics/phage_defense_system.html","phage defense system"]],"b":[["InterPro%3AIPR013383","CRISPR-associated protein DxTHG, conserved site"],["InterPro%3AIPR006483","CRISPR-associated Cas3-type, HD domain"],["InterPro%3AIPR013422","CRISPR-associated protein Cas5, N-terminal"],["InterPro%3AIPR019267","CRISPR-associated protein Cas6, C-terminal"],["InterPro%3AIPR045648","CRISPR-associated protein Cas6-like, N-terminal domain"],["InterPro%3AIPR019121","CRISPR-associated protein, CXXC-CXXC domain"]]},{"id":"GO:0000725","l":"recombinational repair","na":1,"nb":20,"a":[["genomics/ploidy.html","ploidy"]],"b":[["ComplexPortal%3ACPX-2197","Exodeoxyribonuclease V complex"],["ComplexPortal%3ACPX-1732","Ku70:Ku80 complex"],["ComplexPortal%3ACPX-1993","Ku70:Ku80 complex"],["ComplexPortal%3ACPX-2047","Ku70:Ku80 complex"],["ComplexPortal%3ACPX-2048","Ku70:Ku80 complex"],["ComplexPortal%3ACPX-5124","RuvAB Holliday junction DNA helicase complex"]]},{"id":"GO:0003989","l":"acetyl-CoA carboxylase activity","na":1,"nb":20,"a":[["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"]],"b":[["EC%3A6.4.1.2","acetyl-CoA carboxylase"],["RHEA%3A11308","hydrogencarbonate + acetyl-CoA + ATP = malonyl-CoA + ADP + phosphate + H(+)"],["ComplexPortal%3ACPX-3206","Acetyl-CoA carboxylase complex"],["GO%3A0003989","acetyl-CoA carboxylase activity"],["NCBIfam%3ANF015228","Acetyl co-enzyme A carboxylase carboxyltransferase-like"],["NCBIfam%3ATIGR00531","acetyl-CoA carboxylase biotin carboxyl carrier protein"]]},{"id":"CHEBI:17057","l":"cellobiose","na":1,"nb":19,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["EC%3A1.1.3.5","hexose oxidase"],["EC%3A1.1.99.18","cellobiose dehydrogenase (acceptor)"],["EC%3A2.4.1.20","cellobiose phosphorylase"],["EC%3A2.7.1.205","protein-N(pi)-phosphohistidine--D-cellobiose phosphotransferase"],["EC%3A2.7.1.85","beta-glucoside kinase"],["EC%3A5.1.3.11","cellobiose epimerase"]]},{"id":"GO:0003993","l":"acid phosphatase activity","na":1,"nb":19,"a":[["physiology/acid_phosphatase_activity.html","acid phosphatase activity"]],"b":[["EC%3A3.1.3.2","acid phosphatase"],["ComplexPortal%3ACPX-120","Prostatic acid phosphatase complex"],["ComplexPortal%3ACPX-121","Prostatic acid phosphatase complex"],["GO%3A0003993","acid phosphatase activity"],["NCBIfam%3ATIGR01672","acid phosphatase AphA"],["NCBIfam%3ANF045654","acid phosphatase PhoC"]]},{"id":"GO:0004559","l":"alpha-mannosidase activity","na":1,"nb":19,"a":[["physiology/alpha_mannosidase_activity.html","alpha-mannosidase activity"]],"b":[["EC%3A3.2.1.24","alpha-mannosidase"],["GO%3A0004559","alpha-mannosidase activity"],["GO%3A0004569","glycoprotein endo-alpha-1,2-mannosidase activity"],["GO%3A0033915","mannan 1,2-(1,3)-alpha-mannosidase activity"],["GO%3A0008496","mannan endo-1,6-alpha-mannosidase activity"],["GO%3A0033941","mannan exo-1,2-1,6-alpha-mannosidase activity"]]},{"id":"GO:0008150","l":"biological_process","na":1,"nb":19,"a":[["upper/biological_process.html","biological process"]],"b":[["GO%3A0044848","biological phase"],["GO%3A0008150","biological_process"],["GO%3A0044419","biological process involved in interspecies interaction between organisms"],["GO%3A0051703","biological process involved in intraspecies interaction between organisms"],["GO%3A0065007","biological regulation"],["GO%3A0009987","cellular process"]]},{"id":"GO:0019290","l":"siderophore biosynthetic process","na":1,"nb":19,"a":[["physiology/siderophore_production.html","siderophore production"]],"b":[["GO%3A0140614","1,8-dihydroxynaphthalene-melanin biosynthetic process"],["GO%3A0042861","achromobactin biosynthetic process"],["GO%3A0019540","catechol-containing siderophore biosynthetic process"],["GO%3A0042858","chrysobactin biosynthetic process"],["GO%3A0019539","hydroxymate-containing siderophore biosynthetic process"],["GO%3A0042864","pyochelin biosynthetic process"]]},{"id":"GO:0043885","l":"anaerobic carbon-monoxide dehydrogenase activity","na":1,"nb":19,"a":[["physiology/carboxydotrophic.html","carboxydotrophic"]],"b":[["EC%3A1.2.7.4","anaerobic carbon-monoxide dehydrogenase"],["RHEA%3A21040","CO + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O = 2 reduced [2Fe-2S]-[ferredoxin] + CO2 + 2 H(+)"],["GO%3A0043885","anaerobic carbon-monoxide dehydrogenase activity"],["NCBIfam%3ATIGR02416","aerobic carbon-monoxide dehydrogenase large subunit"],["NCBIfam%3ATIGR01702","anaerobic carbon-monoxide dehydrogenase catalytic subunit"],["NCBIfam%3ATIGR00314","CO dehydrogenase/acetyl-CoA synthase complex subunit alpha"]]},{"id":"GO:0045277","l":"respiratory chain complex IV","na":1,"nb":19,"a":[["physiology/oxidase_activity.html","oxidase activity"]],"b":[["ComplexPortal%3ACPX-1721","Mitochondrial respiratory chain complex IV, COX5A variant"],["ComplexPortal%3ACPX-1722","Mitochondrial respiratory chain complex IV, COX5B variant"],["ComplexPortal%3ACPX-6123","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-8620","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-9641","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-8621","Mitochondrial respiratory chain complex IV, testis-specific variant"]]},{"id":"GO:0045493","l":"xylan catabolic process","na":1,"nb":19,"a":[["metabolism/xylan_degradation.html","xylan degradation"]],"b":[["GO%3A2000888","arabinoxylan-containing compound catabolic process"],["GO%3A2000886","glucuronoxylan catabolic process"],["GO%3A0045493","xylan catabolic process"],["NCBIfam%3ANF042968","acetylxylan esterase AxeA1"],["NCBIfam%3ANF041579","beta-xylosidase"],["NCBIfam%3ANF042969","bifunctional acetylxylan esterase/glucomannan deacetylase AxeC2"]]},{"id":"CHEBI:16838","l":"polyphosphate","na":1,"nb":18,"a":[["environment/zinc_tolerant.html","zinc tolerant"]],"b":[["EC%3A2.7.1.63","polyphosphate--glucose phosphotransferase"],["EC%3A2.7.4.1","ATP-polyphosphate phosphotransferase"],["EC%3A2.7.4.17","3-phosphoglyceroyl-phosphate--polyphosphate phosphotransferase"],["EC%3A2.7.4.20","dolichyl-diphosphate--polyphosphate phosphotransferase"],["EC%3A2.7.4.33","AMP-polyphosphate phosphotransferase"],["EC%3A2.7.4.34","GDP-polyphosphate phosphotransferase"]]},{"id":"CHEBI:16169","l":"","na":1,"nb":17,"a":[["morphology/pigmentation.html","pigmentation"]],"b":[["EC%3A1.13.11.27","4-hydroxyphenylpyruvate dioxygenase"],["EC%3A1.13.11.5","homogentisate 1,2-dioxygenase"],["EC%3A1.14.13.18","4-hydroxyphenylacetate 1-monooxygenase"],["EC%3A1.14.13.63","3-hydroxyphenylacetate 6-hydroxylase"],["EC%3A2.5.1.115","homogentisate phytyltransferase"],["EC%3A2.5.1.116","homogentisate geranylgeranyltransferase"]]},{"id":"GO:0051701","l":"biological process involved in interaction with host","na":1,"nb":17,"a":[["ecology/plant_pathogen.html","plant pathogen"]],"b":[["GO%3A0044002","acquisition of nutrients from host"],["GO%3A0044406","adhesion of symbiont to host"],["GO%3A0051701","biological process involved in interaction with host"],["GO%3A0035891","exit from host cell"],["GO%3A0044001","migration in host"],["GO%3A0075136","response to host"]]},{"id":"GO:0106435","l":"carboxylesterase activity","na":1,"nb":17,"a":[["physiology/carboxylesterase_activity.html","carboxylesterase activity"]],"b":[["EC%3A3.1.1.1","carboxylesterase"],["RHEA%3A63052","1-O-methyl-(5Z,8Z,11Z,14Z)-eicosatetraenoate + H2O = methanol + (5Z,8Z,11Z,14Z)-eicosatetraenoate + H(+)"],["RHEA%3A21164","a carboxylic ester + H2O = an alcohol + a carboxylate + H(+)"],["RHEA%3A59388","a fatty acid ester + H2O = an aliphatic alcohol + a fatty acid + H(+)"],["RHEA%3A50148","a fatty acid ethyl ester + H2O = ethanol + a fatty acid + H(+)"],["RHEA%3A31779","an all-trans-retinyl ester + H2O = 13-cis-retinol + a fatty acid + H(+)"]]},{"id":"GO:0110143","l":"magnetosome","na":1,"nb":17,"a":[["morphology/magnetosome.html","magnetosome"]],"b":[["GO%3A0110143","magnetosome"],["NCBIfam%3ANF040997","liposome tubulation protein MamY"],["NCBIfam%3ANF040917","magnetic particle specific iron-binding protein Mms6"],["NCBIfam%3ANF040986","magnetosome biogenesis transporter MamH"],["NCBIfam%3ANF040989","magnetosome biogenesis transporter MamN"],["NCBIfam%3ANF040998","magnetosome biogenesis transporter MamZ"]]},{"id":"UniProt:P35149","l":"","na":1,"nb":17,"a":[["morphology/spore_shaped.html","spore shaped"]],"b":[["EC%3A3.6.1.-","In phosphorus-containing anhydrides"],["GO%3A0043595","endospore cortex"],["GO%3A0042601","endospore-forming forespore"],["GO%3A0031160","spore wall"],["GO%3A0000270","peptidoglycan metabolic process"],["GO%3A0009847","spore germination"]]},{"id":"CHEBI:48828","l":"cobalt(2+)","na":1,"nb":16,"a":[["environment/cobalt_tolerant.html","cobalt tolerant"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_48828","requires cobalt(2+)"],["EC%3A1.16.99.1","[Co(II) methylated amine-specific corrinoid protein] reductase"],["EC%3A4.99.1.3","sirohydrochlorin cobaltochelatase"],["EC%3A6.6.1.2","cobaltochelatase"],["RHEA%3A65832","2 Co(II)-[dimethylamine-specific corrinoid protein] + AH2 + ATP + H2O = 2 Co(I)-[dimethylamine-specific corrinoid protein] + A + ADP + phosphate + 3 H(+)"],["RHEA%3A65816","2 Co(II)-[methylamine-specific corrinoid protein] + AH2 + ATP + H2O = 2 Co(I)-[methylamine-specific corrinoid protein] + A + ADP + phosphate + 3 H(+)"]]},{"id":"GO:0004556","l":"alpha-amylase activity","na":1,"nb":16,"a":[["metabolism/starch_degradation.html","starch degradation"]],"b":[["EC%3A3.2.1.1","alpha-amylase"],["GO%3A0004556","alpha-amylase activity"],["NCBIfam%3ANF041321","alpha-amylase MalA"],["NCBIfam%3ANF006971","alpha-amylase"],["NCBIfam%3ANF007051","alpha-amylase"],["NCBIfam%3ANF007052","alpha-amylase"]]},{"id":"GO:0004566","l":"beta-glucuronidase activity","na":1,"nb":16,"a":[["physiology/beta_glucuronidase_activity.html","beta-glucuronidase activity"]],"b":[["EC%3A3.2.1.31","beta-glucuronidase"],["RHEA%3A76111","4-methylumbelliferone beta-D-glucuronate + H2O = 4-methylumbelliferone + D-glucuronate"],["RHEA%3A17633","a beta-D-glucuronoside + H2O = D-glucuronate + an alcohol"],["RHEA%3A30475","oroxylin A 7-O-beta-D-glucuronate + H2O = oroxylin A + D-glucuronate + H(+)"],["RHEA%3A28326","wogonin 7-O-beta-D-glucuronate + H2O = wogonin + D-glucuronate + H(+)"],["GO%3A0004566","beta-glucuronidase activity"]]},{"id":"InterPro:IPR002105","l":"Dockerin type I repeat","na":1,"nb":16,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["Pfam%3APF17996","Carbohydrate esterase 2 N-terminal"],["Pfam%3APF02927","Cellulase N-terminal ig-like domain"],["Pfam%3APF00963","Cohesin domain"],["Pfam%3APF00404","Dockerin type I domain"],["Pfam%3APF07554","FIVAR domain"]]},{"id":"DOI:10.1038/s41564-020-0777-y","l":"","na":1,"nb":15,"a":[["genomics/cbass_system.html","CBASS system"]],"b":[["NCBIfam%3ANF041116","CBASS oligonucleotide cyclase"],["NCBIfam%3ANF041117","CBASS oligonucleotide cyclase"],["NCBIfam%3ANF050171","CBASS system CD-NTase-associated NAD(+) hydrolase Cap12"],["NCBIfam%3ANF050172","CBASS system CD-NTase-associated NAD(+) hydrolase Cap12"],["NCBIfam%3ANF050170","CBASS system CD-NTase/cGAS isopeptidase Cap3"],["NCBIfam%3ANF051438","CD-NTase-associated endodeoxyribonuclease Cap4"]]},{"id":"GO:0045273","l":"respiratory chain complex II (succinate dehydrogenase)","na":1,"nb":15,"a":[["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"]],"b":[["ComplexPortal%3ACPX-561","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-562","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-564","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-565","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-566","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-8622","Mitochondrial respiratory chain complex II"]]},{"id":"GO:0045490","l":"pectin catabolic process","na":1,"nb":15,"a":[["metabolism/pectin_degradation.html","pectin degradation"]],"b":[["GO%3A0045490","pectin catabolic process"],["NCBIfam%3ANF002091","5-dehydro-4-deoxy-D-glucuronate isomerase"],["NCBIfam%3ANF025934","oligogalacturonate lyase family protein"],["NCBIfam%3ANF041904","pectate disaccharide-lyase PelW"],["NCBIfam%3ANF041903","pectate disaccharide-lyase PelX"],["NCBIfam%3ANF041898","pectate lyase PelI"]]},{"id":"InterPro:IPR028629","l":"","na":1,"nb":15,"a":[["genomics/crispr_cas_system.html","CRISPR-Cas system"]],"b":[["Pfam%3APF18470","Cas9 alpha-helical lobe domain"],["Pfam%3APF17893","CRISPR-associated endonuclease Cas9 beta-hairpin domain"],["Pfam%3APF18525","Cas9 C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"],["Pfam%3APF16595","PAM-interacting domain of CRISPR-associated endonuclease Cas9"],["Pfam%3APF18070","CRISPR-Cas9 PI domain"]]},{"id":"METPO:1000802","l":"Anaerobic respiration","na":15,"nb":1,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/arsenate_respiration.html","arsenate respiration"],["metabolism/chlorate_respiration.html","chlorate respiration"],["metabolism/dimethyl_sulfoxide_respiration.html","dimethyl sulfoxide respiration"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"]],"b":[["METPO%3A1000802","Anaerobic respiration"]]},{"id":"METPO:1002005","l":"Fermentation","na":15,"nb":1,"a":[["metabolism/acetone_butanol_ethanol_fermentation.html","acetone-butanol-ethanol fermentation"],["metabolism/butanediol_fermentation.html","2,3-butanediol fermentation"],["metabolism/butyric_acid_fermentation.html","butyric acid fermentation"],["metabolism/citrate_fermentation.html","citrate fermentation"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"]],"b":[["METPO%3A1002005","Fermentation"]]},{"id":"UniProt:P09373","l":"","na":1,"nb":15,"a":[["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"]],"b":[["EC%3A2.3.1.54","formate C-acetyltransferase"],["RHEA%3A11844","formate + acetyl-CoA = pyruvate + CoA"],["GO%3A0008861","formate C-acetyltransferase activity"],["NCBIfam%3ATIGR01255","formate C-acetyltransferase"],["InterPro%3AIPR019777","Formate C-acetyltransferase glycine radical, conserved site"],["CDD%3Acd01678","PFL1"]]},{"id":"DOI:10.1073/pnas.1518570113","l":"","na":1,"nb":14,"a":[["genomics/dpd_system.html","Dpd system"]],"b":[["NCBIfam%3ANF041060","DGQHR domain-containing protein DpdB"],["NCBIfam%3ANF041068","phospholipase D-like domain-containing protein DpdK"],["NCBIfam%3ANF041061","protein DpdD"],["NCBIfam%3ANF041062","protein DpdE"],["NCBIfam%3ANF041063","protein DpdF"],["NCBIfam%3ANF041064","protein DpdG"]]},{"id":"GO:0004629","l":"C-type glycerophospholipase activity","na":1,"nb":14,"a":[["physiology/lecithinase_activity.html","lecithinase activity"]],"b":[["GO%3A0004629","C-type glycerophospholipase activity"],["GO%3A0140335","GPI anchor phospholipase C activity"],["GO%3A0140324","lysophospholipase C activity"],["GO%3A0034480","phosphatidylcholine phospholipase C activity"],["GO%3A0034479","phosphatidylglycerol phospholipase C activity"],["GO%3A0004435","phosphatidylinositol-4,5-bisphosphate phospholipase C activity"]]},{"id":"GO:0009408","l":"response to heat","na":1,"nb":14,"a":[["physiology/heat_shock_response.html","heat shock response"]],"b":[["ComplexPortal%3ACPX-4887","DNA-directed RNA polymerase holoenzyme complex, SigmaH variant"],["ComplexPortal%3ACPX-636","ISW1b chromatin remodeling complex"],["GO%3A0034605","cellular response to heat"],["GO%3A0036168","filamentous growth of a population of unicellular organisms in response to heat"],["GO%3A0010286","heat acclimation"],["GO%3A0009408","response to heat"]]},{"id":"GO:0015891","l":"siderophore transport","na":1,"nb":14,"a":[["physiology/siderophore_production.html","siderophore production"]],"b":[["GO%3A0042935","achromobactin transport"],["GO%3A0042932","chrysobactin transport"],["GO%3A0042930","enterobactin transport"],["GO%3A0044718","siderophore transmembrane transport"],["GO%3A0015891","siderophore transport"],["NCBIfam%3ANF007349","catecholate siderophore receptor Fiu"]]},{"id":"GO:0090599","l":"alpha-glucosidase activity","na":1,"nb":14,"a":[["physiology/alpha_glucosidase_activity.html","alpha-glucosidase activity"]],"b":[["GO%3A0004558","alpha-1,4-glucosidase activity"],["GO%3A0090599","alpha-glucosidase activity"],["GO%3A0004135","amylo-alpha-1,6-glucosidase activity"],["GO%3A0033933","branched-dextran exo-1,2-alpha-glucosidase activity"],["GO%3A0106407","Glc2Man9GlcNAc2 oligosaccharide glucosidase activity"],["GO%3A0004573","Glc3Man9GlcNAc2 oligosaccharide glucosidase activity"]]},{"id":"UniProt:Q58256","l":"","na":1,"nb":14,"a":[["metabolism/methanogenesis.html","Methanogenesis"]],"b":[["GO%3A0050524","coenzyme-B sulfoethylthiotransferase activity"],["GO%3A0015948","methanogenesis"],["NCBIfam%3ATIGR03256","coenzyme-B sulfoethylthiotransferase subunit alpha"],["InterPro%3AIPR009047","Methyl-coenzyme M reductase, alpha subunit, C-terminal"],["InterPro%3AIPR003183","Methyl-coenzyme M reductase, alpha subunit, N-terminal"],["Pfam%3APF02745","Methyl-coenzyme M reductase alpha subunit, N-terminal domain"]]},{"id":"GO:0004781","l":"sulfate adenylyltransferase (ATP) activity","na":1,"nb":13,"a":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["EC%3A2.7.7.4","sulfate adenylyltransferase"],["RHEA%3A18133","sulfate + ATP + H(+) = adenosine 5'-phosphosulfate + diphosphate"],["ComplexPortal%3ACPX-4471","Sulfate adenylyltransferase complex"],["GO%3A0004781","sulfate adenylyltransferase (ATP) activity"],["NCBIfam%3ATIGR02034","sulfate adenylyltransferase, large subunit"],["NCBIfam%3ATIGR02039","sulfate adenylyltransferase, small subunit"]]},{"id":"GO:0016859","l":"cis-trans isomerase activity","na":1,"nb":13,"a":[["environment/temperature_delta_high.html","temperature delta high"]],"b":[["GO%3A0047466","2-chloro-4-carboxymethylenebut-2-en-1,4-olide isomerase activity"],["GO%3A0090471","9,15,9'-tri-cis-zeta-carotene isomerase activity"],["GO%3A0106365","beta-carotene isomerase activity"],["GO%3A0046608","carotenoid isomerase activity"],["GO%3A0016859","cis-trans isomerase activity"],["GO%3A0047885","farnesol 2-isomerase activity"]]},{"id":"GO:0120253","l":"hydrocarbon catabolic process","na":1,"nb":13,"a":[["metabolism/hydrocarbon_degradation.html","hydrocarbon degradation"]],"b":[["GO%3A0043448","alkane catabolic process"],["GO%3A0043451","alkene catabolic process"],["GO%3A0043454","alkyne catabolic process"],["GO%3A1900996","benzene catabolic process"],["GO%3A0018915","ethylbenzene catabolic process"],["GO%3A0019429","fluorene catabolic process"]]},{"id":"InterPro:IPR000673","l":"Signal transduction response regulator, chemotaxis, protein-glutamate methylesterase","na":1,"nb":13,"a":[["physiology/chemotaxis.html","chemotaxis"]],"b":[["GO%3A1990827","deaminase binding"],["GO%3A0008984","protein-glutamate methylesterase activity"],["GO%3A0050568","protein-glutamine glutaminase activity"],["GO%3A0006482","protein demethylation"],["NCBIfam%3ANF001965","chemotaxis-specific protein-glutamate methyltransferase CheB"],["NCBIfam%3ANF009206","chemotaxis-specific protein-glutamate methyltransferase CheB"]]},{"id":"UniProt:P0A7G6","l":"","na":1,"nb":13,"a":[["physiology/sos_response.html","SOS response"]],"b":[["ComplexPortal%3ACPX-5544","DNA polymerase V mutasome complex"],["GO%3A0140664","ATP-dependent DNA damage sensor activity"],["NCBIfam%3ATIGR02012","recombinase RecA"],["InterPro%3AIPR020584","DNA recombination/repair protein RecA, conserved site"],["CDD%3Acd00983","RecA"],["InterPro%3AIPR020587","DNA recombination and repair protein RecA, monomer-monomer interface"]]},{"id":"DOI:10.1038/s41564-017-0051-0","l":"","na":1,"nb":12,"a":[["genomics/disarm_system.html","DISARM system"]],"b":[["NCBIfam%3ANF038323","DISARM system-associated protein DrmE"],["NCBIfam%3ANF038325","DISARM system helicase DrmA"],["NCBIfam%3ANF038326","DISARM system helicase DrmA"],["NCBIfam%3ANF038319","DISARM system phospholipase D-like protein DrmC"],["NCBIfam%3ANF038317","DISARM system SNF2-like helicase DrmD"],["NCBIfam%3ANF038318","DISARM system SNF2-like helicase DrmD"]]},{"id":"GO:0004536","l":"DNA nuclease activity","na":1,"nb":12,"a":[["physiology/dnase_activity.html","DNase activity"]],"b":[["GO%3A0004520","DNA endonuclease activity"],["GO%3A0004529","DNA exonuclease activity"],["GO%3A0004536","DNA nuclease activity"],["NCBIfam%3ANF053575","GINS-associated RecJ family nuclease"],["NCBIfam%3ANF053577","Hef-associated nuclease"],["NCBIfam%3ANF053576","RecJ family nuclease"]]},{"id":"GO:0008964","l":"phosphoenolpyruvate carboxylase activity","na":1,"nb":12,"a":[["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"]],"b":[["EC%3A4.1.1.31","phosphoenolpyruvate carboxylase"],["RHEA%3A28370","oxaloacetate + phosphate = phosphoenolpyruvate + hydrogencarbonate"],["GO%3A0008964","phosphoenolpyruvate carboxylase activity"],["NCBIfam%3ANF000584","phosphoenolpyruvate carboxylase"],["NCBIfam%3ANF012532","phosphoenolpyruvate carboxylase"],["NCBIfam%3ANF025376","phosphoenolpyruvate carboxylase"]]},{"id":"GO:0009512","l":"cytochrome b6f complex","na":1,"nb":12,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"]],"b":[["GO%3A0009512","cytochrome b6f complex"],["NCBIfam%3ANF014576","cytochrome b6-f complex subunit PetG"],["NCBIfam%3ANF016971","cytochrome b6-f complex subunit PetL"],["NCBIfam%3ANF015687","cytochrome b6-f complex subunit PetN"],["NCBIfam%3ANF050003","cytochrome b6f subunit PetP"],["NCBIfam%3ANF019653","PetM family cytochrome b6-f complex subunit 7"]]},{"id":"GO:0045275","l":"respiratory chain complex III","na":1,"nb":12,"a":[["physiology/organoheterotrophic.html","organoheterotrophic"]],"b":[["ComplexPortal%3ACPX-560","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-563","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-567","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-8730","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-9308","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-8737","Mitochondrial respiratory chain complex III, testis-specific variant"]]},{"id":"InterPro:IPR000780","l":"MCP methyltransferase, CheR-type","na":1,"nb":12,"a":[["physiology/chemotaxis.html","chemotaxis"]],"b":[["GO%3A0098561","methyl accepting chemotaxis protein complex"],["GO%3A0008983","protein-glutamate O-methyltransferase activity"],["NCBIfam%3ANF007902","protein-glutamate O-methyltransferase CheR"],["InterPro%3AIPR022641","Chemotaxis receptor methyltransferase CheR, N-terminal"],["InterPro%3AIPR000780","MCP methyltransferase, CheR-type"],["InterPro%3AIPR022642","MCP methyltransferase, CheR-type, SAM-binding domain, C-terminal"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":1,"nb":12,"a":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF02085","Class III cytochrome C family"],["Pfam%3APF06397","Desulfoferrodoxin, N-terminal domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["Pfam%3APF12797","4Fe-4S binding domain"],["Pfam%3APF06180","Cobalt chelatase (CbiK)"]]},{"id":"UniProt:P04949","l":"","na":1,"nb":12,"a":[["morphology/flagellated.html","flagellated"]],"b":[["InterPro%3AIPR049365","Flagellin, barrel domain"],["InterPro%3AIPR046358","Flagellin, C-terminal domain"],["InterPro%3AIPR014981","Flagellin D3"],["InterPro%3AIPR001029","Flagellin, N-terminal domain"],["Pfam%3APF08884","Flagellin D3 domain"],["Pfam%3APF21504","Flagellin, barrel domain"]]},{"id":"UniProt:P23874","l":"","na":1,"nb":12,"a":[["physiology/persister_cell_formation.html","persister cell formation"]],"b":[["ComplexPortal%3ACPX-180","HipBA toxin-antitoxin complex"],["GO%3A0001217","DNA-binding transcription repressor activity"],["GO%3A0022611","dormancy process"],["GO%3A0036289","peptidyl-serine autophosphorylation"],["GO%3A0040008","regulation of growth"],["GO%3A0044010","single-species biofilm formation"]]},{"id":"CHEBI:16510","l":"","na":1,"nb":11,"a":[["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"]],"b":[["EC%3A1.1.1.298","3-hydroxypropionate dehydrogenase (NADP(+))"],["EC%3A1.1.1.59","3-hydroxypropionate dehydrogenase"],["EC%3A6.2.1.36","3-hydroxypropionyl-CoA synthase"],["RHEA%3A59432","3-hydroxypropanal + NAD(+) + H2O = 3-hydroxypropanoate + NADH + 2 H(+)"],["RHEA%3A59428","3-hydroxypropanal + NADP(+) + H2O = 3-hydroxypropanoate + NADPH + 2 H(+)"],["RHEA%3A67136","3-hydroxypropanoate + ATP + CoA = 3-hydroxypropanoyl-CoA + ADP + phosphate"]]},{"id":"CHEBI:16724","l":"4-hydroxybutyrate","na":1,"nb":11,"a":[["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]],"b":[["EC%3A1.1.1.61","4-hydroxybutyrate dehydrogenase"],["EC%3A1.1.1.n11","succinic semialdehyde reductase"],["EC%3A1.1.99.24","hydroxyacid-oxoacid transhydrogenase"],["EC%3A6.2.1.40","4-hydroxybutyrate--CoA ligase (AMP-forming)"],["EC%3A6.2.1.56","4-hydroxybutyrate--CoA ligase (ADP-forming)"],["RHEA%3A24734","4-hydroxybutanoate + 2-oxoglutarate = (R)-2-hydroxyglutarate + succinate semialdehyde"]]},{"id":"GO:0004737","l":"pyruvate decarboxylase activity","na":1,"nb":11,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"]],"b":[["EC%3A4.1.1.1","pyruvate decarboxylase"],["RHEA%3A55072","2-oxobutanoate + H(+) = propanal + CO2"],["RHEA%3A50312","2-oxopentanoate + H(+) = butanal + CO2"],["RHEA%3A54356","3-methyl-2-oxobutanoate + H(+) = 2-methylpropanal + CO2"],["RHEA%3A54360","4-methyl-2-oxopentanoate + H(+) = 3-methylbutanal + CO2"],["RHEA%3A11628","a 2-oxocarboxylate + H(+) = an aldehyde + CO2"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":1,"nb":11,"a":[["other/catalase_negative.html","catalase negative"]],"b":[["Pfam%3APF01721","Class II bacteriocin"],["Pfam%3APF13700","Domain of unknown function (DUF4158)"],["Pfam%3APF07478","D-ala D-ala ligase C-terminus"],["Pfam%3APF01820","D-ala D-ala ligase N-terminus"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"],["PROSITE%3APS00843","D-alanine--D-alanine ligase signature 1"]]},{"id":"NCBITaxon:224911","l":"Bradyrhizobium diazoefficiens USDA 110","na":1,"nb":11,"a":[["morphology/subpolar_flagellation.html","subpolar flagellation"]],"b":[["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["Pfam%3APF14715","N-terminal domain of cytochrome oxidase-cbb3, FixP"],["Pfam%3APF03886","ABC-type transport auxiliary lipoprotein component"],["Pfam%3APF10649","Protein of unknown function (DUF2478)"],["Pfam%3APF01924","Hydrogenase formation hypA family"],["PROSITE%3APS00882","Nickel-dependent hydrogenases b-type cytochrome subunit signature 1"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":1,"nb":11,"a":[["ecology/opportunistic_pathogen.html","opportunistic pathogen"]],"b":[["Pfam%3APF22829","HphA C-terminal domain"],["Pfam%3APF22828","HphA N-terminal heme-binding domain"],["Pfam%3APF28205","Ciprofloxacin tolerance protein"],["Pfam%3APF19582","Solute-binding protein AdeT 1/2"],["PROSITE%3APS00337","Beta-lactamase class-D active site"],["Pfam%3APF24575","Surface lipoprotein assembly modifier, N-terminal TPR repeats"]]},{"id":"UniProt:P0A7C2","l":"","na":1,"nb":11,"a":[["physiology/sos_response.html","SOS response"]],"b":[["NCBIfam%3ATIGR00498","transcriptional repressor LexA"],["proteintraitsmech%3AMEROPS_CLEAVAGE_S24_001","repressor LexA cleavage specificity"],["CDD%3Acd06529","S24_LexA-like"],["InterPro%3AIPR039418","LexA-like"],["InterPro%3AIPR006199","LexA repressor, DNA-binding domain"],["InterPro%3AIPR015927","Peptidase S24/S26A/S26B/S26C"]]},{"id":"UniProt:P0AEK4","l":"","na":1,"nb":11,"a":[["physiology/homeoviscous_adaptation.html","homeoviscous adaptation"]],"b":[["GO%3A1902494","catalytic complex"],["GO%3A0004318","enoyl-[acyl-carrier-protein] reductase (NADH) activity"],["GO%3A0070404","NADH binding"],["GO%3A0009102","biotin biosynthetic process"],["GO%3A0030497","fatty acid elongation"],["GO%3A0008610","lipid biosynthetic process"]]},{"id":"GO:0004557","l":"alpha-galactosidase activity","na":1,"nb":10,"a":[["physiology/alpha_galactosidase_activity.html","alpha-galactosidase activity"]],"b":[["EC%3A3.2.1.22","alpha-galactosidase"],["RHEA%3A21112","a globoside Gb3Cer (d18:1(4E)) + H2O = a beta-D-Gal-(1->4)-beta-D-Glc-(1<->1)-Cer(d18:1(4E)) + D-galactose"],["RHEA%3A28663","melibiose + H2O = D-galactose + D-glucose"],["GO%3A0004557","alpha-galactosidase activity"],["GO%3A0052692","raffinose alpha-galactosidase activity"],["NCBIfam%3ANF053652","beta-L-arabinopyranosidase"]]},{"id":"GO:0008218","l":"bioluminescence","na":1,"nb":10,"a":[["physiology/bioluminescence.html","bioluminescence"]],"b":[["GO%3A0008218","bioluminescence"],["NCBIfam%3ANF052253","fatty acid reductase transferase subunit LuxD"],["NCBIfam%3ANF052244","long-chain-fatty-acid--protein ligase LuxE"],["NCBIfam%3ANF052254","luciferase subunit alpha"],["NCBIfam%3ANF052255","luciferase subunit beta"],["InterPro%3AIPR007534","Acyl-protein synthetase, LuxE"]]},{"id":"GO:0030313","l":"cell envelope","na":1,"nb":10,"a":[["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"]],"b":[["GO%3A0030313","cell envelope"],["PANTHER%3APTHR39576","ATTACHING AND EFFACING PROTEIN HOMOLOG-RELATED-RELATED"],["PANTHER%3APTHR38762","CRYPTIC OUTER MEMBRANE PORIN BGLH-RELATED"],["PANTHER%3APTHR41164","CURLI PRODUCTION ASSEMBLY/TRANSPORT COMPONENT CSGG"],["PANTHER%3APTHR30036","D-XYLOSE-BINDING PERIPLASMIC PROTEIN"],["PANTHER%3APTHR30532","IRON III DICITRATE-BINDING PERIPLASMIC PROTEIN"]]},{"id":"GO:0035434","l":"copper ion transmembrane transport","na":1,"nb":10,"a":[["environment/copper_tolerant.html","copper tolerant"]],"b":[["ComplexPortal%3ACPX-2254","Cus cation efflux complex"],["GO%3A0140636","copper import into the mitochondrion"],["GO%3A0140145","copper ion export from vacuole"],["GO%3A0060003","copper ion export"],["GO%3A0097430","copper ion import across prospore membrane"],["GO%3A7770057","copper ion import into Golgi lumen"]]},{"id":"GO:0046274","l":"lignin catabolic process","na":1,"nb":10,"a":[["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["GO%3A1990487","anaerobic lignin catabolic process"],["GO%3A1901062","guaiacyl lignin catabolic process"],["GO%3A0046274","lignin catabolic process"],["GO%3A1901059","p-hydroxyphenyl lignin catabolic process"],["GO%3A1901065","syringal lignin catabolic process"],["NCBIfam%3ANF042997","beta-etherase"]]},{"id":"NCBITaxon:192222","l":"Campylobacter jejuni subsp. jejuni serotype O:2 (strain ATCC 700819 / NCTC 11168)","na":1,"nb":10,"a":[["environment/capnophilic.html","capnophilic"]],"b":[["Pfam%3APF26365","Apolipoprotein N-acyltransferase integral membrane domain"],["Pfam%3APF22131","CRISPR-associated endonuclease CjCas9 PI-CTD domain"],["Pfam%3APF22129","CRISPR-associated endonuclease CjCas9 wedge domain"],["Pfam%3APF02554","Carbon starvation protein CstA"],["Pfam%3APF27310","HrcA C-terminal domain"],["Pfam%3APF05538","Campylobacter major outer membrane protein"]]},{"id":"UniProt:P06534","l":"","na":1,"nb":10,"a":[["morphology/spore_forming.html","spore forming"]],"b":[["GO%3A0090529","cell septum assembly"],["GO%3A0051606","detection of stimulus"],["GO%3A0000160","phosphorelay signal transduction system"],["GO%3A0045881","positive regulation of sporulation resulting in formation of a cellular spore"],["GO%3A0090606","single-species surface biofilm formation"],["NCBIfam%3ATIGR02875","sporulation transcription factor Spo0A"]]},{"id":"UniProt:P0A9X9","l":"","na":1,"nb":10,"a":[["physiology/cold_shock_response.html","cold shock response"]],"b":[["GO%3A0001072","transcription antitermination factor activity, RNA binding"],["GO%3A0060567","negative regulation of termination of DNA-templated transcription"],["NCBIfam%3ANF007679","RNA chaperone/antiterminator CspA"],["NCBIfam%3ANF049933","transcription antiterminator/RNA stability regulator CspE"],["InterPro%3AIPR019844","Cold-shock domain, conserved site"],["CDD%3Acd04458","CSP_CDS"]]},{"id":"CHEBI:17234","l":"glucose","na":9,"nb":1,"a":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/biopolymer_degradation.html","biopolymer degradation"],["metabolism/cellulolysis.html","cellulolysis"],["metabolism/does_not_use_as_carbon_source.html","does not use as carbon source"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/starch_degradation.html","starch degradation"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:48775","l":"cadmium(2+)","na":1,"nb":9,"a":[["environment/cadmium_tolerant.html","cadmium tolerant"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_48775","requires cadmium(2+)"],["EC%3A7.2.2.2","ABC-type Cd(2+) transporter"],["EC%3A7.2.2.21","Cd(2+)-exporting ATPase"],["RHEA%3A12132","Cd(2+)(in) + ATP + H2O = Cd(2+)(out) + ADP + phosphate + H(+)"],["RHEA%3A28707","Cd(2+)(in) = Cd(2+)(out)"],["RHEA%3A28739","Cd(2+)(in) + H(+)(out) = Cd(2+)(out) + H(+)(in)"]]},{"id":"DOI:10.1016/S0076-6879(05)97026-2","l":"","na":1,"nb":9,"a":[["metabolism/methanogenesis.html","Methanogenesis"]],"b":[["InterPro%3AIPR009047","Methyl-coenzyme M reductase, alpha subunit, C-terminal"],["InterPro%3AIPR003183","Methyl-coenzyme M reductase, alpha subunit, N-terminal"],["InterPro%3AIPR022679","Methyl-coenzyme M reductase, beta subunit, C-terminal"],["InterPro%3AIPR022680","Methyl-coenzyme M reductase, beta subunit, N-terminal"],["InterPro%3AIPR008924","Methyl-coenzyme M reductase, alpha/beta subunit, C-terminal"],["InterPro%3AIPR015811","Methyl-coenzyme M reductase, alpha subunit, N-terminal subdomain 1"]]},{"id":"GO:0004324","l":"ferredoxin-NADP+ reductase activity","na":1,"nb":9,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"]],"b":[["EC%3A1.18.1.2","ferredoxin--NADP(+) reductase"],["RHEA%3A20125","2 reduced [2Fe-2S]-[ferredoxin] + NADP(+) + H(+) = 2 oxidized [2Fe-2S]-[ferredoxin] + NADPH"],["GO%3A0004324","ferredoxin-NADP+ reductase activity"],["NCBIfam%3ANF008178","ferredoxin--NADP(+) reductase"],["NCBIfam%3ANF045929","ferredoxin--NADP reductase"],["MCSA%3A142","ferredoxin-NADP+ reductase (adrenodoxin-type)"]]},{"id":"GO:0004560","l":"alpha-L-fucosidase activity","na":1,"nb":9,"a":[["physiology/alpha_fucosidase_activity.html","alpha-fucosidase activity"]],"b":[["EC%3A3.2.1.51","alpha-L-fucosidase"],["RHEA%3A12288","an alpha-L-fucoside + H2O = L-fucose + an alcohol"],["GO%3A0047513","1,2-alpha-L-fucosidase activity"],["GO%3A0033932","1,3-alpha-L-fucosidase activity"],["GO%3A0033938","1,6-alpha-L-fucosidase activity"],["GO%3A0004560","alpha-L-fucosidase activity"]]},{"id":"GO:0004568","l":"chitinase activity","na":1,"nb":9,"a":[["metabolism/chitinolysis.html","chitinolysis"]],"b":[["GO%3A0004568","chitinase activity"],["GO%3A0008843","endochitinase activity"],["GO%3A0035885","exochitinase activity"],["InterPro%3AIPR013540","Chitinase A N-terminal"],["InterPro%3AIPR000726","Glycoside hydrolase, family 19, catalytic"],["NCBIfam%3ANF019930","chitinase N-terminal domain-containing protein"]]},{"id":"GO:0004586","l":"ornithine decarboxylase activity","na":1,"nb":9,"a":[["physiology/ornithine_decarboxylase_activity.html","ornithine decarboxylase activity"]],"b":[["EC%3A4.1.1.17","ornithine decarboxylase"],["RHEA%3A22964","L-ornithine + H(+) = putrescine + CO2"],["GO%3A0004586","ornithine decarboxylase activity"],["NCBIfam%3ATIGR04301","ornithine decarboxylase SpeF"],["MCSA%3A860","ornithine decarboxylase"],["MCSA%3A937","ornithine decarboxylase"]]},{"id":"GO:0006097","l":"glyoxylate cycle","na":1,"nb":9,"a":[["physiology/heterotrophic.html","heterotrophic"]],"b":[["GO%3A0006097","glyoxylate cycle"],["proteintraitsmech%3ASEED_SUBSYSTEM_Glyoxylate_bypass","Glyoxylate bypass"],["NCBIfam%3ATIGR02924","isocitrate dehydrogenase"],["NCBIfam%3ATIGR01344","malate synthase A"],["NCBIfam%3ANF041315","malate synthase AceB"],["NCBIfam%3ANF002825","malate synthase G"]]},{"id":"GO:0009423","l":"chorismate biosynthetic process","na":1,"nb":9,"a":[["morphology/pigmentation.html","pigmentation"]],"b":[["GO%3A0009423","chorismate biosynthetic process"],["proteintraitsmech%3ASEED_SUBSYSTEM_Chorismate_Synthesis","Chorismate Synthesis"],["NCBIfam%3ATIGR01357","3-dehydroquinate synthase"],["NCBIfam%3ATIGR01358","class II 3-deoxy-7-phosphoheptulonate synthase"],["NCBIfam%3ATIGR01920","shikimate kinase"],["NCBIfam%3ATIGR01088","type II 3-dehydroquinate dehydratase"]]},{"id":"GO:0030152","l":"bacteriocin biosynthetic process","na":1,"nb":9,"a":[["physiology/bacteriocin_production.html","bacteriocin production"]],"b":[["GO%3A0030152","bacteriocin biosynthetic process"],["NCBIfam%3ATIGR04067","Apre_1838 family putative sactipeptide bacteriocin"],["NCBIfam%3ATIGR04065","CLI_3235 family bacteriocin precursor"],["NCBIfam%3ATIGR04068","Cys-rich peptide radical SAM maturase CcpM"],["NCBIfam%3ATIGR04064","nif11-like peptide radical SAM maturase"],["NCBIfam%3ATIGR01295","PedC/BrcD family bacteriocin maturation disulfide isomerase"]]},{"id":"GO:0050421","l":"nitrite reductase (NO-forming) activity","na":1,"nb":9,"a":[["metabolism/denitrification.html","denitrification"]],"b":[["EC%3A1.7.2.1","nitrite reductase (NO-forming)"],["RHEA%3A15233","nitric oxide + Fe(III)-[cytochrome c] + H2O = Fe(II)-[cytochrome c] + nitrite + 2 H(+)"],["GO%3A0050421","nitrite reductase (NO-forming) activity"],["NCBIfam%3ATIGR02376","copper-containing nitrite reductase"],["MCSA%3A4","nitrite reductase (copper type)"],["MCSA%3A903","nitrite reductase (cytochrome cd1 type)"]]},{"id":"GO:0052716","l":"hydroquinone:oxygen oxidoreductase activity","na":1,"nb":9,"a":[["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["EC%3A1.10.3.2","laccase"],["RHEA%3A11276","4 hydroquinone + O2 = 4 benzosemiquinone + 2 H2O"],["GO%3A0052716","hydroquinone:oxygen oxidoreductase activity"],["MCSA%3A390","laccase"],["proteintraitsmech%3ABIOLIP_3DM","3DM-binding site"],["proteintraitsmech%3ABIOLIP_D2M","D2M-binding site"]]},{"id":"InterPro:IPR004090","l":"","na":1,"nb":9,"a":[["physiology/chemotaxis.html","chemotaxis"]],"b":[["Pfam%3APF05227","CHASE3 domain"],["Pfam%3APF02743","Cache domain"],["Pfam%3APF08269","Cache domain"],["Pfam%3APF18947","HAMP domain"],["Pfam%3APF18575","HAMP N-terminal domain 3"],["Pfam%3APF17909","Htr2 transmembrane domain"]]},{"id":"NCBITaxon:264203","l":"Zymomonas mobilis subsp. mobilis (strain ATCC 31821 / ZM4 / CP4)","na":1,"nb":9,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"]],"b":[["Pfam%3APF13590","Domain of unknown function (DUF4136)"],["Pfam%3APF08436","1-deoxy-D-xylulose 5-phosphate reductoisomerase C-terminal domain"],["Pfam%3APF13288","DXP reductoisomerase C-terminal domain"],["Pfam%3APF02670","1-deoxy-D-xylulose 5-phosphate reductoisomerase"],["PROSITE%3APS01157","Class A bacterial acid phosphatases signature"],["PROSITE%3APS01320","Uncharacterized protein family UPF0067 signature"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":9,"a":[["morphology/motility.html","motility"]],"b":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF25954","CusB-like, beta-barrel domain"],["Pfam%3APF13438","Domain of unknown function (DUF4113)"],["Pfam%3APF03767","HAD superfamily, subfamily IIIB (Acid phosphatase)"],["Pfam%3APF03496","ADP-ribosyltransferase exoenzyme"]]},{"id":"UniProt:P09424","l":"","na":1,"nb":9,"a":[["physiology/chemoheterotrophic.html","chemoheterotrophic"]],"b":[["GO%3A0008926","mannitol-1-phosphate 5-dehydrogenase activity"],["GO%3A0019592","mannitol catabolic process"],["NCBIfam%3ANF002646","mannitol-1-phosphate 5-dehydrogenase"],["NCBIfam%3ANF002647","mannitol-1-phosphate 5-dehydrogenase"],["NCBIfam%3ANF002648","mannitol-1-phosphate 5-dehydrogenase"],["NCBIfam%3ANF002650","mannitol-1-phosphate 5-dehydrogenase"]]},{"id":"UniProt:P21458","l":"","na":1,"nb":9,"a":[["morphology/sporulation.html","sporulation"]],"b":[["CDD%3Acd01127","TrwB_TraG_TraD_VirD4"],["InterPro%3AIPR041027","FtsK alpha domain"],["InterPro%3AIPR002543","FtsK domain"],["InterPro%3AIPR018541","FtsK gamma domain"],["Pfam%3APF17854","FtsK alpha domain"],["Pfam%3APF09397","Ftsk gamma domain"]]},{"id":"CHEBI:17029","l":"chitin","na":1,"nb":8,"a":[["metabolism/chitinolysis.html","chitinolysis"]],"b":[["EC%3A2.4.1.16","chitin synthase"],["EC%3A3.5.1.41","chitin deacetylase"],["RHEA%3A85463","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-1)-N-acetyl-alpha-D-glucosamine"],["RHEA%3A50672","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-2) + N,N'-diacetylchitobiose"],["RHEA%3A85003","[(1->4)-N-acetyl-beta-D-glucosaminyl](n)-N-acetyl-alpha-D-glucosamine + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n) + N-acetyl-alpha-D-glucosamine"],["RHEA%3A10464","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + n H2O = chitosan + n acetate"]]},{"id":"DOI:10.1016/j.cell.2020.09.065","l":"","na":1,"nb":8,"a":[["genomics/retron_system.html","Retron system"]],"b":[["NCBIfam%3ANF038235","retron Ec48 family effector membrane protein"],["NCBIfam%3ANF038237","retron Ec67 family RNA-directed DNA polymerase/endonuclease"],["NCBIfam%3ANF038234","retron Eco8 family effector endonuclease"],["NCBIfam%3ANF038236","retron Se72 family effector protein"],["NCBIfam%3ANF038232","retron St85 family effector protein"],["NCBIfam%3ANF038233","retron St85 family RNA-directed DNA polymerase"]]},{"id":"DOI:10.1016/j.cell.2021.09.031","l":"","na":1,"nb":8,"a":[["genomics/pycsar_system.html","Pycsar system"]],"b":[["RHEA%3A14737","CTP = 3',5'-cyclic CMP + diphosphate"],["RHEA%3A69603","UTP = 3',5'-cyclic UMP + diphosphate"],["InterPro%3AIPR001054","Adenylyl cyclase class-3/4/guanylyl cyclase"],["InterPro%3AIPR040511","Adenylyl/Guanylyl and SMODS, C-terminal sensor domain"],["InterPro%3AIPR043760","Pycsar effector protein domain"],["NCBIfam%3ANF036719","nucleotide-binding domain-containing protein"]]},{"id":"DOI:10.1038/nature10453","l":"","na":1,"nb":8,"a":[["metabolism/anaerobic_ammonium_oxidation.html","anaerobic ammonium oxidation"]],"b":[["RHEA%3A49816","hydrazine + 3 Fe(III)-[cytochrome c] + H2O = nitric oxide + 3 Fe(II)-[cytochrome c] + NH4(+) + 2 H(+)"],["RHEA%3A23232","hydrazine + 4 Fe(III)-[cytochrome c] = N2 + 4 Fe(II)-[cytochrome c] + 4 H(+)"],["NCBIfam%3ANF052343","hydrazine dehydrogenase"],["NCBIfam%3ANF052339","hydrazine synthase subunit alpha"],["NCBIfam%3ANF052342","hydrazine synthase subunit beta-gamma fusion subunit"],["NCBIfam%3ANF052340","hydrazine synthase subunit beta"]]},{"id":"DOI:10.1074/jbc.M805643200","l":"","na":1,"nb":8,"a":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["RHEA%3A47008","[DsrC protein]-disulfide + hydrogen sulfide + 2 A + 3 H2O = [DsrC protein]-dithiol + sulfite + 2 AH2 + H(+)"],["RHEA%3A47012","[DsrC protein]-disulfide + hydrogen sulfide + H(+) = [DsrC protein]-S-sulfanyl-L-cysteine/L-cysteine"],["RHEA%3A47016","[DsrC protein]-S-sulfanyl-L-cysteine/L-cysteine + 2 A + 3 H2O = [DsrC protein]-dithiol + sulfite + 2 AH2 + 2 H(+)"],["RHEA%3A47020","[DsrC protein]-S-sulfanyl-L-cysteine/L-cysteine + 3 A + 3 H2O = [DsrC protein]-disulfide + sulfite + 3 AH2 + 2 H(+)"],["RHEA%3A47024","[DsrC protein]-S-sulfanyl-L-cysteine/L-cysteine + 3 A + 3 H2O = [DsrC protein]-S-sulfo-L-cysteine/L-cysteine + 3 AH2 + H(+)"],["RHEA%3A47028","[DsrC protein]-S-sulfo-L-cysteine/L-cysteine = [DsrC protein]-disulfide + sulfite + H(+)"]]},{"id":"DOI:10.1128/JB.01405-06","l":"","na":1,"nb":8,"a":[["morphology/subpolar_flagellation.html","subpolar flagellation"]],"b":[["NCBIfam%3ANF009429","flagellar basal body L-ring protein FlgH"],["NCBIfam%3ANF009430","flagellar basal body P-ring protein FlgI"],["NCBIfam%3ANF004653","flagellar basal body rod protein FlgB"],["NCBIfam%3ANF004654","flagellar basal body rod protein FlgB"],["NCBIfam%3ANF009331","flagellar basal-body rod protein FlgF"],["NCBIfam%3ANF009434","flagellar biosynthesis regulator FlaF"]]},{"id":"GO:0003868","l":"4-hydroxyphenylpyruvate dioxygenase activity","na":1,"nb":8,"a":[["morphology/brown_pigmented.html","brown pigmented"]],"b":[["EC%3A1.13.11.27","4-hydroxyphenylpyruvate dioxygenase"],["RHEA%3A16189","3-(4-hydroxyphenyl)pyruvate + O2 = homogentisate + CO2"],["GO%3A0003868","4-hydroxyphenylpyruvate dioxygenase activity"],["NCBIfam%3ATIGR01263","4-hydroxyphenylpyruvate dioxygenase"],["proteintraitsmech%3ABIOLIP_869","869-binding site"],["proteintraitsmech%3ABIOLIP_AIY","AIY-binding site"]]},{"id":"GO:0006572","l":"L-tyrosine catabolic process","na":1,"nb":8,"a":[["morphology/brown_pigmented.html","brown pigmented"]],"b":[["GO%3A0006572","L-tyrosine catabolic process"],["Reactome%3AR-HSA-8963684","Tyrosine catabolism"],["NCBIfam%3ATIGR01263","4-hydroxyphenylpyruvate dioxygenase"],["NCBIfam%3ATIGR01266","fumarylacetoacetase"],["NCBIfam%3ATIGR01015","homogentisate 1,2-dioxygenase"],["NCBIfam%3ATIGR01262","maleylacetoacetate isomerase"]]},{"id":"GO:0008936","l":"nicotinamidase activity","na":1,"nb":8,"a":[["physiology/pyrazinamidase_activity.html","pyrazinamidase activity"]],"b":[["EC%3A3.5.1.19","nicotinamidase"],["RHEA%3A14545","nicotinamide + H2O = nicotinate + NH4(+)"],["GO%3A0008936","nicotinamidase activity"],["ARO%3A3004267","antibiotic resistant pncA"],["ARO%3A3003394","Mycobacterium tuberculosis pncA mutations conferring resistance to pyrazinamide"],["ARO%3A3003418","Pyrazinamide resistant pncA"]]},{"id":"GO:0009303","l":"rRNA transcription","na":1,"nb":8,"a":[["genomics/rrna_operon_copy_number.html","rRNA operon copy number"]],"b":[["GO%3A0042791","5S class rRNA transcription by RNA polymerase III"],["GO%3A0042790","nucleolar large rRNA transcription by RNA polymerase I"],["GO%3A0042794","plastid rRNA transcription"],["GO%3A0009303","rRNA transcription"],["PANTHER%3APTHR14440","DNA-DIRECTED RNA POLYMERASE I SUBUNIT RPA49"],["PANTHER%3APTHR10535","DNA-DIRECTED RNA POLYMERASES I, II, AND III SUBUNIT RPABC1"]]},{"id":"GO:0016049","l":"cell growth","na":1,"nb":8,"a":[["metabolism/metabolism.html","metabolism"]],"b":[["GO%3A0051211","anisotropic cell growth"],["GO%3A0016049","cell growth"],["GO%3A0048588","developmental cell growth"],["GO%3A0051210","isotropic cell growth"],["GO%3A0009825","multidimensional cell growth"],["GO%3A0007124","pseudohyphal growth"]]},{"id":"GO:0036374","l":"glutathione gamma-glutamate hydrolase","na":1,"nb":8,"a":[["physiology/gamma_glutamyltransferase_activity.html","gamma-glutamyltransferase activity"]],"b":[["EC%3A3.4.19.13","glutathione gamma-glutamate hydrolase"],["RHEA%3A28807","glutathione + H2O = L-cysteinylglycine + L-glutamate"],["ComplexPortal%3ACPX-325","Glutathione hydrolase complex"],["GO%3A0036374","glutathione gamma-glutamate hydrolase"],["NCBIfam%3ANF007187","gamma-glutamyltransferase"],["NCBIfam%3ATIGR00066","gamma-glutamyltransferase"]]},{"id":"GO:0042276","l":"error-prone translesion synthesis","na":1,"nb":8,"a":[["genomics/gc_content.html","GC content"]],"b":[["ComplexPortal%3ACPX-1091","DNA polymerase zeta complex"],["ComplexPortal%3ACPX-2426","DNA polymerase zeta complex"],["ComplexPortal%3ACPX-994","DNA polymerase zeta complex"],["GO%3A0042276","error-prone translesion synthesis"],["Reactome%3AR-HSA-5656121","Translesion synthesis by POLI"],["Reactome%3AR-HSA-5655862","Translesion synthesis by POLK"]]},{"id":"InterPro:IPR001492","l":"","na":1,"nb":8,"a":[["morphology/spirochete_shaped.html","spirochete shaped"]],"b":[["Pfam%3APF00700","Bacterial flagellin C-terminal helical region"],["Pfam%3APF08884","Flagellin D3 domain"],["Pfam%3APF21504","Flagellin, barrel domain"],["Pfam%3APF22370","Flagellin, beta sheet domain"],["PANTHER%3APTHR42792","FLAGELLIN"],["Pfam%3APF00669","Bacterial flagellin N-terminal helical region"]]},{"id":"InterPro:IPR050469","l":"","na":1,"nb":8,"a":[["ecology/biofilm_formation.html","biofilm formation"]],"b":[["Pfam%3APF17151","Periplasmic sensor domain"],["Pfam%3APF13682","Chemoreceptor zinc-binding domain"],["Pfam%3APF20975","DGC-associated coil"],["Pfam%3APF21118","DosC CZB-like middle domain"],["Pfam%3APF00990","Diguanylate cyclase, GGDEF domain"],["PANTHER%3APTHR45138","REGULATORY COMPONENTS OF SENSORY TRANSDUCTION SYSTEM"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":8,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["Pfam%3APF02927","Cellulase N-terminal ig-like domain"],["Pfam%3APF00404","Dockerin type I domain"],["PROSITE%3APS00448","Clostridium cellulosome enzymes repeated domain signature"],["PROSITE%3APS60032","Glycosyl hydrolases family 9 (GH9) active site signature 1"],["PROSITE%3APS00592","Glycosyl hydrolases family 9 (GH9) active site signature 2"],["PROSITE%3APS00698","Glycosyl hydrolases family 9 (GH9) active site signature 3"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":1,"nb":8,"a":[["environment/microaerophilic.html","microaerophilic"]],"b":[["Pfam%3APF04439","Streptomycin adenylyltransferase"],["MCSA%3A840","alpha-2,3-sialyltransferase"],["TED%3AAF-A0A696J2C3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A696J2C3-F1-model_v4_TED01"],["TED%3AAF-A0A825M6H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A825M6H4-F1-model_v4_TED01"],["TED%3AAF-A0A5T0SBG5-F1-model_v4_TED01","TED novel fold AF-A0A5T0SBG5-F1-model_v4_TED01"],["TED%3AAF-A0A698JVM3-F1-model_v4_TED03","TED novel fold AF-A0A698JVM3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK1622","na":1,"nb":8,"a":[["morphology/gliding.html","gliding"]],"b":[["Pfam%3APF27281","DevT C-terminal domain"],["Pfam%3APF27372","DevT N-terminal domain"],["Pfam%3APF17762","ParB HTH domain"],["Pfam%3APF01930","Domain of unknown function DUF83"],["Pfam%3APF09559","Cas6 Crispr"],["Pfam%3APF01905","CRISPR-associated negative auto-regulator DevR/Csa2"]]},{"id":"NCBITaxon:272623","l":"Lactococcus lactis subsp. lactis (strain IL1403)","na":1,"nb":8,"a":[["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]],"b":[["Pfam%3APF25935","LcnD-like, barrel-sandwich hybrid domain"],["Pfam%3APF27342","ComB N-terminal domain"],["Pfam%3APF06993","Protein of unknown function (DUF1304)"],["Pfam%3APF25887","LcnD-like, long helical bundle domain"],["Pfam%3APF13276","HTH-like domain"],["Pfam%3APF25940","LcnD-like, C-terminal domain"]]},{"id":"UniProt:P04189","l":"","na":1,"nb":8,"a":[["metabolism/proteolysis.html","proteolysis"]],"b":[["GO%3A0009274","peptidoglycan-based cell wall"],["GO%3A0004252","serine-type endopeptidase activity"],["GO%3A0009372","quorum sensing"],["GO%3A0140448","signaling receptor ligand precursor processing"],["InterPro%3AIPR023827","Peptidase S8, subtilisin, Asp-active site"],["InterPro%3AIPR022398","Peptidase S8, subtilisin, His-active site"]]},{"id":"UniProt:P0ABB4","l":"","na":8,"nb":1,"a":[["metabolism/metabolism.html","metabolism"],["metabolism/respiration.html","respiration"],["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"],["physiology/chemotrophic.html","chemotrophic"],["physiology/heterotrophic.html","heterotrophic"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"]]},{"id":"CHEBI:17593","l":"","na":1,"nb":7,"a":[["metabolism/starch_degradation.html","starch degradation"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.B.64","The Brucella Omp2 Porin (B-Omp2) Family"],["TCDB%3A1.B.26","The Cyclodextrin Porin (CDP) Family"],["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["TCDB%3A1.B.3","The Sugar Porin (SP) Family"]]},{"id":"CHEBI:30087","l":"","na":1,"nb":7,"a":[["metabolism/sulfur_oxidation.html","sulfur oxidation"]],"b":[["EC%3A1.14.20.7","2-oxoglutarate/L-arginine monooxygenase/decarboxylase (succinate- forming)"],["RHEA%3A31527","5-hydroxy-L-arginine = guanidine + L-glutamate 5-semialdehyde"],["RHEA%3A79843","6-hydroxy-L-homoarginine = guanidine + (S)-2-amino-6-oxohexanoate"],["RHEA%3A79567","guanidine + H2O = urea + NH4(+)"],["RHEA%3A73883","guanidine(out) = guanidine(in)"],["RHEA%3A31535","L-arginine + 2-oxoglutarate + O2 = guanidine + L-glutamate 5-semialdehyde + succinate + CO2"]]},{"id":"DOI:10.1016/j.chom.2024.07.007","l":"","na":1,"nb":7,"a":[["genomics/prometheus_system.html","Prometheus system"]],"b":[["NCBIfam%3ANF058523","anti-phage 6A-MBL system cap2_3 protein"],["NCBIfam%3ANF058524","anti-phage 6A-MBL system MBL-fold protein"],["NCBIfam%3ANF058533","anti-phage protein ProA"],["NCBIfam%3ANF058535","NACHT domain-containing antiphage protein EruA"],["NCBIfam%3ANF058534","NACHT domain-containing antiphage protein HyoA"],["NCBIfam%3ANF058525","Thoeris type III anti-phage system protein ThcA"]]},{"id":"DOI:10.1038/s41467-020-16703-w","l":"","na":1,"nb":7,"a":[["genomics/thoeris_system.html","Thoeris system"]],"b":[["InterPro%3AIPR041486","NAD(+) hydrolase ThsA, Sir2/TIR-associating SLOG domain"],["InterPro%3AIPR045535","Thoeris protein ThsA, Macro domain"],["InterPro%3AIPR015032","Thoeris protein ThsB, TIR-like domain"],["NCBIfam%3ANF039447","macro domain-containing protein"],["NCBIfam%3ANF020509","TIR domain-containing protein"],["PROSITE%3APDOC50305","Sirtuin catalytic"]]},{"id":"GO:0004411","l":"homogentisate 1,2-dioxygenase activity","na":1,"nb":7,"a":[["morphology/brown_pigmented.html","brown pigmented"]],"b":[["EC%3A1.13.11.5","homogentisate 1,2-dioxygenase"],["RHEA%3A15449","homogentisate + O2 = 4-maleylacetoacetate + H(+)"],["GO%3A0004411","homogentisate 1,2-dioxygenase activity"],["NCBIfam%3ATIGR01015","homogentisate 1,2-dioxygenase"],["NCBIfam%3ANF016125","homogentisate 1,2-dioxygenase domain-containing protein"],["MCSA%3A547","homogentisate 1,2-dioxygenase"]]},{"id":"GO:0004658","l":"propionyl-CoA carboxylase activity","na":1,"nb":7,"a":[["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"]],"b":[["EC%3A6.4.1.3","propionyl-CoA carboxylase"],["RHEA%3A23720","propanoyl-CoA + hydrogencarbonate + ATP = (S)-methylmalonyl-CoA + ADP + phosphate + H(+)"],["ComplexPortal%3ACPX-6169","Mitochondrial propionyl-CoA carboxylase complex"],["GO%3A0004658","propionyl-CoA carboxylase activity"],["NCBIfam%3ANF025192","acyl-CoA carboxylase epsilon subunit"],["Pfam%3APF13822","Acyl-CoA carboxylase epsilon subunit"]]},{"id":"GO:0008804","l":"carbamate kinase activity","na":1,"nb":7,"a":[["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["EC%3A2.7.2.2","carbamate kinase"],["RHEA%3A10152","hydrogencarbonate + NH4(+) + ATP = carbamoyl phosphate + ADP + H2O + H(+)"],["GO%3A0008804","carbamate kinase activity"],["NCBIfam%3ANF006926","carbamate kinase"],["NCBIfam%3ATIGR00746","carbamate kinase"],["MCSA%3A669","carbamate kinase"]]},{"id":"GO:0009424","l":"bacterial-type flagellum hook","na":1,"nb":7,"a":[["morphology/flagellated.html","flagellated"]],"b":[["GO%3A0009424","bacterial-type flagellum hook"],["NCBIfam%3ATIGR02492","flagellar hook-associated protein FlgK"],["NCBIfam%3ATIGR02550","flagellar hook-associated protein FlgL"],["NCBIfam%3ANF007514","flagellar hook length control protein FliK"],["InterPro%3AIPR003481","Flagellar hook-associated protein 2, N-terminal"],["NCBIfam%3ANF014518","flagellar cap protein FliD N-terminal domain-containing protein"]]},{"id":"GO:0009973","l":"adenylyl-sulfate reductase activity","na":1,"nb":7,"a":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["EC%3A1.8.99.2","adenylyl-sulfate reductase"],["RHEA%3A24240","sulfite + A + AMP + 2 H(+) = adenosine 5'-phosphosulfate + AH2"],["GO%3A0009973","adenylyl-sulfate reductase activity"],["NCBIfam%3ATIGR02061","adenylyl-sulfate reductase subunit alpha"],["NCBIfam%3ATIGR02060","adenylyl-sulfate reductase subunit beta"],["NCBIfam%3ATIGR02055","adenylylsulfate reductase, thioredoxin dependent"]]},{"id":"GO:0019420","l":"dissimilatory sulfate reduction","na":1,"nb":7,"a":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["GO%3A0019420","dissimilatory sulfate reduction"],["NCBIfam%3ATIGR02061","adenylyl-sulfate reductase subunit alpha"],["NCBIfam%3ATIGR02060","adenylyl-sulfate reductase subunit beta"],["NCBIfam%3ATIGR02066","dissimilatory-type sulfite reductase subunit beta"],["NCBIfam%3ANF045796","sulfate reduction electron transfer complex DsrMKJOP subunit DsrK"],["NCBIfam%3ANF045797","sulfate reduction electron transfer complex DsrMKJOP subunit DsrO"]]},{"id":"GO:0042744","l":"hydrogen peroxide catabolic process","na":1,"nb":7,"a":[["environment/aerotolerant.html","aerotolerant"]],"b":[["ComplexPortal%3ACPX-4862","Alkyl hydroperoxide reductase complex"],["ComplexPortal%3ACPX-4742","Catalase complex"],["ComplexPortal%3ACPX-4767","Catalase complex"],["ComplexPortal%3ACPX-4768","Catalase complex"],["GO%3A0033355","ascorbate glutathione cycle"],["GO%3A0042744","hydrogen peroxide catabolic process"]]},{"id":"InterPro:IPR018028","l":"","na":1,"nb":7,"a":[["physiology/catalase_activity.html","catalase activity"]],"b":[["Pfam%3APF18011","C-terminal domain found in long catalases"],["Pfam%3APF00199","Catalase"],["PANTHER%3APTHR11465","CATALASE"],["Pfam%3APF06628","Catalase-related immune-responsive"],["PRINTS%3APR00067","Catalase signature"],["PROSITE%3APS00437","Catalase proximal heme-ligand signature"]]},{"id":"InterPro:IPR045087","l":"","na":1,"nb":7,"a":[["metabolism/manganese_oxidation.html","manganese oxidation"]],"b":[["Pfam%3APF07731","Multicopper oxidase"],["Pfam%3APF07732","Multicopper oxidase"],["Pfam%3APF00394","Multicopper oxidase"],["PANTHER%3APTHR48267","CUPREDOXIN SUPERFAMILY PROTEIN"],["PANTHER%3APTHR11709","MULTI-COPPER OXIDASE"],["PROSITE%3APS00079","Multicopper oxidases signature 1"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":7,"nb":1,"a":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/copper_tolerant.html","copper tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["environment/metal_tolerant.html","metal tolerant"]],"b":[["TED%3AAF-A0A132HLN2-F1-model_v4_TED01","TED novel fold AF-A0A132HLN2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:672","l":"Vibrio vulnificus","na":1,"nb":7,"a":[["physiology/viable_but_nonculturable_state.html","viable but nonculturable state"]],"b":[["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF08021","Siderophore-interacting FAD-binding domain"],["Pfam%3APF11575","FhuF 2Fe-2S C-terminal domain"],["Pfam%3APF27349","IcsB middle domain"],["Pfam%3APF21735","C-terminal repeat from RTX toxins"],["Pfam%3APF07634","RtxA repeat"]]},{"id":"NCBITaxon:837","l":"Porphyromonas gingivalis","na":1,"nb":7,"a":[["morphology/black_pigmented.html","black pigmented"]],"b":[["Pfam%3APF07675","Cleaved Adhesin Domain"],["Pfam%3APF22492","FimA4 pilin C-terminal domain"],["Pfam%3APF15495","Major fimbrial subunit protein type IV, Fimbrillin, C-terminal"],["Pfam%3APF26306","FimD protein third domain"],["Pfam%3APF27397","FimE C-terminal domain"],["Pfam%3APF10365","Domain of unknown function (DUF2436)"]]},{"id":"CHEBI:27592","l":"ectoine","na":6,"nb":1,"a":[["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"],["environment/nacl_delta_mid1.html","NaCl delta mid1"],["environment/nacl_optimum_mid2.html","NaCl optimum mid2"],["environment/nacl_range_mid2.html","NaCl range mid2"],["environment/slightly_halophilic.html","slightly halophilic"]],"b":[["proteintraitsmech%3ABIOLIP_4CS","4CS-binding site"]]},{"id":"CHEBI:29041","l":"","na":1,"nb":6,"a":[["metabolism/manganese_oxidation.html","manganese oxidation"]],"b":[["EC%3A1.11.1.13","manganese peroxidase"],["EC%3A1.11.1.16","versatile peroxidase"],["RHEA%3A22776","2 Mn(2+) + H2O2 + 2 H(+) = 2 Mn(3+) + 2 H2O"],["RHEA%3A52244","4 Mn(2+) + O2 + 4 H(+) = 4 Mn(3+) + 2 H2O"],["RHEA%3A52248","4 Mn(3+) + O2 + 6 H2O = 4 MnO2 + 12 H(+)"],["proteintraitsmech%3ABIOLIP_MN3","MN3-binding site"]]},{"id":"CHEBI:71578","l":"","na":6,"nb":1,"a":[["environment/nacl_delta_mid1.html","NaCl delta mid1"],["environment/nacl_delta_mid2.html","NaCl delta mid2"],["environment/nacl_optimum_low.html","NaCl optimum low"],["environment/nacl_range.html","NaCl range"],["environment/nacl_range_low.html","NaCl range low"],["environment/stenohaline.html","stenohaline"]],"b":[["proteintraitsmech%3ABIOLIP_2BA","2BA-binding site"]]},{"id":"DOI:10.1038/s41579-019-0299-x","l":"","na":1,"nb":6,"a":[["genomics/crispr_cas_system.html","CRISPR-Cas system"]],"b":[["NCBIfam%3ANF041225","type III-E CRISPR-associated gRAMP effector Cas7-11e"],["NCBIfam%3ANF041236","type III-E CRISPR-associated RpoE-like sigma factor"],["NCBIfam%3ANF041237","type III-E CRISPR-associated TPR-CHAT protein Csx29"],["NCBIfam%3ANF049948","type III-G CRISPR-associated protein Csx26"],["NCBIfam%3ANF038192","type V CRISPR-associated protein C2c8"],["NCBIfam%3ANF038189","type VI-D CRISPR-associated RNA-guided ribonuclease Cas13d"]]},{"id":"DOI:10.1038/s41586-019-1605-5","l":"","na":1,"nb":6,"a":[["genomics/cbass_system.html","CBASS system"]],"b":[["NCBIfam%3ANF041079","CBASS cGAMP-activated phospholipase"],["NCBIfam%3ANF041078","CBASS cGAMP synthase"],["NCBIfam%3ANF041116","CBASS oligonucleotide cyclase"],["NCBIfam%3ANF041117","CBASS oligonucleotide cyclase"],["NCBIfam%3ANF050170","CBASS system CD-NTase/cGAS isopeptidase Cap3"],["InterPro%3AIPR032701","Prokaryotic E2 family B domain"]]},{"id":"DOI:10.1038/s41586-021-04098-7","l":"","na":1,"nb":6,"a":[["genomics/thoeris_system.html","Thoeris system"]],"b":[["InterPro%3AIPR041486","NAD(+) hydrolase ThsA, Sir2/TIR-associating SLOG domain"],["InterPro%3AIPR045535","Thoeris protein ThsA, Macro domain"],["InterPro%3AIPR015032","Thoeris protein ThsB, TIR-like domain"],["NCBIfam%3ANF039447","macro domain-containing protein"],["NCBIfam%3ANF020509","TIR domain-containing protein"],["InterPro%3AIPR036490","Thoeris protein ThsB, TIR-like domain superfamily"]]},{"id":"DOI:10.3389/fmicb.2020.00047","l":"","na":6,"nb":1,"a":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/copper_tolerant.html","copper tolerant"],["environment/metal_tolerant.html","metal tolerant"],["environment/zinc_tolerant.html","zinc tolerant"]],"b":[["NCBIfam%3ANF045614","cation efflux protein, CzcI family"]]},{"id":"GO:0009409","l":"response to cold","na":1,"nb":6,"a":[["physiology/cold_shock_response.html","cold shock response"]],"b":[["GO%3A0070417","cellular response to cold"],["GO%3A0009631","cold acclimation"],["GO%3A0009409","response to cold"],["GO%3A0050826","response to freezing"],["GO%3A0010048","vernalization response"],["NCBIfam%3ANF005952","kdo(2)-lipid IV(A) palmitoleoyltransferase"]]},{"id":"GO:0042279","l":"nitrite reductase (cytochrome, ammonia-forming) activity","na":1,"nb":6,"a":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]],"b":[["EC%3A1.7.2.2","nitrite reductase (cytochrome; ammonia-forming)"],["RHEA%3A13089","6 Fe(III)-[cytochrome c] + NH4(+) + 2 H2O = 6 Fe(II)-[cytochrome c] + nitrite + 8 H(+)"],["GO%3A0042279","nitrite reductase (cytochrome, ammonia-forming) activity"],["NCBIfam%3ANF014398","ammonia-forming cytochrome c nitrite reductase subunit c552"],["NCBIfam%3ATIGR03152","ammonia-forming nitrite reductase cytochrome c552 subunit"],["Pfam%3APF02335","Cytochrome c552"]]},{"id":"GO:0044409","l":"symbiont entry into host","na":1,"nb":6,"a":[["ecology/plant_pathogen.html","plant pathogen"]],"b":[["GO%3A0120326","appressorium-mediated entry into host"],["GO%3A0140717","entry into host through the stromata"],["GO%3A0035635","entry of bacterium into host cell"],["GO%3A0046718","symbiont entry into host cell"],["GO%3A0044409","symbiont entry into host"],["Reactome%3AR-HSA-173107","Binding and entry of HIV virion"]]},{"id":"METPO:1000845","l":"Acetogenesis","na":6,"nb":1,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"],["physiology/heterotrophic.html","heterotrophic"]],"b":[["METPO%3A1000845","Acetogenesis"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":1,"nb":6,"a":[["metabolism/starch_degradation.html","starch degradation"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF10779","Haemolysin XhlA"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF08181","DegQ (SacQ) family"],["Pfam%3APF08057","Erythromycin resistance leader peptide"],["Pfam%3APF14867","Lantibiotic alpha"]]},{"id":"NCBITaxon:272630","l":"Methylorubrum extorquens (strain ATCC 14718 / DSM 1338 / JCM 2805 / NCIMB 9133 / AM1)","na":1,"nb":6,"a":[["physiology/methylotrophic.html","methylotrophic"]],"b":[["Pfam%3APF07726","ATPase family associated with various cellular activities (AAA)"],["Pfam%3APF02741","FTR, proximal lobe"],["Pfam%3APF01913","Formylmethanofuran-tetrahydromethanopterin formyltransferase"],["Pfam%3APF10677","Protein of unknown function (DUF2490)"],["Pfam%3APF08714","Formaldehyde-activating enzyme (Fae)"],["PROSITE%3APS00363","Bacterial quinoprotein dehydrogenases signature 1"]]},{"id":"NCBITaxon:316401","l":"Escherichia coli O78:H11 (strain H10407 / ETEC)","na":1,"nb":6,"a":[["other/indole_test_positive.html","indole test positive"]],"b":[["Pfam%3APF26759","AcfD helical domain"],["Pfam%3APF04449","CS1 type fimbrial major subunit"],["Pfam%3APF13322","Domain of unknown function (DUF4092)"],["PROSITE%3APS01141","Bacterial type II secretion system protein C signature"],["Pfam%3APF16168","Adhesin of bacterial autotransporter system, probable stalk"],["Pfam%3APF24078","PIC/HAP1/IgA0 second beta-solenoid repeat region"]]},{"id":"UniProt:P0A6Y8","l":"","na":1,"nb":6,"a":[["physiology/heat_shock_response.html","heat shock response"]],"b":[["GO%3A0016989","sigma factor antagonist activity"],["GO%3A0043335","protein unfolding"],["GO%3A1990169","stress response to copper ion"],["NCBIfam%3ANF003520","Fe-S protein assembly chaperone HscA"],["NCBIfam%3ATIGR02350","molecular chaperone DnaK"],["CDD%3Acd10234","ASKHA_NBD_HSP70_DnaK-like"]]},{"id":"CHEBI:26672","l":"siderophore","na":1,"nb":5,"a":[["physiology/siderophore_production.html","siderophore production"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_26672","siderophore cofactor class"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.17","The Outer Membrane Factor (OMF) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]]},{"id":"DOI:10.1046/j.1365-2958.1999.01345.x","l":"","na":1,"nb":5,"a":[["metabolism/tetrathionate_respiration.html","tetrathionate respiration"]],"b":[["NCBIfam%3ANF011567","tetrathionate reductase subunit TtrA"],["NCBIfam%3ANF011569","tetrathionate reductase subunit TtrB"],["NCBIfam%3ANF011568","tetrathionate reductase subunit TtrC"],["NCBIfam%3ANF040750","tetrathionate respiration histidine kinase TtrS"],["NCBIfam%3ANF040749","tetrathionate respiration response regulator TtrR"]]},{"id":"GO:0004035","l":"alkaline phosphatase activity","na":1,"nb":5,"a":[["physiology/alkaline_phosphatase_activity.html","alkaline phosphatase activity"]],"b":[["EC%3A3.1.3.1","alkaline phosphatase"],["GO%3A0004035","alkaline phosphatase activity"],["NCBIfam%3ANF042991","alkaline phosphatase PafA"],["NCBIfam%3ANF058638","alkaline phosphatase PhoD"],["MCSA%3A44","alkaline phosphatase"]]},{"id":"GO:0004309","l":"exopolyphosphatase activity","na":1,"nb":5,"a":[["morphology/polyphosphate_granule.html","polyphosphate granule"]],"b":[["EC%3A3.6.1.11","exopolyphosphatase"],["RHEA%3A21528","[phosphate](n) + H2O = [phosphate](n-1) + phosphate + H(+)"],["GO%3A0004309","exopolyphosphatase activity"],["NCBIfam%3ATIGR03706","exopolyphosphatase"],["InterPro%3AIPR022371","Exopolyphosphatase"]]},{"id":"GO:0004457","l":"lactate dehydrogenase activity","na":1,"nb":5,"a":[["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]],"b":[["GO%3A0047809","D-lactate dehydrogenase activity"],["GO%3A0140171","L-lactate dehydrogenase activity"],["GO%3A0004457","lactate dehydrogenase activity"],["NCBIfam%3ANF033901","FMN-dependent L-lactate dehydrogenase LldD"],["NCBIfam%3ANF045670","L-lactate dehydrogenase (quinone) large subunit LdhH"]]},{"id":"GO:0006829","l":"zinc ion transport","na":1,"nb":5,"a":[["environment/zinc_tolerant.html","zinc tolerant"]],"b":[["GO%3A0071577","zinc ion transmembrane transport"],["GO%3A0006829","zinc ion transport"],["NCBIfam%3ANF002923","CDF family zinc transporter ZitB"],["NCBIfam%3ANF007090","zinc ABC transporter ATP-binding protein ZnuC"],["NCBIfam%3ANF007091","zinc ABC transporter substrate-binding protein ZnuA"]]},{"id":"GO:0008861","l":"formate C-acetyltransferase activity","na":1,"nb":5,"a":[["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"]],"b":[["EC%3A2.3.1.54","formate C-acetyltransferase"],["RHEA%3A11844","formate + acetyl-CoA = pyruvate + CoA"],["GO%3A0008861","formate C-acetyltransferase activity"],["NCBIfam%3ATIGR01255","formate C-acetyltransferase"],["MCSA%3A30","formate C-acetyltransferase"]]},{"id":"GO:0016692","l":"NADH peroxidase activity","na":1,"nb":5,"a":[["environment/aerotolerant.html","aerotolerant"]],"b":[["EC%3A1.11.1.1","NADH peroxidase"],["RHEA%3A18509","H2O2 + NADH + H(+) = NAD(+) + 2 H2O"],["GO%3A0016692","NADH peroxidase activity"],["NCBIfam%3ANF045767","rubrerythrin"],["MCSA%3A895","NADH peroxidase"]]},{"id":"GO:0016920","l":"pyroglutamyl-peptidase activity","na":1,"nb":5,"a":[["physiology/pyrrolidonyl_arylamidase_activity.html","pyrrolidonyl arylamidase activity"]],"b":[["EC%3A3.4.19.3","pyroglutamyl-peptidase I"],["EC%3A3.4.19.6","pyroglutamyl-peptidase II"],["GO%3A0016920","pyroglutamyl-peptidase activity"],["NCBIfam%3ATIGR00504","pyroglutamyl-peptidase I"],["MCSA%3A633","pyroglutamyl-peptidase I"]]},{"id":"GO:0016990","l":"arginine deiminase activity","na":1,"nb":5,"a":[["physiology/arginine_dihydrolase_activity.html","arginine dihydrolase activity"]],"b":[["EC%3A3.5.3.6","arginine deiminase"],["RHEA%3A19597","L-arginine + H2O = L-citrulline + NH4(+)"],["GO%3A0016990","arginine deiminase activity"],["NCBIfam%3ANF002381","arginine deiminase"],["NCBIfam%3ATIGR01078","arginine deiminase"]]},{"id":"GO:0030420","l":"establishment of competence for transformation","na":1,"nb":5,"a":[["physiology/natural_competence.html","natural competence"]],"b":[["GO%3A0030420","establishment of competence for transformation"],["NCBIfam%3ANF008580","ComEC family protein"],["NCBIfam%3ANF040999","competence type IV pilus major pilin ComGC"],["NCBIfam%3ANF018087","competence protein ComK"],["Pfam%3APF06338","ComK protein"]]},{"id":"GO:0030634","l":"carbon fixation by acetyl-CoA pathway","na":5,"nb":1,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"],["physiology/autotrophic.html","autotrophic"]],"b":[["GO%3A0030634","carbon fixation by acetyl-CoA pathway"]]},{"id":"GO:0044096","l":"type IV pilus","na":5,"nb":1,"a":[["ecology/predatory_bacterium.html","predatory bacterium"],["morphology/motile.html","motile"],["morphology/motility.html","motility"],["morphology/twitching_motility.html","twitching motility"],["morphology/type_iv_pilus.html","type IV pilus"]],"b":[["GO%3A0044096","type IV pilus"]]},{"id":"GO:0047646","l":"alkanal monooxygenase (FMN-linked) activity","na":1,"nb":5,"a":[["physiology/bioluminescence.html","bioluminescence"]],"b":[["EC%3A1.14.14.3","bacterial luciferase"],["RHEA%3A17181","a long-chain fatty aldehyde + FMNH2 + O2 = a long-chain fatty acid + hnu + FMN + H2O + 2 H(+)"],["GO%3A0047646","alkanal monooxygenase (FMN-linked) activity"],["InterPro%3AIPR018235","Bacterial luciferase, conserved site"],["MCSA%3A132","alkanal monooxygenase (FMN-linked)"]]},{"id":"GO:0160097","l":"reverse gyrase activity","na":5,"nb":1,"a":[["environment/extreme_hyperthermophilic.html","extreme hyperthermophilic"],["environment/hyperthermophilic.html","hyperthermophilic"],["environment/temperature_optimum_high.html","temperature optimum high"],["environment/temperature_range_high.html","temperature range high"],["environment/thermophilic.html","thermophilic"]],"b":[["GO%3A0160097","reverse gyrase activity"]]},{"id":"InterPro:IPR001425","l":"","na":1,"nb":5,"a":[["physiology/phototrophic.html","phototrophic"]],"b":[["Pfam%3APF01036","Bacteriorhodopsin-like protein"],["PANTHER%3APTHR28286","Archaeal/bacterial/fungal rhodopsins"],["PRINTS%3APR00251","Bacterial opsin signature"],["PROSITE%3APS00950","Bacterial rhodopsins signature 1"],["PROSITE%3APS00327","Bacterial rhodopsins retinal binding site"]]},{"id":"InterPro:IPR006314","l":"","na":1,"nb":5,"a":[["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["Pfam%3APF21105","DyP dimeric alpha+beta barrel domain"],["Pfam%3APF20628","Dyp-type peroxidase, C-terminal"],["Pfam%3APF04261","Dyp-type peroxidase, N-terminal"],["PANTHER%3APTHR30521","DEFERROCHELATASE/PEROXIDASE"],["Pfam%3APF10518","TAT (twin-arginine translocation) pathway signal sequence"]]},{"id":"InterPro:IPR013765","l":"","na":1,"nb":5,"a":[["physiology/natural_competence.html","natural competence"]],"b":[["HAMAP%3AMF_00268","Protein RecA [recA]"],["PANTHER%3APTHR45900","RECA"],["Pfam%3APF14890","Intein splicing domain"],["PRINTS%3APR00142","RecA protein signature"],["PROSITE%3APS00321","recA signature"]]},{"id":"METPO:1000844","l":"Methanogenesis","na":5,"nb":1,"a":[["metabolism/acetoclastic_methanogenesis.html","acetoclastic methanogenesis"],["metabolism/hydrogenotrophic_methanogenesis.html","hydrogenotrophic methanogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/methyl_based_methanogenesis.html","methyl-based methanogenesis"],["metabolism/syntrophy.html","Syntrophy"]],"b":[["METPO%3A1000844","Methanogenesis"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":5,"nb":1,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"],["physiology/hydrogenotrophic.html","hydrogenotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"]],"b":[["TED%3AAF-A0A367PA30-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A367PA30-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":1,"nb":5,"a":[["physiology/gelatinase_activity.html","gelatinase activity"]],"b":[["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF09711","CRISPR-associated protein (Cas_Csn2)"],["Pfam%3APF06308","23S rRNA methylastransferase leader peptide (ErmCL)"],["MCSA%3A640","kanamycin kinase"]]},{"id":"NCBITaxon:2822231","l":"Phanerodontia chrysosporium","na":1,"nb":5,"a":[["metabolism/manganese_oxidation.html","manganese oxidation"]],"b":[["Pfam%3APF18637","Aldos-2-ulose dehydratase/isomerase (AUDH) Cupin domain"],["Pfam%3APF16010","Cytochrome domain of cellobiose dehydrogenase"],["PROSITE%3APS00623","GMC oxidoreductases signature 1"],["Pfam%3APF22301","Aldos-2-ulose dehydratase, beta-propeller domain"],["MCSA%3A673","cellobiose dehydrogenase (acceptor)"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans Pd1222","na":1,"nb":5,"a":[["physiology/mixotrophic.html","mixotrophic"]],"b":[["Pfam%3APF27518","Heme exporter protein C"],["Pfam%3APF22039","Imidazolonepropionase-like composite domain, bacteria"],["IEDB%3A123936","epitope ALAAAGAAY"],["PROSITE%3APS01181","Ribosomal protein S21 signature"],["Pfam%3APF02239","Cytochrome D1 heme domain"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":1,"nb":5,"a":[["morphology/gliding.html","gliding"]],"b":[["TED%3AAF-A0A4Y6CF56-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y6CF56-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6CNZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Y6CNZ1-F1-model_v4_TED02"],["TED%3AAF-A0A7Y4IIX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4IIX4-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6B7F9-F1-model_v4_TED01","TED novel fold AF-A0A4Y6B7F9-F1-model_v4_TED01"],["TED%3AAF-A0A7Y4IR70-F1-model_v4_TED01","TED novel fold AF-A0A7Y4IR70-F1-model_v4_TED01"]]},{"id":"NCBITaxon:435","l":"Acetobacter aceti","na":1,"nb":5,"a":[["environment/acidotolerant.html","acidotolerant"]],"b":[["Pfam%3APF13336","Acetyl-CoA hydrolase/transferase C-terminal domain"],["Pfam%3APF02550","Acetyl-CoA hydrolase/transferase N-terminal domain"],["Pfam%3APF13442","Cytochrome C oxidase, cbb3-type, subunit III"],["Pfam%3APF06481","COX Aromatic Rich Motif"],["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"]]},{"id":"NCBITaxon:959","l":"Bdellovibrio bacteriovorus","na":1,"nb":5,"a":[["ecology/predatory_bacterium.html","predatory bacterium"]],"b":[["TED%3AAF-A0A150WJL7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A150WJL7-F1-model_v4_TED01"],["TED%3AAF-A0A150WK21-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A150WK21-F1-model_v4_TED01"],["TED%3AAF-A0A1Z3N7G2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Z3N7G2-F1-model_v4_TED02"],["TED%3AAF-A0A150WR18-F1-model_v4_TED04","TED novel fold AF-A0A150WR18-F1-model_v4_TED04"],["TED%3AAF-A0A162GEG0-F1-model_v4_TED02","TED novel fold AF-A0A162GEG0-F1-model_v4_TED02"]]},{"id":"UniProt:P00807","l":"","na":1,"nb":5,"a":[["physiology/antibiotic_resistance.html","antibiotic resistance"]],"b":[["proteintraitsmech%3AMEROPS_CLEAVAGE_S26_016","SpsB signal peptidase cleavage specificity"],["Pfam%3APF08139","Prokaryotic membrane lipoprotein lipid attachment site"],["proteintraitsmech%3ABIOLIP_CEM","CEM-binding site"],["proteintraitsmech%3ABIOLIP_CO3","CO3-binding site"],["proteintraitsmech%3ABIOLIP_TEM","TEM-binding site"]]},{"id":"UniProt:P0A953","l":"","na":1,"nb":5,"a":[["physiology/homeoviscous_adaptation.html","homeoviscous adaptation"]],"b":[["GO%3A1903966","monounsaturated fatty acid biosynthetic process"],["NCBIfam%3ANF005935","beta-ketoacyl-ACP synthase I"],["CDD%3Acd00834","KAS_I_II"],["MCSA%3A292","beta-ketoacyl-[acyl carrier protein] synthase I"],["proteintraitsmech%3ABIOLIP_6W5","6W5-binding site"]]},{"id":"UniProt:P0ACQ4","l":"","na":1,"nb":5,"a":[["physiology/oxidative_stress_response.html","oxidative stress response"]],"b":[["GO%3A2000142","regulation of DNA-templated transcription initiation"],["GO%3A0051409","response to nitrosative stress"],["NCBIfam%3ANF008361","DNA-binding transcriptional regulator OxyR"],["CDD%3Acd08411","PBP2_OxyR"],["Pfam%3APF00126","Bacterial regulatory helix-turn-helix protein, lysR family"]]},{"id":"UniProt:Q99ZW2","l":"","na":1,"nb":5,"a":[["genomics/crispr_cas_system.html","CRISPR-Cas system"]],"b":[["Pfam%3APF16595","PAM-interacting domain of CRISPR-associated endonuclease Cas9"],["Pfam%3APF22702","Cas9 RuvC domain"],["Pfam%3APF13395","HNH endonuclease"],["Pfam%3APF16593","Bridge helix of CRISPR-associated endonuclease Cas9"],["Pfam%3APF16592","REC lobe of CRISPR-associated endonuclease Cas9"]]},{"id":"CHEBI:16856","l":"glutathione","na":1,"nb":4,"a":[["environment/zinc_tolerant.html","zinc tolerant"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16856","requires glutathione"],["MCSA%3A359","lactoglutathione lyase"],["MCSA%3A32","lactoylglutathione lyase"],["proteintraitsmech%3ABIOLIP_GSH","GSH-binding site"]]},{"id":"CHEBI:25195","l":"","na":1,"nb":4,"a":[["environment/mercury_tolerant.html","mercury tolerant"]],"b":[["proteintraitsmech%3AMETALPDB_HG_DINUCLEAR","dinuclear mercury site"],["proteintraitsmech%3AMETALPDB_HG_MONONUCLEAR","mononuclear mercury site"],["proteintraitsmech%3AMETALPDB_HG_TETRANUCLEAR","tetranuclear mercury site"],["proteintraitsmech%3AMETALPDB_HG_TRINUCLEAR","trinuclear mercury site"]]},{"id":"CHEBI:38201","l":"","na":4,"nb":1,"a":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["physiology/aerobic_anoxygenic_phototrophy.html","aerobic anoxygenic phototrophy"],["physiology/photoheterotrophic.html","photoheterotrophic"],["physiology/phototrophic.html","phototrophic"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:64709","l":"organic acid","na":1,"nb":4,"a":[["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"]],"b":[["TCDB%3A2.A.28","The Bile Acid:Na+ Symporter (BASS) Family"],["TCDB%3A2.A.23","The Dicarboxylate/Amino Acid:Cation (Na+ or H+) Symporter (DAACS) Family"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.25","The Outer Membrane Porin (Opr) Family"]]},{"id":"DOI:10.1038/nature13983","l":"","na":1,"nb":4,"a":[["morphology/disc_shaped.html","disc shaped"]],"b":[["InterPro%3AIPR003008","Tubulin/FtsZ, GTPase domain"],["InterPro%3AIPR048737","Tubulin-like CetZ, C-terminal"],["NCBIfam%3ANF044377","Tubulin-like CetZ, C-terminal domain"],["InterPro%3AIPR036525","Tubulin/FtsZ, GTPase domain superfamily"]]},{"id":"DOI:10.1038/s41467-022-34505-0","l":"","na":1,"nb":4,"a":[["genomics/sspabcd_sspe_system.html","SspABCD-SspE system"]],"b":[["InterPro%3AIPR011089","GmrSD restriction endonucleases, C-terminal domain"],["InterPro%3AIPR004919","GmrSD restriction endonucleases, N-terminal domain"],["NCBIfam%3ANF015210","GmrSD restriction endonuclease domain-containing protein"],["NCBIfam%3ANF019151","GmrSD restriction endonuclease domain-containing protein"]]},{"id":"DOI:10.1038/s41586-020-2762-2","l":"","na":1,"nb":4,"a":[["genomics/viperin_system.html","Viperin system"]],"b":[["RHEA%3A65944","CTP + AH2 + S-adenosyl-L-methionine = 3'-deoxy-3',4'-didehydro-CTP + 5'-deoxyadenosine + L-methionine + A + H2O + H(+)"],["RHEA%3A72143","GTP + AH2 + S-adenosyl-L-methionine = 3'-deoxy-3',4'-didehydro-GTP + 5'-deoxyadenosine + L-methionine + A + H2O + H(+)"],["RHEA%3A72147","UTP + AH2 + S-adenosyl-L-methionine = 3'-deoxy-3',4'-didehydro-UTP + 5'-deoxyadenosine + L-methionine + A + H2O + H(+)"],["NCBIfam%3ANF038283","viperin family antiviral radical SAM protein"]]},{"id":"DOI:10.1128/mBio.02494-21","l":"","na":1,"nb":4,"a":[["morphology/axially_filamented.html","axially filamented"]],"b":[["InterPro%3AIPR062975","Flagellar collar protein C, C-terminal domain"],["InterPro%3AIPR063402","Flagellar collar protein C, N-terminal domain"],["NCBIfam%3ANF056468","Flagellar collar protein C, C-terminal domain"],["NCBIfam%3ANF056469","Flagellar collar protein C, N-terminal domain"]]},{"id":"DOI:10.1128/mr.53.1.85-108.1989","l":"","na":1,"nb":4,"a":[["physiology/urease_activity.html","urease activity"]],"b":[["InterPro%3AIPR017950","Urease active site"],["InterPro%3AIPR029754","Urease nickel binding site"],["InterPro%3AIPR017951","Urease alpha subunit, C-terminal"],["PROSITE%3APDOC00133","Urease"]]},{"id":"DOI:10.1128/mr.59.3.451-480.1995","l":"","na":1,"nb":4,"a":[["physiology/urease_activity.html","urease activity"]],"b":[["InterPro%3AIPR017951","Urease alpha subunit, C-terminal"],["InterPro%3AIPR011612","Urease alpha-subunit, N-terminal domain"],["InterPro%3AIPR036461","Urease, beta subunit superfamily"],["InterPro%3AIPR036463","Urease, gamma subunit superfamily"]]},{"id":"GO:0004503","l":"tyrosinase activity","na":1,"nb":4,"a":[["morphology/black_pigmented.html","black pigmented"]],"b":[["EC%3A1.14.18.1","tyrosinase"],["RHEA%3A18117","L-tyrosine + O2 = L-dopaquinone + H2O"],["GO%3A0004503","tyrosinase activity"],["NCBIfam%3ANF047834","tyrosinase MelC2"]]},{"id":"GO:0005575","l":"cellular_component","na":1,"nb":4,"a":[["upper/biological_process.html","biological process"]],"b":[["GO%3A0110165","cellular anatomical structure"],["GO%3A0005575","cellular_component"],["GO%3A0032991","protein-containing complex"],["GO%3A0044423","virion component"]]},{"id":"GO:0008923","l":"lysine decarboxylase activity","na":1,"nb":4,"a":[["physiology/lysine_decarboxylase_activity.html","lysine decarboxylase activity"]],"b":[["EC%3A4.1.1.18","lysine decarboxylase"],["RHEA%3A22352","L-lysine + H(+) = cadaverine + CO2"],["GO%3A0008923","lysine decarboxylase activity"],["proteintraitsmech%3ABIOLIP_G4P","G4P-binding site"]]},{"id":"GO:0015386","l":"potassium:proton antiporter activity","na":1,"nb":4,"a":[["environment/ph_optimum_mid2.html","pH optimum mid2"]],"b":[["RHEA%3A29467","K(+)(in) + H(+)(out) = K(+)(out) + H(+)(in)"],["ComplexPortal%3ACPX-3090","Glutathione-regulated potassium-efflux system KefB-KefG complex"],["ComplexPortal%3ACPX-2543","Glutathione-regulated potassium-efflux system KefC-KefF complex"],["GO%3A0015386","potassium:proton antiporter activity"]]},{"id":"GO:0015946","l":"methanol oxidation","na":1,"nb":4,"a":[["metabolism/methanol_oxidation.html","methanol oxidation"]],"b":[["GO%3A0015946","methanol oxidation"],["NCBIfam%3ANF014379","Methanol dehydrogenase beta subunit"],["Pfam%3APF02315","Methanol dehydrogenase beta subunit"],["InterPro%3AIPR036557","Methanol dehydrogenase, beta subunit superfamily"]]},{"id":"GO:0016285","l":"alanyl aminopeptidase activity","na":1,"nb":4,"a":[["physiology/alanine_arylamidase_activity.html","alanine arylamidase activity"]],"b":[["EC%3A3.4.11.14","cytosol alanyl aminopeptidase"],["EC%3A3.4.11.2","membrane alanyl aminopeptidase"],["GO%3A0016285","alanyl aminopeptidase activity"],["proteintraitsmech%3ABIOLIP_37E","37E-binding site"]]},{"id":"GO:0019253","l":"reductive pentose-phosphate cycle","na":4,"nb":1,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["physiology/autotrophic.html","autotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["GO%3A0019253","reductive pentose-phosphate cycle"]]},{"id":"GO:0019333","l":"denitrification pathway","na":1,"nb":4,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"]],"b":[["GO%3A0019333","denitrification pathway"],["NCBIfam%3ATIGR02161","periplasmic nitrate (or nitrite) reductase c-type cytochrome, NapC/NirT family"],["NCBIfam%3ATIGR04244","TAT-dependent nitrous-oxide reductase"],["NCBIfam%3ATIGR04246","Sec-dependent nitrous-oxide reductase"]]},{"id":"GO:0019418","l":"sulfide oxidation","na":1,"nb":4,"a":[["morphology/intracellular_inclusion.html","intracellular inclusion"]],"b":[["GO%3A0019418","sulfide oxidation"],["Reactome%3AR-HSA-1614517","Sulfide oxidation to sulfate"],["NCBIfam%3ATIGR02061","adenylyl-sulfate reductase subunit alpha"],["NCBIfam%3ATIGR02060","adenylyl-sulfate reductase subunit beta"]]},{"id":"GO:0019746","l":"hopanoid biosynthetic process","na":1,"nb":4,"a":[["environment/facultatively_acidophilic.html","facultatively acidophilic"]],"b":[["GO%3A0019746","hopanoid biosynthetic process"],["proteintraitsmech%3ASEED_SUBSYSTEM_Hopanoid_biosynthesis","Hopanoid biosynthesis"],["NCBIfam%3ATIGR04367","hopanoid C-3 methylase HpnR"],["NCBIfam%3ATIGR01507","squalene--hopene cyclase"]]},{"id":"GO:0032196","l":"transposition","na":1,"nb":4,"a":[["genomics/mobile_genetic_element.html","mobile genetic element"]],"b":[["GO%3A0006313","DNA transposition"],["GO%3A0032197","retrotransposition"],["GO%3A0032196","transposition"],["NCBIfam%3ATIGR03783","TraG family conjugative transposon ATPase"]]},{"id":"GO:0033740","l":"hydroxylamine oxidoreductase activity","na":1,"nb":4,"a":[["physiology/lithotrophic.html","lithotrophic"]],"b":[["EC%3A1.7.2.9","hydroxylamine oxidase"],["RHEA%3A45036","hydroxylamine + 3 Fe(III)-[cytochrome c] = nitric oxide + 3 Fe(II)-[cytochrome c] + 3 H(+)"],["GO%3A0033740","hydroxylamine oxidoreductase activity"],["proteintraitsmech%3ABIOLIP_HG1","HG1-binding site"]]},{"id":"GO:0033755","l":"sulfur oxygenase/reductase activity","na":1,"nb":4,"a":[["metabolism/disproportionation.html","Disproportionation"]],"b":[["EC%3A1.13.11.55","sulfur oxygenase/reductase"],["RHEA%3A13957","4 sulfur + O2 + 4 H2O = 2 hydrogen sulfide + 2 sulfite + 6 H(+)"],["GO%3A0033755","sulfur oxygenase/reductase activity"],["NCBIfam%3ANF047630","sulfur oxygenase/reductase"]]},{"id":"GO:0044569","l":"[Ni-Fe] hydrogenase complex","na":1,"nb":4,"a":[["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["ComplexPortal%3ACPX-281","Hydrogenase-1 complex"],["ComplexPortal%3ACPX-282","Hydrogenase-2 complex"],["GO%3A0044569","[Ni-Fe] hydrogenase complex"],["NCBIfam%3ANF053600","membrane-bound hydrogenase complex subunit MbhI"]]},{"id":"GO:0045436","l":"lycopene beta cyclase activity","na":1,"nb":4,"a":[["morphology/orange_pigmented.html","orange pigmented"]],"b":[["RHEA%3A32219","all-trans-lycopene = gamma-carotene"],["GO%3A0045436","lycopene beta cyclase activity"],["NCBIfam%3ATIGR01789","lycopene beta-cyclase CrtY"],["NCBIfam%3ANF045687","lycopene beta cyclase"]]},{"id":"GO:0047154","l":"methylmalonyl-CoA carboxytransferase activity","na":1,"nb":4,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["EC%3A2.1.3.1","methylmalonyl-CoA carboxytransferase"],["RHEA%3A20764","(S)-methylmalonyl-CoA + pyruvate = propanoyl-CoA + oxaloacetate"],["GO%3A0047154","methylmalonyl-CoA carboxytransferase activity"],["proteintraitsmech%3ABIOLIP_MCA","MCA-binding site"]]},{"id":"GO:0050605","l":"superoxide reductase activity","na":1,"nb":4,"a":[["environment/microaerotolerant.html","microaerotolerant"]],"b":[["EC%3A1.15.1.2","superoxide reductase"],["RHEA%3A21324","reduced [rubredoxin] + superoxide + 2 H(+) = oxidized [rubredoxin] + H2O2"],["GO%3A0050605","superoxide reductase activity"],["MCSA%3A660","superoxide reductase"]]},{"id":"InterPro:IPR005936","l":"","na":1,"nb":4,"a":[["environment/temperature_optimum_mid4.html","temperature optimum mid4"]],"b":[["HAMAP%3AMF_01458","ATP-dependent zinc metalloprotease FtsH [ftsH]"],["Pfam%3APF06480","FtsH Extracellular"],["PROSITE%3APS00674","AAA-protein family signature"],["Pfam%3APF21232","Yme1-like, N-terminal"]]},{"id":"InterPro:IPR005977","l":"","na":1,"nb":4,"a":[["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["HAMAP%3AMF_00533","Nitrogenase iron protein [nifH]"],["PROSITE%3APS00746","NifH/frxC family signature 1"],["PROSITE%3APS00692","NifH/frxC family signature 2"]]},{"id":"InterPro:IPR051315","l":"","na":1,"nb":4,"a":[["physiology/chemotaxis.html","chemotaxis"]],"b":[["Pfam%3APF01584","CheW-like domain"],["Pfam%3APF09078","CheY binding"],["Pfam%3APF02895","Signal transducing histidine kinase, homodimeric domain"],["PANTHER%3APTHR43395","SENSOR HISTIDINE KINASE CHEA"]]},{"id":"METPO:1000620","l":"halophilic","na":1,"nb":4,"a":[["environment/halophilic.html","halophilic"]],"b":[["METPO%3A1000628","extremely halophilic"],["METPO%3A1000620","halophilic"],["METPO%3A1000623","moderately halophilic"],["METPO%3A1000625","slightly halophilic"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":1,"nb":4,"a":[["physiology/photoheterotrophic.html","photoheterotrophic"]],"b":[["TED%3AAF-A0A7W3UB61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W3UB61-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F4B3-F1-model_v4_TED01","TED novel fold AF-A0A0D7F4B3-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F6R4-F1-model_v4_TED01","TED novel fold AF-A0A0D7F6R4-F1-model_v4_TED01"],["TED%3AAF-A0A7W3YI15-F1-model_v4_TED02","TED novel fold AF-A0A7W3YI15-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1665","l":"Arthrobacter globiformis","na":1,"nb":4,"a":[["morphology/gram_variable.html","gram variable"]],"b":[["Pfam%3APF21994","AGAO-like N2 domain"],["Pfam%3APF18835","Beta helix repeat of Inulin fructotransferase"],["MCSA%3A879","dimethylglycine oxidase (tetrahydrofolate utilising)"],["TED%3AAF-A0A328HCX7-F1-model_v4_TED02","TED novel fold AF-A0A328HCX7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1708","l":"Cellulomonas fimi","na":1,"nb":4,"a":[["metabolism/biopolymer_degradation.html","biopolymer degradation"]],"b":[["Pfam%3APF00553","Cellulose binding domain"],["PROSITE%3APS00561","CBM2a (carbohydrate-binding type-2) domain signature"],["PROSITE%3APS00591","Glycosyl hydrolases family 10 (GH10) active site"],["MCSA%3A548","endo-1,4-beta-xylanase (glycosyl hydrolase 10)"]]},{"id":"NCBITaxon:2283","l":"Acidianus ambivalens","na":1,"nb":4,"a":[["metabolism/disproportionation.html","Disproportionation"]],"b":[["Pfam%3APF07680","TQO small subunit DoxA"],["Pfam%3APF04173","TQO small subunit DoxD"],["MCSA%3A320","sulfide:quinone oxidoreductase"],["TED%3AAF-O57695-F1-model_v4_TED01","TED highly-symmetric fold AF-O57695-F1-model_v4_TED01"]]},{"id":"NCBITaxon:258594","l":"Rhodopseudomonas palustris CGA009","na":1,"nb":4,"a":[["physiology/photoorganoheterotrophic.html","photoorganoheterotrophic"]],"b":[["Pfam%3APF01322","Cytochrome C'"],["PROSITE%3APS00969","Antenna complexes beta subunits signature"],["PROSITE%3APS00936","Ribosomal protein L35 signature"],["PROSITE%3APS01181","Ribosomal protein S21 signature"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":1,"nb":4,"a":[["ecology/plant_pathogen.html","plant pathogen"]],"b":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"],["TED%3AAF-A0A085UKV7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085UKV7-F1-model_v4_TED01"],["TED%3AAF-A0A4R6IU28-F1-model_v4_TED02","TED novel fold AF-A0A4R6IU28-F1-model_v4_TED02"]]},{"id":"NCBITaxon:55601","l":"Vibrio anguillarum","na":1,"nb":4,"a":[["genomics/sspabcd_sspfgh_system.html","SspABCD-SspFGH system"]],"b":[["Pfam%3APF17327","Acyl homoserine lactone synthase"],["PROSITE%3APS00949","Autoinducer synthase family signature"],["TED%3AAF-A0A241NLV5-F1-model_v4_TED03","TED novel fold AF-A0A241NLV5-F1-model_v4_TED03"],["TED%3AAF-A0A290PUC4-F1-model_v4_TED02","TED novel fold AF-A0A290PUC4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":1,"nb":4,"a":[["other/voges_proskauer_test_positive.html","Voges-Proskauer test positive"]],"b":[["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"],["PROSITE%3APS00896","LacY family proton/sugar symporters signature 1"],["PROSITE%3APS00897","LacY family proton/sugar symporters signature 2"],["MCSA%3A494","propanediol dehydratase"]]},{"id":"UniProt:P00459","l":"","na":1,"nb":4,"a":[["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["PROSITE%3APS00746","NifH/frxC family signature 1"],["PROSITE%3APS00692","NifH/frxC family signature 2"],["MCSA%3A212","nitrogenase"]]},{"id":"UniProt:P0C2S5","l":"","na":1,"nb":4,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["EC%3A3.2.1.176","cellulose 1,4-beta-cellobiosidase (reducing end)"],["Pfam%3APF00404","Dockerin type I domain"],["PROSITE%3APS00448","Clostridium cellulosome enzymes repeated domain signature"],["Pfam%3APF02011","Glycosyl hydrolase family 48"]]},{"id":"UniProt:P16033","l":"","na":4,"nb":1,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["proteintraitsmech%3ABIOLIP_PHO","PHO-binding site"]]},{"id":"CHEBI:16170","l":"mercury(0)","na":1,"nb":3,"a":[["environment/mercury_tolerant.html","mercury tolerant"]],"b":[["EC%3A1.16.1.1","mercury(II) reductase"],["RHEA%3A23856","Hg + NADP(+) + H(+) = Hg(2+) + NADPH"],["MCSA%3A277","mercury(II) reductase"]]},{"id":"CHEBI:17203","l":"L-proline","na":1,"nb":3,"a":[["environment/non_halophilic.html","non halophilic"]],"b":[["MCSA%3A403","astacin"],["MCSA%3A379","Xaa-Pro aminopeptidase"],["proteintraitsmech%3ABIOLIP_PRO","PRO-binding site"]]},{"id":"CHEBI:17513","l":"","na":3,"nb":1,"a":[["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/fermentation.html","Fermentation"],["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"]],"b":[["MCSA%3A119","pyruvate:ferredoxin oxidoreducatse"]]},{"id":"CHEBI:49432","l":"","na":1,"nb":3,"a":[["environment/moderately_halophilic.html","moderately halophilic"]],"b":[["TCDB%3A2.A.15","The Betaine/Carnitine/Choline Transporter (BCCT) Family"],["TCDB%3A2.A.56","The Tripartite ATP-independent Periplasmic Transporter (TRAP-T) Family"],["proteintraitsmech%3ABIOLIP_6CS","6CS-binding site"]]},{"id":"CHEBI:50699","l":"oligosaccharide","na":1,"nb":3,"a":[["metabolism/biopolymer_degradation.html","biopolymer degradation"]],"b":[["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"]]},{"id":"CHEBI:72695","l":"","na":3,"nb":1,"a":[["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"],["physiology/heterotrophic.html","heterotrophic"]],"b":[["TCDB%3A1.A.24","The Gap Junction-forming Connexin (Connexin) Family"]]},{"id":"DOI:10.1016/S0969-2126(99)80098-7","l":"","na":1,"nb":3,"a":[["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"]],"b":[["RHEA%3A11844","formate + acetyl-CoA = pyruvate + CoA"],["InterPro%3AIPR004184","Pyruvate formate lyase domain"],["PROSITE%3APDOC51554","Pyruvate formate-lyase"]]},{"id":"DOI:10.1016/S1937-6448(08)01402-0","l":"","na":1,"nb":3,"a":[["morphology/flagellated.html","flagellated"]],"b":[["NCBIfam%3ANF006548","flagellar motor protein MotB"],["NCBIfam%3ANF028283","Flagellar motor switch protein FliN N-terminal"],["InterPro%3AIPR031576","Flagellar motor switch protein FliN, N-terminal"]]},{"id":"DOI:10.1016/j.csbj.2018.11.003","l":"","na":1,"nb":3,"a":[["physiology/bioluminescence.html","bioluminescence"]],"b":[["NCBIfam%3ANF052253","fatty acid reductase transferase subunit LuxD"],["NCBIfam%3ANF052254","luciferase subunit alpha"],["NCBIfam%3ANF052255","luciferase subunit beta"]]},{"id":"DOI:10.1038/s41586-025-09058-z","l":"","na":1,"nb":3,"a":[["genomics/hailong_system.html","Hailong system"]],"b":[["NCBIfam%3ANF051894","anti-phage Hailong system effector protein HalA"],["NCBIfam%3ANF051895","anti-phage Hailong system nucleotidyltransferase HalB"],["InterPro%3AIPR041633","MntA antitoxin-like, nucleotidyltransferase domain"]]},{"id":"DOI:10.1073/pnas.0908356106","l":"","na":1,"nb":3,"a":[["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"]],"b":[["RHEA%3A38267","2-methylfumaryl-CoA = 3-methylfumaryl-CoA"],["RHEA%3A38271","(3S)-citramalyl-CoA = 3-methylfumaryl-CoA + H2O"],["NCBIfam%3ATIGR04253","2-methylfumaryl-CoA isomerase"]]},{"id":"DOI:10.1073/pnas.2401686121","l":"","na":1,"nb":3,"a":[["morphology/s_layer.html","S-layer"]],"b":[["InterPro%3AIPR024968","S-layer protein, C-terminal domain, lactobacillus"],["InterPro%3AIPR055005","S-layer protein, domain II"],["InterPro%3AIPR055006","S-layer protein, N-terminal domain"]]},{"id":"DOI:10.1093/plphys/kiae438","l":"","na":1,"nb":3,"a":[["morphology/carboxysome.html","carboxysome"]],"b":[["NCBIfam%3ANF049993","beta-carboxysome assembly chaperone CcmS"],["InterPro%3AIPR058587","Chaperone protein CcmS"],["NCBIfam%3ANF053453","Chaperone protein CcmS"]]},{"id":"DOI:10.1128/AEM.67.7.2873-2882.2001","l":"","na":1,"nb":3,"a":[["metabolism/sulfur_oxidation.html","sulfur oxidation"]],"b":[["RHEA%3A56716","S-(2-sulfodisulfanyl)-L-cysteinyl-[SoxY protein] + H2O = S-disulfanyl-L-cysteinyl-[SoxY protein] + sulfate + H(+)"],["RHEA%3A16993","S-disulfanyl-L-cysteinyl-[SoxY protein] + 6 Fe(III)-[cytochrome c] + 3 H2O = S-sulfosulfanyl-L-cysteinyl-[SoxY protein] + 6 Fe(II)-[cytochrome c] + 7 H(+)"],["RHEA%3A48264","S-sulfosulfanyl-L-cysteinyl-[SoxY protein] + H2O = S-sulfanyl-L-cysteinyl-[SoxY protein] + sulfate + H(+)"]]},{"id":"DOI:10.1128/JB.00523-06","l":"","na":1,"nb":3,"a":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"]],"b":[["InterPro%3AIPR019810","Citrate synthase active site"],["InterPro%3AIPR016143","Citrate synthase-like, small alpha subdomain"],["InterPro%3AIPR036969","Citrate synthase superfamily"]]},{"id":"DOI:10.1128/jb.169.6.2591-2597.1987","l":"","na":1,"nb":3,"a":[["physiology/nad_dependent_alcohol_dehydrogenase_activity.html","NAD-dependent alcohol dehydrogenase activity"]],"b":[["InterPro%3AIPR018211","Alcohol dehydrogenase, iron-type, conserved site"],["InterPro%3AIPR001670","Alcohol dehydrogenase, iron-type/glycerol dehydrogenase GldA"],["PROSITE%3APDOC00059","Iron-containing alcohol dehydrogenases signature"]]},{"id":"DOI:10.1146/annurev.micro.55.1.165","l":"","na":1,"nb":3,"a":[["physiology/quorum_sensing.html","quorum sensing"]],"b":[["RHEA%3A17753","S-(5-deoxy-D-ribos-5-yl)-L-homocysteine = (S)-4,5-dihydroxypentane-2,3-dione + L-homocysteine"],["InterPro%3AIPR005143","Transcription factor LuxR-like, autoinducer-binding domain"],["InterPro%3AIPR036693","Transcription factor LuxR-like, autoinducer-binding domain superfamily"]]},{"id":"GO:0009505","l":"plant-type cell wall","na":1,"nb":3,"a":[["ecology/plant_pathogen.html","plant pathogen"]],"b":[["GO%3A0009505","plant-type cell wall"],["GO%3A0009530","primary cell wall"],["GO%3A0009531","secondary cell wall"]]},{"id":"GO:0016160","l":"amylase activity","na":1,"nb":3,"a":[["physiology/amylase_activity.html","amylase activity"]],"b":[["GO%3A0004556","alpha-amylase activity"],["GO%3A0016160","amylase activity"],["GO%3A0016161","beta-amylase activity"]]},{"id":"GO:0016690","l":"diarylpropane peroxidase activity","na":1,"nb":3,"a":[["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["EC%3A1.11.1.14","lignin peroxidase"],["RHEA%3A30271","2 (3,4-dimethoxyphenyl)methanol + H2O2 = 2 (3,4-dimethoxyphenyl)methanol radical + 2 H2O"],["GO%3A0016690","diarylpropane peroxidase activity"]]},{"id":"GO:0042763","l":"intracellular immature spore","na":1,"nb":3,"a":[["morphology/spore_forming.html","spore forming"]],"b":[["GO%3A0042764","ascospore-type prospore"],["GO%3A0042601","endospore-forming forespore"],["GO%3A0042763","intracellular immature spore"]]},{"id":"GO:0043158","l":"heterocyst development","na":1,"nb":3,"a":[["morphology/heterocyst.html","heterocyst"]],"b":[["GO%3A0043158","heterocyst development"],["NCBIfam%3ANF045514","heterocyst development glycosyltransferase HepC"],["NCBIfam%3ANF015533","Peptidase family S48"]]},{"id":"GO:0044297","l":"cell body","na":1,"nb":3,"a":[["morphology/spiral_shaped.html","spiral shaped"]],"b":[["GO%3A0044297","cell body"],["GO%3A0043025","neuronal cell body"],["GO%3A1990017","somatic portion of tanycyte"]]},{"id":"GO:0050137","l":"NADPH peroxidase activity","na":1,"nb":3,"a":[["environment/aerotolerant.html","aerotolerant"]],"b":[["EC%3A1.11.1.2","NADPH peroxidase"],["RHEA%3A15173","H2O2 + NADPH + H(+) = NADP(+) + 2 H2O"],["GO%3A0050137","NADPH peroxidase activity"]]},{"id":"GO:0102036","l":"methyltetrahydrofolate:corrinoid/iron-sulfur protein methyltransferase activity","na":1,"nb":3,"a":[["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"]],"b":[["EC%3A2.1.1.258","5-methyltetrahydrofolate:corrinoid/iron-sulfur protein Co-methyltransferase"],["RHEA%3A45200","methyl-Co(III)-[corrinoid Fe-S protein] + (6S)-5,6,7,8-tetrahydrofolate = Co(I)-[corrinoid Fe-S protein] + (6S)-5-methyl-5,6,7,8-tetrahydrofolate + H(+)"],["GO%3A0102036","methyltetrahydrofolate:corrinoid/iron-sulfur protein methyltransferase activity"]]},{"id":"InterPro:IPR005001","l":"","na":1,"nb":3,"a":[["physiology/stress_response.html","stress response"]],"b":[["Pfam%3APF17209","Hfq protein"],["HAMAP%3AMF_00436","RNA-binding protein Hfq [hfq]"],["PANTHER%3APTHR34772","RNA-BINDING PROTEIN HFQ"]]},{"id":"InterPro:IPR020823","l":"","na":1,"nb":3,"a":[["morphology/sarcina_arrangement.html","sarcina arrangement"]],"b":[["Pfam%3APF14450","Cell division protein FtsA"],["HAMAP%3AMF_02033","Cell division protein FtsA [ftsA]"],["Pfam%3APF11983","Cell division protein FtsA, C-terminal"]]},{"id":"InterPro:IPR052028","l":"","na":1,"nb":3,"a":[["physiology/persister_cell_formation.html","persister cell formation"]],"b":[["Pfam%3APF13657","HipA N-terminal domain"],["Pfam%3APF07804","HipA-like C-terminal domain"],["PANTHER%3APTHR37419","SERINE/THREONINE-PROTEIN KINASE TOXIN HIPA"]]},{"id":"InterPro:IPR052159","l":"","na":1,"nb":3,"a":[["physiology/natural_competence.html","natural competence"]],"b":[["Pfam%3APF13567","Domain of unknown function (DUF4131)"],["PANTHER%3APTHR30619","DNA INTERNALIZATION/COMPETENCE PROTEIN COMEC/REC2"],["Pfam%3APF03772","Competence protein"]]},{"id":"METPO:1000622","l":"halotolerant","na":3,"nb":1,"a":[["environment/halotolerant.html","halotolerant"],["environment/nacl_delta_low.html","NaCl delta low"],["environment/slightly_halophilic.html","slightly halophilic"]],"b":[["METPO%3A1000622","halotolerant"]]},{"id":"NCBITaxon:1639","l":"Listeria monocytogenes","na":1,"nb":3,"a":[["environment/psychrotolerant.html","psychrotolerant"]],"b":[["TED%3AAF-A0A6Z1JB74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6Z1JB74-F1-model_v4_TED01"],["TED%3AAF-A0A5Z1VYX2-F1-model_v4_TED01","TED novel fold AF-A0A5Z1VYX2-F1-model_v4_TED01"],["TED%3AAF-A0A823IT06-F1-model_v4_TED02","TED novel fold AF-A0A823IT06-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1717","l":"Corynebacterium diphtheriae","na":1,"nb":3,"a":[["morphology/dumbbell_shaped.html","dumbbell shaped"]],"b":[["Pfam%3APF08051","Erythromycin resistance leader peptide"],["PROSITE%3APS01007","Transposases, Mutator family, signature"],["TED%3AAF-A0A811G0F8-F1-model_v4_TED05","TED novel fold AF-A0A811G0F8-F1-model_v4_TED05"]]},{"id":"NCBITaxon:1752","l":"Propionibacterium freudenreichii subsp. shermanii","na":1,"nb":3,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["PROSITE%3APS00544","Methylmalonyl-CoA mutase signature"],["MCSA%3A33","methylmalonyl-CoA epimerase"],["MCSA%3A62","methylmalonyl-CoA mutase"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":1,"nb":3,"a":[["physiology/alkaline_phosphatase_activity.html","alkaline phosphatase activity"]],"b":[["Pfam%3APF03069","Acetamidase/Formamidase family"],["PROSITE%3APS00818","Dps protein family signature 1"],["Pfam%3APF13810","Domain of unknown function (DUF4185)"]]},{"id":"NCBITaxon:1902","l":"Streptomyces coelicolor","na":3,"nb":1,"a":[["ecology/saprotrophy.html","saprotrophy"],["ecology/soil_dwelling.html","soil-dwelling"],["morphology/mycelial_growth.html","mycelial growth"]],"b":[["MCSA%3A201","propionyl-CoA carboxylase"]]},{"id":"NCBITaxon:2242","l":"Halobacterium salinarum","na":3,"nb":1,"a":[["environment/extremely_halophilic.html","extremely halophilic"],["environment/halophilic.html","halophilic"],["morphology/intracellular_inclusion.html","intracellular inclusion"]],"b":[["Pfam%3APF07232","Putative rep protein (DUF1424)"]]},{"id":"NCBITaxon:243233","l":"Methylococcus capsulatus Bath","na":1,"nb":3,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["Pfam%3APF17850","CysA C-terminal regulatory domain"],["Pfam%3APF02461","Ammonia monooxygenase"],["TED%3AAF-Q604F4-F1-model_v4_TED02","TED novel fold AF-Q604F4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:273121","l":"Wolinella succinogenes ATCC 29543","na":1,"nb":3,"a":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]],"b":[["Pfam%3APF26365","Apolipoprotein N-acyltransferase integral membrane domain"],["Pfam%3APF02335","Cytochrome c552"],["PROSITE%3APS00883","Nickel-dependent hydrogenases b-type cytochrome subunit signature 2"]]},{"id":"NCBITaxon:44001","l":"Caldicellulosiruptor saccharolyticus","na":1,"nb":3,"a":[["metabolism/xylan_degradation.html","xylan degradation"]],"b":[["Pfam%3APF12891","Glycoside hydrolase family 44"],["PROSITE%3APS01027","Glycosyl hydrolases family 39 active site"],["Pfam%3APF02011","Glycosyl hydrolase family 48"]]},{"id":"NCBITaxon:584","l":"Proteus mirabilis","na":1,"nb":3,"a":[["morphology/swarming_motility.html","swarming motility"]],"b":[["Pfam%3APF05280","Flagellar transcriptional activator (FlhC)"],["TED%3AAF-A0A1Z1SXV6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z1SXV6-F1-model_v4_TED01"],["TED%3AAF-A0A7U1CMJ9-F1-model_v4_TED01","TED novel fold AF-A0A7U1CMJ9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":1,"nb":3,"a":[["morphology/polar_flagellation.html","polar flagellation"]],"b":[["Pfam%3APF04205","FMN-binding domain"],["Pfam%3APF10795","Protein of unknown function (DUF2607)"],["TED%3AAF-A0A1W6U0N2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W6U0N2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:94122","l":"Shewanella sp. ANA-3","na":1,"nb":3,"a":[["metabolism/arsenate_respiration.html","arsenate respiration"]],"b":[["Pfam%3APF03883","Peroxide stress protein YaaA"],["Pfam%3APF04751","Dual-action ribosomal maturation protein DarP"],["Pfam%3APF04356","Protein of unknown function (DUF489)"]]},{"id":"UniProt:P0AAI3","l":"","na":1,"nb":3,"a":[["physiology/heat_shock_response.html","heat shock response"]],"b":[["ComplexPortal%3ACPX-5046","FtsH-HflKC complex"],["NCBIfam%3ANF008004","ATP-dependent zinc metalloprotease FtsH"],["CATH%3A3.30.720.210","CATH homologous superfamily 3.30.720.210"]]},{"id":"UniProt:P0C0Y9","l":"","na":1,"nb":3,"a":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"]],"b":[["proteintraitsmech%3ABIOLIP_BPH","BPH-binding site"],["proteintraitsmech%3ABIOLIP_SPO","SPO-binding site"],["proteintraitsmech%3ABIOLIP_U10","U10-binding site"]]},{"id":"UniProt:P0CJ63","l":"","na":1,"nb":3,"a":[["physiology/quorum_sensing.html","quorum sensing"]],"b":[["EC%3A3.1.1.81","quorum-quenching N-acyl-homoserine lactonase"],["RHEA%3A22576","an N-acyl-L-homoserine lactone + H2O = an N-acyl-L-homoserine + H(+)"],["proteintraitsmech%3ABIOLIP_C6L","C6L-binding site"]]},{"id":"UniProt:P41020","l":"","na":1,"nb":3,"a":[["physiology/urease_activity.html","urease activity"]],"b":[["PROSITE%3APS01120","Urease nickel ligands signature"],["PROSITE%3APS00145","Urease active site"],["proteintraitsmech%3ABIOLIP_HQE","HQE-binding site"]]},{"id":"UniProt:Q8GBW6","l":"","na":1,"nb":3,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["EC%3A2.1.3.1","methylmalonyl-CoA carboxytransferase"],["RHEA%3A20764","(S)-methylmalonyl-CoA + pyruvate = propanoyl-CoA + oxaloacetate"],["proteintraitsmech%3ABIOLIP_MCA","MCA-binding site"]]},{"id":"CHEBI:15350","l":"","na":2,"nb":1,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["proteintraitsmech%3ABIOLIP_UVW","UVW-binding site"]]},{"id":"CHEBI:15539","l":"","na":2,"nb":1,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"],["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"]],"b":[["proteintraitsmech%3ABIOLIP_1VU","1VU-binding site"]]},{"id":"CHEBI:16136","l":"hydrogen sulfide","na":2,"nb":1,"a":[["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/photolithotrophic.html","photolithotrophic"]],"b":[["MCSA%3A398","sulfite reductase (NADPH)"]]},{"id":"CHEBI:16761","l":"","na":1,"nb":2,"a":[["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16761","requires ADP"],["proteintraitsmech%3ABIOLIP_ADP","ADP-binding site"]]},{"id":"CHEBI:26666","l":"","na":1,"nb":2,"a":[["physiology/chemoheterotrophic.html","chemoheterotrophic"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.73","The Short Chain Fatty Acid Uptake (AtoE) Family"]]},{"id":"CHEBI:28265","l":"","na":1,"nb":2,"a":[["metabolism/methanogenesis.html","Methanogenesis"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_28265","requires coenzyme F430"],["proteintraitsmech%3ABIOLIP_F43","F43-binding site"]]},{"id":"CHEBI:49537","l":"","na":2,"nb":1,"a":[["morphology/motility.html","motility"],["morphology/vibrio_shaped.html","vibrio shaped"]],"b":[["proteintraitsmech%3ABIOLIP_C2E","C2E-binding site"]]},{"id":"DOI:10.1038/417141a","l":"","na":1,"nb":2,"a":[["genomics/gc_mid1.html","GC mid1"]],"b":[["NCBIfam%3ANF040000","DUF6126 family protein"],["NCBIfam%3ANF039685","DUF6206 family protein"]]},{"id":"DOI:10.1038/s41564-022-01207-8","l":"","na":1,"nb":2,"a":[["genomics/dsr_system.html","Dsr system"]],"b":[["NCBIfam%3ANF054030","DSR anti-defense 1 family"],["NCBIfam%3ANF054418","YomU family phage tail tube protein"]]},{"id":"DOI:10.1038/s41586-022-05091-4","l":"","na":1,"nb":2,"a":[["genomics/retron_system.html","Retron system"]],"b":[["NCBIfam%3ANF038232","retron St85 family effector protein"],["NCBIfam%3ANF038233","retron St85 family RNA-directed DNA polymerase"]]},{"id":"DOI:10.1042/BJ20020782","l":"","na":2,"nb":1,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"]],"b":[["InterPro%3AIPR034205","Nitrous-oxide reductase, C-terminal"]]},{"id":"DOI:10.1046/j.1365-2958.1999.01284.x","l":"","na":2,"nb":1,"a":[["environment/mesophilic.html","mesophilic"],["environment/temperature_delta_very_low.html","temperature delta very low"]],"b":[["NCBIfam%3ANF007062","transcription antiterminator/RNA stability regulator CspE"]]},{"id":"DOI:10.1046/j.1365-2958.1999.01541.x","l":"","na":2,"nb":1,"a":[["environment/temperature_delta_very_low.html","temperature delta very low"],["physiology/cold_shock_response.html","cold shock response"]],"b":[["NCBIfam%3ANF049933","transcription antiterminator/RNA stability regulator CspE"]]},{"id":"DOI:10.1046/j.1365-2958.2003.03702.x","l":"","na":1,"nb":2,"a":[["physiology/natural_competence.html","natural competence"]],"b":[["NCBIfam%3ATIGR00732","DNA-processing protein DprA"],["InterPro%3AIPR057666","Smf/DprA, SLOG domain"]]},{"id":"DOI:10.1073/pnas.0808832106","l":"","na":2,"nb":1,"a":[["genomics/abortive_infection_system.html","abortive infection system"],["genomics/toxin_system.html","ToxIN system"]],"b":[["NCBIfam%3ANF025324","type III toxin-antitoxin system ToxN/AbiQ family toxin"]]},{"id":"DOI:10.1128/JB.00776-06","l":"","na":1,"nb":2,"a":[["metabolism/photoferrotrophy.html","photoferrotrophy"]],"b":[["NCBIfam%3ATIGR03509","MtrB/PioB family decaheme-associated outer membrane protein"],["NCBIfam%3ANF023282","MtrB/PioB family outer membrane beta-barrel protein"]]},{"id":"DOI:10.1128/JB.01110-07","l":"","na":1,"nb":2,"a":[["metabolism/arsenate_respiration.html","arsenate respiration"]],"b":[["NCBIfam%3ANF041715","arsenate respiratory reductase iron-sulfur subunit ArrB"],["NCBIfam%3ANF041714","arsenate respiratory reductase molybdopterin-containing subunit ArrA"]]},{"id":"DOI:10.1128/JB.181.21.6573-6584.1999","l":"","na":1,"nb":2,"a":[["metabolism/nitrate_reduction.html","nitrate reduction"]],"b":[["NCBIfam%3ANF007125","ferredoxin--nitrite reductase"],["InterPro%3AIPR041957","Nitrate reductase NapA-like, molybdopterin-binding domain"]]},{"id":"DOI:10.1146/annurev-micro-090110-102946","l":"","na":1,"nb":2,"a":[["physiology/stress_response.html","stress response"]],"b":[["InterPro%3AIPR007048","IraD/Gp25-like"],["NCBIfam%3ANF016829","GPW/gp25 family protein"]]},{"id":"DOI:10.1146/annurev-micro-092412-155620","l":"","na":1,"nb":2,"a":[["morphology/gram_positive.html","gram positive"]],"b":[["RHEA%3A50880","4-O-[(2R)-glycerylphospho]-N-acetyl-beta-D-mannosaminyl-(1->4)-N-acetyl-alpha-D-glucosaminyl di-trans,octa-cis-undecaprenyl diphosphate + CDP-glycerol = 4-O-[di(2R)-glycerylphospho]-N-acetyl-beta-D-mannosaminyl-(1->4)-N-acetyl-alpha-D-glucosaminyl di-trans,octa-cis-undecaprenyl diphosphate + CMP + H(+)"],["RHEA%3A50912","4-O-[(2R)-glycerylphospho]-N-acetyl-beta-D-mannosaminyl-(1->4)-N-acetyl-alpha-D-glucosaminyl di-trans,octa-cis-undecaprenyl diphosphate + CDP-L-ribitol = 4-O-[1-D-ribitylphospho-(2R)-1-glycerylphospho]-N-acetyl-beta-D-mannosaminyl-(1->4)-N-acetyl-alpha-D-glucosaminyl di-trans,octa-cis-undecaprenyl diphosphate + CMP + H(+)"]]},{"id":"GO:0005983","l":"starch catabolic process","na":1,"nb":2,"a":[["metabolism/starch_degradation.html","starch degradation"]],"b":[["GO%3A0005983","starch catabolic process"],["NCBIfam%3ATIGR02103","pullulanase-type alpha-1,6-glucosidase"]]},{"id":"GO:0009321","l":"alkyl hydroperoxide reductase complex","na":1,"nb":2,"a":[["environment/microaerophilic.html","microaerophilic"]],"b":[["ComplexPortal%3ACPX-4862","Alkyl hydroperoxide reductase complex"],["GO%3A0009321","alkyl hydroperoxide reductase complex"]]},{"id":"GO:0009594","l":"detection of nutrient","na":1,"nb":2,"a":[["physiology/nutrient_adaptation.html","nutrient adaptation"]],"b":[["GO%3A0031318","detection of folic acid"],["GO%3A0009594","detection of nutrient"]]},{"id":"GO:0015250","l":"water channel activity","na":1,"nb":2,"a":[["environment/stenohaline.html","stenohaline"]],"b":[["GO%3A0015250","water channel activity"],["NCBIfam%3ANF003838","aquaporin Z"]]},{"id":"GO:0016231","l":"beta-N-acetylglucosaminidase activity","na":1,"nb":2,"a":[["metabolism/chitinolysis.html","chitinolysis"]],"b":[["GO%3A0016231","beta-N-acetylglucosaminidase activity"],["NCBIfam%3ANF041654","beta-N-acetylglucosaminidase"]]},{"id":"GO:0019332","l":"aerobic respiration, using nitrite as electron donor","na":2,"nb":1,"a":[["metabolism/complete_ammonia_oxidation.html","complete ammonia oxidation"],["metabolism/nitrification.html","nitrification"]],"b":[["GO%3A0019332","aerobic respiration, using nitrite as electron donor"]]},{"id":"GO:0044674","l":"methyl coenzyme M reductase complex","na":2,"nb":1,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/methanogenesis.html","Methanogenesis"]],"b":[["GO%3A0044674","methyl coenzyme M reductase complex"]]},{"id":"GO:0046358","l":"butyrate biosynthetic process","na":2,"nb":1,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"]],"b":[["GO%3A0046358","butyrate biosynthetic process"]]},{"id":"GO:0102252","l":"cellulose 1,4-beta-cellobiosidase activity (reducing end)","na":1,"nb":2,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["EC%3A3.2.1.176","cellulose 1,4-beta-cellobiosidase (reducing end)"],["GO%3A0102252","cellulose 1,4-beta-cellobiosidase activity (reducing end)"]]},{"id":"InterPro:IPR002102","l":"Cellulosome anchoring protein, cohesin domain","na":1,"nb":2,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["InterPro%3AIPR002102","Cellulosome anchoring protein, cohesin domain"],["Pfam%3APF00963","Cohesin domain"]]},{"id":"InterPro:IPR004596","l":"","na":2,"nb":1,"a":[["morphology/cell_length_large.html","cell length large"],["morphology/filament_shaped.html","filament shaped"]],"b":[["Pfam%3APF03846","Cell division inhibitor SulA"]]},{"id":"InterPro:IPR004753","l":"","na":1,"nb":2,"a":[["morphology/tailed_shaped.html","tailed shaped"]],"b":[["HAMAP%3AMF_02207","Cell shape-determining protein MreB [mreB]"],["PRINTS%3APR01652","Bacterial cell shape determinant MreB/Mbl protein signature"]]},{"id":"InterPro:IPR023028","l":"","na":1,"nb":2,"a":[["physiology/chemoheterotrophic.html","chemoheterotrophic"]],"b":[["HAMAP%3AMF_00196","Mannitol-1-phosphate 5-dehydrogenase [mtlD]"],["PROSITE%3APS00974","Mannitol dehydrogenases signature"]]},{"id":"InterPro:IPR039315","l":"","na":1,"nb":2,"a":[["physiology/chemotaxis.html","chemotaxis"]],"b":[["Pfam%3APF01584","CheW-like domain"],["PANTHER%3APTHR22617","CHEMOTAXIS SENSOR HISTIDINE KINASE-RELATED"]]},{"id":"METPO:1000604","l":"microaerophilic","na":2,"nb":1,"a":[["environment/microaerophilic.html","microaerophilic"],["environment/oxygen_preference.html","oxygen preference"]],"b":[["METPO%3A1000604","microaerophilic"]]},{"id":"METPO:1000609","l":"aerotolerant","na":2,"nb":1,"a":[["environment/aerotolerant.html","aerotolerant"],["environment/oxygen_preference.html","oxygen preference"]],"b":[["METPO%3A1000609","aerotolerant"]]},{"id":"METPO:1000612","l":"facultative oxygen preference","na":2,"nb":1,"a":[["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/oxygen_preference.html","oxygen preference"]],"b":[["METPO%3A1000612","facultative oxygen preference"]]},{"id":"METPO:1000617","l":"hyperthermophilic","na":1,"nb":2,"a":[["environment/hyperthermophilic.html","hyperthermophilic"]],"b":[["METPO%3A1000721","extreme hyperthermophilic"],["METPO%3A1000617","hyperthermophilic"]]},{"id":"METPO:1000632","l":"autotrophic","na":2,"nb":1,"a":[["physiology/autotrophic.html","autotrophic"],["physiology/trophic_type.html","trophic type"]],"b":[["METPO%3A1000632","autotrophic"]]},{"id":"METPO:1000641","l":"chemotrophic","na":2,"nb":1,"a":[["physiology/chemotrophic.html","chemotrophic"],["physiology/trophic_type.html","trophic type"]],"b":[["METPO%3A1000641","chemotrophic"]]},{"id":"METPO:1000642","l":"copiotrophic","na":2,"nb":1,"a":[["physiology/copiotrophic.html","copiotrophic"],["physiology/nutrient_adaptation.html","nutrient adaptation"]],"b":[["METPO%3A1000642","copiotrophic"]]},{"id":"METPO:1000644","l":"heterotrophic","na":2,"nb":1,"a":[["physiology/heterotrophic.html","heterotrophic"],["physiology/trophic_type.html","trophic type"]],"b":[["METPO%3A1000644","heterotrophic"]]},{"id":"METPO:1000654","l":"oligotrophic","na":2,"nb":1,"a":[["physiology/nutrient_adaptation.html","nutrient adaptation"],["physiology/oligotrophic.html","oligotrophic"]],"b":[["METPO%3A1000654","oligotrophic"]]},{"id":"METPO:1000657","l":"photoheterotrophic","na":2,"nb":1,"a":[["physiology/aerobic_anoxygenic_phototrophy.html","aerobic anoxygenic phototrophy"],["physiology/photoheterotrophic.html","photoheterotrophic"]],"b":[["METPO%3A1000657","photoheterotrophic"]]},{"id":"METPO:1000660","l":"phototrophic","na":2,"nb":1,"a":[["physiology/phototrophic.html","phototrophic"],["physiology/trophic_type.html","trophic type"]],"b":[["METPO%3A1000660","phototrophic"]]},{"id":"METPO:1000804","l":"Substrate-level phosphorylation","na":2,"nb":1,"a":[["metabolism/fermentation.html","Fermentation"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["METPO%3A1000804","Substrate-level phosphorylation"]]},{"id":"METPO:1003003","l":"acidophilic","na":1,"nb":2,"a":[["environment/acidophilic.html","acidophilic"]],"b":[["METPO%3A1003003","acidophilic"],["METPO%3A1003006","obligately acidophilic"]]},{"id":"METPO:1003008","l":"acidotolerant","na":2,"nb":1,"a":[["environment/acidotolerant.html","acidotolerant"],["environment/ph_delta.html","pH delta"]],"b":[["METPO%3A1003008","acidotolerant"]]},{"id":"METPO:1005001","l":"nitrification","na":2,"nb":1,"a":[["metabolism/complete_ammonia_oxidation.html","complete ammonia oxidation"],["metabolism/nitrification.html","nitrification"]],"b":[["METPO%3A1005001","nitrification"]]},{"id":"NCBITaxon:1032480","l":"Microlunatus phosphovorus NM-1","na":1,"nb":2,"a":[["morphology/polyphosphate_granule.html","polyphosphate granule"]],"b":[["TED%3AAF-F5XIG6-F1-model_v4_TED02","TED novel fold AF-F5XIG6-F1-model_v4_TED02"],["TED%3AAF-F5XQ24-F1-model_v4_TED04","TED novel fold AF-F5XQ24-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":1,"nb":2,"a":[["physiology/urease_activity.html","urease activity"]],"b":[["PROSITE%3APS01120","Urease nickel ligands signature"],["PROSITE%3APS00145","Urease active site"]]},{"id":"NCBITaxon:2190","l":"Methanocaldococcus jannaschii","na":2,"nb":1,"a":[["metabolism/methanogenesis.html","Methanogenesis"],["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["TED%3AAF-A0A832WL57-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A832WL57-F1-model_v4_TED02"]]},{"id":"NCBITaxon:240292","l":"Trichormus variabilis ATCC 29413","na":1,"nb":2,"a":[["morphology/akinete.html","akinete"]],"b":[["Pfam%3APF18921","Cyanophycin synthase-like N-terminal domain"],["Pfam%3APF13619","KTSC domain"]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":1,"nb":2,"a":[["physiology/alpha_fucosidase_activity.html","alpha-fucosidase activity"]],"b":[["Pfam%3APF21252","Glycosyl hydrolase 109, C-terminal domain"],["TED%3AAF-A0A3P1YJQ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3P1YJQ6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28132","l":"Prevotella melaninogenica","na":1,"nb":2,"a":[["morphology/black_pigmented.html","black pigmented"]],"b":[["TED%3AAF-A0A8B2A6Y8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B2A6Y8-F1-model_v4_TED01"],["TED%3AAF-A0A250KF16-F1-model_v4_TED03","TED novel fold AF-A0A250KF16-F1-model_v4_TED03"]]},{"id":"NCBITaxon:292415","l":"Thiobacillus denitrificans ATCC 25259","na":2,"nb":1,"a":[["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/chemoautotrophic.html","chemoautotrophic"]],"b":[["Pfam%3APF06804","Outer membrane protein assembly factor BamC-like C-terminal domain"]]},{"id":"NCBITaxon:317655","l":"Sphingopyxis alaskensis RB2256","na":2,"nb":1,"a":[["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"]],"b":[["Pfam%3APF10755","Protein of unknown function (DUF2585)"]]},{"id":"NCBITaxon:319224","l":"Shewanella putrefaciens (strain CN-32 / ATCC BAA-453)","na":1,"nb":2,"a":[["morphology/flagellar_arrangement.html","flagellar arrangement"]],"b":[["Pfam%3APF17810","Arginine decarboxylase helical bundle domain"],["Pfam%3APF17944","Arginine decarboxylase C-terminal helical extension"]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":1,"nb":2,"a":[["morphology/yellow_pigmented.html","yellow pigmented"]],"b":[["TED%3AAF-A0A6N3WS12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N3WS12-F1-model_v4_TED01"],["TED%3AAF-A0A3R7GIU2-F1-model_v4_TED02","TED novel fold AF-A0A3R7GIU2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:408","l":"Methylorubrum extorquens","na":2,"nb":1,"a":[["morphology/pink_pigmented.html","pink pigmented"],["physiology/methylotrophic.html","methylotrophic"]],"b":[["Pfam%3APF04476","4-HFC-P synthase"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":1,"nb":2,"a":[["morphology/lateral_flagellation.html","lateral flagellation"]],"b":[["TED%3AAF-B5UAE0-F1-model_v4_TED01","TED highly-symmetric fold AF-B5UAE0-F1-model_v4_TED01"],["TED%3AAF-A0A3E1IF45-F1-model_v4_TED01","TED novel fold AF-A0A3E1IF45-F1-model_v4_TED01"]]},{"id":"NCBITaxon:79885","l":"Alkalihalophilus pseudofirmus","na":2,"nb":1,"a":[["environment/alkalotolerant.html","alkalotolerant"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"]],"b":[["TED%3AAF-A0A1Q8TV17-F1-model_v4_TED02","TED novel fold AF-A0A1Q8TV17-F1-model_v4_TED02"]]},{"id":"NCBITaxon:913088","l":"Escherichia coli (strain TW11681)","na":1,"nb":2,"a":[["genomics/cbass_system.html","CBASS system"]],"b":[["Pfam%3APF21713","Cyclic GMP-AMP synthase, C-terminal domain"],["Pfam%3APF21654","Cyclic GMP-AMP synthase DncV-like, nucleotidyltransferase domain"]]},{"id":"UniProt:G1UBD1","l":"","na":1,"nb":2,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["EC%3A1.14.18.3","methane monooxygenase (particulate)"],["RHEA%3A30355","methane + a quinol + O2 = methanol + a quinone + H2O"]]},{"id":"UniProt:O52683","l":"","na":1,"nb":2,"a":[["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"]],"b":[["EC%3A1.12.1.4","hydrogenase (NAD(+), ferredoxin)"],["RHEA%3A30279","2 H2 + 2 oxidized [2Fe-2S]-[ferredoxin] + NAD(+) = 2 reduced [2Fe-2S]-[ferredoxin] + NADH + 3 H(+)"]]},{"id":"UniProt:P06278","l":"","na":1,"nb":2,"a":[["metabolism/starch_degradation.html","starch degradation"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["proteintraitsmech%3ABIOLIP_NA","NA-binding site"]]},{"id":"UniProt:P07254","l":"","na":1,"nb":2,"a":[["metabolism/chitinolysis.html","chitinolysis"]],"b":[["MCSA%3A478","chitinase (GH18, Class II)"],["proteintraitsmech%3ABIOLIP_AMI","AMI-binding site"]]},{"id":"UniProt:P0C916","l":"","na":1,"nb":2,"a":[["physiology/chemolithoautotrophic.html","chemolithoautotrophic"]],"b":[["EC%3A4.1.1.39","ribulose-bisphosphate carboxylase"],["RHEA%3A23124","2 (2R)-3-phosphoglycerate + 2 H(+) = D-ribulose 1,5-bisphosphate + CO2 + H2O"]]},{"id":"UniProt:P12747","l":"","na":2,"nb":1,"a":[["physiology/bioluminescence.html","bioluminescence"],["physiology/quorum_sensing.html","quorum sensing"]],"b":[["PROSITE%3APS00949","Autoinducer synthase family signature"]]},{"id":"UniProt:P16027","l":"","na":1,"nb":2,"a":[["physiology/methylotrophic.html","methylotrophic"]],"b":[["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["PROSITE%3APS00363","Bacterial quinoprotein dehydrogenases signature 1"]]},{"id":"UniProt:P29082","l":"","na":1,"nb":2,"a":[["metabolism/disproportionation.html","Disproportionation"]],"b":[["EC%3A1.13.11.55","sulfur oxygenase/reductase"],["RHEA%3A13957","4 sulfur + O2 + 4 H2O = 2 hydrogen sulfide + 2 sulfite + 6 H(+)"]]},{"id":"UniProt:P31891","l":"","na":1,"nb":2,"a":[["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["proteintraitsmech%3ABIOLIP_NFV","NFV-binding site"],["proteintraitsmech%3ABIOLIP_S3F","S3F-binding site"]]},{"id":"UniProt:P31896","l":"","na":1,"nb":2,"a":[["physiology/carboxydotrophic.html","carboxydotrophic"]],"b":[["proteintraitsmech%3ABIOLIP_RQM","RQM-binding site"],["proteintraitsmech%3AMETALPDB_NI_PENTANUCLEAR","pentanuclear nickel site"]]},{"id":"UniProt:P45574","l":"","na":1,"nb":2,"a":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["proteintraitsmech%3ABIOLIP_SH0","SH0-binding site"],["proteintraitsmech%3ABIOLIP_SRM","SRM-binding site"]]},{"id":"UniProt:Q02567","l":"","na":1,"nb":2,"a":[["metabolism/manganese_oxidation.html","manganese oxidation"]],"b":[["EC%3A1.11.1.13","manganese peroxidase"],["RHEA%3A22776","2 Mn(2+) + H2O2 + 2 H(+) = 2 Mn(3+) + 2 H2O"]]},{"id":"UniProt:Q9S1E5","l":"","na":1,"nb":2,"a":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]],"b":[["Pfam%3APF02335","Cytochrome c552"],["proteintraitsmech%3AMETALPDB_Y_TRINUCLEAR","trinuclear yttrium site"]]},{"id":"CHEBI:16412","l":"","na":1,"nb":1,"a":[["morphology/gram_negative.html","gram negative"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:17794","l":"","na":1,"nb":1,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"]],"b":[["proteintraitsmech%3ABIOLIP_3PG","3PG-binding site"]]},{"id":"CHEBI:193595","l":"","na":1,"nb":1,"a":[["environment/hyperthermophilic.html","hyperthermophilic"]],"b":[["RHEA%3A74675","archaeol + AH2 + 2 S-adenosyl-L-methionine = macrocyclic archaeol + 2 5'-deoxyadenosine + 2 L-methionine + A + 2 H(+)"]]},{"id":"CHEBI:23357","l":"","na":1,"nb":1,"a":[["upper/enzyme.html","enzyme"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_23357","cofactor cofactor class"]]},{"id":"CHEBI:25105","l":"","na":1,"nb":1,"a":[["physiology/antibiotic_resistance.html","antibiotic resistance"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:26710","l":"sodium chloride","na":1,"nb":1,"a":[["environment/halophilic.html","halophilic"]],"b":[["TCDB%3A2.A.30","The Cation-Chloride Cotransporter (CCC) Family"]]},{"id":"CHEBI:29125","l":"arsenate(3-)","na":1,"nb":1,"a":[["environment/arsenic_tolerant.html","arsenic tolerant"]],"b":[["proteintraitsmech%3ABIOLIP_ART","ART-binding site"]]},{"id":"CHEBI:35819","l":"","na":1,"nb":1,"a":[["environment/temperature_optimum_mid1.html","temperature optimum mid1"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:41688","l":"crystal violet","na":1,"nb":1,"a":[["morphology/gram_stain.html","gram stain"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:44747","l":"","na":1,"nb":1,"a":[["morphology/brown_pigmented.html","brown pigmented"]],"b":[["proteintraitsmech%3ABIOLIP_OMD","OMD-binding site"]]},{"id":"CHEBI:46837","l":"","na":1,"nb":1,"a":[["morphology/spore_forming.html","spore forming"]],"b":[["proteintraitsmech%3ABIOLIP_PDC","PDC-binding site"]]},{"id":"DOI:10.1016/j.cell.2025.07.002","l":"","na":1,"nb":1,"a":[["genomics/kiwa_system.html","Kiwa system"]],"b":[["NCBIfam%3ANF055273","KwaA family protein"]]},{"id":"DOI:10.1016/j.mib.2003.10.001","l":"","na":1,"nb":1,"a":[["physiology/spore_germination.html","spore germination"]],"b":[["NCBIfam%3ANF022112","GerMN domain-containing protein"]]},{"id":"DOI:10.1016/j.molcel.2022.09.008","l":"","na":1,"nb":1,"a":[["genomics/wadjet_system.html","Wadjet system"]],"b":[["NCBIfam%3ANF025205","DUF4194 domain-containing protein"]]},{"id":"DOI:10.1021/ja906367h","l":"","na":1,"nb":1,"a":[["metabolism/methanogenesis.html","Methanogenesis"]],"b":[["RHEA%3A12532","coenzyme B + methyl-coenzyme M = methane + coenzyme M-coenzyme B heterodisulfide"]]},{"id":"DOI:10.1038/nsmb.2820","l":"","na":1,"nb":1,"a":[["genomics/crispr_cas_system.html","CRISPR-Cas system"]],"b":[["NCBIfam%3ANF021356","CRISPR associated protein Cas2"]]},{"id":"DOI:10.1038/s41396-021-01034-5","l":"","na":1,"nb":1,"a":[["metabolism/iodate_respiration.html","iodate respiration"]],"b":[["InterPro%3AIPR041632","Arsenite oxidase subunit AioA/Iodate reductase subunit IdrA, 3Fe-4S cluster"]]},{"id":"DOI:10.1038/s41467-024-47412-3","l":"","na":1,"nb":1,"a":[["ecology/predatory_bacterium.html","predatory bacterium"]],"b":[["NCBIfam%3ANF052240","MIDAS family adhesin"]]},{"id":"DOI:10.1038/s41467-024-49650-x","l":"","na":1,"nb":1,"a":[["environment/hyperthermophilic.html","hyperthermophilic"]],"b":[["RHEA%3A80803","GDGT-0 + AH2 + 2 S-adenosyl-L-methionine = GMGT-0 + 2 5'-deoxyadenosine + 2 L-methionine + A + 2 H(+)"]]},{"id":"DOI:10.1038/s41467-024-52732-5","l":"","na":1,"nb":1,"a":[["morphology/motility.html","motility"]],"b":[["NCBIfam%3ANF058640","PlzR type 4 pili assembly inhibitor"]]},{"id":"DOI:10.1038/s41467-025-57851-1","l":"","na":1,"nb":1,"a":[["genomics/hachiman_system.html","Hachiman system"]],"b":[["InterPro%3AIPR014976","Anti-bacteriophage protein A/HamA, nuclease domain"]]},{"id":"DOI:10.1038/s41564-022-01153-5","l":"","na":1,"nb":1,"a":[["genomics/dartg_system.html","DarTG system"]],"b":[["NCBIfam%3ANF048214","anti-DarT factor AdfA family protein"]]},{"id":"DOI:10.1038/s41564-023-01411-0","l":"","na":1,"nb":1,"a":[["morphology/gram_positive.html","gram positive"]],"b":[["NCBIfam%3ANF023875","teichoic acid D-Ala incorporation-associated protein DltX"]]},{"id":"DOI:10.1038/s41564-024-01630-z","l":"","na":1,"nb":1,"a":[["morphology/flagellated.html","flagellated"]],"b":[["InterPro%3AIPR060008","Flagellar motor switch protein FliM, N-terminal domain"]]},{"id":"DOI:10.1038/s41586-023-06855-2","l":"","na":1,"nb":1,"a":[["genomics/gabija_system.html","Gabija system"]],"b":[["NCBIfam%3ANF052170","Gabija anti-defense 1"]]},{"id":"DOI:10.1038/s41586-024-08039-y","l":"","na":1,"nb":1,"a":[["genomics/caprel_system.html","CapRel system"]],"b":[["NCBIfam%3ANF051533","Phage antiviral trigger protein Gp54"]]},{"id":"DOI:10.1073/pnas.0401356101","l":"","na":1,"nb":1,"a":[["environment/acidophilic.html","acidophilic"]],"b":[["NCBIfam%3ATIGR03710","2-oxoacid:acceptor oxidoreductase subunit alpha"]]},{"id":"DOI:10.1073/pnas.0405211101","l":"","na":1,"nb":1,"a":[["physiology/photolithoautotrophic.html","photolithoautotrophic"]],"b":[["NCBIfam%3ANF050096","bicarbonate transporter BicA"]]},{"id":"DOI:10.1073/pnas.0504996102","l":"","na":1,"nb":1,"a":[["physiology/quorum_sensing.html","quorum sensing"]],"b":[["RHEA%3A22576","an N-acyl-L-homoserine lactone + H2O = an N-acyl-L-homoserine + H(+)"]]},{"id":"DOI:10.1073/pnas.0505959103","l":"","na":1,"nb":1,"a":[["metabolism/dimethyl_sulfoxide_respiration.html","dimethyl sulfoxide respiration"]],"b":[["NCBIfam%3ATIGR03508","DmsE family decaheme c-type cytochrome"]]},{"id":"DOI:10.1073/pnas.1834303100","l":"","na":1,"nb":1,"a":[["metabolism/arsenate_respiration.html","arsenate respiration"]],"b":[["InterPro%3AIPR037946","Tetrathionate reductase subunit A, MopB domain"]]},{"id":"DOI:10.1073/pnas.90.8.3511","l":"","na":1,"nb":1,"a":[["physiology/stress_response.html","stress response"]],"b":[["NCBIfam%3ATIGR02394","RNA polymerase sigma factor RpoS"]]},{"id":"DOI:10.1074/jbc.M503492200","l":"","na":1,"nb":1,"a":[["metabolism/methanogenesis.html","Methanogenesis"]],"b":[["RHEA%3A42808","3 oxidized coenzyme F420-(gamma-L-Glu)(n) + hydrogen sulfide + 3 H2O + 2 H(+) = 3 reduced coenzyme F420-(gamma-L-Glu)(n) + sulfite"]]},{"id":"DOI:10.1093/dnares/3.3.109","l":"","na":1,"nb":1,"a":[["physiology/photolithotrophic.html","photolithotrophic"]],"b":[["COG%3ACOG5693","Phycobilisome linker protein ApcE"]]},{"id":"DOI:10.1099/13500872-145-5-1235","l":"","na":1,"nb":1,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["NCBIfam%3ANF016767","methane monooxygenase/ammonia monooxygenase subunit C"]]},{"id":"DOI:10.1111/j.1742-4658.2007.06241.x","l":"","na":1,"nb":1,"a":[["physiology/pyrazinamidase_activity.html","pyrazinamidase activity"]],"b":[["RHEA%3A14545","nicotinamide + H2O = nicotinate + NH4(+)"]]},{"id":"DOI:10.1126/science.1120306","l":"","na":1,"nb":1,"a":[["metabolism/disproportionation.html","Disproportionation"]],"b":[["RHEA%3A13957","4 sulfur + O2 + 4 H2O = 2 hydrogen sulfide + 2 sulfite + 6 H(+)"]]},{"id":"DOI:10.1126/science.1225829","l":"","na":1,"nb":1,"a":[["genomics/crispr_cas_system.html","CRISPR-Cas system"]],"b":[["InterPro%3AIPR002711","HNH endonuclease"]]},{"id":"DOI:10.1128/AEM.69.9.5585-5592.2003","l":"","na":1,"nb":1,"a":[["metabolism/chlorate_respiration.html","chlorate respiration"]],"b":[["RHEA%3A16349","chlorate + AH2 = chlorite + A + H2O"]]},{"id":"DOI:10.1128/JB.00904-06","l":"","na":1,"nb":1,"a":[["genomics/abiz_system.html","AbiZ system"]],"b":[["NCBIfam%3ANF016566","phage holin"]]},{"id":"DOI:10.1128/JB.01582-08","l":"","na":1,"nb":1,"a":[["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"]],"b":[["RHEA%3A30279","2 H2 + 2 oxidized [2Fe-2S]-[ferredoxin] + NAD(+) = 2 reduced [2Fe-2S]-[ferredoxin] + NADH + 3 H(+)"]]},{"id":"DOI:10.1128/JB.182.23.6850-6853.2000","l":"","na":1,"nb":1,"a":[["physiology/acid_phosphatase_activity.html","acid phosphatase activity"]],"b":[["NCBIfam%3ANF016101","alkaline phosphatase family protein"]]},{"id":"DOI:10.1128/JB.187.8.2912-2916.2005","l":"","na":1,"nb":1,"a":[["environment/cobalt_tolerant.html","cobalt tolerant"]],"b":[["NCBIfam%3ANF023204","RcnB family protein"]]},{"id":"DOI:10.1128/jb.159.3.986-990.1984","l":"","na":1,"nb":1,"a":[["physiology/chemoheterotrophic.html","chemoheterotrophic"]],"b":[["RHEA%3A19837","D-sorbitol 6-phosphate + NAD(+) = beta-D-fructose 6-phosphate + NADH + H(+)"]]},{"id":"DOI:10.1128/jb.174.16.5284-5294.1992","l":"","na":1,"nb":1,"a":[["physiology/carboxydotrophic.html","carboxydotrophic"]],"b":[["NCBIfam%3ATIGR01702","anaerobic carbon-monoxide dehydrogenase catalytic subunit"]]},{"id":"DOI:10.1159/000333447","l":"","na":1,"nb":1,"a":[["physiology/coagulase_activity.html","coagulase activity"]],"b":[["NCBIfam%3ANF035921","staphylocoagulase"]]},{"id":"DOI:10.1371/journal.pbio.0060067","l":"","na":1,"nb":1,"a":[["ecology/biofilm_formation.html","biofilm formation"]],"b":[["NCBIfam%3ANF013180","diguanylate cyclase domain-containing protein"]]},{"id":"DOI:10.3389/fmicb.2022.971917","l":"","na":1,"nb":1,"a":[["morphology/intracellular_inclusion.html","intracellular inclusion"]],"b":[["NCBIfam%3ANF056470","Gas vesicle protein I"]]},{"id":"GO:0002047","l":"phenazine biosynthetic process","na":1,"nb":1,"a":[["morphology/green_pigmented.html","green pigmented"]],"b":[["GO%3A0002047","phenazine biosynthetic process"]]},{"id":"GO:0009420","l":"bacterial-type flagellum filament","na":1,"nb":1,"a":[["morphology/flagellated.html","flagellated"]],"b":[["GO%3A0009420","bacterial-type flagellum filament"]]},{"id":"GO:0015050","l":"methane monooxygenase complex","na":1,"nb":1,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["GO%3A0015050","methane monooxygenase complex"]]},{"id":"GO:0016218","l":"polyketide synthase activity","na":1,"nb":1,"a":[["morphology/black_pigmented.html","black pigmented"]],"b":[["GO%3A0016218","polyketide synthase activity"]]},{"id":"GO:0019643","l":"reductive tricarboxylic acid cycle","na":1,"nb":1,"a":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"]],"b":[["GO%3A0019643","reductive tricarboxylic acid cycle"]]},{"id":"GO:0019655","l":"pyruvate fermentation to ethanol","na":1,"nb":1,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"]],"b":[["GO%3A0019655","pyruvate fermentation to ethanol"]]},{"id":"GO:0033172","l":"gas vesicle shell","na":1,"nb":1,"a":[["morphology/gas_vesicle.html","gas vesicle"]],"b":[["GO%3A0033172","gas vesicle shell"]]},{"id":"GO:0033355","l":"ascorbate glutathione cycle","na":1,"nb":1,"a":[["environment/aerotolerant.html","aerotolerant"]],"b":[["GO%3A0033355","ascorbate glutathione cycle"]]},{"id":"GO:0042603","l":"capsule","na":1,"nb":1,"a":[["morphology/capsule.html","capsule"]],"b":[["GO%3A0042603","capsule"]]},{"id":"GO:0043263","l":"cellulosome","na":1,"nb":1,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["GO%3A0043263","cellulosome"]]},{"id":"GO:0098689","l":"latency-replication decision","na":1,"nb":1,"a":[["genomics/prophage.html","prophage"]],"b":[["GO%3A0098689","latency-replication decision"]]},{"id":"GO:0140649","l":"symbiont-mediated cell-to-cell migration by invasive hypha","na":1,"nb":1,"a":[["ecology/plant_pathogen.html","plant pathogen"]],"b":[["GO%3A0140649","symbiont-mediated cell-to-cell migration by invasive hypha"]]},{"id":"GO:1901177","l":"lycopene biosynthetic process","na":1,"nb":1,"a":[["morphology/yellow_pigmented.html","yellow pigmented"]],"b":[["GO%3A1901177","lycopene biosynthetic process"]]},{"id":"GO:1901812","l":"beta-carotene biosynthetic process","na":1,"nb":1,"a":[["morphology/pigmentation.html","pigmentation"]],"b":[["GO%3A1901812","beta-carotene biosynthetic process"]]},{"id":"InterPro:IPR000067","l":"","na":1,"nb":1,"a":[["morphology/lophotrichous.html","lophotrichous"]],"b":[["PRINTS%3APR01009","Flagellar M-ring protein signature"]]},{"id":"InterPro:IPR002798","l":"","na":1,"nb":1,"a":[["morphology/spore_forming.html","spore forming"]],"b":[["Pfam%3APF01944","Stage II sporulation protein M"]]},{"id":"InterPro:IPR007439","l":"","na":1,"nb":1,"a":[["physiology/chemotaxis.html","chemotaxis"]],"b":[["Pfam%3APF04344","Chemotaxis phosphatase, CheZ"]]},{"id":"InterPro:IPR011895","l":"","na":1,"nb":1,"a":[["metabolism/fermentation.html","Fermentation"]],"b":[["Pfam%3APF10371","Domain of unknown function"]]},{"id":"InterPro:IPR012609","l":"","na":1,"nb":1,"a":[["morphology/spore_shaped.html","spore shaped"]],"b":[["Pfam%3APF08183","Stage V sporulation protein family"]]},{"id":"InterPro:IPR018901","l":"","na":1,"nb":1,"a":[["morphology/spore_shaped.html","spore shaped"]],"b":[["Pfam%3APF10628","Outer spore coat protein E (CotE)"]]},{"id":"InterPro:IPR030858","l":"","na":1,"nb":1,"a":[["morphology/ovoid_shaped.html","ovoid shaped"]],"b":[["HAMAP%3AMF_01941","Mid-cell-anchored protein Z [mapZ]"]]},{"id":"InterPro:IPR047939","l":"","na":1,"nb":1,"a":[["genomics/brex_system.html","BREX system"]],"b":[["Pfam%3APF07669","Eco57I restriction-modification methylase"]]},{"id":"InterPro:IPR048240","l":"","na":1,"nb":1,"a":[["morphology/filament_shaped.html","filament shaped"]],"b":[["Pfam%3APF28068","Polarized growth protein Scy"]]},{"id":"InterPro:IPR052364","l":"","na":1,"nb":1,"a":[["environment/aerotolerant.html","aerotolerant"]],"b":[["PANTHER%3APTHR43865","RUBRERYTHRIN-RELATED"]]},{"id":"METPO:1000605","l":"facultatively anaerobic","na":1,"nb":1,"a":[["environment/facultatively_anaerobic.html","facultatively anaerobic"]],"b":[["METPO%3A1000605","facultatively anaerobic"]]},{"id":"METPO:1000606","l":"obligately aerobic","na":1,"nb":1,"a":[["environment/obligately_aerobic.html","obligately aerobic"]],"b":[["METPO%3A1000606","obligately aerobic"]]},{"id":"METPO:1000608","l":"facultatively aerobic","na":1,"nb":1,"a":[["environment/facultatively_aerobic.html","facultatively aerobic"]],"b":[["METPO%3A1000608","facultatively aerobic"]]},{"id":"METPO:1000610","l":"microaerotolerant","na":1,"nb":1,"a":[["environment/microaerotolerant.html","microaerotolerant"]],"b":[["METPO%3A1000610","microaerotolerant"]]},{"id":"METPO:1000611","l":"strictly anaerobic","na":1,"nb":1,"a":[["environment/strictly_anaerobic.html","strictly anaerobic"]],"b":[["METPO%3A1000611","strictly anaerobic"]]},{"id":"METPO:1000614","l":"psychrophilic","na":1,"nb":1,"a":[["environment/psychrophilic.html","psychrophilic"]],"b":[["METPO%3A1000614","psychrophilic"]]},{"id":"METPO:1000615","l":"mesophilic","na":1,"nb":1,"a":[["environment/mesophilic.html","mesophilic"]],"b":[["METPO%3A1000615","mesophilic"]]},{"id":"METPO:1000616","l":"thermophilic","na":1,"nb":1,"a":[["environment/thermophilic.html","thermophilic"]],"b":[["METPO%3A1000616","thermophilic"]]},{"id":"METPO:1000618","l":"psychrotolerant","na":1,"nb":1,"a":[["environment/psychrotolerant.html","psychrotolerant"]],"b":[["METPO%3A1000618","psychrotolerant"]]},{"id":"METPO:1000619","l":"thermotolerant","na":1,"nb":1,"a":[["environment/thermotolerant.html","thermotolerant"]],"b":[["METPO%3A1000619","thermotolerant"]]},{"id":"METPO:1000621","l":"haloalkaliphilic","na":1,"nb":1,"a":[["environment/haloalkaliphilic.html","haloalkaliphilic"]],"b":[["METPO%3A1000621","haloalkaliphilic"]]},{"id":"METPO:1000623","l":"moderately halophilic","na":1,"nb":1,"a":[["environment/moderately_halophilic.html","moderately halophilic"]],"b":[["METPO%3A1000623","moderately halophilic"]]},{"id":"METPO:1000624","l":"non halophilic","na":1,"nb":1,"a":[["environment/non_halophilic.html","non halophilic"]],"b":[["METPO%3A1000624","non halophilic"]]},{"id":"METPO:1000625","l":"slightly halophilic","na":1,"nb":1,"a":[["environment/slightly_halophilic.html","slightly halophilic"]],"b":[["METPO%3A1000625","slightly halophilic"]]},{"id":"METPO:1000626","l":"stenohaline","na":1,"nb":1,"a":[["environment/stenohaline.html","stenohaline"]],"b":[["METPO%3A1000626","stenohaline"]]},{"id":"METPO:1000627","l":"euryhaline","na":1,"nb":1,"a":[["environment/euryhaline.html","euryhaline"]],"b":[["METPO%3A1000627","euryhaline"]]},{"id":"METPO:1000628","l":"extremely halophilic","na":1,"nb":1,"a":[["environment/extremely_halophilic.html","extremely halophilic"]],"b":[["METPO%3A1000628","extremely halophilic"]]},{"id":"METPO:1000633","l":"carboxydotrophic","na":1,"nb":1,"a":[["physiology/carboxydotrophic.html","carboxydotrophic"]],"b":[["METPO%3A1000633","carboxydotrophic"]]},{"id":"METPO:1000634","l":"chemoautolithotrophic","na":1,"nb":1,"a":[["physiology/chemoautolithotrophic.html","chemoautolithotrophic"]],"b":[["METPO%3A1000634","chemoautolithotrophic"]]},{"id":"METPO:1000635","l":"chemoautotrophic","na":1,"nb":1,"a":[["physiology/chemoautotrophic.html","chemoautotrophic"]],"b":[["METPO%3A1000635","chemoautotrophic"]]},{"id":"METPO:1000636","l":"chemoheterotrophic","na":1,"nb":1,"a":[["physiology/chemoheterotrophic.html","chemoheterotrophic"]],"b":[["METPO%3A1000636","chemoheterotrophic"]]},{"id":"METPO:1000637","l":"chemolithoautotrophic","na":1,"nb":1,"a":[["physiology/chemolithoautotrophic.html","chemolithoautotrophic"]],"b":[["METPO%3A1000637","chemolithoautotrophic"]]},{"id":"METPO:1000638","l":"chemolithoheterotrophic","na":1,"nb":1,"a":[["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"]],"b":[["METPO%3A1000638","chemolithoheterotrophic"]]},{"id":"METPO:1000639","l":"chemolithotrophic","na":1,"nb":1,"a":[["physiology/chemolithotrophic.html","chemolithotrophic"]],"b":[["METPO%3A1000639","chemolithotrophic"]]},{"id":"METPO:1000640","l":"chemoorganoheterotrophic","na":1,"nb":1,"a":[["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"]],"b":[["METPO%3A1000640","chemoorganoheterotrophic"]]},{"id":"METPO:1000646","l":"hydrogenotrophic","na":1,"nb":1,"a":[["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["METPO%3A1000646","hydrogenotrophic"]]},{"id":"METPO:1000647","l":"lithoautotrophic","na":1,"nb":1,"a":[["physiology/lithoautotrophic.html","lithoautotrophic"]],"b":[["METPO%3A1000647","lithoautotrophic"]]},{"id":"METPO:1000648","l":"lithoheterotrophic","na":1,"nb":1,"a":[["physiology/lithoheterotrophic.html","lithoheterotrophic"]],"b":[["METPO%3A1000648","lithoheterotrophic"]]},{"id":"METPO:1000649","l":"lithotrophic","na":1,"nb":1,"a":[["physiology/lithotrophic.html","lithotrophic"]],"b":[["METPO%3A1000649","lithotrophic"]]},{"id":"METPO:1000650","l":"methanotrophic","na":1,"nb":1,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["METPO%3A1000650","methanotrophic"]]},{"id":"METPO:1000651","l":"methylotrophic","na":1,"nb":1,"a":[["physiology/methylotrophic.html","methylotrophic"]],"b":[["METPO%3A1000651","methylotrophic"]]},{"id":"METPO:1000652","l":"mixotrophic","na":1,"nb":1,"a":[["physiology/mixotrophic.html","mixotrophic"]],"b":[["METPO%3A1000652","mixotrophic"]]},{"id":"METPO:1000655","l":"organotrophic","na":1,"nb":1,"a":[["physiology/organotrophic.html","organotrophic"]],"b":[["METPO%3A1000655","organotrophic"]]},{"id":"METPO:1000656","l":"photoautotrophic","na":1,"nb":1,"a":[["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["METPO%3A1000656","photoautotrophic"]]},{"id":"METPO:1000658","l":"photolithotrophic","na":1,"nb":1,"a":[["physiology/photolithotrophic.html","photolithotrophic"]],"b":[["METPO%3A1000658","photolithotrophic"]]},{"id":"METPO:1000659","l":"photoorganoheterotrophic","na":1,"nb":1,"a":[["physiology/photoorganoheterotrophic.html","photoorganoheterotrophic"]],"b":[["METPO%3A1000659","photoorganoheterotrophic"]]},{"id":"METPO:1000663","l":"chemoorganotrophic","na":1,"nb":1,"a":[["physiology/chemoorganotrophic.html","chemoorganotrophic"]],"b":[["METPO%3A1000663","chemoorganotrophic"]]},{"id":"METPO:1000664","l":"organoheterotrophic","na":1,"nb":1,"a":[["physiology/organoheterotrophic.html","organoheterotrophic"]],"b":[["METPO%3A1000664","organoheterotrophic"]]},{"id":"METPO:1000665","l":"photolithoautotrophic","na":1,"nb":1,"a":[["physiology/photolithoautotrophic.html","photolithoautotrophic"]],"b":[["METPO%3A1000665","photolithoautotrophic"]]},{"id":"METPO:1000720","l":"facultative psychrophilic","na":1,"nb":1,"a":[["environment/facultative_psychrophilic.html","facultative psychrophilic"]],"b":[["METPO%3A1000720","facultative psychrophilic"]]},{"id":"METPO:1000721","l":"extreme hyperthermophilic","na":1,"nb":1,"a":[["environment/extreme_hyperthermophilic.html","extreme hyperthermophilic"]],"b":[["METPO%3A1000721","extreme hyperthermophilic"]]},{"id":"METPO:1000801","l":"Aerobic respiration","na":1,"nb":1,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"]],"b":[["METPO%3A1000801","Aerobic respiration"]]},{"id":"METPO:1000803","l":"Oxidative phosphorylation","na":1,"nb":1,"a":[["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"]],"b":[["METPO%3A1000803","Oxidative phosphorylation"]]},{"id":"METPO:1000805","l":"Electron transfer","na":1,"nb":1,"a":[["metabolism/electron_transfer.html","Electron transfer"]],"b":[["METPO%3A1000805","Electron transfer"]]},{"id":"METPO:1000806","l":"Disproportionation","na":1,"nb":1,"a":[["metabolism/disproportionation.html","Disproportionation"]],"b":[["METPO%3A1000806","Disproportionation"]]},{"id":"METPO:1000846","l":"Homoacetogenesis","na":1,"nb":1,"a":[["metabolism/homoacetogenesis.html","Homoacetogenesis"]],"b":[["METPO%3A1000846","Homoacetogenesis"]]},{"id":"METPO:1002003","l":"Cable bacteria metabolism","na":1,"nb":1,"a":[["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"]],"b":[["METPO%3A1002003","Cable bacteria metabolism"]]},{"id":"METPO:1002006","l":"Syntrophy","na":1,"nb":1,"a":[["metabolism/syntrophy.html","Syntrophy"]],"b":[["METPO%3A1002006","Syntrophy"]]},{"id":"METPO:1003001","l":"neutrophilic","na":1,"nb":1,"a":[["environment/neutrophilic.html","neutrophilic"]],"b":[["METPO%3A1003001","neutrophilic"]]},{"id":"METPO:1003004","l":"obligately alkaliphilic","na":1,"nb":1,"a":[["environment/obligately_alkaphilic.html","obligately alkaliphilic"]],"b":[["METPO%3A1003004","obligately alkaliphilic"]]},{"id":"METPO:1003005","l":"facultatively alkaliphilic","na":1,"nb":1,"a":[["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"]],"b":[["METPO%3A1003005","facultatively alkaliphilic"]]},{"id":"METPO:1003006","l":"obligately acidophilic","na":1,"nb":1,"a":[["environment/obligately_acidophilic.html","obligately acidophilic"]],"b":[["METPO%3A1003006","obligately acidophilic"]]},{"id":"METPO:1003007","l":"facultatively acidophilic","na":1,"nb":1,"a":[["environment/facultatively_acidophilic.html","facultatively acidophilic"]],"b":[["METPO%3A1003007","facultatively acidophilic"]]},{"id":"METPO:1003009","l":"alkalotolerant","na":1,"nb":1,"a":[["environment/alkalotolerant.html","alkalotolerant"]],"b":[["METPO%3A1003009","alkalotolerant"]]},{"id":"METPO:1005011","l":"indole test positive","na":1,"nb":1,"a":[["other/indole_test_positive.html","indole test positive"]],"b":[["METPO%3A1005011","indole test positive"]]},{"id":"METPO:1005012","l":"indole test negative","na":1,"nb":1,"a":[["other/indole_test_negative.html","indole test negative"]],"b":[["METPO%3A1005012","indole test negative"]]},{"id":"METPO:1005014","l":"methyl red test positive","na":1,"nb":1,"a":[["other/methyl_red_test_positive.html","methyl red test positive"]],"b":[["METPO%3A1005014","methyl red test positive"]]},{"id":"METPO:1005015","l":"methyl red test negative","na":1,"nb":1,"a":[["other/methyl_red_test_negative.html","methyl red test negative"]],"b":[["METPO%3A1005015","methyl red test negative"]]},{"id":"METPO:1005017","l":"Voges-Proskauer test positive","na":1,"nb":1,"a":[["other/voges_proskauer_test_positive.html","Voges-Proskauer test positive"]],"b":[["METPO%3A1005017","Voges-Proskauer test positive"]]},{"id":"METPO:1005018","l":"Voges-Proskauer test negative","na":1,"nb":1,"a":[["other/voges_proskauer_test_negative.html","Voges-Proskauer test negative"]],"b":[["METPO%3A1005018","Voges-Proskauer test negative"]]},{"id":"METPO:1005021","l":"capnophilic","na":1,"nb":1,"a":[["environment/capnophilic.html","capnophilic"]],"b":[["METPO%3A1005021","capnophilic"]]},{"id":"METPO:1007073","l":"osmotic tolerance","na":1,"nb":1,"a":[["other/osmotic_tolerance.html","osmotic tolerance"]],"b":[["METPO%3A1007073","osmotic tolerance"]]},{"id":"METPO:1007084","l":"catalase negative","na":1,"nb":1,"a":[["other/catalase_negative.html","catalase negative"]],"b":[["METPO%3A1007084","catalase negative"]]},{"id":"METPO:1007086","l":"oxidase negative","na":1,"nb":1,"a":[["other/oxidase_negative.html","oxidase negative"]],"b":[["METPO%3A1007086","oxidase negative"]]},{"id":"METPO:1007088","l":"urease negative","na":1,"nb":1,"a":[["other/urease_negative.html","urease negative"]],"b":[["METPO%3A1007088","urease negative"]]},{"id":"METPO:1007090","l":"coagulase positive","na":1,"nb":1,"a":[["other/coagulase_positive.html","coagulase positive"]],"b":[["METPO%3A1007090","coagulase positive"]]},{"id":"METPO:1007091","l":"coagulase negative","na":1,"nb":1,"a":[["other/coagulase_negative.html","coagulase negative"]],"b":[["METPO%3A1007091","coagulase negative"]]},{"id":"NCBITaxon:133804","l":"gamma proteobacterium EBAC31A08","na":1,"nb":1,"a":[["metabolism/proteorhodopsin_phototrophy.html","proteorhodopsin phototrophy"]],"b":[["PROSITE%3APS00950","Bacterial rhodopsins signature 1"]]},{"id":"NCBITaxon:1392998","l":"Candidatus Methanoperedens nitratireducens","na":1,"nb":1,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"]],"b":[["TED%3AAF-A0A062V4L1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A062V4L1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1473598","l":"Paludibaculum fermentans","na":1,"nb":1,"a":[["environment/facultatively_acidophilic.html","facultatively acidophilic"]],"b":[["TED%3AAF-A0A7S7NND6-F1-model_v4_TED01","TED novel fold AF-A0A7S7NND6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":1,"nb":1,"a":[["morphology/branched_shaped.html","branched shaped"]],"b":[["TED%3AAF-A0A415C3I8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A415C3I8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2306023","l":"Gemmobacter lutimaris","na":1,"nb":1,"a":[["environment/ph_delta_mid3.html","pH delta mid3"]],"b":[["TED%3AAF-A0A398BQ53-F1-model_v4_TED04","TED novel fold AF-A0A398BQ53-F1-model_v4_TED04"]]},{"id":"NCBITaxon:243164","l":"Dehalococcoides mccartyi 195","na":1,"nb":1,"a":[["metabolism/organohalide_respiration.html","organohalide respiration"]],"b":[["Pfam%3APF13486","Reductive dehalogenase subunit"]]},{"id":"NCBITaxon:29339","l":"Bacillus thuringiensis subsp. kurstaki","na":1,"nb":1,"a":[["physiology/quorum_sensing.html","quorum sensing"]],"b":[["Pfam%3APF07029","CryBP1 protein"]]},{"id":"NCBITaxon:296","l":"Pseudomonas fragi","na":1,"nb":1,"a":[["environment/temperature_optimum_low.html","temperature optimum low"]],"b":[["TED%3AAF-A0A449IS41-F1-model_v4_TED01","TED novel fold AF-A0A449IS41-F1-model_v4_TED01"]]},{"id":"NCBITaxon:335541","l":"Syntrophomonas wolfei subsp. wolfei (strain DSM 2245B / Goettingen)","na":1,"nb":1,"a":[["metabolism/syntrophy.html","Syntrophy"]],"b":[["TED%3AAF-Q0AVF9-F1-model_v4_TED01","TED novel fold AF-Q0AVF9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["metabolism/photoferrotrophy.html","photoferrotrophy"]],"b":[["Pfam%3APF13282","Domain of unknown function (DUF4070)"]]},{"id":"NCBITaxon:399549","l":"Metallosphaera sedula DSM 5348","na":1,"nb":1,"a":[["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]],"b":[["Pfam%3APF18195","GatD N-terminal domain"]]},{"id":"NCBITaxon:412955","l":"Pseudomonas sp. SCT","na":1,"nb":1,"a":[["metabolism/iodate_respiration.html","iodate respiration"]],"b":[["Pfam%3APF03150","Di-haem cytochrome c peroxidase"]]},{"id":"NCBITaxon:521674","l":"Planctopirus limnophila DSM 3776","na":1,"nb":1,"a":[["morphology/flask_shaped.html","flask shaped"]],"b":[["TED%3AAF-D5SQH0-F1-model_v4_TED01","TED novel fold AF-D5SQH0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:747","l":"Pasteurella multocida","na":1,"nb":1,"a":[["ecology/animal_pathogen.html","animal pathogen"]],"b":[["TED%3AAF-A0A8A8HHD5-F1-model_v4_TED02","TED novel fold AF-A0A8A8HHD5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:766760","l":"Bacillus paralicheniformis ATCC 9945a","na":1,"nb":1,"a":[["genomics/disarm_system.html","DISARM system"]],"b":[["Pfam%3APF24957","DISARM protein DrmE, C-terminal domain"]]},{"id":"NCBITaxon:863","l":"Syntrophomonas wolfei","na":1,"nb":1,"a":[["metabolism/syntrophy.html","Syntrophy"]],"b":[["TED%3AAF-A0A354YY78-F1-model_v4_TED03","TED novel fold AF-A0A354YY78-F1-model_v4_TED03"]]},{"id":"UniProt:P07984","l":"","na":1,"nb":1,"a":[["metabolism/biopolymer_degradation.html","biopolymer degradation"]],"b":[["PROSITE%3APS00561","CBM2a (carbohydrate-binding type-2) domain signature"]]},{"id":"UniProt:P24559","l":"","na":1,"nb":1,"a":[["morphology/twitching_motility.html","twitching motility"]],"b":[["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]]},{"id":"UniProt:P27709","l":"","na":1,"nb":1,"a":[["morphology/heterocyst.html","heterocyst"]],"b":[["Pfam%3APF18460","Heterocyst differentiation regulator C-terminal Hood domain"]]},{"id":"UniProt:P44413","l":"","na":1,"nb":1,"a":[["genomics/restriction_modification_system.html","restriction-modification system"]],"b":[["Pfam%3APF09226","Restriction endonuclease HincII"]]},{"id":"UniProt:P45573","l":"","na":1,"nb":1,"a":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["Pfam%3APF04358","DsrC like protein"]]},{"id":"UniProt:P9WG29","l":"","na":1,"nb":1,"a":[["physiology/dormancy.html","dormancy"]],"b":[["Pfam%3APF03990","G5-linked-Ubiquitin-like domain"]]},{"id":"UniProt:Q03511","l":"","na":1,"nb":1,"a":[["morphology/carboxysome.html","carboxysome"]],"b":[["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"UniProt:Q9F7P4","l":"","na":1,"nb":1,"a":[["metabolism/proteorhodopsin_phototrophy.html","proteorhodopsin phototrophy"]],"b":[["PROSITE%3APS00950","Bacterial rhodopsins signature 1"]]},{"id":"UniProt:Q9HXT9","l":"","na":1,"nb":1,"a":[["ecology/biofilm_formation.html","biofilm formation"]],"b":[["proteintraitsmech%3ABIOLIP_C2E","C2E-binding site"]]},{"id":"UniProt:S5N020","l":"","na":1,"nb":1,"a":[["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"]],"b":[["proteintraitsmech%3ABIOLIP_1VU","1VU-binding site"]]}]} \ No newline at end of file +{"a":"TraitMech","b":"ProteinTraitsMech","base":{"TraitMech":"https://culturebotai.github.io/TraitMech/pages/traits/","ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record="},"n":707,"by":{"GO":248,"NCBITaxon":136,"METPO":111,"CHEBI":109,"UniProt":56,"InterPro":47},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":65,"nb":145,"a":[["ecology/biosafety_level.html","biosafety level"],["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/host_associated.html","host-associated"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/halophily_preference.html","halophily preference"]],"b":[["IDPO%3A0000033","flexible linker"],["IDPO%3A0000014","order to disorder"],["IDPO%3A0000004","pre-molten globule"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":30,"nb":1616,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"]],"b":[["EC%3A1.1.1.170","3beta-hydroxysteroid-4alpha-carboxylate 3-dehydrogenase (decarboxylating)"],["EC%3A1.1.1.262","4-hydroxythreonine-4-phosphate dehydrogenase"],["EC%3A1.1.1.276","serine 3-dehydrogenase (NADP(+))"],["EC%3A1.1.1.286","isocitrate--homoisocitrate dehydrogenase"],["EC%3A1.1.1.305","UDP-glucuronic acid oxidase (UDP-4-keto-hexauronic acid decarboxylating)"],["EC%3A1.1.1.343","phosphogluconate dehydrogenase (NAD(+)-dependent, decarboxylating)"]]},{"id":"METPO:1000631","l":"trophic type","na":30,"nb":29,"a":[["physiology/autotrophic.html","autotrophic"],["physiology/carboxydotrophic.html","carboxydotrophic"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"]],"b":[["METPO%3A1000632","autotrophic"],["METPO%3A1000633","carboxydotrophic"],["METPO%3A1000634","chemoautolithotrophic"],["METPO%3A1000635","chemoautotrophic"],["METPO%3A1000636","chemoheterotrophic"],["METPO%3A1000637","chemolithoautotrophic"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":26,"nb":17470,"a":[["environment/ph_phenotype_with_numerical_limits.html","pH phenotype with numerical limits"],["environment/temperature_optimum_mid4.html","temperature optimum mid4"],["genomics/rnlab_system.html","RnlAB system"],["metabolism/metabolism.html","metabolism"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/respiration.html","respiration"]],"b":[["EC%3A1.1.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.16.-.-","Oxidizing metal ions"],["EC%3A1.18.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.7.-","With an iron-sulfur protein as acceptor"]]},{"id":"CHEBI:15379","l":"dioxygen","na":25,"nb":3896,"a":[["environment/aerobic.html","aerobic"],["environment/aerotolerant.html","aerotolerant"],["environment/anaerobic.html","anaerobic"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_aerobic.html","facultatively aerobic"],["environment/facultatively_anaerobic.html","facultatively anaerobic"]],"b":[["EC%3A1.1.3.10","pyranose oxidase"],["EC%3A1.1.3.11","L-sorbose oxidase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.3.13","alcohol oxidase"],["EC%3A1.1.3.14","catechol oxidase (dimerizing)"],["EC%3A1.1.3.15","(S)-2-hydroxy-acid oxidase"]]},{"id":"CHEBI:30616","l":"","na":24,"nb":2111,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/fermentation.html","Fermentation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/nitrogen_fixation.html","nitrogen fixation"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_30616","requires ATP(4−)"],["EC%3A1.13.12.7","firefly luciferase"],["EC%3A1.16.99.1","[Co(II) methylated amine-specific corrinoid protein] reductase"],["EC%3A1.18.6.1","nitrogenase"],["EC%3A1.18.6.2","vanadium-dependent nitrogenase"],["EC%3A1.19.6.1","nitrogenase (flavodoxin)"]]},{"id":"METPO:1000059","l":"phenotype","na":117,"nb":18,"a":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/habitat_association.html","habitat association"],["ecology/pathogenic_to_host.html","pathogenic to host"],["ecology/predatory_bacterium.html","predatory bacterium"],["ecology/saprotrophy.html","saprotrophy"],["ecology/symbiosis.html","symbiosis"]],"b":[["METPO%3A1000629","halophily preference"],["METPO%3A1007074","metal tolerance"],["METPO%3A1007073","osmotic tolerance"],["METPO%3A1000601","oxygen preference"],["METPO%3A1003000","pH growth preference"],["METPO%3A1000059","phenotype"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":15,"nb":46,"a":[["ecology/biosafety_level_2.html","biosafety level 2"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/coccus_shaped.html","coccus shaped"]],"b":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF13166","AAA domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF27533","CapK C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"]]},{"id":"GO:0015977","l":"carbon fixation","na":15,"nb":30,"a":[["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]],"b":[["GO%3A0009760","C4 photosynthesis"],["GO%3A0009761","CAM photosynthesis"],["GO%3A0043427","carbon fixation by 3-hydroxypropionate cycle"],["GO%3A0030634","carbon fixation by acetyl-CoA pathway"],["GO%3A0015977","carbon fixation"],["GO%3A0019643","reductive tricarboxylic acid cycle"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":18,"nb":15,"a":[["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/neutrophilic.html","neutrophilic"],["environment/non_halophilic.html","non halophilic"],["genomics/spbk_system.html","SpbK system"]],"b":[["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["Pfam%3APF14562","Restriction endonuclease BglI"],["Pfam%3APF09195","Restriction endonuclease BglII/BglIII"],["Pfam%3APF09208","Restriction endonuclease MspI"]]},{"id":"GO:0051453","l":"regulation of intracellular pH","na":17,"nb":15,"a":[["environment/acidophilic.html","acidophilic"],["environment/acidotolerant.html","acidotolerant"],["environment/alkalotolerant.html","alkalotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"]],"b":[["ComplexPortal%3ACPX-3090","Glutathione-regulated potassium-efflux system KefB-KefG complex"],["ComplexPortal%3ACPX-2543","Glutathione-regulated potassium-efflux system KefC-KefF complex"],["ComplexPortal%3ACPX-26449","Sodium/proton exchanger complex, NHE1-CHP1 variant"],["ComplexPortal%3ACPX-26462","Sodium/proton exchanger complex, NHE1-CHP2 variant"],["ComplexPortal%3ACPX-26464","Sodium/proton exchanger complex, NHE1-CHP3 variant"],["ComplexPortal%3ACPX-26469","Sodium/proton exchanger complex, NHE2-CHP1 variant"]]},{"id":"GO:0045259","l":"proton-transporting ATP synthase complex","na":13,"nb":52,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/fermentation.html","Fermentation"],["metabolism/metabolism.html","metabolism"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/carboxydotrophic.html","carboxydotrophic"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["ComplexPortal%3ACPX-25764","Mitochondrial proton translocating ATP synthase complex"],["ComplexPortal%3ACPX-3281","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-6151","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-8618","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-8619","Mitochondrial proton-transporting ATP synthase complex, testis-specific variant"]]},{"id":"CHEBI:18276","l":"dihydrogen","na":13,"nb":42,"a":[["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/does_not_use_as_electron_donor.html","does not use as electron donor"],["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"]],"b":[["EC%3A1.12.1.2","hydrogen dehydrogenase"],["EC%3A1.12.1.3","hydrogen dehydrogenase (NADP(+))"],["EC%3A1.12.1.4","hydrogenase (NAD(+), ferredoxin)"],["EC%3A1.12.1.5","hydrogen dehydrogenase [NAD(P)(+)]"],["EC%3A1.12.2.1","cytochrome-c3 hydrogenase"],["EC%3A1.12.5.1","hydrogen:quinone oxidoreductase"]]},{"id":"METPO:1000060","l":"metabolism","na":26,"nb":12,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/aromatic_compound_degradation.html","aromatic compound degradation"],["metabolism/arsenite_oxidation.html","arsenite oxidation"],["metabolism/biopolymer_degradation.html","biopolymer degradation"],["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"],["metabolism/carbon_fixation.html","carbon fixation"]],"b":[["METPO%3A1000845","Acetogenesis"],["METPO%3A1002003","Cable bacteria metabolism"],["METPO%3A1000806","Disproportionation"],["METPO%3A1000805","Electron transfer"],["METPO%3A1002005","Fermentation"],["METPO%3A1000846","Homoacetogenesis"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":11,"nb":93,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"],["morphology/carboxysome.html","carboxysome"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17544","requires hydrogencarbonate"],["EC%3A1.13.11.73","methylphosphonate synthase"],["EC%3A1.2.1.27","methylmalonate-semialdehyde dehydrogenase (CoA acylating)"],["EC%3A2.5.1.120","aminodeoxyfutalosine synthase"],["EC%3A2.5.1.143","pyridinium-3,5-biscarboxylic acid mononucleotide synthase"],["EC%3A2.7.2.2","carbamate kinase"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":11,"nb":19,"a":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/aerobic.html","aerobic"],["genomics/avast_system.html","AVAST system"],["genomics/jukab_system.html","JukAB system"],["morphology/motile.html","motile"]],"b":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"],["Pfam%3APF18173","Bacterial HORMA domain 2"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["Pfam%3APF27322","Cap8 HORMA domain"],["Pfam%3APF01526","Tn3 transposase DDE domain"]]},{"id":"GO:0006113","l":"fermentation","na":11,"nb":14,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"],["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["ComplexPortal%3ACPX-281","Hydrogenase-1 complex"],["GO%3A0030645","acetyl-CoA fermentation to butanoate"],["GO%3A0019665","amino acid fermentation"],["GO%3A0019588","anaerobic glycerol catabolic process"],["GO%3A0019658","bifid shunt"],["GO%3A0044577","D-xylose fermentation"]]},{"id":"GO:0004177","l":"aminopeptidase activity","na":10,"nb":58,"a":[["physiology/arginine_arylamidase_activity.html","arginine arylamidase activity"],["physiology/cystine_arylamidase_activity.html","cystine arylamidase activity"],["physiology/glycine_arylamidase_activity.html","glycine arylamidase activity"],["physiology/histidine_arylamidase_activity.html","histidine arylamidase activity"],["physiology/leucine_arylamidase_activity.html","leucine arylamidase activity"],["physiology/phenylalanine_arylamidase_activity.html","phenylalanine arylamidase activity"]],"b":[["EC%3A3.4.11.1","leucyl aminopeptidase"],["EC%3A3.4.11.21","aspartyl aminopeptidase"],["EC%3A3.4.11.22","aminopeptidase I"],["EC%3A3.4.11.5","prolyl aminopeptidase"],["EC%3A3.4.11.6","aminopeptidase B"],["EC%3A3.4.11.9","Xaa-Pro aminopeptidase"]]},{"id":"GO:0022900","l":"electron transport chain","na":10,"nb":50,"a":[["environment/obligately_aerobic.html","obligately aerobic"],["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/electron_transfer.html","Electron transfer"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"]],"b":[["GO%3A0022900","electron transport chain"],["GO%3A0140647","P450-containing electron transport chain"],["GO%3A0009767","photosynthetic electron transport chain"],["GO%3A0022904","respiratory electron transport chain"],["NCBIfam%3ANF058577","4Fe-4S ferredoxin"],["NCBIfam%3ANF042982","8-methylmenaquinol:fumarate reductase flavoprotein subunit"]]},{"id":"GO:0022904","l":"respiratory electron transport chain","na":10,"nb":30,"a":[["metabolism/metabolism.html","metabolism"],["physiology/carboxydotrophic.html","carboxydotrophic"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"]],"b":[["ComplexPortal%3ACPX-865","Electron transfer flavoprotein complex"],["ComplexPortal%3ACPX-2731","Mitochondrial electron transfer flavoprotein complex"],["ComplexPortal%3ACPX-243","Respiratory chain complex I"],["GO%3A0019646","aerobic electron transport chain"],["GO%3A0019645","anaerobic electron transport chain"],["GO%3A0042773","ATP synthesis coupled electron transport"]]},{"id":"METPO:1000601","l":"oxygen preference","na":12,"nb":10,"a":[["environment/aerobic.html","aerobic"],["environment/aerotolerant.html","aerotolerant"],["environment/anaerobic.html","anaerobic"],["environment/capnophilic.html","capnophilic"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_aerobic.html","facultatively aerobic"]],"b":[["METPO%3A1000602","aerobic"],["METPO%3A1000609","aerotolerant"],["METPO%3A1000603","anaerobic"],["METPO%3A1005021","capnophilic"],["METPO%3A1000612","facultative oxygen preference"],["METPO%3A1000608","facultatively aerobic"]]},{"id":"CHEBI:17632","l":"nitrate","na":9,"nb":40,"a":[["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"],["metabolism/does_not_use_as_electron_acceptor.html","does not use as electron acceptor"]],"b":[["EC%3A1.14.12.17","nitric oxide dioxygenase"],["EC%3A1.7.1.1","nitrate reductase (NADH)"],["EC%3A1.7.1.2","nitrate reductase [NAD(P)H]"],["EC%3A1.7.1.3","nitrate reductase (NADPH)"],["EC%3A1.7.5.1","nitrate reductase (quinone)"],["EC%3A1.7.6.1","nitrite dismutase"]]},{"id":"GO:0006970","l":"response to osmotic stress","na":9,"nb":15,"a":[["environment/extremely_halophilic.html","extremely halophilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/halotolerant.html","halotolerant"],["environment/moderately_halophilic.html","moderately halophilic"],["environment/nacl_delta.html","NaCl delta"]],"b":[["GO%3A0071470","cellular response to osmotic stress"],["GO%3A0043575","detection of osmotic stimulus"],["GO%3A0006972","hyperosmotic response"],["GO%3A0006971","hypotonic response"],["GO%3A0010335","response to non-ionic osmotic stress"],["GO%3A0006970","response to osmotic stress"]]},{"id":"GO:0009767","l":"photosynthetic electron transport chain","na":9,"nb":13,"a":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["metabolism/phototrophy.html","phototrophy"],["physiology/photoautotrophic.html","photoautotrophic"],["physiology/photoheterotrophic.html","photoheterotrophic"]],"b":[["GO%3A0009767","photosynthetic electron transport chain"],["GO%3A0009773","photosynthetic electron transport in photosystem I"],["GO%3A0009772","photosynthetic electron transport in photosystem II"],["NCBIfam%3ATIGR01332","cytochrome b559 subunit alpha"],["NCBIfam%3ATIGR01333","cytochrome b559 subunit beta"],["NCBIfam%3ATIGR01156","cytochrome b6-f complex subunit IV"]]},{"id":"CHEBI:15378","l":"hydron","na":8,"nb":14383,"a":[["environment/acidophilic.html","acidophilic"],["environment/acidotolerant.html","acidotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"],["environment/obligately_acidophilic.html","obligately acidophilic"]],"b":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.1.10","L-xylulose reductase"],["EC%3A1.1.1.100","3-oxoacyl-[acyl-carrier-protein] reductase"],["EC%3A1.1.1.101","acylglycerone-phosphate reductase"],["EC%3A1.1.1.102","3-dehydrosphinganine reductase"],["EC%3A1.1.1.103","L-threonine 3-dehydrogenase"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":8,"nb":680,"a":[["environment/aerotolerant.html","aerotolerant"],["environment/microaerophilic.html","microaerophilic"],["environment/microaerotolerant.html","microaerotolerant"],["environment/obligately_aerobic.html","obligately aerobic"],["environment/obligately_anaerobic.html","obligately anaerobic"],["environment/oxygen_preference.html","oxygen preference"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16240","requires hydrogen peroxide"],["EC%3A1.1.3.10","pyranose oxidase"],["EC%3A1.1.3.11","L-sorbose oxidase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.3.13","alcohol oxidase"],["EC%3A1.1.3.15","(S)-2-hydroxy-acid oxidase"]]},{"id":"GO:0009061","l":"anaerobic respiration","na":8,"nb":36,"a":[["environment/anaerobic.html","anaerobic"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["ComplexPortal%3ACPX-4841","Anaerobic glycerol-3-phosphate dehydrogenase complex"],["ComplexPortal%3ACPX-317","Formate hydrogenlyase-H/Hydrogenase-3 complex"],["ComplexPortal%3ACPX-6028","Formate hydrogenlyase-H/Hydrogenase-4 complex"],["ComplexPortal%3ACPX-281","Hydrogenase-1 complex"],["ComplexPortal%3ACPX-282","Hydrogenase-2 complex"],["ComplexPortal%3ACPX-3447","NapAB nitrate reductase complex"]]},{"id":"CHEBI:17750","l":"glycine betaine","na":8,"nb":33,"a":[["environment/euryhaline.html","euryhaline"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/moderately_halophilic.html","moderately halophilic"],["environment/nacl_optimum_mid1.html","NaCl optimum mid1"],["environment/nacl_optimum_mid2.html","NaCl optimum mid2"],["environment/nacl_range_mid2.html","NaCl range mid2"]],"b":[["EC%3A1.1.3.17","choline oxidase"],["EC%3A1.13.11.90","[1-hydroxy-2-(trimethylamino)ethyl]phosphonate dioxygenase (glycine- betaine-forming)"],["EC%3A1.14.13.251","glycine betaine monooxygenase"],["EC%3A1.2.1.8","betaine-aldehyde dehydrogenase"],["EC%3A1.21.4.4","betaine reductase"],["EC%3A2.1.1.157","sarcosine/dimethylglycine N-methyltransferase"]]},{"id":"GO:0009060","l":"aerobic respiration","na":8,"nb":25,"a":[["environment/aerobic.html","aerobic"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_aerobic.html","facultatively aerobic"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/obligately_aerobic.html","obligately aerobic"],["metabolism/aerobic_respiration.html","Aerobic respiration"]],"b":[["ComplexPortal%3ACPX-266","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-577","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-319","Trimethylamine-N-oxide reductase TorAC complex"],["GO%3A0019646","aerobic electron transport chain"],["GO%3A0009060","aerobic respiration"],["GO%3A0019409","aerobic respiration, using ammonia as electron donor"]]},{"id":"METPO:1003000","l":"pH growth preference","na":10,"nb":8,"a":[["environment/acidophilic.html","acidophilic"],["environment/acidotolerant.html","acidotolerant"],["environment/alkalotolerant.html","alkalotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"]],"b":[["METPO%3A1003003","acidophilic"],["METPO%3A1003008","acidotolerant"],["METPO%3A1003002","alkaliphilic"],["METPO%3A1003009","alkalotolerant"],["METPO%3A1003007","facultatively acidophilic"],["METPO%3A1003005","facultatively alkaliphilic"]]},{"id":"METPO:1000613","l":"temperature preference","na":9,"nb":8,"a":[["environment/extreme_hyperthermophilic.html","extreme hyperthermophilic"],["environment/facultative_psychrophilic.html","facultative psychrophilic"],["environment/hyperthermophilic.html","hyperthermophilic"],["environment/mesophilic.html","mesophilic"],["environment/psychrophilic.html","psychrophilic"],["environment/psychrotolerant.html","psychrotolerant"]],"b":[["METPO%3A1000720","facultative psychrophilic"],["METPO%3A1000617","hyperthermophilic"],["METPO%3A1000615","mesophilic"],["METPO%3A1000614","psychrophilic"],["METPO%3A1000618","psychrotolerant"],["METPO%3A1000613","temperature preference"]]},{"id":"CHEBI:15361","l":"pyruvate","na":7,"nb":410,"a":[["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15361","requires pyruvate"],["EC%3A1.1.1.27","L-lactate dehydrogenase"],["EC%3A1.1.1.28","D-lactate dehydrogenase"],["EC%3A1.1.1.38","malate dehydrogenase (oxaloacetate-decarboxylating)"],["EC%3A1.1.1.39","malate dehydrogenase (decarboxylating)"],["EC%3A1.1.1.40","malate dehydrogenase (oxaloacetate-decarboxylating) (NADP(+))"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":7,"nb":396,"a":[["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/iron_oxidation.html","iron oxidation"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29033","requires iron(2+)"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.11","glucoside 3-dehydrogenase (cytochrome c)"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.2.3","L-lactate dehydrogenase (cytochrome)"],["EC%3A1.1.2.4","D-lactate dehydrogenase (cytochrome)"]]},{"id":"CHEBI:29101","l":"sodium(1+)","na":7,"nb":292,"a":[["environment/alkaphilic.html","alkaliphilic"],["environment/euryhaline.html","euryhaline"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/nacl_delta_mid2.html","NaCl delta mid2"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29101","requires sodium(1+)"],["EC%3A7.2.1.1","NADH:ubiquinone reductase (Na(+)-transporting)"],["EC%3A7.2.1.2","ferredoxin--NAD(+) oxidoreductase (Na(+)-transporting)"],["EC%3A7.2.1.4","tetrahydromethanopterin S-methyltransferase"],["EC%3A7.2.2.1","Na(+)-transporting two-sector ATPase"],["EC%3A7.2.2.13","Na(+)/K(+)-exchanging ATPase"]]},{"id":"CHEBI:16189","l":"sulfate","na":7,"nb":133,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"],["metabolism/disproportionation.html","Disproportionation"],["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"],["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16189","requires sulfate"],["EC%3A1.14.11.77","alkyl sulfatase"],["EC%3A1.8.2.1","sulfite dehydrogenase (cytochrome)"],["EC%3A1.8.3.1","sulfite oxidase"],["EC%3A1.8.5.6","sulfite dehydrogenase (quinone)"],["EC%3A2.7.7.4","sulfate adenylyltransferase"]]},{"id":"GO:0009288","l":"bacterial-type flagellum","na":7,"nb":31,"a":[["morphology/amphitrichous.html","amphitrichous"],["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/lophotrichous.html","lophotrichous"],["morphology/monotrichous.html","monotrichous"],["morphology/non_motile.html","non motile"],["morphology/peritrichous.html","peritrichous"]],"b":[["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009288","bacterial-type flagellum"]]},{"id":"GO:0004096","l":"catalase activity","na":7,"nb":20,"a":[["environment/aerotolerant.html","aerotolerant"],["environment/desiccation_tolerant.html","desiccation tolerant"],["environment/microaerophilic.html","microaerophilic"],["environment/oxygen_preference.html","oxygen preference"],["environment/uv_radiation_tolerant.html","UV radiation tolerant"],["other/catalase_negative.html","catalase negative"]],"b":[["EC%3A1.11.1.6","catalase"],["METPO%3A1007084","catalase negative"],["METPO%3A1007083","catalase positive"],["RHEA%3A20309","2 H2O2 = O2 + 2 H2O"],["ComplexPortal%3ACPX-4742","Catalase complex"],["ComplexPortal%3ACPX-4767","Catalase complex"]]},{"id":"METPO:1000629","l":"halophily preference","na":10,"nb":7,"a":[["environment/euryhaline.html","euryhaline"],["environment/extremely_halophilic.html","extremely halophilic"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/halotolerant.html","halotolerant"]],"b":[["METPO%3A1000627","euryhaline"],["METPO%3A1000621","haloalkaliphilic"],["METPO%3A1000620","halophilic"],["METPO%3A1000629","halophily preference"],["METPO%3A1000622","halotolerant"],["METPO%3A1000624","non halophilic"]]},{"id":"CHEBI:65015","l":"","na":7,"nb":7,"a":[["environment/euryhaline.html","euryhaline"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/halotolerant.html","halotolerant"],["environment/nacl_optimum.html","NaCl optimum"]],"b":[["EC%3A1.1.3.43","paromamine 6'-oxidase"],["EC%3A2.4.1.301","2'-deamino-2'-hydroxyneamine 1-alpha-D-kanosaminyltransferase"],["EC%3A3.5.1.112","2'-N-acetylparomamine deacetylase"],["RHEA%3A34031","2'-N-acetylparomamine + H2O = paromamine + acetate"],["RHEA%3A34035","paromamine + O2 = 6'-oxoparomamine + H2O2"],["RHEA%3A35927","paromamine + UDP-alpha-D-glucose = 3'-deamino-3'-hydroxykanamycin C + UDP + H(+)"]]},{"id":"GO:0042710","l":"biofilm formation","na":7,"nb":7,"a":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/host_associated.html","host-associated"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["ecology/plant_pathogen.html","plant pathogen"],["ecology/rhizosphere_association.html","rhizosphere association"]],"b":[["GO%3A0042710","biofilm formation"],["GO%3A0044399","multi-species biofilm formation"],["GO%3A0044010","single-species biofilm formation"],["GO%3A0090605","submerged biofilm formation"],["GO%3A0090604","surface biofilm formation"],["Reactome%3AR-HSA-9931953","Biofilm formation"]]},{"id":"NCBITaxon:1111708","l":"Synechocystis sp. (strain ATCC 27184 / PCC 6803 / Kazusa)","na":6,"nb":61,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/photoautotrophic.html","photoautotrophic"],["physiology/photolithotrophic.html","photolithotrophic"],["physiology/phototrophic.html","phototrophic"]],"b":[["Pfam%3APF07698","7TM receptor with intracellular HD hydrolase"],["Pfam%3APF07697","7TM-HD extracellular"],["Pfam%3APF11266","Long-chain fatty aldehyde decarbonylase"],["Pfam%3APF21571","Arginine dihydrolase ArgZ-like, C-terminal, first region"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF17886","HSP20-like domain found in ArsA"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":6,"nb":30,"a":[["metabolism/butanediol_fermentation.html","2,3-butanediol fermentation"],["metabolism/citrate_fermentation.html","citrate fermentation"],["morphology/capsule.html","capsule"],["morphology/non_motile.html","non motile"],["other/indole_test_negative.html","indole test negative"],["other/methyl_red_test_negative.html","methyl red test negative"]],"b":[["Pfam%3APF08787","Alginate lyase"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF08218","Citrate lyase ligase C-terminal domain"],["Pfam%3APF13727","CoA-binding domain"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["Pfam%3APF20714","DpiA-like helix-turn-helix domain"]]},{"id":"GO:0016117","l":"carotenoid biosynthetic process","na":6,"nb":26,"a":[["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/cream_pigmented.html","cream pigmented"],["morphology/orange_pigmented.html","orange pigmented"],["morphology/pigmentation.html","pigmentation"],["morphology/pink_pigmented.html","pink pigmented"],["morphology/yellow_pigmented.html","yellow pigmented"]],"b":[["GO%3A1901824","alpha-carotene biosynthetic process"],["GO%3A1901821","alpha-zeacarotene biosynthetic process"],["GO%3A1901812","beta-carotene biosynthetic process"],["GO%3A1901818","beta-zeacarotene biosynthetic process"],["GO%3A0016117","carotenoid biosynthetic process"],["GO%3A0016123","xanthophyll biosynthetic process"]]},{"id":"GO:0006754","l":"ATP biosynthetic process","na":6,"nb":22,"a":[["environment/aerobic.html","aerobic"],["environment/ph_range_mid2.html","pH range mid2"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/lithoautotrophic.html","lithoautotrophic"],["physiology/mixotrophic.html","mixotrophic"]],"b":[["GO%3A0006756","AMP phosphorylation"],["GO%3A0006754","ATP biosynthetic process"],["GO%3A0015986","proton motive force-driven ATP synthesis"],["NCBIfam%3ATIGR02546","type III secretion system ATPase SctN"],["InterPro%3AIPR020971","ATP synthase, F1 beta subunit"],["PANTHER%3APTHR11910","ATP SYNTHASE DELTA CHAIN"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":6,"nb":20,"a":[["ecology/free_living.html","free-living"],["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["genomics/transposable_element.html","transposable element"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"]],"b":[["Pfam%3APF14535","AMP-binding enzyme C-terminal domain"],["Pfam%3APF13442","Cytochrome C oxidase, cbb3-type, subunit III"],["Pfam%3APF22247","Catechol 2,3-dioxygenase-like N-terminal domain"],["Pfam%3APF25371","Domain of unknown function (DUF7884)"],["Pfam%3APF19301","LigXa C-terminal domain like"],["Pfam%3APF12729","Four helix bundle sensory module for signal transduction"]]},{"id":"CHEBI:16134","l":"ammonia","na":6,"nb":11,"a":[["environment/ph_delta_mid1.html","pH delta mid1"],["metabolism/nitrogen_fixation.html","nitrogen fixation"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"],["physiology/urease_activity.html","urease activity"]],"b":[["TCDB%3A1.A.11","The Ammonium Transporter Channel (Amt) Family"],["MCSA%3A376","adenosine deaminase"],["MCSA%3A75","aspartate-ammonia ligase"],["MCSA%3A449","cystathionine beta-lyase"],["MCSA%3A97","cytidine deaminase"],["MCSA%3A710","cytosine deaminase (bacterial)"]]},{"id":"NCBITaxon:266264","l":"Cupriavidus metallidurans CH34","na":6,"nb":10,"a":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/copper_tolerant.html","copper tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["environment/zinc_tolerant.html","zinc tolerant"]],"b":[["Pfam%3APF25973","CzcB-like, barrel-sandwich hybrid domain"],["Pfam%3APF09828","ChrB, C-terminal domain"],["Pfam%3APF20229","Protein ChrB, N-terminal"],["Pfam%3APF01923","Cobalamin adenosyltransferase"],["Pfam%3APF25975","CzcB C-terminal circularly permuted SH3-like domain"],["Pfam%3APF25971","CzcB, N-terminal domain"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":6,"nb":10,"a":[["ecology/animal_pathogen.html","animal pathogen"],["ecology/biosafety_level_2.html","biosafety level 2"],["genomics/genomic_island.html","genomic island"],["genomics/prophage.html","prophage"],["morphology/flagellated.html","flagellated"],["morphology/peritrichous.html","peritrichous"]],"b":[["TED%3AAF-A0A5T2E4X7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5T2E4X7-F1-model_v4_TED01"],["TED%3AAF-A0A5Y4BP44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Y4BP44-F1-model_v4_TED01"],["TED%3AAF-A0A623P6F3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A623P6F3-F1-model_v4_TED02"],["TED%3AAF-A0A721BDS7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A721BDS7-F1-model_v4_TED02"],["TED%3AAF-A0A743P324-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A743P324-F1-model_v4_TED01"],["TED%3AAF-A0A757VWR3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A757VWR3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":6,"nb":9,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/oxidase_activity.html","oxidase activity"]],"b":[["Pfam%3APF07835","Bacterial aa3 type cytochrome c oxidase subunit IV"],["Pfam%3APF04828","Glutathione-dependent formaldehyde-activating enzyme"],["Pfam%3APF16448","LapD/MoxY periplasmic domain"],["Pfam%3APF17267","Family of unknown function (DUF5333)"],["Pfam%3APF17272","Family of unknown function (DUF5337)"],["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"]]},{"id":"GO:0009292","l":"horizontal gene transfer","na":6,"nb":7,"a":[["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["genomics/genome_size.html","genome size"],["genomics/genomic_island.html","genomic island"],["genomics/mobile_genetic_element.html","mobile genetic element"],["genomics/pangenome_openness.html","pangenome openness"]],"b":[["GO%3A0009294","DNA-mediated transformation"],["GO%3A0009292","horizontal gene transfer"],["GO%3A0009293","transduction"],["GO%3A0009291","unidirectional conjugation"],["NCBIfam%3ATIGR04359","entry exclusion lipoprotein TrbK"],["NCBIfam%3ATIGR04361","entry exclusion protein TrbK"]]},{"id":"CHEBI:16474","l":"","na":6,"nb":6,"a":[["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16474","requires NADPH"],["MCSA%3A112","dihydrofolate reductase (bacterial)"],["MCSA%3A6","glutathione-disulfide reductase"],["MCSA%3A7","isocitrate dehydrogenase (NADP+)"],["MCSA%3A21","malate dehydrogenase (oxaloacetate-decarboxylating)"],["proteintraitsmech%3ABIOLIP_NDP","NDP-binding site"]]},{"id":"CHEBI:16301","l":"nitrite","na":5,"nb":116,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["EC%3A1.13.11.64","5-nitrosalicylate dioxygenase"],["EC%3A1.13.12.16","nitronate monooxygenase"],["EC%3A1.14.12.23","nitroarene dioxygenase"],["EC%3A1.14.12.24","2,4-dinitrotoluene dioxygenase"],["EC%3A1.14.13.166","4-nitrocatechol 4-monooxygenase"],["EC%3A1.14.13.167","4-nitrophenol 4-monooxygenase"]]},{"id":"GO:0009056","l":"catabolic process","na":5,"nb":109,"a":[["metabolism/metabolism.html","metabolism"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"],["physiology/heterotrophic.html","heterotrophic"],["physiology/organotrophic.html","organotrophic"]],"b":[["GO%3A0018911","1,2,4-trichlorobenzene catabolic process"],["GO%3A0019261","1,4-dichlorobenzene catabolic process"],["GO%3A0046302","2-chloro-N-isopropylacetanilide catabolic process"],["GO%3A1901851","7,8-didemethyl-8-hydroxy-5-deazariboflavin catabolic process"],["GO%3A0006581","acetylcholine catabolic process"],["GO%3A0046185","aldehyde catabolic process"]]},{"id":"GO:0006935","l":"chemotaxis","na":5,"nb":64,"a":[["morphology/flagellated.html","flagellated"],["morphology/motile.html","motile"],["morphology/motility.html","motility"],["physiology/chemotaxis.html","chemotaxis"],["physiology/copiotrophic.html","copiotrophic"]],"b":[["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009454","aerotaxis"]]},{"id":"CHEBI:29103","l":"potassium(1+)","na":5,"nb":32,"a":[["environment/extremely_halophilic.html","extremely halophilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/non_halophilic.html","non halophilic"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29103","requires potassium(1+)"],["EC%3A7.2.2.13","Na(+)/K(+)-exchanging ATPase"],["EC%3A7.2.2.19","H(+)/K(+)-exchanging ATPase"],["EC%3A7.2.2.6","P-type K(+) transporter"],["RHEA%3A18353","2 K(+)(out) + 3 Na(+)(in) + ATP + H2O = 2 K(+)(in) + 3 Na(+)(out) + ADP + phosphate + H(+)"],["RHEA%3A69967","Ca(2+)(out) + K(+)(out) + 4 Na(+)(in) = Ca(2+)(in) + K(+)(in) + 4 Na(+)(out)"]]},{"id":"GO:0004784","l":"superoxide dismutase activity","na":5,"nb":27,"a":[["environment/aerotolerant.html","aerotolerant"],["environment/desiccation_tolerant.html","desiccation tolerant"],["environment/microaerophilic.html","microaerophilic"],["environment/obligately_aerobic.html","obligately aerobic"],["environment/oxygen_preference.html","oxygen preference"]],"b":[["EC%3A1.15.1.1","superoxide dismutase"],["RHEA%3A20696","2 superoxide + 2 H(+) = H2O2 + O2"],["ComplexPortal%3ACPX-21824","CCS-SOD1, oxidative stress response complex"],["ComplexPortal%3ACPX-2896","[Cu-Zn] Superoxide dismutase complex"],["ComplexPortal%3ACPX-2897","[Cu-Zn] Superoxide dismutase complex"],["ComplexPortal%3ACPX-2898","[Cu-Zn] Superoxide dismutase complex"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":5,"nb":23,"a":[["genomics/gabija_system.html","Gabija system"],["genomics/shedu_system.html","Shedu system"],["genomics/thoeris_system.html","Thoeris system"],["physiology/caseinase_activity.html","caseinase activity"],["physiology/lecithinase_activity.html","lecithinase activity"]],"b":[["Pfam%3APF08878","HamA"],["Pfam%3APF05791","Bacillus haemolytic enterotoxin (HBL)"],["Pfam%3APF10803","Spore germination GerPB"],["Pfam%3APF10737","Spore germination protein GerPC"],["Pfam%3APF10970","Spore germination protein GerPE"],["Pfam%3APF07486","Cell Wall Hydrolase"]]},{"id":"CHEBI:15948","l":"","na":5,"nb":20,"a":[["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/orange_pigmented.html","orange pigmented"],["morphology/pink_pigmented.html","pink pigmented"],["morphology/red_pigmented.html","red pigmented"],["morphology/yellow_pigmented.html","yellow pigmented"]],"b":[["EC%3A1.3.99.26","all-trans-zeta-carotene desaturase"],["EC%3A1.3.99.31","phytoene desaturase (lycopene-forming)"],["EC%3A2.5.1.149","lycopene elongase/hydratase (flavuxanthin-forming)"],["EC%3A2.5.1.150","lycopene elongase/hydratase (dihydrobisanhydrobacterioruberin-forming)"],["EC%3A4.2.1.131","carotenoid 1,2-hydratase"],["EC%3A5.2.1.13","prolycopene isomerase"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":13,"a":[["metabolism/chitinolysis.html","chitinolysis"],["morphology/pigmentation.html","pigmentation"],["morphology/red_pigmented.html","red pigmented"],["morphology/white_pigmented.html","white pigmented"],["physiology/beta_n_acetylhexosaminidase_activity.html","beta-N-acetylhexosaminidase activity"]],"b":[["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF03173","Putative carbohydrate binding domain"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"],["Pfam%3APF06438","Heme-binding protein A (HasA)"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF05247","Flagellar transcriptional activator (FlhD)"]]},{"id":"GO:0031470","l":"carboxysome","na":5,"nb":10,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["morphology/carboxysome.html","carboxysome"],["physiology/autotrophic.html","autotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["GO%3A0031470","carboxysome"],["NCBIfam%3ANF053791","alpha-carboxysome major shell protein CsoS1"],["NCBIfam%3ANF049993","beta-carboxysome assembly chaperone CcmS"],["NCBIfam%3ANF053792","beta-carboxysome assembly protein CcmO"],["NCBIfam%3ANF053796","beta-carboxysome protein CcmP"],["NCBIfam%3ANF053793","beta-carboxysome scaffolding protein CcmN"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":5,"nb":10,"a":[["metabolism/dimethyl_sulfoxide_respiration.html","dimethyl sulfoxide respiration"],["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/electron_transfer.html","Electron transfer"]],"b":[["Pfam%3APF27445","Adaptation to cold protein A"],["Pfam%3APF27450","AtcB C-terminal domain"],["Pfam%3APF27486","AtcB N-terminal domain"],["Pfam%3APF02464","CinA C-terminal domain"],["Pfam%3APF13657","HipA N-terminal domain"],["Pfam%3APF01934","Ribonuclease HepT-like"]]},{"id":"GO:0009274","l":"peptidoglycan-based cell wall","na":5,"nb":8,"a":[["morphology/cell_shape.html","cell shape"],["morphology/cell_width.html","cell width"],["morphology/gram_stain.html","gram stain"],["morphology/pleomorphic_shaped.html","pleomorphic shaped"],["morphology/sphere_shaped.html","sphere shaped"]],"b":[["GO%3A0009276","Gram-negative-bacterium-type cell wall"],["GO%3A0009275","Gram-positive-bacterium-type cell wall"],["GO%3A0009274","peptidoglycan-based cell wall"],["NCBIfam%3ANF007061","bifunctional glycosyl transferase/transpeptidase"],["NCBIfam%3ATIGR03656","heme uptake protein IsdC"],["NCBIfam%3ATIGR02070","monofunctional biosynthetic peptidoglycan transglycosylase"]]},{"id":"InterPro:IPR001765","l":"","na":6,"nb":5,"a":[["metabolism/carbon_fixation.html","carbon fixation"],["morphology/carboxysome.html","carboxysome"],["physiology/autotrophic.html","autotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]],"b":[["Pfam%3APF00484","Carbonic anhydrase"],["PANTHER%3APTHR11002","CARBONIC ANHYDRASE"],["PANTHER%3APTHR43175","CARBONIC ANHYDRASE"],["PROSITE%3APS00704","Prokaryotic-type carbonic anhydrases signature 1"],["PROSITE%3APS00705","Prokaryotic-type carbonic anhydrases signature 2"]]},{"id":"NCBITaxon:224308","l":"Bacillus subtilis (strain 168)","na":4,"nb":11310,"a":[["metabolism/proteolysis.html","proteolysis"],["morphology/spore_forming.html","spore forming"],["morphology/spore_shaped.html","spore shaped"],["morphology/sporulation.html","sporulation"]],"b":[["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.10.3.-","With oxygen as acceptor"],["EC%3A1.13.12.-","With incorporation of one atom of oxygen (internal monooxygenases or internal mixed function oxidases)"],["EC%3A1.14.19.-","With oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water"],["EC%3A1.17.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.21.98.-","With other, known acceptors"]]},{"id":"CHEBI:15377","l":"water","na":4,"nb":9376,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["physiology/catalase_activity.html","catalase activity"],["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["EC%3A1.1.1.115","ribose 1-dehydrogenase (NADP(+))"],["EC%3A1.1.1.132","GDP-mannose 6-dehydrogenase"],["EC%3A1.1.1.136","UDP-N-acetylglucosamine 6-dehydrogenase"],["EC%3A1.1.1.186","dTDP-galactose 6-dehydrogenase"],["EC%3A1.1.1.192","long-chain-alcohol dehydrogenase"],["EC%3A1.1.1.205","IMP dehydrogenase"]]},{"id":"GO:0006412","l":"translation","na":4,"nb":455,"a":[["environment/mesophilic.html","mesophilic"],["genomics/codon_usage_bias.html","codon usage bias"],["physiology/cold_shock_response.html","cold shock response"],["physiology/dormancy.html","dormancy"]],"b":[["GO%3A0002181","cytoplasmic translation"],["GO%3A0032543","mitochondrial translation"],["GO%3A0032544","plastid translation"],["GO%3A0140241","translation at synapse"],["GO%3A0006412","translation"],["Reactome%3AR-HSA-72766","Translation"]]},{"id":"CHEBI:30089","l":"acetate","na":4,"nb":302,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["EC%3A1.1.1.318","eugenol synthase"],["EC%3A1.1.1.319","isoeugenol synthase"],["EC%3A1.13.11.50","acetylacetone-cleaving enzyme"],["EC%3A1.13.12.4","lactate 2-monooxygenase"],["EC%3A1.14.13.54","ketosteroid monooxygenase"],["EC%3A1.14.14.19","steroid 17alpha-monooxygenase"]]},{"id":"GO:0009252","l":"peptidoglycan biosynthetic process","na":4,"nb":90,"a":[["morphology/bacillus_shaped.html","bacillus shaped"],["morphology/cell_shape.html","cell shape"],["morphology/coccobacillus_shaped.html","coccobacillus shaped"],["morphology/rod_shaped.html","rod shaped"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["GO%3A0009252","peptidoglycan biosynthetic process"],["GO%3A0018104","peptidoglycan-protein cross-linking"],["NCBIfam%3ATIGR00492","alanine racemase"],["NCBIfam%3ANF007061","bifunctional glycosyl transferase/transpeptidase"],["NCBIfam%3ANF006986","bifunctional UDP-N-acetylglucosamine diphosphorylase/glucosamine-1-phosphate N-acetyltransferase GlmU"]]},{"id":"GO:0051301","l":"cell division","na":4,"nb":86,"a":[["morphology/sarcina_arrangement.html","sarcina arrangement"],["morphology/staphylococcus_arrangement.html","staphylococcus arrangement"],["morphology/streptococcus_arrangement.html","streptococcus arrangement"],["morphology/tetrad_arrangement.html","tetrad arrangement"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["ComplexPortal%3ACPX-5782","Tol-Pal cell envelope complex"],["GO%3A0090510","anticlinal cell division"],["GO%3A0008356","asymmetric cell division"],["GO%3A0007114","cell budding"],["GO%3A0051301","cell division"]]},{"id":"GO:0042597","l":"periplasmic space","na":4,"nb":76,"a":[["morphology/axially_filamented.html","axially filamented"],["morphology/gram_negative.html","gram negative"],["physiology/methylotrophic.html","methylotrophic"],["physiology/natural_competence.html","natural competence"]],"b":[["ComplexPortal%3ACPX-3447","NapAB nitrate reductase complex"],["ComplexPortal%3ACPX-4281","PaoABC periplasmic aldehyde oxidoreductase"],["GO%3A0030287","cell wall-bounded periplasmic space"],["GO%3A0030288","outer membrane-bounded periplasmic space"],["GO%3A0042597","periplasmic space"],["GO%3A0036240","septal periplasm"]]},{"id":"GO:0030001","l":"metal ion transport","na":4,"nb":66,"a":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/metal_tolerant.html","metal tolerant"]],"b":[["GO%3A0015690","aluminum cation transport"],["GO%3A0006816","calcium ion transport"],["GO%3A0015692","lead ion transport"],["GO%3A0010351","lithium ion transport"],["GO%3A0015693","magnesium ion transport"],["GO%3A0030001","metal ion transport"]]},{"id":"GO:0009523","l":"photosystem II","na":4,"nb":59,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["GO%3A0030095","chloroplast photosystem II"],["GO%3A0009523","photosystem II"],["GO%3A0030096","plasma membrane-derived thylakoid photosystem II"],["NCBIfam%3ATIGR01332","cytochrome b559 subunit alpha"],["NCBIfam%3ATIGR01333","cytochrome b559 subunit beta"],["NCBIfam%3ANF012505","Lumenal portion of Cytochrome b559, alpha (gene psbE) subunit"]]},{"id":"CHEBI:17245","l":"carbon monoxide","na":4,"nb":31,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["physiology/carboxydotrophic.html","carboxydotrophic"],["physiology/oxidase_activity.html","oxidase activity"]],"b":[["EC%3A1.13.11.24","quercetin 2,3-dioxygenase"],["EC%3A1.13.11.47","3-hydroxy-4-oxoquinoline 2,4-dioxygenase"],["EC%3A1.13.11.48","3-hydroxy-2-methylquinolin-4-one 2,4-dioxygenase"],["EC%3A1.13.11.53","acireductone dioxygenase (Ni(2+)-requiring)"],["EC%3A1.14.14.18","heme oxygenase (biliverdin-producing)"],["EC%3A1.14.15.20","heme oxygenase (biliverdin-producing, ferredoxin)"]]},{"id":"NCBITaxon:171101","l":"Streptococcus pneumoniae (strain ATCC BAA-255 / R6)","na":4,"nb":31,"a":[["morphology/ellipsoidal.html","ellipsoidal"],["morphology/oval_shaped.html","oval shaped"],["morphology/ovoid_shaped.html","ovoid shaped"],["physiology/natural_competence.html","natural competence"]],"b":[["Pfam%3APF03590","Aspartate-ammonia ligase"],["Pfam%3APF25935","LcnD-like, barrel-sandwich hybrid domain"],["Pfam%3APF24568","Peptidoglycan hydrolase PcsB, coiled-coil domain"],["Pfam%3APF05257","CHAP domain"],["Pfam%3APF27342","ComB N-terminal domain"],["Pfam%3APF26697","Competence protein ComGC, C-terminal domain"]]},{"id":"CHEBI:26833","l":"sulfur atom","na":4,"nb":24,"a":[["metabolism/disproportionation.html","Disproportionation"],["morphology/sulfur_globule.html","sulfur globule"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/photolithotrophic.html","photolithotrophic"]],"b":[["EC%3A1.12.98.4","sulfhydrogenase"],["EC%3A1.13.11.55","sulfur oxygenase/reductase"],["EC%3A1.8.1.18","NAD(P)H sulfur oxidoreductase (CoA-dependent)"],["EC%3A1.8.1.19","sulfide dehydrogenase"],["EC%3A1.8.2.3","sulfide-cytochrome-c reductase (flavocytochrome c)"],["EC%3A1.8.2.7","thiocyanate desulfurase"]]},{"id":"GO:0009372","l":"quorum sensing","na":4,"nb":21,"a":[["ecology/plant_pathogen.html","plant pathogen"],["morphology/green_pigmented.html","green pigmented"],["morphology/swarming_motility.html","swarming motility"],["physiology/quorum_sensing.html","quorum sensing"]],"b":[["ComplexPortal%3ACPX-4315","Autoinducer-2 ABC transporter complex"],["GO%3A0120218","host interaction involved in quorum sensing"],["GO%3A0009372","quorum sensing"],["NCBIfam%3ANF052393","acyl-homoserine-lactone synthase"],["NCBIfam%3ANF008187","autoinducer-2 kinase"],["NCBIfam%3ANF010444","autoinducer-binding transcriptional regulator TraR"]]},{"id":"GO:0009432","l":"SOS response","na":4,"nb":14,"a":[["genomics/prophage.html","prophage"],["morphology/cell_length_large.html","cell length large"],["morphology/filament_shaped.html","filament shaped"],["physiology/sos_response.html","SOS response"]],"b":[["ComplexPortal%3ACPX-5544","DNA polymerase V mutasome complex"],["ComplexPortal%3ACPX-6026","YafNO toxin-antitoxin complex"],["GO%3A0009432","SOS response"],["NCBIfam%3ATIGR01389","DNA helicase RecQ"],["NCBIfam%3ATIGR00611","DNA replication/repair protein RecF"],["NCBIfam%3ANF041583","SOS-induced cell division inhibitor SulA"]]},{"id":"CHEBI:25728","l":"","na":11,"nb":4,"a":[["environment/euryhaline.html","euryhaline"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/halotolerant.html","halotolerant"],["environment/nacl_optimum.html","NaCl optimum"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.A.22","The Large Conductance Mechanosensitive Ion Channel (MscL) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.A.23","The Small Conductance Mechanosensitive Ion Channel (MscS) Family"]]},{"id":"GO:0009326","l":"formate dehydrogenase complex","na":4,"nb":9,"a":[["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/syntrophy.html","Syntrophy"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"],["physiology/methylotrophic.html","methylotrophic"]],"b":[["ComplexPortal%3ACPX-1975","Formate dehydrogenase N complex"],["ComplexPortal%3ACPX-6029","Formate dehydrogenase Z complex"],["ComplexPortal%3ACPX-317","Formate hydrogenlyase-H/Hydrogenase-3 complex"],["ComplexPortal%3ACPX-6028","Formate hydrogenlyase-H/Hydrogenase-4 complex"],["GO%3A0009326","formate dehydrogenase complex"],["NCBIfam%3ATIGR00129","formate dehydrogenase accessory sulfurtransferase FdhD"]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":4,"nb":9,"a":[["morphology/diplococcus_shaped.html","diplococcus shaped"],["morphology/non_motile.html","non motile"],["morphology/sphere_shaped.html","sphere shaped"],["physiology/natural_competence.html","natural competence"]],"b":[["Pfam%3APF19567","Capsular polysaccharide synthesis, CpsB/CapC"],["Pfam%3APF07501","G5 domain"],["Pfam%3APF13551","Winged helix-turn helix"],["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF03047","COMC family"],["Pfam%3APF04556","DpnII restriction endonuclease"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":9,"nb":4,"a":[["environment/euryhaline.html","euryhaline"],["genomics/dartg_system.html","DarTG system"],["genomics/ddmde_system.html","DdmDE system"],["genomics/genomic_island.html","genomic island"],["genomics/lamassu_system.html","Lamassu system"],["genomics/nixi_system.html","NixI system"]],"b":[["Pfam%3APF01375","Heat-labile enterotoxin alpha chain"],["Pfam%3APF09101","Exotoxin A binding"],["Pfam%3APF09009","Exotoxin A catalytic"],["Pfam%3APF09102","Exotoxin A, targeting"]]},{"id":"GO:0006119","l":"oxidative phosphorylation","na":4,"nb":8,"a":[["environment/ph_delta.html","pH delta"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["physiology/organoheterotrophic.html","organoheterotrophic"],["physiology/persister_cell_formation.html","persister cell formation"]],"b":[["ComplexPortal%3ACPX-268","Cytochrome bd-I ubiquinol oxidase complex"],["ComplexPortal%3ACPX-269","Cytochrome bd-II ubiquinol oxidase complex"],["GO%3A0006119","oxidative phosphorylation"],["PANTHER%3APTHR12448","ATP SYNTHASE EPSILON CHAIN, MITOCHONDRIAL"],["PANTHER%3APTHR13080","ATP SYNTHASE F CHAIN, MITOCHONDRIAL-RELATED"],["PANTHER%3APTHR43141","CYTOCHROME BD2 SUBUNIT II"]]},{"id":"GO:0030964","l":"NADH dehydrogenase complex","na":4,"nb":8,"a":[["metabolism/electron_transfer.html","Electron transfer"],["metabolism/respiration.html","respiration"],["physiology/organoheterotrophic.html","organoheterotrophic"],["physiology/organotrophic.html","organotrophic"]],"b":[["GO%3A0030964","NADH dehydrogenase complex"],["GO%3A0071685","NADH dehydrogenase complex (plastoquinone)"],["GO%3A0045271","respiratory chain complex I"],["NCBIfam%3ATIGR00403","NAD(P)H-quinone oxidoreductase subunit I"],["NCBIfam%3ATIGR01957","NADH-quinone oxidoreductase subunit B"],["NCBIfam%3ANF008728","NADH-quinone oxidoreductase subunit C/D"]]},{"id":"InterPro:IPR000158","l":"","na":6,"nb":4,"a":[["morphology/bacillus_shaped.html","bacillus shaped"],["morphology/cell_length_large.html","cell length large"],["morphology/cell_shape.html","cell shape"],["morphology/rod_shaped.html","rod shaped"],["morphology/sarcina_arrangement.html","sarcina arrangement"],["morphology/staphylococcus_arrangement.html","staphylococcus arrangement"]],"b":[["Pfam%3APF12327","FtsZ family, C-terminal domain"],["HAMAP%3AMF_00909","Cell division protein FtsZ [ftsZ]"],["PROSITE%3APS01134","FtsZ protein signature 1"],["PROSITE%3APS01135","FtsZ protein signature 2"]]},{"id":"NCBITaxon:1085","l":"Rhodospirillum rubrum","na":6,"nb":4,"a":[["metabolism/phototrophy.html","phototrophy"],["morphology/spiral_shaped.html","spiral shaped"],["physiology/carboxydotrophic.html","carboxydotrophic"],["physiology/photoheterotrophic.html","photoheterotrophic"],["physiology/photoorganoheterotrophic.html","photoorganoheterotrophic"],["physiology/phototrophic.html","phototrophic"]],"b":[["Pfam%3APF00556","Antenna complex alpha/beta subunit"],["Pfam%3APF09527","Putative F0F1-ATPase subunit Ca2+/Mg2+ transporter"],["Pfam%3APF07357","Dinitrogenase reductase ADP-ribosyltransferase (DRAT)"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"]]},{"id":"NCBITaxon:194439","l":"Chlorobaculum tepidum TLS","na":4,"nb":6,"a":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"],["physiology/photoautotrophic.html","photoautotrophic"],["physiology/photolithoautotrophic.html","photolithoautotrophic"],["physiology/photolithotrophic.html","photolithotrophic"]],"b":[["Pfam%3APF02327","Bacteriochlorophyll A protein"],["Pfam%3APF27499","CsmB chlorosome envelope protein"],["Pfam%3APF28537","Probable trigger factor, FKBP-like domain"],["Pfam%3APF02043","Bacteriochlorophyll C binding protein"],["Pfam%3APF11098","Chlorosome envelope protein C"],["Pfam%3APF10643","Photosystem P840 reaction-centre cytochrome c-551"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":4,"nb":6,"a":[["ecology/mutualism.html","mutualism"],["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["ecology/symbiosis.html","symbiosis"],["genomics/hna_system.html","Hna system"]],"b":[["Pfam%3APF01177","Asp/Glu/Hydantoin racemase"],["Pfam%3APF11339","Protein of unknown function (DUF3141)"],["PROSITE%3APS01303","BCCT family of transporters signature"],["PROSITE%3APS00665","Dihydrodipicolinate synthase signature 1"],["TED%3AAF-A0A2J0YSD4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J0YSD4-F1-model_v4_TED01"],["TED%3AAF-A0A843ZNG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843ZNG8-F1-model_v4_TED01"]]},{"id":"CHEBI:24431","l":"","na":5,"nb":4,"a":[["metabolism/does_not_use_as_nitrogen_source.html","does not use as nitrogen source"],["metabolism/does_not_use_as_sulfur_source.html","does not use as sulfur source"],["metabolism/uses_as_nitrogen_source.html","uses as nitrogen source"],["metabolism/uses_as_sulfur_source.html","uses as sulfur source"],["upper/chemical_entity.html","chemical entity"]],"b":[["EC%3A1.13.12.16","nitronate monooxygenase"],["EC%3A1.17.3.1","pteridine oxidase"],["RHEA%3A12777","2-amino-4-hydroxypteridine + O2 = 2-amino-4,7-dihydroxypteridine + chemical entity"],["RHEA%3A28767","ethylnitronate + O2 = chemical entity + acetaldehyde + nitrite + H(+)"]]},{"id":"GO:0043684","l":"type IV secretion system complex","na":4,"nb":5,"a":[["ecology/animal_pathogen.html","animal pathogen"],["ecology/human_pathogen.html","human pathogen"],["genomics/genomic_island.html","genomic island"],["genomics/mobile_genetic_element.html","mobile genetic element"]],"b":[["GO%3A0043684","type IV secretion system complex"],["NCBIfam%3ANF049884","Dot/Icm T4SS effector Ceg23"],["NCBIfam%3ATIGR02788","P-type DNA transfer ATPase VirB11"],["NCBIfam%3ATIGR02791","P-type DNA transfer protein VirB5"],["NCBIfam%3ANF047983","T4SS effector phosphatidylinositol 3-Kinase RisK1"]]},{"id":"METPO:1000630","l":"biological process","na":4,"nb":5,"a":[["metabolism/metabolism.html","metabolism"],["metabolism/nitrification.html","nitrification"],["upper/biological_process.html","biological process"],["upper/material_entity.html","material entity"]],"b":[["METPO%3A1000630","biological process"],["METPO%3A1005038","denitrification"],["METPO%3A1000060","metabolism"],["METPO%3A1005001","nitrification"],["METPO%3A1005039","nitrogen fixation"]]},{"id":"METPO:2000303","l":"does not show activity of","na":5,"nb":4,"a":[["metabolism/does_not_show_activity_of.html","does not show activity of"],["other/catalase_negative.html","catalase negative"],["other/coagulase_negative.html","coagulase negative"],["other/oxidase_negative.html","oxidase negative"],["other/urease_negative.html","urease negative"]],"b":[["METPO%3A1007084","catalase negative"],["METPO%3A1007091","coagulase negative"],["METPO%3A1007086","oxidase negative"],["METPO%3A1007088","urease negative"]]},{"id":"InterPro:IPR033875","l":"Flagellum site-determining protein FlhG","na":4,"nb":4,"a":[["morphology/amphitrichous.html","amphitrichous"],["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/lophotrichous.html","lophotrichous"],["morphology/monotrichous.html","monotrichous"]],"b":[["GO%3A0044781","bacterial-type flagellum organization"],["CDD%3Acd02038","FlhG-like"],["InterPro%3AIPR033875","Flagellum site-determining protein FlhG"],["Pfam%3APF10609","NUBPL iron-transfer P-loop NTPase"]]},{"id":"GO:0005737","l":"cytoplasm","na":3,"nb":2018,"a":[["environment/ph_range_mid2.html","pH range mid2"],["environment/ph_range_very_low.html","pH range very low"],["morphology/spiral_shaped.html","spiral shaped"]],"b":[["ComplexPortal%3ACPX-3921","2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["ComplexPortal%3ACPX-1599","40S cytosolic small ribosomal subunit"],["ComplexPortal%3ACPX-5223","40S cytosolic small ribosomal subunit"],["ComplexPortal%3ACPX-5261","40S cytosolic small ribosomal subunit"],["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"]]},{"id":"CHEBI:29034","l":"iron(3+)","na":3,"nb":376,"a":[["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/iron_oxidation.html","iron oxidation"],["metabolism/photoferrotrophy.html","photoferrotrophy"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29034","requires iron(3+)"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.11","glucoside 3-dehydrogenase (cytochrome c)"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.2.3","L-lactate dehydrogenase (cytochrome)"],["EC%3A1.1.2.4","D-lactate dehydrogenase (cytochrome)"]]},{"id":"CHEBI:15351","l":"","na":3,"nb":169,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["physiology/autotrophic.html","autotrophic"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15351","requires acetyl-CoA"],["ARO%3A3000341","AAC(2')"],["ARO%3A3007393","AAC(2')-I"],["ARO%3A3002523","AAC(2')-Ia"],["ARO%3A3002524","AAC(2')-Ib"],["ARO%3A3002525","AAC(2')-Ic"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa (strain ATCC 15692 / DSM 22644 / CIP 104116 / JCM 14847 / LMG 12228 / 1C / PRS 101 / PAO1)","na":3,"nb":162,"a":[["ecology/biofilm_formation.html","biofilm formation"],["morphology/twitching_motility.html","twitching motility"],["morphology/type_iv_pilus.html","type IV pilus"]],"b":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF06750","Bacterial Peptidase A24 N-terminal domain"],["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF28403","Aconitase X second domain"],["Pfam%3APF28406","Aconitase X third domain"],["Pfam%3APF04412","Aconitase X first domain"]]},{"id":"GO:0019867","l":"outer membrane","na":3,"nb":143,"a":[["morphology/gram_negative.html","gram negative"],["morphology/gram_stain.html","gram stain"],["morphology/triangular_shaped.html","triangular shaped"]],"b":[["GO%3A0009279","cell outer membrane"],["GO%3A0031968","organelle outer membrane"],["GO%3A0043594","outer endospore membrane"],["GO%3A0019867","outer membrane"],["NCBIfam%3ANF047447","adhesin OmpL37 family surface protein"],["NCBIfam%3ANF007285","AIDA-I family autotransporter adhesin YfaL/EhaC"]]},{"id":"GO:0015948","l":"methanogenesis","na":3,"nb":82,"a":[["metabolism/acetoclastic_methanogenesis.html","acetoclastic methanogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/methyl_based_methanogenesis.html","methyl-based methanogenesis"]],"b":[["GO%3A0019385","methanogenesis, from acetate"],["GO%3A0019386","methanogenesis, from carbon dioxide"],["GO%3A0019387","methanogenesis, from methanol"],["GO%3A0015948","methanogenesis"],["proteintraitsmech%3ASEED_SUBSYSTEM_Methanogenesis","Methanogenesis"],["NCBIfam%3ATIGR03957","5,10-methenyltetrahydromethanopterin hydrogenase cofactor biosynthesis protein HmdB"]]},{"id":"CHEBI:29035","l":"manganese(2+)","na":3,"nb":44,"a":[["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/lignin_degradation.html","lignin degradation"],["metabolism/manganese_oxidation.html","manganese oxidation"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29035","requires manganese(2+)"],["EC%3A1.11.1.13","manganese peroxidase"],["EC%3A1.11.1.16","versatile peroxidase"],["EC%3A1.16.3.3","manganese oxidase"],["EC%3A7.2.2.22","P-type Mn(2+) transporter"],["EC%3A7.2.2.5","ABC-type Mn(2+) transporter"]]},{"id":"GO:0004129","l":"cytochrome-c oxidase activity","na":3,"nb":41,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["other/oxidase_negative.html","oxidase negative"],["physiology/oxidase_activity.html","oxidase activity"]],"b":[["EC%3A7.1.1.9","cytochrome-c oxidase"],["METPO%3A1007086","oxidase negative"],["METPO%3A1007085","oxidase positive"],["RHEA%3A11436","4 Fe(II)-[cytochrome c] + O2 + 8 H(+)(in) = 4 Fe(III)-[cytochrome c] + 2 H2O + 4 H(+)(out)"],["ComplexPortal%3ACPX-1721","Mitochondrial respiratory chain complex IV, COX5A variant"],["ComplexPortal%3ACPX-1722","Mitochondrial respiratory chain complex IV, COX5B variant"]]},{"id":"GO:0009399","l":"nitrogen fixation","na":3,"nb":36,"a":[["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["metabolism/nitrogen_fixation.html","nitrogen fixation"],["morphology/heterocyst.html","heterocyst"]],"b":[["GO%3A0009399","nitrogen fixation"],["proteintraitsmech%3ASEED_SUBSYSTEM_Nitrogen_fixation","Nitrogen fixation"],["NCBIfam%3ATIGR02662","ADP-ribosyl-[dinitrogen reductase] hydrolase"],["NCBIfam%3ATIGR02931","Fe-only nitrogenase subunit beta"],["NCBIfam%3ATIGR02929","Fe-only nitrogenase subunit delta"],["NCBIfam%3ATIGR02000","Fe-S cluster assembly protein NifU"]]},{"id":"GO:0008422","l":"beta-glucosidase activity","na":3,"nb":31,"a":[["metabolism/biopolymer_degradation.html","biopolymer degradation"],["metabolism/cellulolysis.html","cellulolysis"],["physiology/beta_glucosidase_activity.html","beta-glucosidase activity"]],"b":[["EC%3A3.2.1.21","beta-glucosidase"],["RHEA%3A69655","quercetin 3-O-beta-D-glucoside + H2O = quercetin + beta-D-glucose"],["RHEA%3A69647","quercetin 4'-O-beta-D-glucoside + H2O = quercetin + beta-D-glucose"],["GO%3A0080081","4-methylumbelliferyl-beta-D-glucopyranoside beta-glucosidase activity"],["GO%3A0008706","6-phospho-beta-glucosidase activity"],["GO%3A0051993","abscisic acid glucose ester beta-glucosidase activity"]]},{"id":"GO:0022611","l":"dormancy process","na":3,"nb":19,"a":[["physiology/dormancy.html","dormancy"],["physiology/persister_cell_formation.html","persister cell formation"],["physiology/viable_but_nonculturable_state.html","viable but nonculturable state"]],"b":[["GO%3A0097439","acquisition of desiccation tolerance"],["GO%3A0097207","bud dormancy process"],["GO%3A0085014","dormancy entry of symbiont in host"],["GO%3A0085016","dormancy exit of symbiont in host"],["GO%3A0085015","dormancy maintenance of symbiont in host"],["GO%3A0022611","dormancy process"]]},{"id":"CHEBI:17997","l":"dinitrogen","na":3,"nb":18,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["EC%3A1.18.6.1","nitrogenase"],["EC%3A1.18.6.2","vanadium-dependent nitrogenase"],["EC%3A1.19.6.1","nitrogenase (flavodoxin)"],["EC%3A1.7.2.4","nitrous-oxide reductase"],["EC%3A1.7.2.8","hydrazine dehydrogenase"],["RHEA%3A79967","3-diazoavenalumate + NADH + H(+) = avenalumate + N2 + NAD(+)"]]},{"id":"CHEBI:17579","l":"β-carotene","na":3,"nb":16,"a":[["metabolism/proteorhodopsin_phototrophy.html","proteorhodopsin phototrophy"],["morphology/orange_pigmented.html","orange pigmented"],["morphology/yellow_pigmented.html","yellow pigmented"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17579","requires β-carotene"],["EC%3A1.13.11.63","beta-carotene 15,15'-dioxygenase"],["EC%3A1.13.11.71","carotenoid-9',10'-cleaving dioxygenase"],["EC%3A1.14.15.24","beta-carotene 3-hydroxylase"],["EC%3A1.14.99.63","beta-carotene 4-ketolase"],["EC%3A5.2.1.14","beta-carotene isomerase"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":3,"nb":16,"a":[["ecology/rhizosphere_association.html","rhizosphere association"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/psychrotolerant.html","psychrotolerant"]],"b":[["Pfam%3APF16822","SGNH hydrolase-like domain, acetyltransferase AlgX"],["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"],["Pfam%3APF11182","Alginate O-acetyl transferase AlgF"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF27129","Functional amyloid protein FapB/FapC family"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]]},{"id":"CHEBI:16183","l":"methane","na":3,"nb":13,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/methanogenesis.html","Methanogenesis"],["physiology/methanotrophic.html","methanotrophic"]],"b":[["EC%3A1.14.13.25","methane monooxygenase (soluble)"],["EC%3A1.14.18.3","methane monooxygenase (particulate)"],["EC%3A2.8.4.1","coenzyme-B sulfoethylthiotransferase"],["EC%3A4.7.1.1","alpha-D-ribose 1-methylphosphonate 5-phosphate C-P-lyase"],["RHEA%3A34707","alpha-D-ribose 1-methylphosphonate 5-phosphate + AH2 + S-adenosyl-L-methionine = alpha-D-ribose 1,2-cyclic phosphate 5-phosphate + methane + 5'-deoxyadenosine + L-methionine + A + H(+)"],["RHEA%3A12532","coenzyme B + methyl-coenzyme M = methane + coenzyme M-coenzyme B heterodisulfide"]]},{"id":"GO:0060187","l":"cell pole","na":3,"nb":10,"a":[["morphology/amphitrichous.html","amphitrichous"],["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/lophotrichous.html","lophotrichous"]],"b":[["GO%3A0044225","apical pole of neuron"],["GO%3A0044226","basal pole of neuron"],["GO%3A0090712","basal pole of outer hair cell"],["GO%3A0060187","cell pole"],["GO%3A0051286","cell tip"],["GO%3A1990902","new cell pole"]]},{"id":"GO:0009325","l":"nitrate reductase complex","na":3,"nb":9,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]],"b":[["ComplexPortal%3ACPX-3447","NapAB nitrate reductase complex"],["ComplexPortal%3ACPX-5581","Nitrate reductase Z complex"],["GO%3A0044799","NarGHI complex"],["GO%3A0009325","nitrate reductase complex"],["NCBIfam%3ATIGR01580","nitrate reductase subunit alpha"],["NCBIfam%3ATIGR01660","nitrate reductase subunit beta"]]},{"id":"InterPro:IPR033966","l":"","na":9,"nb":3,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["physiology/autotrophic.html","autotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"]],"b":[["SFLD%3ASFLDS00014","RuBisCO"],["PANTHER%3APTHR42704","RIBULOSE BISPHOSPHATE CARBOXYLASE"],["PROSITE%3APS00157","Ribulose bisphosphate carboxylase large chain active site"]]},{"id":"NCBITaxon:210","l":"Helicobacter pylori","na":3,"nb":9,"a":[["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/helical_shaped.html","helical shaped"],["morphology/lophotrichous.html","lophotrichous"]],"b":[["Pfam%3APF18025","Alpha-(1,3)-fucosyltransferase FucT N-terminal domain"],["Pfam%3APF18971","CagA protein"],["Pfam%3APF03507","CagA exotoxin phosphopeptide substrate mimic region"],["Pfam%3APF02691","Vacuolating cyotoxin beta-helical domain"],["TED%3AAF-A0A2T6UWI4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T6UWI4-F1-model_v4_TED01"],["TED%3AAF-A0A1Q9JB12-F1-model_v4_TED01","TED novel fold AF-A0A1Q9JB12-F1-model_v4_TED01"]]},{"id":"GO:0019491","l":"ectoine biosynthetic process","na":3,"nb":8,"a":[["environment/euryhaline.html","euryhaline"],["environment/halotolerant.html","halotolerant"],["environment/slightly_halophilic.html","slightly halophilic"]],"b":[["GO%3A0019491","ectoine biosynthetic process"],["proteintraitsmech%3ASEED_SUBSYSTEM_Ectoine_synthesis","Ectoine synthesis"],["NCBIfam%3ATIGR00709","diaminobutyrate--2-oxoglutarate transaminase family protein"],["NCBIfam%3ATIGR02407","diaminobutyrate--2-oxoglutarate transaminase"],["NCBIfam%3ATIGR02406","diaminobutyrate acetyltransferase"],["NCBIfam%3ANF009806","ectoine synthase"]]},{"id":"GO:0031456","l":"glycine betaine biosynthetic process","na":3,"nb":8,"a":[["environment/euryhaline.html","euryhaline"],["environment/halotolerant.html","halotolerant"],["environment/nacl_range_low.html","NaCl range low"]],"b":[["GO%3A0031456","glycine betaine biosynthetic process"],["NCBIfam%3ANF009725","betaine-aldehyde dehydrogenase"],["NCBIfam%3ATIGR01804","betaine-aldehyde dehydrogenase"],["NCBIfam%3ATIGR03384","choline-binding transcriptional repressor BetI"],["NCBIfam%3ANF053866","choline dehydrogenase"],["NCBIfam%3ATIGR01810","choline dehydrogenase"]]},{"id":"GO:0006636","l":"unsaturated fatty acid biosynthetic process","na":3,"nb":7,"a":[["environment/pressure_range.html","pressure range"],["environment/temperature_delta_high.html","temperature delta high"],["environment/thermotolerant.html","thermotolerant"]],"b":[["GO%3A2001303","lipoxin A4 biosynthetic process"],["GO%3A2001306","lipoxin B4 biosynthetic process"],["GO%3A2001280","positive regulation of unsaturated fatty acid biosynthetic process"],["GO%3A0046457","prostanoid biosynthetic process"],["GO%3A1902609","(R)-2-hydroxy-alpha-linolenic acid biosynthetic process"],["GO%3A2001279","regulation of unsaturated fatty acid biosynthetic process"]]},{"id":"NCBITaxon:1314","l":"Streptococcus pyogenes","na":3,"nb":7,"a":[["environment/aerotolerant.html","aerotolerant"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"],["morphology/streptococcus_arrangement.html","streptococcus arrangement"]],"b":[["Pfam%3APF13585","CHU_C Type IX secretion signal domain"],["Pfam%3APF24547","Domain of unknown function (DUF7601)"],["Pfam%3APF08998","Bacterial epsilon antitoxin"],["Pfam%3APF06280","Fn3-like domain"],["Pfam%3APF02274","Arginine deiminase"],["Pfam%3APF13734","Spi protease inhibitor"]]},{"id":"GO:0070224","l":"sulfide:quinone oxidoreductase activity","na":3,"nb":6,"a":[["metabolism/sulfur_oxidation.html","sulfur oxidation"],["morphology/sulfur_globule.html","sulfur globule"],["physiology/lithoheterotrophic.html","lithoheterotrophic"]],"b":[["EC%3A1.8.5.4","bacterial sulfide:quinone reductase"],["RHEA%3A30239","n a quinone + n hydrogen sulfide + n H(+) = polysulfur(n-2) + n a quinol"],["GO%3A0070224","sulfide:quinone oxidoreductase activity"],["MCSA%3A320","sulfide:quinone oxidoreductase"],["proteintraitsmech%3ABIOLIP_PS9","PS9-binding site"],["proteintraitsmech%3ABIOLIP_S3H","S3H-binding site"]]},{"id":"METPO:1000800","l":"respiration","na":6,"nb":3,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/fermentation.html","Fermentation"],["metabolism/respiration.html","respiration"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"]],"b":[["METPO%3A1000801","Aerobic respiration"],["METPO%3A1000802","Anaerobic respiration"],["METPO%3A1000800","respiration"]]},{"id":"NCBITaxon:381666","l":"Cupriavidus necator H16","na":6,"nb":3,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"],["physiology/autotrophic.html","autotrophic"],["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["Pfam%3APF13473","Cupredoxin-like domain"],["Pfam%3APF10605","3HB-oligomer hydrolase (3HBOH)"],["Pfam%3APF21783","YNCE-like beta-propeller"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":3,"nb":6,"a":[["environment/anaerobic.html","anaerobic"],["environment/strictly_anaerobic.html","strictly anaerobic"],["metabolism/fumarate_respiration.html","fumarate respiration"]],"b":[["Pfam%3APF16376","N-terminal domain of fragilysin"],["TED%3AAF-A0A412XR06-F1-model_v4_TED03","TED novel fold AF-A0A412XR06-F1-model_v4_TED03"],["TED%3AAF-A0A4V1EUI2-F1-model_v4_TED02","TED novel fold AF-A0A4V1EUI2-F1-model_v4_TED02"],["TED%3AAF-A0A5C6IXH5-F1-model_v4_TED01","TED novel fold AF-A0A5C6IXH5-F1-model_v4_TED01"],["TED%3AAF-A0A5C6L6G9-F1-model_v4_TED02","TED novel fold AF-A0A5C6L6G9-F1-model_v4_TED02"],["TED%3AAF-A0A642KY52-F1-model_v4_TED01","TED novel fold AF-A0A642KY52-F1-model_v4_TED01"]]},{"id":"UniProt:P27988","l":"","na":3,"nb":6,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"]],"b":[["Pfam%3APF18537","Carbon monoxide dehydrogenase subunit alpha N-terminal domain"],["proteintraitsmech%3AMETALPDB_CU_HEXANUCLEAR","hexanuclear copper site"],["proteintraitsmech%3AMETALPDB_FE_HEXANUCLEAR","hexanuclear iron site"],["proteintraitsmech%3AMETALPDB_NI_HEXANUCLEAR","hexanuclear nickel site"],["proteintraitsmech%3AMETALPDB_ZN_HEXANUCLEAR","hexanuclear zinc site"],["proteintraitsmech%3AMETALPDB_ZN_PENTANUCLEAR","pentanuclear zinc site"]]},{"id":"NCBITaxon:228410","l":"Nitrosomonas europaea ATCC 19718","na":5,"nb":3,"a":[["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["Pfam%3APF02461","Ammonia monooxygenase"],["Pfam%3APF13435","Cytochrome c554 and c-prime"],["TED%3AAF-Q82SR8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q82SR8-F1-model_v4_TED01"]]},{"id":"GO:0008776","l":"acetate kinase activity","na":3,"nb":4,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["EC%3A2.7.2.1","acetate kinase"],["RHEA%3A11352","acetate + ATP = acetyl phosphate + ADP"],["GO%3A0008776","acetate kinase activity"],["MCSA%3A643","acetate kinase"]]},{"id":"GO:0018597","l":"ammonia monooxygenase activity","na":3,"nb":4,"a":[["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["EC%3A1.14.99.39","ammonia monooxygenase"],["RHEA%3A27341","AH2 + NH4(+) + O2 = hydroxylamine + A + H2O + H(+)"],["GO%3A0018597","ammonia monooxygenase activity"],["NCBIfam%3ANF041557","bacterial ammonia monooxygenase, subunit AmoA"]]},{"id":"InterPro:IPR001182","l":"","na":4,"nb":3,"a":[["morphology/fusiform_shaped.html","fusiform shaped"],["morphology/oval_shaped.html","oval shaped"],["morphology/prosthecate.html","prosthecate"],["morphology/tailed_shaped.html","tailed shaped"]],"b":[["PANTHER%3APTHR30474","CELL CYCLE PROTEIN"],["Pfam%3APF01098","Cell cycle protein"],["PROSITE%3APS00428","Cell cycle proteins ftsW / rodA / spoVE signature"]]},{"id":"NCBITaxon:1525","l":"Neomoorella thermoacetica","na":3,"nb":4,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"]],"b":[["Pfam%3APF25461","Selenocysteine-specific elongation factor, beta-barrel domain"],["Pfam%3APF18537","Carbon monoxide dehydrogenase subunit alpha N-terminal domain"],["Pfam%3APF04060","Putative Fe-S cluster"],["Pfam%3APF03599","CO dehydrogenase/acetyl-CoA synthase delta subunit"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":3,"nb":4,"a":[["ecology/mutualism.html","mutualism"],["physiology/bioluminescence.html","bioluminescence"],["physiology/quorum_sensing.html","quorum sensing"]],"b":[["PROSITE%3APS00949","Autoinducer synthase family signature"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"],["PROSITE%3APS00607","cAMP phosphodiesterases class-II signature"],["TED%3AAF-A0A844NWZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A844NWZ1-F1-model_v4_TED02"]]},{"id":"GO:0016689","l":"manganese peroxidase activity","na":3,"nb":3,"a":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/lignin_degradation.html","lignin degradation"],["metabolism/manganese_oxidation.html","manganese oxidation"]],"b":[["EC%3A1.11.1.13","manganese peroxidase"],["RHEA%3A22776","2 Mn(2+) + H2O2 + 2 H(+) = 2 Mn(3+) + 2 H2O"],["GO%3A0016689","manganese peroxidase activity"]]},{"id":"METPO:1000731","l":"nutrient adaptation","na":3,"nb":3,"a":[["physiology/copiotrophic.html","copiotrophic"],["physiology/nutrient_adaptation.html","nutrient adaptation"],["physiology/oligotrophic.html","oligotrophic"]],"b":[["METPO%3A1000642","copiotrophic"],["METPO%3A1000731","nutrient adaptation"],["METPO%3A1000654","oligotrophic"]]},{"id":"METPO:1005010","l":"indole test","na":3,"nb":3,"a":[["other/indole_test.html","indole test"],["other/indole_test_negative.html","indole test negative"],["other/indole_test_positive.html","indole test positive"]],"b":[["METPO%3A1005010","indole test"],["METPO%3A1005012","indole test negative"],["METPO%3A1005011","indole test positive"]]},{"id":"METPO:1005013","l":"methyl red test","na":3,"nb":3,"a":[["other/methyl_red_test.html","methyl red test"],["other/methyl_red_test_negative.html","methyl red test negative"],["other/methyl_red_test_positive.html","methyl red test positive"]],"b":[["METPO%3A1005013","methyl red test"],["METPO%3A1005015","methyl red test negative"],["METPO%3A1005014","methyl red test positive"]]},{"id":"METPO:1005016","l":"Voges-Proskauer test","na":3,"nb":3,"a":[["other/voges_proskauer_test.html","Voges-Proskauer test"],["other/voges_proskauer_test_negative.html","Voges-Proskauer test negative"],["other/voges_proskauer_test_positive.html","Voges-Proskauer test positive"]],"b":[["METPO%3A1005016","Voges-Proskauer test"],["METPO%3A1005018","Voges-Proskauer test negative"],["METPO%3A1005017","Voges-Proskauer test positive"]]},{"id":"METPO:1007089","l":"coagulase activity","na":3,"nb":3,"a":[["other/coagulase_negative.html","coagulase negative"],["other/coagulase_positive.html","coagulase positive"],["physiology/coagulase_activity.html","coagulase activity"]],"b":[["METPO%3A1007089","coagulase activity"],["METPO%3A1007091","coagulase negative"],["METPO%3A1007090","coagulase positive"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":3,"nb":3,"a":[["ecology/commensalism.html","commensalism"],["genomics/nhi_system.html","Nhi system"],["other/coagulase_negative.html","coagulase negative"]],"b":[["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF08130","Type A lantibiotic family"],["Pfam%3APF04738","Lantibiotic dehydratase, N terminus"]]},{"id":"NCBITaxon:2257","l":"Natronomonas pharaonis","na":3,"nb":3,"a":[["environment/alkaphilic.html","alkaliphilic"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/obligately_alkaphilic.html","obligately alkaliphilic"]],"b":[["Pfam%3APF17909","Htr2 transmembrane domain"],["PROSITE%3APS00950","Bacterial rhodopsins signature 1"],["PROSITE%3APS00327","Bacterial rhodopsins retinal binding site"]]},{"id":"NCBITaxon:431944","l":"Magnetospirillum gryphiswaldense MSR-1","na":3,"nb":3,"a":[["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/magnetosome.html","magnetosome"],["physiology/magnetotaxis.html","magnetotaxis"]],"b":[["Pfam%3APF12728","Helix-turn-helix domain"],["Pfam%3APF04011","LemA family"],["Pfam%3APF07219","HemY protein N-terminus"]]},{"id":"UniProt:P10717","l":"","na":3,"nb":3,"a":[["physiology/photoheterotrophic.html","photoheterotrophic"],["physiology/photoorganoheterotrophic.html","photoorganoheterotrophic"],["physiology/phototrophic.html","phototrophic"]],"b":[["proteintraitsmech%3ABIOLIP_07D","07D-binding site"],["proteintraitsmech%3ABIOLIP_08I","08I-binding site"],["proteintraitsmech%3ABIOLIP_RQ0","RQ0-binding site"]]},{"id":"UniProt:Q04507","l":"","na":3,"nb":3,"a":[["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["EC%3A1.14.99.39","ammonia monooxygenase"],["RHEA%3A27341","AH2 + NH4(+) + O2 = hydroxylamine + A + H2O + H(+)"],["Pfam%3APF02461","Ammonia monooxygenase"]]},{"id":"GO:0009058","l":"biosynthetic process","na":2,"nb":733,"a":[["metabolism/metabolism.html","metabolism"],["physiology/heterotrophic.html","heterotrophic"]],"b":[["GO%3A1901852","7,8-didemethyl-8-hydroxy-5-deazariboflavin biosynthetic process"],["GO%3A0008292","acetylcholine biosynthetic process"],["GO%3A0046184","aldehyde biosynthetic process"],["GO%3A0019428","allantoin biosynthetic process"],["GO%3A0009309","amine biosynthetic process"],["GO%3A0008652","amino acid biosynthetic process"]]},{"id":"CHEBI:17499","l":"","na":2,"nb":633,"a":[["metabolism/electron_transfer.html","Electron transfer"],["metabolism/respiration.html","respiration"]],"b":[["EC%3A1.1.99.1","choline dehydrogenase"],["EC%3A1.1.99.12","sorbose dehydrogenase"],["EC%3A1.1.99.13","glucoside 3-dehydrogenase (acceptor)"],["EC%3A1.1.99.14","glycolate dehydrogenase"],["EC%3A1.1.99.18","cellobiose dehydrogenase (acceptor)"],["EC%3A1.1.99.2","L-2-hydroxyglutarate dehydrogenase"]]},{"id":"GO:0004252","l":"serine-type endopeptidase activity","na":2,"nb":281,"a":[["physiology/alpha_chymotrypsin_activity.html","alpha-chymotrypsin activity"],["physiology/trypsin_activity.html","trypsin activity"]],"b":[["EC%3A3.4.21.1","chymotrypsin"],["EC%3A3.4.21.10","acrosin"],["EC%3A3.4.21.102","C-terminal processing peptidase"],["EC%3A3.4.21.20","cathepsin G"],["EC%3A3.4.21.21","coagulation factor VIIa"],["EC%3A3.4.21.22","coagulation factor IXa"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":2,"nb":212,"a":[["physiology/methanotrophic.html","methanotrophic"],["physiology/methylotrophic.html","methylotrophic"]],"b":[["EC%3A1.1.1.244","methanol dehydrogenase"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.99.37","methanol dehydrogenase (nicotinoprotein)"],["EC%3A1.13.11.94","4-vinylguaiacol dioxygenase"],["EC%3A1.14.11.27","[histone H3]-dimethyl-L-lysine(36) demethylase"]]},{"id":"GO:0008233","l":"peptidase activity","na":2,"nb":141,"a":[["physiology/caseinase_activity.html","caseinase activity"],["physiology/gelatinase_activity.html","gelatinase activity"]],"b":[["ComplexPortal%3ACPX-9002","PA28-alphabeta single-capped 20S proteasome complex"],["ComplexPortal%3ACPX-9022","PA28-gamma double-capped 20S proteasome complex"],["ComplexPortal%3ACPX-9001","PA28-gamma single-capped 20S proteasome complex"],["ComplexPortal%3ACPX-3785","Tryptase alpha/beta-1 complex"],["ComplexPortal%3ACPX-3804","Tryptase alpha/beta-1 complex"],["ComplexPortal%3ACPX-3805","Tryptase beta-2 complex"]]},{"id":"CHEBI:16452","l":"","na":2,"nb":117,"a":[["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["EC%3A1.1.1.299","malate dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.1.37","(S)-malate dehydrogenase (NAD(+), oxaloacetate-forming)"],["EC%3A1.1.1.38","malate dehydrogenase (oxaloacetate-decarboxylating)"],["EC%3A1.1.1.40","malate dehydrogenase (oxaloacetate-decarboxylating) (NADP(+))"],["EC%3A1.1.1.82","malate dehydrogenase (NADP(+))"],["EC%3A1.1.5.4","malate dehydrogenase (quinone)"]]},{"id":"GO:0006099","l":"tricarboxylic acid cycle","na":2,"nb":92,"a":[["physiology/heterotrophic.html","heterotrophic"],["physiology/organoheterotrophic.html","organoheterotrophic"]],"b":[["ComplexPortal%3ACPX-3921","2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-9044","Mitochondrial 2-oxoglutarate dehydrogenase complex,CG1544 variant"],["ComplexPortal%3ACPX-9043","Mitochondrial 2-oxoglutarate dehydrogenase complex, CG33791 variant"],["ComplexPortal%3ACPX-1293","Mitochondrial 2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-9061","Mitochondrial 2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-9042","Mitochondrial 2-oxoglutarate dehydrogenase complex, ODGH variant"]]},{"id":"CHEBI:17790","l":"methanol","na":2,"nb":86,"a":[["physiology/methanotrophic.html","methanotrophic"],["physiology/methylotrophic.html","methylotrophic"]],"b":[["EC%3A1.1.1.244","methanol dehydrogenase"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.99.37","methanol dehydrogenase (nicotinoprotein)"],["EC%3A1.14.13.25","methane monooxygenase (soluble)"],["EC%3A1.14.14.117","aflatoxin B synthase"]]},{"id":"GO:0006302","l":"double-strand break repair","na":2,"nb":85,"a":[["environment/desiccation_tolerant.html","desiccation tolerant"],["environment/ionizing_radiation_tolerant.html","ionizing radiation tolerant"]],"b":[["ComplexPortal%3ACPX-10302","MRN double-strand break repair complex"],["ComplexPortal%3ACPX-1872","MRX double-strand break repair complex"],["ComplexPortal%3ACPX-511","MUS81-EME1 structure-specific endonuclease complex"],["ComplexPortal%3ACPX-585","MUS81-EME1 structure-specific endonuclease complex"],["ComplexPortal%3ACPX-586","MUS81-EME2 structure-specific endonuclease complex"],["ComplexPortal%3ACPX-587","MUS81-EME2 structure-specific endonuclease complex"]]},{"id":"GO:0051607","l":"defense response to virus","na":2,"nb":80,"a":[["genomics/crispr_cas_system.html","CRISPR-Cas system"],["genomics/phage_defense_system.html","phage defense system"]],"b":[["UniProtKB-KW%3AKW-0051","Antiviral defense"],["ComplexPortal%3ACPX-4142","AIM2 inflammasome"],["ComplexPortal%3ACPX-4243","AIM2 inflammasome"],["ComplexPortal%3ACPX-6037","MAVS-TRAF3 E3 ubiquitin ligase complex"],["ComplexPortal%3ACPX-2128","Sting complex"],["ComplexPortal%3ACPX-6018","STING-TRAF3-TBK1 complex"]]},{"id":"GO:0071973","l":"bacterial-type flagellum-dependent cell motility","na":2,"nb":60,"a":[["ecology/soil_dwelling.html","soil-dwelling"],["morphology/swarming_motility.html","swarming motility"]],"b":[["ComplexPortal%3ACPX-4886","DNA-directed RNA polymerase holoenzyme complex, SigmaF variant"],["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["GO%3A0071973","bacterial-type flagellum-dependent cell motility"],["GO%3A0071978","bacterial-type flagellum-dependent swarming motility"]]},{"id":"CHEBI:33542","l":"","na":2,"nb":38,"a":[["metabolism/disproportionation.html","Disproportionation"],["physiology/chemolithotrophic.html","chemolithotrophic"]],"b":[["EC%3A1.8.2.2","thiosulfate dehydrogenase"],["EC%3A1.8.2.5","thiosulfate reductase (cytochrome)"],["EC%3A1.8.5.2","thiosulfate dehydrogenase (quinone)"],["EC%3A1.8.5.5","thiosulfate reductase (quinone)"],["EC%3A2.5.1.144","S-sulfo-L-cysteine synthase (O-acetyl-L-serine-dependent)"],["EC%3A2.8.1.1","thiosulfate sulfurtransferase"]]},{"id":"GO:0004022","l":"alcohol dehydrogenase (NAD+) activity","na":2,"nb":38,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["physiology/nad_dependent_alcohol_dehydrogenase_activity.html","NAD-dependent alcohol dehydrogenase activity"]],"b":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["RHEA%3A10736","a primary alcohol + NAD(+) = an aldehyde + NADH + H(+)"],["RHEA%3A10740","a secondary alcohol + NAD(+) = a ketone + NADH + H(+)"],["GO%3A0106429","11-cis-retinol dehydrogenase (NAD+) activity"],["GO%3A0052676","3-methylbutanal reductase (NADH) activity"],["GO%3A0004022","alcohol dehydrogenase (NAD+) activity"]]},{"id":"GO:0016805","l":"dipeptidase activity","na":2,"nb":36,"a":[["physiology/glutamyl_glutamic_acid_arylamidase_activity.html","glutamyl glutamic acid arylamidase activity"],["physiology/leucyl_glycine_arylamidase_activity.html","leucyl glycine arylamidase activity"]],"b":[["EC%3A3.4.13.18","cytosol non-specific dipeptidase"],["EC%3A3.4.13.19","membrane dipeptidase"],["EC%3A3.4.13.21","dipeptidase E"],["GO%3A0160237","D-Ala-D-Ala dipeptidase activity"],["GO%3A0016805","dipeptidase activity"],["GO%3A0070573","metallodipeptidase activity"]]},{"id":"GO:0016298","l":"lipase activity","na":2,"nb":33,"a":[["metabolism/lipolysis.html","lipolysis"],["physiology/lipase_activity.html","lipase activity"]],"b":[["GO%3A0120516","diacylglycerol lipase activity"],["GO%3A0047714","galactolipase activity"],["GO%3A0016298","lipase activity"],["GO%3A0047372","monoacylglycerol lipase activity"],["GO%3A0120569","phospholipase activity"],["GO%3A0004771","sterol ester esterase activity"]]},{"id":"CHEBI:36242","l":"","na":2,"nb":32,"a":[["morphology/black_pigmented.html","black pigmented"],["morphology/brown_pigmented.html","brown pigmented"]],"b":[["EC%3A1.1.1.110","aromatic 2-oxoacid reductase"],["EC%3A1.1.1.237","hydroxyphenylpyruvate reductase"],["EC%3A1.13.11.27","4-hydroxyphenylpyruvate dioxygenase"],["EC%3A1.13.11.46","4-hydroxymandelate synthase"],["EC%3A1.2.3.13","4-hydroxyphenylpyruvate oxidase"],["EC%3A1.3.1.12","prephenate dehydrogenase"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":2,"nb":32,"a":[["genomics/gc_mid1.html","GC mid1"],["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["Pfam%3APF25848","Rodlin protein"],["Pfam%3APF13420","Acetyltransferase (GNAT) domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF26381","BREX System ATPase PglY protein 5th domain"],["Pfam%3APF26382","BREX System ATPase PglY protein 6th domain"]]},{"id":"CHEBI:16236","l":"ethanol","na":2,"nb":31,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]],"b":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.5.5","alcohol dehydrogenase (quinone)"],["EC%3A1.1.99.36","alcohol dehydrogenase (nicotinoprotein)"],["EC%3A2.3.1.268","ethanol O-acetyltransferase"],["EC%3A3.1.1.113","ethyl acetate hydrolase"],["EC%3A3.1.1.67","fatty-acyl-ethyl-ester synthase"]]},{"id":"NCBITaxon:243273","l":"Mycoplasmoides genitalium (strain ATCC 33530 / DSM 19775 / NCTC 10195 / G37)","na":2,"nb":31,"a":[["genomics/gc_high.html","GC high"],["genomics/genome_size.html","genome size"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF03257","Mycoplasma adhesin P1, C-terminal"],["Pfam%3APF09185","Domain of unknown function (DUF1948)"],["Pfam%3APF09188","Domain of unknown function (DUF1951)"],["Pfam%3APF03072","Domain of unknown function (DUF237)"],["Pfam%3APF03086","Domain of unknown function (DUF240)"]]},{"id":"GO:0008810","l":"cellulase activity","na":2,"nb":28,"a":[["metabolism/biopolymer_degradation.html","biopolymer degradation"],["metabolism/cellulolysis.html","cellulolysis"]],"b":[["EC%3A3.2.1.4","cellulase"],["GO%3A0008810","cellulase activity"],["InterPro%3AIPR005087","Carbohydrate binding module family 11"],["InterPro%3AIPR005086","Carbohydrate binding module family 17/28"],["InterPro%3AIPR004197","Cellulase, Ig-like domain"],["InterPro%3AIPR000334","Glycoside hydrolase, family 45"]]},{"id":"GO:0051139","l":"metal cation:proton antiporter activity","na":2,"nb":26,"a":[["environment/alkalotolerant.html","alkalotolerant"],["environment/neutrophilic.html","neutrophilic"]],"b":[["GO%3A0015369","calcium:proton antiporter activity"],["GO%3A0010348","lithium:proton antiporter activity"],["GO%3A0010486","manganese:proton antiporter activity"],["GO%3A0051139","metal cation:proton antiporter activity"],["GO%3A0015386","potassium:proton antiporter activity"],["GO%3A0015385","sodium:proton antiporter activity"]]},{"id":"GO:1990573","l":"potassium ion import across plasma membrane","na":2,"nb":25,"a":[["environment/nacl_delta.html","NaCl delta"],["environment/nacl_delta_mid1.html","NaCl delta mid1"]],"b":[["ComplexPortal%3ACPX-260","HCN1 channel complex"],["ComplexPortal%3ACPX-142","HCN2 channel complex"],["ComplexPortal%3ACPX-270","HCN3 channel complex"],["ComplexPortal%3ACPX-139","HCN4 channel complex"],["ComplexPortal%3ACPX-186","Inward rectifying potassium channel complex, Kir6.2-SUR1"],["ComplexPortal%3ACPX-194","Inward rectifying potassium channel complex, Kir6.2-SUR1"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":2,"nb":25,"a":[["genomics/ploidy.html","ploidy"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["Pfam%3APF13372","Alginate export"],["Pfam%3APF25965","ALG44 beta-barrel domain"],["Pfam%3APF25964","ALG44, barrel-sandwich hybrid domain"],["Pfam%3APF16844","Dinitrogenase iron-molybdenum cofactor, N-terminal"],["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"]]},{"id":"GO:0004089","l":"carbonate dehydratase activity","na":2,"nb":24,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["physiology/urease_activity.html","urease activity"]],"b":[["EC%3A4.2.1.1","carbonic anhydrase"],["RHEA%3A10748","hydrogencarbonate + H(+) = CO2 + H2O"],["GO%3A0004089","carbonate dehydratase activity"],["NCBIfam%3ANF007756","carbonate dehydratase"],["NCBIfam%3ANF011765","carbonic anhydrase family protein"],["NCBIfam%3ANF040597","carbonic anhydrase"]]},{"id":"UniProt:P0AE67","l":"","na":2,"nb":24,"a":[["morphology/motile.html","motile"],["physiology/chemotaxis.html","chemotaxis"]],"b":[["ComplexPortal%3ACPX-1077","Chemotaxis phosphorelay complex CheA-CheY"],["ComplexPortal%3ACPX-1088","Chemotaxis phosphorelay complex CheY-CheZ"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009433","bacterial-type flagellum basal body, C ring"],["GO%3A0009288","bacterial-type flagellum"],["GO%3A0120107","bacterial-type flagellum rotor complex"]]},{"id":"CHEBI:15429","l":"","na":2,"nb":23,"a":[["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["EC%3A1.14.99.39","ammonia monooxygenase"],["EC%3A1.3.7.8","benzoyl-CoA reductase"],["EC%3A1.7.1.10","hydroxylamine reductase (NADH)"],["EC%3A1.7.1.5","hyponitrite reductase"],["EC%3A1.7.2.6","hydroxylamine dehydrogenase"],["EC%3A1.7.2.9","hydroxylamine oxidase"]]},{"id":"CHEBI:29105","l":"zinc(2+)","na":2,"nb":20,"a":[["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/zinc_tolerant.html","zinc tolerant"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29105","requires zinc(2+)"],["EC%3A7.2.2.12","P-type Zn(2+) transporter"],["EC%3A7.2.2.20","ABC-type Zn(2+) transporter"],["RHEA%3A62264","selenite(out) + Zn(2+)(out) + hydrogencarbonate(out) = selenite(in) + Zn(2+)(in) + hydrogencarbonate(in)"],["RHEA%3A72627","Zn(2+)(in) + 2 H(+)(out) = Zn(2+)(out) + 2 H(+)(in)"],["RHEA%3A20621","Zn(2+)(in) + ATP + H2O = Zn(2+)(out) + ADP + phosphate + H(+)"]]},{"id":"CHEBI:18421","l":"","na":2,"nb":19,"a":[["environment/microaerotolerant.html","microaerotolerant"],["environment/obligately_aerobic.html","obligately aerobic"]],"b":[["EC%3A1.10.3.17","superoxide oxidase"],["EC%3A1.15.1.1","superoxide dismutase"],["EC%3A1.15.1.2","superoxide reductase"],["RHEA%3A80515","2,4,6-trinitrotoluene radical + O2 = 2,4,6-trinitrotoluene + superoxide + H(+)"],["RHEA%3A20696","2 superoxide + 2 H(+) = H2O2 + O2"],["RHEA%3A29179","a menaquinol + 2 O2 = 2 superoxide + a menaquinone + 2 H(+)"]]},{"id":"GO:0009039","l":"urease activity","na":2,"nb":19,"a":[["other/urease_negative.html","urease negative"],["physiology/urease_activity.html","urease activity"]],"b":[["EC%3A3.5.1.5","urease"],["METPO%3A1007088","urease negative"],["METPO%3A1007087","urease positive"],["RHEA%3A20557","urea + 2 H2O + H(+) = hydrogencarbonate + 2 NH4(+)"],["GO%3A0009039","urease activity"],["NCBIfam%3ANF009685","urease subunit alpha"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":2,"nb":19,"a":[["genomics/crispr_cas_system.html","CRISPR-Cas system"],["genomics/phage_defense_system.html","phage defense system"]],"b":[["Pfam%3APF03306","Alpha-acetolactate decarboxylase"],["Pfam%3APF22208","Cas_Csm6 CARF domain"],["Pfam%3APF09659","Cas_Csm6 HEPN domain"],["Pfam%3APF22335","Cas10/Cmr2, second palm domain"],["Pfam%3APF18395","Cas3 C-terminal domain"],["Pfam%3APF18019","Cas3, HD domain"]]},{"id":"GO:0031411","l":"gas vesicle","na":2,"nb":18,"a":[["morphology/gas_vesicle.html","gas vesicle"],["morphology/intracellular_inclusion.html","intracellular inclusion"]],"b":[["GO%3A0031411","gas vesicle"],["NCBIfam%3ANF041667","gas vesicle accessory protein GvpU"],["NCBIfam%3ANF046092","gas vesicle protein GvpA"],["NCBIfam%3ANF045779","gas vesicle protein GvpG"],["NCBIfam%3ANF046090","gas vesicle protein GvpJ"],["NCBIfam%3ANF045778","gas vesicle protein GvpL"]]},{"id":"UniProt:P13445","l":"","na":2,"nb":15,"a":[["physiology/stress_response.html","stress response"],["physiology/viable_but_nonculturable_state.html","viable but nonculturable state"]],"b":[["ComplexPortal%3ACPX-4883","DNA-directed RNA polymerase holoenzyme complex, SigmaS variant"],["ComplexPortal%3ACPX-5024","rpoS-rssB sigma-antisigma complex"],["GO%3A1903865","sigma factor antagonist complex"],["GO%3A0001000","bacterial-type RNA polymerase core enzyme binding"],["GO%3A0016987","sigma factor activity"],["GO%3A0006352","DNA-templated transcription initiation"]]},{"id":"CHEBI:15846","l":"NAD(+)","na":2,"nb":14,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15846","requires NAD+"],["ARO%3A3002846","arr-1"],["ARO%3A3002847","arr-2"],["ARO%3A3002848","arr-3"],["ARO%3A3002849","arr-4"],["ARO%3A3002850","arr-5"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":2,"nb":14,"a":[["morphology/carboxysome.html","carboxysome"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF02224","Cytidylate kinase"],["Pfam%3APF03319","Ethanolamine utilisation protein EutN/carboxysome"],["Pfam%3APF22019","alpha-1,4-glucan branching enzyme GlgB, N-terminal domain"],["Pfam%3APF21714","Circadian clock protein KaiA, N-terminal domain"],["Pfam%3APF07688","KaiA C-terminal domain"]]},{"id":"CHEBI:17045","l":"dinitrogen oxide","na":2,"nb":13,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["physiology/chemolithotrophic.html","chemolithotrophic"]],"b":[["EC%3A1.7.1.14","nitric oxide reductase [NAD(P)(+), nitrous oxide-forming]"],["EC%3A1.7.2.4","nitrous-oxide reductase"],["EC%3A1.7.2.5","nitric-oxide reductase (cytochrome c)"],["EC%3A1.7.5.2","nitric oxide reductase (menaquinol)"],["RHEA%3A30215","a menaquinol + 2 nitric oxide = nitrous oxide + a menaquinone + H2O"],["RHEA%3A43108","N2 + 2 Fe(III)-[cytochrome c] + H2O = nitrous oxide + 2 Fe(II)-[cytochrome c] + 2 H(+)"]]},{"id":"NCBITaxon:272562","l":"Clostridium acetobutylicum (strain ATCC 824 / DSM 792 / JCM 1419 / IAM 19013 / LMG 5710 / NBRC 13948 / NRRL B-527 / VKM B-1787 / 2291 / W)","na":2,"nb":13,"a":[["metabolism/acetone_butanol_ethanol_fermentation.html","acetone-butanol-ethanol fermentation"],["metabolism/fermentation.html","Fermentation"]],"b":[["Pfam%3APF10882","Bacterial PH domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["Pfam%3APF09940","Domain of unknown function (DUF2172)"],["Pfam%3APF16254","Domain of unknown function (DUF4910)"],["Pfam%3APF01183","Glycosyl hydrolases family 25"],["Pfam%3APF16221","winged helix-turn-helix"]]},{"id":"GO:0031469","l":"bacterial microcompartment","na":2,"nb":12,"a":[["morphology/carboxysome.html","carboxysome"],["morphology/intracellular_inclusion.html","intracellular inclusion"]],"b":[["GO%3A0031469","bacterial microcompartment"],["GO%3A0031470","carboxysome"],["GO%3A0031471","ethanolamine degradation polyhedral organelle"],["GO%3A0031472","propanediol degradation polyhedral organelle"],["NCBIfam%3ATIGR02704","carboxysome peptide B"],["NCBIfam%3ANF011934","ethanolamine utilization microcompartment protein EutL"]]},{"id":"NCBITaxon:301447","l":"Streptococcus pyogenes serotype M1","na":2,"nb":12,"a":[["genomics/crispr_cas_system.html","CRISPR-Cas system"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["Pfam%3APF16595","PAM-interacting domain of CRISPR-associated endonuclease Cas9"],["Pfam%3APF22702","Cas9 RuvC domain"],["Pfam%3APF24547","Domain of unknown function (DUF7601)"],["Pfam%3APF22382","Endo-beta-N-acetylglucosaminidase, helical bundle"],["Pfam%3APF20746","Endo-beta-N-acetylglucosaminidase F2, Ig-like domain"],["Pfam%3APF12892","Spy0128-like isopeptide containing domain"]]},{"id":"NCBITaxon:485","l":"Neisseria gonorrhoeae","na":2,"nb":12,"a":[["physiology/oxidase_activity.html","oxidase activity"],["physiology/prolyl_aminopeptidase_activity.html","prolyl aminopeptidase activity"]],"b":[["Pfam%3APF25860","Cryptic plasmid protein A"],["Pfam%3APF12852","Cupin"],["Pfam%3APF17845","FbpC C-terminal regulatory nucleotide binding domain"],["Pfam%3APF22443","FbpC-like, regulatory domain"],["Pfam%3APF18053","DNA gyrase B subunit insert domain"],["Pfam%3APF25885","EMRA, alpha-helical hairpin domain"]]},{"id":"GO:0030641","l":"","na":11,"nb":2,"a":[["environment/acidophilic.html","acidophilic"],["environment/acidotolerant.html","acidotolerant"],["environment/alkalotolerant.html","alkalotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"]],"b":[["PANTHER%3APTHR10110","SODIUM/HYDROGEN EXCHANGER"],["PANTHER%3APTHR12471","VACUOLAR ATP SYNTHASE SUBUNIT S1"]]},{"id":"GO:0035825","l":"homologous recombination","na":2,"nb":11,"a":[["environment/radiotolerant.html","radiotolerant"],["genomics/gc_mid2.html","GC mid2"]],"b":[["ComplexPortal%3ACPX-4426","BRCA1-B complex"],["ComplexPortal%3ACPX-4721","BRCA1-B complex"],["ComplexPortal%3ACPX-4441","BRCA1-C complex"],["ComplexPortal%3ACPX-4722","BRCA1-C complex"],["ComplexPortal%3ACPX-9561","FLIP-FIGNL1 DNA interstrand crosslink repair complex"],["ComplexPortal%3ACPX-1386","Synapsis initiation complex"]]},{"id":"GO:0044403","l":"biological process involved in symbiotic interaction","na":2,"nb":11,"a":[["ecology/plant_pathogen.html","plant pathogen"],["ecology/symbiosis.html","symbiosis"]],"b":[["GO%3A0036377","arbuscular mycorrhizal association"],["GO%3A0051701","biological process involved in interaction with host"],["GO%3A0051702","biological process involved in interaction with symbiont"],["GO%3A0044403","biological process involved in symbiotic interaction"],["GO%3A0075733","intracellular transport of virus"],["GO%3A0044399","multi-species biofilm formation"]]},{"id":"GO:1990586","l":"divisome complex","na":2,"nb":11,"a":[["morphology/coccus_shaped.html","coccus shaped"],["morphology/ellipsoidal.html","ellipsoidal"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["ComplexPortal%3ACPX-3299","FtsBL complex"],["ComplexPortal%3ACPX-3099","FtsQBL complex"],["GO%3A1990586","divisome complex"],["GO%3A1990588","FtsBL complex"],["GO%3A1990587","FtsQBL complex"]]},{"id":"GO:0008976","l":"polyphosphate kinase activity","na":2,"nb":10,"a":[["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/polyphosphate_granule.html","polyphosphate granule"]],"b":[["EC%3A2.7.4.1","ATP-polyphosphate phosphotransferase"],["RHEA%3A19573","[phosphate](n) + ATP = [phosphate](n+1) + ADP"],["GO%3A0008976","polyphosphate kinase activity"],["NCBIfam%3ANF042973","ADP-polyphosphate phosphotransferase"],["NCBIfam%3ATIGR03705","polyphosphate kinase 1"],["NCBIfam%3ATIGR03707","polyphosphate kinase 2"]]},{"id":"GO:0004329","l":"formate-tetrahydrofolate ligase activity","na":2,"nb":9,"a":[["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"]],"b":[["EC%3A6.3.4.3","formate--tetrahydrofolate ligase"],["RHEA%3A20221","(6S)-5,6,7,8-tetrahydrofolate + formate + ATP = (6R)-10-formyltetrahydrofolate + ADP + phosphate"],["GO%3A0004329","formate-tetrahydrofolate ligase activity"],["NCBIfam%3ANF010030","formate--tetrahydrofolate ligase"],["NCBIfam%3ANF010031","formate--tetrahydrofolate ligase"],["NCBIfam%3ANF013436","formate--tetrahydrofolate ligase"]]},{"id":"GO:0019164","l":"pyruvate synthase activity","na":2,"nb":9,"a":[["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"]],"b":[["EC%3A1.2.7.1","pyruvate synthase"],["RHEA%3A12765","2 oxidized [2Fe-2S]-[ferredoxin] + pyruvate + CoA = 2 reduced [2Fe-2S]-[ferredoxin] + acetyl-CoA + CO2 + H(+)"],["GO%3A0019164","pyruvate synthase activity"],["NCBIfam%3ANF041170","2-oxoacid:ferredoxin oxidoreductase subunit alpha"],["NCBIfam%3ANF041171","2-oxoacid:ferredoxin oxidoreductase subunit beta"],["NCBIfam%3ANF040682","pyruvate synthase subunit PorA"]]},{"id":"GO:0031160","l":"spore wall","na":2,"nb":9,"a":[["morphology/spore_forming.html","spore forming"],["morphology/spore_shaped.html","spore shaped"]],"b":[["ComplexPortal%3ACPX-3028","1,3-beta-D-glucan synthase complex, FKS3-RHO1 variant"],["GO%3A0005619","ascospore wall"],["GO%3A0097515","asexual spore wall"],["GO%3A0043591","endospore external encapsulating structure"],["GO%3A0097514","sexual spore wall"],["GO%3A0031160","spore wall"]]},{"id":"NCBITaxon:818","l":"Bacteroides thetaiotaomicron","na":2,"nb":9,"a":[["ecology/gut_associated.html","gut-associated"],["ecology/host_associated.html","host-associated"]],"b":[["Pfam%3APF09093","Lyase, catalytic"],["TED%3AAF-A0A174W9M0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A174W9M0-F1-model_v4_TED01"],["TED%3AAF-A0A679HCU6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A679HCU6-F1-model_v4_TED01"],["TED%3AAF-A0A139L295-F1-model_v4_TED04","TED novel fold AF-A0A139L295-F1-model_v4_TED04"],["TED%3AAF-A0A174QBB7-F1-model_v4_TED02","TED novel fold AF-A0A174QBB7-F1-model_v4_TED02"],["TED%3AAF-A0A679H9T4-F1-model_v4_TED03","TED novel fold AF-A0A679H9T4-F1-model_v4_TED03"]]},{"id":"GO:0000917","l":"division septum assembly","na":2,"nb":8,"a":[["morphology/sarcina_arrangement.html","sarcina arrangement"],["morphology/tetrad_arrangement.html","tetrad arrangement"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["GO%3A0000917","division septum assembly"],["GO%3A0140278","mitotic division septum assembly"],["NCBIfam%3ATIGR02205","cell division protein ZipA"],["NCBIfam%3ATIGR00172","Maf family nucleotide pyrophosphatase"],["PANTHER%3APTHR36419","ARRESTIN FAMILY PROTEIN 1"]]},{"id":"GO:0061579","l":"N-acyl homoserine lactone synthase activity","na":2,"nb":8,"a":[["physiology/bioluminescence.html","bioluminescence"],["physiology/quorum_sensing.html","quorum sensing"]],"b":[["EC%3A2.3.1.184","acyl-homoserine-lactone synthase"],["RHEA%3A10096","a fatty acyl-[ACP] + S-adenosyl-L-methionine = an N-acyl-L-homoserine lactone + S-methyl-5'-thioadenosine + holo-[ACP] + H(+)"],["GO%3A0061579","N-acyl homoserine lactone synthase activity"],["NCBIfam%3ANF052393","acyl-homoserine-lactone synthase"],["NCBIfam%3ANF036435","acyl-homoserine-lactone synthase"],["Pfam%3APF17327","Acyl homoserine lactone synthase"]]},{"id":"NCBITaxon:565050","l":"Caulobacter vibrioides NA1000","na":2,"nb":8,"a":[["morphology/crescent_shaped.html","crescent shaped"],["morphology/tailed_shaped.html","tailed shaped"]],"b":[["Pfam%3APF02767","DNA polymerase III beta subunit, central domain"],["Pfam%3APF02768","DNA polymerase III beta subunit, C-terminal domain"],["Pfam%3APF00712","DNA polymerase III beta subunit, N-terminal domain"],["Pfam%3APF21249","GyrB, hook"],["Pfam%3APF07378","Flagellar protein FlbT"],["Pfam%3APF03748","Flagellar basal body-associated protein FliL"]]},{"id":"GO:0042438","l":"melanin biosynthetic process","na":2,"nb":7,"a":[["morphology/black_pigmented.html","black pigmented"],["morphology/white_pigmented.html","white pigmented"]],"b":[["GO%3A0140614","1,8-dihydroxynaphthalene-melanin biosynthetic process"],["GO%3A0006583","melanin biosynthetic process from tyrosine"],["GO%3A0042438","melanin biosynthetic process"],["Reactome%3AR-HSA-5662702","Melanin biosynthesis"],["NCBIfam%3ANF017995","tyrosinase family oxidase copper chaperone"],["NCBIfam%3ANF047834","tyrosinase MelC2"]]},{"id":"GO:0050304","l":"nitrous-oxide reductase activity","na":2,"nb":7,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"]],"b":[["EC%3A1.7.2.4","nitrous-oxide reductase"],["RHEA%3A43108","N2 + 2 Fe(III)-[cytochrome c] + H2O = nitrous oxide + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["GO%3A0050304","nitrous-oxide reductase activity"],["NCBIfam%3ANF052460","clade III lactonase-type nitrous-oxide reductase"],["NCBIfam%3ATIGR04244","TAT-dependent nitrous-oxide reductase"],["NCBIfam%3ATIGR04246","Sec-dependent nitrous-oxide reductase"]]},{"id":"NCBITaxon:28116","l":"Bacteroides ovatus","na":2,"nb":7,"a":[["metabolism/xylan_degradation.html","xylan degradation"],["physiology/amylase_activity.html","amylase activity"]],"b":[["TED%3AAF-A0A515J030-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A515J030-F1-model_v4_TED01"],["TED%3AAF-A0A5M5C3M7-F1-model_v4_TED01","TED novel fold AF-A0A5M5C3M7-F1-model_v4_TED01"],["TED%3AAF-A0A641PL20-F1-model_v4_TED01","TED novel fold AF-A0A641PL20-F1-model_v4_TED01"],["TED%3AAF-A0A641V3P9-F1-model_v4_TED03","TED novel fold AF-A0A641V3P9-F1-model_v4_TED03"],["TED%3AAF-A0A641VT79-F1-model_v4_TED01","TED novel fold AF-A0A641VT79-F1-model_v4_TED01"],["TED%3AAF-A0A642C648-F1-model_v4_TED01","TED novel fold AF-A0A642C648-F1-model_v4_TED01"]]},{"id":"CHEBI:18246","l":"(1->4)-beta-D-glucan","na":2,"nb":6,"a":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/cellulolysis.html","cellulolysis"]],"b":[["EC%3A2.4.1.12","cellulose synthase (UDP-forming)"],["EC%3A2.4.1.29","cellulose synthase (GDP-forming)"],["EC%3A2.4.1.49","cellodextrin phosphorylase"],["RHEA%3A17797","[(1->4)-beta-D-glucosyl](n) + GDP-alpha-D-glucose = [(1->4)-beta-D-glucosyl](n+1) + GDP + H(+)"],["RHEA%3A23024","[(1->4)-beta-D-glucosyl](n) + phosphate = [(1->4)-beta-D-glucosyl](n-1) + alpha-D-glucose 1-phosphate"],["RHEA%3A19929","[(1->4)-beta-D-glucosyl](n) + UDP-alpha-D-glucose = [(1->4)-beta-D-glucosyl](n+1) + UDP + H(+)"]]},{"id":"CHEBI:27208","l":"","na":6,"nb":2,"a":[["environment/mesophilic.html","mesophilic"],["environment/temperature_delta.html","temperature delta"],["environment/temperature_delta_mid2.html","temperature delta mid2"],["environment/temperature_optimum_mid1.html","temperature optimum mid1"],["environment/temperature_optimum_mid2.html","temperature optimum mid2"],["environment/temperature_optimum_very_low.html","temperature optimum very low"]],"b":[["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"],["TCDB%3A9.A.76","The Omega3 Fatty Acid Desaturase 3/Putative Transporter (FAD3) Family"]]},{"id":"InterPro:IPR012171","l":"","na":2,"nb":6,"a":[["environment/facultative_psychrophilic.html","facultative psychrophilic"],["environment/temperature_preference.html","temperature preference"]],"b":[["Pfam%3APF00173","Cytochrome b5-like Heme/Steroid binding domain"],["Pfam%3APF00487","Fatty acid desaturase"],["PANTHER%3APTHR19353","FATTY ACID DESATURASE 2"],["PANTHER%3APTHR32100","OMEGA-6 FATTY ACID DESATURASE, CHLOROPLASTIC"],["Pfam%3APF11960","Domain of unknown function (DUF3474)"],["PROSITE%3APS00574","Fatty acid desaturases family 2 signature"]]},{"id":"NCBITaxon:727","l":"Haemophilus influenzae","na":2,"nb":6,"a":[["genomics/restriction_modification_system.html","restriction-modification system"],["morphology/coccobacillus_shaped.html","coccobacillus shaped"]],"b":[["Pfam%3APF06808","Tripartite ATP-independent periplasmic transporter, DctM component"],["Pfam%3APF04290","Tripartite ATP-independent periplasmic transporters, DctQ component"],["Pfam%3APF09226","Restriction endonuclease HincII"],["Pfam%3APF09520","Type II restriction endonuclease, HinfI"],["Pfam%3APF24077","Immunoglobulin A1 protease autotransporter domain 2"],["PROSITE%3APS01068","OmpA-like domain"]]},{"id":"CHEBI:16094","l":"thiosulfate(2-)","na":5,"nb":2,"a":[["metabolism/disproportionation.html","Disproportionation"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["proteintraitsmech%3ABIOLIP_THJ","THJ-binding site"]]},{"id":"GO:0009291","l":"unidirectional conjugation","na":2,"nb":5,"a":[["genomics/genomic_island.html","genomic island"],["genomics/plasmid_carriage.html","plasmid carriage"]],"b":[["GO%3A0000762","pheromone-induced unidirectional conjugation"],["GO%3A0009291","unidirectional conjugation"],["NCBIfam%3ATIGR02775","P-type conjugative transfer protein TrbG"],["NCBIfam%3ATIGR02780","P-type conjugative transfer protein TrbJ"],["NCBIfam%3ATIGR02783","P-type conjugative transfer protein TrbL"]]},{"id":"GO:0016610","l":"nitrogenase complex","na":2,"nb":5,"a":[["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["GO%3A0016611","iron-iron nitrogenase complex"],["GO%3A0016612","molybdenum-iron nitrogenase complex"],["GO%3A0016610","nitrogenase complex"],["GO%3A0016613","vanadium-iron nitrogenase complex"],["NCBIfam%3ATIGR01287","nitrogenase iron protein"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":2,"nb":5,"a":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"]],"b":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF02963","Restriction endonuclease EcoRI"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["PROSITE%3APS00974","Mannitol dehydrogenases signature"],["PROSITE%3APS00567","Phosphoribulokinase signature"]]},{"id":"NCBITaxon:920","l":"Acidithiobacillus ferrooxidans","na":5,"nb":2,"a":[["environment/obligately_acidophilic.html","obligately acidophilic"],["environment/ph_range_low.html","pH range low"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["Pfam%3APF20538","Family of unknown function (DUF6753)"],["PROSITE%3APS01007","Transposases, Mutator family, signature"]]},{"id":"CHEBI:16234","l":"","na":2,"nb":4,"a":[["environment/alkalotolerant.html","alkalotolerant"],["physiology/urease_activity.html","urease activity"]],"b":[["TCDB%3A2.A.53","The Sulfate Permease (SulP) Family"],["MCSA%3A172","isoaspartyl dipeptidase"],["MCSA%3A989","Retroviral integrase"],["MCSA%3A965","Viperin"]]},{"id":"GO:0000920","l":"septum digestion after cytokinesis","na":2,"nb":4,"a":[["morphology/diplococcus_shaped.html","diplococcus shaped"],["morphology/dumbbell_shaped.html","dumbbell shaped"]],"b":[["ComplexPortal%3ACPX-1684","CBK1-MOB2 kinase complex"],["ComplexPortal%3ACPX-1712","Gin4 serine/threonine kinase complex"],["ComplexPortal%3ACPX-1426","Myosin class II complex"],["GO%3A0000920","septum digestion after cytokinesis"]]},{"id":"GO:0030115","l":"S-layer","na":2,"nb":4,"a":[["morphology/square_shaped.html","square shaped"],["morphology/triangular_shaped.html","triangular shaped"]],"b":[["GO%3A0030115","S-layer"],["NCBIfam%3ANF041335","ArtA-dependent S-layer glycoprotein"],["NCBIfam%3ANF053619","BT1927 family outer membrane S-layer protein"],["NCBIfam%3ANF041073","S-layer protein SlaA"]]},{"id":"GO:0043107","l":"type IV pilus-dependent motility","na":2,"nb":4,"a":[["morphology/motile.html","motile"],["morphology/twitching_motility.html","twitching motility"]],"b":[["GO%3A0043107","type IV pilus-dependent motility"],["NCBIfam%3ATIGR01420","PilT/PilU family type 4a pilus ATPase"],["NCBIfam%3ANF016253","type 4a pilus biogenesis protein PilO"],["Pfam%3APF04350","Type IVa pilus alignment subcomplex PilO C-terminal domain"]]},{"id":"GO:0043884","l":"CO-methylating acetyl-CoA synthase activity","na":2,"nb":4,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"]],"b":[["EC%3A2.3.1.169","CO-methylating acetyl-CoA synthase"],["RHEA%3A45212","Co(I)-[corrinoid Fe-S protein] + acetyl-CoA + H(+) = methyl-Co(III)-[corrinoid Fe-S protein] + CO + CoA"],["GO%3A0043884","CO-methylating acetyl-CoA synthase activity"],["NCBIfam%3ATIGR00316","CO dehydrogenase/CO-methylating acetyl-CoA synthase complex subunit beta"]]},{"id":"GO:0050338","l":"thiosulfate dehydrogenase activity","na":2,"nb":4,"a":[["metabolism/disproportionation.html","Disproportionation"],["metabolism/sulfur_oxidation.html","sulfur oxidation"]],"b":[["EC%3A1.8.2.2","thiosulfate dehydrogenase"],["RHEA%3A20549","2 thiosulfate + 2 Fe(III)-[cytochrome c] = tetrathionate + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["GO%3A0050338","thiosulfate dehydrogenase activity"],["MCSA%3A986","Thiosulfate dehydrogenase"]]},{"id":"METPO:2000302","l":"shows activity of","na":2,"nb":4,"a":[["metabolism/shows_activity_of.html","shows activity of"],["other/coagulase_positive.html","coagulase positive"]],"b":[["METPO%3A1007083","catalase positive"],["METPO%3A1007090","coagulase positive"],["METPO%3A1007085","oxidase positive"],["METPO%3A1007087","urease positive"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":2,"nb":4,"a":[["genomics/abialpha_system.html","AbiAlpha system"],["physiology/gelatinase_activity.html","gelatinase activity"]],"b":[["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF09711","CRISPR-associated protein (Cas_Csn2)"],["Pfam%3APF06308","23S rRNA methylastransferase leader peptide (ErmCL)"]]},{"id":"GO:0019329","l":"ammonia oxidation","na":2,"nb":3,"a":[["metabolism/complete_ammonia_oxidation.html","complete ammonia oxidation"],["metabolism/nitrification.html","nitrification"]],"b":[["GO%3A0019409","aerobic respiration, using ammonia as electron donor"],["GO%3A0019329","ammonia oxidation"],["GO%3A0019331","anaerobic respiration, using ammonium as electron donor"]]},{"id":"GO:0070088","l":"polyhydroxyalkanoate granule","na":2,"nb":3,"a":[["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]],"b":[["GO%3A0070088","polyhydroxyalkanoate granule"],["NCBIfam%3ANF045536","polyhydroxyalkanoate granule-associated phasin"],["NCBIfam%3ANF045537","polyhydroxyalkanoate granule-associated phasin"]]},{"id":"InterPro:IPR007793","l":"","na":3,"nb":2,"a":[["morphology/ellipsoidal.html","ellipsoidal"],["morphology/filament_shaped.html","filament shaped"],["morphology/ovoid_shaped.html","ovoid shaped"]],"b":[["PANTHER%3APTHR35794","CELL DIVISION PROTEIN DIVIVA"],["Pfam%3APF05103","DivIVA protein"]]},{"id":"InterPro:IPR012761","l":"","na":3,"nb":2,"a":[["physiology/oxidative_stress_response.html","oxidative stress response"],["physiology/stress_response.html","stress response"],["physiology/viable_but_nonculturable_state.html","viable but nonculturable state"]],"b":[["HAMAP%3AMF_00959","RNA polymerase sigma factor RpoS [rpoS]"],["PROSITE%3APS00716","Sigma-70 factors family signature 2"]]},{"id":"InterPro:IPR050077","l":"","na":2,"nb":3,"a":[["genomics/prophage.html","prophage"],["physiology/sos_response.html","SOS response"]],"b":[["Pfam%3APF12840","Helix-turn-helix domain"],["Pfam%3APF01726","LexA DNA binding domain"],["PANTHER%3APTHR33516","LEXA REPRESSOR"]]},{"id":"METPO:1000602","l":"aerobic","na":3,"nb":2,"a":[["environment/aerobic.html","aerobic"],["environment/oxygen_preference.html","oxygen preference"],["physiology/aerobic_anoxygenic_phototrophy.html","aerobic anoxygenic phototrophy"]],"b":[["METPO%3A1000602","aerobic"],["METPO%3A1000606","obligately aerobic"]]},{"id":"METPO:1007080","l":"catalase test","na":2,"nb":3,"a":[["other/catalase_negative.html","catalase negative"],["other/catalase_test.html","catalase test"]],"b":[["METPO%3A1007084","catalase negative"],["METPO%3A1007083","catalase positive"],["METPO%3A1007080","catalase test"]]},{"id":"METPO:1007081","l":"oxidase test","na":2,"nb":3,"a":[["other/oxidase_negative.html","oxidase negative"],["other/oxidase_test.html","oxidase test"]],"b":[["METPO%3A1007086","oxidase negative"],["METPO%3A1007085","oxidase positive"],["METPO%3A1007081","oxidase test"]]},{"id":"METPO:1007082","l":"urease test","na":2,"nb":3,"a":[["other/urease_negative.html","urease negative"],["other/urease_test.html","urease test"]],"b":[["METPO%3A1007088","urease negative"],["METPO%3A1007087","urease positive"],["METPO%3A1007082","urease test"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":3,"nb":2,"a":[["environment/aerobic.html","aerobic"],["environment/obligately_aerobic.html","obligately aerobic"],["morphology/tetrad_arrangement.html","tetrad arrangement"]],"b":[["Pfam%3APF22538","Hexaprenyl diphosphate synthase, small subunit"],["PROSITE%3APS01066","Undecaprenyl pyrophosphate synthase family signature"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":2,"nb":3,"a":[["genomics/wadjet_system.html","Wadjet system"],["morphology/irregular_shaped.html","irregular shaped"]],"b":[["TED%3AAF-A0A142EAM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142EAM9-F1-model_v4_TED03"],["TED%3AAF-A0A1Q3DTY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3DTY6-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3DNE3-F1-model_v4_TED01","TED novel fold AF-A0A1Q3DNE3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:274","l":"Thermus thermophilus","na":2,"nb":3,"a":[["environment/thermophilic.html","thermophilic"],["morphology/cell_width.html","cell width"]],"b":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF01861","Branched-chain polyamine synthase A C-terminal domain"],["Pfam%3APF07736","Chorismate mutase type I"]]},{"id":"UniProt:Q51705","l":"","na":2,"nb":3,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"]],"b":[["Pfam%3APF18793","Nitrous oxide reductase propeller repeat 2"],["Pfam%3APF18764","Nitrous oxide reductase propeller repeat"],["proteintraitsmech%3ABIOLIP_CUA","CUA-binding site"]]},{"id":"GO:0019417","l":"sulfur oxidation","na":2,"nb":2,"a":[["physiology/lithotrophic.html","lithotrophic"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]],"b":[["GO%3A0019417","sulfur oxidation"],["NCBIfam%3ATIGR04484","sulfur oxidation c-type cytochrome SoxA"]]},{"id":"GO:0019649","l":"formaldehyde assimilation","na":2,"nb":2,"a":[["physiology/methanotrophic.html","methanotrophic"],["physiology/methylotrophic.html","methylotrophic"]],"b":[["GO%3A0019649","formaldehyde assimilation"],["NCBIfam%3ATIGR03128","3-hexulose-6-phosphate synthase"]]},{"id":"InterPro:IPR017402","l":"","na":2,"nb":2,"a":[["metabolism/proteorhodopsin_phototrophy.html","proteorhodopsin phototrophy"],["physiology/photoheterotrophic.html","photoheterotrophic"]],"b":[["Pfam%3APF01036","Bacteriorhodopsin-like protein"],["PROSITE%3APS00950","Bacterial rhodopsins signature 1"]]},{"id":"InterPro:IPR017761","l":"","na":2,"nb":2,"a":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["Pfam%3APF00394","Multicopper oxidase"],["PROSITE%3APS00080","Multicopper oxidases signature 2"]]},{"id":"InterPro:IPR023690","l":"","na":2,"nb":2,"a":[["morphology/bacillus_shaped.html","bacillus shaped"],["morphology/fusiform_shaped.html","fusiform shaped"]],"b":[["Pfam%3APF13413","Helix-turn-helix domain"],["HAMAP%3AMF_02017","Cytoskeleton protein RodZ [rodZ]"]]},{"id":"METPO:1000603","l":"anaerobic","na":2,"nb":2,"a":[["environment/anaerobic.html","anaerobic"],["environment/oxygen_preference.html","oxygen preference"]],"b":[["METPO%3A1000603","anaerobic"],["METPO%3A1000607","obligately anaerobic"]]},{"id":"METPO:1000607","l":"obligately anaerobic","na":2,"nb":2,"a":[["environment/obligately_anaerobic.html","obligately anaerobic"],["environment/strictly_anaerobic.html","strictly anaerobic"]],"b":[["METPO%3A1000607","obligately anaerobic"],["METPO%3A1000611","strictly anaerobic"]]},{"id":"METPO:1003002","l":"alkaliphilic","na":2,"nb":2,"a":[["environment/alkaphilic.html","alkaliphilic"],["environment/obligately_alkaphilic.html","obligately alkaliphilic"]],"b":[["METPO%3A1003002","alkaliphilic"],["METPO%3A1003004","obligately alkaliphilic"]]},{"id":"NCBITaxon:1232683","l":"Marinobacterium lacunae","na":2,"nb":2,"a":[["morphology/cell_length_medium.html","cell length medium"],["morphology/cell_width_large.html","cell width large"]],"b":[["TED%3AAF-A0A081FTJ9-F1-model_v4_TED01","TED novel fold AF-A0A081FTJ9-F1-model_v4_TED01"],["TED%3AAF-A0A081FX50-F1-model_v4_TED01","TED novel fold AF-A0A081FX50-F1-model_v4_TED01"]]},{"id":"GO:0046677","l":"response to antibiotic","na":1,"nb":7410,"a":[["physiology/antibiotic_resistance.html","antibiotic resistance"]],"b":[["UniProtKB-KW%3AKW-0046","Antibiotic resistance"],["GO%3A0071236","cellular response to antibiotic"],["GO%3A0072716","response to actinomycin D"],["GO%3A0046677","response to antibiotic"],["GO%3A0046678","response to bacteriocin"],["GO%3A0031001","response to brefeldin A"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii (strain ATCC 43067 / DSM 2661 / JAL-1 / JCM 10045 / NBRC 100440)","na":1,"nb":5181,"a":[["metabolism/methanogenesis.html","Methanogenesis"]],"b":[["EC%3A1.12.99.-","With other acceptors"],["EC%3A1.3.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.3.-.-","Acting on the CH-CH group of donors"],["EC%3A1.8.98.-","With other, known, acceptors"],["EC%3A1.97.1.-","Other oxidoreductases"],["EC%3A2.1.2.-","Hydroxymethyl-, formyl- and related transferases"]]},{"id":"GO:0016020","l":"membrane","na":1,"nb":3003,"a":[["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"]],"b":[["ComplexPortal%3ACPX-1813","1,3-beta-D-glucan synthase complex, FKS2-RHO1 variant"],["ComplexPortal%3ACPX-4313","Aliphatic sulfonate ABC transporter complex"],["ComplexPortal%3ACPX-4314","Arabinose ABC transporter complex"],["ComplexPortal%3ACPX-4318","Arginine ABC transporter complex, artI variant"],["ComplexPortal%3ACPX-4319","Arginine ABC transporter complex, artJ variant"],["ComplexPortal%3ACPX-6308","ATP10B-CDC50A P4-ATPase complex"]]},{"id":"GO:0005886","l":"plasma membrane","na":1,"nb":861,"a":[["environment/desiccation_tolerant.html","desiccation tolerant"]],"b":[["ComplexPortal%3ACPX-2838","3M complex"],["ComplexPortal%3ACPX-850","AHNAK - Annexin A2 - S100-A10 complex"],["ComplexPortal%3ACPX-6581","Alpha-beta T cell receptor complex, TRBC1 variant"],["ComplexPortal%3ACPX-6482","Alpha-beta T cell receptor complex, TRBC2 variant"],["ComplexPortal%3ACPX-2188","Amiloride-sensitive sodium channel complex, alpha-beta-gamma"],["ComplexPortal%3ACPX-3582","AMT1-1 - AMT1-3 heterotrimer, variant 1"]]},{"id":"CHEBI:28938","l":"ammonium","na":1,"nb":837,"a":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_28938","requires ammonium"],["EC%3A1.13.12.15","3,4-dihydroxyphenylalanine oxidative deaminase"],["EC%3A1.13.99.3","tryptophan 2'-dioxygenase"],["EC%3A1.14.11.37","kanamycin B dioxygenase"],["EC%3A1.14.12.1","anthranilate 1,2-dioxygenase (deaminating, decarboxylating)"],["EC%3A1.14.12.14","2-aminobenzenesulfonate 2,3-dioxygenase"]]},{"id":"GO:0016491","l":"oxidoreductase activity","na":1,"nb":695,"a":[["physiology/chemotrophic.html","chemotrophic"]],"b":[["GO%3A0047143","chlorate reductase activity"],["GO%3A0051213","dioxygenase activity"],["GO%3A0043364","glycyl-radical enzyme activating activity"],["GO%3A0004497","monooxygenase activity"],["GO%3A0050781","ortho-trichlorophenol reductive dehalogenase activity"],["GO%3A0016675","oxidoreductase activity, acting on a heme group of donors"]]},{"id":"GO:0003824","l":"catalytic activity","na":1,"nb":663,"a":[["upper/enzyme.html","enzyme"]],"b":[["GO%3A0140640","catalytic activity, acting on a nucleic acid"],["GO%3A0140096","catalytic activity, acting on a protein"],["GO%3A0003824","catalytic activity"],["GO%3A0009975","cyclase activity"],["GO%3A0160215","deacylase activity"],["GO%3A0032451","demethylase activity"]]},{"id":"GO:0071944","l":"cell periphery","na":1,"nb":440,"a":[["morphology/spiral_shaped.html","spiral shaped"]],"b":[["GO%3A0071944","cell periphery"],["PANTHER%3APTHR31468","1,3-BETA-GLUCANOSYLTRANSFERASE GAS1"],["PANTHER%3APTHR28145","12 KDA HEAT SHOCK PROTEIN"],["PANTHER%3APTHR42755","3-DEOXY-MANNO-OCTULOSONATE CYTIDYLYLTRANSFERASE"],["PANTHER%3APTHR46574","43 KDA RECEPTOR-ASSOCIATED PROTEIN OF THE SYNAPSE"],["PANTHER%3APTHR15182","A-KINASE ANCHOR PROTEIN 5-RELATED"]]},{"id":"GO:0005840","l":"ribosome","na":1,"nb":418,"a":[["physiology/dormancy.html","dormancy"]],"b":[["ComplexPortal%3ACPX-2854","Elongation Factor eEF1 complex, variant CAM1"],["ComplexPortal%3ACPX-425","Elongation Factor eEF1 complex, variant TEF4"],["ComplexPortal%3ACPX-427","Eukaryotic translation initiation factor 2 complex"],["ComplexPortal%3ACPX-430","Eukaryotic translation initiation factor 4F complex, variant TIF4631"],["ComplexPortal%3ACPX-431","Eukaryotic translation initiation factor 4F complex, variant TIF4632"],["ComplexPortal%3ACPX-1295","MKT1-PBP1 translation regulation complex"]]},{"id":"GO:0006260","l":"DNA replication","na":1,"nb":311,"a":[["genomics/gc_skew.html","GC skew"]],"b":[["ComplexPortal%3ACPX-6641","ASCC DNA alkylation repair complex"],["ComplexPortal%3ACPX-568","Chromatin assembly factor 1 complex"],["ComplexPortal%3ACPX-2671","CMG helicase complex"],["ComplexPortal%3ACPX-297","CMG helicase complex"],["ComplexPortal%3ACPX-4526","CMG helicase complex"],["ComplexPortal%3ACPX-4541","CMG helicase complex"]]},{"id":"GO:0008800","l":"beta-lactamase activity","na":1,"nb":311,"a":[["physiology/antibiotic_resistance.html","antibiotic resistance"]],"b":[["EC%3A3.5.2.6","beta-lactamase"],["RHEA%3A20401","a beta-lactam + H2O = a substituted beta-amino acid"],["GO%3A0008800","beta-lactamase activity"],["NCBIfam%3ANF038195","AAK family class A beta-lactamase"],["NCBIfam%3ANF000397","ACC family cephalosporin-hydrolyzing class C beta-lactamase"],["NCBIfam%3ANF000448","ACI family class A beta-lactamase"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":297,"a":[["physiology/dormancy.html","dormancy"]],"b":[["IDPO%3A0000002","disorder"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000045","phosphorylation display site"],["IDPO%3A0000059","self-inhibition"],["Pfam%3APF17837","4'-phosphopantetheinyl transferase N-terminal domain"]]},{"id":"GO:0006281","l":"DNA repair","na":1,"nb":272,"a":[["environment/radiotolerant.html","radiotolerant"]],"b":[["ComplexPortal%3ACPX-4426","BRCA1-B complex"],["ComplexPortal%3ACPX-4721","BRCA1-B complex"],["ComplexPortal%3ACPX-568","Chromatin assembly factor 1 complex"],["ComplexPortal%3ACPX-1959","HU complex, variant hupA"],["ComplexPortal%3ACPX-1958","HU complex, variant hupAB"],["ComplexPortal%3ACPX-863","INO80 chromatin remodeling complex"]]},{"id":"GO:0031090","l":"organelle membrane","na":1,"nb":270,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["GO%3A0098588","bounding membrane of organelle"],["GO%3A0005789","endoplasmic reticulum membrane"],["GO%3A0032580","Golgi cisterna membrane"],["GO%3A0110146","magnetosome membrane"],["GO%3A0031966","mitochondrial membrane"],["GO%3A0031965","nuclear membrane"]]},{"id":"GO:0016301","l":"kinase activity","na":1,"nb":246,"a":[["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["GO%3A0050515","4-(cytidine 5'-diphospho)-2-C-methyl-D-erythritol kinase activity"],["GO%3A0140383","4-hydroxytryptamine kinase activity"],["GO%3A0047590","5-dehydro-2-deoxygluconokinase activity"],["GO%3A0047336","5-methyldeoxycytidine-5'-phosphate kinase activity"],["GO%3A0008776","acetate kinase activity"],["GO%3A0047601","acetate kinase (diphosphate) activity"]]},{"id":"GO:0008152","l":"metabolic process","na":1,"nb":224,"a":[["metabolism/metabolism.html","metabolism"]],"b":[["GO%3A0006666","3-keto-sphinganine metabolic process"],["GO%3A0008291","acetylcholine metabolic process"],["GO%3A0006081","aldehyde metabolic process"],["GO%3A0019330","aldoxime metabolic process"],["GO%3A0009820","alkaloid metabolic process"],["GO%3A0000255","allantoin metabolic process"]]},{"id":"CHEBI:15740","l":"formate","na":1,"nb":173,"a":[["metabolism/syntrophy.html","Syntrophy"]],"b":[["EC%3A1.1.98.6","ribonucleoside-triphosphate reductase (formate)"],["EC%3A1.10.3.15","grixazone synthase"],["EC%3A1.13.11.41","2,4'-dihydroxyacetophenone dioxygenase"],["EC%3A1.13.11.53","acireductone dioxygenase (Ni(2+)-requiring)"],["EC%3A1.13.11.54","acireductone dioxygenase (Fe(2+)-requiring)"],["EC%3A1.13.11.72","2-hydroxyethylphosphonate dioxygenase"]]},{"id":"GO:0016791","l":"phosphatase activity","na":1,"nb":171,"a":[["physiology/naphthol_as_bi_phosphohydrolase_activity.html","naphthol-AS-BI-phosphohydrolase activity"]],"b":[["ComplexPortal%3ACPX-120","Prostatic acid phosphatase complex"],["ComplexPortal%3ACPX-121","Prostatic acid phosphatase complex"],["GO%3A0033885","10-hydroxy-9-(phosphonooxy)octadecanoate phosphatase activity"],["GO%3A0047538","2-carboxy-D-arabinitol-1-phosphatase activity"],["GO%3A0043716","2-hydroxy-3-keto-5-methylthiopentenyl-1-phosphate phosphatase activity"],["GO%3A0050532","2-phosphosulfolactate phosphatase activity"]]},{"id":"NCBITaxon:99287","l":"Salmonella typhimurium (strain LT2 / SGSC1412 / ATCC 700720)","na":1,"nb":167,"a":[["metabolism/tetrathionate_respiration.html","tetrathionate respiration"]],"b":[["Pfam%3APF16031","TonB polyproline region"],["Pfam%3APF13521","AAA domain"],["Pfam%3APF26341","tRNA 2-selenouridine synthase AAA domain"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"],["Pfam%3APF09317","Acyl-CoA dehydrogenase, C-terminal, bacterial type"],["Pfam%3APF06315","Isocitrate dehydrogenase kinase/phosphatase (AceK) kinase domain"]]},{"id":"GO:0015979","l":"photosynthesis","na":1,"nb":146,"a":[["metabolism/photosynthesis.html","photosynthesis"]],"b":[["GO%3A0015979","photosynthesis"],["NCBIfam%3ATIGR01337","allophycocyanin subunit beta"],["NCBIfam%3ATIGR03056","alpha/beta fold hydrolase BchO"],["NCBIfam%3ANF013497","Apocytochrome F, C-terminal"],["NCBIfam%3ANF014391","Bacteriochlorophyll A protein"],["NCBIfam%3ANF058502","C-phycocyanin alpha-cysteine-84 phycocyanobilin lyase subunit CpcE"]]},{"id":"NCBITaxon:71421","l":"Haemophilus influenzae (strain ATCC 51907 / DSM 11121 / KW20 / Rd)","na":1,"nb":133,"a":[["genomics/restriction_modification_system.html","restriction-modification system"]],"b":[["Pfam%3APF13521","AAA domain"],["Pfam%3APF13654","LonB-like, AAA domain"],["Pfam%3APF16326","ABC transporter C-terminal domain"],["Pfam%3APF13710","ACT domain"],["Pfam%3APF12633","Adenylate cyclase NT domain"],["Pfam%3APF26690","Adenylate cyclase, class-I, third domain"]]},{"id":"GO:0006457","l":"protein folding","na":1,"nb":129,"a":[["environment/temperature_range_high.html","temperature range high"]],"b":[["ComplexPortal%3ACPX-2156","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-2772","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-6030","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-2113","GroEL-GroES complex"],["ComplexPortal%3ACPX-1671","Prefoldin co-chaperone complex"],["ComplexPortal%3ACPX-2389","Prefoldin co-chaperone complex"]]},{"id":"GO:0030154","l":"cell differentiation","na":1,"nb":108,"a":[["morphology/heterocyst.html","heterocyst"]],"b":[["GO%3A0048657","anther wall tapetum cell differentiation"],["GO%3A0009557","antipodal cell differentiation"],["GO%3A1903498","bundle sheath cell differentiation"],["GO%3A0035051","cardiocyte differentiation"],["GO%3A0030154","cell differentiation"],["GO%3A0021533","cell differentiation in hindbrain"]]},{"id":"CHEBI:15343","l":"acetaldehyde","na":1,"nb":88,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"]],"b":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.5.5","alcohol dehydrogenase (quinone)"],["EC%3A1.1.99.36","alcohol dehydrogenase (nicotinoprotein)"],["EC%3A1.13.11.88","isoeugenol monooxygenase"],["EC%3A1.13.12.16","nitronate monooxygenase"],["EC%3A1.2.1.10","acetaldehyde dehydrogenase (acetylating)"]]},{"id":"GO:0009307","l":"DNA restriction-modification system","na":1,"nb":83,"a":[["genomics/restriction_modification_system.html","restriction-modification system"]],"b":[["ComplexPortal%3ACPX-5285","McrBC 5-methylcytosine-specific restriction endonuclease complex"],["ComplexPortal%3ACPX-5628","Type I restriction-modification EcoKI complex"],["GO%3A0009307","DNA restriction-modification system"],["NCBIfam%3ANF007277","5-methylcytosine-specific restriction endonuclease system specificity protein McrC"],["NCBIfam%3ATIGR02986","Alw26I/Eco31I/Esp3I family type II restriction endonuclease"],["NCBIfam%3ANF020756","AvaI/BsoBI family type II restriction endonuclease"]]},{"id":"CHEBI:15354","l":"choline","na":1,"nb":78,"a":[["environment/euryhaline.html","euryhaline"]],"b":[["EC%3A1.1.3.17","choline oxidase"],["EC%3A1.1.99.1","choline dehydrogenase"],["EC%3A1.14.15.7","choline monooxygenase"],["EC%3A2.3.1.6","choline O-acetyltransferase"],["EC%3A2.3.1.91","sinapoylglucose--choline O-sinapoyltransferase"],["EC%3A2.7.1.32","choline kinase"]]},{"id":"CHEBI:29806","l":"fumarate(2-)","na":1,"nb":76,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["EC%3A1.3.1.6","fumarate reductase (NADH)"],["EC%3A1.3.2.4","fumarate reductase (cytochrome)"],["EC%3A1.3.4.1","fumarate reductase (CoM/CoB)"],["EC%3A1.3.5.1","succinate dehydrogenase"],["EC%3A1.3.98.1","dihydroorotate oxidase (fumarate)"],["EC%3A3.7.1.14","2-hydroxy-6-oxonona-2,4-dienedioate hydrolase"]]},{"id":"GO:0004803","l":"transposase activity","na":1,"nb":73,"a":[["genomics/transposable_element.html","transposable element"]],"b":[["GO%3A0004803","transposase activity"],["NCBIfam%3ANF015365","IS1 family transposase"],["NCBIfam%3ANF033558","IS1 family transposase"],["NCBIfam%3ANF033542","IS110 family RNA-guided transposase"],["NCBIfam%3ANF033551","IS1182 family transposase"],["NCBIfam%3ANF033544","IS1249 family transposase"]]},{"id":"GO:0006413","l":"translational initiation","na":1,"nb":67,"a":[["genomics/codon_usage_bias.html","codon usage bias"]],"b":[["ComplexPortal%3ACPX-427","Eukaryotic translation initiation factor 2 complex"],["ComplexPortal%3ACPX-1831","Eukaryotic translation initiation factor 3 core complex"],["ComplexPortal%3ACPX-3482","Eukaryotic translation initiation factor 4E-Mxt complex"],["ComplexPortal%3ACPX-2666","Eukaryotic translation initiation factor 4F, EIF4A1 and EIF4G1 variant"],["ComplexPortal%3ACPX-5863","Eukaryotic translation initiation factor 4F, EIF4A1 and EIF4G1 variant"],["ComplexPortal%3ACPX-5635","Eukaryotic translation initiation factor 4F, EIF4A1 and EIF4G3 variant"]]},{"id":"GO:0006950","l":"response to stress","na":1,"nb":67,"a":[["physiology/stress_response.html","stress response"]],"b":[["GO%3A0033554","cellular response to stress"],["GO%3A0006952","defense response"],["GO%3A0033555","multicellular organismal response to stress"],["GO%3A0003299","muscle hypertrophy in response to stress"],["GO%3A0009271","phage shock"],["GO%3A0034059","response to anoxia"]]},{"id":"GO:0031012","l":"extracellular matrix","na":1,"nb":64,"a":[["ecology/biofilm_formation.html","biofilm formation"]],"b":[["ComplexPortal%3ACPX-461","155 kDa platelet multimerin complex"],["ComplexPortal%3ACPX-960","Collagen type II trimer"],["ComplexPortal%3ACPX-1749","Collagen type X trimer"],["ComplexPortal%3ACPX-2971","Collagen type X trimer"],["ComplexPortal%3ACPX-1750","Collagen type XI trimer variant 1"],["ComplexPortal%3ACPX-2975","Collagen type XI trimer variant 1"]]},{"id":"GO:0006289","l":"nucleotide-excision repair","na":1,"nb":60,"a":[["environment/uv_radiation_tolerant.html","UV radiation tolerant"]],"b":[["ComplexPortal%3ACPX-2757","CRL4-ERCC8 E3 ubiquitin ligase complex, CUL4A variant"],["ComplexPortal%3ACPX-2758","CRL4-ERCC8 E3 ubiquitin ligase complex, CUL4B variant"],["ComplexPortal%3ACPX-1837","CUL3-HRT1-ELC1-ELA1 ubiquitin ligase complex"],["ComplexPortal%3ACPX-478","ERCC1-XPF endonuclease complex"],["ComplexPortal%3ACPX-491","Ercc1-Xpf endonuclease complex"],["ComplexPortal%3ACPX-1659","General transcription factor TFIIH complex"]]},{"id":"InterPro:IPR000792","l":"Transcription regulator LuxR-like, C-terminal","na":1,"nb":59,"a":[["physiology/quorum_sensing.html","quorum sensing"]],"b":[["GO%3A0071111","cyclic-guanylate-specific phosphodiesterase activity"],["GO%3A0048031","trisaccharide binding"],["GO%3A1990451","cellular stress response to acidic pH"],["GO%3A0000023","maltose metabolic process"],["GO%3A0000160","phosphorelay signal transduction system"],["GO%3A0045913","positive regulation of carbohydrate metabolic process"]]},{"id":"CHEBI:17976","l":"","na":1,"nb":56,"a":[["metabolism/electron_transfer.html","Electron transfer"]],"b":[["EC%3A1.1.5.14","fructose 5-dehydrogenase"],["EC%3A1.1.5.2","quinoprotein glucose dehydrogenase (PQQ, quinone)"],["EC%3A1.1.5.3","glycerol-3-phosphate dehydrogenase"],["EC%3A1.1.5.5","alcohol dehydrogenase (quinone)"],["EC%3A1.10.3.11","ubiquinol oxidase (non-electrogenic)"],["EC%3A1.10.3.17","superoxide oxidase"]]},{"id":"GO:0006979","l":"response to oxidative stress","na":1,"nb":50,"a":[["physiology/oxidative_stress_response.html","oxidative stress response"]],"b":[["ComplexPortal%3ACPX-9082","19S-20S-PA28-alphabeta hybrid proteasome complex"],["ComplexPortal%3ACPX-9085","19S-20S-PA28-gamma hybrid proteasome complex"],["ComplexPortal%3ACPX-8806","20S proteasome complex"],["ComplexPortal%3ACPX-4862","Alkyl hydroperoxide reductase complex"],["ComplexPortal%3ACPX-8842","PA28-alphabeta double-capped 20S proteasome complex"],["ComplexPortal%3ACPX-9002","PA28-alphabeta single-capped 20S proteasome complex"]]},{"id":"CHEBI:16947","l":"citrate(3-)","na":1,"nb":49,"a":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"]],"b":[["EC%3A2.3.3.1","citrate (Si)-synthase"],["EC%3A2.3.3.16","citrate synthase (unknown stereospecificity)"],["EC%3A2.3.3.3","citrate (Re)-synthase"],["EC%3A2.3.3.8","ATP citrate synthase"],["EC%3A2.8.3.10","citrate CoA-transferase"],["EC%3A4.1.3.6","citrate (pro-3S)-lyase"]]},{"id":"CHEBI:16199","l":"urea","na":1,"nb":48,"a":[["physiology/urease_activity.html","urease activity"]],"b":[["EC%3A3.5.1.5","urease"],["EC%3A3.5.1.95","N-malonylurea hydrolase"],["EC%3A3.5.3.1","arginase"],["EC%3A3.5.3.10","D-arginase"],["EC%3A3.5.3.11","agmatinase"],["EC%3A3.5.3.14","amidinoaspartase"]]},{"id":"NCBITaxon:93061","l":"Staphylococcus aureus (strain NCTC 8325 / PS 47)","na":1,"nb":47,"a":[["physiology/catalase_activity.html","catalase activity"]],"b":[["IDPO%3A0000033","flexible linker"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF07694","5TMR of 5TMR-LYT"],["Pfam%3APF01757","Acyltransferase domain"],["Pfam%3APF18719","ArlS sensor domain"],["Pfam%3APF02216","B domain"]]},{"id":"CHEBI:22563","l":"","na":1,"nb":46,"a":[["environment/euryhaline.html","euryhaline"]],"b":[["TCDB%3A1.C.55","The Agrobacterial VirE2 Target Host Cell Membrane Anion Channel (VirE2) Family"],["TCDB%3A1.A.46","The Anion Channel-forming Bestrophin (Bestrophin) Family"],["TCDB%3A1.A.48","The Anion Channel Tweety (Tweety) Family"],["TCDB%3A2.A.31","The Anion Exchanger (AE) Family"],["TCDB%3A2.A.85","The Aromatic Acid Exporter (ArAE) Family"],["TCDB%3A2.A.45","The Arsenite-Antimonite (ArsB) Efflux Family"]]},{"id":"GO:0006313","l":"DNA transposition","na":1,"nb":46,"a":[["genomics/transposable_element.html","transposable element"]],"b":[["GO%3A0006313","DNA transposition"],["GO%3A0098038","non-replicative DNA transposition"],["GO%3A0098039","replicative DNA transposition"],["NCBIfam%3ANF015365","IS1 family transposase"],["NCBIfam%3ANF038385","IS66-like element accessory protein TnpA"],["NCBIfam%3ANF040815","site-specific tyrosine recombinase/integron integrase"]]},{"id":"GO:0042254","l":"ribosome biogenesis","na":1,"nb":44,"a":[["genomics/rrna_operon_copy_number.html","rRNA operon copy number"]],"b":[["ComplexPortal%3ACPX-8940","Ribosome biogenesis complex"],["GO%3A0042254","ribosome biogenesis"],["NCBIfam%3ANF012679","50S ribosomal protein L10"],["NCBIfam%3ANF016308","Gar1/Naf1 RNA binding region"],["NCBIfam%3ANF016057","nucleolar RNA-binding Nop10p family protein"],["NCBIfam%3ATIGR01575","ribosomal protein S18-alanine N-acetyltransferase"]]},{"id":"CHEBI:16480","l":"nitric oxide","na":1,"nb":43,"a":[["ecology/biofilm_formation.html","biofilm formation"]],"b":[["EC%3A1.14.12.17","nitric oxide dioxygenase"],["EC%3A1.14.13.39","nitric-oxide synthase (NADPH)"],["EC%3A1.14.14.47","nitric-oxide synthase (flavodoxin)"],["EC%3A1.14.15.41","L-tryptophan 4-nitrase"],["EC%3A1.14.15.42","L-tyrosine 3-nitrase"],["EC%3A1.7.1.14","nitric oxide reductase [NAD(P)(+), nitrous oxide-forming]"]]},{"id":"GO:0045271","l":"respiratory chain complex I","na":1,"nb":43,"a":[["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"]],"b":[["ComplexPortal%3ACPX-266","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-577","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-8628","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-8638","Mitochondrial respiratory chain complex I, testis-specific variant"],["ComplexPortal%3ACPX-243","Respiratory chain complex I"],["GO%3A0045271","respiratory chain complex I"]]},{"id":"CHEBI:29036","l":"copper(2+)","na":1,"nb":40,"a":[["environment/copper_tolerant.html","copper tolerant"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29036","requires copper(2+)"],["EC%3A1.1.9.1","alcohol dehydrogenase (azurin)"],["EC%3A1.16.3.4","cuproxidase"],["EC%3A1.17.9.1","4-methylphenol dehydrogenase (hydroxylating)"],["EC%3A1.17.9.2","(+)-pinoresinol hydroxylase"],["EC%3A1.20.9.1","arsenate reductase (azurin)"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima (strain ATCC 43589 / DSM 3109 / JCM 10099 / NBRC 100826 / MSB8)","na":1,"nb":39,"a":[["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"]],"b":[["Pfam%3APF02829","3H domain"],["Pfam%3APF13175","AAA ATPase domain"],["Pfam%3APF01958","Aspartate dehydrogenase, C-terminal"],["Pfam%3APF05448","Acetyl xylan esterase (AXE1)"],["Pfam%3APF04509","CheC-like family"],["Pfam%3APF13690","Chemotaxis phosphatase CheX"]]},{"id":"CHEBI:17272","l":"propionate","na":1,"nb":34,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["EC%3A1.3.1.125","acrylate reductase"],["EC%3A2.7.2.15","propionate kinase"],["EC%3A2.8.3.1","propionate CoA-transferase"],["EC%3A2.8.3.27","propanoyl-CoA:succinate CoA transferase"],["EC%3A4.1.3.32","2,3-dimethylmalate lyase"],["EC%3A6.2.1.13","acetate--CoA ligase (ADP-forming)"]]},{"id":"GO:0003674","l":"molecular_function","na":1,"nb":34,"a":[["upper/biological_process.html","biological process"]],"b":[["GO%3A0016209","antioxidant activity"],["GO%3A0140657","ATP-dependent activity"],["GO%3A0005488","binding"],["GO%3A0038024","cargo receptor activity"],["GO%3A0003824","catalytic activity"],["GO%3A0003774","cytoskeletal motor activity"]]},{"id":"CHEBI:17968","l":"butyrate","na":1,"nb":33,"a":[["ecology/gut_associated.html","gut-associated"]],"b":[["EC%3A1.3.1.31","2-enoate reductase"],["EC%3A2.3.1.315","succinyl-CoA:cyclohexane-1-carboxylate CoA transferase"],["EC%3A2.7.2.7","butyrate kinase"],["EC%3A2.8.3.9","butyrate--acetoacetate CoA-transferase"],["EC%3A3.1.1.51","phorbol-diester hydrolase"],["EC%3A3.7.1.7","beta-diketone hydrolase"]]},{"id":"GO:0009522","l":"photosystem I","na":1,"nb":33,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"]],"b":[["GO%3A0030093","chloroplast photosystem I"],["GO%3A0009522","photosystem I"],["GO%3A0030094","plasma membrane-derived photosystem I"],["NCBIfam%3ANF014449","photosystem I assembly protein Ycf4"],["NCBIfam%3ATIGR01336","photosystem I core protein PsaB"],["NCBIfam%3ANF014578","photosystem I reaction center subunit II"]]},{"id":"CHEBI:29748","l":"","na":1,"nb":30,"a":[["morphology/green_pigmented.html","green pigmented"]],"b":[["EC%3A2.6.1.123","4-amino-4-deoxychorismate synthase (2-amino-4-deoxychorismate-forming)"],["EC%3A2.6.1.85","aminodeoxychorismate synthase"],["EC%3A2.6.1.86","2-amino-4-deoxychorismate synthase"],["EC%3A3.3.2.13","chorismatase"],["EC%3A4.1.3.27","anthranilate synthase"],["EC%3A4.1.3.40","chorismate lyase"]]},{"id":"CHEBI:24636","l":"","na":1,"nb":28,"a":[["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"]],"b":[["TCDB%3A3.A.4","The Arsenite-Antimonite (ArsAB) Efflux Family"],["TCDB%3A2.A.61","The C4-dicarboxylate Uptake C (DcuC) Family"],["TCDB%3A2.A.106","The Ca2+:H+ Antiporter-2 (CaCA2) Family"],["TCDB%3A1.A.110","The Channel-forming Otopetrin (OTOP) Family"],["TCDB%3A9.A.14","The G-protein-coupled receptor (GPCR) Family"],["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"]]},{"id":"GO:0004565","l":"beta-galactosidase activity","na":1,"nb":28,"a":[["physiology/beta_galactosidase_activity.html","beta-galactosidase activity"]],"b":[["EC%3A3.2.1.23","beta-galactosidase"],["GO%3A0004565","beta-galactosidase activity"],["GO%3A0033943","galactan 1,3-beta-galactosidase activity"],["NCBIfam%3ANF041004","beta-galactosidase BgaS"],["NCBIfam%3ANF041462","beta-galactosidase GalA"],["NCBIfam%3ANF041463","beta-galactosidase GalB"]]},{"id":"GO:0046148","l":"pigment biosynthetic process","na":1,"nb":27,"a":[["morphology/pigmentation.html","pigmentation"]],"b":[["GO%3A0120577","1,2-dehydro-N-acetyldopamine biosynthetic process"],["GO%3A0120576","1,2-dehydro-N-beta-alanyldopamine biosynthetic process"],["GO%3A0009718","anthocyanin-containing compound biosynthetic process"],["GO%3A0051551","aurone biosynthetic process"],["GO%3A0016117","carotenoid biosynthetic process"],["GO%3A0015995","chlorophyll biosynthetic process"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":1,"nb":26,"a":[["morphology/heterocyst.html","heterocyst"]],"b":[["Pfam%3APF27270","Alr1449"],["Pfam%3APF27301","Alr2735 N-terminal domain"],["Pfam%3APF27288","Alr2735"],["Pfam%3APF21571","Arginine dihydrolase ArgZ-like, C-terminal, first region"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF13205","Bacterial Ig-like domain"]]},{"id":"GO:0000910","l":"cytokinesis","na":1,"nb":24,"a":[["morphology/cell_length.html","cell length"]],"b":[["ComplexPortal%3ACPX-24856","GNAI1-RGS14, Gi-signalling regulatory complex"],["GO%3A0061639","Cdv-dependent cytokinesis"],["GO%3A0000911","cytokinesis by cell plate formation"],["GO%3A0000910","cytokinesis"],["GO%3A0061640","cytoskeleton-dependent cytokinesis"],["GO%3A0043093","FtsZ-dependent cytokinesis"]]},{"id":"GO:0006783","l":"heme biosynthetic process","na":1,"nb":24,"a":[["physiology/catalase_activity.html","catalase activity"]],"b":[["ComplexPortal%3ACPX-8302","ABCB10-ABCB7-FECH ABC transporter"],["GO%3A0006784","heme A biosynthetic process"],["GO%3A0006785","heme B biosynthetic process"],["GO%3A0006783","heme biosynthetic process"],["GO%3A0006786","heme C biosynthetic process"],["GO%3A0048034","heme O biosynthetic process"]]},{"id":"GO:0031412","l":"gas vesicle organization","na":1,"nb":24,"a":[["morphology/gas_vesicle.html","gas vesicle"]],"b":[["GO%3A0031412","gas vesicle organization"],["NCBIfam%3ANF041667","gas vesicle accessory protein GvpU"],["NCBIfam%3ANF046092","gas vesicle protein GvpA"],["NCBIfam%3ANF052351","gas vesicle protein GvpF"],["NCBIfam%3ANF045779","gas vesicle protein GvpG"],["NCBIfam%3ANF046090","gas vesicle protein GvpJ"]]},{"id":"CHEBI:24996","l":"lactate","na":1,"nb":23,"a":[["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]],"b":[["EC%3A1.1.1.436","lactate dehydrogenase (NAD(+),ferredoxin)"],["EC%3A3.5.1.124","protein deglycase"],["RHEA%3A57300","an N(2)-(1-hydroxy-2-oxopropyl)-2'-deoxyguanosine in DNA + H2O = a 2'-deoxyguanosine in DNA + lactate + H(+)"],["RHEA%3A57288","an N(2)-(1-hydroxy-2-oxopropyl)-guanosine in RNA + H2O = a guanosine in RNA + lactate + H(+)"],["RHEA%3A46964","lactate + 2 reduced [2Fe-2S]-[ferredoxin] + 2 NAD(+) = 2 oxidized [2Fe-2S]-[ferredoxin] + pyruvate + 2 NADH"],["RHEA%3A57244","N(2)-(1-hydroxy-2-oxopropyl)-dGTP + H2O = lactate + dGTP + H(+)"]]},{"id":"CHEBI:29242","l":"","na":1,"nb":23,"a":[["environment/arsenic_tolerant.html","arsenic tolerant"]],"b":[["EC%3A1.20.2.1","arsenate reductase (cytochrome c)"],["EC%3A1.20.4.1","arsenate reductase (glutathione/glutaredoxin)"],["EC%3A1.20.4.3","mycoredoxin"],["EC%3A1.20.4.4","arsenate reductase (thioredoxin)"],["EC%3A1.20.9.1","arsenate reductase (azurin)"],["EC%3A1.20.99.1","arsenate reductase (donor)"]]},{"id":"GO:0004563","l":"beta-N-acetylhexosaminidase activity","na":1,"nb":23,"a":[["physiology/beta_n_acetylhexosaminidase_activity.html","beta-N-acetylhexosaminidase activity"]],"b":[["EC%3A3.2.1.52","beta-N-acetylhexosaminidase"],["ComplexPortal%3ACPX-502","Beta-hexosaminidase A complex"],["ComplexPortal%3ACPX-689","Beta-hexosaminidase A complex"],["ComplexPortal%3ACPX-686","Beta-hexosaminidase B complex"],["ComplexPortal%3ACPX-690","Beta-hexosaminidase B complex"],["ComplexPortal%3ACPX-687","Beta-hexosaminidase S complex"]]},{"id":"GO:0008843","l":"endochitinase activity","na":1,"nb":23,"a":[["metabolism/biopolymer_degradation.html","biopolymer degradation"]],"b":[["EC%3A3.2.1.14","chitinase"],["GO%3A0008843","endochitinase activity"],["MCSA%3A819","chitinase C"],["MCSA%3A478","chitinase (GH18, Class II)"],["MCSA%3A817","chitinase (GH18, class II)"],["MCSA%3A475","chitinase (GH19, Class II)"]]},{"id":"GO:0009847","l":"spore germination","na":1,"nb":23,"a":[["physiology/spore_germination.html","spore germination"]],"b":[["GO%3A0120164","conidium germination"],["GO%3A0075226","encysted zoospore germination"],["GO%3A0009847","spore germination"],["proteintraitsmech%3ASEED_SUBSYSTEM_Spore_germination","Spore germination"],["NCBIfam%3ATIGR00912","endospore germination permease"],["NCBIfam%3ATIGR02887","Ger(x)C family spore germination protein"]]},{"id":"NCBITaxon:266834","l":"Rhizobium meliloti (strain 1021)","na":1,"nb":23,"a":[["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"]],"b":[["Pfam%3APF13279","Thioesterase-like superfamily"],["Pfam%3APF26956","ACR family N-terminal ACT domain"],["Pfam%3APF27143","Atu0565 family"],["Pfam%3APF27488","BioS helical-like domain"],["Pfam%3APF05853","beta-keto acid cleavage enzyme"],["Pfam%3APF13746","4Fe-4S dicluster domain"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":1,"nb":23,"a":[["ecology/biosafety_level_3.html","biosafety level 3"]],"b":[["Pfam%3APF09255","Caf1 Capsule antigen"],["Pfam%3APF02611","CDP-diacylglycerol pyrophosphatase"],["Pfam%3APF07411","Domain of unknown function (DUF1508)"],["Pfam%3APF05171","Haemin-degrading HemS.ChuX domain"],["Pfam%3APF21500","DNA polymerase III subunit delta', AAA+ ATPase lid domain"],["Pfam%3APF11004","3-deoxy-D-manno-oct-2-ulosonic acid (Kdo) hydroxylase"]]},{"id":"CHEBI:27547","l":"zeaxanthin","na":1,"nb":22,"a":[["morphology/orange_pigmented.html","orange pigmented"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_27547","requires zeaxanthin"],["EC%3A1.13.11.65","carotenoid isomerooxygenase"],["EC%3A1.13.11.84","crocetin dialdehyde synthase"],["EC%3A1.14.15.21","zeaxanthin epoxidase"],["EC%3A1.14.15.24","beta-carotene 3-hydroxylase"],["EC%3A1.14.99.64","zeaxanthin 4-ketolase"]]},{"id":"GO:0003341","l":"cilium movement","na":1,"nb":21,"a":[["ecology/soil_dwelling.html","soil-dwelling"]],"b":[["ComplexPortal%3ACPX-8086","Nexin-dynein regulatory complex"],["ComplexPortal%3ACPX-2626","Outer dynein arm-docking complex"],["ComplexPortal%3ACPX-8161","Radial spoke complex, ciliiar variant"],["ComplexPortal%3ACPX-8163","Radial spoke complex, ciliiar variant"],["ComplexPortal%3ACPX-8162","Radial spoke complex, flagellar variant"],["GO%3A0003341","cilium movement"]]},{"id":"NCBITaxon:243230","l":"Deinococcus radiodurans (strain ATCC 13939 / DSM 20539 / JCM 16871 / CCUG 27074 / LMG 4051 / NBRC 15346 / NCIMB 9279 / VKM B-1422 / R1)","na":1,"nb":21,"a":[["environment/radiotolerant.html","radiotolerant"]],"b":[["Pfam%3APF07282","Cas12f1-like, TNB domain"],["Pfam%3APF26517","DNA damage response protein D family"],["Pfam%3APF07733","Bacterial DNA polymerase III alpha NTPase domain"],["Pfam%3APF17657","Bacterial DNA polymerase III alpha subunit finger domain"],["Pfam%3APF11638","DnaA N-terminal domain"],["Pfam%3APF09348","Domain of unknown function (DUF1990)"]]},{"id":"CHEBI:18420","l":"","na":1,"nb":20,"a":[["morphology/cell_width_small.html","cell width small"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18420","requires magnesium(2+)"],["EC%3A4.99.1.10","magnesium dechelatase"],["EC%3A6.6.1.1","magnesium chelatase"],["EC%3A7.2.2.14","P-type Mg(2+) transporter"],["RHEA%3A52788","chlorophyll a + 2 H(+) = pheophytin a + Mg(2+)"],["RHEA%3A52792","chlorophyllide a + 2 H(+) = pheophorbide a + Mg(2+)"]]},{"id":"GO:0000725","l":"recombinational repair","na":1,"nb":20,"a":[["genomics/ploidy.html","ploidy"]],"b":[["ComplexPortal%3ACPX-2197","Exodeoxyribonuclease V complex"],["ComplexPortal%3ACPX-1732","Ku70:Ku80 complex"],["ComplexPortal%3ACPX-1993","Ku70:Ku80 complex"],["ComplexPortal%3ACPX-2047","Ku70:Ku80 complex"],["ComplexPortal%3ACPX-2048","Ku70:Ku80 complex"],["ComplexPortal%3ACPX-5124","RuvAB Holliday junction DNA helicase complex"]]},{"id":"GO:0003989","l":"acetyl-CoA carboxylase activity","na":1,"nb":20,"a":[["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"]],"b":[["EC%3A6.4.1.2","acetyl-CoA carboxylase"],["RHEA%3A11308","hydrogencarbonate + acetyl-CoA + ATP = malonyl-CoA + ADP + phosphate + H(+)"],["ComplexPortal%3ACPX-3206","Acetyl-CoA carboxylase complex"],["GO%3A0003989","acetyl-CoA carboxylase activity"],["NCBIfam%3ANF015228","Acetyl co-enzyme A carboxylase carboxyltransferase-like"],["NCBIfam%3ATIGR00531","acetyl-CoA carboxylase biotin carboxyl carrier protein"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":1,"nb":20,"a":[["morphology/s_layer.html","S-layer"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF27529","AMPT"],["Pfam%3APF24856","L-arabinose isomerase central domain"],["Pfam%3APF02610","L-arabinose isomerase N-terminal domain"],["Pfam%3APF11762","L-arabinose isomerase C-terminal domain"],["Pfam%3APF17727","CtsR C-terminal dimerization domain"]]},{"id":"CHEBI:17057","l":"cellobiose","na":1,"nb":19,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["EC%3A1.1.3.5","hexose oxidase"],["EC%3A1.1.99.18","cellobiose dehydrogenase (acceptor)"],["EC%3A2.4.1.20","cellobiose phosphorylase"],["EC%3A2.7.1.205","protein-N(pi)-phosphohistidine--D-cellobiose phosphotransferase"],["EC%3A2.7.1.85","beta-glucoside kinase"],["EC%3A5.1.3.11","cellobiose epimerase"]]},{"id":"GO:0003993","l":"acid phosphatase activity","na":1,"nb":19,"a":[["physiology/acid_phosphatase_activity.html","acid phosphatase activity"]],"b":[["EC%3A3.1.3.2","acid phosphatase"],["ComplexPortal%3ACPX-120","Prostatic acid phosphatase complex"],["ComplexPortal%3ACPX-121","Prostatic acid phosphatase complex"],["GO%3A0003993","acid phosphatase activity"],["NCBIfam%3ATIGR01672","acid phosphatase AphA"],["NCBIfam%3ANF045654","acid phosphatase PhoC"]]},{"id":"GO:0004559","l":"alpha-mannosidase activity","na":1,"nb":19,"a":[["physiology/alpha_mannosidase_activity.html","alpha-mannosidase activity"]],"b":[["EC%3A3.2.1.24","alpha-mannosidase"],["GO%3A0004559","alpha-mannosidase activity"],["GO%3A0004569","glycoprotein endo-alpha-1,2-mannosidase activity"],["GO%3A0033915","mannan 1,2-(1,3)-alpha-mannosidase activity"],["GO%3A0008496","mannan endo-1,6-alpha-mannosidase activity"],["GO%3A0033941","mannan exo-1,2-1,6-alpha-mannosidase activity"]]},{"id":"GO:0008150","l":"biological_process","na":1,"nb":19,"a":[["upper/biological_process.html","biological process"]],"b":[["GO%3A0044848","biological phase"],["GO%3A0008150","biological_process"],["GO%3A0044419","biological process involved in interspecies interaction between organisms"],["GO%3A0051703","biological process involved in intraspecies interaction between organisms"],["GO%3A0065007","biological regulation"],["GO%3A0009987","cellular process"]]},{"id":"GO:0019290","l":"siderophore biosynthetic process","na":1,"nb":19,"a":[["physiology/siderophore_production.html","siderophore production"]],"b":[["GO%3A0140614","1,8-dihydroxynaphthalene-melanin biosynthetic process"],["GO%3A0042861","achromobactin biosynthetic process"],["GO%3A0019540","catechol-containing siderophore biosynthetic process"],["GO%3A0042858","chrysobactin biosynthetic process"],["GO%3A0019539","hydroxymate-containing siderophore biosynthetic process"],["GO%3A0042864","pyochelin biosynthetic process"]]},{"id":"GO:0043885","l":"anaerobic carbon-monoxide dehydrogenase activity","na":1,"nb":19,"a":[["physiology/carboxydotrophic.html","carboxydotrophic"]],"b":[["EC%3A1.2.7.4","anaerobic carbon-monoxide dehydrogenase"],["RHEA%3A21040","CO + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O = 2 reduced [2Fe-2S]-[ferredoxin] + CO2 + 2 H(+)"],["GO%3A0043885","anaerobic carbon-monoxide dehydrogenase activity"],["NCBIfam%3ATIGR02416","aerobic carbon-monoxide dehydrogenase large subunit"],["NCBIfam%3ATIGR01702","anaerobic carbon-monoxide dehydrogenase catalytic subunit"],["NCBIfam%3ATIGR00314","CO dehydrogenase/acetyl-CoA synthase complex subunit alpha"]]},{"id":"GO:0045277","l":"respiratory chain complex IV","na":1,"nb":19,"a":[["physiology/oxidase_activity.html","oxidase activity"]],"b":[["ComplexPortal%3ACPX-1721","Mitochondrial respiratory chain complex IV, COX5A variant"],["ComplexPortal%3ACPX-1722","Mitochondrial respiratory chain complex IV, COX5B variant"],["ComplexPortal%3ACPX-6123","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-8620","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-9641","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-8621","Mitochondrial respiratory chain complex IV, testis-specific variant"]]},{"id":"GO:0045493","l":"xylan catabolic process","na":1,"nb":19,"a":[["metabolism/xylan_degradation.html","xylan degradation"]],"b":[["GO%3A2000888","arabinoxylan-containing compound catabolic process"],["GO%3A2000886","glucuronoxylan catabolic process"],["GO%3A0045493","xylan catabolic process"],["NCBIfam%3ANF042968","acetylxylan esterase AxeA1"],["NCBIfam%3ANF041579","beta-xylosidase"],["NCBIfam%3ANF042969","bifunctional acetylxylan esterase/glucomannan deacetylase AxeC2"]]},{"id":"CHEBI:16838","l":"polyphosphate","na":1,"nb":18,"a":[["environment/zinc_tolerant.html","zinc tolerant"]],"b":[["EC%3A2.7.1.63","polyphosphate--glucose phosphotransferase"],["EC%3A2.7.4.1","ATP-polyphosphate phosphotransferase"],["EC%3A2.7.4.17","3-phosphoglyceroyl-phosphate--polyphosphate phosphotransferase"],["EC%3A2.7.4.20","dolichyl-diphosphate--polyphosphate phosphotransferase"],["EC%3A2.7.4.33","AMP-polyphosphate phosphotransferase"],["EC%3A2.7.4.34","GDP-polyphosphate phosphotransferase"]]},{"id":"CHEBI:16169","l":"","na":1,"nb":17,"a":[["morphology/pigmentation.html","pigmentation"]],"b":[["EC%3A1.13.11.27","4-hydroxyphenylpyruvate dioxygenase"],["EC%3A1.13.11.5","homogentisate 1,2-dioxygenase"],["EC%3A1.14.13.18","4-hydroxyphenylacetate 1-monooxygenase"],["EC%3A1.14.13.63","3-hydroxyphenylacetate 6-hydroxylase"],["EC%3A2.5.1.115","homogentisate phytyltransferase"],["EC%3A2.5.1.116","homogentisate geranylgeranyltransferase"]]},{"id":"GO:0051701","l":"biological process involved in interaction with host","na":1,"nb":17,"a":[["ecology/plant_pathogen.html","plant pathogen"]],"b":[["GO%3A0044002","acquisition of nutrients from host"],["GO%3A0044406","adhesion of symbiont to host"],["GO%3A0051701","biological process involved in interaction with host"],["GO%3A0035891","exit from host cell"],["GO%3A0044001","migration in host"],["GO%3A0075136","response to host"]]},{"id":"GO:0106435","l":"carboxylesterase activity","na":1,"nb":17,"a":[["physiology/carboxylesterase_activity.html","carboxylesterase activity"]],"b":[["EC%3A3.1.1.1","carboxylesterase"],["RHEA%3A63052","1-O-methyl-(5Z,8Z,11Z,14Z)-eicosatetraenoate + H2O = methanol + (5Z,8Z,11Z,14Z)-eicosatetraenoate + H(+)"],["RHEA%3A21164","a carboxylic ester + H2O = an alcohol + a carboxylate + H(+)"],["RHEA%3A59388","a fatty acid ester + H2O = an aliphatic alcohol + a fatty acid + H(+)"],["RHEA%3A50148","a fatty acid ethyl ester + H2O = ethanol + a fatty acid + H(+)"],["RHEA%3A31779","an all-trans-retinyl ester + H2O = 13-cis-retinol + a fatty acid + H(+)"]]},{"id":"GO:0110143","l":"magnetosome","na":1,"nb":17,"a":[["morphology/magnetosome.html","magnetosome"]],"b":[["GO%3A0110143","magnetosome"],["NCBIfam%3ANF040997","liposome tubulation protein MamY"],["NCBIfam%3ANF040917","magnetic particle specific iron-binding protein Mms6"],["NCBIfam%3ANF040986","magnetosome biogenesis transporter MamH"],["NCBIfam%3ANF040989","magnetosome biogenesis transporter MamN"],["NCBIfam%3ANF040998","magnetosome biogenesis transporter MamZ"]]},{"id":"UniProt:P35149","l":"","na":1,"nb":17,"a":[["morphology/spore_shaped.html","spore shaped"]],"b":[["EC%3A3.6.1.-","In phosphorus-containing anhydrides"],["GO%3A0043595","endospore cortex"],["GO%3A0042601","endospore-forming forespore"],["GO%3A0031160","spore wall"],["GO%3A0000270","peptidoglycan metabolic process"],["GO%3A0009847","spore germination"]]},{"id":"CHEBI:48828","l":"cobalt(2+)","na":1,"nb":16,"a":[["environment/cobalt_tolerant.html","cobalt tolerant"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_48828","requires cobalt(2+)"],["EC%3A1.16.99.1","[Co(II) methylated amine-specific corrinoid protein] reductase"],["EC%3A4.99.1.3","sirohydrochlorin cobaltochelatase"],["EC%3A6.6.1.2","cobaltochelatase"],["RHEA%3A65832","2 Co(II)-[dimethylamine-specific corrinoid protein] + AH2 + ATP + H2O = 2 Co(I)-[dimethylamine-specific corrinoid protein] + A + ADP + phosphate + 3 H(+)"],["RHEA%3A65816","2 Co(II)-[methylamine-specific corrinoid protein] + AH2 + ATP + H2O = 2 Co(I)-[methylamine-specific corrinoid protein] + A + ADP + phosphate + 3 H(+)"]]},{"id":"GO:0004556","l":"alpha-amylase activity","na":1,"nb":16,"a":[["metabolism/starch_degradation.html","starch degradation"]],"b":[["EC%3A3.2.1.1","alpha-amylase"],["GO%3A0004556","alpha-amylase activity"],["NCBIfam%3ANF041321","alpha-amylase MalA"],["NCBIfam%3ANF006971","alpha-amylase"],["NCBIfam%3ANF007051","alpha-amylase"],["NCBIfam%3ANF007052","alpha-amylase"]]},{"id":"GO:0004566","l":"beta-glucuronidase activity","na":1,"nb":16,"a":[["physiology/beta_glucuronidase_activity.html","beta-glucuronidase activity"]],"b":[["EC%3A3.2.1.31","beta-glucuronidase"],["RHEA%3A76111","4-methylumbelliferone beta-D-glucuronate + H2O = 4-methylumbelliferone + D-glucuronate"],["RHEA%3A17633","a beta-D-glucuronoside + H2O = D-glucuronate + an alcohol"],["RHEA%3A30475","oroxylin A 7-O-beta-D-glucuronate + H2O = oroxylin A + D-glucuronate + H(+)"],["RHEA%3A28326","wogonin 7-O-beta-D-glucuronate + H2O = wogonin + D-glucuronate + H(+)"],["GO%3A0004566","beta-glucuronidase activity"]]},{"id":"InterPro:IPR002105","l":"Dockerin type I repeat","na":1,"nb":16,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["Pfam%3APF17996","Carbohydrate esterase 2 N-terminal"],["Pfam%3APF02927","Cellulase N-terminal ig-like domain"],["Pfam%3APF00963","Cohesin domain"],["Pfam%3APF00404","Dockerin type I domain"],["Pfam%3APF07554","FIVAR domain"]]},{"id":"GO:0045273","l":"respiratory chain complex II (succinate dehydrogenase)","na":1,"nb":15,"a":[["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"]],"b":[["ComplexPortal%3ACPX-561","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-562","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-564","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-565","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-566","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-8622","Mitochondrial respiratory chain complex II"]]},{"id":"GO:0045490","l":"pectin catabolic process","na":1,"nb":15,"a":[["metabolism/pectin_degradation.html","pectin degradation"]],"b":[["GO%3A0045490","pectin catabolic process"],["NCBIfam%3ANF002091","5-dehydro-4-deoxy-D-glucuronate isomerase"],["NCBIfam%3ANF025934","oligogalacturonate lyase family protein"],["NCBIfam%3ANF041904","pectate disaccharide-lyase PelW"],["NCBIfam%3ANF041903","pectate disaccharide-lyase PelX"],["NCBIfam%3ANF041898","pectate lyase PelI"]]},{"id":"InterPro:IPR028629","l":"","na":1,"nb":15,"a":[["genomics/crispr_cas_system.html","CRISPR-Cas system"]],"b":[["Pfam%3APF18470","Cas9 alpha-helical lobe domain"],["Pfam%3APF17893","CRISPR-associated endonuclease Cas9 beta-hairpin domain"],["Pfam%3APF18525","Cas9 C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"],["Pfam%3APF16595","PAM-interacting domain of CRISPR-associated endonuclease Cas9"],["Pfam%3APF18070","CRISPR-Cas9 PI domain"]]},{"id":"METPO:1000802","l":"Anaerobic respiration","na":15,"nb":1,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/arsenate_respiration.html","arsenate respiration"],["metabolism/chlorate_respiration.html","chlorate respiration"],["metabolism/dimethyl_sulfoxide_respiration.html","dimethyl sulfoxide respiration"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"]],"b":[["METPO%3A1000802","Anaerobic respiration"]]},{"id":"METPO:1002005","l":"Fermentation","na":15,"nb":1,"a":[["metabolism/acetone_butanol_ethanol_fermentation.html","acetone-butanol-ethanol fermentation"],["metabolism/butanediol_fermentation.html","2,3-butanediol fermentation"],["metabolism/butyric_acid_fermentation.html","butyric acid fermentation"],["metabolism/citrate_fermentation.html","citrate fermentation"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"]],"b":[["METPO%3A1002005","Fermentation"]]},{"id":"UniProt:P09373","l":"","na":1,"nb":15,"a":[["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"]],"b":[["EC%3A2.3.1.54","formate C-acetyltransferase"],["RHEA%3A11844","formate + acetyl-CoA = pyruvate + CoA"],["GO%3A0008861","formate C-acetyltransferase activity"],["NCBIfam%3ATIGR01255","formate C-acetyltransferase"],["InterPro%3AIPR019777","Formate C-acetyltransferase glycine radical, conserved site"],["CDD%3Acd01678","PFL1"]]},{"id":"GO:0004629","l":"C-type glycerophospholipase activity","na":1,"nb":14,"a":[["physiology/lecithinase_activity.html","lecithinase activity"]],"b":[["GO%3A0004629","C-type glycerophospholipase activity"],["GO%3A0140335","GPI anchor phospholipase C activity"],["GO%3A0140324","lysophospholipase C activity"],["GO%3A0034480","phosphatidylcholine phospholipase C activity"],["GO%3A0034479","phosphatidylglycerol phospholipase C activity"],["GO%3A0004435","phosphatidylinositol-4,5-bisphosphate phospholipase C activity"]]},{"id":"GO:0009408","l":"response to heat","na":1,"nb":14,"a":[["physiology/heat_shock_response.html","heat shock response"]],"b":[["ComplexPortal%3ACPX-4887","DNA-directed RNA polymerase holoenzyme complex, SigmaH variant"],["ComplexPortal%3ACPX-636","ISW1b chromatin remodeling complex"],["GO%3A0034605","cellular response to heat"],["GO%3A0036168","filamentous growth of a population of unicellular organisms in response to heat"],["GO%3A0010286","heat acclimation"],["GO%3A0009408","response to heat"]]},{"id":"GO:0015891","l":"siderophore transport","na":1,"nb":14,"a":[["physiology/siderophore_production.html","siderophore production"]],"b":[["GO%3A0042935","achromobactin transport"],["GO%3A0042932","chrysobactin transport"],["GO%3A0042930","enterobactin transport"],["GO%3A0044718","siderophore transmembrane transport"],["GO%3A0015891","siderophore transport"],["NCBIfam%3ANF007349","catecholate siderophore receptor Fiu"]]},{"id":"GO:0090599","l":"alpha-glucosidase activity","na":1,"nb":14,"a":[["physiology/alpha_glucosidase_activity.html","alpha-glucosidase activity"]],"b":[["GO%3A0004558","alpha-1,4-glucosidase activity"],["GO%3A0090599","alpha-glucosidase activity"],["GO%3A0004135","amylo-alpha-1,6-glucosidase activity"],["GO%3A0033933","branched-dextran exo-1,2-alpha-glucosidase activity"],["GO%3A0106407","Glc2Man9GlcNAc2 oligosaccharide glucosidase activity"],["GO%3A0004573","Glc3Man9GlcNAc2 oligosaccharide glucosidase activity"]]},{"id":"UniProt:Q58256","l":"","na":1,"nb":14,"a":[["metabolism/methanogenesis.html","Methanogenesis"]],"b":[["GO%3A0050524","coenzyme-B sulfoethylthiotransferase activity"],["GO%3A0015948","methanogenesis"],["NCBIfam%3ATIGR03256","coenzyme-B sulfoethylthiotransferase subunit alpha"],["InterPro%3AIPR009047","Methyl-coenzyme M reductase, alpha subunit, C-terminal"],["InterPro%3AIPR003183","Methyl-coenzyme M reductase, alpha subunit, N-terminal"],["Pfam%3APF02745","Methyl-coenzyme M reductase alpha subunit, N-terminal domain"]]},{"id":"GO:0004781","l":"sulfate adenylyltransferase (ATP) activity","na":1,"nb":13,"a":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["EC%3A2.7.7.4","sulfate adenylyltransferase"],["RHEA%3A18133","sulfate + ATP + H(+) = adenosine 5'-phosphosulfate + diphosphate"],["ComplexPortal%3ACPX-4471","Sulfate adenylyltransferase complex"],["GO%3A0004781","sulfate adenylyltransferase (ATP) activity"],["NCBIfam%3ATIGR02034","sulfate adenylyltransferase, large subunit"],["NCBIfam%3ATIGR02039","sulfate adenylyltransferase, small subunit"]]},{"id":"GO:0016859","l":"cis-trans isomerase activity","na":1,"nb":13,"a":[["environment/temperature_delta_high.html","temperature delta high"]],"b":[["GO%3A0047466","2-chloro-4-carboxymethylenebut-2-en-1,4-olide isomerase activity"],["GO%3A0090471","9,15,9'-tri-cis-zeta-carotene isomerase activity"],["GO%3A0106365","beta-carotene isomerase activity"],["GO%3A0046608","carotenoid isomerase activity"],["GO%3A0016859","cis-trans isomerase activity"],["GO%3A0047885","farnesol 2-isomerase activity"]]},{"id":"GO:0120253","l":"hydrocarbon catabolic process","na":1,"nb":13,"a":[["metabolism/hydrocarbon_degradation.html","hydrocarbon degradation"]],"b":[["GO%3A0043448","alkane catabolic process"],["GO%3A0043451","alkene catabolic process"],["GO%3A0043454","alkyne catabolic process"],["GO%3A1900996","benzene catabolic process"],["GO%3A0018915","ethylbenzene catabolic process"],["GO%3A0019429","fluorene catabolic process"]]},{"id":"InterPro:IPR000673","l":"Signal transduction response regulator, chemotaxis, protein-glutamate methylesterase","na":1,"nb":13,"a":[["physiology/chemotaxis.html","chemotaxis"]],"b":[["GO%3A1990827","deaminase binding"],["GO%3A0008984","protein-glutamate methylesterase activity"],["GO%3A0050568","protein-glutamine glutaminase activity"],["GO%3A0006482","protein demethylation"],["NCBIfam%3ANF001965","chemotaxis-specific protein-glutamate methyltransferase CheB"],["NCBIfam%3ANF009206","chemotaxis-specific protein-glutamate methyltransferase CheB"]]},{"id":"UniProt:P0A7G6","l":"","na":1,"nb":13,"a":[["physiology/sos_response.html","SOS response"]],"b":[["ComplexPortal%3ACPX-5544","DNA polymerase V mutasome complex"],["GO%3A0140664","ATP-dependent DNA damage sensor activity"],["NCBIfam%3ATIGR02012","recombinase RecA"],["InterPro%3AIPR020584","DNA recombination/repair protein RecA, conserved site"],["CDD%3Acd00983","RecA"],["InterPro%3AIPR020587","DNA recombination and repair protein RecA, monomer-monomer interface"]]},{"id":"GO:0004536","l":"DNA nuclease activity","na":1,"nb":12,"a":[["physiology/dnase_activity.html","DNase activity"]],"b":[["GO%3A0004520","DNA endonuclease activity"],["GO%3A0004529","DNA exonuclease activity"],["GO%3A0004536","DNA nuclease activity"],["NCBIfam%3ANF053575","GINS-associated RecJ family nuclease"],["NCBIfam%3ANF053577","Hef-associated nuclease"],["NCBIfam%3ANF053576","RecJ family nuclease"]]},{"id":"GO:0008964","l":"phosphoenolpyruvate carboxylase activity","na":1,"nb":12,"a":[["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"]],"b":[["EC%3A4.1.1.31","phosphoenolpyruvate carboxylase"],["RHEA%3A28370","oxaloacetate + phosphate = phosphoenolpyruvate + hydrogencarbonate"],["GO%3A0008964","phosphoenolpyruvate carboxylase activity"],["NCBIfam%3ANF000584","phosphoenolpyruvate carboxylase"],["NCBIfam%3ANF012532","phosphoenolpyruvate carboxylase"],["NCBIfam%3ANF025376","phosphoenolpyruvate carboxylase"]]},{"id":"GO:0009512","l":"cytochrome b6f complex","na":1,"nb":12,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"]],"b":[["GO%3A0009512","cytochrome b6f complex"],["NCBIfam%3ANF014576","cytochrome b6-f complex subunit PetG"],["NCBIfam%3ANF016971","cytochrome b6-f complex subunit PetL"],["NCBIfam%3ANF015687","cytochrome b6-f complex subunit PetN"],["NCBIfam%3ANF050003","cytochrome b6f subunit PetP"],["NCBIfam%3ANF019653","PetM family cytochrome b6-f complex subunit 7"]]},{"id":"GO:0045275","l":"respiratory chain complex III","na":1,"nb":12,"a":[["physiology/organoheterotrophic.html","organoheterotrophic"]],"b":[["ComplexPortal%3ACPX-560","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-563","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-567","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-8730","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-9308","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-8737","Mitochondrial respiratory chain complex III, testis-specific variant"]]},{"id":"InterPro:IPR000780","l":"MCP methyltransferase, CheR-type","na":1,"nb":12,"a":[["physiology/chemotaxis.html","chemotaxis"]],"b":[["GO%3A0098561","methyl accepting chemotaxis protein complex"],["GO%3A0008983","protein-glutamate O-methyltransferase activity"],["NCBIfam%3ANF007902","protein-glutamate O-methyltransferase CheR"],["InterPro%3AIPR022641","Chemotaxis receptor methyltransferase CheR, N-terminal"],["InterPro%3AIPR000780","MCP methyltransferase, CheR-type"],["InterPro%3AIPR022642","MCP methyltransferase, CheR-type, SAM-binding domain, C-terminal"]]},{"id":"UniProt:P04949","l":"","na":1,"nb":12,"a":[["morphology/flagellated.html","flagellated"]],"b":[["InterPro%3AIPR049365","Flagellin, barrel domain"],["InterPro%3AIPR046358","Flagellin, C-terminal domain"],["InterPro%3AIPR014981","Flagellin D3"],["InterPro%3AIPR001029","Flagellin, N-terminal domain"],["Pfam%3APF08884","Flagellin D3 domain"],["Pfam%3APF21504","Flagellin, barrel domain"]]},{"id":"UniProt:P23874","l":"","na":1,"nb":12,"a":[["physiology/persister_cell_formation.html","persister cell formation"]],"b":[["ComplexPortal%3ACPX-180","HipBA toxin-antitoxin complex"],["GO%3A0001217","DNA-binding transcription repressor activity"],["GO%3A0022611","dormancy process"],["GO%3A0036289","peptidyl-serine autophosphorylation"],["GO%3A0040008","regulation of growth"],["GO%3A0044010","single-species biofilm formation"]]},{"id":"CHEBI:16510","l":"","na":1,"nb":11,"a":[["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"]],"b":[["EC%3A1.1.1.298","3-hydroxypropionate dehydrogenase (NADP(+))"],["EC%3A1.1.1.59","3-hydroxypropionate dehydrogenase"],["EC%3A6.2.1.36","3-hydroxypropionyl-CoA synthase"],["RHEA%3A59432","3-hydroxypropanal + NAD(+) + H2O = 3-hydroxypropanoate + NADH + 2 H(+)"],["RHEA%3A59428","3-hydroxypropanal + NADP(+) + H2O = 3-hydroxypropanoate + NADPH + 2 H(+)"],["RHEA%3A67136","3-hydroxypropanoate + ATP + CoA = 3-hydroxypropanoyl-CoA + ADP + phosphate"]]},{"id":"CHEBI:16724","l":"4-hydroxybutyrate","na":1,"nb":11,"a":[["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]],"b":[["EC%3A1.1.1.61","4-hydroxybutyrate dehydrogenase"],["EC%3A1.1.1.n11","succinic semialdehyde reductase"],["EC%3A1.1.99.24","hydroxyacid-oxoacid transhydrogenase"],["EC%3A6.2.1.40","4-hydroxybutyrate--CoA ligase (AMP-forming)"],["EC%3A6.2.1.56","4-hydroxybutyrate--CoA ligase (ADP-forming)"],["RHEA%3A24734","4-hydroxybutanoate + 2-oxoglutarate = (R)-2-hydroxyglutarate + succinate semialdehyde"]]},{"id":"GO:0004737","l":"pyruvate decarboxylase activity","na":1,"nb":11,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"]],"b":[["EC%3A4.1.1.1","pyruvate decarboxylase"],["RHEA%3A55072","2-oxobutanoate + H(+) = propanal + CO2"],["RHEA%3A50312","2-oxopentanoate + H(+) = butanal + CO2"],["RHEA%3A54356","3-methyl-2-oxobutanoate + H(+) = 2-methylpropanal + CO2"],["RHEA%3A54360","4-methyl-2-oxopentanoate + H(+) = 3-methylbutanal + CO2"],["RHEA%3A11628","a 2-oxocarboxylate + H(+) = an aldehyde + CO2"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":1,"nb":11,"a":[["ecology/opportunistic_pathogen.html","opportunistic pathogen"]],"b":[["Pfam%3APF22829","HphA C-terminal domain"],["Pfam%3APF22828","HphA N-terminal heme-binding domain"],["Pfam%3APF28205","Ciprofloxacin tolerance protein"],["Pfam%3APF19582","Solute-binding protein AdeT 1/2"],["PROSITE%3APS00337","Beta-lactamase class-D active site"],["Pfam%3APF24575","Surface lipoprotein assembly modifier, N-terminal TPR repeats"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":1,"nb":11,"a":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF02085","Class III cytochrome C family"],["Pfam%3APF06397","Desulfoferrodoxin, N-terminal domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["Pfam%3APF12797","4Fe-4S binding domain"],["Pfam%3APF06180","Cobalt chelatase (CbiK)"]]},{"id":"UniProt:P0A7C2","l":"","na":1,"nb":11,"a":[["physiology/sos_response.html","SOS response"]],"b":[["NCBIfam%3ATIGR00498","transcriptional repressor LexA"],["proteintraitsmech%3AMEROPS_CLEAVAGE_S24_001","repressor LexA cleavage specificity"],["CDD%3Acd06529","S24_LexA-like"],["InterPro%3AIPR039418","LexA-like"],["InterPro%3AIPR006199","LexA repressor, DNA-binding domain"],["InterPro%3AIPR015927","Peptidase S24/S26A/S26B/S26C"]]},{"id":"UniProt:P0AEK4","l":"","na":1,"nb":11,"a":[["physiology/homeoviscous_adaptation.html","homeoviscous adaptation"]],"b":[["GO%3A1902494","catalytic complex"],["GO%3A0004318","enoyl-[acyl-carrier-protein] reductase (NADH) activity"],["GO%3A0070404","NADH binding"],["GO%3A0009102","biotin biosynthetic process"],["GO%3A0030497","fatty acid elongation"],["GO%3A0008610","lipid biosynthetic process"]]},{"id":"GO:0004557","l":"alpha-galactosidase activity","na":1,"nb":10,"a":[["physiology/alpha_galactosidase_activity.html","alpha-galactosidase activity"]],"b":[["EC%3A3.2.1.22","alpha-galactosidase"],["RHEA%3A21112","a globoside Gb3Cer (d18:1(4E)) + H2O = a beta-D-Gal-(1->4)-beta-D-Glc-(1<->1)-Cer(d18:1(4E)) + D-galactose"],["RHEA%3A28663","melibiose + H2O = D-galactose + D-glucose"],["GO%3A0004557","alpha-galactosidase activity"],["GO%3A0052692","raffinose alpha-galactosidase activity"],["NCBIfam%3ANF053652","beta-L-arabinopyranosidase"]]},{"id":"GO:0008218","l":"bioluminescence","na":1,"nb":10,"a":[["physiology/bioluminescence.html","bioluminescence"]],"b":[["GO%3A0008218","bioluminescence"],["NCBIfam%3ANF052253","fatty acid reductase transferase subunit LuxD"],["NCBIfam%3ANF052244","long-chain-fatty-acid--protein ligase LuxE"],["NCBIfam%3ANF052254","luciferase subunit alpha"],["NCBIfam%3ANF052255","luciferase subunit beta"],["InterPro%3AIPR007534","Acyl-protein synthetase, LuxE"]]},{"id":"GO:0030313","l":"cell envelope","na":1,"nb":10,"a":[["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"]],"b":[["GO%3A0030313","cell envelope"],["PANTHER%3APTHR39576","ATTACHING AND EFFACING PROTEIN HOMOLOG-RELATED-RELATED"],["PANTHER%3APTHR38762","CRYPTIC OUTER MEMBRANE PORIN BGLH-RELATED"],["PANTHER%3APTHR41164","CURLI PRODUCTION ASSEMBLY/TRANSPORT COMPONENT CSGG"],["PANTHER%3APTHR30036","D-XYLOSE-BINDING PERIPLASMIC PROTEIN"],["PANTHER%3APTHR30532","IRON III DICITRATE-BINDING PERIPLASMIC PROTEIN"]]},{"id":"GO:0035434","l":"copper ion transmembrane transport","na":1,"nb":10,"a":[["environment/copper_tolerant.html","copper tolerant"]],"b":[["ComplexPortal%3ACPX-2254","Cus cation efflux complex"],["GO%3A0140636","copper import into the mitochondrion"],["GO%3A0140145","copper ion export from vacuole"],["GO%3A0060003","copper ion export"],["GO%3A0097430","copper ion import across prospore membrane"],["GO%3A7770057","copper ion import into Golgi lumen"]]},{"id":"GO:0046274","l":"lignin catabolic process","na":1,"nb":10,"a":[["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["GO%3A1990487","anaerobic lignin catabolic process"],["GO%3A1901062","guaiacyl lignin catabolic process"],["GO%3A0046274","lignin catabolic process"],["GO%3A1901059","p-hydroxyphenyl lignin catabolic process"],["GO%3A1901065","syringal lignin catabolic process"],["NCBIfam%3ANF042997","beta-etherase"]]},{"id":"NCBITaxon:192222","l":"Campylobacter jejuni subsp. jejuni serotype O:2 (strain ATCC 700819 / NCTC 11168)","na":1,"nb":10,"a":[["environment/capnophilic.html","capnophilic"]],"b":[["Pfam%3APF26365","Apolipoprotein N-acyltransferase integral membrane domain"],["Pfam%3APF22131","CRISPR-associated endonuclease CjCas9 PI-CTD domain"],["Pfam%3APF22129","CRISPR-associated endonuclease CjCas9 wedge domain"],["Pfam%3APF02554","Carbon starvation protein CstA"],["Pfam%3APF27310","HrcA C-terminal domain"],["Pfam%3APF05538","Campylobacter major outer membrane protein"]]},{"id":"NCBITaxon:224911","l":"Bradyrhizobium diazoefficiens (strain JCM 10833 / BCRC 13528 / IAM 13628 / NBRC 14792 / USDA 110)","na":1,"nb":10,"a":[["morphology/subpolar_flagellation.html","subpolar flagellation"]],"b":[["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["Pfam%3APF14715","N-terminal domain of cytochrome oxidase-cbb3, FixP"],["Pfam%3APF03886","ABC-type transport auxiliary lipoprotein component"],["Pfam%3APF10649","Protein of unknown function (DUF2478)"],["Pfam%3APF01924","Hydrogenase formation hypA family"],["PROSITE%3APS00882","Nickel-dependent hydrogenases b-type cytochrome subunit signature 1"]]},{"id":"UniProt:P06534","l":"","na":1,"nb":10,"a":[["morphology/spore_forming.html","spore forming"]],"b":[["GO%3A0090529","cell septum assembly"],["GO%3A0051606","detection of stimulus"],["GO%3A0000160","phosphorelay signal transduction system"],["GO%3A0045881","positive regulation of sporulation resulting in formation of a cellular spore"],["GO%3A0090606","single-species surface biofilm formation"],["NCBIfam%3ATIGR02875","sporulation transcription factor Spo0A"]]},{"id":"UniProt:P0A9X9","l":"","na":1,"nb":10,"a":[["physiology/cold_shock_response.html","cold shock response"]],"b":[["GO%3A0001072","transcription antitermination factor activity, RNA binding"],["GO%3A0060567","negative regulation of termination of DNA-templated transcription"],["NCBIfam%3ANF007679","RNA chaperone/antiterminator CspA"],["NCBIfam%3ANF049933","transcription antiterminator/RNA stability regulator CspE"],["InterPro%3AIPR019844","Cold-shock domain, conserved site"],["CDD%3Acd04458","CSP_CDS"]]},{"id":"CHEBI:17234","l":"glucose","na":9,"nb":1,"a":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/biopolymer_degradation.html","biopolymer degradation"],["metabolism/cellulolysis.html","cellulolysis"],["metabolism/does_not_use_as_carbon_source.html","does not use as carbon source"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/starch_degradation.html","starch degradation"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:48775","l":"cadmium(2+)","na":1,"nb":9,"a":[["environment/cadmium_tolerant.html","cadmium tolerant"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_48775","requires cadmium(2+)"],["EC%3A7.2.2.2","ABC-type Cd(2+) transporter"],["EC%3A7.2.2.21","Cd(2+)-exporting ATPase"],["RHEA%3A12132","Cd(2+)(in) + ATP + H2O = Cd(2+)(out) + ADP + phosphate + H(+)"],["RHEA%3A28707","Cd(2+)(in) = Cd(2+)(out)"],["RHEA%3A28739","Cd(2+)(in) + H(+)(out) = Cd(2+)(out) + H(+)(in)"]]},{"id":"GO:0004324","l":"ferredoxin-NADP+ reductase activity","na":1,"nb":9,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"]],"b":[["EC%3A1.18.1.2","ferredoxin--NADP(+) reductase"],["RHEA%3A20125","2 reduced [2Fe-2S]-[ferredoxin] + NADP(+) + H(+) = 2 oxidized [2Fe-2S]-[ferredoxin] + NADPH"],["GO%3A0004324","ferredoxin-NADP+ reductase activity"],["NCBIfam%3ANF008178","ferredoxin--NADP(+) reductase"],["NCBIfam%3ANF045929","ferredoxin--NADP reductase"],["MCSA%3A142","ferredoxin-NADP+ reductase (adrenodoxin-type)"]]},{"id":"GO:0004560","l":"alpha-L-fucosidase activity","na":1,"nb":9,"a":[["physiology/alpha_fucosidase_activity.html","alpha-fucosidase activity"]],"b":[["EC%3A3.2.1.51","alpha-L-fucosidase"],["RHEA%3A12288","an alpha-L-fucoside + H2O = L-fucose + an alcohol"],["GO%3A0047513","1,2-alpha-L-fucosidase activity"],["GO%3A0033932","1,3-alpha-L-fucosidase activity"],["GO%3A0033938","1,6-alpha-L-fucosidase activity"],["GO%3A0004560","alpha-L-fucosidase activity"]]},{"id":"GO:0004568","l":"chitinase activity","na":1,"nb":9,"a":[["metabolism/chitinolysis.html","chitinolysis"]],"b":[["GO%3A0004568","chitinase activity"],["GO%3A0008843","endochitinase activity"],["GO%3A0035885","exochitinase activity"],["InterPro%3AIPR013540","Chitinase A N-terminal"],["InterPro%3AIPR000726","Glycoside hydrolase, family 19, catalytic"],["NCBIfam%3ANF019930","chitinase N-terminal domain-containing protein"]]},{"id":"GO:0004586","l":"ornithine decarboxylase activity","na":1,"nb":9,"a":[["physiology/ornithine_decarboxylase_activity.html","ornithine decarboxylase activity"]],"b":[["EC%3A4.1.1.17","ornithine decarboxylase"],["RHEA%3A22964","L-ornithine + H(+) = putrescine + CO2"],["GO%3A0004586","ornithine decarboxylase activity"],["NCBIfam%3ATIGR04301","ornithine decarboxylase SpeF"],["MCSA%3A860","ornithine decarboxylase"],["MCSA%3A937","ornithine decarboxylase"]]},{"id":"GO:0006097","l":"glyoxylate cycle","na":1,"nb":9,"a":[["physiology/heterotrophic.html","heterotrophic"]],"b":[["GO%3A0006097","glyoxylate cycle"],["proteintraitsmech%3ASEED_SUBSYSTEM_Glyoxylate_bypass","Glyoxylate bypass"],["NCBIfam%3ATIGR02924","isocitrate dehydrogenase"],["NCBIfam%3ATIGR01344","malate synthase A"],["NCBIfam%3ANF041315","malate synthase AceB"],["NCBIfam%3ANF002825","malate synthase G"]]},{"id":"GO:0009423","l":"chorismate biosynthetic process","na":1,"nb":9,"a":[["morphology/pigmentation.html","pigmentation"]],"b":[["GO%3A0009423","chorismate biosynthetic process"],["proteintraitsmech%3ASEED_SUBSYSTEM_Chorismate_Synthesis","Chorismate Synthesis"],["NCBIfam%3ATIGR01357","3-dehydroquinate synthase"],["NCBIfam%3ATIGR01358","class II 3-deoxy-7-phosphoheptulonate synthase"],["NCBIfam%3ATIGR01920","shikimate kinase"],["NCBIfam%3ATIGR01088","type II 3-dehydroquinate dehydratase"]]},{"id":"GO:0030152","l":"bacteriocin biosynthetic process","na":1,"nb":9,"a":[["physiology/bacteriocin_production.html","bacteriocin production"]],"b":[["GO%3A0030152","bacteriocin biosynthetic process"],["NCBIfam%3ATIGR04067","Apre_1838 family putative sactipeptide bacteriocin"],["NCBIfam%3ATIGR04065","CLI_3235 family bacteriocin precursor"],["NCBIfam%3ATIGR04068","Cys-rich peptide radical SAM maturase CcpM"],["NCBIfam%3ATIGR04064","nif11-like peptide radical SAM maturase"],["NCBIfam%3ATIGR01295","PedC/BrcD family bacteriocin maturation disulfide isomerase"]]},{"id":"GO:0050421","l":"nitrite reductase (NO-forming) activity","na":1,"nb":9,"a":[["metabolism/denitrification.html","denitrification"]],"b":[["EC%3A1.7.2.1","nitrite reductase (NO-forming)"],["RHEA%3A15233","nitric oxide + Fe(III)-[cytochrome c] + H2O = Fe(II)-[cytochrome c] + nitrite + 2 H(+)"],["GO%3A0050421","nitrite reductase (NO-forming) activity"],["NCBIfam%3ATIGR02376","copper-containing nitrite reductase"],["MCSA%3A4","nitrite reductase (copper type)"],["MCSA%3A903","nitrite reductase (cytochrome cd1 type)"]]},{"id":"GO:0052716","l":"hydroquinone:oxygen oxidoreductase activity","na":1,"nb":9,"a":[["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["EC%3A1.10.3.2","laccase"],["RHEA%3A11276","4 hydroquinone + O2 = 4 benzosemiquinone + 2 H2O"],["GO%3A0052716","hydroquinone:oxygen oxidoreductase activity"],["MCSA%3A390","laccase"],["proteintraitsmech%3ABIOLIP_3DM","3DM-binding site"],["proteintraitsmech%3ABIOLIP_D2M","D2M-binding site"]]},{"id":"InterPro:IPR004090","l":"","na":1,"nb":9,"a":[["physiology/chemotaxis.html","chemotaxis"]],"b":[["Pfam%3APF05227","CHASE3 domain"],["Pfam%3APF02743","Cache domain"],["Pfam%3APF08269","Cache domain"],["Pfam%3APF18947","HAMP domain"],["Pfam%3APF18575","HAMP N-terminal domain 3"],["Pfam%3APF17909","Htr2 transmembrane domain"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":9,"a":[["morphology/motility.html","motility"]],"b":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF25954","CusB-like, beta-barrel domain"],["Pfam%3APF13438","Domain of unknown function (DUF4113)"],["Pfam%3APF03767","HAD superfamily, subfamily IIIB (Acid phosphatase)"],["Pfam%3APF03496","ADP-ribosyltransferase exoenzyme"]]},{"id":"UniProt:P09424","l":"","na":1,"nb":9,"a":[["physiology/chemoheterotrophic.html","chemoheterotrophic"]],"b":[["GO%3A0008926","mannitol-1-phosphate 5-dehydrogenase activity"],["GO%3A0019592","mannitol catabolic process"],["NCBIfam%3ANF002646","mannitol-1-phosphate 5-dehydrogenase"],["NCBIfam%3ANF002647","mannitol-1-phosphate 5-dehydrogenase"],["NCBIfam%3ANF002648","mannitol-1-phosphate 5-dehydrogenase"],["NCBIfam%3ANF002650","mannitol-1-phosphate 5-dehydrogenase"]]},{"id":"UniProt:P21458","l":"","na":1,"nb":9,"a":[["morphology/sporulation.html","sporulation"]],"b":[["CDD%3Acd01127","TrwB_TraG_TraD_VirD4"],["InterPro%3AIPR041027","FtsK alpha domain"],["InterPro%3AIPR002543","FtsK domain"],["InterPro%3AIPR018541","FtsK gamma domain"],["Pfam%3APF17854","FtsK alpha domain"],["Pfam%3APF09397","Ftsk gamma domain"]]},{"id":"CHEBI:17029","l":"chitin","na":1,"nb":8,"a":[["metabolism/chitinolysis.html","chitinolysis"]],"b":[["EC%3A2.4.1.16","chitin synthase"],["EC%3A3.5.1.41","chitin deacetylase"],["RHEA%3A85463","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-1)-N-acetyl-alpha-D-glucosamine"],["RHEA%3A50672","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-2) + N,N'-diacetylchitobiose"],["RHEA%3A85003","[(1->4)-N-acetyl-beta-D-glucosaminyl](n)-N-acetyl-alpha-D-glucosamine + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n) + N-acetyl-alpha-D-glucosamine"],["RHEA%3A10464","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + n H2O = chitosan + n acetate"]]},{"id":"GO:0003868","l":"4-hydroxyphenylpyruvate dioxygenase activity","na":1,"nb":8,"a":[["morphology/brown_pigmented.html","brown pigmented"]],"b":[["EC%3A1.13.11.27","4-hydroxyphenylpyruvate dioxygenase"],["RHEA%3A16189","3-(4-hydroxyphenyl)pyruvate + O2 = homogentisate + CO2"],["GO%3A0003868","4-hydroxyphenylpyruvate dioxygenase activity"],["NCBIfam%3ATIGR01263","4-hydroxyphenylpyruvate dioxygenase"],["proteintraitsmech%3ABIOLIP_869","869-binding site"],["proteintraitsmech%3ABIOLIP_AIY","AIY-binding site"]]},{"id":"GO:0006572","l":"L-tyrosine catabolic process","na":1,"nb":8,"a":[["morphology/brown_pigmented.html","brown pigmented"]],"b":[["GO%3A0006572","L-tyrosine catabolic process"],["Reactome%3AR-HSA-8963684","Tyrosine catabolism"],["NCBIfam%3ATIGR01263","4-hydroxyphenylpyruvate dioxygenase"],["NCBIfam%3ATIGR01266","fumarylacetoacetase"],["NCBIfam%3ATIGR01015","homogentisate 1,2-dioxygenase"],["NCBIfam%3ATIGR01262","maleylacetoacetate isomerase"]]},{"id":"GO:0008936","l":"nicotinamidase activity","na":1,"nb":8,"a":[["physiology/pyrazinamidase_activity.html","pyrazinamidase activity"]],"b":[["EC%3A3.5.1.19","nicotinamidase"],["RHEA%3A14545","nicotinamide + H2O = nicotinate + NH4(+)"],["GO%3A0008936","nicotinamidase activity"],["ARO%3A3004267","antibiotic resistant pncA"],["ARO%3A3003394","Mycobacterium tuberculosis pncA mutations conferring resistance to pyrazinamide"],["ARO%3A3003418","Pyrazinamide resistant pncA"]]},{"id":"GO:0009303","l":"rRNA transcription","na":1,"nb":8,"a":[["genomics/rrna_operon_copy_number.html","rRNA operon copy number"]],"b":[["GO%3A0042791","5S class rRNA transcription by RNA polymerase III"],["GO%3A0042790","nucleolar large rRNA transcription by RNA polymerase I"],["GO%3A0042794","plastid rRNA transcription"],["GO%3A0009303","rRNA transcription"],["PANTHER%3APTHR14440","DNA-DIRECTED RNA POLYMERASE I SUBUNIT RPA49"],["PANTHER%3APTHR10535","DNA-DIRECTED RNA POLYMERASES I, II, AND III SUBUNIT RPABC1"]]},{"id":"GO:0016049","l":"cell growth","na":1,"nb":8,"a":[["metabolism/metabolism.html","metabolism"]],"b":[["GO%3A0051211","anisotropic cell growth"],["GO%3A0016049","cell growth"],["GO%3A0048588","developmental cell growth"],["GO%3A0051210","isotropic cell growth"],["GO%3A0009825","multidimensional cell growth"],["GO%3A0007124","pseudohyphal growth"]]},{"id":"GO:0036374","l":"glutathione gamma-glutamate hydrolase","na":1,"nb":8,"a":[["physiology/gamma_glutamyltransferase_activity.html","gamma-glutamyltransferase activity"]],"b":[["EC%3A3.4.19.13","glutathione gamma-glutamate hydrolase"],["RHEA%3A28807","glutathione + H2O = L-cysteinylglycine + L-glutamate"],["ComplexPortal%3ACPX-325","Glutathione hydrolase complex"],["GO%3A0036374","glutathione gamma-glutamate hydrolase"],["NCBIfam%3ANF007187","gamma-glutamyltransferase"],["NCBIfam%3ATIGR00066","gamma-glutamyltransferase"]]},{"id":"GO:0042276","l":"error-prone translesion synthesis","na":1,"nb":8,"a":[["genomics/gc_content.html","GC content"]],"b":[["ComplexPortal%3ACPX-1091","DNA polymerase zeta complex"],["ComplexPortal%3ACPX-2426","DNA polymerase zeta complex"],["ComplexPortal%3ACPX-994","DNA polymerase zeta complex"],["GO%3A0042276","error-prone translesion synthesis"],["Reactome%3AR-HSA-5656121","Translesion synthesis by POLI"],["Reactome%3AR-HSA-5655862","Translesion synthesis by POLK"]]},{"id":"InterPro:IPR001492","l":"","na":1,"nb":8,"a":[["morphology/spirochete_shaped.html","spirochete shaped"]],"b":[["Pfam%3APF00700","Bacterial flagellin C-terminal helical region"],["Pfam%3APF08884","Flagellin D3 domain"],["Pfam%3APF21504","Flagellin, barrel domain"],["Pfam%3APF22370","Flagellin, beta sheet domain"],["PANTHER%3APTHR42792","FLAGELLIN"],["Pfam%3APF00669","Bacterial flagellin N-terminal helical region"]]},{"id":"InterPro:IPR050469","l":"","na":1,"nb":8,"a":[["ecology/biofilm_formation.html","biofilm formation"]],"b":[["Pfam%3APF17151","Periplasmic sensor domain"],["Pfam%3APF13682","Chemoreceptor zinc-binding domain"],["Pfam%3APF20975","DGC-associated coil"],["Pfam%3APF21118","DosC CZB-like middle domain"],["Pfam%3APF00990","Diguanylate cyclase, GGDEF domain"],["PANTHER%3APTHR45138","REGULATORY COMPONENTS OF SENSORY TRANSDUCTION SYSTEM"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":1,"nb":8,"a":[["other/catalase_negative.html","catalase negative"]],"b":[["Pfam%3APF01721","Class II bacteriocin"],["Pfam%3APF13700","Domain of unknown function (DUF4158)"],["Pfam%3APF07478","D-ala D-ala ligase C-terminus"],["Pfam%3APF01820","D-ala D-ala ligase N-terminus"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"],["PROSITE%3APS00843","D-alanine--D-alanine ligase signature 1"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":8,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["Pfam%3APF02927","Cellulase N-terminal ig-like domain"],["Pfam%3APF00404","Dockerin type I domain"],["PROSITE%3APS00448","Clostridium cellulosome enzymes repeated domain signature"],["PROSITE%3APS60032","Glycosyl hydrolases family 9 (GH9) active site signature 1"],["PROSITE%3APS00592","Glycosyl hydrolases family 9 (GH9) active site signature 2"],["PROSITE%3APS00698","Glycosyl hydrolases family 9 (GH9) active site signature 3"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK1622","na":1,"nb":8,"a":[["morphology/gliding.html","gliding"]],"b":[["Pfam%3APF27281","DevT C-terminal domain"],["Pfam%3APF27372","DevT N-terminal domain"],["Pfam%3APF17762","ParB HTH domain"],["Pfam%3APF01930","Domain of unknown function DUF83"],["Pfam%3APF09559","Cas6 Crispr"],["Pfam%3APF01905","CRISPR-associated negative auto-regulator DevR/Csa2"]]},{"id":"UniProt:P04189","l":"","na":1,"nb":8,"a":[["metabolism/proteolysis.html","proteolysis"]],"b":[["GO%3A0009274","peptidoglycan-based cell wall"],["GO%3A0004252","serine-type endopeptidase activity"],["GO%3A0009372","quorum sensing"],["GO%3A0140448","signaling receptor ligand precursor processing"],["InterPro%3AIPR023827","Peptidase S8, subtilisin, Asp-active site"],["InterPro%3AIPR022398","Peptidase S8, subtilisin, His-active site"]]},{"id":"UniProt:P0ABB4","l":"","na":8,"nb":1,"a":[["metabolism/metabolism.html","metabolism"],["metabolism/respiration.html","respiration"],["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"],["physiology/chemotrophic.html","chemotrophic"],["physiology/heterotrophic.html","heterotrophic"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"]]},{"id":"CHEBI:17593","l":"","na":1,"nb":7,"a":[["metabolism/starch_degradation.html","starch degradation"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.B.64","The Brucella Omp2 Porin (B-Omp2) Family"],["TCDB%3A1.B.26","The Cyclodextrin Porin (CDP) Family"],["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["TCDB%3A1.B.3","The Sugar Porin (SP) Family"]]},{"id":"CHEBI:30087","l":"","na":1,"nb":7,"a":[["metabolism/sulfur_oxidation.html","sulfur oxidation"]],"b":[["EC%3A1.14.20.7","2-oxoglutarate/L-arginine monooxygenase/decarboxylase (succinate- forming)"],["RHEA%3A31527","5-hydroxy-L-arginine = guanidine + L-glutamate 5-semialdehyde"],["RHEA%3A79843","6-hydroxy-L-homoarginine = guanidine + (S)-2-amino-6-oxohexanoate"],["RHEA%3A79567","guanidine + H2O = urea + NH4(+)"],["RHEA%3A73883","guanidine(out) = guanidine(in)"],["RHEA%3A31535","L-arginine + 2-oxoglutarate + O2 = guanidine + L-glutamate 5-semialdehyde + succinate + CO2"]]},{"id":"GO:0004411","l":"homogentisate 1,2-dioxygenase activity","na":1,"nb":7,"a":[["morphology/brown_pigmented.html","brown pigmented"]],"b":[["EC%3A1.13.11.5","homogentisate 1,2-dioxygenase"],["RHEA%3A15449","homogentisate + O2 = 4-maleylacetoacetate + H(+)"],["GO%3A0004411","homogentisate 1,2-dioxygenase activity"],["NCBIfam%3ATIGR01015","homogentisate 1,2-dioxygenase"],["NCBIfam%3ANF016125","homogentisate 1,2-dioxygenase domain-containing protein"],["MCSA%3A547","homogentisate 1,2-dioxygenase"]]},{"id":"GO:0004658","l":"propionyl-CoA carboxylase activity","na":1,"nb":7,"a":[["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"]],"b":[["EC%3A6.4.1.3","propionyl-CoA carboxylase"],["RHEA%3A23720","propanoyl-CoA + hydrogencarbonate + ATP = (S)-methylmalonyl-CoA + ADP + phosphate + H(+)"],["ComplexPortal%3ACPX-6169","Mitochondrial propionyl-CoA carboxylase complex"],["GO%3A0004658","propionyl-CoA carboxylase activity"],["NCBIfam%3ANF025192","acyl-CoA carboxylase epsilon subunit"],["Pfam%3APF13822","Acyl-CoA carboxylase epsilon subunit"]]},{"id":"GO:0008804","l":"carbamate kinase activity","na":1,"nb":7,"a":[["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["EC%3A2.7.2.2","carbamate kinase"],["RHEA%3A10152","hydrogencarbonate + NH4(+) + ATP = carbamoyl phosphate + ADP + H2O + H(+)"],["GO%3A0008804","carbamate kinase activity"],["NCBIfam%3ANF006926","carbamate kinase"],["NCBIfam%3ATIGR00746","carbamate kinase"],["MCSA%3A669","carbamate kinase"]]},{"id":"GO:0009424","l":"bacterial-type flagellum hook","na":1,"nb":7,"a":[["morphology/flagellated.html","flagellated"]],"b":[["GO%3A0009424","bacterial-type flagellum hook"],["NCBIfam%3ATIGR02492","flagellar hook-associated protein FlgK"],["NCBIfam%3ATIGR02550","flagellar hook-associated protein FlgL"],["NCBIfam%3ANF007514","flagellar hook length control protein FliK"],["InterPro%3AIPR003481","Flagellar hook-associated protein 2, N-terminal"],["NCBIfam%3ANF014518","flagellar cap protein FliD N-terminal domain-containing protein"]]},{"id":"GO:0009973","l":"adenylyl-sulfate reductase activity","na":1,"nb":7,"a":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["EC%3A1.8.99.2","adenylyl-sulfate reductase"],["RHEA%3A24240","sulfite + A + AMP + 2 H(+) = adenosine 5'-phosphosulfate + AH2"],["GO%3A0009973","adenylyl-sulfate reductase activity"],["NCBIfam%3ATIGR02061","adenylyl-sulfate reductase subunit alpha"],["NCBIfam%3ATIGR02060","adenylyl-sulfate reductase subunit beta"],["NCBIfam%3ATIGR02055","adenylylsulfate reductase, thioredoxin dependent"]]},{"id":"GO:0019420","l":"dissimilatory sulfate reduction","na":1,"nb":7,"a":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["GO%3A0019420","dissimilatory sulfate reduction"],["NCBIfam%3ATIGR02061","adenylyl-sulfate reductase subunit alpha"],["NCBIfam%3ATIGR02060","adenylyl-sulfate reductase subunit beta"],["NCBIfam%3ATIGR02066","dissimilatory-type sulfite reductase subunit beta"],["NCBIfam%3ANF045796","sulfate reduction electron transfer complex DsrMKJOP subunit DsrK"],["NCBIfam%3ANF045797","sulfate reduction electron transfer complex DsrMKJOP subunit DsrO"]]},{"id":"GO:0042744","l":"hydrogen peroxide catabolic process","na":1,"nb":7,"a":[["environment/aerotolerant.html","aerotolerant"]],"b":[["ComplexPortal%3ACPX-4862","Alkyl hydroperoxide reductase complex"],["ComplexPortal%3ACPX-4742","Catalase complex"],["ComplexPortal%3ACPX-4767","Catalase complex"],["ComplexPortal%3ACPX-4768","Catalase complex"],["GO%3A0033355","ascorbate glutathione cycle"],["GO%3A0042744","hydrogen peroxide catabolic process"]]},{"id":"InterPro:IPR018028","l":"","na":1,"nb":7,"a":[["physiology/catalase_activity.html","catalase activity"]],"b":[["Pfam%3APF18011","C-terminal domain found in long catalases"],["Pfam%3APF00199","Catalase"],["PANTHER%3APTHR11465","CATALASE"],["Pfam%3APF06628","Catalase-related immune-responsive"],["PRINTS%3APR00067","Catalase signature"],["PROSITE%3APS00437","Catalase proximal heme-ligand signature"]]},{"id":"InterPro:IPR045087","l":"","na":1,"nb":7,"a":[["metabolism/manganese_oxidation.html","manganese oxidation"]],"b":[["Pfam%3APF07731","Multicopper oxidase"],["Pfam%3APF07732","Multicopper oxidase"],["Pfam%3APF00394","Multicopper oxidase"],["PANTHER%3APTHR48267","CUPREDOXIN SUPERFAMILY PROTEIN"],["PANTHER%3APTHR11709","MULTI-COPPER OXIDASE"],["PROSITE%3APS00079","Multicopper oxidases signature 1"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":7,"nb":1,"a":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/copper_tolerant.html","copper tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["environment/metal_tolerant.html","metal tolerant"]],"b":[["TED%3AAF-A0A132HLN2-F1-model_v4_TED01","TED novel fold AF-A0A132HLN2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":1,"nb":7,"a":[["environment/microaerophilic.html","microaerophilic"]],"b":[["Pfam%3APF04439","Streptomycin adenylyltransferase"],["TED%3AAF-A0A696J2C3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A696J2C3-F1-model_v4_TED01"],["TED%3AAF-A0A825M6H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A825M6H4-F1-model_v4_TED01"],["TED%3AAF-A0A5T0SBG5-F1-model_v4_TED01","TED novel fold AF-A0A5T0SBG5-F1-model_v4_TED01"],["TED%3AAF-A0A698JVM3-F1-model_v4_TED03","TED novel fold AF-A0A698JVM3-F1-model_v4_TED03"],["TED%3AAF-A0A824N1N8-F1-model_v4_TED01","TED novel fold AF-A0A824N1N8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:264203","l":"Zymomonas mobilis subsp. mobilis (strain ATCC 31821 / ZM4 / CP4)","na":1,"nb":7,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"]],"b":[["Pfam%3APF13590","Domain of unknown function (DUF4136)"],["Pfam%3APF08436","1-deoxy-D-xylulose 5-phosphate reductoisomerase C-terminal domain"],["Pfam%3APF13288","DXP reductoisomerase C-terminal domain"],["Pfam%3APF02670","1-deoxy-D-xylulose 5-phosphate reductoisomerase"],["PROSITE%3APS01157","Class A bacterial acid phosphatases signature"],["PROSITE%3APS01320","Uncharacterized protein family UPF0067 signature"]]},{"id":"NCBITaxon:272623","l":"Lactococcus lactis subsp. lactis (strain IL1403)","na":1,"nb":7,"a":[["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]],"b":[["Pfam%3APF25935","LcnD-like, barrel-sandwich hybrid domain"],["Pfam%3APF27342","ComB N-terminal domain"],["Pfam%3APF06993","Protein of unknown function (DUF1304)"],["Pfam%3APF25887","LcnD-like, long helical bundle domain"],["Pfam%3APF13276","HTH-like domain"],["Pfam%3APF25940","LcnD-like, C-terminal domain"]]},{"id":"NCBITaxon:672","l":"Vibrio vulnificus","na":1,"nb":7,"a":[["physiology/viable_but_nonculturable_state.html","viable but nonculturable state"]],"b":[["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF08021","Siderophore-interacting FAD-binding domain"],["Pfam%3APF11575","FhuF 2Fe-2S C-terminal domain"],["Pfam%3APF27349","IcsB middle domain"],["Pfam%3APF21735","C-terminal repeat from RTX toxins"],["Pfam%3APF07634","RtxA repeat"]]},{"id":"NCBITaxon:837","l":"Porphyromonas gingivalis","na":1,"nb":7,"a":[["morphology/black_pigmented.html","black pigmented"]],"b":[["Pfam%3APF07675","Cleaved Adhesin Domain"],["Pfam%3APF22492","FimA4 pilin C-terminal domain"],["Pfam%3APF15495","Major fimbrial subunit protein type IV, Fimbrillin, C-terminal"],["Pfam%3APF26306","FimD protein third domain"],["Pfam%3APF27397","FimE C-terminal domain"],["Pfam%3APF10365","Domain of unknown function (DUF2436)"]]},{"id":"CHEBI:27592","l":"ectoine","na":6,"nb":1,"a":[["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"],["environment/nacl_delta_mid1.html","NaCl delta mid1"],["environment/nacl_optimum_mid2.html","NaCl optimum mid2"],["environment/nacl_range_mid2.html","NaCl range mid2"],["environment/slightly_halophilic.html","slightly halophilic"]],"b":[["proteintraitsmech%3ABIOLIP_4CS","4CS-binding site"]]},{"id":"CHEBI:29041","l":"","na":1,"nb":6,"a":[["metabolism/manganese_oxidation.html","manganese oxidation"]],"b":[["EC%3A1.11.1.13","manganese peroxidase"],["EC%3A1.11.1.16","versatile peroxidase"],["RHEA%3A22776","2 Mn(2+) + H2O2 + 2 H(+) = 2 Mn(3+) + 2 H2O"],["RHEA%3A52244","4 Mn(2+) + O2 + 4 H(+) = 4 Mn(3+) + 2 H2O"],["RHEA%3A52248","4 Mn(3+) + O2 + 6 H2O = 4 MnO2 + 12 H(+)"],["proteintraitsmech%3ABIOLIP_MN3","MN3-binding site"]]},{"id":"CHEBI:71578","l":"","na":6,"nb":1,"a":[["environment/nacl_delta_mid1.html","NaCl delta mid1"],["environment/nacl_delta_mid2.html","NaCl delta mid2"],["environment/nacl_optimum_low.html","NaCl optimum low"],["environment/nacl_range.html","NaCl range"],["environment/nacl_range_low.html","NaCl range low"],["environment/stenohaline.html","stenohaline"]],"b":[["proteintraitsmech%3ABIOLIP_2BA","2BA-binding site"]]},{"id":"GO:0009409","l":"response to cold","na":1,"nb":6,"a":[["physiology/cold_shock_response.html","cold shock response"]],"b":[["GO%3A0070417","cellular response to cold"],["GO%3A0009631","cold acclimation"],["GO%3A0009409","response to cold"],["GO%3A0050826","response to freezing"],["GO%3A0010048","vernalization response"],["NCBIfam%3ANF005952","kdo(2)-lipid IV(A) palmitoleoyltransferase"]]},{"id":"GO:0042279","l":"nitrite reductase (cytochrome, ammonia-forming) activity","na":1,"nb":6,"a":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]],"b":[["EC%3A1.7.2.2","nitrite reductase (cytochrome; ammonia-forming)"],["RHEA%3A13089","6 Fe(III)-[cytochrome c] + NH4(+) + 2 H2O = 6 Fe(II)-[cytochrome c] + nitrite + 8 H(+)"],["GO%3A0042279","nitrite reductase (cytochrome, ammonia-forming) activity"],["NCBIfam%3ANF014398","ammonia-forming cytochrome c nitrite reductase subunit c552"],["NCBIfam%3ATIGR03152","ammonia-forming nitrite reductase cytochrome c552 subunit"],["Pfam%3APF02335","Cytochrome c552"]]},{"id":"GO:0044409","l":"symbiont entry into host","na":1,"nb":6,"a":[["ecology/plant_pathogen.html","plant pathogen"]],"b":[["GO%3A0120326","appressorium-mediated entry into host"],["GO%3A0140717","entry into host through the stromata"],["GO%3A0035635","entry of bacterium into host cell"],["GO%3A0046718","symbiont entry into host cell"],["GO%3A0044409","symbiont entry into host"],["Reactome%3AR-HSA-173107","Binding and entry of HIV virion"]]},{"id":"METPO:1000845","l":"Acetogenesis","na":6,"nb":1,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"],["physiology/heterotrophic.html","heterotrophic"]],"b":[["METPO%3A1000845","Acetogenesis"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":1,"nb":6,"a":[["metabolism/starch_degradation.html","starch degradation"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF10779","Haemolysin XhlA"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF08181","DegQ (SacQ) family"],["Pfam%3APF08057","Erythromycin resistance leader peptide"],["Pfam%3APF14867","Lantibiotic alpha"]]},{"id":"NCBITaxon:272630","l":"Methylorubrum extorquens (strain ATCC 14718 / DSM 1338 / JCM 2805 / NCIMB 9133 / AM1)","na":1,"nb":6,"a":[["physiology/methylotrophic.html","methylotrophic"]],"b":[["Pfam%3APF07726","ATPase family associated with various cellular activities (AAA)"],["Pfam%3APF02741","FTR, proximal lobe"],["Pfam%3APF01913","Formylmethanofuran-tetrahydromethanopterin formyltransferase"],["Pfam%3APF10677","Protein of unknown function (DUF2490)"],["Pfam%3APF08714","Formaldehyde-activating enzyme (Fae)"],["PROSITE%3APS00363","Bacterial quinoprotein dehydrogenases signature 1"]]},{"id":"NCBITaxon:316401","l":"Escherichia coli O78:H11 (strain H10407 / ETEC)","na":1,"nb":6,"a":[["other/indole_test_positive.html","indole test positive"]],"b":[["Pfam%3APF26759","AcfD helical domain"],["Pfam%3APF04449","CS1 type fimbrial major subunit"],["Pfam%3APF13322","Domain of unknown function (DUF4092)"],["PROSITE%3APS01141","Bacterial type II secretion system protein C signature"],["Pfam%3APF16168","Adhesin of bacterial autotransporter system, probable stalk"],["Pfam%3APF24078","PIC/HAP1/IgA0 second beta-solenoid repeat region"]]},{"id":"UniProt:P0A6Y8","l":"","na":1,"nb":6,"a":[["physiology/heat_shock_response.html","heat shock response"]],"b":[["GO%3A0016989","sigma factor antagonist activity"],["GO%3A0043335","protein unfolding"],["GO%3A1990169","stress response to copper ion"],["NCBIfam%3ANF003520","Fe-S protein assembly chaperone HscA"],["NCBIfam%3ATIGR02350","molecular chaperone DnaK"],["CDD%3Acd10234","ASKHA_NBD_HSP70_DnaK-like"]]},{"id":"CHEBI:26672","l":"siderophore","na":1,"nb":5,"a":[["physiology/siderophore_production.html","siderophore production"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_26672","siderophore cofactor class"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.17","The Outer Membrane Factor (OMF) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]]},{"id":"GO:0004035","l":"alkaline phosphatase activity","na":1,"nb":5,"a":[["physiology/alkaline_phosphatase_activity.html","alkaline phosphatase activity"]],"b":[["EC%3A3.1.3.1","alkaline phosphatase"],["GO%3A0004035","alkaline phosphatase activity"],["NCBIfam%3ANF042991","alkaline phosphatase PafA"],["NCBIfam%3ANF058638","alkaline phosphatase PhoD"],["MCSA%3A44","alkaline phosphatase"]]},{"id":"GO:0004309","l":"exopolyphosphatase activity","na":1,"nb":5,"a":[["morphology/polyphosphate_granule.html","polyphosphate granule"]],"b":[["EC%3A3.6.1.11","exopolyphosphatase"],["RHEA%3A21528","[phosphate](n) + H2O = [phosphate](n-1) + phosphate + H(+)"],["GO%3A0004309","exopolyphosphatase activity"],["NCBIfam%3ATIGR03706","exopolyphosphatase"],["InterPro%3AIPR022371","Exopolyphosphatase"]]},{"id":"GO:0004457","l":"lactate dehydrogenase activity","na":1,"nb":5,"a":[["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]],"b":[["GO%3A0047809","D-lactate dehydrogenase activity"],["GO%3A0140171","L-lactate dehydrogenase activity"],["GO%3A0004457","lactate dehydrogenase activity"],["NCBIfam%3ANF033901","FMN-dependent L-lactate dehydrogenase LldD"],["NCBIfam%3ANF045670","L-lactate dehydrogenase (quinone) large subunit LdhH"]]},{"id":"GO:0006829","l":"zinc ion transport","na":1,"nb":5,"a":[["environment/zinc_tolerant.html","zinc tolerant"]],"b":[["GO%3A0071577","zinc ion transmembrane transport"],["GO%3A0006829","zinc ion transport"],["NCBIfam%3ANF002923","CDF family zinc transporter ZitB"],["NCBIfam%3ANF007090","zinc ABC transporter ATP-binding protein ZnuC"],["NCBIfam%3ANF007091","zinc ABC transporter substrate-binding protein ZnuA"]]},{"id":"GO:0008861","l":"formate C-acetyltransferase activity","na":1,"nb":5,"a":[["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"]],"b":[["EC%3A2.3.1.54","formate C-acetyltransferase"],["RHEA%3A11844","formate + acetyl-CoA = pyruvate + CoA"],["GO%3A0008861","formate C-acetyltransferase activity"],["NCBIfam%3ATIGR01255","formate C-acetyltransferase"],["MCSA%3A30","formate C-acetyltransferase"]]},{"id":"GO:0016692","l":"NADH peroxidase activity","na":1,"nb":5,"a":[["environment/aerotolerant.html","aerotolerant"]],"b":[["EC%3A1.11.1.1","NADH peroxidase"],["RHEA%3A18509","H2O2 + NADH + H(+) = NAD(+) + 2 H2O"],["GO%3A0016692","NADH peroxidase activity"],["NCBIfam%3ANF045767","rubrerythrin"],["MCSA%3A895","NADH peroxidase"]]},{"id":"GO:0016920","l":"pyroglutamyl-peptidase activity","na":1,"nb":5,"a":[["physiology/pyrrolidonyl_arylamidase_activity.html","pyrrolidonyl arylamidase activity"]],"b":[["EC%3A3.4.19.3","pyroglutamyl-peptidase I"],["EC%3A3.4.19.6","pyroglutamyl-peptidase II"],["GO%3A0016920","pyroglutamyl-peptidase activity"],["NCBIfam%3ATIGR00504","pyroglutamyl-peptidase I"],["MCSA%3A633","pyroglutamyl-peptidase I"]]},{"id":"GO:0016990","l":"arginine deiminase activity","na":1,"nb":5,"a":[["physiology/arginine_dihydrolase_activity.html","arginine dihydrolase activity"]],"b":[["EC%3A3.5.3.6","arginine deiminase"],["RHEA%3A19597","L-arginine + H2O = L-citrulline + NH4(+)"],["GO%3A0016990","arginine deiminase activity"],["NCBIfam%3ANF002381","arginine deiminase"],["NCBIfam%3ATIGR01078","arginine deiminase"]]},{"id":"GO:0030420","l":"establishment of competence for transformation","na":1,"nb":5,"a":[["physiology/natural_competence.html","natural competence"]],"b":[["GO%3A0030420","establishment of competence for transformation"],["NCBIfam%3ANF008580","ComEC family protein"],["NCBIfam%3ANF040999","competence type IV pilus major pilin ComGC"],["NCBIfam%3ANF018087","competence protein ComK"],["Pfam%3APF06338","ComK protein"]]},{"id":"GO:0030634","l":"carbon fixation by acetyl-CoA pathway","na":5,"nb":1,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"],["physiology/autotrophic.html","autotrophic"]],"b":[["GO%3A0030634","carbon fixation by acetyl-CoA pathway"]]},{"id":"GO:0044096","l":"type IV pilus","na":5,"nb":1,"a":[["ecology/predatory_bacterium.html","predatory bacterium"],["morphology/motile.html","motile"],["morphology/motility.html","motility"],["morphology/twitching_motility.html","twitching motility"],["morphology/type_iv_pilus.html","type IV pilus"]],"b":[["GO%3A0044096","type IV pilus"]]},{"id":"GO:0047646","l":"alkanal monooxygenase (FMN-linked) activity","na":1,"nb":5,"a":[["physiology/bioluminescence.html","bioluminescence"]],"b":[["EC%3A1.14.14.3","bacterial luciferase"],["RHEA%3A17181","a long-chain fatty aldehyde + FMNH2 + O2 = a long-chain fatty acid + hnu + FMN + H2O + 2 H(+)"],["GO%3A0047646","alkanal monooxygenase (FMN-linked) activity"],["InterPro%3AIPR018235","Bacterial luciferase, conserved site"],["MCSA%3A132","alkanal monooxygenase (FMN-linked)"]]},{"id":"GO:0160097","l":"reverse gyrase activity","na":5,"nb":1,"a":[["environment/extreme_hyperthermophilic.html","extreme hyperthermophilic"],["environment/hyperthermophilic.html","hyperthermophilic"],["environment/temperature_optimum_high.html","temperature optimum high"],["environment/temperature_range_high.html","temperature range high"],["environment/thermophilic.html","thermophilic"]],"b":[["GO%3A0160097","reverse gyrase activity"]]},{"id":"InterPro:IPR001425","l":"","na":1,"nb":5,"a":[["physiology/phototrophic.html","phototrophic"]],"b":[["Pfam%3APF01036","Bacteriorhodopsin-like protein"],["PANTHER%3APTHR28286","Archaeal/bacterial/fungal rhodopsins"],["PRINTS%3APR00251","Bacterial opsin signature"],["PROSITE%3APS00950","Bacterial rhodopsins signature 1"],["PROSITE%3APS00327","Bacterial rhodopsins retinal binding site"]]},{"id":"InterPro:IPR006314","l":"","na":1,"nb":5,"a":[["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["Pfam%3APF21105","DyP dimeric alpha+beta barrel domain"],["Pfam%3APF20628","Dyp-type peroxidase, C-terminal"],["Pfam%3APF04261","Dyp-type peroxidase, N-terminal"],["PANTHER%3APTHR30521","DEFERROCHELATASE/PEROXIDASE"],["Pfam%3APF10518","TAT (twin-arginine translocation) pathway signal sequence"]]},{"id":"InterPro:IPR013765","l":"","na":1,"nb":5,"a":[["physiology/natural_competence.html","natural competence"]],"b":[["HAMAP%3AMF_00268","Protein RecA [recA]"],["PANTHER%3APTHR45900","RECA"],["Pfam%3APF14890","Intein splicing domain"],["PRINTS%3APR00142","RecA protein signature"],["PROSITE%3APS00321","recA signature"]]},{"id":"METPO:1000844","l":"Methanogenesis","na":5,"nb":1,"a":[["metabolism/acetoclastic_methanogenesis.html","acetoclastic methanogenesis"],["metabolism/hydrogenotrophic_methanogenesis.html","hydrogenotrophic methanogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/methyl_based_methanogenesis.html","methyl-based methanogenesis"],["metabolism/syntrophy.html","Syntrophy"]],"b":[["METPO%3A1000844","Methanogenesis"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":5,"nb":1,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"],["physiology/hydrogenotrophic.html","hydrogenotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"]],"b":[["TED%3AAF-A0A367PA30-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A367PA30-F1-model_v4_TED01"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":1,"nb":5,"a":[["morphology/gliding.html","gliding"]],"b":[["TED%3AAF-A0A4Y6CF56-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y6CF56-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6CNZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Y6CNZ1-F1-model_v4_TED02"],["TED%3AAF-A0A7Y4IIX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4IIX4-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6B7F9-F1-model_v4_TED01","TED novel fold AF-A0A4Y6B7F9-F1-model_v4_TED01"],["TED%3AAF-A0A7Y4IR70-F1-model_v4_TED01","TED novel fold AF-A0A7Y4IR70-F1-model_v4_TED01"]]},{"id":"NCBITaxon:435","l":"Acetobacter aceti","na":1,"nb":5,"a":[["environment/acidotolerant.html","acidotolerant"]],"b":[["Pfam%3APF13336","Acetyl-CoA hydrolase/transferase C-terminal domain"],["Pfam%3APF02550","Acetyl-CoA hydrolase/transferase N-terminal domain"],["Pfam%3APF13442","Cytochrome C oxidase, cbb3-type, subunit III"],["Pfam%3APF06481","COX Aromatic Rich Motif"],["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"]]},{"id":"NCBITaxon:959","l":"Bdellovibrio bacteriovorus","na":1,"nb":5,"a":[["ecology/predatory_bacterium.html","predatory bacterium"]],"b":[["TED%3AAF-A0A150WJL7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A150WJL7-F1-model_v4_TED01"],["TED%3AAF-A0A150WK21-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A150WK21-F1-model_v4_TED01"],["TED%3AAF-A0A1Z3N7G2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Z3N7G2-F1-model_v4_TED02"],["TED%3AAF-A0A150WR18-F1-model_v4_TED04","TED novel fold AF-A0A150WR18-F1-model_v4_TED04"],["TED%3AAF-A0A162GEG0-F1-model_v4_TED02","TED novel fold AF-A0A162GEG0-F1-model_v4_TED02"]]},{"id":"UniProt:P00807","l":"","na":1,"nb":5,"a":[["physiology/antibiotic_resistance.html","antibiotic resistance"]],"b":[["proteintraitsmech%3AMEROPS_CLEAVAGE_S26_016","SpsB signal peptidase cleavage specificity"],["Pfam%3APF08139","Prokaryotic membrane lipoprotein lipid attachment site"],["proteintraitsmech%3ABIOLIP_CEM","CEM-binding site"],["proteintraitsmech%3ABIOLIP_CO3","CO3-binding site"],["proteintraitsmech%3ABIOLIP_TEM","TEM-binding site"]]},{"id":"UniProt:P0A953","l":"","na":1,"nb":5,"a":[["physiology/homeoviscous_adaptation.html","homeoviscous adaptation"]],"b":[["GO%3A1903966","monounsaturated fatty acid biosynthetic process"],["NCBIfam%3ANF005935","beta-ketoacyl-ACP synthase I"],["CDD%3Acd00834","KAS_I_II"],["MCSA%3A292","beta-ketoacyl-[acyl carrier protein] synthase I"],["proteintraitsmech%3ABIOLIP_6W5","6W5-binding site"]]},{"id":"UniProt:P0ACQ4","l":"","na":1,"nb":5,"a":[["physiology/oxidative_stress_response.html","oxidative stress response"]],"b":[["GO%3A2000142","regulation of DNA-templated transcription initiation"],["GO%3A0051409","response to nitrosative stress"],["NCBIfam%3ANF008361","DNA-binding transcriptional regulator OxyR"],["CDD%3Acd08411","PBP2_OxyR"],["Pfam%3APF00126","Bacterial regulatory helix-turn-helix protein, lysR family"]]},{"id":"UniProt:Q99ZW2","l":"","na":1,"nb":5,"a":[["genomics/crispr_cas_system.html","CRISPR-Cas system"]],"b":[["Pfam%3APF16595","PAM-interacting domain of CRISPR-associated endonuclease Cas9"],["Pfam%3APF22702","Cas9 RuvC domain"],["Pfam%3APF13395","HNH endonuclease"],["Pfam%3APF16593","Bridge helix of CRISPR-associated endonuclease Cas9"],["Pfam%3APF16592","REC lobe of CRISPR-associated endonuclease Cas9"]]},{"id":"CHEBI:16856","l":"glutathione","na":1,"nb":4,"a":[["environment/zinc_tolerant.html","zinc tolerant"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16856","requires glutathione"],["MCSA%3A359","lactoglutathione lyase"],["MCSA%3A32","lactoylglutathione lyase"],["proteintraitsmech%3ABIOLIP_GSH","GSH-binding site"]]},{"id":"CHEBI:25195","l":"","na":1,"nb":4,"a":[["environment/mercury_tolerant.html","mercury tolerant"]],"b":[["proteintraitsmech%3AMETALPDB_HG_DINUCLEAR","dinuclear mercury site"],["proteintraitsmech%3AMETALPDB_HG_MONONUCLEAR","mononuclear mercury site"],["proteintraitsmech%3AMETALPDB_HG_TETRANUCLEAR","tetranuclear mercury site"],["proteintraitsmech%3AMETALPDB_HG_TRINUCLEAR","trinuclear mercury site"]]},{"id":"CHEBI:38201","l":"","na":4,"nb":1,"a":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["physiology/aerobic_anoxygenic_phototrophy.html","aerobic anoxygenic phototrophy"],["physiology/photoheterotrophic.html","photoheterotrophic"],["physiology/phototrophic.html","phototrophic"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:64709","l":"organic acid","na":1,"nb":4,"a":[["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"]],"b":[["TCDB%3A2.A.28","The Bile Acid:Na+ Symporter (BASS) Family"],["TCDB%3A2.A.23","The Dicarboxylate/Amino Acid:Cation (Na+ or H+) Symporter (DAACS) Family"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.25","The Outer Membrane Porin (Opr) Family"]]},{"id":"GO:0004503","l":"tyrosinase activity","na":1,"nb":4,"a":[["morphology/black_pigmented.html","black pigmented"]],"b":[["EC%3A1.14.18.1","tyrosinase"],["RHEA%3A18117","L-tyrosine + O2 = L-dopaquinone + H2O"],["GO%3A0004503","tyrosinase activity"],["NCBIfam%3ANF047834","tyrosinase MelC2"]]},{"id":"GO:0005575","l":"cellular_component","na":1,"nb":4,"a":[["upper/biological_process.html","biological process"]],"b":[["GO%3A0110165","cellular anatomical structure"],["GO%3A0005575","cellular_component"],["GO%3A0032991","protein-containing complex"],["GO%3A0044423","virion component"]]},{"id":"GO:0008923","l":"lysine decarboxylase activity","na":1,"nb":4,"a":[["physiology/lysine_decarboxylase_activity.html","lysine decarboxylase activity"]],"b":[["EC%3A4.1.1.18","lysine decarboxylase"],["RHEA%3A22352","L-lysine + H(+) = cadaverine + CO2"],["GO%3A0008923","lysine decarboxylase activity"],["proteintraitsmech%3ABIOLIP_G4P","G4P-binding site"]]},{"id":"GO:0015386","l":"potassium:proton antiporter activity","na":1,"nb":4,"a":[["environment/ph_optimum_mid2.html","pH optimum mid2"]],"b":[["RHEA%3A29467","K(+)(in) + H(+)(out) = K(+)(out) + H(+)(in)"],["ComplexPortal%3ACPX-3090","Glutathione-regulated potassium-efflux system KefB-KefG complex"],["ComplexPortal%3ACPX-2543","Glutathione-regulated potassium-efflux system KefC-KefF complex"],["GO%3A0015386","potassium:proton antiporter activity"]]},{"id":"GO:0015946","l":"methanol oxidation","na":1,"nb":4,"a":[["metabolism/methanol_oxidation.html","methanol oxidation"]],"b":[["GO%3A0015946","methanol oxidation"],["NCBIfam%3ANF014379","Methanol dehydrogenase beta subunit"],["Pfam%3APF02315","Methanol dehydrogenase beta subunit"],["InterPro%3AIPR036557","Methanol dehydrogenase, beta subunit superfamily"]]},{"id":"GO:0016285","l":"alanyl aminopeptidase activity","na":1,"nb":4,"a":[["physiology/alanine_arylamidase_activity.html","alanine arylamidase activity"]],"b":[["EC%3A3.4.11.14","cytosol alanyl aminopeptidase"],["EC%3A3.4.11.2","membrane alanyl aminopeptidase"],["GO%3A0016285","alanyl aminopeptidase activity"],["proteintraitsmech%3ABIOLIP_37E","37E-binding site"]]},{"id":"GO:0019253","l":"reductive pentose-phosphate cycle","na":4,"nb":1,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["physiology/autotrophic.html","autotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["GO%3A0019253","reductive pentose-phosphate cycle"]]},{"id":"GO:0019333","l":"denitrification pathway","na":1,"nb":4,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"]],"b":[["GO%3A0019333","denitrification pathway"],["NCBIfam%3ATIGR02161","periplasmic nitrate (or nitrite) reductase c-type cytochrome, NapC/NirT family"],["NCBIfam%3ATIGR04244","TAT-dependent nitrous-oxide reductase"],["NCBIfam%3ATIGR04246","Sec-dependent nitrous-oxide reductase"]]},{"id":"GO:0019418","l":"sulfide oxidation","na":1,"nb":4,"a":[["morphology/intracellular_inclusion.html","intracellular inclusion"]],"b":[["GO%3A0019418","sulfide oxidation"],["Reactome%3AR-HSA-1614517","Sulfide oxidation to sulfate"],["NCBIfam%3ATIGR02061","adenylyl-sulfate reductase subunit alpha"],["NCBIfam%3ATIGR02060","adenylyl-sulfate reductase subunit beta"]]},{"id":"GO:0019746","l":"hopanoid biosynthetic process","na":1,"nb":4,"a":[["environment/facultatively_acidophilic.html","facultatively acidophilic"]],"b":[["GO%3A0019746","hopanoid biosynthetic process"],["proteintraitsmech%3ASEED_SUBSYSTEM_Hopanoid_biosynthesis","Hopanoid biosynthesis"],["NCBIfam%3ATIGR04367","hopanoid C-3 methylase HpnR"],["NCBIfam%3ATIGR01507","squalene--hopene cyclase"]]},{"id":"GO:0032196","l":"transposition","na":1,"nb":4,"a":[["genomics/mobile_genetic_element.html","mobile genetic element"]],"b":[["GO%3A0006313","DNA transposition"],["GO%3A0032197","retrotransposition"],["GO%3A0032196","transposition"],["NCBIfam%3ATIGR03783","TraG family conjugative transposon ATPase"]]},{"id":"GO:0033740","l":"hydroxylamine oxidoreductase activity","na":1,"nb":4,"a":[["physiology/lithotrophic.html","lithotrophic"]],"b":[["EC%3A1.7.2.9","hydroxylamine oxidase"],["RHEA%3A45036","hydroxylamine + 3 Fe(III)-[cytochrome c] = nitric oxide + 3 Fe(II)-[cytochrome c] + 3 H(+)"],["GO%3A0033740","hydroxylamine oxidoreductase activity"],["proteintraitsmech%3ABIOLIP_HG1","HG1-binding site"]]},{"id":"GO:0033755","l":"sulfur oxygenase/reductase activity","na":1,"nb":4,"a":[["metabolism/disproportionation.html","Disproportionation"]],"b":[["EC%3A1.13.11.55","sulfur oxygenase/reductase"],["RHEA%3A13957","4 sulfur + O2 + 4 H2O = 2 hydrogen sulfide + 2 sulfite + 6 H(+)"],["GO%3A0033755","sulfur oxygenase/reductase activity"],["NCBIfam%3ANF047630","sulfur oxygenase/reductase"]]},{"id":"GO:0044569","l":"[Ni-Fe] hydrogenase complex","na":1,"nb":4,"a":[["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["ComplexPortal%3ACPX-281","Hydrogenase-1 complex"],["ComplexPortal%3ACPX-282","Hydrogenase-2 complex"],["GO%3A0044569","[Ni-Fe] hydrogenase complex"],["NCBIfam%3ANF053600","membrane-bound hydrogenase complex subunit MbhI"]]},{"id":"GO:0045436","l":"lycopene beta cyclase activity","na":1,"nb":4,"a":[["morphology/orange_pigmented.html","orange pigmented"]],"b":[["RHEA%3A32219","all-trans-lycopene = gamma-carotene"],["GO%3A0045436","lycopene beta cyclase activity"],["NCBIfam%3ATIGR01789","lycopene beta-cyclase CrtY"],["NCBIfam%3ANF045687","lycopene beta cyclase"]]},{"id":"GO:0047154","l":"methylmalonyl-CoA carboxytransferase activity","na":1,"nb":4,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["EC%3A2.1.3.1","methylmalonyl-CoA carboxytransferase"],["RHEA%3A20764","(S)-methylmalonyl-CoA + pyruvate = propanoyl-CoA + oxaloacetate"],["GO%3A0047154","methylmalonyl-CoA carboxytransferase activity"],["proteintraitsmech%3ABIOLIP_MCA","MCA-binding site"]]},{"id":"GO:0050605","l":"superoxide reductase activity","na":1,"nb":4,"a":[["environment/microaerotolerant.html","microaerotolerant"]],"b":[["EC%3A1.15.1.2","superoxide reductase"],["RHEA%3A21324","reduced [rubredoxin] + superoxide + 2 H(+) = oxidized [rubredoxin] + H2O2"],["GO%3A0050605","superoxide reductase activity"],["MCSA%3A660","superoxide reductase"]]},{"id":"InterPro:IPR005936","l":"","na":1,"nb":4,"a":[["environment/temperature_optimum_mid4.html","temperature optimum mid4"]],"b":[["HAMAP%3AMF_01458","ATP-dependent zinc metalloprotease FtsH [ftsH]"],["Pfam%3APF06480","FtsH Extracellular"],["PROSITE%3APS00674","AAA-protein family signature"],["Pfam%3APF21232","Yme1-like, N-terminal"]]},{"id":"InterPro:IPR005977","l":"","na":1,"nb":4,"a":[["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["HAMAP%3AMF_00533","Nitrogenase iron protein [nifH]"],["PROSITE%3APS00746","NifH/frxC family signature 1"],["PROSITE%3APS00692","NifH/frxC family signature 2"]]},{"id":"InterPro:IPR051315","l":"","na":1,"nb":4,"a":[["physiology/chemotaxis.html","chemotaxis"]],"b":[["Pfam%3APF01584","CheW-like domain"],["Pfam%3APF09078","CheY binding"],["Pfam%3APF02895","Signal transducing histidine kinase, homodimeric domain"],["PANTHER%3APTHR43395","SENSOR HISTIDINE KINASE CHEA"]]},{"id":"METPO:1000620","l":"halophilic","na":1,"nb":4,"a":[["environment/halophilic.html","halophilic"]],"b":[["METPO%3A1000628","extremely halophilic"],["METPO%3A1000620","halophilic"],["METPO%3A1000623","moderately halophilic"],["METPO%3A1000625","slightly halophilic"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":1,"nb":4,"a":[["physiology/photoheterotrophic.html","photoheterotrophic"]],"b":[["TED%3AAF-A0A7W3UB61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W3UB61-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F4B3-F1-model_v4_TED01","TED novel fold AF-A0A0D7F4B3-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F6R4-F1-model_v4_TED01","TED novel fold AF-A0A0D7F6R4-F1-model_v4_TED01"],["TED%3AAF-A0A7W3YI15-F1-model_v4_TED02","TED novel fold AF-A0A7W3YI15-F1-model_v4_TED02"]]},{"id":"NCBITaxon:258594","l":"Rhodopseudomonas palustris CGA009","na":1,"nb":4,"a":[["physiology/photoorganoheterotrophic.html","photoorganoheterotrophic"]],"b":[["Pfam%3APF01322","Cytochrome C'"],["PROSITE%3APS00969","Antenna complexes beta subunits signature"],["PROSITE%3APS00936","Ribosomal protein L35 signature"],["PROSITE%3APS01181","Ribosomal protein S21 signature"]]},{"id":"NCBITaxon:2822231","l":"Phanerodontia chrysosporium","na":1,"nb":4,"a":[["metabolism/manganese_oxidation.html","manganese oxidation"]],"b":[["Pfam%3APF18637","Aldos-2-ulose dehydratase/isomerase (AUDH) Cupin domain"],["Pfam%3APF16010","Cytochrome domain of cellobiose dehydrogenase"],["PROSITE%3APS00623","GMC oxidoreductases signature 1"],["Pfam%3APF22301","Aldos-2-ulose dehydratase, beta-propeller domain"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":1,"nb":4,"a":[["ecology/plant_pathogen.html","plant pathogen"]],"b":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"],["TED%3AAF-A0A085UKV7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085UKV7-F1-model_v4_TED01"],["TED%3AAF-A0A4R6IU28-F1-model_v4_TED02","TED novel fold AF-A0A4R6IU28-F1-model_v4_TED02"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans Pd1222","na":1,"nb":4,"a":[["physiology/mixotrophic.html","mixotrophic"]],"b":[["Pfam%3APF27518","Heme exporter protein C"],["Pfam%3APF22039","Imidazolonepropionase-like composite domain, bacteria"],["PROSITE%3APS01181","Ribosomal protein S21 signature"],["Pfam%3APF02239","Cytochrome D1 heme domain"]]},{"id":"NCBITaxon:55601","l":"Vibrio anguillarum","na":1,"nb":4,"a":[["genomics/sspabcd_sspfgh_system.html","SspABCD-SspFGH system"]],"b":[["Pfam%3APF17327","Acyl homoserine lactone synthase"],["PROSITE%3APS00949","Autoinducer synthase family signature"],["TED%3AAF-A0A241NLV5-F1-model_v4_TED03","TED novel fold AF-A0A241NLV5-F1-model_v4_TED03"],["TED%3AAF-A0A290PUC4-F1-model_v4_TED02","TED novel fold AF-A0A290PUC4-F1-model_v4_TED02"]]},{"id":"UniProt:P00459","l":"","na":1,"nb":4,"a":[["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["PROSITE%3APS00746","NifH/frxC family signature 1"],["PROSITE%3APS00692","NifH/frxC family signature 2"],["MCSA%3A212","nitrogenase"]]},{"id":"UniProt:P0C2S5","l":"","na":1,"nb":4,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["EC%3A3.2.1.176","cellulose 1,4-beta-cellobiosidase (reducing end)"],["Pfam%3APF00404","Dockerin type I domain"],["PROSITE%3APS00448","Clostridium cellulosome enzymes repeated domain signature"],["Pfam%3APF02011","Glycosyl hydrolase family 48"]]},{"id":"UniProt:P16033","l":"","na":4,"nb":1,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["proteintraitsmech%3ABIOLIP_PHO","PHO-binding site"]]},{"id":"CHEBI:16170","l":"mercury(0)","na":1,"nb":3,"a":[["environment/mercury_tolerant.html","mercury tolerant"]],"b":[["EC%3A1.16.1.1","mercury(II) reductase"],["RHEA%3A23856","Hg + NADP(+) + H(+) = Hg(2+) + NADPH"],["MCSA%3A277","mercury(II) reductase"]]},{"id":"CHEBI:17203","l":"L-proline","na":1,"nb":3,"a":[["environment/non_halophilic.html","non halophilic"]],"b":[["MCSA%3A403","astacin"],["MCSA%3A379","Xaa-Pro aminopeptidase"],["proteintraitsmech%3ABIOLIP_PRO","PRO-binding site"]]},{"id":"CHEBI:17513","l":"","na":3,"nb":1,"a":[["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/fermentation.html","Fermentation"],["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"]],"b":[["MCSA%3A119","pyruvate:ferredoxin oxidoreducatse"]]},{"id":"CHEBI:49432","l":"","na":1,"nb":3,"a":[["environment/moderately_halophilic.html","moderately halophilic"]],"b":[["TCDB%3A2.A.15","The Betaine/Carnitine/Choline Transporter (BCCT) Family"],["TCDB%3A2.A.56","The Tripartite ATP-independent Periplasmic Transporter (TRAP-T) Family"],["proteintraitsmech%3ABIOLIP_6CS","6CS-binding site"]]},{"id":"CHEBI:50699","l":"oligosaccharide","na":1,"nb":3,"a":[["metabolism/biopolymer_degradation.html","biopolymer degradation"]],"b":[["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"]]},{"id":"CHEBI:72695","l":"","na":3,"nb":1,"a":[["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"],["physiology/heterotrophic.html","heterotrophic"]],"b":[["TCDB%3A1.A.24","The Gap Junction-forming Connexin (Connexin) Family"]]},{"id":"GO:0009505","l":"plant-type cell wall","na":1,"nb":3,"a":[["ecology/plant_pathogen.html","plant pathogen"]],"b":[["GO%3A0009505","plant-type cell wall"],["GO%3A0009530","primary cell wall"],["GO%3A0009531","secondary cell wall"]]},{"id":"GO:0016160","l":"amylase activity","na":1,"nb":3,"a":[["physiology/amylase_activity.html","amylase activity"]],"b":[["GO%3A0004556","alpha-amylase activity"],["GO%3A0016160","amylase activity"],["GO%3A0016161","beta-amylase activity"]]},{"id":"GO:0016690","l":"diarylpropane peroxidase activity","na":1,"nb":3,"a":[["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["EC%3A1.11.1.14","lignin peroxidase"],["RHEA%3A30271","2 (3,4-dimethoxyphenyl)methanol + H2O2 = 2 (3,4-dimethoxyphenyl)methanol radical + 2 H2O"],["GO%3A0016690","diarylpropane peroxidase activity"]]},{"id":"GO:0042763","l":"intracellular immature spore","na":1,"nb":3,"a":[["morphology/spore_forming.html","spore forming"]],"b":[["GO%3A0042764","ascospore-type prospore"],["GO%3A0042601","endospore-forming forespore"],["GO%3A0042763","intracellular immature spore"]]},{"id":"GO:0043158","l":"heterocyst development","na":1,"nb":3,"a":[["morphology/heterocyst.html","heterocyst"]],"b":[["GO%3A0043158","heterocyst development"],["NCBIfam%3ANF045514","heterocyst development glycosyltransferase HepC"],["NCBIfam%3ANF015533","Peptidase family S48"]]},{"id":"GO:0044297","l":"cell body","na":1,"nb":3,"a":[["morphology/spiral_shaped.html","spiral shaped"]],"b":[["GO%3A0044297","cell body"],["GO%3A0043025","neuronal cell body"],["GO%3A1990017","somatic portion of tanycyte"]]},{"id":"GO:0050137","l":"NADPH peroxidase activity","na":1,"nb":3,"a":[["environment/aerotolerant.html","aerotolerant"]],"b":[["EC%3A1.11.1.2","NADPH peroxidase"],["RHEA%3A15173","H2O2 + NADPH + H(+) = NADP(+) + 2 H2O"],["GO%3A0050137","NADPH peroxidase activity"]]},{"id":"GO:0102036","l":"methyltetrahydrofolate:corrinoid/iron-sulfur protein methyltransferase activity","na":1,"nb":3,"a":[["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"]],"b":[["EC%3A2.1.1.258","5-methyltetrahydrofolate:corrinoid/iron-sulfur protein Co-methyltransferase"],["RHEA%3A45200","methyl-Co(III)-[corrinoid Fe-S protein] + (6S)-5,6,7,8-tetrahydrofolate = Co(I)-[corrinoid Fe-S protein] + (6S)-5-methyl-5,6,7,8-tetrahydrofolate + H(+)"],["GO%3A0102036","methyltetrahydrofolate:corrinoid/iron-sulfur protein methyltransferase activity"]]},{"id":"InterPro:IPR005001","l":"","na":1,"nb":3,"a":[["physiology/stress_response.html","stress response"]],"b":[["Pfam%3APF17209","Hfq protein"],["HAMAP%3AMF_00436","RNA-binding protein Hfq [hfq]"],["PANTHER%3APTHR34772","RNA-BINDING PROTEIN HFQ"]]},{"id":"InterPro:IPR020823","l":"","na":1,"nb":3,"a":[["morphology/sarcina_arrangement.html","sarcina arrangement"]],"b":[["Pfam%3APF14450","Cell division protein FtsA"],["HAMAP%3AMF_02033","Cell division protein FtsA [ftsA]"],["Pfam%3APF11983","Cell division protein FtsA, C-terminal"]]},{"id":"InterPro:IPR052028","l":"","na":1,"nb":3,"a":[["physiology/persister_cell_formation.html","persister cell formation"]],"b":[["Pfam%3APF13657","HipA N-terminal domain"],["Pfam%3APF07804","HipA-like C-terminal domain"],["PANTHER%3APTHR37419","SERINE/THREONINE-PROTEIN KINASE TOXIN HIPA"]]},{"id":"InterPro:IPR052159","l":"","na":1,"nb":3,"a":[["physiology/natural_competence.html","natural competence"]],"b":[["Pfam%3APF13567","Domain of unknown function (DUF4131)"],["PANTHER%3APTHR30619","DNA INTERNALIZATION/COMPETENCE PROTEIN COMEC/REC2"],["Pfam%3APF03772","Competence protein"]]},{"id":"METPO:1000622","l":"halotolerant","na":3,"nb":1,"a":[["environment/halotolerant.html","halotolerant"],["environment/nacl_delta_low.html","NaCl delta low"],["environment/slightly_halophilic.html","slightly halophilic"]],"b":[["METPO%3A1000622","halotolerant"]]},{"id":"NCBITaxon:1639","l":"Listeria monocytogenes","na":1,"nb":3,"a":[["environment/psychrotolerant.html","psychrotolerant"]],"b":[["TED%3AAF-A0A6Z1JB74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6Z1JB74-F1-model_v4_TED01"],["TED%3AAF-A0A5Z1VYX2-F1-model_v4_TED01","TED novel fold AF-A0A5Z1VYX2-F1-model_v4_TED01"],["TED%3AAF-A0A823IT06-F1-model_v4_TED02","TED novel fold AF-A0A823IT06-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1665","l":"Arthrobacter globiformis","na":1,"nb":3,"a":[["morphology/gram_variable.html","gram variable"]],"b":[["Pfam%3APF21994","AGAO-like N2 domain"],["Pfam%3APF18835","Beta helix repeat of Inulin fructotransferase"],["TED%3AAF-A0A328HCX7-F1-model_v4_TED02","TED novel fold AF-A0A328HCX7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1708","l":"Cellulomonas fimi","na":1,"nb":3,"a":[["metabolism/biopolymer_degradation.html","biopolymer degradation"]],"b":[["Pfam%3APF00553","Cellulose binding domain"],["PROSITE%3APS00561","CBM2a (carbohydrate-binding type-2) domain signature"],["PROSITE%3APS00591","Glycosyl hydrolases family 10 (GH10) active site"]]},{"id":"NCBITaxon:1717","l":"Corynebacterium diphtheriae","na":1,"nb":3,"a":[["morphology/dumbbell_shaped.html","dumbbell shaped"]],"b":[["Pfam%3APF08051","Erythromycin resistance leader peptide"],["PROSITE%3APS01007","Transposases, Mutator family, signature"],["TED%3AAF-A0A811G0F8-F1-model_v4_TED05","TED novel fold AF-A0A811G0F8-F1-model_v4_TED05"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":1,"nb":3,"a":[["physiology/alkaline_phosphatase_activity.html","alkaline phosphatase activity"]],"b":[["Pfam%3APF03069","Acetamidase/Formamidase family"],["PROSITE%3APS00818","Dps protein family signature 1"],["Pfam%3APF13810","Domain of unknown function (DUF4185)"]]},{"id":"NCBITaxon:2242","l":"Halobacterium salinarum","na":3,"nb":1,"a":[["environment/extremely_halophilic.html","extremely halophilic"],["environment/halophilic.html","halophilic"],["morphology/intracellular_inclusion.html","intracellular inclusion"]],"b":[["Pfam%3APF07232","Putative rep protein (DUF1424)"]]},{"id":"NCBITaxon:2283","l":"Acidianus ambivalens","na":1,"nb":3,"a":[["metabolism/disproportionation.html","Disproportionation"]],"b":[["Pfam%3APF07680","TQO small subunit DoxA"],["Pfam%3APF04173","TQO small subunit DoxD"],["TED%3AAF-O57695-F1-model_v4_TED01","TED highly-symmetric fold AF-O57695-F1-model_v4_TED01"]]},{"id":"NCBITaxon:243233","l":"Methylococcus capsulatus Bath","na":1,"nb":3,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["Pfam%3APF17850","CysA C-terminal regulatory domain"],["Pfam%3APF02461","Ammonia monooxygenase"],["TED%3AAF-Q604F4-F1-model_v4_TED02","TED novel fold AF-Q604F4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:273121","l":"Wolinella succinogenes (strain ATCC 29543 / DSM 1740 / CCUG 13145 / JCM 31913 / LMG 7466 / NCTC 11488 / FDC 602W)","na":1,"nb":3,"a":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]],"b":[["Pfam%3APF26365","Apolipoprotein N-acyltransferase integral membrane domain"],["Pfam%3APF02335","Cytochrome c552"],["PROSITE%3APS00883","Nickel-dependent hydrogenases b-type cytochrome subunit signature 2"]]},{"id":"NCBITaxon:44001","l":"Caldicellulosiruptor saccharolyticus","na":1,"nb":3,"a":[["metabolism/xylan_degradation.html","xylan degradation"]],"b":[["Pfam%3APF12891","Glycoside hydrolase family 44"],["PROSITE%3APS01027","Glycosyl hydrolases family 39 active site"],["Pfam%3APF02011","Glycosyl hydrolase family 48"]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":1,"nb":3,"a":[["other/voges_proskauer_test_positive.html","Voges-Proskauer test positive"]],"b":[["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"],["PROSITE%3APS00896","LacY family proton/sugar symporters signature 1"],["PROSITE%3APS00897","LacY family proton/sugar symporters signature 2"]]},{"id":"NCBITaxon:584","l":"Proteus mirabilis","na":1,"nb":3,"a":[["morphology/swarming_motility.html","swarming motility"]],"b":[["Pfam%3APF05280","Flagellar transcriptional activator (FlhC)"],["TED%3AAF-A0A1Z1SXV6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z1SXV6-F1-model_v4_TED01"],["TED%3AAF-A0A7U1CMJ9-F1-model_v4_TED01","TED novel fold AF-A0A7U1CMJ9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":1,"nb":3,"a":[["morphology/polar_flagellation.html","polar flagellation"]],"b":[["Pfam%3APF04205","FMN-binding domain"],["Pfam%3APF10795","Protein of unknown function (DUF2607)"],["TED%3AAF-A0A1W6U0N2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W6U0N2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:94122","l":"Shewanella sp. ANA-3","na":1,"nb":3,"a":[["metabolism/arsenate_respiration.html","arsenate respiration"]],"b":[["Pfam%3APF03883","Peroxide stress protein YaaA"],["Pfam%3APF04751","Dual-action ribosomal maturation protein DarP"],["Pfam%3APF04356","Protein of unknown function (DUF489)"]]},{"id":"UniProt:P0AAI3","l":"","na":1,"nb":3,"a":[["physiology/heat_shock_response.html","heat shock response"]],"b":[["ComplexPortal%3ACPX-5046","FtsH-HflKC complex"],["NCBIfam%3ANF008004","ATP-dependent zinc metalloprotease FtsH"],["CATH%3A3.30.720.210","CATH homologous superfamily 3.30.720.210"]]},{"id":"UniProt:P0C0Y9","l":"","na":1,"nb":3,"a":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"]],"b":[["proteintraitsmech%3ABIOLIP_BPH","BPH-binding site"],["proteintraitsmech%3ABIOLIP_SPO","SPO-binding site"],["proteintraitsmech%3ABIOLIP_U10","U10-binding site"]]},{"id":"UniProt:P0CJ63","l":"","na":1,"nb":3,"a":[["physiology/quorum_sensing.html","quorum sensing"]],"b":[["EC%3A3.1.1.81","quorum-quenching N-acyl-homoserine lactonase"],["RHEA%3A22576","an N-acyl-L-homoserine lactone + H2O = an N-acyl-L-homoserine + H(+)"],["proteintraitsmech%3ABIOLIP_C6L","C6L-binding site"]]},{"id":"UniProt:P41020","l":"","na":1,"nb":3,"a":[["physiology/urease_activity.html","urease activity"]],"b":[["PROSITE%3APS01120","Urease nickel ligands signature"],["PROSITE%3APS00145","Urease active site"],["proteintraitsmech%3ABIOLIP_HQE","HQE-binding site"]]},{"id":"UniProt:Q8GBW6","l":"","na":1,"nb":3,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["EC%3A2.1.3.1","methylmalonyl-CoA carboxytransferase"],["RHEA%3A20764","(S)-methylmalonyl-CoA + pyruvate = propanoyl-CoA + oxaloacetate"],["proteintraitsmech%3ABIOLIP_MCA","MCA-binding site"]]},{"id":"CHEBI:15350","l":"","na":2,"nb":1,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["proteintraitsmech%3ABIOLIP_UVW","UVW-binding site"]]},{"id":"CHEBI:15539","l":"","na":2,"nb":1,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"],["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"]],"b":[["proteintraitsmech%3ABIOLIP_1VU","1VU-binding site"]]},{"id":"CHEBI:16136","l":"hydrogen sulfide","na":2,"nb":1,"a":[["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/photolithotrophic.html","photolithotrophic"]],"b":[["MCSA%3A398","sulfite reductase (NADPH)"]]},{"id":"CHEBI:16761","l":"","na":1,"nb":2,"a":[["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16761","requires ADP"],["proteintraitsmech%3ABIOLIP_ADP","ADP-binding site"]]},{"id":"CHEBI:26666","l":"","na":1,"nb":2,"a":[["physiology/chemoheterotrophic.html","chemoheterotrophic"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.73","The Short Chain Fatty Acid Uptake (AtoE) Family"]]},{"id":"CHEBI:28265","l":"","na":1,"nb":2,"a":[["metabolism/methanogenesis.html","Methanogenesis"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_28265","requires coenzyme F430"],["proteintraitsmech%3ABIOLIP_F43","F43-binding site"]]},{"id":"CHEBI:49537","l":"","na":2,"nb":1,"a":[["morphology/motility.html","motility"],["morphology/vibrio_shaped.html","vibrio shaped"]],"b":[["proteintraitsmech%3ABIOLIP_C2E","C2E-binding site"]]},{"id":"GO:0005983","l":"starch catabolic process","na":1,"nb":2,"a":[["metabolism/starch_degradation.html","starch degradation"]],"b":[["GO%3A0005983","starch catabolic process"],["NCBIfam%3ATIGR02103","pullulanase-type alpha-1,6-glucosidase"]]},{"id":"GO:0009321","l":"alkyl hydroperoxide reductase complex","na":1,"nb":2,"a":[["environment/microaerophilic.html","microaerophilic"]],"b":[["ComplexPortal%3ACPX-4862","Alkyl hydroperoxide reductase complex"],["GO%3A0009321","alkyl hydroperoxide reductase complex"]]},{"id":"GO:0009594","l":"detection of nutrient","na":1,"nb":2,"a":[["physiology/nutrient_adaptation.html","nutrient adaptation"]],"b":[["GO%3A0031318","detection of folic acid"],["GO%3A0009594","detection of nutrient"]]},{"id":"GO:0015250","l":"water channel activity","na":1,"nb":2,"a":[["environment/stenohaline.html","stenohaline"]],"b":[["GO%3A0015250","water channel activity"],["NCBIfam%3ANF003838","aquaporin Z"]]},{"id":"GO:0016231","l":"beta-N-acetylglucosaminidase activity","na":1,"nb":2,"a":[["metabolism/chitinolysis.html","chitinolysis"]],"b":[["GO%3A0016231","beta-N-acetylglucosaminidase activity"],["NCBIfam%3ANF041654","beta-N-acetylglucosaminidase"]]},{"id":"GO:0019332","l":"aerobic respiration, using nitrite as electron donor","na":2,"nb":1,"a":[["metabolism/complete_ammonia_oxidation.html","complete ammonia oxidation"],["metabolism/nitrification.html","nitrification"]],"b":[["GO%3A0019332","aerobic respiration, using nitrite as electron donor"]]},{"id":"GO:0044674","l":"methyl coenzyme M reductase complex","na":2,"nb":1,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/methanogenesis.html","Methanogenesis"]],"b":[["GO%3A0044674","methyl coenzyme M reductase complex"]]},{"id":"GO:0046358","l":"butyrate biosynthetic process","na":2,"nb":1,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"]],"b":[["GO%3A0046358","butyrate biosynthetic process"]]},{"id":"GO:0102252","l":"cellulose 1,4-beta-cellobiosidase activity (reducing end)","na":1,"nb":2,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["EC%3A3.2.1.176","cellulose 1,4-beta-cellobiosidase (reducing end)"],["GO%3A0102252","cellulose 1,4-beta-cellobiosidase activity (reducing end)"]]},{"id":"InterPro:IPR002102","l":"Cellulosome anchoring protein, cohesin domain","na":1,"nb":2,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["InterPro%3AIPR002102","Cellulosome anchoring protein, cohesin domain"],["Pfam%3APF00963","Cohesin domain"]]},{"id":"InterPro:IPR004596","l":"","na":2,"nb":1,"a":[["morphology/cell_length_large.html","cell length large"],["morphology/filament_shaped.html","filament shaped"]],"b":[["Pfam%3APF03846","Cell division inhibitor SulA"]]},{"id":"InterPro:IPR004753","l":"","na":1,"nb":2,"a":[["morphology/tailed_shaped.html","tailed shaped"]],"b":[["HAMAP%3AMF_02207","Cell shape-determining protein MreB [mreB]"],["PRINTS%3APR01652","Bacterial cell shape determinant MreB/Mbl protein signature"]]},{"id":"InterPro:IPR023028","l":"","na":1,"nb":2,"a":[["physiology/chemoheterotrophic.html","chemoheterotrophic"]],"b":[["HAMAP%3AMF_00196","Mannitol-1-phosphate 5-dehydrogenase [mtlD]"],["PROSITE%3APS00974","Mannitol dehydrogenases signature"]]},{"id":"InterPro:IPR039315","l":"","na":1,"nb":2,"a":[["physiology/chemotaxis.html","chemotaxis"]],"b":[["Pfam%3APF01584","CheW-like domain"],["PANTHER%3APTHR22617","CHEMOTAXIS SENSOR HISTIDINE KINASE-RELATED"]]},{"id":"METPO:1000604","l":"microaerophilic","na":2,"nb":1,"a":[["environment/microaerophilic.html","microaerophilic"],["environment/oxygen_preference.html","oxygen preference"]],"b":[["METPO%3A1000604","microaerophilic"]]},{"id":"METPO:1000609","l":"aerotolerant","na":2,"nb":1,"a":[["environment/aerotolerant.html","aerotolerant"],["environment/oxygen_preference.html","oxygen preference"]],"b":[["METPO%3A1000609","aerotolerant"]]},{"id":"METPO:1000612","l":"facultative oxygen preference","na":2,"nb":1,"a":[["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/oxygen_preference.html","oxygen preference"]],"b":[["METPO%3A1000612","facultative oxygen preference"]]},{"id":"METPO:1000617","l":"hyperthermophilic","na":1,"nb":2,"a":[["environment/hyperthermophilic.html","hyperthermophilic"]],"b":[["METPO%3A1000721","extreme hyperthermophilic"],["METPO%3A1000617","hyperthermophilic"]]},{"id":"METPO:1000632","l":"autotrophic","na":2,"nb":1,"a":[["physiology/autotrophic.html","autotrophic"],["physiology/trophic_type.html","trophic type"]],"b":[["METPO%3A1000632","autotrophic"]]},{"id":"METPO:1000641","l":"chemotrophic","na":2,"nb":1,"a":[["physiology/chemotrophic.html","chemotrophic"],["physiology/trophic_type.html","trophic type"]],"b":[["METPO%3A1000641","chemotrophic"]]},{"id":"METPO:1000642","l":"copiotrophic","na":2,"nb":1,"a":[["physiology/copiotrophic.html","copiotrophic"],["physiology/nutrient_adaptation.html","nutrient adaptation"]],"b":[["METPO%3A1000642","copiotrophic"]]},{"id":"METPO:1000644","l":"heterotrophic","na":2,"nb":1,"a":[["physiology/heterotrophic.html","heterotrophic"],["physiology/trophic_type.html","trophic type"]],"b":[["METPO%3A1000644","heterotrophic"]]},{"id":"METPO:1000654","l":"oligotrophic","na":2,"nb":1,"a":[["physiology/nutrient_adaptation.html","nutrient adaptation"],["physiology/oligotrophic.html","oligotrophic"]],"b":[["METPO%3A1000654","oligotrophic"]]},{"id":"METPO:1000657","l":"photoheterotrophic","na":2,"nb":1,"a":[["physiology/aerobic_anoxygenic_phototrophy.html","aerobic anoxygenic phototrophy"],["physiology/photoheterotrophic.html","photoheterotrophic"]],"b":[["METPO%3A1000657","photoheterotrophic"]]},{"id":"METPO:1000660","l":"phototrophic","na":2,"nb":1,"a":[["physiology/phototrophic.html","phototrophic"],["physiology/trophic_type.html","trophic type"]],"b":[["METPO%3A1000660","phototrophic"]]},{"id":"METPO:1000804","l":"Substrate-level phosphorylation","na":2,"nb":1,"a":[["metabolism/fermentation.html","Fermentation"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["METPO%3A1000804","Substrate-level phosphorylation"]]},{"id":"METPO:1003003","l":"acidophilic","na":1,"nb":2,"a":[["environment/acidophilic.html","acidophilic"]],"b":[["METPO%3A1003003","acidophilic"],["METPO%3A1003006","obligately acidophilic"]]},{"id":"METPO:1003008","l":"acidotolerant","na":2,"nb":1,"a":[["environment/acidotolerant.html","acidotolerant"],["environment/ph_delta.html","pH delta"]],"b":[["METPO%3A1003008","acidotolerant"]]},{"id":"METPO:1005001","l":"nitrification","na":2,"nb":1,"a":[["metabolism/complete_ammonia_oxidation.html","complete ammonia oxidation"],["metabolism/nitrification.html","nitrification"]],"b":[["METPO%3A1005001","nitrification"]]},{"id":"NCBITaxon:1032480","l":"Microlunatus phosphovorus NM-1","na":1,"nb":2,"a":[["morphology/polyphosphate_granule.html","polyphosphate granule"]],"b":[["TED%3AAF-F5XIG6-F1-model_v4_TED02","TED novel fold AF-F5XIG6-F1-model_v4_TED02"],["TED%3AAF-F5XQ24-F1-model_v4_TED04","TED novel fold AF-F5XQ24-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":1,"nb":2,"a":[["physiology/urease_activity.html","urease activity"]],"b":[["PROSITE%3APS01120","Urease nickel ligands signature"],["PROSITE%3APS00145","Urease active site"]]},{"id":"NCBITaxon:2190","l":"Methanocaldococcus jannaschii","na":2,"nb":1,"a":[["metabolism/methanogenesis.html","Methanogenesis"],["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["TED%3AAF-A0A832WL57-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A832WL57-F1-model_v4_TED02"]]},{"id":"NCBITaxon:240292","l":"Trichormus variabilis ATCC 29413","na":1,"nb":2,"a":[["morphology/akinete.html","akinete"]],"b":[["Pfam%3APF18921","Cyanophycin synthase-like N-terminal domain"],["Pfam%3APF13619","KTSC domain"]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":1,"nb":2,"a":[["physiology/alpha_fucosidase_activity.html","alpha-fucosidase activity"]],"b":[["Pfam%3APF21252","Glycosyl hydrolase 109, C-terminal domain"],["TED%3AAF-A0A3P1YJQ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3P1YJQ6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28132","l":"Prevotella melaninogenica","na":1,"nb":2,"a":[["morphology/black_pigmented.html","black pigmented"]],"b":[["TED%3AAF-A0A8B2A6Y8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B2A6Y8-F1-model_v4_TED01"],["TED%3AAF-A0A250KF16-F1-model_v4_TED03","TED novel fold AF-A0A250KF16-F1-model_v4_TED03"]]},{"id":"NCBITaxon:292415","l":"Thiobacillus denitrificans ATCC 25259","na":2,"nb":1,"a":[["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/chemoautotrophic.html","chemoautotrophic"]],"b":[["Pfam%3APF06804","Outer membrane protein assembly factor BamC-like C-terminal domain"]]},{"id":"NCBITaxon:317655","l":"Sphingopyxis alaskensis RB2256","na":2,"nb":1,"a":[["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"]],"b":[["Pfam%3APF10755","Protein of unknown function (DUF2585)"]]},{"id":"NCBITaxon:319224","l":"Shewanella putrefaciens (strain CN-32 / ATCC BAA-453)","na":1,"nb":2,"a":[["morphology/flagellar_arrangement.html","flagellar arrangement"]],"b":[["Pfam%3APF17810","Arginine decarboxylase helical bundle domain"],["Pfam%3APF17944","Arginine decarboxylase C-terminal helical extension"]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":1,"nb":2,"a":[["morphology/yellow_pigmented.html","yellow pigmented"]],"b":[["TED%3AAF-A0A6N3WS12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N3WS12-F1-model_v4_TED01"],["TED%3AAF-A0A3R7GIU2-F1-model_v4_TED02","TED novel fold AF-A0A3R7GIU2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:408","l":"Methylorubrum extorquens","na":2,"nb":1,"a":[["morphology/pink_pigmented.html","pink pigmented"],["physiology/methylotrophic.html","methylotrophic"]],"b":[["Pfam%3APF04476","4-HFC-P synthase"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":1,"nb":2,"a":[["morphology/lateral_flagellation.html","lateral flagellation"]],"b":[["TED%3AAF-B5UAE0-F1-model_v4_TED01","TED highly-symmetric fold AF-B5UAE0-F1-model_v4_TED01"],["TED%3AAF-A0A3E1IF45-F1-model_v4_TED01","TED novel fold AF-A0A3E1IF45-F1-model_v4_TED01"]]},{"id":"NCBITaxon:69","l":"Lysobacter enzymogenes","na":1,"nb":2,"a":[["genomics/gasdermin_system.html","GasderMIN system"]],"b":[["TED%3AAF-A0A1J1E6A8-F1-model_v4_TED02","TED novel fold AF-A0A1J1E6A8-F1-model_v4_TED02"],["TED%3AAF-A0A7T8MLU2-F1-model_v4_TED03","TED novel fold AF-A0A7T8MLU2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:79885","l":"Alkalihalophilus pseudofirmus","na":2,"nb":1,"a":[["environment/alkalotolerant.html","alkalotolerant"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"]],"b":[["TED%3AAF-A0A1Q8TV17-F1-model_v4_TED02","TED novel fold AF-A0A1Q8TV17-F1-model_v4_TED02"]]},{"id":"NCBITaxon:913088","l":"Escherichia coli (strain TW11681)","na":1,"nb":2,"a":[["genomics/cbass_system.html","CBASS system"]],"b":[["Pfam%3APF21713","Cyclic GMP-AMP synthase, C-terminal domain"],["Pfam%3APF21654","Cyclic GMP-AMP synthase DncV-like, nucleotidyltransferase domain"]]},{"id":"UniProt:G1UBD1","l":"","na":1,"nb":2,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["EC%3A1.14.18.3","methane monooxygenase (particulate)"],["RHEA%3A30355","methane + a quinol + O2 = methanol + a quinone + H2O"]]},{"id":"UniProt:O52683","l":"","na":1,"nb":2,"a":[["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"]],"b":[["EC%3A1.12.1.4","hydrogenase (NAD(+), ferredoxin)"],["RHEA%3A30279","2 H2 + 2 oxidized [2Fe-2S]-[ferredoxin] + NAD(+) = 2 reduced [2Fe-2S]-[ferredoxin] + NADH + 3 H(+)"]]},{"id":"UniProt:P06278","l":"","na":1,"nb":2,"a":[["metabolism/starch_degradation.html","starch degradation"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["proteintraitsmech%3ABIOLIP_NA","NA-binding site"]]},{"id":"UniProt:P07254","l":"","na":1,"nb":2,"a":[["metabolism/chitinolysis.html","chitinolysis"]],"b":[["MCSA%3A478","chitinase (GH18, Class II)"],["proteintraitsmech%3ABIOLIP_AMI","AMI-binding site"]]},{"id":"UniProt:P0C916","l":"","na":1,"nb":2,"a":[["physiology/chemolithoautotrophic.html","chemolithoautotrophic"]],"b":[["EC%3A4.1.1.39","ribulose-bisphosphate carboxylase"],["RHEA%3A23124","2 (2R)-3-phosphoglycerate + 2 H(+) = D-ribulose 1,5-bisphosphate + CO2 + H2O"]]},{"id":"UniProt:P12747","l":"","na":2,"nb":1,"a":[["physiology/bioluminescence.html","bioluminescence"],["physiology/quorum_sensing.html","quorum sensing"]],"b":[["PROSITE%3APS00949","Autoinducer synthase family signature"]]},{"id":"UniProt:P16027","l":"","na":1,"nb":2,"a":[["physiology/methylotrophic.html","methylotrophic"]],"b":[["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["PROSITE%3APS00363","Bacterial quinoprotein dehydrogenases signature 1"]]},{"id":"UniProt:P29082","l":"","na":1,"nb":2,"a":[["metabolism/disproportionation.html","Disproportionation"]],"b":[["EC%3A1.13.11.55","sulfur oxygenase/reductase"],["RHEA%3A13957","4 sulfur + O2 + 4 H2O = 2 hydrogen sulfide + 2 sulfite + 6 H(+)"]]},{"id":"UniProt:P31891","l":"","na":1,"nb":2,"a":[["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["proteintraitsmech%3ABIOLIP_NFV","NFV-binding site"],["proteintraitsmech%3ABIOLIP_S3F","S3F-binding site"]]},{"id":"UniProt:P31896","l":"","na":1,"nb":2,"a":[["physiology/carboxydotrophic.html","carboxydotrophic"]],"b":[["proteintraitsmech%3ABIOLIP_RQM","RQM-binding site"],["proteintraitsmech%3AMETALPDB_NI_PENTANUCLEAR","pentanuclear nickel site"]]},{"id":"UniProt:P45574","l":"","na":1,"nb":2,"a":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["proteintraitsmech%3ABIOLIP_SH0","SH0-binding site"],["proteintraitsmech%3ABIOLIP_SRM","SRM-binding site"]]},{"id":"UniProt:Q02567","l":"","na":1,"nb":2,"a":[["metabolism/manganese_oxidation.html","manganese oxidation"]],"b":[["EC%3A1.11.1.13","manganese peroxidase"],["RHEA%3A22776","2 Mn(2+) + H2O2 + 2 H(+) = 2 Mn(3+) + 2 H2O"]]},{"id":"UniProt:Q9S1E5","l":"","na":1,"nb":2,"a":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]],"b":[["Pfam%3APF02335","Cytochrome c552"],["proteintraitsmech%3AMETALPDB_Y_TRINUCLEAR","trinuclear yttrium site"]]},{"id":"CHEBI:16412","l":"","na":1,"nb":1,"a":[["morphology/gram_negative.html","gram negative"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:17794","l":"","na":1,"nb":1,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"]],"b":[["proteintraitsmech%3ABIOLIP_3PG","3PG-binding site"]]},{"id":"CHEBI:193595","l":"","na":1,"nb":1,"a":[["environment/hyperthermophilic.html","hyperthermophilic"]],"b":[["RHEA%3A74675","archaeol + AH2 + 2 S-adenosyl-L-methionine = macrocyclic archaeol + 2 5'-deoxyadenosine + 2 L-methionine + A + 2 H(+)"]]},{"id":"CHEBI:23357","l":"","na":1,"nb":1,"a":[["upper/enzyme.html","enzyme"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_23357","cofactor cofactor class"]]},{"id":"CHEBI:25105","l":"","na":1,"nb":1,"a":[["physiology/antibiotic_resistance.html","antibiotic resistance"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:26710","l":"sodium chloride","na":1,"nb":1,"a":[["environment/halophilic.html","halophilic"]],"b":[["TCDB%3A2.A.30","The Cation-Chloride Cotransporter (CCC) Family"]]},{"id":"CHEBI:29125","l":"arsenate(3-)","na":1,"nb":1,"a":[["environment/arsenic_tolerant.html","arsenic tolerant"]],"b":[["proteintraitsmech%3ABIOLIP_ART","ART-binding site"]]},{"id":"CHEBI:35819","l":"","na":1,"nb":1,"a":[["environment/temperature_optimum_mid1.html","temperature optimum mid1"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:41688","l":"crystal violet","na":1,"nb":1,"a":[["morphology/gram_stain.html","gram stain"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:44747","l":"","na":1,"nb":1,"a":[["morphology/brown_pigmented.html","brown pigmented"]],"b":[["proteintraitsmech%3ABIOLIP_OMD","OMD-binding site"]]},{"id":"CHEBI:46837","l":"","na":1,"nb":1,"a":[["morphology/spore_forming.html","spore forming"]],"b":[["proteintraitsmech%3ABIOLIP_PDC","PDC-binding site"]]},{"id":"GO:0002047","l":"phenazine biosynthetic process","na":1,"nb":1,"a":[["morphology/green_pigmented.html","green pigmented"]],"b":[["GO%3A0002047","phenazine biosynthetic process"]]},{"id":"GO:0009420","l":"bacterial-type flagellum filament","na":1,"nb":1,"a":[["morphology/flagellated.html","flagellated"]],"b":[["GO%3A0009420","bacterial-type flagellum filament"]]},{"id":"GO:0015050","l":"methane monooxygenase complex","na":1,"nb":1,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["GO%3A0015050","methane monooxygenase complex"]]},{"id":"GO:0016218","l":"polyketide synthase activity","na":1,"nb":1,"a":[["morphology/black_pigmented.html","black pigmented"]],"b":[["GO%3A0016218","polyketide synthase activity"]]},{"id":"GO:0019643","l":"reductive tricarboxylic acid cycle","na":1,"nb":1,"a":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"]],"b":[["GO%3A0019643","reductive tricarboxylic acid cycle"]]},{"id":"GO:0019655","l":"pyruvate fermentation to ethanol","na":1,"nb":1,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"]],"b":[["GO%3A0019655","pyruvate fermentation to ethanol"]]},{"id":"GO:0033172","l":"gas vesicle shell","na":1,"nb":1,"a":[["morphology/gas_vesicle.html","gas vesicle"]],"b":[["GO%3A0033172","gas vesicle shell"]]},{"id":"GO:0033355","l":"ascorbate glutathione cycle","na":1,"nb":1,"a":[["environment/aerotolerant.html","aerotolerant"]],"b":[["GO%3A0033355","ascorbate glutathione cycle"]]},{"id":"GO:0042603","l":"capsule","na":1,"nb":1,"a":[["morphology/capsule.html","capsule"]],"b":[["GO%3A0042603","capsule"]]},{"id":"GO:0043263","l":"cellulosome","na":1,"nb":1,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["GO%3A0043263","cellulosome"]]},{"id":"GO:0098689","l":"latency-replication decision","na":1,"nb":1,"a":[["genomics/prophage.html","prophage"]],"b":[["GO%3A0098689","latency-replication decision"]]},{"id":"GO:0140649","l":"symbiont-mediated cell-to-cell migration by invasive hypha","na":1,"nb":1,"a":[["ecology/plant_pathogen.html","plant pathogen"]],"b":[["GO%3A0140649","symbiont-mediated cell-to-cell migration by invasive hypha"]]},{"id":"GO:1901177","l":"lycopene biosynthetic process","na":1,"nb":1,"a":[["morphology/yellow_pigmented.html","yellow pigmented"]],"b":[["GO%3A1901177","lycopene biosynthetic process"]]},{"id":"GO:1901812","l":"beta-carotene biosynthetic process","na":1,"nb":1,"a":[["morphology/pigmentation.html","pigmentation"]],"b":[["GO%3A1901812","beta-carotene biosynthetic process"]]},{"id":"InterPro:IPR000067","l":"","na":1,"nb":1,"a":[["morphology/lophotrichous.html","lophotrichous"]],"b":[["PRINTS%3APR01009","Flagellar M-ring protein signature"]]},{"id":"InterPro:IPR002798","l":"","na":1,"nb":1,"a":[["morphology/spore_forming.html","spore forming"]],"b":[["Pfam%3APF01944","Stage II sporulation protein M"]]},{"id":"InterPro:IPR007439","l":"","na":1,"nb":1,"a":[["physiology/chemotaxis.html","chemotaxis"]],"b":[["Pfam%3APF04344","Chemotaxis phosphatase, CheZ"]]},{"id":"InterPro:IPR011895","l":"","na":1,"nb":1,"a":[["metabolism/fermentation.html","Fermentation"]],"b":[["Pfam%3APF10371","Domain of unknown function"]]},{"id":"InterPro:IPR012609","l":"","na":1,"nb":1,"a":[["morphology/spore_shaped.html","spore shaped"]],"b":[["Pfam%3APF08183","Stage V sporulation protein family"]]},{"id":"InterPro:IPR018901","l":"","na":1,"nb":1,"a":[["morphology/spore_shaped.html","spore shaped"]],"b":[["Pfam%3APF10628","Outer spore coat protein E (CotE)"]]},{"id":"InterPro:IPR030858","l":"","na":1,"nb":1,"a":[["morphology/ovoid_shaped.html","ovoid shaped"]],"b":[["HAMAP%3AMF_01941","Mid-cell-anchored protein Z [mapZ]"]]},{"id":"InterPro:IPR047939","l":"","na":1,"nb":1,"a":[["genomics/brex_system.html","BREX system"]],"b":[["Pfam%3APF07669","Eco57I restriction-modification methylase"]]},{"id":"InterPro:IPR048240","l":"","na":1,"nb":1,"a":[["morphology/filament_shaped.html","filament shaped"]],"b":[["Pfam%3APF28068","Polarized growth protein Scy"]]},{"id":"InterPro:IPR052364","l":"","na":1,"nb":1,"a":[["environment/aerotolerant.html","aerotolerant"]],"b":[["PANTHER%3APTHR43865","RUBRERYTHRIN-RELATED"]]},{"id":"METPO:1000605","l":"facultatively anaerobic","na":1,"nb":1,"a":[["environment/facultatively_anaerobic.html","facultatively anaerobic"]],"b":[["METPO%3A1000605","facultatively anaerobic"]]},{"id":"METPO:1000606","l":"obligately aerobic","na":1,"nb":1,"a":[["environment/obligately_aerobic.html","obligately aerobic"]],"b":[["METPO%3A1000606","obligately aerobic"]]},{"id":"METPO:1000608","l":"facultatively aerobic","na":1,"nb":1,"a":[["environment/facultatively_aerobic.html","facultatively aerobic"]],"b":[["METPO%3A1000608","facultatively aerobic"]]},{"id":"METPO:1000610","l":"microaerotolerant","na":1,"nb":1,"a":[["environment/microaerotolerant.html","microaerotolerant"]],"b":[["METPO%3A1000610","microaerotolerant"]]},{"id":"METPO:1000611","l":"strictly anaerobic","na":1,"nb":1,"a":[["environment/strictly_anaerobic.html","strictly anaerobic"]],"b":[["METPO%3A1000611","strictly anaerobic"]]},{"id":"METPO:1000614","l":"psychrophilic","na":1,"nb":1,"a":[["environment/psychrophilic.html","psychrophilic"]],"b":[["METPO%3A1000614","psychrophilic"]]},{"id":"METPO:1000615","l":"mesophilic","na":1,"nb":1,"a":[["environment/mesophilic.html","mesophilic"]],"b":[["METPO%3A1000615","mesophilic"]]},{"id":"METPO:1000616","l":"thermophilic","na":1,"nb":1,"a":[["environment/thermophilic.html","thermophilic"]],"b":[["METPO%3A1000616","thermophilic"]]},{"id":"METPO:1000618","l":"psychrotolerant","na":1,"nb":1,"a":[["environment/psychrotolerant.html","psychrotolerant"]],"b":[["METPO%3A1000618","psychrotolerant"]]},{"id":"METPO:1000619","l":"thermotolerant","na":1,"nb":1,"a":[["environment/thermotolerant.html","thermotolerant"]],"b":[["METPO%3A1000619","thermotolerant"]]},{"id":"METPO:1000621","l":"haloalkaliphilic","na":1,"nb":1,"a":[["environment/haloalkaliphilic.html","haloalkaliphilic"]],"b":[["METPO%3A1000621","haloalkaliphilic"]]},{"id":"METPO:1000623","l":"moderately halophilic","na":1,"nb":1,"a":[["environment/moderately_halophilic.html","moderately halophilic"]],"b":[["METPO%3A1000623","moderately halophilic"]]},{"id":"METPO:1000624","l":"non halophilic","na":1,"nb":1,"a":[["environment/non_halophilic.html","non halophilic"]],"b":[["METPO%3A1000624","non halophilic"]]},{"id":"METPO:1000625","l":"slightly halophilic","na":1,"nb":1,"a":[["environment/slightly_halophilic.html","slightly halophilic"]],"b":[["METPO%3A1000625","slightly halophilic"]]},{"id":"METPO:1000626","l":"stenohaline","na":1,"nb":1,"a":[["environment/stenohaline.html","stenohaline"]],"b":[["METPO%3A1000626","stenohaline"]]},{"id":"METPO:1000627","l":"euryhaline","na":1,"nb":1,"a":[["environment/euryhaline.html","euryhaline"]],"b":[["METPO%3A1000627","euryhaline"]]},{"id":"METPO:1000628","l":"extremely halophilic","na":1,"nb":1,"a":[["environment/extremely_halophilic.html","extremely halophilic"]],"b":[["METPO%3A1000628","extremely halophilic"]]},{"id":"METPO:1000633","l":"carboxydotrophic","na":1,"nb":1,"a":[["physiology/carboxydotrophic.html","carboxydotrophic"]],"b":[["METPO%3A1000633","carboxydotrophic"]]},{"id":"METPO:1000634","l":"chemoautolithotrophic","na":1,"nb":1,"a":[["physiology/chemoautolithotrophic.html","chemoautolithotrophic"]],"b":[["METPO%3A1000634","chemoautolithotrophic"]]},{"id":"METPO:1000635","l":"chemoautotrophic","na":1,"nb":1,"a":[["physiology/chemoautotrophic.html","chemoautotrophic"]],"b":[["METPO%3A1000635","chemoautotrophic"]]},{"id":"METPO:1000636","l":"chemoheterotrophic","na":1,"nb":1,"a":[["physiology/chemoheterotrophic.html","chemoheterotrophic"]],"b":[["METPO%3A1000636","chemoheterotrophic"]]},{"id":"METPO:1000637","l":"chemolithoautotrophic","na":1,"nb":1,"a":[["physiology/chemolithoautotrophic.html","chemolithoautotrophic"]],"b":[["METPO%3A1000637","chemolithoautotrophic"]]},{"id":"METPO:1000638","l":"chemolithoheterotrophic","na":1,"nb":1,"a":[["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"]],"b":[["METPO%3A1000638","chemolithoheterotrophic"]]},{"id":"METPO:1000639","l":"chemolithotrophic","na":1,"nb":1,"a":[["physiology/chemolithotrophic.html","chemolithotrophic"]],"b":[["METPO%3A1000639","chemolithotrophic"]]},{"id":"METPO:1000640","l":"chemoorganoheterotrophic","na":1,"nb":1,"a":[["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"]],"b":[["METPO%3A1000640","chemoorganoheterotrophic"]]},{"id":"METPO:1000646","l":"hydrogenotrophic","na":1,"nb":1,"a":[["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["METPO%3A1000646","hydrogenotrophic"]]},{"id":"METPO:1000647","l":"lithoautotrophic","na":1,"nb":1,"a":[["physiology/lithoautotrophic.html","lithoautotrophic"]],"b":[["METPO%3A1000647","lithoautotrophic"]]},{"id":"METPO:1000648","l":"lithoheterotrophic","na":1,"nb":1,"a":[["physiology/lithoheterotrophic.html","lithoheterotrophic"]],"b":[["METPO%3A1000648","lithoheterotrophic"]]},{"id":"METPO:1000649","l":"lithotrophic","na":1,"nb":1,"a":[["physiology/lithotrophic.html","lithotrophic"]],"b":[["METPO%3A1000649","lithotrophic"]]},{"id":"METPO:1000650","l":"methanotrophic","na":1,"nb":1,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["METPO%3A1000650","methanotrophic"]]},{"id":"METPO:1000651","l":"methylotrophic","na":1,"nb":1,"a":[["physiology/methylotrophic.html","methylotrophic"]],"b":[["METPO%3A1000651","methylotrophic"]]},{"id":"METPO:1000652","l":"mixotrophic","na":1,"nb":1,"a":[["physiology/mixotrophic.html","mixotrophic"]],"b":[["METPO%3A1000652","mixotrophic"]]},{"id":"METPO:1000655","l":"organotrophic","na":1,"nb":1,"a":[["physiology/organotrophic.html","organotrophic"]],"b":[["METPO%3A1000655","organotrophic"]]},{"id":"METPO:1000656","l":"photoautotrophic","na":1,"nb":1,"a":[["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["METPO%3A1000656","photoautotrophic"]]},{"id":"METPO:1000658","l":"photolithotrophic","na":1,"nb":1,"a":[["physiology/photolithotrophic.html","photolithotrophic"]],"b":[["METPO%3A1000658","photolithotrophic"]]},{"id":"METPO:1000659","l":"photoorganoheterotrophic","na":1,"nb":1,"a":[["physiology/photoorganoheterotrophic.html","photoorganoheterotrophic"]],"b":[["METPO%3A1000659","photoorganoheterotrophic"]]},{"id":"METPO:1000663","l":"chemoorganotrophic","na":1,"nb":1,"a":[["physiology/chemoorganotrophic.html","chemoorganotrophic"]],"b":[["METPO%3A1000663","chemoorganotrophic"]]},{"id":"METPO:1000664","l":"organoheterotrophic","na":1,"nb":1,"a":[["physiology/organoheterotrophic.html","organoheterotrophic"]],"b":[["METPO%3A1000664","organoheterotrophic"]]},{"id":"METPO:1000665","l":"photolithoautotrophic","na":1,"nb":1,"a":[["physiology/photolithoautotrophic.html","photolithoautotrophic"]],"b":[["METPO%3A1000665","photolithoautotrophic"]]},{"id":"METPO:1000720","l":"facultative psychrophilic","na":1,"nb":1,"a":[["environment/facultative_psychrophilic.html","facultative psychrophilic"]],"b":[["METPO%3A1000720","facultative psychrophilic"]]},{"id":"METPO:1000721","l":"extreme hyperthermophilic","na":1,"nb":1,"a":[["environment/extreme_hyperthermophilic.html","extreme hyperthermophilic"]],"b":[["METPO%3A1000721","extreme hyperthermophilic"]]},{"id":"METPO:1000801","l":"Aerobic respiration","na":1,"nb":1,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"]],"b":[["METPO%3A1000801","Aerobic respiration"]]},{"id":"METPO:1000803","l":"Oxidative phosphorylation","na":1,"nb":1,"a":[["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"]],"b":[["METPO%3A1000803","Oxidative phosphorylation"]]},{"id":"METPO:1000805","l":"Electron transfer","na":1,"nb":1,"a":[["metabolism/electron_transfer.html","Electron transfer"]],"b":[["METPO%3A1000805","Electron transfer"]]},{"id":"METPO:1000806","l":"Disproportionation","na":1,"nb":1,"a":[["metabolism/disproportionation.html","Disproportionation"]],"b":[["METPO%3A1000806","Disproportionation"]]},{"id":"METPO:1000846","l":"Homoacetogenesis","na":1,"nb":1,"a":[["metabolism/homoacetogenesis.html","Homoacetogenesis"]],"b":[["METPO%3A1000846","Homoacetogenesis"]]},{"id":"METPO:1002003","l":"Cable bacteria metabolism","na":1,"nb":1,"a":[["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"]],"b":[["METPO%3A1002003","Cable bacteria metabolism"]]},{"id":"METPO:1002006","l":"Syntrophy","na":1,"nb":1,"a":[["metabolism/syntrophy.html","Syntrophy"]],"b":[["METPO%3A1002006","Syntrophy"]]},{"id":"METPO:1003001","l":"neutrophilic","na":1,"nb":1,"a":[["environment/neutrophilic.html","neutrophilic"]],"b":[["METPO%3A1003001","neutrophilic"]]},{"id":"METPO:1003004","l":"obligately alkaliphilic","na":1,"nb":1,"a":[["environment/obligately_alkaphilic.html","obligately alkaliphilic"]],"b":[["METPO%3A1003004","obligately alkaliphilic"]]},{"id":"METPO:1003005","l":"facultatively alkaliphilic","na":1,"nb":1,"a":[["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"]],"b":[["METPO%3A1003005","facultatively alkaliphilic"]]},{"id":"METPO:1003006","l":"obligately acidophilic","na":1,"nb":1,"a":[["environment/obligately_acidophilic.html","obligately acidophilic"]],"b":[["METPO%3A1003006","obligately acidophilic"]]},{"id":"METPO:1003007","l":"facultatively acidophilic","na":1,"nb":1,"a":[["environment/facultatively_acidophilic.html","facultatively acidophilic"]],"b":[["METPO%3A1003007","facultatively acidophilic"]]},{"id":"METPO:1003009","l":"alkalotolerant","na":1,"nb":1,"a":[["environment/alkalotolerant.html","alkalotolerant"]],"b":[["METPO%3A1003009","alkalotolerant"]]},{"id":"METPO:1005011","l":"indole test positive","na":1,"nb":1,"a":[["other/indole_test_positive.html","indole test positive"]],"b":[["METPO%3A1005011","indole test positive"]]},{"id":"METPO:1005012","l":"indole test negative","na":1,"nb":1,"a":[["other/indole_test_negative.html","indole test negative"]],"b":[["METPO%3A1005012","indole test negative"]]},{"id":"METPO:1005014","l":"methyl red test positive","na":1,"nb":1,"a":[["other/methyl_red_test_positive.html","methyl red test positive"]],"b":[["METPO%3A1005014","methyl red test positive"]]},{"id":"METPO:1005015","l":"methyl red test negative","na":1,"nb":1,"a":[["other/methyl_red_test_negative.html","methyl red test negative"]],"b":[["METPO%3A1005015","methyl red test negative"]]},{"id":"METPO:1005017","l":"Voges-Proskauer test positive","na":1,"nb":1,"a":[["other/voges_proskauer_test_positive.html","Voges-Proskauer test positive"]],"b":[["METPO%3A1005017","Voges-Proskauer test positive"]]},{"id":"METPO:1005018","l":"Voges-Proskauer test negative","na":1,"nb":1,"a":[["other/voges_proskauer_test_negative.html","Voges-Proskauer test negative"]],"b":[["METPO%3A1005018","Voges-Proskauer test negative"]]},{"id":"METPO:1005021","l":"capnophilic","na":1,"nb":1,"a":[["environment/capnophilic.html","capnophilic"]],"b":[["METPO%3A1005021","capnophilic"]]},{"id":"METPO:1007073","l":"osmotic tolerance","na":1,"nb":1,"a":[["other/osmotic_tolerance.html","osmotic tolerance"]],"b":[["METPO%3A1007073","osmotic tolerance"]]},{"id":"METPO:1007084","l":"catalase negative","na":1,"nb":1,"a":[["other/catalase_negative.html","catalase negative"]],"b":[["METPO%3A1007084","catalase negative"]]},{"id":"METPO:1007086","l":"oxidase negative","na":1,"nb":1,"a":[["other/oxidase_negative.html","oxidase negative"]],"b":[["METPO%3A1007086","oxidase negative"]]},{"id":"METPO:1007088","l":"urease negative","na":1,"nb":1,"a":[["other/urease_negative.html","urease negative"]],"b":[["METPO%3A1007088","urease negative"]]},{"id":"METPO:1007090","l":"coagulase positive","na":1,"nb":1,"a":[["other/coagulase_positive.html","coagulase positive"]],"b":[["METPO%3A1007090","coagulase positive"]]},{"id":"METPO:1007091","l":"coagulase negative","na":1,"nb":1,"a":[["other/coagulase_negative.html","coagulase negative"]],"b":[["METPO%3A1007091","coagulase negative"]]},{"id":"NCBITaxon:133804","l":"gamma proteobacterium EBAC31A08","na":1,"nb":1,"a":[["metabolism/proteorhodopsin_phototrophy.html","proteorhodopsin phototrophy"]],"b":[["PROSITE%3APS00950","Bacterial rhodopsins signature 1"]]},{"id":"NCBITaxon:1392998","l":"Candidatus Methanoperedens nitratireducens","na":1,"nb":1,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"]],"b":[["TED%3AAF-A0A062V4L1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A062V4L1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1473598","l":"Paludibaculum fermentans","na":1,"nb":1,"a":[["environment/facultatively_acidophilic.html","facultatively acidophilic"]],"b":[["TED%3AAF-A0A7S7NND6-F1-model_v4_TED01","TED novel fold AF-A0A7S7NND6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":1,"nb":1,"a":[["morphology/branched_shaped.html","branched shaped"]],"b":[["TED%3AAF-A0A415C3I8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A415C3I8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1752","l":"Propionibacterium freudenreichii subsp. shermanii","na":1,"nb":1,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["PROSITE%3APS00544","Methylmalonyl-CoA mutase signature"]]},{"id":"NCBITaxon:2306023","l":"Gemmobacter lutimaris","na":1,"nb":1,"a":[["environment/ph_delta_mid3.html","pH delta mid3"]],"b":[["TED%3AAF-A0A398BQ53-F1-model_v4_TED04","TED novel fold AF-A0A398BQ53-F1-model_v4_TED04"]]},{"id":"NCBITaxon:243164","l":"Dehalococcoides mccartyi 195","na":1,"nb":1,"a":[["metabolism/organohalide_respiration.html","organohalide respiration"]],"b":[["Pfam%3APF13486","Reductive dehalogenase subunit"]]},{"id":"NCBITaxon:29339","l":"Bacillus thuringiensis subsp. kurstaki","na":1,"nb":1,"a":[["physiology/quorum_sensing.html","quorum sensing"]],"b":[["Pfam%3APF07029","CryBP1 protein"]]},{"id":"NCBITaxon:296","l":"Pseudomonas fragi","na":1,"nb":1,"a":[["environment/temperature_optimum_low.html","temperature optimum low"]],"b":[["TED%3AAF-A0A449IS41-F1-model_v4_TED01","TED novel fold AF-A0A449IS41-F1-model_v4_TED01"]]},{"id":"NCBITaxon:335541","l":"Syntrophomonas wolfei subsp. wolfei (strain DSM 2245B / Goettingen)","na":1,"nb":1,"a":[["metabolism/syntrophy.html","Syntrophy"]],"b":[["TED%3AAF-Q0AVF9-F1-model_v4_TED01","TED novel fold AF-Q0AVF9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["metabolism/photoferrotrophy.html","photoferrotrophy"]],"b":[["Pfam%3APF13282","Domain of unknown function (DUF4070)"]]},{"id":"NCBITaxon:399549","l":"Metallosphaera sedula DSM 5348","na":1,"nb":1,"a":[["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]],"b":[["Pfam%3APF18195","GatD N-terminal domain"]]},{"id":"NCBITaxon:412955","l":"Pseudomonas sp. SCT","na":1,"nb":1,"a":[["metabolism/iodate_respiration.html","iodate respiration"]],"b":[["Pfam%3APF03150","Di-haem cytochrome c peroxidase"]]},{"id":"NCBITaxon:521674","l":"Planctopirus limnophila DSM 3776","na":1,"nb":1,"a":[["morphology/flask_shaped.html","flask shaped"]],"b":[["TED%3AAF-D5SQH0-F1-model_v4_TED01","TED novel fold AF-D5SQH0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:747","l":"Pasteurella multocida","na":1,"nb":1,"a":[["ecology/animal_pathogen.html","animal pathogen"]],"b":[["TED%3AAF-A0A8A8HHD5-F1-model_v4_TED02","TED novel fold AF-A0A8A8HHD5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:766760","l":"Bacillus paralicheniformis ATCC 9945a","na":1,"nb":1,"a":[["genomics/disarm_system.html","DISARM system"]],"b":[["Pfam%3APF24957","DISARM protein DrmE, C-terminal domain"]]},{"id":"NCBITaxon:863","l":"Syntrophomonas wolfei","na":1,"nb":1,"a":[["metabolism/syntrophy.html","Syntrophy"]],"b":[["TED%3AAF-A0A354YY78-F1-model_v4_TED03","TED novel fold AF-A0A354YY78-F1-model_v4_TED03"]]},{"id":"UniProt:P07984","l":"","na":1,"nb":1,"a":[["metabolism/biopolymer_degradation.html","biopolymer degradation"]],"b":[["PROSITE%3APS00561","CBM2a (carbohydrate-binding type-2) domain signature"]]},{"id":"UniProt:P24559","l":"","na":1,"nb":1,"a":[["morphology/twitching_motility.html","twitching motility"]],"b":[["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]]},{"id":"UniProt:P27709","l":"","na":1,"nb":1,"a":[["morphology/heterocyst.html","heterocyst"]],"b":[["Pfam%3APF18460","Heterocyst differentiation regulator C-terminal Hood domain"]]},{"id":"UniProt:P44413","l":"","na":1,"nb":1,"a":[["genomics/restriction_modification_system.html","restriction-modification system"]],"b":[["Pfam%3APF09226","Restriction endonuclease HincII"]]},{"id":"UniProt:P45573","l":"","na":1,"nb":1,"a":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["Pfam%3APF04358","DsrC like protein"]]},{"id":"UniProt:P9WG29","l":"","na":1,"nb":1,"a":[["physiology/dormancy.html","dormancy"]],"b":[["Pfam%3APF03990","G5-linked-Ubiquitin-like domain"]]},{"id":"UniProt:Q03511","l":"","na":1,"nb":1,"a":[["morphology/carboxysome.html","carboxysome"]],"b":[["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"UniProt:Q9F7P4","l":"","na":1,"nb":1,"a":[["metabolism/proteorhodopsin_phototrophy.html","proteorhodopsin phototrophy"]],"b":[["PROSITE%3APS00950","Bacterial rhodopsins signature 1"]]},{"id":"UniProt:Q9HXT9","l":"","na":1,"nb":1,"a":[["ecology/biofilm_formation.html","biofilm formation"]],"b":[["proteintraitsmech%3ABIOLIP_C2E","C2E-binding site"]]},{"id":"UniProt:S5N020","l":"","na":1,"nb":1,"a":[["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"]],"b":[["proteintraitsmech%3ABIOLIP_1VU","1VU-binding site"]]}]} \ No newline at end of file diff --git a/communitymech.md b/communitymech.md index 0848e19..6d85fac 100644 --- a/communitymech.md +++ b/communitymech.md @@ -9,9 +9,9 @@ permalink: /communitymech/ ## Overview -**CommunityMech** is an autonomous knowledge factory for microbial community composition, ecological interactions, cultivation conditions, environments, and supporting evidence, with human oversight. Canonical YAML records feed schema validation, static browsing, and graph exports. [Repository overview](https://github.com/CultureBotAI/CommunityMech/blob/f4c11ab38ae39b9a50abe194ef69b1fc4ec007f2/README.md). +**CommunityMech** is an autonomous knowledge factory for microbial community composition, ecological interactions, cultivation conditions, environments, and supporting evidence, with human oversight. Canonical YAML records feed schema validation, static browsing, and graph exports. [Repository overview](https://github.com/CultureBotAI/CommunityMech/blob/8505a56d644b02fe87f776be9d667db4cf3f5c5d/README.md). -The repository contains **392 community records** and **four additional isolate records**. The published site lists **392 communities across 16 categories**, checked on September 20, 2026. Its landing page also advertises **512-dimensional v3 embeddings**; the embedding views are separate derived artifacts and can cover a different set of records from the current browser. [Published site](https://culturebotai.github.io/CommunityMech/). +The repository contains **422 community records** and **four additional isolate records**. The published site lists **422 communities across 15 categories**, checked on September 24, 2026. Its landing page also advertises **512-dimensional v3 embeddings**; the embedding views are separate derived artifacts and can cover a different set of records from the current browser. [Published site](https://culturebotai.github.io/CommunityMech/). ## Explore the Published Site @@ -30,13 +30,13 @@ The repository contains **392 community records** and **four additional isolate | `history/` | Append-only curation provenance | | `docs/` | Published HTML and maintainer documentation | -A community record can describe taxonomic membership, functional roles, environmental context, cultivation conditions, and directed ecological interactions. Ontology identifiers are paired with labels, and evidence is attached to the assertions it supports. Schema validation checks structure; literature validation separately checks evidence against source text. [Validation and evidence workflow](https://github.com/CultureBotAI/CommunityMech/blob/f4c11ab38ae39b9a50abe194ef69b1fc4ec007f2/README.md#validate-records). +A community record can describe taxonomic membership, functional roles, environmental context, cultivation conditions, and directed ecological interactions. Ontology identifiers are paired with labels, and evidence is attached to the assertions it supports. Schema validation checks structure; literature validation separately checks evidence against source text. [Validation and evidence workflow](https://github.com/CultureBotAI/CommunityMech/blob/8505a56d644b02fe87f776be9d667db4cf3f5c5d/README.md#validate-records). ## Example: A Curated Community -The [Yogurt Two-Species Starter Culture record](https://github.com/CultureBotAI/CommunityMech/blob/f4c11ab38ae39b9a50abe194ef69b1fc4ec007f2/kb/communities/Yogurt_TwoSpecies_Starter_Culture.yaml), `CommunityMech:000164`, documents *Streptococcus thermophilus* and *Lactobacillus delbrueckii* subsp. *bulgaricus*. It records cross-feeding interactions with taxon and metabolite identifiers and supporting literature. +The [Yogurt Two-Species Starter Culture record](https://github.com/CultureBotAI/CommunityMech/blob/8505a56d644b02fe87f776be9d667db4cf3f5c5d/kb/communities/Yogurt_TwoSpecies_Starter_Culture.yaml), `CommunityMech:000164`, documents *Streptococcus thermophilus* and *Lactobacillus delbrueckii* subsp. *bulgaricus*. It records cross-feeding interactions with taxon and metabolite identifiers and supporting literature. -The [README's schema-validated example](https://github.com/CultureBotAI/CommunityMech/blob/f4c11ab38ae39b9a50abe194ef69b1fc4ec007f2/README.md#schema-valid-example) shows how that record represents membership, formate exchange, and evidence. Use the linked YAML for the complete current record. +The [README's schema-validated example](https://github.com/CultureBotAI/CommunityMech/blob/8505a56d644b02fe87f776be9d667db4cf3f5c5d/README.md#schema-valid-example) shows how that record represents membership, formate exchange, and evidence. Use the linked YAML for the complete current record. ## Getting Started @@ -66,7 +66,7 @@ Evidence checking is a separate step and may use network access: just validate-references-explained "$community_record" ``` -The repository documents a corpus-wide evidence-repair backlog. A structurally valid record does not by itself establish that all of its scientific assertions have been verified. [Current validation status](https://github.com/CultureBotAI/CommunityMech/blob/f4c11ab38ae39b9a50abe194ef69b1fc4ec007f2/README.md#validate-records). +The repository documents a corpus-wide evidence-repair backlog. A structurally valid record does not by itself establish that all of its scientific assertions have been verified. [Current validation status](https://github.com/CultureBotAI/CommunityMech/blob/8505a56d644b02fe87f776be9d667db4cf3f5c5d/README.md#validate-records). ## Generate Pages and Graph Exports @@ -78,20 +78,20 @@ just kgx-export just kgx-validate ``` -GitHub Pages serves the committed `docs/` tree. Update community YAML or rendering templates before regenerating derived HTML. Embedding-map generation additionally needs the local embedding artifact described in the [visualization guide](https://github.com/CultureBotAI/CommunityMech/blob/f4c11ab38ae39b9a50abe194ef69b1fc4ec007f2/docs/UMAP_VISUALIZATION.md). +GitHub Pages serves the committed `docs/` tree. Update community YAML or rendering templates before regenerating derived HTML. Embedding-map generation additionally needs the local embedding artifact described in the [visualization guide](https://github.com/CultureBotAI/CommunityMech/blob/8505a56d644b02fe87f776be9d667db4cf3f5c5d/docs/UMAP_VISUALIZATION.md). -The KGX exporter writes `nodes.tsv`, `edges.tsv`, and `manifest.json` under `output/kgx/`; release artifacts compress the two TSV files. Edges carry deterministic identifiers, relation predicates, source attribution, and available publication/supporting-text evidence. These exports support downstream graph integration and community analysis. [KGX contract](https://github.com/CultureBotAI/CommunityMech/blob/f4c11ab38ae39b9a50abe194ef69b1fc4ec007f2/README.md#kgx-downstream-contract). +The KGX exporter writes `nodes.tsv`, `edges.tsv`, and `manifest.json` under `output/kgx/`; its release workflow compresses the two TSV files, although no release has been published yet. Edges carry deterministic identifiers, relation predicates, source attribution, and available publication/supporting-text evidence. These exports support downstream graph integration and community analysis. [KGX contract](https://github.com/CultureBotAI/CommunityMech/blob/8505a56d644b02fe87f776be9d667db4cf3f5c5d/README.md#kgx-downstream-contract). ## Integration with the X-Mech Suite -Community records can refer to [CultureMech](/culturemech/) media and [MediaIngredientMech](/mediaingredientmech/) ingredients. CommunityMech contributes structured community evidence for downstream consortium research, including [PFASCommunityAgents](/resources/#pfascommunityagents). Consult each downstream project's documentation for its supported integration interface. +Community records can refer to [CultureMech](/culturemech/) media by `culturemech_id`. Ingredients that carry ChEBI terms can be matched to [MediaIngredientMech](/mediaingredientmech/) records through those terms. Some records also hold older `MediaIngredientMech:NNNNNN` identifiers, which match no current MediaIngredientMech record. CommunityMech's schema marks that identifier scheme as vestigial. CommunityMech contributes structured community evidence for downstream consortium research, including [PFASCommunityAgents](/resources/#pfascommunityagents). Consult each downstream project's documentation for its supported integration interface. ## Repository & Documentation - **[Repository](https://github.com/CultureBotAI/CommunityMech)** and **[published site](https://culturebotai.github.io/CommunityMech/)** -- **[Schema](https://github.com/CultureBotAI/CommunityMech/blob/f4c11ab38ae39b9a50abe194ef69b1fc4ec007f2/src/communitymech/schema/communitymech.yaml)** -- **[Curation workflow](https://github.com/CultureBotAI/CommunityMech/blob/f4c11ab38ae39b9a50abe194ef69b1fc4ec007f2/README.md#curation-workflow)** -- **License:** [BSD-3-Clause](https://github.com/CultureBotAI/CommunityMech/blob/f4c11ab38ae39b9a50abe194ef69b1fc4ec007f2/LICENSE) +- **[Schema](https://github.com/CultureBotAI/CommunityMech/blob/8505a56d644b02fe87f776be9d667db4cf3f5c5d/src/communitymech/schema/communitymech.yaml)** +- **[Curation workflow](https://github.com/CultureBotAI/CommunityMech/blob/8505a56d644b02fe87f776be9d667db4cf3f5c5d/README.md#curation-workflow)** +- **License:** [BSD-3-Clause](https://github.com/CultureBotAI/CommunityMech/blob/8505a56d644b02fe87f776be9d667db4cf3f5c5d/LICENSE) --- @@ -99,14 +99,14 @@ Community records can refer to [CultureMech](/culturemech/) media and [MediaIngr - **[X-Mech Suite overview](/mechs/)** - All ten Mechs, their shared vocabulary and cross-references, and the culturebotai-claw orchestrator - **[TaxonMech](https://culturebotai.github.io/TaxonMech/)** - Microbial taxa and strains grounded in NCBI Taxonomy, harmonized with GTDB, LPSN and BacDive -- **[HabitatMech](https://culturebotai.github.io/HabitatMech/)** - Habitats harmonized from GOLD, BacDive, PREGO and Madin et al. into ENVO-grounded records +- **[HabitatMech](https://culturebotai.github.io/HabitatMech/)** - Habitats harmonized from GOLD, BacDive, PREGO and Madin et al. into ontology-grounded records - **[TraitMech](https://culturebotai.github.io/TraitMech/)** - Autonomous knowledge factory for microbial ecophysiological traits - **[CellStructureMech](https://culturebotai.github.io/CellStructureMech/)** - Microbial cell structures, between the trait and protein layers - **[ProteinTraitsMech](https://culturebotai.github.io/proteintraitsmech/)** - Protein sequence, structure, and function traits - **[NaturalProductMech](https://culturebotai.github.io/NaturalProductMech/)** - Natural product structures with their producer organisms and gene clusters - **[AntibioticMech](https://culturebotai.github.io/AntibioticMech/)** - Antimicrobial structures harmonizing ChEBI and CARD/ARO - **[MediaIngredientMech](/mediaingredientmech/)** - LLM-assisted ingredient curation -- **[CultureMech](/culturemech/)** - Single-organism media requirements (6,286 canonical media) +- **[CultureMech](/culturemech/)** - Single-organism media requirements (6,288 canonical media) - **[PFASCommunityAgents](/resources/#pfascommunityagents)** - AI-driven consortium design for PFAS biodegradation - **[kg-microbe](/kg-microbe/)** - Central knowledge graph (864K+ species) - **[MicroGrowAgents](/microgrowagents/)** - Multi-agent media design system diff --git a/culturemech.md b/culturemech.md index 700f284..102affa 100644 --- a/culturemech.md +++ b/culturemech.md @@ -1,7 +1,7 @@ --- layout: default title: "CultureMech" -description: "Autonomous knowledge factory for microbial culture media: 15,878 curated recipes from major international repositories, deduplicated into 6,286 canonical media, with LinkML schema, ontology grounding, and browser-based exploration" +description: "Autonomous knowledge factory for microbial culture media: 15,878 curated recipes from major international repositories, deduplicated into 6,288 canonical media, with LinkML schema, ontology grounding, and browser-based exploration" permalink: /culturemech/ --- @@ -9,7 +9,7 @@ permalink: /culturemech/ ## Overview -**CultureMech** is an autonomous knowledge factory for microbial culture media, combining ontology grounding, validation, provenance, and recipe deduplication with human oversight. Its current repository holds **15,878 normalized records** and **6,286 merged canonical media**. Normalized records preserve each source's formulation; merged records provide the deduplicated view. [Repository snapshot](https://github.com/CultureBotAI/CultureMech/blob/866b335301a53838c2868515e68ec96a11528f17/README.md#corpus-snapshot). +**CultureMech** is an autonomous knowledge factory for microbial culture media, combining ontology grounding, validation, provenance, and recipe deduplication with human oversight. Its current repository holds **15,878 normalized records** and **6,288 merged canonical media**. Normalized records preserve each source's formulation; merged records provide the deduplicated view. [Repository snapshot](https://github.com/CultureBotAI/CultureMech/blob/faaf033b8c5386aaf2cb6f28fc527678d00cf83b/README.md#corpus-snapshot). ## Explore the Published Site @@ -18,7 +18,7 @@ permalink: /culturemech/ - **[Direct media map](https://culturebotai.github.io/CultureMech/app/umap.html#umap-direct)** — explore the medium nodes' own KG-Microbe embeddings. - **[Graph layout](https://culturebotai.github.io/CultureMech/app/umap_graph.html)** — another view of media similarity. -Counts and links were checked on September 20, 2026. The published landing page still displays a legacy recipe total; the counts above come from the current repository's generated corpus inventory. +Counts and links were checked on September 24, 2026. The published landing page still displays a legacy recipe total; the counts above come from the current repository's generated corpus inventory, and the published [media index](https://culturebotai.github.io/CultureMech/pages/) lists the same 6,288 merged records. ## Data Architecture @@ -29,17 +29,17 @@ Counts and links were checked on September 20, 2026. The published landing page | Normalized records | `data/normalized_yaml/` | Authoritative source-specific curation and browser input | | Merged records | `data/merge_yaml/merged/` | Reproducible deduplicated media | -Source imports include MediaDive/DSMZ, TogoMedium, KOMODO, and collection-specific recipes. The normalized inventory contains 14,305 bacterial, 743 archaeal, 249 algal, 126 fungal, and 455 specialized records. These categories sum to the normalized total, not the canonical total. [Data layers](https://github.com/CultureBotAI/CultureMech/blob/866b335301a53838c2868515e68ec96a11528f17/docs/DATA_LAYERS.md). +Source imports include MediaDive/DSMZ, TogoMedium, KOMODO, and collection-specific recipes. The normalized inventory contains 14,305 bacterial, 743 archaeal, 249 algal, 126 fungal, and 455 specialized records. These categories sum to the normalized total, not the canonical total. [Data layers](https://github.com/CultureBotAI/CultureMech/blob/faaf033b8c5386aaf2cb6f28fc527678d00cf83b/docs/DATA_LAYERS.md). ## Curation and Validation Records carry ingredient amounts, ontology identifiers and labels, source references, and curation history. The LinkML schema separates composition type, nutritional class, and functional role while retaining the compatibility `medium_type` field. Validation checks schema shape, stricter record invariants, and recipe identifiers. -[MediaIngredientMech](/mediaingredientmech/) supplies ingredient identity and mapping artifacts. CultureMech retains recipe-specific composition and provenance. These structured outputs support downstream knowledge-graph integration, comparative media analysis, and cultivation research. [Schema](https://github.com/CultureBotAI/CultureMech/blob/866b335301a53838c2868515e68ec96a11528f17/src/culturemech/schema/culturemech.yaml) · [Curation guide](https://github.com/CultureBotAI/CultureMech/blob/866b335301a53838c2868515e68ec96a11528f17/docs/CONTRIBUTING.md). +[MediaIngredientMech](/mediaingredientmech/) supplies ingredient identity and mapping artifacts. CultureMech retains recipe-specific composition and provenance. These structured outputs support downstream knowledge-graph integration, comparative media analysis, and cultivation research. [Schema](https://github.com/CultureBotAI/CultureMech/blob/faaf033b8c5386aaf2cb6f28fc527678d00cf83b/src/culturemech/schema/culturemech.yaml) · [Curation guide](https://github.com/CultureBotAI/CultureMech/blob/faaf033b8c5386aaf2cb6f28fc527678d00cf83b/docs/CONTRIBUTING.md). ## Example: A Tracked Recipe -The repository's [LB medium record](https://github.com/CultureBotAI/CultureMech/blob/866b335301a53838c2868515e68ec96a11528f17/data/normalized_yaml/bacterial/lb_medium.yaml) has the stable identifier `CultureMech:008037` and preserves its TogoMedium/NBRC source. Its sodium-chloride ingredient illustrates the actual nested record format: +The repository's [LB medium record](https://github.com/CultureBotAI/CultureMech/blob/faaf033b8c5386aaf2cb6f28fc527678d00cf83b/data/normalized_yaml/bacterial/lb_medium.yaml) has the stable identifier `CultureMech:008037` and preserves its TogoMedium/NBRC source. Its sodium-chloride ingredient illustrates the actual nested record format: ```yaml preferred_term: NaCl @@ -75,14 +75,14 @@ just gen-media-pages just serve-browser ``` -For one recipe, use `just gen-page data/normalized_yaml/bacterial/lb_medium.yaml`; the result is written under `pages/single/`. See the [current quick start](https://github.com/CultureBotAI/CultureMech/blob/866b335301a53838c2868515e68ec96a11528f17/docs/QUICK_START.md) for the full workflow. +For one recipe, use `just gen-page data/normalized_yaml/bacterial/lb_medium.yaml`; the result is written under `pages/single/`. See the [current quick start](https://github.com/CultureBotAI/CultureMech/blob/faaf033b8c5386aaf2cb6f28fc527678d00cf83b/docs/QUICK_START.md) for the full workflow. ## Repository & Documentation - **[Repository](https://github.com/CultureBotAI/CultureMech)** and **[published site](https://culturebotai.github.io/CultureMech/)** -- **[Recipe identifier lifecycle](https://github.com/CultureBotAI/CultureMech/blob/866b335301a53838c2868515e68ec96a11528f17/docs/RECIPE_ID_LIFECYCLE.md)** -- **[Citation metadata](https://github.com/CultureBotAI/CultureMech/blob/866b335301a53838c2868515e68ec96a11528f17/CITATION.cff)** -- **License:** [CC0-1.0](https://github.com/CultureBotAI/CultureMech/blob/866b335301a53838c2868515e68ec96a11528f17/LICENSE) +- **[Recipe identifier lifecycle](https://github.com/CultureBotAI/CultureMech/blob/faaf033b8c5386aaf2cb6f28fc527678d00cf83b/docs/RECIPE_ID_LIFECYCLE.md)** +- **[Citation metadata](https://github.com/CultureBotAI/CultureMech/blob/faaf033b8c5386aaf2cb6f28fc527678d00cf83b/CITATION.cff)** +- **License:** [CC0-1.0](https://github.com/CultureBotAI/CultureMech/blob/faaf033b8c5386aaf2cb6f28fc527678d00cf83b/LICENSE) --- @@ -90,7 +90,7 @@ For one recipe, use `just gen-page data/normalized_yaml/bacterial/lb_medium.yaml - **[X-Mech Suite overview](/mechs/)** - All ten Mechs, their shared vocabulary and cross-references, and the culturebotai-claw orchestrator - **[TaxonMech](https://culturebotai.github.io/TaxonMech/)** - Microbial taxa and strains grounded in NCBI Taxonomy, harmonized with GTDB, LPSN and BacDive -- **[HabitatMech](https://culturebotai.github.io/HabitatMech/)** - Habitats harmonized from GOLD, BacDive, PREGO and Madin et al. into ENVO-grounded records +- **[HabitatMech](https://culturebotai.github.io/HabitatMech/)** - Habitats harmonized from GOLD, BacDive, PREGO and Madin et al. into ontology-grounded records - **[CommunityMech](/communitymech/)** - Microbial community interaction modeling - **[TraitMech](https://culturebotai.github.io/TraitMech/)** - Autonomous knowledge factory for microbial ecophysiological traits - **[CellStructureMech](https://culturebotai.github.io/CellStructureMech/)** - Microbial cell structures, between the trait and protein layers diff --git a/index.md b/index.md index fb782e9..771096e 100644 --- a/index.md +++ b/index.md @@ -34,7 +34,7 @@ The comprehensive modular knowledge graph that powers CultureBotAI, developed by Read our peer-reviewed *GigaScience* paper by Dr. Marcin P. Joachimiak detailing the development and applications of the KG-Microbe knowledge graph. ### 🤖 [Autonomous Knowledge Factories — X-Mech Suite](/mechs/) -The [X-Mech suite](/mechs/) is a fleet of ten ontology-grounded autonomous knowledge factories ([CultureMech](/culturemech/), [MediaIngredientMech](/mediaingredientmech/), [CommunityMech](/communitymech/), [TraitMech](https://culturebotai.github.io/TraitMech/), [ProteinTraitsMech](https://culturebotai.github.io/proteintraitsmech/), [AntibioticMech](https://culturebotai.github.io/AntibioticMech/), [CellStructureMech](https://culturebotai.github.io/CellStructureMech/), [HabitatMech](https://culturebotai.github.io/HabitatMech/), [NaturalProductMech](https://culturebotai.github.io/NaturalProductMech/), [TaxonMech](https://culturebotai.github.io/TaxonMech/)) that describe a microbe from taxon identity and habitat to culture medium, with 6,286 canonical media, 2,951 curated ingredients, 392 communities, 723 ecophysiological traits, 421 cell structures, 429,291 protein traits, 3,115 natural product structures, 2,939 antimicrobial structures, 3,206 habitats and 625,960 taxon records, with shared validation and coordination tooling from [culturebotai-claw](https://github.com/CultureBotAI/culturebotai-claw). +The [X-Mech suite](/mechs/) is a fleet of ten ontology-grounded autonomous knowledge factories ([CultureMech](/culturemech/), [MediaIngredientMech](/mediaingredientmech/), [CommunityMech](/communitymech/), [TraitMech](https://culturebotai.github.io/TraitMech/), [ProteinTraitsMech](https://culturebotai.github.io/proteintraitsmech/), [AntibioticMech](https://culturebotai.github.io/AntibioticMech/), [CellStructureMech](https://culturebotai.github.io/CellStructureMech/), [HabitatMech](https://culturebotai.github.io/HabitatMech/), [NaturalProductMech](https://culturebotai.github.io/NaturalProductMech/), [TaxonMech](https://culturebotai.github.io/TaxonMech/)) that describe a microbe from taxon identity and habitat to culture medium, with 6,288 canonical media, 2,953 curated ingredients, 422 communities, 763 ecophysiological traits, 542 cell structures, 429,293 protein traits, 3,115 natural product structures, 2,939 antimicrobial structures, 3,206 habitats and 625,960 taxon records, with shared validation and coordination tooling from [culturebotai-claw](https://github.com/CultureBotAI/culturebotai-claw). ### 🧠 [MicroGrowAgents](/microgrowagents/) Multi-agent AI system for microbial cultivation and growth media design across 864,363 validated species — [GitHub repository](https://github.com/CultureBotAI/MicroGrowAgents) *(private repository — public release planned)* · [bioRxiv preprint](https://doi.org/10.64898/2026.06.04.729985) diff --git a/mechs.md b/mechs.md index 9905d65..ca7893f 100644 --- a/mechs.md +++ b/mechs.md @@ -353,9 +353,9 @@ Each X-Mech is an **autonomous knowledge factory** that curates, validates, and
10autonomous knowledge factories
-
1,075,284curated entries across the fleet
+
1,075,481curated entries across the fleet
45vocabularies in dated census
-
3,082merged PRs
+
3,744merged PRs
1orchestrator (claw)
@@ -378,7 +378,7 @@ Each X-Mech is an **autonomous knowledge factory** that curates, validates, and
-

This vocabulary census covers nine of the ten Mechs; TaxonMech is a fleet member whose vocabulary has not yet been measured, so it has no row. Counts are prefix occurrences in the canonical record directories (merged recipes for CultureMech, communities for CommunityMech, habitat records for HabitatMech) as of 20 September 2026. Columns are ordered by how many Mechs ground anything in each vocabulary, then by the total records citing it across the fleet; PMID and DOI sit at the right because every Mech cites literature. ChEBI binds the chemistry arm (media, ingredients, antibiotics, proteins); NCBITaxon and ENVO bind the organism arm (habitat, community, traits); GO and METPO bridge phenotype, structure and protein.

+

This vocabulary census covers nine of the ten Mechs; TaxonMech is a fleet member whose vocabulary has not yet been measured, so it has no row. Counts are prefix occurrences in the canonical record directories (merged recipes for CultureMech, communities and isolate records for CommunityMech, habitat records for HabitatMech) as of 24 September 2026. Columns are ordered by how many Mechs ground anything in each vocabulary, then by the total records citing it across the fleet; PMID and DOI sit at the right because every Mech cites literature. ChEBI binds the chemistry arm (media, ingredients, antibiotics, proteins); NCBITaxon and ENVO bind the organism arm (habitat, community, traits); GO and METPO bridge phenotype, structure and protein.

@@ -451,46 +451,49 @@ Each X-Mech is an **autonomous knowledge factory** that curates, validates, and "use strict"; if (document.readyState === "loading") { document.addEventListener("DOMContentLoaded", init); } else { init(); } function init() { - var DATA = {"order":["HabitatMech","CommunityMech","TraitMech","CellStructureMech","ProteinTraitsMech","NaturalProductMech","AntibioticMech","MediaIngredientMech","CultureMech"],"voc":["NCBITaxon","CHEBI","GO","UniProt","ENVO","UBERON","InterPro","PDB","CAS","METPO","KEGG","FOODON","PATO","Pfam","RHEA","ARO","BTO","MIBiG","NPAtlas","GTDB","PMID","DOI"],"heat":{"HabitatMech":{"CHEBI":24,"NCBITaxon":13227,"GO":7,"ENVO":3368,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":4,"UBERON":1123,"FOODON":198,"BTO":1367,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":516,"DOI":116},"CommunityMech":{"CHEBI":2746,"NCBITaxon":3641,"GO":1430,"ENVO":416,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":10,"FOODON":0,"BTO":0,"GTDB":1788,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":5876,"DOI":1078},"TraitMech":{"CHEBI":673,"NCBITaxon":975,"GO":886,"ENVO":22,"METPO":3541,"ARO":0,"UniProt":399,"InterPro":115,"Pfam":0,"RHEA":0,"PDB":0,"PATO":99,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":412,"DOI":6749},"CellStructureMech":{"CHEBI":48,"NCBITaxon":1211,"GO":8623,"ENVO":0,"METPO":14,"ARO":0,"UniProt":284,"InterPro":58,"Pfam":22,"RHEA":0,"PDB":67,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":308,"DOI":5931},"ProteinTraitsMech":{"CHEBI":374424,"NCBITaxon":371580,"GO":421586,"ENVO":0,"METPO":244,"ARO":397717,"UniProt":770276,"InterPro":1558488,"Pfam":558504,"RHEA":613456,"PDB":235957,"PATO":120,"UBERON":43,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":245,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":657527,"DOI":193845},"NaturalProductMech":{"CHEBI":1659,"NCBITaxon":13960,"GO":0,"ENVO":0,"METPO":0,"ARO":0,"UniProt":613,"InterPro":0,"Pfam":0,"RHEA":14,"PDB":0,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":10133,"NPAtlas":1756,"PMID":5703,"DOI":8437},"AntibioticMech":{"CHEBI":22104,"NCBITaxon":1057,"GO":3,"ENVO":0,"METPO":0,"ARO":16653,"UniProt":278,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":6,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":1823,"MIBiG":0,"NPAtlas":0,"PMID":1207,"DOI":216},"MediaIngredientMech":{"CHEBI":7895,"NCBITaxon":1,"GO":0,"ENVO":110,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":23,"FOODON":271,"BTO":3,"GTDB":0,"KEGG":61,"CAS":689,"MIBiG":0,"NPAtlas":0,"PMID":29,"DOI":5},"CultureMech":{"CHEBI":160649,"NCBITaxon":63,"GO":0,"ENVO":13,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":138,"FOODON":214,"BTO":0,"GTDB":0,"KEGG":1406,"CAS":1,"MIBiG":0,"NPAtlas":0,"PMID":68,"DOI":76}},"cells":{"HabitatMech--NCBITaxon":896,"HabitatMech--ENVO":1296,"HabitatMech--CHEBI":11,"HabitatMech--UBERON":704,"HabitatMech--PATO":3,"HabitatMech--FOODON":85,"HabitatMech--BTO":587,"HabitatMech--GO":2,"CommunityMech--GO":351,"CommunityMech--NCBITaxon":364,"CommunityMech--ENVO":350,"CommunityMech--CHEBI":320,"CommunityMech--GTDB":338,"CommunityMech--UBERON":10,"TraitMech--GO":292,"TraitMech--NCBITaxon":463,"TraitMech--METPO":681,"TraitMech--UniProt":182,"TraitMech--CHEBI":183,"TraitMech--InterPro":61,"TraitMech--ENVO":14,"TraitMech--PATO":49,"CellStructureMech--GO":414,"CellStructureMech--NCBITaxon":417,"CellStructureMech--UniProt":52,"CellStructureMech--METPO":5,"CellStructureMech--InterPro":21,"CellStructureMech--PDB":6,"CellStructureMech--Pfam":8,"CellStructureMech--CHEBI":21,"ProteinTraitsMech--GO":110744,"ProteinTraitsMech--CHEBI":30122,"ProteinTraitsMech--METPO":119,"ProteinTraitsMech--UniProt":159595,"ProteinTraitsMech--RHEA":29550,"ProteinTraitsMech--KEGG":231,"ProteinTraitsMech--NCBITaxon":111963,"ProteinTraitsMech--InterPro":120090,"ProteinTraitsMech--Pfam":107455,"ProteinTraitsMech--UBERON":43,"ProteinTraitsMech--PATO":79,"ProteinTraitsMech--ARO":7452,"ProteinTraitsMech--PDB":51718,"NaturalProductMech--NCBITaxon":3115,"NaturalProductMech--MIBiG":3115,"NaturalProductMech--NPAtlas":1740,"NaturalProductMech--CHEBI":405,"NaturalProductMech--UniProt":102,"NaturalProductMech--RHEA":1,"AntibioticMech--CHEBI":2814,"AntibioticMech--CAS":1797,"AntibioticMech--ARO":568,"AntibioticMech--UniProt":47,"AntibioticMech--NCBITaxon":163,"AntibioticMech--PDB":5,"AntibioticMech--GO":3,"MediaIngredientMech--CHEBI":2226,"MediaIngredientMech--CAS":278,"MediaIngredientMech--KEGG":58,"MediaIngredientMech--FOODON":100,"MediaIngredientMech--ENVO":26,"MediaIngredientMech--UBERON":10,"MediaIngredientMech--BTO":1,"MediaIngredientMech--NCBITaxon":1,"CultureMech--FOODON":200,"CultureMech--CHEBI":6123,"CultureMech--UBERON":72,"CultureMech--NCBITaxon":30,"CultureMech--ENVO":12,"CultureMech--KEGG":329,"CultureMech--CAS":1},"vocab_edges":[{"a":"HabitatMech","b":"CommunityMech","n":276,"by":{"NCBITaxon":229,"ENVO":41,"UBERON":4,"CHEBI":2},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"ENVO:00001998","label":"soil"},{"id":"NCBITaxon:1386","label":"Bacillus \u003cfirmicutes>"}]},{"a":"HabitatMech","b":"TraitMech","n":124,"by":{"NCBITaxon":115,"ENVO":4,"DOI":2,"PATO":2,"CHEBI":1},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"HabitatMech","b":"CellStructureMech","n":39,"by":{"NCBITaxon":39},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1117","label":"Cyanobacteriota"}]},{"a":"HabitatMech","b":"ProteinTraitsMech","n":1285,"by":{"NCBITaxon":1269,"UBERON":12,"CHEBI":2,"GO":2},"ex":[{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1396","label":"Bacillus cereus"}]},{"a":"HabitatMech","b":"NaturalProductMech","n":312,"by":{"NCBITaxon":312},"ex":[{"id":"NCBITaxon:56","label":"Sorangium cellulosum"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1931","label":"Streptomyces sp."}]},{"a":"HabitatMech","b":"AntibioticMech","n":32,"by":{"NCBITaxon":32},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:573","label":"Klebsiella pneumoniae"}]},{"a":"HabitatMech","b":"MediaIngredientMech","n":22,"by":{"ENVO":15,"UBERON":4,"CHEBI":3},"ex":[{"id":"ENVO:00002149","label":"sea water"},{"id":"ENVO:00001998","label":"soil"},{"id":"ENVO:00002263","label":"garden soil"}]},{"a":"HabitatMech","b":"CultureMech","n":25,"by":{"NCBITaxon":13,"ENVO":7,"UBERON":4,"FOODON":1},"ex":[{"id":"UBERON:0000948","label":"heart"},{"id":"UBERON:0000955","label":"brain"},{"id":"UBERON:0000178","label":"blood"}]},{"a":"CommunityMech","b":"TraitMech","n":153,"by":{"CHEBI":61,"NCBITaxon":57,"GO":35},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:15379","label":"dioxygen"},{"id":"GO:0015977","label":"carbon fixation"}]},{"a":"CommunityMech","b":"CellStructureMech","n":55,"by":{"NCBITaxon":32,"CHEBI":13,"GO":10},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:2157","label":"Archaea"},{"id":"NCBITaxon:562","label":"Escherichia coli"}]},{"a":"CommunityMech","b":"ProteinTraitsMech","n":650,"by":{"CHEBI":268,"NCBITaxon":192,"GO":189,"UBERON":1},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:30089","label":"acetate"},{"id":"GO:0015979","label":"photosynthesis"}]},{"a":"CommunityMech","b":"NaturalProductMech","n":105,"by":{"NCBITaxon":100,"CHEBI":5},"ex":[{"id":"NCBITaxon:286","label":"Pseudomonas"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"}]},{"a":"CommunityMech","b":"AntibioticMech","n":58,"by":{"CHEBI":39,"NCBITaxon":19},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"CHEBI:33709","label":"amino acid"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"CommunityMech","b":"MediaIngredientMech","n":234,"by":{"CHEBI":232,"ENVO":2},"ex":[{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:33709","label":"amino acid"},{"id":"CHEBI:26710","label":"sodium chloride"}]},{"a":"CommunityMech","b":"CultureMech","n":153,"by":{"CHEBI":138,"NCBITaxon":8,"ENVO":5,"DOI":2},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:30089","label":"acetate"}]},{"a":"TraitMech","b":"CellStructureMech","n":123,"by":{"GO":44,"NCBITaxon":37,"DOI":21,"CHEBI":7,"UniProt":6,"METPO":5,"InterPro":3},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:83333","label":"Escherichia coli (strain K12)"},{"id":"GO:0009767","label":"photosynthetic electron transport chain"}]},{"a":"TraitMech","b":"ProteinTraitsMech","n":807,"by":{"GO":248,"NCBITaxon":136,"METPO":111,"CHEBI":109,"DOI":100,"UniProt":56,"InterPro":47},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"METPO:1000631","label":"trophic type"}]},{"a":"TraitMech","b":"NaturalProductMech","n":57,"by":{"NCBITaxon":52,"CHEBI":4,"DOI":1},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"TraitMech","b":"AntibioticMech","n":31,"by":{"NCBITaxon":21,"CHEBI":10},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"TraitMech","b":"MediaIngredientMech","n":58,"by":{"CHEBI":58},"ex":[{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:16526","label":"carbon dioxide"}]},{"a":"TraitMech","b":"CultureMech","n":36,"by":{"CHEBI":26,"NCBITaxon":10},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:17234","label":"glucose"}]},{"a":"CellStructureMech","b":"ProteinTraitsMech","n":989,"by":{"GO":576,"DOI":145,"UniProt":143,"NCBITaxon":72,"InterPro":29,"CHEBI":14,"Pfam":10},"ex":[{"id":"GO:0032991","label":"protein-containing complex"},{"id":"NCBITaxon:3055","label":"Chlamydomonas reinhardtii"},{"id":"GO:0016020","label":"membrane"}]},{"a":"CellStructureMech","b":"NaturalProductMech","n":20,"by":{"NCBITaxon":20},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"CellStructureMech","b":"AntibioticMech","n":17,"by":{"NCBITaxon":12,"CHEBI":5},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:4932","label":"Saccharomyces cerevisiae"},{"id":"NCBITaxon:90371","label":"Salmonella enterica subsp. enterica serovar Typhimurium"}]},{"a":"CellStructureMech","b":"MediaIngredientMech","n":13,"by":{"CHEBI":13},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:17029","label":"chitin"},{"id":"CHEBI:33403","label":"elemental sulfur"}]},{"a":"CellStructureMech","b":"CultureMech","n":6,"by":{"NCBITaxon":3,"CHEBI":3},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:33403","label":"elemental sulfur"},{"id":"NCBITaxon:1148","label":"Synechocystis sp. PCC 6803"}]},{"a":"ProteinTraitsMech","b":"NaturalProductMech","n":900,"by":{"NCBITaxon":497,"UniProt":156,"CHEBI":148,"DOI":96,"RHEA":3},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:100226","label":"Streptomyces coelicolor A3(2)"},{"id":"NCBITaxon:227321","label":"Emericella nidulans (strain FGSC A4 / ATCC 38163 / CBS 112.46 / NRRL 194 / M139)"}]},{"a":"ProteinTraitsMech","b":"AntibioticMech","n":2437,"by":{"ARO":1740,"CHEBI":594,"NCBITaxon":79,"UniProt":20,"GO":2,"DOI":2},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:573","label":"Klebsiella pneumoniae"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"}]},{"a":"ProteinTraitsMech","b":"MediaIngredientMech","n":792,"by":{"CHEBI":791,"UBERON":1},"ex":[{"id":"CHEBI:15377","label":"water"},{"id":"CHEBI:15740","label":"formate"},{"id":"CHEBI:33709","label":"amino acid"}]},{"a":"ProteinTraitsMech","b":"CultureMech","n":233,"by":{"CHEBI":221,"NCBITaxon":10,"UBERON":2},"ex":[{"id":"CHEBI:15377","label":"water"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:17754","label":"glycerol"}]},{"a":"NaturalProductMech","b":"AntibioticMech","n":288,"by":{"CHEBI":180,"NCBITaxon":96,"DOI":10,"UniProt":2},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"},{"id":"NCBITaxon:330879","label":"Aspergillus fumigatus (strain ATCC MYA-4609 / CBS 101355 / FGSC A1100 / Af293)"}]},{"a":"NaturalProductMech","b":"MediaIngredientMech","n":51,"by":{"CHEBI":51},"ex":[{"id":"CHEBI:15956","label":"biotin"},{"id":"CHEBI:16349","label":"L-citrulline"},{"id":"CHEBI:27592","label":"ectoine"}]},{"a":"NaturalProductMech","b":"CultureMech","n":5,"by":{"CHEBI":3,"NCBITaxon":2},"ex":[{"id":"CHEBI:15956","label":"biotin"},{"id":"CHEBI:16349","label":"L-citrulline"},{"id":"CHEBI:27592","label":"ectoine"}]},{"a":"AntibioticMech","b":"MediaIngredientMech","n":324,"by":{"CHEBI":324},"ex":[{"id":"CHEBI:33709","label":"amino acid"},{"id":"CHEBI:30746","label":"benzoic acid"},{"id":"CHEBI:17334","label":"penicillin"}]},{"a":"AntibioticMech","b":"CultureMech","n":29,"by":{"CHEBI":29},"ex":[{"id":"CHEBI:17334","label":"penicillin"},{"id":"CHEBI:48923","label":"erythromycin"},{"id":"CHEBI:30746","label":"benzoic acid"}]},{"a":"MediaIngredientMech","b":"CultureMech","n":611,"by":{"CHEBI":544,"KEGG":56,"FOODON":6,"UBERON":3,"CAS":1,"ENVO":1},"ex":[{"id":"FOODON:03315426","label":"yeast extract"},{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:2509","label":"agar"}]}]}; - var MANIFEST = {"version":1,"source":{"repository":"CultureBotAI/culturebotai-claw","revision":"44db08d59226073425b206a36a257b2b6a8900df","url":"https://github.com/CultureBotAI/culturebotai-claw/blob/44db08d59226073425b206a36a257b2b6a8900df/src/kg_microbe_fleet/fleet.yaml"},"capability_catalogue":{"id_label_validation":{},"curation_history":{},"strict_validation":{},"schema_sync":{},"release_management":{},"build_coordination":{},"documentation":{},"testing":{},"refactoring":{},"coordination_hooks":{},"deep_research":{},"edison_key_discovery":{},"environment_coverage":{"settings":{"record_globs":{"type":"string_list","required_when_enabled":true}}},"knowledge_gap_scan":{"settings":{"window":{"type":"integer","required_when_enabled":true,"minimum":1}}},"vendored_sync":{},"unmapped_inventory_input":{},"source_catalogue":{},"corpus_statistics":{"settings":{"fields":{"type":"string_list","required_when_enabled":true}}},"page_budgets":{"settings":{"site_path":{"type":"string","required_when_enabled":true},"budgets_path":{"type":"string","required_when_enabled":true}}},"kgx_export":{"settings":{"nodes_path":{"type":"string","required_when_enabled":true},"edges_path":{"type":"string","required_when_enabled":true},"extra_prefixes":{"type":"string_list"}}},"source_queue":{"settings":{"queue_path":{"type":"string","required_when_enabled":true},"extensions":{"type":"string_list"},"required_when_adopted":{"type":"string_list"}}},"metpo_proposal":{"settings":{"class_glob":{"type":"string","required_when_enabled":true},"property_glob":{"type":"string"}}},"sssom_export":{"settings":{"mapping_globs":{"type":"string_list","required_when_enabled":true},"extensions":{"type":"string_list"}}},"writer_audit":{"settings":{"search_dirs":{"type":"string_list","required_when_enabled":true},"save_helpers":{"type":"string_list"},"validators":{"type":"string_list"},"curation_markers":{"type":"string_list"},"exclude":{"type":"string_list"}}},"site_contract":{"settings":{"site_path":{"type":"string","required_when_enabled":true},"published_root":{"type":"string"},"allowed_hosts":{"type":"string_list"}}}},"mechs":{"CultureMech":{"key":"culturemech","github":"CultureBotAI/CultureMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"enabled"},"edison_key_discovery":{"status":"enabled"},"environment_coverage":{"status":"enabled","settings":{"record_globs":["data/merge_yaml/merged/*.yaml"]}},"knowledge_gap_scan":{"status":"enabled","settings":{"window":300}},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["source_environment","medium_type"]}},"page_budgets":{"status":"disabled","reason":"Generates a site through .github/workflows/generate-pages.yaml but declares no size or file-count budgets, so nothing watches it grow. Adopting them applies here; the limits are the repository's to set.","reason_claims":{"present":[".github/workflows/generate-pages.yaml"]}},"writer_audit":{"status":"enabled","settings":{"search_dirs":["scripts","src/culturemech"],"save_helpers":["write_validated_recipe"],"exclude":["scripts/audit_writers.py"]}},"sssom_export":{"status":"enabled","settings":{"mapping_globs":["output/*.sssom.tsv"],"extensions":["mapping_method"]}},"metpo_proposal":{"status":"disabled","reason":"Carries .claude/commands/ground-or-propose-metpo.md, so the grounding half is present, but has no proposals/ directory and has never minted a METPO id. Adopting applies once a CultureMech term needs one.","reason_claims":{"absent":["proposals"],"present":[".claude/commands/ground-or-propose-metpo.md"]}},"kgx_export":{"status":"disabled","reason":"scripts/export_kgx.py writes to output/kgx but has produced nothing tracked, so there is no graph for this contract to judge. Adopting it means running the exporter first; the check applies here once it does.","reason_claims":{"present":["scripts/export_kgx.py"],"absent":["output/kgx"]}},"source_queue":{"status":"disabled","reason":"Has no curation/source_queue.tsv. AntibioticMech wrote the pattern and CellStructureMech adapted it; adopting it here means ranking this corpus's own candidate sources and verifying their licences, which is curation work rather than a file copy.","reason_claims":{"absent":["curation/source_queue.tsv"]}},"site_contract":{"status":"disabled","reason":"Publishes a site built in CI, so no directory in the checkout is the output the check would judge; running it on the Jekyll or template sources reports missing .html files that the build creates. Adopting it means running the check on the build product, which applies here and is not yet wired."},"source_catalogue":{"status":"disabled","reason":"Fetches each source from its own script -- scripts/fetch_komodo_base_volumes.py, scripts/fetch_mediadive_solution_volumes.py, scripts/fetch_pubmed_abstracts.py -- with no download.yaml declaring them, so there is no catalogue to validate. Adopting one would apply here; it has not been written.","reason_claims":{"present":["scripts/fetch_komodo_base_volumes.py","scripts/fetch_mediadive_solution_volumes.py","scripts/fetch_pubmed_abstracts.py"],"absent":["download.yaml"]}},"unmapped_inventory_input":{"status":"enabled"}}},"MediaIngredientMech":{"key":"mediaingredientmech","github":"CultureBotAI/MediaIngredientMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"enabled"},"edison_key_discovery":{"status":"enabled"},"environment_coverage":{"status":"enabled","settings":{"record_globs":["data/ingredients/**/*.yaml"]}},"knowledge_gap_scan":{"status":"enabled","settings":{"window":300}},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["ingredient_type","ontology_mapping.mapping_quality"]}},"page_budgets":{"status":"disabled","reason":"Generates a site through .github/workflows/generate-pages.yaml but declares no size or file-count budgets, so nothing watches it grow. Adopting them applies here; the limits are the repository's to set.","reason_claims":{"present":[".github/workflows/generate-pages.yaml"]}},"writer_audit":{"status":"enabled","settings":{"search_dirs":["scripts","src/mediaingredientmech"],"save_helpers":["save_yaml","write_validated_ingredient"],"exclude":["scripts/audit_writers.py"]}},"sssom_export":{"status":"enabled","settings":{"mapping_globs":["mappings/*.sssom.tsv"],"extensions":["source","validation_method"]}},"metpo_proposal":{"status":"not_applicable","reason":"MIM grounds ingredients in ChEBI and FOODON and publishes SSSOM mappings; METPO models microbial phenotypes and processes, which is not the axis this corpus curates."},"kgx_export":{"status":"disabled","reason":"Publishes term mappings rather than a graph; its contribution to kg-microbe is SSSOM. Adopting KGX would apply here only if it starts emitting nodes and edges."},"source_queue":{"status":"disabled","reason":"Has no curation/source_queue.tsv. AntibioticMech wrote the pattern and CellStructureMech adapted it; adopting it here means ranking this corpus's own candidate sources and verifying their licences, which is curation work rather than a file copy.","reason_claims":{"absent":["curation/source_queue.tsv"]}},"site_contract":{"status":"disabled","reason":"Publishes a site built in CI, so no directory in the checkout is the output the check would judge; running it on the Jekyll or template sources reports missing .html files that the build creates. Adopting it means running the check on the build product, which applies here and is not yet wired."},"source_catalogue":{"status":"disabled","reason":"Fetches ontologies through download_ontologies.py rather than a declared catalogue, so there is no download.yaml to validate. Adopting one would apply here; it has not been written.","reason_claims":{"present":["scripts/download_ontologies.py"],"absent":["download.yaml"]}},"unmapped_inventory_input":{"status":"enabled"}}},"CommunityMech":{"key":"communitymech","github":"CultureBotAI/CommunityMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"enabled"},"edison_key_discovery":{"status":"enabled"},"environment_coverage":{"status":"enabled","settings":{"record_globs":["data/isolates/*.yaml"]}},"knowledge_gap_scan":{"status":"enabled","settings":{"window":305}},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["environment_term"]}},"page_budgets":{"status":"disabled","reason":"Generates a site through .github/workflows/generate-pages.yaml but declares no size or file-count budgets, so nothing watches it grow. Adopting them applies here; the limits are the repository's to set.","reason_claims":{"present":[".github/workflows/generate-pages.yaml"]}},"writer_audit":{"status":"enabled","settings":{"search_dirs":["scripts","src/communitymech"],"save_helpers":["write_validated_community"],"curation_markers":["record_curation_event"],"exclude":["scripts/audit_writers.py"]}},"sssom_export":{"status":"not_applicable","reason":"Publishes KGX nodes and edges rather than term mappings; its contribution to kg-microbe is a graph, not a mapping set, so there is no SSSOM file for this contract to judge."},"metpo_proposal":{"status":"enabled","settings":{"class_glob":"proposals/*/metpo_proposal_classes_robot.tsv","property_glob":"proposals/*/metpo_proposal_properties_robot.tsv"}},"kgx_export":{"status":"enabled","settings":{"nodes_path":"output/kgx/nodes.tsv","edges_path":"output/kgx/edges.tsv"}},"source_queue":{"status":"disabled","reason":"Has no curation/source_queue.tsv. AntibioticMech wrote the pattern and CellStructureMech adapted it; adopting it here means ranking this corpus's own candidate sources and verifying their licences, which is curation work rather than a file copy.","reason_claims":{"absent":["curation/source_queue.tsv"]}},"site_contract":{"status":"enabled","settings":{"site_path":"docs"}},"source_catalogue":{"status":"disabled","reason":"Has no download.yaml; its inputs arrive through per-source scripts rather than a declared catalogue. Adopting one would apply here; it has not been written.","reason_claims":{"absent":["download.yaml"]}},"unmapped_inventory_input":{"status":"enabled"}}},"TraitMech":{"key":"traitmech","github":"CultureBotAI/TraitMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"enabled"},"edison_key_discovery":{"status":"enabled"},"environment_coverage":{"status":"not_applicable","reason":"Environment coverage currently compares culture media, ingredients, and microbial communities; trait records are not an environment inventory input."},"knowledge_gap_scan":{"status":"enabled","settings":{"window":300}},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["mapping_status","trait_category"]}},"page_budgets":{"status":"disabled","reason":"Serves 490 tracked pages under pages/ straight from main via GitHub Pages -- it has no generate-pages.yaml, unlike the other four -- and declares no size or file-count budgets, so nothing watches them grow. Adopting them applies here; the limits are the repository's to set.","reason_claims":{"present":["pages"],"absent":[".github/workflows/generate-pages.yaml"]}},"writer_audit":{"status":"enabled","settings":{"search_dirs":["scripts","src/traitmech"],"save_helpers":["write_validated_trait"],"curation_markers":["record_curation"],"exclude":["scripts/audit_writers.py"]}},"sssom_export":{"status":"enabled","settings":{"mapping_globs":["proposals/*/metpo_proposal_mappings.sssom.tsv"]}},"metpo_proposal":{"status":"enabled","settings":{"class_glob":"proposals/*/metpo_proposal_classes_robot.tsv","property_glob":"proposals/*/metpo_proposal_properties_robot.tsv"}},"kgx_export":{"status":"disabled","reason":"Publishes trait records and METPO mapping proposals, not a KGX graph."},"source_queue":{"status":"disabled","reason":"Has no curation/source_queue.tsv. AntibioticMech wrote the pattern and CellStructureMech adapted it; adopting it here means ranking this corpus's own candidate sources and verifying their licences, which is curation work rather than a file copy.","reason_claims":{"absent":["curation/source_queue.tsv"]}},"site_contract":{"status":"enabled","settings":{"site_path":"pages","published_root":".","allowed_hosts":["cdn.jsdelivr.net"]}},"source_catalogue":{"status":"enabled"},"unmapped_inventory_input":{"status":"not_applicable","reason":"The unmapped-ingredient inventory reads culture-media and ingredient corpora; TraitMech curates traits and has no ingredient records, so scripts/inventory_unmapped_ingredients.py defines no loader for it.","reason_claims":{"present":["claw:scripts/inventory_unmapped_ingredients.py"]}}}},"ProteinTraitsMech":{"key":"proteintraitsmech","github":"CultureBotAI/proteintraitsmech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"enabled"},"edison_key_discovery":{"status":"not_applicable","reason":"ProteinTraitsMech does not use an Edison research-provider key; provider integration is configured through its own supported credential surfaces."},"environment_coverage":{"status":"not_applicable","reason":"Environment coverage currently compares culture media, ingredients, and microbial communities; protein-trait records are not an environment inventory input."},"knowledge_gap_scan":{"status":"not_applicable","reason":"Record-level knowledge-gap scanning targets curated per-record discussion text. This corpus is ontology-derived, so there is no per-record gap surface to scan; the repository is correspondingly absent from the knowledge-gap-scan workflow matrix."},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["trait_axis","mapping_status"]}},"page_budgets":{"status":"enabled","settings":{"site_path":"_site","budgets_path":"conf/pages_budgets.json"}},"writer_audit":{"status":"not_applicable","reason":"Its scripts/audit_writers.py shares the name and nothing else -- a different tool built on registered editors and guard tests, ~600 lines apart from the other four. This audit does not describe what that one checks, and consolidating them would mean choosing one model over the other rather than removing a duplicate.","reason_claims":{"present":["scripts/audit_writers.py"]}},"sssom_export":{"status":"disabled","reason":"Grounds protein traits directly in its own records rather than publishing a mapping set. Adopting one would apply here; none has been written."},"metpo_proposal":{"status":"disabled","reason":"Carries METPO-grounded records under data/traits/**/metpo/, so it consumes METPO, but proposes no new terms and has no proposals/ directory. Adopting applies once a protein trait needs a term METPO lacks.","reason_claims":{"absent":["proposals"]}},"kgx_export":{"status":"disabled","reason":"Publishes protein-trait records rather than a graph."},"source_queue":{"status":"disabled","reason":"Has no curation/source_queue.tsv. AntibioticMech wrote the pattern and CellStructureMech adapted it; adopting it here means ranking this corpus's own candidate sources and verifying their licences, which is curation work rather than a file copy.","reason_claims":{"absent":["curation/source_queue.tsv"]}},"site_contract":{"status":"disabled","reason":"Publishes a site built in CI, so no directory in the checkout is the output the check would judge; running it on the Jekyll or template sources reports missing .html files that the build creates. Adopting it means running the check on the build product, which applies here and is not yet wired."},"source_catalogue":{"status":"enabled"},"unmapped_inventory_input":{"status":"not_applicable","reason":"The unmapped-ingredient inventory reads culture-media and ingredient corpora; ProteinTraitsMech curates protein-trait records and has no ingredient corpus, so scripts/inventory_unmapped_ingredients.py defines no loader for it.","reason_claims":{"present":["claw:scripts/inventory_unmapped_ingredients.py"]}}}},"AntibioticMech":{"key":"antibioticmech","github":"CultureBotAI/AntibioticMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"vendored_sync":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"testing":{"status":"enabled"},"documentation":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"disabled","reason":"Has research-antibiotic, research-entity and deep-research-canary recipes and a research/ tree, but no conf/deep_research_provider.yaml -- the profile every deep-research Mech declares and the contract resolves. Enabled on the recipes alone this would assert a profile that does not exist; the recipes are a research route, not the declared provider contract.","reason_claims":{"present":["research"],"absent":["conf/deep_research_provider.yaml"]}},"edison_key_discovery":{"status":"not_applicable","reason":"Research runs through this repository's own research-antibiotic and research-entity recipes; it uses no Edison provider key."},"environment_coverage":{"status":"not_applicable","reason":"Environment coverage compares culture media, ingredients and microbial communities. An antimicrobial-compound corpus is not an environment inventory input."},"unmapped_inventory_input":{"status":"not_applicable","reason":"The unmapped inventory reconciles ingredient names across media corpora; antimicrobial compounds are not one of its sources."},"knowledge_gap_scan":{"status":"disabled","reason":"Records do not carry the shared Discussion section the scan reads, and this repository is not in the knowledge-gap-scan workflow matrix. Enable once records carry it."},"source_catalogue":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["antimicrobial_class","grounding_status"]}},"source_queue":{"status":"enabled","settings":{"queue_path":"curation/source_queue.tsv"}},"site_contract":{"status":"enabled","settings":{"site_path":"pages"}},"page_budgets":{"status":"disabled","reason":"Serves tracked pages under pages/ from main via GitHub Pages and declares no size or file-count budgets, so nothing watches them grow -- 2,956 files and 30.1 MB measured at admission (#230). Adopting them applies here; the limits are this repository's to set.","reason_claims":{"present":["pages"]}},"writer_audit":{"status":"disabled","reason":"Has no scripts/audit_writers.py, so there is no drift between writer copies to remove yet. Adopting it applies once more writers exist.","reason_claims":{"absent":["scripts/audit_writers.py"]}},"sssom_export":{"status":"disabled","reason":"Records carry ChEBI and ARO identifiers inline rather than through a mapping file. Adopting SSSOM applies once a mapping product exists."},"metpo_proposal":{"status":"disabled","reason":"No proposals/ directory and no METPO grounding. Antimicrobial compounds are grounded in ChEBI and ARO inline; adopting applies once a resistance or activity phenotype needs a METPO term.","reason_claims":{"absent":["proposals"]}},"kgx_export":{"status":"disabled","reason":"No exporter and no graph product yet; adopting KGX applies once the corpus is consumed as a graph."}}},"CellStructureMech":{"key":"cellstructuremech","github":"CultureBotAI/CellStructureMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"disabled","reason":"Research so far is source assessment written by hand under research/ with no provider client or research recipe in the justfile; the repository has not decided on a paid research route.","reason_claims":{"present":["research"]}},"edison_key_discovery":{"status":"not_applicable","reason":"CellStructureMech does not use an Edison research-provider key; it has no research provider integration at all."},"environment_coverage":{"status":"not_applicable","reason":"Environment coverage currently compares culture media, ingredients, and microbial communities; cell-structure records are not an environment inventory input."},"knowledge_gap_scan":{"status":"disabled","reason":"Records carry the shared Discussion section, so the scan applies, but the corpus is four records and the repository is not yet in the knowledge-gap-scan workflow matrix; enable once the first tranche of records lands (CellStructureMech#12)."},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["structure_category","mapping_status"]}},"page_budgets":{"status":"disabled","reason":"Serves tracked pages under pages/ straight from main via GitHub Pages -- it has no generate-pages.yaml -- and declares no size or file-count budgets, so nothing watches them grow. Adopting them applies here; the limits are the repository's to set.","reason_claims":{"present":["pages"],"absent":[".github/workflows/generate-pages.yaml"]}},"writer_audit":{"status":"disabled","reason":"Has no scripts/audit_writers.py, so there is no drift to remove yet. Adopting it applies here once the corpus grows; the settings are the repository's to declare.","reason_claims":{"absent":["scripts/audit_writers.py"]}},"sssom_export":{"status":"disabled","reason":"Records carry GO cellular-component identifiers inline rather than through a mapping file, and the corpus is four records. Adopting one applies once it grows."},"metpo_proposal":{"status":"disabled","reason":"Structures are grounded in GO cellular-component terms inline and there is no proposals/ directory. Adopting applies once a structure phenotype needs a METPO term GO does not carry.","reason_claims":{"absent":["proposals"]}},"kgx_export":{"status":"disabled","reason":"Four structure records and no exporter; adopting KGX applies once the corpus grows."},"source_queue":{"status":"enabled","settings":{"queue_path":"curation/source_queue.tsv","extensions":["taxon_link","item_id","script"],"required_when_adopted":["script"]}},"site_contract":{"status":"enabled","settings":{"site_path":"pages","published_root":"."}},"source_catalogue":{"status":"disabled","reason":"The repository keeps its ranked source list as curation/source_queue.tsv, machine-checked by scripts/check_source_queue.py inside its qc gate, rather than a download.yaml in the fleet's catalogue shape; there is no download.yaml to parse. Converging on one shape is open.","reason_claims":{"present":["curation/source_queue.tsv","scripts/check_source_queue.py"],"absent":["download.yaml"]}},"unmapped_inventory_input":{"status":"not_applicable","reason":"The unmapped-ingredient inventory reads culture-media and ingredient corpora; CellStructureMech curates cell structures and has no ingredient records, so scripts/inventory_unmapped_ingredients.py defines no loader for it.","reason_claims":{"present":["claw:scripts/inventory_unmapped_ingredients.py"]}}}},"HabitatMech":{"key":"habitatmech","github":"CultureBotAI/HabitatMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"disabled","reason":"Has research, research-dry and deep-research-canary recipes, a research/ tree and the vendored scripts/deep_research_contract.py, but no conf/deep_research_provider.yaml -- the profile every deep-research Mech declares and the contract resolves. Enabled on the recipes alone this would assert a profile that does not exist.","reason_claims":{"present":["research","scripts/deep_research_contract.py"],"absent":["conf/deep_research_provider.yaml"]}},"edison_key_discovery":{"status":"not_applicable","reason":"HabitatMech does not use an Edison research-provider key; its research recipes run through its own provider surface."},"environment_coverage":{"status":"disabled","reason":"HabitatMech is itself an environment vocabulary: 3,213 habitat records grounded in ENVO, UBERON, FOODON and BTO. Environment coverage compares culture media, ingredients and communities against ENVO and has no loader for HabitatRecord, so it cannot yet read this corpus as either an input or the reference set. Adopting it applies here and is the more valuable direction: teach environment_coverage_dashboard.py to treat habitat records as the reference the other corpora are measured against.","reason_claims":{"present":["claw:scripts/environment_coverage_dashboard.py"]}},"knowledge_gap_scan":{"status":"disabled","reason":"Records carry the shared Discussion section, so the scan applies. The workflow matrix is generated from this manifest, so enabling the capability here with a settings.window is what adds the repository to it. Left disabled until HabitatMech has run the scan once locally and chosen its window."},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["habitat_category","grounding_status","mapping_status"]}},"page_budgets":{"status":"disabled","reason":"Serves 3,404 published HTML pages under pages/ straight from main via GitHub Pages -- it has no generate-pages.yaml -- and declares no size or file-count budgets, so nothing watches them grow. Adopting them applies here; the limits are the repository's to set.","reason_claims":{"present":["pages"],"absent":[".github/workflows/generate-pages.yaml"]}},"writer_audit":{"status":"disabled","reason":"Has no scripts/audit_writers.py. Its writers exist (write_validated_habitat and record_curation_event in the seeder) and records are seeded as build products, so there is drift to audit; adopting it applies here once the audit is written.","reason_claims":{"absent":["scripts/audit_writers.py"]}},"sssom_export":{"status":"disabled","reason":"Grounds each habitat inline on the record (ENVO, UBERON, FOODON, BTO) and keeps its ontology requests as curation/term_requests.tsv rather than publishing a mapping set; there is no SSSOM file for this contract to judge. Adopting one would apply here.","reason_claims":{"present":["curation/term_requests.tsv"]}},"metpo_proposal":{"status":"disabled","reason":"Habitats are grounded in ENVO and the repository raises its gaps through term requests rather than METPO cohorts, so it has no proposals directory. Adopting applies once a habitat-associated phenotype needs a METPO term.","reason_claims":{"absent":["proposals"]}},"kgx_export":{"status":"disabled","reason":"Consumes kg-microbe's KGX as an input -- conf/sources.yaml names the checkout that supplies ENVO, UBERON, FOODON and BTO -- and publishes habitat records, not a graph. Adopting KGX would apply here only if it starts emitting nodes and edges.","reason_claims":{"present":["conf/sources.yaml"]}},"source_queue":{"status":"disabled","reason":"Has no curation/source_queue.tsv; its sources are declared in conf/sources.yaml and the raw payloads in data/raw/MANIFEST.yaml. AntibioticMech wrote the pattern and CellStructureMech adapted it; adopting it here means ranking candidate habitat sources and verifying their licences, which is curation work rather than a file copy.","reason_claims":{"present":["conf/sources.yaml","data/raw/MANIFEST.yaml"],"absent":["curation/source_queue.tsv"]}},"site_contract":{"status":"disabled","reason":"Publishes 3,404 HTML pages under pages/ straight from main, so the check has a directory to judge, but it has not been measured on this site yet. Enable after measuring on joining, as AntibioticMech did, so the contract's numbers keep describing what it runs on.","reason_claims":{"present":["pages"]}},"source_catalogue":{"status":"disabled","reason":"Declares its sources in conf/sources.yaml and the fetched payloads in data/raw/MANIFEST.yaml rather than a download.yaml in the fleet's catalogue shape; there is no download.yaml to parse. Converging on one shape is open.","reason_claims":{"present":["conf/sources.yaml","data/raw/MANIFEST.yaml"],"absent":["download.yaml"]}},"unmapped_inventory_input":{"status":"not_applicable","reason":"The unmapped-ingredient inventory reads culture-media and ingredient corpora; HabitatMech curates habitats and has no ingredient records, so scripts/inventory_unmapped_ingredients.py defines no loader for it.","reason_claims":{"present":["claw:scripts/inventory_unmapped_ingredients.py"]}}}},"NaturalProductMech":{"key":"naturalproductmech","github":"CultureBotAI/NaturalProductMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"disabled","reason":"Vendors the governed curation-history schema and carries a new-history recipe, but has no history directory yet, so no record can append an event. Adopting applies once the tree exists and the recipe is wired into CI.","reason_claims":{"absent":["history"]}},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"disabled","reason":"No conf/deep_research_provider.yaml and no research recipe; sources are assessed through the source queue. Adopting applies once a provider profile exists under claw's contract.","reason_claims":{"absent":["conf/deep_research_provider.yaml"]}},"edison_key_discovery":{"status":"not_applicable","reason":"NaturalProductMech does not use an Edison research-provider key; it has no research provider integration at all."},"environment_coverage":{"status":"not_applicable","reason":"Environment coverage compares culture media, ingredients and microbial communities. A natural-product structure corpus is not one of those inputs."},"knowledge_gap_scan":{"status":"disabled","reason":"Records do not carry the shared Discussion section the scan reads, and this repository is not in the knowledge-gap-scan workflow matrix. Enable once records carry it."},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["np_pathway","np_classification","grounding_status","curation_status"]}},"page_budgets":{"status":"disabled","reason":"Serves tracked pages under pages/ straight from main via GitHub Pages and declares no size or file-count budgets, so no conf/pages_budgets.json exists for the audit to read.","reason_claims":{"present":["pages"],"absent":["conf/pages_budgets.json"]}},"writer_audit":{"status":"disabled","reason":"Has no scripts/audit_writers.py, so there is no drift between writer copies to remove yet. Adopting it applies here once the corpus is edited by more than one writer.","reason_claims":{"absent":["scripts/audit_writers.py"]}},"sssom_export":{"status":"disabled","reason":"Records carry ChEBI, NPAtlas and PubChem identifiers inline rather than through a mapping file. Adopting SSSOM applies once a mapping product exists."},"metpo_proposal":{"status":"disabled","reason":"No proposals directory and no METPO grounding; structures are grounded in ChEBI. Adopting applies once a natural-product phenotype needs a METPO term.","reason_claims":{"absent":["proposals"]}},"kgx_export":{"status":"disabled","reason":"No exporter and no graph product yet; adopting KGX applies once the corpus is consumed as a graph."},"source_queue":{"status":"enabled","settings":{"queue_path":"curation/source_queue.tsv","extensions":["structures"]}},"site_contract":{"status":"enabled","settings":{"site_path":"pages"}},"source_catalogue":{"status":"disabled","reason":"Keeps its ranked source list as curation/source_queue.tsv and fetches each adopted source through its own extract recipe; there is no download.yaml for the catalogue check to read. Adopting means deriving the machine-fetchable half from the queue.","reason_claims":{"present":["curation/source_queue.tsv"],"absent":["download.yaml"]}},"unmapped_inventory_input":{"status":"not_applicable","reason":"The unmapped inventory reconciles ingredient names across media corpora; natural-product structures are not one of its inputs."}}},"TaxonMech":{"key":"taxonmech","github":"CultureBotAI/TaxonMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"disabled","reason":"Vendors scripts/deep_research_contract.py but has no conf/deep_research_provider.yaml or provider recipe. Enable once a research provider is configured and exercised under the shared contract.","reason_claims":{"present":["scripts/deep_research_contract.py"],"absent":["conf/deep_research_provider.yaml"]}},"edison_key_discovery":{"status":"not_applicable","reason":"TaxonMech has no Edison integration or Edison research-provider key."},"environment_coverage":{"status":"not_applicable","reason":"Environment coverage compares culture media, ingredients and microbial communities; taxon identity records are not one of its inputs."},"knowledge_gap_scan":{"status":"disabled","reason":"The schema supports Discussion but no shared scan window or workflow is configured. Enable after adding a durable curated overlay that the generated-corpus pipeline preserves and wiring the scanner to it."},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["taxon_domain","rank","grounding_status","mapping_status"]}},"page_budgets":{"status":"disabled","reason":"Publishes tracked pages under pages/ but has no conf/pages_budgets.json. Enable once explicit size and file-count budgets are configured and measured.","reason_claims":{"present":["pages"],"absent":["conf/pages_budgets.json"]}},"writer_audit":{"status":"disabled","reason":"Has no scripts/audit_writers.py. Records use a native seeder and validated writer, but no shared audit profile has been adopted. Enable after configuring the profile and measuring its writer coverage.","reason_claims":{"absent":["scripts/audit_writers.py"]}},"sssom_export":{"status":"disabled","reason":"Stores taxonomy mappings and cross-references inline; no SSSOM mapping product is emitted. Enable once a validated export exists."},"metpo_proposal":{"status":"disabled","reason":"The schema references METPO but there is no proposals/ directory or proposal cohort. Enable once the repository produces terms under the shared proposal contract.","reason_claims":{"absent":["proposals"]}},"kgx_export":{"status":"disabled","reason":"Consumes kg-microbe KGX as an input but does not emit a graph product. Enable when an exporter produces validated nodes and edges."},"source_queue":{"status":"disabled","reason":"Sources are configured in conf/sources.yaml and inventoried in data/raw/MANIFEST.yaml; no curation/source_queue.tsv ranks candidate sources. Enable once that review queue is adopted.","reason_claims":{"present":["conf/sources.yaml","data/raw/MANIFEST.yaml"],"absent":["curation/source_queue.tsv"]}},"site_contract":{"status":"enabled","settings":{"site_path":"pages"}},"source_catalogue":{"status":"disabled","reason":"Uses conf/sources.yaml and data/raw/MANIFEST.yaml but has no download.yaml in the shared catalogue shape. Enable after adapting the source declarations to that contract.","reason_claims":{"present":["conf/sources.yaml","data/raw/MANIFEST.yaml"],"absent":["download.yaml"]}},"unmapped_inventory_input":{"status":"not_applicable","reason":"The unmapped inventory reconciles ingredient names across media corpora; taxon identity records are not one of its inputs."}}}},"artifact_count":16}; + var DATA = {"order":["HabitatMech","CommunityMech","TraitMech","CellStructureMech","ProteinTraitsMech","NaturalProductMech","AntibioticMech","MediaIngredientMech","CultureMech"],"voc":["NCBITaxon","CHEBI","GO","UniProt","ENVO","UBERON","InterPro","PDB","CAS","METPO","KEGG","FOODON","PATO","Pfam","RHEA","ARO","BTO","MIBiG","NPAtlas","GTDB","PMID","DOI"],"heat":{"HabitatMech":{"CHEBI":24,"NCBITaxon":13227,"GO":7,"ENVO":3368,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":4,"UBERON":1123,"FOODON":198,"BTO":1367,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":516,"DOI":116},"CommunityMech":{"CHEBI":2971,"NCBITaxon":4253,"GO":1537,"ENVO":538,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":10,"FOODON":0,"BTO":0,"GTDB":2037,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":7320,"DOI":1223},"TraitMech":{"CHEBI":673,"NCBITaxon":996,"GO":886,"ENVO":22,"METPO":3617,"ARO":0,"UniProt":399,"InterPro":115,"Pfam":0,"RHEA":0,"PDB":0,"PATO":99,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":621,"DOI":7190},"CellStructureMech":{"CHEBI":65,"NCBITaxon":1438,"GO":11688,"ENVO":0,"METPO":14,"ARO":0,"UniProt":337,"InterPro":206,"Pfam":22,"RHEA":0,"PDB":277,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":698,"DOI":6636},"ProteinTraitsMech":{"CHEBI":374424,"NCBITaxon":358320,"GO":421586,"ENVO":0,"METPO":244,"ARO":397717,"UniProt":658574,"InterPro":1480044,"Pfam":521966,"RHEA":613456,"PDB":235957,"PATO":124,"UBERON":43,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":245,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":657527,"DOI":193845},"NaturalProductMech":{"CHEBI":1659,"NCBITaxon":13960,"GO":0,"ENVO":0,"METPO":0,"ARO":0,"UniProt":613,"InterPro":0,"Pfam":0,"RHEA":14,"PDB":0,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":10133,"NPAtlas":1756,"PMID":5703,"DOI":8437},"AntibioticMech":{"CHEBI":22104,"NCBITaxon":1085,"GO":3,"ENVO":0,"METPO":0,"ARO":16653,"UniProt":278,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":6,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":1823,"MIBiG":0,"NPAtlas":0,"PMID":1207,"DOI":216},"MediaIngredientMech":{"CHEBI":8220,"NCBITaxon":1,"GO":0,"ENVO":110,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":23,"FOODON":273,"BTO":3,"GTDB":0,"KEGG":61,"CAS":727,"MIBiG":0,"NPAtlas":0,"PMID":29,"DOI":9},"CultureMech":{"CHEBI":160678,"NCBITaxon":63,"GO":0,"ENVO":13,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":138,"FOODON":223,"BTO":0,"GTDB":0,"KEGG":1406,"CAS":1,"MIBiG":0,"NPAtlas":0,"PMID":68,"DOI":76}},"cells":{"HabitatMech--BTO":587,"HabitatMech--CHEBI":11,"HabitatMech--ENVO":1296,"HabitatMech--FOODON":85,"HabitatMech--GO":2,"HabitatMech--NCBITaxon":896,"HabitatMech--PATO":3,"HabitatMech--UBERON":704,"CommunityMech--CHEBI":361,"CommunityMech--ENVO":412,"CommunityMech--GO":398,"CommunityMech--GTDB":370,"CommunityMech--NCBITaxon":426,"CommunityMech--UBERON":10,"TraitMech--CHEBI":183,"TraitMech--ENVO":14,"TraitMech--GO":292,"TraitMech--InterPro":61,"TraitMech--METPO":749,"TraitMech--NCBITaxon":484,"TraitMech--PATO":49,"TraitMech--UniProt":182,"CellStructureMech--CHEBI":24,"CellStructureMech--GO":535,"CellStructureMech--InterPro":33,"CellStructureMech--METPO":5,"CellStructureMech--NCBITaxon":531,"CellStructureMech--PDB":19,"CellStructureMech--Pfam":8,"CellStructureMech--UniProt":65,"ProteinTraitsMech--ARO":7452,"ProteinTraitsMech--CHEBI":30122,"ProteinTraitsMech--GO":110744,"ProteinTraitsMech--InterPro":120090,"ProteinTraitsMech--KEGG":231,"ProteinTraitsMech--METPO":119,"ProteinTraitsMech--NCBITaxon":98697,"ProteinTraitsMech--PATO":81,"ProteinTraitsMech--PDB":51718,"ProteinTraitsMech--Pfam":107455,"ProteinTraitsMech--RHEA":29550,"ProteinTraitsMech--UBERON":43,"ProteinTraitsMech--UniProt":159595,"NaturalProductMech--CHEBI":405,"NaturalProductMech--MIBiG":3115,"NaturalProductMech--NCBITaxon":3115,"NaturalProductMech--NPAtlas":1740,"NaturalProductMech--RHEA":1,"NaturalProductMech--UniProt":102,"AntibioticMech--ARO":568,"AntibioticMech--CAS":1797,"AntibioticMech--CHEBI":2814,"AntibioticMech--GO":3,"AntibioticMech--NCBITaxon":163,"AntibioticMech--PDB":5,"AntibioticMech--UniProt":47,"MediaIngredientMech--BTO":1,"MediaIngredientMech--CAS":287,"MediaIngredientMech--CHEBI":2232,"MediaIngredientMech--ENVO":26,"MediaIngredientMech--FOODON":99,"MediaIngredientMech--KEGG":58,"MediaIngredientMech--NCBITaxon":1,"MediaIngredientMech--UBERON":10,"CultureMech--CAS":1,"CultureMech--CHEBI":6125,"CultureMech--ENVO":12,"CultureMech--FOODON":203,"CultureMech--KEGG":329,"CultureMech--NCBITaxon":30,"CultureMech--UBERON":72},"vocab_edges":[{"a":"HabitatMech","b":"CommunityMech","n":313,"by":{"NCBITaxon":265,"ENVO":42,"UBERON":4,"CHEBI":2},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"ENVO:00001998","label":"soil"},{"id":"ENVO:01001001","label":"plant-associated environment"}]},{"a":"HabitatMech","b":"TraitMech","n":122,"by":{"NCBITaxon":115,"ENVO":4,"PATO":2,"CHEBI":1},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"HabitatMech","b":"CellStructureMech","n":41,"by":{"NCBITaxon":41},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1117","label":"Cyanobacteriota"}]},{"a":"HabitatMech","b":"ProteinTraitsMech","n":1250,"by":{"NCBITaxon":1234,"UBERON":12,"CHEBI":2,"GO":2},"ex":[{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1869227","label":"bacterium"}]},{"a":"HabitatMech","b":"NaturalProductMech","n":312,"by":{"NCBITaxon":312},"ex":[{"id":"NCBITaxon:56","label":"Sorangium cellulosum"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1931","label":"Streptomyces sp."}]},{"a":"HabitatMech","b":"AntibioticMech","n":32,"by":{"NCBITaxon":32},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:573","label":"Klebsiella pneumoniae"}]},{"a":"HabitatMech","b":"MediaIngredientMech","n":22,"by":{"ENVO":15,"UBERON":4,"CHEBI":3},"ex":[{"id":"ENVO:00002149","label":"sea water"},{"id":"ENVO:00001998","label":"soil"},{"id":"ENVO:00002263","label":"garden soil"}]},{"a":"HabitatMech","b":"CultureMech","n":25,"by":{"NCBITaxon":13,"ENVO":7,"UBERON":4,"FOODON":1},"ex":[{"id":"UBERON:0000948","label":"heart"},{"id":"UBERON:0000955","label":"brain"},{"id":"UBERON:0000178","label":"blood"}]},{"a":"CommunityMech","b":"TraitMech","n":157,"by":{"CHEBI":61,"NCBITaxon":61,"GO":35},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:15379","label":"dioxygen"},{"id":"GO:0015977","label":"carbon fixation"}]},{"a":"CommunityMech","b":"CellStructureMech","n":60,"by":{"NCBITaxon":36,"CHEBI":13,"GO":11},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:2157","label":"Archaea"},{"id":"NCBITaxon:562","label":"Escherichia coli"}]},{"a":"CommunityMech","b":"ProteinTraitsMech","n":698,"by":{"CHEBI":280,"NCBITaxon":227,"GO":190,"UBERON":1},"ex":[{"id":"CHEBI:30089","label":"acetate"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"GO:0015979","label":"photosynthesis"}]},{"a":"CommunityMech","b":"NaturalProductMech","n":129,"by":{"NCBITaxon":124,"CHEBI":5},"ex":[{"id":"NCBITaxon:286","label":"Pseudomonas"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:562","label":"Escherichia coli"}]},{"a":"CommunityMech","b":"AntibioticMech","n":64,"by":{"CHEBI":42,"NCBITaxon":22},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"},{"id":"CHEBI:33709","label":"amino acid"}]},{"a":"CommunityMech","b":"MediaIngredientMech","n":240,"by":{"CHEBI":238,"ENVO":2},"ex":[{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:33709","label":"amino acid"},{"id":"CHEBI:3312","label":"calcium dichloride"}]},{"a":"CommunityMech","b":"CultureMech","n":151,"by":{"CHEBI":138,"NCBITaxon":8,"ENVO":5},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:30089","label":"acetate"}]},{"a":"TraitMech","b":"CellStructureMech","n":114,"by":{"GO":53,"NCBITaxon":40,"CHEBI":7,"UniProt":6,"METPO":5,"InterPro":3},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:83333","label":"Escherichia coli (strain K12)"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"}]},{"a":"TraitMech","b":"ProteinTraitsMech","n":707,"by":{"GO":248,"NCBITaxon":136,"METPO":111,"CHEBI":109,"UniProt":56,"InterPro":47},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"METPO:1000631","label":"trophic type"}]},{"a":"TraitMech","b":"NaturalProductMech","n":57,"by":{"NCBITaxon":53,"CHEBI":4},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"TraitMech","b":"AntibioticMech","n":31,"by":{"NCBITaxon":21,"CHEBI":10},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"TraitMech","b":"MediaIngredientMech","n":59,"by":{"CHEBI":59},"ex":[{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:16526","label":"carbon dioxide"}]},{"a":"TraitMech","b":"CultureMech","n":36,"by":{"CHEBI":26,"NCBITaxon":10},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:17234","label":"glucose"}]},{"a":"CellStructureMech","b":"ProteinTraitsMech","n":1058,"by":{"GO":737,"UniProt":155,"NCBITaxon":77,"InterPro":64,"CHEBI":15,"Pfam":10},"ex":[{"id":"GO:0032991","label":"protein-containing complex"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:3055","label":"Chlamydomonas reinhardtii"}]},{"a":"CellStructureMech","b":"NaturalProductMech","n":23,"by":{"NCBITaxon":23},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:9606","label":"Homo sapiens"}]},{"a":"CellStructureMech","b":"AntibioticMech","n":18,"by":{"NCBITaxon":13,"CHEBI":5},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:4932","label":"Saccharomyces cerevisiae"},{"id":"NCBITaxon:90371","label":"Salmonella enterica subsp. enterica serovar Typhimurium"}]},{"a":"CellStructureMech","b":"MediaIngredientMech","n":14,"by":{"CHEBI":14},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:17029","label":"chitin"},{"id":"CHEBI:33403","label":"elemental sulfur"}]},{"a":"CellStructureMech","b":"CultureMech","n":7,"by":{"CHEBI":4,"NCBITaxon":3},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:16261","label":"chitosan"},{"id":"CHEBI:33403","label":"elemental sulfur"}]},{"a":"ProteinTraitsMech","b":"NaturalProductMech","n":794,"by":{"NCBITaxon":487,"UniProt":156,"CHEBI":148,"RHEA":3},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:100226","label":"Streptomyces coelicolor A3(2)"},{"id":"NCBITaxon:227321","label":"Emericella nidulans (strain FGSC A4 / ATCC 38163 / CBS 112.46 / NRRL 194 / M139)"}]},{"a":"ProteinTraitsMech","b":"AntibioticMech","n":2435,"by":{"ARO":1740,"CHEBI":594,"NCBITaxon":79,"UniProt":20,"GO":2},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:573","label":"Klebsiella pneumoniae"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"}]},{"a":"ProteinTraitsMech","b":"MediaIngredientMech","n":798,"by":{"CHEBI":797,"UBERON":1},"ex":[{"id":"CHEBI:15377","label":"water"},{"id":"CHEBI:15740","label":"formate"},{"id":"CHEBI:33709","label":"amino acid"}]},{"a":"ProteinTraitsMech","b":"CultureMech","n":233,"by":{"CHEBI":221,"NCBITaxon":10,"UBERON":2},"ex":[{"id":"CHEBI:15377","label":"water"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:17754","label":"glycerol"}]},{"a":"NaturalProductMech","b":"AntibioticMech","n":278,"by":{"CHEBI":180,"NCBITaxon":96,"UniProt":2},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"},{"id":"NCBITaxon:330879","label":"Aspergillus fumigatus (strain ATCC MYA-4609 / CBS 101355 / FGSC A1100 / Af293)"}]},{"a":"NaturalProductMech","b":"MediaIngredientMech","n":51,"by":{"CHEBI":51},"ex":[{"id":"CHEBI:15956","label":"biotin"},{"id":"CHEBI:16349","label":"L-citrulline"},{"id":"CHEBI:27592","label":"ectoine"}]},{"a":"NaturalProductMech","b":"CultureMech","n":5,"by":{"CHEBI":3,"NCBITaxon":2},"ex":[{"id":"CHEBI:15956","label":"biotin"},{"id":"CHEBI:16349","label":"L-citrulline"},{"id":"CHEBI:27592","label":"ectoine"}]},{"a":"AntibioticMech","b":"MediaIngredientMech","n":324,"by":{"CHEBI":324},"ex":[{"id":"CHEBI:33709","label":"amino acid"},{"id":"CHEBI:30746","label":"benzoic acid"},{"id":"CHEBI:17334","label":"penicillin"}]},{"a":"AntibioticMech","b":"CultureMech","n":29,"by":{"CHEBI":29},"ex":[{"id":"CHEBI:17334","label":"penicillin"},{"id":"CHEBI:48923","label":"erythromycin"},{"id":"CHEBI:30746","label":"benzoic acid"}]},{"a":"MediaIngredientMech","b":"CultureMech","n":612,"by":{"CHEBI":545,"KEGG":56,"FOODON":6,"UBERON":3,"CAS":1,"ENVO":1},"ex":[{"id":"FOODON:03315426","label":"yeast extract"},{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:2509","label":"agar"}]}]}; + var MANIFEST = {"version":1,"source":{"repository":"CultureBotAI/culturebotai-claw","revision":"2637172e6fdbfacf163f0b12d289a9828dda2f30","url":"https://github.com/CultureBotAI/culturebotai-claw/blob/2637172e6fdbfacf163f0b12d289a9828dda2f30/src/kg_microbe_fleet/fleet.yaml"},"capability_catalogue":{"id_label_validation":{},"curation_history":{},"strict_validation":{},"schema_sync":{},"release_management":{},"build_coordination":{},"documentation":{},"testing":{},"refactoring":{},"coordination_hooks":{},"deep_research":{},"edison_key_discovery":{},"environment_coverage":{"settings":{"record_globs":{"type":"string_list","required_when_enabled":true}}},"knowledge_gap_scan":{"settings":{"window":{"type":"integer","required_when_enabled":true,"minimum":1}}},"vendored_sync":{},"unmapped_inventory_input":{},"source_catalogue":{},"corpus_statistics":{"settings":{"fields":{"type":"string_list","required_when_enabled":true}}},"page_budgets":{"settings":{"site_path":{"type":"string","required_when_enabled":true},"budgets_path":{"type":"string","required_when_enabled":true}}},"kgx_export":{"settings":{"nodes_path":{"type":"string","required_when_enabled":true},"edges_path":{"type":"string","required_when_enabled":true},"extra_prefixes":{"type":"string_list"}}},"source_queue":{"settings":{"queue_path":{"type":"string","required_when_enabled":true},"extensions":{"type":"string_list"},"required_when_adopted":{"type":"string_list"}}},"metpo_proposal":{"settings":{"class_glob":{"type":"string","required_when_enabled":true},"property_glob":{"type":"string"}}},"sssom_export":{"settings":{"mapping_globs":{"type":"string_list","required_when_enabled":true},"extensions":{"type":"string_list"}}},"writer_audit":{"settings":{"search_dirs":{"type":"string_list","required_when_enabled":true},"save_helpers":{"type":"string_list"},"validators":{"type":"string_list"},"curation_markers":{"type":"string_list"},"exclude":{"type":"string_list"}}},"site_contract":{"settings":{"site_path":{"type":"string","required_when_enabled":true},"published_root":{"type":"string"},"allowed_hosts":{"type":"string_list"}}}},"mechs":{"CultureMech":{"key":"culturemech","github":"CultureBotAI/CultureMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"enabled"},"edison_key_discovery":{"status":"enabled"},"environment_coverage":{"status":"enabled","settings":{"record_globs":["data/merge_yaml/merged/*.yaml"]}},"knowledge_gap_scan":{"status":"enabled","settings":{"window":300}},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["source_environment","medium_type"]}},"page_budgets":{"status":"disabled","reason":"Generates a site through .github/workflows/generate-pages.yaml but declares no size or file-count budgets, so nothing watches it grow. Adopting them applies here; the limits are the repository's to set.","reason_claims":{"present":[".github/workflows/generate-pages.yaml"]}},"writer_audit":{"status":"enabled","settings":{"search_dirs":["scripts","src/culturemech"],"save_helpers":["write_validated_recipe"],"exclude":["scripts/audit_writers.py"]}},"sssom_export":{"status":"enabled","settings":{"mapping_globs":["output/*.sssom.tsv"],"extensions":["mapping_method"]}},"metpo_proposal":{"status":"disabled","reason":"Carries .claude/commands/ground-or-propose-metpo.md, so the grounding half is present, but has no proposals/ directory and has never minted a METPO id. Adopting applies once a CultureMech term needs one.","reason_claims":{"absent":["proposals"],"present":[".claude/commands/ground-or-propose-metpo.md"]}},"kgx_export":{"status":"disabled","reason":"scripts/export_kgx.py writes to output/kgx but has produced nothing tracked, so there is no graph for this contract to judge. Adopting it means running the exporter first; the check applies here once it does.","reason_claims":{"present":["scripts/export_kgx.py"],"absent":["output/kgx"]}},"source_queue":{"status":"disabled","reason":"Has no curation/source_queue.tsv. AntibioticMech wrote the pattern and CellStructureMech adapted it; adopting it here means ranking this corpus's own candidate sources and verifying their licences, which is curation work rather than a file copy.","reason_claims":{"absent":["curation/source_queue.tsv"]}},"site_contract":{"status":"disabled","reason":"Publishes a site built in CI, so no directory in the checkout is the output the check would judge; running it on the Jekyll or template sources reports missing .html files that the build creates. Adopting it means running the check on the build product, which applies here and is not yet wired."},"source_catalogue":{"status":"disabled","reason":"Fetches each source from its own script -- scripts/fetch_komodo_base_volumes.py, scripts/fetch_mediadive_solution_volumes.py, scripts/fetch_pubmed_abstracts.py -- with no download.yaml declaring them, so there is no catalogue to validate. Adopting one would apply here; it has not been written.","reason_claims":{"present":["scripts/fetch_komodo_base_volumes.py","scripts/fetch_mediadive_solution_volumes.py","scripts/fetch_pubmed_abstracts.py"],"absent":["download.yaml"]}},"unmapped_inventory_input":{"status":"enabled"}}},"MediaIngredientMech":{"key":"mediaingredientmech","github":"CultureBotAI/MediaIngredientMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"enabled"},"edison_key_discovery":{"status":"enabled"},"environment_coverage":{"status":"enabled","settings":{"record_globs":["data/ingredients/**/*.yaml"]}},"knowledge_gap_scan":{"status":"enabled","settings":{"window":300}},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["ingredient_type","ontology_mapping.mapping_quality"]}},"page_budgets":{"status":"disabled","reason":"Generates a site through .github/workflows/generate-pages.yaml but declares no size or file-count budgets, so nothing watches it grow. Adopting them applies here; the limits are the repository's to set.","reason_claims":{"present":[".github/workflows/generate-pages.yaml"]}},"writer_audit":{"status":"enabled","settings":{"search_dirs":["scripts","src/mediaingredientmech"],"save_helpers":["save_yaml","write_validated_ingredient"],"exclude":["scripts/audit_writers.py"]}},"sssom_export":{"status":"enabled","settings":{"mapping_globs":["mappings/*.sssom.tsv"],"extensions":["source","validation_method"]}},"metpo_proposal":{"status":"not_applicable","reason":"MIM grounds ingredients in ChEBI and FOODON and publishes SSSOM mappings; METPO models microbial phenotypes and processes, which is not the axis this corpus curates."},"kgx_export":{"status":"disabled","reason":"Publishes term mappings rather than a graph; its contribution to kg-microbe is SSSOM. Adopting KGX would apply here only if it starts emitting nodes and edges."},"source_queue":{"status":"disabled","reason":"Has no curation/source_queue.tsv. AntibioticMech wrote the pattern and CellStructureMech adapted it; adopting it here means ranking this corpus's own candidate sources and verifying their licences, which is curation work rather than a file copy.","reason_claims":{"absent":["curation/source_queue.tsv"]}},"site_contract":{"status":"disabled","reason":"Publishes a site built in CI, so no directory in the checkout is the output the check would judge; running it on the Jekyll or template sources reports missing .html files that the build creates. Adopting it means running the check on the build product, which applies here and is not yet wired."},"source_catalogue":{"status":"disabled","reason":"Fetches ontologies through download_ontologies.py rather than a declared catalogue, so there is no download.yaml to validate. Adopting one would apply here; it has not been written.","reason_claims":{"present":["scripts/download_ontologies.py"],"absent":["download.yaml"]}},"unmapped_inventory_input":{"status":"enabled"}}},"CommunityMech":{"key":"communitymech","github":"CultureBotAI/CommunityMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"enabled"},"edison_key_discovery":{"status":"enabled"},"environment_coverage":{"status":"enabled","settings":{"record_globs":["data/isolates/*.yaml"]}},"knowledge_gap_scan":{"status":"enabled","settings":{"window":305}},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["environment_term"]}},"page_budgets":{"status":"disabled","reason":"Generates a site through .github/workflows/generate-pages.yaml but declares no size or file-count budgets, so nothing watches it grow. Adopting them applies here; the limits are the repository's to set.","reason_claims":{"present":[".github/workflows/generate-pages.yaml"]}},"writer_audit":{"status":"enabled","settings":{"search_dirs":["scripts","src/communitymech"],"save_helpers":["write_validated_community"],"curation_markers":["record_curation_event"],"exclude":["scripts/audit_writers.py"]}},"sssom_export":{"status":"not_applicable","reason":"Publishes KGX nodes and edges rather than term mappings; its contribution to kg-microbe is a graph, not a mapping set, so there is no SSSOM file for this contract to judge."},"metpo_proposal":{"status":"enabled","settings":{"class_glob":"proposals/*/metpo_proposal_classes_robot.tsv","property_glob":"proposals/*/metpo_proposal_properties_robot.tsv"}},"kgx_export":{"status":"enabled","settings":{"nodes_path":"output/kgx/nodes.tsv","edges_path":"output/kgx/edges.tsv"}},"source_queue":{"status":"disabled","reason":"Has no curation/source_queue.tsv. AntibioticMech wrote the pattern and CellStructureMech adapted it; adopting it here means ranking this corpus's own candidate sources and verifying their licences, which is curation work rather than a file copy.","reason_claims":{"absent":["curation/source_queue.tsv"]}},"site_contract":{"status":"enabled","settings":{"site_path":"docs"}},"source_catalogue":{"status":"disabled","reason":"Has no download.yaml; its inputs arrive through per-source scripts rather than a declared catalogue. Adopting one would apply here; it has not been written.","reason_claims":{"absent":["download.yaml"]}},"unmapped_inventory_input":{"status":"enabled"}}},"TraitMech":{"key":"traitmech","github":"CultureBotAI/TraitMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"enabled"},"edison_key_discovery":{"status":"enabled"},"environment_coverage":{"status":"not_applicable","reason":"Environment coverage currently compares culture media, ingredients, and microbial communities; trait records are not an environment inventory input."},"knowledge_gap_scan":{"status":"enabled","settings":{"window":300}},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["mapping_status","trait_category"]}},"page_budgets":{"status":"disabled","reason":"Serves 490 tracked pages under pages/ straight from main via GitHub Pages -- it has no generate-pages.yaml, unlike the other four -- and declares no size or file-count budgets, so nothing watches them grow. Adopting them applies here; the limits are the repository's to set.","reason_claims":{"present":["pages"],"absent":[".github/workflows/generate-pages.yaml"]}},"writer_audit":{"status":"enabled","settings":{"search_dirs":["scripts","src/traitmech"],"save_helpers":["write_validated_trait"],"curation_markers":["record_curation"],"exclude":["scripts/audit_writers.py"]}},"sssom_export":{"status":"enabled","settings":{"mapping_globs":["proposals/*/metpo_proposal_mappings.sssom.tsv"]}},"metpo_proposal":{"status":"enabled","settings":{"class_glob":"proposals/*/metpo_proposal_classes_robot.tsv","property_glob":"proposals/*/metpo_proposal_properties_robot.tsv"}},"kgx_export":{"status":"disabled","reason":"Publishes trait records and METPO mapping proposals, not a KGX graph."},"source_queue":{"status":"disabled","reason":"Has no curation/source_queue.tsv. AntibioticMech wrote the pattern and CellStructureMech adapted it; adopting it here means ranking this corpus's own candidate sources and verifying their licences, which is curation work rather than a file copy.","reason_claims":{"absent":["curation/source_queue.tsv"]}},"site_contract":{"status":"enabled","settings":{"site_path":"pages","published_root":".","allowed_hosts":["cdn.jsdelivr.net"]}},"source_catalogue":{"status":"enabled"},"unmapped_inventory_input":{"status":"not_applicable","reason":"The unmapped-ingredient inventory reads culture-media and ingredient corpora; TraitMech curates traits and has no ingredient records, so scripts/inventory_unmapped_ingredients.py defines no loader for it.","reason_claims":{"present":["claw:scripts/inventory_unmapped_ingredients.py"]}}}},"ProteinTraitsMech":{"key":"proteintraitsmech","github":"CultureBotAI/proteintraitsmech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"enabled"},"edison_key_discovery":{"status":"not_applicable","reason":"ProteinTraitsMech does not use an Edison research-provider key; provider integration is configured through its own supported credential surfaces."},"environment_coverage":{"status":"not_applicable","reason":"Environment coverage currently compares culture media, ingredients, and microbial communities; protein-trait records are not an environment inventory input."},"knowledge_gap_scan":{"status":"not_applicable","reason":"Record-level knowledge-gap scanning targets curated per-record discussion text. This corpus is ontology-derived, so there is no per-record gap surface to scan; the repository is correspondingly absent from the knowledge-gap-scan workflow matrix."},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["trait_axis","mapping_status"]}},"page_budgets":{"status":"enabled","settings":{"site_path":"_site","budgets_path":"conf/pages_budgets.json"}},"writer_audit":{"status":"not_applicable","reason":"Its scripts/audit_writers.py shares the name and nothing else -- a different tool built on registered editors and guard tests, ~600 lines apart from the other four. This audit does not describe what that one checks, and consolidating them would mean choosing one model over the other rather than removing a duplicate.","reason_claims":{"present":["scripts/audit_writers.py"]}},"sssom_export":{"status":"disabled","reason":"Grounds protein traits directly in its own records rather than publishing a mapping set. Adopting one would apply here; none has been written."},"metpo_proposal":{"status":"disabled","reason":"Carries METPO-grounded records under data/traits/**/metpo/, so it consumes METPO, but proposes no new terms and has no proposals/ directory. Adopting applies once a protein trait needs a term METPO lacks.","reason_claims":{"absent":["proposals"]}},"kgx_export":{"status":"disabled","reason":"Publishes protein-trait records rather than a graph."},"source_queue":{"status":"disabled","reason":"Has no curation/source_queue.tsv. AntibioticMech wrote the pattern and CellStructureMech adapted it; adopting it here means ranking this corpus's own candidate sources and verifying their licences, which is curation work rather than a file copy.","reason_claims":{"absent":["curation/source_queue.tsv"]}},"site_contract":{"status":"disabled","reason":"Publishes a site built in CI, so no directory in the checkout is the output the check would judge; running it on the Jekyll or template sources reports missing .html files that the build creates. Adopting it means running the check on the build product, which applies here and is not yet wired."},"source_catalogue":{"status":"enabled"},"unmapped_inventory_input":{"status":"not_applicable","reason":"The unmapped-ingredient inventory reads culture-media and ingredient corpora; ProteinTraitsMech curates protein-trait records and has no ingredient corpus, so scripts/inventory_unmapped_ingredients.py defines no loader for it.","reason_claims":{"present":["claw:scripts/inventory_unmapped_ingredients.py"]}}}},"AntibioticMech":{"key":"antibioticmech","github":"CultureBotAI/AntibioticMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"vendored_sync":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"testing":{"status":"enabled"},"documentation":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"disabled","reason":"Has research-antibiotic, research-entity and deep-research-canary recipes and a research/ tree, but no conf/deep_research_provider.yaml -- the profile every deep-research Mech declares and the contract resolves. Enabled on the recipes alone this would assert a profile that does not exist; the recipes are a research route, not the declared provider contract.","reason_claims":{"present":["research"],"absent":["conf/deep_research_provider.yaml"]}},"edison_key_discovery":{"status":"not_applicable","reason":"Research runs through this repository's own research-antibiotic and research-entity recipes; it uses no Edison provider key."},"environment_coverage":{"status":"not_applicable","reason":"Environment coverage compares culture media, ingredients and microbial communities. An antimicrobial-compound corpus is not an environment inventory input."},"unmapped_inventory_input":{"status":"not_applicable","reason":"The unmapped inventory reconciles ingredient names across media corpora; antimicrobial compounds are not one of its sources."},"knowledge_gap_scan":{"status":"disabled","reason":"Records do not carry the shared Discussion section the scan reads, and this repository is not in the knowledge-gap-scan workflow matrix. Enable once records carry it."},"source_catalogue":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["antimicrobial_class","grounding_status"]}},"source_queue":{"status":"enabled","settings":{"queue_path":"curation/source_queue.tsv"}},"site_contract":{"status":"enabled","settings":{"site_path":"pages"}},"page_budgets":{"status":"disabled","reason":"Serves tracked pages under pages/ from main via GitHub Pages and declares no size or file-count budgets, so nothing watches them grow -- 2,956 files and 30.1 MB measured at admission (#230). Adopting them applies here; the limits are this repository's to set.","reason_claims":{"present":["pages"]}},"writer_audit":{"status":"disabled","reason":"Has no scripts/audit_writers.py, so there is no drift between writer copies to remove yet. Adopting it applies once more writers exist.","reason_claims":{"absent":["scripts/audit_writers.py"]}},"sssom_export":{"status":"disabled","reason":"Records carry ChEBI and ARO identifiers inline rather than through a mapping file. Adopting SSSOM applies once a mapping product exists."},"metpo_proposal":{"status":"disabled","reason":"No proposals/ directory and no METPO grounding. Antimicrobial compounds are grounded in ChEBI and ARO inline; adopting applies once a resistance or activity phenotype needs a METPO term.","reason_claims":{"absent":["proposals"]}},"kgx_export":{"status":"disabled","reason":"No exporter and no graph product yet; adopting KGX applies once the corpus is consumed as a graph."}}},"CellStructureMech":{"key":"cellstructuremech","github":"CultureBotAI/CellStructureMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"disabled","reason":"Research so far is source assessment written by hand under research/ with no provider client or research recipe in the justfile; the repository has not decided on a paid research route.","reason_claims":{"present":["research"]}},"edison_key_discovery":{"status":"not_applicable","reason":"CellStructureMech does not use an Edison research-provider key; it has no research provider integration at all."},"environment_coverage":{"status":"not_applicable","reason":"Environment coverage currently compares culture media, ingredients, and microbial communities; cell-structure records are not an environment inventory input."},"knowledge_gap_scan":{"status":"disabled","reason":"Records carry the shared Discussion section, so the scan applies, but the corpus is four records and the repository is not yet in the knowledge-gap-scan workflow matrix; enable once the first tranche of records lands (CellStructureMech#12)."},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["structure_category","mapping_status"]}},"page_budgets":{"status":"disabled","reason":"Serves tracked pages under pages/ straight from main via GitHub Pages -- it has no generate-pages.yaml -- and declares no size or file-count budgets, so nothing watches them grow. Adopting them applies here; the limits are the repository's to set.","reason_claims":{"present":["pages"],"absent":[".github/workflows/generate-pages.yaml"]}},"writer_audit":{"status":"disabled","reason":"Has no scripts/audit_writers.py, so there is no drift to remove yet. Adopting it applies here once the corpus grows; the settings are the repository's to declare.","reason_claims":{"absent":["scripts/audit_writers.py"]}},"sssom_export":{"status":"disabled","reason":"Records carry GO cellular-component identifiers inline rather than through a mapping file, and the corpus is four records. Adopting one applies once it grows."},"metpo_proposal":{"status":"disabled","reason":"Structures are grounded in GO cellular-component terms inline and there is no proposals/ directory. Adopting applies once a structure phenotype needs a METPO term GO does not carry.","reason_claims":{"absent":["proposals"]}},"kgx_export":{"status":"disabled","reason":"Four structure records and no exporter; adopting KGX applies once the corpus grows."},"source_queue":{"status":"enabled","settings":{"queue_path":"curation/source_queue.tsv","extensions":["taxon_link","item_id","script"],"required_when_adopted":["script"]}},"site_contract":{"status":"enabled","settings":{"site_path":"pages","published_root":"."}},"source_catalogue":{"status":"disabled","reason":"The repository keeps its ranked source list as curation/source_queue.tsv, machine-checked by scripts/check_source_queue.py inside its qc gate, rather than a download.yaml in the fleet's catalogue shape; there is no download.yaml to parse. Converging on one shape is open.","reason_claims":{"present":["curation/source_queue.tsv","scripts/check_source_queue.py"],"absent":["download.yaml"]}},"unmapped_inventory_input":{"status":"not_applicable","reason":"The unmapped-ingredient inventory reads culture-media and ingredient corpora; CellStructureMech curates cell structures and has no ingredient records, so scripts/inventory_unmapped_ingredients.py defines no loader for it.","reason_claims":{"present":["claw:scripts/inventory_unmapped_ingredients.py"]}}}},"HabitatMech":{"key":"habitatmech","github":"CultureBotAI/HabitatMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"disabled","reason":"Has research, research-dry and deep-research-canary recipes, a research/ tree and the vendored scripts/deep_research_contract.py, but no conf/deep_research_provider.yaml -- the profile every deep-research Mech declares and the contract resolves. Enabled on the recipes alone this would assert a profile that does not exist.","reason_claims":{"present":["research","scripts/deep_research_contract.py"],"absent":["conf/deep_research_provider.yaml"]}},"edison_key_discovery":{"status":"not_applicable","reason":"HabitatMech does not use an Edison research-provider key; its research recipes run through its own provider surface."},"environment_coverage":{"status":"disabled","reason":"HabitatMech is itself an environment vocabulary: 3,213 habitat records grounded in ENVO, UBERON, FOODON and BTO. Environment coverage compares culture media, ingredients and communities against ENVO and has no loader for HabitatRecord, so it cannot yet read this corpus as either an input or the reference set. Adopting it applies here and is the more valuable direction: teach environment_coverage_dashboard.py to treat habitat records as the reference the other corpora are measured against.","reason_claims":{"present":["claw:scripts/environment_coverage_dashboard.py"]}},"knowledge_gap_scan":{"status":"disabled","reason":"Records carry the shared Discussion section, so the scan applies. The workflow matrix is generated from this manifest, so enabling the capability here with a settings.window is what adds the repository to it. Left disabled until HabitatMech has run the scan once locally and chosen its window."},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["habitat_category","grounding_status","mapping_status"]}},"page_budgets":{"status":"disabled","reason":"Serves 3,404 published HTML pages under pages/ straight from main via GitHub Pages -- it has no generate-pages.yaml -- and declares no size or file-count budgets, so nothing watches them grow. Adopting them applies here; the limits are the repository's to set.","reason_claims":{"present":["pages"],"absent":[".github/workflows/generate-pages.yaml"]}},"writer_audit":{"status":"disabled","reason":"Has no scripts/audit_writers.py. Its writers exist (write_validated_habitat and record_curation_event in the seeder) and records are seeded as build products, so there is drift to audit; adopting it applies here once the audit is written.","reason_claims":{"absent":["scripts/audit_writers.py"]}},"sssom_export":{"status":"disabled","reason":"Grounds each habitat inline on the record (ENVO, UBERON, FOODON, BTO) and keeps its ontology requests as curation/term_requests.tsv rather than publishing a mapping set; there is no SSSOM file for this contract to judge. Adopting one would apply here.","reason_claims":{"present":["curation/term_requests.tsv"]}},"metpo_proposal":{"status":"disabled","reason":"Habitats are grounded in ENVO and the repository raises its gaps through term requests rather than METPO cohorts, so it has no proposals directory. Adopting applies once a habitat-associated phenotype needs a METPO term.","reason_claims":{"absent":["proposals"]}},"kgx_export":{"status":"disabled","reason":"Consumes kg-microbe's KGX as an input -- conf/sources.yaml names the checkout that supplies ENVO, UBERON, FOODON and BTO -- and publishes habitat records, not a graph. Adopting KGX would apply here only if it starts emitting nodes and edges.","reason_claims":{"present":["conf/sources.yaml"]}},"source_queue":{"status":"disabled","reason":"Has no curation/source_queue.tsv; its sources are declared in conf/sources.yaml and the raw payloads in data/raw/MANIFEST.yaml. AntibioticMech wrote the pattern and CellStructureMech adapted it; adopting it here means ranking candidate habitat sources and verifying their licences, which is curation work rather than a file copy.","reason_claims":{"present":["conf/sources.yaml","data/raw/MANIFEST.yaml"],"absent":["curation/source_queue.tsv"]}},"site_contract":{"status":"disabled","reason":"Publishes 3,404 HTML pages under pages/ straight from main, so the check has a directory to judge, but it has not been measured on this site yet. Enable after measuring on joining, as AntibioticMech did, so the contract's numbers keep describing what it runs on.","reason_claims":{"present":["pages"]}},"source_catalogue":{"status":"disabled","reason":"Declares its sources in conf/sources.yaml and the fetched payloads in data/raw/MANIFEST.yaml rather than a download.yaml in the fleet's catalogue shape; there is no download.yaml to parse. Converging on one shape is open.","reason_claims":{"present":["conf/sources.yaml","data/raw/MANIFEST.yaml"],"absent":["download.yaml"]}},"unmapped_inventory_input":{"status":"not_applicable","reason":"The unmapped-ingredient inventory reads culture-media and ingredient corpora; HabitatMech curates habitats and has no ingredient records, so scripts/inventory_unmapped_ingredients.py defines no loader for it.","reason_claims":{"present":["claw:scripts/inventory_unmapped_ingredients.py"]}}}},"NaturalProductMech":{"key":"naturalproductmech","github":"CultureBotAI/NaturalProductMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"disabled","reason":"Vendors the governed curation-history schema and carries a new-history recipe, but has no history directory yet, so no record can append an event. Adopting applies once the tree exists and the recipe is wired into CI.","reason_claims":{"absent":["history"]}},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"disabled","reason":"No conf/deep_research_provider.yaml and no research recipe; sources are assessed through the source queue. Adopting applies once a provider profile exists under claw's contract.","reason_claims":{"absent":["conf/deep_research_provider.yaml"]}},"edison_key_discovery":{"status":"not_applicable","reason":"NaturalProductMech does not use an Edison research-provider key; it has no research provider integration at all."},"environment_coverage":{"status":"not_applicable","reason":"Environment coverage compares culture media, ingredients and microbial communities. A natural-product structure corpus is not one of those inputs."},"knowledge_gap_scan":{"status":"disabled","reason":"Records do not carry the shared Discussion section the scan reads, and this repository is not in the knowledge-gap-scan workflow matrix. Enable once records carry it."},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["np_pathway","np_classification","grounding_status","curation_status"]}},"page_budgets":{"status":"disabled","reason":"Serves tracked pages under pages/ straight from main via GitHub Pages and declares no size or file-count budgets, so no conf/pages_budgets.json exists for the audit to read.","reason_claims":{"present":["pages"],"absent":["conf/pages_budgets.json"]}},"writer_audit":{"status":"disabled","reason":"Has no scripts/audit_writers.py, so there is no drift between writer copies to remove yet. Adopting it applies here once the corpus is edited by more than one writer.","reason_claims":{"absent":["scripts/audit_writers.py"]}},"sssom_export":{"status":"disabled","reason":"Records carry ChEBI, NPAtlas and PubChem identifiers inline rather than through a mapping file. Adopting SSSOM applies once a mapping product exists."},"metpo_proposal":{"status":"disabled","reason":"No proposals directory and no METPO grounding; structures are grounded in ChEBI. Adopting applies once a natural-product phenotype needs a METPO term.","reason_claims":{"absent":["proposals"]}},"kgx_export":{"status":"disabled","reason":"No exporter and no graph product yet; adopting KGX applies once the corpus is consumed as a graph."},"source_queue":{"status":"enabled","settings":{"queue_path":"curation/source_queue.tsv","extensions":["structures"]}},"site_contract":{"status":"enabled","settings":{"site_path":"pages"}},"source_catalogue":{"status":"disabled","reason":"Keeps its ranked source list as curation/source_queue.tsv and fetches each adopted source through its own extract recipe; there is no download.yaml for the catalogue check to read. Adopting means deriving the machine-fetchable half from the queue.","reason_claims":{"present":["curation/source_queue.tsv"],"absent":["download.yaml"]}},"unmapped_inventory_input":{"status":"not_applicable","reason":"The unmapped inventory reconciles ingredient names across media corpora; natural-product structures are not one of its inputs."}}},"TaxonMech":{"key":"taxonmech","github":"CultureBotAI/TaxonMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"disabled","reason":"Vendors scripts/deep_research_contract.py but has no conf/deep_research_provider.yaml or provider recipe. Enable once a research provider is configured and exercised under the shared contract.","reason_claims":{"present":["scripts/deep_research_contract.py"],"absent":["conf/deep_research_provider.yaml"]}},"edison_key_discovery":{"status":"not_applicable","reason":"TaxonMech has no Edison integration or Edison research-provider key."},"environment_coverage":{"status":"not_applicable","reason":"Environment coverage compares culture media, ingredients and microbial communities; taxon identity records are not one of its inputs."},"knowledge_gap_scan":{"status":"disabled","reason":"The schema supports Discussion but no shared scan window or workflow is configured. Enable after adding a durable curated overlay that the generated-corpus pipeline preserves and wiring the scanner to it."},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["taxon_domain","rank","grounding_status","mapping_status"]}},"page_budgets":{"status":"disabled","reason":"Publishes tracked pages under pages/ but has no conf/pages_budgets.json. Enable once explicit size and file-count budgets are configured and measured.","reason_claims":{"present":["pages"],"absent":["conf/pages_budgets.json"]}},"writer_audit":{"status":"disabled","reason":"Has no scripts/audit_writers.py. Records use a native seeder and validated writer, but no shared audit profile has been adopted. Enable after configuring the profile and measuring its writer coverage.","reason_claims":{"absent":["scripts/audit_writers.py"]}},"sssom_export":{"status":"disabled","reason":"Stores taxonomy mappings and cross-references inline; no SSSOM mapping product is emitted. Enable once a validated export exists."},"metpo_proposal":{"status":"disabled","reason":"The schema references METPO but there is no proposals/ directory or proposal cohort. Enable once the repository produces terms under the shared proposal contract.","reason_claims":{"absent":["proposals"]}},"kgx_export":{"status":"disabled","reason":"Consumes kg-microbe KGX as an input but does not emit a graph product. Enable when an exporter produces validated nodes and edges."},"source_queue":{"status":"disabled","reason":"Sources are configured in conf/sources.yaml and inventoried in data/raw/MANIFEST.yaml; no curation/source_queue.tsv ranks candidate sources. Enable once that review queue is adopted.","reason_claims":{"present":["conf/sources.yaml","data/raw/MANIFEST.yaml"],"absent":["curation/source_queue.tsv"]}},"site_contract":{"status":"enabled","settings":{"site_path":"pages"}},"source_catalogue":{"status":"disabled","reason":"Uses conf/sources.yaml and data/raw/MANIFEST.yaml but has no download.yaml in the shared catalogue shape. Enable after adapting the source declarations to that contract.","reason_claims":{"present":["conf/sources.yaml","data/raw/MANIFEST.yaml"],"absent":["download.yaml"]}},"unmapped_inventory_input":{"status":"not_applicable","reason":"The unmapped inventory reconciles ingredient names across media corpora; taxon identity records are not one of its inputs."}}}},"artifact_count":16}; var MECHS = { - HabitatMech: { key: "habitatmech", scale: "Habitat", tag: "Four habitat vocabularies harmonized into ENVO-grounded records that keep every source's attestation.", records: 3206, unit: "habitat records", root: "HabitatRecord", vocab: ["ENVO", "NCBITaxon", "BTO", "UBERON", "FOODON"], github: "https://github.com/CultureBotAI/HabitatMech", site: "https://culturebotai.github.io/HabitatMech/", page: "", license: "CC0-1.0", sources: "JGI GOLD ecosystem paths, BacDive isolation sources, PREGO, Madin et al.; ENVO/UBERON/FOODON/BTO via kg-microbe", extra: "686 curator-reviewed; 2,151 ontology-grounded; 176 corroborated by two or more sources. Browse habitat records or explore the semantic text map." }, - CommunityMech: { key: "communitymech", scale: "Community", tag: "Autonomous knowledge factory for microbial communities, their interactions, cultivation and evidence.", records: 392, unit: "community records", root: "MicrobialCommunity", vocab: ["NCBITaxon", "CHEBI", "GO", "ENVO", "GTDB"], github: "https://github.com/CultureBotAI/CommunityMech", site: "https://culturebotai.github.io/CommunityMech/", page: "/communitymech/", license: "BSD-3-Clause", sources: "PubMed literature, GTDB, IMG, BioModels, CultureMech media, MediaIngredientMech ingredients", extra: "392 communities across 16 categories, with faceted record browsing, a PaCMAP embedding browser and a graph layout." }, - TaxonMech: { key: "taxonmech", scale: "Taxa and strains", tag: "Microbial taxa and strains identified by NCBI Taxonomy and harmonized with GTDB, LPSN and BacDive.", records: 625960, unit: "taxon records", root: "TaxonRecord", vocab: ["NCBITaxon", "GTDB", "LPSN", "BacDive", "NCBI Assembly"], github: "https://github.com/CultureBotAI/TaxonMech", site: "https://culturebotai.github.io/TaxonMech/", page: "", license: "CC0-1.0 project content; upstream terms apply", sources: "NCBI Taxonomy, GTDB, LPSN, BacDive, MediaDive, GOLD, Madin and BactoTraits through kg-microbe transforms", extra: "625,960 taxa, 100,745 distinct listed strains and 20,648 taxa with a type strain. 21,071 listed strains have genome identifier links. Taxon pages show NCBI, GTDB, BV-BRC/PATRIC, IMG and AllTheBacteria links, plus StrainInfo references and evidence." }, - TraitMech: { key: "traitmech", scale: "Traits", tag: "Autonomous knowledge factory for microbial ecophysiological traits, seeded from METPO, with one curated YAML per trait.", records: 723, unit: "trait records", root: "TraitRecord", vocab: ["METPO", "GO", "NCBITaxon", "CHEBI", "UniProt"], github: "https://github.com/CultureBotAI/TraitMech", site: "https://culturebotai.github.io/TraitMech/", page: "", license: "CC0-1.0", sources: "METPO (vendored OWL), GapMind and GTDB genome tables as candidates", extra: "723 traits across 10 categories; 66.0% embedded. Browse definitions, causal graphs, kg-microbe matches and nearest neighbors, or explore PaCMAP and graph layouts." }, - CellStructureMech: { key: "cellstructuremech", scale: "Cell structures", tag: "Ontology-grounded microbial cell structures: components, distribution, function and causal mechanism.", records: 421, unit: "structure records", root: "CellStructureRecord", vocab: ["GO", "NCBITaxon", "UniProt", "METPO", "Pfam"], github: "https://github.com/CultureBotAI/CellStructureMech", site: "https://culturebotai.github.io/CellStructureMech/", page: "", license: "CC0-1.0 project content; upstream terms apply", sources: "GO cellular component, UniProt subcellular location, Complex Portal, EMDB/EMPIAR, PDB, TraitMech", extra: "421 structures across 13 categories, including 177 membrane organelles; 367 records are GO-grounded. Browse by category, kind and grounding status." }, - ProteinTraitsMech: { key: "proteintraitsmech", scale: "Proteins", tag: "Protein sequence, structure and function trait classes, one curated YAML per trait, evidence-backed.", records: 429291, unit: "protein trait records", root: "ProteinTraitRecord", vocab: ["InterPro", "UniProt", "RHEA", "Pfam", "GO", "CHEBI", "ARO"], github: "https://github.com/CultureBotAI/proteintraitsmech", site: "https://culturebotai.github.io/proteintraitsmech/", page: "", license: "CC0-1.0 project content; upstream terms apply", sources: "InterPro, Pfam, CATH, SCOPe, ECOD, Rhea, ExPASy ENZYME, CARD/ARO, PROSITE, TCDB, COG, Reactome, METPO", extra: "118,281 structure, 147,091 sequence, 384 sequence-structure, 163,526 function and 9 evolution records. The corpus map uses text embeddings; a protein map covers 68,657 Swiss-Prot proteins, and an ESM-2 sequence map covers canonical-example proteins." }, + HabitatMech: { key: "habitatmech", scale: "Habitat", tag: "Four habitat vocabularies harmonized into ontology-grounded records that keep every source's attestation.", records: 3206, unit: "habitat records", root: "HabitatRecord", vocab: ["ENVO", "NCBITaxon", "BTO", "UBERON", "FOODON"], github: "https://github.com/CultureBotAI/HabitatMech", site: "https://culturebotai.github.io/HabitatMech/", page: "", license: "CC0-1.0", sources: "JGI GOLD ecosystem paths, BacDive isolation sources, PREGO, Madin et al.; ENVO/UBERON/FOODON/BTO via kg-microbe", extra: "686 curator-reviewed; 2,151 ontology-grounded; 176 corroborated by two or more sources. Browse habitat records or explore the semantic text map." }, + CommunityMech: { key: "communitymech", scale: "Community", tag: "Autonomous knowledge factory for microbial communities, their interactions, cultivation and evidence.", records: 422, unit: "community records", root: "MicrobialCommunity", vocab: ["NCBITaxon", "CHEBI", "GO", "ENVO", "GTDB"], github: "https://github.com/CultureBotAI/CommunityMech", site: "https://culturebotai.github.io/CommunityMech/", page: "/communitymech/", license: "BSD-3-Clause", sources: "PubMed literature, GTDB, IMG, BioModels, CultureMech media, MediaIngredientMech ingredients", extra: "422 communities across 15 categories, with faceted record browsing, a PaCMAP embedding browser and a graph layout." }, + TaxonMech: { key: "taxonmech", scale: "Taxa and strains", tag: "Microbial taxa and strains identified by NCBI Taxonomy and harmonized with GTDB, LPSN and BacDive.", records: 625960, unit: "taxon records", root: "TaxonRecord", vocab: ["NCBITaxon", "GTDB", "LPSN", "BacDive", "NCBI Assembly"], github: "https://github.com/CultureBotAI/TaxonMech", site: "https://culturebotai.github.io/TaxonMech/", page: "", license: "CC0-1.0 project content; upstream terms apply", sources: "NCBI Taxonomy and Assembly, BacDive, BV-BRC, AllTheBacteria, StrainInfo and the GOLD workbook as primary snapshots; GTDB, LPSN, MediaDive, GOLD organisms, Madin and BactoTraits through kg-microbe", extra: "625,960 taxa, 100,745 distinct listed strains and 20,648 taxa with a type strain. 21,071 listed strains have genome identifier links. Taxon pages show NCBI, GTDB, BV-BRC/PATRIC, IMG and AllTheBacteria links, plus StrainInfo references and evidence." }, + TraitMech: { key: "traitmech", scale: "Traits", tag: "Autonomous knowledge factory for microbial ecophysiological traits, seeded from METPO, with one curated YAML per trait.", records: 763, unit: "trait records", root: "TraitRecord", vocab: ["METPO", "GO", "NCBITaxon", "CHEBI", "UniProt"], github: "https://github.com/CultureBotAI/TraitMech", site: "https://culturebotai.github.io/TraitMech/", page: "", license: "CC0-1.0", sources: "METPO (vendored OWL), GapMind and GTDB genome tables as candidates", extra: "763 traits across 10 categories; 62.5% embedded. Browse definitions, causal graphs, kg-microbe matches and nearest neighbors, or explore PaCMAP and graph layouts." }, + CellStructureMech: { key: "cellstructuremech", scale: "Cell structures", tag: "Ontology-grounded microbial cell structures: components, distribution, function and causal mechanism.", records: 542, unit: "structure records", root: "CellStructureRecord", vocab: ["GO", "NCBITaxon", "UniProt", "METPO", "Pfam"], github: "https://github.com/CultureBotAI/CellStructureMech", site: "https://culturebotai.github.io/CellStructureMech/", page: "", license: "CC0-1.0 project content; upstream terms apply", sources: "GO cellular component, UniProt subcellular location, Complex Portal, EMDB/EMPIAR, PDB, TraitMech", extra: "542 structures across 13 categories, including 196 membrane organelles; 475 records are GO-grounded. Browse records by category, view the GO-grounded list, or explore the text embedding map." }, + ProteinTraitsMech: { key: "proteintraitsmech", scale: "Proteins", tag: "Protein sequence, structure and function trait classes seeded from InterPro, Pfam, Rhea, CATH and more, one YAML per trait. Reviewed records carry evidence-backed causal graphs.", records: 429293, unit: "protein trait records", root: "ProteinTraitRecord", vocab: ["InterPro", "UniProt", "RHEA", "Pfam", "GO", "CHEBI", "ARO"], github: "https://github.com/CultureBotAI/proteintraitsmech", site: "https://culturebotai.github.io/proteintraitsmech/", page: "", license: "CC0-1.0 project content; upstream terms apply", sources: "InterPro, Pfam, CATH, SCOPe, ECOD, Rhea, ExPASy ENZYME, CARD/ARO, PROSITE, TCDB, COG, Reactome, METPO", extra: "118,283 structure, 147,091 sequence, 384 sequence-structure, 163,526 function and 9 evolution records. The corpus map uses text embeddings; a protein map covers 68,657 Swiss-Prot proteins, and an ESM-2 sequence map covers canonical-example proteins." }, NaturalProductMech: { key: "naturalproductmech", scale: "Natural products", tag: "One record per natural product structure: who makes it, from which gene cluster, and what it does.", records: 3115, unit: "natural product structures", root: "NaturalProductRecord", vocab: ["MIBiG", "NCBITaxon", "ChEBI", "NPAtlas", "PubChem", "UniProt"], github: "https://github.com/CultureBotAI/NaturalProductMech", site: "https://culturebotai.github.io/NaturalProductMech/", page: "", license: "CC0-1.0 code · CC BY 4.0 data", sources: "ChEBI, MIBiG gene clusters, LOTUS occurrences, CyanoMetDB, NPClassifier, PubChem BioAssay, BindingDB, NCBI Taxonomy, AntibioticMech", extra: "3,407 producer claims, including 805 supported by evidence addressing the organism; 2,342 records carry cited occurrences. Structure and corpus maps complement the record browser." }, - AntibioticMech: { key: "antibioticmech", scale: "Antibiotics", tag: "One record per antimicrobial structure, harmonizing ChEBI and CARD with mechanism and evidence.", records: 2939, unit: "antimicrobial structures", root: "AntibioticRecord", vocab: ["CHEBI", "ARO", "CAS", "NCBITaxon", "PubChem", "DrugBank"], github: "https://github.com/CultureBotAI/AntibioticMech", site: "https://culturebotai.github.io/AntibioticMech/", page: "", license: "CC0-1.0 code · CC BY 4.0 data", sources: "ChEBI 3-star antimicrobial roles, CARD/ARO antibiotic molecules, PubChem structures, PHI-base, MIBiG", extra: "2,669 ontology-grounded and 270 minted identities; 454 records with mode of action, 282 with molecular targets and 16 with causal graphs. The chemical map places all 2,939 records by chiral molecular fingerprints." }, - MediaIngredientMech: { key: "mediaingredientmech", scale: "Ingredients", tag: "LLM-assisted curation of media-ingredient ontology mappings with full audit trails.", records: 2951, unit: "ingredient records", root: "IngredientRecord", vocab: ["CHEBI", "CAS", "NCIT", "FOODON", "ENVO"], github: "https://github.com/CultureBotAI/MediaIngredientMech", site: "https://culturebotai.github.io/MediaIngredientMech/", page: "/mediaingredientmech/", license: "CC0-1.0", sources: "MIM-owned ingredient records; CultureMech recipe changes as diagnostic inputs; OAK/OLS term services; ChEBI, FOODON, NCIT, MeSH, METPO", extra: "2,616 of 2,951 ingredients mapped (89%). Search by mapping status and quality, or explore ingredient PaCMAP and graph layouts." }, - CultureMech: { key: "culturemech", scale: "Media", tag: "Autonomous knowledge factory curating versioned, ontology-grounded microbial culture-media recipes.", records: 6286, unit: "canonical media", root: "MediaRecipe", vocab: ["CHEBI", "KEGG", "FOODON", "UBERON", "CAS"], github: "https://github.com/CultureBotAI/CultureMech", site: "https://culturebotai.github.io/CultureMech/", page: "/culturemech/", license: "CC0-1.0", sources: "MediaDive/DSMZ, TogoMedium, KOMODO, ATCC, JCM, BacDive (queued)", extra: "6,286 deduplicated canonical media, merged from 15,878 source-specific normalized records that the published browser serves across five categories, with filters for target organisms and ingredients. Explore derived ingredient-based and direct medium-node embeddings, plus a graph layout." } + AntibioticMech: { key: "antibioticmech", scale: "Antibiotics", tag: "One record per antimicrobial structure, harmonizing ChEBI and CARD with mechanism and evidence.", records: 2939, unit: "antimicrobial structures", root: "AntibioticRecord", vocab: ["CHEBI", "ARO", "CAS", "NCBITaxon", "PubChem", "DrugBank"], github: "https://github.com/CultureBotAI/AntibioticMech", site: "https://culturebotai.github.io/AntibioticMech/", page: "", license: "CC0-1.0 code · CC BY 4.0 data", sources: "ChEBI 3-star antimicrobial roles, CARD/ARO antibiotic molecules, PubChem structures, PHI-base, MIBiG, BindingDB, Drugs@FDA", extra: "2,669 ontology-grounded and 270 minted identities; 454 records with mode of action, 282 with molecular targets and 16 with causal graphs. The chemical map places all 2,939 records by chiral molecular fingerprints; a corpus map places them by record text." }, + MediaIngredientMech: { key: "mediaingredientmech", scale: "Ingredients", tag: "LLM-assisted curation of media-ingredient ontology mappings with full audit trails.", records: 2953, unit: "ingredient records", root: "IngredientRecord", vocab: ["CHEBI", "CAS", "NCIT", "FOODON", "ENVO"], github: "https://github.com/CultureBotAI/MediaIngredientMech", site: "https://culturebotai.github.io/MediaIngredientMech/", page: "/mediaingredientmech/", license: "CC0-1.0", sources: "MIM-owned ingredient records; CultureMech recipe changes as diagnostic inputs; OAK/OLS term services; ChEBI, FOODON, NCIT, MeSH, METPO", extra: "2,611 of 2,953 ingredients mapped (88%). Search by mapping status and quality, or explore ingredient PaCMAP and graph layouts." }, + CultureMech: { key: "culturemech", scale: "Media", tag: "Autonomous knowledge factory curating versioned, ontology-grounded microbial culture-media recipes.", records: 6288, unit: "canonical media", root: "MediaRecipe", vocab: ["CHEBI", "KEGG", "FOODON", "UBERON", "CAS"], github: "https://github.com/CultureBotAI/CultureMech", site: "https://culturebotai.github.io/CultureMech/", page: "/culturemech/", license: "CC0-1.0", sources: "MediaDive/DSMZ, TogoMedium, KOMODO, ATCC, JCM, BacDive (queued)", extra: "6,288 deduplicated canonical media, merged from 15,878 source-specific normalized records that the published browser serves across five categories, with filters for target organisms and ingredients. Explore derived ingredient-based and direct medium-node embeddings, plus a graph layout." } }; // Directed cross-references between Mech records, schemas and curation practice. var XREFS = [ { from: "CultureMech", to: "MediaIngredientMech", kind: "data", what: "Ingredient strings and occurrence counts inform scoped MIM curation; MIM records carry CultureMech:NNNNNN back-links by stable id.", ev: "MIM schema CultureMechReference; claw ingredient_curation_pipeline", url: "https://github.com/CultureBotAI/MediaIngredientMech/blob/main/src/mediaingredientmech/schema/mediaingredientmech.yaml" }, { from: "MediaIngredientMech", to: "CultureMech", kind: "data", what: "Curated ChEBI/FOODON artifacts support scoped recipe updates; CultureMech vendors MIM's ingredient-role enums and consumes its label index.", ev: "CultureMech src/culturemech/schema/mim_roles.yaml", url: "https://github.com/CultureBotAI/CultureMech/blob/main/src/culturemech/schema/mim_roles.yaml" }, - { from: "CommunityMech", to: "CultureMech", kind: "data", what: "Community records name the medium they were grown in by CultureMech id (through culturemech_id).", ev: "CommunityMech docs/cross_repo_linking.md", url: "https://github.com/CultureBotAI/CommunityMech/blob/main/docs/cross_repo_linking.md" }, - { from: "CommunityMech", to: "MediaIngredientMech", kind: "schema", what: "RelatedIngredient.mediaingredientmech_id slot is declared for MIM ingredient ids.", ev: "CommunityMech docs/cross_repo_linking.md" }, - { from: "CellStructureMech", to: "TraitMech", kind: "data", what: "Structures list the phenotypes they confer as TraitMech / METPO terms; causal-graph node vocabulary is TraitMech's plus STRUCTURE.", ev: "CellStructureMech schema associated_traits", url: "https://github.com/CultureBotAI/CellStructureMech/blob/main/src/cellstructuremech/schema/cellstructuremech.yaml" }, + { from: "CommunityMech", to: "CultureMech", kind: "data", what: "Community records name the medium they were grown in by CultureMech id (through culturemech_id); CultureMech imported media from CommunityMech with their community ids and backfilled recipe source environments through that link.", ev: "CommunityMech docs/cross_repo_linking.md", url: "https://github.com/CultureBotAI/CommunityMech/blob/main/docs/cross_repo_linking.md" }, + { from: "CommunityMech", to: "MediaIngredientMech", kind: "data", what: "MIM imported CommunityMech's unmapped growth-media ingredient strings as MIM records (source communitymech-unmapped); CommunityMech's own MIM-id slots are marked vestigial, with chebi_term as the join.", ev: "MIM data/ingredients (communitymech-unmapped); CommunityMech schema GrowthMediaComponent, RelatedIngredient", url: "https://github.com/CultureBotAI/MediaIngredientMech/blob/main/docs/CURIE_STANDARD.md" }, + { from: "TraitMech", to: "CellStructureMech", kind: "data", what: "Structures list the phenotypes they confer as TraitMech / METPO terms; causal-graph node vocabulary is TraitMech's plus STRUCTURE.", ev: "CellStructureMech schema associated_traits", url: "https://github.com/CultureBotAI/CellStructureMech/blob/main/src/cellstructuremech/schema/cellstructuremech.yaml" }, { from: "CellStructureMech", to: "ProteinTraitsMech", kind: "schema", what: "A single protein is a component, not a record: it grounds to InterPro / UniProtKB and hands off to ProteinTraitsMech.", ev: "CellStructureMech docs/CURATION.md", url: "https://github.com/CultureBotAI/CellStructureMech/blob/main/docs/CURATION.md" }, - { from: "HabitatMech", to: "TraitMech", kind: "schema", what: "Habitat causal graphs use a superset of TraitMech's node vocabulary so graphs stay comparable; a node may be a TraitMech or METPO term.", ev: "HabitatMech schema CausalNode", url: "https://github.com/CultureBotAI/HabitatMech/blob/main/src/habitatmech/schema/habitatmech.yaml" }, - { from: "HabitatMech", to: "CultureMech", kind: "practice", what: "The one overlapping concept, BTO:0000316 culture medium, is handed to CultureMech rather than curated twice.", ev: "HabitatMech curation/decisions.tsv", url: "https://github.com/CultureBotAI/HabitatMech/blob/main/curation/decisions.tsv" }, - { from: "AntibioticMech", to: "NaturalProductMech", kind: "data", what: "Antimicrobial classification comes from AntibioticMech: its structures are matched on InChIKey to say which natural products are antimicrobial.", ev: "NaturalProductMech data/raw/antibioticmech_inchikeys.tsv", url: "https://github.com/CultureBotAI/NaturalProductMech/blob/main/PLAN.md" }, + { from: "TraitMech", to: "HabitatMech", kind: "schema", what: "Habitat causal graphs reuse most of TraitMech's node vocabulary so graphs stay comparable; a node may be a TraitMech or METPO term.", ev: "HabitatMech schema CausalNode", url: "https://github.com/CultureBotAI/HabitatMech/blob/main/src/habitatmech/schema/habitatmech.yaml" }, + { from: "HabitatMech", to: "CultureMech", kind: "practice", what: "HabitatMech grounds GOLD's culture-media habitat to BTO:0000316 culture medium; the curation decision points to CultureMech for related curation.", ev: "HabitatMech curation/decisions.tsv", url: "https://github.com/CultureBotAI/HabitatMech/blob/main/curation/decisions.tsv" }, + { from: "HabitatMech", to: "TaxonMech", kind: "schema", what: "TaxonMech's schema lets a habitat node in a causal graph be a HabitatMech or ENVO term and declares the habitatmech: prefix; no TaxonMech record has a causal graph yet.", ev: "TaxonMech schema CausalNodeTypeEnum and prefixes", url: "https://github.com/CultureBotAI/TaxonMech/blob/main/src/taxonmech/schema/taxonmech.yaml" }, + { from: "AntibioticMech", to: "NaturalProductMech", kind: "data", what: "Natural products that share an InChIKey with an AntibioticMech structure link to that record and take its antimicrobial class, not its targets or mechanism; NaturalProductMech also adapted AntibioticMech's source-queue pattern.", ev: "NaturalProductMech data/raw/antibioticmech_inchikeys.tsv; .claude/skills/source-queue", url: "https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/raw/antibioticmech_inchikeys.tsv" }, { from: "AntibioticMech", to: "CellStructureMech", kind: "practice", what: "The licensed source-queue curation pattern was written here and adapted by CellStructureMech.", ev: "claw docs/guides/SOURCE_QUEUE.md", url: "https://github.com/CultureBotAI/culturebotai-claw/blob/main/docs/guides/SOURCE_QUEUE.md" }, - { from: "ProteinTraitsMech", to: "TraitMech", kind: "practice", what: "TraitMech adopted ProteinTraitsMech's download.yaml source catalogue shape; a drift audit keeps shared trait tokens aligned.", ev: "TraitMech download.yaml; ProteinTraitsMech justfile", url: "https://github.com/CultureBotAI/TraitMech/blob/main/download.yaml" } + { from: "ProteinTraitsMech", to: "TraitMech", kind: "practice", what: "TraitMech's download.yaml source catalogue follows ProteinTraitsMech's shape, and its check_sources.py validator is adapted from ProteinTraitsMech's.", ev: "TraitMech download.yaml; scripts/check_sources.py", url: "https://github.com/CultureBotAI/TraitMech/blob/main/download.yaml" }, + { from: "TraitMech", to: "ProteinTraitsMech", kind: "schema", what: "ProteinTraitsMech keeps a reviewed snapshot of TraitMech's TraitCategoryEnum; a CI audit reports a non-blocking notice when UPPER or OTHER, the only tokens both vocabularies use, is described differently.", ev: "ProteinTraitsMech conf/traitmech_category_vocabulary.yaml; scripts/audit_cross_mech_categories.py", url: "https://github.com/CultureBotAI/proteintraitsmech/blob/main/conf/traitmech_category_vocabulary.yaml" }, + { from: "TraitMech", to: "TaxonMech", kind: "schema", what: "TaxonMech's schema lets a trait node in a causal graph be a TraitMech or METPO term and declares the traitmech: prefix; no TaxonMech record has a causal graph yet.", ev: "TaxonMech schema CausalNodeTypeEnum and prefixes", url: "https://github.com/CultureBotAI/TaxonMech/blob/main/src/taxonmech/schema/taxonmech.yaml" } ]; // Exchange with the central kg-microbe knowledge graph. var HUB = [ - { mech: "CultureMech", dir: "out", kind: "export", what: "SSSOM mapping sets (11 files) and a KGX sample" }, + { mech: "CultureMech", dir: "out", kind: "namespace", what: "shares the kg-microbe mech-shared schema modules; its SSSOM and KGX exporters have not published a release yet" }, { mech: "MediaIngredientMech", dir: "out", kind: "export", what: "canonical ingredient SSSOM, the mapping contract kg-microbe consumes" }, - { mech: "CommunityMech", dir: "out", kind: "export", what: "KGX nodes and edges release" }, - { mech: "TraitMech", dir: "out", kind: "export", what: "METPO term proposals as SSSOM" }, - { mech: "TaxonMech", dir: "in", kind: "input", what: "taxon identities, mappings, nomenclature and strain assertions from kg-microbe transforms" }, + { mech: "CommunityMech", dir: "out", kind: "namespace", what: "shares the kg-microbe mech-shared schema modules; its KGX exporter and release workflow have not published a release yet" }, + { mech: "TraitMech", dir: "in", kind: "input", what: "DeepWalk graph embeddings of kg-microbe's trait nodes, vendored for the kg-microbe matches and nearest neighbors on the trait pages" }, + { mech: "TaxonMech", dir: "in", kind: "input", what: "GTDB mappings, LPSN nomenclature and MediaDive, GOLD, Madin and BactoTraits attestations from kg-microbe transforms" }, { mech: "HabitatMech", dir: "in", kind: "input", what: "ENVO / UBERON / FOODON / BTO in KGX form plus the curated isolation-source table" }, - { mech: "CommunityMech", dir: "in", kind: "input", what: "merged knowledge-graph edges vendored for the browser" }, + { mech: "CommunityMech", dir: "in", kind: "input", what: "the NCBI-to-GTDB crosswalk from a kg-microbe checkout for GTDB grounding, and kg-microbe taxon embeddings for the community map" }, { mech: "MediaIngredientMech", dir: "in", kind: "input", what: "unified entity mappings and alternate labels" }, { mech: "CultureMech", dir: "in", kind: "input", what: "grounding checks against kg-microbe entities (match-kg-microbe)" }, { mech: "AntibioticMech", dir: "out", kind: "namespace", what: "schema minted under the kg-microbe namespace (w3id.org/kg-microbe/antibioticmech); no data release into the graph yet" }, @@ -792,7 +795,7 @@ Each X-Mech is an **autonomous knowledge factory** that curates, validates, and } function selectHub() { state.sel = { type: "hub" }; render(); - detail.innerHTML = '

Hub

kg-microbe

The Mechs are curated upstream of kg-microbe and publish into it as SSSOM mapping sets or KGX graphs; in turn, kg-microbe supplies harmonized ontologies and mapping tables back to the Mechs that need them. Some Mechs currently share the kg-microbe namespace without releasing data into the graph; the exchange list records each relationship.

' + + detail.innerHTML = '

Hub

kg-microbe

Only MediaIngredientMech feeds kg-microbe today. Its ingredient SSSOM is loaded when kg-microbe builds its chemical mappings. CultureMech and CommunityMech have SSSOM or KGX exporters but no published release. TraitMech addresses its METPO class proposals to METPO, not to the graph. The other six share the kg-microbe namespace but release no data into the graph. In the other direction, kg-microbe supplies harmonized ontologies, transformed source data, mapping tables and graph embeddings to the Mechs that need them. The exchange list records each relationship.

' + '

Exchange

    ' + HUB.map(function (h) { return '
  • ' + esc(h.mech) + (h.dir === "out" ? ' →' : ' ←') + ' ' + esc(h.what) + '
  • '; }).join("") + '
'; } // Re-render whatever is selected after a filter change. @@ -861,7 +864,7 @@ Each X-Mech is an **autonomous knowledge factory** that curates, validates, and if (cellSel !== key) return; // a later click replaced this one var cap = doc.records.length < doc.total; cellPanel.innerHTML = '

' + esc(m) + ' · ' + esc(v) + '

' + fmt(doc.total) + ' record' + (doc.total === 1 ? '' : 's') + ' in ' + esc(m) + ' cite ' + esc(v) + ' identifiers

' + - '

' + (cap ? 'Showing the first ' + fmt(doc.records.length) + '. ' : '') + 'Each link opens the record' + (m === "CultureMech" || m === "MediaIngredientMech" ? ' source file on GitHub' : ' page') + '.

' + + '

' + (cap ? 'Showing the first ' + fmt(doc.records.length) + '. ' : '') + 'Each link opens the record' + (m === "CultureMech" || m === "MediaIngredientMech" || m === "NaturalProductMech" ? ' source file on GitHub' : ' page') + '.

' + '

' + recLinks(doc.base, doc.records, doc.records.length) + '

'; })["catch"](function () { if (cellSel !== key) return; cellPanel.innerHTML = '

' + esc(m) + ' · ' + esc(v) + '

' + loadFailed() + '

'; }); }); @@ -877,22 +880,22 @@ Each X-Mech is an **autonomous knowledge factory** that curates, validates, and ## The ten Mechs -Each card carries its Mech's own site color. Hover a card to trace its ties in the graph above; use "Show in graph" to select it. The small print under each headline number gives reviewed records and merged pull requests; a Mech whose schema has no field recording review shows only the pull-request count, rather than a zero that would claim more than it knows. Card and graph totals reflect the published Mech pages checked on September 20, 2026. Each Browse link is the source for its card, except CultureMech, whose count comes from its current repository inventory; its published landing tile is stale. CommunityMech lists 392 communities online and keeps four additional isolate records in its repository. These published-browser totals may differ from the older record-corpus census below. Fleet membership and capability declarations come from CLAW fleet manifest at 44db08d. +Each card carries its Mech's own site color. Hover a card to trace its ties in the graph above; use "Show in graph" to select it. The small print under each headline number gives reviewed records and merged pull requests; a Mech whose schema has no field recording review shows only the pull-request count, rather than a zero that would claim more than it knows. Card and graph totals reflect the published Mech pages checked on September 24, 2026. Each Browse link is the source for its card. For CultureMech that is its index of merged media records, not its landing page, whose recipe total is stale. CommunityMech lists 422 communities online and keeps four additional isolate records in its repository. These published-browser totals may differ from the record-corpus census below. Fleet membership and capability declarations come from CLAW fleet manifest at 2637172.

HabitatMech

Habitat
-

Four habitat vocabularies harmonized into ENVO-grounded records that keep every source's attestation.

+

Four habitat vocabularies harmonized into ontology-grounded records that keep every source's attestation.

3,206habitat records · 686 reviewed
-

686 reviewed · 153 merged PRs

+

686 reviewed · 417 merged PRs

ENVONCBITaxonBTOUBERONFOODONGOLDBacDive
BrowseGitHubShow in graphin fleet manifest

CommunityMech

Community

Autonomous knowledge factory for microbial communities, their interactions, cultivation conditions and evidence.

-
392community records · 16 categories
-

548 merged PRs

+
422community records · 15 categories
+

578 merged PRs

NCBITaxonChEBIGOENVOGTDBPMID
@@ -900,31 +903,31 @@ Each card carries its Mech's own site color. Hover a card to trace its ties in t

TaxonMech

Taxa and strains

Microbial taxa and strains identified by NCBI Taxonomy, harmonized with GTDB, LPSN and BacDive, with evidence for strain-to-genome links.

625,960taxon records · 100,745 listed strains
-

0 reviewed · 17 merged PRs

+

0 reviewed · 18 merged PRs

NCBITaxonGTDBLPSNBacDiveNCBI Assembly
BrowseGitHubShow in graphin fleet manifest

TraitMech

Traits

Autonomous knowledge factory for microbial ecophysiological traits, seeded from METPO, with one curated YAML per trait and causal mechanism graphs.

-
723trait records · 10 categories
-

427 reviewed · 615 merged PRs

+
763trait records · 10 categories
+

427 reviewed · 656 merged PRs

METPOGONCBITaxonChEBIUniProtPATO
BrowseGitHubShow in graphin fleet manifest

CellStructureMech

Cell structures

Organelles, envelope layers, appendages, microcompartments and complexes: components, distribution, function and causal mechanism.

-
421structure records · 367 GO-grounded
-

0 reviewed · 468 merged PRs

+
542structure records · 475 GO-grounded
+

0 reviewed · 611 merged PRs

GONCBITaxonUniProtMETPOPfamPDB
BrowseGitHubShow in graphin fleet manifest

ProteinTraitsMech

Proteins

Protein sequence, structure and function trait classes seeded from InterPro, Pfam, Rhea, CATH, SCOPe, CARD and more.

-
429,291protein trait records · 34 sources
-

39,591 reviewed · 319 merged PRs

+
429,293protein trait records · 34 sources
+

39,591 reviewed · 326 merged PRs

InterProUniProtRheaPfamGOChEBIARO
BrowseGitHubShow in graphin fleet manifest
@@ -932,7 +935,7 @@ Each card carries its Mech's own site color. Hover a card to trace its ties in t

NaturalProductMech

Natural products

One record per natural product structure: who makes it, from which gene cluster, what it does, and the evidence for all three.

3,115natural product structures · 9 sources
-

0 reviewed · 82 merged PRs

+

0 reviewed · 84 merged PRs

MIBiGNCBITaxonChEBINPAtlasPubChemUniProt
BrowseGitHubShow in graphin fleet manifest
@@ -940,25 +943,25 @@ Each card carries its Mech's own site color. Hover a card to trace its ties in t

AntibioticMech

Antibiotics

One record per antimicrobial chemical structure, harmonizing ChEBI and CARD with targets, mode of action, resistance and evidence.

2,939antimicrobial structures · 2,669 grounded
-

80 reviewed · 266 merged PRs

+

80 reviewed · 422 merged PRs

ChEBIAROCASPubChemDrugBankNCBITaxon
BrowseGitHubShow in graphin fleet manifest

MediaIngredientMech

Ingredients

LLM-assisted curation of media-ingredient ontology mappings with full audit trails; owns ingredient identity for the fleet.

-
2,951ingredient records · 2,616 mapped
-

363 merged PRs

+
2,953ingredient records · 2,611 mapped
+

379 merged PRs

ChEBICASNCITFOODONENVOMeSH

CultureMech

Media

Autonomous knowledge factory curating versioned, ontology-grounded culture-media recipes from MediaDive, TogoMedium, KOMODO and the major collections.

-
6,286canonical media · 5 categories
-

251 merged PRs

+
6,288canonical media · 5 categories
+

253 merged PRs

ChEBIKEGGFOODONUBERONCASNCBITaxon
- +
@@ -967,9 +970,9 @@ Each card carries its Mech's own site color. Hover a card to trace its ties in t Alongside record browsing, the Mechs publish complementary ways to explore their data: - **Taxa and strains:** TaxonMech lists the [20,648 taxa with a type strain](https://culturebotai.github.io/TaxonMech/pages/type-strains.html), each naming the BacDive deposit that LPSN records as the type. Taxon pages carry strain-level NCBI, GTDB, BV-BRC/PATRIC, IMG and AllTheBacteria genome identifiers, plus StrainInfo references and their evidence. The [source catalogue](https://culturebotai.github.io/TaxonMech/pages/sources.html) describes provenance. -- **Community, trait and media similarity:** explore [CommunityMech](https://culturebotai.github.io/CommunityMech/community_umap.html), [TraitMech](https://culturebotai.github.io/TraitMech/pages/umap.html), [ingredients](https://culturebotai.github.io/MediaIngredientMech/ingredient_umap.html) and [culture media](https://culturebotai.github.io/CultureMech/app/umap.html) through their embedding browsers. +- **Community, trait, cell structure and media similarity:** explore [CommunityMech](https://culturebotai.github.io/CommunityMech/community_umap.html), [TraitMech](https://culturebotai.github.io/TraitMech/pages/umap.html), [cell structures](https://culturebotai.github.io/CellStructureMech/pages/embedding-map.html), [ingredients](https://culturebotai.github.io/MediaIngredientMech/ingredient_umap.html) and [culture media](https://culturebotai.github.io/CultureMech/app/umap.html) through their embedding browsers. - **Protein traits, proteins and sequences:** ProteinTraitsMech provides a [text-embedding corpus map](https://culturebotai.github.io/proteintraitsmech/map.html), a [map of 68,657 Swiss-Prot proteins by their traits](https://culturebotai.github.io/proteintraitsmech/map.html#proteins), and an [ESM-2 sequence map](https://culturebotai.github.io/proteintraitsmech/map.html#sequences) of canonical-example proteins. -- **Chemical structures:** compare compounds in the [AntibioticMech chemical map](https://culturebotai.github.io/AntibioticMech/pages/chemical-map.html) and the [NaturalProductMech structure map](https://culturebotai.github.io/NaturalProductMech/pages/chemical-map.html); NaturalProductMech also offers a [corpus map](https://culturebotai.github.io/NaturalProductMech/pages/map.html). +- **Chemical structures:** compare compounds in the [AntibioticMech chemical map](https://culturebotai.github.io/AntibioticMech/pages/chemical-map.html) and the [NaturalProductMech structure map](https://culturebotai.github.io/NaturalProductMech/pages/chemical-map.html). Both Mechs also offer a corpus map that places compounds by their record text rather than their structure: [AntibioticMech](https://culturebotai.github.io/AntibioticMech/pages/map.html) and [NaturalProductMech](https://culturebotai.github.io/NaturalProductMech/pages/map.html). - **Habitat meaning:** HabitatMech offers a [semantic text map](https://culturebotai.github.io/HabitatMech/pages/text-map/) alongside its ontology-grounded record browser. @@ -980,14 +983,18 @@ Beyond shared vocabulary, Mechs name one another directly, in record fields, in
CultureMech→MediaIngredientMech
Ingredient strings and occurrence counts inform scoped MIM curation; retired collection writers no longer overwrite MIM-owned records from CultureMech aggregates; MIM records link back to recipes by stable id with the CultureMechReference class.Record data · claw ingredient_curation_pipeline
MediaIngredientMech→CultureMech
Curated ChEBI and FOODON mapping artifacts support scoped recipe updates. CultureMech vendors MIM's ingredient-role enums and consumes MIM's immutable label index.Record data · src/culturemech/schema/mim_roles.yaml
-
CommunityMech→CultureMech
Community records name the medium they were cultivated in through culturemech_id references.Record data · docs/cross_repo_linking.md
-
CommunityMech→MediaIngredientMech
The RelatedIngredient.mediaingredientmech_id slot is declared for MIM ingredient ids.Schema slot · docs/cross_repo_linking.md
-
CellStructureMech→TraitMech
A structure lists the phenotypes it confers as TraitMech or METPO terms, and its causal-graph node vocabulary is TraitMech's plus a STRUCTURE node type.Record data · schema slot associated_traits
+
CommunityMech→CultureMech
Community records name the medium they were cultivated in through culturemech_id references. CultureMech imported media from CommunityMech with their community ids, and backfilled recipe source environments through that link.Record data · docs/cross_repo_linking.md
+
CommunityMech→MediaIngredientMech
MIM imported CommunityMech's unmapped growth-media ingredient strings as MIM records, citing communitymech-unmapped as their source. CommunityMech's own MIM-id slots (media_ingredient_mech_id, mediaingredientmech_id) are marked vestigial, with chebi_term as the join.Record data · MIM data/ingredients
+
TraitMech→CellStructureMech
A structure lists the phenotypes it confers as TraitMech or METPO terms, and its causal-graph node vocabulary is TraitMech's plus a STRUCTURE node type.Record data · schema slot associated_traits
CellStructureMech→ProteinTraitsMech
A single protein is a component of a structure, never a record of its own: it grounds to InterPro or UniProtKB and hands off to ProteinTraitsMech.Scope boundary · docs/CURATION.md
-
HabitatMech→TraitMech
Habitat causal graphs use a superset of TraitMech's node vocabulary so the graphs stay comparable; a node may be a TraitMech or METPO trait.Schema · CausalNode enum
-
HabitatMech→CultureMech
The single overlapping concept, BTO:0000316 culture medium, is handed to CultureMech rather than curated twice. A culture medium is a synthetic habitat.Curation decision · curation/decisions.tsv
+
TraitMech→HabitatMech
Habitat causal graphs reuse most of TraitMech's node vocabulary so the graphs stay comparable; a node may be a TraitMech or METPO trait.Schema · CausalNodeTypeEnum
+
HabitatMech→CultureMech
HabitatMech grounds GOLD's culture-media habitat to BTO:0000316 culture medium, and the curation decision points to CultureMech for related curation.Curation decision · curation/decisions.tsv
+
HabitatMech→TaxonMech
TaxonMech's schema lets a habitat node in a causal graph be a HabitatMech or ENVO term, and it declares the habitatmech: prefix. No TaxonMech record has a causal graph yet.Schema · CausalNodeTypeEnum
+
AntibioticMech→NaturalProductMech
A natural product that shares an InChIKey with an AntibioticMech structure links to that record and takes its antimicrobial class. Only the class is copied, not AntibioticMech's targets, mode of action or resistance mechanisms. NaturalProductMech also adapted AntibioticMech's licensed source-queue pattern.Record data · data/raw/antibioticmech_inchikeys.tsv
AntibioticMech→CellStructureMech
AntibioticMech wrote the licensed source-queue pattern (rank candidate sources, verify licences, record decisions); CellStructureMech adapted it.Practice · claw docs/guides/SOURCE_QUEUE.md
-
ProteinTraitsMech→TraitMech
TraitMech adopted ProteinTraitsMech's licence-bearing download.yaml source catalogue, and a drift audit keeps the trait tokens the two share aligned in meaning.Practice · TraitMech download.yaml
+
ProteinTraitsMech→TraitMech
TraitMech's download.yaml source catalogue follows the shape of ProteinTraitsMech's, so the two can be read side by side. TraitMech's check_sources.py validator is adapted from ProteinTraitsMech's and, unlike the original, fails a source that records no licence.Practice · TraitMech download.yaml and scripts/check_sources.py
+
TraitMech→ProteinTraitsMech
ProteinTraitsMech keeps a reviewed snapshot of TraitMech's TraitCategoryEnum. The two category vocabularies share only UPPER and OTHER. A CI audit reports a notice, never a failure, when either is described differently in the two Mechs.Schema · conf/traitmech_category_vocabulary.yaml
+
TraitMech→TaxonMech
TaxonMech's schema lets a trait node in a causal graph be a TraitMech or METPO term, and it declares the traitmech: prefix. No TaxonMech record has a causal graph yet.Schema · CausalNodeTypeEnum
## Orchestration: culturebotai-claw @@ -995,14 +1002,14 @@ Beyond shared vocabulary, Mechs name one another directly, in record fields, in [culturebotai-claw](https://github.com/CultureBotAI/culturebotai-claw) is the fleet's coordinator. It does not hold science of its own; it holds the definition of the fleet, the artifacts every Mech must share byte-for-byte, and tooling for cross-repository curation and validation.
-

Fleet manifest

fleet.yaml is the single source of truth for which repositories form the fleet. All ten Mechs shown here are declared, including NaturalProductMech and TaxonMech. Every member declares every capability exactly once as enabled, disabled or not applicable, with a reason that names the files behind it, so nothing is silently off.

+

Fleet manifest

fleet.yaml is the single source of truth for which repositories form the fleet. All ten Mechs shown here are declared, including NaturalProductMech and TaxonMech. Every member declares every capability exactly once as enabled, disabled or not applicable, and every disabled or not-applicable entry gives a reason, so nothing is silently off.

Vendored governance

Shared LinkML modules (mech_shared.yaml, history.yaml), validators and behavioral contracts live in claw and are vendored into each Mech byte-identically, pinned to one immutable claw commit and checked in CI. The canonical registry defines 16 artifacts, with each Mech receiving the contracts that apply to it.

Pipelines and skills

CLAW provides pipeline discovery, repository checks, shared curation tools and validated dry runs. Agent and pipeline execution through openclaw-cli is not implemented; environment-curation and unified ingredient-mapping apply modes are disabled pending transactional writers. Deep-research tooling supports provider triage and dry-run result capture; provider execution is not implemented.

The current support matrix distinguishes supported tools from planned execution. The autonomous knowledge factory label describes each Mech's curation model with human oversight; it does not imply that every CLAW workflow runs unattended. -Which fleet contracts each member has adopted, from the manifest. Every disabled entry records a file-level reason, such as no download.yaml or no source queue yet: +Which fleet contracts each member has adopted, from the manifest. Every disabled entry records a reason, such as no download.yaml or no source queue yet:
@@ -1030,17 +1037,17 @@ The Mechs share curation conventions, with adoption recorded per capability in t
  • One YAML record per entityA recipe, an ingredient, a community, a taxon, a trait, a structure, a protein trait, a natural product, an antibiotic, a habitat. The file is the unit of curation, review and history.
  • A LinkML schema per MechRecords validate against the Mech's schema; every schema imports the same vendored mech_shared.yaml for discussions and datasets.
  • -
  • Ontology-grounded identityRecords are keyed by a public CURIE (ChEBI, GO, METPO, ENVO, NCBITaxon) where one exists, otherwise a minted content-hashed CURIE that can be re-grounded later.
  • -
  • The ID–label invariantEvery identifier is stored with its label, and CI checks that the pair still agrees with the source ontology.
  • -
  • Evidence and provenanceAssertions carry evidence items with PMIDs or DOIs; sources are catalogued with their licences before they are ingested.
  • -
  • Causal mechanism graphsTraits, structures, antibiotics and habitats can carry directed, evidence-backed graphs of mechanism, sharing one node vocabulary so graphs compare across Mechs.
  • +
  • Ontology-grounded identityRecords are keyed by a public CURIE (ChEBI, GO, METPO, ENVO, NCBITaxon) where one exists, otherwise by a local identifier whose form varies by Mech.
  • +
  • The ID–label invariantWhere a record stores an identifier with its label, most Mechs check in CI that the pair still agrees with the source ontology.
  • +
  • Evidence and provenanceEvidence cites its source, such as a publication (PMID or DOI), a database record or a web page, as each Mech's schema allows. Mechs that adopt the source-catalogue or source-queue contract record each source's licence before ingesting it.
  • +
  • Causal mechanism graphsTraits, protein traits, structures, natural products, antibiotics and habitats can carry directed, evidence-backed graphs of mechanism. Each of these Mechs defines its own node types; most share a core set, such as chemical, pathway and biological process.
  • Append-only curation historyMechs adopting the history contract record changes as append-only events, preserving provenance across agent and human curation.
  • A static browser and an open licenceEach Mech publishes a GitHub Pages browser. Licences vary: project-authored content is commonly CC0-1.0, CommunityMech uses BSD-3-Clause, and AntibioticMech and NaturalProductMech records use CC BY 4.0. Redistributed source material retains its applicable terms.
## Related resources -- **[kg-microbe](/kg-microbe/)** - The central knowledge graph the Mechs publish into and draw from +- **[kg-microbe](/kg-microbe/)** - The central knowledge graph several Mechs draw from; MediaIngredientMech's ingredient mappings feed into it - **[MicroGrowAgents](/microgrowagents/)** - Multi-agent media design built on CultureMech, MediaIngredientMech and kg-microbe - **[Resources](/resources/#-ai-curation-tools)** - The full tool catalogue, including MicroMediaParam and the kg-microbe utilities - **[METPO](https://github.com/berkeleybop/metpo)** - The Microbial Ecophysiological Trait and Phenotype Ontology that seeds TraitMech and grounds trait references across the fleet diff --git a/mediaingredientmech.md b/mediaingredientmech.md index 31ab365..1be6159 100644 --- a/mediaingredientmech.md +++ b/mediaingredientmech.md @@ -9,9 +9,9 @@ permalink: /mediaingredientmech/ ## Overview -**MediaIngredientMech** is an autonomous knowledge factory for culture-media ingredient identity and ontology mappings, with LLM-assisted curation and human oversight. It maintains ingredient records, synonyms, mapping quality, environmental context, and an audit trail for curation decisions. [Repository overview](https://github.com/CultureBotAI/MediaIngredientMech/blob/1f12dd79637f8d518099b31b36fe7482651b8070/README.md). +**MediaIngredientMech** is an autonomous knowledge factory for culture-media ingredient identity and ontology mappings, with LLM-assisted curation and human oversight. It maintains ingredient records, synonyms, mapping quality, environmental context, and an audit trail for curation decisions. [Repository overview](https://github.com/CultureBotAI/MediaIngredientMech/blob/dfce1c9342ca7aec41b50d0f6db8adb950bb72fe/README.md). -The published browser contains **2,951 ingredients: 2,616 MAPPED, 261 UNMAPPED, and 74 REJECTED**, giving **89% mapped coverage** after rounding. These figures were checked on September 20, 2026 against the [browser's live data index](https://culturebotai.github.io/MediaIngredientMech/data/ingredients.json). +The published browser contains **2,953 ingredients: 2,611 MAPPED, 261 UNMAPPED, 80 REJECTED, and 1 AMBIGUOUS**, giving **88% mapped coverage** after rounding. These figures were checked on September 24, 2026 against the [browser's live data index](https://culturebotai.github.io/MediaIngredientMech/data/ingredients.json). ## Explore the Published Site @@ -21,7 +21,7 @@ The published browser contains **2,951 ingredients: 2,616 MAPPED, 261 UNMAPPED, ## What a Record Represents -An ingredient record identifies a practical reagent or formulation used in media. Curation distinguishes salts, hydrates, mixtures, and other forms, preserves raw names as synonyms, and records the convention used when sources are ambiguous. Mapping quality and curation status are separate fields. [Mapping semantics](https://github.com/CultureBotAI/MediaIngredientMech/blob/1f12dd79637f8d518099b31b36fe7482651b8070/MAPPING_SEMANTICS.md). +An ingredient record identifies a practical reagent or formulation used in media. Curation distinguishes salts, hydrates, mixtures, and other forms, preserves raw names as synonyms, and records the convention used when sources are ambiguous. Mapping quality and curation status are separate fields. [Mapping semantics](https://github.com/CultureBotAI/MediaIngredientMech/blob/dfce1c9342ca7aec41b50d0f6db8adb950bb72fe/MAPPING_SEMANTICS.md). The current model includes: @@ -31,13 +31,13 @@ The current model includes: - **Curation events** that record provenance and LLM assistance. - **Component relationships** for ingredients made of other components, with evidence and validation. -See the [schema reference](https://github.com/CultureBotAI/MediaIngredientMech/blob/1f12dd79637f8d518099b31b36fe7482651b8070/docs/SCHEMA_REFERENCE.md), [environmental-context model](https://github.com/CultureBotAI/MediaIngredientMech/blob/1f12dd79637f8d518099b31b36fe7482651b8070/docs/schema/environmental_context.md), and [component model](https://github.com/CultureBotAI/MediaIngredientMech/blob/1f12dd79637f8d518099b31b36fe7482651b8070/docs/stock_components.md). +See the [schema reference](https://github.com/CultureBotAI/MediaIngredientMech/blob/dfce1c9342ca7aec41b50d0f6db8adb950bb72fe/docs/SCHEMA_REFERENCE.md), [environmental-context model](https://github.com/CultureBotAI/MediaIngredientMech/blob/dfce1c9342ca7aec41b50d0f6db8adb950bb72fe/docs/schema/environmental_context.md), and [component model](https://github.com/CultureBotAI/MediaIngredientMech/blob/dfce1c9342ca7aec41b50d0f6db8adb950bb72fe/docs/stock_components.md). ## Curation Workflow Curators compare upstream recipe changes with the tracked ingredient corpus, make scoped updates with provenance, and validate ontology identifiers and labels through OAK/OLS. Ingredient occurrence counts help prioritize unmapped records. Validated mapping artifacts can then support coordinated downstream updates to [CultureMech](/culturemech/). -The former CultureMech collection writers are retired because their aggregate projections could overwrite ingredient curation. Current guidance is to review upstream changes and apply scoped updates to MIM-owned records. [Current workflow and migration status](https://github.com/CultureBotAI/MediaIngredientMech/blob/1f12dd79637f8d518099b31b36fe7482651b8070/README.md#use-the-curated-corpus). +The former CultureMech collection writers are retired because their aggregate projections could overwrite ingredient curation. Current guidance is to review upstream changes and apply scoped updates to MIM-owned records. [Current workflow and migration status](https://github.com/CultureBotAI/MediaIngredientMech/blob/dfce1c9342ca7aec41b50d0f6db8adb950bb72fe/README.md#use-the-curated-corpus). ## Getting Started @@ -59,20 +59,20 @@ just curate just report ``` -These are the repository's documented commands. See the [curation guide](https://github.com/CultureBotAI/MediaIngredientMech/blob/1f12dd79637f8d518099b31b36fe7482651b8070/docs/CURATION_GUIDE.md) and [role-curation workflow](https://github.com/CultureBotAI/MediaIngredientMech/blob/1f12dd79637f8d518099b31b36fe7482651b8070/docs/ROLE_CURATION_WORKFLOW.md) for record editing and validation. +These are the repository's documented commands. See the [curation guide](https://github.com/CultureBotAI/MediaIngredientMech/blob/dfce1c9342ca7aec41b50d0f6db8adb950bb72fe/docs/CURATION_GUIDE.md) and [role-curation workflow](https://github.com/CultureBotAI/MediaIngredientMech/blob/dfce1c9342ca7aec41b50d0f6db8adb950bb72fe/docs/ROLE_CURATION_WORKFLOW.md) for record editing and validation. ## Exports and Integration -The project provides YAML records, browser JSON, generated inventories, and SSSOM mappings. SSSOM predicates preserve distinctions between exact, close, broader, and narrower matches. Registry identity mappings and ontology assertions have different meanings; downstream consumers should follow the [mapping contract](https://github.com/CultureBotAI/MediaIngredientMech/blob/1f12dd79637f8d518099b31b36fe7482651b8070/MAPPING_SEMANTICS.md). +The project provides YAML records, browser JSON, generated inventories, SSSOM mappings, and a [standalone KGX ingredient graph](https://github.com/CultureBotAI/MediaIngredientMech/blob/dfce1c9342ca7aec41b50d0f6db8adb950bb72fe/docs/KGX_EXPORT.md). The [reviewed SSSOM release](https://github.com/CultureBotAI/MediaIngredientMech/releases/tag/mim-sssom-2026-09-21) holds 1,763 supported mappings. It keeps the 1,255 withheld mappings in a separate file. An [earlier release](https://github.com/CultureBotAI/MediaIngredientMech/releases/tag/mim-supported-2026-09-21) carries a KGX snapshot limited to supported assertions. SSSOM predicates preserve distinctions between exact, close, broader, and narrower matches. Registry identity mappings and ontology assertions have different meanings; downstream consumers should follow the [mapping contract](https://github.com/CultureBotAI/MediaIngredientMech/blob/dfce1c9342ca7aec41b50d0f6db8adb950bb72fe/MAPPING_SEMANTICS.md). -Deep-research tools help select providers and prepare ingredient research. Their results remain curation proposals until identity and evidence are validated. [Provider workflow](https://github.com/CultureBotAI/MediaIngredientMech/blob/1f12dd79637f8d518099b31b36fe7482651b8070/README.md#deep-research-provider-triage). +Deep-research tools help select providers and prepare ingredient research. Their results remain curation proposals until identity and evidence are validated. [Provider workflow](https://github.com/CultureBotAI/MediaIngredientMech/blob/dfce1c9342ca7aec41b50d0f6db8adb950bb72fe/README.md#deep-research-provider-triage). ## Repository & Documentation - **[Repository](https://github.com/CultureBotAI/MediaIngredientMech)** and **[published site](https://culturebotai.github.io/MediaIngredientMech/)** -- **[Current mapping inventory](https://github.com/CultureBotAI/MediaIngredientMech/blob/1f12dd79637f8d518099b31b36fe7482651b8070/data/curated/ALL_INGREDIENTS.md)** -- **[Workflow guide](https://github.com/CultureBotAI/MediaIngredientMech/blob/1f12dd79637f8d518099b31b36fe7482651b8070/docs/WORKFLOWS.md)** -- **License:** CC0-1.0, as stated in the [repository](https://github.com/CultureBotAI/MediaIngredientMech/blob/1f12dd79637f8d518099b31b36fe7482651b8070/README.md#license) +- **[Current mapping inventory](https://github.com/CultureBotAI/MediaIngredientMech/blob/dfce1c9342ca7aec41b50d0f6db8adb950bb72fe/data/curated/ALL_INGREDIENTS.md)** +- **[Workflow guide](https://github.com/CultureBotAI/MediaIngredientMech/blob/dfce1c9342ca7aec41b50d0f6db8adb950bb72fe/docs/WORKFLOWS.md)** +- **License:** CC0-1.0, as stated in the [repository](https://github.com/CultureBotAI/MediaIngredientMech/blob/dfce1c9342ca7aec41b50d0f6db8adb950bb72fe/README.md#license) --- @@ -80,14 +80,14 @@ Deep-research tools help select providers and prepare ingredient research. Their - **[X-Mech Suite overview](/mechs/)** - All ten Mechs, their shared vocabulary and cross-references, and the culturebotai-claw orchestrator - **[TaxonMech](https://culturebotai.github.io/TaxonMech/)** - Microbial taxa and strains grounded in NCBI Taxonomy, harmonized with GTDB, LPSN and BacDive -- **[HabitatMech](https://culturebotai.github.io/HabitatMech/)** - Habitats harmonized from GOLD, BacDive, PREGO and Madin et al. into ENVO-grounded records +- **[HabitatMech](https://culturebotai.github.io/HabitatMech/)** - Habitats harmonized from GOLD, BacDive, PREGO and Madin et al. into ontology-grounded records - **[CommunityMech](/communitymech/)** - Microbial community interaction modeling - **[TraitMech](https://culturebotai.github.io/TraitMech/)** - Autonomous knowledge factory for microbial ecophysiological traits - **[CellStructureMech](https://culturebotai.github.io/CellStructureMech/)** - Microbial cell structures, between the trait and protein layers - **[ProteinTraitsMech](https://culturebotai.github.io/proteintraitsmech/)** - Protein sequence, structure, and function traits - **[NaturalProductMech](https://culturebotai.github.io/NaturalProductMech/)** - Natural product structures with their producer organisms and gene clusters - **[AntibioticMech](https://culturebotai.github.io/AntibioticMech/)** - Antimicrobial structures harmonizing ChEBI and CARD/ARO -- **[CultureMech](/culturemech/)** - Chemical entity extraction from media recipes (6,286 canonical media) +- **[CultureMech](/culturemech/)** - Chemical entity extraction from media recipes (6,288 canonical media) - **[MicroMediaParam](/resources/#micromediaparam)** - Chemical compound standardization (78% ChEBI coverage) - **[kg-microbe](/kg-microbe/)** - Central knowledge graph for microbial cultivation diff --git a/microgrowagents.md b/microgrowagents.md index eed4515..b4de5f3 100644 --- a/microgrowagents.md +++ b/microgrowagents.md @@ -87,7 +87,7 @@ Organism-Specific Media Recommendation - **[X-Mech Suite overview](/mechs/)** - All ten Mechs, their shared vocabulary and cross-references, and the culturebotai-claw orchestrator - **[TaxonMech](https://culturebotai.github.io/TaxonMech/)** - Microbial taxa and strains grounded in NCBI Taxonomy, harmonized with GTDB, LPSN and BacDive -- **[HabitatMech](https://culturebotai.github.io/HabitatMech/)** - Habitats harmonized from GOLD, BacDive, PREGO and Madin et al. into ENVO-grounded records +- **[HabitatMech](https://culturebotai.github.io/HabitatMech/)** - Habitats harmonized from GOLD, BacDive, PREGO and Madin et al. into ontology-grounded records - **[CommunityMech](/communitymech/)** - Microbial community interaction modeling - **[TraitMech](https://culturebotai.github.io/TraitMech/)** - Autonomous knowledge factory for microbial ecophysiological traits - **[CellStructureMech](https://culturebotai.github.io/CellStructureMech/)** - Microbial cell structures, between the trait and protein layers @@ -95,7 +95,7 @@ Organism-Specific Media Recommendation - **[NaturalProductMech](https://culturebotai.github.io/NaturalProductMech/)** - Natural product structures with their producer organisms and gene clusters - **[AntibioticMech](https://culturebotai.github.io/AntibioticMech/)** - Antimicrobial structures harmonizing ChEBI and CARD/ARO - **[MediaIngredientMech](/mediaingredientmech/)** - LLM-assisted ingredient ontology mapping -- **[CultureMech](/culturemech/)** - Autonomous knowledge factory for microbial culture media (6,286 canonical media) +- **[CultureMech](/culturemech/)** - Autonomous knowledge factory for microbial culture media (6,288 canonical media) - **[MicroGrowLink](/resources/#microgrowlink)** - Graph-based growth media prediction - **[kg-microbe](/kg-microbe/)** - Central knowledge graph for microbial cultivation diff --git a/research.md b/research.md index 6ee8a6c..8834e23 100644 --- a/research.md +++ b/research.md @@ -107,7 +107,7 @@ Our research goals are enabled by a suite of interconnected software tools: - [MATE-LLM](/resources/#mate-llm) - Literature protocol extraction with LLMs *(private repo, public release planned)* ### For Culture Optimization -- [CultureMech](/culturemech/) - Microbial culture media knowledge graph, 6,286 canonical media from 15,878 curated recipes +- [CultureMech](/culturemech/) - Microbial culture media knowledge graph, 6,288 canonical media from 15,878 curated recipes - [MediaIngredientMech](/mediaingredientmech/) - LLM-assisted ingredient curation and ontology mapping - [MicroMediaParam](/resources/#micromediaparam) - Media composition analysis and mapping - [microbe-rules](/resources/#microbe-rules-machine-learning-models-for-microbial-data) - ML model optimization and comparison diff --git a/resources.md b/resources.md index d440852..c905ac3 100644 --- a/resources.md +++ b/resources.md @@ -152,7 +152,7 @@ AI Predictions (MicroGrowAgents, MicroGrowLink) ### CultureMech - Autonomous Knowledge Factory for Culture Media **[Dedicated Page](/culturemech/)** | **[GitHub Repository](https://github.com/CultureBotAI/CultureMech)** | **[Web Interface](https://culturebotai.github.io/CultureMech/)** | CC0-1.0 License -15,878 curated culture media recipes from major international repositories, deduplicated into 6,286 canonical media, with LinkML schema, ingredient ontology grounding, and browser-based exploration. +15,878 curated culture media recipes from major international repositories, deduplicated into 6,288 canonical media, with LinkML schema, ingredient ontology grounding, and browser-based exploration. **What it does**: Curates source-specific recipes, grounds ingredient identifiers, validates records, and generates deduplicated media and browser outputs. @@ -163,7 +163,7 @@ AI Predictions (MicroGrowAgents, MicroGrowLink) ### MediaIngredientMech - LLM-Assisted Ingredient Curation **[Dedicated Page](/mediaingredientmech/)** | **[GitHub Repository](https://github.com/CultureBotAI/MediaIngredientMech)** | **[Web Interface](https://culturebotai.github.io/MediaIngredientMech/)** | CC0-1.0 License -2,951 curated ingredient records, 2,616 of them mapped (89% coverage), with LLM-assisted workflows for standardizing microbial cultivation ingredient data. Uses Large Language Models to intelligently map ingredient names to standardized ontology terms. +2,953 curated ingredient records, 2,611 of them mapped (88% coverage), with LLM-assisted workflows for standardizing microbial cultivation ingredient data. Uses Large Language Models to intelligently map ingredient names to standardized ontology terms. **What it does**: Curates ingredient identity, ChEBI/FOODON mappings, ENVO environmental context, and provenance through validated workflows with human oversight. Scoped updates preserve MIM-owned curation; see the dedicated page for supported commands. @@ -174,7 +174,7 @@ AI Predictions (MicroGrowAgents, MicroGrowLink) ### CommunityMech - Microbial Community Interaction Modeling **[Dedicated Page](/communitymech/)** | **[GitHub Repository](https://github.com/CultureBotAI/CommunityMech)** | **[Web Interface](https://culturebotai.github.io/CommunityMech/)** | BSD-3-Clause License -392 curated communities across 16 categories, modeled in LinkML with evidence-based ecological interactions for consortium design and multi-organism cultivation. +422 curated communities across 15 categories, modeled in LinkML with evidence-based ecological interactions for consortium design and multi-organism cultivation. **What it does**: Provides structured representation of community composition, syntrophic interactions, and cultivation requirements for multi-species systems. @@ -187,16 +187,16 @@ AI Predictions (MicroGrowAgents, MicroGrowLink) ### TraitMech - Microbial Ecophysiological Traits **[GitHub Repository](https://github.com/CultureBotAI/TraitMech)** | **[Web Interface](https://culturebotai.github.io/TraitMech/)** | CC0-1.0 License -Autonomous knowledge factory for microbial ecophysiological traits, seeded from METPO and curated incrementally — 723 trait records across 10 categories; 427 are marked REVIEWED and 479 carry causal graphs. +Autonomous knowledge factory for microbial ecophysiological traits, seeded from METPO and curated incrementally — 763 trait records across 10 categories; 427 are marked REVIEWED and 519 carry causal graphs. -**What it does**: Standardizes the trait vocabulary used to describe microbial growth and ecology, and links each trait to its evidence and to kg-microbe. +**What it does**: Standardizes the trait vocabulary used to describe microbial growth and ecology, and links traits to their evidence and, where a match exists, to kg-microbe. --- ### ProteinTraitsMech - Protein Sequence & Structure Traits **[GitHub Repository](https://github.com/CultureBotAI/proteintraitsmech)** | **[Web Interface](https://culturebotai.github.io/proteintraitsmech/)** | CC0-1.0 License -Autonomous knowledge factory for protein sequence, structure, and function traits — 429,291 LinkML-validated records from 34 sources, one YAML per trait, with evidence-backed causal graphs. +Autonomous knowledge factory for protein sequence, structure, and function traits — 429,293 LinkML-validated records from 34 sources, one YAML per trait. Most are imported from those sources and not yet reviewed. Reviewed records carry evidence-backed causal graphs. **What it does**: Extends trait curation from the organism level to the molecular level, connecting protein features to the phenotypes they help explain. Explore the [corpus, protein and ESM-2 sequence maps](https://culturebotai.github.io/proteintraitsmech/map.html). @@ -205,7 +205,7 @@ Autonomous knowledge factory for protein sequence, structure, and function trait ### CellStructureMech - Microbial Cell Structures **[GitHub Repository](https://github.com/CultureBotAI/CellStructureMech)** | **[Web Interface](https://culturebotai.github.io/CellStructureMech/)** | CC0-1.0 License (authored content; redistributed UniProt and Complex Portal material is CC BY 4.0) -421 structure records across 13 categories — organelles, envelope layers, appendages, microcompartments and multi-protein complexes — 367 of them grounded in GO cellular component. +542 structure records across 13 categories — organelles, envelope layers, appendages, microcompartments and multi-protein complexes — 475 of them grounded in GO cellular component. **What it does**: Occupies the layer between traits and proteins, recording what a structure is made of, which organisms have it, what it does, and the causal mechanism by which it does so. @@ -220,7 +220,7 @@ Autonomous knowledge factory for protein sequence, structure, and function trait **What it does**: Gives the fleet one record per habitat concept, so that isolation sources expressed differently by each upstream database resolve to a single identity. -**Related**: Hands the one overlapping concept, BTO:0000316 culture medium, to [CultureMech](/culturemech/) rather than curating it twice. +**Related**: Grounds GOLD's culture-media habitat to BTO:0000316 culture medium and points to [CultureMech](/culturemech/) for related curation. --- @@ -229,7 +229,7 @@ Autonomous knowledge factory for protein sequence, structure, and function trait 2,939 antimicrobial chemical structures, 2,669 ontology-grounded, harmonizing ChEBI's antimicrobial roles with CARD/ARO molecules, targets and resistance determinants. -**What it does**: Records one entry per antimicrobial structure, carrying its mode of action, molecular targets and the evidence for both where curation has supplied them — 454 records have a mode of action and 282 a molecular target so far — and places all 2,939 on a chemical map by molecular fingerprint. +**What it does**: Records one entry per antimicrobial structure, carrying its mode of action, molecular targets and the evidence for both where sources or curation have supplied them — 454 records have a mode of action and 282 a molecular target so far — and places all 2,939 on a chemical map by molecular fingerprint. --- @@ -247,7 +247,7 @@ Autonomous knowledge factory for protein sequence, structure, and function trait 625,960 taxon records at species level and below, with 100,745 distinct listed strains, resolving NCBI Taxonomy, GTDB, LPSN and BacDive onto one NCBI-grounded identity. -**What it does**: Supplies the taxon identity the rest of the fleet refers to. Its 21,071 listed strains with genome links carry NCBI, GTDB, BV-BRC/PATRIC, IMG or AllTheBacteria identifiers; taxon pages also show StrainInfo references and the supporting evidence. Higher taxa appear only in a record's lineage, never as records of their own. +**What it does**: Serves as the taxonomic counterpart of the other Mechs. Its 21,071 listed strains with genome links carry NCBI, GTDB, BV-BRC/PATRIC, IMG or AllTheBacteria identifiers; taxon pages also show StrainInfo references and the supporting evidence. Higher taxa appear only in a record's lineage, never as records of their own. --- @@ -399,7 +399,7 @@ Comprehensive chemical compound knowledge graph mapping pipeline for microbial g #### CultureMech **[Dedicated Page](/culturemech/)** | **[GitHub Repository](https://github.com/CultureBotAI/CultureMech)** | **[Web Interface](https://culturebotai.github.io/CultureMech/)** | CC0-1.0 License -15,878 curated culture media recipes deduplicated into 6,286 canonical media, with chemical entity extraction and ontology grounding. Part of the X-Mech suite of autonomous knowledge factories. +15,878 curated culture media recipes deduplicated into 6,288 canonical media, with chemical entity extraction and ontology grounding. Part of the X-Mech suite of autonomous knowledge factories. **→ See the [dedicated CultureMech page](/culturemech/) for full documentation, use cases, and examples.** diff --git a/tests/test_fleet_page.py b/tests/test_fleet_page.py index 32535e8..33a1421 100644 --- a/tests/test_fleet_page.py +++ b/tests/test_fleet_page.py @@ -400,5 +400,49 @@ def test_the_card_parser_reads_every_member(self): stated = check_cards.cards((ROOT / "_fleet/mechs_template.md").read_text()) self.assertEqual(sorted(stated), sorted(snapshot["mechs"])) +class RefreshProvenanceTests(unittest.TestCase): + """The derived numbers must all come from one set of checkouts (#85). + + The census, the card stats and the site audit are written by different + scripts on what should be the same run. Before any of them recorded a + revision, a partial refresh left the census at 364 CommunityMech records + and the stats at 396, and nothing noticed. Each now names the commit it + read, so a partial rerun shows up here as a disagreement. + """ + + def setUp(self): + self.census = json.loads((ROOT / "_fleet/data/prefix_census.json").read_text()) + stats = json.loads((ROOT / "_fleet/data/mech_stats.json").read_text()) + self.stats = {m["mech"]: m for m in stats["mechs"]} + audit = json.loads((ROOT / "_fleet/data/site_audit.json").read_text()) + self.audit = {r["repo"]: r for r in audit["repositories"]} + + def test_every_count_names_a_clean_revision(self): + for mech, entry in self.stats.items(): + with self.subTest(mech=mech): + revision = entry.get("source_revision") + self.assertRegex(revision or "", r"^[0-9a-f]{40}$", + "missing, or read from a checkout with uncommitted changes") + + def test_census_and_stats_read_the_same_revisions(self): + revisions = self.census.get("_revisions", {}) + for mech in roots.ORDER: + with self.subTest(mech=mech): + self.assertEqual(revisions.get(mech), self.stats[mech]["source_revision"]) + + def test_census_and_stats_count_the_same_records(self): + # Same globs, same revision, so the same files. A difference means one + # of the two was rerun without the other. + for mech in roots.ORDER: + with self.subTest(mech=mech): + self.assertEqual(self.census[mech]["files"], self.stats[mech]["records"]) + + def test_the_audit_pins_the_revisions_the_stats_counted(self): + for mech, entry in self.stats.items(): + with self.subTest(mech=mech): + self.assertIn(entry["repo"], self.audit, "Mech missing from site_audit.json") + self.assertEqual(self.audit[entry["repo"]]["sha"], entry["source_revision"]) + + if __name__ == '__main__': unittest.main() From 166523126b6398115128da74ff485cd70898bfbb Mon Sep 17 00:00:00 2001 From: "marcin p. joachimiak" <4625870+realmarcin@users.noreply.github.com> Date: Thu, 24 Sep 2026 22:20:57 -0700 Subject: [PATCH 05/16] Address the adversarial review of the refresh Provenance that can actually tell. roots.revision() judged a checkout clean from git status, which never lists ignored files, hides untracked ones under status.showUntrackedFiles=no, and says nothing about paths a sparse checkout leaves out, while record_paths() globs the disk. It now compares the counted records with the files git tracks under the same globs, scopes status to the record directories and src/ so an unrelated scratch file is not "dirty" (#121), runs git without optional locks in the shared checkouts (#123), and returns None for a directory inside another repository instead of that repository's HEAD (#124). Each scan takes the revision before reading and stops if HEAD moves (#122), reads records in a with block (#135), and stops on an unreadable record instead of skipping it and reporting the full count (#127). Coverage. build_subsets.py records its revisions too; the tests now require them to equal the census's, fleet_data.json to equal build_data.build() over the committed inputs (#126), and the audit's CLAW pin, card figures, merged PRs and repository set to match (#128). RevisionTests covers clean, modified, hidden untracked, ignored, sparse-excluded and nested cases; SubsetDeterminismTests runs build_subsets.py under four hash seeds on a fixture with tied prefixes (#129). Each was mutation-tested: reverting the #107 sort, the tracked-set comparison or the top-level check turns its test red. Data. CommunityMech's four data/isolates records have no published page, so they now get no record link instead of a 404 (#139). Rerun at the same pins: only CommunityMech's record lists changed; the census, stats, manifest and audit are byte-identical. Content. The hub panel names the four Mechs that share only the namespace (#140); the CommunityMech to CultureMech entry cites CultureMech's import and backfill scripts (#141); the resources.md diagram shows only MediaIngredientMech feeding kg-microbe (#142); CommunityMech's 16-category landing tile is explained (#143); the arrow legend covers scope hand-offs (#145). Skill. CLAW is cloned from GitHub at its pin and the manifest refreshed before anything reads it (#130, #138); the shared checkouts get their own variable (#133); the audit fan-out has a canary (#136); audit SHAs come from the pins (#125); the gate wording allows documented post-pin drift (#134). Closes #121. Closes #122. Closes #123. Closes #124. Closes #125. Closes #126. Closes #127. Closes #128. Closes #129. Closes #130. Closes #133. Closes #134. Closes #135. Closes #136. Closes #138. Closes #139. Closes #140. Closes #141. Closes #142. Closes #143. Closes #145. Co-Authored-By: Claude Opus 5.5 (1M context) --- .claude/skills/update-xmech-page/SKILL.md | 91 +++++++----- _fleet/README.md | 4 +- _fleet/data/fleet_data.json | 2 +- _fleet/data/subsets_summary.json | 37 +++-- _fleet/fleet_fragment.html | 6 +- _fleet/mechs_template.md | 6 +- assets/fleet/cells/CommunityMech--CHEBI.json | 2 +- assets/fleet/cells/CommunityMech--ENVO.json | 2 +- assets/fleet/cells/CommunityMech--GO.json | 2 +- assets/fleet/cells/CommunityMech--GTDB.json | 2 +- .../fleet/cells/CommunityMech--NCBITaxon.json | 2 +- .../edges/CommunityMech--AntibioticMech.json | 2 +- .../CommunityMech--CellStructureMech.json | 2 +- .../edges/CommunityMech--CultureMech.json | 2 +- .../CommunityMech--MediaIngredientMech.json | 2 +- .../CommunityMech--NaturalProductMech.json | 2 +- .../CommunityMech--ProteinTraitsMech.json | 2 +- .../fleet/edges/CommunityMech--TraitMech.json | 2 +- .../edges/HabitatMech--CommunityMech.json | 2 +- communitymech.md | 2 +- mechs.md | 14 +- resources.md | 12 +- scripts/fleet/build_subsets.py | 18 ++- scripts/fleet/mech_stats.py | 20 ++- scripts/fleet/prefix_census.py | 24 +-- scripts/fleet/roots.py | 106 +++++++++++-- tests/test_fleet_page.py | 139 ++++++++++++++++++ 27 files changed, 388 insertions(+), 119 deletions(-) diff --git a/.claude/skills/update-xmech-page/SKILL.md b/.claude/skills/update-xmech-page/SKILL.md index 0eccaee..e643a5c 100644 --- a/.claude/skills/update-xmech-page/SKILL.md +++ b/.claude/skills/update-xmech-page/SKILL.md @@ -56,25 +56,44 @@ moves for two reasons at once. Work from the site root. Put the snapshot and logs in the session scratchpad, here `$SNAP`. -### 1. Branch and pin +### 1. Branch, locate the checkouts, pin CLAW and refresh the manifest ```bash git switch -c update/xmech-refresh-$(date +%Y%m%d) main +SRC=$(python3 -c 'import sys; sys.path.insert(0, "scripts/fleet"); import roots; print(roots.MECHS_ROOT)') ``` -For each Mech in `_fleet/data/manifest.json` plus `culturebotai-claw`: -`git -C "$MECHS_ROOT/" fetch -q origin`, take `origin/main`, and -cross-check it against `gh api repos/CultureBotAI//commits/main --jq .sha`. -The repository name is not always the Mech name (`proteintraitsmech`). Write the -pins to `$SNAP/revisions.json` with the pin time. Corpora move within minutes, so -pin once and do not re-pin mid-run. +`SRC` is where the shared Mech checkouts live; `roots.py` holds the default and +`MECHS_ROOT` overrides it. Keep the two names apart: from step 3 on, +`MECHS_ROOT=$SNAP/mechs` is set per command so the scripts read the snapshot, +and it must never leak into the commands that read `SRC` (#133). + +CLAW comes first, because its manifest decides which Mechs to pin and +`mech_stats.py` reads that list on import (#138). CLAW is not under `SRC` and any +local copy may be shallow, so clone it from GitHub at its pin (#130): + +```bash +claw=$(gh api repos/CultureBotAI/culturebotai-claw/commits/main --jq .sha) +git init -q "$SNAP/claw" +git -C "$SNAP/claw" fetch -q --depth 1 https://github.com/CultureBotAI/culturebotai-claw.git "$claw" +git -C "$SNAP/claw" -c advice.detachedHead=false checkout -q FETCH_HEAD +python3 scripts/fleet/refresh_manifest.py --claw-root "$SNAP/claw" --check # say what changed +python3 scripts/fleet/refresh_manifest.py --claw-root "$SNAP/claw" +``` + +Then, for each Mech in the refreshed `_fleet/data/manifest.json`: +`git -C "$SRC/" fetch -q origin`, take `origin/main`, and cross-check it +against `gh api repos/CultureBotAI//commits/main --jq .sha`. The +repository name is not always the Mech name (`proteintraitsmech`). Write the +pins and CLAW's to `$SNAP/revisions.json` with the pin time. Corpora move within +minutes, so pin once and do not re-pin mid-run. ### 2. Snapshot at the pins A sparse, shared clone per Mech, checked out detached at its pin: ```bash -git clone -q --shared --no-checkout "$MECHS_ROOT/$m" "$SNAP/mechs/$m" +git clone -q --shared --no-checkout "$SRC/$m" "$SNAP/mechs/$m" git -C "$SNAP/mechs/$m" sparse-checkout set --cone src git -C "$SNAP/mechs/$m" checkout -q --detach "$sha" ``` @@ -83,23 +102,23 @@ The directories each Mech needs are its `roots.RECORD_GLOBS` directories (plus `mech_stats.EXTRA_GLOBS` for Mechs outside the census), `src` for the schema that `mech_stats.py` reads, and HabitatMech's `pages/habitats`, which `build_subsets.py` matches record links against. About 3 GB and a million -files; TaxonMech and ProteinTraitsMech are most of it. +files; TaxonMech and ProteinTraitsMech are most of it. The detached checkout +works although the pin exists only in the source's remote-tracking refs, +because a shared clone borrows the source's whole object store. macOS ships bash 3.2: no associative arrays, so write the per-Mech directory map as a `case`, not `declare -A`. ### 3. Free checks before any scan -With `MECHS_ROOT=$SNAP/mechs`: - -- `roots.revision(m)` equals the pin and is not `+dirty`, for every Mech; -- every path `roots.record_paths(m)` returns is a file git tracks at the pin. - Compare against `git ls-tree -r -z --name-only ` and NFC-normalize both - sides. **Without `-z`, git quotes non-ASCII paths** and every `α` or `ß` in a - filename reads as a mismatch. - -These catch a wrong pin, a sparse set missing a directory, and a glob sweeping -up files that are not records, before four minutes of scanning. +With `MECHS_ROOT=$SNAP/mechs`, `roots.revision(m)` must equal the pin with no +`+dirty`, for every Mech. It compares the records the globs find with the files +git tracks at HEAD under the same globs, so it fails on a wrong pin, on a sparse +set that left out a record directory, and on untracked or ignored files the +globs would count (#121). If you compare paths by hand, use +`git ls-tree -r -z --name-only ` and NFC-normalize both sides: **without +`-z`, git quotes non-ASCII paths** and every `α` or `ß` in a filename reads as a +mismatch. ### 4. Pipeline, canary first @@ -111,24 +130,21 @@ MECHS_ROOT=$SNAP/mechs python3 scripts/fleet/prefix_census.py # ~2-4 min MECHS_ROOT=$SNAP/mechs python3 scripts/fleet/build_subsets.py # ~2-4 min python3 scripts/fleet/build_data.py MECHS_ROOT=$SNAP/mechs python3 scripts/fleet/mech_stats.py # needs gh -python3 scripts/fleet/refresh_manifest.py --claw-root "$SNAP/claw" # CLAW cloned at its pin ``` After each, check the side effects, not the exit code: the file changed, it -parses, every census Mech has a row, `_revisions` equals the pins, `files` per -Mech equals the step 3 count, `mech_stats.json` names the same revisions and -counts. Run `build_subsets.py` twice and compare bytes; since #107 two runs over -the same snapshot must be identical, and a difference means a new ordering leak. +parses, every census Mech has a row, `_revisions` equals the pins in both the +census and `subsets_summary.json`, `files` per Mech equals the record count at +the pin, and `mech_stats.json` names the same revisions and counts. Each scan +records its revision before reading and stops if HEAD moves during the read +(#122), and stops on an unreadable record rather than skipping it (#127). +Since #107, two `build_subsets.py` runs over the same snapshot must be +byte-identical; `SubsetDeterminismTests` checks that on a fixture. Long scripts piped to `tail` print nothing until they exit. Check the process, not the empty log. Exit codes through pipes are the last command's, so use `${PIPESTATUS[0]}` or write to a log file. -Do not run the scans with `-W error::ResourceWarning`. The census opens every -record without closing it (#118), so each of ~450,000 files prints a traceback: -tens of megabytes of log and a much slower scan. The census writes only after -the scan finishes, so killing such a run leaves the committed file untouched. - ### 5. Re-check the hand-curated layer Every hand-curated claim, for every Mech, against its live site and its repo at @@ -140,6 +156,13 @@ independent skeptic per auditor who re-derives each proposed change and tries to refute it. Apply only changes that survive, with one editor making all the edits so shared files do not conflict. +Canary this fan-out too (#136). Run one auditor and its skeptic on one small +Mech first, and check that the claims come back with verbatim, unique locators, +evidence as a URL or `path@sha` plus an excerpt, and replacements that read +correctly in place. Then fan out. Findings the skeptics raise that the auditors +missed have been verified by nobody; give them their own verification round +before editing anything on their strength. + Traps that have produced wrong figures here: - **Meta-refresh roots.** Several `https://culturebotai.github.io//` roots @@ -187,12 +210,14 @@ either being stale alone. ### 7. Provenance Rewrite `_fleet/data/site_audit.json` for the run: per repository the pinned -`sha` and its commit date, the URL each card figure is read from, the figure, the +`sha` from `$SNAP/revisions.json` (not from `mech_stats.json`, or the audit-pin +test compares a value with itself, #125) and its commit date, the URL each card figure is read from, the figure, the sha256 of the fetched HTML and of any data file, merged PRs, and short notes on how the site figure relates to the repo count. Set `checked_at_utc`, `local_date`, `pinned_at_utc` and `scope`. Derive the mechanical fields rather -than typing them: the figure through `check_cards.published()`, merged PRs and -revisions from `mech_stats.json`, commit dates from the pins. The provenance tests require its SHAs to equal the +than typing them: the figure through `check_cards.published()`, merged PRs from +`mech_stats.json`, SHAs and commit dates from the pins, and assert that the +pins equal the stats' `source_revision` before writing. The provenance tests require its SHAs to equal the stats' `source_revision`. `../CLAUDE.md` is untracked and above the repository, but it records when the @@ -206,7 +231,7 @@ python3 scripts/fleet/assemble_page.py python3 -m unittest discover -s tests -v python3 scripts/fleet/assemble_page.py --check python3 scripts/fleet/refresh_manifest.py --claw-root "$SNAP/claw" --check -python3 scripts/fleet/check_cards.py # must report 0 drifted +python3 scripts/fleet/check_cards.py # 0 drifted, except sites that moved past their pin (below) ``` Rerun `check_cards.py` immediately before opening the PR and again before any diff --git a/_fleet/README.md b/_fleet/README.md index 8fd4ef6..7a635d6 100644 --- a/_fleet/README.md +++ b/_fleet/README.md @@ -94,7 +94,9 @@ CellStructureMech, AntibioticMech, HabitatMech, CommunityMech, ProteinTraitsMech hash routes) and to the record's source file on GitHub for CultureMech, MediaIngredientMech and NaturalProductMech in the existing census indexes, although CultureMech (`pages/media/`) and NaturalProductMech (`pages//`) -now publish per-record pages. +now publish per-record pages. CommunityMech's four `data/isolates` records have no +published page, so they get no record link and are left out of the record lists +and overlaps; the census still counts them. NaturalProductMech and TaxonMech both publish browse sites linked from their cards; these links are separate from the historical census's record-link routes. diff --git a/_fleet/data/fleet_data.json b/_fleet/data/fleet_data.json index bbae8cf..05f26d0 100644 --- a/_fleet/data/fleet_data.json +++ b/_fleet/data/fleet_data.json @@ -1 +1 @@ -{"order":["HabitatMech","CommunityMech","TraitMech","CellStructureMech","ProteinTraitsMech","NaturalProductMech","AntibioticMech","MediaIngredientMech","CultureMech"],"voc":["NCBITaxon","CHEBI","GO","UniProt","ENVO","UBERON","InterPro","PDB","CAS","METPO","KEGG","FOODON","PATO","Pfam","RHEA","ARO","BTO","MIBiG","NPAtlas","GTDB","PMID","DOI"],"heat":{"HabitatMech":{"CHEBI":24,"NCBITaxon":13227,"GO":7,"ENVO":3368,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":4,"UBERON":1123,"FOODON":198,"BTO":1367,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":516,"DOI":116},"CommunityMech":{"CHEBI":2971,"NCBITaxon":4253,"GO":1537,"ENVO":538,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":10,"FOODON":0,"BTO":0,"GTDB":2037,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":7320,"DOI":1223},"TraitMech":{"CHEBI":673,"NCBITaxon":996,"GO":886,"ENVO":22,"METPO":3617,"ARO":0,"UniProt":399,"InterPro":115,"Pfam":0,"RHEA":0,"PDB":0,"PATO":99,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":621,"DOI":7190},"CellStructureMech":{"CHEBI":65,"NCBITaxon":1438,"GO":11688,"ENVO":0,"METPO":14,"ARO":0,"UniProt":337,"InterPro":206,"Pfam":22,"RHEA":0,"PDB":277,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":698,"DOI":6636},"ProteinTraitsMech":{"CHEBI":374424,"NCBITaxon":358320,"GO":421586,"ENVO":0,"METPO":244,"ARO":397717,"UniProt":658574,"InterPro":1480044,"Pfam":521966,"RHEA":613456,"PDB":235957,"PATO":124,"UBERON":43,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":245,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":657527,"DOI":193845},"NaturalProductMech":{"CHEBI":1659,"NCBITaxon":13960,"GO":0,"ENVO":0,"METPO":0,"ARO":0,"UniProt":613,"InterPro":0,"Pfam":0,"RHEA":14,"PDB":0,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":10133,"NPAtlas":1756,"PMID":5703,"DOI":8437},"AntibioticMech":{"CHEBI":22104,"NCBITaxon":1085,"GO":3,"ENVO":0,"METPO":0,"ARO":16653,"UniProt":278,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":6,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":1823,"MIBiG":0,"NPAtlas":0,"PMID":1207,"DOI":216},"MediaIngredientMech":{"CHEBI":8220,"NCBITaxon":1,"GO":0,"ENVO":110,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":23,"FOODON":273,"BTO":3,"GTDB":0,"KEGG":61,"CAS":727,"MIBiG":0,"NPAtlas":0,"PMID":29,"DOI":9},"CultureMech":{"CHEBI":160678,"NCBITaxon":63,"GO":0,"ENVO":13,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":138,"FOODON":223,"BTO":0,"GTDB":0,"KEGG":1406,"CAS":1,"MIBiG":0,"NPAtlas":0,"PMID":68,"DOI":76}},"cells":{"HabitatMech--BTO":587,"HabitatMech--CHEBI":11,"HabitatMech--ENVO":1296,"HabitatMech--FOODON":85,"HabitatMech--GO":2,"HabitatMech--NCBITaxon":896,"HabitatMech--PATO":3,"HabitatMech--UBERON":704,"CommunityMech--CHEBI":361,"CommunityMech--ENVO":412,"CommunityMech--GO":398,"CommunityMech--GTDB":370,"CommunityMech--NCBITaxon":426,"CommunityMech--UBERON":10,"TraitMech--CHEBI":183,"TraitMech--ENVO":14,"TraitMech--GO":292,"TraitMech--InterPro":61,"TraitMech--METPO":749,"TraitMech--NCBITaxon":484,"TraitMech--PATO":49,"TraitMech--UniProt":182,"CellStructureMech--CHEBI":24,"CellStructureMech--GO":535,"CellStructureMech--InterPro":33,"CellStructureMech--METPO":5,"CellStructureMech--NCBITaxon":531,"CellStructureMech--PDB":19,"CellStructureMech--Pfam":8,"CellStructureMech--UniProt":65,"ProteinTraitsMech--ARO":7452,"ProteinTraitsMech--CHEBI":30122,"ProteinTraitsMech--GO":110744,"ProteinTraitsMech--InterPro":120090,"ProteinTraitsMech--KEGG":231,"ProteinTraitsMech--METPO":119,"ProteinTraitsMech--NCBITaxon":98697,"ProteinTraitsMech--PATO":81,"ProteinTraitsMech--PDB":51718,"ProteinTraitsMech--Pfam":107455,"ProteinTraitsMech--RHEA":29550,"ProteinTraitsMech--UBERON":43,"ProteinTraitsMech--UniProt":159595,"NaturalProductMech--CHEBI":405,"NaturalProductMech--MIBiG":3115,"NaturalProductMech--NCBITaxon":3115,"NaturalProductMech--NPAtlas":1740,"NaturalProductMech--RHEA":1,"NaturalProductMech--UniProt":102,"AntibioticMech--ARO":568,"AntibioticMech--CAS":1797,"AntibioticMech--CHEBI":2814,"AntibioticMech--GO":3,"AntibioticMech--NCBITaxon":163,"AntibioticMech--PDB":5,"AntibioticMech--UniProt":47,"MediaIngredientMech--BTO":1,"MediaIngredientMech--CAS":287,"MediaIngredientMech--CHEBI":2232,"MediaIngredientMech--ENVO":26,"MediaIngredientMech--FOODON":99,"MediaIngredientMech--KEGG":58,"MediaIngredientMech--NCBITaxon":1,"MediaIngredientMech--UBERON":10,"CultureMech--CAS":1,"CultureMech--CHEBI":6125,"CultureMech--ENVO":12,"CultureMech--FOODON":203,"CultureMech--KEGG":329,"CultureMech--NCBITaxon":30,"CultureMech--UBERON":72},"vocab_edges":[{"a":"HabitatMech","b":"CommunityMech","n":313,"by":{"NCBITaxon":265,"ENVO":42,"UBERON":4,"CHEBI":2},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"ENVO:00001998","label":"soil"},{"id":"ENVO:01001001","label":"plant-associated environment"}]},{"a":"HabitatMech","b":"TraitMech","n":122,"by":{"NCBITaxon":115,"ENVO":4,"PATO":2,"CHEBI":1},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"HabitatMech","b":"CellStructureMech","n":41,"by":{"NCBITaxon":41},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1117","label":"Cyanobacteriota"}]},{"a":"HabitatMech","b":"ProteinTraitsMech","n":1250,"by":{"NCBITaxon":1234,"UBERON":12,"CHEBI":2,"GO":2},"ex":[{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1869227","label":"bacterium"}]},{"a":"HabitatMech","b":"NaturalProductMech","n":312,"by":{"NCBITaxon":312},"ex":[{"id":"NCBITaxon:56","label":"Sorangium cellulosum"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1931","label":"Streptomyces sp."}]},{"a":"HabitatMech","b":"AntibioticMech","n":32,"by":{"NCBITaxon":32},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:573","label":"Klebsiella pneumoniae"}]},{"a":"HabitatMech","b":"MediaIngredientMech","n":22,"by":{"ENVO":15,"UBERON":4,"CHEBI":3},"ex":[{"id":"ENVO:00002149","label":"sea water"},{"id":"ENVO:00001998","label":"soil"},{"id":"ENVO:00002263","label":"garden soil"}]},{"a":"HabitatMech","b":"CultureMech","n":25,"by":{"NCBITaxon":13,"ENVO":7,"UBERON":4,"FOODON":1},"ex":[{"id":"UBERON:0000948","label":"heart"},{"id":"UBERON:0000955","label":"brain"},{"id":"UBERON:0000178","label":"blood"}]},{"a":"CommunityMech","b":"TraitMech","n":157,"by":{"CHEBI":61,"NCBITaxon":61,"GO":35},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:15379","label":"dioxygen"},{"id":"GO:0015977","label":"carbon fixation"}]},{"a":"CommunityMech","b":"CellStructureMech","n":60,"by":{"NCBITaxon":36,"CHEBI":13,"GO":11},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:2157","label":"Archaea"},{"id":"NCBITaxon:562","label":"Escherichia coli"}]},{"a":"CommunityMech","b":"ProteinTraitsMech","n":698,"by":{"CHEBI":280,"NCBITaxon":227,"GO":190,"UBERON":1},"ex":[{"id":"CHEBI:30089","label":"acetate"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"GO:0015979","label":"photosynthesis"}]},{"a":"CommunityMech","b":"NaturalProductMech","n":129,"by":{"NCBITaxon":124,"CHEBI":5},"ex":[{"id":"NCBITaxon:286","label":"Pseudomonas"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:562","label":"Escherichia coli"}]},{"a":"CommunityMech","b":"AntibioticMech","n":64,"by":{"CHEBI":42,"NCBITaxon":22},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"},{"id":"CHEBI:33709","label":"amino acid"}]},{"a":"CommunityMech","b":"MediaIngredientMech","n":240,"by":{"CHEBI":238,"ENVO":2},"ex":[{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:33709","label":"amino acid"},{"id":"CHEBI:3312","label":"calcium dichloride"}]},{"a":"CommunityMech","b":"CultureMech","n":151,"by":{"CHEBI":138,"NCBITaxon":8,"ENVO":5},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:30089","label":"acetate"}]},{"a":"TraitMech","b":"CellStructureMech","n":114,"by":{"GO":53,"NCBITaxon":40,"CHEBI":7,"UniProt":6,"METPO":5,"InterPro":3},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:83333","label":"Escherichia coli (strain K12)"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"}]},{"a":"TraitMech","b":"ProteinTraitsMech","n":707,"by":{"GO":248,"NCBITaxon":136,"METPO":111,"CHEBI":109,"UniProt":56,"InterPro":47},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"METPO:1000631","label":"trophic type"}]},{"a":"TraitMech","b":"NaturalProductMech","n":57,"by":{"NCBITaxon":53,"CHEBI":4},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"TraitMech","b":"AntibioticMech","n":31,"by":{"NCBITaxon":21,"CHEBI":10},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"TraitMech","b":"MediaIngredientMech","n":59,"by":{"CHEBI":59},"ex":[{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:16526","label":"carbon dioxide"}]},{"a":"TraitMech","b":"CultureMech","n":36,"by":{"CHEBI":26,"NCBITaxon":10},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:17234","label":"glucose"}]},{"a":"CellStructureMech","b":"ProteinTraitsMech","n":1058,"by":{"GO":737,"UniProt":155,"NCBITaxon":77,"InterPro":64,"CHEBI":15,"Pfam":10},"ex":[{"id":"GO:0032991","label":"protein-containing complex"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:3055","label":"Chlamydomonas reinhardtii"}]},{"a":"CellStructureMech","b":"NaturalProductMech","n":23,"by":{"NCBITaxon":23},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:9606","label":"Homo sapiens"}]},{"a":"CellStructureMech","b":"AntibioticMech","n":18,"by":{"NCBITaxon":13,"CHEBI":5},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:4932","label":"Saccharomyces cerevisiae"},{"id":"NCBITaxon:90371","label":"Salmonella enterica subsp. enterica serovar Typhimurium"}]},{"a":"CellStructureMech","b":"MediaIngredientMech","n":14,"by":{"CHEBI":14},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:17029","label":"chitin"},{"id":"CHEBI:33403","label":"elemental sulfur"}]},{"a":"CellStructureMech","b":"CultureMech","n":7,"by":{"CHEBI":4,"NCBITaxon":3},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:16261","label":"chitosan"},{"id":"CHEBI:33403","label":"elemental sulfur"}]},{"a":"ProteinTraitsMech","b":"NaturalProductMech","n":794,"by":{"NCBITaxon":487,"UniProt":156,"CHEBI":148,"RHEA":3},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:100226","label":"Streptomyces coelicolor A3(2)"},{"id":"NCBITaxon:227321","label":"Emericella nidulans (strain FGSC A4 / ATCC 38163 / CBS 112.46 / NRRL 194 / M139)"}]},{"a":"ProteinTraitsMech","b":"AntibioticMech","n":2435,"by":{"ARO":1740,"CHEBI":594,"NCBITaxon":79,"UniProt":20,"GO":2},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:573","label":"Klebsiella pneumoniae"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"}]},{"a":"ProteinTraitsMech","b":"MediaIngredientMech","n":798,"by":{"CHEBI":797,"UBERON":1},"ex":[{"id":"CHEBI:15377","label":"water"},{"id":"CHEBI:15740","label":"formate"},{"id":"CHEBI:33709","label":"amino acid"}]},{"a":"ProteinTraitsMech","b":"CultureMech","n":233,"by":{"CHEBI":221,"NCBITaxon":10,"UBERON":2},"ex":[{"id":"CHEBI:15377","label":"water"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:17754","label":"glycerol"}]},{"a":"NaturalProductMech","b":"AntibioticMech","n":278,"by":{"CHEBI":180,"NCBITaxon":96,"UniProt":2},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"},{"id":"NCBITaxon:330879","label":"Aspergillus fumigatus (strain ATCC MYA-4609 / CBS 101355 / FGSC A1100 / Af293)"}]},{"a":"NaturalProductMech","b":"MediaIngredientMech","n":51,"by":{"CHEBI":51},"ex":[{"id":"CHEBI:15956","label":"biotin"},{"id":"CHEBI:16349","label":"L-citrulline"},{"id":"CHEBI:27592","label":"ectoine"}]},{"a":"NaturalProductMech","b":"CultureMech","n":5,"by":{"CHEBI":3,"NCBITaxon":2},"ex":[{"id":"CHEBI:15956","label":"biotin"},{"id":"CHEBI:16349","label":"L-citrulline"},{"id":"CHEBI:27592","label":"ectoine"}]},{"a":"AntibioticMech","b":"MediaIngredientMech","n":324,"by":{"CHEBI":324},"ex":[{"id":"CHEBI:33709","label":"amino acid"},{"id":"CHEBI:30746","label":"benzoic acid"},{"id":"CHEBI:17334","label":"penicillin"}]},{"a":"AntibioticMech","b":"CultureMech","n":29,"by":{"CHEBI":29},"ex":[{"id":"CHEBI:17334","label":"penicillin"},{"id":"CHEBI:48923","label":"erythromycin"},{"id":"CHEBI:30746","label":"benzoic acid"}]},{"a":"MediaIngredientMech","b":"CultureMech","n":612,"by":{"CHEBI":545,"KEGG":56,"FOODON":6,"UBERON":3,"CAS":1,"ENVO":1},"ex":[{"id":"FOODON:03315426","label":"yeast extract"},{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:2509","label":"agar"}]}]} \ No newline at end of file +{"order":["HabitatMech","CommunityMech","TraitMech","CellStructureMech","ProteinTraitsMech","NaturalProductMech","AntibioticMech","MediaIngredientMech","CultureMech"],"voc":["NCBITaxon","CHEBI","GO","UniProt","ENVO","UBERON","InterPro","PDB","CAS","METPO","KEGG","FOODON","PATO","Pfam","RHEA","ARO","BTO","MIBiG","NPAtlas","GTDB","PMID","DOI"],"heat":{"HabitatMech":{"CHEBI":24,"NCBITaxon":13227,"GO":7,"ENVO":3368,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":4,"UBERON":1123,"FOODON":198,"BTO":1367,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":516,"DOI":116},"CommunityMech":{"CHEBI":2971,"NCBITaxon":4253,"GO":1537,"ENVO":538,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":10,"FOODON":0,"BTO":0,"GTDB":2037,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":7320,"DOI":1223},"TraitMech":{"CHEBI":673,"NCBITaxon":996,"GO":886,"ENVO":22,"METPO":3617,"ARO":0,"UniProt":399,"InterPro":115,"Pfam":0,"RHEA":0,"PDB":0,"PATO":99,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":621,"DOI":7190},"CellStructureMech":{"CHEBI":65,"NCBITaxon":1438,"GO":11688,"ENVO":0,"METPO":14,"ARO":0,"UniProt":337,"InterPro":206,"Pfam":22,"RHEA":0,"PDB":277,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":698,"DOI":6636},"ProteinTraitsMech":{"CHEBI":374424,"NCBITaxon":358320,"GO":421586,"ENVO":0,"METPO":244,"ARO":397717,"UniProt":658574,"InterPro":1480044,"Pfam":521966,"RHEA":613456,"PDB":235957,"PATO":124,"UBERON":43,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":245,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":657527,"DOI":193845},"NaturalProductMech":{"CHEBI":1659,"NCBITaxon":13960,"GO":0,"ENVO":0,"METPO":0,"ARO":0,"UniProt":613,"InterPro":0,"Pfam":0,"RHEA":14,"PDB":0,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":10133,"NPAtlas":1756,"PMID":5703,"DOI":8437},"AntibioticMech":{"CHEBI":22104,"NCBITaxon":1085,"GO":3,"ENVO":0,"METPO":0,"ARO":16653,"UniProt":278,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":6,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":1823,"MIBiG":0,"NPAtlas":0,"PMID":1207,"DOI":216},"MediaIngredientMech":{"CHEBI":8220,"NCBITaxon":1,"GO":0,"ENVO":110,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":23,"FOODON":273,"BTO":3,"GTDB":0,"KEGG":61,"CAS":727,"MIBiG":0,"NPAtlas":0,"PMID":29,"DOI":9},"CultureMech":{"CHEBI":160678,"NCBITaxon":63,"GO":0,"ENVO":13,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":138,"FOODON":223,"BTO":0,"GTDB":0,"KEGG":1406,"CAS":1,"MIBiG":0,"NPAtlas":0,"PMID":68,"DOI":76}},"cells":{"HabitatMech--BTO":587,"HabitatMech--CHEBI":11,"HabitatMech--ENVO":1296,"HabitatMech--FOODON":85,"HabitatMech--GO":2,"HabitatMech--NCBITaxon":896,"HabitatMech--PATO":3,"HabitatMech--UBERON":704,"CommunityMech--CHEBI":357,"CommunityMech--ENVO":408,"CommunityMech--GO":394,"CommunityMech--GTDB":367,"CommunityMech--NCBITaxon":422,"CommunityMech--UBERON":10,"TraitMech--CHEBI":183,"TraitMech--ENVO":14,"TraitMech--GO":292,"TraitMech--InterPro":61,"TraitMech--METPO":749,"TraitMech--NCBITaxon":484,"TraitMech--PATO":49,"TraitMech--UniProt":182,"CellStructureMech--CHEBI":24,"CellStructureMech--GO":535,"CellStructureMech--InterPro":33,"CellStructureMech--METPO":5,"CellStructureMech--NCBITaxon":531,"CellStructureMech--PDB":19,"CellStructureMech--Pfam":8,"CellStructureMech--UniProt":65,"ProteinTraitsMech--ARO":7452,"ProteinTraitsMech--CHEBI":30122,"ProteinTraitsMech--GO":110744,"ProteinTraitsMech--InterPro":120090,"ProteinTraitsMech--KEGG":231,"ProteinTraitsMech--METPO":119,"ProteinTraitsMech--NCBITaxon":98697,"ProteinTraitsMech--PATO":81,"ProteinTraitsMech--PDB":51718,"ProteinTraitsMech--Pfam":107455,"ProteinTraitsMech--RHEA":29550,"ProteinTraitsMech--UBERON":43,"ProteinTraitsMech--UniProt":159595,"NaturalProductMech--CHEBI":405,"NaturalProductMech--MIBiG":3115,"NaturalProductMech--NCBITaxon":3115,"NaturalProductMech--NPAtlas":1740,"NaturalProductMech--RHEA":1,"NaturalProductMech--UniProt":102,"AntibioticMech--ARO":568,"AntibioticMech--CAS":1797,"AntibioticMech--CHEBI":2814,"AntibioticMech--GO":3,"AntibioticMech--NCBITaxon":163,"AntibioticMech--PDB":5,"AntibioticMech--UniProt":47,"MediaIngredientMech--BTO":1,"MediaIngredientMech--CAS":287,"MediaIngredientMech--CHEBI":2232,"MediaIngredientMech--ENVO":26,"MediaIngredientMech--FOODON":99,"MediaIngredientMech--KEGG":58,"MediaIngredientMech--NCBITaxon":1,"MediaIngredientMech--UBERON":10,"CultureMech--CAS":1,"CultureMech--CHEBI":6125,"CultureMech--ENVO":12,"CultureMech--FOODON":203,"CultureMech--KEGG":329,"CultureMech--NCBITaxon":30,"CultureMech--UBERON":72},"vocab_edges":[{"a":"HabitatMech","b":"CommunityMech","n":313,"by":{"NCBITaxon":265,"ENVO":42,"UBERON":4,"CHEBI":2},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"ENVO:00001998","label":"soil"},{"id":"ENVO:01001001","label":"plant-associated environment"}]},{"a":"HabitatMech","b":"TraitMech","n":122,"by":{"NCBITaxon":115,"ENVO":4,"PATO":2,"CHEBI":1},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"HabitatMech","b":"CellStructureMech","n":41,"by":{"NCBITaxon":41},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1117","label":"Cyanobacteriota"}]},{"a":"HabitatMech","b":"ProteinTraitsMech","n":1250,"by":{"NCBITaxon":1234,"UBERON":12,"CHEBI":2,"GO":2},"ex":[{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1869227","label":"bacterium"}]},{"a":"HabitatMech","b":"NaturalProductMech","n":312,"by":{"NCBITaxon":312},"ex":[{"id":"NCBITaxon:56","label":"Sorangium cellulosum"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1931","label":"Streptomyces sp."}]},{"a":"HabitatMech","b":"AntibioticMech","n":32,"by":{"NCBITaxon":32},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:573","label":"Klebsiella pneumoniae"}]},{"a":"HabitatMech","b":"MediaIngredientMech","n":22,"by":{"ENVO":15,"UBERON":4,"CHEBI":3},"ex":[{"id":"ENVO:00002149","label":"sea water"},{"id":"ENVO:00001998","label":"soil"},{"id":"ENVO:00002263","label":"garden soil"}]},{"a":"HabitatMech","b":"CultureMech","n":25,"by":{"NCBITaxon":13,"ENVO":7,"UBERON":4,"FOODON":1},"ex":[{"id":"UBERON:0000948","label":"heart"},{"id":"UBERON:0000955","label":"brain"},{"id":"UBERON:0000178","label":"blood"}]},{"a":"CommunityMech","b":"TraitMech","n":157,"by":{"CHEBI":61,"NCBITaxon":61,"GO":35},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:15379","label":"dioxygen"},{"id":"GO:0015977","label":"carbon fixation"}]},{"a":"CommunityMech","b":"CellStructureMech","n":60,"by":{"NCBITaxon":36,"CHEBI":13,"GO":11},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:2157","label":"Archaea"},{"id":"NCBITaxon:562","label":"Escherichia coli"}]},{"a":"CommunityMech","b":"ProteinTraitsMech","n":689,"by":{"CHEBI":276,"NCBITaxon":226,"GO":186,"UBERON":1},"ex":[{"id":"CHEBI:30089","label":"acetate"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"GO:0015979","label":"photosynthesis"}]},{"a":"CommunityMech","b":"NaturalProductMech","n":128,"by":{"NCBITaxon":123,"CHEBI":5},"ex":[{"id":"NCBITaxon:286","label":"Pseudomonas"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:562","label":"Escherichia coli"}]},{"a":"CommunityMech","b":"AntibioticMech","n":63,"by":{"CHEBI":42,"NCBITaxon":21},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"},{"id":"CHEBI:33709","label":"amino acid"}]},{"a":"CommunityMech","b":"MediaIngredientMech","n":240,"by":{"CHEBI":238,"ENVO":2},"ex":[{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:33709","label":"amino acid"},{"id":"CHEBI:3312","label":"calcium dichloride"}]},{"a":"CommunityMech","b":"CultureMech","n":151,"by":{"CHEBI":138,"NCBITaxon":8,"ENVO":5},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:30089","label":"acetate"}]},{"a":"TraitMech","b":"CellStructureMech","n":114,"by":{"GO":53,"NCBITaxon":40,"CHEBI":7,"UniProt":6,"METPO":5,"InterPro":3},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:83333","label":"Escherichia coli (strain K12)"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"}]},{"a":"TraitMech","b":"ProteinTraitsMech","n":707,"by":{"GO":248,"NCBITaxon":136,"METPO":111,"CHEBI":109,"UniProt":56,"InterPro":47},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"METPO:1000631","label":"trophic type"}]},{"a":"TraitMech","b":"NaturalProductMech","n":57,"by":{"NCBITaxon":53,"CHEBI":4},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"TraitMech","b":"AntibioticMech","n":31,"by":{"NCBITaxon":21,"CHEBI":10},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"TraitMech","b":"MediaIngredientMech","n":59,"by":{"CHEBI":59},"ex":[{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:16526","label":"carbon dioxide"}]},{"a":"TraitMech","b":"CultureMech","n":36,"by":{"CHEBI":26,"NCBITaxon":10},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:17234","label":"glucose"}]},{"a":"CellStructureMech","b":"ProteinTraitsMech","n":1058,"by":{"GO":737,"UniProt":155,"NCBITaxon":77,"InterPro":64,"CHEBI":15,"Pfam":10},"ex":[{"id":"GO:0032991","label":"protein-containing complex"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:3055","label":"Chlamydomonas reinhardtii"}]},{"a":"CellStructureMech","b":"NaturalProductMech","n":23,"by":{"NCBITaxon":23},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:9606","label":"Homo sapiens"}]},{"a":"CellStructureMech","b":"AntibioticMech","n":18,"by":{"NCBITaxon":13,"CHEBI":5},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:4932","label":"Saccharomyces cerevisiae"},{"id":"NCBITaxon:90371","label":"Salmonella enterica subsp. enterica serovar Typhimurium"}]},{"a":"CellStructureMech","b":"MediaIngredientMech","n":14,"by":{"CHEBI":14},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:17029","label":"chitin"},{"id":"CHEBI:33403","label":"elemental sulfur"}]},{"a":"CellStructureMech","b":"CultureMech","n":7,"by":{"CHEBI":4,"NCBITaxon":3},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:16261","label":"chitosan"},{"id":"CHEBI:33403","label":"elemental sulfur"}]},{"a":"ProteinTraitsMech","b":"NaturalProductMech","n":794,"by":{"NCBITaxon":487,"UniProt":156,"CHEBI":148,"RHEA":3},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:100226","label":"Streptomyces coelicolor A3(2)"},{"id":"NCBITaxon:227321","label":"Emericella nidulans (strain FGSC A4 / ATCC 38163 / CBS 112.46 / NRRL 194 / M139)"}]},{"a":"ProteinTraitsMech","b":"AntibioticMech","n":2435,"by":{"ARO":1740,"CHEBI":594,"NCBITaxon":79,"UniProt":20,"GO":2},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:573","label":"Klebsiella pneumoniae"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"}]},{"a":"ProteinTraitsMech","b":"MediaIngredientMech","n":798,"by":{"CHEBI":797,"UBERON":1},"ex":[{"id":"CHEBI:15377","label":"water"},{"id":"CHEBI:15740","label":"formate"},{"id":"CHEBI:33709","label":"amino acid"}]},{"a":"ProteinTraitsMech","b":"CultureMech","n":233,"by":{"CHEBI":221,"NCBITaxon":10,"UBERON":2},"ex":[{"id":"CHEBI:15377","label":"water"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:17754","label":"glycerol"}]},{"a":"NaturalProductMech","b":"AntibioticMech","n":278,"by":{"CHEBI":180,"NCBITaxon":96,"UniProt":2},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"},{"id":"NCBITaxon:330879","label":"Aspergillus fumigatus (strain ATCC MYA-4609 / CBS 101355 / FGSC A1100 / Af293)"}]},{"a":"NaturalProductMech","b":"MediaIngredientMech","n":51,"by":{"CHEBI":51},"ex":[{"id":"CHEBI:15956","label":"biotin"},{"id":"CHEBI:16349","label":"L-citrulline"},{"id":"CHEBI:27592","label":"ectoine"}]},{"a":"NaturalProductMech","b":"CultureMech","n":5,"by":{"CHEBI":3,"NCBITaxon":2},"ex":[{"id":"CHEBI:15956","label":"biotin"},{"id":"CHEBI:16349","label":"L-citrulline"},{"id":"CHEBI:27592","label":"ectoine"}]},{"a":"AntibioticMech","b":"MediaIngredientMech","n":324,"by":{"CHEBI":324},"ex":[{"id":"CHEBI:33709","label":"amino acid"},{"id":"CHEBI:30746","label":"benzoic acid"},{"id":"CHEBI:17334","label":"penicillin"}]},{"a":"AntibioticMech","b":"CultureMech","n":29,"by":{"CHEBI":29},"ex":[{"id":"CHEBI:17334","label":"penicillin"},{"id":"CHEBI:48923","label":"erythromycin"},{"id":"CHEBI:30746","label":"benzoic acid"}]},{"a":"MediaIngredientMech","b":"CultureMech","n":612,"by":{"CHEBI":545,"KEGG":56,"FOODON":6,"UBERON":3,"CAS":1,"ENVO":1},"ex":[{"id":"FOODON:03315426","label":"yeast extract"},{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:2509","label":"agar"}]}]} \ No newline at end of file diff --git a/_fleet/data/subsets_summary.json b/_fleet/data/subsets_summary.json index 88624a3..de07631 100644 --- a/_fleet/data/subsets_summary.json +++ b/_fleet/data/subsets_summary.json @@ -1,4 +1,15 @@ { + "_revisions": { + "HabitatMech": "b16e3099478a7ea55b82142836e9a118ae062cf6", + "CommunityMech": "8505a56d644b02fe87f776be9d667db4cf3f5c5d", + "TraitMech": "a21c5aa34a876c43ea1e8053a58bc63d53be30a1", + "CellStructureMech": "42cc23b90b6c48c49efd94b7ee6efb808dded7e6", + "ProteinTraitsMech": "5f05fca10a59867751877d1f566fad30e238b28c", + "NaturalProductMech": "36662aa8fcdcac9d3ddf4acba0f430e39bc2da2e", + "AntibioticMech": "66d68c2a8d99230ab729267e6cd8ae1051b85225", + "MediaIngredientMech": "dfce1c9342ca7aec41b50d0f6db8adb950bb72fe", + "CultureMech": "faaf033b8c5386aaf2cb6f28fc527678d00cf83b" + }, "edges": { "HabitatMech|CommunityMech": { "n": 313, @@ -219,11 +230,11 @@ ] }, "CommunityMech|ProteinTraitsMech": { - "n": 698, + "n": 689, "by": { - "CHEBI": 280, - "NCBITaxon": 227, - "GO": 190, + "CHEBI": 276, + "NCBITaxon": 226, + "GO": 186, "UBERON": 1 }, "ex": [ @@ -242,9 +253,9 @@ ] }, "CommunityMech|NaturalProductMech": { - "n": 129, + "n": 128, "by": { - "NCBITaxon": 124, + "NCBITaxon": 123, "CHEBI": 5 }, "ex": [ @@ -263,10 +274,10 @@ ] }, "CommunityMech|AntibioticMech": { - "n": 64, + "n": 63, "by": { "CHEBI": 42, - "NCBITaxon": 22 + "NCBITaxon": 21 }, "ex": [ { @@ -794,11 +805,11 @@ "HabitatMech|NCBITaxon": 896, "HabitatMech|PATO": 3, "HabitatMech|UBERON": 704, - "CommunityMech|CHEBI": 361, - "CommunityMech|ENVO": 412, - "CommunityMech|GO": 398, - "CommunityMech|GTDB": 370, - "CommunityMech|NCBITaxon": 426, + "CommunityMech|CHEBI": 357, + "CommunityMech|ENVO": 408, + "CommunityMech|GO": 394, + "CommunityMech|GTDB": 367, + "CommunityMech|NCBITaxon": 422, "CommunityMech|UBERON": 10, "TraitMech|CHEBI": 183, "TraitMech|ENVO": 14, diff --git a/_fleet/fleet_fragment.html b/_fleet/fleet_fragment.html index f6256fd..a11095f 100644 --- a/_fleet/fleet_fragment.html +++ b/_fleet/fleet_fragment.html @@ -426,7 +426,7 @@

Shared vocabulary

shared identifiers, one chord per vocabulary (width = how many): ChEBINCBITaxonGOMETPOENVOAROUniProtcitationsother - direct cross-reference (arrow = who consumes) + direct cross-reference (arrow = who consumes or is deferred to) export to / input from kg-microbe (dotted = namespace only) fleet manifest membership
@@ -458,7 +458,7 @@

Shared vocabulary

var XREFS = [ { from: "CultureMech", to: "MediaIngredientMech", kind: "data", what: "Ingredient strings and occurrence counts inform scoped MIM curation; MIM records carry CultureMech:NNNNNN back-links by stable id.", ev: "MIM schema CultureMechReference; claw ingredient_curation_pipeline", url: "https://github.com/CultureBotAI/MediaIngredientMech/blob/main/src/mediaingredientmech/schema/mediaingredientmech.yaml" }, { from: "MediaIngredientMech", to: "CultureMech", kind: "data", what: "Curated ChEBI/FOODON artifacts support scoped recipe updates; CultureMech vendors MIM's ingredient-role enums and consumes its label index.", ev: "CultureMech src/culturemech/schema/mim_roles.yaml", url: "https://github.com/CultureBotAI/CultureMech/blob/main/src/culturemech/schema/mim_roles.yaml" }, - { from: "CommunityMech", to: "CultureMech", kind: "data", what: "Community records name the medium they were grown in by CultureMech id (through culturemech_id); CultureMech imported media from CommunityMech with their community ids and backfilled recipe source environments through that link.", ev: "CommunityMech docs/cross_repo_linking.md", url: "https://github.com/CultureBotAI/CommunityMech/blob/main/docs/cross_repo_linking.md" }, + { from: "CommunityMech", to: "CultureMech", kind: "data", what: "Community records name the medium they were grown in by CultureMech id (through culturemech_id); CultureMech imported media from CommunityMech with their community ids and backfilled recipe source environments through that link.", ev: "CommunityMech docs/cross_repo_linking.md; CultureMech scripts/import_from_communitymech.py, scripts/backfill_source_environment.py", url: "https://github.com/CultureBotAI/CommunityMech/blob/main/docs/cross_repo_linking.md" }, { from: "CommunityMech", to: "MediaIngredientMech", kind: "data", what: "MIM imported CommunityMech's unmapped growth-media ingredient strings as MIM records (source communitymech-unmapped); CommunityMech's own MIM-id slots are marked vestigial, with chebi_term as the join.", ev: "MIM data/ingredients (communitymech-unmapped); CommunityMech schema GrowthMediaComponent, RelatedIngredient", url: "https://github.com/CultureBotAI/MediaIngredientMech/blob/main/docs/CURIE_STANDARD.md" }, { from: "TraitMech", to: "CellStructureMech", kind: "data", what: "Structures list the phenotypes they confer as TraitMech / METPO terms; causal-graph node vocabulary is TraitMech's plus STRUCTURE.", ev: "CellStructureMech schema associated_traits", url: "https://github.com/CultureBotAI/CellStructureMech/blob/main/src/cellstructuremech/schema/cellstructuremech.yaml" }, { from: "CellStructureMech", to: "ProteinTraitsMech", kind: "schema", what: "A single protein is a component, not a record: it grounds to InterPro / UniProtKB and hands off to ProteinTraitsMech.", ev: "CellStructureMech docs/CURATION.md", url: "https://github.com/CultureBotAI/CellStructureMech/blob/main/docs/CURATION.md" }, @@ -782,7 +782,7 @@

Shared vocabulary

} function selectHub() { state.sel = { type: "hub" }; render(); - detail.innerHTML = '

Hub

kg-microbe

Only MediaIngredientMech feeds kg-microbe today. Its ingredient SSSOM is loaded when kg-microbe builds its chemical mappings. CultureMech and CommunityMech have SSSOM or KGX exporters but no published release. TraitMech addresses its METPO class proposals to METPO, not to the graph. The other six share the kg-microbe namespace but release no data into the graph. In the other direction, kg-microbe supplies harmonized ontologies, transformed source data, mapping tables and graph embeddings to the Mechs that need them. The exchange list records each relationship.

' + + detail.innerHTML = '

Hub

kg-microbe

Only MediaIngredientMech feeds kg-microbe today. Its ingredient SSSOM is loaded when kg-microbe builds its chemical mappings. CultureMech and CommunityMech have SSSOM or KGX exporters but no published release. TraitMech addresses its METPO class proposals to METPO, not to the graph. AntibioticMech, ProteinTraitsMech, CellStructureMech and NaturalProductMech exchange no data with it and share only its schema namespace. In the other direction, kg-microbe supplies harmonized ontologies, transformed source data, mapping tables and graph embeddings to the Mechs that need them. The exchange list records each relationship.

' + '

Exchange

    ' + HUB.map(function (h) { return '
  • ' + esc(h.mech) + (h.dir === "out" ? ' →' : ' ←') + ' ' + esc(h.what) + '
  • '; }).join("") + '
'; } // Re-render whatever is selected after a filter change. diff --git a/_fleet/mechs_template.md b/_fleet/mechs_template.md index 743fc84..5f2fbd6 100644 --- a/_fleet/mechs_template.md +++ b/_fleet/mechs_template.md @@ -15,7 +15,7 @@ Each X-Mech is an **autonomous knowledge factory** that curates, validates, and ## The Mechs -Each card carries its Mech's own site color. Hover a card to trace its ties in the graph above; use "Show in graph" to select it. The small print under each headline number gives reviewed records and merged pull requests; a Mech whose schema has no field recording review shows only the pull-request count, rather than a zero that would claim more than it knows. Card and graph totals reflect the published Mech pages checked on September 24, 2026. Each Browse link is the source for its card. For CultureMech that is its index of merged media records, not its landing page, whose recipe total is stale. CommunityMech lists 422 communities online and keeps four additional isolate records in its repository. These published-browser totals may differ from the record-corpus census below. Fleet membership and capability declarations come from . +Each card carries its Mech's own site color. Hover a card to trace its ties in the graph above; use "Show in graph" to select it. The small print under each headline number gives reviewed records and merged pull requests; a Mech whose schema has no field recording review shows only the pull-request count, rather than a zero that would claim more than it knows. Card and graph totals reflect the published Mech pages checked on September 24, 2026. Each Browse link is the source for its card. For CultureMech that is its index of merged media records, not its landing page, whose recipe total is stale. CommunityMech lists 422 communities online and keeps four additional isolate records in its repository; its landing page's category tile reads 16, while its schema, records and browser facet have 15. These published-browser totals may differ from the record-corpus census below. Fleet membership and capability declarations come from .
@@ -113,12 +113,12 @@ Alongside record browsing, the Mechs publish complementary ways to explore their ## How the Mechs reference each other -Beyond shared vocabulary, Mechs name one another directly, in record fields, in schema slots, and in the curation practices they adopt from each other. Arrows point at the Mech that consumes. +Beyond shared vocabulary, Mechs name one another directly, in record fields, in schema slots, and in the curation practices they adopt from each other. Arrows point at the Mech that consumes, or at the one a scope decision defers to.
CultureMech→MediaIngredientMech
Ingredient strings and occurrence counts inform scoped MIM curation; retired collection writers no longer overwrite MIM-owned records from CultureMech aggregates; MIM records link back to recipes by stable id with the CultureMechReference class.Record data · claw ingredient_curation_pipeline
MediaIngredientMech→CultureMech
Curated ChEBI and FOODON mapping artifacts support scoped recipe updates. CultureMech vendors MIM's ingredient-role enums and consumes MIM's immutable label index.Record data · src/culturemech/schema/mim_roles.yaml
-
CommunityMech→CultureMech
Community records name the medium they were cultivated in through culturemech_id references. CultureMech imported media from CommunityMech with their community ids, and backfilled recipe source environments through that link.Record data · docs/cross_repo_linking.md
+
CommunityMech→CultureMech
Community records name the medium they were cultivated in through culturemech_id references. CultureMech imported media from CommunityMech with their community ids, and backfilled recipe source environments through that link.Record data · docs/cross_repo_linking.md; CultureMech scripts/import_from_communitymech.py
CommunityMech→MediaIngredientMech
MIM imported CommunityMech's unmapped growth-media ingredient strings as MIM records, citing communitymech-unmapped as their source. CommunityMech's own MIM-id slots (media_ingredient_mech_id, mediaingredientmech_id) are marked vestigial, with chebi_term as the join.Record data · MIM data/ingredients
TraitMech→CellStructureMech
A structure lists the phenotypes it confers as TraitMech or METPO terms, and its causal-graph node vocabulary is TraitMech's plus a STRUCTURE node type.Record data · schema slot associated_traits
CellStructureMech→ProteinTraitsMech
A single protein is a component of a structure, never a record of its own: it grounds to InterPro or UniProtKB and hands off to ProteinTraitsMech.Scope boundary · docs/CURATION.md
diff --git a/assets/fleet/cells/CommunityMech--CHEBI.json b/assets/fleet/cells/CommunityMech--CHEBI.json index a135bfc..c5282bb 100644 --- a/assets/fleet/cells/CommunityMech--CHEBI.json +++ b/assets/fleet/cells/CommunityMech--CHEBI.json @@ -1 +1 @@ -{"mech":"CommunityMech","prefix":"CHEBI","base":"https://culturebotai.github.io/CommunityMech/communities/","total":361,"records":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["DVM_Triculture.html","DVM Tri-culture"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["Horonobe_Mizunami_URL_Subsurface_Microbiome.html","Horonobe and Mizunami Underground Research Laboratory Subsurface Microbiome"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"],["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Magnetite_Sulfate_Stress_Anaerobic_Microbiome.html","Magnetite Sulfate-Stress Anaerobic Microbiome"],["Maize_Benzoxazinoid_Metabolizing_SynComs.html","Maize Benzoxazinoid-Metabolizing SynComs"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Meghalaya_Bacillus_Consortia_A22ED9.html","Meghalaya Bacillus Consortia-A22ED9"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"],["Pelagerythrobacter_Salinicola_PES_Pyrene_Degradation_SynCom.html","Pelagerythrobacter-Salinicola PES Pyrene-Degradation SynCom"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Phosphitivorax_Methanoculleus_Lithosyntrophy_Phosphite_Coculture.html","Phosphitivorax-Methanoculleus Lithosyntrophic Phosphite-Oxidizing Methanogenic Culture"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"],["QY2S1_Dehalogenimonas_BFR_Bioremediation_Consortium.html","QY2-S1 Dehalogenimonas-Rich Brominated-Flame-Retardant Consortium"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"],["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Rice_Acid_Soil_Bioinoculant_SynCom.html","Rice Acid Soil Bioinoculant SynCom"],["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"],["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"],["SPRUCE_Peatland_Methane_Cycling_Community.html","SPRUCE Peatland Methane-Cycling Microbial Community"],["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"],["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Sedimenting_Arabinose_Glucose_Saccharomyces_Coculture.html","Sedimenting Arabinose-Glucose Saccharomyces Coculture"],["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"],["Shewanella_Denitrifying_Richness_SynComs.html","Shewanella Denitrifying Richness SynComs"],["Shewanella_Pseudomonas_Fe0_Electrosyntrophic_Denitrifying_Consortium.html","Shewanella oneidensis + Pseudomonas aeruginosa Fe0-dependent Electro-syntrophic Denitrifying Consortium"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"],["Sichuan_Shai_Vinegar_Yeast_Flavor_SynCom.html","Sichuan Shai Vinegar Yeast Flavor SynCom"],["Soil_Corrinoid_B12_Reservoir_Community.html","Soil Corrinoid Reservoir Microbial Community"],["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["South_Bay_Salt_Pond_Methane_Restoration_Community.html","South Bay Salt Pond Methane Restoration Microbial Community"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"],["Sphingobium_Nitrososphaera_Phenanthrene_Carbon_SynCom.html","Sphingobium-Nitrososphaera Phenanthrene-Carbon SynCom"],["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"],["Staged_Cattle_Manure_Ensifer_Bacillus_SynCom.html","Staged Ensifer-Bacillus Cattle-Manure Wastewater SynCom"]]} \ No newline at end of file +{"mech":"CommunityMech","prefix":"CHEBI","base":"https://culturebotai.github.io/CommunityMech/communities/","total":357,"records":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["DVM_Triculture.html","DVM Tri-culture"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["Horonobe_Mizunami_URL_Subsurface_Microbiome.html","Horonobe and Mizunami Underground Research Laboratory Subsurface Microbiome"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"],["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Magnetite_Sulfate_Stress_Anaerobic_Microbiome.html","Magnetite Sulfate-Stress Anaerobic Microbiome"],["Maize_Benzoxazinoid_Metabolizing_SynComs.html","Maize Benzoxazinoid-Metabolizing SynComs"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Meghalaya_Bacillus_Consortia_A22ED9.html","Meghalaya Bacillus Consortia-A22ED9"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"],["Pelagerythrobacter_Salinicola_PES_Pyrene_Degradation_SynCom.html","Pelagerythrobacter-Salinicola PES Pyrene-Degradation SynCom"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Phosphitivorax_Methanoculleus_Lithosyntrophy_Phosphite_Coculture.html","Phosphitivorax-Methanoculleus Lithosyntrophic Phosphite-Oxidizing Methanogenic Culture"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"],["QY2S1_Dehalogenimonas_BFR_Bioremediation_Consortium.html","QY2-S1 Dehalogenimonas-Rich Brominated-Flame-Retardant Consortium"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"],["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Rice_Acid_Soil_Bioinoculant_SynCom.html","Rice Acid Soil Bioinoculant SynCom"],["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"],["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"],["SPRUCE_Peatland_Methane_Cycling_Community.html","SPRUCE Peatland Methane-Cycling Microbial Community"],["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"],["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Sedimenting_Arabinose_Glucose_Saccharomyces_Coculture.html","Sedimenting Arabinose-Glucose Saccharomyces Coculture"],["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"],["Shewanella_Denitrifying_Richness_SynComs.html","Shewanella Denitrifying Richness SynComs"],["Shewanella_Pseudomonas_Fe0_Electrosyntrophic_Denitrifying_Consortium.html","Shewanella oneidensis + Pseudomonas aeruginosa Fe0-dependent Electro-syntrophic Denitrifying Consortium"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"],["Sichuan_Shai_Vinegar_Yeast_Flavor_SynCom.html","Sichuan Shai Vinegar Yeast Flavor SynCom"],["Soil_Corrinoid_B12_Reservoir_Community.html","Soil Corrinoid Reservoir Microbial Community"],["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["South_Bay_Salt_Pond_Methane_Restoration_Community.html","South Bay Salt Pond Methane Restoration Microbial Community"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"],["Sphingobium_Nitrososphaera_Phenanthrene_Carbon_SynCom.html","Sphingobium-Nitrososphaera Phenanthrene-Carbon SynCom"],["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"],["Staged_Cattle_Manure_Ensifer_Bacillus_SynCom.html","Staged Ensifer-Bacillus Cattle-Manure Wastewater SynCom"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"],["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"],["Subsurface_Carboxydocella_CO_Aquifer_Community.html","Subsurface Carboxydocella CO-Oxidation Aquifer Community"]]} \ No newline at end of file diff --git a/assets/fleet/cells/CommunityMech--ENVO.json b/assets/fleet/cells/CommunityMech--ENVO.json index 58372be..f10c86e 100644 --- a/assets/fleet/cells/CommunityMech--ENVO.json +++ b/assets/fleet/cells/CommunityMech--ENVO.json @@ -1 +1 @@ -{"mech":"CommunityMech","prefix":"ENVO","base":"https://culturebotai.github.io/CommunityMech/communities/","total":412,"records":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"],["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Chlorella_Vulgaris_Whey_Coculture.html","Chlorella vulgaris Whey Co-culture"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Clostridial_isoDCA_Mini_Consortium.html","Clostridial isoDCA Mini Consortium"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Cultivated_Meat_Contaminant_SynCom.html","Cultivated Meat Contaminant SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["DVM_Triculture.html","DVM Tri-culture"],["Dairy_Wastewater_Algal_Cyanobacterial_Cultivation_Panel.html","Dairy Wastewater Algal-Cyanobacterial Cultivation Panel"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["FourSpecies_Aerobic_Lung_Microbiome_Model.html","Four-Species Aerobic Lung Microbiome Model"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Horonobe_Mizunami_URL_Subsurface_Microbiome.html","Horonobe and Mizunami Underground Research Laboratory Subsurface Microbiome"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"],["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Komagataella_Ecoli_Coinducible_Biosynthesis_Coculture.html","Komagataella-E. coli Co-inducible Biosynthesis Coculture"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["LBNL_Switchgrass_Soil_SynCom16.html","LBNL Switchgrass Soil SynCom16"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Magnetite_Sulfate_Stress_Anaerobic_Microbiome.html","Magnetite Sulfate-Stress Anaerobic Microbiome"],["Maize_Benzoxazinoid_Metabolizing_SynComs.html","Maize Benzoxazinoid-Metabolizing SynComs"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Mediterranean_AM_Fungal_SixSpecies_SynCom.html","Mediterranean AM Fungal Six-Species SynCom"],["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"],["Meghalaya_Bacillus_Consortia_A22ED9.html","Meghalaya Bacillus Consortia-A22ED9"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"],["Microalgae_Cyanobacteria_Bioactive_Peptide_Consortia.html","Microalgae-Cyanobacteria Bioactive Peptide Consortia"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"],["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"],["Nitratireductor_Gordonia_Z123_LDPE_Degradation_SynCom.html","Nitratireductor-Gordonia Z123 LDPE-Degradation SynCom"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"],["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["PMI_Variovorax_Thermotolerance_Collection.html","PMI Variovorax Thermotolerance Collection"],["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"],["Pelagerythrobacter_Salinicola_PES_Pyrene_Degradation_SynCom.html","Pelagerythrobacter-Salinicola PES Pyrene-Degradation SynCom"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Phosphitivorax_Methanoculleus_Lithosyntrophy_Phosphite_Coculture.html","Phosphitivorax-Methanoculleus Lithosyntrophic Phosphite-Oxidizing Methanogenic Culture"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Pichia_Lactiplantibacillus_CCMA_Plant_Beverage_Coculture.html","Pichia-Lactiplantibacillus CCMA Plant Beverage Coculture"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["QY2S1_Dehalogenimonas_BFR_Bioremediation_Consortium.html","QY2-S1 Dehalogenimonas-Rich Brominated-Flame-Retardant Consortium"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["Rhizorhabdus_Cupriavidus_BDE47_Degradation_SynCom.html","Rhizorhabdus-Cupriavidus BDE-47 Degradation SynCom"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"],["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"]]} \ No newline at end of file +{"mech":"CommunityMech","prefix":"ENVO","base":"https://culturebotai.github.io/CommunityMech/communities/","total":408,"records":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"],["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Chlorella_Vulgaris_Whey_Coculture.html","Chlorella vulgaris Whey Co-culture"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Clostridial_isoDCA_Mini_Consortium.html","Clostridial isoDCA Mini Consortium"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Cultivated_Meat_Contaminant_SynCom.html","Cultivated Meat Contaminant SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["DVM_Triculture.html","DVM Tri-culture"],["Dairy_Wastewater_Algal_Cyanobacterial_Cultivation_Panel.html","Dairy Wastewater Algal-Cyanobacterial Cultivation Panel"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["FourSpecies_Aerobic_Lung_Microbiome_Model.html","Four-Species Aerobic Lung Microbiome Model"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Horonobe_Mizunami_URL_Subsurface_Microbiome.html","Horonobe and Mizunami Underground Research Laboratory Subsurface Microbiome"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"],["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Komagataella_Ecoli_Coinducible_Biosynthesis_Coculture.html","Komagataella-E. coli Co-inducible Biosynthesis Coculture"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["LBNL_Switchgrass_Soil_SynCom16.html","LBNL Switchgrass Soil SynCom16"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Magnetite_Sulfate_Stress_Anaerobic_Microbiome.html","Magnetite Sulfate-Stress Anaerobic Microbiome"],["Maize_Benzoxazinoid_Metabolizing_SynComs.html","Maize Benzoxazinoid-Metabolizing SynComs"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Mediterranean_AM_Fungal_SixSpecies_SynCom.html","Mediterranean AM Fungal Six-Species SynCom"],["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"],["Meghalaya_Bacillus_Consortia_A22ED9.html","Meghalaya Bacillus Consortia-A22ED9"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"],["Microalgae_Cyanobacteria_Bioactive_Peptide_Consortia.html","Microalgae-Cyanobacteria Bioactive Peptide Consortia"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"],["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"],["Nitratireductor_Gordonia_Z123_LDPE_Degradation_SynCom.html","Nitratireductor-Gordonia Z123 LDPE-Degradation SynCom"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"],["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["PMI_Variovorax_Thermotolerance_Collection.html","PMI Variovorax Thermotolerance Collection"],["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"],["Pelagerythrobacter_Salinicola_PES_Pyrene_Degradation_SynCom.html","Pelagerythrobacter-Salinicola PES Pyrene-Degradation SynCom"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Phosphitivorax_Methanoculleus_Lithosyntrophy_Phosphite_Coculture.html","Phosphitivorax-Methanoculleus Lithosyntrophic Phosphite-Oxidizing Methanogenic Culture"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Pichia_Lactiplantibacillus_CCMA_Plant_Beverage_Coculture.html","Pichia-Lactiplantibacillus CCMA Plant Beverage Coculture"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["QY2S1_Dehalogenimonas_BFR_Bioremediation_Consortium.html","QY2-S1 Dehalogenimonas-Rich Brominated-Flame-Retardant Consortium"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["Rhizorhabdus_Cupriavidus_BDE47_Degradation_SynCom.html","Rhizorhabdus-Cupriavidus BDE-47 Degradation SynCom"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"],["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Rice_Acid_Soil_Bioinoculant_SynCom.html","Rice Acid Soil Bioinoculant SynCom"],["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"],["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]]} \ No newline at end of file diff --git a/assets/fleet/cells/CommunityMech--GO.json b/assets/fleet/cells/CommunityMech--GO.json index 376e2cb..1e105fe 100644 --- a/assets/fleet/cells/CommunityMech--GO.json +++ b/assets/fleet/cells/CommunityMech--GO.json @@ -1 +1 @@ -{"mech":"CommunityMech","prefix":"GO","base":"https://culturebotai.github.io/CommunityMech/communities/","total":398,"records":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"],["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Cultivated_Meat_Contaminant_SynCom.html","Cultivated Meat Contaminant SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["DVM_Triculture.html","DVM Tri-culture"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["Horonobe_Mizunami_URL_Subsurface_Microbiome.html","Horonobe and Mizunami Underground Research Laboratory Subsurface Microbiome"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["LBNL_Switchgrass_Soil_SynCom16.html","LBNL Switchgrass Soil SynCom16"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Magnetite_Sulfate_Stress_Anaerobic_Microbiome.html","Magnetite Sulfate-Stress Anaerobic Microbiome"],["Maize_Benzoxazinoid_Metabolizing_SynComs.html","Maize Benzoxazinoid-Metabolizing SynComs"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Mediterranean_AM_Fungal_SixSpecies_SynCom.html","Mediterranean AM Fungal Six-Species SynCom"],["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"],["Nitratireductor_Gordonia_Z123_LDPE_Degradation_SynCom.html","Nitratireductor-Gordonia Z123 LDPE-Degradation SynCom"],["OMM12_Gnotobiotic_Mouse_Gut_Community.html","OMM12 Gnotobiotic Mouse Gut Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"],["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["PMI_Variovorax_Thermotolerance_Collection.html","PMI Variovorax Thermotolerance Collection"],["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Phosphitivorax_Methanoculleus_Lithosyntrophy_Phosphite_Coculture.html","Phosphitivorax-Methanoculleus Lithosyntrophic Phosphite-Oxidizing Methanogenic Culture"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["QY2S1_Dehalogenimonas_BFR_Bioremediation_Consortium.html","QY2-S1 Dehalogenimonas-Rich Brominated-Flame-Retardant Consortium"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["Rhizorhabdus_Cupriavidus_BDE47_Degradation_SynCom.html","Rhizorhabdus-Cupriavidus BDE-47 Degradation SynCom"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"],["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Rice_Acid_Soil_Bioinoculant_SynCom.html","Rice Acid Soil Bioinoculant SynCom"],["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"],["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"],["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"],["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]} \ No newline at end of file +{"mech":"CommunityMech","prefix":"GO","base":"https://culturebotai.github.io/CommunityMech/communities/","total":394,"records":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"],["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Cultivated_Meat_Contaminant_SynCom.html","Cultivated Meat Contaminant SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["DVM_Triculture.html","DVM Tri-culture"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["Horonobe_Mizunami_URL_Subsurface_Microbiome.html","Horonobe and Mizunami Underground Research Laboratory Subsurface Microbiome"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["LBNL_Switchgrass_Soil_SynCom16.html","LBNL Switchgrass Soil SynCom16"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Magnetite_Sulfate_Stress_Anaerobic_Microbiome.html","Magnetite Sulfate-Stress Anaerobic Microbiome"],["Maize_Benzoxazinoid_Metabolizing_SynComs.html","Maize Benzoxazinoid-Metabolizing SynComs"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Mediterranean_AM_Fungal_SixSpecies_SynCom.html","Mediterranean AM Fungal Six-Species SynCom"],["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"],["Nitratireductor_Gordonia_Z123_LDPE_Degradation_SynCom.html","Nitratireductor-Gordonia Z123 LDPE-Degradation SynCom"],["OMM12_Gnotobiotic_Mouse_Gut_Community.html","OMM12 Gnotobiotic Mouse Gut Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"],["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["PMI_Variovorax_Thermotolerance_Collection.html","PMI Variovorax Thermotolerance Collection"],["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Phosphitivorax_Methanoculleus_Lithosyntrophy_Phosphite_Coculture.html","Phosphitivorax-Methanoculleus Lithosyntrophic Phosphite-Oxidizing Methanogenic Culture"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["QY2S1_Dehalogenimonas_BFR_Bioremediation_Consortium.html","QY2-S1 Dehalogenimonas-Rich Brominated-Flame-Retardant Consortium"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["Rhizorhabdus_Cupriavidus_BDE47_Degradation_SynCom.html","Rhizorhabdus-Cupriavidus BDE-47 Degradation SynCom"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"],["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Rice_Acid_Soil_Bioinoculant_SynCom.html","Rice Acid Soil Bioinoculant SynCom"],["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"],["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"],["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"],["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"]]} \ No newline at end of file diff --git a/assets/fleet/cells/CommunityMech--GTDB.json b/assets/fleet/cells/CommunityMech--GTDB.json index 2e44780..9577957 100644 --- a/assets/fleet/cells/CommunityMech--GTDB.json +++ b/assets/fleet/cells/CommunityMech--GTDB.json @@ -1 +1 @@ -{"mech":"CommunityMech","prefix":"GTDB","base":"https://culturebotai.github.io/CommunityMech/communities/","total":370,"records":[["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"],["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Clostridial_isoDCA_Mini_Consortium.html","Clostridial isoDCA Mini Consortium"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"],["Cultivated_Meat_Contaminant_SynCom.html","Cultivated Meat Contaminant SynCom"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["DVM_Triculture.html","DVM Tri-culture"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"],["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Komagataella_Ecoli_Coinducible_Biosynthesis_Coculture.html","Komagataella-E. coli Co-inducible Biosynthesis Coculture"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["LBNL_Switchgrass_Soil_SynCom16.html","LBNL Switchgrass Soil SynCom16"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Magnetite_Sulfate_Stress_Anaerobic_Microbiome.html","Magnetite Sulfate-Stress Anaerobic Microbiome"],["Maize_Benzoxazinoid_Metabolizing_SynComs.html","Maize Benzoxazinoid-Metabolizing SynComs"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"],["Microalgae_Cyanobacteria_Bioactive_Peptide_Consortia.html","Microalgae-Cyanobacteria Bioactive Peptide Consortia"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"],["OMM12_Gnotobiotic_Mouse_Gut_Community.html","OMM12 Gnotobiotic Mouse Gut Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["PMI_Variovorax_Thermotolerance_Collection.html","PMI Variovorax Thermotolerance Collection"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Phosphitivorax_Methanoculleus_Lithosyntrophy_Phosphite_Coculture.html","Phosphitivorax-Methanoculleus Lithosyntrophic Phosphite-Oxidizing Methanogenic Culture"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Pichia_Lactiplantibacillus_CCMA_Plant_Beverage_Coculture.html","Pichia-Lactiplantibacillus CCMA Plant Beverage Coculture"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"],["QY2S1_Dehalogenimonas_BFR_Bioremediation_Consortium.html","QY2-S1 Dehalogenimonas-Rich Brominated-Flame-Retardant Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"],["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Rice_Acid_Soil_Bioinoculant_SynCom.html","Rice Acid Soil Bioinoculant SynCom"],["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"],["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"],["SPRUCE_Peatland_Methane_Cycling_Community.html","SPRUCE Peatland Methane-Cycling Microbial Community"],["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"],["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"],["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"],["Shewanella_Denitrifying_Richness_SynComs.html","Shewanella Denitrifying Richness SynComs"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"],["Shewanella_Pseudomonas_Fe0_Electrosyntrophic_Denitrifying_Consortium.html","Shewanella oneidensis + Pseudomonas aeruginosa Fe0-dependent Electro-syntrophic Denitrifying Consortium"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"],["SkinCom_Synthetic_Skin_Community.html","SkinCom Synthetic Skin Community"],["Soil_BGC_Phylum_Depth_Vegetation_Community.html","Soil Biosynthetic Gene Cluster Phylum-Depth-Vegetation Community"],["Soil_Corrinoid_B12_Reservoir_Community.html","Soil Corrinoid Reservoir Microbial Community"],["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["South_Bay_Salt_Pond_Methane_Restoration_Community.html","South Bay Salt Pond Methane Restoration Microbial Community"]]} \ No newline at end of file +{"mech":"CommunityMech","prefix":"GTDB","base":"https://culturebotai.github.io/CommunityMech/communities/","total":367,"records":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"],["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Clostridial_isoDCA_Mini_Consortium.html","Clostridial isoDCA Mini Consortium"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"],["Cultivated_Meat_Contaminant_SynCom.html","Cultivated Meat Contaminant SynCom"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["DVM_Triculture.html","DVM Tri-culture"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"],["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Komagataella_Ecoli_Coinducible_Biosynthesis_Coculture.html","Komagataella-E. coli Co-inducible Biosynthesis Coculture"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["LBNL_Switchgrass_Soil_SynCom16.html","LBNL Switchgrass Soil SynCom16"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Magnetite_Sulfate_Stress_Anaerobic_Microbiome.html","Magnetite Sulfate-Stress Anaerobic Microbiome"],["Maize_Benzoxazinoid_Metabolizing_SynComs.html","Maize Benzoxazinoid-Metabolizing SynComs"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"],["Microalgae_Cyanobacteria_Bioactive_Peptide_Consortia.html","Microalgae-Cyanobacteria Bioactive Peptide Consortia"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"],["OMM12_Gnotobiotic_Mouse_Gut_Community.html","OMM12 Gnotobiotic Mouse Gut Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["PMI_Variovorax_Thermotolerance_Collection.html","PMI Variovorax Thermotolerance Collection"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Phosphitivorax_Methanoculleus_Lithosyntrophy_Phosphite_Coculture.html","Phosphitivorax-Methanoculleus Lithosyntrophic Phosphite-Oxidizing Methanogenic Culture"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Pichia_Lactiplantibacillus_CCMA_Plant_Beverage_Coculture.html","Pichia-Lactiplantibacillus CCMA Plant Beverage Coculture"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"],["QY2S1_Dehalogenimonas_BFR_Bioremediation_Consortium.html","QY2-S1 Dehalogenimonas-Rich Brominated-Flame-Retardant Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"],["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Rice_Acid_Soil_Bioinoculant_SynCom.html","Rice Acid Soil Bioinoculant SynCom"],["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"],["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"],["SPRUCE_Peatland_Methane_Cycling_Community.html","SPRUCE Peatland Methane-Cycling Microbial Community"],["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"],["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"],["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"],["Shewanella_Denitrifying_Richness_SynComs.html","Shewanella Denitrifying Richness SynComs"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"],["Shewanella_Pseudomonas_Fe0_Electrosyntrophic_Denitrifying_Consortium.html","Shewanella oneidensis + Pseudomonas aeruginosa Fe0-dependent Electro-syntrophic Denitrifying Consortium"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"],["SkinCom_Synthetic_Skin_Community.html","SkinCom Synthetic Skin Community"],["Soil_BGC_Phylum_Depth_Vegetation_Community.html","Soil Biosynthetic Gene Cluster Phylum-Depth-Vegetation Community"],["Soil_Corrinoid_B12_Reservoir_Community.html","Soil Corrinoid Reservoir Microbial Community"],["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["South_Bay_Salt_Pond_Methane_Restoration_Community.html","South Bay Salt Pond Methane Restoration Microbial Community"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"],["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]]} \ No newline at end of file diff --git a/assets/fleet/cells/CommunityMech--NCBITaxon.json b/assets/fleet/cells/CommunityMech--NCBITaxon.json index 0424005..4828463 100644 --- a/assets/fleet/cells/CommunityMech--NCBITaxon.json +++ b/assets/fleet/cells/CommunityMech--NCBITaxon.json @@ -1 +1 @@ -{"mech":"CommunityMech","prefix":"NCBITaxon","base":"https://culturebotai.github.io/CommunityMech/communities/","total":426,"records":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"],["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"],["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Chlorella_Vulgaris_Whey_Coculture.html","Chlorella vulgaris Whey Co-culture"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Clostridial_isoDCA_Mini_Consortium.html","Clostridial isoDCA Mini Consortium"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Cultivated_Meat_Contaminant_SynCom.html","Cultivated Meat Contaminant SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["DVM_Triculture.html","DVM Tri-culture"],["Dairy_Wastewater_Algal_Cyanobacterial_Cultivation_Panel.html","Dairy Wastewater Algal-Cyanobacterial Cultivation Panel"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["FourSpecies_Aerobic_Lung_Microbiome_Model.html","Four-Species Aerobic Lung Microbiome Model"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["Horonobe_Mizunami_URL_Subsurface_Microbiome.html","Horonobe and Mizunami Underground Research Laboratory Subsurface Microbiome"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"],["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Komagataella_Ecoli_Coinducible_Biosynthesis_Coculture.html","Komagataella-E. coli Co-inducible Biosynthesis Coculture"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["LBNL_Switchgrass_Soil_SynCom16.html","LBNL Switchgrass Soil SynCom16"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Magnetite_Sulfate_Stress_Anaerobic_Microbiome.html","Magnetite Sulfate-Stress Anaerobic Microbiome"],["Maize_Benzoxazinoid_Metabolizing_SynComs.html","Maize Benzoxazinoid-Metabolizing SynComs"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Mediterranean_AM_Fungal_SixSpecies_SynCom.html","Mediterranean AM Fungal Six-Species SynCom"],["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"],["Meghalaya_Bacillus_Consortia_A22ED9.html","Meghalaya Bacillus Consortia-A22ED9"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"],["Microalgae_Cyanobacteria_Bioactive_Peptide_Consortia.html","Microalgae-Cyanobacteria Bioactive Peptide Consortia"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"],["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"],["Nitratireductor_Gordonia_Z123_LDPE_Degradation_SynCom.html","Nitratireductor-Gordonia Z123 LDPE-Degradation SynCom"],["OMM12_Gnotobiotic_Mouse_Gut_Community.html","OMM12 Gnotobiotic Mouse Gut Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"],["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["PMI_Variovorax_Thermotolerance_Collection.html","PMI Variovorax Thermotolerance Collection"],["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"],["Pelagerythrobacter_Salinicola_PES_Pyrene_Degradation_SynCom.html","Pelagerythrobacter-Salinicola PES Pyrene-Degradation SynCom"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Phosphitivorax_Methanoculleus_Lithosyntrophy_Phosphite_Coculture.html","Phosphitivorax-Methanoculleus Lithosyntrophic Phosphite-Oxidizing Methanogenic Culture"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Pichia_Lactiplantibacillus_CCMA_Plant_Beverage_Coculture.html","Pichia-Lactiplantibacillus CCMA Plant Beverage Coculture"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]]} \ No newline at end of file +{"mech":"CommunityMech","prefix":"NCBITaxon","base":"https://culturebotai.github.io/CommunityMech/communities/","total":422,"records":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"],["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"],["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Chlorella_Vulgaris_Whey_Coculture.html","Chlorella vulgaris Whey Co-culture"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Clostridial_isoDCA_Mini_Consortium.html","Clostridial isoDCA Mini Consortium"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Cultivated_Meat_Contaminant_SynCom.html","Cultivated Meat Contaminant SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["DVM_Triculture.html","DVM Tri-culture"],["Dairy_Wastewater_Algal_Cyanobacterial_Cultivation_Panel.html","Dairy Wastewater Algal-Cyanobacterial Cultivation Panel"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["FourSpecies_Aerobic_Lung_Microbiome_Model.html","Four-Species Aerobic Lung Microbiome Model"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["Horonobe_Mizunami_URL_Subsurface_Microbiome.html","Horonobe and Mizunami Underground Research Laboratory Subsurface Microbiome"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"],["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Komagataella_Ecoli_Coinducible_Biosynthesis_Coculture.html","Komagataella-E. coli Co-inducible Biosynthesis Coculture"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["LBNL_Switchgrass_Soil_SynCom16.html","LBNL Switchgrass Soil SynCom16"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Magnetite_Sulfate_Stress_Anaerobic_Microbiome.html","Magnetite Sulfate-Stress Anaerobic Microbiome"],["Maize_Benzoxazinoid_Metabolizing_SynComs.html","Maize Benzoxazinoid-Metabolizing SynComs"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Mediterranean_AM_Fungal_SixSpecies_SynCom.html","Mediterranean AM Fungal Six-Species SynCom"],["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"],["Meghalaya_Bacillus_Consortia_A22ED9.html","Meghalaya Bacillus Consortia-A22ED9"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"],["Microalgae_Cyanobacteria_Bioactive_Peptide_Consortia.html","Microalgae-Cyanobacteria Bioactive Peptide Consortia"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"],["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"],["Nitratireductor_Gordonia_Z123_LDPE_Degradation_SynCom.html","Nitratireductor-Gordonia Z123 LDPE-Degradation SynCom"],["OMM12_Gnotobiotic_Mouse_Gut_Community.html","OMM12 Gnotobiotic Mouse Gut Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"],["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["PMI_Variovorax_Thermotolerance_Collection.html","PMI Variovorax Thermotolerance Collection"],["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"],["Pelagerythrobacter_Salinicola_PES_Pyrene_Degradation_SynCom.html","Pelagerythrobacter-Salinicola PES Pyrene-Degradation SynCom"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Phosphitivorax_Methanoculleus_Lithosyntrophy_Phosphite_Coculture.html","Phosphitivorax-Methanoculleus Lithosyntrophic Phosphite-Oxidizing Methanogenic Culture"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Pichia_Lactiplantibacillus_CCMA_Plant_Beverage_Coculture.html","Pichia-Lactiplantibacillus CCMA Plant Beverage Coculture"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"]]} \ No newline at end of file diff --git a/assets/fleet/edges/CommunityMech--AntibioticMech.json b/assets/fleet/edges/CommunityMech--AntibioticMech.json index cbc53cc..99d4008 100644 --- a/assets/fleet/edges/CommunityMech--AntibioticMech.json +++ b/assets/fleet/edges/CommunityMech--AntibioticMech.json @@ -1 +1 @@ -{"a":"CommunityMech","b":"AntibioticMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","AntibioticMech":"https://culturebotai.github.io/AntibioticMech/pages/"},"n":64,"by":{"CHEBI":42,"NCBITaxon":22},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":14,"nb":30,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":9,"nb":12,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"CHEBI:33709","l":"amino acid","na":15,"nb":8,"a":[["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["antibacterial/7-3-aminopyrrolidin-1-yl-1-2-4-difluorophenyl-6-fluoro-4-oxo-1-4-dihyd.html","7-(3-aminopyrrolidin-1-yl)-1-(2,4-difluorophenyl)-6-fluoro-4-oxo-1,4-dihydro-1,8-naphthyridine-3-carboxylic"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/pipemidic-acid.html","pipemidic acid"],["antibacterial/trovafloxacin.html","trovafloxacin"],["antifungal/mediomycin-a.html","mediomycin A"],["antifungal/mediomycin-b.html","mediomycin B"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":8,"nb":8,"a":[["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"],["Sedimenting_Arabinose_Glucose_Saccharomyces_Coculture.html","Sedimenting Arabinose-Glucose Saccharomyces Coculture"]],"b":[["antifungal/anidulafungin.html","anidulafungin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/caspofungin.html","caspofungin"],["antifungal/cycloheximide.html","cycloheximide"],["antifungal/micafungin.html","micafungin"],["antifungal/oligomycin-a.html","oligomycin A"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":3,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":3,"nb":6,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":2,"nb":15,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":13,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/bromodeoxytopsentin.html","bromodeoxytopsentin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":2,"nb":7,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["antibacterial/brefeldin-a.html","brefeldin A"],["antifungal/anidulafungin.html","anidulafungin"],["antifungal/caspofungin.html","caspofungin"],["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/micafungin.html","micafungin"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":2,"nb":7,"a":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":6,"nb":2,"a":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["antibacterial/mupirocin.html","mupirocin"],["antifungal/2-4-diacetylphloroglucinol.html","2,4-diacetylphloroglucinol"]]},{"id":"CHEBI:30746","l":"benzoic acid","na":5,"nb":2,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["biocide/benzoic-acid.html","benzoic acid"],["biocide/carboxy-ptio.html","carboxy-PTIO"]]},{"id":"CHEBI:26523","l":"reactive oxygen species","na":2,"nb":2,"a":[["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"],["biocide/ozone.html","ozone"]]},{"id":"CHEBI:33282","l":"antibacterial agent","na":1,"nb":496,"a":[["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"]],"b":[["antibacterial/1-2-dodecanediol.html","1,2-dodecanediol"],["antibacterial/1-6-dihydroxy-2-methyl-9-10-anthraquinone.html","1,6-dihydroxy-2-methyl-9,10-anthraquinone"],["antibacterial/1-carbapenem-3-carboxylic-acid.html","1-carbapenem-3-carboxylic acid"],["antibacterial/1-dodecylguanidine-acetate.html","1-dodecylguanidine acetate"],["antibacterial/1-dodecylguanidine.html","1-dodecylguanidine"],["antibacterial/1-hydroxycrisamicin-a.html","1-hydroxycrisamicin A"]]},{"id":"CHEBI:16236","l":"ethanol","na":25,"nb":1,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["biocide/ethanol.html","ethanol"]]},{"id":"CHEBI:22315","l":"alkaloid","na":1,"nb":21,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["antibacterial/14-norpseurotin-a.html","14-norpseurotin A"],["antibacterial/5-bromo-8-methoxy-1-methyl-%CE%B2-carboline.html","5-bromo-8-methoxy-1-methyl-β-carboline"],["antibacterial/undecylprodigiosin.html","undecylprodigiosin"],["antifungal/feruloylagmatine.html","feruloylagmatine"],["antifungal/pyrrolnitrin.html","pyrrolnitrin"],["antifungal/sampangine.html","sampangine"]]},{"id":"CHEBI:33575","l":"carboxylic acid","na":1,"nb":11,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"]],"b":[["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefatrizine.html","cefatrizine"],["antibacterial/cefazedone.html","cefazedone"],["antibacterial/cefcapene.html","cefcapene"],["antibacterial/cefditoren.html","cefditoren"],["antibacterial/cefiderocol.html","cefiderocol"]]},{"id":"CHEBI:15366","l":"acetic acid","na":8,"nb":1,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["biocide/acetic-acid.html","acetic acid"]]},{"id":"NCBITaxon:2697049","l":"Severe acute respiratory syndrome coronavirus 2","na":1,"nb":8,"a":[["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"]],"b":[["antibacterial/3-6-diaminoacridine.html","3,6-diaminoacridine"],["antibacterial/anacardic-acid.html","anacardic acid"],["antibacterial/baicalein.html","baicalein"],["antibacterial/ebselen.html","ebselen"],["antibacterial/hexachlorophene.html","hexachlorophene"],["antifungal/disulfiram.html","disulfiram"]]},{"id":"CHEBI:30769","l":"citric acid","na":6,"nb":1,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["unspecified/citric-acid.html","citric acid"]]},{"id":"CHEBI:15904","l":"long-chain fatty acid","na":1,"nb":4,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["antibacterial/9z-12z-15z-octadeca-9-12-15-trien-6-ynoic-acid.html","(9Z,12Z,15Z)-octadeca-9,12,15-trien-6-ynoic acid"],["antifungal/10e-15z-9-12-13-trihydroxy-10-15-octadecadienoic-acid.html","(10E,15Z)-9,12,13-trihydroxy-10,15-octadecadienoic acid"],["antimycobacterial/scleropyric-acid.html","scleropyric acid"],["antiprotozoal/minquartynoic-acid.html","minquartynoic acid"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":4,"nb":1,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"CHEBI:16670","l":"peptide","na":4,"nb":1,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["antibacterial/cefbuperazone.html","cefbuperazone"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":4,"nb":1,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["biocide/formaldehyde.html","formaldehyde"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":1,"nb":4,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/oxacillin.html","oxacillin"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":3,"nb":1,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"CHEBI:60004","l":"mixture","na":1,"nb":3,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["antifungal/dimethomorph.html","dimethomorph"],["antifungal/flumorph.html","flumorph"],["biocide/urea-hydrogen-peroxide.html","urea hydrogen peroxide"]]},{"id":"CHEBI:87393","l":"hexan-1-ol","na":3,"nb":1,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["antibacterial/hexan-1-ol.html","hexan-1-ol"]]},{"id":"NCBITaxon:117187","l":"Fusarium verticillioides","na":1,"nb":3,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/fludioxonil.html","fludioxonil"]]},{"id":"NCBITaxon:5180","l":"Sclerotinia sclerotiorum","na":1,"nb":3,"a":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]],"b":[["antifungal/carboxin.html","carboxin"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/iprodione.html","iprodione"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":3,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"NCBITaxon:5480","l":"Lodderomyces parapsilosis","na":1,"nb":3,"a":[["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"CHEBI:132106","l":"sodium propionate","na":2,"nb":1,"a":[["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["antifungal/sodium-propionate.html","sodium propionate"]]},{"id":"CHEBI:15882","l":"phenol","na":2,"nb":1,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]],"b":[["biocide/phenol.html","phenol"]]},{"id":"CHEBI:16914","l":"salicylic acid","na":2,"nb":1,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"]],"b":[["antifungal/salicylic-acid.html","salicylic acid"]]},{"id":"CHEBI:26401","l":"purines","na":1,"nb":2,"a":[["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"]],"b":[["antiviral/mercaptopurine.html","mercaptopurine"],["antiviral/valganciclovir.html","valganciclovir"]]},{"id":"CHEBI:28837","l":"octanoic acid","na":2,"nb":1,"a":[["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["antibacterial/octanoic-acid.html","octanoic acid"]]},{"id":"CHEBI:30751","l":"formic acid","na":2,"nb":1,"a":[["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["antibacterial/formic-acid.html","formic acid"]]},{"id":"CHEBI:30768","l":"propionic acid","na":2,"nb":1,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["antifungal/propionic-acid.html","propionic acid"]]},{"id":"CHEBI:62412","l":"phenazine-1-carboxylic acid","na":2,"nb":1,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"]],"b":[["antifungal/phenazine-1-carboxylic-acid.html","phenazine-1-carboxylic acid"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":1,"nb":2,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"],["unspecified/streptothricin-d.html","streptothricin D"]]},{"id":"CHEBI:16188","l":"octan-1-ol","na":1,"nb":1,"a":[["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["antifungal/octan-1-ol.html","octan-1-ol"]]},{"id":"CHEBI:17642","l":"pentachlorophenol","na":1,"nb":1,"a":[["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["antifungal/pentachlorophenol.html","pentachlorophenol"]]},{"id":"CHEBI:17698","l":"chloramphenicol","na":1,"nb":1,"a":[["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"CHEBI:17847","l":"p-cresol","na":1,"nb":1,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["antifungal/p-cresol.html","p-cresol"]]},{"id":"CHEBI:17855","l":"triglyceride","na":1,"nb":1,"a":[["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["antifungal/triacetin.html","triacetin"]]},{"id":"CHEBI:195240","l":"6-methoxy-2-benzoxazolinone","na":1,"nb":1,"a":[["Maize_Benzoxazinoid_Metabolizing_SynComs.html","Maize Benzoxazinoid-Metabolizing SynComs"]],"b":[["antibacterial/6-methoxy-2-benzoxazolinone.html","6-methoxy-2-benzoxazolinone"]]},{"id":"CHEBI:22470","l":"alpha-tocopherol","na":1,"nb":1,"a":[["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"]],"b":[["antiviral/r-r-r-%CE%B1-tocopherol.html","(R,R,R)-α-tocopherol"]]},{"id":"CHEBI:23252","l":"cinnamic acids","na":1,"nb":1,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"]],"b":[["antiviral/stibavirin.html","stibavirin"]]},{"id":"CHEBI:27744","l":"glyphosate","na":1,"nb":1,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["antifungal/glyphosate.html","glyphosate"]]},{"id":"CHEBI:32079","l":"pyrrolnitrin","na":1,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["antifungal/pyrrolnitrin.html","pyrrolnitrin"]]},{"id":"CHEBI:33403","l":"elemental sulfur","na":1,"nb":1,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["antifungal/polysulfur.html","polysulfur"]]},{"id":"CHEBI:47696","l":"2,4,6-tribromophenol","na":1,"nb":1,"a":[["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]],"b":[["antifungal/2-4-6-tribromophenol.html","2,4,6-tribromophenol"]]},{"id":"CHEBI:48347","l":"triclocarban","na":1,"nb":1,"a":[["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"]],"b":[["biocide/triclocarban.html","triclocarban"]]},{"id":"CHEBI:61121","l":"oxylipin","na":1,"nb":1,"a":[["Tomato_Oxylipin_SynCom3.html","Tomato Oxylipin-Protective SynCom3"]],"b":[["antifungal/10e-15z-9-12-13-trihydroxy-10-15-octadecadienoic-acid.html","(10E,15Z)-9,12,13-trihydroxy-10,15-octadecadienoic acid"]]},{"id":"CHEBI:6824","l":"hexamethylenetetramine","na":1,"nb":1,"a":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"]],"b":[["antibacterial/hexamethylenetetramine.html","hexamethylenetetramine"]]},{"id":"CHEBI:78688","l":"2,4-diacetylphloroglucinol","na":1,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["antifungal/2-4-diacetylphloroglucinol.html","2,4-diacetylphloroglucinol"]]},{"id":"CHEBI:8269","l":"Pleuromutilin","na":1,"nb":1,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]],"b":[["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"CHEBI:8653","l":"pyocyanine","na":1,"nb":1,"a":[["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["antibacterial/pyocyanine.html","pyocyanine"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":1,"nb":1,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["antibacterial/nocardamine.html","nocardamine"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":1,"nb":1,"a":[["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":1,"nb":1,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"NCBITaxon:536","l":"Chromobacterium violaceum","na":1,"nb":1,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"]],"b":[["unspecified/romidepsin.html","romidepsin"]]},{"id":"NCBITaxon:68264","l":"Streptomyces rishiriensis","na":1,"nb":1,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["antibacterial/coumermycin-a1.html","coumermycin A1"]]}]} \ No newline at end of file +{"a":"CommunityMech","b":"AntibioticMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","AntibioticMech":"https://culturebotai.github.io/AntibioticMech/pages/"},"n":63,"by":{"CHEBI":42,"NCBITaxon":21},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":14,"nb":30,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":9,"nb":12,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"CHEBI:33709","l":"amino acid","na":14,"nb":8,"a":[["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["antibacterial/7-3-aminopyrrolidin-1-yl-1-2-4-difluorophenyl-6-fluoro-4-oxo-1-4-dihyd.html","7-(3-aminopyrrolidin-1-yl)-1-(2,4-difluorophenyl)-6-fluoro-4-oxo-1,4-dihydro-1,8-naphthyridine-3-carboxylic"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/pipemidic-acid.html","pipemidic acid"],["antibacterial/trovafloxacin.html","trovafloxacin"],["antifungal/mediomycin-a.html","mediomycin A"],["antifungal/mediomycin-b.html","mediomycin B"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":8,"nb":8,"a":[["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"],["Sedimenting_Arabinose_Glucose_Saccharomyces_Coculture.html","Sedimenting Arabinose-Glucose Saccharomyces Coculture"]],"b":[["antifungal/anidulafungin.html","anidulafungin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/caspofungin.html","caspofungin"],["antifungal/cycloheximide.html","cycloheximide"],["antifungal/micafungin.html","micafungin"],["antifungal/oligomycin-a.html","oligomycin A"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":3,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":3,"nb":6,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":2,"nb":15,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":13,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/bromodeoxytopsentin.html","bromodeoxytopsentin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":2,"nb":7,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["antibacterial/brefeldin-a.html","brefeldin A"],["antifungal/anidulafungin.html","anidulafungin"],["antifungal/caspofungin.html","caspofungin"],["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/micafungin.html","micafungin"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":2,"nb":7,"a":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":6,"nb":2,"a":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["antibacterial/mupirocin.html","mupirocin"],["antifungal/2-4-diacetylphloroglucinol.html","2,4-diacetylphloroglucinol"]]},{"id":"CHEBI:30746","l":"benzoic acid","na":5,"nb":2,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["biocide/benzoic-acid.html","benzoic acid"],["biocide/carboxy-ptio.html","carboxy-PTIO"]]},{"id":"CHEBI:26523","l":"reactive oxygen species","na":2,"nb":2,"a":[["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"],["biocide/ozone.html","ozone"]]},{"id":"CHEBI:33282","l":"antibacterial agent","na":1,"nb":496,"a":[["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"]],"b":[["antibacterial/1-2-dodecanediol.html","1,2-dodecanediol"],["antibacterial/1-6-dihydroxy-2-methyl-9-10-anthraquinone.html","1,6-dihydroxy-2-methyl-9,10-anthraquinone"],["antibacterial/1-carbapenem-3-carboxylic-acid.html","1-carbapenem-3-carboxylic acid"],["antibacterial/1-dodecylguanidine-acetate.html","1-dodecylguanidine acetate"],["antibacterial/1-dodecylguanidine.html","1-dodecylguanidine"],["antibacterial/1-hydroxycrisamicin-a.html","1-hydroxycrisamicin A"]]},{"id":"CHEBI:16236","l":"ethanol","na":25,"nb":1,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["biocide/ethanol.html","ethanol"]]},{"id":"CHEBI:22315","l":"alkaloid","na":1,"nb":21,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["antibacterial/14-norpseurotin-a.html","14-norpseurotin A"],["antibacterial/5-bromo-8-methoxy-1-methyl-%CE%B2-carboline.html","5-bromo-8-methoxy-1-methyl-β-carboline"],["antibacterial/undecylprodigiosin.html","undecylprodigiosin"],["antifungal/feruloylagmatine.html","feruloylagmatine"],["antifungal/pyrrolnitrin.html","pyrrolnitrin"],["antifungal/sampangine.html","sampangine"]]},{"id":"CHEBI:33575","l":"carboxylic acid","na":1,"nb":11,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"]],"b":[["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefatrizine.html","cefatrizine"],["antibacterial/cefazedone.html","cefazedone"],["antibacterial/cefcapene.html","cefcapene"],["antibacterial/cefditoren.html","cefditoren"],["antibacterial/cefiderocol.html","cefiderocol"]]},{"id":"CHEBI:15366","l":"acetic acid","na":8,"nb":1,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["biocide/acetic-acid.html","acetic acid"]]},{"id":"NCBITaxon:2697049","l":"Severe acute respiratory syndrome coronavirus 2","na":1,"nb":8,"a":[["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"]],"b":[["antibacterial/3-6-diaminoacridine.html","3,6-diaminoacridine"],["antibacterial/anacardic-acid.html","anacardic acid"],["antibacterial/baicalein.html","baicalein"],["antibacterial/ebselen.html","ebselen"],["antibacterial/hexachlorophene.html","hexachlorophene"],["antifungal/disulfiram.html","disulfiram"]]},{"id":"CHEBI:30769","l":"citric acid","na":5,"nb":1,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["unspecified/citric-acid.html","citric acid"]]},{"id":"CHEBI:15904","l":"long-chain fatty acid","na":1,"nb":4,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["antibacterial/9z-12z-15z-octadeca-9-12-15-trien-6-ynoic-acid.html","(9Z,12Z,15Z)-octadeca-9,12,15-trien-6-ynoic acid"],["antifungal/10e-15z-9-12-13-trihydroxy-10-15-octadecadienoic-acid.html","(10E,15Z)-9,12,13-trihydroxy-10,15-octadecadienoic acid"],["antimycobacterial/scleropyric-acid.html","scleropyric acid"],["antiprotozoal/minquartynoic-acid.html","minquartynoic acid"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":4,"nb":1,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"CHEBI:16670","l":"peptide","na":4,"nb":1,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["antibacterial/cefbuperazone.html","cefbuperazone"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":1,"nb":4,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/oxacillin.html","oxacillin"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":3,"nb":1,"a":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["biocide/formaldehyde.html","formaldehyde"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":3,"nb":1,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"CHEBI:60004","l":"mixture","na":1,"nb":3,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["antifungal/dimethomorph.html","dimethomorph"],["antifungal/flumorph.html","flumorph"],["biocide/urea-hydrogen-peroxide.html","urea hydrogen peroxide"]]},{"id":"CHEBI:87393","l":"hexan-1-ol","na":3,"nb":1,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["antibacterial/hexan-1-ol.html","hexan-1-ol"]]},{"id":"NCBITaxon:117187","l":"Fusarium verticillioides","na":1,"nb":3,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/fludioxonil.html","fludioxonil"]]},{"id":"NCBITaxon:5180","l":"Sclerotinia sclerotiorum","na":1,"nb":3,"a":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]],"b":[["antifungal/carboxin.html","carboxin"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/iprodione.html","iprodione"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":3,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"NCBITaxon:5480","l":"Lodderomyces parapsilosis","na":1,"nb":3,"a":[["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"CHEBI:132106","l":"sodium propionate","na":2,"nb":1,"a":[["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["antifungal/sodium-propionate.html","sodium propionate"]]},{"id":"CHEBI:15882","l":"phenol","na":2,"nb":1,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]],"b":[["biocide/phenol.html","phenol"]]},{"id":"CHEBI:16914","l":"salicylic acid","na":2,"nb":1,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"]],"b":[["antifungal/salicylic-acid.html","salicylic acid"]]},{"id":"CHEBI:26401","l":"purines","na":1,"nb":2,"a":[["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"]],"b":[["antiviral/mercaptopurine.html","mercaptopurine"],["antiviral/valganciclovir.html","valganciclovir"]]},{"id":"CHEBI:28837","l":"octanoic acid","na":2,"nb":1,"a":[["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["antibacterial/octanoic-acid.html","octanoic acid"]]},{"id":"CHEBI:30751","l":"formic acid","na":2,"nb":1,"a":[["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["antibacterial/formic-acid.html","formic acid"]]},{"id":"CHEBI:30768","l":"propionic acid","na":2,"nb":1,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["antifungal/propionic-acid.html","propionic acid"]]},{"id":"CHEBI:62412","l":"phenazine-1-carboxylic acid","na":2,"nb":1,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"]],"b":[["antifungal/phenazine-1-carboxylic-acid.html","phenazine-1-carboxylic acid"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":1,"nb":2,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"],["unspecified/streptothricin-d.html","streptothricin D"]]},{"id":"CHEBI:16188","l":"octan-1-ol","na":1,"nb":1,"a":[["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["antifungal/octan-1-ol.html","octan-1-ol"]]},{"id":"CHEBI:17642","l":"pentachlorophenol","na":1,"nb":1,"a":[["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["antifungal/pentachlorophenol.html","pentachlorophenol"]]},{"id":"CHEBI:17698","l":"chloramphenicol","na":1,"nb":1,"a":[["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"CHEBI:17847","l":"p-cresol","na":1,"nb":1,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["antifungal/p-cresol.html","p-cresol"]]},{"id":"CHEBI:17855","l":"triglyceride","na":1,"nb":1,"a":[["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["antifungal/triacetin.html","triacetin"]]},{"id":"CHEBI:195240","l":"6-methoxy-2-benzoxazolinone","na":1,"nb":1,"a":[["Maize_Benzoxazinoid_Metabolizing_SynComs.html","Maize Benzoxazinoid-Metabolizing SynComs"]],"b":[["antibacterial/6-methoxy-2-benzoxazolinone.html","6-methoxy-2-benzoxazolinone"]]},{"id":"CHEBI:22470","l":"alpha-tocopherol","na":1,"nb":1,"a":[["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"]],"b":[["antiviral/r-r-r-%CE%B1-tocopherol.html","(R,R,R)-α-tocopherol"]]},{"id":"CHEBI:23252","l":"cinnamic acids","na":1,"nb":1,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"]],"b":[["antiviral/stibavirin.html","stibavirin"]]},{"id":"CHEBI:27744","l":"glyphosate","na":1,"nb":1,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["antifungal/glyphosate.html","glyphosate"]]},{"id":"CHEBI:32079","l":"pyrrolnitrin","na":1,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["antifungal/pyrrolnitrin.html","pyrrolnitrin"]]},{"id":"CHEBI:33403","l":"elemental sulfur","na":1,"nb":1,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["antifungal/polysulfur.html","polysulfur"]]},{"id":"CHEBI:47696","l":"2,4,6-tribromophenol","na":1,"nb":1,"a":[["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]],"b":[["antifungal/2-4-6-tribromophenol.html","2,4,6-tribromophenol"]]},{"id":"CHEBI:48347","l":"triclocarban","na":1,"nb":1,"a":[["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"]],"b":[["biocide/triclocarban.html","triclocarban"]]},{"id":"CHEBI:61121","l":"oxylipin","na":1,"nb":1,"a":[["Tomato_Oxylipin_SynCom3.html","Tomato Oxylipin-Protective SynCom3"]],"b":[["antifungal/10e-15z-9-12-13-trihydroxy-10-15-octadecadienoic-acid.html","(10E,15Z)-9,12,13-trihydroxy-10,15-octadecadienoic acid"]]},{"id":"CHEBI:6824","l":"hexamethylenetetramine","na":1,"nb":1,"a":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"]],"b":[["antibacterial/hexamethylenetetramine.html","hexamethylenetetramine"]]},{"id":"CHEBI:78688","l":"2,4-diacetylphloroglucinol","na":1,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["antifungal/2-4-diacetylphloroglucinol.html","2,4-diacetylphloroglucinol"]]},{"id":"CHEBI:8269","l":"Pleuromutilin","na":1,"nb":1,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]],"b":[["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"CHEBI:8653","l":"pyocyanine","na":1,"nb":1,"a":[["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["antibacterial/pyocyanine.html","pyocyanine"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":1,"nb":1,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["antibacterial/nocardamine.html","nocardamine"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":1,"nb":1,"a":[["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":1,"nb":1,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"NCBITaxon:68264","l":"Streptomyces rishiriensis","na":1,"nb":1,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["antibacterial/coumermycin-a1.html","coumermycin A1"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/CommunityMech--CellStructureMech.json b/assets/fleet/edges/CommunityMech--CellStructureMech.json index b672981..5299ce6 100644 --- a/assets/fleet/edges/CommunityMech--CellStructureMech.json +++ b/assets/fleet/edges/CommunityMech--CellStructureMech.json @@ -1 +1 @@ -{"a":"CommunityMech","b":"CellStructureMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","CellStructureMech":"https://culturebotai.github.io/CellStructureMech/pages/structures/"},"n":60,"by":{"NCBITaxon":36,"CHEBI":13,"GO":11},"terms":[{"id":"NCBITaxon:2","l":"Bacteria","na":56,"nb":89,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"]],"b":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]]},{"id":"NCBITaxon:2157","l":"Archaea","na":15,"nb":39,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"]],"b":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":14,"nb":31,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]],"b":[["appendage/curli.html","curli"],["appendage/p_pilus.html","P pilus"],["appendage/pilus.html","pilus"],["appendage/type_i_pilus.html","type I pilus"],["cytoskeleton/parm_filament.html","ParM filament"],["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":14,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["cytoskeleton/alfa_filament.html","AlfA filament"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":8,"nb":190,"a":[["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"],["Sedimenting_Arabinose_Glucose_Saccharomyces_Coculture.html","Sedimenting Arabinose-Glucose Saccharomyces Coculture"]],"b":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"],["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/septin_ring.html","septin ring"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"],["cytoskeleton/spindle_pole_body.html","spindle pole body"]]},{"id":"NCBITaxon:1239","l":"Bacillota","na":6,"nb":9,"a":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["Thermophilic_ExSitu_Biomethanation_Mixed_Culture.html","Thermophilic Ex-Situ Biomethanation Mixed Culture"]],"b":[["spore/endospore_coat.html","endospore coat"],["spore/endospore_core.html","endospore core"],["spore/endospore_cortex.html","endospore cortex"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"],["spore/endospore_forming_forespore.html","endospore-forming forespore"],["spore/exosporium.html","exosporium"]]},{"id":"GO:0015979","l":"photosynthesis","na":44,"nb":5,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"],["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":75,"nb":3,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"],["other/pyrenoid.html","pyrenoid"]]},{"id":"NCBITaxon:3055","l":"Chlamydomonas reinhardtii","na":3,"nb":58,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]],"b":[["appendage/ciliary_membrane.html","ciliary membrane"],["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"],["appendage/mastigoneme.html","mastigoneme"],["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_a_tubule_inner_sheath.html","axonemal A tubule inner sheath"]]},{"id":"NCBITaxon:201174","l":"Actinomycetota","na":10,"nb":3,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":9,"nb":3,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"]],"b":[["appendage/type_iv_pilus.html","type IV pilus"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]]},{"id":"NCBITaxon:1224","l":"Pseudomonadota","na":8,"nb":3,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"]],"b":[["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["microcompartment/carboxysome.html","carboxysome"],["ribonucleoprotein/bacterial_degradosome.html","bacterial degradosome"]]},{"id":"CHEBI:17029","l":"chitin","na":4,"nb":3,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]],"b":[["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["membrane_organelle/chitosome.html","chitosome"],["spore/microsporidian_type_endospore.html","microsporidian-type endospore"]]},{"id":"GO:0015977","l":"carbon fixation","na":33,"nb":2,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["other/pyrenoid.html","pyrenoid"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":2,"nb":15,"a":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]]},{"id":"NCBITaxon:1117","l":"Cyanobacteriota","na":2,"nb":13,"a":[["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]],"b":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/photosystem_i.html","photosystem I"],["energy_complex/photosystem_ii.html","photosystem II"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]]},{"id":"NCBITaxon:1148","l":"Synechocystis sp. PCC 6803","na":2,"nb":11,"a":[["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["inclusion/cyanophycin_granule.html","cyanophycin granule"],["inclusion/glycogen_granule.html","glycogen granule"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"]]},{"id":"GO:0019684","l":"photosynthesis, light reaction","na":2,"nb":9,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]],"b":[["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":6,"nb":2,"a":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":2,"nb":4,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"],["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]]},{"id":"NCBITaxon:203682","l":"Planctomycetota","na":3,"nb":2,"a":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"]],"b":[["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"]]},{"id":"NCBITaxon:28211","l":"Alphaproteobacteria","na":2,"nb":3,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]]},{"id":"GO:0033103","l":"protein secretion by the type VI secretion system","na":2,"nb":2,"a":[["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"]],"b":[["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"],["secretion_system/type_vi_secretion_system_contractile_sheath.html","type VI secretion system contractile sheath"]]},{"id":"NCBITaxon:1236","l":"Gammaproteobacteria","na":2,"nb":2,"a":[["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"],["secretion_system/type_iii_protein_secretion_system_complex.html","type III protein secretion system complex"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":2,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["envelope/periplasmic_space.html","periplasmic space"],["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":2,"nb":2,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["cytoskeleton/tubz_filament.html","TubZ filament"],["inclusion/parasporal_crystal.html","parasporal crystal"]]},{"id":"NCBITaxon:1763","l":"Mycobacterium","na":2,"nb":2,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]]},{"id":"NCBITaxon:2759","l":"Eukaryota","na":1,"nb":49,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"]],"b":[["appendage/paraflagellar_rod.html","paraflagellar rod"],["cytoskeleton/conoid.html","conoid"],["cytoskeleton/cytoophidium.html","cytoophidium"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":21,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":1,"nb":15,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]]},{"id":"NCBITaxon:4751","l":"Fungi","na":1,"nb":11,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/septin_ring.html","septin ring"],["envelope/capsule.html","capsule"],["envelope/eisosome_membrane_domain_mcc.html","eisosome membrane domain/MCC"],["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["envelope/plasma_membrane.html","plasma membrane"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":1,"nb":8,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["other/ap_5_adaptor_complex.html","AP-5 adaptor complex"],["ribonucleoprotein/u11_snrnp.html","U11 snRNP"],["ribonucleoprotein/u11_u12_snrnp.html","U11/U12 snRNP"],["ribonucleoprotein/u12_snrnp.html","U12 snRNP"],["ribonucleoprotein/u4atac_snrnp.html","U4atac snRNP"],["ribonucleoprotein/u4atac_u6atac_snrnp.html","U4atac/U6atac snRNP"]]},{"id":"NCBITaxon:976","l":"Bacteroidota","na":7,"nb":1,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["secretion_system/type_ix_protein_secretion_system_complex.html","type IX protein secretion system complex"]]},{"id":"NCBITaxon:32046","l":"Synechococcus elongatus","na":6,"nb":1,"a":[["Synechococcus_Bacillus_SPC.html","Synechococcus-Bacillus Synthetic Photosynthetic Consortium"],["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"],["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"],["Synechococcus_Saccharomyces_SPC.html","Synechococcus-Saccharomyces Synthetic Photosynthetic Consortium"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["energy_complex/photosystem_i.html","photosystem I"]]},{"id":"GO:0006635","l":"fatty acid beta-oxidation","na":5,"nb":1,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["membrane_organelle/peroxisomal_matrix.html","peroxisomal matrix"]]},{"id":"GO:0006935","l":"chemotaxis","na":5,"nb":1,"a":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["SynCom_MetG2_Rhizobacteria_Sugarcane_Stress_Resilience.html","SynCom MetG2 Rhizobacteria Sugarcane Stress Resilience"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"],["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]]},{"id":"GO:0071973","l":"bacterial-type flagellum-dependent cell motility","na":1,"nb":4,"a":[["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/periplasmic_flagellum.html","periplasmic flagellum"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":3,"nb":1,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["membrane_organelle/trichocyst.html","trichocyst"]]},{"id":"CHEBI:46726","l":"magnetite","na":3,"nb":1,"a":[["Magnetite_Sulfate_Stress_Anaerobic_Microbiome.html","Magnetite Sulfate-Stress Anaerobic Microbiome"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Tropidoatractus_Magnetotacticus_Tripartite_Syntrophy.html","Tropidoatractus magnetotacticus Magnetotactic Ciliate Tripartite Syntrophy"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"]]},{"id":"NCBITaxon:5722","l":"Trichomonas vaginalis","na":1,"nb":3,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["membrane_organelle/hydrogenosomal_membrane.html","hydrogenosomal membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/hydrogenosome_lumen.html","hydrogenosome lumen"]]},{"id":"CHEBI:15422","l":"ATP","na":2,"nb":1,"a":[["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]]},{"id":"CHEBI:16838","l":"polyphosphate","na":2,"nb":1,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"]],"b":[["membrane_organelle/acidocalcisome.html","acidocalcisome"]]},{"id":"GO:0006260","l":"DNA replication","na":1,"nb":2,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"],["other/single_stranded_dna_binding_protein_complex.html","single-stranded DNA-binding protein complex"]]},{"id":"GO:0009252","l":"peptidoglycan biosynthetic process","na":1,"nb":2,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"]],"b":[["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/elongasome.html","elongasome"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":1,"nb":2,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":2,"nb":1,"a":[["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]],"b":[["other/cellulosome.html","cellulosome"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus (strain ATCC 27405 / DSM 1237 / JCM 9322 / NBRC 103400 / NCIMB 10682 / NRRL B-4536 / VPI 7372)","na":2,"nb":1,"a":[["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["other/cellulosome.html","cellulosome"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":2,"nb":1,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"]],"b":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":1,"nb":2,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]]},{"id":"NCBITaxon:4890","l":"Ascomycota","na":1,"nb":2,"a":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["other/nuclear_pore_central_transport_channel.html","nuclear pore central transport channel"],["other/nuclear_pore_linkers.html","nuclear pore linkers"]]},{"id":"CHEBI:17855","l":"triglyceride","na":1,"nb":1,"a":[["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["inclusion/lipid_droplet.html","lipid droplet"]]},{"id":"CHEBI:18248","l":"iron atom","na":1,"nb":1,"a":[["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"]]},{"id":"CHEBI:28087","l":"glycogen","na":1,"nb":1,"a":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]],"b":[["inclusion/glycogen_granule.html","glycogen granule"]]},{"id":"CHEBI:33403","l":"elemental sulfur","na":1,"nb":1,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["inclusion/sulfur_globule.html","sulfur globule"]]},{"id":"CHEBI:53388","l":"poly(hydroxybutyrate)","na":1,"nb":1,"a":[["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"]],"b":[["inclusion/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]]},{"id":"GO:0006412","l":"translation","na":1,"nb":1,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["ribonucleoprotein/ribosome.html","ribosome"]]},{"id":"GO:0055085","l":"transmembrane transport","na":1,"nb":1,"a":[["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"]],"b":[["envelope/plasma_membrane.html","plasma membrane"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":1,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]],"b":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]]},{"id":"NCBITaxon:203691","l":"Spirochaetota","na":1,"nb":1,"a":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":1,"nb":1,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"]]}]} \ No newline at end of file +{"a":"CommunityMech","b":"CellStructureMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","CellStructureMech":"https://culturebotai.github.io/CellStructureMech/pages/structures/"},"n":60,"by":{"NCBITaxon":36,"CHEBI":13,"GO":11},"terms":[{"id":"NCBITaxon:2","l":"Bacteria","na":56,"nb":89,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"]],"b":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]]},{"id":"NCBITaxon:2157","l":"Archaea","na":15,"nb":39,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"]],"b":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":14,"nb":31,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]],"b":[["appendage/curli.html","curli"],["appendage/p_pilus.html","P pilus"],["appendage/pilus.html","pilus"],["appendage/type_i_pilus.html","type I pilus"],["cytoskeleton/parm_filament.html","ParM filament"],["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":14,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["cytoskeleton/alfa_filament.html","AlfA filament"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":8,"nb":190,"a":[["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"],["Sedimenting_Arabinose_Glucose_Saccharomyces_Coculture.html","Sedimenting Arabinose-Glucose Saccharomyces Coculture"]],"b":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"],["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/septin_ring.html","septin ring"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"],["cytoskeleton/spindle_pole_body.html","spindle pole body"]]},{"id":"NCBITaxon:1239","l":"Bacillota","na":6,"nb":9,"a":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["Thermophilic_ExSitu_Biomethanation_Mixed_Culture.html","Thermophilic Ex-Situ Biomethanation Mixed Culture"]],"b":[["spore/endospore_coat.html","endospore coat"],["spore/endospore_core.html","endospore core"],["spore/endospore_cortex.html","endospore cortex"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"],["spore/endospore_forming_forespore.html","endospore-forming forespore"],["spore/exosporium.html","exosporium"]]},{"id":"GO:0015979","l":"photosynthesis","na":44,"nb":5,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"],["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":75,"nb":3,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"],["other/pyrenoid.html","pyrenoid"]]},{"id":"NCBITaxon:3055","l":"Chlamydomonas reinhardtii","na":3,"nb":58,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]],"b":[["appendage/ciliary_membrane.html","ciliary membrane"],["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"],["appendage/mastigoneme.html","mastigoneme"],["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_a_tubule_inner_sheath.html","axonemal A tubule inner sheath"]]},{"id":"NCBITaxon:201174","l":"Actinomycetota","na":10,"nb":3,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":9,"nb":3,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"]],"b":[["appendage/type_iv_pilus.html","type IV pilus"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]]},{"id":"NCBITaxon:1224","l":"Pseudomonadota","na":8,"nb":3,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"]],"b":[["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["microcompartment/carboxysome.html","carboxysome"],["ribonucleoprotein/bacterial_degradosome.html","bacterial degradosome"]]},{"id":"CHEBI:17029","l":"chitin","na":4,"nb":3,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]],"b":[["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["membrane_organelle/chitosome.html","chitosome"],["spore/microsporidian_type_endospore.html","microsporidian-type endospore"]]},{"id":"GO:0015977","l":"carbon fixation","na":33,"nb":2,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["other/pyrenoid.html","pyrenoid"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":2,"nb":15,"a":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]]},{"id":"NCBITaxon:1117","l":"Cyanobacteriota","na":2,"nb":13,"a":[["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]],"b":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/photosystem_i.html","photosystem I"],["energy_complex/photosystem_ii.html","photosystem II"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]]},{"id":"NCBITaxon:1148","l":"Synechocystis sp. PCC 6803","na":2,"nb":11,"a":[["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["inclusion/cyanophycin_granule.html","cyanophycin granule"],["inclusion/glycogen_granule.html","glycogen granule"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"]]},{"id":"GO:0019684","l":"photosynthesis, light reaction","na":2,"nb":9,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]],"b":[["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":6,"nb":2,"a":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":2,"nb":4,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"],["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]]},{"id":"NCBITaxon:203682","l":"Planctomycetota","na":3,"nb":2,"a":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"]],"b":[["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"]]},{"id":"NCBITaxon:28211","l":"Alphaproteobacteria","na":2,"nb":3,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]]},{"id":"GO:0033103","l":"protein secretion by the type VI secretion system","na":2,"nb":2,"a":[["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"]],"b":[["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"],["secretion_system/type_vi_secretion_system_contractile_sheath.html","type VI secretion system contractile sheath"]]},{"id":"NCBITaxon:1236","l":"Gammaproteobacteria","na":2,"nb":2,"a":[["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"],["secretion_system/type_iii_protein_secretion_system_complex.html","type III protein secretion system complex"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":2,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["envelope/periplasmic_space.html","periplasmic space"],["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":2,"nb":2,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["cytoskeleton/tubz_filament.html","TubZ filament"],["inclusion/parasporal_crystal.html","parasporal crystal"]]},{"id":"NCBITaxon:1763","l":"Mycobacterium","na":2,"nb":2,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]]},{"id":"NCBITaxon:2759","l":"Eukaryota","na":1,"nb":49,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"]],"b":[["appendage/paraflagellar_rod.html","paraflagellar rod"],["cytoskeleton/conoid.html","conoid"],["cytoskeleton/cytoophidium.html","cytoophidium"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":21,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":1,"nb":15,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]]},{"id":"NCBITaxon:4751","l":"Fungi","na":1,"nb":11,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/septin_ring.html","septin ring"],["envelope/capsule.html","capsule"],["envelope/eisosome_membrane_domain_mcc.html","eisosome membrane domain/MCC"],["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["envelope/plasma_membrane.html","plasma membrane"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":1,"nb":8,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["other/ap_5_adaptor_complex.html","AP-5 adaptor complex"],["ribonucleoprotein/u11_snrnp.html","U11 snRNP"],["ribonucleoprotein/u11_u12_snrnp.html","U11/U12 snRNP"],["ribonucleoprotein/u12_snrnp.html","U12 snRNP"],["ribonucleoprotein/u4atac_snrnp.html","U4atac snRNP"],["ribonucleoprotein/u4atac_u6atac_snrnp.html","U4atac/U6atac snRNP"]]},{"id":"NCBITaxon:976","l":"Bacteroidota","na":7,"nb":1,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["secretion_system/type_ix_protein_secretion_system_complex.html","type IX protein secretion system complex"]]},{"id":"NCBITaxon:32046","l":"Synechococcus elongatus","na":6,"nb":1,"a":[["Synechococcus_Bacillus_SPC.html","Synechococcus-Bacillus Synthetic Photosynthetic Consortium"],["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"],["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"],["Synechococcus_Saccharomyces_SPC.html","Synechococcus-Saccharomyces Synthetic Photosynthetic Consortium"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["energy_complex/photosystem_i.html","photosystem I"]]},{"id":"GO:0006635","l":"fatty acid beta-oxidation","na":5,"nb":1,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["membrane_organelle/peroxisomal_matrix.html","peroxisomal matrix"]]},{"id":"GO:0006935","l":"chemotaxis","na":5,"nb":1,"a":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["SynCom_MetG2_Rhizobacteria_Sugarcane_Stress_Resilience.html","SynCom MetG2 Rhizobacteria Sugarcane Stress Resilience"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"],["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]]},{"id":"GO:0071973","l":"bacterial-type flagellum-dependent cell motility","na":1,"nb":4,"a":[["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/periplasmic_flagellum.html","periplasmic flagellum"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":3,"nb":1,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["membrane_organelle/trichocyst.html","trichocyst"]]},{"id":"CHEBI:46726","l":"magnetite","na":3,"nb":1,"a":[["Magnetite_Sulfate_Stress_Anaerobic_Microbiome.html","Magnetite Sulfate-Stress Anaerobic Microbiome"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Tropidoatractus_Magnetotacticus_Tripartite_Syntrophy.html","Tropidoatractus magnetotacticus Magnetotactic Ciliate Tripartite Syntrophy"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"]]},{"id":"NCBITaxon:5722","l":"Trichomonas vaginalis","na":1,"nb":3,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["membrane_organelle/hydrogenosomal_membrane.html","hydrogenosomal membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/hydrogenosome_lumen.html","hydrogenosome lumen"]]},{"id":"CHEBI:15422","l":"ATP","na":2,"nb":1,"a":[["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]]},{"id":"GO:0006260","l":"DNA replication","na":1,"nb":2,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"],["other/single_stranded_dna_binding_protein_complex.html","single-stranded DNA-binding protein complex"]]},{"id":"GO:0009252","l":"peptidoglycan biosynthetic process","na":1,"nb":2,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"]],"b":[["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/elongasome.html","elongasome"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":1,"nb":2,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":2,"nb":1,"a":[["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]],"b":[["other/cellulosome.html","cellulosome"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus (strain ATCC 27405 / DSM 1237 / JCM 9322 / NBRC 103400 / NCIMB 10682 / NRRL B-4536 / VPI 7372)","na":2,"nb":1,"a":[["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["other/cellulosome.html","cellulosome"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":2,"nb":1,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"]],"b":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":1,"nb":2,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]]},{"id":"NCBITaxon:4890","l":"Ascomycota","na":1,"nb":2,"a":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["other/nuclear_pore_central_transport_channel.html","nuclear pore central transport channel"],["other/nuclear_pore_linkers.html","nuclear pore linkers"]]},{"id":"CHEBI:16838","l":"polyphosphate","na":1,"nb":1,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"]],"b":[["membrane_organelle/acidocalcisome.html","acidocalcisome"]]},{"id":"CHEBI:17855","l":"triglyceride","na":1,"nb":1,"a":[["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["inclusion/lipid_droplet.html","lipid droplet"]]},{"id":"CHEBI:18248","l":"iron atom","na":1,"nb":1,"a":[["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"]]},{"id":"CHEBI:28087","l":"glycogen","na":1,"nb":1,"a":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]],"b":[["inclusion/glycogen_granule.html","glycogen granule"]]},{"id":"CHEBI:33403","l":"elemental sulfur","na":1,"nb":1,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["inclusion/sulfur_globule.html","sulfur globule"]]},{"id":"CHEBI:53388","l":"poly(hydroxybutyrate)","na":1,"nb":1,"a":[["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"]],"b":[["inclusion/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]]},{"id":"GO:0006412","l":"translation","na":1,"nb":1,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["ribonucleoprotein/ribosome.html","ribosome"]]},{"id":"GO:0055085","l":"transmembrane transport","na":1,"nb":1,"a":[["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"]],"b":[["envelope/plasma_membrane.html","plasma membrane"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":1,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]],"b":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]]},{"id":"NCBITaxon:203691","l":"Spirochaetota","na":1,"nb":1,"a":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":1,"nb":1,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/CommunityMech--CultureMech.json b/assets/fleet/edges/CommunityMech--CultureMech.json index fab0c6e..75d68cb 100644 --- a/assets/fleet/edges/CommunityMech--CultureMech.json +++ b/assets/fleet/edges/CommunityMech--CultureMech.json @@ -1 +1 @@ -{"a":"CommunityMech","b":"CultureMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","CultureMech":"https://github.com/CultureBotAI/CultureMech/blob/main/data/merge_yaml/merged/"},"n":151,"by":{"CHEBI":138,"NCBITaxon":8,"ENVO":5},"terms":[{"id":"CHEBI:16526","l":"carbon dioxide","na":75,"nb":711,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["4_yaco_media.yaml","4_yaco_media"],["8kg_4_medium.yaml","8kg_4_medium"],["ABSS2.yaml","abss2"],["ABYSSISOLIBACTER_MEDIUM.yaml","abyssisolibacter_medium"]]},{"id":"CHEBI:18276","l":"dihydrogen","na":58,"nb":231,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["4_yaco_media.yaml","4_yaco_media"],["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["AMMONIFEX_DEGENSII_MEDIUM.yaml","ammonifex_degensii_medium"],["AP11MH_medium.yaml","ap11mh_medium"]]},{"id":"CHEBI:30089","l":"acetate","na":78,"nb":31,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"]],"b":[["AMOEBOBACTER_MEDIUM.yaml","amoebobacter_medium"],["FWAFC.yaml","fwafc"],["M9ZB_with_acetate.yaml","m9zb_with_acetate"],["MEDIUM_FOR_CHLOROBIUM_FERROOXIDANS.yaml","medium_for_chlorobium_ferrooxidans"],["NMM_with_acetate.yaml","nmm_with_acetate"],["Thauera_aminoaromatica_medium.yaml","thauera_aminoaromatica_medium"]]},{"id":"CHEBI:17234","l":"glucose","na":26,"nb":1113,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mh_medium.yaml","15_mh_medium"],["15_mh_medium__b586cb85.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"]]},{"id":"CHEBI:16236","l":"ethanol","na":25,"nb":70,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["ACETOBACTER_PEROXYDANS_MEDIUM.yaml","acetobacter_peroxydans_medium"],["AE_BROTH.yaml","ae_broth"],["ANAEROTIGNUM_NEOPROPIONICUM_MEDIUM.yaml","anaerotignum_neopropionicum_medium"],["Acetobacter_Europaeus_Medium.yaml","acetobacter_europaeus_medium"],["BTU_MEDIUM.yaml","btu_medium"],["CLOSTRIDIUM_KLUYVERI_MEDIUM.yaml","clostridium_kluyveri_medium"]]},{"id":"CHEBI:17992","l":"sucrose","na":15,"nb":108,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"]],"b":[["ACANTHAMOEBA_MEDIUM.yaml","acanthamoeba_medium"],["ACETIVIBRIO_MEDIUM.yaml","acetivibrio_medium"],["ALCALIPHILIC_AMPHIBACILLUS_STRAINS_MEDIUM.yaml","alcaliphilic_amphibacillus_strains_medium"],["ALKALIPHILIC_SPIROCHAETE_MEDIUM.yaml","alkaliphilic_spirochaete_medium"],["ANAEROBACTER_MEDIUM.yaml","anaerobacter_medium"],["AZOSPIRILLUM_AMAZONENSE_MEDIUM.yaml","azospirillum_amazonense_medium"]]},{"id":"CHEBI:18246","l":"(1->4)-beta-D-glucan","na":27,"nb":15,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["CLOSTRIDIUM_CELLULOVORANS_MEDIUM.yaml","clostridium_cellulovorans_medium"],["Clostridium_Cellulolytic_medium.yaml","clostridium_cellulolytic_medium"],["HALOCELLA_CELLULOLYTICA_MEDIUM.yaml","halocella_cellulolytica_medium"],["RUMINICLOSTRIDIUM_CELLOBIOPARUM_MEDIUM.yaml","ruminiclostridium_cellobioparum_medium"],["RUMINICLOSTRIDIUM_PAPYROSOLVENS_MEDIUM.yaml","ruminiclostridium_papyrosolvens_medium"]]},{"id":"CHEBI:17997","l":"dinitrogen","na":12,"nb":904,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_tryptic_soy_broth_anaerobic.yaml","1_2_tryptic_soy_broth_anaerobic"],["480g_medium__e94698e7.yaml","480g_medium"],["8kg_4_medium.yaml","8kg_4_medium"],["ABSS2.yaml","abss2"],["ABYSSISOLIBACTER_MEDIUM.yaml","abyssisolibacter_medium"]]},{"id":"CHEBI:3312","l":"calcium dichloride","na":12,"nb":516,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mgm_medium.yaml","15_mgm_medium"],["15_mh_medium.yaml","15_mh_medium"],["28_mh_medium.yaml","28_mh_medium"],["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["A3.yaml","a3"]]},{"id":"CHEBI:26833","l":"sulfur atom","na":12,"nb":153,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["1_2_SME_MEDIUM.yaml","1_2_sme_medium"],["9K_WITH_SULFUR_MEDIUM.yaml","9k_with_sulfur_medium"],["ACIDIANUS_BRIERLEYI_MEDIUM.yaml","acidianus_brierleyi_medium"],["ACIDITHIOBACILLUS_CALDUS_MEDIUM.yaml","acidithiobacillus_caldus_medium"],["ACIDITHIOBACILLUS_MEDIUM.yaml","acidithiobacillus_medium"],["ACIDOLOBUS_ACETICUS_MEDIUM.yaml","acidolobus_aceticus_medium"]]},{"id":"CHEBI:17790","l":"methanol","na":11,"nb":107,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["2_mh_medium.yaml","2_mh_medium"],["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["ALTEROMONAS_MEDIUM.yaml","alteromonas_medium"],["BM_MEDIUM.yaml","bm_medium"]]},{"id":"CHEBI:131527","l":"dipotassium hydrogen phosphate","na":10,"nb":2042,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"]]},{"id":"CHEBI:26836","l":"sulfuric acid","na":10,"nb":220,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["9K_MEDIUM.yaml","9k_medium"],["A3.yaml","a3"],["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["ACIDIFERROBACTER_MEDIUM.yaml","acidiferrobacter_medium"],["ACIDIFFEROBACTER_MURCIENSIS_MEDIUM.yaml","acidifferobacter_murciensis_medium"]]},{"id":"CHEBI:26710","l":"sodium chloride","na":9,"nb":3474,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["10_mh_medium.yaml","10_mh_medium"],["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["1298.yaml","1298"],["15_mgm_medium.yaml","15_mgm_medium"]]},{"id":"CHEBI:31206","l":"ammonium chloride","na":9,"nb":2324,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]],"b":[["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["480G_MEDIUM.yaml","480g_medium"],["480g_medium__e94698e7.yaml","480g_medium"]]},{"id":"CHEBI:18385","l":"thiamine(1+)","na":8,"nb":94,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["ANB_aerobic.yaml","anb_aerobic"],["AQUASPIRILLUM_MEDIUM.yaml","aquaspirillum_medium"],["Basic_mineral_medium.yaml","basic_mineral_medium"],["CHITINIVIBRIO_MEDIUM.yaml","chitinivibrio_medium"],["Chemically_defined_medium.yaml","chemically_defined_medium"],["Chromatium_Medium.yaml","chromatium_medium"]]},{"id":"CHEBI:15366","l":"acetic acid","na":8,"nb":26,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["ACY.yaml","ACY"],["AE_BROTH.yaml","ae_broth"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Acetobacter_Europaeus_Medium.yaml","acetobacter_europaeus_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"]]},{"id":"CHEBI:15361","l":"pyruvate","na":8,"nb":24,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["ARCOBACTER_ANAEROPHILUS_MEDIUM.yaml","arcobacter_anaerophilus_medium"],["CENTENUM_MEDIUM.yaml","centenum_medium"],["CMM.yaml","cmm"],["NMM_with_pyruvate.yaml","nmm_with_pyruvate"],["ams1_pyruvate_glycine.yaml","ams1_pyruvate_glycine"],["ams1_pyruvate_glycine__08b97e38.yaml","ams1_pyruvate_glycine"]]},{"id":"CHEBI:18222","l":"xylose","na":8,"nb":14,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]],"b":[["COLON_EXTRACT_MEDIUM.yaml","colon_extract_medium"],["MODIFIED_CALDICELLULOSIRUPTOR_MEDIUM.yaml","modified_caldicellulosiruptor_medium"],["MRSsi.yaml","mrssi"],["Thermotoga_hypogea_medium.yaml","thermotoga_hypogea_medium"],["batch_cultivation_medium_for_a28.yaml","batch_cultivation_medium_for_a28"],["batch_cultivation_medium_for_ta1.yaml","batch_cultivation_medium_for_ta1"]]},{"id":"CHEBI:37166","l":"xylan","na":8,"nb":14,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["CLOSTRIDIUM_AEROTOLERANS_MEDIUM.yaml","clostridium_aerotolerans_medium"],["TREPONEMA_THERMOPHILUM_MEDIUM.yaml","treponema_thermophilum_medium"],["VXG_GELLAN.yaml","vxg_gellan"],["XED_Agar.yaml","xed_agar"],["XYLAN_MEDIUM.yaml","xylan_medium"],["Xy_agar.yaml","xy_agar"]]},{"id":"CHEBI:32599","l":"magnesium sulfate","na":7,"nb":1459,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"]],"b":[["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["10_mh_medium.yaml","10_mh_medium"],["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["15_mh_medium.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"]]},{"id":"CHEBI:37585","l":"sodium dihydrogenphosphate","na":7,"nb":173,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["ANT.yaml","ant"],["ATRIBACTERIUM_MEDIUM.yaml","atribacterium_medium"],["BASAL_MEDIUM.yaml","basal_medium"]]},{"id":"CHEBI:17057","l":"cellobiose","na":7,"nb":121,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["A7_MEDIUM.yaml","a7_medium"],["ACETIVIBRIO_ALKALICELLULOSI_MEDIUM.yaml","acetivibrio_alkalicellulosi_medium"],["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["ALKALIFLEXUS_MEDIUM.yaml","alkaliflexus_medium"],["ANAEROBACTERIUM_MEDIUM.yaml","anaerobacterium_medium"],["ANAEROCELLUM_MEDIUM.yaml","anaerocellum_medium"]]},{"id":"CHEBI:32139","l":"sodium hydrogencarbonate","na":6,"nb":1471,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mh_medium.yaml","15_mh_medium"],["15_mh_medium__b586cb85.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM.yaml","1_2_sme_medium"]]},{"id":"CHEBI:76209","l":"sodium sulfide nonahydrate","na":6,"nb":1198,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["1_2_SME_MEDIUM.yaml","1_2_sme_medium"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["480G_MEDIUM.yaml","480g_medium"],["A1_MEDIUM.yaml","a1_medium"],["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"]]},{"id":"CHEBI:28017","l":"starch","na":6,"nb":282,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"]],"b":[["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"],["1_10_r2a_medium_modified_yeast_extract.yaml","1_10_r2a_medium_modified_yeast_extract"],["1_2_r2a_medium_with_75_artificial_seawater.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["1_2_r2a_medium_with_75_artificial_seawater__5b6dd332.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["225M1_MEDIUM.yaml","225m1_medium"],["225m1_medium__5109009b.yaml","225m1_medium"]]},{"id":"CHEBI:17754","l":"glycerol","na":6,"nb":165,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"]],"b":[["1_ogawa_medium.yaml","1_ogawa_medium"],["1_ogawa_medium__65d0ae34.yaml","1_ogawa_medium"],["5_G_MEDIUM.yaml","5_g_medium"],["5_g_medium__8aa8a45a.yaml","5_g_medium"],["6_B_MEDIUM.yaml","6_b_medium"],["6_b_medium__990e4708.yaml","6_b_medium"]]},{"id":"CHEBI:6636","l":"magnesium dichloride","na":6,"nb":67,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mh_medium.yaml","15_mh_medium"],["1_2_r2a_75_asw.yaml","1_2_r2a_75_asw"],["28_mh_medium.yaml","28_mh_medium"],["ALCALIPHILIC_AMPHIBACILLUS_STRAINS_MEDIUM.yaml","alcaliphilic_amphibacillus_strains_medium"],["ALKALISPIRILLUM_MOBILE_MEDIUM.yaml","alkalispirillum_mobile_medium"]]},{"id":"CHEBI:30769","l":"citric acid","na":6,"nb":55,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["Azospira_Medium.yaml","azospira_medium"],["BG11.yaml","bg11"],["BG11_medium.yaml","bg11_medium"],["CTM_MEDIUM.yaml","ctm_medium"],["ETHANOLOGENBACTERIUM_MEDIUM.yaml","ethanologenbacterium_medium"],["GINGER_BEER_PLANT_MEDIUM.yaml","ginger_beer_plant_medium"]]},{"id":"CHEBI:30772","l":"butyric acid","na":6,"nb":26,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"],["Mega.yaml","Mega"],["RUMEN_BACTERIA_MEDIUM.yaml","rumen_bacteria_medium"],["SELENOMONAS_WG_MEDIUM.yaml","selenomonas_wg_medium"]]},{"id":"CHEBI:24996","l":"lactate","na":22,"nb":6,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["ARCOBACTER_ANAEROPHILUS_MEDIUM.yaml","arcobacter_anaerophilus_medium"],["defined_freshwater_medium_cocl2__f0ffbcc6.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__41b1d433.yaml","defined_freshwater_medium_coso4"],["fermentation_medium_lactate_nh4cl.yaml","fermentation_medium_lactate_nh4cl"],["modified_m1_medium_with_20_mm_lactate_pinchuk_et_al.yaml","modified_m1_medium_with_20_mm_lactate_pinchuk_et_al"],["modified_m1_medium_with_lactate_and_glycine_no_nh4cl.yaml","modified_m1_medium_with_lactate_and_glycine_no_nh4cl"]]},{"id":"CHEBI:176843","l":"vitamin B12","na":5,"nb":1411,"a":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Soil_Corrinoid_B12_Reservoir_Community.html","Soil Corrinoid Reservoir Microbial Community"],["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"]]},{"id":"CHEBI:17015","l":"riboflavin","na":5,"nb":1290,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"]]},{"id":"CHEBI:17634","l":"D-glucose","na":5,"nb":441,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"]],"b":[["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"],["1_2_mrs_1_2_bhi_agar.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_mrs_1_2_bhi_agar__56430c33.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_tryptic_soy_broth_anaerobe.yaml","1_2_tryptic_soy_broth_anaerobe"],["1_2_tryptic_soy_broth_anaerobic.yaml","1_2_tryptic_soy_broth_anaerobic"],["1_2_tryptic_soy_broth_anaerobic__d70593aa.yaml","1_2_tryptic_soy_broth_anaerobic"]]},{"id":"CHEBI:16828","l":"L-tryptophan","na":5,"nb":40,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["CDMM.yaml","cdmm"],["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["M9_minimal_media_aromix_noCarbon.yaml","M9 minimal media aromix noCarbon"],["MDM.yaml","mdm"]]},{"id":"CHEBI:30776","l":"hexanoic acid","na":5,"nb":7,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["DESULFUROBACTERIUM_MEDIUM.yaml","desulfurobacterium_medium"],["TD3_MEDIUM.yaml","td3_medium"],["THERMODESULFOBACTERIUM_HYDROGENIPHILUM_MEDIUM.yaml","thermodesulfobacterium_hydrogeniphilum_medium"],["THERMODESULFOBACTERIUM_HYDROGENOPHILUM_MEDIUM.yaml","thermodesulfobacterium_hydrogenophilum_medium"],["desulfurobacterium_medium__edb237d2.yaml","desulfurobacterium_medium"],["td3_medium__4a2d4552.yaml","td3_medium"]]},{"id":"CHEBI:15377","l":"water","na":4,"nb":2283,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1_10_MB_agar.yaml","1_10_mb_agar"],["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"],["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"]]},{"id":"CHEBI:8806","l":"Resazurin","na":4,"nb":1604,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM.yaml","1_2_sme_medium"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["480G_MEDIUM.yaml","480g_medium"],["480g_medium__e94698e7.yaml","480g_medium"]]},{"id":"CHEBI:62946","l":"ammonium sulfate","na":4,"nb":816,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM.yaml","1_2_sme_medium"],["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"]]},{"id":"CHEBI:91247","l":"L-cysteine hydrochloride","na":4,"nb":134,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["ABB.yaml","ABB"],["ACY.yaml","ACY"],["AP11MH_medium.yaml","ap11mh_medium"],["Actinotalea_fermentas_medium.yaml","actinotalea_fermentas_medium"],["BBL_ACTINOMYCES_BROTH.yaml","bbl_actinomyces_broth"]]},{"id":"CHEBI:15603","l":"L-leucine","na":4,"nb":70,"a":[["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"]],"b":[["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["Hypertonic_medium.yaml","hypertonic_medium"],["MCD_Medium.yaml","mcd_medium"]]},{"id":"CHEBI:16199","l":"urea","na":4,"nb":45,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["A7_MEDIUM.yaml","a7_medium"],["Agro_defined_trehalose.yaml","Agro defined trehalose"],["BACILLUS_PASTEURII_MEDIUM.yaml","bacillus_pasteurii_medium"],["BM7CO_MEDIUM.yaml","bm7co_medium"],["C41_MEDIUM.yaml","c41_medium"],["CATONELLA_UREILYTICA_MEDIUM.yaml","catonella_ureilytica_medium"]]},{"id":"CHEBI:16811","l":"methionine","na":4,"nb":25,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["Chamberlain_CDM.yaml","chamberlain_cdm"],["DEINOCOCCUS_MEDIUM.yaml","deinococcus_medium"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["MS13_Medium.yaml","ms13_medium"]]},{"id":"CHEBI:16411","l":"indole-3-acetic acid","na":20,"nb":4,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"]],"b":[["ENDOMICROBIUM_PROAVITUM_RSA_MEDIUM.yaml","endomicrobium_proavitum_rsa_medium"],["MODIFIED_AM5_MEDIUM_2.yaml","modified_am5_medium_2"],["am5_medium_elusimicrobium_medium.yaml","am5_medium_elusimicrobium_medium"],["endomicrobium_proavitum_rsa_medium__51692939.yaml","endomicrobium_proavitum_rsa_medium"]]},{"id":"CHEBI:16899","l":"D-mannitol","na":4,"nb":18,"a":[["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["HETEROTROPHIC_MEDIUM_H3P.yaml","heterotrophic_medium_h3p"],["MGL.yaml","MGL"],["Modified_YM.yaml","Modified YM"],["NF.yaml","NF"],["NL-CCM.yaml","NL-CCM"],["NLDM_defined.yaml","NLDM_defined"]]},{"id":"CHEBI:18237","l":"glutamic acid","na":4,"nb":13,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["ACANTHAMOEBA_MEDIUM.yaml","acanthamoeba_medium"],["HALISCOMENOBACTER_MEDIUM.yaml","haliscomenobacter_medium"],["LENTIBACILLUS_MEDIUM.yaml","lentibacillus_medium"],["McAA_formate_No_pABA.yaml","McAA formate No pABA"],["NATRONOBACTERIUM_MEDIUM.yaml","natronobacterium_medium"],["PSA_medium.yaml","psa_medium"]]},{"id":"CHEBI:15956","l":"biotin","na":3,"nb":1645,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2ASW.yaml","2asw"]]},{"id":"CHEBI:75832","l":"iron(2+) sulfate (anhydrous)","na":3,"nb":226,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["ACIDITHIOBACILLUS_FERRIVORANS_MEDIUM.yaml","acidithiobacillus_ferrivorans_medium"],["ACY.yaml","ACY"],["AQUASPIRILLUM_MEDIUM_II.yaml","aquaspirillum_medium_ii"],["BACILLUS_THERMOALCALOPHILUS_MEDIUM.yaml","bacillus_thermoalcalophilus_medium"],["BLASTOCOCCUS_AGGREGATUS_MEDIUM.yaml","blastococcus_aggregatus_medium"],["Basal_Salt_Medium_with_biphenyl.yaml","basal_salt_medium_with_biphenyl"]]},{"id":"CHEBI:17191","l":"L-isoleucine","na":3,"nb":65,"a":[["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"]],"b":[["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["CTM_MEDIUM.yaml","ctm_medium"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MCD_Medium.yaml","mcd_medium"]]},{"id":"ENVO:00005801","l":"rhizosphere","na":62,"nb":3,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"]],"b":[["R2A_AGAR.yaml","r2a_agar"],["half_strength_murashige_skoog_medium_for_arabidopsis_growth.yaml","half_strength_murashige_skoog_medium_for_arabidopsis_growth"],["nitrogen_free_plant_nutrient_solution_for_soybean_growth.yaml","nitrogen_free_plant_nutrient_solution_for_soybean_growth"]]},{"id":"CHEBI:17561","l":"L-cysteine","na":3,"nb":60,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["70_30_sporulation_medium.yaml","70_30_sporulation_medium"],["BHIS_CaCl2.yaml","BHIS_CaCl2"],["BHIS_HOMOPIPES.yaml","BHIS_HOMOPIPES"],["BHIS_K3.yaml","BHIS_K3"],["BHIS_K3_noGlucose.yaml","BHIS_K3_noGlucose"],["BHIS_PIPES.yaml","BHIS_PIPES"]]},{"id":"CHEBI:15356","l":"cysteine","na":3,"nb":40,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["AMB_MEDIUM.yaml","amb_medium"],["Chopped_Meat_Carbohydrate_Medium.yaml","chopped_meat_carbohydrate_medium"],["Chopped_Meat_Carbohydrate_Medium_w_Tween_80.yaml","chopped_meat_carbohydrate_medium_w_tween_80"],["FRANCISELLA_HALIOTICIDA_MEDIUM.yaml","francisella_halioticida_medium"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"]]},{"id":"CHEBI:17716","l":"lactose","na":3,"nb":25,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"]],"b":[["1298.yaml","1298"],["ALKALINE_CELLULOSE_AGAR.yaml","alkaline_cellulose_agar"],["Basal_synthetic_medium.yaml","basal_synthetic_medium"],["CLOSTRIDIUM_VINCENTII_MEDIUM.yaml","clostridium_vincentii_medium"],["M17_MEDIUM_FOR_LACTIC_STREPTOCOCCI.yaml","m17_medium_for_lactic_streptococci"],["STREPTOCOCCUS_SUIS_MEDIUM.yaml","streptococcus_suis_medium"]]},{"id":"CHEBI:30742","l":"ethylene glycol","na":3,"nb":21,"a":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"]],"b":[["acetobacterium_medium_marine.yaml","acetobacterium_medium_marine"],["bm_in_arabinose_hodgson_et_al.yaml","bm_in_arabinose_hodgson_et_al"],["bm_in_cellobiose_hodgson_et_al.yaml","bm_in_cellobiose_hodgson_et_al"],["bm_in_fructose_hodgson_et_al.yaml","bm_in_fructose_hodgson_et_al"],["bm_in_galactose_hodgson_et_al.yaml","bm_in_galactose_hodgson_et_al"],["bm_in_glucose_hodgson_et_al.yaml","bm_in_glucose_hodgson_et_al"]]},{"id":"CHEBI:26271","l":"proline","na":3,"nb":19,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["cdm_lab_medium.yaml","cdm_lab_medium"],["complete_chemically_defined_medium.yaml","complete_chemically_defined_medium"],["minimal_chemically_defined_medium_his_pro_letort_2001.yaml","minimal_chemically_defined_medium_his_pro_letort_2001"]]},{"id":"CHEBI:15741","l":"succinic acid","na":3,"nb":16,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["AQUASPIRILLUM_MEDIUM_II.yaml","aquaspirillum_medium_ii"],["DESULFUROBACTERIUM_MEDIUM.yaml","desulfurobacterium_medium"],["MAGNETOSPIRILLUM_MEDIUM.yaml","magnetospirillum_medium"],["MG_minimal_media.yaml","MG minimal media"],["MG_minimal_media_noIron.yaml","MG minimal media noIron"],["PETROBACTER_SUCCINIMANDENS_MEDIUM.yaml","petrobacter_succinimandens_medium"]]},{"id":"CHEBI:17750","l":"glycine betaine","na":3,"nb":15,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["CUNICULIPLASMA_MEDIUM.yaml","cuniculiplasma_medium"],["MALEDIVIBACTER_MEDIUM.yaml","maledivibacter_medium"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"]]},{"id":"CHEBI:16482","l":"naphthalene","na":3,"nb":3,"a":[["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"]],"b":[["DESULFOBACTERIUM_NAPHTHALENIVOLANS_MEDIUM.yaml","desulfobacterium_naphthalenivolans_medium"],["LB_Medium_with_50_ppm_Naphthalene.yaml","lb_medium_with_50_ppm_naphthalene"],["desulfobacterium_naphthalenivolans_medium__c96254de.yaml","desulfobacterium_naphthalenivolans_medium"]]},{"id":"CHEBI:26977","l":"thiosulfate","na":3,"nb":3,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"]],"b":[["AMOEBOBACTER_MEDIUM.yaml","amoebobacter_medium"],["Artificial_seawater_base_with_thiosulfate_as_the_electron_donor.yaml","artificial_seawater_base_with_thiosulfate_as_the_electron_donor"],["pfennigs_medium__4e5aaa08.yaml","pfennigs_medium"]]},{"id":"CHEBI:75213","l":"sodium molybdate dihydrate","na":2,"nb":2172,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["1a_Medium.yaml","1a_medium"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["3n_bbm_v.yaml","3n_bbm_v"]]},{"id":"CHEBI:32588","l":"potassium chloride","na":2,"nb":1953,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mgm_medium.yaml","15_mgm_medium"],["15_mh_medium.yaml","15_mh_medium"],["15_mh_medium__b586cb85.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"]]},{"id":"CHEBI:35696","l":"cobalt dichloride","na":2,"nb":493,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["1a_Medium.yaml","1a_medium"],["ACIDIC_DILUTED_ASM_MEDIUM.yaml","acidic_diluted_asm_medium"],["ACIDIFFEROBACTER_MURCIENSIS_MEDIUM.yaml","acidifferobacter_murciensis_medium"],["ALKALINUS_ABYSSINIESE_MEDIUM.yaml","alkalinus_abyssiniese_medium"],["ALKALIPHILUS_CROTONATOXIDANS_MEDIUM.yaml","alkaliphilus_crotonatoxidans_medium"],["ANAEROLINEA_MEDIUM_C.yaml","anaerolinea_medium_c"]]},{"id":"CHEBI:63005","l":"sodium nitrate","na":2,"nb":358,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_sabourauds_agar.yaml","1_10_sabourauds_agar"],["1_10_sabourauds_agar__6d784de4.yaml","1_10_sabourauds_agar"],["1a_Medium.yaml","1a_medium"]]},{"id":"ENVO:01001405","l":"laboratory environment","na":200,"nb":2,"a":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"]],"b":[["glycerol_fermentation_medium_for_diet_coculture.yaml","glycerol_fermentation_medium_for_diet_coculture"],["tap_medium.yaml","tap_medium"]]},{"id":"CHEBI:35176","l":"zinc sulfate","na":2,"nb":198,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["7H9.yaml","7H9"],["ANB_aerobic.yaml","anb_aerobic"],["BACTO_MIDDLEBROOK_7H9_BROTH.yaml","bacto_middlebrook_7h9_broth"],["Basic_mineral_medium.yaml","basic_mineral_medium"],["CAMM.yaml","camm"],["CDM_for_Continuous_Cultivation.yaml","cdm_for_continuous_cultivation"]]},{"id":"CHEBI:23414","l":"copper(II) sulfate","na":2,"nb":148,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["ALCALIGENES_MEDIUM.yaml","alcaligenes_medium"],["Alkaline_halophile_medium.yaml","alkaline_halophile_medium"],["BACTO_MIDDLEBROOK_7H9_BROTH.yaml","bacto_middlebrook_7h9_broth"],["Basal_synthetic_medium.yaml","basal_synthetic_medium"],["CDM_for_Continuous_Cultivation.yaml","cdm_for_continuous_cultivation"],["CLOSTRIDIUM_METHYLPENTOSUM_MEDIUM.yaml","clostridium_methylpentosum_medium"]]},{"id":"CHEBI:75228","l":"sodium lactate","na":2,"nb":131,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"]],"b":[["ANAEROBACILLUS_ARSENICISELENATIS_MEDIUM.yaml","anaerobacillus_arseniciselenatis_medium"],["ARCHAEOGLOBUS_FULGIDUS_MEDIUM.yaml","archaeoglobus_fulgidus_medium"],["ARCHAEOGLOBUS_SULFATICALLIDUS_MEDIUM.yaml","archaeoglobus_sulfaticallidus_medium"],["Artificial_seawater_medium_for_strain_JS_SRB250Lac.yaml","artificial_seawater_medium_for_strain_js_srb250lac"],["BACILLUS_INFERNUS_MEDIUM.yaml","bacillus_infernus_medium"],["BACILLUS_MACYAE_MEDIUM.yaml","bacillus_macyae_medium"]]},{"id":"CHEBI:9754","l":"tris","na":2,"nb":107,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["5_salt_water_growth_medium.yaml","5_salt_water_growth_medium"],["70_30_sporulation_medium.yaml","70_30_sporulation_medium"],["ACY.yaml","ACY"],["ALCALIGENES_MEDIUM.yaml","alcaligenes_medium"]]},{"id":"CHEBI:63041","l":"manganese(II) chloride","na":2,"nb":105,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["ANB_aerobic.yaml","anb_aerobic"],["Asp2.yaml","asp2"],["Basic_mineral_medium.yaml","basic_mineral_medium"],["CHITINIVIBRIO_MEDIUM.yaml","chitinivibrio_medium"],["CMM.yaml","cmm"],["Defined_minimal_medium.yaml","defined_minimal_medium"]]},{"id":"CHEBI:15428","l":"glycine","na":2,"nb":87,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["ACETOBACTEROIDES_GLYCINOPHILUS_MEDIUM.yaml","acetobacteroides_glycinophilus_medium"],["ACIDAMINOBACTER_MEDIUM.yaml","acidaminobacter_medium"],["ACIDAMINOCOCCUS_FERMENTANS_MEDIUM.yaml","acidaminococcus_fermentans_medium"],["ANT.yaml","ant"],["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"]]},{"id":"CHEBI:30808","l":"iron trichloride","na":2,"nb":38,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["AZOSPIRILLUM_AMAZONENSE_MEDIUM.yaml","azospirillum_amazonense_medium"],["Beijerinckia_medium_for_isolation.yaml","beijerinckia_medium_for_isolation"],["CARBOXYMETHYL_CELLULOSE_MEDIUM.yaml","carboxymethyl_cellulose_medium"],["CYTOPHAGA_MEDIUM.yaml","cytophaga_medium"],["Castenholz_TYE_medium.yaml","castenholz_tye_medium"],["FRANCISELLA_HALIOTICIDA_MEDIUM.yaml","francisella_halioticida_medium"]]},{"id":"CHEBI:60720","l":"sodium silicate","na":2,"nb":35,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["Asp2.yaml","asp2"],["HALOBACTERIOVORAX_MEDIUM.yaml","halobacteriovorax_medium"],["Half_Strength_Bacto_Marine_Broth.yaml","half_strength_bacto_marine_broth"],["MEDIUM_514_plus_additional_salt.yaml","medium_514_plus_additional_salt"],["METHANOPYRUS_MEDIUM.yaml","methanopyrus_medium"],["MODIFIED_MEDIUM_514.yaml","modified_medium_514"]]},{"id":"CHEBI:16947","l":"citrate(3-)","na":2,"nb":31,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["E2_medium_with_citrate.yaml","e2_medium_with_citrate"],["M9_minimal_medium_with_citrate.yaml","m9_minimal_medium_with_citrate"],["Vogels_Medium_N.yaml","vogels_medium_n"],["aspartate_salt_schaechter_et_al.yaml","aspartate_salt_schaechter_et_al"],["batch_medium_mattanovich_et_al.yaml","batch_medium_mattanovich_et_al"],["bg11_0_015_mm_iron_shcolnick_2006.yaml","bg11_0_015_mm_iron_shcolnick_2006"]]},{"id":"CHEBI:64205","l":"calcium nitrate","na":2,"nb":23,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"]],"b":[["9K_MEDIUM.yaml","9k_medium"],["9K_WITH_SULFUR_MEDIUM.yaml","9k_with_sulfur_medium"],["9_K_medium.yaml","9_k_medium"],["9_k_medium__c97a7f66.yaml","9_k_medium"],["9k_medium__4af6025b.yaml","9k_medium"],["ACIDIANUS_BRIERLEYI_MEDIUM.yaml","acidianus_brierleyi_medium"]]},{"id":"CHEBI:30768","l":"propionic acid","na":2,"nb":21,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["ACY.yaml","ACY"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"],["MEDIUM_10.yaml","medium_10"],["Mega.yaml","Mega"]]},{"id":"CHEBI:132106","l":"sodium propionate","na":2,"nb":15,"a":[["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["DESULFOBULBUS_MEDIUM.yaml","desulfobulbus_medium"],["DESULFOFABA_HANSENII_MEDIUM.yaml","desulfofaba_hansenii_medium"],["DESULFOFABA_MEDIUM.yaml","desulfofaba_medium"],["DESULFORHABDUS_AMNIGENA_MEDIUM.yaml","desulforhabdus_amnigena_medium"],["DESULFOSALSIMONAS_MEDIUM.yaml","desulfosalsimonas_medium"],["DPM_MEDIUM.yaml","dpm_medium"]]},{"id":"ENVO:00002007","l":"sediment","na":10,"nb":2,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["modified_dsm_120_medium_for_diet_coculture.yaml","modified_dsm_120_medium_for_diet_coculture"],["modified_freshwater_medium_for_diet_coculture.yaml","modified_freshwater_medium_for_diet_coculture"]]},{"id":"CHEBI:27082","l":"trehalose","na":2,"nb":7,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"]],"b":[["BRADYMONAS_SEDIMINIS_MEDIUM.yaml","bradymonas_sediminis_medium"],["HELMUTKOENIGIA_MEDIUM.yaml","helmutkoenigia_medium"],["RH_MEDIUM.yaml","rh_medium"],["TREPONEMA_RECTALE_MEDIUM.yaml","treponema_rectale_medium"],["minimal_media__805aefdd.yaml","minimal_media"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:16865","l":"gamma-aminobutyric acid","na":2,"nb":6,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]],"b":[["CLOSTRIDIUM_AMINOBUTYRICUM_MEDIUM.yaml","clostridium_aminobutyricum_medium"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:16750","l":"guanosine","na":2,"nb":5,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:16830","l":"methylamine","na":2,"nb":5,"a":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"]],"b":[["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["MEDIUM_FOR_DSM_14457_AND_14458.yaml","medium_for_dsm_14457_and_14458"],["MEDIUM_FOR_METHYLOBACTERIUM_PODARIUM.yaml","medium_for_methylobacterium_podarium"],["acetobacterium_submarinus_medium__9fed26ec.yaml","acetobacterium_submarinus_medium"],["hyphomicrobium_medium__41859ce8.yaml","hyphomicrobium_medium"]]},{"id":"CHEBI:17300","l":"tetrachloroethene","na":2,"nb":5,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["MINERAL_SALTS_MEDIUM_WITH_TCE.yaml","mineral_salts_medium_with_tce"],["dehalobacter_restrictus_medium_tce.yaml","dehalobacter_restrictus_medium_tce"],["dehalobacter_restrictus_medium_tce__3ce89046.yaml","dehalobacter_restrictus_medium_tce"],["desulfuromonas_medium_tce.yaml","desulfuromonas_medium_tce"],["mineral_salts_medium_with_tce__be1bd293.yaml","mineral_salts_medium_with_tce"]]},{"id":"CHEBI:30746","l":"benzoic acid","na":5,"nb":2,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["UGA_defined_4CarbonMix_Nitrate_anaerobic_pH_7.1.yaml","UGA defined 4CarbonMix Nitrate anaerobic pH 7.1"],["togo_medium_m1949.yaml","togo_medium_m1949"]]},{"id":"CHEBI:53389","l":"poly(3-hydroxybutyrate)","na":5,"nb":2,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"],["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["PHB_AGAR.yaml","phb_agar"],["phb_agar__ec580e59.yaml","phb_agar"]]},{"id":"CHEBI:62064","l":"butane-2,3-diol","na":2,"nb":5,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["PROPIONIVIBRIO_MEDIUM.yaml","propionivibrio_medium"],["Pelobacter_carbinolicus_Medium.yaml","pelobacter_carbinolicus_medium"],["ne23_3_medium.yaml","ne23_3_medium"],["pelobacter_propionicus_medium_freshwater.yaml","pelobacter_propionicus_medium_freshwater"],["propionivibrio_medium__91fe4e4e.yaml","propionivibrio_medium"]]},{"id":"CHEBI:15882","l":"phenol","na":2,"nb":4,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]],"b":[["MEDIUM_FOR_BACILLUS_STEAROTHERMOPHILUS.yaml","medium_for_bacillus_stearothermophilus"],["anaerobic_bicarbonate_buffered_medium_with_phenol.yaml","anaerobic_bicarbonate_buffered_medium_with_phenol"],["defined_freshwater_medium_cocl2__ac506908.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__0930ab53.yaml","defined_freshwater_medium_coso4"]]},{"id":"CHEBI:16991","l":"deoxyribonucleic acid","na":2,"nb":4,"a":[["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["PH_MEDIUM.yaml","ph_medium"],["sp4_z_medium__eae01184.yaml","sp4_z_medium"],["ureaplasma_medium__abc787f9.yaml","ureaplasma_medium"],["ureaplasma_medium__de7f9c49.yaml","ureaplasma_medium"]]},{"id":"CHEBI:86202","l":"chalcopyrite","na":4,"nb":2,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["acidianus_sp_jp7_medium.yaml","acidianus_sp_jp7_medium"],["acidianus_sp_jp7_medium__73757a06.yaml","acidianus_sp_jp7_medium"]]},{"id":"CHEBI:17045","l":"dinitrogen oxide","na":3,"nb":2,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"]],"b":[["PM_N2O.yaml","PM N2O"],["PM_argon75_N2O25.yaml","PM argon75 N2O25"]]},{"id":"CHEBI:28675","l":"dextrin","na":2,"nb":3,"a":[["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"]],"b":[["dt_medium_ph_3_5.yaml","dt_medium_ph_3_5"],["hickey_amp_tresner_agar.yaml","hickey_amp_tresner_agar"],["hickey_tresner_agar.yaml","hickey_tresner_agar"]]},{"id":"CHEBI:15354","l":"choline","na":2,"nb":2,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["CDM_LP.yaml","cdm_lp"],["HYPHOMICROBIUM_METHYLOVORUM_MEDIUM.yaml","hyphomicrobium_methylovorum_medium"]]},{"id":"CHEBI:17824","l":"propan-2-ol","na":2,"nb":2,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"]],"b":[["METHANOGENIUM_CV_MEDIUM.yaml","methanogenium_cv_medium"],["METHANOSPIRILLUM_SK_MEDIUM.yaml","methanospirillum_sk_medium"]]},{"id":"CHEBI:63036","l":"potassium dihydrogen phosphate","na":1,"nb":2726,"a":[["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"]],"b":[["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["1_10_sabourauds_agar.yaml","1_10_sabourauds_agar"],["1_10_sabourauds_agar__6d784de4.yaml","1_10_sabourauds_agar"],["1_2_GY_AGAR.yaml","1_2_gy_agar"]]},{"id":"CHEBI:15940","l":"nicotinic acid","na":1,"nb":1433,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2ASW.yaml","2asw"],["2asw__59e92e67.yaml","2asw"]]},{"id":"CHEBI:32954","l":"sodium acetate","na":1,"nb":597,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["A1_MARINE_MEDIUM.yaml","a1_marine_medium"],["A2_MEDIUM.yaml","a2_medium"],["AAM_MEDIUM.yaml","aam_medium"],["ABYSSISOLIBACTER_MEDIUM.yaml","abyssisolibacter_medium"],["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["ACETOMICROBIUM_FAECALE_MEDIUM.yaml","acetomicrobium_faecale_medium"]]},{"id":"CHEBI:32149","l":"sodium sulfate","na":1,"nb":584,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["1_2_r2a_75_asw.yaml","1_2_r2a_75_asw"],["1_2_r2a_medium_with_75_artificial_seawater.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["1_2_r2a_medium_with_75_artificial_seawater__5b6dd332.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"],["ACIDAMINOBACTER_MEDIUM.yaml","acidaminobacter_medium"],["ACIDIFIED_MPOB_MEDIUM.yaml","acidified_mpob_medium"]]},{"id":"CHEBI:34683","l":"disodium hydrogenphosphate","na":1,"nb":570,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"],["1_2_mrs_1_2_bhi_agar.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_mrs_1_2_bhi_agar__56430c33.yaml","1_2_mrs_1_2_bhi_agar"],["1a_Medium.yaml","1a_medium"],["2ASW.yaml","2asw"],["2asw__59e92e67.yaml","2asw"]]},{"id":"CHEBI:17439","l":"cyanocob(III)alamin","na":1,"nb":187,"a":[["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["2ASW.yaml","2asw"],["2asw__59e92e67.yaml","2asw"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["3n_bbm_v_recipe_for_customer_orders.yaml","3n_bbm_v_recipe_for_customer_orders"],["ACY.yaml","ACY"],["ALP_defined.yaml","ALP defined"]]},{"id":"CHEBI:3311","l":"calcium carbonate","na":1,"nb":117,"a":[["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"]],"b":[["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["2_glucose_yeast_extract_peptone_agar.yaml","2_glucose_yeast_extract_peptone_agar"],["2_glucose_yeast_extract_peptone_agar__32ac0304.yaml","2_glucose_yeast_extract_peptone_agar"],["5_G_MEDIUM.yaml","5_g_medium"],["5_g_medium__8aa8a45a.yaml","5_g_medium"],["6_B_MEDIUM.yaml","6_b_medium"]]},{"id":"CHEBI:32036","l":"potassium sulfate","na":1,"nb":83,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"]],"b":[["225M1_MEDIUM.yaml","225m1_medium"],["225m1_medium__5109009b.yaml","225m1_medium"],["225m1_medium__936a42af.yaml","225m1_medium"],["ARTIFICIAL_PILOT_PLANT_WATER_MEDIUM.yaml","artificial_pilot_plant_water_medium"],["ARTIFICIAL_SOIL_AGAR.yaml","artificial_soil_agar"],["DESULFOSPOROSINUS_ACIDIPHILUS_MEDIUM.yaml","desulfosporosinus_acidiphilus_medium"]]},{"id":"CHEBI:33403","l":"elemental sulfur","na":1,"nb":82,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["ACIDIFERROBACTER_MEDIUM.yaml","acidiferrobacter_medium"],["ACIDILOBUS_MEDIUM.yaml","acidilobus_medium"],["AEROBIC_SULFOLOBALES_MEDIUM.yaml","aerobic_sulfolobales_medium"],["AS_medium.yaml","as_medium"]]},{"id":"CHEBI:232798","l":"sodium L-lactate","na":1,"nb":81,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"]],"b":[["ALP_defined.yaml","ALP defined"],["ALP_defined_chlorate.yaml","ALP defined chlorate"],["ALP_defined_noN.yaml","ALP defined noN"],["ALP_defined_perchlorate.yaml","ALP defined perchlorate"],["ALP_rich.yaml","ALP rich"],["ALP_richB.yaml","ALP richB"]]},{"id":"CHEBI:16015","l":"L-glutamic acid","na":1,"nb":73,"a":[["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]],"b":[["7H9.yaml","7H9"],["BACTO_MIDDLEBROOK_7H9_BROTH.yaml","bacto_middlebrook_7h9_broth"],["BGDM.yaml","bgdm"],["Bacillus_Medium.yaml","bacillus_medium"],["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"]]},{"id":"CHEBI:16467","l":"L-arginine","na":1,"nb":51,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["ABB.yaml","ABB"],["ACY.yaml","ACY"],["CAENICOLA_MOBILE_MEDIUM.yaml","caenicola_mobile_medium"],["CMM.yaml","cmm"],["CTM_MEDIUM.yaml","ctm_medium"],["Chamberlain_CDM.yaml","chamberlain_cdm"]]},{"id":"CHEBI:17203","l":"L-proline","na":1,"nb":48,"a":[["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["CDM_LP.yaml","cdm_lp"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MDM.yaml","mdm"],["MEIOTHERMUS_MEDIUM_R8.yaml","meiothermus_medium_r8"]]},{"id":"CHEBI:17418","l":"valeric acid","na":1,"nb":48,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"]],"b":[["ACY.yaml","ACY"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["ANAEROFILUM_MEDIUM.yaml","anaerofilum_medium"],["DESULFUROBACTERIUM_MEDIUM.yaml","desulfurobacterium_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"]]},{"id":"CHEBI:7916","l":"pantothenic acid","na":1,"nb":48,"a":[["Variovorax_Cryptococcus_Vitamin_Mutualism_Microcosm.html","Variovorax-Cryptococcus Vitamin Cross-Feeding Microcosm"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["A1_MEDIUM.yaml","a1_medium"],["ANAEROBIC_CHOLESTEROL_MEDIUM.yaml","anaerobic_cholesterol_medium"],["ANAEROBIC_THAUERA_MEDIUM.yaml","anaerobic_thauera_medium"],["AQUASPIRILLUM_MEDIUM_II.yaml","aquaspirillum_medium_ii"]]},{"id":"CHEBI:15971","l":"L-histidine","na":1,"nb":47,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["CAENICOLA_MOBILE_MEDIUM.yaml","caenicola_mobile_medium"],["CTM_MEDIUM.yaml","ctm_medium"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"]]},{"id":"CHEBI:18050","l":"L-glutamine","na":1,"nb":42,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"],["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"],["GLUTAMINE_MEDIUM.yaml","glutamine_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"]]},{"id":"CHEBI:17115","l":"L-serine","na":1,"nb":41,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["AMINOMONAS_MEDIUM.yaml","aminomonas_medium"],["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"]]},{"id":"CHEBI:27897","l":"tryptophan","na":1,"nb":32,"a":[["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"]],"b":[["4_yaco_media.yaml","4_yaco_media"],["ACIDAMINOCOCCUS_FERMENTANS_MEDIUM.yaml","acidaminococcus_fermentans_medium"],["Fry_et_al.yaml","fry_et_al"],["GLUTAMINE_MEDIUM.yaml","glutamine_medium"],["Leitch_et_al.yaml","leitch_et_al"],["MCD_Medium.yaml","mcd_medium"]]},{"id":"CHEBI:27570","l":"histidine","na":1,"nb":27,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["MS15_Medium.yaml","ms15_medium"],["NATRONINCOLA_HISTIDINOVORANS_MEDIUM.yaml","natronincola_histidinovorans_medium"]]},{"id":"CHEBI:28757","l":"fructose","na":1,"nb":27,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["ACETOBACTERIUM_MEDIUM.yaml","acetobacterium_medium"],["AQUINCOLA_MEDIUM.yaml","aquincola_medium"],["ARTFICIAL_FRESHWATER_MEDIUM_I.yaml","artficial_freshwater_medium_i"],["CLOSTRIDIUM_ACETATE_1_MEDIUM.yaml","clostridium_acetate_1_medium"],["DESULFOSPOROSINUS_ACIDOPHILUS_MEDIUM.yaml","desulfosporosinus_acidophilus_medium"],["EUBACTERIUM_AGGREGANS_MEDIUM.yaml","eubacterium_aggregans_medium"]]},{"id":"CHEBI:29016","l":"arginine","na":1,"nb":26,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["ACIDAMINOCOCCUS_FERMENTANS_MEDIUM.yaml","acidaminococcus_fermentans_medium"],["EUBACTERIUM_LENTUM_MEDIUM.yaml","eubacterium_lentum_medium"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["MS15_Medium.yaml","ms15_medium"]]},{"id":"CHEBI:41131","l":"crotonic acid","na":1,"nb":21,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["ALKALIPHILUS_CROTONATOXIDANS_MEDIUM.yaml","alkaliphilus_crotonatoxidans_medium"],["ALKALIPHILUS_HYDROTHERMALIS_MEDIUM.yaml","alkaliphilus_hydrothermalis_medium"],["DESULFATIRHABDIUM_MEDIUM.yaml","desulfatirhabdium_medium"],["Desulfatirhabdium_Butyrativorans_Medium.yaml","desulfatirhabdium_butyrativorans_medium"],["EUBACTERIUM_OXIDOREDUCENS_MEDIUM.yaml","eubacterium_oxidoreducens_medium"],["MPA_Medium.yaml","mpa_medium"]]},{"id":"CHEBI:16235","l":"guanine","na":1,"nb":19,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["MCD_Medium.yaml","mcd_medium"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"]]},{"id":"CHEBI:26806","l":"succinate","na":1,"nb":18,"a":[["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]],"b":[["LSG_Medium.yaml","lsg_medium"],["M9ZB_with_succinate.yaml","m9zb_with_succinate"],["MSYS_MEDIUM.yaml","msys_medium"],["NMM_with_succinate.yaml","nmm_with_succinate"],["PJC_with_succinate.yaml","pjc_with_succinate"],["SUCCINATE_MINERAL_MEDIUM.yaml","succinate_mineral_medium"]]},{"id":"CHEBI:64103","l":"sodium butyrate","na":1,"nb":18,"a":[["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["DESULFALLAS_THERMOSAPOVORANS_MEDIUM.yaml","desulfallas_thermosapovorans_medium"],["DESULFOBACTERIUM_CETONICUM_MEDIUM.yaml","desulfobacterium_cetonicum_medium"],["DESULFOCELLA_MEDIUM.yaml","desulfocella_medium"],["DESULFOFARCIMEN_MEDIUM.yaml","desulfofarcimen_medium"],["DESULFOSARCINA_CETONICA_MEDIUM.yaml","desulfosarcina_cetonica_medium"],["DESULFOTHERMUS_NAPHTHAE_MEDIUM.yaml","desulfothermus_naphthae_medium"]]},{"id":"CHEBI:18186","l":"tyrosine","na":1,"nb":17,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["Synthetic_Medium_C.yaml","synthetic_medium_c"],["complete_chemically_defined_medium.yaml","complete_chemically_defined_medium"],["fermentation_medium_glucose_tyrosine.yaml","fermentation_medium_glucose_tyrosine"]]},{"id":"CHEBI:29073","l":"L-ascorbic acid","na":1,"nb":13,"a":[["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["CTM_MEDIUM.yaml","ctm_medium"],["MG_minimal_media.yaml","MG minimal media"],["MG_minimal_media_noCarbon.yaml","MG minimal media noCarbon"],["MG_minimal_media_noIron.yaml","MG minimal media noIron"],["THERMODESULFOVIBRIO_MEDIUM_FOR_N1.yaml","thermodesulfovibrio_medium_for_n1"],["THERMODESULFOVIBRIO_YELLOWSTONII_MEDIUM.yaml","thermodesulfovibrio_yellowstonii_medium"]]},{"id":"CHEBI:16856","l":"glutathione","na":1,"nb":11,"a":[["Zymomonas_Ecoli_Exometabolomics_Obligate_Mutualism.html","Zymomonas-E. coli Exometabolomics-Designed Obligate Mutualism"]],"b":[["CDM_LP.yaml","cdm_lp"],["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"],["Modified_D58_medium.yaml","modified_d58_medium"],["SULFOBACILLUS_DISULFIDOOXIDANS_MEDIUM.yaml","sulfobacillus_disulfidooxidans_medium"],["clostridium_thermocellum_medium__d9fc1f82.yaml","clostridium_thermocellum_medium"]]},{"id":"CHEBI:48607","l":"lithium chloride","na":1,"nb":11,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["Chromatium_Medium.yaml","chromatium_medium"],["RECTINEMA_SUBTERRANEUM_MEDIUM.yaml","rectinema_subterraneum_medium"],["modified_1_5_sws_casein_starch_medium.yaml","modified_1_5_sws_casein_starch_medium"],["modified_vy_2_agar.yaml","modified_vy_2_agar"],["obsidian_pool_fermentor_opf_medium_modified_from_m_b_allen_1959.yaml","obsidian_pool_fermentor_opf_medium_modified_from_m_b_allen_1959"],["s88_vitamins.yaml","s88_vitamins"]]},{"id":"CHEBI:16810","l":"2-oxoglutarate(2-)","na":1,"nb":10,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"]],"b":[["BCYE_alpha_agar.yaml","bcye_alpha_agar"],["BM7_MEDIUM.yaml","bm7_medium"],["CTM_MEDIUM.yaml","ctm_medium"],["DinoMM_alphaKetoGlutAcid_NoNitrogen.yaml","DinoMM alphaKetoGlutAcid NoNitrogen"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"]]},{"id":"CHEBI:16602","l":"trichloroethene","na":9,"nb":1,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["dehalococcoides_medium__9ce6016b.yaml","dehalococcoides_medium"]]},{"id":"CHEBI:31346","l":"calcium sulfate","na":1,"nb":9,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]],"b":[["BEGGIATOA_MEDIUM.yaml","beggiatoa_medium"],["MINERAL_MEDIUM_WITH_GLUCOSE.yaml","mineral_medium_with_glucose"],["THIOTHRIX_MEDIUM.yaml","thiothrix_medium"],["anaerobic_mineral_medium_with_yeast_extract__5d534c46.yaml","anaerobic_mineral_medium_with_yeast_extract"],["anaerotignum_medium__bcb5094d.yaml","anaerotignum_medium"],["mineral_medium_with_glucose__bf4463a4.yaml","mineral_medium_with_glucose"]]},{"id":"CHEBI:28260","l":"galactose","na":1,"nb":8,"a":[["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]],"b":[["A1_MEDIUM.yaml","a1_medium"],["KPL_MEDIUM.yaml","kpl_medium"],["MYXOCOCCUS_FLAVESCENS_MEDIUM.yaml","myxococcus_flavescens_medium"],["Modified_SP_Medium.yaml","modified_sp_medium"],["SP_Medium.yaml","sp_medium"],["a1_medium__13c8113e.yaml","a1_medium"]]},{"id":"CHEBI:30411","l":"cobalamin","na":8,"nb":1,"a":[["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"]],"b":[["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"]]},{"id":"CHEBI:18012","l":"fumaric acid","na":1,"nb":6,"a":[["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["Brucella_broth_with_formate_and_fumarate.yaml","brucella_broth_with_formate_and_fumarate"],["TRICHLOROMONAS_MEDIUM.yaml","trichloromonas_medium"],["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"],["jcm_medium_no_1264.yaml","jcm_medium_no_1264"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"],["togo_medium_m1360.yaml","togo_medium_m1360"]]},{"id":"CHEBI:506227","l":"N-acetyl-D-glucosamine","na":1,"nb":6,"a":[["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["ANAEROBACCA_MEDIUM.yaml","anaerobacca_medium"],["BSK_MEDIUM.yaml","bsk_medium"],["NATRONOARCHAEA_MEDIUM_WITH_GLUCOSAMINE.yaml","natronoarchaea_medium_with_glucosamine"],["barbour_sfoenner_kelly_bsk_ii_medium.yaml","barbour_sfoenner_kelly_bsk_ii_medium"],["m30__354deb2e.yaml","m30"],["modified_bsk_medium__578ddf1c.yaml","modified_bsk_medium"]]},{"id":"NCBITaxon:2203","l":"Methanospirillum hungatei","na":6,"nb":1,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["medium_for_co_culture_of_strain_jt_with_methanospirillum_hungatei_nbrc_100397.yaml","medium_for_co_culture_of_strain_jt_with_methanospirillum_hungatei_nbrc_100397"]]},{"id":"NCBITaxon:35554","l":"Geobacter sulfurreducens","na":6,"nb":1,"a":[["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"]],"b":[["GEOBACTER_SULFURREDUCENS_MEDIUM.yaml","geobacter_sulfurreducens_medium"]]},{"id":"CHEBI:15729","l":"L-ornithine","na":1,"nb":5,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:16119","l":"shikimic acid","na":1,"nb":5,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"NCBITaxon:3077","l":"Chlorella vulgaris","na":5,"nb":1,"a":[["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Chlorella_Vulgaris_Whey_Coculture.html","Chlorella vulgaris Whey Co-culture"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Microalgae_Cyanobacteria_Bioactive_Peptide_Consortia.html","Microalgae-Cyanobacteria Bioactive Peptide Consortia"]],"b":[["tap_medium.yaml","tap_medium"]]},{"id":"CHEBI:17879","l":"4-hydroxybenzoate","na":1,"nb":4,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["DIETHYL_PHOSPHONATE_MEDIUM.yaml","diethyl_phosphonate_medium"],["defined_freshwater_medium_cocl2__140b53e4.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__7cf7eff3.yaml","defined_freshwater_medium_coso4"],["nutrient_medium_p_hydroxybenzoate.yaml","nutrient_medium_p_hydroxybenzoate"]]},{"id":"ENVO:01000306","l":"freshwater environment","na":4,"nb":1,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]],"b":[["tap_medium.yaml","tap_medium"]]},{"id":"CHEBI:32816","l":"pyruvic acid","na":1,"nb":3,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["ALGORIPHAGUS_ALKALIPHILUS_MEDIUM.yaml","algoriphagus_alkaliphilus_medium"],["modified_mrs.yaml","modified_mrs"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"ENVO:00002170","l":"compost","na":3,"nb":1,"a":[["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"]],"b":[["pcs_fp_medium_for_thermophilic_cellulose_degradation.yaml","pcs_fp_medium_for_thermophilic_cellulose_degradation"]]},{"id":"CHEBI:18139","l":"trimethylamine","na":1,"nb":2,"a":[["South_Bay_Salt_Pond_Methane_Restoration_Community.html","South Bay Salt Pond Methane Restoration Microbial Community"]],"b":[["methanogens_saline_water_medium__61ede417.yaml","methanogens_saline_water_medium"],["sulfate_free_metako_medium__b4a668be.yaml","sulfate_free_metako_medium"]]},{"id":"CHEBI:18287","l":"L-fucose","na":1,"nb":2,"a":[["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"]],"b":[["PONTIELLA_MEDIUM.yaml","pontiella_medium"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:24266","l":"gluconic acid","na":2,"nb":1,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Wollastonite_Ramichloridium_Talaromyces_Fungal_Consortium.html","Wollastonite Ramichloridium-Talaromyces Fungal Consortium"]],"b":[["MAG_Modified_arabinose_gluconate_medium.yaml","mag_modified_arabinose_gluconate_medium"]]},{"id":"CHEBI:30751","l":"formic acid","na":2,"nb":1,"a":[["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:35366","l":"fatty acid","na":1,"nb":2,"a":[["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"]],"b":[["MODIFIED_AM5_MEDIUM_2.yaml","modified_am5_medium_2"],["modified_am5_medium__421a5fe8.yaml","modified_am5_medium"]]},{"id":"CHEBI:35899","l":"crotonate","na":1,"nb":2,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["SERPENTINICELLA_MEDIUM.yaml","serpentinicella_medium"],["for_dsm_17722.yaml","for_dsm_17722"]]},{"id":"NCBITaxon:1148","l":"Synechocystis sp. PCC 6803","na":2,"nb":1,"a":[["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["bg11__f771062f.yaml","bg11"]]},{"id":"NCBITaxon:296543","l":"Thalassiosira pseudonana CCMP1335","na":1,"nb":2,"a":[["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["2ASW.yaml","2asw"],["F_2_Medium.yaml","f_2_medium"]]},{"id":"NCBITaxon:511145","l":"Escherichia coli str. K-12 substr. MG1655","na":2,"nb":1,"a":[["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["LB_Medium.yaml","lb_medium"]]},{"id":"NCBITaxon:524","l":"Acidiphilium cryptum","na":2,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["acidiphilium_medium__9ab0ce72.yaml","acidiphilium_medium"]]},{"id":"CHEBI:18248","l":"iron atom","na":1,"nb":1,"a":[["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["methanopyrus_medium_for_strain_116__7463935f.yaml","methanopyrus_medium_for_strain_116"]]},{"id":"CHEBI:22660","l":"aspartic acid","na":1,"nb":1,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":1,"nb":1,"a":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]],"b":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]]}]} \ No newline at end of file +{"a":"CommunityMech","b":"CultureMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","CultureMech":"https://github.com/CultureBotAI/CultureMech/blob/main/data/merge_yaml/merged/"},"n":151,"by":{"CHEBI":138,"NCBITaxon":8,"ENVO":5},"terms":[{"id":"CHEBI:16526","l":"carbon dioxide","na":75,"nb":711,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["4_yaco_media.yaml","4_yaco_media"],["8kg_4_medium.yaml","8kg_4_medium"],["ABSS2.yaml","abss2"],["ABYSSISOLIBACTER_MEDIUM.yaml","abyssisolibacter_medium"]]},{"id":"CHEBI:18276","l":"dihydrogen","na":58,"nb":231,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["4_yaco_media.yaml","4_yaco_media"],["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["AMMONIFEX_DEGENSII_MEDIUM.yaml","ammonifex_degensii_medium"],["AP11MH_medium.yaml","ap11mh_medium"]]},{"id":"CHEBI:30089","l":"acetate","na":78,"nb":31,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"]],"b":[["AMOEBOBACTER_MEDIUM.yaml","amoebobacter_medium"],["FWAFC.yaml","fwafc"],["M9ZB_with_acetate.yaml","m9zb_with_acetate"],["MEDIUM_FOR_CHLOROBIUM_FERROOXIDANS.yaml","medium_for_chlorobium_ferrooxidans"],["NMM_with_acetate.yaml","nmm_with_acetate"],["Thauera_aminoaromatica_medium.yaml","thauera_aminoaromatica_medium"]]},{"id":"CHEBI:17234","l":"glucose","na":26,"nb":1113,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mh_medium.yaml","15_mh_medium"],["15_mh_medium__b586cb85.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"]]},{"id":"CHEBI:16236","l":"ethanol","na":25,"nb":70,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["ACETOBACTER_PEROXYDANS_MEDIUM.yaml","acetobacter_peroxydans_medium"],["AE_BROTH.yaml","ae_broth"],["ANAEROTIGNUM_NEOPROPIONICUM_MEDIUM.yaml","anaerotignum_neopropionicum_medium"],["Acetobacter_Europaeus_Medium.yaml","acetobacter_europaeus_medium"],["BTU_MEDIUM.yaml","btu_medium"],["CLOSTRIDIUM_KLUYVERI_MEDIUM.yaml","clostridium_kluyveri_medium"]]},{"id":"CHEBI:17992","l":"sucrose","na":15,"nb":108,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"]],"b":[["ACANTHAMOEBA_MEDIUM.yaml","acanthamoeba_medium"],["ACETIVIBRIO_MEDIUM.yaml","acetivibrio_medium"],["ALCALIPHILIC_AMPHIBACILLUS_STRAINS_MEDIUM.yaml","alcaliphilic_amphibacillus_strains_medium"],["ALKALIPHILIC_SPIROCHAETE_MEDIUM.yaml","alkaliphilic_spirochaete_medium"],["ANAEROBACTER_MEDIUM.yaml","anaerobacter_medium"],["AZOSPIRILLUM_AMAZONENSE_MEDIUM.yaml","azospirillum_amazonense_medium"]]},{"id":"CHEBI:18246","l":"(1->4)-beta-D-glucan","na":27,"nb":15,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["CLOSTRIDIUM_CELLULOVORANS_MEDIUM.yaml","clostridium_cellulovorans_medium"],["Clostridium_Cellulolytic_medium.yaml","clostridium_cellulolytic_medium"],["HALOCELLA_CELLULOLYTICA_MEDIUM.yaml","halocella_cellulolytica_medium"],["RUMINICLOSTRIDIUM_CELLOBIOPARUM_MEDIUM.yaml","ruminiclostridium_cellobioparum_medium"],["RUMINICLOSTRIDIUM_PAPYROSOLVENS_MEDIUM.yaml","ruminiclostridium_papyrosolvens_medium"]]},{"id":"CHEBI:17997","l":"dinitrogen","na":12,"nb":904,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_tryptic_soy_broth_anaerobic.yaml","1_2_tryptic_soy_broth_anaerobic"],["480g_medium__e94698e7.yaml","480g_medium"],["8kg_4_medium.yaml","8kg_4_medium"],["ABSS2.yaml","abss2"],["ABYSSISOLIBACTER_MEDIUM.yaml","abyssisolibacter_medium"]]},{"id":"CHEBI:3312","l":"calcium dichloride","na":12,"nb":516,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mgm_medium.yaml","15_mgm_medium"],["15_mh_medium.yaml","15_mh_medium"],["28_mh_medium.yaml","28_mh_medium"],["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["A3.yaml","a3"]]},{"id":"CHEBI:26833","l":"sulfur atom","na":12,"nb":153,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["1_2_SME_MEDIUM.yaml","1_2_sme_medium"],["9K_WITH_SULFUR_MEDIUM.yaml","9k_with_sulfur_medium"],["ACIDIANUS_BRIERLEYI_MEDIUM.yaml","acidianus_brierleyi_medium"],["ACIDITHIOBACILLUS_CALDUS_MEDIUM.yaml","acidithiobacillus_caldus_medium"],["ACIDITHIOBACILLUS_MEDIUM.yaml","acidithiobacillus_medium"],["ACIDOLOBUS_ACETICUS_MEDIUM.yaml","acidolobus_aceticus_medium"]]},{"id":"CHEBI:131527","l":"dipotassium hydrogen phosphate","na":10,"nb":2042,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"]]},{"id":"CHEBI:26836","l":"sulfuric acid","na":10,"nb":220,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["9K_MEDIUM.yaml","9k_medium"],["A3.yaml","a3"],["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["ACIDIFERROBACTER_MEDIUM.yaml","acidiferrobacter_medium"],["ACIDIFFEROBACTER_MURCIENSIS_MEDIUM.yaml","acidifferobacter_murciensis_medium"]]},{"id":"CHEBI:17790","l":"methanol","na":10,"nb":107,"a":[["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["2_mh_medium.yaml","2_mh_medium"],["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["ALTEROMONAS_MEDIUM.yaml","alteromonas_medium"],["BM_MEDIUM.yaml","bm_medium"]]},{"id":"CHEBI:26710","l":"sodium chloride","na":9,"nb":3474,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["10_mh_medium.yaml","10_mh_medium"],["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["1298.yaml","1298"],["15_mgm_medium.yaml","15_mgm_medium"]]},{"id":"CHEBI:31206","l":"ammonium chloride","na":9,"nb":2324,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]],"b":[["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["480G_MEDIUM.yaml","480g_medium"],["480g_medium__e94698e7.yaml","480g_medium"]]},{"id":"CHEBI:18385","l":"thiamine(1+)","na":8,"nb":94,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["ANB_aerobic.yaml","anb_aerobic"],["AQUASPIRILLUM_MEDIUM.yaml","aquaspirillum_medium"],["Basic_mineral_medium.yaml","basic_mineral_medium"],["CHITINIVIBRIO_MEDIUM.yaml","chitinivibrio_medium"],["Chemically_defined_medium.yaml","chemically_defined_medium"],["Chromatium_Medium.yaml","chromatium_medium"]]},{"id":"CHEBI:15366","l":"acetic acid","na":8,"nb":26,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["ACY.yaml","ACY"],["AE_BROTH.yaml","ae_broth"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Acetobacter_Europaeus_Medium.yaml","acetobacter_europaeus_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"]]},{"id":"CHEBI:15361","l":"pyruvate","na":8,"nb":24,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["ARCOBACTER_ANAEROPHILUS_MEDIUM.yaml","arcobacter_anaerophilus_medium"],["CENTENUM_MEDIUM.yaml","centenum_medium"],["CMM.yaml","cmm"],["NMM_with_pyruvate.yaml","nmm_with_pyruvate"],["ams1_pyruvate_glycine.yaml","ams1_pyruvate_glycine"],["ams1_pyruvate_glycine__08b97e38.yaml","ams1_pyruvate_glycine"]]},{"id":"CHEBI:18222","l":"xylose","na":8,"nb":14,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]],"b":[["COLON_EXTRACT_MEDIUM.yaml","colon_extract_medium"],["MODIFIED_CALDICELLULOSIRUPTOR_MEDIUM.yaml","modified_caldicellulosiruptor_medium"],["MRSsi.yaml","mrssi"],["Thermotoga_hypogea_medium.yaml","thermotoga_hypogea_medium"],["batch_cultivation_medium_for_a28.yaml","batch_cultivation_medium_for_a28"],["batch_cultivation_medium_for_ta1.yaml","batch_cultivation_medium_for_ta1"]]},{"id":"CHEBI:37166","l":"xylan","na":8,"nb":14,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["CLOSTRIDIUM_AEROTOLERANS_MEDIUM.yaml","clostridium_aerotolerans_medium"],["TREPONEMA_THERMOPHILUM_MEDIUM.yaml","treponema_thermophilum_medium"],["VXG_GELLAN.yaml","vxg_gellan"],["XED_Agar.yaml","xed_agar"],["XYLAN_MEDIUM.yaml","xylan_medium"],["Xy_agar.yaml","xy_agar"]]},{"id":"CHEBI:32599","l":"magnesium sulfate","na":7,"nb":1459,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"]],"b":[["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["10_mh_medium.yaml","10_mh_medium"],["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["15_mh_medium.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"]]},{"id":"CHEBI:37585","l":"sodium dihydrogenphosphate","na":7,"nb":173,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["ANT.yaml","ant"],["ATRIBACTERIUM_MEDIUM.yaml","atribacterium_medium"],["BASAL_MEDIUM.yaml","basal_medium"]]},{"id":"CHEBI:17057","l":"cellobiose","na":7,"nb":121,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["A7_MEDIUM.yaml","a7_medium"],["ACETIVIBRIO_ALKALICELLULOSI_MEDIUM.yaml","acetivibrio_alkalicellulosi_medium"],["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["ALKALIFLEXUS_MEDIUM.yaml","alkaliflexus_medium"],["ANAEROBACTERIUM_MEDIUM.yaml","anaerobacterium_medium"],["ANAEROCELLUM_MEDIUM.yaml","anaerocellum_medium"]]},{"id":"CHEBI:32139","l":"sodium hydrogencarbonate","na":6,"nb":1471,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mh_medium.yaml","15_mh_medium"],["15_mh_medium__b586cb85.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM.yaml","1_2_sme_medium"]]},{"id":"CHEBI:76209","l":"sodium sulfide nonahydrate","na":6,"nb":1198,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["1_2_SME_MEDIUM.yaml","1_2_sme_medium"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["480G_MEDIUM.yaml","480g_medium"],["A1_MEDIUM.yaml","a1_medium"],["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"]]},{"id":"CHEBI:28017","l":"starch","na":6,"nb":282,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"]],"b":[["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"],["1_10_r2a_medium_modified_yeast_extract.yaml","1_10_r2a_medium_modified_yeast_extract"],["1_2_r2a_medium_with_75_artificial_seawater.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["1_2_r2a_medium_with_75_artificial_seawater__5b6dd332.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["225M1_MEDIUM.yaml","225m1_medium"],["225m1_medium__5109009b.yaml","225m1_medium"]]},{"id":"CHEBI:6636","l":"magnesium dichloride","na":6,"nb":67,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mh_medium.yaml","15_mh_medium"],["1_2_r2a_75_asw.yaml","1_2_r2a_75_asw"],["28_mh_medium.yaml","28_mh_medium"],["ALCALIPHILIC_AMPHIBACILLUS_STRAINS_MEDIUM.yaml","alcaliphilic_amphibacillus_strains_medium"],["ALKALISPIRILLUM_MOBILE_MEDIUM.yaml","alkalispirillum_mobile_medium"]]},{"id":"CHEBI:30772","l":"butyric acid","na":6,"nb":26,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"],["Mega.yaml","Mega"],["RUMEN_BACTERIA_MEDIUM.yaml","rumen_bacteria_medium"],["SELENOMONAS_WG_MEDIUM.yaml","selenomonas_wg_medium"]]},{"id":"CHEBI:24996","l":"lactate","na":22,"nb":6,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["ARCOBACTER_ANAEROPHILUS_MEDIUM.yaml","arcobacter_anaerophilus_medium"],["defined_freshwater_medium_cocl2__f0ffbcc6.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__41b1d433.yaml","defined_freshwater_medium_coso4"],["fermentation_medium_lactate_nh4cl.yaml","fermentation_medium_lactate_nh4cl"],["modified_m1_medium_with_20_mm_lactate_pinchuk_et_al.yaml","modified_m1_medium_with_20_mm_lactate_pinchuk_et_al"],["modified_m1_medium_with_lactate_and_glycine_no_nh4cl.yaml","modified_m1_medium_with_lactate_and_glycine_no_nh4cl"]]},{"id":"CHEBI:176843","l":"vitamin B12","na":5,"nb":1411,"a":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Soil_Corrinoid_B12_Reservoir_Community.html","Soil Corrinoid Reservoir Microbial Community"],["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"]]},{"id":"CHEBI:17015","l":"riboflavin","na":5,"nb":1290,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"]]},{"id":"CHEBI:17754","l":"glycerol","na":5,"nb":165,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"]],"b":[["1_ogawa_medium.yaml","1_ogawa_medium"],["1_ogawa_medium__65d0ae34.yaml","1_ogawa_medium"],["5_G_MEDIUM.yaml","5_g_medium"],["5_g_medium__8aa8a45a.yaml","5_g_medium"],["6_B_MEDIUM.yaml","6_b_medium"],["6_b_medium__990e4708.yaml","6_b_medium"]]},{"id":"CHEBI:30769","l":"citric acid","na":5,"nb":55,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["Azospira_Medium.yaml","azospira_medium"],["BG11.yaml","bg11"],["BG11_medium.yaml","bg11_medium"],["CTM_MEDIUM.yaml","ctm_medium"],["ETHANOLOGENBACTERIUM_MEDIUM.yaml","ethanologenbacterium_medium"],["GINGER_BEER_PLANT_MEDIUM.yaml","ginger_beer_plant_medium"]]},{"id":"CHEBI:16828","l":"L-tryptophan","na":5,"nb":40,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["CDMM.yaml","cdmm"],["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["M9_minimal_media_aromix_noCarbon.yaml","M9 minimal media aromix noCarbon"],["MDM.yaml","mdm"]]},{"id":"CHEBI:30776","l":"hexanoic acid","na":5,"nb":7,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["DESULFUROBACTERIUM_MEDIUM.yaml","desulfurobacterium_medium"],["TD3_MEDIUM.yaml","td3_medium"],["THERMODESULFOBACTERIUM_HYDROGENIPHILUM_MEDIUM.yaml","thermodesulfobacterium_hydrogeniphilum_medium"],["THERMODESULFOBACTERIUM_HYDROGENOPHILUM_MEDIUM.yaml","thermodesulfobacterium_hydrogenophilum_medium"],["desulfurobacterium_medium__edb237d2.yaml","desulfurobacterium_medium"],["td3_medium__4a2d4552.yaml","td3_medium"]]},{"id":"CHEBI:15377","l":"water","na":4,"nb":2283,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1_10_MB_agar.yaml","1_10_mb_agar"],["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"],["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"]]},{"id":"CHEBI:8806","l":"Resazurin","na":4,"nb":1604,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM.yaml","1_2_sme_medium"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["480G_MEDIUM.yaml","480g_medium"],["480g_medium__e94698e7.yaml","480g_medium"]]},{"id":"CHEBI:62946","l":"ammonium sulfate","na":4,"nb":816,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM.yaml","1_2_sme_medium"],["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"]]},{"id":"CHEBI:17634","l":"D-glucose","na":4,"nb":441,"a":[["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"]],"b":[["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"],["1_2_mrs_1_2_bhi_agar.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_mrs_1_2_bhi_agar__56430c33.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_tryptic_soy_broth_anaerobe.yaml","1_2_tryptic_soy_broth_anaerobe"],["1_2_tryptic_soy_broth_anaerobic.yaml","1_2_tryptic_soy_broth_anaerobic"],["1_2_tryptic_soy_broth_anaerobic__d70593aa.yaml","1_2_tryptic_soy_broth_anaerobic"]]},{"id":"CHEBI:91247","l":"L-cysteine hydrochloride","na":4,"nb":134,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["ABB.yaml","ABB"],["ACY.yaml","ACY"],["AP11MH_medium.yaml","ap11mh_medium"],["Actinotalea_fermentas_medium.yaml","actinotalea_fermentas_medium"],["BBL_ACTINOMYCES_BROTH.yaml","bbl_actinomyces_broth"]]},{"id":"CHEBI:15603","l":"L-leucine","na":4,"nb":70,"a":[["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"]],"b":[["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["Hypertonic_medium.yaml","hypertonic_medium"],["MCD_Medium.yaml","mcd_medium"]]},{"id":"CHEBI:16199","l":"urea","na":4,"nb":45,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["A7_MEDIUM.yaml","a7_medium"],["Agro_defined_trehalose.yaml","Agro defined trehalose"],["BACILLUS_PASTEURII_MEDIUM.yaml","bacillus_pasteurii_medium"],["BM7CO_MEDIUM.yaml","bm7co_medium"],["C41_MEDIUM.yaml","c41_medium"],["CATONELLA_UREILYTICA_MEDIUM.yaml","catonella_ureilytica_medium"]]},{"id":"CHEBI:16811","l":"methionine","na":4,"nb":25,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["Chamberlain_CDM.yaml","chamberlain_cdm"],["DEINOCOCCUS_MEDIUM.yaml","deinococcus_medium"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["MS13_Medium.yaml","ms13_medium"]]},{"id":"CHEBI:16411","l":"indole-3-acetic acid","na":20,"nb":4,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"]],"b":[["ENDOMICROBIUM_PROAVITUM_RSA_MEDIUM.yaml","endomicrobium_proavitum_rsa_medium"],["MODIFIED_AM5_MEDIUM_2.yaml","modified_am5_medium_2"],["am5_medium_elusimicrobium_medium.yaml","am5_medium_elusimicrobium_medium"],["endomicrobium_proavitum_rsa_medium__51692939.yaml","endomicrobium_proavitum_rsa_medium"]]},{"id":"CHEBI:16899","l":"D-mannitol","na":4,"nb":18,"a":[["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["HETEROTROPHIC_MEDIUM_H3P.yaml","heterotrophic_medium_h3p"],["MGL.yaml","MGL"],["Modified_YM.yaml","Modified YM"],["NF.yaml","NF"],["NL-CCM.yaml","NL-CCM"],["NLDM_defined.yaml","NLDM_defined"]]},{"id":"CHEBI:18237","l":"glutamic acid","na":4,"nb":13,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["ACANTHAMOEBA_MEDIUM.yaml","acanthamoeba_medium"],["HALISCOMENOBACTER_MEDIUM.yaml","haliscomenobacter_medium"],["LENTIBACILLUS_MEDIUM.yaml","lentibacillus_medium"],["McAA_formate_No_pABA.yaml","McAA formate No pABA"],["NATRONOBACTERIUM_MEDIUM.yaml","natronobacterium_medium"],["PSA_medium.yaml","psa_medium"]]},{"id":"CHEBI:15956","l":"biotin","na":3,"nb":1645,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2ASW.yaml","2asw"]]},{"id":"CHEBI:75832","l":"iron(2+) sulfate (anhydrous)","na":3,"nb":226,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["ACIDITHIOBACILLUS_FERRIVORANS_MEDIUM.yaml","acidithiobacillus_ferrivorans_medium"],["ACY.yaml","ACY"],["AQUASPIRILLUM_MEDIUM_II.yaml","aquaspirillum_medium_ii"],["BACILLUS_THERMOALCALOPHILUS_MEDIUM.yaml","bacillus_thermoalcalophilus_medium"],["BLASTOCOCCUS_AGGREGATUS_MEDIUM.yaml","blastococcus_aggregatus_medium"],["Basal_Salt_Medium_with_biphenyl.yaml","basal_salt_medium_with_biphenyl"]]},{"id":"CHEBI:17191","l":"L-isoleucine","na":3,"nb":65,"a":[["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"]],"b":[["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["CTM_MEDIUM.yaml","ctm_medium"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MCD_Medium.yaml","mcd_medium"]]},{"id":"ENVO:00005801","l":"rhizosphere","na":62,"nb":3,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"]],"b":[["R2A_AGAR.yaml","r2a_agar"],["half_strength_murashige_skoog_medium_for_arabidopsis_growth.yaml","half_strength_murashige_skoog_medium_for_arabidopsis_growth"],["nitrogen_free_plant_nutrient_solution_for_soybean_growth.yaml","nitrogen_free_plant_nutrient_solution_for_soybean_growth"]]},{"id":"CHEBI:17561","l":"L-cysteine","na":3,"nb":60,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["70_30_sporulation_medium.yaml","70_30_sporulation_medium"],["BHIS_CaCl2.yaml","BHIS_CaCl2"],["BHIS_HOMOPIPES.yaml","BHIS_HOMOPIPES"],["BHIS_K3.yaml","BHIS_K3"],["BHIS_K3_noGlucose.yaml","BHIS_K3_noGlucose"],["BHIS_PIPES.yaml","BHIS_PIPES"]]},{"id":"CHEBI:15356","l":"cysteine","na":3,"nb":40,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["AMB_MEDIUM.yaml","amb_medium"],["Chopped_Meat_Carbohydrate_Medium.yaml","chopped_meat_carbohydrate_medium"],["Chopped_Meat_Carbohydrate_Medium_w_Tween_80.yaml","chopped_meat_carbohydrate_medium_w_tween_80"],["FRANCISELLA_HALIOTICIDA_MEDIUM.yaml","francisella_halioticida_medium"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"]]},{"id":"CHEBI:17716","l":"lactose","na":3,"nb":25,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"]],"b":[["1298.yaml","1298"],["ALKALINE_CELLULOSE_AGAR.yaml","alkaline_cellulose_agar"],["Basal_synthetic_medium.yaml","basal_synthetic_medium"],["CLOSTRIDIUM_VINCENTII_MEDIUM.yaml","clostridium_vincentii_medium"],["M17_MEDIUM_FOR_LACTIC_STREPTOCOCCI.yaml","m17_medium_for_lactic_streptococci"],["STREPTOCOCCUS_SUIS_MEDIUM.yaml","streptococcus_suis_medium"]]},{"id":"CHEBI:30742","l":"ethylene glycol","na":3,"nb":21,"a":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"]],"b":[["acetobacterium_medium_marine.yaml","acetobacterium_medium_marine"],["bm_in_arabinose_hodgson_et_al.yaml","bm_in_arabinose_hodgson_et_al"],["bm_in_cellobiose_hodgson_et_al.yaml","bm_in_cellobiose_hodgson_et_al"],["bm_in_fructose_hodgson_et_al.yaml","bm_in_fructose_hodgson_et_al"],["bm_in_galactose_hodgson_et_al.yaml","bm_in_galactose_hodgson_et_al"],["bm_in_glucose_hodgson_et_al.yaml","bm_in_glucose_hodgson_et_al"]]},{"id":"CHEBI:26271","l":"proline","na":3,"nb":19,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["cdm_lab_medium.yaml","cdm_lab_medium"],["complete_chemically_defined_medium.yaml","complete_chemically_defined_medium"],["minimal_chemically_defined_medium_his_pro_letort_2001.yaml","minimal_chemically_defined_medium_his_pro_letort_2001"]]},{"id":"CHEBI:15741","l":"succinic acid","na":3,"nb":16,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["AQUASPIRILLUM_MEDIUM_II.yaml","aquaspirillum_medium_ii"],["DESULFUROBACTERIUM_MEDIUM.yaml","desulfurobacterium_medium"],["MAGNETOSPIRILLUM_MEDIUM.yaml","magnetospirillum_medium"],["MG_minimal_media.yaml","MG minimal media"],["MG_minimal_media_noIron.yaml","MG minimal media noIron"],["PETROBACTER_SUCCINIMANDENS_MEDIUM.yaml","petrobacter_succinimandens_medium"]]},{"id":"CHEBI:17750","l":"glycine betaine","na":3,"nb":15,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["CUNICULIPLASMA_MEDIUM.yaml","cuniculiplasma_medium"],["MALEDIVIBACTER_MEDIUM.yaml","maledivibacter_medium"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"]]},{"id":"CHEBI:16482","l":"naphthalene","na":3,"nb":3,"a":[["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"]],"b":[["DESULFOBACTERIUM_NAPHTHALENIVOLANS_MEDIUM.yaml","desulfobacterium_naphthalenivolans_medium"],["LB_Medium_with_50_ppm_Naphthalene.yaml","lb_medium_with_50_ppm_naphthalene"],["desulfobacterium_naphthalenivolans_medium__c96254de.yaml","desulfobacterium_naphthalenivolans_medium"]]},{"id":"CHEBI:26977","l":"thiosulfate","na":3,"nb":3,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"]],"b":[["AMOEBOBACTER_MEDIUM.yaml","amoebobacter_medium"],["Artificial_seawater_base_with_thiosulfate_as_the_electron_donor.yaml","artificial_seawater_base_with_thiosulfate_as_the_electron_donor"],["pfennigs_medium__4e5aaa08.yaml","pfennigs_medium"]]},{"id":"CHEBI:75213","l":"sodium molybdate dihydrate","na":2,"nb":2172,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["1a_Medium.yaml","1a_medium"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["3n_bbm_v.yaml","3n_bbm_v"]]},{"id":"CHEBI:32588","l":"potassium chloride","na":2,"nb":1953,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mgm_medium.yaml","15_mgm_medium"],["15_mh_medium.yaml","15_mh_medium"],["15_mh_medium__b586cb85.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"]]},{"id":"CHEBI:35696","l":"cobalt dichloride","na":2,"nb":493,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["1a_Medium.yaml","1a_medium"],["ACIDIC_DILUTED_ASM_MEDIUM.yaml","acidic_diluted_asm_medium"],["ACIDIFFEROBACTER_MURCIENSIS_MEDIUM.yaml","acidifferobacter_murciensis_medium"],["ALKALINUS_ABYSSINIESE_MEDIUM.yaml","alkalinus_abyssiniese_medium"],["ALKALIPHILUS_CROTONATOXIDANS_MEDIUM.yaml","alkaliphilus_crotonatoxidans_medium"],["ANAEROLINEA_MEDIUM_C.yaml","anaerolinea_medium_c"]]},{"id":"CHEBI:63005","l":"sodium nitrate","na":2,"nb":358,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_sabourauds_agar.yaml","1_10_sabourauds_agar"],["1_10_sabourauds_agar__6d784de4.yaml","1_10_sabourauds_agar"],["1a_Medium.yaml","1a_medium"]]},{"id":"CHEBI:35176","l":"zinc sulfate","na":2,"nb":198,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["7H9.yaml","7H9"],["ANB_aerobic.yaml","anb_aerobic"],["BACTO_MIDDLEBROOK_7H9_BROTH.yaml","bacto_middlebrook_7h9_broth"],["Basic_mineral_medium.yaml","basic_mineral_medium"],["CAMM.yaml","camm"],["CDM_for_Continuous_Cultivation.yaml","cdm_for_continuous_cultivation"]]},{"id":"ENVO:01001405","l":"laboratory environment","na":198,"nb":2,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]],"b":[["glycerol_fermentation_medium_for_diet_coculture.yaml","glycerol_fermentation_medium_for_diet_coculture"],["tap_medium.yaml","tap_medium"]]},{"id":"CHEBI:23414","l":"copper(II) sulfate","na":2,"nb":148,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["ALCALIGENES_MEDIUM.yaml","alcaligenes_medium"],["Alkaline_halophile_medium.yaml","alkaline_halophile_medium"],["BACTO_MIDDLEBROOK_7H9_BROTH.yaml","bacto_middlebrook_7h9_broth"],["Basal_synthetic_medium.yaml","basal_synthetic_medium"],["CDM_for_Continuous_Cultivation.yaml","cdm_for_continuous_cultivation"],["CLOSTRIDIUM_METHYLPENTOSUM_MEDIUM.yaml","clostridium_methylpentosum_medium"]]},{"id":"CHEBI:75228","l":"sodium lactate","na":2,"nb":131,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"]],"b":[["ANAEROBACILLUS_ARSENICISELENATIS_MEDIUM.yaml","anaerobacillus_arseniciselenatis_medium"],["ARCHAEOGLOBUS_FULGIDUS_MEDIUM.yaml","archaeoglobus_fulgidus_medium"],["ARCHAEOGLOBUS_SULFATICALLIDUS_MEDIUM.yaml","archaeoglobus_sulfaticallidus_medium"],["Artificial_seawater_medium_for_strain_JS_SRB250Lac.yaml","artificial_seawater_medium_for_strain_js_srb250lac"],["BACILLUS_INFERNUS_MEDIUM.yaml","bacillus_infernus_medium"],["BACILLUS_MACYAE_MEDIUM.yaml","bacillus_macyae_medium"]]},{"id":"CHEBI:9754","l":"tris","na":2,"nb":107,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["5_salt_water_growth_medium.yaml","5_salt_water_growth_medium"],["70_30_sporulation_medium.yaml","70_30_sporulation_medium"],["ACY.yaml","ACY"],["ALCALIGENES_MEDIUM.yaml","alcaligenes_medium"]]},{"id":"CHEBI:63041","l":"manganese(II) chloride","na":2,"nb":105,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["ANB_aerobic.yaml","anb_aerobic"],["Asp2.yaml","asp2"],["Basic_mineral_medium.yaml","basic_mineral_medium"],["CHITINIVIBRIO_MEDIUM.yaml","chitinivibrio_medium"],["CMM.yaml","cmm"],["Defined_minimal_medium.yaml","defined_minimal_medium"]]},{"id":"CHEBI:30808","l":"iron trichloride","na":2,"nb":38,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["AZOSPIRILLUM_AMAZONENSE_MEDIUM.yaml","azospirillum_amazonense_medium"],["Beijerinckia_medium_for_isolation.yaml","beijerinckia_medium_for_isolation"],["CARBOXYMETHYL_CELLULOSE_MEDIUM.yaml","carboxymethyl_cellulose_medium"],["CYTOPHAGA_MEDIUM.yaml","cytophaga_medium"],["Castenholz_TYE_medium.yaml","castenholz_tye_medium"],["FRANCISELLA_HALIOTICIDA_MEDIUM.yaml","francisella_halioticida_medium"]]},{"id":"CHEBI:60720","l":"sodium silicate","na":2,"nb":35,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["Asp2.yaml","asp2"],["HALOBACTERIOVORAX_MEDIUM.yaml","halobacteriovorax_medium"],["Half_Strength_Bacto_Marine_Broth.yaml","half_strength_bacto_marine_broth"],["MEDIUM_514_plus_additional_salt.yaml","medium_514_plus_additional_salt"],["METHANOPYRUS_MEDIUM.yaml","methanopyrus_medium"],["MODIFIED_MEDIUM_514.yaml","modified_medium_514"]]},{"id":"CHEBI:16947","l":"citrate(3-)","na":2,"nb":31,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["E2_medium_with_citrate.yaml","e2_medium_with_citrate"],["M9_minimal_medium_with_citrate.yaml","m9_minimal_medium_with_citrate"],["Vogels_Medium_N.yaml","vogels_medium_n"],["aspartate_salt_schaechter_et_al.yaml","aspartate_salt_schaechter_et_al"],["batch_medium_mattanovich_et_al.yaml","batch_medium_mattanovich_et_al"],["bg11_0_015_mm_iron_shcolnick_2006.yaml","bg11_0_015_mm_iron_shcolnick_2006"]]},{"id":"CHEBI:64205","l":"calcium nitrate","na":2,"nb":23,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"]],"b":[["9K_MEDIUM.yaml","9k_medium"],["9K_WITH_SULFUR_MEDIUM.yaml","9k_with_sulfur_medium"],["9_K_medium.yaml","9_k_medium"],["9_k_medium__c97a7f66.yaml","9_k_medium"],["9k_medium__4af6025b.yaml","9k_medium"],["ACIDIANUS_BRIERLEYI_MEDIUM.yaml","acidianus_brierleyi_medium"]]},{"id":"CHEBI:30768","l":"propionic acid","na":2,"nb":21,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["ACY.yaml","ACY"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"],["MEDIUM_10.yaml","medium_10"],["Mega.yaml","Mega"]]},{"id":"CHEBI:132106","l":"sodium propionate","na":2,"nb":15,"a":[["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["DESULFOBULBUS_MEDIUM.yaml","desulfobulbus_medium"],["DESULFOFABA_HANSENII_MEDIUM.yaml","desulfofaba_hansenii_medium"],["DESULFOFABA_MEDIUM.yaml","desulfofaba_medium"],["DESULFORHABDUS_AMNIGENA_MEDIUM.yaml","desulforhabdus_amnigena_medium"],["DESULFOSALSIMONAS_MEDIUM.yaml","desulfosalsimonas_medium"],["DPM_MEDIUM.yaml","dpm_medium"]]},{"id":"ENVO:00002007","l":"sediment","na":10,"nb":2,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["modified_dsm_120_medium_for_diet_coculture.yaml","modified_dsm_120_medium_for_diet_coculture"],["modified_freshwater_medium_for_diet_coculture.yaml","modified_freshwater_medium_for_diet_coculture"]]},{"id":"CHEBI:27082","l":"trehalose","na":2,"nb":7,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"]],"b":[["BRADYMONAS_SEDIMINIS_MEDIUM.yaml","bradymonas_sediminis_medium"],["HELMUTKOENIGIA_MEDIUM.yaml","helmutkoenigia_medium"],["RH_MEDIUM.yaml","rh_medium"],["TREPONEMA_RECTALE_MEDIUM.yaml","treponema_rectale_medium"],["minimal_media__805aefdd.yaml","minimal_media"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:16865","l":"gamma-aminobutyric acid","na":2,"nb":6,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]],"b":[["CLOSTRIDIUM_AMINOBUTYRICUM_MEDIUM.yaml","clostridium_aminobutyricum_medium"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:16750","l":"guanosine","na":2,"nb":5,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:16830","l":"methylamine","na":2,"nb":5,"a":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"]],"b":[["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["MEDIUM_FOR_DSM_14457_AND_14458.yaml","medium_for_dsm_14457_and_14458"],["MEDIUM_FOR_METHYLOBACTERIUM_PODARIUM.yaml","medium_for_methylobacterium_podarium"],["acetobacterium_submarinus_medium__9fed26ec.yaml","acetobacterium_submarinus_medium"],["hyphomicrobium_medium__41859ce8.yaml","hyphomicrobium_medium"]]},{"id":"CHEBI:17300","l":"tetrachloroethene","na":2,"nb":5,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["MINERAL_SALTS_MEDIUM_WITH_TCE.yaml","mineral_salts_medium_with_tce"],["dehalobacter_restrictus_medium_tce.yaml","dehalobacter_restrictus_medium_tce"],["dehalobacter_restrictus_medium_tce__3ce89046.yaml","dehalobacter_restrictus_medium_tce"],["desulfuromonas_medium_tce.yaml","desulfuromonas_medium_tce"],["mineral_salts_medium_with_tce__be1bd293.yaml","mineral_salts_medium_with_tce"]]},{"id":"CHEBI:30746","l":"benzoic acid","na":5,"nb":2,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["UGA_defined_4CarbonMix_Nitrate_anaerobic_pH_7.1.yaml","UGA defined 4CarbonMix Nitrate anaerobic pH 7.1"],["togo_medium_m1949.yaml","togo_medium_m1949"]]},{"id":"CHEBI:53389","l":"poly(3-hydroxybutyrate)","na":5,"nb":2,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"],["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["PHB_AGAR.yaml","phb_agar"],["phb_agar__ec580e59.yaml","phb_agar"]]},{"id":"CHEBI:62064","l":"butane-2,3-diol","na":2,"nb":5,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["PROPIONIVIBRIO_MEDIUM.yaml","propionivibrio_medium"],["Pelobacter_carbinolicus_Medium.yaml","pelobacter_carbinolicus_medium"],["ne23_3_medium.yaml","ne23_3_medium"],["pelobacter_propionicus_medium_freshwater.yaml","pelobacter_propionicus_medium_freshwater"],["propionivibrio_medium__91fe4e4e.yaml","propionivibrio_medium"]]},{"id":"CHEBI:15882","l":"phenol","na":2,"nb":4,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]],"b":[["MEDIUM_FOR_BACILLUS_STEAROTHERMOPHILUS.yaml","medium_for_bacillus_stearothermophilus"],["anaerobic_bicarbonate_buffered_medium_with_phenol.yaml","anaerobic_bicarbonate_buffered_medium_with_phenol"],["defined_freshwater_medium_cocl2__ac506908.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__0930ab53.yaml","defined_freshwater_medium_coso4"]]},{"id":"CHEBI:86202","l":"chalcopyrite","na":4,"nb":2,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["acidianus_sp_jp7_medium.yaml","acidianus_sp_jp7_medium"],["acidianus_sp_jp7_medium__73757a06.yaml","acidianus_sp_jp7_medium"]]},{"id":"CHEBI:17045","l":"dinitrogen oxide","na":3,"nb":2,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"]],"b":[["PM_N2O.yaml","PM N2O"],["PM_argon75_N2O25.yaml","PM argon75 N2O25"]]},{"id":"CHEBI:28675","l":"dextrin","na":2,"nb":3,"a":[["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"]],"b":[["dt_medium_ph_3_5.yaml","dt_medium_ph_3_5"],["hickey_amp_tresner_agar.yaml","hickey_amp_tresner_agar"],["hickey_tresner_agar.yaml","hickey_tresner_agar"]]},{"id":"CHEBI:15354","l":"choline","na":2,"nb":2,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["CDM_LP.yaml","cdm_lp"],["HYPHOMICROBIUM_METHYLOVORUM_MEDIUM.yaml","hyphomicrobium_methylovorum_medium"]]},{"id":"CHEBI:17824","l":"propan-2-ol","na":2,"nb":2,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"]],"b":[["METHANOGENIUM_CV_MEDIUM.yaml","methanogenium_cv_medium"],["METHANOSPIRILLUM_SK_MEDIUM.yaml","methanospirillum_sk_medium"]]},{"id":"CHEBI:63036","l":"potassium dihydrogen phosphate","na":1,"nb":2726,"a":[["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"]],"b":[["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["1_10_sabourauds_agar.yaml","1_10_sabourauds_agar"],["1_10_sabourauds_agar__6d784de4.yaml","1_10_sabourauds_agar"],["1_2_GY_AGAR.yaml","1_2_gy_agar"]]},{"id":"CHEBI:15940","l":"nicotinic acid","na":1,"nb":1433,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2ASW.yaml","2asw"],["2asw__59e92e67.yaml","2asw"]]},{"id":"CHEBI:32954","l":"sodium acetate","na":1,"nb":597,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["A1_MARINE_MEDIUM.yaml","a1_marine_medium"],["A2_MEDIUM.yaml","a2_medium"],["AAM_MEDIUM.yaml","aam_medium"],["ABYSSISOLIBACTER_MEDIUM.yaml","abyssisolibacter_medium"],["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["ACETOMICROBIUM_FAECALE_MEDIUM.yaml","acetomicrobium_faecale_medium"]]},{"id":"CHEBI:32149","l":"sodium sulfate","na":1,"nb":584,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["1_2_r2a_75_asw.yaml","1_2_r2a_75_asw"],["1_2_r2a_medium_with_75_artificial_seawater.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["1_2_r2a_medium_with_75_artificial_seawater__5b6dd332.yaml","1_2_r2a_medium_with_75_artificial_seawater"],["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"],["ACIDAMINOBACTER_MEDIUM.yaml","acidaminobacter_medium"],["ACIDIFIED_MPOB_MEDIUM.yaml","acidified_mpob_medium"]]},{"id":"CHEBI:34683","l":"disodium hydrogenphosphate","na":1,"nb":570,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"],["1_2_mrs_1_2_bhi_agar.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_mrs_1_2_bhi_agar__56430c33.yaml","1_2_mrs_1_2_bhi_agar"],["1a_Medium.yaml","1a_medium"],["2ASW.yaml","2asw"],["2asw__59e92e67.yaml","2asw"]]},{"id":"CHEBI:17439","l":"cyanocob(III)alamin","na":1,"nb":187,"a":[["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["2ASW.yaml","2asw"],["2asw__59e92e67.yaml","2asw"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["3n_bbm_v_recipe_for_customer_orders.yaml","3n_bbm_v_recipe_for_customer_orders"],["ACY.yaml","ACY"],["ALP_defined.yaml","ALP defined"]]},{"id":"CHEBI:3311","l":"calcium carbonate","na":1,"nb":117,"a":[["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"]],"b":[["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["2_glucose_yeast_extract_peptone_agar.yaml","2_glucose_yeast_extract_peptone_agar"],["2_glucose_yeast_extract_peptone_agar__32ac0304.yaml","2_glucose_yeast_extract_peptone_agar"],["5_G_MEDIUM.yaml","5_g_medium"],["5_g_medium__8aa8a45a.yaml","5_g_medium"],["6_B_MEDIUM.yaml","6_b_medium"]]},{"id":"CHEBI:15428","l":"glycine","na":1,"nb":87,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["ACETOBACTEROIDES_GLYCINOPHILUS_MEDIUM.yaml","acetobacteroides_glycinophilus_medium"],["ACIDAMINOBACTER_MEDIUM.yaml","acidaminobacter_medium"],["ACIDAMINOCOCCUS_FERMENTANS_MEDIUM.yaml","acidaminococcus_fermentans_medium"],["ANT.yaml","ant"],["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"]]},{"id":"CHEBI:32036","l":"potassium sulfate","na":1,"nb":83,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"]],"b":[["225M1_MEDIUM.yaml","225m1_medium"],["225m1_medium__5109009b.yaml","225m1_medium"],["225m1_medium__936a42af.yaml","225m1_medium"],["ARTIFICIAL_PILOT_PLANT_WATER_MEDIUM.yaml","artificial_pilot_plant_water_medium"],["ARTIFICIAL_SOIL_AGAR.yaml","artificial_soil_agar"],["DESULFOSPOROSINUS_ACIDIPHILUS_MEDIUM.yaml","desulfosporosinus_acidiphilus_medium"]]},{"id":"CHEBI:33403","l":"elemental sulfur","na":1,"nb":82,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["ACIDIFERROBACTER_MEDIUM.yaml","acidiferrobacter_medium"],["ACIDILOBUS_MEDIUM.yaml","acidilobus_medium"],["AEROBIC_SULFOLOBALES_MEDIUM.yaml","aerobic_sulfolobales_medium"],["AS_medium.yaml","as_medium"]]},{"id":"CHEBI:232798","l":"sodium L-lactate","na":1,"nb":81,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"]],"b":[["ALP_defined.yaml","ALP defined"],["ALP_defined_chlorate.yaml","ALP defined chlorate"],["ALP_defined_noN.yaml","ALP defined noN"],["ALP_defined_perchlorate.yaml","ALP defined perchlorate"],["ALP_rich.yaml","ALP rich"],["ALP_richB.yaml","ALP richB"]]},{"id":"CHEBI:16015","l":"L-glutamic acid","na":1,"nb":73,"a":[["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]],"b":[["7H9.yaml","7H9"],["BACTO_MIDDLEBROOK_7H9_BROTH.yaml","bacto_middlebrook_7h9_broth"],["BGDM.yaml","bgdm"],["Bacillus_Medium.yaml","bacillus_medium"],["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"]]},{"id":"CHEBI:16467","l":"L-arginine","na":1,"nb":51,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["ABB.yaml","ABB"],["ACY.yaml","ACY"],["CAENICOLA_MOBILE_MEDIUM.yaml","caenicola_mobile_medium"],["CMM.yaml","cmm"],["CTM_MEDIUM.yaml","ctm_medium"],["Chamberlain_CDM.yaml","chamberlain_cdm"]]},{"id":"CHEBI:17203","l":"L-proline","na":1,"nb":48,"a":[["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["CDM_LP.yaml","cdm_lp"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MDM.yaml","mdm"],["MEIOTHERMUS_MEDIUM_R8.yaml","meiothermus_medium_r8"]]},{"id":"CHEBI:17418","l":"valeric acid","na":1,"nb":48,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"]],"b":[["ACY.yaml","ACY"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["ANAEROFILUM_MEDIUM.yaml","anaerofilum_medium"],["DESULFUROBACTERIUM_MEDIUM.yaml","desulfurobacterium_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"]]},{"id":"CHEBI:7916","l":"pantothenic acid","na":1,"nb":48,"a":[["Variovorax_Cryptococcus_Vitamin_Mutualism_Microcosm.html","Variovorax-Cryptococcus Vitamin Cross-Feeding Microcosm"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["A1_MEDIUM.yaml","a1_medium"],["ANAEROBIC_CHOLESTEROL_MEDIUM.yaml","anaerobic_cholesterol_medium"],["ANAEROBIC_THAUERA_MEDIUM.yaml","anaerobic_thauera_medium"],["AQUASPIRILLUM_MEDIUM_II.yaml","aquaspirillum_medium_ii"]]},{"id":"CHEBI:15971","l":"L-histidine","na":1,"nb":47,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["CAENICOLA_MOBILE_MEDIUM.yaml","caenicola_mobile_medium"],["CTM_MEDIUM.yaml","ctm_medium"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"]]},{"id":"CHEBI:18050","l":"L-glutamine","na":1,"nb":42,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"],["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"],["GLUTAMINE_MEDIUM.yaml","glutamine_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"]]},{"id":"CHEBI:17115","l":"L-serine","na":1,"nb":41,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["AMINOMONAS_MEDIUM.yaml","aminomonas_medium"],["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"]]},{"id":"CHEBI:27897","l":"tryptophan","na":1,"nb":32,"a":[["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"]],"b":[["4_yaco_media.yaml","4_yaco_media"],["ACIDAMINOCOCCUS_FERMENTANS_MEDIUM.yaml","acidaminococcus_fermentans_medium"],["Fry_et_al.yaml","fry_et_al"],["GLUTAMINE_MEDIUM.yaml","glutamine_medium"],["Leitch_et_al.yaml","leitch_et_al"],["MCD_Medium.yaml","mcd_medium"]]},{"id":"CHEBI:27570","l":"histidine","na":1,"nb":27,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["MS15_Medium.yaml","ms15_medium"],["NATRONINCOLA_HISTIDINOVORANS_MEDIUM.yaml","natronincola_histidinovorans_medium"]]},{"id":"CHEBI:28757","l":"fructose","na":1,"nb":27,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["ACETOBACTERIUM_MEDIUM.yaml","acetobacterium_medium"],["AQUINCOLA_MEDIUM.yaml","aquincola_medium"],["ARTFICIAL_FRESHWATER_MEDIUM_I.yaml","artficial_freshwater_medium_i"],["CLOSTRIDIUM_ACETATE_1_MEDIUM.yaml","clostridium_acetate_1_medium"],["DESULFOSPOROSINUS_ACIDOPHILUS_MEDIUM.yaml","desulfosporosinus_acidophilus_medium"],["EUBACTERIUM_AGGREGANS_MEDIUM.yaml","eubacterium_aggregans_medium"]]},{"id":"CHEBI:29016","l":"arginine","na":1,"nb":26,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["ACIDAMINOCOCCUS_FERMENTANS_MEDIUM.yaml","acidaminococcus_fermentans_medium"],["EUBACTERIUM_LENTUM_MEDIUM.yaml","eubacterium_lentum_medium"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["MS15_Medium.yaml","ms15_medium"]]},{"id":"CHEBI:41131","l":"crotonic acid","na":1,"nb":21,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["ALKALIPHILUS_CROTONATOXIDANS_MEDIUM.yaml","alkaliphilus_crotonatoxidans_medium"],["ALKALIPHILUS_HYDROTHERMALIS_MEDIUM.yaml","alkaliphilus_hydrothermalis_medium"],["DESULFATIRHABDIUM_MEDIUM.yaml","desulfatirhabdium_medium"],["Desulfatirhabdium_Butyrativorans_Medium.yaml","desulfatirhabdium_butyrativorans_medium"],["EUBACTERIUM_OXIDOREDUCENS_MEDIUM.yaml","eubacterium_oxidoreducens_medium"],["MPA_Medium.yaml","mpa_medium"]]},{"id":"CHEBI:16235","l":"guanine","na":1,"nb":19,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["MCD_Medium.yaml","mcd_medium"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"]]},{"id":"CHEBI:26806","l":"succinate","na":1,"nb":18,"a":[["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]],"b":[["LSG_Medium.yaml","lsg_medium"],["M9ZB_with_succinate.yaml","m9zb_with_succinate"],["MSYS_MEDIUM.yaml","msys_medium"],["NMM_with_succinate.yaml","nmm_with_succinate"],["PJC_with_succinate.yaml","pjc_with_succinate"],["SUCCINATE_MINERAL_MEDIUM.yaml","succinate_mineral_medium"]]},{"id":"CHEBI:64103","l":"sodium butyrate","na":1,"nb":18,"a":[["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["DESULFALLAS_THERMOSAPOVORANS_MEDIUM.yaml","desulfallas_thermosapovorans_medium"],["DESULFOBACTERIUM_CETONICUM_MEDIUM.yaml","desulfobacterium_cetonicum_medium"],["DESULFOCELLA_MEDIUM.yaml","desulfocella_medium"],["DESULFOFARCIMEN_MEDIUM.yaml","desulfofarcimen_medium"],["DESULFOSARCINA_CETONICA_MEDIUM.yaml","desulfosarcina_cetonica_medium"],["DESULFOTHERMUS_NAPHTHAE_MEDIUM.yaml","desulfothermus_naphthae_medium"]]},{"id":"CHEBI:18186","l":"tyrosine","na":1,"nb":17,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["Synthetic_Medium_C.yaml","synthetic_medium_c"],["complete_chemically_defined_medium.yaml","complete_chemically_defined_medium"],["fermentation_medium_glucose_tyrosine.yaml","fermentation_medium_glucose_tyrosine"]]},{"id":"CHEBI:29073","l":"L-ascorbic acid","na":1,"nb":13,"a":[["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["CTM_MEDIUM.yaml","ctm_medium"],["MG_minimal_media.yaml","MG minimal media"],["MG_minimal_media_noCarbon.yaml","MG minimal media noCarbon"],["MG_minimal_media_noIron.yaml","MG minimal media noIron"],["THERMODESULFOVIBRIO_MEDIUM_FOR_N1.yaml","thermodesulfovibrio_medium_for_n1"],["THERMODESULFOVIBRIO_YELLOWSTONII_MEDIUM.yaml","thermodesulfovibrio_yellowstonii_medium"]]},{"id":"CHEBI:16856","l":"glutathione","na":1,"nb":11,"a":[["Zymomonas_Ecoli_Exometabolomics_Obligate_Mutualism.html","Zymomonas-E. coli Exometabolomics-Designed Obligate Mutualism"]],"b":[["CDM_LP.yaml","cdm_lp"],["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"],["Modified_D58_medium.yaml","modified_d58_medium"],["SULFOBACILLUS_DISULFIDOOXIDANS_MEDIUM.yaml","sulfobacillus_disulfidooxidans_medium"],["clostridium_thermocellum_medium__d9fc1f82.yaml","clostridium_thermocellum_medium"]]},{"id":"CHEBI:48607","l":"lithium chloride","na":1,"nb":11,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["Chromatium_Medium.yaml","chromatium_medium"],["RECTINEMA_SUBTERRANEUM_MEDIUM.yaml","rectinema_subterraneum_medium"],["modified_1_5_sws_casein_starch_medium.yaml","modified_1_5_sws_casein_starch_medium"],["modified_vy_2_agar.yaml","modified_vy_2_agar"],["obsidian_pool_fermentor_opf_medium_modified_from_m_b_allen_1959.yaml","obsidian_pool_fermentor_opf_medium_modified_from_m_b_allen_1959"],["s88_vitamins.yaml","s88_vitamins"]]},{"id":"CHEBI:16810","l":"2-oxoglutarate(2-)","na":1,"nb":10,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"]],"b":[["BCYE_alpha_agar.yaml","bcye_alpha_agar"],["BM7_MEDIUM.yaml","bm7_medium"],["CTM_MEDIUM.yaml","ctm_medium"],["DinoMM_alphaKetoGlutAcid_NoNitrogen.yaml","DinoMM alphaKetoGlutAcid NoNitrogen"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"]]},{"id":"CHEBI:16602","l":"trichloroethene","na":9,"nb":1,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["dehalococcoides_medium__9ce6016b.yaml","dehalococcoides_medium"]]},{"id":"CHEBI:31346","l":"calcium sulfate","na":1,"nb":9,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]],"b":[["BEGGIATOA_MEDIUM.yaml","beggiatoa_medium"],["MINERAL_MEDIUM_WITH_GLUCOSE.yaml","mineral_medium_with_glucose"],["THIOTHRIX_MEDIUM.yaml","thiothrix_medium"],["anaerobic_mineral_medium_with_yeast_extract__5d534c46.yaml","anaerobic_mineral_medium_with_yeast_extract"],["anaerotignum_medium__bcb5094d.yaml","anaerotignum_medium"],["mineral_medium_with_glucose__bf4463a4.yaml","mineral_medium_with_glucose"]]},{"id":"CHEBI:28260","l":"galactose","na":1,"nb":8,"a":[["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]],"b":[["A1_MEDIUM.yaml","a1_medium"],["KPL_MEDIUM.yaml","kpl_medium"],["MYXOCOCCUS_FLAVESCENS_MEDIUM.yaml","myxococcus_flavescens_medium"],["Modified_SP_Medium.yaml","modified_sp_medium"],["SP_Medium.yaml","sp_medium"],["a1_medium__13c8113e.yaml","a1_medium"]]},{"id":"CHEBI:30411","l":"cobalamin","na":8,"nb":1,"a":[["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"]],"b":[["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"]]},{"id":"CHEBI:18012","l":"fumaric acid","na":1,"nb":6,"a":[["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["Brucella_broth_with_formate_and_fumarate.yaml","brucella_broth_with_formate_and_fumarate"],["TRICHLOROMONAS_MEDIUM.yaml","trichloromonas_medium"],["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"],["jcm_medium_no_1264.yaml","jcm_medium_no_1264"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"],["togo_medium_m1360.yaml","togo_medium_m1360"]]},{"id":"CHEBI:506227","l":"N-acetyl-D-glucosamine","na":1,"nb":6,"a":[["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["ANAEROBACCA_MEDIUM.yaml","anaerobacca_medium"],["BSK_MEDIUM.yaml","bsk_medium"],["NATRONOARCHAEA_MEDIUM_WITH_GLUCOSAMINE.yaml","natronoarchaea_medium_with_glucosamine"],["barbour_sfoenner_kelly_bsk_ii_medium.yaml","barbour_sfoenner_kelly_bsk_ii_medium"],["m30__354deb2e.yaml","m30"],["modified_bsk_medium__578ddf1c.yaml","modified_bsk_medium"]]},{"id":"NCBITaxon:2203","l":"Methanospirillum hungatei","na":6,"nb":1,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["medium_for_co_culture_of_strain_jt_with_methanospirillum_hungatei_nbrc_100397.yaml","medium_for_co_culture_of_strain_jt_with_methanospirillum_hungatei_nbrc_100397"]]},{"id":"NCBITaxon:35554","l":"Geobacter sulfurreducens","na":6,"nb":1,"a":[["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"]],"b":[["GEOBACTER_SULFURREDUCENS_MEDIUM.yaml","geobacter_sulfurreducens_medium"]]},{"id":"CHEBI:15729","l":"L-ornithine","na":1,"nb":5,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:16119","l":"shikimic acid","na":1,"nb":5,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"NCBITaxon:3077","l":"Chlorella vulgaris","na":5,"nb":1,"a":[["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Chlorella_Vulgaris_Whey_Coculture.html","Chlorella vulgaris Whey Co-culture"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Microalgae_Cyanobacteria_Bioactive_Peptide_Consortia.html","Microalgae-Cyanobacteria Bioactive Peptide Consortia"]],"b":[["tap_medium.yaml","tap_medium"]]},{"id":"CHEBI:16991","l":"deoxyribonucleic acid","na":1,"nb":4,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["PH_MEDIUM.yaml","ph_medium"],["sp4_z_medium__eae01184.yaml","sp4_z_medium"],["ureaplasma_medium__abc787f9.yaml","ureaplasma_medium"],["ureaplasma_medium__de7f9c49.yaml","ureaplasma_medium"]]},{"id":"CHEBI:17879","l":"4-hydroxybenzoate","na":1,"nb":4,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["DIETHYL_PHOSPHONATE_MEDIUM.yaml","diethyl_phosphonate_medium"],["defined_freshwater_medium_cocl2__140b53e4.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__7cf7eff3.yaml","defined_freshwater_medium_coso4"],["nutrient_medium_p_hydroxybenzoate.yaml","nutrient_medium_p_hydroxybenzoate"]]},{"id":"ENVO:01000306","l":"freshwater environment","na":4,"nb":1,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]],"b":[["tap_medium.yaml","tap_medium"]]},{"id":"CHEBI:32816","l":"pyruvic acid","na":1,"nb":3,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["ALGORIPHAGUS_ALKALIPHILUS_MEDIUM.yaml","algoriphagus_alkaliphilus_medium"],["modified_mrs.yaml","modified_mrs"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"ENVO:00002170","l":"compost","na":3,"nb":1,"a":[["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"]],"b":[["pcs_fp_medium_for_thermophilic_cellulose_degradation.yaml","pcs_fp_medium_for_thermophilic_cellulose_degradation"]]},{"id":"CHEBI:18139","l":"trimethylamine","na":1,"nb":2,"a":[["South_Bay_Salt_Pond_Methane_Restoration_Community.html","South Bay Salt Pond Methane Restoration Microbial Community"]],"b":[["methanogens_saline_water_medium__61ede417.yaml","methanogens_saline_water_medium"],["sulfate_free_metako_medium__b4a668be.yaml","sulfate_free_metako_medium"]]},{"id":"CHEBI:18287","l":"L-fucose","na":1,"nb":2,"a":[["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"]],"b":[["PONTIELLA_MEDIUM.yaml","pontiella_medium"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:30751","l":"formic acid","na":2,"nb":1,"a":[["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:35366","l":"fatty acid","na":1,"nb":2,"a":[["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"]],"b":[["MODIFIED_AM5_MEDIUM_2.yaml","modified_am5_medium_2"],["modified_am5_medium__421a5fe8.yaml","modified_am5_medium"]]},{"id":"CHEBI:35899","l":"crotonate","na":1,"nb":2,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["SERPENTINICELLA_MEDIUM.yaml","serpentinicella_medium"],["for_dsm_17722.yaml","for_dsm_17722"]]},{"id":"NCBITaxon:1148","l":"Synechocystis sp. PCC 6803","na":2,"nb":1,"a":[["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["bg11__f771062f.yaml","bg11"]]},{"id":"NCBITaxon:296543","l":"Thalassiosira pseudonana CCMP1335","na":1,"nb":2,"a":[["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["2ASW.yaml","2asw"],["F_2_Medium.yaml","f_2_medium"]]},{"id":"NCBITaxon:511145","l":"Escherichia coli str. K-12 substr. MG1655","na":2,"nb":1,"a":[["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["LB_Medium.yaml","lb_medium"]]},{"id":"NCBITaxon:524","l":"Acidiphilium cryptum","na":2,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["acidiphilium_medium__9ab0ce72.yaml","acidiphilium_medium"]]},{"id":"CHEBI:18248","l":"iron atom","na":1,"nb":1,"a":[["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["methanopyrus_medium_for_strain_116__7463935f.yaml","methanopyrus_medium_for_strain_116"]]},{"id":"CHEBI:22660","l":"aspartic acid","na":1,"nb":1,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"]]},{"id":"CHEBI:24266","l":"gluconic acid","na":1,"nb":1,"a":[["Wollastonite_Ramichloridium_Talaromyces_Fungal_Consortium.html","Wollastonite Ramichloridium-Talaromyces Fungal Consortium"]],"b":[["MAG_Modified_arabinose_gluconate_medium.yaml","mag_modified_arabinose_gluconate_medium"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":1,"nb":1,"a":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]],"b":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/CommunityMech--MediaIngredientMech.json b/assets/fleet/edges/CommunityMech--MediaIngredientMech.json index dcd74ae..094bd6e 100644 --- a/assets/fleet/edges/CommunityMech--MediaIngredientMech.json +++ b/assets/fleet/edges/CommunityMech--MediaIngredientMech.json @@ -1 +1 @@ -{"a":"CommunityMech","b":"MediaIngredientMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","MediaIngredientMech":"https://github.com/CultureBotAI/MediaIngredientMech/blob/main/data/ingredients/"},"n":240,"by":{"CHEBI":238,"ENVO":2},"terms":[{"id":"CHEBI:17234","l":"glucose","na":26,"nb":23,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"]],"b":[["mapped/Corn_Steep_Liquor_Glucose_Fumarate.yaml","Corn Steep Liquor + Glucose + Fumarate"],["mapped/Fastidious_Anaerobe_Broth_With_Meat_Granules.yaml","Fastidious Anaerobe Broth With Meat Granules"],["mapped/GYPS.yaml","GYPS"],["mapped/Glucose.yaml","Glucose"],["mapped/Glucose_2.yaml","glucose"],["mapped/Glucose_Acetate.yaml","Glucose + Acetate"]]},{"id":"CHEBI:33709","l":"amino acid","na":15,"nb":54,"a":[["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["mapped/1-aminocyclopropane-1-carboxylate.yaml","1-aminocyclopropane-1-carboxylate"],["mapped/3-Chloro-L-tyrosine.yaml","3-Chloro-L-tyrosine"],["mapped/3-aminobutyric_Acid.yaml","3-aminobutyric acid"],["mapped/4-azido-L-phenylalanine.yaml","4-azido-L-phenylalanine"],["mapped/5-Aminolevulinic_Acid.yaml","5-Aminolevulinic acid"],["mapped/5-aminovaleric_Acid.yaml","5-Aminovaleric acid"]]},{"id":"CHEBI:3312","l":"calcium dichloride","na":12,"nb":9,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/Cacl2.yaml","CaCl2"],["mapped/Cacl2_X_7_H2o.yaml","CaCl2 x 7 H2O"],["mapped/Calcium_Chloride.yaml","Calcium Chloride"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"]]},{"id":"CHEBI:26710","l":"sodium chloride","na":9,"nb":11,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/Brain_Heart_Infusion_Broth.yaml","Brain heart infusion broth"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Mineral_3B_Solution.yaml","Mineral 3B solution"],["mapped/Mineral_3B_Solution_Minus_Nitrogen.yaml","Mineral 3B solution minus Nitrogen"]]},{"id":"CHEBI:18276","l":"dihydrogen","na":58,"nb":8,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"]],"b":[["mapped/H23-methyl_Mercaptopropionate.yaml","H2+3-methyl Mercaptopropionate"],["mapped/H2_CO2.yaml","H2 + CO2"],["mapped/H2dimethylsulfide.yaml","H2+dimethylsulfide"],["mapped/H2methanol.yaml","H2+methanol"],["mapped/H2tetramethylammonium.yaml","H2+tetramethylammonium"],["mapped/H2trimethylamine.yaml","H2+trimethylamine"]]},{"id":"CHEBI:15740","l":"formate","na":23,"nb":8,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"]],"b":[["mapped/Formate.yaml","Formate"],["mapped/Formate3-methyl_Mercaptopropionate.yaml","Formate+3-methyl Mercaptopropionate"],["mapped/Formatedimethylsulfide.yaml","Formate+dimethylsulfide"],["mapped/Formatemethanol.yaml","Formate+methanol"],["mapped/Formatetetramethylammonium.yaml","Formate+tetramethylammonium"],["mapped/Formatetrimethylamine.yaml","Formate+trimethylamine"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":75,"nb":7,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]],"b":[["mapped/1-butanolCO2.yaml","1-butanol+CO2"],["mapped/1-propanolCO2.yaml","1-propanol+CO2"],["mapped/2-butanolCO2.yaml","2-butanol+CO2"],["mapped/2-propanolCO2.yaml","2-propanol+CO2"],["mapped/Carbon_dioxide_gas.yaml","Carbon dioxide gas"],["mapped/CyclopentanolCO2.yaml","Cyclopentanol+CO2"]]},{"id":"CHEBI:32599","l":"magnesium sulfate","na":7,"nb":7,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"]],"b":[["mapped/Magnesium_Sulfate.yaml","Magnesium sulfate"],["mapped/Mgso47h2o.yaml","MgSO4·7H2O"],["mapped/Mgso4_X_6_H2o.yaml","MgSO4 x 6 H2O"],["mapped/Mgso4_X_7_H2o.yaml","MgSO4 x 7 H2O"],["mapped/Modified_Wolfes_Minerals.yaml","Modified Wolfe's Minerals"],["mapped/UW_Concentrated_Base.yaml","UW concentrated base"]]},{"id":"CHEBI:30769","l":"citric acid","na":6,"nb":6,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["mapped/Citric_Acid.yaml","Citric acid"],["mapped/Citric_Acid_X_H2o.yaml","Citric acid x H2O"],["mapped/Citric_Acidh2o.yaml","Citric Acid•H2O"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Na2-citrate.yaml","Na2-citrate"],["mapped/Trisodium_Citrate.yaml","Trisodium citrate"]]},{"id":"ENVO:00001998","l":"soil","na":17,"nb":5,"a":[["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["mapped/Cr1_Soil.yaml","CR1 Soil"],["mapped/Green_House_Soil.yaml","Green House Soil"],["mapped/Soil.yaml","Soil"],["mapped/Soil_Extract.yaml","Soil extract"],["mapped/Vermont_Soil.yaml","Vermont Soil"]]},{"id":"CHEBI:17015","l":"riboflavin","na":5,"nb":8,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"]],"b":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/Riboflavin.yaml","Riboflavin"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Thauers_Vitamin_Mix_No_Biotin.yaml","Thauer's vitamin mix no Biotin"]]},{"id":"CHEBI:17634","l":"D-glucose","na":5,"nb":7,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"]],"b":[["mapped/Brain_Heart_Infusion_Broth.yaml","Brain heart infusion broth"],["mapped/D-glucose.yaml","D-Glucose"],["mapped/Dextrose.yaml","Dextrose"],["mapped/Glucose_Acetate.yaml","Glucose + Acetate"],["mapped/Glucose_Cellobiose_Starch_Trypticase_Yeast_Extract.yaml","Glucose + Cellobiose + Starch + Trypticase + Yeast Extract"],["mapped/Glucose_Formate.yaml","Glucose + Formate"]]},{"id":"CHEBI:176843","l":"vitamin B12","na":5,"nb":6,"a":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Soil_Corrinoid_B12_Reservoir_Community.html","Soil Corrinoid Reservoir Microbial Community"],["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/Cyanocobalamin.yaml","Cyanocobalamin"],["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/Vitamin_B12.yaml","Vitamin B12"],["mapped/Wolfes_Vitamin_Mix.yaml","Wolfe's vitamin mix"]]},{"id":"CHEBI:28017","l":"starch","na":6,"nb":5,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"]],"b":[["mapped/Fastidious_Anaerobe_Broth_With_Meat_Granules.yaml","Fastidious Anaerobe Broth With Meat Granules"],["mapped/Glucose_Cellobiose_Starch_Trypticase_Yeast_Extract.yaml","Glucose + Cellobiose + Starch + Trypticase + Yeast Extract"],["mapped/Glucose_Maltose_Cellobiose_Starch_Glycerol.yaml","Glucose + Maltose + Cellobiose + Starch + Glycerol"],["mapped/PYGS.yaml","PYGS"],["mapped/Starch.yaml","Starch"]]},{"id":"CHEBI:16646","l":"carbohydrate","na":4,"nb":80,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["mapped/1-Kestose.yaml","1-Kestose"],["mapped/2-Deoxy-D-Ribose.yaml","2-Deoxy-D-Ribose"],["mapped/2-Deoxy-D-glucose.yaml","2-Deoxy-D-glucose"],["mapped/2-fucosyllactose.yaml","2'-fucosyllactose"],["mapped/A-Cyclodextrin.yaml","a-Cyclodextrin"],["mapped/Agarose.yaml","Agarose"]]},{"id":"CHEBI:17992","l":"sucrose","na":15,"nb":4,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"]],"b":[["mapped/D-Sucrose.yaml","D-Sucrose"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Sucrose.yaml","Sucrose"],["mapped/Sucrose_Yeast_Extract.yaml","Sucrose + Yeast Extract"]]},{"id":"CHEBI:15377","l":"water","na":4,"nb":12,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/Brain_Heart_Infusion_Broth.yaml","Brain heart infusion broth"],["mapped/Distilled_Water.yaml","Distilled water"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"]]},{"id":"CHEBI:31206","l":"ammonium chloride","na":9,"nb":4,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]],"b":[["mapped/Ammonium_Chloride_Nitrogen_Source.yaml","Ammonium chloride (nitrogen source)"],["mapped/Mineral_3B_Solution.yaml","Mineral 3B solution"],["mapped/Nh4cl.yaml","NH4Cl"],["mapped/Tetramethyl_Ammonium_Chloride.yaml","Tetramethyl ammonium chloride"]]},{"id":"CHEBI:17057","l":"cellobiose","na":7,"nb":4,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["mapped/Cellobiose.yaml","Cellobiose"],["mapped/Glucose_Cellobiose_Starch_Trypticase_Yeast_Extract.yaml","Glucose + Cellobiose + Starch + Trypticase + Yeast Extract"],["mapped/Glucose_Maltose_Cellobiose_Starch_Glycerol.yaml","Glucose + Maltose + Cellobiose + Starch + Glycerol"],["mapped/PY-cellobiose.yaml","PY-cellobiose"]]},{"id":"CHEBI:32139","l":"sodium hydrogencarbonate","na":6,"nb":4,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["mapped/84_GL_NaHCO3_Solution.yaml","84 g/L NaHCO3 solution"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Nahco3.yaml","NaHCO3"]]},{"id":"CHEBI:6636","l":"magnesium dichloride","na":6,"nb":4,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["mapped/Mgcl2.yaml","MgCl2"],["mapped/Mgcl2_X_6_H2o.yaml","MgCl2 x 6 H2O"],["mapped/Mgcl2_X_7_H2o.yaml","MgCl2 x 7 H2O"],["mapped/Mgcl2x_6_H2o.yaml","MgCl2x 6 H2O"]]},{"id":"CHEBI:30089","l":"acetate","na":78,"nb":3,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"]],"b":[["mapped/Acetate.yaml","Acetate"],["mapped/Acetate_Carbon_Source.yaml","Acetate (carbon source)"],["mapped/Glucose_Acetate.yaml","Glucose + Acetate"]]},{"id":"CHEBI:17790","l":"methanol","na":11,"nb":3,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"]],"b":[["mapped/Formatemethanol.yaml","Formate+methanol"],["mapped/H2methanol.yaml","H2+methanol"],["mapped/Methanol.yaml","Methanol"]]},{"id":"CHEBI:37585","l":"sodium dihydrogenphosphate","na":7,"nb":3,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["mapped/Nah2po4.yaml","NaH2PO4"],["mapped/Nah2po4_X_2_H2o.yaml","NaH2PO4 x 2 H2O"],["mapped/Nah2po4h2o.yaml","NaH2PO4•H2O"]]},{"id":"CHEBI:15956","l":"biotin","na":3,"nb":6,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/Biotin.yaml","Biotin"],["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Wolfes_Vitamin_Mix.yaml","Wolfe's vitamin mix"]]},{"id":"CHEBI:17754","l":"glycerol","na":6,"nb":3,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"]],"b":[["mapped/Glucose_Maltose_Cellobiose_Starch_Glycerol.yaml","Glucose + Maltose + Cellobiose + Starch + Glycerol"],["mapped/Glycerol.yaml","Glycerol"],["mapped/Glycerol_2.yaml","glycerol"]]},{"id":"CHEBI:16828","l":"L-tryptophan","na":5,"nb":3,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-tryptophan.yaml","L-Tryptophan"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:75832","l":"iron(2+) sulfate (anhydrous)","na":3,"nb":5,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["mapped/Feso4.yaml","FeSO4"],["mapped/Feso4_X_5_H2o.yaml","FeSO4 x 5 H2O"],["mapped/Feso4_X_6_H2o.yaml","FeSO4 x 6 H2O"],["mapped/Feso4_X_7_H2o.yaml","FeSO4 x 7 H2O"],["mapped/Feso4_X_7h2o.yaml","FeSO4 x 7H2O"]]},{"id":"CHEBI:15603","l":"L-leucine","na":4,"nb":3,"a":[["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-leucine.yaml","L-Leucine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:17029","l":"chitin","na":4,"nb":3,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]],"b":[["mapped/Chitin.yaml","Chitin"],["unmapped/Chitin_From_Shrimp_Shells.yaml","Chitin from shrimp shells"],["unmapped/Colloidal_Chitin.yaml","Colloidal chitin"]]},{"id":"CHEBI:17561","l":"L-cysteine","na":3,"nb":4,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-cysteine.yaml","L-Cysteine"],["mapped/L-cysteine_Hcl_X_H2o.yaml","L-Cysteine HCl x H2O"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:17191","l":"L-isoleucine","na":3,"nb":3,"a":[["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-isoleucine.yaml","L-Isoleucine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:24996","l":"lactate","na":22,"nb":2,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["mapped/Glucose_Lactate.yaml","Glucose + Lactate"],["mapped/Lactate.yaml","Lactate"]]},{"id":"CHEBI:29034","l":"iron(3+)","na":21,"nb":2,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["mapped/Ferric_Iron.yaml","Ferric Iron"],["mapped/Ferrous_Ion.yaml","Ferrous Ion"]]},{"id":"CHEBI:16136","l":"hydrogen sulfide","na":12,"nb":2,"a":[["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["mapped/Hydrogen_Sulfide.yaml","Hydrogen sulfide"],["mapped/Sulfur.yaml","Sulfur"]]},{"id":"CHEBI:26833","l":"sulfur atom","na":12,"nb":2,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["mapped/Sulfur.yaml","Sulfur"],["mapped/Yeast_Extract_Sulfur.yaml","Yeast Extract + Sulfur"]]},{"id":"CHEBI:75213","l":"sodium molybdate dihydrate","na":2,"nb":11,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/Mc_trace_minerals.yaml","Mc_trace_minerals"],["mapped/Mc_trace_minerals_SO4free.yaml","Mc_trace_minerals_SO4free"],["mapped/Modified_Wolfes_Minerals.yaml","Modified Wolfe's Minerals"],["mapped/Na2moo42h2o.yaml","Na2MoO4·2H2O"],["mapped/Na2moo4_X_2_H2o.yaml","Na2MoO4 x 2 H2O"]]},{"id":"CHEBI:131527","l":"dipotassium hydrogen phosphate","na":10,"nb":2,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["mapped/K2hpo4.yaml","K2HPO4"],["mapped/K2hpo4_X_3_H2o.yaml","K2HPO4 x 3 H2O"]]},{"id":"CHEBI:28885","l":"butan-1-ol","na":9,"nb":2,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["mapped/1-butanolCO2.yaml","1-butanol+CO2"],["mapped/Butanol.yaml","Butanol"]]},{"id":"CHEBI:18222","l":"xylose","na":8,"nb":2,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]],"b":[["mapped/Glucose_Xylose.yaml","Glucose + Xylose"],["mapped/Xylose.yaml","Xylose"]]},{"id":"CHEBI:18385","l":"thiamine(1+)","na":8,"nb":2,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Thiamine.yaml","Thiamine"]]},{"id":"CHEBI:37166","l":"xylan","na":8,"nb":2,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["mapped/Xylan.yaml","Xylan"],["unmapped/Larchwood_Xylan.yaml","Larchwood xylan"]]},{"id":"CHEBI:30746","l":"benzoic acid","na":5,"nb":2,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["mapped/4_Carbon_Mix.yaml","4 Carbon Mix"],["mapped/Benzoic_Acid.yaml","benzoic acid"]]},{"id":"CHEBI:32588","l":"potassium chloride","na":2,"nb":5,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"]],"b":[["mapped/Kcl.yaml","KCl"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Mc_general_salts.yaml","Mc_general_salts"],["mapped/Mc_general_salts_SO4free.yaml","Mc_general_salts_SO4free"]]},{"id":"CHEBI:35696","l":"cobalt dichloride","na":2,"nb":5,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/Cobalt_chloride_hexahydrate.yaml","Cobalt chloride hexahydrate"],["mapped/Cocl2.yaml","CoCl2"],["mapped/Cocl2_X_2_H2o.yaml","CoCl2 x 2 H2O"],["mapped/Cocl2_X_4_H2o.yaml","CoCl2 x 4 H2O"],["mapped/Cocl2_X_6_H2o.yaml","CoCl2 x 6 H2O"]]},{"id":"CHEBI:16899","l":"D-mannitol","na":4,"nb":2,"a":[["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["mapped/D-mannitol.yaml","D-Mannitol"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:18237","l":"glutamic acid","na":4,"nb":2,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["mapped/4_Carbon_Mix.yaml","4 Carbon Mix"],["mapped/Glutamic_Acid.yaml","Glutamic acid"]]},{"id":"CHEBI:63005","l":"sodium nitrate","na":2,"nb":4,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/Nano.yaml","NaNO"],["mapped/Nano3.yaml","NaNO3"],["mapped/Sodium_Nitrate_070_M_Stock.yaml","Sodium nitrate (0.70 M stock)"],["mapped/Sodium_Nitrate_Nitrogen_Source.yaml","Sodium nitrate (nitrogen source)"]]},{"id":"CHEBI:91247","l":"L-cysteine hydrochloride","na":4,"nb":2,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["mapped/L-Cysteine_X_HCl_X_H2O_Solution.yaml","L-Cysteine x HCl x H2O solution"],["mapped/L-cysteine_Hcl.yaml","L-Cysteine HCl"]]},{"id":"CHEBI:15428","l":"glycine","na":2,"nb":3,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/Glycine.yaml","Glycine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:15741","l":"succinic acid","na":3,"nb":2,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["mapped/Sodium_Succinate_Dibasic.yaml","Sodium succinate dibasic"],["mapped/Succinic_Acid.yaml","Succinic acid"]]},{"id":"CHEBI:17750","l":"glycine betaine","na":3,"nb":2,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["mapped/Betaine_Hydrochloride.yaml","Betaine hydrochloride"],["mapped/Betaine_X_H2o.yaml","Betaine x H2O"]]},{"id":"CHEBI:23414","l":"copper(II) sulfate","na":2,"nb":3,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/Cuso4.yaml","CuSO4"],["mapped/Cuso4_X_2_H2o.yaml","CuSO4 x 2 H2O"],["mapped/Cuso4_X_4_H2o.yaml","CuSO4 x 4 H2O"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":3,"nb":2,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["mapped/Calcium%282%29.yaml","Calcium(2+)"],["mapped/Calcium.yaml","Calcium"]]},{"id":"CHEBI:30808","l":"iron trichloride","na":2,"nb":3,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/Fecl3.yaml","FeCl3"],["mapped/Fecl3_X_4_H2o.yaml","FeCl3 x 4 H2O"],["mapped/MME_Trace_Minerals.yaml","MME Trace Minerals"]]},{"id":"CHEBI:4167","l":"D-glucopyranose","na":2,"nb":3,"a":[["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["mapped/D-glucose.yaml","D-Glucose"],["mapped/Dextrose.yaml","Dextrose"],["mapped/Glucose_Xylose.yaml","Glucose + Xylose"]]},{"id":"CHEBI:60720","l":"sodium silicate","na":2,"nb":3,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Na-silicate.yaml","Na-silicate"]]},{"id":"CHEBI:15354","l":"choline","na":2,"nb":2,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["mapped/Choline.yaml","Choline"],["unmapped/Cholinium_Alpha_Ketoglutarate.yaml","Cholinium alpha ketoglutarate"]]},{"id":"CHEBI:15930","l":"atrazine","na":2,"nb":2,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["mapped/2-chloro-4ethylamino-6-isopropylamino-135-triazine.yaml","2-chloro-4ethylamino-6-isopropylamino-1,3,5-triazine"],["mapped/Atrazin.yaml","Atrazin"]]},{"id":"CHEBI:16750","l":"guanosine","na":2,"nb":2,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["mapped/Guanosine.yaml","Guanosine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:16947","l":"citrate(3-)","na":2,"nb":2,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["mapped/Citrate.yaml","Citrate"],["mapped/Citric_Acid.yaml","Citric acid"]]},{"id":"CHEBI:16991","l":"deoxyribonucleic acid","na":2,"nb":2,"a":[["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["mapped/Deoxyribonucleic_Acid_From_Herring_Sperm.yaml","Deoxyribonucleic acid from herring sperm"],["mapped/Fish-sperm_Dna.yaml","Fish-Sperm DNA"]]},{"id":"CHEBI:17824","l":"propan-2-ol","na":2,"nb":2,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"]],"b":[["mapped/2-propanolCO2.yaml","2-propanol+CO2"],["mapped/Isopropyl_Alcohol.yaml","Isopropyl alcohol"]]},{"id":"CHEBI:75228","l":"sodium lactate","na":2,"nb":2,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"]],"b":[["mapped/D.yaml","D"],["mapped/Sodium_Lactate.yaml","Sodium lactate"]]},{"id":"CHEBI:16183","l":"methane","na":62,"nb":1,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"]],"b":[["mapped/Methane.yaml","methane"]]},{"id":"CHEBI:17632","l":"nitrate","na":28,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["mapped/Nitrate.yaml","Nitrate"]]},{"id":"CHEBI:18246","l":"(1->4)-beta-D-glucan","na":27,"nb":1,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["mapped/Cellulose.yaml","Cellulose"]]},{"id":"CHEBI:15379","l":"dioxygen","na":26,"nb":1,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["mapped/Dioxygen.yaml","Dioxygen"]]},{"id":"CHEBI:16189","l":"sulfate","na":25,"nb":1,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["mapped/Sulfate.yaml","Sulfate"]]},{"id":"CHEBI:16236","l":"ethanol","na":25,"nb":1,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["mapped/Ethanol.yaml","Ethanol"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":21,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["mapped/Ferrous_Ion.yaml","Ferrous Ion"]]},{"id":"CHEBI:16411","l":"indole-3-acetic acid","na":20,"nb":1,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"]],"b":[["mapped/3-indolyl_Acetic_Acid.yaml","3-Indolyl acetic acid"]]},{"id":"CHEBI:17968","l":"butyrate","na":19,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"]],"b":[["mapped/Butyrate.yaml","Butyrate"]]},{"id":"CHEBI:28938","l":"ammonium","na":19,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["mapped/Ammonium.yaml","Ammonium"]]},{"id":"CHEBI:16301","l":"nitrite","na":17,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["mapped/Nitrite.yaml","Nitrite"]]},{"id":"CHEBI:16134","l":"ammonia","na":14,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]],"b":[["mapped/Ammonia.yaml","Ammonia"]]},{"id":"CHEBI:17997","l":"dinitrogen","na":12,"nb":1,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["mapped/Nitrogen_gas.yaml","Nitrogen gas"]]},{"id":"CHEBI:17272","l":"propionate","na":11,"nb":1,"a":[["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"]],"b":[["mapped/Propionate.yaml","Propionate"]]},{"id":"CHEBI:34683","l":"disodium hydrogenphosphate","na":1,"nb":11,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["mapped/Brain_Heart_Infusion_Broth.yaml","Brain heart infusion broth"],["mapped/Disodium_Phosphate_Heptahydrate_002_M_Stock.yaml","Disodium phosphate heptahydrate (0.02 M stock)"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Na2hpo4.yaml","Na2HPO4"],["mapped/Na2hpo4_X_12_H2o.yaml","Na2HPO4 x 12 H2O"]]},{"id":"CHEBI:26836","l":"sulfuric acid","na":10,"nb":1,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["mapped/H2so4.yaml","H2SO4"]]},{"id":"CHEBI:6457","l":"lignin","na":10,"nb":1,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["mapped/Lignin.yaml","Lignin"]]},{"id":"CHEBI:16602","l":"trichloroethene","na":9,"nb":1,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["mapped/Trichloroethylene.yaml","Trichloroethylene"]]},{"id":"CHEBI:18367","l":"phosphate(3-)","na":9,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"]],"b":[["mapped/Orthophosphate.yaml","Orthophosphate"]]},{"id":"CHEBI:33229","l":"vitamin (role)","na":1,"nb":9,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["mapped/4-Pyridoxic_Acid.yaml","4-Pyridoxic acid"],["mapped/Ca-folinate.yaml","Ca-folinate"],["mapped/Fad.yaml","FAD"],["mapped/Folinic_Acid.yaml","Folinic acid"],["mapped/L-Carnitine.yaml","L-Carnitine"],["mapped/Na-ascorbate.yaml","Na-ascorbate"]]},{"id":"CHEBI:15361","l":"pyruvate","na":8,"nb":1,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["mapped/Pyruvate.yaml","Pyruvate"]]},{"id":"CHEBI:15366","l":"acetic acid","na":8,"nb":1,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["mapped/Acetic_Acid.yaml","Acetic acid"]]},{"id":"CHEBI:30411","l":"cobalamin","na":8,"nb":1,"a":[["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"]],"b":[["mapped/Cobalamine.yaml","Cobalamine"]]},{"id":"CHEBI:15940","l":"nicotinic acid","na":1,"nb":7,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/Nicotinic_Acid.yaml","Nicotinic acid"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Thauers_Vitamin_Mix_No_Biotin.yaml","Thauer's vitamin mix no Biotin"]]},{"id":"CHEBI:16995","l":"oxalic acid","na":6,"nb":1,"a":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Wollastonite_Ramichloridium_Talaromyces_Fungal_Consortium.html","Wollastonite Ramichloridium-Talaromyces Fungal Consortium"]],"b":[["mapped/Oxalic_Acid.yaml","Oxalic Acid"]]},{"id":"CHEBI:17245","l":"carbon monoxide","na":6,"nb":1,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Subsurface_Carboxydocella_CO_Aquifer_Community.html","Subsurface Carboxydocella CO-Oxidation Aquifer Community"]],"b":[["mapped/Carbon_Monoxide.yaml","Carbon Monoxide"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":6,"nb":1,"a":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["mapped/Bicarbonate.yaml","Bicarbonate"]]},{"id":"CHEBI:30772","l":"butyric acid","na":6,"nb":1,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["mapped/Butyric_Acid.yaml","Butyric acid"]]},{"id":"CHEBI:76209","l":"sodium sulfide nonahydrate","na":6,"nb":1,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["mapped/Na2s_X_9_H2o.yaml","Na2S x 9 H2O"]]},{"id":"CHEBI:86471","l":"pyrite","na":6,"nb":1,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["mapped/Pyrite.yaml","Pyrite"]]},{"id":"CHEBI:30776","l":"hexanoic acid","na":5,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["mapped/Caproic_Acid.yaml","Caproic acid"]]},{"id":"CHEBI:32149","l":"sodium sulfate","na":1,"nb":5,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Mineral_3B_Solution.yaml","Mineral 3B solution"],["mapped/Mineral_3B_Solution_Minus_Nitrogen.yaml","Mineral 3B solution minus Nitrogen"],["mapped/Na2so4.yaml","Na2SO4"]]},{"id":"CHEBI:33403","l":"elemental sulfur","na":1,"nb":5,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["mapped/GYPS.yaml","GYPS"],["mapped/Sulfur.yaml","Sulfur"],["mapped/Sulfur_Powder.yaml","Sulfur (powder)"],["mapped/Sulphur.yaml","Sulphur"],["mapped/Yeast_Extract_Sulfur.yaml","Yeast Extract + Sulfur"]]},{"id":"CHEBI:53389","l":"poly(3-hydroxybutyrate)","na":5,"nb":1,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"],["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["mapped/Poly_3-hydroxybutyrate.yaml","Poly(3-hydroxybutyrate)"]]},{"id":"CHEBI:16015","l":"L-glutamic acid","na":1,"nb":4,"a":[["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-Glutamic_Acid_Monopotassium_Salt_Monohydrate.yaml","L-Glutamic acid monopotassium salt monohydrate"],["mapped/L-glutamic_Acid.yaml","L-Glutamic acid"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:16199","l":"urea","na":4,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["mapped/Urea.yaml","Urea"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":4,"nb":1,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["mapped/Hydrogen_Peroxide.yaml","Hydrogen peroxide"]]},{"id":"CHEBI:16811","l":"methionine","na":4,"nb":1,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["mapped/Dl-methionine.yaml","DL-methionine"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":4,"nb":1,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["mapped/Formaldehyde.yaml","Formaldehyde"]]},{"id":"CHEBI:17439","l":"cyanocob(III)alamin","na":1,"nb":4,"a":[["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["mapped/Cyanocobalamin.yaml","Cyanocobalamin"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Thauers_Vitamin_Mix_No_Biotin.yaml","Thauer's vitamin mix no Biotin"],["mapped/Vitamin_B12.yaml","Vitamin B12"]]},{"id":"CHEBI:18154","l":"polysaccharide","na":4,"nb":1,"a":[["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Wollastonite_Ramichloridium_Talaromyces_Fungal_Consortium.html","Wollastonite Ramichloridium-Talaromyces Fungal Consortium"]],"b":[["mapped/Polysaccharides.yaml","Polysaccharides"]]},{"id":"CHEBI:232798","l":"sodium L-lactate","na":1,"nb":4,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"]],"b":[["mapped/4_Carbon_Mix.yaml","4 Carbon Mix"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Na-l-lactate.yaml","Na-L-lactate"],["mapped/Sodium_L-lactate.yaml","Sodium L-lactate"]]},{"id":"CHEBI:28851","l":"phenanthrene","na":4,"nb":1,"a":[["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Sphingobium_Nitrososphaera_Phenanthrene_Carbon_SynCom.html","Sphingobium-Nitrososphaera Phenanthrene-Carbon SynCom"]],"b":[["mapped/Phenanthrene.yaml","Phenanthrene"]]},{"id":"CHEBI:32954","l":"sodium acetate","na":1,"nb":4,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["mapped/4_Carbon_Mix.yaml","4 Carbon Mix"],["mapped/Na-acetate.yaml","Na-acetate"],["mapped/Sodium_Acetate.yaml","Sodium acetate"],["mapped/Sodium_Acetate3h2o.yaml","Sodium acetate·3H2O"]]},{"id":"CHEBI:62946","l":"ammonium sulfate","na":4,"nb":1,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"]],"b":[["mapped/Nh42so4.yaml","(NH4)2SO4"]]},{"id":"CHEBI:63036","l":"potassium dihydrogen phosphate","na":1,"nb":4,"a":[["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"]],"b":[["mapped/Kh2po4.yaml","KH2PO4"],["mapped/Mineral_3B_Solution.yaml","Mineral 3B solution"],["mapped/Mineral_3B_Solution_Minus_Nitrogen.yaml","Mineral 3B solution minus Nitrogen"],["mapped/Wolfes_Vitamin_Mix.yaml","Wolfe's vitamin mix"]]},{"id":"CHEBI:72813","l":"exopolysaccharide","na":4,"nb":1,"a":[["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["mapped/Exopolysaccharide.yaml","Exopolysaccharide"]]},{"id":"CHEBI:86202","l":"chalcopyrite","na":4,"nb":1,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["mapped/Chalcopyrite.yaml","Chalcopyrite"]]},{"id":"CHEBI:8806","l":"Resazurin","na":4,"nb":1,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["mapped/Resazurin.yaml","Resazurin"]]},{"id":"CHEBI:147155","l":"","na":3,"nb":1,"a":[["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["mapped/2-fucosyllactose.yaml","2'-fucosyllactose"]]},{"id":"CHEBI:15356","l":"cysteine","na":3,"nb":1,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["mapped/Cysteine.yaml","Cysteine"]]},{"id":"CHEBI:15971","l":"L-histidine","na":1,"nb":3,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-histidine.yaml","L-Histidine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:16467","l":"L-arginine","na":1,"nb":3,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-arginine.yaml","L-Arginine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:16482","l":"naphthalene","na":3,"nb":1,"a":[["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"]],"b":[["mapped/Naphthalene.yaml","Naphthalene"]]},{"id":"CHEBI:17045","l":"dinitrogen oxide","na":3,"nb":1,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"]],"b":[["mapped/Nitrous_Oxide.yaml","nitrous oxide"]]},{"id":"CHEBI:17115","l":"L-serine","na":1,"nb":3,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-serine.yaml","L-Serine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:17203","l":"L-proline","na":1,"nb":3,"a":[["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-proline.yaml","L-Proline"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:17359","l":"sulfite","na":3,"nb":1,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"]],"b":[["mapped/Sulfite.yaml","Sulfite"]]},{"id":"CHEBI:17437","l":"dimethyl sulfide","na":1,"nb":3,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["mapped/Dimethyl_Sulfide.yaml","Dimethyl sulfide"],["mapped/Formatedimethylsulfide.yaml","Formate+dimethylsulfide"],["mapped/H2dimethylsulfide.yaml","H2+dimethylsulfide"]]},{"id":"CHEBI:17716","l":"lactose","na":3,"nb":1,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"]],"b":[["mapped/Lactose.yaml","Lactose"]]},{"id":"CHEBI:18050","l":"L-glutamine","na":1,"nb":3,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-glutamine.yaml","L-Glutamine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:18139","l":"trimethylamine","na":1,"nb":3,"a":[["South_Bay_Salt_Pond_Methane_Restoration_Community.html","South Bay Salt Pond Methane Restoration Microbial Community"]],"b":[["mapped/Formatetrimethylamine.yaml","Formate+trimethylamine"],["mapped/H2trimethylamine.yaml","H2+trimethylamine"],["mapped/Trimethylamine.yaml","Trimethylamine"]]},{"id":"CHEBI:26271","l":"proline","na":3,"nb":1,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["mapped/Proline.yaml","Proline"]]},{"id":"CHEBI:26672","l":"siderophore","na":3,"nb":1,"a":[["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"]],"b":[["mapped/Siderophore.yaml","Siderophore"]]},{"id":"CHEBI:26977","l":"thiosulfate","na":3,"nb":1,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"]],"b":[["mapped/Thiosulfate.yaml","Thiosulfate"]]},{"id":"CHEBI:30742","l":"ethylene glycol","na":3,"nb":1,"a":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"]],"b":[["mapped/Ethylene_Glycol.yaml","Ethylene glycol"]]},{"id":"CHEBI:53259","l":"poly(ethylene terephthalate) macromolecule","na":3,"nb":1,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["mapped/Poly%28ethylene_Terephthalate%29.yaml","Poly(ethylene Terephthalate)"]]},{"id":"CHEBI:132106","l":"sodium propionate","na":2,"nb":1,"a":[["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["mapped/Na-propionate.yaml","Na-propionate"]]},{"id":"CHEBI:15347","l":"acetone","na":2,"nb":1,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["mapped/Acetone.yaml","acetone"]]},{"id":"CHEBI:15729","l":"L-ornithine","na":1,"nb":2,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["mapped/L-ornithine.yaml","L-Ornithine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:15882","l":"phenol","na":2,"nb":1,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]],"b":[["mapped/Phenol.yaml","Phenol"]]},{"id":"CHEBI:16119","l":"shikimic acid","na":1,"nb":2,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Shikimic_Acid.yaml","Shikimic Acid"]]},{"id":"CHEBI:16150","l":"benzoate","na":2,"nb":1,"a":[["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["mapped/Benzoate.yaml","Benzoate"]]},{"id":"CHEBI:16235","l":"guanine","na":1,"nb":2,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["mapped/Guanine.yaml","Guanine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:16457","l":"S,S-dimethyl-beta-propiothetin","na":2,"nb":1,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["mapped/Dimethylsulfoniopropionate_Hydrochloride.yaml","Dimethylsulfoniopropionate hydrochloride"]]},{"id":"CHEBI:16830","l":"methylamine","na":2,"nb":1,"a":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"]],"b":[["mapped/Methylamine.yaml","Methylamine"]]},{"id":"CHEBI:16856","l":"glutathione","na":1,"nb":2,"a":[["Zymomonas_Ecoli_Exometabolomics_Obligate_Mutualism.html","Zymomonas-E. coli Exometabolomics-Designed Obligate Mutualism"]],"b":[["mapped/Glutathione.yaml","Glutathione"],["mapped/L-Glutathione.yaml","L-Glutathione"]]},{"id":"CHEBI:16865","l":"gamma-aminobutyric acid","na":2,"nb":1,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]],"b":[["mapped/Gamma-aminobutyric_Acid.yaml","gamma-Aminobutyric acid"]]},{"id":"CHEBI:16914","l":"salicylic acid","na":2,"nb":1,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"]],"b":[["mapped/Salicylic_Acid.yaml","Salicylic acid"]]},{"id":"CHEBI:17300","l":"tetrachloroethene","na":2,"nb":1,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["mapped/Tetrachloroethene.yaml","Tetrachloroethene"]]},{"id":"CHEBI:17996","l":"chloride","na":2,"nb":1,"a":[["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"]],"b":[["mapped/Cl.yaml","Cl-"]]},{"id":"CHEBI:18012","l":"fumaric acid","na":1,"nb":2,"a":[["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["mapped/Corn_Steep_Liquor_Glucose_Fumarate.yaml","Corn Steep Liquor + Glucose + Fumarate"],["mapped/Fumaric_Acid.yaml","Fumaric acid"]]},{"id":"CHEBI:18053","l":"1-aminocyclopropanecarboxylic acid","na":2,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["mapped/1-aminocyclopropane-1-carboxylate.yaml","1-aminocyclopropane-1-carboxylate"]]},{"id":"CHEBI:22660","l":"aspartic acid","na":1,"nb":2,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["mapped/DL-Tyrosine.yaml","DL-Tyrosine"],["mapped/Dl-aspartic_Acid.yaml","DL-aspartic acid"]]},{"id":"CHEBI:24266","l":"gluconic acid","na":2,"nb":1,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Wollastonite_Ramichloridium_Talaromyces_Fungal_Consortium.html","Wollastonite Ramichloridium-Talaromyces Fungal Consortium"]],"b":[["mapped/Gluconic_Acid.yaml","Gluconic acid"]]},{"id":"CHEBI:26822","l":"sulfide","na":2,"nb":1,"a":[["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"]],"b":[["mapped/Sulfide.yaml","Sulfide"]]},{"id":"CHEBI:27082","l":"trehalose","na":2,"nb":1,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"]],"b":[["mapped/Trehalose.yaml","Trehalose"]]},{"id":"CHEBI:27518","l":"acetylene","na":2,"nb":1,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"]],"b":[["mapped/Acetylene.yaml","Acetylene"]]},{"id":"CHEBI:27570","l":"histidine","na":1,"nb":2,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["mapped/Dl-histidine.yaml","DL-Histidine"],["mapped/L-histidine.yaml","L-Histidine"]]},{"id":"CHEBI:28087","l":"glycogen","na":1,"nb":2,"a":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]],"b":[["mapped/Glycogen.yaml","Glycogen"],["mapped/Glycogen_From_Bovine_Liver.yaml","Glycogen from bovine liver"]]},{"id":"CHEBI:28675","l":"dextrin","na":2,"nb":1,"a":[["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"]],"b":[["mapped/Dextrin.yaml","Dextrin"]]},{"id":"CHEBI:28757","l":"fructose","na":1,"nb":2,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["mapped/Fructose.yaml","Fructose"],["mapped/PY-fructose.yaml","PY-fructose"]]},{"id":"CHEBI:28837","l":"octanoic acid","na":2,"nb":1,"a":[["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["mapped/Octanoic_Acid.yaml","Octanoic acid"]]},{"id":"CHEBI:29806","l":"fumarate(2-)","na":2,"nb":1,"a":[["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["mapped/Fumarate.yaml","Fumarate"]]},{"id":"CHEBI:30751","l":"formic acid","na":2,"nb":1,"a":[["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["mapped/Formic_Acid.yaml","Formic acid"]]},{"id":"CHEBI:30768","l":"propionic acid","na":2,"nb":1,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["mapped/Propionic_Acid.yaml","Propionic acid"]]},{"id":"CHEBI:30778","l":"gallic acid","na":1,"nb":2,"a":[["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["mapped/Gallate_Formate.yaml","Gallate + Formate"],["mapped/Gallic_Acid.yaml","Gallic Acid"]]},{"id":"CHEBI:3098","l":"bile acid","na":2,"nb":1,"a":[["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["mapped/Bile_Acid.yaml","Bile Acid"]]},{"id":"CHEBI:31346","l":"calcium sulfate","na":1,"nb":2,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]],"b":[["mapped/Caso4.yaml","CaSO4"],["mapped/Caso4_X_7_H2o.yaml","CaSO4 x 7 H2O"]]},{"id":"CHEBI:32036","l":"potassium sulfate","na":1,"nb":2,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"]],"b":[["mapped/K2so4.yaml","K2SO4"],["mapped/K2so4_X_7_H2o.yaml","K2SO4 x 7 H2O"]]},{"id":"CHEBI:33848","l":"polycyclic arene","na":2,"nb":1,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Pelagerythrobacter_Salinicola_PES_Pyrene_Degradation_SynCom.html","Pelagerythrobacter-Salinicola PES Pyrene-Degradation SynCom"]],"b":[["mapped/Aromatic_Hydrocarbon.yaml","Aromatic hydrocarbon"]]},{"id":"CHEBI:35176","l":"zinc sulfate","na":2,"nb":1,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/Zinc_Sulfate.yaml","Zinc sulfate"]]},{"id":"CHEBI:35381","l":"monosaccharide","na":2,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["mapped/Mono-_And_Disaccharides.yaml","Mono- And Disaccharides"]]},{"id":"CHEBI:36219","l":"alpha-lactose","na":2,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"]],"b":[["mapped/Alpha-Lactose.yaml","alpha-Lactose"]]},{"id":"CHEBI:39106","l":"pyrene","na":2,"nb":1,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Pelagerythrobacter_Salinicola_PES_Pyrene_Degradation_SynCom.html","Pelagerythrobacter-Salinicola PES Pyrene-Degradation SynCom"]],"b":[["mapped/Pyrene.yaml","Pyrene"]]},{"id":"CHEBI:41131","l":"crotonic acid","na":1,"nb":2,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["mapped/Crotonic_Acid.yaml","Crotonic acid"],["mapped/Na-crotonate.yaml","Na-crotonate"]]},{"id":"CHEBI:42191","l":"EDTA(4-)","na":2,"nb":1,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/Edta_Acid_Form.yaml","EDTA (acid form)"]]},{"id":"CHEBI:48607","l":"lithium chloride","na":1,"nb":2,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["mapped/Licl.yaml","LiCl"],["mapped/Lithium_Chloride_Hydrate.yaml","Lithium chloride hydrate"]]},{"id":"CHEBI:506227","l":"N-acetyl-D-glucosamine","na":1,"nb":2,"a":[["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["mapped/N-acetyl-d-glucosamine.yaml","N-Acetyl-D-glucosamine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:5199","l":"Fusaric acid","na":2,"nb":1,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["mapped/Fusaric_Acid.yaml","Fusaric acid"]]},{"id":"CHEBI:58187","l":"alginate","na":2,"nb":1,"a":[["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["mapped/Alginate.yaml","Alginate"]]},{"id":"CHEBI:62064","l":"butane-2,3-diol","na":2,"nb":1,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["mapped/23-butanediol.yaml","2,3-butanediol"]]},{"id":"CHEBI:62412","l":"phenazine-1-carboxylic acid","na":2,"nb":1,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"]],"b":[["mapped/Phenazine-1-carboxylic_Acid.yaml","Phenazine-1-carboxylic acid"]]},{"id":"CHEBI:63041","l":"manganese(II) chloride","na":2,"nb":1,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/Mncl2.yaml","MnCl2"]]},{"id":"CHEBI:64205","l":"calcium nitrate","na":2,"nb":1,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"]],"b":[["mapped/Ca_No32.yaml","Ca(NO3)2"]]},{"id":"CHEBI:7916","l":"pantothenic acid","na":1,"nb":2,"a":[["Variovorax_Cryptococcus_Vitamin_Mutualism_Microcosm.html","Variovorax-Cryptococcus Vitamin Cross-Feeding Microcosm"]],"b":[["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Pantothenic_Acid.yaml","Pantothenic acid"]]},{"id":"CHEBI:9754","l":"tris","na":2,"nb":1,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["mapped/Tris_Base.yaml","Tris base"]]},{"id":"ENVO:00000051","l":"hot spring","na":2,"nb":1,"a":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["mapped/Sulfur.yaml","Sulfur"]]},{"id":"CHEBI:15075","l":"selenate","na":1,"nb":1,"a":[["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"]],"b":[["mapped/Selenate.yaml","Selenate"]]},{"id":"CHEBI:15589","l":"(S)-malate(2-)","na":1,"nb":1,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["mapped/L-malate.yaml","L-malate"]]},{"id":"CHEBI:15688","l":"acetoin","na":1,"nb":1,"a":[["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"]],"b":[["mapped/Acetoin.yaml","Acetoin"]]},{"id":"CHEBI:16109","l":"propane-1,3-diol","na":1,"nb":1,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["mapped/13-Propanediol.yaml","1,3-Propanediol"]]},{"id":"CHEBI:16810","l":"2-oxoglutarate(2-)","na":1,"nb":1,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"]],"b":[["mapped/Na2_Alpha-ketoglutarate.yaml","Na2 alpha-ketoglutarate"]]},{"id":"CHEBI:16881","l":"1H-indole","na":1,"nb":1,"a":[["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"]],"b":[["mapped/Indole.yaml","Indole"]]},{"id":"CHEBI:16918","l":"gallate","na":1,"nb":1,"a":[["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["mapped/Gallate_Formate.yaml","Gallate + Formate"]]},{"id":"CHEBI:16988","l":"D-ribose","na":1,"nb":1,"a":[["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"]],"b":[["mapped/D-Ribose.yaml","D-Ribose"]]},{"id":"CHEBI:17120","l":"hexanoate","na":1,"nb":1,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"]],"b":[["mapped/Hexanoate.yaml","Hexanoate"]]},{"id":"CHEBI:17418","l":"valeric acid","na":1,"nb":1,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"]],"b":[["mapped/Valeric_Acid.yaml","Valeric acid"]]},{"id":"CHEBI:17642","l":"pentachlorophenol","na":1,"nb":1,"a":[["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["mapped/Pentachlorophenol.yaml","Pentachlorophenol"]]},{"id":"CHEBI:17698","l":"chloramphenicol","na":1,"nb":1,"a":[["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"]],"b":[["mapped/Chloramphenicol.yaml","Chloramphenicol"]]},{"id":"CHEBI:17747","l":"bis(2-ethylhexyl) phthalate","na":1,"nb":1,"a":[["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"]],"b":[["mapped/Bis%282-ethylhexyl%29phthalate.yaml","Bis(2-ethylhexyl)phthalate"]]},{"id":"CHEBI:17822","l":"serine","na":1,"nb":1,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["mapped/Serine.yaml","Serine"]]},{"id":"CHEBI:17847","l":"p-cresol","na":1,"nb":1,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["mapped/4-Cresol.yaml","4-Cresol"]]},{"id":"CHEBI:17859","l":"glutaric acid","na":1,"nb":1,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["mapped/Glutaric_Acid.yaml","Glutaric acid"]]},{"id":"CHEBI:17879","l":"4-hydroxybenzoate","na":1,"nb":1,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["mapped/P-hydroxybenzoate.yaml","p-Hydroxybenzoate"]]},{"id":"CHEBI:18186","l":"tyrosine","na":1,"nb":1,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["mapped/DL-Tyrosine.yaml","DL-Tyrosine"]]},{"id":"CHEBI:18212","l":"selenite(2-)","na":1,"nb":1,"a":[["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"]],"b":[["mapped/Selenite.yaml","Selenite"]]},{"id":"CHEBI:18248","l":"iron atom","na":1,"nb":1,"a":[["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["mapped/Iron.yaml","Iron"]]},{"id":"CHEBI:18257","l":"ornithine","na":1,"nb":1,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["mapped/Ornithine.yaml","Ornithine"]]},{"id":"CHEBI:18287","l":"L-fucose","na":1,"nb":1,"a":[["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"]],"b":[["mapped/L-fucose.yaml","L-Fucose"]]},{"id":"CHEBI:18346","l":"vanillin","na":1,"nb":1,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"]],"b":[["mapped/Vanillin.yaml","Vanillin"]]},{"id":"CHEBI:22651","l":"ascorbate","na":1,"nb":1,"a":[["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["mapped/Ascorbate.yaml","Ascorbate"]]},{"id":"CHEBI:2365","l":"(+)-abscisic acid","na":1,"nb":1,"a":[["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["mapped/Abscisic_Acid.yaml","Abscisic acid"]]},{"id":"CHEBI:23681","l":"dibenzothiophene","na":1,"nb":1,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["mapped/Dibenzothiophene.yaml","Dibenzothiophene"]]},{"id":"CHEBI:24632","l":"hydrocarbon","na":1,"nb":1,"a":[["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"]],"b":[["mapped/Hydrocarbon.yaml","Hydrocarbon"]]},{"id":"CHEBI:26401","l":"purines","na":1,"nb":1,"a":[["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"]],"b":[["mapped/Purines.yaml","Purines"]]},{"id":"CHEBI:26806","l":"succinate","na":1,"nb":1,"a":[["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]],"b":[["mapped/Succinate.yaml","Succinate"]]},{"id":"CHEBI:26948","l":"vitamin B1","na":1,"nb":1,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["mapped/Thiamine.yaml","Thiamine"]]},{"id":"CHEBI:27750","l":"ethyl acetate","na":1,"nb":1,"a":[["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["mapped/Ethyl_Acetate.yaml","ethyl acetate"]]},{"id":"CHEBI:27897","l":"tryptophan","na":1,"nb":1,"a":[["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"]],"b":[["mapped/Tryptophan.yaml","Tryptophan"]]},{"id":"CHEBI:28260","l":"galactose","na":1,"nb":1,"a":[["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]],"b":[["mapped/Galactose.yaml","Galactose"]]},{"id":"CHEBI:28266","l":"fluorene","na":1,"nb":1,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["mapped/Fluorene.yaml","Fluorene"]]},{"id":"CHEBI:28685","l":"molybdenum atom","na":1,"nb":1,"a":[["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["mapped/Molybdenum.yaml","Molybdenum"]]},{"id":"CHEBI:28808","l":"mannan","na":1,"nb":1,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"]],"b":[["unmapped/Prebiotin.yaml","Prebiotin"]]},{"id":"CHEBI:28817","l":"dodecane","na":1,"nb":1,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["mapped/Dodecane.yaml","dodecane"]]},{"id":"CHEBI:29016","l":"arginine","na":1,"nb":1,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["mapped/Arginine.yaml","Arginine"]]},{"id":"CHEBI:29073","l":"L-ascorbic acid","na":1,"nb":1,"a":[["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["mapped/L-ascorbic_Acid.yaml","L-Ascorbic acid"]]},{"id":"CHEBI:29101","l":"sodium(1+)","na":1,"nb":1,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"]],"b":[["mapped/Sodium%28%29.yaml","Sodium(+)"]]},{"id":"CHEBI:30531","l":"pimelic acid","na":1,"nb":1,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["mapped/Pimelic_Acid.yaml","Pimelic acid"]]},{"id":"CHEBI:30803","l":"isophthalate(2-)","na":1,"nb":1,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["mapped/Isophthalate.yaml","Isophthalate"]]},{"id":"CHEBI:30816","l":"vanillic acid","na":1,"nb":1,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["mapped/Vanillic_Acid.yaml","Vanillic Acid"]]},{"id":"CHEBI:30832","l":"adipic acid","na":1,"nb":1,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["mapped/Adipic_Acid.yaml","Adipic acid"]]},{"id":"CHEBI:32374","l":"trans-4-coumaric acid","na":1,"nb":1,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["mapped/P-Coumaric_Acid.yaml","p-Coumaric acid"]]},{"id":"CHEBI:32816","l":"pyruvic acid","na":1,"nb":1,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["mapped/Pyruvic_Acid.yaml","Pyruvic acid"]]},{"id":"CHEBI:3311","l":"calcium carbonate","na":1,"nb":1,"a":[["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"]],"b":[["mapped/Caco3.yaml","CaCO3"]]},{"id":"CHEBI:33198","l":"D-gluconic acid","na":1,"nb":1,"a":[["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"]],"b":[["mapped/D-Gluconic_acid.yaml","D-Gluconic acid"]]},{"id":"CHEBI:34768","l":"furfural","na":1,"nb":1,"a":[["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"]],"b":[["mapped/2-Furfuraldehyde.yaml","2-Furfuraldehyde"]]},{"id":"CHEBI:35366","l":"fatty acid","na":1,"nb":1,"a":[["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"]],"b":[["mapped/Fatty_Acid_Mixture_See_Medium_No_266.yaml","Fatty acid mixture (see Medium No. 266)"]]},{"id":"CHEBI:35899","l":"crotonate","na":1,"nb":1,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["mapped/Na-crotonate.yaml","Na-crotonate"]]},{"id":"CHEBI:37671","l":"(1->3)-beta-D-glucan","na":1,"nb":1,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"]],"b":[["mapped/3-beta-d-glucan.yaml","3-beta-D-glucan"]]},{"id":"CHEBI:412516","l":"5-hydroxymethylfurfural","na":1,"nb":1,"a":[["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"]],"b":[["mapped/5-Hydroxymethylfurfural.yaml","5-Hydroxymethylfurfural"]]},{"id":"CHEBI:46645","l":"isobutanol","na":1,"nb":1,"a":[["Trichoderma_Ecoli_Cellulosic_Isobutanol_Coculture.html","Trichoderma-E. coli Cellulosic Isobutanol Coculture"]],"b":[["mapped/Isobutyl_Alcohol.yaml","Isobutyl alcohol"]]},{"id":"CHEBI:61448","l":"isopropyl beta-D-thiogalactopyranoside","na":1,"nb":1,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["mapped/IPTG.yaml","IPTG"]]},{"id":"CHEBI:64103","l":"sodium butyrate","na":1,"nb":1,"a":[["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["mapped/Na-butyrate.yaml","Na-butyrate"]]},{"id":"CHEBI:78037","l":"polyhydroxyalkanoate","na":1,"nb":1,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["mapped/Poly-beta-hydroxyalkanoate.yaml","Poly-beta-hydroxyalkanoate"]]},{"id":"CHEBI:8653","l":"pyocyanine","na":1,"nb":1,"a":[["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["mapped/Pyocyanin.yaml","Pyocyanin"]]}]} \ No newline at end of file +{"a":"CommunityMech","b":"MediaIngredientMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","MediaIngredientMech":"https://github.com/CultureBotAI/MediaIngredientMech/blob/main/data/ingredients/"},"n":240,"by":{"CHEBI":238,"ENVO":2},"terms":[{"id":"CHEBI:17234","l":"glucose","na":26,"nb":23,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"]],"b":[["mapped/Corn_Steep_Liquor_Glucose_Fumarate.yaml","Corn Steep Liquor + Glucose + Fumarate"],["mapped/Fastidious_Anaerobe_Broth_With_Meat_Granules.yaml","Fastidious Anaerobe Broth With Meat Granules"],["mapped/GYPS.yaml","GYPS"],["mapped/Glucose.yaml","Glucose"],["mapped/Glucose_2.yaml","glucose"],["mapped/Glucose_Acetate.yaml","Glucose + Acetate"]]},{"id":"CHEBI:33709","l":"amino acid","na":14,"nb":54,"a":[["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["mapped/1-aminocyclopropane-1-carboxylate.yaml","1-aminocyclopropane-1-carboxylate"],["mapped/3-Chloro-L-tyrosine.yaml","3-Chloro-L-tyrosine"],["mapped/3-aminobutyric_Acid.yaml","3-aminobutyric acid"],["mapped/4-azido-L-phenylalanine.yaml","4-azido-L-phenylalanine"],["mapped/5-Aminolevulinic_Acid.yaml","5-Aminolevulinic acid"],["mapped/5-aminovaleric_Acid.yaml","5-Aminovaleric acid"]]},{"id":"CHEBI:3312","l":"calcium dichloride","na":12,"nb":9,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/Cacl2.yaml","CaCl2"],["mapped/Cacl2_X_7_H2o.yaml","CaCl2 x 7 H2O"],["mapped/Calcium_Chloride.yaml","Calcium Chloride"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"]]},{"id":"CHEBI:26710","l":"sodium chloride","na":9,"nb":11,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/Brain_Heart_Infusion_Broth.yaml","Brain heart infusion broth"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Mineral_3B_Solution.yaml","Mineral 3B solution"],["mapped/Mineral_3B_Solution_Minus_Nitrogen.yaml","Mineral 3B solution minus Nitrogen"]]},{"id":"CHEBI:18276","l":"dihydrogen","na":58,"nb":8,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"]],"b":[["mapped/H23-methyl_Mercaptopropionate.yaml","H2+3-methyl Mercaptopropionate"],["mapped/H2_CO2.yaml","H2 + CO2"],["mapped/H2dimethylsulfide.yaml","H2+dimethylsulfide"],["mapped/H2methanol.yaml","H2+methanol"],["mapped/H2tetramethylammonium.yaml","H2+tetramethylammonium"],["mapped/H2trimethylamine.yaml","H2+trimethylamine"]]},{"id":"CHEBI:15740","l":"formate","na":23,"nb":8,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"]],"b":[["mapped/Formate.yaml","Formate"],["mapped/Formate3-methyl_Mercaptopropionate.yaml","Formate+3-methyl Mercaptopropionate"],["mapped/Formatedimethylsulfide.yaml","Formate+dimethylsulfide"],["mapped/Formatemethanol.yaml","Formate+methanol"],["mapped/Formatetetramethylammonium.yaml","Formate+tetramethylammonium"],["mapped/Formatetrimethylamine.yaml","Formate+trimethylamine"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":75,"nb":7,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]],"b":[["mapped/1-butanolCO2.yaml","1-butanol+CO2"],["mapped/1-propanolCO2.yaml","1-propanol+CO2"],["mapped/2-butanolCO2.yaml","2-butanol+CO2"],["mapped/2-propanolCO2.yaml","2-propanol+CO2"],["mapped/Carbon_dioxide_gas.yaml","Carbon dioxide gas"],["mapped/CyclopentanolCO2.yaml","Cyclopentanol+CO2"]]},{"id":"CHEBI:32599","l":"magnesium sulfate","na":7,"nb":7,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"]],"b":[["mapped/Magnesium_Sulfate.yaml","Magnesium sulfate"],["mapped/Mgso47h2o.yaml","MgSO4·7H2O"],["mapped/Mgso4_X_6_H2o.yaml","MgSO4 x 6 H2O"],["mapped/Mgso4_X_7_H2o.yaml","MgSO4 x 7 H2O"],["mapped/Modified_Wolfes_Minerals.yaml","Modified Wolfe's Minerals"],["mapped/UW_Concentrated_Base.yaml","UW concentrated base"]]},{"id":"ENVO:00001998","l":"soil","na":17,"nb":5,"a":[["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["mapped/Cr1_Soil.yaml","CR1 Soil"],["mapped/Green_House_Soil.yaml","Green House Soil"],["mapped/Soil.yaml","Soil"],["mapped/Soil_Extract.yaml","Soil extract"],["mapped/Vermont_Soil.yaml","Vermont Soil"]]},{"id":"CHEBI:17015","l":"riboflavin","na":5,"nb":8,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"]],"b":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/Riboflavin.yaml","Riboflavin"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Thauers_Vitamin_Mix_No_Biotin.yaml","Thauer's vitamin mix no Biotin"]]},{"id":"CHEBI:176843","l":"vitamin B12","na":5,"nb":6,"a":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Soil_Corrinoid_B12_Reservoir_Community.html","Soil Corrinoid Reservoir Microbial Community"],["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/Cyanocobalamin.yaml","Cyanocobalamin"],["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/Vitamin_B12.yaml","Vitamin B12"],["mapped/Wolfes_Vitamin_Mix.yaml","Wolfe's vitamin mix"]]},{"id":"CHEBI:28017","l":"starch","na":6,"nb":5,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"]],"b":[["mapped/Fastidious_Anaerobe_Broth_With_Meat_Granules.yaml","Fastidious Anaerobe Broth With Meat Granules"],["mapped/Glucose_Cellobiose_Starch_Trypticase_Yeast_Extract.yaml","Glucose + Cellobiose + Starch + Trypticase + Yeast Extract"],["mapped/Glucose_Maltose_Cellobiose_Starch_Glycerol.yaml","Glucose + Maltose + Cellobiose + Starch + Glycerol"],["mapped/PYGS.yaml","PYGS"],["mapped/Starch.yaml","Starch"]]},{"id":"CHEBI:30769","l":"citric acid","na":5,"nb":6,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["mapped/Citric_Acid.yaml","Citric acid"],["mapped/Citric_Acid_X_H2o.yaml","Citric acid x H2O"],["mapped/Citric_Acidh2o.yaml","Citric Acid•H2O"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Na2-citrate.yaml","Na2-citrate"],["mapped/Trisodium_Citrate.yaml","Trisodium citrate"]]},{"id":"CHEBI:16646","l":"carbohydrate","na":4,"nb":80,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["mapped/1-Kestose.yaml","1-Kestose"],["mapped/2-Deoxy-D-Ribose.yaml","2-Deoxy-D-Ribose"],["mapped/2-Deoxy-D-glucose.yaml","2-Deoxy-D-glucose"],["mapped/2-fucosyllactose.yaml","2'-fucosyllactose"],["mapped/A-Cyclodextrin.yaml","a-Cyclodextrin"],["mapped/Agarose.yaml","Agarose"]]},{"id":"CHEBI:17992","l":"sucrose","na":15,"nb":4,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"]],"b":[["mapped/D-Sucrose.yaml","D-Sucrose"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Sucrose.yaml","Sucrose"],["mapped/Sucrose_Yeast_Extract.yaml","Sucrose + Yeast Extract"]]},{"id":"CHEBI:15377","l":"water","na":4,"nb":12,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/Brain_Heart_Infusion_Broth.yaml","Brain heart infusion broth"],["mapped/Distilled_Water.yaml","Distilled water"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"]]},{"id":"CHEBI:31206","l":"ammonium chloride","na":9,"nb":4,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]],"b":[["mapped/Ammonium_Chloride_Nitrogen_Source.yaml","Ammonium chloride (nitrogen source)"],["mapped/Mineral_3B_Solution.yaml","Mineral 3B solution"],["mapped/Nh4cl.yaml","NH4Cl"],["mapped/Tetramethyl_Ammonium_Chloride.yaml","Tetramethyl ammonium chloride"]]},{"id":"CHEBI:17057","l":"cellobiose","na":7,"nb":4,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["mapped/Cellobiose.yaml","Cellobiose"],["mapped/Glucose_Cellobiose_Starch_Trypticase_Yeast_Extract.yaml","Glucose + Cellobiose + Starch + Trypticase + Yeast Extract"],["mapped/Glucose_Maltose_Cellobiose_Starch_Glycerol.yaml","Glucose + Maltose + Cellobiose + Starch + Glycerol"],["mapped/PY-cellobiose.yaml","PY-cellobiose"]]},{"id":"CHEBI:17634","l":"D-glucose","na":4,"nb":7,"a":[["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"]],"b":[["mapped/Brain_Heart_Infusion_Broth.yaml","Brain heart infusion broth"],["mapped/D-glucose.yaml","D-Glucose"],["mapped/Dextrose.yaml","Dextrose"],["mapped/Glucose_Acetate.yaml","Glucose + Acetate"],["mapped/Glucose_Cellobiose_Starch_Trypticase_Yeast_Extract.yaml","Glucose + Cellobiose + Starch + Trypticase + Yeast Extract"],["mapped/Glucose_Formate.yaml","Glucose + Formate"]]},{"id":"CHEBI:32139","l":"sodium hydrogencarbonate","na":6,"nb":4,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["mapped/84_GL_NaHCO3_Solution.yaml","84 g/L NaHCO3 solution"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Nahco3.yaml","NaHCO3"]]},{"id":"CHEBI:6636","l":"magnesium dichloride","na":6,"nb":4,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["mapped/Mgcl2.yaml","MgCl2"],["mapped/Mgcl2_X_6_H2o.yaml","MgCl2 x 6 H2O"],["mapped/Mgcl2_X_7_H2o.yaml","MgCl2 x 7 H2O"],["mapped/Mgcl2x_6_H2o.yaml","MgCl2x 6 H2O"]]},{"id":"CHEBI:30089","l":"acetate","na":78,"nb":3,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"]],"b":[["mapped/Acetate.yaml","Acetate"],["mapped/Acetate_Carbon_Source.yaml","Acetate (carbon source)"],["mapped/Glucose_Acetate.yaml","Glucose + Acetate"]]},{"id":"CHEBI:17790","l":"methanol","na":10,"nb":3,"a":[["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"]],"b":[["mapped/Formatemethanol.yaml","Formate+methanol"],["mapped/H2methanol.yaml","H2+methanol"],["mapped/Methanol.yaml","Methanol"]]},{"id":"CHEBI:37585","l":"sodium dihydrogenphosphate","na":7,"nb":3,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["mapped/Nah2po4.yaml","NaH2PO4"],["mapped/Nah2po4_X_2_H2o.yaml","NaH2PO4 x 2 H2O"],["mapped/Nah2po4h2o.yaml","NaH2PO4•H2O"]]},{"id":"CHEBI:15956","l":"biotin","na":3,"nb":6,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/Biotin.yaml","Biotin"],["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Wolfes_Vitamin_Mix.yaml","Wolfe's vitamin mix"]]},{"id":"CHEBI:16828","l":"L-tryptophan","na":5,"nb":3,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-tryptophan.yaml","L-Tryptophan"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:17754","l":"glycerol","na":5,"nb":3,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"]],"b":[["mapped/Glucose_Maltose_Cellobiose_Starch_Glycerol.yaml","Glucose + Maltose + Cellobiose + Starch + Glycerol"],["mapped/Glycerol.yaml","Glycerol"],["mapped/Glycerol_2.yaml","glycerol"]]},{"id":"CHEBI:75832","l":"iron(2+) sulfate (anhydrous)","na":3,"nb":5,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["mapped/Feso4.yaml","FeSO4"],["mapped/Feso4_X_5_H2o.yaml","FeSO4 x 5 H2O"],["mapped/Feso4_X_6_H2o.yaml","FeSO4 x 6 H2O"],["mapped/Feso4_X_7_H2o.yaml","FeSO4 x 7 H2O"],["mapped/Feso4_X_7h2o.yaml","FeSO4 x 7H2O"]]},{"id":"CHEBI:15603","l":"L-leucine","na":4,"nb":3,"a":[["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-leucine.yaml","L-Leucine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:17029","l":"chitin","na":4,"nb":3,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]],"b":[["mapped/Chitin.yaml","Chitin"],["unmapped/Chitin_From_Shrimp_Shells.yaml","Chitin from shrimp shells"],["unmapped/Colloidal_Chitin.yaml","Colloidal chitin"]]},{"id":"CHEBI:17561","l":"L-cysteine","na":3,"nb":4,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-cysteine.yaml","L-Cysteine"],["mapped/L-cysteine_Hcl_X_H2o.yaml","L-Cysteine HCl x H2O"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:17191","l":"L-isoleucine","na":3,"nb":3,"a":[["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-isoleucine.yaml","L-Isoleucine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:24996","l":"lactate","na":22,"nb":2,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["mapped/Glucose_Lactate.yaml","Glucose + Lactate"],["mapped/Lactate.yaml","Lactate"]]},{"id":"CHEBI:29034","l":"iron(3+)","na":21,"nb":2,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["mapped/Ferric_Iron.yaml","Ferric Iron"],["mapped/Ferrous_Ion.yaml","Ferrous Ion"]]},{"id":"CHEBI:16136","l":"hydrogen sulfide","na":12,"nb":2,"a":[["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["mapped/Hydrogen_Sulfide.yaml","Hydrogen sulfide"],["mapped/Sulfur.yaml","Sulfur"]]},{"id":"CHEBI:26833","l":"sulfur atom","na":12,"nb":2,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["mapped/Sulfur.yaml","Sulfur"],["mapped/Yeast_Extract_Sulfur.yaml","Yeast Extract + Sulfur"]]},{"id":"CHEBI:75213","l":"sodium molybdate dihydrate","na":2,"nb":11,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/ATCC_Wolfes_Mineral_Mix.yaml","ATCC Wolfe's mineral mix"],["mapped/Mc_trace_minerals.yaml","Mc_trace_minerals"],["mapped/Mc_trace_minerals_SO4free.yaml","Mc_trace_minerals_SO4free"],["mapped/Modified_Wolfes_Minerals.yaml","Modified Wolfe's Minerals"],["mapped/Na2moo42h2o.yaml","Na2MoO4·2H2O"],["mapped/Na2moo4_X_2_H2o.yaml","Na2MoO4 x 2 H2O"]]},{"id":"CHEBI:131527","l":"dipotassium hydrogen phosphate","na":10,"nb":2,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["mapped/K2hpo4.yaml","K2HPO4"],["mapped/K2hpo4_X_3_H2o.yaml","K2HPO4 x 3 H2O"]]},{"id":"CHEBI:28885","l":"butan-1-ol","na":9,"nb":2,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["mapped/1-butanolCO2.yaml","1-butanol+CO2"],["mapped/Butanol.yaml","Butanol"]]},{"id":"CHEBI:18222","l":"xylose","na":8,"nb":2,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]],"b":[["mapped/Glucose_Xylose.yaml","Glucose + Xylose"],["mapped/Xylose.yaml","Xylose"]]},{"id":"CHEBI:18385","l":"thiamine(1+)","na":8,"nb":2,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Thiamine.yaml","Thiamine"]]},{"id":"CHEBI:37166","l":"xylan","na":8,"nb":2,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["mapped/Xylan.yaml","Xylan"],["unmapped/Larchwood_Xylan.yaml","Larchwood xylan"]]},{"id":"CHEBI:30746","l":"benzoic acid","na":5,"nb":2,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["mapped/4_Carbon_Mix.yaml","4 Carbon Mix"],["mapped/Benzoic_Acid.yaml","benzoic acid"]]},{"id":"CHEBI:32588","l":"potassium chloride","na":2,"nb":5,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"]],"b":[["mapped/Kcl.yaml","KCl"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Mc_general_salts.yaml","Mc_general_salts"],["mapped/Mc_general_salts_SO4free.yaml","Mc_general_salts_SO4free"]]},{"id":"CHEBI:35696","l":"cobalt dichloride","na":2,"nb":5,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/Cobalt_chloride_hexahydrate.yaml","Cobalt chloride hexahydrate"],["mapped/Cocl2.yaml","CoCl2"],["mapped/Cocl2_X_2_H2o.yaml","CoCl2 x 2 H2O"],["mapped/Cocl2_X_4_H2o.yaml","CoCl2 x 4 H2O"],["mapped/Cocl2_X_6_H2o.yaml","CoCl2 x 6 H2O"]]},{"id":"CHEBI:16899","l":"D-mannitol","na":4,"nb":2,"a":[["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["mapped/D-mannitol.yaml","D-Mannitol"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:18237","l":"glutamic acid","na":4,"nb":2,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["mapped/4_Carbon_Mix.yaml","4 Carbon Mix"],["mapped/Glutamic_Acid.yaml","Glutamic acid"]]},{"id":"CHEBI:63005","l":"sodium nitrate","na":2,"nb":4,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/Nano.yaml","NaNO"],["mapped/Nano3.yaml","NaNO3"],["mapped/Sodium_Nitrate_070_M_Stock.yaml","Sodium nitrate (0.70 M stock)"],["mapped/Sodium_Nitrate_Nitrogen_Source.yaml","Sodium nitrate (nitrogen source)"]]},{"id":"CHEBI:91247","l":"L-cysteine hydrochloride","na":4,"nb":2,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["mapped/L-Cysteine_X_HCl_X_H2O_Solution.yaml","L-Cysteine x HCl x H2O solution"],["mapped/L-cysteine_Hcl.yaml","L-Cysteine HCl"]]},{"id":"CHEBI:15741","l":"succinic acid","na":3,"nb":2,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["mapped/Sodium_Succinate_Dibasic.yaml","Sodium succinate dibasic"],["mapped/Succinic_Acid.yaml","Succinic acid"]]},{"id":"CHEBI:17750","l":"glycine betaine","na":3,"nb":2,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["mapped/Betaine_Hydrochloride.yaml","Betaine hydrochloride"],["mapped/Betaine_X_H2o.yaml","Betaine x H2O"]]},{"id":"CHEBI:23414","l":"copper(II) sulfate","na":2,"nb":3,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/Cuso4.yaml","CuSO4"],["mapped/Cuso4_X_2_H2o.yaml","CuSO4 x 2 H2O"],["mapped/Cuso4_X_4_H2o.yaml","CuSO4 x 4 H2O"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":3,"nb":2,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["mapped/Calcium%282%29.yaml","Calcium(2+)"],["mapped/Calcium.yaml","Calcium"]]},{"id":"CHEBI:30808","l":"iron trichloride","na":2,"nb":3,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/Fecl3.yaml","FeCl3"],["mapped/Fecl3_X_4_H2o.yaml","FeCl3 x 4 H2O"],["mapped/MME_Trace_Minerals.yaml","MME Trace Minerals"]]},{"id":"CHEBI:4167","l":"D-glucopyranose","na":2,"nb":3,"a":[["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["mapped/D-glucose.yaml","D-Glucose"],["mapped/Dextrose.yaml","Dextrose"],["mapped/Glucose_Xylose.yaml","Glucose + Xylose"]]},{"id":"CHEBI:60720","l":"sodium silicate","na":2,"nb":3,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Na-silicate.yaml","Na-silicate"]]},{"id":"CHEBI:15354","l":"choline","na":2,"nb":2,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["mapped/Choline.yaml","Choline"],["unmapped/Cholinium_Alpha_Ketoglutarate.yaml","Cholinium alpha ketoglutarate"]]},{"id":"CHEBI:15930","l":"atrazine","na":2,"nb":2,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["mapped/2-chloro-4ethylamino-6-isopropylamino-135-triazine.yaml","2-chloro-4ethylamino-6-isopropylamino-1,3,5-triazine"],["mapped/Atrazin.yaml","Atrazin"]]},{"id":"CHEBI:16750","l":"guanosine","na":2,"nb":2,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["mapped/Guanosine.yaml","Guanosine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:16947","l":"citrate(3-)","na":2,"nb":2,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["mapped/Citrate.yaml","Citrate"],["mapped/Citric_Acid.yaml","Citric acid"]]},{"id":"CHEBI:17824","l":"propan-2-ol","na":2,"nb":2,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"]],"b":[["mapped/2-propanolCO2.yaml","2-propanol+CO2"],["mapped/Isopropyl_Alcohol.yaml","Isopropyl alcohol"]]},{"id":"CHEBI:75228","l":"sodium lactate","na":2,"nb":2,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"]],"b":[["mapped/D.yaml","D"],["mapped/Sodium_Lactate.yaml","Sodium lactate"]]},{"id":"CHEBI:16183","l":"methane","na":62,"nb":1,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"]],"b":[["mapped/Methane.yaml","methane"]]},{"id":"CHEBI:17632","l":"nitrate","na":28,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["mapped/Nitrate.yaml","Nitrate"]]},{"id":"CHEBI:18246","l":"(1->4)-beta-D-glucan","na":27,"nb":1,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["mapped/Cellulose.yaml","Cellulose"]]},{"id":"CHEBI:15379","l":"dioxygen","na":25,"nb":1,"a":[["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["mapped/Dioxygen.yaml","Dioxygen"]]},{"id":"CHEBI:16189","l":"sulfate","na":25,"nb":1,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["mapped/Sulfate.yaml","Sulfate"]]},{"id":"CHEBI:16236","l":"ethanol","na":25,"nb":1,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["mapped/Ethanol.yaml","Ethanol"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":21,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["mapped/Ferrous_Ion.yaml","Ferrous Ion"]]},{"id":"CHEBI:16411","l":"indole-3-acetic acid","na":20,"nb":1,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"]],"b":[["mapped/3-indolyl_Acetic_Acid.yaml","3-Indolyl acetic acid"]]},{"id":"CHEBI:17968","l":"butyrate","na":19,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"]],"b":[["mapped/Butyrate.yaml","Butyrate"]]},{"id":"CHEBI:28938","l":"ammonium","na":19,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["mapped/Ammonium.yaml","Ammonium"]]},{"id":"CHEBI:16301","l":"nitrite","na":17,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["mapped/Nitrite.yaml","Nitrite"]]},{"id":"CHEBI:16134","l":"ammonia","na":14,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]],"b":[["mapped/Ammonia.yaml","Ammonia"]]},{"id":"CHEBI:17997","l":"dinitrogen","na":12,"nb":1,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["mapped/Nitrogen_gas.yaml","Nitrogen gas"]]},{"id":"CHEBI:17272","l":"propionate","na":11,"nb":1,"a":[["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"]],"b":[["mapped/Propionate.yaml","Propionate"]]},{"id":"CHEBI:34683","l":"disodium hydrogenphosphate","na":1,"nb":11,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["mapped/Brain_Heart_Infusion_Broth.yaml","Brain heart infusion broth"],["mapped/Disodium_Phosphate_Heptahydrate_002_M_Stock.yaml","Disodium phosphate heptahydrate (0.02 M stock)"],["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Na2hpo4.yaml","Na2HPO4"],["mapped/Na2hpo4_X_12_H2o.yaml","Na2HPO4 x 12 H2O"]]},{"id":"CHEBI:26836","l":"sulfuric acid","na":10,"nb":1,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["mapped/H2so4.yaml","H2SO4"]]},{"id":"CHEBI:6457","l":"lignin","na":10,"nb":1,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["mapped/Lignin.yaml","Lignin"]]},{"id":"CHEBI:16602","l":"trichloroethene","na":9,"nb":1,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["mapped/Trichloroethylene.yaml","Trichloroethylene"]]},{"id":"CHEBI:18367","l":"phosphate(3-)","na":9,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"]],"b":[["mapped/Orthophosphate.yaml","Orthophosphate"]]},{"id":"CHEBI:33229","l":"vitamin (role)","na":1,"nb":9,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["mapped/4-Pyridoxic_Acid.yaml","4-Pyridoxic acid"],["mapped/Ca-folinate.yaml","Ca-folinate"],["mapped/Fad.yaml","FAD"],["mapped/Folinic_Acid.yaml","Folinic acid"],["mapped/L-Carnitine.yaml","L-Carnitine"],["mapped/Na-ascorbate.yaml","Na-ascorbate"]]},{"id":"CHEBI:15361","l":"pyruvate","na":8,"nb":1,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["mapped/Pyruvate.yaml","Pyruvate"]]},{"id":"CHEBI:15366","l":"acetic acid","na":8,"nb":1,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["mapped/Acetic_Acid.yaml","Acetic acid"]]},{"id":"CHEBI:30411","l":"cobalamin","na":8,"nb":1,"a":[["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"]],"b":[["mapped/Cobalamine.yaml","Cobalamine"]]},{"id":"CHEBI:15940","l":"nicotinic acid","na":1,"nb":7,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["mapped/ATCC_Wolfes_Vitamin_Mix.yaml","ATCC Wolfe's vitamin mix"],["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Mc_vitamins.yaml","Mc_vitamins"],["mapped/Nicotinic_Acid.yaml","Nicotinic acid"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Thauers_Vitamin_Mix_No_Biotin.yaml","Thauer's vitamin mix no Biotin"]]},{"id":"CHEBI:17245","l":"carbon monoxide","na":6,"nb":1,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Subsurface_Carboxydocella_CO_Aquifer_Community.html","Subsurface Carboxydocella CO-Oxidation Aquifer Community"]],"b":[["mapped/Carbon_Monoxide.yaml","Carbon Monoxide"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":6,"nb":1,"a":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["mapped/Bicarbonate.yaml","Bicarbonate"]]},{"id":"CHEBI:30772","l":"butyric acid","na":6,"nb":1,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["mapped/Butyric_Acid.yaml","Butyric acid"]]},{"id":"CHEBI:76209","l":"sodium sulfide nonahydrate","na":6,"nb":1,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["mapped/Na2s_X_9_H2o.yaml","Na2S x 9 H2O"]]},{"id":"CHEBI:30776","l":"hexanoic acid","na":5,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["mapped/Caproic_Acid.yaml","Caproic acid"]]},{"id":"CHEBI:32149","l":"sodium sulfate","na":1,"nb":5,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["mapped/Marine_Broth_2216.yaml","Marine broth 2216"],["mapped/Marine_agar_2216.yaml","Marine agar 2216"],["mapped/Mineral_3B_Solution.yaml","Mineral 3B solution"],["mapped/Mineral_3B_Solution_Minus_Nitrogen.yaml","Mineral 3B solution minus Nitrogen"],["mapped/Na2so4.yaml","Na2SO4"]]},{"id":"CHEBI:33403","l":"elemental sulfur","na":1,"nb":5,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["mapped/GYPS.yaml","GYPS"],["mapped/Sulfur.yaml","Sulfur"],["mapped/Sulfur_Powder.yaml","Sulfur (powder)"],["mapped/Sulphur.yaml","Sulphur"],["mapped/Yeast_Extract_Sulfur.yaml","Yeast Extract + Sulfur"]]},{"id":"CHEBI:53389","l":"poly(3-hydroxybutyrate)","na":5,"nb":1,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"],["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["mapped/Poly_3-hydroxybutyrate.yaml","Poly(3-hydroxybutyrate)"]]},{"id":"CHEBI:86471","l":"pyrite","na":5,"nb":1,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["mapped/Pyrite.yaml","Pyrite"]]},{"id":"CHEBI:16015","l":"L-glutamic acid","na":1,"nb":4,"a":[["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-Glutamic_Acid_Monopotassium_Salt_Monohydrate.yaml","L-Glutamic acid monopotassium salt monohydrate"],["mapped/L-glutamic_Acid.yaml","L-Glutamic acid"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:16199","l":"urea","na":4,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["mapped/Urea.yaml","Urea"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":4,"nb":1,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["mapped/Hydrogen_Peroxide.yaml","Hydrogen peroxide"]]},{"id":"CHEBI:16811","l":"methionine","na":4,"nb":1,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["mapped/Dl-methionine.yaml","DL-methionine"]]},{"id":"CHEBI:16995","l":"oxalic acid","na":4,"nb":1,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Wollastonite_Ramichloridium_Talaromyces_Fungal_Consortium.html","Wollastonite Ramichloridium-Talaromyces Fungal Consortium"]],"b":[["mapped/Oxalic_Acid.yaml","Oxalic Acid"]]},{"id":"CHEBI:17439","l":"cyanocob(III)alamin","na":1,"nb":4,"a":[["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["mapped/Cyanocobalamin.yaml","Cyanocobalamin"],["mapped/Thauers_Vitamin_Mix.yaml","Thauer's vitamin mix"],["mapped/Thauers_Vitamin_Mix_No_Biotin.yaml","Thauer's vitamin mix no Biotin"],["mapped/Vitamin_B12.yaml","Vitamin B12"]]},{"id":"CHEBI:18154","l":"polysaccharide","na":4,"nb":1,"a":[["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Wollastonite_Ramichloridium_Talaromyces_Fungal_Consortium.html","Wollastonite Ramichloridium-Talaromyces Fungal Consortium"]],"b":[["mapped/Polysaccharides.yaml","Polysaccharides"]]},{"id":"CHEBI:232798","l":"sodium L-lactate","na":1,"nb":4,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"]],"b":[["mapped/4_Carbon_Mix.yaml","4 Carbon Mix"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Na-l-lactate.yaml","Na-L-lactate"],["mapped/Sodium_L-lactate.yaml","Sodium L-lactate"]]},{"id":"CHEBI:28851","l":"phenanthrene","na":4,"nb":1,"a":[["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Sphingobium_Nitrososphaera_Phenanthrene_Carbon_SynCom.html","Sphingobium-Nitrososphaera Phenanthrene-Carbon SynCom"]],"b":[["mapped/Phenanthrene.yaml","Phenanthrene"]]},{"id":"CHEBI:32954","l":"sodium acetate","na":1,"nb":4,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["mapped/4_Carbon_Mix.yaml","4 Carbon Mix"],["mapped/Na-acetate.yaml","Na-acetate"],["mapped/Sodium_Acetate.yaml","Sodium acetate"],["mapped/Sodium_Acetate3h2o.yaml","Sodium acetate·3H2O"]]},{"id":"CHEBI:62946","l":"ammonium sulfate","na":4,"nb":1,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"]],"b":[["mapped/Nh42so4.yaml","(NH4)2SO4"]]},{"id":"CHEBI:63036","l":"potassium dihydrogen phosphate","na":1,"nb":4,"a":[["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"]],"b":[["mapped/Kh2po4.yaml","KH2PO4"],["mapped/Mineral_3B_Solution.yaml","Mineral 3B solution"],["mapped/Mineral_3B_Solution_Minus_Nitrogen.yaml","Mineral 3B solution minus Nitrogen"],["mapped/Wolfes_Vitamin_Mix.yaml","Wolfe's vitamin mix"]]},{"id":"CHEBI:72813","l":"exopolysaccharide","na":4,"nb":1,"a":[["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["mapped/Exopolysaccharide.yaml","Exopolysaccharide"]]},{"id":"CHEBI:86202","l":"chalcopyrite","na":4,"nb":1,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["mapped/Chalcopyrite.yaml","Chalcopyrite"]]},{"id":"CHEBI:8806","l":"Resazurin","na":4,"nb":1,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["mapped/Resazurin.yaml","Resazurin"]]},{"id":"CHEBI:147155","l":"","na":3,"nb":1,"a":[["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["mapped/2-fucosyllactose.yaml","2'-fucosyllactose"]]},{"id":"CHEBI:15356","l":"cysteine","na":3,"nb":1,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["mapped/Cysteine.yaml","Cysteine"]]},{"id":"CHEBI:15428","l":"glycine","na":1,"nb":3,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/Glycine.yaml","Glycine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:15971","l":"L-histidine","na":1,"nb":3,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-histidine.yaml","L-Histidine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:16467","l":"L-arginine","na":1,"nb":3,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-arginine.yaml","L-Arginine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:16482","l":"naphthalene","na":3,"nb":1,"a":[["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"]],"b":[["mapped/Naphthalene.yaml","Naphthalene"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":3,"nb":1,"a":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["mapped/Formaldehyde.yaml","Formaldehyde"]]},{"id":"CHEBI:17045","l":"dinitrogen oxide","na":3,"nb":1,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"]],"b":[["mapped/Nitrous_Oxide.yaml","nitrous oxide"]]},{"id":"CHEBI:17115","l":"L-serine","na":1,"nb":3,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-serine.yaml","L-Serine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:17203","l":"L-proline","na":1,"nb":3,"a":[["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-proline.yaml","L-Proline"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:17359","l":"sulfite","na":3,"nb":1,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"]],"b":[["mapped/Sulfite.yaml","Sulfite"]]},{"id":"CHEBI:17437","l":"dimethyl sulfide","na":1,"nb":3,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["mapped/Dimethyl_Sulfide.yaml","Dimethyl sulfide"],["mapped/Formatedimethylsulfide.yaml","Formate+dimethylsulfide"],["mapped/H2dimethylsulfide.yaml","H2+dimethylsulfide"]]},{"id":"CHEBI:17716","l":"lactose","na":3,"nb":1,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"]],"b":[["mapped/Lactose.yaml","Lactose"]]},{"id":"CHEBI:18050","l":"L-glutamine","na":1,"nb":3,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["mapped/Day_AminoAcid20.yaml","Day_AminoAcid20"],["mapped/L-glutamine.yaml","L-Glutamine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:18139","l":"trimethylamine","na":1,"nb":3,"a":[["South_Bay_Salt_Pond_Methane_Restoration_Community.html","South Bay Salt Pond Methane Restoration Microbial Community"]],"b":[["mapped/Formatetrimethylamine.yaml","Formate+trimethylamine"],["mapped/H2trimethylamine.yaml","H2+trimethylamine"],["mapped/Trimethylamine.yaml","Trimethylamine"]]},{"id":"CHEBI:26271","l":"proline","na":3,"nb":1,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["mapped/Proline.yaml","Proline"]]},{"id":"CHEBI:26672","l":"siderophore","na":3,"nb":1,"a":[["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"]],"b":[["mapped/Siderophore.yaml","Siderophore"]]},{"id":"CHEBI:26977","l":"thiosulfate","na":3,"nb":1,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"]],"b":[["mapped/Thiosulfate.yaml","Thiosulfate"]]},{"id":"CHEBI:30742","l":"ethylene glycol","na":3,"nb":1,"a":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"]],"b":[["mapped/Ethylene_Glycol.yaml","Ethylene glycol"]]},{"id":"CHEBI:53259","l":"poly(ethylene terephthalate) macromolecule","na":3,"nb":1,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["mapped/Poly%28ethylene_Terephthalate%29.yaml","Poly(ethylene Terephthalate)"]]},{"id":"CHEBI:132106","l":"sodium propionate","na":2,"nb":1,"a":[["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["mapped/Na-propionate.yaml","Na-propionate"]]},{"id":"CHEBI:15347","l":"acetone","na":2,"nb":1,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["mapped/Acetone.yaml","acetone"]]},{"id":"CHEBI:15729","l":"L-ornithine","na":1,"nb":2,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["mapped/L-ornithine.yaml","L-Ornithine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:15882","l":"phenol","na":2,"nb":1,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]],"b":[["mapped/Phenol.yaml","Phenol"]]},{"id":"CHEBI:16119","l":"shikimic acid","na":1,"nb":2,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Shikimic_Acid.yaml","Shikimic Acid"]]},{"id":"CHEBI:16150","l":"benzoate","na":2,"nb":1,"a":[["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["mapped/Benzoate.yaml","Benzoate"]]},{"id":"CHEBI:16235","l":"guanine","na":1,"nb":2,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["mapped/Guanine.yaml","Guanine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:16457","l":"S,S-dimethyl-beta-propiothetin","na":2,"nb":1,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["mapped/Dimethylsulfoniopropionate_Hydrochloride.yaml","Dimethylsulfoniopropionate hydrochloride"]]},{"id":"CHEBI:16830","l":"methylamine","na":2,"nb":1,"a":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"]],"b":[["mapped/Methylamine.yaml","Methylamine"]]},{"id":"CHEBI:16856","l":"glutathione","na":1,"nb":2,"a":[["Zymomonas_Ecoli_Exometabolomics_Obligate_Mutualism.html","Zymomonas-E. coli Exometabolomics-Designed Obligate Mutualism"]],"b":[["mapped/Glutathione.yaml","Glutathione"],["mapped/L-Glutathione.yaml","L-Glutathione"]]},{"id":"CHEBI:16865","l":"gamma-aminobutyric acid","na":2,"nb":1,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]],"b":[["mapped/Gamma-aminobutyric_Acid.yaml","gamma-Aminobutyric acid"]]},{"id":"CHEBI:16914","l":"salicylic acid","na":2,"nb":1,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"]],"b":[["mapped/Salicylic_Acid.yaml","Salicylic acid"]]},{"id":"CHEBI:16991","l":"deoxyribonucleic acid","na":1,"nb":2,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["mapped/Deoxyribonucleic_Acid_From_Herring_Sperm.yaml","Deoxyribonucleic acid from herring sperm"],["mapped/Fish-sperm_Dna.yaml","Fish-Sperm DNA"]]},{"id":"CHEBI:17300","l":"tetrachloroethene","na":2,"nb":1,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["mapped/Tetrachloroethene.yaml","Tetrachloroethene"]]},{"id":"CHEBI:17996","l":"chloride","na":2,"nb":1,"a":[["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"]],"b":[["mapped/Cl.yaml","Cl-"]]},{"id":"CHEBI:18012","l":"fumaric acid","na":1,"nb":2,"a":[["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["mapped/Corn_Steep_Liquor_Glucose_Fumarate.yaml","Corn Steep Liquor + Glucose + Fumarate"],["mapped/Fumaric_Acid.yaml","Fumaric acid"]]},{"id":"CHEBI:18053","l":"1-aminocyclopropanecarboxylic acid","na":2,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["mapped/1-aminocyclopropane-1-carboxylate.yaml","1-aminocyclopropane-1-carboxylate"]]},{"id":"CHEBI:22660","l":"aspartic acid","na":1,"nb":2,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["mapped/DL-Tyrosine.yaml","DL-Tyrosine"],["mapped/Dl-aspartic_Acid.yaml","DL-aspartic acid"]]},{"id":"CHEBI:26822","l":"sulfide","na":2,"nb":1,"a":[["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"]],"b":[["mapped/Sulfide.yaml","Sulfide"]]},{"id":"CHEBI:27082","l":"trehalose","na":2,"nb":1,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"]],"b":[["mapped/Trehalose.yaml","Trehalose"]]},{"id":"CHEBI:27518","l":"acetylene","na":2,"nb":1,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"]],"b":[["mapped/Acetylene.yaml","Acetylene"]]},{"id":"CHEBI:27570","l":"histidine","na":1,"nb":2,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["mapped/Dl-histidine.yaml","DL-Histidine"],["mapped/L-histidine.yaml","L-Histidine"]]},{"id":"CHEBI:28087","l":"glycogen","na":1,"nb":2,"a":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]],"b":[["mapped/Glycogen.yaml","Glycogen"],["mapped/Glycogen_From_Bovine_Liver.yaml","Glycogen from bovine liver"]]},{"id":"CHEBI:28675","l":"dextrin","na":2,"nb":1,"a":[["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"]],"b":[["mapped/Dextrin.yaml","Dextrin"]]},{"id":"CHEBI:28757","l":"fructose","na":1,"nb":2,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["mapped/Fructose.yaml","Fructose"],["mapped/PY-fructose.yaml","PY-fructose"]]},{"id":"CHEBI:28837","l":"octanoic acid","na":2,"nb":1,"a":[["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["mapped/Octanoic_Acid.yaml","Octanoic acid"]]},{"id":"CHEBI:29806","l":"fumarate(2-)","na":2,"nb":1,"a":[["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["mapped/Fumarate.yaml","Fumarate"]]},{"id":"CHEBI:30751","l":"formic acid","na":2,"nb":1,"a":[["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["mapped/Formic_Acid.yaml","Formic acid"]]},{"id":"CHEBI:30768","l":"propionic acid","na":2,"nb":1,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["mapped/Propionic_Acid.yaml","Propionic acid"]]},{"id":"CHEBI:30778","l":"gallic acid","na":1,"nb":2,"a":[["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["mapped/Gallate_Formate.yaml","Gallate + Formate"],["mapped/Gallic_Acid.yaml","Gallic Acid"]]},{"id":"CHEBI:3098","l":"bile acid","na":2,"nb":1,"a":[["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["mapped/Bile_Acid.yaml","Bile Acid"]]},{"id":"CHEBI:31346","l":"calcium sulfate","na":1,"nb":2,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]],"b":[["mapped/Caso4.yaml","CaSO4"],["mapped/Caso4_X_7_H2o.yaml","CaSO4 x 7 H2O"]]},{"id":"CHEBI:32036","l":"potassium sulfate","na":1,"nb":2,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"]],"b":[["mapped/K2so4.yaml","K2SO4"],["mapped/K2so4_X_7_H2o.yaml","K2SO4 x 7 H2O"]]},{"id":"CHEBI:33848","l":"polycyclic arene","na":2,"nb":1,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Pelagerythrobacter_Salinicola_PES_Pyrene_Degradation_SynCom.html","Pelagerythrobacter-Salinicola PES Pyrene-Degradation SynCom"]],"b":[["mapped/Aromatic_Hydrocarbon.yaml","Aromatic hydrocarbon"]]},{"id":"CHEBI:35176","l":"zinc sulfate","na":2,"nb":1,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/Zinc_Sulfate.yaml","Zinc sulfate"]]},{"id":"CHEBI:35381","l":"monosaccharide","na":2,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["mapped/Mono-_And_Disaccharides.yaml","Mono- And Disaccharides"]]},{"id":"CHEBI:36219","l":"alpha-lactose","na":2,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"]],"b":[["mapped/Alpha-Lactose.yaml","alpha-Lactose"]]},{"id":"CHEBI:39106","l":"pyrene","na":2,"nb":1,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Pelagerythrobacter_Salinicola_PES_Pyrene_Degradation_SynCom.html","Pelagerythrobacter-Salinicola PES Pyrene-Degradation SynCom"]],"b":[["mapped/Pyrene.yaml","Pyrene"]]},{"id":"CHEBI:41131","l":"crotonic acid","na":1,"nb":2,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["mapped/Crotonic_Acid.yaml","Crotonic acid"],["mapped/Na-crotonate.yaml","Na-crotonate"]]},{"id":"CHEBI:42191","l":"EDTA(4-)","na":2,"nb":1,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/Edta_Acid_Form.yaml","EDTA (acid form)"]]},{"id":"CHEBI:48607","l":"lithium chloride","na":1,"nb":2,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["mapped/Licl.yaml","LiCl"],["mapped/Lithium_Chloride_Hydrate.yaml","Lithium chloride hydrate"]]},{"id":"CHEBI:506227","l":"N-acetyl-D-glucosamine","na":1,"nb":2,"a":[["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["mapped/N-acetyl-d-glucosamine.yaml","N-Acetyl-D-glucosamine"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"]]},{"id":"CHEBI:5199","l":"Fusaric acid","na":2,"nb":1,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["mapped/Fusaric_Acid.yaml","Fusaric acid"]]},{"id":"CHEBI:58187","l":"alginate","na":2,"nb":1,"a":[["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["mapped/Alginate.yaml","Alginate"]]},{"id":"CHEBI:62064","l":"butane-2,3-diol","na":2,"nb":1,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["mapped/23-butanediol.yaml","2,3-butanediol"]]},{"id":"CHEBI:62412","l":"phenazine-1-carboxylic acid","na":2,"nb":1,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"]],"b":[["mapped/Phenazine-1-carboxylic_Acid.yaml","Phenazine-1-carboxylic acid"]]},{"id":"CHEBI:63041","l":"manganese(II) chloride","na":2,"nb":1,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["mapped/Mncl2.yaml","MnCl2"]]},{"id":"CHEBI:64205","l":"calcium nitrate","na":2,"nb":1,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"]],"b":[["mapped/Ca_No32.yaml","Ca(NO3)2"]]},{"id":"CHEBI:7916","l":"pantothenic acid","na":1,"nb":2,"a":[["Variovorax_Cryptococcus_Vitamin_Mutualism_Microcosm.html","Variovorax-Cryptococcus Vitamin Cross-Feeding Microcosm"]],"b":[["mapped/DL_Vitamins.yaml","DL vitamins"],["mapped/Pantothenic_Acid.yaml","Pantothenic acid"]]},{"id":"CHEBI:9754","l":"tris","na":2,"nb":1,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["mapped/Tris_Base.yaml","Tris base"]]},{"id":"ENVO:00000051","l":"hot spring","na":2,"nb":1,"a":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["mapped/Sulfur.yaml","Sulfur"]]},{"id":"CHEBI:15075","l":"selenate","na":1,"nb":1,"a":[["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"]],"b":[["mapped/Selenate.yaml","Selenate"]]},{"id":"CHEBI:15589","l":"(S)-malate(2-)","na":1,"nb":1,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["mapped/L-malate.yaml","L-malate"]]},{"id":"CHEBI:15688","l":"acetoin","na":1,"nb":1,"a":[["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"]],"b":[["mapped/Acetoin.yaml","Acetoin"]]},{"id":"CHEBI:16109","l":"propane-1,3-diol","na":1,"nb":1,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["mapped/13-Propanediol.yaml","1,3-Propanediol"]]},{"id":"CHEBI:16810","l":"2-oxoglutarate(2-)","na":1,"nb":1,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"]],"b":[["mapped/Na2_Alpha-ketoglutarate.yaml","Na2 alpha-ketoglutarate"]]},{"id":"CHEBI:16881","l":"1H-indole","na":1,"nb":1,"a":[["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"]],"b":[["mapped/Indole.yaml","Indole"]]},{"id":"CHEBI:16918","l":"gallate","na":1,"nb":1,"a":[["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["mapped/Gallate_Formate.yaml","Gallate + Formate"]]},{"id":"CHEBI:16988","l":"D-ribose","na":1,"nb":1,"a":[["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"]],"b":[["mapped/D-Ribose.yaml","D-Ribose"]]},{"id":"CHEBI:17120","l":"hexanoate","na":1,"nb":1,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"]],"b":[["mapped/Hexanoate.yaml","Hexanoate"]]},{"id":"CHEBI:17418","l":"valeric acid","na":1,"nb":1,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"]],"b":[["mapped/Valeric_Acid.yaml","Valeric acid"]]},{"id":"CHEBI:17642","l":"pentachlorophenol","na":1,"nb":1,"a":[["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["mapped/Pentachlorophenol.yaml","Pentachlorophenol"]]},{"id":"CHEBI:17698","l":"chloramphenicol","na":1,"nb":1,"a":[["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"]],"b":[["mapped/Chloramphenicol.yaml","Chloramphenicol"]]},{"id":"CHEBI:17747","l":"bis(2-ethylhexyl) phthalate","na":1,"nb":1,"a":[["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"]],"b":[["mapped/Bis%282-ethylhexyl%29phthalate.yaml","Bis(2-ethylhexyl)phthalate"]]},{"id":"CHEBI:17822","l":"serine","na":1,"nb":1,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["mapped/Serine.yaml","Serine"]]},{"id":"CHEBI:17847","l":"p-cresol","na":1,"nb":1,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["mapped/4-Cresol.yaml","4-Cresol"]]},{"id":"CHEBI:17859","l":"glutaric acid","na":1,"nb":1,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["mapped/Glutaric_Acid.yaml","Glutaric acid"]]},{"id":"CHEBI:17879","l":"4-hydroxybenzoate","na":1,"nb":1,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["mapped/P-hydroxybenzoate.yaml","p-Hydroxybenzoate"]]},{"id":"CHEBI:18186","l":"tyrosine","na":1,"nb":1,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["mapped/DL-Tyrosine.yaml","DL-Tyrosine"]]},{"id":"CHEBI:18212","l":"selenite(2-)","na":1,"nb":1,"a":[["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"]],"b":[["mapped/Selenite.yaml","Selenite"]]},{"id":"CHEBI:18248","l":"iron atom","na":1,"nb":1,"a":[["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["mapped/Iron.yaml","Iron"]]},{"id":"CHEBI:18257","l":"ornithine","na":1,"nb":1,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["mapped/Ornithine.yaml","Ornithine"]]},{"id":"CHEBI:18287","l":"L-fucose","na":1,"nb":1,"a":[["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"]],"b":[["mapped/L-fucose.yaml","L-Fucose"]]},{"id":"CHEBI:18346","l":"vanillin","na":1,"nb":1,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"]],"b":[["mapped/Vanillin.yaml","Vanillin"]]},{"id":"CHEBI:22651","l":"ascorbate","na":1,"nb":1,"a":[["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["mapped/Ascorbate.yaml","Ascorbate"]]},{"id":"CHEBI:2365","l":"(+)-abscisic acid","na":1,"nb":1,"a":[["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["mapped/Abscisic_Acid.yaml","Abscisic acid"]]},{"id":"CHEBI:23681","l":"dibenzothiophene","na":1,"nb":1,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["mapped/Dibenzothiophene.yaml","Dibenzothiophene"]]},{"id":"CHEBI:24266","l":"gluconic acid","na":1,"nb":1,"a":[["Wollastonite_Ramichloridium_Talaromyces_Fungal_Consortium.html","Wollastonite Ramichloridium-Talaromyces Fungal Consortium"]],"b":[["mapped/Gluconic_Acid.yaml","Gluconic acid"]]},{"id":"CHEBI:24632","l":"hydrocarbon","na":1,"nb":1,"a":[["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"]],"b":[["mapped/Hydrocarbon.yaml","Hydrocarbon"]]},{"id":"CHEBI:26401","l":"purines","na":1,"nb":1,"a":[["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"]],"b":[["mapped/Purines.yaml","Purines"]]},{"id":"CHEBI:26806","l":"succinate","na":1,"nb":1,"a":[["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]],"b":[["mapped/Succinate.yaml","Succinate"]]},{"id":"CHEBI:26948","l":"vitamin B1","na":1,"nb":1,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["mapped/Thiamine.yaml","Thiamine"]]},{"id":"CHEBI:27750","l":"ethyl acetate","na":1,"nb":1,"a":[["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["mapped/Ethyl_Acetate.yaml","ethyl acetate"]]},{"id":"CHEBI:27897","l":"tryptophan","na":1,"nb":1,"a":[["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"]],"b":[["mapped/Tryptophan.yaml","Tryptophan"]]},{"id":"CHEBI:28260","l":"galactose","na":1,"nb":1,"a":[["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]],"b":[["mapped/Galactose.yaml","Galactose"]]},{"id":"CHEBI:28266","l":"fluorene","na":1,"nb":1,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["mapped/Fluorene.yaml","Fluorene"]]},{"id":"CHEBI:28685","l":"molybdenum atom","na":1,"nb":1,"a":[["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["mapped/Molybdenum.yaml","Molybdenum"]]},{"id":"CHEBI:28808","l":"mannan","na":1,"nb":1,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"]],"b":[["unmapped/Prebiotin.yaml","Prebiotin"]]},{"id":"CHEBI:28817","l":"dodecane","na":1,"nb":1,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["mapped/Dodecane.yaml","dodecane"]]},{"id":"CHEBI:29016","l":"arginine","na":1,"nb":1,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["mapped/Arginine.yaml","Arginine"]]},{"id":"CHEBI:29073","l":"L-ascorbic acid","na":1,"nb":1,"a":[["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["mapped/L-ascorbic_Acid.yaml","L-Ascorbic acid"]]},{"id":"CHEBI:29101","l":"sodium(1+)","na":1,"nb":1,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"]],"b":[["mapped/Sodium%28%29.yaml","Sodium(+)"]]},{"id":"CHEBI:30531","l":"pimelic acid","na":1,"nb":1,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["mapped/Pimelic_Acid.yaml","Pimelic acid"]]},{"id":"CHEBI:30803","l":"isophthalate(2-)","na":1,"nb":1,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["mapped/Isophthalate.yaml","Isophthalate"]]},{"id":"CHEBI:30816","l":"vanillic acid","na":1,"nb":1,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["mapped/Vanillic_Acid.yaml","Vanillic Acid"]]},{"id":"CHEBI:30832","l":"adipic acid","na":1,"nb":1,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["mapped/Adipic_Acid.yaml","Adipic acid"]]},{"id":"CHEBI:32374","l":"trans-4-coumaric acid","na":1,"nb":1,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["mapped/P-Coumaric_Acid.yaml","p-Coumaric acid"]]},{"id":"CHEBI:32816","l":"pyruvic acid","na":1,"nb":1,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["mapped/Pyruvic_Acid.yaml","Pyruvic acid"]]},{"id":"CHEBI:3311","l":"calcium carbonate","na":1,"nb":1,"a":[["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"]],"b":[["mapped/Caco3.yaml","CaCO3"]]},{"id":"CHEBI:33198","l":"D-gluconic acid","na":1,"nb":1,"a":[["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"]],"b":[["mapped/D-Gluconic_acid.yaml","D-Gluconic acid"]]},{"id":"CHEBI:34768","l":"furfural","na":1,"nb":1,"a":[["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"]],"b":[["mapped/2-Furfuraldehyde.yaml","2-Furfuraldehyde"]]},{"id":"CHEBI:35366","l":"fatty acid","na":1,"nb":1,"a":[["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"]],"b":[["mapped/Fatty_Acid_Mixture_See_Medium_No_266.yaml","Fatty acid mixture (see Medium No. 266)"]]},{"id":"CHEBI:35899","l":"crotonate","na":1,"nb":1,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["mapped/Na-crotonate.yaml","Na-crotonate"]]},{"id":"CHEBI:37671","l":"(1->3)-beta-D-glucan","na":1,"nb":1,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"]],"b":[["mapped/3-beta-d-glucan.yaml","3-beta-D-glucan"]]},{"id":"CHEBI:412516","l":"5-hydroxymethylfurfural","na":1,"nb":1,"a":[["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"]],"b":[["mapped/5-Hydroxymethylfurfural.yaml","5-Hydroxymethylfurfural"]]},{"id":"CHEBI:46645","l":"isobutanol","na":1,"nb":1,"a":[["Trichoderma_Ecoli_Cellulosic_Isobutanol_Coculture.html","Trichoderma-E. coli Cellulosic Isobutanol Coculture"]],"b":[["mapped/Isobutyl_Alcohol.yaml","Isobutyl alcohol"]]},{"id":"CHEBI:61448","l":"isopropyl beta-D-thiogalactopyranoside","na":1,"nb":1,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["mapped/IPTG.yaml","IPTG"]]},{"id":"CHEBI:64103","l":"sodium butyrate","na":1,"nb":1,"a":[["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["mapped/Na-butyrate.yaml","Na-butyrate"]]},{"id":"CHEBI:78037","l":"polyhydroxyalkanoate","na":1,"nb":1,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["mapped/Poly-beta-hydroxyalkanoate.yaml","Poly-beta-hydroxyalkanoate"]]},{"id":"CHEBI:8653","l":"pyocyanine","na":1,"nb":1,"a":[["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["mapped/Pyocyanin.yaml","Pyocyanin"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/CommunityMech--NaturalProductMech.json b/assets/fleet/edges/CommunityMech--NaturalProductMech.json index 59eedae..2f09a74 100644 --- a/assets/fleet/edges/CommunityMech--NaturalProductMech.json +++ b/assets/fleet/edges/CommunityMech--NaturalProductMech.json @@ -1 +1 @@ -{"a":"CommunityMech","b":"NaturalProductMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","NaturalProductMech":"https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/natural_products/"},"n":129,"by":{"NCBITaxon":124,"CHEBI":5},"terms":[{"id":"NCBITaxon:286","l":"Pseudomonas","na":18,"nb":41,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"]],"b":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["alkaloids/tioguanine.yaml","tioguanine"],["amino_acids_and_peptides/napsamycin-c.yaml","napsamycin C"],["amino_acids_and_peptides/napsamycin-d.yaml","napsamycin D"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":16,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["amino_acids_and_peptides/ericin-s.yaml","ericin S"],["amino_acids_and_peptides/iturin.yaml","iturin"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":14,"nb":24,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":11,"nb":13,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["unclassified/bananamide-d.yaml","bananamide D"],["unclassified/bananamide-e.yaml","bananamide E"],["unclassified/bananamide-f.yaml","bananamide F"],["unclassified/bananamide-g.yaml","bananamide G"],["unclassified/lokisin.yaml","lokisin"],["unclassified/pseudodesmin-a.yaml","pseudodesmin A"]]},{"id":"NCBITaxon:1386","l":"Bacillus ","na":16,"nb":9,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bogorol-a.yaml","bogorol A"],["amino_acids_and_peptides/koranimine.yaml","koranimine"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"],["amino_acids_and_peptides/rhizocticin-a.yaml","rhizocticin A"],["polyketides/difficidin.yaml","difficidin"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":9,"nb":12,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:492670","l":"Bacillus velezensis","na":8,"nb":8,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["polyketides/bacillaene.yaml","bacillaene"],["polyketides/difficidin.yaml","difficidin"],["polyketides/macrolactin-h.yaml","macrolactin H"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":6,"nb":116,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["alkaloids/altemicidin.yaml","altemicidin"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"],["alkaloids/aurachin-ss.yaml","aurachin SS"],["alkaloids/berninamycin-j.yaml","berninamycin J"],["alkaloids/berninamycin-k.yaml","berninamycin K"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":6,"nb":27,"a":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["alkaloids/pseudomonine.yaml","pseudomonine"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyreudione-c.yaml","pyreudione C"],["alkaloids/quinolobactin.yaml","quinolobactin"]]},{"id":"NCBITaxon:1883","l":"Streptomyces","na":5,"nb":438,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["Wheat_Consortium_C6.html","Wheat Synthetic Consortium C6"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/7-prenylisatin.yaml","7-prenylisatin"],["alkaloids/9-methylstreptimidone.yaml","9-methylstreptimidone"],["alkaloids/anisomycin.yaml","(−)-anisomycin"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":9,"nb":5,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]],"b":[["alkaloids/promysalin.yaml","promysalin"],["polyketides/pseudopyronine-a.yaml","pseudopyronine A"],["polyketides/pseudopyronine-b.yaml","pseudopyronine B"],["unclassified/putisolvin-iii.yaml","putisolvin III"],["unclassified/putisolvin-v.yaml","putisolvin V"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":4,"nb":11,"a":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["amino_acids_and_peptides/ferrichrome.yaml","ferrichrome"],["polyketides/1-2-3-5-10-tetrahydroxy-7-methoxy-4-oxo-1-2-3-4-tetrahydroanthracen-2-yl-pentane.yaml","1-(2,3,5,10-tetrahydroxy-7-methoxy-4-oxo-1,2,3,4-tetrahydroanthracen-2-yl)pentane-2,4-dione"],["polyketides/azanigerone-a.yaml","azanigerone A"],["polyketides/campyrone-b.yaml","campyrone B"],["polyketides/desmethyl-tan-1612.yaml","desmethyl TAN-1612"],["polyketides/fumonisin-b2.yaml","fumonisin B2"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":7,"nb":4,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["alkaloids/zwittermicin-a.yaml","zwittermicin A"],["amino_acids_and_peptides/livipeptin.yaml","Livipeptin"],["carbohydrates/tunicamycin.yaml","tunicamycin"],["unclassified/cereulide.yaml","cereulide"]]},{"id":"NCBITaxon:32008","l":"Burkholderia","na":4,"nb":6,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["polyketides/necroxime-a.yaml","necroxime A"],["polyketides/necroxime-c.yaml","necroxime C"],["polyketides/necroxime-d.yaml","necroxime D"],["polyketides/thailanstatin-a.yaml","thailanstatin A"],["unclassified/necroxime-b.yaml","necroxime B"],["unclassified/spliceostatin.yaml","spliceostatin"]]},{"id":"NCBITaxon:5052","l":"Aspergillus","na":3,"nb":18,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["alkaloids/psychrophilin-e.yaml","psychrophilin E"],["alkaloids/terrequinone-a.yaml","terrequinone A"],["fatty_acids/himeic-acid-a.yaml","himeic acid A"],["polyketides/asperlin.yaml","(+)-asperlin"],["polyketides/geodin.yaml","geodin"],["polyketides/mycophenolic-acid.yaml","mycophenolic acid"]]},{"id":"NCBITaxon:5544","l":"Trichoderma harzianum","na":5,"nb":3,"a":[["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"],["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"],["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["polyketides/1-2-dehydropenicillide.yaml","1,2-dehydropenicillide"],["polyketides/harziphilone.yaml","harziphilone"],["unclassified/harzianopyridone.yaml","harzianopyridone"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":4,"nb":3,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]],"b":[["unclassified/leuvalin.yaml","leuvalin"],["unclassified/mutanocyclin.yaml","mutanocyclin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":4,"nb":3,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"],["amino_acids_and_peptides/lacticin-z.yaml","lacticin Z"],["amino_acids_and_peptides/nisin-a.yaml","nisin A"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":3,"nb":3,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["amino_acids_and_peptides/polymyxin-b.yaml","polymyxin B"],["amino_acids_and_peptides/polymyxin.yaml","polymyxin"],["unclassified/fusaricidin-b.yaml","fusaricidin B"]]},{"id":"NCBITaxon:5507","l":"Fusarium oxysporum","na":2,"nb":11,"a":[["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["alkaloids/fusaric-acid.yaml","fusaric acid"],["polyketides/bikaverin.yaml","bikaverin"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"],["polyketides/fumonisin-c1.yaml","Fumonisin C1"],["polyketides/fumonisin-c2.yaml","Fumonisin C2"],["polyketides/fumonisin-c3.yaml","Fumonisin C3"]]},{"id":"NCBITaxon:3702","l":"Arabidopsis thaliana","na":2,"nb":10,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/itaconic-acid.yaml","itaconic acid"],["terpenoids/ent-quiannulatene.yaml","(-)-ent-quiannulatene"],["terpenoids/euphol.yaml","euphol"],["terpenoids/marneral.yaml","marneral"],["terpenoids/thaliandiol.yaml","thaliandiol"]]},{"id":"NCBITaxon:4577","l":"Zea mays","na":2,"nb":6,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"]],"b":[["alkaloids/dimboa.yaml","DIMBOA"],["polyketides/emodin.yaml","emodin"],["terpenoids/zealexin-a1.yaml","zealexin A1"],["terpenoids/zealexin-b3.yaml","zealexin B3"],["terpenoids/zealexin-c2.yaml","zealexin C2"],["unclassified/aflatoxin.yaml","aflatoxin"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":5,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"],["unclassified/leuvalin.yaml","leuvalin"],["unclassified/phevalin.yaml","phevalin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:1521","l":"Ruminiclostridium cellulolyticum","na":4,"nb":2,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["alkaloids/closthioamide.yaml","closthioamide"],["amino_acids_and_peptides/rc-aip1.yaml","Rc-AIP1"]]},{"id":"NCBITaxon:1889","l":"Streptomyces ambofaciens","na":2,"nb":4,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["alkaloids/congocidine.yaml","congocidine"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["polyketides/spiramycin.yaml","spiramycin"],["polyketides/stambomycin-a.yaml","stambomycin A"]]},{"id":"NCBITaxon:32049","l":"Picosynechococcus sp. PCC 7002","na":2,"nb":4,"a":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"]],"b":[["alkaloids/synechobactin-a.yaml","synechobactin A"],["alkaloids/synechobactin-b.yaml","synechobactin B"],["alkaloids/synechobactin-c.yaml","synechobactin C"],["fatty_acids/nonadec-1-ene.yaml","nonadec-1-ene"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":3,"nb":2,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"],["carbohydrates/oxetanocin-a.yaml","oxetanocin A"]]},{"id":"NCBITaxon:149698","l":"Massilia","na":3,"nb":2,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]],"b":[["unclassified/empedopeptin.yaml","empedopeptin"],["unclassified/massiliachelin.yaml","Massiliachelin"]]},{"id":"NCBITaxon:379","l":"Rhizobium","na":3,"nb":2,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["alkaloids/sesbanimide-c.yaml","sesbanimide C"],["amino_acids_and_peptides/syringolin-a-2.yaml","syringolin A"]]},{"id":"NCBITaxon:44249","l":"Paenibacillus","na":3,"nb":2,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["alkaloids/paenilamicin.yaml","paenilamicin"],["unclassified/paenibacterin.yaml","paenibacterin"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":3,"nb":2,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["terpenoids/mk-8.yaml","MK-8"]]},{"id":"NCBITaxon:55080","l":"Brevibacillus","na":3,"nb":2,"a":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"]],"b":[["alkaloids/ulbactin-f.yaml","ulbactin F"],["alkaloids/ulbactin-g.yaml","ulbactin G"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":2,"nb":2,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]],"b":[["alkaloids/biotin.yaml","biotin"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":2,"nb":2,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["unclassified/andalusicin-a.yaml","andalusicin A"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":2,"nb":2,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["alkaloids/agrobactin.yaml","agrobactin"],["amino_acids_and_peptides/aztreonam.yaml","aztreonam"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":2,"nb":2,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["alkaloids/acinetobactin.yaml","acinetobactin"],["amino_acids_and_peptides/fimsbactin-a.yaml","fimsbactin A"]]},{"id":"NCBITaxon:1873","l":"Micromonospora","na":1,"nb":49,"a":[["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"]],"b":[["alkaloids/diazaquinomycin-h.yaml","diazaquinomycin H"],["alkaloids/diazaquinomycin-j.yaml","diazaquinomycin J"],["alkaloids/diazepinomicin.yaml","diazepinomicin"],["alkaloids/microansamycin-i.yaml","microansamycin I"],["alkaloids/staurosporine.yaml","staurosporine"],["alkaloids/streptonigrin.yaml","streptonigrin"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":1,"nb":30,"a":[["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["amino_acids_and_peptides/ditryptophenaline.yaml","(-)-ditryptophenaline"],["amino_acids_and_peptides/imizoquin-a.yaml","imizoquin A"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":1,"nb":23,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/melanin.yaml","melanin"],["alkaloids/undecylprodigiosin.yaml","undecylprodigiosin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/sapb.yaml","SapB"]]},{"id":"NCBITaxon:5073","l":"Penicillium","na":1,"nb":20,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["alkaloids/citridone-a.yaml","citridone A"],["alkaloids/citridone-b-2.yaml","citridone B'"],["alkaloids/citridone-b.yaml","citridone B"],["alkaloids/communesin-b.yaml","communesin B"],["alkaloids/communesin-c.yaml","communesin C"],["alkaloids/communesin-d.yaml","communesin D"]]},{"id":"NCBITaxon:69488","l":"Penicillium simplicissimum","na":1,"nb":14,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"]],"b":[["polyketides/citreoviridin.yaml","citreoviridin"],["unclassified/andrastin-a.yaml","andrastin A"],["unclassified/okaramine-b.yaml","okaramine B"],["unclassified/okaramine-d.yaml","okaramine D"],["unclassified/paraherquamide.yaml","paraherquamide"],["unclassified/paraherquonin.yaml","paraherquonin"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":1,"nb":13,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/congocidine.yaml","congocidine"],["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]]},{"id":"NCBITaxon:1163","l":"Anabaena","na":1,"nb":11,"a":[["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"]],"b":[["alkaloids/anatoxin-a.yaml","anatoxin-a"],["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"],["alkaloids/saxitoxin.yaml","saxitoxin"],["alkaloids/schizokinen.yaml","schizokinen"],["amino_acids_and_peptides/anabaenopeptin.yaml","anabaenopeptin"],["amino_acids_and_peptides/anacyclamide-a10.yaml","anacyclamide A10"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":1,"nb":10,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["amino_acids_and_peptides/lipopeptide-8d1-1.yaml","lipopeptide 8D1-1"],["amino_acids_and_peptides/lipopeptide-8d1-2.yaml","lipopeptide 8D1-2"],["carbohydrates/amicetin.yaml","amicetin"],["carbohydrates/streptothricin-c.yaml","streptothricin C"],["carbohydrates/streptothricin-d.yaml","streptothricin D"],["carbohydrates/streptothricin-e.yaml","streptothricin E"]]},{"id":"NCBITaxon:1988","l":"Actinomadura","na":1,"nb":9,"a":[["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"]],"b":[["alkaloids/k-252a.yaml","K-252a"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["carbohydrates/2-chloropentostatin.yaml","2'-chloropentostatin"],["polyketides/actinospirol-a.yaml","actinospirol A"],["polyketides/actinospirol-b.yaml","actinospirol B"],["polyketides/maduralactomycin-a.yaml","maduralactomycin A"]]},{"id":"NCBITaxon:117187","l":"Fusarium verticillioides","na":1,"nb":8,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]],"b":[["alkaloids/dihydrofusarin-c.yaml","dihydrofusarin C"],["alkaloids/epi-fusarin-c.yaml","epi-fusarin C"],["alkaloids/fusaric-acid.yaml","fusaric acid"],["alkaloids/fusarin-c.yaml","fusarin C"],["alkaloids/fusarin-d.yaml","fusarin D"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"]]},{"id":"NCBITaxon:1827","l":"Rhodococcus ","na":8,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]],"b":[["alkaloids/corynecin-iii.yaml","corynecin III"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":8,"nb":1,"a":[["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"],["Sedimenting_Arabinose_Glucose_Saccharomyces_Coculture.html","Sedimenting Arabinose-Glucose Saccharomyces Coculture"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":1,"nb":8,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["amino_acids_and_peptides/ferrichrome-2.yaml","ferrichrome"],["polyketides/2-acetyl-1-3-6-8-tetrahydroxynaphthalene.yaml","2-acetyl-1,3,6,8-tetrahydroxynaphthalene"],["polyketides/kojic-acid.yaml","kojic acid"],["terpenoids/aphidicolin.yaml","aphidicolin"],["unclassified/2-oxocyclopiazonic-acid.yaml","2-oxocyclopiazonic acid"],["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"NCBITaxon:1269","l":"Micrococcus","na":1,"nb":6,"a":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["alkaloids/limazepine-a.yaml","limazepine A"],["alkaloids/limazepine-c.yaml","limazepine C"],["alkaloids/limazepine-d.yaml","limazepine D"],["alkaloids/limazepine-e.yaml","limazepine E"],["alkaloids/limazepine-f.yaml","limazepine F"],["terpenoids/mk-8.yaml","MK-8"]]},{"id":"NCBITaxon:1920","l":"Streptomyces nigrescens","na":1,"nb":6,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["alkaloids/5athq-10a.yaml","5aTHQ-10a"],["alkaloids/5athq-9i.yaml","5aTHQ-9i"],["alkaloids/5athq-9n.yaml","5aTHQ-9n"],["alkaloids/stams-9i.yaml","STAMs-9i"],["alkaloids/stams-9n.yaml","STAMs-9n"],["polyketides/phoslactomycin-b.yaml","phoslactomycin B"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":1,"nb":5,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["alkaloids/aminochelin.yaml","aminochelin"],["alkaloids/azotochelin.yaml","azotochelin"],["alkaloids/protochelin.yaml","protochelin"],["amino_acids_and_peptides/azotobactin-d.yaml","azotobactin D"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":1,"nb":5,"a":[["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/andrimid.yaml","andrimid"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/pantocin-a.yaml","pantocin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:101028","l":"Fusarium pseudograminearum","na":1,"nb":4,"a":[["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["alkaloids/8-oxo-fusatin.yaml","8-oxo-fusatin"],["alkaloids/8-oxo-isopentenyladenine.yaml","8-oxo-isopentenyladenine"],["alkaloids/fusatin.yaml","fusatin"],["alkaloids/fusatinic-acid.yaml","fusatinic acid"]]},{"id":"NCBITaxon:1179","l":"Desmonostoc muscorum","na":1,"nb":4,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["amino_acids_and_peptides/muscoride-a.yaml","muscoride A"],["unclassified/desmamide-a.yaml","desmamide A"],["unclassified/desmamide-b.yaml","desmamide B"],["unclassified/desmamide-c.yaml","desmamide C"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":4,"nb":1,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"],["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":4,"nb":1,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["amino_acids_and_peptides/bacitracin.yaml","bacitracin"]]},{"id":"NCBITaxon:237","l":"Flavobacterium","na":4,"nb":1,"a":[["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"]]},{"id":"NCBITaxon:2745","l":"Halomonas","na":1,"nb":4,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["amino_acids_and_peptides/potashchelin-a.yaml","potashchelin A"],["amino_acids_and_peptides/potashchelin-b.yaml","potashchelin B"],["amino_acids_and_peptides/potashchelin-c.yaml","potashchelin C"],["amino_acids_and_peptides/potashchelin-d.yaml","potashchelin D"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":1,"nb":4,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["unclassified/vacidobactin-a.yaml","vacidobactin A"],["unclassified/vacidobactin-b.yaml","vacidobactin B"],["unclassified/variobactin-a.yaml","variobactin A"],["unclassified/variobactin-b.yaml","variobactin B"]]},{"id":"NCBITaxon:414878","l":"Catenulispora","na":1,"nb":4,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"]],"b":[["polyketides/catenulisporolide-a.yaml","catenulisporolide A"],["polyketides/catenulisporolide-b.yaml","catenulisporolide B"],["polyketides/catenulisporolide-c.yaml","catenulisporolide C"],["polyketides/catenulisporolide-d.yaml","catenulisporolide D"]]},{"id":"NCBITaxon:6239","l":"Caenorhabditis elegans","na":1,"nb":4,"a":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"]],"b":[["alkaloids/biotin.yaml","biotin"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/itaconic-acid.yaml","itaconic acid"],["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":4,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["fatty_acids/galactosylceramide.yaml","α-galactosylceramide"]]},{"id":"CHEBI:15956","l":"biotin","na":3,"nb":1,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"NCBITaxon:1125","l":"Microcystis","na":1,"nb":3,"a":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"]],"b":[["amino_acids_and_peptides/microcystin-lr.yaml","microcystin-LR"],["amino_acids_and_peptides/piricyclamide-7005e1.yaml","piricyclamide 7005E1"],["unclassified/cyanopeptolin.yaml","cyanopeptolin"]]},{"id":"NCBITaxon:1129","l":"Synechococcus","na":1,"nb":3,"a":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]],"b":[["alkaloids/synechobactin-a.yaml","synechobactin A"],["alkaloids/synechobactin-b.yaml","synechobactin B"],["alkaloids/synechobactin-c.yaml","synechobactin C"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":1,"nb":3,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["amino_acids_and_peptides/epidermin.yaml","epidermin"],["amino_acids_and_peptides/epilancin-15x.yaml","epilancin 15x"],["amino_acids_and_peptides/pep5.yaml","pep5"]]},{"id":"NCBITaxon:22","l":"Shewanella","na":3,"nb":1,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Shewanella_Denitrifying_Richness_SynComs.html","Shewanella Denitrifying Richness SynComs"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"NCBITaxon:222","l":"Achromobacter","na":3,"nb":1,"a":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":1,"nb":3,"a":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"]],"b":[["alkaloids/cepaciachelin.yaml","cepaciachelin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["terpenoids/hopene.yaml","hopene"]]},{"id":"NCBITaxon:29442","l":"Pseudomonas tolaasii","na":1,"nb":3,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["unclassified/tolaasin-a.yaml","tolaasin A"],["unclassified/tolaasin-f.yaml","tolaasin F"],["unclassified/tolaasin-i.yaml","tolaasin I"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":3,"nb":1,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"NCBITaxon:34305","l":"Lotus japonicus","na":1,"nb":3,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["amino_acids_and_peptides/linamarin.yaml","linamarin"],["amino_acids_and_peptides/lotaustralin.yaml","lotaustralin"],["terpenoids/lupeol.yaml","lupeol"]]},{"id":"NCBITaxon:380021","l":"Pseudomonas protegens","na":1,"nb":3,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"],["unclassified/pf-5-pyoverdine.yaml","Pf-5 pyoverdine"]]},{"id":"NCBITaxon:3847","l":"Glycine max","na":1,"nb":3,"a":[["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["alkaloids/biotin.yaml","biotin"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]]},{"id":"NCBITaxon:4081","l":"Solanum lycopersicum","na":1,"nb":3,"a":[["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["fatty_acids/falcarindiol.yaml","falcarindiol"],["terpenoids/lycosantalonol.yaml","lycosantalonol"],["terpenoids/phellandrene.yaml","β-phellandrene"]]},{"id":"NCBITaxon:4530","l":"Oryza sativa","na":1,"nb":3,"a":[["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/nonadec-1-ene.yaml","nonadec-1-ene"],["terpenoids/phytocassane.yaml","phytocassane"]]},{"id":"NCBITaxon:536","l":"Chromobacterium violaceum","na":1,"nb":3,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"]],"b":[["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["unclassified/romidepsin.yaml","romidepsin"]]},{"id":"NCBITaxon:547","l":"Enterobacter","na":3,"nb":1,"a":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["amino_acids_and_peptides/andrimid.yaml","andrimid"]]},{"id":"NCBITaxon:587753","l":"Pseudomonas chlororaphis","na":3,"nb":1,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"NCBITaxon:68239","l":"Streptomyces mirabilis strain P8-A","na":1,"nb":3,"a":[["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["alkaloids/azodyrecin-a.yaml","Azodyrecin A"],["alkaloids/azodyrecin-b.yaml","Azodyrecin B"],["alkaloids/azodyrecin-c.yaml","Azodyrecin C"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":1,"nb":3,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"],["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"],["unclassified/telomestatin.yaml","telomestatin"]]},{"id":"NCBITaxon:1091494","l":"Methylotuvimicrobium alcaliphilum 20Z","na":2,"nb":1,"a":[["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:132919","l":"Rhodococcus jostii","na":1,"nb":2,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["amino_acids_and_peptides/lariatin.yaml","lariatin"],["unclassified/rhodochelin.yaml","rhodochelin"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":2,"nb":1,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]]},{"id":"NCBITaxon:1663","l":"Arthrobacter","na":2,"nb":1,"a":[["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["unclassified/ws9326a.yaml","WS9326A"]]},{"id":"NCBITaxon:1696","l":"Brevibacterium","na":2,"nb":1,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["alkaloids/1-6-phenazinedimethanol.yaml","1,6-phenazinedimethanol"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":2,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":2,"nb":1,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"]],"b":[["alkaloids/parabactin.yaml","parabactin"]]},{"id":"NCBITaxon:269797","l":"Methanosarcina barkeri str. Fusaro","na":2,"nb":1,"a":[["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["alkaloids/coenzyme-f430.yaml","coenzyme F430"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":2,"nb":1,"a":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:29305","l":"Streptomyces griseoincarnatus","na":1,"nb":2,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["polyketides/grincamycin.yaml","grincamycin"],["polyketides/resistomycin.yaml","resistomycin"]]},{"id":"NCBITaxon:391619","l":"Phaeobacter inhibens DSM 17395","na":1,"nb":2,"a":[["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"]],"b":[["shikimates_and_phenylpropanoids/hydroxytropodithietic-acid.yaml","hydroxytropodithietic acid"],["shikimates_and_phenylpropanoids/tropodithietic-acid.yaml","tropodithietic acid"]]},{"id":"NCBITaxon:511145","l":"Escherichia coli str. K-12 substr. MG1655","na":2,"nb":1,"a":[["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["unclassified/enterobactin.yaml","enterobactin"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":2,"nb":1,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["unclassified/antimycin-a1b.yaml","antimycin A1B"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":1,"nb":2,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["amino_acids_and_peptides/aerobactin.yaml","aerobactin"],["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:613","l":"Serratia","na":1,"nb":2,"a":[["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["alkaloids/serratiochelin-b.yaml","serratiochelin B"],["alkaloids/serratiochelin-c.yaml","serratiochelin C"]]},{"id":"NCBITaxon:644","l":"Aeromonas hydrophila","na":2,"nb":1,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["amino_acids_and_peptides/amonabactin-p-750.yaml","amonabactin P 750"]]},{"id":"NCBITaxon:67356","l":"Streptomyces resistomycificus","na":1,"nb":2,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["polyketides/resistoflavine.yaml","resistoflavine"],["polyketides/resistomycin.yaml","resistomycin"]]},{"id":"NCBITaxon:68","l":"Lysobacter","na":1,"nb":2,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["unclassified/lysobactin.yaml","lysobactin"],["unclassified/lysocin-e.yaml","lysocin E"]]},{"id":"NCBITaxon:68264","l":"Streptomyces rishiriensis","na":1,"nb":2,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["shikimates_and_phenylpropanoids/coumermycin-a1.yaml","coumermycin A1"],["unclassified/lactonamycin.yaml","lactonamycin"]]},{"id":"NCBITaxon:80866","l":"Delftia acidovorans","na":1,"nb":2,"a":[["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["amino_acids_and_peptides/delftibactin-a.yaml","delftibactin A"],["amino_acids_and_peptides/delftibactin-b.yaml","delftibactin B"]]},{"id":"CHEBI:134612","l":"staphyloferrin B","na":1,"nb":1,"a":[["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"]]},{"id":"CHEBI:32079","l":"pyrrolnitrin","na":1,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"CHEBI:78688","l":"2,4-diacetylphloroglucinol","na":1,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"]]},{"id":"CHEBI:8653","l":"pyocyanine","na":1,"nb":1,"a":[["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["alkaloids/pyocyanine.yaml","pyocyanine"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":1,"nb":1,"a":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["unclassified/rhodochelin.yaml","rhodochelin"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":1,"nb":1,"a":[["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"]],"b":[["alkaloids/molybdenum-cofactor.yaml","molybdenum cofactor"]]},{"id":"NCBITaxon:1142","l":"Synechocystis","na":1,"nb":1,"a":[["Dairy_Wastewater_Algal_Cyanobacterial_Cultivation_Panel.html","Dairy Wastewater Algal-Cyanobacterial Cultivation Panel"]],"b":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]]},{"id":"NCBITaxon:1165","l":"Anabaena cylindrica","na":1,"nb":1,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["amino_acids_and_peptides/anachelin.yaml","anachelin"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":1,"nb":1,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["amino_acids_and_peptides/salivaricin-d.yaml","salivaricin D"]]},{"id":"NCBITaxon:135461","l":"Bacillus subtilis subsp. subtilis","na":1,"nb":1,"a":[["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["unclassified/fengycin.yaml","fengycin"]]},{"id":"NCBITaxon:1501433","l":"Kamptonema","na":1,"nb":1,"a":[["Microalgae_Cyanobacteria_Bioactive_Peptide_Consortia.html","Microalgae-Cyanobacteria Bioactive Peptide Consortia"]],"b":[["amino_acids_and_peptides/landornamide-a.yaml","landornamide A"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":1,"nb":1,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["amino_acids_and_peptides/cutimycin.yaml","cutimycin"]]},{"id":"NCBITaxon:226","l":"Alteromonas","na":1,"nb":1,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["unclassified/marinostatin.yaml","marinostatin"]]},{"id":"NCBITaxon:2433","l":"Roseobacter","na":1,"nb":1,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["shikimates_and_phenylpropanoids/tropodithietic-acid.yaml","tropodithietic acid"]]},{"id":"NCBITaxon:4097","l":"Nicotiana tabacum","na":1,"nb":1,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"]],"b":[["terpenoids/capsidiol.yaml","capsidiol"]]},{"id":"NCBITaxon:4547","l":"Saccharum officinarum","na":1,"nb":1,"a":[["SynCom_MetG2_Rhizobacteria_Sugarcane_Stress_Resilience.html","SynCom MetG2 Rhizobacteria Sugarcane Stress Resilience"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"]]},{"id":"NCBITaxon:47251","l":"Leptolyngbya","na":1,"nb":1,"a":[["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"]]},{"id":"NCBITaxon:4751","l":"Fungi","na":1,"nb":1,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["shikimates_and_phenylpropanoids/atromentin.yaml","atromentin"]]},{"id":"NCBITaxon:5094","l":"Talaromyces","na":1,"nb":1,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["unclassified/chrodrimanin-b.yaml","chrodrimanin B"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":1,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:61624","l":"Paenibacillus mucilaginosus","na":1,"nb":1,"a":[["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["amino_acids_and_peptides/bacillopaline.yaml","bacillopaline"]]},{"id":"NCBITaxon:648","l":"Aeromonas caviae","na":1,"nb":1,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:67372","l":"Streptomyces variabilis","na":1,"nb":1,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["polyketides/resistomycin.yaml","resistomycin"]]},{"id":"NCBITaxon:68274","l":"Streptomyces tauricus","na":1,"nb":1,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["polyketides/cinerubin-b.yaml","cinerubin B"]]},{"id":"NCBITaxon:86265","l":"Pseudomonas thivervalensis","na":1,"nb":1,"a":[["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"]],"b":[["amino_acids_and_peptides/histicorrugatin.yaml","histicorrugatin"]]},{"id":"NCBITaxon:96241","l":"Bacillus spizizenii","na":1,"nb":1,"a":[["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"]],"b":[["amino_acids_and_peptides/entianin.yaml","entianin"]]},{"id":"NCBITaxon:986","l":"Flavobacterium johnsoniae","na":1,"nb":1,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["polyketides/flexirubin.yaml","flexirubin"]]}]} \ No newline at end of file +{"a":"CommunityMech","b":"NaturalProductMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","NaturalProductMech":"https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/natural_products/"},"n":128,"by":{"NCBITaxon":123,"CHEBI":5},"terms":[{"id":"NCBITaxon:286","l":"Pseudomonas","na":18,"nb":41,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"]],"b":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["alkaloids/tioguanine.yaml","tioguanine"],["amino_acids_and_peptides/napsamycin-c.yaml","napsamycin C"],["amino_acids_and_peptides/napsamycin-d.yaml","napsamycin D"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":16,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["amino_acids_and_peptides/ericin-s.yaml","ericin S"],["amino_acids_and_peptides/iturin.yaml","iturin"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":14,"nb":24,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":11,"nb":13,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["unclassified/bananamide-d.yaml","bananamide D"],["unclassified/bananamide-e.yaml","bananamide E"],["unclassified/bananamide-f.yaml","bananamide F"],["unclassified/bananamide-g.yaml","bananamide G"],["unclassified/lokisin.yaml","lokisin"],["unclassified/pseudodesmin-a.yaml","pseudodesmin A"]]},{"id":"NCBITaxon:1386","l":"Bacillus ","na":16,"nb":9,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bogorol-a.yaml","bogorol A"],["amino_acids_and_peptides/koranimine.yaml","koranimine"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"],["amino_acids_and_peptides/rhizocticin-a.yaml","rhizocticin A"],["polyketides/difficidin.yaml","difficidin"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":9,"nb":12,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:492670","l":"Bacillus velezensis","na":8,"nb":8,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["polyketides/bacillaene.yaml","bacillaene"],["polyketides/difficidin.yaml","difficidin"],["polyketides/macrolactin-h.yaml","macrolactin H"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":6,"nb":116,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["alkaloids/altemicidin.yaml","altemicidin"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"],["alkaloids/aurachin-ss.yaml","aurachin SS"],["alkaloids/berninamycin-j.yaml","berninamycin J"],["alkaloids/berninamycin-k.yaml","berninamycin K"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":6,"nb":27,"a":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["alkaloids/pseudomonine.yaml","pseudomonine"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyreudione-c.yaml","pyreudione C"],["alkaloids/quinolobactin.yaml","quinolobactin"]]},{"id":"NCBITaxon:1883","l":"Streptomyces","na":5,"nb":438,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["Wheat_Consortium_C6.html","Wheat Synthetic Consortium C6"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/7-prenylisatin.yaml","7-prenylisatin"],["alkaloids/9-methylstreptimidone.yaml","9-methylstreptimidone"],["alkaloids/anisomycin.yaml","(−)-anisomycin"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":9,"nb":5,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]],"b":[["alkaloids/promysalin.yaml","promysalin"],["polyketides/pseudopyronine-a.yaml","pseudopyronine A"],["polyketides/pseudopyronine-b.yaml","pseudopyronine B"],["unclassified/putisolvin-iii.yaml","putisolvin III"],["unclassified/putisolvin-v.yaml","putisolvin V"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":7,"nb":4,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["alkaloids/zwittermicin-a.yaml","zwittermicin A"],["amino_acids_and_peptides/livipeptin.yaml","Livipeptin"],["carbohydrates/tunicamycin.yaml","tunicamycin"],["unclassified/cereulide.yaml","cereulide"]]},{"id":"NCBITaxon:32008","l":"Burkholderia","na":4,"nb":6,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["polyketides/necroxime-a.yaml","necroxime A"],["polyketides/necroxime-c.yaml","necroxime C"],["polyketides/necroxime-d.yaml","necroxime D"],["polyketides/thailanstatin-a.yaml","thailanstatin A"],["unclassified/necroxime-b.yaml","necroxime B"],["unclassified/spliceostatin.yaml","spliceostatin"]]},{"id":"NCBITaxon:5052","l":"Aspergillus","na":3,"nb":18,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["alkaloids/psychrophilin-e.yaml","psychrophilin E"],["alkaloids/terrequinone-a.yaml","terrequinone A"],["fatty_acids/himeic-acid-a.yaml","himeic acid A"],["polyketides/asperlin.yaml","(+)-asperlin"],["polyketides/geodin.yaml","geodin"],["polyketides/mycophenolic-acid.yaml","mycophenolic acid"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":3,"nb":11,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["amino_acids_and_peptides/ferrichrome.yaml","ferrichrome"],["polyketides/1-2-3-5-10-tetrahydroxy-7-methoxy-4-oxo-1-2-3-4-tetrahydroanthracen-2-yl-pentane.yaml","1-(2,3,5,10-tetrahydroxy-7-methoxy-4-oxo-1,2,3,4-tetrahydroanthracen-2-yl)pentane-2,4-dione"],["polyketides/azanigerone-a.yaml","azanigerone A"],["polyketides/campyrone-b.yaml","campyrone B"],["polyketides/desmethyl-tan-1612.yaml","desmethyl TAN-1612"],["polyketides/fumonisin-b2.yaml","fumonisin B2"]]},{"id":"NCBITaxon:5544","l":"Trichoderma harzianum","na":5,"nb":3,"a":[["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"],["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"],["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["polyketides/1-2-dehydropenicillide.yaml","1,2-dehydropenicillide"],["polyketides/harziphilone.yaml","harziphilone"],["unclassified/harzianopyridone.yaml","harzianopyridone"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":4,"nb":3,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]],"b":[["unclassified/leuvalin.yaml","leuvalin"],["unclassified/mutanocyclin.yaml","mutanocyclin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":4,"nb":3,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"],["amino_acids_and_peptides/lacticin-z.yaml","lacticin Z"],["amino_acids_and_peptides/nisin-a.yaml","nisin A"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":3,"nb":3,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["amino_acids_and_peptides/polymyxin-b.yaml","polymyxin B"],["amino_acids_and_peptides/polymyxin.yaml","polymyxin"],["unclassified/fusaricidin-b.yaml","fusaricidin B"]]},{"id":"NCBITaxon:5507","l":"Fusarium oxysporum","na":2,"nb":11,"a":[["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["alkaloids/fusaric-acid.yaml","fusaric acid"],["polyketides/bikaverin.yaml","bikaverin"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"],["polyketides/fumonisin-c1.yaml","Fumonisin C1"],["polyketides/fumonisin-c2.yaml","Fumonisin C2"],["polyketides/fumonisin-c3.yaml","Fumonisin C3"]]},{"id":"NCBITaxon:3702","l":"Arabidopsis thaliana","na":2,"nb":10,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/itaconic-acid.yaml","itaconic acid"],["terpenoids/ent-quiannulatene.yaml","(-)-ent-quiannulatene"],["terpenoids/euphol.yaml","euphol"],["terpenoids/marneral.yaml","marneral"],["terpenoids/thaliandiol.yaml","thaliandiol"]]},{"id":"NCBITaxon:4577","l":"Zea mays","na":2,"nb":6,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"]],"b":[["alkaloids/dimboa.yaml","DIMBOA"],["polyketides/emodin.yaml","emodin"],["terpenoids/zealexin-a1.yaml","zealexin A1"],["terpenoids/zealexin-b3.yaml","zealexin B3"],["terpenoids/zealexin-c2.yaml","zealexin C2"],["unclassified/aflatoxin.yaml","aflatoxin"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":5,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"],["unclassified/leuvalin.yaml","leuvalin"],["unclassified/phevalin.yaml","phevalin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:1521","l":"Ruminiclostridium cellulolyticum","na":4,"nb":2,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["alkaloids/closthioamide.yaml","closthioamide"],["amino_acids_and_peptides/rc-aip1.yaml","Rc-AIP1"]]},{"id":"NCBITaxon:1889","l":"Streptomyces ambofaciens","na":2,"nb":4,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["alkaloids/congocidine.yaml","congocidine"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["polyketides/spiramycin.yaml","spiramycin"],["polyketides/stambomycin-a.yaml","stambomycin A"]]},{"id":"NCBITaxon:32049","l":"Picosynechococcus sp. PCC 7002","na":2,"nb":4,"a":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"]],"b":[["alkaloids/synechobactin-a.yaml","synechobactin A"],["alkaloids/synechobactin-b.yaml","synechobactin B"],["alkaloids/synechobactin-c.yaml","synechobactin C"],["fatty_acids/nonadec-1-ene.yaml","nonadec-1-ene"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":3,"nb":2,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"],["carbohydrates/oxetanocin-a.yaml","oxetanocin A"]]},{"id":"NCBITaxon:149698","l":"Massilia","na":3,"nb":2,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]],"b":[["unclassified/empedopeptin.yaml","empedopeptin"],["unclassified/massiliachelin.yaml","Massiliachelin"]]},{"id":"NCBITaxon:379","l":"Rhizobium","na":3,"nb":2,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["alkaloids/sesbanimide-c.yaml","sesbanimide C"],["amino_acids_and_peptides/syringolin-a-2.yaml","syringolin A"]]},{"id":"NCBITaxon:44249","l":"Paenibacillus","na":3,"nb":2,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["alkaloids/paenilamicin.yaml","paenilamicin"],["unclassified/paenibacterin.yaml","paenibacterin"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":3,"nb":2,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["terpenoids/mk-8.yaml","MK-8"]]},{"id":"NCBITaxon:55080","l":"Brevibacillus","na":3,"nb":2,"a":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"]],"b":[["alkaloids/ulbactin-f.yaml","ulbactin F"],["alkaloids/ulbactin-g.yaml","ulbactin G"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":2,"nb":2,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]],"b":[["alkaloids/biotin.yaml","biotin"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":2,"nb":2,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["unclassified/andalusicin-a.yaml","andalusicin A"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":2,"nb":2,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["alkaloids/agrobactin.yaml","agrobactin"],["amino_acids_and_peptides/aztreonam.yaml","aztreonam"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":2,"nb":2,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["alkaloids/acinetobactin.yaml","acinetobactin"],["amino_acids_and_peptides/fimsbactin-a.yaml","fimsbactin A"]]},{"id":"NCBITaxon:1873","l":"Micromonospora","na":1,"nb":49,"a":[["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"]],"b":[["alkaloids/diazaquinomycin-h.yaml","diazaquinomycin H"],["alkaloids/diazaquinomycin-j.yaml","diazaquinomycin J"],["alkaloids/diazepinomicin.yaml","diazepinomicin"],["alkaloids/microansamycin-i.yaml","microansamycin I"],["alkaloids/staurosporine.yaml","staurosporine"],["alkaloids/streptonigrin.yaml","streptonigrin"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":1,"nb":30,"a":[["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["amino_acids_and_peptides/ditryptophenaline.yaml","(-)-ditryptophenaline"],["amino_acids_and_peptides/imizoquin-a.yaml","imizoquin A"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":1,"nb":23,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/melanin.yaml","melanin"],["alkaloids/undecylprodigiosin.yaml","undecylprodigiosin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/sapb.yaml","SapB"]]},{"id":"NCBITaxon:5073","l":"Penicillium","na":1,"nb":20,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["alkaloids/citridone-a.yaml","citridone A"],["alkaloids/citridone-b-2.yaml","citridone B'"],["alkaloids/citridone-b.yaml","citridone B"],["alkaloids/communesin-b.yaml","communesin B"],["alkaloids/communesin-c.yaml","communesin C"],["alkaloids/communesin-d.yaml","communesin D"]]},{"id":"NCBITaxon:69488","l":"Penicillium simplicissimum","na":1,"nb":14,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"]],"b":[["polyketides/citreoviridin.yaml","citreoviridin"],["unclassified/andrastin-a.yaml","andrastin A"],["unclassified/okaramine-b.yaml","okaramine B"],["unclassified/okaramine-d.yaml","okaramine D"],["unclassified/paraherquamide.yaml","paraherquamide"],["unclassified/paraherquonin.yaml","paraherquonin"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":1,"nb":13,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/congocidine.yaml","congocidine"],["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]]},{"id":"NCBITaxon:1163","l":"Anabaena","na":1,"nb":11,"a":[["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"]],"b":[["alkaloids/anatoxin-a.yaml","anatoxin-a"],["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"],["alkaloids/saxitoxin.yaml","saxitoxin"],["alkaloids/schizokinen.yaml","schizokinen"],["amino_acids_and_peptides/anabaenopeptin.yaml","anabaenopeptin"],["amino_acids_and_peptides/anacyclamide-a10.yaml","anacyclamide A10"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":1,"nb":10,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["amino_acids_and_peptides/lipopeptide-8d1-1.yaml","lipopeptide 8D1-1"],["amino_acids_and_peptides/lipopeptide-8d1-2.yaml","lipopeptide 8D1-2"],["carbohydrates/amicetin.yaml","amicetin"],["carbohydrates/streptothricin-c.yaml","streptothricin C"],["carbohydrates/streptothricin-d.yaml","streptothricin D"],["carbohydrates/streptothricin-e.yaml","streptothricin E"]]},{"id":"NCBITaxon:1988","l":"Actinomadura","na":1,"nb":9,"a":[["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"]],"b":[["alkaloids/k-252a.yaml","K-252a"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["carbohydrates/2-chloropentostatin.yaml","2'-chloropentostatin"],["polyketides/actinospirol-a.yaml","actinospirol A"],["polyketides/actinospirol-b.yaml","actinospirol B"],["polyketides/maduralactomycin-a.yaml","maduralactomycin A"]]},{"id":"NCBITaxon:117187","l":"Fusarium verticillioides","na":1,"nb":8,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]],"b":[["alkaloids/dihydrofusarin-c.yaml","dihydrofusarin C"],["alkaloids/epi-fusarin-c.yaml","epi-fusarin C"],["alkaloids/fusaric-acid.yaml","fusaric acid"],["alkaloids/fusarin-c.yaml","fusarin C"],["alkaloids/fusarin-d.yaml","fusarin D"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"]]},{"id":"NCBITaxon:1827","l":"Rhodococcus ","na":8,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]],"b":[["alkaloids/corynecin-iii.yaml","corynecin III"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":8,"nb":1,"a":[["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"],["Sedimenting_Arabinose_Glucose_Saccharomyces_Coculture.html","Sedimenting Arabinose-Glucose Saccharomyces Coculture"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":1,"nb":8,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["amino_acids_and_peptides/ferrichrome-2.yaml","ferrichrome"],["polyketides/2-acetyl-1-3-6-8-tetrahydroxynaphthalene.yaml","2-acetyl-1,3,6,8-tetrahydroxynaphthalene"],["polyketides/kojic-acid.yaml","kojic acid"],["terpenoids/aphidicolin.yaml","aphidicolin"],["unclassified/2-oxocyclopiazonic-acid.yaml","2-oxocyclopiazonic acid"],["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"NCBITaxon:1269","l":"Micrococcus","na":1,"nb":6,"a":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["alkaloids/limazepine-a.yaml","limazepine A"],["alkaloids/limazepine-c.yaml","limazepine C"],["alkaloids/limazepine-d.yaml","limazepine D"],["alkaloids/limazepine-e.yaml","limazepine E"],["alkaloids/limazepine-f.yaml","limazepine F"],["terpenoids/mk-8.yaml","MK-8"]]},{"id":"NCBITaxon:1920","l":"Streptomyces nigrescens","na":1,"nb":6,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["alkaloids/5athq-10a.yaml","5aTHQ-10a"],["alkaloids/5athq-9i.yaml","5aTHQ-9i"],["alkaloids/5athq-9n.yaml","5aTHQ-9n"],["alkaloids/stams-9i.yaml","STAMs-9i"],["alkaloids/stams-9n.yaml","STAMs-9n"],["polyketides/phoslactomycin-b.yaml","phoslactomycin B"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":1,"nb":5,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["alkaloids/aminochelin.yaml","aminochelin"],["alkaloids/azotochelin.yaml","azotochelin"],["alkaloids/protochelin.yaml","protochelin"],["amino_acids_and_peptides/azotobactin-d.yaml","azotobactin D"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":1,"nb":5,"a":[["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/andrimid.yaml","andrimid"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/pantocin-a.yaml","pantocin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:101028","l":"Fusarium pseudograminearum","na":1,"nb":4,"a":[["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["alkaloids/8-oxo-fusatin.yaml","8-oxo-fusatin"],["alkaloids/8-oxo-isopentenyladenine.yaml","8-oxo-isopentenyladenine"],["alkaloids/fusatin.yaml","fusatin"],["alkaloids/fusatinic-acid.yaml","fusatinic acid"]]},{"id":"NCBITaxon:1179","l":"Desmonostoc muscorum","na":1,"nb":4,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["amino_acids_and_peptides/muscoride-a.yaml","muscoride A"],["unclassified/desmamide-a.yaml","desmamide A"],["unclassified/desmamide-b.yaml","desmamide B"],["unclassified/desmamide-c.yaml","desmamide C"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":4,"nb":1,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"],["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":4,"nb":1,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["amino_acids_and_peptides/bacitracin.yaml","bacitracin"]]},{"id":"NCBITaxon:237","l":"Flavobacterium","na":4,"nb":1,"a":[["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"]]},{"id":"NCBITaxon:2745","l":"Halomonas","na":1,"nb":4,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["amino_acids_and_peptides/potashchelin-a.yaml","potashchelin A"],["amino_acids_and_peptides/potashchelin-b.yaml","potashchelin B"],["amino_acids_and_peptides/potashchelin-c.yaml","potashchelin C"],["amino_acids_and_peptides/potashchelin-d.yaml","potashchelin D"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":1,"nb":4,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["unclassified/vacidobactin-a.yaml","vacidobactin A"],["unclassified/vacidobactin-b.yaml","vacidobactin B"],["unclassified/variobactin-a.yaml","variobactin A"],["unclassified/variobactin-b.yaml","variobactin B"]]},{"id":"NCBITaxon:414878","l":"Catenulispora","na":1,"nb":4,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"]],"b":[["polyketides/catenulisporolide-a.yaml","catenulisporolide A"],["polyketides/catenulisporolide-b.yaml","catenulisporolide B"],["polyketides/catenulisporolide-c.yaml","catenulisporolide C"],["polyketides/catenulisporolide-d.yaml","catenulisporolide D"]]},{"id":"NCBITaxon:6239","l":"Caenorhabditis elegans","na":1,"nb":4,"a":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"]],"b":[["alkaloids/biotin.yaml","biotin"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/itaconic-acid.yaml","itaconic acid"],["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":4,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["fatty_acids/galactosylceramide.yaml","α-galactosylceramide"]]},{"id":"CHEBI:15956","l":"biotin","na":3,"nb":1,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"NCBITaxon:1125","l":"Microcystis","na":1,"nb":3,"a":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"]],"b":[["amino_acids_and_peptides/microcystin-lr.yaml","microcystin-LR"],["amino_acids_and_peptides/piricyclamide-7005e1.yaml","piricyclamide 7005E1"],["unclassified/cyanopeptolin.yaml","cyanopeptolin"]]},{"id":"NCBITaxon:1129","l":"Synechococcus","na":1,"nb":3,"a":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]],"b":[["alkaloids/synechobactin-a.yaml","synechobactin A"],["alkaloids/synechobactin-b.yaml","synechobactin B"],["alkaloids/synechobactin-c.yaml","synechobactin C"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":1,"nb":3,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["amino_acids_and_peptides/epidermin.yaml","epidermin"],["amino_acids_and_peptides/epilancin-15x.yaml","epilancin 15x"],["amino_acids_and_peptides/pep5.yaml","pep5"]]},{"id":"NCBITaxon:22","l":"Shewanella","na":3,"nb":1,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Shewanella_Denitrifying_Richness_SynComs.html","Shewanella Denitrifying Richness SynComs"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"NCBITaxon:222","l":"Achromobacter","na":3,"nb":1,"a":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":1,"nb":3,"a":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"]],"b":[["alkaloids/cepaciachelin.yaml","cepaciachelin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["terpenoids/hopene.yaml","hopene"]]},{"id":"NCBITaxon:29442","l":"Pseudomonas tolaasii","na":1,"nb":3,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["unclassified/tolaasin-a.yaml","tolaasin A"],["unclassified/tolaasin-f.yaml","tolaasin F"],["unclassified/tolaasin-i.yaml","tolaasin I"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":3,"nb":1,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"NCBITaxon:34305","l":"Lotus japonicus","na":1,"nb":3,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["amino_acids_and_peptides/linamarin.yaml","linamarin"],["amino_acids_and_peptides/lotaustralin.yaml","lotaustralin"],["terpenoids/lupeol.yaml","lupeol"]]},{"id":"NCBITaxon:380021","l":"Pseudomonas protegens","na":1,"nb":3,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"],["unclassified/pf-5-pyoverdine.yaml","Pf-5 pyoverdine"]]},{"id":"NCBITaxon:3847","l":"Glycine max","na":1,"nb":3,"a":[["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["alkaloids/biotin.yaml","biotin"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]]},{"id":"NCBITaxon:4081","l":"Solanum lycopersicum","na":1,"nb":3,"a":[["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["fatty_acids/falcarindiol.yaml","falcarindiol"],["terpenoids/lycosantalonol.yaml","lycosantalonol"],["terpenoids/phellandrene.yaml","β-phellandrene"]]},{"id":"NCBITaxon:4530","l":"Oryza sativa","na":1,"nb":3,"a":[["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/nonadec-1-ene.yaml","nonadec-1-ene"],["terpenoids/phytocassane.yaml","phytocassane"]]},{"id":"NCBITaxon:547","l":"Enterobacter","na":3,"nb":1,"a":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["amino_acids_and_peptides/andrimid.yaml","andrimid"]]},{"id":"NCBITaxon:587753","l":"Pseudomonas chlororaphis","na":3,"nb":1,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"NCBITaxon:68239","l":"Streptomyces mirabilis strain P8-A","na":1,"nb":3,"a":[["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["alkaloids/azodyrecin-a.yaml","Azodyrecin A"],["alkaloids/azodyrecin-b.yaml","Azodyrecin B"],["alkaloids/azodyrecin-c.yaml","Azodyrecin C"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":1,"nb":3,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"],["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"],["unclassified/telomestatin.yaml","telomestatin"]]},{"id":"NCBITaxon:1091494","l":"Methylotuvimicrobium alcaliphilum 20Z","na":2,"nb":1,"a":[["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:132919","l":"Rhodococcus jostii","na":1,"nb":2,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["amino_acids_and_peptides/lariatin.yaml","lariatin"],["unclassified/rhodochelin.yaml","rhodochelin"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":2,"nb":1,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]]},{"id":"NCBITaxon:1663","l":"Arthrobacter","na":2,"nb":1,"a":[["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["unclassified/ws9326a.yaml","WS9326A"]]},{"id":"NCBITaxon:1696","l":"Brevibacterium","na":2,"nb":1,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["alkaloids/1-6-phenazinedimethanol.yaml","1,6-phenazinedimethanol"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":2,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":2,"nb":1,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"]],"b":[["alkaloids/parabactin.yaml","parabactin"]]},{"id":"NCBITaxon:269797","l":"Methanosarcina barkeri str. Fusaro","na":2,"nb":1,"a":[["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["alkaloids/coenzyme-f430.yaml","coenzyme F430"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":2,"nb":1,"a":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:29305","l":"Streptomyces griseoincarnatus","na":1,"nb":2,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["polyketides/grincamycin.yaml","grincamycin"],["polyketides/resistomycin.yaml","resistomycin"]]},{"id":"NCBITaxon:391619","l":"Phaeobacter inhibens DSM 17395","na":1,"nb":2,"a":[["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"]],"b":[["shikimates_and_phenylpropanoids/hydroxytropodithietic-acid.yaml","hydroxytropodithietic acid"],["shikimates_and_phenylpropanoids/tropodithietic-acid.yaml","tropodithietic acid"]]},{"id":"NCBITaxon:511145","l":"Escherichia coli str. K-12 substr. MG1655","na":2,"nb":1,"a":[["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["unclassified/enterobactin.yaml","enterobactin"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":2,"nb":1,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["unclassified/antimycin-a1b.yaml","antimycin A1B"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":1,"nb":2,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["amino_acids_and_peptides/aerobactin.yaml","aerobactin"],["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:613","l":"Serratia","na":1,"nb":2,"a":[["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["alkaloids/serratiochelin-b.yaml","serratiochelin B"],["alkaloids/serratiochelin-c.yaml","serratiochelin C"]]},{"id":"NCBITaxon:644","l":"Aeromonas hydrophila","na":2,"nb":1,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["amino_acids_and_peptides/amonabactin-p-750.yaml","amonabactin P 750"]]},{"id":"NCBITaxon:67356","l":"Streptomyces resistomycificus","na":1,"nb":2,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["polyketides/resistoflavine.yaml","resistoflavine"],["polyketides/resistomycin.yaml","resistomycin"]]},{"id":"NCBITaxon:68","l":"Lysobacter","na":1,"nb":2,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["unclassified/lysobactin.yaml","lysobactin"],["unclassified/lysocin-e.yaml","lysocin E"]]},{"id":"NCBITaxon:68264","l":"Streptomyces rishiriensis","na":1,"nb":2,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["shikimates_and_phenylpropanoids/coumermycin-a1.yaml","coumermycin A1"],["unclassified/lactonamycin.yaml","lactonamycin"]]},{"id":"NCBITaxon:80866","l":"Delftia acidovorans","na":1,"nb":2,"a":[["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["amino_acids_and_peptides/delftibactin-a.yaml","delftibactin A"],["amino_acids_and_peptides/delftibactin-b.yaml","delftibactin B"]]},{"id":"CHEBI:134612","l":"staphyloferrin B","na":1,"nb":1,"a":[["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"]]},{"id":"CHEBI:32079","l":"pyrrolnitrin","na":1,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"CHEBI:78688","l":"2,4-diacetylphloroglucinol","na":1,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"]]},{"id":"CHEBI:8653","l":"pyocyanine","na":1,"nb":1,"a":[["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["alkaloids/pyocyanine.yaml","pyocyanine"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":1,"nb":1,"a":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["unclassified/rhodochelin.yaml","rhodochelin"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":1,"nb":1,"a":[["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"]],"b":[["alkaloids/molybdenum-cofactor.yaml","molybdenum cofactor"]]},{"id":"NCBITaxon:1142","l":"Synechocystis","na":1,"nb":1,"a":[["Dairy_Wastewater_Algal_Cyanobacterial_Cultivation_Panel.html","Dairy Wastewater Algal-Cyanobacterial Cultivation Panel"]],"b":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]]},{"id":"NCBITaxon:1165","l":"Anabaena cylindrica","na":1,"nb":1,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["amino_acids_and_peptides/anachelin.yaml","anachelin"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":1,"nb":1,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["amino_acids_and_peptides/salivaricin-d.yaml","salivaricin D"]]},{"id":"NCBITaxon:135461","l":"Bacillus subtilis subsp. subtilis","na":1,"nb":1,"a":[["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["unclassified/fengycin.yaml","fengycin"]]},{"id":"NCBITaxon:1501433","l":"Kamptonema","na":1,"nb":1,"a":[["Microalgae_Cyanobacteria_Bioactive_Peptide_Consortia.html","Microalgae-Cyanobacteria Bioactive Peptide Consortia"]],"b":[["amino_acids_and_peptides/landornamide-a.yaml","landornamide A"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":1,"nb":1,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["amino_acids_and_peptides/cutimycin.yaml","cutimycin"]]},{"id":"NCBITaxon:226","l":"Alteromonas","na":1,"nb":1,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["unclassified/marinostatin.yaml","marinostatin"]]},{"id":"NCBITaxon:2433","l":"Roseobacter","na":1,"nb":1,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["shikimates_and_phenylpropanoids/tropodithietic-acid.yaml","tropodithietic acid"]]},{"id":"NCBITaxon:4097","l":"Nicotiana tabacum","na":1,"nb":1,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"]],"b":[["terpenoids/capsidiol.yaml","capsidiol"]]},{"id":"NCBITaxon:4547","l":"Saccharum officinarum","na":1,"nb":1,"a":[["SynCom_MetG2_Rhizobacteria_Sugarcane_Stress_Resilience.html","SynCom MetG2 Rhizobacteria Sugarcane Stress Resilience"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"]]},{"id":"NCBITaxon:47251","l":"Leptolyngbya","na":1,"nb":1,"a":[["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"]]},{"id":"NCBITaxon:4751","l":"Fungi","na":1,"nb":1,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["shikimates_and_phenylpropanoids/atromentin.yaml","atromentin"]]},{"id":"NCBITaxon:5094","l":"Talaromyces","na":1,"nb":1,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["unclassified/chrodrimanin-b.yaml","chrodrimanin B"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":1,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:61624","l":"Paenibacillus mucilaginosus","na":1,"nb":1,"a":[["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["amino_acids_and_peptides/bacillopaline.yaml","bacillopaline"]]},{"id":"NCBITaxon:648","l":"Aeromonas caviae","na":1,"nb":1,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:67372","l":"Streptomyces variabilis","na":1,"nb":1,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["polyketides/resistomycin.yaml","resistomycin"]]},{"id":"NCBITaxon:68274","l":"Streptomyces tauricus","na":1,"nb":1,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["polyketides/cinerubin-b.yaml","cinerubin B"]]},{"id":"NCBITaxon:86265","l":"Pseudomonas thivervalensis","na":1,"nb":1,"a":[["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"]],"b":[["amino_acids_and_peptides/histicorrugatin.yaml","histicorrugatin"]]},{"id":"NCBITaxon:96241","l":"Bacillus spizizenii","na":1,"nb":1,"a":[["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"]],"b":[["amino_acids_and_peptides/entianin.yaml","entianin"]]},{"id":"NCBITaxon:986","l":"Flavobacterium johnsoniae","na":1,"nb":1,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["polyketides/flexirubin.yaml","flexirubin"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/CommunityMech--ProteinTraitsMech.json b/assets/fleet/edges/CommunityMech--ProteinTraitsMech.json index 1b4be49..dee2124 100644 --- a/assets/fleet/edges/CommunityMech--ProteinTraitsMech.json +++ b/assets/fleet/edges/CommunityMech--ProteinTraitsMech.json @@ -1 +1 @@ -{"a":"CommunityMech","b":"ProteinTraitsMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record="},"n":698,"by":{"CHEBI":280,"NCBITaxon":227,"GO":190,"UBERON":1},"terms":[{"id":"CHEBI:30089","l":"acetate","na":78,"nb":302,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"]],"b":[["EC%3A1.1.1.318","eugenol synthase"],["EC%3A1.1.1.319","isoeugenol synthase"],["EC%3A1.13.11.50","acetylacetone-cleaving enzyme"],["EC%3A1.13.12.4","lactate 2-monooxygenase"],["EC%3A1.14.13.54","ketosteroid monooxygenase"],["EC%3A1.14.14.19","steroid 17alpha-monooxygenase"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":75,"nb":1616,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]],"b":[["EC%3A1.1.1.170","3beta-hydroxysteroid-4alpha-carboxylate 3-dehydrogenase (decarboxylating)"],["EC%3A1.1.1.262","4-hydroxythreonine-4-phosphate dehydrogenase"],["EC%3A1.1.1.276","serine 3-dehydrogenase (NADP(+))"],["EC%3A1.1.1.286","isocitrate--homoisocitrate dehydrogenase"],["EC%3A1.1.1.305","UDP-glucuronic acid oxidase (UDP-4-keto-hexauronic acid decarboxylating)"],["EC%3A1.1.1.343","phosphogluconate dehydrogenase (NAD(+)-dependent, decarboxylating)"]]},{"id":"GO:0015979","l":"photosynthesis","na":44,"nb":146,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["GO%3A0015979","photosynthesis"],["NCBIfam%3ATIGR01337","allophycocyanin subunit beta"],["NCBIfam%3ATIGR03056","alpha/beta fold hydrolase BchO"],["NCBIfam%3ANF013497","Apocytochrome F, C-terminal"],["NCBIfam%3ANF014391","Bacteriochlorophyll A protein"],["NCBIfam%3ANF058502","C-phycocyanin alpha-cysteine-84 phycocyanobilin lyase subunit CpcE"]]},{"id":"GO:0015948","l":"methanogenesis","na":44,"nb":82,"a":[["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"]],"b":[["GO%3A0019385","methanogenesis, from acetate"],["GO%3A0019386","methanogenesis, from carbon dioxide"],["GO%3A0019387","methanogenesis, from methanol"],["GO%3A0015948","methanogenesis"],["proteintraitsmech%3ASEED_SUBSYSTEM_Methanogenesis","Methanogenesis"],["NCBIfam%3ATIGR03957","5,10-methenyltetrahydromethanopterin hydrogenase cofactor biosynthesis protein HmdB"]]},{"id":"CHEBI:18276","l":"dihydrogen","na":58,"nb":42,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"]],"b":[["EC%3A1.12.1.2","hydrogen dehydrogenase"],["EC%3A1.12.1.3","hydrogen dehydrogenase (NADP(+))"],["EC%3A1.12.1.4","hydrogenase (NAD(+), ferredoxin)"],["EC%3A1.12.1.5","hydrogen dehydrogenase [NAD(P)(+)]"],["EC%3A1.12.2.1","cytochrome-c3 hydrogenase"],["EC%3A1.12.5.1","hydrogen:quinone oxidoreductase"]]},{"id":"GO:0015977","l":"carbon fixation","na":33,"nb":30,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["GO%3A0009760","C4 photosynthesis"],["GO%3A0009761","CAM photosynthesis"],["GO%3A0043427","carbon fixation by 3-hydroxypropionate cycle"],["GO%3A0030634","carbon fixation by acetyl-CoA pathway"],["GO%3A0015977","carbon fixation"],["GO%3A0019643","reductive tricarboxylic acid cycle"]]},{"id":"CHEBI:17632","l":"nitrate","na":28,"nb":40,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["EC%3A1.14.12.17","nitric oxide dioxygenase"],["EC%3A1.7.1.1","nitrate reductase (NADH)"],["EC%3A1.7.1.2","nitrate reductase [NAD(P)H]"],["EC%3A1.7.1.3","nitrate reductase (NADPH)"],["EC%3A1.7.5.1","nitrate reductase (quinone)"],["EC%3A1.7.6.1","nitrite dismutase"]]},{"id":"CHEBI:15379","l":"dioxygen","na":26,"nb":3896,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["EC%3A1.1.3.10","pyranose oxidase"],["EC%3A1.1.3.11","L-sorbose oxidase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.3.13","alcohol oxidase"],["EC%3A1.1.3.14","catechol oxidase (dimerizing)"],["EC%3A1.1.3.15","(S)-2-hydroxy-acid oxidase"]]},{"id":"CHEBI:16189","l":"sulfate","na":25,"nb":133,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16189","requires sulfate"],["EC%3A1.14.11.77","alkyl sulfatase"],["EC%3A1.8.2.1","sulfite dehydrogenase (cytochrome)"],["EC%3A1.8.3.1","sulfite oxidase"],["EC%3A1.8.5.6","sulfite dehydrogenase (quinone)"],["EC%3A2.7.7.4","sulfate adenylyltransferase"]]},{"id":"CHEBI:16236","l":"ethanol","na":25,"nb":31,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.5.5","alcohol dehydrogenase (quinone)"],["EC%3A1.1.99.36","alcohol dehydrogenase (nicotinoprotein)"],["EC%3A2.3.1.268","ethanol O-acetyltransferase"],["EC%3A3.1.1.113","ethyl acetate hydrolase"],["EC%3A3.1.1.67","fatty-acyl-ethyl-ester synthase"]]},{"id":"GO:0009399","l":"nitrogen fixation","na":24,"nb":36,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"]],"b":[["GO%3A0009399","nitrogen fixation"],["proteintraitsmech%3ASEED_SUBSYSTEM_Nitrogen_fixation","Nitrogen fixation"],["NCBIfam%3ATIGR02662","ADP-ribosyl-[dinitrogen reductase] hydrolase"],["NCBIfam%3ATIGR02931","Fe-only nitrogenase subunit beta"],["NCBIfam%3ATIGR02929","Fe-only nitrogenase subunit delta"],["NCBIfam%3ATIGR02000","Fe-S cluster assembly protein NifU"]]},{"id":"CHEBI:15740","l":"formate","na":23,"nb":173,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"]],"b":[["EC%3A1.1.98.6","ribonucleoside-triphosphate reductase (formate)"],["EC%3A1.10.3.15","grixazone synthase"],["EC%3A1.13.11.41","2,4'-dihydroxyacetophenone dioxygenase"],["EC%3A1.13.11.53","acireductone dioxygenase (Ni(2+)-requiring)"],["EC%3A1.13.11.54","acireductone dioxygenase (Fe(2+)-requiring)"],["EC%3A1.13.11.72","2-hydroxyethylphosphonate dioxygenase"]]},{"id":"CHEBI:24996","l":"lactate","na":22,"nb":23,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["EC%3A1.1.1.436","lactate dehydrogenase (NAD(+),ferredoxin)"],["EC%3A3.5.1.124","protein deglycase"],["RHEA%3A57300","an N(2)-(1-hydroxy-2-oxopropyl)-2'-deoxyguanosine in DNA + H2O = a 2'-deoxyguanosine in DNA + lactate + H(+)"],["RHEA%3A57288","an N(2)-(1-hydroxy-2-oxopropyl)-guanosine in RNA + H2O = a guanosine in RNA + lactate + H(+)"],["RHEA%3A46964","lactate + 2 reduced [2Fe-2S]-[ferredoxin] + 2 NAD(+) = 2 oxidized [2Fe-2S]-[ferredoxin] + pyruvate + 2 NADH"],["RHEA%3A57244","N(2)-(1-hydroxy-2-oxopropyl)-dGTP + H2O = lactate + dGTP + H(+)"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":21,"nb":396,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29033","requires iron(2+)"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.11","glucoside 3-dehydrogenase (cytochrome c)"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.2.3","L-lactate dehydrogenase (cytochrome)"],["EC%3A1.1.2.4","D-lactate dehydrogenase (cytochrome)"]]},{"id":"CHEBI:29034","l":"iron(3+)","na":21,"nb":376,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29034","requires iron(3+)"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.11","glucoside 3-dehydrogenase (cytochrome c)"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.2.3","L-lactate dehydrogenase (cytochrome)"],["EC%3A1.1.2.4","D-lactate dehydrogenase (cytochrome)"]]},{"id":"CHEBI:28938","l":"ammonium","na":19,"nb":837,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_28938","requires ammonium"],["EC%3A1.13.12.15","3,4-dihydroxyphenylalanine oxidative deaminase"],["EC%3A1.13.99.3","tryptophan 2'-dioxygenase"],["EC%3A1.14.11.37","kanamycin B dioxygenase"],["EC%3A1.14.12.1","anthranilate 1,2-dioxygenase (deaminating, decarboxylating)"],["EC%3A1.14.12.14","2-aminobenzenesulfonate 2,3-dioxygenase"]]},{"id":"CHEBI:17968","l":"butyrate","na":19,"nb":33,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"]],"b":[["EC%3A1.3.1.31","2-enoate reductase"],["EC%3A2.3.1.315","succinyl-CoA:cyclohexane-1-carboxylate CoA transferase"],["EC%3A2.7.2.7","butyrate kinase"],["EC%3A2.8.3.9","butyrate--acetoacetate CoA-transferase"],["EC%3A3.1.1.51","phorbol-diester hydrolase"],["EC%3A3.7.1.7","beta-diketone hydrolase"]]},{"id":"GO:0044419","l":"biological process involved in interspecies interaction between organisms","na":148,"nb":18,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]],"b":[["GO%3A0044419","biological process involved in interspecies interaction between organisms"],["GO%3A0044403","biological process involved in symbiotic interaction"],["GO%3A0141060","disruption of anatomical structure in another organism"],["GO%3A0044111","formation of structure involved in a symbiotic process"],["GO%3A0140106","hematophagy"],["GO%3A0035821","modulation of process of another organism"]]},{"id":"GO:0030245","l":"cellulose catabolic process","na":30,"nb":18,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"]],"b":[["GO%3A1990488","anaerobic cellulose catabolic process"],["GO%3A0030245","cellulose catabolic process"],["GO%3A0052785","cellulose catabolism by endo-processive cellulases"],["NCBIfam%3ANF049990","cellulose 1,4-beta-cellobiosidase"],["NCBIfam%3ANF041611","exoglucanase CbhB"],["NCBIfam%3ATIGR03356","GH1 family beta-glucosidase"]]},{"id":"CHEBI:16301","l":"nitrite","na":17,"nb":116,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["EC%3A1.13.11.64","5-nitrosalicylate dioxygenase"],["EC%3A1.13.12.16","nitronate monooxygenase"],["EC%3A1.14.12.23","nitroarene dioxygenase"],["EC%3A1.14.12.24","2,4-dinitrotoluene dioxygenase"],["EC%3A1.14.13.166","4-nitrocatechol 4-monooxygenase"],["EC%3A1.14.13.167","4-nitrophenol 4-monooxygenase"]]},{"id":"GO:0006805","l":"xenobiotic metabolic process","na":17,"nb":38,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"]],"b":[["GO%3A0018872","arsonoacetate metabolic process"],["GO%3A0018890","cyanamide metabolic process"],["GO%3A0018892","cyclohexylsulfamate metabolic process"],["GO%3A0018905","dimethyl ether metabolic process"],["GO%3A0018909","dodecyl sulfate metabolic process"],["GO%3A0042197","halogenated hydrocarbon metabolic process"]]},{"id":"GO:0006826","l":"iron ion transport","na":17,"nb":26,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"]],"b":[["GO%3A1901678","iron coordination entity transport"],["GO%3A0033212","iron import into cell"],["GO%3A0034755","iron ion transmembrane transport"],["GO%3A0006826","iron ion transport"],["GO%3A0033571","lactoferrin transport"],["GO%3A0033572","transferrin transport"]]},{"id":"GO:0005975","l":"carbohydrate metabolic process","na":15,"nb":401,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"]],"b":[["GO%3A0016051","carbohydrate biosynthetic process"],["GO%3A0016052","carbohydrate catabolic process"],["GO%3A0005975","carbohydrate metabolic process"],["GO%3A0046835","carbohydrate phosphorylation"],["GO%3A0042836","D-glucarate metabolic process"],["GO%3A0019521","D-gluconate metabolic process"]]},{"id":"GO:0022900","l":"electron transport chain","na":15,"nb":50,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"]],"b":[["GO%3A0022900","electron transport chain"],["GO%3A0140647","P450-containing electron transport chain"],["GO%3A0009767","photosynthetic electron transport chain"],["GO%3A0022904","respiratory electron transport chain"],["NCBIfam%3ANF058577","4Fe-4S ferredoxin"],["NCBIfam%3ANF042982","8-methylmenaquinol:fumarate reductase flavoprotein subunit"]]},{"id":"CHEBI:17992","l":"sucrose","na":15,"nb":49,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"]],"b":[["EC%3A1.1.99.13","glucoside 3-dehydrogenase (acceptor)"],["EC%3A2.4.1.10","levansucrase"],["EC%3A2.4.1.125","sucrose--1,6-alpha-glucan 3(6)-alpha-glucosyltransferase"],["EC%3A2.4.1.13","sucrose synthase"],["EC%3A2.4.1.166","raffinose--raffinose alpha-galactosyltransferase"],["EC%3A2.4.1.167","sucrose 6(F)-alpha-galactosyltransferase"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":15,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["Pfam%3APF14562","Restriction endonuclease BglI"],["Pfam%3APF09195","Restriction endonuclease BglII/BglIII"],["Pfam%3APF09208","Restriction endonuclease MspI"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":14,"nb":145,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]],"b":[["IDPO%3A0000033","flexible linker"],["IDPO%3A0000014","order to disorder"],["IDPO%3A0000004","pre-molten globule"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"]]},{"id":"GO:0006113","l":"fermentation","na":43,"nb":14,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"]],"b":[["ComplexPortal%3ACPX-281","Hydrogenase-1 complex"],["GO%3A0030645","acetyl-CoA fermentation to butanoate"],["GO%3A0019665","amino acid fermentation"],["GO%3A0019588","anaerobic glycerol catabolic process"],["GO%3A0019658","bifid shunt"],["GO%3A0044577","D-xylose fermentation"]]},{"id":"GO:0006790","l":"sulfur compound metabolic process","na":13,"nb":113,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"]],"b":[["GO%3A0050427","3'-phosphoadenosine 5'-phosphosulfate metabolic process"],["GO%3A0018887","4-carboxy-4'-sulfoazobenzene metabolic process"],["GO%3A0006637","acyl-CoA metabolic process"],["GO%3A0019694","alkanesulfonate metabolic process"],["GO%3A0006768","biotin metabolic process"],["GO%3A1901266","cephalosporin C metabolic process"]]},{"id":"CHEBI:16183","l":"methane","na":62,"nb":13,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"]],"b":[["EC%3A1.14.13.25","methane monooxygenase (soluble)"],["EC%3A1.14.18.3","methane monooxygenase (particulate)"],["EC%3A2.8.4.1","coenzyme-B sulfoethylthiotransferase"],["EC%3A4.7.1.1","alpha-D-ribose 1-methylphosphonate 5-phosphate C-P-lyase"],["RHEA%3A34707","alpha-D-ribose 1-methylphosphonate 5-phosphate + AH2 + S-adenosyl-L-methionine = alpha-D-ribose 1,2-cyclic phosphate 5-phosphate + methane + 5'-deoxyadenosine + L-methionine + A + H(+)"],["RHEA%3A12532","coenzyme B + methyl-coenzyme M = methane + coenzyme M-coenzyme B heterodisulfide"]]},{"id":"CHEBI:26833","l":"sulfur atom","na":12,"nb":24,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["EC%3A1.12.98.4","sulfhydrogenase"],["EC%3A1.13.11.55","sulfur oxygenase/reductase"],["EC%3A1.8.1.18","NAD(P)H sulfur oxidoreductase (CoA-dependent)"],["EC%3A1.8.1.19","sulfide dehydrogenase"],["EC%3A1.8.2.3","sulfide-cytochrome-c reductase (flavocytochrome c)"],["EC%3A1.8.2.7","thiocyanate desulfurase"]]},{"id":"CHEBI:17997","l":"dinitrogen","na":12,"nb":18,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["EC%3A1.18.6.1","nitrogenase"],["EC%3A1.18.6.2","vanadium-dependent nitrogenase"],["EC%3A1.19.6.1","nitrogenase (flavodoxin)"],["EC%3A1.7.2.4","nitrous-oxide reductase"],["EC%3A1.7.2.8","hydrazine dehydrogenase"],["RHEA%3A79967","3-diazoavenalumate + NADH + H(+) = avenalumate + N2 + NAD(+)"]]},{"id":"CHEBI:17790","l":"methanol","na":11,"nb":86,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"]],"b":[["EC%3A1.1.1.244","methanol dehydrogenase"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.99.37","methanol dehydrogenase (nicotinoprotein)"],["EC%3A1.14.13.25","methane monooxygenase (soluble)"],["EC%3A1.14.14.117","aflatoxin B synthase"]]},{"id":"CHEBI:17272","l":"propionate","na":11,"nb":34,"a":[["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"]],"b":[["EC%3A1.3.1.125","acrylate reductase"],["EC%3A2.7.2.15","propionate kinase"],["EC%3A2.8.3.1","propionate CoA-transferase"],["EC%3A2.8.3.27","propanoyl-CoA:succinate CoA transferase"],["EC%3A4.1.3.32","2,3-dimethylmalate lyase"],["EC%3A6.2.1.13","acetate--CoA ligase (ADP-forming)"]]},{"id":"GO:0044403","l":"biological process involved in symbiotic interaction","na":20,"nb":11,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["GO%3A0036377","arbuscular mycorrhizal association"],["GO%3A0051701","biological process involved in interaction with host"],["GO%3A0051702","biological process involved in interaction with symbiont"],["GO%3A0044403","biological process involved in symbiotic interaction"],["GO%3A0075733","intracellular transport of virus"],["GO%3A0044399","multi-species biofilm formation"]]},{"id":"GO:0045493","l":"xylan catabolic process","na":11,"nb":19,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["GO%3A2000888","arabinoxylan-containing compound catabolic process"],["GO%3A2000886","glucuronoxylan catabolic process"],["GO%3A0045493","xylan catabolic process"],["NCBIfam%3ANF042968","acetylxylan esterase AxeA1"],["NCBIfam%3ANF041579","beta-xylosidase"],["NCBIfam%3ANF042969","bifunctional acetylxylan esterase/glucomannan deacetylase AxeC2"]]},{"id":"GO:0050832","l":"defense response to fungus","na":11,"nb":15,"a":[["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"]],"b":[["GO%3A0019732","antifungal humoral response"],["GO%3A0061760","antifungal innate immune response"],["GO%3A0050832","defense response to fungus"],["NCBIfam%3ANF013159","Barwin family"],["InterPro%3AIPR018226","Barwin, conserved site"],["InterPro%3AIPR001153","Barwin domain"]]},{"id":"CHEBI:16134","l":"ammonia","na":14,"nb":11,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]],"b":[["TCDB%3A1.A.11","The Ammonium Transporter Channel (Amt) Family"],["MCSA%3A376","adenosine deaminase"],["MCSA%3A75","aspartate-ammonia ligase"],["MCSA%3A449","cystathionine beta-lyase"],["MCSA%3A97","cytidine deaminase"],["MCSA%3A710","cytosine deaminase (bacterial)"]]},{"id":"CHEBI:29036","l":"copper(2+)","na":10,"nb":40,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29036","requires copper(2+)"],["EC%3A1.1.9.1","alcohol dehydrogenase (azurin)"],["EC%3A1.16.3.4","cuproxidase"],["EC%3A1.17.9.1","4-methylphenol dehydrogenase (hydroxylating)"],["EC%3A1.17.9.2","(+)-pinoresinol hydroxylase"],["EC%3A1.20.9.1","arsenate reductase (azurin)"]]},{"id":"GO:0042742","l":"defense response to bacterium","na":9,"nb":53,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["ComplexPortal%3ACPX-10317","Interleukin-26 complex"],["GO%3A0019731","antibacterial humoral response"],["GO%3A0140367","antibacterial innate immune response"],["GO%3A0042742","defense response to bacterium"],["GO%3A0050829","defense response to Gram-negative bacterium"],["GO%3A0050830","defense response to Gram-positive bacterium"]]},{"id":"GO:0010038","l":"response to metal ion","na":9,"nb":34,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"]],"b":[["GO%3A0071248","cellular response to metal ion"],["GO%3A0010044","response to aluminum ion"],["GO%3A0046686","response to cadmium ion"],["GO%3A0051592","response to calcium ion"],["GO%3A0010164","response to cesium ion"],["GO%3A0032025","response to cobalt ion"]]},{"id":"GO:0009372","l":"quorum sensing","na":9,"nb":21,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["ComplexPortal%3ACPX-4315","Autoinducer-2 ABC transporter complex"],["GO%3A0120218","host interaction involved in quorum sensing"],["GO%3A0009372","quorum sensing"],["NCBIfam%3ANF052393","acyl-homoserine-lactone synthase"],["NCBIfam%3ANF008187","autoinducer-2 kinase"],["NCBIfam%3ANF010444","autoinducer-binding transcriptional regulator TraR"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":9,"nb":20,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]],"b":[["Pfam%3APF14535","AMP-binding enzyme C-terminal domain"],["Pfam%3APF13442","Cytochrome C oxidase, cbb3-type, subunit III"],["Pfam%3APF22247","Catechol 2,3-dioxygenase-like N-terminal domain"],["Pfam%3APF25371","Domain of unknown function (DUF7884)"],["Pfam%3APF19301","LigXa C-terminal domain like"],["Pfam%3APF12729","Four helix bundle sensory module for signal transduction"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":9,"nb":19,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"]],"b":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"],["Pfam%3APF18173","Bacterial HORMA domain 2"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["Pfam%3APF27322","Cap8 HORMA domain"],["Pfam%3APF01526","Tn3 transposase DDE domain"]]},{"id":"CHEBI:28885","l":"butan-1-ol","na":9,"nb":16,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["EC%3A1.1.2.9","1-butanol dehydrogenase (cytochrome c)"],["EC%3A1.1.5.11","1-butanol dehydrogenase (quinone)"],["EC%3A1.14.13.230","butane monooxygenase (soluble)"],["RHEA%3A64672","2-(methylsulfanyl)acetyl-CoA + butan-1-ol = butyl 2-(methylsulfanyl)acetate + CoA"],["RHEA%3A64676","3-(methylsulfanyl)propanoyl-CoA + butan-1-ol = butyl 3-(methylsulfanyl)propanoate + CoA"],["RHEA%3A43432","butan-1-ol + 2 Fe(III)-[cytochrome c] = butanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"]]},{"id":"CHEBI:15361","l":"pyruvate","na":8,"nb":410,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15361","requires pyruvate"],["EC%3A1.1.1.27","L-lactate dehydrogenase"],["EC%3A1.1.1.28","D-lactate dehydrogenase"],["EC%3A1.1.1.38","malate dehydrogenase (oxaloacetate-decarboxylating)"],["EC%3A1.1.1.39","malate dehydrogenase (decarboxylating)"],["EC%3A1.1.1.40","malate dehydrogenase (oxaloacetate-decarboxylating) (NADP(+))"]]},{"id":"GO:0009061","l":"anaerobic respiration","na":8,"nb":36,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["ComplexPortal%3ACPX-4841","Anaerobic glycerol-3-phosphate dehydrogenase complex"],["ComplexPortal%3ACPX-317","Formate hydrogenlyase-H/Hydrogenase-3 complex"],["ComplexPortal%3ACPX-6028","Formate hydrogenlyase-H/Hydrogenase-4 complex"],["ComplexPortal%3ACPX-281","Hydrogenase-1 complex"],["ComplexPortal%3ACPX-282","Hydrogenase-2 complex"],["ComplexPortal%3ACPX-3447","NapAB nitrate reductase complex"]]},{"id":"CHEBI:18385","l":"thiamine(1+)","na":8,"nb":19,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["EC%3A1.1.3.23","thiamine oxidase"],["EC%3A2.5.1.2","thiamine pyridinylase"],["EC%3A2.7.1.89","thiamine kinase"],["EC%3A2.7.6.2","thiamine diphosphokinase"],["EC%3A3.1.3.100","thiamine phosphate phosphatase"],["EC%3A3.5.99.2","aminopyrimidine aminohydrolase"]]},{"id":"CHEBI:33709","l":"amino acid","na":15,"nb":8,"a":[["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.23","The Dicarboxylate/Amino Acid:Cation (Na+ or H+) Symporter (DAACS) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A1.V.1","The Filamentous Cyanobacterial Septal Pore (Septum) Family"],["TCDB%3A1.A.24","The Gap Junction-forming Connexin (Connexin) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"GO:0015947","l":"methane metabolic process","na":11,"nb":8,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"]],"b":[["GO%3A0046188","methane catabolic process"],["GO%3A0015947","methane metabolic process"],["GO%3A0015948","methanogenesis"],["NCBIfam%3ANF014960","Methane monooxygenase, hydrolase gamma chain"],["Pfam%3APF02964","Methane monooxygenase, hydrolase gamma chain"],["InterPro%3AIPR015952","Methane monooxygenase, gamma chain, domain 1"]]},{"id":"GO:0046274","l":"lignin catabolic process","na":8,"nb":10,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"]],"b":[["GO%3A1990487","anaerobic lignin catabolic process"],["GO%3A1901062","guaiacyl lignin catabolic process"],["GO%3A0046274","lignin catabolic process"],["GO%3A1901059","p-hydroxyphenyl lignin catabolic process"],["GO%3A1901065","syringal lignin catabolic process"],["NCBIfam%3ANF042997","beta-etherase"]]},{"id":"GO:0040007","l":"growth","na":37,"nb":7,"a":[["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Cultivated_Meat_Contaminant_SynCom.html","Cultivated Meat Contaminant SynCom"]],"b":[["GO%3A0007117","budding cell bud growth"],["GO%3A0016049","cell growth"],["GO%3A0048589","developmental growth"],["GO%3A0030447","filamentous growth"],["GO%3A0040007","growth"],["GO%3A0080190","lateral growth"]]},{"id":"GO:0042710","l":"biofilm formation","na":29,"nb":7,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["GO%3A0042710","biofilm formation"],["GO%3A0044399","multi-species biofilm formation"],["GO%3A0044010","single-species biofilm formation"],["GO%3A0090605","submerged biofilm formation"],["GO%3A0090604","surface biofilm formation"],["Reactome%3AR-HSA-9931953","Biofilm formation"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":7,"nb":23,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["Pfam%3APF08878","HamA"],["Pfam%3APF05791","Bacillus haemolytic enterotoxin (HBL)"],["Pfam%3APF10803","Spore germination GerPB"],["Pfam%3APF10737","Spore germination protein GerPC"],["Pfam%3APF10970","Spore germination protein GerPE"],["Pfam%3APF07486","Cell Wall Hydrolase"]]},{"id":"CHEBI:17057","l":"cellobiose","na":7,"nb":19,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["EC%3A1.1.3.5","hexose oxidase"],["EC%3A1.1.99.18","cellobiose dehydrogenase (acceptor)"],["EC%3A2.4.1.20","cellobiose phosphorylase"],["EC%3A2.7.1.205","protein-N(pi)-phosphohistidine--D-cellobiose phosphotransferase"],["EC%3A2.7.1.85","beta-glucoside kinase"],["EC%3A5.1.3.11","cellobiose epimerase"]]},{"id":"GO:0019420","l":"dissimilatory sulfate reduction","na":17,"nb":7,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["DVM_Triculture.html","DVM Tri-culture"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"]],"b":[["GO%3A0019420","dissimilatory sulfate reduction"],["NCBIfam%3ATIGR02061","adenylyl-sulfate reductase subunit alpha"],["NCBIfam%3ATIGR02060","adenylyl-sulfate reductase subunit beta"],["NCBIfam%3ATIGR02066","dissimilatory-type sulfite reductase subunit beta"],["NCBIfam%3ANF045796","sulfate reduction electron transfer complex DsrMKJOP subunit DsrK"],["NCBIfam%3ANF045797","sulfate reduction electron transfer complex DsrMKJOP subunit DsrO"]]},{"id":"CHEBI:49786","l":"nickel(2+)","na":7,"nb":10,"a":[["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_49786","requires nickel(2+)"],["EC%3A4.99.1.11","sirohydrochlorin nickelchelatase"],["EC%3A4.99.1.12","pyridinium-3,5-bisthiocarboxylic acid mononucleotide nickel chelatase"],["EC%3A7.2.2.11","ABC-type Ni(2+) transporter"],["RHEA%3A29831","Ni(2+)(in) = Ni(2+)(out)"],["RHEA%3A15557","Ni(2+)(out) + ATP + H2O = Ni(2+)(in) + ADP + phosphate + H(+)"]]},{"id":"NCBITaxon:818","l":"Bacteroides thetaiotaomicron","na":7,"nb":9,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["Pfam%3APF09093","Lyase, catalytic"],["TED%3AAF-A0A174W9M0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A174W9M0-F1-model_v4_TED01"],["TED%3AAF-A0A679HCU6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A679HCU6-F1-model_v4_TED01"],["TED%3AAF-A0A139L295-F1-model_v4_TED04","TED novel fold AF-A0A139L295-F1-model_v4_TED04"],["TED%3AAF-A0A174QBB7-F1-model_v4_TED02","TED novel fold AF-A0A174QBB7-F1-model_v4_TED02"],["TED%3AAF-A0A679H9T4-F1-model_v4_TED03","TED novel fold AF-A0A679H9T4-F1-model_v4_TED03"]]},{"id":"GO:0009056","l":"catabolic process","na":6,"nb":109,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"],["Wetland_Oxygen_Sulfate_GHG_Microcosm_Community.html","Wetland Oxygen-Sulfate Greenhouse Gas Microcosm Community"]],"b":[["GO%3A0018911","1,2,4-trichlorobenzene catabolic process"],["GO%3A0019261","1,4-dichlorobenzene catabolic process"],["GO%3A0046302","2-chloro-N-isopropylacetanilide catabolic process"],["GO%3A1901851","7,8-didemethyl-8-hydroxy-5-deazariboflavin catabolic process"],["GO%3A0006581","acetylcholine catabolic process"],["GO%3A0046185","aldehyde catabolic process"]]},{"id":"CHEBI:17754","l":"glycerol","na":6,"nb":95,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"]],"b":[["EC%3A1.1.1.156","glycerol 2-dehydrogenase (NADP(+))"],["EC%3A1.1.1.372","D/L-glyceraldehyde reductase"],["EC%3A1.1.1.6","glycerol dehydrogenase"],["EC%3A1.1.1.72","glycerol dehydrogenase (NADP(+))"],["EC%3A1.1.99.22","glycerol dehydrogenase (acceptor)"],["EC%3A2.4.1.332","1,2-alpha-glucosylglycerol phosphorylase"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":6,"nb":93,"a":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17544","requires hydrogencarbonate"],["EC%3A1.13.11.73","methylphosphonate synthase"],["EC%3A1.2.1.27","methylmalonate-semialdehyde dehydrogenase (CoA acylating)"],["EC%3A2.5.1.120","aminodeoxyfutalosine synthase"],["EC%3A2.5.1.143","pyridinium-3,5-biscarboxylic acid mononucleotide synthase"],["EC%3A2.7.2.2","carbamate kinase"]]},{"id":"GO:0006979","l":"response to oxidative stress","na":6,"nb":50,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["ComplexPortal%3ACPX-9082","19S-20S-PA28-alphabeta hybrid proteasome complex"],["ComplexPortal%3ACPX-9085","19S-20S-PA28-gamma hybrid proteasome complex"],["ComplexPortal%3ACPX-8806","20S proteasome complex"],["ComplexPortal%3ACPX-4862","Alkyl hydroperoxide reductase complex"],["ComplexPortal%3ACPX-8842","PA28-alphabeta double-capped 20S proteasome complex"],["ComplexPortal%3ACPX-9002","PA28-alphabeta single-capped 20S proteasome complex"]]},{"id":"CHEBI:17245","l":"carbon monoxide","na":6,"nb":31,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Subsurface_Carboxydocella_CO_Aquifer_Community.html","Subsurface Carboxydocella CO-Oxidation Aquifer Community"]],"b":[["EC%3A1.13.11.24","quercetin 2,3-dioxygenase"],["EC%3A1.13.11.47","3-hydroxy-4-oxoquinoline 2,4-dioxygenase"],["EC%3A1.13.11.48","3-hydroxy-2-methylquinolin-4-one 2,4-dioxygenase"],["EC%3A1.13.11.53","acireductone dioxygenase (Ni(2+)-requiring)"],["EC%3A1.14.14.18","heme oxygenase (biliverdin-producing)"],["EC%3A1.14.15.20","heme oxygenase (biliverdin-producing, ferredoxin)"]]},{"id":"CHEBI:18246","l":"(1->4)-beta-D-glucan","na":27,"nb":6,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["EC%3A2.4.1.12","cellulose synthase (UDP-forming)"],["EC%3A2.4.1.29","cellulose synthase (GDP-forming)"],["EC%3A2.4.1.49","cellodextrin phosphorylase"],["RHEA%3A17797","[(1->4)-beta-D-glucosyl](n) + GDP-alpha-D-glucose = [(1->4)-beta-D-glucosyl](n+1) + GDP + H(+)"],["RHEA%3A23024","[(1->4)-beta-D-glucosyl](n) + phosphate = [(1->4)-beta-D-glucosyl](n-1) + alpha-D-glucose 1-phosphate"],["RHEA%3A19929","[(1->4)-beta-D-glucosyl](n) + UDP-alpha-D-glucose = [(1->4)-beta-D-glucosyl](n+1) + UDP + H(+)"]]},{"id":"GO:0009060","l":"aerobic respiration","na":6,"nb":25,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Soil_CPR_Nanoarchaea_Rare_Biosphere_Community.html","Soil CPR Bacteria and Nanoarchaea Rare-Biosphere Community"]],"b":[["ComplexPortal%3ACPX-266","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-577","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-319","Trimethylamine-N-oxide reductase TorAC complex"],["GO%3A0019646","aerobic electron transport chain"],["GO%3A0009060","aerobic respiration"],["GO%3A0019409","aerobic respiration, using ammonia as electron donor"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":6,"nb":16,"a":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["Pfam%3APF16822","SGNH hydrolase-like domain, acetyltransferase AlgX"],["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"],["Pfam%3APF11182","Alginate O-acetyl transferase AlgF"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF27129","Functional amyloid protein FapB/FapC family"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":6,"nb":11,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF02085","Class III cytochrome C family"],["Pfam%3APF06397","Desulfoferrodoxin, N-terminal domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["Pfam%3APF12797","4Fe-4S binding domain"],["Pfam%3APF06180","Cobalt chelatase (CbiK)"]]},{"id":"GO:0009877","l":"nodulation","na":6,"nb":8,"a":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"],["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["GO%3A0009877","nodulation"],["NCBIfam%3ATIGR04243","chitooligosaccharide deacetylase NodB"],["NCBIfam%3ATIGR04242","chitooligosaccharide synthase NodC"],["NCBIfam%3ANF017620","HrpF/NolX family T3SS translocon protein"],["NCBIfam%3ATIGR04245","NodA family N-acyltransferase"],["NCBIfam%3ANF014526","Nodulation protein A (NodA)"]]},{"id":"GO:0071941","l":"nitrogen cycle metabolic process","na":6,"nb":8,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"]],"b":[["GO%3A0019409","aerobic respiration, using ammonia as electron donor"],["GO%3A0019331","anaerobic respiration, using ammonium as electron donor"],["GO%3A0019333","denitrification pathway"],["GO%3A0042128","nitrate assimilation"],["GO%3A0071941","nitrogen cycle metabolic process"],["GO%3A0009399","nitrogen fixation"]]},{"id":"CHEBI:18153","l":"ethene","na":7,"nb":6,"a":[["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"]],"b":[["EC%3A1.13.12.19","2-oxoglutarate dioxygenase (ethylene-forming)"],["EC%3A1.14.17.4","aminocyclopropanecarboxylate oxidase"],["RHEA%3A23640","1-aminocyclopropane-1-carboxylate + L-ascorbate + O2 = ethene + L-dehydroascorbate + hydrogen cyanide + CO2 + 2 H2O"],["RHEA%3A81439","2-(methylsulfanyl)ethanol + AH2 = ethene + methanethiol + A + H2O"],["RHEA%3A31523","2-oxoglutarate + O2 + 2 H(+) = ethene + 3 CO2 + H2O"],["RHEA%3A68004","chloroethene + AH2 = ethene + chloride + A + H(+)"]]},{"id":"NCBITaxon:40324","l":"Stenotrophomonas maltophilia","na":7,"nb":6,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]],"b":[["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["TED%3AAF-A0A2U4H7T5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2U4H7T5-F1-model_v4_TED02"],["TED%3AAF-A0A2W6G5X3-F1-model_v4_TED01","TED novel fold AF-A0A2W6G5X3-F1-model_v4_TED01"],["TED%3AAF-A0A2W6IKS3-F1-model_v4_TED02","TED novel fold AF-A0A2W6IKS3-F1-model_v4_TED02"],["TED%3AAF-A0A7D0KRT5-F1-model_v4_TED03","TED novel fold AF-A0A7D0KRT5-F1-model_v4_TED03"],["TED%3AAF-A0A7T8PWR1-F1-model_v4_TED05","TED novel fold AF-A0A7T8PWR1-F1-model_v4_TED05"]]},{"id":"GO:0006629","l":"lipid metabolic process","na":5,"nb":81,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"]],"b":[["ComplexPortal%3ACPX-1381","NVJ1-VAC8 nucleus-vacuole junction complex"],["GO%3A0046485","ether lipid metabolic process"],["GO%3A1901568","fatty acid derivative metabolic process"],["GO%3A0006631","fatty acid metabolic process"],["GO%3A0046486","glycerolipid metabolic process"],["GO%3A0006720","isoprenoid metabolic process"]]},{"id":"GO:0009236","l":"cobalamin biosynthetic process","na":5,"nb":75,"a":[["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["GO%3A0009236","cobalamin biosynthetic process"],["proteintraitsmech%3ASEED_SUBSYSTEM_Cobalamin_synthesis","Cobalamin synthesis"],["NCBIfam%3ATIGR02476","5,6-dimethylbenzimidazole synthase"],["NCBIfam%3ANF011580","adenosylcobalamin/alpha-ribazole phosphatase"],["NCBIfam%3ANF014685","adenosylcobinamide-GDP ribazoletransferase"],["NCBIfam%3ATIGR00317","adenosylcobinamide-GDP ribazoletransferase"]]},{"id":"GO:0030001","l":"metal ion transport","na":5,"nb":66,"a":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["GO%3A0015690","aluminum cation transport"],["GO%3A0006816","calcium ion transport"],["GO%3A0015692","lead ion transport"],["GO%3A0010351","lithium ion transport"],["GO%3A0015693","magnesium ion transport"],["GO%3A0030001","metal ion transport"]]},{"id":"GO:0006935","l":"chemotaxis","na":5,"nb":64,"a":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["SynCom_MetG2_Rhizobacteria_Sugarcane_Stress_Resilience.html","SynCom MetG2 Rhizobacteria Sugarcane Stress Resilience"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"],["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009454","aerotaxis"]]},{"id":"GO:0006635","l":"fatty acid beta-oxidation","na":5,"nb":32,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["ComplexPortal%3ACPX-3964","fadBA fatty acid oxidation complex, aerobic conditions"],["ComplexPortal%3ACPX-3966","fadJI fatty acid oxidation complex, anaerobic conditions"],["ComplexPortal%3ACPX-6245","Mitochondrial trifunctional enzyme complex"],["GO%3A0006635","fatty acid beta-oxidation"],["GO%3A0033539","fatty acid beta-oxidation using acyl-CoA dehydrogenase"],["GO%3A0033540","fatty acid beta-oxidation using acyl-CoA oxidase"]]},{"id":"GO:0005986","l":"sucrose biosynthetic process","na":7,"nb":5,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"],["Synechococcus_Bacillus_SPC.html","Synechococcus-Bacillus Synthetic Photosynthetic Consortium"],["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"],["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"],["Synechococcus_Saccharomyces_SPC.html","Synechococcus-Saccharomyces Synthetic Photosynthetic Consortium"]],"b":[["GO%3A0005986","sucrose biosynthetic process"],["NCBIfam%3ANF020061","Sucrose-6-phosphate phosphohydrolase C-terminal"],["NCBIfam%3ATIGR01485","sucrose-phosphate phosphatase"],["InterPro%3AIPR013679","Sucrose-phosphatase, C-terminal"],["Pfam%3APF08472","Sucrose-6-phosphate phosphohydrolase C-terminal"]]},{"id":"CHEBI:18310","l":"alkane","na":5,"nb":5,"a":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"]],"b":[["EC%3A4.99.1.2","alkylmercury lyase"],["RHEA%3A18777","an alkylmercury + H(+) = an alkane + Hg(2+)"],["MCSA%3A297","alkylmercury lyase"],["MCSA%3A248","chloride peroxidase (cofactor free)"],["MCSA%3A250","chloride peroxidase (heme dependent)"]]},{"id":"CHEBI:15377","l":"water","na":4,"nb":9376,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["EC%3A1.1.1.115","ribose 1-dehydrogenase (NADP(+))"],["EC%3A1.1.1.132","GDP-mannose 6-dehydrogenase"],["EC%3A1.1.1.136","UDP-N-acetylglucosamine 6-dehydrogenase"],["EC%3A1.1.1.186","dTDP-galactose 6-dehydrogenase"],["EC%3A1.1.1.192","long-chain-alcohol dehydrogenase"],["EC%3A1.1.1.205","IMP dehydrogenase"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":4,"nb":680,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16240","requires hydrogen peroxide"],["EC%3A1.1.3.10","pyranose oxidase"],["EC%3A1.1.3.11","L-sorbose oxidase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.3.13","alcohol oxidase"],["EC%3A1.1.3.15","(S)-2-hydroxy-acid oxidase"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":4,"nb":212,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["EC%3A1.1.1.244","methanol dehydrogenase"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.99.37","methanol dehydrogenase (nicotinoprotein)"],["EC%3A1.13.11.94","4-vinylguaiacol dioxygenase"],["EC%3A1.14.11.27","[histone H3]-dimethyl-L-lysine(36) demethylase"]]},{"id":"GO:0006520","l":"amino acid metabolic process","na":4,"nb":155,"a":[["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["GO%3A0043038","amino acid activation"],["GO%3A0008652","amino acid biosynthetic process"],["GO%3A0009063","amino acid catabolic process"],["GO%3A0006520","amino acid metabolic process"],["GO%3A0006525","arginine metabolic process"],["GO%3A0009072","aromatic amino acid metabolic process"]]},{"id":"GO:0006952","l":"defense response","na":4,"nb":62,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["ComplexPortal%3ACPX-2833","Camalexin biosynthetic metabolon complex"],["ComplexPortal%3ACPX-25769","TAP antigen peptide transporter complex"],["GO%3A0002209","behavioral defense response"],["GO%3A0006968","cellular defense response"],["GO%3A0052542","defense response by callose deposition"],["GO%3A0052482","defense response by cell wall thickening"]]},{"id":"GO:0008610","l":"lipid biosynthetic process","na":4,"nb":61,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"],["Yarrowia_lipolytica_Division_of_Labor_Lipid_Consortium.html","Yarrowia lipolytica Division-of-Labor Lipid Consortium"]],"b":[["GO%3A1900557","emericellamide biosynthetic process"],["GO%3A0008611","ether lipid biosynthetic process"],["GO%3A0006633","fatty acid biosynthetic process"],["GO%3A1901570","fatty acid derivative biosynthetic process"],["GO%3A0045017","glycerolipid biosynthetic process"],["GO%3A0009247","glycolipid biosynthetic process"]]},{"id":"CHEBI:16199","l":"urea","na":4,"nb":48,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["EC%3A3.5.1.5","urease"],["EC%3A3.5.1.95","N-malonylurea hydrolase"],["EC%3A3.5.3.1","arginase"],["EC%3A3.5.3.10","D-arginase"],["EC%3A3.5.3.11","agmatinase"],["EC%3A3.5.3.14","amidinoaspartase"]]},{"id":"CHEBI:29105","l":"zinc(2+)","na":4,"nb":20,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29105","requires zinc(2+)"],["EC%3A7.2.2.12","P-type Zn(2+) transporter"],["EC%3A7.2.2.20","ABC-type Zn(2+) transporter"],["RHEA%3A62264","selenite(out) + Zn(2+)(out) + hydrogencarbonate(out) = selenite(in) + Zn(2+)(in) + hydrogencarbonate(in)"],["RHEA%3A72627","Zn(2+)(in) + 2 H(+)(out) = Zn(2+)(out) + 2 H(+)(in)"],["RHEA%3A20621","Zn(2+)(in) + ATP + H2O = Zn(2+)(out) + ADP + phosphate + H(+)"]]},{"id":"GO:0044003","l":"symbiont-mediated perturbation of host process","na":4,"nb":20,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"]],"b":[["GO%3A0140418","effector-mediated perturbation of host process by symbiont"],["GO%3A0098676","symbiont-mediated modulation of host virulence"],["GO%3A0044068","symbiont-mediated perturbation of host cellular process"],["GO%3A0052031","symbiont-mediated perturbation of host defense response"],["GO%3A0044003","symbiont-mediated perturbation of host process"],["GO%3A0033635","symbiont-mediated perturbation of host response to abiotic stimulus"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":4,"nb":19,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["Pfam%3APF03306","Alpha-acetolactate decarboxylase"],["Pfam%3APF22208","Cas_Csm6 CARF domain"],["Pfam%3APF09659","Cas_Csm6 HEPN domain"],["Pfam%3APF22335","Cas10/Cmr2, second palm domain"],["Pfam%3APF18395","Cas3 C-terminal domain"],["Pfam%3APF18019","Cas3, HD domain"]]},{"id":"CHEBI:16899","l":"D-mannitol","na":4,"nb":17,"a":[["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["EC%3A1.1.1.138","mannitol 2-dehydrogenase (NADP(+))"],["EC%3A1.1.1.255","mannitol dehydrogenase"],["EC%3A1.1.1.67","mannitol 2-dehydrogenase"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.3.40","D-mannitol oxidase"],["EC%3A2.7.1.197","protein-N(pi)-phosphohistidine--D-mannitol phosphotransferase"]]},{"id":"GO:0019333","l":"denitrification pathway","na":13,"nb":4,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"]],"b":[["GO%3A0019333","denitrification pathway"],["NCBIfam%3ATIGR02161","periplasmic nitrate (or nitrite) reductase c-type cytochrome, NapC/NirT family"],["NCBIfam%3ATIGR04244","TAT-dependent nitrous-oxide reductase"],["NCBIfam%3ATIGR04246","Sec-dependent nitrous-oxide reductase"]]},{"id":"GO:0019543","l":"propionate catabolic process","na":4,"nb":11,"a":[["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["GO%3A0019543","propionate catabolic process"],["NCBIfam%3ATIGR02334","2-methylaconitate cis-trans isomerase PrpF"],["NCBIfam%3ATIGR02330","2-methylcitrate dehydratase"],["NCBIfam%3ANF006943","bifunctional 2-methylcitrate dehydratase/aconitate hydratase"],["NCBIfam%3ANF009006","bifunctional 2-methylcitrate synthase/citrate synthase"],["NCBIfam%3ATIGR02333","Fe/S-dependent 2-methylisocitrate dehydratase AcnD"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":4,"nb":10,"a":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["Pfam%3APF17433","Glycosyl hydrolase family 49 N-terminal Ig-like domain"],["PROSITE%3APS00820","Glucoamylase active site region signature"],["PROSITE%3APS00920","Nitrilases / cyanide hydratase signature 1"],["PROSITE%3APS00502","Polygalacturonase active site"],["Pfam%3APF18841","Beta solenoid repeat from Dextranase"],["Pfam%3APF03718","Glycosyl hydrolase family 49"]]},{"id":"CHEBI:48775","l":"cadmium(2+)","na":4,"nb":9,"a":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Meghalaya_Bacillus_Consortia_A22ED9.html","Meghalaya Bacillus Consortia-A22ED9"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["SynCom_Pseudomonas_Rahnella_Artemisia_Phytoremediation.html","Pseudomonas-Rahnella native rhizosphere SynCom for Artemisia argyi phytoremediation"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_48775","requires cadmium(2+)"],["EC%3A7.2.2.2","ABC-type Cd(2+) transporter"],["EC%3A7.2.2.21","Cd(2+)-exporting ATPase"],["RHEA%3A12132","Cd(2+)(in) + ATP + H2O = Cd(2+)(out) + ADP + phosphate + H(+)"],["RHEA%3A28707","Cd(2+)(in) = Cd(2+)(out)"],["RHEA%3A28739","Cd(2+)(in) + H(+)(out) = Cd(2+)(out) + H(+)(in)"]]},{"id":"CHEBI:17029","l":"chitin","na":4,"nb":8,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]],"b":[["EC%3A2.4.1.16","chitin synthase"],["EC%3A3.5.1.41","chitin deacetylase"],["RHEA%3A85463","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-1)-N-acetyl-alpha-D-glucosamine"],["RHEA%3A50672","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-2) + N,N'-diacetylchitobiose"],["RHEA%3A85003","[(1->4)-N-acetyl-beta-D-glucosaminyl](n)-N-acetyl-alpha-D-glucosamine + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n) + N-acetyl-alpha-D-glucosamine"],["RHEA%3A10464","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + n H2O = chitosan + n acetate"]]},{"id":"CHEBI:30411","l":"cobalamin","na":8,"nb":4,"a":[["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_30411","requires cobalamin"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.A.54","The Lysosomal Cobalamin (B12) Transporter (L-B12T) Family"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]]},{"id":"CHEBI:64709","l":"organic acid","na":7,"nb":4,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["TCDB%3A2.A.28","The Bile Acid:Na+ Symporter (BASS) Family"],["TCDB%3A2.A.23","The Dicarboxylate/Amino Acid:Cation (Na+ or H+) Symporter (DAACS) Family"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.25","The Outer Membrane Porin (Opr) Family"]]},{"id":"CHEBI:28509","l":"chloroethene","na":6,"nb":4,"a":[["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["RHEA%3A68000","1,1-dichloroethene + AH2 = chloroethene + chloride + A + H(+)"],["RHEA%3A68004","chloroethene + AH2 = ethene + chloride + A + H(+)"],["RHEA%3A83555","chloroethene + reduced [NADPH--hemoprotein reductase] + O2 = chloroethylene oxide + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A67996","(Z)-1,2-dichloroethene + AH2 = chloroethene + chloride + A + H(+)"]]},{"id":"GO:1903457","l":"lactate catabolic process","na":6,"nb":4,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["GO%3A1990484","aerobic lactate catabolic process"],["GO%3A1990485","anaerobic lactate catabolic process"],["GO%3A1903457","lactate catabolic process"],["NCBIfam%3ANF049975","D-2-hydroxyglutarate dehydrogenase YdiJ"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":4,"nb":6,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF10779","Haemolysin XhlA"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF08181","DegQ (SacQ) family"],["Pfam%3APF08057","Erythromycin resistance leader peptide"],["Pfam%3APF14867","Lantibiotic alpha"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":4,"nb":6,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["Pfam%3APF16376","N-terminal domain of fragilysin"],["TED%3AAF-A0A412XR06-F1-model_v4_TED03","TED novel fold AF-A0A412XR06-F1-model_v4_TED03"],["TED%3AAF-A0A4V1EUI2-F1-model_v4_TED02","TED novel fold AF-A0A4V1EUI2-F1-model_v4_TED02"],["TED%3AAF-A0A5C6IXH5-F1-model_v4_TED01","TED novel fold AF-A0A5C6IXH5-F1-model_v4_TED01"],["TED%3AAF-A0A5C6L6G9-F1-model_v4_TED02","TED novel fold AF-A0A5C6L6G9-F1-model_v4_TED02"],["TED%3AAF-A0A642KY52-F1-model_v4_TED01","TED novel fold AF-A0A642KY52-F1-model_v4_TED01"]]},{"id":"CHEBI:16670","l":"peptide","na":4,"nb":5,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A9.B.46","The Staphylococcus aureus Putative Quorum Sensing Peptide Exporter, AgrB (AgrB) Family"],["TCDB%3A3.A.25","The Symbiont-specific ERAD-like Machinery (SELMA) Family"],["proteintraitsmech%3ABIOLIP_PEPTIDE","peptide-binding site"]]},{"id":"NCBITaxon:5544","l":"Trichoderma harzianum","na":5,"nb":4,"a":[["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"],["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"],["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["Pfam%3APF00840","Glycosyl hydrolase family 7"],["Pfam%3APF12708","Rhamnogalacturonase A/epimerase, pectate lyase-like"],["TED%3AAF-A0A0F9XDU3-F1-model_v4_TED01","TED novel fold AF-A0A0F9XDU3-F1-model_v4_TED01"],["TED%3AAF-A0A0G0ASL4-F1-model_v4_TED01","TED novel fold AF-A0A0G0ASL4-F1-model_v4_TED01"]]},{"id":"CHEBI:18154","l":"polysaccharide","na":4,"nb":4,"a":[["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Wollastonite_Ramichloridium_Talaromyces_Fungal_Consortium.html","Wollastonite Ramichloridium-Talaromyces Fungal Consortium"]],"b":[["TCDB%3A9.B.97","The Acyltransferase-3/Putative Acetyl-CoA Transporter (AT3AT) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.18","The Outer Membrane Auxiliary (OMA) Protein Family"]]},{"id":"GO:0019541","l":"propionate metabolic process","na":4,"nb":4,"a":[["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["GO%3A0019542","propionate biosynthetic process"],["GO%3A0019543","propionate catabolic process"],["GO%3A0019541","propionate metabolic process"],["GO%3A0019657","pyruvate fermentation to propionate"]]},{"id":"CHEBI:17359","l":"sulfite","na":3,"nb":109,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"]],"b":[["EC%3A1.13.11.18","persulfide dioxygenase"],["EC%3A1.13.11.55","sulfur oxygenase/reductase"],["EC%3A1.14.11.17","taurine dioxygenase"],["EC%3A1.14.12.8","4-sulfobenzoate 3,4-dioxygenase"],["EC%3A1.14.13.111","methanesulfonate monooxygenase (NADH)"],["EC%3A1.14.14.181","sulfoquinovose monooxygenase"]]},{"id":"GO:0007155","l":"cell adhesion","na":3,"nb":102,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"]],"b":[["ComplexPortal%3ACPX-12912","BCAR1-CRK-SH2D3C, focal adhesion regulator complex"],["ComplexPortal%3ACPX-1737","Collagen type VII trimer"],["ComplexPortal%3ACPX-2966","Collagen type VII trimer"],["ComplexPortal%3ACPX-2855","Fimbrial Tip Complex FimFGH"],["ComplexPortal%3ACPX-450","Multimerin-2 complex"],["ComplexPortal%3ACPX-451","Multimerin-2 complex"]]},{"id":"GO:0016053","l":"obsolete organic acid biosynthetic process","na":3,"nb":83,"a":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Wollastonite_Ramichloridium_Talaromyces_Fungal_Consortium.html","Wollastonite Ramichloridium-Talaromyces Fungal Consortium"]],"b":[["PANTHER%3APTHR43090","1-(5-PHOSPHORIBOSYL)-5-[(5-PHOSPHORIBOSYLAMINO)METHYLIDENEAMINO] IMIDAZOLE-4-CARBOXAMIDE ISOMERASE"],["PANTHER%3APTHR43699","3-DEHYDROQUINATE DEHYDRATASE"],["PANTHER%3APTHR42979","3-ISOPROPYLMALATE DEHYDROGENASE"],["PANTHER%3APTHR20881","3-METHYL-2-OXOBUTANOATE HYDROXYMETHYLTRANSFERASE"],["PANTHER%3APTHR46832","5'-METHYLTHIOADENOSINE/S-ADENOSYLHOMOCYSTEINE NUCLEOSIDASE"],["PANTHER%3APTHR31242","ACETOLACTATE SYNTHASE SMALL SUBUNIT, MITOCHONDRIAL"]]},{"id":"GO:0008652","l":"amino acid biosynthetic process","na":3,"nb":69,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"]],"b":[["GO%3A0008153","4-aminobenzoate biosynthetic process"],["GO%3A0006523","alanine biosynthetic process"],["GO%3A0008652","amino acid biosynthetic process"],["GO%3A0043102","amino acid salvage"],["GO%3A0019483","beta-alanine biosynthetic process"],["GO%3A0035499","carnosine biosynthetic process"]]},{"id":"CHEBI:29035","l":"manganese(2+)","na":3,"nb":44,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29035","requires manganese(2+)"],["EC%3A1.11.1.13","manganese peroxidase"],["EC%3A1.11.1.16","versatile peroxidase"],["EC%3A1.16.3.3","manganese oxidase"],["EC%3A7.2.2.22","P-type Mn(2+) transporter"],["EC%3A7.2.2.5","ABC-type Mn(2+) transporter"]]},{"id":"GO:0010467","l":"gene expression","na":3,"nb":41,"a":[["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["GO%3A0001816","cytokine production"],["GO%3A0010467","gene expression"],["GO%3A1901148","gene expression involved in extracellular matrix organization"],["GO%3A0140053","mitochondrial gene expression"],["GO%3A0036162","oxytocin production"],["GO%3A0140899","plastid gene expression"]]},{"id":"CHEBI:17750","l":"glycine betaine","na":3,"nb":33,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["EC%3A1.1.3.17","choline oxidase"],["EC%3A1.13.11.90","[1-hydroxy-2-(trimethylamino)ethyl]phosphonate dioxygenase (glycine- betaine-forming)"],["EC%3A1.14.13.251","glycine betaine monooxygenase"],["EC%3A1.2.1.8","betaine-aldehyde dehydrogenase"],["EC%3A1.21.4.4","betaine reductase"],["EC%3A2.1.1.157","sarcosine/dimethylglycine N-methyltransferase"]]},{"id":"CHEBI:29103","l":"potassium(1+)","na":3,"nb":32,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29103","requires potassium(1+)"],["EC%3A7.2.2.13","Na(+)/K(+)-exchanging ATPase"],["EC%3A7.2.2.19","H(+)/K(+)-exchanging ATPase"],["EC%3A7.2.2.6","P-type K(+) transporter"],["RHEA%3A18353","2 K(+)(out) + 3 Na(+)(in) + ATP + H2O = 2 K(+)(in) + 3 Na(+)(out) + ADP + phosphate + H(+)"],["RHEA%3A69967","Ca(2+)(out) + K(+)(out) + 4 Na(+)(in) = Ca(2+)(in) + K(+)(in) + 4 Na(+)(out)"]]},{"id":"NCBITaxon:3055","l":"Chlamydomonas reinhardtii","na":3,"nb":27,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]],"b":[["Pfam%3APF01333","Apocytochrome F, C-terminal"],["Pfam%3APF16639","Apocytochrome F, N-terminal"],["Pfam%3APF00430","ATP synthase B/B' CF(0)"],["Pfam%3APF00401","ATP synthase, Delta/Epsilon chain, long alpha-helix domain"],["Pfam%3APF21771","CFAP58 central coiled coil"],["Pfam%3APF27956","CFAP99 V-shaped coiled-coil domain"]]},{"id":"GO:0031347","l":"regulation of defense response","na":3,"nb":25,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"],["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["GO%3A0031348","negative regulation of defense response"],["GO%3A0031349","positive regulation of defense response"],["GO%3A0002759","regulation of antimicrobial humoral response"],["GO%3A2000822","regulation of behavioral fear response"],["GO%3A0010185","regulation of cellular defense response"],["GO%3A2000071","regulation of defense response by callose deposition"]]},{"id":"GO:0000162","l":"L-tryptophan biosynthetic process","na":3,"nb":22,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"]],"b":[["ComplexPortal%3ACPX-1850","Anthranilate synthase complex"],["ComplexPortal%3ACPX-4783","Anthranilate synthase complex"],["ComplexPortal%3ACPX-3446","TrpAB tryptophan synthase complex"],["GO%3A0000162","L-tryptophan biosynthetic process"],["NCBIfam%3ANF010081","anthranilate synthase component I"],["NCBIfam%3ANF010086","anthranilate synthase component I"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":3,"nb":21,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29108","requires calcium(2+)"],["EC%3A1.13.12.24","calcium-regulated photoprotein"],["EC%3A7.2.2.10","P-type Ca(2+) transporter"],["RHEA%3A72631","3 Li(+)(out) + Ca(2+)(in) = 3 Li(+)(in) + Ca(2+)(out)"],["RHEA%3A55884","[aequorin] + 3 Ca(2+) = [aequorin]--dioxetanone"],["RHEA%3A55888","[aequorin]--dioxetanone = excited state-[aequorin] + CO2"]]},{"id":"GO:0071248","l":"cellular response to metal ion","na":3,"nb":21,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["GO%3A0071275","cellular response to aluminum ion"],["GO%3A0071276","cellular response to cadmium ion"],["GO%3A0071277","cellular response to calcium ion"],["GO%3A0071278","cellular response to cesium ion"],["GO%3A0071279","cellular response to cobalt ion"],["GO%3A0071280","cellular response to copper ion"]]},{"id":"CHEBI:17716","l":"lactose","na":3,"nb":20,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"]],"b":[["EC%3A2.4.1.22","lactose synthase"],["EC%3A2.7.1.207","protein-N(pi)-phosphohistidine--lactose phosphotransferase"],["EC%3A3.2.1.108","lactase"],["EC%3A3.2.1.140","lacto-N-biosidase"],["EC%3A3.2.1.227","N-acetyllactosaminidase"],["RHEA%3A86923","a beta-D-Gal-(1->4)-beta-D-Glc-(1<->1)-Cer(d18:1(4E)) + H2O = lactose + an N-acylsphing-4-enine"]]},{"id":"GO:0045088","l":"regulation of innate immune response","na":3,"nb":19,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["GO%3A0045824","negative regulation of innate immune response"],["GO%3A0045089","positive regulation of innate immune response"],["GO%3A1904248","regulation of age-related resistance"],["GO%3A1905034","regulation of antifungal innate immune response"],["GO%3A0030451","regulation of complement activation, alternative pathway"],["GO%3A0001868","regulation of complement activation, lectin pathway"]]},{"id":"CHEBI:48828","l":"cobalt(2+)","na":3,"nb":16,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_48828","requires cobalt(2+)"],["EC%3A1.16.99.1","[Co(II) methylated amine-specific corrinoid protein] reductase"],["EC%3A4.99.1.3","sirohydrochlorin cobaltochelatase"],["EC%3A6.6.1.2","cobaltochelatase"],["RHEA%3A65832","2 Co(II)-[dimethylamine-specific corrinoid protein] + AH2 + ATP + H2O = 2 Co(I)-[dimethylamine-specific corrinoid protein] + A + ADP + phosphate + 3 H(+)"],["RHEA%3A65816","2 Co(II)-[methylamine-specific corrinoid protein] + AH2 + ATP + H2O = 2 Co(I)-[methylamine-specific corrinoid protein] + A + ADP + phosphate + 3 H(+)"]]},{"id":"CHEBI:17045","l":"dinitrogen oxide","na":3,"nb":13,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"]],"b":[["EC%3A1.7.1.14","nitric oxide reductase [NAD(P)(+), nitrous oxide-forming]"],["EC%3A1.7.2.4","nitrous-oxide reductase"],["EC%3A1.7.2.5","nitric-oxide reductase (cytochrome c)"],["EC%3A1.7.5.2","nitric oxide reductase (menaquinol)"],["RHEA%3A30215","a menaquinol + 2 nitric oxide = nitrous oxide + a menaquinone + H2O"],["RHEA%3A43108","N2 + 2 Fe(III)-[cytochrome c] + H2O = nitrous oxide + 2 Fe(II)-[cytochrome c] + 2 H(+)"]]},{"id":"CHEBI:26271","l":"proline","na":3,"nb":12,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.15","The Betaine/Carnitine/Choline Transporter (BCCT) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"]]},{"id":"GO:0006083","l":"acetate metabolic process","na":3,"nb":12,"a":[["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["GO%3A0019413","acetate biosynthetic process"],["GO%3A0045733","acetate catabolic process"],["GO%3A0006083","acetate metabolic process"],["GO%3A0045122","aflatoxin biosynthetic process"],["GO%3A0019658","bifid shunt"],["GO%3A0019475","L-lysine fermentation"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":11,"nb":3,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["Pfam%3APF14864","Alkyl sulfatase C-terminal"],["Pfam%3APF13816","Haem-containing dehydratase"],["Pfam%3APF14863","Alkyl sulfatase dimerisation"]]},{"id":"GO:0019329","l":"ammonia oxidation","na":10,"nb":3,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"]],"b":[["GO%3A0019409","aerobic respiration, using ammonia as electron donor"],["GO%3A0019329","ammonia oxidation"],["GO%3A0019331","anaerobic respiration, using ammonium as electron donor"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":3,"nb":10,"a":[["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["Pfam%3APF27445","Adaptation to cold protein A"],["Pfam%3APF27450","AtcB C-terminal domain"],["Pfam%3APF27486","AtcB N-terminal domain"],["Pfam%3APF02464","CinA C-terminal domain"],["Pfam%3APF13657","HipA N-terminal domain"],["Pfam%3APF01934","Ribonuclease HepT-like"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":3,"nb":10,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF09081","Glucan 1,4-alpha-maltotetraohydrolase, domain C"],["Pfam%3APF09459","Ethylbenzene dehydrogenase"],["Pfam%3APF08406","CbbQ/NirQ/NorQ C-terminal"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"],["Pfam%3APF18793","Nitrous oxide reductase propeller repeat 2"]]},{"id":"NCBITaxon:853","l":"Faecalibacterium prausnitzii","na":3,"nb":10,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"]],"b":[["TED%3AAF-A0A2A7AJ69-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A7AJ69-F1-model_v4_TED01"],["TED%3AAF-A0A329UNG0-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A329UNG0-F1-model_v4_TED05"],["TED%3AAF-A0A3F3JVN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3F3JVN3-F1-model_v4_TED01"],["TED%3AAF-A0A564SWB8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A564SWB8-F1-model_v4_TED02"],["TED%3AAF-A0A173SIF7-F1-model_v4_TED01","TED novel fold AF-A0A173SIF7-F1-model_v4_TED01"],["TED%3AAF-A0A173WYP6-F1-model_v4_TED01","TED novel fold AF-A0A173WYP6-F1-model_v4_TED01"]]},{"id":"CHEBI:16602","l":"trichloroethene","na":9,"nb":3,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["EC%3A1.21.99.5","tetrachloroethene reductive dehalogenase"],["RHEA%3A67992","trichloroethene + AH2 = (Z)-1,2-dichloroethene + chloride + A + H(+)"],["RHEA%3A20353","trichloroethene + chloride + A + H(+) = tetrachloroethene + AH2"]]},{"id":"CHEBI:18367","l":"phosphate(3-)","na":9,"nb":3,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["proteintraitsmech%3ABIOLIP_PO4","PO4-binding site"]]},{"id":"CHEBI:87393","l":"hexan-1-ol","na":3,"nb":9,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["RHEA%3A65480","2-methylbutanoyl-CoA + hexan-1-ol = hexyl 2-methylbutanoate + CoA"],["RHEA%3A79331","hexan-1-ol + 2 Fe(III)-[cytochrome c] = hexanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A65460","hexan-1-ol + acetyl-CoA = hexyl acetate + CoA"],["RHEA%3A65444","hexan-1-ol + butanoyl-CoA = hexyl butanoate + CoA"],["RHEA%3A65484","hexan-1-ol + hexanoyl-CoA = hexyl hexanoate + CoA"],["RHEA%3A60972","hexan-1-ol + NAD(+) = hexanal + NADH + H(+)"]]},{"id":"GO:1990748","l":"cellular detoxification","na":3,"nb":9,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["GO%3A1990748","cellular detoxification"],["GO%3A0140977","cellular detoxification of acetone"],["GO%3A0110095","cellular detoxification of aldehyde"],["GO%3A0140114","cellular detoxification of fluoride"],["GO%3A0140961","cellular detoxification of metal ion"],["GO%3A0070458","cellular detoxification of nitrogen compound"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":3,"nb":8,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["Pfam%3APF01890","Cobalamin synthesis G C-terminus"],["Pfam%3APF11761","Cobalamin biosynthesis central region"],["Pfam%3APF11760","Cobalamin synthesis G N-terminal"],["Pfam%3APF02570","Precorrin-8X methylmutase"],["PROSITE%3APS00304","Small, acid-soluble spore proteins, alpha/beta type, signature 1"],["PROSITE%3APS00684","Small, acid-soluble spore proteins, alpha/beta type, signature 2"]]},{"id":"CHEBI:30742","l":"ethylene glycol","na":3,"nb":7,"a":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"]],"b":[["EC%3A3.1.1.102","mono(ethylene terephthalate) hydrolase"],["RHEA%3A42648","(2,5-ethylene furandicarboxylate)(n) + 2 H2O = (2,5-ethylene furandicarboxylate)(n-1) + 2,5-dicarboxyfuran + ethylene glycol + 2 H(+)"],["RHEA%3A49532","4-[(2-hydroxyethoxy)carbonyl]benzoate + H2O = terephthalate + ethylene glycol + H(+)"],["RHEA%3A80759","bis(2-hydroxyethyl) terephthalate + H2O = 4-[(2-hydroxyethoxy)carbonyl]benzoate + ethylene glycol + H(+)"],["RHEA%3A27630","ethylene glycol + NAD(+) = glycolaldehyde + NADH + H(+)"],["MCSA%3A847","epoxide hydrolase"]]},{"id":"NCBITaxon:28116","l":"Bacteroides ovatus","na":3,"nb":7,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["TED%3AAF-A0A515J030-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A515J030-F1-model_v4_TED01"],["TED%3AAF-A0A5M5C3M7-F1-model_v4_TED01","TED novel fold AF-A0A5M5C3M7-F1-model_v4_TED01"],["TED%3AAF-A0A641PL20-F1-model_v4_TED01","TED novel fold AF-A0A641PL20-F1-model_v4_TED01"],["TED%3AAF-A0A641V3P9-F1-model_v4_TED03","TED novel fold AF-A0A641V3P9-F1-model_v4_TED03"],["TED%3AAF-A0A641VT79-F1-model_v4_TED01","TED novel fold AF-A0A641VT79-F1-model_v4_TED01"],["TED%3AAF-A0A642C648-F1-model_v4_TED01","TED novel fold AF-A0A642C648-F1-model_v4_TED01"]]},{"id":"CHEBI:15890","l":"5,6-dimethylbenzimidazole","na":3,"nb":6,"a":[["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["EC%3A1.13.11.79","aerobic 5,6-dimethylbenzimidazole synthase"],["EC%3A2.4.2.21","nicotinate-nucleotide--dimethylbenzimidazole phosphoribosyltransferase"],["RHEA%3A11196","5,6-dimethylbenzimidazole + nicotinate beta-D-ribonucleotide = alpha-ribazole 5'-phosphate + nicotinate + H(+)"],["RHEA%3A27345","FMNH2 + O2 = dialurate + 5,6-dimethylbenzimidazole + D-erythrose 4-phosphate + H(+)"],["MCSA%3A79","nicotinate-nucleotide-dimethylbenzimidazole phosphoribosyltransferase"],["proteintraitsmech%3ABIOLIP_DMD","DMD-binding site"]]},{"id":"CHEBI:27266","l":"valine","na":3,"nb":6,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.26","The Branched Chain Amino Acid:Cation Symporter (LIVCS) Family"],["TCDB%3A2.A.78","The Branched Chain Amino Acid Exporter (LIV-E) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:55474","l":"N-acyl-L-homoserine lactone","na":3,"nb":6,"a":[["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["EC%3A2.3.1.184","acyl-homoserine-lactone synthase"],["EC%3A3.1.1.81","quorum-quenching N-acyl-homoserine lactonase"],["EC%3A3.5.1.97","acyl-homoserine-lactone acylase"],["RHEA%3A10096","a fatty acyl-[ACP] + S-adenosyl-L-methionine = an N-acyl-L-homoserine lactone + S-methyl-5'-thioadenosine + holo-[ACP] + H(+)"],["RHEA%3A22576","an N-acyl-L-homoserine lactone + H2O = an N-acyl-L-homoserine + H(+)"],["RHEA%3A18937","an N-acyl-L-homoserine lactone + H2O = L-homoserine lactone + a carboxylate"]]},{"id":"NCBITaxon:1390","l":"Bacillus amyloliquefaciens","na":3,"nb":6,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]],"b":[["Pfam%3APF02923","Restriction endonuclease BamHI"],["Pfam%3APF01337","Barstar (barnase inhibitor)"],["Pfam%3APF22148","Fervidolysin N-terminal prodomain"],["PROSITE%3APS00093","N-4 cytosine-specific DNA methylases signature"],["PROSITE%3APS01334","Pyrrolidone-carboxylate peptidase cysteine active site"],["PROSITE%3APS01333","Pyrrolidone-carboxylate peptidase glutamic acid active site"]]},{"id":"CHEBI:17015","l":"riboflavin","na":5,"nb":3,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17015","requires riboflavin"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_RBF","RBF-binding site"]]},{"id":"CHEBI:26672","l":"siderophore","na":3,"nb":5,"a":[["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_26672","siderophore cofactor class"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.17","The Outer Membrane Factor (OMF) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]]},{"id":"GO:0005987","l":"sucrose catabolic process","na":5,"nb":3,"a":[["Synechococcus_Bacillus_SPC.html","Synechococcus-Bacillus Synthetic Photosynthetic Consortium"],["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"],["Synechococcus_Saccharomyces_SPC.html","Synechococcus-Saccharomyces Synthetic Photosynthetic Consortium"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["GO%3A0061704","glycolytic process from sucrose"],["GO%3A0005987","sucrose catabolic process"],["NCBIfam%3ANF006957","fructokinase"]]},{"id":"GO:0006766","l":"vitamin metabolic process","na":3,"nb":5,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["GO%3A0042816","vitamin B6 metabolic process"],["GO%3A0009110","vitamin biosynthetic process"],["GO%3A0009111","vitamin catabolic process"],["GO%3A0006766","vitamin metabolic process"],["Reactome%3AR-HSA-211916","Vitamins"]]},{"id":"GO:0009410","l":"response to xenobiotic stimulus","na":3,"nb":5,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["SkinCom_Synthetic_Skin_Community.html","SkinCom Synthetic Skin Community"]],"b":[["GO%3A0071466","cellular response to xenobiotic stimulus"],["GO%3A0009410","response to xenobiotic stimulus"],["NCBIfam%3ATIGR00957","multi drug resistance-associated protein (MRP)"],["NCBIfam%3ANF018181","R67 dihydrofolate reductase"],["Pfam%3APF06442","R67 dihydrofolate reductase"]]},{"id":"NCBITaxon:1667","l":"Arthrobacter sp.","na":3,"nb":5,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["Pfam%3APF14031","Putative serine dehydratase domain"],["Pfam%3APF02449","Beta-galactosidase"],["Pfam%3APF08533","Beta-galactosidase C-terminal domain"],["Pfam%3APF08532","Beta-galactosidase trimerisation domain"],["TED%3AAF-A0A3C2BWN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C2BWN3-F1-model_v4_TED01"]]},{"id":"CHEBI:17191","l":"L-isoleucine","na":3,"nb":4,"a":[["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"]],"b":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.26","The Branched Chain Amino Acid:Cation Symporter (LIVCS) Family"],["proteintraitsmech%3ABIOLIP_ILE","ILE-binding site"]]},{"id":"CHEBI:18237","l":"glutamic acid","na":4,"nb":3,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:72813","l":"exopolysaccharide","na":4,"nb":3,"a":[["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.18","The Outer Membrane Auxiliary (OMA) Protein Family"]]},{"id":"GO:0019386","l":"methanogenesis, from carbon dioxide","na":3,"nb":4,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Tropidoatractus_Magnetotacticus_Tripartite_Syntrophy.html","Tropidoatractus magnetotacticus Magnetotactic Ciliate Tripartite Syntrophy"]],"b":[["GO%3A0019386","methanogenesis, from carbon dioxide"],["NCBIfam%3ATIGR01723","5,10-methenyltetrahydromethanopterin hydrogenase"],["NCBIfam%3ATIGR01112","tetrahydromethanopterin S-methyltransferase subunit D"],["NCBIfam%3ATIGR01113","tetrahydromethanopterin S-methyltransferase subunit E"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":3,"nb":4,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF09711","CRISPR-associated protein (Cas_Csn2)"],["Pfam%3APF06308","23S rRNA methylastransferase leader peptide (ErmCL)"]]},{"id":"NCBITaxon:3076","l":"Chlorella sorokiniana","na":3,"nb":4,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Dairy_Wastewater_Algal_Cyanobacterial_Cultivation_Panel.html","Dairy Wastewater Algal-Cyanobacterial Cultivation Panel"],["SynCom_Chlorella_sorokiniana_Biogas_Slurry_Coupling_System.html","SynCom + Chlorella sorokiniana Biogas-slurry Coupling System"]],"b":[["TED%3AAF-A0A2P6TR54-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P6TR54-F1-model_v4_TED01"],["TED%3AAF-A0A2P6TVK6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P6TVK6-F1-model_v4_TED01"],["TED%3AAF-A0A2P6TZ25-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2P6TZ25-F1-model_v4_TED02"],["TED%3AAF-A0A2P6TLT0-F1-model_v4_TED05","TED novel fold AF-A0A2P6TLT0-F1-model_v4_TED05"]]},{"id":"NCBITaxon:33038","l":"Mediterraneibacter gnavus","na":4,"nb":3,"a":[["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Clostridial_isoDCA_Mini_Consortium.html","Clostridial isoDCA Mini Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["Pfam%3APF16874","Glycosyl hydrolase family 36 C-terminal domain"],["Pfam%3APF16875","Glycosyl hydrolase family 36 N-terminal domain"],["Pfam%3APF04604","Type-A lantibiotic"]]},{"id":"CHEBI:16482","l":"naphthalene","na":3,"nb":3,"a":[["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"]],"b":[["EC%3A1.14.12.12","naphthalene 1,2-dioxygenase"],["RHEA%3A19173","naphthalene + NADH + O2 + H(+) = (1R,2S)-1,2-dihydronaphthalene-1,2-diol + NAD(+)"],["MCSA%3A130","naphthalene 1,2-dioxygenase"]]},{"id":"GO:0009110","l":"vitamin biosynthetic process","na":3,"nb":3,"a":[["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["GO%3A0042362","fat-soluble vitamin biosynthetic process"],["GO%3A0009110","vitamin biosynthetic process"],["GO%3A0042364","water-soluble vitamin biosynthetic process"]]},{"id":"GO:0098743","l":"cell aggregation","na":3,"nb":3,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["GO%3A0098630","aggregation of unicellular organisms"],["GO%3A0001502","cartilage condensation"],["GO%3A0098743","cell aggregation"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":3,"nb":3,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["Pfam%3APF03423","Carbohydrate binding domain (family 25)"],["Pfam%3APF03422","Carbohydrate binding module (family 6)"],["TED%3AAF-A0A7X5SGP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X5SGP7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:3702","l":"Arabidopsis thaliana","na":2,"nb":18772,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["EC%3A1.1.99.-","With other acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.14.11.-","With 2-oxoglutarate as one donor, and incorporation of one atom each of oxygen into both donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.14.-","With reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen"]]},{"id":"CHEBI:15378","l":"hydron","na":2,"nb":14383,"a":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.1.10","L-xylulose reductase"],["EC%3A1.1.1.100","3-oxoacyl-[acyl-carrier-protein] reductase"],["EC%3A1.1.1.101","acylglycerone-phosphate reductase"],["EC%3A1.1.1.102","3-dehydrosphinganine reductase"],["EC%3A1.1.1.103","L-threonine 3-dehydrogenase"]]},{"id":"CHEBI:30031","l":"succinate(2-)","na":2,"nb":502,"a":[["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["EC%3A1.14.11.1","gamma-butyrobetaine dioxygenase"],["EC%3A1.14.11.10","pyrimidine-deoxynucleoside 1'-dioxygenase"],["EC%3A1.14.11.11","hyoscyamine (6S)-dioxygenase"],["EC%3A1.14.11.12","gibberellin-44 dioxygenase"],["EC%3A1.14.11.13","gibberellin 2beta-dioxygenase"],["EC%3A1.14.11.15","gibberellin 3beta-dioxygenase"]]},{"id":"GO:0010468","l":"regulation of gene expression","na":2,"nb":394,"a":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["ComplexPortal%3ACPX-1129","Atk-1/Akt-2/Sgk-1 protein kinase complex"],["ComplexPortal%3ACPX-5666","CCAAT-binding factor complex, nfya-1 variant"],["ComplexPortal%3ACPX-5667","CCAAT-binding factor complex, nfya-2 variant"],["ComplexPortal%3ACPX-4305","DHIC complex"],["ComplexPortal%3ACPX-3885","sir-2.1-ftt-2 complex"],["ComplexPortal%3ACPX-3886","sir-2.1-par-5 complex"]]},{"id":"CHEBI:4167","l":"D-glucopyranose","na":2,"nb":217,"a":[["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["EC%3A1.1.1.118","glucose 1-dehydrogenase (NAD(+))"],["EC%3A1.1.1.119","glucose 1-dehydrogenase (NADP(+))"],["EC%3A1.1.1.359","aldose 1-dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.1.360","glucose/galactose 1-dehydrogenase"],["EC%3A1.1.1.432","6-dehydroglucose reductase"],["EC%3A1.1.1.47","glucose 1-dehydrogenase [NAD(P)(+)]"]]},{"id":"CHEBI:17996","l":"chloride","na":2,"nb":196,"a":[["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17996","requires chloride"],["EC%3A1.11.2.2","myeloperoxidase"],["EC%3A1.13.11.49","chlorite O2-lyase"],["EC%3A1.14.12.13","2-halobenzoate 1,2-dioxygenase"],["EC%3A1.14.12.9","4-chlorophenylacetate 3,4-dioxygenase"],["EC%3A1.14.13.50","pentachlorophenol monooxygenase"]]},{"id":"GO:0016032","l":"viral process","na":2,"nb":113,"a":[["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"]],"b":[["GO%3A0075526","cap snatching"],["GO%3A0099015","degradation of host chromosome by virus"],["GO%3A0019043","establishment of viral latency"],["GO%3A0039674","exit of virus from host cell nucleus"],["GO%3A0039700","fusion of viral membrane with host outer nuclear membrane"],["GO%3A0075522","IRES-dependent viral translational initiation"]]},{"id":"GO:0006099","l":"tricarboxylic acid cycle","na":2,"nb":92,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["ComplexPortal%3ACPX-3921","2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-9044","Mitochondrial 2-oxoglutarate dehydrogenase complex,CG1544 variant"],["ComplexPortal%3ACPX-9043","Mitochondrial 2-oxoglutarate dehydrogenase complex, CG33791 variant"],["ComplexPortal%3ACPX-1293","Mitochondrial 2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-9061","Mitochondrial 2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-9042","Mitochondrial 2-oxoglutarate dehydrogenase complex, ODGH variant"]]},{"id":"GO:0009733","l":"response to auxin","na":2,"nb":89,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["ComplexPortal%3ACPX-1523","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK10"],["ComplexPortal%3ACPX-1524","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK11"],["ComplexPortal%3ACPX-1525","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK12"],["ComplexPortal%3ACPX-1526","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK13"],["ComplexPortal%3ACPX-1527","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK14"],["ComplexPortal%3ACPX-1528","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK15"]]},{"id":"CHEBI:15354","l":"choline","na":2,"nb":78,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["EC%3A1.1.3.17","choline oxidase"],["EC%3A1.1.99.1","choline dehydrogenase"],["EC%3A1.14.15.7","choline monooxygenase"],["EC%3A2.3.1.6","choline O-acetyltransferase"],["EC%3A2.3.1.91","sinapoylglucose--choline O-sinapoyltransferase"],["EC%3A2.7.1.32","choline kinase"]]},{"id":"CHEBI:29806","l":"fumarate(2-)","na":2,"nb":76,"a":[["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["EC%3A1.3.1.6","fumarate reductase (NADH)"],["EC%3A1.3.2.4","fumarate reductase (cytochrome)"],["EC%3A1.3.4.1","fumarate reductase (CoM/CoB)"],["EC%3A1.3.5.1","succinate dehydrogenase"],["EC%3A1.3.98.1","dihydroorotate oxidase (fumarate)"],["EC%3A3.7.1.14","2-hydroxy-6-oxonona-2,4-dienedioate hydrolase"]]},{"id":"CHEBI:15422","l":"ATP","na":2,"nb":68,"a":[["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15422","requires ATP"],["ARO%3A3002628","aad(6)"],["ARO%3A3002601","aadA"],["ARO%3A3004692","aadA10"],["ARO%3A3002611","aadA11"],["ARO%3A3002612","aadA12"]]},{"id":"GO:0019752","l":"carboxylic acid metabolic process","na":2,"nb":59,"a":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"]],"b":[["GO%3A1902056","(25S)-Delta(7)-dafachronate metabolic process"],["GO%3A0006525","arginine metabolic process"],["GO%3A0009072","aromatic amino acid metabolic process"],["GO%3A0018872","arsonoacetate metabolic process"],["GO%3A0120552","branched-chain alpha-keto acid decarboxylation to branched-chain acyl-CoA"],["GO%3A0009081","branched-chain amino acid metabolic process"]]},{"id":"GO:0006865","l":"amino acid transport","na":2,"nb":52,"a":[["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"]],"b":[["GO%3A0015800","acidic amino acid transport"],["GO%3A0043090","amino acid import"],["GO%3A0051933","amino acid neurotransmitter reuptake"],["GO%3A0003333","amino acid transmembrane transport"],["GO%3A0006865","amino acid transport"],["GO%3A0015802","basic amino acid transport"]]},{"id":"CHEBI:16947","l":"citrate(3-)","na":2,"nb":49,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["EC%3A2.3.3.1","citrate (Si)-synthase"],["EC%3A2.3.3.16","citrate synthase (unknown stereospecificity)"],["EC%3A2.3.3.3","citrate (Re)-synthase"],["EC%3A2.3.3.8","ATP citrate synthase"],["EC%3A2.8.3.10","citrate CoA-transferase"],["EC%3A4.1.3.6","citrate (pro-3S)-lyase"]]},{"id":"GO:0009063","l":"amino acid catabolic process","na":2,"nb":47,"a":[["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"]],"b":[["ComplexPortal%3ACPX-865","Electron transfer flavoprotein complex"],["ComplexPortal%3ACPX-2731","Mitochondrial electron transfer flavoprotein complex"],["GO%3A0042217","1-aminocyclopropane-1-carboxylate catabolic process"],["GO%3A0009063","amino acid catabolic process"],["GO%3A0019665","amino acid fermentation"],["GO%3A0019484","beta-alanine catabolic process"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":46,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF13166","AAA domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF27533","CapK C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"]]},{"id":"CHEBI:16480","l":"nitric oxide","na":2,"nb":43,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"]],"b":[["EC%3A1.14.12.17","nitric oxide dioxygenase"],["EC%3A1.14.13.39","nitric-oxide synthase (NADPH)"],["EC%3A1.14.14.47","nitric-oxide synthase (flavodoxin)"],["EC%3A1.14.15.41","L-tryptophan 4-nitrase"],["EC%3A1.14.15.42","L-tyrosine 3-nitrase"],["EC%3A1.7.1.14","nitric oxide reductase [NAD(P)(+), nitrous oxide-forming]"]]},{"id":"GO:0030163","l":"protein catabolic process","na":2,"nb":40,"a":[["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"]],"b":[["ComplexPortal%3ACPX-1655","i-AAA complex"],["ComplexPortal%3ACPX-1654","m-AAA protease complex"],["GO%3A0002077","acrosome matrix dispersal"],["GO%3A0061684","chaperone-mediated autophagy"],["GO%3A0007174","epidermal growth factor catabolic process"],["GO%3A0006516","glycoprotein catabolic process"]]},{"id":"GO:0019684","l":"photosynthesis, light reaction","na":2,"nb":39,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]],"b":[["GO%3A0019684","photosynthesis, light reaction"],["NCBIfam%3ANF058510","bifunctional rod-capping linker CpcD/ferredoxin--NADP reductase PetH"],["NCBIfam%3ATIGR01332","cytochrome b559 subunit alpha"],["NCBIfam%3ATIGR01333","cytochrome b559 subunit beta"],["NCBIfam%3ANF043009","cytochrome c-554 Puf2C"],["NCBIfam%3ANF040862","light-harvesting antenna LH1, beta subunit"]]},{"id":"GO:0006006","l":"glucose metabolic process","na":2,"nb":38,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["GO%3A0006094","gluconeogenesis"],["GO%3A0006007","glucose catabolic process"],["GO%3A0006006","glucose metabolic process"],["Reactome%3AR-HSA-70326","Glucose metabolism"],["NCBIfam%3ANF033735","ArsJ-associated glyceraldehyde-3-phosphate dehydrogenase"],["NCBIfam%3ANF045551","ATP-dependent glucokinase"]]},{"id":"GO:0008643","l":"carbohydrate transport","na":2,"nb":38,"a":[["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["ComplexPortal%3ACPX-5990","sgcABC sugar permease enzyme II complex"],["GO%3A0033231","carbohydrate export"],["GO%3A0034219","carbohydrate transmembrane transport"],["GO%3A0008643","carbohydrate transport"],["GO%3A0015772","oligosaccharide transport"],["GO%3A0015774","polysaccharide transport"]]},{"id":"CHEBI:16150","l":"benzoate","na":2,"nb":36,"a":[["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["EC%3A1.14.12.10","benzoate 1,2-dioxygenase"],["EC%3A1.14.14.92","benzoate 4-monooxygenase"],["EC%3A1.2.1.28","benzaldehyde dehydrogenase (NAD(+))"],["EC%3A1.2.1.7","benzaldehyde dehydrogenase (NADP(+))"],["EC%3A2.1.1.273","benzoate O-methyltransferase"],["EC%3A3.1.1.84","cocaine esterase"]]},{"id":"GO:0000272","l":"polysaccharide catabolic process","na":2,"nb":36,"a":[["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["GO%3A0042122","alginic acid catabolic process"],["GO%3A0031222","arabinan catabolic process"],["GO%3A0030995","cell septum edging catabolic process"],["GO%3A0044347","cell wall polysaccharide catabolic process"],["GO%3A0010147","fructan catabolic process"],["GO%3A2000885","galactoglucomannan catabolic process"]]},{"id":"GO:0009628","l":"response to abiotic stimulus","na":2,"nb":34,"a":[["South_Bay_Salt_Pond_Methane_Restoration_Community.html","South Bay Salt Pond Methane Restoration Microbial Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"]],"b":[["GO%3A0071214","cellular response to abiotic stimulus"],["GO%3A0009582","detection of abiotic stimulus"],["GO%3A0097318","invasive growth in response to abiotic stimulus"],["GO%3A0009628","response to abiotic stimulus"],["GO%3A0051602","response to electrical stimulus"],["GO%3A0009629","response to gravity"]]},{"id":"GO:0007154","l":"cell communication","na":2,"nb":32,"a":[["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["GO%3A0007412","axon target recognition"],["GO%3A0007267","cell-cell signaling"],["GO%3A0010643","cell communication by chemical coupling"],["GO%3A0010644","cell communication by electrical coupling"],["GO%3A0007154","cell communication"],["GO%3A0086065","cell communication involved in cardiac conduction"]]},{"id":"GO:0009228","l":"thiamine biosynthetic process","na":2,"nb":32,"a":[["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"],["Variovorax_Cryptococcus_Vitamin_Mutualism_Microcosm.html","Variovorax-Cryptococcus Vitamin Cross-Feeding Microcosm"]],"b":[["ComplexPortal%3ACPX-2140","iscS-thiI sulfurtransferase complex"],["GO%3A0009228","thiamine biosynthetic process"],["GO%3A0036172","thiamine salvage"],["NCBIfam%3ATIGR00204","1-deoxy-D-xylulose-5-phosphate synthase"],["NCBIfam%3ATIGR02351","2-iminoacetate synthase ThiH"],["NCBIfam%3ANF009078","bifunctional hydroxymethylpyrimidine kinase/phosphomethylpyrimidine kinase"]]},{"id":"CHEBI:15882","l":"phenol","na":2,"nb":31,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]],"b":[["EC%3A1.14.13.244","phenol 2-monooxygenase (NADH)"],["EC%3A1.14.13.7","phenol 2-monooxygenase (NADPH)"],["EC%3A1.14.14.20","phenol 2-monooxygenase (FADH2)"],["EC%3A2.1.1.25","phenol O-methyltransferase"],["EC%3A2.4.2.55","nicotinate D-ribonucleotide:phenol phospho-D-ribosyltransferase"],["EC%3A2.7.1.238","phenol phosphorylase"]]},{"id":"CHEBI:15347","l":"acetone","na":2,"nb":27,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["EC%3A1.1.1.80","isopropanol dehydrogenase (NADP(+))"],["EC%3A1.14.13.226","acetone monooxygenase (methyl acetate-forming)"],["EC%3A1.14.14.141","psoralen synthase"],["EC%3A1.14.14.148","angelicin synthase"],["EC%3A2.6.3.1","oximinotransferase"],["EC%3A4.1.1.4","acetoacetate decarboxylase"]]},{"id":"CHEBI:57586","l":"biotinate","na":2,"nb":24,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_57586","requires biotinate"],["EC%3A2.8.1.6","biotin synthase"],["EC%3A3.5.1.12","biotinidase"],["EC%3A6.2.1.11","biotin--CoA ligase"],["EC%3A6.3.4.10","biotin--[propionyl-CoA-carboxylase (ATP-hydrolyzing)] ligase"],["EC%3A6.3.4.11","biotin--[methylcrotonoyl-CoA-carboxylase] ligase"]]},{"id":"NCBITaxon:160488","l":"Pseudomonas putida (strain ATCC 47054 / DSM 6125 / CFBP 8728 / NCIMB 11950 / KT2440)","na":2,"nb":24,"a":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"]],"b":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF00842","Alanine racemase, C-terminal domain"],["Pfam%3APF01168","Alanine racemase, N-terminal domain"],["Pfam%3APF13372","Alginate export"],["Pfam%3APF03705","CheR methyltransferase, all-alpha domain"],["Pfam%3APF01739","CheR methyltransferase, SAM binding domain"]]},{"id":"GO:0045333","l":"cellular respiration","na":2,"nb":21,"a":[["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"]],"b":[["ComplexPortal%3ACPX-560","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-563","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-567","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-9308","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-1721","Mitochondrial respiratory chain complex IV, COX5A variant"],["ComplexPortal%3ACPX-1722","Mitochondrial respiratory chain complex IV, COX5B variant"]]},{"id":"GO:0006089","l":"lactate metabolic process","na":2,"nb":20,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"]],"b":[["ComplexPortal%3ACPX-6573","L-lactate dehydrogenase A complex"],["ComplexPortal%3ACPX-6599","L-lactate dehydrogenase B complex"],["ComplexPortal%3ACPX-6602","L-lactate dehydrogenase C complex"],["ComplexPortal%3ACPX-6598","L-lactate dehydrogenase complex, A1B3 variant"],["ComplexPortal%3ACPX-6594","L-lactate dehydrogenase complex, A2B2 variant"],["ComplexPortal%3ACPX-6592","L-lactate dehydrogenase complex, A3B1 variant"]]},{"id":"CHEBI:16750","l":"guanosine","na":2,"nb":19,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["EC%3A2.4.2.1","purine-nucleoside phosphorylase"],["EC%3A2.4.2.15","guanosine phosphorylase"],["EC%3A2.7.1.73","inosine kinase"],["EC%3A3.5.4.15","guanosine deaminase"],["RHEA%3A27862","3'-GMP + H2O = guanosine + phosphate"],["RHEA%3A27714","GMP + H2O = guanosine + phosphate"]]},{"id":"CHEBI:16838","l":"polyphosphate","na":2,"nb":18,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"]],"b":[["EC%3A2.7.1.63","polyphosphate--glucose phosphotransferase"],["EC%3A2.7.4.1","ATP-polyphosphate phosphotransferase"],["EC%3A2.7.4.17","3-phosphoglyceroyl-phosphate--polyphosphate phosphotransferase"],["EC%3A2.7.4.20","dolichyl-diphosphate--polyphosphate phosphotransferase"],["EC%3A2.7.4.33","AMP-polyphosphate phosphotransferase"],["EC%3A2.7.4.34","GDP-polyphosphate phosphotransferase"]]},{"id":"GO:0009636","l":"response to toxic substance","na":2,"nb":18,"a":[["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"]],"b":[["ComplexPortal%3ACPX-2254","Cus cation efflux complex"],["GO%3A0097237","cellular response to toxic substance"],["GO%3A0060992","response to fungicide"],["GO%3A0009635","response to herbicide"],["GO%3A0017085","response to insecticide"],["GO%3A0010188","response to microbial phytotoxin"]]},{"id":"NCBITaxon:4577","l":"Zea mays","na":2,"nb":18,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"]],"b":[["IDPO%3A0000002","disorder"],["Pfam%3APF14861","Plant antimicrobial peptide"],["Pfam%3APF02041","Auxin binding protein"],["Pfam%3APF25436","BSD2 cysteine rich domain"],["Pfam%3APF23493","Cysteinyl-tRNA ligase anticodon binding domain"],["Pfam%3APF03330","Lytic transglycolase"]]},{"id":"GO:0033103","l":"protein secretion by the type VI secretion system","na":2,"nb":17,"a":[["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"]],"b":[["GO%3A0033103","protein secretion by the type VI secretion system"],["NCBIfam%3ATIGR03354","type VI secretion system-associated FHA domain protein TagH"],["NCBIfam%3ATIGR03345","type VI secretion system ATPase TssH"],["NCBIfam%3ATIGR03357","type VI secretion system baseplate subunit TssE"],["NCBIfam%3ATIGR03359","type VI secretion system baseplate subunit TssF"],["NCBIfam%3ATIGR03347","type VI secretion system baseplate subunit TssG"]]},{"id":"GO:0051707","l":"response to other organism","na":2,"nb":17,"a":[["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0002213","defense response to insect"],["GO%3A0002215","defense response to nematode"],["GO%3A0098542","defense response to other organism"],["GO%3A0098543","detection of other organism"],["GO%3A0009617","response to bacterium"],["GO%3A0009620","response to fungus"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":2,"nb":16,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF28265","Lipoprotein N-acylation protein LnsA-like"],["Pfam%3APF16403","Bacterial surface protein, Ig-like domain"],["Pfam%3APF03944","delta endotoxin"],["Pfam%3APF03945","delta endotoxin, N-terminal domain"],["Pfam%3APF06355","Aegerolysin"]]},{"id":"CHEBI:36080","l":"protein","na":2,"nb":15,"a":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["Wollastonite_Ramichloridium_Talaromyces_Fungal_Consortium.html","Wollastonite Ramichloridium-Talaromyces Fungal Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A3.A.16","The Endoplasmic Reticular Retrotranslocon (ER-RT) Family"],["TCDB%3A3.A.27","The Endoplasmic Reticulum Membrane Protein Insertion Complex (EMC) Family"],["TCDB%3A9.A.57","The Extended-Synaptotagmin (E-Syt) Family"],["TCDB%3A3.A.13","The Filamentous Phage Exporter (FPhE) Family"],["TCDB%3A9.A.37","The Nuclear Import Tax Protein (Tax) Family"]]},{"id":"GO:0006970","l":"response to osmotic stress","na":2,"nb":15,"a":[["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["GO%3A0071470","cellular response to osmotic stress"],["GO%3A0043575","detection of osmotic stimulus"],["GO%3A0006972","hyperosmotic response"],["GO%3A0006971","hypotonic response"],["GO%3A0010335","response to non-ionic osmotic stress"],["GO%3A0006970","response to osmotic stress"]]},{"id":"GO:0019645","l":"anaerobic electron transport chain","na":2,"nb":15,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["ComplexPortal%3ACPX-320","DmaABC DMSO reductase complex"],["ComplexPortal%3ACPX-1975","Formate dehydrogenase N complex"],["ComplexPortal%3ACPX-6029","Formate dehydrogenase Z complex"],["ComplexPortal%3ACPX-317","Formate hydrogenlyase-H/Hydrogenase-3 complex"],["ComplexPortal%3ACPX-6028","Formate hydrogenlyase-H/Hydrogenase-4 complex"],["ComplexPortal%3ACPX-281","Hydrogenase-1 complex"]]},{"id":"GO:0009408","l":"response to heat","na":2,"nb":14,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["PMI_Variovorax_Thermotolerance_Collection.html","PMI Variovorax Thermotolerance Collection"]],"b":[["ComplexPortal%3ACPX-4887","DNA-directed RNA polymerase holoenzyme complex, SigmaH variant"],["ComplexPortal%3ACPX-636","ISW1b chromatin remodeling complex"],["GO%3A0034605","cellular response to heat"],["GO%3A0036168","filamentous growth of a population of unicellular organisms in response to heat"],["GO%3A0010286","heat acclimation"],["GO%3A0009408","response to heat"]]},{"id":"CHEBI:15428","l":"glycine","na":2,"nb":13,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["MCSA%3A718","caspase-1"],["MCSA%3A599","dipeptidase E"],["MCSA%3A906","gelatinase A"],["MCSA%3A762","glycine C-acetyltransferase"],["MCSA%3A746","L-peptidase"],["MCSA%3A477","picornain 3C"]]},{"id":"GO:0006032","l":"chitin catabolic process","na":2,"nb":13,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["GO%3A0006032","chitin catabolic process"],["NCBIfam%3ANF052619","chitinase ChiD"],["NCBIfam%3ANF041127","exo-beta-D-glucosaminidase"],["NCBIfam%3ANF041128","glucosamine-6-phosphate deaminase"],["NCBIfam%3ATIGR03851","N-acetylglucosamine/diacetylchitobiose ABC transporter substrate-binding protein"],["InterPro%3AIPR005089","Carbohydrate-binding module family 19"]]},{"id":"NCBITaxon:272562","l":"Clostridium acetobutylicum (strain ATCC 824 / DSM 792 / JCM 1419 / IAM 19013 / LMG 5710 / NBRC 13948 / NRRL B-527 / VKM B-1787 / 2291 / W)","na":2,"nb":13,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["Pfam%3APF10882","Bacterial PH domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["Pfam%3APF09940","Domain of unknown function (DUF2172)"],["Pfam%3APF16254","Domain of unknown function (DUF4910)"],["Pfam%3APF01183","Glycosyl hydrolases family 25"],["Pfam%3APF16221","winged helix-turn-helix"]]},{"id":"NCBITaxon:644","l":"Aeromonas hydrophila","na":2,"nb":13,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["Pfam%3APF01117","Aerolysin toxin"],["Pfam%3APF03440","Aerolysin/Pertussis toxin (APT) domain"],["Pfam%3APF21327","GspA, peptidase C39-like domain"],["Pfam%3APF04231","Endonuclease I"],["PROSITE%3APS01092","Adenylate cyclase class-I signature 1"],["PROSITE%3APS01093","Adenylate cyclase class-I signature 2"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus (strain ATCC 27405 / DSM 1237 / JCM 9322 / NBRC 103400 / NCIMB 10682 / NRRL B-4536 / VPI 7372)","na":2,"nb":12,"a":[["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["Pfam%3APF00942","Cellulose binding domain"],["Pfam%3APF17996","Carbohydrate esterase 2 N-terminal"],["Pfam%3APF00963","Cohesin domain"],["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF00404","Dockerin type I domain"]]},{"id":"NCBITaxon:51453","l":"Trichoderma reesei","na":2,"nb":12,"a":[["Trichoderma_Ecoli_Cellulosic_Isobutanol_Coculture.html","Trichoderma-E. coli Cellulosic Isobutanol Coculture"],["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["Pfam%3APF28347","ACE1 small beta sheet domain"],["Pfam%3APF28329","Zinc finger transcription factor ace1 N-terminal domain"],["Pfam%3APF00150","Cellulase (glycosyl hydrolase family 5)"],["Pfam%3APF22514","EXPB1-like domain 1"],["Pfam%3APF01341","Glycosyl hydrolases family 6"],["Pfam%3APF00840","Glycosyl hydrolase family 7"]]},{"id":"GO:0015889","l":"cobalamin transport","na":2,"nb":11,"a":[["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["ComplexPortal%3ACPX-2105","Cobalamin ABC transporter complex"],["ComplexPortal%3ACPX-1083","Cobalamin outer membrane transporter complex"],["ComplexPortal%3ACPX-5774","Cubam cobalamin uptake receptor complex"],["ComplexPortal%3ACPX-5847","Cubam cobalamin uptake receptor complex"],["GO%3A0015889","cobalamin transport"],["Reactome%3AR-HSA-9758890","Transport of RCbl within the body"]]},{"id":"GO:0019605","l":"butyrate metabolic process","na":2,"nb":11,"a":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["GO%3A0030645","acetyl-CoA fermentation to butanoate"],["GO%3A0046358","butyrate biosynthetic process"],["GO%3A0046359","butyrate catabolic process"],["GO%3A0019605","butyrate metabolic process"],["GO%3A0019475","L-lysine fermentation"],["GO%3A0044813","pyruvate fermentation to butanoate"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":2,"nb":11,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["Pfam%3APF22829","HphA C-terminal domain"],["Pfam%3APF22828","HphA N-terminal heme-binding domain"],["Pfam%3APF28205","Ciprofloxacin tolerance protein"],["Pfam%3APF19582","Solute-binding protein AdeT 1/2"],["PROSITE%3APS00337","Beta-lactamase class-D active site"],["Pfam%3APF24575","Surface lipoprotein assembly modifier, N-terminal TPR repeats"]]},{"id":"CHEBI:3098","l":"bile acid","na":2,"nb":9,"a":[["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.28","The Bile Acid:Na+ Symporter (BASS) Family"],["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"],["TCDB%3A9.A.19","The Lipid Intermediate Transporter (Arv1) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":2,"nb":9,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"]],"b":[["Pfam%3APF07835","Bacterial aa3 type cytochrome c oxidase subunit IV"],["Pfam%3APF04828","Glutathione-dependent formaldehyde-activating enzyme"],["Pfam%3APF16448","LapD/MoxY periplasmic domain"],["Pfam%3APF17267","Family of unknown function (DUF5333)"],["Pfam%3APF17272","Family of unknown function (DUF5337)"],["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":2,"nb":9,"a":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF25954","CusB-like, beta-barrel domain"],["Pfam%3APF13438","Domain of unknown function (DUF4113)"],["Pfam%3APF03767","HAD superfamily, subfamily IIIB (Acid phosphatase)"],["Pfam%3APF03496","ADP-ribosyltransferase exoenzyme"]]},{"id":"CHEBI:15366","l":"acetic acid","na":8,"nb":2,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["MCSA%3A431","acetylxylan esterase"],["MCSA%3A996","Peptidoglycan-N-acetylglucosamine deacetylase Bc1960"]]},{"id":"CHEBI:16793","l":"mercury(2+)","na":2,"nb":8,"a":[["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["EC%3A1.16.1.1","mercury(II) reductase"],["EC%3A4.99.1.2","alkylmercury lyase"],["RHEA%3A18777","an alkylmercury + H(+) = an alkane + Hg(2+)"],["RHEA%3A32815","Hg(2+)(in) = Hg(2+)(out)"],["RHEA%3A23856","Hg + NADP(+) + H(+) = Hg(2+) + NADPH"],["MCSA%3A297","alkylmercury lyase"]]},{"id":"GO:0009651","l":"response to salt stress","na":2,"nb":8,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"]],"b":[["GO%3A0071472","cellular response to salt stress"],["GO%3A0042538","hyperosmotic salinity response"],["GO%3A0042539","hypotonic salinity response"],["GO%3A0072342","response to anion stress"],["GO%3A0043157","response to cation stress"],["GO%3A0009651","response to salt stress"]]},{"id":"GO:0033013","l":"tetrapyrrole metabolic process","na":2,"nb":8,"a":[["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["GO%3A0009235","cobalamin metabolic process"],["GO%3A0006778","porphyrin-containing compound metabolic process"],["GO%3A0033014","tetrapyrrole biosynthetic process"],["GO%3A0033015","tetrapyrrole catabolic process"],["GO%3A0033013","tetrapyrrole metabolic process"],["NCBIfam%3ANF047825","tryptophan-rich sensory protein TspO"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":2,"nb":8,"a":[["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]],"b":[["Pfam%3APF02927","Cellulase N-terminal ig-like domain"],["Pfam%3APF00404","Dockerin type I domain"],["PROSITE%3APS00448","Clostridium cellulosome enzymes repeated domain signature"],["PROSITE%3APS60032","Glycosyl hydrolases family 9 (GH9) active site signature 1"],["PROSITE%3APS00592","Glycosyl hydrolases family 9 (GH9) active site signature 2"],["PROSITE%3APS00698","Glycosyl hydrolases family 9 (GH9) active site signature 3"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":8,"nb":2,"a":[["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"],["Sedimenting_Arabinose_Glucose_Saccharomyces_Coculture.html","Sedimenting Arabinose-Glucose Saccharomyces Coculture"]],"b":[["PROSITE%3APS00820","Glucoamylase active site region signature"],["TED%3AAF-A0A7I9G6Y3-F1-model_v4_TED02","TED novel fold AF-A0A7I9G6Y3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:920","l":"Acidithiobacillus ferrooxidans","na":8,"nb":2,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["Pfam%3APF20538","Family of unknown function (DUF6753)"],["PROSITE%3APS01007","Transposases, Mutator family, signature"]]},{"id":"CHEBI:17824","l":"propan-2-ol","na":2,"nb":7,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"]],"b":[["EC%3A1.1.1.80","isopropanol dehydrogenase (NADP(+))"],["EC%3A1.14.13.227","propane 2-monooxygenase"],["RHEA%3A62196","propan-2-ol + 2 Fe(III)-[cytochrome c] = acetone + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A41984","propan-2-ol + NAD(+) = acetone + NADH + H(+)"],["RHEA%3A21792","propan-2-ol + NADP(+) = acetone + NADPH + H(+)"],["RHEA%3A49992","propane + NADH + O2 + H(+) = propan-2-ol + NAD(+) + H2O"]]},{"id":"CHEBI:49713","l":"lithium(1+)","na":2,"nb":7,"a":[["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["RHEA%3A72631","3 Li(+)(out) + Ca(2+)(in) = 3 Li(+)(in) + Ca(2+)(out)"],["RHEA%3A70431","Li(+)(in) + 2 H(+)(out) = Li(+)(out) + 2 H(+)(in)"],["RHEA%3A75063","Li(+)(in) + 2 hydrogencarbonate(in) + chloride(out) = Li(+)(out) + 2 hydrogencarbonate(out) + chloride(in)"],["RHEA%3A78551","Li(+)(in) = Li(+)(out)"],["RHEA%3A72415","Li(+)(in) + Na(+)(out) = Li(+)(out) + Na(+)(in)"],["RHEA%3A72407","Li(+)(out) + H(+)(in) = Li(+)(in) + H(+)(out)"]]},{"id":"GO:0043448","l":"alkane catabolic process","na":7,"nb":2,"a":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Nitratireductor_Gordonia_Z123_LDPE_Degradation_SynCom.html","Nitratireductor-Gordonia Z123 LDPE-Degradation SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"]],"b":[["GO%3A0043448","alkane catabolic process"],["GO%3A0046188","methane catabolic process"]]},{"id":"NCBITaxon:1305","l":"Streptococcus sanguinis","na":2,"nb":7,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["Pfam%3APF09254","FokI, cleavage domain"],["Pfam%3APF02981","FokI, recognition domain, subdomain 1"],["Pfam%3APF02980","FokI, recognition domain, subdomain 2"],["Pfam%3APF07501","G5 domain"],["Pfam%3APF07581","The GLUG motif"],["TED%3AAF-A0A7H8V358-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H8V358-F1-model_v4_TED01"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":2,"nb":7,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["Pfam%3APF19443","DAHL domain"],["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"],["Pfam%3APF03524","Conjugal transfer protein"],["Pfam%3APF27439","Chaperone protein DnaJ C-terminal region"],["Pfam%3APF10907","Protein of unknown function (DUF2749)"],["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":2,"nb":7,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["Pfam%3APF11766","Agglutinin-like protein, N-terminal domain"],["Pfam%3APF16856","Cell division control protein 4 dimerisation domain"],["Pfam%3APF18325","Fatty acid synthase subunit alpha Acyl carrier domain"],["Pfam%3APF18314","Fatty acid synthase type I helical domain"],["Pfam%3APF17828","N-terminal domain in fatty acid synthase subunit beta"],["Pfam%3APF05388","Carboxypeptidase Y pro-peptide"]]},{"id":"CHEBI:16457","l":"S,S-dimethyl-beta-propiothetin","na":2,"nb":6,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["EC%3A2.1.1.269","dimethylsulfoniopropionate demethylase"],["EC%3A4.4.1.3","dimethylpropiothetin dethiomethylase"],["RHEA%3A35467","S,S-dimethyl-beta-propiothetin + (6S)-5,6,7,8-tetrahydrofolate = 3-(methylsulfanyl)propanoate + (6S)-5-methyl-5,6,7,8-tetrahydrofolate + H(+)"],["RHEA%3A19965","S,S-dimethyl-beta-propiothetin = acrylate + dimethyl sulfide + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.15","The Betaine/Carnitine/Choline Transporter (BCCT) Family"]]},{"id":"CHEBI:16995","l":"oxalic acid","na":6,"nb":2,"a":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Wollastonite_Ramichloridium_Talaromyces_Fungal_Consortium.html","Wollastonite Ramichloridium-Talaromyces Fungal Consortium"]],"b":[["TCDB%3A2.A.53","The Sulfate Permease (SulP) Family"],["proteintraitsmech%3ABIOLIP_OXD","OXD-binding site"]]},{"id":"CHEBI:30772","l":"butyric acid","na":6,"nb":2,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["MCSA%3A900","para-nitrobenzyl esterase"],["proteintraitsmech%3ABIOLIP_BUA","BUA-binding site"]]},{"id":"GO:0009235","l":"cobalamin metabolic process","na":2,"nb":6,"a":[["Soil_Corrinoid_B12_Reservoir_Community.html","Soil Corrinoid Reservoir Microbial Community"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["GO%3A0009236","cobalamin biosynthetic process"],["GO%3A0042366","cobalamin catabolic process"],["GO%3A0009235","cobalamin metabolic process"],["Reactome%3AR-HSA-9759218","Cobalamin (Cbl) metabolism"],["NCBIfam%3ANF021725","methylmalonic aciduria and homocystinuria type D protein"],["Pfam%3APF10229","Methylmalonic aciduria and homocystinuria type D protein"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":2,"nb":6,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]],"b":[["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF03744","6-carboxyhexanoate--CoA ligase"],["PROSITE%3APS00836","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 1"],["PROSITE%3APS00837","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 2"],["TED%3AAF-A0A2S5D092-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5D092-F1-model_v4_TED01"],["TED%3AAF-A0A2S0JW09-F1-model_v4_TED01","TED novel fold AF-A0A2S0JW09-F1-model_v4_TED01"]]},{"id":"NCBITaxon:32049","l":"Picosynechococcus sp. PCC 7002","na":2,"nb":6,"a":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"]],"b":[["Pfam%3APF09367","CpeS-like protein"],["Pfam%3APF06206","CpeT/CpcT family (DUF1001)"],["Pfam%3APF12965","Domain of unknown function (DUF3854)"],["Pfam%3APF19928","Domain of unknown function (DUF6391)"],["Pfam%3APF09366","Protein of unknown function (DUF1997)"],["Pfam%3APF14870","Photosynthesis system II assembly factor YCF48"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":2,"nb":6,"a":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["Pfam%3APF01177","Asp/Glu/Hydantoin racemase"],["Pfam%3APF11339","Protein of unknown function (DUF3141)"],["PROSITE%3APS01303","BCCT family of transporters signature"],["PROSITE%3APS00665","Dihydrodipicolinate synthase signature 1"],["TED%3AAF-A0A2J0YSD4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J0YSD4-F1-model_v4_TED01"],["TED%3AAF-A0A843ZNG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843ZNG8-F1-model_v4_TED01"]]},{"id":"CHEBI:16865","l":"gamma-aminobutyric acid","na":2,"nb":5,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A2.A.42","The Hydroxy/Aromatic Amino Acid Permease (HAAAP) Family"],["TCDB%3A2.A.22","The Neurotransmitter:Sodium Symporter (NSS) Family"],["proteintraitsmech%3ABIOLIP_ABU","ABU-binding site"]]},{"id":"GO:0015945","l":"methanol metabolic process","na":2,"nb":5,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"]],"b":[["GO%3A0019387","methanogenesis, from methanol"],["GO%3A0046169","methanol biosynthetic process"],["GO%3A0046170","methanol catabolic process"],["GO%3A0015945","methanol metabolic process"],["GO%3A0015946","methanol oxidation"]]},{"id":"NCBITaxon:3039","l":"Euglena gracilis","na":2,"nb":5,"a":[["Dairy_Wastewater_Algal_Cyanobacterial_Cultivation_Panel.html","Dairy Wastewater Algal-Cyanobacterial Cultivation Panel"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"]],"b":[["Pfam%3APF01333","Apocytochrome F, C-terminal"],["Pfam%3APF16639","Apocytochrome F, N-terminal"],["Pfam%3APF04940","Sensors of blue-light using FAD"],["Pfam%3APF10371","Domain of unknown function"],["PROSITE%3APS00938","Initiation factor 3 signature"]]},{"id":"NCBITaxon:5507","l":"Fusarium oxysporum","na":2,"nb":5,"a":[["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["Pfam%3APF02015","Glycosyl hydrolase family 45"],["PROSITE%3APS01140","Glycosyl hydrolases family 45 active site"],["TED%3AAF-A0A2H3TJY2-F1-model_v4_TED01","TED novel fold AF-A0A2H3TJY2-F1-model_v4_TED01"],["TED%3AAF-A0A420N954-F1-model_v4_TED01","TED novel fold AF-A0A420N954-F1-model_v4_TED01"],["TED%3AAF-A0A420P6J4-F1-model_v4_TED01","TED novel fold AF-A0A420P6J4-F1-model_v4_TED01"]]},{"id":"CHEBI:33363","l":"palladium atom","na":2,"nb":4,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_PD_DINUCLEAR","dinuclear palladium site"],["proteintraitsmech%3AMETALPDB_PD_MONONUCLEAR","mononuclear palladium site"],["proteintraitsmech%3AMETALPDB_PD_TETRANUCLEAR","tetranuclear palladium site"],["proteintraitsmech%3AMETALPDB_PD_TRINUCLEAR","trinuclear palladium site"]]},{"id":"GO:0018874","l":"benzoate metabolic process","na":4,"nb":2,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["GO%3A0043639","benzoate catabolic process"],["GO%3A0018874","benzoate metabolic process"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":2,"nb":4,"a":[["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["TED%3AAF-A0A7W3UB61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W3UB61-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F4B3-F1-model_v4_TED01","TED novel fold AF-A0A0D7F4B3-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F6R4-F1-model_v4_TED01","TED novel fold AF-A0A0D7F6R4-F1-model_v4_TED01"],["TED%3AAF-A0A7W3YI15-F1-model_v4_TED02","TED novel fold AF-A0A7W3YI15-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":4,"nb":2,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"],["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["Pfam%3APF22538","Hexaprenyl diphosphate synthase, small subunit"],["PROSITE%3APS01066","Undecaprenyl pyrophosphate synthase family signature"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":4,"nb":2,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]],"b":[["Pfam%3APF02052","Gallidermin"],["Pfam%3APF04604","Type-A lantibiotic"]]},{"id":"NCBITaxon:269797","l":"Methanosarcina barkeri str. Fusaro","na":2,"nb":4,"a":[["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["Pfam%3APF27274","Coenzyme F430 synthetase CfbE, C-terminal domain"],["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"],["Pfam%3APF09505","Dimethylamine methyltransferase (Dimeth_PyL)"],["PROSITE%3APS00507","Nickel-dependent hydrogenases large subunit signature 1"]]},{"id":"NCBITaxon:2822231","l":"Phanerodontia chrysosporium","na":2,"nb":4,"a":[["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"]],"b":[["Pfam%3APF18637","Aldos-2-ulose dehydratase/isomerase (AUDH) Cupin domain"],["Pfam%3APF16010","Cytochrome domain of cellobiose dehydrogenase"],["PROSITE%3APS00623","GMC oxidoreductases signature 1"],["Pfam%3APF22301","Aldos-2-ulose dehydratase, beta-propeller domain"]]},{"id":"NCBITaxon:37919","l":"Rhodococcus opacus","na":4,"nb":2,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"],["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["Pfam%3APF11794","4-hydroxyphenylacetate 3-hydroxylase N terminal"],["Pfam%3APF03241","4-hydroxyphenylacetate 3-hydroxylase C terminal"]]},{"id":"CHEBI:15741","l":"succinic acid","na":3,"nb":2,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_SIN","SIN-binding site"]]},{"id":"CHEBI:15956","l":"biotin","na":3,"nb":2,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15956","requires biotin"],["proteintraitsmech%3ABIOLIP_BTN","BTN-binding site"]]},{"id":"CHEBI:24898","l":"isoleucine","na":2,"nb":3,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["MCSA%3A906","gelatinase A"]]},{"id":"CHEBI:33377","l":"dysprosium atom","na":2,"nb":3,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_33377","requires Tb"],["proteintraitsmech%3AMETALPDB_DY_DINUCLEAR","dinuclear dysprosium site"],["proteintraitsmech%3AMETALPDB_DY_MONONUCLEAR","mononuclear dysprosium site"]]},{"id":"CHEBI:49470","l":"aluminium(3+)","na":2,"nb":3,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Rice_Acid_Soil_Bioinoculant_SynCom.html","Rice Acid Soil Bioinoculant SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["proteintraitsmech%3ABIOLIP_AL","AL-binding site"]]},{"id":"CHEBI:5199","l":"Fusaric acid","na":2,"nb":3,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["TCDB%3A2.A.85","The Aromatic Acid Exporter (ArAE) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.17","The Outer Membrane Factor (OMF) Family"]]},{"id":"CHEBI:58187","l":"alginate","na":2,"nb":3,"a":[["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["EC%3A5.1.3.37","mannuronan 5-epimerase"],["RHEA%3A45572","[(1->4)-beta-D-mannuronosyl](n) = [alginate](n)"],["RHEA%3A15637","[alginate](n) + GDP-alpha-D-mannuronate = [alginate](n+1) + GDP + H(+)"]]},{"id":"GO:0006068","l":"ethanol catabolic process","na":2,"nb":3,"a":[["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["GO%3A0006068","ethanol catabolic process"],["Reactome%3AR-HSA-71384","Ethanol oxidation"],["NCBIfam%3ANF050026","acetaldehyde dehydrogenase ExaC"]]},{"id":"GO:0019385","l":"methanogenesis, from acetate","na":2,"nb":3,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["GO%3A0019385","methanogenesis, from acetate"],["NCBIfam%3ANF014596","carbon monoxide dehydrogenase beta subunit family protein"],["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"]]},{"id":"NCBITaxon:1492","l":"Clostridium butyricum","na":2,"nb":3,"a":[["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["Pfam%3APF00302","Chloramphenicol acetyltransferase"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["PROSITE%3APS00100","Chloramphenicol acetyltransferase active site"]]},{"id":"NCBITaxon:166486","l":"Roseburia intestinalis","na":3,"nb":2,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["TED%3AAF-A0A3R6HE72-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R6HE72-F1-model_v4_TED01"],["TED%3AAF-A0A6L6XJA4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L6XJA4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:239935","l":"Akkermansia muciniphila","na":3,"nb":2,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["TED%3AAF-A0A2N8IJN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N8IJN7-F1-model_v4_TED01"],["TED%3AAF-A0A6N2UM07-F1-model_v4_TED01","TED novel fold AF-A0A6N2UM07-F1-model_v4_TED01"]]},{"id":"NCBITaxon:253","l":"Chryseobacterium indologenes","na":2,"nb":3,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"]],"b":[["PROSITE%3APS00744","Beta-lactamases class B signature 2"],["TED%3AAF-A0A7T8U7T3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T8U7T3-F1-model_v4_TED01"],["TED%3AAF-A0A0N0ZUI2-F1-model_v4_TED01","TED novel fold AF-A0A0N0ZUI2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28108","l":"Alteromonas macleodii","na":2,"nb":3,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["TED%3AAF-A0A6C5N007-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6C5N007-F1-model_v4_TED01"],["TED%3AAF-A0A126Q0V0-F1-model_v4_TED01","TED novel fold AF-A0A126Q0V0-F1-model_v4_TED01"],["TED%3AAF-A0A6T9Y0H6-F1-model_v4_TED01","TED novel fold AF-A0A6T9Y0H6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:33035","l":"Blautia producta","na":3,"nb":2,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["TED%3AAF-A0A2S4GEH6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S4GEH6-F1-model_v4_TED01"],["TED%3AAF-A0A7G5MNY0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G5MNY0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:357809","l":"Lachnoclostridium phytofermentans ISDg","na":2,"nb":3,"a":[["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"]],"b":[["Pfam%3APF09508","Lacto-N-biose phosphorylase N-terminal TIM barrel domain"],["Pfam%3APF17386","Lacto-N-biose phosphorylase C-terminal domain"],["Pfam%3APF17385","Lacto-N-biose phosphorylase central domain"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":3,"nb":2,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["PROSITE%3APS00336","Beta-lactamase class-C active site"],["TED%3AAF-A0A155XQ59-F1-model_v4_TED02","TED novel fold AF-A0A155XQ59-F1-model_v4_TED02"]]},{"id":"NCBITaxon:561879","l":"Bacillus safensis","na":2,"nb":3,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"]],"b":[["Pfam%3APF09221","Bacteriocin class IId cyclical uberolysin-like"],["TED%3AAF-A0A1L6ZPA6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6ZPA6-F1-model_v4_TED01"],["TED%3AAF-A0A1L6ZPC9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6ZPC9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:587753","l":"Pseudomonas chlororaphis","na":3,"nb":2,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["TED%3AAF-A0A8A9Z2C4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A8A9Z2C4-F1-model_v4_TED03"],["TED%3AAF-A0A0A6DEM6-F1-model_v4_TED01","TED novel fold AF-A0A0A6DEM6-F1-model_v4_TED01"]]},{"id":"CHEBI:15930","l":"atrazine","na":2,"nb":2,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["EC%3A3.8.1.8","atrazine chlorohydrolase"],["RHEA%3A11312","atrazine + H2O = hydroxyatrazine + chloride + H(+)"]]},{"id":"CHEBI:16094","l":"thiosulfate(2-)","na":2,"nb":2,"a":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["proteintraitsmech%3ABIOLIP_THJ","THJ-binding site"]]},{"id":"CHEBI:17300","l":"tetrachloroethene","na":2,"nb":2,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["EC%3A1.21.99.5","tetrachloroethene reductive dehalogenase"],["RHEA%3A20353","trichloroethene + chloride + A + H(+) = tetrachloroethene + AH2"]]},{"id":"CHEBI:231672","l":"bis(2-hydroxyethyl) terephthalate","na":2,"nb":2,"a":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["RHEA%3A80759","bis(2-hydroxyethyl) terephthalate + H2O = 4-[(2-hydroxyethoxy)carbonyl]benzoate + ethylene glycol + H(+)"],["proteintraitsmech%3ABIOLIP_C8X","C8X-binding site"]]},{"id":"CHEBI:27518","l":"acetylene","na":2,"nb":2,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"]],"b":[["EC%3A4.2.1.112","acetylene hydratase"],["RHEA%3A17885","acetaldehyde = acetylene + H2O"]]},{"id":"CHEBI:30046","l":"oxidovanadium(2+)","na":2,"nb":2,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["RHEA%3A75007","VO(2+)(out) + H(+)(out) = VO(2+)(in) + H(+)(in)"],["proteintraitsmech%3ABIOLIP_VVO","VVO-binding site"]]},{"id":"CHEBI:30751","l":"formic acid","na":2,"nb":2,"a":[["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["MCSA%3A38","GTP cyclohydrolase I"],["proteintraitsmech%3ABIOLIP_FMT","FMT-binding site"]]},{"id":"CHEBI:47916","l":"flavonoid","na":2,"nb":2,"a":[["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]]},{"id":"CHEBI:48782","l":"cerium(3+)","na":2,"nb":2,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_48782","requires cerium(3+)"],["proteintraitsmech%3ABIOLIP_CE","CE-binding site"]]},{"id":"CHEBI:49701","l":"lanthanum(3+)","na":2,"nb":2,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_49701","requires lanthanum(3+)"],["proteintraitsmech%3ABIOLIP_LA","LA-binding site"]]},{"id":"CHEBI:8005","l":"peptidoglycan","na":2,"nb":2,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.17","The Proton-dependent Oligopeptide Transporter (POT/PTR) Family"]]},{"id":"GO:0005983","l":"starch catabolic process","na":2,"nb":2,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"]],"b":[["GO%3A0005983","starch catabolic process"],["NCBIfam%3ATIGR02103","pullulanase-type alpha-1,6-glucosidase"]]},{"id":"NCBITaxon:145262","l":"Methanothermobacter thermautotrophicus","na":2,"nb":2,"a":[["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]],"b":[["Pfam%3APF12686","Protein of unknown function (DUF3800)"],["PROSITE%3APS00093","N-4 cytosine-specific DNA methylases signature"]]},{"id":"NCBITaxon:2162","l":"Methanobacterium formicicum","na":2,"nb":2,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"]],"b":[["Pfam%3APF04432","Coenzyme F420 hydrogenase/dehydrogenase, beta subunit C terminus"],["Pfam%3APF04422","Coenzyme F420 hydrogenase/dehydrogenase, beta subunit N-term"]]},{"id":"NCBITaxon:2223","l":"Methanothrix soehngenii","na":2,"nb":2,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"],["TED%3AAF-A0A7K4AJW5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K4AJW5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:39152","l":"Methanococcus maripaludis","na":2,"nb":2,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"]],"b":[["Pfam%3APF02571","Precorrin-6x reductase CbiJ/CobK"],["TED%3AAF-A0A7J9PSA9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J9PSA9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:39488","l":"Anaerobutyricum hallii","na":2,"nb":2,"a":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["TED%3AAF-A0A414B1Y3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A414B1Y3-F1-model_v4_TED01"],["TED%3AAF-A0A415G3S7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A415G3S7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:4952","l":"Yarrowia lipolytica","na":2,"nb":2,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Yarrowia_lipolytica_Division_of_Labor_Lipid_Consortium.html","Yarrowia lipolytica Division-of-Labor Lipid Consortium"]],"b":[["TED%3AAF-A0A7H0KE04-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H0KE04-F1-model_v4_TED01"],["TED%3AAF-A0A371C7L0-F1-model_v4_TED02","TED novel fold AF-A0A371C7L0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:84022","l":"Andreesenella acetica","na":2,"nb":2,"a":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"]],"b":[["TED%3AAF-A0A0D8IAM1-F1-model_v4_TED01","TED novel fold AF-A0A0D8IAM1-F1-model_v4_TED01"],["TED%3AAF-A0A0D8IBN9-F1-model_v4_TED02","TED novel fold AF-A0A0D8IBN9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":1,"nb":49554,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["EC%3A1.1.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.1.98.-","With other, known, acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":1,"nb":17470,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["EC%3A1.1.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.16.-.-","Oxidizing metal ions"],["EC%3A1.18.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.7.-","With an iron-sulfur protein as acceptor"]]},{"id":"NCBITaxon:7227","l":"Drosophila melanogaster","na":1,"nb":11343,"a":[["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.14.15.-","With reduced iron-sulfur protein as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.17.-","With reduced ascorbate as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.-.-","Acting on paired donors, with incorporation or reduction of molecular oxygen. The oxygen incorporated need not be derived from O2"],["EC%3A1.2.4.-","With a disulfide as acceptor"],["EC%3A1.6.99.-","With other acceptors"]]},{"id":"NCBITaxon:6239","l":"Caenorhabditis elegans","na":1,"nb":9682,"a":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"]],"b":[["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.14.14.-","With reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.17.-","With reduced ascorbate as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.19.-","With oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water"],["EC%3A1.14.99.-","Miscellaneous"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii (strain ATCC 43067 / DSM 2661 / JAL-1 / JCM 10045 / NBRC 100440)","na":1,"nb":5181,"a":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]],"b":[["EC%3A1.12.99.-","With other acceptors"],["EC%3A1.3.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.3.-.-","Acting on the CH-CH group of donors"],["EC%3A1.8.98.-","With other, known, acceptors"],["EC%3A1.97.1.-","Other oxidoreductases"],["EC%3A2.1.2.-","Hydroxymethyl-, formyl- and related transferases"]]},{"id":"GO:0006355","l":"regulation of DNA-templated transcription","na":1,"nb":1131,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["ComplexPortal%3ACPX-2829","ACF chromatin remodeling complex"],["ComplexPortal%3ACPX-2742","ATAC histone acetyltransferase complex"],["ComplexPortal%3ACPX-8344","BRE1 E3 ubiquitin ligase complex"],["ComplexPortal%3ACPX-1830","CCAAT-binding factor complex"],["ComplexPortal%3ACPX-2767","CCAAT-binding factor complex"],["ComplexPortal%3ACPX-2771","CCR4-NOT mRNA deadenylase complex"]]},{"id":"CHEBI:16810","l":"2-oxoglutarate(2-)","na":1,"nb":672,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"]],"b":[["EC%3A1.1.1.286","isocitrate--homoisocitrate dehydrogenase"],["EC%3A1.1.1.399","2-oxoglutarate reductase"],["EC%3A1.1.1.41","isocitrate dehydrogenase (NAD(+))"],["EC%3A1.1.1.42","isocitrate dehydrogenase (NADP(+))"],["EC%3A1.1.5.13","(S)-2-hydroxyglutarate dehydrogenase"],["EC%3A1.1.99.2","L-2-hydroxyglutarate dehydrogenase"]]},{"id":"GO:0006412","l":"translation","na":1,"nb":455,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["GO%3A0002181","cytoplasmic translation"],["GO%3A0032543","mitochondrial translation"],["GO%3A0032544","plastid translation"],["GO%3A0140241","translation at synapse"],["GO%3A0006412","translation"],["Reactome%3AR-HSA-72766","Translation"]]},{"id":"GO:0055085","l":"transmembrane transport","na":1,"nb":439,"a":[["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"]],"b":[["ComplexPortal%3ACPX-271","5-hydroxytryptamine-3A/B receptor complex"],["ComplexPortal%3ACPX-275","5-hydroxytryptamine-3A/B receptor complex"],["ComplexPortal%3ACPX-277","5-hydroxytryptamine-3A/B receptor complex"],["ComplexPortal%3ACPX-276","5-hydroxytryptamine-3A/C receptor complex"],["ComplexPortal%3ACPX-272","5-hydroxytryptamine-3A/D receptor complex"],["ComplexPortal%3ACPX-273","5-hydroxytryptamine-3A/E receptor complex"]]},{"id":"CHEBI:29985","l":"L-glutamate(1-)","na":1,"nb":426,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["EC%3A1.14.11.76","L-glutamate 3(R)-hydroxylase"],["EC%3A1.2.1.88","L-glutamate gamma-semialdehyde dehydrogenase"],["EC%3A1.4.1.13","glutamate synthase (NADPH)"],["EC%3A1.4.1.14","glutamate synthase (NADH)"],["EC%3A1.4.1.2","glutamate dehydrogenase"],["EC%3A1.4.1.3","glutamate dehydrogenase [NAD(P)(+)]"]]},{"id":"GO:0006508","l":"proteolysis","na":1,"nb":393,"a":[["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"]],"b":[["ComplexPortal%3ACPX-6224","Active Protein C complex"],["ComplexPortal%3ACPX-6222","alpha-thrombin complex"],["ComplexPortal%3ACPX-3663","Caspase-8 complex"],["ComplexPortal%3ACPX-975","Caspase-8 complex"],["ComplexPortal%3ACPX-6221","Coagulation factor Va-Xa complex"],["ComplexPortal%3ACPX-279","Coagulation factor VIIa - tissue factor complex"]]},{"id":"GO:0006260","l":"DNA replication","na":1,"nb":311,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["ComplexPortal%3ACPX-6641","ASCC DNA alkylation repair complex"],["ComplexPortal%3ACPX-568","Chromatin assembly factor 1 complex"],["ComplexPortal%3ACPX-2671","CMG helicase complex"],["ComplexPortal%3ACPX-297","CMG helicase complex"],["ComplexPortal%3ACPX-4526","CMG helicase complex"],["ComplexPortal%3ACPX-4541","CMG helicase complex"]]},{"id":"CHEBI:29101","l":"sodium(1+)","na":1,"nb":292,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29101","requires sodium(1+)"],["EC%3A7.2.1.1","NADH:ubiquinone reductase (Na(+)-transporting)"],["EC%3A7.2.1.2","ferredoxin--NAD(+) oxidoreductase (Na(+)-transporting)"],["EC%3A7.2.1.4","tetrahydromethanopterin S-methyltransferase"],["EC%3A7.2.2.1","Na(+)-transporting two-sector ATPase"],["EC%3A7.2.2.13","Na(+)/K(+)-exchanging ATPase"]]},{"id":"GO:0006096","l":"glycolytic process","na":1,"nb":117,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["ComplexPortal%3ACPX-1992","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-2039","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-2040","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-1994","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"],["ComplexPortal%3ACPX-2041","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"],["ComplexPortal%3ACPX-2042","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"]]},{"id":"GO:0042221","l":"response to chemical","na":1,"nb":104,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0070887","cellular response to chemical stimulus"],["GO%3A0036503","ERAD pathway"],["GO%3A1904612","response to 2,3,7,8-tetrachlorodibenzodioxine"],["GO%3A1904610","response to 3,3',4,4',5-pentachlorobiphenyl"],["GO%3A0036275","response to 5-fluorouracil"],["GO%3A0001101","response to acid chemical"]]},{"id":"GO:0009252","l":"peptidoglycan biosynthetic process","na":1,"nb":90,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["GO%3A0009252","peptidoglycan biosynthetic process"],["GO%3A0018104","peptidoglycan-protein cross-linking"],["NCBIfam%3ATIGR00492","alanine racemase"],["NCBIfam%3ANF007061","bifunctional glycosyl transferase/transpeptidase"],["NCBIfam%3ANF006986","bifunctional UDP-N-acetylglucosamine diphosphorylase/glucosamine-1-phosphate N-acetyltransferase GlmU"]]},{"id":"GO:0009306","l":"protein secretion","na":1,"nb":84,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["GO%3A0070162","adiponectin secretion"],["GO%3A0036394","amylase secretion"],["GO%3A0110010","basolateral protein secretion"],["GO%3A0038055","BMP secretion"],["GO%3A0030073","insulin secretion"],["GO%3A1990773","matrix metallopeptidase secretion"]]},{"id":"GO:0006796","l":"phosphate-containing compound metabolic process","na":1,"nb":72,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"]],"b":[["GO%3A0016311","dephosphorylation"],["GO%3A0006796","phosphate-containing compound metabolic process"],["GO%3A0016310","phosphorylation"],["NCBIfam%3ANF053626","ATP-dependent ribose-1-phosphate kinase"],["NCBIfam%3ANF002317","inorganic diphosphatase"],["NCBIfam%3ATIGR02966","phosphate regulon sensor histidine kinase PhoR"]]},{"id":"GO:0048519","l":"negative regulation of biological process","na":1,"nb":72,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["GO%3A1905869","negative regulation of 3'-UTR-mediated mRNA stabilization"],["GO%3A0045759","negative regulation of action potential"],["GO%3A0048519","negative regulation of biological process"],["GO%3A0030712","negative regulation of border follicle cell delamination"],["GO%3A1903780","negative regulation of cardiac conduction"],["GO%3A0048523","negative regulation of cellular process"]]},{"id":"GO:0006631","l":"fatty acid metabolic process","na":1,"nb":71,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["ComplexPortal%3ACPX-6169","Mitochondrial propionyl-CoA carboxylase complex"],["ComplexPortal%3ACPX-1038","PIP2-OAF1 transcription factor complex"],["ComplexPortal%3ACPX-25756","SREBP-SCAP transcription regulator complex"],["GO%3A0006633","fatty acid biosynthetic process"],["GO%3A0009062","fatty acid catabolic process"],["GO%3A0006631","fatty acid metabolic process"]]},{"id":"GO:0006955","l":"immune response","na":1,"nb":69,"a":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"]],"b":[["ComplexPortal%3ACPX-381","Interleukin-12 complex"],["ComplexPortal%3ACPX-387","Interleukin-12 complex"],["ComplexPortal%3ACPX-382","Interleukin-12-receptor ligand complex"],["ComplexPortal%3ACPX-3290","Interleukin-23 complex"],["ComplexPortal%3ACPX-389","Interleukin-23-receptor complex"],["ComplexPortal%3ACPX-383","Interleukin-23 receptor-ligand complex"]]},{"id":"GO:0006814","l":"sodium ion transport","na":1,"nb":67,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"]],"b":[["GO%3A0003096","renal sodium ion transport"],["GO%3A0035725","sodium ion transmembrane transport"],["GO%3A0006814","sodium ion transport"],["NCBIfam%3ANF050096","bicarbonate transporter BicA"],["NCBIfam%3ATIGR02711","cation/acetate symporter ActP"],["NCBIfam%3ANF047943","citrate/sodium symporter CitS"]]},{"id":"GO:0006950","l":"response to stress","na":1,"nb":67,"a":[["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"]],"b":[["GO%3A0033554","cellular response to stress"],["GO%3A0006952","defense response"],["GO%3A0033555","multicellular organismal response to stress"],["GO%3A0003299","muscle hypertrophy in response to stress"],["GO%3A0009271","phage shock"],["GO%3A0034059","response to anoxia"]]},{"id":"GO:0000271","l":"polysaccharide biosynthetic process","na":1,"nb":66,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"]],"b":[["ComplexPortal%3ACPX-417","Glucosidase II complex"],["GO%3A0051072","4,6-pyruvylated galactose residue biosynthetic process"],["GO%3A0042121","alginic acid biosynthetic process"],["GO%3A0035884","arabinan biosynthetic process"],["GO%3A0045227","capsule polysaccharide biosynthetic process"],["GO%3A0070592","cell wall polysaccharide biosynthetic process"]]},{"id":"CHEBI:18407","l":"hydrogen cyanide","na":1,"nb":63,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"]],"b":[["EC%3A1.14.17.4","aminocyclopropanecarboxylate oxidase"],["EC%3A1.14.19.52","camalexin synthase"],["EC%3A1.16.1.6","cyanocobalamin reductase"],["EC%3A1.4.99.5","glycine dehydrogenase (cyanide-forming)"],["EC%3A2.8.1.1","thiosulfate sulfurtransferase"],["EC%3A4.1.2.10","(R)-mandelonitrile lyase"]]},{"id":"GO:0044282","l":"small molecule catabolic process","na":1,"nb":63,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"]],"b":[["GO%3A0046164","alcohol catabolic process"],["GO%3A0046395","carboxylic acid catabolic process"],["GO%3A0019341","dibenzo-p-dioxin catabolic process"],["GO%3A0046294","formaldehyde catabolic process"],["GO%3A0046952","ketone body catabolic process"],["GO%3A0042182","ketone catabolic process"]]},{"id":"GO:0071973","l":"bacterial-type flagellum-dependent cell motility","na":1,"nb":60,"a":[["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"]],"b":[["ComplexPortal%3ACPX-4886","DNA-directed RNA polymerase holoenzyme complex, SigmaF variant"],["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["GO%3A0071973","bacterial-type flagellum-dependent cell motility"],["GO%3A0071978","bacterial-type flagellum-dependent swarming motility"]]},{"id":"CHEBI:17879","l":"4-hydroxybenzoate","na":1,"nb":57,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["EC%3A1.13.11.41","2,4'-dihydroxyacetophenone dioxygenase"],["EC%3A1.14.13.2","4-hydroxybenzoate 3-monooxygenase"],["EC%3A1.14.13.33","4-hydroxybenzoate 3-monooxygenase [NAD(P)H]"],["EC%3A1.14.13.64","4-hydroxybenzoate 1-hydroxylase"],["EC%3A1.14.14.92","benzoate 4-monooxygenase"],["EC%3A1.14.19.55","4-hydroxybenzoate brominase (decarboxylating)"]]},{"id":"CHEBI:15589","l":"(S)-malate(2-)","na":1,"nb":56,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["EC%3A1.1.1.299","malate dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.1.37","(S)-malate dehydrogenase (NAD(+), oxaloacetate-forming)"],["EC%3A1.1.1.38","malate dehydrogenase (oxaloacetate-decarboxylating)"],["EC%3A1.1.1.39","malate dehydrogenase (decarboxylating)"],["EC%3A1.1.1.40","malate dehydrogenase (oxaloacetate-decarboxylating) (NADP(+))"],["EC%3A1.1.1.82","malate dehydrogenase (NADP(+))"]]},{"id":"NCBITaxon:2","l":"Bacteria","na":56,"nb":1,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2","Bacteria orthologous groups (OrthoDB)"]]},{"id":"GO:0046394","l":"carboxylic acid biosynthetic process","na":1,"nb":55,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["GO%3A0042861","achromobactin biosynthetic process"],["GO%3A1901112","actinorhodin biosynthetic process"],["GO%3A0006523","alanine biosynthetic process"],["GO%3A0019578","aldaric acid biosynthetic process"],["GO%3A0042121","alginic acid biosynthetic process"],["GO%3A0009073","aromatic amino acid biosynthetic process"]]},{"id":"GO:0006094","l":"gluconeogenesis","na":1,"nb":52,"a":[["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"]],"b":[["ComplexPortal%3ACPX-1992","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-2039","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-2040","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-1994","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"],["ComplexPortal%3ACPX-2041","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"],["ComplexPortal%3ACPX-2042","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"]]},{"id":"GO:0009117","l":"nucleotide metabolic process","na":1,"nb":50,"a":[["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"]],"b":[["GO%3A0009394","2'-deoxyribonucleotide metabolic process"],["GO%3A0009187","cyclic nucleotide metabolic process"],["GO%3A0015959","diadenosine polyphosphate metabolic process"],["GO%3A0072387","flavin adenine dinucleotide metabolic process"],["GO%3A0046496","nicotinamide nucleotide metabolic process"],["GO%3A0009165","nucleotide biosynthetic process"]]},{"id":"GO:0044550","l":"secondary metabolite biosynthetic process","na":1,"nb":46,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["GO%3A1900581","(17Z)-protosta-17(20),24-dien-3beta-ol biosynthetic process"],["GO%3A0009821","alkaloid biosynthetic process"],["GO%3A1900587","arugosin biosynthetic process"],["GO%3A0036184","asperthecin biosynthetic process"],["GO%3A0062032","cichorine biosynthetic process"],["GO%3A1900799","cordyol C biosynthetic process"]]},{"id":"CHEBI:30212","l":"photon","na":1,"nb":45,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["EC%3A1.10.3.9","photosystem II"],["EC%3A1.13.12.13","Oplophorus-luciferin 2-monooxygenase"],["EC%3A1.13.12.18","dinoflagellate luciferase"],["EC%3A1.13.12.5","Renilla-type luciferase"],["EC%3A1.13.12.6","Cypridina-luciferin 2-monooxygenase"],["EC%3A1.13.12.7","firefly luciferase"]]},{"id":"CHEBI:506227","l":"N-acetyl-D-glucosamine","na":1,"nb":44,"a":[["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["EC%3A1.1.3.29","N-acylhexosamine oxidase"],["EC%3A2.3.1.3","glucosamine N-acetyltransferase"],["EC%3A2.4.1.211","1,3-beta-galactosyl-N-acetylhexosamine phosphorylase"],["EC%3A2.4.1.280","N,N'-diacetylchitobiose phosphorylase"],["EC%3A2.4.1.320","1,4-beta-mannosyl-N-acetylglucosamine phosphorylase"],["EC%3A2.4.1.90","N-acetyllactosamine synthase"]]},{"id":"GO:0042178","l":"xenobiotic catabolic process","na":1,"nb":42,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["GO%3A0046230","2-aminobenzenesulfonate catabolic process"],["GO%3A0046304","2-nitropropane catabolic process"],["GO%3A0019610","3-hydroxyphenylacetate catabolic process"],["GO%3A0019380","3-phenylpropionate catabolic process"],["GO%3A0046196","4-nitrophenol catabolic process"],["GO%3A0019639","6-hydroxycineole catabolic process"]]},{"id":"GO:0030198","l":"extracellular matrix organization","na":1,"nb":41,"a":[["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]],"b":[["ComplexPortal%3ACPX-1801","Integrin alpha2-beta1 complex"],["ComplexPortal%3ACPX-3115","Integrin alpha2-beta1 complex"],["ComplexPortal%3ACPX-4423","Matrilin-1 complex"],["ComplexPortal%3ACPX-4463","Matrilin-1 complex"],["ComplexPortal%3ACPX-4521","Matrilin-1 complex"],["ComplexPortal%3ACPX-4503","Matrilin-1 - Matrilin-3 complex"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima (strain ATCC 43589 / DSM 3109 / JCM 10099 / NBRC 100826 / MSB8)","na":1,"nb":39,"a":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]],"b":[["Pfam%3APF02829","3H domain"],["Pfam%3APF13175","AAA ATPase domain"],["Pfam%3APF01958","Aspartate dehydrogenase, C-terminal"],["Pfam%3APF05448","Acetyl xylan esterase (AXE1)"],["Pfam%3APF04509","CheC-like family"],["Pfam%3APF13690","Chemotaxis phosphatase CheX"]]},{"id":"GO:0006954","l":"inflammatory response","na":1,"nb":38,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["ComplexPortal%3ACPX-2862","Caspase-7 complex"],["ComplexPortal%3ACPX-3947","Caspase-7 complex"],["ComplexPortal%3ACPX-363","Heparanase complex"],["ComplexPortal%3ACPX-10322","IL33 receptor-ligand complex"],["ComplexPortal%3ACPX-9301","Interleukin-17A complex"],["ComplexPortal%3ACPX-10317","Interleukin-26 complex"]]},{"id":"GO:0007267","l":"cell-cell signaling","na":1,"nb":38,"a":[["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["ComplexPortal%3ACPX-10317","Interleukin-26 complex"],["GO%3A0035425","autocrine signaling"],["GO%3A0061939","c-di-GMP signaling"],["GO%3A0007267","cell-cell signaling"],["GO%3A0045168","cell-cell signaling involved in cell fate commitment"],["GO%3A0060764","cell-cell signaling involved in mammary gland development"]]},{"id":"GO:0008283","l":"cell population proliferation","na":1,"nb":37,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["ComplexPortal%3ACPX-2799","CRL4-DCAF4 E3 ubiquitin ligase complex, CUL4A variant"],["ComplexPortal%3ACPX-2859","CRL4-DCAF4 E3 ubiquitin ligase complex, CUL4B variant"],["GO%3A0008283","cell population proliferation"],["GO%3A0071838","cell proliferation in bone marrow"],["GO%3A0035736","cell proliferation involved in compound eye morphogenesis"],["GO%3A0060722","cell proliferation involved in embryonic placenta development"]]},{"id":"GO:0009231","l":"riboflavin biosynthetic process","na":1,"nb":36,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["GO%3A0009231","riboflavin biosynthetic process"],["NCBIfam%3ANF000814","6,7-dimethyl-8-ribityllumazine synthase"],["NCBIfam%3ANF009084","6,7-dimethyl-8-ribityllumazine synthase"],["NCBIfam%3ANF013081","6,7-dimethyl-8-ribityllumazine synthase"],["NCBIfam%3ATIGR00114","6,7-dimethyl-8-ribityllumazine synthase"],["NCBIfam%3ANF006803","bifunctional 3,4-dihydroxy-2-butanone-4-phosphate synthase/GTP cyclohydrolase II"]]},{"id":"GO:1900376","l":"regulation of secondary metabolite biosynthetic process","na":1,"nb":36,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"]],"b":[["GO%3A1900377","negative regulation of secondary metabolite biosynthetic process"],["GO%3A1900378","positive regulation of secondary metabolite biosynthetic process"],["GO%3A1900177","regulation of aflatoxin biosynthetic process"],["GO%3A1900626","regulation of arugosin biosynthetic process"],["GO%3A1900379","regulation of asperthecin biosynthetic process"],["GO%3A1900861","regulation of cordyol C biosynthetic process"]]},{"id":"NCBITaxon:1898203","l":"Lachnospiraceae bacterium","na":1,"nb":35,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]],"b":[["TED%3AAF-A0A2G3Q064-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G3Q064-F1-model_v4_TED01"],["TED%3AAF-A0A316PVU3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A316PVU3-F1-model_v4_TED02"],["TED%3AAF-A0A349YHB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349YHB4-F1-model_v4_TED01"],["TED%3AAF-A0A349ZVK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349ZVK2-F1-model_v4_TED01"],["TED%3AAF-A0A354ID29-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A354ID29-F1-model_v4_TED04"],["TED%3AAF-A0A355NJL5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A355NJL5-F1-model_v4_TED02"]]},{"id":"CHEBI:17855","l":"triglyceride","na":1,"nb":34,"a":[["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["EC%3A2.3.1.158","phospholipid:diacylglycerol acyltransferase"],["EC%3A2.3.1.77","triacylglycerol--sterol O-acyltransferase"],["EC%3A3.1.1.3","triacylglycerol lipase"],["EC%3A3.1.1.34","lipoprotein lipase"],["EC%3A3.1.1.79","hormone-sensitive lipase"],["RHEA%3A77987","9-hydroxy-octadecanoate + a triacylglycerol = 9-(acyloxy)-octadecanoate + a 1,3-diacylglycerol"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":1,"nb":32,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["Pfam%3APF25848","Rodlin protein"],["Pfam%3APF13420","Acetyltransferase (GNAT) domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF26381","BREX System ATPase PglY protein 5th domain"],["Pfam%3APF26382","BREX System ATPase PglY protein 6th domain"]]},{"id":"GO:0044780","l":"bacterial-type flagellum assembly","na":1,"nb":30,"a":[["SynCom_MetG2_Rhizobacteria_Sugarcane_Stress_Resilience.html","SynCom MetG2 Rhizobacteria Sugarcane Stress Resilience"]],"b":[["ComplexPortal%3ACPX-4886","DNA-directed RNA polymerase holoenzyme complex, SigmaF variant"],["GO%3A0044780","bacterial-type flagellum assembly"],["NCBIfam%3ANF007836","flagella biosynthesis regulatory protein FliT"],["NCBIfam%3ANF006281","flagella length regulator FlaG"],["NCBIfam%3ANF047373","flagellar assembly lytic transglycosylase"],["NCBIfam%3ATIGR02541","flagellar assembly peptidoglycan hydrolase FlgJ"]]},{"id":"GO:0046718","l":"symbiont entry into host cell","na":1,"nb":30,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["ComplexPortal%3ACPX-5768","MERS-CoV Spike - human DPP4 receptor complex"],["ComplexPortal%3ACPX-5769","MERS-CoV Spike - human DPP4 receptor complex"],["ComplexPortal%3ACPX-5683","SARS-CoV-2 Spike - human ACE2 receptor complex"],["ComplexPortal%3ACPX-6761","SARS-CoV-2 Spike - human CLEC4M lectin complex"],["ComplexPortal%3ACPX-5695","SARS-CoV Spike - human ACE2 receptor complex"],["ComplexPortal%3ACPX-5696","SARS-CoV Spike - human CLEC4M lectin complex"]]},{"id":"GO:0006526","l":"L-arginine biosynthetic process","na":1,"nb":28,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["ComplexPortal%3ACPX-579","Carbamoyl-phosphate synthase arginine-specific"],["ComplexPortal%3ACPX-1937","Carbamoyl phosphate synthetase complex"],["ComplexPortal%3ACPX-1151","N-acetylglutamate synthase NAGS/NAGK complex"],["GO%3A0006526","L-arginine biosynthetic process"],["NCBIfam%3ANF003474","acetylornithine deacetylase"],["NCBIfam%3ATIGR01892","acetylornithine deacetylase"]]},{"id":"CHEBI:16235","l":"guanine","na":1,"nb":27,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["EC%3A2.4.2.1","purine-nucleoside phosphorylase"],["EC%3A2.4.2.15","guanosine phosphorylase"],["EC%3A2.4.2.29","tRNA-guanosine(34) preQ1 transglycosylase"],["EC%3A2.4.2.48","tRNA-guanine(15) transglycosylase"],["EC%3A2.4.2.64","tRNA-guanosine(34) queuine transglycosylase"],["EC%3A2.4.2.8","hypoxanthine phosphoribosyltransferase"]]},{"id":"CHEBI:17234","l":"glucose","na":26,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:16007","l":"methanethiol","na":1,"nb":25,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["EC%3A1.14.13.131","dissimilatory dimethyl-sulfide monooxygenase"],["EC%3A1.8.1.21","dissimilatory dimethyldisulfide reductase"],["EC%3A1.8.3.4","methanethiol oxidase"],["EC%3A2.1.1.251","methylated-thiol--coenzyme M methyltransferase"],["EC%3A2.1.1.334","methanethiol S-methyltransferase"],["EC%3A2.5.1.49","O-acetylhomoserine aminocarboxypropyltransferase"]]},{"id":"CHEBI:18346","l":"vanillin","na":1,"nb":25,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"]],"b":[["EC%3A1.1.3.38","vanillyl-alcohol oxidase"],["EC%3A1.11.1.16","versatile peroxidase"],["EC%3A1.13.11.43","lignostilbene alphabeta-dioxygenase"],["EC%3A1.13.11.88","isoeugenol monooxygenase"],["EC%3A1.13.11.94","4-vinylguaiacol dioxygenase"],["EC%3A1.2.1.67","vanillin dehydrogenase"]]},{"id":"NCBITaxon:226186","l":"Bacteroides thetaiotaomicron (strain ATCC 29148 / DSM 2079 / JCM 5827 / CCUG 10774 / NCTC 10582 / VPI-5482 / E50)","na":1,"nb":25,"a":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"]],"b":[["Pfam%3APF06439","3-keto-alpha-glucoside-1,2-lyase-like domain"],["Pfam%3APF13444","Acetyltransferase (GNAT) domain"],["Pfam%3APF19576","Acyltransferase"],["Pfam%3APF23764","GLAA-B beta-barrel domain II"],["Pfam%3APF13715","CarboxypepD_reg-like domain"],["Pfam%3APF26120","SusF, first starch specific CBM"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":1,"nb":25,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["Pfam%3APF13372","Alginate export"],["Pfam%3APF25965","ALG44 beta-barrel domain"],["Pfam%3APF25964","ALG44, barrel-sandwich hybrid domain"],["Pfam%3APF16844","Dinitrogenase iron-molybdenum cofactor, N-terminal"],["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"]]},{"id":"GO:0002221","l":"pattern recognition receptor signaling pathway","na":1,"nb":24,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["ComplexPortal%3ACPX-4242","Caspase-1 complex"],["ComplexPortal%3ACPX-952","Caspase-1 complex"],["ComplexPortal%3ACPX-4144","NLRC4 inflammasome"],["ComplexPortal%3ACPX-4082","NLRP1 inflammasome"],["ComplexPortal%3ACPX-4947","NLRP1 inflammasome, variant 1"],["ComplexPortal%3ACPX-4948","NLRP1 inflammasome, variant 2"]]},{"id":"GO:0018958","l":"phenol-containing compound metabolic process","na":1,"nb":24,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["GO%3A0031147","1-(3,5-dichloro-2,6-dihydroxy-4-methoxyphenyl)hexan-1-one metabolic process"],["GO%3A0018921","3-hydroxybenzyl alcohol metabolic process"],["GO%3A1901022","4-hydroxyphenylacetate metabolic process"],["GO%3A0018960","4-nitrophenol metabolic process"],["GO%3A0042215","anaerobic phenol-containing compound metabolic process"],["GO%3A0036182","asperthecin metabolic process"]]},{"id":"GO:0006221","l":"pyrimidine nucleotide biosynthetic process","na":1,"nb":22,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["ComplexPortal%3ACPX-579","Carbamoyl-phosphate synthase arginine-specific"],["GO%3A0009221","pyrimidine deoxyribonucleotide biosynthetic process"],["GO%3A0006221","pyrimidine nucleotide biosynthetic process"],["GO%3A0032262","pyrimidine nucleotide salvage"],["GO%3A0009220","pyrimidine ribonucleotide biosynthetic process"],["NCBIfam%3ANF018158","CTP synthase N-terminus"]]},{"id":"CHEBI:17437","l":"dimethyl sulfide","na":1,"nb":21,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["EC%3A1.14.13.131","dissimilatory dimethyl-sulfide monooxygenase"],["EC%3A1.14.13.245","assimilatory dimethylsulfide S-monooxygenase"],["EC%3A1.8.2.4","dimethyl sulfide:cytochrome c2 reductase"],["EC%3A1.8.5.3","respiratory dimethylsulfoxide reductase"],["EC%3A2.1.1.19","trimethylsulfonium--tetrahydrofolate N-methyltransferase"],["EC%3A2.1.1.334","methanethiol S-methyltransferase"]]},{"id":"GO:0006817","l":"phosphate ion transport","na":1,"nb":21,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["GO%3A0035435","phosphate ion transmembrane transport"],["GO%3A0006817","phosphate ion transport"],["GO%3A0044341","sodium-dependent phosphate transport"],["NCBIfam%3ANF033774","inorganic phosphate transporter PitA"],["NCBIfam%3ATIGR00972","phosphate ABC transporter ATP-binding protein PstB"],["NCBIfam%3ANF023916","phosphate ABC transporter permease family protein"]]},{"id":"CHEBI:16411","l":"indole-3-acetic acid","na":20,"nb":1,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_IAC","IAC-binding site"]]},{"id":"CHEBI:2181","l":"L-fucopyranose","na":1,"nb":20,"a":[["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"]],"b":[["EC%3A1.1.1.122","D-threo-aldose 1-dehydrogenase"],["EC%3A3.2.1.51","alpha-L-fucosidase"],["EC%3A3.2.1.63","1,2-alpha-L-fucosidase"],["EC%3A5.3.1.25","L-fucose isomerase"],["RHEA%3A49308","a neolactoside IV(2)-alpha-Fuc-nLc4Cer(d18:0) + H2O = a neolactoside nLc4Cer(d18:0) + L-fucose"],["RHEA%3A48224","a neolactoside IV(2)-alpha-Fuc-nLc4Cer(d18:1(4E)) + H2O = a neolactoside nLc4Cer(d18:1(4E)) + L-fucose"]]},{"id":"GO:0052031","l":"symbiont-mediated perturbation of host defense response","na":1,"nb":20,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["GO%3A0140415","effector-mediated perturbation of host defenses by symbiont"],["GO%3A0140424","symbiont-mediated activation of blood coagulation, intrinsic pathway"],["GO%3A0039587","symbiont-mediated-mediated suppression of host tetherin activity"],["GO%3A0052084","symbiont-mediated modulation of host ethylene-mediated defense response"],["GO%3A0052031","symbiont-mediated perturbation of host defense response"],["GO%3A0052553","symbiont-mediated perturbation of host immune response"]]},{"id":"CHEBI:18022","l":"thiocyanate","na":1,"nb":19,"a":[["Thiocyanate_Afipia_Thiobacillus_Bioreactor_Community.html","Thiocyanate-Degrading Afipia and Thiobacillus Bioreactor Community"]],"b":[["EC%3A1.8.2.7","thiocyanate desulfurase"],["EC%3A2.1.1.n4","thiocyanate methyltransferase"],["EC%3A2.8.1.1","thiosulfate sulfurtransferase"],["EC%3A3.5.5.8","thiocyanate hydrolase"],["RHEA%3A63880","thiocyanate + 2 Fe(III)-[cytochrome c] + H2O = cyanate + sulfur + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A21464","thiocyanate + H2O + 2 H(+) = carbonyl sulfide + NH4(+)"]]},{"id":"GO:0019319","l":"hexose biosynthetic process","na":1,"nb":19,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["GO%3A0019315","D-allose biosynthetic process"],["GO%3A0046370","fructose biosynthetic process"],["GO%3A0042353","fucose biosynthetic process"],["GO%3A0046369","galactose biosynthetic process"],["GO%3A0006094","gluconeogenesis"],["GO%3A0019319","hexose biosynthetic process"]]},{"id":"NCBITaxon:2697049","l":"Severe acute respiratory syndrome coronavirus 2","na":1,"nb":18,"a":[["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"]],"b":[["IDPO%3A0000002","disorder"],["IDPO%3A0000033","flexible linker"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000041","glycosylation display site"],["IDPO%3A0000048","limited proteolysis display site"],["IDPO%3A0000037","molecular recognition display site"]]},{"id":"CHEBI:16881","l":"1H-indole","na":1,"nb":17,"a":[["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"]],"b":[["EC%3A1.13.11.17","indole 2,3-dioxygenase"],["EC%3A1.14.14.153","indole-2-monooxygenase"],["EC%3A4.1.1.92","indole-3-carboxylate decarboxylase"],["EC%3A4.1.2.8","indole-3-glycerol-phosphate lyase"],["EC%3A4.1.99.1","tryptophanase"],["EC%3A4.2.1.122","tryptophan synthase (indole-salvaging)"]]},{"id":"CHEBI:17120","l":"hexanoate","na":1,"nb":17,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"]],"b":[["EC%3A3.5.1.39","alkylamidase"],["RHEA%3A53496","1-hexanoyl-2-acyl-sn-glycero-3-phosphocholine + H2O = hexanoate + a 2-acyl-sn-glycero-3-phosphocholine + H(+)"],["RHEA%3A54464","1-octadecanoyl-2-hexanoyl-sn-glycero-3-phosphocholine + H2O = hexanoate + 1-octadecanoyl-sn-glycero-3-phosphocholine + H(+)"],["RHEA%3A47352","a hexanoate ester + H2O = an aliphatic alcohol + hexanoate + H(+)"],["RHEA%3A79351","hexanal + 2 Fe(III)-[cytochrome c] + H2O = hexanoate + 2 Fe(II)-[cytochrome c] + 3 H(+)"],["RHEA%3A67276","hexanal + NAD(+) + H2O = hexanoate + NADH + 2 H(+)"]]},{"id":"GO:0015940","l":"pantothenate biosynthetic process","na":1,"nb":17,"a":[["Variovorax_Cryptococcus_Vitamin_Mutualism_Microcosm.html","Variovorax-Cryptococcus Vitamin Cross-Feeding Microcosm"]],"b":[["GO%3A0015940","pantothenate biosynthetic process"],["NCBIfam%3ANF005087","2-dehydropantoate 2-reductase"],["NCBIfam%3ANF005092","2-dehydropantoate 2-reductase"],["NCBIfam%3ANF005093","2-dehydropantoate 2-reductase"],["NCBIfam%3ANF005094","2-dehydropantoate 2-reductase"],["NCBIfam%3ANF006083","2-dehydropantoate 2-reductase"]]},{"id":"GO:0006090","l":"pyruvate metabolic process","na":1,"nb":16,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"]],"b":[["GO%3A0061678","Entner-Doudoroff pathway"],["GO%3A0061718","glucose catabolic process to pyruvate"],["GO%3A0006096","glycolytic process"],["GO%3A0033508","L-glutamate fermentation"],["GO%3A0019617","protocatechuate catabolic process, meta-cleavage"],["GO%3A0042866","pyruvate biosynthetic process"]]},{"id":"GO:0006527","l":"L-arginine catabolic process","na":1,"nb":16,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["GO%3A0006527","L-arginine catabolic process"],["NCBIfam%3ATIGR01273","arginine decarboxylase"],["NCBIfam%3ANF002381","arginine deiminase"],["NCBIfam%3ATIGR01078","arginine deiminase"],["NCBIfam%3ANF007770","arginine N-succinyltransferase"],["NCBIfam%3ATIGR03244","arginine N-succinyltransferase"]]},{"id":"NCBITaxon:3847","l":"Glycine max","na":1,"nb":16,"a":[["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["Pfam%3APF02095","Extensin-like protein"],["Pfam%3APF00477","Small hydrophilic plant seed protein"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF08027","Albumin I chain b"],["Pfam%3APF10539","Development and cell death domain"],["Pfam%3APF03386","Early nodulin 93 ENOD93 protein"]]},{"id":"GO:0044010","l":"single-species biofilm formation","na":1,"nb":15,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"]],"b":[["ComplexPortal%3ACPX-4063","ChpBS toxin-antitoxin complex"],["ComplexPortal%3ACPX-4743","Curli secretion complex"],["ComplexPortal%3ACPX-1079","DinJ-YafQ toxin-antitoxin complex"],["ComplexPortal%3ACPX-3296","Fucose-binding lectin II complex"],["ComplexPortal%3ACPX-1086","MazEF toxin-antitoxin complex"],["ComplexPortal%3ACPX-1084","MqsRA toxin-antitoxin complex"]]},{"id":"GO:0051453","l":"regulation of intracellular pH","na":1,"nb":15,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["ComplexPortal%3ACPX-3090","Glutathione-regulated potassium-efflux system KefB-KefG complex"],["ComplexPortal%3ACPX-2543","Glutathione-regulated potassium-efflux system KefC-KefF complex"],["ComplexPortal%3ACPX-26449","Sodium/proton exchanger complex, NHE1-CHP1 variant"],["ComplexPortal%3ACPX-26462","Sodium/proton exchanger complex, NHE1-CHP2 variant"],["ComplexPortal%3ACPX-26464","Sodium/proton exchanger complex, NHE1-CHP3 variant"],["ComplexPortal%3ACPX-26469","Sodium/proton exchanger complex, NHE2-CHP1 variant"]]},{"id":"NCBITaxon:2157","l":"Archaea","na":15,"nb":1,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2157","Archaea orthologous groups (OrthoDB)"]]},{"id":"GO:0009607","l":"response to biotic stimulus","na":1,"nb":14,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["GO%3A0071216","cellular response to biotic stimulus"],["GO%3A0009595","detection of biotic stimulus"],["GO%3A0036180","filamentous growth of a population of unicellular organisms in response to biotic stimulus"],["GO%3A0009607","response to biotic stimulus"],["GO%3A0043207","response to external biotic stimulus"],["GO%3A1990840","response to lectin"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":1,"nb":14,"a":[["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"]],"b":[["Pfam%3APF03703","Bacterial PH domain"],["Pfam%3APF01322","Cytochrome C'"],["Pfam%3APF03139","Vanadium/alternative nitrogenase delta subunit"],["Pfam%3APF09527","Putative F0F1-ATPase subunit Ca2+/Mg2+ transporter"],["Pfam%3APF03270","Protein of unknown function, DUF269"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":1,"nb":14,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF02224","Cytidylate kinase"],["Pfam%3APF03319","Ethanolamine utilisation protein EutN/carboxysome"],["Pfam%3APF22019","alpha-1,4-glucan branching enzyme GlgB, N-terminal domain"],["Pfam%3APF21714","Circadian clock protein KaiA, N-terminal domain"],["Pfam%3APF07688","KaiA C-terminal domain"]]},{"id":"GO:0019076","l":"viral release from host cell","na":1,"nb":13,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0046753","non-lytic viral release"],["GO%3A0044659","viral release from host cell by cytolysis"],["GO%3A0019076","viral release from host cell"],["Reactome%3AR-HSA-168298","Release"],["NCBIfam%3ANF037577","Rz1-like spanin outer membrane subunit"],["NCBIfam%3ANF012767","Vpu"]]},{"id":"GO:2000145","l":"regulation of cell motility","na":1,"nb":13,"a":[["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["GO%3A2000146","negative regulation of cell motility"],["GO%3A2000147","positive regulation of cell motility"],["GO%3A1905416","regulation of amoeboid sperm motility"],["GO%3A1902021","regulation of bacterial-type flagellum-dependent cell motility"],["GO%3A0030334","regulation of cell migration"],["GO%3A2000145","regulation of cell motility"]]},{"id":"NCBITaxon:165179","l":"Segatella copri","na":1,"nb":13,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["TED%3AAF-A0A3R6DW71-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3R6DW71-F1-model_v4_TED02"],["TED%3AAF-A0A3R6EGS2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R6EGS2-F1-model_v4_TED01"],["TED%3AAF-A0A5Q5FTM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Q5FTM4-F1-model_v4_TED01"],["TED%3AAF-A0A3R5WNG5-F1-model_v4_TED02","TED novel fold AF-A0A3R5WNG5-F1-model_v4_TED02"],["TED%3AAF-A0A3R5YKW9-F1-model_v4_TED01","TED novel fold AF-A0A3R5YKW9-F1-model_v4_TED01"],["TED%3AAF-A0A3R6FRY2-F1-model_v4_TED01","TED novel fold AF-A0A3R6FRY2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:239","l":"Flavobacterium sp.","na":1,"nb":13,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["Pfam%3APF21331","Isoamylase, C-terminal"],["TED%3AAF-A0A2E4PC55-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E4PC55-F1-model_v4_TED02"],["TED%3AAF-A0A2E4PGC5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4PGC5-F1-model_v4_TED01"],["TED%3AAF-A0A2E4PMB7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E4PMB7-F1-model_v4_TED02"],["TED%3AAF-A0A355BEV2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A355BEV2-F1-model_v4_TED02"],["TED%3AAF-A0A519QLA6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A519QLA6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:267377","l":"Methanococcus maripaludis (strain DSM 14266 / JCM 13030 / NBRC 101832 / S2 / LL)","na":1,"nb":13,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"]],"b":[["Pfam%3APF09171","N-glycosylase/DNA lyase"],["Pfam%3APF06847","Archaeal Peptidase A24 C-terminus Type II"],["Pfam%3APF06819","Archaeal Peptidase A24 C-terminal Domain"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF26558","3-dehydroquinate synthase II C-terminal domain"],["Pfam%3APF01959","3-dehydroquinate synthase II N-terminal domain"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":13,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["Pfam%3APF07832","Cfr10I/Bse634I restriction endonuclease"],["Pfam%3APF22348","Colicin-A N-terminal domain"],["Pfam%3APF01024","Colicin pore forming domain"],["Pfam%3APF18427","DD-reactivating factor swiveling domain"],["Pfam%3APF02286","Dehydratase large subunit"],["Pfam%3APF02288","Dehydratase medium subunit"]]},{"id":"CHEBI:16136","l":"hydrogen sulfide","na":12,"nb":1,"a":[["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["MCSA%3A398","sulfite reductase (NADPH)"]]},{"id":"CHEBI:16188","l":"octan-1-ol","na":1,"nb":12,"a":[["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["EC%3A1.1.1.73","octanol dehydrogenase"],["EC%3A1.14.15.3","alkane 1-monooxygenase"],["RHEA%3A79323","octan-1-ol + 2 Fe(III)-[cytochrome c] = octanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A64628","octan-1-ol + acetyl-CoA = octyl acetate + CoA"],["RHEA%3A64852","octan-1-ol + benzoyl-CoA = octyl benzoate + CoA"],["RHEA%3A44064","octan-1-ol + hexadecanoyl-CoA = octyl hexadecanoate + CoA"]]},{"id":"GO:0043419","l":"urea catabolic process","na":1,"nb":12,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"]],"b":[["ComplexPortal%3ACPX-1296","Urease activation complex"],["GO%3A0043419","urea catabolic process"],["NCBIfam%3ANF010592","urease subunit alpha"],["NCBIfam%3ANF009682","urease subunit beta"],["NCBIfam%3ANF010591","urease subunit beta"],["NCBIfam%3ANF009712","urease subunit gamma"]]},{"id":"GO:0061687","l":"detoxification of inorganic compound","na":1,"nb":12,"a":[["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["GO%3A0140114","cellular detoxification of fluoride"],["GO%3A0140961","cellular detoxification of metal ion"],["GO%3A0140982","detoxification of aluminum ion"],["GO%3A0071585","detoxification of cadmium ion"],["GO%3A0010299","detoxification of cobalt ion"],["GO%3A0010273","detoxification of copper ion"]]},{"id":"CHEBI:16918","l":"gallate","na":1,"nb":11,"a":[["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["EC%3A1.13.11.57","gallate dioxygenase"],["EC%3A2.1.1.341","vanillate/3-O-methylgallate O-demethylase"],["EC%3A2.4.1.136","gallate 1-beta-glucosyltransferase"],["EC%3A3.1.1.20","tannase"],["EC%3A4.1.1.59","gallate decarboxylase"],["RHEA%3A12749","3,4,5-trihydroxybenzoate + H(+) = 1,2,3-trihydroxybenzene + CO2"]]},{"id":"CHEBI:17847","l":"p-cresol","na":1,"nb":11,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["EC%3A1.14.13.236","toluene 4-monooxygenase"],["EC%3A1.17.9.1","4-methylphenol dehydrogenase (hydroxylating)"],["EC%3A4.1.1.83","4-hydroxyphenylacetate decarboxylase"],["EC%3A4.1.99.19","2-iminoacetate synthase"],["RHEA%3A22732","4-hydroxyphenylacetate + H(+) = 4-methylphenol + CO2"],["RHEA%3A56976","4-methylphenol + 2 oxidized [azurin] + H2O = 4-hydroxybenzyl alcohol + 2 reduced [azurin] + 2 H(+)"]]},{"id":"CHEBI:18212","l":"selenite(2-)","na":1,"nb":11,"a":[["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"]],"b":[["EC%3A1.97.1.14","selenate reductase (quinol)"],["EC%3A1.97.1.9","selenate reductase (cytochrome c)"],["RHEA%3A80603","selenite + 2 Fe(III)-[cytochrome c] + H2O = 2 Fe(II)-[cytochrome] + selenate + 2 H(+)"],["RHEA%3A34903","selenite + 4 glutathione + 2 H(+) = selenodiglutathione + glutathione disulfide + 3 H2O"],["RHEA%3A14029","selenite + A + H2O = selenate + AH2"],["RHEA%3A51636","selenite + a quinone + H2O = selenate + a quinol"]]},{"id":"CHEBI:28009","l":"N-acetyl-beta-D-glucosamine","na":1,"nb":11,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]],"b":[["RHEA%3A85211","alpha-di-N-acetylchitobiose + H2O = N-acetyl-beta-D-glucosamine + N-acetyl-alpha-D-glucosamine"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"],["TCDB%3A4.A.6","The PTS Mannose-Fructose-Sorbose (Man) Family"]]},{"id":"CHEBI:28685","l":"molybdenum atom","na":1,"nb":11,"a":[["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_MO","MO-binding site"],["proteintraitsmech%3AMETALPDB_MO_DINUCLEAR","dinuclear molybdenum site"],["proteintraitsmech%3AMETALPDB_MO_HEPTANUCLEAR","heptanuclear molybdenum site"],["proteintraitsmech%3AMETALPDB_MO_HEXANUCLEAR","hexanuclear molybdenum site"],["proteintraitsmech%3AMETALPDB_MO_MONONUCLEAR","mononuclear molybdenum site"],["proteintraitsmech%3AMETALPDB_MO_MULTINUCLEAR","multinuclear molybdenum site"]]},{"id":"CHEBI:49807","l":"lead(2+)","na":1,"nb":11,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_49807","requires lead(2+)"],["RHEA%3A52580","Pb(2+)(in) + ATP + H2O = Pb(2+)(out) + ADP + phosphate + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.4","The Cation Diffusion Facilitator (CDF) Family"],["TCDB%3A2.A.11","The Citrate-Mg2+:H+ (CitM) Citrate-Ca2+:H+ (CitH) Symporter (CitMHS) Family"],["TCDB%3A1.A.87","The Mechanosensitive Calcium Channel (MCA) Family"]]},{"id":"CHEBI:15075","l":"selenate","na":1,"nb":10,"a":[["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"]],"b":[["EC%3A1.97.1.14","selenate reductase (quinol)"],["EC%3A1.97.1.9","selenate reductase (cytochrome c)"],["RHEA%3A34887","selenate(in) = selenate(out)"],["RHEA%3A72079","selenate(out) + 3 Na(+)(out) = selenate(in) + 3 Na(+)(in)"],["RHEA%3A34883","selenate(out) + ATP + H2O = selenate(in) + ADP + phosphate + H(+)"],["RHEA%3A80603","selenite + 2 Fe(III)-[cytochrome c] + H2O = 2 Fe(II)-[cytochrome] + selenate + 2 H(+)"]]},{"id":"CHEBI:15688","l":"acetoin","na":1,"nb":10,"a":[["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"]],"b":[["EC%3A2.2.1.4","acetoin--ribose-5-phosphate transaldolase"],["EC%3A2.3.1.190","acetoin dehydrogenase system"],["RHEA%3A54364","2 acetaldehyde = acetoin"],["RHEA%3A76879","3-aminobutan-2-ol + NAD(+) + H2O = acetoin + NH4(+) + NADH + H(+)"],["RHEA%3A76931","3-aminobutan-2-ol + NADP(+) + H2O = acetoin + NH4(+) + NADPH + H(+)"],["RHEA%3A54368","acetaldehyde + pyruvate + H(+) = acetoin + CO2"]]},{"id":"CHEBI:16581","l":"pregnenolone","na":1,"nb":10,"a":[["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"]],"b":[["EC%3A1.14.14.19","steroid 17alpha-monooxygenase"],["EC%3A1.14.15.6","cholesterol monooxygenase (side-chain-cleaving)"],["RHEA%3A34343","(20R,22R)-20,22-dihydroxycholesterol + 2 reduced [adrenodoxin] + O2 + 2 H(+) = 4-methylpentanal + pregnenolone + 2 oxidized [adrenodoxin] + 2 H2O"],["RHEA%3A35739","6 reduced [adrenodoxin] + cholesterol + 3 O2 + 6 H(+) = 4-methylpentanal + pregnenolone + 6 oxidized [adrenodoxin] + 4 H2O"],["RHEA%3A52356","pregnenolone + 3'-phosphoadenylyl sulfate = pregnenolone sulfate + adenosine 3',5'-bisphosphate + H(+)"],["RHEA%3A43924","pregnenolone + NAD(+) = pregn-5-ene-3,20-dione + NADH + H(+)"]]},{"id":"CHEBI:16738","l":"2,4-dichlorophenol","na":1,"nb":10,"a":[["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"]],"b":[["EC%3A1.14.11.43","(S)-dichlorprop dioxygenase (2-oxoglutarate)"],["EC%3A1.14.11.44","(R)-dichlorprop dioxygenase (2-oxoglutarate)"],["EC%3A1.14.13.20","2,4-dichlorophenol 6-monooxygenase"],["RHEA%3A86719","2,4-dichlorophenol + AH2 = 4-chlorophenol + chloride + A + H(+)"],["RHEA%3A80611","2,4-dichlorophenol + NADH + O2 + H(+) = 3,5-dichlorocatechol + NAD(+) + H2O"],["RHEA%3A20920","2,4-dichlorophenol + NADPH + O2 + H(+) = 3,5-dichlorocatechol + NADP(+) + H2O"]]},{"id":"CHEBI:17051","l":"fluoride","na":1,"nb":10,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["EC%3A2.5.1.63","adenosyl-fluoride synthase"],["EC%3A3.8.1.3","haloacetate dehalogenase"],["EC%3A3.8.2.2","diisopropyl-fluorophosphatase"],["RHEA%3A24100","diisopropyl fluorophosphate + H2O = diisopropyl phosphate + fluoride + 2 H(+)"],["RHEA%3A76159","fluoride(in) = fluoride(out)"],["RHEA%3A16661","fluoride + S-adenosyl-L-methionine = 5'-deoxy-5'-fluoroadenosine + L-methionine"]]},{"id":"CHEBI:17698","l":"chloramphenicol","na":1,"nb":10,"a":[["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"]],"b":[["EC%3A1.14.99.67","alpha-N-dichloroacetyl-p-aminophenylserinol N-oxygenase"],["EC%3A2.3.1.28","chloramphenicol O-acetyltransferase"],["RHEA%3A58884","alpha-N-dichloroacetyl-p-aminophenylserinol + AH2 + 2 O2 = chloramphenicol + A + 2 H2O"],["RHEA%3A18421","chloramphenicol + acetyl-CoA = chloramphenicol 3-acetate + CoA"],["RHEA%3A35287","chloramphenicol(in) + ATP + H2O = chloramphenicol(out) + ADP + phosphate + H(+)"],["RHEA%3A35059","chloramphenicol(in) + H(+)(out) = chloramphenicol(out) + H(+)(in)"]]},{"id":"GO:0006548","l":"L-histidine catabolic process","na":1,"nb":10,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["GO%3A0006548","L-histidine catabolic process"],["Reactome%3AR-HSA-70921","Histidine catabolism"],["proteintraitsmech%3ASEED_SUBSYSTEM_Histidine_Degradation","Histidine Degradation"],["NCBIfam%3ATIGR01227","formimidoylglutamase"],["NCBIfam%3ATIGR02022","formimidoylglutamate deiminase"],["NCBIfam%3ATIGR02024","glutamate formimidoyltransferase"]]},{"id":"GO:0070482","l":"response to oxygen levels","na":1,"nb":10,"a":[["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"]],"b":[["ComplexPortal%3ACPX-3982","dosPC diguanylate cyclase/c-di-GMP phosphodiesterase complex"],["ComplexPortal%3ACPX-1882","HAP1 transcriptional repressor complex, SSA1 variant"],["ComplexPortal%3ACPX-1883","HAP1 transcriptional repressor complex, SSA2 variant"],["ComplexPortal%3ACPX-1276","HMC complex"],["GO%3A0071453","cellular response to oxygen levels"],["GO%3A0003032","detection of oxygen"]]},{"id":"GO:2000146","l":"negative regulation of cell motility","na":1,"nb":10,"a":[["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["GO%3A1905417","negative regulation of amoeboid sperm motility"],["GO%3A1902201","negative regulation of bacterial-type flagellum-dependent cell motility"],["GO%3A0030336","negative regulation of cell migration"],["GO%3A2000146","negative regulation of cell motility"],["GO%3A1902020","negative regulation of cilium-dependent cell motility"],["PANTHER%3APTHR28616","COILED-COIL DOMAIN-CONTAINING PROTEIN 125"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":1,"nb":10,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["TED%3AAF-A0A5T2E4X7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5T2E4X7-F1-model_v4_TED01"],["TED%3AAF-A0A5Y4BP44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Y4BP44-F1-model_v4_TED01"],["TED%3AAF-A0A623P6F3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A623P6F3-F1-model_v4_TED02"],["TED%3AAF-A0A721BDS7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A721BDS7-F1-model_v4_TED02"],["TED%3AAF-A0A743P324-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A743P324-F1-model_v4_TED01"],["TED%3AAF-A0A757VWR3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A757VWR3-F1-model_v4_TED02"]]},{"id":"CHEBI:18248","l":"iron atom","na":1,"nb":9,"a":[["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18248","requires Fe"],["proteintraitsmech%3AMETALPDB_FE_DINUCLEAR","dinuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_HEPTANUCLEAR","heptanuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_HEXANUCLEAR","hexanuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_MONONUCLEAR","mononuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_OCTANUCLEAR","octanuclear iron site"]]},{"id":"CHEBI:26710","l":"sodium chloride","na":9,"nb":1,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["TCDB%3A2.A.30","The Cation-Chloride Cotransporter (CCC) Family"]]},{"id":"GO:0009266","l":"response to temperature stimulus","na":1,"nb":9,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["GO%3A0071502","cellular response to temperature stimulus"],["GO%3A0016048","detection of temperature stimulus"],["GO%3A0009409","response to cold"],["GO%3A0009408","response to heat"],["GO%3A0009266","response to temperature stimulus"],["GO%3A0010378","temperature compensation of the circadian clock"]]},{"id":"GO:0043903","l":"regulation of biological process involved in symbiotic interaction","na":1,"nb":9,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["GO%3A0052372","modulation by symbiont of entry into host"],["GO%3A0140471","positive regulation of transepithelial migration of symbiont in host"],["GO%3A0043903","regulation of biological process involved in symbiotic interaction"],["GO%3A0075045","regulation of formation by symbiont of haustorium for nutrient acquisition from host"],["GO%3A1901252","regulation of intracellular transport of viral material"],["GO%3A0070949","regulation of neutrophil mediated killing of symbiont cell"]]},{"id":"NCBITaxon:1344414","l":"Trichoderma reesei RUT C-30","na":1,"nb":9,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["Pfam%3APF00457","Glycosyl hydrolases family 11"],["Pfam%3APF01341","Glycosyl hydrolases family 6"],["PROSITE%3APS00155","Cutinase, serine active site"],["PROSITE%3APS00776","Glycosyl hydrolases family 11 (GH11) active site signature 1"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"],["PROSITE%3APS00655","Glycosyl hydrolases family 6 signature 1"]]},{"id":"NCBITaxon:2903","l":"Emiliania huxleyi","na":1,"nb":9,"a":[["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"]],"b":[["TED%3AAF-A0A7S3RZJ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3RZJ4-F1-model_v4_TED01"],["TED%3AAF-A0A7S3W933-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3W933-F1-model_v4_TED01"],["TED%3AAF-A0A7S3W9Q3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3W9Q3-F1-model_v4_TED01"],["TED%3AAF-R1DPG1-F1-model_v4_TED01","TED highly-symmetric fold AF-R1DPG1-F1-model_v4_TED01"],["TED%3AAF-A0A7S3TQB6-F1-model_v4_TED02","TED novel fold AF-A0A7S3TQB6-F1-model_v4_TED02"],["TED%3AAF-R1BEB4-F1-model_v4_TED01","TED novel fold AF-R1BEB4-F1-model_v4_TED01"]]},{"id":"CHEBI:27698","l":"vanadium atom","na":1,"nb":8,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_V_DECANUCLEAR","decanuclear vanadium site"],["proteintraitsmech%3AMETALPDB_V_DINUCLEAR","dinuclear vanadium site"],["proteintraitsmech%3AMETALPDB_V_HEPTANUCLEAR","heptanuclear vanadium site"],["proteintraitsmech%3AMETALPDB_V_HEXANUCLEAR","hexanuclear vanadium site"],["proteintraitsmech%3AMETALPDB_V_MONONUCLEAR","mononuclear vanadium site"],["proteintraitsmech%3AMETALPDB_V_OCTANUCLEAR","octanuclear vanadium site"]]},{"id":"CHEBI:37166","l":"xylan","na":8,"nb":1,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"GO:0042402","l":"biogenic amine catabolic process","na":1,"nb":8,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"]],"b":[["GO%3A0042402","biogenic amine catabolic process"],["GO%3A0042424","catecholamine catabolic process"],["GO%3A0042426","choline catabolic process"],["GO%3A0046336","ethanolamine catabolic process"],["GO%3A0001695","histamine catabolic process"],["GO%3A0046334","octopamine catabolic process"]]},{"id":"GO:0042436","l":"indole-containing compound catabolic process","na":1,"nb":8,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["GO%3A0042433","indole catabolic process"],["GO%3A0042436","indole-containing compound catabolic process"],["GO%3A0042344","indole glucosinolate catabolic process"],["GO%3A0046216","indole phytoalexin catabolic process"],["GO%3A0042437","indoleacetic acid catabolic process"],["GO%3A0006569","L-tryptophan catabolic process"]]},{"id":"NCBITaxon:4081","l":"Solanum lycopersicum","na":1,"nb":8,"a":[["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF02977","Carboxypeptidase A inhibitor"],["Pfam%3APF26410","GH family 5 beta-mannosidase-like"],["Pfam%3APF02496","ABA/WDS induced protein"],["Pfam%3APF17302","Family of unknown function (DUF5351)"],["PROSITE%3APS00502","Polygalacturonase active site"]]},{"id":"NCBITaxon:492670","l":"Bacillus velezensis","na":8,"nb":1,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"]],"b":[["TED%3AAF-A0A7S9EWF1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S9EWF1-F1-model_v4_TED02"]]},{"id":"CHEBI:25017","l":"leucine","na":1,"nb":7,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.78","The Branched Chain Amino Acid Exporter (LIV-E) Family"],["TCDB%3A2.A.76","The Resistance to Homoserine/Threonine (RhtB) Family"],["MCSA%3A172","isoaspartyl dipeptidase"]]},{"id":"CHEBI:29195","l":"cyanate","na":1,"nb":7,"a":[["Thiocyanate_Afipia_Thiobacillus_Bioreactor_Community.html","Thiocyanate-Degrading Afipia and Thiobacillus Bioreactor Community"]],"b":[["EC%3A1.8.2.7","thiocyanate desulfurase"],["EC%3A4.2.1.104","cyanase"],["RHEA%3A11120","cyanate + hydrogencarbonate + 3 H(+) = NH4(+) + 2 CO2"],["RHEA%3A18489","cyanate + hydrogencarbonate + H(+) = carbamate + CO2"],["RHEA%3A29231","cyanate(in) = cyanate(out)"],["RHEA%3A63880","thiocyanate + 2 Fe(III)-[cytochrome c] + H2O = cyanate + sulfur + 2 Fe(II)-[cytochrome c] + 2 H(+)"]]},{"id":"CHEBI:32379","l":"cis,cis-muconate","na":1,"nb":7,"a":[["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["EC%3A1.13.11.1","catechol 1,2-dioxygenase"],["EC%3A5.5.1.1","muconate cycloisomerase"],["RHEA%3A23852","catechol + O2 = cis,cis-muconate + 2 H(+)"],["RHEA%3A30031","(S)-muconolactone = cis,cis-muconate + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["MCSA%3A959","muconate cycloisomerase (anti)"]]},{"id":"GO:0009292","l":"horizontal gene transfer","na":1,"nb":7,"a":[["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"]],"b":[["GO%3A0009294","DNA-mediated transformation"],["GO%3A0009292","horizontal gene transfer"],["GO%3A0009293","transduction"],["GO%3A0009291","unidirectional conjugation"],["NCBIfam%3ATIGR04359","entry exclusion lipoprotein TrbK"],["NCBIfam%3ATIGR04361","entry exclusion protein TrbK"]]},{"id":"GO:0040011","l":"locomotion","na":1,"nb":7,"a":[["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"]],"b":[["GO%3A0033058","directional locomotion"],["GO%3A0060361","flight"],["GO%3A0040011","locomotion"],["GO%3A0031987","locomotion involved in locomotory behavior"],["GO%3A0071965","multicellular organismal locomotion"],["GO%3A0036268","swimming"]]},{"id":"GO:0075136","l":"response to host","na":1,"nb":7,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0075136","response to host"],["GO%3A0075139","response to host iron concentration"],["GO%3A0075000","response to host osmotic environment"],["GO%3A0075138","response to host oxygen tension environment"],["GO%3A0075293","response to host pH environment"],["GO%3A0075137","response to host redox environment"]]},{"id":"NCBITaxon:2030806","l":"Burkholderiaceae bacterium","na":1,"nb":7,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["TED%3AAF-A0A5C7NHS1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7NHS1-F1-model_v4_TED01"],["TED%3AAF-A0A5C7Q2S0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A5C7Q2S0-F1-model_v4_TED04"],["TED%3AAF-A0A7L5Y4H7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7L5Y4H7-F1-model_v4_TED02"],["TED%3AAF-A0A520VNE1-F1-model_v4_TED02","TED novel fold AF-A0A520VNE1-F1-model_v4_TED02"],["TED%3AAF-A0A522SAF0-F1-model_v4_TED01","TED novel fold AF-A0A522SAF0-F1-model_v4_TED01"],["TED%3AAF-A0A5C7NTX8-F1-model_v4_TED02","TED novel fold AF-A0A5C7NTX8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:5722","l":"Trichomonas vaginalis","na":1,"nb":7,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["TED%3AAF-A2F3M7-F1-model_v4_TED03","TED highly-symmetric fold AF-A2F3M7-F1-model_v4_TED03"],["TED%3AAF-A2HEW4-F1-model_v4_TED01","TED highly-symmetric fold AF-A2HEW4-F1-model_v4_TED01"],["TED%3AAF-A2DT59-F1-model_v4_TED01","TED novel fold AF-A2DT59-F1-model_v4_TED01"],["TED%3AAF-A2E7I9-F1-model_v4_TED02","TED novel fold AF-A2E7I9-F1-model_v4_TED02"],["TED%3AAF-A2F6I8-F1-model_v4_TED02","TED novel fold AF-A2F6I8-F1-model_v4_TED02"],["TED%3AAF-A2FV33-F1-model_v4_TED01","TED novel fold AF-A2FV33-F1-model_v4_TED01"]]},{"id":"CHEBI:29287","l":"gold atom","na":1,"nb":6,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"]],"b":[["proteintraitsmech%3AMETALPDB_AU_DINUCLEAR","dinuclear gold site"],["proteintraitsmech%3AMETALPDB_AU_HEXANUCLEAR","hexanuclear gold site"],["proteintraitsmech%3AMETALPDB_AU_MONONUCLEAR","mononuclear gold site"],["proteintraitsmech%3AMETALPDB_AU_PENTANUCLEAR","pentanuclear gold site"],["proteintraitsmech%3AMETALPDB_AU_TETRANUCLEAR","tetranuclear gold site"],["proteintraitsmech%3AMETALPDB_AU_TRINUCLEAR","trinuclear gold site"]]},{"id":"CHEBI:30769","l":"citric acid","na":6,"nb":1,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["proteintraitsmech%3ABIOLIP_CIT","CIT-binding site"]]},{"id":"CHEBI:32139","l":"sodium hydrogencarbonate","na":6,"nb":1,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["TCDB%3A2.A.31","The Anion Exchanger (AE) Family"]]},{"id":"CHEBI:86471","l":"pyrite","na":6,"nb":1,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"GO:0009268","l":"response to pH","na":1,"nb":6,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["GO%3A0071467","cellular response to pH"],["GO%3A0036177","filamentous growth of a population of unicellular organisms in response to pH"],["GO%3A0010447","response to acidic pH"],["GO%3A0010446","response to alkaline pH"],["GO%3A0036176","response to neutral pH"],["GO%3A0009268","response to pH"]]},{"id":"GO:0009684","l":"indoleacetic acid biosynthetic process","na":6,"nb":1,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["GO%3A0009684","indoleacetic acid biosynthetic process"]]},{"id":"GO:0044409","l":"symbiont entry into host","na":1,"nb":6,"a":[["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"]],"b":[["GO%3A0120326","appressorium-mediated entry into host"],["GO%3A0140717","entry into host through the stromata"],["GO%3A0035635","entry of bacterium into host cell"],["GO%3A0046718","symbiont entry into host cell"],["GO%3A0044409","symbiont entry into host"],["Reactome%3AR-HSA-173107","Binding and entry of HIV virion"]]},{"id":"GO:0045733","l":"acetate catabolic process","na":6,"nb":1,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"],["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]],"b":[["GO%3A0045733","acetate catabolic process"]]},{"id":"GO:0140253","l":"cell-cell fusion","na":1,"nb":6,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["ComplexPortal%3ACPX-3089","EFF-1 complex"],["GO%3A0140253","cell-cell fusion"],["GO%3A0000755","cytogamy"],["GO%3A0000768","syncytium formation by cell-cell fusion"],["PANTHER%3APTHR37415","EFF-1A"],["PANTHER%3APTHR41686","MYOMIXER"]]},{"id":"GO:1900190","l":"regulation of single-species biofilm formation","na":1,"nb":6,"a":[["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["ComplexPortal%3ACPX-4681","YiaMNO tripartite ATP-independent periplasmic transporter complex"],["GO%3A1900191","negative regulation of single-species biofilm formation"],["GO%3A1900192","positive regulation of single-species biofilm formation"],["GO%3A1900190","regulation of single-species biofilm formation"],["GO%3A1900228","regulation of single-species biofilm formation in or on host organism"],["GO%3A1900231","regulation of single-species biofilm formation on inanimate substrate"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":6,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["Pfam%3APF03437","BtpA family"]]},{"id":"NCBITaxon:2268204","l":"Thermoplasmatales archaeon","na":1,"nb":6,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["TED%3AAF-A0A7C2AKF2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7C2AKF2-F1-model_v4_TED03"],["TED%3AAF-A0A7J2S4D8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7J2S4D8-F1-model_v4_TED03"],["TED%3AAF-A0A7J3TK18-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7J3TK18-F1-model_v4_TED02"],["TED%3AAF-A0A7C1E5G8-F1-model_v4_TED01","TED novel fold AF-A0A7C1E5G8-F1-model_v4_TED01"],["TED%3AAF-A0A842X889-F1-model_v4_TED01","TED novel fold AF-A0A842X889-F1-model_v4_TED01"],["TED%3AAF-A0A842X9F6-F1-model_v4_TED01","TED novel fold AF-A0A842X9F6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":1,"nb":6,"a":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"]],"b":[["Pfam%3APF14525","AraC-binding-like domain"],["Pfam%3APF06139","BphX-like"],["Pfam%3APF13340","Putative transposase of IS4/5 family (DUF4096)"],["Pfam%3APF11794","4-hydroxyphenylacetate 3-hydroxylase N terminal"],["Pfam%3APF03241","4-hydroxyphenylacetate 3-hydroxylase C terminal"],["TED%3AAF-A0A4S3H3T1-F1-model_v4_TED02","TED novel fold AF-A0A4S3H3T1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:4097","l":"Nicotiana tabacum","na":1,"nb":6,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"]],"b":[["Pfam%3APF02041","Auxin binding protein"],["Pfam%3APF12481","Aluminium induced protein"],["Pfam%3APF11995","Domain of unknown function (DUF3490)"],["Pfam%3APF07172","Glycine rich protein family"],["PROSITE%3APS00157","Ribulose bisphosphate carboxylase large chain active site"],["TED%3AAF-A0A1S4A696-F1-model_v4_TED01","TED novel fold AF-A0A1S4A696-F1-model_v4_TED01"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":1,"nb":6,"a":[["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["Pfam%3APF02929","Beta galactosidase small chain"],["Pfam%3APF27279","Fumarate--diaminopropanoate ligase C-terminal domain"],["Pfam%3APF18024","Helix-turn-helix domain"],["Pfam%3APF16353","Beta-galactosidase, domain 4"],["PROSITE%3APS00594","Aromatic amino acids permeases signature"],["PROSITE%3APS00853","Beta-eliminating lyases pyridoxal-phosphate attachment site"]]},{"id":"CHEBI:15702","l":"terephthalic acid","na":5,"nb":1,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["proteintraitsmech%3ABIOLIP_UB7","UB7-binding site"]]},{"id":"CHEBI:16828","l":"L-tryptophan","na":5,"nb":1,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["proteintraitsmech%3ABIOLIP_TRP","TRP-binding site"]]},{"id":"CHEBI:17439","l":"cyanocob(III)alamin","na":1,"nb":5,"a":[["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["EC%3A1.16.1.6","cyanocobalamin reductase"],["RHEA%3A16113","2 cob(II)alamin-[cyanocobalamin reductase] + 2 hydrogen cyanide + NADP(+) = 2 cyanocob(III)alamin + 2 apo-[cyanocobalamin reductase] + NADPH + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["TCDB%3A9.B.87","The Selenoprotein P Receptor (SelP-Receptor) Family"]]},{"id":"CHEBI:17634","l":"D-glucose","na":5,"nb":1,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"]],"b":[["MCSA%3A976","α‑glucosidase maltase-glucoamylase"]]},{"id":"CHEBI:24875","l":"iron cation","na":1,"nb":5,"a":[["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_24875","requires iron cation"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.S.6","The Bacterial/Archaeal Nanocompartment Encapsulin Shell Protein1 (BANC-SP1) Family"],["TCDB%3A2.A.55","The Metal Ion (Mn2+-iron) Transporter (Nramp) Family"],["TCDB%3A5.B.1","The Phagocyte (gp91phox) NADPH Oxidase Family"]]},{"id":"CHEBI:27750","l":"ethyl acetate","na":1,"nb":5,"a":[["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["EC%3A2.3.1.268","ethanol O-acetyltransferase"],["EC%3A3.1.1.113","ethyl acetate hydrolase"],["RHEA%3A55972","ethanol + acetyl-CoA = ethyl acetate + CoA"],["RHEA%3A58148","ethyl acetate + H2O = ethanol + acetate + H(+)"],["proteintraitsmech%3ABIOLIP_EEE","EEE-binding site"]]},{"id":"CHEBI:30746","l":"benzoic acid","na":5,"nb":1,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_BEZ","BEZ-binding site"]]},{"id":"CHEBI:30776","l":"hexanoic acid","na":5,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["proteintraitsmech%3ABIOLIP_6NA","6NA-binding site"]]},{"id":"CHEBI:33364","l":"platinum atom","na":1,"nb":5,"a":[["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_PT_DINUCLEAR","dinuclear platinum site"],["proteintraitsmech%3AMETALPDB_PT_HEXANUCLEAR","hexanuclear platinum site"],["proteintraitsmech%3AMETALPDB_PT_MONONUCLEAR","mononuclear platinum site"],["proteintraitsmech%3AMETALPDB_PT_TETRANUCLEAR","tetranuclear platinum site"],["proteintraitsmech%3AMETALPDB_PT_TRINUCLEAR","trinuclear platinum site"]]},{"id":"CHEBI:35899","l":"crotonate","na":1,"nb":5,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["EC%3A1.3.1.31","2-enoate reductase"],["RHEA%3A74903","(2E)-2-butenoate + ATP + H(+) = (2E)-but-2-enoyl-AMP + diphosphate"],["RHEA%3A74899","(2E)-2-butenoate + holo-[ACP] + ATP = (2E)-butenoyl-[ACP] + AMP + diphosphate"],["RHEA%3A10200","butanoate + NAD(+) = (2E)-2-butenoate + NADH + H(+)"],["RHEA%3A69172","N(6)-(2E)-butenoyl-L-lysyl-[protein] + H2O = (2E)-2-butenoate + L-lysyl-[protein]"]]},{"id":"CHEBI:37671","l":"(1->3)-beta-D-glucan","na":1,"nb":5,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"]],"b":[["EC%3A2.4.1.30","1,3-beta-oligoglucan phosphorylase"],["EC%3A2.4.1.34","1,3-beta-glucan synthase"],["EC%3A2.4.1.97","1,3-beta-D-glucan phosphorylase"],["RHEA%3A16041","[(1->3)-beta-D-glucosyl](n) + phosphate = [(1->3)-beta-D-glucosyl](n-1) + alpha-D-glucose 1-phosphate"],["RHEA%3A21476","[(1->3)-beta-D-glucosyl](n) + UDP-alpha-D-glucose = [(1->3)-beta-D-glucosyl](n+1) + UDP + H(+)"]]},{"id":"CHEBI:81666","l":"4-methyl-5-nitrocatechol","na":1,"nb":5,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["EC%3A1.14.12.24","2,4-dinitrotoluene dioxygenase"],["EC%3A1.14.13.210","4-methyl-5-nitrocatechol 5-monooxygenase"],["RHEA%3A46760","2,4-dinitrotoluene + NADH + O2 = 4-methyl-5-nitrocatechol + nitrite + NAD(+)"],["RHEA%3A48016","4-methyl-5-nitrocatechol + NADH + O2 = 2-hydroxy-5-methylquinone + nitrite + NAD(+) + H2O + H(+)"],["RHEA%3A48012","4-methyl-5-nitrocatechol + NADPH + O2 = 2-hydroxy-5-methylquinone + nitrite + NADP(+) + H2O + H(+)"]]},{"id":"GO:0098869","l":"cellular oxidant detoxification","na":1,"nb":5,"a":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["GO%3A0061692","cellular detoxification of hydrogen peroxide"],["GO%3A0098869","cellular oxidant detoxification"],["GO%3A0019430","removal of superoxide radicals"],["NCBIfam%3ANF009668","peroxiredoxin"],["Pfam%3APF24980","Response to Low Sulfur (LSU) family"]]},{"id":"NCBITaxon:10239","l":"Viruses","na":5,"nb":1,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_10239","Viruses orthologous groups (OrthoDB)"]]},{"id":"NCBITaxon:1598","l":"Limosilactobacillus reuteri","na":1,"nb":5,"a":[["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"]],"b":[["TED%3AAF-A0A6N1EMN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N1EMN7-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2V3C3-F1-model_v4_TED01","TED novel fold AF-A0A1Y2V3C3-F1-model_v4_TED01"],["TED%3AAF-A0A848BUA9-F1-model_v4_TED01","TED novel fold AF-A0A848BUA9-F1-model_v4_TED01"],["TED%3AAF-A0A855XJ18-F1-model_v4_TED01","TED novel fold AF-A0A855XJ18-F1-model_v4_TED01"],["TED%3AAF-Q6WUB1-F1-model_v4_TED03","TED novel fold AF-Q6WUB1-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1872427","l":"Alcanivorax sp.","na":1,"nb":5,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["TED%3AAF-A0A3C1HS87-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A3C1HS87-F1-model_v4_TED05"],["TED%3AAF-A0A2E8G0K2-F1-model_v4_TED02","TED novel fold AF-A0A2E8G0K2-F1-model_v4_TED02"],["TED%3AAF-A0A2E8G2P9-F1-model_v4_TED01","TED novel fold AF-A0A2E8G2P9-F1-model_v4_TED01"],["TED%3AAF-A0A3B8PCI6-F1-model_v4_TED01","TED novel fold AF-A0A3B8PCI6-F1-model_v4_TED01"],["TED%3AAF-A0A3C0M083-F1-model_v4_TED02","TED novel fold AF-A0A3C0M083-F1-model_v4_TED02"]]},{"id":"NCBITaxon:552","l":"Erwinia amylovora","na":1,"nb":5,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]],"b":[["Pfam%3APF09008","Head binding"],["Pfam%3APF11725","AvrE-family Type-III effector proteins (T3Es)"],["Pfam%3APF03608","PTS system enzyme II sorbitol-specific factor"],["Pfam%3APF07663","Sorbitol phosphotransferase enzyme II C-terminus"],["Pfam%3APF03612","Sorbitol phosphotransferase enzyme II N-terminus"]]},{"id":"NCBITaxon:74969","l":"Ferroplasma acidiphilum","na":5,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["TED%3AAF-A0A7K4FNL3-F1-model_v4_TED01","TED novel fold AF-A0A7K4FNL3-F1-model_v4_TED01"]]},{"id":"CHEBI:15603","l":"L-leucine","na":4,"nb":1,"a":[["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"]],"b":[["proteintraitsmech%3ABIOLIP_LEU","LEU-binding site"]]},{"id":"CHEBI:16109","l":"propane-1,3-diol","na":1,"nb":4,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["EC%3A1.1.1.202","1,3-propanediol dehydrogenase"],["RHEA%3A23188","propane-1,3-diol + NAD(+) = 3-hydroxypropanal + NADH + H(+)"],["RHEA%3A35599","propane-1,3-diol + NADP(+) = 3-hydroxypropanal + NADPH + H(+)"],["proteintraitsmech%3ABIOLIP_PDO","PDO-binding site"]]},{"id":"CHEBI:16646","l":"carbohydrate","na":4,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16646","requires pantothenate"]]},{"id":"CHEBI:16811","l":"methionine","na":4,"nb":1,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"]]},{"id":"CHEBI:16856","l":"glutathione","na":1,"nb":4,"a":[["Zymomonas_Ecoli_Exometabolomics_Obligate_Mutualism.html","Zymomonas-E. coli Exometabolomics-Designed Obligate Mutualism"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16856","requires glutathione"],["MCSA%3A359","lactoglutathione lyase"],["MCSA%3A32","lactoylglutathione lyase"],["proteintraitsmech%3ABIOLIP_GSH","GSH-binding site"]]},{"id":"CHEBI:17115","l":"L-serine","na":1,"nb":4,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["MCSA%3A609","alpha-lytic endopeptidase"],["MCSA%3A238","assemblin"],["MCSA%3A688","classical-complement-pathway C3/C5 convertase"],["proteintraitsmech%3ABIOLIP_SER","SER-binding site"]]},{"id":"CHEBI:18050","l":"L-glutamine","na":1,"nb":4,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["MCSA%3A596","deuterolysin"],["MCSA%3A477","picornain 3C"],["MCSA%3A763","picornain 3C"],["proteintraitsmech%3ABIOLIP_GLN","GLN-binding site"]]},{"id":"CHEBI:18059","l":"lipid","na":4,"nb":1,"a":[["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"],["Yarrowia_lipolytica_Division_of_Labor_Lipid_Consortium.html","Yarrowia lipolytica Division-of-Labor Lipid Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:22315","l":"alkaloid","na":1,"nb":4,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]]},{"id":"CHEBI:23681","l":"dibenzothiophene","na":1,"nb":4,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["EC%3A1.14.14.21","dibenzothiophene monooxygenase"],["RHEA%3A49072","dibenzothiophene + 2 FMNH2 + 2 O2 = dibenzothiophene 5,5-dioxide + 2 FMN + 2 H2O + 2 H(+)"],["RHEA%3A49076","dibenzothiophene + FMNH2 + O2 = dibenzothiophene 5-oxide + FMN + H2O + H(+)"],["MCSA%3A973","DszC protein"]]},{"id":"CHEBI:28984","l":"aluminium atom","na":1,"nb":4,"a":[["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_AL_DINUCLEAR","dinuclear aluminium site"],["proteintraitsmech%3AMETALPDB_AL_MONONUCLEAR","mononuclear aluminium site"],["proteintraitsmech%3AMETALPDB_AL_TETRANUCLEAR","tetranuclear aluminium site"],["proteintraitsmech%3AMETALPDB_AL_TRINUCLEAR","trinuclear aluminium site"]]},{"id":"CHEBI:33575","l":"carboxylic acid","na":1,"nb":4,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"]],"b":[["MCSA%3A105","aldehyde dehydrogenase (FAD-independent)"],["MCSA%3A803","aldehyde dehydrogenase (NAD+) (class 2)"],["MCSA%3A556","esterase (estA)"],["MCSA%3A755","lysophospholipase"]]},{"id":"CHEBI:34768","l":"furfural","na":1,"nb":4,"a":[["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"]],"b":[["RHEA%3A77519","furfural + hydrogen cyanide = (2R)-2-(furan-2-yl)-2-hydroxyacetonitrile"],["RHEA%3A76667","furfural + NAD(+) + H2O = 2-furoate + NADH + 2 H(+)"],["RHEA%3A76671","furfural + NADP(+) + H2O = 2-furoate + NADPH + 2 H(+)"],["TCDB%3A1.C.113","The Hemolysin III (Hly III) Family"]]},{"id":"CHEBI:490095","l":"esculetin","na":1,"nb":4,"a":[["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["EC%3A2.5.1.138","coumarin 8-geranyltransferase"],["RHEA%3A51864","esculetin + (2E)-geranyl diphosphate = 8-geranylesculetin + diphosphate"],["RHEA%3A68944","esculetin + S-adenosyl-L-methionine = isoscopoletin + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A68948","esculetin + S-adenosyl-L-methionine = scopoletin + S-adenosyl-L-homocysteine + H(+)"]]},{"id":"GO:0009809","l":"lignin biosynthetic process","na":1,"nb":4,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"]],"b":[["GO%3A1901063","guaiacyl lignin biosynthetic process"],["GO%3A0009809","lignin biosynthetic process"],["GO%3A1901060","p-hydroxyphenyl lignin biosynthetic process"],["GO%3A1901066","syringal lignin biosynthetic process"]]},{"id":"GO:0015694","l":"mercury ion transport","na":1,"nb":4,"a":[["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["GO%3A0015694","mercury ion transport"],["Pfam%3APF03203","MerC mercury resistance protein"],["Pfam%3APF05052","MerE protein"],["Pfam%3APF02411","MerT mercuric transport protein"]]},{"id":"GO:0015976","l":"carbon utilization","na":1,"nb":4,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["GO%3A0015976","carbon utilization"],["NCBIfam%3ANF010378","bifunctional acetaldehyde-CoA/alcohol dehydrogenase"],["NCBIfam%3ANF007756","carbonate dehydratase"],["InterPro%3AIPR015892","Carbonic anhydrase, prokaryotic-like, conserved site"]]},{"id":"GO:0061692","l":"cellular detoxification of hydrogen peroxide","na":1,"nb":4,"a":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["ComplexPortal%3ACPX-4742","Catalase complex"],["ComplexPortal%3ACPX-4767","Catalase complex"],["ComplexPortal%3ACPX-4768","Catalase complex"],["GO%3A0061692","cellular detoxification of hydrogen peroxide"]]},{"id":"GO:1902074","l":"response to salt","na":1,"nb":4,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["GO%3A1902075","cellular response to salt"],["GO%3A1902074","response to salt"],["GO%3A1903935","response to sodium arsenite"],["GO%3A1904383","response to sodium phosphate"]]},{"id":"NCBITaxon:1401","l":"Paenibacillus lautus","na":1,"nb":4,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"]],"b":[["Pfam%3APF18448","Carbohydrate binding domain"],["Pfam%3APF12891","Glycoside hydrolase family 44"],["TED%3AAF-A0A328VZ83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A328VZ83-F1-model_v4_TED01"],["TED%3AAF-A0A385TU82-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A385TU82-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1451","l":"Paenibacillus amylolyticus","na":1,"nb":4,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"]],"b":[["Pfam%3APF03211","Pectate lyase"],["TED%3AAF-A0A117I1X0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A117I1X0-F1-model_v4_TED01"],["TED%3AAF-A0A1R1DDF3-F1-model_v4_TED01","TED novel fold AF-A0A1R1DDF3-F1-model_v4_TED01"],["TED%3AAF-A0A4V3B7H8-F1-model_v4_TED01","TED novel fold AF-A0A4V3B7H8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1501","l":"Clostridium pasteurianum","na":1,"nb":4,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["Pfam%3APF22609","Iron hydrogenase 1-like, iron-sulfur centre-binding domain"],["Pfam%3APF09582","Iron only nitrogenase protein AnfO (AnfO_nitrog)"],["PROSITE%3APS00746","NifH/frxC family signature 1"],["PROSITE%3APS00699","Nitrogenases component 1 alpha and beta subunits signature 1"]]},{"id":"NCBITaxon:1534","l":"Clostridium kluyveri","na":4,"nb":1,"a":[["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["TED%3AAF-A0A1L5FEG9-F1-model_v4_TED01","TED novel fold AF-A0A1L5FEG9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1590","l":"Lactiplantibacillus plantarum","na":4,"nb":1,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Pichia_Lactiplantibacillus_CCMA_Plant_Beverage_Coculture.html","Pichia-Lactiplantibacillus CCMA Plant Beverage Coculture"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["Pfam%3APF06314","Acetoacetate decarboxylase (ADC)"]]},{"id":"NCBITaxon:243164","l":"Dehalococcoides mccartyi 195","na":4,"nb":1,"a":[["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["Pfam%3APF13486","Reductive dehalogenase subunit"]]},{"id":"NCBITaxon:258594","l":"Rhodopseudomonas palustris CGA009","na":1,"nb":4,"a":[["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"]],"b":[["Pfam%3APF01322","Cytochrome C'"],["PROSITE%3APS00969","Antenna complexes beta subunits signature"],["PROSITE%3APS00936","Ribosomal protein L35 signature"],["PROSITE%3APS01181","Ribosomal protein S21 signature"]]},{"id":"NCBITaxon:28037","l":"Streptococcus mitis","na":1,"nb":4,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["Pfam%3APF03047","COMC family"],["TED%3AAF-A0A1X1L9U5-F1-model_v4_TED02","TED novel fold AF-A0A1X1L9U5-F1-model_v4_TED02"],["TED%3AAF-A0A428B8X0-F1-model_v4_TED01","TED novel fold AF-A0A428B8X0-F1-model_v4_TED01"],["TED%3AAF-A0A6L5H4V3-F1-model_v4_TED03","TED novel fold AF-A0A6L5H4V3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:285","l":"Comamonas testosteroni","na":1,"nb":4,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["Pfam%3APF02900","Catalytic LigB subunit of aromatic ring-opening dioxygenase"],["Pfam%3APF19301","LigXa C-terminal domain like"],["TED%3AAF-A0A096HND0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A096HND0-F1-model_v4_TED01"],["TED%3AAF-A0A1Y1JCM1-F1-model_v4_TED01","TED novel fold AF-A0A1Y1JCM1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:34305","l":"Lotus japonicus","na":1,"nb":4,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["Pfam%3APF06241","Castor and Pollux, part of voltage-gated ion channel"],["Pfam%3APF23654","E3 ubiquitin-protein ligase LIN-like, ARM repeat"],["Pfam%3APF23628","Putative E3 ubiquitin-protein ligase LIN, ARM-like domain"],["Pfam%3APF23568","E3 ubiquitin-protein ligase LIN-like, ARM repeat"]]},{"id":"NCBITaxon:40520","l":"Blautia obeum","na":1,"nb":4,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]],"b":[["TED%3AAF-A0A174PFW9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A174PFW9-F1-model_v4_TED01"],["TED%3AAF-A0A174PHS9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A174PHS9-F1-model_v4_TED02"],["TED%3AAF-A0A415LGR0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A415LGR0-F1-model_v4_TED01"],["TED%3AAF-A0A414KHY7-F1-model_v4_TED02","TED novel fold AF-A0A414KHY7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":1,"nb":4,"a":[["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["Pfam%3APF11720","Peptidase inhibitor I78 family"],["Pfam%3APF12296","Hydrophobic surface binding protein A"],["TED%3AAF-A0A3M7JGA1-F1-model_v4_TED02","TED novel fold AF-A0A3M7JGA1-F1-model_v4_TED02"],["TED%3AAF-A0A7G5JNS3-F1-model_v4_TED03","TED novel fold AF-A0A7G5JNS3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:863","l":"Syntrophomonas wolfei","na":4,"nb":1,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["TED%3AAF-A0A354YY78-F1-model_v4_TED03","TED novel fold AF-A0A354YY78-F1-model_v4_TED03"]]},{"id":"CHEBI:147155","l":"","na":3,"nb":1,"a":[["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["RHEA%3A64016","alpha-L-Fuc-(1->2)-beta-D-Gal-(1->4)-D-Glc + GDP-beta-L-fucose = alpha-L-Fuc-(1->2)-beta-D-Gal-(1->4)-[alpha-L-Fuc-(1->3)]-D-Glc + GDP + H(+)"]]},{"id":"CHEBI:15356","l":"cysteine","na":3,"nb":1,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:16015","l":"L-glutamic acid","na":1,"nb":3,"a":[["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]],"b":[["MCSA%3A747","gamma-glutamyl hydrolase"],["proteintraitsmech%3ABIOLIP_GGL","GGL-binding site"],["proteintraitsmech%3ABIOLIP_GLU","GLU-binding site"]]},{"id":"CHEBI:16170","l":"mercury(0)","na":1,"nb":3,"a":[["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["EC%3A1.16.1.1","mercury(II) reductase"],["RHEA%3A23856","Hg + NADP(+) + H(+) = Hg(2+) + NADPH"],["MCSA%3A277","mercury(II) reductase"]]},{"id":"CHEBI:16467","l":"L-arginine","na":1,"nb":3,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["MCSA%3A688","classical-complement-pathway C3/C5 convertase"],["MCSA%3A425","plasmin"],["MCSA%3A798","t-plasminogen activator"]]},{"id":"CHEBI:16982","l":"(R,R)-butane-2,3-diol","na":1,"nb":3,"a":[["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"]],"b":[["EC%3A1.1.1.4","(R,R)-butanediol dehydrogenase"],["RHEA%3A24340","(R,R)-butane-2,3-diol + NAD(+) = (R)-acetoin + NADH + H(+)"],["proteintraitsmech%3ABIOLIP_BU3","BU3-binding site"]]},{"id":"CHEBI:17203","l":"L-proline","na":1,"nb":3,"a":[["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["MCSA%3A403","astacin"],["MCSA%3A379","Xaa-Pro aminopeptidase"],["proteintraitsmech%3ABIOLIP_PRO","PRO-binding site"]]},{"id":"CHEBI:17561","l":"L-cysteine","na":3,"nb":1,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["proteintraitsmech%3ABIOLIP_CYS","CYS-binding site"]]},{"id":"CHEBI:229785","l":"neodymium(3+)","na":3,"nb":1,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_ND","ND-binding site"]]},{"id":"CHEBI:2365","l":"(+)-abscisic acid","na":1,"nb":3,"a":[["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.17","The Proton-dependent Oligopeptide Transporter (POT/PTR) Family"],["proteintraitsmech%3ABIOLIP_A8S","A8S-binding site"]]},{"id":"CHEBI:28805","l":"cis-1,2-dichloroethene","na":1,"nb":3,"a":[["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"]],"b":[["RHEA%3A67992","trichloroethene + AH2 = (Z)-1,2-dichloroethene + chloride + A + H(+)"],["RHEA%3A67996","(Z)-1,2-dichloroethene + AH2 = chloroethene + chloride + A + H(+)"],["proteintraitsmech%3ABIOLIP_JYF","JYF-binding site"]]},{"id":"CHEBI:30803","l":"isophthalate(2-)","na":1,"nb":3,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["EC%3A6.2.1.58","isophthalate--CoA ligase"],["RHEA%3A61636","isophthalate + ATP + CoA = isophthalyl-CoA + AMP + diphosphate"],["TCDB%3A2.A.80","The Tricarboxylate Transporter (TTT) Family"]]},{"id":"CHEBI:31725","l":"isoamyl acetate","na":1,"nb":3,"a":[["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["EC%3A3.1.1.112","isoamyl acetate esterase"],["RHEA%3A65236","3-methylbutan-1-ol + acetyl-CoA = 3-methylbutyl acetate + CoA"],["RHEA%3A60436","3-methylbutyl acetate + H2O = 3-methylbutan-1-ol + acetate + H(+)"]]},{"id":"CHEBI:32816","l":"pyruvic acid","na":1,"nb":3,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_32816","requires pyruvic acid"],["MCSA%3A449","cystathionine beta-lyase"],["proteintraitsmech%3ABIOLIP_PYR","PYR-binding site"]]},{"id":"CHEBI:32879","l":"propane","na":1,"nb":3,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["EC%3A1.14.13.227","propane 2-monooxygenase"],["RHEA%3A49992","propane + NADH + O2 + H(+) = propan-2-ol + NAD(+) + H2O"],["proteintraitsmech%3ABIOLIP_TME","TME-binding site"]]},{"id":"CHEBI:33229","l":"vitamin (role)","na":1,"nb":3,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.21","The Solute:Sodium Symporter (SSS) Family"]]},{"id":"CHEBI:33359","l":"rhodium atom","na":1,"nb":3,"a":[["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_RH_DINUCLEAR","dinuclear rhodium site"],["proteintraitsmech%3AMETALPDB_RH_MONONUCLEAR","mononuclear rhodium site"],["proteintraitsmech%3AMETALPDB_RH_TRINUCLEAR","trinuclear rhodium site"]]},{"id":"CHEBI:35780","l":"phosphate ion","na":3,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"]]},{"id":"CHEBI:412516","l":"5-hydroxymethylfurfural","na":1,"nb":3,"a":[["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"]],"b":[["EC%3A1.1.3.47","5-(hydroxymethyl)furfural oxidase"],["RHEA%3A32683","5-hydroxymethylfurfural + 3 O2 + 2 H2O = 2,5-dicarboxyfuran + 3 H2O2 + 2 H(+)"],["RHEA%3A43504","5-hydroxymethylfurfural + O2 = 2,5-diformylfuran + H2O2"]]},{"id":"CHEBI:49631","l":"gallium atom","na":1,"nb":3,"a":[["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_GA_DINUCLEAR","dinuclear gallium site"],["proteintraitsmech%3AMETALPDB_GA_MONONUCLEAR","mononuclear gallium site"],["proteintraitsmech%3AMETALPDB_GA_TETRANUCLEAR","tetranuclear gallium site"]]},{"id":"CHEBI:50699","l":"oligosaccharide","na":1,"nb":3,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"]]},{"id":"CHEBI:920","l":"2,4-dinitrotoluene","na":1,"nb":3,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["EC%3A1.14.12.24","2,4-dinitrotoluene dioxygenase"],["RHEA%3A80191","2,4-dinitrotoluene + 2 NADPH + 2 H(+) = 4-hydroxylamino-2-nitrotoluene + 2 NADP(+) + H2O"],["RHEA%3A46760","2,4-dinitrotoluene + NADH + O2 = 4-methyl-5-nitrocatechol + nitrite + NAD(+)"]]},{"id":"GO:0005982","l":"starch metabolic process","na":1,"nb":3,"a":[["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"]],"b":[["GO%3A0019252","starch biosynthetic process"],["GO%3A0005983","starch catabolic process"],["GO%3A0005982","starch metabolic process"]]},{"id":"GO:0006544","l":"glycine metabolic process","na":1,"nb":3,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"]],"b":[["GO%3A0006545","glycine biosynthetic process"],["GO%3A0006546","glycine catabolic process"],["GO%3A0006544","glycine metabolic process"]]},{"id":"GO:0019563","l":"glycerol catabolic process","na":1,"nb":3,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["GO%3A0019588","anaerobic glycerol catabolic process"],["GO%3A0019563","glycerol catabolic process"],["NCBIfam%3ANF008478","dihydroxyacetone kinase phosphoryl donor subunit DhaM"]]},{"id":"GO:0044002","l":"acquisition of nutrients from host","na":1,"nb":3,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0044002","acquisition of nutrients from host"],["GO%3A0044847","iron acquisition from host"],["GO%3A0052091","modulation of nutrient release by host"]]},{"id":"GO:1902422","l":"hydrogen biosynthetic process","na":1,"nb":3,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["GO%3A1902422","hydrogen biosynthetic process"],["GO%3A0044817","hydrogen generation via biophotolysis"],["GO%3A0044835","hydrogen generation via nitrogenase"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":1,"nb":3,"a":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["Pfam%3APF05258","Dna[CI] antecedent, DciA"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"],["TED%3AAF-Q0RZW9-F1-model_v4_TED03","TED highly-symmetric fold AF-Q0RZW9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":1,"nb":3,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF08130","Type A lantibiotic family"],["Pfam%3APF04738","Lantibiotic dehydratase, N terminus"]]},{"id":"NCBITaxon:1587","l":"Lactobacillus helveticus","na":1,"nb":3,"a":[["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"]],"b":[["Pfam%3APF18008","Replication initiator protein A C-terminal domain"],["Pfam%3APF20956","Domain of unknown function (DUF4931) C-terminal domain"],["Pfam%3APF17312","Bacteriocin helveticin-J"]]},{"id":"NCBITaxon:1589","l":"Lactiplantibacillus pentosus","na":1,"nb":3,"a":[["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["PROSITE%3APS60002","Phosphoketolase signature 1"],["PROSITE%3APS60003","Phosphoketolase signature 2"],["TED%3AAF-A0A2K9I3V8-F1-model_v4_TED01","TED novel fold AF-A0A2K9I3V8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1624","l":"Ligilactobacillus salivarius","na":1,"nb":3,"a":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]],"b":[["TED%3AAF-A0A7X2SS58-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X2SS58-F1-model_v4_TED01"],["TED%3AAF-A0A089QBS8-F1-model_v4_TED02","TED novel fold AF-A0A089QBS8-F1-model_v4_TED02"],["TED%3AAF-A0A2A2XCA8-F1-model_v4_TED01","TED novel fold AF-A0A2A2XCA8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1680","l":"Bifidobacterium adolescentis","na":1,"nb":3,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]],"b":[["TED%3AAF-A0A1X2Z2R7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1X2Z2R7-F1-model_v4_TED02"],["TED%3AAF-A0A1X2Z7X6-F1-model_v4_TED02","TED novel fold AF-A0A1X2Z7X6-F1-model_v4_TED02"],["TED%3AAF-A0A1X2ZNR8-F1-model_v4_TED04","TED novel fold AF-A0A1X2ZNR8-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":3,"nb":1,"a":[["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["TED%3AAF-A0A415C3I8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A415C3I8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1708","l":"Cellulomonas fimi","na":1,"nb":3,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["Pfam%3APF00553","Cellulose binding domain"],["PROSITE%3APS00561","CBM2a (carbohydrate-binding type-2) domain signature"],["PROSITE%3APS00591","Glycosyl hydrolases family 10 (GH10) active site"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":3,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]],"b":[["TED%3AAF-A0A142EAM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142EAM9-F1-model_v4_TED03"],["TED%3AAF-A0A1Q3DTY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3DTY6-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3DNE3-F1-model_v4_TED01","TED novel fold AF-A0A1Q3DNE3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:192","l":"Azospirillum brasilense","na":1,"nb":3,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"]],"b":[["Pfam%3APF24931","ACR9-like, ACT-like domain"],["Pfam%3APF27444","Uridylyltransferase GlnD third domain"],["TED%3AAF-A0A235H319-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A235H319-F1-model_v4_TED01"]]},{"id":"NCBITaxon:198620","l":"Pseudomonas koreensis","na":3,"nb":1,"a":[["FourSpecies_Aerobic_Lung_Microbiome_Model.html","Four-Species Aerobic Lung Microbiome Model"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["TED%3AAF-A0A1G7ALV2-F1-model_v4_TED02","TED novel fold AF-A0A1G7ALV2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:203124","l":"Trichodesmium erythraeum IMS101","na":1,"nb":3,"a":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["Pfam%3APF06206","CpeT/CpcT family (DUF1001)"],["Pfam%3APF18460","Heterocyst differentiation regulator C-terminal Hood domain"],["TED%3AAF-Q10WG6-F1-model_v4_TED05","TED highly-symmetric fold AF-Q10WG6-F1-model_v4_TED05"]]},{"id":"NCBITaxon:216816","l":"Bifidobacterium longum","na":3,"nb":1,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["TED%3AAF-A0A413ACI9-F1-model_v4_TED01","TED novel fold AF-A0A413ACI9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2208","l":"Methanosarcina barkeri","na":3,"nb":1,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["Pfam%3APF09505","Dimethylamine methyltransferase (Dimeth_PyL)"]]},{"id":"NCBITaxon:33039","l":"[Ruminococcus] torques","na":1,"nb":3,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["TED%3AAF-A0A174ZX33-F1-model_v4_TED01","TED novel fold AF-A0A174ZX33-F1-model_v4_TED01"],["TED%3AAF-A0A6N3EHF6-F1-model_v4_TED02","TED novel fold AF-A0A6N3EHF6-F1-model_v4_TED02"],["TED%3AAF-A0A6N3EHH7-F1-model_v4_TED01","TED novel fold AF-A0A6N3EHH7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":1,"nb":3,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"],["TED%3AAF-A0A7H8I034-F1-model_v4_TED01","TED novel fold AF-A0A7H8I034-F1-model_v4_TED01"]]},{"id":"NCBITaxon:582","l":"Morganella morganii","na":1,"nb":3,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["PROSITE%3APS01157","Class A bacterial acid phosphatases signature"],["TED%3AAF-A0A2C5TPE5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2C5TPE5-F1-model_v4_TED01"],["TED%3AAF-A0A0A2RJY1-F1-model_v4_TED02","TED novel fold AF-A0A0A2RJY1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:70448","l":"Ostreococcus tauri","na":1,"nb":3,"a":[["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"]],"b":[["TED%3AAF-A0A090M1U3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A090M1U3-F1-model_v4_TED02"],["TED%3AAF-A0A090M3Z3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A090M3Z3-F1-model_v4_TED01"],["TED%3AAF-A0A1Y5INV9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y5INV9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:831","l":"Butyrivibrio fibrisolvens","na":1,"nb":3,"a":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"]],"b":[["Pfam%3APF16738","Starch-binding module 26"],["Pfam%3APF18318","Glutamine synthetase C-terminal domain"],["Pfam%3APF12437","Glutamine synthetase type III N terminal"]]},{"id":"NCBITaxon:94130","l":"Rhizophagus clarus","na":1,"nb":3,"a":[["Mediterranean_AM_Fungal_SixSpecies_SynCom.html","Mediterranean AM Fungal Six-Species SynCom"]],"b":[["TED%3AAF-A0A2Z6R1J4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z6R1J4-F1-model_v4_TED01"],["TED%3AAF-A0A2Z6SKM0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z6SKM0-F1-model_v4_TED01"],["TED%3AAF-A0A2Z6S4T9-F1-model_v4_TED04","TED novel fold AF-A0A2Z6S4T9-F1-model_v4_TED04"]]},{"id":"CHEBI:134612","l":"staphyloferrin B","na":1,"nb":2,"a":[["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_134612","requires staphyloferrin B"],["proteintraitsmech%3ABIOLIP_SE8","SE8-binding site"]]},{"id":"CHEBI:15729","l":"L-ornithine","na":1,"nb":2,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["MCSA%3A12","ornithine carbamoyltransferase"],["proteintraitsmech%3ABIOLIP_ORN","ORN-binding site"]]},{"id":"CHEBI:15904","l":"long-chain fatty acid","na":1,"nb":2,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:15940","l":"nicotinic acid","na":1,"nb":2,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15940","requires nicotinic acid"],["proteintraitsmech%3ABIOLIP_NIO","NIO-binding site"]]},{"id":"CHEBI:15982","l":"cob(I)alamin","na":2,"nb":1,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15982","requires cob(I)alamin"]]},{"id":"CHEBI:16830","l":"methylamine","na":2,"nb":1,"a":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"]],"b":[["proteintraitsmech%3ABIOLIP_NME","NME-binding site"]]},{"id":"CHEBI:16914","l":"salicylic acid","na":2,"nb":1,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"]],"b":[["proteintraitsmech%3ABIOLIP_SAL","SAL-binding site"]]},{"id":"CHEBI:16991","l":"deoxyribonucleic acid","na":2,"nb":1,"a":[["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_DNA","DNA-binding site"]]},{"id":"CHEBI:17747","l":"bis(2-ethylhexyl) phthalate","na":1,"nb":2,"a":[["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"]],"b":[["EC%3A3.1.1.60","bis(2-ethylhexyl)phthalate esterase"],["RHEA%3A15529","bis(2-ethylhexyl)phthalate + H2O = 2-ethylhexan-1-ol + 2-ethylhexyl phthalate + H(+)"]]},{"id":"CHEBI:179252","l":"4-Ethyl-2-methoxyphenol","na":2,"nb":1,"a":[["Sichuan_Shai_Vinegar_Yeast_Flavor_SynCom.html","Sichuan Shai Vinegar Yeast Flavor SynCom"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["RHEA%3A73959","2-methoxy-4-vinylphenol + NADH + H(+) = 4-ethyl-2-methoxyphenol + NAD(+)"]]},{"id":"CHEBI:18053","l":"1-aminocyclopropanecarboxylic acid","na":2,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["proteintraitsmech%3ABIOLIP_1AC","1AC-binding site"]]},{"id":"CHEBI:23530","l":"cytokinin","na":1,"nb":2,"a":[["Staged_Cattle_Manure_Ensifer_Bacillus_SynCom.html","Staged Ensifer-Bacillus Cattle-Manure Wastewater SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"]]},{"id":"CHEBI:28073","l":"chromium atom","na":1,"nb":2,"a":[["Meghalaya_Bacillus_Consortia_A22ED9.html","Meghalaya Bacillus Consortia-A22ED9"]],"b":[["proteintraitsmech%3AMETALPDB_CR_DINUCLEAR","dinuclear chromium site"],["proteintraitsmech%3AMETALPDB_CR_MONONUCLEAR","mononuclear chromium site"]]},{"id":"CHEBI:28757","l":"fructose","na":1,"nb":2,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["GO%3A0070061","fructose binding"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:28817","l":"dodecane","na":1,"nb":2,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["RHEA%3A76739","dodecane + reduced [NADPH--hemoprotein reductase] + O2 = 5-dodecanol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["proteintraitsmech%3ABIOLIP_D12","D12-binding site"]]},{"id":"CHEBI:28837","l":"octanoic acid","na":2,"nb":1,"a":[["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["proteintraitsmech%3ABIOLIP_OCA","OCA-binding site"]]},{"id":"CHEBI:29016","l":"arginine","na":1,"nb":2,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:29073","l":"L-ascorbic acid","na":1,"nb":2,"a":[["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29073","requires L-ascorbic acid"],["proteintraitsmech%3ABIOLIP_ASC","ASC-binding site"]]},{"id":"CHEBI:29681","l":"surfactin","na":1,"nb":2,"a":[["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]]},{"id":"CHEBI:30832","l":"adipic acid","na":1,"nb":2,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["proteintraitsmech%3ABIOLIP_0L1","0L1-binding site"]]},{"id":"CHEBI:32588","l":"potassium chloride","na":2,"nb":1,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"]],"b":[["TCDB%3A2.A.30","The Cation-Chloride Cotransporter (CCC) Family"]]},{"id":"CHEBI:33284","l":"nutrient","na":2,"nb":1,"a":[["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["TCDB%3A1.A.91","The Cytoadherence-linked Asexual Protein 3.2 of Plasmodium falciparum (Clag3) Family"]]},{"id":"CHEBI:33848","l":"polycyclic arene","na":2,"nb":1,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Pelagerythrobacter_Salinicola_PES_Pyrene_Degradation_SynCom.html","Pelagerythrobacter-Salinicola PES Pyrene-Degradation SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:33913","l":"corrinoid","na":2,"nb":1,"a":[["Soil_Corrinoid_B12_Reservoir_Community.html","Soil Corrinoid Reservoir Microbial Community"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_33913","requires corrinoid"]]},{"id":"CHEBI:35381","l":"monosaccharide","na":2,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:35404","l":"chromate(2-)","na":2,"nb":1,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"]],"b":[["RHEA%3A32819","chromate(in) = chromate(out)"]]},{"id":"CHEBI:36219","l":"alpha-lactose","na":2,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"]],"b":[["RHEA%3A84479","alpha-lactose = lactulose"]]},{"id":"CHEBI:40646","l":"autoinducer-2","na":1,"nb":2,"a":[["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.86","The Autoinducer-2 Exporter (AI-2E) Family (Formerly the PerM Family, TC #9.B.22)"]]},{"id":"CHEBI:42111","l":"(R)-lactic acid","na":2,"nb":1,"a":[["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_LAC","LAC-binding site"]]},{"id":"CHEBI:44534","l":"N-(3-oxododecanoyl)-L-homoserine lactone","na":2,"nb":1,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["proteintraitsmech%3ABIOLIP_OHN","OHN-binding site"]]},{"id":"CHEBI:46442","l":"vanadate(3-)","na":2,"nb":1,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["proteintraitsmech%3ABIOLIP_VO4","VO4-binding site"]]},{"id":"CHEBI:47381","l":"diclofenac","na":1,"nb":2,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["proteintraitsmech%3ABIOLIP_DIF","DIF-binding site"]]},{"id":"CHEBI:49544","l":"chromium(3+)","na":1,"nb":2,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["RHEA%3A44372","Cr(6+) + 2 NADH + O2 = Cr(3+) + superoxide + 2 NAD(+) + 2 H(+)"],["RHEA%3A44368","Cr(6+) + 2 NADPH + O2 = Cr(3+) + superoxide + 2 NADP(+) + 2 H(+)"]]},{"id":"CHEBI:53650","l":"guaiacylglycerol-beta-guaiacyl ether","na":1,"nb":2,"a":[["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["EC%3A1.11.1.16","versatile peroxidase"],["RHEA%3A22396","1-(4-hydroxy-3-methoxyphenyl)-2-(2-methoxyphenoxy)propane-1,3-diol + H2O2 = guaiacol + vanillin + glycolaldehyde + H2O"]]},{"id":"CHEBI:61448","l":"isopropyl beta-D-thiogalactopyranoside","na":1,"nb":2,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_IPT","IPT-binding site"]]},{"id":"CHEBI:82420","l":"1-chloro-3-nitrobenzene","na":1,"nb":2,"a":[["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]],"b":[["RHEA%3A57808","1-chloro-3-nitrobenzene + NADH + O2 = 3-chlorocatechol + nitrite + NAD(+)"],["RHEA%3A57804","1-chloro-3-nitrobenzene + NADH + O2 = 4-chlorocatechol + nitrite + NAD(+)"]]},{"id":"CHEBI:84046","l":"pyoverdine","na":1,"nb":2,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_84046","requires pyoverdine"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"GO:0006082","l":"obsolete organic acid metabolic process","na":2,"nb":1,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["PANTHER%3APTHR43680","NITRATE REDUCTASE MOLYBDENUM COFACTOR ASSEMBLY CHAPERONE"]]},{"id":"GO:0006568","l":"obsolete L-tryptophan metabolic process","na":1,"nb":2,"a":[["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"]],"b":[["Pfam%3APF00697","N-(5'phosphoribosyl)anthranilate (PRA) isomerase"],["Pfam%3APF00290","Tryptophan synthase alpha chain"]]},{"id":"GO:0006798","l":"polyphosphate catabolic process","na":1,"nb":2,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"]],"b":[["GO%3A0006798","polyphosphate catabolic process"],["NCBIfam%3ATIGR03706","exopolyphosphatase"]]},{"id":"GO:0006995","l":"cellular response to nitrogen starvation","na":1,"nb":2,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["GO%3A0006995","cellular response to nitrogen starvation"],["GO%3A0031142","induction of conjugation upon nitrogen starvation"]]},{"id":"GO:0010025","l":"wax biosynthetic process","na":1,"nb":2,"a":[["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"]],"b":[["GO%3A0010025","wax biosynthetic process"],["Reactome%3AR-HSA-9640463","Wax biosynthesis"]]},{"id":"GO:0019417","l":"sulfur oxidation","na":1,"nb":2,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["GO%3A0019417","sulfur oxidation"],["NCBIfam%3ATIGR04484","sulfur oxidation c-type cytochrome SoxA"]]},{"id":"GO:0019676","l":"ammonia assimilation cycle","na":1,"nb":2,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]],"b":[["ComplexPortal%3ACPX-5041","Glutamate synthase [NADPH] complex"],["GO%3A0019676","ammonia assimilation cycle"]]},{"id":"GO:0046359","l":"butyrate catabolic process","na":2,"nb":1,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["GO%3A0046359","butyrate catabolic process"]]},{"id":"GO:0071466","l":"cellular response to xenobiotic stimulus","na":1,"nb":2,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["ComplexPortal%3ACPX-2121","EmrE multidrug transporter complex"],["GO%3A0071466","cellular response to xenobiotic stimulus"]]},{"id":"GO:0141082","l":"symbiont-mediated detoxification of host-generated reactive oxygen species","na":1,"nb":2,"a":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["GO%3A0141082","symbiont-mediated detoxification of host-generated reactive oxygen species"],["Reactome%3AR-HSA-1222538","Tolerance by Mtb to nitric oxide produced by macrophages"]]},{"id":"NCBITaxon:105841","l":"Anaerostipes caccae","na":2,"nb":1,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["TED%3AAF-A0A6N2WKG2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N2WKG2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1245","l":"Leuconostoc mesenteroides","na":1,"nb":2,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["Pfam%3APF08951","Bacteriocin immunity protein family"],["TED%3AAF-A0A8B5R1X5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B5R1X5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1249","l":"Weissella paramesenteroides","na":1,"nb":2,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["Pfam%3APF01874","ATP:dephospho-CoA triphosphoribosyl transferase"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"]]},{"id":"NCBITaxon:1303","l":"Streptococcus oralis","na":1,"nb":2,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["Pfam%3APF03047","COMC family"],["TED%3AAF-A0A139PPG4-F1-model_v4_TED02","TED novel fold AF-A0A139PPG4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1317","l":"Streptococcus downei","na":2,"nb":1,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"],["FourSpecies_Aerobic_Lung_Microbiome_Model.html","Four-Species Aerobic Lung Microbiome Model"]],"b":[["Pfam%3APF13199","Glycosyl hydrolase family 66"]]},{"id":"NCBITaxon:1335","l":"Streptococcus equinus","na":2,"nb":1,"a":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"]],"b":[["TED%3AAF-A0A1V0GLT7-F1-model_v4_TED01","TED novel fold AF-A0A1V0GLT7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1582","l":"Lacticaseibacillus casei","na":1,"nb":2,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["Pfam%3APF07475","HPr Serine kinase C-terminal domain"],["PROSITE%3APS01163","Galactose-1-phosphate uridyl transferase family 2 signature"]]},{"id":"NCBITaxon:158836","l":"Enterobacter hormaechei","na":1,"nb":2,"a":[["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["TED%3AAF-A0A431SE22-F1-model_v4_TED01","TED novel fold AF-A0A431SE22-F1-model_v4_TED01"],["TED%3AAF-A0A8B5ZRS3-F1-model_v4_TED01","TED novel fold AF-A0A8B5ZRS3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1597","l":"Lacticaseibacillus paracasei","na":1,"nb":2,"a":[["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["Pfam%3APF09136","Glucodextranase, domain B"],["Pfam%3APF08109","Lactocin 705 family"]]},{"id":"NCBITaxon:1655","l":"Actinomyces naeslundii","na":1,"nb":2,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["Pfam%3APF16555","Gram-positive pilin subunit D1, N-terminal domain"],["TED%3AAF-A0A2Z5QNH6-F1-model_v4_TED02","TED novel fold AF-A0A2Z5QNH6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1871043","l":"Variovorax sp.","na":2,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]],"b":[["TED%3AAF-A0A2E9BKC8-F1-model_v4_TED02","TED novel fold AF-A0A2E9BKC8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1908224","l":"Sphingopyxis sp.","na":2,"nb":1,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["TED%3AAF-A0A2G2D229-F1-model_v4_TED01","TED novel fold AF-A0A2G2D229-F1-model_v4_TED01"]]},{"id":"NCBITaxon:244366","l":"Klebsiella variicola","na":2,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["TED%3AAF-A0A2N4Z4E2-F1-model_v4_TED01","TED novel fold AF-A0A2N4Z4E2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:246200","l":"Ruegeria pomeroyi DSS-3","na":1,"nb":2,"a":[["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["Pfam%3APF16867","Dimethlysulfonioproprionate lyase"],["Pfam%3APF09347","Domain of unknown function (DUF1989)"]]},{"id":"NCBITaxon:252970","l":"Paraburkholderia phenoliruptrix","na":1,"nb":2,"a":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]],"b":[["TED%3AAF-A0A6J5BF93-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6J5BF93-F1-model_v4_TED01"],["TED%3AAF-A0A6J5BWX8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6J5BWX8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":2,"nb":1,"a":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]],"b":[["PROSITE%3APS01322","Phosphotriesterase family signature 1"]]},{"id":"NCBITaxon:29466","l":"Veillonella parvula","na":2,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]],"b":[["TED%3AAF-A0A134BYG5-F1-model_v4_TED01","TED novel fold AF-A0A134BYG5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:299767","l":"Enterobacter ludwigii","na":2,"nb":1,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["TED%3AAF-W0BYN9-F1-model_v4_TED01","TED highly-symmetric fold AF-W0BYN9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:323259","l":"Methanospirillum hungatei JF-1","na":2,"nb":1,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["Pfam%3APF01864","CDP-archaeol synthase"]]},{"id":"NCBITaxon:33959","l":"Lactobacillus johnsonii","na":2,"nb":1,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]],"b":[["Pfam%3APF13518","Helix-turn-helix domain"]]},{"id":"NCBITaxon:375","l":"Bradyrhizobium japonicum","na":1,"nb":2,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"]],"b":[["TED%3AAF-A0A1L3FD53-F1-model_v4_TED02","TED novel fold AF-A0A1L3FD53-F1-model_v4_TED02"],["TED%3AAF-A0A1L3FDV4-F1-model_v4_TED02","TED novel fold AF-A0A1L3FDV4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:3818","l":"Arachis hypogaea","na":1,"nb":2,"a":[["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["TED%3AAF-A0A445AVV9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A445AVV9-F1-model_v4_TED02"],["TED%3AAF-A0A444Z3U3-F1-model_v4_TED01","TED novel fold AF-A0A444Z3U3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:40214","l":"Acinetobacter johnsonii","na":1,"nb":2,"a":[["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["Pfam%3APF12973","ChrR Cupin-like domain"],["Pfam%3APF13807","G-rich domain on putative tyrosine kinase"]]},{"id":"NCBITaxon:408","l":"Methylorubrum extorquens","na":2,"nb":1,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["Pfam%3APF04476","4-HFC-P synthase"]]},{"id":"NCBITaxon:4530","l":"Oryza sativa","na":1,"nb":2,"a":[["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"]],"b":[["Pfam%3APF10839","Protein of unknown function (DUF2647)"],["PROSITE%3APS00937","Ribosomal protein L20 signature"]]},{"id":"NCBITaxon:536","l":"Chromobacterium violaceum","na":1,"nb":2,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"]],"b":[["TED%3AAF-A0A381EUD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A381EUD6-F1-model_v4_TED01"],["TED%3AAF-A0A447THJ9-F1-model_v4_TED01","TED novel fold AF-A0A447THJ9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:582702","l":"Rhodanobacter glycinis","na":1,"nb":2,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"]],"b":[["TED%3AAF-A0A1I4G4N7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I4G4N7-F1-model_v4_TED02"],["TED%3AAF-A0A502CFB8-F1-model_v4_TED01","TED novel fold AF-A0A502CFB8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:64104","l":"Bacillus pseudomycoides","na":1,"nb":2,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["TED%3AAF-A0A1Y3MB62-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y3MB62-F1-model_v4_TED01"],["TED%3AAF-A0A2C4USY5-F1-model_v4_TED01","TED novel fold AF-A0A2C4USY5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:659243","l":"Bacillus siamensis","na":2,"nb":1,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"]],"b":[["TED%3AAF-A0A853L550-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A853L550-F1-model_v4_TED02"]]},{"id":"NCBITaxon:82380","l":"Microbacterium oxydans","na":2,"nb":1,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]],"b":[["TED%3AAF-A0A4Y4GD74-F1-model_v4_TED02","TED novel fold AF-A0A4Y4GD74-F1-model_v4_TED02"]]},{"id":"NCBITaxon:94626","l":"Brucella tritici","na":1,"nb":2,"a":[["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]],"b":[["TED%3AAF-A0A7X6FRR6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X6FRR6-F1-model_v4_TED01"],["TED%3AAF-A0A7X6JC90-F1-model_v4_TED01","TED novel fold AF-A0A7X6JC90-F1-model_v4_TED01"]]},{"id":"NCBITaxon:971","l":"Pseudoselenomonas ruminantium","na":1,"nb":2,"a":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"]],"b":[["TED%3AAF-A0A1H0QI16-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H0QI16-F1-model_v4_TED02"],["TED%3AAF-A0A1I6XHL5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I6XHL5-F1-model_v4_TED01"]]},{"id":"UBERON:0002097","l":"skin of body","na":1,"nb":2,"a":[["SkinCom_Synthetic_Skin_Community.html","SkinCom Synthetic Skin Community"]],"b":[["GO%3A0043588","skin development"],["GO%3A0043589","skin morphogenesis"]]},{"id":"CHEBI:15517","l":"butyryl-CoA","na":1,"nb":1,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_BCO","BCO-binding site"]]},{"id":"CHEBI:15859","l":"N-carbamoyl-L-aspartic acid","na":1,"nb":1,"a":[["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:16119","l":"shikimic acid","na":1,"nb":1,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["proteintraitsmech%3ABIOLIP_SKM","SKM-binding site"]]},{"id":"CHEBI:16449","l":"alanine","na":1,"nb":1,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["MCSA%3A724","repressor LexA"]]},{"id":"CHEBI:16988","l":"D-ribose","na":1,"nb":1,"a":[["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:17089","l":"glycoprotein","na":1,"nb":1,"a":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"]],"b":[["TCDB%3A9.B.417","The MCFD2/LMAN1 Complex Receptor (MLM-CR) Family"]]},{"id":"CHEBI:17359)","l":"","na":1,"nb":1,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"]],"b":[["RHEA%3A12945","2'-hydroxybiphenyl-2-sulfinate + H2O = biphenyl-2-ol + sulfite + H(+)"]]},{"id":"CHEBI:17418","l":"valeric acid","na":1,"nb":1,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_LEA","LEA-binding site"]]},{"id":"CHEBI:17514","l":"cyanide","na":1,"nb":1,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"]],"b":[["proteintraitsmech%3ABIOLIP_CYN","CYN-binding site"]]},{"id":"CHEBI:17642","l":"pentachlorophenol","na":1,"nb":1,"a":[["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_PCI","PCI-binding site"]]},{"id":"CHEBI:18012","l":"fumaric acid","na":1,"nb":1,"a":[["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["proteintraitsmech%3ABIOLIP_FUM","FUM-binding site"]]},{"id":"CHEBI:18186","l":"tyrosine","na":1,"nb":1,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["MCSA%3A668","leishmanolysin"]]},{"id":"CHEBI:22660","l":"aspartic acid","na":1,"nb":1,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"]]},{"id":"CHEBI:24632","l":"hydrocarbon","na":1,"nb":1,"a":[["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"]],"b":[["TCDB%3A1.B.9","The FadL Outer Membrane Protein (FadL) Family"]]},{"id":"CHEBI:26401","l":"purines","na":1,"nb":1,"a":[["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:27570","l":"histidine","na":1,"nb":1,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:28260","l":"galactose","na":1,"nb":1,"a":[["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:28808","l":"mannan","na":1,"nb":1,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"]],"b":[["TCDB%3A4.A.3","The PTS Lactose-N,N'-Diacetylchitobiose-β-glucoside (Lac) Family"]]},{"id":"CHEBI:30531","l":"pimelic acid","na":1,"nb":1,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["proteintraitsmech%3ABIOLIP_PML","PML-binding site"]]},{"id":"CHEBI:30778","l":"gallic acid","na":1,"nb":1,"a":[["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_GDE","GDE-binding site"]]},{"id":"CHEBI:32079","l":"pyrrolnitrin","na":1,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["RHEA%3A46136","aminopyrrolnitrin + NADPH + 2 O2 + H(+) = pyrrolnitrin + NADP(+) + 2 H2O"]]},{"id":"CHEBI:33198","l":"D-gluconic acid","na":1,"nb":1,"a":[["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"]],"b":[["proteintraitsmech%3ABIOLIP_GCO","GCO-binding site"]]},{"id":"CHEBI:34031","l":"1,1-dichloroethene","na":1,"nb":1,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["RHEA%3A68000","1,1-dichloroethene + AH2 = chloroethene + chloride + A + H(+)"]]},{"id":"CHEBI:34631","l":"chlorpyrifos","na":1,"nb":1,"a":[["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:35366","l":"fatty acid","na":1,"nb":1,"a":[["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:36976","l":"nucleotide","na":1,"nb":1,"a":[["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"]],"b":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"]]},{"id":"CHEBI:38155","l":"phytosiderophore","na":1,"nb":1,"a":[["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["TCDB%3A2.A.67","The Oligopeptide Transporter (OPT) Family"]]},{"id":"CHEBI:38372","l":"cis-2-dodecenoic acid","na":1,"nb":1,"a":[["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_GEY","GEY-binding site"]]},{"id":"CHEBI:41131","l":"crotonic acid","na":1,"nb":1,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_BEO","BEO-binding site"]]},{"id":"CHEBI:45441","l":"N-acetyl-L-serine","na":1,"nb":1,"a":[["Watermelon_Rhizosphere_Fusarium_SynCom8.html","Watermelon Rhizosphere Fusarium-Protective SynCom8"]],"b":[["proteintraitsmech%3ABIOLIP_SAC","SAC-binding site"]]},{"id":"CHEBI:46645","l":"isobutanol","na":1,"nb":1,"a":[["Trichoderma_Ecoli_Cellulosic_Isobutanol_Coculture.html","Trichoderma-E. coli Cellulosic Isobutanol Coculture"]],"b":[["RHEA%3A64692","isobutanol + NAD(+) = 2-methylpropanal + NADH + H(+)"]]},{"id":"CHEBI:49017","l":"3-methylthiopropanal","na":1,"nb":1,"a":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["RHEA%3A55076","4-methylsulfanyl-2-oxobutanoate + H(+) = 3-methylsulfanylpropanal + CO2"]]},{"id":"CHEBI:49890","l":"samarium(3+)","na":1,"nb":1,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_SM","SM-binding site"]]},{"id":"CHEBI:49980","l":"ytterbium(3+)","na":1,"nb":1,"a":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["proteintraitsmech%3ABIOLIP_YB","YB-binding site"]]},{"id":"CHEBI:7476","l":"naproxen","na":1,"nb":1,"a":[["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"]],"b":[["proteintraitsmech%3ABIOLIP_NPS","NPS-binding site"]]},{"id":"CHEBI:75861","l":"arsenopyrite","na":1,"nb":1,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"]],"b":[["TCDB%3A3.A.4","The Arsenite-Antimonite (ArsAB) Efflux Family"]]},{"id":"CHEBI:84043","l":"gallium(3+)","na":1,"nb":1,"a":[["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"GO:0006046","l":"N-acetylglucosamine catabolic process","na":1,"nb":1,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]],"b":[["GO%3A0006046","N-acetylglucosamine catabolic process"]]},{"id":"GO:0019249","l":"lactate biosynthetic process","na":1,"nb":1,"a":[["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["GO%3A0019249","lactate biosynthetic process"]]},{"id":"GO:0019253","l":"reductive pentose-phosphate cycle","na":1,"nb":1,"a":[["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["GO%3A0019253","reductive pentose-phosphate cycle"]]},{"id":"GO:0019332","l":"aerobic respiration, using nitrite as electron donor","na":1,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"]],"b":[["GO%3A0019332","aerobic respiration, using nitrite as electron donor"]]},{"id":"GO:0022622","l":"root system development","na":1,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["GO%3A0022622","root system development"]]},{"id":"GO:0042192","l":"methylmercury biosynthetic process","na":1,"nb":1,"a":[["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"]],"b":[["GO%3A0042192","methylmercury biosynthetic process"]]},{"id":"GO:0046202","l":"cyanide biosynthetic process","na":1,"nb":1,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"]],"b":[["GO%3A0046202","cyanide biosynthetic process"]]},{"id":"GO:0051850","l":"acquisition of nutrients from symbiont","na":1,"nb":1,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0051850","acquisition of nutrients from symbiont"]]},{"id":"GO:0140923","l":"magnetosome assembly","na":1,"nb":1,"a":[["Tropidoatractus_Magnetotacticus_Tripartite_Syntrophy.html","Tropidoatractus magnetotacticus Magnetotactic Ciliate Tripartite Syntrophy"]],"b":[["GO%3A0140923","magnetosome assembly"]]},{"id":"GO:1902087","l":"dimethylsulfoniopropionate catabolic process","na":1,"nb":1,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["GO%3A1902087","dimethylsulfoniopropionate catabolic process"]]},{"id":"NCBITaxon:101028","l":"Fusarium pseudograminearum","na":1,"nb":1,"a":[["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["TED%3AAF-A0A7S8DXW2-F1-model_v4_TED02","TED novel fold AF-A0A7S8DXW2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1072583","l":"Vreelandella boliviensis LC1","na":1,"nb":1,"a":[["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"]],"b":[["TED%3AAF-A0A265DTH2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A265DTH2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1165","l":"Anabaena cylindrica","na":1,"nb":1,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["Pfam%3APF17275","Family of unknown function (DUF5340)"]]},{"id":"NCBITaxon:118127","l":"Chryseobacterium proteolyticum","na":1,"nb":1,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["Pfam%3APF18626","Glutaminase"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":1,"nb":1,"a":[["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["TED%3AAF-A0A132HLN2-F1-model_v4_TED01","TED novel fold AF-A0A132HLN2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1215089","l":"Planococcus halocryophilus","na":1,"nb":1,"a":[["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"]],"b":[["TED%3AAF-A0A1C7DVM0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C7DVM0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":1,"nb":1,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["PROSITE%3APS01043","Transposases, IS30 family, signature"]]},{"id":"NCBITaxon:134","l":"Methylocystis parvus","na":1,"nb":1,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"]],"b":[["TED%3AAF-A0A6B8M6B0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6B8M6B0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:138074","l":"Serratia symbiotica","na":1,"nb":1,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"]],"b":[["TED%3AAF-A0A068YYP3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A068YYP3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1399","l":"Cytobacillus firmus","na":1,"nb":1,"a":[["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"]],"b":[["TED%3AAF-A0A800NFK9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A800NFK9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1520","l":"Clostridium beijerinckii","na":1,"nb":1,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"]],"b":[["TED%3AAF-A0A0B5QQV4-F1-model_v4_TED02","TED novel fold AF-A0A0B5QQV4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1547","l":"Thomasclavelia ramosa","na":1,"nb":1,"a":[["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["TED%3AAF-A0A3E3E4C4-F1-model_v4_TED02","TED novel fold AF-A0A3E3E4C4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1585","l":"Lactobacillus delbrueckii subsp. bulgaricus","na":1,"nb":1,"a":[["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["TED%3AAF-A0A809EIY6-F1-model_v4_TED02","TED novel fold AF-A0A809EIY6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:159743","l":"Paenibacillus terrae","na":1,"nb":1,"a":[["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"]],"b":[["TED%3AAF-A0A0D7WXS4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D7WXS4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1673428","l":"Cuniculiplasma divulgatum","na":1,"nb":1,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["TED%3AAF-A0A1N5S5J2-F1-model_v4_TED02","TED novel fold AF-A0A1N5S5J2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":1,"nb":1,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["Pfam%3APF08124","Polysaccharide lyase family 8, N terminal alpha-helical domain"]]},{"id":"NCBITaxon:1920","l":"Streptomyces nigrescens","na":1,"nb":1,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["Pfam%3APF03995","Peptidase inhibitor family I36"]]},{"id":"NCBITaxon:1979961","l":"Wenzhouxiangella sp.","na":1,"nb":1,"a":[["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["TED%3AAF-A0A5Q4GWL5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Q4GWL5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:216778","l":"Stenotrophomonas rhizophila","na":1,"nb":1,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"]],"b":[["TED%3AAF-A0A023XYG6-F1-model_v4_TED02","TED novel fold AF-A0A023XYG6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2209","l":"Methanosarcina mazei","na":1,"nb":1,"a":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"]],"b":[["TED%3AAF-A0A0F8CQX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F8CQX7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:223967","l":"Methylorubrum populi","na":1,"nb":1,"a":[["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"]],"b":[["TED%3AAF-A0A161JLG1-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A161JLG1-F1-model_v4_TED04"]]},{"id":"NCBITaxon:250","l":"Chryseobacterium gleum","na":1,"nb":1,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["TED%3AAF-A0A448B167-F1-model_v4_TED02","TED novel fold AF-A0A448B167-F1-model_v4_TED02"]]},{"id":"NCBITaxon:258","l":"Sphingobacterium spiritivorum","na":1,"nb":1,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["TED%3AAF-A0A380CHI8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A380CHI8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:264198","l":"Cupriavidus pinatubonensis JMP134","na":1,"nb":1,"a":[["Rhizorhabdus_Cupriavidus_BDE47_Degradation_SynCom.html","Rhizorhabdus-Cupriavidus BDE-47 Degradation SynCom"]],"b":[["TED%3AAF-Q476D1-F1-model_v4_TED02","TED highly-symmetric fold AF-Q476D1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:270351","l":"Methylobacterium aquaticum","na":1,"nb":1,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["TED%3AAF-A0A0J6S4M9-F1-model_v4_TED02","TED novel fold AF-A0A0J6S4M9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2759","l":"Eukaryota","na":1,"nb":1,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2759","Eukaryota orthologous groups (OrthoDB)"]]},{"id":"NCBITaxon:294710","l":"Proteiniphilum acetatigenes","na":1,"nb":1,"a":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"]],"b":[["TED%3AAF-A0A101HH48-F1-model_v4_TED02","TED novel fold AF-A0A101HH48-F1-model_v4_TED02"]]},{"id":"NCBITaxon:29875","l":"Trichoderma virens","na":1,"nb":1,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"]],"b":[["Pfam%3APF07249","Cerato-platanin"]]},{"id":"NCBITaxon:316385","l":"Escherichia coli str. K-12 substr. DH10B","na":1,"nb":1,"a":[["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["Pfam%3APF06392","Acid shock protein"]]},{"id":"NCBITaxon:33905","l":"Bifidobacterium thermophilum","na":1,"nb":1,"a":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["TED%3AAF-A0A2N3QE79-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3QE79-F1-model_v4_TED01"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":1,"nb":1,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["TED%3AAF-A0A679J1E9-F1-model_v4_TED01","TED novel fold AF-A0A679J1E9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:3747","l":"Fragaria x ananassa","na":1,"nb":1,"a":[["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["PROSITE%3APS00451","Pathogenesis-related proteins Bet v I family signature"]]},{"id":"NCBITaxon:37929","l":"Glutamicibacter nicotianae","na":1,"nb":1,"a":[["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"]],"b":[["Pfam%3APF16701","Adenylate cyclase regulatory domain"]]},{"id":"NCBITaxon:38304","l":"Corynebacterium tuberculostearicum","na":1,"nb":1,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["TED%3AAF-A0A7U0H937-F1-model_v4_TED01","TED novel fold AF-A0A7U0H937-F1-model_v4_TED01"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"]],"b":[["Pfam%3APF13282","Domain of unknown function (DUF4070)"]]},{"id":"NCBITaxon:40216","l":"Acinetobacter radioresistens","na":1,"nb":1,"a":[["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["TED%3AAF-A0A7D7YF26-F1-model_v4_TED02","TED novel fold AF-A0A7D7YF26-F1-model_v4_TED02"]]},{"id":"NCBITaxon:4054","l":"Panax ginseng","na":1,"nb":1,"a":[["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"]],"b":[["Pfam%3APF26168","Glycosyltransferase, N-terminal domain"]]},{"id":"NCBITaxon:453960","l":"Sulfobacillus benefaciens","na":1,"nb":1,"a":[["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"]],"b":[["TED%3AAF-A0A2T2WWZ6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2T2WWZ6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:47715","l":"Lacticaseibacillus rhamnosus","na":1,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["Pfam%3APF04914","DltD protein"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":1,"nb":1,"a":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]],"b":[["TED%3AAF-A0A4R6CRR7-F1-model_v4_TED01","TED novel fold AF-A0A4R6CRR7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:4909","l":"Pichia kudriavzevii","na":1,"nb":1,"a":[["Sichuan_Shai_Vinegar_Yeast_Flavor_SynCom.html","Sichuan Shai Vinegar Yeast Flavor SynCom"]],"b":[["TED%3AAF-A0A099P804-F1-model_v4_TED01","TED novel fold AF-A0A099P804-F1-model_v4_TED01"]]},{"id":"NCBITaxon:4911","l":"Kluyveromyces marxianus","na":1,"nb":1,"a":[["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["Pfam%3APF04684","BAF1 / ABF1 chromatin reorganising factor"]]},{"id":"NCBITaxon:5007","l":"Brettanomyces bruxellensis","na":1,"nb":1,"a":[["Sichuan_Shai_Vinegar_Yeast_Flavor_SynCom.html","Sichuan Shai Vinegar Yeast Flavor SynCom"]],"b":[["TED%3AAF-A0A7D9CWH5-F1-model_v4_TED01","TED novel fold AF-A0A7D9CWH5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":1,"nb":1,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["Pfam%3APF07335","Fungal chitosanase of glycosyl hydrolase group 75"]]},{"id":"NCBITaxon:5547","l":"Trichoderma viride","na":1,"nb":1,"a":[["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["Pfam%3APF14587","O-Glycosyl hydrolase family 30"]]},{"id":"NCBITaxon:61435","l":"Dehalococcoides mccartyi","na":1,"nb":1,"a":[["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"]],"b":[["TED%3AAF-A0A2J1E0L6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J1E0L6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:68239","l":"Streptomyces mirabilis strain P8-A","na":1,"nb":1,"a":[["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["TED%3AAF-A0A1I2Y4U7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2Y4U7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:72360","l":"Bacillus mojavensis","na":1,"nb":1,"a":[["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["Pfam%3APF05952","Bacillus competence pheromone ComX"]]},{"id":"NCBITaxon:82367","l":"Paracoccus pantotrophus","na":1,"nb":1,"a":[["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"]],"b":[["Pfam%3APF17805","AsnC-like ligand binding domain"]]},{"id":"NCBITaxon:901","l":"Desulfovibrio piger","na":1,"nb":1,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["TED%3AAF-A0A848CHH4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A848CHH4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:96241","l":"Bacillus spizizenii","na":1,"nb":1,"a":[["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"]],"b":[["Pfam%3APF05952","Bacillus competence pheromone ComX"]]},{"id":"NCBITaxon:986","l":"Flavobacterium johnsoniae","na":1,"nb":1,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["TED%3AAF-A0A1J7BWE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1J7BWE6-F1-model_v4_TED01"]]}]} \ No newline at end of file +{"a":"CommunityMech","b":"ProteinTraitsMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record="},"n":689,"by":{"CHEBI":276,"NCBITaxon":226,"GO":186,"UBERON":1},"terms":[{"id":"CHEBI:30089","l":"acetate","na":78,"nb":302,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"]],"b":[["EC%3A1.1.1.318","eugenol synthase"],["EC%3A1.1.1.319","isoeugenol synthase"],["EC%3A1.13.11.50","acetylacetone-cleaving enzyme"],["EC%3A1.13.12.4","lactate 2-monooxygenase"],["EC%3A1.14.13.54","ketosteroid monooxygenase"],["EC%3A1.14.14.19","steroid 17alpha-monooxygenase"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":75,"nb":1616,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]],"b":[["EC%3A1.1.1.170","3beta-hydroxysteroid-4alpha-carboxylate 3-dehydrogenase (decarboxylating)"],["EC%3A1.1.1.262","4-hydroxythreonine-4-phosphate dehydrogenase"],["EC%3A1.1.1.276","serine 3-dehydrogenase (NADP(+))"],["EC%3A1.1.1.286","isocitrate--homoisocitrate dehydrogenase"],["EC%3A1.1.1.305","UDP-glucuronic acid oxidase (UDP-4-keto-hexauronic acid decarboxylating)"],["EC%3A1.1.1.343","phosphogluconate dehydrogenase (NAD(+)-dependent, decarboxylating)"]]},{"id":"GO:0015979","l":"photosynthesis","na":44,"nb":146,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["GO%3A0015979","photosynthesis"],["NCBIfam%3ATIGR01337","allophycocyanin subunit beta"],["NCBIfam%3ATIGR03056","alpha/beta fold hydrolase BchO"],["NCBIfam%3ANF013497","Apocytochrome F, C-terminal"],["NCBIfam%3ANF014391","Bacteriochlorophyll A protein"],["NCBIfam%3ANF058502","C-phycocyanin alpha-cysteine-84 phycocyanobilin lyase subunit CpcE"]]},{"id":"GO:0015948","l":"methanogenesis","na":44,"nb":82,"a":[["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"]],"b":[["GO%3A0019385","methanogenesis, from acetate"],["GO%3A0019386","methanogenesis, from carbon dioxide"],["GO%3A0019387","methanogenesis, from methanol"],["GO%3A0015948","methanogenesis"],["proteintraitsmech%3ASEED_SUBSYSTEM_Methanogenesis","Methanogenesis"],["NCBIfam%3ATIGR03957","5,10-methenyltetrahydromethanopterin hydrogenase cofactor biosynthesis protein HmdB"]]},{"id":"CHEBI:18276","l":"dihydrogen","na":58,"nb":42,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"]],"b":[["EC%3A1.12.1.2","hydrogen dehydrogenase"],["EC%3A1.12.1.3","hydrogen dehydrogenase (NADP(+))"],["EC%3A1.12.1.4","hydrogenase (NAD(+), ferredoxin)"],["EC%3A1.12.1.5","hydrogen dehydrogenase [NAD(P)(+)]"],["EC%3A1.12.2.1","cytochrome-c3 hydrogenase"],["EC%3A1.12.5.1","hydrogen:quinone oxidoreductase"]]},{"id":"GO:0015977","l":"carbon fixation","na":33,"nb":30,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["GO%3A0009760","C4 photosynthesis"],["GO%3A0009761","CAM photosynthesis"],["GO%3A0043427","carbon fixation by 3-hydroxypropionate cycle"],["GO%3A0030634","carbon fixation by acetyl-CoA pathway"],["GO%3A0015977","carbon fixation"],["GO%3A0019643","reductive tricarboxylic acid cycle"]]},{"id":"CHEBI:17632","l":"nitrate","na":28,"nb":40,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["EC%3A1.14.12.17","nitric oxide dioxygenase"],["EC%3A1.7.1.1","nitrate reductase (NADH)"],["EC%3A1.7.1.2","nitrate reductase [NAD(P)H]"],["EC%3A1.7.1.3","nitrate reductase (NADPH)"],["EC%3A1.7.5.1","nitrate reductase (quinone)"],["EC%3A1.7.6.1","nitrite dismutase"]]},{"id":"CHEBI:15379","l":"dioxygen","na":25,"nb":3896,"a":[["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["EC%3A1.1.3.10","pyranose oxidase"],["EC%3A1.1.3.11","L-sorbose oxidase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.3.13","alcohol oxidase"],["EC%3A1.1.3.14","catechol oxidase (dimerizing)"],["EC%3A1.1.3.15","(S)-2-hydroxy-acid oxidase"]]},{"id":"CHEBI:16189","l":"sulfate","na":25,"nb":133,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16189","requires sulfate"],["EC%3A1.14.11.77","alkyl sulfatase"],["EC%3A1.8.2.1","sulfite dehydrogenase (cytochrome)"],["EC%3A1.8.3.1","sulfite oxidase"],["EC%3A1.8.5.6","sulfite dehydrogenase (quinone)"],["EC%3A2.7.7.4","sulfate adenylyltransferase"]]},{"id":"CHEBI:16236","l":"ethanol","na":25,"nb":31,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.5.5","alcohol dehydrogenase (quinone)"],["EC%3A1.1.99.36","alcohol dehydrogenase (nicotinoprotein)"],["EC%3A2.3.1.268","ethanol O-acetyltransferase"],["EC%3A3.1.1.113","ethyl acetate hydrolase"],["EC%3A3.1.1.67","fatty-acyl-ethyl-ester synthase"]]},{"id":"GO:0009399","l":"nitrogen fixation","na":24,"nb":36,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"]],"b":[["GO%3A0009399","nitrogen fixation"],["proteintraitsmech%3ASEED_SUBSYSTEM_Nitrogen_fixation","Nitrogen fixation"],["NCBIfam%3ATIGR02662","ADP-ribosyl-[dinitrogen reductase] hydrolase"],["NCBIfam%3ATIGR02931","Fe-only nitrogenase subunit beta"],["NCBIfam%3ATIGR02929","Fe-only nitrogenase subunit delta"],["NCBIfam%3ATIGR02000","Fe-S cluster assembly protein NifU"]]},{"id":"CHEBI:15740","l":"formate","na":23,"nb":173,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"]],"b":[["EC%3A1.1.98.6","ribonucleoside-triphosphate reductase (formate)"],["EC%3A1.10.3.15","grixazone synthase"],["EC%3A1.13.11.41","2,4'-dihydroxyacetophenone dioxygenase"],["EC%3A1.13.11.53","acireductone dioxygenase (Ni(2+)-requiring)"],["EC%3A1.13.11.54","acireductone dioxygenase (Fe(2+)-requiring)"],["EC%3A1.13.11.72","2-hydroxyethylphosphonate dioxygenase"]]},{"id":"CHEBI:24996","l":"lactate","na":22,"nb":23,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["EC%3A1.1.1.436","lactate dehydrogenase (NAD(+),ferredoxin)"],["EC%3A3.5.1.124","protein deglycase"],["RHEA%3A57300","an N(2)-(1-hydroxy-2-oxopropyl)-2'-deoxyguanosine in DNA + H2O = a 2'-deoxyguanosine in DNA + lactate + H(+)"],["RHEA%3A57288","an N(2)-(1-hydroxy-2-oxopropyl)-guanosine in RNA + H2O = a guanosine in RNA + lactate + H(+)"],["RHEA%3A46964","lactate + 2 reduced [2Fe-2S]-[ferredoxin] + 2 NAD(+) = 2 oxidized [2Fe-2S]-[ferredoxin] + pyruvate + 2 NADH"],["RHEA%3A57244","N(2)-(1-hydroxy-2-oxopropyl)-dGTP + H2O = lactate + dGTP + H(+)"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":21,"nb":396,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29033","requires iron(2+)"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.11","glucoside 3-dehydrogenase (cytochrome c)"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.2.3","L-lactate dehydrogenase (cytochrome)"],["EC%3A1.1.2.4","D-lactate dehydrogenase (cytochrome)"]]},{"id":"CHEBI:29034","l":"iron(3+)","na":21,"nb":376,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29034","requires iron(3+)"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.11","glucoside 3-dehydrogenase (cytochrome c)"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.2.3","L-lactate dehydrogenase (cytochrome)"],["EC%3A1.1.2.4","D-lactate dehydrogenase (cytochrome)"]]},{"id":"CHEBI:28938","l":"ammonium","na":19,"nb":837,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_28938","requires ammonium"],["EC%3A1.13.12.15","3,4-dihydroxyphenylalanine oxidative deaminase"],["EC%3A1.13.99.3","tryptophan 2'-dioxygenase"],["EC%3A1.14.11.37","kanamycin B dioxygenase"],["EC%3A1.14.12.1","anthranilate 1,2-dioxygenase (deaminating, decarboxylating)"],["EC%3A1.14.12.14","2-aminobenzenesulfonate 2,3-dioxygenase"]]},{"id":"CHEBI:17968","l":"butyrate","na":19,"nb":33,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"]],"b":[["EC%3A1.3.1.31","2-enoate reductase"],["EC%3A2.3.1.315","succinyl-CoA:cyclohexane-1-carboxylate CoA transferase"],["EC%3A2.7.2.7","butyrate kinase"],["EC%3A2.8.3.9","butyrate--acetoacetate CoA-transferase"],["EC%3A3.1.1.51","phorbol-diester hydrolase"],["EC%3A3.7.1.7","beta-diketone hydrolase"]]},{"id":"GO:0044419","l":"biological process involved in interspecies interaction between organisms","na":148,"nb":18,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]],"b":[["GO%3A0044419","biological process involved in interspecies interaction between organisms"],["GO%3A0044403","biological process involved in symbiotic interaction"],["GO%3A0141060","disruption of anatomical structure in another organism"],["GO%3A0044111","formation of structure involved in a symbiotic process"],["GO%3A0140106","hematophagy"],["GO%3A0035821","modulation of process of another organism"]]},{"id":"GO:0030245","l":"cellulose catabolic process","na":30,"nb":18,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"]],"b":[["GO%3A1990488","anaerobic cellulose catabolic process"],["GO%3A0030245","cellulose catabolic process"],["GO%3A0052785","cellulose catabolism by endo-processive cellulases"],["NCBIfam%3ANF049990","cellulose 1,4-beta-cellobiosidase"],["NCBIfam%3ANF041611","exoglucanase CbhB"],["NCBIfam%3ATIGR03356","GH1 family beta-glucosidase"]]},{"id":"CHEBI:16301","l":"nitrite","na":17,"nb":116,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["EC%3A1.13.11.64","5-nitrosalicylate dioxygenase"],["EC%3A1.13.12.16","nitronate monooxygenase"],["EC%3A1.14.12.23","nitroarene dioxygenase"],["EC%3A1.14.12.24","2,4-dinitrotoluene dioxygenase"],["EC%3A1.14.13.166","4-nitrocatechol 4-monooxygenase"],["EC%3A1.14.13.167","4-nitrophenol 4-monooxygenase"]]},{"id":"GO:0006805","l":"xenobiotic metabolic process","na":17,"nb":38,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"]],"b":[["GO%3A0018872","arsonoacetate metabolic process"],["GO%3A0018890","cyanamide metabolic process"],["GO%3A0018892","cyclohexylsulfamate metabolic process"],["GO%3A0018905","dimethyl ether metabolic process"],["GO%3A0018909","dodecyl sulfate metabolic process"],["GO%3A0042197","halogenated hydrocarbon metabolic process"]]},{"id":"GO:0006826","l":"iron ion transport","na":17,"nb":26,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"]],"b":[["GO%3A1901678","iron coordination entity transport"],["GO%3A0033212","iron import into cell"],["GO%3A0034755","iron ion transmembrane transport"],["GO%3A0006826","iron ion transport"],["GO%3A0033571","lactoferrin transport"],["GO%3A0033572","transferrin transport"]]},{"id":"GO:0005975","l":"carbohydrate metabolic process","na":15,"nb":401,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"]],"b":[["GO%3A0016051","carbohydrate biosynthetic process"],["GO%3A0016052","carbohydrate catabolic process"],["GO%3A0005975","carbohydrate metabolic process"],["GO%3A0046835","carbohydrate phosphorylation"],["GO%3A0042836","D-glucarate metabolic process"],["GO%3A0019521","D-gluconate metabolic process"]]},{"id":"GO:0022900","l":"electron transport chain","na":15,"nb":50,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"]],"b":[["GO%3A0022900","electron transport chain"],["GO%3A0140647","P450-containing electron transport chain"],["GO%3A0009767","photosynthetic electron transport chain"],["GO%3A0022904","respiratory electron transport chain"],["NCBIfam%3ANF058577","4Fe-4S ferredoxin"],["NCBIfam%3ANF042982","8-methylmenaquinol:fumarate reductase flavoprotein subunit"]]},{"id":"CHEBI:17992","l":"sucrose","na":15,"nb":49,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"]],"b":[["EC%3A1.1.99.13","glucoside 3-dehydrogenase (acceptor)"],["EC%3A2.4.1.10","levansucrase"],["EC%3A2.4.1.125","sucrose--1,6-alpha-glucan 3(6)-alpha-glucosyltransferase"],["EC%3A2.4.1.13","sucrose synthase"],["EC%3A2.4.1.166","raffinose--raffinose alpha-galactosyltransferase"],["EC%3A2.4.1.167","sucrose 6(F)-alpha-galactosyltransferase"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":15,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["Pfam%3APF14562","Restriction endonuclease BglI"],["Pfam%3APF09195","Restriction endonuclease BglII/BglIII"],["Pfam%3APF09208","Restriction endonuclease MspI"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":14,"nb":145,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]],"b":[["IDPO%3A0000033","flexible linker"],["IDPO%3A0000014","order to disorder"],["IDPO%3A0000004","pre-molten globule"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"]]},{"id":"GO:0006113","l":"fermentation","na":43,"nb":14,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"]],"b":[["ComplexPortal%3ACPX-281","Hydrogenase-1 complex"],["GO%3A0030645","acetyl-CoA fermentation to butanoate"],["GO%3A0019665","amino acid fermentation"],["GO%3A0019588","anaerobic glycerol catabolic process"],["GO%3A0019658","bifid shunt"],["GO%3A0044577","D-xylose fermentation"]]},{"id":"GO:0006790","l":"sulfur compound metabolic process","na":13,"nb":113,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"]],"b":[["GO%3A0050427","3'-phosphoadenosine 5'-phosphosulfate metabolic process"],["GO%3A0018887","4-carboxy-4'-sulfoazobenzene metabolic process"],["GO%3A0006637","acyl-CoA metabolic process"],["GO%3A0019694","alkanesulfonate metabolic process"],["GO%3A0006768","biotin metabolic process"],["GO%3A1901266","cephalosporin C metabolic process"]]},{"id":"CHEBI:16183","l":"methane","na":62,"nb":13,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"]],"b":[["EC%3A1.14.13.25","methane monooxygenase (soluble)"],["EC%3A1.14.18.3","methane monooxygenase (particulate)"],["EC%3A2.8.4.1","coenzyme-B sulfoethylthiotransferase"],["EC%3A4.7.1.1","alpha-D-ribose 1-methylphosphonate 5-phosphate C-P-lyase"],["RHEA%3A34707","alpha-D-ribose 1-methylphosphonate 5-phosphate + AH2 + S-adenosyl-L-methionine = alpha-D-ribose 1,2-cyclic phosphate 5-phosphate + methane + 5'-deoxyadenosine + L-methionine + A + H(+)"],["RHEA%3A12532","coenzyme B + methyl-coenzyme M = methane + coenzyme M-coenzyme B heterodisulfide"]]},{"id":"CHEBI:26833","l":"sulfur atom","na":12,"nb":24,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["EC%3A1.12.98.4","sulfhydrogenase"],["EC%3A1.13.11.55","sulfur oxygenase/reductase"],["EC%3A1.8.1.18","NAD(P)H sulfur oxidoreductase (CoA-dependent)"],["EC%3A1.8.1.19","sulfide dehydrogenase"],["EC%3A1.8.2.3","sulfide-cytochrome-c reductase (flavocytochrome c)"],["EC%3A1.8.2.7","thiocyanate desulfurase"]]},{"id":"CHEBI:17997","l":"dinitrogen","na":12,"nb":18,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["EC%3A1.18.6.1","nitrogenase"],["EC%3A1.18.6.2","vanadium-dependent nitrogenase"],["EC%3A1.19.6.1","nitrogenase (flavodoxin)"],["EC%3A1.7.2.4","nitrous-oxide reductase"],["EC%3A1.7.2.8","hydrazine dehydrogenase"],["RHEA%3A79967","3-diazoavenalumate + NADH + H(+) = avenalumate + N2 + NAD(+)"]]},{"id":"CHEBI:17272","l":"propionate","na":11,"nb":34,"a":[["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"]],"b":[["EC%3A1.3.1.125","acrylate reductase"],["EC%3A2.7.2.15","propionate kinase"],["EC%3A2.8.3.1","propionate CoA-transferase"],["EC%3A2.8.3.27","propanoyl-CoA:succinate CoA transferase"],["EC%3A4.1.3.32","2,3-dimethylmalate lyase"],["EC%3A6.2.1.13","acetate--CoA ligase (ADP-forming)"]]},{"id":"GO:0044403","l":"biological process involved in symbiotic interaction","na":20,"nb":11,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["GO%3A0036377","arbuscular mycorrhizal association"],["GO%3A0051701","biological process involved in interaction with host"],["GO%3A0051702","biological process involved in interaction with symbiont"],["GO%3A0044403","biological process involved in symbiotic interaction"],["GO%3A0075733","intracellular transport of virus"],["GO%3A0044399","multi-species biofilm formation"]]},{"id":"GO:0045493","l":"xylan catabolic process","na":11,"nb":19,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["GO%3A2000888","arabinoxylan-containing compound catabolic process"],["GO%3A2000886","glucuronoxylan catabolic process"],["GO%3A0045493","xylan catabolic process"],["NCBIfam%3ANF042968","acetylxylan esterase AxeA1"],["NCBIfam%3ANF041579","beta-xylosidase"],["NCBIfam%3ANF042969","bifunctional acetylxylan esterase/glucomannan deacetylase AxeC2"]]},{"id":"GO:0050832","l":"defense response to fungus","na":11,"nb":15,"a":[["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"]],"b":[["GO%3A0019732","antifungal humoral response"],["GO%3A0061760","antifungal innate immune response"],["GO%3A0050832","defense response to fungus"],["NCBIfam%3ANF013159","Barwin family"],["InterPro%3AIPR018226","Barwin, conserved site"],["InterPro%3AIPR001153","Barwin domain"]]},{"id":"CHEBI:16134","l":"ammonia","na":14,"nb":11,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]],"b":[["TCDB%3A1.A.11","The Ammonium Transporter Channel (Amt) Family"],["MCSA%3A376","adenosine deaminase"],["MCSA%3A75","aspartate-ammonia ligase"],["MCSA%3A449","cystathionine beta-lyase"],["MCSA%3A97","cytidine deaminase"],["MCSA%3A710","cytosine deaminase (bacterial)"]]},{"id":"CHEBI:17790","l":"methanol","na":10,"nb":86,"a":[["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"]],"b":[["EC%3A1.1.1.244","methanol dehydrogenase"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.99.37","methanol dehydrogenase (nicotinoprotein)"],["EC%3A1.14.13.25","methane monooxygenase (soluble)"],["EC%3A1.14.14.117","aflatoxin B synthase"]]},{"id":"CHEBI:29036","l":"copper(2+)","na":10,"nb":40,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29036","requires copper(2+)"],["EC%3A1.1.9.1","alcohol dehydrogenase (azurin)"],["EC%3A1.16.3.4","cuproxidase"],["EC%3A1.17.9.1","4-methylphenol dehydrogenase (hydroxylating)"],["EC%3A1.17.9.2","(+)-pinoresinol hydroxylase"],["EC%3A1.20.9.1","arsenate reductase (azurin)"]]},{"id":"GO:0042742","l":"defense response to bacterium","na":9,"nb":53,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["ComplexPortal%3ACPX-10317","Interleukin-26 complex"],["GO%3A0019731","antibacterial humoral response"],["GO%3A0140367","antibacterial innate immune response"],["GO%3A0042742","defense response to bacterium"],["GO%3A0050829","defense response to Gram-negative bacterium"],["GO%3A0050830","defense response to Gram-positive bacterium"]]},{"id":"GO:0009372","l":"quorum sensing","na":9,"nb":21,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["ComplexPortal%3ACPX-4315","Autoinducer-2 ABC transporter complex"],["GO%3A0120218","host interaction involved in quorum sensing"],["GO%3A0009372","quorum sensing"],["NCBIfam%3ANF052393","acyl-homoserine-lactone synthase"],["NCBIfam%3ANF008187","autoinducer-2 kinase"],["NCBIfam%3ANF010444","autoinducer-binding transcriptional regulator TraR"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":9,"nb":20,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]],"b":[["Pfam%3APF14535","AMP-binding enzyme C-terminal domain"],["Pfam%3APF13442","Cytochrome C oxidase, cbb3-type, subunit III"],["Pfam%3APF22247","Catechol 2,3-dioxygenase-like N-terminal domain"],["Pfam%3APF25371","Domain of unknown function (DUF7884)"],["Pfam%3APF19301","LigXa C-terminal domain like"],["Pfam%3APF12729","Four helix bundle sensory module for signal transduction"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":9,"nb":19,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"]],"b":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"],["Pfam%3APF18173","Bacterial HORMA domain 2"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["Pfam%3APF27322","Cap8 HORMA domain"],["Pfam%3APF01526","Tn3 transposase DDE domain"]]},{"id":"CHEBI:28885","l":"butan-1-ol","na":9,"nb":16,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["EC%3A1.1.2.9","1-butanol dehydrogenase (cytochrome c)"],["EC%3A1.1.5.11","1-butanol dehydrogenase (quinone)"],["EC%3A1.14.13.230","butane monooxygenase (soluble)"],["RHEA%3A64672","2-(methylsulfanyl)acetyl-CoA + butan-1-ol = butyl 2-(methylsulfanyl)acetate + CoA"],["RHEA%3A64676","3-(methylsulfanyl)propanoyl-CoA + butan-1-ol = butyl 3-(methylsulfanyl)propanoate + CoA"],["RHEA%3A43432","butan-1-ol + 2 Fe(III)-[cytochrome c] = butanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"]]},{"id":"CHEBI:15361","l":"pyruvate","na":8,"nb":410,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15361","requires pyruvate"],["EC%3A1.1.1.27","L-lactate dehydrogenase"],["EC%3A1.1.1.28","D-lactate dehydrogenase"],["EC%3A1.1.1.38","malate dehydrogenase (oxaloacetate-decarboxylating)"],["EC%3A1.1.1.39","malate dehydrogenase (decarboxylating)"],["EC%3A1.1.1.40","malate dehydrogenase (oxaloacetate-decarboxylating) (NADP(+))"]]},{"id":"GO:0009061","l":"anaerobic respiration","na":8,"nb":36,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["ComplexPortal%3ACPX-4841","Anaerobic glycerol-3-phosphate dehydrogenase complex"],["ComplexPortal%3ACPX-317","Formate hydrogenlyase-H/Hydrogenase-3 complex"],["ComplexPortal%3ACPX-6028","Formate hydrogenlyase-H/Hydrogenase-4 complex"],["ComplexPortal%3ACPX-281","Hydrogenase-1 complex"],["ComplexPortal%3ACPX-282","Hydrogenase-2 complex"],["ComplexPortal%3ACPX-3447","NapAB nitrate reductase complex"]]},{"id":"GO:0010038","l":"response to metal ion","na":8,"nb":34,"a":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["GO%3A0071248","cellular response to metal ion"],["GO%3A0010044","response to aluminum ion"],["GO%3A0046686","response to cadmium ion"],["GO%3A0051592","response to calcium ion"],["GO%3A0010164","response to cesium ion"],["GO%3A0032025","response to cobalt ion"]]},{"id":"CHEBI:18385","l":"thiamine(1+)","na":8,"nb":19,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["EC%3A1.1.3.23","thiamine oxidase"],["EC%3A2.5.1.2","thiamine pyridinylase"],["EC%3A2.7.1.89","thiamine kinase"],["EC%3A2.7.6.2","thiamine diphosphokinase"],["EC%3A3.1.3.100","thiamine phosphate phosphatase"],["EC%3A3.5.99.2","aminopyrimidine aminohydrolase"]]},{"id":"CHEBI:33709","l":"amino acid","na":14,"nb":8,"a":[["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.23","The Dicarboxylate/Amino Acid:Cation (Na+ or H+) Symporter (DAACS) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A1.V.1","The Filamentous Cyanobacterial Septal Pore (Septum) Family"],["TCDB%3A1.A.24","The Gap Junction-forming Connexin (Connexin) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"GO:0015947","l":"methane metabolic process","na":11,"nb":8,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"]],"b":[["GO%3A0046188","methane catabolic process"],["GO%3A0015947","methane metabolic process"],["GO%3A0015948","methanogenesis"],["NCBIfam%3ANF014960","Methane monooxygenase, hydrolase gamma chain"],["Pfam%3APF02964","Methane monooxygenase, hydrolase gamma chain"],["InterPro%3AIPR015952","Methane monooxygenase, gamma chain, domain 1"]]},{"id":"GO:0046274","l":"lignin catabolic process","na":8,"nb":10,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"]],"b":[["GO%3A1990487","anaerobic lignin catabolic process"],["GO%3A1901062","guaiacyl lignin catabolic process"],["GO%3A0046274","lignin catabolic process"],["GO%3A1901059","p-hydroxyphenyl lignin catabolic process"],["GO%3A1901065","syringal lignin catabolic process"],["NCBIfam%3ANF042997","beta-etherase"]]},{"id":"GO:0040007","l":"growth","na":36,"nb":7,"a":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Cultivated_Meat_Contaminant_SynCom.html","Cultivated Meat Contaminant SynCom"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["GO%3A0007117","budding cell bud growth"],["GO%3A0016049","cell growth"],["GO%3A0048589","developmental growth"],["GO%3A0030447","filamentous growth"],["GO%3A0040007","growth"],["GO%3A0080190","lateral growth"]]},{"id":"GO:0042710","l":"biofilm formation","na":29,"nb":7,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["GO%3A0042710","biofilm formation"],["GO%3A0044399","multi-species biofilm formation"],["GO%3A0044010","single-species biofilm formation"],["GO%3A0090605","submerged biofilm formation"],["GO%3A0090604","surface biofilm formation"],["Reactome%3AR-HSA-9931953","Biofilm formation"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":7,"nb":23,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["Pfam%3APF08878","HamA"],["Pfam%3APF05791","Bacillus haemolytic enterotoxin (HBL)"],["Pfam%3APF10803","Spore germination GerPB"],["Pfam%3APF10737","Spore germination protein GerPC"],["Pfam%3APF10970","Spore germination protein GerPE"],["Pfam%3APF07486","Cell Wall Hydrolase"]]},{"id":"CHEBI:17057","l":"cellobiose","na":7,"nb":19,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["EC%3A1.1.3.5","hexose oxidase"],["EC%3A1.1.99.18","cellobiose dehydrogenase (acceptor)"],["EC%3A2.4.1.20","cellobiose phosphorylase"],["EC%3A2.7.1.205","protein-N(pi)-phosphohistidine--D-cellobiose phosphotransferase"],["EC%3A2.7.1.85","beta-glucoside kinase"],["EC%3A5.1.3.11","cellobiose epimerase"]]},{"id":"GO:0019420","l":"dissimilatory sulfate reduction","na":17,"nb":7,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["DVM_Triculture.html","DVM Tri-culture"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"]],"b":[["GO%3A0019420","dissimilatory sulfate reduction"],["NCBIfam%3ATIGR02061","adenylyl-sulfate reductase subunit alpha"],["NCBIfam%3ATIGR02060","adenylyl-sulfate reductase subunit beta"],["NCBIfam%3ATIGR02066","dissimilatory-type sulfite reductase subunit beta"],["NCBIfam%3ANF045796","sulfate reduction electron transfer complex DsrMKJOP subunit DsrK"],["NCBIfam%3ANF045797","sulfate reduction electron transfer complex DsrMKJOP subunit DsrO"]]},{"id":"CHEBI:49786","l":"nickel(2+)","na":7,"nb":10,"a":[["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_49786","requires nickel(2+)"],["EC%3A4.99.1.11","sirohydrochlorin nickelchelatase"],["EC%3A4.99.1.12","pyridinium-3,5-bisthiocarboxylic acid mononucleotide nickel chelatase"],["EC%3A7.2.2.11","ABC-type Ni(2+) transporter"],["RHEA%3A29831","Ni(2+)(in) = Ni(2+)(out)"],["RHEA%3A15557","Ni(2+)(out) + ATP + H2O = Ni(2+)(in) + ADP + phosphate + H(+)"]]},{"id":"NCBITaxon:818","l":"Bacteroides thetaiotaomicron","na":7,"nb":9,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["Pfam%3APF09093","Lyase, catalytic"],["TED%3AAF-A0A174W9M0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A174W9M0-F1-model_v4_TED01"],["TED%3AAF-A0A679HCU6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A679HCU6-F1-model_v4_TED01"],["TED%3AAF-A0A139L295-F1-model_v4_TED04","TED novel fold AF-A0A139L295-F1-model_v4_TED04"],["TED%3AAF-A0A174QBB7-F1-model_v4_TED02","TED novel fold AF-A0A174QBB7-F1-model_v4_TED02"],["TED%3AAF-A0A679H9T4-F1-model_v4_TED03","TED novel fold AF-A0A679H9T4-F1-model_v4_TED03"]]},{"id":"GO:0009056","l":"catabolic process","na":6,"nb":109,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"],["Wetland_Oxygen_Sulfate_GHG_Microcosm_Community.html","Wetland Oxygen-Sulfate Greenhouse Gas Microcosm Community"]],"b":[["GO%3A0018911","1,2,4-trichlorobenzene catabolic process"],["GO%3A0019261","1,4-dichlorobenzene catabolic process"],["GO%3A0046302","2-chloro-N-isopropylacetanilide catabolic process"],["GO%3A1901851","7,8-didemethyl-8-hydroxy-5-deazariboflavin catabolic process"],["GO%3A0006581","acetylcholine catabolic process"],["GO%3A0046185","aldehyde catabolic process"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":6,"nb":93,"a":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17544","requires hydrogencarbonate"],["EC%3A1.13.11.73","methylphosphonate synthase"],["EC%3A1.2.1.27","methylmalonate-semialdehyde dehydrogenase (CoA acylating)"],["EC%3A2.5.1.120","aminodeoxyfutalosine synthase"],["EC%3A2.5.1.143","pyridinium-3,5-biscarboxylic acid mononucleotide synthase"],["EC%3A2.7.2.2","carbamate kinase"]]},{"id":"GO:0006979","l":"response to oxidative stress","na":6,"nb":50,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["ComplexPortal%3ACPX-9082","19S-20S-PA28-alphabeta hybrid proteasome complex"],["ComplexPortal%3ACPX-9085","19S-20S-PA28-gamma hybrid proteasome complex"],["ComplexPortal%3ACPX-8806","20S proteasome complex"],["ComplexPortal%3ACPX-4862","Alkyl hydroperoxide reductase complex"],["ComplexPortal%3ACPX-8842","PA28-alphabeta double-capped 20S proteasome complex"],["ComplexPortal%3ACPX-9002","PA28-alphabeta single-capped 20S proteasome complex"]]},{"id":"CHEBI:17245","l":"carbon monoxide","na":6,"nb":31,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Subsurface_Carboxydocella_CO_Aquifer_Community.html","Subsurface Carboxydocella CO-Oxidation Aquifer Community"]],"b":[["EC%3A1.13.11.24","quercetin 2,3-dioxygenase"],["EC%3A1.13.11.47","3-hydroxy-4-oxoquinoline 2,4-dioxygenase"],["EC%3A1.13.11.48","3-hydroxy-2-methylquinolin-4-one 2,4-dioxygenase"],["EC%3A1.13.11.53","acireductone dioxygenase (Ni(2+)-requiring)"],["EC%3A1.14.14.18","heme oxygenase (biliverdin-producing)"],["EC%3A1.14.15.20","heme oxygenase (biliverdin-producing, ferredoxin)"]]},{"id":"CHEBI:18246","l":"(1->4)-beta-D-glucan","na":27,"nb":6,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["EC%3A2.4.1.12","cellulose synthase (UDP-forming)"],["EC%3A2.4.1.29","cellulose synthase (GDP-forming)"],["EC%3A2.4.1.49","cellodextrin phosphorylase"],["RHEA%3A17797","[(1->4)-beta-D-glucosyl](n) + GDP-alpha-D-glucose = [(1->4)-beta-D-glucosyl](n+1) + GDP + H(+)"],["RHEA%3A23024","[(1->4)-beta-D-glucosyl](n) + phosphate = [(1->4)-beta-D-glucosyl](n-1) + alpha-D-glucose 1-phosphate"],["RHEA%3A19929","[(1->4)-beta-D-glucosyl](n) + UDP-alpha-D-glucose = [(1->4)-beta-D-glucosyl](n+1) + UDP + H(+)"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":6,"nb":16,"a":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["Pfam%3APF16822","SGNH hydrolase-like domain, acetyltransferase AlgX"],["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"],["Pfam%3APF11182","Alginate O-acetyl transferase AlgF"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF27129","Functional amyloid protein FapB/FapC family"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":6,"nb":11,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF02085","Class III cytochrome C family"],["Pfam%3APF06397","Desulfoferrodoxin, N-terminal domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["Pfam%3APF12797","4Fe-4S binding domain"],["Pfam%3APF06180","Cobalt chelatase (CbiK)"]]},{"id":"GO:0009877","l":"nodulation","na":6,"nb":8,"a":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"],["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["GO%3A0009877","nodulation"],["NCBIfam%3ATIGR04243","chitooligosaccharide deacetylase NodB"],["NCBIfam%3ATIGR04242","chitooligosaccharide synthase NodC"],["NCBIfam%3ANF017620","HrpF/NolX family T3SS translocon protein"],["NCBIfam%3ATIGR04245","NodA family N-acyltransferase"],["NCBIfam%3ANF014526","Nodulation protein A (NodA)"]]},{"id":"GO:0071941","l":"nitrogen cycle metabolic process","na":6,"nb":8,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"]],"b":[["GO%3A0019409","aerobic respiration, using ammonia as electron donor"],["GO%3A0019331","anaerobic respiration, using ammonium as electron donor"],["GO%3A0019333","denitrification pathway"],["GO%3A0042128","nitrate assimilation"],["GO%3A0071941","nitrogen cycle metabolic process"],["GO%3A0009399","nitrogen fixation"]]},{"id":"CHEBI:18153","l":"ethene","na":7,"nb":6,"a":[["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"]],"b":[["EC%3A1.13.12.19","2-oxoglutarate dioxygenase (ethylene-forming)"],["EC%3A1.14.17.4","aminocyclopropanecarboxylate oxidase"],["RHEA%3A23640","1-aminocyclopropane-1-carboxylate + L-ascorbate + O2 = ethene + L-dehydroascorbate + hydrogen cyanide + CO2 + 2 H2O"],["RHEA%3A81439","2-(methylsulfanyl)ethanol + AH2 = ethene + methanethiol + A + H2O"],["RHEA%3A31523","2-oxoglutarate + O2 + 2 H(+) = ethene + 3 CO2 + H2O"],["RHEA%3A68004","chloroethene + AH2 = ethene + chloride + A + H(+)"]]},{"id":"NCBITaxon:40324","l":"Stenotrophomonas maltophilia","na":7,"nb":6,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]],"b":[["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["TED%3AAF-A0A2U4H7T5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2U4H7T5-F1-model_v4_TED02"],["TED%3AAF-A0A2W6G5X3-F1-model_v4_TED01","TED novel fold AF-A0A2W6G5X3-F1-model_v4_TED01"],["TED%3AAF-A0A2W6IKS3-F1-model_v4_TED02","TED novel fold AF-A0A2W6IKS3-F1-model_v4_TED02"],["TED%3AAF-A0A7D0KRT5-F1-model_v4_TED03","TED novel fold AF-A0A7D0KRT5-F1-model_v4_TED03"],["TED%3AAF-A0A7T8PWR1-F1-model_v4_TED05","TED novel fold AF-A0A7T8PWR1-F1-model_v4_TED05"]]},{"id":"CHEBI:17754","l":"glycerol","na":5,"nb":95,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"]],"b":[["EC%3A1.1.1.156","glycerol 2-dehydrogenase (NADP(+))"],["EC%3A1.1.1.372","D/L-glyceraldehyde reductase"],["EC%3A1.1.1.6","glycerol dehydrogenase"],["EC%3A1.1.1.72","glycerol dehydrogenase (NADP(+))"],["EC%3A1.1.99.22","glycerol dehydrogenase (acceptor)"],["EC%3A2.4.1.332","1,2-alpha-glucosylglycerol phosphorylase"]]},{"id":"GO:0006629","l":"lipid metabolic process","na":5,"nb":81,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"]],"b":[["ComplexPortal%3ACPX-1381","NVJ1-VAC8 nucleus-vacuole junction complex"],["GO%3A0046485","ether lipid metabolic process"],["GO%3A1901568","fatty acid derivative metabolic process"],["GO%3A0006631","fatty acid metabolic process"],["GO%3A0046486","glycerolipid metabolic process"],["GO%3A0006720","isoprenoid metabolic process"]]},{"id":"GO:0009236","l":"cobalamin biosynthetic process","na":5,"nb":75,"a":[["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["GO%3A0009236","cobalamin biosynthetic process"],["proteintraitsmech%3ASEED_SUBSYSTEM_Cobalamin_synthesis","Cobalamin synthesis"],["NCBIfam%3ATIGR02476","5,6-dimethylbenzimidazole synthase"],["NCBIfam%3ANF011580","adenosylcobalamin/alpha-ribazole phosphatase"],["NCBIfam%3ANF014685","adenosylcobinamide-GDP ribazoletransferase"],["NCBIfam%3ATIGR00317","adenosylcobinamide-GDP ribazoletransferase"]]},{"id":"GO:0006935","l":"chemotaxis","na":5,"nb":64,"a":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["SynCom_MetG2_Rhizobacteria_Sugarcane_Stress_Resilience.html","SynCom MetG2 Rhizobacteria Sugarcane Stress Resilience"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"],["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009454","aerotaxis"]]},{"id":"GO:0006635","l":"fatty acid beta-oxidation","na":5,"nb":32,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["ComplexPortal%3ACPX-3964","fadBA fatty acid oxidation complex, aerobic conditions"],["ComplexPortal%3ACPX-3966","fadJI fatty acid oxidation complex, anaerobic conditions"],["ComplexPortal%3ACPX-6245","Mitochondrial trifunctional enzyme complex"],["GO%3A0006635","fatty acid beta-oxidation"],["GO%3A0033539","fatty acid beta-oxidation using acyl-CoA dehydrogenase"],["GO%3A0033540","fatty acid beta-oxidation using acyl-CoA oxidase"]]},{"id":"GO:0009060","l":"aerobic respiration","na":5,"nb":25,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Soil_CPR_Nanoarchaea_Rare_Biosphere_Community.html","Soil CPR Bacteria and Nanoarchaea Rare-Biosphere Community"]],"b":[["ComplexPortal%3ACPX-266","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-577","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-319","Trimethylamine-N-oxide reductase TorAC complex"],["GO%3A0019646","aerobic electron transport chain"],["GO%3A0009060","aerobic respiration"],["GO%3A0019409","aerobic respiration, using ammonia as electron donor"]]},{"id":"GO:0005986","l":"sucrose biosynthetic process","na":7,"nb":5,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"],["Synechococcus_Bacillus_SPC.html","Synechococcus-Bacillus Synthetic Photosynthetic Consortium"],["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"],["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"],["Synechococcus_Saccharomyces_SPC.html","Synechococcus-Saccharomyces Synthetic Photosynthetic Consortium"]],"b":[["GO%3A0005986","sucrose biosynthetic process"],["NCBIfam%3ANF020061","Sucrose-6-phosphate phosphohydrolase C-terminal"],["NCBIfam%3ATIGR01485","sucrose-phosphate phosphatase"],["InterPro%3AIPR013679","Sucrose-phosphatase, C-terminal"],["Pfam%3APF08472","Sucrose-6-phosphate phosphohydrolase C-terminal"]]},{"id":"CHEBI:18310","l":"alkane","na":5,"nb":5,"a":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"]],"b":[["EC%3A4.99.1.2","alkylmercury lyase"],["RHEA%3A18777","an alkylmercury + H(+) = an alkane + Hg(2+)"],["MCSA%3A297","alkylmercury lyase"],["MCSA%3A248","chloride peroxidase (cofactor free)"],["MCSA%3A250","chloride peroxidase (heme dependent)"]]},{"id":"CHEBI:15377","l":"water","na":4,"nb":9376,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["EC%3A1.1.1.115","ribose 1-dehydrogenase (NADP(+))"],["EC%3A1.1.1.132","GDP-mannose 6-dehydrogenase"],["EC%3A1.1.1.136","UDP-N-acetylglucosamine 6-dehydrogenase"],["EC%3A1.1.1.186","dTDP-galactose 6-dehydrogenase"],["EC%3A1.1.1.192","long-chain-alcohol dehydrogenase"],["EC%3A1.1.1.205","IMP dehydrogenase"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":4,"nb":680,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16240","requires hydrogen peroxide"],["EC%3A1.1.3.10","pyranose oxidase"],["EC%3A1.1.3.11","L-sorbose oxidase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.3.13","alcohol oxidase"],["EC%3A1.1.3.15","(S)-2-hydroxy-acid oxidase"]]},{"id":"GO:0006952","l":"defense response","na":4,"nb":62,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["ComplexPortal%3ACPX-2833","Camalexin biosynthetic metabolon complex"],["ComplexPortal%3ACPX-25769","TAP antigen peptide transporter complex"],["GO%3A0002209","behavioral defense response"],["GO%3A0006968","cellular defense response"],["GO%3A0052542","defense response by callose deposition"],["GO%3A0052482","defense response by cell wall thickening"]]},{"id":"GO:0008610","l":"lipid biosynthetic process","na":4,"nb":61,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"],["Yarrowia_lipolytica_Division_of_Labor_Lipid_Consortium.html","Yarrowia lipolytica Division-of-Labor Lipid Consortium"]],"b":[["GO%3A1900557","emericellamide biosynthetic process"],["GO%3A0008611","ether lipid biosynthetic process"],["GO%3A0006633","fatty acid biosynthetic process"],["GO%3A1901570","fatty acid derivative biosynthetic process"],["GO%3A0045017","glycerolipid biosynthetic process"],["GO%3A0009247","glycolipid biosynthetic process"]]},{"id":"CHEBI:16199","l":"urea","na":4,"nb":48,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["EC%3A3.5.1.5","urease"],["EC%3A3.5.1.95","N-malonylurea hydrolase"],["EC%3A3.5.3.1","arginase"],["EC%3A3.5.3.10","D-arginase"],["EC%3A3.5.3.11","agmatinase"],["EC%3A3.5.3.14","amidinoaspartase"]]},{"id":"CHEBI:29105","l":"zinc(2+)","na":4,"nb":20,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29105","requires zinc(2+)"],["EC%3A7.2.2.12","P-type Zn(2+) transporter"],["EC%3A7.2.2.20","ABC-type Zn(2+) transporter"],["RHEA%3A62264","selenite(out) + Zn(2+)(out) + hydrogencarbonate(out) = selenite(in) + Zn(2+)(in) + hydrogencarbonate(in)"],["RHEA%3A72627","Zn(2+)(in) + 2 H(+)(out) = Zn(2+)(out) + 2 H(+)(in)"],["RHEA%3A20621","Zn(2+)(in) + ATP + H2O = Zn(2+)(out) + ADP + phosphate + H(+)"]]},{"id":"GO:0044003","l":"symbiont-mediated perturbation of host process","na":4,"nb":20,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"]],"b":[["GO%3A0140418","effector-mediated perturbation of host process by symbiont"],["GO%3A0098676","symbiont-mediated modulation of host virulence"],["GO%3A0044068","symbiont-mediated perturbation of host cellular process"],["GO%3A0052031","symbiont-mediated perturbation of host defense response"],["GO%3A0044003","symbiont-mediated perturbation of host process"],["GO%3A0033635","symbiont-mediated perturbation of host response to abiotic stimulus"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":4,"nb":19,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["Pfam%3APF03306","Alpha-acetolactate decarboxylase"],["Pfam%3APF22208","Cas_Csm6 CARF domain"],["Pfam%3APF09659","Cas_Csm6 HEPN domain"],["Pfam%3APF22335","Cas10/Cmr2, second palm domain"],["Pfam%3APF18395","Cas3 C-terminal domain"],["Pfam%3APF18019","Cas3, HD domain"]]},{"id":"CHEBI:16899","l":"D-mannitol","na":4,"nb":17,"a":[["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["EC%3A1.1.1.138","mannitol 2-dehydrogenase (NADP(+))"],["EC%3A1.1.1.255","mannitol dehydrogenase"],["EC%3A1.1.1.67","mannitol 2-dehydrogenase"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.3.40","D-mannitol oxidase"],["EC%3A2.7.1.197","protein-N(pi)-phosphohistidine--D-mannitol phosphotransferase"]]},{"id":"GO:0019333","l":"denitrification pathway","na":13,"nb":4,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"]],"b":[["GO%3A0019333","denitrification pathway"],["NCBIfam%3ATIGR02161","periplasmic nitrate (or nitrite) reductase c-type cytochrome, NapC/NirT family"],["NCBIfam%3ATIGR04244","TAT-dependent nitrous-oxide reductase"],["NCBIfam%3ATIGR04246","Sec-dependent nitrous-oxide reductase"]]},{"id":"GO:0019543","l":"propionate catabolic process","na":4,"nb":11,"a":[["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["GO%3A0019543","propionate catabolic process"],["NCBIfam%3ATIGR02334","2-methylaconitate cis-trans isomerase PrpF"],["NCBIfam%3ATIGR02330","2-methylcitrate dehydratase"],["NCBIfam%3ANF006943","bifunctional 2-methylcitrate dehydratase/aconitate hydratase"],["NCBIfam%3ANF009006","bifunctional 2-methylcitrate synthase/citrate synthase"],["NCBIfam%3ATIGR02333","Fe/S-dependent 2-methylisocitrate dehydratase AcnD"]]},{"id":"CHEBI:48775","l":"cadmium(2+)","na":4,"nb":9,"a":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Meghalaya_Bacillus_Consortia_A22ED9.html","Meghalaya Bacillus Consortia-A22ED9"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["SynCom_Pseudomonas_Rahnella_Artemisia_Phytoremediation.html","Pseudomonas-Rahnella native rhizosphere SynCom for Artemisia argyi phytoremediation"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_48775","requires cadmium(2+)"],["EC%3A7.2.2.2","ABC-type Cd(2+) transporter"],["EC%3A7.2.2.21","Cd(2+)-exporting ATPase"],["RHEA%3A12132","Cd(2+)(in) + ATP + H2O = Cd(2+)(out) + ADP + phosphate + H(+)"],["RHEA%3A28707","Cd(2+)(in) = Cd(2+)(out)"],["RHEA%3A28739","Cd(2+)(in) + H(+)(out) = Cd(2+)(out) + H(+)(in)"]]},{"id":"CHEBI:17029","l":"chitin","na":4,"nb":8,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]],"b":[["EC%3A2.4.1.16","chitin synthase"],["EC%3A3.5.1.41","chitin deacetylase"],["RHEA%3A85463","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-1)-N-acetyl-alpha-D-glucosamine"],["RHEA%3A50672","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-2) + N,N'-diacetylchitobiose"],["RHEA%3A85003","[(1->4)-N-acetyl-beta-D-glucosaminyl](n)-N-acetyl-alpha-D-glucosamine + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n) + N-acetyl-alpha-D-glucosamine"],["RHEA%3A10464","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + n H2O = chitosan + n acetate"]]},{"id":"CHEBI:30411","l":"cobalamin","na":8,"nb":4,"a":[["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_30411","requires cobalamin"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.A.54","The Lysosomal Cobalamin (B12) Transporter (L-B12T) Family"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]]},{"id":"CHEBI:64709","l":"organic acid","na":7,"nb":4,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["TCDB%3A2.A.28","The Bile Acid:Na+ Symporter (BASS) Family"],["TCDB%3A2.A.23","The Dicarboxylate/Amino Acid:Cation (Na+ or H+) Symporter (DAACS) Family"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.25","The Outer Membrane Porin (Opr) Family"]]},{"id":"CHEBI:28509","l":"chloroethene","na":6,"nb":4,"a":[["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["RHEA%3A68000","1,1-dichloroethene + AH2 = chloroethene + chloride + A + H(+)"],["RHEA%3A68004","chloroethene + AH2 = ethene + chloride + A + H(+)"],["RHEA%3A83555","chloroethene + reduced [NADPH--hemoprotein reductase] + O2 = chloroethylene oxide + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A67996","(Z)-1,2-dichloroethene + AH2 = chloroethene + chloride + A + H(+)"]]},{"id":"GO:1903457","l":"lactate catabolic process","na":6,"nb":4,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["GO%3A1990484","aerobic lactate catabolic process"],["GO%3A1990485","anaerobic lactate catabolic process"],["GO%3A1903457","lactate catabolic process"],["NCBIfam%3ANF049975","D-2-hydroxyglutarate dehydrogenase YdiJ"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":4,"nb":6,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF10779","Haemolysin XhlA"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF08181","DegQ (SacQ) family"],["Pfam%3APF08057","Erythromycin resistance leader peptide"],["Pfam%3APF14867","Lantibiotic alpha"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":4,"nb":6,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["Pfam%3APF16376","N-terminal domain of fragilysin"],["TED%3AAF-A0A412XR06-F1-model_v4_TED03","TED novel fold AF-A0A412XR06-F1-model_v4_TED03"],["TED%3AAF-A0A4V1EUI2-F1-model_v4_TED02","TED novel fold AF-A0A4V1EUI2-F1-model_v4_TED02"],["TED%3AAF-A0A5C6IXH5-F1-model_v4_TED01","TED novel fold AF-A0A5C6IXH5-F1-model_v4_TED01"],["TED%3AAF-A0A5C6L6G9-F1-model_v4_TED02","TED novel fold AF-A0A5C6L6G9-F1-model_v4_TED02"],["TED%3AAF-A0A642KY52-F1-model_v4_TED01","TED novel fold AF-A0A642KY52-F1-model_v4_TED01"]]},{"id":"CHEBI:16670","l":"peptide","na":4,"nb":5,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A9.B.46","The Staphylococcus aureus Putative Quorum Sensing Peptide Exporter, AgrB (AgrB) Family"],["TCDB%3A3.A.25","The Symbiont-specific ERAD-like Machinery (SELMA) Family"],["proteintraitsmech%3ABIOLIP_PEPTIDE","peptide-binding site"]]},{"id":"NCBITaxon:5544","l":"Trichoderma harzianum","na":5,"nb":4,"a":[["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"],["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"],["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["Pfam%3APF00840","Glycosyl hydrolase family 7"],["Pfam%3APF12708","Rhamnogalacturonase A/epimerase, pectate lyase-like"],["TED%3AAF-A0A0F9XDU3-F1-model_v4_TED01","TED novel fold AF-A0A0F9XDU3-F1-model_v4_TED01"],["TED%3AAF-A0A0G0ASL4-F1-model_v4_TED01","TED novel fold AF-A0A0G0ASL4-F1-model_v4_TED01"]]},{"id":"CHEBI:18154","l":"polysaccharide","na":4,"nb":4,"a":[["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Wollastonite_Ramichloridium_Talaromyces_Fungal_Consortium.html","Wollastonite Ramichloridium-Talaromyces Fungal Consortium"]],"b":[["TCDB%3A9.B.97","The Acyltransferase-3/Putative Acetyl-CoA Transporter (AT3AT) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.18","The Outer Membrane Auxiliary (OMA) Protein Family"]]},{"id":"GO:0019541","l":"propionate metabolic process","na":4,"nb":4,"a":[["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["GO%3A0019542","propionate biosynthetic process"],["GO%3A0019543","propionate catabolic process"],["GO%3A0019541","propionate metabolic process"],["GO%3A0019657","pyruvate fermentation to propionate"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":3,"nb":212,"a":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["EC%3A1.1.1.244","methanol dehydrogenase"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.99.37","methanol dehydrogenase (nicotinoprotein)"],["EC%3A1.13.11.94","4-vinylguaiacol dioxygenase"],["EC%3A1.14.11.27","[histone H3]-dimethyl-L-lysine(36) demethylase"]]},{"id":"GO:0006520","l":"amino acid metabolic process","na":3,"nb":155,"a":[["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["GO%3A0043038","amino acid activation"],["GO%3A0008652","amino acid biosynthetic process"],["GO%3A0009063","amino acid catabolic process"],["GO%3A0006520","amino acid metabolic process"],["GO%3A0006525","arginine metabolic process"],["GO%3A0009072","aromatic amino acid metabolic process"]]},{"id":"CHEBI:17359","l":"sulfite","na":3,"nb":109,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"]],"b":[["EC%3A1.13.11.18","persulfide dioxygenase"],["EC%3A1.13.11.55","sulfur oxygenase/reductase"],["EC%3A1.14.11.17","taurine dioxygenase"],["EC%3A1.14.12.8","4-sulfobenzoate 3,4-dioxygenase"],["EC%3A1.14.13.111","methanesulfonate monooxygenase (NADH)"],["EC%3A1.14.14.181","sulfoquinovose monooxygenase"]]},{"id":"GO:0007155","l":"cell adhesion","na":3,"nb":102,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"]],"b":[["ComplexPortal%3ACPX-12912","BCAR1-CRK-SH2D3C, focal adhesion regulator complex"],["ComplexPortal%3ACPX-1737","Collagen type VII trimer"],["ComplexPortal%3ACPX-2966","Collagen type VII trimer"],["ComplexPortal%3ACPX-2855","Fimbrial Tip Complex FimFGH"],["ComplexPortal%3ACPX-450","Multimerin-2 complex"],["ComplexPortal%3ACPX-451","Multimerin-2 complex"]]},{"id":"GO:0008652","l":"amino acid biosynthetic process","na":3,"nb":69,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"]],"b":[["GO%3A0008153","4-aminobenzoate biosynthetic process"],["GO%3A0006523","alanine biosynthetic process"],["GO%3A0008652","amino acid biosynthetic process"],["GO%3A0043102","amino acid salvage"],["GO%3A0019483","beta-alanine biosynthetic process"],["GO%3A0035499","carnosine biosynthetic process"]]},{"id":"GO:0030001","l":"metal ion transport","na":3,"nb":66,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["GO%3A0015690","aluminum cation transport"],["GO%3A0006816","calcium ion transport"],["GO%3A0015692","lead ion transport"],["GO%3A0010351","lithium ion transport"],["GO%3A0015693","magnesium ion transport"],["GO%3A0030001","metal ion transport"]]},{"id":"CHEBI:29035","l":"manganese(2+)","na":3,"nb":44,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29035","requires manganese(2+)"],["EC%3A1.11.1.13","manganese peroxidase"],["EC%3A1.11.1.16","versatile peroxidase"],["EC%3A1.16.3.3","manganese oxidase"],["EC%3A7.2.2.22","P-type Mn(2+) transporter"],["EC%3A7.2.2.5","ABC-type Mn(2+) transporter"]]},{"id":"GO:0010467","l":"gene expression","na":3,"nb":41,"a":[["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["GO%3A0001816","cytokine production"],["GO%3A0010467","gene expression"],["GO%3A1901148","gene expression involved in extracellular matrix organization"],["GO%3A0140053","mitochondrial gene expression"],["GO%3A0036162","oxytocin production"],["GO%3A0140899","plastid gene expression"]]},{"id":"CHEBI:17750","l":"glycine betaine","na":3,"nb":33,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["EC%3A1.1.3.17","choline oxidase"],["EC%3A1.13.11.90","[1-hydroxy-2-(trimethylamino)ethyl]phosphonate dioxygenase (glycine- betaine-forming)"],["EC%3A1.14.13.251","glycine betaine monooxygenase"],["EC%3A1.2.1.8","betaine-aldehyde dehydrogenase"],["EC%3A1.21.4.4","betaine reductase"],["EC%3A2.1.1.157","sarcosine/dimethylglycine N-methyltransferase"]]},{"id":"CHEBI:29103","l":"potassium(1+)","na":3,"nb":32,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29103","requires potassium(1+)"],["EC%3A7.2.2.13","Na(+)/K(+)-exchanging ATPase"],["EC%3A7.2.2.19","H(+)/K(+)-exchanging ATPase"],["EC%3A7.2.2.6","P-type K(+) transporter"],["RHEA%3A18353","2 K(+)(out) + 3 Na(+)(in) + ATP + H2O = 2 K(+)(in) + 3 Na(+)(out) + ADP + phosphate + H(+)"],["RHEA%3A69967","Ca(2+)(out) + K(+)(out) + 4 Na(+)(in) = Ca(2+)(in) + K(+)(in) + 4 Na(+)(out)"]]},{"id":"NCBITaxon:3055","l":"Chlamydomonas reinhardtii","na":3,"nb":27,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]],"b":[["Pfam%3APF01333","Apocytochrome F, C-terminal"],["Pfam%3APF16639","Apocytochrome F, N-terminal"],["Pfam%3APF00430","ATP synthase B/B' CF(0)"],["Pfam%3APF00401","ATP synthase, Delta/Epsilon chain, long alpha-helix domain"],["Pfam%3APF21771","CFAP58 central coiled coil"],["Pfam%3APF27956","CFAP99 V-shaped coiled-coil domain"]]},{"id":"GO:0031347","l":"regulation of defense response","na":3,"nb":25,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"],["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["GO%3A0031348","negative regulation of defense response"],["GO%3A0031349","positive regulation of defense response"],["GO%3A0002759","regulation of antimicrobial humoral response"],["GO%3A2000822","regulation of behavioral fear response"],["GO%3A0010185","regulation of cellular defense response"],["GO%3A2000071","regulation of defense response by callose deposition"]]},{"id":"GO:0000162","l":"L-tryptophan biosynthetic process","na":3,"nb":22,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"]],"b":[["ComplexPortal%3ACPX-1850","Anthranilate synthase complex"],["ComplexPortal%3ACPX-4783","Anthranilate synthase complex"],["ComplexPortal%3ACPX-3446","TrpAB tryptophan synthase complex"],["GO%3A0000162","L-tryptophan biosynthetic process"],["NCBIfam%3ANF010081","anthranilate synthase component I"],["NCBIfam%3ANF010086","anthranilate synthase component I"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":3,"nb":21,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29108","requires calcium(2+)"],["EC%3A1.13.12.24","calcium-regulated photoprotein"],["EC%3A7.2.2.10","P-type Ca(2+) transporter"],["RHEA%3A72631","3 Li(+)(out) + Ca(2+)(in) = 3 Li(+)(in) + Ca(2+)(out)"],["RHEA%3A55884","[aequorin] + 3 Ca(2+) = [aequorin]--dioxetanone"],["RHEA%3A55888","[aequorin]--dioxetanone = excited state-[aequorin] + CO2"]]},{"id":"CHEBI:17716","l":"lactose","na":3,"nb":20,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"]],"b":[["EC%3A2.4.1.22","lactose synthase"],["EC%3A2.7.1.207","protein-N(pi)-phosphohistidine--lactose phosphotransferase"],["EC%3A3.2.1.108","lactase"],["EC%3A3.2.1.140","lacto-N-biosidase"],["EC%3A3.2.1.227","N-acetyllactosaminidase"],["RHEA%3A86923","a beta-D-Gal-(1->4)-beta-D-Glc-(1<->1)-Cer(d18:1(4E)) + H2O = lactose + an N-acylsphing-4-enine"]]},{"id":"GO:0045088","l":"regulation of innate immune response","na":3,"nb":19,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["GO%3A0045824","negative regulation of innate immune response"],["GO%3A0045089","positive regulation of innate immune response"],["GO%3A1904248","regulation of age-related resistance"],["GO%3A1905034","regulation of antifungal innate immune response"],["GO%3A0030451","regulation of complement activation, alternative pathway"],["GO%3A0001868","regulation of complement activation, lectin pathway"]]},{"id":"CHEBI:48828","l":"cobalt(2+)","na":3,"nb":16,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_48828","requires cobalt(2+)"],["EC%3A1.16.99.1","[Co(II) methylated amine-specific corrinoid protein] reductase"],["EC%3A4.99.1.3","sirohydrochlorin cobaltochelatase"],["EC%3A6.6.1.2","cobaltochelatase"],["RHEA%3A65832","2 Co(II)-[dimethylamine-specific corrinoid protein] + AH2 + ATP + H2O = 2 Co(I)-[dimethylamine-specific corrinoid protein] + A + ADP + phosphate + 3 H(+)"],["RHEA%3A65816","2 Co(II)-[methylamine-specific corrinoid protein] + AH2 + ATP + H2O = 2 Co(I)-[methylamine-specific corrinoid protein] + A + ADP + phosphate + 3 H(+)"]]},{"id":"CHEBI:17045","l":"dinitrogen oxide","na":3,"nb":13,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"]],"b":[["EC%3A1.7.1.14","nitric oxide reductase [NAD(P)(+), nitrous oxide-forming]"],["EC%3A1.7.2.4","nitrous-oxide reductase"],["EC%3A1.7.2.5","nitric-oxide reductase (cytochrome c)"],["EC%3A1.7.5.2","nitric oxide reductase (menaquinol)"],["RHEA%3A30215","a menaquinol + 2 nitric oxide = nitrous oxide + a menaquinone + H2O"],["RHEA%3A43108","N2 + 2 Fe(III)-[cytochrome c] + H2O = nitrous oxide + 2 Fe(II)-[cytochrome c] + 2 H(+)"]]},{"id":"CHEBI:26271","l":"proline","na":3,"nb":12,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.15","The Betaine/Carnitine/Choline Transporter (BCCT) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"]]},{"id":"GO:0006083","l":"acetate metabolic process","na":3,"nb":12,"a":[["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["GO%3A0019413","acetate biosynthetic process"],["GO%3A0045733","acetate catabolic process"],["GO%3A0006083","acetate metabolic process"],["GO%3A0045122","aflatoxin biosynthetic process"],["GO%3A0019658","bifid shunt"],["GO%3A0019475","L-lysine fermentation"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":11,"nb":3,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["Pfam%3APF14864","Alkyl sulfatase C-terminal"],["Pfam%3APF13816","Haem-containing dehydratase"],["Pfam%3APF14863","Alkyl sulfatase dimerisation"]]},{"id":"GO:0019329","l":"ammonia oxidation","na":10,"nb":3,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"]],"b":[["GO%3A0019409","aerobic respiration, using ammonia as electron donor"],["GO%3A0019329","ammonia oxidation"],["GO%3A0019331","anaerobic respiration, using ammonium as electron donor"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":3,"nb":10,"a":[["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["Pfam%3APF27445","Adaptation to cold protein A"],["Pfam%3APF27450","AtcB C-terminal domain"],["Pfam%3APF27486","AtcB N-terminal domain"],["Pfam%3APF02464","CinA C-terminal domain"],["Pfam%3APF13657","HipA N-terminal domain"],["Pfam%3APF01934","Ribonuclease HepT-like"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":3,"nb":10,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF09081","Glucan 1,4-alpha-maltotetraohydrolase, domain C"],["Pfam%3APF09459","Ethylbenzene dehydrogenase"],["Pfam%3APF08406","CbbQ/NirQ/NorQ C-terminal"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"],["Pfam%3APF18793","Nitrous oxide reductase propeller repeat 2"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":3,"nb":10,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["Pfam%3APF17433","Glycosyl hydrolase family 49 N-terminal Ig-like domain"],["PROSITE%3APS00820","Glucoamylase active site region signature"],["PROSITE%3APS00920","Nitrilases / cyanide hydratase signature 1"],["PROSITE%3APS00502","Polygalacturonase active site"],["Pfam%3APF18841","Beta solenoid repeat from Dextranase"],["Pfam%3APF03718","Glycosyl hydrolase family 49"]]},{"id":"NCBITaxon:853","l":"Faecalibacterium prausnitzii","na":3,"nb":10,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"]],"b":[["TED%3AAF-A0A2A7AJ69-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A7AJ69-F1-model_v4_TED01"],["TED%3AAF-A0A329UNG0-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A329UNG0-F1-model_v4_TED05"],["TED%3AAF-A0A3F3JVN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3F3JVN3-F1-model_v4_TED01"],["TED%3AAF-A0A564SWB8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A564SWB8-F1-model_v4_TED02"],["TED%3AAF-A0A173SIF7-F1-model_v4_TED01","TED novel fold AF-A0A173SIF7-F1-model_v4_TED01"],["TED%3AAF-A0A173WYP6-F1-model_v4_TED01","TED novel fold AF-A0A173WYP6-F1-model_v4_TED01"]]},{"id":"CHEBI:16602","l":"trichloroethene","na":9,"nb":3,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["EC%3A1.21.99.5","tetrachloroethene reductive dehalogenase"],["RHEA%3A67992","trichloroethene + AH2 = (Z)-1,2-dichloroethene + chloride + A + H(+)"],["RHEA%3A20353","trichloroethene + chloride + A + H(+) = tetrachloroethene + AH2"]]},{"id":"CHEBI:18367","l":"phosphate(3-)","na":9,"nb":3,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["proteintraitsmech%3ABIOLIP_PO4","PO4-binding site"]]},{"id":"CHEBI:87393","l":"hexan-1-ol","na":3,"nb":9,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["RHEA%3A65480","2-methylbutanoyl-CoA + hexan-1-ol = hexyl 2-methylbutanoate + CoA"],["RHEA%3A79331","hexan-1-ol + 2 Fe(III)-[cytochrome c] = hexanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A65460","hexan-1-ol + acetyl-CoA = hexyl acetate + CoA"],["RHEA%3A65444","hexan-1-ol + butanoyl-CoA = hexyl butanoate + CoA"],["RHEA%3A65484","hexan-1-ol + hexanoyl-CoA = hexyl hexanoate + CoA"],["RHEA%3A60972","hexan-1-ol + NAD(+) = hexanal + NADH + H(+)"]]},{"id":"GO:1990748","l":"cellular detoxification","na":3,"nb":9,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["GO%3A1990748","cellular detoxification"],["GO%3A0140977","cellular detoxification of acetone"],["GO%3A0110095","cellular detoxification of aldehyde"],["GO%3A0140114","cellular detoxification of fluoride"],["GO%3A0140961","cellular detoxification of metal ion"],["GO%3A0070458","cellular detoxification of nitrogen compound"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":3,"nb":8,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["Pfam%3APF01890","Cobalamin synthesis G C-terminus"],["Pfam%3APF11761","Cobalamin biosynthesis central region"],["Pfam%3APF11760","Cobalamin synthesis G N-terminal"],["Pfam%3APF02570","Precorrin-8X methylmutase"],["PROSITE%3APS00304","Small, acid-soluble spore proteins, alpha/beta type, signature 1"],["PROSITE%3APS00684","Small, acid-soluble spore proteins, alpha/beta type, signature 2"]]},{"id":"CHEBI:30742","l":"ethylene glycol","na":3,"nb":7,"a":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"]],"b":[["EC%3A3.1.1.102","mono(ethylene terephthalate) hydrolase"],["RHEA%3A42648","(2,5-ethylene furandicarboxylate)(n) + 2 H2O = (2,5-ethylene furandicarboxylate)(n-1) + 2,5-dicarboxyfuran + ethylene glycol + 2 H(+)"],["RHEA%3A49532","4-[(2-hydroxyethoxy)carbonyl]benzoate + H2O = terephthalate + ethylene glycol + H(+)"],["RHEA%3A80759","bis(2-hydroxyethyl) terephthalate + H2O = 4-[(2-hydroxyethoxy)carbonyl]benzoate + ethylene glycol + H(+)"],["RHEA%3A27630","ethylene glycol + NAD(+) = glycolaldehyde + NADH + H(+)"],["MCSA%3A847","epoxide hydrolase"]]},{"id":"NCBITaxon:28116","l":"Bacteroides ovatus","na":3,"nb":7,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["TED%3AAF-A0A515J030-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A515J030-F1-model_v4_TED01"],["TED%3AAF-A0A5M5C3M7-F1-model_v4_TED01","TED novel fold AF-A0A5M5C3M7-F1-model_v4_TED01"],["TED%3AAF-A0A641PL20-F1-model_v4_TED01","TED novel fold AF-A0A641PL20-F1-model_v4_TED01"],["TED%3AAF-A0A641V3P9-F1-model_v4_TED03","TED novel fold AF-A0A641V3P9-F1-model_v4_TED03"],["TED%3AAF-A0A641VT79-F1-model_v4_TED01","TED novel fold AF-A0A641VT79-F1-model_v4_TED01"],["TED%3AAF-A0A642C648-F1-model_v4_TED01","TED novel fold AF-A0A642C648-F1-model_v4_TED01"]]},{"id":"CHEBI:15890","l":"5,6-dimethylbenzimidazole","na":3,"nb":6,"a":[["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["EC%3A1.13.11.79","aerobic 5,6-dimethylbenzimidazole synthase"],["EC%3A2.4.2.21","nicotinate-nucleotide--dimethylbenzimidazole phosphoribosyltransferase"],["RHEA%3A11196","5,6-dimethylbenzimidazole + nicotinate beta-D-ribonucleotide = alpha-ribazole 5'-phosphate + nicotinate + H(+)"],["RHEA%3A27345","FMNH2 + O2 = dialurate + 5,6-dimethylbenzimidazole + D-erythrose 4-phosphate + H(+)"],["MCSA%3A79","nicotinate-nucleotide-dimethylbenzimidazole phosphoribosyltransferase"],["proteintraitsmech%3ABIOLIP_DMD","DMD-binding site"]]},{"id":"CHEBI:27266","l":"valine","na":3,"nb":6,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.26","The Branched Chain Amino Acid:Cation Symporter (LIVCS) Family"],["TCDB%3A2.A.78","The Branched Chain Amino Acid Exporter (LIV-E) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:55474","l":"N-acyl-L-homoserine lactone","na":3,"nb":6,"a":[["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["EC%3A2.3.1.184","acyl-homoserine-lactone synthase"],["EC%3A3.1.1.81","quorum-quenching N-acyl-homoserine lactonase"],["EC%3A3.5.1.97","acyl-homoserine-lactone acylase"],["RHEA%3A10096","a fatty acyl-[ACP] + S-adenosyl-L-methionine = an N-acyl-L-homoserine lactone + S-methyl-5'-thioadenosine + holo-[ACP] + H(+)"],["RHEA%3A22576","an N-acyl-L-homoserine lactone + H2O = an N-acyl-L-homoserine + H(+)"],["RHEA%3A18937","an N-acyl-L-homoserine lactone + H2O = L-homoserine lactone + a carboxylate"]]},{"id":"NCBITaxon:1390","l":"Bacillus amyloliquefaciens","na":3,"nb":6,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]],"b":[["Pfam%3APF02923","Restriction endonuclease BamHI"],["Pfam%3APF01337","Barstar (barnase inhibitor)"],["Pfam%3APF22148","Fervidolysin N-terminal prodomain"],["PROSITE%3APS00093","N-4 cytosine-specific DNA methylases signature"],["PROSITE%3APS01334","Pyrrolidone-carboxylate peptidase cysteine active site"],["PROSITE%3APS01333","Pyrrolidone-carboxylate peptidase glutamic acid active site"]]},{"id":"CHEBI:17015","l":"riboflavin","na":5,"nb":3,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17015","requires riboflavin"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_RBF","RBF-binding site"]]},{"id":"CHEBI:26672","l":"siderophore","na":3,"nb":5,"a":[["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_26672","siderophore cofactor class"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.17","The Outer Membrane Factor (OMF) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]]},{"id":"GO:0005987","l":"sucrose catabolic process","na":5,"nb":3,"a":[["Synechococcus_Bacillus_SPC.html","Synechococcus-Bacillus Synthetic Photosynthetic Consortium"],["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"],["Synechococcus_Saccharomyces_SPC.html","Synechococcus-Saccharomyces Synthetic Photosynthetic Consortium"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["GO%3A0061704","glycolytic process from sucrose"],["GO%3A0005987","sucrose catabolic process"],["NCBIfam%3ANF006957","fructokinase"]]},{"id":"GO:0006766","l":"vitamin metabolic process","na":3,"nb":5,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["GO%3A0042816","vitamin B6 metabolic process"],["GO%3A0009110","vitamin biosynthetic process"],["GO%3A0009111","vitamin catabolic process"],["GO%3A0006766","vitamin metabolic process"],["Reactome%3AR-HSA-211916","Vitamins"]]},{"id":"GO:0009410","l":"response to xenobiotic stimulus","na":3,"nb":5,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["SkinCom_Synthetic_Skin_Community.html","SkinCom Synthetic Skin Community"]],"b":[["GO%3A0071466","cellular response to xenobiotic stimulus"],["GO%3A0009410","response to xenobiotic stimulus"],["NCBIfam%3ATIGR00957","multi drug resistance-associated protein (MRP)"],["NCBIfam%3ANF018181","R67 dihydrofolate reductase"],["Pfam%3APF06442","R67 dihydrofolate reductase"]]},{"id":"NCBITaxon:1667","l":"Arthrobacter sp.","na":3,"nb":5,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["Pfam%3APF14031","Putative serine dehydratase domain"],["Pfam%3APF02449","Beta-galactosidase"],["Pfam%3APF08533","Beta-galactosidase C-terminal domain"],["Pfam%3APF08532","Beta-galactosidase trimerisation domain"],["TED%3AAF-A0A3C2BWN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C2BWN3-F1-model_v4_TED01"]]},{"id":"CHEBI:17191","l":"L-isoleucine","na":3,"nb":4,"a":[["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"]],"b":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.26","The Branched Chain Amino Acid:Cation Symporter (LIVCS) Family"],["proteintraitsmech%3ABIOLIP_ILE","ILE-binding site"]]},{"id":"CHEBI:18237","l":"glutamic acid","na":4,"nb":3,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:72813","l":"exopolysaccharide","na":4,"nb":3,"a":[["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.18","The Outer Membrane Auxiliary (OMA) Protein Family"]]},{"id":"GO:0019386","l":"methanogenesis, from carbon dioxide","na":3,"nb":4,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Tropidoatractus_Magnetotacticus_Tripartite_Syntrophy.html","Tropidoatractus magnetotacticus Magnetotactic Ciliate Tripartite Syntrophy"]],"b":[["GO%3A0019386","methanogenesis, from carbon dioxide"],["NCBIfam%3ATIGR01723","5,10-methenyltetrahydromethanopterin hydrogenase"],["NCBIfam%3ATIGR01112","tetrahydromethanopterin S-methyltransferase subunit D"],["NCBIfam%3ATIGR01113","tetrahydromethanopterin S-methyltransferase subunit E"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":3,"nb":4,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF09711","CRISPR-associated protein (Cas_Csn2)"],["Pfam%3APF06308","23S rRNA methylastransferase leader peptide (ErmCL)"]]},{"id":"NCBITaxon:3076","l":"Chlorella sorokiniana","na":3,"nb":4,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Dairy_Wastewater_Algal_Cyanobacterial_Cultivation_Panel.html","Dairy Wastewater Algal-Cyanobacterial Cultivation Panel"],["SynCom_Chlorella_sorokiniana_Biogas_Slurry_Coupling_System.html","SynCom + Chlorella sorokiniana Biogas-slurry Coupling System"]],"b":[["TED%3AAF-A0A2P6TR54-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P6TR54-F1-model_v4_TED01"],["TED%3AAF-A0A2P6TVK6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P6TVK6-F1-model_v4_TED01"],["TED%3AAF-A0A2P6TZ25-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2P6TZ25-F1-model_v4_TED02"],["TED%3AAF-A0A2P6TLT0-F1-model_v4_TED05","TED novel fold AF-A0A2P6TLT0-F1-model_v4_TED05"]]},{"id":"NCBITaxon:33038","l":"Mediterraneibacter gnavus","na":4,"nb":3,"a":[["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Clostridial_isoDCA_Mini_Consortium.html","Clostridial isoDCA Mini Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["Pfam%3APF16874","Glycosyl hydrolase family 36 C-terminal domain"],["Pfam%3APF16875","Glycosyl hydrolase family 36 N-terminal domain"],["Pfam%3APF04604","Type-A lantibiotic"]]},{"id":"CHEBI:16482","l":"naphthalene","na":3,"nb":3,"a":[["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"]],"b":[["EC%3A1.14.12.12","naphthalene 1,2-dioxygenase"],["RHEA%3A19173","naphthalene + NADH + O2 + H(+) = (1R,2S)-1,2-dihydronaphthalene-1,2-diol + NAD(+)"],["MCSA%3A130","naphthalene 1,2-dioxygenase"]]},{"id":"GO:0009110","l":"vitamin biosynthetic process","na":3,"nb":3,"a":[["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["GO%3A0042362","fat-soluble vitamin biosynthetic process"],["GO%3A0009110","vitamin biosynthetic process"],["GO%3A0042364","water-soluble vitamin biosynthetic process"]]},{"id":"GO:0098743","l":"cell aggregation","na":3,"nb":3,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["GO%3A0098630","aggregation of unicellular organisms"],["GO%3A0001502","cartilage condensation"],["GO%3A0098743","cell aggregation"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":3,"nb":3,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["Pfam%3APF03423","Carbohydrate binding domain (family 25)"],["Pfam%3APF03422","Carbohydrate binding module (family 6)"],["TED%3AAF-A0A7X5SGP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X5SGP7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:3702","l":"Arabidopsis thaliana","na":2,"nb":18772,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["EC%3A1.1.99.-","With other acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.14.11.-","With 2-oxoglutarate as one donor, and incorporation of one atom each of oxygen into both donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.14.-","With reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen"]]},{"id":"CHEBI:30031","l":"succinate(2-)","na":2,"nb":502,"a":[["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["EC%3A1.14.11.1","gamma-butyrobetaine dioxygenase"],["EC%3A1.14.11.10","pyrimidine-deoxynucleoside 1'-dioxygenase"],["EC%3A1.14.11.11","hyoscyamine (6S)-dioxygenase"],["EC%3A1.14.11.12","gibberellin-44 dioxygenase"],["EC%3A1.14.11.13","gibberellin 2beta-dioxygenase"],["EC%3A1.14.11.15","gibberellin 3beta-dioxygenase"]]},{"id":"GO:0010468","l":"regulation of gene expression","na":2,"nb":394,"a":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["ComplexPortal%3ACPX-1129","Atk-1/Akt-2/Sgk-1 protein kinase complex"],["ComplexPortal%3ACPX-5666","CCAAT-binding factor complex, nfya-1 variant"],["ComplexPortal%3ACPX-5667","CCAAT-binding factor complex, nfya-2 variant"],["ComplexPortal%3ACPX-4305","DHIC complex"],["ComplexPortal%3ACPX-3885","sir-2.1-ftt-2 complex"],["ComplexPortal%3ACPX-3886","sir-2.1-par-5 complex"]]},{"id":"CHEBI:4167","l":"D-glucopyranose","na":2,"nb":217,"a":[["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["EC%3A1.1.1.118","glucose 1-dehydrogenase (NAD(+))"],["EC%3A1.1.1.119","glucose 1-dehydrogenase (NADP(+))"],["EC%3A1.1.1.359","aldose 1-dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.1.360","glucose/galactose 1-dehydrogenase"],["EC%3A1.1.1.432","6-dehydroglucose reductase"],["EC%3A1.1.1.47","glucose 1-dehydrogenase [NAD(P)(+)]"]]},{"id":"CHEBI:17996","l":"chloride","na":2,"nb":196,"a":[["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17996","requires chloride"],["EC%3A1.11.2.2","myeloperoxidase"],["EC%3A1.13.11.49","chlorite O2-lyase"],["EC%3A1.14.12.13","2-halobenzoate 1,2-dioxygenase"],["EC%3A1.14.12.9","4-chlorophenylacetate 3,4-dioxygenase"],["EC%3A1.14.13.50","pentachlorophenol monooxygenase"]]},{"id":"GO:0016032","l":"viral process","na":2,"nb":113,"a":[["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"]],"b":[["GO%3A0075526","cap snatching"],["GO%3A0099015","degradation of host chromosome by virus"],["GO%3A0019043","establishment of viral latency"],["GO%3A0039674","exit of virus from host cell nucleus"],["GO%3A0039700","fusion of viral membrane with host outer nuclear membrane"],["GO%3A0075522","IRES-dependent viral translational initiation"]]},{"id":"GO:0006099","l":"tricarboxylic acid cycle","na":2,"nb":92,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["ComplexPortal%3ACPX-3921","2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-9044","Mitochondrial 2-oxoglutarate dehydrogenase complex,CG1544 variant"],["ComplexPortal%3ACPX-9043","Mitochondrial 2-oxoglutarate dehydrogenase complex, CG33791 variant"],["ComplexPortal%3ACPX-1293","Mitochondrial 2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-9061","Mitochondrial 2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-9042","Mitochondrial 2-oxoglutarate dehydrogenase complex, ODGH variant"]]},{"id":"GO:0009733","l":"response to auxin","na":2,"nb":89,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["ComplexPortal%3ACPX-1523","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK10"],["ComplexPortal%3ACPX-1524","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK11"],["ComplexPortal%3ACPX-1525","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK12"],["ComplexPortal%3ACPX-1526","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK13"],["ComplexPortal%3ACPX-1527","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK14"],["ComplexPortal%3ACPX-1528","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK15"]]},{"id":"GO:0016053","l":"obsolete organic acid biosynthetic process","na":2,"nb":83,"a":[["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Wollastonite_Ramichloridium_Talaromyces_Fungal_Consortium.html","Wollastonite Ramichloridium-Talaromyces Fungal Consortium"]],"b":[["PANTHER%3APTHR43090","1-(5-PHOSPHORIBOSYL)-5-[(5-PHOSPHORIBOSYLAMINO)METHYLIDENEAMINO] IMIDAZOLE-4-CARBOXAMIDE ISOMERASE"],["PANTHER%3APTHR43699","3-DEHYDROQUINATE DEHYDRATASE"],["PANTHER%3APTHR42979","3-ISOPROPYLMALATE DEHYDROGENASE"],["PANTHER%3APTHR20881","3-METHYL-2-OXOBUTANOATE HYDROXYMETHYLTRANSFERASE"],["PANTHER%3APTHR46832","5'-METHYLTHIOADENOSINE/S-ADENOSYLHOMOCYSTEINE NUCLEOSIDASE"],["PANTHER%3APTHR31242","ACETOLACTATE SYNTHASE SMALL SUBUNIT, MITOCHONDRIAL"]]},{"id":"CHEBI:15354","l":"choline","na":2,"nb":78,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["EC%3A1.1.3.17","choline oxidase"],["EC%3A1.1.99.1","choline dehydrogenase"],["EC%3A1.14.15.7","choline monooxygenase"],["EC%3A2.3.1.6","choline O-acetyltransferase"],["EC%3A2.3.1.91","sinapoylglucose--choline O-sinapoyltransferase"],["EC%3A2.7.1.32","choline kinase"]]},{"id":"CHEBI:29806","l":"fumarate(2-)","na":2,"nb":76,"a":[["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["EC%3A1.3.1.6","fumarate reductase (NADH)"],["EC%3A1.3.2.4","fumarate reductase (cytochrome)"],["EC%3A1.3.4.1","fumarate reductase (CoM/CoB)"],["EC%3A1.3.5.1","succinate dehydrogenase"],["EC%3A1.3.98.1","dihydroorotate oxidase (fumarate)"],["EC%3A3.7.1.14","2-hydroxy-6-oxonona-2,4-dienedioate hydrolase"]]},{"id":"CHEBI:15422","l":"ATP","na":2,"nb":68,"a":[["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15422","requires ATP"],["ARO%3A3002628","aad(6)"],["ARO%3A3002601","aadA"],["ARO%3A3004692","aadA10"],["ARO%3A3002611","aadA11"],["ARO%3A3002612","aadA12"]]},{"id":"CHEBI:16947","l":"citrate(3-)","na":2,"nb":49,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["EC%3A2.3.3.1","citrate (Si)-synthase"],["EC%3A2.3.3.16","citrate synthase (unknown stereospecificity)"],["EC%3A2.3.3.3","citrate (Re)-synthase"],["EC%3A2.3.3.8","ATP citrate synthase"],["EC%3A2.8.3.10","citrate CoA-transferase"],["EC%3A4.1.3.6","citrate (pro-3S)-lyase"]]},{"id":"GO:0009063","l":"amino acid catabolic process","na":2,"nb":47,"a":[["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"]],"b":[["ComplexPortal%3ACPX-865","Electron transfer flavoprotein complex"],["ComplexPortal%3ACPX-2731","Mitochondrial electron transfer flavoprotein complex"],["GO%3A0042217","1-aminocyclopropane-1-carboxylate catabolic process"],["GO%3A0009063","amino acid catabolic process"],["GO%3A0019665","amino acid fermentation"],["GO%3A0019484","beta-alanine catabolic process"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":46,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF13166","AAA domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF27533","CapK C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"]]},{"id":"CHEBI:16480","l":"nitric oxide","na":2,"nb":43,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"]],"b":[["EC%3A1.14.12.17","nitric oxide dioxygenase"],["EC%3A1.14.13.39","nitric-oxide synthase (NADPH)"],["EC%3A1.14.14.47","nitric-oxide synthase (flavodoxin)"],["EC%3A1.14.15.41","L-tryptophan 4-nitrase"],["EC%3A1.14.15.42","L-tyrosine 3-nitrase"],["EC%3A1.7.1.14","nitric oxide reductase [NAD(P)(+), nitrous oxide-forming]"]]},{"id":"GO:0030163","l":"protein catabolic process","na":2,"nb":40,"a":[["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"]],"b":[["ComplexPortal%3ACPX-1655","i-AAA complex"],["ComplexPortal%3ACPX-1654","m-AAA protease complex"],["GO%3A0002077","acrosome matrix dispersal"],["GO%3A0061684","chaperone-mediated autophagy"],["GO%3A0007174","epidermal growth factor catabolic process"],["GO%3A0006516","glycoprotein catabolic process"]]},{"id":"GO:0019684","l":"photosynthesis, light reaction","na":2,"nb":39,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]],"b":[["GO%3A0019684","photosynthesis, light reaction"],["NCBIfam%3ANF058510","bifunctional rod-capping linker CpcD/ferredoxin--NADP reductase PetH"],["NCBIfam%3ATIGR01332","cytochrome b559 subunit alpha"],["NCBIfam%3ATIGR01333","cytochrome b559 subunit beta"],["NCBIfam%3ANF043009","cytochrome c-554 Puf2C"],["NCBIfam%3ANF040862","light-harvesting antenna LH1, beta subunit"]]},{"id":"GO:0006006","l":"glucose metabolic process","na":2,"nb":38,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["GO%3A0006094","gluconeogenesis"],["GO%3A0006007","glucose catabolic process"],["GO%3A0006006","glucose metabolic process"],["Reactome%3AR-HSA-70326","Glucose metabolism"],["NCBIfam%3ANF033735","ArsJ-associated glyceraldehyde-3-phosphate dehydrogenase"],["NCBIfam%3ANF045551","ATP-dependent glucokinase"]]},{"id":"GO:0008643","l":"carbohydrate transport","na":2,"nb":38,"a":[["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["ComplexPortal%3ACPX-5990","sgcABC sugar permease enzyme II complex"],["GO%3A0033231","carbohydrate export"],["GO%3A0034219","carbohydrate transmembrane transport"],["GO%3A0008643","carbohydrate transport"],["GO%3A0015772","oligosaccharide transport"],["GO%3A0015774","polysaccharide transport"]]},{"id":"CHEBI:16150","l":"benzoate","na":2,"nb":36,"a":[["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["EC%3A1.14.12.10","benzoate 1,2-dioxygenase"],["EC%3A1.14.14.92","benzoate 4-monooxygenase"],["EC%3A1.2.1.28","benzaldehyde dehydrogenase (NAD(+))"],["EC%3A1.2.1.7","benzaldehyde dehydrogenase (NADP(+))"],["EC%3A2.1.1.273","benzoate O-methyltransferase"],["EC%3A3.1.1.84","cocaine esterase"]]},{"id":"GO:0000272","l":"polysaccharide catabolic process","na":2,"nb":36,"a":[["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["GO%3A0042122","alginic acid catabolic process"],["GO%3A0031222","arabinan catabolic process"],["GO%3A0030995","cell septum edging catabolic process"],["GO%3A0044347","cell wall polysaccharide catabolic process"],["GO%3A0010147","fructan catabolic process"],["GO%3A2000885","galactoglucomannan catabolic process"]]},{"id":"GO:0009628","l":"response to abiotic stimulus","na":2,"nb":34,"a":[["South_Bay_Salt_Pond_Methane_Restoration_Community.html","South Bay Salt Pond Methane Restoration Microbial Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"]],"b":[["GO%3A0071214","cellular response to abiotic stimulus"],["GO%3A0009582","detection of abiotic stimulus"],["GO%3A0097318","invasive growth in response to abiotic stimulus"],["GO%3A0009628","response to abiotic stimulus"],["GO%3A0051602","response to electrical stimulus"],["GO%3A0009629","response to gravity"]]},{"id":"GO:0007154","l":"cell communication","na":2,"nb":32,"a":[["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["GO%3A0007412","axon target recognition"],["GO%3A0007267","cell-cell signaling"],["GO%3A0010643","cell communication by chemical coupling"],["GO%3A0010644","cell communication by electrical coupling"],["GO%3A0007154","cell communication"],["GO%3A0086065","cell communication involved in cardiac conduction"]]},{"id":"GO:0009228","l":"thiamine biosynthetic process","na":2,"nb":32,"a":[["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"],["Variovorax_Cryptococcus_Vitamin_Mutualism_Microcosm.html","Variovorax-Cryptococcus Vitamin Cross-Feeding Microcosm"]],"b":[["ComplexPortal%3ACPX-2140","iscS-thiI sulfurtransferase complex"],["GO%3A0009228","thiamine biosynthetic process"],["GO%3A0036172","thiamine salvage"],["NCBIfam%3ATIGR00204","1-deoxy-D-xylulose-5-phosphate synthase"],["NCBIfam%3ATIGR02351","2-iminoacetate synthase ThiH"],["NCBIfam%3ANF009078","bifunctional hydroxymethylpyrimidine kinase/phosphomethylpyrimidine kinase"]]},{"id":"CHEBI:15882","l":"phenol","na":2,"nb":31,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]],"b":[["EC%3A1.14.13.244","phenol 2-monooxygenase (NADH)"],["EC%3A1.14.13.7","phenol 2-monooxygenase (NADPH)"],["EC%3A1.14.14.20","phenol 2-monooxygenase (FADH2)"],["EC%3A2.1.1.25","phenol O-methyltransferase"],["EC%3A2.4.2.55","nicotinate D-ribonucleotide:phenol phospho-D-ribosyltransferase"],["EC%3A2.7.1.238","phenol phosphorylase"]]},{"id":"CHEBI:15347","l":"acetone","na":2,"nb":27,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["EC%3A1.1.1.80","isopropanol dehydrogenase (NADP(+))"],["EC%3A1.14.13.226","acetone monooxygenase (methyl acetate-forming)"],["EC%3A1.14.14.141","psoralen synthase"],["EC%3A1.14.14.148","angelicin synthase"],["EC%3A2.6.3.1","oximinotransferase"],["EC%3A4.1.1.4","acetoacetate decarboxylase"]]},{"id":"CHEBI:57586","l":"biotinate","na":2,"nb":24,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_57586","requires biotinate"],["EC%3A2.8.1.6","biotin synthase"],["EC%3A3.5.1.12","biotinidase"],["EC%3A6.2.1.11","biotin--CoA ligase"],["EC%3A6.3.4.10","biotin--[propionyl-CoA-carboxylase (ATP-hydrolyzing)] ligase"],["EC%3A6.3.4.11","biotin--[methylcrotonoyl-CoA-carboxylase] ligase"]]},{"id":"NCBITaxon:160488","l":"Pseudomonas putida (strain ATCC 47054 / DSM 6125 / CFBP 8728 / NCIMB 11950 / KT2440)","na":2,"nb":24,"a":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"]],"b":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF00842","Alanine racemase, C-terminal domain"],["Pfam%3APF01168","Alanine racemase, N-terminal domain"],["Pfam%3APF13372","Alginate export"],["Pfam%3APF03705","CheR methyltransferase, all-alpha domain"],["Pfam%3APF01739","CheR methyltransferase, SAM binding domain"]]},{"id":"GO:0045333","l":"cellular respiration","na":2,"nb":21,"a":[["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"]],"b":[["ComplexPortal%3ACPX-560","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-563","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-567","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-9308","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-1721","Mitochondrial respiratory chain complex IV, COX5A variant"],["ComplexPortal%3ACPX-1722","Mitochondrial respiratory chain complex IV, COX5B variant"]]},{"id":"GO:0071248","l":"cellular response to metal ion","na":2,"nb":21,"a":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["GO%3A0071275","cellular response to aluminum ion"],["GO%3A0071276","cellular response to cadmium ion"],["GO%3A0071277","cellular response to calcium ion"],["GO%3A0071278","cellular response to cesium ion"],["GO%3A0071279","cellular response to cobalt ion"],["GO%3A0071280","cellular response to copper ion"]]},{"id":"GO:0006089","l":"lactate metabolic process","na":2,"nb":20,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"]],"b":[["ComplexPortal%3ACPX-6573","L-lactate dehydrogenase A complex"],["ComplexPortal%3ACPX-6599","L-lactate dehydrogenase B complex"],["ComplexPortal%3ACPX-6602","L-lactate dehydrogenase C complex"],["ComplexPortal%3ACPX-6598","L-lactate dehydrogenase complex, A1B3 variant"],["ComplexPortal%3ACPX-6594","L-lactate dehydrogenase complex, A2B2 variant"],["ComplexPortal%3ACPX-6592","L-lactate dehydrogenase complex, A3B1 variant"]]},{"id":"CHEBI:16750","l":"guanosine","na":2,"nb":19,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["EC%3A2.4.2.1","purine-nucleoside phosphorylase"],["EC%3A2.4.2.15","guanosine phosphorylase"],["EC%3A2.7.1.73","inosine kinase"],["EC%3A3.5.4.15","guanosine deaminase"],["RHEA%3A27862","3'-GMP + H2O = guanosine + phosphate"],["RHEA%3A27714","GMP + H2O = guanosine + phosphate"]]},{"id":"GO:0009636","l":"response to toxic substance","na":2,"nb":18,"a":[["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"]],"b":[["ComplexPortal%3ACPX-2254","Cus cation efflux complex"],["GO%3A0097237","cellular response to toxic substance"],["GO%3A0060992","response to fungicide"],["GO%3A0009635","response to herbicide"],["GO%3A0017085","response to insecticide"],["GO%3A0010188","response to microbial phytotoxin"]]},{"id":"NCBITaxon:4577","l":"Zea mays","na":2,"nb":18,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"]],"b":[["IDPO%3A0000002","disorder"],["Pfam%3APF14861","Plant antimicrobial peptide"],["Pfam%3APF02041","Auxin binding protein"],["Pfam%3APF25436","BSD2 cysteine rich domain"],["Pfam%3APF23493","Cysteinyl-tRNA ligase anticodon binding domain"],["Pfam%3APF03330","Lytic transglycolase"]]},{"id":"GO:0033103","l":"protein secretion by the type VI secretion system","na":2,"nb":17,"a":[["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"]],"b":[["GO%3A0033103","protein secretion by the type VI secretion system"],["NCBIfam%3ATIGR03354","type VI secretion system-associated FHA domain protein TagH"],["NCBIfam%3ATIGR03345","type VI secretion system ATPase TssH"],["NCBIfam%3ATIGR03357","type VI secretion system baseplate subunit TssE"],["NCBIfam%3ATIGR03359","type VI secretion system baseplate subunit TssF"],["NCBIfam%3ATIGR03347","type VI secretion system baseplate subunit TssG"]]},{"id":"GO:0051707","l":"response to other organism","na":2,"nb":17,"a":[["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0002213","defense response to insect"],["GO%3A0002215","defense response to nematode"],["GO%3A0098542","defense response to other organism"],["GO%3A0098543","detection of other organism"],["GO%3A0009617","response to bacterium"],["GO%3A0009620","response to fungus"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":2,"nb":16,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF28265","Lipoprotein N-acylation protein LnsA-like"],["Pfam%3APF16403","Bacterial surface protein, Ig-like domain"],["Pfam%3APF03944","delta endotoxin"],["Pfam%3APF03945","delta endotoxin, N-terminal domain"],["Pfam%3APF06355","Aegerolysin"]]},{"id":"GO:0006970","l":"response to osmotic stress","na":2,"nb":15,"a":[["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["GO%3A0071470","cellular response to osmotic stress"],["GO%3A0043575","detection of osmotic stimulus"],["GO%3A0006972","hyperosmotic response"],["GO%3A0006971","hypotonic response"],["GO%3A0010335","response to non-ionic osmotic stress"],["GO%3A0006970","response to osmotic stress"]]},{"id":"GO:0019645","l":"anaerobic electron transport chain","na":2,"nb":15,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["ComplexPortal%3ACPX-320","DmaABC DMSO reductase complex"],["ComplexPortal%3ACPX-1975","Formate dehydrogenase N complex"],["ComplexPortal%3ACPX-6029","Formate dehydrogenase Z complex"],["ComplexPortal%3ACPX-317","Formate hydrogenlyase-H/Hydrogenase-3 complex"],["ComplexPortal%3ACPX-6028","Formate hydrogenlyase-H/Hydrogenase-4 complex"],["ComplexPortal%3ACPX-281","Hydrogenase-1 complex"]]},{"id":"GO:0009408","l":"response to heat","na":2,"nb":14,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["PMI_Variovorax_Thermotolerance_Collection.html","PMI Variovorax Thermotolerance Collection"]],"b":[["ComplexPortal%3ACPX-4887","DNA-directed RNA polymerase holoenzyme complex, SigmaH variant"],["ComplexPortal%3ACPX-636","ISW1b chromatin remodeling complex"],["GO%3A0034605","cellular response to heat"],["GO%3A0036168","filamentous growth of a population of unicellular organisms in response to heat"],["GO%3A0010286","heat acclimation"],["GO%3A0009408","response to heat"]]},{"id":"GO:0006032","l":"chitin catabolic process","na":2,"nb":13,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["GO%3A0006032","chitin catabolic process"],["NCBIfam%3ANF052619","chitinase ChiD"],["NCBIfam%3ANF041127","exo-beta-D-glucosaminidase"],["NCBIfam%3ANF041128","glucosamine-6-phosphate deaminase"],["NCBIfam%3ATIGR03851","N-acetylglucosamine/diacetylchitobiose ABC transporter substrate-binding protein"],["InterPro%3AIPR005089","Carbohydrate-binding module family 19"]]},{"id":"NCBITaxon:272562","l":"Clostridium acetobutylicum (strain ATCC 824 / DSM 792 / JCM 1419 / IAM 19013 / LMG 5710 / NBRC 13948 / NRRL B-527 / VKM B-1787 / 2291 / W)","na":2,"nb":13,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["Pfam%3APF10882","Bacterial PH domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["Pfam%3APF09940","Domain of unknown function (DUF2172)"],["Pfam%3APF16254","Domain of unknown function (DUF4910)"],["Pfam%3APF01183","Glycosyl hydrolases family 25"],["Pfam%3APF16221","winged helix-turn-helix"]]},{"id":"NCBITaxon:644","l":"Aeromonas hydrophila","na":2,"nb":13,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["Pfam%3APF01117","Aerolysin toxin"],["Pfam%3APF03440","Aerolysin/Pertussis toxin (APT) domain"],["Pfam%3APF21327","GspA, peptidase C39-like domain"],["Pfam%3APF04231","Endonuclease I"],["PROSITE%3APS01092","Adenylate cyclase class-I signature 1"],["PROSITE%3APS01093","Adenylate cyclase class-I signature 2"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus (strain ATCC 27405 / DSM 1237 / JCM 9322 / NBRC 103400 / NCIMB 10682 / NRRL B-4536 / VPI 7372)","na":2,"nb":12,"a":[["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["Pfam%3APF00942","Cellulose binding domain"],["Pfam%3APF17996","Carbohydrate esterase 2 N-terminal"],["Pfam%3APF00963","Cohesin domain"],["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF00404","Dockerin type I domain"]]},{"id":"NCBITaxon:51453","l":"Trichoderma reesei","na":2,"nb":12,"a":[["Trichoderma_Ecoli_Cellulosic_Isobutanol_Coculture.html","Trichoderma-E. coli Cellulosic Isobutanol Coculture"],["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["Pfam%3APF28347","ACE1 small beta sheet domain"],["Pfam%3APF28329","Zinc finger transcription factor ace1 N-terminal domain"],["Pfam%3APF00150","Cellulase (glycosyl hydrolase family 5)"],["Pfam%3APF22514","EXPB1-like domain 1"],["Pfam%3APF01341","Glycosyl hydrolases family 6"],["Pfam%3APF00840","Glycosyl hydrolase family 7"]]},{"id":"GO:0015889","l":"cobalamin transport","na":2,"nb":11,"a":[["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["ComplexPortal%3ACPX-2105","Cobalamin ABC transporter complex"],["ComplexPortal%3ACPX-1083","Cobalamin outer membrane transporter complex"],["ComplexPortal%3ACPX-5774","Cubam cobalamin uptake receptor complex"],["ComplexPortal%3ACPX-5847","Cubam cobalamin uptake receptor complex"],["GO%3A0015889","cobalamin transport"],["Reactome%3AR-HSA-9758890","Transport of RCbl within the body"]]},{"id":"GO:0019605","l":"butyrate metabolic process","na":2,"nb":11,"a":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["GO%3A0030645","acetyl-CoA fermentation to butanoate"],["GO%3A0046358","butyrate biosynthetic process"],["GO%3A0046359","butyrate catabolic process"],["GO%3A0019605","butyrate metabolic process"],["GO%3A0019475","L-lysine fermentation"],["GO%3A0044813","pyruvate fermentation to butanoate"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":2,"nb":11,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["Pfam%3APF22829","HphA C-terminal domain"],["Pfam%3APF22828","HphA N-terminal heme-binding domain"],["Pfam%3APF28205","Ciprofloxacin tolerance protein"],["Pfam%3APF19582","Solute-binding protein AdeT 1/2"],["PROSITE%3APS00337","Beta-lactamase class-D active site"],["Pfam%3APF24575","Surface lipoprotein assembly modifier, N-terminal TPR repeats"]]},{"id":"CHEBI:3098","l":"bile acid","na":2,"nb":9,"a":[["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.28","The Bile Acid:Na+ Symporter (BASS) Family"],["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"],["TCDB%3A9.A.19","The Lipid Intermediate Transporter (Arv1) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":2,"nb":9,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"]],"b":[["Pfam%3APF07835","Bacterial aa3 type cytochrome c oxidase subunit IV"],["Pfam%3APF04828","Glutathione-dependent formaldehyde-activating enzyme"],["Pfam%3APF16448","LapD/MoxY periplasmic domain"],["Pfam%3APF17267","Family of unknown function (DUF5333)"],["Pfam%3APF17272","Family of unknown function (DUF5337)"],["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":2,"nb":9,"a":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF25954","CusB-like, beta-barrel domain"],["Pfam%3APF13438","Domain of unknown function (DUF4113)"],["Pfam%3APF03767","HAD superfamily, subfamily IIIB (Acid phosphatase)"],["Pfam%3APF03496","ADP-ribosyltransferase exoenzyme"]]},{"id":"CHEBI:15366","l":"acetic acid","na":8,"nb":2,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["MCSA%3A431","acetylxylan esterase"],["MCSA%3A996","Peptidoglycan-N-acetylglucosamine deacetylase Bc1960"]]},{"id":"CHEBI:16793","l":"mercury(2+)","na":2,"nb":8,"a":[["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["EC%3A1.16.1.1","mercury(II) reductase"],["EC%3A4.99.1.2","alkylmercury lyase"],["RHEA%3A18777","an alkylmercury + H(+) = an alkane + Hg(2+)"],["RHEA%3A32815","Hg(2+)(in) = Hg(2+)(out)"],["RHEA%3A23856","Hg + NADP(+) + H(+) = Hg(2+) + NADPH"],["MCSA%3A297","alkylmercury lyase"]]},{"id":"GO:0009651","l":"response to salt stress","na":2,"nb":8,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"]],"b":[["GO%3A0071472","cellular response to salt stress"],["GO%3A0042538","hyperosmotic salinity response"],["GO%3A0042539","hypotonic salinity response"],["GO%3A0072342","response to anion stress"],["GO%3A0043157","response to cation stress"],["GO%3A0009651","response to salt stress"]]},{"id":"GO:0033013","l":"tetrapyrrole metabolic process","na":2,"nb":8,"a":[["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["GO%3A0009235","cobalamin metabolic process"],["GO%3A0006778","porphyrin-containing compound metabolic process"],["GO%3A0033014","tetrapyrrole biosynthetic process"],["GO%3A0033015","tetrapyrrole catabolic process"],["GO%3A0033013","tetrapyrrole metabolic process"],["NCBIfam%3ANF047825","tryptophan-rich sensory protein TspO"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":2,"nb":8,"a":[["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]],"b":[["Pfam%3APF02927","Cellulase N-terminal ig-like domain"],["Pfam%3APF00404","Dockerin type I domain"],["PROSITE%3APS00448","Clostridium cellulosome enzymes repeated domain signature"],["PROSITE%3APS60032","Glycosyl hydrolases family 9 (GH9) active site signature 1"],["PROSITE%3APS00592","Glycosyl hydrolases family 9 (GH9) active site signature 2"],["PROSITE%3APS00698","Glycosyl hydrolases family 9 (GH9) active site signature 3"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":8,"nb":2,"a":[["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"],["Sedimenting_Arabinose_Glucose_Saccharomyces_Coculture.html","Sedimenting Arabinose-Glucose Saccharomyces Coculture"]],"b":[["PROSITE%3APS00820","Glucoamylase active site region signature"],["TED%3AAF-A0A7I9G6Y3-F1-model_v4_TED02","TED novel fold AF-A0A7I9G6Y3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:920","l":"Acidithiobacillus ferrooxidans","na":8,"nb":2,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["Pfam%3APF20538","Family of unknown function (DUF6753)"],["PROSITE%3APS01007","Transposases, Mutator family, signature"]]},{"id":"CHEBI:17824","l":"propan-2-ol","na":2,"nb":7,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"]],"b":[["EC%3A1.1.1.80","isopropanol dehydrogenase (NADP(+))"],["EC%3A1.14.13.227","propane 2-monooxygenase"],["RHEA%3A62196","propan-2-ol + 2 Fe(III)-[cytochrome c] = acetone + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A41984","propan-2-ol + NAD(+) = acetone + NADH + H(+)"],["RHEA%3A21792","propan-2-ol + NADP(+) = acetone + NADPH + H(+)"],["RHEA%3A49992","propane + NADH + O2 + H(+) = propan-2-ol + NAD(+) + H2O"]]},{"id":"CHEBI:49713","l":"lithium(1+)","na":2,"nb":7,"a":[["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["RHEA%3A72631","3 Li(+)(out) + Ca(2+)(in) = 3 Li(+)(in) + Ca(2+)(out)"],["RHEA%3A70431","Li(+)(in) + 2 H(+)(out) = Li(+)(out) + 2 H(+)(in)"],["RHEA%3A75063","Li(+)(in) + 2 hydrogencarbonate(in) + chloride(out) = Li(+)(out) + 2 hydrogencarbonate(out) + chloride(in)"],["RHEA%3A78551","Li(+)(in) = Li(+)(out)"],["RHEA%3A72415","Li(+)(in) + Na(+)(out) = Li(+)(out) + Na(+)(in)"],["RHEA%3A72407","Li(+)(out) + H(+)(in) = Li(+)(in) + H(+)(out)"]]},{"id":"GO:0043448","l":"alkane catabolic process","na":7,"nb":2,"a":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Nitratireductor_Gordonia_Z123_LDPE_Degradation_SynCom.html","Nitratireductor-Gordonia Z123 LDPE-Degradation SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"]],"b":[["GO%3A0043448","alkane catabolic process"],["GO%3A0046188","methane catabolic process"]]},{"id":"NCBITaxon:1305","l":"Streptococcus sanguinis","na":2,"nb":7,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["Pfam%3APF09254","FokI, cleavage domain"],["Pfam%3APF02981","FokI, recognition domain, subdomain 1"],["Pfam%3APF02980","FokI, recognition domain, subdomain 2"],["Pfam%3APF07501","G5 domain"],["Pfam%3APF07581","The GLUG motif"],["TED%3AAF-A0A7H8V358-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H8V358-F1-model_v4_TED01"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":2,"nb":7,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["Pfam%3APF19443","DAHL domain"],["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"],["Pfam%3APF03524","Conjugal transfer protein"],["Pfam%3APF27439","Chaperone protein DnaJ C-terminal region"],["Pfam%3APF10907","Protein of unknown function (DUF2749)"],["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":2,"nb":7,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["Pfam%3APF11766","Agglutinin-like protein, N-terminal domain"],["Pfam%3APF16856","Cell division control protein 4 dimerisation domain"],["Pfam%3APF18325","Fatty acid synthase subunit alpha Acyl carrier domain"],["Pfam%3APF18314","Fatty acid synthase type I helical domain"],["Pfam%3APF17828","N-terminal domain in fatty acid synthase subunit beta"],["Pfam%3APF05388","Carboxypeptidase Y pro-peptide"]]},{"id":"CHEBI:16457","l":"S,S-dimethyl-beta-propiothetin","na":2,"nb":6,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["EC%3A2.1.1.269","dimethylsulfoniopropionate demethylase"],["EC%3A4.4.1.3","dimethylpropiothetin dethiomethylase"],["RHEA%3A35467","S,S-dimethyl-beta-propiothetin + (6S)-5,6,7,8-tetrahydrofolate = 3-(methylsulfanyl)propanoate + (6S)-5-methyl-5,6,7,8-tetrahydrofolate + H(+)"],["RHEA%3A19965","S,S-dimethyl-beta-propiothetin = acrylate + dimethyl sulfide + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.15","The Betaine/Carnitine/Choline Transporter (BCCT) Family"]]},{"id":"CHEBI:30772","l":"butyric acid","na":6,"nb":2,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["MCSA%3A900","para-nitrobenzyl esterase"],["proteintraitsmech%3ABIOLIP_BUA","BUA-binding site"]]},{"id":"GO:0009235","l":"cobalamin metabolic process","na":2,"nb":6,"a":[["Soil_Corrinoid_B12_Reservoir_Community.html","Soil Corrinoid Reservoir Microbial Community"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["GO%3A0009236","cobalamin biosynthetic process"],["GO%3A0042366","cobalamin catabolic process"],["GO%3A0009235","cobalamin metabolic process"],["Reactome%3AR-HSA-9759218","Cobalamin (Cbl) metabolism"],["NCBIfam%3ANF021725","methylmalonic aciduria and homocystinuria type D protein"],["Pfam%3APF10229","Methylmalonic aciduria and homocystinuria type D protein"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":2,"nb":6,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]],"b":[["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF03744","6-carboxyhexanoate--CoA ligase"],["PROSITE%3APS00836","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 1"],["PROSITE%3APS00837","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 2"],["TED%3AAF-A0A2S5D092-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5D092-F1-model_v4_TED01"],["TED%3AAF-A0A2S0JW09-F1-model_v4_TED01","TED novel fold AF-A0A2S0JW09-F1-model_v4_TED01"]]},{"id":"NCBITaxon:32049","l":"Picosynechococcus sp. PCC 7002","na":2,"nb":6,"a":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"]],"b":[["Pfam%3APF09367","CpeS-like protein"],["Pfam%3APF06206","CpeT/CpcT family (DUF1001)"],["Pfam%3APF12965","Domain of unknown function (DUF3854)"],["Pfam%3APF19928","Domain of unknown function (DUF6391)"],["Pfam%3APF09366","Protein of unknown function (DUF1997)"],["Pfam%3APF14870","Photosynthesis system II assembly factor YCF48"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":2,"nb":6,"a":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["Pfam%3APF01177","Asp/Glu/Hydantoin racemase"],["Pfam%3APF11339","Protein of unknown function (DUF3141)"],["PROSITE%3APS01303","BCCT family of transporters signature"],["PROSITE%3APS00665","Dihydrodipicolinate synthase signature 1"],["TED%3AAF-A0A2J0YSD4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J0YSD4-F1-model_v4_TED01"],["TED%3AAF-A0A843ZNG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843ZNG8-F1-model_v4_TED01"]]},{"id":"CHEBI:16865","l":"gamma-aminobutyric acid","na":2,"nb":5,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A2.A.42","The Hydroxy/Aromatic Amino Acid Permease (HAAAP) Family"],["TCDB%3A2.A.22","The Neurotransmitter:Sodium Symporter (NSS) Family"],["proteintraitsmech%3ABIOLIP_ABU","ABU-binding site"]]},{"id":"NCBITaxon:3039","l":"Euglena gracilis","na":2,"nb":5,"a":[["Dairy_Wastewater_Algal_Cyanobacterial_Cultivation_Panel.html","Dairy Wastewater Algal-Cyanobacterial Cultivation Panel"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"]],"b":[["Pfam%3APF01333","Apocytochrome F, C-terminal"],["Pfam%3APF16639","Apocytochrome F, N-terminal"],["Pfam%3APF04940","Sensors of blue-light using FAD"],["Pfam%3APF10371","Domain of unknown function"],["PROSITE%3APS00938","Initiation factor 3 signature"]]},{"id":"NCBITaxon:5507","l":"Fusarium oxysporum","na":2,"nb":5,"a":[["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["Pfam%3APF02015","Glycosyl hydrolase family 45"],["PROSITE%3APS01140","Glycosyl hydrolases family 45 active site"],["TED%3AAF-A0A2H3TJY2-F1-model_v4_TED01","TED novel fold AF-A0A2H3TJY2-F1-model_v4_TED01"],["TED%3AAF-A0A420N954-F1-model_v4_TED01","TED novel fold AF-A0A420N954-F1-model_v4_TED01"],["TED%3AAF-A0A420P6J4-F1-model_v4_TED01","TED novel fold AF-A0A420P6J4-F1-model_v4_TED01"]]},{"id":"CHEBI:16995","l":"oxalic acid","na":4,"nb":2,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Wollastonite_Ramichloridium_Talaromyces_Fungal_Consortium.html","Wollastonite Ramichloridium-Talaromyces Fungal Consortium"]],"b":[["TCDB%3A2.A.53","The Sulfate Permease (SulP) Family"],["proteintraitsmech%3ABIOLIP_OXD","OXD-binding site"]]},{"id":"CHEBI:33363","l":"palladium atom","na":2,"nb":4,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_PD_DINUCLEAR","dinuclear palladium site"],["proteintraitsmech%3AMETALPDB_PD_MONONUCLEAR","mononuclear palladium site"],["proteintraitsmech%3AMETALPDB_PD_TETRANUCLEAR","tetranuclear palladium site"],["proteintraitsmech%3AMETALPDB_PD_TRINUCLEAR","trinuclear palladium site"]]},{"id":"GO:0018874","l":"benzoate metabolic process","na":4,"nb":2,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["GO%3A0043639","benzoate catabolic process"],["GO%3A0018874","benzoate metabolic process"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":2,"nb":4,"a":[["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["TED%3AAF-A0A7W3UB61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W3UB61-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F4B3-F1-model_v4_TED01","TED novel fold AF-A0A0D7F4B3-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F6R4-F1-model_v4_TED01","TED novel fold AF-A0A0D7F6R4-F1-model_v4_TED01"],["TED%3AAF-A0A7W3YI15-F1-model_v4_TED02","TED novel fold AF-A0A7W3YI15-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":4,"nb":2,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"],["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["Pfam%3APF22538","Hexaprenyl diphosphate synthase, small subunit"],["PROSITE%3APS01066","Undecaprenyl pyrophosphate synthase family signature"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":4,"nb":2,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]],"b":[["Pfam%3APF02052","Gallidermin"],["Pfam%3APF04604","Type-A lantibiotic"]]},{"id":"NCBITaxon:269797","l":"Methanosarcina barkeri str. Fusaro","na":2,"nb":4,"a":[["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["Pfam%3APF27274","Coenzyme F430 synthetase CfbE, C-terminal domain"],["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"],["Pfam%3APF09505","Dimethylamine methyltransferase (Dimeth_PyL)"],["PROSITE%3APS00507","Nickel-dependent hydrogenases large subunit signature 1"]]},{"id":"NCBITaxon:2822231","l":"Phanerodontia chrysosporium","na":2,"nb":4,"a":[["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"]],"b":[["Pfam%3APF18637","Aldos-2-ulose dehydratase/isomerase (AUDH) Cupin domain"],["Pfam%3APF16010","Cytochrome domain of cellobiose dehydrogenase"],["PROSITE%3APS00623","GMC oxidoreductases signature 1"],["Pfam%3APF22301","Aldos-2-ulose dehydratase, beta-propeller domain"]]},{"id":"NCBITaxon:37919","l":"Rhodococcus opacus","na":4,"nb":2,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"],["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["Pfam%3APF11794","4-hydroxyphenylacetate 3-hydroxylase N terminal"],["Pfam%3APF03241","4-hydroxyphenylacetate 3-hydroxylase C terminal"]]},{"id":"CHEBI:15741","l":"succinic acid","na":3,"nb":2,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_SIN","SIN-binding site"]]},{"id":"CHEBI:15956","l":"biotin","na":3,"nb":2,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15956","requires biotin"],["proteintraitsmech%3ABIOLIP_BTN","BTN-binding site"]]},{"id":"CHEBI:24898","l":"isoleucine","na":2,"nb":3,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["MCSA%3A906","gelatinase A"]]},{"id":"CHEBI:49470","l":"aluminium(3+)","na":2,"nb":3,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Rice_Acid_Soil_Bioinoculant_SynCom.html","Rice Acid Soil Bioinoculant SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["proteintraitsmech%3ABIOLIP_AL","AL-binding site"]]},{"id":"CHEBI:5199","l":"Fusaric acid","na":2,"nb":3,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["TCDB%3A2.A.85","The Aromatic Acid Exporter (ArAE) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.17","The Outer Membrane Factor (OMF) Family"]]},{"id":"CHEBI:58187","l":"alginate","na":2,"nb":3,"a":[["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["EC%3A5.1.3.37","mannuronan 5-epimerase"],["RHEA%3A45572","[(1->4)-beta-D-mannuronosyl](n) = [alginate](n)"],["RHEA%3A15637","[alginate](n) + GDP-alpha-D-mannuronate = [alginate](n+1) + GDP + H(+)"]]},{"id":"GO:0006068","l":"ethanol catabolic process","na":2,"nb":3,"a":[["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["GO%3A0006068","ethanol catabolic process"],["Reactome%3AR-HSA-71384","Ethanol oxidation"],["NCBIfam%3ANF050026","acetaldehyde dehydrogenase ExaC"]]},{"id":"GO:0019385","l":"methanogenesis, from acetate","na":2,"nb":3,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["GO%3A0019385","methanogenesis, from acetate"],["NCBIfam%3ANF014596","carbon monoxide dehydrogenase beta subunit family protein"],["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"]]},{"id":"NCBITaxon:1492","l":"Clostridium butyricum","na":2,"nb":3,"a":[["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["Pfam%3APF00302","Chloramphenicol acetyltransferase"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["PROSITE%3APS00100","Chloramphenicol acetyltransferase active site"]]},{"id":"NCBITaxon:166486","l":"Roseburia intestinalis","na":3,"nb":2,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["TED%3AAF-A0A3R6HE72-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R6HE72-F1-model_v4_TED01"],["TED%3AAF-A0A6L6XJA4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L6XJA4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:239935","l":"Akkermansia muciniphila","na":3,"nb":2,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["TED%3AAF-A0A2N8IJN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N8IJN7-F1-model_v4_TED01"],["TED%3AAF-A0A6N2UM07-F1-model_v4_TED01","TED novel fold AF-A0A6N2UM07-F1-model_v4_TED01"]]},{"id":"NCBITaxon:253","l":"Chryseobacterium indologenes","na":2,"nb":3,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"]],"b":[["PROSITE%3APS00744","Beta-lactamases class B signature 2"],["TED%3AAF-A0A7T8U7T3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T8U7T3-F1-model_v4_TED01"],["TED%3AAF-A0A0N0ZUI2-F1-model_v4_TED01","TED novel fold AF-A0A0N0ZUI2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28108","l":"Alteromonas macleodii","na":2,"nb":3,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["TED%3AAF-A0A6C5N007-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6C5N007-F1-model_v4_TED01"],["TED%3AAF-A0A126Q0V0-F1-model_v4_TED01","TED novel fold AF-A0A126Q0V0-F1-model_v4_TED01"],["TED%3AAF-A0A6T9Y0H6-F1-model_v4_TED01","TED novel fold AF-A0A6T9Y0H6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:33035","l":"Blautia producta","na":3,"nb":2,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["TED%3AAF-A0A2S4GEH6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S4GEH6-F1-model_v4_TED01"],["TED%3AAF-A0A7G5MNY0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G5MNY0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:357809","l":"Lachnoclostridium phytofermentans ISDg","na":2,"nb":3,"a":[["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"]],"b":[["Pfam%3APF09508","Lacto-N-biose phosphorylase N-terminal TIM barrel domain"],["Pfam%3APF17386","Lacto-N-biose phosphorylase C-terminal domain"],["Pfam%3APF17385","Lacto-N-biose phosphorylase central domain"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":3,"nb":2,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["PROSITE%3APS00336","Beta-lactamase class-C active site"],["TED%3AAF-A0A155XQ59-F1-model_v4_TED02","TED novel fold AF-A0A155XQ59-F1-model_v4_TED02"]]},{"id":"NCBITaxon:561879","l":"Bacillus safensis","na":2,"nb":3,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"]],"b":[["Pfam%3APF09221","Bacteriocin class IId cyclical uberolysin-like"],["TED%3AAF-A0A1L6ZPA6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6ZPA6-F1-model_v4_TED01"],["TED%3AAF-A0A1L6ZPC9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6ZPC9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:587753","l":"Pseudomonas chlororaphis","na":3,"nb":2,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["TED%3AAF-A0A8A9Z2C4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A8A9Z2C4-F1-model_v4_TED03"],["TED%3AAF-A0A0A6DEM6-F1-model_v4_TED01","TED novel fold AF-A0A0A6DEM6-F1-model_v4_TED01"]]},{"id":"CHEBI:15930","l":"atrazine","na":2,"nb":2,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["EC%3A3.8.1.8","atrazine chlorohydrolase"],["RHEA%3A11312","atrazine + H2O = hydroxyatrazine + chloride + H(+)"]]},{"id":"CHEBI:16094","l":"thiosulfate(2-)","na":2,"nb":2,"a":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["proteintraitsmech%3ABIOLIP_THJ","THJ-binding site"]]},{"id":"CHEBI:17300","l":"tetrachloroethene","na":2,"nb":2,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["EC%3A1.21.99.5","tetrachloroethene reductive dehalogenase"],["RHEA%3A20353","trichloroethene + chloride + A + H(+) = tetrachloroethene + AH2"]]},{"id":"CHEBI:231672","l":"bis(2-hydroxyethyl) terephthalate","na":2,"nb":2,"a":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["RHEA%3A80759","bis(2-hydroxyethyl) terephthalate + H2O = 4-[(2-hydroxyethoxy)carbonyl]benzoate + ethylene glycol + H(+)"],["proteintraitsmech%3ABIOLIP_C8X","C8X-binding site"]]},{"id":"CHEBI:27518","l":"acetylene","na":2,"nb":2,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"]],"b":[["EC%3A4.2.1.112","acetylene hydratase"],["RHEA%3A17885","acetaldehyde = acetylene + H2O"]]},{"id":"CHEBI:30046","l":"oxidovanadium(2+)","na":2,"nb":2,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["RHEA%3A75007","VO(2+)(out) + H(+)(out) = VO(2+)(in) + H(+)(in)"],["proteintraitsmech%3ABIOLIP_VVO","VVO-binding site"]]},{"id":"CHEBI:30751","l":"formic acid","na":2,"nb":2,"a":[["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["MCSA%3A38","GTP cyclohydrolase I"],["proteintraitsmech%3ABIOLIP_FMT","FMT-binding site"]]},{"id":"CHEBI:47916","l":"flavonoid","na":2,"nb":2,"a":[["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]]},{"id":"CHEBI:48782","l":"cerium(3+)","na":2,"nb":2,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_48782","requires cerium(3+)"],["proteintraitsmech%3ABIOLIP_CE","CE-binding site"]]},{"id":"CHEBI:49701","l":"lanthanum(3+)","na":2,"nb":2,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_49701","requires lanthanum(3+)"],["proteintraitsmech%3ABIOLIP_LA","LA-binding site"]]},{"id":"CHEBI:8005","l":"peptidoglycan","na":2,"nb":2,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.17","The Proton-dependent Oligopeptide Transporter (POT/PTR) Family"]]},{"id":"GO:0005983","l":"starch catabolic process","na":2,"nb":2,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"]],"b":[["GO%3A0005983","starch catabolic process"],["NCBIfam%3ATIGR02103","pullulanase-type alpha-1,6-glucosidase"]]},{"id":"NCBITaxon:145262","l":"Methanothermobacter thermautotrophicus","na":2,"nb":2,"a":[["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]],"b":[["Pfam%3APF12686","Protein of unknown function (DUF3800)"],["PROSITE%3APS00093","N-4 cytosine-specific DNA methylases signature"]]},{"id":"NCBITaxon:2162","l":"Methanobacterium formicicum","na":2,"nb":2,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"]],"b":[["Pfam%3APF04432","Coenzyme F420 hydrogenase/dehydrogenase, beta subunit C terminus"],["Pfam%3APF04422","Coenzyme F420 hydrogenase/dehydrogenase, beta subunit N-term"]]},{"id":"NCBITaxon:2223","l":"Methanothrix soehngenii","na":2,"nb":2,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"],["TED%3AAF-A0A7K4AJW5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K4AJW5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:39152","l":"Methanococcus maripaludis","na":2,"nb":2,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"]],"b":[["Pfam%3APF02571","Precorrin-6x reductase CbiJ/CobK"],["TED%3AAF-A0A7J9PSA9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J9PSA9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:39488","l":"Anaerobutyricum hallii","na":2,"nb":2,"a":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["TED%3AAF-A0A414B1Y3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A414B1Y3-F1-model_v4_TED01"],["TED%3AAF-A0A415G3S7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A415G3S7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:4952","l":"Yarrowia lipolytica","na":2,"nb":2,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Yarrowia_lipolytica_Division_of_Labor_Lipid_Consortium.html","Yarrowia lipolytica Division-of-Labor Lipid Consortium"]],"b":[["TED%3AAF-A0A7H0KE04-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H0KE04-F1-model_v4_TED01"],["TED%3AAF-A0A371C7L0-F1-model_v4_TED02","TED novel fold AF-A0A371C7L0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:84022","l":"Andreesenella acetica","na":2,"nb":2,"a":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"]],"b":[["TED%3AAF-A0A0D8IAM1-F1-model_v4_TED01","TED novel fold AF-A0A0D8IAM1-F1-model_v4_TED01"],["TED%3AAF-A0A0D8IBN9-F1-model_v4_TED02","TED novel fold AF-A0A0D8IBN9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":1,"nb":49554,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["EC%3A1.1.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.1.98.-","With other, known, acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":1,"nb":17470,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["EC%3A1.1.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.16.-.-","Oxidizing metal ions"],["EC%3A1.18.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.7.-","With an iron-sulfur protein as acceptor"]]},{"id":"CHEBI:15378","l":"hydron","na":1,"nb":14383,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.1.10","L-xylulose reductase"],["EC%3A1.1.1.100","3-oxoacyl-[acyl-carrier-protein] reductase"],["EC%3A1.1.1.101","acylglycerone-phosphate reductase"],["EC%3A1.1.1.102","3-dehydrosphinganine reductase"],["EC%3A1.1.1.103","L-threonine 3-dehydrogenase"]]},{"id":"NCBITaxon:7227","l":"Drosophila melanogaster","na":1,"nb":11343,"a":[["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.14.15.-","With reduced iron-sulfur protein as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.17.-","With reduced ascorbate as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.-.-","Acting on paired donors, with incorporation or reduction of molecular oxygen. The oxygen incorporated need not be derived from O2"],["EC%3A1.2.4.-","With a disulfide as acceptor"],["EC%3A1.6.99.-","With other acceptors"]]},{"id":"NCBITaxon:6239","l":"Caenorhabditis elegans","na":1,"nb":9682,"a":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"]],"b":[["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.14.14.-","With reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.17.-","With reduced ascorbate as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.19.-","With oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water"],["EC%3A1.14.99.-","Miscellaneous"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii (strain ATCC 43067 / DSM 2661 / JAL-1 / JCM 10045 / NBRC 100440)","na":1,"nb":5181,"a":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]],"b":[["EC%3A1.12.99.-","With other acceptors"],["EC%3A1.3.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.3.-.-","Acting on the CH-CH group of donors"],["EC%3A1.8.98.-","With other, known, acceptors"],["EC%3A1.97.1.-","Other oxidoreductases"],["EC%3A2.1.2.-","Hydroxymethyl-, formyl- and related transferases"]]},{"id":"GO:0006355","l":"regulation of DNA-templated transcription","na":1,"nb":1131,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["ComplexPortal%3ACPX-2829","ACF chromatin remodeling complex"],["ComplexPortal%3ACPX-2742","ATAC histone acetyltransferase complex"],["ComplexPortal%3ACPX-8344","BRE1 E3 ubiquitin ligase complex"],["ComplexPortal%3ACPX-1830","CCAAT-binding factor complex"],["ComplexPortal%3ACPX-2767","CCAAT-binding factor complex"],["ComplexPortal%3ACPX-2771","CCR4-NOT mRNA deadenylase complex"]]},{"id":"CHEBI:16810","l":"2-oxoglutarate(2-)","na":1,"nb":672,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"]],"b":[["EC%3A1.1.1.286","isocitrate--homoisocitrate dehydrogenase"],["EC%3A1.1.1.399","2-oxoglutarate reductase"],["EC%3A1.1.1.41","isocitrate dehydrogenase (NAD(+))"],["EC%3A1.1.1.42","isocitrate dehydrogenase (NADP(+))"],["EC%3A1.1.5.13","(S)-2-hydroxyglutarate dehydrogenase"],["EC%3A1.1.99.2","L-2-hydroxyglutarate dehydrogenase"]]},{"id":"GO:0006412","l":"translation","na":1,"nb":455,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["GO%3A0002181","cytoplasmic translation"],["GO%3A0032543","mitochondrial translation"],["GO%3A0032544","plastid translation"],["GO%3A0140241","translation at synapse"],["GO%3A0006412","translation"],["Reactome%3AR-HSA-72766","Translation"]]},{"id":"GO:0055085","l":"transmembrane transport","na":1,"nb":439,"a":[["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"]],"b":[["ComplexPortal%3ACPX-271","5-hydroxytryptamine-3A/B receptor complex"],["ComplexPortal%3ACPX-275","5-hydroxytryptamine-3A/B receptor complex"],["ComplexPortal%3ACPX-277","5-hydroxytryptamine-3A/B receptor complex"],["ComplexPortal%3ACPX-276","5-hydroxytryptamine-3A/C receptor complex"],["ComplexPortal%3ACPX-272","5-hydroxytryptamine-3A/D receptor complex"],["ComplexPortal%3ACPX-273","5-hydroxytryptamine-3A/E receptor complex"]]},{"id":"CHEBI:29985","l":"L-glutamate(1-)","na":1,"nb":426,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["EC%3A1.14.11.76","L-glutamate 3(R)-hydroxylase"],["EC%3A1.2.1.88","L-glutamate gamma-semialdehyde dehydrogenase"],["EC%3A1.4.1.13","glutamate synthase (NADPH)"],["EC%3A1.4.1.14","glutamate synthase (NADH)"],["EC%3A1.4.1.2","glutamate dehydrogenase"],["EC%3A1.4.1.3","glutamate dehydrogenase [NAD(P)(+)]"]]},{"id":"GO:0006508","l":"proteolysis","na":1,"nb":393,"a":[["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"]],"b":[["ComplexPortal%3ACPX-6224","Active Protein C complex"],["ComplexPortal%3ACPX-6222","alpha-thrombin complex"],["ComplexPortal%3ACPX-3663","Caspase-8 complex"],["ComplexPortal%3ACPX-975","Caspase-8 complex"],["ComplexPortal%3ACPX-6221","Coagulation factor Va-Xa complex"],["ComplexPortal%3ACPX-279","Coagulation factor VIIa - tissue factor complex"]]},{"id":"GO:0006260","l":"DNA replication","na":1,"nb":311,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["ComplexPortal%3ACPX-6641","ASCC DNA alkylation repair complex"],["ComplexPortal%3ACPX-568","Chromatin assembly factor 1 complex"],["ComplexPortal%3ACPX-2671","CMG helicase complex"],["ComplexPortal%3ACPX-297","CMG helicase complex"],["ComplexPortal%3ACPX-4526","CMG helicase complex"],["ComplexPortal%3ACPX-4541","CMG helicase complex"]]},{"id":"CHEBI:29101","l":"sodium(1+)","na":1,"nb":292,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29101","requires sodium(1+)"],["EC%3A7.2.1.1","NADH:ubiquinone reductase (Na(+)-transporting)"],["EC%3A7.2.1.2","ferredoxin--NAD(+) oxidoreductase (Na(+)-transporting)"],["EC%3A7.2.1.4","tetrahydromethanopterin S-methyltransferase"],["EC%3A7.2.2.1","Na(+)-transporting two-sector ATPase"],["EC%3A7.2.2.13","Na(+)/K(+)-exchanging ATPase"]]},{"id":"GO:0006096","l":"glycolytic process","na":1,"nb":117,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["ComplexPortal%3ACPX-1992","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-2039","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-2040","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-1994","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"],["ComplexPortal%3ACPX-2041","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"],["ComplexPortal%3ACPX-2042","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"]]},{"id":"GO:0042221","l":"response to chemical","na":1,"nb":104,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0070887","cellular response to chemical stimulus"],["GO%3A0036503","ERAD pathway"],["GO%3A1904612","response to 2,3,7,8-tetrachlorodibenzodioxine"],["GO%3A1904610","response to 3,3',4,4',5-pentachlorobiphenyl"],["GO%3A0036275","response to 5-fluorouracil"],["GO%3A0001101","response to acid chemical"]]},{"id":"GO:0009252","l":"peptidoglycan biosynthetic process","na":1,"nb":90,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["GO%3A0009252","peptidoglycan biosynthetic process"],["GO%3A0018104","peptidoglycan-protein cross-linking"],["NCBIfam%3ATIGR00492","alanine racemase"],["NCBIfam%3ANF007061","bifunctional glycosyl transferase/transpeptidase"],["NCBIfam%3ANF006986","bifunctional UDP-N-acetylglucosamine diphosphorylase/glucosamine-1-phosphate N-acetyltransferase GlmU"]]},{"id":"GO:0009306","l":"protein secretion","na":1,"nb":84,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["GO%3A0070162","adiponectin secretion"],["GO%3A0036394","amylase secretion"],["GO%3A0110010","basolateral protein secretion"],["GO%3A0038055","BMP secretion"],["GO%3A0030073","insulin secretion"],["GO%3A1990773","matrix metallopeptidase secretion"]]},{"id":"GO:0006796","l":"phosphate-containing compound metabolic process","na":1,"nb":72,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"]],"b":[["GO%3A0016311","dephosphorylation"],["GO%3A0006796","phosphate-containing compound metabolic process"],["GO%3A0016310","phosphorylation"],["NCBIfam%3ANF053626","ATP-dependent ribose-1-phosphate kinase"],["NCBIfam%3ANF002317","inorganic diphosphatase"],["NCBIfam%3ATIGR02966","phosphate regulon sensor histidine kinase PhoR"]]},{"id":"GO:0048519","l":"negative regulation of biological process","na":1,"nb":72,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["GO%3A1905869","negative regulation of 3'-UTR-mediated mRNA stabilization"],["GO%3A0045759","negative regulation of action potential"],["GO%3A0048519","negative regulation of biological process"],["GO%3A0030712","negative regulation of border follicle cell delamination"],["GO%3A1903780","negative regulation of cardiac conduction"],["GO%3A0048523","negative regulation of cellular process"]]},{"id":"GO:0006631","l":"fatty acid metabolic process","na":1,"nb":71,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["ComplexPortal%3ACPX-6169","Mitochondrial propionyl-CoA carboxylase complex"],["ComplexPortal%3ACPX-1038","PIP2-OAF1 transcription factor complex"],["ComplexPortal%3ACPX-25756","SREBP-SCAP transcription regulator complex"],["GO%3A0006633","fatty acid biosynthetic process"],["GO%3A0009062","fatty acid catabolic process"],["GO%3A0006631","fatty acid metabolic process"]]},{"id":"GO:0006955","l":"immune response","na":1,"nb":69,"a":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"]],"b":[["ComplexPortal%3ACPX-381","Interleukin-12 complex"],["ComplexPortal%3ACPX-387","Interleukin-12 complex"],["ComplexPortal%3ACPX-382","Interleukin-12-receptor ligand complex"],["ComplexPortal%3ACPX-3290","Interleukin-23 complex"],["ComplexPortal%3ACPX-389","Interleukin-23-receptor complex"],["ComplexPortal%3ACPX-383","Interleukin-23 receptor-ligand complex"]]},{"id":"GO:0006814","l":"sodium ion transport","na":1,"nb":67,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"]],"b":[["GO%3A0003096","renal sodium ion transport"],["GO%3A0035725","sodium ion transmembrane transport"],["GO%3A0006814","sodium ion transport"],["NCBIfam%3ANF050096","bicarbonate transporter BicA"],["NCBIfam%3ATIGR02711","cation/acetate symporter ActP"],["NCBIfam%3ANF047943","citrate/sodium symporter CitS"]]},{"id":"GO:0006950","l":"response to stress","na":1,"nb":67,"a":[["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"]],"b":[["GO%3A0033554","cellular response to stress"],["GO%3A0006952","defense response"],["GO%3A0033555","multicellular organismal response to stress"],["GO%3A0003299","muscle hypertrophy in response to stress"],["GO%3A0009271","phage shock"],["GO%3A0034059","response to anoxia"]]},{"id":"GO:0000271","l":"polysaccharide biosynthetic process","na":1,"nb":66,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"]],"b":[["ComplexPortal%3ACPX-417","Glucosidase II complex"],["GO%3A0051072","4,6-pyruvylated galactose residue biosynthetic process"],["GO%3A0042121","alginic acid biosynthetic process"],["GO%3A0035884","arabinan biosynthetic process"],["GO%3A0045227","capsule polysaccharide biosynthetic process"],["GO%3A0070592","cell wall polysaccharide biosynthetic process"]]},{"id":"GO:0044282","l":"small molecule catabolic process","na":1,"nb":63,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"]],"b":[["GO%3A0046164","alcohol catabolic process"],["GO%3A0046395","carboxylic acid catabolic process"],["GO%3A0019341","dibenzo-p-dioxin catabolic process"],["GO%3A0046294","formaldehyde catabolic process"],["GO%3A0046952","ketone body catabolic process"],["GO%3A0042182","ketone catabolic process"]]},{"id":"GO:0071973","l":"bacterial-type flagellum-dependent cell motility","na":1,"nb":60,"a":[["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"]],"b":[["ComplexPortal%3ACPX-4886","DNA-directed RNA polymerase holoenzyme complex, SigmaF variant"],["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["GO%3A0071973","bacterial-type flagellum-dependent cell motility"],["GO%3A0071978","bacterial-type flagellum-dependent swarming motility"]]},{"id":"GO:0019752","l":"carboxylic acid metabolic process","na":1,"nb":59,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"]],"b":[["GO%3A1902056","(25S)-Delta(7)-dafachronate metabolic process"],["GO%3A0006525","arginine metabolic process"],["GO%3A0009072","aromatic amino acid metabolic process"],["GO%3A0018872","arsonoacetate metabolic process"],["GO%3A0120552","branched-chain alpha-keto acid decarboxylation to branched-chain acyl-CoA"],["GO%3A0009081","branched-chain amino acid metabolic process"]]},{"id":"CHEBI:17879","l":"4-hydroxybenzoate","na":1,"nb":57,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["EC%3A1.13.11.41","2,4'-dihydroxyacetophenone dioxygenase"],["EC%3A1.14.13.2","4-hydroxybenzoate 3-monooxygenase"],["EC%3A1.14.13.33","4-hydroxybenzoate 3-monooxygenase [NAD(P)H]"],["EC%3A1.14.13.64","4-hydroxybenzoate 1-hydroxylase"],["EC%3A1.14.14.92","benzoate 4-monooxygenase"],["EC%3A1.14.19.55","4-hydroxybenzoate brominase (decarboxylating)"]]},{"id":"CHEBI:15589","l":"(S)-malate(2-)","na":1,"nb":56,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["EC%3A1.1.1.299","malate dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.1.37","(S)-malate dehydrogenase (NAD(+), oxaloacetate-forming)"],["EC%3A1.1.1.38","malate dehydrogenase (oxaloacetate-decarboxylating)"],["EC%3A1.1.1.39","malate dehydrogenase (decarboxylating)"],["EC%3A1.1.1.40","malate dehydrogenase (oxaloacetate-decarboxylating) (NADP(+))"],["EC%3A1.1.1.82","malate dehydrogenase (NADP(+))"]]},{"id":"NCBITaxon:2","l":"Bacteria","na":56,"nb":1,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2","Bacteria orthologous groups (OrthoDB)"]]},{"id":"GO:0046394","l":"carboxylic acid biosynthetic process","na":1,"nb":55,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["GO%3A0042861","achromobactin biosynthetic process"],["GO%3A1901112","actinorhodin biosynthetic process"],["GO%3A0006523","alanine biosynthetic process"],["GO%3A0019578","aldaric acid biosynthetic process"],["GO%3A0042121","alginic acid biosynthetic process"],["GO%3A0009073","aromatic amino acid biosynthetic process"]]},{"id":"GO:0006094","l":"gluconeogenesis","na":1,"nb":52,"a":[["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"]],"b":[["ComplexPortal%3ACPX-1992","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-2039","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-2040","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-1994","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"],["ComplexPortal%3ACPX-2041","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"],["ComplexPortal%3ACPX-2042","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"]]},{"id":"GO:0006865","l":"amino acid transport","na":1,"nb":52,"a":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"]],"b":[["GO%3A0015800","acidic amino acid transport"],["GO%3A0043090","amino acid import"],["GO%3A0051933","amino acid neurotransmitter reuptake"],["GO%3A0003333","amino acid transmembrane transport"],["GO%3A0006865","amino acid transport"],["GO%3A0015802","basic amino acid transport"]]},{"id":"GO:0009117","l":"nucleotide metabolic process","na":1,"nb":50,"a":[["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"]],"b":[["GO%3A0009394","2'-deoxyribonucleotide metabolic process"],["GO%3A0009187","cyclic nucleotide metabolic process"],["GO%3A0015959","diadenosine polyphosphate metabolic process"],["GO%3A0072387","flavin adenine dinucleotide metabolic process"],["GO%3A0046496","nicotinamide nucleotide metabolic process"],["GO%3A0009165","nucleotide biosynthetic process"]]},{"id":"GO:0044550","l":"secondary metabolite biosynthetic process","na":1,"nb":46,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["GO%3A1900581","(17Z)-protosta-17(20),24-dien-3beta-ol biosynthetic process"],["GO%3A0009821","alkaloid biosynthetic process"],["GO%3A1900587","arugosin biosynthetic process"],["GO%3A0036184","asperthecin biosynthetic process"],["GO%3A0062032","cichorine biosynthetic process"],["GO%3A1900799","cordyol C biosynthetic process"]]},{"id":"CHEBI:30212","l":"photon","na":1,"nb":45,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["EC%3A1.10.3.9","photosystem II"],["EC%3A1.13.12.13","Oplophorus-luciferin 2-monooxygenase"],["EC%3A1.13.12.18","dinoflagellate luciferase"],["EC%3A1.13.12.5","Renilla-type luciferase"],["EC%3A1.13.12.6","Cypridina-luciferin 2-monooxygenase"],["EC%3A1.13.12.7","firefly luciferase"]]},{"id":"CHEBI:506227","l":"N-acetyl-D-glucosamine","na":1,"nb":44,"a":[["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["EC%3A1.1.3.29","N-acylhexosamine oxidase"],["EC%3A2.3.1.3","glucosamine N-acetyltransferase"],["EC%3A2.4.1.211","1,3-beta-galactosyl-N-acetylhexosamine phosphorylase"],["EC%3A2.4.1.280","N,N'-diacetylchitobiose phosphorylase"],["EC%3A2.4.1.320","1,4-beta-mannosyl-N-acetylglucosamine phosphorylase"],["EC%3A2.4.1.90","N-acetyllactosamine synthase"]]},{"id":"GO:0042178","l":"xenobiotic catabolic process","na":1,"nb":42,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["GO%3A0046230","2-aminobenzenesulfonate catabolic process"],["GO%3A0046304","2-nitropropane catabolic process"],["GO%3A0019610","3-hydroxyphenylacetate catabolic process"],["GO%3A0019380","3-phenylpropionate catabolic process"],["GO%3A0046196","4-nitrophenol catabolic process"],["GO%3A0019639","6-hydroxycineole catabolic process"]]},{"id":"GO:0030198","l":"extracellular matrix organization","na":1,"nb":41,"a":[["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]],"b":[["ComplexPortal%3ACPX-1801","Integrin alpha2-beta1 complex"],["ComplexPortal%3ACPX-3115","Integrin alpha2-beta1 complex"],["ComplexPortal%3ACPX-4423","Matrilin-1 complex"],["ComplexPortal%3ACPX-4463","Matrilin-1 complex"],["ComplexPortal%3ACPX-4521","Matrilin-1 complex"],["ComplexPortal%3ACPX-4503","Matrilin-1 - Matrilin-3 complex"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima (strain ATCC 43589 / DSM 3109 / JCM 10099 / NBRC 100826 / MSB8)","na":1,"nb":39,"a":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]],"b":[["Pfam%3APF02829","3H domain"],["Pfam%3APF13175","AAA ATPase domain"],["Pfam%3APF01958","Aspartate dehydrogenase, C-terminal"],["Pfam%3APF05448","Acetyl xylan esterase (AXE1)"],["Pfam%3APF04509","CheC-like family"],["Pfam%3APF13690","Chemotaxis phosphatase CheX"]]},{"id":"GO:0006954","l":"inflammatory response","na":1,"nb":38,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["ComplexPortal%3ACPX-2862","Caspase-7 complex"],["ComplexPortal%3ACPX-3947","Caspase-7 complex"],["ComplexPortal%3ACPX-363","Heparanase complex"],["ComplexPortal%3ACPX-10322","IL33 receptor-ligand complex"],["ComplexPortal%3ACPX-9301","Interleukin-17A complex"],["ComplexPortal%3ACPX-10317","Interleukin-26 complex"]]},{"id":"GO:0007267","l":"cell-cell signaling","na":1,"nb":38,"a":[["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["ComplexPortal%3ACPX-10317","Interleukin-26 complex"],["GO%3A0035425","autocrine signaling"],["GO%3A0061939","c-di-GMP signaling"],["GO%3A0007267","cell-cell signaling"],["GO%3A0045168","cell-cell signaling involved in cell fate commitment"],["GO%3A0060764","cell-cell signaling involved in mammary gland development"]]},{"id":"GO:0008283","l":"cell population proliferation","na":1,"nb":37,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["ComplexPortal%3ACPX-2799","CRL4-DCAF4 E3 ubiquitin ligase complex, CUL4A variant"],["ComplexPortal%3ACPX-2859","CRL4-DCAF4 E3 ubiquitin ligase complex, CUL4B variant"],["GO%3A0008283","cell population proliferation"],["GO%3A0071838","cell proliferation in bone marrow"],["GO%3A0035736","cell proliferation involved in compound eye morphogenesis"],["GO%3A0060722","cell proliferation involved in embryonic placenta development"]]},{"id":"GO:0009231","l":"riboflavin biosynthetic process","na":1,"nb":36,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["GO%3A0009231","riboflavin biosynthetic process"],["NCBIfam%3ANF000814","6,7-dimethyl-8-ribityllumazine synthase"],["NCBIfam%3ANF009084","6,7-dimethyl-8-ribityllumazine synthase"],["NCBIfam%3ANF013081","6,7-dimethyl-8-ribityllumazine synthase"],["NCBIfam%3ATIGR00114","6,7-dimethyl-8-ribityllumazine synthase"],["NCBIfam%3ANF006803","bifunctional 3,4-dihydroxy-2-butanone-4-phosphate synthase/GTP cyclohydrolase II"]]},{"id":"GO:1900376","l":"regulation of secondary metabolite biosynthetic process","na":1,"nb":36,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"]],"b":[["GO%3A1900377","negative regulation of secondary metabolite biosynthetic process"],["GO%3A1900378","positive regulation of secondary metabolite biosynthetic process"],["GO%3A1900177","regulation of aflatoxin biosynthetic process"],["GO%3A1900626","regulation of arugosin biosynthetic process"],["GO%3A1900379","regulation of asperthecin biosynthetic process"],["GO%3A1900861","regulation of cordyol C biosynthetic process"]]},{"id":"NCBITaxon:1898203","l":"Lachnospiraceae bacterium","na":1,"nb":35,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]],"b":[["TED%3AAF-A0A2G3Q064-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G3Q064-F1-model_v4_TED01"],["TED%3AAF-A0A316PVU3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A316PVU3-F1-model_v4_TED02"],["TED%3AAF-A0A349YHB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349YHB4-F1-model_v4_TED01"],["TED%3AAF-A0A349ZVK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349ZVK2-F1-model_v4_TED01"],["TED%3AAF-A0A354ID29-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A354ID29-F1-model_v4_TED04"],["TED%3AAF-A0A355NJL5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A355NJL5-F1-model_v4_TED02"]]},{"id":"CHEBI:17855","l":"triglyceride","na":1,"nb":34,"a":[["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["EC%3A2.3.1.158","phospholipid:diacylglycerol acyltransferase"],["EC%3A2.3.1.77","triacylglycerol--sterol O-acyltransferase"],["EC%3A3.1.1.3","triacylglycerol lipase"],["EC%3A3.1.1.34","lipoprotein lipase"],["EC%3A3.1.1.79","hormone-sensitive lipase"],["RHEA%3A77987","9-hydroxy-octadecanoate + a triacylglycerol = 9-(acyloxy)-octadecanoate + a 1,3-diacylglycerol"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":1,"nb":32,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["Pfam%3APF25848","Rodlin protein"],["Pfam%3APF13420","Acetyltransferase (GNAT) domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF26381","BREX System ATPase PglY protein 5th domain"],["Pfam%3APF26382","BREX System ATPase PglY protein 6th domain"]]},{"id":"GO:0044780","l":"bacterial-type flagellum assembly","na":1,"nb":30,"a":[["SynCom_MetG2_Rhizobacteria_Sugarcane_Stress_Resilience.html","SynCom MetG2 Rhizobacteria Sugarcane Stress Resilience"]],"b":[["ComplexPortal%3ACPX-4886","DNA-directed RNA polymerase holoenzyme complex, SigmaF variant"],["GO%3A0044780","bacterial-type flagellum assembly"],["NCBIfam%3ANF007836","flagella biosynthesis regulatory protein FliT"],["NCBIfam%3ANF006281","flagella length regulator FlaG"],["NCBIfam%3ANF047373","flagellar assembly lytic transglycosylase"],["NCBIfam%3ATIGR02541","flagellar assembly peptidoglycan hydrolase FlgJ"]]},{"id":"GO:0046718","l":"symbiont entry into host cell","na":1,"nb":30,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["ComplexPortal%3ACPX-5768","MERS-CoV Spike - human DPP4 receptor complex"],["ComplexPortal%3ACPX-5769","MERS-CoV Spike - human DPP4 receptor complex"],["ComplexPortal%3ACPX-5683","SARS-CoV-2 Spike - human ACE2 receptor complex"],["ComplexPortal%3ACPX-6761","SARS-CoV-2 Spike - human CLEC4M lectin complex"],["ComplexPortal%3ACPX-5695","SARS-CoV Spike - human ACE2 receptor complex"],["ComplexPortal%3ACPX-5696","SARS-CoV Spike - human CLEC4M lectin complex"]]},{"id":"GO:0006526","l":"L-arginine biosynthetic process","na":1,"nb":28,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["ComplexPortal%3ACPX-579","Carbamoyl-phosphate synthase arginine-specific"],["ComplexPortal%3ACPX-1937","Carbamoyl phosphate synthetase complex"],["ComplexPortal%3ACPX-1151","N-acetylglutamate synthase NAGS/NAGK complex"],["GO%3A0006526","L-arginine biosynthetic process"],["NCBIfam%3ANF003474","acetylornithine deacetylase"],["NCBIfam%3ATIGR01892","acetylornithine deacetylase"]]},{"id":"CHEBI:16235","l":"guanine","na":1,"nb":27,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["EC%3A2.4.2.1","purine-nucleoside phosphorylase"],["EC%3A2.4.2.15","guanosine phosphorylase"],["EC%3A2.4.2.29","tRNA-guanosine(34) preQ1 transglycosylase"],["EC%3A2.4.2.48","tRNA-guanine(15) transglycosylase"],["EC%3A2.4.2.64","tRNA-guanosine(34) queuine transglycosylase"],["EC%3A2.4.2.8","hypoxanthine phosphoribosyltransferase"]]},{"id":"CHEBI:17234","l":"glucose","na":26,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:16007","l":"methanethiol","na":1,"nb":25,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["EC%3A1.14.13.131","dissimilatory dimethyl-sulfide monooxygenase"],["EC%3A1.8.1.21","dissimilatory dimethyldisulfide reductase"],["EC%3A1.8.3.4","methanethiol oxidase"],["EC%3A2.1.1.251","methylated-thiol--coenzyme M methyltransferase"],["EC%3A2.1.1.334","methanethiol S-methyltransferase"],["EC%3A2.5.1.49","O-acetylhomoserine aminocarboxypropyltransferase"]]},{"id":"CHEBI:18346","l":"vanillin","na":1,"nb":25,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"]],"b":[["EC%3A1.1.3.38","vanillyl-alcohol oxidase"],["EC%3A1.11.1.16","versatile peroxidase"],["EC%3A1.13.11.43","lignostilbene alphabeta-dioxygenase"],["EC%3A1.13.11.88","isoeugenol monooxygenase"],["EC%3A1.13.11.94","4-vinylguaiacol dioxygenase"],["EC%3A1.2.1.67","vanillin dehydrogenase"]]},{"id":"NCBITaxon:226186","l":"Bacteroides thetaiotaomicron (strain ATCC 29148 / DSM 2079 / JCM 5827 / CCUG 10774 / NCTC 10582 / VPI-5482 / E50)","na":1,"nb":25,"a":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"]],"b":[["Pfam%3APF06439","3-keto-alpha-glucoside-1,2-lyase-like domain"],["Pfam%3APF13444","Acetyltransferase (GNAT) domain"],["Pfam%3APF19576","Acyltransferase"],["Pfam%3APF23764","GLAA-B beta-barrel domain II"],["Pfam%3APF13715","CarboxypepD_reg-like domain"],["Pfam%3APF26120","SusF, first starch specific CBM"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":1,"nb":25,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["Pfam%3APF13372","Alginate export"],["Pfam%3APF25965","ALG44 beta-barrel domain"],["Pfam%3APF25964","ALG44, barrel-sandwich hybrid domain"],["Pfam%3APF16844","Dinitrogenase iron-molybdenum cofactor, N-terminal"],["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"]]},{"id":"GO:0002221","l":"pattern recognition receptor signaling pathway","na":1,"nb":24,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["ComplexPortal%3ACPX-4242","Caspase-1 complex"],["ComplexPortal%3ACPX-952","Caspase-1 complex"],["ComplexPortal%3ACPX-4144","NLRC4 inflammasome"],["ComplexPortal%3ACPX-4082","NLRP1 inflammasome"],["ComplexPortal%3ACPX-4947","NLRP1 inflammasome, variant 1"],["ComplexPortal%3ACPX-4948","NLRP1 inflammasome, variant 2"]]},{"id":"GO:0018958","l":"phenol-containing compound metabolic process","na":1,"nb":24,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["GO%3A0031147","1-(3,5-dichloro-2,6-dihydroxy-4-methoxyphenyl)hexan-1-one metabolic process"],["GO%3A0018921","3-hydroxybenzyl alcohol metabolic process"],["GO%3A1901022","4-hydroxyphenylacetate metabolic process"],["GO%3A0018960","4-nitrophenol metabolic process"],["GO%3A0042215","anaerobic phenol-containing compound metabolic process"],["GO%3A0036182","asperthecin metabolic process"]]},{"id":"GO:0006221","l":"pyrimidine nucleotide biosynthetic process","na":1,"nb":22,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["ComplexPortal%3ACPX-579","Carbamoyl-phosphate synthase arginine-specific"],["GO%3A0009221","pyrimidine deoxyribonucleotide biosynthetic process"],["GO%3A0006221","pyrimidine nucleotide biosynthetic process"],["GO%3A0032262","pyrimidine nucleotide salvage"],["GO%3A0009220","pyrimidine ribonucleotide biosynthetic process"],["NCBIfam%3ANF018158","CTP synthase N-terminus"]]},{"id":"CHEBI:17437","l":"dimethyl sulfide","na":1,"nb":21,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["EC%3A1.14.13.131","dissimilatory dimethyl-sulfide monooxygenase"],["EC%3A1.14.13.245","assimilatory dimethylsulfide S-monooxygenase"],["EC%3A1.8.2.4","dimethyl sulfide:cytochrome c2 reductase"],["EC%3A1.8.5.3","respiratory dimethylsulfoxide reductase"],["EC%3A2.1.1.19","trimethylsulfonium--tetrahydrofolate N-methyltransferase"],["EC%3A2.1.1.334","methanethiol S-methyltransferase"]]},{"id":"GO:0006817","l":"phosphate ion transport","na":1,"nb":21,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["GO%3A0035435","phosphate ion transmembrane transport"],["GO%3A0006817","phosphate ion transport"],["GO%3A0044341","sodium-dependent phosphate transport"],["NCBIfam%3ANF033774","inorganic phosphate transporter PitA"],["NCBIfam%3ATIGR00972","phosphate ABC transporter ATP-binding protein PstB"],["NCBIfam%3ANF023916","phosphate ABC transporter permease family protein"]]},{"id":"CHEBI:16411","l":"indole-3-acetic acid","na":20,"nb":1,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_IAC","IAC-binding site"]]},{"id":"CHEBI:2181","l":"L-fucopyranose","na":1,"nb":20,"a":[["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"]],"b":[["EC%3A1.1.1.122","D-threo-aldose 1-dehydrogenase"],["EC%3A3.2.1.51","alpha-L-fucosidase"],["EC%3A3.2.1.63","1,2-alpha-L-fucosidase"],["EC%3A5.3.1.25","L-fucose isomerase"],["RHEA%3A49308","a neolactoside IV(2)-alpha-Fuc-nLc4Cer(d18:0) + H2O = a neolactoside nLc4Cer(d18:0) + L-fucose"],["RHEA%3A48224","a neolactoside IV(2)-alpha-Fuc-nLc4Cer(d18:1(4E)) + H2O = a neolactoside nLc4Cer(d18:1(4E)) + L-fucose"]]},{"id":"GO:0052031","l":"symbiont-mediated perturbation of host defense response","na":1,"nb":20,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["GO%3A0140415","effector-mediated perturbation of host defenses by symbiont"],["GO%3A0140424","symbiont-mediated activation of blood coagulation, intrinsic pathway"],["GO%3A0039587","symbiont-mediated-mediated suppression of host tetherin activity"],["GO%3A0052084","symbiont-mediated modulation of host ethylene-mediated defense response"],["GO%3A0052031","symbiont-mediated perturbation of host defense response"],["GO%3A0052553","symbiont-mediated perturbation of host immune response"]]},{"id":"CHEBI:18022","l":"thiocyanate","na":1,"nb":19,"a":[["Thiocyanate_Afipia_Thiobacillus_Bioreactor_Community.html","Thiocyanate-Degrading Afipia and Thiobacillus Bioreactor Community"]],"b":[["EC%3A1.8.2.7","thiocyanate desulfurase"],["EC%3A2.1.1.n4","thiocyanate methyltransferase"],["EC%3A2.8.1.1","thiosulfate sulfurtransferase"],["EC%3A3.5.5.8","thiocyanate hydrolase"],["RHEA%3A63880","thiocyanate + 2 Fe(III)-[cytochrome c] + H2O = cyanate + sulfur + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A21464","thiocyanate + H2O + 2 H(+) = carbonyl sulfide + NH4(+)"]]},{"id":"GO:0019319","l":"hexose biosynthetic process","na":1,"nb":19,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["GO%3A0019315","D-allose biosynthetic process"],["GO%3A0046370","fructose biosynthetic process"],["GO%3A0042353","fucose biosynthetic process"],["GO%3A0046369","galactose biosynthetic process"],["GO%3A0006094","gluconeogenesis"],["GO%3A0019319","hexose biosynthetic process"]]},{"id":"CHEBI:16838","l":"polyphosphate","na":1,"nb":18,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"]],"b":[["EC%3A2.7.1.63","polyphosphate--glucose phosphotransferase"],["EC%3A2.7.4.1","ATP-polyphosphate phosphotransferase"],["EC%3A2.7.4.17","3-phosphoglyceroyl-phosphate--polyphosphate phosphotransferase"],["EC%3A2.7.4.20","dolichyl-diphosphate--polyphosphate phosphotransferase"],["EC%3A2.7.4.33","AMP-polyphosphate phosphotransferase"],["EC%3A2.7.4.34","GDP-polyphosphate phosphotransferase"]]},{"id":"NCBITaxon:2697049","l":"Severe acute respiratory syndrome coronavirus 2","na":1,"nb":18,"a":[["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"]],"b":[["IDPO%3A0000002","disorder"],["IDPO%3A0000033","flexible linker"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000041","glycosylation display site"],["IDPO%3A0000048","limited proteolysis display site"],["IDPO%3A0000037","molecular recognition display site"]]},{"id":"CHEBI:16881","l":"1H-indole","na":1,"nb":17,"a":[["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"]],"b":[["EC%3A1.13.11.17","indole 2,3-dioxygenase"],["EC%3A1.14.14.153","indole-2-monooxygenase"],["EC%3A4.1.1.92","indole-3-carboxylate decarboxylase"],["EC%3A4.1.2.8","indole-3-glycerol-phosphate lyase"],["EC%3A4.1.99.1","tryptophanase"],["EC%3A4.2.1.122","tryptophan synthase (indole-salvaging)"]]},{"id":"CHEBI:17120","l":"hexanoate","na":1,"nb":17,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"]],"b":[["EC%3A3.5.1.39","alkylamidase"],["RHEA%3A53496","1-hexanoyl-2-acyl-sn-glycero-3-phosphocholine + H2O = hexanoate + a 2-acyl-sn-glycero-3-phosphocholine + H(+)"],["RHEA%3A54464","1-octadecanoyl-2-hexanoyl-sn-glycero-3-phosphocholine + H2O = hexanoate + 1-octadecanoyl-sn-glycero-3-phosphocholine + H(+)"],["RHEA%3A47352","a hexanoate ester + H2O = an aliphatic alcohol + hexanoate + H(+)"],["RHEA%3A79351","hexanal + 2 Fe(III)-[cytochrome c] + H2O = hexanoate + 2 Fe(II)-[cytochrome c] + 3 H(+)"],["RHEA%3A67276","hexanal + NAD(+) + H2O = hexanoate + NADH + 2 H(+)"]]},{"id":"GO:0015940","l":"pantothenate biosynthetic process","na":1,"nb":17,"a":[["Variovorax_Cryptococcus_Vitamin_Mutualism_Microcosm.html","Variovorax-Cryptococcus Vitamin Cross-Feeding Microcosm"]],"b":[["GO%3A0015940","pantothenate biosynthetic process"],["NCBIfam%3ANF005087","2-dehydropantoate 2-reductase"],["NCBIfam%3ANF005092","2-dehydropantoate 2-reductase"],["NCBIfam%3ANF005093","2-dehydropantoate 2-reductase"],["NCBIfam%3ANF005094","2-dehydropantoate 2-reductase"],["NCBIfam%3ANF006083","2-dehydropantoate 2-reductase"]]},{"id":"GO:0006090","l":"pyruvate metabolic process","na":1,"nb":16,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"]],"b":[["GO%3A0061678","Entner-Doudoroff pathway"],["GO%3A0061718","glucose catabolic process to pyruvate"],["GO%3A0006096","glycolytic process"],["GO%3A0033508","L-glutamate fermentation"],["GO%3A0019617","protocatechuate catabolic process, meta-cleavage"],["GO%3A0042866","pyruvate biosynthetic process"]]},{"id":"GO:0006527","l":"L-arginine catabolic process","na":1,"nb":16,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["GO%3A0006527","L-arginine catabolic process"],["NCBIfam%3ATIGR01273","arginine decarboxylase"],["NCBIfam%3ANF002381","arginine deiminase"],["NCBIfam%3ATIGR01078","arginine deiminase"],["NCBIfam%3ANF007770","arginine N-succinyltransferase"],["NCBIfam%3ATIGR03244","arginine N-succinyltransferase"]]},{"id":"NCBITaxon:3847","l":"Glycine max","na":1,"nb":16,"a":[["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["Pfam%3APF02095","Extensin-like protein"],["Pfam%3APF00477","Small hydrophilic plant seed protein"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF08027","Albumin I chain b"],["Pfam%3APF10539","Development and cell death domain"],["Pfam%3APF03386","Early nodulin 93 ENOD93 protein"]]},{"id":"CHEBI:36080","l":"protein","na":1,"nb":15,"a":[["Wollastonite_Ramichloridium_Talaromyces_Fungal_Consortium.html","Wollastonite Ramichloridium-Talaromyces Fungal Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A3.A.16","The Endoplasmic Reticular Retrotranslocon (ER-RT) Family"],["TCDB%3A3.A.27","The Endoplasmic Reticulum Membrane Protein Insertion Complex (EMC) Family"],["TCDB%3A9.A.57","The Extended-Synaptotagmin (E-Syt) Family"],["TCDB%3A3.A.13","The Filamentous Phage Exporter (FPhE) Family"],["TCDB%3A9.A.37","The Nuclear Import Tax Protein (Tax) Family"]]},{"id":"GO:0044010","l":"single-species biofilm formation","na":1,"nb":15,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"]],"b":[["ComplexPortal%3ACPX-4063","ChpBS toxin-antitoxin complex"],["ComplexPortal%3ACPX-4743","Curli secretion complex"],["ComplexPortal%3ACPX-1079","DinJ-YafQ toxin-antitoxin complex"],["ComplexPortal%3ACPX-3296","Fucose-binding lectin II complex"],["ComplexPortal%3ACPX-1086","MazEF toxin-antitoxin complex"],["ComplexPortal%3ACPX-1084","MqsRA toxin-antitoxin complex"]]},{"id":"GO:0051453","l":"regulation of intracellular pH","na":1,"nb":15,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["ComplexPortal%3ACPX-3090","Glutathione-regulated potassium-efflux system KefB-KefG complex"],["ComplexPortal%3ACPX-2543","Glutathione-regulated potassium-efflux system KefC-KefF complex"],["ComplexPortal%3ACPX-26449","Sodium/proton exchanger complex, NHE1-CHP1 variant"],["ComplexPortal%3ACPX-26462","Sodium/proton exchanger complex, NHE1-CHP2 variant"],["ComplexPortal%3ACPX-26464","Sodium/proton exchanger complex, NHE1-CHP3 variant"],["ComplexPortal%3ACPX-26469","Sodium/proton exchanger complex, NHE2-CHP1 variant"]]},{"id":"NCBITaxon:2157","l":"Archaea","na":15,"nb":1,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2157","Archaea orthologous groups (OrthoDB)"]]},{"id":"GO:0009607","l":"response to biotic stimulus","na":1,"nb":14,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["GO%3A0071216","cellular response to biotic stimulus"],["GO%3A0009595","detection of biotic stimulus"],["GO%3A0036180","filamentous growth of a population of unicellular organisms in response to biotic stimulus"],["GO%3A0009607","response to biotic stimulus"],["GO%3A0043207","response to external biotic stimulus"],["GO%3A1990840","response to lectin"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":1,"nb":14,"a":[["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"]],"b":[["Pfam%3APF03703","Bacterial PH domain"],["Pfam%3APF01322","Cytochrome C'"],["Pfam%3APF03139","Vanadium/alternative nitrogenase delta subunit"],["Pfam%3APF09527","Putative F0F1-ATPase subunit Ca2+/Mg2+ transporter"],["Pfam%3APF03270","Protein of unknown function, DUF269"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":1,"nb":14,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF02224","Cytidylate kinase"],["Pfam%3APF03319","Ethanolamine utilisation protein EutN/carboxysome"],["Pfam%3APF22019","alpha-1,4-glucan branching enzyme GlgB, N-terminal domain"],["Pfam%3APF21714","Circadian clock protein KaiA, N-terminal domain"],["Pfam%3APF07688","KaiA C-terminal domain"]]},{"id":"CHEBI:15428","l":"glycine","na":1,"nb":13,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["MCSA%3A718","caspase-1"],["MCSA%3A599","dipeptidase E"],["MCSA%3A906","gelatinase A"],["MCSA%3A762","glycine C-acetyltransferase"],["MCSA%3A746","L-peptidase"],["MCSA%3A477","picornain 3C"]]},{"id":"GO:0019076","l":"viral release from host cell","na":1,"nb":13,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0046753","non-lytic viral release"],["GO%3A0044659","viral release from host cell by cytolysis"],["GO%3A0019076","viral release from host cell"],["Reactome%3AR-HSA-168298","Release"],["NCBIfam%3ANF037577","Rz1-like spanin outer membrane subunit"],["NCBIfam%3ANF012767","Vpu"]]},{"id":"GO:2000145","l":"regulation of cell motility","na":1,"nb":13,"a":[["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["GO%3A2000146","negative regulation of cell motility"],["GO%3A2000147","positive regulation of cell motility"],["GO%3A1905416","regulation of amoeboid sperm motility"],["GO%3A1902021","regulation of bacterial-type flagellum-dependent cell motility"],["GO%3A0030334","regulation of cell migration"],["GO%3A2000145","regulation of cell motility"]]},{"id":"NCBITaxon:165179","l":"Segatella copri","na":1,"nb":13,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["TED%3AAF-A0A3R6DW71-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3R6DW71-F1-model_v4_TED02"],["TED%3AAF-A0A3R6EGS2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R6EGS2-F1-model_v4_TED01"],["TED%3AAF-A0A5Q5FTM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Q5FTM4-F1-model_v4_TED01"],["TED%3AAF-A0A3R5WNG5-F1-model_v4_TED02","TED novel fold AF-A0A3R5WNG5-F1-model_v4_TED02"],["TED%3AAF-A0A3R5YKW9-F1-model_v4_TED01","TED novel fold AF-A0A3R5YKW9-F1-model_v4_TED01"],["TED%3AAF-A0A3R6FRY2-F1-model_v4_TED01","TED novel fold AF-A0A3R6FRY2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:239","l":"Flavobacterium sp.","na":1,"nb":13,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["Pfam%3APF21331","Isoamylase, C-terminal"],["TED%3AAF-A0A2E4PC55-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E4PC55-F1-model_v4_TED02"],["TED%3AAF-A0A2E4PGC5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4PGC5-F1-model_v4_TED01"],["TED%3AAF-A0A2E4PMB7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E4PMB7-F1-model_v4_TED02"],["TED%3AAF-A0A355BEV2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A355BEV2-F1-model_v4_TED02"],["TED%3AAF-A0A519QLA6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A519QLA6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:267377","l":"Methanococcus maripaludis (strain DSM 14266 / JCM 13030 / NBRC 101832 / S2 / LL)","na":1,"nb":13,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"]],"b":[["Pfam%3APF09171","N-glycosylase/DNA lyase"],["Pfam%3APF06847","Archaeal Peptidase A24 C-terminus Type II"],["Pfam%3APF06819","Archaeal Peptidase A24 C-terminal Domain"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF26558","3-dehydroquinate synthase II C-terminal domain"],["Pfam%3APF01959","3-dehydroquinate synthase II N-terminal domain"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":13,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["Pfam%3APF07832","Cfr10I/Bse634I restriction endonuclease"],["Pfam%3APF22348","Colicin-A N-terminal domain"],["Pfam%3APF01024","Colicin pore forming domain"],["Pfam%3APF18427","DD-reactivating factor swiveling domain"],["Pfam%3APF02286","Dehydratase large subunit"],["Pfam%3APF02288","Dehydratase medium subunit"]]},{"id":"CHEBI:16136","l":"hydrogen sulfide","na":12,"nb":1,"a":[["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["MCSA%3A398","sulfite reductase (NADPH)"]]},{"id":"CHEBI:16188","l":"octan-1-ol","na":1,"nb":12,"a":[["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["EC%3A1.1.1.73","octanol dehydrogenase"],["EC%3A1.14.15.3","alkane 1-monooxygenase"],["RHEA%3A79323","octan-1-ol + 2 Fe(III)-[cytochrome c] = octanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A64628","octan-1-ol + acetyl-CoA = octyl acetate + CoA"],["RHEA%3A64852","octan-1-ol + benzoyl-CoA = octyl benzoate + CoA"],["RHEA%3A44064","octan-1-ol + hexadecanoyl-CoA = octyl hexadecanoate + CoA"]]},{"id":"GO:0043419","l":"urea catabolic process","na":1,"nb":12,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"]],"b":[["ComplexPortal%3ACPX-1296","Urease activation complex"],["GO%3A0043419","urea catabolic process"],["NCBIfam%3ANF010592","urease subunit alpha"],["NCBIfam%3ANF009682","urease subunit beta"],["NCBIfam%3ANF010591","urease subunit beta"],["NCBIfam%3ANF009712","urease subunit gamma"]]},{"id":"GO:0061687","l":"detoxification of inorganic compound","na":1,"nb":12,"a":[["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["GO%3A0140114","cellular detoxification of fluoride"],["GO%3A0140961","cellular detoxification of metal ion"],["GO%3A0140982","detoxification of aluminum ion"],["GO%3A0071585","detoxification of cadmium ion"],["GO%3A0010299","detoxification of cobalt ion"],["GO%3A0010273","detoxification of copper ion"]]},{"id":"CHEBI:16918","l":"gallate","na":1,"nb":11,"a":[["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["EC%3A1.13.11.57","gallate dioxygenase"],["EC%3A2.1.1.341","vanillate/3-O-methylgallate O-demethylase"],["EC%3A2.4.1.136","gallate 1-beta-glucosyltransferase"],["EC%3A3.1.1.20","tannase"],["EC%3A4.1.1.59","gallate decarboxylase"],["RHEA%3A12749","3,4,5-trihydroxybenzoate + H(+) = 1,2,3-trihydroxybenzene + CO2"]]},{"id":"CHEBI:17847","l":"p-cresol","na":1,"nb":11,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["EC%3A1.14.13.236","toluene 4-monooxygenase"],["EC%3A1.17.9.1","4-methylphenol dehydrogenase (hydroxylating)"],["EC%3A4.1.1.83","4-hydroxyphenylacetate decarboxylase"],["EC%3A4.1.99.19","2-iminoacetate synthase"],["RHEA%3A22732","4-hydroxyphenylacetate + H(+) = 4-methylphenol + CO2"],["RHEA%3A56976","4-methylphenol + 2 oxidized [azurin] + H2O = 4-hydroxybenzyl alcohol + 2 reduced [azurin] + 2 H(+)"]]},{"id":"CHEBI:18212","l":"selenite(2-)","na":1,"nb":11,"a":[["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"]],"b":[["EC%3A1.97.1.14","selenate reductase (quinol)"],["EC%3A1.97.1.9","selenate reductase (cytochrome c)"],["RHEA%3A80603","selenite + 2 Fe(III)-[cytochrome c] + H2O = 2 Fe(II)-[cytochrome] + selenate + 2 H(+)"],["RHEA%3A34903","selenite + 4 glutathione + 2 H(+) = selenodiglutathione + glutathione disulfide + 3 H2O"],["RHEA%3A14029","selenite + A + H2O = selenate + AH2"],["RHEA%3A51636","selenite + a quinone + H2O = selenate + a quinol"]]},{"id":"CHEBI:28009","l":"N-acetyl-beta-D-glucosamine","na":1,"nb":11,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]],"b":[["RHEA%3A85211","alpha-di-N-acetylchitobiose + H2O = N-acetyl-beta-D-glucosamine + N-acetyl-alpha-D-glucosamine"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"],["TCDB%3A4.A.6","The PTS Mannose-Fructose-Sorbose (Man) Family"]]},{"id":"CHEBI:28685","l":"molybdenum atom","na":1,"nb":11,"a":[["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_MO","MO-binding site"],["proteintraitsmech%3AMETALPDB_MO_DINUCLEAR","dinuclear molybdenum site"],["proteintraitsmech%3AMETALPDB_MO_HEPTANUCLEAR","heptanuclear molybdenum site"],["proteintraitsmech%3AMETALPDB_MO_HEXANUCLEAR","hexanuclear molybdenum site"],["proteintraitsmech%3AMETALPDB_MO_MONONUCLEAR","mononuclear molybdenum site"],["proteintraitsmech%3AMETALPDB_MO_MULTINUCLEAR","multinuclear molybdenum site"]]},{"id":"CHEBI:49807","l":"lead(2+)","na":1,"nb":11,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_49807","requires lead(2+)"],["RHEA%3A52580","Pb(2+)(in) + ATP + H2O = Pb(2+)(out) + ADP + phosphate + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.4","The Cation Diffusion Facilitator (CDF) Family"],["TCDB%3A2.A.11","The Citrate-Mg2+:H+ (CitM) Citrate-Ca2+:H+ (CitH) Symporter (CitMHS) Family"],["TCDB%3A1.A.87","The Mechanosensitive Calcium Channel (MCA) Family"]]},{"id":"CHEBI:15075","l":"selenate","na":1,"nb":10,"a":[["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"]],"b":[["EC%3A1.97.1.14","selenate reductase (quinol)"],["EC%3A1.97.1.9","selenate reductase (cytochrome c)"],["RHEA%3A34887","selenate(in) = selenate(out)"],["RHEA%3A72079","selenate(out) + 3 Na(+)(out) = selenate(in) + 3 Na(+)(in)"],["RHEA%3A34883","selenate(out) + ATP + H2O = selenate(in) + ADP + phosphate + H(+)"],["RHEA%3A80603","selenite + 2 Fe(III)-[cytochrome c] + H2O = 2 Fe(II)-[cytochrome] + selenate + 2 H(+)"]]},{"id":"CHEBI:15688","l":"acetoin","na":1,"nb":10,"a":[["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"]],"b":[["EC%3A2.2.1.4","acetoin--ribose-5-phosphate transaldolase"],["EC%3A2.3.1.190","acetoin dehydrogenase system"],["RHEA%3A54364","2 acetaldehyde = acetoin"],["RHEA%3A76879","3-aminobutan-2-ol + NAD(+) + H2O = acetoin + NH4(+) + NADH + H(+)"],["RHEA%3A76931","3-aminobutan-2-ol + NADP(+) + H2O = acetoin + NH4(+) + NADPH + H(+)"],["RHEA%3A54368","acetaldehyde + pyruvate + H(+) = acetoin + CO2"]]},{"id":"CHEBI:16581","l":"pregnenolone","na":1,"nb":10,"a":[["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"]],"b":[["EC%3A1.14.14.19","steroid 17alpha-monooxygenase"],["EC%3A1.14.15.6","cholesterol monooxygenase (side-chain-cleaving)"],["RHEA%3A34343","(20R,22R)-20,22-dihydroxycholesterol + 2 reduced [adrenodoxin] + O2 + 2 H(+) = 4-methylpentanal + pregnenolone + 2 oxidized [adrenodoxin] + 2 H2O"],["RHEA%3A35739","6 reduced [adrenodoxin] + cholesterol + 3 O2 + 6 H(+) = 4-methylpentanal + pregnenolone + 6 oxidized [adrenodoxin] + 4 H2O"],["RHEA%3A52356","pregnenolone + 3'-phosphoadenylyl sulfate = pregnenolone sulfate + adenosine 3',5'-bisphosphate + H(+)"],["RHEA%3A43924","pregnenolone + NAD(+) = pregn-5-ene-3,20-dione + NADH + H(+)"]]},{"id":"CHEBI:16738","l":"2,4-dichlorophenol","na":1,"nb":10,"a":[["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"]],"b":[["EC%3A1.14.11.43","(S)-dichlorprop dioxygenase (2-oxoglutarate)"],["EC%3A1.14.11.44","(R)-dichlorprop dioxygenase (2-oxoglutarate)"],["EC%3A1.14.13.20","2,4-dichlorophenol 6-monooxygenase"],["RHEA%3A86719","2,4-dichlorophenol + AH2 = 4-chlorophenol + chloride + A + H(+)"],["RHEA%3A80611","2,4-dichlorophenol + NADH + O2 + H(+) = 3,5-dichlorocatechol + NAD(+) + H2O"],["RHEA%3A20920","2,4-dichlorophenol + NADPH + O2 + H(+) = 3,5-dichlorocatechol + NADP(+) + H2O"]]},{"id":"CHEBI:17051","l":"fluoride","na":1,"nb":10,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["EC%3A2.5.1.63","adenosyl-fluoride synthase"],["EC%3A3.8.1.3","haloacetate dehalogenase"],["EC%3A3.8.2.2","diisopropyl-fluorophosphatase"],["RHEA%3A24100","diisopropyl fluorophosphate + H2O = diisopropyl phosphate + fluoride + 2 H(+)"],["RHEA%3A76159","fluoride(in) = fluoride(out)"],["RHEA%3A16661","fluoride + S-adenosyl-L-methionine = 5'-deoxy-5'-fluoroadenosine + L-methionine"]]},{"id":"CHEBI:17698","l":"chloramphenicol","na":1,"nb":10,"a":[["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"]],"b":[["EC%3A1.14.99.67","alpha-N-dichloroacetyl-p-aminophenylserinol N-oxygenase"],["EC%3A2.3.1.28","chloramphenicol O-acetyltransferase"],["RHEA%3A58884","alpha-N-dichloroacetyl-p-aminophenylserinol + AH2 + 2 O2 = chloramphenicol + A + 2 H2O"],["RHEA%3A18421","chloramphenicol + acetyl-CoA = chloramphenicol 3-acetate + CoA"],["RHEA%3A35287","chloramphenicol(in) + ATP + H2O = chloramphenicol(out) + ADP + phosphate + H(+)"],["RHEA%3A35059","chloramphenicol(in) + H(+)(out) = chloramphenicol(out) + H(+)(in)"]]},{"id":"GO:0006548","l":"L-histidine catabolic process","na":1,"nb":10,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["GO%3A0006548","L-histidine catabolic process"],["Reactome%3AR-HSA-70921","Histidine catabolism"],["proteintraitsmech%3ASEED_SUBSYSTEM_Histidine_Degradation","Histidine Degradation"],["NCBIfam%3ATIGR01227","formimidoylglutamase"],["NCBIfam%3ATIGR02022","formimidoylglutamate deiminase"],["NCBIfam%3ATIGR02024","glutamate formimidoyltransferase"]]},{"id":"GO:0070482","l":"response to oxygen levels","na":1,"nb":10,"a":[["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"]],"b":[["ComplexPortal%3ACPX-3982","dosPC diguanylate cyclase/c-di-GMP phosphodiesterase complex"],["ComplexPortal%3ACPX-1882","HAP1 transcriptional repressor complex, SSA1 variant"],["ComplexPortal%3ACPX-1883","HAP1 transcriptional repressor complex, SSA2 variant"],["ComplexPortal%3ACPX-1276","HMC complex"],["GO%3A0071453","cellular response to oxygen levels"],["GO%3A0003032","detection of oxygen"]]},{"id":"GO:2000146","l":"negative regulation of cell motility","na":1,"nb":10,"a":[["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["GO%3A1905417","negative regulation of amoeboid sperm motility"],["GO%3A1902201","negative regulation of bacterial-type flagellum-dependent cell motility"],["GO%3A0030336","negative regulation of cell migration"],["GO%3A2000146","negative regulation of cell motility"],["GO%3A1902020","negative regulation of cilium-dependent cell motility"],["PANTHER%3APTHR28616","COILED-COIL DOMAIN-CONTAINING PROTEIN 125"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":1,"nb":10,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["TED%3AAF-A0A5T2E4X7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5T2E4X7-F1-model_v4_TED01"],["TED%3AAF-A0A5Y4BP44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Y4BP44-F1-model_v4_TED01"],["TED%3AAF-A0A623P6F3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A623P6F3-F1-model_v4_TED02"],["TED%3AAF-A0A721BDS7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A721BDS7-F1-model_v4_TED02"],["TED%3AAF-A0A743P324-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A743P324-F1-model_v4_TED01"],["TED%3AAF-A0A757VWR3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A757VWR3-F1-model_v4_TED02"]]},{"id":"CHEBI:18248","l":"iron atom","na":1,"nb":9,"a":[["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18248","requires Fe"],["proteintraitsmech%3AMETALPDB_FE_DINUCLEAR","dinuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_HEPTANUCLEAR","heptanuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_HEXANUCLEAR","hexanuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_MONONUCLEAR","mononuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_OCTANUCLEAR","octanuclear iron site"]]},{"id":"CHEBI:26710","l":"sodium chloride","na":9,"nb":1,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["TCDB%3A2.A.30","The Cation-Chloride Cotransporter (CCC) Family"]]},{"id":"GO:0009266","l":"response to temperature stimulus","na":1,"nb":9,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["GO%3A0071502","cellular response to temperature stimulus"],["GO%3A0016048","detection of temperature stimulus"],["GO%3A0009409","response to cold"],["GO%3A0009408","response to heat"],["GO%3A0009266","response to temperature stimulus"],["GO%3A0010378","temperature compensation of the circadian clock"]]},{"id":"GO:0043903","l":"regulation of biological process involved in symbiotic interaction","na":1,"nb":9,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["GO%3A0052372","modulation by symbiont of entry into host"],["GO%3A0140471","positive regulation of transepithelial migration of symbiont in host"],["GO%3A0043903","regulation of biological process involved in symbiotic interaction"],["GO%3A0075045","regulation of formation by symbiont of haustorium for nutrient acquisition from host"],["GO%3A1901252","regulation of intracellular transport of viral material"],["GO%3A0070949","regulation of neutrophil mediated killing of symbiont cell"]]},{"id":"NCBITaxon:1344414","l":"Trichoderma reesei RUT C-30","na":1,"nb":9,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["Pfam%3APF00457","Glycosyl hydrolases family 11"],["Pfam%3APF01341","Glycosyl hydrolases family 6"],["PROSITE%3APS00155","Cutinase, serine active site"],["PROSITE%3APS00776","Glycosyl hydrolases family 11 (GH11) active site signature 1"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"],["PROSITE%3APS00655","Glycosyl hydrolases family 6 signature 1"]]},{"id":"NCBITaxon:2903","l":"Emiliania huxleyi","na":1,"nb":9,"a":[["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"]],"b":[["TED%3AAF-A0A7S3RZJ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3RZJ4-F1-model_v4_TED01"],["TED%3AAF-A0A7S3W933-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3W933-F1-model_v4_TED01"],["TED%3AAF-A0A7S3W9Q3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3W9Q3-F1-model_v4_TED01"],["TED%3AAF-R1DPG1-F1-model_v4_TED01","TED highly-symmetric fold AF-R1DPG1-F1-model_v4_TED01"],["TED%3AAF-A0A7S3TQB6-F1-model_v4_TED02","TED novel fold AF-A0A7S3TQB6-F1-model_v4_TED02"],["TED%3AAF-R1BEB4-F1-model_v4_TED01","TED novel fold AF-R1BEB4-F1-model_v4_TED01"]]},{"id":"CHEBI:27698","l":"vanadium atom","na":1,"nb":8,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_V_DECANUCLEAR","decanuclear vanadium site"],["proteintraitsmech%3AMETALPDB_V_DINUCLEAR","dinuclear vanadium site"],["proteintraitsmech%3AMETALPDB_V_HEPTANUCLEAR","heptanuclear vanadium site"],["proteintraitsmech%3AMETALPDB_V_HEXANUCLEAR","hexanuclear vanadium site"],["proteintraitsmech%3AMETALPDB_V_MONONUCLEAR","mononuclear vanadium site"],["proteintraitsmech%3AMETALPDB_V_OCTANUCLEAR","octanuclear vanadium site"]]},{"id":"CHEBI:37166","l":"xylan","na":8,"nb":1,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"GO:0042436","l":"indole-containing compound catabolic process","na":1,"nb":8,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["GO%3A0042433","indole catabolic process"],["GO%3A0042436","indole-containing compound catabolic process"],["GO%3A0042344","indole glucosinolate catabolic process"],["GO%3A0046216","indole phytoalexin catabolic process"],["GO%3A0042437","indoleacetic acid catabolic process"],["GO%3A0006569","L-tryptophan catabolic process"]]},{"id":"NCBITaxon:4081","l":"Solanum lycopersicum","na":1,"nb":8,"a":[["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF02977","Carboxypeptidase A inhibitor"],["Pfam%3APF26410","GH family 5 beta-mannosidase-like"],["Pfam%3APF02496","ABA/WDS induced protein"],["Pfam%3APF17302","Family of unknown function (DUF5351)"],["PROSITE%3APS00502","Polygalacturonase active site"]]},{"id":"NCBITaxon:492670","l":"Bacillus velezensis","na":8,"nb":1,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"]],"b":[["TED%3AAF-A0A7S9EWF1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S9EWF1-F1-model_v4_TED02"]]},{"id":"CHEBI:25017","l":"leucine","na":1,"nb":7,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.78","The Branched Chain Amino Acid Exporter (LIV-E) Family"],["TCDB%3A2.A.76","The Resistance to Homoserine/Threonine (RhtB) Family"],["MCSA%3A172","isoaspartyl dipeptidase"]]},{"id":"CHEBI:29195","l":"cyanate","na":1,"nb":7,"a":[["Thiocyanate_Afipia_Thiobacillus_Bioreactor_Community.html","Thiocyanate-Degrading Afipia and Thiobacillus Bioreactor Community"]],"b":[["EC%3A1.8.2.7","thiocyanate desulfurase"],["EC%3A4.2.1.104","cyanase"],["RHEA%3A11120","cyanate + hydrogencarbonate + 3 H(+) = NH4(+) + 2 CO2"],["RHEA%3A18489","cyanate + hydrogencarbonate + H(+) = carbamate + CO2"],["RHEA%3A29231","cyanate(in) = cyanate(out)"],["RHEA%3A63880","thiocyanate + 2 Fe(III)-[cytochrome c] + H2O = cyanate + sulfur + 2 Fe(II)-[cytochrome c] + 2 H(+)"]]},{"id":"CHEBI:32379","l":"cis,cis-muconate","na":1,"nb":7,"a":[["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["EC%3A1.13.11.1","catechol 1,2-dioxygenase"],["EC%3A5.5.1.1","muconate cycloisomerase"],["RHEA%3A23852","catechol + O2 = cis,cis-muconate + 2 H(+)"],["RHEA%3A30031","(S)-muconolactone = cis,cis-muconate + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["MCSA%3A959","muconate cycloisomerase (anti)"]]},{"id":"GO:0009292","l":"horizontal gene transfer","na":1,"nb":7,"a":[["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"]],"b":[["GO%3A0009294","DNA-mediated transformation"],["GO%3A0009292","horizontal gene transfer"],["GO%3A0009293","transduction"],["GO%3A0009291","unidirectional conjugation"],["NCBIfam%3ATIGR04359","entry exclusion lipoprotein TrbK"],["NCBIfam%3ATIGR04361","entry exclusion protein TrbK"]]},{"id":"GO:0040011","l":"locomotion","na":1,"nb":7,"a":[["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"]],"b":[["GO%3A0033058","directional locomotion"],["GO%3A0060361","flight"],["GO%3A0040011","locomotion"],["GO%3A0031987","locomotion involved in locomotory behavior"],["GO%3A0071965","multicellular organismal locomotion"],["GO%3A0036268","swimming"]]},{"id":"GO:0075136","l":"response to host","na":1,"nb":7,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0075136","response to host"],["GO%3A0075139","response to host iron concentration"],["GO%3A0075000","response to host osmotic environment"],["GO%3A0075138","response to host oxygen tension environment"],["GO%3A0075293","response to host pH environment"],["GO%3A0075137","response to host redox environment"]]},{"id":"NCBITaxon:2030806","l":"Burkholderiaceae bacterium","na":1,"nb":7,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["TED%3AAF-A0A5C7NHS1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7NHS1-F1-model_v4_TED01"],["TED%3AAF-A0A5C7Q2S0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A5C7Q2S0-F1-model_v4_TED04"],["TED%3AAF-A0A7L5Y4H7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7L5Y4H7-F1-model_v4_TED02"],["TED%3AAF-A0A520VNE1-F1-model_v4_TED02","TED novel fold AF-A0A520VNE1-F1-model_v4_TED02"],["TED%3AAF-A0A522SAF0-F1-model_v4_TED01","TED novel fold AF-A0A522SAF0-F1-model_v4_TED01"],["TED%3AAF-A0A5C7NTX8-F1-model_v4_TED02","TED novel fold AF-A0A5C7NTX8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:5722","l":"Trichomonas vaginalis","na":1,"nb":7,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["TED%3AAF-A2F3M7-F1-model_v4_TED03","TED highly-symmetric fold AF-A2F3M7-F1-model_v4_TED03"],["TED%3AAF-A2HEW4-F1-model_v4_TED01","TED highly-symmetric fold AF-A2HEW4-F1-model_v4_TED01"],["TED%3AAF-A2DT59-F1-model_v4_TED01","TED novel fold AF-A2DT59-F1-model_v4_TED01"],["TED%3AAF-A2E7I9-F1-model_v4_TED02","TED novel fold AF-A2E7I9-F1-model_v4_TED02"],["TED%3AAF-A2F6I8-F1-model_v4_TED02","TED novel fold AF-A2F6I8-F1-model_v4_TED02"],["TED%3AAF-A2FV33-F1-model_v4_TED01","TED novel fold AF-A2FV33-F1-model_v4_TED01"]]},{"id":"CHEBI:32139","l":"sodium hydrogencarbonate","na":6,"nb":1,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["TCDB%3A2.A.31","The Anion Exchanger (AE) Family"]]},{"id":"GO:0009268","l":"response to pH","na":1,"nb":6,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["GO%3A0071467","cellular response to pH"],["GO%3A0036177","filamentous growth of a population of unicellular organisms in response to pH"],["GO%3A0010447","response to acidic pH"],["GO%3A0010446","response to alkaline pH"],["GO%3A0036176","response to neutral pH"],["GO%3A0009268","response to pH"]]},{"id":"GO:0009684","l":"indoleacetic acid biosynthetic process","na":6,"nb":1,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["GO%3A0009684","indoleacetic acid biosynthetic process"]]},{"id":"GO:0044409","l":"symbiont entry into host","na":1,"nb":6,"a":[["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"]],"b":[["GO%3A0120326","appressorium-mediated entry into host"],["GO%3A0140717","entry into host through the stromata"],["GO%3A0035635","entry of bacterium into host cell"],["GO%3A0046718","symbiont entry into host cell"],["GO%3A0044409","symbiont entry into host"],["Reactome%3AR-HSA-173107","Binding and entry of HIV virion"]]},{"id":"GO:0045733","l":"acetate catabolic process","na":6,"nb":1,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"],["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]],"b":[["GO%3A0045733","acetate catabolic process"]]},{"id":"GO:0140253","l":"cell-cell fusion","na":1,"nb":6,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["ComplexPortal%3ACPX-3089","EFF-1 complex"],["GO%3A0140253","cell-cell fusion"],["GO%3A0000755","cytogamy"],["GO%3A0000768","syncytium formation by cell-cell fusion"],["PANTHER%3APTHR37415","EFF-1A"],["PANTHER%3APTHR41686","MYOMIXER"]]},{"id":"GO:1900190","l":"regulation of single-species biofilm formation","na":1,"nb":6,"a":[["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["ComplexPortal%3ACPX-4681","YiaMNO tripartite ATP-independent periplasmic transporter complex"],["GO%3A1900191","negative regulation of single-species biofilm formation"],["GO%3A1900192","positive regulation of single-species biofilm formation"],["GO%3A1900190","regulation of single-species biofilm formation"],["GO%3A1900228","regulation of single-species biofilm formation in or on host organism"],["GO%3A1900231","regulation of single-species biofilm formation on inanimate substrate"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":6,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["Pfam%3APF03437","BtpA family"]]},{"id":"NCBITaxon:2268204","l":"Thermoplasmatales archaeon","na":1,"nb":6,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["TED%3AAF-A0A7C2AKF2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7C2AKF2-F1-model_v4_TED03"],["TED%3AAF-A0A7J2S4D8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7J2S4D8-F1-model_v4_TED03"],["TED%3AAF-A0A7J3TK18-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7J3TK18-F1-model_v4_TED02"],["TED%3AAF-A0A7C1E5G8-F1-model_v4_TED01","TED novel fold AF-A0A7C1E5G8-F1-model_v4_TED01"],["TED%3AAF-A0A842X889-F1-model_v4_TED01","TED novel fold AF-A0A842X889-F1-model_v4_TED01"],["TED%3AAF-A0A842X9F6-F1-model_v4_TED01","TED novel fold AF-A0A842X9F6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":1,"nb":6,"a":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"]],"b":[["Pfam%3APF14525","AraC-binding-like domain"],["Pfam%3APF06139","BphX-like"],["Pfam%3APF13340","Putative transposase of IS4/5 family (DUF4096)"],["Pfam%3APF11794","4-hydroxyphenylacetate 3-hydroxylase N terminal"],["Pfam%3APF03241","4-hydroxyphenylacetate 3-hydroxylase C terminal"],["TED%3AAF-A0A4S3H3T1-F1-model_v4_TED02","TED novel fold AF-A0A4S3H3T1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:4097","l":"Nicotiana tabacum","na":1,"nb":6,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"]],"b":[["Pfam%3APF02041","Auxin binding protein"],["Pfam%3APF12481","Aluminium induced protein"],["Pfam%3APF11995","Domain of unknown function (DUF3490)"],["Pfam%3APF07172","Glycine rich protein family"],["PROSITE%3APS00157","Ribulose bisphosphate carboxylase large chain active site"],["TED%3AAF-A0A1S4A696-F1-model_v4_TED01","TED novel fold AF-A0A1S4A696-F1-model_v4_TED01"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":1,"nb":6,"a":[["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["Pfam%3APF02929","Beta galactosidase small chain"],["Pfam%3APF27279","Fumarate--diaminopropanoate ligase C-terminal domain"],["Pfam%3APF18024","Helix-turn-helix domain"],["Pfam%3APF16353","Beta-galactosidase, domain 4"],["PROSITE%3APS00594","Aromatic amino acids permeases signature"],["PROSITE%3APS00853","Beta-eliminating lyases pyridoxal-phosphate attachment site"]]},{"id":"CHEBI:15702","l":"terephthalic acid","na":5,"nb":1,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["proteintraitsmech%3ABIOLIP_UB7","UB7-binding site"]]},{"id":"CHEBI:16828","l":"L-tryptophan","na":5,"nb":1,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["proteintraitsmech%3ABIOLIP_TRP","TRP-binding site"]]},{"id":"CHEBI:17439","l":"cyanocob(III)alamin","na":1,"nb":5,"a":[["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["EC%3A1.16.1.6","cyanocobalamin reductase"],["RHEA%3A16113","2 cob(II)alamin-[cyanocobalamin reductase] + 2 hydrogen cyanide + NADP(+) = 2 cyanocob(III)alamin + 2 apo-[cyanocobalamin reductase] + NADPH + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["TCDB%3A9.B.87","The Selenoprotein P Receptor (SelP-Receptor) Family"]]},{"id":"CHEBI:24875","l":"iron cation","na":1,"nb":5,"a":[["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_24875","requires iron cation"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.S.6","The Bacterial/Archaeal Nanocompartment Encapsulin Shell Protein1 (BANC-SP1) Family"],["TCDB%3A2.A.55","The Metal Ion (Mn2+-iron) Transporter (Nramp) Family"],["TCDB%3A5.B.1","The Phagocyte (gp91phox) NADPH Oxidase Family"]]},{"id":"CHEBI:27750","l":"ethyl acetate","na":1,"nb":5,"a":[["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["EC%3A2.3.1.268","ethanol O-acetyltransferase"],["EC%3A3.1.1.113","ethyl acetate hydrolase"],["RHEA%3A55972","ethanol + acetyl-CoA = ethyl acetate + CoA"],["RHEA%3A58148","ethyl acetate + H2O = ethanol + acetate + H(+)"],["proteintraitsmech%3ABIOLIP_EEE","EEE-binding site"]]},{"id":"CHEBI:30746","l":"benzoic acid","na":5,"nb":1,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_BEZ","BEZ-binding site"]]},{"id":"CHEBI:30769","l":"citric acid","na":5,"nb":1,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["proteintraitsmech%3ABIOLIP_CIT","CIT-binding site"]]},{"id":"CHEBI:30776","l":"hexanoic acid","na":5,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["proteintraitsmech%3ABIOLIP_6NA","6NA-binding site"]]},{"id":"CHEBI:33364","l":"platinum atom","na":1,"nb":5,"a":[["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_PT_DINUCLEAR","dinuclear platinum site"],["proteintraitsmech%3AMETALPDB_PT_HEXANUCLEAR","hexanuclear platinum site"],["proteintraitsmech%3AMETALPDB_PT_MONONUCLEAR","mononuclear platinum site"],["proteintraitsmech%3AMETALPDB_PT_TETRANUCLEAR","tetranuclear platinum site"],["proteintraitsmech%3AMETALPDB_PT_TRINUCLEAR","trinuclear platinum site"]]},{"id":"CHEBI:35899","l":"crotonate","na":1,"nb":5,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["EC%3A1.3.1.31","2-enoate reductase"],["RHEA%3A74903","(2E)-2-butenoate + ATP + H(+) = (2E)-but-2-enoyl-AMP + diphosphate"],["RHEA%3A74899","(2E)-2-butenoate + holo-[ACP] + ATP = (2E)-butenoyl-[ACP] + AMP + diphosphate"],["RHEA%3A10200","butanoate + NAD(+) = (2E)-2-butenoate + NADH + H(+)"],["RHEA%3A69172","N(6)-(2E)-butenoyl-L-lysyl-[protein] + H2O = (2E)-2-butenoate + L-lysyl-[protein]"]]},{"id":"CHEBI:37671","l":"(1->3)-beta-D-glucan","na":1,"nb":5,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"]],"b":[["EC%3A2.4.1.30","1,3-beta-oligoglucan phosphorylase"],["EC%3A2.4.1.34","1,3-beta-glucan synthase"],["EC%3A2.4.1.97","1,3-beta-D-glucan phosphorylase"],["RHEA%3A16041","[(1->3)-beta-D-glucosyl](n) + phosphate = [(1->3)-beta-D-glucosyl](n-1) + alpha-D-glucose 1-phosphate"],["RHEA%3A21476","[(1->3)-beta-D-glucosyl](n) + UDP-alpha-D-glucose = [(1->3)-beta-D-glucosyl](n+1) + UDP + H(+)"]]},{"id":"CHEBI:81666","l":"4-methyl-5-nitrocatechol","na":1,"nb":5,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["EC%3A1.14.12.24","2,4-dinitrotoluene dioxygenase"],["EC%3A1.14.13.210","4-methyl-5-nitrocatechol 5-monooxygenase"],["RHEA%3A46760","2,4-dinitrotoluene + NADH + O2 = 4-methyl-5-nitrocatechol + nitrite + NAD(+)"],["RHEA%3A48016","4-methyl-5-nitrocatechol + NADH + O2 = 2-hydroxy-5-methylquinone + nitrite + NAD(+) + H2O + H(+)"],["RHEA%3A48012","4-methyl-5-nitrocatechol + NADPH + O2 = 2-hydroxy-5-methylquinone + nitrite + NADP(+) + H2O + H(+)"]]},{"id":"CHEBI:86471","l":"pyrite","na":5,"nb":1,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"GO:0015945","l":"methanol metabolic process","na":1,"nb":5,"a":[["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"]],"b":[["GO%3A0019387","methanogenesis, from methanol"],["GO%3A0046169","methanol biosynthetic process"],["GO%3A0046170","methanol catabolic process"],["GO%3A0015945","methanol metabolic process"],["GO%3A0015946","methanol oxidation"]]},{"id":"GO:0098869","l":"cellular oxidant detoxification","na":1,"nb":5,"a":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["GO%3A0061692","cellular detoxification of hydrogen peroxide"],["GO%3A0098869","cellular oxidant detoxification"],["GO%3A0019430","removal of superoxide radicals"],["NCBIfam%3ANF009668","peroxiredoxin"],["Pfam%3APF24980","Response to Low Sulfur (LSU) family"]]},{"id":"NCBITaxon:10239","l":"Viruses","na":5,"nb":1,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_10239","Viruses orthologous groups (OrthoDB)"]]},{"id":"NCBITaxon:1598","l":"Limosilactobacillus reuteri","na":1,"nb":5,"a":[["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"]],"b":[["TED%3AAF-A0A6N1EMN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N1EMN7-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2V3C3-F1-model_v4_TED01","TED novel fold AF-A0A1Y2V3C3-F1-model_v4_TED01"],["TED%3AAF-A0A848BUA9-F1-model_v4_TED01","TED novel fold AF-A0A848BUA9-F1-model_v4_TED01"],["TED%3AAF-A0A855XJ18-F1-model_v4_TED01","TED novel fold AF-A0A855XJ18-F1-model_v4_TED01"],["TED%3AAF-Q6WUB1-F1-model_v4_TED03","TED novel fold AF-Q6WUB1-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1872427","l":"Alcanivorax sp.","na":1,"nb":5,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["TED%3AAF-A0A3C1HS87-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A3C1HS87-F1-model_v4_TED05"],["TED%3AAF-A0A2E8G0K2-F1-model_v4_TED02","TED novel fold AF-A0A2E8G0K2-F1-model_v4_TED02"],["TED%3AAF-A0A2E8G2P9-F1-model_v4_TED01","TED novel fold AF-A0A2E8G2P9-F1-model_v4_TED01"],["TED%3AAF-A0A3B8PCI6-F1-model_v4_TED01","TED novel fold AF-A0A3B8PCI6-F1-model_v4_TED01"],["TED%3AAF-A0A3C0M083-F1-model_v4_TED02","TED novel fold AF-A0A3C0M083-F1-model_v4_TED02"]]},{"id":"NCBITaxon:552","l":"Erwinia amylovora","na":1,"nb":5,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]],"b":[["Pfam%3APF09008","Head binding"],["Pfam%3APF11725","AvrE-family Type-III effector proteins (T3Es)"],["Pfam%3APF03608","PTS system enzyme II sorbitol-specific factor"],["Pfam%3APF07663","Sorbitol phosphotransferase enzyme II C-terminus"],["Pfam%3APF03612","Sorbitol phosphotransferase enzyme II N-terminus"]]},{"id":"NCBITaxon:74969","l":"Ferroplasma acidiphilum","na":5,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["TED%3AAF-A0A7K4FNL3-F1-model_v4_TED01","TED novel fold AF-A0A7K4FNL3-F1-model_v4_TED01"]]},{"id":"CHEBI:15603","l":"L-leucine","na":4,"nb":1,"a":[["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"]],"b":[["proteintraitsmech%3ABIOLIP_LEU","LEU-binding site"]]},{"id":"CHEBI:16109","l":"propane-1,3-diol","na":1,"nb":4,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["EC%3A1.1.1.202","1,3-propanediol dehydrogenase"],["RHEA%3A23188","propane-1,3-diol + NAD(+) = 3-hydroxypropanal + NADH + H(+)"],["RHEA%3A35599","propane-1,3-diol + NADP(+) = 3-hydroxypropanal + NADPH + H(+)"],["proteintraitsmech%3ABIOLIP_PDO","PDO-binding site"]]},{"id":"CHEBI:16646","l":"carbohydrate","na":4,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16646","requires pantothenate"]]},{"id":"CHEBI:16811","l":"methionine","na":4,"nb":1,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"]]},{"id":"CHEBI:16856","l":"glutathione","na":1,"nb":4,"a":[["Zymomonas_Ecoli_Exometabolomics_Obligate_Mutualism.html","Zymomonas-E. coli Exometabolomics-Designed Obligate Mutualism"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16856","requires glutathione"],["MCSA%3A359","lactoglutathione lyase"],["MCSA%3A32","lactoylglutathione lyase"],["proteintraitsmech%3ABIOLIP_GSH","GSH-binding site"]]},{"id":"CHEBI:17115","l":"L-serine","na":1,"nb":4,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["MCSA%3A609","alpha-lytic endopeptidase"],["MCSA%3A238","assemblin"],["MCSA%3A688","classical-complement-pathway C3/C5 convertase"],["proteintraitsmech%3ABIOLIP_SER","SER-binding site"]]},{"id":"CHEBI:17634","l":"D-glucose","na":4,"nb":1,"a":[["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"]],"b":[["MCSA%3A976","α‑glucosidase maltase-glucoamylase"]]},{"id":"CHEBI:18050","l":"L-glutamine","na":1,"nb":4,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["MCSA%3A596","deuterolysin"],["MCSA%3A477","picornain 3C"],["MCSA%3A763","picornain 3C"],["proteintraitsmech%3ABIOLIP_GLN","GLN-binding site"]]},{"id":"CHEBI:18059","l":"lipid","na":4,"nb":1,"a":[["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"],["Yarrowia_lipolytica_Division_of_Labor_Lipid_Consortium.html","Yarrowia lipolytica Division-of-Labor Lipid Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:22315","l":"alkaloid","na":1,"nb":4,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]]},{"id":"CHEBI:23681","l":"dibenzothiophene","na":1,"nb":4,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["EC%3A1.14.14.21","dibenzothiophene monooxygenase"],["RHEA%3A49072","dibenzothiophene + 2 FMNH2 + 2 O2 = dibenzothiophene 5,5-dioxide + 2 FMN + 2 H2O + 2 H(+)"],["RHEA%3A49076","dibenzothiophene + FMNH2 + O2 = dibenzothiophene 5-oxide + FMN + H2O + H(+)"],["MCSA%3A973","DszC protein"]]},{"id":"CHEBI:28984","l":"aluminium atom","na":1,"nb":4,"a":[["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_AL_DINUCLEAR","dinuclear aluminium site"],["proteintraitsmech%3AMETALPDB_AL_MONONUCLEAR","mononuclear aluminium site"],["proteintraitsmech%3AMETALPDB_AL_TETRANUCLEAR","tetranuclear aluminium site"],["proteintraitsmech%3AMETALPDB_AL_TRINUCLEAR","trinuclear aluminium site"]]},{"id":"CHEBI:33575","l":"carboxylic acid","na":1,"nb":4,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"]],"b":[["MCSA%3A105","aldehyde dehydrogenase (FAD-independent)"],["MCSA%3A803","aldehyde dehydrogenase (NAD+) (class 2)"],["MCSA%3A556","esterase (estA)"],["MCSA%3A755","lysophospholipase"]]},{"id":"CHEBI:34768","l":"furfural","na":1,"nb":4,"a":[["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"]],"b":[["RHEA%3A77519","furfural + hydrogen cyanide = (2R)-2-(furan-2-yl)-2-hydroxyacetonitrile"],["RHEA%3A76667","furfural + NAD(+) + H2O = 2-furoate + NADH + 2 H(+)"],["RHEA%3A76671","furfural + NADP(+) + H2O = 2-furoate + NADPH + 2 H(+)"],["TCDB%3A1.C.113","The Hemolysin III (Hly III) Family"]]},{"id":"CHEBI:490095","l":"esculetin","na":1,"nb":4,"a":[["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["EC%3A2.5.1.138","coumarin 8-geranyltransferase"],["RHEA%3A51864","esculetin + (2E)-geranyl diphosphate = 8-geranylesculetin + diphosphate"],["RHEA%3A68944","esculetin + S-adenosyl-L-methionine = isoscopoletin + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A68948","esculetin + S-adenosyl-L-methionine = scopoletin + S-adenosyl-L-homocysteine + H(+)"]]},{"id":"GO:0009809","l":"lignin biosynthetic process","na":1,"nb":4,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"]],"b":[["GO%3A1901063","guaiacyl lignin biosynthetic process"],["GO%3A0009809","lignin biosynthetic process"],["GO%3A1901060","p-hydroxyphenyl lignin biosynthetic process"],["GO%3A1901066","syringal lignin biosynthetic process"]]},{"id":"GO:0015694","l":"mercury ion transport","na":1,"nb":4,"a":[["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["GO%3A0015694","mercury ion transport"],["Pfam%3APF03203","MerC mercury resistance protein"],["Pfam%3APF05052","MerE protein"],["Pfam%3APF02411","MerT mercuric transport protein"]]},{"id":"GO:0015976","l":"carbon utilization","na":1,"nb":4,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["GO%3A0015976","carbon utilization"],["NCBIfam%3ANF010378","bifunctional acetaldehyde-CoA/alcohol dehydrogenase"],["NCBIfam%3ANF007756","carbonate dehydratase"],["InterPro%3AIPR015892","Carbonic anhydrase, prokaryotic-like, conserved site"]]},{"id":"GO:0061692","l":"cellular detoxification of hydrogen peroxide","na":1,"nb":4,"a":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["ComplexPortal%3ACPX-4742","Catalase complex"],["ComplexPortal%3ACPX-4767","Catalase complex"],["ComplexPortal%3ACPX-4768","Catalase complex"],["GO%3A0061692","cellular detoxification of hydrogen peroxide"]]},{"id":"GO:1902074","l":"response to salt","na":1,"nb":4,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["GO%3A1902075","cellular response to salt"],["GO%3A1902074","response to salt"],["GO%3A1903935","response to sodium arsenite"],["GO%3A1904383","response to sodium phosphate"]]},{"id":"NCBITaxon:1401","l":"Paenibacillus lautus","na":1,"nb":4,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"]],"b":[["Pfam%3APF18448","Carbohydrate binding domain"],["Pfam%3APF12891","Glycoside hydrolase family 44"],["TED%3AAF-A0A328VZ83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A328VZ83-F1-model_v4_TED01"],["TED%3AAF-A0A385TU82-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A385TU82-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1451","l":"Paenibacillus amylolyticus","na":1,"nb":4,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"]],"b":[["Pfam%3APF03211","Pectate lyase"],["TED%3AAF-A0A117I1X0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A117I1X0-F1-model_v4_TED01"],["TED%3AAF-A0A1R1DDF3-F1-model_v4_TED01","TED novel fold AF-A0A1R1DDF3-F1-model_v4_TED01"],["TED%3AAF-A0A4V3B7H8-F1-model_v4_TED01","TED novel fold AF-A0A4V3B7H8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1501","l":"Clostridium pasteurianum","na":1,"nb":4,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["Pfam%3APF22609","Iron hydrogenase 1-like, iron-sulfur centre-binding domain"],["Pfam%3APF09582","Iron only nitrogenase protein AnfO (AnfO_nitrog)"],["PROSITE%3APS00746","NifH/frxC family signature 1"],["PROSITE%3APS00699","Nitrogenases component 1 alpha and beta subunits signature 1"]]},{"id":"NCBITaxon:1534","l":"Clostridium kluyveri","na":4,"nb":1,"a":[["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["TED%3AAF-A0A1L5FEG9-F1-model_v4_TED01","TED novel fold AF-A0A1L5FEG9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1590","l":"Lactiplantibacillus plantarum","na":4,"nb":1,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Pichia_Lactiplantibacillus_CCMA_Plant_Beverage_Coculture.html","Pichia-Lactiplantibacillus CCMA Plant Beverage Coculture"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["Pfam%3APF06314","Acetoacetate decarboxylase (ADC)"]]},{"id":"NCBITaxon:243164","l":"Dehalococcoides mccartyi 195","na":4,"nb":1,"a":[["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["Pfam%3APF13486","Reductive dehalogenase subunit"]]},{"id":"NCBITaxon:258594","l":"Rhodopseudomonas palustris CGA009","na":1,"nb":4,"a":[["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"]],"b":[["Pfam%3APF01322","Cytochrome C'"],["PROSITE%3APS00969","Antenna complexes beta subunits signature"],["PROSITE%3APS00936","Ribosomal protein L35 signature"],["PROSITE%3APS01181","Ribosomal protein S21 signature"]]},{"id":"NCBITaxon:28037","l":"Streptococcus mitis","na":1,"nb":4,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["Pfam%3APF03047","COMC family"],["TED%3AAF-A0A1X1L9U5-F1-model_v4_TED02","TED novel fold AF-A0A1X1L9U5-F1-model_v4_TED02"],["TED%3AAF-A0A428B8X0-F1-model_v4_TED01","TED novel fold AF-A0A428B8X0-F1-model_v4_TED01"],["TED%3AAF-A0A6L5H4V3-F1-model_v4_TED03","TED novel fold AF-A0A6L5H4V3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:285","l":"Comamonas testosteroni","na":1,"nb":4,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["Pfam%3APF02900","Catalytic LigB subunit of aromatic ring-opening dioxygenase"],["Pfam%3APF19301","LigXa C-terminal domain like"],["TED%3AAF-A0A096HND0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A096HND0-F1-model_v4_TED01"],["TED%3AAF-A0A1Y1JCM1-F1-model_v4_TED01","TED novel fold AF-A0A1Y1JCM1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:34305","l":"Lotus japonicus","na":1,"nb":4,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["Pfam%3APF06241","Castor and Pollux, part of voltage-gated ion channel"],["Pfam%3APF23654","E3 ubiquitin-protein ligase LIN-like, ARM repeat"],["Pfam%3APF23628","Putative E3 ubiquitin-protein ligase LIN, ARM-like domain"],["Pfam%3APF23568","E3 ubiquitin-protein ligase LIN-like, ARM repeat"]]},{"id":"NCBITaxon:40520","l":"Blautia obeum","na":1,"nb":4,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]],"b":[["TED%3AAF-A0A174PFW9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A174PFW9-F1-model_v4_TED01"],["TED%3AAF-A0A174PHS9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A174PHS9-F1-model_v4_TED02"],["TED%3AAF-A0A415LGR0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A415LGR0-F1-model_v4_TED01"],["TED%3AAF-A0A414KHY7-F1-model_v4_TED02","TED novel fold AF-A0A414KHY7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":1,"nb":4,"a":[["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["Pfam%3APF11720","Peptidase inhibitor I78 family"],["Pfam%3APF12296","Hydrophobic surface binding protein A"],["TED%3AAF-A0A3M7JGA1-F1-model_v4_TED02","TED novel fold AF-A0A3M7JGA1-F1-model_v4_TED02"],["TED%3AAF-A0A7G5JNS3-F1-model_v4_TED03","TED novel fold AF-A0A7G5JNS3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:863","l":"Syntrophomonas wolfei","na":4,"nb":1,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["TED%3AAF-A0A354YY78-F1-model_v4_TED03","TED novel fold AF-A0A354YY78-F1-model_v4_TED03"]]},{"id":"CHEBI:147155","l":"","na":3,"nb":1,"a":[["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["RHEA%3A64016","alpha-L-Fuc-(1->2)-beta-D-Gal-(1->4)-D-Glc + GDP-beta-L-fucose = alpha-L-Fuc-(1->2)-beta-D-Gal-(1->4)-[alpha-L-Fuc-(1->3)]-D-Glc + GDP + H(+)"]]},{"id":"CHEBI:15356","l":"cysteine","na":3,"nb":1,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:16015","l":"L-glutamic acid","na":1,"nb":3,"a":[["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]],"b":[["MCSA%3A747","gamma-glutamyl hydrolase"],["proteintraitsmech%3ABIOLIP_GGL","GGL-binding site"],["proteintraitsmech%3ABIOLIP_GLU","GLU-binding site"]]},{"id":"CHEBI:16170","l":"mercury(0)","na":1,"nb":3,"a":[["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["EC%3A1.16.1.1","mercury(II) reductase"],["RHEA%3A23856","Hg + NADP(+) + H(+) = Hg(2+) + NADPH"],["MCSA%3A277","mercury(II) reductase"]]},{"id":"CHEBI:16467","l":"L-arginine","na":1,"nb":3,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["MCSA%3A688","classical-complement-pathway C3/C5 convertase"],["MCSA%3A425","plasmin"],["MCSA%3A798","t-plasminogen activator"]]},{"id":"CHEBI:16982","l":"(R,R)-butane-2,3-diol","na":1,"nb":3,"a":[["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"]],"b":[["EC%3A1.1.1.4","(R,R)-butanediol dehydrogenase"],["RHEA%3A24340","(R,R)-butane-2,3-diol + NAD(+) = (R)-acetoin + NADH + H(+)"],["proteintraitsmech%3ABIOLIP_BU3","BU3-binding site"]]},{"id":"CHEBI:17203","l":"L-proline","na":1,"nb":3,"a":[["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["MCSA%3A403","astacin"],["MCSA%3A379","Xaa-Pro aminopeptidase"],["proteintraitsmech%3ABIOLIP_PRO","PRO-binding site"]]},{"id":"CHEBI:17561","l":"L-cysteine","na":3,"nb":1,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["proteintraitsmech%3ABIOLIP_CYS","CYS-binding site"]]},{"id":"CHEBI:2365","l":"(+)-abscisic acid","na":1,"nb":3,"a":[["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.17","The Proton-dependent Oligopeptide Transporter (POT/PTR) Family"],["proteintraitsmech%3ABIOLIP_A8S","A8S-binding site"]]},{"id":"CHEBI:28805","l":"cis-1,2-dichloroethene","na":1,"nb":3,"a":[["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"]],"b":[["RHEA%3A67992","trichloroethene + AH2 = (Z)-1,2-dichloroethene + chloride + A + H(+)"],["RHEA%3A67996","(Z)-1,2-dichloroethene + AH2 = chloroethene + chloride + A + H(+)"],["proteintraitsmech%3ABIOLIP_JYF","JYF-binding site"]]},{"id":"CHEBI:30803","l":"isophthalate(2-)","na":1,"nb":3,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["EC%3A6.2.1.58","isophthalate--CoA ligase"],["RHEA%3A61636","isophthalate + ATP + CoA = isophthalyl-CoA + AMP + diphosphate"],["TCDB%3A2.A.80","The Tricarboxylate Transporter (TTT) Family"]]},{"id":"CHEBI:31725","l":"isoamyl acetate","na":1,"nb":3,"a":[["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["EC%3A3.1.1.112","isoamyl acetate esterase"],["RHEA%3A65236","3-methylbutan-1-ol + acetyl-CoA = 3-methylbutyl acetate + CoA"],["RHEA%3A60436","3-methylbutyl acetate + H2O = 3-methylbutan-1-ol + acetate + H(+)"]]},{"id":"CHEBI:32816","l":"pyruvic acid","na":1,"nb":3,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_32816","requires pyruvic acid"],["MCSA%3A449","cystathionine beta-lyase"],["proteintraitsmech%3ABIOLIP_PYR","PYR-binding site"]]},{"id":"CHEBI:32879","l":"propane","na":1,"nb":3,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["EC%3A1.14.13.227","propane 2-monooxygenase"],["RHEA%3A49992","propane + NADH + O2 + H(+) = propan-2-ol + NAD(+) + H2O"],["proteintraitsmech%3ABIOLIP_TME","TME-binding site"]]},{"id":"CHEBI:33229","l":"vitamin (role)","na":1,"nb":3,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.21","The Solute:Sodium Symporter (SSS) Family"]]},{"id":"CHEBI:33359","l":"rhodium atom","na":1,"nb":3,"a":[["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_RH_DINUCLEAR","dinuclear rhodium site"],["proteintraitsmech%3AMETALPDB_RH_MONONUCLEAR","mononuclear rhodium site"],["proteintraitsmech%3AMETALPDB_RH_TRINUCLEAR","trinuclear rhodium site"]]},{"id":"CHEBI:33377","l":"dysprosium atom","na":1,"nb":3,"a":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_33377","requires Tb"],["proteintraitsmech%3AMETALPDB_DY_DINUCLEAR","dinuclear dysprosium site"],["proteintraitsmech%3AMETALPDB_DY_MONONUCLEAR","mononuclear dysprosium site"]]},{"id":"CHEBI:35780","l":"phosphate ion","na":3,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"]]},{"id":"CHEBI:412516","l":"5-hydroxymethylfurfural","na":1,"nb":3,"a":[["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"]],"b":[["EC%3A1.1.3.47","5-(hydroxymethyl)furfural oxidase"],["RHEA%3A32683","5-hydroxymethylfurfural + 3 O2 + 2 H2O = 2,5-dicarboxyfuran + 3 H2O2 + 2 H(+)"],["RHEA%3A43504","5-hydroxymethylfurfural + O2 = 2,5-diformylfuran + H2O2"]]},{"id":"CHEBI:49631","l":"gallium atom","na":1,"nb":3,"a":[["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_GA_DINUCLEAR","dinuclear gallium site"],["proteintraitsmech%3AMETALPDB_GA_MONONUCLEAR","mononuclear gallium site"],["proteintraitsmech%3AMETALPDB_GA_TETRANUCLEAR","tetranuclear gallium site"]]},{"id":"CHEBI:50699","l":"oligosaccharide","na":1,"nb":3,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"]]},{"id":"CHEBI:920","l":"2,4-dinitrotoluene","na":1,"nb":3,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["EC%3A1.14.12.24","2,4-dinitrotoluene dioxygenase"],["RHEA%3A80191","2,4-dinitrotoluene + 2 NADPH + 2 H(+) = 4-hydroxylamino-2-nitrotoluene + 2 NADP(+) + H2O"],["RHEA%3A46760","2,4-dinitrotoluene + NADH + O2 = 4-methyl-5-nitrocatechol + nitrite + NAD(+)"]]},{"id":"GO:0005982","l":"starch metabolic process","na":1,"nb":3,"a":[["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"]],"b":[["GO%3A0019252","starch biosynthetic process"],["GO%3A0005983","starch catabolic process"],["GO%3A0005982","starch metabolic process"]]},{"id":"GO:0019563","l":"glycerol catabolic process","na":1,"nb":3,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["GO%3A0019588","anaerobic glycerol catabolic process"],["GO%3A0019563","glycerol catabolic process"],["NCBIfam%3ANF008478","dihydroxyacetone kinase phosphoryl donor subunit DhaM"]]},{"id":"GO:0044002","l":"acquisition of nutrients from host","na":1,"nb":3,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0044002","acquisition of nutrients from host"],["GO%3A0044847","iron acquisition from host"],["GO%3A0052091","modulation of nutrient release by host"]]},{"id":"GO:1902422","l":"hydrogen biosynthetic process","na":1,"nb":3,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["GO%3A1902422","hydrogen biosynthetic process"],["GO%3A0044817","hydrogen generation via biophotolysis"],["GO%3A0044835","hydrogen generation via nitrogenase"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":1,"nb":3,"a":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["Pfam%3APF05258","Dna[CI] antecedent, DciA"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"],["TED%3AAF-Q0RZW9-F1-model_v4_TED03","TED highly-symmetric fold AF-Q0RZW9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":1,"nb":3,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF08130","Type A lantibiotic family"],["Pfam%3APF04738","Lantibiotic dehydratase, N terminus"]]},{"id":"NCBITaxon:1587","l":"Lactobacillus helveticus","na":1,"nb":3,"a":[["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"]],"b":[["Pfam%3APF18008","Replication initiator protein A C-terminal domain"],["Pfam%3APF20956","Domain of unknown function (DUF4931) C-terminal domain"],["Pfam%3APF17312","Bacteriocin helveticin-J"]]},{"id":"NCBITaxon:1589","l":"Lactiplantibacillus pentosus","na":1,"nb":3,"a":[["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["PROSITE%3APS60002","Phosphoketolase signature 1"],["PROSITE%3APS60003","Phosphoketolase signature 2"],["TED%3AAF-A0A2K9I3V8-F1-model_v4_TED01","TED novel fold AF-A0A2K9I3V8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1624","l":"Ligilactobacillus salivarius","na":1,"nb":3,"a":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]],"b":[["TED%3AAF-A0A7X2SS58-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X2SS58-F1-model_v4_TED01"],["TED%3AAF-A0A089QBS8-F1-model_v4_TED02","TED novel fold AF-A0A089QBS8-F1-model_v4_TED02"],["TED%3AAF-A0A2A2XCA8-F1-model_v4_TED01","TED novel fold AF-A0A2A2XCA8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1680","l":"Bifidobacterium adolescentis","na":1,"nb":3,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]],"b":[["TED%3AAF-A0A1X2Z2R7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1X2Z2R7-F1-model_v4_TED02"],["TED%3AAF-A0A1X2Z7X6-F1-model_v4_TED02","TED novel fold AF-A0A1X2Z7X6-F1-model_v4_TED02"],["TED%3AAF-A0A1X2ZNR8-F1-model_v4_TED04","TED novel fold AF-A0A1X2ZNR8-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":3,"nb":1,"a":[["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["TED%3AAF-A0A415C3I8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A415C3I8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1708","l":"Cellulomonas fimi","na":1,"nb":3,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["Pfam%3APF00553","Cellulose binding domain"],["PROSITE%3APS00561","CBM2a (carbohydrate-binding type-2) domain signature"],["PROSITE%3APS00591","Glycosyl hydrolases family 10 (GH10) active site"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":3,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]],"b":[["TED%3AAF-A0A142EAM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142EAM9-F1-model_v4_TED03"],["TED%3AAF-A0A1Q3DTY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3DTY6-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3DNE3-F1-model_v4_TED01","TED novel fold AF-A0A1Q3DNE3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:192","l":"Azospirillum brasilense","na":1,"nb":3,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"]],"b":[["Pfam%3APF24931","ACR9-like, ACT-like domain"],["Pfam%3APF27444","Uridylyltransferase GlnD third domain"],["TED%3AAF-A0A235H319-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A235H319-F1-model_v4_TED01"]]},{"id":"NCBITaxon:198620","l":"Pseudomonas koreensis","na":3,"nb":1,"a":[["FourSpecies_Aerobic_Lung_Microbiome_Model.html","Four-Species Aerobic Lung Microbiome Model"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["TED%3AAF-A0A1G7ALV2-F1-model_v4_TED02","TED novel fold AF-A0A1G7ALV2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:203124","l":"Trichodesmium erythraeum IMS101","na":1,"nb":3,"a":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["Pfam%3APF06206","CpeT/CpcT family (DUF1001)"],["Pfam%3APF18460","Heterocyst differentiation regulator C-terminal Hood domain"],["TED%3AAF-Q10WG6-F1-model_v4_TED05","TED highly-symmetric fold AF-Q10WG6-F1-model_v4_TED05"]]},{"id":"NCBITaxon:216816","l":"Bifidobacterium longum","na":3,"nb":1,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["TED%3AAF-A0A413ACI9-F1-model_v4_TED01","TED novel fold AF-A0A413ACI9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2208","l":"Methanosarcina barkeri","na":3,"nb":1,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["Pfam%3APF09505","Dimethylamine methyltransferase (Dimeth_PyL)"]]},{"id":"NCBITaxon:33039","l":"[Ruminococcus] torques","na":1,"nb":3,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["TED%3AAF-A0A174ZX33-F1-model_v4_TED01","TED novel fold AF-A0A174ZX33-F1-model_v4_TED01"],["TED%3AAF-A0A6N3EHF6-F1-model_v4_TED02","TED novel fold AF-A0A6N3EHF6-F1-model_v4_TED02"],["TED%3AAF-A0A6N3EHH7-F1-model_v4_TED01","TED novel fold AF-A0A6N3EHH7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":1,"nb":3,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"],["TED%3AAF-A0A7H8I034-F1-model_v4_TED01","TED novel fold AF-A0A7H8I034-F1-model_v4_TED01"]]},{"id":"NCBITaxon:582","l":"Morganella morganii","na":1,"nb":3,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["PROSITE%3APS01157","Class A bacterial acid phosphatases signature"],["TED%3AAF-A0A2C5TPE5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2C5TPE5-F1-model_v4_TED01"],["TED%3AAF-A0A0A2RJY1-F1-model_v4_TED02","TED novel fold AF-A0A0A2RJY1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:70448","l":"Ostreococcus tauri","na":1,"nb":3,"a":[["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"]],"b":[["TED%3AAF-A0A090M1U3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A090M1U3-F1-model_v4_TED02"],["TED%3AAF-A0A090M3Z3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A090M3Z3-F1-model_v4_TED01"],["TED%3AAF-A0A1Y5INV9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y5INV9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:831","l":"Butyrivibrio fibrisolvens","na":1,"nb":3,"a":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"]],"b":[["Pfam%3APF16738","Starch-binding module 26"],["Pfam%3APF18318","Glutamine synthetase C-terminal domain"],["Pfam%3APF12437","Glutamine synthetase type III N terminal"]]},{"id":"NCBITaxon:94130","l":"Rhizophagus clarus","na":1,"nb":3,"a":[["Mediterranean_AM_Fungal_SixSpecies_SynCom.html","Mediterranean AM Fungal Six-Species SynCom"]],"b":[["TED%3AAF-A0A2Z6R1J4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z6R1J4-F1-model_v4_TED01"],["TED%3AAF-A0A2Z6SKM0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z6SKM0-F1-model_v4_TED01"],["TED%3AAF-A0A2Z6S4T9-F1-model_v4_TED04","TED novel fold AF-A0A2Z6S4T9-F1-model_v4_TED04"]]},{"id":"CHEBI:134612","l":"staphyloferrin B","na":1,"nb":2,"a":[["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_134612","requires staphyloferrin B"],["proteintraitsmech%3ABIOLIP_SE8","SE8-binding site"]]},{"id":"CHEBI:15729","l":"L-ornithine","na":1,"nb":2,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["MCSA%3A12","ornithine carbamoyltransferase"],["proteintraitsmech%3ABIOLIP_ORN","ORN-binding site"]]},{"id":"CHEBI:15904","l":"long-chain fatty acid","na":1,"nb":2,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:15940","l":"nicotinic acid","na":1,"nb":2,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15940","requires nicotinic acid"],["proteintraitsmech%3ABIOLIP_NIO","NIO-binding site"]]},{"id":"CHEBI:15982","l":"cob(I)alamin","na":2,"nb":1,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15982","requires cob(I)alamin"]]},{"id":"CHEBI:16830","l":"methylamine","na":2,"nb":1,"a":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"]],"b":[["proteintraitsmech%3ABIOLIP_NME","NME-binding site"]]},{"id":"CHEBI:16914","l":"salicylic acid","na":2,"nb":1,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"]],"b":[["proteintraitsmech%3ABIOLIP_SAL","SAL-binding site"]]},{"id":"CHEBI:17747","l":"bis(2-ethylhexyl) phthalate","na":1,"nb":2,"a":[["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"]],"b":[["EC%3A3.1.1.60","bis(2-ethylhexyl)phthalate esterase"],["RHEA%3A15529","bis(2-ethylhexyl)phthalate + H2O = 2-ethylhexan-1-ol + 2-ethylhexyl phthalate + H(+)"]]},{"id":"CHEBI:179252","l":"4-Ethyl-2-methoxyphenol","na":2,"nb":1,"a":[["Sichuan_Shai_Vinegar_Yeast_Flavor_SynCom.html","Sichuan Shai Vinegar Yeast Flavor SynCom"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["RHEA%3A73959","2-methoxy-4-vinylphenol + NADH + H(+) = 4-ethyl-2-methoxyphenol + NAD(+)"]]},{"id":"CHEBI:18053","l":"1-aminocyclopropanecarboxylic acid","na":2,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["proteintraitsmech%3ABIOLIP_1AC","1AC-binding site"]]},{"id":"CHEBI:229785","l":"neodymium(3+)","na":2,"nb":1,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_ND","ND-binding site"]]},{"id":"CHEBI:23530","l":"cytokinin","na":1,"nb":2,"a":[["Staged_Cattle_Manure_Ensifer_Bacillus_SynCom.html","Staged Ensifer-Bacillus Cattle-Manure Wastewater SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"]]},{"id":"CHEBI:28073","l":"chromium atom","na":1,"nb":2,"a":[["Meghalaya_Bacillus_Consortia_A22ED9.html","Meghalaya Bacillus Consortia-A22ED9"]],"b":[["proteintraitsmech%3AMETALPDB_CR_DINUCLEAR","dinuclear chromium site"],["proteintraitsmech%3AMETALPDB_CR_MONONUCLEAR","mononuclear chromium site"]]},{"id":"CHEBI:28757","l":"fructose","na":1,"nb":2,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["GO%3A0070061","fructose binding"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:28817","l":"dodecane","na":1,"nb":2,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["RHEA%3A76739","dodecane + reduced [NADPH--hemoprotein reductase] + O2 = 5-dodecanol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["proteintraitsmech%3ABIOLIP_D12","D12-binding site"]]},{"id":"CHEBI:28837","l":"octanoic acid","na":2,"nb":1,"a":[["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["proteintraitsmech%3ABIOLIP_OCA","OCA-binding site"]]},{"id":"CHEBI:29016","l":"arginine","na":1,"nb":2,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:29073","l":"L-ascorbic acid","na":1,"nb":2,"a":[["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29073","requires L-ascorbic acid"],["proteintraitsmech%3ABIOLIP_ASC","ASC-binding site"]]},{"id":"CHEBI:29681","l":"surfactin","na":1,"nb":2,"a":[["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]]},{"id":"CHEBI:30832","l":"adipic acid","na":1,"nb":2,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["proteintraitsmech%3ABIOLIP_0L1","0L1-binding site"]]},{"id":"CHEBI:32588","l":"potassium chloride","na":2,"nb":1,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"]],"b":[["TCDB%3A2.A.30","The Cation-Chloride Cotransporter (CCC) Family"]]},{"id":"CHEBI:33284","l":"nutrient","na":2,"nb":1,"a":[["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["TCDB%3A1.A.91","The Cytoadherence-linked Asexual Protein 3.2 of Plasmodium falciparum (Clag3) Family"]]},{"id":"CHEBI:33848","l":"polycyclic arene","na":2,"nb":1,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Pelagerythrobacter_Salinicola_PES_Pyrene_Degradation_SynCom.html","Pelagerythrobacter-Salinicola PES Pyrene-Degradation SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:33913","l":"corrinoid","na":2,"nb":1,"a":[["Soil_Corrinoid_B12_Reservoir_Community.html","Soil Corrinoid Reservoir Microbial Community"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_33913","requires corrinoid"]]},{"id":"CHEBI:35381","l":"monosaccharide","na":2,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:35404","l":"chromate(2-)","na":2,"nb":1,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"]],"b":[["RHEA%3A32819","chromate(in) = chromate(out)"]]},{"id":"CHEBI:36219","l":"alpha-lactose","na":2,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"]],"b":[["RHEA%3A84479","alpha-lactose = lactulose"]]},{"id":"CHEBI:40646","l":"autoinducer-2","na":1,"nb":2,"a":[["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.86","The Autoinducer-2 Exporter (AI-2E) Family (Formerly the PerM Family, TC #9.B.22)"]]},{"id":"CHEBI:42111","l":"(R)-lactic acid","na":2,"nb":1,"a":[["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_LAC","LAC-binding site"]]},{"id":"CHEBI:44534","l":"N-(3-oxododecanoyl)-L-homoserine lactone","na":2,"nb":1,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["proteintraitsmech%3ABIOLIP_OHN","OHN-binding site"]]},{"id":"CHEBI:46442","l":"vanadate(3-)","na":2,"nb":1,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["proteintraitsmech%3ABIOLIP_VO4","VO4-binding site"]]},{"id":"CHEBI:47381","l":"diclofenac","na":1,"nb":2,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["proteintraitsmech%3ABIOLIP_DIF","DIF-binding site"]]},{"id":"CHEBI:49544","l":"chromium(3+)","na":1,"nb":2,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["RHEA%3A44372","Cr(6+) + 2 NADH + O2 = Cr(3+) + superoxide + 2 NAD(+) + 2 H(+)"],["RHEA%3A44368","Cr(6+) + 2 NADPH + O2 = Cr(3+) + superoxide + 2 NADP(+) + 2 H(+)"]]},{"id":"CHEBI:53650","l":"guaiacylglycerol-beta-guaiacyl ether","na":1,"nb":2,"a":[["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["EC%3A1.11.1.16","versatile peroxidase"],["RHEA%3A22396","1-(4-hydroxy-3-methoxyphenyl)-2-(2-methoxyphenoxy)propane-1,3-diol + H2O2 = guaiacol + vanillin + glycolaldehyde + H2O"]]},{"id":"CHEBI:61448","l":"isopropyl beta-D-thiogalactopyranoside","na":1,"nb":2,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_IPT","IPT-binding site"]]},{"id":"CHEBI:82420","l":"1-chloro-3-nitrobenzene","na":1,"nb":2,"a":[["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]],"b":[["RHEA%3A57808","1-chloro-3-nitrobenzene + NADH + O2 = 3-chlorocatechol + nitrite + NAD(+)"],["RHEA%3A57804","1-chloro-3-nitrobenzene + NADH + O2 = 4-chlorocatechol + nitrite + NAD(+)"]]},{"id":"CHEBI:84046","l":"pyoverdine","na":1,"nb":2,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_84046","requires pyoverdine"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"GO:0006568","l":"obsolete L-tryptophan metabolic process","na":1,"nb":2,"a":[["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"]],"b":[["Pfam%3APF00697","N-(5'phosphoribosyl)anthranilate (PRA) isomerase"],["Pfam%3APF00290","Tryptophan synthase alpha chain"]]},{"id":"GO:0006995","l":"cellular response to nitrogen starvation","na":1,"nb":2,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["GO%3A0006995","cellular response to nitrogen starvation"],["GO%3A0031142","induction of conjugation upon nitrogen starvation"]]},{"id":"GO:0010025","l":"wax biosynthetic process","na":1,"nb":2,"a":[["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"]],"b":[["GO%3A0010025","wax biosynthetic process"],["Reactome%3AR-HSA-9640463","Wax biosynthesis"]]},{"id":"GO:0019417","l":"sulfur oxidation","na":1,"nb":2,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["GO%3A0019417","sulfur oxidation"],["NCBIfam%3ATIGR04484","sulfur oxidation c-type cytochrome SoxA"]]},{"id":"GO:0019676","l":"ammonia assimilation cycle","na":1,"nb":2,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]],"b":[["ComplexPortal%3ACPX-5041","Glutamate synthase [NADPH] complex"],["GO%3A0019676","ammonia assimilation cycle"]]},{"id":"GO:0046359","l":"butyrate catabolic process","na":2,"nb":1,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["GO%3A0046359","butyrate catabolic process"]]},{"id":"GO:0071466","l":"cellular response to xenobiotic stimulus","na":1,"nb":2,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["ComplexPortal%3ACPX-2121","EmrE multidrug transporter complex"],["GO%3A0071466","cellular response to xenobiotic stimulus"]]},{"id":"GO:0141082","l":"symbiont-mediated detoxification of host-generated reactive oxygen species","na":1,"nb":2,"a":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["GO%3A0141082","symbiont-mediated detoxification of host-generated reactive oxygen species"],["Reactome%3AR-HSA-1222538","Tolerance by Mtb to nitric oxide produced by macrophages"]]},{"id":"NCBITaxon:105841","l":"Anaerostipes caccae","na":2,"nb":1,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["TED%3AAF-A0A6N2WKG2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N2WKG2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1245","l":"Leuconostoc mesenteroides","na":1,"nb":2,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["Pfam%3APF08951","Bacteriocin immunity protein family"],["TED%3AAF-A0A8B5R1X5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B5R1X5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1249","l":"Weissella paramesenteroides","na":1,"nb":2,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["Pfam%3APF01874","ATP:dephospho-CoA triphosphoribosyl transferase"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"]]},{"id":"NCBITaxon:1303","l":"Streptococcus oralis","na":1,"nb":2,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["Pfam%3APF03047","COMC family"],["TED%3AAF-A0A139PPG4-F1-model_v4_TED02","TED novel fold AF-A0A139PPG4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1317","l":"Streptococcus downei","na":2,"nb":1,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"],["FourSpecies_Aerobic_Lung_Microbiome_Model.html","Four-Species Aerobic Lung Microbiome Model"]],"b":[["Pfam%3APF13199","Glycosyl hydrolase family 66"]]},{"id":"NCBITaxon:1335","l":"Streptococcus equinus","na":2,"nb":1,"a":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"]],"b":[["TED%3AAF-A0A1V0GLT7-F1-model_v4_TED01","TED novel fold AF-A0A1V0GLT7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1582","l":"Lacticaseibacillus casei","na":1,"nb":2,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["Pfam%3APF07475","HPr Serine kinase C-terminal domain"],["PROSITE%3APS01163","Galactose-1-phosphate uridyl transferase family 2 signature"]]},{"id":"NCBITaxon:158836","l":"Enterobacter hormaechei","na":1,"nb":2,"a":[["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["TED%3AAF-A0A431SE22-F1-model_v4_TED01","TED novel fold AF-A0A431SE22-F1-model_v4_TED01"],["TED%3AAF-A0A8B5ZRS3-F1-model_v4_TED01","TED novel fold AF-A0A8B5ZRS3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1597","l":"Lacticaseibacillus paracasei","na":1,"nb":2,"a":[["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["Pfam%3APF09136","Glucodextranase, domain B"],["Pfam%3APF08109","Lactocin 705 family"]]},{"id":"NCBITaxon:1655","l":"Actinomyces naeslundii","na":1,"nb":2,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["Pfam%3APF16555","Gram-positive pilin subunit D1, N-terminal domain"],["TED%3AAF-A0A2Z5QNH6-F1-model_v4_TED02","TED novel fold AF-A0A2Z5QNH6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1871043","l":"Variovorax sp.","na":2,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]],"b":[["TED%3AAF-A0A2E9BKC8-F1-model_v4_TED02","TED novel fold AF-A0A2E9BKC8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1908224","l":"Sphingopyxis sp.","na":2,"nb":1,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["TED%3AAF-A0A2G2D229-F1-model_v4_TED01","TED novel fold AF-A0A2G2D229-F1-model_v4_TED01"]]},{"id":"NCBITaxon:244366","l":"Klebsiella variicola","na":2,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["TED%3AAF-A0A2N4Z4E2-F1-model_v4_TED01","TED novel fold AF-A0A2N4Z4E2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:246200","l":"Ruegeria pomeroyi DSS-3","na":1,"nb":2,"a":[["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["Pfam%3APF16867","Dimethlysulfonioproprionate lyase"],["Pfam%3APF09347","Domain of unknown function (DUF1989)"]]},{"id":"NCBITaxon:252970","l":"Paraburkholderia phenoliruptrix","na":1,"nb":2,"a":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]],"b":[["TED%3AAF-A0A6J5BF93-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6J5BF93-F1-model_v4_TED01"],["TED%3AAF-A0A6J5BWX8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6J5BWX8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":2,"nb":1,"a":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]],"b":[["PROSITE%3APS01322","Phosphotriesterase family signature 1"]]},{"id":"NCBITaxon:29466","l":"Veillonella parvula","na":2,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]],"b":[["TED%3AAF-A0A134BYG5-F1-model_v4_TED01","TED novel fold AF-A0A134BYG5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:299767","l":"Enterobacter ludwigii","na":2,"nb":1,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["TED%3AAF-W0BYN9-F1-model_v4_TED01","TED highly-symmetric fold AF-W0BYN9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:323259","l":"Methanospirillum hungatei JF-1","na":2,"nb":1,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["Pfam%3APF01864","CDP-archaeol synthase"]]},{"id":"NCBITaxon:33959","l":"Lactobacillus johnsonii","na":2,"nb":1,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]],"b":[["Pfam%3APF13518","Helix-turn-helix domain"]]},{"id":"NCBITaxon:375","l":"Bradyrhizobium japonicum","na":1,"nb":2,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"]],"b":[["TED%3AAF-A0A1L3FD53-F1-model_v4_TED02","TED novel fold AF-A0A1L3FD53-F1-model_v4_TED02"],["TED%3AAF-A0A1L3FDV4-F1-model_v4_TED02","TED novel fold AF-A0A1L3FDV4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:3818","l":"Arachis hypogaea","na":1,"nb":2,"a":[["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["TED%3AAF-A0A445AVV9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A445AVV9-F1-model_v4_TED02"],["TED%3AAF-A0A444Z3U3-F1-model_v4_TED01","TED novel fold AF-A0A444Z3U3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:40214","l":"Acinetobacter johnsonii","na":1,"nb":2,"a":[["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["Pfam%3APF12973","ChrR Cupin-like domain"],["Pfam%3APF13807","G-rich domain on putative tyrosine kinase"]]},{"id":"NCBITaxon:4530","l":"Oryza sativa","na":1,"nb":2,"a":[["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"]],"b":[["Pfam%3APF10839","Protein of unknown function (DUF2647)"],["PROSITE%3APS00937","Ribosomal protein L20 signature"]]},{"id":"NCBITaxon:582702","l":"Rhodanobacter glycinis","na":1,"nb":2,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"]],"b":[["TED%3AAF-A0A1I4G4N7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I4G4N7-F1-model_v4_TED02"],["TED%3AAF-A0A502CFB8-F1-model_v4_TED01","TED novel fold AF-A0A502CFB8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:64104","l":"Bacillus pseudomycoides","na":1,"nb":2,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["TED%3AAF-A0A1Y3MB62-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y3MB62-F1-model_v4_TED01"],["TED%3AAF-A0A2C4USY5-F1-model_v4_TED01","TED novel fold AF-A0A2C4USY5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:659243","l":"Bacillus siamensis","na":2,"nb":1,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"]],"b":[["TED%3AAF-A0A853L550-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A853L550-F1-model_v4_TED02"]]},{"id":"NCBITaxon:82380","l":"Microbacterium oxydans","na":2,"nb":1,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]],"b":[["TED%3AAF-A0A4Y4GD74-F1-model_v4_TED02","TED novel fold AF-A0A4Y4GD74-F1-model_v4_TED02"]]},{"id":"NCBITaxon:94626","l":"Brucella tritici","na":1,"nb":2,"a":[["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]],"b":[["TED%3AAF-A0A7X6FRR6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X6FRR6-F1-model_v4_TED01"],["TED%3AAF-A0A7X6JC90-F1-model_v4_TED01","TED novel fold AF-A0A7X6JC90-F1-model_v4_TED01"]]},{"id":"NCBITaxon:971","l":"Pseudoselenomonas ruminantium","na":1,"nb":2,"a":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"]],"b":[["TED%3AAF-A0A1H0QI16-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H0QI16-F1-model_v4_TED02"],["TED%3AAF-A0A1I6XHL5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I6XHL5-F1-model_v4_TED01"]]},{"id":"UBERON:0002097","l":"skin of body","na":1,"nb":2,"a":[["SkinCom_Synthetic_Skin_Community.html","SkinCom Synthetic Skin Community"]],"b":[["GO%3A0043588","skin development"],["GO%3A0043589","skin morphogenesis"]]},{"id":"CHEBI:15517","l":"butyryl-CoA","na":1,"nb":1,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_BCO","BCO-binding site"]]},{"id":"CHEBI:15859","l":"N-carbamoyl-L-aspartic acid","na":1,"nb":1,"a":[["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:16119","l":"shikimic acid","na":1,"nb":1,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["proteintraitsmech%3ABIOLIP_SKM","SKM-binding site"]]},{"id":"CHEBI:16449","l":"alanine","na":1,"nb":1,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["MCSA%3A724","repressor LexA"]]},{"id":"CHEBI:16988","l":"D-ribose","na":1,"nb":1,"a":[["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:16991","l":"deoxyribonucleic acid","na":1,"nb":1,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_DNA","DNA-binding site"]]},{"id":"CHEBI:17089","l":"glycoprotein","na":1,"nb":1,"a":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"]],"b":[["TCDB%3A9.B.417","The MCFD2/LMAN1 Complex Receptor (MLM-CR) Family"]]},{"id":"CHEBI:17359)","l":"","na":1,"nb":1,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"]],"b":[["RHEA%3A12945","2'-hydroxybiphenyl-2-sulfinate + H2O = biphenyl-2-ol + sulfite + H(+)"]]},{"id":"CHEBI:17418","l":"valeric acid","na":1,"nb":1,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_LEA","LEA-binding site"]]},{"id":"CHEBI:17642","l":"pentachlorophenol","na":1,"nb":1,"a":[["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_PCI","PCI-binding site"]]},{"id":"CHEBI:18012","l":"fumaric acid","na":1,"nb":1,"a":[["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["proteintraitsmech%3ABIOLIP_FUM","FUM-binding site"]]},{"id":"CHEBI:18186","l":"tyrosine","na":1,"nb":1,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["MCSA%3A668","leishmanolysin"]]},{"id":"CHEBI:22660","l":"aspartic acid","na":1,"nb":1,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"]]},{"id":"CHEBI:24632","l":"hydrocarbon","na":1,"nb":1,"a":[["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"]],"b":[["TCDB%3A1.B.9","The FadL Outer Membrane Protein (FadL) Family"]]},{"id":"CHEBI:26401","l":"purines","na":1,"nb":1,"a":[["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:27570","l":"histidine","na":1,"nb":1,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:28260","l":"galactose","na":1,"nb":1,"a":[["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:28808","l":"mannan","na":1,"nb":1,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"]],"b":[["TCDB%3A4.A.3","The PTS Lactose-N,N'-Diacetylchitobiose-β-glucoside (Lac) Family"]]},{"id":"CHEBI:30531","l":"pimelic acid","na":1,"nb":1,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["proteintraitsmech%3ABIOLIP_PML","PML-binding site"]]},{"id":"CHEBI:30778","l":"gallic acid","na":1,"nb":1,"a":[["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_GDE","GDE-binding site"]]},{"id":"CHEBI:32079","l":"pyrrolnitrin","na":1,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["RHEA%3A46136","aminopyrrolnitrin + NADPH + 2 O2 + H(+) = pyrrolnitrin + NADP(+) + 2 H2O"]]},{"id":"CHEBI:33198","l":"D-gluconic acid","na":1,"nb":1,"a":[["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"]],"b":[["proteintraitsmech%3ABIOLIP_GCO","GCO-binding site"]]},{"id":"CHEBI:34031","l":"1,1-dichloroethene","na":1,"nb":1,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["RHEA%3A68000","1,1-dichloroethene + AH2 = chloroethene + chloride + A + H(+)"]]},{"id":"CHEBI:34631","l":"chlorpyrifos","na":1,"nb":1,"a":[["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:35366","l":"fatty acid","na":1,"nb":1,"a":[["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:36976","l":"nucleotide","na":1,"nb":1,"a":[["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"]],"b":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"]]},{"id":"CHEBI:38155","l":"phytosiderophore","na":1,"nb":1,"a":[["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["TCDB%3A2.A.67","The Oligopeptide Transporter (OPT) Family"]]},{"id":"CHEBI:38372","l":"cis-2-dodecenoic acid","na":1,"nb":1,"a":[["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_GEY","GEY-binding site"]]},{"id":"CHEBI:41131","l":"crotonic acid","na":1,"nb":1,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_BEO","BEO-binding site"]]},{"id":"CHEBI:45441","l":"N-acetyl-L-serine","na":1,"nb":1,"a":[["Watermelon_Rhizosphere_Fusarium_SynCom8.html","Watermelon Rhizosphere Fusarium-Protective SynCom8"]],"b":[["proteintraitsmech%3ABIOLIP_SAC","SAC-binding site"]]},{"id":"CHEBI:46645","l":"isobutanol","na":1,"nb":1,"a":[["Trichoderma_Ecoli_Cellulosic_Isobutanol_Coculture.html","Trichoderma-E. coli Cellulosic Isobutanol Coculture"]],"b":[["RHEA%3A64692","isobutanol + NAD(+) = 2-methylpropanal + NADH + H(+)"]]},{"id":"CHEBI:49017","l":"3-methylthiopropanal","na":1,"nb":1,"a":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["RHEA%3A55076","4-methylsulfanyl-2-oxobutanoate + H(+) = 3-methylsulfanylpropanal + CO2"]]},{"id":"CHEBI:49890","l":"samarium(3+)","na":1,"nb":1,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_SM","SM-binding site"]]},{"id":"CHEBI:49980","l":"ytterbium(3+)","na":1,"nb":1,"a":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["proteintraitsmech%3ABIOLIP_YB","YB-binding site"]]},{"id":"CHEBI:7476","l":"naproxen","na":1,"nb":1,"a":[["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"]],"b":[["proteintraitsmech%3ABIOLIP_NPS","NPS-binding site"]]},{"id":"CHEBI:84043","l":"gallium(3+)","na":1,"nb":1,"a":[["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"GO:0006046","l":"N-acetylglucosamine catabolic process","na":1,"nb":1,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]],"b":[["GO%3A0006046","N-acetylglucosamine catabolic process"]]},{"id":"GO:0006082","l":"obsolete organic acid metabolic process","na":1,"nb":1,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["PANTHER%3APTHR43680","NITRATE REDUCTASE MOLYBDENUM COFACTOR ASSEMBLY CHAPERONE"]]},{"id":"GO:0019249","l":"lactate biosynthetic process","na":1,"nb":1,"a":[["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["GO%3A0019249","lactate biosynthetic process"]]},{"id":"GO:0019253","l":"reductive pentose-phosphate cycle","na":1,"nb":1,"a":[["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["GO%3A0019253","reductive pentose-phosphate cycle"]]},{"id":"GO:0019332","l":"aerobic respiration, using nitrite as electron donor","na":1,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"]],"b":[["GO%3A0019332","aerobic respiration, using nitrite as electron donor"]]},{"id":"GO:0022622","l":"root system development","na":1,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["GO%3A0022622","root system development"]]},{"id":"GO:0042192","l":"methylmercury biosynthetic process","na":1,"nb":1,"a":[["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"]],"b":[["GO%3A0042192","methylmercury biosynthetic process"]]},{"id":"GO:0051850","l":"acquisition of nutrients from symbiont","na":1,"nb":1,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0051850","acquisition of nutrients from symbiont"]]},{"id":"GO:0140923","l":"magnetosome assembly","na":1,"nb":1,"a":[["Tropidoatractus_Magnetotacticus_Tripartite_Syntrophy.html","Tropidoatractus magnetotacticus Magnetotactic Ciliate Tripartite Syntrophy"]],"b":[["GO%3A0140923","magnetosome assembly"]]},{"id":"GO:1902087","l":"dimethylsulfoniopropionate catabolic process","na":1,"nb":1,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["GO%3A1902087","dimethylsulfoniopropionate catabolic process"]]},{"id":"NCBITaxon:101028","l":"Fusarium pseudograminearum","na":1,"nb":1,"a":[["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["TED%3AAF-A0A7S8DXW2-F1-model_v4_TED02","TED novel fold AF-A0A7S8DXW2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1072583","l":"Vreelandella boliviensis LC1","na":1,"nb":1,"a":[["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"]],"b":[["TED%3AAF-A0A265DTH2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A265DTH2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1165","l":"Anabaena cylindrica","na":1,"nb":1,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["Pfam%3APF17275","Family of unknown function (DUF5340)"]]},{"id":"NCBITaxon:118127","l":"Chryseobacterium proteolyticum","na":1,"nb":1,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["Pfam%3APF18626","Glutaminase"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":1,"nb":1,"a":[["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["TED%3AAF-A0A132HLN2-F1-model_v4_TED01","TED novel fold AF-A0A132HLN2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1215089","l":"Planococcus halocryophilus","na":1,"nb":1,"a":[["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"]],"b":[["TED%3AAF-A0A1C7DVM0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C7DVM0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":1,"nb":1,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["PROSITE%3APS01043","Transposases, IS30 family, signature"]]},{"id":"NCBITaxon:134","l":"Methylocystis parvus","na":1,"nb":1,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"]],"b":[["TED%3AAF-A0A6B8M6B0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6B8M6B0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:138074","l":"Serratia symbiotica","na":1,"nb":1,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"]],"b":[["TED%3AAF-A0A068YYP3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A068YYP3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1399","l":"Cytobacillus firmus","na":1,"nb":1,"a":[["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"]],"b":[["TED%3AAF-A0A800NFK9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A800NFK9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1520","l":"Clostridium beijerinckii","na":1,"nb":1,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"]],"b":[["TED%3AAF-A0A0B5QQV4-F1-model_v4_TED02","TED novel fold AF-A0A0B5QQV4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1547","l":"Thomasclavelia ramosa","na":1,"nb":1,"a":[["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["TED%3AAF-A0A3E3E4C4-F1-model_v4_TED02","TED novel fold AF-A0A3E3E4C4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1585","l":"Lactobacillus delbrueckii subsp. bulgaricus","na":1,"nb":1,"a":[["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["TED%3AAF-A0A809EIY6-F1-model_v4_TED02","TED novel fold AF-A0A809EIY6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:159743","l":"Paenibacillus terrae","na":1,"nb":1,"a":[["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"]],"b":[["TED%3AAF-A0A0D7WXS4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D7WXS4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1673428","l":"Cuniculiplasma divulgatum","na":1,"nb":1,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["TED%3AAF-A0A1N5S5J2-F1-model_v4_TED02","TED novel fold AF-A0A1N5S5J2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":1,"nb":1,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["Pfam%3APF08124","Polysaccharide lyase family 8, N terminal alpha-helical domain"]]},{"id":"NCBITaxon:1920","l":"Streptomyces nigrescens","na":1,"nb":1,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["Pfam%3APF03995","Peptidase inhibitor family I36"]]},{"id":"NCBITaxon:1979961","l":"Wenzhouxiangella sp.","na":1,"nb":1,"a":[["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["TED%3AAF-A0A5Q4GWL5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Q4GWL5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:216778","l":"Stenotrophomonas rhizophila","na":1,"nb":1,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"]],"b":[["TED%3AAF-A0A023XYG6-F1-model_v4_TED02","TED novel fold AF-A0A023XYG6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2209","l":"Methanosarcina mazei","na":1,"nb":1,"a":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"]],"b":[["TED%3AAF-A0A0F8CQX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F8CQX7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:223967","l":"Methylorubrum populi","na":1,"nb":1,"a":[["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"]],"b":[["TED%3AAF-A0A161JLG1-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A161JLG1-F1-model_v4_TED04"]]},{"id":"NCBITaxon:250","l":"Chryseobacterium gleum","na":1,"nb":1,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["TED%3AAF-A0A448B167-F1-model_v4_TED02","TED novel fold AF-A0A448B167-F1-model_v4_TED02"]]},{"id":"NCBITaxon:258","l":"Sphingobacterium spiritivorum","na":1,"nb":1,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["TED%3AAF-A0A380CHI8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A380CHI8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:264198","l":"Cupriavidus pinatubonensis JMP134","na":1,"nb":1,"a":[["Rhizorhabdus_Cupriavidus_BDE47_Degradation_SynCom.html","Rhizorhabdus-Cupriavidus BDE-47 Degradation SynCom"]],"b":[["TED%3AAF-Q476D1-F1-model_v4_TED02","TED highly-symmetric fold AF-Q476D1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:270351","l":"Methylobacterium aquaticum","na":1,"nb":1,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["TED%3AAF-A0A0J6S4M9-F1-model_v4_TED02","TED novel fold AF-A0A0J6S4M9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2759","l":"Eukaryota","na":1,"nb":1,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2759","Eukaryota orthologous groups (OrthoDB)"]]},{"id":"NCBITaxon:294710","l":"Proteiniphilum acetatigenes","na":1,"nb":1,"a":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"]],"b":[["TED%3AAF-A0A101HH48-F1-model_v4_TED02","TED novel fold AF-A0A101HH48-F1-model_v4_TED02"]]},{"id":"NCBITaxon:29875","l":"Trichoderma virens","na":1,"nb":1,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"]],"b":[["Pfam%3APF07249","Cerato-platanin"]]},{"id":"NCBITaxon:316385","l":"Escherichia coli str. K-12 substr. DH10B","na":1,"nb":1,"a":[["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["Pfam%3APF06392","Acid shock protein"]]},{"id":"NCBITaxon:33905","l":"Bifidobacterium thermophilum","na":1,"nb":1,"a":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["TED%3AAF-A0A2N3QE79-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3QE79-F1-model_v4_TED01"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":1,"nb":1,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["TED%3AAF-A0A679J1E9-F1-model_v4_TED01","TED novel fold AF-A0A679J1E9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:3747","l":"Fragaria x ananassa","na":1,"nb":1,"a":[["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["PROSITE%3APS00451","Pathogenesis-related proteins Bet v I family signature"]]},{"id":"NCBITaxon:37929","l":"Glutamicibacter nicotianae","na":1,"nb":1,"a":[["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"]],"b":[["Pfam%3APF16701","Adenylate cyclase regulatory domain"]]},{"id":"NCBITaxon:38304","l":"Corynebacterium tuberculostearicum","na":1,"nb":1,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["TED%3AAF-A0A7U0H937-F1-model_v4_TED01","TED novel fold AF-A0A7U0H937-F1-model_v4_TED01"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"]],"b":[["Pfam%3APF13282","Domain of unknown function (DUF4070)"]]},{"id":"NCBITaxon:40216","l":"Acinetobacter radioresistens","na":1,"nb":1,"a":[["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["TED%3AAF-A0A7D7YF26-F1-model_v4_TED02","TED novel fold AF-A0A7D7YF26-F1-model_v4_TED02"]]},{"id":"NCBITaxon:4054","l":"Panax ginseng","na":1,"nb":1,"a":[["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"]],"b":[["Pfam%3APF26168","Glycosyltransferase, N-terminal domain"]]},{"id":"NCBITaxon:408","l":"Methylorubrum extorquens","na":1,"nb":1,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["Pfam%3APF04476","4-HFC-P synthase"]]},{"id":"NCBITaxon:453960","l":"Sulfobacillus benefaciens","na":1,"nb":1,"a":[["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"]],"b":[["TED%3AAF-A0A2T2WWZ6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2T2WWZ6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:47715","l":"Lacticaseibacillus rhamnosus","na":1,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["Pfam%3APF04914","DltD protein"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":1,"nb":1,"a":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]],"b":[["TED%3AAF-A0A4R6CRR7-F1-model_v4_TED01","TED novel fold AF-A0A4R6CRR7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:4909","l":"Pichia kudriavzevii","na":1,"nb":1,"a":[["Sichuan_Shai_Vinegar_Yeast_Flavor_SynCom.html","Sichuan Shai Vinegar Yeast Flavor SynCom"]],"b":[["TED%3AAF-A0A099P804-F1-model_v4_TED01","TED novel fold AF-A0A099P804-F1-model_v4_TED01"]]},{"id":"NCBITaxon:4911","l":"Kluyveromyces marxianus","na":1,"nb":1,"a":[["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["Pfam%3APF04684","BAF1 / ABF1 chromatin reorganising factor"]]},{"id":"NCBITaxon:5007","l":"Brettanomyces bruxellensis","na":1,"nb":1,"a":[["Sichuan_Shai_Vinegar_Yeast_Flavor_SynCom.html","Sichuan Shai Vinegar Yeast Flavor SynCom"]],"b":[["TED%3AAF-A0A7D9CWH5-F1-model_v4_TED01","TED novel fold AF-A0A7D9CWH5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":1,"nb":1,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["Pfam%3APF07335","Fungal chitosanase of glycosyl hydrolase group 75"]]},{"id":"NCBITaxon:5547","l":"Trichoderma viride","na":1,"nb":1,"a":[["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["Pfam%3APF14587","O-Glycosyl hydrolase family 30"]]},{"id":"NCBITaxon:61435","l":"Dehalococcoides mccartyi","na":1,"nb":1,"a":[["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"]],"b":[["TED%3AAF-A0A2J1E0L6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J1E0L6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:68239","l":"Streptomyces mirabilis strain P8-A","na":1,"nb":1,"a":[["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["TED%3AAF-A0A1I2Y4U7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2Y4U7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:72360","l":"Bacillus mojavensis","na":1,"nb":1,"a":[["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["Pfam%3APF05952","Bacillus competence pheromone ComX"]]},{"id":"NCBITaxon:82367","l":"Paracoccus pantotrophus","na":1,"nb":1,"a":[["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"]],"b":[["Pfam%3APF17805","AsnC-like ligand binding domain"]]},{"id":"NCBITaxon:901","l":"Desulfovibrio piger","na":1,"nb":1,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["TED%3AAF-A0A848CHH4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A848CHH4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:96241","l":"Bacillus spizizenii","na":1,"nb":1,"a":[["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"]],"b":[["Pfam%3APF05952","Bacillus competence pheromone ComX"]]},{"id":"NCBITaxon:986","l":"Flavobacterium johnsoniae","na":1,"nb":1,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["TED%3AAF-A0A1J7BWE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1J7BWE6-F1-model_v4_TED01"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/CommunityMech--TraitMech.json b/assets/fleet/edges/CommunityMech--TraitMech.json index 99916f1..d24c651 100644 --- a/assets/fleet/edges/CommunityMech--TraitMech.json +++ b/assets/fleet/edges/CommunityMech--TraitMech.json @@ -1 +1 @@ -{"a":"CommunityMech","b":"TraitMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","TraitMech":"https://culturebotai.github.io/TraitMech/pages/traits/"},"n":157,"by":{"CHEBI":61,"NCBITaxon":61,"GO":35},"terms":[{"id":"CHEBI:16526","l":"carbon dioxide","na":75,"nb":30,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]],"b":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"]]},{"id":"CHEBI:15379","l":"dioxygen","na":26,"nb":25,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["environment/aerobic.html","aerobic"],["environment/aerotolerant.html","aerotolerant"],["environment/anaerobic.html","anaerobic"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_aerobic.html","facultatively aerobic"],["environment/facultatively_anaerobic.html","facultatively anaerobic"]]},{"id":"GO:0015977","l":"carbon fixation","na":33,"nb":15,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":18,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/neutrophilic.html","neutrophilic"],["environment/non_halophilic.html","non halophilic"],["genomics/spbk_system.html","SpbK system"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":14,"nb":65,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]],"b":[["ecology/biosafety_level.html","biosafety level"],["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/host_associated.html","host-associated"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/halophily_preference.html","halophily preference"]]},{"id":"CHEBI:18276","l":"dihydrogen","na":58,"nb":13,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"]],"b":[["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/does_not_use_as_electron_donor.html","does not use as electron donor"],["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"]]},{"id":"GO:0006113","l":"fermentation","na":43,"nb":11,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"]],"b":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"],["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]]},{"id":"CHEBI:50860","l":"organic molecular entity","na":16,"nb":10,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["physiology/aerobic_anoxygenic_phototrophy.html","aerobic anoxygenic phototrophy"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"],["physiology/chemotrophic.html","chemotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"],["physiology/mixotrophic.html","mixotrophic"]]},{"id":"GO:0022900","l":"electron transport chain","na":15,"nb":10,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"]],"b":[["environment/obligately_aerobic.html","obligately aerobic"],["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/electron_transfer.html","Electron transfer"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"]]},{"id":"CHEBI:17632","l":"nitrate","na":28,"nb":9,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"],["metabolism/does_not_use_as_electron_acceptor.html","does not use as electron acceptor"]]},{"id":"CHEBI:17234","l":"glucose","na":26,"nb":9,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"]],"b":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/biopolymer_degradation.html","biopolymer degradation"],["metabolism/cellulolysis.html","cellulolysis"],["metabolism/does_not_use_as_carbon_source.html","does not use as carbon source"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/starch_degradation.html","starch degradation"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":9,"nb":11,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"]],"b":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/aerobic.html","aerobic"],["genomics/avast_system.html","AVAST system"],["genomics/jukab_system.html","JukAB system"],["morphology/motile.html","motile"]]},{"id":"GO:0009061","l":"anaerobic respiration","na":8,"nb":8,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["environment/anaerobic.html","anaerobic"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]]},{"id":"GO:0042710","l":"biofilm formation","na":29,"nb":7,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/host_associated.html","host-associated"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["ecology/plant_pathogen.html","plant pathogen"],["ecology/rhizosphere_association.html","rhizosphere association"]]},{"id":"CHEBI:16189","l":"sulfate","na":25,"nb":7,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"],["metabolism/disproportionation.html","Disproportionation"],["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"],["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":21,"nb":7,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/iron_oxidation.html","iron oxidation"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"]]},{"id":"CHEBI:15361","l":"pyruvate","na":8,"nb":7,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]]},{"id":"CHEBI:16134","l":"ammonia","na":14,"nb":6,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]],"b":[["environment/ph_delta_mid1.html","pH delta mid1"],["metabolism/nitrogen_fixation.html","nitrogen fixation"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"],["physiology/urease_activity.html","urease activity"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":6,"nb":11,"a":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"],["morphology/carboxysome.html","carboxysome"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":9,"nb":6,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]],"b":[["ecology/free_living.html","free-living"],["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["genomics/transposable_element.html","transposable element"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"]]},{"id":"GO:0009060","l":"aerobic respiration","na":6,"nb":8,"a":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Soil_CPR_Nanoarchaea_Rare_Biosphere_Community.html","Soil CPR Bacteria and Nanoarchaea Rare-Biosphere Community"]],"b":[["environment/aerobic.html","aerobic"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_aerobic.html","facultatively aerobic"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/obligately_aerobic.html","obligately aerobic"],["metabolism/aerobic_respiration.html","Aerobic respiration"]]},{"id":"CHEBI:16301","l":"nitrite","na":17,"nb":5,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"]]},{"id":"NCBITaxon:920","l":"Acidithiobacillus ferrooxidans","na":8,"nb":5,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["environment/obligately_acidophilic.html","obligately acidophilic"],["environment/ph_range_low.html","pH range low"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"],["physiology/lithotrophic.html","lithotrophic"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":7,"nb":5,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["genomics/gabija_system.html","Gabija system"],["genomics/shedu_system.html","Shedu system"],["genomics/thoeris_system.html","Thoeris system"],["physiology/caseinase_activity.html","caseinase activity"],["physiology/lecithinase_activity.html","lecithinase activity"]]},{"id":"GO:0009056","l":"catabolic process","na":6,"nb":5,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"],["Wetland_Oxygen_Sulfate_GHG_Microcosm_Community.html","Wetland Oxygen-Sulfate Greenhouse Gas Microcosm Community"]],"b":[["metabolism/metabolism.html","metabolism"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"],["physiology/heterotrophic.html","heterotrophic"],["physiology/organotrophic.html","organotrophic"]]},{"id":"GO:0006935","l":"chemotaxis","na":5,"nb":5,"a":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["SynCom_MetG2_Rhizobacteria_Sugarcane_Stress_Resilience.html","SynCom MetG2 Rhizobacteria Sugarcane Stress Resilience"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"],["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["morphology/flagellated.html","flagellated"],["morphology/motile.html","motile"],["morphology/motility.html","motility"],["physiology/chemotaxis.html","chemotaxis"],["physiology/copiotrophic.html","copiotrophic"]]},{"id":"CHEBI:30089","l":"acetate","na":78,"nb":4,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"]],"b":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":4,"nb":19,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["environment/aerotolerant.html","aerotolerant"],["genomics/abia_system.html","AbiA system"],["genomics/abib_system.html","AbiB system"],["genomics/abic_system.html","AbiC system"],["genomics/abid_system.html","AbiD system"],["genomics/abie_system.html","AbiE system"]]},{"id":"CHEBI:26833","l":"sulfur atom","na":12,"nb":4,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["metabolism/disproportionation.html","Disproportionation"],["morphology/sulfur_globule.html","sulfur globule"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/photolithotrophic.html","photolithotrophic"]]},{"id":"GO:0009372","l":"quorum sensing","na":9,"nb":4,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["ecology/plant_pathogen.html","plant pathogen"],["morphology/green_pigmented.html","green pigmented"],["morphology/swarming_motility.html","swarming motility"],["physiology/quorum_sensing.html","quorum sensing"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":4,"nb":8,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["environment/aerotolerant.html","aerotolerant"],["environment/microaerophilic.html","microaerophilic"],["environment/microaerotolerant.html","microaerotolerant"],["environment/obligately_aerobic.html","obligately aerobic"],["environment/obligately_anaerobic.html","obligately anaerobic"],["environment/oxygen_preference.html","oxygen preference"]]},{"id":"CHEBI:15138","l":"sulfide(2-)","na":4,"nb":6,"a":[["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"]],"b":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"],["metabolism/disproportionation.html","Disproportionation"],["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"],["physiology/lithoheterotrophic.html","lithoheterotrophic"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]]},{"id":"CHEBI:17245","l":"carbon monoxide","na":6,"nb":4,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Subsurface_Carboxydocella_CO_Aquifer_Community.html","Subsurface Carboxydocella CO-Oxidation Aquifer Community"]],"b":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["physiology/carboxydotrophic.html","carboxydotrophic"],["physiology/oxidase_activity.html","oxidase activity"]]},{"id":"NCBITaxon:70863","l":"Shewanella oneidensis","na":6,"nb":4,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"],["Shewanella_Pseudomonas_Fe0_Electrosyntrophic_Denitrifying_Consortium.html","Shewanella oneidensis + Pseudomonas aeruginosa Fe0-dependent Electro-syntrophic Denitrifying Consortium"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["environment/piezotolerant.html","piezotolerant"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/electron_transfer.html","Electron transfer"]]},{"id":"GO:0030001","l":"metal ion transport","na":5,"nb":4,"a":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/metal_tolerant.html","metal tolerant"]]},{"id":"CHEBI:15377","l":"water","na":4,"nb":4,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["physiology/catalase_activity.html","catalase activity"],["physiology/photoautotrophic.html","photoautotrophic"]]},{"id":"CHEBI:16183","l":"methane","na":62,"nb":3,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"]],"b":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/methanogenesis.html","Methanogenesis"],["physiology/methanotrophic.html","methanotrophic"]]},{"id":"GO:0015948","l":"methanogenesis","na":44,"nb":3,"a":[["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"]],"b":[["metabolism/acetoclastic_methanogenesis.html","acetoclastic methanogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/methyl_based_methanogenesis.html","methyl-based methanogenesis"]]},{"id":"GO:0009399","l":"nitrogen fixation","na":24,"nb":3,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"]],"b":[["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["metabolism/nitrogen_fixation.html","nitrogen fixation"],["morphology/heterocyst.html","heterocyst"]]},{"id":"CHEBI:29034","l":"iron(3+)","na":21,"nb":3,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/iron_oxidation.html","iron oxidation"],["metabolism/photoferrotrophy.html","photoferrotrophy"]]},{"id":"CHEBI:17997","l":"dinitrogen","na":12,"nb":3,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]]},{"id":"CHEBI:17750","l":"glycine betaine","na":3,"nb":8,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["environment/euryhaline.html","euryhaline"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/moderately_halophilic.html","moderately halophilic"],["environment/nacl_optimum_mid1.html","NaCl optimum mid1"],["environment/nacl_optimum_mid2.html","NaCl optimum mid2"],["environment/nacl_range_mid2.html","NaCl range mid2"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":6,"nb":3,"a":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["ecology/rhizosphere_association.html","rhizosphere association"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/psychrotolerant.html","psychrotolerant"]]},{"id":"NCBITaxon:35554","l":"Geobacter sulfurreducens","na":6,"nb":3,"a":[["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"]],"b":[["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/electron_transfer.html","Electron transfer"]]},{"id":"CHEBI:29103","l":"potassium(1+)","na":3,"nb":5,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["environment/extremely_halophilic.html","extremely halophilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/non_halophilic.html","non halophilic"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":3,"nb":5,"a":[["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["metabolism/dimethyl_sulfoxide_respiration.html","dimethyl sulfoxide respiration"],["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/electron_transfer.html","Electron transfer"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":4,"nb":3,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"],["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["environment/aerobic.html","aerobic"],["environment/obligately_aerobic.html","obligately aerobic"],["morphology/tetrad_arrangement.html","tetrad arrangement"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":4,"nb":3,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["environment/anaerobic.html","anaerobic"],["environment/strictly_anaerobic.html","strictly anaerobic"],["metabolism/fumarate_respiration.html","fumarate respiration"]]},{"id":"CHEBI:29035","l":"manganese(2+)","na":3,"nb":3,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"]],"b":[["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/lignin_degradation.html","lignin degradation"],["metabolism/manganese_oxidation.html","manganese oxidation"]]},{"id":"CHEBI:18246","l":"(1->4)-beta-D-glucan","na":27,"nb":2,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/cellulolysis.html","cellulolysis"]]},{"id":"CHEBI:16236","l":"ethanol","na":25,"nb":2,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]]},{"id":"GO:0044403","l":"biological process involved in symbiotic interaction","na":20,"nb":2,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["ecology/plant_pathogen.html","plant pathogen"],["ecology/symbiosis.html","symbiosis"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":15,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["ecology/biosafety_level_2.html","biosafety level 2"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/coccus_shaped.html","coccus shaped"]]},{"id":"CHEBI:16136","l":"hydrogen sulfide","na":12,"nb":2,"a":[["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/photolithotrophic.html","photolithotrophic"]]},{"id":"CHEBI:17790","l":"methanol","na":11,"nb":2,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"]],"b":[["physiology/methanotrophic.html","methanotrophic"],["physiology/methylotrophic.html","methylotrophic"]]},{"id":"CHEBI:6457","l":"lignin","na":10,"nb":2,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/biopolymer_degradation.html","biopolymer degradation"]]},{"id":"GO:0019329","l":"ammonia oxidation","na":10,"nb":2,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"]],"b":[["metabolism/complete_ammonia_oxidation.html","complete ammonia oxidation"],["metabolism/nitrification.html","nitrification"]]},{"id":"CHEBI:26523","l":"reactive oxygen species","na":2,"nb":9,"a":[["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["environment/aerobic.html","aerobic"],["environment/aerotolerant.html","aerotolerant"],["environment/anaerobic.html","anaerobic"],["environment/microaerophilic.html","microaerophilic"],["environment/microaerotolerant.html","microaerotolerant"],["environment/obligately_anaerobic.html","obligately anaerobic"]]},{"id":"GO:0006970","l":"response to osmotic stress","na":2,"nb":9,"a":[["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["environment/extremely_halophilic.html","extremely halophilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/halotolerant.html","halotolerant"],["environment/moderately_halophilic.html","moderately halophilic"],["environment/nacl_delta.html","NaCl delta"]]},{"id":"CHEBI:15378","l":"hydron","na":2,"nb":8,"a":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["environment/acidophilic.html","acidophilic"],["environment/acidotolerant.html","acidotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"],["environment/obligately_acidophilic.html","obligately acidophilic"]]},{"id":"NCBITaxon:818","l":"Bacteroides thetaiotaomicron","na":7,"nb":2,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["ecology/gut_associated.html","gut-associated"],["ecology/host_associated.html","host-associated"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":2,"nb":6,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"]],"b":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/oxidase_activity.html","oxidase activity"]]},{"id":"NCBITaxon:32046","l":"Synechococcus elongatus","na":6,"nb":2,"a":[["Synechococcus_Bacillus_SPC.html","Synechococcus-Bacillus Synthetic Photosynthetic Consortium"],["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"],["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"],["Synechococcus_Saccharomyces_SPC.html","Synechococcus-Saccharomyces Synthetic Photosynthetic Consortium"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["morphology/carboxysome.html","carboxysome"],["physiology/autotrophic.html","autotrophic"]]},{"id":"CHEBI:16094","l":"thiosulfate(2-)","na":2,"nb":5,"a":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["metabolism/disproportionation.html","Disproportionation"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"],["physiology/lithotrophic.html","lithotrophic"]]},{"id":"NCBITaxon:915","l":"Nitrosomonas europaea","na":2,"nb":5,"a":[["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["physiology/autotrophic.html","autotrophic"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"],["physiology/lithotrophic.html","lithotrophic"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":4,"nb":2,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["physiology/methanotrophic.html","methanotrophic"],["physiology/methylotrophic.html","methylotrophic"]]},{"id":"CHEBI:29105","l":"zinc(2+)","na":4,"nb":2,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/zinc_tolerant.html","zinc tolerant"]]},{"id":"NCBITaxon:1148","l":"Synechocystis sp. PCC 6803","na":2,"nb":4,"a":[["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/trophic_type.html","trophic type"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":4,"nb":2,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["genomics/crispr_cas_system.html","CRISPR-Cas system"],["genomics/phage_defense_system.html","phage defense system"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":2,"nb":4,"a":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["ecology/mutualism.html","mutualism"],["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["ecology/symbiosis.html","symbiosis"],["genomics/hna_system.html","Hna system"]]},{"id":"CHEBI:17045","l":"dinitrogen oxide","na":3,"nb":2,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"]],"b":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["physiology/chemolithotrophic.html","chemolithotrophic"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":3,"nb":2,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["genomics/abialpha_system.html","AbiAlpha system"],["physiology/gelatinase_activity.html","gelatinase activity"]]},{"id":"NCBITaxon:28116","l":"Bacteroides ovatus","na":3,"nb":2,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["metabolism/xylan_degradation.html","xylan degradation"],["physiology/amylase_activity.html","amylase activity"]]},{"id":"GO:0006099","l":"tricarboxylic acid cycle","na":2,"nb":2,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["physiology/heterotrophic.html","heterotrophic"],["physiology/organoheterotrophic.html","organoheterotrophic"]]},{"id":"NCBITaxon:272562","l":"Clostridium acetobutylicum (strain ATCC 824 / DSM 792 / JCM 1419 / IAM 19013 / LMG 5710 / NBRC 13948 / NRRL B-527 / VKM B-1787 / 2291 / W)","na":2,"nb":2,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["metabolism/acetone_butanol_ethanol_fermentation.html","acetone-butanol-ethanol fermentation"],["metabolism/fermentation.html","Fermentation"]]},{"id":"NCBITaxon:408","l":"Methylorubrum extorquens","na":2,"nb":2,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["morphology/pink_pigmented.html","pink pigmented"],["physiology/methylotrophic.html","methylotrophic"]]},{"id":"GO:0015979","l":"photosynthesis","na":44,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["metabolism/photosynthesis.html","photosynthesis"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":1,"nb":26,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["environment/ph_phenotype_with_numerical_limits.html","pH phenotype with numerical limits"],["environment/temperature_optimum_mid4.html","temperature optimum mid4"],["genomics/rnlab_system.html","RnlAB system"],["metabolism/metabolism.html","metabolism"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/respiration.html","respiration"]]},{"id":"CHEBI:15740","l":"formate","na":23,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"]],"b":[["metabolism/syntrophy.html","Syntrophy"]]},{"id":"CHEBI:24996","l":"lactate","na":22,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]]},{"id":"CHEBI:17968","l":"butyrate","na":19,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"]],"b":[["ecology/gut_associated.html","gut-associated"]]},{"id":"CHEBI:28938","l":"ammonium","na":19,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]]},{"id":"GO:0019420","l":"dissimilatory sulfate reduction","na":17,"nb":1,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["DVM_Triculture.html","DVM Tri-culture"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"]],"b":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]]},{"id":"GO:0051453","l":"regulation of intracellular pH","na":1,"nb":17,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["environment/acidophilic.html","acidophilic"],["environment/acidotolerant.html","acidotolerant"],["environment/alkalotolerant.html","alkalotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"]]},{"id":"GO:0019333","l":"denitrification pathway","na":13,"nb":1,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"]],"b":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"]]},{"id":"CHEBI:17272","l":"propionate","na":11,"nb":1,"a":[["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"]],"b":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]]},{"id":"GO:0045493","l":"xylan catabolic process","na":11,"nb":1,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["metabolism/xylan_degradation.html","xylan degradation"]]},{"id":"CHEBI:29036","l":"copper(2+)","na":10,"nb":1,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["environment/copper_tolerant.html","copper tolerant"]]},{"id":"CHEBI:26710","l":"sodium chloride","na":9,"nb":1,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["environment/halophilic.html","halophilic"]]},{"id":"CHEBI:18222","l":"xylose","na":8,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]],"b":[["metabolism/xylan_degradation.html","xylan degradation"]]},{"id":"GO:0046274","l":"lignin catabolic process","na":8,"nb":1,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"]],"b":[["metabolism/lignin_degradation.html","lignin degradation"]]},{"id":"CHEBI:17057","l":"cellobiose","na":7,"nb":1,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["metabolism/cellulolysis.html","cellulolysis"]]},{"id":"CHEBI:29101","l":"sodium(1+)","na":1,"nb":7,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"]],"b":[["environment/alkaphilic.html","alkaliphilic"],["environment/euryhaline.html","euryhaline"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/nacl_delta_mid2.html","NaCl delta mid2"]]},{"id":"CHEBI:64709","l":"organic acid","na":7,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":1,"nb":7,"a":[["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/copper_tolerant.html","copper tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["environment/metal_tolerant.html","metal tolerant"]]},{"id":"NCBITaxon:1488","l":"Clostridium acetobutylicum","na":1,"nb":7,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["environment/anaerobic.html","anaerobic"],["environment/obligately_anaerobic.html","obligately anaerobic"],["metabolism/fermentation.html","Fermentation"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"],["morphology/gram_variable.html","gram variable"],["morphology/spindle_shaped.html","spindle shaped"]]},{"id":"GO:0006979","l":"response to oxidative stress","na":6,"nb":1,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["physiology/oxidative_stress_response.html","oxidative stress response"]]},{"id":"GO:0009292","l":"horizontal gene transfer","na":1,"nb":6,"a":[["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"]],"b":[["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["genomics/genome_size.html","genome size"],["genomics/genomic_island.html","genomic island"],["genomics/mobile_genetic_element.html","mobile genetic element"],["genomics/pangenome_openness.html","pangenome openness"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":1,"nb":6,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["ecology/animal_pathogen.html","animal pathogen"],["ecology/biosafety_level_2.html","biosafety level 2"],["genomics/genomic_island.html","genomic island"],["genomics/prophage.html","prophage"],["morphology/flagellated.html","flagellated"],["morphology/peritrichous.html","peritrichous"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":6,"nb":1,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]]},{"id":"CHEBI:61266","l":"hemicellulose","na":5,"nb":1,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"],["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["ecology/saprotrophy.html","saprotrophy"]]},{"id":"CHEBI:16199","l":"urea","na":4,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["physiology/urease_activity.html","urease activity"]]},{"id":"CHEBI:17029","l":"chitin","na":4,"nb":1,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]],"b":[["metabolism/chitinolysis.html","chitinolysis"]]},{"id":"CHEBI:48775","l":"cadmium(2+)","na":4,"nb":1,"a":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Meghalaya_Bacillus_Consortia_A22ED9.html","Meghalaya Bacillus Consortia-A22ED9"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["SynCom_Pseudomonas_Rahnella_Artemisia_Phytoremediation.html","Pseudomonas-Rahnella native rhizosphere SynCom for Artemisia argyi phytoremediation"]],"b":[["environment/cadmium_tolerant.html","cadmium tolerant"]]},{"id":"GO:0006412","l":"translation","na":1,"nb":4,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["environment/mesophilic.html","mesophilic"],["genomics/codon_usage_bias.html","codon usage bias"],["physiology/cold_shock_response.html","cold shock response"],["physiology/dormancy.html","dormancy"]]},{"id":"GO:0009252","l":"peptidoglycan biosynthetic process","na":1,"nb":4,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"]],"b":[["morphology/bacillus_shaped.html","bacillus shaped"],["morphology/cell_shape.html","cell shape"],["morphology/coccobacillus_shaped.html","coccobacillus shaped"],["morphology/rod_shaped.html","rod shaped"]]},{"id":"GO:0019253","l":"reductive pentose-phosphate cycle","na":1,"nb":4,"a":[["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["physiology/autotrophic.html","autotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/photoautotrophic.html","photoautotrophic"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":4,"nb":1,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["metabolism/starch_degradation.html","starch degradation"]]},{"id":"NCBITaxon:165695","l":"Sphingobium","na":4,"nb":1,"a":[["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["Sphingobium_Nitrososphaera_Phenanthrene_Carbon_SynCom.html","Sphingobium-Nitrososphaera Phenanthrene-Carbon SynCom"],["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["metabolism/lignin_degradation.html","lignin degradation"]]},{"id":"NCBITaxon:243164","l":"Dehalococcoides mccartyi 195","na":4,"nb":1,"a":[["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["metabolism/organohalide_respiration.html","organohalide respiration"]]},{"id":"NCBITaxon:863","l":"Syntrophomonas wolfei","na":4,"nb":1,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["metabolism/syntrophy.html","Syntrophy"]]},{"id":"CHEBI:26672","l":"siderophore","na":3,"nb":1,"a":[["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"]],"b":[["physiology/siderophore_production.html","siderophore production"]]},{"id":"CHEBI:48828","l":"cobalt(2+)","na":3,"nb":1,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"]],"b":[["environment/cobalt_tolerant.html","cobalt tolerant"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":1,"nb":3,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["ecology/commensalism.html","commensalism"],["genomics/nhi_system.html","Nhi system"],["other/coagulase_negative.html","coagulase negative"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":3,"nb":1,"a":[["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["morphology/branched_shaped.html","branched shaped"]]},{"id":"NCBITaxon:33952","l":"Acetobacterium woodii","na":3,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["metabolism/homoacetogenesis.html","Homoacetogenesis"]]},{"id":"NCBITaxon:54298","l":"Chroococcidiopsis","na":1,"nb":3,"a":[["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"]],"b":[["environment/desiccation_tolerant.html","desiccation tolerant"],["environment/uv_radiation_tolerant.html","UV radiation tolerant"],["environment/xerophilic.html","xerophilic"]]},{"id":"CHEBI:15354","l":"choline","na":2,"nb":1,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["environment/euryhaline.html","euryhaline"]]},{"id":"CHEBI:16480","l":"nitric oxide","na":2,"nb":1,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"]],"b":[["ecology/biofilm_formation.html","biofilm formation"]]},{"id":"CHEBI:16838","l":"polyphosphate","na":2,"nb":1,"a":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"]],"b":[["environment/zinc_tolerant.html","zinc tolerant"]]},{"id":"CHEBI:16947","l":"citrate(3-)","na":2,"nb":1,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"]]},{"id":"CHEBI:29806","l":"fumarate(2-)","na":2,"nb":1,"a":[["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]]},{"id":"GO:0005983","l":"starch catabolic process","na":2,"nb":1,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"]],"b":[["metabolism/starch_degradation.html","starch degradation"]]},{"id":"GO:0009408","l":"response to heat","na":2,"nb":1,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["PMI_Variovorax_Thermotolerance_Collection.html","PMI Variovorax Thermotolerance Collection"]],"b":[["physiology/heat_shock_response.html","heat shock response"]]},{"id":"GO:0019332","l":"aerobic respiration, using nitrite as electron donor","na":1,"nb":2,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"]],"b":[["metabolism/complete_ammonia_oxidation.html","complete ammonia oxidation"],["metabolism/nitrification.html","nitrification"]]},{"id":"GO:0019417","l":"sulfur oxidation","na":1,"nb":2,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["physiology/lithotrophic.html","lithotrophic"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]]},{"id":"GO:0071973","l":"bacterial-type flagellum-dependent cell motility","na":1,"nb":2,"a":[["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"]],"b":[["ecology/soil_dwelling.html","soil-dwelling"],["morphology/swarming_motility.html","swarming motility"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":1,"nb":2,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["genomics/gc_mid1.html","GC mid1"],["metabolism/lignin_degradation.html","lignin degradation"]]},{"id":"NCBITaxon:1021","l":"Beggiatoa","na":1,"nb":2,"a":[["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"]],"b":[["morphology/filament_shaped.html","filament shaped"],["physiology/mixotrophic.html","mixotrophic"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":2,"nb":1,"a":[["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["physiology/photoheterotrophic.html","photoheterotrophic"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":1,"nb":2,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["morphology/carboxysome.html","carboxysome"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":2,"nb":1,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["physiology/lipase_activity.html","lipase activity"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":2,"nb":1,"a":[["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]],"b":[["metabolism/cellulolysis.html","cellulolysis"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":2,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]],"b":[["genomics/wadjet_system.html","Wadjet system"],["morphology/irregular_shaped.html","irregular shaped"]]},{"id":"NCBITaxon:180","l":"Leptospirillum ferrooxidans","na":2,"nb":1,"a":[["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"]],"b":[["metabolism/iron_oxidation.html","iron oxidation"]]},{"id":"NCBITaxon:2822231","l":"Phanerodontia chrysosporium","na":2,"nb":1,"a":[["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"]],"b":[["metabolism/manganese_oxidation.html","manganese oxidation"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":1,"nb":2,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["genomics/ploidy.html","ploidy"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":2,"nb":1,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["ecology/opportunistic_pathogen.html","opportunistic pathogen"]]},{"id":"NCBITaxon:542","l":"Zymomonas mobilis","na":1,"nb":2,"a":[["Zymomonas_Ecoli_Exometabolomics_Obligate_Mutualism.html","Zymomonas-E. coli Exometabolomics-Designed Obligate Mutualism"]],"b":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["physiology/nad_dependent_alcohol_dehydrogenase_activity.html","NAD-dependent alcohol dehydrogenase activity"]]},{"id":"NCBITaxon:69823","l":"Selenomonas sputigena","na":1,"nb":2,"a":[["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"]],"b":[["physiology/alpha_galactosidase_activity.html","alpha-galactosidase activity"],["physiology/beta_galactosidase_activity.html","beta-galactosidase activity"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":2,"nb":1,"a":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["morphology/motility.html","motility"]]},{"id":"CHEBI:16170","l":"mercury(0)","na":1,"nb":1,"a":[["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["environment/mercury_tolerant.html","mercury tolerant"]]},{"id":"CHEBI:16856","l":"glutathione","na":1,"nb":1,"a":[["Zymomonas_Ecoli_Exometabolomics_Obligate_Mutualism.html","Zymomonas-E. coli Exometabolomics-Designed Obligate Mutualism"]],"b":[["environment/zinc_tolerant.html","zinc tolerant"]]},{"id":"CHEBI:17203","l":"L-proline","na":1,"nb":1,"a":[["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["environment/non_halophilic.html","non halophilic"]]},{"id":"CHEBI:50699","l":"oligosaccharide","na":1,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["metabolism/biopolymer_degradation.html","biopolymer degradation"]]},{"id":"GO:0006260","l":"DNA replication","na":1,"nb":1,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["genomics/gc_skew.html","GC skew"]]},{"id":"GO:0006950","l":"response to stress","na":1,"nb":1,"a":[["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"]],"b":[["physiology/stress_response.html","stress response"]]},{"id":"GO:0044409","l":"symbiont entry into host","na":1,"nb":1,"a":[["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"]],"b":[["ecology/plant_pathogen.html","plant pathogen"]]},{"id":"NCBITaxon:1219","l":"Prochlorococcus marinus","na":1,"nb":1,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["genomics/genome_streamlining.html","genome streamlining"]]},{"id":"NCBITaxon:132919","l":"Rhodococcus jostii","na":1,"nb":1,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["metabolism/lignin_degradation.html","lignin degradation"]]},{"id":"NCBITaxon:1519","l":"Clostridium tyrobutyricum","na":1,"nb":1,"a":[["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["metabolism/butyric_acid_fermentation.html","butyric acid fermentation"]]},{"id":"NCBITaxon:1579","l":"Lactobacillus acidophilus","na":1,"nb":1,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["environment/acidotolerant.html","acidotolerant"]]},{"id":"NCBITaxon:1708","l":"Cellulomonas fimi","na":1,"nb":1,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["metabolism/biopolymer_degradation.html","biopolymer degradation"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii (strain ATCC 43067 / DSM 2661 / JAL-1 / JCM 10045 / NBRC 100440)","na":1,"nb":1,"a":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]],"b":[["metabolism/methanogenesis.html","Methanogenesis"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima (strain ATCC 43589 / DSM 3109 / JCM 10099 / NBRC 100826 / MSB8)","na":1,"nb":1,"a":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]],"b":[["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"]]},{"id":"NCBITaxon:258594","l":"Rhodopseudomonas palustris CGA009","na":1,"nb":1,"a":[["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"]],"b":[["physiology/photoorganoheterotrophic.html","photoorganoheterotrophic"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"]],"b":[["metabolism/photoferrotrophy.html","photoferrotrophy"]]}]} \ No newline at end of file +{"a":"CommunityMech","b":"TraitMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","TraitMech":"https://culturebotai.github.io/TraitMech/pages/traits/"},"n":157,"by":{"CHEBI":61,"NCBITaxon":61,"GO":35},"terms":[{"id":"CHEBI:16526","l":"carbon dioxide","na":75,"nb":30,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]],"b":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"]]},{"id":"CHEBI:15379","l":"dioxygen","na":25,"nb":25,"a":[["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["environment/aerobic.html","aerobic"],["environment/aerotolerant.html","aerotolerant"],["environment/anaerobic.html","anaerobic"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_aerobic.html","facultatively aerobic"],["environment/facultatively_anaerobic.html","facultatively anaerobic"]]},{"id":"GO:0015977","l":"carbon fixation","na":33,"nb":15,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":18,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/neutrophilic.html","neutrophilic"],["environment/non_halophilic.html","non halophilic"],["genomics/spbk_system.html","SpbK system"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":14,"nb":65,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]],"b":[["ecology/biosafety_level.html","biosafety level"],["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/host_associated.html","host-associated"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/halophily_preference.html","halophily preference"]]},{"id":"CHEBI:18276","l":"dihydrogen","na":58,"nb":13,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"]],"b":[["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/does_not_use_as_electron_donor.html","does not use as electron donor"],["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"]]},{"id":"GO:0006113","l":"fermentation","na":43,"nb":11,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"]],"b":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"],["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]]},{"id":"CHEBI:50860","l":"organic molecular entity","na":16,"nb":10,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["physiology/aerobic_anoxygenic_phototrophy.html","aerobic anoxygenic phototrophy"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"],["physiology/chemotrophic.html","chemotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"],["physiology/mixotrophic.html","mixotrophic"]]},{"id":"GO:0022900","l":"electron transport chain","na":15,"nb":10,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"]],"b":[["environment/obligately_aerobic.html","obligately aerobic"],["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/electron_transfer.html","Electron transfer"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"]]},{"id":"CHEBI:17632","l":"nitrate","na":28,"nb":9,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"],["metabolism/does_not_use_as_electron_acceptor.html","does not use as electron acceptor"]]},{"id":"CHEBI:17234","l":"glucose","na":26,"nb":9,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"]],"b":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/biopolymer_degradation.html","biopolymer degradation"],["metabolism/cellulolysis.html","cellulolysis"],["metabolism/does_not_use_as_carbon_source.html","does not use as carbon source"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/starch_degradation.html","starch degradation"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":9,"nb":11,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"]],"b":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/aerobic.html","aerobic"],["genomics/avast_system.html","AVAST system"],["genomics/jukab_system.html","JukAB system"],["morphology/motile.html","motile"]]},{"id":"GO:0009061","l":"anaerobic respiration","na":8,"nb":8,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["environment/anaerobic.html","anaerobic"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]]},{"id":"GO:0042710","l":"biofilm formation","na":29,"nb":7,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/host_associated.html","host-associated"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["ecology/plant_pathogen.html","plant pathogen"],["ecology/rhizosphere_association.html","rhizosphere association"]]},{"id":"CHEBI:16189","l":"sulfate","na":25,"nb":7,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"],["metabolism/disproportionation.html","Disproportionation"],["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"],["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":21,"nb":7,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/iron_oxidation.html","iron oxidation"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"]]},{"id":"CHEBI:15361","l":"pyruvate","na":8,"nb":7,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]]},{"id":"CHEBI:16134","l":"ammonia","na":14,"nb":6,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]],"b":[["environment/ph_delta_mid1.html","pH delta mid1"],["metabolism/nitrogen_fixation.html","nitrogen fixation"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"],["physiology/urease_activity.html","urease activity"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":6,"nb":11,"a":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"],["morphology/carboxysome.html","carboxysome"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":9,"nb":6,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]],"b":[["ecology/free_living.html","free-living"],["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["genomics/transposable_element.html","transposable element"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"]]},{"id":"CHEBI:16301","l":"nitrite","na":17,"nb":5,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"]]},{"id":"GO:0009060","l":"aerobic respiration","na":5,"nb":8,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Soil_CPR_Nanoarchaea_Rare_Biosphere_Community.html","Soil CPR Bacteria and Nanoarchaea Rare-Biosphere Community"]],"b":[["environment/aerobic.html","aerobic"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_aerobic.html","facultatively aerobic"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/obligately_aerobic.html","obligately aerobic"],["metabolism/aerobic_respiration.html","Aerobic respiration"]]},{"id":"NCBITaxon:920","l":"Acidithiobacillus ferrooxidans","na":8,"nb":5,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["environment/obligately_acidophilic.html","obligately acidophilic"],["environment/ph_range_low.html","pH range low"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"],["physiology/lithotrophic.html","lithotrophic"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":7,"nb":5,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["genomics/gabija_system.html","Gabija system"],["genomics/shedu_system.html","Shedu system"],["genomics/thoeris_system.html","Thoeris system"],["physiology/caseinase_activity.html","caseinase activity"],["physiology/lecithinase_activity.html","lecithinase activity"]]},{"id":"GO:0009056","l":"catabolic process","na":6,"nb":5,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"],["Wetland_Oxygen_Sulfate_GHG_Microcosm_Community.html","Wetland Oxygen-Sulfate Greenhouse Gas Microcosm Community"]],"b":[["metabolism/metabolism.html","metabolism"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"],["physiology/heterotrophic.html","heterotrophic"],["physiology/organotrophic.html","organotrophic"]]},{"id":"GO:0006935","l":"chemotaxis","na":5,"nb":5,"a":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["SynCom_MetG2_Rhizobacteria_Sugarcane_Stress_Resilience.html","SynCom MetG2 Rhizobacteria Sugarcane Stress Resilience"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"],["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["morphology/flagellated.html","flagellated"],["morphology/motile.html","motile"],["morphology/motility.html","motility"],["physiology/chemotaxis.html","chemotaxis"],["physiology/copiotrophic.html","copiotrophic"]]},{"id":"CHEBI:30089","l":"acetate","na":78,"nb":4,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"]],"b":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":4,"nb":19,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["environment/aerotolerant.html","aerotolerant"],["genomics/abia_system.html","AbiA system"],["genomics/abib_system.html","AbiB system"],["genomics/abic_system.html","AbiC system"],["genomics/abid_system.html","AbiD system"],["genomics/abie_system.html","AbiE system"]]},{"id":"CHEBI:26833","l":"sulfur atom","na":12,"nb":4,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["metabolism/disproportionation.html","Disproportionation"],["morphology/sulfur_globule.html","sulfur globule"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/photolithotrophic.html","photolithotrophic"]]},{"id":"GO:0009372","l":"quorum sensing","na":9,"nb":4,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["ecology/plant_pathogen.html","plant pathogen"],["morphology/green_pigmented.html","green pigmented"],["morphology/swarming_motility.html","swarming motility"],["physiology/quorum_sensing.html","quorum sensing"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":4,"nb":8,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["environment/aerotolerant.html","aerotolerant"],["environment/microaerophilic.html","microaerophilic"],["environment/microaerotolerant.html","microaerotolerant"],["environment/obligately_aerobic.html","obligately aerobic"],["environment/obligately_anaerobic.html","obligately anaerobic"],["environment/oxygen_preference.html","oxygen preference"]]},{"id":"CHEBI:15138","l":"sulfide(2-)","na":4,"nb":6,"a":[["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"]],"b":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"],["metabolism/disproportionation.html","Disproportionation"],["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"],["physiology/lithoheterotrophic.html","lithoheterotrophic"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]]},{"id":"CHEBI:17245","l":"carbon monoxide","na":6,"nb":4,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Subsurface_Carboxydocella_CO_Aquifer_Community.html","Subsurface Carboxydocella CO-Oxidation Aquifer Community"]],"b":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["physiology/carboxydotrophic.html","carboxydotrophic"],["physiology/oxidase_activity.html","oxidase activity"]]},{"id":"NCBITaxon:70863","l":"Shewanella oneidensis","na":6,"nb":4,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"],["Shewanella_Pseudomonas_Fe0_Electrosyntrophic_Denitrifying_Consortium.html","Shewanella oneidensis + Pseudomonas aeruginosa Fe0-dependent Electro-syntrophic Denitrifying Consortium"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["environment/piezotolerant.html","piezotolerant"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/electron_transfer.html","Electron transfer"]]},{"id":"CHEBI:15377","l":"water","na":4,"nb":4,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["physiology/catalase_activity.html","catalase activity"],["physiology/photoautotrophic.html","photoautotrophic"]]},{"id":"CHEBI:16183","l":"methane","na":62,"nb":3,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"]],"b":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/methanogenesis.html","Methanogenesis"],["physiology/methanotrophic.html","methanotrophic"]]},{"id":"GO:0015948","l":"methanogenesis","na":44,"nb":3,"a":[["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"]],"b":[["metabolism/acetoclastic_methanogenesis.html","acetoclastic methanogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/methyl_based_methanogenesis.html","methyl-based methanogenesis"]]},{"id":"GO:0009399","l":"nitrogen fixation","na":24,"nb":3,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"]],"b":[["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["metabolism/nitrogen_fixation.html","nitrogen fixation"],["morphology/heterocyst.html","heterocyst"]]},{"id":"CHEBI:29034","l":"iron(3+)","na":21,"nb":3,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/iron_oxidation.html","iron oxidation"],["metabolism/photoferrotrophy.html","photoferrotrophy"]]},{"id":"CHEBI:17997","l":"dinitrogen","na":12,"nb":3,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]]},{"id":"CHEBI:17750","l":"glycine betaine","na":3,"nb":8,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["environment/euryhaline.html","euryhaline"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/moderately_halophilic.html","moderately halophilic"],["environment/nacl_optimum_mid1.html","NaCl optimum mid1"],["environment/nacl_optimum_mid2.html","NaCl optimum mid2"],["environment/nacl_range_mid2.html","NaCl range mid2"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":6,"nb":3,"a":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["ecology/rhizosphere_association.html","rhizosphere association"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/psychrotolerant.html","psychrotolerant"]]},{"id":"NCBITaxon:35554","l":"Geobacter sulfurreducens","na":6,"nb":3,"a":[["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"]],"b":[["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/electron_transfer.html","Electron transfer"]]},{"id":"CHEBI:29103","l":"potassium(1+)","na":3,"nb":5,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["environment/extremely_halophilic.html","extremely halophilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/non_halophilic.html","non halophilic"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":3,"nb":5,"a":[["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["metabolism/dimethyl_sulfoxide_respiration.html","dimethyl sulfoxide respiration"],["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/electron_transfer.html","Electron transfer"]]},{"id":"GO:0030001","l":"metal ion transport","na":3,"nb":4,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/metal_tolerant.html","metal tolerant"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":4,"nb":3,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"],["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["environment/aerobic.html","aerobic"],["environment/obligately_aerobic.html","obligately aerobic"],["morphology/tetrad_arrangement.html","tetrad arrangement"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":4,"nb":3,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["environment/anaerobic.html","anaerobic"],["environment/strictly_anaerobic.html","strictly anaerobic"],["metabolism/fumarate_respiration.html","fumarate respiration"]]},{"id":"CHEBI:29035","l":"manganese(2+)","na":3,"nb":3,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"]],"b":[["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/lignin_degradation.html","lignin degradation"],["metabolism/manganese_oxidation.html","manganese oxidation"]]},{"id":"CHEBI:18246","l":"(1->4)-beta-D-glucan","na":27,"nb":2,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/cellulolysis.html","cellulolysis"]]},{"id":"CHEBI:16236","l":"ethanol","na":25,"nb":2,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]]},{"id":"GO:0044403","l":"biological process involved in symbiotic interaction","na":20,"nb":2,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["ecology/plant_pathogen.html","plant pathogen"],["ecology/symbiosis.html","symbiosis"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":15,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["ecology/biosafety_level_2.html","biosafety level 2"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/coccus_shaped.html","coccus shaped"]]},{"id":"CHEBI:16136","l":"hydrogen sulfide","na":12,"nb":2,"a":[["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/photolithotrophic.html","photolithotrophic"]]},{"id":"CHEBI:17790","l":"methanol","na":10,"nb":2,"a":[["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"]],"b":[["physiology/methanotrophic.html","methanotrophic"],["physiology/methylotrophic.html","methylotrophic"]]},{"id":"CHEBI:6457","l":"lignin","na":10,"nb":2,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/biopolymer_degradation.html","biopolymer degradation"]]},{"id":"GO:0019329","l":"ammonia oxidation","na":10,"nb":2,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"]],"b":[["metabolism/complete_ammonia_oxidation.html","complete ammonia oxidation"],["metabolism/nitrification.html","nitrification"]]},{"id":"CHEBI:26523","l":"reactive oxygen species","na":2,"nb":9,"a":[["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["environment/aerobic.html","aerobic"],["environment/aerotolerant.html","aerotolerant"],["environment/anaerobic.html","anaerobic"],["environment/microaerophilic.html","microaerophilic"],["environment/microaerotolerant.html","microaerotolerant"],["environment/obligately_anaerobic.html","obligately anaerobic"]]},{"id":"GO:0006970","l":"response to osmotic stress","na":2,"nb":9,"a":[["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["environment/extremely_halophilic.html","extremely halophilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/halotolerant.html","halotolerant"],["environment/moderately_halophilic.html","moderately halophilic"],["environment/nacl_delta.html","NaCl delta"]]},{"id":"NCBITaxon:818","l":"Bacteroides thetaiotaomicron","na":7,"nb":2,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["ecology/gut_associated.html","gut-associated"],["ecology/host_associated.html","host-associated"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":2,"nb":6,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"]],"b":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/oxidase_activity.html","oxidase activity"]]},{"id":"NCBITaxon:32046","l":"Synechococcus elongatus","na":6,"nb":2,"a":[["Synechococcus_Bacillus_SPC.html","Synechococcus-Bacillus Synthetic Photosynthetic Consortium"],["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"],["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"],["Synechococcus_Saccharomyces_SPC.html","Synechococcus-Saccharomyces Synthetic Photosynthetic Consortium"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["morphology/carboxysome.html","carboxysome"],["physiology/autotrophic.html","autotrophic"]]},{"id":"CHEBI:16094","l":"thiosulfate(2-)","na":2,"nb":5,"a":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["metabolism/disproportionation.html","Disproportionation"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"],["physiology/lithotrophic.html","lithotrophic"]]},{"id":"NCBITaxon:915","l":"Nitrosomonas europaea","na":2,"nb":5,"a":[["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["physiology/autotrophic.html","autotrophic"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"],["physiology/lithotrophic.html","lithotrophic"]]},{"id":"CHEBI:29105","l":"zinc(2+)","na":4,"nb":2,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/zinc_tolerant.html","zinc tolerant"]]},{"id":"NCBITaxon:1148","l":"Synechocystis sp. PCC 6803","na":2,"nb":4,"a":[["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/trophic_type.html","trophic type"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":4,"nb":2,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["genomics/crispr_cas_system.html","CRISPR-Cas system"],["genomics/phage_defense_system.html","phage defense system"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":2,"nb":4,"a":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["ecology/mutualism.html","mutualism"],["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["ecology/symbiosis.html","symbiosis"],["genomics/hna_system.html","Hna system"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":3,"nb":2,"a":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["physiology/methanotrophic.html","methanotrophic"],["physiology/methylotrophic.html","methylotrophic"]]},{"id":"CHEBI:17045","l":"dinitrogen oxide","na":3,"nb":2,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"]],"b":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["physiology/chemolithotrophic.html","chemolithotrophic"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":3,"nb":2,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["genomics/abialpha_system.html","AbiAlpha system"],["physiology/gelatinase_activity.html","gelatinase activity"]]},{"id":"NCBITaxon:28116","l":"Bacteroides ovatus","na":3,"nb":2,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["metabolism/xylan_degradation.html","xylan degradation"],["physiology/amylase_activity.html","amylase activity"]]},{"id":"GO:0006099","l":"tricarboxylic acid cycle","na":2,"nb":2,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["physiology/heterotrophic.html","heterotrophic"],["physiology/organoheterotrophic.html","organoheterotrophic"]]},{"id":"NCBITaxon:272562","l":"Clostridium acetobutylicum (strain ATCC 824 / DSM 792 / JCM 1419 / IAM 19013 / LMG 5710 / NBRC 13948 / NRRL B-527 / VKM B-1787 / 2291 / W)","na":2,"nb":2,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["metabolism/acetone_butanol_ethanol_fermentation.html","acetone-butanol-ethanol fermentation"],["metabolism/fermentation.html","Fermentation"]]},{"id":"GO:0015979","l":"photosynthesis","na":44,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["metabolism/photosynthesis.html","photosynthesis"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":1,"nb":26,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["environment/ph_phenotype_with_numerical_limits.html","pH phenotype with numerical limits"],["environment/temperature_optimum_mid4.html","temperature optimum mid4"],["genomics/rnlab_system.html","RnlAB system"],["metabolism/metabolism.html","metabolism"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/respiration.html","respiration"]]},{"id":"CHEBI:15740","l":"formate","na":23,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"]],"b":[["metabolism/syntrophy.html","Syntrophy"]]},{"id":"CHEBI:24996","l":"lactate","na":22,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]]},{"id":"CHEBI:17968","l":"butyrate","na":19,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"]],"b":[["ecology/gut_associated.html","gut-associated"]]},{"id":"CHEBI:28938","l":"ammonium","na":19,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]]},{"id":"GO:0019420","l":"dissimilatory sulfate reduction","na":17,"nb":1,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["DVM_Triculture.html","DVM Tri-culture"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"]],"b":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]]},{"id":"GO:0051453","l":"regulation of intracellular pH","na":1,"nb":17,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["environment/acidophilic.html","acidophilic"],["environment/acidotolerant.html","acidotolerant"],["environment/alkalotolerant.html","alkalotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"]]},{"id":"GO:0019333","l":"denitrification pathway","na":13,"nb":1,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"]],"b":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"]]},{"id":"CHEBI:17272","l":"propionate","na":11,"nb":1,"a":[["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"]],"b":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]]},{"id":"GO:0045493","l":"xylan catabolic process","na":11,"nb":1,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["metabolism/xylan_degradation.html","xylan degradation"]]},{"id":"CHEBI:29036","l":"copper(2+)","na":10,"nb":1,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["environment/copper_tolerant.html","copper tolerant"]]},{"id":"CHEBI:26710","l":"sodium chloride","na":9,"nb":1,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["environment/halophilic.html","halophilic"]]},{"id":"CHEBI:15378","l":"hydron","na":1,"nb":8,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["environment/acidophilic.html","acidophilic"],["environment/acidotolerant.html","acidotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"],["environment/obligately_acidophilic.html","obligately acidophilic"]]},{"id":"CHEBI:18222","l":"xylose","na":8,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]],"b":[["metabolism/xylan_degradation.html","xylan degradation"]]},{"id":"GO:0046274","l":"lignin catabolic process","na":8,"nb":1,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"]],"b":[["metabolism/lignin_degradation.html","lignin degradation"]]},{"id":"CHEBI:17057","l":"cellobiose","na":7,"nb":1,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["metabolism/cellulolysis.html","cellulolysis"]]},{"id":"CHEBI:29101","l":"sodium(1+)","na":1,"nb":7,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"]],"b":[["environment/alkaphilic.html","alkaliphilic"],["environment/euryhaline.html","euryhaline"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/nacl_delta_mid2.html","NaCl delta mid2"]]},{"id":"CHEBI:64709","l":"organic acid","na":7,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":1,"nb":7,"a":[["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/copper_tolerant.html","copper tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["environment/metal_tolerant.html","metal tolerant"]]},{"id":"NCBITaxon:1488","l":"Clostridium acetobutylicum","na":1,"nb":7,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["environment/anaerobic.html","anaerobic"],["environment/obligately_anaerobic.html","obligately anaerobic"],["metabolism/fermentation.html","Fermentation"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"],["morphology/gram_variable.html","gram variable"],["morphology/spindle_shaped.html","spindle shaped"]]},{"id":"GO:0006979","l":"response to oxidative stress","na":6,"nb":1,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["physiology/oxidative_stress_response.html","oxidative stress response"]]},{"id":"GO:0009292","l":"horizontal gene transfer","na":1,"nb":6,"a":[["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"]],"b":[["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["genomics/genome_size.html","genome size"],["genomics/genomic_island.html","genomic island"],["genomics/mobile_genetic_element.html","mobile genetic element"],["genomics/pangenome_openness.html","pangenome openness"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":1,"nb":6,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["ecology/animal_pathogen.html","animal pathogen"],["ecology/biosafety_level_2.html","biosafety level 2"],["genomics/genomic_island.html","genomic island"],["genomics/prophage.html","prophage"],["morphology/flagellated.html","flagellated"],["morphology/peritrichous.html","peritrichous"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":6,"nb":1,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]]},{"id":"CHEBI:61266","l":"hemicellulose","na":5,"nb":1,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"],["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["ecology/saprotrophy.html","saprotrophy"]]},{"id":"CHEBI:16199","l":"urea","na":4,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["physiology/urease_activity.html","urease activity"]]},{"id":"CHEBI:17029","l":"chitin","na":4,"nb":1,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]],"b":[["metabolism/chitinolysis.html","chitinolysis"]]},{"id":"CHEBI:48775","l":"cadmium(2+)","na":4,"nb":1,"a":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Meghalaya_Bacillus_Consortia_A22ED9.html","Meghalaya Bacillus Consortia-A22ED9"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["SynCom_Pseudomonas_Rahnella_Artemisia_Phytoremediation.html","Pseudomonas-Rahnella native rhizosphere SynCom for Artemisia argyi phytoremediation"]],"b":[["environment/cadmium_tolerant.html","cadmium tolerant"]]},{"id":"GO:0006412","l":"translation","na":1,"nb":4,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["environment/mesophilic.html","mesophilic"],["genomics/codon_usage_bias.html","codon usage bias"],["physiology/cold_shock_response.html","cold shock response"],["physiology/dormancy.html","dormancy"]]},{"id":"GO:0009252","l":"peptidoglycan biosynthetic process","na":1,"nb":4,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"]],"b":[["morphology/bacillus_shaped.html","bacillus shaped"],["morphology/cell_shape.html","cell shape"],["morphology/coccobacillus_shaped.html","coccobacillus shaped"],["morphology/rod_shaped.html","rod shaped"]]},{"id":"GO:0019253","l":"reductive pentose-phosphate cycle","na":1,"nb":4,"a":[["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["physiology/autotrophic.html","autotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/photoautotrophic.html","photoautotrophic"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":4,"nb":1,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["metabolism/starch_degradation.html","starch degradation"]]},{"id":"NCBITaxon:165695","l":"Sphingobium","na":4,"nb":1,"a":[["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["Sphingobium_Nitrososphaera_Phenanthrene_Carbon_SynCom.html","Sphingobium-Nitrososphaera Phenanthrene-Carbon SynCom"],["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["metabolism/lignin_degradation.html","lignin degradation"]]},{"id":"NCBITaxon:243164","l":"Dehalococcoides mccartyi 195","na":4,"nb":1,"a":[["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["metabolism/organohalide_respiration.html","organohalide respiration"]]},{"id":"NCBITaxon:863","l":"Syntrophomonas wolfei","na":4,"nb":1,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["metabolism/syntrophy.html","Syntrophy"]]},{"id":"CHEBI:26672","l":"siderophore","na":3,"nb":1,"a":[["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"]],"b":[["physiology/siderophore_production.html","siderophore production"]]},{"id":"CHEBI:48828","l":"cobalt(2+)","na":3,"nb":1,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"]],"b":[["environment/cobalt_tolerant.html","cobalt tolerant"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":1,"nb":3,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["ecology/commensalism.html","commensalism"],["genomics/nhi_system.html","Nhi system"],["other/coagulase_negative.html","coagulase negative"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":3,"nb":1,"a":[["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["morphology/branched_shaped.html","branched shaped"]]},{"id":"NCBITaxon:33952","l":"Acetobacterium woodii","na":3,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["metabolism/homoacetogenesis.html","Homoacetogenesis"]]},{"id":"NCBITaxon:54298","l":"Chroococcidiopsis","na":1,"nb":3,"a":[["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"]],"b":[["environment/desiccation_tolerant.html","desiccation tolerant"],["environment/uv_radiation_tolerant.html","UV radiation tolerant"],["environment/xerophilic.html","xerophilic"]]},{"id":"CHEBI:15354","l":"choline","na":2,"nb":1,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["environment/euryhaline.html","euryhaline"]]},{"id":"CHEBI:16480","l":"nitric oxide","na":2,"nb":1,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"]],"b":[["ecology/biofilm_formation.html","biofilm formation"]]},{"id":"CHEBI:16947","l":"citrate(3-)","na":2,"nb":1,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"]]},{"id":"CHEBI:29806","l":"fumarate(2-)","na":2,"nb":1,"a":[["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]]},{"id":"GO:0005983","l":"starch catabolic process","na":2,"nb":1,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"]],"b":[["metabolism/starch_degradation.html","starch degradation"]]},{"id":"GO:0009408","l":"response to heat","na":2,"nb":1,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["PMI_Variovorax_Thermotolerance_Collection.html","PMI Variovorax Thermotolerance Collection"]],"b":[["physiology/heat_shock_response.html","heat shock response"]]},{"id":"GO:0019332","l":"aerobic respiration, using nitrite as electron donor","na":1,"nb":2,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"]],"b":[["metabolism/complete_ammonia_oxidation.html","complete ammonia oxidation"],["metabolism/nitrification.html","nitrification"]]},{"id":"GO:0019417","l":"sulfur oxidation","na":1,"nb":2,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["physiology/lithotrophic.html","lithotrophic"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]]},{"id":"GO:0071973","l":"bacterial-type flagellum-dependent cell motility","na":1,"nb":2,"a":[["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"]],"b":[["ecology/soil_dwelling.html","soil-dwelling"],["morphology/swarming_motility.html","swarming motility"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":1,"nb":2,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["genomics/gc_mid1.html","GC mid1"],["metabolism/lignin_degradation.html","lignin degradation"]]},{"id":"NCBITaxon:1021","l":"Beggiatoa","na":1,"nb":2,"a":[["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"]],"b":[["morphology/filament_shaped.html","filament shaped"],["physiology/mixotrophic.html","mixotrophic"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":2,"nb":1,"a":[["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["physiology/photoheterotrophic.html","photoheterotrophic"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":1,"nb":2,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["morphology/carboxysome.html","carboxysome"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":2,"nb":1,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["physiology/lipase_activity.html","lipase activity"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":2,"nb":1,"a":[["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]],"b":[["metabolism/cellulolysis.html","cellulolysis"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":2,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]],"b":[["genomics/wadjet_system.html","Wadjet system"],["morphology/irregular_shaped.html","irregular shaped"]]},{"id":"NCBITaxon:180","l":"Leptospirillum ferrooxidans","na":2,"nb":1,"a":[["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"]],"b":[["metabolism/iron_oxidation.html","iron oxidation"]]},{"id":"NCBITaxon:2822231","l":"Phanerodontia chrysosporium","na":2,"nb":1,"a":[["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"]],"b":[["metabolism/manganese_oxidation.html","manganese oxidation"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":1,"nb":2,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["genomics/ploidy.html","ploidy"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]]},{"id":"NCBITaxon:408","l":"Methylorubrum extorquens","na":1,"nb":2,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["morphology/pink_pigmented.html","pink pigmented"],["physiology/methylotrophic.html","methylotrophic"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":2,"nb":1,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["ecology/opportunistic_pathogen.html","opportunistic pathogen"]]},{"id":"NCBITaxon:542","l":"Zymomonas mobilis","na":1,"nb":2,"a":[["Zymomonas_Ecoli_Exometabolomics_Obligate_Mutualism.html","Zymomonas-E. coli Exometabolomics-Designed Obligate Mutualism"]],"b":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["physiology/nad_dependent_alcohol_dehydrogenase_activity.html","NAD-dependent alcohol dehydrogenase activity"]]},{"id":"NCBITaxon:69823","l":"Selenomonas sputigena","na":1,"nb":2,"a":[["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"]],"b":[["physiology/alpha_galactosidase_activity.html","alpha-galactosidase activity"],["physiology/beta_galactosidase_activity.html","beta-galactosidase activity"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":2,"nb":1,"a":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["morphology/motility.html","motility"]]},{"id":"CHEBI:16170","l":"mercury(0)","na":1,"nb":1,"a":[["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["environment/mercury_tolerant.html","mercury tolerant"]]},{"id":"CHEBI:16838","l":"polyphosphate","na":1,"nb":1,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"]],"b":[["environment/zinc_tolerant.html","zinc tolerant"]]},{"id":"CHEBI:16856","l":"glutathione","na":1,"nb":1,"a":[["Zymomonas_Ecoli_Exometabolomics_Obligate_Mutualism.html","Zymomonas-E. coli Exometabolomics-Designed Obligate Mutualism"]],"b":[["environment/zinc_tolerant.html","zinc tolerant"]]},{"id":"CHEBI:17203","l":"L-proline","na":1,"nb":1,"a":[["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["environment/non_halophilic.html","non halophilic"]]},{"id":"CHEBI:50699","l":"oligosaccharide","na":1,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["metabolism/biopolymer_degradation.html","biopolymer degradation"]]},{"id":"GO:0006260","l":"DNA replication","na":1,"nb":1,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["genomics/gc_skew.html","GC skew"]]},{"id":"GO:0006950","l":"response to stress","na":1,"nb":1,"a":[["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"]],"b":[["physiology/stress_response.html","stress response"]]},{"id":"GO:0044409","l":"symbiont entry into host","na":1,"nb":1,"a":[["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"]],"b":[["ecology/plant_pathogen.html","plant pathogen"]]},{"id":"NCBITaxon:1219","l":"Prochlorococcus marinus","na":1,"nb":1,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["genomics/genome_streamlining.html","genome streamlining"]]},{"id":"NCBITaxon:132919","l":"Rhodococcus jostii","na":1,"nb":1,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["metabolism/lignin_degradation.html","lignin degradation"]]},{"id":"NCBITaxon:1519","l":"Clostridium tyrobutyricum","na":1,"nb":1,"a":[["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["metabolism/butyric_acid_fermentation.html","butyric acid fermentation"]]},{"id":"NCBITaxon:1579","l":"Lactobacillus acidophilus","na":1,"nb":1,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["environment/acidotolerant.html","acidotolerant"]]},{"id":"NCBITaxon:1708","l":"Cellulomonas fimi","na":1,"nb":1,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["metabolism/biopolymer_degradation.html","biopolymer degradation"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii (strain ATCC 43067 / DSM 2661 / JAL-1 / JCM 10045 / NBRC 100440)","na":1,"nb":1,"a":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]],"b":[["metabolism/methanogenesis.html","Methanogenesis"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima (strain ATCC 43589 / DSM 3109 / JCM 10099 / NBRC 100826 / MSB8)","na":1,"nb":1,"a":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]],"b":[["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"]]},{"id":"NCBITaxon:258594","l":"Rhodopseudomonas palustris CGA009","na":1,"nb":1,"a":[["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"]],"b":[["physiology/photoorganoheterotrophic.html","photoorganoheterotrophic"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"]],"b":[["metabolism/photoferrotrophy.html","photoferrotrophy"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/HabitatMech--CommunityMech.json b/assets/fleet/edges/HabitatMech--CommunityMech.json index 0b1ae9a..a54750c 100644 --- a/assets/fleet/edges/HabitatMech--CommunityMech.json +++ b/assets/fleet/edges/HabitatMech--CommunityMech.json @@ -1 +1 @@ -{"a":"HabitatMech","b":"CommunityMech","base":{"HabitatMech":"https://culturebotai.github.io/HabitatMech/pages/habitats/","CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/"},"n":313,"by":{"NCBITaxon":265,"ENVO":42,"UBERON":4,"CHEBI":2},"terms":[{"id":"NCBITaxon:2","l":"Bacteria","na":40,"nb":56,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["factory-envo-01000536.html","factory"],["adult-bto-0001043.html","adult"]],"b":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"]]},{"id":"ENVO:00001998","l":"soil","na":105,"nb":17,"a":[["soil-habitatmech-gold-fc35741739.html","Soil"],["wetland-area-envo-00000043.html","wetland area"],["soil-habitatmech-gold-b1d707114a.html","Soil"],["soil-habitatmech-gold-e9844fc187.html","Soil"],["soil-habitatmech-gold-3e86b794ef.html","Soil"],["soil-habitatmech-gold-067f7f5e2a.html","Soil"]],"b":[["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]]},{"id":"ENVO:01001001","l":"plant-associated environment","na":21,"nb":16,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["bryophytes-habitatmech-gold-35beb98884.html","Bryophytes"],["endosphere-habitatmech-gold-bfe3e11951.html","Endosphere"],["green-alga-associated-environment-habitatmech-gold-184cc9e802.html","green-alga-associated environment"],["mixed-parts-habitatmech-gold-4dd29bdcf8.html","Mixed parts"],["peat-moss-associated-environment-habitatmech-gold-7f57b82cab.html","peat moss-associated environment"]],"b":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]]},{"id":"NCBITaxon:1386","l":"Bacillus ","na":19,"nb":16,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["crop-bto-0000301.html","crop"],["dorsum-bto-0001713.html","dorsum"],["hand-bto-0004668.html","hand"],["head-bto-0000282.html","head"],["juvenile-bto-0002168.html","juvenile"]],"b":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":36,"nb":14,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["bay-envo-00000032.html","bay"],["freshwater-biome-envo-00000873.html","freshwater biome"],["liquid-water-envo-00002006.html","liquid water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]]},{"id":"ENVO:00002123","l":"bioreactor","na":31,"nb":13,"a":[["aerobic-bioreactor-envo-00002126.html","aerobic bioreactor"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["air-scrubber-biofilm-habitatmech-gold-7f436f8aff.html","air scrubber biofilm"],["biofilter-envo-00002152.html","biofilter"],["bioreactor-envo-00002123.html","bioreactor"],["bioreactor-habitatmech-gold-c4bf3d0c83.html","Bioreactor"]],"b":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":27,"nb":11,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["watercourse-envo-00000029.html","watercourse"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["egg-food-product-foodon-00001274.html","egg food product"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]]},{"id":"ENVO:00002007","l":"sediment","na":103,"nb":10,"a":[["marine-sediment-envo-03000033.html","marine sediment"],["sediment-habitatmech-gold-6bc70f0406.html","Sediment"],["sediment-habitatmech-gold-33b265d89f.html","Sediment"],["sediment-habitatmech-gold-7db7617ea4.html","Sediment"],["sediment-habitatmech-gold-2f9eb7ed2f.html","Sediment"],["sediment-habitatmech-gold-2ff751e0a6.html","Sediment"]],"b":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]]},{"id":"NCBITaxon:286","l":"Pseudomonas","na":10,"nb":18,"a":[["heart-bto-0000562.html","heart"],["juvenile-bto-0002168.html","juvenile"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"],["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":10,"nb":15,"a":[["anther-bto-0000079.html","anther"],["epithelial-cell-bto-0000414.html","epithelial cell"],["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":28,"nb":9,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["liquid-water-envo-00002006.html","liquid water"],["watercourse-envo-00000029.html","watercourse"],["compost-envo-00002170.html","compost"],["hospital-envo-00002173.html","hospital"],["human-construction-envo-00000070.html","human construction"]],"b":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":11,"nb":9,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["resting-cell-bto-0001170.html","resting cell"],["seedling-bto-0001228.html","seedling"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":27,"nb":7,"a":[["small-river-biome-envo-00000890.html","small river biome"],["factory-envo-01000536.html","factory"],["organic-waste-material-envo-00002873.html","organic waste material"],["leaf-po-0025034.html","leaf"],["milk-uberon-0001913.html","milk"],["rhizosphere-envo-00005801.html","rhizosphere"]],"b":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]]},{"id":"ENVO:00002116","l":"contaminated soil","na":7,"nb":16,"a":[["hydrocarbon-habitatmech-gold-3c68e33a11.html","Hydrocarbon"],["persistent-organic-pollutant-bioremediation-material-habitatmech-gold-1a78606807.html","persistent organic pollutant bioremediation material"],["contaminated-soil-envo-00002116.html","contaminated soil"],["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"],["oil-contaminated-soil-envo-00002875.html","oil contaminated soil"],["pesticide-habitatmech-gold-8ebd2ee3c5.html","Pesticide"]],"b":[["Methylobacterium_REE_Ewaste_Platform.html","Methylobacterium REE E-waste Platform"],["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"]]},{"id":"NCBITaxon:40324","l":"Stenotrophomonas maltophilia","na":15,"nb":7,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["catheter-device-ncit-c50344.html","Catheter Device"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["seedling-bto-0001228.html","seedling"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]]},{"id":"ENVO:00002043","l":"wastewater treatment plant","na":9,"nb":7,"a":[["a-o-treatment-system-habitatmech-gold-7c91485eb8.html","A/O treatment system"],["activated-sludge-habitatmech-gold-032b7dd40b.html","Activated sludge"],["aerobic-digester-habitatmech-gold-03fc563fae.html","Aerobic digester"],["anaerobic-digester-habitatmech-gold-3f58fb59be.html","Anaerobic digester"],["effluent-habitatmech-gold-827b5dbbef.html","Effluent"],["influent-habitatmech-gold-2bf3ab7d2f.html","Influent"]],"b":[["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Rhizorhabdus_Cupriavidus_BDE47_Degradation_SynCom.html","Rhizorhabdus-Cupriavidus BDE-47 Degradation SynCom"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":19,"nb":6,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["saline-water-body-envo-01001319.html","saline water body"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":18,"nb":6,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]]},{"id":"UBERON:0000160","l":"intestine","na":11,"nb":6,"a":[["intestine-habitatmech-gold-f3f5ed6008.html","Intestine"],["intestine-habitatmech-gold-70ccbcfe44.html","Intestine"],["intestine-habitatmech-gold-8a75a65fc5.html","Intestine"],["intestine-habitatmech-gold-0171231ef5.html","Intestine"],["intestine-habitatmech-gold-523d63f6f3.html","Intestine"],["intestine-habitatmech-gold-394283d34e.html","Intestine"]],"b":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["OMM12_Gnotobiotic_Mouse_Gut_Community.html","OMM12 Gnotobiotic Mouse Gut Community"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]]},{"id":"NCBITaxon:1578","l":"Lactobacillus","na":20,"nb":5,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["blood-bto-0000089.html","blood"],["brain-bto-0000142.html","brain"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["hand-bto-0004668.html","hand"]],"b":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"],["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]]},{"id":"ENVO:00002001","l":"waste water","na":19,"nb":5,"a":[["activated-sludge-habitatmech-gold-0d353772af.html","Activated Sludge"],["anaerobic-digestor-habitatmech-gold-ed87e682a9.html","Anaerobic digestor"],["industrial-wastewater-envo-01000964.html","industrial wastewater"],["municipal-landfill-habitatmech-gold-0f40aa60ce.html","Municipal landfill"],["nutrient-removal-habitatmech-gold-a18a70ae30.html","Nutrient removal"],["reclaimed-recycled-wastewater-habitatmech-gold-dc4dba910a.html","Reclaimed/Recycled wastewater"]],"b":[["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Staged_Cattle_Manure_Ensifer_Bacillus_SynCom.html","Staged Ensifer-Bacillus Cattle-Manure Wastewater SynCom"]]},{"id":"ENVO:00000043","l":"wetland area","na":14,"nb":5,"a":[["bog-habitatmech-gold-42a3b7b2d3.html","Bog"],["fen-habitatmech-gold-9de4fdaa2a.html","Fen"],["marsh-envo-00000035.html","marsh"],["microbial-mat-habitatmech-gold-e066163fc8.html","Microbial mat"],["sediment-habitatmech-gold-7db7617ea4.html","Sediment"],["sediment-habitatmech-gold-98d936714f.html","Sediment"]],"b":[["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Wetland_Oxygen_Sulfate_GHG_Microcosm_Community.html","Wetland Oxygen-Sulfate Greenhouse Gas Microcosm Community"]]},{"id":"ENVO:01001004","l":"groundwater","na":5,"nb":11,"a":[["contaminated-habitatmech-gold-66f93e3a62.html","Contaminated"],["contaminated-habitatmech-gold-33f4720550.html","Contaminated"],["groundwater-habitatmech-gold-22a80cbd14.html","Groundwater"],["groundwater-habitatmech-gold-7f8e268653.html","Groundwater"],["groundwater-envo-01001004.html","groundwater"]],"b":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":33,"nb":4,"a":[["biofilm-envo-00002034.html","biofilm"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["pond-water-envo-00002228.html","pond water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["water-body-envo-00000063.html","water body"]],"b":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"],["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]]},{"id":"NCBITaxon:1485","l":"Clostridium","na":26,"nb":4,"a":[["biofilm-envo-00002034.html","biofilm"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["alimentary-canal-bto-0000058.html","alimentary canal"],["colon-bto-0000269.html","colon"]],"b":[["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["QY2S1_Dehalogenimonas_BFR_Bioremediation_Consortium.html","QY2-S1 Dehalogenimonas-Rich Brominated-Flame-Retardant Consortium"],["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":19,"nb":4,"a":[["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["bone-element-uberon-0001474.html","bone element"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]]},{"id":"NCBITaxon:13687","l":"Sphingomonas","na":14,"nb":4,"a":[["crop-bto-0000301.html","crop"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["ileum-bto-0000620.html","ileum"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"]],"b":[["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"],["Wheat_Consortium_C6.html","Wheat Synthetic Consortium C6"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]]},{"id":"NCBITaxon:1590","l":"Lactiplantibacillus plantarum","na":14,"nb":4,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["food-fermented-foodon-00001258.html","food (fermented)"],["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"],["breast-bto-0000149.html","breast"],["colonic-epithelium-bto-0001709.html","colonic epithelium"],["epithelial-cell-bto-0000414.html","epithelial cell"]],"b":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Pichia_Lactiplantibacillus_CCMA_Plant_Beverage_Coculture.html","Pichia-Lactiplantibacillus CCMA Plant Beverage Coculture"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":11,"nb":4,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["fermentation-starter-envo-03600040.html","fermentation starter"],["fruit-bto-0000486.html","fruit"],["mammary-epithelial-cell-bto-0004300.html","mammary epithelial cell"],["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]]},{"id":"NCBITaxon:1827","l":"Rhodococcus ","na":4,"nb":8,"a":[["nectar-bto-0000537.html","nectar"],["pitcher-bto-0001069.html","pitcher"],["small-intestine-bto-0000651.html","small intestine"],["stem-bto-0001300.html","stem"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]]},{"id":"NCBITaxon:33038","l":"Mediterraneibacter gnavus","na":8,"nb":4,"a":[["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["juvenile-bto-0002168.html","juvenile"],["animal-litter-envo-00002191.html","animal litter"]],"b":[["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Clostridial_isoDCA_Mini_Consortium.html","Clostridial isoDCA Mini Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]]},{"id":"NCBITaxon:374","l":"Bradyrhizobium","na":4,"nb":5,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"],["wood-bto-0005516.html","wood"]],"b":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"],["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]]},{"id":"NCBITaxon:37919","l":"Rhodococcus opacus","na":5,"nb":4,"a":[["watercourse-envo-00000029.html","watercourse"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"],["sludge-envo-00002044.html","sludge"],["water-scum-envo-00005794.html","water scum"]],"b":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"],["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":4,"nb":4,"a":[["stream-envo-00000023.html","stream"],["biome-envo-00000428.html","biome"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]]},{"id":"ENVO:00002170","l":"compost","na":20,"nb":3,"a":[["compost-envo-00002170.html","compost"],["composting-habitatmech-gold-143ceb8669.html","Composting"],["composting-habitatmech-gold-edeecbabed.html","Composting"],["composting-habitatmech-gold-5948923b46.html","Composting"],["composting-habitatmech-gold-70db4820d1.html","Composting"],["composting-habitatmech-gold-cdbbd857c8.html","Composting"]],"b":[["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":17,"nb":3,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["fruit-bto-0000486.html","fruit"],["leaf-po-0025034.html","leaf"],["rhizosphere-envo-00005801.html","rhizosphere"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]]},{"id":"ENVO:00002046","l":"activated sludge","na":16,"nb":3,"a":[["activated-sludge-habitatmech-gold-6ba6dd1c82.html","Activated sludge"],["activated-sludge-habitatmech-gold-adf7e16a3a.html","Activated sludge"],["activated-sludge-habitatmech-gold-25b680d9bc.html","Activated sludge"],["activated-sludge-habitatmech-gold-dab267c443.html","Activated sludge"],["activated-sludge-habitatmech-gold-43c33f3ecc.html","Activated sludge"],["activated-sludge-habitatmech-gold-f459151394.html","Activated sludge"]],"b":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"]]},{"id":"NCBITaxon:1667","l":"Arthrobacter sp.","na":9,"nb":3,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["leaf-po-0025034.html","leaf"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":8,"nb":3,"a":[["reservoir-envo-00000025.html","reservoir"],["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["secretion-bto-0002979.html","secretion"],["stomach-bto-0001307.html","stomach"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":8,"nb":3,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["lab-synthesis-habitatmech-bacdive-0e92e77cd4.html","Lab-synthesis"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["oil-spill-envo-00002061.html","oil spill"],["temperate-envo-01000206.html","temperate"]],"b":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":5,"nb":3,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["pseudostem-bto-0005992.html","pseudostem"],["seedling-bto-0001228.html","seedling"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["soil-envo-00001998.html","soil"]],"b":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]]},{"id":"ENVO:00000044","l":"peatland","na":4,"nb":3,"a":[["bog-habitatmech-gold-42a3b7b2d3.html","Bog"],["blanket-bog-envo-00000511.html","blanket bog"],["fen-envo-00000232.html","fen"],["peatland-envo-00000044.html","peatland"]],"b":[["SPRUCE_Peatland_Methane_Cycling_Community.html","SPRUCE Peatland Methane-Cycling Microbial Community"],["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":3,"nb":4,"a":[["milk-uberon-0001913.html","milk"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]]},{"id":"NCBITaxon:1534","l":"Clostridium kluyveri","na":3,"nb":4,"a":[["reservoir-envo-00000025.html","reservoir"],["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"]],"b":[["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]]},{"id":"NCBITaxon:237","l":"Flavobacterium","na":3,"nb":4,"a":[["column-bto-0005692.html","column"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]]},{"id":"NCBITaxon:3055","l":"Chlamydomonas reinhardtii","na":4,"nb":3,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["large-river-biome-envo-00000887.html","large river biome"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["pond-water-envo-00002228.html","pond water"]],"b":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]]},{"id":"NCBITaxon:32008","l":"Burkholderia","na":3,"nb":4,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["midgut-bto-0000863.html","midgut"]],"b":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]]},{"id":"NCBITaxon:216816","l":"Bifidobacterium longum","na":3,"nb":3,"a":[["coral-reef-envo-00000150.html","coral reef"],["egg-food-product-foodon-00001274.html","egg food product"],["juvenile-bto-0002168.html","juvenile"]],"b":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]]},{"id":"NCBITaxon:239935","l":"Akkermansia muciniphila","na":3,"nb":3,"a":[["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["secretion-bto-0002979.html","secretion"]],"b":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":3,"nb":3,"a":[["liquid-water-envo-00002006.html","liquid water"],["sludge-envo-00002044.html","sludge"],["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]]},{"id":"ENVO:01001405","l":"laboratory environment","na":2,"nb":200,"a":[["genetic-cross-habitatmech-gold-ba9317369a.html","Genetic cross"],["laboratory-environment-envo-01001405.html","laboratory environment"]],"b":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"]]},{"id":"ENVO:00005801","l":"rhizosphere","na":2,"nb":62,"a":[["rhizosphere-envo-00005801.html","rhizosphere"],["soil-habitatmech-gold-067f7f5e2a.html","Soil"]],"b":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":40,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["laboratory-facility-envo-01001406.html","laboratory facility"],["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["biofilm-bto-0002690.html","biofilm"]],"b":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]]},{"id":"ENVO:00002124","l":"anaerobic bioreactor","na":20,"nb":2,"a":[["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["anaerobic-sludge-envo-00002129.html","anaerobic sludge"],["anaerobic-sludge-blanket-reactor-envo-00002213.html","anaerobic sludge blanket reactor"],["biofilm-habitatmech-gold-6c12d05420.html","Biofilm"],["biogas-envo-01000556.html","biogas"],["biomass-habitatmech-gold-6dd85a8177.html","Biomass"]],"b":[["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Shewanella_Pseudomonas_Fe0_Electrosyntrophic_Denitrifying_Consortium.html","Shewanella oneidensis + Pseudomonas aeruginosa Fe0-dependent Electro-syntrophic Denitrifying Consortium"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":14,"nb":2,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["compost-envo-00002170.html","compost"],["organic-waste-material-envo-00002873.html","organic waste material"],["larva-bto-0000707.html","larva"],["rhizosphere-envo-00005801.html","rhizosphere"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]]},{"id":"ENVO:00000051","l":"hot spring","na":13,"nb":2,"a":[["acid-lake-habitatmech-gold-21e53e7981.html","Acid lake"],["geothermal-pool-hot-lake-habitatmech-gold-d2132d09ae.html","Geothermal pool/Hot lake"],["hot-42-90c-habitatmech-gold-c085f6141a.html","Hot (42-90C)"],["hot-spring-envo-00000051.html","hot spring"],["microbial-mats-habitatmech-gold-a0372e2d63.html","Microbial mats"],["near-boiling-90c-habitatmech-gold-8b53067bc5.html","Near-boiling (>90C)"]],"b":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]]},{"id":"UBERON:0001007","l":"digestive system","na":13,"nb":2,"a":[["digestive-system-habitatmech-gold-26a84185d3.html","Digestive system"],["digestive-system-habitatmech-gold-6eecdf150d.html","Digestive system"],["digestive-system-habitatmech-gold-d7cff86ce8.html","Digestive system"],["digestive-system-habitatmech-gold-8a68d0f6f5.html","Digestive system"],["digestive-system-habitatmech-gold-c1d7082e4b.html","Digestive system"],["digestive-system-habitatmech-gold-f6720bccf0.html","Digestive system"]],"b":[["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]]},{"id":"NCBITaxon:1117","l":"Cyanobacteriota","na":11,"nb":2,"a":[["cecum-bto-0000166.html","cecum"],["colon-bto-0000269.html","colon"],["gut-bto-0000545.html","gut"],["head-bto-0000282.html","head"],["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"]],"b":[["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]]},{"id":"ENVO:00001997","l":"acid mine drainage","na":2,"nb":9,"a":[["acid-mine-drainage-envo-00001997.html","acid mine drainage"],["sediment-habitatmech-gold-7e27a52150.html","Sediment"]],"b":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":9,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["mud-envo-01000001.html","mud"]],"b":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":8,"nb":2,"a":[["groundwater-envo-01001004.html","groundwater"],["bioreactor-envo-00002123.html","bioreactor"],["river-envo-00000022.html","river"],["freshwater-environment-envo-01000306.html","freshwater environment"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]]},{"id":"ENVO:03600040","l":"fermentation starter","na":2,"nb":7,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["active-sourdough-starter-habitatmech-gold-3153798c1a.html","active sourdough starter"]],"b":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Sichuan_Shai_Vinegar_Yeast_Flavor_SynCom.html","Sichuan Shai Vinegar Yeast Flavor SynCom"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"],["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]]},{"id":"NCBITaxon:28216","l":"Betaproteobacteria","na":7,"nb":2,"a":[["column-bto-0005692.html","column"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["spike-bto-0001278.html","spike"]],"b":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":7,"nb":2,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["liquid-water-envo-00002006.html","liquid water"],["crown-gall-bto-0000303.html","crown gall"],["finger-bto-0004669.html","finger"],["resting-cell-bto-0001170.html","resting cell"],["water-scum-envo-00005794.html","water scum"]],"b":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]]},{"id":"NCBITaxon:1236","l":"Gammaproteobacteria","na":6,"nb":2,"a":[["column-bto-0005692.html","column"],["hemolymph-bto-0000572.html","hemolymph"],["oil-secretion-bto-0005373.html","oil secretion"],["spike-bto-0001278.html","spike"],["urine-bto-0001419.html","urine"],["subtropical-envo-01000205.html","subtropical"]],"b":[["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]]},{"id":"NCBITaxon:1305","l":"Streptococcus sanguinis","na":6,"nb":2,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["throat-bto-0000828.html","throat"],["geographic-feature-envo-00000000.html","geographic feature"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]]},{"id":"NCBITaxon:253","l":"Chryseobacterium indologenes","na":6,"nb":2,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["seedling-bto-0001228.html","seedling"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["tropical-envo-01000204.html","tropical"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"]]},{"id":"NCBITaxon:28211","l":"Alphaproteobacteria","na":6,"nb":2,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"],["alimentary-canal-bto-0000058.html","alimentary canal"],["column-bto-0005692.html","column"],["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["spike-bto-0001278.html","spike"]],"b":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]]},{"id":"ENVO:00002003","l":"fecal material","na":2,"nb":5,"a":[["frass-habitatmech-gold-319c3f351e.html","Frass"],["frass-habitatmech-gold-67f3cde908.html","Frass"]],"b":[["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"]]},{"id":"NCBITaxon:145262","l":"Methanothermobacter thermautotrophicus","na":5,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["intestine-environment-envo-2100002.html","intestine environment"],["sludge-envo-00002044.html","sludge"]],"b":[["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]]},{"id":"NCBITaxon:1883","l":"Streptomyces","na":2,"nb":5,"a":[["crop-bto-0000301.html","crop"],["lab-synthesis-habitatmech-bacdive-0e92e77cd4.html","Lab-synthesis"]],"b":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["Wheat_Consortium_C6.html","Wheat Synthetic Consortium C6"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]]},{"id":"NCBITaxon:1335","l":"Streptococcus equinus","na":4,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["stomach-bto-0001307.html","stomach"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":4,"nb":2,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["carcass-envo-00002033.html","carcass"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["sludge-envo-00002044.html","sludge"]],"b":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":4,"nb":2,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]]},{"id":"NCBITaxon:165695","l":"Sphingobium","na":2,"nb":4,"a":[["juvenile-bto-0002168.html","juvenile"],["leaf-bto-0000713.html","leaf"]],"b":[["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["Sphingobium_Nitrososphaera_Phenanthrene_Carbon_SynCom.html","Sphingobium-Nitrososphaera Phenanthrene-Carbon SynCom"],["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]]},{"id":"NCBITaxon:1678","l":"Bifidobacterium","na":2,"nb":4,"a":[["ileum-bto-0000620.html","ileum"],["juvenile-bto-0002168.html","juvenile"]],"b":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"NCBITaxon:33882","l":"Microbacterium","na":4,"nb":2,"a":[["leaf-bto-0000713.html","leaf"],["pitcher-bto-0001069.html","pitcher"],["small-intestine-bto-0000651.html","small intestine"],["stem-bto-0001300.html","stem"]],"b":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]]},{"id":"NCBITaxon:816","l":"Bacteroides","na":2,"nb":4,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["colon-bto-0000269.html","colon"]],"b":[["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":2,"nb":4,"a":[["hospital-envo-00002173.html","hospital"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]]},{"id":"NCBITaxon:105841","l":"Anaerostipes caccae","na":3,"nb":2,"a":[["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["emulsion-envo-00010506.html","emulsion"],["organic-feature-envo-01000159.html","organic feature"]],"b":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]]},{"id":"NCBITaxon:1492","l":"Clostridium butyricum","na":3,"nb":2,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["intestine-environment-envo-2100002.html","intestine environment"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":2,"nb":3,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]]},{"id":"NCBITaxon:203682","l":"Planctomycetota","na":2,"nb":3,"a":[["column-bto-0005692.html","column"],["crop-bto-0000301.html","crop"]],"b":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"]]},{"id":"NCBITaxon:2208","l":"Methanosarcina barkeri","na":2,"nb":3,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["sludge-envo-00002044.html","sludge"]],"b":[["DVM_Triculture.html","DVM Tri-culture"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]]},{"id":"NCBITaxon:28108","l":"Alteromonas macleodii","na":3,"nb":2,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["marine-water-body-envo-00001999.html","marine water body"],["sandstone-envo-00002055.html","sandstone"]],"b":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]]},{"id":"NCBITaxon:29466","l":"Veillonella parvula","na":3,"nb":2,"a":[["dental-plaque-bto-0000338.html","dental plaque"],["juvenile-bto-0002168.html","juvenile"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]]},{"id":"NCBITaxon:33059","l":"Acidithiobacillus caldus","na":3,"nb":2,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["paddy-field-envo-00000297.html","paddy field"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]]},{"id":"NCBITaxon:33959","l":"Lactobacillus johnsonii","na":3,"nb":2,"a":[["animal-litter-envo-00002191.html","animal litter"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":3,"nb":2,"a":[["bile-bto-0000121.html","bile"],["rectum-bto-0001158.html","rectum"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]]},{"id":"NCBITaxon:528","l":"Ochrobactrum","na":2,"nb":3,"a":[["pitcher-bto-0001069.html","pitcher"],["small-intestine-bto-0000651.html","small intestine"]],"b":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"]]},{"id":"NCBITaxon:853","l":"Faecalibacterium prausnitzii","na":2,"nb":3,"a":[["coral-reef-envo-00000150.html","coral reef"],["tropical-envo-01000204.html","tropical"]],"b":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"]]},{"id":"NCBITaxon:110500","l":"Pelotomaculum thermopropionicum","na":2,"nb":2,"a":[["river-envo-00000022.html","river"],["subpolar-coniferous-forest-biome-envo-01000250.html","subpolar coniferous forest biome"]],"b":[["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"]]},{"id":"NCBITaxon:1234","l":"Nitrospira","na":2,"nb":2,"a":[["crop-bto-0000301.html","crop"],["seedling-bto-0001228.html","seedling"]],"b":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"]]},{"id":"NCBITaxon:244366","l":"Klebsiella variicola","na":2,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]]},{"id":"NCBITaxon:28034","l":"Sulfobacillus thermosulfidooxidans","na":2,"nb":2,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]]},{"id":"NCBITaxon:357809","l":"Lachnoclostridium phytofermentans ISDg","na":2,"nb":2,"a":[["reservoir-envo-00000025.html","reservoir"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":2,"nb":2,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]]},{"id":"NCBITaxon:39488","l":"Anaerobutyricum hallii","na":2,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"],["harbour-envo-00000463.html","harbour"]],"b":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]]},{"id":"NCBITaxon:4577","l":"Zea mays","na":2,"nb":2,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"]]},{"id":"NCBITaxon:84567","l":"Pedobacter","na":2,"nb":2,"a":[["air-envo-00002005.html","air"],["glacier-envo-00000133.html","glacier"]],"b":[["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]]},{"id":"CHEBI:16183","l":"methane","na":1,"nb":62,"a":[["methane-bioremediation-material-habitatmech-gold-d510166905.html","methane bioremediation material"]],"b":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"]]},{"id":"ENVO:01001002","l":"animal-associated environment","na":47,"nb":1,"a":[["amphibian-associated-environment-habitatmech-gold-0cd585a031.html","amphibian-associated environment"],["annelid-associated-environment-habitatmech-gold-6e10201167.html","annelid-associated environment"],["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["chelicerate-associated-environment-habitatmech-gold-44a2cbbd60.html","chelicerate-associated environment"],["crustacean-associated-environment-habitatmech-gold-2959225799.html","crustacean-associated environment"],["insect-associated-environment-habitatmech-gold-dba2a83b95.html","insect-associated environment"]],"b":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":25,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-water-body-envo-00001999.html","marine water body"],["sea-water-envo-00002149.html","sea water"],["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]]},{"id":"NCBITaxon:1279","l":"Staphylococcus","na":23,"nb":1,"a":[["adult-bto-0001043.html","adult"],["cecum-bto-0000166.html","cecum"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["head-bto-0000282.html","head"]],"b":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]]},{"id":"NCBITaxon:1301","l":"Streptococcus","na":23,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["head-bto-0000282.html","head"]],"b":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"NCBITaxon:106592","l":"Ensifer adhaerens","na":20,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]]},{"id":"ENVO:2100002","l":"intestine environment","na":1,"nb":17,"a":[["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"]]},{"id":"ENVO:00000021","l":"freshwater lake","na":16,"nb":1,"a":[["algal-bloom-envo-2000004.html","algal bloom"],["anoxic-zone-habitatmech-gold-b75e4aa08f.html","Anoxic zone"],["aphotic-zone-habitatmech-gold-fcba7e6334.html","Aphotic zone"],["biofilm-habitatmech-gold-748b381af4.html","Biofilm"],["cyanobacterial-aggregates-habitatmech-gold-9b43a12f0c.html","Cyanobacterial aggregates"],["cyanobacterial-bloom-envo-03600071.html","cyanobacterial bloom"]],"b":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"]]},{"id":"NCBITaxon:1598","l":"Limosilactobacillus reuteri","na":14,"nb":1,"a":[["cecum-mucosa-bto-0000213.html","cecum mucosa"],["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["ileum-bto-0000620.html","ileum"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"]],"b":[["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"]]},{"id":"NCBITaxon:1264","l":"Hominimerdicola alba","na":13,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["stream-envo-00000023.html","stream"],["animal-house-envo-00003040.html","animal house"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biome-envo-00000428.html","biome"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"]],"b":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"]]},{"id":"NCBITaxon:1350","l":"Enterococcus","na":13,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["dorsum-bto-0001713.html","dorsum"],["hand-bto-0004668.html","hand"],["intestine-bto-0000648.html","intestine"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"]],"b":[["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"]]},{"id":"ENVO:01000320","l":"marine environment","na":1,"nb":12,"a":[["marine-environment-envo-01000320.html","marine environment"]],"b":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":11,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"],["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["laboratory-facility-envo-01001406.html","laboratory facility"],["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["bone-element-uberon-0001474.html","bone element"],["juvenile-bto-0002168.html","juvenile"]],"b":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]]},{"id":"ENVO:00000020","l":"lake","na":10,"nb":1,"a":[["aphotic-zone-habitatmech-gold-fcba7e6334.html","Aphotic zone"],["freshwater-lake-envo-00000021.html","freshwater lake"],["glacial-lake-envo-00000488.html","glacial lake"],["lake-envo-00000020.html","lake"],["lake-habitatmech-gold-713c7f352a.html","Lake"],["marine-lake-envo-03600041.html","marine lake"]],"b":[["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"]]},{"id":"NCBITaxon:1399","l":"Cytobacillus firmus","na":10,"nb":1,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"],["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"]]},{"id":"NCBITaxon:33075","l":"Acidobacterium capsulatum","na":10,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["paddy-field-envo-00000297.html","paddy field"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"],["area-of-tundra-envo-00000112.html","area of tundra"],["forested-area-envo-00000111.html","forested area"],["mountain-pass-envo-00000084.html","mountain pass"]],"b":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":10,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["air-conditioning-unit-envo-00002874.html","air conditioning unit"],["leaf-bto-0000713.html","leaf"],["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]]},{"id":"NCBITaxon:47715","l":"Lacticaseibacillus rhamnosus","na":10,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["fermentation-starter-envo-03600040.html","fermentation starter"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]]},{"id":"ENVO:01000747","l":"regolith","na":1,"nb":9,"a":[["regolith-envo-01000747.html","regolith"]],"b":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":9,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["fresh-water-envo-00002011.html","fresh water"],["river-envo-00000022.html","river"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"]]},{"id":"ENVO:00000003","l":"mine tailing","na":1,"nb":8,"a":[["mine-tailing-envo-00000003.html","mine tailing"]],"b":[["Chromobacterium_Gold_Biocyanidation.html","Chromobacterium Gold Biocyanidation Platform"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]]},{"id":"ENVO:00003862","l":"dairy","na":1,"nb":8,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["BioModels_MODEL2204300002_Kefir_Rothia_Model.html","BioModels MODEL2204300002 Kefir Rothia Model"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"]]},{"id":"NCBITaxon:1224","l":"Pseudomonadota","na":1,"nb":8,"a":[["hemolymph-bto-0000572.html","hemolymph"]],"b":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":8,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["alimentary-canal-bto-0000058.html","alimentary canal"],["blood-bto-0000089.html","blood"],["small-intestine-bto-0000651.html","small intestine"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["geographic-feature-envo-00000000.html","geographic feature"]],"b":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]]},{"id":"NCBITaxon:1655","l":"Actinomyces naeslundii","na":8,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"],["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"],["archeological-site-envo-00000564.html","archeological site"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]]},{"id":"NCBITaxon:171550","l":"Rikenellaceae","na":8,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["ileum-bto-0000620.html","ileum"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"]],"b":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"ENVO:00003965","l":"anaerobic digester sludge","na":1,"nb":7,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"]],"b":[["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Magnetite_Sulfate_Stress_Anaerobic_Microbiome.html","Magnetite Sulfate-Stress Anaerobic Microbiome"],["Thermophilic_ExSitu_Biomethanation_Mixed_Culture.html","Thermophilic Ex-Situ Biomethanation Mixed Culture"]]},{"id":"ENVO:00005750","l":"grassland soil","na":1,"nb":7,"a":[["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"],["Soil_BGC_Phylum_Depth_Vegetation_Community.html","Soil Biosynthetic Gene Cluster Phylum-Depth-Vegetation Community"],["Soil_CPR_Nanoarchaea_Rare_Biosphere_Community.html","Soil CPR Bacteria and Nanoarchaea Rare-Biosphere Community"]]},{"id":"ENVO:01000313","l":"anthropogenic environment","na":7,"nb":1,"a":[["laboratory-environment-envo-01001405.html","laboratory environment"],["subway-environment-habitatmech-gold-961229841c.html","subway environment"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["cultivated-environment-envo-01000311.html","cultivated environment"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":7,"nb":1,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["farm-envo-00000078.html","farm"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]]},{"id":"NCBITaxon:1107","l":"Chloroflexus","na":7,"nb":1,"a":[["crop-bto-0000301.html","crop"],["gut-bto-0000545.html","gut"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["seedling-bto-0001228.html","seedling"],["skin-bto-0001253.html","skin"]],"b":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]]},{"id":"NCBITaxon:1243","l":"Leuconostoc","na":7,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["intestine-bto-0000648.html","intestine"],["mouth-bto-0001090.html","mouth"],["stem-bto-0001300.html","stem"]],"b":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]]},{"id":"NCBITaxon:13690","l":"Sphingobium yanoikuyae","na":7,"nb":1,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["resting-cell-bto-0001170.html","resting cell"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"],["water-scum-envo-00005794.html","water scum"]],"b":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]]},{"id":"NCBITaxon:165179","l":"Segatella copri","na":7,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["juvenile-bto-0002168.html","juvenile"],["rumen-uberon-0007365.html","rumen"],["tongue-bto-0001385.html","tongue"],["vaginal-fluid-bto-0003084.html","vaginal fluid"],["animal-litter-envo-00002191.html","animal litter"]],"b":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":7,"nb":1,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["pseudostem-bto-0005992.html","pseudostem"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]]},{"id":"NCBITaxon:40323","l":"Stenotrophomonas","na":1,"nb":7,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"]]},{"id":"NCBITaxon:469","l":"Acinetobacter","na":7,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["endotracheal-fluid-ncit-c171504.html","Endotracheal Fluid"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"],["pseudostem-bto-0005992.html","pseudostem"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"]],"b":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]]},{"id":"NCBITaxon:56780","l":"Syntrophus aciditrophicus SB","na":7,"nb":1,"a":[["bay-envo-00000032.html","bay"],["black-smoker-envo-00000218.html","black smoker"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["saline-water-envo-00002010.html","saline water"],["village-biome-envo-01000246.html","village biome"]],"b":[["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"]]},{"id":"ENVO:01000001","l":"mud","na":6,"nb":1,"a":[["marine-mud-envo-00005795.html","marine mud"],["mud-habitatmech-gold-cdf0825f85.html","Mud"],["anaerobic-mud-envo-00002133.html","anaerobic mud"],["estuarine-mud-envo-00002160.html","estuarine mud"],["mud-envo-01000001.html","mud"],["mud-habitatmech-gold-16370f2eb5.html","Mud"]],"b":[["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"]]},{"id":"NCBITaxon:1269","l":"Micrococcus","na":6,"nb":1,"a":[["cecum-bto-0000166.html","cecum"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["saliva-bto-0001202.html","saliva"],["tongue-bto-0001385.html","tongue"]],"b":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]]},{"id":"NCBITaxon:1512","l":"[Clostridium] symbiosum","na":6,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["animal-house-envo-00003040.html","animal house"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["emulsion-envo-00010506.html","emulsion"],["environmental-feature-envo-00002297.html","environmental feature"],["pig-manure-envo-00003860.html","pig manure"]],"b":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]]},{"id":"NCBITaxon:1624","l":"Ligilactobacillus salivarius","na":6,"nb":1,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["trachea-bto-0001388.html","trachea"],["animal-litter-envo-00002191.html","animal litter"],["intestine-environment-envo-2100002.html","intestine environment"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]]},{"id":"NCBITaxon:1872122","l":"Acidovorax sp.","na":6,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"]]},{"id":"NCBITaxon:2203","l":"Methanospirillum hungatei","na":1,"nb":6,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"]],"b":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":1,"nb":6,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]]},{"id":"ENVO:00000134","l":"permafrost","na":5,"nb":1,"a":[["permafrost-envo-00000134.html","permafrost"],["permafrost-habitatmech-gold-dd598a891d.html","Permafrost"],["permafrost-habitatmech-gold-6821e96263.html","Permafrost"],["permafrost-habitatmech-gold-6d092784ef.html","Permafrost"],["permafrost-habitatmech-gold-83818dd6ed.html","Permafrost"]],"b":[["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"]]},{"id":"ENVO:00002012","l":"hypersaline water","na":5,"nb":1,"a":[["brine-envo-00003044.html","brine"],["hypersaline-water-envo-00002012.html","hypersaline water"],["microbial-mats-habitatmech-gold-a00c47c576.html","Microbial mats"],["saline-water-habitatmech-gold-f75e192814.html","Saline water"],["salt-crystallizer-ponds-habitatmech-gold-277843111f.html","Salt crystallizer ponds"]],"b":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]]},{"id":"NCBITaxon:106589","l":"Cupriavidus","na":5,"nb":1,"a":[["gut-bto-0000545.html","gut"],["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["skin-bto-0001253.html","skin"]],"b":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]]},{"id":"NCBITaxon:1245","l":"Leuconostoc mesenteroides","na":5,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["leaf-po-0025034.html","leaf"],["animal-manure-envo-00003031.html","animal manure"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]]},{"id":"NCBITaxon:239","l":"Flavobacterium sp.","na":5,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["mud-envo-01000001.html","mud"],["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"],["orchard-envo-00000115.html","orchard"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]]},{"id":"NCBITaxon:28232","l":"Geobacter metallireducens","na":1,"nb":5,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":5,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["food-spoiled-foodon-00003366.html","food (spoiled)"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"]],"b":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":5,"nb":1,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["pseudostem-bto-0005992.html","pseudostem"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]]},{"id":"NCBITaxon:57723","l":"Acidobacteriota","na":1,"nb":5,"a":[["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["SPRUCE_Peatland_Methane_Cycling_Community.html","SPRUCE Peatland Methane-Cycling Microbial Community"]]},{"id":"NCBITaxon:74969","l":"Ferroplasma acidiphilum","na":1,"nb":5,"a":[["factory-envo-01000536.html","factory"]],"b":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]]},{"id":"NCBITaxon:838","l":"Prevotella","na":5,"nb":1,"a":[["brain-bto-0000142.html","brain"],["colon-bto-0000269.html","colon"],["heart-bto-0000562.html","heart"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"]],"b":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"CHEBI:24632","l":"hydrocarbon","na":4,"nb":1,"a":[["hydrocarbon-habitatmech-gold-db79f0142d.html","Hydrocarbon"],["hydrocarbon-habitatmech-gold-3c68e33a11.html","Hydrocarbon"],["hydrocarbon-habitatmech-gold-e77998b825.html","Hydrocarbon"],["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"]],"b":[["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"]]},{"id":"ENVO:01000306","l":"freshwater environment","na":1,"nb":4,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]]},{"id":"ENVO:01001033","l":"digestive tract environment","na":1,"nb":4,"a":[["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"],["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":4,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"],["human-construction-envo-00000070.html","human construction"],["sediment-envo-00002007.html","sediment"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]]},{"id":"NCBITaxon:1089553","l":"Thermacetogenium phaeum DSM 12270","na":4,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["pulp-bto-0001142.html","pulp"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":4,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]]},{"id":"NCBITaxon:1587","l":"Lactobacillus helveticus","na":4,"nb":1,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["intestine-environment-envo-2100002.html","intestine environment"],["urban-biome-envo-01000249.html","urban biome"],["harbour-envo-00000463.html","harbour"]],"b":[["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"]]},{"id":"NCBITaxon:1682","l":"Bifidobacterium longum subsp. infantis","na":4,"nb":1,"a":[["egg-food-product-foodon-00001274.html","egg food product"],["breast-bto-0000149.html","breast"],["ht-29-cell-bto-0000182.html","HT-29 cell"],["ma-104-cell-bto-0004983.html","MA-104 cell"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]]},{"id":"NCBITaxon:200795","l":"Chloroflexota","na":1,"nb":4,"a":[["crop-bto-0000301.html","crop"]],"b":[["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["Soil_BGC_Phylum_Depth_Vegetation_Community.html","Soil Biosynthetic Gene Cluster Phylum-Depth-Vegetation Community"]]},{"id":"NCBITaxon:2209","l":"Methanosarcina mazei","na":4,"nb":1,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["sludge-envo-00002044.html","sludge"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"]]},{"id":"NCBITaxon:356","l":"Hyphomicrobiales","na":4,"nb":1,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["stem-bto-0001300.html","stem"]],"b":[["Thiocyanate_Afipia_Thiobacillus_Bioreactor_Community.html","Thiocyanate-Degrading Afipia and Thiobacillus Bioreactor Community"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":1,"nb":4,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["Aspergillus_Indium_LED_Recovery.html","Aspergillus Indium LCD Recovery Platform"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]]},{"id":"NCBITaxon:570","l":"Klebsiella","na":1,"nb":4,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"]]},{"id":"NCBITaxon:68287","l":"Mesorhizobium","na":1,"nb":4,"a":[["head-bto-0000282.html","head"]],"b":[["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]]},{"id":"NCBITaxon:75682","l":"Oxalobacteraceae","na":4,"nb":1,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]]},{"id":"NCBITaxon:872","l":"Desulfovibrio","na":1,"nb":4,"a":[["colon-bto-0000269.html","colon"]],"b":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]]},{"id":"NCBITaxon:930","l":"Acidithiobacillus thiooxidans","na":1,"nb":4,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]]},{"id":"NCBITaxon:1090","l":"Chlorobiota","na":3,"nb":1,"a":[["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"]],"b":[["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"]]},{"id":"NCBITaxon:1249","l":"Weissella paramesenteroides","na":3,"nb":1,"a":[["cecum-bto-0000166.html","cecum"],["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"]],"b":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]]},{"id":"NCBITaxon:1451","l":"Paenibacillus amylolyticus","na":3,"nb":1,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"]]},{"id":"NCBITaxon:1519","l":"Clostridium tyrobutyricum","na":3,"nb":1,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["peatland-envo-00000044.html","peatland"]],"b":[["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]]},{"id":"NCBITaxon:1582","l":"Lacticaseibacillus casei","na":3,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]]},{"id":"NCBITaxon:1597","l":"Lacticaseibacillus paracasei","na":3,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":1,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":3,"nb":1,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]]},{"id":"NCBITaxon:203124","l":"Trichodesmium erythraeum IMS101","na":3,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["coastal-water-body-envo-02000049.html","coastal water body"],["marine-neritic-zone-envo-00000206.html","marine neritic zone"]],"b":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":1,"nb":3,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]]},{"id":"NCBITaxon:22","l":"Shewanella","na":1,"nb":3,"a":[["wood-bto-0005516.html","wood"]],"b":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Shewanella_Denitrifying_Richness_SynComs.html","Shewanella Denitrifying Richness SynComs"]]},{"id":"NCBITaxon:28037","l":"Streptococcus mitis","na":3,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["archeological-site-envo-00000564.html","archeological site"],["tropical-envo-01000204.html","tropical"]],"b":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]]},{"id":"NCBITaxon:301375","l":"Methanothrix harundinacea","na":3,"nb":1,"a":[["small-river-biome-envo-00000890.html","small river biome"],["shoreline-envo-00000486.html","shoreline"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"]]},{"id":"NCBITaxon:3041","l":"Chlorophyta","na":1,"nb":3,"a":[["leaf-bto-0000713.html","leaf"]],"b":[["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"]]},{"id":"NCBITaxon:33035","l":"Blautia producta","na":1,"nb":3,"a":[["juvenile-bto-0002168.html","juvenile"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]]},{"id":"NCBITaxon:33952","l":"Acetobacterium woodii","na":1,"nb":3,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]]},{"id":"NCBITaxon:375","l":"Bradyrhizobium japonicum","na":3,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"]]},{"id":"NCBITaxon:375288","l":"Parabacteroides","na":3,"nb":1,"a":[["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"]],"b":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"]]},{"id":"NCBITaxon:40214","l":"Acinetobacter johnsonii","na":3,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["pitcher-bto-0001069.html","pitcher"],["water-scum-envo-00005794.html","water scum"]],"b":[["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]]},{"id":"NCBITaxon:48736","l":"Ralstonia","na":3,"nb":1,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"]],"b":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]]},{"id":"NCBITaxon:547","l":"Enterobacter","na":1,"nb":3,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]]},{"id":"NCBITaxon:572511","l":"Blautia","na":3,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["colon-bto-0000269.html","colon"]],"b":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]]},{"id":"NCBITaxon:582","l":"Morganella morganii","na":3,"nb":1,"a":[["blast-cell-bto-0000125.html","blast cell"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"],["spike-bto-0001278.html","spike"]],"b":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]]},{"id":"NCBITaxon:69373","l":"Curtobacterium pusillum","na":3,"nb":1,"a":[["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["seedling-bto-0001228.html","seedling"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]]},{"id":"NCBITaxon:76759","l":"Pseudomonas monteilii","na":3,"nb":1,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"]]},{"id":"NCBITaxon:85413","l":"Allobosea","na":1,"nb":3,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"]],"b":[["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":3,"nb":1,"a":[["city-envo-00000856.html","city"],["cold-environment-envo-01000309.html","cold environment"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]]},{"id":"ENVO:00002127","l":"stream sediment","na":1,"nb":2,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Tropidoatractus_Magnetotacticus_Tripartite_Syntrophy.html","Tropidoatractus magnetotacticus Magnetotactic Ciliate Tripartite Syntrophy"]]},{"id":"ENVO:03000033","l":"marine sediment","na":2,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"]]},{"id":"NCBITaxon:1033","l":"Afipia","na":2,"nb":1,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"]],"b":[["Thiocyanate_Afipia_Thiobacillus_Bioreactor_Community.html","Thiocyanate-Degrading Afipia and Thiobacillus Bioreactor Community"]]},{"id":"NCBITaxon:1091494","l":"Methylotuvimicrobium alcaliphilum 20Z","na":1,"nb":2,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"]]},{"id":"NCBITaxon:1129","l":"Synechococcus","na":2,"nb":1,"a":[["column-bto-0005692.html","column"],["hemolymph-bto-0000572.html","hemolymph"]],"b":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]]},{"id":"NCBITaxon:1173061","l":"Geotrichum candidum","na":2,"nb":1,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]]},{"id":"NCBITaxon:119532","l":"Microcoleus vaginatus","na":2,"nb":1,"a":[["desert-biome-envo-01000179.html","desert biome"],["desert-area-envo-00000097.html","desert area"]],"b":[["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]]},{"id":"NCBITaxon:1255","l":"Pediococcus pentosaceus","na":2,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"]],"b":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]]},{"id":"NCBITaxon:12916","l":"Acidovorax","na":1,"nb":2,"a":[["urine-bto-0001419.html","urine"]],"b":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]]},{"id":"NCBITaxon:1303","l":"Streptococcus oralis","na":2,"nb":1,"a":[["throat-bto-0000828.html","throat"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]]},{"id":"NCBITaxon:138074","l":"Serratia symbiotica","na":2,"nb":1,"a":[["intestine-bto-0000648.html","intestine"],["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"]]},{"id":"NCBITaxon:1398","l":"Heyndrickxia coagulans","na":2,"nb":1,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"]]},{"id":"NCBITaxon:1401","l":"Paenibacillus lautus","na":2,"nb":1,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"]]},{"id":"NCBITaxon:142182","l":"Gemmatimonadota","na":1,"nb":2,"a":[["crop-bto-0000301.html","crop"]],"b":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":2,"a":[["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]]},{"id":"NCBITaxon:1538","l":"Clostridium ljungdahlii","na":1,"nb":2,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]]},{"id":"NCBITaxon:160488","l":"Pseudomonas putida (strain ATCC 47054 / DSM 6125 / CFBP 8728 / NCIMB 11950 / KT2440)","na":1,"nb":2,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"]]},{"id":"NCBITaxon:161493","l":"Anaeromyxobacter dehalogenans","na":2,"nb":1,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"]]},{"id":"NCBITaxon:1680","l":"Bifidobacterium adolescentis","na":2,"nb":1,"a":[["brain-bto-0000142.html","brain"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]]},{"id":"NCBITaxon:169215","l":"","na":1,"nb":2,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"]],"b":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]]},{"id":"NCBITaxon:171552","l":"Prevotellaceae","na":2,"nb":1,"a":[["colon-bto-0000269.html","colon"],["rumen-uberon-0007365.html","rumen"]],"b":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"NCBITaxon:1785","l":"Mycobacterium sp.","na":2,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"],["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]]},{"id":"NCBITaxon:1871043","l":"Variovorax sp.","na":1,"nb":2,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]]},{"id":"NCBITaxon:1872086","l":"Ensifer sp.","na":2,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]]},{"id":"NCBITaxon:192","l":"Azospirillum brasilense","na":2,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"]]},{"id":"NCBITaxon:20","l":"Phenylobacterium","na":2,"nb":1,"a":[["crop-bto-0000301.html","crop"],["nectar-bto-0000537.html","nectar"]],"b":[["Tomato_Oxylipin_SynCom3.html","Tomato Oxylipin-Protective SynCom3"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus (strain ATCC 27405 / DSM 1237 / JCM 9322 / NBRC 103400 / NCIMB 10682 / NRRL B-4536 / VPI 7372)","na":1,"nb":2,"a":[["blood-plasma-bto-0000131.html","blood plasma"]],"b":[["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]]},{"id":"NCBITaxon:2162","l":"Methanobacterium formicicum","na":1,"nb":2,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"]]},{"id":"NCBITaxon:2173","l":"Methanobrevibacter smithii","na":1,"nb":2,"a":[["lagoon-envo-00000038.html","lagoon"]],"b":[["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"]]},{"id":"NCBITaxon:2223","l":"Methanothrix soehngenii","na":1,"nb":2,"a":[["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]]},{"id":"NCBITaxon:231455","l":"Dyella japonica","na":1,"nb":2,"a":[["area-of-tundra-envo-00000112.html","area of tundra"]],"b":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii (strain ATCC 43067 / DSM 2661 / JAL-1 / JCM 10045 / NBRC 100440)","na":2,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":2,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"]]},{"id":"NCBITaxon:2836","l":"Bacillariophyta","na":2,"nb":1,"a":[["diatom-associated-environment-habitatmech-gold-1276bea544.html","diatom-associated environment"],["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]]},{"id":"NCBITaxon:285","l":"Comamonas testosteroni","na":2,"nb":1,"a":[["waste-habitatmech-bacdive-36df85e4a4.html","Waste"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]]},{"id":"NCBITaxon:293387","l":"Bacillus altitudinis","na":1,"nb":2,"a":[["resting-cell-bto-0001170.html","resting cell"]],"b":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"]]},{"id":"NCBITaxon:29448","l":"Bradyrhizobium elkanii","na":2,"nb":1,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["area-of-tundra-envo-00000112.html","area of tundra"]],"b":[["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]]},{"id":"NCBITaxon:299767","l":"Enterobacter ludwigii","na":1,"nb":2,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]]},{"id":"NCBITaxon:323259","l":"Methanospirillum hungatei JF-1","na":1,"nb":2,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]]},{"id":"NCBITaxon:39152","l":"Methanococcus maripaludis","na":1,"nb":2,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["DVM_Triculture.html","DVM Tri-culture"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":2,"nb":1,"a":[["city-envo-00000856.html","city"],["cropland-biome-envo-01000245.html","cropland biome"]],"b":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]]},{"id":"NCBITaxon:515619","l":"Agathobacter rectalis ATCC 33656","na":1,"nb":2,"a":[["gut-epithelium-bto-0000956.html","gut epithelium"]],"b":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]]},{"id":"NCBITaxon:6239","l":"Caenorhabditis elegans","na":2,"nb":1,"a":[["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"]]},{"id":"NCBITaxon:648","l":"Aeromonas caviae","na":2,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]]},{"id":"NCBITaxon:82367","l":"Paracoccus pantotrophus","na":2,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"]]},{"id":"NCBITaxon:82380","l":"Microbacterium oxydans","na":1,"nb":2,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]]},{"id":"NCBITaxon:876","l":"Desulfovibrio desulfuricans","na":2,"nb":1,"a":[["sludge-envo-00002044.html","sludge"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":2,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]]},{"id":"UBERON:0001155","l":"colon","na":2,"nb":1,"a":[["colon-habitatmech-gold-c484d9a195.html","Colon"],["colon-habitatmech-gold-195d07bc47.html","Colon"]],"b":[["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"]]},{"id":"ENVO:00000057","l":"mangrove swamp","na":1,"nb":1,"a":[["mangrove-swamp-envo-00000057.html","mangrove swamp"]],"b":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"]]},{"id":"ENVO:00000126","l":"sulfur spring","na":1,"nb":1,"a":[["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"]]},{"id":"ENVO:00002121","l":"alkaline salt lake","na":1,"nb":1,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"]],"b":[["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]]},{"id":"ENVO:00003030","l":"silage","na":1,"nb":1,"a":[["silage-envo-00003030.html","silage"]],"b":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"]]},{"id":"ENVO:01000910","l":"soil biocrust","na":1,"nb":1,"a":[["soil-biocrust-envo-01000910.html","soil biocrust"]],"b":[["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]]},{"id":"NCBITaxon:100176","l":"Papillibacter cinnamivorans","na":1,"nb":1,"a":[["cecum-bto-0000166.html","cecum"]],"b":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"]]},{"id":"NCBITaxon:105972","l":"Methylosarcina fibrata","na":1,"nb":1,"a":[["stream-envo-00000023.html","stream"]],"b":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]]},{"id":"NCBITaxon:110321","l":"Sinorhizobium medicae","na":1,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"]]},{"id":"NCBITaxon:1122947","l":"Pelosinus fermentans DSM 17108","na":1,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"]]},{"id":"NCBITaxon:1131703","l":"Sphaerochaeta globosa","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"]]},{"id":"NCBITaxon:1134404","l":"Ignavibacteriota","na":1,"nb":1,"a":[["gut-bto-0000545.html","gut"]],"b":[["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"]]},{"id":"NCBITaxon:119060","l":"Burkholderiaceae","na":1,"nb":1,"a":[["trunk-bto-0001493.html","trunk"]],"b":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]]},{"id":"NCBITaxon:1253","l":"Pediococcus","na":1,"nb":1,"a":[["cecum-bto-0000166.html","cecum"]],"b":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]]},{"id":"NCBITaxon:1272","l":"Kocuria varians","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"]]},{"id":"NCBITaxon:135619","l":"Oceanospirillales","na":1,"nb":1,"a":[["column-bto-0005692.html","column"]],"b":[["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"]]},{"id":"NCBITaxon:1455","l":"Pseudobacillus badius","na":1,"nb":1,"a":[["organic-waste-material-envo-00002873.html","organic waste material"]],"b":[["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"]]},{"id":"NCBITaxon:1488","l":"Clostridium acetobutylicum","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]]},{"id":"NCBITaxon:1501","l":"Clostridium pasteurianum","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]]},{"id":"NCBITaxon:1517","l":"Thermoanaerobacterium thermosaccharolyticum","na":1,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]]},{"id":"NCBITaxon:1579","l":"Lactobacillus acidophilus","na":1,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"]],"b":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]]},{"id":"NCBITaxon:1585","l":"Lactobacillus delbrueckii subsp. bulgaricus","na":1,"nb":1,"a":[["pig-manure-envo-00003860.html","pig manure"]],"b":[["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]]},{"id":"NCBITaxon:158836","l":"Enterobacter hormaechei","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]]},{"id":"NCBITaxon:168384","l":"Marvinbryantia formatexigens","na":1,"nb":1,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"]]},{"id":"NCBITaxon:1828","l":"Rhodococcoides fascians","na":1,"nb":1,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]]},{"id":"NCBITaxon:1871068","l":"Phyllobacteriaceae bacterium","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]]},{"id":"NCBITaxon:1898203","l":"Lachnospiraceae bacterium","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]]},{"id":"NCBITaxon:216389","l":"Dehalococcoides mccartyi BAV1","na":1,"nb":1,"a":[["road-envo-00000064.html","road"]],"b":[["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]]},{"id":"NCBITaxon:216778","l":"Stenotrophomonas rhizophila","na":1,"nb":1,"a":[["style-bto-0001313.html","style"]],"b":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"]]},{"id":"NCBITaxon:219572","l":"Pseudomonas antarctica","na":1,"nb":1,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]]},{"id":"NCBITaxon:225937","l":"Marinobacter adhaerens HP15","na":1,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]]},{"id":"NCBITaxon:226","l":"Alteromonas","na":1,"nb":1,"a":[["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]]},{"id":"NCBITaxon:226186","l":"Bacteroides thetaiotaomicron (strain ATCC 29148 / DSM 2079 / JCM 5827 / CCUG 10774 / NCTC 10582 / VPI-5482 / E50)","na":1,"nb":1,"a":[["gut-epithelium-bto-0000956.html","gut epithelium"]],"b":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima (strain ATCC 43589 / DSM 3109 / JCM 10099 / NBRC 100826 / MSB8)","na":1,"nb":1,"a":[["feather-bto-0000447.html","feather"]],"b":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]]},{"id":"NCBITaxon:246200","l":"Ruegeria pomeroyi DSS-3","na":1,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]]},{"id":"NCBITaxon:250","l":"Chryseobacterium gleum","na":1,"nb":1,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]]},{"id":"NCBITaxon:2745","l":"Halomonas","na":1,"nb":1,"a":[["wood-bto-0005516.html","wood"]],"b":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]]},{"id":"NCBITaxon:29394","l":"Dolosigranulum pigrum","na":1,"nb":1,"a":[["bone-element-uberon-0001474.html","bone element"]],"b":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"]]},{"id":"NCBITaxon:3078","l":"Auxenochlorella pyrenoidosa","na":1,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"]],"b":[["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"]]},{"id":"NCBITaxon:33010","l":"Cutibacterium avidum","na":1,"nb":1,"a":[["bone-element-uberon-0001474.html","bone element"]],"b":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]]},{"id":"NCBITaxon:33011","l":"Cutibacterium granulosum","na":1,"nb":1,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]]},{"id":"NCBITaxon:33883","l":"Microbacterium arborescens","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]]},{"id":"NCBITaxon:340177","l":"Chlorobium chlorochromatii CaD3","na":1,"nb":1,"a":[["photoreceptor-cell-bto-0001060.html","photoreceptor cell"]],"b":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"]]},{"id":"NCBITaxon:372461","l":"Buchnera aphidicola BCc","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"]]},{"id":"NCBITaxon:38304","l":"Corynebacterium tuberculostearicum","na":1,"nb":1,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"]]},{"id":"NCBITaxon:399726","l":"Thermoanaerobacter sp. X514","na":1,"nb":1,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"]]},{"id":"NCBITaxon:409291","l":"Arthrobacter humicola","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]]},{"id":"NCBITaxon:43775","l":"Syntrophus gentianae","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]]},{"id":"NCBITaxon:47880","l":"Pseudomonas fulva","na":1,"nb":1,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]]},{"id":"NCBITaxon:47920","l":"Acidovorax delafieldii","na":1,"nb":1,"a":[["bone-element-uberon-0001474.html","bone element"]],"b":[["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]]},{"id":"NCBITaxon:49082","l":"Candidatus Neoarthromitus","na":1,"nb":1,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]]},{"id":"NCBITaxon:51669","l":"Tetragenococcus halophilus","na":1,"nb":1,"a":[["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]]},{"id":"NCBITaxon:542","l":"Zymomonas mobilis","na":1,"nb":1,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["Zymomonas_Ecoli_Exometabolomics_Obligate_Mutualism.html","Zymomonas-E. coli Exometabolomics-Designed Obligate Mutualism"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":1,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":1,"nb":1,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]]},{"id":"NCBITaxon:571256","l":"Brucella pituitosa","na":1,"nb":1,"a":[["seedling-bto-0001228.html","seedling"]],"b":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]]},{"id":"NCBITaxon:685","l":"Vibrio diazotrophicus","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]]},{"id":"NCBITaxon:80840","l":"Burkholderiales","na":1,"nb":1,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"]],"b":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"]]},{"id":"NCBITaxon:80866","l":"Delftia acidovorans","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]]},{"id":"NCBITaxon:82","l":"Hyphomicrobium sp.","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"]]},{"id":"NCBITaxon:86185","l":"Pseudomonas lundensis","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]]},{"id":"NCBITaxon:930166","l":"Pseudomonas brassicacearum","na":1,"nb":1,"a":[["spike-bto-0001278.html","spike"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]]},{"id":"NCBITaxon:94625","l":"Brucella intermedia","na":1,"nb":1,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]]},{"id":"UBERON:0002097","l":"skin of body","na":1,"nb":1,"a":[["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["SkinCom_Synthetic_Skin_Community.html","SkinCom Synthetic Skin Community"]]}]} \ No newline at end of file +{"a":"HabitatMech","b":"CommunityMech","base":{"HabitatMech":"https://culturebotai.github.io/HabitatMech/pages/habitats/","CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/"},"n":313,"by":{"NCBITaxon":265,"ENVO":42,"UBERON":4,"CHEBI":2},"terms":[{"id":"NCBITaxon:2","l":"Bacteria","na":40,"nb":56,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["factory-envo-01000536.html","factory"],["adult-bto-0001043.html","adult"]],"b":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"]]},{"id":"ENVO:00001998","l":"soil","na":105,"nb":17,"a":[["soil-habitatmech-gold-fc35741739.html","Soil"],["wetland-area-envo-00000043.html","wetland area"],["soil-habitatmech-gold-b1d707114a.html","Soil"],["soil-habitatmech-gold-e9844fc187.html","Soil"],["soil-habitatmech-gold-3e86b794ef.html","Soil"],["soil-habitatmech-gold-067f7f5e2a.html","Soil"]],"b":[["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]]},{"id":"ENVO:01001001","l":"plant-associated environment","na":21,"nb":16,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["bryophytes-habitatmech-gold-35beb98884.html","Bryophytes"],["endosphere-habitatmech-gold-bfe3e11951.html","Endosphere"],["green-alga-associated-environment-habitatmech-gold-184cc9e802.html","green-alga-associated environment"],["mixed-parts-habitatmech-gold-4dd29bdcf8.html","Mixed parts"],["peat-moss-associated-environment-habitatmech-gold-7f57b82cab.html","peat moss-associated environment"]],"b":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]]},{"id":"NCBITaxon:1386","l":"Bacillus ","na":19,"nb":16,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["crop-bto-0000301.html","crop"],["dorsum-bto-0001713.html","dorsum"],["hand-bto-0004668.html","hand"],["head-bto-0000282.html","head"],["juvenile-bto-0002168.html","juvenile"]],"b":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":36,"nb":14,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["bay-envo-00000032.html","bay"],["freshwater-biome-envo-00000873.html","freshwater biome"],["liquid-water-envo-00002006.html","liquid water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]]},{"id":"ENVO:00002123","l":"bioreactor","na":31,"nb":13,"a":[["aerobic-bioreactor-envo-00002126.html","aerobic bioreactor"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["air-scrubber-biofilm-habitatmech-gold-7f436f8aff.html","air scrubber biofilm"],["biofilter-envo-00002152.html","biofilter"],["bioreactor-envo-00002123.html","bioreactor"],["bioreactor-habitatmech-gold-c4bf3d0c83.html","Bioreactor"]],"b":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":27,"nb":11,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["watercourse-envo-00000029.html","watercourse"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["egg-food-product-foodon-00001274.html","egg food product"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]]},{"id":"ENVO:00002007","l":"sediment","na":103,"nb":10,"a":[["marine-sediment-envo-03000033.html","marine sediment"],["sediment-habitatmech-gold-6bc70f0406.html","Sediment"],["sediment-habitatmech-gold-33b265d89f.html","Sediment"],["sediment-habitatmech-gold-7db7617ea4.html","Sediment"],["sediment-habitatmech-gold-2f9eb7ed2f.html","Sediment"],["sediment-habitatmech-gold-2ff751e0a6.html","Sediment"]],"b":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]]},{"id":"NCBITaxon:286","l":"Pseudomonas","na":10,"nb":18,"a":[["heart-bto-0000562.html","heart"],["juvenile-bto-0002168.html","juvenile"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"],["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":10,"nb":15,"a":[["anther-bto-0000079.html","anther"],["epithelial-cell-bto-0000414.html","epithelial cell"],["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":28,"nb":9,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["liquid-water-envo-00002006.html","liquid water"],["watercourse-envo-00000029.html","watercourse"],["compost-envo-00002170.html","compost"],["hospital-envo-00002173.html","hospital"],["human-construction-envo-00000070.html","human construction"]],"b":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":11,"nb":9,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["resting-cell-bto-0001170.html","resting cell"],["seedling-bto-0001228.html","seedling"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":27,"nb":7,"a":[["small-river-biome-envo-00000890.html","small river biome"],["factory-envo-01000536.html","factory"],["organic-waste-material-envo-00002873.html","organic waste material"],["leaf-po-0025034.html","leaf"],["milk-uberon-0001913.html","milk"],["rhizosphere-envo-00005801.html","rhizosphere"]],"b":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]]},{"id":"ENVO:00002116","l":"contaminated soil","na":7,"nb":15,"a":[["hydrocarbon-habitatmech-gold-3c68e33a11.html","Hydrocarbon"],["persistent-organic-pollutant-bioremediation-material-habitatmech-gold-1a78606807.html","persistent organic pollutant bioremediation material"],["contaminated-soil-envo-00002116.html","contaminated soil"],["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"],["oil-contaminated-soil-envo-00002875.html","oil contaminated soil"],["pesticide-habitatmech-gold-8ebd2ee3c5.html","Pesticide"]],"b":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"]]},{"id":"NCBITaxon:40324","l":"Stenotrophomonas maltophilia","na":15,"nb":7,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["catheter-device-ncit-c50344.html","Catheter Device"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["seedling-bto-0001228.html","seedling"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]]},{"id":"ENVO:00002043","l":"wastewater treatment plant","na":9,"nb":7,"a":[["a-o-treatment-system-habitatmech-gold-7c91485eb8.html","A/O treatment system"],["activated-sludge-habitatmech-gold-032b7dd40b.html","Activated sludge"],["aerobic-digester-habitatmech-gold-03fc563fae.html","Aerobic digester"],["anaerobic-digester-habitatmech-gold-3f58fb59be.html","Anaerobic digester"],["effluent-habitatmech-gold-827b5dbbef.html","Effluent"],["influent-habitatmech-gold-2bf3ab7d2f.html","Influent"]],"b":[["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Rhizorhabdus_Cupriavidus_BDE47_Degradation_SynCom.html","Rhizorhabdus-Cupriavidus BDE-47 Degradation SynCom"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":19,"nb":6,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["saline-water-body-envo-01001319.html","saline water body"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":18,"nb":6,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]]},{"id":"UBERON:0000160","l":"intestine","na":11,"nb":6,"a":[["intestine-habitatmech-gold-f3f5ed6008.html","Intestine"],["intestine-habitatmech-gold-70ccbcfe44.html","Intestine"],["intestine-habitatmech-gold-8a75a65fc5.html","Intestine"],["intestine-habitatmech-gold-0171231ef5.html","Intestine"],["intestine-habitatmech-gold-523d63f6f3.html","Intestine"],["intestine-habitatmech-gold-394283d34e.html","Intestine"]],"b":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["OMM12_Gnotobiotic_Mouse_Gut_Community.html","OMM12 Gnotobiotic Mouse Gut Community"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]]},{"id":"NCBITaxon:1578","l":"Lactobacillus","na":20,"nb":5,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["blood-bto-0000089.html","blood"],["brain-bto-0000142.html","brain"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["hand-bto-0004668.html","hand"]],"b":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"],["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]]},{"id":"ENVO:00002001","l":"waste water","na":19,"nb":5,"a":[["activated-sludge-habitatmech-gold-0d353772af.html","Activated Sludge"],["anaerobic-digestor-habitatmech-gold-ed87e682a9.html","Anaerobic digestor"],["industrial-wastewater-envo-01000964.html","industrial wastewater"],["municipal-landfill-habitatmech-gold-0f40aa60ce.html","Municipal landfill"],["nutrient-removal-habitatmech-gold-a18a70ae30.html","Nutrient removal"],["reclaimed-recycled-wastewater-habitatmech-gold-dc4dba910a.html","Reclaimed/Recycled wastewater"]],"b":[["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Staged_Cattle_Manure_Ensifer_Bacillus_SynCom.html","Staged Ensifer-Bacillus Cattle-Manure Wastewater SynCom"]]},{"id":"ENVO:00000043","l":"wetland area","na":14,"nb":5,"a":[["bog-habitatmech-gold-42a3b7b2d3.html","Bog"],["fen-habitatmech-gold-9de4fdaa2a.html","Fen"],["marsh-envo-00000035.html","marsh"],["microbial-mat-habitatmech-gold-e066163fc8.html","Microbial mat"],["sediment-habitatmech-gold-7db7617ea4.html","Sediment"],["sediment-habitatmech-gold-98d936714f.html","Sediment"]],"b":[["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Wetland_Oxygen_Sulfate_GHG_Microcosm_Community.html","Wetland Oxygen-Sulfate Greenhouse Gas Microcosm Community"]]},{"id":"ENVO:01001004","l":"groundwater","na":5,"nb":11,"a":[["contaminated-habitatmech-gold-66f93e3a62.html","Contaminated"],["contaminated-habitatmech-gold-33f4720550.html","Contaminated"],["groundwater-habitatmech-gold-22a80cbd14.html","Groundwater"],["groundwater-habitatmech-gold-7f8e268653.html","Groundwater"],["groundwater-envo-01001004.html","groundwater"]],"b":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":33,"nb":4,"a":[["biofilm-envo-00002034.html","biofilm"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["pond-water-envo-00002228.html","pond water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["water-body-envo-00000063.html","water body"]],"b":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"],["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]]},{"id":"NCBITaxon:1485","l":"Clostridium","na":26,"nb":4,"a":[["biofilm-envo-00002034.html","biofilm"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["alimentary-canal-bto-0000058.html","alimentary canal"],["colon-bto-0000269.html","colon"]],"b":[["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["QY2S1_Dehalogenimonas_BFR_Bioremediation_Consortium.html","QY2-S1 Dehalogenimonas-Rich Brominated-Flame-Retardant Consortium"],["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":19,"nb":4,"a":[["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["bone-element-uberon-0001474.html","bone element"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]]},{"id":"NCBITaxon:13687","l":"Sphingomonas","na":14,"nb":4,"a":[["crop-bto-0000301.html","crop"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["ileum-bto-0000620.html","ileum"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"]],"b":[["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"],["Wheat_Consortium_C6.html","Wheat Synthetic Consortium C6"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]]},{"id":"NCBITaxon:1590","l":"Lactiplantibacillus plantarum","na":14,"nb":4,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["food-fermented-foodon-00001258.html","food (fermented)"],["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"],["breast-bto-0000149.html","breast"],["colonic-epithelium-bto-0001709.html","colonic epithelium"],["epithelial-cell-bto-0000414.html","epithelial cell"]],"b":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Pichia_Lactiplantibacillus_CCMA_Plant_Beverage_Coculture.html","Pichia-Lactiplantibacillus CCMA Plant Beverage Coculture"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":11,"nb":4,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["fermentation-starter-envo-03600040.html","fermentation starter"],["fruit-bto-0000486.html","fruit"],["mammary-epithelial-cell-bto-0004300.html","mammary epithelial cell"],["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]]},{"id":"NCBITaxon:1827","l":"Rhodococcus ","na":4,"nb":8,"a":[["nectar-bto-0000537.html","nectar"],["pitcher-bto-0001069.html","pitcher"],["small-intestine-bto-0000651.html","small intestine"],["stem-bto-0001300.html","stem"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]]},{"id":"NCBITaxon:33038","l":"Mediterraneibacter gnavus","na":8,"nb":4,"a":[["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["juvenile-bto-0002168.html","juvenile"],["animal-litter-envo-00002191.html","animal litter"]],"b":[["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Clostridial_isoDCA_Mini_Consortium.html","Clostridial isoDCA Mini Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]]},{"id":"NCBITaxon:374","l":"Bradyrhizobium","na":4,"nb":5,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"],["wood-bto-0005516.html","wood"]],"b":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"],["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]]},{"id":"NCBITaxon:37919","l":"Rhodococcus opacus","na":5,"nb":4,"a":[["watercourse-envo-00000029.html","watercourse"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"],["sludge-envo-00002044.html","sludge"],["water-scum-envo-00005794.html","water scum"]],"b":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"],["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":4,"nb":4,"a":[["stream-envo-00000023.html","stream"],["biome-envo-00000428.html","biome"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]]},{"id":"ENVO:00002170","l":"compost","na":20,"nb":3,"a":[["compost-envo-00002170.html","compost"],["composting-habitatmech-gold-143ceb8669.html","Composting"],["composting-habitatmech-gold-edeecbabed.html","Composting"],["composting-habitatmech-gold-5948923b46.html","Composting"],["composting-habitatmech-gold-70db4820d1.html","Composting"],["composting-habitatmech-gold-cdbbd857c8.html","Composting"]],"b":[["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":17,"nb":3,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["fruit-bto-0000486.html","fruit"],["leaf-po-0025034.html","leaf"],["rhizosphere-envo-00005801.html","rhizosphere"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]]},{"id":"ENVO:00002046","l":"activated sludge","na":16,"nb":3,"a":[["activated-sludge-habitatmech-gold-6ba6dd1c82.html","Activated sludge"],["activated-sludge-habitatmech-gold-adf7e16a3a.html","Activated sludge"],["activated-sludge-habitatmech-gold-25b680d9bc.html","Activated sludge"],["activated-sludge-habitatmech-gold-dab267c443.html","Activated sludge"],["activated-sludge-habitatmech-gold-43c33f3ecc.html","Activated sludge"],["activated-sludge-habitatmech-gold-f459151394.html","Activated sludge"]],"b":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"]]},{"id":"NCBITaxon:1667","l":"Arthrobacter sp.","na":9,"nb":3,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["leaf-po-0025034.html","leaf"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":8,"nb":3,"a":[["reservoir-envo-00000025.html","reservoir"],["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["secretion-bto-0002979.html","secretion"],["stomach-bto-0001307.html","stomach"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":8,"nb":3,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["lab-synthesis-habitatmech-bacdive-0e92e77cd4.html","Lab-synthesis"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["oil-spill-envo-00002061.html","oil spill"],["temperate-envo-01000206.html","temperate"]],"b":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":5,"nb":3,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["pseudostem-bto-0005992.html","pseudostem"],["seedling-bto-0001228.html","seedling"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["soil-envo-00001998.html","soil"]],"b":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]]},{"id":"ENVO:00000044","l":"peatland","na":4,"nb":3,"a":[["bog-habitatmech-gold-42a3b7b2d3.html","Bog"],["blanket-bog-envo-00000511.html","blanket bog"],["fen-envo-00000232.html","fen"],["peatland-envo-00000044.html","peatland"]],"b":[["SPRUCE_Peatland_Methane_Cycling_Community.html","SPRUCE Peatland Methane-Cycling Microbial Community"],["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":3,"nb":4,"a":[["milk-uberon-0001913.html","milk"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]]},{"id":"NCBITaxon:1534","l":"Clostridium kluyveri","na":3,"nb":4,"a":[["reservoir-envo-00000025.html","reservoir"],["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"]],"b":[["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]]},{"id":"NCBITaxon:237","l":"Flavobacterium","na":3,"nb":4,"a":[["column-bto-0005692.html","column"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]]},{"id":"NCBITaxon:3055","l":"Chlamydomonas reinhardtii","na":4,"nb":3,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["large-river-biome-envo-00000887.html","large river biome"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["pond-water-envo-00002228.html","pond water"]],"b":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]]},{"id":"NCBITaxon:32008","l":"Burkholderia","na":3,"nb":4,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["midgut-bto-0000863.html","midgut"]],"b":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]]},{"id":"NCBITaxon:216816","l":"Bifidobacterium longum","na":3,"nb":3,"a":[["coral-reef-envo-00000150.html","coral reef"],["egg-food-product-foodon-00001274.html","egg food product"],["juvenile-bto-0002168.html","juvenile"]],"b":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]]},{"id":"NCBITaxon:239935","l":"Akkermansia muciniphila","na":3,"nb":3,"a":[["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["secretion-bto-0002979.html","secretion"]],"b":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":3,"nb":3,"a":[["liquid-water-envo-00002006.html","liquid water"],["sludge-envo-00002044.html","sludge"],["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]]},{"id":"ENVO:01001405","l":"laboratory environment","na":2,"nb":198,"a":[["genetic-cross-habitatmech-gold-ba9317369a.html","Genetic cross"],["laboratory-environment-envo-01001405.html","laboratory environment"]],"b":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]]},{"id":"ENVO:00005801","l":"rhizosphere","na":2,"nb":62,"a":[["rhizosphere-envo-00005801.html","rhizosphere"],["soil-habitatmech-gold-067f7f5e2a.html","Soil"]],"b":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":40,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["laboratory-facility-envo-01001406.html","laboratory facility"],["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["biofilm-bto-0002690.html","biofilm"]],"b":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]]},{"id":"ENVO:00002124","l":"anaerobic bioreactor","na":20,"nb":2,"a":[["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["anaerobic-sludge-envo-00002129.html","anaerobic sludge"],["anaerobic-sludge-blanket-reactor-envo-00002213.html","anaerobic sludge blanket reactor"],["biofilm-habitatmech-gold-6c12d05420.html","Biofilm"],["biogas-envo-01000556.html","biogas"],["biomass-habitatmech-gold-6dd85a8177.html","Biomass"]],"b":[["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Shewanella_Pseudomonas_Fe0_Electrosyntrophic_Denitrifying_Consortium.html","Shewanella oneidensis + Pseudomonas aeruginosa Fe0-dependent Electro-syntrophic Denitrifying Consortium"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":14,"nb":2,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["compost-envo-00002170.html","compost"],["organic-waste-material-envo-00002873.html","organic waste material"],["larva-bto-0000707.html","larva"],["rhizosphere-envo-00005801.html","rhizosphere"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]]},{"id":"ENVO:00000051","l":"hot spring","na":13,"nb":2,"a":[["acid-lake-habitatmech-gold-21e53e7981.html","Acid lake"],["geothermal-pool-hot-lake-habitatmech-gold-d2132d09ae.html","Geothermal pool/Hot lake"],["hot-42-90c-habitatmech-gold-c085f6141a.html","Hot (42-90C)"],["hot-spring-envo-00000051.html","hot spring"],["microbial-mats-habitatmech-gold-a0372e2d63.html","Microbial mats"],["near-boiling-90c-habitatmech-gold-8b53067bc5.html","Near-boiling (>90C)"]],"b":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]]},{"id":"UBERON:0001007","l":"digestive system","na":13,"nb":2,"a":[["digestive-system-habitatmech-gold-26a84185d3.html","Digestive system"],["digestive-system-habitatmech-gold-6eecdf150d.html","Digestive system"],["digestive-system-habitatmech-gold-d7cff86ce8.html","Digestive system"],["digestive-system-habitatmech-gold-8a68d0f6f5.html","Digestive system"],["digestive-system-habitatmech-gold-c1d7082e4b.html","Digestive system"],["digestive-system-habitatmech-gold-f6720bccf0.html","Digestive system"]],"b":[["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]]},{"id":"NCBITaxon:1117","l":"Cyanobacteriota","na":11,"nb":2,"a":[["cecum-bto-0000166.html","cecum"],["colon-bto-0000269.html","colon"],["gut-bto-0000545.html","gut"],["head-bto-0000282.html","head"],["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"]],"b":[["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]]},{"id":"ENVO:00001997","l":"acid mine drainage","na":2,"nb":9,"a":[["acid-mine-drainage-envo-00001997.html","acid mine drainage"],["sediment-habitatmech-gold-7e27a52150.html","Sediment"]],"b":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":9,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["mud-envo-01000001.html","mud"]],"b":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":8,"nb":2,"a":[["groundwater-envo-01001004.html","groundwater"],["bioreactor-envo-00002123.html","bioreactor"],["river-envo-00000022.html","river"],["freshwater-environment-envo-01000306.html","freshwater environment"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]]},{"id":"ENVO:03600040","l":"fermentation starter","na":2,"nb":7,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["active-sourdough-starter-habitatmech-gold-3153798c1a.html","active sourdough starter"]],"b":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Sichuan_Shai_Vinegar_Yeast_Flavor_SynCom.html","Sichuan Shai Vinegar Yeast Flavor SynCom"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"],["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]]},{"id":"NCBITaxon:28216","l":"Betaproteobacteria","na":7,"nb":2,"a":[["column-bto-0005692.html","column"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["spike-bto-0001278.html","spike"]],"b":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":7,"nb":2,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["liquid-water-envo-00002006.html","liquid water"],["crown-gall-bto-0000303.html","crown gall"],["finger-bto-0004669.html","finger"],["resting-cell-bto-0001170.html","resting cell"],["water-scum-envo-00005794.html","water scum"]],"b":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]]},{"id":"NCBITaxon:1236","l":"Gammaproteobacteria","na":6,"nb":2,"a":[["column-bto-0005692.html","column"],["hemolymph-bto-0000572.html","hemolymph"],["oil-secretion-bto-0005373.html","oil secretion"],["spike-bto-0001278.html","spike"],["urine-bto-0001419.html","urine"],["subtropical-envo-01000205.html","subtropical"]],"b":[["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]]},{"id":"NCBITaxon:1305","l":"Streptococcus sanguinis","na":6,"nb":2,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["throat-bto-0000828.html","throat"],["geographic-feature-envo-00000000.html","geographic feature"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]]},{"id":"NCBITaxon:253","l":"Chryseobacterium indologenes","na":6,"nb":2,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["seedling-bto-0001228.html","seedling"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["tropical-envo-01000204.html","tropical"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"]]},{"id":"NCBITaxon:28211","l":"Alphaproteobacteria","na":6,"nb":2,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"],["alimentary-canal-bto-0000058.html","alimentary canal"],["column-bto-0005692.html","column"],["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["spike-bto-0001278.html","spike"]],"b":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]]},{"id":"ENVO:00002003","l":"fecal material","na":2,"nb":5,"a":[["frass-habitatmech-gold-319c3f351e.html","Frass"],["frass-habitatmech-gold-67f3cde908.html","Frass"]],"b":[["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"]]},{"id":"NCBITaxon:145262","l":"Methanothermobacter thermautotrophicus","na":5,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["intestine-environment-envo-2100002.html","intestine environment"],["sludge-envo-00002044.html","sludge"]],"b":[["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]]},{"id":"NCBITaxon:1883","l":"Streptomyces","na":2,"nb":5,"a":[["crop-bto-0000301.html","crop"],["lab-synthesis-habitatmech-bacdive-0e92e77cd4.html","Lab-synthesis"]],"b":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["Wheat_Consortium_C6.html","Wheat Synthetic Consortium C6"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]]},{"id":"NCBITaxon:1335","l":"Streptococcus equinus","na":4,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["stomach-bto-0001307.html","stomach"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":4,"nb":2,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["carcass-envo-00002033.html","carcass"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["sludge-envo-00002044.html","sludge"]],"b":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":4,"nb":2,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]]},{"id":"NCBITaxon:165695","l":"Sphingobium","na":2,"nb":4,"a":[["juvenile-bto-0002168.html","juvenile"],["leaf-bto-0000713.html","leaf"]],"b":[["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["Sphingobium_Nitrososphaera_Phenanthrene_Carbon_SynCom.html","Sphingobium-Nitrososphaera Phenanthrene-Carbon SynCom"],["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]]},{"id":"NCBITaxon:1678","l":"Bifidobacterium","na":2,"nb":4,"a":[["ileum-bto-0000620.html","ileum"],["juvenile-bto-0002168.html","juvenile"]],"b":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"NCBITaxon:33882","l":"Microbacterium","na":4,"nb":2,"a":[["leaf-bto-0000713.html","leaf"],["pitcher-bto-0001069.html","pitcher"],["small-intestine-bto-0000651.html","small intestine"],["stem-bto-0001300.html","stem"]],"b":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]]},{"id":"NCBITaxon:816","l":"Bacteroides","na":2,"nb":4,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["colon-bto-0000269.html","colon"]],"b":[["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":2,"nb":4,"a":[["hospital-envo-00002173.html","hospital"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]]},{"id":"NCBITaxon:105841","l":"Anaerostipes caccae","na":3,"nb":2,"a":[["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["emulsion-envo-00010506.html","emulsion"],["organic-feature-envo-01000159.html","organic feature"]],"b":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]]},{"id":"NCBITaxon:1492","l":"Clostridium butyricum","na":3,"nb":2,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["intestine-environment-envo-2100002.html","intestine environment"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":2,"nb":3,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]]},{"id":"NCBITaxon:203682","l":"Planctomycetota","na":2,"nb":3,"a":[["column-bto-0005692.html","column"],["crop-bto-0000301.html","crop"]],"b":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"]]},{"id":"NCBITaxon:2208","l":"Methanosarcina barkeri","na":2,"nb":3,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["sludge-envo-00002044.html","sludge"]],"b":[["DVM_Triculture.html","DVM Tri-culture"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]]},{"id":"NCBITaxon:28108","l":"Alteromonas macleodii","na":3,"nb":2,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["marine-water-body-envo-00001999.html","marine water body"],["sandstone-envo-00002055.html","sandstone"]],"b":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]]},{"id":"NCBITaxon:29466","l":"Veillonella parvula","na":3,"nb":2,"a":[["dental-plaque-bto-0000338.html","dental plaque"],["juvenile-bto-0002168.html","juvenile"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]]},{"id":"NCBITaxon:33059","l":"Acidithiobacillus caldus","na":3,"nb":2,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["paddy-field-envo-00000297.html","paddy field"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]]},{"id":"NCBITaxon:33959","l":"Lactobacillus johnsonii","na":3,"nb":2,"a":[["animal-litter-envo-00002191.html","animal litter"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":3,"nb":2,"a":[["bile-bto-0000121.html","bile"],["rectum-bto-0001158.html","rectum"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]]},{"id":"NCBITaxon:528","l":"Ochrobactrum","na":2,"nb":3,"a":[["pitcher-bto-0001069.html","pitcher"],["small-intestine-bto-0000651.html","small intestine"]],"b":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"]]},{"id":"NCBITaxon:853","l":"Faecalibacterium prausnitzii","na":2,"nb":3,"a":[["coral-reef-envo-00000150.html","coral reef"],["tropical-envo-01000204.html","tropical"]],"b":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"]]},{"id":"NCBITaxon:110500","l":"Pelotomaculum thermopropionicum","na":2,"nb":2,"a":[["river-envo-00000022.html","river"],["subpolar-coniferous-forest-biome-envo-01000250.html","subpolar coniferous forest biome"]],"b":[["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"]]},{"id":"NCBITaxon:1234","l":"Nitrospira","na":2,"nb":2,"a":[["crop-bto-0000301.html","crop"],["seedling-bto-0001228.html","seedling"]],"b":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"]]},{"id":"NCBITaxon:244366","l":"Klebsiella variicola","na":2,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]]},{"id":"NCBITaxon:28034","l":"Sulfobacillus thermosulfidooxidans","na":2,"nb":2,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]]},{"id":"NCBITaxon:357809","l":"Lachnoclostridium phytofermentans ISDg","na":2,"nb":2,"a":[["reservoir-envo-00000025.html","reservoir"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":2,"nb":2,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]]},{"id":"NCBITaxon:39488","l":"Anaerobutyricum hallii","na":2,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"],["harbour-envo-00000463.html","harbour"]],"b":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]]},{"id":"NCBITaxon:4577","l":"Zea mays","na":2,"nb":2,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"]]},{"id":"NCBITaxon:84567","l":"Pedobacter","na":2,"nb":2,"a":[["air-envo-00002005.html","air"],["glacier-envo-00000133.html","glacier"]],"b":[["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]]},{"id":"CHEBI:16183","l":"methane","na":1,"nb":62,"a":[["methane-bioremediation-material-habitatmech-gold-d510166905.html","methane bioremediation material"]],"b":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"]]},{"id":"ENVO:01001002","l":"animal-associated environment","na":47,"nb":1,"a":[["amphibian-associated-environment-habitatmech-gold-0cd585a031.html","amphibian-associated environment"],["annelid-associated-environment-habitatmech-gold-6e10201167.html","annelid-associated environment"],["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["chelicerate-associated-environment-habitatmech-gold-44a2cbbd60.html","chelicerate-associated environment"],["crustacean-associated-environment-habitatmech-gold-2959225799.html","crustacean-associated environment"],["insect-associated-environment-habitatmech-gold-dba2a83b95.html","insect-associated environment"]],"b":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":25,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-water-body-envo-00001999.html","marine water body"],["sea-water-envo-00002149.html","sea water"],["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]]},{"id":"NCBITaxon:1279","l":"Staphylococcus","na":23,"nb":1,"a":[["adult-bto-0001043.html","adult"],["cecum-bto-0000166.html","cecum"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["head-bto-0000282.html","head"]],"b":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]]},{"id":"NCBITaxon:1301","l":"Streptococcus","na":23,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["head-bto-0000282.html","head"]],"b":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"NCBITaxon:106592","l":"Ensifer adhaerens","na":20,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]]},{"id":"ENVO:2100002","l":"intestine environment","na":1,"nb":17,"a":[["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"]]},{"id":"ENVO:00000021","l":"freshwater lake","na":16,"nb":1,"a":[["algal-bloom-envo-2000004.html","algal bloom"],["anoxic-zone-habitatmech-gold-b75e4aa08f.html","Anoxic zone"],["aphotic-zone-habitatmech-gold-fcba7e6334.html","Aphotic zone"],["biofilm-habitatmech-gold-748b381af4.html","Biofilm"],["cyanobacterial-aggregates-habitatmech-gold-9b43a12f0c.html","Cyanobacterial aggregates"],["cyanobacterial-bloom-envo-03600071.html","cyanobacterial bloom"]],"b":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"]]},{"id":"NCBITaxon:1598","l":"Limosilactobacillus reuteri","na":14,"nb":1,"a":[["cecum-mucosa-bto-0000213.html","cecum mucosa"],["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["ileum-bto-0000620.html","ileum"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"]],"b":[["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"]]},{"id":"NCBITaxon:1264","l":"Hominimerdicola alba","na":13,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["stream-envo-00000023.html","stream"],["animal-house-envo-00003040.html","animal house"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biome-envo-00000428.html","biome"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"]],"b":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"]]},{"id":"NCBITaxon:1350","l":"Enterococcus","na":13,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["dorsum-bto-0001713.html","dorsum"],["hand-bto-0004668.html","hand"],["intestine-bto-0000648.html","intestine"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"]],"b":[["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"]]},{"id":"ENVO:01000320","l":"marine environment","na":1,"nb":12,"a":[["marine-environment-envo-01000320.html","marine environment"]],"b":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":11,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"],["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["laboratory-facility-envo-01001406.html","laboratory facility"],["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["bone-element-uberon-0001474.html","bone element"],["juvenile-bto-0002168.html","juvenile"]],"b":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]]},{"id":"ENVO:00000020","l":"lake","na":10,"nb":1,"a":[["aphotic-zone-habitatmech-gold-fcba7e6334.html","Aphotic zone"],["freshwater-lake-envo-00000021.html","freshwater lake"],["glacial-lake-envo-00000488.html","glacial lake"],["lake-envo-00000020.html","lake"],["lake-habitatmech-gold-713c7f352a.html","Lake"],["marine-lake-envo-03600041.html","marine lake"]],"b":[["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"]]},{"id":"NCBITaxon:1399","l":"Cytobacillus firmus","na":10,"nb":1,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"],["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"]]},{"id":"NCBITaxon:33075","l":"Acidobacterium capsulatum","na":10,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["paddy-field-envo-00000297.html","paddy field"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"],["area-of-tundra-envo-00000112.html","area of tundra"],["forested-area-envo-00000111.html","forested area"],["mountain-pass-envo-00000084.html","mountain pass"]],"b":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":10,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["air-conditioning-unit-envo-00002874.html","air conditioning unit"],["leaf-bto-0000713.html","leaf"],["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]]},{"id":"NCBITaxon:47715","l":"Lacticaseibacillus rhamnosus","na":10,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["fermentation-starter-envo-03600040.html","fermentation starter"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]]},{"id":"ENVO:01000747","l":"regolith","na":1,"nb":9,"a":[["regolith-envo-01000747.html","regolith"]],"b":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":9,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["fresh-water-envo-00002011.html","fresh water"],["river-envo-00000022.html","river"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"]]},{"id":"NCBITaxon:1224","l":"Pseudomonadota","na":1,"nb":8,"a":[["hemolymph-bto-0000572.html","hemolymph"]],"b":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":8,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["alimentary-canal-bto-0000058.html","alimentary canal"],["blood-bto-0000089.html","blood"],["small-intestine-bto-0000651.html","small intestine"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["geographic-feature-envo-00000000.html","geographic feature"]],"b":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]]},{"id":"NCBITaxon:1655","l":"Actinomyces naeslundii","na":8,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"],["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"],["archeological-site-envo-00000564.html","archeological site"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]]},{"id":"NCBITaxon:171550","l":"Rikenellaceae","na":8,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["ileum-bto-0000620.html","ileum"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"]],"b":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"ENVO:00000003","l":"mine tailing","na":1,"nb":7,"a":[["mine-tailing-envo-00000003.html","mine tailing"]],"b":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]]},{"id":"ENVO:00003862","l":"dairy","na":1,"nb":7,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]]},{"id":"ENVO:00003965","l":"anaerobic digester sludge","na":1,"nb":7,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"]],"b":[["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Magnetite_Sulfate_Stress_Anaerobic_Microbiome.html","Magnetite Sulfate-Stress Anaerobic Microbiome"],["Thermophilic_ExSitu_Biomethanation_Mixed_Culture.html","Thermophilic Ex-Situ Biomethanation Mixed Culture"]]},{"id":"ENVO:00005750","l":"grassland soil","na":1,"nb":7,"a":[["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"],["Soil_BGC_Phylum_Depth_Vegetation_Community.html","Soil Biosynthetic Gene Cluster Phylum-Depth-Vegetation Community"],["Soil_CPR_Nanoarchaea_Rare_Biosphere_Community.html","Soil CPR Bacteria and Nanoarchaea Rare-Biosphere Community"]]},{"id":"ENVO:01000313","l":"anthropogenic environment","na":7,"nb":1,"a":[["laboratory-environment-envo-01001405.html","laboratory environment"],["subway-environment-habitatmech-gold-961229841c.html","subway environment"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["cultivated-environment-envo-01000311.html","cultivated environment"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":7,"nb":1,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["farm-envo-00000078.html","farm"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]]},{"id":"NCBITaxon:1107","l":"Chloroflexus","na":7,"nb":1,"a":[["crop-bto-0000301.html","crop"],["gut-bto-0000545.html","gut"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["seedling-bto-0001228.html","seedling"],["skin-bto-0001253.html","skin"]],"b":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]]},{"id":"NCBITaxon:1243","l":"Leuconostoc","na":7,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["intestine-bto-0000648.html","intestine"],["mouth-bto-0001090.html","mouth"],["stem-bto-0001300.html","stem"]],"b":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]]},{"id":"NCBITaxon:13690","l":"Sphingobium yanoikuyae","na":7,"nb":1,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["resting-cell-bto-0001170.html","resting cell"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"],["water-scum-envo-00005794.html","water scum"]],"b":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]]},{"id":"NCBITaxon:165179","l":"Segatella copri","na":7,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["juvenile-bto-0002168.html","juvenile"],["rumen-uberon-0007365.html","rumen"],["tongue-bto-0001385.html","tongue"],["vaginal-fluid-bto-0003084.html","vaginal fluid"],["animal-litter-envo-00002191.html","animal litter"]],"b":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":7,"nb":1,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["pseudostem-bto-0005992.html","pseudostem"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]]},{"id":"NCBITaxon:40323","l":"Stenotrophomonas","na":1,"nb":7,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"]]},{"id":"NCBITaxon:469","l":"Acinetobacter","na":7,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["endotracheal-fluid-ncit-c171504.html","Endotracheal Fluid"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"],["pseudostem-bto-0005992.html","pseudostem"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"]],"b":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]]},{"id":"NCBITaxon:56780","l":"Syntrophus aciditrophicus SB","na":7,"nb":1,"a":[["bay-envo-00000032.html","bay"],["black-smoker-envo-00000218.html","black smoker"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["saline-water-envo-00002010.html","saline water"],["village-biome-envo-01000246.html","village biome"]],"b":[["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"]]},{"id":"ENVO:01000001","l":"mud","na":6,"nb":1,"a":[["marine-mud-envo-00005795.html","marine mud"],["mud-habitatmech-gold-cdf0825f85.html","Mud"],["anaerobic-mud-envo-00002133.html","anaerobic mud"],["estuarine-mud-envo-00002160.html","estuarine mud"],["mud-envo-01000001.html","mud"],["mud-habitatmech-gold-16370f2eb5.html","Mud"]],"b":[["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"]]},{"id":"NCBITaxon:1269","l":"Micrococcus","na":6,"nb":1,"a":[["cecum-bto-0000166.html","cecum"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["saliva-bto-0001202.html","saliva"],["tongue-bto-0001385.html","tongue"]],"b":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]]},{"id":"NCBITaxon:1512","l":"[Clostridium] symbiosum","na":6,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["animal-house-envo-00003040.html","animal house"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["emulsion-envo-00010506.html","emulsion"],["environmental-feature-envo-00002297.html","environmental feature"],["pig-manure-envo-00003860.html","pig manure"]],"b":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]]},{"id":"NCBITaxon:1624","l":"Ligilactobacillus salivarius","na":6,"nb":1,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["trachea-bto-0001388.html","trachea"],["animal-litter-envo-00002191.html","animal litter"],["intestine-environment-envo-2100002.html","intestine environment"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]]},{"id":"NCBITaxon:1872122","l":"Acidovorax sp.","na":6,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"]]},{"id":"NCBITaxon:2203","l":"Methanospirillum hungatei","na":1,"nb":6,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"]],"b":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":1,"nb":6,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]]},{"id":"ENVO:00000134","l":"permafrost","na":5,"nb":1,"a":[["permafrost-envo-00000134.html","permafrost"],["permafrost-habitatmech-gold-dd598a891d.html","Permafrost"],["permafrost-habitatmech-gold-6821e96263.html","Permafrost"],["permafrost-habitatmech-gold-6d092784ef.html","Permafrost"],["permafrost-habitatmech-gold-83818dd6ed.html","Permafrost"]],"b":[["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"]]},{"id":"ENVO:00002012","l":"hypersaline water","na":5,"nb":1,"a":[["brine-envo-00003044.html","brine"],["hypersaline-water-envo-00002012.html","hypersaline water"],["microbial-mats-habitatmech-gold-a00c47c576.html","Microbial mats"],["saline-water-habitatmech-gold-f75e192814.html","Saline water"],["salt-crystallizer-ponds-habitatmech-gold-277843111f.html","Salt crystallizer ponds"]],"b":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]]},{"id":"NCBITaxon:106589","l":"Cupriavidus","na":5,"nb":1,"a":[["gut-bto-0000545.html","gut"],["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["skin-bto-0001253.html","skin"]],"b":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]]},{"id":"NCBITaxon:1245","l":"Leuconostoc mesenteroides","na":5,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["leaf-po-0025034.html","leaf"],["animal-manure-envo-00003031.html","animal manure"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]]},{"id":"NCBITaxon:239","l":"Flavobacterium sp.","na":5,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["mud-envo-01000001.html","mud"],["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"],["orchard-envo-00000115.html","orchard"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]]},{"id":"NCBITaxon:28232","l":"Geobacter metallireducens","na":1,"nb":5,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":5,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["food-spoiled-foodon-00003366.html","food (spoiled)"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"]],"b":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":5,"nb":1,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["pseudostem-bto-0005992.html","pseudostem"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]]},{"id":"NCBITaxon:57723","l":"Acidobacteriota","na":1,"nb":5,"a":[["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["SPRUCE_Peatland_Methane_Cycling_Community.html","SPRUCE Peatland Methane-Cycling Microbial Community"]]},{"id":"NCBITaxon:74969","l":"Ferroplasma acidiphilum","na":1,"nb":5,"a":[["factory-envo-01000536.html","factory"]],"b":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]]},{"id":"NCBITaxon:838","l":"Prevotella","na":5,"nb":1,"a":[["brain-bto-0000142.html","brain"],["colon-bto-0000269.html","colon"],["heart-bto-0000562.html","heart"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"]],"b":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"CHEBI:24632","l":"hydrocarbon","na":4,"nb":1,"a":[["hydrocarbon-habitatmech-gold-db79f0142d.html","Hydrocarbon"],["hydrocarbon-habitatmech-gold-3c68e33a11.html","Hydrocarbon"],["hydrocarbon-habitatmech-gold-e77998b825.html","Hydrocarbon"],["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"]],"b":[["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"]]},{"id":"ENVO:01000306","l":"freshwater environment","na":1,"nb":4,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]]},{"id":"ENVO:01001033","l":"digestive tract environment","na":1,"nb":4,"a":[["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"],["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":4,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"],["human-construction-envo-00000070.html","human construction"],["sediment-envo-00002007.html","sediment"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]]},{"id":"NCBITaxon:1089553","l":"Thermacetogenium phaeum DSM 12270","na":4,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["pulp-bto-0001142.html","pulp"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":4,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]]},{"id":"NCBITaxon:1587","l":"Lactobacillus helveticus","na":4,"nb":1,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["intestine-environment-envo-2100002.html","intestine environment"],["urban-biome-envo-01000249.html","urban biome"],["harbour-envo-00000463.html","harbour"]],"b":[["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"]]},{"id":"NCBITaxon:1682","l":"Bifidobacterium longum subsp. infantis","na":4,"nb":1,"a":[["egg-food-product-foodon-00001274.html","egg food product"],["breast-bto-0000149.html","breast"],["ht-29-cell-bto-0000182.html","HT-29 cell"],["ma-104-cell-bto-0004983.html","MA-104 cell"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]]},{"id":"NCBITaxon:200795","l":"Chloroflexota","na":1,"nb":4,"a":[["crop-bto-0000301.html","crop"]],"b":[["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["Soil_BGC_Phylum_Depth_Vegetation_Community.html","Soil Biosynthetic Gene Cluster Phylum-Depth-Vegetation Community"]]},{"id":"NCBITaxon:2209","l":"Methanosarcina mazei","na":4,"nb":1,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["sludge-envo-00002044.html","sludge"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"]]},{"id":"NCBITaxon:356","l":"Hyphomicrobiales","na":4,"nb":1,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["stem-bto-0001300.html","stem"]],"b":[["Thiocyanate_Afipia_Thiobacillus_Bioreactor_Community.html","Thiocyanate-Degrading Afipia and Thiobacillus Bioreactor Community"]]},{"id":"NCBITaxon:570","l":"Klebsiella","na":1,"nb":4,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"]]},{"id":"NCBITaxon:68287","l":"Mesorhizobium","na":1,"nb":4,"a":[["head-bto-0000282.html","head"]],"b":[["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]]},{"id":"NCBITaxon:75682","l":"Oxalobacteraceae","na":4,"nb":1,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]]},{"id":"NCBITaxon:872","l":"Desulfovibrio","na":1,"nb":4,"a":[["colon-bto-0000269.html","colon"]],"b":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]]},{"id":"NCBITaxon:930","l":"Acidithiobacillus thiooxidans","na":1,"nb":4,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]]},{"id":"NCBITaxon:1090","l":"Chlorobiota","na":3,"nb":1,"a":[["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"]],"b":[["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"]]},{"id":"NCBITaxon:1249","l":"Weissella paramesenteroides","na":3,"nb":1,"a":[["cecum-bto-0000166.html","cecum"],["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"]],"b":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]]},{"id":"NCBITaxon:1451","l":"Paenibacillus amylolyticus","na":3,"nb":1,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"]]},{"id":"NCBITaxon:1519","l":"Clostridium tyrobutyricum","na":3,"nb":1,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["peatland-envo-00000044.html","peatland"]],"b":[["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]]},{"id":"NCBITaxon:1582","l":"Lacticaseibacillus casei","na":3,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]]},{"id":"NCBITaxon:1597","l":"Lacticaseibacillus paracasei","na":3,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":1,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":3,"nb":1,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]]},{"id":"NCBITaxon:203124","l":"Trichodesmium erythraeum IMS101","na":3,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["coastal-water-body-envo-02000049.html","coastal water body"],["marine-neritic-zone-envo-00000206.html","marine neritic zone"]],"b":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":1,"nb":3,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]]},{"id":"NCBITaxon:22","l":"Shewanella","na":1,"nb":3,"a":[["wood-bto-0005516.html","wood"]],"b":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Shewanella_Denitrifying_Richness_SynComs.html","Shewanella Denitrifying Richness SynComs"]]},{"id":"NCBITaxon:28037","l":"Streptococcus mitis","na":3,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["archeological-site-envo-00000564.html","archeological site"],["tropical-envo-01000204.html","tropical"]],"b":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]]},{"id":"NCBITaxon:301375","l":"Methanothrix harundinacea","na":3,"nb":1,"a":[["small-river-biome-envo-00000890.html","small river biome"],["shoreline-envo-00000486.html","shoreline"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"]]},{"id":"NCBITaxon:3041","l":"Chlorophyta","na":1,"nb":3,"a":[["leaf-bto-0000713.html","leaf"]],"b":[["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"]]},{"id":"NCBITaxon:33035","l":"Blautia producta","na":1,"nb":3,"a":[["juvenile-bto-0002168.html","juvenile"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]]},{"id":"NCBITaxon:33952","l":"Acetobacterium woodii","na":1,"nb":3,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]]},{"id":"NCBITaxon:375","l":"Bradyrhizobium japonicum","na":3,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"]]},{"id":"NCBITaxon:375288","l":"Parabacteroides","na":3,"nb":1,"a":[["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"]],"b":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"]]},{"id":"NCBITaxon:40214","l":"Acinetobacter johnsonii","na":3,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["pitcher-bto-0001069.html","pitcher"],["water-scum-envo-00005794.html","water scum"]],"b":[["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]]},{"id":"NCBITaxon:48736","l":"Ralstonia","na":3,"nb":1,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"]],"b":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":1,"nb":3,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]]},{"id":"NCBITaxon:547","l":"Enterobacter","na":1,"nb":3,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]]},{"id":"NCBITaxon:572511","l":"Blautia","na":3,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["colon-bto-0000269.html","colon"]],"b":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]]},{"id":"NCBITaxon:582","l":"Morganella morganii","na":3,"nb":1,"a":[["blast-cell-bto-0000125.html","blast cell"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"],["spike-bto-0001278.html","spike"]],"b":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]]},{"id":"NCBITaxon:69373","l":"Curtobacterium pusillum","na":3,"nb":1,"a":[["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["seedling-bto-0001228.html","seedling"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]]},{"id":"NCBITaxon:76759","l":"Pseudomonas monteilii","na":3,"nb":1,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"]]},{"id":"NCBITaxon:85413","l":"Allobosea","na":1,"nb":3,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"]],"b":[["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":3,"nb":1,"a":[["city-envo-00000856.html","city"],["cold-environment-envo-01000309.html","cold environment"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]]},{"id":"ENVO:00002127","l":"stream sediment","na":1,"nb":2,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Tropidoatractus_Magnetotacticus_Tripartite_Syntrophy.html","Tropidoatractus magnetotacticus Magnetotactic Ciliate Tripartite Syntrophy"]]},{"id":"ENVO:03000033","l":"marine sediment","na":2,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"]]},{"id":"NCBITaxon:1033","l":"Afipia","na":2,"nb":1,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"]],"b":[["Thiocyanate_Afipia_Thiobacillus_Bioreactor_Community.html","Thiocyanate-Degrading Afipia and Thiobacillus Bioreactor Community"]]},{"id":"NCBITaxon:1091494","l":"Methylotuvimicrobium alcaliphilum 20Z","na":1,"nb":2,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"]]},{"id":"NCBITaxon:1129","l":"Synechococcus","na":2,"nb":1,"a":[["column-bto-0005692.html","column"],["hemolymph-bto-0000572.html","hemolymph"]],"b":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]]},{"id":"NCBITaxon:1173061","l":"Geotrichum candidum","na":2,"nb":1,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]]},{"id":"NCBITaxon:119532","l":"Microcoleus vaginatus","na":2,"nb":1,"a":[["desert-biome-envo-01000179.html","desert biome"],["desert-area-envo-00000097.html","desert area"]],"b":[["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]]},{"id":"NCBITaxon:1255","l":"Pediococcus pentosaceus","na":2,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"]],"b":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]]},{"id":"NCBITaxon:12916","l":"Acidovorax","na":1,"nb":2,"a":[["urine-bto-0001419.html","urine"]],"b":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]]},{"id":"NCBITaxon:1303","l":"Streptococcus oralis","na":2,"nb":1,"a":[["throat-bto-0000828.html","throat"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]]},{"id":"NCBITaxon:138074","l":"Serratia symbiotica","na":2,"nb":1,"a":[["intestine-bto-0000648.html","intestine"],["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"]]},{"id":"NCBITaxon:1398","l":"Heyndrickxia coagulans","na":2,"nb":1,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"]]},{"id":"NCBITaxon:1401","l":"Paenibacillus lautus","na":2,"nb":1,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"]]},{"id":"NCBITaxon:142182","l":"Gemmatimonadota","na":1,"nb":2,"a":[["crop-bto-0000301.html","crop"]],"b":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":2,"a":[["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]]},{"id":"NCBITaxon:1538","l":"Clostridium ljungdahlii","na":1,"nb":2,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]]},{"id":"NCBITaxon:160488","l":"Pseudomonas putida (strain ATCC 47054 / DSM 6125 / CFBP 8728 / NCIMB 11950 / KT2440)","na":1,"nb":2,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"]]},{"id":"NCBITaxon:161493","l":"Anaeromyxobacter dehalogenans","na":2,"nb":1,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"]]},{"id":"NCBITaxon:1680","l":"Bifidobacterium adolescentis","na":2,"nb":1,"a":[["brain-bto-0000142.html","brain"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]]},{"id":"NCBITaxon:169215","l":"","na":1,"nb":2,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"]],"b":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]]},{"id":"NCBITaxon:171552","l":"Prevotellaceae","na":2,"nb":1,"a":[["colon-bto-0000269.html","colon"],["rumen-uberon-0007365.html","rumen"]],"b":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"NCBITaxon:1785","l":"Mycobacterium sp.","na":2,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"],["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]]},{"id":"NCBITaxon:1871043","l":"Variovorax sp.","na":1,"nb":2,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]]},{"id":"NCBITaxon:1872086","l":"Ensifer sp.","na":2,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]]},{"id":"NCBITaxon:192","l":"Azospirillum brasilense","na":2,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"]]},{"id":"NCBITaxon:20","l":"Phenylobacterium","na":2,"nb":1,"a":[["crop-bto-0000301.html","crop"],["nectar-bto-0000537.html","nectar"]],"b":[["Tomato_Oxylipin_SynCom3.html","Tomato Oxylipin-Protective SynCom3"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus (strain ATCC 27405 / DSM 1237 / JCM 9322 / NBRC 103400 / NCIMB 10682 / NRRL B-4536 / VPI 7372)","na":1,"nb":2,"a":[["blood-plasma-bto-0000131.html","blood plasma"]],"b":[["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]]},{"id":"NCBITaxon:2162","l":"Methanobacterium formicicum","na":1,"nb":2,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"]]},{"id":"NCBITaxon:2173","l":"Methanobrevibacter smithii","na":1,"nb":2,"a":[["lagoon-envo-00000038.html","lagoon"]],"b":[["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"]]},{"id":"NCBITaxon:2223","l":"Methanothrix soehngenii","na":1,"nb":2,"a":[["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]]},{"id":"NCBITaxon:231455","l":"Dyella japonica","na":1,"nb":2,"a":[["area-of-tundra-envo-00000112.html","area of tundra"]],"b":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii (strain ATCC 43067 / DSM 2661 / JAL-1 / JCM 10045 / NBRC 100440)","na":2,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":2,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"]]},{"id":"NCBITaxon:2836","l":"Bacillariophyta","na":2,"nb":1,"a":[["diatom-associated-environment-habitatmech-gold-1276bea544.html","diatom-associated environment"],["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]]},{"id":"NCBITaxon:285","l":"Comamonas testosteroni","na":2,"nb":1,"a":[["waste-habitatmech-bacdive-36df85e4a4.html","Waste"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]]},{"id":"NCBITaxon:293387","l":"Bacillus altitudinis","na":1,"nb":2,"a":[["resting-cell-bto-0001170.html","resting cell"]],"b":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"]]},{"id":"NCBITaxon:29448","l":"Bradyrhizobium elkanii","na":2,"nb":1,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["area-of-tundra-envo-00000112.html","area of tundra"]],"b":[["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]]},{"id":"NCBITaxon:299767","l":"Enterobacter ludwigii","na":1,"nb":2,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]]},{"id":"NCBITaxon:323259","l":"Methanospirillum hungatei JF-1","na":1,"nb":2,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]]},{"id":"NCBITaxon:39152","l":"Methanococcus maripaludis","na":1,"nb":2,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["DVM_Triculture.html","DVM Tri-culture"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":2,"nb":1,"a":[["city-envo-00000856.html","city"],["cropland-biome-envo-01000245.html","cropland biome"]],"b":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]]},{"id":"NCBITaxon:515619","l":"Agathobacter rectalis ATCC 33656","na":1,"nb":2,"a":[["gut-epithelium-bto-0000956.html","gut epithelium"]],"b":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]]},{"id":"NCBITaxon:6239","l":"Caenorhabditis elegans","na":2,"nb":1,"a":[["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"]]},{"id":"NCBITaxon:648","l":"Aeromonas caviae","na":2,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]]},{"id":"NCBITaxon:82367","l":"Paracoccus pantotrophus","na":2,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"]]},{"id":"NCBITaxon:82380","l":"Microbacterium oxydans","na":1,"nb":2,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]]},{"id":"NCBITaxon:876","l":"Desulfovibrio desulfuricans","na":2,"nb":1,"a":[["sludge-envo-00002044.html","sludge"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":2,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]]},{"id":"UBERON:0001155","l":"colon","na":2,"nb":1,"a":[["colon-habitatmech-gold-c484d9a195.html","Colon"],["colon-habitatmech-gold-195d07bc47.html","Colon"]],"b":[["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"]]},{"id":"ENVO:00000057","l":"mangrove swamp","na":1,"nb":1,"a":[["mangrove-swamp-envo-00000057.html","mangrove swamp"]],"b":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"]]},{"id":"ENVO:00000126","l":"sulfur spring","na":1,"nb":1,"a":[["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"]]},{"id":"ENVO:00002121","l":"alkaline salt lake","na":1,"nb":1,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"]],"b":[["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]]},{"id":"ENVO:00003030","l":"silage","na":1,"nb":1,"a":[["silage-envo-00003030.html","silage"]],"b":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"]]},{"id":"ENVO:01000910","l":"soil biocrust","na":1,"nb":1,"a":[["soil-biocrust-envo-01000910.html","soil biocrust"]],"b":[["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]]},{"id":"NCBITaxon:100176","l":"Papillibacter cinnamivorans","na":1,"nb":1,"a":[["cecum-bto-0000166.html","cecum"]],"b":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"]]},{"id":"NCBITaxon:105972","l":"Methylosarcina fibrata","na":1,"nb":1,"a":[["stream-envo-00000023.html","stream"]],"b":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]]},{"id":"NCBITaxon:110321","l":"Sinorhizobium medicae","na":1,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"]]},{"id":"NCBITaxon:1122947","l":"Pelosinus fermentans DSM 17108","na":1,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"]]},{"id":"NCBITaxon:1131703","l":"Sphaerochaeta globosa","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"]]},{"id":"NCBITaxon:1134404","l":"Ignavibacteriota","na":1,"nb":1,"a":[["gut-bto-0000545.html","gut"]],"b":[["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"]]},{"id":"NCBITaxon:119060","l":"Burkholderiaceae","na":1,"nb":1,"a":[["trunk-bto-0001493.html","trunk"]],"b":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]]},{"id":"NCBITaxon:1253","l":"Pediococcus","na":1,"nb":1,"a":[["cecum-bto-0000166.html","cecum"]],"b":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]]},{"id":"NCBITaxon:1272","l":"Kocuria varians","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"]]},{"id":"NCBITaxon:135619","l":"Oceanospirillales","na":1,"nb":1,"a":[["column-bto-0005692.html","column"]],"b":[["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"]]},{"id":"NCBITaxon:1455","l":"Pseudobacillus badius","na":1,"nb":1,"a":[["organic-waste-material-envo-00002873.html","organic waste material"]],"b":[["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"]]},{"id":"NCBITaxon:1488","l":"Clostridium acetobutylicum","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]]},{"id":"NCBITaxon:1501","l":"Clostridium pasteurianum","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]]},{"id":"NCBITaxon:1517","l":"Thermoanaerobacterium thermosaccharolyticum","na":1,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]]},{"id":"NCBITaxon:1579","l":"Lactobacillus acidophilus","na":1,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"]],"b":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]]},{"id":"NCBITaxon:1585","l":"Lactobacillus delbrueckii subsp. bulgaricus","na":1,"nb":1,"a":[["pig-manure-envo-00003860.html","pig manure"]],"b":[["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]]},{"id":"NCBITaxon:158836","l":"Enterobacter hormaechei","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]]},{"id":"NCBITaxon:168384","l":"Marvinbryantia formatexigens","na":1,"nb":1,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"]]},{"id":"NCBITaxon:1828","l":"Rhodococcoides fascians","na":1,"nb":1,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]]},{"id":"NCBITaxon:1871068","l":"Phyllobacteriaceae bacterium","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]]},{"id":"NCBITaxon:1898203","l":"Lachnospiraceae bacterium","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]]},{"id":"NCBITaxon:216389","l":"Dehalococcoides mccartyi BAV1","na":1,"nb":1,"a":[["road-envo-00000064.html","road"]],"b":[["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]]},{"id":"NCBITaxon:216778","l":"Stenotrophomonas rhizophila","na":1,"nb":1,"a":[["style-bto-0001313.html","style"]],"b":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"]]},{"id":"NCBITaxon:219572","l":"Pseudomonas antarctica","na":1,"nb":1,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]]},{"id":"NCBITaxon:225937","l":"Marinobacter adhaerens HP15","na":1,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]]},{"id":"NCBITaxon:226","l":"Alteromonas","na":1,"nb":1,"a":[["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]]},{"id":"NCBITaxon:226186","l":"Bacteroides thetaiotaomicron (strain ATCC 29148 / DSM 2079 / JCM 5827 / CCUG 10774 / NCTC 10582 / VPI-5482 / E50)","na":1,"nb":1,"a":[["gut-epithelium-bto-0000956.html","gut epithelium"]],"b":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima (strain ATCC 43589 / DSM 3109 / JCM 10099 / NBRC 100826 / MSB8)","na":1,"nb":1,"a":[["feather-bto-0000447.html","feather"]],"b":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]]},{"id":"NCBITaxon:246200","l":"Ruegeria pomeroyi DSS-3","na":1,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]]},{"id":"NCBITaxon:250","l":"Chryseobacterium gleum","na":1,"nb":1,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]]},{"id":"NCBITaxon:2745","l":"Halomonas","na":1,"nb":1,"a":[["wood-bto-0005516.html","wood"]],"b":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]]},{"id":"NCBITaxon:29394","l":"Dolosigranulum pigrum","na":1,"nb":1,"a":[["bone-element-uberon-0001474.html","bone element"]],"b":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"]]},{"id":"NCBITaxon:3078","l":"Auxenochlorella pyrenoidosa","na":1,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"]],"b":[["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"]]},{"id":"NCBITaxon:33010","l":"Cutibacterium avidum","na":1,"nb":1,"a":[["bone-element-uberon-0001474.html","bone element"]],"b":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]]},{"id":"NCBITaxon:33011","l":"Cutibacterium granulosum","na":1,"nb":1,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]]},{"id":"NCBITaxon:33883","l":"Microbacterium arborescens","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]]},{"id":"NCBITaxon:340177","l":"Chlorobium chlorochromatii CaD3","na":1,"nb":1,"a":[["photoreceptor-cell-bto-0001060.html","photoreceptor cell"]],"b":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"]]},{"id":"NCBITaxon:372461","l":"Buchnera aphidicola BCc","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"]]},{"id":"NCBITaxon:38304","l":"Corynebacterium tuberculostearicum","na":1,"nb":1,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"]]},{"id":"NCBITaxon:399726","l":"Thermoanaerobacter sp. X514","na":1,"nb":1,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"]]},{"id":"NCBITaxon:409291","l":"Arthrobacter humicola","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]]},{"id":"NCBITaxon:43775","l":"Syntrophus gentianae","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]]},{"id":"NCBITaxon:47880","l":"Pseudomonas fulva","na":1,"nb":1,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]]},{"id":"NCBITaxon:47920","l":"Acidovorax delafieldii","na":1,"nb":1,"a":[["bone-element-uberon-0001474.html","bone element"]],"b":[["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]]},{"id":"NCBITaxon:49082","l":"Candidatus Neoarthromitus","na":1,"nb":1,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]]},{"id":"NCBITaxon:51669","l":"Tetragenococcus halophilus","na":1,"nb":1,"a":[["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]]},{"id":"NCBITaxon:542","l":"Zymomonas mobilis","na":1,"nb":1,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["Zymomonas_Ecoli_Exometabolomics_Obligate_Mutualism.html","Zymomonas-E. coli Exometabolomics-Designed Obligate Mutualism"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":1,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":1,"nb":1,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]]},{"id":"NCBITaxon:571256","l":"Brucella pituitosa","na":1,"nb":1,"a":[["seedling-bto-0001228.html","seedling"]],"b":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]]},{"id":"NCBITaxon:685","l":"Vibrio diazotrophicus","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]]},{"id":"NCBITaxon:80840","l":"Burkholderiales","na":1,"nb":1,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"]],"b":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"]]},{"id":"NCBITaxon:80866","l":"Delftia acidovorans","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]]},{"id":"NCBITaxon:82","l":"Hyphomicrobium sp.","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"]]},{"id":"NCBITaxon:86185","l":"Pseudomonas lundensis","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]]},{"id":"NCBITaxon:930166","l":"Pseudomonas brassicacearum","na":1,"nb":1,"a":[["spike-bto-0001278.html","spike"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]]},{"id":"NCBITaxon:94625","l":"Brucella intermedia","na":1,"nb":1,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]]},{"id":"UBERON:0002097","l":"skin of body","na":1,"nb":1,"a":[["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["SkinCom_Synthetic_Skin_Community.html","SkinCom Synthetic Skin Community"]]}]} \ No newline at end of file diff --git a/communitymech.md b/communitymech.md index 6d85fac..5620137 100644 --- a/communitymech.md +++ b/communitymech.md @@ -11,7 +11,7 @@ permalink: /communitymech/ **CommunityMech** is an autonomous knowledge factory for microbial community composition, ecological interactions, cultivation conditions, environments, and supporting evidence, with human oversight. Canonical YAML records feed schema validation, static browsing, and graph exports. [Repository overview](https://github.com/CultureBotAI/CommunityMech/blob/8505a56d644b02fe87f776be9d667db4cf3f5c5d/README.md). -The repository contains **422 community records** and **four additional isolate records**. The published site lists **422 communities across 15 categories**, checked on September 24, 2026. Its landing page also advertises **512-dimensional v3 embeddings**; the embedding views are separate derived artifacts and can cover a different set of records from the current browser. [Published site](https://culturebotai.github.io/CommunityMech/). +The repository contains **422 community records** and **four additional isolate records**. The published browser lists **422 communities across 15 categories**; the landing page's category tile still reads 16, checked on September 24, 2026. Its landing page also advertises **512-dimensional v3 embeddings**; the embedding views are separate derived artifacts and can cover a different set of records from the current browser. [Published site](https://culturebotai.github.io/CommunityMech/). ## Explore the Published Site diff --git a/mechs.md b/mechs.md index ca7893f..675c80f 100644 --- a/mechs.md +++ b/mechs.md @@ -439,7 +439,7 @@ Each X-Mech is an **autonomous knowledge factory** that curates, validates, and
shared identifiers, one chord per vocabulary (width = how many): ChEBINCBITaxonGOMETPOENVOAROUniProtcitationsother - direct cross-reference (arrow = who consumes) + direct cross-reference (arrow = who consumes or is deferred to) export to / input from kg-microbe (dotted = namespace only) fleet manifest membership
@@ -451,7 +451,7 @@ Each X-Mech is an **autonomous knowledge factory** that curates, validates, and "use strict"; if (document.readyState === "loading") { document.addEventListener("DOMContentLoaded", init); } else { init(); } function init() { - var DATA = {"order":["HabitatMech","CommunityMech","TraitMech","CellStructureMech","ProteinTraitsMech","NaturalProductMech","AntibioticMech","MediaIngredientMech","CultureMech"],"voc":["NCBITaxon","CHEBI","GO","UniProt","ENVO","UBERON","InterPro","PDB","CAS","METPO","KEGG","FOODON","PATO","Pfam","RHEA","ARO","BTO","MIBiG","NPAtlas","GTDB","PMID","DOI"],"heat":{"HabitatMech":{"CHEBI":24,"NCBITaxon":13227,"GO":7,"ENVO":3368,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":4,"UBERON":1123,"FOODON":198,"BTO":1367,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":516,"DOI":116},"CommunityMech":{"CHEBI":2971,"NCBITaxon":4253,"GO":1537,"ENVO":538,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":10,"FOODON":0,"BTO":0,"GTDB":2037,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":7320,"DOI":1223},"TraitMech":{"CHEBI":673,"NCBITaxon":996,"GO":886,"ENVO":22,"METPO":3617,"ARO":0,"UniProt":399,"InterPro":115,"Pfam":0,"RHEA":0,"PDB":0,"PATO":99,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":621,"DOI":7190},"CellStructureMech":{"CHEBI":65,"NCBITaxon":1438,"GO":11688,"ENVO":0,"METPO":14,"ARO":0,"UniProt":337,"InterPro":206,"Pfam":22,"RHEA":0,"PDB":277,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":698,"DOI":6636},"ProteinTraitsMech":{"CHEBI":374424,"NCBITaxon":358320,"GO":421586,"ENVO":0,"METPO":244,"ARO":397717,"UniProt":658574,"InterPro":1480044,"Pfam":521966,"RHEA":613456,"PDB":235957,"PATO":124,"UBERON":43,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":245,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":657527,"DOI":193845},"NaturalProductMech":{"CHEBI":1659,"NCBITaxon":13960,"GO":0,"ENVO":0,"METPO":0,"ARO":0,"UniProt":613,"InterPro":0,"Pfam":0,"RHEA":14,"PDB":0,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":10133,"NPAtlas":1756,"PMID":5703,"DOI":8437},"AntibioticMech":{"CHEBI":22104,"NCBITaxon":1085,"GO":3,"ENVO":0,"METPO":0,"ARO":16653,"UniProt":278,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":6,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":1823,"MIBiG":0,"NPAtlas":0,"PMID":1207,"DOI":216},"MediaIngredientMech":{"CHEBI":8220,"NCBITaxon":1,"GO":0,"ENVO":110,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":23,"FOODON":273,"BTO":3,"GTDB":0,"KEGG":61,"CAS":727,"MIBiG":0,"NPAtlas":0,"PMID":29,"DOI":9},"CultureMech":{"CHEBI":160678,"NCBITaxon":63,"GO":0,"ENVO":13,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":138,"FOODON":223,"BTO":0,"GTDB":0,"KEGG":1406,"CAS":1,"MIBiG":0,"NPAtlas":0,"PMID":68,"DOI":76}},"cells":{"HabitatMech--BTO":587,"HabitatMech--CHEBI":11,"HabitatMech--ENVO":1296,"HabitatMech--FOODON":85,"HabitatMech--GO":2,"HabitatMech--NCBITaxon":896,"HabitatMech--PATO":3,"HabitatMech--UBERON":704,"CommunityMech--CHEBI":361,"CommunityMech--ENVO":412,"CommunityMech--GO":398,"CommunityMech--GTDB":370,"CommunityMech--NCBITaxon":426,"CommunityMech--UBERON":10,"TraitMech--CHEBI":183,"TraitMech--ENVO":14,"TraitMech--GO":292,"TraitMech--InterPro":61,"TraitMech--METPO":749,"TraitMech--NCBITaxon":484,"TraitMech--PATO":49,"TraitMech--UniProt":182,"CellStructureMech--CHEBI":24,"CellStructureMech--GO":535,"CellStructureMech--InterPro":33,"CellStructureMech--METPO":5,"CellStructureMech--NCBITaxon":531,"CellStructureMech--PDB":19,"CellStructureMech--Pfam":8,"CellStructureMech--UniProt":65,"ProteinTraitsMech--ARO":7452,"ProteinTraitsMech--CHEBI":30122,"ProteinTraitsMech--GO":110744,"ProteinTraitsMech--InterPro":120090,"ProteinTraitsMech--KEGG":231,"ProteinTraitsMech--METPO":119,"ProteinTraitsMech--NCBITaxon":98697,"ProteinTraitsMech--PATO":81,"ProteinTraitsMech--PDB":51718,"ProteinTraitsMech--Pfam":107455,"ProteinTraitsMech--RHEA":29550,"ProteinTraitsMech--UBERON":43,"ProteinTraitsMech--UniProt":159595,"NaturalProductMech--CHEBI":405,"NaturalProductMech--MIBiG":3115,"NaturalProductMech--NCBITaxon":3115,"NaturalProductMech--NPAtlas":1740,"NaturalProductMech--RHEA":1,"NaturalProductMech--UniProt":102,"AntibioticMech--ARO":568,"AntibioticMech--CAS":1797,"AntibioticMech--CHEBI":2814,"AntibioticMech--GO":3,"AntibioticMech--NCBITaxon":163,"AntibioticMech--PDB":5,"AntibioticMech--UniProt":47,"MediaIngredientMech--BTO":1,"MediaIngredientMech--CAS":287,"MediaIngredientMech--CHEBI":2232,"MediaIngredientMech--ENVO":26,"MediaIngredientMech--FOODON":99,"MediaIngredientMech--KEGG":58,"MediaIngredientMech--NCBITaxon":1,"MediaIngredientMech--UBERON":10,"CultureMech--CAS":1,"CultureMech--CHEBI":6125,"CultureMech--ENVO":12,"CultureMech--FOODON":203,"CultureMech--KEGG":329,"CultureMech--NCBITaxon":30,"CultureMech--UBERON":72},"vocab_edges":[{"a":"HabitatMech","b":"CommunityMech","n":313,"by":{"NCBITaxon":265,"ENVO":42,"UBERON":4,"CHEBI":2},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"ENVO:00001998","label":"soil"},{"id":"ENVO:01001001","label":"plant-associated environment"}]},{"a":"HabitatMech","b":"TraitMech","n":122,"by":{"NCBITaxon":115,"ENVO":4,"PATO":2,"CHEBI":1},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"HabitatMech","b":"CellStructureMech","n":41,"by":{"NCBITaxon":41},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1117","label":"Cyanobacteriota"}]},{"a":"HabitatMech","b":"ProteinTraitsMech","n":1250,"by":{"NCBITaxon":1234,"UBERON":12,"CHEBI":2,"GO":2},"ex":[{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1869227","label":"bacterium"}]},{"a":"HabitatMech","b":"NaturalProductMech","n":312,"by":{"NCBITaxon":312},"ex":[{"id":"NCBITaxon:56","label":"Sorangium cellulosum"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1931","label":"Streptomyces sp."}]},{"a":"HabitatMech","b":"AntibioticMech","n":32,"by":{"NCBITaxon":32},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:573","label":"Klebsiella pneumoniae"}]},{"a":"HabitatMech","b":"MediaIngredientMech","n":22,"by":{"ENVO":15,"UBERON":4,"CHEBI":3},"ex":[{"id":"ENVO:00002149","label":"sea water"},{"id":"ENVO:00001998","label":"soil"},{"id":"ENVO:00002263","label":"garden soil"}]},{"a":"HabitatMech","b":"CultureMech","n":25,"by":{"NCBITaxon":13,"ENVO":7,"UBERON":4,"FOODON":1},"ex":[{"id":"UBERON:0000948","label":"heart"},{"id":"UBERON:0000955","label":"brain"},{"id":"UBERON:0000178","label":"blood"}]},{"a":"CommunityMech","b":"TraitMech","n":157,"by":{"CHEBI":61,"NCBITaxon":61,"GO":35},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:15379","label":"dioxygen"},{"id":"GO:0015977","label":"carbon fixation"}]},{"a":"CommunityMech","b":"CellStructureMech","n":60,"by":{"NCBITaxon":36,"CHEBI":13,"GO":11},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:2157","label":"Archaea"},{"id":"NCBITaxon:562","label":"Escherichia coli"}]},{"a":"CommunityMech","b":"ProteinTraitsMech","n":698,"by":{"CHEBI":280,"NCBITaxon":227,"GO":190,"UBERON":1},"ex":[{"id":"CHEBI:30089","label":"acetate"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"GO:0015979","label":"photosynthesis"}]},{"a":"CommunityMech","b":"NaturalProductMech","n":129,"by":{"NCBITaxon":124,"CHEBI":5},"ex":[{"id":"NCBITaxon:286","label":"Pseudomonas"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:562","label":"Escherichia coli"}]},{"a":"CommunityMech","b":"AntibioticMech","n":64,"by":{"CHEBI":42,"NCBITaxon":22},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"},{"id":"CHEBI:33709","label":"amino acid"}]},{"a":"CommunityMech","b":"MediaIngredientMech","n":240,"by":{"CHEBI":238,"ENVO":2},"ex":[{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:33709","label":"amino acid"},{"id":"CHEBI:3312","label":"calcium dichloride"}]},{"a":"CommunityMech","b":"CultureMech","n":151,"by":{"CHEBI":138,"NCBITaxon":8,"ENVO":5},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:30089","label":"acetate"}]},{"a":"TraitMech","b":"CellStructureMech","n":114,"by":{"GO":53,"NCBITaxon":40,"CHEBI":7,"UniProt":6,"METPO":5,"InterPro":3},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:83333","label":"Escherichia coli (strain K12)"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"}]},{"a":"TraitMech","b":"ProteinTraitsMech","n":707,"by":{"GO":248,"NCBITaxon":136,"METPO":111,"CHEBI":109,"UniProt":56,"InterPro":47},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"METPO:1000631","label":"trophic type"}]},{"a":"TraitMech","b":"NaturalProductMech","n":57,"by":{"NCBITaxon":53,"CHEBI":4},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"TraitMech","b":"AntibioticMech","n":31,"by":{"NCBITaxon":21,"CHEBI":10},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"TraitMech","b":"MediaIngredientMech","n":59,"by":{"CHEBI":59},"ex":[{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:16526","label":"carbon dioxide"}]},{"a":"TraitMech","b":"CultureMech","n":36,"by":{"CHEBI":26,"NCBITaxon":10},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:17234","label":"glucose"}]},{"a":"CellStructureMech","b":"ProteinTraitsMech","n":1058,"by":{"GO":737,"UniProt":155,"NCBITaxon":77,"InterPro":64,"CHEBI":15,"Pfam":10},"ex":[{"id":"GO:0032991","label":"protein-containing complex"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:3055","label":"Chlamydomonas reinhardtii"}]},{"a":"CellStructureMech","b":"NaturalProductMech","n":23,"by":{"NCBITaxon":23},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:9606","label":"Homo sapiens"}]},{"a":"CellStructureMech","b":"AntibioticMech","n":18,"by":{"NCBITaxon":13,"CHEBI":5},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:4932","label":"Saccharomyces cerevisiae"},{"id":"NCBITaxon:90371","label":"Salmonella enterica subsp. enterica serovar Typhimurium"}]},{"a":"CellStructureMech","b":"MediaIngredientMech","n":14,"by":{"CHEBI":14},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:17029","label":"chitin"},{"id":"CHEBI:33403","label":"elemental sulfur"}]},{"a":"CellStructureMech","b":"CultureMech","n":7,"by":{"CHEBI":4,"NCBITaxon":3},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:16261","label":"chitosan"},{"id":"CHEBI:33403","label":"elemental sulfur"}]},{"a":"ProteinTraitsMech","b":"NaturalProductMech","n":794,"by":{"NCBITaxon":487,"UniProt":156,"CHEBI":148,"RHEA":3},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:100226","label":"Streptomyces coelicolor A3(2)"},{"id":"NCBITaxon:227321","label":"Emericella nidulans (strain FGSC A4 / ATCC 38163 / CBS 112.46 / NRRL 194 / M139)"}]},{"a":"ProteinTraitsMech","b":"AntibioticMech","n":2435,"by":{"ARO":1740,"CHEBI":594,"NCBITaxon":79,"UniProt":20,"GO":2},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:573","label":"Klebsiella pneumoniae"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"}]},{"a":"ProteinTraitsMech","b":"MediaIngredientMech","n":798,"by":{"CHEBI":797,"UBERON":1},"ex":[{"id":"CHEBI:15377","label":"water"},{"id":"CHEBI:15740","label":"formate"},{"id":"CHEBI:33709","label":"amino acid"}]},{"a":"ProteinTraitsMech","b":"CultureMech","n":233,"by":{"CHEBI":221,"NCBITaxon":10,"UBERON":2},"ex":[{"id":"CHEBI:15377","label":"water"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:17754","label":"glycerol"}]},{"a":"NaturalProductMech","b":"AntibioticMech","n":278,"by":{"CHEBI":180,"NCBITaxon":96,"UniProt":2},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"},{"id":"NCBITaxon:330879","label":"Aspergillus fumigatus (strain ATCC MYA-4609 / CBS 101355 / FGSC A1100 / Af293)"}]},{"a":"NaturalProductMech","b":"MediaIngredientMech","n":51,"by":{"CHEBI":51},"ex":[{"id":"CHEBI:15956","label":"biotin"},{"id":"CHEBI:16349","label":"L-citrulline"},{"id":"CHEBI:27592","label":"ectoine"}]},{"a":"NaturalProductMech","b":"CultureMech","n":5,"by":{"CHEBI":3,"NCBITaxon":2},"ex":[{"id":"CHEBI:15956","label":"biotin"},{"id":"CHEBI:16349","label":"L-citrulline"},{"id":"CHEBI:27592","label":"ectoine"}]},{"a":"AntibioticMech","b":"MediaIngredientMech","n":324,"by":{"CHEBI":324},"ex":[{"id":"CHEBI:33709","label":"amino acid"},{"id":"CHEBI:30746","label":"benzoic acid"},{"id":"CHEBI:17334","label":"penicillin"}]},{"a":"AntibioticMech","b":"CultureMech","n":29,"by":{"CHEBI":29},"ex":[{"id":"CHEBI:17334","label":"penicillin"},{"id":"CHEBI:48923","label":"erythromycin"},{"id":"CHEBI:30746","label":"benzoic acid"}]},{"a":"MediaIngredientMech","b":"CultureMech","n":612,"by":{"CHEBI":545,"KEGG":56,"FOODON":6,"UBERON":3,"CAS":1,"ENVO":1},"ex":[{"id":"FOODON:03315426","label":"yeast extract"},{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:2509","label":"agar"}]}]}; + var DATA = {"order":["HabitatMech","CommunityMech","TraitMech","CellStructureMech","ProteinTraitsMech","NaturalProductMech","AntibioticMech","MediaIngredientMech","CultureMech"],"voc":["NCBITaxon","CHEBI","GO","UniProt","ENVO","UBERON","InterPro","PDB","CAS","METPO","KEGG","FOODON","PATO","Pfam","RHEA","ARO","BTO","MIBiG","NPAtlas","GTDB","PMID","DOI"],"heat":{"HabitatMech":{"CHEBI":24,"NCBITaxon":13227,"GO":7,"ENVO":3368,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":4,"UBERON":1123,"FOODON":198,"BTO":1367,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":516,"DOI":116},"CommunityMech":{"CHEBI":2971,"NCBITaxon":4253,"GO":1537,"ENVO":538,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":10,"FOODON":0,"BTO":0,"GTDB":2037,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":7320,"DOI":1223},"TraitMech":{"CHEBI":673,"NCBITaxon":996,"GO":886,"ENVO":22,"METPO":3617,"ARO":0,"UniProt":399,"InterPro":115,"Pfam":0,"RHEA":0,"PDB":0,"PATO":99,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":621,"DOI":7190},"CellStructureMech":{"CHEBI":65,"NCBITaxon":1438,"GO":11688,"ENVO":0,"METPO":14,"ARO":0,"UniProt":337,"InterPro":206,"Pfam":22,"RHEA":0,"PDB":277,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":698,"DOI":6636},"ProteinTraitsMech":{"CHEBI":374424,"NCBITaxon":358320,"GO":421586,"ENVO":0,"METPO":244,"ARO":397717,"UniProt":658574,"InterPro":1480044,"Pfam":521966,"RHEA":613456,"PDB":235957,"PATO":124,"UBERON":43,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":245,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":657527,"DOI":193845},"NaturalProductMech":{"CHEBI":1659,"NCBITaxon":13960,"GO":0,"ENVO":0,"METPO":0,"ARO":0,"UniProt":613,"InterPro":0,"Pfam":0,"RHEA":14,"PDB":0,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":10133,"NPAtlas":1756,"PMID":5703,"DOI":8437},"AntibioticMech":{"CHEBI":22104,"NCBITaxon":1085,"GO":3,"ENVO":0,"METPO":0,"ARO":16653,"UniProt":278,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":6,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":1823,"MIBiG":0,"NPAtlas":0,"PMID":1207,"DOI":216},"MediaIngredientMech":{"CHEBI":8220,"NCBITaxon":1,"GO":0,"ENVO":110,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":23,"FOODON":273,"BTO":3,"GTDB":0,"KEGG":61,"CAS":727,"MIBiG":0,"NPAtlas":0,"PMID":29,"DOI":9},"CultureMech":{"CHEBI":160678,"NCBITaxon":63,"GO":0,"ENVO":13,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":138,"FOODON":223,"BTO":0,"GTDB":0,"KEGG":1406,"CAS":1,"MIBiG":0,"NPAtlas":0,"PMID":68,"DOI":76}},"cells":{"HabitatMech--BTO":587,"HabitatMech--CHEBI":11,"HabitatMech--ENVO":1296,"HabitatMech--FOODON":85,"HabitatMech--GO":2,"HabitatMech--NCBITaxon":896,"HabitatMech--PATO":3,"HabitatMech--UBERON":704,"CommunityMech--CHEBI":357,"CommunityMech--ENVO":408,"CommunityMech--GO":394,"CommunityMech--GTDB":367,"CommunityMech--NCBITaxon":422,"CommunityMech--UBERON":10,"TraitMech--CHEBI":183,"TraitMech--ENVO":14,"TraitMech--GO":292,"TraitMech--InterPro":61,"TraitMech--METPO":749,"TraitMech--NCBITaxon":484,"TraitMech--PATO":49,"TraitMech--UniProt":182,"CellStructureMech--CHEBI":24,"CellStructureMech--GO":535,"CellStructureMech--InterPro":33,"CellStructureMech--METPO":5,"CellStructureMech--NCBITaxon":531,"CellStructureMech--PDB":19,"CellStructureMech--Pfam":8,"CellStructureMech--UniProt":65,"ProteinTraitsMech--ARO":7452,"ProteinTraitsMech--CHEBI":30122,"ProteinTraitsMech--GO":110744,"ProteinTraitsMech--InterPro":120090,"ProteinTraitsMech--KEGG":231,"ProteinTraitsMech--METPO":119,"ProteinTraitsMech--NCBITaxon":98697,"ProteinTraitsMech--PATO":81,"ProteinTraitsMech--PDB":51718,"ProteinTraitsMech--Pfam":107455,"ProteinTraitsMech--RHEA":29550,"ProteinTraitsMech--UBERON":43,"ProteinTraitsMech--UniProt":159595,"NaturalProductMech--CHEBI":405,"NaturalProductMech--MIBiG":3115,"NaturalProductMech--NCBITaxon":3115,"NaturalProductMech--NPAtlas":1740,"NaturalProductMech--RHEA":1,"NaturalProductMech--UniProt":102,"AntibioticMech--ARO":568,"AntibioticMech--CAS":1797,"AntibioticMech--CHEBI":2814,"AntibioticMech--GO":3,"AntibioticMech--NCBITaxon":163,"AntibioticMech--PDB":5,"AntibioticMech--UniProt":47,"MediaIngredientMech--BTO":1,"MediaIngredientMech--CAS":287,"MediaIngredientMech--CHEBI":2232,"MediaIngredientMech--ENVO":26,"MediaIngredientMech--FOODON":99,"MediaIngredientMech--KEGG":58,"MediaIngredientMech--NCBITaxon":1,"MediaIngredientMech--UBERON":10,"CultureMech--CAS":1,"CultureMech--CHEBI":6125,"CultureMech--ENVO":12,"CultureMech--FOODON":203,"CultureMech--KEGG":329,"CultureMech--NCBITaxon":30,"CultureMech--UBERON":72},"vocab_edges":[{"a":"HabitatMech","b":"CommunityMech","n":313,"by":{"NCBITaxon":265,"ENVO":42,"UBERON":4,"CHEBI":2},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"ENVO:00001998","label":"soil"},{"id":"ENVO:01001001","label":"plant-associated environment"}]},{"a":"HabitatMech","b":"TraitMech","n":122,"by":{"NCBITaxon":115,"ENVO":4,"PATO":2,"CHEBI":1},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"HabitatMech","b":"CellStructureMech","n":41,"by":{"NCBITaxon":41},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1117","label":"Cyanobacteriota"}]},{"a":"HabitatMech","b":"ProteinTraitsMech","n":1250,"by":{"NCBITaxon":1234,"UBERON":12,"CHEBI":2,"GO":2},"ex":[{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1869227","label":"bacterium"}]},{"a":"HabitatMech","b":"NaturalProductMech","n":312,"by":{"NCBITaxon":312},"ex":[{"id":"NCBITaxon:56","label":"Sorangium cellulosum"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1931","label":"Streptomyces sp."}]},{"a":"HabitatMech","b":"AntibioticMech","n":32,"by":{"NCBITaxon":32},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:573","label":"Klebsiella pneumoniae"}]},{"a":"HabitatMech","b":"MediaIngredientMech","n":22,"by":{"ENVO":15,"UBERON":4,"CHEBI":3},"ex":[{"id":"ENVO:00002149","label":"sea water"},{"id":"ENVO:00001998","label":"soil"},{"id":"ENVO:00002263","label":"garden soil"}]},{"a":"HabitatMech","b":"CultureMech","n":25,"by":{"NCBITaxon":13,"ENVO":7,"UBERON":4,"FOODON":1},"ex":[{"id":"UBERON:0000948","label":"heart"},{"id":"UBERON:0000955","label":"brain"},{"id":"UBERON:0000178","label":"blood"}]},{"a":"CommunityMech","b":"TraitMech","n":157,"by":{"CHEBI":61,"NCBITaxon":61,"GO":35},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:15379","label":"dioxygen"},{"id":"GO:0015977","label":"carbon fixation"}]},{"a":"CommunityMech","b":"CellStructureMech","n":60,"by":{"NCBITaxon":36,"CHEBI":13,"GO":11},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:2157","label":"Archaea"},{"id":"NCBITaxon:562","label":"Escherichia coli"}]},{"a":"CommunityMech","b":"ProteinTraitsMech","n":689,"by":{"CHEBI":276,"NCBITaxon":226,"GO":186,"UBERON":1},"ex":[{"id":"CHEBI:30089","label":"acetate"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"GO:0015979","label":"photosynthesis"}]},{"a":"CommunityMech","b":"NaturalProductMech","n":128,"by":{"NCBITaxon":123,"CHEBI":5},"ex":[{"id":"NCBITaxon:286","label":"Pseudomonas"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:562","label":"Escherichia coli"}]},{"a":"CommunityMech","b":"AntibioticMech","n":63,"by":{"CHEBI":42,"NCBITaxon":21},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"},{"id":"CHEBI:33709","label":"amino acid"}]},{"a":"CommunityMech","b":"MediaIngredientMech","n":240,"by":{"CHEBI":238,"ENVO":2},"ex":[{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:33709","label":"amino acid"},{"id":"CHEBI:3312","label":"calcium dichloride"}]},{"a":"CommunityMech","b":"CultureMech","n":151,"by":{"CHEBI":138,"NCBITaxon":8,"ENVO":5},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:30089","label":"acetate"}]},{"a":"TraitMech","b":"CellStructureMech","n":114,"by":{"GO":53,"NCBITaxon":40,"CHEBI":7,"UniProt":6,"METPO":5,"InterPro":3},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:83333","label":"Escherichia coli (strain K12)"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"}]},{"a":"TraitMech","b":"ProteinTraitsMech","n":707,"by":{"GO":248,"NCBITaxon":136,"METPO":111,"CHEBI":109,"UniProt":56,"InterPro":47},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"METPO:1000631","label":"trophic type"}]},{"a":"TraitMech","b":"NaturalProductMech","n":57,"by":{"NCBITaxon":53,"CHEBI":4},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"TraitMech","b":"AntibioticMech","n":31,"by":{"NCBITaxon":21,"CHEBI":10},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"TraitMech","b":"MediaIngredientMech","n":59,"by":{"CHEBI":59},"ex":[{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:16526","label":"carbon dioxide"}]},{"a":"TraitMech","b":"CultureMech","n":36,"by":{"CHEBI":26,"NCBITaxon":10},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:17234","label":"glucose"}]},{"a":"CellStructureMech","b":"ProteinTraitsMech","n":1058,"by":{"GO":737,"UniProt":155,"NCBITaxon":77,"InterPro":64,"CHEBI":15,"Pfam":10},"ex":[{"id":"GO:0032991","label":"protein-containing complex"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:3055","label":"Chlamydomonas reinhardtii"}]},{"a":"CellStructureMech","b":"NaturalProductMech","n":23,"by":{"NCBITaxon":23},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:9606","label":"Homo sapiens"}]},{"a":"CellStructureMech","b":"AntibioticMech","n":18,"by":{"NCBITaxon":13,"CHEBI":5},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:4932","label":"Saccharomyces cerevisiae"},{"id":"NCBITaxon:90371","label":"Salmonella enterica subsp. enterica serovar Typhimurium"}]},{"a":"CellStructureMech","b":"MediaIngredientMech","n":14,"by":{"CHEBI":14},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:17029","label":"chitin"},{"id":"CHEBI:33403","label":"elemental sulfur"}]},{"a":"CellStructureMech","b":"CultureMech","n":7,"by":{"CHEBI":4,"NCBITaxon":3},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:16261","label":"chitosan"},{"id":"CHEBI:33403","label":"elemental sulfur"}]},{"a":"ProteinTraitsMech","b":"NaturalProductMech","n":794,"by":{"NCBITaxon":487,"UniProt":156,"CHEBI":148,"RHEA":3},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:100226","label":"Streptomyces coelicolor A3(2)"},{"id":"NCBITaxon:227321","label":"Emericella nidulans (strain FGSC A4 / ATCC 38163 / CBS 112.46 / NRRL 194 / M139)"}]},{"a":"ProteinTraitsMech","b":"AntibioticMech","n":2435,"by":{"ARO":1740,"CHEBI":594,"NCBITaxon":79,"UniProt":20,"GO":2},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:573","label":"Klebsiella pneumoniae"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"}]},{"a":"ProteinTraitsMech","b":"MediaIngredientMech","n":798,"by":{"CHEBI":797,"UBERON":1},"ex":[{"id":"CHEBI:15377","label":"water"},{"id":"CHEBI:15740","label":"formate"},{"id":"CHEBI:33709","label":"amino acid"}]},{"a":"ProteinTraitsMech","b":"CultureMech","n":233,"by":{"CHEBI":221,"NCBITaxon":10,"UBERON":2},"ex":[{"id":"CHEBI:15377","label":"water"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:17754","label":"glycerol"}]},{"a":"NaturalProductMech","b":"AntibioticMech","n":278,"by":{"CHEBI":180,"NCBITaxon":96,"UniProt":2},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"},{"id":"NCBITaxon:330879","label":"Aspergillus fumigatus (strain ATCC MYA-4609 / CBS 101355 / FGSC A1100 / Af293)"}]},{"a":"NaturalProductMech","b":"MediaIngredientMech","n":51,"by":{"CHEBI":51},"ex":[{"id":"CHEBI:15956","label":"biotin"},{"id":"CHEBI:16349","label":"L-citrulline"},{"id":"CHEBI:27592","label":"ectoine"}]},{"a":"NaturalProductMech","b":"CultureMech","n":5,"by":{"CHEBI":3,"NCBITaxon":2},"ex":[{"id":"CHEBI:15956","label":"biotin"},{"id":"CHEBI:16349","label":"L-citrulline"},{"id":"CHEBI:27592","label":"ectoine"}]},{"a":"AntibioticMech","b":"MediaIngredientMech","n":324,"by":{"CHEBI":324},"ex":[{"id":"CHEBI:33709","label":"amino acid"},{"id":"CHEBI:30746","label":"benzoic acid"},{"id":"CHEBI:17334","label":"penicillin"}]},{"a":"AntibioticMech","b":"CultureMech","n":29,"by":{"CHEBI":29},"ex":[{"id":"CHEBI:17334","label":"penicillin"},{"id":"CHEBI:48923","label":"erythromycin"},{"id":"CHEBI:30746","label":"benzoic acid"}]},{"a":"MediaIngredientMech","b":"CultureMech","n":612,"by":{"CHEBI":545,"KEGG":56,"FOODON":6,"UBERON":3,"CAS":1,"ENVO":1},"ex":[{"id":"FOODON:03315426","label":"yeast extract"},{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:2509","label":"agar"}]}]}; var MANIFEST = {"version":1,"source":{"repository":"CultureBotAI/culturebotai-claw","revision":"2637172e6fdbfacf163f0b12d289a9828dda2f30","url":"https://github.com/CultureBotAI/culturebotai-claw/blob/2637172e6fdbfacf163f0b12d289a9828dda2f30/src/kg_microbe_fleet/fleet.yaml"},"capability_catalogue":{"id_label_validation":{},"curation_history":{},"strict_validation":{},"schema_sync":{},"release_management":{},"build_coordination":{},"documentation":{},"testing":{},"refactoring":{},"coordination_hooks":{},"deep_research":{},"edison_key_discovery":{},"environment_coverage":{"settings":{"record_globs":{"type":"string_list","required_when_enabled":true}}},"knowledge_gap_scan":{"settings":{"window":{"type":"integer","required_when_enabled":true,"minimum":1}}},"vendored_sync":{},"unmapped_inventory_input":{},"source_catalogue":{},"corpus_statistics":{"settings":{"fields":{"type":"string_list","required_when_enabled":true}}},"page_budgets":{"settings":{"site_path":{"type":"string","required_when_enabled":true},"budgets_path":{"type":"string","required_when_enabled":true}}},"kgx_export":{"settings":{"nodes_path":{"type":"string","required_when_enabled":true},"edges_path":{"type":"string","required_when_enabled":true},"extra_prefixes":{"type":"string_list"}}},"source_queue":{"settings":{"queue_path":{"type":"string","required_when_enabled":true},"extensions":{"type":"string_list"},"required_when_adopted":{"type":"string_list"}}},"metpo_proposal":{"settings":{"class_glob":{"type":"string","required_when_enabled":true},"property_glob":{"type":"string"}}},"sssom_export":{"settings":{"mapping_globs":{"type":"string_list","required_when_enabled":true},"extensions":{"type":"string_list"}}},"writer_audit":{"settings":{"search_dirs":{"type":"string_list","required_when_enabled":true},"save_helpers":{"type":"string_list"},"validators":{"type":"string_list"},"curation_markers":{"type":"string_list"},"exclude":{"type":"string_list"}}},"site_contract":{"settings":{"site_path":{"type":"string","required_when_enabled":true},"published_root":{"type":"string"},"allowed_hosts":{"type":"string_list"}}}},"mechs":{"CultureMech":{"key":"culturemech","github":"CultureBotAI/CultureMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"enabled"},"edison_key_discovery":{"status":"enabled"},"environment_coverage":{"status":"enabled","settings":{"record_globs":["data/merge_yaml/merged/*.yaml"]}},"knowledge_gap_scan":{"status":"enabled","settings":{"window":300}},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["source_environment","medium_type"]}},"page_budgets":{"status":"disabled","reason":"Generates a site through .github/workflows/generate-pages.yaml but declares no size or file-count budgets, so nothing watches it grow. Adopting them applies here; the limits are the repository's to set.","reason_claims":{"present":[".github/workflows/generate-pages.yaml"]}},"writer_audit":{"status":"enabled","settings":{"search_dirs":["scripts","src/culturemech"],"save_helpers":["write_validated_recipe"],"exclude":["scripts/audit_writers.py"]}},"sssom_export":{"status":"enabled","settings":{"mapping_globs":["output/*.sssom.tsv"],"extensions":["mapping_method"]}},"metpo_proposal":{"status":"disabled","reason":"Carries .claude/commands/ground-or-propose-metpo.md, so the grounding half is present, but has no proposals/ directory and has never minted a METPO id. Adopting applies once a CultureMech term needs one.","reason_claims":{"absent":["proposals"],"present":[".claude/commands/ground-or-propose-metpo.md"]}},"kgx_export":{"status":"disabled","reason":"scripts/export_kgx.py writes to output/kgx but has produced nothing tracked, so there is no graph for this contract to judge. Adopting it means running the exporter first; the check applies here once it does.","reason_claims":{"present":["scripts/export_kgx.py"],"absent":["output/kgx"]}},"source_queue":{"status":"disabled","reason":"Has no curation/source_queue.tsv. AntibioticMech wrote the pattern and CellStructureMech adapted it; adopting it here means ranking this corpus's own candidate sources and verifying their licences, which is curation work rather than a file copy.","reason_claims":{"absent":["curation/source_queue.tsv"]}},"site_contract":{"status":"disabled","reason":"Publishes a site built in CI, so no directory in the checkout is the output the check would judge; running it on the Jekyll or template sources reports missing .html files that the build creates. Adopting it means running the check on the build product, which applies here and is not yet wired."},"source_catalogue":{"status":"disabled","reason":"Fetches each source from its own script -- scripts/fetch_komodo_base_volumes.py, scripts/fetch_mediadive_solution_volumes.py, scripts/fetch_pubmed_abstracts.py -- with no download.yaml declaring them, so there is no catalogue to validate. Adopting one would apply here; it has not been written.","reason_claims":{"present":["scripts/fetch_komodo_base_volumes.py","scripts/fetch_mediadive_solution_volumes.py","scripts/fetch_pubmed_abstracts.py"],"absent":["download.yaml"]}},"unmapped_inventory_input":{"status":"enabled"}}},"MediaIngredientMech":{"key":"mediaingredientmech","github":"CultureBotAI/MediaIngredientMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"enabled"},"edison_key_discovery":{"status":"enabled"},"environment_coverage":{"status":"enabled","settings":{"record_globs":["data/ingredients/**/*.yaml"]}},"knowledge_gap_scan":{"status":"enabled","settings":{"window":300}},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["ingredient_type","ontology_mapping.mapping_quality"]}},"page_budgets":{"status":"disabled","reason":"Generates a site through .github/workflows/generate-pages.yaml but declares no size or file-count budgets, so nothing watches it grow. Adopting them applies here; the limits are the repository's to set.","reason_claims":{"present":[".github/workflows/generate-pages.yaml"]}},"writer_audit":{"status":"enabled","settings":{"search_dirs":["scripts","src/mediaingredientmech"],"save_helpers":["save_yaml","write_validated_ingredient"],"exclude":["scripts/audit_writers.py"]}},"sssom_export":{"status":"enabled","settings":{"mapping_globs":["mappings/*.sssom.tsv"],"extensions":["source","validation_method"]}},"metpo_proposal":{"status":"not_applicable","reason":"MIM grounds ingredients in ChEBI and FOODON and publishes SSSOM mappings; METPO models microbial phenotypes and processes, which is not the axis this corpus curates."},"kgx_export":{"status":"disabled","reason":"Publishes term mappings rather than a graph; its contribution to kg-microbe is SSSOM. Adopting KGX would apply here only if it starts emitting nodes and edges."},"source_queue":{"status":"disabled","reason":"Has no curation/source_queue.tsv. AntibioticMech wrote the pattern and CellStructureMech adapted it; adopting it here means ranking this corpus's own candidate sources and verifying their licences, which is curation work rather than a file copy.","reason_claims":{"absent":["curation/source_queue.tsv"]}},"site_contract":{"status":"disabled","reason":"Publishes a site built in CI, so no directory in the checkout is the output the check would judge; running it on the Jekyll or template sources reports missing .html files that the build creates. Adopting it means running the check on the build product, which applies here and is not yet wired."},"source_catalogue":{"status":"disabled","reason":"Fetches ontologies through download_ontologies.py rather than a declared catalogue, so there is no download.yaml to validate. Adopting one would apply here; it has not been written.","reason_claims":{"present":["scripts/download_ontologies.py"],"absent":["download.yaml"]}},"unmapped_inventory_input":{"status":"enabled"}}},"CommunityMech":{"key":"communitymech","github":"CultureBotAI/CommunityMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"enabled"},"edison_key_discovery":{"status":"enabled"},"environment_coverage":{"status":"enabled","settings":{"record_globs":["data/isolates/*.yaml"]}},"knowledge_gap_scan":{"status":"enabled","settings":{"window":305}},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["environment_term"]}},"page_budgets":{"status":"disabled","reason":"Generates a site through .github/workflows/generate-pages.yaml but declares no size or file-count budgets, so nothing watches it grow. Adopting them applies here; the limits are the repository's to set.","reason_claims":{"present":[".github/workflows/generate-pages.yaml"]}},"writer_audit":{"status":"enabled","settings":{"search_dirs":["scripts","src/communitymech"],"save_helpers":["write_validated_community"],"curation_markers":["record_curation_event"],"exclude":["scripts/audit_writers.py"]}},"sssom_export":{"status":"not_applicable","reason":"Publishes KGX nodes and edges rather than term mappings; its contribution to kg-microbe is a graph, not a mapping set, so there is no SSSOM file for this contract to judge."},"metpo_proposal":{"status":"enabled","settings":{"class_glob":"proposals/*/metpo_proposal_classes_robot.tsv","property_glob":"proposals/*/metpo_proposal_properties_robot.tsv"}},"kgx_export":{"status":"enabled","settings":{"nodes_path":"output/kgx/nodes.tsv","edges_path":"output/kgx/edges.tsv"}},"source_queue":{"status":"disabled","reason":"Has no curation/source_queue.tsv. AntibioticMech wrote the pattern and CellStructureMech adapted it; adopting it here means ranking this corpus's own candidate sources and verifying their licences, which is curation work rather than a file copy.","reason_claims":{"absent":["curation/source_queue.tsv"]}},"site_contract":{"status":"enabled","settings":{"site_path":"docs"}},"source_catalogue":{"status":"disabled","reason":"Has no download.yaml; its inputs arrive through per-source scripts rather than a declared catalogue. Adopting one would apply here; it has not been written.","reason_claims":{"absent":["download.yaml"]}},"unmapped_inventory_input":{"status":"enabled"}}},"TraitMech":{"key":"traitmech","github":"CultureBotAI/TraitMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"enabled"},"edison_key_discovery":{"status":"enabled"},"environment_coverage":{"status":"not_applicable","reason":"Environment coverage currently compares culture media, ingredients, and microbial communities; trait records are not an environment inventory input."},"knowledge_gap_scan":{"status":"enabled","settings":{"window":300}},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["mapping_status","trait_category"]}},"page_budgets":{"status":"disabled","reason":"Serves 490 tracked pages under pages/ straight from main via GitHub Pages -- it has no generate-pages.yaml, unlike the other four -- and declares no size or file-count budgets, so nothing watches them grow. Adopting them applies here; the limits are the repository's to set.","reason_claims":{"present":["pages"],"absent":[".github/workflows/generate-pages.yaml"]}},"writer_audit":{"status":"enabled","settings":{"search_dirs":["scripts","src/traitmech"],"save_helpers":["write_validated_trait"],"curation_markers":["record_curation"],"exclude":["scripts/audit_writers.py"]}},"sssom_export":{"status":"enabled","settings":{"mapping_globs":["proposals/*/metpo_proposal_mappings.sssom.tsv"]}},"metpo_proposal":{"status":"enabled","settings":{"class_glob":"proposals/*/metpo_proposal_classes_robot.tsv","property_glob":"proposals/*/metpo_proposal_properties_robot.tsv"}},"kgx_export":{"status":"disabled","reason":"Publishes trait records and METPO mapping proposals, not a KGX graph."},"source_queue":{"status":"disabled","reason":"Has no curation/source_queue.tsv. AntibioticMech wrote the pattern and CellStructureMech adapted it; adopting it here means ranking this corpus's own candidate sources and verifying their licences, which is curation work rather than a file copy.","reason_claims":{"absent":["curation/source_queue.tsv"]}},"site_contract":{"status":"enabled","settings":{"site_path":"pages","published_root":".","allowed_hosts":["cdn.jsdelivr.net"]}},"source_catalogue":{"status":"enabled"},"unmapped_inventory_input":{"status":"not_applicable","reason":"The unmapped-ingredient inventory reads culture-media and ingredient corpora; TraitMech curates traits and has no ingredient records, so scripts/inventory_unmapped_ingredients.py defines no loader for it.","reason_claims":{"present":["claw:scripts/inventory_unmapped_ingredients.py"]}}}},"ProteinTraitsMech":{"key":"proteintraitsmech","github":"CultureBotAI/proteintraitsmech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"enabled"},"edison_key_discovery":{"status":"not_applicable","reason":"ProteinTraitsMech does not use an Edison research-provider key; provider integration is configured through its own supported credential surfaces."},"environment_coverage":{"status":"not_applicable","reason":"Environment coverage currently compares culture media, ingredients, and microbial communities; protein-trait records are not an environment inventory input."},"knowledge_gap_scan":{"status":"not_applicable","reason":"Record-level knowledge-gap scanning targets curated per-record discussion text. This corpus is ontology-derived, so there is no per-record gap surface to scan; the repository is correspondingly absent from the knowledge-gap-scan workflow matrix."},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["trait_axis","mapping_status"]}},"page_budgets":{"status":"enabled","settings":{"site_path":"_site","budgets_path":"conf/pages_budgets.json"}},"writer_audit":{"status":"not_applicable","reason":"Its scripts/audit_writers.py shares the name and nothing else -- a different tool built on registered editors and guard tests, ~600 lines apart from the other four. This audit does not describe what that one checks, and consolidating them would mean choosing one model over the other rather than removing a duplicate.","reason_claims":{"present":["scripts/audit_writers.py"]}},"sssom_export":{"status":"disabled","reason":"Grounds protein traits directly in its own records rather than publishing a mapping set. Adopting one would apply here; none has been written."},"metpo_proposal":{"status":"disabled","reason":"Carries METPO-grounded records under data/traits/**/metpo/, so it consumes METPO, but proposes no new terms and has no proposals/ directory. Adopting applies once a protein trait needs a term METPO lacks.","reason_claims":{"absent":["proposals"]}},"kgx_export":{"status":"disabled","reason":"Publishes protein-trait records rather than a graph."},"source_queue":{"status":"disabled","reason":"Has no curation/source_queue.tsv. AntibioticMech wrote the pattern and CellStructureMech adapted it; adopting it here means ranking this corpus's own candidate sources and verifying their licences, which is curation work rather than a file copy.","reason_claims":{"absent":["curation/source_queue.tsv"]}},"site_contract":{"status":"disabled","reason":"Publishes a site built in CI, so no directory in the checkout is the output the check would judge; running it on the Jekyll or template sources reports missing .html files that the build creates. Adopting it means running the check on the build product, which applies here and is not yet wired."},"source_catalogue":{"status":"enabled"},"unmapped_inventory_input":{"status":"not_applicable","reason":"The unmapped-ingredient inventory reads culture-media and ingredient corpora; ProteinTraitsMech curates protein-trait records and has no ingredient corpus, so scripts/inventory_unmapped_ingredients.py defines no loader for it.","reason_claims":{"present":["claw:scripts/inventory_unmapped_ingredients.py"]}}}},"AntibioticMech":{"key":"antibioticmech","github":"CultureBotAI/AntibioticMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"vendored_sync":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"testing":{"status":"enabled"},"documentation":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"disabled","reason":"Has research-antibiotic, research-entity and deep-research-canary recipes and a research/ tree, but no conf/deep_research_provider.yaml -- the profile every deep-research Mech declares and the contract resolves. Enabled on the recipes alone this would assert a profile that does not exist; the recipes are a research route, not the declared provider contract.","reason_claims":{"present":["research"],"absent":["conf/deep_research_provider.yaml"]}},"edison_key_discovery":{"status":"not_applicable","reason":"Research runs through this repository's own research-antibiotic and research-entity recipes; it uses no Edison provider key."},"environment_coverage":{"status":"not_applicable","reason":"Environment coverage compares culture media, ingredients and microbial communities. An antimicrobial-compound corpus is not an environment inventory input."},"unmapped_inventory_input":{"status":"not_applicable","reason":"The unmapped inventory reconciles ingredient names across media corpora; antimicrobial compounds are not one of its sources."},"knowledge_gap_scan":{"status":"disabled","reason":"Records do not carry the shared Discussion section the scan reads, and this repository is not in the knowledge-gap-scan workflow matrix. Enable once records carry it."},"source_catalogue":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["antimicrobial_class","grounding_status"]}},"source_queue":{"status":"enabled","settings":{"queue_path":"curation/source_queue.tsv"}},"site_contract":{"status":"enabled","settings":{"site_path":"pages"}},"page_budgets":{"status":"disabled","reason":"Serves tracked pages under pages/ from main via GitHub Pages and declares no size or file-count budgets, so nothing watches them grow -- 2,956 files and 30.1 MB measured at admission (#230). Adopting them applies here; the limits are this repository's to set.","reason_claims":{"present":["pages"]}},"writer_audit":{"status":"disabled","reason":"Has no scripts/audit_writers.py, so there is no drift between writer copies to remove yet. Adopting it applies once more writers exist.","reason_claims":{"absent":["scripts/audit_writers.py"]}},"sssom_export":{"status":"disabled","reason":"Records carry ChEBI and ARO identifiers inline rather than through a mapping file. Adopting SSSOM applies once a mapping product exists."},"metpo_proposal":{"status":"disabled","reason":"No proposals/ directory and no METPO grounding. Antimicrobial compounds are grounded in ChEBI and ARO inline; adopting applies once a resistance or activity phenotype needs a METPO term.","reason_claims":{"absent":["proposals"]}},"kgx_export":{"status":"disabled","reason":"No exporter and no graph product yet; adopting KGX applies once the corpus is consumed as a graph."}}},"CellStructureMech":{"key":"cellstructuremech","github":"CultureBotAI/CellStructureMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"disabled","reason":"Research so far is source assessment written by hand under research/ with no provider client or research recipe in the justfile; the repository has not decided on a paid research route.","reason_claims":{"present":["research"]}},"edison_key_discovery":{"status":"not_applicable","reason":"CellStructureMech does not use an Edison research-provider key; it has no research provider integration at all."},"environment_coverage":{"status":"not_applicable","reason":"Environment coverage currently compares culture media, ingredients, and microbial communities; cell-structure records are not an environment inventory input."},"knowledge_gap_scan":{"status":"disabled","reason":"Records carry the shared Discussion section, so the scan applies, but the corpus is four records and the repository is not yet in the knowledge-gap-scan workflow matrix; enable once the first tranche of records lands (CellStructureMech#12)."},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["structure_category","mapping_status"]}},"page_budgets":{"status":"disabled","reason":"Serves tracked pages under pages/ straight from main via GitHub Pages -- it has no generate-pages.yaml -- and declares no size or file-count budgets, so nothing watches them grow. Adopting them applies here; the limits are the repository's to set.","reason_claims":{"present":["pages"],"absent":[".github/workflows/generate-pages.yaml"]}},"writer_audit":{"status":"disabled","reason":"Has no scripts/audit_writers.py, so there is no drift to remove yet. Adopting it applies here once the corpus grows; the settings are the repository's to declare.","reason_claims":{"absent":["scripts/audit_writers.py"]}},"sssom_export":{"status":"disabled","reason":"Records carry GO cellular-component identifiers inline rather than through a mapping file, and the corpus is four records. Adopting one applies once it grows."},"metpo_proposal":{"status":"disabled","reason":"Structures are grounded in GO cellular-component terms inline and there is no proposals/ directory. Adopting applies once a structure phenotype needs a METPO term GO does not carry.","reason_claims":{"absent":["proposals"]}},"kgx_export":{"status":"disabled","reason":"Four structure records and no exporter; adopting KGX applies once the corpus grows."},"source_queue":{"status":"enabled","settings":{"queue_path":"curation/source_queue.tsv","extensions":["taxon_link","item_id","script"],"required_when_adopted":["script"]}},"site_contract":{"status":"enabled","settings":{"site_path":"pages","published_root":"."}},"source_catalogue":{"status":"disabled","reason":"The repository keeps its ranked source list as curation/source_queue.tsv, machine-checked by scripts/check_source_queue.py inside its qc gate, rather than a download.yaml in the fleet's catalogue shape; there is no download.yaml to parse. Converging on one shape is open.","reason_claims":{"present":["curation/source_queue.tsv","scripts/check_source_queue.py"],"absent":["download.yaml"]}},"unmapped_inventory_input":{"status":"not_applicable","reason":"The unmapped-ingredient inventory reads culture-media and ingredient corpora; CellStructureMech curates cell structures and has no ingredient records, so scripts/inventory_unmapped_ingredients.py defines no loader for it.","reason_claims":{"present":["claw:scripts/inventory_unmapped_ingredients.py"]}}}},"HabitatMech":{"key":"habitatmech","github":"CultureBotAI/HabitatMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"disabled","reason":"Has research, research-dry and deep-research-canary recipes, a research/ tree and the vendored scripts/deep_research_contract.py, but no conf/deep_research_provider.yaml -- the profile every deep-research Mech declares and the contract resolves. Enabled on the recipes alone this would assert a profile that does not exist.","reason_claims":{"present":["research","scripts/deep_research_contract.py"],"absent":["conf/deep_research_provider.yaml"]}},"edison_key_discovery":{"status":"not_applicable","reason":"HabitatMech does not use an Edison research-provider key; its research recipes run through its own provider surface."},"environment_coverage":{"status":"disabled","reason":"HabitatMech is itself an environment vocabulary: 3,213 habitat records grounded in ENVO, UBERON, FOODON and BTO. Environment coverage compares culture media, ingredients and communities against ENVO and has no loader for HabitatRecord, so it cannot yet read this corpus as either an input or the reference set. Adopting it applies here and is the more valuable direction: teach environment_coverage_dashboard.py to treat habitat records as the reference the other corpora are measured against.","reason_claims":{"present":["claw:scripts/environment_coverage_dashboard.py"]}},"knowledge_gap_scan":{"status":"disabled","reason":"Records carry the shared Discussion section, so the scan applies. The workflow matrix is generated from this manifest, so enabling the capability here with a settings.window is what adds the repository to it. Left disabled until HabitatMech has run the scan once locally and chosen its window."},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["habitat_category","grounding_status","mapping_status"]}},"page_budgets":{"status":"disabled","reason":"Serves 3,404 published HTML pages under pages/ straight from main via GitHub Pages -- it has no generate-pages.yaml -- and declares no size or file-count budgets, so nothing watches them grow. Adopting them applies here; the limits are the repository's to set.","reason_claims":{"present":["pages"],"absent":[".github/workflows/generate-pages.yaml"]}},"writer_audit":{"status":"disabled","reason":"Has no scripts/audit_writers.py. Its writers exist (write_validated_habitat and record_curation_event in the seeder) and records are seeded as build products, so there is drift to audit; adopting it applies here once the audit is written.","reason_claims":{"absent":["scripts/audit_writers.py"]}},"sssom_export":{"status":"disabled","reason":"Grounds each habitat inline on the record (ENVO, UBERON, FOODON, BTO) and keeps its ontology requests as curation/term_requests.tsv rather than publishing a mapping set; there is no SSSOM file for this contract to judge. Adopting one would apply here.","reason_claims":{"present":["curation/term_requests.tsv"]}},"metpo_proposal":{"status":"disabled","reason":"Habitats are grounded in ENVO and the repository raises its gaps through term requests rather than METPO cohorts, so it has no proposals directory. Adopting applies once a habitat-associated phenotype needs a METPO term.","reason_claims":{"absent":["proposals"]}},"kgx_export":{"status":"disabled","reason":"Consumes kg-microbe's KGX as an input -- conf/sources.yaml names the checkout that supplies ENVO, UBERON, FOODON and BTO -- and publishes habitat records, not a graph. Adopting KGX would apply here only if it starts emitting nodes and edges.","reason_claims":{"present":["conf/sources.yaml"]}},"source_queue":{"status":"disabled","reason":"Has no curation/source_queue.tsv; its sources are declared in conf/sources.yaml and the raw payloads in data/raw/MANIFEST.yaml. AntibioticMech wrote the pattern and CellStructureMech adapted it; adopting it here means ranking candidate habitat sources and verifying their licences, which is curation work rather than a file copy.","reason_claims":{"present":["conf/sources.yaml","data/raw/MANIFEST.yaml"],"absent":["curation/source_queue.tsv"]}},"site_contract":{"status":"disabled","reason":"Publishes 3,404 HTML pages under pages/ straight from main, so the check has a directory to judge, but it has not been measured on this site yet. Enable after measuring on joining, as AntibioticMech did, so the contract's numbers keep describing what it runs on.","reason_claims":{"present":["pages"]}},"source_catalogue":{"status":"disabled","reason":"Declares its sources in conf/sources.yaml and the fetched payloads in data/raw/MANIFEST.yaml rather than a download.yaml in the fleet's catalogue shape; there is no download.yaml to parse. Converging on one shape is open.","reason_claims":{"present":["conf/sources.yaml","data/raw/MANIFEST.yaml"],"absent":["download.yaml"]}},"unmapped_inventory_input":{"status":"not_applicable","reason":"The unmapped-ingredient inventory reads culture-media and ingredient corpora; HabitatMech curates habitats and has no ingredient records, so scripts/inventory_unmapped_ingredients.py defines no loader for it.","reason_claims":{"present":["claw:scripts/inventory_unmapped_ingredients.py"]}}}},"NaturalProductMech":{"key":"naturalproductmech","github":"CultureBotAI/NaturalProductMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"disabled","reason":"Vendors the governed curation-history schema and carries a new-history recipe, but has no history directory yet, so no record can append an event. Adopting applies once the tree exists and the recipe is wired into CI.","reason_claims":{"absent":["history"]}},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"disabled","reason":"No conf/deep_research_provider.yaml and no research recipe; sources are assessed through the source queue. Adopting applies once a provider profile exists under claw's contract.","reason_claims":{"absent":["conf/deep_research_provider.yaml"]}},"edison_key_discovery":{"status":"not_applicable","reason":"NaturalProductMech does not use an Edison research-provider key; it has no research provider integration at all."},"environment_coverage":{"status":"not_applicable","reason":"Environment coverage compares culture media, ingredients and microbial communities. A natural-product structure corpus is not one of those inputs."},"knowledge_gap_scan":{"status":"disabled","reason":"Records do not carry the shared Discussion section the scan reads, and this repository is not in the knowledge-gap-scan workflow matrix. Enable once records carry it."},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["np_pathway","np_classification","grounding_status","curation_status"]}},"page_budgets":{"status":"disabled","reason":"Serves tracked pages under pages/ straight from main via GitHub Pages and declares no size or file-count budgets, so no conf/pages_budgets.json exists for the audit to read.","reason_claims":{"present":["pages"],"absent":["conf/pages_budgets.json"]}},"writer_audit":{"status":"disabled","reason":"Has no scripts/audit_writers.py, so there is no drift between writer copies to remove yet. Adopting it applies here once the corpus is edited by more than one writer.","reason_claims":{"absent":["scripts/audit_writers.py"]}},"sssom_export":{"status":"disabled","reason":"Records carry ChEBI, NPAtlas and PubChem identifiers inline rather than through a mapping file. Adopting SSSOM applies once a mapping product exists."},"metpo_proposal":{"status":"disabled","reason":"No proposals directory and no METPO grounding; structures are grounded in ChEBI. Adopting applies once a natural-product phenotype needs a METPO term.","reason_claims":{"absent":["proposals"]}},"kgx_export":{"status":"disabled","reason":"No exporter and no graph product yet; adopting KGX applies once the corpus is consumed as a graph."},"source_queue":{"status":"enabled","settings":{"queue_path":"curation/source_queue.tsv","extensions":["structures"]}},"site_contract":{"status":"enabled","settings":{"site_path":"pages"}},"source_catalogue":{"status":"disabled","reason":"Keeps its ranked source list as curation/source_queue.tsv and fetches each adopted source through its own extract recipe; there is no download.yaml for the catalogue check to read. Adopting means deriving the machine-fetchable half from the queue.","reason_claims":{"present":["curation/source_queue.tsv"],"absent":["download.yaml"]}},"unmapped_inventory_input":{"status":"not_applicable","reason":"The unmapped inventory reconciles ingredient names across media corpora; natural-product structures are not one of its inputs."}}},"TaxonMech":{"key":"taxonmech","github":"CultureBotAI/TaxonMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"disabled","reason":"Vendors scripts/deep_research_contract.py but has no conf/deep_research_provider.yaml or provider recipe. Enable once a research provider is configured and exercised under the shared contract.","reason_claims":{"present":["scripts/deep_research_contract.py"],"absent":["conf/deep_research_provider.yaml"]}},"edison_key_discovery":{"status":"not_applicable","reason":"TaxonMech has no Edison integration or Edison research-provider key."},"environment_coverage":{"status":"not_applicable","reason":"Environment coverage compares culture media, ingredients and microbial communities; taxon identity records are not one of its inputs."},"knowledge_gap_scan":{"status":"disabled","reason":"The schema supports Discussion but no shared scan window or workflow is configured. Enable after adding a durable curated overlay that the generated-corpus pipeline preserves and wiring the scanner to it."},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["taxon_domain","rank","grounding_status","mapping_status"]}},"page_budgets":{"status":"disabled","reason":"Publishes tracked pages under pages/ but has no conf/pages_budgets.json. Enable once explicit size and file-count budgets are configured and measured.","reason_claims":{"present":["pages"],"absent":["conf/pages_budgets.json"]}},"writer_audit":{"status":"disabled","reason":"Has no scripts/audit_writers.py. Records use a native seeder and validated writer, but no shared audit profile has been adopted. Enable after configuring the profile and measuring its writer coverage.","reason_claims":{"absent":["scripts/audit_writers.py"]}},"sssom_export":{"status":"disabled","reason":"Stores taxonomy mappings and cross-references inline; no SSSOM mapping product is emitted. Enable once a validated export exists."},"metpo_proposal":{"status":"disabled","reason":"The schema references METPO but there is no proposals/ directory or proposal cohort. Enable once the repository produces terms under the shared proposal contract.","reason_claims":{"absent":["proposals"]}},"kgx_export":{"status":"disabled","reason":"Consumes kg-microbe KGX as an input but does not emit a graph product. Enable when an exporter produces validated nodes and edges."},"source_queue":{"status":"disabled","reason":"Sources are configured in conf/sources.yaml and inventoried in data/raw/MANIFEST.yaml; no curation/source_queue.tsv ranks candidate sources. Enable once that review queue is adopted.","reason_claims":{"present":["conf/sources.yaml","data/raw/MANIFEST.yaml"],"absent":["curation/source_queue.tsv"]}},"site_contract":{"status":"enabled","settings":{"site_path":"pages"}},"source_catalogue":{"status":"disabled","reason":"Uses conf/sources.yaml and data/raw/MANIFEST.yaml but has no download.yaml in the shared catalogue shape. Enable after adapting the source declarations to that contract.","reason_claims":{"present":["conf/sources.yaml","data/raw/MANIFEST.yaml"],"absent":["download.yaml"]}},"unmapped_inventory_input":{"status":"not_applicable","reason":"The unmapped inventory reconciles ingredient names across media corpora; taxon identity records are not one of its inputs."}}}},"artifact_count":16}; var MECHS = { @@ -471,7 +471,7 @@ Each X-Mech is an **autonomous knowledge factory** that curates, validates, and var XREFS = [ { from: "CultureMech", to: "MediaIngredientMech", kind: "data", what: "Ingredient strings and occurrence counts inform scoped MIM curation; MIM records carry CultureMech:NNNNNN back-links by stable id.", ev: "MIM schema CultureMechReference; claw ingredient_curation_pipeline", url: "https://github.com/CultureBotAI/MediaIngredientMech/blob/main/src/mediaingredientmech/schema/mediaingredientmech.yaml" }, { from: "MediaIngredientMech", to: "CultureMech", kind: "data", what: "Curated ChEBI/FOODON artifacts support scoped recipe updates; CultureMech vendors MIM's ingredient-role enums and consumes its label index.", ev: "CultureMech src/culturemech/schema/mim_roles.yaml", url: "https://github.com/CultureBotAI/CultureMech/blob/main/src/culturemech/schema/mim_roles.yaml" }, - { from: "CommunityMech", to: "CultureMech", kind: "data", what: "Community records name the medium they were grown in by CultureMech id (through culturemech_id); CultureMech imported media from CommunityMech with their community ids and backfilled recipe source environments through that link.", ev: "CommunityMech docs/cross_repo_linking.md", url: "https://github.com/CultureBotAI/CommunityMech/blob/main/docs/cross_repo_linking.md" }, + { from: "CommunityMech", to: "CultureMech", kind: "data", what: "Community records name the medium they were grown in by CultureMech id (through culturemech_id); CultureMech imported media from CommunityMech with their community ids and backfilled recipe source environments through that link.", ev: "CommunityMech docs/cross_repo_linking.md; CultureMech scripts/import_from_communitymech.py, scripts/backfill_source_environment.py", url: "https://github.com/CultureBotAI/CommunityMech/blob/main/docs/cross_repo_linking.md" }, { from: "CommunityMech", to: "MediaIngredientMech", kind: "data", what: "MIM imported CommunityMech's unmapped growth-media ingredient strings as MIM records (source communitymech-unmapped); CommunityMech's own MIM-id slots are marked vestigial, with chebi_term as the join.", ev: "MIM data/ingredients (communitymech-unmapped); CommunityMech schema GrowthMediaComponent, RelatedIngredient", url: "https://github.com/CultureBotAI/MediaIngredientMech/blob/main/docs/CURIE_STANDARD.md" }, { from: "TraitMech", to: "CellStructureMech", kind: "data", what: "Structures list the phenotypes they confer as TraitMech / METPO terms; causal-graph node vocabulary is TraitMech's plus STRUCTURE.", ev: "CellStructureMech schema associated_traits", url: "https://github.com/CultureBotAI/CellStructureMech/blob/main/src/cellstructuremech/schema/cellstructuremech.yaml" }, { from: "CellStructureMech", to: "ProteinTraitsMech", kind: "schema", what: "A single protein is a component, not a record: it grounds to InterPro / UniProtKB and hands off to ProteinTraitsMech.", ev: "CellStructureMech docs/CURATION.md", url: "https://github.com/CultureBotAI/CellStructureMech/blob/main/docs/CURATION.md" }, @@ -795,7 +795,7 @@ Each X-Mech is an **autonomous knowledge factory** that curates, validates, and } function selectHub() { state.sel = { type: "hub" }; render(); - detail.innerHTML = '

Hub

kg-microbe

Only MediaIngredientMech feeds kg-microbe today. Its ingredient SSSOM is loaded when kg-microbe builds its chemical mappings. CultureMech and CommunityMech have SSSOM or KGX exporters but no published release. TraitMech addresses its METPO class proposals to METPO, not to the graph. The other six share the kg-microbe namespace but release no data into the graph. In the other direction, kg-microbe supplies harmonized ontologies, transformed source data, mapping tables and graph embeddings to the Mechs that need them. The exchange list records each relationship.

' + + detail.innerHTML = '

Hub

kg-microbe

Only MediaIngredientMech feeds kg-microbe today. Its ingredient SSSOM is loaded when kg-microbe builds its chemical mappings. CultureMech and CommunityMech have SSSOM or KGX exporters but no published release. TraitMech addresses its METPO class proposals to METPO, not to the graph. AntibioticMech, ProteinTraitsMech, CellStructureMech and NaturalProductMech exchange no data with it and share only its schema namespace. In the other direction, kg-microbe supplies harmonized ontologies, transformed source data, mapping tables and graph embeddings to the Mechs that need them. The exchange list records each relationship.

' + '

Exchange

    ' + HUB.map(function (h) { return '
  • ' + esc(h.mech) + (h.dir === "out" ? ' →' : ' ←') + ' ' + esc(h.what) + '
  • '; }).join("") + '
'; } // Re-render whatever is selected after a filter change. @@ -880,7 +880,7 @@ Each X-Mech is an **autonomous knowledge factory** that curates, validates, and ## The ten Mechs -Each card carries its Mech's own site color. Hover a card to trace its ties in the graph above; use "Show in graph" to select it. The small print under each headline number gives reviewed records and merged pull requests; a Mech whose schema has no field recording review shows only the pull-request count, rather than a zero that would claim more than it knows. Card and graph totals reflect the published Mech pages checked on September 24, 2026. Each Browse link is the source for its card. For CultureMech that is its index of merged media records, not its landing page, whose recipe total is stale. CommunityMech lists 422 communities online and keeps four additional isolate records in its repository. These published-browser totals may differ from the record-corpus census below. Fleet membership and capability declarations come from CLAW fleet manifest at 2637172. +Each card carries its Mech's own site color. Hover a card to trace its ties in the graph above; use "Show in graph" to select it. The small print under each headline number gives reviewed records and merged pull requests; a Mech whose schema has no field recording review shows only the pull-request count, rather than a zero that would claim more than it knows. Card and graph totals reflect the published Mech pages checked on September 24, 2026. Each Browse link is the source for its card. For CultureMech that is its index of merged media records, not its landing page, whose recipe total is stale. CommunityMech lists 422 communities online and keeps four additional isolate records in its repository; its landing page's category tile reads 16, while its schema, records and browser facet have 15. These published-browser totals may differ from the record-corpus census below. Fleet membership and capability declarations come from CLAW fleet manifest at 2637172.
@@ -978,12 +978,12 @@ Alongside record browsing, the Mechs publish complementary ways to explore their ## How the Mechs reference each other -Beyond shared vocabulary, Mechs name one another directly, in record fields, in schema slots, and in the curation practices they adopt from each other. Arrows point at the Mech that consumes. +Beyond shared vocabulary, Mechs name one another directly, in record fields, in schema slots, and in the curation practices they adopt from each other. Arrows point at the Mech that consumes, or at the one a scope decision defers to.
CultureMech→MediaIngredientMech
Ingredient strings and occurrence counts inform scoped MIM curation; retired collection writers no longer overwrite MIM-owned records from CultureMech aggregates; MIM records link back to recipes by stable id with the CultureMechReference class.Record data · claw ingredient_curation_pipeline
MediaIngredientMech→CultureMech
Curated ChEBI and FOODON mapping artifacts support scoped recipe updates. CultureMech vendors MIM's ingredient-role enums and consumes MIM's immutable label index.Record data · src/culturemech/schema/mim_roles.yaml
-
CommunityMech→CultureMech
Community records name the medium they were cultivated in through culturemech_id references. CultureMech imported media from CommunityMech with their community ids, and backfilled recipe source environments through that link.Record data · docs/cross_repo_linking.md
+
CommunityMech→CultureMech
Community records name the medium they were cultivated in through culturemech_id references. CultureMech imported media from CommunityMech with their community ids, and backfilled recipe source environments through that link.Record data · docs/cross_repo_linking.md; CultureMech scripts/import_from_communitymech.py
CommunityMech→MediaIngredientMech
MIM imported CommunityMech's unmapped growth-media ingredient strings as MIM records, citing communitymech-unmapped as their source. CommunityMech's own MIM-id slots (media_ingredient_mech_id, mediaingredientmech_id) are marked vestigial, with chebi_term as the join.Record data · MIM data/ingredients
TraitMech→CellStructureMech
A structure lists the phenotypes it confers as TraitMech or METPO terms, and its causal-graph node vocabulary is TraitMech's plus a STRUCTURE node type.Record data · schema slot associated_traits
CellStructureMech→ProteinTraitsMech
A single protein is a component of a structure, never a record of its own: it grounds to InterPro or UniProtKB and hands off to ProteinTraitsMech.Scope boundary · docs/CURATION.md
diff --git a/resources.md b/resources.md index c905ac3..0a10ecc 100644 --- a/resources.md +++ b/resources.md @@ -138,15 +138,13 @@ The **[X-Mech Suite](/mechs/)** is a fleet of ten ontology-grounded autonomous k ``` Raw Cultivation Records (Literature, Lab Protocols) ↓ -CultureMech ↔ MediaIngredientMech -Recipes Ingredient identity and mappings - ↓ -CommunityMech + other domain-specific Mechs +CultureMech ↔ MediaIngredientMech ── ingredient mappings ──→ KG-Microbe Knowledge Graph +Recipes Ingredient identity │ + ↓ │ ontologies, mappings, +CommunityMech + other domain-specific Mechs ←─────────────────────┘ embeddings Community, trait, taxon, habitat and molecular evidence ↓ -KG-Microbe Knowledge Graph - ↓ -AI Predictions (MicroGrowAgents, MicroGrowLink) +AI Predictions (MicroGrowAgents, MicroGrowLink), drawing on the Mechs and KG-Microbe ``` ### CultureMech - Autonomous Knowledge Factory for Culture Media diff --git a/scripts/fleet/build_subsets.py b/scripts/fleet/build_subsets.py index fb37fb0..517b012 100644 --- a/scripts/fleet/build_subsets.py +++ b/scripts/fleet/build_subsets.py @@ -14,7 +14,7 @@ import re import urllib.parse -from roots import CITATION, ORDER, mech_root, record_paths +from roots import CITATION, ORDER, mech_root, read_record, record_paths, revision, unchanged OUT=os.path.join(REPO,"assets","fleet") GH="https://github.com/CultureBotAI/"; SITE="https://culturebotai.github.io/" @@ -82,7 +82,12 @@ def slug_for(m, f, doc_id, doc_label=""): pref=[n for n in cands if n.startswith(simple_slug(doc_label)[:24])] if len(pref)==1: return urllib.parse.quote(pref[0]+".html") hab_collisions.append((doc_id,doc_label,cands)); return None - if m=="CommunityMech": return urllib.parse.quote(os.path.basename(rel)[:-5]+".html") + if m=="CommunityMech": + # The census also counts four data/isolates records, but the site + # publishes pages only for kb/communities, so an isolate gets no link + # rather than one that returns 404 (#139). + if not rel.startswith("kb/communities/"): return None + return urllib.parse.quote(os.path.basename(rel)[:-5]+".html") if m=="TraitMech": return urllib.parse.quote(rel[len("data/traits/"):-5]+".html") if m=="CellStructureMech": return urllib.parse.quote(rel[len("data/structures/"):-5]+".html") if m=="AntibioticMech": return urllib.parse.quote(rel[len("data/antibiotics/"):-5]+".html") @@ -95,8 +100,7 @@ def scan(m, keep=None, cap_cell=300): """Return per-mech index: term -> [(slug,label)], prefix -> (count, first refs), term labels votes.""" cfg=MECHS[m]; root=cfg["root"]; terms=collections.defaultdict(list); cells=collections.defaultdict(lambda:[0,[]]); votes=collections.defaultdict(collections.Counter); nfiles=0; nolink=0 for f in record_paths(m): - try: txt=open(f,encoding="utf-8",errors="ignore").read() - except Exception: continue + txt=read_record(f) nfiles+=1 head=txt[:4000] mid=re.search(r"^(?:identifier|id)\s*:\s*(\S+)",head,flags=re.M); doc_id=mid.group(1).strip("'\"") if mid else "" @@ -147,12 +151,16 @@ def scan(m, keep=None, cap_cell=300): return dict(terms=terms,cells=cells,votes=votes) def main(): prepare() + # Recorded like the census's, so a test can check both passes read the same + # commits (#126); taken before the scans and checked after (#122). + revisions={m: revision(m) for m in ORDER} idx={} for m in ORDER: if m=="ProteinTraitsMech": continue idx[m]=scan(m) union=set().union(*[set(idx[m]["terms"]) for m in idx]) idx["ProteinTraitsMech"]=scan("ProteinTraitsMech",keep=union) + for m in ORDER: unchanged(m, revisions[m]) # labels labels={} allterms=set().union(*[set(idx[m]["terms"]) for m in ORDER]) @@ -168,7 +176,7 @@ def main(): l,n=c.most_common(1)[0] if n/sum(c.values())>=0.6 and l.count("'")%2==0: labels[t]=l; break os.makedirs(f"{OUT}/edges",exist_ok=True); os.makedirs(f"{OUT}/cells",exist_ok=True) - summary={"edges":{},"cells":{}} + summary={"_revisions":revisions,"edges":{},"cells":{}} for a,b in itertools.combinations(ORDER,2): shared=set(idx[a]["terms"])&set(idx[b]["terms"]) # An edge counts shared *concepts*, not shared bibliography. roots.CITATION diff --git a/scripts/fleet/mech_stats.py b/scripts/fleet/mech_stats.py index 2f255e6..2d8f916 100644 --- a/scripts/fleet/mech_stats.py +++ b/scripts/fleet/mech_stats.py @@ -44,7 +44,7 @@ sys.path.insert(0, os.path.dirname(os.path.abspath(__file__))) -from roots import RECORD_GLOBS, mech_root, record_paths, revision +from roots import RECORD_GLOBS, mech_root, read_record, record_paths, revision, unchanged REPO = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) OUT = os.path.join(REPO, "_fleet", "data", "mech_stats.json") @@ -103,19 +103,23 @@ def review_slot(mech: str) -> str | None: return None -def review_census(mech: str) -> tuple[int, int | None, str | None]: - """Records, reviewed records, and the field that said so.""" +def review_census(mech: str) -> tuple[int, int | None, str | None, str | None]: + """Records, reviewed records, the field that said so, and the revision read.""" paths = record_paths(mech) + # Taken before the reads and checked after, as in prefix_census.py (#122). + rev = revision(mech, paths) field = review_slot(mech) if field is None: - return len(paths), None, None + unchanged(mech, rev) + return len(paths), None, None, rev reviewed = 0 for path in paths: - for key, value in STATUS.findall(open(path, encoding="utf-8", errors="replace").read()): + for key, value in STATUS.findall(read_record(path, errors="replace")): if key == field: reviewed += value == "REVIEWED" break - return len(paths), reviewed, field + unchanged(mech, rev) + return len(paths), reviewed, field, rev def merged_prs(mech: str) -> int: @@ -138,14 +142,14 @@ def main() -> None: mechs = [] for name in MEMBERS: - records, reviewed, field = review_census(name) + records, reviewed, field, rev = review_census(name) prs = old[name]["merged_prs"] if keep_prs and name in old else merged_prs(name) # The revision is derived here rather than typed into the output: the # previous refresh added source_revision by hand, so rerunning this # script would have silently dropped it. mechs.append({"mech": name, "repo": GH_REPO.get(name, name), "records": records, "reviewed": reviewed, "status_field": field, "merged_prs": prs, - "source_revision": revision(name)}) + "source_revision": rev}) shown = "not tracked" if reviewed is None else f"{reviewed:,} reviewed" print(f"{name:<22} {records:>8,} records {shown:<16} {prs:>5,} merged PRs") diff --git a/scripts/fleet/prefix_census.py b/scripts/fleet/prefix_census.py index d8ee265..d4c3868 100644 --- a/scripts/fleet/prefix_census.py +++ b/scripts/fleet/prefix_census.py @@ -12,7 +12,7 @@ import json import re -from roots import ORDER, record_paths, revision +from roots import ORDER, read_record, record_paths, revision, unchanged P="CHEBI|pubchem\\.compound|PubChem|METPO|ENVO|NCBITaxon|GO|PR|UniProtKB|UniProt|cas|CAS|MESH|mesh|OBI|PATO|UBERON|FOODON|MICRO|MicrO|OMP|ECO|RO|BFO|IAO|ARO|NCIT|RHEA|KEGG|EC|Pfam|PFAM|InterPro|IPR|MediaDive|mediadive\\.compound|KOMODO|BacDive|GTDB|IMG|GOLD|DSMZ|ATCC|drugbank|DrugBank|PDB|TCDB|SO|CL|GAZ|PO|BTO|EMDB|CHEMBL\\.COMPOUND|PMID|DOI|doi|PHIPO|NCBIfam|ComplexPortal|SNOMED|gold\\.ecosystem|bacdive\\.isolation_source|mibig|MIBiG|npatlas|NPAtlas" rx=re.compile(r"\b("+P+r"):[A-Za-z0-9_.\-]+") @@ -21,23 +21,25 @@ def census(): """Count prefix occurrences per Mech. Minutes of I/O over every record.""" - out={} + out={}; revisions={} for m in ORDER: - pc=collections.Counter(); n=0 - for f in record_paths(m): - n+=1 - try: txt=open(f,encoding="utf-8",errors="ignore").read() - except Exception: continue - for p in rx.findall(txt): pc[norm.get(p,p)]+=1 - out[m]={"files":n,"prefixes":dict(pc.most_common())} - print(m,n,dict(pc.most_common(14)),flush=True) + pc=collections.Counter() + paths=record_paths(m) + # The revision is taken before the records are read and checked after, + # so it names the tree that was actually counted (#122). + revisions[m]=revision(m, paths) + for f in paths: + for p in rx.findall(read_record(f)): pc[norm.get(p,p)]+=1 + unchanged(m, revisions[m]) + out[m]={"files":len(paths),"prefixes":dict(pc.most_common())} + print(m,len(paths),dict(pc.most_common(14)),flush=True) # The run date travels in the file, not on it: git does not preserve mtimes, # so a fresh clone would otherwise make the page claim the corpora were # counted on the day someone cloned it (CultureBotAI.github.io#74). out["_as_of"]=datetime.date.today().isoformat() # And the revision each corpus was read at, so the census can be checked # against mech_stats.json, which counts the same files (#85). - out["_revisions"]={m: revision(m) for m in ORDER} + out["_revisions"]=revisions return out diff --git a/scripts/fleet/roots.py b/scripts/fleet/roots.py index 9e14230..508bb56 100644 --- a/scripts/fleet/roots.py +++ b/scripts/fleet/roots.py @@ -18,6 +18,7 @@ import glob import os import subprocess +import unicodedata MECHS_ROOT = os.environ.get( "MECHS_ROOT", "/Users/marcin/Documents/VIMSS/ontology/Mechs" @@ -86,25 +87,104 @@ def record_paths(name: str) -> list[str]: return sorted(paths) -def revision(name: str) -> str | None: - """The commit a checkout's records were read at, or None outside git. +def _git(root: str, *args: str) -> str: + # --no-optional-locks: plain `git status` takes index.lock and may rewrite + # the index, and the default checkouts are shared with other work (#123). + return subprocess.run(["git", "--no-optional-locks", "-C", root, *args], + capture_output=True, text=True, check=True).stdout - Recorded by both prefix_census.py and mech_stats.py so the committed - outputs say which revision each number came from, and a test can check the - two were taken from the same one. The census and the stats had drifted to - different checkouts before anything recorded that: 364 CommunityMech - records in one and 396 in the other (CultureBotAI.github.io#85). A checkout - with uncommitted changes is marked, since its records are not that commit's. + +def _record_dirs(name: str) -> list[str]: + """The fixed directory prefix of each record glob, e.g. data/traits.""" + dirs = [] + for pattern in RECORD_GLOBS[name]: + parts = [] + for part in pattern.split("/"): + if any(ch in part for ch in "*?["): + break + parts.append(part) + dirs.append("/".join(parts)) + return dirs + + +def head(name: str) -> str | None: + """The checkout's HEAD commit, or None if the directory is not a repository. + + A directory that is not itself a repository's top level returns None rather + than the HEAD of whatever repository encloses it (#124). """ root = mech_root(name) - def git(*args: str) -> str: - return subprocess.run(["git", "-C", root, *args], capture_output=True, - text=True, check=True).stdout.strip() try: - sha = git("rev-parse", "HEAD") + top = _git(root, "rev-parse", "--show-toplevel").strip() except (subprocess.CalledProcessError, FileNotFoundError): return None - return sha + ("+dirty" if git("status", "--porcelain") else "") + if os.path.realpath(top) != os.path.realpath(root): + return None + return _git(root, "rev-parse", "HEAD").strip() + + +def revision(name: str, paths: list[str] | None = None) -> str | None: + """The commit a checkout's records are, or None outside git. + + Recorded by prefix_census.py, build_subsets.py and mech_stats.py so the + committed outputs say which revision each number came from, and a test can + check they were taken from the same one. The census and the stats had + drifted to different checkouts before anything recorded that: 364 + CommunityMech records in one and 396 in the other (#85). + + "+dirty" is appended unless the records counted are exactly that commit's. + `git status` alone cannot say so: it never lists ignored files, hides + untracked ones under status.showUntrackedFiles=no, and says nothing about + paths a sparse checkout leaves out, while record_paths() globs the disk. So + the counted paths are compared with the files git tracks under the same + globs, and status is consulted only for modified tracked files, scoped to + the record directories and src/ (the schemas mech_stats.py reads), so an + unrelated scratch file does not mark a checkout dirty (#121). + + Pass `paths` when record_paths(name) is already in hand. + """ + sha = head(name) + if sha is None: + return None + root = mech_root(name) + if paths is None: + paths = record_paths(name) + counted = {unicodedata.normalize("NFC", os.path.relpath(p, root)) for p in paths} + specs = [f":(glob){pattern}" for pattern in RECORD_GLOBS[name]] + tracked = {unicodedata.normalize("NFC", p) + for p in _git(root, "ls-files", "-z", "--", *specs).split("\0") if p} + # Match glob.glob's semantics, which skip hidden files and directories. + tracked = {p for p in tracked if not any(part.startswith(".") for part in p.split("/"))} + for prefix in EXCLUDE_DIRS.get(name, []): + tracked = {p for p in tracked if not p.startswith(prefix)} + scope = [d for d in _record_dirs(name) + ["src"] if os.path.exists(os.path.join(root, d))] + modified = _git(root, "status", "--porcelain", "--untracked-files=all", "--", *scope).strip() + return sha + ("+dirty" if counted != tracked or modified else "") + + +def read_record(path: str, errors: str = "ignore") -> str: + """One record's text. An unreadable record stops the run. + + The scans used to skip a file they could not open and still report the full + glob count, so a partial read looked like a complete one (#127). The handle + is closed, too: a bare open().read() per record left ~450,000 handles to the + garbage collector, and each one warns under -W error::ResourceWarning (#135). + """ + try: + with open(path, encoding="utf-8", errors=errors) as handle: + return handle.read() + except OSError as error: + raise SystemExit(f"could not read record {path}: {error}") + + +def unchanged(name: str, before: str | None) -> None: + """Stop if a checkout's HEAD moved while its records were being read (#122).""" + if before is None: + return + now = head(name) + if now != before.split("+", 1)[0]: + raise SystemExit(f"{name}: HEAD moved from {before[:12]} to {str(now)[:12]} during the scan; " + "rerun against a checkout nothing is updating, such as a pinned snapshot.") def summary() -> str: diff --git a/tests/test_fleet_page.py b/tests/test_fleet_page.py index 33a1421..cc8f061 100644 --- a/tests/test_fleet_page.py +++ b/tests/test_fleet_page.py @@ -443,6 +443,145 @@ def test_the_audit_pins_the_revisions_the_stats_counted(self): self.assertIn(entry["repo"], self.audit, "Mech missing from site_audit.json") self.assertEqual(self.audit[entry["repo"]]["sha"], entry["source_revision"]) + def test_the_audit_records_this_refresh_and_nothing_else(self): + # The audit's other fields had no gate at all (#128): its merged PRs, + # the card figure it read, the CLAW pin, and which repositories it lists. + import check_cards + cards = check_cards.cards((ROOT / "_fleet/mechs_template.md").read_text()) + manifest = json.loads((ROOT / "_fleet/data/manifest.json").read_text()) + self.assertEqual(set(self.audit), {m["repo"] for m in self.stats.values()} | {"culturebotai-claw"}) + self.assertEqual(self.audit["culturebotai-claw"]["sha"], manifest["source"]["revision"]) + for mech, entry in self.stats.items(): + with self.subTest(mech=mech): + row = self.audit[entry["repo"]] + self.assertEqual(row["merged_prs"], entry["merged_prs"]) + self.assertEqual(row["card_records"], cards[mech]) + + def test_the_subsets_read_the_same_revisions_as_the_census(self): + # build_subsets.py is the other scanning pass; a rerun of it alone, or of + # the census alone, would otherwise go unnoticed (#126). + subsets = json.loads((ROOT / "_fleet/data/subsets_summary.json").read_text()) + self.assertEqual(subsets.get("_revisions"), self.census.get("_revisions")) + + def test_fleet_data_is_built_from_the_committed_inputs(self): + # fleet_data.json is what the page embeds. A skipped build_data.py leaves + # it describing older subsets and census files (#126). + import build_data + subsets = json.loads((ROOT / "_fleet/data/subsets_summary.json").read_text()) + with contextlib.redirect_stdout(open(os.devnull, "w")): + expected = build_data.build(subsets, self.census) + committed = json.loads((ROOT / "_fleet/data/fleet_data.json").read_text()) + self.assertEqual(committed, json.loads(json.dumps(expected))) + + +class RevisionTests(unittest.TestCase): + """roots.revision() must say whether the counted records are the commit's (#121).""" + + MECH = "TraitMech" # any name in RECORD_GLOBS; its glob is data/traits/**/*.yaml + + def setUp(self): + self.tmp = Path(tempfile.mkdtemp()) + self.addCleanup(shutil.rmtree, self.tmp, ignore_errors=True) + self.saved = roots.MECHS_ROOT + self.addCleanup(setattr, roots, "MECHS_ROOT", self.saved) + roots.MECHS_ROOT = str(self.tmp) + self.repo = self.tmp / self.MECH + (self.repo / "data/traits/a").mkdir(parents=True) + (self.repo / "data/traits/b").mkdir() + (self.repo / "src").mkdir() + (self.repo / "data/traits/a/one.yaml").write_text("id: METPO:1\n") + (self.repo / "data/traits/b/two.yaml").write_text("id: METPO:2\n") + (self.repo / "src/schema.yaml").write_text("id: s\n") + self.git("init", "-q") + self.git("add", ".") + self.git("commit", "-q", "-m", "records") + self.sha = self.git("rev-parse", "HEAD").strip() + + def git(self, *args): + return subprocess.run(["git", "-c", "user.name=test", "-c", "user.email=test", + "-c", "commit.gpgsign=false", "-C", str(self.repo), *args], + capture_output=True, text=True, check=True).stdout + + def test_a_clean_checkout_names_its_commit(self): + self.assertEqual(roots.revision(self.MECH), self.sha) + + def test_a_modified_record_is_dirty(self): + (self.repo / "data/traits/b/two.yaml").write_text("id: METPO:3\n") + self.assertEqual(roots.revision(self.MECH), self.sha + "+dirty") + + def test_an_untracked_record_is_dirty_even_when_status_hides_it(self): + self.git("config", "status.showUntrackedFiles", "no") + (self.repo / "data/traits/three.yaml").write_text("id: METPO:4\n") + self.assertEqual(roots.revision(self.MECH), self.sha + "+dirty") + + def test_an_ignored_record_is_dirty(self): + # record_paths() counts it and git status never lists it: the #88 shape. + (self.repo / ".gitignore").write_text("backups/\n") + self.git("add", ".gitignore"); self.git("commit", "-q", "-m", "ignore") + sha = self.git("rev-parse", "HEAD").strip() + (self.repo / "data/traits/backups").mkdir() + (self.repo / "data/traits/backups/copy.yaml").write_text("id: METPO:1\n") + self.assertEqual(roots.revision(self.MECH), sha + "+dirty") + + def test_records_a_sparse_checkout_leaves_out_are_dirty(self): + # Cone mode keeps files directly in ancestor directories, so the left-out + # record sits in a sibling subdirectory. + self.git("sparse-checkout", "set", "--cone", "data/traits/a", "src") + self.assertFalse((self.repo / "data/traits/b/two.yaml").exists()) + self.assertEqual(roots.revision(self.MECH), self.sha + "+dirty") + + def test_an_unrelated_scratch_file_does_not_make_it_dirty(self): + (self.repo / "notes.txt").write_text("scratch\n") + self.assertEqual(roots.revision(self.MECH), self.sha) + + def test_a_directory_inside_another_repository_is_not_that_repository(self): + # rev-parse walks up; the enclosing repository's HEAD is not this Mech's (#124). + outer = self.tmp / "outer" + inner = outer / self.MECH + (inner / "data/traits").mkdir(parents=True) + (inner / "data/traits/x.yaml").write_text("id: METPO:9\n") + subprocess.run(["git", "-C", str(outer), "init", "-q"], check=True) + roots.MECHS_ROOT = str(outer) + self.assertIsNone(roots.revision(self.MECH)) + + +class SubsetDeterminismTests(unittest.TestCase): + """Two build_subsets.py runs over the same records write the same bytes (#107, #129).""" + + # Every Mech gets one record citing the same five shared terms, so every + # edge has five prefixes tied at one: the case Counter.most_common() orders + # by set iteration, which follows the per-process hash seed. + SHARED = "CHEBI:1 GO:2 ENVO:3 NCBITaxon:4 METPO:5 UniProt:P6 PATO:7 UBERON:8" + + def build_fixture(self, root): + for mech, patterns in roots.RECORD_GLOBS.items(): + base = roots._record_dirs(mech)[0] + folder = root / mech / base + folder.mkdir(parents=True, exist_ok=True) + ident = {"HabitatMech": "habitatmech:0001", "ProteinTraitsMech": "PTM:1"}.get(mech, f"{mech}:1") + (folder / "rec.yaml").write_text(f"id: {ident}\nlabel: record\nterms: {self.SHARED}\n") + pages = root / "HabitatMech/pages/habitats" + pages.mkdir(parents=True) + (pages / "record-habitatmech-0001.html").write_text("") + + def run_once(self, fixture, out, seed): + driver = ("import build_subsets as b, os; b.OUT=os.environ['OUT']; b.DATA=os.environ['DATA']; " + "os.makedirs(b.DATA, exist_ok=True); b.main()") + env = dict(os.environ, MECHS_ROOT=str(fixture), PYTHONPATH=str(ROOT / "scripts/fleet"), + PYTHONHASHSEED=str(seed), OUT=str(out / "fleet"), DATA=str(out / "data")) + done = subprocess.run([sys.executable, "-c", driver], env=env, capture_output=True, text=True, timeout=120) + self.assertEqual(done.returncode, 0, done.stderr[-2000:]) + return {str(p.relative_to(out)): p.read_bytes() for p in sorted(out.rglob("*.json"))} + + def test_output_does_not_depend_on_the_hash_seed(self): + tmp = Path(tempfile.mkdtemp()); self.addCleanup(shutil.rmtree, tmp, ignore_errors=True) + self.build_fixture(tmp / "mechs") + runs = [self.run_once(tmp / "mechs", tmp / f"run{seed}", seed) for seed in (1, 2, 3, 4)] + self.assertTrue(runs[0], "the fixture produced no output") + self.assertTrue(any('"edges"' in k or k.startswith("fleet/edges") for k in runs[0])) + for seed, run in zip((2, 3, 4), runs[1:]): + self.assertEqual(run, runs[0], f"output under PYTHONHASHSEED={seed} differs from seed 1") + if __name__ == '__main__': unittest.main() From c2760df80d2a1343ec4d49c80dad6179376ee6c7 Mon Sep 17 00:00:00 2001 From: "marcin p. joachimiak" <4625870+realmarcin@users.noreply.github.com> Date: Thu, 24 Sep 2026 22:58:53 -0700 Subject: [PATCH 06/16] Hash each audited page at the pin, and derive the byte-identity note site_audit.json's notes said the live page was byte-identical to the one at the pin for NaturalProductMech, CellStructureMech and TraitMech, while the hash beside each note was of a page published after the pin (#155). The notes were typed; the hashes were fetched. The audit now records the committed copy's hash at the pin next to the live one and generates the sentence from the comparison. That also shows MediaIngredientMech's data file changed after the pin, with the same figures. The skill says never to type an identity claim into the audit. Closes #155. Co-Authored-By: Claude Opus 5.5 (1M context) --- .claude/skills/update-xmech-page/SKILL.md | 6 +++- _fleet/README.md | 3 ++ _fleet/data/site_audit.json | 40 ++++++++++++++--------- 3 files changed, 32 insertions(+), 17 deletions(-) diff --git a/.claude/skills/update-xmech-page/SKILL.md b/.claude/skills/update-xmech-page/SKILL.md index e643a5c..80eb23b 100644 --- a/.claude/skills/update-xmech-page/SKILL.md +++ b/.claude/skills/update-xmech-page/SKILL.md @@ -217,7 +217,11 @@ how the site figure relates to the repo count. Set `checked_at_utc`, `local_date`, `pinned_at_utc` and `scope`. Derive the mechanical fields rather than typing them: the figure through `check_cards.published()`, merged PRs from `mech_stats.json`, SHAs and commit dates from the pins, and assert that the -pins equal the stats' `source_revision` before writing. The provenance tests require its SHAs to equal the +pins equal the stats' `source_revision` before writing. Hash the served page as +committed at the pin too (`git show :pages/index.html`, or `docs/`), record +it beside the live hash, and let the builder say whether the two match. Never +type "byte-identical" into a note: sites publish during the run, and a +hand-written claim of identity went stale for four Mechs in the first run (#155). The provenance tests require its SHAs to equal the stats' `source_revision`. `../CLAUDE.md` is untracked and above the repository, but it records when the diff --git a/_fleet/README.md b/_fleet/README.md index 7a635d6..1466ce6 100644 --- a/_fleet/README.md +++ b/_fleet/README.md @@ -140,6 +140,9 @@ records, so the census and `mech_stats.json` count 426. CellStructureMech and TraitMech published new records after the pins were taken; their cards keep the pinned figures, and `site_audit.json` records what the two sites showed when it was written. `check_cards.py` will report both as drifted until the next refresh. +NaturalProductMech's landing page and MediaIngredientMech's data file also +changed after the pins without changing their figures; the audit records each +live hash beside the hash of the committed copy at the pin. CultureMech's README inventory at the pinned revision reports 15,878 normalized records and 6,288 merged records. `/pages/` is live again and lists the same diff --git a/_fleet/data/site_audit.json b/_fleet/data/site_audit.json index a996c35..61c4392 100644 --- a/_fleet/data/site_audit.json +++ b/_fleet/data/site_audit.json @@ -1,5 +1,5 @@ { - "checked_at_utc": "2026-09-25T03:31:02+00:00", + "checked_at_utc": "2026-09-25T05:58:30+00:00", "local_date": "2026-09-24", "pinned_at_utc": "2026-09-25T02:06:03+00:00", "scope": "Public main revisions pinned once for the whole refresh, and the deployed GitHub Pages responses; the vocabulary census, subsets and card stats were regenerated at the same pins.", @@ -13,7 +13,8 @@ "merged_prs": 422, "site": "https://culturebotai.github.io/AntibioticMech/pages/index.html", "site_html_sha256": "426d439768e46f5e3c65b0241762359d06dffb3b217a3bba01e2552b65991ae9", - "notes": "2,939 data/antibiotics records at the pin (2,669 ontology-grounded, 270 minted; 80 REVIEWED, 30 PROPOSED, 2,829 SEEDED), equal to the stat tile. The live page is byte-identical to pages/index.html at the pin and unchanged since September 13." + "site_html_sha256_at_pin": "426d439768e46f5e3c65b0241762359d06dffb3b217a3bba01e2552b65991ae9", + "notes": "2,939 data/antibiotics records at the pin (2,669 ontology-grounded, 270 minted; 80 REVIEWED, 30 PROPOSED, 2,829 SEEDED), equal to the stat tile. The live index.html is byte-identical to pages/index.html at the pin." }, { "repo": "CellStructureMech", @@ -23,9 +24,10 @@ "card_records": 542, "merged_prs": 611, "site": "https://culturebotai.github.io/CellStructureMech/pages/index.html", - "site_html_sha256": "52a1fc196d845f0a7b09c13078e78483f784d33b8a97a57204784044f18f0d9f", - "notes": "542 data/structures records at the pin, equal to the stat tile (13 categories, 475 GO-grounded, 196 membrane organelles). All 542 are PROPOSED, so none is reviewed. The live page is byte-identical to pages/index.html at the pin. The site moved past the pin during the refresh and showed 544 when this audit was written; the card keeps the pinned figure, 542.", - "site_figure_at_check": 544 + "site_html_sha256": "46582d729ff175f3e5cda8fd6040d73492aeb3debacaaeffbf228a0277f69d10", + "site_html_sha256_at_pin": "55909b291392a027c58b9206fd49ea13d67b83165a593920fdb65a62ef0bac66", + "notes": "542 data/structures records at the pin, equal to the stat tile (13 categories, 475 GO-grounded, 196 membrane organelles). All 542 are PROPOSED, so none is reviewed. The live index.html had moved past the pin when this audit was written; site_html_sha256 is the live copy and site_html_sha256_at_pin is pages/index.html at the pin. The site moved past the pin during the refresh and showed 548 when this audit was written; the card keeps the pinned figure, 542.", + "site_figure_at_check": 548 }, { "repo": "CommunityMech", @@ -36,7 +38,8 @@ "merged_prs": 578, "site": "https://culturebotai.github.io/CommunityMech/", "site_html_sha256": "5c7aba370a7e7bd50590eb16005c4e3bdd31b1f17d933b8106de7506d67d07dd", - "notes": "The landing tile counts 422 kb/communities records, equal to the pin. data/isolates adds four more, so the census and mech_stats.json count 426. The landing's '16 categories' tile is hard-coded upstream; the schema enum, the records and the browser facet all have 15. No GitHub release has been published." + "site_html_sha256_at_pin": "5c7aba370a7e7bd50590eb16005c4e3bdd31b1f17d933b8106de7506d67d07dd", + "notes": "The landing tile counts 422 kb/communities records, equal to the pin. data/isolates adds four more, so the census and mech_stats.json count 426. The landing's '16 categories' tile is hard-coded upstream; the schema enum, the records and the browser facet all have 15. No GitHub release has been published. The live index.html is byte-identical to docs/index.html at the pin." }, { "repo": "culturebotai-claw", @@ -54,7 +57,7 @@ "merged_prs": 253, "site": "https://culturebotai.github.io/CultureMech/pages/", "site_html_sha256": "253608644e3542df93206f8480a1d5d39aafe43456aaabcd9d4d3141befb794a", - "notes": "pages/ states 6,288 media records, equal to data/merge_yaml/merged at the pin and to the README corpus snapshot (15,878 normalized, 6,288 merged). The app/ landing tile still reads 10,657, a legacy figure that matches no data layer." + "notes": "pages/ states 6,288 media records, equal to data/merge_yaml/merged at the pin and to the README corpus snapshot (15,878 normalized, 6,288 merged). The app/ landing tile still reads 10,657, a legacy figure that matches no data layer. The served file is built in CI rather than committed, so there is no copy at the pin to compare." }, { "repo": "HabitatMech", @@ -65,7 +68,8 @@ "merged_prs": 417, "site": "https://culturebotai.github.io/HabitatMech/pages/index.html", "site_html_sha256": "53564300e6d0aaf2a5b1144fceab088024586941f197113c57c42c17eefbc8e9", - "notes": "3,206 data/habitats records at the pin (686 REVIEWED, 2,520 SEEDED), equal to the stat tile. The 263 commits since the previous audit add only record-review reports; the live page is byte-identical to the one audited on September 20." + "site_html_sha256_at_pin": "53564300e6d0aaf2a5b1144fceab088024586941f197113c57c42c17eefbc8e9", + "notes": "3,206 data/habitats records at the pin (686 REVIEWED, 2,520 SEEDED), equal to the stat tile. The 263 commits since the previous audit add only record-review reports. The live index.html is byte-identical to pages/index.html at the pin." }, { "repo": "MediaIngredientMech", @@ -77,8 +81,9 @@ "site": "https://culturebotai.github.io/MediaIngredientMech/", "site_html_sha256": "e98a1ac81f8faafad3aae291782b32e22e78e8f20cd822effc4cba4c22ce7b09", "data_url": "https://culturebotai.github.io/MediaIngredientMech/data/ingredients.json", - "data_sha256": "fcf9ecfd27503745e2246cc71af6415f1f9f8c3c85b0f9609a3c6dac384c7c88", - "notes": "The landing tiles are computed from data/ingredients.json: 2,953 ingredients, 2,611 MAPPED (88%), 261 UNMAPPED, 80 REJECTED, 1 AMBIGUOUS. The data file is byte-identical to docs/data/ingredients.json at the pin, which holds 2,953 records. browser.html reads directory counts instead (2,680 under mapped/)." + "data_sha256": "ec0cad23f6612450f788e46ad90bf1758324f9559db57805ff41f6f2ef3ac651", + "data_sha256_at_pin": "fcf9ecfd27503745e2246cc71af6415f1f9f8c3c85b0f9609a3c6dac384c7c88", + "notes": "The landing tiles are computed from data/ingredients.json: 2,953 ingredients, 2,611 MAPPED (88%), 261 UNMAPPED, 80 REJECTED, 1 AMBIGUOUS. browser.html reads directory counts instead (2,680 under mapped/). The live ingredients.json had moved past the pin when this audit was written; data_sha256 is the live copy and data_sha256_at_pin is docs/data/ingredients.json at the pin." }, { "repo": "NaturalProductMech", @@ -89,7 +94,8 @@ "merged_prs": 84, "site": "https://culturebotai.github.io/NaturalProductMech/pages/index.html", "site_html_sha256": "28d335df6bfeb065940fad9e5ae783d6cd3ed7eacabd8c46c94ee4a9aecdbabd", - "notes": "The landing prose states 3,115 natural product structures, equal to data/natural_products at the pin; all are SEEDED. The live page is byte-identical to pages/index.html at the pin." + "site_html_sha256_at_pin": "b9123f9351433aeaf040e7215bace8fb4f7a4edce062ccc356115db69f035292", + "notes": "The landing prose states 3,115 natural product structures, equal to data/natural_products at the pin; all are SEEDED. The live index.html had moved past the pin when this audit was written; site_html_sha256 is the live copy and site_html_sha256_at_pin is pages/index.html at the pin." }, { "repo": "proteintraitsmech", @@ -102,7 +108,7 @@ "site_html_sha256": "cb05b422261e624bbec0787efaa8be851fc7427eaf83a7f9fc2b624d282bfbcf", "data_url": "https://culturebotai.github.io/proteintraitsmech/data/facets.json", "data_sha256": "6544ba4f059705c713ff48a3ccc2b3c4141aae7976062c99f677306ad9b05fb3", - "notes": "429,293 records and 34 source labels, computed at runtime from data/facets.json and equal to data/traits at the pin. The static HTML still carries a legacy fallback of 408,978 / 29." + "notes": "429,293 records and 34 source labels, computed at runtime from data/facets.json and equal to data/traits at the pin. The static HTML still carries a legacy fallback of 408,978 / 29. The served file is built in CI rather than committed, so there is no copy at the pin to compare." }, { "repo": "TaxonMech", @@ -113,7 +119,8 @@ "merged_prs": 18, "site": "https://culturebotai.github.io/TaxonMech/pages/index.html", "site_html_sha256": "53aab681e40bafb9326b320858660a4273c7df8b9a19ad561d4730b5b32c6a89", - "notes": "625,960 data/taxa records at the pin, equal to the stat tile and including 14 retained DEPRECATED records; none is REVIEWED. The live page is byte-identical to pages/index.html at the pin." + "site_html_sha256_at_pin": "53aab681e40bafb9326b320858660a4273c7df8b9a19ad561d4730b5b32c6a89", + "notes": "625,960 data/taxa records at the pin, equal to the stat tile and including 14 retained DEPRECATED records; none is REVIEWED. The live index.html is byte-identical to pages/index.html at the pin." }, { "repo": "TraitMech", @@ -123,9 +130,10 @@ "card_records": 763, "merged_prs": 656, "site": "https://culturebotai.github.io/TraitMech/pages/index.html", - "site_html_sha256": "7144c4bcfe0c88987fa504ecfee56094401cc7be5c8c749d3eeb797dd3dbcf3c", - "notes": "763 data/traits records at the pin (427 REVIEWED, 248 PROPOSED, 50 DEPRECATED, 38 SEEDED; 519 with causal graphs), equal to the landing page, which shows 62.5% embedded (477 of 763). The live page is byte-identical to pages/index.html at the pin. The site moved past the pin during the refresh and showed 764 when this audit was written; the card keeps the pinned figure, 763.", - "site_figure_at_check": 764 + "site_html_sha256": "643c043069d913f8f2ea4dfec41c4faefdcd1ce569a2b45e87e16b3e4b154597", + "site_html_sha256_at_pin": "e36417a4650c1e05cdee1bcc750082c1541c57530c5bb60d795a6c3eb061120b", + "notes": "763 data/traits records at the pin (427 REVIEWED, 248 PROPOSED, 50 DEPRECATED, 38 SEEDED; 519 with causal graphs), equal to the landing page, which shows 62.5% embedded (477 of 763). The live index.html had moved past the pin when this audit was written; site_html_sha256 is the live copy and site_html_sha256_at_pin is pages/index.html at the pin. The site moved past the pin during the refresh and showed 767 when this audit was written; the card keeps the pinned figure, 763.", + "site_figure_at_check": 767 } ] } From 102f461947d0909a3d9c7ea8d95cce15dc9f8401 Mon Sep 17 00:00:00 2001 From: "marcin p. joachimiak" <4625870+realmarcin@users.noreply.github.com> Date: Fri, 25 Sep 2026 00:16:29 -0700 Subject: [PATCH 07/16] Complete the cross-reference arrows, and measure TaxonMech in the census The graph drew only two arrows at TaxonMech and none leaving it, although taxa tie it to most of the fleet. Two separate gaps. Direct references. The earlier audit searched records, schemas, docs and READMEs; this sweep also read ingest scripts, vendored snapshots, source catalogues, CI workflows and site generators in all ten repositories at the pins, and an independent verifier checked each of 32 candidate pairs. Both lists now hold the 29 confirmed arrows, one per ordered pair: - 16 new, including TaxonMech's scope hand-offs to TraitMech, HabitatMech and CultureMech (its curation rules leave traits, habitats and media to them) and the write gate it ported from CellStructureMech; - the reverse directions that also exist: CommunityMech records cite CultureMech media and MediaIngredientMech ingredients, and NaturalProductMech defers antimicrobial mechanism to AntibioticMech; - adopted practices, e.g. ProteinTraitsMech's merge rule from MediaIngredientMech and AntibioticMech's site generator from HabitatMech; - the 13 kept arrows carry the verifiers' wording, and HabitatMech to CultureMech is removed: HabitatMech grounds that concept itself and hands nothing over. Taxon identity. Most species and strains the other Mechs cite are TaxonMech records, but that is a shared identifier, which the page draws as vocabulary chords, and TaxonMech had never been scanned (#87). It now is: a census row, eight NCBITaxon overlaps (ProteinTraitsMech 7,444 shared taxa, HabitatMech 6,423, NaturalProductMech 1,708, CommunityMech 1,167 with GTDB, TraitMech 274, CellStructureMech 124, AntibioticMech 109, CultureMech 54), and record links to taxon.html?id=. build_subsets.py scans ProteinTraitsMech and TaxonMech last, keeping only terms another Mech cites; the proteins keep every taxon, so their overlap with TaxonMech is exact. The census-coverage wording is one token that reads "all ten Mechs" now. Other rows are unchanged; TaxonMech's labels improve taxon labels across the overlaps. Record-subset assets grow to about 10.5 MB; the two largest overlap files (2.3 and 1.8 MB) load only on click. Rendered in a browser: 29 arrows, 8 TaxonMech chords, no console errors. Closes #87. Co-Authored-By: Claude Opus 5.5 (1M context) --- _fleet/README.md | 36 ++-- _fleet/data/fleet_data.json | 2 +- _fleet/data/prefix_census.json | 13 +- _fleet/data/subsets_summary.json | 168 +++++++++++++++++- _fleet/fleet_fragment.html | 47 +++-- _fleet/mechs_template.md | 45 +++-- assets/fleet/cells/TaxonMech--GTDB.json | 1 + assets/fleet/cells/TaxonMech--NCBITaxon.json | 1 + .../edges/AntibioticMech--TaxonMech.json | 1 + .../CellStructureMech--ProteinTraitsMech.json | 2 +- .../edges/CellStructureMech--TaxonMech.json | 1 + .../CommunityMech--CellStructureMech.json | 2 +- .../CommunityMech--NaturalProductMech.json | 2 +- .../CommunityMech--ProteinTraitsMech.json | 2 +- .../fleet/edges/CommunityMech--TaxonMech.json | 1 + .../fleet/edges/CultureMech--TaxonMech.json | 1 + .../edges/HabitatMech--CellStructureMech.json | 2 +- .../edges/HabitatMech--CommunityMech.json | 2 +- .../HabitatMech--NaturalProductMech.json | 2 +- .../edges/HabitatMech--ProteinTraitsMech.json | 2 +- .../fleet/edges/HabitatMech--TaxonMech.json | 1 + .../fleet/edges/HabitatMech--TraitMech.json | 2 +- .../NaturalProductMech--AntibioticMech.json | 2 +- .../edges/NaturalProductMech--TaxonMech.json | 1 + .../ProteinTraitsMech--AntibioticMech.json | 2 +- ...ProteinTraitsMech--NaturalProductMech.json | 2 +- .../edges/ProteinTraitsMech--TaxonMech.json | 1 + .../edges/TraitMech--ProteinTraitsMech.json | 2 +- assets/fleet/edges/TraitMech--TaxonMech.json | 1 + mechs.md | 96 ++++++---- scripts/fleet/assemble_page.py | 5 +- scripts/fleet/build_subsets.py | 19 +- scripts/fleet/mech_stats.py | 2 +- scripts/fleet/roots.py | 4 + tests/test_fleet_page.py | 4 +- 35 files changed, 375 insertions(+), 102 deletions(-) create mode 100644 assets/fleet/cells/TaxonMech--GTDB.json create mode 100644 assets/fleet/cells/TaxonMech--NCBITaxon.json create mode 100644 assets/fleet/edges/AntibioticMech--TaxonMech.json create mode 100644 assets/fleet/edges/CellStructureMech--TaxonMech.json create mode 100644 assets/fleet/edges/CommunityMech--TaxonMech.json create mode 100644 assets/fleet/edges/CultureMech--TaxonMech.json create mode 100644 assets/fleet/edges/HabitatMech--TaxonMech.json create mode 100644 assets/fleet/edges/NaturalProductMech--TaxonMech.json create mode 100644 assets/fleet/edges/ProteinTraitsMech--TaxonMech.json create mode 100644 assets/fleet/edges/TraitMech--TaxonMech.json diff --git a/_fleet/README.md b/_fleet/README.md index 1466ce6..fc68586 100644 --- a/_fleet/README.md +++ b/_fleet/README.md @@ -56,12 +56,22 @@ python3 scripts/fleet/assemble_page.py --check ## Vocabulary census updates -Membership updates do not require rescanning the record corpora. The current -September 2026 vocabulary census covers nine Mechs; TaxonMech is shown in the -graph and cards with its published 625,960-taxon total (checked September 24, 2026), but its vocabulary counts have not -been measured by this pipeline. The heatmap uses the measured `fleet_data.json` -order, and the page states this limitation. Add TaxonMech to the census roots -and scanners before publishing measured vocabulary cells or overlap counts for it. +Membership updates do not require rescanning the record corpora. The September +2026 vocabulary census covers all ten Mechs. TaxonMech joined it in #87: its +625,960 records are species-level and infraspecific taxa keyed by NCBI Taxonomy +id, each carrying its lineage, so a higher taxon is counted once per record +under it and TaxonMech's NCBITaxon cell dwarfs everyone else's. Its overlaps are +what tie taxa to the rest of the fleet: most taxa that ProteinTraitsMech, +HabitatMech, NaturalProductMech, CommunityMech, TraitMech, AntibioticMech, +CellStructureMech and CultureMech cite are TaxonMech records. A new member +needs a record glob in `roots.py` and a link route in `build_subsets.py` before +its vocabulary can be measured. + +`build_subsets.py` scans ProteinTraitsMech and TaxonMech last and keeps only +terms another Mech also cites, which is all an overlap needs. The proteins also +keep every taxon they cite, so their overlap with TaxonMech is exact. TaxonMech +record links use `pages/taxon.html?id=`, which renders every taxon; +the files under `pages/taxa/` are redirects kept for old URLs. Pipeline (from the site root, with the Mech checkouts available locally): @@ -85,20 +95,20 @@ python3 scripts/fleet/mech_stats.py # _fleet/data/mech_stats.json (needs g python3 scripts/fleet/assemble_page.py # mechs.md ``` -The two scanning passes take about two minutes each, dominated by -ProteinTraitsMech's ~430k records. +The census takes about eight minutes and `build_subsets.py` longer, dominated by +TaxonMech's ~626k and ProteinTraitsMech's ~430k records. Jekyll ignores `_fleet/` (leading underscore) and `scripts/` is excluded in `_config.yml`. Record links resolve to each Mech's published page where one exists (TraitMech, -CellStructureMech, AntibioticMech, HabitatMech, CommunityMech, ProteinTraitsMech -hash routes) and to the record's source file on GitHub for CultureMech, +CellStructureMech, AntibioticMech, HabitatMech, CommunityMech, TaxonMech's +taxon.html route, ProteinTraitsMech hash routes) and to the record's source file on GitHub for CultureMech, MediaIngredientMech and NaturalProductMech in the existing census indexes, although CultureMech (`pages/media/`) and NaturalProductMech (`pages//`) now publish per-record pages. CommunityMech's four `data/isolates` records have no published page, so they get no record link and are left out of the record lists and overlaps; the census still counts them. -NaturalProductMech and TaxonMech both publish browse sites linked from their -cards; these links are separate from the historical census's record-link routes. +TaxonMech's record links open its taxon pages. NaturalProductMech's browse site +is linked from its card; the census still links its records to GitHub (#149). MIBiG and NPAtlas are carried through the whole pipeline alongside the ontologies, because they are how NaturalProductMech cites its corpus. MIBiG is a @@ -163,7 +173,7 @@ execution and disabled cross-repository apply modes. Capability adoption must not be described as proof that those workflows execute unattended. The vocabulary census and overlap assets were rescanned at the same pinned -revisions for the nine measured Mechs; TaxonMech remains outside the census. +revisions, and TaxonMech was added to it (#87). The previous census's ProteinTraitsMech counts had been read from a checkout with uncommitted files: it reported 770,276 UniProt references where the revision the September 20 audit pinned (`700b6f7`) holds 657,598. The rescan's diff --git a/_fleet/data/fleet_data.json b/_fleet/data/fleet_data.json index 05f26d0..a1ce33a 100644 --- a/_fleet/data/fleet_data.json +++ b/_fleet/data/fleet_data.json @@ -1 +1 @@ -{"order":["HabitatMech","CommunityMech","TraitMech","CellStructureMech","ProteinTraitsMech","NaturalProductMech","AntibioticMech","MediaIngredientMech","CultureMech"],"voc":["NCBITaxon","CHEBI","GO","UniProt","ENVO","UBERON","InterPro","PDB","CAS","METPO","KEGG","FOODON","PATO","Pfam","RHEA","ARO","BTO","MIBiG","NPAtlas","GTDB","PMID","DOI"],"heat":{"HabitatMech":{"CHEBI":24,"NCBITaxon":13227,"GO":7,"ENVO":3368,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":4,"UBERON":1123,"FOODON":198,"BTO":1367,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":516,"DOI":116},"CommunityMech":{"CHEBI":2971,"NCBITaxon":4253,"GO":1537,"ENVO":538,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":10,"FOODON":0,"BTO":0,"GTDB":2037,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":7320,"DOI":1223},"TraitMech":{"CHEBI":673,"NCBITaxon":996,"GO":886,"ENVO":22,"METPO":3617,"ARO":0,"UniProt":399,"InterPro":115,"Pfam":0,"RHEA":0,"PDB":0,"PATO":99,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":621,"DOI":7190},"CellStructureMech":{"CHEBI":65,"NCBITaxon":1438,"GO":11688,"ENVO":0,"METPO":14,"ARO":0,"UniProt":337,"InterPro":206,"Pfam":22,"RHEA":0,"PDB":277,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":698,"DOI":6636},"ProteinTraitsMech":{"CHEBI":374424,"NCBITaxon":358320,"GO":421586,"ENVO":0,"METPO":244,"ARO":397717,"UniProt":658574,"InterPro":1480044,"Pfam":521966,"RHEA":613456,"PDB":235957,"PATO":124,"UBERON":43,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":245,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":657527,"DOI":193845},"NaturalProductMech":{"CHEBI":1659,"NCBITaxon":13960,"GO":0,"ENVO":0,"METPO":0,"ARO":0,"UniProt":613,"InterPro":0,"Pfam":0,"RHEA":14,"PDB":0,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":10133,"NPAtlas":1756,"PMID":5703,"DOI":8437},"AntibioticMech":{"CHEBI":22104,"NCBITaxon":1085,"GO":3,"ENVO":0,"METPO":0,"ARO":16653,"UniProt":278,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":6,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":1823,"MIBiG":0,"NPAtlas":0,"PMID":1207,"DOI":216},"MediaIngredientMech":{"CHEBI":8220,"NCBITaxon":1,"GO":0,"ENVO":110,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":23,"FOODON":273,"BTO":3,"GTDB":0,"KEGG":61,"CAS":727,"MIBiG":0,"NPAtlas":0,"PMID":29,"DOI":9},"CultureMech":{"CHEBI":160678,"NCBITaxon":63,"GO":0,"ENVO":13,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":138,"FOODON":223,"BTO":0,"GTDB":0,"KEGG":1406,"CAS":1,"MIBiG":0,"NPAtlas":0,"PMID":68,"DOI":76}},"cells":{"HabitatMech--BTO":587,"HabitatMech--CHEBI":11,"HabitatMech--ENVO":1296,"HabitatMech--FOODON":85,"HabitatMech--GO":2,"HabitatMech--NCBITaxon":896,"HabitatMech--PATO":3,"HabitatMech--UBERON":704,"CommunityMech--CHEBI":357,"CommunityMech--ENVO":408,"CommunityMech--GO":394,"CommunityMech--GTDB":367,"CommunityMech--NCBITaxon":422,"CommunityMech--UBERON":10,"TraitMech--CHEBI":183,"TraitMech--ENVO":14,"TraitMech--GO":292,"TraitMech--InterPro":61,"TraitMech--METPO":749,"TraitMech--NCBITaxon":484,"TraitMech--PATO":49,"TraitMech--UniProt":182,"CellStructureMech--CHEBI":24,"CellStructureMech--GO":535,"CellStructureMech--InterPro":33,"CellStructureMech--METPO":5,"CellStructureMech--NCBITaxon":531,"CellStructureMech--PDB":19,"CellStructureMech--Pfam":8,"CellStructureMech--UniProt":65,"ProteinTraitsMech--ARO":7452,"ProteinTraitsMech--CHEBI":30122,"ProteinTraitsMech--GO":110744,"ProteinTraitsMech--InterPro":120090,"ProteinTraitsMech--KEGG":231,"ProteinTraitsMech--METPO":119,"ProteinTraitsMech--NCBITaxon":98697,"ProteinTraitsMech--PATO":81,"ProteinTraitsMech--PDB":51718,"ProteinTraitsMech--Pfam":107455,"ProteinTraitsMech--RHEA":29550,"ProteinTraitsMech--UBERON":43,"ProteinTraitsMech--UniProt":159595,"NaturalProductMech--CHEBI":405,"NaturalProductMech--MIBiG":3115,"NaturalProductMech--NCBITaxon":3115,"NaturalProductMech--NPAtlas":1740,"NaturalProductMech--RHEA":1,"NaturalProductMech--UniProt":102,"AntibioticMech--ARO":568,"AntibioticMech--CAS":1797,"AntibioticMech--CHEBI":2814,"AntibioticMech--GO":3,"AntibioticMech--NCBITaxon":163,"AntibioticMech--PDB":5,"AntibioticMech--UniProt":47,"MediaIngredientMech--BTO":1,"MediaIngredientMech--CAS":287,"MediaIngredientMech--CHEBI":2232,"MediaIngredientMech--ENVO":26,"MediaIngredientMech--FOODON":99,"MediaIngredientMech--KEGG":58,"MediaIngredientMech--NCBITaxon":1,"MediaIngredientMech--UBERON":10,"CultureMech--CAS":1,"CultureMech--CHEBI":6125,"CultureMech--ENVO":12,"CultureMech--FOODON":203,"CultureMech--KEGG":329,"CultureMech--NCBITaxon":30,"CultureMech--UBERON":72},"vocab_edges":[{"a":"HabitatMech","b":"CommunityMech","n":313,"by":{"NCBITaxon":265,"ENVO":42,"UBERON":4,"CHEBI":2},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"ENVO:00001998","label":"soil"},{"id":"ENVO:01001001","label":"plant-associated environment"}]},{"a":"HabitatMech","b":"TraitMech","n":122,"by":{"NCBITaxon":115,"ENVO":4,"PATO":2,"CHEBI":1},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"HabitatMech","b":"CellStructureMech","n":41,"by":{"NCBITaxon":41},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1117","label":"Cyanobacteriota"}]},{"a":"HabitatMech","b":"ProteinTraitsMech","n":1250,"by":{"NCBITaxon":1234,"UBERON":12,"CHEBI":2,"GO":2},"ex":[{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1869227","label":"bacterium"}]},{"a":"HabitatMech","b":"NaturalProductMech","n":312,"by":{"NCBITaxon":312},"ex":[{"id":"NCBITaxon:56","label":"Sorangium cellulosum"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1931","label":"Streptomyces sp."}]},{"a":"HabitatMech","b":"AntibioticMech","n":32,"by":{"NCBITaxon":32},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:573","label":"Klebsiella pneumoniae"}]},{"a":"HabitatMech","b":"MediaIngredientMech","n":22,"by":{"ENVO":15,"UBERON":4,"CHEBI":3},"ex":[{"id":"ENVO:00002149","label":"sea water"},{"id":"ENVO:00001998","label":"soil"},{"id":"ENVO:00002263","label":"garden soil"}]},{"a":"HabitatMech","b":"CultureMech","n":25,"by":{"NCBITaxon":13,"ENVO":7,"UBERON":4,"FOODON":1},"ex":[{"id":"UBERON:0000948","label":"heart"},{"id":"UBERON:0000955","label":"brain"},{"id":"UBERON:0000178","label":"blood"}]},{"a":"CommunityMech","b":"TraitMech","n":157,"by":{"CHEBI":61,"NCBITaxon":61,"GO":35},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:15379","label":"dioxygen"},{"id":"GO:0015977","label":"carbon fixation"}]},{"a":"CommunityMech","b":"CellStructureMech","n":60,"by":{"NCBITaxon":36,"CHEBI":13,"GO":11},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:2157","label":"Archaea"},{"id":"NCBITaxon:562","label":"Escherichia coli"}]},{"a":"CommunityMech","b":"ProteinTraitsMech","n":689,"by":{"CHEBI":276,"NCBITaxon":226,"GO":186,"UBERON":1},"ex":[{"id":"CHEBI:30089","label":"acetate"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"GO:0015979","label":"photosynthesis"}]},{"a":"CommunityMech","b":"NaturalProductMech","n":128,"by":{"NCBITaxon":123,"CHEBI":5},"ex":[{"id":"NCBITaxon:286","label":"Pseudomonas"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:562","label":"Escherichia coli"}]},{"a":"CommunityMech","b":"AntibioticMech","n":63,"by":{"CHEBI":42,"NCBITaxon":21},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"},{"id":"CHEBI:33709","label":"amino acid"}]},{"a":"CommunityMech","b":"MediaIngredientMech","n":240,"by":{"CHEBI":238,"ENVO":2},"ex":[{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:33709","label":"amino acid"},{"id":"CHEBI:3312","label":"calcium dichloride"}]},{"a":"CommunityMech","b":"CultureMech","n":151,"by":{"CHEBI":138,"NCBITaxon":8,"ENVO":5},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:30089","label":"acetate"}]},{"a":"TraitMech","b":"CellStructureMech","n":114,"by":{"GO":53,"NCBITaxon":40,"CHEBI":7,"UniProt":6,"METPO":5,"InterPro":3},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:83333","label":"Escherichia coli (strain K12)"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"}]},{"a":"TraitMech","b":"ProteinTraitsMech","n":707,"by":{"GO":248,"NCBITaxon":136,"METPO":111,"CHEBI":109,"UniProt":56,"InterPro":47},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"METPO:1000631","label":"trophic type"}]},{"a":"TraitMech","b":"NaturalProductMech","n":57,"by":{"NCBITaxon":53,"CHEBI":4},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"TraitMech","b":"AntibioticMech","n":31,"by":{"NCBITaxon":21,"CHEBI":10},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"TraitMech","b":"MediaIngredientMech","n":59,"by":{"CHEBI":59},"ex":[{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:16526","label":"carbon dioxide"}]},{"a":"TraitMech","b":"CultureMech","n":36,"by":{"CHEBI":26,"NCBITaxon":10},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:17234","label":"glucose"}]},{"a":"CellStructureMech","b":"ProteinTraitsMech","n":1058,"by":{"GO":737,"UniProt":155,"NCBITaxon":77,"InterPro":64,"CHEBI":15,"Pfam":10},"ex":[{"id":"GO:0032991","label":"protein-containing complex"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:3055","label":"Chlamydomonas reinhardtii"}]},{"a":"CellStructureMech","b":"NaturalProductMech","n":23,"by":{"NCBITaxon":23},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:9606","label":"Homo sapiens"}]},{"a":"CellStructureMech","b":"AntibioticMech","n":18,"by":{"NCBITaxon":13,"CHEBI":5},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:4932","label":"Saccharomyces cerevisiae"},{"id":"NCBITaxon:90371","label":"Salmonella enterica subsp. enterica serovar Typhimurium"}]},{"a":"CellStructureMech","b":"MediaIngredientMech","n":14,"by":{"CHEBI":14},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:17029","label":"chitin"},{"id":"CHEBI:33403","label":"elemental sulfur"}]},{"a":"CellStructureMech","b":"CultureMech","n":7,"by":{"CHEBI":4,"NCBITaxon":3},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:16261","label":"chitosan"},{"id":"CHEBI:33403","label":"elemental sulfur"}]},{"a":"ProteinTraitsMech","b":"NaturalProductMech","n":794,"by":{"NCBITaxon":487,"UniProt":156,"CHEBI":148,"RHEA":3},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:100226","label":"Streptomyces coelicolor A3(2)"},{"id":"NCBITaxon:227321","label":"Emericella nidulans (strain FGSC A4 / ATCC 38163 / CBS 112.46 / NRRL 194 / M139)"}]},{"a":"ProteinTraitsMech","b":"AntibioticMech","n":2435,"by":{"ARO":1740,"CHEBI":594,"NCBITaxon":79,"UniProt":20,"GO":2},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:573","label":"Klebsiella pneumoniae"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"}]},{"a":"ProteinTraitsMech","b":"MediaIngredientMech","n":798,"by":{"CHEBI":797,"UBERON":1},"ex":[{"id":"CHEBI:15377","label":"water"},{"id":"CHEBI:15740","label":"formate"},{"id":"CHEBI:33709","label":"amino acid"}]},{"a":"ProteinTraitsMech","b":"CultureMech","n":233,"by":{"CHEBI":221,"NCBITaxon":10,"UBERON":2},"ex":[{"id":"CHEBI:15377","label":"water"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:17754","label":"glycerol"}]},{"a":"NaturalProductMech","b":"AntibioticMech","n":278,"by":{"CHEBI":180,"NCBITaxon":96,"UniProt":2},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"},{"id":"NCBITaxon:330879","label":"Aspergillus fumigatus (strain ATCC MYA-4609 / CBS 101355 / FGSC A1100 / Af293)"}]},{"a":"NaturalProductMech","b":"MediaIngredientMech","n":51,"by":{"CHEBI":51},"ex":[{"id":"CHEBI:15956","label":"biotin"},{"id":"CHEBI:16349","label":"L-citrulline"},{"id":"CHEBI:27592","label":"ectoine"}]},{"a":"NaturalProductMech","b":"CultureMech","n":5,"by":{"CHEBI":3,"NCBITaxon":2},"ex":[{"id":"CHEBI:15956","label":"biotin"},{"id":"CHEBI:16349","label":"L-citrulline"},{"id":"CHEBI:27592","label":"ectoine"}]},{"a":"AntibioticMech","b":"MediaIngredientMech","n":324,"by":{"CHEBI":324},"ex":[{"id":"CHEBI:33709","label":"amino acid"},{"id":"CHEBI:30746","label":"benzoic acid"},{"id":"CHEBI:17334","label":"penicillin"}]},{"a":"AntibioticMech","b":"CultureMech","n":29,"by":{"CHEBI":29},"ex":[{"id":"CHEBI:17334","label":"penicillin"},{"id":"CHEBI:48923","label":"erythromycin"},{"id":"CHEBI:30746","label":"benzoic acid"}]},{"a":"MediaIngredientMech","b":"CultureMech","n":612,"by":{"CHEBI":545,"KEGG":56,"FOODON":6,"UBERON":3,"CAS":1,"ENVO":1},"ex":[{"id":"FOODON:03315426","label":"yeast extract"},{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:2509","label":"agar"}]}]} \ No newline at end of file +{"order":["HabitatMech","CommunityMech","TraitMech","CellStructureMech","ProteinTraitsMech","NaturalProductMech","AntibioticMech","MediaIngredientMech","CultureMech","TaxonMech"],"voc":["NCBITaxon","CHEBI","GO","UniProt","ENVO","UBERON","InterPro","PDB","CAS","METPO","KEGG","FOODON","PATO","GTDB","Pfam","RHEA","ARO","BTO","MIBiG","NPAtlas","PMID","DOI"],"heat":{"HabitatMech":{"CHEBI":24,"NCBITaxon":13227,"GO":7,"ENVO":3368,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":4,"UBERON":1123,"FOODON":198,"BTO":1367,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":516,"DOI":116},"CommunityMech":{"CHEBI":2971,"NCBITaxon":4253,"GO":1537,"ENVO":538,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":10,"FOODON":0,"BTO":0,"GTDB":2037,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":7320,"DOI":1223},"TraitMech":{"CHEBI":673,"NCBITaxon":996,"GO":886,"ENVO":22,"METPO":3617,"ARO":0,"UniProt":399,"InterPro":115,"Pfam":0,"RHEA":0,"PDB":0,"PATO":99,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":621,"DOI":7190},"CellStructureMech":{"CHEBI":65,"NCBITaxon":1438,"GO":11688,"ENVO":0,"METPO":14,"ARO":0,"UniProt":337,"InterPro":206,"Pfam":22,"RHEA":0,"PDB":277,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":698,"DOI":6636},"ProteinTraitsMech":{"CHEBI":374424,"NCBITaxon":358320,"GO":421586,"ENVO":0,"METPO":244,"ARO":397717,"UniProt":658574,"InterPro":1480044,"Pfam":521966,"RHEA":613456,"PDB":235957,"PATO":124,"UBERON":43,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":245,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":657527,"DOI":193845},"NaturalProductMech":{"CHEBI":1659,"NCBITaxon":13960,"GO":0,"ENVO":0,"METPO":0,"ARO":0,"UniProt":613,"InterPro":0,"Pfam":0,"RHEA":14,"PDB":0,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":10133,"NPAtlas":1756,"PMID":5703,"DOI":8437},"AntibioticMech":{"CHEBI":22104,"NCBITaxon":1085,"GO":3,"ENVO":0,"METPO":0,"ARO":16653,"UniProt":278,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":6,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":1823,"MIBiG":0,"NPAtlas":0,"PMID":1207,"DOI":216},"MediaIngredientMech":{"CHEBI":8220,"NCBITaxon":1,"GO":0,"ENVO":110,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":23,"FOODON":273,"BTO":3,"GTDB":0,"KEGG":61,"CAS":727,"MIBiG":0,"NPAtlas":0,"PMID":29,"DOI":9},"CultureMech":{"CHEBI":160678,"NCBITaxon":63,"GO":0,"ENVO":13,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":138,"FOODON":223,"BTO":0,"GTDB":0,"KEGG":1406,"CAS":1,"MIBiG":0,"NPAtlas":0,"PMID":68,"DOI":76},"TaxonMech":{"CHEBI":0,"NCBITaxon":9250364,"GO":0,"ENVO":0,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":648112,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":20558,"DOI":402247}},"cells":{"HabitatMech--BTO":587,"HabitatMech--CHEBI":11,"HabitatMech--ENVO":1296,"HabitatMech--FOODON":85,"HabitatMech--GO":2,"HabitatMech--NCBITaxon":896,"HabitatMech--PATO":3,"HabitatMech--UBERON":704,"CommunityMech--CHEBI":357,"CommunityMech--ENVO":408,"CommunityMech--GO":394,"CommunityMech--GTDB":367,"CommunityMech--NCBITaxon":422,"CommunityMech--UBERON":10,"TraitMech--CHEBI":183,"TraitMech--ENVO":14,"TraitMech--GO":292,"TraitMech--InterPro":61,"TraitMech--METPO":749,"TraitMech--NCBITaxon":484,"TraitMech--PATO":49,"TraitMech--UniProt":182,"CellStructureMech--CHEBI":24,"CellStructureMech--GO":535,"CellStructureMech--InterPro":33,"CellStructureMech--METPO":5,"CellStructureMech--NCBITaxon":531,"CellStructureMech--PDB":19,"CellStructureMech--Pfam":8,"CellStructureMech--UniProt":65,"ProteinTraitsMech--ARO":7452,"ProteinTraitsMech--CHEBI":30122,"ProteinTraitsMech--GO":110744,"ProteinTraitsMech--InterPro":120090,"ProteinTraitsMech--KEGG":231,"ProteinTraitsMech--METPO":119,"ProteinTraitsMech--NCBITaxon":98697,"ProteinTraitsMech--PATO":81,"ProteinTraitsMech--PDB":51718,"ProteinTraitsMech--Pfam":107455,"ProteinTraitsMech--RHEA":29550,"ProteinTraitsMech--UBERON":43,"ProteinTraitsMech--UniProt":159595,"NaturalProductMech--CHEBI":405,"NaturalProductMech--MIBiG":3115,"NaturalProductMech--NCBITaxon":3115,"NaturalProductMech--NPAtlas":1740,"NaturalProductMech--RHEA":1,"NaturalProductMech--UniProt":102,"AntibioticMech--ARO":568,"AntibioticMech--CAS":1797,"AntibioticMech--CHEBI":2814,"AntibioticMech--GO":3,"AntibioticMech--NCBITaxon":163,"AntibioticMech--PDB":5,"AntibioticMech--UniProt":47,"MediaIngredientMech--BTO":1,"MediaIngredientMech--CAS":287,"MediaIngredientMech--CHEBI":2232,"MediaIngredientMech--ENVO":26,"MediaIngredientMech--FOODON":99,"MediaIngredientMech--KEGG":58,"MediaIngredientMech--NCBITaxon":1,"MediaIngredientMech--UBERON":10,"CultureMech--CAS":1,"CultureMech--CHEBI":6125,"CultureMech--ENVO":12,"CultureMech--FOODON":203,"CultureMech--KEGG":329,"CultureMech--NCBITaxon":30,"CultureMech--UBERON":72,"TaxonMech--GTDB":118801,"TaxonMech--NCBITaxon":625960},"vocab_edges":[{"a":"HabitatMech","b":"CommunityMech","n":313,"by":{"NCBITaxon":265,"ENVO":42,"UBERON":4,"CHEBI":2},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"ENVO:00001998","label":"soil"},{"id":"ENVO:01001001","label":"plant-associated environment"}]},{"a":"HabitatMech","b":"TraitMech","n":122,"by":{"NCBITaxon":115,"ENVO":4,"PATO":2,"CHEBI":1},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"HabitatMech","b":"CellStructureMech","n":41,"by":{"NCBITaxon":41},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1117","label":"Cyanobacteriota"}]},{"a":"HabitatMech","b":"ProteinTraitsMech","n":1250,"by":{"NCBITaxon":1234,"UBERON":12,"CHEBI":2,"GO":2},"ex":[{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1869227","label":"bacterium"}]},{"a":"HabitatMech","b":"NaturalProductMech","n":312,"by":{"NCBITaxon":312},"ex":[{"id":"NCBITaxon:56","label":"Sorangium cellulosum"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1931","label":"Streptomyces sp."}]},{"a":"HabitatMech","b":"AntibioticMech","n":32,"by":{"NCBITaxon":32},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:573","label":"Klebsiella pneumoniae"}]},{"a":"HabitatMech","b":"MediaIngredientMech","n":22,"by":{"ENVO":15,"UBERON":4,"CHEBI":3},"ex":[{"id":"ENVO:00002149","label":"sea water"},{"id":"ENVO:00001998","label":"soil"},{"id":"ENVO:00002263","label":"garden soil"}]},{"a":"HabitatMech","b":"CultureMech","n":25,"by":{"NCBITaxon":13,"ENVO":7,"UBERON":4,"FOODON":1},"ex":[{"id":"UBERON:0000948","label":"heart"},{"id":"UBERON:0000955","label":"brain"},{"id":"UBERON:0000178","label":"blood"}]},{"a":"HabitatMech","b":"TaxonMech","n":6423,"by":{"NCBITaxon":6423},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:562","label":"Escherichia coli"}]},{"a":"CommunityMech","b":"TraitMech","n":157,"by":{"CHEBI":61,"NCBITaxon":61,"GO":35},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:15379","label":"dioxygen"},{"id":"GO:0015977","label":"carbon fixation"}]},{"a":"CommunityMech","b":"CellStructureMech","n":60,"by":{"NCBITaxon":36,"CHEBI":13,"GO":11},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:2157","label":"Archaea"},{"id":"NCBITaxon:562","label":"Escherichia coli"}]},{"a":"CommunityMech","b":"ProteinTraitsMech","n":689,"by":{"CHEBI":276,"NCBITaxon":226,"GO":186,"UBERON":1},"ex":[{"id":"CHEBI:30089","label":"acetate"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"GO:0015979","label":"photosynthesis"}]},{"a":"CommunityMech","b":"NaturalProductMech","n":128,"by":{"NCBITaxon":123,"CHEBI":5},"ex":[{"id":"NCBITaxon:286","label":"Pseudomonas"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:562","label":"Escherichia coli"}]},{"a":"CommunityMech","b":"AntibioticMech","n":63,"by":{"CHEBI":42,"NCBITaxon":21},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"},{"id":"CHEBI:33709","label":"amino acid"}]},{"a":"CommunityMech","b":"MediaIngredientMech","n":240,"by":{"CHEBI":238,"ENVO":2},"ex":[{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:33709","label":"amino acid"},{"id":"CHEBI:3312","label":"calcium dichloride"}]},{"a":"CommunityMech","b":"CultureMech","n":151,"by":{"CHEBI":138,"NCBITaxon":8,"ENVO":5},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:30089","label":"acetate"}]},{"a":"CommunityMech","b":"TaxonMech","n":1167,"by":{"NCBITaxon":784,"GTDB":383},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:286","label":"Pseudomonas"},{"id":"NCBITaxon:1386","label":"Bacillus"}]},{"a":"TraitMech","b":"CellStructureMech","n":114,"by":{"GO":53,"NCBITaxon":40,"CHEBI":7,"UniProt":6,"METPO":5,"InterPro":3},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:83333","label":"Escherichia coli (strain K12)"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"}]},{"a":"TraitMech","b":"ProteinTraitsMech","n":707,"by":{"GO":248,"NCBITaxon":136,"METPO":111,"CHEBI":109,"UniProt":56,"InterPro":47},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"METPO:1000631","label":"trophic type"}]},{"a":"TraitMech","b":"NaturalProductMech","n":57,"by":{"NCBITaxon":53,"CHEBI":4},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"TraitMech","b":"AntibioticMech","n":31,"by":{"NCBITaxon":21,"CHEBI":10},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"TraitMech","b":"MediaIngredientMech","n":59,"by":{"CHEBI":59},"ex":[{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:16526","label":"carbon dioxide"}]},{"a":"TraitMech","b":"CultureMech","n":36,"by":{"CHEBI":26,"NCBITaxon":10},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:17234","label":"glucose"}]},{"a":"TraitMech","b":"TaxonMech","n":274,"by":{"NCBITaxon":274},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:83333","label":"Escherichia coli (strain K12)"},{"id":"NCBITaxon:1358","label":"Lactococcus lactis"}]},{"a":"CellStructureMech","b":"ProteinTraitsMech","n":1058,"by":{"GO":737,"UniProt":155,"NCBITaxon":77,"InterPro":64,"CHEBI":15,"Pfam":10},"ex":[{"id":"GO:0032991","label":"protein-containing complex"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:3055","label":"Chlamydomonas reinhardtii"}]},{"a":"CellStructureMech","b":"NaturalProductMech","n":23,"by":{"NCBITaxon":23},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:9606","label":"Homo sapiens"}]},{"a":"CellStructureMech","b":"AntibioticMech","n":18,"by":{"NCBITaxon":13,"CHEBI":5},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:4932","label":"Saccharomyces cerevisiae"},{"id":"NCBITaxon:90371","label":"Salmonella enterica subsp. enterica serovar Typhimurium"}]},{"a":"CellStructureMech","b":"MediaIngredientMech","n":14,"by":{"CHEBI":14},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:17029","label":"chitin"},{"id":"CHEBI:33403","label":"elemental sulfur"}]},{"a":"CellStructureMech","b":"CultureMech","n":7,"by":{"CHEBI":4,"NCBITaxon":3},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:16261","label":"chitosan"},{"id":"CHEBI:33403","label":"elemental sulfur"}]},{"a":"CellStructureMech","b":"TaxonMech","n":124,"by":{"NCBITaxon":124},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:2759","label":"Eukaryota"},{"id":"NCBITaxon:2157","label":"Archaea"}]},{"a":"ProteinTraitsMech","b":"NaturalProductMech","n":794,"by":{"NCBITaxon":487,"UniProt":156,"CHEBI":148,"RHEA":3},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:100226","label":"Streptomyces coelicolor A3(2)"},{"id":"NCBITaxon:227321","label":"Emericella nidulans (strain FGSC A4 / ATCC 38163 / CBS 112.46 / NRRL 194 / M139)"}]},{"a":"ProteinTraitsMech","b":"AntibioticMech","n":2435,"by":{"ARO":1740,"CHEBI":594,"NCBITaxon":79,"UniProt":20,"GO":2},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:573","label":"Klebsiella pneumoniae"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"}]},{"a":"ProteinTraitsMech","b":"MediaIngredientMech","n":798,"by":{"CHEBI":797,"UBERON":1},"ex":[{"id":"CHEBI:15377","label":"water"},{"id":"CHEBI:15740","label":"formate"},{"id":"CHEBI:33709","label":"amino acid"}]},{"a":"ProteinTraitsMech","b":"CultureMech","n":233,"by":{"CHEBI":221,"NCBITaxon":10,"UBERON":2},"ex":[{"id":"CHEBI:15377","label":"water"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:17754","label":"glycerol"}]},{"a":"ProteinTraitsMech","b":"TaxonMech","n":7444,"by":{"NCBITaxon":7444},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:83334","label":"Escherichia coli O157:H7"},{"id":"NCBITaxon:623","label":"Shigella flexneri"}]},{"a":"NaturalProductMech","b":"AntibioticMech","n":278,"by":{"CHEBI":180,"NCBITaxon":96,"UniProt":2},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"},{"id":"NCBITaxon:330879","label":"Aspergillus fumigatus (strain ATCC MYA-4609 / CBS 101355 / FGSC A1100 / Af293)"}]},{"a":"NaturalProductMech","b":"MediaIngredientMech","n":51,"by":{"CHEBI":51},"ex":[{"id":"CHEBI:15956","label":"biotin"},{"id":"CHEBI:16349","label":"L-citrulline"},{"id":"CHEBI:27592","label":"ectoine"}]},{"a":"NaturalProductMech","b":"CultureMech","n":5,"by":{"CHEBI":3,"NCBITaxon":2},"ex":[{"id":"CHEBI:15956","label":"biotin"},{"id":"CHEBI:16349","label":"L-citrulline"},{"id":"CHEBI:27592","label":"ectoine"}]},{"a":"NaturalProductMech","b":"TaxonMech","n":1708,"by":{"NCBITaxon":1708},"ex":[{"id":"NCBITaxon:1883","label":"Streptomyces"},{"id":"NCBITaxon:1873","label":"Micromonospora"},{"id":"NCBITaxon:286","label":"Pseudomonas"}]},{"a":"AntibioticMech","b":"MediaIngredientMech","n":324,"by":{"CHEBI":324},"ex":[{"id":"CHEBI:33709","label":"amino acid"},{"id":"CHEBI:30746","label":"benzoic acid"},{"id":"CHEBI:17334","label":"penicillin"}]},{"a":"AntibioticMech","b":"CultureMech","n":29,"by":{"CHEBI":29},"ex":[{"id":"CHEBI:17334","label":"penicillin"},{"id":"CHEBI:48923","label":"erythromycin"},{"id":"CHEBI:30746","label":"benzoic acid"}]},{"a":"AntibioticMech","b":"TaxonMech","n":109,"by":{"NCBITaxon":109},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:573","label":"Klebsiella pneumoniae"},{"id":"NCBITaxon:470","label":"Acinetobacter baumannii"}]},{"a":"MediaIngredientMech","b":"CultureMech","n":612,"by":{"CHEBI":545,"KEGG":56,"FOODON":6,"UBERON":3,"CAS":1,"ENVO":1},"ex":[{"id":"FOODON:03315426","label":"yeast extract"},{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:2509","label":"agar"}]},{"a":"CultureMech","b":"TaxonMech","n":54,"by":{"NCBITaxon":54},"ex":[{"id":"NCBITaxon:210","label":"Helicobacter pylori"},{"id":"NCBITaxon:823","label":"Parabacteroides distasonis"},{"id":"NCBITaxon:851","label":"Fusobacterium nucleatum"}]}]} \ No newline at end of file diff --git a/_fleet/data/prefix_census.json b/_fleet/data/prefix_census.json index 5334110..abb7959 100644 --- a/_fleet/data/prefix_census.json +++ b/_fleet/data/prefix_census.json @@ -175,6 +175,16 @@ "CAS": 1 } }, + "TaxonMech": { + "files": 625960, + "prefixes": { + "NCBITaxon": 9250364, + "GTDB": 648112, + "DOI": 402247, + "PMID": 20558, + "ATCC": 8870 + } + }, "_as_of": "2026-09-24", "_revisions": { "HabitatMech": "b16e3099478a7ea55b82142836e9a118ae062cf6", @@ -185,6 +195,7 @@ "NaturalProductMech": "36662aa8fcdcac9d3ddf4acba0f430e39bc2da2e", "AntibioticMech": "66d68c2a8d99230ab729267e6cd8ae1051b85225", "MediaIngredientMech": "dfce1c9342ca7aec41b50d0f6db8adb950bb72fe", - "CultureMech": "faaf033b8c5386aaf2cb6f28fc527678d00cf83b" + "CultureMech": "faaf033b8c5386aaf2cb6f28fc527678d00cf83b", + "TaxonMech": "972fbd7b85a052c6b95bf1437f672168bd6d8970" } } \ No newline at end of file diff --git a/_fleet/data/subsets_summary.json b/_fleet/data/subsets_summary.json index de07631..339173e 100644 --- a/_fleet/data/subsets_summary.json +++ b/_fleet/data/subsets_summary.json @@ -8,7 +8,8 @@ "NaturalProductMech": "36662aa8fcdcac9d3ddf4acba0f430e39bc2da2e", "AntibioticMech": "66d68c2a8d99230ab729267e6cd8ae1051b85225", "MediaIngredientMech": "dfce1c9342ca7aec41b50d0f6db8adb950bb72fe", - "CultureMech": "faaf033b8c5386aaf2cb6f28fc527678d00cf83b" + "CultureMech": "faaf033b8c5386aaf2cb6f28fc527678d00cf83b", + "TaxonMech": "972fbd7b85a052c6b95bf1437f672168bd6d8970" }, "edges": { "HabitatMech|CommunityMech": { @@ -185,6 +186,26 @@ } ] }, + "HabitatMech|TaxonMech": { + "n": 6423, + "by": { + "NCBITaxon": 6423 + }, + "ex": [ + { + "id": "NCBITaxon:2", + "label": "Bacteria" + }, + { + "id": "NCBITaxon:1280", + "label": "Staphylococcus aureus" + }, + { + "id": "NCBITaxon:562", + "label": "Escherichia coli" + } + ] + }, "CommunityMech|TraitMech": { "n": 157, "by": { @@ -337,6 +358,27 @@ } ] }, + "CommunityMech|TaxonMech": { + "n": 1167, + "by": { + "NCBITaxon": 784, + "GTDB": 383 + }, + "ex": [ + { + "id": "NCBITaxon:2", + "label": "Bacteria" + }, + { + "id": "NCBITaxon:286", + "label": "Pseudomonas" + }, + { + "id": "NCBITaxon:1386", + "label": "Bacillus" + } + ] + }, "TraitMech|CellStructureMech": { "n": 114, "by": { @@ -470,6 +512,26 @@ } ] }, + "TraitMech|TaxonMech": { + "n": 274, + "by": { + "NCBITaxon": 274 + }, + "ex": [ + { + "id": "NCBITaxon:562", + "label": "Escherichia coli" + }, + { + "id": "NCBITaxon:83333", + "label": "Escherichia coli (strain K12)" + }, + { + "id": "NCBITaxon:1358", + "label": "Lactococcus lactis" + } + ] + }, "CellStructureMech|ProteinTraitsMech": { "n": 1058, "by": { @@ -577,6 +639,26 @@ } ] }, + "CellStructureMech|TaxonMech": { + "n": 124, + "by": { + "NCBITaxon": 124 + }, + "ex": [ + { + "id": "NCBITaxon:2", + "label": "Bacteria" + }, + { + "id": "NCBITaxon:2759", + "label": "Eukaryota" + }, + { + "id": "NCBITaxon:2157", + "label": "Archaea" + } + ] + }, "ProteinTraitsMech|NaturalProductMech": { "n": 794, "by": { @@ -667,6 +749,26 @@ } ] }, + "ProteinTraitsMech|TaxonMech": { + "n": 7444, + "by": { + "NCBITaxon": 7444 + }, + "ex": [ + { + "id": "NCBITaxon:562", + "label": "Escherichia coli" + }, + { + "id": "NCBITaxon:83334", + "label": "Escherichia coli O157:H7" + }, + { + "id": "NCBITaxon:623", + "label": "Shigella flexneri" + } + ] + }, "NaturalProductMech|AntibioticMech": { "n": 278, "by": { @@ -730,6 +832,26 @@ } ] }, + "NaturalProductMech|TaxonMech": { + "n": 1708, + "by": { + "NCBITaxon": 1708 + }, + "ex": [ + { + "id": "NCBITaxon:1883", + "label": "Streptomyces" + }, + { + "id": "NCBITaxon:1873", + "label": "Micromonospora" + }, + { + "id": "NCBITaxon:286", + "label": "Pseudomonas" + } + ] + }, "AntibioticMech|MediaIngredientMech": { "n": 324, "by": { @@ -770,6 +892,26 @@ } ] }, + "AntibioticMech|TaxonMech": { + "n": 109, + "by": { + "NCBITaxon": 109 + }, + "ex": [ + { + "id": "NCBITaxon:562", + "label": "Escherichia coli" + }, + { + "id": "NCBITaxon:573", + "label": "Klebsiella pneumoniae" + }, + { + "id": "NCBITaxon:470", + "label": "Acinetobacter baumannii" + } + ] + }, "MediaIngredientMech|CultureMech": { "n": 612, "by": { @@ -794,6 +936,26 @@ "label": "agar" } ] + }, + "CultureMech|TaxonMech": { + "n": 54, + "by": { + "NCBITaxon": 54 + }, + "ex": [ + { + "id": "NCBITaxon:210", + "label": "Helicobacter pylori" + }, + { + "id": "NCBITaxon:823", + "label": "Parabacteroides distasonis" + }, + { + "id": "NCBITaxon:851", + "label": "Fusobacterium nucleatum" + } + ] } }, "cells": { @@ -867,6 +1029,8 @@ "CultureMech|FOODON": 203, "CultureMech|KEGG": 329, "CultureMech|NCBITaxon": 30, - "CultureMech|UBERON": 72 + "CultureMech|UBERON": 72, + "TaxonMech|GTDB": 118801, + "TaxonMech|NCBITaxon": 625960 } } \ No newline at end of file diff --git a/_fleet/fleet_fragment.html b/_fleet/fleet_fragment.html index a11095f..05e1063 100644 --- a/_fleet/fleet_fragment.html +++ b/_fleet/fleet_fragment.html @@ -365,7 +365,7 @@

Shared vocabulary

-

This vocabulary census covers of the Mechs; TaxonMech is a fleet member whose vocabulary has not yet been measured, so it has no row. Counts are prefix occurrences in the canonical record directories (merged recipes for CultureMech, communities and isolate records for CommunityMech, habitat records for HabitatMech) as of . Columns are ordered by how many Mechs ground anything in each vocabulary, then by the total records citing it across the fleet; PMID and DOI sit at the right because every Mech cites literature. ChEBI binds the chemistry arm (media, ingredients, antibiotics, proteins); NCBITaxon and ENVO bind the organism arm (habitat, community, traits); GO and METPO bridge phenotype, structure and protein.

+

This vocabulary census covers . Counts are prefix occurrences in the canonical record directories (merged recipes for CultureMech, communities and isolate records for CommunityMech, habitat records for HabitatMech, species-level taxon records for TaxonMech, each carrying its lineage, so a higher taxon is counted once per record under it) as of . Columns are ordered by how many Mechs ground anything in each vocabulary, then by the total records citing it across the fleet; PMID and DOI sit at the right because every Mech cites literature. ChEBI binds the chemistry arm (media, ingredients, antibiotics, proteins); NCBITaxon and ENVO bind the organism arm (habitat, community, traits); GO and METPO bridge phenotype, structure and protein.

@@ -456,20 +456,35 @@

Shared vocabulary

// Directed cross-references between Mech records, schemas and curation practice. var XREFS = [ - { from: "CultureMech", to: "MediaIngredientMech", kind: "data", what: "Ingredient strings and occurrence counts inform scoped MIM curation; MIM records carry CultureMech:NNNNNN back-links by stable id.", ev: "MIM schema CultureMechReference; claw ingredient_curation_pipeline", url: "https://github.com/CultureBotAI/MediaIngredientMech/blob/main/src/mediaingredientmech/schema/mediaingredientmech.yaml" }, - { from: "MediaIngredientMech", to: "CultureMech", kind: "data", what: "Curated ChEBI/FOODON artifacts support scoped recipe updates; CultureMech vendors MIM's ingredient-role enums and consumes its label index.", ev: "CultureMech src/culturemech/schema/mim_roles.yaml", url: "https://github.com/CultureBotAI/CultureMech/blob/main/src/culturemech/schema/mim_roles.yaml" }, - { from: "CommunityMech", to: "CultureMech", kind: "data", what: "Community records name the medium they were grown in by CultureMech id (through culturemech_id); CultureMech imported media from CommunityMech with their community ids and backfilled recipe source environments through that link.", ev: "CommunityMech docs/cross_repo_linking.md; CultureMech scripts/import_from_communitymech.py, scripts/backfill_source_environment.py", url: "https://github.com/CultureBotAI/CommunityMech/blob/main/docs/cross_repo_linking.md" }, - { from: "CommunityMech", to: "MediaIngredientMech", kind: "data", what: "MIM imported CommunityMech's unmapped growth-media ingredient strings as MIM records (source communitymech-unmapped); CommunityMech's own MIM-id slots are marked vestigial, with chebi_term as the join.", ev: "MIM data/ingredients (communitymech-unmapped); CommunityMech schema GrowthMediaComponent, RelatedIngredient", url: "https://github.com/CultureBotAI/MediaIngredientMech/blob/main/docs/CURIE_STANDARD.md" }, - { from: "TraitMech", to: "CellStructureMech", kind: "data", what: "Structures list the phenotypes they confer as TraitMech / METPO terms; causal-graph node vocabulary is TraitMech's plus STRUCTURE.", ev: "CellStructureMech schema associated_traits", url: "https://github.com/CultureBotAI/CellStructureMech/blob/main/src/cellstructuremech/schema/cellstructuremech.yaml" }, - { from: "CellStructureMech", to: "ProteinTraitsMech", kind: "schema", what: "A single protein is a component, not a record: it grounds to InterPro / UniProtKB and hands off to ProteinTraitsMech.", ev: "CellStructureMech docs/CURATION.md", url: "https://github.com/CultureBotAI/CellStructureMech/blob/main/docs/CURATION.md" }, - { from: "TraitMech", to: "HabitatMech", kind: "schema", what: "Habitat causal graphs reuse most of TraitMech's node vocabulary so graphs stay comparable; a node may be a TraitMech or METPO term.", ev: "HabitatMech schema CausalNode", url: "https://github.com/CultureBotAI/HabitatMech/blob/main/src/habitatmech/schema/habitatmech.yaml" }, - { from: "HabitatMech", to: "CultureMech", kind: "practice", what: "HabitatMech grounds GOLD's culture-media habitat to BTO:0000316 culture medium; the curation decision points to CultureMech for related curation.", ev: "HabitatMech curation/decisions.tsv", url: "https://github.com/CultureBotAI/HabitatMech/blob/main/curation/decisions.tsv" }, - { from: "HabitatMech", to: "TaxonMech", kind: "schema", what: "TaxonMech's schema lets a habitat node in a causal graph be a HabitatMech or ENVO term and declares the habitatmech: prefix; no TaxonMech record has a causal graph yet.", ev: "TaxonMech schema CausalNodeTypeEnum and prefixes", url: "https://github.com/CultureBotAI/TaxonMech/blob/main/src/taxonmech/schema/taxonmech.yaml" }, - { from: "AntibioticMech", to: "NaturalProductMech", kind: "data", what: "Natural products that share an InChIKey with an AntibioticMech structure link to that record and take its antimicrobial class, not its targets or mechanism; NaturalProductMech also adapted AntibioticMech's source-queue pattern.", ev: "NaturalProductMech data/raw/antibioticmech_inchikeys.tsv; .claude/skills/source-queue", url: "https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/raw/antibioticmech_inchikeys.tsv" }, - { from: "AntibioticMech", to: "CellStructureMech", kind: "practice", what: "The licensed source-queue curation pattern was written here and adapted by CellStructureMech.", ev: "claw docs/guides/SOURCE_QUEUE.md", url: "https://github.com/CultureBotAI/culturebotai-claw/blob/main/docs/guides/SOURCE_QUEUE.md" }, - { from: "ProteinTraitsMech", to: "TraitMech", kind: "practice", what: "TraitMech's download.yaml source catalogue follows ProteinTraitsMech's shape, and its check_sources.py validator is adapted from ProteinTraitsMech's.", ev: "TraitMech download.yaml; scripts/check_sources.py", url: "https://github.com/CultureBotAI/TraitMech/blob/main/download.yaml" }, - { from: "TraitMech", to: "ProteinTraitsMech", kind: "schema", what: "ProteinTraitsMech keeps a reviewed snapshot of TraitMech's TraitCategoryEnum; a CI audit reports a non-blocking notice when UPPER or OTHER, the only tokens both vocabularies use, is described differently.", ev: "ProteinTraitsMech conf/traitmech_category_vocabulary.yaml; scripts/audit_cross_mech_categories.py", url: "https://github.com/CultureBotAI/proteintraitsmech/blob/main/conf/traitmech_category_vocabulary.yaml" }, - { from: "TraitMech", to: "TaxonMech", kind: "schema", what: "TaxonMech's schema lets a trait node in a causal graph be a TraitMech or METPO term and declares the traitmech: prefix; no TaxonMech record has a causal graph yet.", ev: "TaxonMech schema CausalNodeTypeEnum and prefixes", url: "https://github.com/CultureBotAI/TaxonMech/blob/main/src/taxonmech/schema/taxonmech.yaml" } + { from: "HabitatMech", to: "TaxonMech", kind: "schema", what: "TaxonMech's causal-graph node types are the same 16 as HabitatMech's. A habitat node may be a HabitatMech or ENVO term, the schema declares the habitatmech: prefix, and TaxonMech's curation-event helper and closed-schema write gate are ported from HabitatMech's and CellStructureMech's; no TaxonMech record has a causal graph yet.", ev: "TaxonMech schema CausalNodeTypeEnum and prefixes; src/taxonmech/curate/curation_event.py, src/taxonmech/validation/write_validated.py", url: "https://github.com/CultureBotAI/TaxonMech/blob/main/src/taxonmech/schema/taxonmech.yaml" }, + { from: "HabitatMech", to: "CellStructureMech", kind: "practice", what: "CellStructureMech's curation-event helper and closed-schema write gate are ported from HabitatMech's modules of the same names, which HabitatMech had itself ported from TraitMech. 17 of CellStructureMech's writer scripts use both.", ev: "CellStructureMech src/cellstructuremech/curate/curation_event.py; validation/write_validated.py", url: "https://github.com/CultureBotAI/CellStructureMech/blob/main/src/cellstructuremech/curate/curation_event.py" }, + { from: "HabitatMech", to: "AntibioticMech", kind: "practice", what: "AntibioticMech's static-site generator is ported from HabitatMech's render_pages.py, including its paged category pages that filter through a JSON index, and its stylesheet is ported from HabitatMech's. Together they render AntibioticMech's whole browser.", ev: "AntibioticMech scripts/render_pages.py; src/antibioticmech/templates/style.css", url: "https://github.com/CultureBotAI/AntibioticMech/blob/main/scripts/render_pages.py" }, + { from: "CommunityMech", to: "TraitMech", kind: "practice", what: "TraitMech's Edison deep-research runner and skill are ports of CommunityMech's research_community_edison.py and deep-research-community skill. Its METPO proposal skill takes CommunityMech's v1 proposal cohort as the worked example to follow, and keeps TraitMech's placeholder ID blocks clear of that cohort's.", ev: "TraitMech scripts/research_trait_edison.py; .claude/skills/deep-research-trait and metpo-proposal", url: "https://github.com/CultureBotAI/TraitMech/blob/main/scripts/research_trait_edison.py" }, + { from: "CommunityMech", to: "MediaIngredientMech", kind: "data", what: "MediaIngredientMech imported 17 growth-media ingredient names that CommunityMech could not match to an existing ingredient. Each record keeps the name as a synonym from communitymech-unmapped and cites its CommunityMech source id (communitymech.ingredient:name). 10 records are still live; the other 7 were merged into existing records.", ev: "MIM data/ingredients (source communitymech-unmapped); CommunityMech reports/ingredient_mapping.csv", url: "https://github.com/CultureBotAI/MediaIngredientMech/blob/main/data/ingredients/mapped/Trace_Element_Solution_SL-10.yaml" }, + { from: "CommunityMech", to: "CultureMech", kind: "data", what: "CultureMech turned CommunityMech growth media into recipes that keep their CommunityMech ids as provenance. It also backfilled recipe source environments from the ENVO terms of CommunityMech records that point at those recipes.", ev: "CultureMech scripts/import_from_communitymech.py, scripts/backfill_source_environment.py; schema SourceData.community_ids", url: "https://github.com/CultureBotAI/CultureMech/blob/main/scripts/import_from_communitymech.py" }, + { from: "TaxonMech", to: "HabitatMech", kind: "practice", what: "TaxonMech's curation rules leave a taxon's habitats and its strains' isolation sources to HabitatMech. A TaxonMech record keeps only source attestation counts, and none of its records carries habitat data.", ev: "TaxonMech docs/CURATION.md (record-scope table, Strains); README Known limitations", url: "https://github.com/CultureBotAI/TaxonMech/blob/main/docs/CURATION.md" }, + { from: "TaxonMech", to: "TraitMech", kind: "practice", what: "TaxonMech's curation rules leave the traits and phenotypes of a taxon or strain to TraitMech, so they are never TaxonMech records. A TaxonMech record keeps only a count of the Madin and BactoTraits trait assertions about the taxon, never the trait values.", ev: "TaxonMech docs/CURATION.md record table; README Known limitations", url: "https://github.com/CultureBotAI/TaxonMech/blob/main/docs/CURATION.md" }, + { from: "TaxonMech", to: "CultureMech", kind: "practice", what: "TaxonMech's curation rules leave a taxon's growth media to CultureMech. A record keeps only a MediaDive count of the media linked to the taxon or to each strain, never the media themselves.", ev: "TaxonMech docs/CURATION.md", url: "https://github.com/CultureBotAI/TaxonMech/blob/main/docs/CURATION.md" }, + { from: "TraitMech", to: "HabitatMech", kind: "schema", what: "Habitat causal graphs reuse most of TraitMech's node types so the graphs stay comparable, and a trait node may be a TraitMech or METPO term (the 10 trait nodes in use are label-only so far). HabitatMech's deep-research runner deliberately follows TraitMech's conventions, and its curation-event and write-validation helpers are ported from TraitMech's.", ev: "HabitatMech schema CausalNodeTypeEnum; scripts/research_habitat.py", url: "https://github.com/CultureBotAI/HabitatMech/blob/main/src/habitatmech/schema/habitatmech.yaml" }, + { from: "TraitMech", to: "CommunityMech", kind: "practice", what: "CommunityMech's /ground-or-propose-metpo curation command is adapted from TraitMech's command of the same name, and treats community interaction graphs as the analog of TraitMech's causal graphs. Its strict validator, writer audit and curation-event helper also name TraitMech as a source, alongside CultureMech and MediaIngredientMech.", ev: "CommunityMech .claude/commands/ground-or-propose-metpo.md; scripts/validate_strict.py, scripts/audit_writers.py", url: "https://github.com/CultureBotAI/CommunityMech/blob/main/.claude/commands/ground-or-propose-metpo.md" }, + { from: "TraitMech", to: "TaxonMech", kind: "schema", what: "TaxonMech's schema lets a trait node in a causal graph be a TraitMech or METPO term and declares the traitmech: prefix; no TaxonMech record has a causal graph yet.", ev: "TaxonMech schema CausalNodeTypeEnum and prefixes", url: "https://github.com/CultureBotAI/TaxonMech/blob/main/src/taxonmech/schema/taxonmech.yaml" }, + { from: "TraitMech", to: "CellStructureMech", kind: "data", what: "Structures list the phenotypes they confer as TraitMech or METPO trait ids, and a CI check tests each id and label against TraitMech's published trait index. The causal-graph node types are TraitMech's plus STRUCTURE.", ev: "CellStructureMech scripts/check_trait_links.py + schema associated_traits", url: "https://github.com/CultureBotAI/CellStructureMech/blob/main/scripts/check_trait_links.py" }, + { from: "TraitMech", to: "ProteinTraitsMech", kind: "schema", what: "ProteinTraitsMech keeps a reviewed snapshot of TraitMech's TraitCategoryEnum. A CI audit that also fetches TraitMech's live schema reports a notice, never a failure, when the snapshot goes stale or when UPPER or OTHER, the only tokens both vocabularies use, is described differently (UPPER currently is). Its fallback history-record scaffolder is adapted from TraitMech's new_history_record.py.", ev: "ProteinTraitsMech conf/traitmech_category_vocabulary.yaml; scripts/audit_cross_mech_categories.py; scripts/new_history_record.py", url: "https://github.com/CultureBotAI/proteintraitsmech/blob/main/conf/traitmech_category_vocabulary.yaml" }, + { from: "TraitMech", to: "MediaIngredientMech", kind: "practice", what: "TraitMech leaves chemicals to MediaIngredientMech: its METPO seeder skips the material-entity subtree, which its docs say belongs in MIM rather than TraitMech. MIM's /ground-or-propose-ingredient curation command is ported from TraitMech's /ground-or-propose-metpo, re-aimed at chemical identity instead of phenotype.", ev: "TraitMech docs/SCHEMA.md, README.md, scripts/seed_from_metpo.py; MIM .claude/commands/ground-or-propose-ingredient.md (MIM#92)", url: "https://github.com/CultureBotAI/MediaIngredientMech/blob/main/.claude/commands/ground-or-propose-ingredient.md" }, + { from: "CellStructureMech", to: "TaxonMech", kind: "practice", what: "TaxonMech's closed-schema write gate and its curation-history helper are ported from CellStructureMech's modules, which the code credits jointly to HabitatMech and CellStructureMech. Every TaxonMech record is written through them.", ev: "TaxonMech src/taxonmech/validation/write_validated.py; src/taxonmech/curate/curation_event.py", url: "https://github.com/CultureBotAI/TaxonMech/blob/main/src/taxonmech/validation/write_validated.py" }, + { from: "CellStructureMech", to: "ProteinTraitsMech", kind: "practice", what: "CellStructureMech's scope rule makes a single protein or protein family a component of a structure, never a record of its own: it grounds to InterPro, Pfam or UniProtKB and is left to ProteinTraitsMech. The schema also declares a proteintraitsmech: prefix, but no record uses it.", ev: "CellStructureMech docs/CURATION.md; schema components slot", url: "https://github.com/CultureBotAI/CellStructureMech/blob/main/docs/CURATION.md" }, + { from: "ProteinTraitsMech", to: "TraitMech", kind: "practice", what: "TraitMech's download.yaml source catalogue follows the shape of ProteinTraitsMech's, and its check_sources.py validator is adapted from ProteinTraitsMech's. Unlike the original, it fails a source that records no licence.", ev: "TraitMech download.yaml; scripts/check_sources.py; justfile sources-check", url: "https://github.com/CultureBotAI/TraitMech/blob/main/download.yaml" }, + { from: "NaturalProductMech", to: "AntibioticMech", kind: "practice", what: "NaturalProductMech leaves antimicrobial mechanism to AntibioticMech. For the 205 compounds that share a structure with an AntibioticMech record, it links to that record and does not copy its targets, resistance determinants or MIC data.", ev: "NaturalProductMech schema molecular_targets; CLAUDE.md; docs/HARMONIZATION.md", url: "https://github.com/CultureBotAI/NaturalProductMech/blob/main/src/naturalproductmech/schema/naturalproductmech.yaml" }, + { from: "AntibioticMech", to: "CellStructureMech", kind: "practice", what: "CellStructureMech's source-queue skill, which ranks the sources in its curation/source_queue.tsv, is adapted from AntibioticMech's skill and keeps its ranking rule and adoption gate. Its stylesheet contract test is ported from AntibioticMech's.", ev: "CellStructureMech .claude/skills/source-queue/SKILL.md; tests/test_stylesheet_contract.py", url: "https://github.com/CultureBotAI/CellStructureMech/blob/main/.claude/skills/source-queue/SKILL.md" }, + { from: "AntibioticMech", to: "NaturalProductMech", kind: "data", what: "NaturalProductMech pins AntibioticMech's structures in an InChIKey inventory. A natural product that shares an InChIKey with an AntibioticMech record links to it and takes its antimicrobial class, but not its targets or resistance data. NaturalProductMech also used AntibioticMech as its template: its source-queue, add-record, curate-record and review-issues skills are adapted from AntibioticMech's.", ev: "NaturalProductMech scripts/extract_antibioticmech.py; data/raw/antibioticmech_inchikeys.tsv; .claude/skills", url: "https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/raw/antibioticmech_inchikeys.tsv" }, + { from: "MediaIngredientMech", to: "HabitatMech", kind: "practice", what: "HabitatMech's seeder checks the label claimed by each upstream kg-microbe isolation-source mapping and, following MediaIngredientMech's SSSOM Rule B4, accepts an exact ontology synonym as well as the canonical label. Per the code, the rule changes no current record.", ev: "HabitatMech src/habitatmech/seed.py verified_mapping_target; tests/test_seed_harmonization.py", url: "https://github.com/CultureBotAI/HabitatMech/blob/main/src/habitatmech/seed.py" }, + { from: "MediaIngredientMech", to: "CommunityMech", kind: "data", what: "CommunityMech growth-media components cite MIM ingredients by id (media_ingredient_mech_id), but they use MIM's retired MediaIngredientMech:NNNNNN scheme, so the ids no longer resolve. Its environment-matching tools read MIM's ingredient records and SSSOM mappings. They join on the exactMatch CHEBI term, which is what MIM's CURIE standard recommends; MIM wrote that standard for CommunityMech (MIM#119).", ev: "CommunityMech schema GrowthMediaComponent, src/communitymech/cross_repo_environment.py; MIM docs/CURIE_STANDARD.md", url: "https://github.com/CultureBotAI/CommunityMech/blob/main/src/communitymech/cross_repo_environment.py" }, + { from: "MediaIngredientMech", to: "TraitMech", kind: "practice", what: "TraitMech ported its write-time validation gate and curation-event helper from CultureMech by way of MediaIngredientMech's versions, and its composite qc target mirrors MIM's. Its FAPROTAX synonym script follows MIM's rule: correct the label and keep the raw string.", ev: "TraitMech src/traitmech/validation/write_validated.py; src/traitmech/curate/curation_event.py; justfile qc; scripts/add_faprotax_synonyms.py", url: "https://github.com/CultureBotAI/TraitMech/blob/main/src/traitmech/validation/write_validated.py" }, + { from: "MediaIngredientMech", to: "ProteinTraitsMech", kind: "practice", what: "ProteinTraitsMech's trait-merge rules, where only an exact identity match is merged and a similar name is only flagged for review, are adapted from MediaIngredientMech's same-ChEBI merge rule. Its oaklib version-pin test is ported from MediaIngredientMech's test of the same name.", ev: "ProteinTraitsMech .claude/skills/merge-traits/SKILL.md (just analyze-merges); tests/test_oaklib_semsql_pin.py", url: "https://github.com/CultureBotAI/proteintraitsmech/blob/main/.claude/skills/merge-traits/SKILL.md" }, + { from: "MediaIngredientMech", to: "CultureMech", kind: "data", what: "About two-thirds of CultureMech recipes link each ingredient to its curated MIM record through mediaingredientmech_chebi_term, and older records keep legacy MediaIngredientMech:NNNNNN ids. CultureMech also resolves ingredient labels against a pinned copy of MIM's label index, types its role slots with MIM's vendored role enums and took over stock solutions from MIM's complex-media list, while MIM's schema leaves recipe bodies to CultureMech.", ev: "CultureMech schema mediaingredientmech_chebi_term, mim_roles.yaml; src/culturemech/ingredients/mim_label_index.py", url: "https://github.com/CultureBotAI/CultureMech/blob/main/src/culturemech/schema/culturemech.yaml" }, + { from: "CultureMech", to: "CommunityMech", kind: "data", what: "Community records name the CultureMech medium they were grown in, or an environment-matched one, by culturemech_id, and CommunityMech's media linker copies CultureMech recipe components into them. CommunityMech also ported CultureMech's schema-validated writer and its Edison deep-research runner.", ev: "CommunityMech schema GrowthMedia/RelatedMedia culturemech_id; scripts/link_growth_media.py; src/communitymech/validation/write_validated.py", url: "https://github.com/CultureBotAI/CommunityMech/blob/main/src/communitymech/schema/communitymech.yaml" }, + { from: "CultureMech", to: "TraitMech", kind: "practice", what: "TraitMech's curation-history helper and its schema-validated YAML writer are ports of CultureMech's, by way of MediaIngredientMech's versions, and nearly every TraitMech write script goes through them. TraitMech's qc recipe also mirrors CultureMech's.", ev: "TraitMech src/traitmech/curate/curation_event.py; src/traitmech/validation/write_validated.py", url: "https://github.com/CultureBotAI/TraitMech/blob/main/src/traitmech/curate/curation_event.py" }, + { from: "CultureMech", to: "MediaIngredientMech", kind: "data", what: "MIM reads CultureMech's ingredient-occurrence table to set each record's occurrence counts, to publish a recipe-membership edge list keyed on CultureMech:NNNNNN ids, and to turn labels it cannot resolve into new records and synonyms. CultureMech leaves questions about an ingredient's chemical form to MIM, and MIM's validated record writer and curation-event helper are ported from CultureMech.", ev: "MIM mappings/culturemech_recipe_membership.tsv, scripts/refresh_occurrence_statistics.py; CultureMech docs/DATA_LAYERS.md", url: "https://github.com/CultureBotAI/MediaIngredientMech/blob/main/scripts/build_culturemech_membership.py" } ]; // Exchange with the central kg-microbe knowledge graph. @@ -706,7 +721,7 @@

Shared vocabulary

detail.innerHTML = '

Reading the graph

' + N + ' views of one microbe

' + '

Clockwise from the top the ring walks from the environment a microbe lives in to the medium it is grown in: habitat, community, taxon identity, traits, cell structures, proteins, natural products, antibiotics, ingredients, media. A culture medium is a synthetic habitat, so the ring closes.

' + - '

Dashed arcs outside the ring are direct cross-references, where one Mech\'s records, schema or curation practice name another; spokes tie each Mech to the central kg-microbe graph. Turn on the shared-vocabulary layer to see one colored chord per ontology that two measured Mechs both cite. The September 2026 census covers nine Mechs; TaxonMech is awaiting vocabulary measurement. Hover a node for its detail and click it to open that Mech; click a chord, arc or spoke to see what it carries and to jump to the matching records.

' + + '

Dashed arcs outside the ring are direct cross-references, where one Mech\'s records, schema or curation practice name another; spokes tie each Mech to the central kg-microbe graph. Turn on the shared-vocabulary layer to see one colored chord per ontology that two measured Mechs both cite. The September 2026 census covers ; TaxonMech shares taxon identifiers with most of the others. Hover a node for its detail and click it to open that Mech; click a chord, arc or spoke to see what it carries and to jump to the matching records.

' + '

Strongest shared vocabulary' + (state.voc ? ' (' + esc(state.voc) + ')' : '') + '

' + strongest() + '
'; } function selectNode(m) { diff --git a/_fleet/mechs_template.md b/_fleet/mechs_template.md index 5f2fbd6..4ce78c8 100644 --- a/_fleet/mechs_template.md +++ b/_fleet/mechs_template.md @@ -113,23 +113,38 @@ Alongside record browsing, the Mechs publish complementary ways to explore their ## How the Mechs reference each other -Beyond shared vocabulary, Mechs name one another directly, in record fields, in schema slots, and in the curation practices they adopt from each other. Arrows point at the Mech that consumes, or at the one a scope decision defers to. +Beyond shared vocabulary, Mechs name one another directly, in record fields, in schema slots, and in the curation practices they adopt from each other. Arrows point at the Mech that consumes, or at the one a scope decision defers to. Taxa tie TaxonMech to most of the fleet in a different way: the other Mechs cite NCBI Taxonomy identifiers, and most of the species and strains they cite are TaxonMech records. Those links are shared identifiers rather than direct references, so they appear as chords in the graph's shared-vocabulary layer, not as arrows.
-
CultureMech→MediaIngredientMech
Ingredient strings and occurrence counts inform scoped MIM curation; retired collection writers no longer overwrite MIM-owned records from CultureMech aggregates; MIM records link back to recipes by stable id with the CultureMechReference class.Record data · claw ingredient_curation_pipeline
-
MediaIngredientMech→CultureMech
Curated ChEBI and FOODON mapping artifacts support scoped recipe updates. CultureMech vendors MIM's ingredient-role enums and consumes MIM's immutable label index.Record data · src/culturemech/schema/mim_roles.yaml
-
CommunityMech→CultureMech
Community records name the medium they were cultivated in through culturemech_id references. CultureMech imported media from CommunityMech with their community ids, and backfilled recipe source environments through that link.Record data · docs/cross_repo_linking.md; CultureMech scripts/import_from_communitymech.py
-
CommunityMech→MediaIngredientMech
MIM imported CommunityMech's unmapped growth-media ingredient strings as MIM records, citing communitymech-unmapped as their source. CommunityMech's own MIM-id slots (media_ingredient_mech_id, mediaingredientmech_id) are marked vestigial, with chebi_term as the join.Record data · MIM data/ingredients
-
TraitMech→CellStructureMech
A structure lists the phenotypes it confers as TraitMech or METPO terms, and its causal-graph node vocabulary is TraitMech's plus a STRUCTURE node type.Record data · schema slot associated_traits
-
CellStructureMech→ProteinTraitsMech
A single protein is a component of a structure, never a record of its own: it grounds to InterPro or UniProtKB and hands off to ProteinTraitsMech.Scope boundary · docs/CURATION.md
-
TraitMech→HabitatMech
Habitat causal graphs reuse most of TraitMech's node vocabulary so the graphs stay comparable; a node may be a TraitMech or METPO trait.Schema · CausalNodeTypeEnum
-
HabitatMech→CultureMech
HabitatMech grounds GOLD's culture-media habitat to BTO:0000316 culture medium, and the curation decision points to CultureMech for related curation.Curation decision · curation/decisions.tsv
-
HabitatMech→TaxonMech
TaxonMech's schema lets a habitat node in a causal graph be a HabitatMech or ENVO term, and it declares the habitatmech: prefix. No TaxonMech record has a causal graph yet.Schema · CausalNodeTypeEnum
-
AntibioticMech→NaturalProductMech
A natural product that shares an InChIKey with an AntibioticMech structure links to that record and takes its antimicrobial class. Only the class is copied, not AntibioticMech's targets, mode of action or resistance mechanisms. NaturalProductMech also adapted AntibioticMech's licensed source-queue pattern.Record data · data/raw/antibioticmech_inchikeys.tsv
-
AntibioticMech→CellStructureMech
AntibioticMech wrote the licensed source-queue pattern (rank candidate sources, verify licences, record decisions); CellStructureMech adapted it.Practice · claw docs/guides/SOURCE_QUEUE.md
-
ProteinTraitsMech→TraitMech
TraitMech's download.yaml source catalogue follows the shape of ProteinTraitsMech's, so the two can be read side by side. TraitMech's check_sources.py validator is adapted from ProteinTraitsMech's and, unlike the original, fails a source that records no licence.Practice · TraitMech download.yaml and scripts/check_sources.py
-
TraitMech→ProteinTraitsMech
ProteinTraitsMech keeps a reviewed snapshot of TraitMech's TraitCategoryEnum. The two category vocabularies share only UPPER and OTHER. A CI audit reports a notice, never a failure, when either is described differently in the two Mechs.Schema · conf/traitmech_category_vocabulary.yaml
-
TraitMech→TaxonMech
TaxonMech's schema lets a trait node in a causal graph be a TraitMech or METPO term, and it declares the traitmech: prefix. No TaxonMech record has a causal graph yet.Schema · CausalNodeTypeEnum
+
HabitatMech→TaxonMech
TaxonMech's causal-graph node types are the same 16 as HabitatMech's. A habitat node may be a HabitatMech or ENVO term, the schema declares the habitatmech: prefix, and TaxonMech's curation-event helper and closed-schema write gate are ported from HabitatMech's and CellStructureMech's; no TaxonMech record has a causal graph yet.Schema · TaxonMech schema CausalNodeTypeEnum and prefixes; src/taxonmech/curate/curation_event.py, src/taxonmech/validation/write_validated.py
+
HabitatMech→CellStructureMech
CellStructureMech's curation-event helper and closed-schema write gate are ported from HabitatMech's modules of the same names, which HabitatMech had itself ported from TraitMech. 17 of CellStructureMech's writer scripts use both.Practice · CellStructureMech src/cellstructuremech/curate/curation_event.py; validation/write_validated.py
+
HabitatMech→AntibioticMech
AntibioticMech's static-site generator is ported from HabitatMech's render_pages.py, including its paged category pages that filter through a JSON index, and its stylesheet is ported from HabitatMech's. Together they render AntibioticMech's whole browser.Practice · AntibioticMech scripts/render_pages.py; src/antibioticmech/templates/style.css
+
CommunityMech→TraitMech
TraitMech's Edison deep-research runner and skill are ports of CommunityMech's research_community_edison.py and deep-research-community skill. Its METPO proposal skill takes CommunityMech's v1 proposal cohort as the worked example to follow, and keeps TraitMech's placeholder ID blocks clear of that cohort's.Practice · TraitMech scripts/research_trait_edison.py; .claude/skills/deep-research-trait and metpo-proposal
+
CommunityMech→MediaIngredientMech
MediaIngredientMech imported 17 growth-media ingredient names that CommunityMech could not match to an existing ingredient. Each record keeps the name as a synonym from communitymech-unmapped and cites its CommunityMech source id (communitymech.ingredient:name). 10 records are still live; the other 7 were merged into existing records.Record data · MIM data/ingredients (source communitymech-unmapped); CommunityMech reports/ingredient_mapping.csv
+
CommunityMech→CultureMech
CultureMech turned CommunityMech growth media into recipes that keep their CommunityMech ids as provenance. It also backfilled recipe source environments from the ENVO terms of CommunityMech records that point at those recipes.Record data · CultureMech scripts/import_from_communitymech.py, scripts/backfill_source_environment.py; schema SourceData.community_ids
+
TaxonMech→HabitatMech
TaxonMech's curation rules leave a taxon's habitats and its strains' isolation sources to HabitatMech. A TaxonMech record keeps only source attestation counts, and none of its records carries habitat data.Practice · TaxonMech docs/CURATION.md (record-scope table, Strains); README Known limitations
+
TaxonMech→TraitMech
TaxonMech's curation rules leave the traits and phenotypes of a taxon or strain to TraitMech, so they are never TaxonMech records. A TaxonMech record keeps only a count of the Madin and BactoTraits trait assertions about the taxon, never the trait values.Practice · TaxonMech docs/CURATION.md record table; README Known limitations
+
TaxonMech→CultureMech
TaxonMech's curation rules leave a taxon's growth media to CultureMech. A record keeps only a MediaDive count of the media linked to the taxon or to each strain, never the media themselves.Practice · TaxonMech docs/CURATION.md
+
TraitMech→HabitatMech
Habitat causal graphs reuse most of TraitMech's node types so the graphs stay comparable, and a trait node may be a TraitMech or METPO term (the 10 trait nodes in use are label-only so far). HabitatMech's deep-research runner deliberately follows TraitMech's conventions, and its curation-event and write-validation helpers are ported from TraitMech's.Schema · HabitatMech schema CausalNodeTypeEnum; scripts/research_habitat.py
+
TraitMech→CommunityMech
CommunityMech's /ground-or-propose-metpo curation command is adapted from TraitMech's command of the same name, and treats community interaction graphs as the analog of TraitMech's causal graphs. Its strict validator, writer audit and curation-event helper also name TraitMech as a source, alongside CultureMech and MediaIngredientMech.Practice · CommunityMech .claude/commands/ground-or-propose-metpo.md; scripts/validate_strict.py, scripts/audit_writers.py
+
TraitMech→TaxonMech
TaxonMech's schema lets a trait node in a causal graph be a TraitMech or METPO term and declares the traitmech: prefix; no TaxonMech record has a causal graph yet.Schema · TaxonMech schema CausalNodeTypeEnum and prefixes
+
TraitMech→CellStructureMech
Structures list the phenotypes they confer as TraitMech or METPO trait ids, and a CI check tests each id and label against TraitMech's published trait index. The causal-graph node types are TraitMech's plus STRUCTURE.Record data · CellStructureMech scripts/check_trait_links.py + schema associated_traits
+
TraitMech→ProteinTraitsMech
ProteinTraitsMech keeps a reviewed snapshot of TraitMech's TraitCategoryEnum. A CI audit that also fetches TraitMech's live schema reports a notice, never a failure, when the snapshot goes stale or when UPPER or OTHER, the only tokens both vocabularies use, is described differently (UPPER currently is). Its fallback history-record scaffolder is adapted from TraitMech's new_history_record.py.Schema · ProteinTraitsMech conf/traitmech_category_vocabulary.yaml; scripts/audit_cross_mech_categories.py; scripts/new_history_record.py
+
TraitMech→MediaIngredientMech
TraitMech leaves chemicals to MediaIngredientMech: its METPO seeder skips the material-entity subtree, which its docs say belongs in MIM rather than TraitMech. MIM's /ground-or-propose-ingredient curation command is ported from TraitMech's /ground-or-propose-metpo, re-aimed at chemical identity instead of phenotype.Practice · TraitMech docs/SCHEMA.md, README.md, scripts/seed_from_metpo.py; MIM .claude/commands/ground-or-propose-ingredient.md (MIM#92)
+
CellStructureMech→TaxonMech
TaxonMech's closed-schema write gate and its curation-history helper are ported from CellStructureMech's modules, which the code credits jointly to HabitatMech and CellStructureMech. Every TaxonMech record is written through them.Practice · TaxonMech src/taxonmech/validation/write_validated.py; src/taxonmech/curate/curation_event.py
+
CellStructureMech→ProteinTraitsMech
CellStructureMech's scope rule makes a single protein or protein family a component of a structure, never a record of its own: it grounds to InterPro, Pfam or UniProtKB and is left to ProteinTraitsMech. The schema also declares a proteintraitsmech: prefix, but no record uses it.Practice · CellStructureMech docs/CURATION.md; schema components slot
+
ProteinTraitsMech→TraitMech
TraitMech's download.yaml source catalogue follows the shape of ProteinTraitsMech's, and its check_sources.py validator is adapted from ProteinTraitsMech's. Unlike the original, it fails a source that records no licence.Practice · TraitMech download.yaml; scripts/check_sources.py; justfile sources-check
+
NaturalProductMech→AntibioticMech
NaturalProductMech leaves antimicrobial mechanism to AntibioticMech. For the 205 compounds that share a structure with an AntibioticMech record, it links to that record and does not copy its targets, resistance determinants or MIC data.Practice · NaturalProductMech schema molecular_targets; CLAUDE.md; docs/HARMONIZATION.md
+
AntibioticMech→CellStructureMech
CellStructureMech's source-queue skill, which ranks the sources in its curation/source_queue.tsv, is adapted from AntibioticMech's skill and keeps its ranking rule and adoption gate. Its stylesheet contract test is ported from AntibioticMech's.Practice · CellStructureMech .claude/skills/source-queue/SKILL.md; tests/test_stylesheet_contract.py
+
AntibioticMech→NaturalProductMech
NaturalProductMech pins AntibioticMech's structures in an InChIKey inventory. A natural product that shares an InChIKey with an AntibioticMech record links to it and takes its antimicrobial class, but not its targets or resistance data. NaturalProductMech also used AntibioticMech as its template: its source-queue, add-record, curate-record and review-issues skills are adapted from AntibioticMech's.Record data · NaturalProductMech scripts/extract_antibioticmech.py; data/raw/antibioticmech_inchikeys.tsv; .claude/skills
+
MediaIngredientMech→HabitatMech
HabitatMech's seeder checks the label claimed by each upstream kg-microbe isolation-source mapping and, following MediaIngredientMech's SSSOM Rule B4, accepts an exact ontology synonym as well as the canonical label. Per the code, the rule changes no current record.Practice · HabitatMech src/habitatmech/seed.py verified_mapping_target; tests/test_seed_harmonization.py
+
MediaIngredientMech→CommunityMech
CommunityMech growth-media components cite MIM ingredients by id (media_ingredient_mech_id), but they use MIM's retired MediaIngredientMech:NNNNNN scheme, so the ids no longer resolve. Its environment-matching tools read MIM's ingredient records and SSSOM mappings. They join on the exactMatch CHEBI term, which is what MIM's CURIE standard recommends; MIM wrote that standard for CommunityMech (MIM#119).Record data · CommunityMech schema GrowthMediaComponent, src/communitymech/cross_repo_environment.py; MIM docs/CURIE_STANDARD.md
+
MediaIngredientMech→TraitMech
TraitMech ported its write-time validation gate and curation-event helper from CultureMech by way of MediaIngredientMech's versions, and its composite qc target mirrors MIM's. Its FAPROTAX synonym script follows MIM's rule: correct the label and keep the raw string.Practice · TraitMech src/traitmech/validation/write_validated.py; src/traitmech/curate/curation_event.py; justfile qc; scripts/add_faprotax_synonyms.py
+
MediaIngredientMech→ProteinTraitsMech
ProteinTraitsMech's trait-merge rules, where only an exact identity match is merged and a similar name is only flagged for review, are adapted from MediaIngredientMech's same-ChEBI merge rule. Its oaklib version-pin test is ported from MediaIngredientMech's test of the same name.Practice · ProteinTraitsMech .claude/skills/merge-traits/SKILL.md (just analyze-merges); tests/test_oaklib_semsql_pin.py
+
MediaIngredientMech→CultureMech
About two-thirds of CultureMech recipes link each ingredient to its curated MIM record through mediaingredientmech_chebi_term, and older records keep legacy MediaIngredientMech:NNNNNN ids. CultureMech also resolves ingredient labels against a pinned copy of MIM's label index, types its role slots with MIM's vendored role enums and took over stock solutions from MIM's complex-media list, while MIM's schema leaves recipe bodies to CultureMech.Record data · CultureMech schema mediaingredientmech_chebi_term, mim_roles.yaml; src/culturemech/ingredients/mim_label_index.py
+
CultureMech→CommunityMech
Community records name the CultureMech medium they were grown in, or an environment-matched one, by culturemech_id, and CommunityMech's media linker copies CultureMech recipe components into them. CommunityMech also ported CultureMech's schema-validated writer and its Edison deep-research runner.Record data · CommunityMech schema GrowthMedia/RelatedMedia culturemech_id; scripts/link_growth_media.py; src/communitymech/validation/write_validated.py
+
CultureMech→TraitMech
TraitMech's curation-history helper and its schema-validated YAML writer are ports of CultureMech's, by way of MediaIngredientMech's versions, and nearly every TraitMech write script goes through them. TraitMech's qc recipe also mirrors CultureMech's.Practice · TraitMech src/traitmech/curate/curation_event.py; src/traitmech/validation/write_validated.py
+
CultureMech→MediaIngredientMech
MIM reads CultureMech's ingredient-occurrence table to set each record's occurrence counts, to publish a recipe-membership edge list keyed on CultureMech:NNNNNN ids, and to turn labels it cannot resolve into new records and synonyms. CultureMech leaves questions about an ingredient's chemical form to MIM, and MIM's validated record writer and curation-event helper are ported from CultureMech.Record data · MIM mappings/culturemech_recipe_membership.tsv, scripts/refresh_occurrence_statistics.py; CultureMech docs/DATA_LAYERS.md
## Orchestration: culturebotai-claw diff --git a/assets/fleet/cells/TaxonMech--GTDB.json b/assets/fleet/cells/TaxonMech--GTDB.json new file mode 100644 index 0000000..b2b42e3 --- /dev/null +++ b/assets/fleet/cells/TaxonMech--GTDB.json @@ -0,0 +1 @@ +{"mech":"TaxonMech","prefix":"GTDB","base":"https://culturebotai.github.io/TaxonMech/pages/taxon.html?id=","total":118801,"records":[["NCBITaxon%3A2283","Acidianus ambivalens"],["NCBITaxon%3A41673","Acidianus brierleyi"],["NCBITaxon%3A563177","Acidianus hospitalis"],["NCBITaxon%3A933801","Acidianus hospitalis W1"],["NCBITaxon%3A12915","Acidianus infernus"],["NCBITaxon%3A282676","Acidianus manzaensis"],["NCBITaxon%3A1872104","Acidianus sp."],["NCBITaxon%3A2886040","Acidianus sp. HS-5"],["NCBITaxon%3A1540082","Acidianus sp. RZ1"],["NCBITaxon%3A312539","Acidianus sulfidivorans"],["NCBITaxon%3A619593","Acidianus sulfidivorans JP7"],["NCBITaxon%3A2933264","Acidilobaceae archaeon"],["NCBITaxon%3A1915614","Acidilobaceae archaeon UBA158"],["NCBITaxon%3A1915615","Acidilobaceae archaeon UBA162"],["NCBITaxon%3A242703","Acidilobus saccharovorans"],["NCBITaxon%3A666510","Acidilobus saccharovorans 345-15"],["NCBITaxon%3A1872109","Acidilobus sp."],["NCBITaxon%3A1577685","Acidilobus sp. 7A"],["NCBITaxon%3A507754","Acidiplasma aeolicum"],["NCBITaxon%3A312540","Acidiplasma cupricumulans"],["NCBITaxon%3A1295373","Acidiplasma cupricumulans JCM 13668 = DSM 16651"],["NCBITaxon%3A1872114","Acidiplasma sp."],["NCBITaxon%3A1293648","Acidiplasma sp. MBA-1"],["NCBITaxon%3A439481","Aciduliprofundum boonei T469"],["NCBITaxon%3A229980","Aeropyrum camini"],["NCBITaxon%3A1198449","Aeropyrum camini SY1 = JCM 12091"],["NCBITaxon%3A56636","Aeropyrum pernix"],["NCBITaxon%3A272557","Aeropyrum pernix K1"],["NCBITaxon%3A1872399","Aeropyrum sp."],["NCBITaxon%3A3138747","Afararchaeum irisae (SeqCode)"],["NCBITaxon%3A2528703","Aigarchaeota archaeon"],["NCBITaxon%3A2056317","ANME-2 cluster archaeon"],["NCBITaxon%3A2511821","Archaeoglobaceae archaeon"],["NCBITaxon%3A2250258","Archaeoglobales archaeon"],["NCBITaxon%3A2250530","Archaeoglobi archaeon"],["NCBITaxon%3A1935016","Archaeoglobi archaeon JdFR-42"],["NCBITaxon%3A2234","Archaeoglobus fulgidus"],["NCBITaxon%3A224325","Archaeoglobus fulgidus DSM 4304"],["NCBITaxon%3A1344584","Archaeoglobus fulgidus DSM 8774"],["NCBITaxon%3A2798580","Archaeoglobus neptunius"],["NCBITaxon%3A572546","Archaeoglobus profundus DSM 5631"],["NCBITaxon%3A1872626","Archaeoglobus sp."],["NCBITaxon%3A1934979","Archaeoglobus sp. JdFR-22"],["NCBITaxon%3A1934984","Archaeoglobus sp. JdFR-27"],["NCBITaxon%3A1934988","Archaeoglobus sp. JdFR-31"],["NCBITaxon%3A1934989","Archaeoglobus sp. JdFR-32"],["NCBITaxon%3A1934991","Archaeoglobus sp. JdFR-34"],["NCBITaxon%3A1934992","Archaeoglobus sp. JdFR-35"],["NCBITaxon%3A1934994","Archaeoglobus sp. JdFR-37"],["NCBITaxon%3A1934996","Archaeoglobus sp. JdFR-39"],["NCBITaxon%3A1934998","Archaeoglobus sp. JdFR-41"],["NCBITaxon%3A1915565","Archaeoglobus sp. UBA230"],["NCBITaxon%3A1915566","Archaeoglobus sp. UBA231"],["NCBITaxon%3A1915567","Archaeoglobus sp. UBA234"],["NCBITaxon%3A1915568","Archaeoglobus sp. UBA236"],["NCBITaxon%3A387631","Archaeoglobus sulfaticallidus PM70-1"],["NCBITaxon%3A693661","Archaeoglobus veneficus SNP6"],["NCBITaxon%3A1906665","archaeon"],["NCBITaxon%3A1805013","archaeon 13_1_40CM_2_52_13"],["NCBITaxon%3A1805020","archaeon 13_2_20CM_2_53_6"],["NCBITaxon%3A1866922","archaeon ADurb.Bin336"],["NCBITaxon%3A2005740","archaeon BMS3Abin16"],["NCBITaxon%3A2005741","archaeon BMS3Abin17"],["NCBITaxon%3A2005738","archaeon BMS3Bbin15"],["NCBITaxon%3A2005739","archaeon BMS3Bbin16"],["NCBITaxon%3A1975555","archaeon CG06_land_8_20_14_3_00_37_11"],["NCBITaxon%3A1975558","archaeon CG07_land_8_20_14_0_80_38_8"],["NCBITaxon%3A1975556","archaeon CG10_big_fil_rev_8_21_14_0_10_43_11"],["NCBITaxon%3A1805398","archaeon CG2_30_31_98"],["NCBITaxon%3A1579364","archaeon GW2011_AR1"],["NCBITaxon%3A1579370","archaeon GW2011_AR10"],["NCBITaxon%3A1579371","archaeon GW2011_AR11"],["NCBITaxon%3A1579372","archaeon GW2011_AR13"],["NCBITaxon%3A1579373","archaeon GW2011_AR15"],["NCBITaxon%3A1579375","archaeon GW2011_AR17"],["NCBITaxon%3A1579376","archaeon GW2011_AR18"],["NCBITaxon%3A1579377","archaeon GW2011_AR19"],["NCBITaxon%3A1579378","archaeon GW2011_AR20"],["NCBITaxon%3A1579366","archaeon GW2011_AR4"],["NCBITaxon%3A1579367","archaeon GW2011_AR5"],["NCBITaxon%3A1579369","archaeon GW2011_AR9"],["NCBITaxon%3A2035437","archaeon HR01"],["NCBITaxon%3A2035440","archaeon HR04"],["NCBITaxon%3A2080451","archaeon MnTg01"],["NCBITaxon%3A1797286","archaeon RBG_16_50_20"],["NCBITaxon%3A2137776","archaeon SCG-AAA382B04"],["NCBITaxon%3A1917430","archaeon UBA140"],["NCBITaxon%3A1915609","archaeon UBA168"],["NCBITaxon%3A1917428","archaeon UBA431"],["NCBITaxon%3A1917434","archaeon UBA460"],["NCBITaxon%3A1917431","archaeon UBA490"],["NCBITaxon%3A1917432","archaeon UBA543"],["NCBITaxon%3A1917433","archaeon UBA55"],["NCBITaxon%3A1917429","archaeon UBA583"],["NCBITaxon%3A3138763","Asbonarchaeaceae archaeon (SeqCode)"],["NCBITaxon%3A3138746","Asbonarchaeum danakilense (SeqCode)"],["NCBITaxon%3A3072974","Bathyarchaeum sp. (SeqCode)"],["NCBITaxon%3A3042151","Bathyarchaeum tardum (SeqCode)"],["NCBITaxon%3A3400343","Caldiplasma sukawensis"],["NCBITaxon%3A200415","Caldisphaera lagunensis"],["NCBITaxon%3A1056495","Caldisphaera lagunensis DSM 15908"],["NCBITaxon%3A2060322","Caldisphaera sp."],["NCBITaxon%3A76887","Caldivirga maquilingensis"],["NCBITaxon%3A397948","Caldivirga maquilingensis IC-167"],["NCBITaxon%3A2080243","Caldivirga sp."],["NCBITaxon%3A1714256","Caldivirga sp. MG_3"],["NCBITaxon%3A1650354","Caldivirga sp. MU80"],["NCBITaxon%3A1915569","Caldivirga sp. UBA161"],["NCBITaxon%3A3144226","Calypsonella navitae (SeqCode)"],["NCBITaxon%3A3150762","Calypsonella sp. (SeqCode)"],["NCBITaxon%3A1160895","Candidatus Acidianus copahuensis"],["NCBITaxon%3A2898728","Candidatus Acidifodinimicrobium mancum"],["NCBITaxon%3A3101490","Candidatus Acidifodinimicrobium sp."],["NCBITaxon%3A379547","Candidatus Aciduliprofundum boonei"],["NCBITaxon%3A2060325","Candidatus Aciduliprofundum sp."],["NCBITaxon%3A1935018","Candidatus Aciduliprofundum sp. JdFR-45"],["NCBITaxon%3A673860","Candidatus Aciduliprofundum sp. MAR08-339"],["NCBITaxon%3A1974382","Candidatus Aenigmarchaeota archaeon CG01_land_8_20_14_3_00_37_9"],["NCBITaxon%3A1974383","Candidatus Aenigmarchaeota archaeon CG15_BIG_FIL_POST_REV_8_21_14_020_37_27"],["NCBITaxon%3A1803500","Candidatus Aenigmarchaeota archaeon CG1_02_38_14"],["NCBITaxon%3A1974378","Candidatus Aenigmarchaeota archaeon CG_4_10_14_0_8_um_filter_37_24"],["NCBITaxon%3A1974379","Candidatus Aenigmarchaeota archaeon CG_4_10_14_3_um_filter_37_21"],["NCBITaxon%3A1974380","Candidatus Aenigmarchaeota archaeon CG_4_8_14_3_um_filter_37_24"],["NCBITaxon%3A1974381","Candidatus Aenigmarchaeota archaeon CG_4_9_14_3_um_filter_37_18"],["NCBITaxon%3A2012503","Candidatus Aenigmarchaeota archaeon ex4484_224"],["NCBITaxon%3A2012504","Candidatus Aenigmarchaeota archaeon ex4484_52"],["NCBITaxon%3A2833500","Candidatus Aenigmarchaeota archaeon LH_S4"],["NCBITaxon%3A2833501","Candidatus Aenigmarchaeota archaeon LH_S5"],["NCBITaxon%3A2833502","Candidatus Aenigmarchaeota archaeon LH_S6"],["NCBITaxon%3A2833503","Candidatus Aenigmarchaeota archaeon LH_S7"],["NCBITaxon%3A2833504","Candidatus Aenigmarchaeota archaeon LH_S8"],["NCBITaxon%3A743730","Candidatus Aenigmarchaeum subterraneum SCGC AAA011-O16"],["NCBITaxon%3A3121606","Candidatus Aenigmatarchaeota archaeon"],["NCBITaxon%3A2883549","Candidatus Aenigmatarchaeum sp."],["NCBITaxon%3A2971473","Candidatus Alkanophaga liquidiphilum"],["NCBITaxon%3A2971472","Candidatus Alkanophaga volatiphilum"],["NCBITaxon%3A2971454","Candidatus Alkanophagales archaeon"],["NCBITaxon%3A2250256","Candidatus Altarchaeales archaeon"],["NCBITaxon%3A1933927","Candidatus Altarchaeales archaeon A3"],["NCBITaxon%3A2012506","Candidatus Altarchaeales archaeon ex4484_2"],["NCBITaxon%3A2012508","Candidatus Altarchaeales archaeon ex4484_96"],["NCBITaxon%3A2013673","Candidatus Altarchaeales archaeon HGW-Altarchaeales s-1"],["NCBITaxon%3A1878999","Candidatus Altarchaeales archaeon IMC4"],["NCBITaxon%3A1849261","Candidatus Altarchaeales archaeon WOR_SM1_SCG"],["NCBITaxon%3A3107025","Candidatus Altarchaeia archaeon"],["NCBITaxon%3A2599821","Candidatus Altarchaeota archaeon"],["NCBITaxon%3A1803513","Candidatus Altarchaeum hamiconexum"],["NCBITaxon%3A2817952","Candidatus Altarchaeum sp."],["NCBITaxon%3A2014241","Candidatus Altarchaeum sp. CG03_land_8_20_14_0_80_32_618"],["NCBITaxon%3A2014242","Candidatus Altarchaeum sp. CG12_big_fil_rev_8_21_14_0_65_33_22"],["NCBITaxon%3A1803514","Candidatus Altarchaeum sp. CG2_30_32_3053"],["NCBITaxon%3A2014239","Candidatus Altarchaeum sp. CG_4_8_14_3_um_filter_33_2054"],["NCBITaxon%3A2014240","Candidatus Altarchaeum sp. CG_4_9_14_0_8_um_filter_32_206"],["NCBITaxon%3A2831058","Candidatus Altarchaeum sp. HURL_250"],["NCBITaxon%3A2885744","Candidatus Anstonella stagnisolia"],["NCBITaxon%3A2886383","Candidatus Anstonellaceae archaeon"],["NCBITaxon%3A3058027","Candidatus Anstonellales archaeon"],["NCBITaxon%3A2811097","Candidatus Aramenus sp."],["NCBITaxon%3A3242752","Candidatus Aramenus sp. CH1"],["NCBITaxon%3A1326980","Candidatus Aramenus sulfurataquae"],["NCBITaxon%3A2608793","Candidatus Argoarchaeum ethanivorans"],["NCBITaxon%3A3163616","Candidatus Asgardarchaeum abyssi"],["NCBITaxon%3A3126526","Candidatus Atabeyarchaeum deiterrae"],["NCBITaxon%3A2799005","Candidatus Baldrarchaeota archaeon"],["NCBITaxon%3A2798940","Candidatus Baldrarchaeum yapensis"],["NCBITaxon%3A3107054","Candidatus Bathyarchaeales archaeon"],["NCBITaxon%3A3045160","Candidatus Bathyarchaeia archaeon"],["NCBITaxon%3A2026714","Candidatus Bathyarchaeota archaeon"],["NCBITaxon%3A2709783","Candidatus Bathyarchaeota archaeon A05DMB-2"],["NCBITaxon%3A2735514","Candidatus Bathyarchaeota archaeon A05DMB-3"],["NCBITaxon%3A2735513","Candidatus Bathyarchaeota archaeon A05DMB-4"],["NCBITaxon%3A2735512","Candidatus Bathyarchaeota archaeon A05DMB-5"],["NCBITaxon%3A1779367","Candidatus Bathyarchaeota archaeon B23"],["NCBITaxon%3A1779368","Candidatus Bathyarchaeota archaeon B24"],["NCBITaxon%3A2041147","Candidatus Bathyarchaeota archaeon B24-2"],["NCBITaxon%3A1779370","Candidatus Bathyarchaeota archaeon B26-1"],["NCBITaxon%3A1779371","Candidatus Bathyarchaeota archaeon B26-2"],["NCBITaxon%3A1779372","Candidatus Bathyarchaeota archaeon B63"],["NCBITaxon%3A1700836","Candidatus Bathyarchaeota archaeon BA2"],["NCBITaxon%3A1974385","Candidatus Bathyarchaeota archaeon CG07_land_8_20_14_0_80_47_9"],["NCBITaxon%3A2012509","Candidatus Bathyarchaeota archaeon ex4484_135"],["NCBITaxon%3A2012510","Candidatus Bathyarchaeota archaeon ex4484_205"],["NCBITaxon%3A2012513","Candidatus Bathyarchaeota archaeon ex4484_40"],["NCBITaxon%3A1935112","Candidatus Bathyarchaeota archaeon JdFR-04"],["NCBITaxon%3A1935115","Candidatus Bathyarchaeota archaeon JdFR-07"],["NCBITaxon%3A1797377","Candidatus Bathyarchaeota archaeon RBG_13_38_9"],["NCBITaxon%3A1797379","Candidatus Bathyarchaeota archaeon RBG_13_52_12"],["NCBITaxon%3A1797380","Candidatus Bathyarchaeota archaeon RBG_13_60_20"],["NCBITaxon%3A1797381","Candidatus Bathyarchaeota archaeon RBG_16_48_13"],["NCBITaxon%3A1797382","Candidatus Bathyarchaeota archaeon RBG_16_57_9"],["NCBITaxon%3A1915989","Candidatus Bathyarchaeota archaeon UBA185"],["NCBITaxon%3A1915990","Candidatus Bathyarchaeota archaeon UBA233"],["NCBITaxon%3A1915991","Candidatus Bathyarchaeota archaeon UBA589"],["NCBITaxon%3A3139625","Candidatus Bathycorpusculum acetigenes"],["NCBITaxon%3A3139624","Candidatus Bathycorpusculum acidaminoxidans"],["NCBITaxon%3A3139626","Candidatus Bathycorpusculum fermentans"],["NCBITaxon%3A3139627","Candidatus Bathycorpusculum grumuli"],["NCBITaxon%3A3139628","Candidatus Bathycorpusculum hydrogenotrophicum"],["NCBITaxon%3A3139629","Candidatus Bathycorpusculum soli"],["NCBITaxon%3A2994959","Candidatus Bathycorpusculum sp."],["NCBITaxon%3A3139631","Candidatus Bathycorpusculum termitum"],["NCBITaxon%3A3139630","Candidatus Bathycorpusculum terrae"],["NCBITaxon%3A2973087","Candidatus Benthortus lauensis"],["NCBITaxon%3A2886391","Candidatus Bilamarchaeaceae archaeon"],["NCBITaxon%3A2885759","Candidatus Bilamarchaeum dharawalense"],["NCBITaxon%3A3070761","Candidatus Bilamarchaeum sp."],["NCBITaxon%3A2799003","Candidatus Borrarchaeota archaeon"],["NCBITaxon%3A2846742","Candidatus Borrarchaeum sp."],["NCBITaxon%3A2848170","Candidatus Borrarchaeum weybense"],["NCBITaxon%3A2798939","Candidatus Borrarchaeum yapensis"],["NCBITaxon%3A2815303","Candidatus Brockarchaeota archaeon"],["NCBITaxon%3A2885751","Candidatus Burarchaeum australiense"],["NCBITaxon%3A3060589","Candidatus Burarchaeum sp."],["NCBITaxon%3A3071590","Candidatus Caldarchaeales archaeon"],["NCBITaxon%3A2972665","Candidatus Caldarchaeum sp."],["NCBITaxon%3A311458","Candidatus Caldarchaeum subterraneum"],["NCBITaxon%3A3079264","Candidatus Calditenuaceae archaeon"],["NCBITaxon%3A2035438","Candidatus Calditenuaceae archaeon HR02"],["NCBITaxon%3A1378080","Candidatus Calditenuaceae archaeon JGI OTU-1"],["NCBITaxon%3A3079260","Candidatus Calditenuis fumarioli"],["NCBITaxon%3A3071573","Candidatus Calditenuis sp."],["NCBITaxon%3A3411636","Candidatus Calditenuis sp. GBS_LZ"],["NCBITaxon%3A2928966","Candidatus Culexarchaeum nevadense"],["NCBITaxon%3A2928963","Candidatus Culexarchaeum yellowstonense"],["NCBITaxon%3A2928968","Candidatus Culexmicrobium cathedralense"],["NCBITaxon%3A2928969","Candidatus Culexmicrobium profundum"],["NCBITaxon%3A2928967","Candidatus Culexmicrobium thermophilum"],["NCBITaxon%3A1852841","Candidatus Diapherotrites archaeon ADurb.Bin253"],["NCBITaxon%3A1974403","Candidatus Diapherotrites archaeon CG08_land_8_20_14_0_20_30_16"],["NCBITaxon%3A1974404","Candidatus Diapherotrites archaeon CG08_land_8_20_14_0_20_34_12"],["NCBITaxon%3A1974406","Candidatus Diapherotrites archaeon CG10_big_fil_rev_8_21_14_0_10_31_34"],["NCBITaxon%3A1974407","Candidatus Diapherotrites archaeon CG11_big_fil_rev_8_21_14_0_20_37_9"],["NCBITaxon%3A2833505","Candidatus Diapherotrites archaeon LH_S9"],["NCBITaxon%3A1915992","Candidatus Diapherotrites archaeon UBA493"],["NCBITaxon%3A2766897","Candidatus Ethanoperedens thermophilum"],["NCBITaxon%3A2795018","Candidatus Fermentimicrarchaeum limneticum"],["NCBITaxon%3A2107591","Candidatus Forterrea multitransposorum CG_2015-17_Forterrea_25_41"],["NCBITaxon%3A2879109","Candidatus Forterrea sp."],["NCBITaxon%3A2830916","Candidatus Freyarchaeota archaeon"],["NCBITaxon%3A3345218","Candidatus Gagatemarchaeaceae archaeon"],["NCBITaxon%3A3345212","Candidatus Gagatemarchaeum stordalenia"],["NCBITaxon%3A2614262","Candidatus Geoarchaeota archaeon"],["NCBITaxon%3A2978060","Candidatus Geocrenenecus arthurdayi"],["NCBITaxon%3A2978061","Candidatus Geocrenenecus dongiae"],["NCBITaxon%3A2978059","Candidatus Geocrenenecus huangii"],["NCBITaxon%3A1130285","Candidatus Geocrenenecus sp. JGI 0000106-J15"],["NCBITaxon%3A3107108","Candidatus Geothermarchaeales archaeon"],["NCBITaxon%3A2250273","Candidatus Geothermarchaeota archaeon"],["NCBITaxon%3A1935121","Candidatus Geothermarchaeum rappei"],["NCBITaxon%3A2885741","Candidatus Gugararchaeum adminiculabundum"],["NCBITaxon%3A1776334","Hadarchaeum yellowstonense (SeqCode)"],["NCBITaxon%3A3036171","Candidatus Haiyanarchaeum thermophilum"],["NCBITaxon%3A2945048","Candidatus Haladaptatiplasma halalkaliphilum"],["NCBITaxon%3A2945044","Candidatus Halarchaeoplasma halalkaliphilum"],["NCBITaxon%3A1324957","Candidatus Halobonum tyrrellensis G22"],["NCBITaxon%3A3049170","Candidatus Harpocratesius repetitus"],["NCBITaxon%3A1935119","Candidatus Hecatella orcuttiae"],["NCBITaxon%3A3072965","Candidatus Hecatellales archaeon"],["NCBITaxon%3A1779369","Candidatus Hecatellales archaeon B24"],["NCBITaxon%3A2012511","Candidatus Hecatellales archaeon ex4484_218"],["NCBITaxon%3A2026747","Candidatus Heimdallarchaeota archaeon"],["NCBITaxon%3A1841596","Candidatus Heimdallarchaeota archaeon AB_125"],["NCBITaxon%3A2012493","Candidatus Heimdallarchaeota archaeon B3_Heim"],["NCBITaxon%3A2876573","Candidatus Heimdallarchaeum aukensis"],["NCBITaxon%3A2876572","Candidatus Heimdallarchaeum endolithica"],["NCBITaxon%3A2719382","Candidatus Helarchaeota archaeon"],["NCBITaxon%3A2218536","Candidatus Helarchaeota ASGARD archaeon Hel_GB_A"],["NCBITaxon%3A2218537","Candidatus Helarchaeota ASGARD archaeon Hel_GB_B"],["NCBITaxon%3A2799008","Candidatus Hermodarchaeota archaeon"],["NCBITaxon%3A2798941","Candidatus Hermodarchaeum yapensis"],["NCBITaxon%3A2675329","Candidatus Hikarchaeia archaeon HikBin4"],["NCBITaxon%3A2675330","Candidatus Hikarchaeia archaeon HikBin5"],["NCBITaxon%3A2675326","Candidatus Hikarchaeum yamanae"],["NCBITaxon%3A3045163","Candidatus Hodarchaeaceae archaeon"],["NCBITaxon%3A2800102","Candidatus Hodarchaeota archaeon"],["NCBITaxon%3A2798938","Candidatus Hodarchaeum mangrovi"],["NCBITaxon%3A2014257","Candidatus Huberarchaeum crystalense"],["NCBITaxon%3A2250275","Candidatus Hydrothermarchaeota archaeon"],["NCBITaxon%3A1935129","Hydrothermarchaeum profundi (SeqCode)"],["NCBITaxon%3A1104576","Candidatus Iainarchaeum andersonii SCGC AAA011-E11"],["NCBITaxon%3A3101447","Candidatus Iainarchaeum sp."],["NCBITaxon%3A3036172","Candidatus Jingweiarchaeum tengchongense"],["NCBITaxon%3A3058036","Candidatus Jordarchaeaceae archaeon"],["NCBITaxon%3A3058035","Candidatus Jordarchaeales archaeon"],["NCBITaxon%3A3067279","Candidatus Jordarchaeia archaeon"],["NCBITaxon%3A2846770","Candidatus Jordarchaeum madagascarense"],["NCBITaxon%3A2823883","Candidatus Jordarchaeum sp. JNZ_1113"],["NCBITaxon%3A2823884","Candidatus Jordarchaeum sp. LHC_1308"],["NCBITaxon%3A2799010","Candidatus Kariarchaeota archaeon"],["NCBITaxon%3A2798937","Candidatus Kariarchaeum pelagius"],["NCBITaxon%3A1868214","Candidatus Korarchaeota archaeon NZ13-K"],["NCBITaxon%3A498846","Candidatus Korarchaeum cryptofilum"],["NCBITaxon%3A374847","Candidatus Korarchaeum cryptofilum OPF8"],["NCBITaxon%3A2831942","Candidatus Korarchaeum sp."],["NCBITaxon%3A2951803","Candidatus Lokiarchaeum ossiferum"],["NCBITaxon%3A3345208","Candidatus Lutacidiplasma silvani"],["NCBITaxon%3A3345206","Candidatus Lutacidiplasmatales archaeon"],["NCBITaxon%3A1920749","Candidatus Mancarchaeum acidiphilum"],["NCBITaxon%3A2953049","Candidatus Mancarchaeum sp."],["NCBITaxon%3A1978156","Candidatus Marsarchaeota G1 archaeon BE_D"]]} \ No newline at end of file diff --git a/assets/fleet/cells/TaxonMech--NCBITaxon.json b/assets/fleet/cells/TaxonMech--NCBITaxon.json new file mode 100644 index 0000000..cc48572 --- /dev/null +++ b/assets/fleet/cells/TaxonMech--NCBITaxon.json @@ -0,0 +1 @@ +{"mech":"TaxonMech","prefix":"NCBITaxon","base":"https://culturebotai.github.io/TaxonMech/pages/taxon.html?id=","total":625960,"records":[["NCBITaxon%3A3879924","Abyssiniarchaeum dallolvicinus (SeqCode)"],["NCBITaxon%3A3693715","Acidarchaeum fankouense (SeqCode)"],["NCBITaxon%3A2283","Acidianus ambivalens"],["NCBITaxon%3A41673","Acidianus brierleyi"],["NCBITaxon%3A269667","Acidianus convivator"],["NCBITaxon%3A563177","Acidianus hospitalis"],["NCBITaxon%3A933801","Acidianus hospitalis W1"],["NCBITaxon%3A12915","Acidianus infernus"],["NCBITaxon%3A282676","Acidianus manzaensis"],["NCBITaxon%3A314564","Acidianus pozzuoliensis"],["NCBITaxon%3A1872104","Acidianus sp."],["NCBITaxon%3A1071056","Acidianus sp. A1-3"],["NCBITaxon%3A315459","Acidianus sp. Acii18"],["NCBITaxon%3A315462","Acidianus sp. Acii19"],["NCBITaxon%3A315461","Acidianus sp. Acii25"],["NCBITaxon%3A315460","Acidianus sp. Acii26"],["NCBITaxon%3A513519","Acidianus sp. BT"],["NCBITaxon%3A315458","Acidianus sp. F28"],["NCBITaxon%3A2886040","Acidianus sp. HS-5"],["NCBITaxon%3A2586968","Acidianus sp. MJ2HA"],["NCBITaxon%3A1540082","Acidianus sp. RZ1"],["NCBITaxon%3A1071530","Acidianus sp. SYK-ESO-2"],["NCBITaxon%3A312539","Acidianus sulfidivorans"],["NCBITaxon%3A619593","Acidianus sulfidivorans JP7"],["NCBITaxon%3A146920","Acidianus tengchongensis"],["NCBITaxon%3A518068","Acidianus uzoniensis"],["NCBITaxon%3A2933264","Acidilobaceae archaeon"],["NCBITaxon%3A1915614","Acidilobaceae archaeon UBA158"],["NCBITaxon%3A1915615","Acidilobaceae archaeon UBA162"],["NCBITaxon%3A2268176","Acidilobales archaeon"],["NCBITaxon%3A105851","Acidilobus aceticus"],["NCBITaxon%3A242703","Acidilobus saccharovorans"],["NCBITaxon%3A666510","Acidilobus saccharovorans 345-15"],["NCBITaxon%3A1872109","Acidilobus sp."],["NCBITaxon%3A242702","Acidilobus sp. 124-87"],["NCBITaxon%3A242704","Acidilobus sp. 405-16"],["NCBITaxon%3A242705","Acidilobus sp. 722-67"],["NCBITaxon%3A1577685","Acidilobus sp. 7A"],["NCBITaxon%3A1987488","Acidilobus sp. SCGC AC-742_E15"],["NCBITaxon%3A1987489","Acidilobus sp. SCGC AC-742_M05"],["NCBITaxon%3A2250453","Acidilobus sp. SCGC AD-903-A07"],["NCBITaxon%3A2250454","Acidilobus sp. SCGC AD-903-A15"],["NCBITaxon%3A2250455","Acidilobus sp. SCGC AD-903-D05"],["NCBITaxon%3A2250456","Acidilobus sp. SCGC AD-903-D17"],["NCBITaxon%3A2250457","Acidilobus sp. SCGC AD-903-D20"],["NCBITaxon%3A2250458","Acidilobus sp. SCGC AD-903-F06"],["NCBITaxon%3A2250459","Acidilobus sp. SCGC AD-903-I03"],["NCBITaxon%3A2250460","Acidilobus sp. SCGC AD-903-I23"],["NCBITaxon%3A2250461","Acidilobus sp. SCGC AD-903-J15"],["NCBITaxon%3A2250462","Acidilobus sp. SCGC AD-903-J18"],["NCBITaxon%3A2250463","Acidilobus sp. SCGC AD-903-K10"],["NCBITaxon%3A2250464","Acidilobus sp. SCGC AD-903-K18"],["NCBITaxon%3A2250465","Acidilobus sp. SCGC AD-903-M03"],["NCBITaxon%3A2250466","Acidilobus sp. SCGC AD-903-N04"],["NCBITaxon%3A2250467","Acidilobus sp. SCGC AD-903-N18"],["NCBITaxon%3A2250468","Acidilobus sp. SCGC AD-903-O15"],["NCBITaxon%3A411357","Acidilobus sulfurireducens"],["NCBITaxon%3A507754","Acidiplasma aeolicum"],["NCBITaxon%3A312540","Acidiplasma cupricumulans"],["NCBITaxon%3A1295373","Acidiplasma cupricumulans JCM 13668 = DSM 16651"],["NCBITaxon%3A1872114","Acidiplasma sp."],["NCBITaxon%3A3402690","Acidiplasma sp. BR-02"],["NCBITaxon%3A1293648","Acidiplasma sp. MBA-1"],["NCBITaxon%3A3697131","Acidiplasma sp. YE-1"],["NCBITaxon%3A439481","Aciduliprofundum boonei T469"],["NCBITaxon%3A229980","Aeropyrum camini"],["NCBITaxon%3A1198449","Aeropyrum camini SY1 = JCM 12091"],["NCBITaxon%3A56636","Aeropyrum pernix"],["NCBITaxon%3A272557","Aeropyrum pernix K1"],["NCBITaxon%3A1872399","Aeropyrum sp."],["NCBITaxon%3A568409","Aeropyrum sp. AF1T6.18"],["NCBITaxon%3A3138747","Afararchaeum irisae (SeqCode)"],["NCBITaxon%3A2528703","Aigarchaeota archaeon"],["NCBITaxon%3A1052838","Aigarchaeota archaeon JGI 0000001-A7"],["NCBITaxon%3A1052839","Aigarchaeota archaeon JGI 0000001-B8"],["NCBITaxon%3A1052841","Aigarchaeota archaeon JGI 0000001-H6"],["NCBITaxon%3A1052823","Aigarchaeota archaeon SCGC AAA471-A16"],["NCBITaxon%3A1052825","Aigarchaeota archaeon SCGC AAA471-B22"],["NCBITaxon%3A1052826","Aigarchaeota archaeon SCGC AAA471-D15"],["NCBITaxon%3A1052828","Aigarchaeota archaeon SCGC AAA471-E16"],["NCBITaxon%3A1052830","Aigarchaeota archaeon SCGC AAA471-G05"],["NCBITaxon%3A1052831","Aigarchaeota archaeon SCGC AAA471-I13"],["NCBITaxon%3A1052832","Aigarchaeota archaeon SCGC AAA471-J07"],["NCBITaxon%3A1052833","Aigarchaeota archaeon SCGC AAA471-J08"],["NCBITaxon%3A1233042","ammonia-oxidizing archaeon AR"],["NCBITaxon%3A81399","anaerobic hyperthermophile Gorda1"],["NCBITaxon%3A93517","anaerobic methanogenic archaeon E15-1"],["NCBITaxon%3A93526","anaerobic methanogenic archaeon E15-10"],["NCBITaxon%3A93518","anaerobic methanogenic archaeon E15-2"],["NCBITaxon%3A93519","anaerobic methanogenic archaeon E15-3"],["NCBITaxon%3A93520","anaerobic methanogenic archaeon E15-4"],["NCBITaxon%3A93521","anaerobic methanogenic archaeon E15-5"],["NCBITaxon%3A93522","anaerobic methanogenic archaeon E15-6"],["NCBITaxon%3A93523","anaerobic methanogenic archaeon E15-7"],["NCBITaxon%3A93524","anaerobic methanogenic archaeon E15-8"],["NCBITaxon%3A93525","anaerobic methanogenic archaeon E15-9"],["NCBITaxon%3A93527","anaerobic methanogenic archaeon E30-1"],["NCBITaxon%3A93536","anaerobic methanogenic archaeon E30-10"],["NCBITaxon%3A93528","anaerobic methanogenic archaeon E30-2"],["NCBITaxon%3A93529","anaerobic methanogenic archaeon E30-3"],["NCBITaxon%3A93530","anaerobic methanogenic archaeon E30-4"],["NCBITaxon%3A93531","anaerobic methanogenic archaeon E30-5"],["NCBITaxon%3A93532","anaerobic methanogenic archaeon E30-6"],["NCBITaxon%3A93533","anaerobic methanogenic archaeon E30-7"],["NCBITaxon%3A93534","anaerobic methanogenic archaeon E30-8"],["NCBITaxon%3A93535","anaerobic methanogenic archaeon E30-9"],["NCBITaxon%3A93507","anaerobic methanogenic archaeon ET1-1"],["NCBITaxon%3A93516","anaerobic methanogenic archaeon ET1-10"],["NCBITaxon%3A93508","anaerobic methanogenic archaeon ET1-2"],["NCBITaxon%3A93509","anaerobic methanogenic archaeon ET1-3"],["NCBITaxon%3A93510","anaerobic methanogenic archaeon ET1-4"],["NCBITaxon%3A93511","anaerobic methanogenic archaeon ET1-5"],["NCBITaxon%3A93512","anaerobic methanogenic archaeon ET1-6"],["NCBITaxon%3A93513","anaerobic methanogenic archaeon ET1-7"],["NCBITaxon%3A93514","anaerobic methanogenic archaeon ET1-8"],["NCBITaxon%3A93515","anaerobic methanogenic archaeon ET1-9"],["NCBITaxon%3A1053485","anaerobic methanogenic archaeon GRAU-2"],["NCBITaxon%3A548434","anaerobic methanogenic archaeon SN15"],["NCBITaxon%3A548432","anaerobic methanogenic archaeon SN20"],["NCBITaxon%3A548433","anaerobic methanogenic archaeon SN22"],["NCBITaxon%3A2056317","ANME-2 cluster archaeon"],["NCBITaxon%3A114585","archaeal str. vp183"],["NCBITaxon%3A114587","archaeal str. vp21"],["NCBITaxon%3A89612","archaebacterial symbiont RS406"],["NCBITaxon%3A2511821","Archaeoglobaceae archaeon"],["NCBITaxon%3A3694343","Archaeoglobaceae archaeon EF444597"],["NCBITaxon%3A1748309","Archaeoglobaceae archaeon enrichment culture"],["NCBITaxon%3A3693671","Archaeoglobaceae archaeon SR50"],["NCBITaxon%3A2250258","Archaeoglobales archaeon"],["NCBITaxon%3A1111783","Archaeoglobales archaeon enrichment culture clone B11-A-43"],["NCBITaxon%3A2012529","Archaeoglobales archaeon ex4484_92"],["NCBITaxon%3A2250530","Archaeoglobi archaeon"],["NCBITaxon%3A1935016","Archaeoglobi archaeon JdFR-42"],["NCBITaxon%3A2234","Archaeoglobus fulgidus"],["NCBITaxon%3A224325","Archaeoglobus fulgidus DSM 4304"],["NCBITaxon%3A1344584","Archaeoglobus fulgidus DSM 8774"],["NCBITaxon%3A403219","Archaeoglobus infectus"],["NCBITaxon%3A1121009","Archaeoglobus infectus DSM 18877"],["NCBITaxon%3A138903","Archaeoglobus lithotrophicus"],["NCBITaxon%3A2798580","Archaeoglobus neptunius"],["NCBITaxon%3A84156","Archaeoglobus profundus"],["NCBITaxon%3A572546","Archaeoglobus profundus DSM 5631"],["NCBITaxon%3A1872626","Archaeoglobus sp."],["NCBITaxon%3A403220","Archaeoglobus sp. Arc22"],["NCBITaxon%3A1748302","Archaeoglobus sp. enrichment culture"],["NCBITaxon%3A669409","Archaeoglobus sp. Fe70_19"],["NCBITaxon%3A669410","Archaeoglobus sp. Fe70_20"],["NCBITaxon%3A1934979","Archaeoglobus sp. JdFR-22"],["NCBITaxon%3A1934980","Archaeoglobus sp. JdFR-23"],["NCBITaxon%3A1934981","Archaeoglobus sp. JdFR-24"],["NCBITaxon%3A1934982","Archaeoglobus sp. JdFR-25"],["NCBITaxon%3A1934983","Archaeoglobus sp. JdFR-26"],["NCBITaxon%3A1934984","Archaeoglobus sp. JdFR-27"],["NCBITaxon%3A1934985","Archaeoglobus sp. JdFR-28"],["NCBITaxon%3A1934986","Archaeoglobus sp. JdFR-29"],["NCBITaxon%3A1934987","Archaeoglobus sp. JdFR-30"],["NCBITaxon%3A1934988","Archaeoglobus sp. JdFR-31"],["NCBITaxon%3A1934989","Archaeoglobus sp. JdFR-32"],["NCBITaxon%3A1934990","Archaeoglobus sp. JdFR-33"],["NCBITaxon%3A1934991","Archaeoglobus sp. JdFR-34"],["NCBITaxon%3A1934992","Archaeoglobus sp. JdFR-35"],["NCBITaxon%3A1934993","Archaeoglobus sp. JdFR-36"],["NCBITaxon%3A1934994","Archaeoglobus sp. JdFR-37"],["NCBITaxon%3A1934995","Archaeoglobus sp. JdFR-38"],["NCBITaxon%3A1934996","Archaeoglobus sp. JdFR-39"],["NCBITaxon%3A1934997","Archaeoglobus sp. JdFR-40"],["NCBITaxon%3A1934998","Archaeoglobus sp. JdFR-41"],["NCBITaxon%3A269231","Archaeoglobus sp. NI85-A"],["NCBITaxon%3A269230","Archaeoglobus sp. NS70-A"],["NCBITaxon%3A330389","Archaeoglobus sp. NS-tSRB-2"],["NCBITaxon%3A1798180","Archaeoglobus sp. SCGC AC-335-L13"],["NCBITaxon%3A1915565","Archaeoglobus sp. UBA230"],["NCBITaxon%3A1915566","Archaeoglobus sp. UBA231"],["NCBITaxon%3A1915567","Archaeoglobus sp. UBA234"],["NCBITaxon%3A1915568","Archaeoglobus sp. UBA236"],["NCBITaxon%3A1316941","Archaeoglobus sulfaticallidus"],["NCBITaxon%3A387631","Archaeoglobus sulfaticallidus PM70-1"],["NCBITaxon%3A58290","Archaeoglobus veneficus"],["NCBITaxon%3A693661","Archaeoglobus veneficus SNP6"],["NCBITaxon%3A1906665","archaeon"],["NCBITaxon%3A1805006","archaeon 13_1_20CM_2_51_10"],["NCBITaxon%3A1805007","archaeon 13_1_20CM_2_51_12"],["NCBITaxon%3A1805008","archaeon 13_1_20CM_2_54_9"],["NCBITaxon%3A1805009","archaeon 13_1_20CM_2_63_93"],["NCBITaxon%3A1805010","archaeon 13_1_20CM_3_53_6"],["NCBITaxon%3A1805011","archaeon 13_1_20CM_4_52_8"],["NCBITaxon%3A1805012","archaeon 13_1_20CM_52_20"],["NCBITaxon%3A1805013","archaeon 13_1_40CM_2_52_13"],["NCBITaxon%3A1805014","archaeon 13_1_40CM_2_52_4"],["NCBITaxon%3A1805015","archaeon 13_1_40CM_2_55_8"],["NCBITaxon%3A1805016","archaeon 13_1_40CM_3_53_8"],["NCBITaxon%3A1805017","archaeon 13_1_40CM_4_53_4"],["NCBITaxon%3A1805018","archaeon 13_1_40CM_4_53_8"],["NCBITaxon%3A1805019","archaeon 13_2_20CM_2_52_21"],["NCBITaxon%3A1805020","archaeon 13_2_20CM_2_53_6"],["NCBITaxon%3A210392","archaeon 26-4a1"],["NCBITaxon%3A210393","archaeon 26-4a6"],["NCBITaxon%3A210394","archaeon 26-5a1"],["NCBITaxon%3A210395","archaeon 26-a101"],["NCBITaxon%3A210396","archaeon 26-a134"],["NCBITaxon%3A328513","archaeon #33-9"],["NCBITaxon%3A323739","archaeon 4R"],["NCBITaxon%3A631354","archaeon A1"],["NCBITaxon%3A199002","archaeon 'A215-UMH 22% pond'"],["NCBITaxon%3A98257","archaeon A2.95.53"],["NCBITaxon%3A199004","archaeon 'A311-UMH 31% pond'"],["NCBITaxon%3A199005","archaeon 'A315-UMH 31% pond'"],["NCBITaxon%3A199006","archaeon 'A319-UMH 31% pond'"],["NCBITaxon%3A199007","archaeon 'A356-UMH 31% pond'"],["NCBITaxon%3A199008","archaeon 'A363-UMH 31% pond'"],["NCBITaxon%3A98259","archaeon A8.96.15"],["NCBITaxon%3A98256","archaeon A8.96.42"],["NCBITaxon%3A98258","archaeon A9.96.64"],["NCBITaxon%3A1156706","archaeon A_20"],["NCBITaxon%3A1866922","archaeon ADurb.Bin336"],["NCBITaxon%3A2814545","archaeon AH-315-M20"],["NCBITaxon%3A2579984","archaeon ('Alkanoarchaeia') WYZ-LMO23"],["NCBITaxon%3A199003","archaeon 'AN201-UMH 22% pond'"],["NCBITaxon%3A2036208","archaeon AQ6F"],["NCBITaxon%3A910074","archaeon BC1"],["NCBITaxon%3A910085","archaeon BC10"],["NCBITaxon%3A910088","archaeon BC11"],["NCBITaxon%3A910090","archaeon BC12"],["NCBITaxon%3A910094","archaeon BC14"],["NCBITaxon%3A910095","archaeon BC15"],["NCBITaxon%3A910096","archaeon BC16"],["NCBITaxon%3A910097","archaeon BC17"],["NCBITaxon%3A910098","archaeon BC18"],["NCBITaxon%3A910075","archaeon BC2"],["NCBITaxon%3A910100","archaeon BC20"],["NCBITaxon%3A910101","archaeon BC21"],["NCBITaxon%3A910122","archaeon BC22"],["NCBITaxon%3A910123","archaeon BC23"],["NCBITaxon%3A910124","archaeon BC25"],["NCBITaxon%3A910125","archaeon BC26"],["NCBITaxon%3A910139","archaeon BC27"],["NCBITaxon%3A910140","archaeon BC28"],["NCBITaxon%3A910141","archaeon BC29"],["NCBITaxon%3A910079","archaeon BC3"],["NCBITaxon%3A910142","archaeon BC30"],["NCBITaxon%3A910144","archaeon BC32"],["NCBITaxon%3A910145","archaeon BC33"],["NCBITaxon%3A910160","archaeon BC34"],["NCBITaxon%3A910080","archaeon BC4"],["NCBITaxon%3A910081","archaeon BC5"],["NCBITaxon%3A910082","archaeon BC6"],["NCBITaxon%3A910083","archaeon BC8"],["NCBITaxon%3A910084","archaeon BC9"],["NCBITaxon%3A584993","archaeon Bitterns-U"],["NCBITaxon%3A2005740","archaeon BMS3Abin16"],["NCBITaxon%3A2005741","archaeon BMS3Abin17"],["NCBITaxon%3A2005738","archaeon BMS3Bbin15"],["NCBITaxon%3A2005739","archaeon BMS3Bbin16"],["NCBITaxon%3A1975555","archaeon CG06_land_8_20_14_3_00_37_11"],["NCBITaxon%3A1975558","archaeon CG07_land_8_20_14_0_80_38_8"],["NCBITaxon%3A1975556","archaeon CG10_big_fil_rev_8_21_14_0_10_43_11"],["NCBITaxon%3A1805398","archaeon CG2_30_31_98"],["NCBITaxon%3A1975557","archaeon CG_4_10_14_0_2_um_filter_Archaea_38_6"],["NCBITaxon%3A1975554","archaeon CG_4_8_14_3_um_filter_38_5"],["NCBITaxon%3A413980","archaeon CP.B3"],["NCBITaxon%3A1932700","archaeon D22"],["NCBITaxon%3A115530","archaeon D3.5-B"],["NCBITaxon%3A1293314","archaeon DSFBPG_3R2A"],["NCBITaxon%3A1293315","archaeon DSFBPG_3R2B"],["NCBITaxon%3A1293316","archaeon DSFBPG_4R3A"],["NCBITaxon%3A1293317","archaeon DSFBPG_4R3B"],["NCBITaxon%3A1293318","archaeon DSFBPG_4R3C"],["NCBITaxon%3A1293319","archaeon DSFBPG_5R1B"],["NCBITaxon%3A1293320","archaeon DSFBPG_5R3A"],["NCBITaxon%3A1293321","archaeon DSFBPG_UR1A"],["NCBITaxon%3A1293322","archaeon DSFBPG_UR1B"],["NCBITaxon%3A1293323","archaeon DSFBPG_UR1C"],["NCBITaxon%3A1293324","archaeon DSFBPG_UR1D"],["NCBITaxon%3A1293325","archaeon DSFBPG_UR1E"],["NCBITaxon%3A1293326","archaeon DSFBPG_UR2A"],["NCBITaxon%3A1293327","archaeon DSFBPG_UR2B"],["NCBITaxon%3A1293328","archaeon DSFBPG_UR2D"],["NCBITaxon%3A1293329","archaeon DSFBPG_UR2E"],["NCBITaxon%3A1293330","archaeon DSFBPG_UR2F"],["NCBITaxon%3A1293331","archaeon DSFBPG_UR2G"],["NCBITaxon%3A1293332","archaeon DSFBPG_UR3A"],["NCBITaxon%3A1293333","archaeon DSFBPG_UR3B"],["NCBITaxon%3A1293334","archaeon DSFBPG_UR3C"],["NCBITaxon%3A1293335","archaeon DSFBPG_UR3D"],["NCBITaxon%3A1293336","archaeon DSFBPG_UR3E"],["NCBITaxon%3A1293337","archaeon DSFBPG_UR3F"],["NCBITaxon%3A1293338","archaeon DSFBPG_URC2C"],["NCBITaxon%3A1293339","archaeon DSFBPS_4R3A"],["NCBITaxon%3A1293340","archaeon DSFBPS_UR1A"],["NCBITaxon%3A1293341","archaeon DSFBPS_UR1B"],["NCBITaxon%3A1293342","archaeon DSFBPS_UR1C"],["NCBITaxon%3A1293343","archaeon DSFBPS_UR1D"],["NCBITaxon%3A1293344","archaeon DSFBPS_UR1E"],["NCBITaxon%3A1293345","archaeon DSFBPS_UR1F"],["NCBITaxon%3A1293346","archaeon DSFBPS_UR1G"],["NCBITaxon%3A1293347","archaeon DSFBPS_UR1H"],["NCBITaxon%3A1293348","archaeon DSFBPS_UR2B"],["NCBITaxon%3A1293349","archaeon DSFBPS_UR2C"],["NCBITaxon%3A1293350","archaeon DSFBPS_UR2D"],["NCBITaxon%3A1293351","archaeon DSFBPS_UR2E"]]} \ No newline at end of file diff --git a/assets/fleet/edges/AntibioticMech--TaxonMech.json b/assets/fleet/edges/AntibioticMech--TaxonMech.json new file mode 100644 index 0000000..e6b07ce --- /dev/null +++ b/assets/fleet/edges/AntibioticMech--TaxonMech.json @@ -0,0 +1 @@ +{"a":"AntibioticMech","b":"TaxonMech","base":{"AntibioticMech":"https://culturebotai.github.io/AntibioticMech/pages/","TaxonMech":"https://culturebotai.github.io/TaxonMech/pages/taxon.html?id="},"n":109,"by":{"NCBITaxon":109},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":30,"nb":3868,"a":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A196023","Aeromonas hydrophila subsp. hydrophila"],["NCBITaxon%3A380703","Aeromonas hydrophila subsp. hydrophila ATCC 7966"],["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A35703","Citrobacter amalonaticus"],["NCBITaxon%3A163202","Corynebacterium appendicis"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":22,"nb":422,"a":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"]],"b":[["NCBITaxon%3A1653844","Erwinia carnegieana"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A2058152","Klebsiella grimontii"],["NCBITaxon%3A54291","Klebsiella ornithinolytica"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A1443592","Klebsiella pneumoniae 07A044"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":15,"nb":1075,"a":[["antibacterial/amikacin.html","amikacin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A1311139","Acinetobacter baumannii 016901DP_1"],["NCBITaxon%3A1311140","Acinetobacter baumannii 016901DP_2"],["NCBITaxon%3A1310784","Acinetobacter baumannii 1007214"],["NCBITaxon%3A1310751","Acinetobacter baumannii 1022959"],["NCBITaxon%3A1310586","Acinetobacter baumannii 1031433"]]},{"id":"NCBITaxon:354276","l":"Enterobacter cloacae complex","na":15,"nb":1032,"a":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"]],"b":[["NCBITaxon%3A61645","Enterobacter asburiae"],["NCBITaxon%3A1330532","Enterobacter asburiae B1-3"],["NCBITaxon%3A1330533","Enterobacter asburiae B5-60"],["NCBITaxon%3A1442602","Enterobacter asburiae C1"],["NCBITaxon%3A1298604","Enterobacter asburiae JCM 6051"],["NCBITaxon%3A1421338","Enterobacter asburiae L1"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":13,"nb":4740,"a":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/bromodeoxytopsentin.html","bromodeoxytopsentin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"]],"b":[["NCBITaxon%3A475088","Methanosphaerula palustris"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1389955","Escherichia coli ATCC 35150"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A574","Klebsiella pneumoniae subsp. ozaenae"],["NCBITaxon%3A1218098","Klebsiella pneumoniae subsp. ozaenae NBRC 105683"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":12,"nb":557,"a":[["antibacterial/amikacin.html","amikacin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"]],"b":[["NCBITaxon%3A2073169","Chromobacterium alticapitis"],["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1454219","Pseudomonas aeruginosa 059A"],["NCBITaxon%3A1421538","Pseudomonas aeruginosa 0812"],["NCBITaxon%3A1421545","Pseudomonas aeruginosa 0822"],["NCBITaxon%3A1421531","Pseudomonas aeruginosa 0C2E"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":8,"nb":8,"a":[["antifungal/anidulafungin.html","anidulafungin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/caspofungin.html","caspofungin"],["antifungal/cycloheximide.html","cycloheximide"],["antifungal/micafungin.html","micafungin"],["antifungal/oligomycin-a.html","oligomycin A"]],"b":[["NCBITaxon%3A4932","Saccharomyces cerevisiae"],["NCBITaxon%3A1266529","Saccharomyces cerevisiae BY4743"],["NCBITaxon%3A1218710","Saccharomyces cerevisiae CBS 1585"],["NCBITaxon%3A764102","Saccharomyces cerevisiae FostersB"],["NCBITaxon%3A764101","Saccharomyces cerevisiae FostersO"],["NCBITaxon%3A1220494","Saccharomyces cerevisiae PE-2"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":7,"nb":375,"a":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/vancomycin.html","vancomycin"]],"b":[["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A1352","Enterococcus faecium"],["NCBITaxon%3A1391465","Enterococcus faecium 10/96A"],["NCBITaxon%3A1259824","Enterococcus faecium 13.SD.W.09"],["NCBITaxon%3A1429401","Enterococcus faecium 17282"],["NCBITaxon%3A565659","Enterococcus faecium 1,141,733"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":7,"nb":176,"a":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A90371","Salmonella enterica subsp. enterica serovar Typhimurium"],["NCBITaxon%3A1173928","Salmonella enterica subsp. enterica serovar Typhimurium str. 0052"],["NCBITaxon%3A1114946","Salmonella enterica subsp. enterica serovar Typhimurium str. 00-01036"],["NCBITaxon%3A1173930","Salmonella enterica subsp. enterica serovar Typhimurium str. 0364"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":6,"nb":391,"a":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]],"b":[["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A1260363","Enterococcus faecalis 02-MB-BW-10"],["NCBITaxon%3A1260365","Enterococcus faecalis 02-MB-P-10"],["NCBITaxon%3A1260358","Enterococcus faecalis 06-MB-DW-09"],["NCBITaxon%3A1260359","Enterococcus faecalis 06-MB-S-04"],["NCBITaxon%3A1260360","Enterococcus faecalis 06-MB-S-10"]]},{"id":"NCBITaxon:485","l":"Neisseria gonorrhoeae","na":5,"nb":90,"a":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/tetracycline.html","tetracycline"]],"b":[["NCBITaxon%3A485","Neisseria gonorrhoeae"],["NCBITaxon%3A528345","Neisseria gonorrhoeae 1291"],["NCBITaxon%3A1193404","Neisseria gonorrhoeae 3502"],["NCBITaxon%3A528346","Neisseria gonorrhoeae 35/02"],["NCBITaxon%3A1352347","Neisseria gonorrhoeae ALB_2011_01-02"],["NCBITaxon%3A1351778","Neisseria gonorrhoeae ALB_2011_03_03"]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":5,"nb":20,"a":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/imipenem.html","imipenem"]],"b":[["NCBITaxon%3A548","Klebsiella aerogenes"],["NCBITaxon%3A1308731","Klebsiella aerogenes ADL-323"],["NCBITaxon%3A935296","Klebsiella aerogenes EA1509E"],["NCBITaxon%3A685445","Klebsiella aerogenes FGI35"],["NCBITaxon%3A1028307","Klebsiella aerogenes KCTC 2190"],["NCBITaxon%3A1439320","Klebsiella aerogenes MGH 61"]]},{"id":"NCBITaxon:1283","l":"Staphylococcus haemolyticus","na":5,"nb":7,"a":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/oxacillin.html","oxacillin"]],"b":[["NCBITaxon%3A1283","Staphylococcus haemolyticus"],["NCBITaxon%3A1308739","Staphylococcus haemolyticus ADL-104"],["NCBITaxon%3A1308735","Staphylococcus haemolyticus ADL-204"],["NCBITaxon%3A1095104","Staphylococcus haemolyticus BL-2"],["NCBITaxon%3A1401071","Staphylococcus haemolyticus DNF00585"],["NCBITaxon%3A279808","Staphylococcus haemolyticus JCSC1435"]]},{"id":"NCBITaxon:5207","l":"Cryptococcus neoformans","na":4,"nb":256,"a":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfanilamide.html","sulfanilamide"],["antifungal/fluconazole.html","fluconazole"],["antifungal/voriconazole.html","voriconazole"]],"b":[["NCBITaxon%3A5207","Cryptococcus neoformans"],["NCBITaxon%3A1423905","Cryptococcus neoformans 102-14"],["NCBITaxon%3A1423895","Cryptococcus neoformans 1033"],["NCBITaxon%3A1423910","Cryptococcus neoformans 1035"],["NCBITaxon%3A1423911","Cryptococcus neoformans 1052"],["NCBITaxon%3A1423908","Cryptococcus neoformans 1054"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":4,"nb":118,"a":[["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/oxacillin.html","oxacillin"]],"b":[["NCBITaxon%3A69966","Macrococcoides caseolyticum"],["NCBITaxon%3A1822","Nocardia vaccinii"],["NCBITaxon%3A1210098","Nocardia vaccinii NBRC 15922"],["NCBITaxon%3A1282","Staphylococcus epidermidis"],["NCBITaxon%3A1235440","Staphylococcus epidermidis 12142587"],["NCBITaxon%3A1000590","Staphylococcus epidermidis 14.1.R1.SE"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":4,"nb":51,"a":[["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/trimethoprim.html","trimethoprim"],["antiprotozoal/suramin.html","suramin"],["antiviral/tilorone.html","tilorone"]],"b":[["NCBITaxon%3A1392","Bacillus anthracis"],["NCBITaxon%3A1412844","Bacillus anthracis 52-G"],["NCBITaxon%3A1412843","Bacillus anthracis 8903-G"],["NCBITaxon%3A1412842","Bacillus anthracis 9080-G"],["NCBITaxon%3A1420588","Bacillus anthracis CVCC 40048"],["NCBITaxon%3A1439874","Bacillus anthracis CZC5"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":3,"nb":82,"a":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]],"b":[["NCBITaxon%3A1390","Bacillus amyloliquefaciens"],["NCBITaxon%3A1452","Bacillus atrophaeus"],["NCBITaxon%3A640707","Bacillus atrophaeus ATCC 9372"],["NCBITaxon%3A483913","Bacillus inaquosorum"],["NCBITaxon%3A1236548","Bacillus inaquosorum KCTC 13429"],["NCBITaxon%3A1402","Bacillus licheniformis"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":3,"nb":27,"a":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"]],"b":[["NCBITaxon%3A57706","Citrobacter braakii"],["NCBITaxon%3A1914243","Citrobacter europaeus"],["NCBITaxon%3A546","Citrobacter freundii"],["NCBITaxon%3A1173724","Citrobacter freundii 47N"],["NCBITaxon%3A742730","Citrobacter freundii 4_7_47CFAA"],["NCBITaxon%3A1444046","Citrobacter freundii 5-172-05_S1_C1"]]},{"id":"NCBITaxon:274","l":"Thermus thermophilus","na":3,"nb":8,"a":[["antibacterial/fusidic-acid.html","fusidic acid"],["antibacterial/streptomycin.html","streptomycin"],["unspecified/streptolydigin.html","streptolydigin"]],"b":[["NCBITaxon%3A274","Thermus thermophilus"],["NCBITaxon%3A1316935","Thermus thermophilus ATCC 33923"],["NCBITaxon%3A262724","Thermus thermophilus HB27"],["NCBITaxon%3A300852","Thermus thermophilus HB8"],["NCBITaxon%3A798128","Thermus thermophilus JL-18"],["NCBITaxon%3A762633","Thermus thermophilus SG0.5JP17-16"]]},{"id":"NCBITaxon:1890","l":"Streptomyces antibioticus","na":3,"nb":7,"a":[["antibacterial/indanomycin.html","indanomycin"],["unspecified/oviedomycin.html","oviedomycin"],["unspecified/pentostatin.html","pentostatin"]],"b":[["NCBITaxon%3A67255","Streptomyces achromogenes"],["NCBITaxon%3A67256","Streptomyces achromogenes subsp. achromogenes"],["NCBITaxon%3A1890","Streptomyces antibioticus"],["NCBITaxon%3A1306178","Streptomyces antibioticus JCM 4620"],["NCBITaxon%3A2713664","Streptomyces antibioticus subsp. yamensis"],["NCBITaxon%3A67315","Streptomyces lavenduligriseus"]]},{"id":"NCBITaxon:1047171","l":"Zymoseptoria tritici","na":4,"nb":3,"a":[["antifungal/carboxin.html","carboxin"],["antifungal/fenpicoxamid.html","fenpicoxamid"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/iprodione.html","iprodione"]],"b":[["NCBITaxon%3A1047171","Zymoseptoria tritici"],["NCBITaxon%3A1276532","Zymoseptoria tritici ST99CH_1E4"],["NCBITaxon%3A1276537","Zymoseptoria tritici ST99CH_3D1"]]},{"id":"NCBITaxon:5480","l":"Lodderomyces parapsilosis","na":3,"nb":4,"a":[["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/voriconazole.html","voriconazole"]],"b":[["NCBITaxon%3A48076","Marinobacterium iners"],["NCBITaxon%3A5480","Lodderomyces parapsilosis"],["NCBITaxon%3A1231521","Lodderomyces parapsilosis CAB50-2638"],["NCBITaxon%3A578454","Lodderomyces parapsilosis CDC317"]]},{"id":"NCBITaxon:746128","l":"Aspergillus fumigatus","na":4,"nb":3,"a":[["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/terbinafine.html","terbinafine"],["antifungal/voriconazole.html","voriconazole"]],"b":[["NCBITaxon%3A746128","Aspergillus fumigatus"],["NCBITaxon%3A451804","Aspergillus fumigatus A1163"],["NCBITaxon%3A41122","Aspergillus fumigatus var. fumigatus"]]},{"id":"NCBITaxon:1773","l":"Mycobacterium tuberculosis","na":2,"nb":2946,"a":[["antibacterial/sulfanilamide.html","sulfanilamide"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]],"b":[["NCBITaxon%3A1773","Mycobacterium tuberculosis"],["NCBITaxon%3A668339","Mycobacterium tuberculosis 00_1695"],["NCBITaxon%3A1455192","Mycobacterium tuberculosis 01-Cr4_ND_3_A"],["NCBITaxon%3A1455078","Mycobacterium tuberculosis 01-Ps1_0_A"],["NCBITaxon%3A515616","Mycobacterium tuberculosis 02_1987"],["NCBITaxon%3A1455200","Mycobacterium tuberculosis 02-Cr4_ND_3_B"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":2,"nb":79,"a":[["antibacterial/mupirocin.html","mupirocin"],["antifungal/2-4-diacetylphloroglucinol.html","2,4-diacetylphloroglucinol"]],"b":[["NCBITaxon%3A1931223","Caballeronia sp."],["NCBITaxon%3A89065","Pseudomonas abietaniphila"],["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1123912","Pseudomonas auricularis"],["NCBITaxon%3A930166","Pseudomonas brassicacearum"],["NCBITaxon%3A129817","Pseudomonas brenneri"]]},{"id":"NCBITaxon:58346","l":"Streptomyces platensis","na":2,"nb":8,"a":[["antibacterial/platencin.html","platencin"],["antibacterial/platensimycin.html","platensimycin"]],"b":[["NCBITaxon%3A249580","Streptomyces glebosus"],["NCBITaxon%3A249582","Streptomyces libani subsp. rufus"],["NCBITaxon%3A1920","Streptomyces nigrescens"],["NCBITaxon%3A58346","Streptomyces platensis"],["NCBITaxon%3A1649334","Streptomyces platensis subsp. clarensis"],["NCBITaxon%3A285579","Streptomyces platensis subsp. malvinus"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":7,"nb":2,"a":[["antibacterial/brefeldin-a.html","brefeldin A"],["antifungal/anidulafungin.html","anidulafungin"],["antifungal/caspofungin.html","caspofungin"],["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/micafungin.html","micafungin"]],"b":[["NCBITaxon%3A5476","Candida albicans"],["NCBITaxon%3A1182531","Candida albicans 3153A"]]},{"id":"NCBITaxon:40559","l":"Botrytis cinerea","na":4,"nb":2,"a":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/iprodione.html","iprodione"],["antifungal/pyrisoxazole.html","pyrisoxazole"]],"b":[["NCBITaxon%3A40559","Botrytis cinerea"],["NCBITaxon%3A999810","Botrytis cinerea T4"]]},{"id":"NCBITaxon:405948","l":"Saccharopolyspora erythraea NRRL 2338","na":4,"nb":2,"a":[["antibacterial/erythromycin-a.html","erythromycin A"],["unspecified/erythromycin-b.html","erythromycin B"],["unspecified/erythromycin-c.html","erythromycin C"],["unspecified/erythromycin-d.html","erythromycin D"]],"b":[["NCBITaxon%3A1836","Saccharopolyspora erythraea"],["NCBITaxon%3A405948","Saccharopolyspora erythraea NRRL 2338"]]},{"id":"NCBITaxon:1299","l":"Deinococcus radiodurans","na":2,"nb":3,"a":[["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/linezolid.html","linezolid"]],"b":[["NCBITaxon%3A1299","Deinococcus radiodurans"],["NCBITaxon%3A243230","Deinococcus radiodurans R1 = ATCC 13939 = DSM 20539"],["NCBITaxon%3A47478","Deinococcus sp."]]},{"id":"NCBITaxon:1867","l":"Actinoplanes teichomyceticus","na":3,"nb":2,"a":[["antibacterial/teicoplanin.html","teicoplanin"],["unspecified/teicoplanin-a2-2.html","teicoplanin A2-2"],["unspecified/teicoplanin-a2-3.html","teicoplanin A2-3"]],"b":[["NCBITaxon%3A1867","Actinoplanes teichomyceticus"],["NCBITaxon%3A457423","Actinoplanes teichomyceticus ATCC 31121"]]},{"id":"NCBITaxon:1223523","l":"Streptomyces mobaraensis NBRC 13819 = DSM 40847","na":2,"nb":2,"a":[["antibacterial/bleomycin-a2.html","bleomycin A2"],["antibacterial/bleomycin-b2.html","bleomycin B2"]],"b":[["NCBITaxon%3A35621","Streptomyces mobaraensis"],["NCBITaxon%3A1223523","Streptomyces mobaraensis NBRC 13819 = DSM 40847"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":2,"nb":2,"a":[["antibacterial/streptothricin-f.html","streptothricin F"],["unspecified/streptothricin-d.html","streptothricin D"]],"b":[["NCBITaxon%3A1928","Streptomyces rochei"],["NCBITaxon%3A885435","Streptomyces rochei subsp. volubilis"]]},{"id":"NCBITaxon:5482","l":"Candida tropicalis","na":2,"nb":2,"a":[["antifungal/fluconazole.html","fluconazole"],["antifungal/voriconazole.html","voriconazole"]],"b":[["NCBITaxon%3A5482","Candida tropicalis"],["NCBITaxon%3A1312901","Candida tropicalis ATCC 200956"]]},{"id":"NCBITaxon:1496","l":"Clostridioides difficile","na":1,"nb":296,"a":[["antibacterial/fidaxomicin.html","fidaxomicin"]],"b":[["NCBITaxon%3A1496","Clostridioides difficile"],["NCBITaxon%3A997827","Clostridioides difficile 002-P50-2011"],["NCBITaxon%3A997828","Clostridioides difficile 050-P50-2011"],["NCBITaxon%3A699033","Clostridioides difficile 2007855"],["NCBITaxon%3A1151306","Clostridioides difficile 342"],["NCBITaxon%3A1151307","Clostridioides difficile 360"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":1,"nb":287,"a":[["unspecified/%CE%B1-mangostin.html","α-mangostin"]],"b":[["NCBITaxon%3A632","Yersinia pestis"],["NCBITaxon%3A1345710","Yersinia pestis 1045"],["NCBITaxon%3A1330535","Yersinia pestis 113"],["NCBITaxon%3A755859","Yersinia pestis 12"],["NCBITaxon%3A1345703","Yersinia pestis 1412"],["NCBITaxon%3A1345704","Yersinia pestis 1413"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":1,"nb":183,"a":[["antibacterial/fosfomycin.html","fosfomycin"]],"b":[["NCBITaxon%3A86840","Pseudomonas cannabina"],["NCBITaxon%3A53409","Pseudomonas coronafaciens"],["NCBITaxon%3A29438","Pseudomonas savastanoi"],["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A1204471","Pseudomonas syringae BRIP34876"]]},{"id":"NCBITaxon:263","l":"Francisella tularensis","na":1,"nb":117,"a":[["unspecified/%CE%B1-mangostin.html","α-mangostin"]],"b":[["NCBITaxon%3A984129","Francisella cf. novicida Fx1"],["NCBITaxon%3A676032","Francisella cf. tularensis subsp. novicida 3523"],["NCBITaxon%3A263","Francisella tularensis"],["NCBITaxon%3A1367846","Francisella tularensis 99A-2628"],["NCBITaxon%3A545771","Francisella tularensis B-SA"],["NCBITaxon%3A1410527","Francisella tularensis FSC069"]]},{"id":"NCBITaxon:1764","l":"Mycobacterium avium","na":1,"nb":76,"a":[["antibacterial/trimethoprim.html","trimethoprim"]],"b":[["NCBITaxon%3A1764","Mycobacterium avium"],["NCBITaxon%3A1392002","Mycobacterium avium 05-4293"],["NCBITaxon%3A1392001","Mycobacterium avium 09-5983"],["NCBITaxon%3A1235987","Mycobacterium avium 100"],["NCBITaxon%3A1235988","Mycobacterium avium 101"],["NCBITaxon%3A243243","Mycobacterium avium 104"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":1,"nb":47,"a":[["unspecified/chir-090.html","CHIR-090"]],"b":[["NCBITaxon%3A630","Yersinia enterocolitica"],["NCBITaxon%3A947561","Yersinia enterocolitica IP2222"],["NCBITaxon%3A1243181","Yersinia enterocolitica IP 10393"],["NCBITaxon%3A1443113","Yersinia enterocolitica LC20"],["NCBITaxon%3A947557","Yersinia enterocolitica NFO"],["NCBITaxon%3A150052","Yersinia enterocolitica subsp. enterocolitica"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":1,"nb":32,"a":[["antibacterial/althiomycin.html","althiomycin"]],"b":[["NCBITaxon%3A2703793","Serratia bockelmannii"],["NCBITaxon%3A615","Serratia marcescens"],["NCBITaxon%3A1257036","Serratia marcescens 12"],["NCBITaxon%3A1255611","Serratia marcescens 448"],["NCBITaxon%3A1333586","Serratia marcescens AB42556419-isolate1"],["NCBITaxon%3A1400186","Serratia marcescens BIDMC 44"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":13,"a":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]],"b":[["NCBITaxon%3A1773","Mycobacterium tuberculosis"],["NCBITaxon%3A83332","Mycobacterium tuberculosis H37Rv"],["NCBITaxon%3A747078","Mycobacterium tuberculosis H37Rv_2009"],["NCBITaxon%3A928249","Mycobacterium tuberculosis H37Rv_ideR_mutant_ST22"],["NCBITaxon%3A757417","Mycobacterium tuberculosis H37RvAE"],["NCBITaxon%3A757419","Mycobacterium tuberculosis H37RvCO"]]},{"id":"NCBITaxon:53446","l":"Streptomyces cinnamoneus","na":1,"nb":11,"a":[["antibacterial/bicozamycin.html","bicozamycin"]],"b":[["NCBITaxon%3A53446","Streptomyces cinnamoneus"],["NCBITaxon%3A173776","Streptomyces cinnamoneus subsp. albosporus"],["NCBITaxon%3A173777","Streptomyces cinnamoneus subsp. azacoluta"],["NCBITaxon%3A173778","Streptomyces cinnamoneus subsp. lanosus"],["NCBITaxon%3A1521191","Streptomyces cinnamoneus subsp. monicae"],["NCBITaxon%3A173779","Streptomyces cinnamoneus subsp. sparsus"]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":1,"nb":6,"a":[["antibacterial/fosfomycin.html","fosfomycin"]],"b":[["NCBITaxon%3A1906","Streptomyces fradiae"],["NCBITaxon%3A1319510","Streptomyces fradiae ATCC 10745 = DSM 40063"],["NCBITaxon%3A285449","Streptomyces fradiae subsp. acinicolor"],["NCBITaxon%3A2871172","Streptomyces fradiae V-1-3"],["NCBITaxon%3A66894","Streptomyces griseobrunneus"],["NCBITaxon%3A1909","Streptomyces griseolus"]]},{"id":"NCBITaxon:37326","l":"Nocardia brasiliensis","na":1,"nb":6,"a":[["antibacterial/brasiliquinone-b.html","brasiliquinone B"]],"b":[["NCBITaxon%3A1824","Nocardia asteroides"],["NCBITaxon%3A37326","Nocardia brasiliensis"],["NCBITaxon%3A1133849","Nocardia brasiliensis ATCC 700358"],["NCBITaxon%3A1406859","Nocardia brasiliensis IFM 10847"],["NCBITaxon%3A1206724","Nocardia brasiliensis NBRC 14402"],["NCBITaxon%3A37328","Nocardia carnea"]]},{"id":"NCBITaxon:68280","l":"Streptomyces violaceusniger","na":1,"nb":6,"a":[["antibacterial/nigericin.html","nigericin"]],"b":[["NCBITaxon%3A1912","Streptomyces hygroscopicus"],["NCBITaxon%3A68042","Streptomyces hygroscopicus subsp. hygroscopicus"],["NCBITaxon%3A33900","Streptomyces murinus"],["NCBITaxon%3A114686","Streptomyces phaeoluteigriseus"],["NCBITaxon%3A68280","Streptomyces violaceusniger"],["NCBITaxon%3A653045","Streptomyces violaceusniger Tu 4113"]]},{"id":"NCBITaxon:271","l":"Thermus aquaticus","na":1,"nb":5,"a":[["antimycobacterial/rifampicin.html","rifampicin"]],"b":[["NCBITaxon%3A271","Thermus aquaticus"],["NCBITaxon%3A1123387","Thermus aquaticus DSM 625"],["NCBITaxon%3A498848","Thermus aquaticus Y51MC23"],["NCBITaxon%3A274","Thermus thermophilus"],["NCBITaxon%3A300852","Thermus thermophilus HB8"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":1,"nb":5,"a":[["antibacterial/althiomycin.html","althiomycin"]],"b":[["NCBITaxon%3A34","Myxococcus xanthus"],["NCBITaxon%3A246197","Myxococcus xanthus DK 1622"],["NCBITaxon%3A1198133","Myxococcus xanthus DZ2"],["NCBITaxon%3A1198538","Myxococcus xanthus DZF1"],["NCBITaxon%3A675543","Myxococcus xanthus NewJersey2"]]},{"id":"NCBITaxon:536","l":"Chromobacterium violaceum","na":1,"nb":5,"a":[["unspecified/romidepsin.html","romidepsin"]],"b":[["NCBITaxon%3A1382803","Chromobacterium amazonense"],["NCBITaxon%3A686831","Chromobacterium piscinae"],["NCBITaxon%3A3055134","Chromobacterium sp. CCUG 30098"],["NCBITaxon%3A536","Chromobacterium violaceum"],["NCBITaxon%3A243365","Chromobacterium violaceum ATCC 12472"]]},{"id":"NCBITaxon:5478","l":"Nakaseomyces glabratus","na":1,"nb":5,"a":[["antifungal/fluconazole.html","fluconazole"]],"b":[["NCBITaxon%3A5478","Nakaseomyces glabratus"],["NCBITaxon%3A1231519","Nakaseomyces glabratus CAB52-4041"],["NCBITaxon%3A1406948","Nakaseomyces glabratus CCTCC M202019"],["NCBITaxon%3A1398155","Nakaseomyces glabratus M202019"],["NCBITaxon%3A1403403","Nakaseomyces glabratus UOB301"]]},{"id":"NCBITaxon:5518","l":"Fusarium graminearum","na":5,"nb":1,"a":[["antifungal/carbendazim.html","carbendazim"],["antifungal/difenoconazole.html","difenoconazole"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/prochloraz.html","prochloraz"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]],"b":[["NCBITaxon%3A5518","Fusarium graminearum"]]},{"id":"NCBITaxon:318829","l":"Magnaporthe oryzae","na":4,"nb":1,"a":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/carboxin.html","carboxin"],["antifungal/carpropamid.html","carpropamid"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]],"b":[["NCBITaxon%3A318829","Pyricularia oryzae"]]},{"id":"NCBITaxon:117187","l":"Fusarium verticillioides","na":3,"nb":1,"a":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/fludioxonil.html","fludioxonil"]],"b":[["NCBITaxon%3A117187","Fusarium verticillioides"]]},{"id":"NCBITaxon:162425","l":"Aspergillus nidulans","na":1,"nb":3,"a":[["antifungal/thiabendazole.html","thiabendazole"]],"b":[["NCBITaxon%3A162425","Aspergillus nidulans"],["NCBITaxon%3A286159","Aspergillus nidulans var. acristatus"],["NCBITaxon%3A286160","Aspergillus nidulans var. dentatus"]]},{"id":"NCBITaxon:451804","l":"Aspergillus fumigatus (strain CBS 144.89 / FGSC A1163 / CEA10)","na":3,"nb":1,"a":[["antifungal/itraconazole.html","itraconazole"],["antifungal/terbinafine.html","terbinafine"],["antifungal/voriconazole.html","voriconazole"]],"b":[["NCBITaxon%3A451804","Aspergillus fumigatus A1163"]]},{"id":"NCBITaxon:46429","l":"Sphingobium chlorophenolicum","na":1,"nb":3,"a":[["antifungal/pentachlorophenol.html","pentachlorophenol"]],"b":[["NCBITaxon%3A46429","Sphingobium chlorophenolicum"],["NCBITaxon%3A690566","Sphingobium chlorophenolicum L-1"],["NCBITaxon%3A1219044","Sphingobium chlorophenolicum NBRC 16172"]]},{"id":"NCBITaxon:54571","l":"Streptomyces venezuelae","na":1,"nb":3,"a":[["antibacterial/methymycin.html","methymycin"]],"b":[["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A54571","Streptomyces venezuelae"],["NCBITaxon%3A953739","Streptomyces venezuelae ATCC 10712"]]},{"id":"NCBITaxon:578454","l":"","na":3,"nb":1,"a":[["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/voriconazole.html","voriconazole"]],"b":[["NCBITaxon%3A578454","Lodderomyces parapsilosis CDC317"]]},{"id":"NCBITaxon:67283","l":"Streptomyces candidus","na":1,"nb":3,"a":[["unspecified/pirazofurin.html","pirazofurin"]],"b":[["NCBITaxon%3A76021","Amycolatopsis coloradensis"],["NCBITaxon%3A67283","Streptomyces candidus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:690256","l":"Colletotrichum gloeosporioides","na":3,"nb":1,"a":[["antifungal/difenoconazole.html","difenoconazole"],["antifungal/prochloraz.html","prochloraz"],["antifungal/propiconazole.html","propiconazole"]],"b":[["NCBITaxon%3A690256","Colletotrichum fructicola"]]},{"id":"NCBITaxon:1079985","l":"Streptomyces chartreusis NRRL 3882","na":1,"nb":2,"a":[["unspecified/tunicamycin-b1.html","tunicamycin B1"]],"b":[["NCBITaxon%3A1969","Streptomyces chartreusis"],["NCBITaxon%3A1079985","Streptomyces chartreusis NRRL 3882"]]},{"id":"NCBITaxon:1310114","l":"Mycobacterium tuberculosis CAS/NITR204","na":2,"nb":1,"a":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfanilamide.html","sulfanilamide"]],"b":[["NCBITaxon%3A1310114","Mycobacterium tuberculosis CAS/NITR204"]]},{"id":"NCBITaxon:212423","l":"Streptomyces kaniharaensis","na":2,"nb":1,"a":[["unspecified/coformycin.html","coformycin"],["unspecified/formycin-a.html","formycin A"]],"b":[["NCBITaxon%3A212423","Streptomyces kaniharaensis"]]},{"id":"NCBITaxon:316284","l":"Streptomyces noursei ATCC 11455","na":1,"nb":2,"a":[["antifungal/nystatin-a1.html","nystatin A1"]],"b":[["NCBITaxon%3A1971","Streptomyces noursei"],["NCBITaxon%3A316284","Streptomyces noursei ATCC 11455"]]},{"id":"NCBITaxon:36651","l":"Penicillium digitatum","na":2,"nb":1,"a":[["antifungal/pyrifenox.html","pyrifenox"],["antifungal/triflumizole.html","triflumizole"]],"b":[["NCBITaxon%3A36651","Penicillium digitatum"]]},{"id":"NCBITaxon:412963","l":"","na":1,"nb":2,"a":[["unspecified/rhizoxin.html","rhizoxin"]],"b":[["NCBITaxon%3A412963","Mycetohabitans rhizoxinica"],["NCBITaxon%3A882378","Mycetohabitans rhizoxinica HKI 454"]]},{"id":"NCBITaxon:43658","l":"Pseudoalteromonas rubra","na":1,"nb":2,"a":[["unspecified/prodigiosin.html","prodigiosin"]],"b":[["NCBITaxon%3A43658","Pseudoalteromonas rubra"],["NCBITaxon%3A1117318","Pseudoalteromonas rubra DSM 6842"]]},{"id":"NCBITaxon:467194","l":"Streptomyces sp. CNQ-418","na":2,"nb":1,"a":[["antibacterial/marinopyrrole-a.html","(−)-marinopyrrole A"],["antibacterial/marinopyrrole-b.html","(−)-marinopyrrole B"]],"b":[["NCBITaxon%3A467194","Streptomyces sp. CNQ-418"]]},{"id":"NCBITaxon:47763","l":"Streptomyces lydicus","na":1,"nb":2,"a":[["unspecified/streptolydigin.html","streptolydigin"]],"b":[["NCBITaxon%3A47763","Streptomyces lydicus"],["NCBITaxon%3A1382545","Streptomyces lydicus A01"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":1,"nb":2,"a":[["antifungal/voriconazole.html","voriconazole"]],"b":[["NCBITaxon%3A5059","Aspergillus flavus"],["NCBITaxon%3A332952","Aspergillus flavus NRRL3357"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":1,"nb":2,"a":[["antifungal/carboxin.html","carboxin"]],"b":[["NCBITaxon%3A5062","Aspergillus oryzae"],["NCBITaxon%3A510516","Aspergillus oryzae RIB40"]]},{"id":"NCBITaxon:5074","l":"Penicillium brevicompactum","na":1,"nb":2,"a":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]],"b":[["NCBITaxon%3A1337893","Streptomyces bernensis"],["NCBITaxon%3A5074","Penicillium brevicompactum"]]},{"id":"NCBITaxon:5141","l":"Neurospora crassa","na":1,"nb":2,"a":[["antifungal/carbendazim.html","carbendazim"]],"b":[["NCBITaxon%3A5141","Neurospora crassa"],["NCBITaxon%3A367110","Neurospora crassa OR74A"]]},{"id":"NCBITaxon:527005","l":"Yersinia ruckeri ATCC 29473","na":1,"nb":2,"a":[["antibacterial/holomycin.html","holomycin"]],"b":[["NCBITaxon%3A29486","Yersinia ruckeri"],["NCBITaxon%3A527005","Yersinia ruckeri ATCC 29473"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":1,"nb":2,"a":[["antiprotozoal/emetine.html","emetine"]],"b":[["NCBITaxon%3A5833","Plasmodium falciparum"],["NCBITaxon%3A5843","Plasmodium falciparum NF54"]]},{"id":"NCBITaxon:68214","l":"Streptomyces griseochromogenes","na":1,"nb":2,"a":[["antifungal/blasticidin-s.html","blasticidin S"]],"b":[["NCBITaxon%3A68214","Streptomyces griseochromogenes"],["NCBITaxon%3A285477","Streptomyces griseochromogenes subsp. suitaensis"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":2,"a":[["antibacterial/lysocin-e.html","lysocin E"]],"b":[["NCBITaxon%3A72226","Lysobacter sp."],["NCBITaxon%3A1645665","Solilutibacter silvestris"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":1,"nb":1,"a":[["antibacterial/nocardamine.html","nocardamine"]],"b":[["NCBITaxon%3A100226","Streptomyces coelicolor A3(2)"]]},{"id":"NCBITaxon:112498","l":"Ramularia collo-cygni","na":1,"nb":1,"a":[["antifungal/carboxin.html","carboxin"]],"b":[["NCBITaxon%3A112498","Ramularia collo-cygni"]]},{"id":"NCBITaxon:1156913","l":"","na":1,"nb":1,"a":[["antibacterial/vancomycin.html","vancomycin"]],"b":[["NCBITaxon%3A1156913","Amycolatopsis orientalis HCCB10007"]]},{"id":"NCBITaxon:1159556","l":"Ustilaginoidea virens","na":1,"nb":1,"a":[["antifungal/azoxystrobin.html","azoxystrobin"]],"b":[["NCBITaxon%3A1159556","Ustilaginoidea virens"]]},{"id":"NCBITaxon:1352936","l":"Streptomyces roseochromogenus subsp. oscitans DS 12.976","na":1,"nb":1,"a":[["antibacterial/clorobiocin.html","clorobiocin"]],"b":[["NCBITaxon%3A1352936","Streptomyces roseochromogenus subsp. oscitans DS 12.976"]]},{"id":"NCBITaxon:1433842","l":"Hapalosiphon welwitschii UTEX B 1830","na":1,"nb":1,"a":[["antibacterial/3-z-2-isocyanovinyl-indole.html","3-[(Z)-2-isocyanovinyl]indole"]],"b":[["NCBITaxon%3A1433842","Hapalosiphon welwitschii UTEX B 1830"]]},{"id":"NCBITaxon:1469403","l":"Streptomyces sp. ZJ306","na":1,"nb":1,"a":[["antiprotozoal/ikarugamycin.html","ikarugamycin"]],"b":[["NCBITaxon%3A1469403","Streptomyces sp. ZJ306"]]},{"id":"NCBITaxon:1654360","l":"Photobacterium galatheae","na":1,"nb":1,"a":[["antibacterial/holomycin.html","holomycin"]],"b":[["NCBITaxon%3A1654360","Photobacterium galatheae"]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":1,"nb":1,"a":[["antibacterial/clavulanic-acid.html","clavulanic acid"]],"b":[["NCBITaxon%3A1901","Streptomyces clavuligerus"]]},{"id":"NCBITaxon:1907","l":"Streptomyces glaucescens","na":1,"nb":1,"a":[["antibacterial/tetracenomycin-c.html","tetracenomycin C"]],"b":[["NCBITaxon%3A1907","Streptomyces glaucescens"]]},{"id":"NCBITaxon:1979465","l":"Phoma betae","na":1,"nb":1,"a":[["antiviral/aphidicolin.html","aphidicolin"]],"b":[["NCBITaxon%3A1979465","Neocamarosporium betae"]]},{"id":"NCBITaxon:2583819","l":"Streptomyces sp. DASNCL29","na":1,"nb":1,"a":[["antibacterial/nigericin.html","nigericin"]],"b":[["NCBITaxon%3A2583819","Streptomyces sp. DASNCL29"]]},{"id":"NCBITaxon:264951","l":"Paecilomyces variotii","na":1,"nb":1,"a":[["antibacterial/m-viriditoxin.html","(M)-viriditoxin"]],"b":[["NCBITaxon%3A264951","Paecilomyces variotii"]]},{"id":"NCBITaxon:27337","l":"Verticillium dahliae","na":1,"nb":1,"a":[["antifungal/carbendazim.html","carbendazim"]],"b":[["NCBITaxon%3A27337","Verticillium dahliae"]]},{"id":"NCBITaxon:2878388","l":"Streptomyces sp. SCSIO 03032","na":1,"nb":1,"a":[["unspecified/piericidin-a.html","piericidin A"]],"b":[["NCBITaxon%3A2878388","Streptomyces marincola"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":1,"nb":1,"a":[["antifungal/voriconazole.html","voriconazole"]],"b":[["NCBITaxon%3A332952","Aspergillus flavus NRRL3357"]]},{"id":"NCBITaxon:36650","l":"Penicillium aethiopicum","na":1,"nb":1,"a":[["unspecified/viridicatumtoxin.html","viridicatumtoxin"]],"b":[["NCBITaxon%3A36650","Penicillium aethiopicum"]]},{"id":"NCBITaxon:367110","l":"Neurospora crassa (strain ATCC 24698 / 74-OR23-1A / CBS 708.71 / DSM 1257 / FGSC 987)","na":1,"nb":1,"a":[["antifungal/carbendazim.html","carbendazim"]],"b":[["NCBITaxon%3A367110","Neurospora crassa OR74A"]]},{"id":"NCBITaxon:41951","l":"Streptomyces argillaceus","na":1,"nb":1,"a":[["unspecified/mithramycin.html","mithramycin"]],"b":[["NCBITaxon%3A41951","Streptomyces argillaceus"]]},{"id":"NCBITaxon:4754","l":"Pneumocystis carinii","na":1,"nb":1,"a":[["antibacterial/trimethoprim.html","trimethoprim"]],"b":[["NCBITaxon%3A4754","Pneumocystis carinii"]]},{"id":"NCBITaxon:5076","l":"Penicillium chrysogenum","na":1,"nb":1,"a":[["unspecified/isopenicillin-n.html","isopenicillin N"]],"b":[["NCBITaxon%3A5076","Penicillium chrysogenum"]]},{"id":"NCBITaxon:5082","l":"Penicillium roqueforti","na":1,"nb":1,"a":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]],"b":[["NCBITaxon%3A5082","Penicillium roqueforti"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae (strain ATCC 42149 / RIB 40)","na":1,"nb":1,"a":[["antifungal/carboxin.html","carboxin"]],"b":[["NCBITaxon%3A510516","Aspergillus oryzae RIB40"]]},{"id":"NCBITaxon:5127","l":"Fusarium fujikuroi","na":1,"nb":1,"a":[["antifungal/carbendazim.html","carbendazim"]],"b":[["NCBITaxon%3A5127","Fusarium fujikuroi"]]},{"id":"NCBITaxon:52","l":"Chondromyces crocatus","na":1,"nb":1,"a":[["unspecified/chondrochloren-a.html","chondrochloren A"]],"b":[["NCBITaxon%3A52","Chondromyces crocatus"]]},{"id":"NCBITaxon:5270","l":"","na":1,"nb":1,"a":[["antifungal/carboxin.html","carboxin"]],"b":[["NCBITaxon%3A5270","Mycosarcoma maydis"]]},{"id":"NCBITaxon:5661","l":"Leishmania donovani","na":1,"nb":1,"a":[["antiprotozoal/dihydrobetulinic-acid.html","dihydrobetulinic acid"]],"b":[["NCBITaxon%3A5661","Leishmania donovani"]]},{"id":"NCBITaxon:668825","l":"Streptomyces sp. ATCC 700974","na":1,"nb":1,"a":[["antibacterial/albomycin-%CE%B41.html","albomycin δ1"]],"b":[["NCBITaxon%3A668825","Streptomyces sp. ATCC 700974"]]},{"id":"NCBITaxon:67593","l":"Phytophthora sojae","na":1,"nb":1,"a":[["antifungal/borrelidin.html","borrelidin"]],"b":[["NCBITaxon%3A67593","Phytophthora sojae"]]},{"id":"NCBITaxon:68264","l":"Streptomyces rishiriensis","na":1,"nb":1,"a":[["antibacterial/coumermycin-a1.html","coumermycin A1"]],"b":[["NCBITaxon%3A68264","Streptomyces rishiriensis"]]},{"id":"NCBITaxon:686309","l":"Micromonospora haikouensis","na":1,"nb":1,"a":[["unspecified/coformycin.html","coformycin"]],"b":[["NCBITaxon%3A686309","Micromonospora haikouensis"]]},{"id":"NCBITaxon:889487","l":"Streptomyces sp. S4","na":1,"nb":1,"a":[["antifungal/antimycin-a.html","antimycin A"]],"b":[["NCBITaxon%3A889487","Streptomyces sp. S4"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/CellStructureMech--ProteinTraitsMech.json b/assets/fleet/edges/CellStructureMech--ProteinTraitsMech.json index 1ba19db..7a308e7 100644 --- a/assets/fleet/edges/CellStructureMech--ProteinTraitsMech.json +++ b/assets/fleet/edges/CellStructureMech--ProteinTraitsMech.json @@ -1 +1 @@ -{"a":"CellStructureMech","b":"ProteinTraitsMech","base":{"CellStructureMech":"https://culturebotai.github.io/CellStructureMech/pages/structures/","ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record="},"n":1058,"by":{"GO":737,"UniProt":155,"NCBITaxon":77,"InterPro":64,"CHEBI":15,"Pfam":10},"terms":[{"id":"GO:0032991","l":"protein-containing complex","na":37,"nb":17037,"a":[["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/stalk_crossband.html","stalk crossband"],["cytoskeleton/eisosome_filament.html","eisosome filament"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["other/chaperonin_containing_t_complex.html","chaperonin-containing T-complex"],["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["ComplexPortal%3ACPX-5225","28S mitochondrial small ribosomal subunit"],["ComplexPortal%3ACPX-5301","28S mitochondrial small ribosomal subunit"],["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["ComplexPortal%3ACPX-10315","37S mitochondrial small ribosomal subunit"],["ComplexPortal%3ACPX-1603","37S mitochondrial small ribosomal subunit"],["ComplexPortal%3ACPX-5226","39S mitochondrial large ribosomal subunit"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":31,"nb":145,"a":[["appendage/curli.html","curli"],["appendage/p_pilus.html","P pilus"],["appendage/pilus.html","pilus"],["appendage/type_i_pilus.html","type I pilus"],["cytoskeleton/parm_filament.html","ParM filament"],["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]],"b":[["IDPO%3A0000033","flexible linker"],["IDPO%3A0000014","order to disorder"],["IDPO%3A0000004","pre-molten globule"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"]]},{"id":"NCBITaxon:3055","l":"Chlamydomonas reinhardtii","na":58,"nb":27,"a":[["appendage/ciliary_membrane.html","ciliary membrane"],["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"],["appendage/mastigoneme.html","mastigoneme"],["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_a_tubule_inner_sheath.html","axonemal A tubule inner sheath"]],"b":[["Pfam%3APF01333","Apocytochrome F, C-terminal"],["Pfam%3APF16639","Apocytochrome F, N-terminal"],["Pfam%3APF00430","ATP synthase B/B' CF(0)"],["Pfam%3APF00401","ATP synthase, Delta/Epsilon chain, long alpha-helix domain"],["Pfam%3APF21771","CFAP58 central coiled coil"],["Pfam%3APF27956","CFAP99 V-shaped coiled-coil domain"]]},{"id":"GO:0016020","l":"membrane","na":23,"nb":3003,"a":[["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["envelope/cell_outer_membrane.html","cell outer membrane"],["envelope/cellular_bud_membrane.html","cellular bud membrane"],["envelope/plasma_membrane.html","plasma membrane"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"]],"b":[["ComplexPortal%3ACPX-1813","1,3-beta-D-glucan synthase complex, FKS2-RHO1 variant"],["ComplexPortal%3ACPX-4313","Aliphatic sulfonate ABC transporter complex"],["ComplexPortal%3ACPX-4314","Arabinose ABC transporter complex"],["ComplexPortal%3ACPX-4318","Arginine ABC transporter complex, artI variant"],["ComplexPortal%3ACPX-4319","Arginine ABC transporter complex, artJ variant"],["ComplexPortal%3ACPX-6308","ATP10B-CDC50A P4-ATPase complex"]]},{"id":"GO:0043231","l":"intracellular membrane-bounded organelle","na":22,"nb":930,"a":[["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"],["membrane_organelle/exoneme.html","exoneme"],["membrane_organelle/ferrosome.html","ferrosome"],["membrane_organelle/golgi_apparatus.html","Golgi apparatus"]],"b":[["GO%3A0020022","acidocalcisome"],["GO%3A0044222","anammoxosome"],["GO%3A0033099","attachment organelle"],["GO%3A0005801","cis-Golgi network"],["GO%3A0005783","endoplasmic reticulum"],["GO%3A0005793","endoplasmic reticulum-Golgi intermediate compartment"]]},{"id":"NCBITaxon:99287","l":"Salmonella typhimurium (strain LT2 / SGSC1412 / ATCC 700720)","na":16,"nb":167,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"],["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"]],"b":[["Pfam%3APF16031","TonB polyproline region"],["Pfam%3APF13521","AAA domain"],["Pfam%3APF26341","tRNA 2-selenouridine synthase AAA domain"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"],["Pfam%3APF09317","Acyl-CoA dehydrogenase, C-terminal, bacterial type"],["Pfam%3APF06315","Isocitrate dehydrogenase kinase/phosphatase (AceK) kinase domain"]]},{"id":"GO:0005856","l":"cytoskeleton","na":16,"nb":148,"a":[["cytoskeleton/alfa_filament.html","AlfA filament"],["cytoskeleton/bactofilin_filament.html","bactofilin filament"],["cytoskeleton/bilobe_structure.html","bilobe structure"],["cytoskeleton/btubab_bacterial_microtubule.html","BtubAB bacterial microtubule"],["cytoskeleton/cetz_filament.html","CetZ filament"],["cytoskeleton/ciliary_basal_body.html","ciliary basal body"]],"b":[["GO%3A0015629","actin cytoskeleton"],["GO%3A0030863","cortical cytoskeleton"],["GO%3A0005856","cytoskeleton"],["GO%3A0045111","intermediate filament cytoskeleton"],["GO%3A0015630","microtubule cytoskeleton"],["GO%3A0033011","perinuclear theca"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":15,"nb":17470,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]],"b":[["EC%3A1.1.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.16.-.-","Oxidizing metal ions"],["EC%3A1.18.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.7.-","With an iron-sulfur protein as acceptor"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":14,"nb":15,"a":[["cytoskeleton/alfa_filament.html","AlfA filament"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]],"b":[["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["Pfam%3APF14562","Restriction endonuclease BglI"],["Pfam%3APF09195","Restriction endonuclease BglII/BglIII"],["Pfam%3APF09208","Restriction endonuclease MspI"]]},{"id":"GO:0005737","l":"cytoplasm","na":13,"nb":2018,"a":[["envelope/plasma_membrane.html","plasma membrane"],["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"],["membrane_organelle/mitosome.html","mitosome"]],"b":[["ComplexPortal%3ACPX-3921","2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["ComplexPortal%3ACPX-1599","40S cytosolic small ribosomal subunit"],["ComplexPortal%3ACPX-5223","40S cytosolic small ribosomal subunit"],["ComplexPortal%3ACPX-5261","40S cytosolic small ribosomal subunit"],["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"]]},{"id":"GO:0005789","l":"endoplasmic reticulum membrane","na":13,"nb":218,"a":[["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"],["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"],["membrane_organelle/endoplasmic_reticulum_lumen.html","endoplasmic reticulum lumen"],["membrane_organelle/endoplasmic_reticulum_membrane.html","endoplasmic reticulum membrane"],["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"],["other/copii_vesicle_coat.html","COPII vesicle coat"]],"b":[["ComplexPortal%3ACPX-8021","BOS complex, NOMO1 variant"],["ComplexPortal%3ACPX-8022","BOS complex, NOMO2 variant"],["ComplexPortal%3ACPX-8023","BOS complex, NOMO3 variant"],["ComplexPortal%3ACPX-2211","Commander complex"],["ComplexPortal%3ACPX-6701","Dehydrodolichyl diphosphate synthase complex"],["ComplexPortal%3ACPX-6268","Dolichol-phosphate mannosyltransferase complex"]]},{"id":"GO:0005743","l":"mitochondrial inner membrane","na":13,"nb":108,"a":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"],["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrial_intermembrane_space.html","mitochondrial intermembrane space"],["membrane_organelle/mitochondrial_matrix.html","mitochondrial matrix"]],"b":[["ComplexPortal%3ACPX-5225","28S mitochondrial small ribosomal subunit"],["ComplexPortal%3ACPX-5301","28S mitochondrial small ribosomal subunit"],["ComplexPortal%3ACPX-1603","37S mitochondrial small ribosomal subunit"],["ComplexPortal%3ACPX-5226","39S mitochondrial large ribosomal subunit"],["ComplexPortal%3ACPX-5302","39S mitochondrial large ribosomal subunit"],["ComplexPortal%3ACPX-1602","54S mitochondrial large ribosomal subunit"]]},{"id":"GO:0010008","l":"endosome membrane","na":13,"nb":60,"a":[["membrane_organelle/early_endosome_membrane.html","early endosome membrane"],["membrane_organelle/endosome.html","endosome"],["membrane_organelle/endosome_lumen.html","endosome lumen"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/late_endosome_membrane.html","late endosome membrane"]],"b":[["ComplexPortal%3ACPX-2211","Commander complex"],["ComplexPortal%3ACPX-5424","Endosomal SNARE complex PEP12-VTI1-SYN8-SNC1"],["ComplexPortal%3ACPX-5461","Endosomal SNARE complex PEP12-VTI1-SYN8-SNC2"],["ComplexPortal%3ACPX-5421","Endosomal SNARE complex PEP12-VTI1-SYN8-YKT6"],["ComplexPortal%3ACPX-5423","Endosomal SNARE complex PEP12-VTI1-TLG1-SNC1"],["ComplexPortal%3ACPX-5462","Endosomal SNARE complex PEP12-VTI1-TLG1-SNC2"]]},{"id":"GO:0009767","l":"photosynthetic electron transport chain","na":13,"nb":13,"a":[["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/photosystem_i.html","photosystem I"],["energy_complex/photosystem_ii.html","photosystem II"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]],"b":[["GO%3A0009767","photosynthetic electron transport chain"],["GO%3A0009773","photosynthetic electron transport in photosystem I"],["GO%3A0009772","photosynthetic electron transport in photosystem II"],["NCBIfam%3ATIGR01332","cytochrome b559 subunit alpha"],["NCBIfam%3ATIGR01333","cytochrome b559 subunit beta"],["NCBIfam%3ATIGR01156","cytochrome b6-f complex subunit IV"]]},{"id":"GO:0000139","l":"Golgi membrane","na":12,"nb":67,"a":[["membrane_organelle/cis_golgi_network_membrane.html","cis-Golgi network membrane"],["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/golgi_apparatus.html","Golgi apparatus"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"]],"b":[["ComplexPortal%3ACPX-7803","COPI vesicle coat complex, COPG1-COPZ1 variant"],["ComplexPortal%3ACPX-7970","COPI vesicle coat complex, COPG1-COPZ2 variant"],["ComplexPortal%3ACPX-7969","COPI vesicle coat complex, COPG2-COPZ1 variant"],["ComplexPortal%3ACPX-5424","Endosomal SNARE complex PEP12-VTI1-SYN8-SNC1"],["ComplexPortal%3ACPX-5461","Endosomal SNARE complex PEP12-VTI1-SYN8-SNC2"],["ComplexPortal%3ACPX-5421","Endosomal SNARE complex PEP12-VTI1-SYN8-YKT6"]]},{"id":"GO:0005768","l":"endosome","na":12,"nb":50,"a":[["membrane_organelle/early_endosome.html","early endosome"],["membrane_organelle/endosome.html","endosome"],["membrane_organelle/endosome_lumen.html","endosome lumen"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/recycling_endosome.html","recycling endosome"]],"b":[["ComplexPortal%3ACPX-1153","BLOC-1 complex"],["ComplexPortal%3ACPX-6241","CHEVI tethering complex"],["ComplexPortal%3ACPX-362","Heparanase complex"],["GO%3A0005769","early endosome"],["GO%3A0036019","endolysosome"],["GO%3A0005768","endosome"]]},{"id":"GO:0005930","l":"axoneme","na":12,"nb":26,"a":[["appendage/cilium.html","cilium"],["appendage/paraflagellar_rod.html","paraflagellar rod"],["cytoskeleton/axonemal_central_apparatus.html","axonemal central apparatus"],["cytoskeleton/axonemal_doublet_microtubule.html","axonemal doublet microtubule"],["cytoskeleton/axonemal_dynein_complex.html","axonemal dynein complex"],["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"]],"b":[["ComplexPortal%3ACPX-8086","Nexin-dynein regulatory complex"],["ComplexPortal%3ACPX-2626","Outer dynein arm-docking complex"],["ComplexPortal%3ACPX-8163","Radial spoke complex, ciliiar variant"],["GO%3A0005930","axoneme"],["Pfam%3APF24161","Coiled-coil domain-containing protein 39"],["PANTHER%3APTHR46625","72 KDA INOSITOL POLYPHOSPHATE 5-PHOSPHATASE"]]},{"id":"GO:0030659","l":"cytoplasmic vesicle membrane","na":12,"nb":24,"a":[["membrane_organelle/autophagosome_membrane.html","autophagosome membrane"],["membrane_organelle/clathrin_coated_vesicle_membrane.html","clathrin-coated vesicle membrane"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"],["membrane_organelle/cvt_vesicle_membrane.html","Cvt vesicle membrane"],["membrane_organelle/cytoplasmic_vesicle.html","cytoplasmic vesicle"],["membrane_organelle/cytoplasmic_vesicle_lumen.html","cytoplasmic vesicle lumen"]],"b":[["ComplexPortal%3ACPX-8427","ZNT1-ZNT3 proton-coupled zinc antiporter complex"],["ComplexPortal%3ACPX-8428","ZNT2-ZNT3 proton-coupled zinc antiporter complex"],["GO%3A0032578","aleurone grain membrane"],["GO%3A0030661","chitosome membrane"],["GO%3A0030662","coated vesicle membrane"],["GO%3A0031164","contractile vacuolar membrane"]]},{"id":"GO:0097525","l":"spliceosomal snRNP complex","na":12,"nb":18,"a":[["ribonucleoprotein/u11_snrnp.html","U11 snRNP"],["ribonucleoprotein/u11_u12_snrnp.html","U11/U12 snRNP"],["ribonucleoprotein/u12_snrnp.html","U12 snRNP"],["ribonucleoprotein/u1_snrnp.html","U1 snRNP"],["ribonucleoprotein/u2_snrnp.html","U2 snRNP"],["ribonucleoprotein/u4_snrnp.html","U4 snRNP"]],"b":[["GO%3A0071003","penta-snRNP complex"],["GO%3A0071024","SL snRNP"],["GO%3A0097525","spliceosomal snRNP complex"],["GO%3A0097526","spliceosomal tri-snRNP complex"],["GO%3A0005685","U1 snRNP"],["GO%3A0005692","U11 snRNP"]]},{"id":"GO:0042651","l":"thylakoid membrane","na":12,"nb":14,"a":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/phycobilisome.html","phycobilisome"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"]],"b":[["GO%3A0070118","organellar chromatophore thylakoid membrane"],["GO%3A0031676","plasma membrane-derived thylakoid membrane"],["GO%3A0055035","plastid thylakoid membrane"],["GO%3A0042651","thylakoid membrane"],["NCBIfam%3ANF013497","Apocytochrome F, C-terminal"],["NCBIfam%3ATIGR01156","cytochrome b6-f complex subunit IV"]]},{"id":"GO:0031410","l":"cytoplasmic vesicle","na":11,"nb":138,"a":[["membrane_organelle/chitosome.html","chitosome"],["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/cvt_vesicle.html","Cvt vesicle"],["membrane_organelle/cytoplasmic_vesicle.html","cytoplasmic vesicle"],["membrane_organelle/cytoplasmic_vesicle_lumen.html","cytoplasmic vesicle lumen"],["membrane_organelle/cytoplasmic_vesicle_membrane.html","cytoplasmic vesicle membrane"]],"b":[["GO%3A0033095","aleurone grain"],["GO%3A1990006","amorphous vesicle"],["GO%3A0043702","carotenoid vesicle"],["GO%3A0045009","chitosome"],["GO%3A0062247","chloroplast vesicle"],["GO%3A0097721","ciliary vesicle"]]},{"id":"GO:0043233","l":"organelle lumen","na":11,"nb":36,"a":[["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/endoplasmic_reticulum_lumen.html","endoplasmic reticulum lumen"],["membrane_organelle/esterosome_lumen.html","esterosome lumen"],["membrane_organelle/glycosome_lumen.html","glycosome lumen"],["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/hydrogenosome_lumen.html","hydrogenosome lumen"]],"b":[["GO%3A0070013","intracellular organelle lumen"],["GO%3A0043233","organelle lumen"],["GO%3A0034591","rhoptry lumen"],["GO%3A0120203","rod photoreceptor disc lumen"],["GO%3A0031983","vesicle lumen"],["PANTHER%3APTHR13457","BAP28"]]},{"id":"GO:0005886","l":"plasma membrane","na":10,"nb":861,"a":[["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["appendage/prostheca.html","prostheca"],["envelope/cellular_bud_membrane.html","cellular bud membrane"],["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"],["envelope/plasma_membrane.html","plasma membrane"]],"b":[["ComplexPortal%3ACPX-2838","3M complex"],["ComplexPortal%3ACPX-850","AHNAK - Annexin A2 - S100-A10 complex"],["ComplexPortal%3ACPX-6581","Alpha-beta T cell receptor complex, TRBC1 variant"],["ComplexPortal%3ACPX-6482","Alpha-beta T cell receptor complex, TRBC2 variant"],["ComplexPortal%3ACPX-2188","Amiloride-sensitive sodium channel complex, alpha-beta-gamma"],["ComplexPortal%3ACPX-3582","AMT1-1 - AMT1-3 heterotrimer, variant 1"]]},{"id":"GO:0005794","l":"Golgi apparatus","na":10,"nb":93,"a":[["membrane_organelle/cis_golgi_network.html","cis-Golgi network"],["membrane_organelle/cis_golgi_network_membrane.html","cis-Golgi network membrane"],["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"],["membrane_organelle/golgi_apparatus.html","Golgi apparatus"],["membrane_organelle/golgi_cisterna.html","Golgi cisterna"],["membrane_organelle/golgi_cisterna_membrane.html","Golgi cisterna membrane"]],"b":[["ComplexPortal%3ACPX-26603","ATP9A-DOP1B-MON2, golgi transporter complex"],["ComplexPortal%3ACPX-26602","DOP1A-MON2, golgi-endosome traffic complex"],["ComplexPortal%3ACPX-8422","HAS1-HAS2 hyaluronan biosynthesis complex"],["ComplexPortal%3ACPX-8410","HAS1-HAS3 hyaluronan biosynthesis complex"],["ComplexPortal%3ACPX-8481","HAS1 hyaluronan biosynthesis complex"],["ComplexPortal%3ACPX-8424","HAS2-HAS3 hyaluronan biosynthesis complex"]]},{"id":"GO:0000776","l":"kinetochore","na":10,"nb":59,"a":[["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"],["other/cbf3_complex.html","CBF3 complex"],["other/coma_complex.html","COMA complex"],["other/dash_complex.html","DASH complex"],["other/kinetochore.html","kinetochore"]],"b":[["ComplexPortal%3ACPX-1898","CBF3 complex"],["ComplexPortal%3ACPX-1156","Central kinetochore CTF19 complex"],["ComplexPortal%3ACPX-10081","DASH complex"],["ComplexPortal%3ACPX-5644","Kinetochore KNL1 complex"],["ComplexPortal%3ACPX-5702","Kinetochore KNL1 complex"],["ComplexPortal%3ACPX-1186","Kinetochore MIS12 complex"]]},{"id":"GO:0005874","l":"microtubule","na":10,"nb":50,"a":[["cytoskeleton/ciliary_basal_body.html","ciliary basal body"],["cytoskeleton/funis.html","funis"],["cytoskeleton/intraconoid_microtubule.html","intraconoid microtubule"],["cytoskeleton/median_body.html","median body"],["cytoskeleton/microtubule.html","microtubule"],["cytoskeleton/mitotic_spindle.html","mitotic spindle"]],"b":[["ComplexPortal%3ACPX-806","Ndc80 complex"],["ComplexPortal%3ACPX-4143","Pyrin inflammasome"],["ComplexPortal%3ACPX-4244","Pyrin inflammasome"],["ComplexPortal%3ACPX-811","Ska1 complex"],["ComplexPortal%3ACPX-2572","Tubulin polyglutamylase complex"],["GO%3A0005881","cytoplasmic microtubule"]]},{"id":"GO:0009536","l":"plastid","na":10,"nb":33,"a":[["membrane_organelle/apicoplast.html","apicoplast"],["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/nucleomorph.html","nucleomorph"],["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/plastid.html","plastid"]],"b":[["GO%3A0009501","amyloplast"],["GO%3A0020011","apicoplast"],["GO%3A0009507","chloroplast"],["GO%3A0009509","chromoplast"],["GO%3A0009842","cyanelle"],["GO%3A0009513","etioplast"]]},{"id":"GO:0072583","l":"clathrin-dependent endocytosis","na":10,"nb":18,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle.html","clathrin-coated endocytic vesicle"],["membrane_organelle/clathrin_coated_endocytic_vesicle_membrane.html","clathrin-coated endocytic vesicle membrane"],["membrane_organelle/clathrin_coated_vesicle.html","clathrin-coated vesicle"],["other/ap_2_adaptor_complex.html","AP-2 adaptor complex"],["other/clathrin_coat.html","clathrin coat"],["other/clathrin_coat_of_coated_pit.html","clathrin coat of coated pit"]],"b":[["ComplexPortal%3ACPX-5149","AP-2 Adaptor complex, alpha1 variant"],["ComplexPortal%3ACPX-5152","AP-2 Adaptor complex, alpha1 variant"],["ComplexPortal%3ACPX-5150","AP-2 Adaptor complex, alpha2 variant"],["ComplexPortal%3ACPX-5153","AP-2 Adaptor complex, alpha2 variant"],["ComplexPortal%3ACPX-26725","Clathrin, endocytosis-mediating complex, CLTA-CLTB mixed lattice variant"],["ComplexPortal%3ACPX-26726","Clathrin, endocytosis-mediating complex, CLTA-CLTB mixed lattice variant"]]},{"id":"GO:0005682","l":"U5 snRNP","na":10,"nb":13,"a":[["ribonucleoprotein/u12_type_catalytic_step_1_spliceosome.html","U12-type catalytic step 1 spliceosome"],["ribonucleoprotein/u12_type_catalytic_step_2_spliceosome.html","U12-type catalytic step 2 spliceosome"],["ribonucleoprotein/u12_type_post_mrna_release_spliceosomal_complex.html","U12-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u12_type_post_spliceosomal_complex.html","U12-type post-spliceosomal complex"],["ribonucleoprotein/u2_type_catalytic_step_1_spliceosome.html","U2-type catalytic step 1 spliceosome"],["ribonucleoprotein/u2_type_catalytic_step_2_spliceosome.html","U2-type catalytic step 2 spliceosome"]],"b":[["ComplexPortal%3ACPX-43","Sm complex"],["ComplexPortal%3ACPX-6033","Sm complex"],["ComplexPortal%3ACPX-26421","U5 small nuclear ribonucleoprotein complete complex"],["ComplexPortal%3ACPX-26552","U5 small nuclear ribonucleoprotein complex, AAR2 variant"],["ComplexPortal%3ACPX-30","U5 small nuclear ribonucleoprotein complex, AAR2 variant"],["ComplexPortal%3ACPX-29","U5 small nuclear ribonucleoprotein complex"]]},{"id":"NCBITaxon:44689","l":"Dictyostelium discoideum","na":9,"nb":151,"a":[["membrane_organelle/contractile_vacuole.html","contractile vacuole"],["membrane_organelle/contractile_vacuole_complex.html","contractile vacuole complex"],["membrane_organelle/esterosome.html","esterosome"],["membrane_organelle/esterosome_lumen.html","esterosome lumen"],["membrane_organelle/esterosome_membrane.html","esterosome membrane"],["membrane_organelle/phagocytic_vesicle.html","phagocytic vesicle"]],"b":[["IDPO%3A0000002","disorder"],["IDPO%3A0000030","entropic chain"],["IDPO%3A0000006","order"],["IDPO%3A0000058","self-activation"],["Pfam%3APF23297","Highly reducing polyketide synthase sdgA, C-terminal ACP domain"],["Pfam%3APF09192","Actin-fragmin kinase, catalytic"]]},{"id":"GO:0005643","l":"nuclear pore","na":9,"nb":41,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nucleus.html","nucleus"],["other/nuclear_pore.html","nuclear pore"],["other/nuclear_pore_central_transport_channel.html","nuclear pore central transport channel"],["other/nuclear_pore_cytoplasmic_filaments.html","nuclear pore cytoplasmic filaments"],["other/nuclear_pore_inner_ring.html","nuclear pore inner ring"]],"b":[["ComplexPortal%3ACPX-4747","E3 ligase (RANBP2) complex"],["ComplexPortal%3ACPX-4921","E3 ligase (RANBP2) complex"],["ComplexPortal%3ACPX-2568","Nuclear pore complex"],["ComplexPortal%3ACPX-4474","Nuclear pore complex"],["ComplexPortal%3ACPX-824","Nuclear pore complex"],["ComplexPortal%3ACPX-873","Nuclear pore complex"]]},{"id":"GO:0019684","l":"photosynthesis, light reaction","na":9,"nb":39,"a":[["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"]],"b":[["GO%3A0019684","photosynthesis, light reaction"],["NCBIfam%3ANF058510","bifunctional rod-capping linker CpcD/ferredoxin--NADP reductase PetH"],["NCBIfam%3ATIGR01332","cytochrome b559 subunit alpha"],["NCBIfam%3ATIGR01333","cytochrome b559 subunit beta"],["NCBIfam%3ANF043009","cytochrome c-554 Puf2C"],["NCBIfam%3ANF040862","light-harvesting antenna LH1, beta subunit"]]},{"id":"GO:0060205","l":"cytoplasmic vesicle lumen","na":9,"nb":18,"a":[["membrane_organelle/autophagosome_lumen.html","autophagosome lumen"],["membrane_organelle/clathrin_coated_vesicle_lumen.html","clathrin-coated vesicle lumen"],["membrane_organelle/copi_coated_vesicle_lumen.html","COPI-coated vesicle lumen"],["membrane_organelle/copii_coated_vesicle_lumen.html","COPII-coated vesicle lumen"],["membrane_organelle/cvt_vesicle_lumen.html","Cvt vesicle lumen"],["membrane_organelle/cytoplasmic_vesicle.html","cytoplasmic vesicle"]],"b":[["GO%3A0034422","aleurone grain lumen"],["GO%3A0060202","clathrin-sculpted acetylcholine transport vesicle lumen"],["GO%3A0061201","clathrin-sculpted gamma-aminobutyric acid transport vesicle lumen"],["GO%3A0060204","clathrin-sculpted glutamate transport vesicle lumen"],["GO%3A0070082","clathrin-sculpted monoamine transport vesicle lumen"],["GO%3A0106172","COPI-coated vesicle lumen"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":15,"nb":9,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]],"b":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF25954","CusB-like, beta-barrel domain"],["Pfam%3APF13438","Domain of unknown function (DUF4113)"],["Pfam%3APF03767","HAD superfamily, subfamily IIIB (Acid phosphatase)"],["Pfam%3APF03496","ADP-ribosyltransferase exoenzyme"]]},{"id":"GO:0009941","l":"chloroplast envelope","na":9,"nb":12,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_inner_membrane.html","chloroplast inner membrane"],["membrane_organelle/chloroplast_intermembrane_space.html","chloroplast intermembrane space"],["membrane_organelle/chloroplast_membrane.html","chloroplast membrane"],["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"]],"b":[["GO%3A0009941","chloroplast envelope"],["PANTHER%3APTHR47283","ENT-KAURENE OXIDASE, CHLOROPLASTIC"],["PANTHER%3APTHR36737","EXPRESSED PROTEIN"],["PANTHER%3APTHR31038","EXPRESSED PROTEIN-RELATED"],["PANTHER%3APTHR34048","LOW-DENSITY RECEPTOR-LIKE PROTEIN"],["PANTHER%3APTHR34809","MALTOSE EXCESS PROTEIN 1, CHLOROPLASTIC-RELATED"]]},{"id":"GO:0030119","l":"AP-type membrane coat adaptor complex","na":9,"nb":12,"a":[["other/ap_3_adaptor_complex.html","AP-3 adaptor complex"],["other/ap_4_adaptor_complex.html","AP-4 adaptor complex"],["other/ap_5_adaptor_complex.html","AP-5 adaptor complex"],["other/ap_type_membrane_coat_adaptor_complex.html","AP-type membrane coat adaptor complex"],["other/clathrin_coat.html","clathrin coat"],["other/clathrin_coat_of_endocytic_vesicle.html","clathrin coat of endocytic vesicle"]],"b":[["GO%3A0030123","AP-3 adaptor complex"],["GO%3A0030124","AP-4 adaptor complex"],["GO%3A0044599","AP-5 adaptor complex"],["GO%3A0030119","AP-type membrane coat adaptor complex"],["GO%3A0030131","clathrin adaptor complex"],["PANTHER%3APTHR22780","ADAPTIN, ALPHA/GAMMA/EPSILON"]]},{"id":"GO:0009425","l":"bacterial-type flagellum basal body","na":10,"nb":9,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"],["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"]],"b":[["GO%3A0009425","bacterial-type flagellum basal body"],["NCBIfam%3ANF005435","flagellar basal body-associated protein FliL"],["NCBIfam%3ANF005995","flagellar motor switch phosphatase FliY"],["NCBIfam%3ANF005194","flagellar motor switch protein FliM"],["NCBIfam%3ANF006273","flagellar motor switch protein FliN"],["NCBIfam%3ANF006272","flagellar motor switch protein FliY"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":8,"nb":49554,"a":[["other/ap_5_adaptor_complex.html","AP-5 adaptor complex"],["ribonucleoprotein/u11_snrnp.html","U11 snRNP"],["ribonucleoprotein/u11_u12_snrnp.html","U11/U12 snRNP"],["ribonucleoprotein/u12_snrnp.html","U12 snRNP"],["ribonucleoprotein/u4atac_snrnp.html","U4atac snRNP"],["ribonucleoprotein/u4atac_u6atac_snrnp.html","U4atac/U6atac snRNP"]],"b":[["EC%3A1.1.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.1.98.-","With other, known, acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"]]},{"id":"GO:0031090","l":"organelle membrane","na":8,"nb":270,"a":[["membrane_organelle/apicomplexan_dense_granule_membrane.html","apicomplexan dense granule membrane"],["membrane_organelle/microneme_membrane.html","microneme membrane"],["membrane_organelle/mitosome_inner_membrane.html","mitosome inner membrane"],["membrane_organelle/mitosome_outer_membrane.html","mitosome outer membrane"],["membrane_organelle/nuclear_inner_membrane.html","nuclear inner membrane"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"]],"b":[["GO%3A0098588","bounding membrane of organelle"],["GO%3A0005789","endoplasmic reticulum membrane"],["GO%3A0032580","Golgi cisterna membrane"],["GO%3A0110146","magnetosome membrane"],["GO%3A0031966","mitochondrial membrane"],["GO%3A0031965","nuclear membrane"]]},{"id":"GO:0005783","l":"endoplasmic reticulum","na":8,"nb":226,"a":[["membrane_organelle/cis_golgi_network.html","cis-Golgi network"],["membrane_organelle/cis_golgi_network_membrane.html","cis-Golgi network membrane"],["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"],["membrane_organelle/endoplasmic_reticulum_lumen.html","endoplasmic reticulum lumen"],["membrane_organelle/endoplasmic_reticulum_membrane.html","endoplasmic reticulum membrane"]],"b":[["ComplexPortal%3ACPX-2360","COPII vesicle coat complex"],["ComplexPortal%3ACPX-2400","COPII vesicle coat complex"],["ComplexPortal%3ACPX-2523","COPII vesicle coat complex"],["ComplexPortal%3ACPX-26602","DOP1A-MON2, golgi-endosome traffic complex"],["ComplexPortal%3ACPX-8736","ERAP1-ERAP2 endoplasmic reticulum aminopeptidase complex"],["ComplexPortal%3ACPX-4236","Gamma-secretase complex, Aph1a-Psen2 variant"]]},{"id":"GO:0009279","l":"cell outer membrane","na":8,"nb":67,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/prostheca.html","prostheca"],["envelope/cell_outer_membrane.html","cell outer membrane"],["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["envelope/mycolate_outer_membrane.html","mycolate outer membrane"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"]],"b":[["ComplexPortal%3ACPX-1083","Cobalamin outer membrane transporter complex"],["ComplexPortal%3ACPX-4743","Curli secretion complex"],["ComplexPortal%3ACPX-1093","LptDE outer membrane translocon complex"],["ComplexPortal%3ACPX-5890","Translocation and assembly module complex"],["GO%3A0009279","cell outer membrane"],["GO%3A0036407","mycolate outer membrane"]]},{"id":"GO:0005741","l":"mitochondrial outer membrane","na":8,"nb":38,"a":[["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_intermembrane_space.html","mitochondrial intermembrane space"],["membrane_organelle/mitochondrial_membrane.html","mitochondrial membrane"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"],["other/ermes_complex.html","ERMES complex"]],"b":[["ComplexPortal%3ACPX-1989","BAK1 oligomer"],["ComplexPortal%3ACPX-2033","BAK1 oligomer"],["ComplexPortal%3ACPX-2034","BAK1 oligomer"],["ComplexPortal%3ACPX-6133","SAM mitochondrial sorting and assembly machinery complex"],["ComplexPortal%3ACPX-6101","SARS-CoV 9b complex"],["ComplexPortal%3ACPX-6121","TOM40 mitochondrial outer membrane translocase complex"]]},{"id":"GO:0009288","l":"bacterial-type flagellum","na":8,"nb":31,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009288","bacterial-type flagellum"]]},{"id":"GO:0005774","l":"vacuolar membrane","na":8,"nb":23,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v0_domain.html","vacuolar proton-transporting V-type ATPase, V0 domain"],["membrane_organelle/contractile_vacuolar_membrane.html","contractile vacuolar membrane"],["membrane_organelle/fungal_type_vacuole_membrane.html","fungal-type vacuole membrane"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"],["membrane_organelle/vacuolar_lumen.html","vacuolar lumen"]],"b":[["ComplexPortal%3ACPX-26523","GATOR1 complex"],["ComplexPortal%3ACPX-3231","SEA complex"],["ComplexPortal%3ACPX-5401","Vacuolar SNARE complex VAM3-VTI1-VAM7-NYV1"],["ComplexPortal%3ACPX-1887","Vacuolar SNARE complex VAM3-VTI1-VAM7-YKT6"],["GO%3A0000421","autophagosome membrane"],["GO%3A0031164","contractile vacuolar membrane"]]},{"id":"GO:0030126","l":"COPI vesicle coat","na":8,"nb":19,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"],["membrane_organelle/golgi_membrane.html","Golgi membrane"]],"b":[["ComplexPortal%3ACPX-7803","COPI vesicle coat complex, COPG1-COPZ1 variant"],["ComplexPortal%3ACPX-7970","COPI vesicle coat complex, COPG1-COPZ2 variant"],["ComplexPortal%3ACPX-7969","COPI vesicle coat complex, COPG2-COPZ1 variant"],["ComplexPortal%3ACPX-1652","COPI vesicle coat complex"],["ComplexPortal%3ACPX-2820","COPI vesicle coat complex"],["GO%3A0030126","COPI vesicle coat"]]},{"id":"GO:0098803","l":"respiratory chain complex","na":8,"nb":14,"a":[["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"],["energy_complex/cytochrome_o_ubiquinol_oxidase_complex.html","cytochrome o ubiquinol oxidase complex"],["energy_complex/fumarate_reductase_complex.html","fumarate reductase complex"],["energy_complex/respiratory_chain_complex_i.html","respiratory chain complex I"],["energy_complex/respiratory_chain_complex_ii_succinate_dehydrogenase.html","respiratory chain complex II (succinate dehydrogenase)"],["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"]],"b":[["GO%3A0009319","cytochrome o ubiquinol oxidase complex"],["GO%3A0045283","fumarate reductase complex"],["GO%3A0044799","NarGHI complex"],["GO%3A0045259","proton-transporting ATP synthase complex"],["GO%3A0098803","respiratory chain complex"],["GO%3A0045271","respiratory chain complex I"]]},{"id":"GO:0030125","l":"clathrin vesicle coat","na":8,"nb":9,"a":[["membrane_organelle/clathrin_coated_vesicle.html","clathrin-coated vesicle"],["membrane_organelle/clathrin_coated_vesicle_membrane.html","clathrin-coated vesicle membrane"],["membrane_organelle/coated_vesicle.html","coated vesicle"],["other/clathrin_coat.html","clathrin coat"],["other/clathrin_coat_of_endocytic_vesicle.html","clathrin coat of endocytic vesicle"],["other/clathrin_coat_of_trans_golgi_network_vesicle.html","clathrin coat of trans-Golgi network vesicle"]],"b":[["ComplexPortal%3ACPX-2792","Clathrin complex"],["GO%3A0030128","clathrin coat of endocytic vesicle"],["GO%3A0030129","clathrin coat of synaptic vesicle"],["GO%3A0030130","clathrin coat of trans-Golgi network vesicle"],["GO%3A0030125","clathrin vesicle coat"],["PANTHER%3APTHR16156","AFTIPHILIN A-RELATED"]]},{"id":"GO:0000329","l":"fungal-type vacuole membrane","na":8,"nb":8,"a":[["membrane_organelle/fungal_type_vacuole.html","fungal-type vacuole"],["membrane_organelle/fungal_type_vacuole_lumen.html","fungal-type vacuole lumen"],["membrane_organelle/fungal_type_vacuole_membrane.html","fungal-type vacuole membrane"],["membrane_organelle/vacuole.html","vacuole"],["other/gator1_complex.html","GATOR1 complex"],["other/gtr1_gtr2_gtpase_complex.html","Gtr1-Gtr2 GTPase complex"]],"b":[["ComplexPortal%3ACPX-3172","EGO complex"],["ComplexPortal%3ACPX-869","FET5-FTH1 high affinity iron exporter complex"],["ComplexPortal%3ACPX-1304","MYO2-VAC17-VAC8 transport complex"],["ComplexPortal%3ACPX-1193","Vacuolar proton translocating ATPase complex, vacuole variant"],["ComplexPortal%3ACPX-5521","Vacuolar SNARE complex SSO1-SEC9-NYV1"],["GO%3A0000329","fungal-type vacuole membrane"]]},{"id":"GO:0098796","l":"membrane protein complex","na":7,"nb":234,"a":[["other/ap_type_membrane_coat_adaptor_complex.html","AP-type membrane coat adaptor complex"],["other/emc_complex.html","EMC complex"],["other/hops_complex.html","HOPS complex"],["other/membrane_coat.html","membrane coat"],["other/retromer_cargo_selective_complex.html","retromer, cargo-selective complex"],["other/retromer_complex.html","retromer complex"]],"b":[["GO%3A0002180","5-lipoxygenase complex"],["GO%3A0170014","ankyrin-1 complex"],["GO%3A0030119","AP-type membrane coat adaptor complex"],["GO%3A0097658","Asi complex"],["GO%3A0062079","ATG2-ATG18 complex"],["GO%3A1990063","Bam protein complex"]]},{"id":"GO:0000813","l":"ESCRT I complex","na":7,"nb":27,"a":[["membrane_organelle/endosome.html","endosome"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/multivesicular_body.html","multivesicular body"],["other/escrt_0_complex.html","ESCRT-0 complex"],["other/escrt_complex.html","ESCRT complex"]],"b":[["ComplexPortal%3ACPX-940","ESCRT-I complex"],["ComplexPortal%3ACPX-7162","ESCRT-I complex, VPS37A-MVB12A variant"],["ComplexPortal%3ACPX-7146","ESCRT-I complex, VPS37A-MVB12B variant"],["ComplexPortal%3ACPX-7181","ESCRT-I complex, VPS37A-UBAP1 variant"],["ComplexPortal%3ACPX-2460","ESCRT-I complex, Vps37A variant"],["ComplexPortal%3ACPX-2505","ESCRT-I complex, VPS37B-MVB12A variant"]]},{"id":"GO:0030120","l":"vesicle coat","na":7,"nb":18,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"],["other/clathrin_vesicle_coat.html","clathrin vesicle coat"],["other/copi_vesicle_coat.html","COPI vesicle coat"],["other/copii_vesicle_coat.html","COPII vesicle coat"],["other/membrane_coat.html","membrane coat"]],"b":[["GO%3A0030125","clathrin vesicle coat"],["GO%3A0030126","COPI vesicle coat"],["GO%3A0030127","COPII vesicle coat"],["GO%3A0030120","vesicle coat"],["PANTHER%3APTHR16156","AFTIPHILIN A-RELATED"],["PANTHER%3APTHR15463","AP1 GAMMA SUBUNIT BINDING PROTEIN 1"]]},{"id":"GO:0009526","l":"plastid envelope","na":7,"nb":11,"a":[["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/plastid_envelope.html","plastid envelope"],["membrane_organelle/plastid_inner_membrane.html","plastid inner membrane"],["membrane_organelle/plastid_intermembrane_space.html","plastid intermembrane space"],["membrane_organelle/plastid_membrane.html","plastid membrane"]],"b":[["GO%3A0033096","amyloplast envelope"],["GO%3A0009941","chloroplast envelope"],["GO%3A0031898","chromoplast envelope"],["GO%3A0033112","cyanelle envelope"],["GO%3A0034425","etioplast envelope"],["GO%3A0009526","plastid envelope"]]},{"id":"GO:0009579","l":"thylakoid","na":7,"nb":11,"a":[["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_lumen.html","plasma membrane-derived thylakoid lumen"],["membrane_organelle/plastid_thylakoid.html","plastid thylakoid"]],"b":[["GO%3A0030075","bacterial thylakoid"],["GO%3A0070116","organellar chromatophore thylakoid"],["GO%3A0031976","plastid thylakoid"],["GO%3A0009579","thylakoid"],["NCBIfam%3ANF014449","photosystem I assembly protein Ycf4"],["NCBIfam%3ATIGR01336","photosystem I core protein PsaB"]]},{"id":"GO:0030136","l":"clathrin-coated vesicle","na":7,"nb":10,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle.html","clathrin-coated endocytic vesicle"],["membrane_organelle/clathrin_coated_endocytic_vesicle_lumen.html","clathrin-coated endocytic vesicle lumen"],["membrane_organelle/clathrin_coated_vesicle.html","clathrin-coated vesicle"],["membrane_organelle/clathrin_coated_vesicle_lumen.html","clathrin-coated vesicle lumen"],["membrane_organelle/clathrin_coated_vesicle_membrane.html","clathrin-coated vesicle membrane"],["membrane_organelle/coated_vesicle.html","coated vesicle"]],"b":[["GO%3A0045334","clathrin-coated endocytic vesicle"],["GO%3A0030136","clathrin-coated vesicle"],["GO%3A0060198","clathrin-sculpted vesicle"],["GO%3A0030140","trans-Golgi network transport vesicle"],["GO%3A0033093","Weibel-Palade body"],["PANTHER%3APTHR10639","CLATHRIN LIGHT CHAIN"]]},{"id":"GO:0009532","l":"plastid stroma","na":7,"nb":9,"a":[["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"],["membrane_organelle/plastid.html","plastid"],["membrane_organelle/plastid_envelope.html","plastid envelope"],["membrane_organelle/plastid_inner_membrane.html","plastid inner membrane"],["membrane_organelle/plastid_stroma.html","plastid stroma"]],"b":[["GO%3A0009570","chloroplast stroma"],["GO%3A0009575","chromoplast stroma"],["GO%3A0034060","cyanelle stroma"],["GO%3A0009577","elaioplast stroma"],["GO%3A0009578","etioplast stroma"],["GO%3A1905506","gerontoplast stroma"]]},{"id":"GO:0009535","l":"chloroplast thylakoid membrane","na":7,"nb":9,"a":[["inclusion/plastoglobule.html","plastoglobule"],["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_membrane.html","chloroplast membrane"],["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"],["membrane_organelle/chloroplast_thylakoid_lumen.html","chloroplast thylakoid lumen"],["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"]],"b":[["GO%3A0009535","chloroplast thylakoid membrane"],["PANTHER%3APTHR34048","LOW-DENSITY RECEPTOR-LIKE PROTEIN"],["PANTHER%3APTHR35733","OS02G0307800 PROTEIN"],["PANTHER%3APTHR36814","PHOTOSYSTEM I REACTION CENTER SUBUNIT N, CHLOROPLASTIC"],["PANTHER%3APTHR34787","PHOTOSYSTEM I REACTION CENTER SUBUNIT VI-2, CHLOROPLASTIC"],["PANTHER%3APTHR33149","PHOTOSYSTEM II PROTEIN D1"]]},{"id":"GO:0030137","l":"COPI-coated vesicle","na":7,"nb":9,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/copi_coated_vesicle_lumen.html","COPI-coated vesicle lumen"],["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"]],"b":[["GO%3A0030142","COPI-coated Golgi to ER transport vesicle"],["GO%3A0030143","COPI-coated inter-Golgi transport vesicle"],["GO%3A0030137","COPI-coated vesicle"],["PANTHER%3APTHR19876","COATOMER"],["PANTHER%3APTHR10635","COATOMER SUBUNIT BETA"],["PANTHER%3APTHR10121","COATOMER SUBUNIT DELTA"]]},{"id":"GO:0009274","l":"peptidoglycan-based cell wall","na":7,"nb":8,"a":[["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"],["appendage/prostheca.html","prostheca"],["division_machinery/elongasome.html","elongasome"],["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]],"b":[["GO%3A0009276","Gram-negative-bacterium-type cell wall"],["GO%3A0009275","Gram-positive-bacterium-type cell wall"],["GO%3A0009274","peptidoglycan-based cell wall"],["NCBIfam%3ANF007061","bifunctional glycosyl transferase/transpeptidase"],["NCBIfam%3ATIGR03656","heme uptake protein IsdC"],["NCBIfam%3ATIGR02070","monofunctional biosynthetic peptidoglycan transglycosylase"]]},{"id":"NCBITaxon:565050","l":"Caulobacter vibrioides NA1000","na":7,"nb":8,"a":[["appendage/prostheca.html","prostheca"],["appendage/stalk_crossband.html","stalk crossband"],["appendage/tad_pilus.html","Tad pilus"],["cytoskeleton/bactofilin_filament.html","bactofilin filament"],["cytoskeleton/cytoophidium.html","cytoophidium"],["other/holdfast.html","holdfast"]],"b":[["Pfam%3APF02767","DNA polymerase III beta subunit, central domain"],["Pfam%3APF02768","DNA polymerase III beta subunit, C-terminal domain"],["Pfam%3APF00712","DNA polymerase III beta subunit, N-terminal domain"],["Pfam%3APF21249","GyrB, hook"],["Pfam%3APF07378","Flagellar protein FlbT"],["Pfam%3APF03748","Flagellar basal body-associated protein FliL"]]},{"id":"GO:0030665","l":"clathrin-coated vesicle membrane","na":7,"nb":7,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle_membrane.html","clathrin-coated endocytic vesicle membrane"],["membrane_organelle/clathrin_coated_vesicle.html","clathrin-coated vesicle"],["membrane_organelle/clathrin_coated_vesicle_lumen.html","clathrin-coated vesicle lumen"],["membrane_organelle/clathrin_coated_vesicle_membrane.html","clathrin-coated vesicle membrane"],["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"]],"b":[["GO%3A0030669","clathrin-coated endocytic vesicle membrane"],["GO%3A0030665","clathrin-coated vesicle membrane"],["GO%3A0060201","clathrin-sculpted acetylcholine transport vesicle membrane"],["GO%3A0061202","clathrin-sculpted gamma-aminobutyric acid transport vesicle membrane"],["GO%3A0060203","clathrin-sculpted glutamate transport vesicle membrane"],["GO%3A0070083","clathrin-sculpted monoamine transport vesicle membrane"]]},{"id":"GO:0098800","l":"inner mitochondrial membrane protein complex","na":6,"nb":88,"a":[["other/micos_complex.html","MICOS complex"],["other/mitochondrial_inner_membrane_peptidase_complex.html","mitochondrial inner membrane peptidase complex"],["other/mitochondrial_prohibitin_complex.html","mitochondrial prohibitin complex"],["other/pam_complex_tim23_associated_import_motor.html","PAM complex, Tim23 associated import motor"],["other/tim22_mitochondrial_import_inner_membrane_insertion_complex.html","TIM22 mitochondrial import inner membrane insertion complex"],["other/tim23_mitochondrial_import_inner_membrane_translocase_complex.html","TIM23 mitochondrial import inner membrane translocase complex"]],"b":[["ComplexPortal%3ACPX-6154","Mitochondrial pyruvate carrier complex"],["ComplexPortal%3ACPX-8068","Mitochondrial pyruvate carrier complex"],["ComplexPortal%3ACPX-8062","Mitochondrial pyruvate carrier complex, testis variant"],["ComplexPortal%3ACPX-302","Mitochondrial pyruvate carrier, fermentative isoform"],["ComplexPortal%3ACPX-303","Mitochondrial pyruvate carrier, respiratory isoform"],["GO%3A0032478","heterotetrameric polyprenyl diphosphate synthase complex"]]},{"id":"GO:0005740","l":"mitochondrial envelope","na":6,"nb":54,"a":[["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrial_intermembrane_space.html","mitochondrial intermembrane space"],["membrane_organelle/mitochondrial_membrane.html","mitochondrial membrane"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"]],"b":[["GO%3A0005740","mitochondrial envelope"],["Pfam%3APF01215","Cytochrome c oxidase subunit Vb"],["PANTHER%3APTHR15487","ADP-RIBOSYLATION FACTOR-LIKE PROTEIN 2-BINDING PROTEIN"],["PANTHER%3APTHR36959","ALTERED INHERITANCE OF MITOCHONDRIA PROTEIN 24, MITOCHONDRIAL"],["PANTHER%3APTHR28202","ASSEMBLY FACTOR CBP4"],["PANTHER%3APTHR37278","AUTOPHAGY-RELATED PROTEIN 33-RELATED"]]},{"id":"GO:0009507","l":"chloroplast","na":6,"nb":32,"a":[["inclusion/plastoglobule.html","plastoglobule"],["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"],["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"],["other/pyrenoid.html","pyrenoid"]],"b":[["ComplexPortal%3ACPX-1337","WHY1 complex"],["ComplexPortal%3ACPX-3586","WHY3 complex"],["GO%3A0009507","chloroplast"],["NCBIfam%3ANF018787","photosystem II reaction center protein PsbW"],["PANTHER%3APTHR31899","BETA-CAROTENE 3-HYDROXYLASE 1, CHLOROPLASTIC"],["PANTHER%3APTHR36404","EMBRYO DEFECTIVE 2737"]]},{"id":"GO:0005802","l":"trans-Golgi network","na":6,"nb":24,"a":[["membrane_organelle/trans_golgi_network.html","trans-Golgi network"],["membrane_organelle/trans_golgi_network_membrane.html","trans-Golgi network membrane"],["membrane_organelle/trans_golgi_network_transport_vesicle_membrane.html","trans-Golgi network transport vesicle membrane"],["other/clathrin_coat_of_trans_golgi_network_vesicle.html","clathrin coat of trans-Golgi network vesicle"],["other/exomer_complex.html","exomer complex"],["other/garp_complex.html","GARP complex"]],"b":[["ComplexPortal%3ACPX-5151","AP-4 Adaptor complex"],["ComplexPortal%3ACPX-5154","AP-4 Adaptor complex"],["ComplexPortal%3ACPX-8167","OSBPL9-OSBPL10 oxysterol-binding protein-related complex"],["ComplexPortal%3ACPX-8168","OSBPL9-OSBPL11 oxysterol-binding protein-related complex"],["GO%3A0005802","trans-Golgi network"],["InterPro%3AIPR028129","Consortin, C-terminal domain"]]},{"id":"GO:0042995","l":"cell projection","na":6,"nb":18,"a":[["appendage/archaeal_cannula.html","archaeal cannula"],["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/attachment_organelle.html","attachment organelle"],["appendage/hamus.html","hamus"],["appendage/prostheca.html","prostheca"]],"b":[["GO%3A0097589","archaeal-type flagellum"],["GO%3A0009288","bacterial-type flagellum"],["GO%3A0042995","cell projection"],["GO%3A0085035","haustorium"],["GO%3A0009289","pilus"],["GO%3A0090395","plant cell papilla"]]},{"id":"GO:0030150","l":"protein import into mitochondrial matrix","na":6,"nb":17,"a":[["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"],["other/mitochondrial_outer_membrane_translocase_complex.html","mitochondrial outer membrane translocase complex"],["other/pam_complex_tim23_associated_import_motor.html","PAM complex, Tim23 associated import motor"],["other/tim23_mitochondrial_import_inner_membrane_translocase_complex.html","TIM23 mitochondrial import inner membrane translocase complex"]],"b":[["ComplexPortal%3ACPX-1744","Mitochondrial sorting and assembly machinery complex"],["ComplexPortal%3ACPX-6127","TIM23 mitochondrial inner membrane pre-sequence translocase complex, sort variant"],["GO%3A0030150","protein import into mitochondrial matrix"],["Pfam%3APF02064","MAS20 protein import receptor"],["Pfam%3APF08294","TIM21"],["PANTHER%3APTHR20922","DNL-TYPE ZINC FINGER PROTEIN"]]},{"id":"GO:0005635","l":"nuclear envelope","na":6,"nb":16,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nuclear_envelope_lumen.html","nuclear envelope lumen"],["membrane_organelle/nuclear_inner_membrane.html","nuclear inner membrane"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"],["membrane_organelle/nucleus.html","nucleus"],["other/nuclear_pore.html","nuclear pore"]],"b":[["ComplexPortal%3ACPX-1068","Importin complex, KAP60-KAP95"],["ComplexPortal%3ACPX-1287","MPS2-BBP1 spindle pole body anchor complex"],["ComplexPortal%3ACPX-2568","Nuclear pore complex"],["ComplexPortal%3ACPX-4474","Nuclear pore complex"],["ComplexPortal%3ACPX-824","Nuclear pore complex"],["ComplexPortal%3ACPX-873","Nuclear pore complex"]]},{"id":"GO:0005742","l":"mitochondrial outer membrane translocase complex","na":6,"nb":16,"a":[["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"],["other/mitochondrial_outer_membrane_translocase_complex.html","mitochondrial outer membrane translocase complex"],["other/sam_complex.html","SAM complex"],["other/tim23_mitochondrial_import_inner_membrane_translocase_complex.html","TIM23 mitochondrial import inner membrane translocase complex"]],"b":[["ComplexPortal%3ACPX-473","TOM40 mitochondrial outer membrane translocase core complex"],["ComplexPortal%3ACPX-474","TOM40 mitochondrial outer membrane translocase holocomplex"],["GO%3A0005742","mitochondrial outer membrane translocase complex"],["GO%3A0001401","SAM complex"],["GO%3A0140596","TOM complex"],["Pfam%3APF02064","MAS20 protein import receptor"]]},{"id":"GO:0030127","l":"COPII vesicle coat","na":6,"nb":16,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"],["membrane_organelle/endoplasmic_reticulum_membrane.html","endoplasmic reticulum membrane"],["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"],["other/copii_vesicle_coat.html","COPII vesicle coat"],["other/vesicle_coat.html","vesicle coat"]],"b":[["ComplexPortal%3ACPX-2360","COPII vesicle coat complex"],["ComplexPortal%3ACPX-2400","COPII vesicle coat complex"],["ComplexPortal%3ACPX-2523","COPII vesicle coat complex"],["ComplexPortal%3ACPX-1341","SEC23-LST1 COPII cargo recruitment complex"],["GO%3A0030127","COPII vesicle coat"],["NCBIfam%3ANF016683","Sec23/Sec24 zinc finger-containing protein"]]},{"id":"GO:0005686","l":"U2 snRNP","na":6,"nb":14,"a":[["ribonucleoprotein/u2_snrnp.html","U2 snRNP"],["ribonucleoprotein/u2_type_catalytic_step_1_spliceosome.html","U2-type catalytic step 1 spliceosome"],["ribonucleoprotein/u2_type_catalytic_step_2_spliceosome.html","U2-type catalytic step 2 spliceosome"],["ribonucleoprotein/u2_type_post_mrna_release_spliceosomal_complex.html","U2-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u2_type_precatalytic_spliceosome.html","U2-type precatalytic spliceosome"],["ribonucleoprotein/u2_type_prespliceosome.html","U2-type prespliceosome"]],"b":[["ComplexPortal%3ACPX-43","Sm complex"],["ComplexPortal%3ACPX-6033","Sm complex"],["ComplexPortal%3ACPX-2539","U2 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-26","U2 small nuclear ribonucleoprotein complex"],["GO%3A0005686","U2 snRNP"],["PANTHER%3APTHR13120","PHD FINGER-LIKE DOMAIN-CONTAINING PROTEIN 5A"]]},{"id":"GO:0071985","l":"multivesicular body sorting pathway","na":14,"nb":6,"a":[["membrane_organelle/endosome_lumen.html","endosome lumen"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/late_endosome_lumen.html","late endosome lumen"],["membrane_organelle/late_endosome_membrane.html","late endosome membrane"],["membrane_organelle/multivesicular_body.html","multivesicular body"]],"b":[["ComplexPortal%3ACPX-329","ESCRT-III complex"],["ComplexPortal%3ACPX-332","ESCRT-III complex, variant Chmp1b1"],["ComplexPortal%3ACPX-333","ESCRT-III complex, variant Chmp1b2"],["GO%3A0032509","endosome transport via multivesicular body sorting pathway"],["GO%3A0071985","multivesicular body sorting pathway"],["Pfam%3APF05871","ESCRT-II complex subunit"]]},{"id":"GO:0005689","l":"U12-type spliceosomal complex","na":6,"nb":13,"a":[["ribonucleoprotein/u12_type_catalytic_step_1_spliceosome.html","U12-type catalytic step 1 spliceosome"],["ribonucleoprotein/u12_type_catalytic_step_2_spliceosome.html","U12-type catalytic step 2 spliceosome"],["ribonucleoprotein/u12_type_post_mrna_release_spliceosomal_complex.html","U12-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u12_type_post_spliceosomal_complex.html","U12-type post-spliceosomal complex"],["ribonucleoprotein/u12_type_precatalytic_spliceosome.html","U12-type precatalytic spliceosome"],["ribonucleoprotein/u12_type_prespliceosome.html","U12-type prespliceosome"]],"b":[["ComplexPortal%3ACPX-26485","U11 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-26487","U12 small nuclear ribonucleoprotein complex"],["GO%3A0071017","U12-type catalytic step 1 spliceosome"],["GO%3A0071018","U12-type catalytic step 2 spliceosome"],["GO%3A0071019","U12-type post-mRNA release spliceosomal complex"],["GO%3A0071022","U12-type post-spliceosomal complex"]]},{"id":"GO:0033104","l":"type VI protein secretion system complex","na":6,"nb":13,"a":[["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"],["secretion_system/type_vi_secretion_system_baseplate.html","type VI secretion system baseplate"],["secretion_system/type_vi_secretion_system_contractile_sheath.html","type VI secretion system contractile sheath"],["secretion_system/type_vi_secretion_system_hcp_tube.html","type VI secretion system Hcp tube"],["secretion_system/type_vi_secretion_system_membrane_complex.html","type VI secretion system membrane complex"],["secretion_system/type_vi_secretion_system_vgrg_paar_spike_complex.html","type VI secretion system VgrG/PAAR spike complex"]],"b":[["GO%3A0033104","type VI protein secretion system complex"],["NCBIfam%3ANF053769","CIS1 family contractile injection system inner tube protein"],["NCBIfam%3ANF053768","CIS12 family contractile injection system protein"],["NCBIfam%3ANF053767","CIS13 family contractile injection system protein"],["NCBIfam%3ANF053770","CIS5 family contractile injection system inner tube adaptor"],["NCBIfam%3ATIGR03345","type VI secretion system ATPase TssH"]]},{"id":"GO:0042170","l":"plastid membrane","na":6,"nb":13,"a":[["membrane_organelle/chloroplast_membrane.html","chloroplast membrane"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/plastid.html","plastid"],["membrane_organelle/plastid_inner_membrane.html","plastid inner membrane"],["membrane_organelle/plastid_membrane.html","plastid membrane"],["membrane_organelle/plastid_outer_membrane.html","plastid outer membrane"]],"b":[["GO%3A0033097","amyloplast membrane"],["GO%3A0160211","apicoplast membrane"],["GO%3A0031969","chloroplast membrane"],["GO%3A0046862","chromoplast membrane"],["GO%3A0033113","cyanelle membrane"],["GO%3A7770040","epiplastidial membrane"]]},{"id":"GO:0005775","l":"vacuolar lumen","na":6,"nb":10,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["membrane_organelle/contractile_vacuole_lumen.html","contractile vacuole lumen"],["membrane_organelle/fungal_type_vacuole_lumen.html","fungal-type vacuole lumen"],["membrane_organelle/vacuolar_lumen.html","vacuolar lumen"],["membrane_organelle/vacuolar_membrane.html","vacuolar membrane"],["membrane_organelle/vacuole.html","vacuole"]],"b":[["GO%3A0120282","autolysosome lumen"],["GO%3A0034423","autophagosome lumen"],["GO%3A0035578","azurophil granule lumen"],["GO%3A1904856","cytolytic granule lumen"],["GO%3A0160318","endolysosomal intralumenal vesicle lumen"],["GO%3A0000328","fungal-type vacuole lumen"]]},{"id":"NCBITaxon:2762","l":"Cyanophora paradoxa","na":10,"nb":6,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"]],"b":[["Pfam%3APF06799","Conserved in the green lineage and diatoms 27"],["Pfam%3APF06868","Protein of unknown function (DUF1257)"],["Pfam%3APF10693","Protein of unknown function (DUF2499)"],["Pfam%3APF10726","Protein of function (DUF2518)"],["Pfam%3APF04481","Protein of unknown function (DUF561)"],["Pfam%3APF05421","Protein of unknown function (DUF751)"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":9,"nb":6,"a":[["membrane_organelle/apicoplast.html","apicoplast"],["membrane_organelle/apicoplast_membrane.html","apicoplast membrane"],["membrane_organelle/exoneme.html","exoneme"],["membrane_organelle/food_vacuole.html","food vacuole"],["membrane_organelle/inner_membrane_pellicle_complex.html","inner membrane pellicle complex"],["membrane_organelle/maurer_s_cleft.html","Maurer's cleft"]],"b":[["IDPO%3A0000037","molecular recognition display site"],["Pfam%3APF05403","Plasmodium histidine-rich protein (HRPII/III)"],["Pfam%3APF17986","EMP3-KAHRP-like N-terminal domain"],["Pfam%3APF03805","Cytoadherence-linked asexual protein"],["Pfam%3APF06589","Circumsporozoite-related antigen (CRA)"],["TED%3AAF-Q9U431-F1-model_v4_TED01","TED novel fold AF-Q9U431-F1-model_v4_TED01"]]},{"id":"GO:0038202","l":"TORC1 signaling","na":6,"nb":7,"a":[["other/gator1_complex.html","GATOR1 complex"],["other/gator2_complex.html","GATOR2 complex"],["other/gtr1_gtr2_gtpase_complex.html","Gtr1-Gtr2 GTPase complex"],["other/ragulator_complex.html","Ragulator complex"],["other/seh1_associated_complex.html","Seh1-associated complex"],["other/torc1_complex.html","TORC1 complex"]],"b":[["ComplexPortal%3ACPX-26528","Ragulator complex"],["ComplexPortal%3ACPX-2709","Ragulator complex"],["ComplexPortal%3ACPX-4741","Ragulator complex"],["ComplexPortal%3ACPX-4761","Ragulator complex"],["ComplexPortal%3ACPX-2265","TORC1 complex"],["GO%3A0038202","TORC1 signaling"]]},{"id":"GO:0005784","l":"Sec61 translocon complex","na":6,"nb":6,"a":[["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"],["membrane_organelle/endoplasmic_reticulum_lumen.html","endoplasmic reticulum lumen"],["membrane_organelle/endoplasmic_reticulum_membrane.html","endoplasmic reticulum membrane"],["other/emc_complex.html","EMC complex"],["other/endoplasmic_reticulum_sec_complex.html","endoplasmic reticulum Sec complex"],["other/sec61_translocon_complex.html","Sec61 translocon complex"]],"b":[["ComplexPortal%3ACPX-1833","SEC61 protein-conducting channel complex"],["ComplexPortal%3ACPX-8073","SEC61 protein-conducting channel complex, SEC1A1 variant"],["ComplexPortal%3ACPX-8169","SEC61 protein-conducting channel complex, SEC1A2 variant"],["ComplexPortal%3ACPX-2647","SEC61 translocon complex, SEC61G1 variant"],["ComplexPortal%3ACPX-2650","SEC61 translocon complex, SEC61G2 variant"],["GO%3A0005784","Sec61 translocon complex"]]},{"id":"GO:0009706","l":"chloroplast inner membrane","na":6,"nb":6,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_inner_membrane.html","chloroplast inner membrane"],["membrane_organelle/chloroplast_intermembrane_space.html","chloroplast intermembrane space"],["membrane_organelle/chloroplast_membrane.html","chloroplast membrane"],["other/tic_complex.html","Tic complex"]],"b":[["GO%3A0009706","chloroplast inner membrane"],["PANTHER%3APTHR31038","EXPRESSED PROTEIN-RELATED"],["PANTHER%3APTHR34048","LOW-DENSITY RECEPTOR-LIKE PROTEIN"],["PANTHER%3APTHR36317","PROTEIN MULTIPLE CHLOROPLAST DIVISION SITE 1"],["PANTHER%3APTHR47296","PROTEIN TIC 40, CHLOROPLASTIC"],["PANTHER%3APTHR37755","PROTEIN TIC 56, CHLOROPLASTIC"]]},{"id":"GO:0030662","l":"coated vesicle membrane","na":6,"nb":6,"a":[["membrane_organelle/clathrin_coated_vesicle_membrane.html","clathrin-coated vesicle membrane"],["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"],["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"],["other/vesicle_coat.html","vesicle coat"]],"b":[["GO%3A0030665","clathrin-coated vesicle membrane"],["GO%3A0030662","coated vesicle membrane"],["GO%3A0030663","COPI-coated vesicle membrane"],["GO%3A0012507","ER to Golgi transport vesicle membrane"],["PANTHER%3APTHR45837","VESICLE-TRAFFICKING PROTEIN SEC22B"],["PANTHER%3APTHR21230","VESICLE TRANSPORT V-SNARE PROTEIN VTI1-RELATED"]]},{"id":"GO:0036452","l":"ESCRT complex","na":6,"nb":6,"a":[["other/escrt_0_complex.html","ESCRT-0 complex"],["other/escrt_complex.html","ESCRT complex"],["other/escrt_i_complex.html","ESCRT I complex"],["other/escrt_ii_complex.html","ESCRT II complex"],["other/escrt_iii_complex.html","ESCRT III complex"],["other/escrt_iv_complex.html","ESCRT IV complex"]],"b":[["GO%3A0033565","ESCRT-0 complex"],["GO%3A0036452","ESCRT complex"],["GO%3A0000813","ESCRT I complex"],["GO%3A0000814","ESCRT II complex"],["GO%3A0000815","ESCRT III complex"],["GO%3A1990621","ESCRT IV complex"]]},{"id":"NCBITaxon:5693","l":"Trypanosoma cruzi","na":6,"nb":6,"a":[["membrane_organelle/contractile_vacuole.html","contractile vacuole"],["membrane_organelle/early_endosome.html","early endosome"],["membrane_organelle/early_endosome_lumen.html","early endosome lumen"],["membrane_organelle/early_endosome_membrane.html","early endosome membrane"],["membrane_organelle/reservosome.html","reservosome"],["other/cytostome.html","cytostome"]],"b":[["Pfam%3APF22592","FCaBP EF-hand domain"],["Pfam%3APF09394","Chagasin family peptidase inhibitor I42"],["Pfam%3APF12131","Protein of unknown function (DUF3586)"],["Pfam%3APF11052","Trans-sialidase of Trypanosoma hydrophobic C-terminal"],["Pfam%3APF13859","BNR repeat-like domain"],["TED%3AAF-A0A2V2XJY2-F1-model_v4_TED02","TED novel fold AF-A0A2V2XJY2-F1-model_v4_TED02"]]},{"id":"GO:0005634","l":"nucleus","na":5,"nb":1580,"a":[["membrane_organelle/macronucleus.html","macronucleus"],["membrane_organelle/micronucleus.html","micronucleus"],["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nuclear_lumen.html","nuclear lumen"],["membrane_organelle/nucleus.html","nucleus"]],"b":[["ComplexPortal%3ACPX-9003","20S immunoproteasome complex"],["ComplexPortal%3ACPX-2829","ACF chromatin remodeling complex"],["ComplexPortal%3ACPX-434","ACF chromatin remodeling complex"],["ComplexPortal%3ACPX-444","ACF chromatin remodeling complex"],["ComplexPortal%3ACPX-2824","ADA complex"],["ComplexPortal%3ACPX-608","ADA complex"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":5,"nb":297,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"],["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]],"b":[["IDPO%3A0000002","disorder"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000045","phosphorylation display site"],["IDPO%3A0000059","self-inhibition"],["Pfam%3APF17837","4'-phosphopantetheinyl transferase N-terminal domain"]]},{"id":"GO:0043232","l":"intracellular membraneless organelle","na":5,"nb":237,"a":[["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/contractile_vacuole_complex.html","contractile vacuole complex"],["microcompartment/bacterial_microcompartment.html","bacterial microcompartment"],["other/phage_nucleus.html","phage nucleus"],["other/pyrenoid.html","pyrenoid"]],"b":[["GO%3A0098682","arciform density"],["GO%3A0005818","aster"],["GO%3A0031469","bacterial microcompartment"],["GO%3A0043590","bacterial nucleoid"],["GO%3A0097727","blepharoplast"],["GO%3A0005814","centriole"]]},{"id":"GO:0005739","l":"mitochondrion","na":5,"nb":233,"a":[["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_matrix.html","mitochondrial matrix"],["membrane_organelle/mitochondrial_membrane.html","mitochondrial membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"],["nucleoid/kinetoplast.html","kinetoplast"]],"b":[["ComplexPortal%3ACPX-3034","Acetolactate synthase complex"],["ComplexPortal%3ACPX-1331","bI3 intron splicing factor complex"],["ComplexPortal%3ACPX-1314","bI4 intron splicing factor complex"],["ComplexPortal%3ACPX-6928","BOL1-GRX5 iron-sulfur cluster assembly complex"],["ComplexPortal%3ACPX-6930","BOL3-GRX5 iron-sulfur cluster assembly complex"],["ComplexPortal%3ACPX-384","CBP3-CBP6 complex"]]},{"id":"GO:0015979","l":"photosynthesis","na":5,"nb":146,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"],["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"]],"b":[["GO%3A0015979","photosynthesis"],["NCBIfam%3ATIGR01337","allophycocyanin subunit beta"],["NCBIfam%3ATIGR03056","alpha/beta fold hydrolase BchO"],["NCBIfam%3ANF013497","Apocytochrome F, C-terminal"],["NCBIfam%3ANF014391","Bacteriochlorophyll A protein"],["NCBIfam%3ANF058502","C-phycocyanin alpha-cysteine-84 phycocyanobilin lyase subunit CpcE"]]},{"id":"GO:0070013","l":"intracellular organelle lumen","na":5,"nb":124,"a":[["membrane_organelle/endosome_lumen.html","endosome lumen"],["membrane_organelle/golgi_lumen.html","Golgi lumen"],["membrane_organelle/mitochondrial_matrix.html","mitochondrial matrix"],["membrane_organelle/nuclear_lumen.html","nuclear lumen"],["membrane_organelle/vacuolar_lumen.html","vacuolar lumen"]],"b":[["GO%3A0033985","acidocalcisome lumen"],["GO%3A0060205","cytoplasmic vesicle lumen"],["GO%3A0071682","endocytic vesicle lumen"],["GO%3A0005788","endoplasmic reticulum lumen"],["GO%3A0160315","endosomal intralumenal vesicle lumen"],["GO%3A0031904","endosome lumen"]]},{"id":"GO:0005929","l":"cilium","na":5,"nb":101,"a":[["appendage/ciliary_membrane.html","ciliary membrane"],["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"],["appendage/mastigoneme.html","mastigoneme"],["cytoskeleton/ciliary_basal_body.html","ciliary basal body"]],"b":[["ComplexPortal%3ACPX-2747","BBSome complex"],["ComplexPortal%3ACPX-428","BBSome complex"],["ComplexPortal%3ACPX-5001","CPLANE complex"],["ComplexPortal%3ACPX-5026","CPLANE complex"],["ComplexPortal%3ACPX-26357","Dynein-2 complex, light-chain variant 1"],["ComplexPortal%3ACPX-26360","Dynein-2 complex, light-chain variant 2"]]},{"id":"GO:0005759","l":"mitochondrial matrix","na":5,"nb":55,"a":[["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrial_matrix.html","mitochondrial matrix"],["membrane_organelle/mitochondrion.html","mitochondrion"],["nucleoid/mitochondrial_nucleoid.html","mitochondrial nucleoid"],["other/pam_complex_tim23_associated_import_motor.html","PAM complex, Tim23 associated import motor"]],"b":[["ComplexPortal%3ACPX-865","Electron transfer flavoprotein complex"],["ComplexPortal%3ACPX-6957","GRX5 iron-sulfur cluster assembly homodimer complex"],["ComplexPortal%3ACPX-6236","Methylcrotonyl-CoA carboxylase complex"],["ComplexPortal%3ACPX-2216","Mitochondrial 2-oxoisovalerate dehydrogenase complex"],["ComplexPortal%3ACPX-26685","Mitochondrial 2-oxoisovalerate dehydrogenase complex"],["ComplexPortal%3ACPX-949","Mitochondrial 3-oxoacyl-[acyl-carrier-protein] reductase"]]},{"id":"GO:0045259","l":"proton-transporting ATP synthase complex","na":5,"nb":52,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["ComplexPortal%3ACPX-25764","Mitochondrial proton translocating ATP synthase complex"],["ComplexPortal%3ACPX-3281","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-6151","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-8618","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-8619","Mitochondrial proton-transporting ATP synthase complex, testis-specific variant"]]},{"id":"GO:0005777","l":"peroxisome","na":5,"nb":34,"a":[["membrane_organelle/glycosome.html","glycosome"],["membrane_organelle/glyoxysome.html","glyoxysome"],["membrane_organelle/peroxisomal_matrix.html","peroxisomal matrix"],["membrane_organelle/peroxisomal_membrane.html","peroxisomal membrane"],["membrane_organelle/peroxisome.html","peroxisome"]],"b":[["ComplexPortal%3ACPX-4742","Catalase complex"],["ComplexPortal%3ACPX-4767","Catalase complex"],["ComplexPortal%3ACPX-4768","Catalase complex"],["GO%3A0020015","glycosome"],["GO%3A0009514","glyoxysome"],["GO%3A0042580","mannosome"]]},{"id":"GO:0009289","l":"pilus","na":5,"nb":31,"a":[["appendage/curli.html","curli"],["appendage/p_pilus.html","P pilus"],["appendage/pilus.html","pilus"],["appendage/type_i_pilus.html","type I pilus"],["appendage/type_iv_pilus.html","type IV pilus"]],"b":[["GO%3A0098774","curli"],["GO%3A0009289","pilus"],["GO%3A0140621","type I pilus"],["GO%3A0044096","type IV pilus"],["NCBIfam%3ANF058558","amyloid-like fimbrin subunit FapC"],["NCBIfam%3ANF016344","CS1 type fimbrial major subunit"]]},{"id":"GO:0005778","l":"peroxisomal membrane","na":5,"nb":29,"a":[["membrane_organelle/glycosome_membrane.html","glycosome membrane"],["membrane_organelle/glyoxysomal_membrane.html","glyoxysomal membrane"],["membrane_organelle/peroxisomal_matrix.html","peroxisomal matrix"],["membrane_organelle/peroxisomal_membrane.html","peroxisomal membrane"],["membrane_organelle/peroxisome.html","peroxisome"]],"b":[["ComplexPortal%3ACPX-1730","Peroxisomal ABC transporter complex PXA1-PXA2"],["ComplexPortal%3ACPX-10001","Peroxisomal PEX13-PEX14 docking complex"],["ComplexPortal%3ACPX-10021","Peroxisomal PEX13-PEX14 docking complex"],["ComplexPortal%3ACPX-1904","Peroxisomal PEX13-PEX14-PEX17 docking complex"],["ComplexPortal%3ACPX-1905","Peroxisomal PEX7-PEX18 receptor complex"],["ComplexPortal%3ACPX-1906","Peroxisomal PEX7-PEX21 receptor complex"]]},{"id":"GO:0000228","l":"nuclear chromosome","na":5,"nb":26,"a":[["membrane_organelle/macronucleus.html","macronucleus"],["membrane_organelle/micronucleus.html","micronucleus"],["membrane_organelle/nuclear_lumen.html","nuclear lumen"],["other/coma_complex.html","COMA complex"],["other/nuclear_chromosome.html","nuclear chromosome"]],"b":[["ComplexPortal%3ACPX-2340","Male specific lethal complex"],["ComplexPortal%3ACPX-1288","MEI5-SAE3 recombination assembly factor complex"],["ComplexPortal%3ACPX-26610","slx1-slx4 structure-specific endonuclease complex"],["ComplexPortal%3ACPX-3159","SLX1-SLX4 structure-specific endonuclease complex"],["ComplexPortal%3ACPX-8175","SLX1-SLX4 structure-specific endonuclease complex"],["ComplexPortal%3ACPX-8093","SWI5-SFR1 recombination accessory factor complex"]]},{"id":"GO:0005684","l":"U2-type spliceosomal complex","na":5,"nb":26,"a":[["ribonucleoprotein/u2_type_catalytic_step_1_spliceosome.html","U2-type catalytic step 1 spliceosome"],["ribonucleoprotein/u2_type_catalytic_step_2_spliceosome.html","U2-type catalytic step 2 spliceosome"],["ribonucleoprotein/u2_type_post_mrna_release_spliceosomal_complex.html","U2-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u2_type_precatalytic_spliceosome.html","U2-type precatalytic spliceosome"],["ribonucleoprotein/u2_type_prespliceosome.html","U2-type prespliceosome"]],"b":[["ComplexPortal%3ACPX-2565","SF3A complex"],["ComplexPortal%3ACPX-1647","SF3B complex"],["ComplexPortal%3ACPX-2227","SF3B complex"],["GO%3A0000243","commitment complex"],["GO%3A0071006","U2-type catalytic step 1 spliceosome"],["GO%3A0071007","U2-type catalytic step 2 spliceosome"]]},{"id":"NCBITaxon:5811","l":"Toxoplasma gondii","na":18,"nb":5,"a":[["cytoskeleton/conoid.html","conoid"],["cytoskeleton/intraconoid_microtubule.html","intraconoid microtubule"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["cytoskeleton/subpellicular_microtubule.html","subpellicular microtubule"],["membrane_organelle/apicomplexan_dense_granule.html","apicomplexan dense granule"],["membrane_organelle/apicomplexan_dense_granule_membrane.html","apicomplexan dense granule membrane"]],"b":[["Pfam%3APF24633","Domain of unknown function (DUF7630)"],["Pfam%3APF24634","Domain of unknown function (DUF7631)"],["Pfam%3APF05084","Granule antigen protein (GRA6)"],["Pfam%3APF14531","Kinase-like"],["Pfam%3APF10564","Sialic-acid binding micronemal adhesive repeat"]]},{"id":"GO:0005758","l":"mitochondrial intermembrane space","na":5,"nb":17,"a":[["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrial_intermembrane_space.html","mitochondrial intermembrane space"],["membrane_organelle/mitochondrial_membrane.html","mitochondrial membrane"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"]],"b":[["ComplexPortal%3ACPX-2371","TIM8-TIM13 mitochondrial intermembrane space protein transporter complex"],["ComplexPortal%3ACPX-6131","TIM8A-TIM13 mitochondrial intermembrane space protein transporter complex"],["ComplexPortal%3ACPX-6132","TIM8B-TIM13 mitochondrial intermembrane space protein transporter complex"],["ComplexPortal%3ACPX-2268","TIM9-TIM10 mitochondrial intermembrane space protein transporter complex"],["ComplexPortal%3ACPX-6125","TIM9-TIM10 mitochondrial intermembrane space protein transporter complex"],["ComplexPortal%3ACPX-6126","TIM9-TIM10-TIM10B mitochondrial intermembrane space protein transporter complex"]]},{"id":"GO:0009512","l":"cytochrome b6f complex","na":5,"nb":12,"a":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["GO%3A0009512","cytochrome b6f complex"],["NCBIfam%3ANF014576","cytochrome b6-f complex subunit PetG"],["NCBIfam%3ANF016971","cytochrome b6-f complex subunit PetL"],["NCBIfam%3ANF015687","cytochrome b6-f complex subunit PetN"],["NCBIfam%3ANF050003","cytochrome b6f subunit PetP"],["NCBIfam%3ANF019653","PetM family cytochrome b6-f complex subunit 7"]]},{"id":"GO:0005637","l":"nuclear inner membrane","na":5,"nb":11,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nuclear_envelope_lumen.html","nuclear envelope lumen"],["membrane_organelle/nuclear_inner_membrane.html","nuclear inner membrane"],["membrane_organelle/nuclear_lumen.html","nuclear lumen"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"]],"b":[["ComplexPortal%3ACPX-3248","Asi ubiquitin ligase complex"],["GO%3A0005637","nuclear inner membrane"],["InterPro%3AIPR018861","Transmembrane protein 201, C-terminal"],["NCBIfam%3ANF021959","DUF2448 domain-containing protein"],["PANTHER%3APTHR38044","BOUQUET FORMATION PROTEIN 4"],["PANTHER%3APTHR31488","DPY-19-LIKE 1, LIKE (H. SAPIENS)"]]},{"id":"GO:0005688","l":"U6 snRNP","na":5,"nb":10,"a":[["ribonucleoprotein/u2_type_catalytic_step_1_spliceosome.html","U2-type catalytic step 1 spliceosome"],["ribonucleoprotein/u2_type_catalytic_step_2_spliceosome.html","U2-type catalytic step 2 spliceosome"],["ribonucleoprotein/u2_type_post_mrna_release_spliceosomal_complex.html","U2-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u4_u6_snrnp.html","U4/U6 snRNP"],["ribonucleoprotein/u6_snrnp.html","U6 snRNP"]],"b":[["ComplexPortal%3ACPX-44","LSM2-8 complex"],["ComplexPortal%3ACPX-24","U6 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-26411","U6 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-26415","U6 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-26483","U6 small nuclear ribonucleoprotein complex"],["GO%3A0005688","U6 snRNP"]]},{"id":"GO:0005879","l":"axonemal microtubule","na":5,"nb":10,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"],["cytoskeleton/b_axonemal_microtubule.html","B axonemal microtubule"],["cytoskeleton/c1_axonemal_microtubule.html","C1 axonemal microtubule"],["cytoskeleton/c2_axonemal_microtubule.html","C2 axonemal microtubule"]],"b":[["GO%3A0097649","A axonemal microtubule"],["GO%3A0005879","axonemal microtubule"],["GO%3A0097650","B axonemal microtubule"],["GO%3A1990719","C1 axonemal microtubule"],["GO%3A1990720","C2 axonemal microtubule"],["NCBIfam%3ANF026242","microtubule wall 1/2 piercer family protein"]]},{"id":"GO:0016471","l":"vacuolar proton-transporting V-type ATPase complex","na":5,"nb":9,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v0_domain.html","vacuolar proton-transporting V-type ATPase, V0 domain"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v1_domain.html","vacuolar proton-transporting V-type ATPase, V1 domain"],["membrane_organelle/fungal_type_vacuole_membrane.html","fungal-type vacuole membrane"],["membrane_organelle/vacuolar_membrane.html","vacuolar membrane"]],"b":[["ComplexPortal%3ACPX-1193","Vacuolar proton translocating ATPase complex, vacuole variant"],["GO%3A0046611","lysosomal proton-transporting V-type ATPase complex"],["GO%3A0016471","vacuolar proton-transporting V-type ATPase complex"],["NCBIfam%3ATIGR01042","V-type ATPase subunit A"],["NCBIfam%3ATIGR01040","V-type ATPase subunit B"],["NCBIfam%3ATIGR01100","V-type ATPase subunit C"]]},{"id":"GO:0030135","l":"coated vesicle","na":5,"nb":9,"a":[["membrane_organelle/clathrin_coated_vesicle.html","clathrin-coated vesicle"],["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"],["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"]],"b":[["GO%3A0030136","clathrin-coated vesicle"],["GO%3A0030135","coated vesicle"],["GO%3A0030137","COPI-coated vesicle"],["GO%3A0030134","COPII-coated ER to Golgi transport vesicle"],["PANTHER%3APTHR31975","BUD SITE SELECTION PROTEIN 7-RELATED"],["PANTHER%3APTHR10261","COATOMER SUBUNIT GAMMA"]]},{"id":"GO:0031904","l":"endosome lumen","na":8,"nb":5,"a":[["membrane_organelle/early_endosome_lumen.html","early endosome lumen"],["membrane_organelle/endosome.html","endosome"],["membrane_organelle/endosome_lumen.html","endosome lumen"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/late_endosome_lumen.html","late endosome lumen"]],"b":[["GO%3A0031905","early endosome lumen"],["GO%3A0036021","endolysosome lumen"],["GO%3A0031904","endosome lumen"],["GO%3A0031906","late endosome lumen"],["GO%3A0034777","recycling endosome lumen"]]},{"id":"GO:0009528","l":"plastid inner membrane","na":7,"nb":5,"a":[["membrane_organelle/chloroplast_inner_membrane.html","chloroplast inner membrane"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/organellar_chromatophore_inner_membrane.html","organellar chromatophore inner membrane"],["membrane_organelle/plastid_envelope.html","plastid envelope"],["membrane_organelle/plastid_inner_membrane.html","plastid inner membrane"],["membrane_organelle/plastid_intermembrane_space.html","plastid intermembrane space"]],"b":[["GO%3A0033098","amyloplast inner membrane"],["GO%3A0009706","chloroplast inner membrane"],["GO%3A0031899","chromoplast inner membrane"],["GO%3A0036012","cyanelle inner membrane"],["GO%3A0009528","plastid inner membrane"]]},{"id":"GO:0009570","l":"chloroplast stroma","na":7,"nb":5,"a":[["inclusion/plastoglobule.html","plastoglobule"],["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_inner_membrane.html","chloroplast inner membrane"],["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"],["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"]],"b":[["GO%3A0009570","chloroplast stroma"],["PANTHER%3APTHR34113","INACTIVE PURPLE ACID PHOSPHATASE-LIKE PROTEIN"],["PANTHER%3APTHR36803","PROTEIN CHLORORESPIRATORY REDUCTION 7, CHLOROPLASTIC"],["PANTHER%3APTHR47317","PROTEIN LHCP TRANSLOCATION DEFECT"],["PANTHER%3APTHR34669","THIOREDOXIN-LIKE FOLD DOMAIN-CONTAINING PROTEIN MRL7L, CHLOROPLASTIC"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":7,"nb":5,"a":[["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/rc_lh1_pufx_core_complex.html","RC-LH1-PufX core complex"],["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"]],"b":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF02963","Restriction endonuclease EcoRI"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["PROSITE%3APS00974","Mannitol dehydrogenases signature"],["PROSITE%3APS00567","Phosphoribulokinase signature"]]},{"id":"GO:0000324","l":"fungal-type vacuole","na":6,"nb":5,"a":[["membrane_organelle/autophagosome.html","autophagosome"],["membrane_organelle/cvt_vesicle.html","Cvt vesicle"],["membrane_organelle/fungal_type_vacuole.html","fungal-type vacuole"],["membrane_organelle/fungal_type_vacuole_lumen.html","fungal-type vacuole lumen"],["membrane_organelle/fungal_type_vacuole_membrane.html","fungal-type vacuole membrane"],["membrane_organelle/vacuole.html","vacuole"]],"b":[["ComplexPortal%3ACPX-1278","LMA1 complex, TRX1 variant"],["ComplexPortal%3ACPX-1279","LMA1 complex, TRX2 variant"],["GO%3A0000324","fungal-type vacuole"],["InterPro%3AIPR033819","Saccharopepsin"],["PANTHER%3APTHR36819","REGULATOR OF PHOSPHOLIPASE D SRF1"]]},{"id":"GO:0030076","l":"light-harvesting complex","na":5,"nb":6,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/phycobilisome.html","phycobilisome"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"]],"b":[["GO%3A0030076","light-harvesting complex"],["GO%3A0030089","phycobilisome"],["GO%3A0030077","plasma membrane light-harvesting complex"],["GO%3A0009503","thylakoid light-harvesting complex"],["Pfam%3APF02429","Peridinin-chlorophyll A binding protein"],["InterPro%3AIPR036550","Peridinin-chlorophyll A binding superfamily"]]},{"id":"GO:0030694","l":"bacterial-type flagellum basal body, rod","na":6,"nb":5,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"],["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"],["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"]],"b":[["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["GO%3A0030694","bacterial-type flagellum basal body, rod"],["NCBIfam%3ATIGR01396","flagellar basal body rod protein FlgB"],["NCBIfam%3ATIGR01395","flagellar basal body rod protein FlgC"],["NCBIfam%3ATIGR02490","flagellar basal-body rod protein FlgF"]]},{"id":"GO:0000814","l":"ESCRT II complex","na":5,"nb":5,"a":[["membrane_organelle/endosome.html","endosome"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/multivesicular_body.html","multivesicular body"],["other/escrt_complex.html","ESCRT complex"],["other/escrt_ii_complex.html","ESCRT II complex"]],"b":[["ComplexPortal%3ACPX-1623","ESCRT-II complex"],["ComplexPortal%3ACPX-2458","ESCRT-II complex"],["ComplexPortal%3ACPX-2506","ESCRT-II complex"],["GO%3A0000814","ESCRT II complex"],["Pfam%3APF05871","ESCRT-II complex subunit"]]},{"id":"GO:0030134","l":"COPII-coated ER to Golgi transport vesicle","na":5,"nb":5,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"],["membrane_organelle/copii_coated_vesicle_lumen.html","COPII-coated vesicle lumen"],["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"],["other/copii_vesicle_coat.html","COPII vesicle coat"]],"b":[["GO%3A0030134","COPII-coated ER to Golgi transport vesicle"],["PANTHER%3APTHR10984","ENDOPLASMIC RETICULUM-GOLGI INTERMEDIATE COMPARTMENT PROTEIN"],["PANTHER%3APTHR15858","IMMEDIATE EARLY RESPONSE 3-INTERACTING PROTEIN 1"],["PANTHER%3APTHR13144","TEX261 PROTEIN"],["PANTHER%3APTHR14083","YIP1 INTERACTING FACTOR HOMOLOG YIF1 PROTEIN"]]},{"id":"GO:0090114","l":"COPII-coated vesicle budding","na":5,"nb":5,"a":[["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"],["membrane_organelle/endoplasmic_reticulum_membrane.html","endoplasmic reticulum membrane"],["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"],["other/copii_vesicle_coat.html","COPII vesicle coat"],["other/vesicle_coat.html","vesicle coat"]],"b":[["GO%3A0090114","COPII-coated vesicle budding"],["InterPro%3AIPR037550","Sec23, C-terminal"],["PANTHER%3APTHR11141","PROTEIN TRANSPORT PROTEIN SEC23"],["PANTHER%3APTHR13803","SEC24-RELATED PROTEIN"],["PANTHER%3APTHR13923","SEC31-RELATED PROTEIN"]]},{"id":"GO:0140535","l":"intracellular protein-containing complex","na":4,"nb":262,"a":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"],["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"],["other/exodeoxyribonuclease_v_complex.html","exodeoxyribonuclease V complex"],["other/proteasome_complex.html","proteasome complex"]],"b":[["ComplexPortal%3ACPX-15604","VCP-remodelling complex"],["GO%3A0032144","4-aminobutyrate transaminase complex"],["GO%3A0034977","ABIN2-NFKB1-MAP3K8 complex"],["GO%3A0030929","ADPG pyrophosphorylase complex"],["GO%3A0017101","aminoacyl-tRNA synthetase multienzyme complex"],["GO%3A0009356","aminodeoxychorismate synthase complex"]]},{"id":"GO:0031981","l":"nuclear lumen","na":4,"nb":147,"a":[["membrane_organelle/nuclear_lumen.html","nuclear lumen"],["membrane_organelle/nucleus.html","nucleus"],["other/nuclear_chromosome.html","nuclear chromosome"],["other/nucleolus.html","nucleolus"]],"b":[["GO%3A0031981","nuclear lumen"],["PANTHER%3APTHR28028","60S RIBOSOMAL SUBUNIT ASSEMBLY/EXPORT PROTEIN LOC1"],["PANTHER%3APTHR15565","AATF PROTEIN APOPTOSIS ANTAGONIZING TRANSCRIPTION FACTOR"],["PANTHER%3APTHR12311","ACTIVATOR OF BASAL TRANSCRIPTION 1"],["PANTHER%3APTHR31454","ACTIVE REGULATOR OF SIRT1"],["PANTHER%3APTHR46627","AMINOPEPTIDASE O"]]},{"id":"GO:0060271","l":"cilium assembly","na":4,"nb":94,"a":[["appendage/ciliary_membrane.html","ciliary membrane"],["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"],["cytoskeleton/ciliary_basal_body.html","ciliary basal body"]],"b":[["ComplexPortal%3ACPX-1908","BBSome complex"],["ComplexPortal%3ACPX-1909","BBSome complex"],["ComplexPortal%3ACPX-2747","BBSome complex"],["ComplexPortal%3ACPX-428","BBSome complex"],["ComplexPortal%3ACPX-2789","CEP290 complex"],["ComplexPortal%3ACPX-1289","Intraflagellar transport complex A"]]},{"id":"GO:0071973","l":"bacterial-type flagellum-dependent cell motility","na":4,"nb":60,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/periplasmic_flagellum.html","periplasmic flagellum"]],"b":[["ComplexPortal%3ACPX-4886","DNA-directed RNA polymerase holoenzyme complex, SigmaF variant"],["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["GO%3A0071973","bacterial-type flagellum-dependent cell motility"],["GO%3A0071978","bacterial-type flagellum-dependent swarming motility"]]},{"id":"GO:0036064","l":"ciliary basal body","na":4,"nb":42,"a":[["appendage/cilium.html","cilium"],["cytoskeleton/ciliary_basal_body.html","ciliary basal body"],["cytoskeleton/ciliary_rootlet.html","ciliary rootlet"],["cytoskeleton/tripartite_attachment_complex.html","tripartite attachment complex"]],"b":[["GO%3A0036064","ciliary basal body"],["GO%3A1902636","kinociliary basal body"],["GO%3A1902671","left anterior basal body"],["GO%3A1902677","left caudal basal body"],["GO%3A1902673","left posteriolateral basal body"],["GO%3A1902675","left ventral basal body"]]},{"id":"GO:0009522","l":"photosystem I","na":4,"nb":33,"a":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/photosystem_i.html","photosystem I"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["GO%3A0030093","chloroplast photosystem I"],["GO%3A0009522","photosystem I"],["GO%3A0030094","plasma membrane-derived photosystem I"],["NCBIfam%3ANF014449","photosystem I assembly protein Ycf4"],["NCBIfam%3ATIGR01336","photosystem I core protein PsaB"],["NCBIfam%3ANF014578","photosystem I reaction center subunit II"]]},{"id":"GO:0031967","l":"organelle envelope","na":4,"nb":31,"a":[["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitosome_envelope.html","mitosome envelope"],["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/plastid_envelope.html","plastid envelope"]],"b":[["GO%3A0005740","mitochondrial envelope"],["GO%3A0005635","nuclear envelope"],["GO%3A0031967","organelle envelope"],["GO%3A0009526","plastid envelope"],["GO%3A0070732","spindle envelope"],["PANTHER%3APTHR36959","ALTERED INHERITANCE OF MITOCHONDRIA PROTEIN 24, MITOCHONDRIAL"]]},{"id":"GO:0006890","l":"retrograde vesicle-mediated transport, Golgi to endoplasmic reticulum","na":4,"nb":30,"a":[["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["other/copi_vesicle_coat.html","COPI vesicle coat"],["other/dsl1_nzr_complex.html","Dsl1/NZR complex"]],"b":[["ComplexPortal%3ACPX-7803","COPI vesicle coat complex, COPG1-COPZ1 variant"],["ComplexPortal%3ACPX-7970","COPI vesicle coat complex, COPG1-COPZ2 variant"],["ComplexPortal%3ACPX-7969","COPI vesicle coat complex, COPG2-COPZ1 variant"],["ComplexPortal%3ACPX-1652","COPI vesicle coat complex"],["ComplexPortal%3ACPX-2820","COPI vesicle coat complex"],["ComplexPortal%3ACPX-1786","Dsl1 tethering complex"]]},{"id":"GO:0005773","l":"vacuole","na":4,"nb":29,"a":[["membrane_organelle/fungal_type_vacuole.html","fungal-type vacuole"],["membrane_organelle/vacuolar_lumen.html","vacuolar lumen"],["membrane_organelle/vacuolar_membrane.html","vacuolar membrane"],["membrane_organelle/vacuole.html","vacuole"]],"b":[["GO%3A0005776","autophagosome"],["GO%3A0000331","contractile vacuole"],["GO%3A0000323","lytic vacuole"],["GO%3A0000325","plant-type vacuole"],["GO%3A0032195","post-lysosomal vacuole"],["GO%3A0000322","storage vacuole"]]},{"id":"GO:0005770","l":"late endosome","na":4,"nb":27,"a":[["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/late_endosome_lumen.html","late endosome lumen"],["membrane_organelle/late_endosome_membrane.html","late endosome membrane"],["membrane_organelle/multivesicular_body.html","multivesicular body"]],"b":[["ComplexPortal%3ACPX-5181","AP-5 Adaptor complex"],["ComplexPortal%3ACPX-5182","AP-5 Adaptor complex"],["ComplexPortal%3ACPX-20045","AP5-Spastizin-spatacsin complex"],["ComplexPortal%3ACPX-3233","GSE complex"],["ComplexPortal%3ACPX-8153","MON1-CCZ1 guanyl-nucleotide exchange factor complex, MON1A variant"],["ComplexPortal%3ACPX-8152","MON1-CCZ1 guanyl-nucleotide exchange factor complex, MON1B variant"]]},{"id":"GO:0099023","l":"vesicle tethering complex","na":4,"nb":20,"a":[["other/cog_complex.html","COG complex"],["other/corvet_complex.html","CORVET complex"],["other/dsl1_nzr_complex.html","Dsl1/NZR complex"],["other/garp_complex.html","GARP complex"]],"b":[["ComplexPortal%3ACPX-6241","CHEVI tethering complex"],["GO%3A0017119","COG complex"],["GO%3A0106103","COPII vesicles tethering complex"],["GO%3A0033263","CORVET complex"],["GO%3A0070939","Dsl1/NZR complex"],["GO%3A0000145","exocyst"]]},{"id":"GO:0110143","l":"magnetosome","na":4,"nb":17,"a":[["cytoskeleton/mamk_filament.html","MamK filament"],["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]],"b":[["GO%3A0110143","magnetosome"],["NCBIfam%3ANF040997","liposome tubulation protein MamY"],["NCBIfam%3ANF040917","magnetic particle specific iron-binding protein Mms6"],["NCBIfam%3ANF040986","magnetosome biogenesis transporter MamH"],["NCBIfam%3ANF040989","magnetosome biogenesis transporter MamN"],["NCBIfam%3ANF040998","magnetosome biogenesis transporter MamZ"]]},{"id":"GO:0005788","l":"endoplasmic reticulum lumen","na":4,"nb":15,"a":[["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"],["membrane_organelle/endoplasmic_reticulum_lumen.html","endoplasmic reticulum lumen"],["membrane_organelle/endoplasmic_reticulum_membrane.html","endoplasmic reticulum membrane"],["membrane_organelle/nuclear_envelope_lumen.html","nuclear envelope lumen"]],"b":[["ComplexPortal%3ACPX-6822","Glucosidase II complex"],["ComplexPortal%3ACPX-1283","HTM1-PDI1 exomannosidase complex"],["GO%3A0099021","cortical endoplasmic reticulum lumen"],["GO%3A0005788","endoplasmic reticulum lumen"],["GO%3A0099020","perinuclear endoplasmic reticulum lumen"],["GO%3A0048237","rough endoplasmic reticulum lumen"]]},{"id":"GO:0030117","l":"membrane coat","na":4,"nb":13,"a":[["other/ap_type_membrane_coat_adaptor_complex.html","AP-type membrane coat adaptor complex"],["other/clathrin_coat.html","clathrin coat"],["other/membrane_coat.html","membrane coat"],["other/vesicle_coat.html","vesicle coat"]],"b":[["GO%3A0030118","clathrin coat"],["GO%3A0030117","membrane coat"],["GO%3A0030120","vesicle coat"],["InterPro%3AIPR000804","Clathrin adaptor complex, small chain"],["InterPro%3AIPR002553","Clathrin/coatomer adaptor, adaptin-like, N-terminal"],["InterPro%3AIPR006692","COPA/B, second beta-propeller domain"]]},{"id":"GO:0031469","l":"bacterial microcompartment","na":4,"nb":12,"a":[["microcompartment/bacterial_microcompartment.html","bacterial microcompartment"],["microcompartment/carboxysome.html","carboxysome"],["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"],["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]],"b":[["GO%3A0031469","bacterial microcompartment"],["GO%3A0031470","carboxysome"],["GO%3A0031471","ethanolamine degradation polyhedral organelle"],["GO%3A0031472","propanediol degradation polyhedral organelle"],["NCBIfam%3ATIGR02704","carboxysome peptide B"],["NCBIfam%3ANF011934","ethanolamine utilization microcompartment protein EutL"]]},{"id":"GO:0030139","l":"endocytic vesicle","na":4,"nb":11,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle.html","clathrin-coated endocytic vesicle"],["membrane_organelle/endocytic_vesicle.html","endocytic vesicle"],["membrane_organelle/endocytic_vesicle_lumen.html","endocytic vesicle lumen"],["membrane_organelle/endocytic_vesicle_membrane.html","endocytic vesicle membrane"]],"b":[["ComplexPortal%3ACPX-5774","Cubam cobalamin uptake receptor complex"],["ComplexPortal%3ACPX-5847","Cubam cobalamin uptake receptor complex"],["GO%3A0045334","clathrin-coated endocytic vesicle"],["GO%3A0030139","endocytic vesicle"],["GO%3A0045335","phagocytic vesicle"],["GO%3A0032195","post-lysosomal vacuole"]]},{"id":"GO:0030660","l":"Golgi-associated vesicle membrane","na":4,"nb":11,"a":[["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"],["membrane_organelle/trans_golgi_network_transport_vesicle_membrane.html","trans-Golgi network transport vesicle membrane"]],"b":[["GO%3A0030663","COPI-coated vesicle membrane"],["GO%3A0030660","Golgi-associated vesicle membrane"],["GO%3A0012510","trans-Golgi network transport vesicle membrane"],["PANTHER%3APTHR16156","AFTIPHILIN A-RELATED"],["PANTHER%3APTHR15463","AP1 GAMMA SUBUNIT BINDING PROTEIN 1"],["PANTHER%3APTHR19876","COATOMER"]]},{"id":"NCBITaxon:5741","l":"Giardia intestinalis","na":11,"nb":4,"a":[["cytoskeleton/funis.html","funis"],["cytoskeleton/median_body.html","median body"],["cytoskeleton/microtubule.html","microtubule"],["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_crossbridge.html","ventral disc crossbridge"],["cytoskeleton/ventral_disc_dorsal_microribbon.html","ventral disc dorsal microribbon"]],"b":[["Pfam%3APF22293","Annexin E1, fourth repeat"],["Pfam%3APF17529","Family of unknown function (DUF5450)"],["TED%3AAF-V6TFM4-F1-model_v4_TED01","TED novel fold AF-V6TFM4-F1-model_v4_TED01"],["TED%3AAF-V6TNW5-F1-model_v4_TED02","TED novel fold AF-V6TNW5-F1-model_v4_TED02"]]},{"id":"GO:0000815","l":"ESCRT III complex","na":10,"nb":4,"a":[["membrane_organelle/endosome.html","endosome"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/multivesicular_body.html","multivesicular body"],["membrane_organelle/multivesicular_body_intraluminal_vesicle.html","multivesicular body intraluminal vesicle"],["membrane_organelle/multivesicular_body_membrane.html","multivesicular body membrane"]],"b":[["ComplexPortal%3ACPX-1624","ESCRT-III complex"],["ComplexPortal%3ACPX-2459","ESCRT-III complex"],["ComplexPortal%3ACPX-329","ESCRT-III complex"],["GO%3A0000815","ESCRT III complex"]]},{"id":"GO:0000940","l":"outer kinetochore","na":4,"nb":10,"a":[["other/dash_complex.html","DASH complex"],["other/mis12_mind_type_complex.html","MIS12/MIND type complex"],["other/ndc80_complex.html","Ndc80 complex"],["other/outer_kinetochore.html","outer kinetochore"]],"b":[["GO%3A0000444","MIS12/MIND type complex"],["GO%3A0000940","outer kinetochore"],["PANTHER%3APTHR14778","KINETOCHORE-ASSOCIATED PROTEIN DSN1 HOMOLOG"],["PANTHER%3APTHR31749","KINETOCHORE-ASSOCIATED PROTEIN NSL1 HOMOLOG"],["PANTHER%3APTHR10643","KINETOCHORE PROTEIN NDC80"],["PANTHER%3APTHR14281","KINETOCHORE PROTEIN SPC25-RELATED"]]},{"id":"GO:0009295","l":"nucleoid","na":4,"nb":10,"a":[["nucleoid/mitochondrial_nucleoid.html","mitochondrial nucleoid"],["nucleoid/nucleoid.html","nucleoid"],["nucleoid/plastid_nucleoid.html","plastid nucleoid"],["other/single_stranded_dna_binding_protein_complex.html","single-stranded DNA-binding protein complex"]],"b":[["GO%3A0043590","bacterial nucleoid"],["GO%3A0042645","mitochondrial nucleoid"],["GO%3A0009295","nucleoid"],["GO%3A0042646","plastid nucleoid"],["NCBIfam%3ANF016217","MukB N-terminal"],["NCBIfam%3ANF001557","nucleoid-associated protein YejK"]]},{"id":"GO:0005816","l":"spindle pole body","na":4,"nb":9,"a":[["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"],["cytoskeleton/spindle_pole_body.html","spindle pole body"],["spore/prospore_membrane_spindle_pole_body_attachment_site.html","prospore membrane spindle pole body attachment site"]],"b":[["ComplexPortal%3ACPX-1198","Gamma tubulin small complex"],["ComplexPortal%3ACPX-1287","MPS2-BBP1 spindle pole body anchor complex"],["ComplexPortal%3ACPX-26510","SID2-MOB1 protein kinase complex"],["GO%3A0035974","meiotic spindle pole body"],["GO%3A0044732","mitotic spindle pole body"],["GO%3A0005816","spindle pole body"]]},{"id":"GO:0031160","l":"spore wall","na":4,"nb":9,"a":[["spore/microsporidian_type_endospore.html","microsporidian-type endospore"],["spore/microsporidian_type_exospore.html","microsporidian-type exospore"],["spore/polar_tube_anchoring_disc.html","polar tube anchoring disc"],["spore/spore_wall.html","spore wall"]],"b":[["ComplexPortal%3ACPX-3028","1,3-beta-D-glucan synthase complex, FKS3-RHO1 variant"],["GO%3A0005619","ascospore wall"],["GO%3A0097515","asexual spore wall"],["GO%3A0043591","endospore external encapsulating structure"],["GO%3A0097514","sexual spore wall"],["GO%3A0031160","spore wall"]]},{"id":"GO:0001534","l":"radial spoke","na":4,"nb":8,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_central_pair_projection.html","axonemal central pair projection"],["cytoskeleton/axoneme.html","axoneme"],["cytoskeleton/radial_spoke.html","radial spoke"]],"b":[["ComplexPortal%3ACPX-8161","Radial spoke complex, ciliiar variant"],["ComplexPortal%3ACPX-8162","Radial spoke complex, flagellar variant"],["ComplexPortal%3ACPX-8164","Radial spoke complex, flagellar variant"],["GO%3A0120333","radial spoke 1"],["GO%3A0120334","radial spoke 2"],["GO%3A0120335","radial spoke 3"]]},{"id":"GO:0006119","l":"oxidative phosphorylation","na":4,"nb":8,"a":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"]],"b":[["ComplexPortal%3ACPX-268","Cytochrome bd-I ubiquinol oxidase complex"],["ComplexPortal%3ACPX-269","Cytochrome bd-II ubiquinol oxidase complex"],["GO%3A0006119","oxidative phosphorylation"],["PANTHER%3APTHR12448","ATP SYNTHASE EPSILON CHAIN, MITOCHONDRIAL"],["PANTHER%3APTHR13080","ATP SYNTHASE F CHAIN, MITOCHONDRIAL-RELATED"],["PANTHER%3APTHR43141","CYTOCHROME BD2 SUBUNIT II"]]},{"id":"InterPro:IPR001492","l":"","na":4,"nb":8,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["Pfam%3APF00700","Bacterial flagellin C-terminal helical region"],["Pfam%3APF08884","Flagellin D3 domain"],["Pfam%3APF21504","Flagellin, barrel domain"],["Pfam%3APF22370","Flagellin, beta sheet domain"],["PANTHER%3APTHR42792","FLAGELLIN"],["Pfam%3APF00669","Bacterial flagellin N-terminal helical region"]]},{"id":"GO:0009424","l":"bacterial-type flagellum hook","na":4,"nb":7,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["GO%3A0009424","bacterial-type flagellum hook"],["NCBIfam%3ATIGR02492","flagellar hook-associated protein FlgK"],["NCBIfam%3ATIGR02550","flagellar hook-associated protein FlgL"],["NCBIfam%3ANF007514","flagellar hook length control protein FliK"],["InterPro%3AIPR003481","Flagellar hook-associated protein 2, N-terminal"],["NCBIfam%3ANF014518","flagellar cap protein FliD N-terminal domain-containing protein"]]},{"id":"GO:0009527","l":"plastid outer membrane","na":7,"nb":4,"a":[["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"],["membrane_organelle/organellar_chromatophore_outer_membrane.html","organellar chromatophore outer membrane"],["membrane_organelle/plastid_envelope.html","plastid envelope"],["membrane_organelle/plastid_intermembrane_space.html","plastid intermembrane space"],["membrane_organelle/plastid_membrane.html","plastid membrane"]],"b":[["GO%3A0009707","chloroplast outer membrane"],["GO%3A0031900","chromoplast outer membrane"],["GO%3A0036013","cyanelle outer membrane"],["GO%3A0009527","plastid outer membrane"]]},{"id":"GO:0009529","l":"plastid intermembrane space","na":7,"nb":4,"a":[["membrane_organelle/chloroplast_intermembrane_space.html","chloroplast intermembrane space"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/organellar_chromatophore_intermembrane_space.html","organellar chromatophore intermembrane space"],["membrane_organelle/plastid_envelope.html","plastid envelope"],["membrane_organelle/plastid_inner_membrane.html","plastid inner membrane"],["membrane_organelle/plastid_intermembrane_space.html","plastid intermembrane space"]],"b":[["GO%3A0031972","chloroplast intermembrane space"],["GO%3A0031973","chromoplast intermembrane space"],["GO%3A0036014","cyanelle intermembrane space"],["GO%3A0009529","plastid intermembrane space"]]},{"id":"GO:0012507","l":"ER to Golgi transport vesicle membrane","na":4,"nb":7,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"],["membrane_organelle/copii_coated_vesicle_lumen.html","COPII-coated vesicle lumen"],["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"]],"b":[["GO%3A0012507","ER to Golgi transport vesicle membrane"],["PANTHER%3APTHR11141","PROTEIN TRANSPORT PROTEIN SEC23"],["PANTHER%3APTHR45684","RE74312P"],["PANTHER%3APTHR13803","SEC24-RELATED PROTEIN"],["PANTHER%3APTHR13923","SEC31-RELATED PROTEIN"],["PANTHER%3APTHR45837","VESICLE-TRAFFICKING PROTEIN SEC22B"]]},{"id":"GO:0031985","l":"Golgi cisterna","na":4,"nb":7,"a":[["membrane_organelle/golgi_apparatus.html","Golgi apparatus"],["membrane_organelle/golgi_cisterna.html","Golgi cisterna"],["membrane_organelle/golgi_cisterna_membrane.html","Golgi cisterna membrane"],["membrane_organelle/golgi_membrane.html","Golgi membrane"]],"b":[["GO%3A0000137","Golgi cis cisterna"],["GO%3A0031985","Golgi cisterna"],["GO%3A0005797","Golgi medial cisterna"],["GO%3A0000138","Golgi trans cisterna"],["PANTHER%3APTHR13815","GOLGIN-84"],["PANTHER%3APTHR21094","GOS-28 SNARE- RELATED"]]},{"id":"GO:0055035","l":"plastid thylakoid membrane","na":7,"nb":4,"a":[["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"],["membrane_organelle/plastid_membrane.html","plastid membrane"],["membrane_organelle/plastid_thylakoid.html","plastid thylakoid"],["membrane_organelle/plastid_thylakoid_lumen.html","plastid thylakoid lumen"]],"b":[["GO%3A0009535","chloroplast thylakoid membrane"],["GO%3A0033115","cyanelle thylakoid membrane"],["GO%3A0055035","plastid thylakoid membrane"],["GO%3A0042650","prothylakoid membrane"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":4,"nb":7,"a":[["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"],["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]],"b":[["Pfam%3APF19443","DAHL domain"],["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"],["Pfam%3APF03524","Conjugal transfer protein"],["Pfam%3APF27439","Chaperone protein DnaJ C-terminal region"],["Pfam%3APF10907","Protein of unknown function (DUF2749)"],["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]]},{"id":"GO:0009534","l":"chloroplast thylakoid","na":4,"nb":6,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"],["membrane_organelle/chloroplast_thylakoid_lumen.html","chloroplast thylakoid lumen"],["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"]],"b":[["GO%3A0009533","chloroplast stromal thylakoid"],["GO%3A0009534","chloroplast thylakoid"],["GO%3A0009515","granal stacked thylakoid"],["PANTHER%3APTHR47862","PEPTIDYL-PROLYL CIS-TRANS ISOMERASE FKBP18, CHLOROPLASTIC"],["PANTHER%3APTHR34790","PHOTOSYSTEM II CORE COMPLEX PROTEINS PSBY, CHLOROPLASTIC"],["PANTHER%3APTHR36734","YCF37-LIKE PROTEIN"]]},{"id":"GO:0030663","l":"COPI-coated vesicle membrane","na":6,"nb":4,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"],["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/copi_coated_vesicle_lumen.html","COPI-coated vesicle lumen"],["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"]],"b":[["ComplexPortal%3ACPX-1303","MST27-MST28 vesicle formation complex"],["GO%3A0030663","COPI-coated vesicle membrane"],["GO%3A0012508","Golgi to ER transport vesicle membrane"],["GO%3A0012509","inter-Golgi transport vesicle membrane"]]},{"id":"GO:0070112","l":"organellar chromatophore membrane","na":6,"nb":4,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_inner_membrane.html","organellar chromatophore inner membrane"],["membrane_organelle/organellar_chromatophore_membrane.html","organellar chromatophore membrane"],["membrane_organelle/organellar_chromatophore_outer_membrane.html","organellar chromatophore outer membrane"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"],["membrane_organelle/plasma_membrane_derived_chromatophore_membrane.html","plasma membrane-derived chromatophore membrane"]],"b":[["GO%3A0070113","organellar chromatophore inner membrane"],["GO%3A0070112","organellar chromatophore membrane"],["GO%3A0070114","organellar chromatophore outer membrane"],["GO%3A0070118","organellar chromatophore thylakoid membrane"]]},{"id":"NCBITaxon:5759","l":"Entamoeba histolytica","na":6,"nb":4,"a":[["membrane_organelle/mitosome.html","mitosome"],["membrane_organelle/mitosome_envelope.html","mitosome envelope"],["membrane_organelle/mitosome_inner_membrane.html","mitosome inner membrane"],["membrane_organelle/mitosome_intermembrane_space.html","mitosome intermembrane space"],["membrane_organelle/mitosome_matrix.html","mitosome matrix"],["membrane_organelle/mitosome_outer_membrane.html","mitosome outer membrane"]],"b":[["IDPO%3A0000012","molten globule to order"],["TED%3AAF-C4LXE1-F1-model_v4_TED01","TED highly-symmetric fold AF-C4LXE1-F1-model_v4_TED01"],["TED%3AAF-C4LXH3-F1-model_v4_TED02","TED novel fold AF-C4LXH3-F1-model_v4_TED02"],["TED%3AAF-C4MBN2-F1-model_v4_TED03","TED novel fold AF-C4MBN2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":6,"nb":4,"a":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"],["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"],["secretion_system/type_vi_secretion_system_baseplate.html","type VI secretion system baseplate"],["secretion_system/type_vi_secretion_system_contractile_sheath.html","type VI secretion system contractile sheath"],["secretion_system/type_vi_secretion_system_hcp_tube.html","type VI secretion system Hcp tube"],["secretion_system/type_vi_secretion_system_vgrg_paar_spike_complex.html","type VI secretion system VgrG/PAAR spike complex"]],"b":[["Pfam%3APF01375","Heat-labile enterotoxin alpha chain"],["Pfam%3APF09101","Exotoxin A binding"],["Pfam%3APF09009","Exotoxin A catalytic"],["Pfam%3APF09102","Exotoxin A, targeting"]]},{"id":"GO:0009421","l":"bacterial-type flagellum filament cap","na":4,"nb":5,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["GO%3A0009421","bacterial-type flagellum filament cap"],["NCBIfam%3ANF005955","flagellar filament capping protein FliD"],["NCBIfam%3ANF006282","flagellar filament capping protein FliD"],["NCBIfam%3ANF006435","flagellar filament capping protein FliD"],["NCBIfam%3ANF009400","flagellar filament capping protein FliD"]]},{"id":"GO:0030130","l":"clathrin coat of trans-Golgi network vesicle","na":4,"nb":5,"a":[["membrane_organelle/trans_golgi_network_transport_vesicle_membrane.html","trans-Golgi network transport vesicle membrane"],["other/ap_1_adaptor_complex.html","AP-1 adaptor complex"],["other/clathrin_coat_of_endocytic_vesicle.html","clathrin coat of endocytic vesicle"],["other/clathrin_coat_of_trans_golgi_network_vesicle.html","clathrin coat of trans-Golgi network vesicle"]],"b":[["GO%3A0030130","clathrin coat of trans-Golgi network vesicle"],["InterPro%3AIPR015348","Clathrin, heavy chain, linker, core motif"],["Pfam%3APF01086","Clathrin light chain"],["InterPro%3AIPR016025","Clathrin heavy chain, N-terminal"],["Pfam%3APF09268","Clathrin, heavy-chain linker"]]},{"id":"GO:0030132","l":"clathrin coat of coated pit","na":4,"nb":5,"a":[["other/ap_2_adaptor_complex.html","AP-2 adaptor complex"],["other/clathrin_coat.html","clathrin coat"],["other/clathrin_coat_of_coated_pit.html","clathrin coat of coated pit"],["other/clathrin_coated_pit.html","clathrin-coated pit"]],"b":[["GO%3A0030132","clathrin coat of coated pit"],["InterPro%3AIPR015348","Clathrin, heavy chain, linker, core motif"],["Pfam%3APF01086","Clathrin light chain"],["InterPro%3AIPR016025","Clathrin heavy chain, N-terminal"],["Pfam%3APF09268","Clathrin, heavy-chain linker"]]},{"id":"GO:0031976","l":"plastid thylakoid","na":5,"nb":4,"a":[["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/plastid_thylakoid.html","plastid thylakoid"],["membrane_organelle/plastid_thylakoid_lumen.html","plastid thylakoid lumen"],["membrane_organelle/plastid_thylakoid_membrane.html","plastid thylakoid membrane"]],"b":[["GO%3A0009534","chloroplast thylakoid"],["GO%3A0009843","cyanelle thylakoid"],["GO%3A0031976","plastid thylakoid"],["GO%3A0042649","prothylakoid"]]},{"id":"GO:0061700","l":"GATOR2 complex","na":5,"nb":4,"a":[["other/gator1_complex.html","GATOR1 complex"],["other/gator2_complex.html","GATOR2 complex"],["other/gtr1_gtr2_gtpase_complex.html","Gtr1-Gtr2 GTPase complex"],["other/seh1_associated_complex.html","Seh1-associated complex"],["other/torc1_complex.html","TORC1 complex"]],"b":[["ComplexPortal%3ACPX-26527","GATOR2 complex"],["ComplexPortal%3ACPX-2664","GATOR2 complex"],["ComplexPortal%3ACPX-6227","GATOR2 complex"],["GO%3A0061700","GATOR2 complex"]]},{"id":"GO:1990130","l":"GATOR1 complex","na":5,"nb":4,"a":[["other/gator1_complex.html","GATOR1 complex"],["other/gator2_complex.html","GATOR2 complex"],["other/gtr1_gtr2_gtpase_complex.html","Gtr1-Gtr2 GTPase complex"],["other/seh1_associated_complex.html","Seh1-associated complex"],["other/torc1_complex.html","TORC1 complex"]],"b":[["ComplexPortal%3ACPX-26523","GATOR1 complex"],["ComplexPortal%3ACPX-2781","GATOR1 complex"],["ComplexPortal%3ACPX-6226","GATOR1 complex"],["GO%3A1990130","GATOR1 complex"]]},{"id":"GO:0030096","l":"plasma membrane-derived thylakoid photosystem II","na":4,"nb":4,"a":[["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["GO%3A0030096","plasma membrane-derived thylakoid photosystem II"],["NCBIfam%3ANF040894","photosynthetic complex putative assembly protein PuhB"],["NCBIfam%3ATIGR03069","photosystem II electron transport protein, Sll1252 family"],["NCBIfam%3ATIGR03042","photosystem II protein PsbQ"]]},{"id":"GO:0030666","l":"endocytic vesicle membrane","na":4,"nb":4,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle_membrane.html","clathrin-coated endocytic vesicle membrane"],["membrane_organelle/endocytic_vesicle.html","endocytic vesicle"],["membrane_organelle/endocytic_vesicle_lumen.html","endocytic vesicle lumen"],["membrane_organelle/endocytic_vesicle_membrane.html","endocytic vesicle membrane"]],"b":[["GO%3A0030669","clathrin-coated endocytic vesicle membrane"],["GO%3A0030666","endocytic vesicle membrane"],["GO%3A0043661","peribacteroid membrane"],["GO%3A0030670","phagocytic vesicle membrane"]]},{"id":"GO:0032585","l":"multivesicular body membrane","na":4,"nb":4,"a":[["membrane_organelle/multivesicular_body.html","multivesicular body"],["membrane_organelle/multivesicular_body_intraluminal_vesicle.html","multivesicular body intraluminal vesicle"],["membrane_organelle/multivesicular_body_lumen.html","multivesicular body lumen"],["membrane_organelle/multivesicular_body_membrane.html","multivesicular body membrane"]],"b":[["ComplexPortal%3ACPX-329","ESCRT-III complex"],["ComplexPortal%3ACPX-332","ESCRT-III complex, variant Chmp1b1"],["ComplexPortal%3ACPX-333","ESCRT-III complex, variant Chmp1b2"],["GO%3A0032585","multivesicular body membrane"]]},{"id":"GO:0097589","l":"archaeal-type flagellum","na":4,"nb":4,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/cilium.html","cilium"]],"b":[["GO%3A0097589","archaeal-type flagellum"],["NCBIfam%3ANF052589","archaellum protein ArlH"],["NCBIfam%3ANF052590","archaellum stator protein ArlF"],["NCBIfam%3ANF052591","archaellum stator protein ArlG"]]},{"id":"NCBITaxon:224308","l":"Bacillus subtilis (strain 168)","na":3,"nb":11310,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["division_machinery/divisome_complex.html","divisome complex"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]],"b":[["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.10.3.-","With oxygen as acceptor"],["EC%3A1.13.12.-","With incorporation of one atom of oxygen (internal monooxygenases or internal mixed function oxidases)"],["EC%3A1.14.19.-","With oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water"],["EC%3A1.17.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.21.98.-","With other, known acceptors"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":3,"nb":1616,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"],["other/pyrenoid.html","pyrenoid"]],"b":[["EC%3A1.1.1.170","3beta-hydroxysteroid-4alpha-carboxylate 3-dehydrogenase (decarboxylating)"],["EC%3A1.1.1.262","4-hydroxythreonine-4-phosphate dehydrogenase"],["EC%3A1.1.1.276","serine 3-dehydrogenase (NADP(+))"],["EC%3A1.1.1.286","isocitrate--homoisocitrate dehydrogenase"],["EC%3A1.1.1.305","UDP-glucuronic acid oxidase (UDP-4-keto-hexauronic acid decarboxylating)"],["EC%3A1.1.1.343","phosphogluconate dehydrogenase (NAD(+)-dependent, decarboxylating)"]]},{"id":"GO:0140513","l":"nuclear protein-containing complex","na":3,"nb":495,"a":[["other/cbf3_complex.html","CBF3 complex"],["other/coma_complex.html","COMA complex"],["other/dash_complex.html","DASH complex"]],"b":[["GO%3A0002180","5-lipoxygenase complex"],["GO%3A1990354","activated SUMO-E1 ligase complex"],["GO%3A0030895","apolipoprotein B mRNA editing enzyme complex"],["GO%3A0033167","ARC complex"],["GO%3A0070310","ATR-ATRIP complex"],["GO%3A0072589","box H/ACA scaRNP complex"]]},{"id":"GO:0005840","l":"ribosome","na":3,"nb":418,"a":[["ribonucleoprotein/large_ribosomal_subunit.html","large ribosomal subunit"],["ribonucleoprotein/ribosome.html","ribosome"],["ribonucleoprotein/small_ribosomal_subunit.html","small ribosomal subunit"]],"b":[["ComplexPortal%3ACPX-2854","Elongation Factor eEF1 complex, variant CAM1"],["ComplexPortal%3ACPX-425","Elongation Factor eEF1 complex, variant TEF4"],["ComplexPortal%3ACPX-427","Eukaryotic translation initiation factor 2 complex"],["ComplexPortal%3ACPX-430","Eukaryotic translation initiation factor 4F complex, variant TIF4631"],["ComplexPortal%3ACPX-431","Eukaryotic translation initiation factor 4F complex, variant TIF4632"],["ComplexPortal%3ACPX-1295","MKT1-PBP1 translation regulation complex"]]},{"id":"GO:0140534","l":"endoplasmic reticulum protein-containing complex","na":3,"nb":72,"a":[["other/endoplasmic_reticulum_sec_complex.html","endoplasmic reticulum Sec complex"],["other/get_complex.html","GET complex"],["other/sec62_sec63_complex.html","Sec62/Sec63 complex"]],"b":[["GO%3A0036513","Derlin-1 retrotranslocation complex"],["GO%3A0036502","Derlin-1-VIMP complex"],["GO%3A0031502","dolichyl-phosphate-mannose-protein mannosyltransferase complex"],["GO%3A0070939","Dsl1/NZR complex"],["GO%3A0070385","egasyn-beta-glucuronidase complex"],["GO%3A0072546","EMC complex"]]},{"id":"GO:0030288","l":"outer membrane-bounded periplasmic space","na":3,"nb":62,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"],["envelope/periplasmic_space.html","periplasmic space"]],"b":[["ComplexPortal%3ACPX-319","Trimethylamine-N-oxide reductase TorAC complex"],["GO%3A0030288","outer membrane-bounded periplasmic space"],["NCBIfam%3ATIGR03227","2-aminoethylphosphonate ABC transporter substrate-binding protein"],["NCBIfam%3ANF000397","ACC family cephalosporin-hydrolyzing class C beta-lactamase"],["NCBIfam%3ATIGR01672","acid phosphatase AphA"],["NCBIfam%3ANF000385","ACT family cephalosporin-hydrolyzing class C beta-lactamase"]]},{"id":"GO:0009523","l":"photosystem II","na":3,"nb":59,"a":[["energy_complex/photosystem_ii.html","photosystem II"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["GO%3A0030095","chloroplast photosystem II"],["GO%3A0009523","photosystem II"],["GO%3A0030096","plasma membrane-derived thylakoid photosystem II"],["NCBIfam%3ATIGR01332","cytochrome b559 subunit alpha"],["NCBIfam%3ATIGR01333","cytochrome b559 subunit beta"],["NCBIfam%3ANF012505","Lumenal portion of Cytochrome b559, alpha (gene psbE) subunit"]]},{"id":"GO:0007059","l":"chromosome segregation","na":3,"nb":58,"a":[["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"],["other/kinetochore.html","kinetochore"]],"b":[["ComplexPortal%3ACPX-26706","CLTA-CLTC-CKAP5-TACC3, mitotic spindle organizing complex"],["ComplexPortal%3ACPX-26711","CLTB-CLTC-CKAP5-TACC3, mitotic spindle organizing complex"],["ComplexPortal%3ACPX-2533","Kinetochore CCAN complex"],["ComplexPortal%3ACPX-5646","Kinetochore CCAN complex"],["ComplexPortal%3ACPX-5704","Kinetochore CCAN complex"],["ComplexPortal%3ACPX-26614","NDC80 complex"]]},{"id":"GO:0016236","l":"macroautophagy","na":3,"nb":53,"a":[["membrane_organelle/autophagosome.html","autophagosome"],["membrane_organelle/autophagosome_membrane.html","autophagosome membrane"],["other/trappiii_protein_complex.html","TRAPPIII protein complex"]],"b":[["ComplexPortal%3ACPX-3863","atg-5-atg-12-atg-16.1-atg-16.2 complex"],["ComplexPortal%3ACPX-3865","atg-5-atg-12-atg-16.1 complex"],["ComplexPortal%3ACPX-3866","atg-5-atg-12-atg-16.2 complex"],["ComplexPortal%3ACPX-1849","ATG12-ATG5-ATG16 complex"],["ComplexPortal%3ACPX-200","ATG12-ATG5-ATG16L1 complex"],["ComplexPortal%3ACPX-328","Atg12-Atg5-Atg16l1 complex"]]},{"id":"GO:0005938","l":"cell cortex","na":3,"nb":49,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"],["cytoskeleton/septin_ring.html","septin ring"],["other/cell_cortex.html","cell cortex"]],"b":[["ComplexPortal%3ACPX-977","CDC24-FAR1-Gbetagamma complex"],["ComplexPortal%3ACPX-26690","Cortical microtubule stabilization complex, KANK1 variant"],["ComplexPortal%3ACPX-20447","Cortical microtubule stabilization complex, KANK2 variant"],["ComplexPortal%3ACPX-3381","Egg-3/4/5 MBK-2 complex"],["ComplexPortal%3ACPX-26666","GNAI1-GPSM2-NUMA1, spindle orientation complex"],["ComplexPortal%3ACPX-4027","gpr-1-gpr-2-lin-5 complex"]]},{"id":"GO:0005769","l":"early endosome","na":3,"nb":44,"a":[["membrane_organelle/early_endosome.html","early endosome"],["membrane_organelle/early_endosome_lumen.html","early endosome lumen"],["membrane_organelle/early_endosome_membrane.html","early endosome membrane"]],"b":[["ComplexPortal%3ACPX-5044","BLOC-2 complex"],["ComplexPortal%3ACPX-5084","BLOC-2 complex"],["ComplexPortal%3ACPX-2540","FERRY RAB5 effector complex"],["ComplexPortal%3ACPX-11549","Huntingtin-HAP40 endosomal complex"],["ComplexPortal%3ACPX-26674","Huntingtin-HAP40 endosomal complex"],["ComplexPortal%3ACPX-5055","Neuronal AP-3 Adaptor complex, sigma3a variant"]]},{"id":"GO:0000502","l":"proteasome complex","na":3,"nb":27,"a":[["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"]],"b":[["ComplexPortal%3ACPX-9082","19S-20S-PA28-alphabeta hybrid proteasome complex"],["ComplexPortal%3ACPX-9085","19S-20S-PA28-gamma hybrid proteasome complex"],["ComplexPortal%3ACPX-9003","20S immunoproteasome complex"],["ComplexPortal%3ACPX-8806","20S proteasome complex"],["ComplexPortal%3ACPX-9004","20S thymoproteasome complex"],["ComplexPortal%3ACPX-2262","26S proteasome complex"]]},{"id":"GO:0030089","l":"phycobilisome","na":3,"nb":26,"a":[["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["GO%3A0030089","phycobilisome"],["NCBIfam%3ATIGR01337","allophycocyanin subunit beta"],["NCBIfam%3ANF058510","bifunctional rod-capping linker CpcD/ferredoxin--NADP reductase PetH"],["NCBIfam%3ATIGR01338","C-phycocyanin subunit alpha"],["NCBIfam%3ATIGR01339","C-phycocyanin subunit beta"],["NCBIfam%3ANF058511","phycobilisome rod-core linker protein CpcG1"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":3,"nb":26,"a":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]],"b":[["Pfam%3APF27270","Alr1449"],["Pfam%3APF27301","Alr2735 N-terminal domain"],["Pfam%3APF27288","Alr2735"],["Pfam%3APF21571","Arginine dihydrolase ArgZ-like, C-terminal, first region"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF13205","Bacterial Ig-like domain"]]},{"id":"GO:0031901","l":"early endosome membrane","na":3,"nb":25,"a":[["membrane_organelle/early_endosome.html","early endosome"],["membrane_organelle/early_endosome_lumen.html","early endosome lumen"],["membrane_organelle/early_endosome_membrane.html","early endosome membrane"]],"b":[["ComplexPortal%3ACPX-6311","ATP11B-CDC50A P4-ATPase complex"],["ComplexPortal%3ACPX-1137","CORVET tethering complex"],["ComplexPortal%3ACPX-1626","CORVET tethering complex"],["ComplexPortal%3ACPX-2562","WASH complex"],["ComplexPortal%3ACPX-1173","WASH complex, variant WASH2P/WASHC2A"],["ComplexPortal%3ACPX-1168","WASH complex, variant WASH2P/WASHC2C"]]},{"id":"GO:0005618","l":"cell wall","na":3,"nb":24,"a":[["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["spore/exosporium.html","exosporium"],["spore/spore_wall.html","spore wall"]],"b":[["GO%3A0005618","cell wall"],["GO%3A0097570","cyst wall"],["GO%3A0009277","fungal-type cell wall"],["GO%3A0009274","peptidoglycan-based cell wall"],["GO%3A0009505","plant-type cell wall"],["GO%3A0031160","spore wall"]]},{"id":"GO:0098791","l":"Golgi apparatus subcompartment","na":3,"nb":22,"a":[["membrane_organelle/cis_golgi_network.html","cis-Golgi network"],["membrane_organelle/golgi_cisterna.html","Golgi cisterna"],["membrane_organelle/trans_golgi_network.html","trans-Golgi network"]],"b":[["GO%3A0098791","Golgi apparatus subcompartment"],["GO%3A0031985","Golgi cisterna"],["GO%3A0005795","Golgi stack"],["GO%3A0005802","trans-Golgi network"],["PANTHER%3APTHR47180","ADP-RIBOSYLATION FACTOR-BINDING PROTEIN GGA1-RELATED"],["PANTHER%3APTHR21514","AP-4 COMPLEX ACCESSORY SUBUNIT TEPSIN"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":3,"nb":19,"a":[["appendage/type_iv_pilus.html","type IV pilus"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]],"b":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"],["Pfam%3APF18173","Bacterial HORMA domain 2"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["Pfam%3APF27322","Cap8 HORMA domain"],["Pfam%3APF01526","Tn3 transposase DDE domain"]]},{"id":"GO:0016234","l":"inclusion body","na":3,"nb":15,"a":[["inclusion/parasporal_crystal.html","parasporal crystal"],["inclusion/r_body.html","R-body"],["inclusion/sulfur_globule.html","sulfur globule"]],"b":[["GO%3A0016235","aggresome"],["GO%3A0097407","Bunina body"],["GO%3A0097408","fibrillary inclusion"],["GO%3A0097409","glial cytoplasmic inclusion"],["GO%3A0097412","hyaline inclusion"],["GO%3A0016234","inclusion body"]]},{"id":"GO:0031966","l":"mitochondrial membrane","na":3,"nb":15,"a":[["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrial_membrane.html","mitochondrial membrane"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"]],"b":[["ComplexPortal%3ACPX-8302","ABCB10-ABCB7-FECH ABC transporter"],["ComplexPortal%3ACPX-1721","Mitochondrial respiratory chain complex IV, COX5A variant"],["ComplexPortal%3ACPX-1722","Mitochondrial respiratory chain complex IV, COX5B variant"],["ComplexPortal%3ACPX-6123","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-8620","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-9641","Mitochondrial respiratory chain complex IV"]]},{"id":"GO:0009277","l":"fungal-type cell wall","na":3,"nb":14,"a":[["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["other/1_3_beta_d_glucan_synthase_complex.html","1,3-beta-D-glucan synthase complex"],["spore/ascospore_wall.html","ascospore wall"]],"b":[["ComplexPortal%3ACPX-1812","1,3-beta-D-glucan synthase complex, FKS1-RHO1 variant"],["GO%3A0005619","ascospore wall"],["GO%3A0009277","fungal-type cell wall"],["GO%3A0030446","hyphal cell wall"],["GO%3A0030445","yeast-form cell wall"],["InterPro%3AIPR019778","Class I Hydrophobin, conserved site"]]},{"id":"GO:0030008","l":"TRAPP complex","na":3,"nb":14,"a":[["other/trappi_protein_complex.html","TRAPPI protein complex"],["other/trappii_protein_complex.html","TRAPPII protein complex"],["other/trappiii_protein_complex.html","TRAPPIII protein complex"]],"b":[["GO%3A0030008","TRAPP complex"],["GO%3A1990070","TRAPPI protein complex"],["GO%3A1990071","TRAPPII protein complex"],["GO%3A1990072","TRAPPIII protein complex"],["PANTHER%3APTHR20902","41-2 PROTEIN ANTIGEN-RELATED"],["PANTHER%3APTHR13251","EPILEPSY HOLOPROSENCEPHALY CANDIDATE 1/TMEM1"]]},{"id":"GO:0055037","l":"recycling endosome","na":3,"nb":14,"a":[["membrane_organelle/recycling_endosome.html","recycling endosome"],["membrane_organelle/recycling_endosome_lumen.html","recycling endosome lumen"],["membrane_organelle/recycling_endosome_membrane.html","recycling endosome membrane"]],"b":[["ComplexPortal%3ACPX-6207","EARP tethering complex"],["GO%3A0090653","apical recycling endosome"],["GO%3A0090654","basolateral recycling endosome"],["GO%3A0098832","peri-centrosomal recycling endosome"],["GO%3A0098837","postsynaptic recycling endosome"],["GO%3A0055037","recycling endosome"]]},{"id":"GO:0000421","l":"autophagosome membrane","na":3,"nb":13,"a":[["membrane_organelle/autophagosome.html","autophagosome"],["membrane_organelle/autophagosome_lumen.html","autophagosome lumen"],["membrane_organelle/autophagosome_membrane.html","autophagosome membrane"]],"b":[["ComplexPortal%3ACPX-25783","SNARE complex STX17-SNAP29-VAMP7"],["ComplexPortal%3ACPX-25782","SNARE complex STX17-SNAP29-VAMP8"],["ComplexPortal%3ACPX-26400","SNARE complex STX17-SNAP47-VAMP7"],["ComplexPortal%3ACPX-26401","SNARE complex STX17-SNAP47-VAMP8"],["ComplexPortal%3ACPX-26524","SNARE complex STX4-SNAP29-SEC22b"],["ComplexPortal%3ACPX-25786","SNARE priming complex STX17-SNAP29-YKT6"]]},{"id":"GO:0005776","l":"autophagosome","na":3,"nb":12,"a":[["membrane_organelle/autophagosome.html","autophagosome"],["membrane_organelle/autophagosome_lumen.html","autophagosome lumen"],["membrane_organelle/autophagosome_membrane.html","autophagosome membrane"]],"b":[["ComplexPortal%3ACPX-362","Heparanase complex"],["ComplexPortal%3ACPX-363","Heparanase complex"],["ComplexPortal%3ACPX-4821","unc-51-atg-13 complex"],["GO%3A0044753","amphisome"],["GO%3A0005776","autophagosome"],["PANTHER%3APTHR13038","APG9 AUTOPHAGY 9"]]},{"id":"GO:0005940","l":"septin ring","na":3,"nb":12,"a":[["cytoskeleton/septin_ring.html","septin ring"],["other/cell_cortex.html","cell cortex"],["other/cellular_bud_neck.html","cellular bud neck"]],"b":[["ComplexPortal%3ACPX-26526","Septin1-Septin2-pnut complex"],["ComplexPortal%3ACPX-26529","Septin4-Septin5-pnut complex"],["GO%3A0000144","cellular bud neck septin ring"],["GO%3A0032172","germ tube septin ring"],["GO%3A0032168","hyphal septin ring"],["GO%3A0032175","mating projection septin ring"]]},{"id":"GO:0060170","l":"ciliary membrane","na":3,"nb":12,"a":[["appendage/ciliary_membrane.html","ciliary membrane"],["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"]],"b":[["ComplexPortal%3ACPX-1908","BBSome complex"],["ComplexPortal%3ACPX-1909","BBSome complex"],["GO%3A0060170","ciliary membrane"],["GO%3A0020018","ciliary pocket membrane"],["GO%3A0120201","cone photoreceptor disc membrane"],["GO%3A0098804","non-motile cilium membrane"]]},{"id":"GO:0061617","l":"MICOS complex","na":3,"nb":12,"a":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"],["other/micos_complex.html","MICOS complex"]],"b":[["ComplexPortal%3ACPX-140","MICOS mitochondrial contact site and cristae organizing system complex"],["ComplexPortal%3ACPX-25732","MICOS mitochondrial contact site and cristae organizing system complex, MIC10A variant"],["ComplexPortal%3ACPX-25733","MICOS mitochondrial contact site and cristae organizing system complex, MIC10B variant"],["ComplexPortal%3ACPX-25735","MICOS mitochondrial contact site and cristae organizing system complex, MIC10C variant"],["ComplexPortal%3ACPX-6141","MICOS mitochondrial contact site and cristae organizing system complex"],["GO%3A0061617","MICOS complex"]]},{"id":"GO:0005685","l":"U1 snRNP","na":3,"nb":11,"a":[["ribonucleoprotein/u1_snrnp.html","U1 snRNP"],["ribonucleoprotein/u2_type_precatalytic_spliceosome.html","U2-type precatalytic spliceosome"],["ribonucleoprotein/u2_type_prespliceosome.html","U2-type prespliceosome"]],"b":[["ComplexPortal%3ACPX-43","Sm complex"],["ComplexPortal%3ACPX-6033","Sm complex"],["ComplexPortal%3ACPX-23","U1 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-2392","U1 small nuclear ribonucleoprotein complex"],["GO%3A0005685","U1 snRNP"],["PANTHER%3APTHR11864","PRE-MRNA-PROCESSING PROTEIN PRP40"]]},{"id":"GO:0031262","l":"Ndc80 complex","na":3,"nb":11,"a":[["other/kinetochore.html","kinetochore"],["other/ndc80_complex.html","Ndc80 complex"],["other/outer_kinetochore.html","outer kinetochore"]],"b":[["ComplexPortal%3ACPX-26614","NDC80 complex"],["ComplexPortal%3ACPX-548","NDC80 complex"],["ComplexPortal%3ACPX-549","Ndc80 complex"],["ComplexPortal%3ACPX-550","Ndc80 complex"],["ComplexPortal%3ACPX-551","Ndc80 complex"],["ComplexPortal%3ACPX-806","Ndc80 complex"]]},{"id":"GO:0000444","l":"MIS12/MIND type complex","na":3,"nb":10,"a":[["other/kinetochore.html","kinetochore"],["other/mis12_mind_type_complex.html","MIS12/MIND type complex"],["other/outer_kinetochore.html","outer kinetochore"]],"b":[["ComplexPortal%3ACPX-1186","Kinetochore MIS12 complex"],["ComplexPortal%3ACPX-5643","Kinetochore MIS12 complex"],["ComplexPortal%3ACPX-5701","Kinetochore MIS12 complex"],["ComplexPortal%3ACPX-807","Kinetochore Mis12 complex"],["ComplexPortal%3ACPX-7681","Kinetochore MIS12 complex, Nnf1a variant"],["ComplexPortal%3ACPX-8928","Kinetochore MIS12 complex, Nnf1b variant"]]},{"id":"GO:0009427","l":"bacterial-type flagellum basal body, distal rod, L ring","na":3,"nb":10,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]],"b":[["GO%3A0009427","bacterial-type flagellum basal body, distal rod, L ring"],["NCBIfam%3ANF001301","flagellar basal body L-ring protein FlgH"],["NCBIfam%3ANF001304","flagellar basal body L-ring protein FlgH"],["NCBIfam%3ANF001305","flagellar basal body L-ring protein FlgH"],["NCBIfam%3ANF009072","flagellar basal body L-ring protein FlgH"],["NCBIfam%3ANF009337","flagellar basal body L-ring protein FlgH"]]},{"id":"GO:0071986","l":"Ragulator complex","na":3,"nb":10,"a":[["other/gtr1_gtr2_gtpase_complex.html","Gtr1-Gtr2 GTPase complex"],["other/ragulator_complex.html","Ragulator complex"],["other/torc1_complex.html","TORC1 complex"]],"b":[["ComplexPortal%3ACPX-3172","EGO complex"],["ComplexPortal%3ACPX-3233","GSE complex"],["ComplexPortal%3ACPX-26528","Ragulator complex"],["ComplexPortal%3ACPX-2709","Ragulator complex"],["ComplexPortal%3ACPX-4741","Ragulator complex"],["ComplexPortal%3ACPX-4761","Ragulator complex"]]},{"id":"GO:0005839","l":"proteasome core complex","na":3,"nb":9,"a":[["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"]],"b":[["ComplexPortal%3ACPX-8806","20S proteasome complex"],["GO%3A0031603","cytosolic proteasome core complex"],["GO%3A0031601","nuclear proteasome core complex"],["GO%3A0005839","proteasome core complex"],["NCBIfam%3ATIGR03634","archaeal proteasome endopeptidase complex subunit beta"],["NCBIfam%3ATIGR03690","proteasome subunit beta"]]},{"id":"GO:0007035","l":"vacuolar acidification","na":3,"nb":9,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["membrane_organelle/fungal_type_vacuole_membrane.html","fungal-type vacuole membrane"],["membrane_organelle/vacuolar_membrane.html","vacuolar membrane"]],"b":[["ComplexPortal%3ACPX-10301","RAVE complex, DMXL1 variant"],["ComplexPortal%3ACPX-10303","RAVE complex, DMXL2 variant"],["ComplexPortal%3ACPX-6905","Vacuolar proton translocating ATPase complex, ATP6V0A3 variant"],["ComplexPortal%3ACPX-1193","Vacuolar proton translocating ATPase complex, vacuole variant"],["GO%3A0007042","lysosomal lumen acidification"],["GO%3A0007035","vacuolar acidification"]]},{"id":"CHEBI:17029","l":"chitin","na":3,"nb":8,"a":[["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["membrane_organelle/chitosome.html","chitosome"],["spore/microsporidian_type_endospore.html","microsporidian-type endospore"]],"b":[["EC%3A2.4.1.16","chitin synthase"],["EC%3A3.5.1.41","chitin deacetylase"],["RHEA%3A85463","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-1)-N-acetyl-alpha-D-glucosamine"],["RHEA%3A50672","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-2) + N,N'-diacetylchitobiose"],["RHEA%3A85003","[(1->4)-N-acetyl-beta-D-glucosaminyl](n)-N-acetyl-alpha-D-glucosamine + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n) + N-acetyl-alpha-D-glucosamine"],["RHEA%3A10464","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + n H2O = chitosan + n acetate"]]},{"id":"GO:0005798","l":"Golgi-associated vesicle","na":3,"nb":8,"a":[["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"]],"b":[["ComplexPortal%3ACPX-1698","EMP24 complex"],["GO%3A0030137","COPI-coated vesicle"],["GO%3A0005798","Golgi-associated vesicle"],["GO%3A0030140","trans-Golgi network transport vesicle"],["PANTHER%3APTHR31975","BUD SITE SELECTION PROTEIN 7-RELATED"],["PANTHER%3APTHR10261","COATOMER SUBUNIT GAMMA"]]},{"id":"GO:0031969","l":"chloroplast membrane","na":3,"nb":8,"a":[["membrane_organelle/chloroplast_inner_membrane.html","chloroplast inner membrane"],["membrane_organelle/chloroplast_membrane.html","chloroplast membrane"],["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"]],"b":[["GO%3A0009706","chloroplast inner membrane"],["GO%3A0031969","chloroplast membrane"],["GO%3A0009707","chloroplast outer membrane"],["PANTHER%3APTHR31038","EXPRESSED PROTEIN-RELATED"],["PANTHER%3APTHR34048","LOW-DENSITY RECEPTOR-LIKE PROTEIN"],["PANTHER%3APTHR36317","PROTEIN MULTIPLE CHLOROPLAST DIVISION SITE 1"]]},{"id":"GO:0045335","l":"phagocytic vesicle","na":3,"nb":8,"a":[["membrane_organelle/phagocytic_vesicle.html","phagocytic vesicle"],["membrane_organelle/phagocytic_vesicle_lumen.html","phagocytic vesicle lumen"],["membrane_organelle/phagocytic_vesicle_membrane.html","phagocytic vesicle membrane"]],"b":[["GO%3A0045336","clathrin-coated phagocytic vesicle"],["GO%3A0032009","early phagosome"],["GO%3A1990457","pexophagosome"],["GO%3A0045335","phagocytic vesicle"],["GO%3A0032010","phagolysosome"],["PANTHER%3APTHR31093","CELL SURFACE GLYCOPROTEIN GP138-RELATED-RELATED"]]},{"id":"GO:0098799","l":"outer mitochondrial membrane protein complex","na":3,"nb":8,"a":[["other/ermes_complex.html","ERMES complex"],["other/mitochondrial_outer_membrane_translocase_complex.html","mitochondrial outer membrane translocase complex"],["other/sam_complex.html","SAM complex"]],"b":[["ComplexPortal%3ACPX-3196","ERMES complex"],["ComplexPortal%3ACPX-6100","SARS-CoV-2 9b complex"],["ComplexPortal%3ACPX-6101","SARS-CoV 9b complex"],["GO%3A0036266","Cdc48p-Npl4p-Vms1p AAA ATPase complex"],["GO%3A0032865","ERMES complex"],["GO%3A0140595","MIM complex"]]},{"id":"GO:0030112","l":"glycocalyx","na":3,"nb":7,"a":[["envelope/capsule.html","capsule"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]],"b":[["GO%3A0042603","capsule"],["GO%3A0030112","glycocalyx"],["GO%3A0120240","platelet glycocalyx"],["GO%3A0030114","slime layer"],["GO%3A0120238","sperm glycocalyx"],["GO%3A0120234","stereocilium coat"]]},{"id":"GO:0035859","l":"Seh1-associated complex","na":3,"nb":7,"a":[["other/gator1_complex.html","GATOR1 complex"],["other/gator2_complex.html","GATOR2 complex"],["other/seh1_associated_complex.html","Seh1-associated complex"]],"b":[["ComplexPortal%3ACPX-3231","SEA complex"],["GO%3A0035859","Seh1-associated complex"],["PANTHER%3APTHR13153","CGTHBA PROTEIN -14 GENE PROTEIN"],["PANTHER%3APTHR13179","DEP DOMAIN CONTAINING PROTEIN 5"],["PANTHER%3APTHR46200","GATOR COMPLEX PROTEIN WDR24"],["PANTHER%3APTHR46170","GATOR COMPLEX PROTEIN WDR59"]]},{"id":"GO:0044284","l":"mitochondrial crista junction","na":3,"nb":7,"a":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"],["other/micos_complex.html","MICOS complex"]],"b":[["ComplexPortal%3ACPX-140","MICOS mitochondrial contact site and cristae organizing system complex"],["ComplexPortal%3ACPX-25732","MICOS mitochondrial contact site and cristae organizing system complex, MIC10A variant"],["ComplexPortal%3ACPX-25733","MICOS mitochondrial contact site and cristae organizing system complex, MIC10B variant"],["ComplexPortal%3ACPX-25735","MICOS mitochondrial contact site and cristae organizing system complex, MIC10C variant"],["ComplexPortal%3ACPX-6141","MICOS mitochondrial contact site and cristae organizing system complex"],["GO%3A0044284","mitochondrial crista junction"]]},{"id":"GO:0120115","l":"Lsm2-8 complex","na":3,"nb":7,"a":[["ribonucleoprotein/u4atac_u6atac_snrnp.html","U4atac/U6atac snRNP"],["ribonucleoprotein/u6_snrnp.html","U6 snRNP"],["ribonucleoprotein/u6atac_snrnp.html","U6atac snRNP"]],"b":[["ComplexPortal%3ACPX-26553","LSM2-8 complex"],["ComplexPortal%3ACPX-26555","LSM2-8 complex"],["ComplexPortal%3ACPX-1309","LSM2-8 complex, variant LSM3A-LSM6A"],["ComplexPortal%3ACPX-1352","LSM2-8 complex, variant LSM3A-LSM6B"],["ComplexPortal%3ACPX-1353","LSM2-8 complex, variant LSM3B-LSM6A"],["ComplexPortal%3ACPX-1354","LSM2-8 complex, variant LSM3B-LSM6B"]]},{"id":"GO:1990131","l":"Gtr1-Gtr2 GTPase complex","na":3,"nb":7,"a":[["other/gtr1_gtr2_gtpase_complex.html","Gtr1-Gtr2 GTPase complex"],["other/ragulator_complex.html","Ragulator complex"],["other/torc1_complex.html","TORC1 complex"]],"b":[["ComplexPortal%3ACPX-26516","RAG guanosine triphosphatase complex"],["ComplexPortal%3ACPX-26517","RAG guanosine triphosphatase complex"],["ComplexPortal%3ACPX-2542","RAG guanosine triphosphatase complex, RAGA-RAGC variant"],["ComplexPortal%3ACPX-2513","RAG guanosine triphosphatase complex, RAGA-RAGD variant"],["ComplexPortal%3ACPX-2514","RAG guanosine triphosphatase complex, RAGB-RAGC variant"],["ComplexPortal%3ACPX-767","RAG guanosine triphosphatase complex, RAGB-RAGD variant"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":3,"nb":7,"a":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"]],"b":[["Pfam%3APF04439","Streptomycin adenylyltransferase"],["TED%3AAF-A0A696J2C3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A696J2C3-F1-model_v4_TED01"],["TED%3AAF-A0A825M6H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A825M6H4-F1-model_v4_TED01"],["TED%3AAF-A0A5T0SBG5-F1-model_v4_TED01","TED novel fold AF-A0A5T0SBG5-F1-model_v4_TED01"],["TED%3AAF-A0A698JVM3-F1-model_v4_TED03","TED novel fold AF-A0A698JVM3-F1-model_v4_TED03"],["TED%3AAF-A0A824N1N8-F1-model_v4_TED01","TED novel fold AF-A0A824N1N8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:5722","l":"Trichomonas vaginalis","na":3,"nb":7,"a":[["membrane_organelle/hydrogenosomal_membrane.html","hydrogenosomal membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/hydrogenosome_lumen.html","hydrogenosome lumen"]],"b":[["TED%3AAF-A2F3M7-F1-model_v4_TED03","TED highly-symmetric fold AF-A2F3M7-F1-model_v4_TED03"],["TED%3AAF-A2HEW4-F1-model_v4_TED01","TED highly-symmetric fold AF-A2HEW4-F1-model_v4_TED01"],["TED%3AAF-A2DT59-F1-model_v4_TED01","TED novel fold AF-A2DT59-F1-model_v4_TED01"],["TED%3AAF-A2E7I9-F1-model_v4_TED02","TED novel fold AF-A2E7I9-F1-model_v4_TED02"],["TED%3AAF-A2F6I8-F1-model_v4_TED02","TED novel fold AF-A2F6I8-F1-model_v4_TED02"],["TED%3AAF-A2FV33-F1-model_v4_TED01","TED novel fold AF-A2FV33-F1-model_v4_TED01"]]},{"id":"GO:0005628","l":"prospore membrane","na":6,"nb":3,"a":[["spore/ascospore_wall.html","ascospore wall"],["spore/endospore_forming_forespore.html","endospore-forming forespore"],["spore/prospore_membrane.html","prospore membrane"],["spore/prospore_membrane_leading_edge.html","prospore membrane leading edge"],["spore/prospore_membrane_spindle_pole_body_attachment_site.html","prospore membrane spindle pole body attachment site"],["spore/spore_inner_membrane.html","spore inner membrane"]],"b":[["ComplexPortal%3ACPX-5464","Vesicular SNARE complex SSO1-SPO20-SNC1"],["ComplexPortal%3ACPX-5466","Vesicular SNARE complex SSO1-SPO20-SNC2"],["GO%3A0005628","prospore membrane"]]},{"id":"GO:0030122","l":"AP-2 adaptor complex","na":3,"nb":6,"a":[["other/ap_2_adaptor_complex.html","AP-2 adaptor complex"],["other/clathrin_coat_of_coated_pit.html","clathrin coat of coated pit"],["other/clathrin_coat_of_endocytic_vesicle.html","clathrin coat of endocytic vesicle"]],"b":[["ComplexPortal%3ACPX-534","Adapter complex AP-2"],["ComplexPortal%3ACPX-5149","AP-2 Adaptor complex, alpha1 variant"],["ComplexPortal%3ACPX-5152","AP-2 Adaptor complex, alpha1 variant"],["ComplexPortal%3ACPX-5150","AP-2 Adaptor complex, alpha2 variant"],["ComplexPortal%3ACPX-5153","AP-2 Adaptor complex, alpha2 variant"],["GO%3A0030122","AP-2 adaptor complex"]]},{"id":"GO:0031978","l":"plastid thylakoid lumen","na":6,"nb":3,"a":[["membrane_organelle/chloroplast_thylakoid_lumen.html","chloroplast thylakoid lumen"],["membrane_organelle/cyanelle_thylakoid_lumen.html","cyanelle thylakoid lumen"],["membrane_organelle/organellar_chromatophore_thylakoid_lumen.html","organellar chromatophore thylakoid lumen"],["membrane_organelle/plastid_thylakoid.html","plastid thylakoid"],["membrane_organelle/plastid_thylakoid_lumen.html","plastid thylakoid lumen"],["membrane_organelle/plastid_thylakoid_membrane.html","plastid thylakoid membrane"]],"b":[["GO%3A0009543","chloroplast thylakoid lumen"],["GO%3A0033114","cyanelle thylakoid lumen"],["GO%3A0031978","plastid thylakoid lumen"]]},{"id":"GO:1990072","l":"TRAPPIII protein complex","na":3,"nb":6,"a":[["other/trappi_protein_complex.html","TRAPPI protein complex"],["other/trappii_protein_complex.html","TRAPPII protein complex"],["other/trappiii_protein_complex.html","TRAPPIII protein complex"]],"b":[["ComplexPortal%3ACPX-4766","TRAPP III complex"],["ComplexPortal%3ACPX-4750","TRAPP III complex, TRAPPC2 variant"],["ComplexPortal%3ACPX-6903","TRAPP III complex, TRAPPC2B variant"],["ComplexPortal%3ACPX-2279","TRAPPIII complex"],["ComplexPortal%3ACPX-1383","TRAPPIII protein complex"],["GO%3A1990072","TRAPPIII protein complex"]]},{"id":"NCBITaxon:284813","l":"Encephalitozoon cuniculi (strain GB-M1)","na":3,"nb":6,"a":[["spore/microsporidian_type_endospore.html","microsporidian-type endospore"],["spore/microsporidian_type_exospore.html","microsporidian-type exospore"],["spore/polar_tube_anchoring_disc.html","polar tube anchoring disc"]],"b":[["Pfam%3APF17027","Histone-fold protein"],["Pfam%3APF10455","Bin/amphiphysin/Rvs domain for vesicular trafficking"],["Pfam%3APF07753","Protein of unknown function (DUF1609)"],["Pfam%3APF09591","Protein of unknown function (DUF2463)"],["Pfam%3APF12376","Protein of unknown function (DUF3654)"],["TED%3AAF-Q8SVN2-F1-model_v4_TED01","TED novel fold AF-Q8SVN2-F1-model_v4_TED01"]]},{"id":"GO:0009431","l":"bacterial-type flagellum basal body, MS ring","na":5,"nb":3,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"],["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"],["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["GO%3A0009431","bacterial-type flagellum basal body, MS ring"],["NCBIfam%3ATIGR00206","flagellar basal-body MS-ring/collar protein FliF"],["NCBIfam%3ATIGR00205","flagellar hook-basal body complex protein FliE"]]},{"id":"GO:0030118","l":"clathrin coat","na":5,"nb":3,"a":[["other/clathrin_coat.html","clathrin coat"],["other/clathrin_coat_of_coated_pit.html","clathrin coat of coated pit"],["other/clathrin_coat_of_endocytic_vesicle.html","clathrin coat of endocytic vesicle"],["other/clathrin_coat_of_trans_golgi_network_vesicle.html","clathrin coat of trans-Golgi network vesicle"],["other/membrane_coat.html","membrane coat"]],"b":[["GO%3A0030118","clathrin coat"],["GO%3A0030132","clathrin coat of coated pit"],["GO%3A0030125","clathrin vesicle coat"]]},{"id":"GO:0030904","l":"retromer complex","na":3,"nb":5,"a":[["other/retromer_cargo_selective_complex.html","retromer, cargo-selective complex"],["other/retromer_complex.html","retromer complex"],["other/retromer_tubulation_complex.html","retromer, tubulation complex"]],"b":[["ComplexPortal%3ACPX-1653","Retromer complex"],["ComplexPortal%3ACPX-2610","Retromer complex"],["ComplexPortal%3ACPX-26687","Retromer complex"],["GO%3A0030904","retromer complex"],["InterPro%3AIPR037918","SNX2, PX domain"]]},{"id":"GO:0033113","l":"cyanelle membrane","na":5,"nb":3,"a":[["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"],["membrane_organelle/plastid_membrane.html","plastid membrane"]],"b":[["GO%3A0036012","cyanelle inner membrane"],["GO%3A0033113","cyanelle membrane"],["GO%3A0036013","cyanelle outer membrane"]]},{"id":"GO:0045037","l":"protein import into chloroplast stroma","na":5,"nb":3,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"],["other/tic_complex.html","Tic complex"],["other/toc_complex.html","Toc complex"]],"b":[["GO%3A0045037","protein import into chloroplast stroma"],["PANTHER%3APTHR47296","PROTEIN TIC 40, CHLOROPLASTIC"],["PANTHER%3APTHR37755","PROTEIN TIC 56, CHLOROPLASTIC"]]},{"id":"InterPro:IPR020013","l":"","na":3,"nb":5,"a":[["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"]],"b":[["Pfam%3APF06429","Flagellar basal body rod FlgEFG protein C-terminal"],["Pfam%3APF22367","Flagellar hook protein FlgE, third domain"],["Pfam%3APF07559","Flagellar basal body protein FlaE D2 domain"],["Pfam%3APF00460","Flagella basal body rod protein"],["PROSITE%3APS00588","Flagella basal body rod proteins signature"]]},{"id":"GO:0005782","l":"peroxisomal matrix","na":3,"nb":4,"a":[["membrane_organelle/peroxisomal_matrix.html","peroxisomal matrix"],["membrane_organelle/peroxisomal_membrane.html","peroxisomal membrane"],["membrane_organelle/peroxisome.html","peroxisome"]],"b":[["GO%3A0034468","glycosome lumen"],["GO%3A0031908","glyoxysomal lumen"],["GO%3A0005782","peroxisomal matrix"],["PANTHER%3APTHR46027","PEROXISOMAL TARGETING SIGNAL 2 RECEPTOR"]]},{"id":"GO:0005858","l":"axonemal dynein complex","na":3,"nb":4,"a":[["cytoskeleton/axonemal_dynein_complex.html","axonemal dynein complex"],["cytoskeleton/inner_dynein_arm.html","inner dynein arm"],["cytoskeleton/outer_dynein_arm.html","outer dynein arm"]],"b":[["GO%3A0005858","axonemal dynein complex"],["GO%3A0036156","inner dynein arm"],["GO%3A0036157","outer dynein arm"],["PANTHER%3APTHR46532","MALE FERTILITY FACTOR KL5"]]},{"id":"GO:0009428","l":"bacterial-type flagellum basal body, distal rod, P ring","na":3,"nb":4,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]],"b":[["GO%3A0009428","bacterial-type flagellum basal body, distal rod, P ring"],["NCBIfam%3ATIGR03170","flagellar basal body P-ring formation chaperone FlgA"],["NCBIfam%3ANF014206","flagellar basal body P-ring protein FlgI"],["Pfam%3APF02119","Flagellar P-ring protein"]]},{"id":"GO:0009433","l":"bacterial-type flagellum basal body, C ring","na":4,"nb":3,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"]],"b":[["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009433","bacterial-type flagellum basal body, C ring"]]},{"id":"GO:0009765","l":"photosynthesis, light harvesting","na":3,"nb":4,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"]],"b":[["GO%3A0009765","photosynthesis, light harvesting"],["GO%3A0009768","photosynthesis, light harvesting in photosystem I"],["GO%3A0009769","photosynthesis, light harvesting in photosystem II"],["NCBIfam%3ATIGR03041","chlorophyll a/b binding light-harvesting protein"]]},{"id":"GO:0030670","l":"phagocytic vesicle membrane","na":3,"nb":4,"a":[["membrane_organelle/phagocytic_vesicle.html","phagocytic vesicle"],["membrane_organelle/phagocytic_vesicle_lumen.html","phagocytic vesicle lumen"],["membrane_organelle/phagocytic_vesicle_membrane.html","phagocytic vesicle membrane"]],"b":[["GO%3A0030671","clathrin-coated phagocytic vesicle membrane"],["GO%3A0036186","early phagosome membrane"],["GO%3A0030670","phagocytic vesicle membrane"],["GO%3A0061474","phagolysosome membrane"]]},{"id":"GO:0071682","l":"endocytic vesicle lumen","na":4,"nb":3,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle_lumen.html","clathrin-coated endocytic vesicle lumen"],["membrane_organelle/endocytic_vesicle.html","endocytic vesicle"],["membrane_organelle/endocytic_vesicle_lumen.html","endocytic vesicle lumen"],["membrane_organelle/endocytic_vesicle_membrane.html","endocytic vesicle membrane"]],"b":[["GO%3A0106176","clathrin-coated endocytic vesicle lumen"],["GO%3A0071682","endocytic vesicle lumen"],["GO%3A0097013","phagocytic vesicle lumen"]]},{"id":"NCBITaxon:431944","l":"Magnetospirillum gryphiswaldense MSR-1","na":4,"nb":3,"a":[["cytoskeleton/mamk_filament.html","MamK filament"],["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]],"b":[["Pfam%3APF12728","Helix-turn-helix domain"],["Pfam%3APF04011","LemA family"],["Pfam%3APF07219","HemY protein N-terminus"]]},{"id":"GO:0034357","l":"photosynthetic membrane","na":3,"nb":3,"a":[["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"],["membrane_organelle/plasma_membrane_derived_chromatophore_membrane.html","plasma membrane-derived chromatophore membrane"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["GO%3A0034357","photosynthetic membrane"],["GO%3A0042717","plasma membrane-derived chromatophore membrane"],["GO%3A0042651","thylakoid membrane"]]},{"id":"GO:0051012","l":"microtubule sliding","na":3,"nb":3,"a":[["cytoskeleton/axonemal_dynein_complex.html","axonemal dynein complex"],["cytoskeleton/inner_dynein_arm.html","inner dynein arm"],["cytoskeleton/outer_dynein_arm.html","outer dynein arm"]],"b":[["GO%3A0051012","microtubule sliding"],["GO%3A0031534","minus-end directed microtubule sliding"],["GO%3A0031535","plus-end directed microtubule sliding"]]},{"id":"GO:0055038","l":"recycling endosome membrane","na":3,"nb":3,"a":[["membrane_organelle/recycling_endosome.html","recycling endosome"],["membrane_organelle/recycling_endosome_lumen.html","recycling endosome lumen"],["membrane_organelle/recycling_endosome_membrane.html","recycling endosome membrane"]],"b":[["GO%3A0055038","recycling endosome membrane"],["PANTHER%3APTHR15726","RAB11-FAMILY INTERACTING PROTEIN"],["PANTHER%3APTHR10687","SECRETORY CARRIER-ASSOCIATED MEMBRANE PROTEIN SCAMP"]]},{"id":"GO:0097013","l":"phagocytic vesicle lumen","na":3,"nb":3,"a":[["membrane_organelle/phagocytic_vesicle.html","phagocytic vesicle"],["membrane_organelle/phagocytic_vesicle_lumen.html","phagocytic vesicle lumen"],["membrane_organelle/phagocytic_vesicle_membrane.html","phagocytic vesicle membrane"]],"b":[["GO%3A0062113","early phagosome lumen"],["GO%3A0097013","phagocytic vesicle lumen"],["GO%3A0106174","phagolysosome vesicle lumen"]]},{"id":"NCBITaxon:274","l":"Thermus thermophilus","na":3,"nb":3,"a":[["energy_complex/respiratory_chain_complex_i.html","respiratory chain complex I"],["ribonucleoprotein/ribosome.html","ribosome"],["ribonucleoprotein/small_ribosomal_subunit.html","small ribosomal subunit"]],"b":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF01861","Branched-chain polyamine synthase A C-terminal domain"],["Pfam%3APF07736","Chorismate mutase type I"]]},{"id":"GO:0110165","l":"cellular anatomical structure","na":2,"nb":1312,"a":[["other/phagophore_assembly_site.html","phagophore assembly site"],["other/popz_polar_microdomain.html","PopZ polar microdomain"]],"b":[["GO%3A0031672","A band"],["GO%3A0036063","acroblast"],["GO%3A0043159","acrosomal matrix"],["GO%3A0099079","actin body"],["GO%3A0030478","actin cap"],["GO%3A0061834","actin filament branch point"]]},{"id":"GO:0006260","l":"DNA replication","na":2,"nb":311,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"],["other/single_stranded_dna_binding_protein_complex.html","single-stranded DNA-binding protein complex"]],"b":[["ComplexPortal%3ACPX-6641","ASCC DNA alkylation repair complex"],["ComplexPortal%3ACPX-568","Chromatin assembly factor 1 complex"],["ComplexPortal%3ACPX-2671","CMG helicase complex"],["ComplexPortal%3ACPX-297","CMG helicase complex"],["ComplexPortal%3ACPX-4526","CMG helicase complex"],["ComplexPortal%3ACPX-4541","CMG helicase complex"]]},{"id":"GO:0098797","l":"plasma membrane protein complex","na":2,"nb":216,"a":[["division_machinery/elongasome.html","elongasome"],["other/ap_2_adaptor_complex.html","AP-2 adaptor complex"]],"b":[["ComplexPortal%3ACPX-850","AHNAK - Annexin A2 - S100-A10 complex"],["ComplexPortal%3ACPX-905","AHNAK - Annexin A2 - S100-A10 complex"],["ComplexPortal%3ACPX-853","Annexin A2 - S100-A10 complex"],["ComplexPortal%3ACPX-898","Annexin A2 - S100-A10 complex"],["ComplexPortal%3ACPX-9322","B-T lymphocyte attenuator, BTLA-TNFRSF14 complex"],["ComplexPortal%3ACPX-4602","FtsEX ABC cell division complex"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":190,"nb":2,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"],["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/septin_ring.html","septin ring"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"],["cytoskeleton/spindle_pole_body.html","spindle pole body"]],"b":[["PROSITE%3APS00820","Glucoamylase active site region signature"],["TED%3AAF-A0A7I9G6Y3-F1-model_v4_TED02","TED novel fold AF-A0A7I9G6Y3-F1-model_v4_TED02"]]},{"id":"GO:0015934","l":"large ribosomal subunit","na":2,"nb":130,"a":[["ribonucleoprotein/large_ribosomal_subunit.html","large ribosomal subunit"],["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["GO%3A0022625","cytosolic large ribosomal subunit"],["GO%3A0015934","large ribosomal subunit"],["GO%3A0000315","organellar large ribosomal subunit"],["NCBIfam%3ATIGR01169","50S ribosomal protein L1"],["NCBIfam%3ANF000955","50S ribosomal protein L10"],["NCBIfam%3ATIGR01077","50S ribosomal protein L13"]]},{"id":"NCBITaxon:83334","l":"Escherichia coli O157:H7","na":2,"nb":130,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"]],"b":[["IDPO%3A0000011","disorder to order"],["IDPO%3A0000014","order to disorder"],["Pfam%3APF12343","DeaD helicase C-terminal disordered region"],["Pfam%3APF26539","YhiD C-terminal ACT domain"],["Pfam%3APF01081","KDPG and KHG aldolase"],["Pfam%3APF10423","Bacterial AMP nucleoside phosphorylase N-terminus"]]},{"id":"GO:0005730","l":"nucleolus","na":2,"nb":121,"a":[["membrane_organelle/nuclear_lumen.html","nuclear lumen"],["other/nucleolus.html","nucleolus"]],"b":[["ComplexPortal%3ACPX-1099","B-WICH chromatin remodelling complex"],["ComplexPortal%3ACPX-1133","B-WICH chromatin remodelling complex"],["ComplexPortal%3ACPX-26423","Box C/D snoRNA-guided RNP methyltransferase complex, FBL variant"],["ComplexPortal%3ACPX-26377","Box C/D snoRNA-Guided RNP methyltransferase complex, FBLL1 variant"],["ComplexPortal%3ACPX-3905","Caspase-2 PIDDosome"],["ComplexPortal%3ACPX-3963","Caspase-2 PIDDosome"]]},{"id":"GO:0015935","l":"small ribosomal subunit","na":2,"nb":113,"a":[["ribonucleoprotein/ribosome.html","ribosome"],["ribonucleoprotein/small_ribosomal_subunit.html","small ribosomal subunit"]],"b":[["GO%3A0022627","cytosolic small ribosomal subunit"],["GO%3A0000314","organellar small ribosomal subunit"],["GO%3A0015935","small ribosomal subunit"],["NCBIfam%3ATIGR01046","30S ribosomal protein S10"],["NCBIfam%3ATIGR00981","30S ribosomal protein S12"],["NCBIfam%3ATIGR00982","30S ribosomal protein S12"]]},{"id":"GO:0003918","l":"DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) activity","na":2,"nb":109,"a":[["other/dna_gyrase_complex.html","DNA gyrase complex"],["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["EC%3A5.6.2.2","DNA topoisomerase (ATP-hydrolyzing)"],["ComplexPortal%3ACPX-2177","GyrA-GyrB DNA Gyrase complex"],["ComplexPortal%3ACPX-26662","SPO11 DNA endo-reduplication complex"],["ComplexPortal%3ACPX-26657","SPO11 meiotic recombination initiation complex"],["ComplexPortal%3ACPX-26658","SPO11 meiotic recombination initiation complex"],["ComplexPortal%3ACPX-26659","SPO11 meiotic recombination initiation complex"]]},{"id":"GO:0012505","l":"endomembrane system","na":2,"nb":109,"a":[["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"],["membrane_organelle/golgi_apparatus.html","Golgi apparatus"]],"b":[["ComplexPortal%3ACPX-1627","RAVE complex"],["ComplexPortal%3ACPX-25781","RAVE complex"],["ComplexPortal%3ACPX-1653","Retromer complex"],["ComplexPortal%3ACPX-2610","Retromer complex"],["ComplexPortal%3ACPX-26687","Retromer complex"],["GO%3A0012505","endomembrane system"]]},{"id":"GO:0098588","l":"bounding membrane of organelle","na":2,"nb":94,"a":[["appendage/ciliary_membrane.html","ciliary membrane"],["membrane_organelle/endocytic_vesicle_membrane.html","endocytic vesicle membrane"]],"b":[["GO%3A0033102","acidocalcisome membrane"],["GO%3A0032578","aleurone grain membrane"],["GO%3A0033111","attachment organelle membrane"],["GO%3A0098588","bounding membrane of organelle"],["GO%3A0030661","chitosome membrane"],["GO%3A0060170","ciliary membrane"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":2,"nb":93,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17544","requires hydrogencarbonate"],["EC%3A1.13.11.73","methylphosphonate synthase"],["EC%3A1.2.1.27","methylmalonate-semialdehyde dehydrogenase (CoA acylating)"],["EC%3A2.5.1.120","aminodeoxyfutalosine synthase"],["EC%3A2.5.1.143","pyridinium-3,5-biscarboxylic acid mononucleotide synthase"],["EC%3A2.7.2.2","carbamate kinase"]]},{"id":"GO:0009252","l":"peptidoglycan biosynthetic process","na":2,"nb":90,"a":[["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/elongasome.html","elongasome"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["GO%3A0009252","peptidoglycan biosynthetic process"],["GO%3A0018104","peptidoglycan-protein cross-linking"],["NCBIfam%3ATIGR00492","alanine racemase"],["NCBIfam%3ANF007061","bifunctional glycosyl transferase/transpeptidase"],["NCBIfam%3ANF006986","bifunctional UDP-N-acetylglucosamine diphosphorylase/glucosamine-1-phosphate N-acetyltransferase GlmU"]]},{"id":"GO:0042597","l":"periplasmic space","na":2,"nb":76,"a":[["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"],["envelope/periplasmic_space.html","periplasmic space"]],"b":[["ComplexPortal%3ACPX-3447","NapAB nitrate reductase complex"],["ComplexPortal%3ACPX-4281","PaoABC periplasmic aldehyde oxidoreductase"],["GO%3A0030287","cell wall-bounded periplasmic space"],["GO%3A0030288","outer membrane-bounded periplasmic space"],["GO%3A0042597","periplasmic space"],["GO%3A0036240","septal periplasm"]]},{"id":"GO:0006888","l":"endoplasmic reticulum to Golgi vesicle-mediated transport","na":2,"nb":60,"a":[["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"],["other/trappi_protein_complex.html","TRAPPI protein complex"]],"b":[["ComplexPortal%3ACPX-1698","EMP24 complex"],["ComplexPortal%3ACPX-7221","ERGIC2-ERGIC3 retrograde receptor complex"],["ComplexPortal%3ACPX-1854","Golgi SNARE complex SED5-BOS1-BET1-SEC22"],["ComplexPortal%3ACPX-1855","Golgi SNARE complex SED5-GOS1-SFT1-YKT6"],["ComplexPortal%3ACPX-8001","LMAN1-MCFD2 cargo receptor complex"],["ComplexPortal%3ACPX-4764","TRAPP II complex"]]},{"id":"GO:0010498","l":"proteasomal protein catabolic process","na":2,"nb":60,"a":[["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"]],"b":[["ComplexPortal%3ACPX-9003","20S immunoproteasome complex"],["ComplexPortal%3ACPX-8806","20S proteasome complex"],["ComplexPortal%3ACPX-9021","20S spermatoproteasome complex"],["ComplexPortal%3ACPX-9004","20S thymoproteasome complex"],["ComplexPortal%3ACPX-9077","26S proteasome complex"],["ComplexPortal%3ACPX-9087","26S proteasome complex, testis-specific variant"]]},{"id":"GO:0051276","l":"chromosome organization","na":2,"nb":49,"a":[["nucleoid/nucleoid.html","nucleoid"],["other/nuclear_chromosome.html","nuclear chromosome"]],"b":[["ComplexPortal%3ACPX-1249","SDS22-GLC7 phosphatase complex"],["ComplexPortal%3ACPX-1260","SDS22-GLC7-YPI1 phosphatase complex"],["GO%3A0036386","bacterial nucleoid DNA packaging"],["GO%3A0141112","broken chromosome clustering"],["GO%3A0030261","chromosome condensation"],["GO%3A0051276","chromosome organization"]]},{"id":"GO:0000932","l":"P-body","na":2,"nb":48,"a":[["ribonucleoprotein/cytoplasmic_stress_granule.html","cytoplasmic stress granule"],["ribonucleoprotein/p_body.html","P-body"]],"b":[["ComplexPortal%3ACPX-1185","DCS1-DCS2 regulator of decapping scavenger complex"],["ComplexPortal%3ACPX-45","LSM1-7 complex"],["ComplexPortal%3ACPX-112","LSM1-7-PAT1 complex"],["ComplexPortal%3ACPX-1308","LSM1-7-PAT1 complex, variant LSM1A-LSM3A-LSM6A-PAT1"],["ComplexPortal%3ACPX-1391","LSM1-7-PAT1 complex, variant LSM1A-LSM3A-LSM6A-PAT1H1"],["ComplexPortal%3ACPX-1399","LSM1-7-PAT1 complex, variant LSM1A-LSM3A-LSM6A-PAT1H2"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":46,"a":[["envelope/periplasmic_space.html","periplasmic space"],["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"]],"b":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF13166","AAA domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF27533","CapK C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"]]},{"id":"GO:0042147","l":"retrograde transport, endosome to Golgi","na":2,"nb":41,"a":[["other/garp_complex.html","GARP complex"],["other/retromer_complex.html","retromer complex"]],"b":[["ComplexPortal%3ACPX-5322","Endosomal SNARE complex TLG2-VTI1-TLG1-SNC1"],["ComplexPortal%3ACPX-5321","Endosomal SNARE complex TLG2-VTI1-TLG1-SNC2"],["ComplexPortal%3ACPX-1718","GARP tethering complex"],["ComplexPortal%3ACPX-365","GARP tethering complex"],["ComplexPortal%3ACPX-6208","GARP tethering complex"],["ComplexPortal%3ACPX-2788","GARP tethering complex, Vps50 variant"]]},{"id":"GO:0006402","l":"mRNA catabolic process","na":2,"nb":39,"a":[["ribonucleoprotein/bacterial_degradosome.html","bacterial degradosome"],["ribonucleoprotein/p_body.html","P-body"]],"b":[["ComplexPortal%3ACPX-2771","CCR4-NOT mRNA deadenylase complex"],["ComplexPortal%3ACPX-11781","Lyric-SND1 RNA regulator complex"],["ComplexPortal%3ACPX-2733","miRNA RISC complex"],["ComplexPortal%3ACPX-1040","SKI complex"],["GO%3A0141065","maternal mRNA clearance"],["GO%3A0000958","mitochondrial mRNA catabolic process"]]},{"id":"NCBITaxon:272634","l":"Mycoplasmoides pneumoniae (strain ATCC 29342 / M129 / Subtype 1)","na":2,"nb":38,"a":[["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"]],"b":[["Pfam%3APF01812","5-formyltetrahydrofolate cyclo-ligase family"],["Pfam%3APF03257","Mycoplasma adhesin P1, C-terminal"],["Pfam%3APF22509","CARDS D2, beta trefoil domain"],["Pfam%3APF22346","ADP-ribosylating toxin CARDS, C-terminal beta-trefoil domain"],["Pfam%3APF21694","DNA polymerase III delta subunit, C-terminal domain"],["Pfam%3APF01519","Protein of unknown function DUF16"]]},{"id":"GO:0008360","l":"regulation of cell shape","na":2,"nb":35,"a":[["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/elongasome.html","elongasome"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["ComplexPortal%3ACPX-2499","Erythrocyte spectrin complex"],["GO%3A0071963","establishment or maintenance of cell polarity regulating cell shape"],["GO%3A0008360","regulation of cell shape"],["GO%3A0061389","regulation of direction of cell growth"],["GO%3A0016476","regulation of embryonic cell shape"]]},{"id":"GO:0030141","l":"secretory granule","na":2,"nb":33,"a":[["membrane_organelle/apicomplexan_dense_granule.html","apicomplexan dense granule"],["membrane_organelle/mucocyst.html","mucocyst"]],"b":[["GO%3A0001669","acrosomal vesicle"],["GO%3A0020026","apicomplexan dense granule"],["GO%3A0042582","azurophil granule"],["GO%3A0042583","chromaffin granule"],["GO%3A0060473","cortical granule"],["GO%3A0031045","dense core granule"]]},{"id":"GO:0015977","l":"carbon fixation","na":2,"nb":30,"a":[["microcompartment/carboxysome.html","carboxysome"],["other/pyrenoid.html","pyrenoid"]],"b":[["GO%3A0009760","C4 photosynthesis"],["GO%3A0009761","CAM photosynthesis"],["GO%3A0043427","carbon fixation by 3-hydroxypropionate cycle"],["GO%3A0030634","carbon fixation by acetyl-CoA pathway"],["GO%3A0015977","carbon fixation"],["GO%3A0019643","reductive tricarboxylic acid cycle"]]},{"id":"GO:0071013","l":"catalytic step 2 spliceosome","na":2,"nb":29,"a":[["ribonucleoprotein/u12_type_catalytic_step_2_spliceosome.html","U12-type catalytic step 2 spliceosome"],["ribonucleoprotein/u2_type_catalytic_step_2_spliceosome.html","U2-type catalytic step 2 spliceosome"]],"b":[["GO%3A0071013","catalytic step 2 spliceosome"],["GO%3A0071018","U12-type catalytic step 2 spliceosome"],["GO%3A0071007","U2-type catalytic step 2 spliceosome"],["PANTHER%3APTHR13296","BCAS2 PROTEIN"],["PANTHER%3APTHR12718","CELL CYCLE CONTROL PROTEIN CWF15"],["PANTHER%3APTHR12940","ES-2 PROTEIN - RELATED"]]},{"id":"GO:0046961","l":"proton-transporting ATPase activity, rotational mechanism","na":2,"nb":26,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v1_domain.html","vacuolar proton-transporting V-type ATPase, V1 domain"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["ComplexPortal%3ACPX-2470","Vacuolar proton translocating ATPase complex, ATP6V0A1 variant"],["ComplexPortal%3ACPX-6904","Vacuolar proton translocating ATPase complex, ATP6V0A2 variant"],["ComplexPortal%3ACPX-6905","Vacuolar proton translocating ATPase complex, ATP6V0A3 variant"],["ComplexPortal%3ACPX-6912","Vacuolar proton translocating ATPase complex, ATP6V0A4 variant"],["ComplexPortal%3ACPX-1192","Vacuolar proton translocating ATPase complex, Golgi variant"]]},{"id":"GO:0000145","l":"exocyst","na":2,"nb":25,"a":[["other/cellular_bud_tip.html","cellular bud tip"],["other/exocyst.html","exocyst"]],"b":[["ComplexPortal%3ACPX-1890","Exocyst complex"],["ComplexPortal%3ACPX-26496","Exocyst complex"],["ComplexPortal%3ACPX-2465","Exocyst"],["ComplexPortal%3ACPX-712","Exocyst"],["ComplexPortal%3ACPX-4943","Exocyst, EXOC6 variant"],["ComplexPortal%3ACPX-4982","Exocyst, Exoc6 variant"]]},{"id":"GO:0071011","l":"precatalytic spliceosome","na":2,"nb":24,"a":[["ribonucleoprotein/u12_type_precatalytic_spliceosome.html","U12-type precatalytic spliceosome"],["ribonucleoprotein/u2_type_precatalytic_spliceosome.html","U2-type precatalytic spliceosome"]],"b":[["ComplexPortal%3ACPX-26435","Major Spliceosomal B complex"],["ComplexPortal%3ACPX-26429","Major Spliceosomal Pre-B complex"],["GO%3A0071011","precatalytic spliceosome"],["GO%3A0071016","U12-type precatalytic spliceosome"],["GO%3A0071005","U2-type precatalytic spliceosome"],["PANTHER%3APTHR46589","APOPTOTIC CHROMATIN CONDENSATION INDUCER IN THE NUCLEUS"]]},{"id":"GO:0072686","l":"mitotic spindle","na":2,"nb":24,"a":[["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"]],"b":[["ComplexPortal%3ACPX-1041","DASH complex"],["ComplexPortal%3ACPX-4027","gpr-1-gpr-2-lin-5 complex"],["GO%3A0072686","mitotic spindle"],["PANTHER%3APTHR46930","CDK5 REGULATORY SUBUNIT-ASSOCIATED PROTEIN 2"],["PANTHER%3APTHR47078","CYTOSKELETON-ASSOCIATED PROTEIN 2-LIKE"],["PANTHER%3APTHR28036","DASH COMPLEX SUBUNIT DAD2"]]},{"id":"GO:0005819","l":"spindle","na":2,"nb":20,"a":[["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"]],"b":[["ComplexPortal%3ACPX-3463","Central spindlin complex"],["GO%3A0072687","meiotic spindle"],["GO%3A0072686","mitotic spindle"],["GO%3A0005819","spindle"],["PANTHER%3APTHR31022","CENTRIOLE, CILIA AND SPINDLE-ASSOCIATED PROTEIN"],["PANTHER%3APTHR46725","COILED-COIL DOMAIN-CONTAINING PROTEIN 57"]]},{"id":"GO:0030658","l":"transport vesicle membrane","na":2,"nb":20,"a":[["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"],["membrane_organelle/trans_golgi_network_transport_vesicle_membrane.html","trans-Golgi network transport vesicle membrane"]],"b":[["GO%3A0060201","clathrin-sculpted acetylcholine transport vesicle membrane"],["GO%3A0060203","clathrin-sculpted glutamate transport vesicle membrane"],["GO%3A0070083","clathrin-sculpted monoamine transport vesicle membrane"],["GO%3A0012507","ER to Golgi transport vesicle membrane"],["GO%3A0099501","exocytic vesicle membrane"],["GO%3A0012508","Golgi to ER transport vesicle membrane"]]},{"id":"GO:0000048","l":"peptidyltransferase activity","na":2,"nb":18,"a":[["ribonucleoprotein/large_ribosomal_subunit.html","large ribosomal subunit"],["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["EC%3A2.3.2.12","peptidyltransferase"],["ComplexPortal%3ACPX-5226","39S mitochondrial large ribosomal subunit"],["ComplexPortal%3ACPX-5302","39S mitochondrial large ribosomal subunit"],["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["ComplexPortal%3ACPX-1602","54S mitochondrial large ribosomal subunit"],["ComplexPortal%3ACPX-1601","60S cytosolic large ribosomal subunit"]]},{"id":"GO:0005876","l":"spindle microtubule","na":2,"nb":18,"a":[["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"]],"b":[["GO%3A0000235","astral microtubule"],["GO%3A0005828","kinetochore microtubule"],["GO%3A1990498","mitotic spindle microtubule"],["GO%3A0005827","polar microtubule"],["GO%3A0005876","spindle microtubule"],["PANTHER%3APTHR46725","COILED-COIL DOMAIN-CONTAINING PROTEIN 57"]]},{"id":"GO:0031411","l":"gas vesicle","na":2,"nb":18,"a":[["inclusion/gas_vesicle.html","gas vesicle"],["inclusion/gas_vesicle_shell.html","gas vesicle shell"]],"b":[["GO%3A0031411","gas vesicle"],["NCBIfam%3ANF041667","gas vesicle accessory protein GvpU"],["NCBIfam%3ANF046092","gas vesicle protein GvpA"],["NCBIfam%3ANF045779","gas vesicle protein GvpG"],["NCBIfam%3ANF046090","gas vesicle protein GvpJ"],["NCBIfam%3ANF045778","gas vesicle protein GvpL"]]},{"id":"GO:0031982","l":"vesicle","na":2,"nb":18,"a":[["membrane_organelle/cytoplasmic_vesicle.html","cytoplasmic vesicle"],["membrane_organelle/multivesicular_body_intraluminal_vesicle.html","multivesicular body intraluminal vesicle"]],"b":[["GO%3A1903561","extracellular vesicle"],["GO%3A0097708","intracellular vesicle"],["GO%3A0031982","vesicle"],["PANTHER%3APTHR47395","BPI FOLD-CONTAINING FAMILY B MEMBER 1"],["PANTHER%3APTHR15152","CD70 ANTIGEN"],["PANTHER%3APTHR44314","CILIA- AND FLAGELLA-ASSOCIATED PROTEIN 70"]]},{"id":"GO:0046540","l":"U4/U6 x U5 tri-snRNP complex","na":2,"nb":18,"a":[["ribonucleoprotein/u2_type_precatalytic_spliceosome.html","U2-type precatalytic spliceosome"],["ribonucleoprotein/u4_u6_x_u5_tri_snrnp_complex.html","U4/U6 x U5 tri-snRNP complex"]],"b":[["ComplexPortal%3ACPX-2391","U4/U6.U5 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-25","U4/U6.U5 tri-small nuclear ribonucleoprotein complex"],["GO%3A0046540","U4/U6 x U5 tri-snRNP complex"],["NCBIfam%3ANF014962","Mitosis protein DIM1"],["InterPro%3AIPR045347","HIND motif"],["InterPro%3AIPR034103","Sm-like protein Lsm8"]]},{"id":"GO:0033103","l":"protein secretion by the type VI secretion system","na":2,"nb":17,"a":[["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"],["secretion_system/type_vi_secretion_system_contractile_sheath.html","type VI secretion system contractile sheath"]],"b":[["GO%3A0033103","protein secretion by the type VI secretion system"],["NCBIfam%3ATIGR03354","type VI secretion system-associated FHA domain protein TagH"],["NCBIfam%3ATIGR03345","type VI secretion system ATPase TssH"],["NCBIfam%3ATIGR03357","type VI secretion system baseplate subunit TssE"],["NCBIfam%3ATIGR03359","type VI secretion system baseplate subunit TssF"],["NCBIfam%3ATIGR03347","type VI secretion system baseplate subunit TssG"]]},{"id":"GO:0035869","l":"ciliary transition zone","na":2,"nb":17,"a":[["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"]],"b":[["ComplexPortal%3ACPX-2789","CEP290 complex"],["ComplexPortal%3ACPX-2536","CEP290-NPHP5 transition zone complex"],["ComplexPortal%3ACPX-2339","MKS complex"],["ComplexPortal%3ACPX-2531","MKS transition zone complex"],["ComplexPortal%3ACPX-2806","NPHP transition zone complex"],["GO%3A0035869","ciliary transition zone"]]},{"id":"NCBITaxon:5888","l":"Paramecium tetraurelia","na":2,"nb":17,"a":[["cytoskeleton/ciliary_rootlet.html","ciliary rootlet"],["membrane_organelle/trichocyst.html","trichocyst"]],"b":[["Pfam%3APF14926","Cilia- and flagella-associated protein 300"],["TED%3AAF-A0C038-F1-model_v4_TED07","TED highly-symmetric fold AF-A0C038-F1-model_v4_TED07"],["TED%3AAF-A0CFS1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0CFS1-F1-model_v4_TED02"],["TED%3AAF-A0CHQ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0CHQ8-F1-model_v4_TED01"],["TED%3AAF-A0CHQ8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0CHQ8-F1-model_v4_TED02"],["TED%3AAF-A0CHR9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0CHR9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":2,"nb":16,"a":[["cytoskeleton/tubz_filament.html","TubZ filament"],["inclusion/parasporal_crystal.html","parasporal crystal"]],"b":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF28265","Lipoprotein N-acylation protein LnsA-like"],["Pfam%3APF16403","Bacterial surface protein, Ig-like domain"],["Pfam%3APF03944","delta endotoxin"],["Pfam%3APF03945","delta endotoxin, N-terminal domain"],["Pfam%3APF06355","Aegerolysin"]]},{"id":"GO:0005811","l":"lipid droplet","na":2,"nb":15,"a":[["inclusion/lipid_droplet.html","lipid droplet"],["inclusion/monolayer_surrounded_lipid_storage_body_outer_lipid_monolayer.html","monolayer-surrounded lipid storage body outer lipid monolayer"]],"b":[["ComplexPortal%3ACPX-2148","Phosphatidylinositol transporter complex"],["ComplexPortal%3ACPX-3342","Seipin complex"],["GO%3A0005633","ascus lipid droplet"],["GO%3A0005811","lipid droplet"],["GO%3A0012511","monolayer-surrounded lipid storage body"],["NCBIfam%3ATIGR04278","antiviral radical SAM protein viperin"]]},{"id":"GO:0031902","l":"late endosome membrane","na":2,"nb":15,"a":[["membrane_organelle/late_endosome_lumen.html","late endosome lumen"],["membrane_organelle/late_endosome_membrane.html","late endosome membrane"]],"b":[["ComplexPortal%3ACPX-6308","ATP10B-CDC50A P4-ATPase complex"],["ComplexPortal%3ACPX-4741","Ragulator complex"],["ComplexPortal%3ACPX-4761","Ragulator complex"],["GO%3A0031902","late endosome membrane"],["GO%3A0032585","multivesicular body membrane"],["PANTHER%3APTHR12897","COLON CANCER-ASSOCIATED PROTEIN MIC1"]]},{"id":"GO:0032588","l":"trans-Golgi network membrane","na":2,"nb":14,"a":[["membrane_organelle/trans_golgi_network.html","trans-Golgi network"],["membrane_organelle/trans_golgi_network_membrane.html","trans-Golgi network membrane"]],"b":[["ComplexPortal%3ACPX-5050","Endothelial AP-1 Adaptor complex, sigma1a variant"],["ComplexPortal%3ACPX-5144","Endothelial AP-1 Adaptor complex, sigma1a variant"],["ComplexPortal%3ACPX-5047","Ubiquitous AP-1 Adaptor complex, sigma1a variant"],["ComplexPortal%3ACPX-5141","Ubiquitous AP-1 Adaptor complex, sigma1a variant"],["ComplexPortal%3ACPX-5048","Ubiquitous AP-1 Adaptor complex, sigma1b variant"],["ComplexPortal%3ACPX-5142","Ubiquitous AP-1 Adaptor complex, sigma1b variant"]]},{"id":"GO:0097526","l":"spliceosomal tri-snRNP complex","na":2,"nb":14,"a":[["ribonucleoprotein/u4_u6_x_u5_tri_snrnp_complex.html","U4/U6 x U5 tri-snRNP complex"],["ribonucleoprotein/u4atac_u6atac_x_u5_tri_snrnp_complex.html","U4atac/U6atac x U5 tri-snRNP complex"]],"b":[["GO%3A0097526","spliceosomal tri-snRNP complex"],["GO%3A0046540","U4/U6 x U5 tri-snRNP complex"],["GO%3A0071009","U4atac/U6atac x U5 tri-snRNP complex"],["PANTHER%3APTHR13904","PRE-MRNA SPLICING FACTOR PRP31"],["PANTHER%3APTHR13007","PRE-MRNA SPLICING FACTOR-RELATED"],["PANTHER%3APTHR11193","SMALL NUCLEAR RIBONUCLEOPROTEIN E"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":2,"nb":14,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF02224","Cytidylate kinase"],["Pfam%3APF03319","Ethanolamine utilisation protein EutN/carboxysome"],["Pfam%3APF22019","alpha-1,4-glucan branching enzyme GlgB, N-terminal domain"],["Pfam%3APF21714","Circadian clock protein KaiA, N-terminal domain"],["Pfam%3APF07688","KaiA C-terminal domain"]]},{"id":"GO:0005744","l":"TIM23 mitochondrial import inner membrane translocase complex","na":2,"nb":13,"a":[["other/pam_complex_tim23_associated_import_motor.html","PAM complex, Tim23 associated import motor"],["other/tim23_mitochondrial_import_inner_membrane_translocase_complex.html","TIM23 mitochondrial import inner membrane translocase complex"]],"b":[["ComplexPortal%3ACPX-540","Mitochondrial inner membrane pre-sequence translocase complex"],["ComplexPortal%3ACPX-539","TIM23 mitochondrial inner membrane pre-sequence translocase complex, motor variant"],["ComplexPortal%3ACPX-6127","TIM23 mitochondrial inner membrane pre-sequence translocase complex, sort variant"],["ComplexPortal%3ACPX-6129","TIM23 mitochondrial inner membrane pre-sequence translocase complex, TIM17A variant"],["ComplexPortal%3ACPX-6130","TIM23 mitochondrial inner membrane pre-sequence translocase complex, TIM17B variant"],["GO%3A0005744","TIM23 mitochondrial import inner membrane translocase complex"]]},{"id":"GO:0007007","l":"inner mitochondrial membrane organization","na":2,"nb":13,"a":[["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"],["other/micos_complex.html","MICOS complex"]],"b":[["GO%3A0042407","cristae formation"],["GO%3A0007007","inner mitochondrial membrane organization"],["GO%3A1990627","mitochondrial inner membrane fusion"],["GO%3A0032979","protein insertion into mitochondrial inner membrane from matrix"],["GO%3A0045039","protein insertion into mitochondrial inner membrane"],["PANTHER%3APTHR36959","ALTERED INHERITANCE OF MITOCHONDRIA PROTEIN 24, MITOCHONDRIAL"]]},{"id":"GO:0032153","l":"cell division site","na":2,"nb":13,"a":[["division_machinery/divisome_complex.html","divisome complex"],["envelope/division_septum.html","division septum"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["GO%3A0032153","cell division site"],["PANTHER%3APTHR36419","ARRESTIN FAMILY PROTEIN 1"],["PANTHER%3APTHR30474","CELL CYCLE PROTEIN"],["PANTHER%3APTHR37479","CELL DIVISION PROTEIN FTSL"],["PANTHER%3APTHR30314","CELL DIVISION PROTEIN FTSZ-RELATED"]]},{"id":"GO:0006913","l":"nucleocytoplasmic transport","na":2,"nb":12,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nucleus.html","nucleus"]],"b":[["ComplexPortal%3ACPX-2568","Nuclear pore complex"],["ComplexPortal%3ACPX-4474","Nuclear pore complex"],["ComplexPortal%3ACPX-824","Nuclear pore complex"],["ComplexPortal%3ACPX-873","Nuclear pore complex"],["GO%3A0051170","import into nucleus"],["GO%3A0051168","nuclear export"]]},{"id":"GO:1990586","l":"divisome complex","na":2,"nb":11,"a":[["division_machinery/divisome_complex.html","divisome complex"],["envelope/division_septum.html","division septum"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["ComplexPortal%3ACPX-3299","FtsBL complex"],["ComplexPortal%3ACPX-3099","FtsQBL complex"],["GO%3A1990586","divisome complex"],["GO%3A1990588","FtsBL complex"],["GO%3A1990587","FtsQBL complex"]]},{"id":"GO:0009330","l":"DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) complex","na":2,"nb":10,"a":[["other/dna_gyrase_complex.html","DNA gyrase complex"],["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["ComplexPortal%3ACPX-26662","SPO11 DNA endo-reduplication complex"],["ComplexPortal%3ACPX-26657","SPO11 meiotic recombination initiation complex"],["ComplexPortal%3ACPX-26658","SPO11 meiotic recombination initiation complex"],["ComplexPortal%3ACPX-26659","SPO11 meiotic recombination initiation complex"],["ComplexPortal%3ACPX-26664","SPO11, meiotic recombination initiation complex"],["ComplexPortal%3ACPX-1104","Topoisomerase IV"]]},{"id":"GO:0030428","l":"cell septum","na":2,"nb":10,"a":[["envelope/division_septum.html","division septum"],["membrane_organelle/chitosome.html","chitosome"]],"b":[["GO%3A0000933","adventitious septum"],["GO%3A0030428","cell septum"],["GO%3A0000935","division septum"],["GO%3A0000934","porous cell septum"],["NCBIfam%3ANF008641","cell division protein DedD"],["NCBIfam%3ATIGR00172","Maf family nucleotide pyrophosphatase"]]},{"id":"GO:0031470","l":"carboxysome","na":2,"nb":10,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["GO%3A0031470","carboxysome"],["NCBIfam%3ANF053791","alpha-carboxysome major shell protein CsoS1"],["NCBIfam%3ANF049993","beta-carboxysome assembly chaperone CcmS"],["NCBIfam%3ANF053792","beta-carboxysome assembly protein CcmO"],["NCBIfam%3ANF053796","beta-carboxysome protein CcmP"],["NCBIfam%3ANF053793","beta-carboxysome scaffolding protein CcmN"]]},{"id":"GO:0071014","l":"post-mRNA release spliceosomal complex","na":2,"nb":10,"a":[["ribonucleoprotein/u12_type_post_mrna_release_spliceosomal_complex.html","U12-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u2_type_post_mrna_release_spliceosomal_complex.html","U2-type post-mRNA release spliceosomal complex"]],"b":[["ComplexPortal%3ACPX-26480","Intron Lariat Spliceosome, type 1 complex"],["ComplexPortal%3ACPX-26481","Intron Lariat Spliceosome, type 2 complex"],["GO%3A0071014","post-mRNA release spliceosomal complex"],["GO%3A0071019","U12-type post-mRNA release spliceosomal complex"],["GO%3A0071008","U2-type post-mRNA release spliceosomal complex"],["PANTHER%3APTHR12072","CWF19, CELL CYCLE CONTROL PROTEIN"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":2,"nb":10,"a":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["TED%3AAF-A0A5T2E4X7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5T2E4X7-F1-model_v4_TED01"],["TED%3AAF-A0A5Y4BP44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Y4BP44-F1-model_v4_TED01"],["TED%3AAF-A0A623P6F3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A623P6F3-F1-model_v4_TED02"],["TED%3AAF-A0A721BDS7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A721BDS7-F1-model_v4_TED02"],["TED%3AAF-A0A743P324-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A743P324-F1-model_v4_TED01"],["TED%3AAF-A0A757VWR3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A757VWR3-F1-model_v4_TED02"]]},{"id":"GO:0005935","l":"cellular bud neck","na":2,"nb":9,"a":[["other/cellular_bud.html","cellular bud"],["other/cellular_bud_neck.html","cellular bud neck"]],"b":[["ComplexPortal%3ACPX-1684","CBK1-MOB2 kinase complex"],["ComplexPortal%3ACPX-1140","HICS complex"],["ComplexPortal%3ACPX-36","Kelch-containing Formin Regulatory Complex"],["ComplexPortal%3ACPX-1426","Myosin class II complex"],["ComplexPortal%3ACPX-1695","PCL1-PHO85 kinase complex"],["ComplexPortal%3ACPX-1694","PCL2-PHO85 kinase complex"]]},{"id":"GO:0006097","l":"glyoxylate cycle","na":2,"nb":9,"a":[["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysome.html","glyoxysome"]],"b":[["GO%3A0006097","glyoxylate cycle"],["proteintraitsmech%3ASEED_SUBSYSTEM_Glyoxylate_bypass","Glyoxylate bypass"],["NCBIfam%3ATIGR02924","isocitrate dehydrogenase"],["NCBIfam%3ATIGR01344","malate synthase A"],["NCBIfam%3ANF041315","malate synthase AceB"],["NCBIfam%3ANF002825","malate synthase G"]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":2,"nb":9,"a":[["envelope/capsule.html","capsule"],["envelope/glycocalyx.html","glycocalyx"]],"b":[["Pfam%3APF19567","Capsular polysaccharide synthesis, CpsB/CapC"],["Pfam%3APF07501","G5 domain"],["Pfam%3APF13551","Winged helix-turn helix"],["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF03047","COMC family"],["Pfam%3APF04556","DpnII restriction endonuclease"]]},{"id":"GO:0003352","l":"regulation of cilium movement","na":2,"nb":8,"a":[["cytoskeleton/axonemal_nexin_link.html","axonemal nexin link"],["cytoskeleton/radial_spoke.html","radial spoke"]],"b":[["GO%3A0120221","maintenance of ciliary planar beating movement pattern"],["GO%3A0003354","negative regulation of cilium movement"],["GO%3A0003353","positive regulation of cilium movement"],["GO%3A0003356","regulation of cilium beat frequency"],["GO%3A0003352","regulation of cilium movement"],["GO%3A0060295","regulation of cilium movement involved in cell motility"]]},{"id":"GO:0005801","l":"cis-Golgi network","na":2,"nb":8,"a":[["membrane_organelle/cis_golgi_network.html","cis-Golgi network"],["membrane_organelle/cis_golgi_network_membrane.html","cis-Golgi network membrane"]],"b":[["ComplexPortal%3ACPX-6092","GRASP55-GM45 Golgi stacking complex"],["ComplexPortal%3ACPX-874","GRASP65-GM130 Golgi stacking complex"],["GO%3A0005801","cis-Golgi network"],["InterPro%3AIPR043937","Golgin subfamily A , C-terminal binding motif"],["PANTHER%3APTHR14759","STOP PROTEIN"],["PANTHER%3APTHR13048","TRAFFICKING PROTEIN PARTICLE COMPLEX SUBUNIT 3"]]},{"id":"GO:0030131","l":"clathrin adaptor complex","na":2,"nb":8,"a":[["other/ap_1_adaptor_complex.html","AP-1 adaptor complex"],["other/ap_2_adaptor_complex.html","AP-2 adaptor complex"]],"b":[["GO%3A0030121","AP-1 adaptor complex"],["GO%3A0030122","AP-2 adaptor complex"],["GO%3A0030131","clathrin adaptor complex"],["InterPro%3AIPR018240","Clathrin adaptor, mu subunit, conserved site"],["InterPro%3AIPR015151","Beta-adaptin appendage, C-terminal subdomain"],["InterPro%3AIPR003164","Clathrin adaptor, alpha-adaptin, appendage, C-terminal subdomain"]]},{"id":"GO:0031931","l":"TORC1 complex","na":2,"nb":8,"a":[["other/torc1_complex.html","TORC1 complex"],["other/torc2_complex.html","TORC2 complex"]],"b":[["ComplexPortal%3ACPX-4473","mTORC1 complex"],["ComplexPortal%3ACPX-503","mTORC1 complex"],["ComplexPortal%3ACPX-2265","TORC1 complex"],["ComplexPortal%3ACPX-26512","TORC1 serine/threonine protein kinase complex"],["ComplexPortal%3ACPX-1715","TORC1 serine/threonine-protein kinase complex, TOR1 variant"],["ComplexPortal%3ACPX-1716","TORC1 serine/threonine-protein kinase complex, TOR2 variant"]]},{"id":"GO:0033176","l":"proton-transporting V-type ATPase complex","na":2,"nb":8,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["other/rave_complex.html","RAVE complex"]],"b":[["ComplexPortal%3ACPX-2470","Vacuolar proton translocating ATPase complex, ATP6V0A1 variant"],["ComplexPortal%3ACPX-6904","Vacuolar proton translocating ATPase complex, ATP6V0A2 variant"],["ComplexPortal%3ACPX-6905","Vacuolar proton translocating ATPase complex, ATP6V0A3 variant"],["ComplexPortal%3ACPX-6912","Vacuolar proton translocating ATPase complex, ATP6V0A4 variant"],["ComplexPortal%3ACPX-1192","Vacuolar proton translocating ATPase complex, Golgi variant"],["GO%3A0033181","plasma membrane proton-transporting V-type ATPase complex"]]},{"id":"GO:1903561","l":"extracellular vesicle","na":2,"nb":8,"a":[["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"],["other/bacterial_outer_membrane_vesicle.html","bacterial outer membrane vesicle"]],"b":[["GO%3A0097189","apoptotic body"],["GO%3A0097691","bacterial extracellular vesicle"],["GO%3A0061701","bacterial outer membrane vesicle"],["GO%3A0160014","exopher"],["GO%3A0070062","extracellular exosome"],["GO%3A1903561","extracellular vesicle"]]},{"id":"GO:0005687","l":"U4 snRNP","na":2,"nb":7,"a":[["ribonucleoprotein/u4_snrnp.html","U4 snRNP"],["ribonucleoprotein/u4_u6_snrnp.html","U4/U6 snRNP"]],"b":[["ComplexPortal%3ACPX-43","Sm complex"],["ComplexPortal%3ACPX-6033","Sm complex"],["ComplexPortal%3ACPX-26417","U4 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-31","U4 small nuclear ribonucleoprotein complex"],["GO%3A0005687","U4 snRNP"],["PANTHER%3APTHR13904","PRE-MRNA SPLICING FACTOR PRP31"]]},{"id":"GO:0009276","l":"Gram-negative-bacterium-type cell wall","na":2,"nb":7,"a":[["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"]],"b":[["GO%3A0009276","Gram-negative-bacterium-type cell wall"],["NCBIfam%3ATIGR02208","lauroyl-Kdo(2)-lipid IV(A) myristoyltransferase"],["NCBIfam%3ATIGR02314","methionine ABC transporter ATP-binding protein MetN"],["NCBIfam%3ATIGR01937","NADH:ubiquinone reductase (Na(+)-transporting) subunit B"],["NCBIfam%3ATIGR02162","pentaheme c-type cytochrome TorC"],["NCBIfam%3ATIGR01709","type II secretion system protein GspL"]]},{"id":"GO:0030479","l":"actin cortical patch","na":2,"nb":7,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"],["other/cell_cortex.html","cell cortex"]],"b":[["ComplexPortal%3ACPX-3541","AIM21-TDA2 actin assembly regulator complex"],["ComplexPortal%3ACPX-1500","Myosin class I complex, MYO3 variant"],["ComplexPortal%3ACPX-1470","Myosin class I complex, MYO5 variant"],["ComplexPortal%3ACPX-1335","RVS161-RVS167 amphiphysin complex"],["GO%3A0030479","actin cortical patch"],["PANTHER%3APTHR47789","LAS SEVENTEEN-BINDING PROTEIN 5"]]},{"id":"GO:0030905","l":"retromer, tubulation complex","na":2,"nb":7,"a":[["other/retromer_complex.html","retromer complex"],["other/retromer_tubulation_complex.html","retromer, tubulation complex"]],"b":[["ComplexPortal%3ACPX-8837","SNX1-SNX32 sorting nexin complex"],["ComplexPortal%3ACPX-8823","SNX1-SNX5 sorting nexin complex"],["ComplexPortal%3ACPX-8835","SNX1-SNX6 sorting nexin complex"],["ComplexPortal%3ACPX-8840","SNX2-SNX32 sorting nexin complex"],["ComplexPortal%3ACPX-8838","SNX2-SNX5 sorting nexin complex"],["ComplexPortal%3ACPX-8839","SNX2-SNX6 sorting nexin complex"]]},{"id":"GO:0033179","l":"proton-transporting V-type ATPase, V0 domain","na":2,"nb":7,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_v0_domain.html","vacuolar proton-transporting V-type ATPase, V0 domain"],["other/rave_complex.html","RAVE complex"]],"b":[["GO%3A0000222","plasma membrane proton-transporting V-type ATPase, V0 domain"],["GO%3A0033179","proton-transporting V-type ATPase, V0 domain"],["GO%3A0000220","vacuolar proton-transporting V-type ATPase, V0 domain"],["NCBIfam%3ATIGR02923","ATP synthase A1 subunit C"],["NCBIfam%3ANF013647","V-type ATPase 116kDa subunit family protein"],["Pfam%3APF05493","ATP synthase subunit H"]]},{"id":"GO:0071004","l":"U2-type prespliceosome","na":2,"nb":7,"a":[["ribonucleoprotein/u2_type_precatalytic_spliceosome.html","U2-type precatalytic spliceosome"],["ribonucleoprotein/u2_type_prespliceosome.html","U2-type prespliceosome"]],"b":[["ComplexPortal%3ACPX-1648","SF3A complex"],["GO%3A0071004","U2-type prespliceosome"],["PANTHER%3APTHR11864","PRE-MRNA-PROCESSING PROTEIN PRP40"],["PANTHER%3APTHR12375","RNA-BINDING PROTEIN LUC7-RELATED"],["PANTHER%3APTHR15316","SPLICEOSOME ASSOCIATED PROTEIN 114/SWAP SPLICING FACTOR-RELATED"],["PANTHER%3APTHR23205","SPLICING FACTOR 3A SUBUNIT 2"]]},{"id":"NCBITaxon:555778","l":"","na":2,"nb":7,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["Pfam%3APF08936","Carboxysome Shell Carbonic Anhydrase, C-terminal"],["Pfam%3APF20686","Carboxysome Shell Carbonic Anhydrase, catalytic domain"],["Pfam%3APF20687","Carboxysome Shell Carbonic Anhydrase, N-terminal"],["Pfam%3APF12288","Carboxysome shell peptide mid-region"],["Pfam%3APF10070","Probable inorganic carbon transporter subunit DabA"],["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"GO:0005619","l":"ascospore wall","na":6,"nb":2,"a":[["spore/ascospore_wall.html","ascospore wall"],["spore/chitosan_layer_of_spore_wall.html","chitosan layer of spore wall"],["spore/dityrosine_layer_of_spore_wall.html","dityrosine layer of spore wall"],["spore/inner_layer_of_spore_wall.html","inner layer of spore wall"],["spore/isp3_layer_of_spore_wall.html","Isp3 layer of spore wall"],["spore/spore_wall.html","spore wall"]],"b":[["ComplexPortal%3ACPX-1675","Septin complex"],["GO%3A0005619","ascospore wall"]]},{"id":"GO:0005691","l":"U6atac snRNP","na":6,"nb":2,"a":[["ribonucleoprotein/u12_type_catalytic_step_1_spliceosome.html","U12-type catalytic step 1 spliceosome"],["ribonucleoprotein/u12_type_catalytic_step_2_spliceosome.html","U12-type catalytic step 2 spliceosome"],["ribonucleoprotein/u12_type_post_mrna_release_spliceosomal_complex.html","U12-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u12_type_post_spliceosomal_complex.html","U12-type post-spliceosomal complex"],["ribonucleoprotein/u4atac_u6atac_snrnp.html","U4atac/U6atac snRNP"],["ribonucleoprotein/u6atac_snrnp.html","U6atac snRNP"]],"b":[["ComplexPortal%3ACPX-26499","U6atac small nuclear ribonucleoprotein complex"],["GO%3A0005691","U6atac snRNP"]]},{"id":"GO:0009521","l":"photosystem","na":2,"nb":6,"a":[["energy_complex/photosystem_i.html","photosystem I"],["energy_complex/photosystem_ii.html","photosystem II"]],"b":[["GO%3A0009521","photosystem"],["GO%3A0009522","photosystem I"],["GO%3A0009523","photosystem II"],["NCBIfam%3ANF012637","Photosystem II protein"],["Pfam%3APF00421","Photosystem II protein"],["InterPro%3AIPR036001","Photosystem antenna protein-like superfamily"]]},{"id":"GO:0009707","l":"chloroplast outer membrane","na":6,"nb":2,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_intermembrane_space.html","chloroplast intermembrane space"],["membrane_organelle/chloroplast_membrane.html","chloroplast membrane"],["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"],["other/toc_complex.html","Toc complex"]],"b":[["GO%3A0009707","chloroplast outer membrane"],["PANTHER%3APTHR47283","ENT-KAURENE OXIDASE, CHLOROPLASTIC"]]},{"id":"GO:0030140","l":"trans-Golgi network transport vesicle","na":2,"nb":6,"a":[["membrane_organelle/trans_golgi_network_transport_vesicle_membrane.html","trans-Golgi network transport vesicle membrane"],["other/clathrin_coat_of_trans_golgi_network_vesicle.html","clathrin coat of trans-Golgi network vesicle"]],"b":[["GO%3A0030140","trans-Golgi network transport vesicle"],["PANTHER%3APTHR16156","AFTIPHILIN A-RELATED"],["PANTHER%3APTHR15463","AP1 GAMMA SUBUNIT BINDING PROTEIN 1"],["PANTHER%3APTHR31975","BUD SITE SELECTION PROTEIN 7-RELATED"],["PANTHER%3APTHR47351","CHITIN BIOSYNTHESIS PROTEIN CHS5"],["PANTHER%3APTHR16528","GOLGI-ASSOCIATED PDZ AND COILED-COIL MOTIF-CONTAINING"]]},{"id":"GO:0031932","l":"TORC2 complex","na":2,"nb":6,"a":[["other/torc1_complex.html","TORC1 complex"],["other/torc2_complex.html","TORC2 complex"]],"b":[["ComplexPortal%3ACPX-4402","mTORC2 complex"],["ComplexPortal%3ACPX-4472","mTORC2 complex"],["ComplexPortal%3ACPX-1717","TORC2 complex"],["ComplexPortal%3ACPX-2269","TORC2 complex"],["ComplexPortal%3ACPX-26513","TORC2 serine/threonine protein kinase complex"],["GO%3A0031932","TORC2 complex"]]},{"id":"GO:0032580","l":"Golgi cisterna membrane","na":2,"nb":6,"a":[["membrane_organelle/golgi_cisterna.html","Golgi cisterna"],["membrane_organelle/golgi_cisterna_membrane.html","Golgi cisterna membrane"]],"b":[["GO%3A1990674","Golgi cis cisterna membrane"],["GO%3A0032580","Golgi cisterna membrane"],["GO%3A1990675","Golgi medial cisterna membrane"],["GO%3A1990676","Golgi trans cisterna membrane"],["NCBIfam%3ANF017491","Chondroitin N-acetylgalactosaminyltransferase"],["Pfam%3APF05679","Chondroitin N-acetylgalactosaminyltransferase"]]},{"id":"GO:0033565","l":"ESCRT-0 complex","na":2,"nb":6,"a":[["other/escrt_0_complex.html","ESCRT-0 complex"],["other/escrt_complex.html","ESCRT complex"]],"b":[["ComplexPortal%3ACPX-1622","ESCRT-0 complex"],["ComplexPortal%3ACPX-2452","ESCRT-0 complex"],["ComplexPortal%3ACPX-26631","ESCRT-0 complex"],["ComplexPortal%3ACPX-2825","ESCRT-0 complex, STAM variant"],["ComplexPortal%3ACPX-7143","ESCRT-0 complex, STAM2 variant"],["GO%3A0033565","ESCRT-0 complex"]]},{"id":"GO:0045334","l":"clathrin-coated endocytic vesicle","na":6,"nb":2,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle.html","clathrin-coated endocytic vesicle"],["membrane_organelle/clathrin_coated_endocytic_vesicle_lumen.html","clathrin-coated endocytic vesicle lumen"],["membrane_organelle/clathrin_coated_endocytic_vesicle_membrane.html","clathrin-coated endocytic vesicle membrane"],["membrane_organelle/endocytic_vesicle.html","endocytic vesicle"],["other/clathrin_coat_of_endocytic_vesicle.html","clathrin coat of endocytic vesicle"],["other/clathrin_coated_pit.html","clathrin-coated pit"]],"b":[["GO%3A0045334","clathrin-coated endocytic vesicle"],["GO%3A0045336","clathrin-coated phagocytic vesicle"]]},{"id":"GO:0071006","l":"U2-type catalytic step 1 spliceosome","na":2,"nb":6,"a":[["ribonucleoprotein/u2_type_catalytic_step_1_spliceosome.html","U2-type catalytic step 1 spliceosome"],["ribonucleoprotein/u2_type_catalytic_step_2_spliceosome.html","U2-type catalytic step 2 spliceosome"]],"b":[["ComplexPortal%3ACPX-26463","Major Spliceosomal C complex"],["ComplexPortal%3ACPX-26458","Major Spliceosomal Post-B-act complex"],["ComplexPortal%3ACPX-26441","Major Spliceosomal Pre-B-act complex"],["ComplexPortal%3ACPX-26465","Major Spliceosomal Pre-C*-I complex"],["ComplexPortal%3ACPX-26467","Major Spliceosomal Pre-C*-II complex"],["GO%3A0071006","U2-type catalytic step 1 spliceosome"]]},{"id":"GO:1990071","l":"TRAPPII protein complex","na":2,"nb":6,"a":[["other/trappi_protein_complex.html","TRAPPI protein complex"],["other/trappii_protein_complex.html","TRAPPII protein complex"]],"b":[["ComplexPortal%3ACPX-1939","TRAPP II complex"],["ComplexPortal%3ACPX-4764","TRAPP II complex"],["ComplexPortal%3ACPX-4749","TRAPP II complex, TRAPPC2 variant"],["ComplexPortal%3ACPX-6902","TRAPP II complex, TRAPPC2B variant"],["ComplexPortal%3ACPX-2271","TRAPPII complex"],["GO%3A1990071","TRAPPII protein complex"]]},{"id":"NCBITaxon:194439","l":"Chlorobaculum tepidum TLS","na":2,"nb":6,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["membrane_organelle/chlorosome.html","chlorosome"]],"b":[["Pfam%3APF02327","Bacteriochlorophyll A protein"],["Pfam%3APF27499","CsmB chlorosome envelope protein"],["Pfam%3APF28537","Probable trigger factor, FKBP-like domain"],["Pfam%3APF02043","Bacteriochlorophyll C binding protein"],["Pfam%3APF11098","Chlorosome envelope protein C"],["Pfam%3APF10643","Photosystem P840 reaction-centre cytochrome c-551"]]},{"id":"GO:0000221","l":"vacuolar proton-transporting V-type ATPase, V1 domain","na":2,"nb":5,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v1_domain.html","vacuolar proton-transporting V-type ATPase, V1 domain"]],"b":[["GO%3A0046612","lysosomal proton-transporting V-type ATPase, V1 domain"],["GO%3A0000221","vacuolar proton-transporting V-type ATPase, V1 domain"],["InterPro%3AIPR011987","ATPase, V1 complex, subunit H, C-terminal"],["Pfam%3APF11698","V-ATPase subunit H"],["Pfam%3APF03224","V-ATPase subunit H"]]},{"id":"GO:0005640","l":"nuclear outer membrane","na":5,"nb":2,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nuclear_envelope_lumen.html","nuclear envelope lumen"],["membrane_organelle/nuclear_inner_membrane.html","nuclear inner membrane"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"],["membrane_organelle/vacuolar_membrane.html","vacuolar membrane"]],"b":[["ComplexPortal%3ACPX-1381","NVJ1-VAC8 nucleus-vacuole junction complex"],["GO%3A0005640","nuclear outer membrane"]]},{"id":"GO:0009426","l":"bacterial-type flagellum basal body, distal rod","na":5,"nb":2,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"],["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"]],"b":[["GO%3A0009426","bacterial-type flagellum basal body, distal rod"],["NCBIfam%3ATIGR02488","flagellar basal-body rod protein FlgG"]]},{"id":"GO:0030669","l":"clathrin-coated endocytic vesicle membrane","na":5,"nb":2,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle.html","clathrin-coated endocytic vesicle"],["membrane_organelle/clathrin_coated_endocytic_vesicle_lumen.html","clathrin-coated endocytic vesicle lumen"],["membrane_organelle/clathrin_coated_endocytic_vesicle_membrane.html","clathrin-coated endocytic vesicle membrane"],["membrane_organelle/endocytic_vesicle_membrane.html","endocytic vesicle membrane"],["other/clathrin_coat_of_endocytic_vesicle.html","clathrin coat of endocytic vesicle"]],"b":[["GO%3A0030669","clathrin-coated endocytic vesicle membrane"],["GO%3A0030671","clathrin-coated phagocytic vesicle membrane"]]},{"id":"GO:0031207","l":"Sec62/Sec63 complex","na":2,"nb":5,"a":[["other/endoplasmic_reticulum_sec_complex.html","endoplasmic reticulum Sec complex"],["other/sec62_sec63_complex.html","Sec62/Sec63 complex"]],"b":[["ComplexPortal%3ACPX-26617","SEC62-SEC63 complex"],["ComplexPortal%3ACPX-26618","SEC62-SEC63 complex"],["ComplexPortal%3ACPX-3056","SEC62-SEC63 complex"],["GO%3A0031207","Sec62/Sec63 complex"],["Pfam%3APF09802","Preprotein translocase subunit Sec66"]]},{"id":"GO:0033180","l":"proton-transporting V-type ATPase, V1 domain","na":2,"nb":5,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_v1_domain.html","vacuolar proton-transporting V-type ATPase, V1 domain"],["other/rave_complex.html","RAVE complex"]],"b":[["GO%3A0000223","plasma membrane proton-transporting V-type ATPase, V1 domain"],["GO%3A0033180","proton-transporting V-type ATPase, V1 domain"],["GO%3A0000221","vacuolar proton-transporting V-type ATPase, V1 domain"],["Pfam%3APF03223","V-ATPase subunit C"],["InterPro%3AIPR036132","Vacuolar ATP synthase subunit C superfamily"]]},{"id":"GO:0042717","l":"plasma membrane-derived chromatophore membrane","na":5,"nb":2,"a":[["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/rc_lh1_pufx_core_complex.html","RC-LH1-PufX core complex"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"],["membrane_organelle/plasma_membrane_derived_chromatophore_membrane.html","plasma membrane-derived chromatophore membrane"]],"b":[["GO%3A0042717","plasma membrane-derived chromatophore membrane"],["GO%3A0031676","plasma membrane-derived thylakoid membrane"]]},{"id":"GO:0043593","l":"endospore coat","na":5,"nb":2,"a":[["spore/endospore_coat.html","endospore coat"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"],["spore/exosporium.html","exosporium"],["spore/outer_endospore_membrane.html","outer endospore membrane"],["spore/spore_wall.html","spore wall"]],"b":[["GO%3A0043593","endospore coat"],["NCBIfam%3ANF022572","CotD family spore coat protein"]]},{"id":"GO:0044222","l":"anammoxosome","na":2,"nb":5,"a":[["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"]],"b":[["GO%3A0044222","anammoxosome"],["NCBIfam%3ANF052343","hydrazine dehydrogenase"],["NCBIfam%3ANF052339","hydrazine synthase subunit alpha"],["NCBIfam%3ANF052340","hydrazine synthase subunit beta"],["NCBIfam%3ANF052341","hydrazine synthase subunit gamma"]]},{"id":"GO:0110146","l":"magnetosome membrane","na":2,"nb":5,"a":[["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]],"b":[["GO%3A0110146","magnetosome membrane"],["NCBIfam%3ANF040960","magnetosome formation protease MamE"],["NCBIfam%3ANF040959","magnetosome protein MamA"],["NCBIfam%3ANF040961","magnetosome protein MamO"],["NCBIfam%3ANF040966","magnetosome protein MamQ"]]},{"id":"GO:1990716","l":"axonemal central apparatus","na":5,"nb":2,"a":[["cytoskeleton/axonemal_central_apparatus.html","axonemal central apparatus"],["cytoskeleton/axonemal_central_bridge.html","axonemal central bridge"],["cytoskeleton/axonemal_central_pair.html","axonemal central pair"],["cytoskeleton/axonemal_central_pair_projection.html","axonemal central pair projection"],["cytoskeleton/axoneme.html","axoneme"]],"b":[["GO%3A1990716","axonemal central apparatus"],["PANTHER%3APTHR21963","PF6"]]},{"id":"UniProt:P27434","l":"","na":2,"nb":5,"a":[["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/elongasome.html","elongasome"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["NCBIfam%3ANF008109","cytoskeleton protein RodZ"],["InterPro%3AIPR025194","Cytoskeleton protein RodZ-like, C-terminal domain"],["Pfam%3APF13413","Helix-turn-helix domain"],["Pfam%3APF13464","RodZ C-terminal domain"]]},{"id":"GO:0030906","l":"retromer, cargo-selective complex","na":2,"nb":4,"a":[["other/retromer_cargo_selective_complex.html","retromer, cargo-selective complex"],["other/retromer_complex.html","retromer complex"]],"b":[["ComplexPortal%3ACPX-7842","Retromer complex, VPS26A variant"],["ComplexPortal%3ACPX-7843","Retromer complex, VPS26B variant"],["GO%3A0030906","retromer, cargo-selective complex"],["Pfam%3APF03635","Vacuolar protein sorting-associated protein 35"]]},{"id":"GO:0031970","l":"organelle envelope lumen","na":2,"nb":4,"a":[["membrane_organelle/mitochondrial_intermembrane_space.html","mitochondrial intermembrane space"],["membrane_organelle/nuclear_envelope_lumen.html","nuclear envelope lumen"]],"b":[["GO%3A0005758","mitochondrial intermembrane space"],["GO%3A0005641","nuclear envelope lumen"],["GO%3A0031970","organelle envelope lumen"],["GO%3A0009529","plastid intermembrane space"]]},{"id":"GO:0097590","l":"archaeal-type flagellum-dependent cell motility","na":2,"nb":4,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"]],"b":[["GO%3A0097590","archaeal-type flagellum-dependent cell motility"],["NCBIfam%3ANF052589","archaellum protein ArlH"],["NCBIfam%3ANF052590","archaellum stator protein ArlF"],["NCBIfam%3ANF052591","archaellum stator protein ArlG"]]},{"id":"GO:0120101","l":"bacterial-type flagellum stator complex","na":4,"nb":2,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"]],"b":[["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["GO%3A0120101","bacterial-type flagellum stator complex"]]},{"id":"NCBITaxon:32053","l":"Thermostichus vulcanus","na":2,"nb":4,"a":[["energy_complex/photosystem_ii.html","photosystem II"],["energy_complex/phycobilisome.html","phycobilisome"]],"b":[["Pfam%3APF14495","Cytochrome c-550 domain"],["Pfam%3APF00283","Cytochrome b559, alpha (gene psbE) and beta (gene psbF)subunits"],["Pfam%3APF00284","Lumenal portion of Cytochrome b559, alpha (gene psbE) subunit"],["PROSITE%3APS00537","Cytochrome b559 subunits heme-binding site signature"]]},{"id":"Pfam:PF00741","l":"Gas vesicle protein","na":2,"nb":4,"a":[["inclusion/gas_vesicle.html","gas vesicle"],["inclusion/gas_vesicle_shell.html","gas vesicle shell"]],"b":[["Pfam%3APF05121","Gas vesicle protein K"],["Pfam%3APF00741","Gas vesicle protein"],["PROSITE%3APS00234","Gas vesicles protein GVPa signature 1"],["PROSITE%3APS00669","Gas vesicles protein GVPa signature 2"]]},{"id":"GO:0000220","l":"vacuolar proton-transporting V-type ATPase, V0 domain","na":3,"nb":2,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v0_domain.html","vacuolar proton-transporting V-type ATPase, V0 domain"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v1_domain.html","vacuolar proton-transporting V-type ATPase, V1 domain"]],"b":[["GO%3A0046610","lysosomal proton-transporting V-type ATPase, V0 domain"],["GO%3A0000220","vacuolar proton-transporting V-type ATPase, V0 domain"]]},{"id":"GO:0005934","l":"cellular bud tip","na":2,"nb":3,"a":[["other/cellular_bud.html","cellular bud"],["other/cellular_bud_tip.html","cellular bud tip"]],"b":[["ComplexPortal%3ACPX-1684","CBK1-MOB2 kinase complex"],["ComplexPortal%3ACPX-36","Kelch-containing Formin Regulatory Complex"],["GO%3A0005934","cellular bud tip"]]},{"id":"GO:0020022","l":"acidocalcisome","na":3,"nb":2,"a":[["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"]],"b":[["GO%3A0020022","acidocalcisome"],["GO%3A0106117","acidocalcisome organization"]]},{"id":"GO:0022624","l":"proteasome accessory complex","na":2,"nb":3,"a":[["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"]],"b":[["ComplexPortal%3ACPX-8962","19S proteasome regulatory complex"],["ComplexPortal%3ACPX-8964","19S proteasome regulatory complex"],["GO%3A0022624","proteasome accessory complex"]]},{"id":"GO:0031905","l":"early endosome lumen","na":3,"nb":2,"a":[["membrane_organelle/early_endosome.html","early endosome"],["membrane_organelle/early_endosome_lumen.html","early endosome lumen"],["membrane_organelle/early_endosome_membrane.html","early endosome membrane"]],"b":[["ComplexPortal%3ACPX-1059","Sorf-1-Sorf-2 complex"],["GO%3A0031905","early endosome lumen"]]},{"id":"GO:0031906","l":"late endosome lumen","na":2,"nb":3,"a":[["membrane_organelle/late_endosome_lumen.html","late endosome lumen"],["membrane_organelle/late_endosome_membrane.html","late endosome membrane"]],"b":[["ComplexPortal%3ACPX-1059","Sorf-1-Sorf-2 complex"],["GO%3A0031906","late endosome lumen"],["GO%3A0097486","multivesicular body lumen"]]},{"id":"GO:0034693","l":"U11/U12 snRNP","na":3,"nb":2,"a":[["ribonucleoprotein/u11_u12_snrnp.html","U11/U12 snRNP"],["ribonucleoprotein/u12_type_precatalytic_spliceosome.html","U12-type precatalytic spliceosome"],["ribonucleoprotein/u12_type_prespliceosome.html","U12-type prespliceosome"]],"b":[["ComplexPortal%3ACPX-26489","U11/U12 di-small nuclear ribonucleoprotein complex"],["GO%3A0034693","U11/U12 snRNP"]]},{"id":"GO:0042646","l":"plastid nucleoid","na":2,"nb":3,"a":[["nucleoid/chloroplast_nucleoid.html","chloroplast nucleoid"],["nucleoid/plastid_nucleoid.html","plastid nucleoid"]],"b":[["GO%3A0042644","chloroplast nucleoid"],["GO%3A0042646","plastid nucleoid"],["GO%3A0042647","proplastid nucleoid"]]},{"id":"GO:0071001","l":"U4/U6 snRNP","na":2,"nb":3,"a":[["ribonucleoprotein/u4_u6_snrnp.html","U4/U6 snRNP"],["ribonucleoprotein/u4_u6_x_u5_tri_snrnp_complex.html","U4/U6 x U5 tri-snRNP complex"]],"b":[["ComplexPortal%3ACPX-26418","U4/U6 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-32","U4/U6 small nuclear ribonucleoprotein complex"],["GO%3A0071001","U4/U6 snRNP"]]},{"id":"GO:0071010","l":"prespliceosome","na":2,"nb":3,"a":[["ribonucleoprotein/u12_type_prespliceosome.html","U12-type prespliceosome"],["ribonucleoprotein/u2_type_prespliceosome.html","U2-type prespliceosome"]],"b":[["GO%3A0071010","prespliceosome"],["GO%3A0071015","U12-type prespliceosome"],["GO%3A0071004","U2-type prespliceosome"]]},{"id":"GO:0120107","l":"bacterial-type flagellum rotor complex","na":2,"nb":3,"a":[["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"]],"b":[["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0120107","bacterial-type flagellum rotor complex"]]},{"id":"NCBITaxon:174633","l":"","na":2,"nb":3,"a":[["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"]],"b":[["Pfam%3APF22142","Hydroxylamine oxidoreductase, C-terminal domain"],["Pfam%3APF18582","Hydrazine synthase alpha subunit middle domain"],["Pfam%3APF21783","YNCE-like beta-propeller"]]},{"id":"NCBITaxon:243231","l":"Geobacter sulfurreducens PCA","na":3,"nb":2,"a":[["appendage/omce_cytochrome_nanowire.html","OmcE cytochrome nanowire"],["appendage/omcs_cytochrome_nanowire.html","OmcS cytochrome nanowire"],["appendage/omcz_cytochrome_nanowire.html","OmcZ cytochrome nanowire"]],"b":[["Pfam%3APF01930","Domain of unknown function DUF83"],["Pfam%3APF13435","Cytochrome c554 and c-prime"]]},{"id":"NCBITaxon:342108","l":"","na":2,"nb":3,"a":[["cytoskeleton/mamk_filament.html","MamK filament"],["membrane_organelle/magnetosome.html","magnetosome"]],"b":[["Pfam%3APF08269","Cache domain"],["Pfam%3APF08849","BrxA"],["Pfam%3APF04011","LemA family"]]},{"id":"NCBITaxon:4922","l":"Komagataella pastoris","na":2,"nb":3,"a":[["membrane_organelle/cis_golgi_network.html","cis-Golgi network"],["membrane_organelle/cis_golgi_network_membrane.html","cis-Golgi network membrane"]],"b":[["Pfam%3APF26001","Peroxin 8 protein-like, N-terminal domain"],["Pfam%3APF27812","PEX8 central TPR-like domain"],["TED%3AAF-A0A1B2J8F2-F1-model_v4_TED02","TED novel fold AF-A0A1B2J8F2-F1-model_v4_TED02"]]},{"id":"GO:0000817","l":"COMA complex","na":2,"nb":2,"a":[["other/coma_complex.html","COMA complex"],["other/kinetochore.html","kinetochore"]],"b":[["ComplexPortal%3ACPX-1187","COMA complex"],["GO%3A0000817","COMA complex"]]},{"id":"GO:0005690","l":"U4atac snRNP","na":2,"nb":2,"a":[["ribonucleoprotein/u4atac_snrnp.html","U4atac snRNP"],["ribonucleoprotein/u4atac_u6atac_snrnp.html","U4atac/U6atac snRNP"]],"b":[["ComplexPortal%3ACPX-26495","U4atac small nuclear ribonucleoprotein complex"],["GO%3A0005690","U4atac snRNP"]]},{"id":"GO:0005931","l":"axonemal nexin link","na":2,"nb":2,"a":[["cytoskeleton/axonemal_nexin_link.html","axonemal nexin link"],["cytoskeleton/axoneme.html","axoneme"]],"b":[["ComplexPortal%3ACPX-8086","Nexin-dynein regulatory complex"],["GO%3A0005931","axonemal nexin link"]]},{"id":"GO:0033106","l":"cis-Golgi network membrane","na":2,"nb":2,"a":[["membrane_organelle/cis_golgi_network.html","cis-Golgi network"],["membrane_organelle/cis_golgi_network_membrane.html","cis-Golgi network membrane"]],"b":[["ComplexPortal%3ACPX-1125","BUG1-GRH1 complex"],["GO%3A0033106","cis-Golgi network membrane"]]},{"id":"GO:0071002","l":"U4atac/U6atac snRNP","na":2,"nb":2,"a":[["ribonucleoprotein/u4atac_u6atac_snrnp.html","U4atac/U6atac snRNP"],["ribonucleoprotein/u4atac_u6atac_x_u5_tri_snrnp_complex.html","U4atac/U6atac x U5 tri-snRNP complex"]],"b":[["ComplexPortal%3ACPX-26500","U4atac/U6atac small nuclear ribonucleoprotein complex"],["GO%3A0071002","U4atac/U6atac snRNP"]]},{"id":"GO:0071009","l":"U4atac/U6atac x U5 tri-snRNP complex","na":2,"nb":2,"a":[["ribonucleoprotein/u12_type_precatalytic_spliceosome.html","U12-type precatalytic spliceosome"],["ribonucleoprotein/u4atac_u6atac_x_u5_tri_snrnp_complex.html","U4atac/U6atac x U5 tri-snRNP complex"]],"b":[["ComplexPortal%3ACPX-26502","U4atac/U6atac.U5 small nuclear ribonucleoprotein complex"],["GO%3A0071009","U4atac/U6atac x U5 tri-snRNP complex"]]},{"id":"GO:0071016","l":"U12-type precatalytic spliceosome","na":2,"nb":2,"a":[["ribonucleoprotein/u12_type_catalytic_step_1_spliceosome.html","U12-type catalytic step 1 spliceosome"],["ribonucleoprotein/u12_type_precatalytic_spliceosome.html","U12-type precatalytic spliceosome"]],"b":[["ComplexPortal%3ACPX-26506","Minor Spliceosomal Pre-B complex"],["GO%3A0071016","U12-type precatalytic spliceosome"]]},{"id":"GO:0090382","l":"phagosome maturation","na":2,"nb":2,"a":[["membrane_organelle/phagocytic_vesicle.html","phagocytic vesicle"],["membrane_organelle/phagocytic_vesicle_membrane.html","phagocytic vesicle membrane"]],"b":[["GO%3A0090382","phagosome maturation"],["GO%3A0090386","phagosome maturation involved in apoptotic cell clearance"]]},{"id":"GO:0120102","l":"bacterial-type flagellum secretion apparatus","na":2,"nb":2,"a":[["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"],["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["ComplexPortal%3ACPX-5885","Flagellar export complex"],["GO%3A0120102","bacterial-type flagellum secretion apparatus"]]},{"id":"GO:1990621","l":"ESCRT IV complex","na":2,"nb":2,"a":[["other/escrt_complex.html","ESCRT complex"],["other/escrt_iv_complex.html","ESCRT IV complex"]],"b":[["ComplexPortal%3ACPX-2462","VPS4-VTA1 compex"],["GO%3A1990621","ESCRT IV complex"]]},{"id":"InterPro:IPR006300","l":"","na":2,"nb":2,"a":[["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"]],"b":[["Pfam%3APF00460","Flagella basal body rod protein"],["PROSITE%3APS00588","Flagella basal body rod proteins signature"]]},{"id":"InterPro:IPR012834","l":"","na":2,"nb":2,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"]],"b":[["Pfam%3APF06429","Flagellar basal body rod FlgEFG protein C-terminal"],["PROSITE%3APS00588","Flagella basal body rod proteins signature"]]},{"id":"InterPro:IPR028245","l":"","na":2,"nb":2,"a":[["cytoskeleton/eisosome_filament.html","eisosome filament"],["other/eisosome.html","eisosome"]],"b":[["PANTHER%3APTHR31962","SPHINGOLIPID LONG CHAIN BASE-RESPONSIVE PROTEIN PIL1"],["Pfam%3APF13805","Eisosome component PIL1"]]},{"id":"Pfam:PF01304","l":"Gas vesicles protein GVPc repeated domain","na":2,"nb":2,"a":[["inclusion/gas_vesicle.html","gas vesicle"],["inclusion/gas_vesicle_shell.html","gas vesicle shell"]],"b":[["PROSITE%3APS00235","Gas vesicles protein GVPc repeated domain signature"],["Pfam%3APF01304","Gas vesicles protein GVPc repeated domain"]]},{"id":"UniProt:P06179","l":"","na":2,"nb":2,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"]],"b":[["Pfam%3APF08884","Flagellin D3 domain"],["Pfam%3APF21504","Flagellin, barrel domain"]]},{"id":"GO:0005576","l":"extracellular region","na":1,"nb":472,"a":[["envelope/periplasmic_space.html","periplasmic space"]],"b":[["ComplexPortal%3ACPX-4984","Complement C1 complex, C1ra-C1sa variant"],["ComplexPortal%3ACPX-4985","Complement C1 complex, C1rb-C1sb variant"],["ComplexPortal%3ACPX-1920","Complement C1 complex"],["ComplexPortal%3ACPX-1919","Complement component C1q complex"],["ComplexPortal%3ACPX-4981","Complement component C1q complex"],["ComplexPortal%3ACPX-7321","Crotoxin complex, aCA1/2/4-bCA1-CBa variant"]]},{"id":"GO:0003735","l":"structural constituent of ribosome","na":1,"nb":466,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["GO%3A0003735","structural constituent of ribosome"],["NCBIfam%3ANF004951","30S ribosomal protein S1"],["NCBIfam%3ANF004954","30S ribosomal protein S1"],["NCBIfam%3ANF004955","30S ribosomal protein S1"],["NCBIfam%3ATIGR00717","30S ribosomal protein S1"],["NCBIfam%3ANF001861","30S ribosomal protein S10"]]},{"id":"GO:0005829","l":"cytosol","na":1,"nb":457,"a":[["other/chaperonin_containing_t_complex.html","chaperonin-containing T-complex"]],"b":[["ComplexPortal%3ACPX-9082","19S-20S-PA28-alphabeta hybrid proteasome complex"],["ComplexPortal%3ACPX-9085","19S-20S-PA28-gamma hybrid proteasome complex"],["ComplexPortal%3ACPX-26562","Anamorsin-NDOR1 complex"],["ComplexPortal%3ACPX-1848","ATG12-ATG5 complex"],["ComplexPortal%3ACPX-3864","ATG12-ATG5 complex"],["ComplexPortal%3ACPX-132","BAT3 complex"]]},{"id":"GO:0006412","l":"translation","na":1,"nb":455,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["GO%3A0002181","cytoplasmic translation"],["GO%3A0032543","mitochondrial translation"],["GO%3A0032544","plastid translation"],["GO%3A0140241","translation at synapse"],["GO%3A0006412","translation"],["Reactome%3AR-HSA-72766","Translation"]]},{"id":"GO:0071944","l":"cell periphery","na":1,"nb":440,"a":[["envelope/plasma_membrane.html","plasma membrane"]],"b":[["GO%3A0071944","cell periphery"],["PANTHER%3APTHR31468","1,3-BETA-GLUCANOSYLTRANSFERASE GAS1"],["PANTHER%3APTHR28145","12 KDA HEAT SHOCK PROTEIN"],["PANTHER%3APTHR42755","3-DEOXY-MANNO-OCTULOSONATE CYTIDYLYLTRANSFERASE"],["PANTHER%3APTHR46574","43 KDA RECEPTOR-ASSOCIATED PROTEIN OF THE SYNAPSE"],["PANTHER%3APTHR15182","A-KINASE ANCHOR PROTEIN 5-RELATED"]]},{"id":"GO:0055085","l":"transmembrane transport","na":1,"nb":439,"a":[["envelope/plasma_membrane.html","plasma membrane"]],"b":[["ComplexPortal%3ACPX-271","5-hydroxytryptamine-3A/B receptor complex"],["ComplexPortal%3ACPX-275","5-hydroxytryptamine-3A/B receptor complex"],["ComplexPortal%3ACPX-277","5-hydroxytryptamine-3A/B receptor complex"],["ComplexPortal%3ACPX-276","5-hydroxytryptamine-3A/C receptor complex"],["ComplexPortal%3ACPX-272","5-hydroxytryptamine-3A/D receptor complex"],["ComplexPortal%3ACPX-273","5-hydroxytryptamine-3A/E receptor complex"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":1,"nb":396,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29033","requires iron(2+)"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.11","glucoside 3-dehydrogenase (cytochrome c)"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.2.3","L-lactate dehydrogenase (cytochrome)"],["EC%3A1.1.2.4","D-lactate dehydrogenase (cytochrome)"]]},{"id":"GO:0016887","l":"ATP hydrolysis activity","na":1,"nb":375,"a":[["other/escrt_iv_complex.html","ESCRT IV complex"]],"b":[["RHEA%3A13065","ATP + H2O = ADP + phosphate + H(+)"],["ComplexPortal%3ACPX-2262","26S proteasome complex"],["ComplexPortal%3ACPX-5993","26S proteasome complex"],["ComplexPortal%3ACPX-4314","Arabinose ABC transporter complex"],["ComplexPortal%3ACPX-6307","ATP10A-CDC50A P4-ATPase complex"],["ComplexPortal%3ACPX-6308","ATP10B-CDC50A P4-ATPase complex"]]},{"id":"GO:1902494","l":"catalytic complex","na":1,"nb":320,"a":[["other/exodeoxyribonuclease_v_complex.html","exodeoxyribonuclease V complex"]],"b":[["ComplexPortal%3ACPX-2581","2-(3-amino-3-carboxypropyl)histidine synthase complex"],["ComplexPortal%3ACPX-7849","2-(3-amino-3-carboxypropyl)histidine synthase complex"],["ComplexPortal%3ACPX-7850","2-(3-amino-3-carboxypropyl)histidine synthase complex"],["ComplexPortal%3ACPX-2833","Camalexin biosynthetic metabolon complex"],["ComplexPortal%3ACPX-2345","Cholera toxin"],["ComplexPortal%3ACPX-944","DNA (cytosine-5)-methyltransferase 3A complex"]]},{"id":"GO:0016192","l":"vesicle-mediated transport","na":1,"nb":172,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"]],"b":[["ComplexPortal%3ACPX-2510","Adaptor complex AP-1"],["ComplexPortal%3ACPX-26626","Adaptor complex AP-2"],["ComplexPortal%3ACPX-2725","Adaptor complex AP-2"],["ComplexPortal%3ACPX-26627","Adaptor complex AP-3"],["ComplexPortal%3ACPX-2727","Adaptor complex AP-3"],["ComplexPortal%3ACPX-5149","AP-2 Adaptor complex, alpha1 variant"]]},{"id":"GO:0003887","l":"DNA-directed DNA polymerase activity","na":1,"nb":153,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"]],"b":[["EC%3A2.7.7.7","DNA-directed DNA polymerase"],["ComplexPortal%3ACPX-1556","CMG-Pol epsilon complex"],["ComplexPortal%3ACPX-2097","DNA polymerase delta complex"],["ComplexPortal%3ACPX-2098","DNA polymerase delta complex"],["ComplexPortal%3ACPX-2099","DNA polymerase delta complex"],["ComplexPortal%3ACPX-2100","DNA polymerase delta complex"]]},{"id":"GO:0006364","l":"rRNA processing","na":1,"nb":139,"a":[["other/nucleolus.html","nucleolus"]],"b":[["ComplexPortal%3ACPX-44","LSM2-8 complex"],["ComplexPortal%3ACPX-885","MTERF4-NSUN4 mitochondrial ribosomal assembly complex"],["ComplexPortal%3ACPX-1862","PeBoW complex"],["ComplexPortal%3ACPX-2846","PeBoW complex"],["GO%3A1901259","chloroplast rRNA processing"],["GO%3A0000450","cleavage of bicistronic rRNA transcript (SSU-rRNA, LSU-rRNA)"]]},{"id":"GO:0006396","l":"RNA processing","na":1,"nb":131,"a":[["ribonucleoprotein/exosome_rnase_complex.html","exosome (RNase complex)"]],"b":[["ComplexPortal%3ACPX-603","Cytoplasmic exosome complex, DIS3 variant"],["ComplexPortal%3ACPX-600","Cytoplasmic exosome complex, DIS3L-EXOSC10 variant"],["ComplexPortal%3ACPX-601","Cytoplasmic exosome complex, Dis3l-Exosc10 variant"],["ComplexPortal%3ACPX-592","Cytoplasmic exosome complex, DIS3L variant"],["ComplexPortal%3ACPX-596","Cytoplasmic exosome complex, Dis3l variant"],["ComplexPortal%3ACPX-593","Exosome complex, DIS3 variant"]]},{"id":"GO:0006457","l":"protein folding","na":1,"nb":129,"a":[["other/chaperonin_containing_t_complex.html","chaperonin-containing T-complex"]],"b":[["ComplexPortal%3ACPX-2156","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-2772","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-6030","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-2113","GroEL-GroES complex"],["ComplexPortal%3ACPX-1671","Prefoldin co-chaperone complex"],["ComplexPortal%3ACPX-2389","Prefoldin co-chaperone complex"]]},{"id":"GO:0003697","l":"single-stranded DNA binding","na":1,"nb":119,"a":[["other/single_stranded_dna_binding_protein_complex.html","single-stranded DNA-binding protein complex"]],"b":[["ComplexPortal%3ACPX-2363","BCDX2 complex"],["ComplexPortal%3ACPX-1005","Cascade complex"],["ComplexPortal%3ACPX-2671","CMG helicase complex"],["ComplexPortal%3ACPX-297","CMG helicase complex"],["ComplexPortal%3ACPX-4526","CMG helicase complex"],["ComplexPortal%3ACPX-4541","CMG helicase complex"]]},{"id":"GO:1990234","l":"transferase complex","na":1,"nb":109,"a":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]],"b":[["ComplexPortal%3ACPX-1848","ATG12-ATG5 complex"],["ComplexPortal%3ACPX-3864","ATG12-ATG5 complex"],["ComplexPortal%3ACPX-356","ATG5-ATG12 complex"],["ComplexPortal%3ACPX-357","Atg5-Atg12 complex"],["ComplexPortal%3ACPX-6231","Coagulation factor XIIIa complex"],["ComplexPortal%3ACPX-2634","Dha Kinase"]]},{"id":"GO:0005694","l":"chromosome","na":1,"nb":101,"a":[["other/nuclear_chromosome.html","nuclear chromosome"]],"b":[["ComplexPortal%3ACPX-26662","SPO11 DNA endo-reduplication complex"],["ComplexPortal%3ACPX-26657","SPO11 meiotic recombination initiation complex"],["ComplexPortal%3ACPX-26658","SPO11 meiotic recombination initiation complex"],["ComplexPortal%3ACPX-26659","SPO11 meiotic recombination initiation complex"],["ComplexPortal%3ACPX-26664","SPO11, meiotic recombination initiation complex"],["ComplexPortal%3ACPX-3388","Synaptonemal complex"]]},{"id":"GO:0015986","l":"proton motive force-driven ATP synthesis","na":1,"nb":96,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-25764","Mitochondrial proton translocating ATP synthase complex"],["ComplexPortal%3ACPX-3281","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-6151","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-8618","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-8619","Mitochondrial proton-transporting ATP synthase complex, testis-specific variant"],["GO%3A0015986","proton motive force-driven ATP synthesis"]]},{"id":"NCBITaxon:2","l":"Bacteria","na":89,"nb":1,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2","Bacteria orthologous groups (OrthoDB)"]]},{"id":"GO:0051301","l":"cell division","na":1,"nb":86,"a":[["division_machinery/divisome_complex.html","divisome complex"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["ComplexPortal%3ACPX-5782","Tol-Pal cell envelope complex"],["GO%3A0090510","anticlinal cell division"],["GO%3A0008356","asymmetric cell division"],["GO%3A0007114","cell budding"],["GO%3A0051301","cell division"]]},{"id":"GO:0030254","l":"protein secretion by the type III secretion system","na":1,"nb":85,"a":[["secretion_system/type_iii_protein_secretion_system_complex.html","type III protein secretion system complex"]],"b":[["ComplexPortal%3ACPX-5885","Flagellar export complex"],["GO%3A0030254","protein secretion by the type III secretion system"],["NCBIfam%3ANF041307","AvrBs1/Avra family type III secretion system effector"],["NCBIfam%3ATIGR02501","EscE/YscE/SsaE family type III secretion system needle protein co-chaperone"],["NCBIfam%3ANF005535","flagellar protein export ATPase FliI"],["NCBIfam%3ANF006290","flagellar protein export ATPase FliI"]]},{"id":"GO:0006401","l":"RNA catabolic process","na":1,"nb":76,"a":[["ribonucleoprotein/exosome_rnase_complex.html","exosome (RNase complex)"]],"b":[["ComplexPortal%3ACPX-603","Cytoplasmic exosome complex, DIS3 variant"],["ComplexPortal%3ACPX-600","Cytoplasmic exosome complex, DIS3L-EXOSC10 variant"],["ComplexPortal%3ACPX-601","Cytoplasmic exosome complex, Dis3l-Exosc10 variant"],["ComplexPortal%3ACPX-592","Cytoplasmic exosome complex, DIS3L variant"],["ComplexPortal%3ACPX-596","Cytoplasmic exosome complex, Dis3l variant"],["ComplexPortal%3ACPX-2596","Cytoplasmic exosome"]]},{"id":"GO:0048193","l":"Golgi vesicle transport","na":1,"nb":70,"a":[["other/cog_complex.html","COG complex"]],"b":[["GO%3A0034498","early endosome to Golgi transport"],["GO%3A0006888","endoplasmic reticulum to Golgi vesicle-mediated transport"],["GO%3A0048193","Golgi vesicle transport"],["GO%3A0006891","intra-Golgi vesicle-mediated transport"],["GO%3A0034499","late endosome to Golgi transport"],["GO%3A0006892","post-Golgi vesicle-mediated transport"]]},{"id":"CHEBI:15422","l":"ATP","na":1,"nb":68,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15422","requires ATP"],["ARO%3A3002628","aad(6)"],["ARO%3A3002601","aadA"],["ARO%3A3004692","aadA10"],["ARO%3A3002611","aadA11"],["ARO%3A3002612","aadA12"]]},{"id":"NCBITaxon:246196","l":"Mycolicibacterium smegmatis (strain ATCC 700084 / mc(2)155)","na":1,"nb":66,"a":[["secretion_system/esx_3_type_vii_secretion_system_membrane_complex.html","ESX-3 type VII secretion system membrane complex"]],"b":[["Pfam%3APF12806","Acetyl-CoA dehydrogenase C-terminal like"],["Pfam%3APF12897","Aspartate amino-transferase"],["Pfam%3APF05088","Bacterial NAD-glutamate dehydrogenase, catalytic domain"],["Pfam%3APF26519","Biotin synthase auxiliary protein family"],["Pfam%3APF21095","CarD, C-terminal domain"],["Pfam%3APF24607","Arabinofuranosyltransferase D, third carbohydrate binding module"]]},{"id":"GO:0006935","l":"chemotaxis","na":1,"nb":64,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009454","aerotaxis"]]},{"id":"GO:0031012","l":"extracellular matrix","na":1,"nb":64,"a":[["other/holdfast.html","holdfast"]],"b":[["ComplexPortal%3ACPX-461","155 kDa platelet multimerin complex"],["ComplexPortal%3ACPX-960","Collagen type II trimer"],["ComplexPortal%3ACPX-1749","Collagen type X trimer"],["ComplexPortal%3ACPX-2971","Collagen type X trimer"],["ComplexPortal%3ACPX-1750","Collagen type XI trimer variant 1"],["ComplexPortal%3ACPX-2975","Collagen type XI trimer variant 1"]]},{"id":"GO:1990204","l":"oxidoreductase complex","na":1,"nb":63,"a":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"]],"b":[["ComplexPortal%3ACPX-1020","BLI-3/DOXA-1/TSP-15 dual oxidase complex"],["ComplexPortal%3ACPX-6573","L-lactate dehydrogenase A complex"],["ComplexPortal%3ACPX-6599","L-lactate dehydrogenase B complex"],["ComplexPortal%3ACPX-6602","L-lactate dehydrogenase C complex"],["ComplexPortal%3ACPX-6598","L-lactate dehydrogenase complex, A1B3 variant"],["ComplexPortal%3ACPX-6594","L-lactate dehydrogenase complex, A2B2 variant"]]},{"id":"GO:0015629","l":"actin cytoskeleton","na":1,"nb":61,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"]],"b":[["ComplexPortal%3ACPX-2586","Actin-related protein 2/3 complex, ARPC1A-ACTR3-ARPC5 variant"],["ComplexPortal%3ACPX-2592","Actin-related protein 2/3 complex, ARPC1A-ACTR3-ARPC5L variant"],["ComplexPortal%3ACPX-2490","Actin-related protein 2/3 complex, ARPC1A-ACTR3B-ARPC5 variant"],["ComplexPortal%3ACPX-2579","Actin-related protein 2/3 complex, ARPC1B-ACTR3-ARPC5 variant"],["ComplexPortal%3ACPX-2663","Actin-related protein 2/3 complex, ARPC1B-ACTR3-ARPC5L variant"],["ComplexPortal%3ACPX-2583","Actin-related protein 2/3 complex, ARPC1B-ACTR3B-ARPC5 variant"]]},{"id":"InterPro:IPR001460","l":"Penicillin-binding protein, transpeptidase","na":1,"nb":61,"a":[["envelope/peptidoglycan_based_cell_wall.html","peptidoglycan-based cell wall"]],"b":[["GO%3A0009274","peptidoglycan-based cell wall"],["GO%3A0008800","beta-lactamase activity"],["GO%3A0008658","penicillin binding"],["GO%3A0008955","peptidoglycan glycosyltransferase activity"],["GO%3A0071972","peptidoglycan L,D-transpeptidase activity"],["GO%3A0009002","serine-type D-Ala-D-Ala carboxypeptidase activity"]]},{"id":"NCBITaxon:1111708","l":"Synechocystis sp. (strain ATCC 27184 / PCC 6803 / Kazusa)","na":1,"nb":61,"a":[["energy_complex/phycobilisome.html","phycobilisome"]],"b":[["Pfam%3APF07698","7TM receptor with intracellular HD hydrolase"],["Pfam%3APF07697","7TM-HD extracellular"],["Pfam%3APF11266","Long-chain fatty aldehyde decarbonylase"],["Pfam%3APF21571","Arginine dihydrolase ArgZ-like, C-terminal, first region"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF17886","HSP20-like domain found in ArsA"]]},{"id":"GO:0016197","l":"endosomal transport","na":1,"nb":60,"a":[["membrane_organelle/endosome.html","endosome"]],"b":[["ComplexPortal%3ACPX-479","Bloc-1 complex"],["ComplexPortal%3ACPX-11549","Huntingtin-HAP40 endosomal complex"],["ComplexPortal%3ACPX-26674","Huntingtin-HAP40 endosomal complex"],["ComplexPortal%3ACPX-1059","Sorf-1-Sorf-2 complex"],["ComplexPortal%3ACPX-2562","WASH complex"],["ComplexPortal%3ACPX-1173","WASH complex, variant WASH2P/WASHC2A"]]},{"id":"GO:1990904","l":"ribonucleoprotein complex","na":1,"nb":58,"a":[["ribonucleoprotein/signal_recognition_particle.html","signal recognition particle"]],"b":[["ComplexPortal%3ACPX-10181","Vault ribonucleoprotein complex"],["GO%3A0070993","cytosolic translation preinitiation complex"],["GO%3A0071204","histone pre-mRNA 3'end processing complex"],["GO%3A0033620","Mei2 nuclear dot complex"],["GO%3A0180053","mitochondrial translation preinitiation complex"],["GO%3A0043614","multi-eIF complex"]]},{"id":"GO:0008137","l":"NADH dehydrogenase (ubiquinone) activity","na":1,"nb":53,"a":[["energy_complex/respiratory_chain_complex_i.html","respiratory chain complex I"]],"b":[["EC%3A7.1.1.2","NADH:ubiquinone reductase (H(+)-translocating)"],["RHEA%3A29091","a ubiquinone + NADH + 5 H(+)(in) = a ubiquinol + NAD(+) + 4 H(+)(out)"],["ComplexPortal%3ACPX-266","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-577","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-8628","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-8638","Mitochondrial respiratory chain complex I, testis-specific variant"]]},{"id":"GO:0007005","l":"mitochondrion organization","na":1,"nb":50,"a":[["other/mitochondrial_prohibitin_complex.html","mitochondrial prohibitin complex"]],"b":[["ComplexPortal%3ACPX-3196","ERMES complex"],["ComplexPortal%3ACPX-1703","Prohibitin complex"],["ComplexPortal%3ACPX-4114","Prohibitin complex"],["ComplexPortal%3ACPX-5741","Prohibitin complex"],["ComplexPortal%3ACPX-5743","Prohibitin complex"],["GO%3A0008637","apoptotic mitochondrial changes"]]},{"id":"NCBITaxon:2759","l":"Eukaryota","na":49,"nb":1,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"],["cytoskeleton/conoid.html","conoid"],["cytoskeleton/cytoophidium.html","cytoophidium"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2759","Eukaryota orthologous groups (OrthoDB)"]]},{"id":"GO:0006897","l":"endocytosis","na":1,"nb":44,"a":[["membrane_organelle/endocytic_vesicle.html","endocytic vesicle"]],"b":[["ComplexPortal%3ACPX-5322","Endosomal SNARE complex TLG2-VTI1-TLG1-SNC1"],["ComplexPortal%3ACPX-5321","Endosomal SNARE complex TLG2-VTI1-TLG1-SNC2"],["ComplexPortal%3ACPX-4024","MTM6-MTM9 myotubularin lipid phosphatase complex"],["ComplexPortal%3ACPX-1500","Myosin class I complex, MYO3 variant"],["ComplexPortal%3ACPX-1470","Myosin class I complex, MYO5 variant"],["ComplexPortal%3ACPX-426","PAN1 actin cytoskeleton-regulatory complex"]]},{"id":"GO:0042254","l":"ribosome biogenesis","na":1,"nb":44,"a":[["other/nucleolus.html","nucleolus"]],"b":[["ComplexPortal%3ACPX-8940","Ribosome biogenesis complex"],["GO%3A0042254","ribosome biogenesis"],["NCBIfam%3ANF012679","50S ribosomal protein L10"],["NCBIfam%3ANF016308","Gar1/Naf1 RNA binding region"],["NCBIfam%3ANF016057","nucleolar RNA-binding Nop10p family protein"],["NCBIfam%3ATIGR01575","ribosomal protein S18-alanine N-acetyltransferase"]]},{"id":"NCBITaxon:243277","l":"Vibrio cholerae serotype O1 (strain ATCC 39315 / El Tor Inaba N16961)","na":1,"nb":44,"a":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"]],"b":[["IDPO%3A0000011","disorder to order"],["IDPO%3A0000014","order to disorder"],["Pfam%3APF16671","Actin cross-linking domain"],["Pfam%3APF00842","Alanine racemase, C-terminal domain"],["Pfam%3APF06228","Haem utilisation ChuX/HutX"],["Pfam%3APF19425","Csd3 second domain"]]},{"id":"GO:0045271","l":"respiratory chain complex I","na":1,"nb":43,"a":[["energy_complex/respiratory_chain_complex_i.html","respiratory chain complex I"]],"b":[["ComplexPortal%3ACPX-266","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-577","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-8628","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-8638","Mitochondrial respiratory chain complex I, testis-specific variant"],["ComplexPortal%3ACPX-243","Respiratory chain complex I"],["GO%3A0045271","respiratory chain complex I"]]},{"id":"GO:0004129","l":"cytochrome-c oxidase activity","na":1,"nb":41,"a":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]],"b":[["EC%3A7.1.1.9","cytochrome-c oxidase"],["METPO%3A1007086","oxidase negative"],["METPO%3A1007085","oxidase positive"],["RHEA%3A11436","4 Fe(II)-[cytochrome c] + O2 + 8 H(+)(in) = 4 Fe(III)-[cytochrome c] + 2 H2O + 4 H(+)(out)"],["ComplexPortal%3ACPX-1721","Mitochondrial respiratory chain complex IV, COX5A variant"],["ComplexPortal%3ACPX-1722","Mitochondrial respiratory chain complex IV, COX5B variant"]]},{"id":"GO:0000045","l":"autophagosome assembly","na":1,"nb":40,"a":[["other/phagophore_assembly_site.html","phagophore assembly site"]],"b":[["ComplexPortal%3ACPX-3863","atg-5-atg-12-atg-16.1-atg-16.2 complex"],["ComplexPortal%3ACPX-3865","atg-5-atg-12-atg-16.1 complex"],["ComplexPortal%3ACPX-3866","atg-5-atg-12-atg-16.2 complex"],["ComplexPortal%3ACPX-2745","ATG1 protein kinase complex"],["ComplexPortal%3ACPX-1676","ATG1/ULK1 protein kinase complex"],["ComplexPortal%3ACPX-1849","ATG12-ATG5-ATG16 complex"]]},{"id":"GO:0019866","l":"organelle inner membrane","na":1,"nb":40,"a":[["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"]],"b":[["GO%3A0005743","mitochondrial inner membrane"],["GO%3A0005637","nuclear inner membrane"],["GO%3A0019866","organelle inner membrane"],["GO%3A0009528","plastid inner membrane"],["InterPro%3AIPR002361","Antenna complex, alpha subunit conserved site"],["InterPro%3AIPR010974","Phosphotransferase system, N-acetylglucosamine-specific IIBC component"]]},{"id":"GO:0036503","l":"ERAD pathway","na":1,"nb":39,"a":[["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"]],"b":[["ComplexPortal%3ACPX-6597","bZIP transcription factor complex, ATF6-XBP1"],["ComplexPortal%3ACPX-2946","CDC48-NPL4-UFD1 AAA ATPase complex"],["ComplexPortal%3ACPX-1323","CDC48-RAD23-UFD2 complex"],["ComplexPortal%3ACPX-2948","CUE1-UBC7 ubiquitin-conjugating enzyme complex"],["ComplexPortal%3ACPX-3074","Doa10 E3 ubiquitin ligase complex"],["ComplexPortal%3ACPX-7121","ERLIN1-ERLIN2 complex"]]},{"id":"NCBITaxon:2157","l":"Archaea","na":39,"nb":1,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2157","Archaea orthologous groups (OrthoDB)"]]},{"id":"CHEBI:17855","l":"triglyceride","na":1,"nb":34,"a":[["inclusion/lipid_droplet.html","lipid droplet"]],"b":[["EC%3A2.3.1.158","phospholipid:diacylglycerol acyltransferase"],["EC%3A2.3.1.77","triacylglycerol--sterol O-acyltransferase"],["EC%3A3.1.1.3","triacylglycerol lipase"],["EC%3A3.1.1.34","lipoprotein lipase"],["EC%3A3.1.1.79","hormone-sensitive lipase"],["RHEA%3A77987","9-hydroxy-octadecanoate + a triacylglycerol = 9-(acyloxy)-octadecanoate + a 1,3-diacylglycerol"]]},{"id":"GO:0030312","l":"external encapsulating structure","na":1,"nb":34,"a":[["envelope/glycocalyx.html","glycocalyx"]],"b":[["GO%3A0009279","cell outer membrane"],["GO%3A0005618","cell wall"],["GO%3A0140143","collagenous component of basement membrane"],["GO%3A0140152","collagenous component of interstitial matrix"],["GO%3A0042600","egg chorion"],["GO%3A0030312","external encapsulating structure"]]},{"id":"GO:0008608","l":"attachment of spindle microtubules to kinetochore","na":1,"nb":33,"a":[["other/dash_complex.html","DASH complex"]],"b":[["ComplexPortal%3ACPX-1156","Central kinetochore CTF19 complex"],["ComplexPortal%3ACPX-1187","COMA complex"],["ComplexPortal%3ACPX-1186","Kinetochore MIS12 complex"],["ComplexPortal%3ACPX-5643","Kinetochore MIS12 complex"],["ComplexPortal%3ACPX-5701","Kinetochore MIS12 complex"],["ComplexPortal%3ACPX-807","Kinetochore Mis12 complex"]]},{"id":"GO:0032040","l":"small-subunit processome","na":1,"nb":33,"a":[["other/nucleolus.html","nucleolus"]],"b":[["ComplexPortal%3ACPX-1604","Small ribosomal subunit processome"],["ComplexPortal%3ACPX-2511","Small ribosomal subunit processome"],["GO%3A0032040","small-subunit processome"],["NCBIfam%3ANF016770","Fcf1"],["InterPro%3AIPR013934","U3 small nucleolar RNA-associated protein 13, C-terminal"],["InterPro%3AIPR007319","WDR36/Utp21, C-terminal domain"]]},{"id":"GO:0006635","l":"fatty acid beta-oxidation","na":1,"nb":32,"a":[["membrane_organelle/peroxisomal_matrix.html","peroxisomal matrix"]],"b":[["ComplexPortal%3ACPX-3964","fadBA fatty acid oxidation complex, aerobic conditions"],["ComplexPortal%3ACPX-3966","fadJI fatty acid oxidation complex, anaerobic conditions"],["ComplexPortal%3ACPX-6245","Mitochondrial trifunctional enzyme complex"],["GO%3A0006635","fatty acid beta-oxidation"],["GO%3A0033539","fatty acid beta-oxidation using acyl-CoA dehydrogenase"],["GO%3A0033540","fatty acid beta-oxidation using acyl-CoA oxidase"]]},{"id":"GO:0015630","l":"microtubule cytoskeleton","na":1,"nb":32,"a":[["cytoskeleton/microtubule.html","microtubule"]],"b":[["ComplexPortal%3ACPX-116","Chromosomal passenger complex, AURKB variant"],["ComplexPortal%3ACPX-20753","Chromosomal passenger complex, AURKC variant"],["ComplexPortal%3ACPX-119","Chromosomal passenger complex"],["ComplexPortal%3ACPX-3461","Chromosomal passenger complex"],["ComplexPortal%3ACPX-6365","Katanin complex, KATNA1-KATNB1 variant"],["ComplexPortal%3ACPX-6366","Katanin complex, KATNA1-KATNBL1 variant"]]},{"id":"GO:0050524","l":"coenzyme-B sulfoethylthiotransferase activity","na":1,"nb":32,"a":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]],"b":[["EC%3A2.8.4.1","coenzyme-B sulfoethylthiotransferase"],["RHEA%3A12532","coenzyme B + methyl-coenzyme M = methane + coenzyme M-coenzyme B heterodisulfide"],["GO%3A0050524","coenzyme-B sulfoethylthiotransferase activity"],["NCBIfam%3ATIGR03256","coenzyme-B sulfoethylthiotransferase subunit alpha"],["NCBIfam%3ATIGR03257","coenzyme-B sulfoethylthiotransferase subunit beta"],["NCBIfam%3ANF014313","coenzyme-B sulfoethylthiotransferase subunit gamma"]]},{"id":"UniProt:P07363","l":"","na":1,"nb":32,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["ComplexPortal%3ACPX-1077","Chemotaxis phosphorelay complex CheA-CheY"],["GO%3A0098561","methyl accepting chemotaxis protein complex"],["GO%3A0004673","protein histidine kinase activity"],["GO%3A0009454","aerotaxis"],["GO%3A0071977","bacterial-type flagellum-dependent swimming motility"],["GO%3A0051649","establishment of localization in cell"]]},{"id":"GO:0009360","l":"DNA polymerase III complex","na":1,"nb":31,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"]],"b":[["ComplexPortal%3ACPX-1924","DNA polymerase III holoenzyme complex"],["GO%3A0009360","DNA polymerase III complex"],["NCBIfam%3ANF014787","DNA polymerase III beta subunit, C-terminal domain"],["NCBIfam%3ANF012915","DNA polymerase III beta subunit, N-terminal domain"],["NCBIfam%3ANF017911","DNA polymerase III, delta subunit"],["NCBIfam%3ATIGR01405","DNA polymerase III subunit alpha"]]},{"id":"GO:0004298","l":"threonine-type endopeptidase activity","na":1,"nb":30,"a":[["other/proteasome_core_complex.html","proteasome core complex"]],"b":[["ComplexPortal%3ACPX-9082","19S-20S-PA28-alphabeta hybrid proteasome complex"],["ComplexPortal%3ACPX-9085","19S-20S-PA28-gamma hybrid proteasome complex"],["ComplexPortal%3ACPX-9021","20S spermatoproteasome complex"],["ComplexPortal%3ACPX-9004","20S thymoproteasome complex"],["ComplexPortal%3ACPX-2262","26S proteasome complex"],["ComplexPortal%3ACPX-5993","26S proteasome complex"]]},{"id":"GO:0006887","l":"exocytosis","na":1,"nb":30,"a":[["other/exocyst.html","exocyst"]],"b":[["GO%3A0160192","autophagosome-dependent secretion"],["GO%3A0045054","constitutive secretory pathway"],["GO%3A0098967","exocytic insertion of neurotransmitter receptor to postsynaptic membrane"],["GO%3A0006887","exocytosis"],["GO%3A1990182","exosomal secretion"],["GO%3A0045055","regulated exocytosis"]]},{"id":"GO:0090148","l":"membrane fission","na":1,"nb":30,"a":[["other/escrt_iii_complex.html","ESCRT III complex"]],"b":[["ComplexPortal%3ACPX-2452","ESCRT-0 complex"],["ComplexPortal%3ACPX-2825","ESCRT-0 complex, STAM variant"],["ComplexPortal%3ACPX-7143","ESCRT-0 complex, STAM2 variant"],["ComplexPortal%3ACPX-7162","ESCRT-I complex, VPS37A-MVB12A variant"],["ComplexPortal%3ACPX-7146","ESCRT-I complex, VPS37A-MVB12B variant"],["ComplexPortal%3ACPX-7181","ESCRT-I complex, VPS37A-UBAP1 variant"]]},{"id":"GO:0099513","l":"polymeric cytoskeletal fiber","na":1,"nb":29,"a":[["cytoskeleton/microtubule.html","microtubule"]],"b":[["GO%3A0005884","actin filament"],["GO%3A0005882","intermediate filament"],["GO%3A0005874","microtubule"],["GO%3A0001520","outer dense fiber"],["GO%3A0099513","polymeric cytoskeletal fiber"],["PANTHER%3APTHR12607","ADENOMATOUS POLYPOSIS COLI PROTEIN FAMILY"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":29,"a":[["spore/exosporium.html","exosporium"]],"b":[["Pfam%3APF09156","Anthrax toxin lethal factor, middle domain"],["Pfam%3APF08401","N-terminal domain of anti-restriction factor ArdC"],["Pfam%3APF07737","Anthrax toxin lethal factor, N- and C-terminal domain"],["Pfam%3APF27053","Bacillus anthracis plasmid pXO2 protein 26"],["Pfam%3APF13205","Bacterial Ig-like domain"],["Pfam%3APF17475","Clostridial binary toxin B/anthrax toxin PA domain 2"]]},{"id":"GO:1905370","l":"serine-type endopeptidase complex","na":1,"nb":28,"a":[["other/mitochondrial_inner_membrane_peptidase_complex.html","mitochondrial inner membrane peptidase complex"]],"b":[["ComplexPortal%3ACPX-6224","Active Protein C complex"],["ComplexPortal%3ACPX-6222","alpha-thrombin complex"],["ComplexPortal%3ACPX-6181","CL-LK-MASP1 lectin-protease complex"],["ComplexPortal%3ACPX-6240","CL-LK-MASP2 lectin-protease complex"],["ComplexPortal%3ACPX-6221","Coagulation factor Va-Xa complex"],["ComplexPortal%3ACPX-279","Coagulation factor VIIa - tissue factor complex"]]},{"id":"Pfam:PF00015","l":"Methyl-accepting chemotaxis protein (MCP) signalling domain","na":1,"nb":28,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["GO%3A0009454","aerotaxis"],["CDD%3Acd01068","globin_sensor"],["CDD%3Acd19411","MCP2201-like_sensor"],["CDD%3Acd11386","MCP_signal"],["InterPro%3AIPR007891","CHASE3"],["InterPro%3AIPR024478","Chemotaxis methyl-accepting receptor HlyB-like, 4HB MCP domain"]]},{"id":"GO:0015627","l":"type II protein secretion system complex","na":1,"nb":26,"a":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"]],"b":[["GO%3A0015627","type II protein secretion system complex"],["NCBIfam%3ATIGR02533","type II secretion system ATPase GspE"],["NCBIfam%3ATIGR02120","type II secretion system inner membrane protein GspF"],["NCBIfam%3ATIGR01710","type II secretion system major pseudopilin GspG"],["NCBIfam%3ATIGR01708","type II secretion system minor pseudopilin GspH"],["NCBIfam%3ATIGR01707","type II secretion system minor pseudopilin GspI"]]},{"id":"UniProt:P0AES6","l":"","na":1,"nb":26,"a":[["other/dna_gyrase_complex.html","DNA gyrase complex"]],"b":[["ComplexPortal%3ACPX-2177","GyrA-GyrB DNA Gyrase complex"],["GO%3A0009330","DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) complex"],["GO%3A0034335","DNA negative supercoiling activity"],["GO%3A0003918","DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) activity"],["NCBIfam%3ANF004189","DNA gyrase subunit B"],["NCBIfam%3ANF011501","DNA gyrase subunit B"]]},{"id":"GO:0005885","l":"Arp2/3 protein complex","na":1,"nb":25,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"]],"b":[["ComplexPortal%3ACPX-2586","Actin-related protein 2/3 complex, ARPC1A-ACTR3-ARPC5 variant"],["ComplexPortal%3ACPX-2592","Actin-related protein 2/3 complex, ARPC1A-ACTR3-ARPC5L variant"],["ComplexPortal%3ACPX-2490","Actin-related protein 2/3 complex, ARPC1A-ACTR3B-ARPC5 variant"],["ComplexPortal%3ACPX-2579","Actin-related protein 2/3 complex, ARPC1B-ACTR3-ARPC5 variant"],["ComplexPortal%3ACPX-2663","Actin-related protein 2/3 complex, ARPC1B-ACTR3-ARPC5L variant"],["ComplexPortal%3ACPX-2583","Actin-related protein 2/3 complex, ARPC1B-ACTR3B-ARPC5 variant"]]},{"id":"GO:0016163","l":"nitrogenase activity","na":1,"nb":25,"a":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"]],"b":[["EC%3A1.18.6.1","nitrogenase"],["EC%3A1.18.6.2","vanadium-dependent nitrogenase"],["RHEA%3A21448","N2 + 8 reduced [2Fe-2S]-[ferredoxin] + 16 ATP + 16 H2O = H2 + 8 oxidized [2Fe-2S]-[ferredoxin] + 2 NH4(+) + 16 ADP + 16 phosphate + 6 H(+)"],["GO%3A0016163","nitrogenase activity"],["NCBIfam%3ATIGR02931","Fe-only nitrogenase subunit beta"],["NCBIfam%3ATIGR02929","Fe-only nitrogenase subunit delta"]]},{"id":"GO:1902555","l":"endoribonuclease complex","na":1,"nb":25,"a":[["ribonucleoprotein/ribonuclease_mrp_complex.html","ribonuclease MRP complex"]],"b":[["ComplexPortal%3ACPX-4629","C3PO endoribonuclease complex"],["ComplexPortal%3ACPX-890","C3PO endoribonuclease complex"],["ComplexPortal%3ACPX-5785","MERS-CoV NSP15 complex"],["ComplexPortal%3ACPX-2240","Mitochondrial RNase Z complex"],["ComplexPortal%3ACPX-8565","PUCH ribonuclease complex, slfl-3 variant"],["ComplexPortal%3ACPX-8569","PUCH ribonuclease complex, slfl-4 variant"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":1,"nb":25,"a":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"]],"b":[["Pfam%3APF13372","Alginate export"],["Pfam%3APF25965","ALG44 beta-barrel domain"],["Pfam%3APF25964","ALG44, barrel-sandwich hybrid domain"],["Pfam%3APF16844","Dinitrogenase iron-molybdenum cofactor, N-terminal"],["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"]]},{"id":"GO:0006893","l":"Golgi to plasma membrane transport","na":1,"nb":24,"a":[["other/exomer_complex.html","exomer complex"]],"b":[["ComplexPortal%3ACPX-1719","Exomer complex"],["ComplexPortal%3ACPX-26504","Exomer complex"],["ComplexPortal%3ACPX-1365","Vesicular SNARE complex SSO1-SEC9-SNC1"],["ComplexPortal%3ACPX-5463","Vesicular SNARE complex SSO1-SEC9-SNC2"],["ComplexPortal%3ACPX-1369","Vesicular SNARE complex SSO2-SEC9-SNC1"],["ComplexPortal%3ACPX-5465","Vesicular SNARE complex SSO2-SEC9-SNC2"]]},{"id":"GO:0031968","l":"organelle outer membrane","na":1,"nb":24,"a":[["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"]],"b":[["GO%3A0009535","chloroplast thylakoid membrane"],["GO%3A0005741","mitochondrial outer membrane"],["GO%3A0005640","nuclear outer membrane"],["GO%3A0031968","organelle outer membrane"],["GO%3A0009527","plastid outer membrane"],["PANTHER%3APTHR37278","AUTOPHAGY-RELATED PROTEIN 33-RELATED"]]},{"id":"UniProt:P0AES4","l":"","na":1,"nb":24,"a":[["other/dna_gyrase_complex.html","DNA gyrase complex"]],"b":[["ComplexPortal%3ACPX-5906","CcdB-poisoned gyrase complex"],["ComplexPortal%3ACPX-2177","GyrA-GyrB DNA Gyrase complex"],["GO%3A0009330","DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) complex"],["GO%3A0008094","ATP-dependent activity, acting on DNA"],["GO%3A0034335","DNA negative supercoiling activity"],["GO%3A0003918","DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) activity"]]},{"id":"GO:0097729","l":"9+2 motile cilium","na":1,"nb":23,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["ComplexPortal%3ACPX-8161","Radial spoke complex, ciliiar variant"],["ComplexPortal%3ACPX-8163","Radial spoke complex, ciliiar variant"],["ComplexPortal%3ACPX-8162","Radial spoke complex, flagellar variant"],["ComplexPortal%3ACPX-8164","Radial spoke complex, flagellar variant"],["GO%3A0097729","9+2 motile cilium"],["GO%3A0097554","left anterior flagellum"]]},{"id":"GO:0000775","l":"chromosome, centromeric region","na":1,"nb":22,"a":[["other/cbf3_complex.html","CBF3 complex"]],"b":[["ComplexPortal%3ACPX-26413","CENP-A recruiting complex"],["ComplexPortal%3ACPX-3272","CENP-A recruiting complex"],["ComplexPortal%3ACPX-3273","CENP-A recruiting complex"],["GO%3A0000775","chromosome, centromeric region"],["GO%3A0000779","condensed chromosome, centromeric region"],["InterPro%3AIPR009361","Centromere/kinetochore protein zw10, N-terminal"]]},{"id":"GO:0006891","l":"intra-Golgi vesicle-mediated transport","na":1,"nb":22,"a":[["other/trappii_protein_complex.html","TRAPPII protein complex"]],"b":[["ComplexPortal%3ACPX-1939","TRAPP II complex"],["GO%3A0045057","cisternal progression"],["GO%3A0048219","inter-Golgi cisterna vesicle-mediated transport"],["GO%3A0006891","intra-Golgi vesicle-mediated transport"],["GO%3A0000301","retrograde transport, vesicle recycling within Golgi"],["InterPro%3AIPR012955","CASP, C-terminal"]]},{"id":"GO:0008121","l":"quinol-cytochrome-c reductase activity","na":1,"nb":22,"a":[["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"]],"b":[["EC%3A7.1.1.8","quinol--cytochrome-c reductase"],["RHEA%3A11484","a quinol + 2 Fe(III)-[cytochrome c](out) = a quinone + 2 Fe(II)-[cytochrome c](out) + 2 H(+)(out)"],["ComplexPortal%3ACPX-560","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-563","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-567","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-8730","Mitochondrial respiratory chain complex III"]]},{"id":"GO:0019953","l":"sexual reproduction","na":1,"nb":22,"a":[["membrane_organelle/micronucleus.html","micronucleus"]],"b":[["GO%3A0000747","conjugation with cellular fusion"],["GO%3A0000748","conjugation with mutual genetic exchange"],["GO%3A0019953","sexual reproduction"],["InterPro%3AIPR007689","A-alpha-Y mating type-dependent binding domain"],["PANTHER%3APTHR22655","ATP-DEPENDENT RNA HELICASE TDRD12-RELATED"],["PANTHER%3APTHR47193","CATION CHANNEL SPERM-ASSOCIATED PROTEIN 1"]]},{"id":"GO:0030286","l":"dynein complex","na":1,"nb":22,"a":[["cytoskeleton/axonemal_dynein_complex.html","axonemal dynein complex"]],"b":[["ComplexPortal%3ACPX-5699","Cytoplasmic dynein complex, variant 1"],["ComplexPortal%3ACPX-26357","Dynein-2 complex, light-chain variant 1"],["ComplexPortal%3ACPX-26360","Dynein-2 complex, light-chain variant 2"],["ComplexPortal%3ACPX-26361","Dynein-2 complex, light-chain variant 3"],["ComplexPortal%3ACPX-26362","Dynein-2 complex, light-chain variant 4"],["ComplexPortal%3ACPX-26363","Dynein-2 complex, light-chain variant 5"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":1,"nb":21,"a":[["membrane_organelle/trichocyst.html","trichocyst"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29108","requires calcium(2+)"],["EC%3A1.13.12.24","calcium-regulated photoprotein"],["EC%3A7.2.2.10","P-type Ca(2+) transporter"],["RHEA%3A72631","3 Li(+)(out) + Ca(2+)(in) = 3 Li(+)(in) + Ca(2+)(out)"],["RHEA%3A55884","[aequorin] + 3 Ca(2+) = [aequorin]--dioxetanone"],["RHEA%3A55888","[aequorin]--dioxetanone = excited state-[aequorin] + CO2"]]},{"id":"GO:0016682","l":"oxidoreductase activity, acting on diphenols and related substances as donors, oxygen as acceptor","na":1,"nb":21,"a":[["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]],"b":[["ComplexPortal%3ACPX-268","Cytochrome bd-I ubiquinol oxidase complex"],["ComplexPortal%3ACPX-269","Cytochrome bd-II ubiquinol oxidase complex"],["GO%3A0047561","3-hydroxyanthranilate oxidase activity"],["GO%3A0009916","alternative oxidase activity"],["GO%3A0004097","catechol oxidase activity"],["GO%3A0052716","hydroquinone:oxygen oxidoreductase activity"]]},{"id":"GO:0042729","l":"DASH complex","na":1,"nb":21,"a":[["other/dash_complex.html","DASH complex"]],"b":[["ComplexPortal%3ACPX-10081","DASH complex"],["ComplexPortal%3ACPX-1041","DASH complex"],["GO%3A0042729","DASH complex"],["PANTHER%3APTHR28200","DASH COMPLEX SUBUNIT ASK1"],["PANTHER%3APTHR28025","DASH COMPLEX SUBUNIT DAD1"],["PANTHER%3APTHR28036","DASH COMPLEX SUBUNIT DAD2"]]},{"id":"UniProt:P06710","l":"","na":1,"nb":21,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"]],"b":[["ComplexPortal%3ACPX-1926","DNA polymerase III clamp loader complex"],["GO%3A0043846","DNA polymerase III, clamp loader complex"],["GO%3A0009360","DNA polymerase III complex"],["GO%3A0044776","DNA polymerase III, core complex"],["GO%3A0003689","DNA clamp loader activity"],["GO%3A0030337","DNA polymerase processivity factor activity"]]},{"id":"GO:0008177","l":"succinate dehydrogenase (quinone) activity","na":1,"nb":20,"a":[["energy_complex/respiratory_chain_complex_ii_succinate_dehydrogenase.html","respiratory chain complex II (succinate dehydrogenase)"]],"b":[["EC%3A1.3.5.1","succinate dehydrogenase"],["RHEA%3A27834","a menaquinone + succinate = a menaquinol + fumarate"],["RHEA%3A40523","a quinone + succinate = fumarate + a quinol"],["RHEA%3A75711","a rhodoquinone + succinate = a rhodoquinol + fumarate"],["RHEA%3A13713","a ubiquinone + succinate = a ubiquinol + fumarate"],["ComplexPortal%3ACPX-561","Mitochondrial respiratory chain complex II"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":1,"nb":20,"a":[["envelope/s_layer.html","S-layer"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF27529","AMPT"],["Pfam%3APF24856","L-arabinose isomerase central domain"],["Pfam%3APF02610","L-arabinose isomerase N-terminal domain"],["Pfam%3APF11762","L-arabinose isomerase C-terminal domain"],["Pfam%3APF17727","CtsR C-terminal dimerization domain"]]},{"id":"GO:0000178","l":"exosome (RNase complex)","na":1,"nb":19,"a":[["ribonucleoprotein/exosome_rnase_complex.html","exosome (RNase complex)"]],"b":[["ComplexPortal%3ACPX-603","Cytoplasmic exosome complex, DIS3 variant"],["ComplexPortal%3ACPX-2596","Cytoplasmic exosome"],["ComplexPortal%3ACPX-593","Exosome complex, DIS3 variant"],["ComplexPortal%3ACPX-598","Exosome complex, Dis3 variant"],["ComplexPortal%3ACPX-2595","Nuclear exosome"],["ComplexPortal%3ACPX-599","Nuclear/nucleolar exosome complex, DIS3-RRP6 variant"]]},{"id":"GO:0030677","l":"ribonuclease P complex","na":1,"nb":19,"a":[["ribonucleoprotein/dimeric_ribonuclease_p_complex.html","dimeric ribonuclease P complex"]],"b":[["GO%3A0030680","dimeric ribonuclease P complex"],["GO%3A0030678","mitochondrial ribonuclease P complex"],["GO%3A0030681","multimeric ribonuclease P complex"],["GO%3A0030677","ribonuclease P complex"],["NCBIfam%3ANF046110","ribonuclease P protein component 1"],["NCBIfam%3ANF046108","ribonuclease P protein component 3"]]},{"id":"GO:0044232","l":"organelle membrane contact site","na":1,"nb":19,"a":[["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"]],"b":[["GO%3A0140284","endoplasmic reticulum-endosome membrane contact site"],["GO%3A0140268","endoplasmic reticulum-plasma membrane contact site"],["GO%3A0160258","endoplasmic reticulum-trans-Golgi network membrane contact site"],["GO%3A0098853","endoplasmic reticulum-vacuole membrane contact site"],["GO%3A0044233","mitochondria-associated endoplasmic reticulum membrane contact site"],["GO%3A0044284","mitochondrial crista junction"]]},{"id":"GO:0045277","l":"respiratory chain complex IV","na":1,"nb":19,"a":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]],"b":[["ComplexPortal%3ACPX-1721","Mitochondrial respiratory chain complex IV, COX5A variant"],["ComplexPortal%3ACPX-1722","Mitochondrial respiratory chain complex IV, COX5B variant"],["ComplexPortal%3ACPX-6123","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-8620","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-9641","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-8621","Mitochondrial respiratory chain complex IV, testis-specific variant"]]},{"id":"GO:0070069","l":"cytochrome complex","na":1,"nb":19,"a":[["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]],"b":[["ComplexPortal%3ACPX-268","Cytochrome bd-I ubiquinol oxidase complex"],["ComplexPortal%3ACPX-269","Cytochrome bd-II ubiquinol oxidase complex"],["GO%3A0009512","cytochrome b6f complex"],["GO%3A0070069","cytochrome complex"],["GO%3A0009319","cytochrome o ubiquinol oxidase complex"],["GO%3A0045275","respiratory chain complex III"]]},{"id":"GO:0099512","l":"supramolecular fiber","na":1,"nb":19,"a":[["cytoskeleton/cytoophidium.html","cytoophidium"]],"b":[["GO%3A0098647","collagen beaded filament"],["GO%3A0043292","contractile muscle fiber"],["GO%3A0097268","cytoophidium"],["GO%3A0071953","elastic fiber"],["GO%3A0061800","fibronectin fibril"],["GO%3A0061836","intranuclear rod"]]},{"id":"InterPro:IPR006317","l":"Ubiquinol-cytochrome c reductase, iron-sulphur subunit","na":1,"nb":19,"a":[["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"]],"b":[["GO%3A0008121","quinol-cytochrome-c reductase activity"],["NCBIfam%3ATIGR01416","ubiquinol-cytochrome c reductase iron-sulfur subunit"],["CDD%3Acd03470","Rieske_cytochrome_bc1"],["InterPro%3AIPR004192","Cytochrome b-c1 complex subunit Rieske, transmembrane domain"],["InterPro%3AIPR017941","Rieske [2Fe-2S] iron-sulphur domain"],["InterPro%3AIPR005805","Rieske iron-sulphur protein, C-terminal"]]},{"id":"NCBITaxon:330779","l":"Sulfolobus acidocaldarius (strain ATCC 33909 / DSM 639 / JCM 8929 / NBRC 15157 / NCIMB 11770)","na":1,"nb":19,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"]],"b":[["Pfam%3APF12846","AAA-like domain"],["Pfam%3APF27338","Cytochrome b558/566 subunit B"],["Pfam%3APF18822","CdvA-like coiled-coil domain"],["Pfam%3APF27303","Cell division protein CdvB, C-terminal HTH domain"],["Pfam%3APF27251","DNA import protein CedA1"],["Pfam%3APF18533","Domain of unknown function (DUF5622)"]]},{"id":"UniProt:P02942","l":"","na":1,"nb":19,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["GO%3A0098561","methyl accepting chemotaxis protein complex"],["GO%3A0009593","detection of chemical stimulus"],["GO%3A1902021","regulation of bacterial-type flagellum-dependent cell motility"],["NCBIfam%3ANF011615","methyl-accepting chemotaxis protein"],["CDD%3Acd06225","HAMP"],["CDD%3Acd19407","Tar_Tsr_sensor"]]},{"id":"UniProt:P07017","l":"","na":1,"nb":19,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["GO%3A0098561","methyl accepting chemotaxis protein complex"],["GO%3A0043424","protein histidine kinase binding"],["GO%3A0009593","detection of chemical stimulus"],["NCBIfam%3ANF011622","methyl-accepting chemotaxis protein II"],["CDD%3Acd06225","HAMP"],["CDD%3Acd19407","Tar_Tsr_sensor"]]},{"id":"UniProt:P60723","l":"Large ribosomal subunit protein uL4","na":1,"nb":19,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["GO%3A0022625","cytosolic large ribosomal subunit"],["GO%3A0015934","large ribosomal subunit"],["GO%3A0060698","endoribonuclease inhibitor activity"],["GO%3A0048027","mRNA 5'-UTR binding"],["GO%3A0001070","RNA-binding transcription regulator activity"]]},{"id":"CHEBI:16838","l":"polyphosphate","na":1,"nb":18,"a":[["membrane_organelle/acidocalcisome.html","acidocalcisome"]],"b":[["EC%3A2.7.1.63","polyphosphate--glucose phosphotransferase"],["EC%3A2.7.4.1","ATP-polyphosphate phosphotransferase"],["EC%3A2.7.4.17","3-phosphoglyceroyl-phosphate--polyphosphate phosphotransferase"],["EC%3A2.7.4.20","dolichyl-diphosphate--polyphosphate phosphotransferase"],["EC%3A2.7.4.33","AMP-polyphosphate phosphotransferase"],["EC%3A2.7.4.34","GDP-polyphosphate phosphotransferase"]]},{"id":"GO:0030257","l":"type III protein secretion system complex","na":1,"nb":18,"a":[["secretion_system/type_iii_protein_secretion_system_complex.html","type III protein secretion system complex"]],"b":[["ComplexPortal%3ACPX-5885","Flagellar export complex"],["GO%3A0030257","type III protein secretion system complex"],["NCBIfam%3ANF006290","flagellar protein export ATPase FliI"],["NCBIfam%3ATIGR03498","flagellar protein export ATPase FliI"],["NCBIfam%3ATIGR01026","FliI/YscN family ATPase"],["NCBIfam%3ATIGR02554","PrgH/EprH family type III secretion apparatus protein"]]},{"id":"GO:0031253","l":"cell projection membrane","na":1,"nb":18,"a":[["appendage/ciliary_membrane.html","ciliary membrane"]],"b":[["GO%3A0031526","brush border membrane"],["GO%3A0031253","cell projection membrane"],["GO%3A0060170","ciliary membrane"],["GO%3A0031527","filopodium membrane"],["GO%3A0031258","lamellipodium membrane"],["GO%3A0070686","macropinocytic cup membrane"]]},{"id":"GO:0045048","l":"protein insertion into ER membrane","na":1,"nb":18,"a":[["other/emc_complex.html","EMC complex"]],"b":[["ComplexPortal%3ACPX-6464","GET complex"],["ComplexPortal%3ACPX-956","GET complex"],["ComplexPortal%3ACPX-7020","PAT intramembrane chaperone complex"],["GO%3A0160063","multi-pass transmembrane protein insertion into ER membrane"],["GO%3A0045051","protein insertion into ER membrane by internal uncleaved signal-anchor sequence"],["GO%3A0045049","protein insertion into ER membrane by N-terminal cleaved signal sequence"]]},{"id":"GO:0140737","l":"encapsulin nanocompartment","na":1,"nb":18,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]],"b":[["GO%3A0140737","encapsulin nanocompartment"],["NCBIfam%3ATIGR04535","encapsulin-associated ferritin-like protein"],["NCBIfam%3ANF058680","encapsulin nanocompartment cargo ferric reductase EncD"],["NCBIfam%3ANF058678","encapsulin nanocompartment ferritin-like cargo protein EncB"],["NCBIfam%3ANF058679","encapsulin nanocompartment ferritin-likeEncB family encapsulin nanocompartment ferritin-like cargo protein cargo protein"],["NCBIfam%3ANF041155","family 1 encapsulin nanocompartment shell protein"]]},{"id":"GO:0160303","l":"protein secretion by the type IX secretion system","na":1,"nb":18,"a":[["secretion_system/type_ix_protein_secretion_system_complex.html","type IX protein secretion system complex"]],"b":[["GO%3A0160303","protein secretion by the type IX secretion system"],["NCBIfam%3ANF052230","PorE family type IX secretion system protein"],["NCBIfam%3ATIGR03519","PorP/SprF family type IX secretion system membrane protein"],["NCBIfam%3ANF052314","PorY family sensor histidine kinase"],["NCBIfam%3ATIGR04189","T9SS outer membrane translocon Sov/SprA"],["NCBIfam%3ANF052313","T9SS response regulator signal transducer PorX"]]},{"id":"InterPro:IPR014222","l":"Cytochrome c oxidase, subunit II","na":1,"nb":18,"a":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]],"b":[["GO%3A0098803","respiratory chain complex"],["GO%3A0004129","cytochrome-c oxidase activity"],["NCBIfam%3ATIGR02866","cytochrome c oxidase subunit II"],["InterPro%3AIPR001505","Copper centre Cu(A)"],["CDD%3Acd13912","CcO_II_C"],["CDD%3Acd04213","CuRO_CcO_Caa3_II"]]},{"id":"UniProt:P24073","l":"","na":1,"nb":18,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["EC%3A3.-.-.-","Hydrolases"],["GO%3A0009425","bacterial-type flagellum basal body"],["GO%3A0003774","cytoskeletal motor activity"],["GO%3A0044780","bacterial-type flagellum assembly"],["GO%3A0071978","bacterial-type flagellum-dependent swarming motility"],["GO%3A0016311","dephosphorylation"]]},{"id":"GO:0000407","l":"phagophore assembly site","na":1,"nb":17,"a":[["other/phagophore_assembly_site.html","phagophore assembly site"]],"b":[["ComplexPortal%3ACPX-1383","TRAPPIII protein complex"],["ComplexPortal%3ACPX-373","ULK1-ATG13-RB1CC1-ATG101 autophagy initiation complex"],["ComplexPortal%3ACPX-380","ULK1-ATG13-RB1CC1-ATG101 autophagy initiation complex"],["GO%3A0000407","phagophore assembly site"],["PANTHER%3APTHR13038","APG9 AUTOPHAGY 9"],["PANTHER%3APTHR13385","AUTOPHAGY PROTEIN 12"]]},{"id":"GO:0003689","l":"DNA clamp loader activity","na":1,"nb":17,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"]],"b":[["ComplexPortal%3ACPX-1926","DNA polymerase III clamp loader complex"],["ComplexPortal%3ACPX-472","DNA replication factor C complex"],["ComplexPortal%3ACPX-26445","DNA replication factor C complex, ctf18 variant"],["ComplexPortal%3ACPX-2441","DNA replication factor C complex, elg1 variant"],["ComplexPortal%3ACPX-26452","DNA replication factor C complex, elg1 variant"],["ComplexPortal%3ACPX-26444","DNA replication factor C complex, rad17 variant"]]},{"id":"GO:0030863","l":"cortical cytoskeleton","na":1,"nb":17,"a":[["cytoskeleton/eisosome_filament.html","eisosome filament"]],"b":[["ComplexPortal%3ACPX-658","Actin junctional complex"],["GO%3A0030864","cortical actin cytoskeleton"],["GO%3A0030863","cortical cytoskeleton"],["GO%3A0030981","cortical microtubule cytoskeleton"],["GO%3A0048788","cytoskeleton of presynaptic active zone"],["PANTHER%3APTHR15012","APICAL PROTEIN/SHROOM-RELATED"]]},{"id":"GO:0072546","l":"EMC complex","na":1,"nb":17,"a":[["other/emc_complex.html","EMC complex"]],"b":[["ComplexPortal%3ACPX-307","Endoplasmic Reticulum Membrane Complex"],["ComplexPortal%3ACPX-2445","Endoplasmic reticulum membrane complex, EMC2A variant"],["ComplexPortal%3ACPX-2451","Endoplasmic reticulum membrane complex, EMC2B variant"],["ComplexPortal%3ACPX-5848","Endoplasmic reticulum membrane complex, EMC8 variant"],["ComplexPortal%3ACPX-5882","Endoplasmic reticulum membrane complex, EMC8 variant"],["ComplexPortal%3ACPX-5881","Endoplasmic reticulum membrane complex, EMC9 variant"]]},{"id":"GO:1905369","l":"endopeptidase complex","na":1,"nb":17,"a":[["other/proteasome_complex.html","proteasome complex"]],"b":[["ComplexPortal%3ACPX-3905","Caspase-2 PIDDosome"],["ComplexPortal%3ACPX-3963","Caspase-2 PIDDosome"],["ComplexPortal%3ACPX-5777","MERS-CoV main protease complex"],["ComplexPortal%3ACPX-5685","SARS-CoV-2 main protease complex"],["ComplexPortal%3ACPX-5706","SARS-CoV main protease complex"],["GO%3A0008303","caspase complex"]]},{"id":"NCBITaxon:208963","l":"Pseudomonas aeruginosa (strain UCBPP-PA14)","na":1,"nb":17,"a":[["inclusion/r_body.html","R-body"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF21384","CRISPR-associated nuclease/helicase Cas3, I-F/YPEST, Cas2 domain"],["Pfam%3APF21802","CRISPR-associated Cas3 subtype I-F/YPEST-like, C-terminal domain"],["Pfam%3APF20975","DGC-associated coil"],["Pfam%3APF19502","Nucleotidyltransferase of unknown function (DUF6036)"]]},{"id":"Pfam:PF01584","l":"CheW-like domain","na":1,"nb":17,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["GO%3A0098561","methyl accepting chemotaxis protein complex"],["GO%3A0009454","aerotaxis"],["GO%3A0042333","chemotaxis to oxidizable substrate"],["GO%3A0051649","establishment of localization in cell"],["NCBIfam%3ANF007903","chemotaxis protein CheW"],["CDD%3Acd00732","CheW"]]},{"id":"UniProt:P0A7V8","l":"Small ribosomal subunit protein uS4","na":1,"nb":17,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["GO%3A1990145","maintenance of translational fidelity"],["GO%3A0000028","ribosomal small subunit assembly"],["GO%3A0031564","transcription antitermination"],["NCBIfam%3ANF003717","30S ribosomal protein S4"],["NCBIfam%3ATIGR01017","30S ribosomal protein S4"]]},{"id":"UniProt:P0AFI2","l":"","na":1,"nb":17,"a":[["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["ComplexPortal%3ACPX-1104","Topoisomerase IV"],["GO%3A0009330","DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) complex"],["GO%3A0030541","plasmid partitioning"],["NCBIfam%3ANF004044","DNA topoisomerase (ATP-hydrolyzing)"],["NCBIfam%3ATIGR01062","DNA topoisomerase IV subunit A"],["CDD%3Acd00187","TOP4c"]]},{"id":"UniProt:P35149","l":"","na":1,"nb":17,"a":[["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]],"b":[["EC%3A3.6.1.-","In phosphorus-containing anhydrides"],["GO%3A0043595","endospore cortex"],["GO%3A0042601","endospore-forming forespore"],["GO%3A0031160","spore wall"],["GO%3A0000270","peptidoglycan metabolic process"],["GO%3A0009847","spore germination"]]},{"id":"CHEBI:16247","l":"","na":1,"nb":16,"a":[["inclusion/monolayer_surrounded_lipid_storage_body_outer_lipid_monolayer.html","monolayer-surrounded lipid storage body outer lipid monolayer"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.A.79","The Autophagosomal Phospholipid Transmembrane Translocase (Atg9) Family"],["TCDB%3A9.A.36","The Ca2+-dependent Phospholipid Scramblase (Scramblase) Family"],["TCDB%3A1.A.17","The Calcium-dependent Chloride Channel (Ca-ClC) Family"],["TCDB%3A9.B.27","The Death Effector Domain A (DedA) Family"],["TCDB%3A8.A.97","The EPG-3/VMP1 (EPG/VPM) Scramblase Family"]]},{"id":"GO:0004526","l":"ribonuclease P activity","na":1,"nb":16,"a":[["ribonucleoprotein/dimeric_ribonuclease_p_complex.html","dimeric ribonuclease P complex"]],"b":[["EC%3A3.1.26.5","ribonuclease P"],["ComplexPortal%3ACPX-1294","Mitochondrial ribonuclease P complex"],["ComplexPortal%3ACPX-2632","Mitochondrial ribonuclease P complex"],["ComplexPortal%3ACPX-6155","Mitochondrial ribonuclease P complex"],["ComplexPortal%3ACPX-1873","Nucleolar ribonuclease P complex"],["ComplexPortal%3ACPX-2637","Nucleolar ribonuclease P complex"]]},{"id":"GO:0030968","l":"endoplasmic reticulum unfolded protein response","na":1,"nb":16,"a":[["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"]],"b":[["GO%3A0036500","ATF6-mediated unfolded protein response"],["GO%3A0030968","endoplasmic reticulum unfolded protein response"],["GO%3A0036498","IRE1-mediated unfolded protein response"],["GO%3A0036499","PERK-mediated unfolded protein response"],["Reactome%3AR-HSA-8874177","ATF6B (ATF6-beta) activates chaperones"],["Reactome%3AR-HSA-381119","Unfolded Protein Response (UPR)"]]},{"id":"GO:1904262","l":"negative regulation of TORC1 signaling","na":1,"nb":16,"a":[["other/gator1_complex.html","GATOR1 complex"]],"b":[["ComplexPortal%3ACPX-2665","CASTOR1 arginine-sensing complex"],["ComplexPortal%3ACPX-2667","CASTOR1-CASTOR2 arginine binding complex"],["ComplexPortal%3ACPX-26523","GATOR1 complex"],["ComplexPortal%3ACPX-2781","GATOR1 complex"],["ComplexPortal%3ACPX-6226","GATOR1 complex"],["ComplexPortal%3ACPX-26527","GATOR2 complex"]]},{"id":"GO:1904263","l":"positive regulation of TORC1 signaling","na":1,"nb":16,"a":[["other/gator2_complex.html","GATOR2 complex"]],"b":[["ComplexPortal%3ACPX-26527","GATOR2 complex"],["ComplexPortal%3ACPX-6227","GATOR2 complex"],["ComplexPortal%3ACPX-26516","RAG guanosine triphosphatase complex"],["ComplexPortal%3ACPX-26517","RAG guanosine triphosphatase complex"],["ComplexPortal%3ACPX-2542","RAG guanosine triphosphatase complex, RAGA-RAGC variant"],["ComplexPortal%3ACPX-2513","RAG guanosine triphosphatase complex, RAGA-RAGD variant"]]},{"id":"UniProt:P0A7S3","l":"Small ribosomal subunit protein uS12","na":1,"nb":16,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["GO%3A0022627","cytosolic small ribosomal subunit"],["GO%3A0005840","ribosome"],["GO%3A0034336","misfolded RNA binding"],["GO%3A0019843","rRNA binding"],["GO%3A0000049","tRNA binding"]]},{"id":"UniProt:P20083","l":"","na":1,"nb":16,"a":[["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["ComplexPortal%3ACPX-1104","Topoisomerase IV"],["GO%3A0030541","plasmid partitioning"],["NCBIfam%3ATIGR01055","DNA topoisomerase IV subunit B"],["InterPro%3AIPR018522","DNA topoisomerase, type IIA, conserved site"],["CDD%3Acd16928","HATPase_GyrB-like"],["CDD%3Acd00822","TopoII_Trans_DNA_gyrase"]]},{"id":"GO:0000479","l":"endonucleolytic cleavage of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)","na":1,"nb":15,"a":[["ribonucleoprotein/ribonuclease_mrp_complex.html","ribonuclease MRP complex"]],"b":[["GO%3A0000448","cleavage in ITS2 between 5.8S rRNA and LSU-rRNA of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)"],["GO%3A0000471","endonucleolytic cleavage in 3'-ETS of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)"],["GO%3A0000480","endonucleolytic cleavage in 5'-ETS of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)"],["GO%3A0000447","endonucleolytic cleavage in ITS1 to separate SSU-rRNA from 5.8S rRNA and LSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)"],["GO%3A0000464","endonucleolytic cleavage in ITS1 upstream of 5.8S rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)"],["GO%3A0000479","endonucleolytic cleavage of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)"]]},{"id":"GO:0005881","l":"cytoplasmic microtubule","na":1,"nb":15,"a":[["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"]],"b":[["GO%3A0000235","astral microtubule"],["GO%3A0005879","axonemal microtubule"],["GO%3A0055028","cortical microtubule"],["GO%3A0005881","cytoplasmic microtubule"],["PANTHER%3APTHR12607","ADENOMATOUS POLYPOSIS COLI PROTEIN FAMILY"],["PANTHER%3APTHR34031","CENTROSOMAL PROTEIN OF 162 KDA"]]},{"id":"GO:0009486","l":"cytochrome bo3 ubiquinol oxidase activity","na":1,"nb":15,"a":[["energy_complex/cytochrome_o_ubiquinol_oxidase_complex.html","cytochrome o ubiquinol oxidase complex"]],"b":[["EC%3A7.1.1.3","ubiquinol oxidase (H(+)-transporting)"],["RHEA%3A30251","2 a ubiquinol + O2 + n H(+)(in) = 2 a ubiquinone + 2 H2O + n H(+)(out)"],["ComplexPortal%3ACPX-2102","Cytochrome bo3 ubiquinol oxidase complex"],["GO%3A0009486","cytochrome bo3 ubiquinol oxidase activity"],["NCBIfam%3ATIGR01432","cytochrome aa3 quinol oxidase subunit II"],["NCBIfam%3ATIGR02843","cytochrome o ubiquinol oxidase subunit I"]]},{"id":"GO:0030121","l":"AP-1 adaptor complex","na":1,"nb":15,"a":[["other/ap_1_adaptor_complex.html","AP-1 adaptor complex"]],"b":[["ComplexPortal%3ACPX-2510","Adaptor complex AP-1"],["ComplexPortal%3ACPX-26625","Adaptor complex AP-1"],["ComplexPortal%3ACPX-532","Adaptor complex AP-1"],["ComplexPortal%3ACPX-533","Adaptor complex AP-1R"],["ComplexPortal%3ACPX-26626","Adaptor complex AP-2"],["ComplexPortal%3ACPX-2725","Adaptor complex AP-2"]]},{"id":"GO:0042575","l":"DNA polymerase complex","na":1,"nb":15,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"]],"b":[["GO%3A0005658","alpha DNA polymerase:primase complex"],["GO%3A0043625","delta DNA polymerase complex"],["GO%3A0042575","DNA polymerase complex"],["GO%3A0009360","DNA polymerase III complex"],["GO%3A0009355","DNA polymerase V complex"],["GO%3A0008622","epsilon DNA polymerase complex"]]},{"id":"GO:0045039","l":"protein insertion into mitochondrial inner membrane","na":1,"nb":15,"a":[["other/tim22_mitochondrial_import_inner_membrane_insertion_complex.html","TIM22 mitochondrial import inner membrane insertion complex"]],"b":[["ComplexPortal%3ACPX-1629","TIM22 mitochondrial inner membrane twin-pore carrier translocase complex"],["ComplexPortal%3ACPX-6124","TIM22 mitochondrial inner membrane twin-pore carrier translocase complex"],["ComplexPortal%3ACPX-6127","TIM23 mitochondrial inner membrane pre-sequence translocase complex, sort variant"],["ComplexPortal%3ACPX-2371","TIM8-TIM13 mitochondrial intermembrane space protein transporter complex"],["ComplexPortal%3ACPX-6131","TIM8A-TIM13 mitochondrial intermembrane space protein transporter complex"],["ComplexPortal%3ACPX-6132","TIM8B-TIM13 mitochondrial intermembrane space protein transporter complex"]]},{"id":"GO:0045273","l":"respiratory chain complex II (succinate dehydrogenase)","na":1,"nb":15,"a":[["energy_complex/respiratory_chain_complex_ii_succinate_dehydrogenase.html","respiratory chain complex II (succinate dehydrogenase)"]],"b":[["ComplexPortal%3ACPX-561","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-562","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-564","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-565","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-566","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-8622","Mitochondrial respiratory chain complex II"]]},{"id":"GO:0048500","l":"signal recognition particle","na":1,"nb":15,"a":[["ribonucleoprotein/signal_recognition_particle.html","signal recognition particle"]],"b":[["GO%3A0080085","signal recognition particle, chloroplast targeting"],["GO%3A0005786","signal recognition particle, endoplasmic reticulum targeting"],["GO%3A0048500","signal recognition particle"],["GO%3A0048501","signal recognition particle, plasma membrane targeting"],["NCBIfam%3ANF014032","signal recognition particle subunit SRP19/SEC65 family protein"],["NCBIfam%3ANF045758","YlxM family DNA-binding protein"]]},{"id":"UniProt:P0A7J7","l":"Large ribosomal subunit protein uL11","na":1,"nb":15,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["GO%3A0015968","stringent response"],["GO%3A0006415","translational termination"],["NCBIfam%3ATIGR01632","50S ribosomal protein L11"],["InterPro%3AIPR020785","Large ribosomal subunit protein uL11, conserved site"],["CDD%3Acd00349","Ribosomal_L11"]]},{"id":"GO:0000172","l":"ribonuclease MRP complex","na":1,"nb":14,"a":[["ribonucleoprotein/ribonuclease_mrp_complex.html","ribonuclease MRP complex"]],"b":[["ComplexPortal%3ACPX-2629","Ribonuclease MRP complex"],["ComplexPortal%3ACPX-26688","Ribonuclease MRP complex"],["ComplexPortal%3ACPX-2876","Ribonuclease MRP complex"],["ComplexPortal%3ACPX-3284","Ribonuclease MRP complex"],["GO%3A0000172","ribonuclease MRP complex"],["InterPro%3AIPR047204","RNase MRP protein 1, RNA binding domain"]]},{"id":"GO:0001682","l":"","na":1,"nb":14,"a":[["ribonucleoprotein/dimeric_ribonuclease_p_complex.html","dimeric ribonuclease P complex"]],"b":[["ComplexPortal%3ACPX-1294","Mitochondrial ribonuclease P complex"],["ComplexPortal%3ACPX-1873","Nucleolar ribonuclease P complex"],["ComplexPortal%3ACPX-2637","Nucleolar ribonuclease P complex"],["ComplexPortal%3ACPX-2877","Nucleolar ribonuclease P complex"],["GO%3A0001682","tRNA 5'-leader removal"],["NCBIfam%3ANF046110","ribonuclease P protein component 1"]]},{"id":"GO:0003843","l":"1,3-beta-D-glucan synthase activity","na":1,"nb":14,"a":[["other/1_3_beta_d_glucan_synthase_complex.html","1,3-beta-D-glucan synthase complex"]],"b":[["EC%3A2.4.1.34","1,3-beta-glucan synthase"],["RHEA%3A21476","[(1->3)-beta-D-glucosyl](n) + UDP-alpha-D-glucose = [(1->3)-beta-D-glucosyl](n+1) + UDP + H(+)"],["ComplexPortal%3ACPX-1812","1,3-beta-D-glucan synthase complex, FKS1-RHO1 variant"],["ComplexPortal%3ACPX-1813","1,3-beta-D-glucan synthase complex, FKS2-RHO1 variant"],["ComplexPortal%3ACPX-3028","1,3-beta-D-glucan synthase complex, FKS3-RHO1 variant"],["GO%3A0003843","1,3-beta-D-glucan synthase activity"]]},{"id":"GO:0006360","l":"transcription by RNA polymerase I","na":1,"nb":14,"a":[["other/nucleolus.html","nucleolus"]],"b":[["GO%3A0042790","nucleolar large rRNA transcription by RNA polymerase I"],["GO%3A0006360","transcription by RNA polymerase I"],["Reactome%3AR-HSA-73864","RNA Polymerase I Transcription"],["PANTHER%3APTHR14440","DNA-DIRECTED RNA POLYMERASE I SUBUNIT RPA49"],["PANTHER%3APTHR47227","DNA-DIRECTED RNA POLYMERASE SUBUNIT K"],["PANTHER%3APTHR10535","DNA-DIRECTED RNA POLYMERASES I, II, AND III SUBUNIT RPABC1"]]},{"id":"GO:0010494","l":"cytoplasmic stress granule","na":1,"nb":14,"a":[["ribonucleoprotein/cytoplasmic_stress_granule.html","cytoplasmic stress granule"]],"b":[["ComplexPortal%3ACPX-21432","CAPRIN1-G3BP1, stress granules assembly regulating complex"],["ComplexPortal%3ACPX-18979","CAPRIN1-G3BP2, stress granules assembly regulating complex"],["ComplexPortal%3ACPX-8306","FMR1-FXR1 RNA-binding complex"],["ComplexPortal%3ACPX-8322","FMR1-FXR2 RNA-binding complex"],["ComplexPortal%3ACPX-8305","FMR1 RNA-binding homodimer"],["ComplexPortal%3ACPX-8342","FXR1-FXR2 RNA-binding complex"]]},{"id":"GO:0030123","l":"AP-3 adaptor complex","na":1,"nb":14,"a":[["other/ap_3_adaptor_complex.html","AP-3 adaptor complex"]],"b":[["ComplexPortal%3ACPX-535","Adapter complex AP-3"],["ComplexPortal%3ACPX-26627","Adaptor complex AP-3"],["ComplexPortal%3ACPX-2727","Adaptor complex AP-3"],["ComplexPortal%3ACPX-5055","Neuronal AP-3 Adaptor complex, sigma3a variant"],["ComplexPortal%3ACPX-5147","Neuronal AP-3 Adaptor complex, sigma3a variant"],["ComplexPortal%3ACPX-5053","Neuronal AP-3 Adaptor complex, sigma3b variant"]]},{"id":"UniProt:P0A7R5","l":"Small ribosomal subunit protein uS10","na":1,"nb":14,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["ComplexPortal%3ACPX-5780","lambdaN-dependent processive transcription antitermination complex"],["ComplexPortal%3ACPX-5674","Transcription elongation complex"],["GO%3A0001072","transcription antitermination factor activity, RNA binding"],["GO%3A0032784","regulation of DNA-templated transcription elongation"],["GO%3A0031564","transcription antitermination"]]},{"id":"UniProt:P23446","l":"","na":1,"nb":14,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0030694","bacterial-type flagellum basal body, rod"],["GO%3A0009424","bacterial-type flagellum hook"],["NCBIfam%3ATIGR02490","flagellar basal-body rod protein FlgF"],["NCBIfam%3ANF009278","flagellar basal body rod protein FlgG"],["NCBIfam%3ATIGR03506","flagellar hook-basal body complex protein"],["InterPro%3AIPR019776","Flagellar basal body rod protein, conserved site"]]},{"id":"GO:0030990","l":"intraciliary transport particle","na":1,"nb":13,"a":[["appendage/cilium.html","cilium"]],"b":[["GO%3A0030990","intraciliary transport particle"],["PANTHER%3APTHR16011","IFT57/HIPPI"],["PANTHER%3APTHR31978","INTRAFLAGELLAR TRANSPORT PROTEIN 20 HOMOLOG"],["PANTHER%3APTHR33724","INTRAFLAGELLAR TRANSPORT PROTEIN 43 HOMOLOG"],["PANTHER%3APTHR13376","INTRAFLAGELLAR TRANSPORT PROTEIN 46 HOMOLOG"],["PANTHER%3APTHR14781","INTRAFLAGELLAR TRANSPORT PROTEIN 56"]]},{"id":"UniProt:P0A7L8","l":"Large ribosomal subunit protein bL27","na":1,"nb":13,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["GO%3A0022625","cytosolic large ribosomal subunit"],["GO%3A0043022","ribosome binding"],["GO%3A0000049","tRNA binding"],["GO%3A1902626","assembly of large subunit precursor of preribosome"],["GO%3A0002181","cytoplasmic translation"]]},{"id":"UniProt:P0AG67","l":"Small ribosomal subunit protein bS1","na":1,"nb":13,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ANF004951","30S ribosomal protein S1"],["NCBIfam%3ANF004952","30S ribosomal protein S1"],["NCBIfam%3ANF004954","30S ribosomal protein S1"],["NCBIfam%3ATIGR00717","30S ribosomal protein S1"],["proteintraitsmech%3AMEROPS_CLEAVAGE_A02_011","human endogenous retrovirus K retropepsin cleavage specificity"]]},{"id":"UniProt:P0AGA2","l":"","na":1,"nb":13,"a":[["secretion_system/secyeg_translocon_complex.html","SecYEG translocon complex"]],"b":[["ComplexPortal%3ACPX-1095","Holo-translocon SecYEG-SecDF-YajC-YidC complex"],["ComplexPortal%3ACPX-1096","Protein-conducting channel SecYEG complex"],["GO%3A0031522","cell envelope Sec protein transport complex"],["GO%3A0005048","signal sequence receptor activity"],["GO%3A0043952","protein transport by the Sec complex"],["GO%3A0006616","SRP-dependent cotranslational protein targeting to membrane, translocation"]]},{"id":"UniProt:P61175","l":"Large ribosomal subunit protein uL22","na":1,"nb":13,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["GO%3A0015934","large ribosomal subunit"],["GO%3A0070180","large ribosomal subunit rRNA binding"],["GO%3A1902626","assembly of large subunit precursor of preribosome"],["GO%3A0042256","cytosolic ribosome assembly"],["GO%3A0042255","ribosome assembly"]]},{"id":"GO:0017119","l":"COG complex","na":1,"nb":12,"a":[["other/cog_complex.html","COG complex"]],"b":[["ComplexPortal%3ACPX-1840","COG Golgi transport complex"],["ComplexPortal%3ACPX-2794","COG tethering complex"],["ComplexPortal%3ACPX-6199","COG tethering complex"],["GO%3A0017119","COG complex"],["PANTHER%3APTHR21506","COMPONENT OF OLIGOMERIC GOLGI COMPLEX 6"],["PANTHER%3APTHR12961","CONSERVED OLIGOMERIC GOLGI COMPLEX COMPONENT 2"]]},{"id":"GO:0045040","l":"protein insertion into mitochondrial outer membrane","na":1,"nb":12,"a":[["other/sam_complex.html","SAM complex"]],"b":[["ComplexPortal%3ACPX-2281","MIM mitochondrial import complex"],["ComplexPortal%3ACPX-26566","MIM mitochondrial import complex"],["ComplexPortal%3ACPX-6133","SAM mitochondrial sorting and assembly machinery complex"],["ComplexPortal%3ACPX-6121","TOM40 mitochondrial outer membrane translocase complex"],["ComplexPortal%3ACPX-8921","TOM40 mitochondrial outer membrane translocase complex"],["ComplexPortal%3ACPX-8926","TOM40 mitochondrial outer membrane translocase complex, testis-specific variant"]]},{"id":"GO:0045275","l":"respiratory chain complex III","na":1,"nb":12,"a":[["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"]],"b":[["ComplexPortal%3ACPX-560","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-563","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-567","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-8730","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-9308","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-8737","Mitochondrial respiratory chain complex III, testis-specific variant"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus (strain ATCC 27405 / DSM 1237 / JCM 9322 / NBRC 103400 / NCIMB 10682 / NRRL B-4536 / VPI 7372)","na":1,"nb":12,"a":[["other/cellulosome.html","cellulosome"]],"b":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["Pfam%3APF00942","Cellulose binding domain"],["Pfam%3APF17996","Carbohydrate esterase 2 N-terminal"],["Pfam%3APF00963","Cohesin domain"],["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF00404","Dockerin type I domain"]]},{"id":"NCBITaxon:224326","l":"Borreliella burgdorferi (strain ATCC 35210 / DSM 4680 / CIP 102532 / B31)","na":1,"nb":12,"a":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]],"b":[["Pfam%3APF09822","ABC-type uncharacterized transport system"],["Pfam%3APF02352","Decorin binding protein"],["Pfam%3APF23357","Domain of unknown function (DUF7088)"],["Pfam%3APF27167","GRAD helix-turn-helix domain"],["Pfam%3APF28090","BB0208-like"],["Pfam%3APF02999","Borrelia orf-D family"]]},{"id":"NCBITaxon:5691","l":"Trypanosoma brucei","na":12,"nb":1,"a":[["cytoskeleton/bilobe_structure.html","bilobe structure"],["cytoskeleton/ciliary_pocket_collar.html","ciliary pocket collar"],["cytoskeleton/flagellum_attachment_zone.html","flagellum attachment zone"],["cytoskeleton/tripartite_attachment_complex.html","tripartite attachment complex"],["membrane_organelle/flagellar_pocket.html","flagellar pocket"],["membrane_organelle/glycosome.html","glycosome"]],"b":[["TED%3AAF-A0A1J0R543-F1-model_v4_TED02","TED novel fold AF-A0A1J0R543-F1-model_v4_TED02"]]},{"id":"NCBITaxon:5702","l":"Trypanosoma brucei brucei","na":1,"nb":12,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF05887","Procyclic acidic repetitive protein (PARP)"],["Pfam%3APF18526","Thymine dioxygenase JBP1 DNA-binding domain"],["Pfam%3APF22592","FCaBP EF-hand domain"],["Pfam%3APF12131","Protein of unknown function (DUF3586)"]]},{"id":"UniProt:P0A7R1","l":"Large ribosomal subunit protein bL9","na":1,"nb":12,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00158","50S ribosomal protein L9"],["InterPro%3AIPR020069","Large ribosomal subunit protein bL9, C-terminal"],["InterPro%3AIPR020070","Large ribosomal subunit protein bL9, N-terminal"],["Pfam%3APF03948","Ribosomal protein L9, C-terminal domain"],["Pfam%3APF01281","Ribosomal protein L9, N-terminal domain"]]},{"id":"UniProt:P0AG96","l":"","na":1,"nb":12,"a":[["secretion_system/secyeg_translocon_complex.html","SecYEG translocon complex"]],"b":[["ComplexPortal%3ACPX-1095","Holo-translocon SecYEG-SecDF-YajC-YidC complex"],["ComplexPortal%3ACPX-1096","Protein-conducting channel SecYEG complex"],["GO%3A0031522","cell envelope Sec protein transport complex"],["GO%3A0043952","protein transport by the Sec complex"],["GO%3A0006616","SRP-dependent cotranslational protein targeting to membrane, translocation"],["NCBIfam%3ANF004372","preprotein translocase subunit SecE"]]},{"id":"UniProt:P23448","l":"","na":1,"nb":12,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0009425","bacterial-type flagellum basal body"],["GO%3A0071973","bacterial-type flagellum-dependent cell motility"],["GO%3A0071978","bacterial-type flagellum-dependent swarming motility"],["NCBIfam%3ATIGR00207","flagellar motor switch protein FliG"],["InterPro%3AIPR023087","Flagellar motor switch protein FliG, C-terminal"],["InterPro%3AIPR032779","Flagellar motor switch protein FliG, middle domain"]]},{"id":"UniProt:P60422","l":"Large ribosomal subunit protein uL2","na":1,"nb":12,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["ComplexPortal%3ACPX-1944","DnaA-L2 DNA replication initiation inhibitory complex"],["GO%3A0032297","negative regulation of DNA-templated DNA replication initiation"],["NCBIfam%3ATIGR01171","50S ribosomal protein L2"],["InterPro%3AIPR022671","Large ribosomal subunit protein uL2, conserved site"],["InterPro%3AIPR022669","Large ribosomal subunit protein uL2, C-terminal"]]},{"id":"GO:0006612","l":"protein targeting to membrane","na":1,"nb":11,"a":[["ribonucleoprotein/signal_recognition_particle.html","signal recognition particle"]],"b":[["GO%3A0006613","cotranslational protein targeting to membrane"],["GO%3A0006620","post-translational protein targeting to endoplasmic reticulum membrane"],["GO%3A0006612","protein targeting to membrane"],["GO%3A0044395","protein targeting to vacuolar membrane"],["PANTHER%3APTHR13254","GOLGI AUTOANTIGEN, GOLGIN SUBFAMILY A, 7"],["PANTHER%3APTHR45831","LD24721P"]]},{"id":"GO:0042601","l":"endospore-forming forespore","na":1,"nb":11,"a":[["spore/endospore_forming_forespore.html","endospore-forming forespore"]],"b":[["GO%3A0042601","endospore-forming forespore"],["NCBIfam%3ANF019784","small acid-soluble spore protein K"],["NCBIfam%3ATIGR03091","small, acid-soluble spore protein K"],["NCBIfam%3ANF019785","small acid-soluble spore protein N"],["NCBIfam%3ATIGR02864","small acid-soluble spore protein SspO"],["NCBIfam%3ANF053738","stage II sporulation protein SpoIIQ"]]},{"id":"UniProt:O32062","l":"","na":1,"nb":11,"a":[["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]],"b":[["GO%3A0043595","endospore cortex"],["GO%3A0042763","intracellular immature spore"],["GO%3A0008932","lytic endotransglycosylase activity"],["CDD%3Acd00118","LysM"],["InterPro%3AIPR018392","LysM domain"],["InterPro%3AIPR014248","Spore coat assembly protein SafA"]]},{"id":"UniProt:P02359","l":"Small ribosomal subunit protein uS7","na":1,"nb":11,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["GO%3A0022627","cytosolic small ribosomal subunit"],["GO%3A0000028","ribosomal small subunit assembly"],["NCBIfam%3ATIGR01029","30S ribosomal protein S7"],["InterPro%3AIPR020606","Small ribosomal subunit protein uS7, conserved site"],["CDD%3Acd14869","uS7_Bacteria"]]},{"id":"UniProt:P0A6E6","l":"","na":1,"nb":11,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["NCBIfam%3ATIGR01216","ATP synthase F1 subunit epsilon"],["NCBIfam%3ANF001847","F0F1 ATP synthase subunit epsilon"],["CDD%3Acd12152","F1-ATPase_delta"],["InterPro%3AIPR020547","ATP synthase epsilon subunit, C-terminal domain"],["InterPro%3AIPR020546","ATP synthase, F1 complex, delta/epsilon subunit, N-terminal"]]},{"id":"UniProt:P0A7J3","l":"Large ribosomal subunit protein uL10","na":1,"nb":11,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ANF000955","50S ribosomal protein L10"],["InterPro%3AIPR002363","Large ribosomal subunit protein uL10, conserved site, bacteria"],["CDD%3Acd05797","Ribosomal_L10"],["InterPro%3AIPR001790","Large ribosomal subunit protein uL10, N-terminal"],["Pfam%3APF00466","Ribosomal protein L10"]]},{"id":"UniProt:P0A7K2","l":"Large ribosomal subunit protein bL12","na":1,"nb":11,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00855","50S ribosomal protein L7/L12"],["CDD%3Acd00387","Ribosomal_L7_L12"],["InterPro%3AIPR013823","Large ribosomal subunit protein bL12, C-terminal"],["InterPro%3AIPR008932","Large ribosomal subunit protein bL12, oligomerization"],["Pfam%3APF16320","Ribosomal protein L7/L12 dimerisation domain"]]},{"id":"UniProt:P68699","l":"","na":1,"nb":11,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["RHEA%3A57720","ATP + H2O + 4 H(+)(in) = ADP + phosphate + 5 H(+)(out)"],["ComplexPortal%3ACPX-4022","ATP synthase complex"],["GO%3A0033177","proton-transporting two-sector ATPase complex, proton-transporting domain"],["GO%3A0042777","proton motive force-driven plasma membrane ATP synthesis"],["NCBIfam%3ATIGR01260","ATP synthase F0 subunit C"],["NCBIfam%3ANF005363","F0F1 ATP synthase subunit C"]]},{"id":"GO:0005736","l":"RNA polymerase I complex","na":1,"nb":10,"a":[["other/nucleolus.html","nucleolus"]],"b":[["ComplexPortal%3ACPX-1664","DNA-directed RNA Polymerase I complex"],["ComplexPortal%3ACPX-2386","DNA-directed RNA polymerase I complex"],["ComplexPortal%3ACPX-2602","DNA-directed RNA polymerase I complex"],["ComplexPortal%3ACPX-8907","DNA-directed RNA polymerase I complex"],["ComplexPortal%3ACPX-8913","DNA-directed RNA polymerase I complex"],["GO%3A0005736","RNA polymerase I complex"]]},{"id":"GO:0005771","l":"multivesicular body","na":10,"nb":1,"a":[["membrane_organelle/endosome.html","endosome"],["membrane_organelle/endosome_lumen.html","endosome lumen"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/late_endosome_lumen.html","late endosome lumen"],["membrane_organelle/late_endosome_membrane.html","late endosome membrane"]],"b":[["GO%3A0005771","multivesicular body"]]},{"id":"GO:0043952","l":"protein transport by the Sec complex","na":1,"nb":10,"a":[["secretion_system/secyeg_translocon_complex.html","SecYEG translocon complex"]],"b":[["ComplexPortal%3ACPX-1095","Holo-translocon SecYEG-SecDF-YajC-YidC complex"],["ComplexPortal%3ACPX-1096","Protein-conducting channel SecYEG complex"],["GO%3A0043952","protein transport by the Sec complex"],["NCBIfam%3ATIGR00963","preprotein translocase subunit SecA"],["NCBIfam%3ATIGR00964","preprotein translocase subunit SecE"],["NCBIfam%3ATIGR00967","preprotein translocase subunit SecY"]]},{"id":"GO:0097545","l":"axonemal doublet microtubule","na":10,"nb":1,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_doublet_microtubule.html","axonemal doublet microtubule"],["cytoskeleton/axonemal_dynein_complex.html","axonemal dynein complex"],["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"],["cytoskeleton/axonemal_microtubule_doublet_inner_junction.html","axonemal microtubule doublet inner junction"],["cytoskeleton/axonemal_microtubule_doublet_inner_sheath.html","axonemal microtubule doublet inner sheath"]],"b":[["GO%3A0097545","axonemal doublet microtubule"]]},{"id":"NCBITaxon:190650","l":"Caulobacter vibrioides (strain ATCC 19089 / CIP 103742 / CB 15)","na":1,"nb":10,"a":[["cytoskeleton/cytoophidium.html","cytoophidium"]],"b":[["IDPO%3A0000060","self-assembly"],["Pfam%3APF27198","FlaEY third domain"],["Pfam%3APF22367","Flagellar hook protein FlgE, third domain"],["Pfam%3APF03799","Cell division protein FtsQ/DivIB, C-terminal"],["Pfam%3APF27294","HfaA"],["Pfam%3APF27277","Holdfast attachment protein D"]]},{"id":"NCBITaxon:345073","l":"Vibrio cholerae serotype O1 (strain ATCC 39541 / Classical Ogawa 395 / O395)","na":1,"nb":10,"a":[["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"]],"b":[["IDPO%3A0000048","limited proteolysis display site"],["Pfam%3APF16671","Actin cross-linking domain"],["Pfam%3APF26759","AcfD helical domain"],["Pfam%3APF00165","Bacterial regulatory helix-turn-helix proteins, AraC family"],["Pfam%3APF08328","Adenylosuccinate lyase C-terminal"],["Pfam%3APF07208","Protein of unknown function (DUF1414)"]]},{"id":"Pfam:PF03023","l":"Lipid II flippase MurJ","na":1,"nb":10,"a":[["envelope/peptidoglycan_based_cell_wall.html","peptidoglycan-based cell wall"]],"b":[["GO%3A0000935","division septum"],["GO%3A0015648","lipid-linked peptidoglycan transporter activity"],["GO%3A0034203","glycolipid translocation"],["GO%3A0015836","lipid-linked peptidoglycan transport"],["GO%3A0034204","lipid translocation"],["GO%3A0009252","peptidoglycan biosynthetic process"]]},{"id":"UniProt:P0A7L0","l":"Large ribosomal subunit protein uL1","na":1,"nb":10,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01169","50S ribosomal protein L1"],["InterPro%3AIPR023673","Large ribosomal subunit protein uL1, conserved site"],["CDD%3Acd00403","Ribosomal_L1"],["Pfam%3APF00687","Ribosomal protein L1p/L10e family"],["InterPro%3AIPR016095","Large ribosomal subunit protein uL1, 3-layer alpha/beta-sandwich domain"]]},{"id":"UniProt:P0A7M9","l":"Large ribosomal subunit protein bL31","na":1,"nb":10,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["GO%3A1904689","negative regulation of cytoplasmic translational initiation"],["NCBIfam%3ANF000612","50S ribosomal protein L31"],["NCBIfam%3ANF001809","50S ribosomal protein L31"],["NCBIfam%3ATIGR00105","50S ribosomal protein L31"],["Pfam%3APF01197","Ribosomal protein L31"]]},{"id":"UniProt:P0A7S9","l":"Small ribosomal subunit protein uS13","na":1,"nb":10,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR03631","30S ribosomal protein S13"],["InterPro%3AIPR018269","Small ribosomal subunit protein uS13, conserved site"],["Pfam%3APF00416","Ribosomal protein S13/S18"],["InterPro%3AIPR027437","Small ribosomal subunit protein uS13, C-terminal"],["InterPro%3AIPR010979","Small ribosomal subunit protein uS13-like, H2TH"]]},{"id":"UniProt:P0A7V3","l":"Small ribosomal subunit protein uS3","na":1,"nb":10,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR01009","30S ribosomal protein S3"],["InterPro%3AIPR018280","Small ribosomal subunit protein uS3, conserved site"],["CDD%3Acd02412","KH-II_30S_S3"],["InterPro%3AIPR001351","Small ribosomal subunit protein uS3, C-terminal"],["Pfam%3APF07650","KH domain"]]},{"id":"UniProt:P0A964","l":"","na":1,"nb":10,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["GO%3A0098561","methyl accepting chemotaxis protein complex"],["GO%3A0009454","aerotaxis"],["GO%3A0051649","establishment of localization in cell"],["NCBIfam%3ANF007903","chemotaxis protein CheW"],["CDD%3Acd00732","CheW"],["InterPro%3AIPR002545","CheW-like domain"]]},{"id":"UniProt:P0AB98","l":"","na":1,"nb":10,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["NCBIfam%3ANF004477","F0F1 ATP synthase subunit A"],["NCBIfam%3ATIGR01131","F0F1 ATP synthase subunit A"],["InterPro%3AIPR023011","ATP synthase, F0 complex, subunit A, active site"],["CDD%3Acd00310","ATP-synt_Fo_a_6"],["Pfam%3APF00119","ATP synthase A chain"]]},{"id":"UniProt:P0ABA6","l":"","na":1,"nb":10,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["GO%3A0042777","proton motive force-driven plasma membrane ATP synthesis"],["NCBIfam%3ATIGR01146","ATP synthase F1 subunit gamma"],["NCBIfam%3ANF004144","F0F1 ATP synthase subunit gamma"],["InterPro%3AIPR023632","ATP synthase, F1 complex, gamma subunit conserved site"],["CDD%3Acd12151","F1-ATPase_gamma"]]},{"id":"UniProt:P0ABB0","l":"","na":1,"nb":10,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["NCBIfam%3ANF009884","F0F1 ATP synthase subunit alpha"],["NCBIfam%3ATIGR00962","F0F1 ATP synthase subunit alpha"],["CDD%3Acd18113","ATP-synt_F1_alpha_C"],["CDD%3Acd18116","ATP-synt_F1_alpha_N"],["CDD%3Acd01132","F1-ATPase_alpha_CD"]]},{"id":"UniProt:P0AD65","l":"","na":1,"nb":10,"a":[["division_machinery/elongasome.html","elongasome"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["GO%3A0071972","peptidoglycan L,D-transpeptidase activity"],["NCBIfam%3ATIGR03423","penicillin-binding protein 2"],["NCBIfam%3ANF008061","peptidoglycan DD-transpeptidase MrdA"],["InterPro%3AIPR005311","Penicillin-binding protein, dimerisation domain"],["Pfam%3APF03717","Penicillin-binding Protein dimerisation domain"]]},{"id":"UniProt:P0ADY7","l":"Large ribosomal subunit protein uL16","na":1,"nb":10,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01164","50S ribosomal protein L16"],["InterPro%3AIPR020798","Large ribosomal subunit protein uL16, conserved site"],["CDD%3Acd01433","Ribosomal_L16_L10e"],["InterPro%3AIPR016180","Large ribosomal subunit protein uL16 domain"],["Pfam%3APF00252","Ribosomal protein L16p/L10e"]]},{"id":"UniProt:P28612","l":"","na":1,"nb":10,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0120101","bacterial-type flagellum stator complex"],["NCBIfam%3ANF005831","flagellar motor protein MotB"],["CDD%3Acd07185","OmpA_C-like"],["InterPro%3AIPR025713","Motility protein B-like, N-terminal domain"],["InterPro%3AIPR006665","OmpA-like domain"],["Pfam%3APF13677","Membrane MotB of proton-channel complex MotA/MotB"]]},{"id":"UniProt:P35620","l":"","na":1,"nb":10,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["NCBIfam%3ATIGR01398","flagellar biosynthesis protein FlhA"],["InterPro%3AIPR025505","FHIPEP conserved site"],["Pfam%3APF00771","FHIPEP family"],["InterPro%3AIPR042194","FHIPEP, domain 1"],["InterPro%3AIPR042193","FHIPEP, domain 3"],["InterPro%3AIPR042196","FHIPEP, domain 4"]]},{"id":"UniProt:P39064","l":"","na":1,"nb":10,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0120101","bacterial-type flagellum stator complex"],["NCBIfam%3ANF005382","flagellar motor protein MotS"],["CDD%3Acd07185","OmpA_C-like"],["InterPro%3AIPR025713","Motility protein B-like, N-terminal domain"],["InterPro%3AIPR006665","OmpA-like domain"],["Pfam%3APF13677","Membrane MotB of proton-channel complex MotA/MotB"]]},{"id":"UniProt:P62399","l":"Large ribosomal subunit protein uL5","na":1,"nb":10,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ANF000585","50S ribosomal protein L5"],["InterPro%3AIPR020929","Large ribosomal subunit protein uL5, conserved site"],["InterPro%3AIPR031309","Large ribosomal subunit protein uL5, C-terminal"],["InterPro%3AIPR031310","Large ribosomal subunit protein uL5, N-terminal"],["Pfam%3APF00673","ribosomal L5P family C-terminus"]]},{"id":"CHEBI:18248","l":"iron atom","na":1,"nb":9,"a":[["membrane_organelle/magnetosome.html","magnetosome"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18248","requires Fe"],["proteintraitsmech%3AMETALPDB_FE_DINUCLEAR","dinuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_HEPTANUCLEAR","heptanuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_HEXANUCLEAR","hexanuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_MONONUCLEAR","mononuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_OCTANUCLEAR","octanuclear iron site"]]},{"id":"GO:0008854","l":"exodeoxyribonuclease V activity","na":1,"nb":9,"a":[["other/exodeoxyribonuclease_v_complex.html","exodeoxyribonuclease V complex"]],"b":[["EC%3A3.1.11.5","exodeoxyribonuclease V"],["ComplexPortal%3ACPX-2197","Exodeoxyribonuclease V complex"],["GO%3A0008854","exodeoxyribonuclease V activity"],["NCBIfam%3ANF008127","exodeoxyribonuclease V subunit alpha"],["NCBIfam%3ATIGR01447","exodeoxyribonuclease V subunit alpha"],["NCBIfam%3ANF008128","exodeoxyribonuclease V subunit beta"]]},{"id":"GO:0016255","l":"attachment of GPI anchor to protein","na":1,"nb":9,"a":[["other/gpi_anchor_transamidase_complex.html","GPI-anchor transamidase complex"]],"b":[["ComplexPortal%3ACPX-10141","GPI-anchor transamidase complex"],["ComplexPortal%3ACPX-1275","GPI-anchor transamidase complex"],["ComplexPortal%3ACPX-2687","GPI-anchor transamidase complex"],["ComplexPortal%3ACPX-6503","GPI-anchor transamidase complex"],["GO%3A0016255","attachment of GPI anchor to protein"],["Reactome%3AR-HSA-162791","Attachment of GPI anchor to uPAR"]]},{"id":"GO:0020007","l":"apical complex","na":9,"nb":1,"a":[["cytoskeleton/conoid.html","conoid"],["cytoskeleton/intraconoid_microtubule.html","intraconoid microtubule"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["cytoskeleton/subpellicular_microtubule.html","subpellicular microtubule"],["membrane_organelle/exoneme.html","exoneme"],["membrane_organelle/microneme.html","microneme"]],"b":[["GO%3A0020007","apical complex"]]},{"id":"GO:0031105","l":"septin complex","na":1,"nb":9,"a":[["cytoskeleton/septin_ring.html","septin ring"]],"b":[["ComplexPortal%3ACPX-1675","Septin complex"],["ComplexPortal%3ACPX-25766","Septin complex, hexamer variant, SEPT2-SEPT6-SEPT-7"],["ComplexPortal%3ACPX-25761","Septin complex, octamer variant, SEPT2-SEPT6-SEPT-7-SEPT3"],["ComplexPortal%3ACPX-25758","Septin complex, octamer variant, SEPT2-SEPT6-SEPT-7-SEPT9"],["ComplexPortal%3ACPX-26526","Septin1-Septin2-pnut complex"],["ComplexPortal%3ACPX-26529","Septin4-Septin5-pnut complex"]]},{"id":"GO:0042144","l":"vacuole fusion, non-autophagic","na":1,"nb":9,"a":[["other/hops_complex.html","HOPS complex"]],"b":[["ComplexPortal%3ACPX-1136","HOPS tethering complex"],["ComplexPortal%3ACPX-1625","HOPS tethering complex"],["ComplexPortal%3ACPX-1278","LMA1 complex, TRX1 variant"],["ComplexPortal%3ACPX-1279","LMA1 complex, TRX2 variant"],["ComplexPortal%3ACPX-5401","Vacuolar SNARE complex VAM3-VTI1-VAM7-NYV1"],["GO%3A0042144","vacuole fusion, non-autophagic"]]},{"id":"GO:0042407","l":"cristae formation","na":1,"nb":9,"a":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"]],"b":[["ComplexPortal%3ACPX-140","MICOS mitochondrial contact site and cristae organizing system complex"],["ComplexPortal%3ACPX-25732","MICOS mitochondrial contact site and cristae organizing system complex, MIC10A variant"],["ComplexPortal%3ACPX-25733","MICOS mitochondrial contact site and cristae organizing system complex, MIC10B variant"],["ComplexPortal%3ACPX-25735","MICOS mitochondrial contact site and cristae organizing system complex, MIC10C variant"],["ComplexPortal%3ACPX-6141","MICOS mitochondrial contact site and cristae organizing system complex"],["GO%3A0042407","cristae formation"]]},{"id":"GO:0042765","l":"GPI-anchor transamidase complex","na":1,"nb":9,"a":[["other/gpi_anchor_transamidase_complex.html","GPI-anchor transamidase complex"]],"b":[["ComplexPortal%3ACPX-10141","GPI-anchor transamidase complex"],["ComplexPortal%3ACPX-1275","GPI-anchor transamidase complex"],["ComplexPortal%3ACPX-2687","GPI-anchor transamidase complex"],["ComplexPortal%3ACPX-6503","GPI-anchor transamidase complex"],["GO%3A0042765","GPI-anchor transamidase complex"],["Pfam%3APF04113","Gpi16 subunit, GPI transamidase component"]]},{"id":"GO:0097546","l":"ciliary base","na":1,"nb":9,"a":[["appendage/cilium.html","cilium"]],"b":[["GO%3A0097546","ciliary base"],["PANTHER%3APTHR38326","CHROMOSOME 11 OPEN READING FRAME 97"],["PANTHER%3APTHR31978","INTRAFLAGELLAR TRANSPORT PROTEIN 20 HOMOLOG"],["PANTHER%3APTHR14781","INTRAFLAGELLAR TRANSPORT PROTEIN 56"],["PANTHER%3APTHR44117","INTRAFLAGELLAR TRANSPORT PROTEIN 88 HOMOLOG"],["PANTHER%3APTHR21532","PHOSPHODIESTERASE HL"]]},{"id":"GO:1905354","l":"exoribonuclease complex","na":1,"nb":9,"a":[["ribonucleoprotein/exosome_rnase_complex.html","exosome (RNase complex)"]],"b":[["ComplexPortal%3ACPX-5783","MERS-CoV 3'-5' exoribonuclease proof-reading complex"],["ComplexPortal%3ACPX-5692","SARS-CoV-2 3'-5' exoribonuclease proof-reading complex"],["ComplexPortal%3ACPX-5707","SARS-CoV 3'-5' exoribonuclease proof-reading complex"],["GO%3A1905354","exoribonuclease complex"],["GO%3A0000178","exosome (RNase complex)"],["GO%3A0090730","Las1 complex"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":9,"a":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]],"b":[["Pfam%3APF07835","Bacterial aa3 type cytochrome c oxidase subunit IV"],["Pfam%3APF04828","Glutathione-dependent formaldehyde-activating enzyme"],["Pfam%3APF16448","LapD/MoxY periplasmic domain"],["Pfam%3APF17267","Family of unknown function (DUF5333)"],["Pfam%3APF17272","Family of unknown function (DUF5337)"],["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"]]},{"id":"NCBITaxon:79929","l":"Methanothermobacter marburgensis (strain ATCC BAA-927 / DSM 2133 / JCM 14651 / NBRC 100331 / OCM 82 / Marburg)","na":1,"nb":9,"a":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]],"b":[["Pfam%3APF23902","PRS2 AAA+ lid C-terminal domain"],["Pfam%3APF02754","Cysteine-rich domain"],["Pfam%3APF12798","4Fe-4S binding domain"],["Pfam%3APF13183","4Fe-4S dicluster domain"],["Pfam%3APF22616","HMD N-terminal domain"],["Pfam%3APF03201","H2-forming N5,N10-methylene-tetrahydromethanopterin dehydrogenase"]]},{"id":"UniProt:P02358","l":"Small ribosomal subunit protein bS6","na":1,"nb":9,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR00166","30S ribosomal protein S6"],["InterPro%3AIPR020815","Small ribosomal subunit protein bS6, conserved site"],["CDD%3Acd00473","bS6"],["Pfam%3APF01250","Ribosomal protein S6"],["InterPro%3AIPR035980","Small ribosomal subunit protein bS6 superfamily"]]},{"id":"UniProt:P0A7L3","l":"Large ribosomal subunit protein bL20","na":1,"nb":9,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01032","50S ribosomal protein L20"],["InterPro%3AIPR049946","Large ribosomal subunit protein bL20, conserved site"],["CDD%3Acd07026","Ribosomal_L20"],["Pfam%3APF00453","Ribosomal protein L20"],["InterPro%3AIPR035566","Ribosomal protein bL20, C-terminal"]]},{"id":"UniProt:P0A9X4","l":"","na":1,"nb":9,"a":[["cytoskeleton/mreb_filament.html","MreB filament"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["GO%3A0099513","polymeric cytoskeletal fiber"],["GO%3A0043093","FtsZ-dependent cytokinesis"],["GO%3A0009252","peptidoglycan biosynthetic process"],["GO%3A0051983","regulation of chromosome segregation"],["NCBIfam%3ATIGR00904","MreB/Mrl family cell shape determining protein"]]},{"id":"UniProt:P0AA10","l":"Large ribosomal subunit protein uL13","na":1,"nb":9,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["GO%3A0070180","large ribosomal subunit rRNA binding"],["NCBIfam%3ATIGR01066","50S ribosomal protein L13"],["InterPro%3AIPR023563","Large ribosomal subunit protein uL13, conserved site"],["CDD%3Acd00392","Ribosomal_L13"],["Pfam%3APF00572","Ribosomal protein L13"]]},{"id":"UniProt:P0ADZ4","l":"Small ribosomal subunit protein uS15","na":1,"nb":9,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["GO%3A0070181","small ribosomal subunit rRNA binding"],["NCBIfam%3ATIGR00952","30S ribosomal protein S15"],["CDD%3Acd00353","Ribosomal_S15p_S13e"],["Pfam%3APF00312","Ribosomal protein S15"],["InterPro%3AIPR009068","uS15/NS1, RNA-binding domain superfamily"]]},{"id":"UniProt:P23453","l":"","na":1,"nb":9,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0009425","bacterial-type flagellum basal body"],["NCBIfam%3ATIGR01397","flagellar motor switch protein FliM"],["CDD%3Acd17908","FliM"],["InterPro%3AIPR001543","Flagellar motor switch protein FliN-like, C-terminal domain"],["Pfam%3APF02154","Flagellar motor switch protein FliM"],["InterPro%3AIPR028976","CheC-like superfamily"]]},{"id":"GO:0000917","l":"division septum assembly","na":1,"nb":8,"a":[["division_machinery/divisome_complex.html","divisome complex"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["GO%3A0000917","division septum assembly"],["GO%3A0140278","mitotic division septum assembly"],["NCBIfam%3ATIGR02205","cell division protein ZipA"],["NCBIfam%3ATIGR00172","Maf family nucleotide pyrophosphatase"],["PANTHER%3APTHR36419","ARRESTIN FAMILY PROTEIN 1"]]},{"id":"GO:0043591","l":"endospore external encapsulating structure","na":8,"nb":1,"a":[["spore/endospore_coat.html","endospore coat"],["spore/endospore_core.html","endospore core"],["spore/endospore_cortex.html","endospore cortex"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"],["spore/exosporium.html","exosporium"],["spore/microsporidian_type_endospore.html","microsporidian-type endospore"]],"b":[["GO%3A0043591","endospore external encapsulating structure"]]},{"id":"GO:0071816","l":"tail-anchored membrane protein insertion into ER membrane","na":1,"nb":8,"a":[["other/get_complex.html","GET complex"]],"b":[["ComplexPortal%3ACPX-2445","Endoplasmic reticulum membrane complex, EMC2A variant"],["ComplexPortal%3ACPX-2451","Endoplasmic reticulum membrane complex, EMC2B variant"],["ComplexPortal%3ACPX-5848","Endoplasmic reticulum membrane complex, EMC8 variant"],["ComplexPortal%3ACPX-5882","Endoplasmic reticulum membrane complex, EMC8 variant"],["ComplexPortal%3ACPX-5881","Endoplasmic reticulum membrane complex, EMC9 variant"],["ComplexPortal%3ACPX-5883","Endoplasmic reticulum membrane complex, EMC9 variant"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":8,"a":[["other/cellulosome.html","cellulosome"]],"b":[["Pfam%3APF02927","Cellulase N-terminal ig-like domain"],["Pfam%3APF00404","Dockerin type I domain"],["PROSITE%3APS00448","Clostridium cellulosome enzymes repeated domain signature"],["PROSITE%3APS60032","Glycosyl hydrolases family 9 (GH9) active site signature 1"],["PROSITE%3APS00592","Glycosyl hydrolases family 9 (GH9) active site signature 2"],["PROSITE%3APS00698","Glycosyl hydrolases family 9 (GH9) active site signature 3"]]},{"id":"NCBITaxon:572477","l":"Allochromatium vinosum (strain ATCC 17899 / DSM 180 / NBRC 103801 / NCIMB 10441 / D)","na":1,"nb":8,"a":[["inclusion/sulfur_globule.html","sulfur globule"]],"b":[["Pfam%3APF01322","Cytochrome C'"],["Pfam%3APF02635","DsrE/DsrF-like family"],["Pfam%3APF21706","Sulfide dehydrogenase [flavocytochrome c] flavoprotein chain, central"],["Pfam%3APF09242","Flavocytochrome c sulphide dehydrogenase, flavin-binding"],["Pfam%3APF01355","High potential iron-sulfur protein"],["Pfam%3APF13686","DsrE/DsrF/DrsH-like family"]]},{"id":"UniProt:P05704","l":"","na":1,"nb":8,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["GO%3A0098561","methyl accepting chemotaxis protein complex"],["CDD%3Acd19407","Tar_Tsr_sensor"],["InterPro%3AIPR003122","Chemotaxis methyl-accepting receptor Tar-related, ligand-binding"],["Pfam%3APF02203","Tar ligand binding domain homologue"],["InterPro%3AIPR035440","Methyl-accepting chemotaxis protein, four helix bundle domain superfamily"],["PROSITE%3APS00538","Bacterial chemotaxis sensory transducers signature"]]},{"id":"UniProt:P07018","l":"","na":1,"nb":8,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["NCBIfam%3ANF007309","methyl-accepting chemotaxis protein IV"],["CDD%3Acd19407","Tar_Tsr_sensor"],["InterPro%3AIPR003122","Chemotaxis methyl-accepting receptor Tar-related, ligand-binding"],["Pfam%3APF02203","Tar ligand binding domain homologue"],["InterPro%3AIPR035440","Methyl-accepting chemotaxis protein, four helix bundle domain superfamily"],["PROSITE%3APS00538","Bacterial chemotaxis sensory transducers signature"]]},{"id":"UniProt:P0A7M6","l":"Large ribosomal subunit protein uL29","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00012","50S ribosomal protein L29"],["InterPro%3AIPR018254","Large ribosomal subunit protein uL29, conserved site"],["CDD%3Acd00427","Ribosomal_L29_HIP"],["Pfam%3APF00831","Ribosomal L29 protein"],["InterPro%3AIPR036049","Large ribosomal subunit protein uL29 superfamily"]]},{"id":"UniProt:P0A7N9","l":"Large ribosomal subunit protein bL33","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ANF001860","50S ribosomal protein L33"],["NCBIfam%3ATIGR01023","50S ribosomal protein L33"],["InterPro%3AIPR018264","Large ribosomal subunit protein bL33, conserved site"],["Pfam%3APF00471","Ribosomal protein L33"],["InterPro%3AIPR038584","Large ribosomal subunit protein bL33 superfamily"]]},{"id":"UniProt:P0A7R9","l":"Small ribosomal subunit protein uS11","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ANF003698","30S ribosomal protein S11"],["NCBIfam%3ATIGR03632","30S ribosomal protein S11"],["InterPro%3AIPR018102","Small ribosomal subunit protein uS11, conserved site"],["Pfam%3APF00411","Ribosomal protein S11"],["InterPro%3AIPR036967","Small ribosomal subunit protein uS11 superfamily"]]},{"id":"UniProt:P0A7W1","l":"Small ribosomal subunit protein uS5","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR01021","30S ribosomal protein S5"],["InterPro%3AIPR018192","Small ribosomal subunit protein uS5, N-terminal, conserved site"],["InterPro%3AIPR005324","Small ribosomal subunit protein uS5, C-terminal"],["InterPro%3AIPR013810","Small ribosomal subunit protein uS5, N-terminal"],["Pfam%3APF03719","Ribosomal protein S5, C-terminal domain"]]},{"id":"UniProt:P0A7W7","l":"Small ribosomal subunit protein uS8","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ANF001109","30S ribosomal protein S8"],["InterPro%3AIPR047863","Small ribosomal subunit protein uS8, conserved site"],["Pfam%3APF00410","Ribosomal protein S8"],["InterPro%3AIPR035987","Small ribosomal subunit protein uS8 superfamily"],["PROSITE%3APS00053","Ribosomal protein S8 signature"]]},{"id":"UniProt:P0A7Y8","l":"","na":1,"nb":8,"a":[["ribonucleoprotein/dimeric_ribonuclease_p_complex.html","dimeric ribonuclease P complex"]],"b":[["GO%3A0030677","ribonuclease P complex"],["GO%3A0042781","3'-tRNA processing endoribonuclease activity"],["NCBIfam%3ATIGR00188","ribonuclease P protein component"],["InterPro%3AIPR020539","Ribonuclease P, conserved site"],["Pfam%3APF00825","Ribonuclease P"],["InterPro%3AIPR014721","Small ribosomal subunit protein uS5 domain 2-type fold, subgroup"]]},{"id":"UniProt:P0ABA0","l":"","na":1,"nb":8,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["NCBIfam%3ANF004411","F0F1 ATP synthase subunit B"],["NCBIfam%3ANF004413","F0F1 ATP synthase subunit B"],["NCBIfam%3ATIGR01144","F0F1 ATP synthase subunit B"],["CDD%3Acd06503","ATP-synt_Fo_b"],["Pfam%3APF00430","ATP synthase B/B' CF(0)"]]},{"id":"UniProt:P0ABA4","l":"","na":1,"nb":8,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["NCBIfam%3ATIGR01145","ATP synthase F1 subunit delta"],["NCBIfam%3ANF004402","F0F1 ATP synthase subunit delta"],["NCBIfam%3ANF004404","F0F1 ATP synthase subunit delta"],["InterPro%3AIPR020781","ATPase, OSCP/delta subunit, conserved site"],["Pfam%3APF00213","ATP synthase delta (OSCP) subunit"]]},{"id":"UniProt:P0ABG7","l":"","na":1,"nb":8,"a":[["division_machinery/elongasome.html","elongasome"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["GO%3A0015648","lipid-linked peptidoglycan transporter activity"],["GO%3A0031504","peptidoglycan-based cell wall organization"],["NCBIfam%3ANF008060","peptidoglycan glycosyltransferase MrdB"],["NCBIfam%3ATIGR02210","rod shape-determining protein RodA"],["InterPro%3AIPR018365","Cell cycle, FtsW / RodA / SpoVE, conserved site"]]},{"id":"UniProt:P0ABH0","l":"","na":1,"nb":8,"a":[["division_machinery/divisome_complex.html","divisome complex"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["NCBIfam%3ANF007009","cell division protein FtsA"],["NCBIfam%3ATIGR01174","cell division protein FtsA"],["CDD%3Acd24048","ASKHA_NBD_FtsA"],["InterPro%3AIPR003494","SHS2 domain inserted in FtsA"],["Pfam%3APF14450","Cell division protein FtsA"]]},{"id":"UniProt:P0ABJ6","l":"","na":1,"nb":8,"a":[["energy_complex/cytochrome_o_ubiquinol_oxidase_complex.html","cytochrome o ubiquinol oxidase complex"]],"b":[["ComplexPortal%3ACPX-2102","Cytochrome bo3 ubiquinol oxidase complex"],["GO%3A0009319","cytochrome o ubiquinol oxidase complex"],["GO%3A0009486","cytochrome bo3 ubiquinol oxidase activity"],["GO%3A0015453","oxidoreduction-driven active transmembrane transporter activity"],["GO%3A0015990","electron transport coupled proton transport"],["NCBIfam%3ANF007878","cytochrome o ubiquinol oxidase subunit IV"]]},{"id":"UniProt:P0ADY3","l":"Large ribosomal subunit protein uL14","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01067","50S ribosomal protein L14"],["InterPro%3AIPR019972","Large ribosomal subunit protein uL14, conserved site"],["CDD%3Acd00337","Ribosomal_uL14"],["Pfam%3APF00238","Ribosomal protein L14p/L23e"],["InterPro%3AIPR036853","Large ribosomal subunit protein uL14 superfamily"]]},{"id":"UniProt:P0AG51","l":"Large ribosomal subunit protein uL30","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01308","50S ribosomal protein L30"],["InterPro%3AIPR018038","Large ribosomal subunit protein uL30, conserved site"],["CDD%3Acd01658","Ribosomal_L30"],["InterPro%3AIPR016082","Large ribosomal subunit protein uL30-like, ferredoxin-like fold domain"],["Pfam%3APF00327","Ribosomal protein L30p/L7e"]]},{"id":"UniProt:P0AG55","l":"Large ribosomal subunit protein uL6","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR03654","50S ribosomal protein L6"],["InterPro%3AIPR002358","Large ribosomal subunit protein uL6, conserved site"],["InterPro%3AIPR020040","Large ribosomal subunit protein uL6, alpha-beta domain"],["Pfam%3APF00347","Ribosomal protein L6"],["InterPro%3AIPR036789","Large ribosomal subunit protein uL6-like, alpha-beta domain superfamily"]]},{"id":"UniProt:P16926","l":"","na":1,"nb":8,"a":[["division_machinery/elongasome.html","elongasome"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["NCBIfam%3ATIGR00219","rod shape-determining protein MreC"],["InterPro%3AIPR055342","Rod shape-determining protein MreC, beta-barrel core"],["Pfam%3APF04085","Rod shape-determining protein MreC, barrel core"],["InterPro%3AIPR042177","Cell/Rod shape-determining protein MreC, domain 1"],["InterPro%3AIPR042175","Cell/Rod shape-determining protein MreC, domain 2"]]},{"id":"UniProt:P60624","l":"Large ribosomal subunit protein uL24","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01079","50S ribosomal protein L24"],["InterPro%3AIPR005825","Large ribosomal subunit protein uL24, conserved site"],["CDD%3Acd06089","KOW_RPL26"],["InterPro%3AIPR057264","Large ribosomal subunit protein uL24, C-terminal domain"],["InterPro%3AIPR041988","Large ribosomal subunit protein uL24, KOW domain"]]},{"id":"UniProt:P68919","l":"Large ribosomal subunit protein bL25","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ANF004612","50S ribosomal protein L25"],["CDD%3Acd00495","Ribosomal_L25_TL5_CTC"],["InterPro%3AIPR029751","Large ribosomal subunit protein bL25, L25 domain"],["Pfam%3APF01386","Ribosomal L25p family"],["InterPro%3AIPR011035","Large ribosomal subunit protein bL25/Gln-tRNA synthetase, anti-codon-binding domain superfamily"]]},{"id":"GO:0006901","l":"vesicle coat assembly","na":1,"nb":7,"a":[["other/vesicle_coat.html","vesicle coat"]],"b":[["ComplexPortal%3ACPX-4764","TRAPP II complex"],["ComplexPortal%3ACPX-4749","TRAPP II complex, TRAPPC2 variant"],["ComplexPortal%3ACPX-6902","TRAPP II complex, TRAPPC2B variant"],["GO%3A0048208","COPII vesicle coat assembly"],["GO%3A0048200","Golgi transport vesicle coating"],["GO%3A0016183","synaptic vesicle coating"]]},{"id":"GO:0009338","l":"exodeoxyribonuclease V complex","na":1,"nb":7,"a":[["other/exodeoxyribonuclease_v_complex.html","exodeoxyribonuclease V complex"]],"b":[["ComplexPortal%3ACPX-2197","Exodeoxyribonuclease V complex"],["GO%3A0009338","exodeoxyribonuclease V complex"],["NCBIfam%3ANF008127","exodeoxyribonuclease V subunit alpha"],["NCBIfam%3ATIGR01447","exodeoxyribonuclease V subunit alpha"],["NCBIfam%3ATIGR00609","exodeoxyribonuclease V subunit beta"],["NCBIfam%3ANF008289","exodeoxyribonuclease V subunit gamma"]]},{"id":"GO:0030128","l":"clathrin coat of endocytic vesicle","na":7,"nb":1,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle.html","clathrin-coated endocytic vesicle"],["membrane_organelle/clathrin_coated_endocytic_vesicle_membrane.html","clathrin-coated endocytic vesicle membrane"],["membrane_organelle/endocytic_vesicle.html","endocytic vesicle"],["membrane_organelle/endocytic_vesicle_membrane.html","endocytic vesicle membrane"],["other/ap_2_adaptor_complex.html","AP-2 adaptor complex"],["other/clathrin_coat_of_coated_pit.html","clathrin coat of coated pit"]],"b":[["GO%3A0030128","clathrin coat of endocytic vesicle"]]},{"id":"GO:0030897","l":"HOPS complex","na":1,"nb":7,"a":[["other/hops_complex.html","HOPS complex"]],"b":[["ComplexPortal%3ACPX-1136","HOPS tethering complex"],["ComplexPortal%3ACPX-1625","HOPS tethering complex"],["ComplexPortal%3ACPX-6212","HOPS tethering complex"],["ComplexPortal%3ACPX-936","HOPS tethering complex"],["GO%3A0030897","HOPS complex"],["GO%3A1902502","multivesicular body HOPS complex"]]},{"id":"GO:0032156","l":"septin cytoskeleton","na":1,"nb":7,"a":[["cytoskeleton/septin_ring.html","septin ring"]],"b":[["GO%3A0150050","postsynaptic septin cytoskeleton"],["GO%3A0032159","septin cap"],["GO%3A0032173","septin collar"],["GO%3A0032156","septin cytoskeleton"],["GO%3A0032160","septin filament array"],["GO%3A0005940","septin ring"]]},{"id":"GO:0033115","l":"cyanelle thylakoid membrane","na":7,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/cyanelle_thylakoid_lumen.html","cyanelle thylakoid lumen"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"]],"b":[["GO%3A0033115","cyanelle thylakoid membrane"]]},{"id":"GO:0035964","l":"COPI-coated vesicle budding","na":7,"nb":1,"a":[["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"],["membrane_organelle/golgi_membrane.html","Golgi membrane"],["other/copi_vesicle_coat.html","COPI vesicle coat"]],"b":[["GO%3A0035964","COPI-coated vesicle budding"]]},{"id":"GO:0043953","l":"protein transport by the Tat complex","na":1,"nb":7,"a":[["secretion_system/tat_protein_transport_complex.html","TAT protein transport complex"]],"b":[["ComplexPortal%3ACPX-3445","Twin-arginine translocation complex"],["GO%3A0043953","protein transport by the Tat complex"],["NCBIfam%3ANF001854","Sec-independent protein translocase subunit TatA"],["NCBIfam%3ANF002813","Sec-independent protein translocase subunit TatA"],["NCBIfam%3ATIGR01912","Sec-independent protein translocase TatC"],["NCBIfam%3ANF001940","twin-arginine translocase TatA/TatE family subunit"]]},{"id":"GO:0097540","l":"axonemal central pair","na":7,"nb":1,"a":[["cytoskeleton/axonemal_central_apparatus.html","axonemal central apparatus"],["cytoskeleton/axonemal_central_pair.html","axonemal central pair"],["cytoskeleton/axonemal_central_pair_projection.html","axonemal central pair projection"],["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"],["cytoskeleton/c1_axonemal_microtubule.html","C1 axonemal microtubule"],["cytoskeleton/c2_axonemal_microtubule.html","C2 axonemal microtubule"]],"b":[["GO%3A0097540","axonemal central pair"]]},{"id":"GO:0097597","l":"ventral disc","na":7,"nb":1,"a":[["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_crossbridge.html","ventral disc crossbridge"],["cytoskeleton/ventral_disc_dorsal_microribbon.html","ventral disc dorsal microribbon"],["cytoskeleton/ventral_disc_lateral_crest.html","ventral disc lateral crest"],["cytoskeleton/ventral_disc_microtubule_array.html","ventral disc microtubule array"],["cytoskeleton/ventral_disc_overlap_zone.html","ventral disc overlap zone"]],"b":[["GO%3A0097597","ventral disc"]]},{"id":"GO:0097649","l":"A axonemal microtubule","na":7,"nb":1,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_a_tubule_inner_sheath.html","axonemal A tubule inner sheath"],["cytoskeleton/axonemal_doublet_microtubule.html","axonemal doublet microtubule"],["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"],["cytoskeleton/axonemal_microtubule_doublet_inner_junction.html","axonemal microtubule doublet inner junction"],["cytoskeleton/axonemal_microtubule_doublet_outer_junction.html","axonemal microtubule doublet outer junction"]],"b":[["GO%3A0097649","A axonemal microtubule"]]},{"id":"GO:0097650","l":"B axonemal microtubule","na":7,"nb":1,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_b_tubule_inner_sheath.html","axonemal B tubule inner sheath"],["cytoskeleton/axonemal_doublet_microtubule.html","axonemal doublet microtubule"],["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"],["cytoskeleton/axonemal_microtubule_doublet_inner_junction.html","axonemal microtubule doublet inner junction"],["cytoskeleton/axonemal_microtubule_doublet_outer_junction.html","axonemal microtubule doublet outer junction"]],"b":[["GO%3A0097650","B axonemal microtubule"]]},{"id":"InterPro:IPR001119","l":"S-layer homology domain","na":1,"nb":7,"a":[["envelope/s_layer.html","S-layer"]],"b":[["InterPro%3AIPR011459","Domain of unknown function DUF1565"],["InterPro%3AIPR001119","S-layer homology domain"],["Pfam%3APF13205","Bacterial Ig-like domain"],["Pfam%3APF03424","Carbohydrate binding domain (family 17/28)"],["Pfam%3APF06452","Carbohydrate family 9 binding domain-like"],["Pfam%3APF07602","Protein of unknown function (DUF1565)"]]},{"id":"InterPro:IPR001241","l":"","na":1,"nb":7,"a":[["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["Pfam%3APF00204","DNA gyrase B"],["Pfam%3APF00521","DNA gyrase/topoisomerase IV, subunit A"],["Pfam%3APF21249","GyrB, hook"],["Pfam%3APF18053","DNA gyrase B subunit insert domain"],["Pfam%3APF00986","DNA gyrase B subunit, carboxyl terminus"],["Pfam%3APF08070","DTHCT (NUC029) region"]]},{"id":"InterPro:IPR004489","l":"","na":1,"nb":7,"a":[["energy_complex/fumarate_reductase_complex.html","fumarate reductase complex"]],"b":[["Pfam%3APF02754","Cysteine-rich domain"],["Pfam%3APF13085","2Fe-2S iron-sulfur cluster binding domain"],["Pfam%3APF13237","4Fe-4S dicluster domain"],["Pfam%3APF13534","4Fe-4S dicluster domain"],["Pfam%3APF13183","4Fe-4S dicluster domain"],["PROSITE%3APS00197","2Fe-2S ferredoxin-type iron-sulfur binding region signature"]]},{"id":"NCBITaxon:837","l":"Porphyromonas gingivalis","na":1,"nb":7,"a":[["secretion_system/type_ix_protein_secretion_system_complex.html","type IX protein secretion system complex"]],"b":[["Pfam%3APF07675","Cleaved Adhesin Domain"],["Pfam%3APF22492","FimA4 pilin C-terminal domain"],["Pfam%3APF15495","Major fimbrial subunit protein type IV, Fimbrillin, C-terminal"],["Pfam%3APF26306","FimD protein third domain"],["Pfam%3APF27397","FimE C-terminal domain"],["Pfam%3APF10365","Domain of unknown function (DUF2436)"]]},{"id":"Pfam:PF04728","l":"Lipoprotein leucine-zipper","na":1,"nb":7,"a":[["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"]],"b":[["GO%3A0043580","periplasmic space organization"],["NCBIfam%3ANF007428","lipoprotein YqhH"],["NCBIfam%3ANF040598","Lpp/OprI family alanine-zipper lipoprotein"],["NCBIfam%3ANF011925","major outer membrane lipoprotein"],["InterPro%3AIPR006817","Lipoprotein leucine-zipper"],["Pfam%3APF04728","Lipoprotein leucine-zipper"]]},{"id":"UniProt:P0A7K6","l":"Large ribosomal subunit protein bL19","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01024","50S ribosomal protein L19"],["InterPro%3AIPR018257","Large ribosomal subunit protein bL19, conserved site"],["Pfam%3APF01245","Ribosomal protein L19"],["InterPro%3AIPR038657","Large ribosomal subunit protein bL19 superfamily"],["PROSITE%3APS01015","Ribosomal protein L19 signature"]]},{"id":"UniProt:P0A7N1","l":"Large ribosomal subunit protein bL31B","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00105","50S ribosomal protein L31"],["NCBIfam%3ANF002462","type B 50S ribosomal protein L31"],["Pfam%3APF01197","Ribosomal protein L31"],["InterPro%3AIPR042105","Large ribosomal subunit protein bL31 superfamily"],["PROSITE%3APS01143","Ribosomal protein L31 signature"]]},{"id":"UniProt:P0A7Q1","l":"Large ribosomal subunit protein bL35","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00001","50S ribosomal protein L35"],["InterPro%3AIPR018265","Large ribosomal subunit protein bL35, conserved site"],["Pfam%3APF01632","Ribosomal protein L35"],["InterPro%3AIPR037229","Large ribosomal subunit protein bL35 superfamily"],["PROSITE%3APS00936","Ribosomal protein L35 signature"]]},{"id":"UniProt:P0A7T3","l":"Small ribosomal subunit protein bS16","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR00002","30S ribosomal protein S16"],["InterPro%3AIPR020592","Small ribosomal subunit protein bS16, conserved site"],["Pfam%3APF00886","Ribosomal protein S16"],["InterPro%3AIPR023803","Small ribosomal subunit protein bS16 domain superfamily"],["PROSITE%3APS00732","Ribosomal protein S16 signature"]]},{"id":"UniProt:P0A7T7","l":"Small ribosomal subunit protein bS18","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR00165","30S ribosomal protein S18"],["InterPro%3AIPR018275","Small ribosomal subunit protein bS18, conserved site"],["Pfam%3APF01084","Ribosomal protein S18"],["InterPro%3AIPR036870","Small ribosomal subunit protein bS18 superfamily"],["PROSITE%3APS00057","Ribosomal protein S18 signature"]]},{"id":"UniProt:P0A7U3","l":"Small ribosomal subunit protein uS19","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR01050","30S ribosomal protein S19"],["InterPro%3AIPR020934","Small ribosomal subunit protein uS19, conserved site"],["Pfam%3APF00203","Ribosomal protein S19"],["InterPro%3AIPR023575","Small ribosomal subunit protein uS19, superfamily"],["PROSITE%3APS00323","Ribosomal protein S19 signature"]]},{"id":"UniProt:P0A7U7","l":"Small ribosomal subunit protein bS20","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["GO%3A0008073","ornithine decarboxylase inhibitor activity"],["GO%3A0070181","small ribosomal subunit rRNA binding"],["NCBIfam%3ATIGR00029","30S ribosomal protein S20"],["Pfam%3APF01649","Ribosomal protein S20"],["InterPro%3AIPR036510","Small ribosomal subunit protein bS20 superfamily"]]},{"id":"UniProt:P0A9A6","l":"","na":1,"nb":7,"a":[["division_machinery/divisome_complex.html","divisome complex"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["NCBIfam%3ATIGR00065","cell division protein FtsZ"],["InterPro%3AIPR020805","Cell division protein FtsZ, conserved site"],["CDD%3Acd02201","FtsZ_type1"],["InterPro%3AIPR024757","Cell division protein FtsZ, C-terminal"],["PROSITE%3APS01134","FtsZ protein signature 1"]]},{"id":"UniProt:P0AG44","l":"Large ribosomal subunit protein bL17","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00059","50S ribosomal protein L17"],["InterPro%3AIPR047859","Large ribosomal subunit protein bL17, conserved site"],["Pfam%3APF01196","Ribosomal protein L17"],["InterPro%3AIPR036373","Large ribosomal subunit protein bL17 superfamily"],["PROSITE%3APS01167","Ribosomal protein L17 signature"]]},{"id":"UniProt:P0AG63","l":"Small ribosomal subunit protein uS17","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ANF004123","30S ribosomal protein S17"],["NCBIfam%3ATIGR03635","30S ribosomal protein S17"],["InterPro%3AIPR019979","Small ribosomal subunit protein uS17, conserved site"],["CDD%3Acd00364","Ribosomal_uS17"],["Pfam%3APF00366","Ribosomal protein S17"]]},{"id":"UniProt:P0AGE0","l":"","na":1,"nb":7,"a":[["other/single_stranded_dna_binding_protein_complex.html","single-stranded DNA-binding protein complex"]],"b":[["ComplexPortal%3ACPX-1928","SSB single-stranded DNA binding complex"],["GO%3A0044777","single-stranded DNA-binding protein complex"],["NCBIfam%3ANF006533","single-stranded DNA-binding protein"],["NCBIfam%3ATIGR00621","single-stranded DNA-binding protein"],["CDD%3Acd04496","SSB_OBF"],["Pfam%3APF00436","Single-strand binding protein family"]]},{"id":"UniProt:P23447","l":"","na":1,"nb":7,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0009431","bacterial-type flagellum basal body, MS ring"],["NCBIfam%3ATIGR00206","flagellar basal-body MS-ring/collar protein FliF"],["InterPro%3AIPR013556","Flagellar M-ring C-terminal"],["InterPro%3AIPR006182","Flagellar M-ring, N-terminal"],["Pfam%3APF08345","Flagellar M-ring protein C-terminal"],["Pfam%3APF01514","Secretory protein of YscJ/FliF RBM domain"]]},{"id":"UniProt:P28611","l":"","na":1,"nb":7,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["NCBIfam%3ANF005997","flagellar motor stator protein MotA"],["InterPro%3AIPR000540","Flagellar motor protein MotA, conserved site"],["InterPro%3AIPR002898","MotA/TolQ/ExbB proton channel"],["InterPro%3AIPR046786","Motility protein A, N-terminal"],["Pfam%3APF20560","Motility protein A N-terminal"],["Pfam%3APF01618","MotA/TolQ/ExbB proton channel family"]]},{"id":"UniProt:P68679","l":"Small ribosomal subunit protein bS21","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR00030","30S ribosomal protein S21"],["InterPro%3AIPR018278","Small ribosomal subunit protein bS21, conserved site"],["Pfam%3APF01165","Ribosomal protein S21"],["InterPro%3AIPR038380","Small ribosomal subunit protein bS21 superfamily"],["PROSITE%3APS01181","Ribosomal protein S21 signature"]]},{"id":"UniProt:P77173","l":"","na":1,"nb":7,"a":[["division_machinery/divisome_complex.html","divisome complex"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["NCBIfam%3ATIGR02205","cell division protein ZipA"],["CDD%3Acd00231","ZipA"],["InterPro%3AIPR007449","ZipA, C-terminal FtsZ-binding domain"],["Pfam%3APF04354","ZipA, C-terminal FtsZ-binding domain"],["InterPro%3AIPR036765","ZipA, C-terminal FtsZ-binding domain superfamily"]]},{"id":"CHEBI:35915","l":"","na":1,"nb":6,"a":[["inclusion/lipid_droplet.html","lipid droplet"]],"b":[["EC%3A2.3.1.43","phosphatidylcholine--sterol O-acyltransferase"],["EC%3A2.3.1.73","diacylglycerol--sterol O-acyltransferase"],["EC%3A3.1.1.13","sterol esterase"],["RHEA%3A21204","a sterol + a 1,2-diacyl-sn-glycero-3-phosphocholine = a sterol ester + a 1-acyl-sn-glycero-3-phosphocholine"],["RHEA%3A13301","a sterol + a 1,2-diacyl-sn-glycerol = a sterol ester + a 1-acyl-sn-glycerol"],["RHEA%3A10100","a sterol ester + H2O = a sterol + a fatty acid + H(+)"]]},{"id":"GO:0000133","l":"polarisome","na":1,"nb":6,"a":[["other/polarisome.html","polarisome"]],"b":[["ComplexPortal%3ACPX-3188","Polarisome"],["GO%3A0031560","cellular bud neck polarisome"],["GO%3A0031561","cellular bud tip polarisome"],["GO%3A0031562","hyphal tip polarisome"],["GO%3A0031563","mating projection tip polarisome"],["GO%3A0000133","polarisome"]]},{"id":"GO:0000148","l":"1,3-beta-D-glucan synthase complex","na":1,"nb":6,"a":[["other/1_3_beta_d_glucan_synthase_complex.html","1,3-beta-D-glucan synthase complex"]],"b":[["ComplexPortal%3ACPX-1812","1,3-beta-D-glucan synthase complex, FKS1-RHO1 variant"],["ComplexPortal%3ACPX-1813","1,3-beta-D-glucan synthase complex, FKS2-RHO1 variant"],["ComplexPortal%3ACPX-3028","1,3-beta-D-glucan synthase complex, FKS3-RHO1 variant"],["GO%3A0000148","1,3-beta-D-glucan synthase complex"],["InterPro%3AIPR003440","Glycosyl transferase 48 domain"],["Pfam%3APF02364","1,3-beta-glucan synthase component"]]},{"id":"GO:0000938","l":"GARP complex","na":1,"nb":6,"a":[["other/garp_complex.html","GARP complex"]],"b":[["ComplexPortal%3ACPX-1718","GARP tethering complex"],["ComplexPortal%3ACPX-365","GARP tethering complex"],["ComplexPortal%3ACPX-6208","GARP tethering complex"],["ComplexPortal%3ACPX-2788","GARP tethering complex, Vps50 variant"],["ComplexPortal%3ACPX-2793","GARP tethering complex, Vps54 variant"],["GO%3A0000938","GARP complex"]]},{"id":"GO:0001401","l":"SAM complex","na":1,"nb":6,"a":[["other/sam_complex.html","SAM complex"]],"b":[["ComplexPortal%3ACPX-1744","Mitochondrial sorting and assembly machinery complex"],["ComplexPortal%3ACPX-6133","SAM mitochondrial sorting and assembly machinery complex"],["GO%3A0001401","SAM complex"],["InterPro%3AIPR019564","Mitochondrial outer membrane transport complex Sam37/metaxin, N-terminal domain"],["NCBIfam%3ANF022041","Tom37 metaxin N-terminal-like domain-containing protein"],["Pfam%3APF10568","Outer mitochondrial membrane transport complex protein"]]},{"id":"GO:0005693","l":"U12 snRNP","na":6,"nb":1,"a":[["ribonucleoprotein/u11_u12_snrnp.html","U11/U12 snRNP"],["ribonucleoprotein/u12_snrnp.html","U12 snRNP"],["ribonucleoprotein/u12_type_catalytic_step_1_spliceosome.html","U12-type catalytic step 1 spliceosome"],["ribonucleoprotein/u12_type_catalytic_step_2_spliceosome.html","U12-type catalytic step 2 spliceosome"],["ribonucleoprotein/u12_type_post_mrna_release_spliceosomal_complex.html","U12-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u12_type_post_spliceosomal_complex.html","U12-type post-spliceosomal complex"]],"b":[["GO%3A0005693","U12 snRNP"]]},{"id":"GO:0006797","l":"polyphosphate metabolic process","na":1,"nb":6,"a":[["membrane_organelle/acidocalcisome.html","acidocalcisome"]],"b":[["GO%3A0006799","polyphosphate biosynthetic process"],["GO%3A0006798","polyphosphate catabolic process"],["GO%3A0006797","polyphosphate metabolic process"],["NCBIfam%3ANF042973","ADP-polyphosphate phosphotransferase"],["NCBIfam%3ATIGR03708","polyphosphate:AMP phosphotransferase"],["NCBIfam%3ATIGR03709","PPK2 family polyphosphate kinase"]]},{"id":"GO:0006998","l":"nuclear envelope organization","na":1,"nb":6,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"]],"b":[["ComplexPortal%3ACPX-1787","Nem1-Spo7 phosphatase complex"],["GO%3A0006998","nuclear envelope organization"],["GO%3A0018985","pronuclear envelope synthesis"],["PANTHER%3APTHR47808","INNER NUCLEAR MEMBRANE PROTEIN HEH2-RELATED"],["PANTHER%3APTHR28538","INTEGRAL INNER NUCLEAR MEMBRANE PROTEIN IMA1"],["PANTHER%3APTHR28136","NUCLEUS EXPORT PROTEIN BRR6"]]},{"id":"GO:0009843","l":"cyanelle thylakoid","na":6,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/cyanelle_thylakoid_lumen.html","cyanelle thylakoid lumen"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"],["membrane_organelle/plastid_thylakoid.html","plastid thylakoid"]],"b":[["GO%3A0009843","cyanelle thylakoid"]]},{"id":"GO:0020008","l":"rhoptry","na":6,"nb":1,"a":[["membrane_organelle/mononeme.html","mononeme"],["membrane_organelle/rhoptry.html","rhoptry"],["membrane_organelle/rhoptry_lumen.html","rhoptry lumen"],["membrane_organelle/rhoptry_membrane.html","rhoptry membrane"],["membrane_organelle/rhoptry_neck.html","rhoptry neck"],["other/apical_complex.html","apical complex"]],"b":[["GO%3A0020008","rhoptry"]]},{"id":"GO:0033112","l":"cyanelle envelope","na":6,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"]],"b":[["GO%3A0033112","cyanelle envelope"]]},{"id":"GO:0033114","l":"cyanelle thylakoid lumen","na":6,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/cyanelle_thylakoid_lumen.html","cyanelle thylakoid lumen"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"],["membrane_organelle/plastid_thylakoid_lumen.html","plastid thylakoid lumen"]],"b":[["GO%3A0033114","cyanelle thylakoid lumen"]]},{"id":"GO:0036012","l":"cyanelle inner membrane","na":6,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"]],"b":[["GO%3A0036012","cyanelle inner membrane"]]},{"id":"GO:0038203","l":"TORC2 signaling","na":1,"nb":6,"a":[["other/torc2_complex.html","TORC2 complex"]],"b":[["ComplexPortal%3ACPX-2269","TORC2 complex"],["ComplexPortal%3ACPX-26513","TORC2 serine/threonine protein kinase complex"],["GO%3A0038203","TORC2 signaling"],["PANTHER%3APTHR13298","CYTOSOLIC REGULATOR PIANISSIMO"],["PANTHER%3APTHR32428","TARGET OF RAPAMYCIN COMPLEX 2 SUBUNIT BIT61-RELATED"],["PANTHER%3APTHR13335","TARGET OF RAPAMYCIN COMPLEX 2 SUBUNIT MAPKAP1"]]},{"id":"GO:0043264","l":"extracellular membraneless organelle","na":1,"nb":6,"a":[["other/cellulosome.html","cellulosome"]],"b":[["GO%3A0043263","cellulosome"],["GO%3A0043264","extracellular membraneless organelle"],["GO%3A0140644","neutrophil extracellular trap"],["GO%3A0055040","periplasmic flagellum"],["GO%3A0055039","trichocyst"],["GO%3A0085026","tubovesicular membrane network"]]},{"id":"GO:0043595","l":"endospore cortex","na":6,"nb":1,"a":[["spore/endospore_coat.html","endospore coat"],["spore/endospore_core.html","endospore core"],["spore/endospore_cortex.html","endospore cortex"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"],["spore/outer_endospore_membrane.html","outer endospore membrane"],["spore/spore_inner_membrane.html","spore inner membrane"]],"b":[["GO%3A0043595","endospore cortex"]]},{"id":"GO:0070111","l":"organellar chromatophore","na":6,"nb":1,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_inner_membrane.html","organellar chromatophore inner membrane"],["membrane_organelle/organellar_chromatophore_intermembrane_space.html","organellar chromatophore intermembrane space"],["membrane_organelle/organellar_chromatophore_membrane.html","organellar chromatophore membrane"],["membrane_organelle/organellar_chromatophore_outer_membrane.html","organellar chromatophore outer membrane"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"]],"b":[["GO%3A0070111","organellar chromatophore"]]},{"id":"GO:0070118","l":"organellar chromatophore thylakoid membrane","na":6,"nb":1,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_membrane.html","organellar chromatophore membrane"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"],["membrane_organelle/organellar_chromatophore_thylakoid_lumen.html","organellar chromatophore thylakoid lumen"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"],["membrane_organelle/plastid_thylakoid_membrane.html","plastid thylakoid membrane"]],"b":[["GO%3A0070118","organellar chromatophore thylakoid membrane"]]},{"id":"NCBITaxon:1430","l":"Bacillus thuringiensis subsp. israelensis","na":1,"nb":6,"a":[["inclusion/parasporal_crystal.html","parasporal crystal"]],"b":[["Pfam%3APF01338","Bacillus thuringiensis toxin"],["Pfam%3APF17997","Insecticidal delta-endotoxin CryIA(c) domain 5"],["Pfam%3APF21463","Cry1Ac, domain VII"],["Pfam%3APF03944","delta endotoxin"],["Pfam%3APF03945","delta endotoxin, N-terminal domain"],["Pfam%3APF00555","delta endotoxin"]]},{"id":"NCBITaxon:5141","l":"Neurospora crassa","na":6,"nb":1,"a":[["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysomal_membrane.html","glyoxysomal membrane"],["membrane_organelle/glyoxysome.html","glyoxysome"],["membrane_organelle/woronin_body.html","Woronin body"],["other/polarisome.html","polarisome"],["other/spitzenkorper.html","spitzenkorper"]],"b":[["TED%3AAF-A0A0B0E1R4-F1-model_v4_TED01","TED novel fold AF-A0A0B0E1R4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:5911","l":"Tetrahymena thermophila","na":6,"nb":1,"a":[["cytoskeleton/axonemal_microtubule_doublet_outer_junction.html","axonemal microtubule doublet outer junction"],["membrane_organelle/macronucleus.html","macronucleus"],["membrane_organelle/micronucleus.html","micronucleus"],["membrane_organelle/mucocyst.html","mucocyst"],["other/ap_3_adaptor_complex.html","AP-3 adaptor complex"],["other/ap_type_membrane_coat_adaptor_complex.html","AP-type membrane coat adaptor complex"]],"b":[["Pfam%3APF10699","Male gamete fusion factor"]]},{"id":"UniProt:P02968","l":"","na":1,"nb":6,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["NCBIfam%3ANF009446","flagellin Hag"],["InterPro%3AIPR046358","Flagellin, C-terminal domain"],["InterPro%3AIPR001029","Flagellin, N-terminal domain"],["Pfam%3APF00700","Bacterial flagellin C-terminal helical region"],["Pfam%3APF00669","Bacterial flagellin N-terminal helical region"],["CATH%3A1.20.1330.10","f41 fragment of flagellin, N-terminal domain"]]},{"id":"UniProt:P0A7M2","l":"Large ribosomal subunit protein bL28","na":1,"nb":6,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00009","50S ribosomal protein L28"],["Pfam%3APF00830","Ribosomal L28 family"],["InterPro%3AIPR034704","Large ribosomal subunit protein bL28/bL31-like superfamily"],["InterPro%3AIPR037147","Large ribosomal subunit protein bL28 superfamily"],["CATH%3A2.30.170.40","Ribosomal protein L28/L24"]]},{"id":"UniProt:P0A7P5","l":"Large ribosomal subunit protein bL34","na":1,"nb":6,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01030","50S ribosomal protein L34"],["InterPro%3AIPR020939","Large ribosomal subunit protein bL34, conserved site"],["Pfam%3APF00468","Ribosomal protein L34"],["PROSITE%3APS00784","Ribosomal protein L34 signature"],["CATH%3A1.10.287.3980","CATH homologous superfamily 1.10.287.3980"]]},{"id":"UniProt:P0ADZ0","l":"Large ribosomal subunit protein uL23","na":1,"nb":6,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ANF004358","50S ribosomal protein L23"],["NCBIfam%3ANF004359","50S ribosomal protein L23"],["NCBIfam%3ANF004363","50S ribosomal protein L23"],["InterPro%3AIPR001014","Large ribosomal subunit protein uL23, conserved site"],["PROSITE%3APS00050","Ribosomal protein L23 signature"]]},{"id":"UniProt:P0AG48","l":"Large ribosomal subunit protein bL21","na":1,"nb":6,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00061","50S ribosomal protein L21"],["InterPro%3AIPR018258","Large ribosomal subunit protein bL21, conserved site"],["Pfam%3APF00829","Ribosomal prokaryotic L21 protein"],["InterPro%3AIPR036164","Large ribosomal subunit protein bL21-like superfamily"],["PROSITE%3APS01169","Ribosomal protein L21 signature"]]},{"id":"UniProt:P0AG59","l":"Small ribosomal subunit protein uS14","na":1,"nb":6,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ANF006477","30S ribosomal protein S14"],["InterPro%3AIPR018271","Small ribosomal subunit protein uS14, conserved site"],["Pfam%3APF00253","Ribosomal protein S14p/S29e"],["PROSITE%3APS00527","Ribosomal protein S14 signature"],["CATH%3A1.10.287.1480","CATH homologous superfamily 1.10.287.1480"]]},{"id":"UniProt:P24500","l":"","na":1,"nb":6,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0030694","bacterial-type flagellum basal body, rod"],["NCBIfam%3ATIGR01396","flagellar basal body rod protein FlgB"],["InterPro%3AIPR019776","Flagellar basal body rod protein, conserved site"],["InterPro%3AIPR001444","Flagellar basal body rod protein, N-terminal"],["Pfam%3APF00460","Flagella basal body rod protein"],["PROSITE%3APS00588","Flagella basal body rod proteins signature"]]},{"id":"UniProt:P35528","l":"","na":1,"nb":6,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0009425","bacterial-type flagellum basal body"],["NCBIfam%3ANF009438","EscR/YscR/HrcR family type III secretion system export apparatus protein"],["NCBIfam%3ATIGR01103","flagellar type III secretion system pore protein FliP"],["Pfam%3APF00813","FliP family"],["PROSITE%3APS01060","Flagella transport protein fliP family signature 1"],["PROSITE%3APS01061","Flagella transport protein fliP family signature 2"]]},{"id":"UniProt:P69776","l":"","na":1,"nb":6,"a":[["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"]],"b":[["GO%3A0043580","periplasmic space organization"],["NCBIfam%3ANF040598","Lpp/OprI family alanine-zipper lipoprotein"],["NCBIfam%3ANF011925","major outer membrane lipoprotein"],["proteintraitsmech%3AMEROPS_CLEAVAGE_A08_001","signal peptidase II cleavage specificity"],["InterPro%3AIPR006817","Lipoprotein leucine-zipper"],["Pfam%3APF04728","Lipoprotein leucine-zipper"]]},{"id":"GO:0000171","l":"ribonuclease MRP activity","na":1,"nb":5,"a":[["ribonucleoprotein/ribonuclease_mrp_complex.html","ribonuclease MRP complex"]],"b":[["ComplexPortal%3ACPX-2629","Ribonuclease MRP complex"],["ComplexPortal%3ACPX-26688","Ribonuclease MRP complex"],["ComplexPortal%3ACPX-2876","Ribonuclease MRP complex"],["ComplexPortal%3ACPX-3284","Ribonuclease MRP complex"],["GO%3A0000171","ribonuclease MRP activity"]]},{"id":"GO:0005630","l":"dityrosine layer of spore wall","na":5,"nb":1,"a":[["spore/ascospore_wall.html","ascospore wall"],["spore/chitosan_layer_of_spore_wall.html","chitosan layer of spore wall"],["spore/dityrosine_layer_of_spore_wall.html","dityrosine layer of spore wall"],["spore/inner_layer_of_spore_wall.html","inner layer of spore wall"],["spore/isp3_layer_of_spore_wall.html","Isp3 layer of spore wall"]],"b":[["GO%3A0005630","dityrosine layer of spore wall"]]},{"id":"GO:0005631","l":"chitosan layer of spore wall","na":5,"nb":1,"a":[["spore/ascospore_wall.html","ascospore wall"],["spore/chitosan_layer_of_spore_wall.html","chitosan layer of spore wall"],["spore/dityrosine_layer_of_spore_wall.html","dityrosine layer of spore wall"],["spore/inner_layer_of_spore_wall.html","inner layer of spore wall"],["spore/isp3_layer_of_spore_wall.html","Isp3 layer of spore wall"]],"b":[["GO%3A0005631","chitosan layer of spore wall"]]},{"id":"GO:0009420","l":"bacterial-type flagellum filament","na":5,"nb":1,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["GO%3A0009420","bacterial-type flagellum filament"]]},{"id":"GO:0016610","l":"nitrogenase complex","na":1,"nb":5,"a":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"]],"b":[["GO%3A0016611","iron-iron nitrogenase complex"],["GO%3A0016612","molybdenum-iron nitrogenase complex"],["GO%3A0016610","nitrogenase complex"],["GO%3A0016613","vanadium-iron nitrogenase complex"],["NCBIfam%3ATIGR01287","nitrogenase iron protein"]]},{"id":"GO:0020009","l":"microneme","na":5,"nb":1,"a":[["membrane_organelle/microneme.html","microneme"],["membrane_organelle/microneme_lumen.html","microneme lumen"],["membrane_organelle/microneme_membrane.html","microneme membrane"],["membrane_organelle/mononeme.html","mononeme"],["other/apical_complex.html","apical complex"]],"b":[["GO%3A0020009","microneme"]]},{"id":"GO:0030075","l":"bacterial thylakoid","na":5,"nb":1,"a":[["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_lumen.html","plasma membrane-derived thylakoid lumen"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"]],"b":[["GO%3A0030075","bacterial thylakoid"]]},{"id":"GO:0031522","l":"cell envelope Sec protein transport complex","na":1,"nb":5,"a":[["secretion_system/secyeg_translocon_complex.html","SecYEG translocon complex"]],"b":[["ComplexPortal%3ACPX-1095","Holo-translocon SecYEG-SecDF-YajC-YidC complex"],["ComplexPortal%3ACPX-1096","Protein-conducting channel SecYEG complex"],["GO%3A0031522","cell envelope Sec protein transport complex"],["NCBIfam%3ATIGR01129","protein translocase subunit SecD"],["NCBIfam%3ATIGR00966","protein translocase subunit SecF"]]},{"id":"GO:0031676","l":"plasma membrane-derived thylakoid membrane","na":5,"nb":1,"a":[["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_lumen.html","plasma membrane-derived thylakoid lumen"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"]],"b":[["GO%3A0031676","plasma membrane-derived thylakoid membrane"]]},{"id":"GO:0033263","l":"CORVET complex","na":1,"nb":5,"a":[["other/corvet_complex.html","CORVET complex"]],"b":[["ComplexPortal%3ACPX-1137","CORVET tethering complex"],["ComplexPortal%3ACPX-1626","CORVET tethering complex"],["ComplexPortal%3ACPX-6213","CORVET tethering complex"],["ComplexPortal%3ACPX-8877","CORVET tethering complex"],["GO%3A0033263","CORVET complex"]]},{"id":"GO:0034982","l":"mitochondrial protein processing","na":1,"nb":5,"a":[["other/mitochondrial_inner_membrane_peptidase_complex.html","mitochondrial inner membrane peptidase complex"]],"b":[["ComplexPortal%3ACPX-10319","m-AAA protease complex, AFG3L2-SPG7 variant"],["ComplexPortal%3ACPX-10318","m-AAA protease complex, AFG3L2 variant"],["GO%3A0034982","mitochondrial protein processing"],["PANTHER%3APTHR21711","MITOCHONDRIAL INNER MEMBRANE PROTEASE"],["PANTHER%3APTHR46041","MITOCHONDRIAL INNER MEMBRANE PROTEASE SUBUNIT 2"]]},{"id":"GO:0035632","l":"mitochondrial prohibitin complex","na":1,"nb":5,"a":[["other/mitochondrial_prohibitin_complex.html","mitochondrial prohibitin complex"]],"b":[["ComplexPortal%3ACPX-1703","Prohibitin complex"],["ComplexPortal%3ACPX-4114","Prohibitin complex"],["ComplexPortal%3ACPX-5741","Prohibitin complex"],["ComplexPortal%3ACPX-5743","Prohibitin complex"],["GO%3A0035632","mitochondrial prohibitin complex"]]},{"id":"GO:0036013","l":"cyanelle outer membrane","na":5,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"]],"b":[["GO%3A0036013","cyanelle outer membrane"]]},{"id":"GO:0036014","l":"cyanelle intermembrane space","na":5,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"]],"b":[["GO%3A0036014","cyanelle intermembrane space"]]},{"id":"GO:0043291","l":"RAVE complex","na":1,"nb":5,"a":[["other/rave_complex.html","RAVE complex"]],"b":[["ComplexPortal%3ACPX-1627","RAVE complex"],["ComplexPortal%3ACPX-25781","RAVE complex"],["ComplexPortal%3ACPX-10301","RAVE complex, DMXL1 variant"],["ComplexPortal%3ACPX-10303","RAVE complex, DMXL2 variant"],["GO%3A0043291","RAVE complex"]]},{"id":"GO:0043684","l":"type IV secretion system complex","na":1,"nb":5,"a":[["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]],"b":[["GO%3A0043684","type IV secretion system complex"],["NCBIfam%3ANF049884","Dot/Icm T4SS effector Ceg23"],["NCBIfam%3ATIGR02788","P-type DNA transfer ATPase VirB11"],["NCBIfam%3ATIGR02791","P-type DNA transfer protein VirB5"],["NCBIfam%3ANF047983","T4SS effector phosphatidylinositol 3-Kinase RisK1"]]},{"id":"GO:0046336","l":"ethanolamine catabolic process","na":1,"nb":5,"a":[["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"]],"b":[["ComplexPortal%3ACPX-2313","Ethanolamine ammonia-lyase complex"],["GO%3A0046336","ethanolamine catabolic process"],["NCBIfam%3ATIGR04502","ethanolamine utilization microcompartment protein EutL"],["NCBIfam%3ATIGR02526","ethanolamine utilization microcompartment shell protein"],["NCBIfam%3ATIGR02528","EutP/PduV family microcompartment system protein"]]},{"id":"GO:0050215","l":"propanediol dehydratase activity","na":1,"nb":5,"a":[["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]],"b":[["EC%3A4.2.1.28","propanediol dehydratase"],["RHEA%3A14569","propane-1,2-diol = propanal + H2O"],["GO%3A0050215","propanediol dehydratase activity"],["MCSA%3A494","propanediol dehydratase"],["proteintraitsmech%3ABIOLIP_FWK","FWK-binding site"]]},{"id":"GO:0071256","l":"translocon complex","na":1,"nb":5,"a":[["other/ssh1_translocon_complex.html","Ssh1 translocon complex"]],"b":[["ComplexPortal%3ACPX-8024","Translocon-associated protein complex"],["ComplexPortal%3ACPX-3055","Translocon complex"],["GO%3A0005784","Sec61 translocon complex"],["GO%3A0071261","Ssh1 translocon complex"],["GO%3A0071256","translocon complex"]]},{"id":"GO:0097593","l":"ventral disc microtubule array","na":5,"nb":1,"a":[["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_dorsal_microribbon.html","ventral disc dorsal microribbon"],["cytoskeleton/ventral_disc_microtubule_array.html","ventral disc microtubule array"],["cytoskeleton/ventral_disc_overlap_zone.html","ventral disc overlap zone"],["cytoskeleton/ventral_disc_supernumerary_microtubule_array.html","ventral disc supernumerary microtubule array"]],"b":[["GO%3A0097593","ventral disc microtubule array"]]},{"id":"GO:1990717","l":"axonemal central bridge","na":5,"nb":1,"a":[["cytoskeleton/axonemal_central_apparatus.html","axonemal central apparatus"],["cytoskeleton/axonemal_central_bridge.html","axonemal central bridge"],["cytoskeleton/axonemal_central_pair.html","axonemal central pair"],["cytoskeleton/c1_axonemal_microtubule.html","C1 axonemal microtubule"],["cytoskeleton/c2_axonemal_microtubule.html","C2 axonemal microtubule"]],"b":[["GO%3A1990717","axonemal central bridge"]]},{"id":"GO:1990719","l":"C1 axonemal microtubule","na":5,"nb":1,"a":[["cytoskeleton/axonemal_central_bridge.html","axonemal central bridge"],["cytoskeleton/axonemal_central_pair.html","axonemal central pair"],["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"],["cytoskeleton/c1_axonemal_microtubule.html","C1 axonemal microtubule"],["cytoskeleton/c2_axonemal_microtubule.html","C2 axonemal microtubule"]],"b":[["GO%3A1990719","C1 axonemal microtubule"]]},{"id":"GO:1990720","l":"C2 axonemal microtubule","na":5,"nb":1,"a":[["cytoskeleton/axonemal_central_bridge.html","axonemal central bridge"],["cytoskeleton/axonemal_central_pair.html","axonemal central pair"],["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"],["cytoskeleton/c1_axonemal_microtubule.html","C1 axonemal microtubule"],["cytoskeleton/c2_axonemal_microtubule.html","C2 axonemal microtubule"]],"b":[["GO%3A1990720","C2 axonemal microtubule"]]},{"id":"InterPro:IPR000090","l":"","na":1,"nb":5,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]],"b":[["Pfam%3APF01706","FliG C-terminal domain"],["PANTHER%3APTHR30534","FLAGELLAR MOTOR SWITCH PROTEIN FLIG"],["Pfam%3APF14841","FliG middle domain"],["Pfam%3APF14842","FliG N-terminal domain"],["PRINTS%3APR00954","Flagellar motor switch protein FliG signature"]]},{"id":"InterPro:IPR045187","l":"","na":1,"nb":5,"a":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]],"b":[["Pfam%3APF00116","Cytochrome C oxidase subunit II, periplasmic domain"],["PANTHER%3APTHR22888","CYTOCHROME C OXIDASE, SUBUNIT II"],["Pfam%3APF02790","Cytochrome C oxidase subunit II, transmembrane domain"],["Pfam%3APF06481","COX Aromatic Rich Motif"],["PROSITE%3APS00078","CO II and nitrous oxide reductase dinuclear copper centers signature"]]},{"id":"UniProt:I6WZG6","l":"","na":1,"nb":5,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]],"b":[["IEDB%3A197918","epitope AARTFKRHIAGRRVV"],["IEDB%3A213387","epitope KPLVRLRVPFTLSRN"],["IEDB%3A218534","epitope RTIFEGYSAASIEGI"],["IEDB%3A219874","epitope TEAAWAEIELEAART"],["Pfam%3APF04454","Encapsulating protein for peroxidase"]]},{"id":"UniProt:I6Y4U9","l":"","na":1,"nb":5,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]],"b":[["IEDB%3A200082","epitope AGSCYVHVQKYVHDM"],["IEDB%3A203626","epitope AVTGGLFFSPTIDFL"],["IEDB%3A205003","epitope DGTERKIVRHNMPFG"],["IEDB%3A211489","epitope HGFRFFDNRDLLGFV"],["IEDB%3A212746","epitope IVRHNMPFGEVGKGE"]]},{"id":"UniProt:P02413","l":"Large ribosomal subunit protein uL15","na":1,"nb":5,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01071","50S ribosomal protein L15"],["InterPro%3AIPR001196","Large ribosomal subunit protein uL15, conserved site"],["Pfam%3APF00828","Ribosomal proteins 50S-L15, 50S-L18e, 60S-L27A"],["PROSITE%3APS00475","Ribosomal protein L15 signature"]]},{"id":"UniProt:P0A7Q6","l":"Large ribosomal subunit protein bL36A","na":1,"nb":5,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01022","50S ribosomal protein L36"],["Pfam%3APF00444","Ribosomal protein L36"],["InterPro%3AIPR035977","Large ribosomal subunit protein bL36 superfamily"],["PROSITE%3APS00828","Ribosomal protein L36 signature"]]},{"id":"UniProt:P0A7X3","l":"Small ribosomal subunit protein uS9","na":1,"nb":5,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ANF001099","30S ribosomal protein S9"],["InterPro%3AIPR020574","Small ribosomal subunit protein uS9, conserved site"],["Pfam%3APF00380","Ribosomal protein S9/S16"],["PROSITE%3APS00360","Ribosomal protein S9 signature"]]},{"id":"UniProt:P24501","l":"","na":1,"nb":5,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0030694","bacterial-type flagellum basal body, rod"],["NCBIfam%3ATIGR01395","flagellar basal body rod protein FlgC"],["InterPro%3AIPR019776","Flagellar basal body rod protein, conserved site"],["InterPro%3AIPR010930","Flagellar basal-body/hook protein, C-terminal domain"],["InterPro%3AIPR001444","Flagellar basal body rod protein, N-terminal"]]},{"id":"UniProt:P35538","l":"","na":1,"nb":5,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["NCBIfam%3ATIGR00328","flagellar biosynthesis protein FlhB"],["Pfam%3APF01312","FlhB HrpN YscU SpaS Family"],["InterPro%3AIPR029025","Type III secretion system substrate exporter, C-terminal"],["CATH%3A6.10.250.2080","CATH homologous superfamily 6.10.250.2080"],["CATH%3A3.40.1690.10","secretion proteins EscU"]]},{"id":"UniProt:P39063","l":"","na":1,"nb":5,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["NCBIfam%3ANF005383","flagellar motor protein MotP"],["InterPro%3AIPR000540","Flagellar motor protein MotA, conserved site"],["InterPro%3AIPR002898","MotA/TolQ/ExbB proton channel"],["Pfam%3APF01618","MotA/TolQ/ExbB proton channel family"],["PROSITE%3APS01307","Flagellar motor protein motA family signature"]]},{"id":"UniProt:P60438","l":"Large ribosomal subunit protein uL3","na":1,"nb":5,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR03625","50S ribosomal protein L3"],["InterPro%3AIPR019926","Large ribosomal subunit protein uL3, conserved site"],["Pfam%3APF00297","Ribosomal protein L3"],["CATH%3A3.30.160.810","CATH homologous superfamily 3.30.160.810"]]},{"id":"GO:0000328","l":"fungal-type vacuole lumen","na":4,"nb":1,"a":[["membrane_organelle/fungal_type_vacuole.html","fungal-type vacuole"],["membrane_organelle/fungal_type_vacuole_lumen.html","fungal-type vacuole lumen"],["membrane_organelle/fungal_type_vacuole_membrane.html","fungal-type vacuole membrane"],["membrane_organelle/vacuole.html","vacuole"]],"b":[["GO%3A0000328","fungal-type vacuole lumen"]]},{"id":"GO:0000331","l":"contractile vacuole","na":4,"nb":1,"a":[["membrane_organelle/contractile_vacuolar_membrane.html","contractile vacuolar membrane"],["membrane_organelle/contractile_vacuole.html","contractile vacuole"],["membrane_organelle/contractile_vacuole_complex.html","contractile vacuole complex"],["membrane_organelle/contractile_vacuole_lumen.html","contractile vacuole lumen"]],"b":[["GO%3A0000331","contractile vacuole"]]},{"id":"GO:0000935","l":"division septum","na":1,"nb":4,"a":[["envelope/division_septum.html","division septum"]],"b":[["ComplexPortal%3ACPX-4602","FtsEX ABC cell division complex"],["GO%3A0000935","division septum"],["GO%3A0000936","primary cell septum"],["GO%3A0051077","secondary cell septum"]]},{"id":"GO:0001535","l":"radial spoke head","na":1,"nb":4,"a":[["cytoskeleton/radial_spoke.html","radial spoke"]],"b":[["GO%3A0120336","radial spoke head 1"],["GO%3A0120337","radial spoke head 2"],["GO%3A0120338","radial spoke head 3"],["GO%3A0001535","radial spoke head"]]},{"id":"GO:0005641","l":"nuclear envelope lumen","na":4,"nb":1,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nuclear_envelope_lumen.html","nuclear envelope lumen"],["membrane_organelle/nuclear_inner_membrane.html","nuclear inner membrane"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"]],"b":[["GO%3A0005641","nuclear envelope lumen"]]},{"id":"GO:0005832","l":"chaperonin-containing T-complex","na":1,"nb":4,"a":[["other/chaperonin_containing_t_complex.html","chaperonin-containing T-complex"]],"b":[["ComplexPortal%3ACPX-2156","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-2772","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-6030","Chaperonin-containing T-complex"],["GO%3A0005832","chaperonin-containing T-complex"]]},{"id":"GO:0005933","l":"cellular bud","na":4,"nb":1,"a":[["envelope/cellular_bud_membrane.html","cellular bud membrane"],["other/cellular_bud.html","cellular bud"],["other/cellular_bud_neck.html","cellular bud neck"],["other/cellular_bud_tip.html","cellular bud tip"]],"b":[["GO%3A0005933","cellular bud"]]},{"id":"GO:0006909","l":"phagocytosis","na":1,"nb":4,"a":[["membrane_organelle/phagocytic_vesicle.html","phagocytic vesicle"]],"b":[["GO%3A0043277","apoptotic cell clearance"],["GO%3A0006909","phagocytosis"],["Reactome%3AR-HSA-9664417","Leishmania phagocytosis"],["InterPro%3AIPR034889","Neutrophil cytosol factor 2, SH3 domain"]]},{"id":"GO:0009543","l":"chloroplast thylakoid lumen","na":4,"nb":1,"a":[["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"],["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"],["membrane_organelle/chloroplast_thylakoid_lumen.html","chloroplast thylakoid lumen"],["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"]],"b":[["GO%3A0009543","chloroplast thylakoid lumen"]]},{"id":"GO:0009842","l":"cyanelle","na":4,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"]],"b":[["GO%3A0009842","cyanelle"]]},{"id":"GO:0010006","l":"Toc complex","na":4,"nb":1,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["other/tic_complex.html","Tic complex"],["other/toc_complex.html","Toc complex"]],"b":[["GO%3A0010006","Toc complex"]]},{"id":"GO:0020031","l":"polar ring of apical complex","na":4,"nb":1,"a":[["cytoskeleton/intraconoid_microtubule.html","intraconoid microtubule"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["cytoskeleton/subpellicular_microtubule.html","subpellicular microtubule"],["other/apical_complex.html","apical complex"]],"b":[["GO%3A0020031","polar ring of apical complex"]]},{"id":"GO:0030094","l":"plasma membrane-derived photosystem I","na":4,"nb":1,"a":[["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["GO%3A0030094","plasma membrane-derived photosystem I"]]},{"id":"GO:0030115","l":"S-layer","na":1,"nb":4,"a":[["envelope/s_layer.html","S-layer"]],"b":[["GO%3A0030115","S-layer"],["NCBIfam%3ANF041335","ArtA-dependent S-layer glycoprotein"],["NCBIfam%3ANF053619","BT1927 family outer membrane S-layer protein"],["NCBIfam%3ANF041073","S-layer protein SlaA"]]},{"id":"GO:0030476","l":"ascospore wall assembly","na":1,"nb":4,"a":[["spore/ascospore_wall.html","ascospore wall"]],"b":[["ComplexPortal%3ACPX-1812","1,3-beta-D-glucan synthase complex, FKS1-RHO1 variant"],["ComplexPortal%3ACPX-1813","1,3-beta-D-glucan synthase complex, FKS2-RHO1 variant"],["ComplexPortal%3ACPX-3028","1,3-beta-D-glucan synthase complex, FKS3-RHO1 variant"],["GO%3A0030476","ascospore wall assembly"]]},{"id":"GO:0030678","l":"mitochondrial ribonuclease P complex","na":1,"nb":4,"a":[["ribonucleoprotein/dimeric_ribonuclease_p_complex.html","dimeric ribonuclease P complex"]],"b":[["ComplexPortal%3ACPX-1294","Mitochondrial ribonuclease P complex"],["ComplexPortal%3ACPX-2632","Mitochondrial ribonuclease P complex"],["ComplexPortal%3ACPX-6155","Mitochondrial ribonuclease P complex"],["GO%3A0030678","mitochondrial ribonuclease P complex"]]},{"id":"GO:0031429","l":"box H/ACA snoRNP complex","na":1,"nb":4,"a":[["other/nucleolus.html","nucleolus"]],"b":[["ComplexPortal%3ACPX-26592","Box H/ACA ribonucleoprotein complex"],["ComplexPortal%3ACPX-2675","Box H/ACA ribonucleoprotein complex"],["ComplexPortal%3ACPX-737","Box H/ACA ribonucleoprotein complex"],["GO%3A0031429","box H/ACA snoRNP complex"]]},{"id":"GO:0031897","l":"Tic complex","na":4,"nb":1,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["other/tic_complex.html","Tic complex"],["other/toc_complex.html","Toc complex"]],"b":[["GO%3A0031897","Tic complex"]]},{"id":"GO:0031972","l":"chloroplast intermembrane space","na":4,"nb":1,"a":[["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_inner_membrane.html","chloroplast inner membrane"],["membrane_organelle/chloroplast_intermembrane_space.html","chloroplast intermembrane space"],["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"]],"b":[["GO%3A0031972","chloroplast intermembrane space"]]},{"id":"GO:0031977","l":"thylakoid lumen","na":1,"nb":4,"a":[["membrane_organelle/plastid_thylakoid_lumen.html","plastid thylakoid lumen"]],"b":[["GO%3A0070117","organellar chromatophore thylakoid lumen"],["GO%3A0031979","plasma membrane-derived thylakoid lumen"],["GO%3A0031978","plastid thylakoid lumen"],["GO%3A0031977","thylakoid lumen"]]},{"id":"GO:0032865","l":"ERMES complex","na":1,"nb":4,"a":[["other/ermes_complex.html","ERMES complex"]],"b":[["ComplexPortal%3ACPX-3196","ERMES complex"],["GO%3A0032865","ERMES complex"],["Pfam%3APF26544","Mitochondrial distribution and morphology protein 12"],["Pfam%3APF12519","Mitochondrial distribution and morphology protein 10"]]},{"id":"GO:0033962","l":"P-body assembly","na":1,"nb":4,"a":[["ribonucleoprotein/p_body.html","P-body"]],"b":[["GO%3A0033962","P-body assembly"],["PANTHER%3APTHR13612","ENHANCER OF MRNA-DECAPPING PROTEIN 3"],["PANTHER%3APTHR21551","TOPOISOMERASE II-ASSOCIATED PROTEIN PAT1"],["PANTHER%3APTHR13110","U6 SNRNA-ASSOCIATED SM-LIKE PROTEIN LSM3"]]},{"id":"GO:0034060","l":"cyanelle stroma","na":4,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"]],"b":[["GO%3A0034060","cyanelle stroma"]]},{"id":"GO:0036156","l":"inner dynein arm","na":4,"nb":1,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_dynein_complex.html","axonemal dynein complex"],["cytoskeleton/axoneme.html","axoneme"],["cytoskeleton/inner_dynein_arm.html","inner dynein arm"]],"b":[["GO%3A0036156","inner dynein arm"]]},{"id":"GO:0036157","l":"outer dynein arm","na":4,"nb":1,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_dynein_complex.html","axonemal dynein complex"],["cytoskeleton/axoneme.html","axoneme"],["cytoskeleton/outer_dynein_arm.html","outer dynein arm"]],"b":[["GO%3A0036157","outer dynein arm"]]},{"id":"GO:0042720","l":"mitochondrial inner membrane peptidase complex","na":1,"nb":4,"a":[["other/mitochondrial_inner_membrane_peptidase_complex.html","mitochondrial inner membrane peptidase complex"]],"b":[["ComplexPortal%3ACPX-1892","Mitochondrial inner membrane peptidase complex"],["ComplexPortal%3ACPX-6244","Mitochondrial inner membrane peptidase complex"],["GO%3A0042720","mitochondrial inner membrane peptidase complex"],["Pfam%3APF11093","Mitochondrial export protein Som1"]]},{"id":"GO:0042721","l":"TIM22 mitochondrial import inner membrane insertion complex","na":1,"nb":4,"a":[["other/tim22_mitochondrial_import_inner_membrane_insertion_complex.html","TIM22 mitochondrial import inner membrane insertion complex"]],"b":[["ComplexPortal%3ACPX-1629","TIM22 mitochondrial inner membrane twin-pore carrier translocase complex"],["ComplexPortal%3ACPX-6124","TIM22 mitochondrial inner membrane twin-pore carrier translocase complex"],["GO%3A0042721","TIM22 mitochondrial import inner membrane insertion complex"],["Pfam%3APF10171","Translocase of the Inner Mitochondrial membrane 29"]]},{"id":"GO:0043107","l":"type IV pilus-dependent motility","na":1,"nb":4,"a":[["appendage/type_iv_pilus.html","type IV pilus"]],"b":[["GO%3A0043107","type IV pilus-dependent motility"],["NCBIfam%3ATIGR01420","PilT/PilU family type 4a pilus ATPase"],["NCBIfam%3ANF016253","type 4a pilus biogenesis protein PilO"],["Pfam%3APF04350","Type IVa pilus alignment subcomplex PilO C-terminal domain"]]},{"id":"GO:0044099","l":"polar tube","na":4,"nb":1,"a":[["membrane_organelle/microsporidian_posterior_vacuole.html","microsporidian posterior vacuole"],["membrane_organelle/polaroplast.html","polaroplast"],["spore/polar_tube.html","polar tube"],["spore/polar_tube_anchoring_disc.html","polar tube anchoring disc"]],"b":[["GO%3A0044099","polar tube"]]},{"id":"GO:0044853","l":"plasma membrane raft","na":1,"nb":4,"a":[["envelope/eisosome_membrane_domain_mcc.html","eisosome membrane domain/MCC"]],"b":[["GO%3A0005901","caveola"],["GO%3A0090512","eisosome membrane domain/MCC"],["GO%3A0044853","plasma membrane raft"],["PANTHER%3APTHR16529","CD177 ANTIGEN"]]},{"id":"GO:0060285","l":"cilium-dependent cell motility","na":1,"nb":4,"a":[["appendage/cilium.html","cilium"]],"b":[["GO%3A0060285","cilium-dependent cell motility"],["GO%3A0030317","flagellated sperm motility"],["PANTHER%3APTHR18962","COILED-COIL DOMAIN-CONTAINING PROTEIN 39"],["PANTHER%3APTHR21625","NYD-SP28 PROTEIN"]]},{"id":"GO:0070113","l":"organellar chromatophore inner membrane","na":4,"nb":1,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_inner_membrane.html","organellar chromatophore inner membrane"],["membrane_organelle/organellar_chromatophore_intermembrane_space.html","organellar chromatophore intermembrane space"],["membrane_organelle/organellar_chromatophore_membrane.html","organellar chromatophore membrane"]],"b":[["GO%3A0070113","organellar chromatophore inner membrane"]]},{"id":"GO:0070114","l":"organellar chromatophore outer membrane","na":4,"nb":1,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_intermembrane_space.html","organellar chromatophore intermembrane space"],["membrane_organelle/organellar_chromatophore_membrane.html","organellar chromatophore membrane"],["membrane_organelle/organellar_chromatophore_outer_membrane.html","organellar chromatophore outer membrane"]],"b":[["GO%3A0070114","organellar chromatophore outer membrane"]]},{"id":"GO:0070116","l":"organellar chromatophore thylakoid","na":4,"nb":1,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"],["membrane_organelle/organellar_chromatophore_thylakoid_lumen.html","organellar chromatophore thylakoid lumen"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"]],"b":[["GO%3A0070116","organellar chromatophore thylakoid"]]},{"id":"GO:0070117","l":"organellar chromatophore thylakoid lumen","na":4,"nb":1,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"],["membrane_organelle/organellar_chromatophore_thylakoid_lumen.html","organellar chromatophore thylakoid lumen"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"]],"b":[["GO%3A0070117","organellar chromatophore thylakoid lumen"]]},{"id":"GO:0070939","l":"Dsl1/NZR complex","na":1,"nb":4,"a":[["other/dsl1_nzr_complex.html","Dsl1/NZR complex"]],"b":[["ComplexPortal%3ACPX-1786","Dsl1 tethering complex"],["ComplexPortal%3ACPX-6201","NRZ tethering complex"],["GO%3A0070939","Dsl1/NZR complex"],["Pfam%3APF04437","RINT-1/TIP-1 family"]]},{"id":"GO:0071020","l":"post-spliceosomal complex","na":1,"nb":4,"a":[["ribonucleoprotein/u12_type_post_spliceosomal_complex.html","U12-type post-spliceosomal complex"]],"b":[["ComplexPortal%3ACPX-26479","Major Post-catalytic P Spliceosome complex"],["GO%3A0071020","post-spliceosomal complex"],["GO%3A0071022","U12-type post-spliceosomal complex"],["GO%3A0071021","U2-type post-spliceosomal complex"]]},{"id":"GO:0090642","l":"microsporidian-type exospore","na":4,"nb":1,"a":[["spore/exosporium.html","exosporium"],["spore/microsporidian_type_endospore.html","microsporidian-type endospore"],["spore/microsporidian_type_exospore.html","microsporidian-type exospore"],["spore/spore_wall.html","spore wall"]],"b":[["GO%3A0090642","microsporidian-type exospore"]]},{"id":"GO:0097594","l":"ventral disc dorsal microribbon","na":4,"nb":1,"a":[["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_crossbridge.html","ventral disc crossbridge"],["cytoskeleton/ventral_disc_dorsal_microribbon.html","ventral disc dorsal microribbon"],["cytoskeleton/ventral_disc_microtubule_array.html","ventral disc microtubule array"]],"b":[["GO%3A0097594","ventral disc dorsal microribbon"]]},{"id":"GO:0120100","l":"bacterial-type flagellum motor","na":4,"nb":1,"a":[["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"],["appendage/periplasmic_flagellum.html","periplasmic flagellum"]],"b":[["GO%3A0120100","bacterial-type flagellum motor"]]},{"id":"GO:0160110","l":"axonemal microtubule doublet inner sheath","na":4,"nb":1,"a":[["cytoskeleton/axonemal_a_tubule_inner_sheath.html","axonemal A tubule inner sheath"],["cytoskeleton/axonemal_b_tubule_inner_sheath.html","axonemal B tubule inner sheath"],["cytoskeleton/axonemal_doublet_microtubule.html","axonemal doublet microtubule"],["cytoskeleton/axonemal_microtubule_doublet_inner_sheath.html","axonemal microtubule doublet inner sheath"]],"b":[["GO%3A0160110","axonemal microtubule doublet inner sheath"]]},{"id":"GO:0160113","l":"axonemal microtubule doublet inner junction","na":4,"nb":1,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_doublet_microtubule.html","axonemal doublet microtubule"],["cytoskeleton/axonemal_microtubule_doublet_inner_junction.html","axonemal microtubule doublet inner junction"],["cytoskeleton/b_axonemal_microtubule.html","B axonemal microtubule"]],"b":[["GO%3A0160113","axonemal microtubule doublet inner junction"]]},{"id":"GO:0160114","l":"axonemal microtubule doublet outer junction","na":4,"nb":1,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_doublet_microtubule.html","axonemal doublet microtubule"],["cytoskeleton/axonemal_microtubule_doublet_outer_junction.html","axonemal microtubule doublet outer junction"],["cytoskeleton/b_axonemal_microtubule.html","B axonemal microtubule"]],"b":[["GO%3A0160114","axonemal microtubule doublet outer junction"]]},{"id":"InterPro:IPR000100","l":"","na":1,"nb":4,"a":[["ribonucleoprotein/dimeric_ribonuclease_p_complex.html","dimeric ribonuclease P complex"]],"b":[["HAMAP%3AMF_00227","Ribonuclease P protein component [rnpA]"],["PANTHER%3APTHR33992","RIBONUCLEASE P PROTEIN COMPONENT"],["Pfam%3APF00825","Ribonuclease P"],["PROSITE%3APS00648","Bacterial ribonuclease P protein component signature"]]},{"id":"InterPro:IPR000527","l":"","na":1,"nb":4,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"]],"b":[["HAMAP%3AMF_00415","Flagellar L-ring protein [flgH]"],["PANTHER%3APTHR34933","FLAGELLAR L-RING PROTEIN"],["Pfam%3APF02107","Flagellar L-ring protein"],["PRINTS%3APR01008","Flagellar L-ring protein signature"]]},{"id":"InterPro:IPR001782","l":"","na":1,"nb":4,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]],"b":[["HAMAP%3AMF_00416","Flagellar P-ring protein [flgI]"],["PANTHER%3APTHR30381","FLAGELLAR P-RING PERIPLASMIC PROTEIN FLGI"],["Pfam%3APF02119","Flagellar P-ring protein"],["PRINTS%3APR01010","Flagellar P-ring protein signature"]]},{"id":"InterPro:IPR005837","l":"","na":1,"nb":4,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF00813","FliP family"],["PRINTS%3APR00951","Flagellar biosynthetic protein FliP signature"],["PROSITE%3APS01060","Flagella transport protein fliP family signature 1"],["PROSITE%3APS01061","Flagella transport protein fliP family signature 2"]]},{"id":"InterPro:IPR011557","l":"","na":1,"nb":4,"a":[["other/dna_gyrase_complex.html","DNA gyrase complex"]],"b":[["Pfam%3APF21249","GyrB, hook"],["Pfam%3APF18053","DNA gyrase B subunit insert domain"],["HAMAP%3AMF_01898","DNA gyrase subunit B [gyrB]"],["Pfam%3APF00986","DNA gyrase B subunit, carboxyl terminus"]]},{"id":"InterPro:IPR040026","l":"","na":1,"nb":4,"a":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"]],"b":[["PANTHER%3APTHR30288","FLAGELLAR CAP/ASSEMBLY PROTEIN FLID"],["Pfam%3APF07195","Flagellar hook-associated protein 2 C-terminus"],["Pfam%3APF02465","Flagellar hook-associated protein 2 N-terminus"],["Pfam%3APF07196","Flagellin hook IN motif"]]},{"id":"UniProt:P0A7N4","l":"Large ribosomal subunit protein bL32","na":1,"nb":4,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01031","50S ribosomal protein L32"],["Pfam%3APF01783","Ribosomal L32p protein family"],["InterPro%3AIPR011332","Zinc-binding ribosomal protein"]]},{"id":"UniProt:P0A7V0","l":"Small ribosomal subunit protein uS2","na":1,"nb":4,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR01011","30S ribosomal protein S2"],["CDD%3Acd01425","RPS2"],["CATH%3A1.10.287.610","Helix hairpin bin"]]},{"id":"UniProt:P0ABH4","l":"","na":1,"nb":4,"a":[["division_machinery/elongasome.html","elongasome"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["NCBIfam%3ANF008282","rod shape-determining protein MreD"],["NCBIfam%3ATIGR03426","rod shape-determining protein MreD"],["Pfam%3APF04093","rod shape-determining protein MreD"]]},{"id":"UniProt:P0C2S5","l":"","na":1,"nb":4,"a":[["other/cellulosome.html","cellulosome"]],"b":[["EC%3A3.2.1.176","cellulose 1,4-beta-cellobiosidase (reducing end)"],["Pfam%3APF00404","Dockerin type I domain"],["PROSITE%3APS00448","Clostridium cellulosome enzymes repeated domain signature"],["Pfam%3APF02011","Glycosyl hydrolase family 48"]]},{"id":"UniProt:Q1PX48","l":"","na":1,"nb":4,"a":[["membrane_organelle/anammoxosome.html","anammoxosome"]],"b":[["EC%3A1.7.2.9","hydroxylamine oxidase"],["RHEA%3A45036","hydroxylamine + 3 Fe(III)-[cytochrome c] = nitric oxide + 3 Fe(II)-[cytochrome c] + 3 H(+)"],["Pfam%3APF22142","Hydroxylamine oxidoreductase, C-terminal domain"],["proteintraitsmech%3ABIOLIP_HG1","HG1-binding site"]]},{"id":"GO:0000002","l":"","na":1,"nb":3,"a":[["nucleoid/mitochondrial_nucleoid.html","mitochondrial nucleoid"]],"b":[["PANTHER%3APTHR45829","MITOCHONDRIAL CARRIER PROTEIN RIM2"],["PANTHER%3APTHR32198","MITOCHONDRIAL ESCAPE PROTEIN 2"],["PANTHER%3APTHR31404","MITOCHONDRIAL GENOME MAINTENANCE PROTEIN MGM101"]]},{"id":"GO:0005632","l":"inner layer of spore wall","na":3,"nb":1,"a":[["spore/ascospore_wall.html","ascospore wall"],["spore/chitosan_layer_of_spore_wall.html","chitosan layer of spore wall"],["spore/inner_layer_of_spore_wall.html","inner layer of spore wall"]],"b":[["GO%3A0005632","inner layer of spore wall"]]},{"id":"GO:0005796","l":"Golgi lumen","na":1,"nb":3,"a":[["membrane_organelle/golgi_lumen.html","Golgi lumen"]],"b":[["GO%3A0005796","Golgi lumen"],["GO%3A0034469","Golgi stack lumen"],["GO%3A0098564","trans-Golgi network transport vesicle lumen"]]},{"id":"GO:0005826","l":"actomyosin contractile ring","na":1,"nb":3,"a":[["cytoskeleton/actomyosin_contractile_ring.html","actomyosin contractile ring"]],"b":[["GO%3A0005826","actomyosin contractile ring"],["GO%3A0110086","meiotic actomyosin contractile ring"],["GO%3A0110085","mitotic actomyosin contractile ring"]]},{"id":"GO:0009290","l":"DNA import into cell involved in transformation","na":1,"nb":3,"a":[["appendage/type_iv_pilus.html","type IV pilus"]],"b":[["GO%3A0009290","DNA import into cell involved in transformation"],["NCBIfam%3ANF041796","DNA import protein CedA"],["NCBIfam%3ATIGR00361","DNA internalization-related competence protein ComEC/Rec2"]]},{"id":"GO:0009422","l":"bacterial-type flagellum hook-filament junction","na":3,"nb":1,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["GO%3A0009422","bacterial-type flagellum hook-filament junction"]]},{"id":"GO:0009429","l":"bacterial-type flagellum basal body, proximal rod","na":3,"nb":1,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"]],"b":[["GO%3A0009429","bacterial-type flagellum basal body, proximal rod"]]},{"id":"GO:0009514","l":"glyoxysome","na":3,"nb":1,"a":[["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysomal_membrane.html","glyoxysomal membrane"],["membrane_organelle/glyoxysome.html","glyoxysome"]],"b":[["GO%3A0009514","glyoxysome"]]},{"id":"GO:0012510","l":"trans-Golgi network transport vesicle membrane","na":3,"nb":1,"a":[["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"],["membrane_organelle/trans_golgi_network_transport_vesicle_membrane.html","trans-Golgi network transport vesicle membrane"],["other/clathrin_coat_of_trans_golgi_network_vesicle.html","clathrin coat of trans-Golgi network vesicle"]],"b":[["GO%3A0012510","trans-Golgi network transport vesicle membrane"]]},{"id":"GO:0020010","l":"conoid","na":3,"nb":1,"a":[["cytoskeleton/conoid.html","conoid"],["cytoskeleton/intraconoid_microtubule.html","intraconoid microtubule"],["other/apical_complex.html","apical complex"]],"b":[["GO%3A0020010","conoid"]]},{"id":"GO:0020015","l":"glycosome","na":3,"nb":1,"a":[["membrane_organelle/glycosome.html","glycosome"],["membrane_organelle/glycosome_lumen.html","glycosome lumen"],["membrane_organelle/glycosome_membrane.html","glycosome membrane"]],"b":[["GO%3A0020015","glycosome"]]},{"id":"GO:0020026","l":"apicomplexan dense granule","na":3,"nb":1,"a":[["membrane_organelle/apicomplexan_dense_granule.html","apicomplexan dense granule"],["membrane_organelle/apicomplexan_dense_granule_membrane.html","apicomplexan dense granule membrane"],["membrane_organelle/mononeme.html","mononeme"]],"b":[["GO%3A0020026","apicomplexan dense granule"]]},{"id":"GO:0030061","l":"mitochondrial crista","na":3,"nb":1,"a":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"],["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"]],"b":[["GO%3A0030061","mitochondrial crista"]]},{"id":"GO:0030124","l":"AP-4 adaptor complex","na":1,"nb":3,"a":[["other/ap_4_adaptor_complex.html","AP-4 adaptor complex"]],"b":[["ComplexPortal%3ACPX-5151","AP-4 Adaptor complex"],["ComplexPortal%3ACPX-5154","AP-4 Adaptor complex"],["GO%3A0030124","AP-4 adaptor complex"]]},{"id":"GO:0030256","l":"type I protein secretion system complex","na":1,"nb":3,"a":[["secretion_system/type_i_protein_secretion_system_complex.html","type I protein secretion system complex"]],"b":[["GO%3A0030256","type I protein secretion system complex"],["NCBIfam%3ATIGR01842","type I secretion system permease/ATPase"],["NCBIfam%3ATIGR01846","type I secretion system permease/ATPase"]]},{"id":"GO:0030681","l":"multimeric ribonuclease P complex","na":1,"nb":3,"a":[["ribonucleoprotein/dimeric_ribonuclease_p_complex.html","dimeric ribonuclease P complex"]],"b":[["GO%3A0030679","cyanelle ribonuclease P complex"],["GO%3A0030681","multimeric ribonuclease P complex"],["GO%3A0005655","nucleolar ribonuclease P complex"]]},{"id":"GO:0030874","l":"nucleolar chromatin","na":1,"nb":3,"a":[["other/nucleolus.html","nucleolus"]],"b":[["GO%3A0030874","nucleolar chromatin"],["GO%3A0097424","nucleolus-associated heterochromatin"],["GO%3A0005731","nucleolus organizer region"]]},{"id":"GO:0031164","l":"contractile vacuolar membrane","na":3,"nb":1,"a":[["membrane_organelle/contractile_vacuolar_membrane.html","contractile vacuolar membrane"],["membrane_organelle/contractile_vacuole.html","contractile vacuole"],["membrane_organelle/contractile_vacuole_lumen.html","contractile vacuole lumen"]],"b":[["GO%3A0031164","contractile vacuolar membrane"]]},{"id":"GO:0031321","l":"ascospore-type prospore assembly","na":1,"nb":3,"a":[["spore/prospore_membrane.html","prospore membrane"]],"b":[["ComplexPortal%3ACPX-5464","Vesicular SNARE complex SSO1-SPO20-SNC1"],["ComplexPortal%3ACPX-5466","Vesicular SNARE complex SSO1-SPO20-SNC2"],["GO%3A0031321","ascospore-type prospore assembly"]]},{"id":"GO:0031908","l":"glyoxysomal lumen","na":3,"nb":1,"a":[["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysomal_membrane.html","glyoxysomal membrane"],["membrane_organelle/glyoxysome.html","glyoxysome"]],"b":[["GO%3A0031908","glyoxysomal lumen"]]},{"id":"GO:0031979","l":"plasma membrane-derived thylakoid lumen","na":3,"nb":1,"a":[["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_lumen.html","plasma membrane-derived thylakoid lumen"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"]],"b":[["GO%3A0031979","plasma membrane-derived thylakoid lumen"]]},{"id":"GO:0031983","l":"vesicle lumen","na":1,"nb":3,"a":[["membrane_organelle/cytoplasmic_vesicle_lumen.html","cytoplasmic vesicle lumen"]],"b":[["GO%3A0060205","cytoplasmic vesicle lumen"],["GO%3A0097489","multivesicular body, internal vesicle lumen"],["GO%3A0031983","vesicle lumen"]]},{"id":"GO:0032047","l":"mitosome","na":3,"nb":1,"a":[["membrane_organelle/mitosome.html","mitosome"],["membrane_organelle/mitosome_envelope.html","mitosome envelope"],["membrane_organelle/mitosome_matrix.html","mitosome matrix"]],"b":[["GO%3A0032047","mitosome"]]},{"id":"GO:0032126","l":"eisosome","na":3,"nb":1,"a":[["cytoskeleton/eisosome_filament.html","eisosome filament"],["envelope/eisosome_membrane_domain_mcc.html","eisosome membrane domain/MCC"],["other/eisosome.html","eisosome"]],"b":[["GO%3A0032126","eisosome"]]},{"id":"GO:0033016","l":"rhoptry membrane","na":3,"nb":1,"a":[["membrane_organelle/rhoptry.html","rhoptry"],["membrane_organelle/rhoptry_lumen.html","rhoptry lumen"],["membrane_organelle/rhoptry_membrane.html","rhoptry membrane"]],"b":[["GO%3A0033016","rhoptry membrane"]]},{"id":"GO:0033107","l":"Cvt vesicle","na":3,"nb":1,"a":[["membrane_organelle/cvt_vesicle.html","Cvt vesicle"],["membrane_organelle/cvt_vesicle_lumen.html","Cvt vesicle lumen"],["membrane_organelle/cvt_vesicle_membrane.html","Cvt vesicle membrane"]],"b":[["GO%3A0033107","Cvt vesicle"]]},{"id":"GO:0033110","l":"Cvt vesicle membrane","na":3,"nb":1,"a":[["membrane_organelle/cvt_vesicle.html","Cvt vesicle"],["membrane_organelle/cvt_vesicle_lumen.html","Cvt vesicle lumen"],["membrane_organelle/cvt_vesicle_membrane.html","Cvt vesicle membrane"]],"b":[["GO%3A0033110","Cvt vesicle membrane"]]},{"id":"GO:0033117","l":"esterosome","na":3,"nb":1,"a":[["membrane_organelle/esterosome.html","esterosome"],["membrane_organelle/esterosome_lumen.html","esterosome lumen"],["membrane_organelle/esterosome_membrane.html","esterosome membrane"]],"b":[["GO%3A0033117","esterosome"]]},{"id":"GO:0033118","l":"esterosome membrane","na":3,"nb":1,"a":[["membrane_organelle/esterosome.html","esterosome"],["membrane_organelle/esterosome_lumen.html","esterosome lumen"],["membrane_organelle/esterosome_membrane.html","esterosome membrane"]],"b":[["GO%3A0033118","esterosome membrane"]]},{"id":"GO:0033163","l":"microneme membrane","na":3,"nb":1,"a":[["membrane_organelle/microneme.html","microneme"],["membrane_organelle/microneme_lumen.html","microneme lumen"],["membrane_organelle/microneme_membrane.html","microneme membrane"]],"b":[["GO%3A0033163","microneme membrane"]]},{"id":"GO:0033281","l":"TAT protein transport complex","na":1,"nb":3,"a":[["secretion_system/tat_protein_transport_complex.html","TAT protein transport complex"]],"b":[["ComplexPortal%3ACPX-3445","Twin-arginine translocation complex"],["GO%3A0033281","TAT protein transport complex"],["NCBIfam%3ATIGR01912","Sec-independent protein translocase TatC"]]},{"id":"GO:0034044","l":"exomer complex","na":1,"nb":3,"a":[["other/exomer_complex.html","exomer complex"]],"b":[["ComplexPortal%3ACPX-1719","Exomer complex"],["ComplexPortal%3ACPX-26504","Exomer complex"],["GO%3A0034044","exomer complex"]]},{"id":"GO:0034423","l":"autophagosome lumen","na":3,"nb":1,"a":[["membrane_organelle/autophagosome.html","autophagosome"],["membrane_organelle/autophagosome_lumen.html","autophagosome lumen"],["membrane_organelle/autophagosome_membrane.html","autophagosome membrane"]],"b":[["GO%3A0034423","autophagosome lumen"]]},{"id":"GO:0034430","l":"monolayer-surrounded lipid storage body outer lipid monolayer","na":3,"nb":1,"a":[["inclusion/lipid_droplet.html","lipid droplet"],["inclusion/monolayer_surrounded_lipid_storage_body_outer_lipid_monolayer.html","monolayer-surrounded lipid storage body outer lipid monolayer"],["inclusion/plastoglobule.html","plastoglobule"]],"b":[["GO%3A0034430","monolayer-surrounded lipid storage body outer lipid monolayer"]]},{"id":"GO:0034467","l":"esterosome lumen","na":3,"nb":1,"a":[["membrane_organelle/esterosome.html","esterosome"],["membrane_organelle/esterosome_lumen.html","esterosome lumen"],["membrane_organelle/esterosome_membrane.html","esterosome membrane"]],"b":[["GO%3A0034467","esterosome lumen"]]},{"id":"GO:0034468","l":"glycosome lumen","na":3,"nb":1,"a":[["membrane_organelle/glycosome.html","glycosome"],["membrane_organelle/glycosome_lumen.html","glycosome lumen"],["membrane_organelle/glycosome_membrane.html","glycosome membrane"]],"b":[["GO%3A0034468","glycosome lumen"]]},{"id":"GO:0034492","l":"hydrogenosome lumen","na":3,"nb":1,"a":[["membrane_organelle/hydrogenosomal_membrane.html","hydrogenosomal membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/hydrogenosome_lumen.html","hydrogenosome lumen"]],"b":[["GO%3A0034492","hydrogenosome lumen"]]},{"id":"GO:0034494","l":"microneme lumen","na":3,"nb":1,"a":[["membrane_organelle/microneme.html","microneme"],["membrane_organelle/microneme_lumen.html","microneme lumen"],["membrane_organelle/microneme_membrane.html","microneme membrane"]],"b":[["GO%3A0034494","microneme lumen"]]},{"id":"GO:0034591","l":"rhoptry lumen","na":3,"nb":1,"a":[["membrane_organelle/rhoptry.html","rhoptry"],["membrane_organelle/rhoptry_lumen.html","rhoptry lumen"],["membrane_organelle/rhoptry_membrane.html","rhoptry membrane"]],"b":[["GO%3A0034591","rhoptry lumen"]]},{"id":"GO:0034777","l":"recycling endosome lumen","na":3,"nb":1,"a":[["membrane_organelle/recycling_endosome.html","recycling endosome"],["membrane_organelle/recycling_endosome_lumen.html","recycling endosome lumen"],["membrane_organelle/recycling_endosome_membrane.html","recycling endosome membrane"]],"b":[["GO%3A0034777","recycling endosome lumen"]]},{"id":"GO:0036286","l":"eisosome filament","na":3,"nb":1,"a":[["cytoskeleton/eisosome_filament.html","eisosome filament"],["envelope/eisosome_membrane_domain_mcc.html","eisosome membrane domain/MCC"],["other/eisosome.html","eisosome"]],"b":[["GO%3A0036286","eisosome filament"]]},{"id":"GO:0042566","l":"hydrogenosome","na":3,"nb":1,"a":[["membrane_organelle/hydrogenosomal_membrane.html","hydrogenosomal membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/hydrogenosome_lumen.html","hydrogenosome lumen"]],"b":[["GO%3A0042566","hydrogenosome"]]},{"id":"GO:0042603","l":"capsule","na":3,"nb":1,"a":[["envelope/capsule.html","capsule"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]],"b":[["GO%3A0042603","capsule"]]},{"id":"GO:0042763","l":"intracellular immature spore","na":1,"nb":3,"a":[["spore/endospore_forming_forespore.html","endospore-forming forespore"]],"b":[["GO%3A0042764","ascospore-type prospore"],["GO%3A0042601","endospore-forming forespore"],["GO%3A0042763","intracellular immature spore"]]},{"id":"GO:0043529","l":"GET complex","na":1,"nb":3,"a":[["other/get_complex.html","GET complex"]],"b":[["ComplexPortal%3ACPX-6464","GET complex"],["ComplexPortal%3ACPX-956","GET complex"],["GO%3A0043529","GET complex"]]},{"id":"GO:0043594","l":"outer endospore membrane","na":3,"nb":1,"a":[["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"],["spore/outer_endospore_membrane.html","outer endospore membrane"],["spore/spore_inner_membrane.html","spore inner membrane"]],"b":[["GO%3A0043594","outer endospore membrane"]]},{"id":"GO:0044599","l":"AP-5 adaptor complex","na":1,"nb":3,"a":[["other/ap_5_adaptor_complex.html","AP-5 adaptor complex"]],"b":[["ComplexPortal%3ACPX-5181","AP-5 Adaptor complex"],["ComplexPortal%3ACPX-5182","AP-5 Adaptor complex"],["GO%3A0044599","AP-5 adaptor complex"]]},{"id":"GO:0046858","l":"chlorosome","na":3,"nb":1,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"]],"b":[["GO%3A0046858","chlorosome"]]},{"id":"GO:0046859","l":"hydrogenosomal membrane","na":3,"nb":1,"a":[["membrane_organelle/hydrogenosomal_membrane.html","hydrogenosomal membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/hydrogenosome_lumen.html","hydrogenosome lumen"]],"b":[["GO%3A0046859","hydrogenosomal membrane"]]},{"id":"GO:0046860","l":"glycosome membrane","na":3,"nb":1,"a":[["membrane_organelle/glycosome.html","glycosome"],["membrane_organelle/glycosome_lumen.html","glycosome lumen"],["membrane_organelle/glycosome_membrane.html","glycosome membrane"]],"b":[["GO%3A0046860","glycosome membrane"]]},{"id":"GO:0046861","l":"glyoxysomal membrane","na":3,"nb":1,"a":[["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysomal_membrane.html","glyoxysomal membrane"],["membrane_organelle/glyoxysome.html","glyoxysome"]],"b":[["GO%3A0046861","glyoxysomal membrane"]]},{"id":"GO:0048492","l":"ribulose bisphosphate carboxylase complex","na":1,"nb":3,"a":[["other/pyrenoid.html","pyrenoid"]],"b":[["GO%3A0009573","chloroplast ribulose bisphosphate carboxylase complex"],["GO%3A0048494","chromatophore ribulose bisphosphate carboxylase complex"],["GO%3A0048492","ribulose bisphosphate carboxylase complex"]]},{"id":"GO:0062159","l":"contractile vacuole complex","na":3,"nb":1,"a":[["membrane_organelle/contractile_vacuole.html","contractile vacuole"],["membrane_organelle/contractile_vacuole_complex.html","contractile vacuole complex"],["membrane_organelle/spongiome.html","spongiome"]],"b":[["GO%3A0062159","contractile vacuole complex"]]},{"id":"GO:0070088","l":"polyhydroxyalkanoate granule","na":1,"nb":3,"a":[["inclusion/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]],"b":[["GO%3A0070088","polyhydroxyalkanoate granule"],["NCBIfam%3ANF045536","polyhydroxyalkanoate granule-associated phasin"],["NCBIfam%3ANF045537","polyhydroxyalkanoate granule-associated phasin"]]},{"id":"GO:0070115","l":"organellar chromatophore intermembrane space","na":3,"nb":1,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_inner_membrane.html","organellar chromatophore inner membrane"],["membrane_organelle/organellar_chromatophore_intermembrane_space.html","organellar chromatophore intermembrane space"]],"b":[["GO%3A0070115","organellar chromatophore intermembrane space"]]},{"id":"GO:0071008","l":"U2-type post-mRNA release spliceosomal complex","na":1,"nb":3,"a":[["ribonucleoprotein/u2_type_post_mrna_release_spliceosomal_complex.html","U2-type post-mRNA release spliceosomal complex"]],"b":[["ComplexPortal%3ACPX-1886","Post-mRNA release spliceosomal complex"],["GO%3A0071008","U2-type post-mRNA release spliceosomal complex"],["Pfam%3APF15458","Nineteen complex-related protein 2"]]},{"id":"GO:0071012","l":"catalytic step 1 spliceosome","na":1,"nb":3,"a":[["ribonucleoprotein/u12_type_catalytic_step_1_spliceosome.html","U12-type catalytic step 1 spliceosome"]],"b":[["GO%3A0071012","catalytic step 1 spliceosome"],["GO%3A0071017","U12-type catalytic step 1 spliceosome"],["GO%3A0071006","U2-type catalytic step 1 spliceosome"]]},{"id":"GO:0090512","l":"eisosome membrane domain/MCC","na":3,"nb":1,"a":[["cytoskeleton/eisosome_filament.html","eisosome filament"],["envelope/eisosome_membrane_domain_mcc.html","eisosome membrane domain/MCC"],["other/eisosome.html","eisosome"]],"b":[["GO%3A0090512","eisosome membrane domain/MCC"]]},{"id":"GO:0090641","l":"microsporidian-type endospore","na":3,"nb":1,"a":[["spore/microsporidian_type_endospore.html","microsporidian-type endospore"],["spore/microsporidian_type_exospore.html","microsporidian-type exospore"],["spore/spore_wall.html","spore wall"]],"b":[["GO%3A0090641","microsporidian-type endospore"]]},{"id":"GO:0097595","l":"ventral disc crossbridge","na":3,"nb":1,"a":[["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_crossbridge.html","ventral disc crossbridge"],["cytoskeleton/ventral_disc_dorsal_microribbon.html","ventral disc dorsal microribbon"]],"b":[["GO%3A0097595","ventral disc crossbridge"]]},{"id":"GO:0106234","l":"outer membrane protein complex","na":1,"nb":3,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["GO%3A0106234","outer membrane protein complex"],["NCBIfam%3ANF033942","outer membrane porin GjpA"],["NCBIfam%3ANF053618","PopA family porin-like outer membrane protein"]]},{"id":"GO:0160111","l":"axonemal A tubule inner sheath","na":3,"nb":1,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_a_tubule_inner_sheath.html","axonemal A tubule inner sheath"],["cytoskeleton/axonemal_microtubule_doublet_inner_sheath.html","axonemal microtubule doublet inner sheath"]],"b":[["GO%3A0160111","axonemal A tubule inner sheath"]]},{"id":"GO:0160112","l":"axonemal B tubule inner sheath","na":3,"nb":1,"a":[["cytoskeleton/axonemal_b_tubule_inner_sheath.html","axonemal B tubule inner sheath"],["cytoskeleton/axonemal_microtubule_doublet_inner_sheath.html","axonemal microtubule doublet inner sheath"],["cytoskeleton/b_axonemal_microtubule.html","B axonemal microtubule"]],"b":[["GO%3A0160112","axonemal B tubule inner sheath"]]},{"id":"GO:0160211","l":"apicoplast membrane","na":3,"nb":1,"a":[["membrane_organelle/apicoplast.html","apicoplast"],["membrane_organelle/apicoplast_membrane.html","apicoplast membrane"],["membrane_organelle/plastid_membrane.html","plastid membrane"]],"b":[["GO%3A0160211","apicoplast membrane"]]},{"id":"GO:1990718","l":"axonemal central pair projection","na":3,"nb":1,"a":[["cytoskeleton/axonemal_central_apparatus.html","axonemal central apparatus"],["cytoskeleton/axonemal_central_pair.html","axonemal central pair"],["cytoskeleton/axonemal_central_pair_projection.html","axonemal central pair projection"]],"b":[["GO%3A1990718","axonemal central pair projection"]]},{"id":"GO:1990900","l":"ciliary pocket collar","na":3,"nb":1,"a":[["cytoskeleton/bilobe_structure.html","bilobe structure"],["cytoskeleton/ciliary_pocket_collar.html","ciliary pocket collar"],["membrane_organelle/flagellar_pocket.html","flagellar pocket"]],"b":[["GO%3A1990900","ciliary pocket collar"]]},{"id":"GO:1990916","l":"Isp3 layer of spore wall","na":3,"nb":1,"a":[["spore/ascospore_wall.html","ascospore wall"],["spore/dityrosine_layer_of_spore_wall.html","dityrosine layer of spore wall"],["spore/isp3_layer_of_spore_wall.html","Isp3 layer of spore wall"]],"b":[["GO%3A1990916","Isp3 layer of spore wall"]]},{"id":"InterPro:IPR001182","l":"","na":1,"nb":3,"a":[["envelope/peptidoglycan_based_cell_wall.html","peptidoglycan-based cell wall"]],"b":[["PANTHER%3APTHR30474","CELL CYCLE PROTEIN"],["Pfam%3APF01098","Cell cycle protein"],["PROSITE%3APS00428","Cell cycle proteins ftsW / rodA / spoVE signature"]]},{"id":"InterPro:IPR001689","l":"","na":1,"nb":3,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]],"b":[["Pfam%3APF02154","Flagellar motor switch protein FliM"],["Pfam%3APF01052","Type III flagellar switch regulator (C-ring) FliN C-term"],["PRINTS%3APR00955","Flagellar motor switch protein FliM signature"]]},{"id":"InterPro:IPR002326","l":"","na":1,"nb":3,"a":[["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"]],"b":[["PANTHER%3APTHR10266","CYTOCHROME C1"],["Pfam%3APF02167","Cytochrome C1 family"],["PRINTS%3APR00603","Cytochrome C1 signature"]]},{"id":"InterPro:IPR003418","l":"","na":1,"nb":3,"a":[["energy_complex/fumarate_reductase_complex.html","fumarate reductase complex"]],"b":[["GO%3A0045283","fumarate reductase complex"],["Pfam%3APF02313","Fumarate reductase subunit D"],["HAMAP%3AMF_00709","Fumarate reductase subunit D [frdD]"]]},{"id":"InterPro:IPR003510","l":"","na":1,"nb":3,"a":[["energy_complex/fumarate_reductase_complex.html","fumarate reductase complex"]],"b":[["GO%3A0045283","fumarate reductase complex"],["Pfam%3APF02300","Fumarate reductase subunit C"],["HAMAP%3AMF_00708","Fumarate reductase subunit C [frdC]"]]},{"id":"InterPro:IPR005737","l":"","na":1,"nb":3,"a":[["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["HAMAP%3AMF_00938","DNA topoisomerase 4 subunit B [parE]"],["Pfam%3APF00986","DNA gyrase B subunit, carboxyl terminus"],["PRINTS%3APR01098","Topoisomerase IV subunit B signature"]]},{"id":"InterPro:IPR005743","l":"","na":1,"nb":3,"a":[["other/dna_gyrase_complex.html","DNA gyrase complex"]],"b":[["Pfam%3APF00521","DNA gyrase/topoisomerase IV, subunit A"],["HAMAP%3AMF_01897","DNA gyrase subunit A [gyrA]"],["Pfam%3APF03989","DNA gyrase C-terminal domain, beta-propeller"]]},{"id":"InterPro:IPR010204","l":"","na":1,"nb":3,"a":[["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"]],"b":[["Pfam%3APF04205","FMN-binding domain"],["HAMAP%3AMF_00427","Na(+)-translocating NADH-quinone reductase subunit C [nqrC]"],["PANTHER%3APTHR37838","NA(+)-TRANSLOCATING NADH-QUINONE REDUCTASE SUBUNIT C"]]},{"id":"InterPro:IPR012826","l":"","na":1,"nb":3,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]],"b":[["Pfam%3APF04509","CheC-like family"],["Pfam%3APF01052","Type III flagellar switch regulator (C-ring) FliN C-term"],["Pfam%3APF16973","Flagellar motor switch protein FliN N-terminal"]]},{"id":"InterPro:IPR026592","l":"","na":1,"nb":3,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["Pfam%3APF04355","Outer membrane protein assembly factor BamE domain"],["HAMAP%3AMF_00925","Outer membrane protein assembly factor BamE [bamE]"],["PANTHER%3APTHR37482","OUTER MEMBRANE PROTEIN ASSEMBLY FACTOR BAME"]]},{"id":"InterPro:IPR050220","l":"","na":1,"nb":3,"a":[["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["Pfam%3APF00521","DNA gyrase/topoisomerase IV, subunit A"],["PANTHER%3APTHR43493","DNA GYRASE/TOPOISOMERASE SUBUNIT A"],["Pfam%3APF03989","DNA gyrase C-terminal domain, beta-propeller"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":3,"a":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]],"b":[["TED%3AAF-A0A142EAM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142EAM9-F1-model_v4_TED03"],["TED%3AAF-A0A1Q3DTY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3DTY6-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3DNE3-F1-model_v4_TED01","TED novel fold AF-A0A1Q3DNE3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":1,"nb":3,"a":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]],"b":[["Pfam%3APF03069","Acetamidase/Formamidase family"],["PROSITE%3APS00818","Dps protein family signature 1"],["Pfam%3APF13810","Domain of unknown function (DUF4185)"]]},{"id":"NCBITaxon:243233","l":"Methylococcus capsulatus Bath","na":1,"nb":3,"a":[["membrane_organelle/methane_oxidizing_organelle.html","methane-oxidizing organelle"]],"b":[["Pfam%3APF17850","CysA C-terminal regulatory domain"],["Pfam%3APF02461","Ammonia monooxygenase"],["TED%3AAF-Q604F4-F1-model_v4_TED02","TED novel fold AF-Q604F4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:381666","l":"Cupriavidus necator H16","na":1,"nb":3,"a":[["inclusion/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]],"b":[["Pfam%3APF13473","Cupredoxin-like domain"],["Pfam%3APF10605","3HB-oligomer hydrolase (3HBOH)"],["Pfam%3APF21783","YNCE-like beta-propeller"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":1,"nb":3,"a":[["microcompartment/bacterial_microcompartment.html","bacterial microcompartment"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF22277","EncFtn-like"],["TED%3AAF-D0LJ11-F1-model_v4_TED04","TED highly-symmetric fold AF-D0LJ11-F1-model_v4_TED04"]]},{"id":"NCBITaxon:5334","l":"Schizophyllum commune","na":1,"nb":3,"a":[["envelope/dolipore_septum.html","dolipore septum"]],"b":[["Pfam%3APF04611","Mating type protein A alpha Y mating type dependent binding region"],["Pfam%3APF01185","Fungal hydrophobin"],["PROSITE%3APS00956","Fungal hydrophobins signature"]]},{"id":"NCBITaxon:55529","l":"Guillardia theta","na":1,"nb":3,"a":[["membrane_organelle/nucleomorph.html","nucleomorph"]],"b":[["Pfam%3APF06868","Protein of unknown function (DUF1257)"],["Pfam%3APF05421","Protein of unknown function (DUF751)"],["TED%3AAF-A0A7S4PQE0-F1-model_v4_TED01","TED novel fold AF-A0A7S4PQE0-F1-model_v4_TED01"]]},{"id":"UniProt:O31728","l":"","na":1,"nb":3,"a":[["division_machinery/divisome_complex.html","divisome complex"]],"b":[["Pfam%3APF04472","Cell division protein SepF"],["InterPro%3AIPR038594","SepF-like superfamily"],["CATH%3A3.30.110.150","SepF-like protein"]]},{"id":"UniProt:P0C018","l":"Large ribosomal subunit protein uL18","na":1,"nb":3,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00060","50S ribosomal protein L18"],["Pfam%3APF00861","Ribosomal L18 of archaea, bacteria, mitoch. and chloroplast"]]},{"id":"UniProt:P35535","l":"","na":1,"nb":3,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0009425","bacterial-type flagellum basal body"],["NCBIfam%3ATIGR01402","flagellar biosynthesis protein FliQ"],["Pfam%3APF01313","Bacterial export proteins, family 3"]]},{"id":"UniProt:P35537","l":"","na":1,"nb":3,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0009425","bacterial-type flagellum basal body"],["NCBIfam%3ATIGR01400","flagellar biosynthetic protein FliR"],["Pfam%3APF01311","Bacterial export proteins, family 1"]]},{"id":"UniProt:P54700","l":"","na":1,"nb":3,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF00813","FliP family"],["PROSITE%3APS01060","Flagella transport protein fliP family signature 1"],["PROSITE%3APS01061","Flagella transport protein fliP family signature 2"]]},{"id":"UniProt:Q9ZFU8","l":"","na":1,"nb":3,"a":[["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"]],"b":[["Pfam%3APF00936","BMC domain"],["Pfam%3APF16365","Ethanolamine utilization protein EutK C-terminus"],["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"CHEBI:16261","l":"chitosan","na":2,"nb":1,"a":[["spore/ascospore_wall.html","ascospore wall"],["spore/chitosan_layer_of_spore_wall.html","chitosan layer of spore wall"]],"b":[["proteintraitsmech%3ABIOLIP_GCS","GCS-binding site"]]},{"id":"CHEBI:16412","l":"","na":2,"nb":1,"a":[["envelope/cell_outer_membrane.html","cell outer membrane"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:25438","l":"","na":1,"nb":2,"a":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]]},{"id":"GO:0000934","l":"porous cell septum","na":1,"nb":2,"a":[["envelope/dolipore_septum.html","dolipore septum"]],"b":[["GO%3A0000937","dolipore septum"],["GO%3A0000934","porous cell septum"]]},{"id":"GO:0001405","l":"PAM complex, Tim23 associated import motor","na":1,"nb":2,"a":[["other/pam_complex_tim23_associated_import_motor.html","PAM complex, Tim23 associated import motor"]],"b":[["GO%3A0001405","PAM complex, Tim23 associated import motor"],["Pfam%3APF08566","Mitochondrial import protein Pam17"]]},{"id":"GO:0005692","l":"U11 snRNP","na":2,"nb":1,"a":[["ribonucleoprotein/u11_snrnp.html","U11 snRNP"],["ribonucleoprotein/u11_u12_snrnp.html","U11/U12 snRNP"]],"b":[["GO%3A0005692","U11 snRNP"]]},{"id":"GO:0005905","l":"clathrin-coated pit","na":2,"nb":1,"a":[["other/clathrin_coat_of_coated_pit.html","clathrin coat of coated pit"],["other/clathrin_coated_pit.html","clathrin-coated pit"]],"b":[["GO%3A0005905","clathrin-coated pit"]]},{"id":"GO:0009319","l":"cytochrome o ubiquinol oxidase complex","na":1,"nb":2,"a":[["energy_complex/cytochrome_o_ubiquinol_oxidase_complex.html","cytochrome o ubiquinol oxidase complex"]],"b":[["ComplexPortal%3ACPX-2102","Cytochrome bo3 ubiquinol oxidase complex"],["GO%3A0009319","cytochrome o ubiquinol oxidase complex"]]},{"id":"GO:0009340","l":"DNA topoisomerase IV complex","na":1,"nb":2,"a":[["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["GO%3A0009340","DNA topoisomerase IV complex"],["NCBIfam%3ATIGR01062","DNA topoisomerase IV subunit A"]]},{"id":"GO:0010287","l":"plastoglobule","na":2,"nb":1,"a":[["inclusion/plastoglobule.html","plastoglobule"],["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"]],"b":[["GO%3A0010287","plastoglobule"]]},{"id":"GO:0020005","l":"symbiont-containing vacuole membrane","na":2,"nb":1,"a":[["membrane_organelle/parasitophorous_vacuole.html","parasitophorous vacuole"],["membrane_organelle/parasitophorous_vacuole_membrane.html","parasitophorous vacuole membrane"]],"b":[["GO%3A0020005","symbiont-containing vacuole membrane"]]},{"id":"GO:0020011","l":"apicoplast","na":2,"nb":1,"a":[["membrane_organelle/apicoplast.html","apicoplast"],["membrane_organelle/apicoplast_membrane.html","apicoplast membrane"]],"b":[["GO%3A0020011","apicoplast"]]},{"id":"GO:0020016","l":"flagellar pocket","na":2,"nb":1,"a":[["cytoskeleton/ciliary_pocket_collar.html","ciliary pocket collar"],["membrane_organelle/flagellar_pocket.html","flagellar pocket"]],"b":[["GO%3A0020016","ciliary pocket"]]},{"id":"GO:0020023","l":"kinetoplast","na":1,"nb":2,"a":[["nucleoid/kinetoplast.html","kinetoplast"]],"b":[["GO%3A0140525","antipodal site"],["GO%3A0020023","kinetoplast"]]},{"id":"GO:0020025","l":"subpellicular microtubule","na":2,"nb":1,"a":[["cytoskeleton/subpellicular_microtubule.html","subpellicular microtubule"],["membrane_organelle/mononeme.html","mononeme"]],"b":[["GO%3A0020025","subpellicular microtubule"]]},{"id":"GO:0030114","l":"slime layer","na":2,"nb":1,"a":[["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]],"b":[["GO%3A0030114","slime layer"]]},{"id":"GO:0030668","l":"apicomplexan dense granule membrane","na":2,"nb":1,"a":[["membrane_organelle/apicomplexan_dense_granule.html","apicomplexan dense granule"],["membrane_organelle/apicomplexan_dense_granule_membrane.html","apicomplexan dense granule membrane"]],"b":[["GO%3A0030668","apicomplexan dense granule membrane"]]},{"id":"GO:0031205","l":"endoplasmic reticulum Sec complex","na":2,"nb":1,"a":[["other/endoplasmic_reticulum_sec_complex.html","endoplasmic reticulum Sec complex"],["other/sec62_sec63_complex.html","Sec62/Sec63 complex"]],"b":[["GO%3A0031205","endoplasmic reticulum Sec complex"]]},{"id":"GO:0031518","l":"CBF3 complex","na":1,"nb":2,"a":[["other/cbf3_complex.html","CBF3 complex"]],"b":[["ComplexPortal%3ACPX-1898","CBF3 complex"],["GO%3A0031518","CBF3 complex"]]},{"id":"GO:0031561","l":"cellular bud tip polarisome","na":2,"nb":1,"a":[["other/cellular_bud_tip.html","cellular bud tip"],["other/polarisome.html","polarisome"]],"b":[["GO%3A0031561","cellular bud tip polarisome"]]},{"id":"GO:0031903","l":"microbody membrane","na":1,"nb":2,"a":[["membrane_organelle/peroxisomal_membrane.html","peroxisomal membrane"]],"b":[["GO%3A0031903","microbody membrane"],["GO%3A0005778","peroxisomal membrane"]]},{"id":"GO:0031907","l":"microbody lumen","na":1,"nb":2,"a":[["membrane_organelle/peroxisomal_matrix.html","peroxisomal matrix"]],"b":[["GO%3A0031907","microbody lumen"],["GO%3A0005782","peroxisomal matrix"]]},{"id":"GO:0031910","l":"cytostome","na":2,"nb":1,"a":[["membrane_organelle/early_endosome.html","early endosome"],["other/cytostome.html","cytostome"]],"b":[["GO%3A0031910","cytostome"]]},{"id":"GO:0032010","l":"phagolysosome","na":1,"nb":2,"a":[["membrane_organelle/phagocytic_vesicle.html","phagocytic vesicle"]],"b":[["GO%3A0020020","food vacuole"],["GO%3A0032010","phagolysosome"]]},{"id":"GO:0032258","l":"cytoplasm to vacuole targeting by the Cvt pathway","na":2,"nb":1,"a":[["membrane_organelle/cvt_vesicle.html","Cvt vesicle"],["membrane_organelle/cvt_vesicle_membrane.html","Cvt vesicle membrane"]],"b":[["GO%3A0032258","cytoplasm to vacuole targeting by the Cvt pathway"]]},{"id":"GO:0033099","l":"attachment organelle","na":2,"nb":1,"a":[["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"]],"b":[["GO%3A0033099","attachment organelle"]]},{"id":"GO:0033101","l":"cellular bud membrane","na":2,"nb":1,"a":[["envelope/cellular_bud_membrane.html","cellular bud membrane"],["other/cellular_bud.html","cellular bud"]],"b":[["GO%3A0033101","cellular bud membrane"]]},{"id":"GO:0033102","l":"acidocalcisome membrane","na":2,"nb":1,"a":[["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"]],"b":[["GO%3A0033102","acidocalcisome membrane"]]},{"id":"GO:0033105","l":"chlorosome envelope","na":2,"nb":1,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"]],"b":[["GO%3A0033105","chlorosome envelope"]]},{"id":"GO:0033111","l":"attachment organelle membrane","na":2,"nb":1,"a":[["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"]],"b":[["GO%3A0033111","attachment organelle membrane"]]},{"id":"GO:0033551","l":"monopolin complex","na":1,"nb":2,"a":[["other/monopolin_complex.html","monopolin complex"]],"b":[["ComplexPortal%3ACPX-1681","Monopolin complex"],["GO%3A0033551","monopolin complex"]]},{"id":"GO:0034063","l":"stress granule assembly","na":1,"nb":2,"a":[["ribonucleoprotein/cytoplasmic_stress_granule.html","cytoplasmic stress granule"]],"b":[["ComplexPortal%3ACPX-1412","UBP3-BRE5 ubiquitin hydrolase complex"],["GO%3A0034063","stress granule assembly"]]},{"id":"GO:0034270","l":"Cvt complex","na":2,"nb":1,"a":[["membrane_organelle/cvt_vesicle.html","Cvt vesicle"],["membrane_organelle/cvt_vesicle_membrane.html","Cvt vesicle membrane"]],"b":[["GO%3A0034270","Cvt complex"]]},{"id":"GO:0034335","l":"DNA negative supercoiling activity","na":1,"nb":2,"a":[["other/dna_gyrase_complex.html","DNA gyrase complex"]],"b":[["ComplexPortal%3ACPX-2177","GyrA-GyrB DNA Gyrase complex"],["GO%3A0034335","DNA negative supercoiling activity"]]},{"id":"GO:0042644","l":"chloroplast nucleoid","na":2,"nb":1,"a":[["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"],["nucleoid/chloroplast_nucleoid.html","chloroplast nucleoid"]],"b":[["GO%3A0042644","chloroplast nucleoid"]]},{"id":"GO:0042764","l":"ascospore-type prospore","na":2,"nb":1,"a":[["spore/endospore_forming_forespore.html","endospore-forming forespore"],["spore/prospore_membrane.html","prospore membrane"]],"b":[["GO%3A0042764","ascospore-type prospore"]]},{"id":"GO:0043592","l":"exosporium","na":1,"nb":2,"a":[["spore/exosporium.html","exosporium"]],"b":[["GO%3A0043592","exosporium"],["NCBIfam%3ATIGR03720","exosporium leader peptide-containing protein"]]},{"id":"GO:0043846","l":"DNA polymerase III, clamp loader complex","na":1,"nb":2,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"]],"b":[["ComplexPortal%3ACPX-1926","DNA polymerase III clamp loader complex"],["GO%3A0043846","DNA polymerase III, clamp loader complex"]]},{"id":"GO:0044096","l":"type IV pilus","na":2,"nb":1,"a":[["appendage/tad_pilus.html","Tad pilus"],["appendage/type_iv_pilus.html","type IV pilus"]],"b":[["GO%3A0044096","type IV pilus"]]},{"id":"GO:0044315","l":"protein secretion by the type VII secretion system","na":2,"nb":1,"a":[["secretion_system/esx_3_type_vii_secretion_system_membrane_complex.html","ESX-3 type VII secretion system membrane complex"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]],"b":[["GO%3A0044315","protein secretion by the type VII secretion system"]]},{"id":"GO:0044775","l":"DNA polymerase III, beta sliding clamp processivity factor complex","na":1,"nb":2,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"]],"b":[["ComplexPortal%3ACPX-1927","DNA polymerase III, beta sliding clamp processivity factor complex"],["GO%3A0044775","DNA polymerase III, beta sliding clamp processivity factor complex"]]},{"id":"GO:0044776","l":"DNA polymerase III, core complex","na":1,"nb":2,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"]],"b":[["ComplexPortal%3ACPX-1925","DNA polymerase III core complex"],["GO%3A0044776","DNA polymerase III, core complex"]]},{"id":"GO:0044777","l":"single-stranded DNA-binding protein complex","na":1,"nb":2,"a":[["other/single_stranded_dna_binding_protein_complex.html","single-stranded DNA-binding protein complex"]],"b":[["ComplexPortal%3ACPX-1928","SSB single-stranded DNA binding complex"],["GO%3A0044777","single-stranded DNA-binding protein complex"]]},{"id":"GO:0045283","l":"fumarate reductase complex","na":1,"nb":2,"a":[["energy_complex/fumarate_reductase_complex.html","fumarate reductase complex"]],"b":[["ComplexPortal%3ACPX-1967","Plasma membrane fumarate reductase complex"],["GO%3A0045283","fumarate reductase complex"]]},{"id":"GO:0051144","l":"1,2-propanediol catabolic process","na":1,"nb":2,"a":[["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]],"b":[["GO%3A0051144","1,2-propanediol catabolic process"],["NCBIfam%3ANF047788","transcriptional regulator PocR"]]},{"id":"GO:0055040","l":"periplasmic flagellum","na":1,"nb":2,"a":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]],"b":[["GO%3A0055040","periplasmic flagellum"],["NCBIfam%3ANF047448","flagellar coiling protein FcpA"]]},{"id":"GO:0061701","l":"bacterial outer membrane vesicle","na":1,"nb":2,"a":[["other/bacterial_outer_membrane_vesicle.html","bacterial outer membrane vesicle"]],"b":[["GO%3A0061701","bacterial outer membrane vesicle"],["NCBIfam%3ANF049843","BAR domain-like protein A BdpA"]]},{"id":"GO:0062155","l":"curli secretion complex","na":1,"nb":2,"a":[["appendage/curli.html","curli"]],"b":[["ComplexPortal%3ACPX-4743","Curli secretion complex"],["GO%3A0062155","curli secretion complex"]]},{"id":"GO:0062160","l":"spongiome","na":2,"nb":1,"a":[["membrane_organelle/contractile_vacuole_complex.html","contractile vacuole complex"],["membrane_organelle/spongiome.html","spongiome"]],"b":[["GO%3A0062160","spongiome"]]},{"id":"GO:0070056","l":"prospore membrane leading edge","na":2,"nb":1,"a":[["spore/prospore_membrane.html","prospore membrane"],["spore/prospore_membrane_leading_edge.html","prospore membrane leading edge"]],"b":[["GO%3A0070056","prospore membrane leading edge"]]},{"id":"GO:0070057","l":"prospore membrane spindle pole body attachment site","na":2,"nb":1,"a":[["spore/prospore_membrane.html","prospore membrane"],["spore/prospore_membrane_spindle_pole_body_attachment_site.html","prospore membrane spindle pole body attachment site"]],"b":[["GO%3A0070057","prospore membrane spindle pole body attachment site"]]},{"id":"GO:0070070","l":"proton-transporting V-type ATPase complex assembly","na":1,"nb":2,"a":[["other/rave_complex.html","RAVE complex"]],"b":[["GO%3A0070070","proton-transporting V-type ATPase complex assembly"],["GO%3A0070072","vacuolar proton-transporting V-type ATPase complex assembly"]]},{"id":"GO:0070258","l":"inner membrane pellicle complex","na":2,"nb":1,"a":[["cytoskeleton/subpellicular_microtubule.html","subpellicular microtubule"],["membrane_organelle/inner_membrane_pellicle_complex.html","inner membrane pellicle complex"]],"b":[["GO%3A0070258","inner membrane pellicle complex"]]},{"id":"GO:0070477","l":"endospore core","na":2,"nb":1,"a":[["spore/endospore_core.html","endospore core"],["spore/spore_inner_membrane.html","spore inner membrane"]],"b":[["GO%3A0070477","endospore core"]]},{"id":"GO:0071005","l":"U2-type precatalytic spliceosome","na":2,"nb":1,"a":[["ribonucleoprotein/u2_type_catalytic_step_1_spliceosome.html","U2-type catalytic step 1 spliceosome"],["ribonucleoprotein/u2_type_precatalytic_spliceosome.html","U2-type precatalytic spliceosome"]],"b":[["GO%3A0071005","U2-type precatalytic spliceosome"]]},{"id":"GO:0071007","l":"U2-type catalytic step 2 spliceosome","na":1,"nb":2,"a":[["ribonucleoprotein/u2_type_catalytic_step_2_spliceosome.html","U2-type catalytic step 2 spliceosome"]],"b":[["ComplexPortal%3ACPX-26472","Major Spliceosomal C* complex"],["GO%3A0071007","U2-type catalytic step 2 spliceosome"]]},{"id":"GO:0071015","l":"U12-type prespliceosome","na":2,"nb":1,"a":[["ribonucleoprotein/u12_type_precatalytic_spliceosome.html","U12-type precatalytic spliceosome"],["ribonucleoprotein/u12_type_prespliceosome.html","U12-type prespliceosome"]],"b":[["GO%3A0071015","U12-type prespliceosome"]]},{"id":"GO:0071017","l":"U12-type catalytic step 1 spliceosome","na":2,"nb":1,"a":[["ribonucleoprotein/u12_type_catalytic_step_1_spliceosome.html","U12-type catalytic step 1 spliceosome"],["ribonucleoprotein/u12_type_catalytic_step_2_spliceosome.html","U12-type catalytic step 2 spliceosome"]],"b":[["GO%3A0071017","U12-type catalytic step 1 spliceosome"]]},{"id":"GO:0071018","l":"U12-type catalytic step 2 spliceosome","na":1,"nb":2,"a":[["ribonucleoprotein/u12_type_catalytic_step_2_spliceosome.html","U12-type catalytic step 2 spliceosome"]],"b":[["ComplexPortal%3ACPX-26509","Minor Spliceosomal B-act complex"],["GO%3A0071018","U12-type catalytic step 2 spliceosome"]]},{"id":"GO:0071019","l":"U12-type post-mRNA release spliceosomal complex","na":2,"nb":1,"a":[["ribonucleoprotein/u12_type_post_mrna_release_spliceosomal_complex.html","U12-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u12_type_post_spliceosomal_complex.html","U12-type post-spliceosomal complex"]],"b":[["GO%3A0071019","U12-type post-mRNA release spliceosomal complex"]]},{"id":"GO:0071261","l":"Ssh1 translocon complex","na":1,"nb":2,"a":[["other/ssh1_translocon_complex.html","Ssh1 translocon complex"]],"b":[["ComplexPortal%3ACPX-1834","SSH1 translocon complex"],["GO%3A0071261","Ssh1 translocon complex"]]},{"id":"GO:0071970","l":"fungal-type cell wall (1->3)-beta-D-glucan biosynthetic process","na":1,"nb":2,"a":[["other/1_3_beta_d_glucan_synthase_complex.html","1,3-beta-D-glucan synthase complex"]],"b":[["GO%3A0034413","ascospore wall (1->3)-beta-D-glucan biosynthetic process"],["GO%3A0071970","fungal-type cell wall (1->3)-beta-D-glucan biosynthetic process"]]},{"id":"GO:0090383","l":"phagosome acidification","na":1,"nb":2,"a":[["membrane_organelle/phagocytic_vesicle_lumen.html","phagocytic vesicle lumen"]],"b":[["GO%3A0090383","phagosome acidification"],["GO%3A0090390","phagosome acidification involved in apoptotic cell clearance"]]},{"id":"GO:0097002","l":"mitochondrial inner boundary membrane","na":2,"nb":1,"a":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"]],"b":[["GO%3A0097002","mitochondrial inner boundary membrane"]]},{"id":"GO:0097591","l":"ventral disc lateral crest","na":2,"nb":1,"a":[["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_lateral_crest.html","ventral disc lateral crest"]],"b":[["GO%3A0097591","ventral disc lateral crest"]]},{"id":"GO:0097592","l":"ventral disc overlap zone","na":2,"nb":1,"a":[["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_overlap_zone.html","ventral disc overlap zone"]],"b":[["GO%3A0097592","ventral disc overlap zone"]]},{"id":"GO:0097596","l":"ventral disc supernumerary microtubule array","na":2,"nb":1,"a":[["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_supernumerary_microtubule_array.html","ventral disc supernumerary microtubule array"]],"b":[["GO%3A0097596","ventral disc supernumerary microtubule array"]]},{"id":"GO:0098775","l":"curli assembly","na":1,"nb":2,"a":[["appendage/curli.html","curli"]],"b":[["ComplexPortal%3ACPX-4743","Curli secretion complex"],["GO%3A0098775","curli assembly"]]},{"id":"GO:0106176","l":"clathrin-coated endocytic vesicle lumen","na":2,"nb":1,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle_lumen.html","clathrin-coated endocytic vesicle lumen"],["membrane_organelle/endocytic_vesicle_lumen.html","endocytic vesicle lumen"]],"b":[["GO%3A0106176","clathrin-coated endocytic vesicle lumen"]]},{"id":"GO:0120119","l":"flagellum attachment zone","na":2,"nb":1,"a":[["cytoskeleton/bilobe_structure.html","bilobe structure"],["cytoskeleton/flagellum_attachment_zone.html","flagellum attachment zone"]],"b":[["GO%3A0120119","flagellum attachment zone"]]},{"id":"GO:0120217","l":"DNA gyrase complex","na":1,"nb":2,"a":[["other/dna_gyrase_complex.html","DNA gyrase complex"]],"b":[["ComplexPortal%3ACPX-2177","GyrA-GyrB DNA Gyrase complex"],["GO%3A0120217","DNA gyrase complex"]]},{"id":"GO:0140549","l":"spore inner membrane","na":2,"nb":1,"a":[["spore/endospore_core.html","endospore core"],["spore/spore_inner_membrane.html","spore inner membrane"]],"b":[["GO%3A0140549","spore inner membrane"]]},{"id":"GO:0160115","l":"axonemal microtubule doublet ribbon","na":2,"nb":1,"a":[["cytoskeleton/axonemal_doublet_microtubule.html","axonemal doublet microtubule"],["cytoskeleton/axonemal_microtubule_doublet_ribbon.html","axonemal microtubule doublet ribbon"]],"b":[["GO%3A0160115","axonemal microtubule doublet ribbon"]]},{"id":"GO:0160223","l":"pyrenoid tubule","na":2,"nb":1,"a":[["membrane_organelle/pyrenoid_tubule.html","pyrenoid tubule"],["other/pyrenoid.html","pyrenoid"]],"b":[["GO%3A0160223","pyrenoid tubule"]]},{"id":"GO:1990061","l":"bacterial degradosome","na":1,"nb":2,"a":[["ribonucleoprotein/bacterial_degradosome.html","bacterial degradosome"]],"b":[["ComplexPortal%3ACPX-403","RNA degradosome"],["GO%3A1990061","bacterial degradosome"]]},{"id":"GO:1990063","l":"Bam protein complex","na":1,"nb":2,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["ComplexPortal%3ACPX-1923","BAM complex"],["GO%3A1990063","Bam protein complex"]]},{"id":"GO:1990070","l":"TRAPPI protein complex","na":1,"nb":2,"a":[["other/trappi_protein_complex.html","TRAPPI protein complex"]],"b":[["ComplexPortal%3ACPX-1940","TRAPPI protein complex"],["GO%3A1990070","TRAPPI protein complex"]]},{"id":"GO:1990732","l":"pyrenoid","na":2,"nb":1,"a":[["membrane_organelle/pyrenoid_tubule.html","pyrenoid tubule"],["other/pyrenoid.html","pyrenoid"]],"b":[["GO%3A1990732","pyrenoid"]]},{"id":"InterPro:IPR000563","l":"","na":1,"nb":2,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF02108","Flagellar assembly protein FliH"],["PRINTS%3APR01003","Flagellar assembly protein FliH signature"]]},{"id":"InterPro:IPR002585","l":"","na":1,"nb":2,"a":[["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]],"b":[["PANTHER%3APTHR30365","CYTOCHROME D UBIQUINOL OXIDASE"],["Pfam%3APF01654","Cytochrome bd terminal oxidase subunit I"]]},{"id":"InterPro:IPR003317","l":"","na":1,"nb":2,"a":[["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]],"b":[["PANTHER%3APTHR43141","CYTOCHROME BD2 SUBUNIT II"],["Pfam%3APF02322","Cytochrome bd terminal oxidase subunit II"]]},{"id":"InterPro:IPR005742","l":"","na":1,"nb":2,"a":[["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["HAMAP%3AMF_00936","DNA topoisomerase 4 subunit A [parC]"],["Pfam%3APF03989","DNA gyrase C-terminal domain, beta-propeller"]]},{"id":"InterPro:IPR006301","l":"","na":1,"nb":2,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF00771","FHIPEP family"],["PROSITE%3APS00994","Bacterial export FHIPEP family signature"]]},{"id":"InterPro:IPR006333","l":"","na":1,"nb":2,"a":[["energy_complex/cytochrome_o_ubiquinol_oxidase_complex.html","cytochrome o ubiquinol oxidase complex"]],"b":[["Pfam%3APF00116","Cytochrome C oxidase subunit II, periplasmic domain"],["Pfam%3APF06481","COX Aromatic Rich Motif"]]},{"id":"InterPro:IPR006344","l":"","na":1,"nb":2,"a":[["other/exodeoxyribonuclease_v_complex.html","exodeoxyribonuclease V complex"]],"b":[["Pfam%3APF13245","AAA domain"],["HAMAP%3AMF_01487","RecBCD enzyme subunit RecD [recD]"]]},{"id":"InterPro:IPR008703","l":"","na":1,"nb":2,"a":[["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"]],"b":[["HAMAP%3AMF_00425","Na(+)-translocating NADH-quinone reductase subunit A [nqrA]"],["PANTHER%3APTHR37839","NA(+)-TRANSLOCATING NADH-QUINONE REDUCTASE SUBUNIT A"]]},{"id":"InterPro:IPR011344","l":"","na":1,"nb":2,"a":[["other/single_stranded_dna_binding_protein_complex.html","single-stranded DNA-binding protein complex"]],"b":[["HAMAP%3AMF_00984","Single-stranded DNA-binding protein"],["PANTHER%3APTHR10302","SINGLE-STRANDED DNA-BINDING PROTEIN"]]},{"id":"InterPro:IPR012422","l":"Cytochrome c oxidase, subunit IV, bacterial aa3 type","na":1,"nb":2,"a":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]],"b":[["InterPro%3AIPR012422","Cytochrome c oxidase, subunit IV, bacterial aa3 type"],["Pfam%3APF07835","Bacterial aa3 type cytochrome c oxidase subunit IV"]]},{"id":"InterPro:IPR014524","l":"","na":1,"nb":2,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["Pfam%3APF06804","Outer membrane protein assembly factor BamC-like C-terminal domain"],["HAMAP%3AMF_00924","Outer membrane protein assembly factor BamC [bamC]"]]},{"id":"InterPro:IPR017687","l":"","na":1,"nb":2,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["HAMAP%3AMF_00923","Outer membrane protein assembly factor BamB [bamB]"],["Pfam%3APF13360","Outer membrane protein assembly factor BamB"]]},{"id":"InterPro:IPR017689","l":"","na":1,"nb":2,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["HAMAP%3AMF_00922","Outer membrane protein assembly factor BamD [bamD]"],["Pfam%3APF13525","Outer membrane lipoprotein"]]},{"id":"InterPro:IPR024791","l":"","na":1,"nb":2,"a":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]],"b":[["Pfam%3APF00510","Cytochrome c oxidase subunit III"],["PANTHER%3APTHR11403","CYTOCHROME C OXIDASE SUBUNIT III"]]},{"id":"InterPro:IPR030689","l":"","na":1,"nb":2,"a":[["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"]],"b":[["Pfam%3APF00032","Cytochrome b(C-terminal)/b6/petD"],["Pfam%3APF00033","Cytochrome b/b6/petB"]]},{"id":"InterPro:IPR040747","l":"BILBO1, N-terminal domain","na":1,"nb":2,"a":[["cytoskeleton/ciliary_pocket_collar.html","ciliary pocket collar"]],"b":[["InterPro%3AIPR040747","BILBO1, N-terminal domain"],["Pfam%3APF18281","BILBO1 N-terminal domain"]]},{"id":"NCBITaxon:198110","l":"Pseudomonas phage 201phi2-1","na":2,"nb":1,"a":[["cytoskeleton/phuz_spindle.html","PhuZ spindle"],["other/phage_nucleus.html","phage nucleus"]],"b":[["Pfam%3APF25677","Phikzvirus chimallin family"]]},{"id":"NCBITaxon:264462","l":"Bdellovibrio bacteriovorus HD100","na":1,"nb":2,"a":[["appendage/type_iv_pilus.html","type IV pilus"]],"b":[["TED%3AAF-Q6MMM6-F1-model_v4_TED01","TED novel fold AF-Q6MMM6-F1-model_v4_TED01"],["TED%3AAF-Q6MPT8-F1-model_v4_TED01","TED novel fold AF-Q6MPT8-F1-model_v4_TED01"]]},{"id":"Pfam:PF04454","l":"Encapsulating protein for peroxidase","na":1,"nb":2,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]],"b":[["Pfam%3APF04454","Encapsulating protein for peroxidase"],["proteintraitsmech%3AINTERFACE_PF04454_PF04454","Linocin_M18–Linocin_M18 domain interface"]]},{"id":"Pfam:PF06386","l":"Gas vesicle synthesis protein GvpL/GvpF","na":1,"nb":2,"a":[["inclusion/gas_vesicle.html","gas vesicle"]],"b":[["Pfam%3APF06386","Gas vesicle synthesis protein GvpL/GvpF"],["proteintraitsmech%3AINTERFACE_PF06386_PF06386","GvpL_GvpF–GvpL_GvpF domain interface"]]},{"id":"Pfam:PF18281","l":"BILBO1 N-terminal domain","na":1,"nb":2,"a":[["cytoskeleton/ciliary_pocket_collar.html","ciliary pocket collar"]],"b":[["Pfam%3APF18281","BILBO1 N-terminal domain"],["proteintraitsmech%3AINTERFACE_PF18281_PF18281","BILBO1_N–BILBO1_N domain interface"]]},{"id":"UniProt:P11558","l":"","na":1,"nb":2,"a":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]],"b":[["RHEA%3A12532","coenzyme B + methyl-coenzyme M = methane + coenzyme M-coenzyme B heterodisulfide"],["MCSA%3A156","coenzyme-B sulfoethylthiotransferase"]]},{"id":"UniProt:P16328","l":"","na":1,"nb":2,"a":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"]],"b":[["Pfam%3APF07195","Flagellar hook-associated protein 2 C-terminus"],["Pfam%3APF02465","Flagellar hook-associated protein 2 N-terminus"]]},{"id":"UniProt:P26462","l":"","na":2,"nb":1,"a":[["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"]],"b":[["Pfam%3APF02049","Flagellar hook-basal body complex protein FliE"]]},{"id":"UniProt:P37093","l":"","na":1,"nb":2,"a":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"]],"b":[["Pfam%3APF22341","GSPII protein E, N1E domain"],["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]]},{"id":"UniProt:P45689","l":"","na":2,"nb":1,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"UniProt:P52616","l":"","na":2,"nb":1,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"]],"b":[["Pfam%3APF21504","Flagellin, barrel domain"]]},{"id":"UniProt:Q03511","l":"","na":2,"nb":1,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"UniProt:Q03512","l":"","na":2,"nb":1,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["Pfam%3APF03319","Ethanolamine utilisation protein EutN/carboxysome"]]},{"id":"UniProt:Q31QW7","l":"","na":2,"nb":1,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"]]},{"id":"CHEBI:30033","l":"","na":1,"nb":1,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"]],"b":[["proteintraitsmech%3ABIOLIP_BCL","BCL-binding site"]]},{"id":"GO:0000147","l":"actin cortical patch assembly","na":1,"nb":1,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"]],"b":[["GO%3A0000147","actin cortical patch assembly"]]},{"id":"GO:0000937","l":"dolipore septum","na":1,"nb":1,"a":[["envelope/dolipore_septum.html","dolipore septum"]],"b":[["GO%3A0000937","dolipore septum"]]},{"id":"GO:0001411","l":"hyphal tip","na":1,"nb":1,"a":[["other/spitzenkorper.html","spitzenkorper"]],"b":[["GO%3A0001411","hyphal tip"]]},{"id":"GO:0001536","l":"radial spoke stalk","na":1,"nb":1,"a":[["cytoskeleton/radial_spoke.html","radial spoke"]],"b":[["GO%3A0001536","radial spoke stalk"]]},{"id":"GO:0020003","l":"symbiont-containing vacuole","na":1,"nb":1,"a":[["membrane_organelle/parasitophorous_vacuole.html","parasitophorous vacuole"]],"b":[["GO%3A0020003","symbiont-containing vacuole"]]},{"id":"GO:0020004","l":"symbiont-containing vacuolar space","na":1,"nb":1,"a":[["membrane_organelle/parasitophorous_vacuole_lumen.html","parasitophorous vacuole lumen"]],"b":[["GO%3A0020004","symbiont-containing vacuolar space"]]},{"id":"GO:0020018","l":"ciliary pocket membrane","na":1,"nb":1,"a":[["membrane_organelle/flagellar_pocket.html","flagellar pocket"]],"b":[["GO%3A0020018","ciliary pocket membrane"]]},{"id":"GO:0020020","l":"food vacuole","na":1,"nb":1,"a":[["membrane_organelle/food_vacuole.html","food vacuole"]],"b":[["GO%3A0020020","food vacuole"]]},{"id":"GO:0020036","l":"","na":1,"nb":1,"a":[["membrane_organelle/maurer_s_cleft.html","Maurer's cleft"]],"b":[["GO%3A0020036","Maurer's cleft"]]},{"id":"GO:0030680","l":"dimeric ribonuclease P complex","na":1,"nb":1,"a":[["ribonucleoprotein/dimeric_ribonuclease_p_complex.html","dimeric ribonuclease P complex"]],"b":[["GO%3A0030680","dimeric ribonuclease P complex"]]},{"id":"GO:0031039","l":"macronucleus","na":1,"nb":1,"a":[["membrane_organelle/macronucleus.html","macronucleus"]],"b":[["GO%3A0031039","macronucleus"]]},{"id":"GO:0031040","l":"micronucleus","na":1,"nb":1,"a":[["membrane_organelle/micronucleus.html","micronucleus"]],"b":[["GO%3A0031040","micronucleus"]]},{"id":"GO:0031080","l":"nuclear pore outer ring","na":1,"nb":1,"a":[["other/nuclear_pore_outer_ring.html","nuclear pore outer ring"]],"b":[["GO%3A0031080","nuclear pore outer ring"]]},{"id":"GO:0031471","l":"ethanolamine degradation polyhedral organelle","na":1,"nb":1,"a":[["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"]],"b":[["GO%3A0031471","ethanolamine degradation polyhedral organelle"]]},{"id":"GO:0031472","l":"propanediol degradation polyhedral organelle","na":1,"nb":1,"a":[["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]],"b":[["GO%3A0031472","propanediol degradation polyhedral organelle"]]},{"id":"GO:0031521","l":"spitzenkorper","na":1,"nb":1,"a":[["other/spitzenkorper.html","spitzenkorper"]],"b":[["GO%3A0031521","spitzenkorper"]]},{"id":"GO:0031560","l":"cellular bud neck polarisome","na":1,"nb":1,"a":[["other/polarisome.html","polarisome"]],"b":[["GO%3A0031560","cellular bud neck polarisome"]]},{"id":"GO:0031562","l":"hyphal tip polarisome","na":1,"nb":1,"a":[["other/polarisome.html","polarisome"]],"b":[["GO%3A0031562","hyphal tip polarisome"]]},{"id":"GO:0031563","l":"mating projection tip polarisome","na":1,"nb":1,"a":[["other/polarisome.html","polarisome"]],"b":[["GO%3A0031563","mating projection tip polarisome"]]},{"id":"GO:0032009","l":"early phagosome","na":1,"nb":1,"a":[["membrane_organelle/phagocytic_vesicle.html","phagocytic vesicle"]],"b":[["GO%3A0032009","early phagosome"]]},{"id":"GO:0032120","l":"ascospore-type prospore membrane formation","na":1,"nb":1,"a":[["spore/prospore_membrane.html","prospore membrane"]],"b":[["GO%3A0032120","ascospore-type prospore membrane formation"]]},{"id":"GO:0033009","l":"nucleomorph","na":1,"nb":1,"a":[["membrane_organelle/nucleomorph.html","nucleomorph"]],"b":[["GO%3A0033009","nucleomorph"]]},{"id":"GO:0033172","l":"gas vesicle shell","na":1,"nb":1,"a":[["inclusion/gas_vesicle_shell.html","gas vesicle shell"]],"b":[["GO%3A0033172","gas vesicle shell"]]},{"id":"GO:0033289","l":"intraconoid microtubule","na":1,"nb":1,"a":[["cytoskeleton/intraconoid_microtubule.html","intraconoid microtubule"]],"b":[["GO%3A0033289","intraconoid microtubule"]]},{"id":"GO:0033985","l":"acidocalcisome lumen","na":1,"nb":1,"a":[["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"]],"b":[["GO%3A0033985","acidocalcisome lumen"]]},{"id":"GO:0035253","l":"ciliary rootlet","na":1,"nb":1,"a":[["cytoskeleton/ciliary_rootlet.html","ciliary rootlet"]],"b":[["GO%3A0035253","ciliary rootlet"]]},{"id":"GO:0036000","l":"mucocyst","na":1,"nb":1,"a":[["membrane_organelle/mucocyst.html","mucocyst"]],"b":[["GO%3A0036000","mucocyst"]]},{"id":"GO:0036407","l":"mycolate outer membrane","na":1,"nb":1,"a":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]],"b":[["GO%3A0036407","mycolate outer membrane"]]},{"id":"GO:0042645","l":"mitochondrial nucleoid","na":1,"nb":1,"a":[["nucleoid/mitochondrial_nucleoid.html","mitochondrial nucleoid"]],"b":[["GO%3A0042645","mitochondrial nucleoid"]]},{"id":"GO:0043263","l":"cellulosome","na":1,"nb":1,"a":[["other/cellulosome.html","cellulosome"]],"b":[["GO%3A0043263","cellulosome"]]},{"id":"GO:0044227","l":"methane-oxidizing organelle","na":1,"nb":1,"a":[["membrane_organelle/methane_oxidizing_organelle.html","methane-oxidizing organelle"]],"b":[["GO%3A0044227","methane-oxidizing organelle"]]},{"id":"GO:0044311","l":"exoneme","na":1,"nb":1,"a":[["membrane_organelle/exoneme.html","exoneme"]],"b":[["GO%3A0044311","exoneme"]]},{"id":"GO:0044611","l":"nuclear pore inner ring","na":1,"nb":1,"a":[["other/nuclear_pore_inner_ring.html","nuclear pore inner ring"]],"b":[["GO%3A0044611","nuclear pore inner ring"]]},{"id":"GO:0044612","l":"nuclear pore linkers","na":1,"nb":1,"a":[["other/nuclear_pore_linkers.html","nuclear pore linkers"]],"b":[["GO%3A0044612","nuclear pore linkers"]]},{"id":"GO:0044613","l":"nuclear pore central transport channel","na":1,"nb":1,"a":[["other/nuclear_pore_central_transport_channel.html","nuclear pore central transport channel"]],"b":[["GO%3A0044613","nuclear pore central transport channel"]]},{"id":"GO:0044614","l":"nuclear pore cytoplasmic filaments","na":1,"nb":1,"a":[["other/nuclear_pore_cytoplasmic_filaments.html","nuclear pore cytoplasmic filaments"]],"b":[["GO%3A0044614","nuclear pore cytoplasmic filaments"]]},{"id":"GO:0044615","l":"nuclear pore nuclear basket","na":1,"nb":1,"a":[["other/nuclear_pore_nuclear_basket.html","nuclear pore nuclear basket"]],"b":[["GO%3A0044615","nuclear pore nuclear basket"]]},{"id":"GO:0044674","l":"methyl coenzyme M reductase complex","na":1,"nb":1,"a":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]],"b":[["GO%3A0044674","methyl coenzyme M reductase complex"]]},{"id":"GO:0045009","l":"chitosome","na":1,"nb":1,"a":[["membrane_organelle/chitosome.html","chitosome"]],"b":[["GO%3A0045009","chitosome"]]},{"id":"GO:0046188","l":"methane catabolic process","na":1,"nb":1,"a":[["membrane_organelle/methane_oxidizing_organelle.html","methane-oxidizing organelle"]],"b":[["GO%3A0046188","methane catabolic process"]]},{"id":"GO:0055039","l":"trichocyst","na":1,"nb":1,"a":[["membrane_organelle/trichocyst.html","trichocyst"]],"b":[["GO%3A0055039","trichocyst"]]},{"id":"GO:0061909","l":"autophagosome-lysosome fusion","na":1,"nb":1,"a":[["membrane_organelle/autophagosome.html","autophagosome"]],"b":[["GO%3A0061909","autophagosome-lysosome fusion"]]},{"id":"GO:0061927","l":"TOC-TIC supercomplex I","na":1,"nb":1,"a":[["membrane_organelle/chloroplast.html","chloroplast"]],"b":[["GO%3A0061927","TOC-TIC supercomplex I"]]},{"id":"GO:0070074","l":"mononeme","na":1,"nb":1,"a":[["membrane_organelle/mononeme.html","mononeme"]],"b":[["GO%3A0070074","mononeme"]]},{"id":"GO:0070676","l":"intralumenal vesicle formation","na":1,"nb":1,"a":[["other/escrt_iv_complex.html","ESCRT IV complex"]],"b":[["GO%3A0070676","intralumenal vesicle formation"]]},{"id":"GO:0071022","l":"U12-type post-spliceosomal complex","na":1,"nb":1,"a":[["ribonucleoprotein/u12_type_post_spliceosomal_complex.html","U12-type post-spliceosomal complex"]],"b":[["GO%3A0071022","U12-type post-spliceosomal complex"]]},{"id":"GO:0097268","l":"cytoophidium","na":1,"nb":1,"a":[["cytoskeleton/cytoophidium.html","cytoophidium"]],"b":[["GO%3A0097268","cytoophidium"]]},{"id":"GO:0097568","l":"median body","na":1,"nb":1,"a":[["cytoskeleton/median_body.html","median body"]],"b":[["GO%3A0097568","median body"]]},{"id":"GO:0097691","l":"bacterial extracellular vesicle","na":1,"nb":1,"a":[["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"]],"b":[["GO%3A0097691","bacterial extracellular vesicle"]]},{"id":"GO:0097740","l":"paraflagellar rod","na":1,"nb":1,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["GO%3A0097740","paraflagellar rod"]]},{"id":"GO:0097741","l":"mastigoneme","na":1,"nb":1,"a":[["appendage/mastigoneme.html","mastigoneme"]],"b":[["GO%3A0097741","mastigoneme"]]},{"id":"GO:0098561","l":"methyl accepting chemotaxis protein complex","na":1,"nb":1,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["GO%3A0098561","methyl accepting chemotaxis protein complex"]]},{"id":"GO:0098774","l":"curli","na":1,"nb":1,"a":[["appendage/curli.html","curli"]],"b":[["GO%3A0098774","curli"]]},{"id":"GO:0110145","l":"magnetosome lumen","na":1,"nb":1,"a":[["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"]],"b":[["GO%3A0110145","magnetosome lumen"]]},{"id":"GO:0120120","l":"bilobe structure","na":1,"nb":1,"a":[["cytoskeleton/bilobe_structure.html","bilobe structure"]],"b":[["GO%3A0120120","bilobe structure"]]},{"id":"GO:0120121","l":"tripartite attachment complex","na":1,"nb":1,"a":[["cytoskeleton/tripartite_attachment_complex.html","tripartite attachment complex"]],"b":[["GO%3A0120121","tripartite attachment complex"]]},{"id":"GO:0120234","l":"stereocilium coat","na":1,"nb":1,"a":[["envelope/glycocalyx.html","glycocalyx"]],"b":[["GO%3A0120234","stereocilium coat"]]},{"id":"GO:0120238","l":"sperm glycocalyx","na":1,"nb":1,"a":[["envelope/glycocalyx.html","glycocalyx"]],"b":[["GO%3A0120238","sperm glycocalyx"]]},{"id":"GO:0120239","l":"vascular endothelial glycocalyx","na":1,"nb":1,"a":[["envelope/glycocalyx.html","glycocalyx"]],"b":[["GO%3A0120239","vascular endothelial glycocalyx"]]},{"id":"GO:0120240","l":"platelet glycocalyx","na":1,"nb":1,"a":[["envelope/glycocalyx.html","glycocalyx"]],"b":[["GO%3A0120240","platelet glycocalyx"]]},{"id":"GO:0120343","l":"radial spoke neck","na":1,"nb":1,"a":[["cytoskeleton/radial_spoke.html","radial spoke"]],"b":[["GO%3A0120343","radial spoke neck"]]},{"id":"GO:0140266","l":"Woronin body","na":1,"nb":1,"a":[["membrane_organelle/woronin_body.html","Woronin body"]],"b":[["GO%3A0140266","Woronin body"]]},{"id":"GO:0140621","l":"type I pilus","na":1,"nb":1,"a":[["appendage/type_i_pilus.html","type I pilus"]],"b":[["GO%3A0140621","type I pilus"]]},{"id":"GO:0140623","l":"type I pilus assembly","na":1,"nb":1,"a":[["appendage/type_i_pilus.html","type I pilus"]],"b":[["GO%3A0140623","type I pilus assembly"]]},{"id":"GO:0160201","l":"polaroplast","na":1,"nb":1,"a":[["membrane_organelle/polaroplast.html","polaroplast"]],"b":[["GO%3A0160201","polaroplast"]]},{"id":"GO:0160202","l":"polar tube anchoring disc","na":1,"nb":1,"a":[["spore/polar_tube_anchoring_disc.html","polar tube anchoring disc"]],"b":[["GO%3A0160202","polar tube anchoring disc"]]},{"id":"GO:0160292","l":"sodium-translocating NADH:quinone reductase complex","na":1,"nb":1,"a":[["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"]],"b":[["GO%3A0160292","sodium-translocating NADH:quinone reductase complex"]]},{"id":"GO:1990131)","l":"","na":1,"nb":1,"a":[["other/ragulator_complex.html","Ragulator complex"]],"b":[["GO%3A0071986","Ragulator complex"]]},{"id":"GO:1990225","l":"rhoptry neck","na":1,"nb":1,"a":[["membrane_organelle/rhoptry_neck.html","rhoptry neck"]],"b":[["GO%3A1990225","rhoptry neck"]]},{"id":"GO:1990413","l":"eyespot apparatus","na":1,"nb":1,"a":[["membrane_organelle/eyespot_apparatus.html","eyespot apparatus"]],"b":[["GO%3A1990413","eyespot apparatus"]]},{"id":"InterPro:IPR000067","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"]],"b":[["PRINTS%3APR01009","Flagellar M-ring protein signature"]]},{"id":"InterPro:IPR003178","l":"","na":1,"nb":1,"a":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]],"b":[["Pfam%3APF02240","Methyl-coenzyme M reductase gamma subunit"]]},{"id":"InterPro:IPR004586","l":"","na":1,"nb":1,"a":[["other/exodeoxyribonuclease_v_complex.html","exodeoxyribonuclease V complex"]],"b":[["HAMAP%3AMF_01485","RecBCD enzyme subunit RecB [recB]"]]},{"id":"InterPro:IPR005884","l":"","na":1,"nb":1,"a":[["energy_complex/fumarate_reductase_complex.html","fumarate reductase complex"]],"b":[["PROSITE%3APS00504","Fumarate reductase / succinate dehydrogenase FAD-binding site"]]},{"id":"InterPro:IPR006136","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF01312","FlhB HrpN YscU SpaS Family"]]},{"id":"InterPro:IPR006303","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF01311","Bacterial export proteins, family 1"]]},{"id":"InterPro:IPR006305","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF01313","Bacterial export proteins, family 3"]]},{"id":"InterPro:IPR006697","l":"","na":1,"nb":1,"a":[["other/exodeoxyribonuclease_v_complex.html","exodeoxyribonuclease V complex"]],"b":[["HAMAP%3AMF_01486","RecBCD enzyme subunit RecC [recC]"]]},{"id":"InterPro:IPR007824","l":"","na":1,"nb":1,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["Pfam%3APF05149","Paraflagellar rod protein"]]},{"id":"InterPro:IPR010205","l":"","na":1,"nb":1,"a":[["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"]],"b":[["HAMAP%3AMF_00430","Na(+)-translocating NADH-quinone reductase subunit F [nqrF]"]]},{"id":"InterPro:IPR010966","l":"","na":1,"nb":1,"a":[["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"]],"b":[["HAMAP%3AMF_00426","Na(+)-translocating NADH-quinone reductase subunit B [nqrB]"]]},{"id":"InterPro:IPR010967","l":"","na":1,"nb":1,"a":[["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"]],"b":[["HAMAP%3AMF_00429","Na(+)-translocating NADH-quinone reductase subunit E [nqrE]"]]},{"id":"InterPro:IPR011292","l":"","na":1,"nb":1,"a":[["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"]],"b":[["HAMAP%3AMF_00428","Na(+)-translocating NADH-quinone reductase subunit D [nqrD]"]]},{"id":"InterPro:IPR012823","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF02050","Flagellar FliJ protein"]]},{"id":"InterPro:IPR014207","l":"","na":1,"nb":1,"a":[["energy_complex/cytochrome_o_ubiquinol_oxidase_complex.html","cytochrome o ubiquinol oxidase complex"]],"b":[["PROSITE%3APS00077","Heme-copper oxidase catalytic subunit, copper B binding region signature"]]},{"id":"InterPro:IPR014210","l":"","na":1,"nb":1,"a":[["energy_complex/cytochrome_o_ubiquinol_oxidase_complex.html","cytochrome o ubiquinol oxidase complex"]],"b":[["Pfam%3APF03626","Prokaryotic Cytochrome C oxidase subunit IV"]]},{"id":"InterPro:IPR023707","l":"","na":1,"nb":1,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["HAMAP%3AMF_01430","Outer membrane protein assembly factor BamA [bamA]"]]},{"id":"InterPro:IPR047743","l":"","na":1,"nb":1,"a":[["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]],"b":[["Pfam%3APF28012","Membrane protein YnhF-like"]]},{"id":"Pfam:PF05149","l":"Paraflagellar rod protein","na":1,"nb":1,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["Pfam%3APF05149","Paraflagellar rod protein"]]},{"id":"UniProt:A0QQ46","l":"","na":1,"nb":1,"a":[["secretion_system/esx_3_type_vii_secretion_system_membrane_complex.html","ESX-3 type VII secretion system membrane complex"]],"b":[["Pfam%3APF19053","EccD-like transmembrane domain"]]},{"id":"UniProt:O85041","l":"","na":1,"nb":1,"a":[["microcompartment/carboxysome.html","carboxysome"]],"b":[["Pfam%3APF12288","Carboxysome shell peptide mid-region"]]},{"id":"UniProt:P0A1C7","l":"","na":1,"nb":1,"a":[["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]],"b":[["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"UniProt:P0A1K1","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF02050","Flagellar FliJ protein"]]},{"id":"UniProt:P0A1N8","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"]],"b":[["proteintraitsmech%3ABIOLIP_TQN","TQN-binding site"]]},{"id":"UniProt:P0A314","l":"","na":1,"nb":1,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"]],"b":[["Pfam%3APF02043","Bacteriochlorophyll C binding protein"]]},{"id":"UniProt:P0A3F8","l":"","na":1,"nb":1,"a":[["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]],"b":[["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]]},{"id":"UniProt:P0A3W0","l":"","na":1,"nb":1,"a":[["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]],"b":[["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"]]},{"id":"UniProt:P0A8Q0.","l":"","na":1,"nb":1,"a":[["energy_complex/fumarate_reductase_complex.html","fumarate reductase complex"]],"b":[["proteintraitsmech%3ABIOLIP_MQ7","MQ7-binding site"]]},{"id":"UniProt:P0ABB4","l":"","na":1,"nb":1,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"]]},{"id":"UniProt:P11560","l":"","na":1,"nb":1,"a":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]],"b":[["MCSA%3A156","coenzyme-B sulfoethylthiotransferase"]]},{"id":"UniProt:P11562","l":"","na":1,"nb":1,"a":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]],"b":[["MCSA%3A156","coenzyme-B sulfoethylthiotransferase"]]},{"id":"UniProt:P14016","l":"","na":1,"nb":1,"a":[["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]],"b":[["Pfam%3APF10628","Outer spore coat protein E (CotE)"]]},{"id":"UniProt:P22225","l":"","na":1,"nb":1,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["Pfam%3APF05149","Paraflagellar rod protein"]]},{"id":"UniProt:P26418","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]],"b":[["Pfam%3APF02154","Flagellar motor switch protein FliM"]]},{"id":"UniProt:P26419","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]],"b":[["Pfam%3APF16973","Flagellar motor switch protein FliN N-terminal"]]},{"id":"UniProt:P27134","l":"","na":1,"nb":1,"a":[["microcompartment/carboxysome.html","carboxysome"]],"b":[["PROSITE%3APS00704","Prokaryotic-type carbonic anhydrases signature 1"]]},{"id":"UniProt:P40727","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF01312","FlhB HrpN YscU SpaS Family"]]},{"id":"UniProt:P41784","l":"","na":1,"nb":1,"a":[["secretion_system/type_iii_protein_secretion_system_complex.html","type III protein secretion system complex"]],"b":[["proteintraitsmech%3ABIOLIP_DXC","DXC-binding site"]]},{"id":"UniProt:P41791","l":"","na":1,"nb":1,"a":[["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"]],"b":[["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"UniProt:P41792","l":"","na":1,"nb":1,"a":[["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"]],"b":[["Pfam%3APF03319","Ethanolamine utilisation protein EutN/carboxysome"]]},{"id":"UniProt:P54702","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF01311","Bacterial export proteins, family 1"]]},{"id":"UniProt:P70856","l":"","na":1,"nb":1,"a":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]],"b":[["Pfam%3APF04620","Flagellar filament outer layer protein Flaa"]]},{"id":"UniProt:P75471","l":"","na":1,"nb":1,"a":[["appendage/attachment_organelle.html","attachment organelle"]],"b":[["Pfam%3APF27734","Cytadherence high molecular weight protein 2"]]},{"id":"UniProt:P9WHT9","l":"","na":1,"nb":1,"a":[["other/proteasome_core_complex.html","proteasome core complex"]],"b":[["proteintraitsmech%3ABIOLIP_SA6","SA6-binding site"]]},{"id":"UniProt:Q06851","l":"","na":1,"nb":1,"a":[["other/cellulosome.html","cellulosome"]],"b":[["Pfam%3APF00963","Cohesin domain"]]},{"id":"UniProt:Q26789","l":"","na":1,"nb":1,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["Pfam%3APF05149","Paraflagellar rod protein"]]},{"id":"UniProt:Q46367","l":"","na":1,"nb":1,"a":[["membrane_organelle/chlorosome.html","chlorosome"]],"b":[["Pfam%3APF11098","Chlorosome envelope protein C"]]},{"id":"UniProt:Q46383","l":"","na":1,"nb":1,"a":[["membrane_organelle/chlorosome.html","chlorosome"]],"b":[["Pfam%3APF27499","CsmB chlorosome envelope protein"]]},{"id":"UniProt:Q46386","l":"","na":1,"nb":1,"a":[["membrane_organelle/chlorosome.html","chlorosome"]],"b":[["Pfam%3APF02043","Bacteriochlorophyll C binding protein"]]},{"id":"UniProt:Q9XDM8","l":"","na":1,"nb":1,"a":[["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]],"b":[["Pfam%3APF00936","BMC domain"]]}]} \ No newline at end of file +{"a":"CellStructureMech","b":"ProteinTraitsMech","base":{"CellStructureMech":"https://culturebotai.github.io/CellStructureMech/pages/structures/","ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record="},"n":1058,"by":{"GO":737,"UniProt":155,"NCBITaxon":77,"InterPro":64,"CHEBI":15,"Pfam":10},"terms":[{"id":"GO:0032991","l":"protein-containing complex","na":37,"nb":17037,"a":[["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/stalk_crossband.html","stalk crossband"],["cytoskeleton/eisosome_filament.html","eisosome filament"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["other/chaperonin_containing_t_complex.html","chaperonin-containing T-complex"],["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["ComplexPortal%3ACPX-5225","28S mitochondrial small ribosomal subunit"],["ComplexPortal%3ACPX-5301","28S mitochondrial small ribosomal subunit"],["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["ComplexPortal%3ACPX-10315","37S mitochondrial small ribosomal subunit"],["ComplexPortal%3ACPX-1603","37S mitochondrial small ribosomal subunit"],["ComplexPortal%3ACPX-5226","39S mitochondrial large ribosomal subunit"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":31,"nb":145,"a":[["appendage/curli.html","curli"],["appendage/p_pilus.html","P pilus"],["appendage/pilus.html","pilus"],["appendage/type_i_pilus.html","type I pilus"],["cytoskeleton/parm_filament.html","ParM filament"],["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]],"b":[["IDPO%3A0000033","flexible linker"],["IDPO%3A0000014","order to disorder"],["IDPO%3A0000004","pre-molten globule"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"]]},{"id":"NCBITaxon:3055","l":"Chlamydomonas reinhardtii","na":58,"nb":27,"a":[["appendage/ciliary_membrane.html","ciliary membrane"],["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"],["appendage/mastigoneme.html","mastigoneme"],["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_a_tubule_inner_sheath.html","axonemal A tubule inner sheath"]],"b":[["Pfam%3APF01333","Apocytochrome F, C-terminal"],["Pfam%3APF16639","Apocytochrome F, N-terminal"],["Pfam%3APF00430","ATP synthase B/B' CF(0)"],["Pfam%3APF00401","ATP synthase, Delta/Epsilon chain, long alpha-helix domain"],["Pfam%3APF21771","CFAP58 central coiled coil"],["Pfam%3APF27956","CFAP99 V-shaped coiled-coil domain"]]},{"id":"GO:0016020","l":"membrane","na":23,"nb":3003,"a":[["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["envelope/cell_outer_membrane.html","cell outer membrane"],["envelope/cellular_bud_membrane.html","cellular bud membrane"],["envelope/plasma_membrane.html","plasma membrane"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"]],"b":[["ComplexPortal%3ACPX-1813","1,3-beta-D-glucan synthase complex, FKS2-RHO1 variant"],["ComplexPortal%3ACPX-4313","Aliphatic sulfonate ABC transporter complex"],["ComplexPortal%3ACPX-4314","Arabinose ABC transporter complex"],["ComplexPortal%3ACPX-4318","Arginine ABC transporter complex, artI variant"],["ComplexPortal%3ACPX-4319","Arginine ABC transporter complex, artJ variant"],["ComplexPortal%3ACPX-6308","ATP10B-CDC50A P4-ATPase complex"]]},{"id":"GO:0043231","l":"intracellular membrane-bounded organelle","na":22,"nb":930,"a":[["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"],["membrane_organelle/exoneme.html","exoneme"],["membrane_organelle/ferrosome.html","ferrosome"],["membrane_organelle/golgi_apparatus.html","Golgi apparatus"]],"b":[["GO%3A0020022","acidocalcisome"],["GO%3A0044222","anammoxosome"],["GO%3A0033099","attachment organelle"],["GO%3A0005801","cis-Golgi network"],["GO%3A0005783","endoplasmic reticulum"],["GO%3A0005793","endoplasmic reticulum-Golgi intermediate compartment"]]},{"id":"NCBITaxon:99287","l":"Salmonella typhimurium (strain LT2 / SGSC1412 / ATCC 700720)","na":16,"nb":167,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"],["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"]],"b":[["Pfam%3APF16031","TonB polyproline region"],["Pfam%3APF13521","AAA domain"],["Pfam%3APF26341","tRNA 2-selenouridine synthase AAA domain"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"],["Pfam%3APF09317","Acyl-CoA dehydrogenase, C-terminal, bacterial type"],["Pfam%3APF06315","Isocitrate dehydrogenase kinase/phosphatase (AceK) kinase domain"]]},{"id":"GO:0005856","l":"cytoskeleton","na":16,"nb":148,"a":[["cytoskeleton/alfa_filament.html","AlfA filament"],["cytoskeleton/bactofilin_filament.html","bactofilin filament"],["cytoskeleton/bilobe_structure.html","bilobe structure"],["cytoskeleton/btubab_bacterial_microtubule.html","BtubAB bacterial microtubule"],["cytoskeleton/cetz_filament.html","CetZ filament"],["cytoskeleton/ciliary_basal_body.html","ciliary basal body"]],"b":[["GO%3A0015629","actin cytoskeleton"],["GO%3A0030863","cortical cytoskeleton"],["GO%3A0005856","cytoskeleton"],["GO%3A0045111","intermediate filament cytoskeleton"],["GO%3A0015630","microtubule cytoskeleton"],["GO%3A0033011","perinuclear theca"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":15,"nb":17470,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]],"b":[["EC%3A1.1.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.16.-.-","Oxidizing metal ions"],["EC%3A1.18.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.7.-","With an iron-sulfur protein as acceptor"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":14,"nb":15,"a":[["cytoskeleton/alfa_filament.html","AlfA filament"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]],"b":[["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["Pfam%3APF14562","Restriction endonuclease BglI"],["Pfam%3APF09195","Restriction endonuclease BglII/BglIII"],["Pfam%3APF09208","Restriction endonuclease MspI"]]},{"id":"GO:0005737","l":"cytoplasm","na":13,"nb":2018,"a":[["envelope/plasma_membrane.html","plasma membrane"],["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"],["membrane_organelle/mitosome.html","mitosome"]],"b":[["ComplexPortal%3ACPX-3921","2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["ComplexPortal%3ACPX-1599","40S cytosolic small ribosomal subunit"],["ComplexPortal%3ACPX-5223","40S cytosolic small ribosomal subunit"],["ComplexPortal%3ACPX-5261","40S cytosolic small ribosomal subunit"],["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"]]},{"id":"GO:0005789","l":"endoplasmic reticulum membrane","na":13,"nb":218,"a":[["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"],["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"],["membrane_organelle/endoplasmic_reticulum_lumen.html","endoplasmic reticulum lumen"],["membrane_organelle/endoplasmic_reticulum_membrane.html","endoplasmic reticulum membrane"],["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"],["other/copii_vesicle_coat.html","COPII vesicle coat"]],"b":[["ComplexPortal%3ACPX-8021","BOS complex, NOMO1 variant"],["ComplexPortal%3ACPX-8022","BOS complex, NOMO2 variant"],["ComplexPortal%3ACPX-8023","BOS complex, NOMO3 variant"],["ComplexPortal%3ACPX-2211","Commander complex"],["ComplexPortal%3ACPX-6701","Dehydrodolichyl diphosphate synthase complex"],["ComplexPortal%3ACPX-6268","Dolichol-phosphate mannosyltransferase complex"]]},{"id":"GO:0005743","l":"mitochondrial inner membrane","na":13,"nb":108,"a":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"],["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrial_intermembrane_space.html","mitochondrial intermembrane space"],["membrane_organelle/mitochondrial_matrix.html","mitochondrial matrix"]],"b":[["ComplexPortal%3ACPX-5225","28S mitochondrial small ribosomal subunit"],["ComplexPortal%3ACPX-5301","28S mitochondrial small ribosomal subunit"],["ComplexPortal%3ACPX-1603","37S mitochondrial small ribosomal subunit"],["ComplexPortal%3ACPX-5226","39S mitochondrial large ribosomal subunit"],["ComplexPortal%3ACPX-5302","39S mitochondrial large ribosomal subunit"],["ComplexPortal%3ACPX-1602","54S mitochondrial large ribosomal subunit"]]},{"id":"GO:0010008","l":"endosome membrane","na":13,"nb":60,"a":[["membrane_organelle/early_endosome_membrane.html","early endosome membrane"],["membrane_organelle/endosome.html","endosome"],["membrane_organelle/endosome_lumen.html","endosome lumen"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/late_endosome_membrane.html","late endosome membrane"]],"b":[["ComplexPortal%3ACPX-2211","Commander complex"],["ComplexPortal%3ACPX-5424","Endosomal SNARE complex PEP12-VTI1-SYN8-SNC1"],["ComplexPortal%3ACPX-5461","Endosomal SNARE complex PEP12-VTI1-SYN8-SNC2"],["ComplexPortal%3ACPX-5421","Endosomal SNARE complex PEP12-VTI1-SYN8-YKT6"],["ComplexPortal%3ACPX-5423","Endosomal SNARE complex PEP12-VTI1-TLG1-SNC1"],["ComplexPortal%3ACPX-5462","Endosomal SNARE complex PEP12-VTI1-TLG1-SNC2"]]},{"id":"GO:0009767","l":"photosynthetic electron transport chain","na":13,"nb":13,"a":[["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/photosystem_i.html","photosystem I"],["energy_complex/photosystem_ii.html","photosystem II"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]],"b":[["GO%3A0009767","photosynthetic electron transport chain"],["GO%3A0009773","photosynthetic electron transport in photosystem I"],["GO%3A0009772","photosynthetic electron transport in photosystem II"],["NCBIfam%3ATIGR01332","cytochrome b559 subunit alpha"],["NCBIfam%3ATIGR01333","cytochrome b559 subunit beta"],["NCBIfam%3ATIGR01156","cytochrome b6-f complex subunit IV"]]},{"id":"GO:0000139","l":"Golgi membrane","na":12,"nb":67,"a":[["membrane_organelle/cis_golgi_network_membrane.html","cis-Golgi network membrane"],["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/golgi_apparatus.html","Golgi apparatus"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"]],"b":[["ComplexPortal%3ACPX-7803","COPI vesicle coat complex, COPG1-COPZ1 variant"],["ComplexPortal%3ACPX-7970","COPI vesicle coat complex, COPG1-COPZ2 variant"],["ComplexPortal%3ACPX-7969","COPI vesicle coat complex, COPG2-COPZ1 variant"],["ComplexPortal%3ACPX-5424","Endosomal SNARE complex PEP12-VTI1-SYN8-SNC1"],["ComplexPortal%3ACPX-5461","Endosomal SNARE complex PEP12-VTI1-SYN8-SNC2"],["ComplexPortal%3ACPX-5421","Endosomal SNARE complex PEP12-VTI1-SYN8-YKT6"]]},{"id":"GO:0005768","l":"endosome","na":12,"nb":50,"a":[["membrane_organelle/early_endosome.html","early endosome"],["membrane_organelle/endosome.html","endosome"],["membrane_organelle/endosome_lumen.html","endosome lumen"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/recycling_endosome.html","recycling endosome"]],"b":[["ComplexPortal%3ACPX-1153","BLOC-1 complex"],["ComplexPortal%3ACPX-6241","CHEVI tethering complex"],["ComplexPortal%3ACPX-362","Heparanase complex"],["GO%3A0005769","early endosome"],["GO%3A0036019","endolysosome"],["GO%3A0005768","endosome"]]},{"id":"GO:0005930","l":"axoneme","na":12,"nb":26,"a":[["appendage/cilium.html","cilium"],["appendage/paraflagellar_rod.html","paraflagellar rod"],["cytoskeleton/axonemal_central_apparatus.html","axonemal central apparatus"],["cytoskeleton/axonemal_doublet_microtubule.html","axonemal doublet microtubule"],["cytoskeleton/axonemal_dynein_complex.html","axonemal dynein complex"],["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"]],"b":[["ComplexPortal%3ACPX-8086","Nexin-dynein regulatory complex"],["ComplexPortal%3ACPX-2626","Outer dynein arm-docking complex"],["ComplexPortal%3ACPX-8163","Radial spoke complex, ciliiar variant"],["GO%3A0005930","axoneme"],["Pfam%3APF24161","Coiled-coil domain-containing protein 39"],["PANTHER%3APTHR46625","72 KDA INOSITOL POLYPHOSPHATE 5-PHOSPHATASE"]]},{"id":"GO:0030659","l":"cytoplasmic vesicle membrane","na":12,"nb":24,"a":[["membrane_organelle/autophagosome_membrane.html","autophagosome membrane"],["membrane_organelle/clathrin_coated_vesicle_membrane.html","clathrin-coated vesicle membrane"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"],["membrane_organelle/cvt_vesicle_membrane.html","Cvt vesicle membrane"],["membrane_organelle/cytoplasmic_vesicle.html","cytoplasmic vesicle"],["membrane_organelle/cytoplasmic_vesicle_lumen.html","cytoplasmic vesicle lumen"]],"b":[["ComplexPortal%3ACPX-8427","ZNT1-ZNT3 proton-coupled zinc antiporter complex"],["ComplexPortal%3ACPX-8428","ZNT2-ZNT3 proton-coupled zinc antiporter complex"],["GO%3A0032578","aleurone grain membrane"],["GO%3A0030661","chitosome membrane"],["GO%3A0030662","coated vesicle membrane"],["GO%3A0031164","contractile vacuolar membrane"]]},{"id":"GO:0097525","l":"spliceosomal snRNP complex","na":12,"nb":18,"a":[["ribonucleoprotein/u11_snrnp.html","U11 snRNP"],["ribonucleoprotein/u11_u12_snrnp.html","U11/U12 snRNP"],["ribonucleoprotein/u12_snrnp.html","U12 snRNP"],["ribonucleoprotein/u1_snrnp.html","U1 snRNP"],["ribonucleoprotein/u2_snrnp.html","U2 snRNP"],["ribonucleoprotein/u4_snrnp.html","U4 snRNP"]],"b":[["GO%3A0071003","penta-snRNP complex"],["GO%3A0071024","SL snRNP"],["GO%3A0097525","spliceosomal snRNP complex"],["GO%3A0097526","spliceosomal tri-snRNP complex"],["GO%3A0005685","U1 snRNP"],["GO%3A0005692","U11 snRNP"]]},{"id":"GO:0042651","l":"thylakoid membrane","na":12,"nb":14,"a":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/phycobilisome.html","phycobilisome"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"]],"b":[["GO%3A0070118","organellar chromatophore thylakoid membrane"],["GO%3A0031676","plasma membrane-derived thylakoid membrane"],["GO%3A0055035","plastid thylakoid membrane"],["GO%3A0042651","thylakoid membrane"],["NCBIfam%3ANF013497","Apocytochrome F, C-terminal"],["NCBIfam%3ATIGR01156","cytochrome b6-f complex subunit IV"]]},{"id":"GO:0031410","l":"cytoplasmic vesicle","na":11,"nb":138,"a":[["membrane_organelle/chitosome.html","chitosome"],["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/cvt_vesicle.html","Cvt vesicle"],["membrane_organelle/cytoplasmic_vesicle.html","cytoplasmic vesicle"],["membrane_organelle/cytoplasmic_vesicle_lumen.html","cytoplasmic vesicle lumen"],["membrane_organelle/cytoplasmic_vesicle_membrane.html","cytoplasmic vesicle membrane"]],"b":[["GO%3A0033095","aleurone grain"],["GO%3A1990006","amorphous vesicle"],["GO%3A0043702","carotenoid vesicle"],["GO%3A0045009","chitosome"],["GO%3A0062247","chloroplast vesicle"],["GO%3A0097721","ciliary vesicle"]]},{"id":"GO:0043233","l":"organelle lumen","na":11,"nb":36,"a":[["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/endoplasmic_reticulum_lumen.html","endoplasmic reticulum lumen"],["membrane_organelle/esterosome_lumen.html","esterosome lumen"],["membrane_organelle/glycosome_lumen.html","glycosome lumen"],["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/hydrogenosome_lumen.html","hydrogenosome lumen"]],"b":[["GO%3A0070013","intracellular organelle lumen"],["GO%3A0043233","organelle lumen"],["GO%3A0034591","rhoptry lumen"],["GO%3A0120203","rod photoreceptor disc lumen"],["GO%3A0031983","vesicle lumen"],["PANTHER%3APTHR13457","BAP28"]]},{"id":"GO:0005886","l":"plasma membrane","na":10,"nb":861,"a":[["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["appendage/prostheca.html","prostheca"],["envelope/cellular_bud_membrane.html","cellular bud membrane"],["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"],["envelope/plasma_membrane.html","plasma membrane"]],"b":[["ComplexPortal%3ACPX-2838","3M complex"],["ComplexPortal%3ACPX-850","AHNAK - Annexin A2 - S100-A10 complex"],["ComplexPortal%3ACPX-6581","Alpha-beta T cell receptor complex, TRBC1 variant"],["ComplexPortal%3ACPX-6482","Alpha-beta T cell receptor complex, TRBC2 variant"],["ComplexPortal%3ACPX-2188","Amiloride-sensitive sodium channel complex, alpha-beta-gamma"],["ComplexPortal%3ACPX-3582","AMT1-1 - AMT1-3 heterotrimer, variant 1"]]},{"id":"GO:0005794","l":"Golgi apparatus","na":10,"nb":93,"a":[["membrane_organelle/cis_golgi_network.html","cis-Golgi network"],["membrane_organelle/cis_golgi_network_membrane.html","cis-Golgi network membrane"],["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"],["membrane_organelle/golgi_apparatus.html","Golgi apparatus"],["membrane_organelle/golgi_cisterna.html","Golgi cisterna"],["membrane_organelle/golgi_cisterna_membrane.html","Golgi cisterna membrane"]],"b":[["ComplexPortal%3ACPX-26603","ATP9A-DOP1B-MON2, golgi transporter complex"],["ComplexPortal%3ACPX-26602","DOP1A-MON2, golgi-endosome traffic complex"],["ComplexPortal%3ACPX-8422","HAS1-HAS2 hyaluronan biosynthesis complex"],["ComplexPortal%3ACPX-8410","HAS1-HAS3 hyaluronan biosynthesis complex"],["ComplexPortal%3ACPX-8481","HAS1 hyaluronan biosynthesis complex"],["ComplexPortal%3ACPX-8424","HAS2-HAS3 hyaluronan biosynthesis complex"]]},{"id":"GO:0000776","l":"kinetochore","na":10,"nb":59,"a":[["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"],["other/cbf3_complex.html","CBF3 complex"],["other/coma_complex.html","COMA complex"],["other/dash_complex.html","DASH complex"],["other/kinetochore.html","kinetochore"]],"b":[["ComplexPortal%3ACPX-1898","CBF3 complex"],["ComplexPortal%3ACPX-1156","Central kinetochore CTF19 complex"],["ComplexPortal%3ACPX-10081","DASH complex"],["ComplexPortal%3ACPX-5644","Kinetochore KNL1 complex"],["ComplexPortal%3ACPX-5702","Kinetochore KNL1 complex"],["ComplexPortal%3ACPX-1186","Kinetochore MIS12 complex"]]},{"id":"GO:0005874","l":"microtubule","na":10,"nb":50,"a":[["cytoskeleton/ciliary_basal_body.html","ciliary basal body"],["cytoskeleton/funis.html","funis"],["cytoskeleton/intraconoid_microtubule.html","intraconoid microtubule"],["cytoskeleton/median_body.html","median body"],["cytoskeleton/microtubule.html","microtubule"],["cytoskeleton/mitotic_spindle.html","mitotic spindle"]],"b":[["ComplexPortal%3ACPX-806","Ndc80 complex"],["ComplexPortal%3ACPX-4143","Pyrin inflammasome"],["ComplexPortal%3ACPX-4244","Pyrin inflammasome"],["ComplexPortal%3ACPX-811","Ska1 complex"],["ComplexPortal%3ACPX-2572","Tubulin polyglutamylase complex"],["GO%3A0005881","cytoplasmic microtubule"]]},{"id":"GO:0009536","l":"plastid","na":10,"nb":33,"a":[["membrane_organelle/apicoplast.html","apicoplast"],["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/nucleomorph.html","nucleomorph"],["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/plastid.html","plastid"]],"b":[["GO%3A0009501","amyloplast"],["GO%3A0020011","apicoplast"],["GO%3A0009507","chloroplast"],["GO%3A0009509","chromoplast"],["GO%3A0009842","cyanelle"],["GO%3A0009513","etioplast"]]},{"id":"GO:0072583","l":"clathrin-dependent endocytosis","na":10,"nb":18,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle.html","clathrin-coated endocytic vesicle"],["membrane_organelle/clathrin_coated_endocytic_vesicle_membrane.html","clathrin-coated endocytic vesicle membrane"],["membrane_organelle/clathrin_coated_vesicle.html","clathrin-coated vesicle"],["other/ap_2_adaptor_complex.html","AP-2 adaptor complex"],["other/clathrin_coat.html","clathrin coat"],["other/clathrin_coat_of_coated_pit.html","clathrin coat of coated pit"]],"b":[["ComplexPortal%3ACPX-5149","AP-2 Adaptor complex, alpha1 variant"],["ComplexPortal%3ACPX-5152","AP-2 Adaptor complex, alpha1 variant"],["ComplexPortal%3ACPX-5150","AP-2 Adaptor complex, alpha2 variant"],["ComplexPortal%3ACPX-5153","AP-2 Adaptor complex, alpha2 variant"],["ComplexPortal%3ACPX-26725","Clathrin, endocytosis-mediating complex, CLTA-CLTB mixed lattice variant"],["ComplexPortal%3ACPX-26726","Clathrin, endocytosis-mediating complex, CLTA-CLTB mixed lattice variant"]]},{"id":"GO:0005682","l":"U5 snRNP","na":10,"nb":13,"a":[["ribonucleoprotein/u12_type_catalytic_step_1_spliceosome.html","U12-type catalytic step 1 spliceosome"],["ribonucleoprotein/u12_type_catalytic_step_2_spliceosome.html","U12-type catalytic step 2 spliceosome"],["ribonucleoprotein/u12_type_post_mrna_release_spliceosomal_complex.html","U12-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u12_type_post_spliceosomal_complex.html","U12-type post-spliceosomal complex"],["ribonucleoprotein/u2_type_catalytic_step_1_spliceosome.html","U2-type catalytic step 1 spliceosome"],["ribonucleoprotein/u2_type_catalytic_step_2_spliceosome.html","U2-type catalytic step 2 spliceosome"]],"b":[["ComplexPortal%3ACPX-43","Sm complex"],["ComplexPortal%3ACPX-6033","Sm complex"],["ComplexPortal%3ACPX-26421","U5 small nuclear ribonucleoprotein complete complex"],["ComplexPortal%3ACPX-26552","U5 small nuclear ribonucleoprotein complex, AAR2 variant"],["ComplexPortal%3ACPX-30","U5 small nuclear ribonucleoprotein complex, AAR2 variant"],["ComplexPortal%3ACPX-29","U5 small nuclear ribonucleoprotein complex"]]},{"id":"NCBITaxon:44689","l":"Dictyostelium discoideum","na":9,"nb":151,"a":[["membrane_organelle/contractile_vacuole.html","contractile vacuole"],["membrane_organelle/contractile_vacuole_complex.html","contractile vacuole complex"],["membrane_organelle/esterosome.html","esterosome"],["membrane_organelle/esterosome_lumen.html","esterosome lumen"],["membrane_organelle/esterosome_membrane.html","esterosome membrane"],["membrane_organelle/phagocytic_vesicle.html","phagocytic vesicle"]],"b":[["IDPO%3A0000002","disorder"],["IDPO%3A0000030","entropic chain"],["IDPO%3A0000006","order"],["IDPO%3A0000058","self-activation"],["Pfam%3APF23297","Highly reducing polyketide synthase sdgA, C-terminal ACP domain"],["Pfam%3APF09192","Actin-fragmin kinase, catalytic"]]},{"id":"GO:0005643","l":"nuclear pore","na":9,"nb":41,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nucleus.html","nucleus"],["other/nuclear_pore.html","nuclear pore"],["other/nuclear_pore_central_transport_channel.html","nuclear pore central transport channel"],["other/nuclear_pore_cytoplasmic_filaments.html","nuclear pore cytoplasmic filaments"],["other/nuclear_pore_inner_ring.html","nuclear pore inner ring"]],"b":[["ComplexPortal%3ACPX-4747","E3 ligase (RANBP2) complex"],["ComplexPortal%3ACPX-4921","E3 ligase (RANBP2) complex"],["ComplexPortal%3ACPX-2568","Nuclear pore complex"],["ComplexPortal%3ACPX-4474","Nuclear pore complex"],["ComplexPortal%3ACPX-824","Nuclear pore complex"],["ComplexPortal%3ACPX-873","Nuclear pore complex"]]},{"id":"GO:0019684","l":"photosynthesis, light reaction","na":9,"nb":39,"a":[["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"]],"b":[["GO%3A0019684","photosynthesis, light reaction"],["NCBIfam%3ANF058510","bifunctional rod-capping linker CpcD/ferredoxin--NADP reductase PetH"],["NCBIfam%3ATIGR01332","cytochrome b559 subunit alpha"],["NCBIfam%3ATIGR01333","cytochrome b559 subunit beta"],["NCBIfam%3ANF043009","cytochrome c-554 Puf2C"],["NCBIfam%3ANF040862","light-harvesting antenna LH1, beta subunit"]]},{"id":"GO:0060205","l":"cytoplasmic vesicle lumen","na":9,"nb":18,"a":[["membrane_organelle/autophagosome_lumen.html","autophagosome lumen"],["membrane_organelle/clathrin_coated_vesicle_lumen.html","clathrin-coated vesicle lumen"],["membrane_organelle/copi_coated_vesicle_lumen.html","COPI-coated vesicle lumen"],["membrane_organelle/copii_coated_vesicle_lumen.html","COPII-coated vesicle lumen"],["membrane_organelle/cvt_vesicle_lumen.html","Cvt vesicle lumen"],["membrane_organelle/cytoplasmic_vesicle.html","cytoplasmic vesicle"]],"b":[["GO%3A0034422","aleurone grain lumen"],["GO%3A0060202","clathrin-sculpted acetylcholine transport vesicle lumen"],["GO%3A0061201","clathrin-sculpted gamma-aminobutyric acid transport vesicle lumen"],["GO%3A0060204","clathrin-sculpted glutamate transport vesicle lumen"],["GO%3A0070082","clathrin-sculpted monoamine transport vesicle lumen"],["GO%3A0106172","COPI-coated vesicle lumen"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":15,"nb":9,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]],"b":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF25954","CusB-like, beta-barrel domain"],["Pfam%3APF13438","Domain of unknown function (DUF4113)"],["Pfam%3APF03767","HAD superfamily, subfamily IIIB (Acid phosphatase)"],["Pfam%3APF03496","ADP-ribosyltransferase exoenzyme"]]},{"id":"GO:0009941","l":"chloroplast envelope","na":9,"nb":12,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_inner_membrane.html","chloroplast inner membrane"],["membrane_organelle/chloroplast_intermembrane_space.html","chloroplast intermembrane space"],["membrane_organelle/chloroplast_membrane.html","chloroplast membrane"],["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"]],"b":[["GO%3A0009941","chloroplast envelope"],["PANTHER%3APTHR47283","ENT-KAURENE OXIDASE, CHLOROPLASTIC"],["PANTHER%3APTHR36737","EXPRESSED PROTEIN"],["PANTHER%3APTHR31038","EXPRESSED PROTEIN-RELATED"],["PANTHER%3APTHR34048","LOW-DENSITY RECEPTOR-LIKE PROTEIN"],["PANTHER%3APTHR34809","MALTOSE EXCESS PROTEIN 1, CHLOROPLASTIC-RELATED"]]},{"id":"GO:0030119","l":"AP-type membrane coat adaptor complex","na":9,"nb":12,"a":[["other/ap_3_adaptor_complex.html","AP-3 adaptor complex"],["other/ap_4_adaptor_complex.html","AP-4 adaptor complex"],["other/ap_5_adaptor_complex.html","AP-5 adaptor complex"],["other/ap_type_membrane_coat_adaptor_complex.html","AP-type membrane coat adaptor complex"],["other/clathrin_coat.html","clathrin coat"],["other/clathrin_coat_of_endocytic_vesicle.html","clathrin coat of endocytic vesicle"]],"b":[["GO%3A0030123","AP-3 adaptor complex"],["GO%3A0030124","AP-4 adaptor complex"],["GO%3A0044599","AP-5 adaptor complex"],["GO%3A0030119","AP-type membrane coat adaptor complex"],["GO%3A0030131","clathrin adaptor complex"],["PANTHER%3APTHR22780","ADAPTIN, ALPHA/GAMMA/EPSILON"]]},{"id":"GO:0009425","l":"bacterial-type flagellum basal body","na":10,"nb":9,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"],["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"]],"b":[["GO%3A0009425","bacterial-type flagellum basal body"],["NCBIfam%3ANF005435","flagellar basal body-associated protein FliL"],["NCBIfam%3ANF005995","flagellar motor switch phosphatase FliY"],["NCBIfam%3ANF005194","flagellar motor switch protein FliM"],["NCBIfam%3ANF006273","flagellar motor switch protein FliN"],["NCBIfam%3ANF006272","flagellar motor switch protein FliY"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":8,"nb":49554,"a":[["other/ap_5_adaptor_complex.html","AP-5 adaptor complex"],["ribonucleoprotein/u11_snrnp.html","U11 snRNP"],["ribonucleoprotein/u11_u12_snrnp.html","U11/U12 snRNP"],["ribonucleoprotein/u12_snrnp.html","U12 snRNP"],["ribonucleoprotein/u4atac_snrnp.html","U4atac snRNP"],["ribonucleoprotein/u4atac_u6atac_snrnp.html","U4atac/U6atac snRNP"]],"b":[["EC%3A1.1.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.1.98.-","With other, known, acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"]]},{"id":"GO:0031090","l":"organelle membrane","na":8,"nb":270,"a":[["membrane_organelle/apicomplexan_dense_granule_membrane.html","apicomplexan dense granule membrane"],["membrane_organelle/microneme_membrane.html","microneme membrane"],["membrane_organelle/mitosome_inner_membrane.html","mitosome inner membrane"],["membrane_organelle/mitosome_outer_membrane.html","mitosome outer membrane"],["membrane_organelle/nuclear_inner_membrane.html","nuclear inner membrane"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"]],"b":[["GO%3A0098588","bounding membrane of organelle"],["GO%3A0005789","endoplasmic reticulum membrane"],["GO%3A0032580","Golgi cisterna membrane"],["GO%3A0110146","magnetosome membrane"],["GO%3A0031966","mitochondrial membrane"],["GO%3A0031965","nuclear membrane"]]},{"id":"GO:0005783","l":"endoplasmic reticulum","na":8,"nb":226,"a":[["membrane_organelle/cis_golgi_network.html","cis-Golgi network"],["membrane_organelle/cis_golgi_network_membrane.html","cis-Golgi network membrane"],["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"],["membrane_organelle/endoplasmic_reticulum_lumen.html","endoplasmic reticulum lumen"],["membrane_organelle/endoplasmic_reticulum_membrane.html","endoplasmic reticulum membrane"]],"b":[["ComplexPortal%3ACPX-2360","COPII vesicle coat complex"],["ComplexPortal%3ACPX-2400","COPII vesicle coat complex"],["ComplexPortal%3ACPX-2523","COPII vesicle coat complex"],["ComplexPortal%3ACPX-26602","DOP1A-MON2, golgi-endosome traffic complex"],["ComplexPortal%3ACPX-8736","ERAP1-ERAP2 endoplasmic reticulum aminopeptidase complex"],["ComplexPortal%3ACPX-4236","Gamma-secretase complex, Aph1a-Psen2 variant"]]},{"id":"GO:0009279","l":"cell outer membrane","na":8,"nb":67,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/prostheca.html","prostheca"],["envelope/cell_outer_membrane.html","cell outer membrane"],["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["envelope/mycolate_outer_membrane.html","mycolate outer membrane"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"]],"b":[["ComplexPortal%3ACPX-1083","Cobalamin outer membrane transporter complex"],["ComplexPortal%3ACPX-4743","Curli secretion complex"],["ComplexPortal%3ACPX-1093","LptDE outer membrane translocon complex"],["ComplexPortal%3ACPX-5890","Translocation and assembly module complex"],["GO%3A0009279","cell outer membrane"],["GO%3A0036407","mycolate outer membrane"]]},{"id":"GO:0005741","l":"mitochondrial outer membrane","na":8,"nb":38,"a":[["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_intermembrane_space.html","mitochondrial intermembrane space"],["membrane_organelle/mitochondrial_membrane.html","mitochondrial membrane"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"],["other/ermes_complex.html","ERMES complex"]],"b":[["ComplexPortal%3ACPX-1989","BAK1 oligomer"],["ComplexPortal%3ACPX-2033","BAK1 oligomer"],["ComplexPortal%3ACPX-2034","BAK1 oligomer"],["ComplexPortal%3ACPX-6133","SAM mitochondrial sorting and assembly machinery complex"],["ComplexPortal%3ACPX-6101","SARS-CoV 9b complex"],["ComplexPortal%3ACPX-6121","TOM40 mitochondrial outer membrane translocase complex"]]},{"id":"GO:0009288","l":"bacterial-type flagellum","na":8,"nb":31,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009288","bacterial-type flagellum"]]},{"id":"GO:0005774","l":"vacuolar membrane","na":8,"nb":23,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v0_domain.html","vacuolar proton-transporting V-type ATPase, V0 domain"],["membrane_organelle/contractile_vacuolar_membrane.html","contractile vacuolar membrane"],["membrane_organelle/fungal_type_vacuole_membrane.html","fungal-type vacuole membrane"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"],["membrane_organelle/vacuolar_lumen.html","vacuolar lumen"]],"b":[["ComplexPortal%3ACPX-26523","GATOR1 complex"],["ComplexPortal%3ACPX-3231","SEA complex"],["ComplexPortal%3ACPX-5401","Vacuolar SNARE complex VAM3-VTI1-VAM7-NYV1"],["ComplexPortal%3ACPX-1887","Vacuolar SNARE complex VAM3-VTI1-VAM7-YKT6"],["GO%3A0000421","autophagosome membrane"],["GO%3A0031164","contractile vacuolar membrane"]]},{"id":"GO:0030126","l":"COPI vesicle coat","na":8,"nb":19,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"],["membrane_organelle/golgi_membrane.html","Golgi membrane"]],"b":[["ComplexPortal%3ACPX-7803","COPI vesicle coat complex, COPG1-COPZ1 variant"],["ComplexPortal%3ACPX-7970","COPI vesicle coat complex, COPG1-COPZ2 variant"],["ComplexPortal%3ACPX-7969","COPI vesicle coat complex, COPG2-COPZ1 variant"],["ComplexPortal%3ACPX-1652","COPI vesicle coat complex"],["ComplexPortal%3ACPX-2820","COPI vesicle coat complex"],["GO%3A0030126","COPI vesicle coat"]]},{"id":"GO:0098803","l":"respiratory chain complex","na":8,"nb":14,"a":[["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"],["energy_complex/cytochrome_o_ubiquinol_oxidase_complex.html","cytochrome o ubiquinol oxidase complex"],["energy_complex/fumarate_reductase_complex.html","fumarate reductase complex"],["energy_complex/respiratory_chain_complex_i.html","respiratory chain complex I"],["energy_complex/respiratory_chain_complex_ii_succinate_dehydrogenase.html","respiratory chain complex II (succinate dehydrogenase)"],["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"]],"b":[["GO%3A0009319","cytochrome o ubiquinol oxidase complex"],["GO%3A0045283","fumarate reductase complex"],["GO%3A0044799","NarGHI complex"],["GO%3A0045259","proton-transporting ATP synthase complex"],["GO%3A0098803","respiratory chain complex"],["GO%3A0045271","respiratory chain complex I"]]},{"id":"GO:0030125","l":"clathrin vesicle coat","na":8,"nb":9,"a":[["membrane_organelle/clathrin_coated_vesicle.html","clathrin-coated vesicle"],["membrane_organelle/clathrin_coated_vesicle_membrane.html","clathrin-coated vesicle membrane"],["membrane_organelle/coated_vesicle.html","coated vesicle"],["other/clathrin_coat.html","clathrin coat"],["other/clathrin_coat_of_endocytic_vesicle.html","clathrin coat of endocytic vesicle"],["other/clathrin_coat_of_trans_golgi_network_vesicle.html","clathrin coat of trans-Golgi network vesicle"]],"b":[["ComplexPortal%3ACPX-2792","Clathrin complex"],["GO%3A0030128","clathrin coat of endocytic vesicle"],["GO%3A0030129","clathrin coat of synaptic vesicle"],["GO%3A0030130","clathrin coat of trans-Golgi network vesicle"],["GO%3A0030125","clathrin vesicle coat"],["PANTHER%3APTHR16156","AFTIPHILIN A-RELATED"]]},{"id":"GO:0000329","l":"fungal-type vacuole membrane","na":8,"nb":8,"a":[["membrane_organelle/fungal_type_vacuole.html","fungal-type vacuole"],["membrane_organelle/fungal_type_vacuole_lumen.html","fungal-type vacuole lumen"],["membrane_organelle/fungal_type_vacuole_membrane.html","fungal-type vacuole membrane"],["membrane_organelle/vacuole.html","vacuole"],["other/gator1_complex.html","GATOR1 complex"],["other/gtr1_gtr2_gtpase_complex.html","Gtr1-Gtr2 GTPase complex"]],"b":[["ComplexPortal%3ACPX-3172","EGO complex"],["ComplexPortal%3ACPX-869","FET5-FTH1 high affinity iron exporter complex"],["ComplexPortal%3ACPX-1304","MYO2-VAC17-VAC8 transport complex"],["ComplexPortal%3ACPX-1193","Vacuolar proton translocating ATPase complex, vacuole variant"],["ComplexPortal%3ACPX-5521","Vacuolar SNARE complex SSO1-SEC9-NYV1"],["GO%3A0000329","fungal-type vacuole membrane"]]},{"id":"GO:0098796","l":"membrane protein complex","na":7,"nb":234,"a":[["other/ap_type_membrane_coat_adaptor_complex.html","AP-type membrane coat adaptor complex"],["other/emc_complex.html","EMC complex"],["other/hops_complex.html","HOPS complex"],["other/membrane_coat.html","membrane coat"],["other/retromer_cargo_selective_complex.html","retromer, cargo-selective complex"],["other/retromer_complex.html","retromer complex"]],"b":[["GO%3A0002180","5-lipoxygenase complex"],["GO%3A0170014","ankyrin-1 complex"],["GO%3A0030119","AP-type membrane coat adaptor complex"],["GO%3A0097658","Asi complex"],["GO%3A0062079","ATG2-ATG18 complex"],["GO%3A1990063","Bam protein complex"]]},{"id":"GO:0000813","l":"ESCRT I complex","na":7,"nb":27,"a":[["membrane_organelle/endosome.html","endosome"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/multivesicular_body.html","multivesicular body"],["other/escrt_0_complex.html","ESCRT-0 complex"],["other/escrt_complex.html","ESCRT complex"]],"b":[["ComplexPortal%3ACPX-940","ESCRT-I complex"],["ComplexPortal%3ACPX-7162","ESCRT-I complex, VPS37A-MVB12A variant"],["ComplexPortal%3ACPX-7146","ESCRT-I complex, VPS37A-MVB12B variant"],["ComplexPortal%3ACPX-7181","ESCRT-I complex, VPS37A-UBAP1 variant"],["ComplexPortal%3ACPX-2460","ESCRT-I complex, Vps37A variant"],["ComplexPortal%3ACPX-2505","ESCRT-I complex, VPS37B-MVB12A variant"]]},{"id":"GO:0030120","l":"vesicle coat","na":7,"nb":18,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"],["other/clathrin_vesicle_coat.html","clathrin vesicle coat"],["other/copi_vesicle_coat.html","COPI vesicle coat"],["other/copii_vesicle_coat.html","COPII vesicle coat"],["other/membrane_coat.html","membrane coat"]],"b":[["GO%3A0030125","clathrin vesicle coat"],["GO%3A0030126","COPI vesicle coat"],["GO%3A0030127","COPII vesicle coat"],["GO%3A0030120","vesicle coat"],["PANTHER%3APTHR16156","AFTIPHILIN A-RELATED"],["PANTHER%3APTHR15463","AP1 GAMMA SUBUNIT BINDING PROTEIN 1"]]},{"id":"GO:0009526","l":"plastid envelope","na":7,"nb":11,"a":[["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/plastid_envelope.html","plastid envelope"],["membrane_organelle/plastid_inner_membrane.html","plastid inner membrane"],["membrane_organelle/plastid_intermembrane_space.html","plastid intermembrane space"],["membrane_organelle/plastid_membrane.html","plastid membrane"]],"b":[["GO%3A0033096","amyloplast envelope"],["GO%3A0009941","chloroplast envelope"],["GO%3A0031898","chromoplast envelope"],["GO%3A0033112","cyanelle envelope"],["GO%3A0034425","etioplast envelope"],["GO%3A0009526","plastid envelope"]]},{"id":"GO:0009579","l":"thylakoid","na":7,"nb":11,"a":[["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_lumen.html","plasma membrane-derived thylakoid lumen"],["membrane_organelle/plastid_thylakoid.html","plastid thylakoid"]],"b":[["GO%3A0030075","bacterial thylakoid"],["GO%3A0070116","organellar chromatophore thylakoid"],["GO%3A0031976","plastid thylakoid"],["GO%3A0009579","thylakoid"],["NCBIfam%3ANF014449","photosystem I assembly protein Ycf4"],["NCBIfam%3ATIGR01336","photosystem I core protein PsaB"]]},{"id":"GO:0030136","l":"clathrin-coated vesicle","na":7,"nb":10,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle.html","clathrin-coated endocytic vesicle"],["membrane_organelle/clathrin_coated_endocytic_vesicle_lumen.html","clathrin-coated endocytic vesicle lumen"],["membrane_organelle/clathrin_coated_vesicle.html","clathrin-coated vesicle"],["membrane_organelle/clathrin_coated_vesicle_lumen.html","clathrin-coated vesicle lumen"],["membrane_organelle/clathrin_coated_vesicle_membrane.html","clathrin-coated vesicle membrane"],["membrane_organelle/coated_vesicle.html","coated vesicle"]],"b":[["GO%3A0045334","clathrin-coated endocytic vesicle"],["GO%3A0030136","clathrin-coated vesicle"],["GO%3A0060198","clathrin-sculpted vesicle"],["GO%3A0030140","trans-Golgi network transport vesicle"],["GO%3A0033093","Weibel-Palade body"],["PANTHER%3APTHR10639","CLATHRIN LIGHT CHAIN"]]},{"id":"GO:0009532","l":"plastid stroma","na":7,"nb":9,"a":[["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"],["membrane_organelle/plastid.html","plastid"],["membrane_organelle/plastid_envelope.html","plastid envelope"],["membrane_organelle/plastid_inner_membrane.html","plastid inner membrane"],["membrane_organelle/plastid_stroma.html","plastid stroma"]],"b":[["GO%3A0009570","chloroplast stroma"],["GO%3A0009575","chromoplast stroma"],["GO%3A0034060","cyanelle stroma"],["GO%3A0009577","elaioplast stroma"],["GO%3A0009578","etioplast stroma"],["GO%3A1905506","gerontoplast stroma"]]},{"id":"GO:0009535","l":"chloroplast thylakoid membrane","na":7,"nb":9,"a":[["inclusion/plastoglobule.html","plastoglobule"],["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_membrane.html","chloroplast membrane"],["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"],["membrane_organelle/chloroplast_thylakoid_lumen.html","chloroplast thylakoid lumen"],["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"]],"b":[["GO%3A0009535","chloroplast thylakoid membrane"],["PANTHER%3APTHR34048","LOW-DENSITY RECEPTOR-LIKE PROTEIN"],["PANTHER%3APTHR35733","OS02G0307800 PROTEIN"],["PANTHER%3APTHR36814","PHOTOSYSTEM I REACTION CENTER SUBUNIT N, CHLOROPLASTIC"],["PANTHER%3APTHR34787","PHOTOSYSTEM I REACTION CENTER SUBUNIT VI-2, CHLOROPLASTIC"],["PANTHER%3APTHR33149","PHOTOSYSTEM II PROTEIN D1"]]},{"id":"GO:0030137","l":"COPI-coated vesicle","na":7,"nb":9,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/copi_coated_vesicle_lumen.html","COPI-coated vesicle lumen"],["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"]],"b":[["GO%3A0030142","COPI-coated Golgi to ER transport vesicle"],["GO%3A0030143","COPI-coated inter-Golgi transport vesicle"],["GO%3A0030137","COPI-coated vesicle"],["PANTHER%3APTHR19876","COATOMER"],["PANTHER%3APTHR10635","COATOMER SUBUNIT BETA"],["PANTHER%3APTHR10121","COATOMER SUBUNIT DELTA"]]},{"id":"GO:0009274","l":"peptidoglycan-based cell wall","na":7,"nb":8,"a":[["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"],["appendage/prostheca.html","prostheca"],["division_machinery/elongasome.html","elongasome"],["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]],"b":[["GO%3A0009276","Gram-negative-bacterium-type cell wall"],["GO%3A0009275","Gram-positive-bacterium-type cell wall"],["GO%3A0009274","peptidoglycan-based cell wall"],["NCBIfam%3ANF007061","bifunctional glycosyl transferase/transpeptidase"],["NCBIfam%3ATIGR03656","heme uptake protein IsdC"],["NCBIfam%3ATIGR02070","monofunctional biosynthetic peptidoglycan transglycosylase"]]},{"id":"NCBITaxon:565050","l":"Caulobacter vibrioides NA1000","na":7,"nb":8,"a":[["appendage/prostheca.html","prostheca"],["appendage/stalk_crossband.html","stalk crossband"],["appendage/tad_pilus.html","Tad pilus"],["cytoskeleton/bactofilin_filament.html","bactofilin filament"],["cytoskeleton/cytoophidium.html","cytoophidium"],["other/holdfast.html","holdfast"]],"b":[["Pfam%3APF02767","DNA polymerase III beta subunit, central domain"],["Pfam%3APF02768","DNA polymerase III beta subunit, C-terminal domain"],["Pfam%3APF00712","DNA polymerase III beta subunit, N-terminal domain"],["Pfam%3APF21249","GyrB, hook"],["Pfam%3APF07378","Flagellar protein FlbT"],["Pfam%3APF03748","Flagellar basal body-associated protein FliL"]]},{"id":"GO:0030665","l":"clathrin-coated vesicle membrane","na":7,"nb":7,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle_membrane.html","clathrin-coated endocytic vesicle membrane"],["membrane_organelle/clathrin_coated_vesicle.html","clathrin-coated vesicle"],["membrane_organelle/clathrin_coated_vesicle_lumen.html","clathrin-coated vesicle lumen"],["membrane_organelle/clathrin_coated_vesicle_membrane.html","clathrin-coated vesicle membrane"],["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"]],"b":[["GO%3A0030669","clathrin-coated endocytic vesicle membrane"],["GO%3A0030665","clathrin-coated vesicle membrane"],["GO%3A0060201","clathrin-sculpted acetylcholine transport vesicle membrane"],["GO%3A0061202","clathrin-sculpted gamma-aminobutyric acid transport vesicle membrane"],["GO%3A0060203","clathrin-sculpted glutamate transport vesicle membrane"],["GO%3A0070083","clathrin-sculpted monoamine transport vesicle membrane"]]},{"id":"GO:0098800","l":"inner mitochondrial membrane protein complex","na":6,"nb":88,"a":[["other/micos_complex.html","MICOS complex"],["other/mitochondrial_inner_membrane_peptidase_complex.html","mitochondrial inner membrane peptidase complex"],["other/mitochondrial_prohibitin_complex.html","mitochondrial prohibitin complex"],["other/pam_complex_tim23_associated_import_motor.html","PAM complex, Tim23 associated import motor"],["other/tim22_mitochondrial_import_inner_membrane_insertion_complex.html","TIM22 mitochondrial import inner membrane insertion complex"],["other/tim23_mitochondrial_import_inner_membrane_translocase_complex.html","TIM23 mitochondrial import inner membrane translocase complex"]],"b":[["ComplexPortal%3ACPX-6154","Mitochondrial pyruvate carrier complex"],["ComplexPortal%3ACPX-8068","Mitochondrial pyruvate carrier complex"],["ComplexPortal%3ACPX-8062","Mitochondrial pyruvate carrier complex, testis variant"],["ComplexPortal%3ACPX-302","Mitochondrial pyruvate carrier, fermentative isoform"],["ComplexPortal%3ACPX-303","Mitochondrial pyruvate carrier, respiratory isoform"],["GO%3A0032478","heterotetrameric polyprenyl diphosphate synthase complex"]]},{"id":"GO:0005740","l":"mitochondrial envelope","na":6,"nb":54,"a":[["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrial_intermembrane_space.html","mitochondrial intermembrane space"],["membrane_organelle/mitochondrial_membrane.html","mitochondrial membrane"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"]],"b":[["GO%3A0005740","mitochondrial envelope"],["Pfam%3APF01215","Cytochrome c oxidase subunit Vb"],["PANTHER%3APTHR15487","ADP-RIBOSYLATION FACTOR-LIKE PROTEIN 2-BINDING PROTEIN"],["PANTHER%3APTHR36959","ALTERED INHERITANCE OF MITOCHONDRIA PROTEIN 24, MITOCHONDRIAL"],["PANTHER%3APTHR28202","ASSEMBLY FACTOR CBP4"],["PANTHER%3APTHR37278","AUTOPHAGY-RELATED PROTEIN 33-RELATED"]]},{"id":"GO:0009507","l":"chloroplast","na":6,"nb":32,"a":[["inclusion/plastoglobule.html","plastoglobule"],["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"],["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"],["other/pyrenoid.html","pyrenoid"]],"b":[["ComplexPortal%3ACPX-1337","WHY1 complex"],["ComplexPortal%3ACPX-3586","WHY3 complex"],["GO%3A0009507","chloroplast"],["NCBIfam%3ANF018787","photosystem II reaction center protein PsbW"],["PANTHER%3APTHR31899","BETA-CAROTENE 3-HYDROXYLASE 1, CHLOROPLASTIC"],["PANTHER%3APTHR36404","EMBRYO DEFECTIVE 2737"]]},{"id":"GO:0005802","l":"trans-Golgi network","na":6,"nb":24,"a":[["membrane_organelle/trans_golgi_network.html","trans-Golgi network"],["membrane_organelle/trans_golgi_network_membrane.html","trans-Golgi network membrane"],["membrane_organelle/trans_golgi_network_transport_vesicle_membrane.html","trans-Golgi network transport vesicle membrane"],["other/clathrin_coat_of_trans_golgi_network_vesicle.html","clathrin coat of trans-Golgi network vesicle"],["other/exomer_complex.html","exomer complex"],["other/garp_complex.html","GARP complex"]],"b":[["ComplexPortal%3ACPX-5151","AP-4 Adaptor complex"],["ComplexPortal%3ACPX-5154","AP-4 Adaptor complex"],["ComplexPortal%3ACPX-8167","OSBPL9-OSBPL10 oxysterol-binding protein-related complex"],["ComplexPortal%3ACPX-8168","OSBPL9-OSBPL11 oxysterol-binding protein-related complex"],["GO%3A0005802","trans-Golgi network"],["InterPro%3AIPR028129","Consortin, C-terminal domain"]]},{"id":"GO:0042995","l":"cell projection","na":6,"nb":18,"a":[["appendage/archaeal_cannula.html","archaeal cannula"],["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/attachment_organelle.html","attachment organelle"],["appendage/hamus.html","hamus"],["appendage/prostheca.html","prostheca"]],"b":[["GO%3A0097589","archaeal-type flagellum"],["GO%3A0009288","bacterial-type flagellum"],["GO%3A0042995","cell projection"],["GO%3A0085035","haustorium"],["GO%3A0009289","pilus"],["GO%3A0090395","plant cell papilla"]]},{"id":"GO:0030150","l":"protein import into mitochondrial matrix","na":6,"nb":17,"a":[["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"],["other/mitochondrial_outer_membrane_translocase_complex.html","mitochondrial outer membrane translocase complex"],["other/pam_complex_tim23_associated_import_motor.html","PAM complex, Tim23 associated import motor"],["other/tim23_mitochondrial_import_inner_membrane_translocase_complex.html","TIM23 mitochondrial import inner membrane translocase complex"]],"b":[["ComplexPortal%3ACPX-1744","Mitochondrial sorting and assembly machinery complex"],["ComplexPortal%3ACPX-6127","TIM23 mitochondrial inner membrane pre-sequence translocase complex, sort variant"],["GO%3A0030150","protein import into mitochondrial matrix"],["Pfam%3APF02064","MAS20 protein import receptor"],["Pfam%3APF08294","TIM21"],["PANTHER%3APTHR20922","DNL-TYPE ZINC FINGER PROTEIN"]]},{"id":"GO:0005635","l":"nuclear envelope","na":6,"nb":16,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nuclear_envelope_lumen.html","nuclear envelope lumen"],["membrane_organelle/nuclear_inner_membrane.html","nuclear inner membrane"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"],["membrane_organelle/nucleus.html","nucleus"],["other/nuclear_pore.html","nuclear pore"]],"b":[["ComplexPortal%3ACPX-1068","Importin complex, KAP60-KAP95"],["ComplexPortal%3ACPX-1287","MPS2-BBP1 spindle pole body anchor complex"],["ComplexPortal%3ACPX-2568","Nuclear pore complex"],["ComplexPortal%3ACPX-4474","Nuclear pore complex"],["ComplexPortal%3ACPX-824","Nuclear pore complex"],["ComplexPortal%3ACPX-873","Nuclear pore complex"]]},{"id":"GO:0005742","l":"mitochondrial outer membrane translocase complex","na":6,"nb":16,"a":[["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"],["other/mitochondrial_outer_membrane_translocase_complex.html","mitochondrial outer membrane translocase complex"],["other/sam_complex.html","SAM complex"],["other/tim23_mitochondrial_import_inner_membrane_translocase_complex.html","TIM23 mitochondrial import inner membrane translocase complex"]],"b":[["ComplexPortal%3ACPX-473","TOM40 mitochondrial outer membrane translocase core complex"],["ComplexPortal%3ACPX-474","TOM40 mitochondrial outer membrane translocase holocomplex"],["GO%3A0005742","mitochondrial outer membrane translocase complex"],["GO%3A0001401","SAM complex"],["GO%3A0140596","TOM complex"],["Pfam%3APF02064","MAS20 protein import receptor"]]},{"id":"GO:0030127","l":"COPII vesicle coat","na":6,"nb":16,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"],["membrane_organelle/endoplasmic_reticulum_membrane.html","endoplasmic reticulum membrane"],["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"],["other/copii_vesicle_coat.html","COPII vesicle coat"],["other/vesicle_coat.html","vesicle coat"]],"b":[["ComplexPortal%3ACPX-2360","COPII vesicle coat complex"],["ComplexPortal%3ACPX-2400","COPII vesicle coat complex"],["ComplexPortal%3ACPX-2523","COPII vesicle coat complex"],["ComplexPortal%3ACPX-1341","SEC23-LST1 COPII cargo recruitment complex"],["GO%3A0030127","COPII vesicle coat"],["NCBIfam%3ANF016683","Sec23/Sec24 zinc finger-containing protein"]]},{"id":"GO:0005686","l":"U2 snRNP","na":6,"nb":14,"a":[["ribonucleoprotein/u2_snrnp.html","U2 snRNP"],["ribonucleoprotein/u2_type_catalytic_step_1_spliceosome.html","U2-type catalytic step 1 spliceosome"],["ribonucleoprotein/u2_type_catalytic_step_2_spliceosome.html","U2-type catalytic step 2 spliceosome"],["ribonucleoprotein/u2_type_post_mrna_release_spliceosomal_complex.html","U2-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u2_type_precatalytic_spliceosome.html","U2-type precatalytic spliceosome"],["ribonucleoprotein/u2_type_prespliceosome.html","U2-type prespliceosome"]],"b":[["ComplexPortal%3ACPX-43","Sm complex"],["ComplexPortal%3ACPX-6033","Sm complex"],["ComplexPortal%3ACPX-2539","U2 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-26","U2 small nuclear ribonucleoprotein complex"],["GO%3A0005686","U2 snRNP"],["PANTHER%3APTHR13120","PHD FINGER-LIKE DOMAIN-CONTAINING PROTEIN 5A"]]},{"id":"GO:0071985","l":"multivesicular body sorting pathway","na":14,"nb":6,"a":[["membrane_organelle/endosome_lumen.html","endosome lumen"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/late_endosome_lumen.html","late endosome lumen"],["membrane_organelle/late_endosome_membrane.html","late endosome membrane"],["membrane_organelle/multivesicular_body.html","multivesicular body"]],"b":[["ComplexPortal%3ACPX-329","ESCRT-III complex"],["ComplexPortal%3ACPX-332","ESCRT-III complex, variant Chmp1b1"],["ComplexPortal%3ACPX-333","ESCRT-III complex, variant Chmp1b2"],["GO%3A0032509","endosome transport via multivesicular body sorting pathway"],["GO%3A0071985","multivesicular body sorting pathway"],["Pfam%3APF05871","ESCRT-II complex subunit"]]},{"id":"GO:0005689","l":"U12-type spliceosomal complex","na":6,"nb":13,"a":[["ribonucleoprotein/u12_type_catalytic_step_1_spliceosome.html","U12-type catalytic step 1 spliceosome"],["ribonucleoprotein/u12_type_catalytic_step_2_spliceosome.html","U12-type catalytic step 2 spliceosome"],["ribonucleoprotein/u12_type_post_mrna_release_spliceosomal_complex.html","U12-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u12_type_post_spliceosomal_complex.html","U12-type post-spliceosomal complex"],["ribonucleoprotein/u12_type_precatalytic_spliceosome.html","U12-type precatalytic spliceosome"],["ribonucleoprotein/u12_type_prespliceosome.html","U12-type prespliceosome"]],"b":[["ComplexPortal%3ACPX-26485","U11 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-26487","U12 small nuclear ribonucleoprotein complex"],["GO%3A0071017","U12-type catalytic step 1 spliceosome"],["GO%3A0071018","U12-type catalytic step 2 spliceosome"],["GO%3A0071019","U12-type post-mRNA release spliceosomal complex"],["GO%3A0071022","U12-type post-spliceosomal complex"]]},{"id":"GO:0033104","l":"type VI protein secretion system complex","na":6,"nb":13,"a":[["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"],["secretion_system/type_vi_secretion_system_baseplate.html","type VI secretion system baseplate"],["secretion_system/type_vi_secretion_system_contractile_sheath.html","type VI secretion system contractile sheath"],["secretion_system/type_vi_secretion_system_hcp_tube.html","type VI secretion system Hcp tube"],["secretion_system/type_vi_secretion_system_membrane_complex.html","type VI secretion system membrane complex"],["secretion_system/type_vi_secretion_system_vgrg_paar_spike_complex.html","type VI secretion system VgrG/PAAR spike complex"]],"b":[["GO%3A0033104","type VI protein secretion system complex"],["NCBIfam%3ANF053769","CIS1 family contractile injection system inner tube protein"],["NCBIfam%3ANF053768","CIS12 family contractile injection system protein"],["NCBIfam%3ANF053767","CIS13 family contractile injection system protein"],["NCBIfam%3ANF053770","CIS5 family contractile injection system inner tube adaptor"],["NCBIfam%3ATIGR03345","type VI secretion system ATPase TssH"]]},{"id":"GO:0042170","l":"plastid membrane","na":6,"nb":13,"a":[["membrane_organelle/chloroplast_membrane.html","chloroplast membrane"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/plastid.html","plastid"],["membrane_organelle/plastid_inner_membrane.html","plastid inner membrane"],["membrane_organelle/plastid_membrane.html","plastid membrane"],["membrane_organelle/plastid_outer_membrane.html","plastid outer membrane"]],"b":[["GO%3A0033097","amyloplast membrane"],["GO%3A0160211","apicoplast membrane"],["GO%3A0031969","chloroplast membrane"],["GO%3A0046862","chromoplast membrane"],["GO%3A0033113","cyanelle membrane"],["GO%3A7770040","epiplastidial membrane"]]},{"id":"GO:0005775","l":"vacuolar lumen","na":6,"nb":10,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["membrane_organelle/contractile_vacuole_lumen.html","contractile vacuole lumen"],["membrane_organelle/fungal_type_vacuole_lumen.html","fungal-type vacuole lumen"],["membrane_organelle/vacuolar_lumen.html","vacuolar lumen"],["membrane_organelle/vacuolar_membrane.html","vacuolar membrane"],["membrane_organelle/vacuole.html","vacuole"]],"b":[["GO%3A0120282","autolysosome lumen"],["GO%3A0034423","autophagosome lumen"],["GO%3A0035578","azurophil granule lumen"],["GO%3A1904856","cytolytic granule lumen"],["GO%3A0160318","endolysosomal intralumenal vesicle lumen"],["GO%3A0000328","fungal-type vacuole lumen"]]},{"id":"NCBITaxon:2762","l":"Cyanophora paradoxa","na":10,"nb":6,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"]],"b":[["Pfam%3APF06799","Conserved in the green lineage and diatoms 27"],["Pfam%3APF06868","Protein of unknown function (DUF1257)"],["Pfam%3APF10693","Protein of unknown function (DUF2499)"],["Pfam%3APF10726","Protein of function (DUF2518)"],["Pfam%3APF04481","Protein of unknown function (DUF561)"],["Pfam%3APF05421","Protein of unknown function (DUF751)"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":9,"nb":6,"a":[["membrane_organelle/apicoplast.html","apicoplast"],["membrane_organelle/apicoplast_membrane.html","apicoplast membrane"],["membrane_organelle/exoneme.html","exoneme"],["membrane_organelle/food_vacuole.html","food vacuole"],["membrane_organelle/inner_membrane_pellicle_complex.html","inner membrane pellicle complex"],["membrane_organelle/maurer_s_cleft.html","Maurer's cleft"]],"b":[["IDPO%3A0000037","molecular recognition display site"],["Pfam%3APF05403","Plasmodium histidine-rich protein (HRPII/III)"],["Pfam%3APF17986","EMP3-KAHRP-like N-terminal domain"],["Pfam%3APF03805","Cytoadherence-linked asexual protein"],["Pfam%3APF06589","Circumsporozoite-related antigen (CRA)"],["TED%3AAF-Q9U431-F1-model_v4_TED01","TED novel fold AF-Q9U431-F1-model_v4_TED01"]]},{"id":"GO:0038202","l":"TORC1 signaling","na":6,"nb":7,"a":[["other/gator1_complex.html","GATOR1 complex"],["other/gator2_complex.html","GATOR2 complex"],["other/gtr1_gtr2_gtpase_complex.html","Gtr1-Gtr2 GTPase complex"],["other/ragulator_complex.html","Ragulator complex"],["other/seh1_associated_complex.html","Seh1-associated complex"],["other/torc1_complex.html","TORC1 complex"]],"b":[["ComplexPortal%3ACPX-26528","Ragulator complex"],["ComplexPortal%3ACPX-2709","Ragulator complex"],["ComplexPortal%3ACPX-4741","Ragulator complex"],["ComplexPortal%3ACPX-4761","Ragulator complex"],["ComplexPortal%3ACPX-2265","TORC1 complex"],["GO%3A0038202","TORC1 signaling"]]},{"id":"GO:0005784","l":"Sec61 translocon complex","na":6,"nb":6,"a":[["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"],["membrane_organelle/endoplasmic_reticulum_lumen.html","endoplasmic reticulum lumen"],["membrane_organelle/endoplasmic_reticulum_membrane.html","endoplasmic reticulum membrane"],["other/emc_complex.html","EMC complex"],["other/endoplasmic_reticulum_sec_complex.html","endoplasmic reticulum Sec complex"],["other/sec61_translocon_complex.html","Sec61 translocon complex"]],"b":[["ComplexPortal%3ACPX-1833","SEC61 protein-conducting channel complex"],["ComplexPortal%3ACPX-8073","SEC61 protein-conducting channel complex, SEC1A1 variant"],["ComplexPortal%3ACPX-8169","SEC61 protein-conducting channel complex, SEC1A2 variant"],["ComplexPortal%3ACPX-2647","SEC61 translocon complex, SEC61G1 variant"],["ComplexPortal%3ACPX-2650","SEC61 translocon complex, SEC61G2 variant"],["GO%3A0005784","Sec61 translocon complex"]]},{"id":"GO:0009706","l":"chloroplast inner membrane","na":6,"nb":6,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_inner_membrane.html","chloroplast inner membrane"],["membrane_organelle/chloroplast_intermembrane_space.html","chloroplast intermembrane space"],["membrane_organelle/chloroplast_membrane.html","chloroplast membrane"],["other/tic_complex.html","Tic complex"]],"b":[["GO%3A0009706","chloroplast inner membrane"],["PANTHER%3APTHR31038","EXPRESSED PROTEIN-RELATED"],["PANTHER%3APTHR34048","LOW-DENSITY RECEPTOR-LIKE PROTEIN"],["PANTHER%3APTHR36317","PROTEIN MULTIPLE CHLOROPLAST DIVISION SITE 1"],["PANTHER%3APTHR47296","PROTEIN TIC 40, CHLOROPLASTIC"],["PANTHER%3APTHR37755","PROTEIN TIC 56, CHLOROPLASTIC"]]},{"id":"GO:0030662","l":"coated vesicle membrane","na":6,"nb":6,"a":[["membrane_organelle/clathrin_coated_vesicle_membrane.html","clathrin-coated vesicle membrane"],["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"],["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"],["other/vesicle_coat.html","vesicle coat"]],"b":[["GO%3A0030665","clathrin-coated vesicle membrane"],["GO%3A0030662","coated vesicle membrane"],["GO%3A0030663","COPI-coated vesicle membrane"],["GO%3A0012507","ER to Golgi transport vesicle membrane"],["PANTHER%3APTHR45837","VESICLE-TRAFFICKING PROTEIN SEC22B"],["PANTHER%3APTHR21230","VESICLE TRANSPORT V-SNARE PROTEIN VTI1-RELATED"]]},{"id":"GO:0036452","l":"ESCRT complex","na":6,"nb":6,"a":[["other/escrt_0_complex.html","ESCRT-0 complex"],["other/escrt_complex.html","ESCRT complex"],["other/escrt_i_complex.html","ESCRT I complex"],["other/escrt_ii_complex.html","ESCRT II complex"],["other/escrt_iii_complex.html","ESCRT III complex"],["other/escrt_iv_complex.html","ESCRT IV complex"]],"b":[["GO%3A0033565","ESCRT-0 complex"],["GO%3A0036452","ESCRT complex"],["GO%3A0000813","ESCRT I complex"],["GO%3A0000814","ESCRT II complex"],["GO%3A0000815","ESCRT III complex"],["GO%3A1990621","ESCRT IV complex"]]},{"id":"NCBITaxon:5693","l":"Trypanosoma cruzi","na":6,"nb":6,"a":[["membrane_organelle/contractile_vacuole.html","contractile vacuole"],["membrane_organelle/early_endosome.html","early endosome"],["membrane_organelle/early_endosome_lumen.html","early endosome lumen"],["membrane_organelle/early_endosome_membrane.html","early endosome membrane"],["membrane_organelle/reservosome.html","reservosome"],["other/cytostome.html","cytostome"]],"b":[["Pfam%3APF22592","FCaBP EF-hand domain"],["Pfam%3APF09394","Chagasin family peptidase inhibitor I42"],["Pfam%3APF12131","Protein of unknown function (DUF3586)"],["Pfam%3APF11052","Trans-sialidase of Trypanosoma hydrophobic C-terminal"],["Pfam%3APF13859","BNR repeat-like domain"],["TED%3AAF-A0A2V2XJY2-F1-model_v4_TED02","TED novel fold AF-A0A2V2XJY2-F1-model_v4_TED02"]]},{"id":"GO:0005634","l":"nucleus","na":5,"nb":1580,"a":[["membrane_organelle/macronucleus.html","macronucleus"],["membrane_organelle/micronucleus.html","micronucleus"],["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nuclear_lumen.html","nuclear lumen"],["membrane_organelle/nucleus.html","nucleus"]],"b":[["ComplexPortal%3ACPX-9003","20S immunoproteasome complex"],["ComplexPortal%3ACPX-2829","ACF chromatin remodeling complex"],["ComplexPortal%3ACPX-434","ACF chromatin remodeling complex"],["ComplexPortal%3ACPX-444","ACF chromatin remodeling complex"],["ComplexPortal%3ACPX-2824","ADA complex"],["ComplexPortal%3ACPX-608","ADA complex"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":5,"nb":297,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"],["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]],"b":[["IDPO%3A0000002","disorder"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000045","phosphorylation display site"],["IDPO%3A0000059","self-inhibition"],["Pfam%3APF17837","4'-phosphopantetheinyl transferase N-terminal domain"]]},{"id":"GO:0043232","l":"intracellular membraneless organelle","na":5,"nb":237,"a":[["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/contractile_vacuole_complex.html","contractile vacuole complex"],["microcompartment/bacterial_microcompartment.html","bacterial microcompartment"],["other/phage_nucleus.html","phage nucleus"],["other/pyrenoid.html","pyrenoid"]],"b":[["GO%3A0098682","arciform density"],["GO%3A0005818","aster"],["GO%3A0031469","bacterial microcompartment"],["GO%3A0043590","bacterial nucleoid"],["GO%3A0097727","blepharoplast"],["GO%3A0005814","centriole"]]},{"id":"GO:0005739","l":"mitochondrion","na":5,"nb":233,"a":[["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_matrix.html","mitochondrial matrix"],["membrane_organelle/mitochondrial_membrane.html","mitochondrial membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"],["nucleoid/kinetoplast.html","kinetoplast"]],"b":[["ComplexPortal%3ACPX-3034","Acetolactate synthase complex"],["ComplexPortal%3ACPX-1331","bI3 intron splicing factor complex"],["ComplexPortal%3ACPX-1314","bI4 intron splicing factor complex"],["ComplexPortal%3ACPX-6928","BOL1-GRX5 iron-sulfur cluster assembly complex"],["ComplexPortal%3ACPX-6930","BOL3-GRX5 iron-sulfur cluster assembly complex"],["ComplexPortal%3ACPX-384","CBP3-CBP6 complex"]]},{"id":"GO:0015979","l":"photosynthesis","na":5,"nb":146,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"],["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"]],"b":[["GO%3A0015979","photosynthesis"],["NCBIfam%3ATIGR01337","allophycocyanin subunit beta"],["NCBIfam%3ATIGR03056","alpha/beta fold hydrolase BchO"],["NCBIfam%3ANF013497","Apocytochrome F, C-terminal"],["NCBIfam%3ANF014391","Bacteriochlorophyll A protein"],["NCBIfam%3ANF058502","C-phycocyanin alpha-cysteine-84 phycocyanobilin lyase subunit CpcE"]]},{"id":"GO:0070013","l":"intracellular organelle lumen","na":5,"nb":124,"a":[["membrane_organelle/endosome_lumen.html","endosome lumen"],["membrane_organelle/golgi_lumen.html","Golgi lumen"],["membrane_organelle/mitochondrial_matrix.html","mitochondrial matrix"],["membrane_organelle/nuclear_lumen.html","nuclear lumen"],["membrane_organelle/vacuolar_lumen.html","vacuolar lumen"]],"b":[["GO%3A0033985","acidocalcisome lumen"],["GO%3A0060205","cytoplasmic vesicle lumen"],["GO%3A0071682","endocytic vesicle lumen"],["GO%3A0005788","endoplasmic reticulum lumen"],["GO%3A0160315","endosomal intralumenal vesicle lumen"],["GO%3A0031904","endosome lumen"]]},{"id":"GO:0005929","l":"cilium","na":5,"nb":101,"a":[["appendage/ciliary_membrane.html","ciliary membrane"],["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"],["appendage/mastigoneme.html","mastigoneme"],["cytoskeleton/ciliary_basal_body.html","ciliary basal body"]],"b":[["ComplexPortal%3ACPX-2747","BBSome complex"],["ComplexPortal%3ACPX-428","BBSome complex"],["ComplexPortal%3ACPX-5001","CPLANE complex"],["ComplexPortal%3ACPX-5026","CPLANE complex"],["ComplexPortal%3ACPX-26357","Dynein-2 complex, light-chain variant 1"],["ComplexPortal%3ACPX-26360","Dynein-2 complex, light-chain variant 2"]]},{"id":"GO:0005759","l":"mitochondrial matrix","na":5,"nb":55,"a":[["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrial_matrix.html","mitochondrial matrix"],["membrane_organelle/mitochondrion.html","mitochondrion"],["nucleoid/mitochondrial_nucleoid.html","mitochondrial nucleoid"],["other/pam_complex_tim23_associated_import_motor.html","PAM complex, Tim23 associated import motor"]],"b":[["ComplexPortal%3ACPX-865","Electron transfer flavoprotein complex"],["ComplexPortal%3ACPX-6957","GRX5 iron-sulfur cluster assembly homodimer complex"],["ComplexPortal%3ACPX-6236","Methylcrotonyl-CoA carboxylase complex"],["ComplexPortal%3ACPX-2216","Mitochondrial 2-oxoisovalerate dehydrogenase complex"],["ComplexPortal%3ACPX-26685","Mitochondrial 2-oxoisovalerate dehydrogenase complex"],["ComplexPortal%3ACPX-949","Mitochondrial 3-oxoacyl-[acyl-carrier-protein] reductase"]]},{"id":"GO:0045259","l":"proton-transporting ATP synthase complex","na":5,"nb":52,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["ComplexPortal%3ACPX-25764","Mitochondrial proton translocating ATP synthase complex"],["ComplexPortal%3ACPX-3281","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-6151","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-8618","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-8619","Mitochondrial proton-transporting ATP synthase complex, testis-specific variant"]]},{"id":"GO:0005777","l":"peroxisome","na":5,"nb":34,"a":[["membrane_organelle/glycosome.html","glycosome"],["membrane_organelle/glyoxysome.html","glyoxysome"],["membrane_organelle/peroxisomal_matrix.html","peroxisomal matrix"],["membrane_organelle/peroxisomal_membrane.html","peroxisomal membrane"],["membrane_organelle/peroxisome.html","peroxisome"]],"b":[["ComplexPortal%3ACPX-4742","Catalase complex"],["ComplexPortal%3ACPX-4767","Catalase complex"],["ComplexPortal%3ACPX-4768","Catalase complex"],["GO%3A0020015","glycosome"],["GO%3A0009514","glyoxysome"],["GO%3A0042580","mannosome"]]},{"id":"GO:0009289","l":"pilus","na":5,"nb":31,"a":[["appendage/curli.html","curli"],["appendage/p_pilus.html","P pilus"],["appendage/pilus.html","pilus"],["appendage/type_i_pilus.html","type I pilus"],["appendage/type_iv_pilus.html","type IV pilus"]],"b":[["GO%3A0098774","curli"],["GO%3A0009289","pilus"],["GO%3A0140621","type I pilus"],["GO%3A0044096","type IV pilus"],["NCBIfam%3ANF058558","amyloid-like fimbrin subunit FapC"],["NCBIfam%3ANF016344","CS1 type fimbrial major subunit"]]},{"id":"GO:0005778","l":"peroxisomal membrane","na":5,"nb":29,"a":[["membrane_organelle/glycosome_membrane.html","glycosome membrane"],["membrane_organelle/glyoxysomal_membrane.html","glyoxysomal membrane"],["membrane_organelle/peroxisomal_matrix.html","peroxisomal matrix"],["membrane_organelle/peroxisomal_membrane.html","peroxisomal membrane"],["membrane_organelle/peroxisome.html","peroxisome"]],"b":[["ComplexPortal%3ACPX-1730","Peroxisomal ABC transporter complex PXA1-PXA2"],["ComplexPortal%3ACPX-10001","Peroxisomal PEX13-PEX14 docking complex"],["ComplexPortal%3ACPX-10021","Peroxisomal PEX13-PEX14 docking complex"],["ComplexPortal%3ACPX-1904","Peroxisomal PEX13-PEX14-PEX17 docking complex"],["ComplexPortal%3ACPX-1905","Peroxisomal PEX7-PEX18 receptor complex"],["ComplexPortal%3ACPX-1906","Peroxisomal PEX7-PEX21 receptor complex"]]},{"id":"GO:0000228","l":"nuclear chromosome","na":5,"nb":26,"a":[["membrane_organelle/macronucleus.html","macronucleus"],["membrane_organelle/micronucleus.html","micronucleus"],["membrane_organelle/nuclear_lumen.html","nuclear lumen"],["other/coma_complex.html","COMA complex"],["other/nuclear_chromosome.html","nuclear chromosome"]],"b":[["ComplexPortal%3ACPX-2340","Male specific lethal complex"],["ComplexPortal%3ACPX-1288","MEI5-SAE3 recombination assembly factor complex"],["ComplexPortal%3ACPX-26610","slx1-slx4 structure-specific endonuclease complex"],["ComplexPortal%3ACPX-3159","SLX1-SLX4 structure-specific endonuclease complex"],["ComplexPortal%3ACPX-8175","SLX1-SLX4 structure-specific endonuclease complex"],["ComplexPortal%3ACPX-8093","SWI5-SFR1 recombination accessory factor complex"]]},{"id":"GO:0005684","l":"U2-type spliceosomal complex","na":5,"nb":26,"a":[["ribonucleoprotein/u2_type_catalytic_step_1_spliceosome.html","U2-type catalytic step 1 spliceosome"],["ribonucleoprotein/u2_type_catalytic_step_2_spliceosome.html","U2-type catalytic step 2 spliceosome"],["ribonucleoprotein/u2_type_post_mrna_release_spliceosomal_complex.html","U2-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u2_type_precatalytic_spliceosome.html","U2-type precatalytic spliceosome"],["ribonucleoprotein/u2_type_prespliceosome.html","U2-type prespliceosome"]],"b":[["ComplexPortal%3ACPX-2565","SF3A complex"],["ComplexPortal%3ACPX-1647","SF3B complex"],["ComplexPortal%3ACPX-2227","SF3B complex"],["GO%3A0000243","commitment complex"],["GO%3A0071006","U2-type catalytic step 1 spliceosome"],["GO%3A0071007","U2-type catalytic step 2 spliceosome"]]},{"id":"NCBITaxon:5811","l":"Toxoplasma gondii","na":18,"nb":5,"a":[["cytoskeleton/conoid.html","conoid"],["cytoskeleton/intraconoid_microtubule.html","intraconoid microtubule"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["cytoskeleton/subpellicular_microtubule.html","subpellicular microtubule"],["membrane_organelle/apicomplexan_dense_granule.html","apicomplexan dense granule"],["membrane_organelle/apicomplexan_dense_granule_membrane.html","apicomplexan dense granule membrane"]],"b":[["Pfam%3APF24633","Domain of unknown function (DUF7630)"],["Pfam%3APF24634","Domain of unknown function (DUF7631)"],["Pfam%3APF05084","Granule antigen protein (GRA6)"],["Pfam%3APF14531","Kinase-like"],["Pfam%3APF10564","Sialic-acid binding micronemal adhesive repeat"]]},{"id":"GO:0005758","l":"mitochondrial intermembrane space","na":5,"nb":17,"a":[["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrial_intermembrane_space.html","mitochondrial intermembrane space"],["membrane_organelle/mitochondrial_membrane.html","mitochondrial membrane"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"]],"b":[["ComplexPortal%3ACPX-2371","TIM8-TIM13 mitochondrial intermembrane space protein transporter complex"],["ComplexPortal%3ACPX-6131","TIM8A-TIM13 mitochondrial intermembrane space protein transporter complex"],["ComplexPortal%3ACPX-6132","TIM8B-TIM13 mitochondrial intermembrane space protein transporter complex"],["ComplexPortal%3ACPX-2268","TIM9-TIM10 mitochondrial intermembrane space protein transporter complex"],["ComplexPortal%3ACPX-6125","TIM9-TIM10 mitochondrial intermembrane space protein transporter complex"],["ComplexPortal%3ACPX-6126","TIM9-TIM10-TIM10B mitochondrial intermembrane space protein transporter complex"]]},{"id":"GO:0009512","l":"cytochrome b6f complex","na":5,"nb":12,"a":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["GO%3A0009512","cytochrome b6f complex"],["NCBIfam%3ANF014576","cytochrome b6-f complex subunit PetG"],["NCBIfam%3ANF016971","cytochrome b6-f complex subunit PetL"],["NCBIfam%3ANF015687","cytochrome b6-f complex subunit PetN"],["NCBIfam%3ANF050003","cytochrome b6f subunit PetP"],["NCBIfam%3ANF019653","PetM family cytochrome b6-f complex subunit 7"]]},{"id":"GO:0005637","l":"nuclear inner membrane","na":5,"nb":11,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nuclear_envelope_lumen.html","nuclear envelope lumen"],["membrane_organelle/nuclear_inner_membrane.html","nuclear inner membrane"],["membrane_organelle/nuclear_lumen.html","nuclear lumen"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"]],"b":[["ComplexPortal%3ACPX-3248","Asi ubiquitin ligase complex"],["GO%3A0005637","nuclear inner membrane"],["InterPro%3AIPR018861","Transmembrane protein 201, C-terminal"],["NCBIfam%3ANF021959","DUF2448 domain-containing protein"],["PANTHER%3APTHR38044","BOUQUET FORMATION PROTEIN 4"],["PANTHER%3APTHR31488","DPY-19-LIKE 1, LIKE (H. SAPIENS)"]]},{"id":"GO:0005688","l":"U6 snRNP","na":5,"nb":10,"a":[["ribonucleoprotein/u2_type_catalytic_step_1_spliceosome.html","U2-type catalytic step 1 spliceosome"],["ribonucleoprotein/u2_type_catalytic_step_2_spliceosome.html","U2-type catalytic step 2 spliceosome"],["ribonucleoprotein/u2_type_post_mrna_release_spliceosomal_complex.html","U2-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u4_u6_snrnp.html","U4/U6 snRNP"],["ribonucleoprotein/u6_snrnp.html","U6 snRNP"]],"b":[["ComplexPortal%3ACPX-44","LSM2-8 complex"],["ComplexPortal%3ACPX-24","U6 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-26411","U6 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-26415","U6 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-26483","U6 small nuclear ribonucleoprotein complex"],["GO%3A0005688","U6 snRNP"]]},{"id":"GO:0005879","l":"axonemal microtubule","na":5,"nb":10,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"],["cytoskeleton/b_axonemal_microtubule.html","B axonemal microtubule"],["cytoskeleton/c1_axonemal_microtubule.html","C1 axonemal microtubule"],["cytoskeleton/c2_axonemal_microtubule.html","C2 axonemal microtubule"]],"b":[["GO%3A0097649","A axonemal microtubule"],["GO%3A0005879","axonemal microtubule"],["GO%3A0097650","B axonemal microtubule"],["GO%3A1990719","C1 axonemal microtubule"],["GO%3A1990720","C2 axonemal microtubule"],["NCBIfam%3ANF026242","microtubule wall 1/2 piercer family protein"]]},{"id":"GO:0016471","l":"vacuolar proton-transporting V-type ATPase complex","na":5,"nb":9,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v0_domain.html","vacuolar proton-transporting V-type ATPase, V0 domain"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v1_domain.html","vacuolar proton-transporting V-type ATPase, V1 domain"],["membrane_organelle/fungal_type_vacuole_membrane.html","fungal-type vacuole membrane"],["membrane_organelle/vacuolar_membrane.html","vacuolar membrane"]],"b":[["ComplexPortal%3ACPX-1193","Vacuolar proton translocating ATPase complex, vacuole variant"],["GO%3A0046611","lysosomal proton-transporting V-type ATPase complex"],["GO%3A0016471","vacuolar proton-transporting V-type ATPase complex"],["NCBIfam%3ATIGR01042","V-type ATPase subunit A"],["NCBIfam%3ATIGR01040","V-type ATPase subunit B"],["NCBIfam%3ATIGR01100","V-type ATPase subunit C"]]},{"id":"GO:0030135","l":"coated vesicle","na":5,"nb":9,"a":[["membrane_organelle/clathrin_coated_vesicle.html","clathrin-coated vesicle"],["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"],["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"]],"b":[["GO%3A0030136","clathrin-coated vesicle"],["GO%3A0030135","coated vesicle"],["GO%3A0030137","COPI-coated vesicle"],["GO%3A0030134","COPII-coated ER to Golgi transport vesicle"],["PANTHER%3APTHR31975","BUD SITE SELECTION PROTEIN 7-RELATED"],["PANTHER%3APTHR10261","COATOMER SUBUNIT GAMMA"]]},{"id":"GO:0031904","l":"endosome lumen","na":8,"nb":5,"a":[["membrane_organelle/early_endosome_lumen.html","early endosome lumen"],["membrane_organelle/endosome.html","endosome"],["membrane_organelle/endosome_lumen.html","endosome lumen"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/late_endosome_lumen.html","late endosome lumen"]],"b":[["GO%3A0031905","early endosome lumen"],["GO%3A0036021","endolysosome lumen"],["GO%3A0031904","endosome lumen"],["GO%3A0031906","late endosome lumen"],["GO%3A0034777","recycling endosome lumen"]]},{"id":"GO:0009528","l":"plastid inner membrane","na":7,"nb":5,"a":[["membrane_organelle/chloroplast_inner_membrane.html","chloroplast inner membrane"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/organellar_chromatophore_inner_membrane.html","organellar chromatophore inner membrane"],["membrane_organelle/plastid_envelope.html","plastid envelope"],["membrane_organelle/plastid_inner_membrane.html","plastid inner membrane"],["membrane_organelle/plastid_intermembrane_space.html","plastid intermembrane space"]],"b":[["GO%3A0033098","amyloplast inner membrane"],["GO%3A0009706","chloroplast inner membrane"],["GO%3A0031899","chromoplast inner membrane"],["GO%3A0036012","cyanelle inner membrane"],["GO%3A0009528","plastid inner membrane"]]},{"id":"GO:0009570","l":"chloroplast stroma","na":7,"nb":5,"a":[["inclusion/plastoglobule.html","plastoglobule"],["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_inner_membrane.html","chloroplast inner membrane"],["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"],["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"]],"b":[["GO%3A0009570","chloroplast stroma"],["PANTHER%3APTHR34113","INACTIVE PURPLE ACID PHOSPHATASE-LIKE PROTEIN"],["PANTHER%3APTHR36803","PROTEIN CHLORORESPIRATORY REDUCTION 7, CHLOROPLASTIC"],["PANTHER%3APTHR47317","PROTEIN LHCP TRANSLOCATION DEFECT"],["PANTHER%3APTHR34669","THIOREDOXIN-LIKE FOLD DOMAIN-CONTAINING PROTEIN MRL7L, CHLOROPLASTIC"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":7,"nb":5,"a":[["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/rc_lh1_pufx_core_complex.html","RC-LH1-PufX core complex"],["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"]],"b":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF02963","Restriction endonuclease EcoRI"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["PROSITE%3APS00974","Mannitol dehydrogenases signature"],["PROSITE%3APS00567","Phosphoribulokinase signature"]]},{"id":"GO:0000324","l":"fungal-type vacuole","na":6,"nb":5,"a":[["membrane_organelle/autophagosome.html","autophagosome"],["membrane_organelle/cvt_vesicle.html","Cvt vesicle"],["membrane_organelle/fungal_type_vacuole.html","fungal-type vacuole"],["membrane_organelle/fungal_type_vacuole_lumen.html","fungal-type vacuole lumen"],["membrane_organelle/fungal_type_vacuole_membrane.html","fungal-type vacuole membrane"],["membrane_organelle/vacuole.html","vacuole"]],"b":[["ComplexPortal%3ACPX-1278","LMA1 complex, TRX1 variant"],["ComplexPortal%3ACPX-1279","LMA1 complex, TRX2 variant"],["GO%3A0000324","fungal-type vacuole"],["InterPro%3AIPR033819","Saccharopepsin"],["PANTHER%3APTHR36819","REGULATOR OF PHOSPHOLIPASE D SRF1"]]},{"id":"GO:0030076","l":"light-harvesting complex","na":5,"nb":6,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/phycobilisome.html","phycobilisome"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"]],"b":[["GO%3A0030076","light-harvesting complex"],["GO%3A0030089","phycobilisome"],["GO%3A0030077","plasma membrane light-harvesting complex"],["GO%3A0009503","thylakoid light-harvesting complex"],["Pfam%3APF02429","Peridinin-chlorophyll A binding protein"],["InterPro%3AIPR036550","Peridinin-chlorophyll A binding superfamily"]]},{"id":"GO:0030694","l":"bacterial-type flagellum basal body, rod","na":6,"nb":5,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"],["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"],["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"]],"b":[["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["GO%3A0030694","bacterial-type flagellum basal body, rod"],["NCBIfam%3ATIGR01396","flagellar basal body rod protein FlgB"],["NCBIfam%3ATIGR01395","flagellar basal body rod protein FlgC"],["NCBIfam%3ATIGR02490","flagellar basal-body rod protein FlgF"]]},{"id":"GO:0000814","l":"ESCRT II complex","na":5,"nb":5,"a":[["membrane_organelle/endosome.html","endosome"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/multivesicular_body.html","multivesicular body"],["other/escrt_complex.html","ESCRT complex"],["other/escrt_ii_complex.html","ESCRT II complex"]],"b":[["ComplexPortal%3ACPX-1623","ESCRT-II complex"],["ComplexPortal%3ACPX-2458","ESCRT-II complex"],["ComplexPortal%3ACPX-2506","ESCRT-II complex"],["GO%3A0000814","ESCRT II complex"],["Pfam%3APF05871","ESCRT-II complex subunit"]]},{"id":"GO:0030134","l":"COPII-coated ER to Golgi transport vesicle","na":5,"nb":5,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"],["membrane_organelle/copii_coated_vesicle_lumen.html","COPII-coated vesicle lumen"],["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"],["other/copii_vesicle_coat.html","COPII vesicle coat"]],"b":[["GO%3A0030134","COPII-coated ER to Golgi transport vesicle"],["PANTHER%3APTHR10984","ENDOPLASMIC RETICULUM-GOLGI INTERMEDIATE COMPARTMENT PROTEIN"],["PANTHER%3APTHR15858","IMMEDIATE EARLY RESPONSE 3-INTERACTING PROTEIN 1"],["PANTHER%3APTHR13144","TEX261 PROTEIN"],["PANTHER%3APTHR14083","YIP1 INTERACTING FACTOR HOMOLOG YIF1 PROTEIN"]]},{"id":"GO:0090114","l":"COPII-coated vesicle budding","na":5,"nb":5,"a":[["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"],["membrane_organelle/endoplasmic_reticulum_membrane.html","endoplasmic reticulum membrane"],["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"],["other/copii_vesicle_coat.html","COPII vesicle coat"],["other/vesicle_coat.html","vesicle coat"]],"b":[["GO%3A0090114","COPII-coated vesicle budding"],["InterPro%3AIPR037550","Sec23, C-terminal"],["PANTHER%3APTHR11141","PROTEIN TRANSPORT PROTEIN SEC23"],["PANTHER%3APTHR13803","SEC24-RELATED PROTEIN"],["PANTHER%3APTHR13923","SEC31-RELATED PROTEIN"]]},{"id":"GO:0140535","l":"intracellular protein-containing complex","na":4,"nb":262,"a":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"],["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"],["other/exodeoxyribonuclease_v_complex.html","exodeoxyribonuclease V complex"],["other/proteasome_complex.html","proteasome complex"]],"b":[["ComplexPortal%3ACPX-15604","VCP-remodelling complex"],["GO%3A0032144","4-aminobutyrate transaminase complex"],["GO%3A0034977","ABIN2-NFKB1-MAP3K8 complex"],["GO%3A0030929","ADPG pyrophosphorylase complex"],["GO%3A0017101","aminoacyl-tRNA synthetase multienzyme complex"],["GO%3A0009356","aminodeoxychorismate synthase complex"]]},{"id":"GO:0031981","l":"nuclear lumen","na":4,"nb":147,"a":[["membrane_organelle/nuclear_lumen.html","nuclear lumen"],["membrane_organelle/nucleus.html","nucleus"],["other/nuclear_chromosome.html","nuclear chromosome"],["other/nucleolus.html","nucleolus"]],"b":[["GO%3A0031981","nuclear lumen"],["PANTHER%3APTHR28028","60S RIBOSOMAL SUBUNIT ASSEMBLY/EXPORT PROTEIN LOC1"],["PANTHER%3APTHR15565","AATF PROTEIN APOPTOSIS ANTAGONIZING TRANSCRIPTION FACTOR"],["PANTHER%3APTHR12311","ACTIVATOR OF BASAL TRANSCRIPTION 1"],["PANTHER%3APTHR31454","ACTIVE REGULATOR OF SIRT1"],["PANTHER%3APTHR46627","AMINOPEPTIDASE O"]]},{"id":"GO:0060271","l":"cilium assembly","na":4,"nb":94,"a":[["appendage/ciliary_membrane.html","ciliary membrane"],["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"],["cytoskeleton/ciliary_basal_body.html","ciliary basal body"]],"b":[["ComplexPortal%3ACPX-1908","BBSome complex"],["ComplexPortal%3ACPX-1909","BBSome complex"],["ComplexPortal%3ACPX-2747","BBSome complex"],["ComplexPortal%3ACPX-428","BBSome complex"],["ComplexPortal%3ACPX-2789","CEP290 complex"],["ComplexPortal%3ACPX-1289","Intraflagellar transport complex A"]]},{"id":"GO:0071973","l":"bacterial-type flagellum-dependent cell motility","na":4,"nb":60,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/periplasmic_flagellum.html","periplasmic flagellum"]],"b":[["ComplexPortal%3ACPX-4886","DNA-directed RNA polymerase holoenzyme complex, SigmaF variant"],["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["GO%3A0071973","bacterial-type flagellum-dependent cell motility"],["GO%3A0071978","bacterial-type flagellum-dependent swarming motility"]]},{"id":"GO:0036064","l":"ciliary basal body","na":4,"nb":42,"a":[["appendage/cilium.html","cilium"],["cytoskeleton/ciliary_basal_body.html","ciliary basal body"],["cytoskeleton/ciliary_rootlet.html","ciliary rootlet"],["cytoskeleton/tripartite_attachment_complex.html","tripartite attachment complex"]],"b":[["GO%3A0036064","ciliary basal body"],["GO%3A1902636","kinociliary basal body"],["GO%3A1902671","left anterior basal body"],["GO%3A1902677","left caudal basal body"],["GO%3A1902673","left posteriolateral basal body"],["GO%3A1902675","left ventral basal body"]]},{"id":"GO:0009522","l":"photosystem I","na":4,"nb":33,"a":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/photosystem_i.html","photosystem I"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["GO%3A0030093","chloroplast photosystem I"],["GO%3A0009522","photosystem I"],["GO%3A0030094","plasma membrane-derived photosystem I"],["NCBIfam%3ANF014449","photosystem I assembly protein Ycf4"],["NCBIfam%3ATIGR01336","photosystem I core protein PsaB"],["NCBIfam%3ANF014578","photosystem I reaction center subunit II"]]},{"id":"GO:0031967","l":"organelle envelope","na":4,"nb":31,"a":[["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitosome_envelope.html","mitosome envelope"],["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/plastid_envelope.html","plastid envelope"]],"b":[["GO%3A0005740","mitochondrial envelope"],["GO%3A0005635","nuclear envelope"],["GO%3A0031967","organelle envelope"],["GO%3A0009526","plastid envelope"],["GO%3A0070732","spindle envelope"],["PANTHER%3APTHR36959","ALTERED INHERITANCE OF MITOCHONDRIA PROTEIN 24, MITOCHONDRIAL"]]},{"id":"GO:0006890","l":"retrograde vesicle-mediated transport, Golgi to endoplasmic reticulum","na":4,"nb":30,"a":[["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["other/copi_vesicle_coat.html","COPI vesicle coat"],["other/dsl1_nzr_complex.html","Dsl1/NZR complex"]],"b":[["ComplexPortal%3ACPX-7803","COPI vesicle coat complex, COPG1-COPZ1 variant"],["ComplexPortal%3ACPX-7970","COPI vesicle coat complex, COPG1-COPZ2 variant"],["ComplexPortal%3ACPX-7969","COPI vesicle coat complex, COPG2-COPZ1 variant"],["ComplexPortal%3ACPX-1652","COPI vesicle coat complex"],["ComplexPortal%3ACPX-2820","COPI vesicle coat complex"],["ComplexPortal%3ACPX-1786","Dsl1 tethering complex"]]},{"id":"GO:0005773","l":"vacuole","na":4,"nb":29,"a":[["membrane_organelle/fungal_type_vacuole.html","fungal-type vacuole"],["membrane_organelle/vacuolar_lumen.html","vacuolar lumen"],["membrane_organelle/vacuolar_membrane.html","vacuolar membrane"],["membrane_organelle/vacuole.html","vacuole"]],"b":[["GO%3A0005776","autophagosome"],["GO%3A0000331","contractile vacuole"],["GO%3A0000323","lytic vacuole"],["GO%3A0000325","plant-type vacuole"],["GO%3A0032195","post-lysosomal vacuole"],["GO%3A0000322","storage vacuole"]]},{"id":"GO:0005770","l":"late endosome","na":4,"nb":27,"a":[["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/late_endosome_lumen.html","late endosome lumen"],["membrane_organelle/late_endosome_membrane.html","late endosome membrane"],["membrane_organelle/multivesicular_body.html","multivesicular body"]],"b":[["ComplexPortal%3ACPX-5181","AP-5 Adaptor complex"],["ComplexPortal%3ACPX-5182","AP-5 Adaptor complex"],["ComplexPortal%3ACPX-20045","AP5-Spastizin-spatacsin complex"],["ComplexPortal%3ACPX-3233","GSE complex"],["ComplexPortal%3ACPX-8153","MON1-CCZ1 guanyl-nucleotide exchange factor complex, MON1A variant"],["ComplexPortal%3ACPX-8152","MON1-CCZ1 guanyl-nucleotide exchange factor complex, MON1B variant"]]},{"id":"GO:0099023","l":"vesicle tethering complex","na":4,"nb":20,"a":[["other/cog_complex.html","COG complex"],["other/corvet_complex.html","CORVET complex"],["other/dsl1_nzr_complex.html","Dsl1/NZR complex"],["other/garp_complex.html","GARP complex"]],"b":[["ComplexPortal%3ACPX-6241","CHEVI tethering complex"],["GO%3A0017119","COG complex"],["GO%3A0106103","COPII vesicles tethering complex"],["GO%3A0033263","CORVET complex"],["GO%3A0070939","Dsl1/NZR complex"],["GO%3A0000145","exocyst"]]},{"id":"GO:0110143","l":"magnetosome","na":4,"nb":17,"a":[["cytoskeleton/mamk_filament.html","MamK filament"],["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]],"b":[["GO%3A0110143","magnetosome"],["NCBIfam%3ANF040997","liposome tubulation protein MamY"],["NCBIfam%3ANF040917","magnetic particle specific iron-binding protein Mms6"],["NCBIfam%3ANF040986","magnetosome biogenesis transporter MamH"],["NCBIfam%3ANF040989","magnetosome biogenesis transporter MamN"],["NCBIfam%3ANF040998","magnetosome biogenesis transporter MamZ"]]},{"id":"GO:0005788","l":"endoplasmic reticulum lumen","na":4,"nb":15,"a":[["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"],["membrane_organelle/endoplasmic_reticulum_lumen.html","endoplasmic reticulum lumen"],["membrane_organelle/endoplasmic_reticulum_membrane.html","endoplasmic reticulum membrane"],["membrane_organelle/nuclear_envelope_lumen.html","nuclear envelope lumen"]],"b":[["ComplexPortal%3ACPX-6822","Glucosidase II complex"],["ComplexPortal%3ACPX-1283","HTM1-PDI1 exomannosidase complex"],["GO%3A0099021","cortical endoplasmic reticulum lumen"],["GO%3A0005788","endoplasmic reticulum lumen"],["GO%3A0099020","perinuclear endoplasmic reticulum lumen"],["GO%3A0048237","rough endoplasmic reticulum lumen"]]},{"id":"GO:0030117","l":"membrane coat","na":4,"nb":13,"a":[["other/ap_type_membrane_coat_adaptor_complex.html","AP-type membrane coat adaptor complex"],["other/clathrin_coat.html","clathrin coat"],["other/membrane_coat.html","membrane coat"],["other/vesicle_coat.html","vesicle coat"]],"b":[["GO%3A0030118","clathrin coat"],["GO%3A0030117","membrane coat"],["GO%3A0030120","vesicle coat"],["InterPro%3AIPR000804","Clathrin adaptor complex, small chain"],["InterPro%3AIPR002553","Clathrin/coatomer adaptor, adaptin-like, N-terminal"],["InterPro%3AIPR006692","COPA/B, second beta-propeller domain"]]},{"id":"GO:0031469","l":"bacterial microcompartment","na":4,"nb":12,"a":[["microcompartment/bacterial_microcompartment.html","bacterial microcompartment"],["microcompartment/carboxysome.html","carboxysome"],["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"],["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]],"b":[["GO%3A0031469","bacterial microcompartment"],["GO%3A0031470","carboxysome"],["GO%3A0031471","ethanolamine degradation polyhedral organelle"],["GO%3A0031472","propanediol degradation polyhedral organelle"],["NCBIfam%3ATIGR02704","carboxysome peptide B"],["NCBIfam%3ANF011934","ethanolamine utilization microcompartment protein EutL"]]},{"id":"GO:0030139","l":"endocytic vesicle","na":4,"nb":11,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle.html","clathrin-coated endocytic vesicle"],["membrane_organelle/endocytic_vesicle.html","endocytic vesicle"],["membrane_organelle/endocytic_vesicle_lumen.html","endocytic vesicle lumen"],["membrane_organelle/endocytic_vesicle_membrane.html","endocytic vesicle membrane"]],"b":[["ComplexPortal%3ACPX-5774","Cubam cobalamin uptake receptor complex"],["ComplexPortal%3ACPX-5847","Cubam cobalamin uptake receptor complex"],["GO%3A0045334","clathrin-coated endocytic vesicle"],["GO%3A0030139","endocytic vesicle"],["GO%3A0045335","phagocytic vesicle"],["GO%3A0032195","post-lysosomal vacuole"]]},{"id":"GO:0030660","l":"Golgi-associated vesicle membrane","na":4,"nb":11,"a":[["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"],["membrane_organelle/trans_golgi_network_transport_vesicle_membrane.html","trans-Golgi network transport vesicle membrane"]],"b":[["GO%3A0030663","COPI-coated vesicle membrane"],["GO%3A0030660","Golgi-associated vesicle membrane"],["GO%3A0012510","trans-Golgi network transport vesicle membrane"],["PANTHER%3APTHR16156","AFTIPHILIN A-RELATED"],["PANTHER%3APTHR15463","AP1 GAMMA SUBUNIT BINDING PROTEIN 1"],["PANTHER%3APTHR19876","COATOMER"]]},{"id":"NCBITaxon:5741","l":"Giardia intestinalis","na":11,"nb":4,"a":[["cytoskeleton/funis.html","funis"],["cytoskeleton/median_body.html","median body"],["cytoskeleton/microtubule.html","microtubule"],["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_crossbridge.html","ventral disc crossbridge"],["cytoskeleton/ventral_disc_dorsal_microribbon.html","ventral disc dorsal microribbon"]],"b":[["Pfam%3APF22293","Annexin E1, fourth repeat"],["Pfam%3APF17529","Family of unknown function (DUF5450)"],["TED%3AAF-V6TFM4-F1-model_v4_TED01","TED novel fold AF-V6TFM4-F1-model_v4_TED01"],["TED%3AAF-V6TNW5-F1-model_v4_TED02","TED novel fold AF-V6TNW5-F1-model_v4_TED02"]]},{"id":"GO:0000815","l":"ESCRT III complex","na":10,"nb":4,"a":[["membrane_organelle/endosome.html","endosome"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/multivesicular_body.html","multivesicular body"],["membrane_organelle/multivesicular_body_intraluminal_vesicle.html","multivesicular body intraluminal vesicle"],["membrane_organelle/multivesicular_body_membrane.html","multivesicular body membrane"]],"b":[["ComplexPortal%3ACPX-1624","ESCRT-III complex"],["ComplexPortal%3ACPX-2459","ESCRT-III complex"],["ComplexPortal%3ACPX-329","ESCRT-III complex"],["GO%3A0000815","ESCRT III complex"]]},{"id":"GO:0000940","l":"outer kinetochore","na":4,"nb":10,"a":[["other/dash_complex.html","DASH complex"],["other/mis12_mind_type_complex.html","MIS12/MIND type complex"],["other/ndc80_complex.html","Ndc80 complex"],["other/outer_kinetochore.html","outer kinetochore"]],"b":[["GO%3A0000444","MIS12/MIND type complex"],["GO%3A0000940","outer kinetochore"],["PANTHER%3APTHR14778","KINETOCHORE-ASSOCIATED PROTEIN DSN1 HOMOLOG"],["PANTHER%3APTHR31749","KINETOCHORE-ASSOCIATED PROTEIN NSL1 HOMOLOG"],["PANTHER%3APTHR10643","KINETOCHORE PROTEIN NDC80"],["PANTHER%3APTHR14281","KINETOCHORE PROTEIN SPC25-RELATED"]]},{"id":"GO:0009295","l":"nucleoid","na":4,"nb":10,"a":[["nucleoid/mitochondrial_nucleoid.html","mitochondrial nucleoid"],["nucleoid/nucleoid.html","nucleoid"],["nucleoid/plastid_nucleoid.html","plastid nucleoid"],["other/single_stranded_dna_binding_protein_complex.html","single-stranded DNA-binding protein complex"]],"b":[["GO%3A0043590","bacterial nucleoid"],["GO%3A0042645","mitochondrial nucleoid"],["GO%3A0009295","nucleoid"],["GO%3A0042646","plastid nucleoid"],["NCBIfam%3ANF016217","MukB N-terminal"],["NCBIfam%3ANF001557","nucleoid-associated protein YejK"]]},{"id":"GO:0005816","l":"spindle pole body","na":4,"nb":9,"a":[["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"],["cytoskeleton/spindle_pole_body.html","spindle pole body"],["spore/prospore_membrane_spindle_pole_body_attachment_site.html","prospore membrane spindle pole body attachment site"]],"b":[["ComplexPortal%3ACPX-1198","Gamma tubulin small complex"],["ComplexPortal%3ACPX-1287","MPS2-BBP1 spindle pole body anchor complex"],["ComplexPortal%3ACPX-26510","SID2-MOB1 protein kinase complex"],["GO%3A0035974","meiotic spindle pole body"],["GO%3A0044732","mitotic spindle pole body"],["GO%3A0005816","spindle pole body"]]},{"id":"GO:0031160","l":"spore wall","na":4,"nb":9,"a":[["spore/microsporidian_type_endospore.html","microsporidian-type endospore"],["spore/microsporidian_type_exospore.html","microsporidian-type exospore"],["spore/polar_tube_anchoring_disc.html","polar tube anchoring disc"],["spore/spore_wall.html","spore wall"]],"b":[["ComplexPortal%3ACPX-3028","1,3-beta-D-glucan synthase complex, FKS3-RHO1 variant"],["GO%3A0005619","ascospore wall"],["GO%3A0097515","asexual spore wall"],["GO%3A0043591","endospore external encapsulating structure"],["GO%3A0097514","sexual spore wall"],["GO%3A0031160","spore wall"]]},{"id":"GO:0001534","l":"radial spoke","na":4,"nb":8,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_central_pair_projection.html","axonemal central pair projection"],["cytoskeleton/axoneme.html","axoneme"],["cytoskeleton/radial_spoke.html","radial spoke"]],"b":[["ComplexPortal%3ACPX-8161","Radial spoke complex, ciliiar variant"],["ComplexPortal%3ACPX-8162","Radial spoke complex, flagellar variant"],["ComplexPortal%3ACPX-8164","Radial spoke complex, flagellar variant"],["GO%3A0120333","radial spoke 1"],["GO%3A0120334","radial spoke 2"],["GO%3A0120335","radial spoke 3"]]},{"id":"GO:0006119","l":"oxidative phosphorylation","na":4,"nb":8,"a":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"]],"b":[["ComplexPortal%3ACPX-268","Cytochrome bd-I ubiquinol oxidase complex"],["ComplexPortal%3ACPX-269","Cytochrome bd-II ubiquinol oxidase complex"],["GO%3A0006119","oxidative phosphorylation"],["PANTHER%3APTHR12448","ATP SYNTHASE EPSILON CHAIN, MITOCHONDRIAL"],["PANTHER%3APTHR13080","ATP SYNTHASE F CHAIN, MITOCHONDRIAL-RELATED"],["PANTHER%3APTHR43141","CYTOCHROME BD2 SUBUNIT II"]]},{"id":"InterPro:IPR001492","l":"","na":4,"nb":8,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["Pfam%3APF00700","Bacterial flagellin C-terminal helical region"],["Pfam%3APF08884","Flagellin D3 domain"],["Pfam%3APF21504","Flagellin, barrel domain"],["Pfam%3APF22370","Flagellin, beta sheet domain"],["PANTHER%3APTHR42792","FLAGELLIN"],["Pfam%3APF00669","Bacterial flagellin N-terminal helical region"]]},{"id":"GO:0009424","l":"bacterial-type flagellum hook","na":4,"nb":7,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["GO%3A0009424","bacterial-type flagellum hook"],["NCBIfam%3ATIGR02492","flagellar hook-associated protein FlgK"],["NCBIfam%3ATIGR02550","flagellar hook-associated protein FlgL"],["NCBIfam%3ANF007514","flagellar hook length control protein FliK"],["InterPro%3AIPR003481","Flagellar hook-associated protein 2, N-terminal"],["NCBIfam%3ANF014518","flagellar cap protein FliD N-terminal domain-containing protein"]]},{"id":"GO:0009527","l":"plastid outer membrane","na":7,"nb":4,"a":[["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"],["membrane_organelle/organellar_chromatophore_outer_membrane.html","organellar chromatophore outer membrane"],["membrane_organelle/plastid_envelope.html","plastid envelope"],["membrane_organelle/plastid_intermembrane_space.html","plastid intermembrane space"],["membrane_organelle/plastid_membrane.html","plastid membrane"]],"b":[["GO%3A0009707","chloroplast outer membrane"],["GO%3A0031900","chromoplast outer membrane"],["GO%3A0036013","cyanelle outer membrane"],["GO%3A0009527","plastid outer membrane"]]},{"id":"GO:0009529","l":"plastid intermembrane space","na":7,"nb":4,"a":[["membrane_organelle/chloroplast_intermembrane_space.html","chloroplast intermembrane space"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/organellar_chromatophore_intermembrane_space.html","organellar chromatophore intermembrane space"],["membrane_organelle/plastid_envelope.html","plastid envelope"],["membrane_organelle/plastid_inner_membrane.html","plastid inner membrane"],["membrane_organelle/plastid_intermembrane_space.html","plastid intermembrane space"]],"b":[["GO%3A0031972","chloroplast intermembrane space"],["GO%3A0031973","chromoplast intermembrane space"],["GO%3A0036014","cyanelle intermembrane space"],["GO%3A0009529","plastid intermembrane space"]]},{"id":"GO:0012507","l":"ER to Golgi transport vesicle membrane","na":4,"nb":7,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"],["membrane_organelle/copii_coated_vesicle_lumen.html","COPII-coated vesicle lumen"],["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"]],"b":[["GO%3A0012507","ER to Golgi transport vesicle membrane"],["PANTHER%3APTHR11141","PROTEIN TRANSPORT PROTEIN SEC23"],["PANTHER%3APTHR45684","RE74312P"],["PANTHER%3APTHR13803","SEC24-RELATED PROTEIN"],["PANTHER%3APTHR13923","SEC31-RELATED PROTEIN"],["PANTHER%3APTHR45837","VESICLE-TRAFFICKING PROTEIN SEC22B"]]},{"id":"GO:0031985","l":"Golgi cisterna","na":4,"nb":7,"a":[["membrane_organelle/golgi_apparatus.html","Golgi apparatus"],["membrane_organelle/golgi_cisterna.html","Golgi cisterna"],["membrane_organelle/golgi_cisterna_membrane.html","Golgi cisterna membrane"],["membrane_organelle/golgi_membrane.html","Golgi membrane"]],"b":[["GO%3A0000137","Golgi cis cisterna"],["GO%3A0031985","Golgi cisterna"],["GO%3A0005797","Golgi medial cisterna"],["GO%3A0000138","Golgi trans cisterna"],["PANTHER%3APTHR13815","GOLGIN-84"],["PANTHER%3APTHR21094","GOS-28 SNARE- RELATED"]]},{"id":"GO:0055035","l":"plastid thylakoid membrane","na":7,"nb":4,"a":[["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"],["membrane_organelle/plastid_membrane.html","plastid membrane"],["membrane_organelle/plastid_thylakoid.html","plastid thylakoid"],["membrane_organelle/plastid_thylakoid_lumen.html","plastid thylakoid lumen"]],"b":[["GO%3A0009535","chloroplast thylakoid membrane"],["GO%3A0033115","cyanelle thylakoid membrane"],["GO%3A0055035","plastid thylakoid membrane"],["GO%3A0042650","prothylakoid membrane"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":4,"nb":7,"a":[["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"],["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]],"b":[["Pfam%3APF19443","DAHL domain"],["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"],["Pfam%3APF03524","Conjugal transfer protein"],["Pfam%3APF27439","Chaperone protein DnaJ C-terminal region"],["Pfam%3APF10907","Protein of unknown function (DUF2749)"],["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]]},{"id":"GO:0009534","l":"chloroplast thylakoid","na":4,"nb":6,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"],["membrane_organelle/chloroplast_thylakoid_lumen.html","chloroplast thylakoid lumen"],["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"]],"b":[["GO%3A0009533","chloroplast stromal thylakoid"],["GO%3A0009534","chloroplast thylakoid"],["GO%3A0009515","granal stacked thylakoid"],["PANTHER%3APTHR47862","PEPTIDYL-PROLYL CIS-TRANS ISOMERASE FKBP18, CHLOROPLASTIC"],["PANTHER%3APTHR34790","PHOTOSYSTEM II CORE COMPLEX PROTEINS PSBY, CHLOROPLASTIC"],["PANTHER%3APTHR36734","YCF37-LIKE PROTEIN"]]},{"id":"GO:0030663","l":"COPI-coated vesicle membrane","na":6,"nb":4,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"],["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/copi_coated_vesicle_lumen.html","COPI-coated vesicle lumen"],["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"]],"b":[["ComplexPortal%3ACPX-1303","MST27-MST28 vesicle formation complex"],["GO%3A0030663","COPI-coated vesicle membrane"],["GO%3A0012508","Golgi to ER transport vesicle membrane"],["GO%3A0012509","inter-Golgi transport vesicle membrane"]]},{"id":"GO:0070112","l":"organellar chromatophore membrane","na":6,"nb":4,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_inner_membrane.html","organellar chromatophore inner membrane"],["membrane_organelle/organellar_chromatophore_membrane.html","organellar chromatophore membrane"],["membrane_organelle/organellar_chromatophore_outer_membrane.html","organellar chromatophore outer membrane"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"],["membrane_organelle/plasma_membrane_derived_chromatophore_membrane.html","plasma membrane-derived chromatophore membrane"]],"b":[["GO%3A0070113","organellar chromatophore inner membrane"],["GO%3A0070112","organellar chromatophore membrane"],["GO%3A0070114","organellar chromatophore outer membrane"],["GO%3A0070118","organellar chromatophore thylakoid membrane"]]},{"id":"NCBITaxon:5759","l":"Entamoeba histolytica","na":6,"nb":4,"a":[["membrane_organelle/mitosome.html","mitosome"],["membrane_organelle/mitosome_envelope.html","mitosome envelope"],["membrane_organelle/mitosome_inner_membrane.html","mitosome inner membrane"],["membrane_organelle/mitosome_intermembrane_space.html","mitosome intermembrane space"],["membrane_organelle/mitosome_matrix.html","mitosome matrix"],["membrane_organelle/mitosome_outer_membrane.html","mitosome outer membrane"]],"b":[["IDPO%3A0000012","molten globule to order"],["TED%3AAF-C4LXE1-F1-model_v4_TED01","TED highly-symmetric fold AF-C4LXE1-F1-model_v4_TED01"],["TED%3AAF-C4LXH3-F1-model_v4_TED02","TED novel fold AF-C4LXH3-F1-model_v4_TED02"],["TED%3AAF-C4MBN2-F1-model_v4_TED03","TED novel fold AF-C4MBN2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":6,"nb":4,"a":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"],["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"],["secretion_system/type_vi_secretion_system_baseplate.html","type VI secretion system baseplate"],["secretion_system/type_vi_secretion_system_contractile_sheath.html","type VI secretion system contractile sheath"],["secretion_system/type_vi_secretion_system_hcp_tube.html","type VI secretion system Hcp tube"],["secretion_system/type_vi_secretion_system_vgrg_paar_spike_complex.html","type VI secretion system VgrG/PAAR spike complex"]],"b":[["Pfam%3APF01375","Heat-labile enterotoxin alpha chain"],["Pfam%3APF09101","Exotoxin A binding"],["Pfam%3APF09009","Exotoxin A catalytic"],["Pfam%3APF09102","Exotoxin A, targeting"]]},{"id":"GO:0009421","l":"bacterial-type flagellum filament cap","na":4,"nb":5,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["GO%3A0009421","bacterial-type flagellum filament cap"],["NCBIfam%3ANF005955","flagellar filament capping protein FliD"],["NCBIfam%3ANF006282","flagellar filament capping protein FliD"],["NCBIfam%3ANF006435","flagellar filament capping protein FliD"],["NCBIfam%3ANF009400","flagellar filament capping protein FliD"]]},{"id":"GO:0030130","l":"clathrin coat of trans-Golgi network vesicle","na":4,"nb":5,"a":[["membrane_organelle/trans_golgi_network_transport_vesicle_membrane.html","trans-Golgi network transport vesicle membrane"],["other/ap_1_adaptor_complex.html","AP-1 adaptor complex"],["other/clathrin_coat_of_endocytic_vesicle.html","clathrin coat of endocytic vesicle"],["other/clathrin_coat_of_trans_golgi_network_vesicle.html","clathrin coat of trans-Golgi network vesicle"]],"b":[["GO%3A0030130","clathrin coat of trans-Golgi network vesicle"],["InterPro%3AIPR015348","Clathrin, heavy chain, linker, core motif"],["Pfam%3APF01086","Clathrin light chain"],["InterPro%3AIPR016025","Clathrin heavy chain, N-terminal"],["Pfam%3APF09268","Clathrin, heavy-chain linker"]]},{"id":"GO:0030132","l":"clathrin coat of coated pit","na":4,"nb":5,"a":[["other/ap_2_adaptor_complex.html","AP-2 adaptor complex"],["other/clathrin_coat.html","clathrin coat"],["other/clathrin_coat_of_coated_pit.html","clathrin coat of coated pit"],["other/clathrin_coated_pit.html","clathrin-coated pit"]],"b":[["GO%3A0030132","clathrin coat of coated pit"],["InterPro%3AIPR015348","Clathrin, heavy chain, linker, core motif"],["Pfam%3APF01086","Clathrin light chain"],["InterPro%3AIPR016025","Clathrin heavy chain, N-terminal"],["Pfam%3APF09268","Clathrin, heavy-chain linker"]]},{"id":"GO:0031976","l":"plastid thylakoid","na":5,"nb":4,"a":[["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/plastid_thylakoid.html","plastid thylakoid"],["membrane_organelle/plastid_thylakoid_lumen.html","plastid thylakoid lumen"],["membrane_organelle/plastid_thylakoid_membrane.html","plastid thylakoid membrane"]],"b":[["GO%3A0009534","chloroplast thylakoid"],["GO%3A0009843","cyanelle thylakoid"],["GO%3A0031976","plastid thylakoid"],["GO%3A0042649","prothylakoid"]]},{"id":"GO:0061700","l":"GATOR2 complex","na":5,"nb":4,"a":[["other/gator1_complex.html","GATOR1 complex"],["other/gator2_complex.html","GATOR2 complex"],["other/gtr1_gtr2_gtpase_complex.html","Gtr1-Gtr2 GTPase complex"],["other/seh1_associated_complex.html","Seh1-associated complex"],["other/torc1_complex.html","TORC1 complex"]],"b":[["ComplexPortal%3ACPX-26527","GATOR2 complex"],["ComplexPortal%3ACPX-2664","GATOR2 complex"],["ComplexPortal%3ACPX-6227","GATOR2 complex"],["GO%3A0061700","GATOR2 complex"]]},{"id":"GO:1990130","l":"GATOR1 complex","na":5,"nb":4,"a":[["other/gator1_complex.html","GATOR1 complex"],["other/gator2_complex.html","GATOR2 complex"],["other/gtr1_gtr2_gtpase_complex.html","Gtr1-Gtr2 GTPase complex"],["other/seh1_associated_complex.html","Seh1-associated complex"],["other/torc1_complex.html","TORC1 complex"]],"b":[["ComplexPortal%3ACPX-26523","GATOR1 complex"],["ComplexPortal%3ACPX-2781","GATOR1 complex"],["ComplexPortal%3ACPX-6226","GATOR1 complex"],["GO%3A1990130","GATOR1 complex"]]},{"id":"GO:0030096","l":"plasma membrane-derived thylakoid photosystem II","na":4,"nb":4,"a":[["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["GO%3A0030096","plasma membrane-derived thylakoid photosystem II"],["NCBIfam%3ANF040894","photosynthetic complex putative assembly protein PuhB"],["NCBIfam%3ATIGR03069","photosystem II electron transport protein, Sll1252 family"],["NCBIfam%3ATIGR03042","photosystem II protein PsbQ"]]},{"id":"GO:0030666","l":"endocytic vesicle membrane","na":4,"nb":4,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle_membrane.html","clathrin-coated endocytic vesicle membrane"],["membrane_organelle/endocytic_vesicle.html","endocytic vesicle"],["membrane_organelle/endocytic_vesicle_lumen.html","endocytic vesicle lumen"],["membrane_organelle/endocytic_vesicle_membrane.html","endocytic vesicle membrane"]],"b":[["GO%3A0030669","clathrin-coated endocytic vesicle membrane"],["GO%3A0030666","endocytic vesicle membrane"],["GO%3A0043661","peribacteroid membrane"],["GO%3A0030670","phagocytic vesicle membrane"]]},{"id":"GO:0032585","l":"multivesicular body membrane","na":4,"nb":4,"a":[["membrane_organelle/multivesicular_body.html","multivesicular body"],["membrane_organelle/multivesicular_body_intraluminal_vesicle.html","multivesicular body intraluminal vesicle"],["membrane_organelle/multivesicular_body_lumen.html","multivesicular body lumen"],["membrane_organelle/multivesicular_body_membrane.html","multivesicular body membrane"]],"b":[["ComplexPortal%3ACPX-329","ESCRT-III complex"],["ComplexPortal%3ACPX-332","ESCRT-III complex, variant Chmp1b1"],["ComplexPortal%3ACPX-333","ESCRT-III complex, variant Chmp1b2"],["GO%3A0032585","multivesicular body membrane"]]},{"id":"GO:0097589","l":"archaeal-type flagellum","na":4,"nb":4,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/cilium.html","cilium"]],"b":[["GO%3A0097589","archaeal-type flagellum"],["NCBIfam%3ANF052589","archaellum protein ArlH"],["NCBIfam%3ANF052590","archaellum stator protein ArlF"],["NCBIfam%3ANF052591","archaellum stator protein ArlG"]]},{"id":"NCBITaxon:224308","l":"Bacillus subtilis (strain 168)","na":3,"nb":11310,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["division_machinery/divisome_complex.html","divisome complex"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]],"b":[["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.10.3.-","With oxygen as acceptor"],["EC%3A1.13.12.-","With incorporation of one atom of oxygen (internal monooxygenases or internal mixed function oxidases)"],["EC%3A1.14.19.-","With oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water"],["EC%3A1.17.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.21.98.-","With other, known acceptors"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":3,"nb":1616,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"],["other/pyrenoid.html","pyrenoid"]],"b":[["EC%3A1.1.1.170","3beta-hydroxysteroid-4alpha-carboxylate 3-dehydrogenase (decarboxylating)"],["EC%3A1.1.1.262","4-hydroxythreonine-4-phosphate dehydrogenase"],["EC%3A1.1.1.276","serine 3-dehydrogenase (NADP(+))"],["EC%3A1.1.1.286","isocitrate--homoisocitrate dehydrogenase"],["EC%3A1.1.1.305","UDP-glucuronic acid oxidase (UDP-4-keto-hexauronic acid decarboxylating)"],["EC%3A1.1.1.343","phosphogluconate dehydrogenase (NAD(+)-dependent, decarboxylating)"]]},{"id":"GO:0140513","l":"nuclear protein-containing complex","na":3,"nb":495,"a":[["other/cbf3_complex.html","CBF3 complex"],["other/coma_complex.html","COMA complex"],["other/dash_complex.html","DASH complex"]],"b":[["GO%3A0002180","5-lipoxygenase complex"],["GO%3A1990354","activated SUMO-E1 ligase complex"],["GO%3A0030895","apolipoprotein B mRNA editing enzyme complex"],["GO%3A0033167","ARC complex"],["GO%3A0070310","ATR-ATRIP complex"],["GO%3A0072589","box H/ACA scaRNP complex"]]},{"id":"GO:0005840","l":"ribosome","na":3,"nb":418,"a":[["ribonucleoprotein/large_ribosomal_subunit.html","large ribosomal subunit"],["ribonucleoprotein/ribosome.html","ribosome"],["ribonucleoprotein/small_ribosomal_subunit.html","small ribosomal subunit"]],"b":[["ComplexPortal%3ACPX-2854","Elongation Factor eEF1 complex, variant CAM1"],["ComplexPortal%3ACPX-425","Elongation Factor eEF1 complex, variant TEF4"],["ComplexPortal%3ACPX-427","Eukaryotic translation initiation factor 2 complex"],["ComplexPortal%3ACPX-430","Eukaryotic translation initiation factor 4F complex, variant TIF4631"],["ComplexPortal%3ACPX-431","Eukaryotic translation initiation factor 4F complex, variant TIF4632"],["ComplexPortal%3ACPX-1295","MKT1-PBP1 translation regulation complex"]]},{"id":"GO:0140534","l":"endoplasmic reticulum protein-containing complex","na":3,"nb":72,"a":[["other/endoplasmic_reticulum_sec_complex.html","endoplasmic reticulum Sec complex"],["other/get_complex.html","GET complex"],["other/sec62_sec63_complex.html","Sec62/Sec63 complex"]],"b":[["GO%3A0036513","Derlin-1 retrotranslocation complex"],["GO%3A0036502","Derlin-1-VIMP complex"],["GO%3A0031502","dolichyl-phosphate-mannose-protein mannosyltransferase complex"],["GO%3A0070939","Dsl1/NZR complex"],["GO%3A0070385","egasyn-beta-glucuronidase complex"],["GO%3A0072546","EMC complex"]]},{"id":"GO:0030288","l":"outer membrane-bounded periplasmic space","na":3,"nb":62,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"],["envelope/periplasmic_space.html","periplasmic space"]],"b":[["ComplexPortal%3ACPX-319","Trimethylamine-N-oxide reductase TorAC complex"],["GO%3A0030288","outer membrane-bounded periplasmic space"],["NCBIfam%3ATIGR03227","2-aminoethylphosphonate ABC transporter substrate-binding protein"],["NCBIfam%3ANF000397","ACC family cephalosporin-hydrolyzing class C beta-lactamase"],["NCBIfam%3ATIGR01672","acid phosphatase AphA"],["NCBIfam%3ANF000385","ACT family cephalosporin-hydrolyzing class C beta-lactamase"]]},{"id":"GO:0009523","l":"photosystem II","na":3,"nb":59,"a":[["energy_complex/photosystem_ii.html","photosystem II"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["GO%3A0030095","chloroplast photosystem II"],["GO%3A0009523","photosystem II"],["GO%3A0030096","plasma membrane-derived thylakoid photosystem II"],["NCBIfam%3ATIGR01332","cytochrome b559 subunit alpha"],["NCBIfam%3ATIGR01333","cytochrome b559 subunit beta"],["NCBIfam%3ANF012505","Lumenal portion of Cytochrome b559, alpha (gene psbE) subunit"]]},{"id":"GO:0007059","l":"chromosome segregation","na":3,"nb":58,"a":[["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"],["other/kinetochore.html","kinetochore"]],"b":[["ComplexPortal%3ACPX-26706","CLTA-CLTC-CKAP5-TACC3, mitotic spindle organizing complex"],["ComplexPortal%3ACPX-26711","CLTB-CLTC-CKAP5-TACC3, mitotic spindle organizing complex"],["ComplexPortal%3ACPX-2533","Kinetochore CCAN complex"],["ComplexPortal%3ACPX-5646","Kinetochore CCAN complex"],["ComplexPortal%3ACPX-5704","Kinetochore CCAN complex"],["ComplexPortal%3ACPX-26614","NDC80 complex"]]},{"id":"GO:0016236","l":"macroautophagy","na":3,"nb":53,"a":[["membrane_organelle/autophagosome.html","autophagosome"],["membrane_organelle/autophagosome_membrane.html","autophagosome membrane"],["other/trappiii_protein_complex.html","TRAPPIII protein complex"]],"b":[["ComplexPortal%3ACPX-3863","atg-5-atg-12-atg-16.1-atg-16.2 complex"],["ComplexPortal%3ACPX-3865","atg-5-atg-12-atg-16.1 complex"],["ComplexPortal%3ACPX-3866","atg-5-atg-12-atg-16.2 complex"],["ComplexPortal%3ACPX-1849","ATG12-ATG5-ATG16 complex"],["ComplexPortal%3ACPX-200","ATG12-ATG5-ATG16L1 complex"],["ComplexPortal%3ACPX-328","Atg12-Atg5-Atg16l1 complex"]]},{"id":"GO:0005938","l":"cell cortex","na":3,"nb":49,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"],["cytoskeleton/septin_ring.html","septin ring"],["other/cell_cortex.html","cell cortex"]],"b":[["ComplexPortal%3ACPX-977","CDC24-FAR1-Gbetagamma complex"],["ComplexPortal%3ACPX-26690","Cortical microtubule stabilization complex, KANK1 variant"],["ComplexPortal%3ACPX-20447","Cortical microtubule stabilization complex, KANK2 variant"],["ComplexPortal%3ACPX-3381","Egg-3/4/5 MBK-2 complex"],["ComplexPortal%3ACPX-26666","GNAI1-GPSM2-NUMA1, spindle orientation complex"],["ComplexPortal%3ACPX-4027","gpr-1-gpr-2-lin-5 complex"]]},{"id":"GO:0005769","l":"early endosome","na":3,"nb":44,"a":[["membrane_organelle/early_endosome.html","early endosome"],["membrane_organelle/early_endosome_lumen.html","early endosome lumen"],["membrane_organelle/early_endosome_membrane.html","early endosome membrane"]],"b":[["ComplexPortal%3ACPX-5044","BLOC-2 complex"],["ComplexPortal%3ACPX-5084","BLOC-2 complex"],["ComplexPortal%3ACPX-2540","FERRY RAB5 effector complex"],["ComplexPortal%3ACPX-11549","Huntingtin-HAP40 endosomal complex"],["ComplexPortal%3ACPX-26674","Huntingtin-HAP40 endosomal complex"],["ComplexPortal%3ACPX-5055","Neuronal AP-3 Adaptor complex, sigma3a variant"]]},{"id":"GO:0000502","l":"proteasome complex","na":3,"nb":27,"a":[["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"]],"b":[["ComplexPortal%3ACPX-9082","19S-20S-PA28-alphabeta hybrid proteasome complex"],["ComplexPortal%3ACPX-9085","19S-20S-PA28-gamma hybrid proteasome complex"],["ComplexPortal%3ACPX-9003","20S immunoproteasome complex"],["ComplexPortal%3ACPX-8806","20S proteasome complex"],["ComplexPortal%3ACPX-9004","20S thymoproteasome complex"],["ComplexPortal%3ACPX-2262","26S proteasome complex"]]},{"id":"GO:0030089","l":"phycobilisome","na":3,"nb":26,"a":[["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["GO%3A0030089","phycobilisome"],["NCBIfam%3ATIGR01337","allophycocyanin subunit beta"],["NCBIfam%3ANF058510","bifunctional rod-capping linker CpcD/ferredoxin--NADP reductase PetH"],["NCBIfam%3ATIGR01338","C-phycocyanin subunit alpha"],["NCBIfam%3ATIGR01339","C-phycocyanin subunit beta"],["NCBIfam%3ANF058511","phycobilisome rod-core linker protein CpcG1"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":3,"nb":26,"a":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]],"b":[["Pfam%3APF27270","Alr1449"],["Pfam%3APF27301","Alr2735 N-terminal domain"],["Pfam%3APF27288","Alr2735"],["Pfam%3APF21571","Arginine dihydrolase ArgZ-like, C-terminal, first region"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF13205","Bacterial Ig-like domain"]]},{"id":"GO:0031901","l":"early endosome membrane","na":3,"nb":25,"a":[["membrane_organelle/early_endosome.html","early endosome"],["membrane_organelle/early_endosome_lumen.html","early endosome lumen"],["membrane_organelle/early_endosome_membrane.html","early endosome membrane"]],"b":[["ComplexPortal%3ACPX-6311","ATP11B-CDC50A P4-ATPase complex"],["ComplexPortal%3ACPX-1137","CORVET tethering complex"],["ComplexPortal%3ACPX-1626","CORVET tethering complex"],["ComplexPortal%3ACPX-2562","WASH complex"],["ComplexPortal%3ACPX-1173","WASH complex, variant WASH2P/WASHC2A"],["ComplexPortal%3ACPX-1168","WASH complex, variant WASH2P/WASHC2C"]]},{"id":"GO:0005618","l":"cell wall","na":3,"nb":24,"a":[["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["spore/exosporium.html","exosporium"],["spore/spore_wall.html","spore wall"]],"b":[["GO%3A0005618","cell wall"],["GO%3A0097570","cyst wall"],["GO%3A0009277","fungal-type cell wall"],["GO%3A0009274","peptidoglycan-based cell wall"],["GO%3A0009505","plant-type cell wall"],["GO%3A0031160","spore wall"]]},{"id":"GO:0098791","l":"Golgi apparatus subcompartment","na":3,"nb":22,"a":[["membrane_organelle/cis_golgi_network.html","cis-Golgi network"],["membrane_organelle/golgi_cisterna.html","Golgi cisterna"],["membrane_organelle/trans_golgi_network.html","trans-Golgi network"]],"b":[["GO%3A0098791","Golgi apparatus subcompartment"],["GO%3A0031985","Golgi cisterna"],["GO%3A0005795","Golgi stack"],["GO%3A0005802","trans-Golgi network"],["PANTHER%3APTHR47180","ADP-RIBOSYLATION FACTOR-BINDING PROTEIN GGA1-RELATED"],["PANTHER%3APTHR21514","AP-4 COMPLEX ACCESSORY SUBUNIT TEPSIN"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":3,"nb":19,"a":[["appendage/type_iv_pilus.html","type IV pilus"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]],"b":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"],["Pfam%3APF18173","Bacterial HORMA domain 2"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["Pfam%3APF27322","Cap8 HORMA domain"],["Pfam%3APF01526","Tn3 transposase DDE domain"]]},{"id":"GO:0016234","l":"inclusion body","na":3,"nb":15,"a":[["inclusion/parasporal_crystal.html","parasporal crystal"],["inclusion/r_body.html","R-body"],["inclusion/sulfur_globule.html","sulfur globule"]],"b":[["GO%3A0016235","aggresome"],["GO%3A0097407","Bunina body"],["GO%3A0097408","fibrillary inclusion"],["GO%3A0097409","glial cytoplasmic inclusion"],["GO%3A0097412","hyaline inclusion"],["GO%3A0016234","inclusion body"]]},{"id":"GO:0031966","l":"mitochondrial membrane","na":3,"nb":15,"a":[["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrial_membrane.html","mitochondrial membrane"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"]],"b":[["ComplexPortal%3ACPX-8302","ABCB10-ABCB7-FECH ABC transporter"],["ComplexPortal%3ACPX-1721","Mitochondrial respiratory chain complex IV, COX5A variant"],["ComplexPortal%3ACPX-1722","Mitochondrial respiratory chain complex IV, COX5B variant"],["ComplexPortal%3ACPX-6123","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-8620","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-9641","Mitochondrial respiratory chain complex IV"]]},{"id":"GO:0009277","l":"fungal-type cell wall","na":3,"nb":14,"a":[["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["other/1_3_beta_d_glucan_synthase_complex.html","1,3-beta-D-glucan synthase complex"],["spore/ascospore_wall.html","ascospore wall"]],"b":[["ComplexPortal%3ACPX-1812","1,3-beta-D-glucan synthase complex, FKS1-RHO1 variant"],["GO%3A0005619","ascospore wall"],["GO%3A0009277","fungal-type cell wall"],["GO%3A0030446","hyphal cell wall"],["GO%3A0030445","yeast-form cell wall"],["InterPro%3AIPR019778","Class I Hydrophobin, conserved site"]]},{"id":"GO:0030008","l":"TRAPP complex","na":3,"nb":14,"a":[["other/trappi_protein_complex.html","TRAPPI protein complex"],["other/trappii_protein_complex.html","TRAPPII protein complex"],["other/trappiii_protein_complex.html","TRAPPIII protein complex"]],"b":[["GO%3A0030008","TRAPP complex"],["GO%3A1990070","TRAPPI protein complex"],["GO%3A1990071","TRAPPII protein complex"],["GO%3A1990072","TRAPPIII protein complex"],["PANTHER%3APTHR20902","41-2 PROTEIN ANTIGEN-RELATED"],["PANTHER%3APTHR13251","EPILEPSY HOLOPROSENCEPHALY CANDIDATE 1/TMEM1"]]},{"id":"GO:0055037","l":"recycling endosome","na":3,"nb":14,"a":[["membrane_organelle/recycling_endosome.html","recycling endosome"],["membrane_organelle/recycling_endosome_lumen.html","recycling endosome lumen"],["membrane_organelle/recycling_endosome_membrane.html","recycling endosome membrane"]],"b":[["ComplexPortal%3ACPX-6207","EARP tethering complex"],["GO%3A0090653","apical recycling endosome"],["GO%3A0090654","basolateral recycling endosome"],["GO%3A0098832","peri-centrosomal recycling endosome"],["GO%3A0098837","postsynaptic recycling endosome"],["GO%3A0055037","recycling endosome"]]},{"id":"GO:0000421","l":"autophagosome membrane","na":3,"nb":13,"a":[["membrane_organelle/autophagosome.html","autophagosome"],["membrane_organelle/autophagosome_lumen.html","autophagosome lumen"],["membrane_organelle/autophagosome_membrane.html","autophagosome membrane"]],"b":[["ComplexPortal%3ACPX-25783","SNARE complex STX17-SNAP29-VAMP7"],["ComplexPortal%3ACPX-25782","SNARE complex STX17-SNAP29-VAMP8"],["ComplexPortal%3ACPX-26400","SNARE complex STX17-SNAP47-VAMP7"],["ComplexPortal%3ACPX-26401","SNARE complex STX17-SNAP47-VAMP8"],["ComplexPortal%3ACPX-26524","SNARE complex STX4-SNAP29-SEC22b"],["ComplexPortal%3ACPX-25786","SNARE priming complex STX17-SNAP29-YKT6"]]},{"id":"GO:0005776","l":"autophagosome","na":3,"nb":12,"a":[["membrane_organelle/autophagosome.html","autophagosome"],["membrane_organelle/autophagosome_lumen.html","autophagosome lumen"],["membrane_organelle/autophagosome_membrane.html","autophagosome membrane"]],"b":[["ComplexPortal%3ACPX-362","Heparanase complex"],["ComplexPortal%3ACPX-363","Heparanase complex"],["ComplexPortal%3ACPX-4821","unc-51-atg-13 complex"],["GO%3A0044753","amphisome"],["GO%3A0005776","autophagosome"],["PANTHER%3APTHR13038","APG9 AUTOPHAGY 9"]]},{"id":"GO:0005940","l":"septin ring","na":3,"nb":12,"a":[["cytoskeleton/septin_ring.html","septin ring"],["other/cell_cortex.html","cell cortex"],["other/cellular_bud_neck.html","cellular bud neck"]],"b":[["ComplexPortal%3ACPX-26526","Septin1-Septin2-pnut complex"],["ComplexPortal%3ACPX-26529","Septin4-Septin5-pnut complex"],["GO%3A0000144","cellular bud neck septin ring"],["GO%3A0032172","germ tube septin ring"],["GO%3A0032168","hyphal septin ring"],["GO%3A0032175","mating projection septin ring"]]},{"id":"GO:0060170","l":"ciliary membrane","na":3,"nb":12,"a":[["appendage/ciliary_membrane.html","ciliary membrane"],["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"]],"b":[["ComplexPortal%3ACPX-1908","BBSome complex"],["ComplexPortal%3ACPX-1909","BBSome complex"],["GO%3A0060170","ciliary membrane"],["GO%3A0020018","ciliary pocket membrane"],["GO%3A0120201","cone photoreceptor disc membrane"],["GO%3A0098804","non-motile cilium membrane"]]},{"id":"GO:0061617","l":"MICOS complex","na":3,"nb":12,"a":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"],["other/micos_complex.html","MICOS complex"]],"b":[["ComplexPortal%3ACPX-140","MICOS mitochondrial contact site and cristae organizing system complex"],["ComplexPortal%3ACPX-25732","MICOS mitochondrial contact site and cristae organizing system complex, MIC10A variant"],["ComplexPortal%3ACPX-25733","MICOS mitochondrial contact site and cristae organizing system complex, MIC10B variant"],["ComplexPortal%3ACPX-25735","MICOS mitochondrial contact site and cristae organizing system complex, MIC10C variant"],["ComplexPortal%3ACPX-6141","MICOS mitochondrial contact site and cristae organizing system complex"],["GO%3A0061617","MICOS complex"]]},{"id":"GO:0005685","l":"U1 snRNP","na":3,"nb":11,"a":[["ribonucleoprotein/u1_snrnp.html","U1 snRNP"],["ribonucleoprotein/u2_type_precatalytic_spliceosome.html","U2-type precatalytic spliceosome"],["ribonucleoprotein/u2_type_prespliceosome.html","U2-type prespliceosome"]],"b":[["ComplexPortal%3ACPX-43","Sm complex"],["ComplexPortal%3ACPX-6033","Sm complex"],["ComplexPortal%3ACPX-23","U1 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-2392","U1 small nuclear ribonucleoprotein complex"],["GO%3A0005685","U1 snRNP"],["PANTHER%3APTHR11864","PRE-MRNA-PROCESSING PROTEIN PRP40"]]},{"id":"GO:0031262","l":"Ndc80 complex","na":3,"nb":11,"a":[["other/kinetochore.html","kinetochore"],["other/ndc80_complex.html","Ndc80 complex"],["other/outer_kinetochore.html","outer kinetochore"]],"b":[["ComplexPortal%3ACPX-26614","NDC80 complex"],["ComplexPortal%3ACPX-548","NDC80 complex"],["ComplexPortal%3ACPX-549","Ndc80 complex"],["ComplexPortal%3ACPX-550","Ndc80 complex"],["ComplexPortal%3ACPX-551","Ndc80 complex"],["ComplexPortal%3ACPX-806","Ndc80 complex"]]},{"id":"GO:0000444","l":"MIS12/MIND type complex","na":3,"nb":10,"a":[["other/kinetochore.html","kinetochore"],["other/mis12_mind_type_complex.html","MIS12/MIND type complex"],["other/outer_kinetochore.html","outer kinetochore"]],"b":[["ComplexPortal%3ACPX-1186","Kinetochore MIS12 complex"],["ComplexPortal%3ACPX-5643","Kinetochore MIS12 complex"],["ComplexPortal%3ACPX-5701","Kinetochore MIS12 complex"],["ComplexPortal%3ACPX-807","Kinetochore Mis12 complex"],["ComplexPortal%3ACPX-7681","Kinetochore MIS12 complex, Nnf1a variant"],["ComplexPortal%3ACPX-8928","Kinetochore MIS12 complex, Nnf1b variant"]]},{"id":"GO:0009427","l":"bacterial-type flagellum basal body, distal rod, L ring","na":3,"nb":10,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]],"b":[["GO%3A0009427","bacterial-type flagellum basal body, distal rod, L ring"],["NCBIfam%3ANF001301","flagellar basal body L-ring protein FlgH"],["NCBIfam%3ANF001304","flagellar basal body L-ring protein FlgH"],["NCBIfam%3ANF001305","flagellar basal body L-ring protein FlgH"],["NCBIfam%3ANF009072","flagellar basal body L-ring protein FlgH"],["NCBIfam%3ANF009337","flagellar basal body L-ring protein FlgH"]]},{"id":"GO:0071986","l":"Ragulator complex","na":3,"nb":10,"a":[["other/gtr1_gtr2_gtpase_complex.html","Gtr1-Gtr2 GTPase complex"],["other/ragulator_complex.html","Ragulator complex"],["other/torc1_complex.html","TORC1 complex"]],"b":[["ComplexPortal%3ACPX-3172","EGO complex"],["ComplexPortal%3ACPX-3233","GSE complex"],["ComplexPortal%3ACPX-26528","Ragulator complex"],["ComplexPortal%3ACPX-2709","Ragulator complex"],["ComplexPortal%3ACPX-4741","Ragulator complex"],["ComplexPortal%3ACPX-4761","Ragulator complex"]]},{"id":"GO:0005839","l":"proteasome core complex","na":3,"nb":9,"a":[["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"]],"b":[["ComplexPortal%3ACPX-8806","20S proteasome complex"],["GO%3A0031603","cytosolic proteasome core complex"],["GO%3A0031601","nuclear proteasome core complex"],["GO%3A0005839","proteasome core complex"],["NCBIfam%3ATIGR03634","archaeal proteasome endopeptidase complex subunit beta"],["NCBIfam%3ATIGR03690","proteasome subunit beta"]]},{"id":"GO:0007035","l":"vacuolar acidification","na":3,"nb":9,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["membrane_organelle/fungal_type_vacuole_membrane.html","fungal-type vacuole membrane"],["membrane_organelle/vacuolar_membrane.html","vacuolar membrane"]],"b":[["ComplexPortal%3ACPX-10301","RAVE complex, DMXL1 variant"],["ComplexPortal%3ACPX-10303","RAVE complex, DMXL2 variant"],["ComplexPortal%3ACPX-6905","Vacuolar proton translocating ATPase complex, ATP6V0A3 variant"],["ComplexPortal%3ACPX-1193","Vacuolar proton translocating ATPase complex, vacuole variant"],["GO%3A0007042","lysosomal lumen acidification"],["GO%3A0007035","vacuolar acidification"]]},{"id":"CHEBI:17029","l":"chitin","na":3,"nb":8,"a":[["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["membrane_organelle/chitosome.html","chitosome"],["spore/microsporidian_type_endospore.html","microsporidian-type endospore"]],"b":[["EC%3A2.4.1.16","chitin synthase"],["EC%3A3.5.1.41","chitin deacetylase"],["RHEA%3A85463","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-1)-N-acetyl-alpha-D-glucosamine"],["RHEA%3A50672","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-2) + N,N'-diacetylchitobiose"],["RHEA%3A85003","[(1->4)-N-acetyl-beta-D-glucosaminyl](n)-N-acetyl-alpha-D-glucosamine + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n) + N-acetyl-alpha-D-glucosamine"],["RHEA%3A10464","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + n H2O = chitosan + n acetate"]]},{"id":"GO:0005798","l":"Golgi-associated vesicle","na":3,"nb":8,"a":[["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"]],"b":[["ComplexPortal%3ACPX-1698","EMP24 complex"],["GO%3A0030137","COPI-coated vesicle"],["GO%3A0005798","Golgi-associated vesicle"],["GO%3A0030140","trans-Golgi network transport vesicle"],["PANTHER%3APTHR31975","BUD SITE SELECTION PROTEIN 7-RELATED"],["PANTHER%3APTHR10261","COATOMER SUBUNIT GAMMA"]]},{"id":"GO:0031969","l":"chloroplast membrane","na":3,"nb":8,"a":[["membrane_organelle/chloroplast_inner_membrane.html","chloroplast inner membrane"],["membrane_organelle/chloroplast_membrane.html","chloroplast membrane"],["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"]],"b":[["GO%3A0009706","chloroplast inner membrane"],["GO%3A0031969","chloroplast membrane"],["GO%3A0009707","chloroplast outer membrane"],["PANTHER%3APTHR31038","EXPRESSED PROTEIN-RELATED"],["PANTHER%3APTHR34048","LOW-DENSITY RECEPTOR-LIKE PROTEIN"],["PANTHER%3APTHR36317","PROTEIN MULTIPLE CHLOROPLAST DIVISION SITE 1"]]},{"id":"GO:0045335","l":"phagocytic vesicle","na":3,"nb":8,"a":[["membrane_organelle/phagocytic_vesicle.html","phagocytic vesicle"],["membrane_organelle/phagocytic_vesicle_lumen.html","phagocytic vesicle lumen"],["membrane_organelle/phagocytic_vesicle_membrane.html","phagocytic vesicle membrane"]],"b":[["GO%3A0045336","clathrin-coated phagocytic vesicle"],["GO%3A0032009","early phagosome"],["GO%3A1990457","pexophagosome"],["GO%3A0045335","phagocytic vesicle"],["GO%3A0032010","phagolysosome"],["PANTHER%3APTHR31093","CELL SURFACE GLYCOPROTEIN GP138-RELATED-RELATED"]]},{"id":"GO:0098799","l":"outer mitochondrial membrane protein complex","na":3,"nb":8,"a":[["other/ermes_complex.html","ERMES complex"],["other/mitochondrial_outer_membrane_translocase_complex.html","mitochondrial outer membrane translocase complex"],["other/sam_complex.html","SAM complex"]],"b":[["ComplexPortal%3ACPX-3196","ERMES complex"],["ComplexPortal%3ACPX-6100","SARS-CoV-2 9b complex"],["ComplexPortal%3ACPX-6101","SARS-CoV 9b complex"],["GO%3A0036266","Cdc48p-Npl4p-Vms1p AAA ATPase complex"],["GO%3A0032865","ERMES complex"],["GO%3A0140595","MIM complex"]]},{"id":"GO:0030112","l":"glycocalyx","na":3,"nb":7,"a":[["envelope/capsule.html","capsule"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]],"b":[["GO%3A0042603","capsule"],["GO%3A0030112","glycocalyx"],["GO%3A0120240","platelet glycocalyx"],["GO%3A0030114","slime layer"],["GO%3A0120238","sperm glycocalyx"],["GO%3A0120234","stereocilium coat"]]},{"id":"GO:0035859","l":"Seh1-associated complex","na":3,"nb":7,"a":[["other/gator1_complex.html","GATOR1 complex"],["other/gator2_complex.html","GATOR2 complex"],["other/seh1_associated_complex.html","Seh1-associated complex"]],"b":[["ComplexPortal%3ACPX-3231","SEA complex"],["GO%3A0035859","Seh1-associated complex"],["PANTHER%3APTHR13153","CGTHBA PROTEIN -14 GENE PROTEIN"],["PANTHER%3APTHR13179","DEP DOMAIN CONTAINING PROTEIN 5"],["PANTHER%3APTHR46200","GATOR COMPLEX PROTEIN WDR24"],["PANTHER%3APTHR46170","GATOR COMPLEX PROTEIN WDR59"]]},{"id":"GO:0044284","l":"mitochondrial crista junction","na":3,"nb":7,"a":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"],["other/micos_complex.html","MICOS complex"]],"b":[["ComplexPortal%3ACPX-140","MICOS mitochondrial contact site and cristae organizing system complex"],["ComplexPortal%3ACPX-25732","MICOS mitochondrial contact site and cristae organizing system complex, MIC10A variant"],["ComplexPortal%3ACPX-25733","MICOS mitochondrial contact site and cristae organizing system complex, MIC10B variant"],["ComplexPortal%3ACPX-25735","MICOS mitochondrial contact site and cristae organizing system complex, MIC10C variant"],["ComplexPortal%3ACPX-6141","MICOS mitochondrial contact site and cristae organizing system complex"],["GO%3A0044284","mitochondrial crista junction"]]},{"id":"GO:0120115","l":"Lsm2-8 complex","na":3,"nb":7,"a":[["ribonucleoprotein/u4atac_u6atac_snrnp.html","U4atac/U6atac snRNP"],["ribonucleoprotein/u6_snrnp.html","U6 snRNP"],["ribonucleoprotein/u6atac_snrnp.html","U6atac snRNP"]],"b":[["ComplexPortal%3ACPX-26553","LSM2-8 complex"],["ComplexPortal%3ACPX-26555","LSM2-8 complex"],["ComplexPortal%3ACPX-1309","LSM2-8 complex, variant LSM3A-LSM6A"],["ComplexPortal%3ACPX-1352","LSM2-8 complex, variant LSM3A-LSM6B"],["ComplexPortal%3ACPX-1353","LSM2-8 complex, variant LSM3B-LSM6A"],["ComplexPortal%3ACPX-1354","LSM2-8 complex, variant LSM3B-LSM6B"]]},{"id":"GO:1990131","l":"Gtr1-Gtr2 GTPase complex","na":3,"nb":7,"a":[["other/gtr1_gtr2_gtpase_complex.html","Gtr1-Gtr2 GTPase complex"],["other/ragulator_complex.html","Ragulator complex"],["other/torc1_complex.html","TORC1 complex"]],"b":[["ComplexPortal%3ACPX-26516","RAG guanosine triphosphatase complex"],["ComplexPortal%3ACPX-26517","RAG guanosine triphosphatase complex"],["ComplexPortal%3ACPX-2542","RAG guanosine triphosphatase complex, RAGA-RAGC variant"],["ComplexPortal%3ACPX-2513","RAG guanosine triphosphatase complex, RAGA-RAGD variant"],["ComplexPortal%3ACPX-2514","RAG guanosine triphosphatase complex, RAGB-RAGC variant"],["ComplexPortal%3ACPX-767","RAG guanosine triphosphatase complex, RAGB-RAGD variant"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":3,"nb":7,"a":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"]],"b":[["Pfam%3APF04439","Streptomycin adenylyltransferase"],["TED%3AAF-A0A696J2C3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A696J2C3-F1-model_v4_TED01"],["TED%3AAF-A0A825M6H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A825M6H4-F1-model_v4_TED01"],["TED%3AAF-A0A5T0SBG5-F1-model_v4_TED01","TED novel fold AF-A0A5T0SBG5-F1-model_v4_TED01"],["TED%3AAF-A0A698JVM3-F1-model_v4_TED03","TED novel fold AF-A0A698JVM3-F1-model_v4_TED03"],["TED%3AAF-A0A824N1N8-F1-model_v4_TED01","TED novel fold AF-A0A824N1N8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:5722","l":"Trichomonas vaginalis","na":3,"nb":7,"a":[["membrane_organelle/hydrogenosomal_membrane.html","hydrogenosomal membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/hydrogenosome_lumen.html","hydrogenosome lumen"]],"b":[["TED%3AAF-A2F3M7-F1-model_v4_TED03","TED highly-symmetric fold AF-A2F3M7-F1-model_v4_TED03"],["TED%3AAF-A2HEW4-F1-model_v4_TED01","TED highly-symmetric fold AF-A2HEW4-F1-model_v4_TED01"],["TED%3AAF-A2DT59-F1-model_v4_TED01","TED novel fold AF-A2DT59-F1-model_v4_TED01"],["TED%3AAF-A2E7I9-F1-model_v4_TED02","TED novel fold AF-A2E7I9-F1-model_v4_TED02"],["TED%3AAF-A2F6I8-F1-model_v4_TED02","TED novel fold AF-A2F6I8-F1-model_v4_TED02"],["TED%3AAF-A2FV33-F1-model_v4_TED01","TED novel fold AF-A2FV33-F1-model_v4_TED01"]]},{"id":"GO:0005628","l":"prospore membrane","na":6,"nb":3,"a":[["spore/ascospore_wall.html","ascospore wall"],["spore/endospore_forming_forespore.html","endospore-forming forespore"],["spore/prospore_membrane.html","prospore membrane"],["spore/prospore_membrane_leading_edge.html","prospore membrane leading edge"],["spore/prospore_membrane_spindle_pole_body_attachment_site.html","prospore membrane spindle pole body attachment site"],["spore/spore_inner_membrane.html","spore inner membrane"]],"b":[["ComplexPortal%3ACPX-5464","Vesicular SNARE complex SSO1-SPO20-SNC1"],["ComplexPortal%3ACPX-5466","Vesicular SNARE complex SSO1-SPO20-SNC2"],["GO%3A0005628","prospore membrane"]]},{"id":"GO:0030122","l":"AP-2 adaptor complex","na":3,"nb":6,"a":[["other/ap_2_adaptor_complex.html","AP-2 adaptor complex"],["other/clathrin_coat_of_coated_pit.html","clathrin coat of coated pit"],["other/clathrin_coat_of_endocytic_vesicle.html","clathrin coat of endocytic vesicle"]],"b":[["ComplexPortal%3ACPX-534","Adapter complex AP-2"],["ComplexPortal%3ACPX-5149","AP-2 Adaptor complex, alpha1 variant"],["ComplexPortal%3ACPX-5152","AP-2 Adaptor complex, alpha1 variant"],["ComplexPortal%3ACPX-5150","AP-2 Adaptor complex, alpha2 variant"],["ComplexPortal%3ACPX-5153","AP-2 Adaptor complex, alpha2 variant"],["GO%3A0030122","AP-2 adaptor complex"]]},{"id":"GO:0031978","l":"plastid thylakoid lumen","na":6,"nb":3,"a":[["membrane_organelle/chloroplast_thylakoid_lumen.html","chloroplast thylakoid lumen"],["membrane_organelle/cyanelle_thylakoid_lumen.html","cyanelle thylakoid lumen"],["membrane_organelle/organellar_chromatophore_thylakoid_lumen.html","organellar chromatophore thylakoid lumen"],["membrane_organelle/plastid_thylakoid.html","plastid thylakoid"],["membrane_organelle/plastid_thylakoid_lumen.html","plastid thylakoid lumen"],["membrane_organelle/plastid_thylakoid_membrane.html","plastid thylakoid membrane"]],"b":[["GO%3A0009543","chloroplast thylakoid lumen"],["GO%3A0033114","cyanelle thylakoid lumen"],["GO%3A0031978","plastid thylakoid lumen"]]},{"id":"GO:1990072","l":"TRAPPIII protein complex","na":3,"nb":6,"a":[["other/trappi_protein_complex.html","TRAPPI protein complex"],["other/trappii_protein_complex.html","TRAPPII protein complex"],["other/trappiii_protein_complex.html","TRAPPIII protein complex"]],"b":[["ComplexPortal%3ACPX-4766","TRAPP III complex"],["ComplexPortal%3ACPX-4750","TRAPP III complex, TRAPPC2 variant"],["ComplexPortal%3ACPX-6903","TRAPP III complex, TRAPPC2B variant"],["ComplexPortal%3ACPX-2279","TRAPPIII complex"],["ComplexPortal%3ACPX-1383","TRAPPIII protein complex"],["GO%3A1990072","TRAPPIII protein complex"]]},{"id":"NCBITaxon:284813","l":"Encephalitozoon cuniculi (strain GB-M1)","na":3,"nb":6,"a":[["spore/microsporidian_type_endospore.html","microsporidian-type endospore"],["spore/microsporidian_type_exospore.html","microsporidian-type exospore"],["spore/polar_tube_anchoring_disc.html","polar tube anchoring disc"]],"b":[["Pfam%3APF17027","Histone-fold protein"],["Pfam%3APF10455","Bin/amphiphysin/Rvs domain for vesicular trafficking"],["Pfam%3APF07753","Protein of unknown function (DUF1609)"],["Pfam%3APF09591","Protein of unknown function (DUF2463)"],["Pfam%3APF12376","Protein of unknown function (DUF3654)"],["TED%3AAF-Q8SVN2-F1-model_v4_TED01","TED novel fold AF-Q8SVN2-F1-model_v4_TED01"]]},{"id":"GO:0009431","l":"bacterial-type flagellum basal body, MS ring","na":5,"nb":3,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"],["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"],["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["GO%3A0009431","bacterial-type flagellum basal body, MS ring"],["NCBIfam%3ATIGR00206","flagellar basal-body MS-ring/collar protein FliF"],["NCBIfam%3ATIGR00205","flagellar hook-basal body complex protein FliE"]]},{"id":"GO:0030118","l":"clathrin coat","na":5,"nb":3,"a":[["other/clathrin_coat.html","clathrin coat"],["other/clathrin_coat_of_coated_pit.html","clathrin coat of coated pit"],["other/clathrin_coat_of_endocytic_vesicle.html","clathrin coat of endocytic vesicle"],["other/clathrin_coat_of_trans_golgi_network_vesicle.html","clathrin coat of trans-Golgi network vesicle"],["other/membrane_coat.html","membrane coat"]],"b":[["GO%3A0030118","clathrin coat"],["GO%3A0030132","clathrin coat of coated pit"],["GO%3A0030125","clathrin vesicle coat"]]},{"id":"GO:0030904","l":"retromer complex","na":3,"nb":5,"a":[["other/retromer_cargo_selective_complex.html","retromer, cargo-selective complex"],["other/retromer_complex.html","retromer complex"],["other/retromer_tubulation_complex.html","retromer, tubulation complex"]],"b":[["ComplexPortal%3ACPX-1653","Retromer complex"],["ComplexPortal%3ACPX-2610","Retromer complex"],["ComplexPortal%3ACPX-26687","Retromer complex"],["GO%3A0030904","retromer complex"],["InterPro%3AIPR037918","SNX2, PX domain"]]},{"id":"GO:0033113","l":"cyanelle membrane","na":5,"nb":3,"a":[["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"],["membrane_organelle/plastid_membrane.html","plastid membrane"]],"b":[["GO%3A0036012","cyanelle inner membrane"],["GO%3A0033113","cyanelle membrane"],["GO%3A0036013","cyanelle outer membrane"]]},{"id":"GO:0045037","l":"protein import into chloroplast stroma","na":5,"nb":3,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"],["other/tic_complex.html","Tic complex"],["other/toc_complex.html","Toc complex"]],"b":[["GO%3A0045037","protein import into chloroplast stroma"],["PANTHER%3APTHR47296","PROTEIN TIC 40, CHLOROPLASTIC"],["PANTHER%3APTHR37755","PROTEIN TIC 56, CHLOROPLASTIC"]]},{"id":"InterPro:IPR020013","l":"","na":3,"nb":5,"a":[["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"]],"b":[["Pfam%3APF06429","Flagellar basal body rod FlgEFG protein C-terminal"],["Pfam%3APF22367","Flagellar hook protein FlgE, third domain"],["Pfam%3APF07559","Flagellar basal body protein FlaE D2 domain"],["Pfam%3APF00460","Flagella basal body rod protein"],["PROSITE%3APS00588","Flagella basal body rod proteins signature"]]},{"id":"GO:0005782","l":"peroxisomal matrix","na":3,"nb":4,"a":[["membrane_organelle/peroxisomal_matrix.html","peroxisomal matrix"],["membrane_organelle/peroxisomal_membrane.html","peroxisomal membrane"],["membrane_organelle/peroxisome.html","peroxisome"]],"b":[["GO%3A0034468","glycosome lumen"],["GO%3A0031908","glyoxysomal lumen"],["GO%3A0005782","peroxisomal matrix"],["PANTHER%3APTHR46027","PEROXISOMAL TARGETING SIGNAL 2 RECEPTOR"]]},{"id":"GO:0005858","l":"axonemal dynein complex","na":3,"nb":4,"a":[["cytoskeleton/axonemal_dynein_complex.html","axonemal dynein complex"],["cytoskeleton/inner_dynein_arm.html","inner dynein arm"],["cytoskeleton/outer_dynein_arm.html","outer dynein arm"]],"b":[["GO%3A0005858","axonemal dynein complex"],["GO%3A0036156","inner dynein arm"],["GO%3A0036157","outer dynein arm"],["PANTHER%3APTHR46532","MALE FERTILITY FACTOR KL5"]]},{"id":"GO:0009428","l":"bacterial-type flagellum basal body, distal rod, P ring","na":3,"nb":4,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]],"b":[["GO%3A0009428","bacterial-type flagellum basal body, distal rod, P ring"],["NCBIfam%3ATIGR03170","flagellar basal body P-ring formation chaperone FlgA"],["NCBIfam%3ANF014206","flagellar basal body P-ring protein FlgI"],["Pfam%3APF02119","Flagellar P-ring protein"]]},{"id":"GO:0009433","l":"bacterial-type flagellum basal body, C ring","na":4,"nb":3,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"]],"b":[["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009433","bacterial-type flagellum basal body, C ring"]]},{"id":"GO:0009765","l":"photosynthesis, light harvesting","na":3,"nb":4,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"]],"b":[["GO%3A0009765","photosynthesis, light harvesting"],["GO%3A0009768","photosynthesis, light harvesting in photosystem I"],["GO%3A0009769","photosynthesis, light harvesting in photosystem II"],["NCBIfam%3ATIGR03041","chlorophyll a/b binding light-harvesting protein"]]},{"id":"GO:0030670","l":"phagocytic vesicle membrane","na":3,"nb":4,"a":[["membrane_organelle/phagocytic_vesicle.html","phagocytic vesicle"],["membrane_organelle/phagocytic_vesicle_lumen.html","phagocytic vesicle lumen"],["membrane_organelle/phagocytic_vesicle_membrane.html","phagocytic vesicle membrane"]],"b":[["GO%3A0030671","clathrin-coated phagocytic vesicle membrane"],["GO%3A0036186","early phagosome membrane"],["GO%3A0030670","phagocytic vesicle membrane"],["GO%3A0061474","phagolysosome membrane"]]},{"id":"GO:0071682","l":"endocytic vesicle lumen","na":4,"nb":3,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle_lumen.html","clathrin-coated endocytic vesicle lumen"],["membrane_organelle/endocytic_vesicle.html","endocytic vesicle"],["membrane_organelle/endocytic_vesicle_lumen.html","endocytic vesicle lumen"],["membrane_organelle/endocytic_vesicle_membrane.html","endocytic vesicle membrane"]],"b":[["GO%3A0106176","clathrin-coated endocytic vesicle lumen"],["GO%3A0071682","endocytic vesicle lumen"],["GO%3A0097013","phagocytic vesicle lumen"]]},{"id":"NCBITaxon:431944","l":"Magnetospirillum gryphiswaldense MSR-1","na":4,"nb":3,"a":[["cytoskeleton/mamk_filament.html","MamK filament"],["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]],"b":[["Pfam%3APF12728","Helix-turn-helix domain"],["Pfam%3APF04011","LemA family"],["Pfam%3APF07219","HemY protein N-terminus"]]},{"id":"GO:0034357","l":"photosynthetic membrane","na":3,"nb":3,"a":[["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"],["membrane_organelle/plasma_membrane_derived_chromatophore_membrane.html","plasma membrane-derived chromatophore membrane"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["GO%3A0034357","photosynthetic membrane"],["GO%3A0042717","plasma membrane-derived chromatophore membrane"],["GO%3A0042651","thylakoid membrane"]]},{"id":"GO:0051012","l":"microtubule sliding","na":3,"nb":3,"a":[["cytoskeleton/axonemal_dynein_complex.html","axonemal dynein complex"],["cytoskeleton/inner_dynein_arm.html","inner dynein arm"],["cytoskeleton/outer_dynein_arm.html","outer dynein arm"]],"b":[["GO%3A0051012","microtubule sliding"],["GO%3A0031534","minus-end directed microtubule sliding"],["GO%3A0031535","plus-end directed microtubule sliding"]]},{"id":"GO:0055038","l":"recycling endosome membrane","na":3,"nb":3,"a":[["membrane_organelle/recycling_endosome.html","recycling endosome"],["membrane_organelle/recycling_endosome_lumen.html","recycling endosome lumen"],["membrane_organelle/recycling_endosome_membrane.html","recycling endosome membrane"]],"b":[["GO%3A0055038","recycling endosome membrane"],["PANTHER%3APTHR15726","RAB11-FAMILY INTERACTING PROTEIN"],["PANTHER%3APTHR10687","SECRETORY CARRIER-ASSOCIATED MEMBRANE PROTEIN SCAMP"]]},{"id":"GO:0097013","l":"phagocytic vesicle lumen","na":3,"nb":3,"a":[["membrane_organelle/phagocytic_vesicle.html","phagocytic vesicle"],["membrane_organelle/phagocytic_vesicle_lumen.html","phagocytic vesicle lumen"],["membrane_organelle/phagocytic_vesicle_membrane.html","phagocytic vesicle membrane"]],"b":[["GO%3A0062113","early phagosome lumen"],["GO%3A0097013","phagocytic vesicle lumen"],["GO%3A0106174","phagolysosome vesicle lumen"]]},{"id":"NCBITaxon:274","l":"Thermus thermophilus","na":3,"nb":3,"a":[["energy_complex/respiratory_chain_complex_i.html","respiratory chain complex I"],["ribonucleoprotein/ribosome.html","ribosome"],["ribonucleoprotein/small_ribosomal_subunit.html","small ribosomal subunit"]],"b":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF01861","Branched-chain polyamine synthase A C-terminal domain"],["Pfam%3APF07736","Chorismate mutase type I"]]},{"id":"GO:0110165","l":"cellular anatomical structure","na":2,"nb":1312,"a":[["other/phagophore_assembly_site.html","phagophore assembly site"],["other/popz_polar_microdomain.html","PopZ polar microdomain"]],"b":[["GO%3A0031672","A band"],["GO%3A0036063","acroblast"],["GO%3A0043159","acrosomal matrix"],["GO%3A0099079","actin body"],["GO%3A0030478","actin cap"],["GO%3A0061834","actin filament branch point"]]},{"id":"GO:0006260","l":"DNA replication","na":2,"nb":311,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"],["other/single_stranded_dna_binding_protein_complex.html","single-stranded DNA-binding protein complex"]],"b":[["ComplexPortal%3ACPX-6641","ASCC DNA alkylation repair complex"],["ComplexPortal%3ACPX-568","Chromatin assembly factor 1 complex"],["ComplexPortal%3ACPX-2671","CMG helicase complex"],["ComplexPortal%3ACPX-297","CMG helicase complex"],["ComplexPortal%3ACPX-4526","CMG helicase complex"],["ComplexPortal%3ACPX-4541","CMG helicase complex"]]},{"id":"GO:0098797","l":"plasma membrane protein complex","na":2,"nb":216,"a":[["division_machinery/elongasome.html","elongasome"],["other/ap_2_adaptor_complex.html","AP-2 adaptor complex"]],"b":[["ComplexPortal%3ACPX-850","AHNAK - Annexin A2 - S100-A10 complex"],["ComplexPortal%3ACPX-905","AHNAK - Annexin A2 - S100-A10 complex"],["ComplexPortal%3ACPX-853","Annexin A2 - S100-A10 complex"],["ComplexPortal%3ACPX-898","Annexin A2 - S100-A10 complex"],["ComplexPortal%3ACPX-9322","B-T lymphocyte attenuator, BTLA-TNFRSF14 complex"],["ComplexPortal%3ACPX-4602","FtsEX ABC cell division complex"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":190,"nb":2,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"],["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/septin_ring.html","septin ring"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"],["cytoskeleton/spindle_pole_body.html","spindle pole body"]],"b":[["PROSITE%3APS00820","Glucoamylase active site region signature"],["TED%3AAF-A0A7I9G6Y3-F1-model_v4_TED02","TED novel fold AF-A0A7I9G6Y3-F1-model_v4_TED02"]]},{"id":"GO:0015934","l":"large ribosomal subunit","na":2,"nb":130,"a":[["ribonucleoprotein/large_ribosomal_subunit.html","large ribosomal subunit"],["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["GO%3A0022625","cytosolic large ribosomal subunit"],["GO%3A0015934","large ribosomal subunit"],["GO%3A0000315","organellar large ribosomal subunit"],["NCBIfam%3ATIGR01169","50S ribosomal protein L1"],["NCBIfam%3ANF000955","50S ribosomal protein L10"],["NCBIfam%3ATIGR01077","50S ribosomal protein L13"]]},{"id":"NCBITaxon:83334","l":"Escherichia coli O157:H7","na":2,"nb":130,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"]],"b":[["IDPO%3A0000011","disorder to order"],["IDPO%3A0000014","order to disorder"],["Pfam%3APF12343","DeaD helicase C-terminal disordered region"],["Pfam%3APF26539","YhiD C-terminal ACT domain"],["Pfam%3APF01081","KDPG and KHG aldolase"],["Pfam%3APF10423","Bacterial AMP nucleoside phosphorylase N-terminus"]]},{"id":"GO:0005730","l":"nucleolus","na":2,"nb":121,"a":[["membrane_organelle/nuclear_lumen.html","nuclear lumen"],["other/nucleolus.html","nucleolus"]],"b":[["ComplexPortal%3ACPX-1099","B-WICH chromatin remodelling complex"],["ComplexPortal%3ACPX-1133","B-WICH chromatin remodelling complex"],["ComplexPortal%3ACPX-26423","Box C/D snoRNA-guided RNP methyltransferase complex, FBL variant"],["ComplexPortal%3ACPX-26377","Box C/D snoRNA-Guided RNP methyltransferase complex, FBLL1 variant"],["ComplexPortal%3ACPX-3905","Caspase-2 PIDDosome"],["ComplexPortal%3ACPX-3963","Caspase-2 PIDDosome"]]},{"id":"GO:0015935","l":"small ribosomal subunit","na":2,"nb":113,"a":[["ribonucleoprotein/ribosome.html","ribosome"],["ribonucleoprotein/small_ribosomal_subunit.html","small ribosomal subunit"]],"b":[["GO%3A0022627","cytosolic small ribosomal subunit"],["GO%3A0000314","organellar small ribosomal subunit"],["GO%3A0015935","small ribosomal subunit"],["NCBIfam%3ATIGR01046","30S ribosomal protein S10"],["NCBIfam%3ATIGR00981","30S ribosomal protein S12"],["NCBIfam%3ATIGR00982","30S ribosomal protein S12"]]},{"id":"GO:0003918","l":"DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) activity","na":2,"nb":109,"a":[["other/dna_gyrase_complex.html","DNA gyrase complex"],["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["EC%3A5.6.2.2","DNA topoisomerase (ATP-hydrolyzing)"],["ComplexPortal%3ACPX-2177","GyrA-GyrB DNA Gyrase complex"],["ComplexPortal%3ACPX-26662","SPO11 DNA endo-reduplication complex"],["ComplexPortal%3ACPX-26657","SPO11 meiotic recombination initiation complex"],["ComplexPortal%3ACPX-26658","SPO11 meiotic recombination initiation complex"],["ComplexPortal%3ACPX-26659","SPO11 meiotic recombination initiation complex"]]},{"id":"GO:0012505","l":"endomembrane system","na":2,"nb":109,"a":[["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"],["membrane_organelle/golgi_apparatus.html","Golgi apparatus"]],"b":[["ComplexPortal%3ACPX-1627","RAVE complex"],["ComplexPortal%3ACPX-25781","RAVE complex"],["ComplexPortal%3ACPX-1653","Retromer complex"],["ComplexPortal%3ACPX-2610","Retromer complex"],["ComplexPortal%3ACPX-26687","Retromer complex"],["GO%3A0012505","endomembrane system"]]},{"id":"GO:0098588","l":"bounding membrane of organelle","na":2,"nb":94,"a":[["appendage/ciliary_membrane.html","ciliary membrane"],["membrane_organelle/endocytic_vesicle_membrane.html","endocytic vesicle membrane"]],"b":[["GO%3A0033102","acidocalcisome membrane"],["GO%3A0032578","aleurone grain membrane"],["GO%3A0033111","attachment organelle membrane"],["GO%3A0098588","bounding membrane of organelle"],["GO%3A0030661","chitosome membrane"],["GO%3A0060170","ciliary membrane"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":2,"nb":93,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17544","requires hydrogencarbonate"],["EC%3A1.13.11.73","methylphosphonate synthase"],["EC%3A1.2.1.27","methylmalonate-semialdehyde dehydrogenase (CoA acylating)"],["EC%3A2.5.1.120","aminodeoxyfutalosine synthase"],["EC%3A2.5.1.143","pyridinium-3,5-biscarboxylic acid mononucleotide synthase"],["EC%3A2.7.2.2","carbamate kinase"]]},{"id":"GO:0009252","l":"peptidoglycan biosynthetic process","na":2,"nb":90,"a":[["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/elongasome.html","elongasome"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["GO%3A0009252","peptidoglycan biosynthetic process"],["GO%3A0018104","peptidoglycan-protein cross-linking"],["NCBIfam%3ATIGR00492","alanine racemase"],["NCBIfam%3ANF007061","bifunctional glycosyl transferase/transpeptidase"],["NCBIfam%3ANF006986","bifunctional UDP-N-acetylglucosamine diphosphorylase/glucosamine-1-phosphate N-acetyltransferase GlmU"]]},{"id":"GO:0042597","l":"periplasmic space","na":2,"nb":76,"a":[["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"],["envelope/periplasmic_space.html","periplasmic space"]],"b":[["ComplexPortal%3ACPX-3447","NapAB nitrate reductase complex"],["ComplexPortal%3ACPX-4281","PaoABC periplasmic aldehyde oxidoreductase"],["GO%3A0030287","cell wall-bounded periplasmic space"],["GO%3A0030288","outer membrane-bounded periplasmic space"],["GO%3A0042597","periplasmic space"],["GO%3A0036240","septal periplasm"]]},{"id":"GO:0006888","l":"endoplasmic reticulum to Golgi vesicle-mediated transport","na":2,"nb":60,"a":[["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"],["other/trappi_protein_complex.html","TRAPPI protein complex"]],"b":[["ComplexPortal%3ACPX-1698","EMP24 complex"],["ComplexPortal%3ACPX-7221","ERGIC2-ERGIC3 retrograde receptor complex"],["ComplexPortal%3ACPX-1854","Golgi SNARE complex SED5-BOS1-BET1-SEC22"],["ComplexPortal%3ACPX-1855","Golgi SNARE complex SED5-GOS1-SFT1-YKT6"],["ComplexPortal%3ACPX-8001","LMAN1-MCFD2 cargo receptor complex"],["ComplexPortal%3ACPX-4764","TRAPP II complex"]]},{"id":"GO:0010498","l":"proteasomal protein catabolic process","na":2,"nb":60,"a":[["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"]],"b":[["ComplexPortal%3ACPX-9003","20S immunoproteasome complex"],["ComplexPortal%3ACPX-8806","20S proteasome complex"],["ComplexPortal%3ACPX-9021","20S spermatoproteasome complex"],["ComplexPortal%3ACPX-9004","20S thymoproteasome complex"],["ComplexPortal%3ACPX-9077","26S proteasome complex"],["ComplexPortal%3ACPX-9087","26S proteasome complex, testis-specific variant"]]},{"id":"GO:0051276","l":"chromosome organization","na":2,"nb":49,"a":[["nucleoid/nucleoid.html","nucleoid"],["other/nuclear_chromosome.html","nuclear chromosome"]],"b":[["ComplexPortal%3ACPX-1249","SDS22-GLC7 phosphatase complex"],["ComplexPortal%3ACPX-1260","SDS22-GLC7-YPI1 phosphatase complex"],["GO%3A0036386","bacterial nucleoid DNA packaging"],["GO%3A0141112","broken chromosome clustering"],["GO%3A0030261","chromosome condensation"],["GO%3A0051276","chromosome organization"]]},{"id":"GO:0000932","l":"P-body","na":2,"nb":48,"a":[["ribonucleoprotein/cytoplasmic_stress_granule.html","cytoplasmic stress granule"],["ribonucleoprotein/p_body.html","P-body"]],"b":[["ComplexPortal%3ACPX-1185","DCS1-DCS2 regulator of decapping scavenger complex"],["ComplexPortal%3ACPX-45","LSM1-7 complex"],["ComplexPortal%3ACPX-112","LSM1-7-PAT1 complex"],["ComplexPortal%3ACPX-1308","LSM1-7-PAT1 complex, variant LSM1A-LSM3A-LSM6A-PAT1"],["ComplexPortal%3ACPX-1391","LSM1-7-PAT1 complex, variant LSM1A-LSM3A-LSM6A-PAT1H1"],["ComplexPortal%3ACPX-1399","LSM1-7-PAT1 complex, variant LSM1A-LSM3A-LSM6A-PAT1H2"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":46,"a":[["envelope/periplasmic_space.html","periplasmic space"],["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"]],"b":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF13166","AAA domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF27533","CapK C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"]]},{"id":"GO:0042147","l":"retrograde transport, endosome to Golgi","na":2,"nb":41,"a":[["other/garp_complex.html","GARP complex"],["other/retromer_complex.html","retromer complex"]],"b":[["ComplexPortal%3ACPX-5322","Endosomal SNARE complex TLG2-VTI1-TLG1-SNC1"],["ComplexPortal%3ACPX-5321","Endosomal SNARE complex TLG2-VTI1-TLG1-SNC2"],["ComplexPortal%3ACPX-1718","GARP tethering complex"],["ComplexPortal%3ACPX-365","GARP tethering complex"],["ComplexPortal%3ACPX-6208","GARP tethering complex"],["ComplexPortal%3ACPX-2788","GARP tethering complex, Vps50 variant"]]},{"id":"GO:0006402","l":"mRNA catabolic process","na":2,"nb":39,"a":[["ribonucleoprotein/bacterial_degradosome.html","bacterial degradosome"],["ribonucleoprotein/p_body.html","P-body"]],"b":[["ComplexPortal%3ACPX-2771","CCR4-NOT mRNA deadenylase complex"],["ComplexPortal%3ACPX-11781","Lyric-SND1 RNA regulator complex"],["ComplexPortal%3ACPX-2733","miRNA RISC complex"],["ComplexPortal%3ACPX-1040","SKI complex"],["GO%3A0141065","maternal mRNA clearance"],["GO%3A0000958","mitochondrial mRNA catabolic process"]]},{"id":"NCBITaxon:272634","l":"Mycoplasmoides pneumoniae (strain ATCC 29342 / M129 / Subtype 1)","na":2,"nb":38,"a":[["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"]],"b":[["Pfam%3APF01812","5-formyltetrahydrofolate cyclo-ligase family"],["Pfam%3APF03257","Mycoplasma adhesin P1, C-terminal"],["Pfam%3APF22509","CARDS D2, beta trefoil domain"],["Pfam%3APF22346","ADP-ribosylating toxin CARDS, C-terminal beta-trefoil domain"],["Pfam%3APF21694","DNA polymerase III delta subunit, C-terminal domain"],["Pfam%3APF01519","Protein of unknown function DUF16"]]},{"id":"GO:0008360","l":"regulation of cell shape","na":2,"nb":35,"a":[["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/elongasome.html","elongasome"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["ComplexPortal%3ACPX-2499","Erythrocyte spectrin complex"],["GO%3A0071963","establishment or maintenance of cell polarity regulating cell shape"],["GO%3A0008360","regulation of cell shape"],["GO%3A0061389","regulation of direction of cell growth"],["GO%3A0016476","regulation of embryonic cell shape"]]},{"id":"GO:0030141","l":"secretory granule","na":2,"nb":33,"a":[["membrane_organelle/apicomplexan_dense_granule.html","apicomplexan dense granule"],["membrane_organelle/mucocyst.html","mucocyst"]],"b":[["GO%3A0001669","acrosomal vesicle"],["GO%3A0020026","apicomplexan dense granule"],["GO%3A0042582","azurophil granule"],["GO%3A0042583","chromaffin granule"],["GO%3A0060473","cortical granule"],["GO%3A0031045","dense core granule"]]},{"id":"GO:0015977","l":"carbon fixation","na":2,"nb":30,"a":[["microcompartment/carboxysome.html","carboxysome"],["other/pyrenoid.html","pyrenoid"]],"b":[["GO%3A0009760","C4 photosynthesis"],["GO%3A0009761","CAM photosynthesis"],["GO%3A0043427","carbon fixation by 3-hydroxypropionate cycle"],["GO%3A0030634","carbon fixation by acetyl-CoA pathway"],["GO%3A0015977","carbon fixation"],["GO%3A0019643","reductive tricarboxylic acid cycle"]]},{"id":"GO:0071013","l":"catalytic step 2 spliceosome","na":2,"nb":29,"a":[["ribonucleoprotein/u12_type_catalytic_step_2_spliceosome.html","U12-type catalytic step 2 spliceosome"],["ribonucleoprotein/u2_type_catalytic_step_2_spliceosome.html","U2-type catalytic step 2 spliceosome"]],"b":[["GO%3A0071013","catalytic step 2 spliceosome"],["GO%3A0071018","U12-type catalytic step 2 spliceosome"],["GO%3A0071007","U2-type catalytic step 2 spliceosome"],["PANTHER%3APTHR13296","BCAS2 PROTEIN"],["PANTHER%3APTHR12718","CELL CYCLE CONTROL PROTEIN CWF15"],["PANTHER%3APTHR12940","ES-2 PROTEIN - RELATED"]]},{"id":"GO:0046961","l":"proton-transporting ATPase activity, rotational mechanism","na":2,"nb":26,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v1_domain.html","vacuolar proton-transporting V-type ATPase, V1 domain"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["ComplexPortal%3ACPX-2470","Vacuolar proton translocating ATPase complex, ATP6V0A1 variant"],["ComplexPortal%3ACPX-6904","Vacuolar proton translocating ATPase complex, ATP6V0A2 variant"],["ComplexPortal%3ACPX-6905","Vacuolar proton translocating ATPase complex, ATP6V0A3 variant"],["ComplexPortal%3ACPX-6912","Vacuolar proton translocating ATPase complex, ATP6V0A4 variant"],["ComplexPortal%3ACPX-1192","Vacuolar proton translocating ATPase complex, Golgi variant"]]},{"id":"GO:0000145","l":"exocyst","na":2,"nb":25,"a":[["other/cellular_bud_tip.html","cellular bud tip"],["other/exocyst.html","exocyst"]],"b":[["ComplexPortal%3ACPX-1890","Exocyst complex"],["ComplexPortal%3ACPX-26496","Exocyst complex"],["ComplexPortal%3ACPX-2465","Exocyst"],["ComplexPortal%3ACPX-712","Exocyst"],["ComplexPortal%3ACPX-4943","Exocyst, EXOC6 variant"],["ComplexPortal%3ACPX-4982","Exocyst, Exoc6 variant"]]},{"id":"GO:0071011","l":"precatalytic spliceosome","na":2,"nb":24,"a":[["ribonucleoprotein/u12_type_precatalytic_spliceosome.html","U12-type precatalytic spliceosome"],["ribonucleoprotein/u2_type_precatalytic_spliceosome.html","U2-type precatalytic spliceosome"]],"b":[["ComplexPortal%3ACPX-26435","Major Spliceosomal B complex"],["ComplexPortal%3ACPX-26429","Major Spliceosomal Pre-B complex"],["GO%3A0071011","precatalytic spliceosome"],["GO%3A0071016","U12-type precatalytic spliceosome"],["GO%3A0071005","U2-type precatalytic spliceosome"],["PANTHER%3APTHR46589","APOPTOTIC CHROMATIN CONDENSATION INDUCER IN THE NUCLEUS"]]},{"id":"GO:0072686","l":"mitotic spindle","na":2,"nb":24,"a":[["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"]],"b":[["ComplexPortal%3ACPX-1041","DASH complex"],["ComplexPortal%3ACPX-4027","gpr-1-gpr-2-lin-5 complex"],["GO%3A0072686","mitotic spindle"],["PANTHER%3APTHR46930","CDK5 REGULATORY SUBUNIT-ASSOCIATED PROTEIN 2"],["PANTHER%3APTHR47078","CYTOSKELETON-ASSOCIATED PROTEIN 2-LIKE"],["PANTHER%3APTHR28036","DASH COMPLEX SUBUNIT DAD2"]]},{"id":"GO:0005819","l":"spindle","na":2,"nb":20,"a":[["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"]],"b":[["ComplexPortal%3ACPX-3463","Central spindlin complex"],["GO%3A0072687","meiotic spindle"],["GO%3A0072686","mitotic spindle"],["GO%3A0005819","spindle"],["PANTHER%3APTHR31022","CENTRIOLE, CILIA AND SPINDLE-ASSOCIATED PROTEIN"],["PANTHER%3APTHR46725","COILED-COIL DOMAIN-CONTAINING PROTEIN 57"]]},{"id":"GO:0030658","l":"transport vesicle membrane","na":2,"nb":20,"a":[["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"],["membrane_organelle/trans_golgi_network_transport_vesicle_membrane.html","trans-Golgi network transport vesicle membrane"]],"b":[["GO%3A0060201","clathrin-sculpted acetylcholine transport vesicle membrane"],["GO%3A0060203","clathrin-sculpted glutamate transport vesicle membrane"],["GO%3A0070083","clathrin-sculpted monoamine transport vesicle membrane"],["GO%3A0012507","ER to Golgi transport vesicle membrane"],["GO%3A0099501","exocytic vesicle membrane"],["GO%3A0012508","Golgi to ER transport vesicle membrane"]]},{"id":"GO:0000048","l":"peptidyltransferase activity","na":2,"nb":18,"a":[["ribonucleoprotein/large_ribosomal_subunit.html","large ribosomal subunit"],["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["EC%3A2.3.2.12","peptidyltransferase"],["ComplexPortal%3ACPX-5226","39S mitochondrial large ribosomal subunit"],["ComplexPortal%3ACPX-5302","39S mitochondrial large ribosomal subunit"],["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["ComplexPortal%3ACPX-1602","54S mitochondrial large ribosomal subunit"],["ComplexPortal%3ACPX-1601","60S cytosolic large ribosomal subunit"]]},{"id":"GO:0005876","l":"spindle microtubule","na":2,"nb":18,"a":[["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"]],"b":[["GO%3A0000235","astral microtubule"],["GO%3A0005828","kinetochore microtubule"],["GO%3A1990498","mitotic spindle microtubule"],["GO%3A0005827","polar microtubule"],["GO%3A0005876","spindle microtubule"],["PANTHER%3APTHR46725","COILED-COIL DOMAIN-CONTAINING PROTEIN 57"]]},{"id":"GO:0031411","l":"gas vesicle","na":2,"nb":18,"a":[["inclusion/gas_vesicle.html","gas vesicle"],["inclusion/gas_vesicle_shell.html","gas vesicle shell"]],"b":[["GO%3A0031411","gas vesicle"],["NCBIfam%3ANF041667","gas vesicle accessory protein GvpU"],["NCBIfam%3ANF046092","gas vesicle protein GvpA"],["NCBIfam%3ANF045779","gas vesicle protein GvpG"],["NCBIfam%3ANF046090","gas vesicle protein GvpJ"],["NCBIfam%3ANF045778","gas vesicle protein GvpL"]]},{"id":"GO:0031982","l":"vesicle","na":2,"nb":18,"a":[["membrane_organelle/cytoplasmic_vesicle.html","cytoplasmic vesicle"],["membrane_organelle/multivesicular_body_intraluminal_vesicle.html","multivesicular body intraluminal vesicle"]],"b":[["GO%3A1903561","extracellular vesicle"],["GO%3A0097708","intracellular vesicle"],["GO%3A0031982","vesicle"],["PANTHER%3APTHR47395","BPI FOLD-CONTAINING FAMILY B MEMBER 1"],["PANTHER%3APTHR15152","CD70 ANTIGEN"],["PANTHER%3APTHR44314","CILIA- AND FLAGELLA-ASSOCIATED PROTEIN 70"]]},{"id":"GO:0046540","l":"U4/U6 x U5 tri-snRNP complex","na":2,"nb":18,"a":[["ribonucleoprotein/u2_type_precatalytic_spliceosome.html","U2-type precatalytic spliceosome"],["ribonucleoprotein/u4_u6_x_u5_tri_snrnp_complex.html","U4/U6 x U5 tri-snRNP complex"]],"b":[["ComplexPortal%3ACPX-2391","U4/U6.U5 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-25","U4/U6.U5 tri-small nuclear ribonucleoprotein complex"],["GO%3A0046540","U4/U6 x U5 tri-snRNP complex"],["NCBIfam%3ANF014962","Mitosis protein DIM1"],["InterPro%3AIPR045347","HIND motif"],["InterPro%3AIPR034103","Sm-like protein Lsm8"]]},{"id":"GO:0033103","l":"protein secretion by the type VI secretion system","na":2,"nb":17,"a":[["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"],["secretion_system/type_vi_secretion_system_contractile_sheath.html","type VI secretion system contractile sheath"]],"b":[["GO%3A0033103","protein secretion by the type VI secretion system"],["NCBIfam%3ATIGR03354","type VI secretion system-associated FHA domain protein TagH"],["NCBIfam%3ATIGR03345","type VI secretion system ATPase TssH"],["NCBIfam%3ATIGR03357","type VI secretion system baseplate subunit TssE"],["NCBIfam%3ATIGR03359","type VI secretion system baseplate subunit TssF"],["NCBIfam%3ATIGR03347","type VI secretion system baseplate subunit TssG"]]},{"id":"GO:0035869","l":"ciliary transition zone","na":2,"nb":17,"a":[["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"]],"b":[["ComplexPortal%3ACPX-2789","CEP290 complex"],["ComplexPortal%3ACPX-2536","CEP290-NPHP5 transition zone complex"],["ComplexPortal%3ACPX-2339","MKS complex"],["ComplexPortal%3ACPX-2531","MKS transition zone complex"],["ComplexPortal%3ACPX-2806","NPHP transition zone complex"],["GO%3A0035869","ciliary transition zone"]]},{"id":"NCBITaxon:5888","l":"Paramecium tetraurelia","na":2,"nb":17,"a":[["cytoskeleton/ciliary_rootlet.html","ciliary rootlet"],["membrane_organelle/trichocyst.html","trichocyst"]],"b":[["Pfam%3APF14926","Cilia- and flagella-associated protein 300"],["TED%3AAF-A0C038-F1-model_v4_TED07","TED highly-symmetric fold AF-A0C038-F1-model_v4_TED07"],["TED%3AAF-A0CFS1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0CFS1-F1-model_v4_TED02"],["TED%3AAF-A0CHQ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0CHQ8-F1-model_v4_TED01"],["TED%3AAF-A0CHQ8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0CHQ8-F1-model_v4_TED02"],["TED%3AAF-A0CHR9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0CHR9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":2,"nb":16,"a":[["cytoskeleton/tubz_filament.html","TubZ filament"],["inclusion/parasporal_crystal.html","parasporal crystal"]],"b":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF28265","Lipoprotein N-acylation protein LnsA-like"],["Pfam%3APF16403","Bacterial surface protein, Ig-like domain"],["Pfam%3APF03944","delta endotoxin"],["Pfam%3APF03945","delta endotoxin, N-terminal domain"],["Pfam%3APF06355","Aegerolysin"]]},{"id":"GO:0005811","l":"lipid droplet","na":2,"nb":15,"a":[["inclusion/lipid_droplet.html","lipid droplet"],["inclusion/monolayer_surrounded_lipid_storage_body_outer_lipid_monolayer.html","monolayer-surrounded lipid storage body outer lipid monolayer"]],"b":[["ComplexPortal%3ACPX-2148","Phosphatidylinositol transporter complex"],["ComplexPortal%3ACPX-3342","Seipin complex"],["GO%3A0005633","ascus lipid droplet"],["GO%3A0005811","lipid droplet"],["GO%3A0012511","monolayer-surrounded lipid storage body"],["NCBIfam%3ATIGR04278","antiviral radical SAM protein viperin"]]},{"id":"GO:0031902","l":"late endosome membrane","na":2,"nb":15,"a":[["membrane_organelle/late_endosome_lumen.html","late endosome lumen"],["membrane_organelle/late_endosome_membrane.html","late endosome membrane"]],"b":[["ComplexPortal%3ACPX-6308","ATP10B-CDC50A P4-ATPase complex"],["ComplexPortal%3ACPX-4741","Ragulator complex"],["ComplexPortal%3ACPX-4761","Ragulator complex"],["GO%3A0031902","late endosome membrane"],["GO%3A0032585","multivesicular body membrane"],["PANTHER%3APTHR12897","COLON CANCER-ASSOCIATED PROTEIN MIC1"]]},{"id":"GO:0032588","l":"trans-Golgi network membrane","na":2,"nb":14,"a":[["membrane_organelle/trans_golgi_network.html","trans-Golgi network"],["membrane_organelle/trans_golgi_network_membrane.html","trans-Golgi network membrane"]],"b":[["ComplexPortal%3ACPX-5050","Endothelial AP-1 Adaptor complex, sigma1a variant"],["ComplexPortal%3ACPX-5144","Endothelial AP-1 Adaptor complex, sigma1a variant"],["ComplexPortal%3ACPX-5047","Ubiquitous AP-1 Adaptor complex, sigma1a variant"],["ComplexPortal%3ACPX-5141","Ubiquitous AP-1 Adaptor complex, sigma1a variant"],["ComplexPortal%3ACPX-5048","Ubiquitous AP-1 Adaptor complex, sigma1b variant"],["ComplexPortal%3ACPX-5142","Ubiquitous AP-1 Adaptor complex, sigma1b variant"]]},{"id":"GO:0097526","l":"spliceosomal tri-snRNP complex","na":2,"nb":14,"a":[["ribonucleoprotein/u4_u6_x_u5_tri_snrnp_complex.html","U4/U6 x U5 tri-snRNP complex"],["ribonucleoprotein/u4atac_u6atac_x_u5_tri_snrnp_complex.html","U4atac/U6atac x U5 tri-snRNP complex"]],"b":[["GO%3A0097526","spliceosomal tri-snRNP complex"],["GO%3A0046540","U4/U6 x U5 tri-snRNP complex"],["GO%3A0071009","U4atac/U6atac x U5 tri-snRNP complex"],["PANTHER%3APTHR13904","PRE-MRNA SPLICING FACTOR PRP31"],["PANTHER%3APTHR13007","PRE-MRNA SPLICING FACTOR-RELATED"],["PANTHER%3APTHR11193","SMALL NUCLEAR RIBONUCLEOPROTEIN E"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":2,"nb":14,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF02224","Cytidylate kinase"],["Pfam%3APF03319","Ethanolamine utilisation protein EutN/carboxysome"],["Pfam%3APF22019","alpha-1,4-glucan branching enzyme GlgB, N-terminal domain"],["Pfam%3APF21714","Circadian clock protein KaiA, N-terminal domain"],["Pfam%3APF07688","KaiA C-terminal domain"]]},{"id":"GO:0005744","l":"TIM23 mitochondrial import inner membrane translocase complex","na":2,"nb":13,"a":[["other/pam_complex_tim23_associated_import_motor.html","PAM complex, Tim23 associated import motor"],["other/tim23_mitochondrial_import_inner_membrane_translocase_complex.html","TIM23 mitochondrial import inner membrane translocase complex"]],"b":[["ComplexPortal%3ACPX-540","Mitochondrial inner membrane pre-sequence translocase complex"],["ComplexPortal%3ACPX-539","TIM23 mitochondrial inner membrane pre-sequence translocase complex, motor variant"],["ComplexPortal%3ACPX-6127","TIM23 mitochondrial inner membrane pre-sequence translocase complex, sort variant"],["ComplexPortal%3ACPX-6129","TIM23 mitochondrial inner membrane pre-sequence translocase complex, TIM17A variant"],["ComplexPortal%3ACPX-6130","TIM23 mitochondrial inner membrane pre-sequence translocase complex, TIM17B variant"],["GO%3A0005744","TIM23 mitochondrial import inner membrane translocase complex"]]},{"id":"GO:0007007","l":"inner mitochondrial membrane organization","na":2,"nb":13,"a":[["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"],["other/micos_complex.html","MICOS complex"]],"b":[["GO%3A0042407","cristae formation"],["GO%3A0007007","inner mitochondrial membrane organization"],["GO%3A1990627","mitochondrial inner membrane fusion"],["GO%3A0032979","protein insertion into mitochondrial inner membrane from matrix"],["GO%3A0045039","protein insertion into mitochondrial inner membrane"],["PANTHER%3APTHR36959","ALTERED INHERITANCE OF MITOCHONDRIA PROTEIN 24, MITOCHONDRIAL"]]},{"id":"GO:0032153","l":"cell division site","na":2,"nb":13,"a":[["division_machinery/divisome_complex.html","divisome complex"],["envelope/division_septum.html","division septum"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["GO%3A0032153","cell division site"],["PANTHER%3APTHR36419","ARRESTIN FAMILY PROTEIN 1"],["PANTHER%3APTHR30474","CELL CYCLE PROTEIN"],["PANTHER%3APTHR37479","CELL DIVISION PROTEIN FTSL"],["PANTHER%3APTHR30314","CELL DIVISION PROTEIN FTSZ-RELATED"]]},{"id":"GO:0006913","l":"nucleocytoplasmic transport","na":2,"nb":12,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nucleus.html","nucleus"]],"b":[["ComplexPortal%3ACPX-2568","Nuclear pore complex"],["ComplexPortal%3ACPX-4474","Nuclear pore complex"],["ComplexPortal%3ACPX-824","Nuclear pore complex"],["ComplexPortal%3ACPX-873","Nuclear pore complex"],["GO%3A0051170","import into nucleus"],["GO%3A0051168","nuclear export"]]},{"id":"GO:1990586","l":"divisome complex","na":2,"nb":11,"a":[["division_machinery/divisome_complex.html","divisome complex"],["envelope/division_septum.html","division septum"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["ComplexPortal%3ACPX-3299","FtsBL complex"],["ComplexPortal%3ACPX-3099","FtsQBL complex"],["GO%3A1990586","divisome complex"],["GO%3A1990588","FtsBL complex"],["GO%3A1990587","FtsQBL complex"]]},{"id":"GO:0009330","l":"DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) complex","na":2,"nb":10,"a":[["other/dna_gyrase_complex.html","DNA gyrase complex"],["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["ComplexPortal%3ACPX-26662","SPO11 DNA endo-reduplication complex"],["ComplexPortal%3ACPX-26657","SPO11 meiotic recombination initiation complex"],["ComplexPortal%3ACPX-26658","SPO11 meiotic recombination initiation complex"],["ComplexPortal%3ACPX-26659","SPO11 meiotic recombination initiation complex"],["ComplexPortal%3ACPX-26664","SPO11, meiotic recombination initiation complex"],["ComplexPortal%3ACPX-1104","Topoisomerase IV"]]},{"id":"GO:0030428","l":"cell septum","na":2,"nb":10,"a":[["envelope/division_septum.html","division septum"],["membrane_organelle/chitosome.html","chitosome"]],"b":[["GO%3A0000933","adventitious septum"],["GO%3A0030428","cell septum"],["GO%3A0000935","division septum"],["GO%3A0000934","porous cell septum"],["NCBIfam%3ANF008641","cell division protein DedD"],["NCBIfam%3ATIGR00172","Maf family nucleotide pyrophosphatase"]]},{"id":"GO:0031470","l":"carboxysome","na":2,"nb":10,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["GO%3A0031470","carboxysome"],["NCBIfam%3ANF053791","alpha-carboxysome major shell protein CsoS1"],["NCBIfam%3ANF049993","beta-carboxysome assembly chaperone CcmS"],["NCBIfam%3ANF053792","beta-carboxysome assembly protein CcmO"],["NCBIfam%3ANF053796","beta-carboxysome protein CcmP"],["NCBIfam%3ANF053793","beta-carboxysome scaffolding protein CcmN"]]},{"id":"GO:0071014","l":"post-mRNA release spliceosomal complex","na":2,"nb":10,"a":[["ribonucleoprotein/u12_type_post_mrna_release_spliceosomal_complex.html","U12-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u2_type_post_mrna_release_spliceosomal_complex.html","U2-type post-mRNA release spliceosomal complex"]],"b":[["ComplexPortal%3ACPX-26480","Intron Lariat Spliceosome, type 1 complex"],["ComplexPortal%3ACPX-26481","Intron Lariat Spliceosome, type 2 complex"],["GO%3A0071014","post-mRNA release spliceosomal complex"],["GO%3A0071019","U12-type post-mRNA release spliceosomal complex"],["GO%3A0071008","U2-type post-mRNA release spliceosomal complex"],["PANTHER%3APTHR12072","CWF19, CELL CYCLE CONTROL PROTEIN"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":2,"nb":10,"a":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["TED%3AAF-A0A5T2E4X7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5T2E4X7-F1-model_v4_TED01"],["TED%3AAF-A0A5Y4BP44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Y4BP44-F1-model_v4_TED01"],["TED%3AAF-A0A623P6F3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A623P6F3-F1-model_v4_TED02"],["TED%3AAF-A0A721BDS7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A721BDS7-F1-model_v4_TED02"],["TED%3AAF-A0A743P324-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A743P324-F1-model_v4_TED01"],["TED%3AAF-A0A757VWR3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A757VWR3-F1-model_v4_TED02"]]},{"id":"GO:0005935","l":"cellular bud neck","na":2,"nb":9,"a":[["other/cellular_bud.html","cellular bud"],["other/cellular_bud_neck.html","cellular bud neck"]],"b":[["ComplexPortal%3ACPX-1684","CBK1-MOB2 kinase complex"],["ComplexPortal%3ACPX-1140","HICS complex"],["ComplexPortal%3ACPX-36","Kelch-containing Formin Regulatory Complex"],["ComplexPortal%3ACPX-1426","Myosin class II complex"],["ComplexPortal%3ACPX-1695","PCL1-PHO85 kinase complex"],["ComplexPortal%3ACPX-1694","PCL2-PHO85 kinase complex"]]},{"id":"GO:0006097","l":"glyoxylate cycle","na":2,"nb":9,"a":[["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysome.html","glyoxysome"]],"b":[["GO%3A0006097","glyoxylate cycle"],["proteintraitsmech%3ASEED_SUBSYSTEM_Glyoxylate_bypass","Glyoxylate bypass"],["NCBIfam%3ATIGR02924","isocitrate dehydrogenase"],["NCBIfam%3ATIGR01344","malate synthase A"],["NCBIfam%3ANF041315","malate synthase AceB"],["NCBIfam%3ANF002825","malate synthase G"]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":2,"nb":9,"a":[["envelope/capsule.html","capsule"],["envelope/glycocalyx.html","glycocalyx"]],"b":[["Pfam%3APF19567","Capsular polysaccharide synthesis, CpsB/CapC"],["Pfam%3APF07501","G5 domain"],["Pfam%3APF13551","Winged helix-turn helix"],["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF03047","COMC family"],["Pfam%3APF04556","DpnII restriction endonuclease"]]},{"id":"GO:0003352","l":"regulation of cilium movement","na":2,"nb":8,"a":[["cytoskeleton/axonemal_nexin_link.html","axonemal nexin link"],["cytoskeleton/radial_spoke.html","radial spoke"]],"b":[["GO%3A0120221","maintenance of ciliary planar beating movement pattern"],["GO%3A0003354","negative regulation of cilium movement"],["GO%3A0003353","positive regulation of cilium movement"],["GO%3A0003356","regulation of cilium beat frequency"],["GO%3A0003352","regulation of cilium movement"],["GO%3A0060295","regulation of cilium movement involved in cell motility"]]},{"id":"GO:0005801","l":"cis-Golgi network","na":2,"nb":8,"a":[["membrane_organelle/cis_golgi_network.html","cis-Golgi network"],["membrane_organelle/cis_golgi_network_membrane.html","cis-Golgi network membrane"]],"b":[["ComplexPortal%3ACPX-6092","GRASP55-GM45 Golgi stacking complex"],["ComplexPortal%3ACPX-874","GRASP65-GM130 Golgi stacking complex"],["GO%3A0005801","cis-Golgi network"],["InterPro%3AIPR043937","Golgin subfamily A , C-terminal binding motif"],["PANTHER%3APTHR14759","STOP PROTEIN"],["PANTHER%3APTHR13048","TRAFFICKING PROTEIN PARTICLE COMPLEX SUBUNIT 3"]]},{"id":"GO:0030131","l":"clathrin adaptor complex","na":2,"nb":8,"a":[["other/ap_1_adaptor_complex.html","AP-1 adaptor complex"],["other/ap_2_adaptor_complex.html","AP-2 adaptor complex"]],"b":[["GO%3A0030121","AP-1 adaptor complex"],["GO%3A0030122","AP-2 adaptor complex"],["GO%3A0030131","clathrin adaptor complex"],["InterPro%3AIPR018240","Clathrin adaptor, mu subunit, conserved site"],["InterPro%3AIPR015151","Beta-adaptin appendage, C-terminal subdomain"],["InterPro%3AIPR003164","Clathrin adaptor, alpha-adaptin, appendage, C-terminal subdomain"]]},{"id":"GO:0031931","l":"TORC1 complex","na":2,"nb":8,"a":[["other/torc1_complex.html","TORC1 complex"],["other/torc2_complex.html","TORC2 complex"]],"b":[["ComplexPortal%3ACPX-4473","mTORC1 complex"],["ComplexPortal%3ACPX-503","mTORC1 complex"],["ComplexPortal%3ACPX-2265","TORC1 complex"],["ComplexPortal%3ACPX-26512","TORC1 serine/threonine protein kinase complex"],["ComplexPortal%3ACPX-1715","TORC1 serine/threonine-protein kinase complex, TOR1 variant"],["ComplexPortal%3ACPX-1716","TORC1 serine/threonine-protein kinase complex, TOR2 variant"]]},{"id":"GO:0033176","l":"proton-transporting V-type ATPase complex","na":2,"nb":8,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["other/rave_complex.html","RAVE complex"]],"b":[["ComplexPortal%3ACPX-2470","Vacuolar proton translocating ATPase complex, ATP6V0A1 variant"],["ComplexPortal%3ACPX-6904","Vacuolar proton translocating ATPase complex, ATP6V0A2 variant"],["ComplexPortal%3ACPX-6905","Vacuolar proton translocating ATPase complex, ATP6V0A3 variant"],["ComplexPortal%3ACPX-6912","Vacuolar proton translocating ATPase complex, ATP6V0A4 variant"],["ComplexPortal%3ACPX-1192","Vacuolar proton translocating ATPase complex, Golgi variant"],["GO%3A0033181","plasma membrane proton-transporting V-type ATPase complex"]]},{"id":"GO:1903561","l":"extracellular vesicle","na":2,"nb":8,"a":[["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"],["other/bacterial_outer_membrane_vesicle.html","bacterial outer membrane vesicle"]],"b":[["GO%3A0097189","apoptotic body"],["GO%3A0097691","bacterial extracellular vesicle"],["GO%3A0061701","bacterial outer membrane vesicle"],["GO%3A0160014","exopher"],["GO%3A0070062","extracellular exosome"],["GO%3A1903561","extracellular vesicle"]]},{"id":"GO:0005687","l":"U4 snRNP","na":2,"nb":7,"a":[["ribonucleoprotein/u4_snrnp.html","U4 snRNP"],["ribonucleoprotein/u4_u6_snrnp.html","U4/U6 snRNP"]],"b":[["ComplexPortal%3ACPX-43","Sm complex"],["ComplexPortal%3ACPX-6033","Sm complex"],["ComplexPortal%3ACPX-26417","U4 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-31","U4 small nuclear ribonucleoprotein complex"],["GO%3A0005687","U4 snRNP"],["PANTHER%3APTHR13904","PRE-MRNA SPLICING FACTOR PRP31"]]},{"id":"GO:0009276","l":"Gram-negative-bacterium-type cell wall","na":2,"nb":7,"a":[["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"]],"b":[["GO%3A0009276","Gram-negative-bacterium-type cell wall"],["NCBIfam%3ATIGR02208","lauroyl-Kdo(2)-lipid IV(A) myristoyltransferase"],["NCBIfam%3ATIGR02314","methionine ABC transporter ATP-binding protein MetN"],["NCBIfam%3ATIGR01937","NADH:ubiquinone reductase (Na(+)-transporting) subunit B"],["NCBIfam%3ATIGR02162","pentaheme c-type cytochrome TorC"],["NCBIfam%3ATIGR01709","type II secretion system protein GspL"]]},{"id":"GO:0030479","l":"actin cortical patch","na":2,"nb":7,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"],["other/cell_cortex.html","cell cortex"]],"b":[["ComplexPortal%3ACPX-3541","AIM21-TDA2 actin assembly regulator complex"],["ComplexPortal%3ACPX-1500","Myosin class I complex, MYO3 variant"],["ComplexPortal%3ACPX-1470","Myosin class I complex, MYO5 variant"],["ComplexPortal%3ACPX-1335","RVS161-RVS167 amphiphysin complex"],["GO%3A0030479","actin cortical patch"],["PANTHER%3APTHR47789","LAS SEVENTEEN-BINDING PROTEIN 5"]]},{"id":"GO:0030905","l":"retromer, tubulation complex","na":2,"nb":7,"a":[["other/retromer_complex.html","retromer complex"],["other/retromer_tubulation_complex.html","retromer, tubulation complex"]],"b":[["ComplexPortal%3ACPX-8837","SNX1-SNX32 sorting nexin complex"],["ComplexPortal%3ACPX-8823","SNX1-SNX5 sorting nexin complex"],["ComplexPortal%3ACPX-8835","SNX1-SNX6 sorting nexin complex"],["ComplexPortal%3ACPX-8840","SNX2-SNX32 sorting nexin complex"],["ComplexPortal%3ACPX-8838","SNX2-SNX5 sorting nexin complex"],["ComplexPortal%3ACPX-8839","SNX2-SNX6 sorting nexin complex"]]},{"id":"GO:0033179","l":"proton-transporting V-type ATPase, V0 domain","na":2,"nb":7,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_v0_domain.html","vacuolar proton-transporting V-type ATPase, V0 domain"],["other/rave_complex.html","RAVE complex"]],"b":[["GO%3A0000222","plasma membrane proton-transporting V-type ATPase, V0 domain"],["GO%3A0033179","proton-transporting V-type ATPase, V0 domain"],["GO%3A0000220","vacuolar proton-transporting V-type ATPase, V0 domain"],["NCBIfam%3ATIGR02923","ATP synthase A1 subunit C"],["NCBIfam%3ANF013647","V-type ATPase 116kDa subunit family protein"],["Pfam%3APF05493","ATP synthase subunit H"]]},{"id":"GO:0071004","l":"U2-type prespliceosome","na":2,"nb":7,"a":[["ribonucleoprotein/u2_type_precatalytic_spliceosome.html","U2-type precatalytic spliceosome"],["ribonucleoprotein/u2_type_prespliceosome.html","U2-type prespliceosome"]],"b":[["ComplexPortal%3ACPX-1648","SF3A complex"],["GO%3A0071004","U2-type prespliceosome"],["PANTHER%3APTHR11864","PRE-MRNA-PROCESSING PROTEIN PRP40"],["PANTHER%3APTHR12375","RNA-BINDING PROTEIN LUC7-RELATED"],["PANTHER%3APTHR15316","SPLICEOSOME ASSOCIATED PROTEIN 114/SWAP SPLICING FACTOR-RELATED"],["PANTHER%3APTHR23205","SPLICING FACTOR 3A SUBUNIT 2"]]},{"id":"NCBITaxon:555778","l":"","na":2,"nb":7,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["Pfam%3APF08936","Carboxysome Shell Carbonic Anhydrase, C-terminal"],["Pfam%3APF20686","Carboxysome Shell Carbonic Anhydrase, catalytic domain"],["Pfam%3APF20687","Carboxysome Shell Carbonic Anhydrase, N-terminal"],["Pfam%3APF12288","Carboxysome shell peptide mid-region"],["Pfam%3APF10070","Probable inorganic carbon transporter subunit DabA"],["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"GO:0005619","l":"ascospore wall","na":6,"nb":2,"a":[["spore/ascospore_wall.html","ascospore wall"],["spore/chitosan_layer_of_spore_wall.html","chitosan layer of spore wall"],["spore/dityrosine_layer_of_spore_wall.html","dityrosine layer of spore wall"],["spore/inner_layer_of_spore_wall.html","inner layer of spore wall"],["spore/isp3_layer_of_spore_wall.html","Isp3 layer of spore wall"],["spore/spore_wall.html","spore wall"]],"b":[["ComplexPortal%3ACPX-1675","Septin complex"],["GO%3A0005619","ascospore wall"]]},{"id":"GO:0005691","l":"U6atac snRNP","na":6,"nb":2,"a":[["ribonucleoprotein/u12_type_catalytic_step_1_spliceosome.html","U12-type catalytic step 1 spliceosome"],["ribonucleoprotein/u12_type_catalytic_step_2_spliceosome.html","U12-type catalytic step 2 spliceosome"],["ribonucleoprotein/u12_type_post_mrna_release_spliceosomal_complex.html","U12-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u12_type_post_spliceosomal_complex.html","U12-type post-spliceosomal complex"],["ribonucleoprotein/u4atac_u6atac_snrnp.html","U4atac/U6atac snRNP"],["ribonucleoprotein/u6atac_snrnp.html","U6atac snRNP"]],"b":[["ComplexPortal%3ACPX-26499","U6atac small nuclear ribonucleoprotein complex"],["GO%3A0005691","U6atac snRNP"]]},{"id":"GO:0009521","l":"photosystem","na":2,"nb":6,"a":[["energy_complex/photosystem_i.html","photosystem I"],["energy_complex/photosystem_ii.html","photosystem II"]],"b":[["GO%3A0009521","photosystem"],["GO%3A0009522","photosystem I"],["GO%3A0009523","photosystem II"],["NCBIfam%3ANF012637","Photosystem II protein"],["Pfam%3APF00421","Photosystem II protein"],["InterPro%3AIPR036001","Photosystem antenna protein-like superfamily"]]},{"id":"GO:0009707","l":"chloroplast outer membrane","na":6,"nb":2,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_intermembrane_space.html","chloroplast intermembrane space"],["membrane_organelle/chloroplast_membrane.html","chloroplast membrane"],["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"],["other/toc_complex.html","Toc complex"]],"b":[["GO%3A0009707","chloroplast outer membrane"],["PANTHER%3APTHR47283","ENT-KAURENE OXIDASE, CHLOROPLASTIC"]]},{"id":"GO:0030140","l":"trans-Golgi network transport vesicle","na":2,"nb":6,"a":[["membrane_organelle/trans_golgi_network_transport_vesicle_membrane.html","trans-Golgi network transport vesicle membrane"],["other/clathrin_coat_of_trans_golgi_network_vesicle.html","clathrin coat of trans-Golgi network vesicle"]],"b":[["GO%3A0030140","trans-Golgi network transport vesicle"],["PANTHER%3APTHR16156","AFTIPHILIN A-RELATED"],["PANTHER%3APTHR15463","AP1 GAMMA SUBUNIT BINDING PROTEIN 1"],["PANTHER%3APTHR31975","BUD SITE SELECTION PROTEIN 7-RELATED"],["PANTHER%3APTHR47351","CHITIN BIOSYNTHESIS PROTEIN CHS5"],["PANTHER%3APTHR16528","GOLGI-ASSOCIATED PDZ AND COILED-COIL MOTIF-CONTAINING"]]},{"id":"GO:0031932","l":"TORC2 complex","na":2,"nb":6,"a":[["other/torc1_complex.html","TORC1 complex"],["other/torc2_complex.html","TORC2 complex"]],"b":[["ComplexPortal%3ACPX-4402","mTORC2 complex"],["ComplexPortal%3ACPX-4472","mTORC2 complex"],["ComplexPortal%3ACPX-1717","TORC2 complex"],["ComplexPortal%3ACPX-2269","TORC2 complex"],["ComplexPortal%3ACPX-26513","TORC2 serine/threonine protein kinase complex"],["GO%3A0031932","TORC2 complex"]]},{"id":"GO:0032580","l":"Golgi cisterna membrane","na":2,"nb":6,"a":[["membrane_organelle/golgi_cisterna.html","Golgi cisterna"],["membrane_organelle/golgi_cisterna_membrane.html","Golgi cisterna membrane"]],"b":[["GO%3A1990674","Golgi cis cisterna membrane"],["GO%3A0032580","Golgi cisterna membrane"],["GO%3A1990675","Golgi medial cisterna membrane"],["GO%3A1990676","Golgi trans cisterna membrane"],["NCBIfam%3ANF017491","Chondroitin N-acetylgalactosaminyltransferase"],["Pfam%3APF05679","Chondroitin N-acetylgalactosaminyltransferase"]]},{"id":"GO:0033565","l":"ESCRT-0 complex","na":2,"nb":6,"a":[["other/escrt_0_complex.html","ESCRT-0 complex"],["other/escrt_complex.html","ESCRT complex"]],"b":[["ComplexPortal%3ACPX-1622","ESCRT-0 complex"],["ComplexPortal%3ACPX-2452","ESCRT-0 complex"],["ComplexPortal%3ACPX-26631","ESCRT-0 complex"],["ComplexPortal%3ACPX-2825","ESCRT-0 complex, STAM variant"],["ComplexPortal%3ACPX-7143","ESCRT-0 complex, STAM2 variant"],["GO%3A0033565","ESCRT-0 complex"]]},{"id":"GO:0045334","l":"clathrin-coated endocytic vesicle","na":6,"nb":2,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle.html","clathrin-coated endocytic vesicle"],["membrane_organelle/clathrin_coated_endocytic_vesicle_lumen.html","clathrin-coated endocytic vesicle lumen"],["membrane_organelle/clathrin_coated_endocytic_vesicle_membrane.html","clathrin-coated endocytic vesicle membrane"],["membrane_organelle/endocytic_vesicle.html","endocytic vesicle"],["other/clathrin_coat_of_endocytic_vesicle.html","clathrin coat of endocytic vesicle"],["other/clathrin_coated_pit.html","clathrin-coated pit"]],"b":[["GO%3A0045334","clathrin-coated endocytic vesicle"],["GO%3A0045336","clathrin-coated phagocytic vesicle"]]},{"id":"GO:0071006","l":"U2-type catalytic step 1 spliceosome","na":2,"nb":6,"a":[["ribonucleoprotein/u2_type_catalytic_step_1_spliceosome.html","U2-type catalytic step 1 spliceosome"],["ribonucleoprotein/u2_type_catalytic_step_2_spliceosome.html","U2-type catalytic step 2 spliceosome"]],"b":[["ComplexPortal%3ACPX-26463","Major Spliceosomal C complex"],["ComplexPortal%3ACPX-26458","Major Spliceosomal Post-B-act complex"],["ComplexPortal%3ACPX-26441","Major Spliceosomal Pre-B-act complex"],["ComplexPortal%3ACPX-26465","Major Spliceosomal Pre-C*-I complex"],["ComplexPortal%3ACPX-26467","Major Spliceosomal Pre-C*-II complex"],["GO%3A0071006","U2-type catalytic step 1 spliceosome"]]},{"id":"GO:1990071","l":"TRAPPII protein complex","na":2,"nb":6,"a":[["other/trappi_protein_complex.html","TRAPPI protein complex"],["other/trappii_protein_complex.html","TRAPPII protein complex"]],"b":[["ComplexPortal%3ACPX-1939","TRAPP II complex"],["ComplexPortal%3ACPX-4764","TRAPP II complex"],["ComplexPortal%3ACPX-4749","TRAPP II complex, TRAPPC2 variant"],["ComplexPortal%3ACPX-6902","TRAPP II complex, TRAPPC2B variant"],["ComplexPortal%3ACPX-2271","TRAPPII complex"],["GO%3A1990071","TRAPPII protein complex"]]},{"id":"NCBITaxon:194439","l":"Chlorobaculum tepidum TLS","na":2,"nb":6,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["membrane_organelle/chlorosome.html","chlorosome"]],"b":[["Pfam%3APF02327","Bacteriochlorophyll A protein"],["Pfam%3APF27499","CsmB chlorosome envelope protein"],["Pfam%3APF28537","Probable trigger factor, FKBP-like domain"],["Pfam%3APF02043","Bacteriochlorophyll C binding protein"],["Pfam%3APF11098","Chlorosome envelope protein C"],["Pfam%3APF10643","Photosystem P840 reaction-centre cytochrome c-551"]]},{"id":"GO:0000221","l":"vacuolar proton-transporting V-type ATPase, V1 domain","na":2,"nb":5,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v1_domain.html","vacuolar proton-transporting V-type ATPase, V1 domain"]],"b":[["GO%3A0046612","lysosomal proton-transporting V-type ATPase, V1 domain"],["GO%3A0000221","vacuolar proton-transporting V-type ATPase, V1 domain"],["InterPro%3AIPR011987","ATPase, V1 complex, subunit H, C-terminal"],["Pfam%3APF11698","V-ATPase subunit H"],["Pfam%3APF03224","V-ATPase subunit H"]]},{"id":"GO:0005640","l":"nuclear outer membrane","na":5,"nb":2,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nuclear_envelope_lumen.html","nuclear envelope lumen"],["membrane_organelle/nuclear_inner_membrane.html","nuclear inner membrane"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"],["membrane_organelle/vacuolar_membrane.html","vacuolar membrane"]],"b":[["ComplexPortal%3ACPX-1381","NVJ1-VAC8 nucleus-vacuole junction complex"],["GO%3A0005640","nuclear outer membrane"]]},{"id":"GO:0009426","l":"bacterial-type flagellum basal body, distal rod","na":5,"nb":2,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"],["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"]],"b":[["GO%3A0009426","bacterial-type flagellum basal body, distal rod"],["NCBIfam%3ATIGR02488","flagellar basal-body rod protein FlgG"]]},{"id":"GO:0030669","l":"clathrin-coated endocytic vesicle membrane","na":5,"nb":2,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle.html","clathrin-coated endocytic vesicle"],["membrane_organelle/clathrin_coated_endocytic_vesicle_lumen.html","clathrin-coated endocytic vesicle lumen"],["membrane_organelle/clathrin_coated_endocytic_vesicle_membrane.html","clathrin-coated endocytic vesicle membrane"],["membrane_organelle/endocytic_vesicle_membrane.html","endocytic vesicle membrane"],["other/clathrin_coat_of_endocytic_vesicle.html","clathrin coat of endocytic vesicle"]],"b":[["GO%3A0030669","clathrin-coated endocytic vesicle membrane"],["GO%3A0030671","clathrin-coated phagocytic vesicle membrane"]]},{"id":"GO:0031207","l":"Sec62/Sec63 complex","na":2,"nb":5,"a":[["other/endoplasmic_reticulum_sec_complex.html","endoplasmic reticulum Sec complex"],["other/sec62_sec63_complex.html","Sec62/Sec63 complex"]],"b":[["ComplexPortal%3ACPX-26617","SEC62-SEC63 complex"],["ComplexPortal%3ACPX-26618","SEC62-SEC63 complex"],["ComplexPortal%3ACPX-3056","SEC62-SEC63 complex"],["GO%3A0031207","Sec62/Sec63 complex"],["Pfam%3APF09802","Preprotein translocase subunit Sec66"]]},{"id":"GO:0033180","l":"proton-transporting V-type ATPase, V1 domain","na":2,"nb":5,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_v1_domain.html","vacuolar proton-transporting V-type ATPase, V1 domain"],["other/rave_complex.html","RAVE complex"]],"b":[["GO%3A0000223","plasma membrane proton-transporting V-type ATPase, V1 domain"],["GO%3A0033180","proton-transporting V-type ATPase, V1 domain"],["GO%3A0000221","vacuolar proton-transporting V-type ATPase, V1 domain"],["Pfam%3APF03223","V-ATPase subunit C"],["InterPro%3AIPR036132","Vacuolar ATP synthase subunit C superfamily"]]},{"id":"GO:0042717","l":"plasma membrane-derived chromatophore membrane","na":5,"nb":2,"a":[["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/rc_lh1_pufx_core_complex.html","RC-LH1-PufX core complex"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"],["membrane_organelle/plasma_membrane_derived_chromatophore_membrane.html","plasma membrane-derived chromatophore membrane"]],"b":[["GO%3A0042717","plasma membrane-derived chromatophore membrane"],["GO%3A0031676","plasma membrane-derived thylakoid membrane"]]},{"id":"GO:0043593","l":"endospore coat","na":5,"nb":2,"a":[["spore/endospore_coat.html","endospore coat"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"],["spore/exosporium.html","exosporium"],["spore/outer_endospore_membrane.html","outer endospore membrane"],["spore/spore_wall.html","spore wall"]],"b":[["GO%3A0043593","endospore coat"],["NCBIfam%3ANF022572","CotD family spore coat protein"]]},{"id":"GO:0044222","l":"anammoxosome","na":2,"nb":5,"a":[["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"]],"b":[["GO%3A0044222","anammoxosome"],["NCBIfam%3ANF052343","hydrazine dehydrogenase"],["NCBIfam%3ANF052339","hydrazine synthase subunit alpha"],["NCBIfam%3ANF052340","hydrazine synthase subunit beta"],["NCBIfam%3ANF052341","hydrazine synthase subunit gamma"]]},{"id":"GO:0110146","l":"magnetosome membrane","na":2,"nb":5,"a":[["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]],"b":[["GO%3A0110146","magnetosome membrane"],["NCBIfam%3ANF040960","magnetosome formation protease MamE"],["NCBIfam%3ANF040959","magnetosome protein MamA"],["NCBIfam%3ANF040961","magnetosome protein MamO"],["NCBIfam%3ANF040966","magnetosome protein MamQ"]]},{"id":"GO:1990716","l":"axonemal central apparatus","na":5,"nb":2,"a":[["cytoskeleton/axonemal_central_apparatus.html","axonemal central apparatus"],["cytoskeleton/axonemal_central_bridge.html","axonemal central bridge"],["cytoskeleton/axonemal_central_pair.html","axonemal central pair"],["cytoskeleton/axonemal_central_pair_projection.html","axonemal central pair projection"],["cytoskeleton/axoneme.html","axoneme"]],"b":[["GO%3A1990716","axonemal central apparatus"],["PANTHER%3APTHR21963","PF6"]]},{"id":"UniProt:P27434","l":"","na":2,"nb":5,"a":[["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/elongasome.html","elongasome"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["NCBIfam%3ANF008109","cytoskeleton protein RodZ"],["InterPro%3AIPR025194","Cytoskeleton protein RodZ-like, C-terminal domain"],["Pfam%3APF13413","Helix-turn-helix domain"],["Pfam%3APF13464","RodZ C-terminal domain"]]},{"id":"GO:0030906","l":"retromer, cargo-selective complex","na":2,"nb":4,"a":[["other/retromer_cargo_selective_complex.html","retromer, cargo-selective complex"],["other/retromer_complex.html","retromer complex"]],"b":[["ComplexPortal%3ACPX-7842","Retromer complex, VPS26A variant"],["ComplexPortal%3ACPX-7843","Retromer complex, VPS26B variant"],["GO%3A0030906","retromer, cargo-selective complex"],["Pfam%3APF03635","Vacuolar protein sorting-associated protein 35"]]},{"id":"GO:0031970","l":"organelle envelope lumen","na":2,"nb":4,"a":[["membrane_organelle/mitochondrial_intermembrane_space.html","mitochondrial intermembrane space"],["membrane_organelle/nuclear_envelope_lumen.html","nuclear envelope lumen"]],"b":[["GO%3A0005758","mitochondrial intermembrane space"],["GO%3A0005641","nuclear envelope lumen"],["GO%3A0031970","organelle envelope lumen"],["GO%3A0009529","plastid intermembrane space"]]},{"id":"GO:0097590","l":"archaeal-type flagellum-dependent cell motility","na":2,"nb":4,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"]],"b":[["GO%3A0097590","archaeal-type flagellum-dependent cell motility"],["NCBIfam%3ANF052589","archaellum protein ArlH"],["NCBIfam%3ANF052590","archaellum stator protein ArlF"],["NCBIfam%3ANF052591","archaellum stator protein ArlG"]]},{"id":"GO:0120101","l":"bacterial-type flagellum stator complex","na":4,"nb":2,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"]],"b":[["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["GO%3A0120101","bacterial-type flagellum stator complex"]]},{"id":"NCBITaxon:32053","l":"Thermostichus vulcanus","na":2,"nb":4,"a":[["energy_complex/photosystem_ii.html","photosystem II"],["energy_complex/phycobilisome.html","phycobilisome"]],"b":[["Pfam%3APF14495","Cytochrome c-550 domain"],["Pfam%3APF00283","Cytochrome b559, alpha (gene psbE) and beta (gene psbF)subunits"],["Pfam%3APF00284","Lumenal portion of Cytochrome b559, alpha (gene psbE) subunit"],["PROSITE%3APS00537","Cytochrome b559 subunits heme-binding site signature"]]},{"id":"Pfam:PF00741","l":"Gas vesicle protein","na":2,"nb":4,"a":[["inclusion/gas_vesicle.html","gas vesicle"],["inclusion/gas_vesicle_shell.html","gas vesicle shell"]],"b":[["Pfam%3APF05121","Gas vesicle protein K"],["Pfam%3APF00741","Gas vesicle protein"],["PROSITE%3APS00234","Gas vesicles protein GVPa signature 1"],["PROSITE%3APS00669","Gas vesicles protein GVPa signature 2"]]},{"id":"GO:0000220","l":"vacuolar proton-transporting V-type ATPase, V0 domain","na":3,"nb":2,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v0_domain.html","vacuolar proton-transporting V-type ATPase, V0 domain"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v1_domain.html","vacuolar proton-transporting V-type ATPase, V1 domain"]],"b":[["GO%3A0046610","lysosomal proton-transporting V-type ATPase, V0 domain"],["GO%3A0000220","vacuolar proton-transporting V-type ATPase, V0 domain"]]},{"id":"GO:0005934","l":"cellular bud tip","na":2,"nb":3,"a":[["other/cellular_bud.html","cellular bud"],["other/cellular_bud_tip.html","cellular bud tip"]],"b":[["ComplexPortal%3ACPX-1684","CBK1-MOB2 kinase complex"],["ComplexPortal%3ACPX-36","Kelch-containing Formin Regulatory Complex"],["GO%3A0005934","cellular bud tip"]]},{"id":"GO:0020022","l":"acidocalcisome","na":3,"nb":2,"a":[["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"]],"b":[["GO%3A0020022","acidocalcisome"],["GO%3A0106117","acidocalcisome organization"]]},{"id":"GO:0022624","l":"proteasome accessory complex","na":2,"nb":3,"a":[["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"]],"b":[["ComplexPortal%3ACPX-8962","19S proteasome regulatory complex"],["ComplexPortal%3ACPX-8964","19S proteasome regulatory complex"],["GO%3A0022624","proteasome accessory complex"]]},{"id":"GO:0031905","l":"early endosome lumen","na":3,"nb":2,"a":[["membrane_organelle/early_endosome.html","early endosome"],["membrane_organelle/early_endosome_lumen.html","early endosome lumen"],["membrane_organelle/early_endosome_membrane.html","early endosome membrane"]],"b":[["ComplexPortal%3ACPX-1059","Sorf-1-Sorf-2 complex"],["GO%3A0031905","early endosome lumen"]]},{"id":"GO:0031906","l":"late endosome lumen","na":2,"nb":3,"a":[["membrane_organelle/late_endosome_lumen.html","late endosome lumen"],["membrane_organelle/late_endosome_membrane.html","late endosome membrane"]],"b":[["ComplexPortal%3ACPX-1059","Sorf-1-Sorf-2 complex"],["GO%3A0031906","late endosome lumen"],["GO%3A0097486","multivesicular body lumen"]]},{"id":"GO:0034693","l":"U11/U12 snRNP","na":3,"nb":2,"a":[["ribonucleoprotein/u11_u12_snrnp.html","U11/U12 snRNP"],["ribonucleoprotein/u12_type_precatalytic_spliceosome.html","U12-type precatalytic spliceosome"],["ribonucleoprotein/u12_type_prespliceosome.html","U12-type prespliceosome"]],"b":[["ComplexPortal%3ACPX-26489","U11/U12 di-small nuclear ribonucleoprotein complex"],["GO%3A0034693","U11/U12 snRNP"]]},{"id":"GO:0042646","l":"plastid nucleoid","na":2,"nb":3,"a":[["nucleoid/chloroplast_nucleoid.html","chloroplast nucleoid"],["nucleoid/plastid_nucleoid.html","plastid nucleoid"]],"b":[["GO%3A0042644","chloroplast nucleoid"],["GO%3A0042646","plastid nucleoid"],["GO%3A0042647","proplastid nucleoid"]]},{"id":"GO:0071001","l":"U4/U6 snRNP","na":2,"nb":3,"a":[["ribonucleoprotein/u4_u6_snrnp.html","U4/U6 snRNP"],["ribonucleoprotein/u4_u6_x_u5_tri_snrnp_complex.html","U4/U6 x U5 tri-snRNP complex"]],"b":[["ComplexPortal%3ACPX-26418","U4/U6 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-32","U4/U6 small nuclear ribonucleoprotein complex"],["GO%3A0071001","U4/U6 snRNP"]]},{"id":"GO:0071010","l":"prespliceosome","na":2,"nb":3,"a":[["ribonucleoprotein/u12_type_prespliceosome.html","U12-type prespliceosome"],["ribonucleoprotein/u2_type_prespliceosome.html","U2-type prespliceosome"]],"b":[["GO%3A0071010","prespliceosome"],["GO%3A0071015","U12-type prespliceosome"],["GO%3A0071004","U2-type prespliceosome"]]},{"id":"GO:0120107","l":"bacterial-type flagellum rotor complex","na":2,"nb":3,"a":[["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"]],"b":[["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0120107","bacterial-type flagellum rotor complex"]]},{"id":"NCBITaxon:174633","l":"","na":2,"nb":3,"a":[["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"]],"b":[["Pfam%3APF22142","Hydroxylamine oxidoreductase, C-terminal domain"],["Pfam%3APF18582","Hydrazine synthase alpha subunit middle domain"],["Pfam%3APF21783","YNCE-like beta-propeller"]]},{"id":"NCBITaxon:243231","l":"Geobacter sulfurreducens PCA","na":3,"nb":2,"a":[["appendage/omce_cytochrome_nanowire.html","OmcE cytochrome nanowire"],["appendage/omcs_cytochrome_nanowire.html","OmcS cytochrome nanowire"],["appendage/omcz_cytochrome_nanowire.html","OmcZ cytochrome nanowire"]],"b":[["Pfam%3APF01930","Domain of unknown function DUF83"],["Pfam%3APF13435","Cytochrome c554 and c-prime"]]},{"id":"NCBITaxon:342108","l":"","na":2,"nb":3,"a":[["cytoskeleton/mamk_filament.html","MamK filament"],["membrane_organelle/magnetosome.html","magnetosome"]],"b":[["Pfam%3APF08269","Cache domain"],["Pfam%3APF08849","BrxA"],["Pfam%3APF04011","LemA family"]]},{"id":"NCBITaxon:4922","l":"Komagataella pastoris","na":2,"nb":3,"a":[["membrane_organelle/cis_golgi_network.html","cis-Golgi network"],["membrane_organelle/cis_golgi_network_membrane.html","cis-Golgi network membrane"]],"b":[["Pfam%3APF26001","Peroxin 8 protein-like, N-terminal domain"],["Pfam%3APF27812","PEX8 central TPR-like domain"],["TED%3AAF-A0A1B2J8F2-F1-model_v4_TED02","TED novel fold AF-A0A1B2J8F2-F1-model_v4_TED02"]]},{"id":"GO:0000817","l":"COMA complex","na":2,"nb":2,"a":[["other/coma_complex.html","COMA complex"],["other/kinetochore.html","kinetochore"]],"b":[["ComplexPortal%3ACPX-1187","COMA complex"],["GO%3A0000817","COMA complex"]]},{"id":"GO:0005690","l":"U4atac snRNP","na":2,"nb":2,"a":[["ribonucleoprotein/u4atac_snrnp.html","U4atac snRNP"],["ribonucleoprotein/u4atac_u6atac_snrnp.html","U4atac/U6atac snRNP"]],"b":[["ComplexPortal%3ACPX-26495","U4atac small nuclear ribonucleoprotein complex"],["GO%3A0005690","U4atac snRNP"]]},{"id":"GO:0005931","l":"axonemal nexin link","na":2,"nb":2,"a":[["cytoskeleton/axonemal_nexin_link.html","axonemal nexin link"],["cytoskeleton/axoneme.html","axoneme"]],"b":[["ComplexPortal%3ACPX-8086","Nexin-dynein regulatory complex"],["GO%3A0005931","axonemal nexin link"]]},{"id":"GO:0033106","l":"cis-Golgi network membrane","na":2,"nb":2,"a":[["membrane_organelle/cis_golgi_network.html","cis-Golgi network"],["membrane_organelle/cis_golgi_network_membrane.html","cis-Golgi network membrane"]],"b":[["ComplexPortal%3ACPX-1125","BUG1-GRH1 complex"],["GO%3A0033106","cis-Golgi network membrane"]]},{"id":"GO:0071002","l":"U4atac/U6atac snRNP","na":2,"nb":2,"a":[["ribonucleoprotein/u4atac_u6atac_snrnp.html","U4atac/U6atac snRNP"],["ribonucleoprotein/u4atac_u6atac_x_u5_tri_snrnp_complex.html","U4atac/U6atac x U5 tri-snRNP complex"]],"b":[["ComplexPortal%3ACPX-26500","U4atac/U6atac small nuclear ribonucleoprotein complex"],["GO%3A0071002","U4atac/U6atac snRNP"]]},{"id":"GO:0071009","l":"U4atac/U6atac x U5 tri-snRNP complex","na":2,"nb":2,"a":[["ribonucleoprotein/u12_type_precatalytic_spliceosome.html","U12-type precatalytic spliceosome"],["ribonucleoprotein/u4atac_u6atac_x_u5_tri_snrnp_complex.html","U4atac/U6atac x U5 tri-snRNP complex"]],"b":[["ComplexPortal%3ACPX-26502","U4atac/U6atac.U5 small nuclear ribonucleoprotein complex"],["GO%3A0071009","U4atac/U6atac x U5 tri-snRNP complex"]]},{"id":"GO:0071016","l":"U12-type precatalytic spliceosome","na":2,"nb":2,"a":[["ribonucleoprotein/u12_type_catalytic_step_1_spliceosome.html","U12-type catalytic step 1 spliceosome"],["ribonucleoprotein/u12_type_precatalytic_spliceosome.html","U12-type precatalytic spliceosome"]],"b":[["ComplexPortal%3ACPX-26506","Minor Spliceosomal Pre-B complex"],["GO%3A0071016","U12-type precatalytic spliceosome"]]},{"id":"GO:0090382","l":"phagosome maturation","na":2,"nb":2,"a":[["membrane_organelle/phagocytic_vesicle.html","phagocytic vesicle"],["membrane_organelle/phagocytic_vesicle_membrane.html","phagocytic vesicle membrane"]],"b":[["GO%3A0090382","phagosome maturation"],["GO%3A0090386","phagosome maturation involved in apoptotic cell clearance"]]},{"id":"GO:0120102","l":"bacterial-type flagellum secretion apparatus","na":2,"nb":2,"a":[["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"],["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["ComplexPortal%3ACPX-5885","Flagellar export complex"],["GO%3A0120102","bacterial-type flagellum secretion apparatus"]]},{"id":"GO:1990621","l":"ESCRT IV complex","na":2,"nb":2,"a":[["other/escrt_complex.html","ESCRT complex"],["other/escrt_iv_complex.html","ESCRT IV complex"]],"b":[["ComplexPortal%3ACPX-2462","VPS4-VTA1 compex"],["GO%3A1990621","ESCRT IV complex"]]},{"id":"InterPro:IPR006300","l":"","na":2,"nb":2,"a":[["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"]],"b":[["Pfam%3APF00460","Flagella basal body rod protein"],["PROSITE%3APS00588","Flagella basal body rod proteins signature"]]},{"id":"InterPro:IPR012834","l":"","na":2,"nb":2,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"]],"b":[["Pfam%3APF06429","Flagellar basal body rod FlgEFG protein C-terminal"],["PROSITE%3APS00588","Flagella basal body rod proteins signature"]]},{"id":"InterPro:IPR028245","l":"","na":2,"nb":2,"a":[["cytoskeleton/eisosome_filament.html","eisosome filament"],["other/eisosome.html","eisosome"]],"b":[["PANTHER%3APTHR31962","SPHINGOLIPID LONG CHAIN BASE-RESPONSIVE PROTEIN PIL1"],["Pfam%3APF13805","Eisosome component PIL1"]]},{"id":"Pfam:PF01304","l":"Gas vesicles protein GVPc repeated domain","na":2,"nb":2,"a":[["inclusion/gas_vesicle.html","gas vesicle"],["inclusion/gas_vesicle_shell.html","gas vesicle shell"]],"b":[["PROSITE%3APS00235","Gas vesicles protein GVPc repeated domain signature"],["Pfam%3APF01304","Gas vesicles protein GVPc repeated domain"]]},{"id":"UniProt:P06179","l":"","na":2,"nb":2,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"]],"b":[["Pfam%3APF08884","Flagellin D3 domain"],["Pfam%3APF21504","Flagellin, barrel domain"]]},{"id":"GO:0005576","l":"extracellular region","na":1,"nb":472,"a":[["envelope/periplasmic_space.html","periplasmic space"]],"b":[["ComplexPortal%3ACPX-4984","Complement C1 complex, C1ra-C1sa variant"],["ComplexPortal%3ACPX-4985","Complement C1 complex, C1rb-C1sb variant"],["ComplexPortal%3ACPX-1920","Complement C1 complex"],["ComplexPortal%3ACPX-1919","Complement component C1q complex"],["ComplexPortal%3ACPX-4981","Complement component C1q complex"],["ComplexPortal%3ACPX-7321","Crotoxin complex, aCA1/2/4-bCA1-CBa variant"]]},{"id":"GO:0003735","l":"structural constituent of ribosome","na":1,"nb":466,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["GO%3A0003735","structural constituent of ribosome"],["NCBIfam%3ANF004951","30S ribosomal protein S1"],["NCBIfam%3ANF004954","30S ribosomal protein S1"],["NCBIfam%3ANF004955","30S ribosomal protein S1"],["NCBIfam%3ATIGR00717","30S ribosomal protein S1"],["NCBIfam%3ANF001861","30S ribosomal protein S10"]]},{"id":"GO:0005829","l":"cytosol","na":1,"nb":457,"a":[["other/chaperonin_containing_t_complex.html","chaperonin-containing T-complex"]],"b":[["ComplexPortal%3ACPX-9082","19S-20S-PA28-alphabeta hybrid proteasome complex"],["ComplexPortal%3ACPX-9085","19S-20S-PA28-gamma hybrid proteasome complex"],["ComplexPortal%3ACPX-26562","Anamorsin-NDOR1 complex"],["ComplexPortal%3ACPX-1848","ATG12-ATG5 complex"],["ComplexPortal%3ACPX-3864","ATG12-ATG5 complex"],["ComplexPortal%3ACPX-132","BAT3 complex"]]},{"id":"GO:0006412","l":"translation","na":1,"nb":455,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["GO%3A0002181","cytoplasmic translation"],["GO%3A0032543","mitochondrial translation"],["GO%3A0032544","plastid translation"],["GO%3A0140241","translation at synapse"],["GO%3A0006412","translation"],["Reactome%3AR-HSA-72766","Translation"]]},{"id":"GO:0071944","l":"cell periphery","na":1,"nb":440,"a":[["envelope/plasma_membrane.html","plasma membrane"]],"b":[["GO%3A0071944","cell periphery"],["PANTHER%3APTHR31468","1,3-BETA-GLUCANOSYLTRANSFERASE GAS1"],["PANTHER%3APTHR28145","12 KDA HEAT SHOCK PROTEIN"],["PANTHER%3APTHR42755","3-DEOXY-MANNO-OCTULOSONATE CYTIDYLYLTRANSFERASE"],["PANTHER%3APTHR46574","43 KDA RECEPTOR-ASSOCIATED PROTEIN OF THE SYNAPSE"],["PANTHER%3APTHR15182","A-KINASE ANCHOR PROTEIN 5-RELATED"]]},{"id":"GO:0055085","l":"transmembrane transport","na":1,"nb":439,"a":[["envelope/plasma_membrane.html","plasma membrane"]],"b":[["ComplexPortal%3ACPX-271","5-hydroxytryptamine-3A/B receptor complex"],["ComplexPortal%3ACPX-275","5-hydroxytryptamine-3A/B receptor complex"],["ComplexPortal%3ACPX-277","5-hydroxytryptamine-3A/B receptor complex"],["ComplexPortal%3ACPX-276","5-hydroxytryptamine-3A/C receptor complex"],["ComplexPortal%3ACPX-272","5-hydroxytryptamine-3A/D receptor complex"],["ComplexPortal%3ACPX-273","5-hydroxytryptamine-3A/E receptor complex"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":1,"nb":396,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29033","requires iron(2+)"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.11","glucoside 3-dehydrogenase (cytochrome c)"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.2.3","L-lactate dehydrogenase (cytochrome)"],["EC%3A1.1.2.4","D-lactate dehydrogenase (cytochrome)"]]},{"id":"GO:0016887","l":"ATP hydrolysis activity","na":1,"nb":375,"a":[["other/escrt_iv_complex.html","ESCRT IV complex"]],"b":[["RHEA%3A13065","ATP + H2O = ADP + phosphate + H(+)"],["ComplexPortal%3ACPX-2262","26S proteasome complex"],["ComplexPortal%3ACPX-5993","26S proteasome complex"],["ComplexPortal%3ACPX-4314","Arabinose ABC transporter complex"],["ComplexPortal%3ACPX-6307","ATP10A-CDC50A P4-ATPase complex"],["ComplexPortal%3ACPX-6308","ATP10B-CDC50A P4-ATPase complex"]]},{"id":"GO:1902494","l":"catalytic complex","na":1,"nb":320,"a":[["other/exodeoxyribonuclease_v_complex.html","exodeoxyribonuclease V complex"]],"b":[["ComplexPortal%3ACPX-2581","2-(3-amino-3-carboxypropyl)histidine synthase complex"],["ComplexPortal%3ACPX-7849","2-(3-amino-3-carboxypropyl)histidine synthase complex"],["ComplexPortal%3ACPX-7850","2-(3-amino-3-carboxypropyl)histidine synthase complex"],["ComplexPortal%3ACPX-2833","Camalexin biosynthetic metabolon complex"],["ComplexPortal%3ACPX-2345","Cholera toxin"],["ComplexPortal%3ACPX-944","DNA (cytosine-5)-methyltransferase 3A complex"]]},{"id":"GO:0016192","l":"vesicle-mediated transport","na":1,"nb":172,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"]],"b":[["ComplexPortal%3ACPX-2510","Adaptor complex AP-1"],["ComplexPortal%3ACPX-26626","Adaptor complex AP-2"],["ComplexPortal%3ACPX-2725","Adaptor complex AP-2"],["ComplexPortal%3ACPX-26627","Adaptor complex AP-3"],["ComplexPortal%3ACPX-2727","Adaptor complex AP-3"],["ComplexPortal%3ACPX-5149","AP-2 Adaptor complex, alpha1 variant"]]},{"id":"GO:0003887","l":"DNA-directed DNA polymerase activity","na":1,"nb":153,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"]],"b":[["EC%3A2.7.7.7","DNA-directed DNA polymerase"],["ComplexPortal%3ACPX-1556","CMG-Pol epsilon complex"],["ComplexPortal%3ACPX-2097","DNA polymerase delta complex"],["ComplexPortal%3ACPX-2098","DNA polymerase delta complex"],["ComplexPortal%3ACPX-2099","DNA polymerase delta complex"],["ComplexPortal%3ACPX-2100","DNA polymerase delta complex"]]},{"id":"GO:0006364","l":"rRNA processing","na":1,"nb":139,"a":[["other/nucleolus.html","nucleolus"]],"b":[["ComplexPortal%3ACPX-44","LSM2-8 complex"],["ComplexPortal%3ACPX-885","MTERF4-NSUN4 mitochondrial ribosomal assembly complex"],["ComplexPortal%3ACPX-1862","PeBoW complex"],["ComplexPortal%3ACPX-2846","PeBoW complex"],["GO%3A1901259","chloroplast rRNA processing"],["GO%3A0000450","cleavage of bicistronic rRNA transcript (SSU-rRNA, LSU-rRNA)"]]},{"id":"GO:0006396","l":"RNA processing","na":1,"nb":131,"a":[["ribonucleoprotein/exosome_rnase_complex.html","exosome (RNase complex)"]],"b":[["ComplexPortal%3ACPX-603","Cytoplasmic exosome complex, DIS3 variant"],["ComplexPortal%3ACPX-600","Cytoplasmic exosome complex, DIS3L-EXOSC10 variant"],["ComplexPortal%3ACPX-601","Cytoplasmic exosome complex, Dis3l-Exosc10 variant"],["ComplexPortal%3ACPX-592","Cytoplasmic exosome complex, DIS3L variant"],["ComplexPortal%3ACPX-596","Cytoplasmic exosome complex, Dis3l variant"],["ComplexPortal%3ACPX-593","Exosome complex, DIS3 variant"]]},{"id":"GO:0006457","l":"protein folding","na":1,"nb":129,"a":[["other/chaperonin_containing_t_complex.html","chaperonin-containing T-complex"]],"b":[["ComplexPortal%3ACPX-2156","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-2772","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-6030","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-2113","GroEL-GroES complex"],["ComplexPortal%3ACPX-1671","Prefoldin co-chaperone complex"],["ComplexPortal%3ACPX-2389","Prefoldin co-chaperone complex"]]},{"id":"GO:0003697","l":"single-stranded DNA binding","na":1,"nb":119,"a":[["other/single_stranded_dna_binding_protein_complex.html","single-stranded DNA-binding protein complex"]],"b":[["ComplexPortal%3ACPX-2363","BCDX2 complex"],["ComplexPortal%3ACPX-1005","Cascade complex"],["ComplexPortal%3ACPX-2671","CMG helicase complex"],["ComplexPortal%3ACPX-297","CMG helicase complex"],["ComplexPortal%3ACPX-4526","CMG helicase complex"],["ComplexPortal%3ACPX-4541","CMG helicase complex"]]},{"id":"GO:1990234","l":"transferase complex","na":1,"nb":109,"a":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]],"b":[["ComplexPortal%3ACPX-1848","ATG12-ATG5 complex"],["ComplexPortal%3ACPX-3864","ATG12-ATG5 complex"],["ComplexPortal%3ACPX-356","ATG5-ATG12 complex"],["ComplexPortal%3ACPX-357","Atg5-Atg12 complex"],["ComplexPortal%3ACPX-6231","Coagulation factor XIIIa complex"],["ComplexPortal%3ACPX-2634","Dha Kinase"]]},{"id":"GO:0005694","l":"chromosome","na":1,"nb":101,"a":[["other/nuclear_chromosome.html","nuclear chromosome"]],"b":[["ComplexPortal%3ACPX-26662","SPO11 DNA endo-reduplication complex"],["ComplexPortal%3ACPX-26657","SPO11 meiotic recombination initiation complex"],["ComplexPortal%3ACPX-26658","SPO11 meiotic recombination initiation complex"],["ComplexPortal%3ACPX-26659","SPO11 meiotic recombination initiation complex"],["ComplexPortal%3ACPX-26664","SPO11, meiotic recombination initiation complex"],["ComplexPortal%3ACPX-3388","Synaptonemal complex"]]},{"id":"GO:0015986","l":"proton motive force-driven ATP synthesis","na":1,"nb":96,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-25764","Mitochondrial proton translocating ATP synthase complex"],["ComplexPortal%3ACPX-3281","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-6151","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-8618","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-8619","Mitochondrial proton-transporting ATP synthase complex, testis-specific variant"],["GO%3A0015986","proton motive force-driven ATP synthesis"]]},{"id":"NCBITaxon:2","l":"Bacteria","na":89,"nb":1,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2","Bacteria orthologous groups (OrthoDB)"]]},{"id":"GO:0051301","l":"cell division","na":1,"nb":86,"a":[["division_machinery/divisome_complex.html","divisome complex"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["ComplexPortal%3ACPX-5782","Tol-Pal cell envelope complex"],["GO%3A0090510","anticlinal cell division"],["GO%3A0008356","asymmetric cell division"],["GO%3A0007114","cell budding"],["GO%3A0051301","cell division"]]},{"id":"GO:0030254","l":"protein secretion by the type III secretion system","na":1,"nb":85,"a":[["secretion_system/type_iii_protein_secretion_system_complex.html","type III protein secretion system complex"]],"b":[["ComplexPortal%3ACPX-5885","Flagellar export complex"],["GO%3A0030254","protein secretion by the type III secretion system"],["NCBIfam%3ANF041307","AvrBs1/Avra family type III secretion system effector"],["NCBIfam%3ATIGR02501","EscE/YscE/SsaE family type III secretion system needle protein co-chaperone"],["NCBIfam%3ANF005535","flagellar protein export ATPase FliI"],["NCBIfam%3ANF006290","flagellar protein export ATPase FliI"]]},{"id":"GO:0006401","l":"RNA catabolic process","na":1,"nb":76,"a":[["ribonucleoprotein/exosome_rnase_complex.html","exosome (RNase complex)"]],"b":[["ComplexPortal%3ACPX-603","Cytoplasmic exosome complex, DIS3 variant"],["ComplexPortal%3ACPX-600","Cytoplasmic exosome complex, DIS3L-EXOSC10 variant"],["ComplexPortal%3ACPX-601","Cytoplasmic exosome complex, Dis3l-Exosc10 variant"],["ComplexPortal%3ACPX-592","Cytoplasmic exosome complex, DIS3L variant"],["ComplexPortal%3ACPX-596","Cytoplasmic exosome complex, Dis3l variant"],["ComplexPortal%3ACPX-2596","Cytoplasmic exosome"]]},{"id":"GO:0048193","l":"Golgi vesicle transport","na":1,"nb":70,"a":[["other/cog_complex.html","COG complex"]],"b":[["GO%3A0034498","early endosome to Golgi transport"],["GO%3A0006888","endoplasmic reticulum to Golgi vesicle-mediated transport"],["GO%3A0048193","Golgi vesicle transport"],["GO%3A0006891","intra-Golgi vesicle-mediated transport"],["GO%3A0034499","late endosome to Golgi transport"],["GO%3A0006892","post-Golgi vesicle-mediated transport"]]},{"id":"CHEBI:15422","l":"ATP","na":1,"nb":68,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15422","requires ATP"],["ARO%3A3002628","aad(6)"],["ARO%3A3002601","aadA"],["ARO%3A3004692","aadA10"],["ARO%3A3002611","aadA11"],["ARO%3A3002612","aadA12"]]},{"id":"NCBITaxon:246196","l":"Mycolicibacterium smegmatis (strain ATCC 700084 / mc(2)155)","na":1,"nb":66,"a":[["secretion_system/esx_3_type_vii_secretion_system_membrane_complex.html","ESX-3 type VII secretion system membrane complex"]],"b":[["Pfam%3APF12806","Acetyl-CoA dehydrogenase C-terminal like"],["Pfam%3APF12897","Aspartate amino-transferase"],["Pfam%3APF05088","Bacterial NAD-glutamate dehydrogenase, catalytic domain"],["Pfam%3APF26519","Biotin synthase auxiliary protein family"],["Pfam%3APF21095","CarD, C-terminal domain"],["Pfam%3APF24607","Arabinofuranosyltransferase D, third carbohydrate binding module"]]},{"id":"GO:0006935","l":"chemotaxis","na":1,"nb":64,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009454","aerotaxis"]]},{"id":"GO:0031012","l":"extracellular matrix","na":1,"nb":64,"a":[["other/holdfast.html","holdfast"]],"b":[["ComplexPortal%3ACPX-461","155 kDa platelet multimerin complex"],["ComplexPortal%3ACPX-960","Collagen type II trimer"],["ComplexPortal%3ACPX-1749","Collagen type X trimer"],["ComplexPortal%3ACPX-2971","Collagen type X trimer"],["ComplexPortal%3ACPX-1750","Collagen type XI trimer variant 1"],["ComplexPortal%3ACPX-2975","Collagen type XI trimer variant 1"]]},{"id":"GO:1990204","l":"oxidoreductase complex","na":1,"nb":63,"a":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"]],"b":[["ComplexPortal%3ACPX-1020","BLI-3/DOXA-1/TSP-15 dual oxidase complex"],["ComplexPortal%3ACPX-6573","L-lactate dehydrogenase A complex"],["ComplexPortal%3ACPX-6599","L-lactate dehydrogenase B complex"],["ComplexPortal%3ACPX-6602","L-lactate dehydrogenase C complex"],["ComplexPortal%3ACPX-6598","L-lactate dehydrogenase complex, A1B3 variant"],["ComplexPortal%3ACPX-6594","L-lactate dehydrogenase complex, A2B2 variant"]]},{"id":"GO:0015629","l":"actin cytoskeleton","na":1,"nb":61,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"]],"b":[["ComplexPortal%3ACPX-2586","Actin-related protein 2/3 complex, ARPC1A-ACTR3-ARPC5 variant"],["ComplexPortal%3ACPX-2592","Actin-related protein 2/3 complex, ARPC1A-ACTR3-ARPC5L variant"],["ComplexPortal%3ACPX-2490","Actin-related protein 2/3 complex, ARPC1A-ACTR3B-ARPC5 variant"],["ComplexPortal%3ACPX-2579","Actin-related protein 2/3 complex, ARPC1B-ACTR3-ARPC5 variant"],["ComplexPortal%3ACPX-2663","Actin-related protein 2/3 complex, ARPC1B-ACTR3-ARPC5L variant"],["ComplexPortal%3ACPX-2583","Actin-related protein 2/3 complex, ARPC1B-ACTR3B-ARPC5 variant"]]},{"id":"InterPro:IPR001460","l":"Penicillin-binding protein, transpeptidase","na":1,"nb":61,"a":[["envelope/peptidoglycan_based_cell_wall.html","peptidoglycan-based cell wall"]],"b":[["GO%3A0009274","peptidoglycan-based cell wall"],["GO%3A0008800","beta-lactamase activity"],["GO%3A0008658","penicillin binding"],["GO%3A0008955","peptidoglycan glycosyltransferase activity"],["GO%3A0071972","peptidoglycan L,D-transpeptidase activity"],["GO%3A0009002","serine-type D-Ala-D-Ala carboxypeptidase activity"]]},{"id":"NCBITaxon:1111708","l":"Synechocystis sp. (strain ATCC 27184 / PCC 6803 / Kazusa)","na":1,"nb":61,"a":[["energy_complex/phycobilisome.html","phycobilisome"]],"b":[["Pfam%3APF07698","7TM receptor with intracellular HD hydrolase"],["Pfam%3APF07697","7TM-HD extracellular"],["Pfam%3APF11266","Long-chain fatty aldehyde decarbonylase"],["Pfam%3APF21571","Arginine dihydrolase ArgZ-like, C-terminal, first region"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF17886","HSP20-like domain found in ArsA"]]},{"id":"GO:0016197","l":"endosomal transport","na":1,"nb":60,"a":[["membrane_organelle/endosome.html","endosome"]],"b":[["ComplexPortal%3ACPX-479","Bloc-1 complex"],["ComplexPortal%3ACPX-11549","Huntingtin-HAP40 endosomal complex"],["ComplexPortal%3ACPX-26674","Huntingtin-HAP40 endosomal complex"],["ComplexPortal%3ACPX-1059","Sorf-1-Sorf-2 complex"],["ComplexPortal%3ACPX-2562","WASH complex"],["ComplexPortal%3ACPX-1173","WASH complex, variant WASH2P/WASHC2A"]]},{"id":"GO:1990904","l":"ribonucleoprotein complex","na":1,"nb":58,"a":[["ribonucleoprotein/signal_recognition_particle.html","signal recognition particle"]],"b":[["ComplexPortal%3ACPX-10181","Vault ribonucleoprotein complex"],["GO%3A0070993","cytosolic translation preinitiation complex"],["GO%3A0071204","histone pre-mRNA 3'end processing complex"],["GO%3A0033620","Mei2 nuclear dot complex"],["GO%3A0180053","mitochondrial translation preinitiation complex"],["GO%3A0043614","multi-eIF complex"]]},{"id":"GO:0008137","l":"NADH dehydrogenase (ubiquinone) activity","na":1,"nb":53,"a":[["energy_complex/respiratory_chain_complex_i.html","respiratory chain complex I"]],"b":[["EC%3A7.1.1.2","NADH:ubiquinone reductase (H(+)-translocating)"],["RHEA%3A29091","a ubiquinone + NADH + 5 H(+)(in) = a ubiquinol + NAD(+) + 4 H(+)(out)"],["ComplexPortal%3ACPX-266","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-577","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-8628","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-8638","Mitochondrial respiratory chain complex I, testis-specific variant"]]},{"id":"GO:0007005","l":"mitochondrion organization","na":1,"nb":50,"a":[["other/mitochondrial_prohibitin_complex.html","mitochondrial prohibitin complex"]],"b":[["ComplexPortal%3ACPX-3196","ERMES complex"],["ComplexPortal%3ACPX-1703","Prohibitin complex"],["ComplexPortal%3ACPX-4114","Prohibitin complex"],["ComplexPortal%3ACPX-5741","Prohibitin complex"],["ComplexPortal%3ACPX-5743","Prohibitin complex"],["GO%3A0008637","apoptotic mitochondrial changes"]]},{"id":"NCBITaxon:2759","l":"Eukaryota","na":49,"nb":1,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"],["cytoskeleton/conoid.html","conoid"],["cytoskeleton/cytoophidium.html","cytoophidium"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2759","Eukaryota orthologous groups (OrthoDB)"]]},{"id":"GO:0006897","l":"endocytosis","na":1,"nb":44,"a":[["membrane_organelle/endocytic_vesicle.html","endocytic vesicle"]],"b":[["ComplexPortal%3ACPX-5322","Endosomal SNARE complex TLG2-VTI1-TLG1-SNC1"],["ComplexPortal%3ACPX-5321","Endosomal SNARE complex TLG2-VTI1-TLG1-SNC2"],["ComplexPortal%3ACPX-4024","MTM6-MTM9 myotubularin lipid phosphatase complex"],["ComplexPortal%3ACPX-1500","Myosin class I complex, MYO3 variant"],["ComplexPortal%3ACPX-1470","Myosin class I complex, MYO5 variant"],["ComplexPortal%3ACPX-426","PAN1 actin cytoskeleton-regulatory complex"]]},{"id":"GO:0042254","l":"ribosome biogenesis","na":1,"nb":44,"a":[["other/nucleolus.html","nucleolus"]],"b":[["ComplexPortal%3ACPX-8940","Ribosome biogenesis complex"],["GO%3A0042254","ribosome biogenesis"],["NCBIfam%3ANF012679","50S ribosomal protein L10"],["NCBIfam%3ANF016308","Gar1/Naf1 RNA binding region"],["NCBIfam%3ANF016057","nucleolar RNA-binding Nop10p family protein"],["NCBIfam%3ATIGR01575","ribosomal protein S18-alanine N-acetyltransferase"]]},{"id":"NCBITaxon:243277","l":"Vibrio cholerae serotype O1 (strain ATCC 39315 / El Tor Inaba N16961)","na":1,"nb":44,"a":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"]],"b":[["IDPO%3A0000011","disorder to order"],["IDPO%3A0000014","order to disorder"],["Pfam%3APF16671","Actin cross-linking domain"],["Pfam%3APF00842","Alanine racemase, C-terminal domain"],["Pfam%3APF06228","Haem utilisation ChuX/HutX"],["Pfam%3APF19425","Csd3 second domain"]]},{"id":"GO:0045271","l":"respiratory chain complex I","na":1,"nb":43,"a":[["energy_complex/respiratory_chain_complex_i.html","respiratory chain complex I"]],"b":[["ComplexPortal%3ACPX-266","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-577","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-8628","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-8638","Mitochondrial respiratory chain complex I, testis-specific variant"],["ComplexPortal%3ACPX-243","Respiratory chain complex I"],["GO%3A0045271","respiratory chain complex I"]]},{"id":"GO:0004129","l":"cytochrome-c oxidase activity","na":1,"nb":41,"a":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]],"b":[["EC%3A7.1.1.9","cytochrome-c oxidase"],["METPO%3A1007086","oxidase negative"],["METPO%3A1007085","oxidase positive"],["RHEA%3A11436","4 Fe(II)-[cytochrome c] + O2 + 8 H(+)(in) = 4 Fe(III)-[cytochrome c] + 2 H2O + 4 H(+)(out)"],["ComplexPortal%3ACPX-1721","Mitochondrial respiratory chain complex IV, COX5A variant"],["ComplexPortal%3ACPX-1722","Mitochondrial respiratory chain complex IV, COX5B variant"]]},{"id":"GO:0000045","l":"autophagosome assembly","na":1,"nb":40,"a":[["other/phagophore_assembly_site.html","phagophore assembly site"]],"b":[["ComplexPortal%3ACPX-3863","atg-5-atg-12-atg-16.1-atg-16.2 complex"],["ComplexPortal%3ACPX-3865","atg-5-atg-12-atg-16.1 complex"],["ComplexPortal%3ACPX-3866","atg-5-atg-12-atg-16.2 complex"],["ComplexPortal%3ACPX-2745","ATG1 protein kinase complex"],["ComplexPortal%3ACPX-1676","ATG1/ULK1 protein kinase complex"],["ComplexPortal%3ACPX-1849","ATG12-ATG5-ATG16 complex"]]},{"id":"GO:0019866","l":"organelle inner membrane","na":1,"nb":40,"a":[["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"]],"b":[["GO%3A0005743","mitochondrial inner membrane"],["GO%3A0005637","nuclear inner membrane"],["GO%3A0019866","organelle inner membrane"],["GO%3A0009528","plastid inner membrane"],["InterPro%3AIPR002361","Antenna complex, alpha subunit conserved site"],["InterPro%3AIPR010974","Phosphotransferase system, N-acetylglucosamine-specific IIBC component"]]},{"id":"GO:0036503","l":"ERAD pathway","na":1,"nb":39,"a":[["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"]],"b":[["ComplexPortal%3ACPX-6597","bZIP transcription factor complex, ATF6-XBP1"],["ComplexPortal%3ACPX-2946","CDC48-NPL4-UFD1 AAA ATPase complex"],["ComplexPortal%3ACPX-1323","CDC48-RAD23-UFD2 complex"],["ComplexPortal%3ACPX-2948","CUE1-UBC7 ubiquitin-conjugating enzyme complex"],["ComplexPortal%3ACPX-3074","Doa10 E3 ubiquitin ligase complex"],["ComplexPortal%3ACPX-7121","ERLIN1-ERLIN2 complex"]]},{"id":"NCBITaxon:2157","l":"Archaea","na":39,"nb":1,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2157","Archaea orthologous groups (OrthoDB)"]]},{"id":"CHEBI:17855","l":"triglyceride","na":1,"nb":34,"a":[["inclusion/lipid_droplet.html","lipid droplet"]],"b":[["EC%3A2.3.1.158","phospholipid:diacylglycerol acyltransferase"],["EC%3A2.3.1.77","triacylglycerol--sterol O-acyltransferase"],["EC%3A3.1.1.3","triacylglycerol lipase"],["EC%3A3.1.1.34","lipoprotein lipase"],["EC%3A3.1.1.79","hormone-sensitive lipase"],["RHEA%3A77987","9-hydroxy-octadecanoate + a triacylglycerol = 9-(acyloxy)-octadecanoate + a 1,3-diacylglycerol"]]},{"id":"GO:0030312","l":"external encapsulating structure","na":1,"nb":34,"a":[["envelope/glycocalyx.html","glycocalyx"]],"b":[["GO%3A0009279","cell outer membrane"],["GO%3A0005618","cell wall"],["GO%3A0140143","collagenous component of basement membrane"],["GO%3A0140152","collagenous component of interstitial matrix"],["GO%3A0042600","egg chorion"],["GO%3A0030312","external encapsulating structure"]]},{"id":"GO:0008608","l":"attachment of spindle microtubules to kinetochore","na":1,"nb":33,"a":[["other/dash_complex.html","DASH complex"]],"b":[["ComplexPortal%3ACPX-1156","Central kinetochore CTF19 complex"],["ComplexPortal%3ACPX-1187","COMA complex"],["ComplexPortal%3ACPX-1186","Kinetochore MIS12 complex"],["ComplexPortal%3ACPX-5643","Kinetochore MIS12 complex"],["ComplexPortal%3ACPX-5701","Kinetochore MIS12 complex"],["ComplexPortal%3ACPX-807","Kinetochore Mis12 complex"]]},{"id":"GO:0032040","l":"small-subunit processome","na":1,"nb":33,"a":[["other/nucleolus.html","nucleolus"]],"b":[["ComplexPortal%3ACPX-1604","Small ribosomal subunit processome"],["ComplexPortal%3ACPX-2511","Small ribosomal subunit processome"],["GO%3A0032040","small-subunit processome"],["NCBIfam%3ANF016770","Fcf1"],["InterPro%3AIPR013934","U3 small nucleolar RNA-associated protein 13, C-terminal"],["InterPro%3AIPR007319","WDR36/Utp21, C-terminal domain"]]},{"id":"GO:0006635","l":"fatty acid beta-oxidation","na":1,"nb":32,"a":[["membrane_organelle/peroxisomal_matrix.html","peroxisomal matrix"]],"b":[["ComplexPortal%3ACPX-3964","fadBA fatty acid oxidation complex, aerobic conditions"],["ComplexPortal%3ACPX-3966","fadJI fatty acid oxidation complex, anaerobic conditions"],["ComplexPortal%3ACPX-6245","Mitochondrial trifunctional enzyme complex"],["GO%3A0006635","fatty acid beta-oxidation"],["GO%3A0033539","fatty acid beta-oxidation using acyl-CoA dehydrogenase"],["GO%3A0033540","fatty acid beta-oxidation using acyl-CoA oxidase"]]},{"id":"GO:0015630","l":"microtubule cytoskeleton","na":1,"nb":32,"a":[["cytoskeleton/microtubule.html","microtubule"]],"b":[["ComplexPortal%3ACPX-116","Chromosomal passenger complex, AURKB variant"],["ComplexPortal%3ACPX-20753","Chromosomal passenger complex, AURKC variant"],["ComplexPortal%3ACPX-119","Chromosomal passenger complex"],["ComplexPortal%3ACPX-3461","Chromosomal passenger complex"],["ComplexPortal%3ACPX-6365","Katanin complex, KATNA1-KATNB1 variant"],["ComplexPortal%3ACPX-6366","Katanin complex, KATNA1-KATNBL1 variant"]]},{"id":"GO:0050524","l":"coenzyme-B sulfoethylthiotransferase activity","na":1,"nb":32,"a":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]],"b":[["EC%3A2.8.4.1","coenzyme-B sulfoethylthiotransferase"],["RHEA%3A12532","coenzyme B + methyl-coenzyme M = methane + coenzyme M-coenzyme B heterodisulfide"],["GO%3A0050524","coenzyme-B sulfoethylthiotransferase activity"],["NCBIfam%3ATIGR03256","coenzyme-B sulfoethylthiotransferase subunit alpha"],["NCBIfam%3ATIGR03257","coenzyme-B sulfoethylthiotransferase subunit beta"],["NCBIfam%3ANF014313","coenzyme-B sulfoethylthiotransferase subunit gamma"]]},{"id":"UniProt:P07363","l":"","na":1,"nb":32,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["ComplexPortal%3ACPX-1077","Chemotaxis phosphorelay complex CheA-CheY"],["GO%3A0098561","methyl accepting chemotaxis protein complex"],["GO%3A0004673","protein histidine kinase activity"],["GO%3A0009454","aerotaxis"],["GO%3A0071977","bacterial-type flagellum-dependent swimming motility"],["GO%3A0051649","establishment of localization in cell"]]},{"id":"GO:0009360","l":"DNA polymerase III complex","na":1,"nb":31,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"]],"b":[["ComplexPortal%3ACPX-1924","DNA polymerase III holoenzyme complex"],["GO%3A0009360","DNA polymerase III complex"],["NCBIfam%3ANF014787","DNA polymerase III beta subunit, C-terminal domain"],["NCBIfam%3ANF012915","DNA polymerase III beta subunit, N-terminal domain"],["NCBIfam%3ANF017911","DNA polymerase III, delta subunit"],["NCBIfam%3ATIGR01405","DNA polymerase III subunit alpha"]]},{"id":"GO:0004298","l":"threonine-type endopeptidase activity","na":1,"nb":30,"a":[["other/proteasome_core_complex.html","proteasome core complex"]],"b":[["ComplexPortal%3ACPX-9082","19S-20S-PA28-alphabeta hybrid proteasome complex"],["ComplexPortal%3ACPX-9085","19S-20S-PA28-gamma hybrid proteasome complex"],["ComplexPortal%3ACPX-9021","20S spermatoproteasome complex"],["ComplexPortal%3ACPX-9004","20S thymoproteasome complex"],["ComplexPortal%3ACPX-2262","26S proteasome complex"],["ComplexPortal%3ACPX-5993","26S proteasome complex"]]},{"id":"GO:0006887","l":"exocytosis","na":1,"nb":30,"a":[["other/exocyst.html","exocyst"]],"b":[["GO%3A0160192","autophagosome-dependent secretion"],["GO%3A0045054","constitutive secretory pathway"],["GO%3A0098967","exocytic insertion of neurotransmitter receptor to postsynaptic membrane"],["GO%3A0006887","exocytosis"],["GO%3A1990182","exosomal secretion"],["GO%3A0045055","regulated exocytosis"]]},{"id":"GO:0090148","l":"membrane fission","na":1,"nb":30,"a":[["other/escrt_iii_complex.html","ESCRT III complex"]],"b":[["ComplexPortal%3ACPX-2452","ESCRT-0 complex"],["ComplexPortal%3ACPX-2825","ESCRT-0 complex, STAM variant"],["ComplexPortal%3ACPX-7143","ESCRT-0 complex, STAM2 variant"],["ComplexPortal%3ACPX-7162","ESCRT-I complex, VPS37A-MVB12A variant"],["ComplexPortal%3ACPX-7146","ESCRT-I complex, VPS37A-MVB12B variant"],["ComplexPortal%3ACPX-7181","ESCRT-I complex, VPS37A-UBAP1 variant"]]},{"id":"GO:0099513","l":"polymeric cytoskeletal fiber","na":1,"nb":29,"a":[["cytoskeleton/microtubule.html","microtubule"]],"b":[["GO%3A0005884","actin filament"],["GO%3A0005882","intermediate filament"],["GO%3A0005874","microtubule"],["GO%3A0001520","outer dense fiber"],["GO%3A0099513","polymeric cytoskeletal fiber"],["PANTHER%3APTHR12607","ADENOMATOUS POLYPOSIS COLI PROTEIN FAMILY"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":29,"a":[["spore/exosporium.html","exosporium"]],"b":[["Pfam%3APF09156","Anthrax toxin lethal factor, middle domain"],["Pfam%3APF08401","N-terminal domain of anti-restriction factor ArdC"],["Pfam%3APF07737","Anthrax toxin lethal factor, N- and C-terminal domain"],["Pfam%3APF27053","Bacillus anthracis plasmid pXO2 protein 26"],["Pfam%3APF13205","Bacterial Ig-like domain"],["Pfam%3APF17475","Clostridial binary toxin B/anthrax toxin PA domain 2"]]},{"id":"GO:1905370","l":"serine-type endopeptidase complex","na":1,"nb":28,"a":[["other/mitochondrial_inner_membrane_peptidase_complex.html","mitochondrial inner membrane peptidase complex"]],"b":[["ComplexPortal%3ACPX-6224","Active Protein C complex"],["ComplexPortal%3ACPX-6222","alpha-thrombin complex"],["ComplexPortal%3ACPX-6181","CL-LK-MASP1 lectin-protease complex"],["ComplexPortal%3ACPX-6240","CL-LK-MASP2 lectin-protease complex"],["ComplexPortal%3ACPX-6221","Coagulation factor Va-Xa complex"],["ComplexPortal%3ACPX-279","Coagulation factor VIIa - tissue factor complex"]]},{"id":"Pfam:PF00015","l":"Methyl-accepting chemotaxis protein (MCP) signalling domain","na":1,"nb":28,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["GO%3A0009454","aerotaxis"],["CDD%3Acd01068","globin_sensor"],["CDD%3Acd19411","MCP2201-like_sensor"],["CDD%3Acd11386","MCP_signal"],["InterPro%3AIPR007891","CHASE3"],["InterPro%3AIPR024478","Chemotaxis methyl-accepting receptor HlyB-like, 4HB MCP domain"]]},{"id":"GO:0015627","l":"type II protein secretion system complex","na":1,"nb":26,"a":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"]],"b":[["GO%3A0015627","type II protein secretion system complex"],["NCBIfam%3ATIGR02533","type II secretion system ATPase GspE"],["NCBIfam%3ATIGR02120","type II secretion system inner membrane protein GspF"],["NCBIfam%3ATIGR01710","type II secretion system major pseudopilin GspG"],["NCBIfam%3ATIGR01708","type II secretion system minor pseudopilin GspH"],["NCBIfam%3ATIGR01707","type II secretion system minor pseudopilin GspI"]]},{"id":"UniProt:P0AES6","l":"","na":1,"nb":26,"a":[["other/dna_gyrase_complex.html","DNA gyrase complex"]],"b":[["ComplexPortal%3ACPX-2177","GyrA-GyrB DNA Gyrase complex"],["GO%3A0009330","DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) complex"],["GO%3A0034335","DNA negative supercoiling activity"],["GO%3A0003918","DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) activity"],["NCBIfam%3ANF004189","DNA gyrase subunit B"],["NCBIfam%3ANF011501","DNA gyrase subunit B"]]},{"id":"GO:0005885","l":"Arp2/3 protein complex","na":1,"nb":25,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"]],"b":[["ComplexPortal%3ACPX-2586","Actin-related protein 2/3 complex, ARPC1A-ACTR3-ARPC5 variant"],["ComplexPortal%3ACPX-2592","Actin-related protein 2/3 complex, ARPC1A-ACTR3-ARPC5L variant"],["ComplexPortal%3ACPX-2490","Actin-related protein 2/3 complex, ARPC1A-ACTR3B-ARPC5 variant"],["ComplexPortal%3ACPX-2579","Actin-related protein 2/3 complex, ARPC1B-ACTR3-ARPC5 variant"],["ComplexPortal%3ACPX-2663","Actin-related protein 2/3 complex, ARPC1B-ACTR3-ARPC5L variant"],["ComplexPortal%3ACPX-2583","Actin-related protein 2/3 complex, ARPC1B-ACTR3B-ARPC5 variant"]]},{"id":"GO:0016163","l":"nitrogenase activity","na":1,"nb":25,"a":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"]],"b":[["EC%3A1.18.6.1","nitrogenase"],["EC%3A1.18.6.2","vanadium-dependent nitrogenase"],["RHEA%3A21448","N2 + 8 reduced [2Fe-2S]-[ferredoxin] + 16 ATP + 16 H2O = H2 + 8 oxidized [2Fe-2S]-[ferredoxin] + 2 NH4(+) + 16 ADP + 16 phosphate + 6 H(+)"],["GO%3A0016163","nitrogenase activity"],["NCBIfam%3ATIGR02931","Fe-only nitrogenase subunit beta"],["NCBIfam%3ATIGR02929","Fe-only nitrogenase subunit delta"]]},{"id":"GO:1902555","l":"endoribonuclease complex","na":1,"nb":25,"a":[["ribonucleoprotein/ribonuclease_mrp_complex.html","ribonuclease MRP complex"]],"b":[["ComplexPortal%3ACPX-4629","C3PO endoribonuclease complex"],["ComplexPortal%3ACPX-890","C3PO endoribonuclease complex"],["ComplexPortal%3ACPX-5785","MERS-CoV NSP15 complex"],["ComplexPortal%3ACPX-2240","Mitochondrial RNase Z complex"],["ComplexPortal%3ACPX-8565","PUCH ribonuclease complex, slfl-3 variant"],["ComplexPortal%3ACPX-8569","PUCH ribonuclease complex, slfl-4 variant"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":1,"nb":25,"a":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"]],"b":[["Pfam%3APF13372","Alginate export"],["Pfam%3APF25965","ALG44 beta-barrel domain"],["Pfam%3APF25964","ALG44, barrel-sandwich hybrid domain"],["Pfam%3APF16844","Dinitrogenase iron-molybdenum cofactor, N-terminal"],["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"]]},{"id":"GO:0006893","l":"Golgi to plasma membrane transport","na":1,"nb":24,"a":[["other/exomer_complex.html","exomer complex"]],"b":[["ComplexPortal%3ACPX-1719","Exomer complex"],["ComplexPortal%3ACPX-26504","Exomer complex"],["ComplexPortal%3ACPX-1365","Vesicular SNARE complex SSO1-SEC9-SNC1"],["ComplexPortal%3ACPX-5463","Vesicular SNARE complex SSO1-SEC9-SNC2"],["ComplexPortal%3ACPX-1369","Vesicular SNARE complex SSO2-SEC9-SNC1"],["ComplexPortal%3ACPX-5465","Vesicular SNARE complex SSO2-SEC9-SNC2"]]},{"id":"GO:0031968","l":"organelle outer membrane","na":1,"nb":24,"a":[["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"]],"b":[["GO%3A0009535","chloroplast thylakoid membrane"],["GO%3A0005741","mitochondrial outer membrane"],["GO%3A0005640","nuclear outer membrane"],["GO%3A0031968","organelle outer membrane"],["GO%3A0009527","plastid outer membrane"],["PANTHER%3APTHR37278","AUTOPHAGY-RELATED PROTEIN 33-RELATED"]]},{"id":"UniProt:P0AES4","l":"","na":1,"nb":24,"a":[["other/dna_gyrase_complex.html","DNA gyrase complex"]],"b":[["ComplexPortal%3ACPX-5906","CcdB-poisoned gyrase complex"],["ComplexPortal%3ACPX-2177","GyrA-GyrB DNA Gyrase complex"],["GO%3A0009330","DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) complex"],["GO%3A0008094","ATP-dependent activity, acting on DNA"],["GO%3A0034335","DNA negative supercoiling activity"],["GO%3A0003918","DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) activity"]]},{"id":"GO:0097729","l":"9+2 motile cilium","na":1,"nb":23,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["ComplexPortal%3ACPX-8161","Radial spoke complex, ciliiar variant"],["ComplexPortal%3ACPX-8163","Radial spoke complex, ciliiar variant"],["ComplexPortal%3ACPX-8162","Radial spoke complex, flagellar variant"],["ComplexPortal%3ACPX-8164","Radial spoke complex, flagellar variant"],["GO%3A0097729","9+2 motile cilium"],["GO%3A0097554","left anterior flagellum"]]},{"id":"GO:0000775","l":"chromosome, centromeric region","na":1,"nb":22,"a":[["other/cbf3_complex.html","CBF3 complex"]],"b":[["ComplexPortal%3ACPX-26413","CENP-A recruiting complex"],["ComplexPortal%3ACPX-3272","CENP-A recruiting complex"],["ComplexPortal%3ACPX-3273","CENP-A recruiting complex"],["GO%3A0000775","chromosome, centromeric region"],["GO%3A0000779","condensed chromosome, centromeric region"],["InterPro%3AIPR009361","Centromere/kinetochore protein zw10, N-terminal"]]},{"id":"GO:0006891","l":"intra-Golgi vesicle-mediated transport","na":1,"nb":22,"a":[["other/trappii_protein_complex.html","TRAPPII protein complex"]],"b":[["ComplexPortal%3ACPX-1939","TRAPP II complex"],["GO%3A0045057","cisternal progression"],["GO%3A0048219","inter-Golgi cisterna vesicle-mediated transport"],["GO%3A0006891","intra-Golgi vesicle-mediated transport"],["GO%3A0000301","retrograde transport, vesicle recycling within Golgi"],["InterPro%3AIPR012955","CASP, C-terminal"]]},{"id":"GO:0008121","l":"quinol-cytochrome-c reductase activity","na":1,"nb":22,"a":[["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"]],"b":[["EC%3A7.1.1.8","quinol--cytochrome-c reductase"],["RHEA%3A11484","a quinol + 2 Fe(III)-[cytochrome c](out) = a quinone + 2 Fe(II)-[cytochrome c](out) + 2 H(+)(out)"],["ComplexPortal%3ACPX-560","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-563","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-567","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-8730","Mitochondrial respiratory chain complex III"]]},{"id":"GO:0019953","l":"sexual reproduction","na":1,"nb":22,"a":[["membrane_organelle/micronucleus.html","micronucleus"]],"b":[["GO%3A0000747","conjugation with cellular fusion"],["GO%3A0000748","conjugation with mutual genetic exchange"],["GO%3A0019953","sexual reproduction"],["InterPro%3AIPR007689","A-alpha-Y mating type-dependent binding domain"],["PANTHER%3APTHR22655","ATP-DEPENDENT RNA HELICASE TDRD12-RELATED"],["PANTHER%3APTHR47193","CATION CHANNEL SPERM-ASSOCIATED PROTEIN 1"]]},{"id":"GO:0030286","l":"dynein complex","na":1,"nb":22,"a":[["cytoskeleton/axonemal_dynein_complex.html","axonemal dynein complex"]],"b":[["ComplexPortal%3ACPX-5699","Cytoplasmic dynein complex, variant 1"],["ComplexPortal%3ACPX-26357","Dynein-2 complex, light-chain variant 1"],["ComplexPortal%3ACPX-26360","Dynein-2 complex, light-chain variant 2"],["ComplexPortal%3ACPX-26361","Dynein-2 complex, light-chain variant 3"],["ComplexPortal%3ACPX-26362","Dynein-2 complex, light-chain variant 4"],["ComplexPortal%3ACPX-26363","Dynein-2 complex, light-chain variant 5"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":1,"nb":21,"a":[["membrane_organelle/trichocyst.html","trichocyst"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29108","requires calcium(2+)"],["EC%3A1.13.12.24","calcium-regulated photoprotein"],["EC%3A7.2.2.10","P-type Ca(2+) transporter"],["RHEA%3A72631","3 Li(+)(out) + Ca(2+)(in) = 3 Li(+)(in) + Ca(2+)(out)"],["RHEA%3A55884","[aequorin] + 3 Ca(2+) = [aequorin]--dioxetanone"],["RHEA%3A55888","[aequorin]--dioxetanone = excited state-[aequorin] + CO2"]]},{"id":"GO:0016682","l":"oxidoreductase activity, acting on diphenols and related substances as donors, oxygen as acceptor","na":1,"nb":21,"a":[["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]],"b":[["ComplexPortal%3ACPX-268","Cytochrome bd-I ubiquinol oxidase complex"],["ComplexPortal%3ACPX-269","Cytochrome bd-II ubiquinol oxidase complex"],["GO%3A0047561","3-hydroxyanthranilate oxidase activity"],["GO%3A0009916","alternative oxidase activity"],["GO%3A0004097","catechol oxidase activity"],["GO%3A0052716","hydroquinone:oxygen oxidoreductase activity"]]},{"id":"GO:0042729","l":"DASH complex","na":1,"nb":21,"a":[["other/dash_complex.html","DASH complex"]],"b":[["ComplexPortal%3ACPX-10081","DASH complex"],["ComplexPortal%3ACPX-1041","DASH complex"],["GO%3A0042729","DASH complex"],["PANTHER%3APTHR28200","DASH COMPLEX SUBUNIT ASK1"],["PANTHER%3APTHR28025","DASH COMPLEX SUBUNIT DAD1"],["PANTHER%3APTHR28036","DASH COMPLEX SUBUNIT DAD2"]]},{"id":"UniProt:P06710","l":"","na":1,"nb":21,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"]],"b":[["ComplexPortal%3ACPX-1926","DNA polymerase III clamp loader complex"],["GO%3A0043846","DNA polymerase III, clamp loader complex"],["GO%3A0009360","DNA polymerase III complex"],["GO%3A0044776","DNA polymerase III, core complex"],["GO%3A0003689","DNA clamp loader activity"],["GO%3A0030337","DNA polymerase processivity factor activity"]]},{"id":"GO:0008177","l":"succinate dehydrogenase (quinone) activity","na":1,"nb":20,"a":[["energy_complex/respiratory_chain_complex_ii_succinate_dehydrogenase.html","respiratory chain complex II (succinate dehydrogenase)"]],"b":[["EC%3A1.3.5.1","succinate dehydrogenase"],["RHEA%3A27834","a menaquinone + succinate = a menaquinol + fumarate"],["RHEA%3A40523","a quinone + succinate = fumarate + a quinol"],["RHEA%3A75711","a rhodoquinone + succinate = a rhodoquinol + fumarate"],["RHEA%3A13713","a ubiquinone + succinate = a ubiquinol + fumarate"],["ComplexPortal%3ACPX-561","Mitochondrial respiratory chain complex II"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":1,"nb":20,"a":[["envelope/s_layer.html","S-layer"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF27529","AMPT"],["Pfam%3APF24856","L-arabinose isomerase central domain"],["Pfam%3APF02610","L-arabinose isomerase N-terminal domain"],["Pfam%3APF11762","L-arabinose isomerase C-terminal domain"],["Pfam%3APF17727","CtsR C-terminal dimerization domain"]]},{"id":"GO:0000178","l":"exosome (RNase complex)","na":1,"nb":19,"a":[["ribonucleoprotein/exosome_rnase_complex.html","exosome (RNase complex)"]],"b":[["ComplexPortal%3ACPX-603","Cytoplasmic exosome complex, DIS3 variant"],["ComplexPortal%3ACPX-2596","Cytoplasmic exosome"],["ComplexPortal%3ACPX-593","Exosome complex, DIS3 variant"],["ComplexPortal%3ACPX-598","Exosome complex, Dis3 variant"],["ComplexPortal%3ACPX-2595","Nuclear exosome"],["ComplexPortal%3ACPX-599","Nuclear/nucleolar exosome complex, DIS3-RRP6 variant"]]},{"id":"GO:0030677","l":"ribonuclease P complex","na":1,"nb":19,"a":[["ribonucleoprotein/dimeric_ribonuclease_p_complex.html","dimeric ribonuclease P complex"]],"b":[["GO%3A0030680","dimeric ribonuclease P complex"],["GO%3A0030678","mitochondrial ribonuclease P complex"],["GO%3A0030681","multimeric ribonuclease P complex"],["GO%3A0030677","ribonuclease P complex"],["NCBIfam%3ANF046110","ribonuclease P protein component 1"],["NCBIfam%3ANF046108","ribonuclease P protein component 3"]]},{"id":"GO:0044232","l":"organelle membrane contact site","na":1,"nb":19,"a":[["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"]],"b":[["GO%3A0140284","endoplasmic reticulum-endosome membrane contact site"],["GO%3A0140268","endoplasmic reticulum-plasma membrane contact site"],["GO%3A0160258","endoplasmic reticulum-trans-Golgi network membrane contact site"],["GO%3A0098853","endoplasmic reticulum-vacuole membrane contact site"],["GO%3A0044233","mitochondria-associated endoplasmic reticulum membrane contact site"],["GO%3A0044284","mitochondrial crista junction"]]},{"id":"GO:0045277","l":"respiratory chain complex IV","na":1,"nb":19,"a":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]],"b":[["ComplexPortal%3ACPX-1721","Mitochondrial respiratory chain complex IV, COX5A variant"],["ComplexPortal%3ACPX-1722","Mitochondrial respiratory chain complex IV, COX5B variant"],["ComplexPortal%3ACPX-6123","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-8620","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-9641","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-8621","Mitochondrial respiratory chain complex IV, testis-specific variant"]]},{"id":"GO:0070069","l":"cytochrome complex","na":1,"nb":19,"a":[["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]],"b":[["ComplexPortal%3ACPX-268","Cytochrome bd-I ubiquinol oxidase complex"],["ComplexPortal%3ACPX-269","Cytochrome bd-II ubiquinol oxidase complex"],["GO%3A0009512","cytochrome b6f complex"],["GO%3A0070069","cytochrome complex"],["GO%3A0009319","cytochrome o ubiquinol oxidase complex"],["GO%3A0045275","respiratory chain complex III"]]},{"id":"GO:0099512","l":"supramolecular fiber","na":1,"nb":19,"a":[["cytoskeleton/cytoophidium.html","cytoophidium"]],"b":[["GO%3A0098647","collagen beaded filament"],["GO%3A0043292","contractile muscle fiber"],["GO%3A0097268","cytoophidium"],["GO%3A0071953","elastic fiber"],["GO%3A0061800","fibronectin fibril"],["GO%3A0061836","intranuclear rod"]]},{"id":"InterPro:IPR006317","l":"Ubiquinol-cytochrome c reductase, iron-sulphur subunit","na":1,"nb":19,"a":[["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"]],"b":[["GO%3A0008121","quinol-cytochrome-c reductase activity"],["NCBIfam%3ATIGR01416","ubiquinol-cytochrome c reductase iron-sulfur subunit"],["CDD%3Acd03470","Rieske_cytochrome_bc1"],["InterPro%3AIPR004192","Cytochrome b-c1 complex subunit Rieske, transmembrane domain"],["InterPro%3AIPR017941","Rieske [2Fe-2S] iron-sulphur domain"],["InterPro%3AIPR005805","Rieske iron-sulphur protein, C-terminal"]]},{"id":"NCBITaxon:330779","l":"Sulfolobus acidocaldarius (strain ATCC 33909 / DSM 639 / JCM 8929 / NBRC 15157 / NCIMB 11770)","na":1,"nb":19,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"]],"b":[["Pfam%3APF12846","AAA-like domain"],["Pfam%3APF27338","Cytochrome b558/566 subunit B"],["Pfam%3APF18822","CdvA-like coiled-coil domain"],["Pfam%3APF27303","Cell division protein CdvB, C-terminal HTH domain"],["Pfam%3APF27251","DNA import protein CedA1"],["Pfam%3APF18533","Domain of unknown function (DUF5622)"]]},{"id":"UniProt:P02942","l":"","na":1,"nb":19,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["GO%3A0098561","methyl accepting chemotaxis protein complex"],["GO%3A0009593","detection of chemical stimulus"],["GO%3A1902021","regulation of bacterial-type flagellum-dependent cell motility"],["NCBIfam%3ANF011615","methyl-accepting chemotaxis protein"],["CDD%3Acd06225","HAMP"],["CDD%3Acd19407","Tar_Tsr_sensor"]]},{"id":"UniProt:P07017","l":"","na":1,"nb":19,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["GO%3A0098561","methyl accepting chemotaxis protein complex"],["GO%3A0043424","protein histidine kinase binding"],["GO%3A0009593","detection of chemical stimulus"],["NCBIfam%3ANF011622","methyl-accepting chemotaxis protein II"],["CDD%3Acd06225","HAMP"],["CDD%3Acd19407","Tar_Tsr_sensor"]]},{"id":"UniProt:P60723","l":"Large ribosomal subunit protein uL4","na":1,"nb":19,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["GO%3A0022625","cytosolic large ribosomal subunit"],["GO%3A0015934","large ribosomal subunit"],["GO%3A0060698","endoribonuclease inhibitor activity"],["GO%3A0048027","mRNA 5'-UTR binding"],["GO%3A0001070","RNA-binding transcription regulator activity"]]},{"id":"CHEBI:16838","l":"polyphosphate","na":1,"nb":18,"a":[["membrane_organelle/acidocalcisome.html","acidocalcisome"]],"b":[["EC%3A2.7.1.63","polyphosphate--glucose phosphotransferase"],["EC%3A2.7.4.1","ATP-polyphosphate phosphotransferase"],["EC%3A2.7.4.17","3-phosphoglyceroyl-phosphate--polyphosphate phosphotransferase"],["EC%3A2.7.4.20","dolichyl-diphosphate--polyphosphate phosphotransferase"],["EC%3A2.7.4.33","AMP-polyphosphate phosphotransferase"],["EC%3A2.7.4.34","GDP-polyphosphate phosphotransferase"]]},{"id":"GO:0030257","l":"type III protein secretion system complex","na":1,"nb":18,"a":[["secretion_system/type_iii_protein_secretion_system_complex.html","type III protein secretion system complex"]],"b":[["ComplexPortal%3ACPX-5885","Flagellar export complex"],["GO%3A0030257","type III protein secretion system complex"],["NCBIfam%3ANF006290","flagellar protein export ATPase FliI"],["NCBIfam%3ATIGR03498","flagellar protein export ATPase FliI"],["NCBIfam%3ATIGR01026","FliI/YscN family ATPase"],["NCBIfam%3ATIGR02554","PrgH/EprH family type III secretion apparatus protein"]]},{"id":"GO:0031253","l":"cell projection membrane","na":1,"nb":18,"a":[["appendage/ciliary_membrane.html","ciliary membrane"]],"b":[["GO%3A0031526","brush border membrane"],["GO%3A0031253","cell projection membrane"],["GO%3A0060170","ciliary membrane"],["GO%3A0031527","filopodium membrane"],["GO%3A0031258","lamellipodium membrane"],["GO%3A0070686","macropinocytic cup membrane"]]},{"id":"GO:0045048","l":"protein insertion into ER membrane","na":1,"nb":18,"a":[["other/emc_complex.html","EMC complex"]],"b":[["ComplexPortal%3ACPX-6464","GET complex"],["ComplexPortal%3ACPX-956","GET complex"],["ComplexPortal%3ACPX-7020","PAT intramembrane chaperone complex"],["GO%3A0160063","multi-pass transmembrane protein insertion into ER membrane"],["GO%3A0045051","protein insertion into ER membrane by internal uncleaved signal-anchor sequence"],["GO%3A0045049","protein insertion into ER membrane by N-terminal cleaved signal sequence"]]},{"id":"GO:0140737","l":"encapsulin nanocompartment","na":1,"nb":18,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]],"b":[["GO%3A0140737","encapsulin nanocompartment"],["NCBIfam%3ATIGR04535","encapsulin-associated ferritin-like protein"],["NCBIfam%3ANF058680","encapsulin nanocompartment cargo ferric reductase EncD"],["NCBIfam%3ANF058678","encapsulin nanocompartment ferritin-like cargo protein EncB"],["NCBIfam%3ANF058679","encapsulin nanocompartment ferritin-likeEncB family encapsulin nanocompartment ferritin-like cargo protein cargo protein"],["NCBIfam%3ANF041155","family 1 encapsulin nanocompartment shell protein"]]},{"id":"GO:0160303","l":"protein secretion by the type IX secretion system","na":1,"nb":18,"a":[["secretion_system/type_ix_protein_secretion_system_complex.html","type IX protein secretion system complex"]],"b":[["GO%3A0160303","protein secretion by the type IX secretion system"],["NCBIfam%3ANF052230","PorE family type IX secretion system protein"],["NCBIfam%3ATIGR03519","PorP/SprF family type IX secretion system membrane protein"],["NCBIfam%3ANF052314","PorY family sensor histidine kinase"],["NCBIfam%3ATIGR04189","T9SS outer membrane translocon Sov/SprA"],["NCBIfam%3ANF052313","T9SS response regulator signal transducer PorX"]]},{"id":"InterPro:IPR014222","l":"Cytochrome c oxidase, subunit II","na":1,"nb":18,"a":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]],"b":[["GO%3A0098803","respiratory chain complex"],["GO%3A0004129","cytochrome-c oxidase activity"],["NCBIfam%3ATIGR02866","cytochrome c oxidase subunit II"],["InterPro%3AIPR001505","Copper centre Cu(A)"],["CDD%3Acd13912","CcO_II_C"],["CDD%3Acd04213","CuRO_CcO_Caa3_II"]]},{"id":"UniProt:P24073","l":"","na":1,"nb":18,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["EC%3A3.-.-.-","Hydrolases"],["GO%3A0009425","bacterial-type flagellum basal body"],["GO%3A0003774","cytoskeletal motor activity"],["GO%3A0044780","bacterial-type flagellum assembly"],["GO%3A0071978","bacterial-type flagellum-dependent swarming motility"],["GO%3A0016311","dephosphorylation"]]},{"id":"GO:0000407","l":"phagophore assembly site","na":1,"nb":17,"a":[["other/phagophore_assembly_site.html","phagophore assembly site"]],"b":[["ComplexPortal%3ACPX-1383","TRAPPIII protein complex"],["ComplexPortal%3ACPX-373","ULK1-ATG13-RB1CC1-ATG101 autophagy initiation complex"],["ComplexPortal%3ACPX-380","ULK1-ATG13-RB1CC1-ATG101 autophagy initiation complex"],["GO%3A0000407","phagophore assembly site"],["PANTHER%3APTHR13038","APG9 AUTOPHAGY 9"],["PANTHER%3APTHR13385","AUTOPHAGY PROTEIN 12"]]},{"id":"GO:0003689","l":"DNA clamp loader activity","na":1,"nb":17,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"]],"b":[["ComplexPortal%3ACPX-1926","DNA polymerase III clamp loader complex"],["ComplexPortal%3ACPX-472","DNA replication factor C complex"],["ComplexPortal%3ACPX-26445","DNA replication factor C complex, ctf18 variant"],["ComplexPortal%3ACPX-2441","DNA replication factor C complex, elg1 variant"],["ComplexPortal%3ACPX-26452","DNA replication factor C complex, elg1 variant"],["ComplexPortal%3ACPX-26444","DNA replication factor C complex, rad17 variant"]]},{"id":"GO:0030863","l":"cortical cytoskeleton","na":1,"nb":17,"a":[["cytoskeleton/eisosome_filament.html","eisosome filament"]],"b":[["ComplexPortal%3ACPX-658","Actin junctional complex"],["GO%3A0030864","cortical actin cytoskeleton"],["GO%3A0030863","cortical cytoskeleton"],["GO%3A0030981","cortical microtubule cytoskeleton"],["GO%3A0048788","cytoskeleton of presynaptic active zone"],["PANTHER%3APTHR15012","APICAL PROTEIN/SHROOM-RELATED"]]},{"id":"GO:0072546","l":"EMC complex","na":1,"nb":17,"a":[["other/emc_complex.html","EMC complex"]],"b":[["ComplexPortal%3ACPX-307","Endoplasmic Reticulum Membrane Complex"],["ComplexPortal%3ACPX-2445","Endoplasmic reticulum membrane complex, EMC2A variant"],["ComplexPortal%3ACPX-2451","Endoplasmic reticulum membrane complex, EMC2B variant"],["ComplexPortal%3ACPX-5848","Endoplasmic reticulum membrane complex, EMC8 variant"],["ComplexPortal%3ACPX-5882","Endoplasmic reticulum membrane complex, EMC8 variant"],["ComplexPortal%3ACPX-5881","Endoplasmic reticulum membrane complex, EMC9 variant"]]},{"id":"GO:1905369","l":"endopeptidase complex","na":1,"nb":17,"a":[["other/proteasome_complex.html","proteasome complex"]],"b":[["ComplexPortal%3ACPX-3905","Caspase-2 PIDDosome"],["ComplexPortal%3ACPX-3963","Caspase-2 PIDDosome"],["ComplexPortal%3ACPX-5777","MERS-CoV main protease complex"],["ComplexPortal%3ACPX-5685","SARS-CoV-2 main protease complex"],["ComplexPortal%3ACPX-5706","SARS-CoV main protease complex"],["GO%3A0008303","caspase complex"]]},{"id":"NCBITaxon:208963","l":"Pseudomonas aeruginosa (strain UCBPP-PA14)","na":1,"nb":17,"a":[["inclusion/r_body.html","R-body"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF21384","CRISPR-associated nuclease/helicase Cas3, I-F/YPEST, Cas2 domain"],["Pfam%3APF21802","CRISPR-associated Cas3 subtype I-F/YPEST-like, C-terminal domain"],["Pfam%3APF20975","DGC-associated coil"],["Pfam%3APF19502","Nucleotidyltransferase of unknown function (DUF6036)"]]},{"id":"Pfam:PF01584","l":"CheW-like domain","na":1,"nb":17,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["GO%3A0098561","methyl accepting chemotaxis protein complex"],["GO%3A0009454","aerotaxis"],["GO%3A0042333","chemotaxis to oxidizable substrate"],["GO%3A0051649","establishment of localization in cell"],["NCBIfam%3ANF007903","chemotaxis protein CheW"],["CDD%3Acd00732","CheW"]]},{"id":"UniProt:P0A7V8","l":"Small ribosomal subunit protein uS4","na":1,"nb":17,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["GO%3A1990145","maintenance of translational fidelity"],["GO%3A0000028","ribosomal small subunit assembly"],["GO%3A0031564","transcription antitermination"],["NCBIfam%3ANF003717","30S ribosomal protein S4"],["NCBIfam%3ATIGR01017","30S ribosomal protein S4"]]},{"id":"UniProt:P0AFI2","l":"","na":1,"nb":17,"a":[["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["ComplexPortal%3ACPX-1104","Topoisomerase IV"],["GO%3A0009330","DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) complex"],["GO%3A0030541","plasmid partitioning"],["NCBIfam%3ANF004044","DNA topoisomerase (ATP-hydrolyzing)"],["NCBIfam%3ATIGR01062","DNA topoisomerase IV subunit A"],["CDD%3Acd00187","TOP4c"]]},{"id":"UniProt:P35149","l":"","na":1,"nb":17,"a":[["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]],"b":[["EC%3A3.6.1.-","In phosphorus-containing anhydrides"],["GO%3A0043595","endospore cortex"],["GO%3A0042601","endospore-forming forespore"],["GO%3A0031160","spore wall"],["GO%3A0000270","peptidoglycan metabolic process"],["GO%3A0009847","spore germination"]]},{"id":"CHEBI:16247","l":"","na":1,"nb":16,"a":[["inclusion/monolayer_surrounded_lipid_storage_body_outer_lipid_monolayer.html","monolayer-surrounded lipid storage body outer lipid monolayer"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.A.79","The Autophagosomal Phospholipid Transmembrane Translocase (Atg9) Family"],["TCDB%3A9.A.36","The Ca2+-dependent Phospholipid Scramblase (Scramblase) Family"],["TCDB%3A1.A.17","The Calcium-dependent Chloride Channel (Ca-ClC) Family"],["TCDB%3A9.B.27","The Death Effector Domain A (DedA) Family"],["TCDB%3A8.A.97","The EPG-3/VMP1 (EPG/VPM) Scramblase Family"]]},{"id":"GO:0004526","l":"ribonuclease P activity","na":1,"nb":16,"a":[["ribonucleoprotein/dimeric_ribonuclease_p_complex.html","dimeric ribonuclease P complex"]],"b":[["EC%3A3.1.26.5","ribonuclease P"],["ComplexPortal%3ACPX-1294","Mitochondrial ribonuclease P complex"],["ComplexPortal%3ACPX-2632","Mitochondrial ribonuclease P complex"],["ComplexPortal%3ACPX-6155","Mitochondrial ribonuclease P complex"],["ComplexPortal%3ACPX-1873","Nucleolar ribonuclease P complex"],["ComplexPortal%3ACPX-2637","Nucleolar ribonuclease P complex"]]},{"id":"GO:0030968","l":"endoplasmic reticulum unfolded protein response","na":1,"nb":16,"a":[["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"]],"b":[["GO%3A0036500","ATF6-mediated unfolded protein response"],["GO%3A0030968","endoplasmic reticulum unfolded protein response"],["GO%3A0036498","IRE1-mediated unfolded protein response"],["GO%3A0036499","PERK-mediated unfolded protein response"],["Reactome%3AR-HSA-8874177","ATF6B (ATF6-beta) activates chaperones"],["Reactome%3AR-HSA-381119","Unfolded Protein Response (UPR)"]]},{"id":"GO:1904262","l":"negative regulation of TORC1 signaling","na":1,"nb":16,"a":[["other/gator1_complex.html","GATOR1 complex"]],"b":[["ComplexPortal%3ACPX-2665","CASTOR1 arginine-sensing complex"],["ComplexPortal%3ACPX-2667","CASTOR1-CASTOR2 arginine binding complex"],["ComplexPortal%3ACPX-26523","GATOR1 complex"],["ComplexPortal%3ACPX-2781","GATOR1 complex"],["ComplexPortal%3ACPX-6226","GATOR1 complex"],["ComplexPortal%3ACPX-26527","GATOR2 complex"]]},{"id":"GO:1904263","l":"positive regulation of TORC1 signaling","na":1,"nb":16,"a":[["other/gator2_complex.html","GATOR2 complex"]],"b":[["ComplexPortal%3ACPX-26527","GATOR2 complex"],["ComplexPortal%3ACPX-6227","GATOR2 complex"],["ComplexPortal%3ACPX-26516","RAG guanosine triphosphatase complex"],["ComplexPortal%3ACPX-26517","RAG guanosine triphosphatase complex"],["ComplexPortal%3ACPX-2542","RAG guanosine triphosphatase complex, RAGA-RAGC variant"],["ComplexPortal%3ACPX-2513","RAG guanosine triphosphatase complex, RAGA-RAGD variant"]]},{"id":"UniProt:P0A7S3","l":"Small ribosomal subunit protein uS12","na":1,"nb":16,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["GO%3A0022627","cytosolic small ribosomal subunit"],["GO%3A0005840","ribosome"],["GO%3A0034336","misfolded RNA binding"],["GO%3A0019843","rRNA binding"],["GO%3A0000049","tRNA binding"]]},{"id":"UniProt:P20083","l":"","na":1,"nb":16,"a":[["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["ComplexPortal%3ACPX-1104","Topoisomerase IV"],["GO%3A0030541","plasmid partitioning"],["NCBIfam%3ATIGR01055","DNA topoisomerase IV subunit B"],["InterPro%3AIPR018522","DNA topoisomerase, type IIA, conserved site"],["CDD%3Acd16928","HATPase_GyrB-like"],["CDD%3Acd00822","TopoII_Trans_DNA_gyrase"]]},{"id":"GO:0000479","l":"endonucleolytic cleavage of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)","na":1,"nb":15,"a":[["ribonucleoprotein/ribonuclease_mrp_complex.html","ribonuclease MRP complex"]],"b":[["GO%3A0000448","cleavage in ITS2 between 5.8S rRNA and LSU-rRNA of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)"],["GO%3A0000471","endonucleolytic cleavage in 3'-ETS of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)"],["GO%3A0000480","endonucleolytic cleavage in 5'-ETS of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)"],["GO%3A0000447","endonucleolytic cleavage in ITS1 to separate SSU-rRNA from 5.8S rRNA and LSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)"],["GO%3A0000464","endonucleolytic cleavage in ITS1 upstream of 5.8S rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)"],["GO%3A0000479","endonucleolytic cleavage of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)"]]},{"id":"GO:0005881","l":"cytoplasmic microtubule","na":1,"nb":15,"a":[["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"]],"b":[["GO%3A0000235","astral microtubule"],["GO%3A0005879","axonemal microtubule"],["GO%3A0055028","cortical microtubule"],["GO%3A0005881","cytoplasmic microtubule"],["PANTHER%3APTHR12607","ADENOMATOUS POLYPOSIS COLI PROTEIN FAMILY"],["PANTHER%3APTHR34031","CENTROSOMAL PROTEIN OF 162 KDA"]]},{"id":"GO:0009486","l":"cytochrome bo3 ubiquinol oxidase activity","na":1,"nb":15,"a":[["energy_complex/cytochrome_o_ubiquinol_oxidase_complex.html","cytochrome o ubiquinol oxidase complex"]],"b":[["EC%3A7.1.1.3","ubiquinol oxidase (H(+)-transporting)"],["RHEA%3A30251","2 a ubiquinol + O2 + n H(+)(in) = 2 a ubiquinone + 2 H2O + n H(+)(out)"],["ComplexPortal%3ACPX-2102","Cytochrome bo3 ubiquinol oxidase complex"],["GO%3A0009486","cytochrome bo3 ubiquinol oxidase activity"],["NCBIfam%3ATIGR01432","cytochrome aa3 quinol oxidase subunit II"],["NCBIfam%3ATIGR02843","cytochrome o ubiquinol oxidase subunit I"]]},{"id":"GO:0030121","l":"AP-1 adaptor complex","na":1,"nb":15,"a":[["other/ap_1_adaptor_complex.html","AP-1 adaptor complex"]],"b":[["ComplexPortal%3ACPX-2510","Adaptor complex AP-1"],["ComplexPortal%3ACPX-26625","Adaptor complex AP-1"],["ComplexPortal%3ACPX-532","Adaptor complex AP-1"],["ComplexPortal%3ACPX-533","Adaptor complex AP-1R"],["ComplexPortal%3ACPX-26626","Adaptor complex AP-2"],["ComplexPortal%3ACPX-2725","Adaptor complex AP-2"]]},{"id":"GO:0042575","l":"DNA polymerase complex","na":1,"nb":15,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"]],"b":[["GO%3A0005658","alpha DNA polymerase:primase complex"],["GO%3A0043625","delta DNA polymerase complex"],["GO%3A0042575","DNA polymerase complex"],["GO%3A0009360","DNA polymerase III complex"],["GO%3A0009355","DNA polymerase V complex"],["GO%3A0008622","epsilon DNA polymerase complex"]]},{"id":"GO:0045039","l":"protein insertion into mitochondrial inner membrane","na":1,"nb":15,"a":[["other/tim22_mitochondrial_import_inner_membrane_insertion_complex.html","TIM22 mitochondrial import inner membrane insertion complex"]],"b":[["ComplexPortal%3ACPX-1629","TIM22 mitochondrial inner membrane twin-pore carrier translocase complex"],["ComplexPortal%3ACPX-6124","TIM22 mitochondrial inner membrane twin-pore carrier translocase complex"],["ComplexPortal%3ACPX-6127","TIM23 mitochondrial inner membrane pre-sequence translocase complex, sort variant"],["ComplexPortal%3ACPX-2371","TIM8-TIM13 mitochondrial intermembrane space protein transporter complex"],["ComplexPortal%3ACPX-6131","TIM8A-TIM13 mitochondrial intermembrane space protein transporter complex"],["ComplexPortal%3ACPX-6132","TIM8B-TIM13 mitochondrial intermembrane space protein transporter complex"]]},{"id":"GO:0045273","l":"respiratory chain complex II (succinate dehydrogenase)","na":1,"nb":15,"a":[["energy_complex/respiratory_chain_complex_ii_succinate_dehydrogenase.html","respiratory chain complex II (succinate dehydrogenase)"]],"b":[["ComplexPortal%3ACPX-561","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-562","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-564","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-565","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-566","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-8622","Mitochondrial respiratory chain complex II"]]},{"id":"GO:0048500","l":"signal recognition particle","na":1,"nb":15,"a":[["ribonucleoprotein/signal_recognition_particle.html","signal recognition particle"]],"b":[["GO%3A0080085","signal recognition particle, chloroplast targeting"],["GO%3A0005786","signal recognition particle, endoplasmic reticulum targeting"],["GO%3A0048500","signal recognition particle"],["GO%3A0048501","signal recognition particle, plasma membrane targeting"],["NCBIfam%3ANF014032","signal recognition particle subunit SRP19/SEC65 family protein"],["NCBIfam%3ANF045758","YlxM family DNA-binding protein"]]},{"id":"UniProt:P0A7J7","l":"Large ribosomal subunit protein uL11","na":1,"nb":15,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["GO%3A0015968","stringent response"],["GO%3A0006415","translational termination"],["NCBIfam%3ATIGR01632","50S ribosomal protein L11"],["InterPro%3AIPR020785","Large ribosomal subunit protein uL11, conserved site"],["CDD%3Acd00349","Ribosomal_L11"]]},{"id":"GO:0000172","l":"ribonuclease MRP complex","na":1,"nb":14,"a":[["ribonucleoprotein/ribonuclease_mrp_complex.html","ribonuclease MRP complex"]],"b":[["ComplexPortal%3ACPX-2629","Ribonuclease MRP complex"],["ComplexPortal%3ACPX-26688","Ribonuclease MRP complex"],["ComplexPortal%3ACPX-2876","Ribonuclease MRP complex"],["ComplexPortal%3ACPX-3284","Ribonuclease MRP complex"],["GO%3A0000172","ribonuclease MRP complex"],["InterPro%3AIPR047204","RNase MRP protein 1, RNA binding domain"]]},{"id":"GO:0001682","l":"","na":1,"nb":14,"a":[["ribonucleoprotein/dimeric_ribonuclease_p_complex.html","dimeric ribonuclease P complex"]],"b":[["ComplexPortal%3ACPX-1294","Mitochondrial ribonuclease P complex"],["ComplexPortal%3ACPX-1873","Nucleolar ribonuclease P complex"],["ComplexPortal%3ACPX-2637","Nucleolar ribonuclease P complex"],["ComplexPortal%3ACPX-2877","Nucleolar ribonuclease P complex"],["GO%3A0001682","tRNA 5'-leader removal"],["NCBIfam%3ANF046110","ribonuclease P protein component 1"]]},{"id":"GO:0003843","l":"1,3-beta-D-glucan synthase activity","na":1,"nb":14,"a":[["other/1_3_beta_d_glucan_synthase_complex.html","1,3-beta-D-glucan synthase complex"]],"b":[["EC%3A2.4.1.34","1,3-beta-glucan synthase"],["RHEA%3A21476","[(1->3)-beta-D-glucosyl](n) + UDP-alpha-D-glucose = [(1->3)-beta-D-glucosyl](n+1) + UDP + H(+)"],["ComplexPortal%3ACPX-1812","1,3-beta-D-glucan synthase complex, FKS1-RHO1 variant"],["ComplexPortal%3ACPX-1813","1,3-beta-D-glucan synthase complex, FKS2-RHO1 variant"],["ComplexPortal%3ACPX-3028","1,3-beta-D-glucan synthase complex, FKS3-RHO1 variant"],["GO%3A0003843","1,3-beta-D-glucan synthase activity"]]},{"id":"GO:0006360","l":"transcription by RNA polymerase I","na":1,"nb":14,"a":[["other/nucleolus.html","nucleolus"]],"b":[["GO%3A0042790","nucleolar large rRNA transcription by RNA polymerase I"],["GO%3A0006360","transcription by RNA polymerase I"],["Reactome%3AR-HSA-73864","RNA Polymerase I Transcription"],["PANTHER%3APTHR14440","DNA-DIRECTED RNA POLYMERASE I SUBUNIT RPA49"],["PANTHER%3APTHR47227","DNA-DIRECTED RNA POLYMERASE SUBUNIT K"],["PANTHER%3APTHR10535","DNA-DIRECTED RNA POLYMERASES I, II, AND III SUBUNIT RPABC1"]]},{"id":"GO:0010494","l":"cytoplasmic stress granule","na":1,"nb":14,"a":[["ribonucleoprotein/cytoplasmic_stress_granule.html","cytoplasmic stress granule"]],"b":[["ComplexPortal%3ACPX-21432","CAPRIN1-G3BP1, stress granules assembly regulating complex"],["ComplexPortal%3ACPX-18979","CAPRIN1-G3BP2, stress granules assembly regulating complex"],["ComplexPortal%3ACPX-8306","FMR1-FXR1 RNA-binding complex"],["ComplexPortal%3ACPX-8322","FMR1-FXR2 RNA-binding complex"],["ComplexPortal%3ACPX-8305","FMR1 RNA-binding homodimer"],["ComplexPortal%3ACPX-8342","FXR1-FXR2 RNA-binding complex"]]},{"id":"GO:0030123","l":"AP-3 adaptor complex","na":1,"nb":14,"a":[["other/ap_3_adaptor_complex.html","AP-3 adaptor complex"]],"b":[["ComplexPortal%3ACPX-535","Adapter complex AP-3"],["ComplexPortal%3ACPX-26627","Adaptor complex AP-3"],["ComplexPortal%3ACPX-2727","Adaptor complex AP-3"],["ComplexPortal%3ACPX-5055","Neuronal AP-3 Adaptor complex, sigma3a variant"],["ComplexPortal%3ACPX-5147","Neuronal AP-3 Adaptor complex, sigma3a variant"],["ComplexPortal%3ACPX-5053","Neuronal AP-3 Adaptor complex, sigma3b variant"]]},{"id":"UniProt:P0A7R5","l":"Small ribosomal subunit protein uS10","na":1,"nb":14,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["ComplexPortal%3ACPX-5780","lambdaN-dependent processive transcription antitermination complex"],["ComplexPortal%3ACPX-5674","Transcription elongation complex"],["GO%3A0001072","transcription antitermination factor activity, RNA binding"],["GO%3A0032784","regulation of DNA-templated transcription elongation"],["GO%3A0031564","transcription antitermination"]]},{"id":"UniProt:P23446","l":"","na":1,"nb":14,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0030694","bacterial-type flagellum basal body, rod"],["GO%3A0009424","bacterial-type flagellum hook"],["NCBIfam%3ATIGR02490","flagellar basal-body rod protein FlgF"],["NCBIfam%3ANF009278","flagellar basal body rod protein FlgG"],["NCBIfam%3ATIGR03506","flagellar hook-basal body complex protein"],["InterPro%3AIPR019776","Flagellar basal body rod protein, conserved site"]]},{"id":"GO:0030990","l":"intraciliary transport particle","na":1,"nb":13,"a":[["appendage/cilium.html","cilium"]],"b":[["GO%3A0030990","intraciliary transport particle"],["PANTHER%3APTHR16011","IFT57/HIPPI"],["PANTHER%3APTHR31978","INTRAFLAGELLAR TRANSPORT PROTEIN 20 HOMOLOG"],["PANTHER%3APTHR33724","INTRAFLAGELLAR TRANSPORT PROTEIN 43 HOMOLOG"],["PANTHER%3APTHR13376","INTRAFLAGELLAR TRANSPORT PROTEIN 46 HOMOLOG"],["PANTHER%3APTHR14781","INTRAFLAGELLAR TRANSPORT PROTEIN 56"]]},{"id":"UniProt:P0A7L8","l":"Large ribosomal subunit protein bL27","na":1,"nb":13,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["GO%3A0022625","cytosolic large ribosomal subunit"],["GO%3A0043022","ribosome binding"],["GO%3A0000049","tRNA binding"],["GO%3A1902626","assembly of large subunit precursor of preribosome"],["GO%3A0002181","cytoplasmic translation"]]},{"id":"UniProt:P0AG67","l":"Small ribosomal subunit protein bS1","na":1,"nb":13,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ANF004951","30S ribosomal protein S1"],["NCBIfam%3ANF004952","30S ribosomal protein S1"],["NCBIfam%3ANF004954","30S ribosomal protein S1"],["NCBIfam%3ATIGR00717","30S ribosomal protein S1"],["proteintraitsmech%3AMEROPS_CLEAVAGE_A02_011","human endogenous retrovirus K retropepsin cleavage specificity"]]},{"id":"UniProt:P0AGA2","l":"","na":1,"nb":13,"a":[["secretion_system/secyeg_translocon_complex.html","SecYEG translocon complex"]],"b":[["ComplexPortal%3ACPX-1095","Holo-translocon SecYEG-SecDF-YajC-YidC complex"],["ComplexPortal%3ACPX-1096","Protein-conducting channel SecYEG complex"],["GO%3A0031522","cell envelope Sec protein transport complex"],["GO%3A0005048","signal sequence receptor activity"],["GO%3A0043952","protein transport by the Sec complex"],["GO%3A0006616","SRP-dependent cotranslational protein targeting to membrane, translocation"]]},{"id":"UniProt:P61175","l":"Large ribosomal subunit protein uL22","na":1,"nb":13,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["GO%3A0015934","large ribosomal subunit"],["GO%3A0070180","large ribosomal subunit rRNA binding"],["GO%3A1902626","assembly of large subunit precursor of preribosome"],["GO%3A0042256","cytosolic ribosome assembly"],["GO%3A0042255","ribosome assembly"]]},{"id":"GO:0017119","l":"COG complex","na":1,"nb":12,"a":[["other/cog_complex.html","COG complex"]],"b":[["ComplexPortal%3ACPX-1840","COG Golgi transport complex"],["ComplexPortal%3ACPX-2794","COG tethering complex"],["ComplexPortal%3ACPX-6199","COG tethering complex"],["GO%3A0017119","COG complex"],["PANTHER%3APTHR21506","COMPONENT OF OLIGOMERIC GOLGI COMPLEX 6"],["PANTHER%3APTHR12961","CONSERVED OLIGOMERIC GOLGI COMPLEX COMPONENT 2"]]},{"id":"GO:0045040","l":"protein insertion into mitochondrial outer membrane","na":1,"nb":12,"a":[["other/sam_complex.html","SAM complex"]],"b":[["ComplexPortal%3ACPX-2281","MIM mitochondrial import complex"],["ComplexPortal%3ACPX-26566","MIM mitochondrial import complex"],["ComplexPortal%3ACPX-6133","SAM mitochondrial sorting and assembly machinery complex"],["ComplexPortal%3ACPX-6121","TOM40 mitochondrial outer membrane translocase complex"],["ComplexPortal%3ACPX-8921","TOM40 mitochondrial outer membrane translocase complex"],["ComplexPortal%3ACPX-8926","TOM40 mitochondrial outer membrane translocase complex, testis-specific variant"]]},{"id":"GO:0045275","l":"respiratory chain complex III","na":1,"nb":12,"a":[["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"]],"b":[["ComplexPortal%3ACPX-560","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-563","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-567","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-8730","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-9308","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-8737","Mitochondrial respiratory chain complex III, testis-specific variant"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus ATCC 27405","na":1,"nb":12,"a":[["other/cellulosome.html","cellulosome"]],"b":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["Pfam%3APF00942","Cellulose binding domain"],["Pfam%3APF17996","Carbohydrate esterase 2 N-terminal"],["Pfam%3APF00963","Cohesin domain"],["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF00404","Dockerin type I domain"]]},{"id":"NCBITaxon:224326","l":"Borreliella burgdorferi (strain ATCC 35210 / DSM 4680 / CIP 102532 / B31)","na":1,"nb":12,"a":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]],"b":[["Pfam%3APF09822","ABC-type uncharacterized transport system"],["Pfam%3APF02352","Decorin binding protein"],["Pfam%3APF23357","Domain of unknown function (DUF7088)"],["Pfam%3APF27167","GRAD helix-turn-helix domain"],["Pfam%3APF28090","BB0208-like"],["Pfam%3APF02999","Borrelia orf-D family"]]},{"id":"NCBITaxon:5691","l":"Trypanosoma brucei","na":12,"nb":1,"a":[["cytoskeleton/bilobe_structure.html","bilobe structure"],["cytoskeleton/ciliary_pocket_collar.html","ciliary pocket collar"],["cytoskeleton/flagellum_attachment_zone.html","flagellum attachment zone"],["cytoskeleton/tripartite_attachment_complex.html","tripartite attachment complex"],["membrane_organelle/flagellar_pocket.html","flagellar pocket"],["membrane_organelle/glycosome.html","glycosome"]],"b":[["TED%3AAF-A0A1J0R543-F1-model_v4_TED02","TED novel fold AF-A0A1J0R543-F1-model_v4_TED02"]]},{"id":"NCBITaxon:5702","l":"Trypanosoma brucei brucei","na":1,"nb":12,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF05887","Procyclic acidic repetitive protein (PARP)"],["Pfam%3APF18526","Thymine dioxygenase JBP1 DNA-binding domain"],["Pfam%3APF22592","FCaBP EF-hand domain"],["Pfam%3APF12131","Protein of unknown function (DUF3586)"]]},{"id":"UniProt:P0A7R1","l":"Large ribosomal subunit protein bL9","na":1,"nb":12,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00158","50S ribosomal protein L9"],["InterPro%3AIPR020069","Large ribosomal subunit protein bL9, C-terminal"],["InterPro%3AIPR020070","Large ribosomal subunit protein bL9, N-terminal"],["Pfam%3APF03948","Ribosomal protein L9, C-terminal domain"],["Pfam%3APF01281","Ribosomal protein L9, N-terminal domain"]]},{"id":"UniProt:P0AG96","l":"","na":1,"nb":12,"a":[["secretion_system/secyeg_translocon_complex.html","SecYEG translocon complex"]],"b":[["ComplexPortal%3ACPX-1095","Holo-translocon SecYEG-SecDF-YajC-YidC complex"],["ComplexPortal%3ACPX-1096","Protein-conducting channel SecYEG complex"],["GO%3A0031522","cell envelope Sec protein transport complex"],["GO%3A0043952","protein transport by the Sec complex"],["GO%3A0006616","SRP-dependent cotranslational protein targeting to membrane, translocation"],["NCBIfam%3ANF004372","preprotein translocase subunit SecE"]]},{"id":"UniProt:P23448","l":"","na":1,"nb":12,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0009425","bacterial-type flagellum basal body"],["GO%3A0071973","bacterial-type flagellum-dependent cell motility"],["GO%3A0071978","bacterial-type flagellum-dependent swarming motility"],["NCBIfam%3ATIGR00207","flagellar motor switch protein FliG"],["InterPro%3AIPR023087","Flagellar motor switch protein FliG, C-terminal"],["InterPro%3AIPR032779","Flagellar motor switch protein FliG, middle domain"]]},{"id":"UniProt:P60422","l":"Large ribosomal subunit protein uL2","na":1,"nb":12,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["ComplexPortal%3ACPX-1944","DnaA-L2 DNA replication initiation inhibitory complex"],["GO%3A0032297","negative regulation of DNA-templated DNA replication initiation"],["NCBIfam%3ATIGR01171","50S ribosomal protein L2"],["InterPro%3AIPR022671","Large ribosomal subunit protein uL2, conserved site"],["InterPro%3AIPR022669","Large ribosomal subunit protein uL2, C-terminal"]]},{"id":"GO:0006612","l":"protein targeting to membrane","na":1,"nb":11,"a":[["ribonucleoprotein/signal_recognition_particle.html","signal recognition particle"]],"b":[["GO%3A0006613","cotranslational protein targeting to membrane"],["GO%3A0006620","post-translational protein targeting to endoplasmic reticulum membrane"],["GO%3A0006612","protein targeting to membrane"],["GO%3A0044395","protein targeting to vacuolar membrane"],["PANTHER%3APTHR13254","GOLGI AUTOANTIGEN, GOLGIN SUBFAMILY A, 7"],["PANTHER%3APTHR45831","LD24721P"]]},{"id":"GO:0042601","l":"endospore-forming forespore","na":1,"nb":11,"a":[["spore/endospore_forming_forespore.html","endospore-forming forespore"]],"b":[["GO%3A0042601","endospore-forming forespore"],["NCBIfam%3ANF019784","small acid-soluble spore protein K"],["NCBIfam%3ATIGR03091","small, acid-soluble spore protein K"],["NCBIfam%3ANF019785","small acid-soluble spore protein N"],["NCBIfam%3ATIGR02864","small acid-soluble spore protein SspO"],["NCBIfam%3ANF053738","stage II sporulation protein SpoIIQ"]]},{"id":"UniProt:O32062","l":"","na":1,"nb":11,"a":[["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]],"b":[["GO%3A0043595","endospore cortex"],["GO%3A0042763","intracellular immature spore"],["GO%3A0008932","lytic endotransglycosylase activity"],["CDD%3Acd00118","LysM"],["InterPro%3AIPR018392","LysM domain"],["InterPro%3AIPR014248","Spore coat assembly protein SafA"]]},{"id":"UniProt:P02359","l":"Small ribosomal subunit protein uS7","na":1,"nb":11,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["GO%3A0022627","cytosolic small ribosomal subunit"],["GO%3A0000028","ribosomal small subunit assembly"],["NCBIfam%3ATIGR01029","30S ribosomal protein S7"],["InterPro%3AIPR020606","Small ribosomal subunit protein uS7, conserved site"],["CDD%3Acd14869","uS7_Bacteria"]]},{"id":"UniProt:P0A6E6","l":"","na":1,"nb":11,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["NCBIfam%3ATIGR01216","ATP synthase F1 subunit epsilon"],["NCBIfam%3ANF001847","F0F1 ATP synthase subunit epsilon"],["CDD%3Acd12152","F1-ATPase_delta"],["InterPro%3AIPR020547","ATP synthase epsilon subunit, C-terminal domain"],["InterPro%3AIPR020546","ATP synthase, F1 complex, delta/epsilon subunit, N-terminal"]]},{"id":"UniProt:P0A7J3","l":"Large ribosomal subunit protein uL10","na":1,"nb":11,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ANF000955","50S ribosomal protein L10"],["InterPro%3AIPR002363","Large ribosomal subunit protein uL10, conserved site, bacteria"],["CDD%3Acd05797","Ribosomal_L10"],["InterPro%3AIPR001790","Large ribosomal subunit protein uL10, N-terminal"],["Pfam%3APF00466","Ribosomal protein L10"]]},{"id":"UniProt:P0A7K2","l":"Large ribosomal subunit protein bL12","na":1,"nb":11,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00855","50S ribosomal protein L7/L12"],["CDD%3Acd00387","Ribosomal_L7_L12"],["InterPro%3AIPR013823","Large ribosomal subunit protein bL12, C-terminal"],["InterPro%3AIPR008932","Large ribosomal subunit protein bL12, oligomerization"],["Pfam%3APF16320","Ribosomal protein L7/L12 dimerisation domain"]]},{"id":"UniProt:P68699","l":"","na":1,"nb":11,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["RHEA%3A57720","ATP + H2O + 4 H(+)(in) = ADP + phosphate + 5 H(+)(out)"],["ComplexPortal%3ACPX-4022","ATP synthase complex"],["GO%3A0033177","proton-transporting two-sector ATPase complex, proton-transporting domain"],["GO%3A0042777","proton motive force-driven plasma membrane ATP synthesis"],["NCBIfam%3ATIGR01260","ATP synthase F0 subunit C"],["NCBIfam%3ANF005363","F0F1 ATP synthase subunit C"]]},{"id":"GO:0005736","l":"RNA polymerase I complex","na":1,"nb":10,"a":[["other/nucleolus.html","nucleolus"]],"b":[["ComplexPortal%3ACPX-1664","DNA-directed RNA Polymerase I complex"],["ComplexPortal%3ACPX-2386","DNA-directed RNA polymerase I complex"],["ComplexPortal%3ACPX-2602","DNA-directed RNA polymerase I complex"],["ComplexPortal%3ACPX-8907","DNA-directed RNA polymerase I complex"],["ComplexPortal%3ACPX-8913","DNA-directed RNA polymerase I complex"],["GO%3A0005736","RNA polymerase I complex"]]},{"id":"GO:0005771","l":"multivesicular body","na":10,"nb":1,"a":[["membrane_organelle/endosome.html","endosome"],["membrane_organelle/endosome_lumen.html","endosome lumen"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/late_endosome_lumen.html","late endosome lumen"],["membrane_organelle/late_endosome_membrane.html","late endosome membrane"]],"b":[["GO%3A0005771","multivesicular body"]]},{"id":"GO:0043952","l":"protein transport by the Sec complex","na":1,"nb":10,"a":[["secretion_system/secyeg_translocon_complex.html","SecYEG translocon complex"]],"b":[["ComplexPortal%3ACPX-1095","Holo-translocon SecYEG-SecDF-YajC-YidC complex"],["ComplexPortal%3ACPX-1096","Protein-conducting channel SecYEG complex"],["GO%3A0043952","protein transport by the Sec complex"],["NCBIfam%3ATIGR00963","preprotein translocase subunit SecA"],["NCBIfam%3ATIGR00964","preprotein translocase subunit SecE"],["NCBIfam%3ATIGR00967","preprotein translocase subunit SecY"]]},{"id":"GO:0097545","l":"axonemal doublet microtubule","na":10,"nb":1,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_doublet_microtubule.html","axonemal doublet microtubule"],["cytoskeleton/axonemal_dynein_complex.html","axonemal dynein complex"],["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"],["cytoskeleton/axonemal_microtubule_doublet_inner_junction.html","axonemal microtubule doublet inner junction"],["cytoskeleton/axonemal_microtubule_doublet_inner_sheath.html","axonemal microtubule doublet inner sheath"]],"b":[["GO%3A0097545","axonemal doublet microtubule"]]},{"id":"NCBITaxon:190650","l":"Caulobacter vibrioides (strain ATCC 19089 / CIP 103742 / CB 15)","na":1,"nb":10,"a":[["cytoskeleton/cytoophidium.html","cytoophidium"]],"b":[["IDPO%3A0000060","self-assembly"],["Pfam%3APF27198","FlaEY third domain"],["Pfam%3APF22367","Flagellar hook protein FlgE, third domain"],["Pfam%3APF03799","Cell division protein FtsQ/DivIB, C-terminal"],["Pfam%3APF27294","HfaA"],["Pfam%3APF27277","Holdfast attachment protein D"]]},{"id":"NCBITaxon:345073","l":"Vibrio cholerae serotype O1 (strain ATCC 39541 / Classical Ogawa 395 / O395)","na":1,"nb":10,"a":[["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"]],"b":[["IDPO%3A0000048","limited proteolysis display site"],["Pfam%3APF16671","Actin cross-linking domain"],["Pfam%3APF26759","AcfD helical domain"],["Pfam%3APF00165","Bacterial regulatory helix-turn-helix proteins, AraC family"],["Pfam%3APF08328","Adenylosuccinate lyase C-terminal"],["Pfam%3APF07208","Protein of unknown function (DUF1414)"]]},{"id":"Pfam:PF03023","l":"Lipid II flippase MurJ","na":1,"nb":10,"a":[["envelope/peptidoglycan_based_cell_wall.html","peptidoglycan-based cell wall"]],"b":[["GO%3A0000935","division septum"],["GO%3A0015648","lipid-linked peptidoglycan transporter activity"],["GO%3A0034203","glycolipid translocation"],["GO%3A0015836","lipid-linked peptidoglycan transport"],["GO%3A0034204","lipid translocation"],["GO%3A0009252","peptidoglycan biosynthetic process"]]},{"id":"UniProt:P0A7L0","l":"Large ribosomal subunit protein uL1","na":1,"nb":10,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01169","50S ribosomal protein L1"],["InterPro%3AIPR023673","Large ribosomal subunit protein uL1, conserved site"],["CDD%3Acd00403","Ribosomal_L1"],["Pfam%3APF00687","Ribosomal protein L1p/L10e family"],["InterPro%3AIPR016095","Large ribosomal subunit protein uL1, 3-layer alpha/beta-sandwich domain"]]},{"id":"UniProt:P0A7M9","l":"Large ribosomal subunit protein bL31","na":1,"nb":10,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["GO%3A1904689","negative regulation of cytoplasmic translational initiation"],["NCBIfam%3ANF000612","50S ribosomal protein L31"],["NCBIfam%3ANF001809","50S ribosomal protein L31"],["NCBIfam%3ATIGR00105","50S ribosomal protein L31"],["Pfam%3APF01197","Ribosomal protein L31"]]},{"id":"UniProt:P0A7S9","l":"Small ribosomal subunit protein uS13","na":1,"nb":10,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR03631","30S ribosomal protein S13"],["InterPro%3AIPR018269","Small ribosomal subunit protein uS13, conserved site"],["Pfam%3APF00416","Ribosomal protein S13/S18"],["InterPro%3AIPR027437","Small ribosomal subunit protein uS13, C-terminal"],["InterPro%3AIPR010979","Small ribosomal subunit protein uS13-like, H2TH"]]},{"id":"UniProt:P0A7V3","l":"Small ribosomal subunit protein uS3","na":1,"nb":10,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR01009","30S ribosomal protein S3"],["InterPro%3AIPR018280","Small ribosomal subunit protein uS3, conserved site"],["CDD%3Acd02412","KH-II_30S_S3"],["InterPro%3AIPR001351","Small ribosomal subunit protein uS3, C-terminal"],["Pfam%3APF07650","KH domain"]]},{"id":"UniProt:P0A964","l":"","na":1,"nb":10,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["GO%3A0098561","methyl accepting chemotaxis protein complex"],["GO%3A0009454","aerotaxis"],["GO%3A0051649","establishment of localization in cell"],["NCBIfam%3ANF007903","chemotaxis protein CheW"],["CDD%3Acd00732","CheW"],["InterPro%3AIPR002545","CheW-like domain"]]},{"id":"UniProt:P0AB98","l":"","na":1,"nb":10,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["NCBIfam%3ANF004477","F0F1 ATP synthase subunit A"],["NCBIfam%3ATIGR01131","F0F1 ATP synthase subunit A"],["InterPro%3AIPR023011","ATP synthase, F0 complex, subunit A, active site"],["CDD%3Acd00310","ATP-synt_Fo_a_6"],["Pfam%3APF00119","ATP synthase A chain"]]},{"id":"UniProt:P0ABA6","l":"","na":1,"nb":10,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["GO%3A0042777","proton motive force-driven plasma membrane ATP synthesis"],["NCBIfam%3ATIGR01146","ATP synthase F1 subunit gamma"],["NCBIfam%3ANF004144","F0F1 ATP synthase subunit gamma"],["InterPro%3AIPR023632","ATP synthase, F1 complex, gamma subunit conserved site"],["CDD%3Acd12151","F1-ATPase_gamma"]]},{"id":"UniProt:P0ABB0","l":"","na":1,"nb":10,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["NCBIfam%3ANF009884","F0F1 ATP synthase subunit alpha"],["NCBIfam%3ATIGR00962","F0F1 ATP synthase subunit alpha"],["CDD%3Acd18113","ATP-synt_F1_alpha_C"],["CDD%3Acd18116","ATP-synt_F1_alpha_N"],["CDD%3Acd01132","F1-ATPase_alpha_CD"]]},{"id":"UniProt:P0AD65","l":"","na":1,"nb":10,"a":[["division_machinery/elongasome.html","elongasome"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["GO%3A0071972","peptidoglycan L,D-transpeptidase activity"],["NCBIfam%3ATIGR03423","penicillin-binding protein 2"],["NCBIfam%3ANF008061","peptidoglycan DD-transpeptidase MrdA"],["InterPro%3AIPR005311","Penicillin-binding protein, dimerisation domain"],["Pfam%3APF03717","Penicillin-binding Protein dimerisation domain"]]},{"id":"UniProt:P0ADY7","l":"Large ribosomal subunit protein uL16","na":1,"nb":10,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01164","50S ribosomal protein L16"],["InterPro%3AIPR020798","Large ribosomal subunit protein uL16, conserved site"],["CDD%3Acd01433","Ribosomal_L16_L10e"],["InterPro%3AIPR016180","Large ribosomal subunit protein uL16 domain"],["Pfam%3APF00252","Ribosomal protein L16p/L10e"]]},{"id":"UniProt:P28612","l":"","na":1,"nb":10,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0120101","bacterial-type flagellum stator complex"],["NCBIfam%3ANF005831","flagellar motor protein MotB"],["CDD%3Acd07185","OmpA_C-like"],["InterPro%3AIPR025713","Motility protein B-like, N-terminal domain"],["InterPro%3AIPR006665","OmpA-like domain"],["Pfam%3APF13677","Membrane MotB of proton-channel complex MotA/MotB"]]},{"id":"UniProt:P35620","l":"","na":1,"nb":10,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["NCBIfam%3ATIGR01398","flagellar biosynthesis protein FlhA"],["InterPro%3AIPR025505","FHIPEP conserved site"],["Pfam%3APF00771","FHIPEP family"],["InterPro%3AIPR042194","FHIPEP, domain 1"],["InterPro%3AIPR042193","FHIPEP, domain 3"],["InterPro%3AIPR042196","FHIPEP, domain 4"]]},{"id":"UniProt:P39064","l":"","na":1,"nb":10,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0120101","bacterial-type flagellum stator complex"],["NCBIfam%3ANF005382","flagellar motor protein MotS"],["CDD%3Acd07185","OmpA_C-like"],["InterPro%3AIPR025713","Motility protein B-like, N-terminal domain"],["InterPro%3AIPR006665","OmpA-like domain"],["Pfam%3APF13677","Membrane MotB of proton-channel complex MotA/MotB"]]},{"id":"UniProt:P62399","l":"Large ribosomal subunit protein uL5","na":1,"nb":10,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ANF000585","50S ribosomal protein L5"],["InterPro%3AIPR020929","Large ribosomal subunit protein uL5, conserved site"],["InterPro%3AIPR031309","Large ribosomal subunit protein uL5, C-terminal"],["InterPro%3AIPR031310","Large ribosomal subunit protein uL5, N-terminal"],["Pfam%3APF00673","ribosomal L5P family C-terminus"]]},{"id":"CHEBI:18248","l":"iron atom","na":1,"nb":9,"a":[["membrane_organelle/magnetosome.html","magnetosome"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18248","requires Fe"],["proteintraitsmech%3AMETALPDB_FE_DINUCLEAR","dinuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_HEPTANUCLEAR","heptanuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_HEXANUCLEAR","hexanuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_MONONUCLEAR","mononuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_OCTANUCLEAR","octanuclear iron site"]]},{"id":"GO:0008854","l":"exodeoxyribonuclease V activity","na":1,"nb":9,"a":[["other/exodeoxyribonuclease_v_complex.html","exodeoxyribonuclease V complex"]],"b":[["EC%3A3.1.11.5","exodeoxyribonuclease V"],["ComplexPortal%3ACPX-2197","Exodeoxyribonuclease V complex"],["GO%3A0008854","exodeoxyribonuclease V activity"],["NCBIfam%3ANF008127","exodeoxyribonuclease V subunit alpha"],["NCBIfam%3ATIGR01447","exodeoxyribonuclease V subunit alpha"],["NCBIfam%3ANF008128","exodeoxyribonuclease V subunit beta"]]},{"id":"GO:0016255","l":"attachment of GPI anchor to protein","na":1,"nb":9,"a":[["other/gpi_anchor_transamidase_complex.html","GPI-anchor transamidase complex"]],"b":[["ComplexPortal%3ACPX-10141","GPI-anchor transamidase complex"],["ComplexPortal%3ACPX-1275","GPI-anchor transamidase complex"],["ComplexPortal%3ACPX-2687","GPI-anchor transamidase complex"],["ComplexPortal%3ACPX-6503","GPI-anchor transamidase complex"],["GO%3A0016255","attachment of GPI anchor to protein"],["Reactome%3AR-HSA-162791","Attachment of GPI anchor to uPAR"]]},{"id":"GO:0020007","l":"apical complex","na":9,"nb":1,"a":[["cytoskeleton/conoid.html","conoid"],["cytoskeleton/intraconoid_microtubule.html","intraconoid microtubule"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["cytoskeleton/subpellicular_microtubule.html","subpellicular microtubule"],["membrane_organelle/exoneme.html","exoneme"],["membrane_organelle/microneme.html","microneme"]],"b":[["GO%3A0020007","apical complex"]]},{"id":"GO:0031105","l":"septin complex","na":1,"nb":9,"a":[["cytoskeleton/septin_ring.html","septin ring"]],"b":[["ComplexPortal%3ACPX-1675","Septin complex"],["ComplexPortal%3ACPX-25766","Septin complex, hexamer variant, SEPT2-SEPT6-SEPT-7"],["ComplexPortal%3ACPX-25761","Septin complex, octamer variant, SEPT2-SEPT6-SEPT-7-SEPT3"],["ComplexPortal%3ACPX-25758","Septin complex, octamer variant, SEPT2-SEPT6-SEPT-7-SEPT9"],["ComplexPortal%3ACPX-26526","Septin1-Septin2-pnut complex"],["ComplexPortal%3ACPX-26529","Septin4-Septin5-pnut complex"]]},{"id":"GO:0042144","l":"vacuole fusion, non-autophagic","na":1,"nb":9,"a":[["other/hops_complex.html","HOPS complex"]],"b":[["ComplexPortal%3ACPX-1136","HOPS tethering complex"],["ComplexPortal%3ACPX-1625","HOPS tethering complex"],["ComplexPortal%3ACPX-1278","LMA1 complex, TRX1 variant"],["ComplexPortal%3ACPX-1279","LMA1 complex, TRX2 variant"],["ComplexPortal%3ACPX-5401","Vacuolar SNARE complex VAM3-VTI1-VAM7-NYV1"],["GO%3A0042144","vacuole fusion, non-autophagic"]]},{"id":"GO:0042407","l":"cristae formation","na":1,"nb":9,"a":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"]],"b":[["ComplexPortal%3ACPX-140","MICOS mitochondrial contact site and cristae organizing system complex"],["ComplexPortal%3ACPX-25732","MICOS mitochondrial contact site and cristae organizing system complex, MIC10A variant"],["ComplexPortal%3ACPX-25733","MICOS mitochondrial contact site and cristae organizing system complex, MIC10B variant"],["ComplexPortal%3ACPX-25735","MICOS mitochondrial contact site and cristae organizing system complex, MIC10C variant"],["ComplexPortal%3ACPX-6141","MICOS mitochondrial contact site and cristae organizing system complex"],["GO%3A0042407","cristae formation"]]},{"id":"GO:0042765","l":"GPI-anchor transamidase complex","na":1,"nb":9,"a":[["other/gpi_anchor_transamidase_complex.html","GPI-anchor transamidase complex"]],"b":[["ComplexPortal%3ACPX-10141","GPI-anchor transamidase complex"],["ComplexPortal%3ACPX-1275","GPI-anchor transamidase complex"],["ComplexPortal%3ACPX-2687","GPI-anchor transamidase complex"],["ComplexPortal%3ACPX-6503","GPI-anchor transamidase complex"],["GO%3A0042765","GPI-anchor transamidase complex"],["Pfam%3APF04113","Gpi16 subunit, GPI transamidase component"]]},{"id":"GO:0097546","l":"ciliary base","na":1,"nb":9,"a":[["appendage/cilium.html","cilium"]],"b":[["GO%3A0097546","ciliary base"],["PANTHER%3APTHR38326","CHROMOSOME 11 OPEN READING FRAME 97"],["PANTHER%3APTHR31978","INTRAFLAGELLAR TRANSPORT PROTEIN 20 HOMOLOG"],["PANTHER%3APTHR14781","INTRAFLAGELLAR TRANSPORT PROTEIN 56"],["PANTHER%3APTHR44117","INTRAFLAGELLAR TRANSPORT PROTEIN 88 HOMOLOG"],["PANTHER%3APTHR21532","PHOSPHODIESTERASE HL"]]},{"id":"GO:1905354","l":"exoribonuclease complex","na":1,"nb":9,"a":[["ribonucleoprotein/exosome_rnase_complex.html","exosome (RNase complex)"]],"b":[["ComplexPortal%3ACPX-5783","MERS-CoV 3'-5' exoribonuclease proof-reading complex"],["ComplexPortal%3ACPX-5692","SARS-CoV-2 3'-5' exoribonuclease proof-reading complex"],["ComplexPortal%3ACPX-5707","SARS-CoV 3'-5' exoribonuclease proof-reading complex"],["GO%3A1905354","exoribonuclease complex"],["GO%3A0000178","exosome (RNase complex)"],["GO%3A0090730","Las1 complex"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":9,"a":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]],"b":[["Pfam%3APF07835","Bacterial aa3 type cytochrome c oxidase subunit IV"],["Pfam%3APF04828","Glutathione-dependent formaldehyde-activating enzyme"],["Pfam%3APF16448","LapD/MoxY periplasmic domain"],["Pfam%3APF17267","Family of unknown function (DUF5333)"],["Pfam%3APF17272","Family of unknown function (DUF5337)"],["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"]]},{"id":"NCBITaxon:79929","l":"Methanothermobacter marburgensis (strain ATCC BAA-927 / DSM 2133 / JCM 14651 / NBRC 100331 / OCM 82 / Marburg)","na":1,"nb":9,"a":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]],"b":[["Pfam%3APF23902","PRS2 AAA+ lid C-terminal domain"],["Pfam%3APF02754","Cysteine-rich domain"],["Pfam%3APF12798","4Fe-4S binding domain"],["Pfam%3APF13183","4Fe-4S dicluster domain"],["Pfam%3APF22616","HMD N-terminal domain"],["Pfam%3APF03201","H2-forming N5,N10-methylene-tetrahydromethanopterin dehydrogenase"]]},{"id":"UniProt:P02358","l":"Small ribosomal subunit protein bS6","na":1,"nb":9,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR00166","30S ribosomal protein S6"],["InterPro%3AIPR020815","Small ribosomal subunit protein bS6, conserved site"],["CDD%3Acd00473","bS6"],["Pfam%3APF01250","Ribosomal protein S6"],["InterPro%3AIPR035980","Small ribosomal subunit protein bS6 superfamily"]]},{"id":"UniProt:P0A7L3","l":"Large ribosomal subunit protein bL20","na":1,"nb":9,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01032","50S ribosomal protein L20"],["InterPro%3AIPR049946","Large ribosomal subunit protein bL20, conserved site"],["CDD%3Acd07026","Ribosomal_L20"],["Pfam%3APF00453","Ribosomal protein L20"],["InterPro%3AIPR035566","Ribosomal protein bL20, C-terminal"]]},{"id":"UniProt:P0A9X4","l":"","na":1,"nb":9,"a":[["cytoskeleton/mreb_filament.html","MreB filament"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["GO%3A0099513","polymeric cytoskeletal fiber"],["GO%3A0043093","FtsZ-dependent cytokinesis"],["GO%3A0009252","peptidoglycan biosynthetic process"],["GO%3A0051983","regulation of chromosome segregation"],["NCBIfam%3ATIGR00904","MreB/Mrl family cell shape determining protein"]]},{"id":"UniProt:P0AA10","l":"Large ribosomal subunit protein uL13","na":1,"nb":9,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["GO%3A0070180","large ribosomal subunit rRNA binding"],["NCBIfam%3ATIGR01066","50S ribosomal protein L13"],["InterPro%3AIPR023563","Large ribosomal subunit protein uL13, conserved site"],["CDD%3Acd00392","Ribosomal_L13"],["Pfam%3APF00572","Ribosomal protein L13"]]},{"id":"UniProt:P0ADZ4","l":"Small ribosomal subunit protein uS15","na":1,"nb":9,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["GO%3A0070181","small ribosomal subunit rRNA binding"],["NCBIfam%3ATIGR00952","30S ribosomal protein S15"],["CDD%3Acd00353","Ribosomal_S15p_S13e"],["Pfam%3APF00312","Ribosomal protein S15"],["InterPro%3AIPR009068","uS15/NS1, RNA-binding domain superfamily"]]},{"id":"UniProt:P23453","l":"","na":1,"nb":9,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0009425","bacterial-type flagellum basal body"],["NCBIfam%3ATIGR01397","flagellar motor switch protein FliM"],["CDD%3Acd17908","FliM"],["InterPro%3AIPR001543","Flagellar motor switch protein FliN-like, C-terminal domain"],["Pfam%3APF02154","Flagellar motor switch protein FliM"],["InterPro%3AIPR028976","CheC-like superfamily"]]},{"id":"GO:0000917","l":"division septum assembly","na":1,"nb":8,"a":[["division_machinery/divisome_complex.html","divisome complex"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["GO%3A0000917","division septum assembly"],["GO%3A0140278","mitotic division septum assembly"],["NCBIfam%3ATIGR02205","cell division protein ZipA"],["NCBIfam%3ATIGR00172","Maf family nucleotide pyrophosphatase"],["PANTHER%3APTHR36419","ARRESTIN FAMILY PROTEIN 1"]]},{"id":"GO:0043591","l":"endospore external encapsulating structure","na":8,"nb":1,"a":[["spore/endospore_coat.html","endospore coat"],["spore/endospore_core.html","endospore core"],["spore/endospore_cortex.html","endospore cortex"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"],["spore/exosporium.html","exosporium"],["spore/microsporidian_type_endospore.html","microsporidian-type endospore"]],"b":[["GO%3A0043591","endospore external encapsulating structure"]]},{"id":"GO:0071816","l":"tail-anchored membrane protein insertion into ER membrane","na":1,"nb":8,"a":[["other/get_complex.html","GET complex"]],"b":[["ComplexPortal%3ACPX-2445","Endoplasmic reticulum membrane complex, EMC2A variant"],["ComplexPortal%3ACPX-2451","Endoplasmic reticulum membrane complex, EMC2B variant"],["ComplexPortal%3ACPX-5848","Endoplasmic reticulum membrane complex, EMC8 variant"],["ComplexPortal%3ACPX-5882","Endoplasmic reticulum membrane complex, EMC8 variant"],["ComplexPortal%3ACPX-5881","Endoplasmic reticulum membrane complex, EMC9 variant"],["ComplexPortal%3ACPX-5883","Endoplasmic reticulum membrane complex, EMC9 variant"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":8,"a":[["other/cellulosome.html","cellulosome"]],"b":[["Pfam%3APF02927","Cellulase N-terminal ig-like domain"],["Pfam%3APF00404","Dockerin type I domain"],["PROSITE%3APS00448","Clostridium cellulosome enzymes repeated domain signature"],["PROSITE%3APS60032","Glycosyl hydrolases family 9 (GH9) active site signature 1"],["PROSITE%3APS00592","Glycosyl hydrolases family 9 (GH9) active site signature 2"],["PROSITE%3APS00698","Glycosyl hydrolases family 9 (GH9) active site signature 3"]]},{"id":"NCBITaxon:572477","l":"Allochromatium vinosum (strain ATCC 17899 / DSM 180 / NBRC 103801 / NCIMB 10441 / D)","na":1,"nb":8,"a":[["inclusion/sulfur_globule.html","sulfur globule"]],"b":[["Pfam%3APF01322","Cytochrome C'"],["Pfam%3APF02635","DsrE/DsrF-like family"],["Pfam%3APF21706","Sulfide dehydrogenase [flavocytochrome c] flavoprotein chain, central"],["Pfam%3APF09242","Flavocytochrome c sulphide dehydrogenase, flavin-binding"],["Pfam%3APF01355","High potential iron-sulfur protein"],["Pfam%3APF13686","DsrE/DsrF/DrsH-like family"]]},{"id":"UniProt:P05704","l":"","na":1,"nb":8,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["GO%3A0098561","methyl accepting chemotaxis protein complex"],["CDD%3Acd19407","Tar_Tsr_sensor"],["InterPro%3AIPR003122","Chemotaxis methyl-accepting receptor Tar-related, ligand-binding"],["Pfam%3APF02203","Tar ligand binding domain homologue"],["InterPro%3AIPR035440","Methyl-accepting chemotaxis protein, four helix bundle domain superfamily"],["PROSITE%3APS00538","Bacterial chemotaxis sensory transducers signature"]]},{"id":"UniProt:P07018","l":"","na":1,"nb":8,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["NCBIfam%3ANF007309","methyl-accepting chemotaxis protein IV"],["CDD%3Acd19407","Tar_Tsr_sensor"],["InterPro%3AIPR003122","Chemotaxis methyl-accepting receptor Tar-related, ligand-binding"],["Pfam%3APF02203","Tar ligand binding domain homologue"],["InterPro%3AIPR035440","Methyl-accepting chemotaxis protein, four helix bundle domain superfamily"],["PROSITE%3APS00538","Bacterial chemotaxis sensory transducers signature"]]},{"id":"UniProt:P0A7M6","l":"Large ribosomal subunit protein uL29","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00012","50S ribosomal protein L29"],["InterPro%3AIPR018254","Large ribosomal subunit protein uL29, conserved site"],["CDD%3Acd00427","Ribosomal_L29_HIP"],["Pfam%3APF00831","Ribosomal L29 protein"],["InterPro%3AIPR036049","Large ribosomal subunit protein uL29 superfamily"]]},{"id":"UniProt:P0A7N9","l":"Large ribosomal subunit protein bL33","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ANF001860","50S ribosomal protein L33"],["NCBIfam%3ATIGR01023","50S ribosomal protein L33"],["InterPro%3AIPR018264","Large ribosomal subunit protein bL33, conserved site"],["Pfam%3APF00471","Ribosomal protein L33"],["InterPro%3AIPR038584","Large ribosomal subunit protein bL33 superfamily"]]},{"id":"UniProt:P0A7R9","l":"Small ribosomal subunit protein uS11","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ANF003698","30S ribosomal protein S11"],["NCBIfam%3ATIGR03632","30S ribosomal protein S11"],["InterPro%3AIPR018102","Small ribosomal subunit protein uS11, conserved site"],["Pfam%3APF00411","Ribosomal protein S11"],["InterPro%3AIPR036967","Small ribosomal subunit protein uS11 superfamily"]]},{"id":"UniProt:P0A7W1","l":"Small ribosomal subunit protein uS5","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR01021","30S ribosomal protein S5"],["InterPro%3AIPR018192","Small ribosomal subunit protein uS5, N-terminal, conserved site"],["InterPro%3AIPR005324","Small ribosomal subunit protein uS5, C-terminal"],["InterPro%3AIPR013810","Small ribosomal subunit protein uS5, N-terminal"],["Pfam%3APF03719","Ribosomal protein S5, C-terminal domain"]]},{"id":"UniProt:P0A7W7","l":"Small ribosomal subunit protein uS8","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ANF001109","30S ribosomal protein S8"],["InterPro%3AIPR047863","Small ribosomal subunit protein uS8, conserved site"],["Pfam%3APF00410","Ribosomal protein S8"],["InterPro%3AIPR035987","Small ribosomal subunit protein uS8 superfamily"],["PROSITE%3APS00053","Ribosomal protein S8 signature"]]},{"id":"UniProt:P0A7Y8","l":"","na":1,"nb":8,"a":[["ribonucleoprotein/dimeric_ribonuclease_p_complex.html","dimeric ribonuclease P complex"]],"b":[["GO%3A0030677","ribonuclease P complex"],["GO%3A0042781","3'-tRNA processing endoribonuclease activity"],["NCBIfam%3ATIGR00188","ribonuclease P protein component"],["InterPro%3AIPR020539","Ribonuclease P, conserved site"],["Pfam%3APF00825","Ribonuclease P"],["InterPro%3AIPR014721","Small ribosomal subunit protein uS5 domain 2-type fold, subgroup"]]},{"id":"UniProt:P0ABA0","l":"","na":1,"nb":8,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["NCBIfam%3ANF004411","F0F1 ATP synthase subunit B"],["NCBIfam%3ANF004413","F0F1 ATP synthase subunit B"],["NCBIfam%3ATIGR01144","F0F1 ATP synthase subunit B"],["CDD%3Acd06503","ATP-synt_Fo_b"],["Pfam%3APF00430","ATP synthase B/B' CF(0)"]]},{"id":"UniProt:P0ABA4","l":"","na":1,"nb":8,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["NCBIfam%3ATIGR01145","ATP synthase F1 subunit delta"],["NCBIfam%3ANF004402","F0F1 ATP synthase subunit delta"],["NCBIfam%3ANF004404","F0F1 ATP synthase subunit delta"],["InterPro%3AIPR020781","ATPase, OSCP/delta subunit, conserved site"],["Pfam%3APF00213","ATP synthase delta (OSCP) subunit"]]},{"id":"UniProt:P0ABG7","l":"","na":1,"nb":8,"a":[["division_machinery/elongasome.html","elongasome"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["GO%3A0015648","lipid-linked peptidoglycan transporter activity"],["GO%3A0031504","peptidoglycan-based cell wall organization"],["NCBIfam%3ANF008060","peptidoglycan glycosyltransferase MrdB"],["NCBIfam%3ATIGR02210","rod shape-determining protein RodA"],["InterPro%3AIPR018365","Cell cycle, FtsW / RodA / SpoVE, conserved site"]]},{"id":"UniProt:P0ABH0","l":"","na":1,"nb":8,"a":[["division_machinery/divisome_complex.html","divisome complex"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["NCBIfam%3ANF007009","cell division protein FtsA"],["NCBIfam%3ATIGR01174","cell division protein FtsA"],["CDD%3Acd24048","ASKHA_NBD_FtsA"],["InterPro%3AIPR003494","SHS2 domain inserted in FtsA"],["Pfam%3APF14450","Cell division protein FtsA"]]},{"id":"UniProt:P0ABJ6","l":"","na":1,"nb":8,"a":[["energy_complex/cytochrome_o_ubiquinol_oxidase_complex.html","cytochrome o ubiquinol oxidase complex"]],"b":[["ComplexPortal%3ACPX-2102","Cytochrome bo3 ubiquinol oxidase complex"],["GO%3A0009319","cytochrome o ubiquinol oxidase complex"],["GO%3A0009486","cytochrome bo3 ubiquinol oxidase activity"],["GO%3A0015453","oxidoreduction-driven active transmembrane transporter activity"],["GO%3A0015990","electron transport coupled proton transport"],["NCBIfam%3ANF007878","cytochrome o ubiquinol oxidase subunit IV"]]},{"id":"UniProt:P0ADY3","l":"Large ribosomal subunit protein uL14","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01067","50S ribosomal protein L14"],["InterPro%3AIPR019972","Large ribosomal subunit protein uL14, conserved site"],["CDD%3Acd00337","Ribosomal_uL14"],["Pfam%3APF00238","Ribosomal protein L14p/L23e"],["InterPro%3AIPR036853","Large ribosomal subunit protein uL14 superfamily"]]},{"id":"UniProt:P0AG51","l":"Large ribosomal subunit protein uL30","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01308","50S ribosomal protein L30"],["InterPro%3AIPR018038","Large ribosomal subunit protein uL30, conserved site"],["CDD%3Acd01658","Ribosomal_L30"],["InterPro%3AIPR016082","Large ribosomal subunit protein uL30-like, ferredoxin-like fold domain"],["Pfam%3APF00327","Ribosomal protein L30p/L7e"]]},{"id":"UniProt:P0AG55","l":"Large ribosomal subunit protein uL6","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR03654","50S ribosomal protein L6"],["InterPro%3AIPR002358","Large ribosomal subunit protein uL6, conserved site"],["InterPro%3AIPR020040","Large ribosomal subunit protein uL6, alpha-beta domain"],["Pfam%3APF00347","Ribosomal protein L6"],["InterPro%3AIPR036789","Large ribosomal subunit protein uL6-like, alpha-beta domain superfamily"]]},{"id":"UniProt:P16926","l":"","na":1,"nb":8,"a":[["division_machinery/elongasome.html","elongasome"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["NCBIfam%3ATIGR00219","rod shape-determining protein MreC"],["InterPro%3AIPR055342","Rod shape-determining protein MreC, beta-barrel core"],["Pfam%3APF04085","Rod shape-determining protein MreC, barrel core"],["InterPro%3AIPR042177","Cell/Rod shape-determining protein MreC, domain 1"],["InterPro%3AIPR042175","Cell/Rod shape-determining protein MreC, domain 2"]]},{"id":"UniProt:P60624","l":"Large ribosomal subunit protein uL24","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01079","50S ribosomal protein L24"],["InterPro%3AIPR005825","Large ribosomal subunit protein uL24, conserved site"],["CDD%3Acd06089","KOW_RPL26"],["InterPro%3AIPR057264","Large ribosomal subunit protein uL24, C-terminal domain"],["InterPro%3AIPR041988","Large ribosomal subunit protein uL24, KOW domain"]]},{"id":"UniProt:P68919","l":"Large ribosomal subunit protein bL25","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ANF004612","50S ribosomal protein L25"],["CDD%3Acd00495","Ribosomal_L25_TL5_CTC"],["InterPro%3AIPR029751","Large ribosomal subunit protein bL25, L25 domain"],["Pfam%3APF01386","Ribosomal L25p family"],["InterPro%3AIPR011035","Large ribosomal subunit protein bL25/Gln-tRNA synthetase, anti-codon-binding domain superfamily"]]},{"id":"GO:0006901","l":"vesicle coat assembly","na":1,"nb":7,"a":[["other/vesicle_coat.html","vesicle coat"]],"b":[["ComplexPortal%3ACPX-4764","TRAPP II complex"],["ComplexPortal%3ACPX-4749","TRAPP II complex, TRAPPC2 variant"],["ComplexPortal%3ACPX-6902","TRAPP II complex, TRAPPC2B variant"],["GO%3A0048208","COPII vesicle coat assembly"],["GO%3A0048200","Golgi transport vesicle coating"],["GO%3A0016183","synaptic vesicle coating"]]},{"id":"GO:0009338","l":"exodeoxyribonuclease V complex","na":1,"nb":7,"a":[["other/exodeoxyribonuclease_v_complex.html","exodeoxyribonuclease V complex"]],"b":[["ComplexPortal%3ACPX-2197","Exodeoxyribonuclease V complex"],["GO%3A0009338","exodeoxyribonuclease V complex"],["NCBIfam%3ANF008127","exodeoxyribonuclease V subunit alpha"],["NCBIfam%3ATIGR01447","exodeoxyribonuclease V subunit alpha"],["NCBIfam%3ATIGR00609","exodeoxyribonuclease V subunit beta"],["NCBIfam%3ANF008289","exodeoxyribonuclease V subunit gamma"]]},{"id":"GO:0030128","l":"clathrin coat of endocytic vesicle","na":7,"nb":1,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle.html","clathrin-coated endocytic vesicle"],["membrane_organelle/clathrin_coated_endocytic_vesicle_membrane.html","clathrin-coated endocytic vesicle membrane"],["membrane_organelle/endocytic_vesicle.html","endocytic vesicle"],["membrane_organelle/endocytic_vesicle_membrane.html","endocytic vesicle membrane"],["other/ap_2_adaptor_complex.html","AP-2 adaptor complex"],["other/clathrin_coat_of_coated_pit.html","clathrin coat of coated pit"]],"b":[["GO%3A0030128","clathrin coat of endocytic vesicle"]]},{"id":"GO:0030897","l":"HOPS complex","na":1,"nb":7,"a":[["other/hops_complex.html","HOPS complex"]],"b":[["ComplexPortal%3ACPX-1136","HOPS tethering complex"],["ComplexPortal%3ACPX-1625","HOPS tethering complex"],["ComplexPortal%3ACPX-6212","HOPS tethering complex"],["ComplexPortal%3ACPX-936","HOPS tethering complex"],["GO%3A0030897","HOPS complex"],["GO%3A1902502","multivesicular body HOPS complex"]]},{"id":"GO:0032156","l":"septin cytoskeleton","na":1,"nb":7,"a":[["cytoskeleton/septin_ring.html","septin ring"]],"b":[["GO%3A0150050","postsynaptic septin cytoskeleton"],["GO%3A0032159","septin cap"],["GO%3A0032173","septin collar"],["GO%3A0032156","septin cytoskeleton"],["GO%3A0032160","septin filament array"],["GO%3A0005940","septin ring"]]},{"id":"GO:0033115","l":"cyanelle thylakoid membrane","na":7,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/cyanelle_thylakoid_lumen.html","cyanelle thylakoid lumen"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"]],"b":[["GO%3A0033115","cyanelle thylakoid membrane"]]},{"id":"GO:0035964","l":"COPI-coated vesicle budding","na":7,"nb":1,"a":[["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"],["membrane_organelle/golgi_membrane.html","Golgi membrane"],["other/copi_vesicle_coat.html","COPI vesicle coat"]],"b":[["GO%3A0035964","COPI-coated vesicle budding"]]},{"id":"GO:0043953","l":"protein transport by the Tat complex","na":1,"nb":7,"a":[["secretion_system/tat_protein_transport_complex.html","TAT protein transport complex"]],"b":[["ComplexPortal%3ACPX-3445","Twin-arginine translocation complex"],["GO%3A0043953","protein transport by the Tat complex"],["NCBIfam%3ANF001854","Sec-independent protein translocase subunit TatA"],["NCBIfam%3ANF002813","Sec-independent protein translocase subunit TatA"],["NCBIfam%3ATIGR01912","Sec-independent protein translocase TatC"],["NCBIfam%3ANF001940","twin-arginine translocase TatA/TatE family subunit"]]},{"id":"GO:0097540","l":"axonemal central pair","na":7,"nb":1,"a":[["cytoskeleton/axonemal_central_apparatus.html","axonemal central apparatus"],["cytoskeleton/axonemal_central_pair.html","axonemal central pair"],["cytoskeleton/axonemal_central_pair_projection.html","axonemal central pair projection"],["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"],["cytoskeleton/c1_axonemal_microtubule.html","C1 axonemal microtubule"],["cytoskeleton/c2_axonemal_microtubule.html","C2 axonemal microtubule"]],"b":[["GO%3A0097540","axonemal central pair"]]},{"id":"GO:0097597","l":"ventral disc","na":7,"nb":1,"a":[["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_crossbridge.html","ventral disc crossbridge"],["cytoskeleton/ventral_disc_dorsal_microribbon.html","ventral disc dorsal microribbon"],["cytoskeleton/ventral_disc_lateral_crest.html","ventral disc lateral crest"],["cytoskeleton/ventral_disc_microtubule_array.html","ventral disc microtubule array"],["cytoskeleton/ventral_disc_overlap_zone.html","ventral disc overlap zone"]],"b":[["GO%3A0097597","ventral disc"]]},{"id":"GO:0097649","l":"A axonemal microtubule","na":7,"nb":1,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_a_tubule_inner_sheath.html","axonemal A tubule inner sheath"],["cytoskeleton/axonemal_doublet_microtubule.html","axonemal doublet microtubule"],["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"],["cytoskeleton/axonemal_microtubule_doublet_inner_junction.html","axonemal microtubule doublet inner junction"],["cytoskeleton/axonemal_microtubule_doublet_outer_junction.html","axonemal microtubule doublet outer junction"]],"b":[["GO%3A0097649","A axonemal microtubule"]]},{"id":"GO:0097650","l":"B axonemal microtubule","na":7,"nb":1,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_b_tubule_inner_sheath.html","axonemal B tubule inner sheath"],["cytoskeleton/axonemal_doublet_microtubule.html","axonemal doublet microtubule"],["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"],["cytoskeleton/axonemal_microtubule_doublet_inner_junction.html","axonemal microtubule doublet inner junction"],["cytoskeleton/axonemal_microtubule_doublet_outer_junction.html","axonemal microtubule doublet outer junction"]],"b":[["GO%3A0097650","B axonemal microtubule"]]},{"id":"InterPro:IPR001119","l":"S-layer homology domain","na":1,"nb":7,"a":[["envelope/s_layer.html","S-layer"]],"b":[["InterPro%3AIPR011459","Domain of unknown function DUF1565"],["InterPro%3AIPR001119","S-layer homology domain"],["Pfam%3APF13205","Bacterial Ig-like domain"],["Pfam%3APF03424","Carbohydrate binding domain (family 17/28)"],["Pfam%3APF06452","Carbohydrate family 9 binding domain-like"],["Pfam%3APF07602","Protein of unknown function (DUF1565)"]]},{"id":"InterPro:IPR001241","l":"","na":1,"nb":7,"a":[["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["Pfam%3APF00204","DNA gyrase B"],["Pfam%3APF00521","DNA gyrase/topoisomerase IV, subunit A"],["Pfam%3APF21249","GyrB, hook"],["Pfam%3APF18053","DNA gyrase B subunit insert domain"],["Pfam%3APF00986","DNA gyrase B subunit, carboxyl terminus"],["Pfam%3APF08070","DTHCT (NUC029) region"]]},{"id":"InterPro:IPR004489","l":"","na":1,"nb":7,"a":[["energy_complex/fumarate_reductase_complex.html","fumarate reductase complex"]],"b":[["Pfam%3APF02754","Cysteine-rich domain"],["Pfam%3APF13085","2Fe-2S iron-sulfur cluster binding domain"],["Pfam%3APF13237","4Fe-4S dicluster domain"],["Pfam%3APF13534","4Fe-4S dicluster domain"],["Pfam%3APF13183","4Fe-4S dicluster domain"],["PROSITE%3APS00197","2Fe-2S ferredoxin-type iron-sulfur binding region signature"]]},{"id":"NCBITaxon:837","l":"Porphyromonas gingivalis","na":1,"nb":7,"a":[["secretion_system/type_ix_protein_secretion_system_complex.html","type IX protein secretion system complex"]],"b":[["Pfam%3APF07675","Cleaved Adhesin Domain"],["Pfam%3APF22492","FimA4 pilin C-terminal domain"],["Pfam%3APF15495","Major fimbrial subunit protein type IV, Fimbrillin, C-terminal"],["Pfam%3APF26306","FimD protein third domain"],["Pfam%3APF27397","FimE C-terminal domain"],["Pfam%3APF10365","Domain of unknown function (DUF2436)"]]},{"id":"Pfam:PF04728","l":"Lipoprotein leucine-zipper","na":1,"nb":7,"a":[["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"]],"b":[["GO%3A0043580","periplasmic space organization"],["NCBIfam%3ANF007428","lipoprotein YqhH"],["NCBIfam%3ANF040598","Lpp/OprI family alanine-zipper lipoprotein"],["NCBIfam%3ANF011925","major outer membrane lipoprotein"],["InterPro%3AIPR006817","Lipoprotein leucine-zipper"],["Pfam%3APF04728","Lipoprotein leucine-zipper"]]},{"id":"UniProt:P0A7K6","l":"Large ribosomal subunit protein bL19","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01024","50S ribosomal protein L19"],["InterPro%3AIPR018257","Large ribosomal subunit protein bL19, conserved site"],["Pfam%3APF01245","Ribosomal protein L19"],["InterPro%3AIPR038657","Large ribosomal subunit protein bL19 superfamily"],["PROSITE%3APS01015","Ribosomal protein L19 signature"]]},{"id":"UniProt:P0A7N1","l":"Large ribosomal subunit protein bL31B","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00105","50S ribosomal protein L31"],["NCBIfam%3ANF002462","type B 50S ribosomal protein L31"],["Pfam%3APF01197","Ribosomal protein L31"],["InterPro%3AIPR042105","Large ribosomal subunit protein bL31 superfamily"],["PROSITE%3APS01143","Ribosomal protein L31 signature"]]},{"id":"UniProt:P0A7Q1","l":"Large ribosomal subunit protein bL35","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00001","50S ribosomal protein L35"],["InterPro%3AIPR018265","Large ribosomal subunit protein bL35, conserved site"],["Pfam%3APF01632","Ribosomal protein L35"],["InterPro%3AIPR037229","Large ribosomal subunit protein bL35 superfamily"],["PROSITE%3APS00936","Ribosomal protein L35 signature"]]},{"id":"UniProt:P0A7T3","l":"Small ribosomal subunit protein bS16","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR00002","30S ribosomal protein S16"],["InterPro%3AIPR020592","Small ribosomal subunit protein bS16, conserved site"],["Pfam%3APF00886","Ribosomal protein S16"],["InterPro%3AIPR023803","Small ribosomal subunit protein bS16 domain superfamily"],["PROSITE%3APS00732","Ribosomal protein S16 signature"]]},{"id":"UniProt:P0A7T7","l":"Small ribosomal subunit protein bS18","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR00165","30S ribosomal protein S18"],["InterPro%3AIPR018275","Small ribosomal subunit protein bS18, conserved site"],["Pfam%3APF01084","Ribosomal protein S18"],["InterPro%3AIPR036870","Small ribosomal subunit protein bS18 superfamily"],["PROSITE%3APS00057","Ribosomal protein S18 signature"]]},{"id":"UniProt:P0A7U3","l":"Small ribosomal subunit protein uS19","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR01050","30S ribosomal protein S19"],["InterPro%3AIPR020934","Small ribosomal subunit protein uS19, conserved site"],["Pfam%3APF00203","Ribosomal protein S19"],["InterPro%3AIPR023575","Small ribosomal subunit protein uS19, superfamily"],["PROSITE%3APS00323","Ribosomal protein S19 signature"]]},{"id":"UniProt:P0A7U7","l":"Small ribosomal subunit protein bS20","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["GO%3A0008073","ornithine decarboxylase inhibitor activity"],["GO%3A0070181","small ribosomal subunit rRNA binding"],["NCBIfam%3ATIGR00029","30S ribosomal protein S20"],["Pfam%3APF01649","Ribosomal protein S20"],["InterPro%3AIPR036510","Small ribosomal subunit protein bS20 superfamily"]]},{"id":"UniProt:P0A9A6","l":"","na":1,"nb":7,"a":[["division_machinery/divisome_complex.html","divisome complex"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["NCBIfam%3ATIGR00065","cell division protein FtsZ"],["InterPro%3AIPR020805","Cell division protein FtsZ, conserved site"],["CDD%3Acd02201","FtsZ_type1"],["InterPro%3AIPR024757","Cell division protein FtsZ, C-terminal"],["PROSITE%3APS01134","FtsZ protein signature 1"]]},{"id":"UniProt:P0AG44","l":"Large ribosomal subunit protein bL17","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00059","50S ribosomal protein L17"],["InterPro%3AIPR047859","Large ribosomal subunit protein bL17, conserved site"],["Pfam%3APF01196","Ribosomal protein L17"],["InterPro%3AIPR036373","Large ribosomal subunit protein bL17 superfamily"],["PROSITE%3APS01167","Ribosomal protein L17 signature"]]},{"id":"UniProt:P0AG63","l":"Small ribosomal subunit protein uS17","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ANF004123","30S ribosomal protein S17"],["NCBIfam%3ATIGR03635","30S ribosomal protein S17"],["InterPro%3AIPR019979","Small ribosomal subunit protein uS17, conserved site"],["CDD%3Acd00364","Ribosomal_uS17"],["Pfam%3APF00366","Ribosomal protein S17"]]},{"id":"UniProt:P0AGE0","l":"","na":1,"nb":7,"a":[["other/single_stranded_dna_binding_protein_complex.html","single-stranded DNA-binding protein complex"]],"b":[["ComplexPortal%3ACPX-1928","SSB single-stranded DNA binding complex"],["GO%3A0044777","single-stranded DNA-binding protein complex"],["NCBIfam%3ANF006533","single-stranded DNA-binding protein"],["NCBIfam%3ATIGR00621","single-stranded DNA-binding protein"],["CDD%3Acd04496","SSB_OBF"],["Pfam%3APF00436","Single-strand binding protein family"]]},{"id":"UniProt:P23447","l":"","na":1,"nb":7,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0009431","bacterial-type flagellum basal body, MS ring"],["NCBIfam%3ATIGR00206","flagellar basal-body MS-ring/collar protein FliF"],["InterPro%3AIPR013556","Flagellar M-ring C-terminal"],["InterPro%3AIPR006182","Flagellar M-ring, N-terminal"],["Pfam%3APF08345","Flagellar M-ring protein C-terminal"],["Pfam%3APF01514","Secretory protein of YscJ/FliF RBM domain"]]},{"id":"UniProt:P28611","l":"","na":1,"nb":7,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["NCBIfam%3ANF005997","flagellar motor stator protein MotA"],["InterPro%3AIPR000540","Flagellar motor protein MotA, conserved site"],["InterPro%3AIPR002898","MotA/TolQ/ExbB proton channel"],["InterPro%3AIPR046786","Motility protein A, N-terminal"],["Pfam%3APF20560","Motility protein A N-terminal"],["Pfam%3APF01618","MotA/TolQ/ExbB proton channel family"]]},{"id":"UniProt:P68679","l":"Small ribosomal subunit protein bS21","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR00030","30S ribosomal protein S21"],["InterPro%3AIPR018278","Small ribosomal subunit protein bS21, conserved site"],["Pfam%3APF01165","Ribosomal protein S21"],["InterPro%3AIPR038380","Small ribosomal subunit protein bS21 superfamily"],["PROSITE%3APS01181","Ribosomal protein S21 signature"]]},{"id":"UniProt:P77173","l":"","na":1,"nb":7,"a":[["division_machinery/divisome_complex.html","divisome complex"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["NCBIfam%3ATIGR02205","cell division protein ZipA"],["CDD%3Acd00231","ZipA"],["InterPro%3AIPR007449","ZipA, C-terminal FtsZ-binding domain"],["Pfam%3APF04354","ZipA, C-terminal FtsZ-binding domain"],["InterPro%3AIPR036765","ZipA, C-terminal FtsZ-binding domain superfamily"]]},{"id":"CHEBI:35915","l":"","na":1,"nb":6,"a":[["inclusion/lipid_droplet.html","lipid droplet"]],"b":[["EC%3A2.3.1.43","phosphatidylcholine--sterol O-acyltransferase"],["EC%3A2.3.1.73","diacylglycerol--sterol O-acyltransferase"],["EC%3A3.1.1.13","sterol esterase"],["RHEA%3A21204","a sterol + a 1,2-diacyl-sn-glycero-3-phosphocholine = a sterol ester + a 1-acyl-sn-glycero-3-phosphocholine"],["RHEA%3A13301","a sterol + a 1,2-diacyl-sn-glycerol = a sterol ester + a 1-acyl-sn-glycerol"],["RHEA%3A10100","a sterol ester + H2O = a sterol + a fatty acid + H(+)"]]},{"id":"GO:0000133","l":"polarisome","na":1,"nb":6,"a":[["other/polarisome.html","polarisome"]],"b":[["ComplexPortal%3ACPX-3188","Polarisome"],["GO%3A0031560","cellular bud neck polarisome"],["GO%3A0031561","cellular bud tip polarisome"],["GO%3A0031562","hyphal tip polarisome"],["GO%3A0031563","mating projection tip polarisome"],["GO%3A0000133","polarisome"]]},{"id":"GO:0000148","l":"1,3-beta-D-glucan synthase complex","na":1,"nb":6,"a":[["other/1_3_beta_d_glucan_synthase_complex.html","1,3-beta-D-glucan synthase complex"]],"b":[["ComplexPortal%3ACPX-1812","1,3-beta-D-glucan synthase complex, FKS1-RHO1 variant"],["ComplexPortal%3ACPX-1813","1,3-beta-D-glucan synthase complex, FKS2-RHO1 variant"],["ComplexPortal%3ACPX-3028","1,3-beta-D-glucan synthase complex, FKS3-RHO1 variant"],["GO%3A0000148","1,3-beta-D-glucan synthase complex"],["InterPro%3AIPR003440","Glycosyl transferase 48 domain"],["Pfam%3APF02364","1,3-beta-glucan synthase component"]]},{"id":"GO:0000938","l":"GARP complex","na":1,"nb":6,"a":[["other/garp_complex.html","GARP complex"]],"b":[["ComplexPortal%3ACPX-1718","GARP tethering complex"],["ComplexPortal%3ACPX-365","GARP tethering complex"],["ComplexPortal%3ACPX-6208","GARP tethering complex"],["ComplexPortal%3ACPX-2788","GARP tethering complex, Vps50 variant"],["ComplexPortal%3ACPX-2793","GARP tethering complex, Vps54 variant"],["GO%3A0000938","GARP complex"]]},{"id":"GO:0001401","l":"SAM complex","na":1,"nb":6,"a":[["other/sam_complex.html","SAM complex"]],"b":[["ComplexPortal%3ACPX-1744","Mitochondrial sorting and assembly machinery complex"],["ComplexPortal%3ACPX-6133","SAM mitochondrial sorting and assembly machinery complex"],["GO%3A0001401","SAM complex"],["InterPro%3AIPR019564","Mitochondrial outer membrane transport complex Sam37/metaxin, N-terminal domain"],["NCBIfam%3ANF022041","Tom37 metaxin N-terminal-like domain-containing protein"],["Pfam%3APF10568","Outer mitochondrial membrane transport complex protein"]]},{"id":"GO:0005693","l":"U12 snRNP","na":6,"nb":1,"a":[["ribonucleoprotein/u11_u12_snrnp.html","U11/U12 snRNP"],["ribonucleoprotein/u12_snrnp.html","U12 snRNP"],["ribonucleoprotein/u12_type_catalytic_step_1_spliceosome.html","U12-type catalytic step 1 spliceosome"],["ribonucleoprotein/u12_type_catalytic_step_2_spliceosome.html","U12-type catalytic step 2 spliceosome"],["ribonucleoprotein/u12_type_post_mrna_release_spliceosomal_complex.html","U12-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u12_type_post_spliceosomal_complex.html","U12-type post-spliceosomal complex"]],"b":[["GO%3A0005693","U12 snRNP"]]},{"id":"GO:0006797","l":"polyphosphate metabolic process","na":1,"nb":6,"a":[["membrane_organelle/acidocalcisome.html","acidocalcisome"]],"b":[["GO%3A0006799","polyphosphate biosynthetic process"],["GO%3A0006798","polyphosphate catabolic process"],["GO%3A0006797","polyphosphate metabolic process"],["NCBIfam%3ANF042973","ADP-polyphosphate phosphotransferase"],["NCBIfam%3ATIGR03708","polyphosphate:AMP phosphotransferase"],["NCBIfam%3ATIGR03709","PPK2 family polyphosphate kinase"]]},{"id":"GO:0006998","l":"nuclear envelope organization","na":1,"nb":6,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"]],"b":[["ComplexPortal%3ACPX-1787","Nem1-Spo7 phosphatase complex"],["GO%3A0006998","nuclear envelope organization"],["GO%3A0018985","pronuclear envelope synthesis"],["PANTHER%3APTHR47808","INNER NUCLEAR MEMBRANE PROTEIN HEH2-RELATED"],["PANTHER%3APTHR28538","INTEGRAL INNER NUCLEAR MEMBRANE PROTEIN IMA1"],["PANTHER%3APTHR28136","NUCLEUS EXPORT PROTEIN BRR6"]]},{"id":"GO:0009843","l":"cyanelle thylakoid","na":6,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/cyanelle_thylakoid_lumen.html","cyanelle thylakoid lumen"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"],["membrane_organelle/plastid_thylakoid.html","plastid thylakoid"]],"b":[["GO%3A0009843","cyanelle thylakoid"]]},{"id":"GO:0020008","l":"rhoptry","na":6,"nb":1,"a":[["membrane_organelle/mononeme.html","mononeme"],["membrane_organelle/rhoptry.html","rhoptry"],["membrane_organelle/rhoptry_lumen.html","rhoptry lumen"],["membrane_organelle/rhoptry_membrane.html","rhoptry membrane"],["membrane_organelle/rhoptry_neck.html","rhoptry neck"],["other/apical_complex.html","apical complex"]],"b":[["GO%3A0020008","rhoptry"]]},{"id":"GO:0033112","l":"cyanelle envelope","na":6,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"]],"b":[["GO%3A0033112","cyanelle envelope"]]},{"id":"GO:0033114","l":"cyanelle thylakoid lumen","na":6,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/cyanelle_thylakoid_lumen.html","cyanelle thylakoid lumen"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"],["membrane_organelle/plastid_thylakoid_lumen.html","plastid thylakoid lumen"]],"b":[["GO%3A0033114","cyanelle thylakoid lumen"]]},{"id":"GO:0036012","l":"cyanelle inner membrane","na":6,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"]],"b":[["GO%3A0036012","cyanelle inner membrane"]]},{"id":"GO:0038203","l":"TORC2 signaling","na":1,"nb":6,"a":[["other/torc2_complex.html","TORC2 complex"]],"b":[["ComplexPortal%3ACPX-2269","TORC2 complex"],["ComplexPortal%3ACPX-26513","TORC2 serine/threonine protein kinase complex"],["GO%3A0038203","TORC2 signaling"],["PANTHER%3APTHR13298","CYTOSOLIC REGULATOR PIANISSIMO"],["PANTHER%3APTHR32428","TARGET OF RAPAMYCIN COMPLEX 2 SUBUNIT BIT61-RELATED"],["PANTHER%3APTHR13335","TARGET OF RAPAMYCIN COMPLEX 2 SUBUNIT MAPKAP1"]]},{"id":"GO:0043264","l":"extracellular membraneless organelle","na":1,"nb":6,"a":[["other/cellulosome.html","cellulosome"]],"b":[["GO%3A0043263","cellulosome"],["GO%3A0043264","extracellular membraneless organelle"],["GO%3A0140644","neutrophil extracellular trap"],["GO%3A0055040","periplasmic flagellum"],["GO%3A0055039","trichocyst"],["GO%3A0085026","tubovesicular membrane network"]]},{"id":"GO:0043595","l":"endospore cortex","na":6,"nb":1,"a":[["spore/endospore_coat.html","endospore coat"],["spore/endospore_core.html","endospore core"],["spore/endospore_cortex.html","endospore cortex"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"],["spore/outer_endospore_membrane.html","outer endospore membrane"],["spore/spore_inner_membrane.html","spore inner membrane"]],"b":[["GO%3A0043595","endospore cortex"]]},{"id":"GO:0070111","l":"organellar chromatophore","na":6,"nb":1,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_inner_membrane.html","organellar chromatophore inner membrane"],["membrane_organelle/organellar_chromatophore_intermembrane_space.html","organellar chromatophore intermembrane space"],["membrane_organelle/organellar_chromatophore_membrane.html","organellar chromatophore membrane"],["membrane_organelle/organellar_chromatophore_outer_membrane.html","organellar chromatophore outer membrane"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"]],"b":[["GO%3A0070111","organellar chromatophore"]]},{"id":"GO:0070118","l":"organellar chromatophore thylakoid membrane","na":6,"nb":1,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_membrane.html","organellar chromatophore membrane"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"],["membrane_organelle/organellar_chromatophore_thylakoid_lumen.html","organellar chromatophore thylakoid lumen"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"],["membrane_organelle/plastid_thylakoid_membrane.html","plastid thylakoid membrane"]],"b":[["GO%3A0070118","organellar chromatophore thylakoid membrane"]]},{"id":"NCBITaxon:1430","l":"Bacillus thuringiensis subsp. israelensis","na":1,"nb":6,"a":[["inclusion/parasporal_crystal.html","parasporal crystal"]],"b":[["Pfam%3APF01338","Bacillus thuringiensis toxin"],["Pfam%3APF17997","Insecticidal delta-endotoxin CryIA(c) domain 5"],["Pfam%3APF21463","Cry1Ac, domain VII"],["Pfam%3APF03944","delta endotoxin"],["Pfam%3APF03945","delta endotoxin, N-terminal domain"],["Pfam%3APF00555","delta endotoxin"]]},{"id":"NCBITaxon:5141","l":"Neurospora crassa","na":6,"nb":1,"a":[["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysomal_membrane.html","glyoxysomal membrane"],["membrane_organelle/glyoxysome.html","glyoxysome"],["membrane_organelle/woronin_body.html","Woronin body"],["other/polarisome.html","polarisome"],["other/spitzenkorper.html","spitzenkorper"]],"b":[["TED%3AAF-A0A0B0E1R4-F1-model_v4_TED01","TED novel fold AF-A0A0B0E1R4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:5911","l":"Tetrahymena thermophila","na":6,"nb":1,"a":[["cytoskeleton/axonemal_microtubule_doublet_outer_junction.html","axonemal microtubule doublet outer junction"],["membrane_organelle/macronucleus.html","macronucleus"],["membrane_organelle/micronucleus.html","micronucleus"],["membrane_organelle/mucocyst.html","mucocyst"],["other/ap_3_adaptor_complex.html","AP-3 adaptor complex"],["other/ap_type_membrane_coat_adaptor_complex.html","AP-type membrane coat adaptor complex"]],"b":[["Pfam%3APF10699","Male gamete fusion factor"]]},{"id":"UniProt:P02968","l":"","na":1,"nb":6,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["NCBIfam%3ANF009446","flagellin Hag"],["InterPro%3AIPR046358","Flagellin, C-terminal domain"],["InterPro%3AIPR001029","Flagellin, N-terminal domain"],["Pfam%3APF00700","Bacterial flagellin C-terminal helical region"],["Pfam%3APF00669","Bacterial flagellin N-terminal helical region"],["CATH%3A1.20.1330.10","f41 fragment of flagellin, N-terminal domain"]]},{"id":"UniProt:P0A7M2","l":"Large ribosomal subunit protein bL28","na":1,"nb":6,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00009","50S ribosomal protein L28"],["Pfam%3APF00830","Ribosomal L28 family"],["InterPro%3AIPR034704","Large ribosomal subunit protein bL28/bL31-like superfamily"],["InterPro%3AIPR037147","Large ribosomal subunit protein bL28 superfamily"],["CATH%3A2.30.170.40","Ribosomal protein L28/L24"]]},{"id":"UniProt:P0A7P5","l":"Large ribosomal subunit protein bL34","na":1,"nb":6,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01030","50S ribosomal protein L34"],["InterPro%3AIPR020939","Large ribosomal subunit protein bL34, conserved site"],["Pfam%3APF00468","Ribosomal protein L34"],["PROSITE%3APS00784","Ribosomal protein L34 signature"],["CATH%3A1.10.287.3980","CATH homologous superfamily 1.10.287.3980"]]},{"id":"UniProt:P0ADZ0","l":"Large ribosomal subunit protein uL23","na":1,"nb":6,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ANF004358","50S ribosomal protein L23"],["NCBIfam%3ANF004359","50S ribosomal protein L23"],["NCBIfam%3ANF004363","50S ribosomal protein L23"],["InterPro%3AIPR001014","Large ribosomal subunit protein uL23, conserved site"],["PROSITE%3APS00050","Ribosomal protein L23 signature"]]},{"id":"UniProt:P0AG48","l":"Large ribosomal subunit protein bL21","na":1,"nb":6,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00061","50S ribosomal protein L21"],["InterPro%3AIPR018258","Large ribosomal subunit protein bL21, conserved site"],["Pfam%3APF00829","Ribosomal prokaryotic L21 protein"],["InterPro%3AIPR036164","Large ribosomal subunit protein bL21-like superfamily"],["PROSITE%3APS01169","Ribosomal protein L21 signature"]]},{"id":"UniProt:P0AG59","l":"Small ribosomal subunit protein uS14","na":1,"nb":6,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ANF006477","30S ribosomal protein S14"],["InterPro%3AIPR018271","Small ribosomal subunit protein uS14, conserved site"],["Pfam%3APF00253","Ribosomal protein S14p/S29e"],["PROSITE%3APS00527","Ribosomal protein S14 signature"],["CATH%3A1.10.287.1480","CATH homologous superfamily 1.10.287.1480"]]},{"id":"UniProt:P24500","l":"","na":1,"nb":6,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0030694","bacterial-type flagellum basal body, rod"],["NCBIfam%3ATIGR01396","flagellar basal body rod protein FlgB"],["InterPro%3AIPR019776","Flagellar basal body rod protein, conserved site"],["InterPro%3AIPR001444","Flagellar basal body rod protein, N-terminal"],["Pfam%3APF00460","Flagella basal body rod protein"],["PROSITE%3APS00588","Flagella basal body rod proteins signature"]]},{"id":"UniProt:P35528","l":"","na":1,"nb":6,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0009425","bacterial-type flagellum basal body"],["NCBIfam%3ANF009438","EscR/YscR/HrcR family type III secretion system export apparatus protein"],["NCBIfam%3ATIGR01103","flagellar type III secretion system pore protein FliP"],["Pfam%3APF00813","FliP family"],["PROSITE%3APS01060","Flagella transport protein fliP family signature 1"],["PROSITE%3APS01061","Flagella transport protein fliP family signature 2"]]},{"id":"UniProt:P69776","l":"","na":1,"nb":6,"a":[["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"]],"b":[["GO%3A0043580","periplasmic space organization"],["NCBIfam%3ANF040598","Lpp/OprI family alanine-zipper lipoprotein"],["NCBIfam%3ANF011925","major outer membrane lipoprotein"],["proteintraitsmech%3AMEROPS_CLEAVAGE_A08_001","signal peptidase II cleavage specificity"],["InterPro%3AIPR006817","Lipoprotein leucine-zipper"],["Pfam%3APF04728","Lipoprotein leucine-zipper"]]},{"id":"GO:0000171","l":"ribonuclease MRP activity","na":1,"nb":5,"a":[["ribonucleoprotein/ribonuclease_mrp_complex.html","ribonuclease MRP complex"]],"b":[["ComplexPortal%3ACPX-2629","Ribonuclease MRP complex"],["ComplexPortal%3ACPX-26688","Ribonuclease MRP complex"],["ComplexPortal%3ACPX-2876","Ribonuclease MRP complex"],["ComplexPortal%3ACPX-3284","Ribonuclease MRP complex"],["GO%3A0000171","ribonuclease MRP activity"]]},{"id":"GO:0005630","l":"dityrosine layer of spore wall","na":5,"nb":1,"a":[["spore/ascospore_wall.html","ascospore wall"],["spore/chitosan_layer_of_spore_wall.html","chitosan layer of spore wall"],["spore/dityrosine_layer_of_spore_wall.html","dityrosine layer of spore wall"],["spore/inner_layer_of_spore_wall.html","inner layer of spore wall"],["spore/isp3_layer_of_spore_wall.html","Isp3 layer of spore wall"]],"b":[["GO%3A0005630","dityrosine layer of spore wall"]]},{"id":"GO:0005631","l":"chitosan layer of spore wall","na":5,"nb":1,"a":[["spore/ascospore_wall.html","ascospore wall"],["spore/chitosan_layer_of_spore_wall.html","chitosan layer of spore wall"],["spore/dityrosine_layer_of_spore_wall.html","dityrosine layer of spore wall"],["spore/inner_layer_of_spore_wall.html","inner layer of spore wall"],["spore/isp3_layer_of_spore_wall.html","Isp3 layer of spore wall"]],"b":[["GO%3A0005631","chitosan layer of spore wall"]]},{"id":"GO:0009420","l":"bacterial-type flagellum filament","na":5,"nb":1,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["GO%3A0009420","bacterial-type flagellum filament"]]},{"id":"GO:0016610","l":"nitrogenase complex","na":1,"nb":5,"a":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"]],"b":[["GO%3A0016611","iron-iron nitrogenase complex"],["GO%3A0016612","molybdenum-iron nitrogenase complex"],["GO%3A0016610","nitrogenase complex"],["GO%3A0016613","vanadium-iron nitrogenase complex"],["NCBIfam%3ATIGR01287","nitrogenase iron protein"]]},{"id":"GO:0020009","l":"microneme","na":5,"nb":1,"a":[["membrane_organelle/microneme.html","microneme"],["membrane_organelle/microneme_lumen.html","microneme lumen"],["membrane_organelle/microneme_membrane.html","microneme membrane"],["membrane_organelle/mononeme.html","mononeme"],["other/apical_complex.html","apical complex"]],"b":[["GO%3A0020009","microneme"]]},{"id":"GO:0030075","l":"bacterial thylakoid","na":5,"nb":1,"a":[["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_lumen.html","plasma membrane-derived thylakoid lumen"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"]],"b":[["GO%3A0030075","bacterial thylakoid"]]},{"id":"GO:0031522","l":"cell envelope Sec protein transport complex","na":1,"nb":5,"a":[["secretion_system/secyeg_translocon_complex.html","SecYEG translocon complex"]],"b":[["ComplexPortal%3ACPX-1095","Holo-translocon SecYEG-SecDF-YajC-YidC complex"],["ComplexPortal%3ACPX-1096","Protein-conducting channel SecYEG complex"],["GO%3A0031522","cell envelope Sec protein transport complex"],["NCBIfam%3ATIGR01129","protein translocase subunit SecD"],["NCBIfam%3ATIGR00966","protein translocase subunit SecF"]]},{"id":"GO:0031676","l":"plasma membrane-derived thylakoid membrane","na":5,"nb":1,"a":[["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_lumen.html","plasma membrane-derived thylakoid lumen"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"]],"b":[["GO%3A0031676","plasma membrane-derived thylakoid membrane"]]},{"id":"GO:0033263","l":"CORVET complex","na":1,"nb":5,"a":[["other/corvet_complex.html","CORVET complex"]],"b":[["ComplexPortal%3ACPX-1137","CORVET tethering complex"],["ComplexPortal%3ACPX-1626","CORVET tethering complex"],["ComplexPortal%3ACPX-6213","CORVET tethering complex"],["ComplexPortal%3ACPX-8877","CORVET tethering complex"],["GO%3A0033263","CORVET complex"]]},{"id":"GO:0034982","l":"mitochondrial protein processing","na":1,"nb":5,"a":[["other/mitochondrial_inner_membrane_peptidase_complex.html","mitochondrial inner membrane peptidase complex"]],"b":[["ComplexPortal%3ACPX-10319","m-AAA protease complex, AFG3L2-SPG7 variant"],["ComplexPortal%3ACPX-10318","m-AAA protease complex, AFG3L2 variant"],["GO%3A0034982","mitochondrial protein processing"],["PANTHER%3APTHR21711","MITOCHONDRIAL INNER MEMBRANE PROTEASE"],["PANTHER%3APTHR46041","MITOCHONDRIAL INNER MEMBRANE PROTEASE SUBUNIT 2"]]},{"id":"GO:0035632","l":"mitochondrial prohibitin complex","na":1,"nb":5,"a":[["other/mitochondrial_prohibitin_complex.html","mitochondrial prohibitin complex"]],"b":[["ComplexPortal%3ACPX-1703","Prohibitin complex"],["ComplexPortal%3ACPX-4114","Prohibitin complex"],["ComplexPortal%3ACPX-5741","Prohibitin complex"],["ComplexPortal%3ACPX-5743","Prohibitin complex"],["GO%3A0035632","mitochondrial prohibitin complex"]]},{"id":"GO:0036013","l":"cyanelle outer membrane","na":5,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"]],"b":[["GO%3A0036013","cyanelle outer membrane"]]},{"id":"GO:0036014","l":"cyanelle intermembrane space","na":5,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"]],"b":[["GO%3A0036014","cyanelle intermembrane space"]]},{"id":"GO:0043291","l":"RAVE complex","na":1,"nb":5,"a":[["other/rave_complex.html","RAVE complex"]],"b":[["ComplexPortal%3ACPX-1627","RAVE complex"],["ComplexPortal%3ACPX-25781","RAVE complex"],["ComplexPortal%3ACPX-10301","RAVE complex, DMXL1 variant"],["ComplexPortal%3ACPX-10303","RAVE complex, DMXL2 variant"],["GO%3A0043291","RAVE complex"]]},{"id":"GO:0043684","l":"type IV secretion system complex","na":1,"nb":5,"a":[["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]],"b":[["GO%3A0043684","type IV secretion system complex"],["NCBIfam%3ANF049884","Dot/Icm T4SS effector Ceg23"],["NCBIfam%3ATIGR02788","P-type DNA transfer ATPase VirB11"],["NCBIfam%3ATIGR02791","P-type DNA transfer protein VirB5"],["NCBIfam%3ANF047983","T4SS effector phosphatidylinositol 3-Kinase RisK1"]]},{"id":"GO:0046336","l":"ethanolamine catabolic process","na":1,"nb":5,"a":[["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"]],"b":[["ComplexPortal%3ACPX-2313","Ethanolamine ammonia-lyase complex"],["GO%3A0046336","ethanolamine catabolic process"],["NCBIfam%3ATIGR04502","ethanolamine utilization microcompartment protein EutL"],["NCBIfam%3ATIGR02526","ethanolamine utilization microcompartment shell protein"],["NCBIfam%3ATIGR02528","EutP/PduV family microcompartment system protein"]]},{"id":"GO:0050215","l":"propanediol dehydratase activity","na":1,"nb":5,"a":[["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]],"b":[["EC%3A4.2.1.28","propanediol dehydratase"],["RHEA%3A14569","propane-1,2-diol = propanal + H2O"],["GO%3A0050215","propanediol dehydratase activity"],["MCSA%3A494","propanediol dehydratase"],["proteintraitsmech%3ABIOLIP_FWK","FWK-binding site"]]},{"id":"GO:0071256","l":"translocon complex","na":1,"nb":5,"a":[["other/ssh1_translocon_complex.html","Ssh1 translocon complex"]],"b":[["ComplexPortal%3ACPX-8024","Translocon-associated protein complex"],["ComplexPortal%3ACPX-3055","Translocon complex"],["GO%3A0005784","Sec61 translocon complex"],["GO%3A0071261","Ssh1 translocon complex"],["GO%3A0071256","translocon complex"]]},{"id":"GO:0097593","l":"ventral disc microtubule array","na":5,"nb":1,"a":[["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_dorsal_microribbon.html","ventral disc dorsal microribbon"],["cytoskeleton/ventral_disc_microtubule_array.html","ventral disc microtubule array"],["cytoskeleton/ventral_disc_overlap_zone.html","ventral disc overlap zone"],["cytoskeleton/ventral_disc_supernumerary_microtubule_array.html","ventral disc supernumerary microtubule array"]],"b":[["GO%3A0097593","ventral disc microtubule array"]]},{"id":"GO:1990717","l":"axonemal central bridge","na":5,"nb":1,"a":[["cytoskeleton/axonemal_central_apparatus.html","axonemal central apparatus"],["cytoskeleton/axonemal_central_bridge.html","axonemal central bridge"],["cytoskeleton/axonemal_central_pair.html","axonemal central pair"],["cytoskeleton/c1_axonemal_microtubule.html","C1 axonemal microtubule"],["cytoskeleton/c2_axonemal_microtubule.html","C2 axonemal microtubule"]],"b":[["GO%3A1990717","axonemal central bridge"]]},{"id":"GO:1990719","l":"C1 axonemal microtubule","na":5,"nb":1,"a":[["cytoskeleton/axonemal_central_bridge.html","axonemal central bridge"],["cytoskeleton/axonemal_central_pair.html","axonemal central pair"],["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"],["cytoskeleton/c1_axonemal_microtubule.html","C1 axonemal microtubule"],["cytoskeleton/c2_axonemal_microtubule.html","C2 axonemal microtubule"]],"b":[["GO%3A1990719","C1 axonemal microtubule"]]},{"id":"GO:1990720","l":"C2 axonemal microtubule","na":5,"nb":1,"a":[["cytoskeleton/axonemal_central_bridge.html","axonemal central bridge"],["cytoskeleton/axonemal_central_pair.html","axonemal central pair"],["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"],["cytoskeleton/c1_axonemal_microtubule.html","C1 axonemal microtubule"],["cytoskeleton/c2_axonemal_microtubule.html","C2 axonemal microtubule"]],"b":[["GO%3A1990720","C2 axonemal microtubule"]]},{"id":"InterPro:IPR000090","l":"","na":1,"nb":5,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]],"b":[["Pfam%3APF01706","FliG C-terminal domain"],["PANTHER%3APTHR30534","FLAGELLAR MOTOR SWITCH PROTEIN FLIG"],["Pfam%3APF14841","FliG middle domain"],["Pfam%3APF14842","FliG N-terminal domain"],["PRINTS%3APR00954","Flagellar motor switch protein FliG signature"]]},{"id":"InterPro:IPR045187","l":"","na":1,"nb":5,"a":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]],"b":[["Pfam%3APF00116","Cytochrome C oxidase subunit II, periplasmic domain"],["PANTHER%3APTHR22888","CYTOCHROME C OXIDASE, SUBUNIT II"],["Pfam%3APF02790","Cytochrome C oxidase subunit II, transmembrane domain"],["Pfam%3APF06481","COX Aromatic Rich Motif"],["PROSITE%3APS00078","CO II and nitrous oxide reductase dinuclear copper centers signature"]]},{"id":"UniProt:I6WZG6","l":"","na":1,"nb":5,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]],"b":[["IEDB%3A197918","epitope AARTFKRHIAGRRVV"],["IEDB%3A213387","epitope KPLVRLRVPFTLSRN"],["IEDB%3A218534","epitope RTIFEGYSAASIEGI"],["IEDB%3A219874","epitope TEAAWAEIELEAART"],["Pfam%3APF04454","Encapsulating protein for peroxidase"]]},{"id":"UniProt:I6Y4U9","l":"","na":1,"nb":5,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]],"b":[["IEDB%3A200082","epitope AGSCYVHVQKYVHDM"],["IEDB%3A203626","epitope AVTGGLFFSPTIDFL"],["IEDB%3A205003","epitope DGTERKIVRHNMPFG"],["IEDB%3A211489","epitope HGFRFFDNRDLLGFV"],["IEDB%3A212746","epitope IVRHNMPFGEVGKGE"]]},{"id":"UniProt:P02413","l":"Large ribosomal subunit protein uL15","na":1,"nb":5,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01071","50S ribosomal protein L15"],["InterPro%3AIPR001196","Large ribosomal subunit protein uL15, conserved site"],["Pfam%3APF00828","Ribosomal proteins 50S-L15, 50S-L18e, 60S-L27A"],["PROSITE%3APS00475","Ribosomal protein L15 signature"]]},{"id":"UniProt:P0A7Q6","l":"Large ribosomal subunit protein bL36A","na":1,"nb":5,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01022","50S ribosomal protein L36"],["Pfam%3APF00444","Ribosomal protein L36"],["InterPro%3AIPR035977","Large ribosomal subunit protein bL36 superfamily"],["PROSITE%3APS00828","Ribosomal protein L36 signature"]]},{"id":"UniProt:P0A7X3","l":"Small ribosomal subunit protein uS9","na":1,"nb":5,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ANF001099","30S ribosomal protein S9"],["InterPro%3AIPR020574","Small ribosomal subunit protein uS9, conserved site"],["Pfam%3APF00380","Ribosomal protein S9/S16"],["PROSITE%3APS00360","Ribosomal protein S9 signature"]]},{"id":"UniProt:P24501","l":"","na":1,"nb":5,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0030694","bacterial-type flagellum basal body, rod"],["NCBIfam%3ATIGR01395","flagellar basal body rod protein FlgC"],["InterPro%3AIPR019776","Flagellar basal body rod protein, conserved site"],["InterPro%3AIPR010930","Flagellar basal-body/hook protein, C-terminal domain"],["InterPro%3AIPR001444","Flagellar basal body rod protein, N-terminal"]]},{"id":"UniProt:P35538","l":"","na":1,"nb":5,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["NCBIfam%3ATIGR00328","flagellar biosynthesis protein FlhB"],["Pfam%3APF01312","FlhB HrpN YscU SpaS Family"],["InterPro%3AIPR029025","Type III secretion system substrate exporter, C-terminal"],["CATH%3A6.10.250.2080","CATH homologous superfamily 6.10.250.2080"],["CATH%3A3.40.1690.10","secretion proteins EscU"]]},{"id":"UniProt:P39063","l":"","na":1,"nb":5,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["NCBIfam%3ANF005383","flagellar motor protein MotP"],["InterPro%3AIPR000540","Flagellar motor protein MotA, conserved site"],["InterPro%3AIPR002898","MotA/TolQ/ExbB proton channel"],["Pfam%3APF01618","MotA/TolQ/ExbB proton channel family"],["PROSITE%3APS01307","Flagellar motor protein motA family signature"]]},{"id":"UniProt:P60438","l":"Large ribosomal subunit protein uL3","na":1,"nb":5,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR03625","50S ribosomal protein L3"],["InterPro%3AIPR019926","Large ribosomal subunit protein uL3, conserved site"],["Pfam%3APF00297","Ribosomal protein L3"],["CATH%3A3.30.160.810","CATH homologous superfamily 3.30.160.810"]]},{"id":"GO:0000328","l":"fungal-type vacuole lumen","na":4,"nb":1,"a":[["membrane_organelle/fungal_type_vacuole.html","fungal-type vacuole"],["membrane_organelle/fungal_type_vacuole_lumen.html","fungal-type vacuole lumen"],["membrane_organelle/fungal_type_vacuole_membrane.html","fungal-type vacuole membrane"],["membrane_organelle/vacuole.html","vacuole"]],"b":[["GO%3A0000328","fungal-type vacuole lumen"]]},{"id":"GO:0000331","l":"contractile vacuole","na":4,"nb":1,"a":[["membrane_organelle/contractile_vacuolar_membrane.html","contractile vacuolar membrane"],["membrane_organelle/contractile_vacuole.html","contractile vacuole"],["membrane_organelle/contractile_vacuole_complex.html","contractile vacuole complex"],["membrane_organelle/contractile_vacuole_lumen.html","contractile vacuole lumen"]],"b":[["GO%3A0000331","contractile vacuole"]]},{"id":"GO:0000935","l":"division septum","na":1,"nb":4,"a":[["envelope/division_septum.html","division septum"]],"b":[["ComplexPortal%3ACPX-4602","FtsEX ABC cell division complex"],["GO%3A0000935","division septum"],["GO%3A0000936","primary cell septum"],["GO%3A0051077","secondary cell septum"]]},{"id":"GO:0001535","l":"radial spoke head","na":1,"nb":4,"a":[["cytoskeleton/radial_spoke.html","radial spoke"]],"b":[["GO%3A0120336","radial spoke head 1"],["GO%3A0120337","radial spoke head 2"],["GO%3A0120338","radial spoke head 3"],["GO%3A0001535","radial spoke head"]]},{"id":"GO:0005641","l":"nuclear envelope lumen","na":4,"nb":1,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nuclear_envelope_lumen.html","nuclear envelope lumen"],["membrane_organelle/nuclear_inner_membrane.html","nuclear inner membrane"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"]],"b":[["GO%3A0005641","nuclear envelope lumen"]]},{"id":"GO:0005832","l":"chaperonin-containing T-complex","na":1,"nb":4,"a":[["other/chaperonin_containing_t_complex.html","chaperonin-containing T-complex"]],"b":[["ComplexPortal%3ACPX-2156","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-2772","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-6030","Chaperonin-containing T-complex"],["GO%3A0005832","chaperonin-containing T-complex"]]},{"id":"GO:0005933","l":"cellular bud","na":4,"nb":1,"a":[["envelope/cellular_bud_membrane.html","cellular bud membrane"],["other/cellular_bud.html","cellular bud"],["other/cellular_bud_neck.html","cellular bud neck"],["other/cellular_bud_tip.html","cellular bud tip"]],"b":[["GO%3A0005933","cellular bud"]]},{"id":"GO:0006909","l":"phagocytosis","na":1,"nb":4,"a":[["membrane_organelle/phagocytic_vesicle.html","phagocytic vesicle"]],"b":[["GO%3A0043277","apoptotic cell clearance"],["GO%3A0006909","phagocytosis"],["Reactome%3AR-HSA-9664417","Leishmania phagocytosis"],["InterPro%3AIPR034889","Neutrophil cytosol factor 2, SH3 domain"]]},{"id":"GO:0009543","l":"chloroplast thylakoid lumen","na":4,"nb":1,"a":[["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"],["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"],["membrane_organelle/chloroplast_thylakoid_lumen.html","chloroplast thylakoid lumen"],["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"]],"b":[["GO%3A0009543","chloroplast thylakoid lumen"]]},{"id":"GO:0009842","l":"cyanelle","na":4,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"]],"b":[["GO%3A0009842","cyanelle"]]},{"id":"GO:0010006","l":"Toc complex","na":4,"nb":1,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["other/tic_complex.html","Tic complex"],["other/toc_complex.html","Toc complex"]],"b":[["GO%3A0010006","Toc complex"]]},{"id":"GO:0020031","l":"polar ring of apical complex","na":4,"nb":1,"a":[["cytoskeleton/intraconoid_microtubule.html","intraconoid microtubule"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["cytoskeleton/subpellicular_microtubule.html","subpellicular microtubule"],["other/apical_complex.html","apical complex"]],"b":[["GO%3A0020031","polar ring of apical complex"]]},{"id":"GO:0030094","l":"plasma membrane-derived photosystem I","na":4,"nb":1,"a":[["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["GO%3A0030094","plasma membrane-derived photosystem I"]]},{"id":"GO:0030115","l":"S-layer","na":1,"nb":4,"a":[["envelope/s_layer.html","S-layer"]],"b":[["GO%3A0030115","S-layer"],["NCBIfam%3ANF041335","ArtA-dependent S-layer glycoprotein"],["NCBIfam%3ANF053619","BT1927 family outer membrane S-layer protein"],["NCBIfam%3ANF041073","S-layer protein SlaA"]]},{"id":"GO:0030476","l":"ascospore wall assembly","na":1,"nb":4,"a":[["spore/ascospore_wall.html","ascospore wall"]],"b":[["ComplexPortal%3ACPX-1812","1,3-beta-D-glucan synthase complex, FKS1-RHO1 variant"],["ComplexPortal%3ACPX-1813","1,3-beta-D-glucan synthase complex, FKS2-RHO1 variant"],["ComplexPortal%3ACPX-3028","1,3-beta-D-glucan synthase complex, FKS3-RHO1 variant"],["GO%3A0030476","ascospore wall assembly"]]},{"id":"GO:0030678","l":"mitochondrial ribonuclease P complex","na":1,"nb":4,"a":[["ribonucleoprotein/dimeric_ribonuclease_p_complex.html","dimeric ribonuclease P complex"]],"b":[["ComplexPortal%3ACPX-1294","Mitochondrial ribonuclease P complex"],["ComplexPortal%3ACPX-2632","Mitochondrial ribonuclease P complex"],["ComplexPortal%3ACPX-6155","Mitochondrial ribonuclease P complex"],["GO%3A0030678","mitochondrial ribonuclease P complex"]]},{"id":"GO:0031429","l":"box H/ACA snoRNP complex","na":1,"nb":4,"a":[["other/nucleolus.html","nucleolus"]],"b":[["ComplexPortal%3ACPX-26592","Box H/ACA ribonucleoprotein complex"],["ComplexPortal%3ACPX-2675","Box H/ACA ribonucleoprotein complex"],["ComplexPortal%3ACPX-737","Box H/ACA ribonucleoprotein complex"],["GO%3A0031429","box H/ACA snoRNP complex"]]},{"id":"GO:0031897","l":"Tic complex","na":4,"nb":1,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["other/tic_complex.html","Tic complex"],["other/toc_complex.html","Toc complex"]],"b":[["GO%3A0031897","Tic complex"]]},{"id":"GO:0031972","l":"chloroplast intermembrane space","na":4,"nb":1,"a":[["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_inner_membrane.html","chloroplast inner membrane"],["membrane_organelle/chloroplast_intermembrane_space.html","chloroplast intermembrane space"],["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"]],"b":[["GO%3A0031972","chloroplast intermembrane space"]]},{"id":"GO:0031977","l":"thylakoid lumen","na":1,"nb":4,"a":[["membrane_organelle/plastid_thylakoid_lumen.html","plastid thylakoid lumen"]],"b":[["GO%3A0070117","organellar chromatophore thylakoid lumen"],["GO%3A0031979","plasma membrane-derived thylakoid lumen"],["GO%3A0031978","plastid thylakoid lumen"],["GO%3A0031977","thylakoid lumen"]]},{"id":"GO:0032865","l":"ERMES complex","na":1,"nb":4,"a":[["other/ermes_complex.html","ERMES complex"]],"b":[["ComplexPortal%3ACPX-3196","ERMES complex"],["GO%3A0032865","ERMES complex"],["Pfam%3APF26544","Mitochondrial distribution and morphology protein 12"],["Pfam%3APF12519","Mitochondrial distribution and morphology protein 10"]]},{"id":"GO:0033962","l":"P-body assembly","na":1,"nb":4,"a":[["ribonucleoprotein/p_body.html","P-body"]],"b":[["GO%3A0033962","P-body assembly"],["PANTHER%3APTHR13612","ENHANCER OF MRNA-DECAPPING PROTEIN 3"],["PANTHER%3APTHR21551","TOPOISOMERASE II-ASSOCIATED PROTEIN PAT1"],["PANTHER%3APTHR13110","U6 SNRNA-ASSOCIATED SM-LIKE PROTEIN LSM3"]]},{"id":"GO:0034060","l":"cyanelle stroma","na":4,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"]],"b":[["GO%3A0034060","cyanelle stroma"]]},{"id":"GO:0036156","l":"inner dynein arm","na":4,"nb":1,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_dynein_complex.html","axonemal dynein complex"],["cytoskeleton/axoneme.html","axoneme"],["cytoskeleton/inner_dynein_arm.html","inner dynein arm"]],"b":[["GO%3A0036156","inner dynein arm"]]},{"id":"GO:0036157","l":"outer dynein arm","na":4,"nb":1,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_dynein_complex.html","axonemal dynein complex"],["cytoskeleton/axoneme.html","axoneme"],["cytoskeleton/outer_dynein_arm.html","outer dynein arm"]],"b":[["GO%3A0036157","outer dynein arm"]]},{"id":"GO:0042720","l":"mitochondrial inner membrane peptidase complex","na":1,"nb":4,"a":[["other/mitochondrial_inner_membrane_peptidase_complex.html","mitochondrial inner membrane peptidase complex"]],"b":[["ComplexPortal%3ACPX-1892","Mitochondrial inner membrane peptidase complex"],["ComplexPortal%3ACPX-6244","Mitochondrial inner membrane peptidase complex"],["GO%3A0042720","mitochondrial inner membrane peptidase complex"],["Pfam%3APF11093","Mitochondrial export protein Som1"]]},{"id":"GO:0042721","l":"TIM22 mitochondrial import inner membrane insertion complex","na":1,"nb":4,"a":[["other/tim22_mitochondrial_import_inner_membrane_insertion_complex.html","TIM22 mitochondrial import inner membrane insertion complex"]],"b":[["ComplexPortal%3ACPX-1629","TIM22 mitochondrial inner membrane twin-pore carrier translocase complex"],["ComplexPortal%3ACPX-6124","TIM22 mitochondrial inner membrane twin-pore carrier translocase complex"],["GO%3A0042721","TIM22 mitochondrial import inner membrane insertion complex"],["Pfam%3APF10171","Translocase of the Inner Mitochondrial membrane 29"]]},{"id":"GO:0043107","l":"type IV pilus-dependent motility","na":1,"nb":4,"a":[["appendage/type_iv_pilus.html","type IV pilus"]],"b":[["GO%3A0043107","type IV pilus-dependent motility"],["NCBIfam%3ATIGR01420","PilT/PilU family type 4a pilus ATPase"],["NCBIfam%3ANF016253","type 4a pilus biogenesis protein PilO"],["Pfam%3APF04350","Type IVa pilus alignment subcomplex PilO C-terminal domain"]]},{"id":"GO:0044099","l":"polar tube","na":4,"nb":1,"a":[["membrane_organelle/microsporidian_posterior_vacuole.html","microsporidian posterior vacuole"],["membrane_organelle/polaroplast.html","polaroplast"],["spore/polar_tube.html","polar tube"],["spore/polar_tube_anchoring_disc.html","polar tube anchoring disc"]],"b":[["GO%3A0044099","polar tube"]]},{"id":"GO:0044853","l":"plasma membrane raft","na":1,"nb":4,"a":[["envelope/eisosome_membrane_domain_mcc.html","eisosome membrane domain/MCC"]],"b":[["GO%3A0005901","caveola"],["GO%3A0090512","eisosome membrane domain/MCC"],["GO%3A0044853","plasma membrane raft"],["PANTHER%3APTHR16529","CD177 ANTIGEN"]]},{"id":"GO:0060285","l":"cilium-dependent cell motility","na":1,"nb":4,"a":[["appendage/cilium.html","cilium"]],"b":[["GO%3A0060285","cilium-dependent cell motility"],["GO%3A0030317","flagellated sperm motility"],["PANTHER%3APTHR18962","COILED-COIL DOMAIN-CONTAINING PROTEIN 39"],["PANTHER%3APTHR21625","NYD-SP28 PROTEIN"]]},{"id":"GO:0070113","l":"organellar chromatophore inner membrane","na":4,"nb":1,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_inner_membrane.html","organellar chromatophore inner membrane"],["membrane_organelle/organellar_chromatophore_intermembrane_space.html","organellar chromatophore intermembrane space"],["membrane_organelle/organellar_chromatophore_membrane.html","organellar chromatophore membrane"]],"b":[["GO%3A0070113","organellar chromatophore inner membrane"]]},{"id":"GO:0070114","l":"organellar chromatophore outer membrane","na":4,"nb":1,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_intermembrane_space.html","organellar chromatophore intermembrane space"],["membrane_organelle/organellar_chromatophore_membrane.html","organellar chromatophore membrane"],["membrane_organelle/organellar_chromatophore_outer_membrane.html","organellar chromatophore outer membrane"]],"b":[["GO%3A0070114","organellar chromatophore outer membrane"]]},{"id":"GO:0070116","l":"organellar chromatophore thylakoid","na":4,"nb":1,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"],["membrane_organelle/organellar_chromatophore_thylakoid_lumen.html","organellar chromatophore thylakoid lumen"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"]],"b":[["GO%3A0070116","organellar chromatophore thylakoid"]]},{"id":"GO:0070117","l":"organellar chromatophore thylakoid lumen","na":4,"nb":1,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"],["membrane_organelle/organellar_chromatophore_thylakoid_lumen.html","organellar chromatophore thylakoid lumen"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"]],"b":[["GO%3A0070117","organellar chromatophore thylakoid lumen"]]},{"id":"GO:0070939","l":"Dsl1/NZR complex","na":1,"nb":4,"a":[["other/dsl1_nzr_complex.html","Dsl1/NZR complex"]],"b":[["ComplexPortal%3ACPX-1786","Dsl1 tethering complex"],["ComplexPortal%3ACPX-6201","NRZ tethering complex"],["GO%3A0070939","Dsl1/NZR complex"],["Pfam%3APF04437","RINT-1/TIP-1 family"]]},{"id":"GO:0071020","l":"post-spliceosomal complex","na":1,"nb":4,"a":[["ribonucleoprotein/u12_type_post_spliceosomal_complex.html","U12-type post-spliceosomal complex"]],"b":[["ComplexPortal%3ACPX-26479","Major Post-catalytic P Spliceosome complex"],["GO%3A0071020","post-spliceosomal complex"],["GO%3A0071022","U12-type post-spliceosomal complex"],["GO%3A0071021","U2-type post-spliceosomal complex"]]},{"id":"GO:0090642","l":"microsporidian-type exospore","na":4,"nb":1,"a":[["spore/exosporium.html","exosporium"],["spore/microsporidian_type_endospore.html","microsporidian-type endospore"],["spore/microsporidian_type_exospore.html","microsporidian-type exospore"],["spore/spore_wall.html","spore wall"]],"b":[["GO%3A0090642","microsporidian-type exospore"]]},{"id":"GO:0097594","l":"ventral disc dorsal microribbon","na":4,"nb":1,"a":[["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_crossbridge.html","ventral disc crossbridge"],["cytoskeleton/ventral_disc_dorsal_microribbon.html","ventral disc dorsal microribbon"],["cytoskeleton/ventral_disc_microtubule_array.html","ventral disc microtubule array"]],"b":[["GO%3A0097594","ventral disc dorsal microribbon"]]},{"id":"GO:0120100","l":"bacterial-type flagellum motor","na":4,"nb":1,"a":[["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"],["appendage/periplasmic_flagellum.html","periplasmic flagellum"]],"b":[["GO%3A0120100","bacterial-type flagellum motor"]]},{"id":"GO:0160110","l":"axonemal microtubule doublet inner sheath","na":4,"nb":1,"a":[["cytoskeleton/axonemal_a_tubule_inner_sheath.html","axonemal A tubule inner sheath"],["cytoskeleton/axonemal_b_tubule_inner_sheath.html","axonemal B tubule inner sheath"],["cytoskeleton/axonemal_doublet_microtubule.html","axonemal doublet microtubule"],["cytoskeleton/axonemal_microtubule_doublet_inner_sheath.html","axonemal microtubule doublet inner sheath"]],"b":[["GO%3A0160110","axonemal microtubule doublet inner sheath"]]},{"id":"GO:0160113","l":"axonemal microtubule doublet inner junction","na":4,"nb":1,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_doublet_microtubule.html","axonemal doublet microtubule"],["cytoskeleton/axonemal_microtubule_doublet_inner_junction.html","axonemal microtubule doublet inner junction"],["cytoskeleton/b_axonemal_microtubule.html","B axonemal microtubule"]],"b":[["GO%3A0160113","axonemal microtubule doublet inner junction"]]},{"id":"GO:0160114","l":"axonemal microtubule doublet outer junction","na":4,"nb":1,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_doublet_microtubule.html","axonemal doublet microtubule"],["cytoskeleton/axonemal_microtubule_doublet_outer_junction.html","axonemal microtubule doublet outer junction"],["cytoskeleton/b_axonemal_microtubule.html","B axonemal microtubule"]],"b":[["GO%3A0160114","axonemal microtubule doublet outer junction"]]},{"id":"InterPro:IPR000100","l":"","na":1,"nb":4,"a":[["ribonucleoprotein/dimeric_ribonuclease_p_complex.html","dimeric ribonuclease P complex"]],"b":[["HAMAP%3AMF_00227","Ribonuclease P protein component [rnpA]"],["PANTHER%3APTHR33992","RIBONUCLEASE P PROTEIN COMPONENT"],["Pfam%3APF00825","Ribonuclease P"],["PROSITE%3APS00648","Bacterial ribonuclease P protein component signature"]]},{"id":"InterPro:IPR000527","l":"","na":1,"nb":4,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"]],"b":[["HAMAP%3AMF_00415","Flagellar L-ring protein [flgH]"],["PANTHER%3APTHR34933","FLAGELLAR L-RING PROTEIN"],["Pfam%3APF02107","Flagellar L-ring protein"],["PRINTS%3APR01008","Flagellar L-ring protein signature"]]},{"id":"InterPro:IPR001782","l":"","na":1,"nb":4,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]],"b":[["HAMAP%3AMF_00416","Flagellar P-ring protein [flgI]"],["PANTHER%3APTHR30381","FLAGELLAR P-RING PERIPLASMIC PROTEIN FLGI"],["Pfam%3APF02119","Flagellar P-ring protein"],["PRINTS%3APR01010","Flagellar P-ring protein signature"]]},{"id":"InterPro:IPR005837","l":"","na":1,"nb":4,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF00813","FliP family"],["PRINTS%3APR00951","Flagellar biosynthetic protein FliP signature"],["PROSITE%3APS01060","Flagella transport protein fliP family signature 1"],["PROSITE%3APS01061","Flagella transport protein fliP family signature 2"]]},{"id":"InterPro:IPR011557","l":"","na":1,"nb":4,"a":[["other/dna_gyrase_complex.html","DNA gyrase complex"]],"b":[["Pfam%3APF21249","GyrB, hook"],["Pfam%3APF18053","DNA gyrase B subunit insert domain"],["HAMAP%3AMF_01898","DNA gyrase subunit B [gyrB]"],["Pfam%3APF00986","DNA gyrase B subunit, carboxyl terminus"]]},{"id":"InterPro:IPR040026","l":"","na":1,"nb":4,"a":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"]],"b":[["PANTHER%3APTHR30288","FLAGELLAR CAP/ASSEMBLY PROTEIN FLID"],["Pfam%3APF07195","Flagellar hook-associated protein 2 C-terminus"],["Pfam%3APF02465","Flagellar hook-associated protein 2 N-terminus"],["Pfam%3APF07196","Flagellin hook IN motif"]]},{"id":"UniProt:P0A7N4","l":"Large ribosomal subunit protein bL32","na":1,"nb":4,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01031","50S ribosomal protein L32"],["Pfam%3APF01783","Ribosomal L32p protein family"],["InterPro%3AIPR011332","Zinc-binding ribosomal protein"]]},{"id":"UniProt:P0A7V0","l":"Small ribosomal subunit protein uS2","na":1,"nb":4,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR01011","30S ribosomal protein S2"],["CDD%3Acd01425","RPS2"],["CATH%3A1.10.287.610","Helix hairpin bin"]]},{"id":"UniProt:P0ABH4","l":"","na":1,"nb":4,"a":[["division_machinery/elongasome.html","elongasome"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["NCBIfam%3ANF008282","rod shape-determining protein MreD"],["NCBIfam%3ATIGR03426","rod shape-determining protein MreD"],["Pfam%3APF04093","rod shape-determining protein MreD"]]},{"id":"UniProt:P0C2S5","l":"","na":1,"nb":4,"a":[["other/cellulosome.html","cellulosome"]],"b":[["EC%3A3.2.1.176","cellulose 1,4-beta-cellobiosidase (reducing end)"],["Pfam%3APF00404","Dockerin type I domain"],["PROSITE%3APS00448","Clostridium cellulosome enzymes repeated domain signature"],["Pfam%3APF02011","Glycosyl hydrolase family 48"]]},{"id":"UniProt:Q1PX48","l":"","na":1,"nb":4,"a":[["membrane_organelle/anammoxosome.html","anammoxosome"]],"b":[["EC%3A1.7.2.9","hydroxylamine oxidase"],["RHEA%3A45036","hydroxylamine + 3 Fe(III)-[cytochrome c] = nitric oxide + 3 Fe(II)-[cytochrome c] + 3 H(+)"],["Pfam%3APF22142","Hydroxylamine oxidoreductase, C-terminal domain"],["proteintraitsmech%3ABIOLIP_HG1","HG1-binding site"]]},{"id":"GO:0000002","l":"","na":1,"nb":3,"a":[["nucleoid/mitochondrial_nucleoid.html","mitochondrial nucleoid"]],"b":[["PANTHER%3APTHR45829","MITOCHONDRIAL CARRIER PROTEIN RIM2"],["PANTHER%3APTHR32198","MITOCHONDRIAL ESCAPE PROTEIN 2"],["PANTHER%3APTHR31404","MITOCHONDRIAL GENOME MAINTENANCE PROTEIN MGM101"]]},{"id":"GO:0005632","l":"inner layer of spore wall","na":3,"nb":1,"a":[["spore/ascospore_wall.html","ascospore wall"],["spore/chitosan_layer_of_spore_wall.html","chitosan layer of spore wall"],["spore/inner_layer_of_spore_wall.html","inner layer of spore wall"]],"b":[["GO%3A0005632","inner layer of spore wall"]]},{"id":"GO:0005796","l":"Golgi lumen","na":1,"nb":3,"a":[["membrane_organelle/golgi_lumen.html","Golgi lumen"]],"b":[["GO%3A0005796","Golgi lumen"],["GO%3A0034469","Golgi stack lumen"],["GO%3A0098564","trans-Golgi network transport vesicle lumen"]]},{"id":"GO:0005826","l":"actomyosin contractile ring","na":1,"nb":3,"a":[["cytoskeleton/actomyosin_contractile_ring.html","actomyosin contractile ring"]],"b":[["GO%3A0005826","actomyosin contractile ring"],["GO%3A0110086","meiotic actomyosin contractile ring"],["GO%3A0110085","mitotic actomyosin contractile ring"]]},{"id":"GO:0009290","l":"DNA import into cell involved in transformation","na":1,"nb":3,"a":[["appendage/type_iv_pilus.html","type IV pilus"]],"b":[["GO%3A0009290","DNA import into cell involved in transformation"],["NCBIfam%3ANF041796","DNA import protein CedA"],["NCBIfam%3ATIGR00361","DNA internalization-related competence protein ComEC/Rec2"]]},{"id":"GO:0009422","l":"bacterial-type flagellum hook-filament junction","na":3,"nb":1,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["GO%3A0009422","bacterial-type flagellum hook-filament junction"]]},{"id":"GO:0009429","l":"bacterial-type flagellum basal body, proximal rod","na":3,"nb":1,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"]],"b":[["GO%3A0009429","bacterial-type flagellum basal body, proximal rod"]]},{"id":"GO:0009514","l":"glyoxysome","na":3,"nb":1,"a":[["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysomal_membrane.html","glyoxysomal membrane"],["membrane_organelle/glyoxysome.html","glyoxysome"]],"b":[["GO%3A0009514","glyoxysome"]]},{"id":"GO:0012510","l":"trans-Golgi network transport vesicle membrane","na":3,"nb":1,"a":[["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"],["membrane_organelle/trans_golgi_network_transport_vesicle_membrane.html","trans-Golgi network transport vesicle membrane"],["other/clathrin_coat_of_trans_golgi_network_vesicle.html","clathrin coat of trans-Golgi network vesicle"]],"b":[["GO%3A0012510","trans-Golgi network transport vesicle membrane"]]},{"id":"GO:0020010","l":"conoid","na":3,"nb":1,"a":[["cytoskeleton/conoid.html","conoid"],["cytoskeleton/intraconoid_microtubule.html","intraconoid microtubule"],["other/apical_complex.html","apical complex"]],"b":[["GO%3A0020010","conoid"]]},{"id":"GO:0020015","l":"glycosome","na":3,"nb":1,"a":[["membrane_organelle/glycosome.html","glycosome"],["membrane_organelle/glycosome_lumen.html","glycosome lumen"],["membrane_organelle/glycosome_membrane.html","glycosome membrane"]],"b":[["GO%3A0020015","glycosome"]]},{"id":"GO:0020026","l":"apicomplexan dense granule","na":3,"nb":1,"a":[["membrane_organelle/apicomplexan_dense_granule.html","apicomplexan dense granule"],["membrane_organelle/apicomplexan_dense_granule_membrane.html","apicomplexan dense granule membrane"],["membrane_organelle/mononeme.html","mononeme"]],"b":[["GO%3A0020026","apicomplexan dense granule"]]},{"id":"GO:0030061","l":"mitochondrial crista","na":3,"nb":1,"a":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"],["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"]],"b":[["GO%3A0030061","mitochondrial crista"]]},{"id":"GO:0030124","l":"AP-4 adaptor complex","na":1,"nb":3,"a":[["other/ap_4_adaptor_complex.html","AP-4 adaptor complex"]],"b":[["ComplexPortal%3ACPX-5151","AP-4 Adaptor complex"],["ComplexPortal%3ACPX-5154","AP-4 Adaptor complex"],["GO%3A0030124","AP-4 adaptor complex"]]},{"id":"GO:0030256","l":"type I protein secretion system complex","na":1,"nb":3,"a":[["secretion_system/type_i_protein_secretion_system_complex.html","type I protein secretion system complex"]],"b":[["GO%3A0030256","type I protein secretion system complex"],["NCBIfam%3ATIGR01842","type I secretion system permease/ATPase"],["NCBIfam%3ATIGR01846","type I secretion system permease/ATPase"]]},{"id":"GO:0030681","l":"multimeric ribonuclease P complex","na":1,"nb":3,"a":[["ribonucleoprotein/dimeric_ribonuclease_p_complex.html","dimeric ribonuclease P complex"]],"b":[["GO%3A0030679","cyanelle ribonuclease P complex"],["GO%3A0030681","multimeric ribonuclease P complex"],["GO%3A0005655","nucleolar ribonuclease P complex"]]},{"id":"GO:0030874","l":"nucleolar chromatin","na":1,"nb":3,"a":[["other/nucleolus.html","nucleolus"]],"b":[["GO%3A0030874","nucleolar chromatin"],["GO%3A0097424","nucleolus-associated heterochromatin"],["GO%3A0005731","nucleolus organizer region"]]},{"id":"GO:0031164","l":"contractile vacuolar membrane","na":3,"nb":1,"a":[["membrane_organelle/contractile_vacuolar_membrane.html","contractile vacuolar membrane"],["membrane_organelle/contractile_vacuole.html","contractile vacuole"],["membrane_organelle/contractile_vacuole_lumen.html","contractile vacuole lumen"]],"b":[["GO%3A0031164","contractile vacuolar membrane"]]},{"id":"GO:0031321","l":"ascospore-type prospore assembly","na":1,"nb":3,"a":[["spore/prospore_membrane.html","prospore membrane"]],"b":[["ComplexPortal%3ACPX-5464","Vesicular SNARE complex SSO1-SPO20-SNC1"],["ComplexPortal%3ACPX-5466","Vesicular SNARE complex SSO1-SPO20-SNC2"],["GO%3A0031321","ascospore-type prospore assembly"]]},{"id":"GO:0031908","l":"glyoxysomal lumen","na":3,"nb":1,"a":[["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysomal_membrane.html","glyoxysomal membrane"],["membrane_organelle/glyoxysome.html","glyoxysome"]],"b":[["GO%3A0031908","glyoxysomal lumen"]]},{"id":"GO:0031979","l":"plasma membrane-derived thylakoid lumen","na":3,"nb":1,"a":[["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_lumen.html","plasma membrane-derived thylakoid lumen"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"]],"b":[["GO%3A0031979","plasma membrane-derived thylakoid lumen"]]},{"id":"GO:0031983","l":"vesicle lumen","na":1,"nb":3,"a":[["membrane_organelle/cytoplasmic_vesicle_lumen.html","cytoplasmic vesicle lumen"]],"b":[["GO%3A0060205","cytoplasmic vesicle lumen"],["GO%3A0097489","multivesicular body, internal vesicle lumen"],["GO%3A0031983","vesicle lumen"]]},{"id":"GO:0032047","l":"mitosome","na":3,"nb":1,"a":[["membrane_organelle/mitosome.html","mitosome"],["membrane_organelle/mitosome_envelope.html","mitosome envelope"],["membrane_organelle/mitosome_matrix.html","mitosome matrix"]],"b":[["GO%3A0032047","mitosome"]]},{"id":"GO:0032126","l":"eisosome","na":3,"nb":1,"a":[["cytoskeleton/eisosome_filament.html","eisosome filament"],["envelope/eisosome_membrane_domain_mcc.html","eisosome membrane domain/MCC"],["other/eisosome.html","eisosome"]],"b":[["GO%3A0032126","eisosome"]]},{"id":"GO:0033016","l":"rhoptry membrane","na":3,"nb":1,"a":[["membrane_organelle/rhoptry.html","rhoptry"],["membrane_organelle/rhoptry_lumen.html","rhoptry lumen"],["membrane_organelle/rhoptry_membrane.html","rhoptry membrane"]],"b":[["GO%3A0033016","rhoptry membrane"]]},{"id":"GO:0033107","l":"Cvt vesicle","na":3,"nb":1,"a":[["membrane_organelle/cvt_vesicle.html","Cvt vesicle"],["membrane_organelle/cvt_vesicle_lumen.html","Cvt vesicle lumen"],["membrane_organelle/cvt_vesicle_membrane.html","Cvt vesicle membrane"]],"b":[["GO%3A0033107","Cvt vesicle"]]},{"id":"GO:0033110","l":"Cvt vesicle membrane","na":3,"nb":1,"a":[["membrane_organelle/cvt_vesicle.html","Cvt vesicle"],["membrane_organelle/cvt_vesicle_lumen.html","Cvt vesicle lumen"],["membrane_organelle/cvt_vesicle_membrane.html","Cvt vesicle membrane"]],"b":[["GO%3A0033110","Cvt vesicle membrane"]]},{"id":"GO:0033117","l":"esterosome","na":3,"nb":1,"a":[["membrane_organelle/esterosome.html","esterosome"],["membrane_organelle/esterosome_lumen.html","esterosome lumen"],["membrane_organelle/esterosome_membrane.html","esterosome membrane"]],"b":[["GO%3A0033117","esterosome"]]},{"id":"GO:0033118","l":"esterosome membrane","na":3,"nb":1,"a":[["membrane_organelle/esterosome.html","esterosome"],["membrane_organelle/esterosome_lumen.html","esterosome lumen"],["membrane_organelle/esterosome_membrane.html","esterosome membrane"]],"b":[["GO%3A0033118","esterosome membrane"]]},{"id":"GO:0033163","l":"microneme membrane","na":3,"nb":1,"a":[["membrane_organelle/microneme.html","microneme"],["membrane_organelle/microneme_lumen.html","microneme lumen"],["membrane_organelle/microneme_membrane.html","microneme membrane"]],"b":[["GO%3A0033163","microneme membrane"]]},{"id":"GO:0033281","l":"TAT protein transport complex","na":1,"nb":3,"a":[["secretion_system/tat_protein_transport_complex.html","TAT protein transport complex"]],"b":[["ComplexPortal%3ACPX-3445","Twin-arginine translocation complex"],["GO%3A0033281","TAT protein transport complex"],["NCBIfam%3ATIGR01912","Sec-independent protein translocase TatC"]]},{"id":"GO:0034044","l":"exomer complex","na":1,"nb":3,"a":[["other/exomer_complex.html","exomer complex"]],"b":[["ComplexPortal%3ACPX-1719","Exomer complex"],["ComplexPortal%3ACPX-26504","Exomer complex"],["GO%3A0034044","exomer complex"]]},{"id":"GO:0034423","l":"autophagosome lumen","na":3,"nb":1,"a":[["membrane_organelle/autophagosome.html","autophagosome"],["membrane_organelle/autophagosome_lumen.html","autophagosome lumen"],["membrane_organelle/autophagosome_membrane.html","autophagosome membrane"]],"b":[["GO%3A0034423","autophagosome lumen"]]},{"id":"GO:0034430","l":"monolayer-surrounded lipid storage body outer lipid monolayer","na":3,"nb":1,"a":[["inclusion/lipid_droplet.html","lipid droplet"],["inclusion/monolayer_surrounded_lipid_storage_body_outer_lipid_monolayer.html","monolayer-surrounded lipid storage body outer lipid monolayer"],["inclusion/plastoglobule.html","plastoglobule"]],"b":[["GO%3A0034430","monolayer-surrounded lipid storage body outer lipid monolayer"]]},{"id":"GO:0034467","l":"esterosome lumen","na":3,"nb":1,"a":[["membrane_organelle/esterosome.html","esterosome"],["membrane_organelle/esterosome_lumen.html","esterosome lumen"],["membrane_organelle/esterosome_membrane.html","esterosome membrane"]],"b":[["GO%3A0034467","esterosome lumen"]]},{"id":"GO:0034468","l":"glycosome lumen","na":3,"nb":1,"a":[["membrane_organelle/glycosome.html","glycosome"],["membrane_organelle/glycosome_lumen.html","glycosome lumen"],["membrane_organelle/glycosome_membrane.html","glycosome membrane"]],"b":[["GO%3A0034468","glycosome lumen"]]},{"id":"GO:0034492","l":"hydrogenosome lumen","na":3,"nb":1,"a":[["membrane_organelle/hydrogenosomal_membrane.html","hydrogenosomal membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/hydrogenosome_lumen.html","hydrogenosome lumen"]],"b":[["GO%3A0034492","hydrogenosome lumen"]]},{"id":"GO:0034494","l":"microneme lumen","na":3,"nb":1,"a":[["membrane_organelle/microneme.html","microneme"],["membrane_organelle/microneme_lumen.html","microneme lumen"],["membrane_organelle/microneme_membrane.html","microneme membrane"]],"b":[["GO%3A0034494","microneme lumen"]]},{"id":"GO:0034591","l":"rhoptry lumen","na":3,"nb":1,"a":[["membrane_organelle/rhoptry.html","rhoptry"],["membrane_organelle/rhoptry_lumen.html","rhoptry lumen"],["membrane_organelle/rhoptry_membrane.html","rhoptry membrane"]],"b":[["GO%3A0034591","rhoptry lumen"]]},{"id":"GO:0034777","l":"recycling endosome lumen","na":3,"nb":1,"a":[["membrane_organelle/recycling_endosome.html","recycling endosome"],["membrane_organelle/recycling_endosome_lumen.html","recycling endosome lumen"],["membrane_organelle/recycling_endosome_membrane.html","recycling endosome membrane"]],"b":[["GO%3A0034777","recycling endosome lumen"]]},{"id":"GO:0036286","l":"eisosome filament","na":3,"nb":1,"a":[["cytoskeleton/eisosome_filament.html","eisosome filament"],["envelope/eisosome_membrane_domain_mcc.html","eisosome membrane domain/MCC"],["other/eisosome.html","eisosome"]],"b":[["GO%3A0036286","eisosome filament"]]},{"id":"GO:0042566","l":"hydrogenosome","na":3,"nb":1,"a":[["membrane_organelle/hydrogenosomal_membrane.html","hydrogenosomal membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/hydrogenosome_lumen.html","hydrogenosome lumen"]],"b":[["GO%3A0042566","hydrogenosome"]]},{"id":"GO:0042603","l":"capsule","na":3,"nb":1,"a":[["envelope/capsule.html","capsule"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]],"b":[["GO%3A0042603","capsule"]]},{"id":"GO:0042763","l":"intracellular immature spore","na":1,"nb":3,"a":[["spore/endospore_forming_forespore.html","endospore-forming forespore"]],"b":[["GO%3A0042764","ascospore-type prospore"],["GO%3A0042601","endospore-forming forespore"],["GO%3A0042763","intracellular immature spore"]]},{"id":"GO:0043529","l":"GET complex","na":1,"nb":3,"a":[["other/get_complex.html","GET complex"]],"b":[["ComplexPortal%3ACPX-6464","GET complex"],["ComplexPortal%3ACPX-956","GET complex"],["GO%3A0043529","GET complex"]]},{"id":"GO:0043594","l":"outer endospore membrane","na":3,"nb":1,"a":[["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"],["spore/outer_endospore_membrane.html","outer endospore membrane"],["spore/spore_inner_membrane.html","spore inner membrane"]],"b":[["GO%3A0043594","outer endospore membrane"]]},{"id":"GO:0044599","l":"AP-5 adaptor complex","na":1,"nb":3,"a":[["other/ap_5_adaptor_complex.html","AP-5 adaptor complex"]],"b":[["ComplexPortal%3ACPX-5181","AP-5 Adaptor complex"],["ComplexPortal%3ACPX-5182","AP-5 Adaptor complex"],["GO%3A0044599","AP-5 adaptor complex"]]},{"id":"GO:0046858","l":"chlorosome","na":3,"nb":1,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"]],"b":[["GO%3A0046858","chlorosome"]]},{"id":"GO:0046859","l":"hydrogenosomal membrane","na":3,"nb":1,"a":[["membrane_organelle/hydrogenosomal_membrane.html","hydrogenosomal membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/hydrogenosome_lumen.html","hydrogenosome lumen"]],"b":[["GO%3A0046859","hydrogenosomal membrane"]]},{"id":"GO:0046860","l":"glycosome membrane","na":3,"nb":1,"a":[["membrane_organelle/glycosome.html","glycosome"],["membrane_organelle/glycosome_lumen.html","glycosome lumen"],["membrane_organelle/glycosome_membrane.html","glycosome membrane"]],"b":[["GO%3A0046860","glycosome membrane"]]},{"id":"GO:0046861","l":"glyoxysomal membrane","na":3,"nb":1,"a":[["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysomal_membrane.html","glyoxysomal membrane"],["membrane_organelle/glyoxysome.html","glyoxysome"]],"b":[["GO%3A0046861","glyoxysomal membrane"]]},{"id":"GO:0048492","l":"ribulose bisphosphate carboxylase complex","na":1,"nb":3,"a":[["other/pyrenoid.html","pyrenoid"]],"b":[["GO%3A0009573","chloroplast ribulose bisphosphate carboxylase complex"],["GO%3A0048494","chromatophore ribulose bisphosphate carboxylase complex"],["GO%3A0048492","ribulose bisphosphate carboxylase complex"]]},{"id":"GO:0062159","l":"contractile vacuole complex","na":3,"nb":1,"a":[["membrane_organelle/contractile_vacuole.html","contractile vacuole"],["membrane_organelle/contractile_vacuole_complex.html","contractile vacuole complex"],["membrane_organelle/spongiome.html","spongiome"]],"b":[["GO%3A0062159","contractile vacuole complex"]]},{"id":"GO:0070088","l":"polyhydroxyalkanoate granule","na":1,"nb":3,"a":[["inclusion/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]],"b":[["GO%3A0070088","polyhydroxyalkanoate granule"],["NCBIfam%3ANF045536","polyhydroxyalkanoate granule-associated phasin"],["NCBIfam%3ANF045537","polyhydroxyalkanoate granule-associated phasin"]]},{"id":"GO:0070115","l":"organellar chromatophore intermembrane space","na":3,"nb":1,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_inner_membrane.html","organellar chromatophore inner membrane"],["membrane_organelle/organellar_chromatophore_intermembrane_space.html","organellar chromatophore intermembrane space"]],"b":[["GO%3A0070115","organellar chromatophore intermembrane space"]]},{"id":"GO:0071008","l":"U2-type post-mRNA release spliceosomal complex","na":1,"nb":3,"a":[["ribonucleoprotein/u2_type_post_mrna_release_spliceosomal_complex.html","U2-type post-mRNA release spliceosomal complex"]],"b":[["ComplexPortal%3ACPX-1886","Post-mRNA release spliceosomal complex"],["GO%3A0071008","U2-type post-mRNA release spliceosomal complex"],["Pfam%3APF15458","Nineteen complex-related protein 2"]]},{"id":"GO:0071012","l":"catalytic step 1 spliceosome","na":1,"nb":3,"a":[["ribonucleoprotein/u12_type_catalytic_step_1_spliceosome.html","U12-type catalytic step 1 spliceosome"]],"b":[["GO%3A0071012","catalytic step 1 spliceosome"],["GO%3A0071017","U12-type catalytic step 1 spliceosome"],["GO%3A0071006","U2-type catalytic step 1 spliceosome"]]},{"id":"GO:0090512","l":"eisosome membrane domain/MCC","na":3,"nb":1,"a":[["cytoskeleton/eisosome_filament.html","eisosome filament"],["envelope/eisosome_membrane_domain_mcc.html","eisosome membrane domain/MCC"],["other/eisosome.html","eisosome"]],"b":[["GO%3A0090512","eisosome membrane domain/MCC"]]},{"id":"GO:0090641","l":"microsporidian-type endospore","na":3,"nb":1,"a":[["spore/microsporidian_type_endospore.html","microsporidian-type endospore"],["spore/microsporidian_type_exospore.html","microsporidian-type exospore"],["spore/spore_wall.html","spore wall"]],"b":[["GO%3A0090641","microsporidian-type endospore"]]},{"id":"GO:0097595","l":"ventral disc crossbridge","na":3,"nb":1,"a":[["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_crossbridge.html","ventral disc crossbridge"],["cytoskeleton/ventral_disc_dorsal_microribbon.html","ventral disc dorsal microribbon"]],"b":[["GO%3A0097595","ventral disc crossbridge"]]},{"id":"GO:0106234","l":"outer membrane protein complex","na":1,"nb":3,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["GO%3A0106234","outer membrane protein complex"],["NCBIfam%3ANF033942","outer membrane porin GjpA"],["NCBIfam%3ANF053618","PopA family porin-like outer membrane protein"]]},{"id":"GO:0160111","l":"axonemal A tubule inner sheath","na":3,"nb":1,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_a_tubule_inner_sheath.html","axonemal A tubule inner sheath"],["cytoskeleton/axonemal_microtubule_doublet_inner_sheath.html","axonemal microtubule doublet inner sheath"]],"b":[["GO%3A0160111","axonemal A tubule inner sheath"]]},{"id":"GO:0160112","l":"axonemal B tubule inner sheath","na":3,"nb":1,"a":[["cytoskeleton/axonemal_b_tubule_inner_sheath.html","axonemal B tubule inner sheath"],["cytoskeleton/axonemal_microtubule_doublet_inner_sheath.html","axonemal microtubule doublet inner sheath"],["cytoskeleton/b_axonemal_microtubule.html","B axonemal microtubule"]],"b":[["GO%3A0160112","axonemal B tubule inner sheath"]]},{"id":"GO:0160211","l":"apicoplast membrane","na":3,"nb":1,"a":[["membrane_organelle/apicoplast.html","apicoplast"],["membrane_organelle/apicoplast_membrane.html","apicoplast membrane"],["membrane_organelle/plastid_membrane.html","plastid membrane"]],"b":[["GO%3A0160211","apicoplast membrane"]]},{"id":"GO:1990718","l":"axonemal central pair projection","na":3,"nb":1,"a":[["cytoskeleton/axonemal_central_apparatus.html","axonemal central apparatus"],["cytoskeleton/axonemal_central_pair.html","axonemal central pair"],["cytoskeleton/axonemal_central_pair_projection.html","axonemal central pair projection"]],"b":[["GO%3A1990718","axonemal central pair projection"]]},{"id":"GO:1990900","l":"ciliary pocket collar","na":3,"nb":1,"a":[["cytoskeleton/bilobe_structure.html","bilobe structure"],["cytoskeleton/ciliary_pocket_collar.html","ciliary pocket collar"],["membrane_organelle/flagellar_pocket.html","flagellar pocket"]],"b":[["GO%3A1990900","ciliary pocket collar"]]},{"id":"GO:1990916","l":"Isp3 layer of spore wall","na":3,"nb":1,"a":[["spore/ascospore_wall.html","ascospore wall"],["spore/dityrosine_layer_of_spore_wall.html","dityrosine layer of spore wall"],["spore/isp3_layer_of_spore_wall.html","Isp3 layer of spore wall"]],"b":[["GO%3A1990916","Isp3 layer of spore wall"]]},{"id":"InterPro:IPR001182","l":"","na":1,"nb":3,"a":[["envelope/peptidoglycan_based_cell_wall.html","peptidoglycan-based cell wall"]],"b":[["PANTHER%3APTHR30474","CELL CYCLE PROTEIN"],["Pfam%3APF01098","Cell cycle protein"],["PROSITE%3APS00428","Cell cycle proteins ftsW / rodA / spoVE signature"]]},{"id":"InterPro:IPR001689","l":"","na":1,"nb":3,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]],"b":[["Pfam%3APF02154","Flagellar motor switch protein FliM"],["Pfam%3APF01052","Type III flagellar switch regulator (C-ring) FliN C-term"],["PRINTS%3APR00955","Flagellar motor switch protein FliM signature"]]},{"id":"InterPro:IPR002326","l":"","na":1,"nb":3,"a":[["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"]],"b":[["PANTHER%3APTHR10266","CYTOCHROME C1"],["Pfam%3APF02167","Cytochrome C1 family"],["PRINTS%3APR00603","Cytochrome C1 signature"]]},{"id":"InterPro:IPR003418","l":"","na":1,"nb":3,"a":[["energy_complex/fumarate_reductase_complex.html","fumarate reductase complex"]],"b":[["GO%3A0045283","fumarate reductase complex"],["Pfam%3APF02313","Fumarate reductase subunit D"],["HAMAP%3AMF_00709","Fumarate reductase subunit D [frdD]"]]},{"id":"InterPro:IPR003510","l":"","na":1,"nb":3,"a":[["energy_complex/fumarate_reductase_complex.html","fumarate reductase complex"]],"b":[["GO%3A0045283","fumarate reductase complex"],["Pfam%3APF02300","Fumarate reductase subunit C"],["HAMAP%3AMF_00708","Fumarate reductase subunit C [frdC]"]]},{"id":"InterPro:IPR005737","l":"","na":1,"nb":3,"a":[["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["HAMAP%3AMF_00938","DNA topoisomerase 4 subunit B [parE]"],["Pfam%3APF00986","DNA gyrase B subunit, carboxyl terminus"],["PRINTS%3APR01098","Topoisomerase IV subunit B signature"]]},{"id":"InterPro:IPR005743","l":"","na":1,"nb":3,"a":[["other/dna_gyrase_complex.html","DNA gyrase complex"]],"b":[["Pfam%3APF00521","DNA gyrase/topoisomerase IV, subunit A"],["HAMAP%3AMF_01897","DNA gyrase subunit A [gyrA]"],["Pfam%3APF03989","DNA gyrase C-terminal domain, beta-propeller"]]},{"id":"InterPro:IPR010204","l":"","na":1,"nb":3,"a":[["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"]],"b":[["Pfam%3APF04205","FMN-binding domain"],["HAMAP%3AMF_00427","Na(+)-translocating NADH-quinone reductase subunit C [nqrC]"],["PANTHER%3APTHR37838","NA(+)-TRANSLOCATING NADH-QUINONE REDUCTASE SUBUNIT C"]]},{"id":"InterPro:IPR012826","l":"","na":1,"nb":3,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]],"b":[["Pfam%3APF04509","CheC-like family"],["Pfam%3APF01052","Type III flagellar switch regulator (C-ring) FliN C-term"],["Pfam%3APF16973","Flagellar motor switch protein FliN N-terminal"]]},{"id":"InterPro:IPR026592","l":"","na":1,"nb":3,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["Pfam%3APF04355","Outer membrane protein assembly factor BamE domain"],["HAMAP%3AMF_00925","Outer membrane protein assembly factor BamE [bamE]"],["PANTHER%3APTHR37482","OUTER MEMBRANE PROTEIN ASSEMBLY FACTOR BAME"]]},{"id":"InterPro:IPR050220","l":"","na":1,"nb":3,"a":[["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["Pfam%3APF00521","DNA gyrase/topoisomerase IV, subunit A"],["PANTHER%3APTHR43493","DNA GYRASE/TOPOISOMERASE SUBUNIT A"],["Pfam%3APF03989","DNA gyrase C-terminal domain, beta-propeller"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":3,"a":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]],"b":[["TED%3AAF-A0A142EAM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142EAM9-F1-model_v4_TED03"],["TED%3AAF-A0A1Q3DTY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3DTY6-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3DNE3-F1-model_v4_TED01","TED novel fold AF-A0A1Q3DNE3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":1,"nb":3,"a":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]],"b":[["Pfam%3APF03069","Acetamidase/Formamidase family"],["PROSITE%3APS00818","Dps protein family signature 1"],["Pfam%3APF13810","Domain of unknown function (DUF4185)"]]},{"id":"NCBITaxon:243233","l":"Methylococcus capsulatus Bath","na":1,"nb":3,"a":[["membrane_organelle/methane_oxidizing_organelle.html","methane-oxidizing organelle"]],"b":[["Pfam%3APF17850","CysA C-terminal regulatory domain"],["Pfam%3APF02461","Ammonia monooxygenase"],["TED%3AAF-Q604F4-F1-model_v4_TED02","TED novel fold AF-Q604F4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:381666","l":"Cupriavidus necator H16","na":1,"nb":3,"a":[["inclusion/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]],"b":[["Pfam%3APF13473","Cupredoxin-like domain"],["Pfam%3APF10605","3HB-oligomer hydrolase (3HBOH)"],["Pfam%3APF21783","YNCE-like beta-propeller"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":1,"nb":3,"a":[["microcompartment/bacterial_microcompartment.html","bacterial microcompartment"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF22277","EncFtn-like"],["TED%3AAF-D0LJ11-F1-model_v4_TED04","TED highly-symmetric fold AF-D0LJ11-F1-model_v4_TED04"]]},{"id":"NCBITaxon:5334","l":"Schizophyllum commune","na":1,"nb":3,"a":[["envelope/dolipore_septum.html","dolipore septum"]],"b":[["Pfam%3APF04611","Mating type protein A alpha Y mating type dependent binding region"],["Pfam%3APF01185","Fungal hydrophobin"],["PROSITE%3APS00956","Fungal hydrophobins signature"]]},{"id":"NCBITaxon:55529","l":"Guillardia theta","na":1,"nb":3,"a":[["membrane_organelle/nucleomorph.html","nucleomorph"]],"b":[["Pfam%3APF06868","Protein of unknown function (DUF1257)"],["Pfam%3APF05421","Protein of unknown function (DUF751)"],["TED%3AAF-A0A7S4PQE0-F1-model_v4_TED01","TED novel fold AF-A0A7S4PQE0-F1-model_v4_TED01"]]},{"id":"UniProt:O31728","l":"","na":1,"nb":3,"a":[["division_machinery/divisome_complex.html","divisome complex"]],"b":[["Pfam%3APF04472","Cell division protein SepF"],["InterPro%3AIPR038594","SepF-like superfamily"],["CATH%3A3.30.110.150","SepF-like protein"]]},{"id":"UniProt:P0C018","l":"Large ribosomal subunit protein uL18","na":1,"nb":3,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00060","50S ribosomal protein L18"],["Pfam%3APF00861","Ribosomal L18 of archaea, bacteria, mitoch. and chloroplast"]]},{"id":"UniProt:P35535","l":"","na":1,"nb":3,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0009425","bacterial-type flagellum basal body"],["NCBIfam%3ATIGR01402","flagellar biosynthesis protein FliQ"],["Pfam%3APF01313","Bacterial export proteins, family 3"]]},{"id":"UniProt:P35537","l":"","na":1,"nb":3,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0009425","bacterial-type flagellum basal body"],["NCBIfam%3ATIGR01400","flagellar biosynthetic protein FliR"],["Pfam%3APF01311","Bacterial export proteins, family 1"]]},{"id":"UniProt:P54700","l":"","na":1,"nb":3,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF00813","FliP family"],["PROSITE%3APS01060","Flagella transport protein fliP family signature 1"],["PROSITE%3APS01061","Flagella transport protein fliP family signature 2"]]},{"id":"UniProt:Q9ZFU8","l":"","na":1,"nb":3,"a":[["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"]],"b":[["Pfam%3APF00936","BMC domain"],["Pfam%3APF16365","Ethanolamine utilization protein EutK C-terminus"],["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"CHEBI:16261","l":"chitosan","na":2,"nb":1,"a":[["spore/ascospore_wall.html","ascospore wall"],["spore/chitosan_layer_of_spore_wall.html","chitosan layer of spore wall"]],"b":[["proteintraitsmech%3ABIOLIP_GCS","GCS-binding site"]]},{"id":"CHEBI:16412","l":"","na":2,"nb":1,"a":[["envelope/cell_outer_membrane.html","cell outer membrane"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:25438","l":"","na":1,"nb":2,"a":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]]},{"id":"GO:0000934","l":"porous cell septum","na":1,"nb":2,"a":[["envelope/dolipore_septum.html","dolipore septum"]],"b":[["GO%3A0000937","dolipore septum"],["GO%3A0000934","porous cell septum"]]},{"id":"GO:0001405","l":"PAM complex, Tim23 associated import motor","na":1,"nb":2,"a":[["other/pam_complex_tim23_associated_import_motor.html","PAM complex, Tim23 associated import motor"]],"b":[["GO%3A0001405","PAM complex, Tim23 associated import motor"],["Pfam%3APF08566","Mitochondrial import protein Pam17"]]},{"id":"GO:0005692","l":"U11 snRNP","na":2,"nb":1,"a":[["ribonucleoprotein/u11_snrnp.html","U11 snRNP"],["ribonucleoprotein/u11_u12_snrnp.html","U11/U12 snRNP"]],"b":[["GO%3A0005692","U11 snRNP"]]},{"id":"GO:0005905","l":"clathrin-coated pit","na":2,"nb":1,"a":[["other/clathrin_coat_of_coated_pit.html","clathrin coat of coated pit"],["other/clathrin_coated_pit.html","clathrin-coated pit"]],"b":[["GO%3A0005905","clathrin-coated pit"]]},{"id":"GO:0009319","l":"cytochrome o ubiquinol oxidase complex","na":1,"nb":2,"a":[["energy_complex/cytochrome_o_ubiquinol_oxidase_complex.html","cytochrome o ubiquinol oxidase complex"]],"b":[["ComplexPortal%3ACPX-2102","Cytochrome bo3 ubiquinol oxidase complex"],["GO%3A0009319","cytochrome o ubiquinol oxidase complex"]]},{"id":"GO:0009340","l":"DNA topoisomerase IV complex","na":1,"nb":2,"a":[["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["GO%3A0009340","DNA topoisomerase IV complex"],["NCBIfam%3ATIGR01062","DNA topoisomerase IV subunit A"]]},{"id":"GO:0010287","l":"plastoglobule","na":2,"nb":1,"a":[["inclusion/plastoglobule.html","plastoglobule"],["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"]],"b":[["GO%3A0010287","plastoglobule"]]},{"id":"GO:0020005","l":"symbiont-containing vacuole membrane","na":2,"nb":1,"a":[["membrane_organelle/parasitophorous_vacuole.html","parasitophorous vacuole"],["membrane_organelle/parasitophorous_vacuole_membrane.html","parasitophorous vacuole membrane"]],"b":[["GO%3A0020005","symbiont-containing vacuole membrane"]]},{"id":"GO:0020011","l":"apicoplast","na":2,"nb":1,"a":[["membrane_organelle/apicoplast.html","apicoplast"],["membrane_organelle/apicoplast_membrane.html","apicoplast membrane"]],"b":[["GO%3A0020011","apicoplast"]]},{"id":"GO:0020016","l":"flagellar pocket","na":2,"nb":1,"a":[["cytoskeleton/ciliary_pocket_collar.html","ciliary pocket collar"],["membrane_organelle/flagellar_pocket.html","flagellar pocket"]],"b":[["GO%3A0020016","ciliary pocket"]]},{"id":"GO:0020023","l":"kinetoplast","na":1,"nb":2,"a":[["nucleoid/kinetoplast.html","kinetoplast"]],"b":[["GO%3A0140525","antipodal site"],["GO%3A0020023","kinetoplast"]]},{"id":"GO:0020025","l":"subpellicular microtubule","na":2,"nb":1,"a":[["cytoskeleton/subpellicular_microtubule.html","subpellicular microtubule"],["membrane_organelle/mononeme.html","mononeme"]],"b":[["GO%3A0020025","subpellicular microtubule"]]},{"id":"GO:0030114","l":"slime layer","na":2,"nb":1,"a":[["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]],"b":[["GO%3A0030114","slime layer"]]},{"id":"GO:0030668","l":"apicomplexan dense granule membrane","na":2,"nb":1,"a":[["membrane_organelle/apicomplexan_dense_granule.html","apicomplexan dense granule"],["membrane_organelle/apicomplexan_dense_granule_membrane.html","apicomplexan dense granule membrane"]],"b":[["GO%3A0030668","apicomplexan dense granule membrane"]]},{"id":"GO:0031205","l":"endoplasmic reticulum Sec complex","na":2,"nb":1,"a":[["other/endoplasmic_reticulum_sec_complex.html","endoplasmic reticulum Sec complex"],["other/sec62_sec63_complex.html","Sec62/Sec63 complex"]],"b":[["GO%3A0031205","endoplasmic reticulum Sec complex"]]},{"id":"GO:0031518","l":"CBF3 complex","na":1,"nb":2,"a":[["other/cbf3_complex.html","CBF3 complex"]],"b":[["ComplexPortal%3ACPX-1898","CBF3 complex"],["GO%3A0031518","CBF3 complex"]]},{"id":"GO:0031561","l":"cellular bud tip polarisome","na":2,"nb":1,"a":[["other/cellular_bud_tip.html","cellular bud tip"],["other/polarisome.html","polarisome"]],"b":[["GO%3A0031561","cellular bud tip polarisome"]]},{"id":"GO:0031903","l":"microbody membrane","na":1,"nb":2,"a":[["membrane_organelle/peroxisomal_membrane.html","peroxisomal membrane"]],"b":[["GO%3A0031903","microbody membrane"],["GO%3A0005778","peroxisomal membrane"]]},{"id":"GO:0031907","l":"microbody lumen","na":1,"nb":2,"a":[["membrane_organelle/peroxisomal_matrix.html","peroxisomal matrix"]],"b":[["GO%3A0031907","microbody lumen"],["GO%3A0005782","peroxisomal matrix"]]},{"id":"GO:0031910","l":"cytostome","na":2,"nb":1,"a":[["membrane_organelle/early_endosome.html","early endosome"],["other/cytostome.html","cytostome"]],"b":[["GO%3A0031910","cytostome"]]},{"id":"GO:0032010","l":"phagolysosome","na":1,"nb":2,"a":[["membrane_organelle/phagocytic_vesicle.html","phagocytic vesicle"]],"b":[["GO%3A0020020","food vacuole"],["GO%3A0032010","phagolysosome"]]},{"id":"GO:0032258","l":"cytoplasm to vacuole targeting by the Cvt pathway","na":2,"nb":1,"a":[["membrane_organelle/cvt_vesicle.html","Cvt vesicle"],["membrane_organelle/cvt_vesicle_membrane.html","Cvt vesicle membrane"]],"b":[["GO%3A0032258","cytoplasm to vacuole targeting by the Cvt pathway"]]},{"id":"GO:0033099","l":"attachment organelle","na":2,"nb":1,"a":[["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"]],"b":[["GO%3A0033099","attachment organelle"]]},{"id":"GO:0033101","l":"cellular bud membrane","na":2,"nb":1,"a":[["envelope/cellular_bud_membrane.html","cellular bud membrane"],["other/cellular_bud.html","cellular bud"]],"b":[["GO%3A0033101","cellular bud membrane"]]},{"id":"GO:0033102","l":"acidocalcisome membrane","na":2,"nb":1,"a":[["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"]],"b":[["GO%3A0033102","acidocalcisome membrane"]]},{"id":"GO:0033105","l":"chlorosome envelope","na":2,"nb":1,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"]],"b":[["GO%3A0033105","chlorosome envelope"]]},{"id":"GO:0033111","l":"attachment organelle membrane","na":2,"nb":1,"a":[["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"]],"b":[["GO%3A0033111","attachment organelle membrane"]]},{"id":"GO:0033551","l":"monopolin complex","na":1,"nb":2,"a":[["other/monopolin_complex.html","monopolin complex"]],"b":[["ComplexPortal%3ACPX-1681","Monopolin complex"],["GO%3A0033551","monopolin complex"]]},{"id":"GO:0034063","l":"stress granule assembly","na":1,"nb":2,"a":[["ribonucleoprotein/cytoplasmic_stress_granule.html","cytoplasmic stress granule"]],"b":[["ComplexPortal%3ACPX-1412","UBP3-BRE5 ubiquitin hydrolase complex"],["GO%3A0034063","stress granule assembly"]]},{"id":"GO:0034270","l":"Cvt complex","na":2,"nb":1,"a":[["membrane_organelle/cvt_vesicle.html","Cvt vesicle"],["membrane_organelle/cvt_vesicle_membrane.html","Cvt vesicle membrane"]],"b":[["GO%3A0034270","Cvt complex"]]},{"id":"GO:0034335","l":"DNA negative supercoiling activity","na":1,"nb":2,"a":[["other/dna_gyrase_complex.html","DNA gyrase complex"]],"b":[["ComplexPortal%3ACPX-2177","GyrA-GyrB DNA Gyrase complex"],["GO%3A0034335","DNA negative supercoiling activity"]]},{"id":"GO:0042644","l":"chloroplast nucleoid","na":2,"nb":1,"a":[["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"],["nucleoid/chloroplast_nucleoid.html","chloroplast nucleoid"]],"b":[["GO%3A0042644","chloroplast nucleoid"]]},{"id":"GO:0042764","l":"ascospore-type prospore","na":2,"nb":1,"a":[["spore/endospore_forming_forespore.html","endospore-forming forespore"],["spore/prospore_membrane.html","prospore membrane"]],"b":[["GO%3A0042764","ascospore-type prospore"]]},{"id":"GO:0043592","l":"exosporium","na":1,"nb":2,"a":[["spore/exosporium.html","exosporium"]],"b":[["GO%3A0043592","exosporium"],["NCBIfam%3ATIGR03720","exosporium leader peptide-containing protein"]]},{"id":"GO:0043846","l":"DNA polymerase III, clamp loader complex","na":1,"nb":2,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"]],"b":[["ComplexPortal%3ACPX-1926","DNA polymerase III clamp loader complex"],["GO%3A0043846","DNA polymerase III, clamp loader complex"]]},{"id":"GO:0044096","l":"type IV pilus","na":2,"nb":1,"a":[["appendage/tad_pilus.html","Tad pilus"],["appendage/type_iv_pilus.html","type IV pilus"]],"b":[["GO%3A0044096","type IV pilus"]]},{"id":"GO:0044315","l":"protein secretion by the type VII secretion system","na":2,"nb":1,"a":[["secretion_system/esx_3_type_vii_secretion_system_membrane_complex.html","ESX-3 type VII secretion system membrane complex"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]],"b":[["GO%3A0044315","protein secretion by the type VII secretion system"]]},{"id":"GO:0044775","l":"DNA polymerase III, beta sliding clamp processivity factor complex","na":1,"nb":2,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"]],"b":[["ComplexPortal%3ACPX-1927","DNA polymerase III, beta sliding clamp processivity factor complex"],["GO%3A0044775","DNA polymerase III, beta sliding clamp processivity factor complex"]]},{"id":"GO:0044776","l":"DNA polymerase III, core complex","na":1,"nb":2,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"]],"b":[["ComplexPortal%3ACPX-1925","DNA polymerase III core complex"],["GO%3A0044776","DNA polymerase III, core complex"]]},{"id":"GO:0044777","l":"single-stranded DNA-binding protein complex","na":1,"nb":2,"a":[["other/single_stranded_dna_binding_protein_complex.html","single-stranded DNA-binding protein complex"]],"b":[["ComplexPortal%3ACPX-1928","SSB single-stranded DNA binding complex"],["GO%3A0044777","single-stranded DNA-binding protein complex"]]},{"id":"GO:0045283","l":"fumarate reductase complex","na":1,"nb":2,"a":[["energy_complex/fumarate_reductase_complex.html","fumarate reductase complex"]],"b":[["ComplexPortal%3ACPX-1967","Plasma membrane fumarate reductase complex"],["GO%3A0045283","fumarate reductase complex"]]},{"id":"GO:0051144","l":"1,2-propanediol catabolic process","na":1,"nb":2,"a":[["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]],"b":[["GO%3A0051144","1,2-propanediol catabolic process"],["NCBIfam%3ANF047788","transcriptional regulator PocR"]]},{"id":"GO:0055040","l":"periplasmic flagellum","na":1,"nb":2,"a":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]],"b":[["GO%3A0055040","periplasmic flagellum"],["NCBIfam%3ANF047448","flagellar coiling protein FcpA"]]},{"id":"GO:0061701","l":"bacterial outer membrane vesicle","na":1,"nb":2,"a":[["other/bacterial_outer_membrane_vesicle.html","bacterial outer membrane vesicle"]],"b":[["GO%3A0061701","bacterial outer membrane vesicle"],["NCBIfam%3ANF049843","BAR domain-like protein A BdpA"]]},{"id":"GO:0062155","l":"curli secretion complex","na":1,"nb":2,"a":[["appendage/curli.html","curli"]],"b":[["ComplexPortal%3ACPX-4743","Curli secretion complex"],["GO%3A0062155","curli secretion complex"]]},{"id":"GO:0062160","l":"spongiome","na":2,"nb":1,"a":[["membrane_organelle/contractile_vacuole_complex.html","contractile vacuole complex"],["membrane_organelle/spongiome.html","spongiome"]],"b":[["GO%3A0062160","spongiome"]]},{"id":"GO:0070056","l":"prospore membrane leading edge","na":2,"nb":1,"a":[["spore/prospore_membrane.html","prospore membrane"],["spore/prospore_membrane_leading_edge.html","prospore membrane leading edge"]],"b":[["GO%3A0070056","prospore membrane leading edge"]]},{"id":"GO:0070057","l":"prospore membrane spindle pole body attachment site","na":2,"nb":1,"a":[["spore/prospore_membrane.html","prospore membrane"],["spore/prospore_membrane_spindle_pole_body_attachment_site.html","prospore membrane spindle pole body attachment site"]],"b":[["GO%3A0070057","prospore membrane spindle pole body attachment site"]]},{"id":"GO:0070070","l":"proton-transporting V-type ATPase complex assembly","na":1,"nb":2,"a":[["other/rave_complex.html","RAVE complex"]],"b":[["GO%3A0070070","proton-transporting V-type ATPase complex assembly"],["GO%3A0070072","vacuolar proton-transporting V-type ATPase complex assembly"]]},{"id":"GO:0070258","l":"inner membrane pellicle complex","na":2,"nb":1,"a":[["cytoskeleton/subpellicular_microtubule.html","subpellicular microtubule"],["membrane_organelle/inner_membrane_pellicle_complex.html","inner membrane pellicle complex"]],"b":[["GO%3A0070258","inner membrane pellicle complex"]]},{"id":"GO:0070477","l":"endospore core","na":2,"nb":1,"a":[["spore/endospore_core.html","endospore core"],["spore/spore_inner_membrane.html","spore inner membrane"]],"b":[["GO%3A0070477","endospore core"]]},{"id":"GO:0071005","l":"U2-type precatalytic spliceosome","na":2,"nb":1,"a":[["ribonucleoprotein/u2_type_catalytic_step_1_spliceosome.html","U2-type catalytic step 1 spliceosome"],["ribonucleoprotein/u2_type_precatalytic_spliceosome.html","U2-type precatalytic spliceosome"]],"b":[["GO%3A0071005","U2-type precatalytic spliceosome"]]},{"id":"GO:0071007","l":"U2-type catalytic step 2 spliceosome","na":1,"nb":2,"a":[["ribonucleoprotein/u2_type_catalytic_step_2_spliceosome.html","U2-type catalytic step 2 spliceosome"]],"b":[["ComplexPortal%3ACPX-26472","Major Spliceosomal C* complex"],["GO%3A0071007","U2-type catalytic step 2 spliceosome"]]},{"id":"GO:0071015","l":"U12-type prespliceosome","na":2,"nb":1,"a":[["ribonucleoprotein/u12_type_precatalytic_spliceosome.html","U12-type precatalytic spliceosome"],["ribonucleoprotein/u12_type_prespliceosome.html","U12-type prespliceosome"]],"b":[["GO%3A0071015","U12-type prespliceosome"]]},{"id":"GO:0071017","l":"U12-type catalytic step 1 spliceosome","na":2,"nb":1,"a":[["ribonucleoprotein/u12_type_catalytic_step_1_spliceosome.html","U12-type catalytic step 1 spliceosome"],["ribonucleoprotein/u12_type_catalytic_step_2_spliceosome.html","U12-type catalytic step 2 spliceosome"]],"b":[["GO%3A0071017","U12-type catalytic step 1 spliceosome"]]},{"id":"GO:0071018","l":"U12-type catalytic step 2 spliceosome","na":1,"nb":2,"a":[["ribonucleoprotein/u12_type_catalytic_step_2_spliceosome.html","U12-type catalytic step 2 spliceosome"]],"b":[["ComplexPortal%3ACPX-26509","Minor Spliceosomal B-act complex"],["GO%3A0071018","U12-type catalytic step 2 spliceosome"]]},{"id":"GO:0071019","l":"U12-type post-mRNA release spliceosomal complex","na":2,"nb":1,"a":[["ribonucleoprotein/u12_type_post_mrna_release_spliceosomal_complex.html","U12-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u12_type_post_spliceosomal_complex.html","U12-type post-spliceosomal complex"]],"b":[["GO%3A0071019","U12-type post-mRNA release spliceosomal complex"]]},{"id":"GO:0071261","l":"Ssh1 translocon complex","na":1,"nb":2,"a":[["other/ssh1_translocon_complex.html","Ssh1 translocon complex"]],"b":[["ComplexPortal%3ACPX-1834","SSH1 translocon complex"],["GO%3A0071261","Ssh1 translocon complex"]]},{"id":"GO:0071970","l":"fungal-type cell wall (1->3)-beta-D-glucan biosynthetic process","na":1,"nb":2,"a":[["other/1_3_beta_d_glucan_synthase_complex.html","1,3-beta-D-glucan synthase complex"]],"b":[["GO%3A0034413","ascospore wall (1->3)-beta-D-glucan biosynthetic process"],["GO%3A0071970","fungal-type cell wall (1->3)-beta-D-glucan biosynthetic process"]]},{"id":"GO:0090383","l":"phagosome acidification","na":1,"nb":2,"a":[["membrane_organelle/phagocytic_vesicle_lumen.html","phagocytic vesicle lumen"]],"b":[["GO%3A0090383","phagosome acidification"],["GO%3A0090390","phagosome acidification involved in apoptotic cell clearance"]]},{"id":"GO:0097002","l":"mitochondrial inner boundary membrane","na":2,"nb":1,"a":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"]],"b":[["GO%3A0097002","mitochondrial inner boundary membrane"]]},{"id":"GO:0097591","l":"ventral disc lateral crest","na":2,"nb":1,"a":[["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_lateral_crest.html","ventral disc lateral crest"]],"b":[["GO%3A0097591","ventral disc lateral crest"]]},{"id":"GO:0097592","l":"ventral disc overlap zone","na":2,"nb":1,"a":[["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_overlap_zone.html","ventral disc overlap zone"]],"b":[["GO%3A0097592","ventral disc overlap zone"]]},{"id":"GO:0097596","l":"ventral disc supernumerary microtubule array","na":2,"nb":1,"a":[["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_supernumerary_microtubule_array.html","ventral disc supernumerary microtubule array"]],"b":[["GO%3A0097596","ventral disc supernumerary microtubule array"]]},{"id":"GO:0098775","l":"curli assembly","na":1,"nb":2,"a":[["appendage/curli.html","curli"]],"b":[["ComplexPortal%3ACPX-4743","Curli secretion complex"],["GO%3A0098775","curli assembly"]]},{"id":"GO:0106176","l":"clathrin-coated endocytic vesicle lumen","na":2,"nb":1,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle_lumen.html","clathrin-coated endocytic vesicle lumen"],["membrane_organelle/endocytic_vesicle_lumen.html","endocytic vesicle lumen"]],"b":[["GO%3A0106176","clathrin-coated endocytic vesicle lumen"]]},{"id":"GO:0120119","l":"flagellum attachment zone","na":2,"nb":1,"a":[["cytoskeleton/bilobe_structure.html","bilobe structure"],["cytoskeleton/flagellum_attachment_zone.html","flagellum attachment zone"]],"b":[["GO%3A0120119","flagellum attachment zone"]]},{"id":"GO:0120217","l":"DNA gyrase complex","na":1,"nb":2,"a":[["other/dna_gyrase_complex.html","DNA gyrase complex"]],"b":[["ComplexPortal%3ACPX-2177","GyrA-GyrB DNA Gyrase complex"],["GO%3A0120217","DNA gyrase complex"]]},{"id":"GO:0140549","l":"spore inner membrane","na":2,"nb":1,"a":[["spore/endospore_core.html","endospore core"],["spore/spore_inner_membrane.html","spore inner membrane"]],"b":[["GO%3A0140549","spore inner membrane"]]},{"id":"GO:0160115","l":"axonemal microtubule doublet ribbon","na":2,"nb":1,"a":[["cytoskeleton/axonemal_doublet_microtubule.html","axonemal doublet microtubule"],["cytoskeleton/axonemal_microtubule_doublet_ribbon.html","axonemal microtubule doublet ribbon"]],"b":[["GO%3A0160115","axonemal microtubule doublet ribbon"]]},{"id":"GO:0160223","l":"pyrenoid tubule","na":2,"nb":1,"a":[["membrane_organelle/pyrenoid_tubule.html","pyrenoid tubule"],["other/pyrenoid.html","pyrenoid"]],"b":[["GO%3A0160223","pyrenoid tubule"]]},{"id":"GO:1990061","l":"bacterial degradosome","na":1,"nb":2,"a":[["ribonucleoprotein/bacterial_degradosome.html","bacterial degradosome"]],"b":[["ComplexPortal%3ACPX-403","RNA degradosome"],["GO%3A1990061","bacterial degradosome"]]},{"id":"GO:1990063","l":"Bam protein complex","na":1,"nb":2,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["ComplexPortal%3ACPX-1923","BAM complex"],["GO%3A1990063","Bam protein complex"]]},{"id":"GO:1990070","l":"TRAPPI protein complex","na":1,"nb":2,"a":[["other/trappi_protein_complex.html","TRAPPI protein complex"]],"b":[["ComplexPortal%3ACPX-1940","TRAPPI protein complex"],["GO%3A1990070","TRAPPI protein complex"]]},{"id":"GO:1990732","l":"pyrenoid","na":2,"nb":1,"a":[["membrane_organelle/pyrenoid_tubule.html","pyrenoid tubule"],["other/pyrenoid.html","pyrenoid"]],"b":[["GO%3A1990732","pyrenoid"]]},{"id":"InterPro:IPR000563","l":"","na":1,"nb":2,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF02108","Flagellar assembly protein FliH"],["PRINTS%3APR01003","Flagellar assembly protein FliH signature"]]},{"id":"InterPro:IPR002585","l":"","na":1,"nb":2,"a":[["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]],"b":[["PANTHER%3APTHR30365","CYTOCHROME D UBIQUINOL OXIDASE"],["Pfam%3APF01654","Cytochrome bd terminal oxidase subunit I"]]},{"id":"InterPro:IPR003317","l":"","na":1,"nb":2,"a":[["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]],"b":[["PANTHER%3APTHR43141","CYTOCHROME BD2 SUBUNIT II"],["Pfam%3APF02322","Cytochrome bd terminal oxidase subunit II"]]},{"id":"InterPro:IPR005742","l":"","na":1,"nb":2,"a":[["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["HAMAP%3AMF_00936","DNA topoisomerase 4 subunit A [parC]"],["Pfam%3APF03989","DNA gyrase C-terminal domain, beta-propeller"]]},{"id":"InterPro:IPR006301","l":"","na":1,"nb":2,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF00771","FHIPEP family"],["PROSITE%3APS00994","Bacterial export FHIPEP family signature"]]},{"id":"InterPro:IPR006333","l":"","na":1,"nb":2,"a":[["energy_complex/cytochrome_o_ubiquinol_oxidase_complex.html","cytochrome o ubiquinol oxidase complex"]],"b":[["Pfam%3APF00116","Cytochrome C oxidase subunit II, periplasmic domain"],["Pfam%3APF06481","COX Aromatic Rich Motif"]]},{"id":"InterPro:IPR006344","l":"","na":1,"nb":2,"a":[["other/exodeoxyribonuclease_v_complex.html","exodeoxyribonuclease V complex"]],"b":[["Pfam%3APF13245","AAA domain"],["HAMAP%3AMF_01487","RecBCD enzyme subunit RecD [recD]"]]},{"id":"InterPro:IPR008703","l":"","na":1,"nb":2,"a":[["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"]],"b":[["HAMAP%3AMF_00425","Na(+)-translocating NADH-quinone reductase subunit A [nqrA]"],["PANTHER%3APTHR37839","NA(+)-TRANSLOCATING NADH-QUINONE REDUCTASE SUBUNIT A"]]},{"id":"InterPro:IPR011344","l":"","na":1,"nb":2,"a":[["other/single_stranded_dna_binding_protein_complex.html","single-stranded DNA-binding protein complex"]],"b":[["HAMAP%3AMF_00984","Single-stranded DNA-binding protein"],["PANTHER%3APTHR10302","SINGLE-STRANDED DNA-BINDING PROTEIN"]]},{"id":"InterPro:IPR012422","l":"Cytochrome c oxidase, subunit IV, bacterial aa3 type","na":1,"nb":2,"a":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]],"b":[["InterPro%3AIPR012422","Cytochrome c oxidase, subunit IV, bacterial aa3 type"],["Pfam%3APF07835","Bacterial aa3 type cytochrome c oxidase subunit IV"]]},{"id":"InterPro:IPR014524","l":"","na":1,"nb":2,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["Pfam%3APF06804","Outer membrane protein assembly factor BamC-like C-terminal domain"],["HAMAP%3AMF_00924","Outer membrane protein assembly factor BamC [bamC]"]]},{"id":"InterPro:IPR017687","l":"","na":1,"nb":2,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["HAMAP%3AMF_00923","Outer membrane protein assembly factor BamB [bamB]"],["Pfam%3APF13360","Outer membrane protein assembly factor BamB"]]},{"id":"InterPro:IPR017689","l":"","na":1,"nb":2,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["HAMAP%3AMF_00922","Outer membrane protein assembly factor BamD [bamD]"],["Pfam%3APF13525","Outer membrane lipoprotein"]]},{"id":"InterPro:IPR024791","l":"","na":1,"nb":2,"a":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]],"b":[["Pfam%3APF00510","Cytochrome c oxidase subunit III"],["PANTHER%3APTHR11403","CYTOCHROME C OXIDASE SUBUNIT III"]]},{"id":"InterPro:IPR030689","l":"","na":1,"nb":2,"a":[["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"]],"b":[["Pfam%3APF00032","Cytochrome b(C-terminal)/b6/petD"],["Pfam%3APF00033","Cytochrome b/b6/petB"]]},{"id":"InterPro:IPR040747","l":"BILBO1, N-terminal domain","na":1,"nb":2,"a":[["cytoskeleton/ciliary_pocket_collar.html","ciliary pocket collar"]],"b":[["InterPro%3AIPR040747","BILBO1, N-terminal domain"],["Pfam%3APF18281","BILBO1 N-terminal domain"]]},{"id":"NCBITaxon:198110","l":"Pseudomonas phage 201phi2-1","na":2,"nb":1,"a":[["cytoskeleton/phuz_spindle.html","PhuZ spindle"],["other/phage_nucleus.html","phage nucleus"]],"b":[["Pfam%3APF25677","Phikzvirus chimallin family"]]},{"id":"NCBITaxon:264462","l":"Bdellovibrio bacteriovorus HD100","na":1,"nb":2,"a":[["appendage/type_iv_pilus.html","type IV pilus"]],"b":[["TED%3AAF-Q6MMM6-F1-model_v4_TED01","TED novel fold AF-Q6MMM6-F1-model_v4_TED01"],["TED%3AAF-Q6MPT8-F1-model_v4_TED01","TED novel fold AF-Q6MPT8-F1-model_v4_TED01"]]},{"id":"Pfam:PF04454","l":"Encapsulating protein for peroxidase","na":1,"nb":2,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]],"b":[["Pfam%3APF04454","Encapsulating protein for peroxidase"],["proteintraitsmech%3AINTERFACE_PF04454_PF04454","Linocin_M18–Linocin_M18 domain interface"]]},{"id":"Pfam:PF06386","l":"Gas vesicle synthesis protein GvpL/GvpF","na":1,"nb":2,"a":[["inclusion/gas_vesicle.html","gas vesicle"]],"b":[["Pfam%3APF06386","Gas vesicle synthesis protein GvpL/GvpF"],["proteintraitsmech%3AINTERFACE_PF06386_PF06386","GvpL_GvpF–GvpL_GvpF domain interface"]]},{"id":"Pfam:PF18281","l":"BILBO1 N-terminal domain","na":1,"nb":2,"a":[["cytoskeleton/ciliary_pocket_collar.html","ciliary pocket collar"]],"b":[["Pfam%3APF18281","BILBO1 N-terminal domain"],["proteintraitsmech%3AINTERFACE_PF18281_PF18281","BILBO1_N–BILBO1_N domain interface"]]},{"id":"UniProt:P11558","l":"","na":1,"nb":2,"a":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]],"b":[["RHEA%3A12532","coenzyme B + methyl-coenzyme M = methane + coenzyme M-coenzyme B heterodisulfide"],["MCSA%3A156","coenzyme-B sulfoethylthiotransferase"]]},{"id":"UniProt:P16328","l":"","na":1,"nb":2,"a":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"]],"b":[["Pfam%3APF07195","Flagellar hook-associated protein 2 C-terminus"],["Pfam%3APF02465","Flagellar hook-associated protein 2 N-terminus"]]},{"id":"UniProt:P26462","l":"","na":2,"nb":1,"a":[["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"]],"b":[["Pfam%3APF02049","Flagellar hook-basal body complex protein FliE"]]},{"id":"UniProt:P37093","l":"","na":1,"nb":2,"a":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"]],"b":[["Pfam%3APF22341","GSPII protein E, N1E domain"],["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]]},{"id":"UniProt:P45689","l":"","na":2,"nb":1,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"UniProt:P52616","l":"","na":2,"nb":1,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"]],"b":[["Pfam%3APF21504","Flagellin, barrel domain"]]},{"id":"UniProt:Q03511","l":"","na":2,"nb":1,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"UniProt:Q03512","l":"","na":2,"nb":1,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["Pfam%3APF03319","Ethanolamine utilisation protein EutN/carboxysome"]]},{"id":"UniProt:Q31QW7","l":"","na":2,"nb":1,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"]]},{"id":"CHEBI:30033","l":"","na":1,"nb":1,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"]],"b":[["proteintraitsmech%3ABIOLIP_BCL","BCL-binding site"]]},{"id":"GO:0000147","l":"actin cortical patch assembly","na":1,"nb":1,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"]],"b":[["GO%3A0000147","actin cortical patch assembly"]]},{"id":"GO:0000937","l":"dolipore septum","na":1,"nb":1,"a":[["envelope/dolipore_septum.html","dolipore septum"]],"b":[["GO%3A0000937","dolipore septum"]]},{"id":"GO:0001411","l":"hyphal tip","na":1,"nb":1,"a":[["other/spitzenkorper.html","spitzenkorper"]],"b":[["GO%3A0001411","hyphal tip"]]},{"id":"GO:0001536","l":"radial spoke stalk","na":1,"nb":1,"a":[["cytoskeleton/radial_spoke.html","radial spoke"]],"b":[["GO%3A0001536","radial spoke stalk"]]},{"id":"GO:0020003","l":"symbiont-containing vacuole","na":1,"nb":1,"a":[["membrane_organelle/parasitophorous_vacuole.html","parasitophorous vacuole"]],"b":[["GO%3A0020003","symbiont-containing vacuole"]]},{"id":"GO:0020004","l":"symbiont-containing vacuolar space","na":1,"nb":1,"a":[["membrane_organelle/parasitophorous_vacuole_lumen.html","parasitophorous vacuole lumen"]],"b":[["GO%3A0020004","symbiont-containing vacuolar space"]]},{"id":"GO:0020018","l":"ciliary pocket membrane","na":1,"nb":1,"a":[["membrane_organelle/flagellar_pocket.html","flagellar pocket"]],"b":[["GO%3A0020018","ciliary pocket membrane"]]},{"id":"GO:0020020","l":"food vacuole","na":1,"nb":1,"a":[["membrane_organelle/food_vacuole.html","food vacuole"]],"b":[["GO%3A0020020","food vacuole"]]},{"id":"GO:0020036","l":"","na":1,"nb":1,"a":[["membrane_organelle/maurer_s_cleft.html","Maurer's cleft"]],"b":[["GO%3A0020036","Maurer's cleft"]]},{"id":"GO:0030680","l":"dimeric ribonuclease P complex","na":1,"nb":1,"a":[["ribonucleoprotein/dimeric_ribonuclease_p_complex.html","dimeric ribonuclease P complex"]],"b":[["GO%3A0030680","dimeric ribonuclease P complex"]]},{"id":"GO:0031039","l":"macronucleus","na":1,"nb":1,"a":[["membrane_organelle/macronucleus.html","macronucleus"]],"b":[["GO%3A0031039","macronucleus"]]},{"id":"GO:0031040","l":"micronucleus","na":1,"nb":1,"a":[["membrane_organelle/micronucleus.html","micronucleus"]],"b":[["GO%3A0031040","micronucleus"]]},{"id":"GO:0031080","l":"nuclear pore outer ring","na":1,"nb":1,"a":[["other/nuclear_pore_outer_ring.html","nuclear pore outer ring"]],"b":[["GO%3A0031080","nuclear pore outer ring"]]},{"id":"GO:0031471","l":"ethanolamine degradation polyhedral organelle","na":1,"nb":1,"a":[["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"]],"b":[["GO%3A0031471","ethanolamine degradation polyhedral organelle"]]},{"id":"GO:0031472","l":"propanediol degradation polyhedral organelle","na":1,"nb":1,"a":[["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]],"b":[["GO%3A0031472","propanediol degradation polyhedral organelle"]]},{"id":"GO:0031521","l":"spitzenkorper","na":1,"nb":1,"a":[["other/spitzenkorper.html","spitzenkorper"]],"b":[["GO%3A0031521","spitzenkorper"]]},{"id":"GO:0031560","l":"cellular bud neck polarisome","na":1,"nb":1,"a":[["other/polarisome.html","polarisome"]],"b":[["GO%3A0031560","cellular bud neck polarisome"]]},{"id":"GO:0031562","l":"hyphal tip polarisome","na":1,"nb":1,"a":[["other/polarisome.html","polarisome"]],"b":[["GO%3A0031562","hyphal tip polarisome"]]},{"id":"GO:0031563","l":"mating projection tip polarisome","na":1,"nb":1,"a":[["other/polarisome.html","polarisome"]],"b":[["GO%3A0031563","mating projection tip polarisome"]]},{"id":"GO:0032009","l":"early phagosome","na":1,"nb":1,"a":[["membrane_organelle/phagocytic_vesicle.html","phagocytic vesicle"]],"b":[["GO%3A0032009","early phagosome"]]},{"id":"GO:0032120","l":"ascospore-type prospore membrane formation","na":1,"nb":1,"a":[["spore/prospore_membrane.html","prospore membrane"]],"b":[["GO%3A0032120","ascospore-type prospore membrane formation"]]},{"id":"GO:0033009","l":"nucleomorph","na":1,"nb":1,"a":[["membrane_organelle/nucleomorph.html","nucleomorph"]],"b":[["GO%3A0033009","nucleomorph"]]},{"id":"GO:0033172","l":"gas vesicle shell","na":1,"nb":1,"a":[["inclusion/gas_vesicle_shell.html","gas vesicle shell"]],"b":[["GO%3A0033172","gas vesicle shell"]]},{"id":"GO:0033289","l":"intraconoid microtubule","na":1,"nb":1,"a":[["cytoskeleton/intraconoid_microtubule.html","intraconoid microtubule"]],"b":[["GO%3A0033289","intraconoid microtubule"]]},{"id":"GO:0033985","l":"acidocalcisome lumen","na":1,"nb":1,"a":[["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"]],"b":[["GO%3A0033985","acidocalcisome lumen"]]},{"id":"GO:0035253","l":"ciliary rootlet","na":1,"nb":1,"a":[["cytoskeleton/ciliary_rootlet.html","ciliary rootlet"]],"b":[["GO%3A0035253","ciliary rootlet"]]},{"id":"GO:0036000","l":"mucocyst","na":1,"nb":1,"a":[["membrane_organelle/mucocyst.html","mucocyst"]],"b":[["GO%3A0036000","mucocyst"]]},{"id":"GO:0036407","l":"mycolate outer membrane","na":1,"nb":1,"a":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]],"b":[["GO%3A0036407","mycolate outer membrane"]]},{"id":"GO:0042645","l":"mitochondrial nucleoid","na":1,"nb":1,"a":[["nucleoid/mitochondrial_nucleoid.html","mitochondrial nucleoid"]],"b":[["GO%3A0042645","mitochondrial nucleoid"]]},{"id":"GO:0043263","l":"cellulosome","na":1,"nb":1,"a":[["other/cellulosome.html","cellulosome"]],"b":[["GO%3A0043263","cellulosome"]]},{"id":"GO:0044227","l":"methane-oxidizing organelle","na":1,"nb":1,"a":[["membrane_organelle/methane_oxidizing_organelle.html","methane-oxidizing organelle"]],"b":[["GO%3A0044227","methane-oxidizing organelle"]]},{"id":"GO:0044311","l":"exoneme","na":1,"nb":1,"a":[["membrane_organelle/exoneme.html","exoneme"]],"b":[["GO%3A0044311","exoneme"]]},{"id":"GO:0044611","l":"nuclear pore inner ring","na":1,"nb":1,"a":[["other/nuclear_pore_inner_ring.html","nuclear pore inner ring"]],"b":[["GO%3A0044611","nuclear pore inner ring"]]},{"id":"GO:0044612","l":"nuclear pore linkers","na":1,"nb":1,"a":[["other/nuclear_pore_linkers.html","nuclear pore linkers"]],"b":[["GO%3A0044612","nuclear pore linkers"]]},{"id":"GO:0044613","l":"nuclear pore central transport channel","na":1,"nb":1,"a":[["other/nuclear_pore_central_transport_channel.html","nuclear pore central transport channel"]],"b":[["GO%3A0044613","nuclear pore central transport channel"]]},{"id":"GO:0044614","l":"nuclear pore cytoplasmic filaments","na":1,"nb":1,"a":[["other/nuclear_pore_cytoplasmic_filaments.html","nuclear pore cytoplasmic filaments"]],"b":[["GO%3A0044614","nuclear pore cytoplasmic filaments"]]},{"id":"GO:0044615","l":"nuclear pore nuclear basket","na":1,"nb":1,"a":[["other/nuclear_pore_nuclear_basket.html","nuclear pore nuclear basket"]],"b":[["GO%3A0044615","nuclear pore nuclear basket"]]},{"id":"GO:0044674","l":"methyl coenzyme M reductase complex","na":1,"nb":1,"a":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]],"b":[["GO%3A0044674","methyl coenzyme M reductase complex"]]},{"id":"GO:0045009","l":"chitosome","na":1,"nb":1,"a":[["membrane_organelle/chitosome.html","chitosome"]],"b":[["GO%3A0045009","chitosome"]]},{"id":"GO:0046188","l":"methane catabolic process","na":1,"nb":1,"a":[["membrane_organelle/methane_oxidizing_organelle.html","methane-oxidizing organelle"]],"b":[["GO%3A0046188","methane catabolic process"]]},{"id":"GO:0055039","l":"trichocyst","na":1,"nb":1,"a":[["membrane_organelle/trichocyst.html","trichocyst"]],"b":[["GO%3A0055039","trichocyst"]]},{"id":"GO:0061909","l":"autophagosome-lysosome fusion","na":1,"nb":1,"a":[["membrane_organelle/autophagosome.html","autophagosome"]],"b":[["GO%3A0061909","autophagosome-lysosome fusion"]]},{"id":"GO:0061927","l":"TOC-TIC supercomplex I","na":1,"nb":1,"a":[["membrane_organelle/chloroplast.html","chloroplast"]],"b":[["GO%3A0061927","TOC-TIC supercomplex I"]]},{"id":"GO:0070074","l":"mononeme","na":1,"nb":1,"a":[["membrane_organelle/mononeme.html","mononeme"]],"b":[["GO%3A0070074","mononeme"]]},{"id":"GO:0070676","l":"intralumenal vesicle formation","na":1,"nb":1,"a":[["other/escrt_iv_complex.html","ESCRT IV complex"]],"b":[["GO%3A0070676","intralumenal vesicle formation"]]},{"id":"GO:0071022","l":"U12-type post-spliceosomal complex","na":1,"nb":1,"a":[["ribonucleoprotein/u12_type_post_spliceosomal_complex.html","U12-type post-spliceosomal complex"]],"b":[["GO%3A0071022","U12-type post-spliceosomal complex"]]},{"id":"GO:0097268","l":"cytoophidium","na":1,"nb":1,"a":[["cytoskeleton/cytoophidium.html","cytoophidium"]],"b":[["GO%3A0097268","cytoophidium"]]},{"id":"GO:0097568","l":"median body","na":1,"nb":1,"a":[["cytoskeleton/median_body.html","median body"]],"b":[["GO%3A0097568","median body"]]},{"id":"GO:0097691","l":"bacterial extracellular vesicle","na":1,"nb":1,"a":[["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"]],"b":[["GO%3A0097691","bacterial extracellular vesicle"]]},{"id":"GO:0097740","l":"paraflagellar rod","na":1,"nb":1,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["GO%3A0097740","paraflagellar rod"]]},{"id":"GO:0097741","l":"mastigoneme","na":1,"nb":1,"a":[["appendage/mastigoneme.html","mastigoneme"]],"b":[["GO%3A0097741","mastigoneme"]]},{"id":"GO:0098561","l":"methyl accepting chemotaxis protein complex","na":1,"nb":1,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["GO%3A0098561","methyl accepting chemotaxis protein complex"]]},{"id":"GO:0098774","l":"curli","na":1,"nb":1,"a":[["appendage/curli.html","curli"]],"b":[["GO%3A0098774","curli"]]},{"id":"GO:0110145","l":"magnetosome lumen","na":1,"nb":1,"a":[["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"]],"b":[["GO%3A0110145","magnetosome lumen"]]},{"id":"GO:0120120","l":"bilobe structure","na":1,"nb":1,"a":[["cytoskeleton/bilobe_structure.html","bilobe structure"]],"b":[["GO%3A0120120","bilobe structure"]]},{"id":"GO:0120121","l":"tripartite attachment complex","na":1,"nb":1,"a":[["cytoskeleton/tripartite_attachment_complex.html","tripartite attachment complex"]],"b":[["GO%3A0120121","tripartite attachment complex"]]},{"id":"GO:0120234","l":"stereocilium coat","na":1,"nb":1,"a":[["envelope/glycocalyx.html","glycocalyx"]],"b":[["GO%3A0120234","stereocilium coat"]]},{"id":"GO:0120238","l":"sperm glycocalyx","na":1,"nb":1,"a":[["envelope/glycocalyx.html","glycocalyx"]],"b":[["GO%3A0120238","sperm glycocalyx"]]},{"id":"GO:0120239","l":"vascular endothelial glycocalyx","na":1,"nb":1,"a":[["envelope/glycocalyx.html","glycocalyx"]],"b":[["GO%3A0120239","vascular endothelial glycocalyx"]]},{"id":"GO:0120240","l":"platelet glycocalyx","na":1,"nb":1,"a":[["envelope/glycocalyx.html","glycocalyx"]],"b":[["GO%3A0120240","platelet glycocalyx"]]},{"id":"GO:0120343","l":"radial spoke neck","na":1,"nb":1,"a":[["cytoskeleton/radial_spoke.html","radial spoke"]],"b":[["GO%3A0120343","radial spoke neck"]]},{"id":"GO:0140266","l":"Woronin body","na":1,"nb":1,"a":[["membrane_organelle/woronin_body.html","Woronin body"]],"b":[["GO%3A0140266","Woronin body"]]},{"id":"GO:0140621","l":"type I pilus","na":1,"nb":1,"a":[["appendage/type_i_pilus.html","type I pilus"]],"b":[["GO%3A0140621","type I pilus"]]},{"id":"GO:0140623","l":"type I pilus assembly","na":1,"nb":1,"a":[["appendage/type_i_pilus.html","type I pilus"]],"b":[["GO%3A0140623","type I pilus assembly"]]},{"id":"GO:0160201","l":"polaroplast","na":1,"nb":1,"a":[["membrane_organelle/polaroplast.html","polaroplast"]],"b":[["GO%3A0160201","polaroplast"]]},{"id":"GO:0160202","l":"polar tube anchoring disc","na":1,"nb":1,"a":[["spore/polar_tube_anchoring_disc.html","polar tube anchoring disc"]],"b":[["GO%3A0160202","polar tube anchoring disc"]]},{"id":"GO:0160292","l":"sodium-translocating NADH:quinone reductase complex","na":1,"nb":1,"a":[["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"]],"b":[["GO%3A0160292","sodium-translocating NADH:quinone reductase complex"]]},{"id":"GO:1990131)","l":"","na":1,"nb":1,"a":[["other/ragulator_complex.html","Ragulator complex"]],"b":[["GO%3A0071986","Ragulator complex"]]},{"id":"GO:1990225","l":"rhoptry neck","na":1,"nb":1,"a":[["membrane_organelle/rhoptry_neck.html","rhoptry neck"]],"b":[["GO%3A1990225","rhoptry neck"]]},{"id":"GO:1990413","l":"eyespot apparatus","na":1,"nb":1,"a":[["membrane_organelle/eyespot_apparatus.html","eyespot apparatus"]],"b":[["GO%3A1990413","eyespot apparatus"]]},{"id":"InterPro:IPR000067","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"]],"b":[["PRINTS%3APR01009","Flagellar M-ring protein signature"]]},{"id":"InterPro:IPR003178","l":"","na":1,"nb":1,"a":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]],"b":[["Pfam%3APF02240","Methyl-coenzyme M reductase gamma subunit"]]},{"id":"InterPro:IPR004586","l":"","na":1,"nb":1,"a":[["other/exodeoxyribonuclease_v_complex.html","exodeoxyribonuclease V complex"]],"b":[["HAMAP%3AMF_01485","RecBCD enzyme subunit RecB [recB]"]]},{"id":"InterPro:IPR005884","l":"","na":1,"nb":1,"a":[["energy_complex/fumarate_reductase_complex.html","fumarate reductase complex"]],"b":[["PROSITE%3APS00504","Fumarate reductase / succinate dehydrogenase FAD-binding site"]]},{"id":"InterPro:IPR006136","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF01312","FlhB HrpN YscU SpaS Family"]]},{"id":"InterPro:IPR006303","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF01311","Bacterial export proteins, family 1"]]},{"id":"InterPro:IPR006305","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF01313","Bacterial export proteins, family 3"]]},{"id":"InterPro:IPR006697","l":"","na":1,"nb":1,"a":[["other/exodeoxyribonuclease_v_complex.html","exodeoxyribonuclease V complex"]],"b":[["HAMAP%3AMF_01486","RecBCD enzyme subunit RecC [recC]"]]},{"id":"InterPro:IPR007824","l":"","na":1,"nb":1,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["Pfam%3APF05149","Paraflagellar rod protein"]]},{"id":"InterPro:IPR010205","l":"","na":1,"nb":1,"a":[["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"]],"b":[["HAMAP%3AMF_00430","Na(+)-translocating NADH-quinone reductase subunit F [nqrF]"]]},{"id":"InterPro:IPR010966","l":"","na":1,"nb":1,"a":[["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"]],"b":[["HAMAP%3AMF_00426","Na(+)-translocating NADH-quinone reductase subunit B [nqrB]"]]},{"id":"InterPro:IPR010967","l":"","na":1,"nb":1,"a":[["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"]],"b":[["HAMAP%3AMF_00429","Na(+)-translocating NADH-quinone reductase subunit E [nqrE]"]]},{"id":"InterPro:IPR011292","l":"","na":1,"nb":1,"a":[["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"]],"b":[["HAMAP%3AMF_00428","Na(+)-translocating NADH-quinone reductase subunit D [nqrD]"]]},{"id":"InterPro:IPR012823","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF02050","Flagellar FliJ protein"]]},{"id":"InterPro:IPR014207","l":"","na":1,"nb":1,"a":[["energy_complex/cytochrome_o_ubiquinol_oxidase_complex.html","cytochrome o ubiquinol oxidase complex"]],"b":[["PROSITE%3APS00077","Heme-copper oxidase catalytic subunit, copper B binding region signature"]]},{"id":"InterPro:IPR014210","l":"","na":1,"nb":1,"a":[["energy_complex/cytochrome_o_ubiquinol_oxidase_complex.html","cytochrome o ubiquinol oxidase complex"]],"b":[["Pfam%3APF03626","Prokaryotic Cytochrome C oxidase subunit IV"]]},{"id":"InterPro:IPR023707","l":"","na":1,"nb":1,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["HAMAP%3AMF_01430","Outer membrane protein assembly factor BamA [bamA]"]]},{"id":"InterPro:IPR047743","l":"","na":1,"nb":1,"a":[["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]],"b":[["Pfam%3APF28012","Membrane protein YnhF-like"]]},{"id":"Pfam:PF05149","l":"Paraflagellar rod protein","na":1,"nb":1,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["Pfam%3APF05149","Paraflagellar rod protein"]]},{"id":"UniProt:A0QQ46","l":"","na":1,"nb":1,"a":[["secretion_system/esx_3_type_vii_secretion_system_membrane_complex.html","ESX-3 type VII secretion system membrane complex"]],"b":[["Pfam%3APF19053","EccD-like transmembrane domain"]]},{"id":"UniProt:O85041","l":"","na":1,"nb":1,"a":[["microcompartment/carboxysome.html","carboxysome"]],"b":[["Pfam%3APF12288","Carboxysome shell peptide mid-region"]]},{"id":"UniProt:P0A1C7","l":"","na":1,"nb":1,"a":[["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]],"b":[["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"UniProt:P0A1K1","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF02050","Flagellar FliJ protein"]]},{"id":"UniProt:P0A1N8","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"]],"b":[["proteintraitsmech%3ABIOLIP_TQN","TQN-binding site"]]},{"id":"UniProt:P0A314","l":"","na":1,"nb":1,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"]],"b":[["Pfam%3APF02043","Bacteriochlorophyll C binding protein"]]},{"id":"UniProt:P0A3F8","l":"","na":1,"nb":1,"a":[["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]],"b":[["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]]},{"id":"UniProt:P0A3W0","l":"","na":1,"nb":1,"a":[["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]],"b":[["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"]]},{"id":"UniProt:P0A8Q0.","l":"","na":1,"nb":1,"a":[["energy_complex/fumarate_reductase_complex.html","fumarate reductase complex"]],"b":[["proteintraitsmech%3ABIOLIP_MQ7","MQ7-binding site"]]},{"id":"UniProt:P0ABB4","l":"","na":1,"nb":1,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"]]},{"id":"UniProt:P11560","l":"","na":1,"nb":1,"a":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]],"b":[["MCSA%3A156","coenzyme-B sulfoethylthiotransferase"]]},{"id":"UniProt:P11562","l":"","na":1,"nb":1,"a":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]],"b":[["MCSA%3A156","coenzyme-B sulfoethylthiotransferase"]]},{"id":"UniProt:P14016","l":"","na":1,"nb":1,"a":[["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]],"b":[["Pfam%3APF10628","Outer spore coat protein E (CotE)"]]},{"id":"UniProt:P22225","l":"","na":1,"nb":1,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["Pfam%3APF05149","Paraflagellar rod protein"]]},{"id":"UniProt:P26418","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]],"b":[["Pfam%3APF02154","Flagellar motor switch protein FliM"]]},{"id":"UniProt:P26419","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]],"b":[["Pfam%3APF16973","Flagellar motor switch protein FliN N-terminal"]]},{"id":"UniProt:P27134","l":"","na":1,"nb":1,"a":[["microcompartment/carboxysome.html","carboxysome"]],"b":[["PROSITE%3APS00704","Prokaryotic-type carbonic anhydrases signature 1"]]},{"id":"UniProt:P40727","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF01312","FlhB HrpN YscU SpaS Family"]]},{"id":"UniProt:P41784","l":"","na":1,"nb":1,"a":[["secretion_system/type_iii_protein_secretion_system_complex.html","type III protein secretion system complex"]],"b":[["proteintraitsmech%3ABIOLIP_DXC","DXC-binding site"]]},{"id":"UniProt:P41791","l":"","na":1,"nb":1,"a":[["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"]],"b":[["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"UniProt:P41792","l":"","na":1,"nb":1,"a":[["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"]],"b":[["Pfam%3APF03319","Ethanolamine utilisation protein EutN/carboxysome"]]},{"id":"UniProt:P54702","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF01311","Bacterial export proteins, family 1"]]},{"id":"UniProt:P70856","l":"","na":1,"nb":1,"a":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]],"b":[["Pfam%3APF04620","Flagellar filament outer layer protein Flaa"]]},{"id":"UniProt:P75471","l":"","na":1,"nb":1,"a":[["appendage/attachment_organelle.html","attachment organelle"]],"b":[["Pfam%3APF27734","Cytadherence high molecular weight protein 2"]]},{"id":"UniProt:P9WHT9","l":"","na":1,"nb":1,"a":[["other/proteasome_core_complex.html","proteasome core complex"]],"b":[["proteintraitsmech%3ABIOLIP_SA6","SA6-binding site"]]},{"id":"UniProt:Q06851","l":"","na":1,"nb":1,"a":[["other/cellulosome.html","cellulosome"]],"b":[["Pfam%3APF00963","Cohesin domain"]]},{"id":"UniProt:Q26789","l":"","na":1,"nb":1,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["Pfam%3APF05149","Paraflagellar rod protein"]]},{"id":"UniProt:Q46367","l":"","na":1,"nb":1,"a":[["membrane_organelle/chlorosome.html","chlorosome"]],"b":[["Pfam%3APF11098","Chlorosome envelope protein C"]]},{"id":"UniProt:Q46383","l":"","na":1,"nb":1,"a":[["membrane_organelle/chlorosome.html","chlorosome"]],"b":[["Pfam%3APF27499","CsmB chlorosome envelope protein"]]},{"id":"UniProt:Q46386","l":"","na":1,"nb":1,"a":[["membrane_organelle/chlorosome.html","chlorosome"]],"b":[["Pfam%3APF02043","Bacteriochlorophyll C binding protein"]]},{"id":"UniProt:Q9XDM8","l":"","na":1,"nb":1,"a":[["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]],"b":[["Pfam%3APF00936","BMC domain"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/CellStructureMech--TaxonMech.json b/assets/fleet/edges/CellStructureMech--TaxonMech.json new file mode 100644 index 0000000..54be663 --- /dev/null +++ b/assets/fleet/edges/CellStructureMech--TaxonMech.json @@ -0,0 +1 @@ +{"a":"CellStructureMech","b":"TaxonMech","base":{"CellStructureMech":"https://culturebotai.github.io/CellStructureMech/pages/structures/","TaxonMech":"https://culturebotai.github.io/TaxonMech/pages/taxon.html?id="},"n":124,"by":{"NCBITaxon":124},"terms":[{"id":"NCBITaxon:2","l":"Bacteria","na":89,"nb":605695,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["NCBITaxon%3A119160","2,3-D degrading bacterium NHC2"],["NCBITaxon%3A119159","2,3-D degrading bacterium NHG3"],["NCBITaxon%3A103498","2,4-D-degrading bacterium 001"],["NCBITaxon%3A103499","2,4-D-degrading bacterium 007"],["NCBITaxon%3A103492","2,4-D-degrading bacterium 010"],["NCBITaxon%3A103495","2,4-D-degrading bacterium 012"]]},{"id":"NCBITaxon:2759","l":"Eukaryota","na":49,"nb":6243,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"],["cytoskeleton/conoid.html","conoid"],["cytoskeleton/cytoophidium.html","cytoophidium"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"]],"b":[["NCBITaxon%3A1450171","Aaosphaeria arxii"],["NCBITaxon%3A749232","Abeoforma whisleri"],["NCBITaxon%3A137743","Abortiporus biennis"],["NCBITaxon%3A420591","Absidia anomala"],["NCBITaxon%3A90261","Absidia caerulea"],["NCBITaxon%3A327741","Absidia californica"]]},{"id":"NCBITaxon:2157","l":"Archaea","na":39,"nb":14013,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]],"b":[["NCBITaxon%3A3879924","Abyssiniarchaeum dallolvicinus (SeqCode)"],["NCBITaxon%3A3693715","Acidarchaeum fankouense (SeqCode)"],["NCBITaxon%3A2283","Acidianus ambivalens"],["NCBITaxon%3A41673","Acidianus brierleyi"],["NCBITaxon%3A269667","Acidianus convivator"],["NCBITaxon%3A563177","Acidianus hospitalis"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":31,"nb":3868,"a":[["appendage/curli.html","curli"],["appendage/p_pilus.html","P pilus"],["appendage/pilus.html","pilus"],["appendage/type_i_pilus.html","type I pilus"],["cytoskeleton/parm_filament.html","ParM filament"],["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A196023","Aeromonas hydrophila subsp. hydrophila"],["NCBITaxon%3A380703","Aeromonas hydrophila subsp. hydrophila ATCC 7966"],["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A35703","Citrobacter amalonaticus"],["NCBITaxon%3A163202","Corynebacterium appendicis"]]},{"id":"NCBITaxon:5794","l":"Apicomplexa","na":18,"nb":79,"a":[["cytoskeleton/conoid.html","conoid"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["membrane_organelle/apicomplexan_dense_granule.html","apicomplexan dense granule"],["membrane_organelle/apicomplexan_dense_granule_membrane.html","apicomplexan dense granule membrane"],["membrane_organelle/apicoplast.html","apicoplast"],["membrane_organelle/apicoplast_membrane.html","apicoplast membrane"]],"b":[["NCBITaxon%3A158379","Ascogregarina taiwanensis"],["NCBITaxon%3A5866","Babesia bigemina"],["NCBITaxon%3A5865","Babesia bovis"],["NCBITaxon%3A32595","Babesia divergens"],["NCBITaxon%3A323732","Babesia duncani"],["NCBITaxon%3A5868","Babesia microti"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":15,"nb":176,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A90371","Salmonella enterica subsp. enterica serovar Typhimurium"],["NCBITaxon%3A1173928","Salmonella enterica subsp. enterica serovar Typhimurium str. 0052"],["NCBITaxon%3A1114946","Salmonella enterica subsp. enterica serovar Typhimurium str. 00-01036"],["NCBITaxon%3A1173930","Salmonella enterica subsp. enterica serovar Typhimurium str. 0364"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":15,"nb":39,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]],"b":[["NCBITaxon%3A679895","Escherichia coli BW25113"],["NCBITaxon%3A595496","Escherichia coli BW2952"],["NCBITaxon%3A1318715","Escherichia coli BW38028"],["NCBITaxon%3A1245474","Escherichia coli ER2796"],["NCBITaxon%3A83333","Escherichia coli K-12"],["NCBITaxon%3A527799","Escherichia coli LW1655F+"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":14,"nb":82,"a":[["cytoskeleton/alfa_filament.html","AlfA filament"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]],"b":[["NCBITaxon%3A1390","Bacillus amyloliquefaciens"],["NCBITaxon%3A1452","Bacillus atrophaeus"],["NCBITaxon%3A640707","Bacillus atrophaeus ATCC 9372"],["NCBITaxon%3A483913","Bacillus inaquosorum"],["NCBITaxon%3A1236548","Bacillus inaquosorum KCTC 13429"],["NCBITaxon%3A1402","Bacillus licheniformis"]]},{"id":"NCBITaxon:1117","l":"Cyanobacteriota","na":13,"nb":36120,"a":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/photosystem_i.html","photosystem I"],["energy_complex/photosystem_ii.html","photosystem II"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]],"b":[["NCBITaxon%3A3106961","Acaryochloridaceae cyanobacterium"],["NCBITaxon%3A2720417","Acaryochloridaceae cyanobacterium CSU_3_4"],["NCBITaxon%3A2720418","Acaryochloridaceae cyanobacterium CSU_5_19"],["NCBITaxon%3A2964578","Acaryochloridaceae cyanobacterium OTE_25_metabat_464"],["NCBITaxon%3A2964579","Acaryochloridaceae cyanobacterium OTE_75_metabat_521"],["NCBITaxon%3A2720424","Acaryochloridaceae cyanobacterium RL_2_7"]]},{"id":"NCBITaxon:4751","l":"Fungi","na":11,"nb":5527,"a":[["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/septin_ring.html","septin ring"],["envelope/capsule.html","capsule"],["envelope/eisosome_membrane_domain_mcc.html","eisosome membrane domain/MCC"],["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["envelope/plasma_membrane.html","plasma membrane"]],"b":[["NCBITaxon%3A1450171","Aaosphaeria arxii"],["NCBITaxon%3A137743","Abortiporus biennis"],["NCBITaxon%3A420591","Absidia anomala"],["NCBITaxon%3A90261","Absidia caerulea"],["NCBITaxon%3A327741","Absidia californica"],["NCBITaxon%3A420592","Absidia cuneospora"]]},{"id":"NCBITaxon:1148","l":"Synechocystis sp. PCC 6803","na":11,"nb":12,"a":[["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["inclusion/cyanophycin_granule.html","cyanophycin granule"],["inclusion/glycogen_granule.html","glycogen granule"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"]],"b":[["NCBITaxon%3A1148","Synechocystis sp. PCC 6803"],["NCBITaxon%3A2932627","Synechocystis sp. PCC 6803 subst. PCC-Mn"],["NCBITaxon%3A2932628","Synechocystis sp. PCC 6803 subst. PCC-Pn"],["NCBITaxon%3A2962876","Synechocystis sp. PCC 6803 substr. D1-D170H"],["NCBITaxon%3A1080228","Synechocystis sp. PCC 6803 substr. GT-I"],["NCBITaxon%3A2932626","Synechocystis sp. PCC 6803 substr. GT-In"]]},{"id":"NCBITaxon:1239","l":"Bacillota","na":9,"nb":96113,"a":[["spore/endospore_coat.html","endospore coat"],["spore/endospore_core.html","endospore core"],["spore/endospore_cortex.html","endospore cortex"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"],["spore/endospore_forming_forespore.html","endospore-forming forespore"],["spore/exosporium.html","exosporium"]],"b":[["NCBITaxon%3A46125","Abiotrophia defectiva"],["NCBITaxon%3A592010","Abiotrophia defectiva ATCC 49176"],["NCBITaxon%3A1410024","Abiotrophia defectiva HMP_JCVI_SC0171"],["NCBITaxon%3A1410025","Abiotrophia defectiva HMP_JCVI_SC0235"],["NCBITaxon%3A191553","Abiotrophia para-adiacens"],["NCBITaxon%3A76631","Abiotrophia sp."]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":190,"nb":8,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"],["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/septin_ring.html","septin ring"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"],["cytoskeleton/spindle_pole_body.html","spindle pole body"]],"b":[["NCBITaxon%3A4932","Saccharomyces cerevisiae"],["NCBITaxon%3A1266529","Saccharomyces cerevisiae BY4743"],["NCBITaxon%3A1218710","Saccharomyces cerevisiae CBS 1585"],["NCBITaxon%3A764102","Saccharomyces cerevisiae FostersB"],["NCBITaxon%3A764101","Saccharomyces cerevisiae FostersO"],["NCBITaxon%3A1220494","Saccharomyces cerevisiae PE-2"]]},{"id":"NCBITaxon:6029","l":"Microsporidia","na":8,"nb":29,"a":[["membrane_organelle/microsporidian_posterior_vacuole.html","microsporidian posterior vacuole"],["membrane_organelle/mitosome.html","mitosome"],["membrane_organelle/polaroplast.html","polaroplast"],["spore/microsporidian_type_endospore.html","microsporidian-type endospore"],["spore/microsporidian_type_exospore.html","microsporidian-type exospore"],["spore/polar_tube.html","polar tube"]],"b":[["NCBITaxon%3A67680","Anncaliia algerae"],["NCBITaxon%3A278021","Antonospora locustae"],["NCBITaxon%3A164912","Astathelohania contejeani"],["NCBITaxon%3A658444","Cucumispora dikerogammari"],["NCBITaxon%3A279532","Dictyocoela muelleri"],["NCBITaxon%3A288439","Dictyocoela roeselum"]]},{"id":"NCBITaxon:99287","l":"Salmonella typhimurium (strain LT2 / SGSC1412 / ATCC 700720)","na":16,"nb":8,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"],["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A588858","Salmonella enterica subsp. enterica serovar Typhimurium str. 14028S"],["NCBITaxon%3A1094461","Salmonella enterica subsp. enterica serovar Typhimurium str. G455"],["NCBITaxon%3A99287","Salmonella enterica subsp. enterica serovar Typhimurium str. LT2"],["NCBITaxon%3A1159899","Salmonella enterica subsp. enterica serovar Typhimurium str. LT2-4"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":7,"nb":11,"a":[["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/rc_lh1_pufx_core_complex.html","RC-LH1-PufX core complex"],["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"]],"b":[["NCBITaxon%3A1063","Cereibacter sphaeroides"],["NCBITaxon%3A272943","Cereibacter sphaeroides 2.4.1"],["NCBITaxon%3A349102","Cereibacter sphaeroides ATCC 17025"],["NCBITaxon%3A349101","Cereibacter sphaeroides ATCC 17029"],["NCBITaxon%3A39723","Cereibacter sphaeroides f. sp. denitrificans"],["NCBITaxon%3A633146","Cereibacter sphaeroides GA"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":6,"nb":287,"a":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"],["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"],["secretion_system/type_vi_secretion_system_baseplate.html","type VI secretion system baseplate"],["secretion_system/type_vi_secretion_system_contractile_sheath.html","type VI secretion system contractile sheath"],["secretion_system/type_vi_secretion_system_hcp_tube.html","type VI secretion system Hcp tube"],["secretion_system/type_vi_secretion_system_vgrg_paar_spike_complex.html","type VI secretion system VgrG/PAAR spike complex"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A666","Vibrio cholerae"],["NCBITaxon%3A693741","Vibrio cholerae 0139-ARG"],["NCBITaxon%3A1294144","Vibrio cholerae 01-1751"],["NCBITaxon%3A592313","Vibrio cholerae 12129(1)"],["NCBITaxon%3A412966","Vibrio cholerae 1587"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":5,"nb":13,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"],["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]],"b":[["NCBITaxon%3A1773","Mycobacterium tuberculosis"],["NCBITaxon%3A83332","Mycobacterium tuberculosis H37Rv"],["NCBITaxon%3A747078","Mycobacterium tuberculosis H37Rv_2009"],["NCBITaxon%3A928249","Mycobacterium tuberculosis H37Rv_ideR_mutant_ST22"],["NCBITaxon%3A757417","Mycobacterium tuberculosis H37RvAE"],["NCBITaxon%3A757419","Mycobacterium tuberculosis H37RvCO"]]},{"id":"NCBITaxon:5653","l":"Kinetoplastea","na":4,"nb":58,"a":[["membrane_organelle/glycosome.html","glycosome"],["membrane_organelle/glycosome_lumen.html","glycosome lumen"],["membrane_organelle/glycosome_membrane.html","glycosome membrane"],["nucleoid/kinetoplast.html","kinetoplast"]],"b":[["NCBITaxon%3A59799","Angomonas deanei"],["NCBITaxon%3A75058","Bodo saltans"],["NCBITaxon%3A59798","Crithidia acanthocephali"],["NCBITaxon%3A288676","Crithidia bombi"],["NCBITaxon%3A796354","Crithidia expoeki"],["NCBITaxon%3A5656","Crithidia fasciculata"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":4,"nb":35,"a":[["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"],["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]],"b":[["NCBITaxon%3A1183421","Agrobacterium fabacearum CFBP 5771"],["NCBITaxon%3A1300224","Agrobacterium fabacearum P4"],["NCBITaxon%3A1183429","Agrobacterium fabacearum S56"],["NCBITaxon%3A1368455","Agrobacterium fabacearum str. Foundi"],["NCBITaxon%3A1183430","Agrobacterium fabacearum TT111"],["NCBITaxon%3A1176649","Agrobacterium fabrum"]]},{"id":"NCBITaxon:5811","l":"Toxoplasma gondii","na":18,"nb":4,"a":[["cytoskeleton/conoid.html","conoid"],["cytoskeleton/intraconoid_microtubule.html","intraconoid microtubule"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["cytoskeleton/subpellicular_microtubule.html","subpellicular microtubule"],["membrane_organelle/apicomplexan_dense_granule.html","apicomplexan dense granule"],["membrane_organelle/apicomplexan_dense_granule_membrane.html","apicomplexan dense granule membrane"]],"b":[["NCBITaxon%3A5811","Toxoplasma gondii"],["NCBITaxon%3A1073826","Toxoplasma gondii GUY-DOS"],["NCBITaxon%3A1073827","Toxoplasma gondii GUY-MAT"],["NCBITaxon%3A1073830","Toxoplasma gondii TgCkGy2"]]},{"id":"NCBITaxon:5691","l":"Trypanosoma brucei","na":12,"nb":4,"a":[["cytoskeleton/bilobe_structure.html","bilobe structure"],["cytoskeleton/ciliary_pocket_collar.html","ciliary pocket collar"],["cytoskeleton/flagellum_attachment_zone.html","flagellum attachment zone"],["cytoskeleton/tripartite_attachment_complex.html","tripartite attachment complex"],["membrane_organelle/flagellar_pocket.html","flagellar pocket"],["membrane_organelle/glycosome.html","glycosome"]],"b":[["NCBITaxon%3A5702","Trypanosoma brucei brucei"],["NCBITaxon%3A185431","Trypanosoma brucei brucei TREU927"],["NCBITaxon%3A630700","Trypanosoma brucei equiperdum"],["NCBITaxon%3A31286","Trypanosoma brucei rhodesiense"]]},{"id":"NCBITaxon:155892","l":"Caulobacter vibrioides","na":9,"nb":4,"a":[["appendage/prostheca.html","prostheca"],["appendage/stalk_crossband.html","stalk crossband"],["appendage/tad_pilus.html","Tad pilus"],["cytoskeleton/bactofilin_filament.html","bactofilin filament"],["cytoskeleton/crescentin_filament.html","crescentin filament"],["cytoskeleton/cytoophidium.html","cytoophidium"]],"b":[["NCBITaxon%3A155892","Caulobacter vibrioides"],["NCBITaxon%3A190650","Caulobacter vibrioides CB15"],["NCBITaxon%3A565050","Caulobacter vibrioides NA1000"],["NCBITaxon%3A1292034","Caulobacter vibrioides OR37"]]},{"id":"NCBITaxon:5693","l":"Trypanosoma cruzi","na":6,"nb":4,"a":[["membrane_organelle/contractile_vacuole.html","contractile vacuole"],["membrane_organelle/early_endosome.html","early endosome"],["membrane_organelle/early_endosome_lumen.html","early endosome lumen"],["membrane_organelle/early_endosome_membrane.html","early endosome membrane"],["membrane_organelle/reservosome.html","reservosome"],["other/cytostome.html","cytostome"]],"b":[["NCBITaxon%3A5693","Trypanosoma cruzi"],["NCBITaxon%3A85057","Trypanosoma cruzi cruzi"],["NCBITaxon%3A353153","Trypanosoma cruzi strain CL Brener"],["NCBITaxon%3A366581","Trypanosoma cruzi strain Esmeraldo"]]},{"id":"NCBITaxon:1224","l":"Pseudomonadota","na":3,"nb":251482,"a":[["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["microcompartment/carboxysome.html","carboxysome"],["ribonucleoprotein/bacterial_degradosome.html","bacterial degradosome"]],"b":[["NCBITaxon%3A119160","2,3-D degrading bacterium NHC2"],["NCBITaxon%3A119159","2,3-D degrading bacterium NHG3"],["NCBITaxon%3A103498","2,4-D-degrading bacterium 001"],["NCBITaxon%3A103499","2,4-D-degrading bacterium 007"],["NCBITaxon%3A103492","2,4-D-degrading bacterium 010"],["NCBITaxon%3A103495","2,4-D-degrading bacterium 012"]]},{"id":"NCBITaxon:201174","l":"Actinomycetota","na":3,"nb":99340,"a":[["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"]],"b":[["NCBITaxon%3A291968","Acaricomes phytoseiuli"],["NCBITaxon%3A1120917","Acaricomes phytoseiuli DSM 14247"],["NCBITaxon%3A1872088","Acaricomes sp."],["NCBITaxon%3A1026830","Acaricomes sp. RHF117"],["NCBITaxon%3A298618","acid streamer iron-oxidizing bacterium CS11"],["NCBITaxon%3A298616","acid streamer iron-oxidizing bacterium KP1"]]},{"id":"NCBITaxon:28211","l":"Alphaproteobacteria","na":3,"nb":72845,"a":[["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]],"b":[["NCBITaxon%3A119160","2,3-D degrading bacterium NHC2"],["NCBITaxon%3A119159","2,3-D degrading bacterium NHG3"],["NCBITaxon%3A103494","2,4-D-degrading bacterium 022"],["NCBITaxon%3A83493","2,4-D degrading bacterium 2,4-D1"],["NCBITaxon%3A103496","2,4-D-degrading bacterium 524"],["NCBITaxon%3A83492","2,4-D degrading bacterium B6-10"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":3,"nb":557,"a":[["appendage/type_iv_pilus.html","type IV pilus"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]],"b":[["NCBITaxon%3A2073169","Chromobacterium alticapitis"],["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1454219","Pseudomonas aeruginosa 059A"],["NCBITaxon%3A1421538","Pseudomonas aeruginosa 0812"],["NCBITaxon%3A1421545","Pseudomonas aeruginosa 0822"],["NCBITaxon%3A1421531","Pseudomonas aeruginosa 0C2E"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":3,"nb":216,"a":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"]],"b":[["NCBITaxon%3A863522","Bryocella elongata"],["NCBITaxon%3A195","Campylobacter coli"],["NCBITaxon%3A197","Campylobacter jejuni"],["NCBITaxon%3A1365653","Campylobacter jejuni 10186"],["NCBITaxon%3A1365189","Campylobacter jejuni 10187"],["NCBITaxon%3A1327986","Campylobacter jejuni 10227"]]},{"id":"NCBITaxon:38254","l":"Glaucocystophyceae","na":13,"nb":3,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"]],"b":[["NCBITaxon%3A2762","Cyanophora paradoxa"],["NCBITaxon%3A77922","Cyanoptyche gloeocystis"],["NCBITaxon%3A38269","Gloeochaete wittrockiana"]]},{"id":"NCBITaxon:274","l":"Thermus thermophilus","na":3,"nb":8,"a":[["energy_complex/respiratory_chain_complex_i.html","respiratory chain complex I"],["ribonucleoprotein/ribosome.html","ribosome"],["ribonucleoprotein/small_ribosomal_subunit.html","small ribosomal subunit"]],"b":[["NCBITaxon%3A274","Thermus thermophilus"],["NCBITaxon%3A1316935","Thermus thermophilus ATCC 33923"],["NCBITaxon%3A262724","Thermus thermophilus HB27"],["NCBITaxon%3A300852","Thermus thermophilus HB8"],["NCBITaxon%3A798128","Thermus thermophilus JL-18"],["NCBITaxon%3A762633","Thermus thermophilus SG0.5JP17-16"]]},{"id":"NCBITaxon:224308","l":"Bacillus subtilis (strain 168)","na":3,"nb":5,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["division_machinery/divisome_complex.html","divisome complex"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]],"b":[["NCBITaxon%3A1423","Bacillus subtilis"],["NCBITaxon%3A135461","Bacillus subtilis subsp. subtilis"],["NCBITaxon%3A224308","Bacillus subtilis subsp. subtilis str. 168"],["NCBITaxon%3A536088","Bacillus subtilis subsp. subtilis str. L170"],["NCBITaxon%3A536089","Bacillus subtilis subsp. subtilis str. N170"]]},{"id":"NCBITaxon:431944","l":"Magnetospirillum gryphiswaldense MSR-1","na":4,"nb":3,"a":[["cytoskeleton/mamk_filament.html","MamK filament"],["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]],"b":[["NCBITaxon%3A55518","Magnetospirillum gryphiswaldense"],["NCBITaxon%3A431944","Magnetospirillum gryphiswaldense MSR-1"],["NCBITaxon%3A1430440","Magnetospirillum gryphiswaldense MSR-1 v2"]]},{"id":"NCBITaxon:1108","l":"Chloroflexus aurantiacus","na":3,"nb":3,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"]],"b":[["NCBITaxon%3A1108","Chloroflexus aurantiacus"],["NCBITaxon%3A324602","Chloroflexus aurantiacus J-10-fl"],["NCBITaxon%3A480224","Chloroflexus aurantiacus Y-400-fl"]]},{"id":"NCBITaxon:243231","l":"Geobacter sulfurreducens PCA","na":3,"nb":3,"a":[["appendage/omce_cytochrome_nanowire.html","OmcE cytochrome nanowire"],["appendage/omcs_cytochrome_nanowire.html","OmcS cytochrome nanowire"],["appendage/omcz_cytochrome_nanowire.html","OmcZ cytochrome nanowire"]],"b":[["NCBITaxon%3A35554","Geobacter sulfurreducens"],["NCBITaxon%3A243231","Geobacter sulfurreducens PCA"],["NCBITaxon%3A1649546","Geobacter sulfurreducens subsp. sulfurreducens"]]},{"id":"NCBITaxon:1236","l":"Gammaproteobacteria","na":2,"nb":145676,"a":[["membrane_organelle/magnetosome.html","magnetosome"],["secretion_system/type_iii_protein_secretion_system_complex.html","type III protein secretion system complex"]],"b":[["NCBITaxon%3A103492","2,4-D-degrading bacterium 010"],["NCBITaxon%3A103493","2,4-D-degrading bacterium 030"],["NCBITaxon%3A120969","abyssal strain AIII3*"],["NCBITaxon%3A2182787","Abyssibacter profundi"],["NCBITaxon%3A2320200","Abyssibacter sp."],["NCBITaxon%3A596095","Abyssogena phaseoliformis symbiont"]]},{"id":"NCBITaxon:1763","l":"Mycobacterium","na":2,"nb":7532,"a":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]],"b":[["NCBITaxon%3A3110407","Candidatus Mycobacterium methanica"],["NCBITaxon%3A2943498","Candidatus Mycobacterium methanotrophicum"],["NCBITaxon%3A3027808","Candidatus Mycobacterium wuenschmannii"],["NCBITaxon%3A1682113","Mycobacterium adipatum"],["NCBITaxon%3A470075","Mycobacterium aemonae"],["NCBITaxon%3A1964395","Mycobacterium ahvazicum"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":2,"nb":5776,"a":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["NCBITaxon%3A54736","Salmonella bongori"],["NCBITaxon%3A218493","Salmonella bongori NCTC 12419"],["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59203","Salmonella enterica subsp. arizonae"],["NCBITaxon%3A2577126","Salmonella enterica subsp. arizonae serovar 11:z4,z23:-"],["NCBITaxon%3A2577127","Salmonella enterica subsp. arizonae serovar 13,22:z4,z23:-"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":4740,"a":[["envelope/periplasmic_space.html","periplasmic space"],["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"]],"b":[["NCBITaxon%3A475088","Methanosphaerula palustris"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1389955","Escherichia coli ATCC 35150"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A574","Klebsiella pneumoniae subsp. ozaenae"],["NCBITaxon%3A1218098","Klebsiella pneumoniae subsp. ozaenae NBRC 105683"]]},{"id":"NCBITaxon:31969","l":"Mollicutes","na":2,"nb":3830,"a":[["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"]],"b":[["NCBITaxon%3A358730","Abarque(Iran) eggplant big bud phytoplasma"],["NCBITaxon%3A3108182","'Abelmoschus esculentus' big bud and virescence disease phytoplasma"],["NCBITaxon%3A926989","'Abelmoschus esculentus' bunchy top phytoplasma"],["NCBITaxon%3A3344481","'Abutilon indicum' phytoplasma"],["NCBITaxon%3A2849181","'Acacia arabica' phytoplasma"],["NCBITaxon%3A2940219","'Acacia confusa' witches'-broom phytoplasma"]]},{"id":"NCBITaxon:4890","l":"Ascomycota","na":2,"nb":3631,"a":[["other/nuclear_pore_central_transport_channel.html","nuclear pore central transport channel"],["other/nuclear_pore_linkers.html","nuclear pore linkers"]],"b":[["NCBITaxon%3A1450171","Aaosphaeria arxii"],["NCBITaxon%3A1307806","Acarospora strigata"],["NCBITaxon%3A886606","Acephala macrosclerotiorum"],["NCBITaxon%3A1934374","Achaetomiella virescens"],["NCBITaxon%3A79813","Achaetomium macrosporum"],["NCBITaxon%3A43968","Aciculoconidium aculeatum"]]},{"id":"NCBITaxon:203682","l":"Planctomycetota","na":2,"nb":1406,"a":[["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"]],"b":[["NCBITaxon%3A1930276","Adhaeretor mobilis"],["NCBITaxon%3A2862453","Adhaeretor sp."],["NCBITaxon%3A3454464","Aeoliella fuhlenseeensis"],["NCBITaxon%3A2527972","Aeoliella mucimassa"],["NCBITaxon%3A2795800","Aeoliella sp."],["NCBITaxon%3A2954799","Aeoliella straminimaris"]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":2,"nb":389,"a":[["envelope/capsule.html","capsule"],["envelope/glycocalyx.html","glycocalyx"]],"b":[["NCBITaxon%3A1503055","Burkholderia territorii"],["NCBITaxon%3A1270","Micrococcus luteus"],["NCBITaxon%3A465515","Micrococcus luteus NCTC 2665"],["NCBITaxon%3A33051","Sphingomonas sanguinis"],["NCBITaxon%3A1219054","Sphingomonas sanguinis NBRC 13937"],["NCBITaxon%3A1313","Streptococcus pneumoniae"]]},{"id":"NCBITaxon:5207","l":"Cryptococcus neoformans","na":2,"nb":256,"a":[["envelope/capsule.html","capsule"],["envelope/fungal_type_cell_wall.html","fungal-type cell wall"]],"b":[["NCBITaxon%3A5207","Cryptococcus neoformans"],["NCBITaxon%3A1423905","Cryptococcus neoformans 102-14"],["NCBITaxon%3A1423895","Cryptococcus neoformans 1033"],["NCBITaxon%3A1423910","Cryptococcus neoformans 1035"],["NCBITaxon%3A1423911","Cryptococcus neoformans 1052"],["NCBITaxon%3A1423908","Cryptococcus neoformans 1054"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":2,"nb":156,"a":[["cytoskeleton/tubz_filament.html","TubZ filament"],["inclusion/parasporal_crystal.html","parasporal crystal"]],"b":[["NCBITaxon%3A1428","Bacillus thuringiensis"],["NCBITaxon%3A1340496","Bacillus thuringiensis AKS-7"],["NCBITaxon%3A714359","Bacillus thuringiensis BMB171"],["NCBITaxon%3A1423143","Bacillus thuringiensis Bt18247"],["NCBITaxon%3A1423142","Bacillus thuringiensis Bt18679"],["NCBITaxon%3A527021","Bacillus thuringiensis Bt407"]]},{"id":"NCBITaxon:83334","l":"Escherichia coli O157:H7","na":2,"nb":140,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"]],"b":[["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1389955","Escherichia coli ATCC 35150"],["NCBITaxon%3A83334","Escherichia coli O157:H7"],["NCBITaxon%3A1446609","Escherichia coli O157:H7 str. 06-3745"],["NCBITaxon%3A1446610","Escherichia coli O157:H7 str. 06-4039"],["NCBITaxon%3A1446611","Escherichia coli O157:H7 str. 07-3091"]]},{"id":"NCBITaxon:3027","l":"Cryptophyceae","na":2,"nb":42,"a":[["membrane_organelle/nucleomorph.html","nucleomorph"],["other/ejectisome.html","ejectisome"]],"b":[["NCBITaxon%3A2571260","Baffinella frigidus"],["NCBITaxon%3A478117","Chroomonas cf. mesostigmatica"],["NCBITaxon%3A356657","Chroomonas dispersa"],["NCBITaxon%3A195502","Chroomonas nordstedtii"],["NCBITaxon%3A354589","Chroomonas sp. CCMP270"],["NCBITaxon%3A233190","Cryptomonas borealis"]]},{"id":"NCBITaxon:2763","l":"Rhodophyta","na":2,"nb":27,"a":[["energy_complex/phycobilisome.html","phycobilisome"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["NCBITaxon%3A260499","Asparagopsis taxiformis"],["NCBITaxon%3A31354","Compsopogon caeruleus"],["NCBITaxon%3A2690220","Cyanidiococcus yangmingshanensis"],["NCBITaxon%3A45157","Cyanidioschyzon merolae"],["NCBITaxon%3A280699","Cyanidioschyzon merolae strain 10D"],["NCBITaxon%3A945030","Digenea simplex"]]},{"id":"NCBITaxon:5741","l":"Giardia intestinalis","na":11,"nb":2,"a":[["cytoskeleton/funis.html","funis"],["cytoskeleton/median_body.html","median body"],["cytoskeleton/microtubule.html","microtubule"],["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_crossbridge.html","ventral disc crossbridge"],["cytoskeleton/ventral_disc_dorsal_microribbon.html","ventral disc dorsal microribbon"]],"b":[["NCBITaxon%3A5741","Giardia duodenalis"],["NCBITaxon%3A598745","Giardia duodenalis ATCC 50581"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":9,"nb":2,"a":[["membrane_organelle/apicoplast.html","apicoplast"],["membrane_organelle/apicoplast_membrane.html","apicoplast membrane"],["membrane_organelle/exoneme.html","exoneme"],["membrane_organelle/food_vacuole.html","food vacuole"],["membrane_organelle/inner_membrane_pellicle_complex.html","inner membrane pellicle complex"],["membrane_organelle/maurer_s_cleft.html","Maurer's cleft"]],"b":[["NCBITaxon%3A5833","Plasmodium falciparum"],["NCBITaxon%3A5843","Plasmodium falciparum NF54"]]},{"id":"NCBITaxon:2285","l":"Sulfolobus acidocaldarius","na":2,"nb":6,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"]],"b":[["NCBITaxon%3A2287","Saccharolobus solfataricus"],["NCBITaxon%3A2285","Sulfolobus acidocaldarius"],["NCBITaxon%3A330779","Sulfolobus acidocaldarius DSM 639"],["NCBITaxon%3A1028566","Sulfolobus acidocaldarius N8"],["NCBITaxon%3A1028567","Sulfolobus acidocaldarius Ron12/I"],["NCBITaxon%3A1435377","Sulfolobus acidocaldarius SUSAZ"]]},{"id":"NCBITaxon:5141","l":"Neurospora crassa","na":6,"nb":2,"a":[["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysomal_membrane.html","glyoxysomal membrane"],["membrane_organelle/glyoxysome.html","glyoxysome"],["membrane_organelle/woronin_body.html","Woronin body"],["other/polarisome.html","polarisome"],["other/spitzenkorper.html","spitzenkorper"]],"b":[["NCBITaxon%3A5141","Neurospora crassa"],["NCBITaxon%3A367110","Neurospora crassa OR74A"]]},{"id":"NCBITaxon:5911","l":"Tetrahymena thermophila","na":6,"nb":2,"a":[["cytoskeleton/axonemal_microtubule_doublet_outer_junction.html","axonemal microtubule doublet outer junction"],["membrane_organelle/macronucleus.html","macronucleus"],["membrane_organelle/micronucleus.html","micronucleus"],["membrane_organelle/mucocyst.html","mucocyst"],["other/ap_3_adaptor_complex.html","AP-3 adaptor complex"],["other/ap_type_membrane_coat_adaptor_complex.html","AP-type membrane coat adaptor complex"]],"b":[["NCBITaxon%3A5911","Tetrahymena thermophila"],["NCBITaxon%3A312017","Tetrahymena thermophila SB210"]]},{"id":"NCBITaxon:32053","l":"Thermostichus vulcanus","na":2,"nb":5,"a":[["energy_complex/photosystem_ii.html","photosystem II"],["energy_complex/phycobilisome.html","phycobilisome"]],"b":[["NCBITaxon%3A32053","Thermostichus vulcanus"],["NCBITaxon%3A2005468","Thermostichus vulcanus NIES-2134"],["NCBITaxon%3A1048443","Thermostichus vulcanus RKN"],["NCBITaxon%3A455064","Thermostichus vulcanus str. Copeland"],["NCBITaxon%3A2813851","Thermostichus vulcanus str. 'Rupite'"]]},{"id":"NCBITaxon:1097","l":"Chlorobaculum tepidum","na":4,"nb":2,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"]],"b":[["NCBITaxon%3A1097","Chlorobaculum tepidum"],["NCBITaxon%3A194439","Chlorobaculum tepidum TLS"]]},{"id":"NCBITaxon:174633","l":"","na":2,"nb":4,"a":[["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"]],"b":[["NCBITaxon%3A174633","Candidatus Kuenenia stuttgartensis"],["NCBITaxon%3A1230344","Candidatus Kuenenia stuttgartiensis enrichment culture clone CH1"],["NCBITaxon%3A1230345","Candidatus Kuenenia stuttgartiensis enrichment culture clone RU1"],["NCBITaxon%3A1230346","environmental samples"]]},{"id":"NCBITaxon:6035","l":"Encephalitozoon cuniculi","na":4,"nb":2,"a":[["spore/microsporidian_type_endospore.html","microsporidian-type endospore"],["spore/microsporidian_type_exospore.html","microsporidian-type exospore"],["spore/polar_tube_anchoring_disc.html","polar tube anchoring disc"],["spore/spore_wall.html","spore wall"]],"b":[["NCBITaxon%3A986730","Encephalitozoon cuniculi EC1"],["NCBITaxon%3A284813","Encephalitozoon cuniculi GB-M1"]]},{"id":"NCBITaxon:2261","l":"Pyrococcus furiosus","na":2,"nb":3,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"]],"b":[["NCBITaxon%3A2261","Pyrococcus furiosus"],["NCBITaxon%3A1185654","Pyrococcus furiosus COM1"],["NCBITaxon%3A186497","Pyrococcus furiosus DSM 3638"]]},{"id":"NCBITaxon:5888","l":"Paramecium tetraurelia","na":2,"nb":3,"a":[["cytoskeleton/ciliary_rootlet.html","ciliary rootlet"],["membrane_organelle/trichocyst.html","trichocyst"]],"b":[["NCBITaxon%3A28907","Caedibacter taeniospiralis"],["NCBITaxon%3A5888","Paramecium tetraurelia"],["NCBITaxon%3A412030","Paramecium tetraurelia strain d4-2"]]},{"id":"NCBITaxon:194439","l":"Chlorobaculum tepidum TLS","na":2,"nb":2,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["membrane_organelle/chlorosome.html","chlorosome"]],"b":[["NCBITaxon%3A1097","Chlorobaculum tepidum"],["NCBITaxon%3A194439","Chlorobaculum tepidum TLS"]]},{"id":"NCBITaxon:272634","l":"Mycoplasmoides pneumoniae (strain ATCC 29342 / M129 / Subtype 1)","na":2,"nb":2,"a":[["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"]],"b":[["NCBITaxon%3A2104","Mycoplasmoides pneumoniae"],["NCBITaxon%3A272634","Mycoplasmoides pneumoniae M129"]]},{"id":"NCBITaxon:4922","l":"Komagataella pastoris","na":2,"nb":2,"a":[["membrane_organelle/cis_golgi_network.html","cis-Golgi network"],["membrane_organelle/cis_golgi_network_membrane.html","cis-Golgi network membrane"]],"b":[["NCBITaxon%3A4922","Komagataella pastoris"],["NCBITaxon%3A638632","Komagataella pastoris DSMZ 70382"]]},{"id":"NCBITaxon:555778","l":"","na":2,"nb":2,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["NCBITaxon%3A927","Halothiobacillus neapolitanus"],["NCBITaxon%3A555778","Halothiobacillus neapolitanus c2"]]},{"id":"NCBITaxon:667126","l":"Methanocaldococcus villosus","na":2,"nb":2,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"]],"b":[["NCBITaxon%3A667126","Methanocaldococcus villosus"],["NCBITaxon%3A1069083","Methanocaldococcus villosus KIN24-T80"]]},{"id":"NCBITaxon:927","l":"Halothiobacillus neapolitanus","na":2,"nb":2,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["NCBITaxon%3A927","Halothiobacillus neapolitanus"],["NCBITaxon%3A555778","Halothiobacillus neapolitanus c2"]]},{"id":"NCBITaxon:976","l":"Bacteroidota","na":1,"nb":25542,"a":[["secretion_system/type_ix_protein_secretion_system_complex.html","type IX protein secretion system complex"]],"b":[["NCBITaxon%3A120971","abyssal strain AII3"],["NCBITaxon%3A120972","abyssal strain AIII4"],["NCBITaxon%3A2967091","Abyssalbus sp."],["NCBITaxon%3A2926907","Abyssalbus ytuae"],["NCBITaxon%3A979970","Acetobacteroides hydrogenigenes"],["NCBITaxon%3A1872095","Acetobacteroides sp."]]},{"id":"NCBITaxon:203691","l":"Spirochaetota","na":1,"nb":3862,"a":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]],"b":[["NCBITaxon%3A46356","Alkalispirochaeta alkalica"],["NCBITaxon%3A942938","Alkalispirochaeta alkalica DSM 8900"],["NCBITaxon%3A159291","Alkalispirochaeta americana"],["NCBITaxon%3A1410329","Alkalispirochaeta cellulosivorans"],["NCBITaxon%3A1329640","Alkalispirochaeta odontotermitis"],["NCBITaxon%3A2024959","Alkalispirochaeta sp."]]},{"id":"NCBITaxon:1773","l":"Mycobacterium tuberculosis","na":1,"nb":2946,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]],"b":[["NCBITaxon%3A1773","Mycobacterium tuberculosis"],["NCBITaxon%3A668339","Mycobacterium tuberculosis 00_1695"],["NCBITaxon%3A1455192","Mycobacterium tuberculosis 01-Cr4_ND_3_A"],["NCBITaxon%3A1455078","Mycobacterium tuberculosis 01-Ps1_0_A"],["NCBITaxon%3A515616","Mycobacterium tuberculosis 02_1987"],["NCBITaxon%3A1455200","Mycobacterium tuberculosis 02-Cr4_ND_3_B"]]},{"id":"NCBITaxon:147538","l":"Pezizomycotina","na":1,"nb":2475,"a":[["membrane_organelle/woronin_body.html","Woronin body"]],"b":[["NCBITaxon%3A1450171","Aaosphaeria arxii"],["NCBITaxon%3A1307806","Acarospora strigata"],["NCBITaxon%3A886606","Acephala macrosclerotiorum"],["NCBITaxon%3A1934374","Achaetomiella virescens"],["NCBITaxon%3A79813","Achaetomium macrosporum"],["NCBITaxon%3A245562","Acidomyces sp. 'richmondensis'"]]},{"id":"NCBITaxon:5302","l":"Agaricomycotina","na":1,"nb":1134,"a":[["envelope/dolipore_septum.html","dolipore septum"]],"b":[["NCBITaxon%3A137743","Abortiporus biennis"],["NCBITaxon%3A1333626","Adustoporia sinuosa"],["NCBITaxon%3A2819351","Agaricus alboumbonatus"],["NCBITaxon%3A1606717","Agaricus argenteus"],["NCBITaxon%3A535738","Agaricus aristocratus"],["NCBITaxon%3A34428","Agaricus arvensis"]]},{"id":"NCBITaxon:32046","l":"Synechococcus elongatus","na":1,"nb":64,"a":[["energy_complex/photosystem_i.html","photosystem I"]],"b":[["NCBITaxon%3A326333","Synechococcus cf. elongatus CCMP1379"],["NCBITaxon%3A32046","Synechococcus elongatus"],["NCBITaxon%3A1665532","Synechococcus elongatus 0814_107_005_M13_Fp"],["NCBITaxon%3A2729336","Synechococcus elongatus AARL T012"],["NCBITaxon%3A3073440","Synechococcus elongatus ACC1"],["NCBITaxon%3A1130982","Synechococcus elongatus ARKK1"]]},{"id":"NCBITaxon:33682","l":"Euglenozoa","na":1,"nb":62,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["NCBITaxon%3A59799","Angomonas deanei"],["NCBITaxon%3A75058","Bodo saltans"],["NCBITaxon%3A59798","Crithidia acanthocephali"],["NCBITaxon%3A288676","Crithidia bombi"],["NCBITaxon%3A796354","Crithidia expoeki"],["NCBITaxon%3A5656","Crithidia fasciculata"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":51,"a":[["spore/exosporium.html","exosporium"]],"b":[["NCBITaxon%3A1392","Bacillus anthracis"],["NCBITaxon%3A1412844","Bacillus anthracis 52-G"],["NCBITaxon%3A1412843","Bacillus anthracis 8903-G"],["NCBITaxon%3A1412842","Bacillus anthracis 9080-G"],["NCBITaxon%3A1420588","Bacillus anthracis CVCC 40048"],["NCBITaxon%3A1439874","Bacillus anthracis CZC5"]]},{"id":"NCBITaxon:2830","l":"Haptophyta","na":1,"nb":44,"a":[["appendage/haptonema.html","haptonema"]],"b":[["NCBITaxon%3A127549","Calcidiscus leptoporus"],["NCBITaxon%3A412156","Chrysochromulina leadbeateri"],["NCBITaxon%3A127563","Chrysochromulina parva"],["NCBITaxon%3A412157","Chrysochromulina rotalis"],["NCBITaxon%3A412158","Chrysochromulina simplex"],["NCBITaxon%3A1460289","Chrysochromulina tobinii"]]},{"id":"NCBITaxon:139","l":"Borreliella burgdorferi","na":1,"nb":43,"a":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]],"b":[["NCBITaxon%3A139","Borreliella burgdorferi"],["NCBITaxon%3A476210","Borreliella burgdorferi 118a"],["NCBITaxon%3A445983","Borreliella burgdorferi 156a"],["NCBITaxon%3A521009","Borreliella burgdorferi 297"],["NCBITaxon%3A498738","Borreliella burgdorferi 29805"],["NCBITaxon%3A498740","Borreliella burgdorferi 64b"]]},{"id":"NCBITaxon:33090","l":"Viridiplantae","na":22,"nb":1,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_inner_membrane.html","chloroplast inner membrane"],["membrane_organelle/chloroplast_intermembrane_space.html","chloroplast intermembrane space"],["membrane_organelle/chloroplast_membrane.html","chloroplast membrane"],["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"]],"b":[["NCBITaxon%3A2812611","Micromonas sp."]]},{"id":"NCBITaxon:837","l":"Porphyromonas gingivalis","na":1,"nb":22,"a":[["secretion_system/type_ix_protein_secretion_system_complex.html","type IX protein secretion system complex"]],"b":[["NCBITaxon%3A837","Porphyromonas gingivalis"],["NCBITaxon%3A1403335","Porphyromonas gingivalis 381"],["NCBITaxon%3A1403337","Porphyromonas gingivalis A7436"],["NCBITaxon%3A1403338","Porphyromonas gingivalis A7A1-28"],["NCBITaxon%3A1403336","Porphyromonas gingivalis AJW4"],["NCBITaxon%3A431947","Porphyromonas gingivalis ATCC 33277"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":15,"a":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]],"b":[["NCBITaxon%3A38285","Corynebacterium acetoacidophilum"],["NCBITaxon%3A1718","Corynebacterium glutamicum"],["NCBITaxon%3A196627","Corynebacterium glutamicum ATCC 13032"],["NCBITaxon%3A1079988","Corynebacterium glutamicum ATCC 14067"],["NCBITaxon%3A1204414","Corynebacterium glutamicum K051"],["NCBITaxon%3A1310161","Corynebacterium glutamicum MB001"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":1,"nb":15,"a":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]],"b":[["NCBITaxon%3A175628","Gordonia paraffinivorans"],["NCBITaxon%3A1785","Mycobacterium sp."],["NCBITaxon%3A1772","Mycolicibacterium smegmatis"],["NCBITaxon%3A1455235","Mycolicibacterium smegmatis 30-MsmegS_ND_60_A"],["NCBITaxon%3A1455243","Mycolicibacterium smegmatis 31-MsmegS_CIP_60_A"],["NCBITaxon%3A1455251","Mycolicibacterium smegmatis 32-MsmegS_CIP_30_A"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":1,"nb":10,"a":[["envelope/s_layer.html","S-layer"]],"b":[["NCBITaxon%3A1891658","Geobacillus sp."],["NCBITaxon%3A1422","Geobacillus stearothermophilus"],["NCBITaxon%3A272567","Geobacillus stearothermophilus 10"],["NCBITaxon%3A1366047","Geobacillus stearothermophilus ATCC 12980"],["NCBITaxon%3A937593","Geobacillus stearothermophilus ATCC 7953"],["NCBITaxon%3A664733","Geobacillus stearothermophilus C56-N21"]]},{"id":"NCBITaxon:2762","l":"Cyanophora paradoxa","na":10,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"]],"b":[["NCBITaxon%3A2762","Cyanophora paradoxa"]]},{"id":"NCBITaxon:29197","l":"Chlorarachniophyceae","na":1,"nb":9,"a":[["membrane_organelle/nucleomorph.html","nucleomorph"]],"b":[["NCBITaxon%3A1561963","Amorphochlora amoebiformis"],["NCBITaxon%3A552665","Bigelowiella longifila"],["NCBITaxon%3A227086","Bigelowiella natans"],["NCBITaxon%3A753081","Bigelowiella natans CCMP2755"],["NCBITaxon%3A29199","Chlorarachnion reptans"],["NCBITaxon%3A91324","Lotharella globosa"]]},{"id":"NCBITaxon:44689","l":"Dictyostelium discoideum","na":9,"nb":1,"a":[["membrane_organelle/contractile_vacuole.html","contractile vacuole"],["membrane_organelle/contractile_vacuole_complex.html","contractile vacuole complex"],["membrane_organelle/esterosome.html","esterosome"],["membrane_organelle/esterosome_lumen.html","esterosome lumen"],["membrane_organelle/esterosome_membrane.html","esterosome membrane"],["membrane_organelle/phagocytic_vesicle.html","phagocytic vesicle"]],"b":[["NCBITaxon%3A44689","Dictyostelium discoideum"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":8,"a":[["other/cellulosome.html","cellulosome"]],"b":[["NCBITaxon%3A1515","Acetivibrio thermocellus"],["NCBITaxon%3A1138384","Acetivibrio thermocellus AD2"],["NCBITaxon%3A203119","Acetivibrio thermocellus ATCC 27405"],["NCBITaxon%3A1349417","Acetivibrio thermocellus BC1"],["NCBITaxon%3A637887","Acetivibrio thermocellus DSM 1313"],["NCBITaxon%3A572545","Acetivibrio thermocellus DSM 2360"]]},{"id":"NCBITaxon:565050","l":"Caulobacter vibrioides NA1000","na":7,"nb":1,"a":[["appendage/prostheca.html","prostheca"],["appendage/stalk_crossband.html","stalk crossband"],["appendage/tad_pilus.html","Tad pilus"],["cytoskeleton/bactofilin_filament.html","bactofilin filament"],["cytoskeleton/cytoophidium.html","cytoophidium"],["other/holdfast.html","holdfast"]],"b":[["NCBITaxon%3A565050","Caulobacter vibrioides NA1000"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":6,"a":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]],"b":[["NCBITaxon%3A266","Paracoccus denitrificans"],["NCBITaxon%3A1302247","Paracoccus denitrificans JCM 21484"],["NCBITaxon%3A318586","Paracoccus denitrificans PD1222"],["NCBITaxon%3A1051075","Paracoccus denitrificans SD1"],["NCBITaxon%3A82367","Paracoccus pantotrophus"],["NCBITaxon%3A189685","uncultured Paracoccus sp."]]},{"id":"NCBITaxon:5759","l":"Entamoeba histolytica","na":6,"nb":1,"a":[["membrane_organelle/mitosome.html","mitosome"],["membrane_organelle/mitosome_envelope.html","mitosome envelope"],["membrane_organelle/mitosome_inner_membrane.html","mitosome inner membrane"],["membrane_organelle/mitosome_intermembrane_space.html","mitosome intermembrane space"],["membrane_organelle/mitosome_matrix.html","mitosome matrix"],["membrane_organelle/mitosome_outer_membrane.html","mitosome outer membrane"]],"b":[["NCBITaxon%3A5759","Entamoeba histolytica"]]},{"id":"NCBITaxon:2246","l":"Haloferax volcanii","na":1,"nb":5,"a":[["cytoskeleton/cetz_filament.html","CetZ filament"]],"b":[["NCBITaxon%3A2246","Haloferax volcanii"],["NCBITaxon%3A309800","Haloferax volcanii DS2"],["NCBITaxon%3A1230452","Haloferax volcanii DSM 14919"],["NCBITaxon%3A1227458","Haloferax volcanii JCM 10717"],["NCBITaxon%3A523840","Haloferax volcanii SB1"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":1,"nb":5,"a":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"]],"b":[["NCBITaxon%3A354","Azotobacter vinelandii"],["NCBITaxon%3A1283330","Azotobacter vinelandii CA"],["NCBITaxon%3A1283331","Azotobacter vinelandii CA6"],["NCBITaxon%3A322710","Azotobacter vinelandii DJ"],["NCBITaxon%3A1314750","Azotobacter vinelandii NBRC 13581"]]},{"id":"NCBITaxon:2238","l":"Haloarcula marismortui","na":1,"nb":4,"a":[["ribonucleoprotein/large_ribosomal_subunit.html","large ribosomal subunit"]],"b":[["NCBITaxon%3A2238","Haloarcula marismortui"],["NCBITaxon%3A662475","Haloarcula marismortui ATCC 33799"],["NCBITaxon%3A662476","Haloarcula marismortui ATCC 33800"],["NCBITaxon%3A272569","Haloarcula marismortui ATCC 43049"]]},{"id":"NCBITaxon:3028","l":"Chroomonas","na":1,"nb":4,"a":[["other/ejectisome.html","ejectisome"]],"b":[["NCBITaxon%3A478117","Chroomonas cf. mesostigmatica"],["NCBITaxon%3A356657","Chroomonas dispersa"],["NCBITaxon%3A195502","Chroomonas nordstedtii"],["NCBITaxon%3A354589","Chroomonas sp. CCMP270"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":3,"nb":1,"a":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]],"b":[["NCBITaxon%3A103690","Nostoc sp. PCC 7120 = FACHB-418"]]},{"id":"NCBITaxon:284813","l":"Encephalitozoon cuniculi (strain GB-M1)","na":3,"nb":1,"a":[["spore/microsporidian_type_endospore.html","microsporidian-type endospore"],["spore/microsporidian_type_exospore.html","microsporidian-type exospore"],["spore/polar_tube_anchoring_disc.html","polar tube anchoring disc"]],"b":[["NCBITaxon%3A284813","Encephalitozoon cuniculi GB-M1"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":2,"nb":1,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["NCBITaxon%3A1140","Synechococcus elongatus PCC 7942 = FACHB-805"]]},{"id":"NCBITaxon:1430","l":"Bacillus thuringiensis subsp. israelensis","na":1,"nb":2,"a":[["inclusion/parasporal_crystal.html","parasporal crystal"]],"b":[["NCBITaxon%3A1430","Bacillus thuringiensis serovar israelensis"],["NCBITaxon%3A339854","Bacillus thuringiensis serovar israelensis ATCC 35646"]]},{"id":"NCBITaxon:190650","l":"Caulobacter vibrioides (strain ATCC 19089 / CIP 103742 / CB 15)","na":1,"nb":2,"a":[["cytoskeleton/cytoophidium.html","cytoophidium"]],"b":[["NCBITaxon%3A155892","Caulobacter vibrioides"],["NCBITaxon%3A190650","Caulobacter vibrioides CB15"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus ATCC 27405","na":1,"nb":2,"a":[["other/cellulosome.html","cellulosome"]],"b":[["NCBITaxon%3A1515","Acetivibrio thermocellus"],["NCBITaxon%3A203119","Acetivibrio thermocellus ATCC 27405"]]},{"id":"NCBITaxon:224326","l":"Borreliella burgdorferi (strain ATCC 35210 / DSM 4680 / CIP 102532 / B31)","na":1,"nb":2,"a":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]],"b":[["NCBITaxon%3A139","Borreliella burgdorferi"],["NCBITaxon%3A224326","Borreliella burgdorferi B31"]]},{"id":"NCBITaxon:227086","l":"Bigelowiella natans","na":1,"nb":2,"a":[["membrane_organelle/nucleomorph.html","nucleomorph"]],"b":[["NCBITaxon%3A227086","Bigelowiella natans"],["NCBITaxon%3A753081","Bigelowiella natans CCMP2755"]]},{"id":"NCBITaxon:243277","l":"Vibrio cholerae serotype O1 (strain ATCC 39315 / El Tor Inaba N16961)","na":1,"nb":2,"a":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"]],"b":[["NCBITaxon%3A666","Vibrio cholerae"],["NCBITaxon%3A243277","Vibrio cholerae O1 biovar El Tor str. N16961"]]},{"id":"NCBITaxon:264462","l":"Bdellovibrio bacteriovorus HD100","na":1,"nb":2,"a":[["appendage/type_iv_pilus.html","type IV pilus"]],"b":[["NCBITaxon%3A959","Bdellovibrio bacteriovorus"],["NCBITaxon%3A264462","Bdellovibrio bacteriovorus HD100"]]},{"id":"NCBITaxon:315271","l":"Dolichospermum flos-aquae CCAP 1403/13F","na":2,"nb":1,"a":[["inclusion/gas_vesicle.html","gas vesicle"],["inclusion/gas_vesicle_shell.html","gas vesicle shell"]],"b":[["NCBITaxon%3A315271","Dolichospermum flos-aquae CCAP 1403/13F"]]},{"id":"NCBITaxon:330779","l":"Sulfolobus acidocaldarius (strain ATCC 33909 / DSM 639 / JCM 8929 / NBRC 15157 / NCIMB 11770)","na":1,"nb":2,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"]],"b":[["NCBITaxon%3A2285","Sulfolobus acidocaldarius"],["NCBITaxon%3A330779","Sulfolobus acidocaldarius DSM 639"]]},{"id":"NCBITaxon:342108","l":"","na":2,"nb":1,"a":[["cytoskeleton/mamk_filament.html","MamK filament"],["membrane_organelle/magnetosome.html","magnetosome"]],"b":[["NCBITaxon%3A342108","Paramagnetospirillum magneticum AMB-1"]]},{"id":"NCBITaxon:381666","l":"Cupriavidus necator H16","na":1,"nb":2,"a":[["inclusion/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]],"b":[["NCBITaxon%3A106590","Cupriavidus necator"],["NCBITaxon%3A381666","Cupriavidus necator H16"]]},{"id":"NCBITaxon:4896","l":"Schizosaccharomyces pombe","na":2,"nb":1,"a":[["cytoskeleton/actomyosin_contractile_ring.html","actomyosin contractile ring"],["spore/isp3_layer_of_spore_wall.html","Isp3 layer of spore wall"]],"b":[["NCBITaxon%3A4896","Schizosaccharomyces pombe"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":1,"nb":2,"a":[["microcompartment/bacterial_microcompartment.html","bacterial microcompartment"]],"b":[["NCBITaxon%3A80816","Haliangium ochraceum"],["NCBITaxon%3A502025","Haliangium ochraceum DSM 14365"]]},{"id":"NCBITaxon:5334","l":"Schizophyllum commune","na":1,"nb":2,"a":[["envelope/dolipore_septum.html","dolipore septum"]],"b":[["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A5334","Schizophyllum commune"]]},{"id":"NCBITaxon:54256","l":"Pyrodictium abyssi","na":1,"nb":2,"a":[["appendage/archaeal_cannula.html","archaeal cannula"]],"b":[["NCBITaxon%3A54256","Pyrodictium abyssi"],["NCBITaxon%3A391605","Pyrodictium abyssi DSM 6158"]]},{"id":"NCBITaxon:5702","l":"Trypanosoma brucei brucei","na":1,"nb":2,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["NCBITaxon%3A5702","Trypanosoma brucei brucei"],["NCBITaxon%3A185431","Trypanosoma brucei brucei TREU927"]]},{"id":"NCBITaxon:572477","l":"Allochromatium vinosum (strain ATCC 17899 / DSM 180 / NBRC 103801 / NCIMB 10441 / D)","na":1,"nb":2,"a":[["inclusion/sulfur_globule.html","sulfur globule"]],"b":[["NCBITaxon%3A1049","Allochromatium vinosum"],["NCBITaxon%3A572477","Allochromatium vinosum DSM 180"]]},{"id":"NCBITaxon:573370","l":"Solidesulfovibrio magneticus RS-1","na":1,"nb":2,"a":[["membrane_organelle/ferrosome.html","ferrosome"]],"b":[["NCBITaxon%3A184917","Solidesulfovibrio magneticus"],["NCBITaxon%3A573370","Solidesulfovibrio magneticus RS-1"]]},{"id":"NCBITaxon:79929","l":"Methanothermobacter marburgensis (strain ATCC BAA-927 / DSM 2133 / JCM 14651 / NBRC 100331 / OCM 82 / Marburg)","na":1,"nb":2,"a":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]],"b":[["NCBITaxon%3A145263","Methanothermobacter marburgensis"],["NCBITaxon%3A79929","Methanothermobacter marburgensis str. Marburg"]]},{"id":"NCBITaxon:1111708","l":"Synechocystis sp. (strain ATCC 27184 / PCC 6803 / Kazusa)","na":1,"nb":1,"a":[["energy_complex/phycobilisome.html","phycobilisome"]],"b":[["NCBITaxon%3A1111708","Synechocystis sp. PCC 6803 substr. Kazusa"]]},{"id":"NCBITaxon:1803513","l":"Candidatus Altarchaeum hamiconexum","na":1,"nb":1,"a":[["appendage/hamus.html","hamus"]],"b":[["NCBITaxon%3A1803513","Candidatus Altarchaeum hamiconexum"]]},{"id":"NCBITaxon:208963","l":"Pseudomonas aeruginosa (strain UCBPP-PA14)","na":1,"nb":1,"a":[["inclusion/r_body.html","R-body"]],"b":[["NCBITaxon%3A208963","Pseudomonas aeruginosa UCBPP-PA14"]]},{"id":"NCBITaxon:243233","l":"Methylococcus capsulatus Bath","na":1,"nb":1,"a":[["membrane_organelle/methane_oxidizing_organelle.html","methane-oxidizing organelle"]],"b":[["NCBITaxon%3A243233","Methylococcus capsulatus str. Bath"]]},{"id":"NCBITaxon:246196","l":"Mycolicibacterium smegmatis (strain ATCC 700084 / mc(2)155)","na":1,"nb":1,"a":[["secretion_system/esx_3_type_vii_secretion_system_membrane_complex.html","ESX-3 type VII secretion system membrane complex"]],"b":[["NCBITaxon%3A246196","Mycolicibacterium smegmatis MC2 155"]]},{"id":"NCBITaxon:28907","l":"Caedibacter taeniospiralis","na":1,"nb":1,"a":[["inclusion/r_body.html","R-body"]],"b":[["NCBITaxon%3A28907","Caedibacter taeniospiralis"]]},{"id":"NCBITaxon:345073","l":"Vibrio cholerae serotype O1 (strain ATCC 39541 / Classical Ogawa 395 / O395)","na":1,"nb":1,"a":[["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"]],"b":[["NCBITaxon%3A345073","Vibrio cholerae O395"]]},{"id":"NCBITaxon:45610","l":"Psychrobacter urativorans","na":1,"nb":1,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["NCBITaxon%3A45610","Psychrobacter urativorans"]]},{"id":"NCBITaxon:48466","l":"Prosthecobacter vanneervenii","na":1,"nb":1,"a":[["cytoskeleton/btubab_bacterial_microtubule.html","BtubAB bacterial microtubule"]],"b":[["NCBITaxon%3A48466","Prosthecobacter vanneervenii"]]},{"id":"NCBITaxon:55529","l":"Guillardia theta","na":1,"nb":1,"a":[["membrane_organelle/nucleomorph.html","nucleomorph"]],"b":[["NCBITaxon%3A905079","Guillardia theta CCMP2712"]]},{"id":"NCBITaxon:5665","l":"Leishmania mexicana","na":1,"nb":1,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["NCBITaxon%3A5665","Leishmania mexicana"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/CommunityMech--CellStructureMech.json b/assets/fleet/edges/CommunityMech--CellStructureMech.json index 5299ce6..e1eef46 100644 --- a/assets/fleet/edges/CommunityMech--CellStructureMech.json +++ b/assets/fleet/edges/CommunityMech--CellStructureMech.json @@ -1 +1 @@ -{"a":"CommunityMech","b":"CellStructureMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","CellStructureMech":"https://culturebotai.github.io/CellStructureMech/pages/structures/"},"n":60,"by":{"NCBITaxon":36,"CHEBI":13,"GO":11},"terms":[{"id":"NCBITaxon:2","l":"Bacteria","na":56,"nb":89,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"]],"b":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]]},{"id":"NCBITaxon:2157","l":"Archaea","na":15,"nb":39,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"]],"b":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":14,"nb":31,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]],"b":[["appendage/curli.html","curli"],["appendage/p_pilus.html","P pilus"],["appendage/pilus.html","pilus"],["appendage/type_i_pilus.html","type I pilus"],["cytoskeleton/parm_filament.html","ParM filament"],["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":14,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["cytoskeleton/alfa_filament.html","AlfA filament"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":8,"nb":190,"a":[["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"],["Sedimenting_Arabinose_Glucose_Saccharomyces_Coculture.html","Sedimenting Arabinose-Glucose Saccharomyces Coculture"]],"b":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"],["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/septin_ring.html","septin ring"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"],["cytoskeleton/spindle_pole_body.html","spindle pole body"]]},{"id":"NCBITaxon:1239","l":"Bacillota","na":6,"nb":9,"a":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["Thermophilic_ExSitu_Biomethanation_Mixed_Culture.html","Thermophilic Ex-Situ Biomethanation Mixed Culture"]],"b":[["spore/endospore_coat.html","endospore coat"],["spore/endospore_core.html","endospore core"],["spore/endospore_cortex.html","endospore cortex"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"],["spore/endospore_forming_forespore.html","endospore-forming forespore"],["spore/exosporium.html","exosporium"]]},{"id":"GO:0015979","l":"photosynthesis","na":44,"nb":5,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"],["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":75,"nb":3,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"],["other/pyrenoid.html","pyrenoid"]]},{"id":"NCBITaxon:3055","l":"Chlamydomonas reinhardtii","na":3,"nb":58,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]],"b":[["appendage/ciliary_membrane.html","ciliary membrane"],["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"],["appendage/mastigoneme.html","mastigoneme"],["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_a_tubule_inner_sheath.html","axonemal A tubule inner sheath"]]},{"id":"NCBITaxon:201174","l":"Actinomycetota","na":10,"nb":3,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":9,"nb":3,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"]],"b":[["appendage/type_iv_pilus.html","type IV pilus"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]]},{"id":"NCBITaxon:1224","l":"Pseudomonadota","na":8,"nb":3,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"]],"b":[["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["microcompartment/carboxysome.html","carboxysome"],["ribonucleoprotein/bacterial_degradosome.html","bacterial degradosome"]]},{"id":"CHEBI:17029","l":"chitin","na":4,"nb":3,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]],"b":[["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["membrane_organelle/chitosome.html","chitosome"],["spore/microsporidian_type_endospore.html","microsporidian-type endospore"]]},{"id":"GO:0015977","l":"carbon fixation","na":33,"nb":2,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["other/pyrenoid.html","pyrenoid"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":2,"nb":15,"a":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]]},{"id":"NCBITaxon:1117","l":"Cyanobacteriota","na":2,"nb":13,"a":[["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]],"b":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/photosystem_i.html","photosystem I"],["energy_complex/photosystem_ii.html","photosystem II"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]]},{"id":"NCBITaxon:1148","l":"Synechocystis sp. PCC 6803","na":2,"nb":11,"a":[["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["inclusion/cyanophycin_granule.html","cyanophycin granule"],["inclusion/glycogen_granule.html","glycogen granule"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"]]},{"id":"GO:0019684","l":"photosynthesis, light reaction","na":2,"nb":9,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]],"b":[["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":6,"nb":2,"a":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":2,"nb":4,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"],["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]]},{"id":"NCBITaxon:203682","l":"Planctomycetota","na":3,"nb":2,"a":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"]],"b":[["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"]]},{"id":"NCBITaxon:28211","l":"Alphaproteobacteria","na":2,"nb":3,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]]},{"id":"GO:0033103","l":"protein secretion by the type VI secretion system","na":2,"nb":2,"a":[["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"]],"b":[["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"],["secretion_system/type_vi_secretion_system_contractile_sheath.html","type VI secretion system contractile sheath"]]},{"id":"NCBITaxon:1236","l":"Gammaproteobacteria","na":2,"nb":2,"a":[["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"],["secretion_system/type_iii_protein_secretion_system_complex.html","type III protein secretion system complex"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":2,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["envelope/periplasmic_space.html","periplasmic space"],["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":2,"nb":2,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["cytoskeleton/tubz_filament.html","TubZ filament"],["inclusion/parasporal_crystal.html","parasporal crystal"]]},{"id":"NCBITaxon:1763","l":"Mycobacterium","na":2,"nb":2,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]]},{"id":"NCBITaxon:2759","l":"Eukaryota","na":1,"nb":49,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"]],"b":[["appendage/paraflagellar_rod.html","paraflagellar rod"],["cytoskeleton/conoid.html","conoid"],["cytoskeleton/cytoophidium.html","cytoophidium"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":21,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":1,"nb":15,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]]},{"id":"NCBITaxon:4751","l":"Fungi","na":1,"nb":11,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/septin_ring.html","septin ring"],["envelope/capsule.html","capsule"],["envelope/eisosome_membrane_domain_mcc.html","eisosome membrane domain/MCC"],["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["envelope/plasma_membrane.html","plasma membrane"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":1,"nb":8,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["other/ap_5_adaptor_complex.html","AP-5 adaptor complex"],["ribonucleoprotein/u11_snrnp.html","U11 snRNP"],["ribonucleoprotein/u11_u12_snrnp.html","U11/U12 snRNP"],["ribonucleoprotein/u12_snrnp.html","U12 snRNP"],["ribonucleoprotein/u4atac_snrnp.html","U4atac snRNP"],["ribonucleoprotein/u4atac_u6atac_snrnp.html","U4atac/U6atac snRNP"]]},{"id":"NCBITaxon:976","l":"Bacteroidota","na":7,"nb":1,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["secretion_system/type_ix_protein_secretion_system_complex.html","type IX protein secretion system complex"]]},{"id":"NCBITaxon:32046","l":"Synechococcus elongatus","na":6,"nb":1,"a":[["Synechococcus_Bacillus_SPC.html","Synechococcus-Bacillus Synthetic Photosynthetic Consortium"],["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"],["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"],["Synechococcus_Saccharomyces_SPC.html","Synechococcus-Saccharomyces Synthetic Photosynthetic Consortium"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["energy_complex/photosystem_i.html","photosystem I"]]},{"id":"GO:0006635","l":"fatty acid beta-oxidation","na":5,"nb":1,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["membrane_organelle/peroxisomal_matrix.html","peroxisomal matrix"]]},{"id":"GO:0006935","l":"chemotaxis","na":5,"nb":1,"a":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["SynCom_MetG2_Rhizobacteria_Sugarcane_Stress_Resilience.html","SynCom MetG2 Rhizobacteria Sugarcane Stress Resilience"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"],["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]]},{"id":"GO:0071973","l":"bacterial-type flagellum-dependent cell motility","na":1,"nb":4,"a":[["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/periplasmic_flagellum.html","periplasmic flagellum"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":3,"nb":1,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["membrane_organelle/trichocyst.html","trichocyst"]]},{"id":"CHEBI:46726","l":"magnetite","na":3,"nb":1,"a":[["Magnetite_Sulfate_Stress_Anaerobic_Microbiome.html","Magnetite Sulfate-Stress Anaerobic Microbiome"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Tropidoatractus_Magnetotacticus_Tripartite_Syntrophy.html","Tropidoatractus magnetotacticus Magnetotactic Ciliate Tripartite Syntrophy"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"]]},{"id":"NCBITaxon:5722","l":"Trichomonas vaginalis","na":1,"nb":3,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["membrane_organelle/hydrogenosomal_membrane.html","hydrogenosomal membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/hydrogenosome_lumen.html","hydrogenosome lumen"]]},{"id":"CHEBI:15422","l":"ATP","na":2,"nb":1,"a":[["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]]},{"id":"GO:0006260","l":"DNA replication","na":1,"nb":2,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"],["other/single_stranded_dna_binding_protein_complex.html","single-stranded DNA-binding protein complex"]]},{"id":"GO:0009252","l":"peptidoglycan biosynthetic process","na":1,"nb":2,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"]],"b":[["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/elongasome.html","elongasome"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":1,"nb":2,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":2,"nb":1,"a":[["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]],"b":[["other/cellulosome.html","cellulosome"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus (strain ATCC 27405 / DSM 1237 / JCM 9322 / NBRC 103400 / NCIMB 10682 / NRRL B-4536 / VPI 7372)","na":2,"nb":1,"a":[["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["other/cellulosome.html","cellulosome"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":2,"nb":1,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"]],"b":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":1,"nb":2,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]]},{"id":"NCBITaxon:4890","l":"Ascomycota","na":1,"nb":2,"a":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["other/nuclear_pore_central_transport_channel.html","nuclear pore central transport channel"],["other/nuclear_pore_linkers.html","nuclear pore linkers"]]},{"id":"CHEBI:16838","l":"polyphosphate","na":1,"nb":1,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"]],"b":[["membrane_organelle/acidocalcisome.html","acidocalcisome"]]},{"id":"CHEBI:17855","l":"triglyceride","na":1,"nb":1,"a":[["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["inclusion/lipid_droplet.html","lipid droplet"]]},{"id":"CHEBI:18248","l":"iron atom","na":1,"nb":1,"a":[["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"]]},{"id":"CHEBI:28087","l":"glycogen","na":1,"nb":1,"a":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]],"b":[["inclusion/glycogen_granule.html","glycogen granule"]]},{"id":"CHEBI:33403","l":"elemental sulfur","na":1,"nb":1,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["inclusion/sulfur_globule.html","sulfur globule"]]},{"id":"CHEBI:53388","l":"poly(hydroxybutyrate)","na":1,"nb":1,"a":[["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"]],"b":[["inclusion/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]]},{"id":"GO:0006412","l":"translation","na":1,"nb":1,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["ribonucleoprotein/ribosome.html","ribosome"]]},{"id":"GO:0055085","l":"transmembrane transport","na":1,"nb":1,"a":[["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"]],"b":[["envelope/plasma_membrane.html","plasma membrane"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":1,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]],"b":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]]},{"id":"NCBITaxon:203691","l":"Spirochaetota","na":1,"nb":1,"a":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":1,"nb":1,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"]]}]} \ No newline at end of file +{"a":"CommunityMech","b":"CellStructureMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","CellStructureMech":"https://culturebotai.github.io/CellStructureMech/pages/structures/"},"n":60,"by":{"NCBITaxon":36,"CHEBI":13,"GO":11},"terms":[{"id":"NCBITaxon:2","l":"Bacteria","na":56,"nb":89,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"]],"b":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]]},{"id":"NCBITaxon:2157","l":"Archaea","na":15,"nb":39,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"]],"b":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":14,"nb":31,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]],"b":[["appendage/curli.html","curli"],["appendage/p_pilus.html","P pilus"],["appendage/pilus.html","pilus"],["appendage/type_i_pilus.html","type I pilus"],["cytoskeleton/parm_filament.html","ParM filament"],["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":14,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["cytoskeleton/alfa_filament.html","AlfA filament"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":8,"nb":190,"a":[["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"],["Sedimenting_Arabinose_Glucose_Saccharomyces_Coculture.html","Sedimenting Arabinose-Glucose Saccharomyces Coculture"]],"b":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"],["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/septin_ring.html","septin ring"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"],["cytoskeleton/spindle_pole_body.html","spindle pole body"]]},{"id":"NCBITaxon:1239","l":"Bacillota","na":6,"nb":9,"a":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["Thermophilic_ExSitu_Biomethanation_Mixed_Culture.html","Thermophilic Ex-Situ Biomethanation Mixed Culture"]],"b":[["spore/endospore_coat.html","endospore coat"],["spore/endospore_core.html","endospore core"],["spore/endospore_cortex.html","endospore cortex"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"],["spore/endospore_forming_forespore.html","endospore-forming forespore"],["spore/exosporium.html","exosporium"]]},{"id":"GO:0015979","l":"photosynthesis","na":44,"nb":5,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"],["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":75,"nb":3,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"],["other/pyrenoid.html","pyrenoid"]]},{"id":"NCBITaxon:3055","l":"Chlamydomonas reinhardtii","na":3,"nb":58,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]],"b":[["appendage/ciliary_membrane.html","ciliary membrane"],["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"],["appendage/mastigoneme.html","mastigoneme"],["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_a_tubule_inner_sheath.html","axonemal A tubule inner sheath"]]},{"id":"NCBITaxon:201174","l":"Actinomycetota","na":10,"nb":3,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":9,"nb":3,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"]],"b":[["appendage/type_iv_pilus.html","type IV pilus"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]]},{"id":"NCBITaxon:1224","l":"Pseudomonadota","na":8,"nb":3,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"]],"b":[["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["microcompartment/carboxysome.html","carboxysome"],["ribonucleoprotein/bacterial_degradosome.html","bacterial degradosome"]]},{"id":"CHEBI:17029","l":"chitin","na":4,"nb":3,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]],"b":[["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["membrane_organelle/chitosome.html","chitosome"],["spore/microsporidian_type_endospore.html","microsporidian-type endospore"]]},{"id":"GO:0015977","l":"carbon fixation","na":33,"nb":2,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["other/pyrenoid.html","pyrenoid"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":2,"nb":15,"a":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]]},{"id":"NCBITaxon:1117","l":"Cyanobacteriota","na":2,"nb":13,"a":[["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]],"b":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/photosystem_i.html","photosystem I"],["energy_complex/photosystem_ii.html","photosystem II"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]]},{"id":"NCBITaxon:1148","l":"Synechocystis sp. PCC 6803","na":2,"nb":11,"a":[["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["inclusion/cyanophycin_granule.html","cyanophycin granule"],["inclusion/glycogen_granule.html","glycogen granule"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"]]},{"id":"GO:0019684","l":"photosynthesis, light reaction","na":2,"nb":9,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]],"b":[["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":6,"nb":2,"a":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":2,"nb":4,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"],["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]]},{"id":"NCBITaxon:203682","l":"Planctomycetota","na":3,"nb":2,"a":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"]],"b":[["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"]]},{"id":"NCBITaxon:28211","l":"Alphaproteobacteria","na":2,"nb":3,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]]},{"id":"GO:0033103","l":"protein secretion by the type VI secretion system","na":2,"nb":2,"a":[["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"]],"b":[["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"],["secretion_system/type_vi_secretion_system_contractile_sheath.html","type VI secretion system contractile sheath"]]},{"id":"NCBITaxon:1236","l":"Gammaproteobacteria","na":2,"nb":2,"a":[["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"],["secretion_system/type_iii_protein_secretion_system_complex.html","type III protein secretion system complex"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":2,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["envelope/periplasmic_space.html","periplasmic space"],["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":2,"nb":2,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["cytoskeleton/tubz_filament.html","TubZ filament"],["inclusion/parasporal_crystal.html","parasporal crystal"]]},{"id":"NCBITaxon:1763","l":"Mycobacterium","na":2,"nb":2,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]]},{"id":"NCBITaxon:2759","l":"Eukaryota","na":1,"nb":49,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"]],"b":[["appendage/paraflagellar_rod.html","paraflagellar rod"],["cytoskeleton/conoid.html","conoid"],["cytoskeleton/cytoophidium.html","cytoophidium"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":21,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":1,"nb":15,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]]},{"id":"NCBITaxon:4751","l":"Fungi","na":1,"nb":11,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/septin_ring.html","septin ring"],["envelope/capsule.html","capsule"],["envelope/eisosome_membrane_domain_mcc.html","eisosome membrane domain/MCC"],["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["envelope/plasma_membrane.html","plasma membrane"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":1,"nb":8,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["other/ap_5_adaptor_complex.html","AP-5 adaptor complex"],["ribonucleoprotein/u11_snrnp.html","U11 snRNP"],["ribonucleoprotein/u11_u12_snrnp.html","U11/U12 snRNP"],["ribonucleoprotein/u12_snrnp.html","U12 snRNP"],["ribonucleoprotein/u4atac_snrnp.html","U4atac snRNP"],["ribonucleoprotein/u4atac_u6atac_snrnp.html","U4atac/U6atac snRNP"]]},{"id":"NCBITaxon:976","l":"Bacteroidota","na":7,"nb":1,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["secretion_system/type_ix_protein_secretion_system_complex.html","type IX protein secretion system complex"]]},{"id":"NCBITaxon:32046","l":"Synechococcus elongatus","na":6,"nb":1,"a":[["Synechococcus_Bacillus_SPC.html","Synechococcus-Bacillus Synthetic Photosynthetic Consortium"],["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"],["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"],["Synechococcus_Saccharomyces_SPC.html","Synechococcus-Saccharomyces Synthetic Photosynthetic Consortium"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["energy_complex/photosystem_i.html","photosystem I"]]},{"id":"GO:0006635","l":"fatty acid beta-oxidation","na":5,"nb":1,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["membrane_organelle/peroxisomal_matrix.html","peroxisomal matrix"]]},{"id":"GO:0006935","l":"chemotaxis","na":5,"nb":1,"a":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["SynCom_MetG2_Rhizobacteria_Sugarcane_Stress_Resilience.html","SynCom MetG2 Rhizobacteria Sugarcane Stress Resilience"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"],["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]]},{"id":"GO:0071973","l":"bacterial-type flagellum-dependent cell motility","na":1,"nb":4,"a":[["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/periplasmic_flagellum.html","periplasmic flagellum"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":3,"nb":1,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["membrane_organelle/trichocyst.html","trichocyst"]]},{"id":"CHEBI:46726","l":"magnetite","na":3,"nb":1,"a":[["Magnetite_Sulfate_Stress_Anaerobic_Microbiome.html","Magnetite Sulfate-Stress Anaerobic Microbiome"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Tropidoatractus_Magnetotacticus_Tripartite_Syntrophy.html","Tropidoatractus magnetotacticus Magnetotactic Ciliate Tripartite Syntrophy"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"]]},{"id":"NCBITaxon:5722","l":"Trichomonas vaginalis","na":1,"nb":3,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["membrane_organelle/hydrogenosomal_membrane.html","hydrogenosomal membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/hydrogenosome_lumen.html","hydrogenosome lumen"]]},{"id":"CHEBI:15422","l":"ATP","na":2,"nb":1,"a":[["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]]},{"id":"GO:0006260","l":"DNA replication","na":1,"nb":2,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"],["other/single_stranded_dna_binding_protein_complex.html","single-stranded DNA-binding protein complex"]]},{"id":"GO:0009252","l":"peptidoglycan biosynthetic process","na":1,"nb":2,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"]],"b":[["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/elongasome.html","elongasome"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":1,"nb":2,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":2,"nb":1,"a":[["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]],"b":[["other/cellulosome.html","cellulosome"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus ATCC 27405","na":2,"nb":1,"a":[["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["other/cellulosome.html","cellulosome"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":2,"nb":1,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"]],"b":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":1,"nb":2,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]]},{"id":"NCBITaxon:4890","l":"Ascomycota","na":1,"nb":2,"a":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["other/nuclear_pore_central_transport_channel.html","nuclear pore central transport channel"],["other/nuclear_pore_linkers.html","nuclear pore linkers"]]},{"id":"CHEBI:16838","l":"polyphosphate","na":1,"nb":1,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"]],"b":[["membrane_organelle/acidocalcisome.html","acidocalcisome"]]},{"id":"CHEBI:17855","l":"triglyceride","na":1,"nb":1,"a":[["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["inclusion/lipid_droplet.html","lipid droplet"]]},{"id":"CHEBI:18248","l":"iron atom","na":1,"nb":1,"a":[["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"]]},{"id":"CHEBI:28087","l":"glycogen","na":1,"nb":1,"a":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]],"b":[["inclusion/glycogen_granule.html","glycogen granule"]]},{"id":"CHEBI:33403","l":"elemental sulfur","na":1,"nb":1,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["inclusion/sulfur_globule.html","sulfur globule"]]},{"id":"CHEBI:53388","l":"poly(hydroxybutyrate)","na":1,"nb":1,"a":[["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"]],"b":[["inclusion/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]]},{"id":"GO:0006412","l":"translation","na":1,"nb":1,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["ribonucleoprotein/ribosome.html","ribosome"]]},{"id":"GO:0055085","l":"transmembrane transport","na":1,"nb":1,"a":[["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"]],"b":[["envelope/plasma_membrane.html","plasma membrane"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":1,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]],"b":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]]},{"id":"NCBITaxon:203691","l":"Spirochaetota","na":1,"nb":1,"a":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":1,"nb":1,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/CommunityMech--NaturalProductMech.json b/assets/fleet/edges/CommunityMech--NaturalProductMech.json index 2f09a74..600b374 100644 --- a/assets/fleet/edges/CommunityMech--NaturalProductMech.json +++ b/assets/fleet/edges/CommunityMech--NaturalProductMech.json @@ -1 +1 @@ -{"a":"CommunityMech","b":"NaturalProductMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","NaturalProductMech":"https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/natural_products/"},"n":128,"by":{"NCBITaxon":123,"CHEBI":5},"terms":[{"id":"NCBITaxon:286","l":"Pseudomonas","na":18,"nb":41,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"]],"b":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["alkaloids/tioguanine.yaml","tioguanine"],["amino_acids_and_peptides/napsamycin-c.yaml","napsamycin C"],["amino_acids_and_peptides/napsamycin-d.yaml","napsamycin D"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":16,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["amino_acids_and_peptides/ericin-s.yaml","ericin S"],["amino_acids_and_peptides/iturin.yaml","iturin"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":14,"nb":24,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":11,"nb":13,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["unclassified/bananamide-d.yaml","bananamide D"],["unclassified/bananamide-e.yaml","bananamide E"],["unclassified/bananamide-f.yaml","bananamide F"],["unclassified/bananamide-g.yaml","bananamide G"],["unclassified/lokisin.yaml","lokisin"],["unclassified/pseudodesmin-a.yaml","pseudodesmin A"]]},{"id":"NCBITaxon:1386","l":"Bacillus ","na":16,"nb":9,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bogorol-a.yaml","bogorol A"],["amino_acids_and_peptides/koranimine.yaml","koranimine"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"],["amino_acids_and_peptides/rhizocticin-a.yaml","rhizocticin A"],["polyketides/difficidin.yaml","difficidin"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":9,"nb":12,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:492670","l":"Bacillus velezensis","na":8,"nb":8,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["polyketides/bacillaene.yaml","bacillaene"],["polyketides/difficidin.yaml","difficidin"],["polyketides/macrolactin-h.yaml","macrolactin H"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":6,"nb":116,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["alkaloids/altemicidin.yaml","altemicidin"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"],["alkaloids/aurachin-ss.yaml","aurachin SS"],["alkaloids/berninamycin-j.yaml","berninamycin J"],["alkaloids/berninamycin-k.yaml","berninamycin K"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":6,"nb":27,"a":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["alkaloids/pseudomonine.yaml","pseudomonine"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyreudione-c.yaml","pyreudione C"],["alkaloids/quinolobactin.yaml","quinolobactin"]]},{"id":"NCBITaxon:1883","l":"Streptomyces","na":5,"nb":438,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["Wheat_Consortium_C6.html","Wheat Synthetic Consortium C6"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/7-prenylisatin.yaml","7-prenylisatin"],["alkaloids/9-methylstreptimidone.yaml","9-methylstreptimidone"],["alkaloids/anisomycin.yaml","(−)-anisomycin"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":9,"nb":5,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]],"b":[["alkaloids/promysalin.yaml","promysalin"],["polyketides/pseudopyronine-a.yaml","pseudopyronine A"],["polyketides/pseudopyronine-b.yaml","pseudopyronine B"],["unclassified/putisolvin-iii.yaml","putisolvin III"],["unclassified/putisolvin-v.yaml","putisolvin V"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":7,"nb":4,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["alkaloids/zwittermicin-a.yaml","zwittermicin A"],["amino_acids_and_peptides/livipeptin.yaml","Livipeptin"],["carbohydrates/tunicamycin.yaml","tunicamycin"],["unclassified/cereulide.yaml","cereulide"]]},{"id":"NCBITaxon:32008","l":"Burkholderia","na":4,"nb":6,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["polyketides/necroxime-a.yaml","necroxime A"],["polyketides/necroxime-c.yaml","necroxime C"],["polyketides/necroxime-d.yaml","necroxime D"],["polyketides/thailanstatin-a.yaml","thailanstatin A"],["unclassified/necroxime-b.yaml","necroxime B"],["unclassified/spliceostatin.yaml","spliceostatin"]]},{"id":"NCBITaxon:5052","l":"Aspergillus","na":3,"nb":18,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["alkaloids/psychrophilin-e.yaml","psychrophilin E"],["alkaloids/terrequinone-a.yaml","terrequinone A"],["fatty_acids/himeic-acid-a.yaml","himeic acid A"],["polyketides/asperlin.yaml","(+)-asperlin"],["polyketides/geodin.yaml","geodin"],["polyketides/mycophenolic-acid.yaml","mycophenolic acid"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":3,"nb":11,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["amino_acids_and_peptides/ferrichrome.yaml","ferrichrome"],["polyketides/1-2-3-5-10-tetrahydroxy-7-methoxy-4-oxo-1-2-3-4-tetrahydroanthracen-2-yl-pentane.yaml","1-(2,3,5,10-tetrahydroxy-7-methoxy-4-oxo-1,2,3,4-tetrahydroanthracen-2-yl)pentane-2,4-dione"],["polyketides/azanigerone-a.yaml","azanigerone A"],["polyketides/campyrone-b.yaml","campyrone B"],["polyketides/desmethyl-tan-1612.yaml","desmethyl TAN-1612"],["polyketides/fumonisin-b2.yaml","fumonisin B2"]]},{"id":"NCBITaxon:5544","l":"Trichoderma harzianum","na":5,"nb":3,"a":[["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"],["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"],["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["polyketides/1-2-dehydropenicillide.yaml","1,2-dehydropenicillide"],["polyketides/harziphilone.yaml","harziphilone"],["unclassified/harzianopyridone.yaml","harzianopyridone"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":4,"nb":3,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]],"b":[["unclassified/leuvalin.yaml","leuvalin"],["unclassified/mutanocyclin.yaml","mutanocyclin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":4,"nb":3,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"],["amino_acids_and_peptides/lacticin-z.yaml","lacticin Z"],["amino_acids_and_peptides/nisin-a.yaml","nisin A"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":3,"nb":3,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["amino_acids_and_peptides/polymyxin-b.yaml","polymyxin B"],["amino_acids_and_peptides/polymyxin.yaml","polymyxin"],["unclassified/fusaricidin-b.yaml","fusaricidin B"]]},{"id":"NCBITaxon:5507","l":"Fusarium oxysporum","na":2,"nb":11,"a":[["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["alkaloids/fusaric-acid.yaml","fusaric acid"],["polyketides/bikaverin.yaml","bikaverin"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"],["polyketides/fumonisin-c1.yaml","Fumonisin C1"],["polyketides/fumonisin-c2.yaml","Fumonisin C2"],["polyketides/fumonisin-c3.yaml","Fumonisin C3"]]},{"id":"NCBITaxon:3702","l":"Arabidopsis thaliana","na":2,"nb":10,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/itaconic-acid.yaml","itaconic acid"],["terpenoids/ent-quiannulatene.yaml","(-)-ent-quiannulatene"],["terpenoids/euphol.yaml","euphol"],["terpenoids/marneral.yaml","marneral"],["terpenoids/thaliandiol.yaml","thaliandiol"]]},{"id":"NCBITaxon:4577","l":"Zea mays","na":2,"nb":6,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"]],"b":[["alkaloids/dimboa.yaml","DIMBOA"],["polyketides/emodin.yaml","emodin"],["terpenoids/zealexin-a1.yaml","zealexin A1"],["terpenoids/zealexin-b3.yaml","zealexin B3"],["terpenoids/zealexin-c2.yaml","zealexin C2"],["unclassified/aflatoxin.yaml","aflatoxin"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":5,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"],["unclassified/leuvalin.yaml","leuvalin"],["unclassified/phevalin.yaml","phevalin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:1521","l":"Ruminiclostridium cellulolyticum","na":4,"nb":2,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["alkaloids/closthioamide.yaml","closthioamide"],["amino_acids_and_peptides/rc-aip1.yaml","Rc-AIP1"]]},{"id":"NCBITaxon:1889","l":"Streptomyces ambofaciens","na":2,"nb":4,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["alkaloids/congocidine.yaml","congocidine"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["polyketides/spiramycin.yaml","spiramycin"],["polyketides/stambomycin-a.yaml","stambomycin A"]]},{"id":"NCBITaxon:32049","l":"Picosynechococcus sp. PCC 7002","na":2,"nb":4,"a":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"]],"b":[["alkaloids/synechobactin-a.yaml","synechobactin A"],["alkaloids/synechobactin-b.yaml","synechobactin B"],["alkaloids/synechobactin-c.yaml","synechobactin C"],["fatty_acids/nonadec-1-ene.yaml","nonadec-1-ene"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":3,"nb":2,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"],["carbohydrates/oxetanocin-a.yaml","oxetanocin A"]]},{"id":"NCBITaxon:149698","l":"Massilia","na":3,"nb":2,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]],"b":[["unclassified/empedopeptin.yaml","empedopeptin"],["unclassified/massiliachelin.yaml","Massiliachelin"]]},{"id":"NCBITaxon:379","l":"Rhizobium","na":3,"nb":2,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["alkaloids/sesbanimide-c.yaml","sesbanimide C"],["amino_acids_and_peptides/syringolin-a-2.yaml","syringolin A"]]},{"id":"NCBITaxon:44249","l":"Paenibacillus","na":3,"nb":2,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["alkaloids/paenilamicin.yaml","paenilamicin"],["unclassified/paenibacterin.yaml","paenibacterin"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":3,"nb":2,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["terpenoids/mk-8.yaml","MK-8"]]},{"id":"NCBITaxon:55080","l":"Brevibacillus","na":3,"nb":2,"a":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"]],"b":[["alkaloids/ulbactin-f.yaml","ulbactin F"],["alkaloids/ulbactin-g.yaml","ulbactin G"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":2,"nb":2,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]],"b":[["alkaloids/biotin.yaml","biotin"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":2,"nb":2,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["unclassified/andalusicin-a.yaml","andalusicin A"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":2,"nb":2,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["alkaloids/agrobactin.yaml","agrobactin"],["amino_acids_and_peptides/aztreonam.yaml","aztreonam"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":2,"nb":2,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["alkaloids/acinetobactin.yaml","acinetobactin"],["amino_acids_and_peptides/fimsbactin-a.yaml","fimsbactin A"]]},{"id":"NCBITaxon:1873","l":"Micromonospora","na":1,"nb":49,"a":[["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"]],"b":[["alkaloids/diazaquinomycin-h.yaml","diazaquinomycin H"],["alkaloids/diazaquinomycin-j.yaml","diazaquinomycin J"],["alkaloids/diazepinomicin.yaml","diazepinomicin"],["alkaloids/microansamycin-i.yaml","microansamycin I"],["alkaloids/staurosporine.yaml","staurosporine"],["alkaloids/streptonigrin.yaml","streptonigrin"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":1,"nb":30,"a":[["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["amino_acids_and_peptides/ditryptophenaline.yaml","(-)-ditryptophenaline"],["amino_acids_and_peptides/imizoquin-a.yaml","imizoquin A"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":1,"nb":23,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/melanin.yaml","melanin"],["alkaloids/undecylprodigiosin.yaml","undecylprodigiosin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/sapb.yaml","SapB"]]},{"id":"NCBITaxon:5073","l":"Penicillium","na":1,"nb":20,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["alkaloids/citridone-a.yaml","citridone A"],["alkaloids/citridone-b-2.yaml","citridone B'"],["alkaloids/citridone-b.yaml","citridone B"],["alkaloids/communesin-b.yaml","communesin B"],["alkaloids/communesin-c.yaml","communesin C"],["alkaloids/communesin-d.yaml","communesin D"]]},{"id":"NCBITaxon:69488","l":"Penicillium simplicissimum","na":1,"nb":14,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"]],"b":[["polyketides/citreoviridin.yaml","citreoviridin"],["unclassified/andrastin-a.yaml","andrastin A"],["unclassified/okaramine-b.yaml","okaramine B"],["unclassified/okaramine-d.yaml","okaramine D"],["unclassified/paraherquamide.yaml","paraherquamide"],["unclassified/paraherquonin.yaml","paraherquonin"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":1,"nb":13,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/congocidine.yaml","congocidine"],["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]]},{"id":"NCBITaxon:1163","l":"Anabaena","na":1,"nb":11,"a":[["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"]],"b":[["alkaloids/anatoxin-a.yaml","anatoxin-a"],["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"],["alkaloids/saxitoxin.yaml","saxitoxin"],["alkaloids/schizokinen.yaml","schizokinen"],["amino_acids_and_peptides/anabaenopeptin.yaml","anabaenopeptin"],["amino_acids_and_peptides/anacyclamide-a10.yaml","anacyclamide A10"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":1,"nb":10,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["amino_acids_and_peptides/lipopeptide-8d1-1.yaml","lipopeptide 8D1-1"],["amino_acids_and_peptides/lipopeptide-8d1-2.yaml","lipopeptide 8D1-2"],["carbohydrates/amicetin.yaml","amicetin"],["carbohydrates/streptothricin-c.yaml","streptothricin C"],["carbohydrates/streptothricin-d.yaml","streptothricin D"],["carbohydrates/streptothricin-e.yaml","streptothricin E"]]},{"id":"NCBITaxon:1988","l":"Actinomadura","na":1,"nb":9,"a":[["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"]],"b":[["alkaloids/k-252a.yaml","K-252a"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["carbohydrates/2-chloropentostatin.yaml","2'-chloropentostatin"],["polyketides/actinospirol-a.yaml","actinospirol A"],["polyketides/actinospirol-b.yaml","actinospirol B"],["polyketides/maduralactomycin-a.yaml","maduralactomycin A"]]},{"id":"NCBITaxon:117187","l":"Fusarium verticillioides","na":1,"nb":8,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]],"b":[["alkaloids/dihydrofusarin-c.yaml","dihydrofusarin C"],["alkaloids/epi-fusarin-c.yaml","epi-fusarin C"],["alkaloids/fusaric-acid.yaml","fusaric acid"],["alkaloids/fusarin-c.yaml","fusarin C"],["alkaloids/fusarin-d.yaml","fusarin D"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"]]},{"id":"NCBITaxon:1827","l":"Rhodococcus ","na":8,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]],"b":[["alkaloids/corynecin-iii.yaml","corynecin III"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":8,"nb":1,"a":[["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"],["Sedimenting_Arabinose_Glucose_Saccharomyces_Coculture.html","Sedimenting Arabinose-Glucose Saccharomyces Coculture"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":1,"nb":8,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["amino_acids_and_peptides/ferrichrome-2.yaml","ferrichrome"],["polyketides/2-acetyl-1-3-6-8-tetrahydroxynaphthalene.yaml","2-acetyl-1,3,6,8-tetrahydroxynaphthalene"],["polyketides/kojic-acid.yaml","kojic acid"],["terpenoids/aphidicolin.yaml","aphidicolin"],["unclassified/2-oxocyclopiazonic-acid.yaml","2-oxocyclopiazonic acid"],["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"NCBITaxon:1269","l":"Micrococcus","na":1,"nb":6,"a":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["alkaloids/limazepine-a.yaml","limazepine A"],["alkaloids/limazepine-c.yaml","limazepine C"],["alkaloids/limazepine-d.yaml","limazepine D"],["alkaloids/limazepine-e.yaml","limazepine E"],["alkaloids/limazepine-f.yaml","limazepine F"],["terpenoids/mk-8.yaml","MK-8"]]},{"id":"NCBITaxon:1920","l":"Streptomyces nigrescens","na":1,"nb":6,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["alkaloids/5athq-10a.yaml","5aTHQ-10a"],["alkaloids/5athq-9i.yaml","5aTHQ-9i"],["alkaloids/5athq-9n.yaml","5aTHQ-9n"],["alkaloids/stams-9i.yaml","STAMs-9i"],["alkaloids/stams-9n.yaml","STAMs-9n"],["polyketides/phoslactomycin-b.yaml","phoslactomycin B"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":1,"nb":5,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["alkaloids/aminochelin.yaml","aminochelin"],["alkaloids/azotochelin.yaml","azotochelin"],["alkaloids/protochelin.yaml","protochelin"],["amino_acids_and_peptides/azotobactin-d.yaml","azotobactin D"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":1,"nb":5,"a":[["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/andrimid.yaml","andrimid"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/pantocin-a.yaml","pantocin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:101028","l":"Fusarium pseudograminearum","na":1,"nb":4,"a":[["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["alkaloids/8-oxo-fusatin.yaml","8-oxo-fusatin"],["alkaloids/8-oxo-isopentenyladenine.yaml","8-oxo-isopentenyladenine"],["alkaloids/fusatin.yaml","fusatin"],["alkaloids/fusatinic-acid.yaml","fusatinic acid"]]},{"id":"NCBITaxon:1179","l":"Desmonostoc muscorum","na":1,"nb":4,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["amino_acids_and_peptides/muscoride-a.yaml","muscoride A"],["unclassified/desmamide-a.yaml","desmamide A"],["unclassified/desmamide-b.yaml","desmamide B"],["unclassified/desmamide-c.yaml","desmamide C"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":4,"nb":1,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"],["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":4,"nb":1,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["amino_acids_and_peptides/bacitracin.yaml","bacitracin"]]},{"id":"NCBITaxon:237","l":"Flavobacterium","na":4,"nb":1,"a":[["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"]]},{"id":"NCBITaxon:2745","l":"Halomonas","na":1,"nb":4,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["amino_acids_and_peptides/potashchelin-a.yaml","potashchelin A"],["amino_acids_and_peptides/potashchelin-b.yaml","potashchelin B"],["amino_acids_and_peptides/potashchelin-c.yaml","potashchelin C"],["amino_acids_and_peptides/potashchelin-d.yaml","potashchelin D"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":1,"nb":4,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["unclassified/vacidobactin-a.yaml","vacidobactin A"],["unclassified/vacidobactin-b.yaml","vacidobactin B"],["unclassified/variobactin-a.yaml","variobactin A"],["unclassified/variobactin-b.yaml","variobactin B"]]},{"id":"NCBITaxon:414878","l":"Catenulispora","na":1,"nb":4,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"]],"b":[["polyketides/catenulisporolide-a.yaml","catenulisporolide A"],["polyketides/catenulisporolide-b.yaml","catenulisporolide B"],["polyketides/catenulisporolide-c.yaml","catenulisporolide C"],["polyketides/catenulisporolide-d.yaml","catenulisporolide D"]]},{"id":"NCBITaxon:6239","l":"Caenorhabditis elegans","na":1,"nb":4,"a":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"]],"b":[["alkaloids/biotin.yaml","biotin"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/itaconic-acid.yaml","itaconic acid"],["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":4,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["fatty_acids/galactosylceramide.yaml","α-galactosylceramide"]]},{"id":"CHEBI:15956","l":"biotin","na":3,"nb":1,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"NCBITaxon:1125","l":"Microcystis","na":1,"nb":3,"a":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"]],"b":[["amino_acids_and_peptides/microcystin-lr.yaml","microcystin-LR"],["amino_acids_and_peptides/piricyclamide-7005e1.yaml","piricyclamide 7005E1"],["unclassified/cyanopeptolin.yaml","cyanopeptolin"]]},{"id":"NCBITaxon:1129","l":"Synechococcus","na":1,"nb":3,"a":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]],"b":[["alkaloids/synechobactin-a.yaml","synechobactin A"],["alkaloids/synechobactin-b.yaml","synechobactin B"],["alkaloids/synechobactin-c.yaml","synechobactin C"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":1,"nb":3,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["amino_acids_and_peptides/epidermin.yaml","epidermin"],["amino_acids_and_peptides/epilancin-15x.yaml","epilancin 15x"],["amino_acids_and_peptides/pep5.yaml","pep5"]]},{"id":"NCBITaxon:22","l":"Shewanella","na":3,"nb":1,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Shewanella_Denitrifying_Richness_SynComs.html","Shewanella Denitrifying Richness SynComs"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"NCBITaxon:222","l":"Achromobacter","na":3,"nb":1,"a":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":1,"nb":3,"a":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"]],"b":[["alkaloids/cepaciachelin.yaml","cepaciachelin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["terpenoids/hopene.yaml","hopene"]]},{"id":"NCBITaxon:29442","l":"Pseudomonas tolaasii","na":1,"nb":3,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["unclassified/tolaasin-a.yaml","tolaasin A"],["unclassified/tolaasin-f.yaml","tolaasin F"],["unclassified/tolaasin-i.yaml","tolaasin I"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":3,"nb":1,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"NCBITaxon:34305","l":"Lotus japonicus","na":1,"nb":3,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["amino_acids_and_peptides/linamarin.yaml","linamarin"],["amino_acids_and_peptides/lotaustralin.yaml","lotaustralin"],["terpenoids/lupeol.yaml","lupeol"]]},{"id":"NCBITaxon:380021","l":"Pseudomonas protegens","na":1,"nb":3,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"],["unclassified/pf-5-pyoverdine.yaml","Pf-5 pyoverdine"]]},{"id":"NCBITaxon:3847","l":"Glycine max","na":1,"nb":3,"a":[["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["alkaloids/biotin.yaml","biotin"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]]},{"id":"NCBITaxon:4081","l":"Solanum lycopersicum","na":1,"nb":3,"a":[["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["fatty_acids/falcarindiol.yaml","falcarindiol"],["terpenoids/lycosantalonol.yaml","lycosantalonol"],["terpenoids/phellandrene.yaml","β-phellandrene"]]},{"id":"NCBITaxon:4530","l":"Oryza sativa","na":1,"nb":3,"a":[["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/nonadec-1-ene.yaml","nonadec-1-ene"],["terpenoids/phytocassane.yaml","phytocassane"]]},{"id":"NCBITaxon:547","l":"Enterobacter","na":3,"nb":1,"a":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["amino_acids_and_peptides/andrimid.yaml","andrimid"]]},{"id":"NCBITaxon:587753","l":"Pseudomonas chlororaphis","na":3,"nb":1,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"NCBITaxon:68239","l":"Streptomyces mirabilis strain P8-A","na":1,"nb":3,"a":[["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["alkaloids/azodyrecin-a.yaml","Azodyrecin A"],["alkaloids/azodyrecin-b.yaml","Azodyrecin B"],["alkaloids/azodyrecin-c.yaml","Azodyrecin C"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":1,"nb":3,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"],["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"],["unclassified/telomestatin.yaml","telomestatin"]]},{"id":"NCBITaxon:1091494","l":"Methylotuvimicrobium alcaliphilum 20Z","na":2,"nb":1,"a":[["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:132919","l":"Rhodococcus jostii","na":1,"nb":2,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["amino_acids_and_peptides/lariatin.yaml","lariatin"],["unclassified/rhodochelin.yaml","rhodochelin"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":2,"nb":1,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]]},{"id":"NCBITaxon:1663","l":"Arthrobacter","na":2,"nb":1,"a":[["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["unclassified/ws9326a.yaml","WS9326A"]]},{"id":"NCBITaxon:1696","l":"Brevibacterium","na":2,"nb":1,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["alkaloids/1-6-phenazinedimethanol.yaml","1,6-phenazinedimethanol"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":2,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":2,"nb":1,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"]],"b":[["alkaloids/parabactin.yaml","parabactin"]]},{"id":"NCBITaxon:269797","l":"Methanosarcina barkeri str. Fusaro","na":2,"nb":1,"a":[["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["alkaloids/coenzyme-f430.yaml","coenzyme F430"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":2,"nb":1,"a":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:29305","l":"Streptomyces griseoincarnatus","na":1,"nb":2,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["polyketides/grincamycin.yaml","grincamycin"],["polyketides/resistomycin.yaml","resistomycin"]]},{"id":"NCBITaxon:391619","l":"Phaeobacter inhibens DSM 17395","na":1,"nb":2,"a":[["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"]],"b":[["shikimates_and_phenylpropanoids/hydroxytropodithietic-acid.yaml","hydroxytropodithietic acid"],["shikimates_and_phenylpropanoids/tropodithietic-acid.yaml","tropodithietic acid"]]},{"id":"NCBITaxon:511145","l":"Escherichia coli str. K-12 substr. MG1655","na":2,"nb":1,"a":[["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["unclassified/enterobactin.yaml","enterobactin"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":2,"nb":1,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["unclassified/antimycin-a1b.yaml","antimycin A1B"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":1,"nb":2,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["amino_acids_and_peptides/aerobactin.yaml","aerobactin"],["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:613","l":"Serratia","na":1,"nb":2,"a":[["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["alkaloids/serratiochelin-b.yaml","serratiochelin B"],["alkaloids/serratiochelin-c.yaml","serratiochelin C"]]},{"id":"NCBITaxon:644","l":"Aeromonas hydrophila","na":2,"nb":1,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["amino_acids_and_peptides/amonabactin-p-750.yaml","amonabactin P 750"]]},{"id":"NCBITaxon:67356","l":"Streptomyces resistomycificus","na":1,"nb":2,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["polyketides/resistoflavine.yaml","resistoflavine"],["polyketides/resistomycin.yaml","resistomycin"]]},{"id":"NCBITaxon:68","l":"Lysobacter","na":1,"nb":2,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["unclassified/lysobactin.yaml","lysobactin"],["unclassified/lysocin-e.yaml","lysocin E"]]},{"id":"NCBITaxon:68264","l":"Streptomyces rishiriensis","na":1,"nb":2,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["shikimates_and_phenylpropanoids/coumermycin-a1.yaml","coumermycin A1"],["unclassified/lactonamycin.yaml","lactonamycin"]]},{"id":"NCBITaxon:80866","l":"Delftia acidovorans","na":1,"nb":2,"a":[["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["amino_acids_and_peptides/delftibactin-a.yaml","delftibactin A"],["amino_acids_and_peptides/delftibactin-b.yaml","delftibactin B"]]},{"id":"CHEBI:134612","l":"staphyloferrin B","na":1,"nb":1,"a":[["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"]]},{"id":"CHEBI:32079","l":"pyrrolnitrin","na":1,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"CHEBI:78688","l":"2,4-diacetylphloroglucinol","na":1,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"]]},{"id":"CHEBI:8653","l":"pyocyanine","na":1,"nb":1,"a":[["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["alkaloids/pyocyanine.yaml","pyocyanine"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":1,"nb":1,"a":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["unclassified/rhodochelin.yaml","rhodochelin"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":1,"nb":1,"a":[["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"]],"b":[["alkaloids/molybdenum-cofactor.yaml","molybdenum cofactor"]]},{"id":"NCBITaxon:1142","l":"Synechocystis","na":1,"nb":1,"a":[["Dairy_Wastewater_Algal_Cyanobacterial_Cultivation_Panel.html","Dairy Wastewater Algal-Cyanobacterial Cultivation Panel"]],"b":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]]},{"id":"NCBITaxon:1165","l":"Anabaena cylindrica","na":1,"nb":1,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["amino_acids_and_peptides/anachelin.yaml","anachelin"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":1,"nb":1,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["amino_acids_and_peptides/salivaricin-d.yaml","salivaricin D"]]},{"id":"NCBITaxon:135461","l":"Bacillus subtilis subsp. subtilis","na":1,"nb":1,"a":[["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["unclassified/fengycin.yaml","fengycin"]]},{"id":"NCBITaxon:1501433","l":"Kamptonema","na":1,"nb":1,"a":[["Microalgae_Cyanobacteria_Bioactive_Peptide_Consortia.html","Microalgae-Cyanobacteria Bioactive Peptide Consortia"]],"b":[["amino_acids_and_peptides/landornamide-a.yaml","landornamide A"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":1,"nb":1,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["amino_acids_and_peptides/cutimycin.yaml","cutimycin"]]},{"id":"NCBITaxon:226","l":"Alteromonas","na":1,"nb":1,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["unclassified/marinostatin.yaml","marinostatin"]]},{"id":"NCBITaxon:2433","l":"Roseobacter","na":1,"nb":1,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["shikimates_and_phenylpropanoids/tropodithietic-acid.yaml","tropodithietic acid"]]},{"id":"NCBITaxon:4097","l":"Nicotiana tabacum","na":1,"nb":1,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"]],"b":[["terpenoids/capsidiol.yaml","capsidiol"]]},{"id":"NCBITaxon:4547","l":"Saccharum officinarum","na":1,"nb":1,"a":[["SynCom_MetG2_Rhizobacteria_Sugarcane_Stress_Resilience.html","SynCom MetG2 Rhizobacteria Sugarcane Stress Resilience"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"]]},{"id":"NCBITaxon:47251","l":"Leptolyngbya","na":1,"nb":1,"a":[["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"]]},{"id":"NCBITaxon:4751","l":"Fungi","na":1,"nb":1,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["shikimates_and_phenylpropanoids/atromentin.yaml","atromentin"]]},{"id":"NCBITaxon:5094","l":"Talaromyces","na":1,"nb":1,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["unclassified/chrodrimanin-b.yaml","chrodrimanin B"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":1,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:61624","l":"Paenibacillus mucilaginosus","na":1,"nb":1,"a":[["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["amino_acids_and_peptides/bacillopaline.yaml","bacillopaline"]]},{"id":"NCBITaxon:648","l":"Aeromonas caviae","na":1,"nb":1,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:67372","l":"Streptomyces variabilis","na":1,"nb":1,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["polyketides/resistomycin.yaml","resistomycin"]]},{"id":"NCBITaxon:68274","l":"Streptomyces tauricus","na":1,"nb":1,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["polyketides/cinerubin-b.yaml","cinerubin B"]]},{"id":"NCBITaxon:86265","l":"Pseudomonas thivervalensis","na":1,"nb":1,"a":[["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"]],"b":[["amino_acids_and_peptides/histicorrugatin.yaml","histicorrugatin"]]},{"id":"NCBITaxon:96241","l":"Bacillus spizizenii","na":1,"nb":1,"a":[["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"]],"b":[["amino_acids_and_peptides/entianin.yaml","entianin"]]},{"id":"NCBITaxon:986","l":"Flavobacterium johnsoniae","na":1,"nb":1,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["polyketides/flexirubin.yaml","flexirubin"]]}]} \ No newline at end of file +{"a":"CommunityMech","b":"NaturalProductMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","NaturalProductMech":"https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/natural_products/"},"n":128,"by":{"NCBITaxon":123,"CHEBI":5},"terms":[{"id":"NCBITaxon:286","l":"Pseudomonas","na":18,"nb":41,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"]],"b":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["alkaloids/tioguanine.yaml","tioguanine"],["amino_acids_and_peptides/napsamycin-c.yaml","napsamycin C"],["amino_acids_and_peptides/napsamycin-d.yaml","napsamycin D"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":16,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["amino_acids_and_peptides/ericin-s.yaml","ericin S"],["amino_acids_and_peptides/iturin.yaml","iturin"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":14,"nb":24,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":11,"nb":13,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["unclassified/bananamide-d.yaml","bananamide D"],["unclassified/bananamide-e.yaml","bananamide E"],["unclassified/bananamide-f.yaml","bananamide F"],["unclassified/bananamide-g.yaml","bananamide G"],["unclassified/lokisin.yaml","lokisin"],["unclassified/pseudodesmin-a.yaml","pseudodesmin A"]]},{"id":"NCBITaxon:1386","l":"Bacillus","na":16,"nb":9,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bogorol-a.yaml","bogorol A"],["amino_acids_and_peptides/koranimine.yaml","koranimine"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"],["amino_acids_and_peptides/rhizocticin-a.yaml","rhizocticin A"],["polyketides/difficidin.yaml","difficidin"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":9,"nb":12,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:492670","l":"Bacillus velezensis","na":8,"nb":8,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["polyketides/bacillaene.yaml","bacillaene"],["polyketides/difficidin.yaml","difficidin"],["polyketides/macrolactin-h.yaml","macrolactin H"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":6,"nb":116,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["alkaloids/altemicidin.yaml","altemicidin"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"],["alkaloids/aurachin-ss.yaml","aurachin SS"],["alkaloids/berninamycin-j.yaml","berninamycin J"],["alkaloids/berninamycin-k.yaml","berninamycin K"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":6,"nb":27,"a":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["alkaloids/pseudomonine.yaml","pseudomonine"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyreudione-c.yaml","pyreudione C"],["alkaloids/quinolobactin.yaml","quinolobactin"]]},{"id":"NCBITaxon:1883","l":"Streptomyces","na":5,"nb":438,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["Wheat_Consortium_C6.html","Wheat Synthetic Consortium C6"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/7-prenylisatin.yaml","7-prenylisatin"],["alkaloids/9-methylstreptimidone.yaml","9-methylstreptimidone"],["alkaloids/anisomycin.yaml","(−)-anisomycin"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":9,"nb":5,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]],"b":[["alkaloids/promysalin.yaml","promysalin"],["polyketides/pseudopyronine-a.yaml","pseudopyronine A"],["polyketides/pseudopyronine-b.yaml","pseudopyronine B"],["unclassified/putisolvin-iii.yaml","putisolvin III"],["unclassified/putisolvin-v.yaml","putisolvin V"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":7,"nb":4,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["alkaloids/zwittermicin-a.yaml","zwittermicin A"],["amino_acids_and_peptides/livipeptin.yaml","Livipeptin"],["carbohydrates/tunicamycin.yaml","tunicamycin"],["unclassified/cereulide.yaml","cereulide"]]},{"id":"NCBITaxon:32008","l":"Burkholderia","na":4,"nb":6,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["polyketides/necroxime-a.yaml","necroxime A"],["polyketides/necroxime-c.yaml","necroxime C"],["polyketides/necroxime-d.yaml","necroxime D"],["polyketides/thailanstatin-a.yaml","thailanstatin A"],["unclassified/necroxime-b.yaml","necroxime B"],["unclassified/spliceostatin.yaml","spliceostatin"]]},{"id":"NCBITaxon:5052","l":"Aspergillus","na":3,"nb":18,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["alkaloids/psychrophilin-e.yaml","psychrophilin E"],["alkaloids/terrequinone-a.yaml","terrequinone A"],["fatty_acids/himeic-acid-a.yaml","himeic acid A"],["polyketides/asperlin.yaml","(+)-asperlin"],["polyketides/geodin.yaml","geodin"],["polyketides/mycophenolic-acid.yaml","mycophenolic acid"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":3,"nb":11,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["amino_acids_and_peptides/ferrichrome.yaml","ferrichrome"],["polyketides/1-2-3-5-10-tetrahydroxy-7-methoxy-4-oxo-1-2-3-4-tetrahydroanthracen-2-yl-pentane.yaml","1-(2,3,5,10-tetrahydroxy-7-methoxy-4-oxo-1,2,3,4-tetrahydroanthracen-2-yl)pentane-2,4-dione"],["polyketides/azanigerone-a.yaml","azanigerone A"],["polyketides/campyrone-b.yaml","campyrone B"],["polyketides/desmethyl-tan-1612.yaml","desmethyl TAN-1612"],["polyketides/fumonisin-b2.yaml","fumonisin B2"]]},{"id":"NCBITaxon:5544","l":"Trichoderma harzianum","na":5,"nb":3,"a":[["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"],["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"],["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["polyketides/1-2-dehydropenicillide.yaml","1,2-dehydropenicillide"],["polyketides/harziphilone.yaml","harziphilone"],["unclassified/harzianopyridone.yaml","harzianopyridone"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":4,"nb":3,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]],"b":[["unclassified/leuvalin.yaml","leuvalin"],["unclassified/mutanocyclin.yaml","mutanocyclin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":4,"nb":3,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"],["amino_acids_and_peptides/lacticin-z.yaml","lacticin Z"],["amino_acids_and_peptides/nisin-a.yaml","nisin A"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":3,"nb":3,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["amino_acids_and_peptides/polymyxin-b.yaml","polymyxin B"],["amino_acids_and_peptides/polymyxin.yaml","polymyxin"],["unclassified/fusaricidin-b.yaml","fusaricidin B"]]},{"id":"NCBITaxon:5507","l":"Fusarium oxysporum","na":2,"nb":11,"a":[["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["alkaloids/fusaric-acid.yaml","fusaric acid"],["polyketides/bikaverin.yaml","bikaverin"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"],["polyketides/fumonisin-c1.yaml","Fumonisin C1"],["polyketides/fumonisin-c2.yaml","Fumonisin C2"],["polyketides/fumonisin-c3.yaml","Fumonisin C3"]]},{"id":"NCBITaxon:3702","l":"Arabidopsis thaliana","na":2,"nb":10,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/itaconic-acid.yaml","itaconic acid"],["terpenoids/ent-quiannulatene.yaml","(-)-ent-quiannulatene"],["terpenoids/euphol.yaml","euphol"],["terpenoids/marneral.yaml","marneral"],["terpenoids/thaliandiol.yaml","thaliandiol"]]},{"id":"NCBITaxon:4577","l":"Zea mays","na":2,"nb":6,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"]],"b":[["alkaloids/dimboa.yaml","DIMBOA"],["polyketides/emodin.yaml","emodin"],["terpenoids/zealexin-a1.yaml","zealexin A1"],["terpenoids/zealexin-b3.yaml","zealexin B3"],["terpenoids/zealexin-c2.yaml","zealexin C2"],["unclassified/aflatoxin.yaml","aflatoxin"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":5,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"],["unclassified/leuvalin.yaml","leuvalin"],["unclassified/phevalin.yaml","phevalin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:1521","l":"Ruminiclostridium cellulolyticum","na":4,"nb":2,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["alkaloids/closthioamide.yaml","closthioamide"],["amino_acids_and_peptides/rc-aip1.yaml","Rc-AIP1"]]},{"id":"NCBITaxon:1889","l":"Streptomyces ambofaciens","na":2,"nb":4,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["alkaloids/congocidine.yaml","congocidine"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["polyketides/spiramycin.yaml","spiramycin"],["polyketides/stambomycin-a.yaml","stambomycin A"]]},{"id":"NCBITaxon:32049","l":"Picosynechococcus sp. PCC 7002","na":2,"nb":4,"a":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"]],"b":[["alkaloids/synechobactin-a.yaml","synechobactin A"],["alkaloids/synechobactin-b.yaml","synechobactin B"],["alkaloids/synechobactin-c.yaml","synechobactin C"],["fatty_acids/nonadec-1-ene.yaml","nonadec-1-ene"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":3,"nb":2,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"],["carbohydrates/oxetanocin-a.yaml","oxetanocin A"]]},{"id":"NCBITaxon:149698","l":"Massilia","na":3,"nb":2,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]],"b":[["unclassified/empedopeptin.yaml","empedopeptin"],["unclassified/massiliachelin.yaml","Massiliachelin"]]},{"id":"NCBITaxon:379","l":"Rhizobium","na":3,"nb":2,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["alkaloids/sesbanimide-c.yaml","sesbanimide C"],["amino_acids_and_peptides/syringolin-a-2.yaml","syringolin A"]]},{"id":"NCBITaxon:44249","l":"Paenibacillus","na":3,"nb":2,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["alkaloids/paenilamicin.yaml","paenilamicin"],["unclassified/paenibacterin.yaml","paenibacterin"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":3,"nb":2,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["terpenoids/mk-8.yaml","MK-8"]]},{"id":"NCBITaxon:55080","l":"Brevibacillus","na":3,"nb":2,"a":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"]],"b":[["alkaloids/ulbactin-f.yaml","ulbactin F"],["alkaloids/ulbactin-g.yaml","ulbactin G"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":2,"nb":2,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]],"b":[["alkaloids/biotin.yaml","biotin"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":2,"nb":2,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["unclassified/andalusicin-a.yaml","andalusicin A"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":2,"nb":2,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["alkaloids/agrobactin.yaml","agrobactin"],["amino_acids_and_peptides/aztreonam.yaml","aztreonam"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":2,"nb":2,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["alkaloids/acinetobactin.yaml","acinetobactin"],["amino_acids_and_peptides/fimsbactin-a.yaml","fimsbactin A"]]},{"id":"NCBITaxon:1873","l":"Micromonospora","na":1,"nb":49,"a":[["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"]],"b":[["alkaloids/diazaquinomycin-h.yaml","diazaquinomycin H"],["alkaloids/diazaquinomycin-j.yaml","diazaquinomycin J"],["alkaloids/diazepinomicin.yaml","diazepinomicin"],["alkaloids/microansamycin-i.yaml","microansamycin I"],["alkaloids/staurosporine.yaml","staurosporine"],["alkaloids/streptonigrin.yaml","streptonigrin"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":1,"nb":30,"a":[["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["amino_acids_and_peptides/ditryptophenaline.yaml","(-)-ditryptophenaline"],["amino_acids_and_peptides/imizoquin-a.yaml","imizoquin A"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":1,"nb":23,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/melanin.yaml","melanin"],["alkaloids/undecylprodigiosin.yaml","undecylprodigiosin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/sapb.yaml","SapB"]]},{"id":"NCBITaxon:5073","l":"Penicillium","na":1,"nb":20,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["alkaloids/citridone-a.yaml","citridone A"],["alkaloids/citridone-b-2.yaml","citridone B'"],["alkaloids/citridone-b.yaml","citridone B"],["alkaloids/communesin-b.yaml","communesin B"],["alkaloids/communesin-c.yaml","communesin C"],["alkaloids/communesin-d.yaml","communesin D"]]},{"id":"NCBITaxon:69488","l":"Penicillium simplicissimum","na":1,"nb":14,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"]],"b":[["polyketides/citreoviridin.yaml","citreoviridin"],["unclassified/andrastin-a.yaml","andrastin A"],["unclassified/okaramine-b.yaml","okaramine B"],["unclassified/okaramine-d.yaml","okaramine D"],["unclassified/paraherquamide.yaml","paraherquamide"],["unclassified/paraherquonin.yaml","paraherquonin"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":1,"nb":13,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/congocidine.yaml","congocidine"],["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]]},{"id":"NCBITaxon:1163","l":"Anabaena","na":1,"nb":11,"a":[["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"]],"b":[["alkaloids/anatoxin-a.yaml","anatoxin-a"],["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"],["alkaloids/saxitoxin.yaml","saxitoxin"],["alkaloids/schizokinen.yaml","schizokinen"],["amino_acids_and_peptides/anabaenopeptin.yaml","anabaenopeptin"],["amino_acids_and_peptides/anacyclamide-a10.yaml","anacyclamide A10"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":1,"nb":10,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["amino_acids_and_peptides/lipopeptide-8d1-1.yaml","lipopeptide 8D1-1"],["amino_acids_and_peptides/lipopeptide-8d1-2.yaml","lipopeptide 8D1-2"],["carbohydrates/amicetin.yaml","amicetin"],["carbohydrates/streptothricin-c.yaml","streptothricin C"],["carbohydrates/streptothricin-d.yaml","streptothricin D"],["carbohydrates/streptothricin-e.yaml","streptothricin E"]]},{"id":"NCBITaxon:1988","l":"Actinomadura","na":1,"nb":9,"a":[["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"]],"b":[["alkaloids/k-252a.yaml","K-252a"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["carbohydrates/2-chloropentostatin.yaml","2'-chloropentostatin"],["polyketides/actinospirol-a.yaml","actinospirol A"],["polyketides/actinospirol-b.yaml","actinospirol B"],["polyketides/maduralactomycin-a.yaml","maduralactomycin A"]]},{"id":"NCBITaxon:117187","l":"Fusarium verticillioides","na":1,"nb":8,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]],"b":[["alkaloids/dihydrofusarin-c.yaml","dihydrofusarin C"],["alkaloids/epi-fusarin-c.yaml","epi-fusarin C"],["alkaloids/fusaric-acid.yaml","fusaric acid"],["alkaloids/fusarin-c.yaml","fusarin C"],["alkaloids/fusarin-d.yaml","fusarin D"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"]]},{"id":"NCBITaxon:1827","l":"Rhodococcus","na":8,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]],"b":[["alkaloids/corynecin-iii.yaml","corynecin III"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":8,"nb":1,"a":[["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"],["Sedimenting_Arabinose_Glucose_Saccharomyces_Coculture.html","Sedimenting Arabinose-Glucose Saccharomyces Coculture"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":1,"nb":8,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["amino_acids_and_peptides/ferrichrome-2.yaml","ferrichrome"],["polyketides/2-acetyl-1-3-6-8-tetrahydroxynaphthalene.yaml","2-acetyl-1,3,6,8-tetrahydroxynaphthalene"],["polyketides/kojic-acid.yaml","kojic acid"],["terpenoids/aphidicolin.yaml","aphidicolin"],["unclassified/2-oxocyclopiazonic-acid.yaml","2-oxocyclopiazonic acid"],["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"NCBITaxon:1269","l":"Micrococcus","na":1,"nb":6,"a":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["alkaloids/limazepine-a.yaml","limazepine A"],["alkaloids/limazepine-c.yaml","limazepine C"],["alkaloids/limazepine-d.yaml","limazepine D"],["alkaloids/limazepine-e.yaml","limazepine E"],["alkaloids/limazepine-f.yaml","limazepine F"],["terpenoids/mk-8.yaml","MK-8"]]},{"id":"NCBITaxon:1920","l":"Streptomyces nigrescens","na":1,"nb":6,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["alkaloids/5athq-10a.yaml","5aTHQ-10a"],["alkaloids/5athq-9i.yaml","5aTHQ-9i"],["alkaloids/5athq-9n.yaml","5aTHQ-9n"],["alkaloids/stams-9i.yaml","STAMs-9i"],["alkaloids/stams-9n.yaml","STAMs-9n"],["polyketides/phoslactomycin-b.yaml","phoslactomycin B"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":1,"nb":5,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["alkaloids/aminochelin.yaml","aminochelin"],["alkaloids/azotochelin.yaml","azotochelin"],["alkaloids/protochelin.yaml","protochelin"],["amino_acids_and_peptides/azotobactin-d.yaml","azotobactin D"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":1,"nb":5,"a":[["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/andrimid.yaml","andrimid"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/pantocin-a.yaml","pantocin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:101028","l":"Fusarium pseudograminearum","na":1,"nb":4,"a":[["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["alkaloids/8-oxo-fusatin.yaml","8-oxo-fusatin"],["alkaloids/8-oxo-isopentenyladenine.yaml","8-oxo-isopentenyladenine"],["alkaloids/fusatin.yaml","fusatin"],["alkaloids/fusatinic-acid.yaml","fusatinic acid"]]},{"id":"NCBITaxon:1179","l":"Desmonostoc muscorum","na":1,"nb":4,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["amino_acids_and_peptides/muscoride-a.yaml","muscoride A"],["unclassified/desmamide-a.yaml","desmamide A"],["unclassified/desmamide-b.yaml","desmamide B"],["unclassified/desmamide-c.yaml","desmamide C"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":4,"nb":1,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"],["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":4,"nb":1,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["amino_acids_and_peptides/bacitracin.yaml","bacitracin"]]},{"id":"NCBITaxon:237","l":"Flavobacterium","na":4,"nb":1,"a":[["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"]]},{"id":"NCBITaxon:2745","l":"Halomonas","na":1,"nb":4,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["amino_acids_and_peptides/potashchelin-a.yaml","potashchelin A"],["amino_acids_and_peptides/potashchelin-b.yaml","potashchelin B"],["amino_acids_and_peptides/potashchelin-c.yaml","potashchelin C"],["amino_acids_and_peptides/potashchelin-d.yaml","potashchelin D"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":1,"nb":4,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["unclassified/vacidobactin-a.yaml","vacidobactin A"],["unclassified/vacidobactin-b.yaml","vacidobactin B"],["unclassified/variobactin-a.yaml","variobactin A"],["unclassified/variobactin-b.yaml","variobactin B"]]},{"id":"NCBITaxon:414878","l":"Catenulispora","na":1,"nb":4,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"]],"b":[["polyketides/catenulisporolide-a.yaml","catenulisporolide A"],["polyketides/catenulisporolide-b.yaml","catenulisporolide B"],["polyketides/catenulisporolide-c.yaml","catenulisporolide C"],["polyketides/catenulisporolide-d.yaml","catenulisporolide D"]]},{"id":"NCBITaxon:6239","l":"Caenorhabditis elegans","na":1,"nb":4,"a":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"]],"b":[["alkaloids/biotin.yaml","biotin"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/itaconic-acid.yaml","itaconic acid"],["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":4,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["fatty_acids/galactosylceramide.yaml","α-galactosylceramide"]]},{"id":"CHEBI:15956","l":"biotin","na":3,"nb":1,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"NCBITaxon:1125","l":"Microcystis","na":1,"nb":3,"a":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"]],"b":[["amino_acids_and_peptides/microcystin-lr.yaml","microcystin-LR"],["amino_acids_and_peptides/piricyclamide-7005e1.yaml","piricyclamide 7005E1"],["unclassified/cyanopeptolin.yaml","cyanopeptolin"]]},{"id":"NCBITaxon:1129","l":"Synechococcus","na":1,"nb":3,"a":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]],"b":[["alkaloids/synechobactin-a.yaml","synechobactin A"],["alkaloids/synechobactin-b.yaml","synechobactin B"],["alkaloids/synechobactin-c.yaml","synechobactin C"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":1,"nb":3,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["amino_acids_and_peptides/epidermin.yaml","epidermin"],["amino_acids_and_peptides/epilancin-15x.yaml","epilancin 15x"],["amino_acids_and_peptides/pep5.yaml","pep5"]]},{"id":"NCBITaxon:22","l":"Shewanella","na":3,"nb":1,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Shewanella_Denitrifying_Richness_SynComs.html","Shewanella Denitrifying Richness SynComs"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"NCBITaxon:222","l":"Achromobacter","na":3,"nb":1,"a":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":1,"nb":3,"a":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"]],"b":[["alkaloids/cepaciachelin.yaml","cepaciachelin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["terpenoids/hopene.yaml","hopene"]]},{"id":"NCBITaxon:29442","l":"Pseudomonas tolaasii","na":1,"nb":3,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["unclassified/tolaasin-a.yaml","tolaasin A"],["unclassified/tolaasin-f.yaml","tolaasin F"],["unclassified/tolaasin-i.yaml","tolaasin I"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":3,"nb":1,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"NCBITaxon:34305","l":"Lotus japonicus","na":1,"nb":3,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["amino_acids_and_peptides/linamarin.yaml","linamarin"],["amino_acids_and_peptides/lotaustralin.yaml","lotaustralin"],["terpenoids/lupeol.yaml","lupeol"]]},{"id":"NCBITaxon:380021","l":"Pseudomonas protegens","na":1,"nb":3,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"],["unclassified/pf-5-pyoverdine.yaml","Pf-5 pyoverdine"]]},{"id":"NCBITaxon:3847","l":"Glycine max","na":1,"nb":3,"a":[["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["alkaloids/biotin.yaml","biotin"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]]},{"id":"NCBITaxon:4081","l":"Solanum lycopersicum","na":1,"nb":3,"a":[["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["fatty_acids/falcarindiol.yaml","falcarindiol"],["terpenoids/lycosantalonol.yaml","lycosantalonol"],["terpenoids/phellandrene.yaml","β-phellandrene"]]},{"id":"NCBITaxon:4530","l":"Oryza sativa","na":1,"nb":3,"a":[["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/nonadec-1-ene.yaml","nonadec-1-ene"],["terpenoids/phytocassane.yaml","phytocassane"]]},{"id":"NCBITaxon:547","l":"Enterobacter","na":3,"nb":1,"a":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["amino_acids_and_peptides/andrimid.yaml","andrimid"]]},{"id":"NCBITaxon:587753","l":"Pseudomonas chlororaphis","na":3,"nb":1,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"NCBITaxon:68239","l":"Streptomyces mirabilis","na":1,"nb":3,"a":[["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["alkaloids/azodyrecin-a.yaml","Azodyrecin A"],["alkaloids/azodyrecin-b.yaml","Azodyrecin B"],["alkaloids/azodyrecin-c.yaml","Azodyrecin C"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":1,"nb":3,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"],["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"],["unclassified/telomestatin.yaml","telomestatin"]]},{"id":"NCBITaxon:1091494","l":"Methylotuvimicrobium alcaliphilum 20Z","na":2,"nb":1,"a":[["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:132919","l":"Rhodococcus jostii","na":1,"nb":2,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["amino_acids_and_peptides/lariatin.yaml","lariatin"],["unclassified/rhodochelin.yaml","rhodochelin"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":2,"nb":1,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]]},{"id":"NCBITaxon:1663","l":"Arthrobacter","na":2,"nb":1,"a":[["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["unclassified/ws9326a.yaml","WS9326A"]]},{"id":"NCBITaxon:1696","l":"Brevibacterium","na":2,"nb":1,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["alkaloids/1-6-phenazinedimethanol.yaml","1,6-phenazinedimethanol"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":2,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":2,"nb":1,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"]],"b":[["alkaloids/parabactin.yaml","parabactin"]]},{"id":"NCBITaxon:269797","l":"Methanosarcina barkeri str. Fusaro","na":2,"nb":1,"a":[["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["alkaloids/coenzyme-f430.yaml","coenzyme F430"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":2,"nb":1,"a":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:29305","l":"Streptomyces griseoincarnatus","na":1,"nb":2,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["polyketides/grincamycin.yaml","grincamycin"],["polyketides/resistomycin.yaml","resistomycin"]]},{"id":"NCBITaxon:391619","l":"Phaeobacter inhibens DSM 17395","na":1,"nb":2,"a":[["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"]],"b":[["shikimates_and_phenylpropanoids/hydroxytropodithietic-acid.yaml","hydroxytropodithietic acid"],["shikimates_and_phenylpropanoids/tropodithietic-acid.yaml","tropodithietic acid"]]},{"id":"NCBITaxon:511145","l":"Escherichia coli str. K-12 substr. MG1655","na":2,"nb":1,"a":[["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["unclassified/enterobactin.yaml","enterobactin"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":2,"nb":1,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["unclassified/antimycin-a1b.yaml","antimycin A1B"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":1,"nb":2,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["amino_acids_and_peptides/aerobactin.yaml","aerobactin"],["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:613","l":"Serratia","na":1,"nb":2,"a":[["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["alkaloids/serratiochelin-b.yaml","serratiochelin B"],["alkaloids/serratiochelin-c.yaml","serratiochelin C"]]},{"id":"NCBITaxon:644","l":"Aeromonas hydrophila","na":2,"nb":1,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["amino_acids_and_peptides/amonabactin-p-750.yaml","amonabactin P 750"]]},{"id":"NCBITaxon:67356","l":"Streptomyces resistomycificus","na":1,"nb":2,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["polyketides/resistoflavine.yaml","resistoflavine"],["polyketides/resistomycin.yaml","resistomycin"]]},{"id":"NCBITaxon:68","l":"Lysobacter","na":1,"nb":2,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["unclassified/lysobactin.yaml","lysobactin"],["unclassified/lysocin-e.yaml","lysocin E"]]},{"id":"NCBITaxon:68264","l":"Streptomyces rishiriensis","na":1,"nb":2,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["shikimates_and_phenylpropanoids/coumermycin-a1.yaml","coumermycin A1"],["unclassified/lactonamycin.yaml","lactonamycin"]]},{"id":"NCBITaxon:80866","l":"Delftia acidovorans","na":1,"nb":2,"a":[["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["amino_acids_and_peptides/delftibactin-a.yaml","delftibactin A"],["amino_acids_and_peptides/delftibactin-b.yaml","delftibactin B"]]},{"id":"CHEBI:134612","l":"staphyloferrin B","na":1,"nb":1,"a":[["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"]]},{"id":"CHEBI:32079","l":"pyrrolnitrin","na":1,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"CHEBI:78688","l":"2,4-diacetylphloroglucinol","na":1,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"]]},{"id":"CHEBI:8653","l":"pyocyanine","na":1,"nb":1,"a":[["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["alkaloids/pyocyanine.yaml","pyocyanine"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":1,"nb":1,"a":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["unclassified/rhodochelin.yaml","rhodochelin"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":1,"nb":1,"a":[["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"]],"b":[["alkaloids/molybdenum-cofactor.yaml","molybdenum cofactor"]]},{"id":"NCBITaxon:1142","l":"Synechocystis","na":1,"nb":1,"a":[["Dairy_Wastewater_Algal_Cyanobacterial_Cultivation_Panel.html","Dairy Wastewater Algal-Cyanobacterial Cultivation Panel"]],"b":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]]},{"id":"NCBITaxon:1165","l":"Anabaena cylindrica","na":1,"nb":1,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["amino_acids_and_peptides/anachelin.yaml","anachelin"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":1,"nb":1,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["amino_acids_and_peptides/salivaricin-d.yaml","salivaricin D"]]},{"id":"NCBITaxon:135461","l":"Bacillus subtilis subsp. subtilis","na":1,"nb":1,"a":[["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["unclassified/fengycin.yaml","fengycin"]]},{"id":"NCBITaxon:1501433","l":"Kamptonema","na":1,"nb":1,"a":[["Microalgae_Cyanobacteria_Bioactive_Peptide_Consortia.html","Microalgae-Cyanobacteria Bioactive Peptide Consortia"]],"b":[["amino_acids_and_peptides/landornamide-a.yaml","landornamide A"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":1,"nb":1,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["amino_acids_and_peptides/cutimycin.yaml","cutimycin"]]},{"id":"NCBITaxon:226","l":"Alteromonas","na":1,"nb":1,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["unclassified/marinostatin.yaml","marinostatin"]]},{"id":"NCBITaxon:2433","l":"Roseobacter","na":1,"nb":1,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["shikimates_and_phenylpropanoids/tropodithietic-acid.yaml","tropodithietic acid"]]},{"id":"NCBITaxon:4097","l":"Nicotiana tabacum","na":1,"nb":1,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"]],"b":[["terpenoids/capsidiol.yaml","capsidiol"]]},{"id":"NCBITaxon:4547","l":"Saccharum officinarum","na":1,"nb":1,"a":[["SynCom_MetG2_Rhizobacteria_Sugarcane_Stress_Resilience.html","SynCom MetG2 Rhizobacteria Sugarcane Stress Resilience"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"]]},{"id":"NCBITaxon:47251","l":"Leptolyngbya","na":1,"nb":1,"a":[["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"]]},{"id":"NCBITaxon:4751","l":"Fungi","na":1,"nb":1,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["shikimates_and_phenylpropanoids/atromentin.yaml","atromentin"]]},{"id":"NCBITaxon:5094","l":"Talaromyces","na":1,"nb":1,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["unclassified/chrodrimanin-b.yaml","chrodrimanin B"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":1,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:61624","l":"Paenibacillus mucilaginosus","na":1,"nb":1,"a":[["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["amino_acids_and_peptides/bacillopaline.yaml","bacillopaline"]]},{"id":"NCBITaxon:648","l":"Aeromonas caviae","na":1,"nb":1,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:67372","l":"Streptomyces variabilis","na":1,"nb":1,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["polyketides/resistomycin.yaml","resistomycin"]]},{"id":"NCBITaxon:68274","l":"Streptomyces tauricus","na":1,"nb":1,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["polyketides/cinerubin-b.yaml","cinerubin B"]]},{"id":"NCBITaxon:86265","l":"Pseudomonas thivervalensis","na":1,"nb":1,"a":[["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"]],"b":[["amino_acids_and_peptides/histicorrugatin.yaml","histicorrugatin"]]},{"id":"NCBITaxon:96241","l":"Bacillus spizizenii","na":1,"nb":1,"a":[["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"]],"b":[["amino_acids_and_peptides/entianin.yaml","entianin"]]},{"id":"NCBITaxon:986","l":"Flavobacterium johnsoniae","na":1,"nb":1,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["polyketides/flexirubin.yaml","flexirubin"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/CommunityMech--ProteinTraitsMech.json b/assets/fleet/edges/CommunityMech--ProteinTraitsMech.json index dee2124..3454ea5 100644 --- a/assets/fleet/edges/CommunityMech--ProteinTraitsMech.json +++ b/assets/fleet/edges/CommunityMech--ProteinTraitsMech.json @@ -1 +1 @@ -{"a":"CommunityMech","b":"ProteinTraitsMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record="},"n":689,"by":{"CHEBI":276,"NCBITaxon":226,"GO":186,"UBERON":1},"terms":[{"id":"CHEBI:30089","l":"acetate","na":78,"nb":302,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"]],"b":[["EC%3A1.1.1.318","eugenol synthase"],["EC%3A1.1.1.319","isoeugenol synthase"],["EC%3A1.13.11.50","acetylacetone-cleaving enzyme"],["EC%3A1.13.12.4","lactate 2-monooxygenase"],["EC%3A1.14.13.54","ketosteroid monooxygenase"],["EC%3A1.14.14.19","steroid 17alpha-monooxygenase"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":75,"nb":1616,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]],"b":[["EC%3A1.1.1.170","3beta-hydroxysteroid-4alpha-carboxylate 3-dehydrogenase (decarboxylating)"],["EC%3A1.1.1.262","4-hydroxythreonine-4-phosphate dehydrogenase"],["EC%3A1.1.1.276","serine 3-dehydrogenase (NADP(+))"],["EC%3A1.1.1.286","isocitrate--homoisocitrate dehydrogenase"],["EC%3A1.1.1.305","UDP-glucuronic acid oxidase (UDP-4-keto-hexauronic acid decarboxylating)"],["EC%3A1.1.1.343","phosphogluconate dehydrogenase (NAD(+)-dependent, decarboxylating)"]]},{"id":"GO:0015979","l":"photosynthesis","na":44,"nb":146,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["GO%3A0015979","photosynthesis"],["NCBIfam%3ATIGR01337","allophycocyanin subunit beta"],["NCBIfam%3ATIGR03056","alpha/beta fold hydrolase BchO"],["NCBIfam%3ANF013497","Apocytochrome F, C-terminal"],["NCBIfam%3ANF014391","Bacteriochlorophyll A protein"],["NCBIfam%3ANF058502","C-phycocyanin alpha-cysteine-84 phycocyanobilin lyase subunit CpcE"]]},{"id":"GO:0015948","l":"methanogenesis","na":44,"nb":82,"a":[["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"]],"b":[["GO%3A0019385","methanogenesis, from acetate"],["GO%3A0019386","methanogenesis, from carbon dioxide"],["GO%3A0019387","methanogenesis, from methanol"],["GO%3A0015948","methanogenesis"],["proteintraitsmech%3ASEED_SUBSYSTEM_Methanogenesis","Methanogenesis"],["NCBIfam%3ATIGR03957","5,10-methenyltetrahydromethanopterin hydrogenase cofactor biosynthesis protein HmdB"]]},{"id":"CHEBI:18276","l":"dihydrogen","na":58,"nb":42,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"]],"b":[["EC%3A1.12.1.2","hydrogen dehydrogenase"],["EC%3A1.12.1.3","hydrogen dehydrogenase (NADP(+))"],["EC%3A1.12.1.4","hydrogenase (NAD(+), ferredoxin)"],["EC%3A1.12.1.5","hydrogen dehydrogenase [NAD(P)(+)]"],["EC%3A1.12.2.1","cytochrome-c3 hydrogenase"],["EC%3A1.12.5.1","hydrogen:quinone oxidoreductase"]]},{"id":"GO:0015977","l":"carbon fixation","na":33,"nb":30,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["GO%3A0009760","C4 photosynthesis"],["GO%3A0009761","CAM photosynthesis"],["GO%3A0043427","carbon fixation by 3-hydroxypropionate cycle"],["GO%3A0030634","carbon fixation by acetyl-CoA pathway"],["GO%3A0015977","carbon fixation"],["GO%3A0019643","reductive tricarboxylic acid cycle"]]},{"id":"CHEBI:17632","l":"nitrate","na":28,"nb":40,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["EC%3A1.14.12.17","nitric oxide dioxygenase"],["EC%3A1.7.1.1","nitrate reductase (NADH)"],["EC%3A1.7.1.2","nitrate reductase [NAD(P)H]"],["EC%3A1.7.1.3","nitrate reductase (NADPH)"],["EC%3A1.7.5.1","nitrate reductase (quinone)"],["EC%3A1.7.6.1","nitrite dismutase"]]},{"id":"CHEBI:15379","l":"dioxygen","na":25,"nb":3896,"a":[["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["EC%3A1.1.3.10","pyranose oxidase"],["EC%3A1.1.3.11","L-sorbose oxidase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.3.13","alcohol oxidase"],["EC%3A1.1.3.14","catechol oxidase (dimerizing)"],["EC%3A1.1.3.15","(S)-2-hydroxy-acid oxidase"]]},{"id":"CHEBI:16189","l":"sulfate","na":25,"nb":133,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16189","requires sulfate"],["EC%3A1.14.11.77","alkyl sulfatase"],["EC%3A1.8.2.1","sulfite dehydrogenase (cytochrome)"],["EC%3A1.8.3.1","sulfite oxidase"],["EC%3A1.8.5.6","sulfite dehydrogenase (quinone)"],["EC%3A2.7.7.4","sulfate adenylyltransferase"]]},{"id":"CHEBI:16236","l":"ethanol","na":25,"nb":31,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.5.5","alcohol dehydrogenase (quinone)"],["EC%3A1.1.99.36","alcohol dehydrogenase (nicotinoprotein)"],["EC%3A2.3.1.268","ethanol O-acetyltransferase"],["EC%3A3.1.1.113","ethyl acetate hydrolase"],["EC%3A3.1.1.67","fatty-acyl-ethyl-ester synthase"]]},{"id":"GO:0009399","l":"nitrogen fixation","na":24,"nb":36,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"]],"b":[["GO%3A0009399","nitrogen fixation"],["proteintraitsmech%3ASEED_SUBSYSTEM_Nitrogen_fixation","Nitrogen fixation"],["NCBIfam%3ATIGR02662","ADP-ribosyl-[dinitrogen reductase] hydrolase"],["NCBIfam%3ATIGR02931","Fe-only nitrogenase subunit beta"],["NCBIfam%3ATIGR02929","Fe-only nitrogenase subunit delta"],["NCBIfam%3ATIGR02000","Fe-S cluster assembly protein NifU"]]},{"id":"CHEBI:15740","l":"formate","na":23,"nb":173,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"]],"b":[["EC%3A1.1.98.6","ribonucleoside-triphosphate reductase (formate)"],["EC%3A1.10.3.15","grixazone synthase"],["EC%3A1.13.11.41","2,4'-dihydroxyacetophenone dioxygenase"],["EC%3A1.13.11.53","acireductone dioxygenase (Ni(2+)-requiring)"],["EC%3A1.13.11.54","acireductone dioxygenase (Fe(2+)-requiring)"],["EC%3A1.13.11.72","2-hydroxyethylphosphonate dioxygenase"]]},{"id":"CHEBI:24996","l":"lactate","na":22,"nb":23,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["EC%3A1.1.1.436","lactate dehydrogenase (NAD(+),ferredoxin)"],["EC%3A3.5.1.124","protein deglycase"],["RHEA%3A57300","an N(2)-(1-hydroxy-2-oxopropyl)-2'-deoxyguanosine in DNA + H2O = a 2'-deoxyguanosine in DNA + lactate + H(+)"],["RHEA%3A57288","an N(2)-(1-hydroxy-2-oxopropyl)-guanosine in RNA + H2O = a guanosine in RNA + lactate + H(+)"],["RHEA%3A46964","lactate + 2 reduced [2Fe-2S]-[ferredoxin] + 2 NAD(+) = 2 oxidized [2Fe-2S]-[ferredoxin] + pyruvate + 2 NADH"],["RHEA%3A57244","N(2)-(1-hydroxy-2-oxopropyl)-dGTP + H2O = lactate + dGTP + H(+)"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":21,"nb":396,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29033","requires iron(2+)"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.11","glucoside 3-dehydrogenase (cytochrome c)"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.2.3","L-lactate dehydrogenase (cytochrome)"],["EC%3A1.1.2.4","D-lactate dehydrogenase (cytochrome)"]]},{"id":"CHEBI:29034","l":"iron(3+)","na":21,"nb":376,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29034","requires iron(3+)"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.11","glucoside 3-dehydrogenase (cytochrome c)"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.2.3","L-lactate dehydrogenase (cytochrome)"],["EC%3A1.1.2.4","D-lactate dehydrogenase (cytochrome)"]]},{"id":"CHEBI:28938","l":"ammonium","na":19,"nb":837,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_28938","requires ammonium"],["EC%3A1.13.12.15","3,4-dihydroxyphenylalanine oxidative deaminase"],["EC%3A1.13.99.3","tryptophan 2'-dioxygenase"],["EC%3A1.14.11.37","kanamycin B dioxygenase"],["EC%3A1.14.12.1","anthranilate 1,2-dioxygenase (deaminating, decarboxylating)"],["EC%3A1.14.12.14","2-aminobenzenesulfonate 2,3-dioxygenase"]]},{"id":"CHEBI:17968","l":"butyrate","na":19,"nb":33,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"]],"b":[["EC%3A1.3.1.31","2-enoate reductase"],["EC%3A2.3.1.315","succinyl-CoA:cyclohexane-1-carboxylate CoA transferase"],["EC%3A2.7.2.7","butyrate kinase"],["EC%3A2.8.3.9","butyrate--acetoacetate CoA-transferase"],["EC%3A3.1.1.51","phorbol-diester hydrolase"],["EC%3A3.7.1.7","beta-diketone hydrolase"]]},{"id":"GO:0044419","l":"biological process involved in interspecies interaction between organisms","na":148,"nb":18,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]],"b":[["GO%3A0044419","biological process involved in interspecies interaction between organisms"],["GO%3A0044403","biological process involved in symbiotic interaction"],["GO%3A0141060","disruption of anatomical structure in another organism"],["GO%3A0044111","formation of structure involved in a symbiotic process"],["GO%3A0140106","hematophagy"],["GO%3A0035821","modulation of process of another organism"]]},{"id":"GO:0030245","l":"cellulose catabolic process","na":30,"nb":18,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"]],"b":[["GO%3A1990488","anaerobic cellulose catabolic process"],["GO%3A0030245","cellulose catabolic process"],["GO%3A0052785","cellulose catabolism by endo-processive cellulases"],["NCBIfam%3ANF049990","cellulose 1,4-beta-cellobiosidase"],["NCBIfam%3ANF041611","exoglucanase CbhB"],["NCBIfam%3ATIGR03356","GH1 family beta-glucosidase"]]},{"id":"CHEBI:16301","l":"nitrite","na":17,"nb":116,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["EC%3A1.13.11.64","5-nitrosalicylate dioxygenase"],["EC%3A1.13.12.16","nitronate monooxygenase"],["EC%3A1.14.12.23","nitroarene dioxygenase"],["EC%3A1.14.12.24","2,4-dinitrotoluene dioxygenase"],["EC%3A1.14.13.166","4-nitrocatechol 4-monooxygenase"],["EC%3A1.14.13.167","4-nitrophenol 4-monooxygenase"]]},{"id":"GO:0006805","l":"xenobiotic metabolic process","na":17,"nb":38,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"]],"b":[["GO%3A0018872","arsonoacetate metabolic process"],["GO%3A0018890","cyanamide metabolic process"],["GO%3A0018892","cyclohexylsulfamate metabolic process"],["GO%3A0018905","dimethyl ether metabolic process"],["GO%3A0018909","dodecyl sulfate metabolic process"],["GO%3A0042197","halogenated hydrocarbon metabolic process"]]},{"id":"GO:0006826","l":"iron ion transport","na":17,"nb":26,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"]],"b":[["GO%3A1901678","iron coordination entity transport"],["GO%3A0033212","iron import into cell"],["GO%3A0034755","iron ion transmembrane transport"],["GO%3A0006826","iron ion transport"],["GO%3A0033571","lactoferrin transport"],["GO%3A0033572","transferrin transport"]]},{"id":"GO:0005975","l":"carbohydrate metabolic process","na":15,"nb":401,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"]],"b":[["GO%3A0016051","carbohydrate biosynthetic process"],["GO%3A0016052","carbohydrate catabolic process"],["GO%3A0005975","carbohydrate metabolic process"],["GO%3A0046835","carbohydrate phosphorylation"],["GO%3A0042836","D-glucarate metabolic process"],["GO%3A0019521","D-gluconate metabolic process"]]},{"id":"GO:0022900","l":"electron transport chain","na":15,"nb":50,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"]],"b":[["GO%3A0022900","electron transport chain"],["GO%3A0140647","P450-containing electron transport chain"],["GO%3A0009767","photosynthetic electron transport chain"],["GO%3A0022904","respiratory electron transport chain"],["NCBIfam%3ANF058577","4Fe-4S ferredoxin"],["NCBIfam%3ANF042982","8-methylmenaquinol:fumarate reductase flavoprotein subunit"]]},{"id":"CHEBI:17992","l":"sucrose","na":15,"nb":49,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"]],"b":[["EC%3A1.1.99.13","glucoside 3-dehydrogenase (acceptor)"],["EC%3A2.4.1.10","levansucrase"],["EC%3A2.4.1.125","sucrose--1,6-alpha-glucan 3(6)-alpha-glucosyltransferase"],["EC%3A2.4.1.13","sucrose synthase"],["EC%3A2.4.1.166","raffinose--raffinose alpha-galactosyltransferase"],["EC%3A2.4.1.167","sucrose 6(F)-alpha-galactosyltransferase"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":15,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["Pfam%3APF14562","Restriction endonuclease BglI"],["Pfam%3APF09195","Restriction endonuclease BglII/BglIII"],["Pfam%3APF09208","Restriction endonuclease MspI"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":14,"nb":145,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]],"b":[["IDPO%3A0000033","flexible linker"],["IDPO%3A0000014","order to disorder"],["IDPO%3A0000004","pre-molten globule"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"]]},{"id":"GO:0006113","l":"fermentation","na":43,"nb":14,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"]],"b":[["ComplexPortal%3ACPX-281","Hydrogenase-1 complex"],["GO%3A0030645","acetyl-CoA fermentation to butanoate"],["GO%3A0019665","amino acid fermentation"],["GO%3A0019588","anaerobic glycerol catabolic process"],["GO%3A0019658","bifid shunt"],["GO%3A0044577","D-xylose fermentation"]]},{"id":"GO:0006790","l":"sulfur compound metabolic process","na":13,"nb":113,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"]],"b":[["GO%3A0050427","3'-phosphoadenosine 5'-phosphosulfate metabolic process"],["GO%3A0018887","4-carboxy-4'-sulfoazobenzene metabolic process"],["GO%3A0006637","acyl-CoA metabolic process"],["GO%3A0019694","alkanesulfonate metabolic process"],["GO%3A0006768","biotin metabolic process"],["GO%3A1901266","cephalosporin C metabolic process"]]},{"id":"CHEBI:16183","l":"methane","na":62,"nb":13,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"]],"b":[["EC%3A1.14.13.25","methane monooxygenase (soluble)"],["EC%3A1.14.18.3","methane monooxygenase (particulate)"],["EC%3A2.8.4.1","coenzyme-B sulfoethylthiotransferase"],["EC%3A4.7.1.1","alpha-D-ribose 1-methylphosphonate 5-phosphate C-P-lyase"],["RHEA%3A34707","alpha-D-ribose 1-methylphosphonate 5-phosphate + AH2 + S-adenosyl-L-methionine = alpha-D-ribose 1,2-cyclic phosphate 5-phosphate + methane + 5'-deoxyadenosine + L-methionine + A + H(+)"],["RHEA%3A12532","coenzyme B + methyl-coenzyme M = methane + coenzyme M-coenzyme B heterodisulfide"]]},{"id":"CHEBI:26833","l":"sulfur atom","na":12,"nb":24,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["EC%3A1.12.98.4","sulfhydrogenase"],["EC%3A1.13.11.55","sulfur oxygenase/reductase"],["EC%3A1.8.1.18","NAD(P)H sulfur oxidoreductase (CoA-dependent)"],["EC%3A1.8.1.19","sulfide dehydrogenase"],["EC%3A1.8.2.3","sulfide-cytochrome-c reductase (flavocytochrome c)"],["EC%3A1.8.2.7","thiocyanate desulfurase"]]},{"id":"CHEBI:17997","l":"dinitrogen","na":12,"nb":18,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["EC%3A1.18.6.1","nitrogenase"],["EC%3A1.18.6.2","vanadium-dependent nitrogenase"],["EC%3A1.19.6.1","nitrogenase (flavodoxin)"],["EC%3A1.7.2.4","nitrous-oxide reductase"],["EC%3A1.7.2.8","hydrazine dehydrogenase"],["RHEA%3A79967","3-diazoavenalumate + NADH + H(+) = avenalumate + N2 + NAD(+)"]]},{"id":"CHEBI:17272","l":"propionate","na":11,"nb":34,"a":[["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"]],"b":[["EC%3A1.3.1.125","acrylate reductase"],["EC%3A2.7.2.15","propionate kinase"],["EC%3A2.8.3.1","propionate CoA-transferase"],["EC%3A2.8.3.27","propanoyl-CoA:succinate CoA transferase"],["EC%3A4.1.3.32","2,3-dimethylmalate lyase"],["EC%3A6.2.1.13","acetate--CoA ligase (ADP-forming)"]]},{"id":"GO:0044403","l":"biological process involved in symbiotic interaction","na":20,"nb":11,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["GO%3A0036377","arbuscular mycorrhizal association"],["GO%3A0051701","biological process involved in interaction with host"],["GO%3A0051702","biological process involved in interaction with symbiont"],["GO%3A0044403","biological process involved in symbiotic interaction"],["GO%3A0075733","intracellular transport of virus"],["GO%3A0044399","multi-species biofilm formation"]]},{"id":"GO:0045493","l":"xylan catabolic process","na":11,"nb":19,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["GO%3A2000888","arabinoxylan-containing compound catabolic process"],["GO%3A2000886","glucuronoxylan catabolic process"],["GO%3A0045493","xylan catabolic process"],["NCBIfam%3ANF042968","acetylxylan esterase AxeA1"],["NCBIfam%3ANF041579","beta-xylosidase"],["NCBIfam%3ANF042969","bifunctional acetylxylan esterase/glucomannan deacetylase AxeC2"]]},{"id":"GO:0050832","l":"defense response to fungus","na":11,"nb":15,"a":[["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"]],"b":[["GO%3A0019732","antifungal humoral response"],["GO%3A0061760","antifungal innate immune response"],["GO%3A0050832","defense response to fungus"],["NCBIfam%3ANF013159","Barwin family"],["InterPro%3AIPR018226","Barwin, conserved site"],["InterPro%3AIPR001153","Barwin domain"]]},{"id":"CHEBI:16134","l":"ammonia","na":14,"nb":11,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]],"b":[["TCDB%3A1.A.11","The Ammonium Transporter Channel (Amt) Family"],["MCSA%3A376","adenosine deaminase"],["MCSA%3A75","aspartate-ammonia ligase"],["MCSA%3A449","cystathionine beta-lyase"],["MCSA%3A97","cytidine deaminase"],["MCSA%3A710","cytosine deaminase (bacterial)"]]},{"id":"CHEBI:17790","l":"methanol","na":10,"nb":86,"a":[["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"]],"b":[["EC%3A1.1.1.244","methanol dehydrogenase"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.99.37","methanol dehydrogenase (nicotinoprotein)"],["EC%3A1.14.13.25","methane monooxygenase (soluble)"],["EC%3A1.14.14.117","aflatoxin B synthase"]]},{"id":"CHEBI:29036","l":"copper(2+)","na":10,"nb":40,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29036","requires copper(2+)"],["EC%3A1.1.9.1","alcohol dehydrogenase (azurin)"],["EC%3A1.16.3.4","cuproxidase"],["EC%3A1.17.9.1","4-methylphenol dehydrogenase (hydroxylating)"],["EC%3A1.17.9.2","(+)-pinoresinol hydroxylase"],["EC%3A1.20.9.1","arsenate reductase (azurin)"]]},{"id":"GO:0042742","l":"defense response to bacterium","na":9,"nb":53,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["ComplexPortal%3ACPX-10317","Interleukin-26 complex"],["GO%3A0019731","antibacterial humoral response"],["GO%3A0140367","antibacterial innate immune response"],["GO%3A0042742","defense response to bacterium"],["GO%3A0050829","defense response to Gram-negative bacterium"],["GO%3A0050830","defense response to Gram-positive bacterium"]]},{"id":"GO:0009372","l":"quorum sensing","na":9,"nb":21,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["ComplexPortal%3ACPX-4315","Autoinducer-2 ABC transporter complex"],["GO%3A0120218","host interaction involved in quorum sensing"],["GO%3A0009372","quorum sensing"],["NCBIfam%3ANF052393","acyl-homoserine-lactone synthase"],["NCBIfam%3ANF008187","autoinducer-2 kinase"],["NCBIfam%3ANF010444","autoinducer-binding transcriptional regulator TraR"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":9,"nb":20,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]],"b":[["Pfam%3APF14535","AMP-binding enzyme C-terminal domain"],["Pfam%3APF13442","Cytochrome C oxidase, cbb3-type, subunit III"],["Pfam%3APF22247","Catechol 2,3-dioxygenase-like N-terminal domain"],["Pfam%3APF25371","Domain of unknown function (DUF7884)"],["Pfam%3APF19301","LigXa C-terminal domain like"],["Pfam%3APF12729","Four helix bundle sensory module for signal transduction"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":9,"nb":19,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"]],"b":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"],["Pfam%3APF18173","Bacterial HORMA domain 2"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["Pfam%3APF27322","Cap8 HORMA domain"],["Pfam%3APF01526","Tn3 transposase DDE domain"]]},{"id":"CHEBI:28885","l":"butan-1-ol","na":9,"nb":16,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["EC%3A1.1.2.9","1-butanol dehydrogenase (cytochrome c)"],["EC%3A1.1.5.11","1-butanol dehydrogenase (quinone)"],["EC%3A1.14.13.230","butane monooxygenase (soluble)"],["RHEA%3A64672","2-(methylsulfanyl)acetyl-CoA + butan-1-ol = butyl 2-(methylsulfanyl)acetate + CoA"],["RHEA%3A64676","3-(methylsulfanyl)propanoyl-CoA + butan-1-ol = butyl 3-(methylsulfanyl)propanoate + CoA"],["RHEA%3A43432","butan-1-ol + 2 Fe(III)-[cytochrome c] = butanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"]]},{"id":"CHEBI:15361","l":"pyruvate","na":8,"nb":410,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15361","requires pyruvate"],["EC%3A1.1.1.27","L-lactate dehydrogenase"],["EC%3A1.1.1.28","D-lactate dehydrogenase"],["EC%3A1.1.1.38","malate dehydrogenase (oxaloacetate-decarboxylating)"],["EC%3A1.1.1.39","malate dehydrogenase (decarboxylating)"],["EC%3A1.1.1.40","malate dehydrogenase (oxaloacetate-decarboxylating) (NADP(+))"]]},{"id":"GO:0009061","l":"anaerobic respiration","na":8,"nb":36,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["ComplexPortal%3ACPX-4841","Anaerobic glycerol-3-phosphate dehydrogenase complex"],["ComplexPortal%3ACPX-317","Formate hydrogenlyase-H/Hydrogenase-3 complex"],["ComplexPortal%3ACPX-6028","Formate hydrogenlyase-H/Hydrogenase-4 complex"],["ComplexPortal%3ACPX-281","Hydrogenase-1 complex"],["ComplexPortal%3ACPX-282","Hydrogenase-2 complex"],["ComplexPortal%3ACPX-3447","NapAB nitrate reductase complex"]]},{"id":"GO:0010038","l":"response to metal ion","na":8,"nb":34,"a":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["GO%3A0071248","cellular response to metal ion"],["GO%3A0010044","response to aluminum ion"],["GO%3A0046686","response to cadmium ion"],["GO%3A0051592","response to calcium ion"],["GO%3A0010164","response to cesium ion"],["GO%3A0032025","response to cobalt ion"]]},{"id":"CHEBI:18385","l":"thiamine(1+)","na":8,"nb":19,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["EC%3A1.1.3.23","thiamine oxidase"],["EC%3A2.5.1.2","thiamine pyridinylase"],["EC%3A2.7.1.89","thiamine kinase"],["EC%3A2.7.6.2","thiamine diphosphokinase"],["EC%3A3.1.3.100","thiamine phosphate phosphatase"],["EC%3A3.5.99.2","aminopyrimidine aminohydrolase"]]},{"id":"CHEBI:33709","l":"amino acid","na":14,"nb":8,"a":[["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.23","The Dicarboxylate/Amino Acid:Cation (Na+ or H+) Symporter (DAACS) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A1.V.1","The Filamentous Cyanobacterial Septal Pore (Septum) Family"],["TCDB%3A1.A.24","The Gap Junction-forming Connexin (Connexin) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"GO:0015947","l":"methane metabolic process","na":11,"nb":8,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"]],"b":[["GO%3A0046188","methane catabolic process"],["GO%3A0015947","methane metabolic process"],["GO%3A0015948","methanogenesis"],["NCBIfam%3ANF014960","Methane monooxygenase, hydrolase gamma chain"],["Pfam%3APF02964","Methane monooxygenase, hydrolase gamma chain"],["InterPro%3AIPR015952","Methane monooxygenase, gamma chain, domain 1"]]},{"id":"GO:0046274","l":"lignin catabolic process","na":8,"nb":10,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"]],"b":[["GO%3A1990487","anaerobic lignin catabolic process"],["GO%3A1901062","guaiacyl lignin catabolic process"],["GO%3A0046274","lignin catabolic process"],["GO%3A1901059","p-hydroxyphenyl lignin catabolic process"],["GO%3A1901065","syringal lignin catabolic process"],["NCBIfam%3ANF042997","beta-etherase"]]},{"id":"GO:0040007","l":"growth","na":36,"nb":7,"a":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Cultivated_Meat_Contaminant_SynCom.html","Cultivated Meat Contaminant SynCom"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["GO%3A0007117","budding cell bud growth"],["GO%3A0016049","cell growth"],["GO%3A0048589","developmental growth"],["GO%3A0030447","filamentous growth"],["GO%3A0040007","growth"],["GO%3A0080190","lateral growth"]]},{"id":"GO:0042710","l":"biofilm formation","na":29,"nb":7,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["GO%3A0042710","biofilm formation"],["GO%3A0044399","multi-species biofilm formation"],["GO%3A0044010","single-species biofilm formation"],["GO%3A0090605","submerged biofilm formation"],["GO%3A0090604","surface biofilm formation"],["Reactome%3AR-HSA-9931953","Biofilm formation"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":7,"nb":23,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["Pfam%3APF08878","HamA"],["Pfam%3APF05791","Bacillus haemolytic enterotoxin (HBL)"],["Pfam%3APF10803","Spore germination GerPB"],["Pfam%3APF10737","Spore germination protein GerPC"],["Pfam%3APF10970","Spore germination protein GerPE"],["Pfam%3APF07486","Cell Wall Hydrolase"]]},{"id":"CHEBI:17057","l":"cellobiose","na":7,"nb":19,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["EC%3A1.1.3.5","hexose oxidase"],["EC%3A1.1.99.18","cellobiose dehydrogenase (acceptor)"],["EC%3A2.4.1.20","cellobiose phosphorylase"],["EC%3A2.7.1.205","protein-N(pi)-phosphohistidine--D-cellobiose phosphotransferase"],["EC%3A2.7.1.85","beta-glucoside kinase"],["EC%3A5.1.3.11","cellobiose epimerase"]]},{"id":"GO:0019420","l":"dissimilatory sulfate reduction","na":17,"nb":7,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["DVM_Triculture.html","DVM Tri-culture"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"]],"b":[["GO%3A0019420","dissimilatory sulfate reduction"],["NCBIfam%3ATIGR02061","adenylyl-sulfate reductase subunit alpha"],["NCBIfam%3ATIGR02060","adenylyl-sulfate reductase subunit beta"],["NCBIfam%3ATIGR02066","dissimilatory-type sulfite reductase subunit beta"],["NCBIfam%3ANF045796","sulfate reduction electron transfer complex DsrMKJOP subunit DsrK"],["NCBIfam%3ANF045797","sulfate reduction electron transfer complex DsrMKJOP subunit DsrO"]]},{"id":"CHEBI:49786","l":"nickel(2+)","na":7,"nb":10,"a":[["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_49786","requires nickel(2+)"],["EC%3A4.99.1.11","sirohydrochlorin nickelchelatase"],["EC%3A4.99.1.12","pyridinium-3,5-bisthiocarboxylic acid mononucleotide nickel chelatase"],["EC%3A7.2.2.11","ABC-type Ni(2+) transporter"],["RHEA%3A29831","Ni(2+)(in) = Ni(2+)(out)"],["RHEA%3A15557","Ni(2+)(out) + ATP + H2O = Ni(2+)(in) + ADP + phosphate + H(+)"]]},{"id":"NCBITaxon:818","l":"Bacteroides thetaiotaomicron","na":7,"nb":9,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["Pfam%3APF09093","Lyase, catalytic"],["TED%3AAF-A0A174W9M0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A174W9M0-F1-model_v4_TED01"],["TED%3AAF-A0A679HCU6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A679HCU6-F1-model_v4_TED01"],["TED%3AAF-A0A139L295-F1-model_v4_TED04","TED novel fold AF-A0A139L295-F1-model_v4_TED04"],["TED%3AAF-A0A174QBB7-F1-model_v4_TED02","TED novel fold AF-A0A174QBB7-F1-model_v4_TED02"],["TED%3AAF-A0A679H9T4-F1-model_v4_TED03","TED novel fold AF-A0A679H9T4-F1-model_v4_TED03"]]},{"id":"GO:0009056","l":"catabolic process","na":6,"nb":109,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"],["Wetland_Oxygen_Sulfate_GHG_Microcosm_Community.html","Wetland Oxygen-Sulfate Greenhouse Gas Microcosm Community"]],"b":[["GO%3A0018911","1,2,4-trichlorobenzene catabolic process"],["GO%3A0019261","1,4-dichlorobenzene catabolic process"],["GO%3A0046302","2-chloro-N-isopropylacetanilide catabolic process"],["GO%3A1901851","7,8-didemethyl-8-hydroxy-5-deazariboflavin catabolic process"],["GO%3A0006581","acetylcholine catabolic process"],["GO%3A0046185","aldehyde catabolic process"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":6,"nb":93,"a":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17544","requires hydrogencarbonate"],["EC%3A1.13.11.73","methylphosphonate synthase"],["EC%3A1.2.1.27","methylmalonate-semialdehyde dehydrogenase (CoA acylating)"],["EC%3A2.5.1.120","aminodeoxyfutalosine synthase"],["EC%3A2.5.1.143","pyridinium-3,5-biscarboxylic acid mononucleotide synthase"],["EC%3A2.7.2.2","carbamate kinase"]]},{"id":"GO:0006979","l":"response to oxidative stress","na":6,"nb":50,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["ComplexPortal%3ACPX-9082","19S-20S-PA28-alphabeta hybrid proteasome complex"],["ComplexPortal%3ACPX-9085","19S-20S-PA28-gamma hybrid proteasome complex"],["ComplexPortal%3ACPX-8806","20S proteasome complex"],["ComplexPortal%3ACPX-4862","Alkyl hydroperoxide reductase complex"],["ComplexPortal%3ACPX-8842","PA28-alphabeta double-capped 20S proteasome complex"],["ComplexPortal%3ACPX-9002","PA28-alphabeta single-capped 20S proteasome complex"]]},{"id":"CHEBI:17245","l":"carbon monoxide","na":6,"nb":31,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Subsurface_Carboxydocella_CO_Aquifer_Community.html","Subsurface Carboxydocella CO-Oxidation Aquifer Community"]],"b":[["EC%3A1.13.11.24","quercetin 2,3-dioxygenase"],["EC%3A1.13.11.47","3-hydroxy-4-oxoquinoline 2,4-dioxygenase"],["EC%3A1.13.11.48","3-hydroxy-2-methylquinolin-4-one 2,4-dioxygenase"],["EC%3A1.13.11.53","acireductone dioxygenase (Ni(2+)-requiring)"],["EC%3A1.14.14.18","heme oxygenase (biliverdin-producing)"],["EC%3A1.14.15.20","heme oxygenase (biliverdin-producing, ferredoxin)"]]},{"id":"CHEBI:18246","l":"(1->4)-beta-D-glucan","na":27,"nb":6,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["EC%3A2.4.1.12","cellulose synthase (UDP-forming)"],["EC%3A2.4.1.29","cellulose synthase (GDP-forming)"],["EC%3A2.4.1.49","cellodextrin phosphorylase"],["RHEA%3A17797","[(1->4)-beta-D-glucosyl](n) + GDP-alpha-D-glucose = [(1->4)-beta-D-glucosyl](n+1) + GDP + H(+)"],["RHEA%3A23024","[(1->4)-beta-D-glucosyl](n) + phosphate = [(1->4)-beta-D-glucosyl](n-1) + alpha-D-glucose 1-phosphate"],["RHEA%3A19929","[(1->4)-beta-D-glucosyl](n) + UDP-alpha-D-glucose = [(1->4)-beta-D-glucosyl](n+1) + UDP + H(+)"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":6,"nb":16,"a":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["Pfam%3APF16822","SGNH hydrolase-like domain, acetyltransferase AlgX"],["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"],["Pfam%3APF11182","Alginate O-acetyl transferase AlgF"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF27129","Functional amyloid protein FapB/FapC family"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":6,"nb":11,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF02085","Class III cytochrome C family"],["Pfam%3APF06397","Desulfoferrodoxin, N-terminal domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["Pfam%3APF12797","4Fe-4S binding domain"],["Pfam%3APF06180","Cobalt chelatase (CbiK)"]]},{"id":"GO:0009877","l":"nodulation","na":6,"nb":8,"a":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"],["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["GO%3A0009877","nodulation"],["NCBIfam%3ATIGR04243","chitooligosaccharide deacetylase NodB"],["NCBIfam%3ATIGR04242","chitooligosaccharide synthase NodC"],["NCBIfam%3ANF017620","HrpF/NolX family T3SS translocon protein"],["NCBIfam%3ATIGR04245","NodA family N-acyltransferase"],["NCBIfam%3ANF014526","Nodulation protein A (NodA)"]]},{"id":"GO:0071941","l":"nitrogen cycle metabolic process","na":6,"nb":8,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"]],"b":[["GO%3A0019409","aerobic respiration, using ammonia as electron donor"],["GO%3A0019331","anaerobic respiration, using ammonium as electron donor"],["GO%3A0019333","denitrification pathway"],["GO%3A0042128","nitrate assimilation"],["GO%3A0071941","nitrogen cycle metabolic process"],["GO%3A0009399","nitrogen fixation"]]},{"id":"CHEBI:18153","l":"ethene","na":7,"nb":6,"a":[["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"]],"b":[["EC%3A1.13.12.19","2-oxoglutarate dioxygenase (ethylene-forming)"],["EC%3A1.14.17.4","aminocyclopropanecarboxylate oxidase"],["RHEA%3A23640","1-aminocyclopropane-1-carboxylate + L-ascorbate + O2 = ethene + L-dehydroascorbate + hydrogen cyanide + CO2 + 2 H2O"],["RHEA%3A81439","2-(methylsulfanyl)ethanol + AH2 = ethene + methanethiol + A + H2O"],["RHEA%3A31523","2-oxoglutarate + O2 + 2 H(+) = ethene + 3 CO2 + H2O"],["RHEA%3A68004","chloroethene + AH2 = ethene + chloride + A + H(+)"]]},{"id":"NCBITaxon:40324","l":"Stenotrophomonas maltophilia","na":7,"nb":6,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]],"b":[["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["TED%3AAF-A0A2U4H7T5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2U4H7T5-F1-model_v4_TED02"],["TED%3AAF-A0A2W6G5X3-F1-model_v4_TED01","TED novel fold AF-A0A2W6G5X3-F1-model_v4_TED01"],["TED%3AAF-A0A2W6IKS3-F1-model_v4_TED02","TED novel fold AF-A0A2W6IKS3-F1-model_v4_TED02"],["TED%3AAF-A0A7D0KRT5-F1-model_v4_TED03","TED novel fold AF-A0A7D0KRT5-F1-model_v4_TED03"],["TED%3AAF-A0A7T8PWR1-F1-model_v4_TED05","TED novel fold AF-A0A7T8PWR1-F1-model_v4_TED05"]]},{"id":"CHEBI:17754","l":"glycerol","na":5,"nb":95,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"]],"b":[["EC%3A1.1.1.156","glycerol 2-dehydrogenase (NADP(+))"],["EC%3A1.1.1.372","D/L-glyceraldehyde reductase"],["EC%3A1.1.1.6","glycerol dehydrogenase"],["EC%3A1.1.1.72","glycerol dehydrogenase (NADP(+))"],["EC%3A1.1.99.22","glycerol dehydrogenase (acceptor)"],["EC%3A2.4.1.332","1,2-alpha-glucosylglycerol phosphorylase"]]},{"id":"GO:0006629","l":"lipid metabolic process","na":5,"nb":81,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"]],"b":[["ComplexPortal%3ACPX-1381","NVJ1-VAC8 nucleus-vacuole junction complex"],["GO%3A0046485","ether lipid metabolic process"],["GO%3A1901568","fatty acid derivative metabolic process"],["GO%3A0006631","fatty acid metabolic process"],["GO%3A0046486","glycerolipid metabolic process"],["GO%3A0006720","isoprenoid metabolic process"]]},{"id":"GO:0009236","l":"cobalamin biosynthetic process","na":5,"nb":75,"a":[["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["GO%3A0009236","cobalamin biosynthetic process"],["proteintraitsmech%3ASEED_SUBSYSTEM_Cobalamin_synthesis","Cobalamin synthesis"],["NCBIfam%3ATIGR02476","5,6-dimethylbenzimidazole synthase"],["NCBIfam%3ANF011580","adenosylcobalamin/alpha-ribazole phosphatase"],["NCBIfam%3ANF014685","adenosylcobinamide-GDP ribazoletransferase"],["NCBIfam%3ATIGR00317","adenosylcobinamide-GDP ribazoletransferase"]]},{"id":"GO:0006935","l":"chemotaxis","na":5,"nb":64,"a":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["SynCom_MetG2_Rhizobacteria_Sugarcane_Stress_Resilience.html","SynCom MetG2 Rhizobacteria Sugarcane Stress Resilience"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"],["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009454","aerotaxis"]]},{"id":"GO:0006635","l":"fatty acid beta-oxidation","na":5,"nb":32,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["ComplexPortal%3ACPX-3964","fadBA fatty acid oxidation complex, aerobic conditions"],["ComplexPortal%3ACPX-3966","fadJI fatty acid oxidation complex, anaerobic conditions"],["ComplexPortal%3ACPX-6245","Mitochondrial trifunctional enzyme complex"],["GO%3A0006635","fatty acid beta-oxidation"],["GO%3A0033539","fatty acid beta-oxidation using acyl-CoA dehydrogenase"],["GO%3A0033540","fatty acid beta-oxidation using acyl-CoA oxidase"]]},{"id":"GO:0009060","l":"aerobic respiration","na":5,"nb":25,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Soil_CPR_Nanoarchaea_Rare_Biosphere_Community.html","Soil CPR Bacteria and Nanoarchaea Rare-Biosphere Community"]],"b":[["ComplexPortal%3ACPX-266","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-577","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-319","Trimethylamine-N-oxide reductase TorAC complex"],["GO%3A0019646","aerobic electron transport chain"],["GO%3A0009060","aerobic respiration"],["GO%3A0019409","aerobic respiration, using ammonia as electron donor"]]},{"id":"GO:0005986","l":"sucrose biosynthetic process","na":7,"nb":5,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"],["Synechococcus_Bacillus_SPC.html","Synechococcus-Bacillus Synthetic Photosynthetic Consortium"],["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"],["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"],["Synechococcus_Saccharomyces_SPC.html","Synechococcus-Saccharomyces Synthetic Photosynthetic Consortium"]],"b":[["GO%3A0005986","sucrose biosynthetic process"],["NCBIfam%3ANF020061","Sucrose-6-phosphate phosphohydrolase C-terminal"],["NCBIfam%3ATIGR01485","sucrose-phosphate phosphatase"],["InterPro%3AIPR013679","Sucrose-phosphatase, C-terminal"],["Pfam%3APF08472","Sucrose-6-phosphate phosphohydrolase C-terminal"]]},{"id":"CHEBI:18310","l":"alkane","na":5,"nb":5,"a":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"]],"b":[["EC%3A4.99.1.2","alkylmercury lyase"],["RHEA%3A18777","an alkylmercury + H(+) = an alkane + Hg(2+)"],["MCSA%3A297","alkylmercury lyase"],["MCSA%3A248","chloride peroxidase (cofactor free)"],["MCSA%3A250","chloride peroxidase (heme dependent)"]]},{"id":"CHEBI:15377","l":"water","na":4,"nb":9376,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["EC%3A1.1.1.115","ribose 1-dehydrogenase (NADP(+))"],["EC%3A1.1.1.132","GDP-mannose 6-dehydrogenase"],["EC%3A1.1.1.136","UDP-N-acetylglucosamine 6-dehydrogenase"],["EC%3A1.1.1.186","dTDP-galactose 6-dehydrogenase"],["EC%3A1.1.1.192","long-chain-alcohol dehydrogenase"],["EC%3A1.1.1.205","IMP dehydrogenase"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":4,"nb":680,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16240","requires hydrogen peroxide"],["EC%3A1.1.3.10","pyranose oxidase"],["EC%3A1.1.3.11","L-sorbose oxidase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.3.13","alcohol oxidase"],["EC%3A1.1.3.15","(S)-2-hydroxy-acid oxidase"]]},{"id":"GO:0006952","l":"defense response","na":4,"nb":62,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["ComplexPortal%3ACPX-2833","Camalexin biosynthetic metabolon complex"],["ComplexPortal%3ACPX-25769","TAP antigen peptide transporter complex"],["GO%3A0002209","behavioral defense response"],["GO%3A0006968","cellular defense response"],["GO%3A0052542","defense response by callose deposition"],["GO%3A0052482","defense response by cell wall thickening"]]},{"id":"GO:0008610","l":"lipid biosynthetic process","na":4,"nb":61,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"],["Yarrowia_lipolytica_Division_of_Labor_Lipid_Consortium.html","Yarrowia lipolytica Division-of-Labor Lipid Consortium"]],"b":[["GO%3A1900557","emericellamide biosynthetic process"],["GO%3A0008611","ether lipid biosynthetic process"],["GO%3A0006633","fatty acid biosynthetic process"],["GO%3A1901570","fatty acid derivative biosynthetic process"],["GO%3A0045017","glycerolipid biosynthetic process"],["GO%3A0009247","glycolipid biosynthetic process"]]},{"id":"CHEBI:16199","l":"urea","na":4,"nb":48,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["EC%3A3.5.1.5","urease"],["EC%3A3.5.1.95","N-malonylurea hydrolase"],["EC%3A3.5.3.1","arginase"],["EC%3A3.5.3.10","D-arginase"],["EC%3A3.5.3.11","agmatinase"],["EC%3A3.5.3.14","amidinoaspartase"]]},{"id":"CHEBI:29105","l":"zinc(2+)","na":4,"nb":20,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29105","requires zinc(2+)"],["EC%3A7.2.2.12","P-type Zn(2+) transporter"],["EC%3A7.2.2.20","ABC-type Zn(2+) transporter"],["RHEA%3A62264","selenite(out) + Zn(2+)(out) + hydrogencarbonate(out) = selenite(in) + Zn(2+)(in) + hydrogencarbonate(in)"],["RHEA%3A72627","Zn(2+)(in) + 2 H(+)(out) = Zn(2+)(out) + 2 H(+)(in)"],["RHEA%3A20621","Zn(2+)(in) + ATP + H2O = Zn(2+)(out) + ADP + phosphate + H(+)"]]},{"id":"GO:0044003","l":"symbiont-mediated perturbation of host process","na":4,"nb":20,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"]],"b":[["GO%3A0140418","effector-mediated perturbation of host process by symbiont"],["GO%3A0098676","symbiont-mediated modulation of host virulence"],["GO%3A0044068","symbiont-mediated perturbation of host cellular process"],["GO%3A0052031","symbiont-mediated perturbation of host defense response"],["GO%3A0044003","symbiont-mediated perturbation of host process"],["GO%3A0033635","symbiont-mediated perturbation of host response to abiotic stimulus"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":4,"nb":19,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["Pfam%3APF03306","Alpha-acetolactate decarboxylase"],["Pfam%3APF22208","Cas_Csm6 CARF domain"],["Pfam%3APF09659","Cas_Csm6 HEPN domain"],["Pfam%3APF22335","Cas10/Cmr2, second palm domain"],["Pfam%3APF18395","Cas3 C-terminal domain"],["Pfam%3APF18019","Cas3, HD domain"]]},{"id":"CHEBI:16899","l":"D-mannitol","na":4,"nb":17,"a":[["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["EC%3A1.1.1.138","mannitol 2-dehydrogenase (NADP(+))"],["EC%3A1.1.1.255","mannitol dehydrogenase"],["EC%3A1.1.1.67","mannitol 2-dehydrogenase"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.3.40","D-mannitol oxidase"],["EC%3A2.7.1.197","protein-N(pi)-phosphohistidine--D-mannitol phosphotransferase"]]},{"id":"GO:0019333","l":"denitrification pathway","na":13,"nb":4,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"]],"b":[["GO%3A0019333","denitrification pathway"],["NCBIfam%3ATIGR02161","periplasmic nitrate (or nitrite) reductase c-type cytochrome, NapC/NirT family"],["NCBIfam%3ATIGR04244","TAT-dependent nitrous-oxide reductase"],["NCBIfam%3ATIGR04246","Sec-dependent nitrous-oxide reductase"]]},{"id":"GO:0019543","l":"propionate catabolic process","na":4,"nb":11,"a":[["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["GO%3A0019543","propionate catabolic process"],["NCBIfam%3ATIGR02334","2-methylaconitate cis-trans isomerase PrpF"],["NCBIfam%3ATIGR02330","2-methylcitrate dehydratase"],["NCBIfam%3ANF006943","bifunctional 2-methylcitrate dehydratase/aconitate hydratase"],["NCBIfam%3ANF009006","bifunctional 2-methylcitrate synthase/citrate synthase"],["NCBIfam%3ATIGR02333","Fe/S-dependent 2-methylisocitrate dehydratase AcnD"]]},{"id":"CHEBI:48775","l":"cadmium(2+)","na":4,"nb":9,"a":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Meghalaya_Bacillus_Consortia_A22ED9.html","Meghalaya Bacillus Consortia-A22ED9"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["SynCom_Pseudomonas_Rahnella_Artemisia_Phytoremediation.html","Pseudomonas-Rahnella native rhizosphere SynCom for Artemisia argyi phytoremediation"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_48775","requires cadmium(2+)"],["EC%3A7.2.2.2","ABC-type Cd(2+) transporter"],["EC%3A7.2.2.21","Cd(2+)-exporting ATPase"],["RHEA%3A12132","Cd(2+)(in) + ATP + H2O = Cd(2+)(out) + ADP + phosphate + H(+)"],["RHEA%3A28707","Cd(2+)(in) = Cd(2+)(out)"],["RHEA%3A28739","Cd(2+)(in) + H(+)(out) = Cd(2+)(out) + H(+)(in)"]]},{"id":"CHEBI:17029","l":"chitin","na":4,"nb":8,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]],"b":[["EC%3A2.4.1.16","chitin synthase"],["EC%3A3.5.1.41","chitin deacetylase"],["RHEA%3A85463","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-1)-N-acetyl-alpha-D-glucosamine"],["RHEA%3A50672","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-2) + N,N'-diacetylchitobiose"],["RHEA%3A85003","[(1->4)-N-acetyl-beta-D-glucosaminyl](n)-N-acetyl-alpha-D-glucosamine + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n) + N-acetyl-alpha-D-glucosamine"],["RHEA%3A10464","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + n H2O = chitosan + n acetate"]]},{"id":"CHEBI:30411","l":"cobalamin","na":8,"nb":4,"a":[["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_30411","requires cobalamin"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.A.54","The Lysosomal Cobalamin (B12) Transporter (L-B12T) Family"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]]},{"id":"CHEBI:64709","l":"organic acid","na":7,"nb":4,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["TCDB%3A2.A.28","The Bile Acid:Na+ Symporter (BASS) Family"],["TCDB%3A2.A.23","The Dicarboxylate/Amino Acid:Cation (Na+ or H+) Symporter (DAACS) Family"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.25","The Outer Membrane Porin (Opr) Family"]]},{"id":"CHEBI:28509","l":"chloroethene","na":6,"nb":4,"a":[["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["RHEA%3A68000","1,1-dichloroethene + AH2 = chloroethene + chloride + A + H(+)"],["RHEA%3A68004","chloroethene + AH2 = ethene + chloride + A + H(+)"],["RHEA%3A83555","chloroethene + reduced [NADPH--hemoprotein reductase] + O2 = chloroethylene oxide + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A67996","(Z)-1,2-dichloroethene + AH2 = chloroethene + chloride + A + H(+)"]]},{"id":"GO:1903457","l":"lactate catabolic process","na":6,"nb":4,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["GO%3A1990484","aerobic lactate catabolic process"],["GO%3A1990485","anaerobic lactate catabolic process"],["GO%3A1903457","lactate catabolic process"],["NCBIfam%3ANF049975","D-2-hydroxyglutarate dehydrogenase YdiJ"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":4,"nb":6,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF10779","Haemolysin XhlA"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF08181","DegQ (SacQ) family"],["Pfam%3APF08057","Erythromycin resistance leader peptide"],["Pfam%3APF14867","Lantibiotic alpha"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":4,"nb":6,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["Pfam%3APF16376","N-terminal domain of fragilysin"],["TED%3AAF-A0A412XR06-F1-model_v4_TED03","TED novel fold AF-A0A412XR06-F1-model_v4_TED03"],["TED%3AAF-A0A4V1EUI2-F1-model_v4_TED02","TED novel fold AF-A0A4V1EUI2-F1-model_v4_TED02"],["TED%3AAF-A0A5C6IXH5-F1-model_v4_TED01","TED novel fold AF-A0A5C6IXH5-F1-model_v4_TED01"],["TED%3AAF-A0A5C6L6G9-F1-model_v4_TED02","TED novel fold AF-A0A5C6L6G9-F1-model_v4_TED02"],["TED%3AAF-A0A642KY52-F1-model_v4_TED01","TED novel fold AF-A0A642KY52-F1-model_v4_TED01"]]},{"id":"CHEBI:16670","l":"peptide","na":4,"nb":5,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A9.B.46","The Staphylococcus aureus Putative Quorum Sensing Peptide Exporter, AgrB (AgrB) Family"],["TCDB%3A3.A.25","The Symbiont-specific ERAD-like Machinery (SELMA) Family"],["proteintraitsmech%3ABIOLIP_PEPTIDE","peptide-binding site"]]},{"id":"NCBITaxon:5544","l":"Trichoderma harzianum","na":5,"nb":4,"a":[["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"],["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"],["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["Pfam%3APF00840","Glycosyl hydrolase family 7"],["Pfam%3APF12708","Rhamnogalacturonase A/epimerase, pectate lyase-like"],["TED%3AAF-A0A0F9XDU3-F1-model_v4_TED01","TED novel fold AF-A0A0F9XDU3-F1-model_v4_TED01"],["TED%3AAF-A0A0G0ASL4-F1-model_v4_TED01","TED novel fold AF-A0A0G0ASL4-F1-model_v4_TED01"]]},{"id":"CHEBI:18154","l":"polysaccharide","na":4,"nb":4,"a":[["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Wollastonite_Ramichloridium_Talaromyces_Fungal_Consortium.html","Wollastonite Ramichloridium-Talaromyces Fungal Consortium"]],"b":[["TCDB%3A9.B.97","The Acyltransferase-3/Putative Acetyl-CoA Transporter (AT3AT) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.18","The Outer Membrane Auxiliary (OMA) Protein Family"]]},{"id":"GO:0019541","l":"propionate metabolic process","na":4,"nb":4,"a":[["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["GO%3A0019542","propionate biosynthetic process"],["GO%3A0019543","propionate catabolic process"],["GO%3A0019541","propionate metabolic process"],["GO%3A0019657","pyruvate fermentation to propionate"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":3,"nb":212,"a":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["EC%3A1.1.1.244","methanol dehydrogenase"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.99.37","methanol dehydrogenase (nicotinoprotein)"],["EC%3A1.13.11.94","4-vinylguaiacol dioxygenase"],["EC%3A1.14.11.27","[histone H3]-dimethyl-L-lysine(36) demethylase"]]},{"id":"GO:0006520","l":"amino acid metabolic process","na":3,"nb":155,"a":[["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["GO%3A0043038","amino acid activation"],["GO%3A0008652","amino acid biosynthetic process"],["GO%3A0009063","amino acid catabolic process"],["GO%3A0006520","amino acid metabolic process"],["GO%3A0006525","arginine metabolic process"],["GO%3A0009072","aromatic amino acid metabolic process"]]},{"id":"CHEBI:17359","l":"sulfite","na":3,"nb":109,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"]],"b":[["EC%3A1.13.11.18","persulfide dioxygenase"],["EC%3A1.13.11.55","sulfur oxygenase/reductase"],["EC%3A1.14.11.17","taurine dioxygenase"],["EC%3A1.14.12.8","4-sulfobenzoate 3,4-dioxygenase"],["EC%3A1.14.13.111","methanesulfonate monooxygenase (NADH)"],["EC%3A1.14.14.181","sulfoquinovose monooxygenase"]]},{"id":"GO:0007155","l":"cell adhesion","na":3,"nb":102,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"]],"b":[["ComplexPortal%3ACPX-12912","BCAR1-CRK-SH2D3C, focal adhesion regulator complex"],["ComplexPortal%3ACPX-1737","Collagen type VII trimer"],["ComplexPortal%3ACPX-2966","Collagen type VII trimer"],["ComplexPortal%3ACPX-2855","Fimbrial Tip Complex FimFGH"],["ComplexPortal%3ACPX-450","Multimerin-2 complex"],["ComplexPortal%3ACPX-451","Multimerin-2 complex"]]},{"id":"GO:0008652","l":"amino acid biosynthetic process","na":3,"nb":69,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"]],"b":[["GO%3A0008153","4-aminobenzoate biosynthetic process"],["GO%3A0006523","alanine biosynthetic process"],["GO%3A0008652","amino acid biosynthetic process"],["GO%3A0043102","amino acid salvage"],["GO%3A0019483","beta-alanine biosynthetic process"],["GO%3A0035499","carnosine biosynthetic process"]]},{"id":"GO:0030001","l":"metal ion transport","na":3,"nb":66,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["GO%3A0015690","aluminum cation transport"],["GO%3A0006816","calcium ion transport"],["GO%3A0015692","lead ion transport"],["GO%3A0010351","lithium ion transport"],["GO%3A0015693","magnesium ion transport"],["GO%3A0030001","metal ion transport"]]},{"id":"CHEBI:29035","l":"manganese(2+)","na":3,"nb":44,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29035","requires manganese(2+)"],["EC%3A1.11.1.13","manganese peroxidase"],["EC%3A1.11.1.16","versatile peroxidase"],["EC%3A1.16.3.3","manganese oxidase"],["EC%3A7.2.2.22","P-type Mn(2+) transporter"],["EC%3A7.2.2.5","ABC-type Mn(2+) transporter"]]},{"id":"GO:0010467","l":"gene expression","na":3,"nb":41,"a":[["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["GO%3A0001816","cytokine production"],["GO%3A0010467","gene expression"],["GO%3A1901148","gene expression involved in extracellular matrix organization"],["GO%3A0140053","mitochondrial gene expression"],["GO%3A0036162","oxytocin production"],["GO%3A0140899","plastid gene expression"]]},{"id":"CHEBI:17750","l":"glycine betaine","na":3,"nb":33,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["EC%3A1.1.3.17","choline oxidase"],["EC%3A1.13.11.90","[1-hydroxy-2-(trimethylamino)ethyl]phosphonate dioxygenase (glycine- betaine-forming)"],["EC%3A1.14.13.251","glycine betaine monooxygenase"],["EC%3A1.2.1.8","betaine-aldehyde dehydrogenase"],["EC%3A1.21.4.4","betaine reductase"],["EC%3A2.1.1.157","sarcosine/dimethylglycine N-methyltransferase"]]},{"id":"CHEBI:29103","l":"potassium(1+)","na":3,"nb":32,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29103","requires potassium(1+)"],["EC%3A7.2.2.13","Na(+)/K(+)-exchanging ATPase"],["EC%3A7.2.2.19","H(+)/K(+)-exchanging ATPase"],["EC%3A7.2.2.6","P-type K(+) transporter"],["RHEA%3A18353","2 K(+)(out) + 3 Na(+)(in) + ATP + H2O = 2 K(+)(in) + 3 Na(+)(out) + ADP + phosphate + H(+)"],["RHEA%3A69967","Ca(2+)(out) + K(+)(out) + 4 Na(+)(in) = Ca(2+)(in) + K(+)(in) + 4 Na(+)(out)"]]},{"id":"NCBITaxon:3055","l":"Chlamydomonas reinhardtii","na":3,"nb":27,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]],"b":[["Pfam%3APF01333","Apocytochrome F, C-terminal"],["Pfam%3APF16639","Apocytochrome F, N-terminal"],["Pfam%3APF00430","ATP synthase B/B' CF(0)"],["Pfam%3APF00401","ATP synthase, Delta/Epsilon chain, long alpha-helix domain"],["Pfam%3APF21771","CFAP58 central coiled coil"],["Pfam%3APF27956","CFAP99 V-shaped coiled-coil domain"]]},{"id":"GO:0031347","l":"regulation of defense response","na":3,"nb":25,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"],["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["GO%3A0031348","negative regulation of defense response"],["GO%3A0031349","positive regulation of defense response"],["GO%3A0002759","regulation of antimicrobial humoral response"],["GO%3A2000822","regulation of behavioral fear response"],["GO%3A0010185","regulation of cellular defense response"],["GO%3A2000071","regulation of defense response by callose deposition"]]},{"id":"GO:0000162","l":"L-tryptophan biosynthetic process","na":3,"nb":22,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"]],"b":[["ComplexPortal%3ACPX-1850","Anthranilate synthase complex"],["ComplexPortal%3ACPX-4783","Anthranilate synthase complex"],["ComplexPortal%3ACPX-3446","TrpAB tryptophan synthase complex"],["GO%3A0000162","L-tryptophan biosynthetic process"],["NCBIfam%3ANF010081","anthranilate synthase component I"],["NCBIfam%3ANF010086","anthranilate synthase component I"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":3,"nb":21,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29108","requires calcium(2+)"],["EC%3A1.13.12.24","calcium-regulated photoprotein"],["EC%3A7.2.2.10","P-type Ca(2+) transporter"],["RHEA%3A72631","3 Li(+)(out) + Ca(2+)(in) = 3 Li(+)(in) + Ca(2+)(out)"],["RHEA%3A55884","[aequorin] + 3 Ca(2+) = [aequorin]--dioxetanone"],["RHEA%3A55888","[aequorin]--dioxetanone = excited state-[aequorin] + CO2"]]},{"id":"CHEBI:17716","l":"lactose","na":3,"nb":20,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"]],"b":[["EC%3A2.4.1.22","lactose synthase"],["EC%3A2.7.1.207","protein-N(pi)-phosphohistidine--lactose phosphotransferase"],["EC%3A3.2.1.108","lactase"],["EC%3A3.2.1.140","lacto-N-biosidase"],["EC%3A3.2.1.227","N-acetyllactosaminidase"],["RHEA%3A86923","a beta-D-Gal-(1->4)-beta-D-Glc-(1<->1)-Cer(d18:1(4E)) + H2O = lactose + an N-acylsphing-4-enine"]]},{"id":"GO:0045088","l":"regulation of innate immune response","na":3,"nb":19,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["GO%3A0045824","negative regulation of innate immune response"],["GO%3A0045089","positive regulation of innate immune response"],["GO%3A1904248","regulation of age-related resistance"],["GO%3A1905034","regulation of antifungal innate immune response"],["GO%3A0030451","regulation of complement activation, alternative pathway"],["GO%3A0001868","regulation of complement activation, lectin pathway"]]},{"id":"CHEBI:48828","l":"cobalt(2+)","na":3,"nb":16,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_48828","requires cobalt(2+)"],["EC%3A1.16.99.1","[Co(II) methylated amine-specific corrinoid protein] reductase"],["EC%3A4.99.1.3","sirohydrochlorin cobaltochelatase"],["EC%3A6.6.1.2","cobaltochelatase"],["RHEA%3A65832","2 Co(II)-[dimethylamine-specific corrinoid protein] + AH2 + ATP + H2O = 2 Co(I)-[dimethylamine-specific corrinoid protein] + A + ADP + phosphate + 3 H(+)"],["RHEA%3A65816","2 Co(II)-[methylamine-specific corrinoid protein] + AH2 + ATP + H2O = 2 Co(I)-[methylamine-specific corrinoid protein] + A + ADP + phosphate + 3 H(+)"]]},{"id":"CHEBI:17045","l":"dinitrogen oxide","na":3,"nb":13,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"]],"b":[["EC%3A1.7.1.14","nitric oxide reductase [NAD(P)(+), nitrous oxide-forming]"],["EC%3A1.7.2.4","nitrous-oxide reductase"],["EC%3A1.7.2.5","nitric-oxide reductase (cytochrome c)"],["EC%3A1.7.5.2","nitric oxide reductase (menaquinol)"],["RHEA%3A30215","a menaquinol + 2 nitric oxide = nitrous oxide + a menaquinone + H2O"],["RHEA%3A43108","N2 + 2 Fe(III)-[cytochrome c] + H2O = nitrous oxide + 2 Fe(II)-[cytochrome c] + 2 H(+)"]]},{"id":"CHEBI:26271","l":"proline","na":3,"nb":12,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.15","The Betaine/Carnitine/Choline Transporter (BCCT) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"]]},{"id":"GO:0006083","l":"acetate metabolic process","na":3,"nb":12,"a":[["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["GO%3A0019413","acetate biosynthetic process"],["GO%3A0045733","acetate catabolic process"],["GO%3A0006083","acetate metabolic process"],["GO%3A0045122","aflatoxin biosynthetic process"],["GO%3A0019658","bifid shunt"],["GO%3A0019475","L-lysine fermentation"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":11,"nb":3,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["Pfam%3APF14864","Alkyl sulfatase C-terminal"],["Pfam%3APF13816","Haem-containing dehydratase"],["Pfam%3APF14863","Alkyl sulfatase dimerisation"]]},{"id":"GO:0019329","l":"ammonia oxidation","na":10,"nb":3,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"]],"b":[["GO%3A0019409","aerobic respiration, using ammonia as electron donor"],["GO%3A0019329","ammonia oxidation"],["GO%3A0019331","anaerobic respiration, using ammonium as electron donor"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":3,"nb":10,"a":[["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["Pfam%3APF27445","Adaptation to cold protein A"],["Pfam%3APF27450","AtcB C-terminal domain"],["Pfam%3APF27486","AtcB N-terminal domain"],["Pfam%3APF02464","CinA C-terminal domain"],["Pfam%3APF13657","HipA N-terminal domain"],["Pfam%3APF01934","Ribonuclease HepT-like"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":3,"nb":10,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF09081","Glucan 1,4-alpha-maltotetraohydrolase, domain C"],["Pfam%3APF09459","Ethylbenzene dehydrogenase"],["Pfam%3APF08406","CbbQ/NirQ/NorQ C-terminal"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"],["Pfam%3APF18793","Nitrous oxide reductase propeller repeat 2"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":3,"nb":10,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["Pfam%3APF17433","Glycosyl hydrolase family 49 N-terminal Ig-like domain"],["PROSITE%3APS00820","Glucoamylase active site region signature"],["PROSITE%3APS00920","Nitrilases / cyanide hydratase signature 1"],["PROSITE%3APS00502","Polygalacturonase active site"],["Pfam%3APF18841","Beta solenoid repeat from Dextranase"],["Pfam%3APF03718","Glycosyl hydrolase family 49"]]},{"id":"NCBITaxon:853","l":"Faecalibacterium prausnitzii","na":3,"nb":10,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"]],"b":[["TED%3AAF-A0A2A7AJ69-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A7AJ69-F1-model_v4_TED01"],["TED%3AAF-A0A329UNG0-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A329UNG0-F1-model_v4_TED05"],["TED%3AAF-A0A3F3JVN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3F3JVN3-F1-model_v4_TED01"],["TED%3AAF-A0A564SWB8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A564SWB8-F1-model_v4_TED02"],["TED%3AAF-A0A173SIF7-F1-model_v4_TED01","TED novel fold AF-A0A173SIF7-F1-model_v4_TED01"],["TED%3AAF-A0A173WYP6-F1-model_v4_TED01","TED novel fold AF-A0A173WYP6-F1-model_v4_TED01"]]},{"id":"CHEBI:16602","l":"trichloroethene","na":9,"nb":3,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["EC%3A1.21.99.5","tetrachloroethene reductive dehalogenase"],["RHEA%3A67992","trichloroethene + AH2 = (Z)-1,2-dichloroethene + chloride + A + H(+)"],["RHEA%3A20353","trichloroethene + chloride + A + H(+) = tetrachloroethene + AH2"]]},{"id":"CHEBI:18367","l":"phosphate(3-)","na":9,"nb":3,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["proteintraitsmech%3ABIOLIP_PO4","PO4-binding site"]]},{"id":"CHEBI:87393","l":"hexan-1-ol","na":3,"nb":9,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["RHEA%3A65480","2-methylbutanoyl-CoA + hexan-1-ol = hexyl 2-methylbutanoate + CoA"],["RHEA%3A79331","hexan-1-ol + 2 Fe(III)-[cytochrome c] = hexanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A65460","hexan-1-ol + acetyl-CoA = hexyl acetate + CoA"],["RHEA%3A65444","hexan-1-ol + butanoyl-CoA = hexyl butanoate + CoA"],["RHEA%3A65484","hexan-1-ol + hexanoyl-CoA = hexyl hexanoate + CoA"],["RHEA%3A60972","hexan-1-ol + NAD(+) = hexanal + NADH + H(+)"]]},{"id":"GO:1990748","l":"cellular detoxification","na":3,"nb":9,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["GO%3A1990748","cellular detoxification"],["GO%3A0140977","cellular detoxification of acetone"],["GO%3A0110095","cellular detoxification of aldehyde"],["GO%3A0140114","cellular detoxification of fluoride"],["GO%3A0140961","cellular detoxification of metal ion"],["GO%3A0070458","cellular detoxification of nitrogen compound"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":3,"nb":8,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["Pfam%3APF01890","Cobalamin synthesis G C-terminus"],["Pfam%3APF11761","Cobalamin biosynthesis central region"],["Pfam%3APF11760","Cobalamin synthesis G N-terminal"],["Pfam%3APF02570","Precorrin-8X methylmutase"],["PROSITE%3APS00304","Small, acid-soluble spore proteins, alpha/beta type, signature 1"],["PROSITE%3APS00684","Small, acid-soluble spore proteins, alpha/beta type, signature 2"]]},{"id":"CHEBI:30742","l":"ethylene glycol","na":3,"nb":7,"a":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"]],"b":[["EC%3A3.1.1.102","mono(ethylene terephthalate) hydrolase"],["RHEA%3A42648","(2,5-ethylene furandicarboxylate)(n) + 2 H2O = (2,5-ethylene furandicarboxylate)(n-1) + 2,5-dicarboxyfuran + ethylene glycol + 2 H(+)"],["RHEA%3A49532","4-[(2-hydroxyethoxy)carbonyl]benzoate + H2O = terephthalate + ethylene glycol + H(+)"],["RHEA%3A80759","bis(2-hydroxyethyl) terephthalate + H2O = 4-[(2-hydroxyethoxy)carbonyl]benzoate + ethylene glycol + H(+)"],["RHEA%3A27630","ethylene glycol + NAD(+) = glycolaldehyde + NADH + H(+)"],["MCSA%3A847","epoxide hydrolase"]]},{"id":"NCBITaxon:28116","l":"Bacteroides ovatus","na":3,"nb":7,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["TED%3AAF-A0A515J030-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A515J030-F1-model_v4_TED01"],["TED%3AAF-A0A5M5C3M7-F1-model_v4_TED01","TED novel fold AF-A0A5M5C3M7-F1-model_v4_TED01"],["TED%3AAF-A0A641PL20-F1-model_v4_TED01","TED novel fold AF-A0A641PL20-F1-model_v4_TED01"],["TED%3AAF-A0A641V3P9-F1-model_v4_TED03","TED novel fold AF-A0A641V3P9-F1-model_v4_TED03"],["TED%3AAF-A0A641VT79-F1-model_v4_TED01","TED novel fold AF-A0A641VT79-F1-model_v4_TED01"],["TED%3AAF-A0A642C648-F1-model_v4_TED01","TED novel fold AF-A0A642C648-F1-model_v4_TED01"]]},{"id":"CHEBI:15890","l":"5,6-dimethylbenzimidazole","na":3,"nb":6,"a":[["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["EC%3A1.13.11.79","aerobic 5,6-dimethylbenzimidazole synthase"],["EC%3A2.4.2.21","nicotinate-nucleotide--dimethylbenzimidazole phosphoribosyltransferase"],["RHEA%3A11196","5,6-dimethylbenzimidazole + nicotinate beta-D-ribonucleotide = alpha-ribazole 5'-phosphate + nicotinate + H(+)"],["RHEA%3A27345","FMNH2 + O2 = dialurate + 5,6-dimethylbenzimidazole + D-erythrose 4-phosphate + H(+)"],["MCSA%3A79","nicotinate-nucleotide-dimethylbenzimidazole phosphoribosyltransferase"],["proteintraitsmech%3ABIOLIP_DMD","DMD-binding site"]]},{"id":"CHEBI:27266","l":"valine","na":3,"nb":6,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.26","The Branched Chain Amino Acid:Cation Symporter (LIVCS) Family"],["TCDB%3A2.A.78","The Branched Chain Amino Acid Exporter (LIV-E) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:55474","l":"N-acyl-L-homoserine lactone","na":3,"nb":6,"a":[["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["EC%3A2.3.1.184","acyl-homoserine-lactone synthase"],["EC%3A3.1.1.81","quorum-quenching N-acyl-homoserine lactonase"],["EC%3A3.5.1.97","acyl-homoserine-lactone acylase"],["RHEA%3A10096","a fatty acyl-[ACP] + S-adenosyl-L-methionine = an N-acyl-L-homoserine lactone + S-methyl-5'-thioadenosine + holo-[ACP] + H(+)"],["RHEA%3A22576","an N-acyl-L-homoserine lactone + H2O = an N-acyl-L-homoserine + H(+)"],["RHEA%3A18937","an N-acyl-L-homoserine lactone + H2O = L-homoserine lactone + a carboxylate"]]},{"id":"NCBITaxon:1390","l":"Bacillus amyloliquefaciens","na":3,"nb":6,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]],"b":[["Pfam%3APF02923","Restriction endonuclease BamHI"],["Pfam%3APF01337","Barstar (barnase inhibitor)"],["Pfam%3APF22148","Fervidolysin N-terminal prodomain"],["PROSITE%3APS00093","N-4 cytosine-specific DNA methylases signature"],["PROSITE%3APS01334","Pyrrolidone-carboxylate peptidase cysteine active site"],["PROSITE%3APS01333","Pyrrolidone-carboxylate peptidase glutamic acid active site"]]},{"id":"CHEBI:17015","l":"riboflavin","na":5,"nb":3,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17015","requires riboflavin"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_RBF","RBF-binding site"]]},{"id":"CHEBI:26672","l":"siderophore","na":3,"nb":5,"a":[["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_26672","siderophore cofactor class"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.17","The Outer Membrane Factor (OMF) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]]},{"id":"GO:0005987","l":"sucrose catabolic process","na":5,"nb":3,"a":[["Synechococcus_Bacillus_SPC.html","Synechococcus-Bacillus Synthetic Photosynthetic Consortium"],["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"],["Synechococcus_Saccharomyces_SPC.html","Synechococcus-Saccharomyces Synthetic Photosynthetic Consortium"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["GO%3A0061704","glycolytic process from sucrose"],["GO%3A0005987","sucrose catabolic process"],["NCBIfam%3ANF006957","fructokinase"]]},{"id":"GO:0006766","l":"vitamin metabolic process","na":3,"nb":5,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["GO%3A0042816","vitamin B6 metabolic process"],["GO%3A0009110","vitamin biosynthetic process"],["GO%3A0009111","vitamin catabolic process"],["GO%3A0006766","vitamin metabolic process"],["Reactome%3AR-HSA-211916","Vitamins"]]},{"id":"GO:0009410","l":"response to xenobiotic stimulus","na":3,"nb":5,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["SkinCom_Synthetic_Skin_Community.html","SkinCom Synthetic Skin Community"]],"b":[["GO%3A0071466","cellular response to xenobiotic stimulus"],["GO%3A0009410","response to xenobiotic stimulus"],["NCBIfam%3ATIGR00957","multi drug resistance-associated protein (MRP)"],["NCBIfam%3ANF018181","R67 dihydrofolate reductase"],["Pfam%3APF06442","R67 dihydrofolate reductase"]]},{"id":"NCBITaxon:1667","l":"Arthrobacter sp.","na":3,"nb":5,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["Pfam%3APF14031","Putative serine dehydratase domain"],["Pfam%3APF02449","Beta-galactosidase"],["Pfam%3APF08533","Beta-galactosidase C-terminal domain"],["Pfam%3APF08532","Beta-galactosidase trimerisation domain"],["TED%3AAF-A0A3C2BWN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C2BWN3-F1-model_v4_TED01"]]},{"id":"CHEBI:17191","l":"L-isoleucine","na":3,"nb":4,"a":[["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"]],"b":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.26","The Branched Chain Amino Acid:Cation Symporter (LIVCS) Family"],["proteintraitsmech%3ABIOLIP_ILE","ILE-binding site"]]},{"id":"CHEBI:18237","l":"glutamic acid","na":4,"nb":3,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:72813","l":"exopolysaccharide","na":4,"nb":3,"a":[["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.18","The Outer Membrane Auxiliary (OMA) Protein Family"]]},{"id":"GO:0019386","l":"methanogenesis, from carbon dioxide","na":3,"nb":4,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Tropidoatractus_Magnetotacticus_Tripartite_Syntrophy.html","Tropidoatractus magnetotacticus Magnetotactic Ciliate Tripartite Syntrophy"]],"b":[["GO%3A0019386","methanogenesis, from carbon dioxide"],["NCBIfam%3ATIGR01723","5,10-methenyltetrahydromethanopterin hydrogenase"],["NCBIfam%3ATIGR01112","tetrahydromethanopterin S-methyltransferase subunit D"],["NCBIfam%3ATIGR01113","tetrahydromethanopterin S-methyltransferase subunit E"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":3,"nb":4,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF09711","CRISPR-associated protein (Cas_Csn2)"],["Pfam%3APF06308","23S rRNA methylastransferase leader peptide (ErmCL)"]]},{"id":"NCBITaxon:3076","l":"Chlorella sorokiniana","na":3,"nb":4,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Dairy_Wastewater_Algal_Cyanobacterial_Cultivation_Panel.html","Dairy Wastewater Algal-Cyanobacterial Cultivation Panel"],["SynCom_Chlorella_sorokiniana_Biogas_Slurry_Coupling_System.html","SynCom + Chlorella sorokiniana Biogas-slurry Coupling System"]],"b":[["TED%3AAF-A0A2P6TR54-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P6TR54-F1-model_v4_TED01"],["TED%3AAF-A0A2P6TVK6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P6TVK6-F1-model_v4_TED01"],["TED%3AAF-A0A2P6TZ25-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2P6TZ25-F1-model_v4_TED02"],["TED%3AAF-A0A2P6TLT0-F1-model_v4_TED05","TED novel fold AF-A0A2P6TLT0-F1-model_v4_TED05"]]},{"id":"NCBITaxon:33038","l":"Mediterraneibacter gnavus","na":4,"nb":3,"a":[["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Clostridial_isoDCA_Mini_Consortium.html","Clostridial isoDCA Mini Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["Pfam%3APF16874","Glycosyl hydrolase family 36 C-terminal domain"],["Pfam%3APF16875","Glycosyl hydrolase family 36 N-terminal domain"],["Pfam%3APF04604","Type-A lantibiotic"]]},{"id":"CHEBI:16482","l":"naphthalene","na":3,"nb":3,"a":[["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"]],"b":[["EC%3A1.14.12.12","naphthalene 1,2-dioxygenase"],["RHEA%3A19173","naphthalene + NADH + O2 + H(+) = (1R,2S)-1,2-dihydronaphthalene-1,2-diol + NAD(+)"],["MCSA%3A130","naphthalene 1,2-dioxygenase"]]},{"id":"GO:0009110","l":"vitamin biosynthetic process","na":3,"nb":3,"a":[["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["GO%3A0042362","fat-soluble vitamin biosynthetic process"],["GO%3A0009110","vitamin biosynthetic process"],["GO%3A0042364","water-soluble vitamin biosynthetic process"]]},{"id":"GO:0098743","l":"cell aggregation","na":3,"nb":3,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["GO%3A0098630","aggregation of unicellular organisms"],["GO%3A0001502","cartilage condensation"],["GO%3A0098743","cell aggregation"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":3,"nb":3,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["Pfam%3APF03423","Carbohydrate binding domain (family 25)"],["Pfam%3APF03422","Carbohydrate binding module (family 6)"],["TED%3AAF-A0A7X5SGP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X5SGP7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:3702","l":"Arabidopsis thaliana","na":2,"nb":18772,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["EC%3A1.1.99.-","With other acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.14.11.-","With 2-oxoglutarate as one donor, and incorporation of one atom each of oxygen into both donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.14.-","With reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen"]]},{"id":"CHEBI:30031","l":"succinate(2-)","na":2,"nb":502,"a":[["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["EC%3A1.14.11.1","gamma-butyrobetaine dioxygenase"],["EC%3A1.14.11.10","pyrimidine-deoxynucleoside 1'-dioxygenase"],["EC%3A1.14.11.11","hyoscyamine (6S)-dioxygenase"],["EC%3A1.14.11.12","gibberellin-44 dioxygenase"],["EC%3A1.14.11.13","gibberellin 2beta-dioxygenase"],["EC%3A1.14.11.15","gibberellin 3beta-dioxygenase"]]},{"id":"GO:0010468","l":"regulation of gene expression","na":2,"nb":394,"a":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["ComplexPortal%3ACPX-1129","Atk-1/Akt-2/Sgk-1 protein kinase complex"],["ComplexPortal%3ACPX-5666","CCAAT-binding factor complex, nfya-1 variant"],["ComplexPortal%3ACPX-5667","CCAAT-binding factor complex, nfya-2 variant"],["ComplexPortal%3ACPX-4305","DHIC complex"],["ComplexPortal%3ACPX-3885","sir-2.1-ftt-2 complex"],["ComplexPortal%3ACPX-3886","sir-2.1-par-5 complex"]]},{"id":"CHEBI:4167","l":"D-glucopyranose","na":2,"nb":217,"a":[["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["EC%3A1.1.1.118","glucose 1-dehydrogenase (NAD(+))"],["EC%3A1.1.1.119","glucose 1-dehydrogenase (NADP(+))"],["EC%3A1.1.1.359","aldose 1-dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.1.360","glucose/galactose 1-dehydrogenase"],["EC%3A1.1.1.432","6-dehydroglucose reductase"],["EC%3A1.1.1.47","glucose 1-dehydrogenase [NAD(P)(+)]"]]},{"id":"CHEBI:17996","l":"chloride","na":2,"nb":196,"a":[["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17996","requires chloride"],["EC%3A1.11.2.2","myeloperoxidase"],["EC%3A1.13.11.49","chlorite O2-lyase"],["EC%3A1.14.12.13","2-halobenzoate 1,2-dioxygenase"],["EC%3A1.14.12.9","4-chlorophenylacetate 3,4-dioxygenase"],["EC%3A1.14.13.50","pentachlorophenol monooxygenase"]]},{"id":"GO:0016032","l":"viral process","na":2,"nb":113,"a":[["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"]],"b":[["GO%3A0075526","cap snatching"],["GO%3A0099015","degradation of host chromosome by virus"],["GO%3A0019043","establishment of viral latency"],["GO%3A0039674","exit of virus from host cell nucleus"],["GO%3A0039700","fusion of viral membrane with host outer nuclear membrane"],["GO%3A0075522","IRES-dependent viral translational initiation"]]},{"id":"GO:0006099","l":"tricarboxylic acid cycle","na":2,"nb":92,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["ComplexPortal%3ACPX-3921","2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-9044","Mitochondrial 2-oxoglutarate dehydrogenase complex,CG1544 variant"],["ComplexPortal%3ACPX-9043","Mitochondrial 2-oxoglutarate dehydrogenase complex, CG33791 variant"],["ComplexPortal%3ACPX-1293","Mitochondrial 2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-9061","Mitochondrial 2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-9042","Mitochondrial 2-oxoglutarate dehydrogenase complex, ODGH variant"]]},{"id":"GO:0009733","l":"response to auxin","na":2,"nb":89,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["ComplexPortal%3ACPX-1523","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK10"],["ComplexPortal%3ACPX-1524","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK11"],["ComplexPortal%3ACPX-1525","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK12"],["ComplexPortal%3ACPX-1526","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK13"],["ComplexPortal%3ACPX-1527","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK14"],["ComplexPortal%3ACPX-1528","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK15"]]},{"id":"GO:0016053","l":"obsolete organic acid biosynthetic process","na":2,"nb":83,"a":[["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Wollastonite_Ramichloridium_Talaromyces_Fungal_Consortium.html","Wollastonite Ramichloridium-Talaromyces Fungal Consortium"]],"b":[["PANTHER%3APTHR43090","1-(5-PHOSPHORIBOSYL)-5-[(5-PHOSPHORIBOSYLAMINO)METHYLIDENEAMINO] IMIDAZOLE-4-CARBOXAMIDE ISOMERASE"],["PANTHER%3APTHR43699","3-DEHYDROQUINATE DEHYDRATASE"],["PANTHER%3APTHR42979","3-ISOPROPYLMALATE DEHYDROGENASE"],["PANTHER%3APTHR20881","3-METHYL-2-OXOBUTANOATE HYDROXYMETHYLTRANSFERASE"],["PANTHER%3APTHR46832","5'-METHYLTHIOADENOSINE/S-ADENOSYLHOMOCYSTEINE NUCLEOSIDASE"],["PANTHER%3APTHR31242","ACETOLACTATE SYNTHASE SMALL SUBUNIT, MITOCHONDRIAL"]]},{"id":"CHEBI:15354","l":"choline","na":2,"nb":78,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["EC%3A1.1.3.17","choline oxidase"],["EC%3A1.1.99.1","choline dehydrogenase"],["EC%3A1.14.15.7","choline monooxygenase"],["EC%3A2.3.1.6","choline O-acetyltransferase"],["EC%3A2.3.1.91","sinapoylglucose--choline O-sinapoyltransferase"],["EC%3A2.7.1.32","choline kinase"]]},{"id":"CHEBI:29806","l":"fumarate(2-)","na":2,"nb":76,"a":[["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["EC%3A1.3.1.6","fumarate reductase (NADH)"],["EC%3A1.3.2.4","fumarate reductase (cytochrome)"],["EC%3A1.3.4.1","fumarate reductase (CoM/CoB)"],["EC%3A1.3.5.1","succinate dehydrogenase"],["EC%3A1.3.98.1","dihydroorotate oxidase (fumarate)"],["EC%3A3.7.1.14","2-hydroxy-6-oxonona-2,4-dienedioate hydrolase"]]},{"id":"CHEBI:15422","l":"ATP","na":2,"nb":68,"a":[["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15422","requires ATP"],["ARO%3A3002628","aad(6)"],["ARO%3A3002601","aadA"],["ARO%3A3004692","aadA10"],["ARO%3A3002611","aadA11"],["ARO%3A3002612","aadA12"]]},{"id":"CHEBI:16947","l":"citrate(3-)","na":2,"nb":49,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["EC%3A2.3.3.1","citrate (Si)-synthase"],["EC%3A2.3.3.16","citrate synthase (unknown stereospecificity)"],["EC%3A2.3.3.3","citrate (Re)-synthase"],["EC%3A2.3.3.8","ATP citrate synthase"],["EC%3A2.8.3.10","citrate CoA-transferase"],["EC%3A4.1.3.6","citrate (pro-3S)-lyase"]]},{"id":"GO:0009063","l":"amino acid catabolic process","na":2,"nb":47,"a":[["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"]],"b":[["ComplexPortal%3ACPX-865","Electron transfer flavoprotein complex"],["ComplexPortal%3ACPX-2731","Mitochondrial electron transfer flavoprotein complex"],["GO%3A0042217","1-aminocyclopropane-1-carboxylate catabolic process"],["GO%3A0009063","amino acid catabolic process"],["GO%3A0019665","amino acid fermentation"],["GO%3A0019484","beta-alanine catabolic process"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":46,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF13166","AAA domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF27533","CapK C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"]]},{"id":"CHEBI:16480","l":"nitric oxide","na":2,"nb":43,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"]],"b":[["EC%3A1.14.12.17","nitric oxide dioxygenase"],["EC%3A1.14.13.39","nitric-oxide synthase (NADPH)"],["EC%3A1.14.14.47","nitric-oxide synthase (flavodoxin)"],["EC%3A1.14.15.41","L-tryptophan 4-nitrase"],["EC%3A1.14.15.42","L-tyrosine 3-nitrase"],["EC%3A1.7.1.14","nitric oxide reductase [NAD(P)(+), nitrous oxide-forming]"]]},{"id":"GO:0030163","l":"protein catabolic process","na":2,"nb":40,"a":[["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"]],"b":[["ComplexPortal%3ACPX-1655","i-AAA complex"],["ComplexPortal%3ACPX-1654","m-AAA protease complex"],["GO%3A0002077","acrosome matrix dispersal"],["GO%3A0061684","chaperone-mediated autophagy"],["GO%3A0007174","epidermal growth factor catabolic process"],["GO%3A0006516","glycoprotein catabolic process"]]},{"id":"GO:0019684","l":"photosynthesis, light reaction","na":2,"nb":39,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]],"b":[["GO%3A0019684","photosynthesis, light reaction"],["NCBIfam%3ANF058510","bifunctional rod-capping linker CpcD/ferredoxin--NADP reductase PetH"],["NCBIfam%3ATIGR01332","cytochrome b559 subunit alpha"],["NCBIfam%3ATIGR01333","cytochrome b559 subunit beta"],["NCBIfam%3ANF043009","cytochrome c-554 Puf2C"],["NCBIfam%3ANF040862","light-harvesting antenna LH1, beta subunit"]]},{"id":"GO:0006006","l":"glucose metabolic process","na":2,"nb":38,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["GO%3A0006094","gluconeogenesis"],["GO%3A0006007","glucose catabolic process"],["GO%3A0006006","glucose metabolic process"],["Reactome%3AR-HSA-70326","Glucose metabolism"],["NCBIfam%3ANF033735","ArsJ-associated glyceraldehyde-3-phosphate dehydrogenase"],["NCBIfam%3ANF045551","ATP-dependent glucokinase"]]},{"id":"GO:0008643","l":"carbohydrate transport","na":2,"nb":38,"a":[["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["ComplexPortal%3ACPX-5990","sgcABC sugar permease enzyme II complex"],["GO%3A0033231","carbohydrate export"],["GO%3A0034219","carbohydrate transmembrane transport"],["GO%3A0008643","carbohydrate transport"],["GO%3A0015772","oligosaccharide transport"],["GO%3A0015774","polysaccharide transport"]]},{"id":"CHEBI:16150","l":"benzoate","na":2,"nb":36,"a":[["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["EC%3A1.14.12.10","benzoate 1,2-dioxygenase"],["EC%3A1.14.14.92","benzoate 4-monooxygenase"],["EC%3A1.2.1.28","benzaldehyde dehydrogenase (NAD(+))"],["EC%3A1.2.1.7","benzaldehyde dehydrogenase (NADP(+))"],["EC%3A2.1.1.273","benzoate O-methyltransferase"],["EC%3A3.1.1.84","cocaine esterase"]]},{"id":"GO:0000272","l":"polysaccharide catabolic process","na":2,"nb":36,"a":[["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["GO%3A0042122","alginic acid catabolic process"],["GO%3A0031222","arabinan catabolic process"],["GO%3A0030995","cell septum edging catabolic process"],["GO%3A0044347","cell wall polysaccharide catabolic process"],["GO%3A0010147","fructan catabolic process"],["GO%3A2000885","galactoglucomannan catabolic process"]]},{"id":"GO:0009628","l":"response to abiotic stimulus","na":2,"nb":34,"a":[["South_Bay_Salt_Pond_Methane_Restoration_Community.html","South Bay Salt Pond Methane Restoration Microbial Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"]],"b":[["GO%3A0071214","cellular response to abiotic stimulus"],["GO%3A0009582","detection of abiotic stimulus"],["GO%3A0097318","invasive growth in response to abiotic stimulus"],["GO%3A0009628","response to abiotic stimulus"],["GO%3A0051602","response to electrical stimulus"],["GO%3A0009629","response to gravity"]]},{"id":"GO:0007154","l":"cell communication","na":2,"nb":32,"a":[["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["GO%3A0007412","axon target recognition"],["GO%3A0007267","cell-cell signaling"],["GO%3A0010643","cell communication by chemical coupling"],["GO%3A0010644","cell communication by electrical coupling"],["GO%3A0007154","cell communication"],["GO%3A0086065","cell communication involved in cardiac conduction"]]},{"id":"GO:0009228","l":"thiamine biosynthetic process","na":2,"nb":32,"a":[["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"],["Variovorax_Cryptococcus_Vitamin_Mutualism_Microcosm.html","Variovorax-Cryptococcus Vitamin Cross-Feeding Microcosm"]],"b":[["ComplexPortal%3ACPX-2140","iscS-thiI sulfurtransferase complex"],["GO%3A0009228","thiamine biosynthetic process"],["GO%3A0036172","thiamine salvage"],["NCBIfam%3ATIGR00204","1-deoxy-D-xylulose-5-phosphate synthase"],["NCBIfam%3ATIGR02351","2-iminoacetate synthase ThiH"],["NCBIfam%3ANF009078","bifunctional hydroxymethylpyrimidine kinase/phosphomethylpyrimidine kinase"]]},{"id":"CHEBI:15882","l":"phenol","na":2,"nb":31,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]],"b":[["EC%3A1.14.13.244","phenol 2-monooxygenase (NADH)"],["EC%3A1.14.13.7","phenol 2-monooxygenase (NADPH)"],["EC%3A1.14.14.20","phenol 2-monooxygenase (FADH2)"],["EC%3A2.1.1.25","phenol O-methyltransferase"],["EC%3A2.4.2.55","nicotinate D-ribonucleotide:phenol phospho-D-ribosyltransferase"],["EC%3A2.7.1.238","phenol phosphorylase"]]},{"id":"CHEBI:15347","l":"acetone","na":2,"nb":27,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["EC%3A1.1.1.80","isopropanol dehydrogenase (NADP(+))"],["EC%3A1.14.13.226","acetone monooxygenase (methyl acetate-forming)"],["EC%3A1.14.14.141","psoralen synthase"],["EC%3A1.14.14.148","angelicin synthase"],["EC%3A2.6.3.1","oximinotransferase"],["EC%3A4.1.1.4","acetoacetate decarboxylase"]]},{"id":"CHEBI:57586","l":"biotinate","na":2,"nb":24,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_57586","requires biotinate"],["EC%3A2.8.1.6","biotin synthase"],["EC%3A3.5.1.12","biotinidase"],["EC%3A6.2.1.11","biotin--CoA ligase"],["EC%3A6.3.4.10","biotin--[propionyl-CoA-carboxylase (ATP-hydrolyzing)] ligase"],["EC%3A6.3.4.11","biotin--[methylcrotonoyl-CoA-carboxylase] ligase"]]},{"id":"NCBITaxon:160488","l":"Pseudomonas putida (strain ATCC 47054 / DSM 6125 / CFBP 8728 / NCIMB 11950 / KT2440)","na":2,"nb":24,"a":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"]],"b":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF00842","Alanine racemase, C-terminal domain"],["Pfam%3APF01168","Alanine racemase, N-terminal domain"],["Pfam%3APF13372","Alginate export"],["Pfam%3APF03705","CheR methyltransferase, all-alpha domain"],["Pfam%3APF01739","CheR methyltransferase, SAM binding domain"]]},{"id":"GO:0045333","l":"cellular respiration","na":2,"nb":21,"a":[["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"]],"b":[["ComplexPortal%3ACPX-560","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-563","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-567","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-9308","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-1721","Mitochondrial respiratory chain complex IV, COX5A variant"],["ComplexPortal%3ACPX-1722","Mitochondrial respiratory chain complex IV, COX5B variant"]]},{"id":"GO:0071248","l":"cellular response to metal ion","na":2,"nb":21,"a":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["GO%3A0071275","cellular response to aluminum ion"],["GO%3A0071276","cellular response to cadmium ion"],["GO%3A0071277","cellular response to calcium ion"],["GO%3A0071278","cellular response to cesium ion"],["GO%3A0071279","cellular response to cobalt ion"],["GO%3A0071280","cellular response to copper ion"]]},{"id":"GO:0006089","l":"lactate metabolic process","na":2,"nb":20,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"]],"b":[["ComplexPortal%3ACPX-6573","L-lactate dehydrogenase A complex"],["ComplexPortal%3ACPX-6599","L-lactate dehydrogenase B complex"],["ComplexPortal%3ACPX-6602","L-lactate dehydrogenase C complex"],["ComplexPortal%3ACPX-6598","L-lactate dehydrogenase complex, A1B3 variant"],["ComplexPortal%3ACPX-6594","L-lactate dehydrogenase complex, A2B2 variant"],["ComplexPortal%3ACPX-6592","L-lactate dehydrogenase complex, A3B1 variant"]]},{"id":"CHEBI:16750","l":"guanosine","na":2,"nb":19,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["EC%3A2.4.2.1","purine-nucleoside phosphorylase"],["EC%3A2.4.2.15","guanosine phosphorylase"],["EC%3A2.7.1.73","inosine kinase"],["EC%3A3.5.4.15","guanosine deaminase"],["RHEA%3A27862","3'-GMP + H2O = guanosine + phosphate"],["RHEA%3A27714","GMP + H2O = guanosine + phosphate"]]},{"id":"GO:0009636","l":"response to toxic substance","na":2,"nb":18,"a":[["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"]],"b":[["ComplexPortal%3ACPX-2254","Cus cation efflux complex"],["GO%3A0097237","cellular response to toxic substance"],["GO%3A0060992","response to fungicide"],["GO%3A0009635","response to herbicide"],["GO%3A0017085","response to insecticide"],["GO%3A0010188","response to microbial phytotoxin"]]},{"id":"NCBITaxon:4577","l":"Zea mays","na":2,"nb":18,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"]],"b":[["IDPO%3A0000002","disorder"],["Pfam%3APF14861","Plant antimicrobial peptide"],["Pfam%3APF02041","Auxin binding protein"],["Pfam%3APF25436","BSD2 cysteine rich domain"],["Pfam%3APF23493","Cysteinyl-tRNA ligase anticodon binding domain"],["Pfam%3APF03330","Lytic transglycolase"]]},{"id":"GO:0033103","l":"protein secretion by the type VI secretion system","na":2,"nb":17,"a":[["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"]],"b":[["GO%3A0033103","protein secretion by the type VI secretion system"],["NCBIfam%3ATIGR03354","type VI secretion system-associated FHA domain protein TagH"],["NCBIfam%3ATIGR03345","type VI secretion system ATPase TssH"],["NCBIfam%3ATIGR03357","type VI secretion system baseplate subunit TssE"],["NCBIfam%3ATIGR03359","type VI secretion system baseplate subunit TssF"],["NCBIfam%3ATIGR03347","type VI secretion system baseplate subunit TssG"]]},{"id":"GO:0051707","l":"response to other organism","na":2,"nb":17,"a":[["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0002213","defense response to insect"],["GO%3A0002215","defense response to nematode"],["GO%3A0098542","defense response to other organism"],["GO%3A0098543","detection of other organism"],["GO%3A0009617","response to bacterium"],["GO%3A0009620","response to fungus"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":2,"nb":16,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF28265","Lipoprotein N-acylation protein LnsA-like"],["Pfam%3APF16403","Bacterial surface protein, Ig-like domain"],["Pfam%3APF03944","delta endotoxin"],["Pfam%3APF03945","delta endotoxin, N-terminal domain"],["Pfam%3APF06355","Aegerolysin"]]},{"id":"GO:0006970","l":"response to osmotic stress","na":2,"nb":15,"a":[["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["GO%3A0071470","cellular response to osmotic stress"],["GO%3A0043575","detection of osmotic stimulus"],["GO%3A0006972","hyperosmotic response"],["GO%3A0006971","hypotonic response"],["GO%3A0010335","response to non-ionic osmotic stress"],["GO%3A0006970","response to osmotic stress"]]},{"id":"GO:0019645","l":"anaerobic electron transport chain","na":2,"nb":15,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["ComplexPortal%3ACPX-320","DmaABC DMSO reductase complex"],["ComplexPortal%3ACPX-1975","Formate dehydrogenase N complex"],["ComplexPortal%3ACPX-6029","Formate dehydrogenase Z complex"],["ComplexPortal%3ACPX-317","Formate hydrogenlyase-H/Hydrogenase-3 complex"],["ComplexPortal%3ACPX-6028","Formate hydrogenlyase-H/Hydrogenase-4 complex"],["ComplexPortal%3ACPX-281","Hydrogenase-1 complex"]]},{"id":"GO:0009408","l":"response to heat","na":2,"nb":14,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["PMI_Variovorax_Thermotolerance_Collection.html","PMI Variovorax Thermotolerance Collection"]],"b":[["ComplexPortal%3ACPX-4887","DNA-directed RNA polymerase holoenzyme complex, SigmaH variant"],["ComplexPortal%3ACPX-636","ISW1b chromatin remodeling complex"],["GO%3A0034605","cellular response to heat"],["GO%3A0036168","filamentous growth of a population of unicellular organisms in response to heat"],["GO%3A0010286","heat acclimation"],["GO%3A0009408","response to heat"]]},{"id":"GO:0006032","l":"chitin catabolic process","na":2,"nb":13,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["GO%3A0006032","chitin catabolic process"],["NCBIfam%3ANF052619","chitinase ChiD"],["NCBIfam%3ANF041127","exo-beta-D-glucosaminidase"],["NCBIfam%3ANF041128","glucosamine-6-phosphate deaminase"],["NCBIfam%3ATIGR03851","N-acetylglucosamine/diacetylchitobiose ABC transporter substrate-binding protein"],["InterPro%3AIPR005089","Carbohydrate-binding module family 19"]]},{"id":"NCBITaxon:272562","l":"Clostridium acetobutylicum (strain ATCC 824 / DSM 792 / JCM 1419 / IAM 19013 / LMG 5710 / NBRC 13948 / NRRL B-527 / VKM B-1787 / 2291 / W)","na":2,"nb":13,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["Pfam%3APF10882","Bacterial PH domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["Pfam%3APF09940","Domain of unknown function (DUF2172)"],["Pfam%3APF16254","Domain of unknown function (DUF4910)"],["Pfam%3APF01183","Glycosyl hydrolases family 25"],["Pfam%3APF16221","winged helix-turn-helix"]]},{"id":"NCBITaxon:644","l":"Aeromonas hydrophila","na":2,"nb":13,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["Pfam%3APF01117","Aerolysin toxin"],["Pfam%3APF03440","Aerolysin/Pertussis toxin (APT) domain"],["Pfam%3APF21327","GspA, peptidase C39-like domain"],["Pfam%3APF04231","Endonuclease I"],["PROSITE%3APS01092","Adenylate cyclase class-I signature 1"],["PROSITE%3APS01093","Adenylate cyclase class-I signature 2"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus (strain ATCC 27405 / DSM 1237 / JCM 9322 / NBRC 103400 / NCIMB 10682 / NRRL B-4536 / VPI 7372)","na":2,"nb":12,"a":[["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["Pfam%3APF00942","Cellulose binding domain"],["Pfam%3APF17996","Carbohydrate esterase 2 N-terminal"],["Pfam%3APF00963","Cohesin domain"],["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF00404","Dockerin type I domain"]]},{"id":"NCBITaxon:51453","l":"Trichoderma reesei","na":2,"nb":12,"a":[["Trichoderma_Ecoli_Cellulosic_Isobutanol_Coculture.html","Trichoderma-E. coli Cellulosic Isobutanol Coculture"],["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["Pfam%3APF28347","ACE1 small beta sheet domain"],["Pfam%3APF28329","Zinc finger transcription factor ace1 N-terminal domain"],["Pfam%3APF00150","Cellulase (glycosyl hydrolase family 5)"],["Pfam%3APF22514","EXPB1-like domain 1"],["Pfam%3APF01341","Glycosyl hydrolases family 6"],["Pfam%3APF00840","Glycosyl hydrolase family 7"]]},{"id":"GO:0015889","l":"cobalamin transport","na":2,"nb":11,"a":[["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["ComplexPortal%3ACPX-2105","Cobalamin ABC transporter complex"],["ComplexPortal%3ACPX-1083","Cobalamin outer membrane transporter complex"],["ComplexPortal%3ACPX-5774","Cubam cobalamin uptake receptor complex"],["ComplexPortal%3ACPX-5847","Cubam cobalamin uptake receptor complex"],["GO%3A0015889","cobalamin transport"],["Reactome%3AR-HSA-9758890","Transport of RCbl within the body"]]},{"id":"GO:0019605","l":"butyrate metabolic process","na":2,"nb":11,"a":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["GO%3A0030645","acetyl-CoA fermentation to butanoate"],["GO%3A0046358","butyrate biosynthetic process"],["GO%3A0046359","butyrate catabolic process"],["GO%3A0019605","butyrate metabolic process"],["GO%3A0019475","L-lysine fermentation"],["GO%3A0044813","pyruvate fermentation to butanoate"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":2,"nb":11,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["Pfam%3APF22829","HphA C-terminal domain"],["Pfam%3APF22828","HphA N-terminal heme-binding domain"],["Pfam%3APF28205","Ciprofloxacin tolerance protein"],["Pfam%3APF19582","Solute-binding protein AdeT 1/2"],["PROSITE%3APS00337","Beta-lactamase class-D active site"],["Pfam%3APF24575","Surface lipoprotein assembly modifier, N-terminal TPR repeats"]]},{"id":"CHEBI:3098","l":"bile acid","na":2,"nb":9,"a":[["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.28","The Bile Acid:Na+ Symporter (BASS) Family"],["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"],["TCDB%3A9.A.19","The Lipid Intermediate Transporter (Arv1) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":2,"nb":9,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"]],"b":[["Pfam%3APF07835","Bacterial aa3 type cytochrome c oxidase subunit IV"],["Pfam%3APF04828","Glutathione-dependent formaldehyde-activating enzyme"],["Pfam%3APF16448","LapD/MoxY periplasmic domain"],["Pfam%3APF17267","Family of unknown function (DUF5333)"],["Pfam%3APF17272","Family of unknown function (DUF5337)"],["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":2,"nb":9,"a":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF25954","CusB-like, beta-barrel domain"],["Pfam%3APF13438","Domain of unknown function (DUF4113)"],["Pfam%3APF03767","HAD superfamily, subfamily IIIB (Acid phosphatase)"],["Pfam%3APF03496","ADP-ribosyltransferase exoenzyme"]]},{"id":"CHEBI:15366","l":"acetic acid","na":8,"nb":2,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["MCSA%3A431","acetylxylan esterase"],["MCSA%3A996","Peptidoglycan-N-acetylglucosamine deacetylase Bc1960"]]},{"id":"CHEBI:16793","l":"mercury(2+)","na":2,"nb":8,"a":[["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["EC%3A1.16.1.1","mercury(II) reductase"],["EC%3A4.99.1.2","alkylmercury lyase"],["RHEA%3A18777","an alkylmercury + H(+) = an alkane + Hg(2+)"],["RHEA%3A32815","Hg(2+)(in) = Hg(2+)(out)"],["RHEA%3A23856","Hg + NADP(+) + H(+) = Hg(2+) + NADPH"],["MCSA%3A297","alkylmercury lyase"]]},{"id":"GO:0009651","l":"response to salt stress","na":2,"nb":8,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"]],"b":[["GO%3A0071472","cellular response to salt stress"],["GO%3A0042538","hyperosmotic salinity response"],["GO%3A0042539","hypotonic salinity response"],["GO%3A0072342","response to anion stress"],["GO%3A0043157","response to cation stress"],["GO%3A0009651","response to salt stress"]]},{"id":"GO:0033013","l":"tetrapyrrole metabolic process","na":2,"nb":8,"a":[["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["GO%3A0009235","cobalamin metabolic process"],["GO%3A0006778","porphyrin-containing compound metabolic process"],["GO%3A0033014","tetrapyrrole biosynthetic process"],["GO%3A0033015","tetrapyrrole catabolic process"],["GO%3A0033013","tetrapyrrole metabolic process"],["NCBIfam%3ANF047825","tryptophan-rich sensory protein TspO"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":2,"nb":8,"a":[["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]],"b":[["Pfam%3APF02927","Cellulase N-terminal ig-like domain"],["Pfam%3APF00404","Dockerin type I domain"],["PROSITE%3APS00448","Clostridium cellulosome enzymes repeated domain signature"],["PROSITE%3APS60032","Glycosyl hydrolases family 9 (GH9) active site signature 1"],["PROSITE%3APS00592","Glycosyl hydrolases family 9 (GH9) active site signature 2"],["PROSITE%3APS00698","Glycosyl hydrolases family 9 (GH9) active site signature 3"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":8,"nb":2,"a":[["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"],["Sedimenting_Arabinose_Glucose_Saccharomyces_Coculture.html","Sedimenting Arabinose-Glucose Saccharomyces Coculture"]],"b":[["PROSITE%3APS00820","Glucoamylase active site region signature"],["TED%3AAF-A0A7I9G6Y3-F1-model_v4_TED02","TED novel fold AF-A0A7I9G6Y3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:920","l":"Acidithiobacillus ferrooxidans","na":8,"nb":2,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["Pfam%3APF20538","Family of unknown function (DUF6753)"],["PROSITE%3APS01007","Transposases, Mutator family, signature"]]},{"id":"CHEBI:17824","l":"propan-2-ol","na":2,"nb":7,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"]],"b":[["EC%3A1.1.1.80","isopropanol dehydrogenase (NADP(+))"],["EC%3A1.14.13.227","propane 2-monooxygenase"],["RHEA%3A62196","propan-2-ol + 2 Fe(III)-[cytochrome c] = acetone + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A41984","propan-2-ol + NAD(+) = acetone + NADH + H(+)"],["RHEA%3A21792","propan-2-ol + NADP(+) = acetone + NADPH + H(+)"],["RHEA%3A49992","propane + NADH + O2 + H(+) = propan-2-ol + NAD(+) + H2O"]]},{"id":"CHEBI:49713","l":"lithium(1+)","na":2,"nb":7,"a":[["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["RHEA%3A72631","3 Li(+)(out) + Ca(2+)(in) = 3 Li(+)(in) + Ca(2+)(out)"],["RHEA%3A70431","Li(+)(in) + 2 H(+)(out) = Li(+)(out) + 2 H(+)(in)"],["RHEA%3A75063","Li(+)(in) + 2 hydrogencarbonate(in) + chloride(out) = Li(+)(out) + 2 hydrogencarbonate(out) + chloride(in)"],["RHEA%3A78551","Li(+)(in) = Li(+)(out)"],["RHEA%3A72415","Li(+)(in) + Na(+)(out) = Li(+)(out) + Na(+)(in)"],["RHEA%3A72407","Li(+)(out) + H(+)(in) = Li(+)(in) + H(+)(out)"]]},{"id":"GO:0043448","l":"alkane catabolic process","na":7,"nb":2,"a":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Nitratireductor_Gordonia_Z123_LDPE_Degradation_SynCom.html","Nitratireductor-Gordonia Z123 LDPE-Degradation SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"]],"b":[["GO%3A0043448","alkane catabolic process"],["GO%3A0046188","methane catabolic process"]]},{"id":"NCBITaxon:1305","l":"Streptococcus sanguinis","na":2,"nb":7,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["Pfam%3APF09254","FokI, cleavage domain"],["Pfam%3APF02981","FokI, recognition domain, subdomain 1"],["Pfam%3APF02980","FokI, recognition domain, subdomain 2"],["Pfam%3APF07501","G5 domain"],["Pfam%3APF07581","The GLUG motif"],["TED%3AAF-A0A7H8V358-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H8V358-F1-model_v4_TED01"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":2,"nb":7,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["Pfam%3APF19443","DAHL domain"],["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"],["Pfam%3APF03524","Conjugal transfer protein"],["Pfam%3APF27439","Chaperone protein DnaJ C-terminal region"],["Pfam%3APF10907","Protein of unknown function (DUF2749)"],["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":2,"nb":7,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["Pfam%3APF11766","Agglutinin-like protein, N-terminal domain"],["Pfam%3APF16856","Cell division control protein 4 dimerisation domain"],["Pfam%3APF18325","Fatty acid synthase subunit alpha Acyl carrier domain"],["Pfam%3APF18314","Fatty acid synthase type I helical domain"],["Pfam%3APF17828","N-terminal domain in fatty acid synthase subunit beta"],["Pfam%3APF05388","Carboxypeptidase Y pro-peptide"]]},{"id":"CHEBI:16457","l":"S,S-dimethyl-beta-propiothetin","na":2,"nb":6,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["EC%3A2.1.1.269","dimethylsulfoniopropionate demethylase"],["EC%3A4.4.1.3","dimethylpropiothetin dethiomethylase"],["RHEA%3A35467","S,S-dimethyl-beta-propiothetin + (6S)-5,6,7,8-tetrahydrofolate = 3-(methylsulfanyl)propanoate + (6S)-5-methyl-5,6,7,8-tetrahydrofolate + H(+)"],["RHEA%3A19965","S,S-dimethyl-beta-propiothetin = acrylate + dimethyl sulfide + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.15","The Betaine/Carnitine/Choline Transporter (BCCT) Family"]]},{"id":"CHEBI:30772","l":"butyric acid","na":6,"nb":2,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["MCSA%3A900","para-nitrobenzyl esterase"],["proteintraitsmech%3ABIOLIP_BUA","BUA-binding site"]]},{"id":"GO:0009235","l":"cobalamin metabolic process","na":2,"nb":6,"a":[["Soil_Corrinoid_B12_Reservoir_Community.html","Soil Corrinoid Reservoir Microbial Community"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["GO%3A0009236","cobalamin biosynthetic process"],["GO%3A0042366","cobalamin catabolic process"],["GO%3A0009235","cobalamin metabolic process"],["Reactome%3AR-HSA-9759218","Cobalamin (Cbl) metabolism"],["NCBIfam%3ANF021725","methylmalonic aciduria and homocystinuria type D protein"],["Pfam%3APF10229","Methylmalonic aciduria and homocystinuria type D protein"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":2,"nb":6,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]],"b":[["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF03744","6-carboxyhexanoate--CoA ligase"],["PROSITE%3APS00836","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 1"],["PROSITE%3APS00837","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 2"],["TED%3AAF-A0A2S5D092-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5D092-F1-model_v4_TED01"],["TED%3AAF-A0A2S0JW09-F1-model_v4_TED01","TED novel fold AF-A0A2S0JW09-F1-model_v4_TED01"]]},{"id":"NCBITaxon:32049","l":"Picosynechococcus sp. PCC 7002","na":2,"nb":6,"a":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"]],"b":[["Pfam%3APF09367","CpeS-like protein"],["Pfam%3APF06206","CpeT/CpcT family (DUF1001)"],["Pfam%3APF12965","Domain of unknown function (DUF3854)"],["Pfam%3APF19928","Domain of unknown function (DUF6391)"],["Pfam%3APF09366","Protein of unknown function (DUF1997)"],["Pfam%3APF14870","Photosynthesis system II assembly factor YCF48"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":2,"nb":6,"a":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["Pfam%3APF01177","Asp/Glu/Hydantoin racemase"],["Pfam%3APF11339","Protein of unknown function (DUF3141)"],["PROSITE%3APS01303","BCCT family of transporters signature"],["PROSITE%3APS00665","Dihydrodipicolinate synthase signature 1"],["TED%3AAF-A0A2J0YSD4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J0YSD4-F1-model_v4_TED01"],["TED%3AAF-A0A843ZNG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843ZNG8-F1-model_v4_TED01"]]},{"id":"CHEBI:16865","l":"gamma-aminobutyric acid","na":2,"nb":5,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A2.A.42","The Hydroxy/Aromatic Amino Acid Permease (HAAAP) Family"],["TCDB%3A2.A.22","The Neurotransmitter:Sodium Symporter (NSS) Family"],["proteintraitsmech%3ABIOLIP_ABU","ABU-binding site"]]},{"id":"NCBITaxon:3039","l":"Euglena gracilis","na":2,"nb":5,"a":[["Dairy_Wastewater_Algal_Cyanobacterial_Cultivation_Panel.html","Dairy Wastewater Algal-Cyanobacterial Cultivation Panel"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"]],"b":[["Pfam%3APF01333","Apocytochrome F, C-terminal"],["Pfam%3APF16639","Apocytochrome F, N-terminal"],["Pfam%3APF04940","Sensors of blue-light using FAD"],["Pfam%3APF10371","Domain of unknown function"],["PROSITE%3APS00938","Initiation factor 3 signature"]]},{"id":"NCBITaxon:5507","l":"Fusarium oxysporum","na":2,"nb":5,"a":[["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["Pfam%3APF02015","Glycosyl hydrolase family 45"],["PROSITE%3APS01140","Glycosyl hydrolases family 45 active site"],["TED%3AAF-A0A2H3TJY2-F1-model_v4_TED01","TED novel fold AF-A0A2H3TJY2-F1-model_v4_TED01"],["TED%3AAF-A0A420N954-F1-model_v4_TED01","TED novel fold AF-A0A420N954-F1-model_v4_TED01"],["TED%3AAF-A0A420P6J4-F1-model_v4_TED01","TED novel fold AF-A0A420P6J4-F1-model_v4_TED01"]]},{"id":"CHEBI:16995","l":"oxalic acid","na":4,"nb":2,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Wollastonite_Ramichloridium_Talaromyces_Fungal_Consortium.html","Wollastonite Ramichloridium-Talaromyces Fungal Consortium"]],"b":[["TCDB%3A2.A.53","The Sulfate Permease (SulP) Family"],["proteintraitsmech%3ABIOLIP_OXD","OXD-binding site"]]},{"id":"CHEBI:33363","l":"palladium atom","na":2,"nb":4,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_PD_DINUCLEAR","dinuclear palladium site"],["proteintraitsmech%3AMETALPDB_PD_MONONUCLEAR","mononuclear palladium site"],["proteintraitsmech%3AMETALPDB_PD_TETRANUCLEAR","tetranuclear palladium site"],["proteintraitsmech%3AMETALPDB_PD_TRINUCLEAR","trinuclear palladium site"]]},{"id":"GO:0018874","l":"benzoate metabolic process","na":4,"nb":2,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["GO%3A0043639","benzoate catabolic process"],["GO%3A0018874","benzoate metabolic process"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":2,"nb":4,"a":[["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["TED%3AAF-A0A7W3UB61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W3UB61-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F4B3-F1-model_v4_TED01","TED novel fold AF-A0A0D7F4B3-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F6R4-F1-model_v4_TED01","TED novel fold AF-A0A0D7F6R4-F1-model_v4_TED01"],["TED%3AAF-A0A7W3YI15-F1-model_v4_TED02","TED novel fold AF-A0A7W3YI15-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":4,"nb":2,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"],["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["Pfam%3APF22538","Hexaprenyl diphosphate synthase, small subunit"],["PROSITE%3APS01066","Undecaprenyl pyrophosphate synthase family signature"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":4,"nb":2,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]],"b":[["Pfam%3APF02052","Gallidermin"],["Pfam%3APF04604","Type-A lantibiotic"]]},{"id":"NCBITaxon:269797","l":"Methanosarcina barkeri str. Fusaro","na":2,"nb":4,"a":[["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["Pfam%3APF27274","Coenzyme F430 synthetase CfbE, C-terminal domain"],["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"],["Pfam%3APF09505","Dimethylamine methyltransferase (Dimeth_PyL)"],["PROSITE%3APS00507","Nickel-dependent hydrogenases large subunit signature 1"]]},{"id":"NCBITaxon:2822231","l":"Phanerodontia chrysosporium","na":2,"nb":4,"a":[["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"]],"b":[["Pfam%3APF18637","Aldos-2-ulose dehydratase/isomerase (AUDH) Cupin domain"],["Pfam%3APF16010","Cytochrome domain of cellobiose dehydrogenase"],["PROSITE%3APS00623","GMC oxidoreductases signature 1"],["Pfam%3APF22301","Aldos-2-ulose dehydratase, beta-propeller domain"]]},{"id":"NCBITaxon:37919","l":"Rhodococcus opacus","na":4,"nb":2,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"],["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["Pfam%3APF11794","4-hydroxyphenylacetate 3-hydroxylase N terminal"],["Pfam%3APF03241","4-hydroxyphenylacetate 3-hydroxylase C terminal"]]},{"id":"CHEBI:15741","l":"succinic acid","na":3,"nb":2,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_SIN","SIN-binding site"]]},{"id":"CHEBI:15956","l":"biotin","na":3,"nb":2,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15956","requires biotin"],["proteintraitsmech%3ABIOLIP_BTN","BTN-binding site"]]},{"id":"CHEBI:24898","l":"isoleucine","na":2,"nb":3,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["MCSA%3A906","gelatinase A"]]},{"id":"CHEBI:49470","l":"aluminium(3+)","na":2,"nb":3,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Rice_Acid_Soil_Bioinoculant_SynCom.html","Rice Acid Soil Bioinoculant SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["proteintraitsmech%3ABIOLIP_AL","AL-binding site"]]},{"id":"CHEBI:5199","l":"Fusaric acid","na":2,"nb":3,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["TCDB%3A2.A.85","The Aromatic Acid Exporter (ArAE) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.17","The Outer Membrane Factor (OMF) Family"]]},{"id":"CHEBI:58187","l":"alginate","na":2,"nb":3,"a":[["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["EC%3A5.1.3.37","mannuronan 5-epimerase"],["RHEA%3A45572","[(1->4)-beta-D-mannuronosyl](n) = [alginate](n)"],["RHEA%3A15637","[alginate](n) + GDP-alpha-D-mannuronate = [alginate](n+1) + GDP + H(+)"]]},{"id":"GO:0006068","l":"ethanol catabolic process","na":2,"nb":3,"a":[["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["GO%3A0006068","ethanol catabolic process"],["Reactome%3AR-HSA-71384","Ethanol oxidation"],["NCBIfam%3ANF050026","acetaldehyde dehydrogenase ExaC"]]},{"id":"GO:0019385","l":"methanogenesis, from acetate","na":2,"nb":3,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["GO%3A0019385","methanogenesis, from acetate"],["NCBIfam%3ANF014596","carbon monoxide dehydrogenase beta subunit family protein"],["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"]]},{"id":"NCBITaxon:1492","l":"Clostridium butyricum","na":2,"nb":3,"a":[["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["Pfam%3APF00302","Chloramphenicol acetyltransferase"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["PROSITE%3APS00100","Chloramphenicol acetyltransferase active site"]]},{"id":"NCBITaxon:166486","l":"Roseburia intestinalis","na":3,"nb":2,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["TED%3AAF-A0A3R6HE72-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R6HE72-F1-model_v4_TED01"],["TED%3AAF-A0A6L6XJA4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L6XJA4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:239935","l":"Akkermansia muciniphila","na":3,"nb":2,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["TED%3AAF-A0A2N8IJN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N8IJN7-F1-model_v4_TED01"],["TED%3AAF-A0A6N2UM07-F1-model_v4_TED01","TED novel fold AF-A0A6N2UM07-F1-model_v4_TED01"]]},{"id":"NCBITaxon:253","l":"Chryseobacterium indologenes","na":2,"nb":3,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"]],"b":[["PROSITE%3APS00744","Beta-lactamases class B signature 2"],["TED%3AAF-A0A7T8U7T3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T8U7T3-F1-model_v4_TED01"],["TED%3AAF-A0A0N0ZUI2-F1-model_v4_TED01","TED novel fold AF-A0A0N0ZUI2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28108","l":"Alteromonas macleodii","na":2,"nb":3,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["TED%3AAF-A0A6C5N007-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6C5N007-F1-model_v4_TED01"],["TED%3AAF-A0A126Q0V0-F1-model_v4_TED01","TED novel fold AF-A0A126Q0V0-F1-model_v4_TED01"],["TED%3AAF-A0A6T9Y0H6-F1-model_v4_TED01","TED novel fold AF-A0A6T9Y0H6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:33035","l":"Blautia producta","na":3,"nb":2,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["TED%3AAF-A0A2S4GEH6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S4GEH6-F1-model_v4_TED01"],["TED%3AAF-A0A7G5MNY0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G5MNY0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:357809","l":"Lachnoclostridium phytofermentans ISDg","na":2,"nb":3,"a":[["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"]],"b":[["Pfam%3APF09508","Lacto-N-biose phosphorylase N-terminal TIM barrel domain"],["Pfam%3APF17386","Lacto-N-biose phosphorylase C-terminal domain"],["Pfam%3APF17385","Lacto-N-biose phosphorylase central domain"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":3,"nb":2,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["PROSITE%3APS00336","Beta-lactamase class-C active site"],["TED%3AAF-A0A155XQ59-F1-model_v4_TED02","TED novel fold AF-A0A155XQ59-F1-model_v4_TED02"]]},{"id":"NCBITaxon:561879","l":"Bacillus safensis","na":2,"nb":3,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"]],"b":[["Pfam%3APF09221","Bacteriocin class IId cyclical uberolysin-like"],["TED%3AAF-A0A1L6ZPA6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6ZPA6-F1-model_v4_TED01"],["TED%3AAF-A0A1L6ZPC9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6ZPC9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:587753","l":"Pseudomonas chlororaphis","na":3,"nb":2,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["TED%3AAF-A0A8A9Z2C4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A8A9Z2C4-F1-model_v4_TED03"],["TED%3AAF-A0A0A6DEM6-F1-model_v4_TED01","TED novel fold AF-A0A0A6DEM6-F1-model_v4_TED01"]]},{"id":"CHEBI:15930","l":"atrazine","na":2,"nb":2,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["EC%3A3.8.1.8","atrazine chlorohydrolase"],["RHEA%3A11312","atrazine + H2O = hydroxyatrazine + chloride + H(+)"]]},{"id":"CHEBI:16094","l":"thiosulfate(2-)","na":2,"nb":2,"a":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["proteintraitsmech%3ABIOLIP_THJ","THJ-binding site"]]},{"id":"CHEBI:17300","l":"tetrachloroethene","na":2,"nb":2,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["EC%3A1.21.99.5","tetrachloroethene reductive dehalogenase"],["RHEA%3A20353","trichloroethene + chloride + A + H(+) = tetrachloroethene + AH2"]]},{"id":"CHEBI:231672","l":"bis(2-hydroxyethyl) terephthalate","na":2,"nb":2,"a":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["RHEA%3A80759","bis(2-hydroxyethyl) terephthalate + H2O = 4-[(2-hydroxyethoxy)carbonyl]benzoate + ethylene glycol + H(+)"],["proteintraitsmech%3ABIOLIP_C8X","C8X-binding site"]]},{"id":"CHEBI:27518","l":"acetylene","na":2,"nb":2,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"]],"b":[["EC%3A4.2.1.112","acetylene hydratase"],["RHEA%3A17885","acetaldehyde = acetylene + H2O"]]},{"id":"CHEBI:30046","l":"oxidovanadium(2+)","na":2,"nb":2,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["RHEA%3A75007","VO(2+)(out) + H(+)(out) = VO(2+)(in) + H(+)(in)"],["proteintraitsmech%3ABIOLIP_VVO","VVO-binding site"]]},{"id":"CHEBI:30751","l":"formic acid","na":2,"nb":2,"a":[["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["MCSA%3A38","GTP cyclohydrolase I"],["proteintraitsmech%3ABIOLIP_FMT","FMT-binding site"]]},{"id":"CHEBI:47916","l":"flavonoid","na":2,"nb":2,"a":[["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]]},{"id":"CHEBI:48782","l":"cerium(3+)","na":2,"nb":2,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_48782","requires cerium(3+)"],["proteintraitsmech%3ABIOLIP_CE","CE-binding site"]]},{"id":"CHEBI:49701","l":"lanthanum(3+)","na":2,"nb":2,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_49701","requires lanthanum(3+)"],["proteintraitsmech%3ABIOLIP_LA","LA-binding site"]]},{"id":"CHEBI:8005","l":"peptidoglycan","na":2,"nb":2,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.17","The Proton-dependent Oligopeptide Transporter (POT/PTR) Family"]]},{"id":"GO:0005983","l":"starch catabolic process","na":2,"nb":2,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"]],"b":[["GO%3A0005983","starch catabolic process"],["NCBIfam%3ATIGR02103","pullulanase-type alpha-1,6-glucosidase"]]},{"id":"NCBITaxon:145262","l":"Methanothermobacter thermautotrophicus","na":2,"nb":2,"a":[["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]],"b":[["Pfam%3APF12686","Protein of unknown function (DUF3800)"],["PROSITE%3APS00093","N-4 cytosine-specific DNA methylases signature"]]},{"id":"NCBITaxon:2162","l":"Methanobacterium formicicum","na":2,"nb":2,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"]],"b":[["Pfam%3APF04432","Coenzyme F420 hydrogenase/dehydrogenase, beta subunit C terminus"],["Pfam%3APF04422","Coenzyme F420 hydrogenase/dehydrogenase, beta subunit N-term"]]},{"id":"NCBITaxon:2223","l":"Methanothrix soehngenii","na":2,"nb":2,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"],["TED%3AAF-A0A7K4AJW5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K4AJW5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:39152","l":"Methanococcus maripaludis","na":2,"nb":2,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"]],"b":[["Pfam%3APF02571","Precorrin-6x reductase CbiJ/CobK"],["TED%3AAF-A0A7J9PSA9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J9PSA9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:39488","l":"Anaerobutyricum hallii","na":2,"nb":2,"a":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["TED%3AAF-A0A414B1Y3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A414B1Y3-F1-model_v4_TED01"],["TED%3AAF-A0A415G3S7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A415G3S7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:4952","l":"Yarrowia lipolytica","na":2,"nb":2,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Yarrowia_lipolytica_Division_of_Labor_Lipid_Consortium.html","Yarrowia lipolytica Division-of-Labor Lipid Consortium"]],"b":[["TED%3AAF-A0A7H0KE04-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H0KE04-F1-model_v4_TED01"],["TED%3AAF-A0A371C7L0-F1-model_v4_TED02","TED novel fold AF-A0A371C7L0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:84022","l":"Andreesenella acetica","na":2,"nb":2,"a":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"]],"b":[["TED%3AAF-A0A0D8IAM1-F1-model_v4_TED01","TED novel fold AF-A0A0D8IAM1-F1-model_v4_TED01"],["TED%3AAF-A0A0D8IBN9-F1-model_v4_TED02","TED novel fold AF-A0A0D8IBN9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":1,"nb":49554,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["EC%3A1.1.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.1.98.-","With other, known, acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":1,"nb":17470,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["EC%3A1.1.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.16.-.-","Oxidizing metal ions"],["EC%3A1.18.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.7.-","With an iron-sulfur protein as acceptor"]]},{"id":"CHEBI:15378","l":"hydron","na":1,"nb":14383,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.1.10","L-xylulose reductase"],["EC%3A1.1.1.100","3-oxoacyl-[acyl-carrier-protein] reductase"],["EC%3A1.1.1.101","acylglycerone-phosphate reductase"],["EC%3A1.1.1.102","3-dehydrosphinganine reductase"],["EC%3A1.1.1.103","L-threonine 3-dehydrogenase"]]},{"id":"NCBITaxon:7227","l":"Drosophila melanogaster","na":1,"nb":11343,"a":[["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.14.15.-","With reduced iron-sulfur protein as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.17.-","With reduced ascorbate as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.-.-","Acting on paired donors, with incorporation or reduction of molecular oxygen. The oxygen incorporated need not be derived from O2"],["EC%3A1.2.4.-","With a disulfide as acceptor"],["EC%3A1.6.99.-","With other acceptors"]]},{"id":"NCBITaxon:6239","l":"Caenorhabditis elegans","na":1,"nb":9682,"a":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"]],"b":[["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.14.14.-","With reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.17.-","With reduced ascorbate as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.19.-","With oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water"],["EC%3A1.14.99.-","Miscellaneous"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii (strain ATCC 43067 / DSM 2661 / JAL-1 / JCM 10045 / NBRC 100440)","na":1,"nb":5181,"a":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]],"b":[["EC%3A1.12.99.-","With other acceptors"],["EC%3A1.3.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.3.-.-","Acting on the CH-CH group of donors"],["EC%3A1.8.98.-","With other, known, acceptors"],["EC%3A1.97.1.-","Other oxidoreductases"],["EC%3A2.1.2.-","Hydroxymethyl-, formyl- and related transferases"]]},{"id":"GO:0006355","l":"regulation of DNA-templated transcription","na":1,"nb":1131,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["ComplexPortal%3ACPX-2829","ACF chromatin remodeling complex"],["ComplexPortal%3ACPX-2742","ATAC histone acetyltransferase complex"],["ComplexPortal%3ACPX-8344","BRE1 E3 ubiquitin ligase complex"],["ComplexPortal%3ACPX-1830","CCAAT-binding factor complex"],["ComplexPortal%3ACPX-2767","CCAAT-binding factor complex"],["ComplexPortal%3ACPX-2771","CCR4-NOT mRNA deadenylase complex"]]},{"id":"CHEBI:16810","l":"2-oxoglutarate(2-)","na":1,"nb":672,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"]],"b":[["EC%3A1.1.1.286","isocitrate--homoisocitrate dehydrogenase"],["EC%3A1.1.1.399","2-oxoglutarate reductase"],["EC%3A1.1.1.41","isocitrate dehydrogenase (NAD(+))"],["EC%3A1.1.1.42","isocitrate dehydrogenase (NADP(+))"],["EC%3A1.1.5.13","(S)-2-hydroxyglutarate dehydrogenase"],["EC%3A1.1.99.2","L-2-hydroxyglutarate dehydrogenase"]]},{"id":"GO:0006412","l":"translation","na":1,"nb":455,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["GO%3A0002181","cytoplasmic translation"],["GO%3A0032543","mitochondrial translation"],["GO%3A0032544","plastid translation"],["GO%3A0140241","translation at synapse"],["GO%3A0006412","translation"],["Reactome%3AR-HSA-72766","Translation"]]},{"id":"GO:0055085","l":"transmembrane transport","na":1,"nb":439,"a":[["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"]],"b":[["ComplexPortal%3ACPX-271","5-hydroxytryptamine-3A/B receptor complex"],["ComplexPortal%3ACPX-275","5-hydroxytryptamine-3A/B receptor complex"],["ComplexPortal%3ACPX-277","5-hydroxytryptamine-3A/B receptor complex"],["ComplexPortal%3ACPX-276","5-hydroxytryptamine-3A/C receptor complex"],["ComplexPortal%3ACPX-272","5-hydroxytryptamine-3A/D receptor complex"],["ComplexPortal%3ACPX-273","5-hydroxytryptamine-3A/E receptor complex"]]},{"id":"CHEBI:29985","l":"L-glutamate(1-)","na":1,"nb":426,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["EC%3A1.14.11.76","L-glutamate 3(R)-hydroxylase"],["EC%3A1.2.1.88","L-glutamate gamma-semialdehyde dehydrogenase"],["EC%3A1.4.1.13","glutamate synthase (NADPH)"],["EC%3A1.4.1.14","glutamate synthase (NADH)"],["EC%3A1.4.1.2","glutamate dehydrogenase"],["EC%3A1.4.1.3","glutamate dehydrogenase [NAD(P)(+)]"]]},{"id":"GO:0006508","l":"proteolysis","na":1,"nb":393,"a":[["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"]],"b":[["ComplexPortal%3ACPX-6224","Active Protein C complex"],["ComplexPortal%3ACPX-6222","alpha-thrombin complex"],["ComplexPortal%3ACPX-3663","Caspase-8 complex"],["ComplexPortal%3ACPX-975","Caspase-8 complex"],["ComplexPortal%3ACPX-6221","Coagulation factor Va-Xa complex"],["ComplexPortal%3ACPX-279","Coagulation factor VIIa - tissue factor complex"]]},{"id":"GO:0006260","l":"DNA replication","na":1,"nb":311,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["ComplexPortal%3ACPX-6641","ASCC DNA alkylation repair complex"],["ComplexPortal%3ACPX-568","Chromatin assembly factor 1 complex"],["ComplexPortal%3ACPX-2671","CMG helicase complex"],["ComplexPortal%3ACPX-297","CMG helicase complex"],["ComplexPortal%3ACPX-4526","CMG helicase complex"],["ComplexPortal%3ACPX-4541","CMG helicase complex"]]},{"id":"CHEBI:29101","l":"sodium(1+)","na":1,"nb":292,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29101","requires sodium(1+)"],["EC%3A7.2.1.1","NADH:ubiquinone reductase (Na(+)-transporting)"],["EC%3A7.2.1.2","ferredoxin--NAD(+) oxidoreductase (Na(+)-transporting)"],["EC%3A7.2.1.4","tetrahydromethanopterin S-methyltransferase"],["EC%3A7.2.2.1","Na(+)-transporting two-sector ATPase"],["EC%3A7.2.2.13","Na(+)/K(+)-exchanging ATPase"]]},{"id":"GO:0006096","l":"glycolytic process","na":1,"nb":117,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["ComplexPortal%3ACPX-1992","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-2039","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-2040","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-1994","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"],["ComplexPortal%3ACPX-2041","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"],["ComplexPortal%3ACPX-2042","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"]]},{"id":"GO:0042221","l":"response to chemical","na":1,"nb":104,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0070887","cellular response to chemical stimulus"],["GO%3A0036503","ERAD pathway"],["GO%3A1904612","response to 2,3,7,8-tetrachlorodibenzodioxine"],["GO%3A1904610","response to 3,3',4,4',5-pentachlorobiphenyl"],["GO%3A0036275","response to 5-fluorouracil"],["GO%3A0001101","response to acid chemical"]]},{"id":"GO:0009252","l":"peptidoglycan biosynthetic process","na":1,"nb":90,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["GO%3A0009252","peptidoglycan biosynthetic process"],["GO%3A0018104","peptidoglycan-protein cross-linking"],["NCBIfam%3ATIGR00492","alanine racemase"],["NCBIfam%3ANF007061","bifunctional glycosyl transferase/transpeptidase"],["NCBIfam%3ANF006986","bifunctional UDP-N-acetylglucosamine diphosphorylase/glucosamine-1-phosphate N-acetyltransferase GlmU"]]},{"id":"GO:0009306","l":"protein secretion","na":1,"nb":84,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["GO%3A0070162","adiponectin secretion"],["GO%3A0036394","amylase secretion"],["GO%3A0110010","basolateral protein secretion"],["GO%3A0038055","BMP secretion"],["GO%3A0030073","insulin secretion"],["GO%3A1990773","matrix metallopeptidase secretion"]]},{"id":"GO:0006796","l":"phosphate-containing compound metabolic process","na":1,"nb":72,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"]],"b":[["GO%3A0016311","dephosphorylation"],["GO%3A0006796","phosphate-containing compound metabolic process"],["GO%3A0016310","phosphorylation"],["NCBIfam%3ANF053626","ATP-dependent ribose-1-phosphate kinase"],["NCBIfam%3ANF002317","inorganic diphosphatase"],["NCBIfam%3ATIGR02966","phosphate regulon sensor histidine kinase PhoR"]]},{"id":"GO:0048519","l":"negative regulation of biological process","na":1,"nb":72,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["GO%3A1905869","negative regulation of 3'-UTR-mediated mRNA stabilization"],["GO%3A0045759","negative regulation of action potential"],["GO%3A0048519","negative regulation of biological process"],["GO%3A0030712","negative regulation of border follicle cell delamination"],["GO%3A1903780","negative regulation of cardiac conduction"],["GO%3A0048523","negative regulation of cellular process"]]},{"id":"GO:0006631","l":"fatty acid metabolic process","na":1,"nb":71,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["ComplexPortal%3ACPX-6169","Mitochondrial propionyl-CoA carboxylase complex"],["ComplexPortal%3ACPX-1038","PIP2-OAF1 transcription factor complex"],["ComplexPortal%3ACPX-25756","SREBP-SCAP transcription regulator complex"],["GO%3A0006633","fatty acid biosynthetic process"],["GO%3A0009062","fatty acid catabolic process"],["GO%3A0006631","fatty acid metabolic process"]]},{"id":"GO:0006955","l":"immune response","na":1,"nb":69,"a":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"]],"b":[["ComplexPortal%3ACPX-381","Interleukin-12 complex"],["ComplexPortal%3ACPX-387","Interleukin-12 complex"],["ComplexPortal%3ACPX-382","Interleukin-12-receptor ligand complex"],["ComplexPortal%3ACPX-3290","Interleukin-23 complex"],["ComplexPortal%3ACPX-389","Interleukin-23-receptor complex"],["ComplexPortal%3ACPX-383","Interleukin-23 receptor-ligand complex"]]},{"id":"GO:0006814","l":"sodium ion transport","na":1,"nb":67,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"]],"b":[["GO%3A0003096","renal sodium ion transport"],["GO%3A0035725","sodium ion transmembrane transport"],["GO%3A0006814","sodium ion transport"],["NCBIfam%3ANF050096","bicarbonate transporter BicA"],["NCBIfam%3ATIGR02711","cation/acetate symporter ActP"],["NCBIfam%3ANF047943","citrate/sodium symporter CitS"]]},{"id":"GO:0006950","l":"response to stress","na":1,"nb":67,"a":[["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"]],"b":[["GO%3A0033554","cellular response to stress"],["GO%3A0006952","defense response"],["GO%3A0033555","multicellular organismal response to stress"],["GO%3A0003299","muscle hypertrophy in response to stress"],["GO%3A0009271","phage shock"],["GO%3A0034059","response to anoxia"]]},{"id":"GO:0000271","l":"polysaccharide biosynthetic process","na":1,"nb":66,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"]],"b":[["ComplexPortal%3ACPX-417","Glucosidase II complex"],["GO%3A0051072","4,6-pyruvylated galactose residue biosynthetic process"],["GO%3A0042121","alginic acid biosynthetic process"],["GO%3A0035884","arabinan biosynthetic process"],["GO%3A0045227","capsule polysaccharide biosynthetic process"],["GO%3A0070592","cell wall polysaccharide biosynthetic process"]]},{"id":"GO:0044282","l":"small molecule catabolic process","na":1,"nb":63,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"]],"b":[["GO%3A0046164","alcohol catabolic process"],["GO%3A0046395","carboxylic acid catabolic process"],["GO%3A0019341","dibenzo-p-dioxin catabolic process"],["GO%3A0046294","formaldehyde catabolic process"],["GO%3A0046952","ketone body catabolic process"],["GO%3A0042182","ketone catabolic process"]]},{"id":"GO:0071973","l":"bacterial-type flagellum-dependent cell motility","na":1,"nb":60,"a":[["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"]],"b":[["ComplexPortal%3ACPX-4886","DNA-directed RNA polymerase holoenzyme complex, SigmaF variant"],["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["GO%3A0071973","bacterial-type flagellum-dependent cell motility"],["GO%3A0071978","bacterial-type flagellum-dependent swarming motility"]]},{"id":"GO:0019752","l":"carboxylic acid metabolic process","na":1,"nb":59,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"]],"b":[["GO%3A1902056","(25S)-Delta(7)-dafachronate metabolic process"],["GO%3A0006525","arginine metabolic process"],["GO%3A0009072","aromatic amino acid metabolic process"],["GO%3A0018872","arsonoacetate metabolic process"],["GO%3A0120552","branched-chain alpha-keto acid decarboxylation to branched-chain acyl-CoA"],["GO%3A0009081","branched-chain amino acid metabolic process"]]},{"id":"CHEBI:17879","l":"4-hydroxybenzoate","na":1,"nb":57,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["EC%3A1.13.11.41","2,4'-dihydroxyacetophenone dioxygenase"],["EC%3A1.14.13.2","4-hydroxybenzoate 3-monooxygenase"],["EC%3A1.14.13.33","4-hydroxybenzoate 3-monooxygenase [NAD(P)H]"],["EC%3A1.14.13.64","4-hydroxybenzoate 1-hydroxylase"],["EC%3A1.14.14.92","benzoate 4-monooxygenase"],["EC%3A1.14.19.55","4-hydroxybenzoate brominase (decarboxylating)"]]},{"id":"CHEBI:15589","l":"(S)-malate(2-)","na":1,"nb":56,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["EC%3A1.1.1.299","malate dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.1.37","(S)-malate dehydrogenase (NAD(+), oxaloacetate-forming)"],["EC%3A1.1.1.38","malate dehydrogenase (oxaloacetate-decarboxylating)"],["EC%3A1.1.1.39","malate dehydrogenase (decarboxylating)"],["EC%3A1.1.1.40","malate dehydrogenase (oxaloacetate-decarboxylating) (NADP(+))"],["EC%3A1.1.1.82","malate dehydrogenase (NADP(+))"]]},{"id":"NCBITaxon:2","l":"Bacteria","na":56,"nb":1,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2","Bacteria orthologous groups (OrthoDB)"]]},{"id":"GO:0046394","l":"carboxylic acid biosynthetic process","na":1,"nb":55,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["GO%3A0042861","achromobactin biosynthetic process"],["GO%3A1901112","actinorhodin biosynthetic process"],["GO%3A0006523","alanine biosynthetic process"],["GO%3A0019578","aldaric acid biosynthetic process"],["GO%3A0042121","alginic acid biosynthetic process"],["GO%3A0009073","aromatic amino acid biosynthetic process"]]},{"id":"GO:0006094","l":"gluconeogenesis","na":1,"nb":52,"a":[["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"]],"b":[["ComplexPortal%3ACPX-1992","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-2039","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-2040","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-1994","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"],["ComplexPortal%3ACPX-2041","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"],["ComplexPortal%3ACPX-2042","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"]]},{"id":"GO:0006865","l":"amino acid transport","na":1,"nb":52,"a":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"]],"b":[["GO%3A0015800","acidic amino acid transport"],["GO%3A0043090","amino acid import"],["GO%3A0051933","amino acid neurotransmitter reuptake"],["GO%3A0003333","amino acid transmembrane transport"],["GO%3A0006865","amino acid transport"],["GO%3A0015802","basic amino acid transport"]]},{"id":"GO:0009117","l":"nucleotide metabolic process","na":1,"nb":50,"a":[["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"]],"b":[["GO%3A0009394","2'-deoxyribonucleotide metabolic process"],["GO%3A0009187","cyclic nucleotide metabolic process"],["GO%3A0015959","diadenosine polyphosphate metabolic process"],["GO%3A0072387","flavin adenine dinucleotide metabolic process"],["GO%3A0046496","nicotinamide nucleotide metabolic process"],["GO%3A0009165","nucleotide biosynthetic process"]]},{"id":"GO:0044550","l":"secondary metabolite biosynthetic process","na":1,"nb":46,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["GO%3A1900581","(17Z)-protosta-17(20),24-dien-3beta-ol biosynthetic process"],["GO%3A0009821","alkaloid biosynthetic process"],["GO%3A1900587","arugosin biosynthetic process"],["GO%3A0036184","asperthecin biosynthetic process"],["GO%3A0062032","cichorine biosynthetic process"],["GO%3A1900799","cordyol C biosynthetic process"]]},{"id":"CHEBI:30212","l":"photon","na":1,"nb":45,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["EC%3A1.10.3.9","photosystem II"],["EC%3A1.13.12.13","Oplophorus-luciferin 2-monooxygenase"],["EC%3A1.13.12.18","dinoflagellate luciferase"],["EC%3A1.13.12.5","Renilla-type luciferase"],["EC%3A1.13.12.6","Cypridina-luciferin 2-monooxygenase"],["EC%3A1.13.12.7","firefly luciferase"]]},{"id":"CHEBI:506227","l":"N-acetyl-D-glucosamine","na":1,"nb":44,"a":[["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["EC%3A1.1.3.29","N-acylhexosamine oxidase"],["EC%3A2.3.1.3","glucosamine N-acetyltransferase"],["EC%3A2.4.1.211","1,3-beta-galactosyl-N-acetylhexosamine phosphorylase"],["EC%3A2.4.1.280","N,N'-diacetylchitobiose phosphorylase"],["EC%3A2.4.1.320","1,4-beta-mannosyl-N-acetylglucosamine phosphorylase"],["EC%3A2.4.1.90","N-acetyllactosamine synthase"]]},{"id":"GO:0042178","l":"xenobiotic catabolic process","na":1,"nb":42,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["GO%3A0046230","2-aminobenzenesulfonate catabolic process"],["GO%3A0046304","2-nitropropane catabolic process"],["GO%3A0019610","3-hydroxyphenylacetate catabolic process"],["GO%3A0019380","3-phenylpropionate catabolic process"],["GO%3A0046196","4-nitrophenol catabolic process"],["GO%3A0019639","6-hydroxycineole catabolic process"]]},{"id":"GO:0030198","l":"extracellular matrix organization","na":1,"nb":41,"a":[["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]],"b":[["ComplexPortal%3ACPX-1801","Integrin alpha2-beta1 complex"],["ComplexPortal%3ACPX-3115","Integrin alpha2-beta1 complex"],["ComplexPortal%3ACPX-4423","Matrilin-1 complex"],["ComplexPortal%3ACPX-4463","Matrilin-1 complex"],["ComplexPortal%3ACPX-4521","Matrilin-1 complex"],["ComplexPortal%3ACPX-4503","Matrilin-1 - Matrilin-3 complex"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima (strain ATCC 43589 / DSM 3109 / JCM 10099 / NBRC 100826 / MSB8)","na":1,"nb":39,"a":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]],"b":[["Pfam%3APF02829","3H domain"],["Pfam%3APF13175","AAA ATPase domain"],["Pfam%3APF01958","Aspartate dehydrogenase, C-terminal"],["Pfam%3APF05448","Acetyl xylan esterase (AXE1)"],["Pfam%3APF04509","CheC-like family"],["Pfam%3APF13690","Chemotaxis phosphatase CheX"]]},{"id":"GO:0006954","l":"inflammatory response","na":1,"nb":38,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["ComplexPortal%3ACPX-2862","Caspase-7 complex"],["ComplexPortal%3ACPX-3947","Caspase-7 complex"],["ComplexPortal%3ACPX-363","Heparanase complex"],["ComplexPortal%3ACPX-10322","IL33 receptor-ligand complex"],["ComplexPortal%3ACPX-9301","Interleukin-17A complex"],["ComplexPortal%3ACPX-10317","Interleukin-26 complex"]]},{"id":"GO:0007267","l":"cell-cell signaling","na":1,"nb":38,"a":[["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["ComplexPortal%3ACPX-10317","Interleukin-26 complex"],["GO%3A0035425","autocrine signaling"],["GO%3A0061939","c-di-GMP signaling"],["GO%3A0007267","cell-cell signaling"],["GO%3A0045168","cell-cell signaling involved in cell fate commitment"],["GO%3A0060764","cell-cell signaling involved in mammary gland development"]]},{"id":"GO:0008283","l":"cell population proliferation","na":1,"nb":37,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["ComplexPortal%3ACPX-2799","CRL4-DCAF4 E3 ubiquitin ligase complex, CUL4A variant"],["ComplexPortal%3ACPX-2859","CRL4-DCAF4 E3 ubiquitin ligase complex, CUL4B variant"],["GO%3A0008283","cell population proliferation"],["GO%3A0071838","cell proliferation in bone marrow"],["GO%3A0035736","cell proliferation involved in compound eye morphogenesis"],["GO%3A0060722","cell proliferation involved in embryonic placenta development"]]},{"id":"GO:0009231","l":"riboflavin biosynthetic process","na":1,"nb":36,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["GO%3A0009231","riboflavin biosynthetic process"],["NCBIfam%3ANF000814","6,7-dimethyl-8-ribityllumazine synthase"],["NCBIfam%3ANF009084","6,7-dimethyl-8-ribityllumazine synthase"],["NCBIfam%3ANF013081","6,7-dimethyl-8-ribityllumazine synthase"],["NCBIfam%3ATIGR00114","6,7-dimethyl-8-ribityllumazine synthase"],["NCBIfam%3ANF006803","bifunctional 3,4-dihydroxy-2-butanone-4-phosphate synthase/GTP cyclohydrolase II"]]},{"id":"GO:1900376","l":"regulation of secondary metabolite biosynthetic process","na":1,"nb":36,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"]],"b":[["GO%3A1900377","negative regulation of secondary metabolite biosynthetic process"],["GO%3A1900378","positive regulation of secondary metabolite biosynthetic process"],["GO%3A1900177","regulation of aflatoxin biosynthetic process"],["GO%3A1900626","regulation of arugosin biosynthetic process"],["GO%3A1900379","regulation of asperthecin biosynthetic process"],["GO%3A1900861","regulation of cordyol C biosynthetic process"]]},{"id":"NCBITaxon:1898203","l":"Lachnospiraceae bacterium","na":1,"nb":35,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]],"b":[["TED%3AAF-A0A2G3Q064-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G3Q064-F1-model_v4_TED01"],["TED%3AAF-A0A316PVU3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A316PVU3-F1-model_v4_TED02"],["TED%3AAF-A0A349YHB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349YHB4-F1-model_v4_TED01"],["TED%3AAF-A0A349ZVK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349ZVK2-F1-model_v4_TED01"],["TED%3AAF-A0A354ID29-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A354ID29-F1-model_v4_TED04"],["TED%3AAF-A0A355NJL5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A355NJL5-F1-model_v4_TED02"]]},{"id":"CHEBI:17855","l":"triglyceride","na":1,"nb":34,"a":[["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["EC%3A2.3.1.158","phospholipid:diacylglycerol acyltransferase"],["EC%3A2.3.1.77","triacylglycerol--sterol O-acyltransferase"],["EC%3A3.1.1.3","triacylglycerol lipase"],["EC%3A3.1.1.34","lipoprotein lipase"],["EC%3A3.1.1.79","hormone-sensitive lipase"],["RHEA%3A77987","9-hydroxy-octadecanoate + a triacylglycerol = 9-(acyloxy)-octadecanoate + a 1,3-diacylglycerol"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":1,"nb":32,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["Pfam%3APF25848","Rodlin protein"],["Pfam%3APF13420","Acetyltransferase (GNAT) domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF26381","BREX System ATPase PglY protein 5th domain"],["Pfam%3APF26382","BREX System ATPase PglY protein 6th domain"]]},{"id":"GO:0044780","l":"bacterial-type flagellum assembly","na":1,"nb":30,"a":[["SynCom_MetG2_Rhizobacteria_Sugarcane_Stress_Resilience.html","SynCom MetG2 Rhizobacteria Sugarcane Stress Resilience"]],"b":[["ComplexPortal%3ACPX-4886","DNA-directed RNA polymerase holoenzyme complex, SigmaF variant"],["GO%3A0044780","bacterial-type flagellum assembly"],["NCBIfam%3ANF007836","flagella biosynthesis regulatory protein FliT"],["NCBIfam%3ANF006281","flagella length regulator FlaG"],["NCBIfam%3ANF047373","flagellar assembly lytic transglycosylase"],["NCBIfam%3ATIGR02541","flagellar assembly peptidoglycan hydrolase FlgJ"]]},{"id":"GO:0046718","l":"symbiont entry into host cell","na":1,"nb":30,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["ComplexPortal%3ACPX-5768","MERS-CoV Spike - human DPP4 receptor complex"],["ComplexPortal%3ACPX-5769","MERS-CoV Spike - human DPP4 receptor complex"],["ComplexPortal%3ACPX-5683","SARS-CoV-2 Spike - human ACE2 receptor complex"],["ComplexPortal%3ACPX-6761","SARS-CoV-2 Spike - human CLEC4M lectin complex"],["ComplexPortal%3ACPX-5695","SARS-CoV Spike - human ACE2 receptor complex"],["ComplexPortal%3ACPX-5696","SARS-CoV Spike - human CLEC4M lectin complex"]]},{"id":"GO:0006526","l":"L-arginine biosynthetic process","na":1,"nb":28,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["ComplexPortal%3ACPX-579","Carbamoyl-phosphate synthase arginine-specific"],["ComplexPortal%3ACPX-1937","Carbamoyl phosphate synthetase complex"],["ComplexPortal%3ACPX-1151","N-acetylglutamate synthase NAGS/NAGK complex"],["GO%3A0006526","L-arginine biosynthetic process"],["NCBIfam%3ANF003474","acetylornithine deacetylase"],["NCBIfam%3ATIGR01892","acetylornithine deacetylase"]]},{"id":"CHEBI:16235","l":"guanine","na":1,"nb":27,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["EC%3A2.4.2.1","purine-nucleoside phosphorylase"],["EC%3A2.4.2.15","guanosine phosphorylase"],["EC%3A2.4.2.29","tRNA-guanosine(34) preQ1 transglycosylase"],["EC%3A2.4.2.48","tRNA-guanine(15) transglycosylase"],["EC%3A2.4.2.64","tRNA-guanosine(34) queuine transglycosylase"],["EC%3A2.4.2.8","hypoxanthine phosphoribosyltransferase"]]},{"id":"CHEBI:17234","l":"glucose","na":26,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:16007","l":"methanethiol","na":1,"nb":25,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["EC%3A1.14.13.131","dissimilatory dimethyl-sulfide monooxygenase"],["EC%3A1.8.1.21","dissimilatory dimethyldisulfide reductase"],["EC%3A1.8.3.4","methanethiol oxidase"],["EC%3A2.1.1.251","methylated-thiol--coenzyme M methyltransferase"],["EC%3A2.1.1.334","methanethiol S-methyltransferase"],["EC%3A2.5.1.49","O-acetylhomoserine aminocarboxypropyltransferase"]]},{"id":"CHEBI:18346","l":"vanillin","na":1,"nb":25,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"]],"b":[["EC%3A1.1.3.38","vanillyl-alcohol oxidase"],["EC%3A1.11.1.16","versatile peroxidase"],["EC%3A1.13.11.43","lignostilbene alphabeta-dioxygenase"],["EC%3A1.13.11.88","isoeugenol monooxygenase"],["EC%3A1.13.11.94","4-vinylguaiacol dioxygenase"],["EC%3A1.2.1.67","vanillin dehydrogenase"]]},{"id":"NCBITaxon:226186","l":"Bacteroides thetaiotaomicron (strain ATCC 29148 / DSM 2079 / JCM 5827 / CCUG 10774 / NCTC 10582 / VPI-5482 / E50)","na":1,"nb":25,"a":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"]],"b":[["Pfam%3APF06439","3-keto-alpha-glucoside-1,2-lyase-like domain"],["Pfam%3APF13444","Acetyltransferase (GNAT) domain"],["Pfam%3APF19576","Acyltransferase"],["Pfam%3APF23764","GLAA-B beta-barrel domain II"],["Pfam%3APF13715","CarboxypepD_reg-like domain"],["Pfam%3APF26120","SusF, first starch specific CBM"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":1,"nb":25,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["Pfam%3APF13372","Alginate export"],["Pfam%3APF25965","ALG44 beta-barrel domain"],["Pfam%3APF25964","ALG44, barrel-sandwich hybrid domain"],["Pfam%3APF16844","Dinitrogenase iron-molybdenum cofactor, N-terminal"],["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"]]},{"id":"GO:0002221","l":"pattern recognition receptor signaling pathway","na":1,"nb":24,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["ComplexPortal%3ACPX-4242","Caspase-1 complex"],["ComplexPortal%3ACPX-952","Caspase-1 complex"],["ComplexPortal%3ACPX-4144","NLRC4 inflammasome"],["ComplexPortal%3ACPX-4082","NLRP1 inflammasome"],["ComplexPortal%3ACPX-4947","NLRP1 inflammasome, variant 1"],["ComplexPortal%3ACPX-4948","NLRP1 inflammasome, variant 2"]]},{"id":"GO:0018958","l":"phenol-containing compound metabolic process","na":1,"nb":24,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["GO%3A0031147","1-(3,5-dichloro-2,6-dihydroxy-4-methoxyphenyl)hexan-1-one metabolic process"],["GO%3A0018921","3-hydroxybenzyl alcohol metabolic process"],["GO%3A1901022","4-hydroxyphenylacetate metabolic process"],["GO%3A0018960","4-nitrophenol metabolic process"],["GO%3A0042215","anaerobic phenol-containing compound metabolic process"],["GO%3A0036182","asperthecin metabolic process"]]},{"id":"GO:0006221","l":"pyrimidine nucleotide biosynthetic process","na":1,"nb":22,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["ComplexPortal%3ACPX-579","Carbamoyl-phosphate synthase arginine-specific"],["GO%3A0009221","pyrimidine deoxyribonucleotide biosynthetic process"],["GO%3A0006221","pyrimidine nucleotide biosynthetic process"],["GO%3A0032262","pyrimidine nucleotide salvage"],["GO%3A0009220","pyrimidine ribonucleotide biosynthetic process"],["NCBIfam%3ANF018158","CTP synthase N-terminus"]]},{"id":"CHEBI:17437","l":"dimethyl sulfide","na":1,"nb":21,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["EC%3A1.14.13.131","dissimilatory dimethyl-sulfide monooxygenase"],["EC%3A1.14.13.245","assimilatory dimethylsulfide S-monooxygenase"],["EC%3A1.8.2.4","dimethyl sulfide:cytochrome c2 reductase"],["EC%3A1.8.5.3","respiratory dimethylsulfoxide reductase"],["EC%3A2.1.1.19","trimethylsulfonium--tetrahydrofolate N-methyltransferase"],["EC%3A2.1.1.334","methanethiol S-methyltransferase"]]},{"id":"GO:0006817","l":"phosphate ion transport","na":1,"nb":21,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["GO%3A0035435","phosphate ion transmembrane transport"],["GO%3A0006817","phosphate ion transport"],["GO%3A0044341","sodium-dependent phosphate transport"],["NCBIfam%3ANF033774","inorganic phosphate transporter PitA"],["NCBIfam%3ATIGR00972","phosphate ABC transporter ATP-binding protein PstB"],["NCBIfam%3ANF023916","phosphate ABC transporter permease family protein"]]},{"id":"CHEBI:16411","l":"indole-3-acetic acid","na":20,"nb":1,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_IAC","IAC-binding site"]]},{"id":"CHEBI:2181","l":"L-fucopyranose","na":1,"nb":20,"a":[["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"]],"b":[["EC%3A1.1.1.122","D-threo-aldose 1-dehydrogenase"],["EC%3A3.2.1.51","alpha-L-fucosidase"],["EC%3A3.2.1.63","1,2-alpha-L-fucosidase"],["EC%3A5.3.1.25","L-fucose isomerase"],["RHEA%3A49308","a neolactoside IV(2)-alpha-Fuc-nLc4Cer(d18:0) + H2O = a neolactoside nLc4Cer(d18:0) + L-fucose"],["RHEA%3A48224","a neolactoside IV(2)-alpha-Fuc-nLc4Cer(d18:1(4E)) + H2O = a neolactoside nLc4Cer(d18:1(4E)) + L-fucose"]]},{"id":"GO:0052031","l":"symbiont-mediated perturbation of host defense response","na":1,"nb":20,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["GO%3A0140415","effector-mediated perturbation of host defenses by symbiont"],["GO%3A0140424","symbiont-mediated activation of blood coagulation, intrinsic pathway"],["GO%3A0039587","symbiont-mediated-mediated suppression of host tetherin activity"],["GO%3A0052084","symbiont-mediated modulation of host ethylene-mediated defense response"],["GO%3A0052031","symbiont-mediated perturbation of host defense response"],["GO%3A0052553","symbiont-mediated perturbation of host immune response"]]},{"id":"CHEBI:18022","l":"thiocyanate","na":1,"nb":19,"a":[["Thiocyanate_Afipia_Thiobacillus_Bioreactor_Community.html","Thiocyanate-Degrading Afipia and Thiobacillus Bioreactor Community"]],"b":[["EC%3A1.8.2.7","thiocyanate desulfurase"],["EC%3A2.1.1.n4","thiocyanate methyltransferase"],["EC%3A2.8.1.1","thiosulfate sulfurtransferase"],["EC%3A3.5.5.8","thiocyanate hydrolase"],["RHEA%3A63880","thiocyanate + 2 Fe(III)-[cytochrome c] + H2O = cyanate + sulfur + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A21464","thiocyanate + H2O + 2 H(+) = carbonyl sulfide + NH4(+)"]]},{"id":"GO:0019319","l":"hexose biosynthetic process","na":1,"nb":19,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["GO%3A0019315","D-allose biosynthetic process"],["GO%3A0046370","fructose biosynthetic process"],["GO%3A0042353","fucose biosynthetic process"],["GO%3A0046369","galactose biosynthetic process"],["GO%3A0006094","gluconeogenesis"],["GO%3A0019319","hexose biosynthetic process"]]},{"id":"CHEBI:16838","l":"polyphosphate","na":1,"nb":18,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"]],"b":[["EC%3A2.7.1.63","polyphosphate--glucose phosphotransferase"],["EC%3A2.7.4.1","ATP-polyphosphate phosphotransferase"],["EC%3A2.7.4.17","3-phosphoglyceroyl-phosphate--polyphosphate phosphotransferase"],["EC%3A2.7.4.20","dolichyl-diphosphate--polyphosphate phosphotransferase"],["EC%3A2.7.4.33","AMP-polyphosphate phosphotransferase"],["EC%3A2.7.4.34","GDP-polyphosphate phosphotransferase"]]},{"id":"NCBITaxon:2697049","l":"Severe acute respiratory syndrome coronavirus 2","na":1,"nb":18,"a":[["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"]],"b":[["IDPO%3A0000002","disorder"],["IDPO%3A0000033","flexible linker"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000041","glycosylation display site"],["IDPO%3A0000048","limited proteolysis display site"],["IDPO%3A0000037","molecular recognition display site"]]},{"id":"CHEBI:16881","l":"1H-indole","na":1,"nb":17,"a":[["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"]],"b":[["EC%3A1.13.11.17","indole 2,3-dioxygenase"],["EC%3A1.14.14.153","indole-2-monooxygenase"],["EC%3A4.1.1.92","indole-3-carboxylate decarboxylase"],["EC%3A4.1.2.8","indole-3-glycerol-phosphate lyase"],["EC%3A4.1.99.1","tryptophanase"],["EC%3A4.2.1.122","tryptophan synthase (indole-salvaging)"]]},{"id":"CHEBI:17120","l":"hexanoate","na":1,"nb":17,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"]],"b":[["EC%3A3.5.1.39","alkylamidase"],["RHEA%3A53496","1-hexanoyl-2-acyl-sn-glycero-3-phosphocholine + H2O = hexanoate + a 2-acyl-sn-glycero-3-phosphocholine + H(+)"],["RHEA%3A54464","1-octadecanoyl-2-hexanoyl-sn-glycero-3-phosphocholine + H2O = hexanoate + 1-octadecanoyl-sn-glycero-3-phosphocholine + H(+)"],["RHEA%3A47352","a hexanoate ester + H2O = an aliphatic alcohol + hexanoate + H(+)"],["RHEA%3A79351","hexanal + 2 Fe(III)-[cytochrome c] + H2O = hexanoate + 2 Fe(II)-[cytochrome c] + 3 H(+)"],["RHEA%3A67276","hexanal + NAD(+) + H2O = hexanoate + NADH + 2 H(+)"]]},{"id":"GO:0015940","l":"pantothenate biosynthetic process","na":1,"nb":17,"a":[["Variovorax_Cryptococcus_Vitamin_Mutualism_Microcosm.html","Variovorax-Cryptococcus Vitamin Cross-Feeding Microcosm"]],"b":[["GO%3A0015940","pantothenate biosynthetic process"],["NCBIfam%3ANF005087","2-dehydropantoate 2-reductase"],["NCBIfam%3ANF005092","2-dehydropantoate 2-reductase"],["NCBIfam%3ANF005093","2-dehydropantoate 2-reductase"],["NCBIfam%3ANF005094","2-dehydropantoate 2-reductase"],["NCBIfam%3ANF006083","2-dehydropantoate 2-reductase"]]},{"id":"GO:0006090","l":"pyruvate metabolic process","na":1,"nb":16,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"]],"b":[["GO%3A0061678","Entner-Doudoroff pathway"],["GO%3A0061718","glucose catabolic process to pyruvate"],["GO%3A0006096","glycolytic process"],["GO%3A0033508","L-glutamate fermentation"],["GO%3A0019617","protocatechuate catabolic process, meta-cleavage"],["GO%3A0042866","pyruvate biosynthetic process"]]},{"id":"GO:0006527","l":"L-arginine catabolic process","na":1,"nb":16,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["GO%3A0006527","L-arginine catabolic process"],["NCBIfam%3ATIGR01273","arginine decarboxylase"],["NCBIfam%3ANF002381","arginine deiminase"],["NCBIfam%3ATIGR01078","arginine deiminase"],["NCBIfam%3ANF007770","arginine N-succinyltransferase"],["NCBIfam%3ATIGR03244","arginine N-succinyltransferase"]]},{"id":"NCBITaxon:3847","l":"Glycine max","na":1,"nb":16,"a":[["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["Pfam%3APF02095","Extensin-like protein"],["Pfam%3APF00477","Small hydrophilic plant seed protein"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF08027","Albumin I chain b"],["Pfam%3APF10539","Development and cell death domain"],["Pfam%3APF03386","Early nodulin 93 ENOD93 protein"]]},{"id":"CHEBI:36080","l":"protein","na":1,"nb":15,"a":[["Wollastonite_Ramichloridium_Talaromyces_Fungal_Consortium.html","Wollastonite Ramichloridium-Talaromyces Fungal Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A3.A.16","The Endoplasmic Reticular Retrotranslocon (ER-RT) Family"],["TCDB%3A3.A.27","The Endoplasmic Reticulum Membrane Protein Insertion Complex (EMC) Family"],["TCDB%3A9.A.57","The Extended-Synaptotagmin (E-Syt) Family"],["TCDB%3A3.A.13","The Filamentous Phage Exporter (FPhE) Family"],["TCDB%3A9.A.37","The Nuclear Import Tax Protein (Tax) Family"]]},{"id":"GO:0044010","l":"single-species biofilm formation","na":1,"nb":15,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"]],"b":[["ComplexPortal%3ACPX-4063","ChpBS toxin-antitoxin complex"],["ComplexPortal%3ACPX-4743","Curli secretion complex"],["ComplexPortal%3ACPX-1079","DinJ-YafQ toxin-antitoxin complex"],["ComplexPortal%3ACPX-3296","Fucose-binding lectin II complex"],["ComplexPortal%3ACPX-1086","MazEF toxin-antitoxin complex"],["ComplexPortal%3ACPX-1084","MqsRA toxin-antitoxin complex"]]},{"id":"GO:0051453","l":"regulation of intracellular pH","na":1,"nb":15,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["ComplexPortal%3ACPX-3090","Glutathione-regulated potassium-efflux system KefB-KefG complex"],["ComplexPortal%3ACPX-2543","Glutathione-regulated potassium-efflux system KefC-KefF complex"],["ComplexPortal%3ACPX-26449","Sodium/proton exchanger complex, NHE1-CHP1 variant"],["ComplexPortal%3ACPX-26462","Sodium/proton exchanger complex, NHE1-CHP2 variant"],["ComplexPortal%3ACPX-26464","Sodium/proton exchanger complex, NHE1-CHP3 variant"],["ComplexPortal%3ACPX-26469","Sodium/proton exchanger complex, NHE2-CHP1 variant"]]},{"id":"NCBITaxon:2157","l":"Archaea","na":15,"nb":1,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2157","Archaea orthologous groups (OrthoDB)"]]},{"id":"GO:0009607","l":"response to biotic stimulus","na":1,"nb":14,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["GO%3A0071216","cellular response to biotic stimulus"],["GO%3A0009595","detection of biotic stimulus"],["GO%3A0036180","filamentous growth of a population of unicellular organisms in response to biotic stimulus"],["GO%3A0009607","response to biotic stimulus"],["GO%3A0043207","response to external biotic stimulus"],["GO%3A1990840","response to lectin"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":1,"nb":14,"a":[["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"]],"b":[["Pfam%3APF03703","Bacterial PH domain"],["Pfam%3APF01322","Cytochrome C'"],["Pfam%3APF03139","Vanadium/alternative nitrogenase delta subunit"],["Pfam%3APF09527","Putative F0F1-ATPase subunit Ca2+/Mg2+ transporter"],["Pfam%3APF03270","Protein of unknown function, DUF269"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":1,"nb":14,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF02224","Cytidylate kinase"],["Pfam%3APF03319","Ethanolamine utilisation protein EutN/carboxysome"],["Pfam%3APF22019","alpha-1,4-glucan branching enzyme GlgB, N-terminal domain"],["Pfam%3APF21714","Circadian clock protein KaiA, N-terminal domain"],["Pfam%3APF07688","KaiA C-terminal domain"]]},{"id":"CHEBI:15428","l":"glycine","na":1,"nb":13,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["MCSA%3A718","caspase-1"],["MCSA%3A599","dipeptidase E"],["MCSA%3A906","gelatinase A"],["MCSA%3A762","glycine C-acetyltransferase"],["MCSA%3A746","L-peptidase"],["MCSA%3A477","picornain 3C"]]},{"id":"GO:0019076","l":"viral release from host cell","na":1,"nb":13,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0046753","non-lytic viral release"],["GO%3A0044659","viral release from host cell by cytolysis"],["GO%3A0019076","viral release from host cell"],["Reactome%3AR-HSA-168298","Release"],["NCBIfam%3ANF037577","Rz1-like spanin outer membrane subunit"],["NCBIfam%3ANF012767","Vpu"]]},{"id":"GO:2000145","l":"regulation of cell motility","na":1,"nb":13,"a":[["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["GO%3A2000146","negative regulation of cell motility"],["GO%3A2000147","positive regulation of cell motility"],["GO%3A1905416","regulation of amoeboid sperm motility"],["GO%3A1902021","regulation of bacterial-type flagellum-dependent cell motility"],["GO%3A0030334","regulation of cell migration"],["GO%3A2000145","regulation of cell motility"]]},{"id":"NCBITaxon:165179","l":"Segatella copri","na":1,"nb":13,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["TED%3AAF-A0A3R6DW71-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3R6DW71-F1-model_v4_TED02"],["TED%3AAF-A0A3R6EGS2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R6EGS2-F1-model_v4_TED01"],["TED%3AAF-A0A5Q5FTM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Q5FTM4-F1-model_v4_TED01"],["TED%3AAF-A0A3R5WNG5-F1-model_v4_TED02","TED novel fold AF-A0A3R5WNG5-F1-model_v4_TED02"],["TED%3AAF-A0A3R5YKW9-F1-model_v4_TED01","TED novel fold AF-A0A3R5YKW9-F1-model_v4_TED01"],["TED%3AAF-A0A3R6FRY2-F1-model_v4_TED01","TED novel fold AF-A0A3R6FRY2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:239","l":"Flavobacterium sp.","na":1,"nb":13,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["Pfam%3APF21331","Isoamylase, C-terminal"],["TED%3AAF-A0A2E4PC55-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E4PC55-F1-model_v4_TED02"],["TED%3AAF-A0A2E4PGC5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4PGC5-F1-model_v4_TED01"],["TED%3AAF-A0A2E4PMB7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E4PMB7-F1-model_v4_TED02"],["TED%3AAF-A0A355BEV2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A355BEV2-F1-model_v4_TED02"],["TED%3AAF-A0A519QLA6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A519QLA6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:267377","l":"Methanococcus maripaludis (strain DSM 14266 / JCM 13030 / NBRC 101832 / S2 / LL)","na":1,"nb":13,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"]],"b":[["Pfam%3APF09171","N-glycosylase/DNA lyase"],["Pfam%3APF06847","Archaeal Peptidase A24 C-terminus Type II"],["Pfam%3APF06819","Archaeal Peptidase A24 C-terminal Domain"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF26558","3-dehydroquinate synthase II C-terminal domain"],["Pfam%3APF01959","3-dehydroquinate synthase II N-terminal domain"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":13,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["Pfam%3APF07832","Cfr10I/Bse634I restriction endonuclease"],["Pfam%3APF22348","Colicin-A N-terminal domain"],["Pfam%3APF01024","Colicin pore forming domain"],["Pfam%3APF18427","DD-reactivating factor swiveling domain"],["Pfam%3APF02286","Dehydratase large subunit"],["Pfam%3APF02288","Dehydratase medium subunit"]]},{"id":"CHEBI:16136","l":"hydrogen sulfide","na":12,"nb":1,"a":[["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["MCSA%3A398","sulfite reductase (NADPH)"]]},{"id":"CHEBI:16188","l":"octan-1-ol","na":1,"nb":12,"a":[["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["EC%3A1.1.1.73","octanol dehydrogenase"],["EC%3A1.14.15.3","alkane 1-monooxygenase"],["RHEA%3A79323","octan-1-ol + 2 Fe(III)-[cytochrome c] = octanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A64628","octan-1-ol + acetyl-CoA = octyl acetate + CoA"],["RHEA%3A64852","octan-1-ol + benzoyl-CoA = octyl benzoate + CoA"],["RHEA%3A44064","octan-1-ol + hexadecanoyl-CoA = octyl hexadecanoate + CoA"]]},{"id":"GO:0043419","l":"urea catabolic process","na":1,"nb":12,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"]],"b":[["ComplexPortal%3ACPX-1296","Urease activation complex"],["GO%3A0043419","urea catabolic process"],["NCBIfam%3ANF010592","urease subunit alpha"],["NCBIfam%3ANF009682","urease subunit beta"],["NCBIfam%3ANF010591","urease subunit beta"],["NCBIfam%3ANF009712","urease subunit gamma"]]},{"id":"GO:0061687","l":"detoxification of inorganic compound","na":1,"nb":12,"a":[["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["GO%3A0140114","cellular detoxification of fluoride"],["GO%3A0140961","cellular detoxification of metal ion"],["GO%3A0140982","detoxification of aluminum ion"],["GO%3A0071585","detoxification of cadmium ion"],["GO%3A0010299","detoxification of cobalt ion"],["GO%3A0010273","detoxification of copper ion"]]},{"id":"CHEBI:16918","l":"gallate","na":1,"nb":11,"a":[["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["EC%3A1.13.11.57","gallate dioxygenase"],["EC%3A2.1.1.341","vanillate/3-O-methylgallate O-demethylase"],["EC%3A2.4.1.136","gallate 1-beta-glucosyltransferase"],["EC%3A3.1.1.20","tannase"],["EC%3A4.1.1.59","gallate decarboxylase"],["RHEA%3A12749","3,4,5-trihydroxybenzoate + H(+) = 1,2,3-trihydroxybenzene + CO2"]]},{"id":"CHEBI:17847","l":"p-cresol","na":1,"nb":11,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["EC%3A1.14.13.236","toluene 4-monooxygenase"],["EC%3A1.17.9.1","4-methylphenol dehydrogenase (hydroxylating)"],["EC%3A4.1.1.83","4-hydroxyphenylacetate decarboxylase"],["EC%3A4.1.99.19","2-iminoacetate synthase"],["RHEA%3A22732","4-hydroxyphenylacetate + H(+) = 4-methylphenol + CO2"],["RHEA%3A56976","4-methylphenol + 2 oxidized [azurin] + H2O = 4-hydroxybenzyl alcohol + 2 reduced [azurin] + 2 H(+)"]]},{"id":"CHEBI:18212","l":"selenite(2-)","na":1,"nb":11,"a":[["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"]],"b":[["EC%3A1.97.1.14","selenate reductase (quinol)"],["EC%3A1.97.1.9","selenate reductase (cytochrome c)"],["RHEA%3A80603","selenite + 2 Fe(III)-[cytochrome c] + H2O = 2 Fe(II)-[cytochrome] + selenate + 2 H(+)"],["RHEA%3A34903","selenite + 4 glutathione + 2 H(+) = selenodiglutathione + glutathione disulfide + 3 H2O"],["RHEA%3A14029","selenite + A + H2O = selenate + AH2"],["RHEA%3A51636","selenite + a quinone + H2O = selenate + a quinol"]]},{"id":"CHEBI:28009","l":"N-acetyl-beta-D-glucosamine","na":1,"nb":11,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]],"b":[["RHEA%3A85211","alpha-di-N-acetylchitobiose + H2O = N-acetyl-beta-D-glucosamine + N-acetyl-alpha-D-glucosamine"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"],["TCDB%3A4.A.6","The PTS Mannose-Fructose-Sorbose (Man) Family"]]},{"id":"CHEBI:28685","l":"molybdenum atom","na":1,"nb":11,"a":[["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_MO","MO-binding site"],["proteintraitsmech%3AMETALPDB_MO_DINUCLEAR","dinuclear molybdenum site"],["proteintraitsmech%3AMETALPDB_MO_HEPTANUCLEAR","heptanuclear molybdenum site"],["proteintraitsmech%3AMETALPDB_MO_HEXANUCLEAR","hexanuclear molybdenum site"],["proteintraitsmech%3AMETALPDB_MO_MONONUCLEAR","mononuclear molybdenum site"],["proteintraitsmech%3AMETALPDB_MO_MULTINUCLEAR","multinuclear molybdenum site"]]},{"id":"CHEBI:49807","l":"lead(2+)","na":1,"nb":11,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_49807","requires lead(2+)"],["RHEA%3A52580","Pb(2+)(in) + ATP + H2O = Pb(2+)(out) + ADP + phosphate + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.4","The Cation Diffusion Facilitator (CDF) Family"],["TCDB%3A2.A.11","The Citrate-Mg2+:H+ (CitM) Citrate-Ca2+:H+ (CitH) Symporter (CitMHS) Family"],["TCDB%3A1.A.87","The Mechanosensitive Calcium Channel (MCA) Family"]]},{"id":"CHEBI:15075","l":"selenate","na":1,"nb":10,"a":[["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"]],"b":[["EC%3A1.97.1.14","selenate reductase (quinol)"],["EC%3A1.97.1.9","selenate reductase (cytochrome c)"],["RHEA%3A34887","selenate(in) = selenate(out)"],["RHEA%3A72079","selenate(out) + 3 Na(+)(out) = selenate(in) + 3 Na(+)(in)"],["RHEA%3A34883","selenate(out) + ATP + H2O = selenate(in) + ADP + phosphate + H(+)"],["RHEA%3A80603","selenite + 2 Fe(III)-[cytochrome c] + H2O = 2 Fe(II)-[cytochrome] + selenate + 2 H(+)"]]},{"id":"CHEBI:15688","l":"acetoin","na":1,"nb":10,"a":[["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"]],"b":[["EC%3A2.2.1.4","acetoin--ribose-5-phosphate transaldolase"],["EC%3A2.3.1.190","acetoin dehydrogenase system"],["RHEA%3A54364","2 acetaldehyde = acetoin"],["RHEA%3A76879","3-aminobutan-2-ol + NAD(+) + H2O = acetoin + NH4(+) + NADH + H(+)"],["RHEA%3A76931","3-aminobutan-2-ol + NADP(+) + H2O = acetoin + NH4(+) + NADPH + H(+)"],["RHEA%3A54368","acetaldehyde + pyruvate + H(+) = acetoin + CO2"]]},{"id":"CHEBI:16581","l":"pregnenolone","na":1,"nb":10,"a":[["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"]],"b":[["EC%3A1.14.14.19","steroid 17alpha-monooxygenase"],["EC%3A1.14.15.6","cholesterol monooxygenase (side-chain-cleaving)"],["RHEA%3A34343","(20R,22R)-20,22-dihydroxycholesterol + 2 reduced [adrenodoxin] + O2 + 2 H(+) = 4-methylpentanal + pregnenolone + 2 oxidized [adrenodoxin] + 2 H2O"],["RHEA%3A35739","6 reduced [adrenodoxin] + cholesterol + 3 O2 + 6 H(+) = 4-methylpentanal + pregnenolone + 6 oxidized [adrenodoxin] + 4 H2O"],["RHEA%3A52356","pregnenolone + 3'-phosphoadenylyl sulfate = pregnenolone sulfate + adenosine 3',5'-bisphosphate + H(+)"],["RHEA%3A43924","pregnenolone + NAD(+) = pregn-5-ene-3,20-dione + NADH + H(+)"]]},{"id":"CHEBI:16738","l":"2,4-dichlorophenol","na":1,"nb":10,"a":[["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"]],"b":[["EC%3A1.14.11.43","(S)-dichlorprop dioxygenase (2-oxoglutarate)"],["EC%3A1.14.11.44","(R)-dichlorprop dioxygenase (2-oxoglutarate)"],["EC%3A1.14.13.20","2,4-dichlorophenol 6-monooxygenase"],["RHEA%3A86719","2,4-dichlorophenol + AH2 = 4-chlorophenol + chloride + A + H(+)"],["RHEA%3A80611","2,4-dichlorophenol + NADH + O2 + H(+) = 3,5-dichlorocatechol + NAD(+) + H2O"],["RHEA%3A20920","2,4-dichlorophenol + NADPH + O2 + H(+) = 3,5-dichlorocatechol + NADP(+) + H2O"]]},{"id":"CHEBI:17051","l":"fluoride","na":1,"nb":10,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["EC%3A2.5.1.63","adenosyl-fluoride synthase"],["EC%3A3.8.1.3","haloacetate dehalogenase"],["EC%3A3.8.2.2","diisopropyl-fluorophosphatase"],["RHEA%3A24100","diisopropyl fluorophosphate + H2O = diisopropyl phosphate + fluoride + 2 H(+)"],["RHEA%3A76159","fluoride(in) = fluoride(out)"],["RHEA%3A16661","fluoride + S-adenosyl-L-methionine = 5'-deoxy-5'-fluoroadenosine + L-methionine"]]},{"id":"CHEBI:17698","l":"chloramphenicol","na":1,"nb":10,"a":[["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"]],"b":[["EC%3A1.14.99.67","alpha-N-dichloroacetyl-p-aminophenylserinol N-oxygenase"],["EC%3A2.3.1.28","chloramphenicol O-acetyltransferase"],["RHEA%3A58884","alpha-N-dichloroacetyl-p-aminophenylserinol + AH2 + 2 O2 = chloramphenicol + A + 2 H2O"],["RHEA%3A18421","chloramphenicol + acetyl-CoA = chloramphenicol 3-acetate + CoA"],["RHEA%3A35287","chloramphenicol(in) + ATP + H2O = chloramphenicol(out) + ADP + phosphate + H(+)"],["RHEA%3A35059","chloramphenicol(in) + H(+)(out) = chloramphenicol(out) + H(+)(in)"]]},{"id":"GO:0006548","l":"L-histidine catabolic process","na":1,"nb":10,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["GO%3A0006548","L-histidine catabolic process"],["Reactome%3AR-HSA-70921","Histidine catabolism"],["proteintraitsmech%3ASEED_SUBSYSTEM_Histidine_Degradation","Histidine Degradation"],["NCBIfam%3ATIGR01227","formimidoylglutamase"],["NCBIfam%3ATIGR02022","formimidoylglutamate deiminase"],["NCBIfam%3ATIGR02024","glutamate formimidoyltransferase"]]},{"id":"GO:0070482","l":"response to oxygen levels","na":1,"nb":10,"a":[["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"]],"b":[["ComplexPortal%3ACPX-3982","dosPC diguanylate cyclase/c-di-GMP phosphodiesterase complex"],["ComplexPortal%3ACPX-1882","HAP1 transcriptional repressor complex, SSA1 variant"],["ComplexPortal%3ACPX-1883","HAP1 transcriptional repressor complex, SSA2 variant"],["ComplexPortal%3ACPX-1276","HMC complex"],["GO%3A0071453","cellular response to oxygen levels"],["GO%3A0003032","detection of oxygen"]]},{"id":"GO:2000146","l":"negative regulation of cell motility","na":1,"nb":10,"a":[["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["GO%3A1905417","negative regulation of amoeboid sperm motility"],["GO%3A1902201","negative regulation of bacterial-type flagellum-dependent cell motility"],["GO%3A0030336","negative regulation of cell migration"],["GO%3A2000146","negative regulation of cell motility"],["GO%3A1902020","negative regulation of cilium-dependent cell motility"],["PANTHER%3APTHR28616","COILED-COIL DOMAIN-CONTAINING PROTEIN 125"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":1,"nb":10,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["TED%3AAF-A0A5T2E4X7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5T2E4X7-F1-model_v4_TED01"],["TED%3AAF-A0A5Y4BP44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Y4BP44-F1-model_v4_TED01"],["TED%3AAF-A0A623P6F3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A623P6F3-F1-model_v4_TED02"],["TED%3AAF-A0A721BDS7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A721BDS7-F1-model_v4_TED02"],["TED%3AAF-A0A743P324-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A743P324-F1-model_v4_TED01"],["TED%3AAF-A0A757VWR3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A757VWR3-F1-model_v4_TED02"]]},{"id":"CHEBI:18248","l":"iron atom","na":1,"nb":9,"a":[["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18248","requires Fe"],["proteintraitsmech%3AMETALPDB_FE_DINUCLEAR","dinuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_HEPTANUCLEAR","heptanuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_HEXANUCLEAR","hexanuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_MONONUCLEAR","mononuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_OCTANUCLEAR","octanuclear iron site"]]},{"id":"CHEBI:26710","l":"sodium chloride","na":9,"nb":1,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["TCDB%3A2.A.30","The Cation-Chloride Cotransporter (CCC) Family"]]},{"id":"GO:0009266","l":"response to temperature stimulus","na":1,"nb":9,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["GO%3A0071502","cellular response to temperature stimulus"],["GO%3A0016048","detection of temperature stimulus"],["GO%3A0009409","response to cold"],["GO%3A0009408","response to heat"],["GO%3A0009266","response to temperature stimulus"],["GO%3A0010378","temperature compensation of the circadian clock"]]},{"id":"GO:0043903","l":"regulation of biological process involved in symbiotic interaction","na":1,"nb":9,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["GO%3A0052372","modulation by symbiont of entry into host"],["GO%3A0140471","positive regulation of transepithelial migration of symbiont in host"],["GO%3A0043903","regulation of biological process involved in symbiotic interaction"],["GO%3A0075045","regulation of formation by symbiont of haustorium for nutrient acquisition from host"],["GO%3A1901252","regulation of intracellular transport of viral material"],["GO%3A0070949","regulation of neutrophil mediated killing of symbiont cell"]]},{"id":"NCBITaxon:1344414","l":"Trichoderma reesei RUT C-30","na":1,"nb":9,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["Pfam%3APF00457","Glycosyl hydrolases family 11"],["Pfam%3APF01341","Glycosyl hydrolases family 6"],["PROSITE%3APS00155","Cutinase, serine active site"],["PROSITE%3APS00776","Glycosyl hydrolases family 11 (GH11) active site signature 1"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"],["PROSITE%3APS00655","Glycosyl hydrolases family 6 signature 1"]]},{"id":"NCBITaxon:2903","l":"Emiliania huxleyi","na":1,"nb":9,"a":[["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"]],"b":[["TED%3AAF-A0A7S3RZJ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3RZJ4-F1-model_v4_TED01"],["TED%3AAF-A0A7S3W933-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3W933-F1-model_v4_TED01"],["TED%3AAF-A0A7S3W9Q3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3W9Q3-F1-model_v4_TED01"],["TED%3AAF-R1DPG1-F1-model_v4_TED01","TED highly-symmetric fold AF-R1DPG1-F1-model_v4_TED01"],["TED%3AAF-A0A7S3TQB6-F1-model_v4_TED02","TED novel fold AF-A0A7S3TQB6-F1-model_v4_TED02"],["TED%3AAF-R1BEB4-F1-model_v4_TED01","TED novel fold AF-R1BEB4-F1-model_v4_TED01"]]},{"id":"CHEBI:27698","l":"vanadium atom","na":1,"nb":8,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_V_DECANUCLEAR","decanuclear vanadium site"],["proteintraitsmech%3AMETALPDB_V_DINUCLEAR","dinuclear vanadium site"],["proteintraitsmech%3AMETALPDB_V_HEPTANUCLEAR","heptanuclear vanadium site"],["proteintraitsmech%3AMETALPDB_V_HEXANUCLEAR","hexanuclear vanadium site"],["proteintraitsmech%3AMETALPDB_V_MONONUCLEAR","mononuclear vanadium site"],["proteintraitsmech%3AMETALPDB_V_OCTANUCLEAR","octanuclear vanadium site"]]},{"id":"CHEBI:37166","l":"xylan","na":8,"nb":1,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"GO:0042436","l":"indole-containing compound catabolic process","na":1,"nb":8,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["GO%3A0042433","indole catabolic process"],["GO%3A0042436","indole-containing compound catabolic process"],["GO%3A0042344","indole glucosinolate catabolic process"],["GO%3A0046216","indole phytoalexin catabolic process"],["GO%3A0042437","indoleacetic acid catabolic process"],["GO%3A0006569","L-tryptophan catabolic process"]]},{"id":"NCBITaxon:4081","l":"Solanum lycopersicum","na":1,"nb":8,"a":[["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF02977","Carboxypeptidase A inhibitor"],["Pfam%3APF26410","GH family 5 beta-mannosidase-like"],["Pfam%3APF02496","ABA/WDS induced protein"],["Pfam%3APF17302","Family of unknown function (DUF5351)"],["PROSITE%3APS00502","Polygalacturonase active site"]]},{"id":"NCBITaxon:492670","l":"Bacillus velezensis","na":8,"nb":1,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"]],"b":[["TED%3AAF-A0A7S9EWF1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S9EWF1-F1-model_v4_TED02"]]},{"id":"CHEBI:25017","l":"leucine","na":1,"nb":7,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.78","The Branched Chain Amino Acid Exporter (LIV-E) Family"],["TCDB%3A2.A.76","The Resistance to Homoserine/Threonine (RhtB) Family"],["MCSA%3A172","isoaspartyl dipeptidase"]]},{"id":"CHEBI:29195","l":"cyanate","na":1,"nb":7,"a":[["Thiocyanate_Afipia_Thiobacillus_Bioreactor_Community.html","Thiocyanate-Degrading Afipia and Thiobacillus Bioreactor Community"]],"b":[["EC%3A1.8.2.7","thiocyanate desulfurase"],["EC%3A4.2.1.104","cyanase"],["RHEA%3A11120","cyanate + hydrogencarbonate + 3 H(+) = NH4(+) + 2 CO2"],["RHEA%3A18489","cyanate + hydrogencarbonate + H(+) = carbamate + CO2"],["RHEA%3A29231","cyanate(in) = cyanate(out)"],["RHEA%3A63880","thiocyanate + 2 Fe(III)-[cytochrome c] + H2O = cyanate + sulfur + 2 Fe(II)-[cytochrome c] + 2 H(+)"]]},{"id":"CHEBI:32379","l":"cis,cis-muconate","na":1,"nb":7,"a":[["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["EC%3A1.13.11.1","catechol 1,2-dioxygenase"],["EC%3A5.5.1.1","muconate cycloisomerase"],["RHEA%3A23852","catechol + O2 = cis,cis-muconate + 2 H(+)"],["RHEA%3A30031","(S)-muconolactone = cis,cis-muconate + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["MCSA%3A959","muconate cycloisomerase (anti)"]]},{"id":"GO:0009292","l":"horizontal gene transfer","na":1,"nb":7,"a":[["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"]],"b":[["GO%3A0009294","DNA-mediated transformation"],["GO%3A0009292","horizontal gene transfer"],["GO%3A0009293","transduction"],["GO%3A0009291","unidirectional conjugation"],["NCBIfam%3ATIGR04359","entry exclusion lipoprotein TrbK"],["NCBIfam%3ATIGR04361","entry exclusion protein TrbK"]]},{"id":"GO:0040011","l":"locomotion","na":1,"nb":7,"a":[["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"]],"b":[["GO%3A0033058","directional locomotion"],["GO%3A0060361","flight"],["GO%3A0040011","locomotion"],["GO%3A0031987","locomotion involved in locomotory behavior"],["GO%3A0071965","multicellular organismal locomotion"],["GO%3A0036268","swimming"]]},{"id":"GO:0075136","l":"response to host","na":1,"nb":7,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0075136","response to host"],["GO%3A0075139","response to host iron concentration"],["GO%3A0075000","response to host osmotic environment"],["GO%3A0075138","response to host oxygen tension environment"],["GO%3A0075293","response to host pH environment"],["GO%3A0075137","response to host redox environment"]]},{"id":"NCBITaxon:2030806","l":"Burkholderiaceae bacterium","na":1,"nb":7,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["TED%3AAF-A0A5C7NHS1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7NHS1-F1-model_v4_TED01"],["TED%3AAF-A0A5C7Q2S0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A5C7Q2S0-F1-model_v4_TED04"],["TED%3AAF-A0A7L5Y4H7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7L5Y4H7-F1-model_v4_TED02"],["TED%3AAF-A0A520VNE1-F1-model_v4_TED02","TED novel fold AF-A0A520VNE1-F1-model_v4_TED02"],["TED%3AAF-A0A522SAF0-F1-model_v4_TED01","TED novel fold AF-A0A522SAF0-F1-model_v4_TED01"],["TED%3AAF-A0A5C7NTX8-F1-model_v4_TED02","TED novel fold AF-A0A5C7NTX8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:5722","l":"Trichomonas vaginalis","na":1,"nb":7,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["TED%3AAF-A2F3M7-F1-model_v4_TED03","TED highly-symmetric fold AF-A2F3M7-F1-model_v4_TED03"],["TED%3AAF-A2HEW4-F1-model_v4_TED01","TED highly-symmetric fold AF-A2HEW4-F1-model_v4_TED01"],["TED%3AAF-A2DT59-F1-model_v4_TED01","TED novel fold AF-A2DT59-F1-model_v4_TED01"],["TED%3AAF-A2E7I9-F1-model_v4_TED02","TED novel fold AF-A2E7I9-F1-model_v4_TED02"],["TED%3AAF-A2F6I8-F1-model_v4_TED02","TED novel fold AF-A2F6I8-F1-model_v4_TED02"],["TED%3AAF-A2FV33-F1-model_v4_TED01","TED novel fold AF-A2FV33-F1-model_v4_TED01"]]},{"id":"CHEBI:32139","l":"sodium hydrogencarbonate","na":6,"nb":1,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["TCDB%3A2.A.31","The Anion Exchanger (AE) Family"]]},{"id":"GO:0009268","l":"response to pH","na":1,"nb":6,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["GO%3A0071467","cellular response to pH"],["GO%3A0036177","filamentous growth of a population of unicellular organisms in response to pH"],["GO%3A0010447","response to acidic pH"],["GO%3A0010446","response to alkaline pH"],["GO%3A0036176","response to neutral pH"],["GO%3A0009268","response to pH"]]},{"id":"GO:0009684","l":"indoleacetic acid biosynthetic process","na":6,"nb":1,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["GO%3A0009684","indoleacetic acid biosynthetic process"]]},{"id":"GO:0044409","l":"symbiont entry into host","na":1,"nb":6,"a":[["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"]],"b":[["GO%3A0120326","appressorium-mediated entry into host"],["GO%3A0140717","entry into host through the stromata"],["GO%3A0035635","entry of bacterium into host cell"],["GO%3A0046718","symbiont entry into host cell"],["GO%3A0044409","symbiont entry into host"],["Reactome%3AR-HSA-173107","Binding and entry of HIV virion"]]},{"id":"GO:0045733","l":"acetate catabolic process","na":6,"nb":1,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"],["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]],"b":[["GO%3A0045733","acetate catabolic process"]]},{"id":"GO:0140253","l":"cell-cell fusion","na":1,"nb":6,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["ComplexPortal%3ACPX-3089","EFF-1 complex"],["GO%3A0140253","cell-cell fusion"],["GO%3A0000755","cytogamy"],["GO%3A0000768","syncytium formation by cell-cell fusion"],["PANTHER%3APTHR37415","EFF-1A"],["PANTHER%3APTHR41686","MYOMIXER"]]},{"id":"GO:1900190","l":"regulation of single-species biofilm formation","na":1,"nb":6,"a":[["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["ComplexPortal%3ACPX-4681","YiaMNO tripartite ATP-independent periplasmic transporter complex"],["GO%3A1900191","negative regulation of single-species biofilm formation"],["GO%3A1900192","positive regulation of single-species biofilm formation"],["GO%3A1900190","regulation of single-species biofilm formation"],["GO%3A1900228","regulation of single-species biofilm formation in or on host organism"],["GO%3A1900231","regulation of single-species biofilm formation on inanimate substrate"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":6,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["Pfam%3APF03437","BtpA family"]]},{"id":"NCBITaxon:2268204","l":"Thermoplasmatales archaeon","na":1,"nb":6,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["TED%3AAF-A0A7C2AKF2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7C2AKF2-F1-model_v4_TED03"],["TED%3AAF-A0A7J2S4D8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7J2S4D8-F1-model_v4_TED03"],["TED%3AAF-A0A7J3TK18-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7J3TK18-F1-model_v4_TED02"],["TED%3AAF-A0A7C1E5G8-F1-model_v4_TED01","TED novel fold AF-A0A7C1E5G8-F1-model_v4_TED01"],["TED%3AAF-A0A842X889-F1-model_v4_TED01","TED novel fold AF-A0A842X889-F1-model_v4_TED01"],["TED%3AAF-A0A842X9F6-F1-model_v4_TED01","TED novel fold AF-A0A842X9F6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":1,"nb":6,"a":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"]],"b":[["Pfam%3APF14525","AraC-binding-like domain"],["Pfam%3APF06139","BphX-like"],["Pfam%3APF13340","Putative transposase of IS4/5 family (DUF4096)"],["Pfam%3APF11794","4-hydroxyphenylacetate 3-hydroxylase N terminal"],["Pfam%3APF03241","4-hydroxyphenylacetate 3-hydroxylase C terminal"],["TED%3AAF-A0A4S3H3T1-F1-model_v4_TED02","TED novel fold AF-A0A4S3H3T1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:4097","l":"Nicotiana tabacum","na":1,"nb":6,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"]],"b":[["Pfam%3APF02041","Auxin binding protein"],["Pfam%3APF12481","Aluminium induced protein"],["Pfam%3APF11995","Domain of unknown function (DUF3490)"],["Pfam%3APF07172","Glycine rich protein family"],["PROSITE%3APS00157","Ribulose bisphosphate carboxylase large chain active site"],["TED%3AAF-A0A1S4A696-F1-model_v4_TED01","TED novel fold AF-A0A1S4A696-F1-model_v4_TED01"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":1,"nb":6,"a":[["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["Pfam%3APF02929","Beta galactosidase small chain"],["Pfam%3APF27279","Fumarate--diaminopropanoate ligase C-terminal domain"],["Pfam%3APF18024","Helix-turn-helix domain"],["Pfam%3APF16353","Beta-galactosidase, domain 4"],["PROSITE%3APS00594","Aromatic amino acids permeases signature"],["PROSITE%3APS00853","Beta-eliminating lyases pyridoxal-phosphate attachment site"]]},{"id":"CHEBI:15702","l":"terephthalic acid","na":5,"nb":1,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["proteintraitsmech%3ABIOLIP_UB7","UB7-binding site"]]},{"id":"CHEBI:16828","l":"L-tryptophan","na":5,"nb":1,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["proteintraitsmech%3ABIOLIP_TRP","TRP-binding site"]]},{"id":"CHEBI:17439","l":"cyanocob(III)alamin","na":1,"nb":5,"a":[["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["EC%3A1.16.1.6","cyanocobalamin reductase"],["RHEA%3A16113","2 cob(II)alamin-[cyanocobalamin reductase] + 2 hydrogen cyanide + NADP(+) = 2 cyanocob(III)alamin + 2 apo-[cyanocobalamin reductase] + NADPH + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["TCDB%3A9.B.87","The Selenoprotein P Receptor (SelP-Receptor) Family"]]},{"id":"CHEBI:24875","l":"iron cation","na":1,"nb":5,"a":[["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_24875","requires iron cation"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.S.6","The Bacterial/Archaeal Nanocompartment Encapsulin Shell Protein1 (BANC-SP1) Family"],["TCDB%3A2.A.55","The Metal Ion (Mn2+-iron) Transporter (Nramp) Family"],["TCDB%3A5.B.1","The Phagocyte (gp91phox) NADPH Oxidase Family"]]},{"id":"CHEBI:27750","l":"ethyl acetate","na":1,"nb":5,"a":[["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["EC%3A2.3.1.268","ethanol O-acetyltransferase"],["EC%3A3.1.1.113","ethyl acetate hydrolase"],["RHEA%3A55972","ethanol + acetyl-CoA = ethyl acetate + CoA"],["RHEA%3A58148","ethyl acetate + H2O = ethanol + acetate + H(+)"],["proteintraitsmech%3ABIOLIP_EEE","EEE-binding site"]]},{"id":"CHEBI:30746","l":"benzoic acid","na":5,"nb":1,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_BEZ","BEZ-binding site"]]},{"id":"CHEBI:30769","l":"citric acid","na":5,"nb":1,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["proteintraitsmech%3ABIOLIP_CIT","CIT-binding site"]]},{"id":"CHEBI:30776","l":"hexanoic acid","na":5,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["proteintraitsmech%3ABIOLIP_6NA","6NA-binding site"]]},{"id":"CHEBI:33364","l":"platinum atom","na":1,"nb":5,"a":[["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_PT_DINUCLEAR","dinuclear platinum site"],["proteintraitsmech%3AMETALPDB_PT_HEXANUCLEAR","hexanuclear platinum site"],["proteintraitsmech%3AMETALPDB_PT_MONONUCLEAR","mononuclear platinum site"],["proteintraitsmech%3AMETALPDB_PT_TETRANUCLEAR","tetranuclear platinum site"],["proteintraitsmech%3AMETALPDB_PT_TRINUCLEAR","trinuclear platinum site"]]},{"id":"CHEBI:35899","l":"crotonate","na":1,"nb":5,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["EC%3A1.3.1.31","2-enoate reductase"],["RHEA%3A74903","(2E)-2-butenoate + ATP + H(+) = (2E)-but-2-enoyl-AMP + diphosphate"],["RHEA%3A74899","(2E)-2-butenoate + holo-[ACP] + ATP = (2E)-butenoyl-[ACP] + AMP + diphosphate"],["RHEA%3A10200","butanoate + NAD(+) = (2E)-2-butenoate + NADH + H(+)"],["RHEA%3A69172","N(6)-(2E)-butenoyl-L-lysyl-[protein] + H2O = (2E)-2-butenoate + L-lysyl-[protein]"]]},{"id":"CHEBI:37671","l":"(1->3)-beta-D-glucan","na":1,"nb":5,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"]],"b":[["EC%3A2.4.1.30","1,3-beta-oligoglucan phosphorylase"],["EC%3A2.4.1.34","1,3-beta-glucan synthase"],["EC%3A2.4.1.97","1,3-beta-D-glucan phosphorylase"],["RHEA%3A16041","[(1->3)-beta-D-glucosyl](n) + phosphate = [(1->3)-beta-D-glucosyl](n-1) + alpha-D-glucose 1-phosphate"],["RHEA%3A21476","[(1->3)-beta-D-glucosyl](n) + UDP-alpha-D-glucose = [(1->3)-beta-D-glucosyl](n+1) + UDP + H(+)"]]},{"id":"CHEBI:81666","l":"4-methyl-5-nitrocatechol","na":1,"nb":5,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["EC%3A1.14.12.24","2,4-dinitrotoluene dioxygenase"],["EC%3A1.14.13.210","4-methyl-5-nitrocatechol 5-monooxygenase"],["RHEA%3A46760","2,4-dinitrotoluene + NADH + O2 = 4-methyl-5-nitrocatechol + nitrite + NAD(+)"],["RHEA%3A48016","4-methyl-5-nitrocatechol + NADH + O2 = 2-hydroxy-5-methylquinone + nitrite + NAD(+) + H2O + H(+)"],["RHEA%3A48012","4-methyl-5-nitrocatechol + NADPH + O2 = 2-hydroxy-5-methylquinone + nitrite + NADP(+) + H2O + H(+)"]]},{"id":"CHEBI:86471","l":"pyrite","na":5,"nb":1,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"GO:0015945","l":"methanol metabolic process","na":1,"nb":5,"a":[["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"]],"b":[["GO%3A0019387","methanogenesis, from methanol"],["GO%3A0046169","methanol biosynthetic process"],["GO%3A0046170","methanol catabolic process"],["GO%3A0015945","methanol metabolic process"],["GO%3A0015946","methanol oxidation"]]},{"id":"GO:0098869","l":"cellular oxidant detoxification","na":1,"nb":5,"a":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["GO%3A0061692","cellular detoxification of hydrogen peroxide"],["GO%3A0098869","cellular oxidant detoxification"],["GO%3A0019430","removal of superoxide radicals"],["NCBIfam%3ANF009668","peroxiredoxin"],["Pfam%3APF24980","Response to Low Sulfur (LSU) family"]]},{"id":"NCBITaxon:10239","l":"Viruses","na":5,"nb":1,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_10239","Viruses orthologous groups (OrthoDB)"]]},{"id":"NCBITaxon:1598","l":"Limosilactobacillus reuteri","na":1,"nb":5,"a":[["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"]],"b":[["TED%3AAF-A0A6N1EMN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N1EMN7-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2V3C3-F1-model_v4_TED01","TED novel fold AF-A0A1Y2V3C3-F1-model_v4_TED01"],["TED%3AAF-A0A848BUA9-F1-model_v4_TED01","TED novel fold AF-A0A848BUA9-F1-model_v4_TED01"],["TED%3AAF-A0A855XJ18-F1-model_v4_TED01","TED novel fold AF-A0A855XJ18-F1-model_v4_TED01"],["TED%3AAF-Q6WUB1-F1-model_v4_TED03","TED novel fold AF-Q6WUB1-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1872427","l":"Alcanivorax sp.","na":1,"nb":5,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["TED%3AAF-A0A3C1HS87-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A3C1HS87-F1-model_v4_TED05"],["TED%3AAF-A0A2E8G0K2-F1-model_v4_TED02","TED novel fold AF-A0A2E8G0K2-F1-model_v4_TED02"],["TED%3AAF-A0A2E8G2P9-F1-model_v4_TED01","TED novel fold AF-A0A2E8G2P9-F1-model_v4_TED01"],["TED%3AAF-A0A3B8PCI6-F1-model_v4_TED01","TED novel fold AF-A0A3B8PCI6-F1-model_v4_TED01"],["TED%3AAF-A0A3C0M083-F1-model_v4_TED02","TED novel fold AF-A0A3C0M083-F1-model_v4_TED02"]]},{"id":"NCBITaxon:552","l":"Erwinia amylovora","na":1,"nb":5,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]],"b":[["Pfam%3APF09008","Head binding"],["Pfam%3APF11725","AvrE-family Type-III effector proteins (T3Es)"],["Pfam%3APF03608","PTS system enzyme II sorbitol-specific factor"],["Pfam%3APF07663","Sorbitol phosphotransferase enzyme II C-terminus"],["Pfam%3APF03612","Sorbitol phosphotransferase enzyme II N-terminus"]]},{"id":"NCBITaxon:74969","l":"Ferroplasma acidiphilum","na":5,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["TED%3AAF-A0A7K4FNL3-F1-model_v4_TED01","TED novel fold AF-A0A7K4FNL3-F1-model_v4_TED01"]]},{"id":"CHEBI:15603","l":"L-leucine","na":4,"nb":1,"a":[["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"]],"b":[["proteintraitsmech%3ABIOLIP_LEU","LEU-binding site"]]},{"id":"CHEBI:16109","l":"propane-1,3-diol","na":1,"nb":4,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["EC%3A1.1.1.202","1,3-propanediol dehydrogenase"],["RHEA%3A23188","propane-1,3-diol + NAD(+) = 3-hydroxypropanal + NADH + H(+)"],["RHEA%3A35599","propane-1,3-diol + NADP(+) = 3-hydroxypropanal + NADPH + H(+)"],["proteintraitsmech%3ABIOLIP_PDO","PDO-binding site"]]},{"id":"CHEBI:16646","l":"carbohydrate","na":4,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16646","requires pantothenate"]]},{"id":"CHEBI:16811","l":"methionine","na":4,"nb":1,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"]]},{"id":"CHEBI:16856","l":"glutathione","na":1,"nb":4,"a":[["Zymomonas_Ecoli_Exometabolomics_Obligate_Mutualism.html","Zymomonas-E. coli Exometabolomics-Designed Obligate Mutualism"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16856","requires glutathione"],["MCSA%3A359","lactoglutathione lyase"],["MCSA%3A32","lactoylglutathione lyase"],["proteintraitsmech%3ABIOLIP_GSH","GSH-binding site"]]},{"id":"CHEBI:17115","l":"L-serine","na":1,"nb":4,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["MCSA%3A609","alpha-lytic endopeptidase"],["MCSA%3A238","assemblin"],["MCSA%3A688","classical-complement-pathway C3/C5 convertase"],["proteintraitsmech%3ABIOLIP_SER","SER-binding site"]]},{"id":"CHEBI:17634","l":"D-glucose","na":4,"nb":1,"a":[["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"]],"b":[["MCSA%3A976","α‑glucosidase maltase-glucoamylase"]]},{"id":"CHEBI:18050","l":"L-glutamine","na":1,"nb":4,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["MCSA%3A596","deuterolysin"],["MCSA%3A477","picornain 3C"],["MCSA%3A763","picornain 3C"],["proteintraitsmech%3ABIOLIP_GLN","GLN-binding site"]]},{"id":"CHEBI:18059","l":"lipid","na":4,"nb":1,"a":[["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"],["Yarrowia_lipolytica_Division_of_Labor_Lipid_Consortium.html","Yarrowia lipolytica Division-of-Labor Lipid Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:22315","l":"alkaloid","na":1,"nb":4,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]]},{"id":"CHEBI:23681","l":"dibenzothiophene","na":1,"nb":4,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["EC%3A1.14.14.21","dibenzothiophene monooxygenase"],["RHEA%3A49072","dibenzothiophene + 2 FMNH2 + 2 O2 = dibenzothiophene 5,5-dioxide + 2 FMN + 2 H2O + 2 H(+)"],["RHEA%3A49076","dibenzothiophene + FMNH2 + O2 = dibenzothiophene 5-oxide + FMN + H2O + H(+)"],["MCSA%3A973","DszC protein"]]},{"id":"CHEBI:28984","l":"aluminium atom","na":1,"nb":4,"a":[["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_AL_DINUCLEAR","dinuclear aluminium site"],["proteintraitsmech%3AMETALPDB_AL_MONONUCLEAR","mononuclear aluminium site"],["proteintraitsmech%3AMETALPDB_AL_TETRANUCLEAR","tetranuclear aluminium site"],["proteintraitsmech%3AMETALPDB_AL_TRINUCLEAR","trinuclear aluminium site"]]},{"id":"CHEBI:33575","l":"carboxylic acid","na":1,"nb":4,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"]],"b":[["MCSA%3A105","aldehyde dehydrogenase (FAD-independent)"],["MCSA%3A803","aldehyde dehydrogenase (NAD+) (class 2)"],["MCSA%3A556","esterase (estA)"],["MCSA%3A755","lysophospholipase"]]},{"id":"CHEBI:34768","l":"furfural","na":1,"nb":4,"a":[["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"]],"b":[["RHEA%3A77519","furfural + hydrogen cyanide = (2R)-2-(furan-2-yl)-2-hydroxyacetonitrile"],["RHEA%3A76667","furfural + NAD(+) + H2O = 2-furoate + NADH + 2 H(+)"],["RHEA%3A76671","furfural + NADP(+) + H2O = 2-furoate + NADPH + 2 H(+)"],["TCDB%3A1.C.113","The Hemolysin III (Hly III) Family"]]},{"id":"CHEBI:490095","l":"esculetin","na":1,"nb":4,"a":[["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["EC%3A2.5.1.138","coumarin 8-geranyltransferase"],["RHEA%3A51864","esculetin + (2E)-geranyl diphosphate = 8-geranylesculetin + diphosphate"],["RHEA%3A68944","esculetin + S-adenosyl-L-methionine = isoscopoletin + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A68948","esculetin + S-adenosyl-L-methionine = scopoletin + S-adenosyl-L-homocysteine + H(+)"]]},{"id":"GO:0009809","l":"lignin biosynthetic process","na":1,"nb":4,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"]],"b":[["GO%3A1901063","guaiacyl lignin biosynthetic process"],["GO%3A0009809","lignin biosynthetic process"],["GO%3A1901060","p-hydroxyphenyl lignin biosynthetic process"],["GO%3A1901066","syringal lignin biosynthetic process"]]},{"id":"GO:0015694","l":"mercury ion transport","na":1,"nb":4,"a":[["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["GO%3A0015694","mercury ion transport"],["Pfam%3APF03203","MerC mercury resistance protein"],["Pfam%3APF05052","MerE protein"],["Pfam%3APF02411","MerT mercuric transport protein"]]},{"id":"GO:0015976","l":"carbon utilization","na":1,"nb":4,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["GO%3A0015976","carbon utilization"],["NCBIfam%3ANF010378","bifunctional acetaldehyde-CoA/alcohol dehydrogenase"],["NCBIfam%3ANF007756","carbonate dehydratase"],["InterPro%3AIPR015892","Carbonic anhydrase, prokaryotic-like, conserved site"]]},{"id":"GO:0061692","l":"cellular detoxification of hydrogen peroxide","na":1,"nb":4,"a":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["ComplexPortal%3ACPX-4742","Catalase complex"],["ComplexPortal%3ACPX-4767","Catalase complex"],["ComplexPortal%3ACPX-4768","Catalase complex"],["GO%3A0061692","cellular detoxification of hydrogen peroxide"]]},{"id":"GO:1902074","l":"response to salt","na":1,"nb":4,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["GO%3A1902075","cellular response to salt"],["GO%3A1902074","response to salt"],["GO%3A1903935","response to sodium arsenite"],["GO%3A1904383","response to sodium phosphate"]]},{"id":"NCBITaxon:1401","l":"Paenibacillus lautus","na":1,"nb":4,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"]],"b":[["Pfam%3APF18448","Carbohydrate binding domain"],["Pfam%3APF12891","Glycoside hydrolase family 44"],["TED%3AAF-A0A328VZ83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A328VZ83-F1-model_v4_TED01"],["TED%3AAF-A0A385TU82-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A385TU82-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1451","l":"Paenibacillus amylolyticus","na":1,"nb":4,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"]],"b":[["Pfam%3APF03211","Pectate lyase"],["TED%3AAF-A0A117I1X0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A117I1X0-F1-model_v4_TED01"],["TED%3AAF-A0A1R1DDF3-F1-model_v4_TED01","TED novel fold AF-A0A1R1DDF3-F1-model_v4_TED01"],["TED%3AAF-A0A4V3B7H8-F1-model_v4_TED01","TED novel fold AF-A0A4V3B7H8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1501","l":"Clostridium pasteurianum","na":1,"nb":4,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["Pfam%3APF22609","Iron hydrogenase 1-like, iron-sulfur centre-binding domain"],["Pfam%3APF09582","Iron only nitrogenase protein AnfO (AnfO_nitrog)"],["PROSITE%3APS00746","NifH/frxC family signature 1"],["PROSITE%3APS00699","Nitrogenases component 1 alpha and beta subunits signature 1"]]},{"id":"NCBITaxon:1534","l":"Clostridium kluyveri","na":4,"nb":1,"a":[["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["TED%3AAF-A0A1L5FEG9-F1-model_v4_TED01","TED novel fold AF-A0A1L5FEG9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1590","l":"Lactiplantibacillus plantarum","na":4,"nb":1,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Pichia_Lactiplantibacillus_CCMA_Plant_Beverage_Coculture.html","Pichia-Lactiplantibacillus CCMA Plant Beverage Coculture"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["Pfam%3APF06314","Acetoacetate decarboxylase (ADC)"]]},{"id":"NCBITaxon:243164","l":"Dehalococcoides mccartyi 195","na":4,"nb":1,"a":[["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["Pfam%3APF13486","Reductive dehalogenase subunit"]]},{"id":"NCBITaxon:258594","l":"Rhodopseudomonas palustris CGA009","na":1,"nb":4,"a":[["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"]],"b":[["Pfam%3APF01322","Cytochrome C'"],["PROSITE%3APS00969","Antenna complexes beta subunits signature"],["PROSITE%3APS00936","Ribosomal protein L35 signature"],["PROSITE%3APS01181","Ribosomal protein S21 signature"]]},{"id":"NCBITaxon:28037","l":"Streptococcus mitis","na":1,"nb":4,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["Pfam%3APF03047","COMC family"],["TED%3AAF-A0A1X1L9U5-F1-model_v4_TED02","TED novel fold AF-A0A1X1L9U5-F1-model_v4_TED02"],["TED%3AAF-A0A428B8X0-F1-model_v4_TED01","TED novel fold AF-A0A428B8X0-F1-model_v4_TED01"],["TED%3AAF-A0A6L5H4V3-F1-model_v4_TED03","TED novel fold AF-A0A6L5H4V3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:285","l":"Comamonas testosteroni","na":1,"nb":4,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["Pfam%3APF02900","Catalytic LigB subunit of aromatic ring-opening dioxygenase"],["Pfam%3APF19301","LigXa C-terminal domain like"],["TED%3AAF-A0A096HND0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A096HND0-F1-model_v4_TED01"],["TED%3AAF-A0A1Y1JCM1-F1-model_v4_TED01","TED novel fold AF-A0A1Y1JCM1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:34305","l":"Lotus japonicus","na":1,"nb":4,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["Pfam%3APF06241","Castor and Pollux, part of voltage-gated ion channel"],["Pfam%3APF23654","E3 ubiquitin-protein ligase LIN-like, ARM repeat"],["Pfam%3APF23628","Putative E3 ubiquitin-protein ligase LIN, ARM-like domain"],["Pfam%3APF23568","E3 ubiquitin-protein ligase LIN-like, ARM repeat"]]},{"id":"NCBITaxon:40520","l":"Blautia obeum","na":1,"nb":4,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]],"b":[["TED%3AAF-A0A174PFW9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A174PFW9-F1-model_v4_TED01"],["TED%3AAF-A0A174PHS9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A174PHS9-F1-model_v4_TED02"],["TED%3AAF-A0A415LGR0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A415LGR0-F1-model_v4_TED01"],["TED%3AAF-A0A414KHY7-F1-model_v4_TED02","TED novel fold AF-A0A414KHY7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":1,"nb":4,"a":[["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["Pfam%3APF11720","Peptidase inhibitor I78 family"],["Pfam%3APF12296","Hydrophobic surface binding protein A"],["TED%3AAF-A0A3M7JGA1-F1-model_v4_TED02","TED novel fold AF-A0A3M7JGA1-F1-model_v4_TED02"],["TED%3AAF-A0A7G5JNS3-F1-model_v4_TED03","TED novel fold AF-A0A7G5JNS3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:863","l":"Syntrophomonas wolfei","na":4,"nb":1,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["TED%3AAF-A0A354YY78-F1-model_v4_TED03","TED novel fold AF-A0A354YY78-F1-model_v4_TED03"]]},{"id":"CHEBI:147155","l":"","na":3,"nb":1,"a":[["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["RHEA%3A64016","alpha-L-Fuc-(1->2)-beta-D-Gal-(1->4)-D-Glc + GDP-beta-L-fucose = alpha-L-Fuc-(1->2)-beta-D-Gal-(1->4)-[alpha-L-Fuc-(1->3)]-D-Glc + GDP + H(+)"]]},{"id":"CHEBI:15356","l":"cysteine","na":3,"nb":1,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:16015","l":"L-glutamic acid","na":1,"nb":3,"a":[["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]],"b":[["MCSA%3A747","gamma-glutamyl hydrolase"],["proteintraitsmech%3ABIOLIP_GGL","GGL-binding site"],["proteintraitsmech%3ABIOLIP_GLU","GLU-binding site"]]},{"id":"CHEBI:16170","l":"mercury(0)","na":1,"nb":3,"a":[["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["EC%3A1.16.1.1","mercury(II) reductase"],["RHEA%3A23856","Hg + NADP(+) + H(+) = Hg(2+) + NADPH"],["MCSA%3A277","mercury(II) reductase"]]},{"id":"CHEBI:16467","l":"L-arginine","na":1,"nb":3,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["MCSA%3A688","classical-complement-pathway C3/C5 convertase"],["MCSA%3A425","plasmin"],["MCSA%3A798","t-plasminogen activator"]]},{"id":"CHEBI:16982","l":"(R,R)-butane-2,3-diol","na":1,"nb":3,"a":[["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"]],"b":[["EC%3A1.1.1.4","(R,R)-butanediol dehydrogenase"],["RHEA%3A24340","(R,R)-butane-2,3-diol + NAD(+) = (R)-acetoin + NADH + H(+)"],["proteintraitsmech%3ABIOLIP_BU3","BU3-binding site"]]},{"id":"CHEBI:17203","l":"L-proline","na":1,"nb":3,"a":[["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["MCSA%3A403","astacin"],["MCSA%3A379","Xaa-Pro aminopeptidase"],["proteintraitsmech%3ABIOLIP_PRO","PRO-binding site"]]},{"id":"CHEBI:17561","l":"L-cysteine","na":3,"nb":1,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["proteintraitsmech%3ABIOLIP_CYS","CYS-binding site"]]},{"id":"CHEBI:2365","l":"(+)-abscisic acid","na":1,"nb":3,"a":[["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.17","The Proton-dependent Oligopeptide Transporter (POT/PTR) Family"],["proteintraitsmech%3ABIOLIP_A8S","A8S-binding site"]]},{"id":"CHEBI:28805","l":"cis-1,2-dichloroethene","na":1,"nb":3,"a":[["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"]],"b":[["RHEA%3A67992","trichloroethene + AH2 = (Z)-1,2-dichloroethene + chloride + A + H(+)"],["RHEA%3A67996","(Z)-1,2-dichloroethene + AH2 = chloroethene + chloride + A + H(+)"],["proteintraitsmech%3ABIOLIP_JYF","JYF-binding site"]]},{"id":"CHEBI:30803","l":"isophthalate(2-)","na":1,"nb":3,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["EC%3A6.2.1.58","isophthalate--CoA ligase"],["RHEA%3A61636","isophthalate + ATP + CoA = isophthalyl-CoA + AMP + diphosphate"],["TCDB%3A2.A.80","The Tricarboxylate Transporter (TTT) Family"]]},{"id":"CHEBI:31725","l":"isoamyl acetate","na":1,"nb":3,"a":[["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["EC%3A3.1.1.112","isoamyl acetate esterase"],["RHEA%3A65236","3-methylbutan-1-ol + acetyl-CoA = 3-methylbutyl acetate + CoA"],["RHEA%3A60436","3-methylbutyl acetate + H2O = 3-methylbutan-1-ol + acetate + H(+)"]]},{"id":"CHEBI:32816","l":"pyruvic acid","na":1,"nb":3,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_32816","requires pyruvic acid"],["MCSA%3A449","cystathionine beta-lyase"],["proteintraitsmech%3ABIOLIP_PYR","PYR-binding site"]]},{"id":"CHEBI:32879","l":"propane","na":1,"nb":3,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["EC%3A1.14.13.227","propane 2-monooxygenase"],["RHEA%3A49992","propane + NADH + O2 + H(+) = propan-2-ol + NAD(+) + H2O"],["proteintraitsmech%3ABIOLIP_TME","TME-binding site"]]},{"id":"CHEBI:33229","l":"vitamin (role)","na":1,"nb":3,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.21","The Solute:Sodium Symporter (SSS) Family"]]},{"id":"CHEBI:33359","l":"rhodium atom","na":1,"nb":3,"a":[["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_RH_DINUCLEAR","dinuclear rhodium site"],["proteintraitsmech%3AMETALPDB_RH_MONONUCLEAR","mononuclear rhodium site"],["proteintraitsmech%3AMETALPDB_RH_TRINUCLEAR","trinuclear rhodium site"]]},{"id":"CHEBI:33377","l":"dysprosium atom","na":1,"nb":3,"a":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_33377","requires Tb"],["proteintraitsmech%3AMETALPDB_DY_DINUCLEAR","dinuclear dysprosium site"],["proteintraitsmech%3AMETALPDB_DY_MONONUCLEAR","mononuclear dysprosium site"]]},{"id":"CHEBI:35780","l":"phosphate ion","na":3,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"]]},{"id":"CHEBI:412516","l":"5-hydroxymethylfurfural","na":1,"nb":3,"a":[["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"]],"b":[["EC%3A1.1.3.47","5-(hydroxymethyl)furfural oxidase"],["RHEA%3A32683","5-hydroxymethylfurfural + 3 O2 + 2 H2O = 2,5-dicarboxyfuran + 3 H2O2 + 2 H(+)"],["RHEA%3A43504","5-hydroxymethylfurfural + O2 = 2,5-diformylfuran + H2O2"]]},{"id":"CHEBI:49631","l":"gallium atom","na":1,"nb":3,"a":[["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_GA_DINUCLEAR","dinuclear gallium site"],["proteintraitsmech%3AMETALPDB_GA_MONONUCLEAR","mononuclear gallium site"],["proteintraitsmech%3AMETALPDB_GA_TETRANUCLEAR","tetranuclear gallium site"]]},{"id":"CHEBI:50699","l":"oligosaccharide","na":1,"nb":3,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"]]},{"id":"CHEBI:920","l":"2,4-dinitrotoluene","na":1,"nb":3,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["EC%3A1.14.12.24","2,4-dinitrotoluene dioxygenase"],["RHEA%3A80191","2,4-dinitrotoluene + 2 NADPH + 2 H(+) = 4-hydroxylamino-2-nitrotoluene + 2 NADP(+) + H2O"],["RHEA%3A46760","2,4-dinitrotoluene + NADH + O2 = 4-methyl-5-nitrocatechol + nitrite + NAD(+)"]]},{"id":"GO:0005982","l":"starch metabolic process","na":1,"nb":3,"a":[["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"]],"b":[["GO%3A0019252","starch biosynthetic process"],["GO%3A0005983","starch catabolic process"],["GO%3A0005982","starch metabolic process"]]},{"id":"GO:0019563","l":"glycerol catabolic process","na":1,"nb":3,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["GO%3A0019588","anaerobic glycerol catabolic process"],["GO%3A0019563","glycerol catabolic process"],["NCBIfam%3ANF008478","dihydroxyacetone kinase phosphoryl donor subunit DhaM"]]},{"id":"GO:0044002","l":"acquisition of nutrients from host","na":1,"nb":3,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0044002","acquisition of nutrients from host"],["GO%3A0044847","iron acquisition from host"],["GO%3A0052091","modulation of nutrient release by host"]]},{"id":"GO:1902422","l":"hydrogen biosynthetic process","na":1,"nb":3,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["GO%3A1902422","hydrogen biosynthetic process"],["GO%3A0044817","hydrogen generation via biophotolysis"],["GO%3A0044835","hydrogen generation via nitrogenase"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":1,"nb":3,"a":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["Pfam%3APF05258","Dna[CI] antecedent, DciA"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"],["TED%3AAF-Q0RZW9-F1-model_v4_TED03","TED highly-symmetric fold AF-Q0RZW9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":1,"nb":3,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF08130","Type A lantibiotic family"],["Pfam%3APF04738","Lantibiotic dehydratase, N terminus"]]},{"id":"NCBITaxon:1587","l":"Lactobacillus helveticus","na":1,"nb":3,"a":[["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"]],"b":[["Pfam%3APF18008","Replication initiator protein A C-terminal domain"],["Pfam%3APF20956","Domain of unknown function (DUF4931) C-terminal domain"],["Pfam%3APF17312","Bacteriocin helveticin-J"]]},{"id":"NCBITaxon:1589","l":"Lactiplantibacillus pentosus","na":1,"nb":3,"a":[["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["PROSITE%3APS60002","Phosphoketolase signature 1"],["PROSITE%3APS60003","Phosphoketolase signature 2"],["TED%3AAF-A0A2K9I3V8-F1-model_v4_TED01","TED novel fold AF-A0A2K9I3V8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1624","l":"Ligilactobacillus salivarius","na":1,"nb":3,"a":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]],"b":[["TED%3AAF-A0A7X2SS58-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X2SS58-F1-model_v4_TED01"],["TED%3AAF-A0A089QBS8-F1-model_v4_TED02","TED novel fold AF-A0A089QBS8-F1-model_v4_TED02"],["TED%3AAF-A0A2A2XCA8-F1-model_v4_TED01","TED novel fold AF-A0A2A2XCA8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1680","l":"Bifidobacterium adolescentis","na":1,"nb":3,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]],"b":[["TED%3AAF-A0A1X2Z2R7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1X2Z2R7-F1-model_v4_TED02"],["TED%3AAF-A0A1X2Z7X6-F1-model_v4_TED02","TED novel fold AF-A0A1X2Z7X6-F1-model_v4_TED02"],["TED%3AAF-A0A1X2ZNR8-F1-model_v4_TED04","TED novel fold AF-A0A1X2ZNR8-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":3,"nb":1,"a":[["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["TED%3AAF-A0A415C3I8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A415C3I8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1708","l":"Cellulomonas fimi","na":1,"nb":3,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["Pfam%3APF00553","Cellulose binding domain"],["PROSITE%3APS00561","CBM2a (carbohydrate-binding type-2) domain signature"],["PROSITE%3APS00591","Glycosyl hydrolases family 10 (GH10) active site"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":3,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]],"b":[["TED%3AAF-A0A142EAM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142EAM9-F1-model_v4_TED03"],["TED%3AAF-A0A1Q3DTY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3DTY6-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3DNE3-F1-model_v4_TED01","TED novel fold AF-A0A1Q3DNE3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:192","l":"Azospirillum brasilense","na":1,"nb":3,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"]],"b":[["Pfam%3APF24931","ACR9-like, ACT-like domain"],["Pfam%3APF27444","Uridylyltransferase GlnD third domain"],["TED%3AAF-A0A235H319-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A235H319-F1-model_v4_TED01"]]},{"id":"NCBITaxon:198620","l":"Pseudomonas koreensis","na":3,"nb":1,"a":[["FourSpecies_Aerobic_Lung_Microbiome_Model.html","Four-Species Aerobic Lung Microbiome Model"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["TED%3AAF-A0A1G7ALV2-F1-model_v4_TED02","TED novel fold AF-A0A1G7ALV2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:203124","l":"Trichodesmium erythraeum IMS101","na":1,"nb":3,"a":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["Pfam%3APF06206","CpeT/CpcT family (DUF1001)"],["Pfam%3APF18460","Heterocyst differentiation regulator C-terminal Hood domain"],["TED%3AAF-Q10WG6-F1-model_v4_TED05","TED highly-symmetric fold AF-Q10WG6-F1-model_v4_TED05"]]},{"id":"NCBITaxon:216816","l":"Bifidobacterium longum","na":3,"nb":1,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["TED%3AAF-A0A413ACI9-F1-model_v4_TED01","TED novel fold AF-A0A413ACI9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2208","l":"Methanosarcina barkeri","na":3,"nb":1,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["Pfam%3APF09505","Dimethylamine methyltransferase (Dimeth_PyL)"]]},{"id":"NCBITaxon:33039","l":"[Ruminococcus] torques","na":1,"nb":3,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["TED%3AAF-A0A174ZX33-F1-model_v4_TED01","TED novel fold AF-A0A174ZX33-F1-model_v4_TED01"],["TED%3AAF-A0A6N3EHF6-F1-model_v4_TED02","TED novel fold AF-A0A6N3EHF6-F1-model_v4_TED02"],["TED%3AAF-A0A6N3EHH7-F1-model_v4_TED01","TED novel fold AF-A0A6N3EHH7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":1,"nb":3,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"],["TED%3AAF-A0A7H8I034-F1-model_v4_TED01","TED novel fold AF-A0A7H8I034-F1-model_v4_TED01"]]},{"id":"NCBITaxon:582","l":"Morganella morganii","na":1,"nb":3,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["PROSITE%3APS01157","Class A bacterial acid phosphatases signature"],["TED%3AAF-A0A2C5TPE5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2C5TPE5-F1-model_v4_TED01"],["TED%3AAF-A0A0A2RJY1-F1-model_v4_TED02","TED novel fold AF-A0A0A2RJY1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:70448","l":"Ostreococcus tauri","na":1,"nb":3,"a":[["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"]],"b":[["TED%3AAF-A0A090M1U3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A090M1U3-F1-model_v4_TED02"],["TED%3AAF-A0A090M3Z3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A090M3Z3-F1-model_v4_TED01"],["TED%3AAF-A0A1Y5INV9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y5INV9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:831","l":"Butyrivibrio fibrisolvens","na":1,"nb":3,"a":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"]],"b":[["Pfam%3APF16738","Starch-binding module 26"],["Pfam%3APF18318","Glutamine synthetase C-terminal domain"],["Pfam%3APF12437","Glutamine synthetase type III N terminal"]]},{"id":"NCBITaxon:94130","l":"Rhizophagus clarus","na":1,"nb":3,"a":[["Mediterranean_AM_Fungal_SixSpecies_SynCom.html","Mediterranean AM Fungal Six-Species SynCom"]],"b":[["TED%3AAF-A0A2Z6R1J4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z6R1J4-F1-model_v4_TED01"],["TED%3AAF-A0A2Z6SKM0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z6SKM0-F1-model_v4_TED01"],["TED%3AAF-A0A2Z6S4T9-F1-model_v4_TED04","TED novel fold AF-A0A2Z6S4T9-F1-model_v4_TED04"]]},{"id":"CHEBI:134612","l":"staphyloferrin B","na":1,"nb":2,"a":[["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_134612","requires staphyloferrin B"],["proteintraitsmech%3ABIOLIP_SE8","SE8-binding site"]]},{"id":"CHEBI:15729","l":"L-ornithine","na":1,"nb":2,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["MCSA%3A12","ornithine carbamoyltransferase"],["proteintraitsmech%3ABIOLIP_ORN","ORN-binding site"]]},{"id":"CHEBI:15904","l":"long-chain fatty acid","na":1,"nb":2,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:15940","l":"nicotinic acid","na":1,"nb":2,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15940","requires nicotinic acid"],["proteintraitsmech%3ABIOLIP_NIO","NIO-binding site"]]},{"id":"CHEBI:15982","l":"cob(I)alamin","na":2,"nb":1,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15982","requires cob(I)alamin"]]},{"id":"CHEBI:16830","l":"methylamine","na":2,"nb":1,"a":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"]],"b":[["proteintraitsmech%3ABIOLIP_NME","NME-binding site"]]},{"id":"CHEBI:16914","l":"salicylic acid","na":2,"nb":1,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"]],"b":[["proteintraitsmech%3ABIOLIP_SAL","SAL-binding site"]]},{"id":"CHEBI:17747","l":"bis(2-ethylhexyl) phthalate","na":1,"nb":2,"a":[["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"]],"b":[["EC%3A3.1.1.60","bis(2-ethylhexyl)phthalate esterase"],["RHEA%3A15529","bis(2-ethylhexyl)phthalate + H2O = 2-ethylhexan-1-ol + 2-ethylhexyl phthalate + H(+)"]]},{"id":"CHEBI:179252","l":"4-Ethyl-2-methoxyphenol","na":2,"nb":1,"a":[["Sichuan_Shai_Vinegar_Yeast_Flavor_SynCom.html","Sichuan Shai Vinegar Yeast Flavor SynCom"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["RHEA%3A73959","2-methoxy-4-vinylphenol + NADH + H(+) = 4-ethyl-2-methoxyphenol + NAD(+)"]]},{"id":"CHEBI:18053","l":"1-aminocyclopropanecarboxylic acid","na":2,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["proteintraitsmech%3ABIOLIP_1AC","1AC-binding site"]]},{"id":"CHEBI:229785","l":"neodymium(3+)","na":2,"nb":1,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_ND","ND-binding site"]]},{"id":"CHEBI:23530","l":"cytokinin","na":1,"nb":2,"a":[["Staged_Cattle_Manure_Ensifer_Bacillus_SynCom.html","Staged Ensifer-Bacillus Cattle-Manure Wastewater SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"]]},{"id":"CHEBI:28073","l":"chromium atom","na":1,"nb":2,"a":[["Meghalaya_Bacillus_Consortia_A22ED9.html","Meghalaya Bacillus Consortia-A22ED9"]],"b":[["proteintraitsmech%3AMETALPDB_CR_DINUCLEAR","dinuclear chromium site"],["proteintraitsmech%3AMETALPDB_CR_MONONUCLEAR","mononuclear chromium site"]]},{"id":"CHEBI:28757","l":"fructose","na":1,"nb":2,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["GO%3A0070061","fructose binding"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:28817","l":"dodecane","na":1,"nb":2,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["RHEA%3A76739","dodecane + reduced [NADPH--hemoprotein reductase] + O2 = 5-dodecanol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["proteintraitsmech%3ABIOLIP_D12","D12-binding site"]]},{"id":"CHEBI:28837","l":"octanoic acid","na":2,"nb":1,"a":[["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["proteintraitsmech%3ABIOLIP_OCA","OCA-binding site"]]},{"id":"CHEBI:29016","l":"arginine","na":1,"nb":2,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:29073","l":"L-ascorbic acid","na":1,"nb":2,"a":[["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29073","requires L-ascorbic acid"],["proteintraitsmech%3ABIOLIP_ASC","ASC-binding site"]]},{"id":"CHEBI:29681","l":"surfactin","na":1,"nb":2,"a":[["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]]},{"id":"CHEBI:30832","l":"adipic acid","na":1,"nb":2,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["proteintraitsmech%3ABIOLIP_0L1","0L1-binding site"]]},{"id":"CHEBI:32588","l":"potassium chloride","na":2,"nb":1,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"]],"b":[["TCDB%3A2.A.30","The Cation-Chloride Cotransporter (CCC) Family"]]},{"id":"CHEBI:33284","l":"nutrient","na":2,"nb":1,"a":[["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["TCDB%3A1.A.91","The Cytoadherence-linked Asexual Protein 3.2 of Plasmodium falciparum (Clag3) Family"]]},{"id":"CHEBI:33848","l":"polycyclic arene","na":2,"nb":1,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Pelagerythrobacter_Salinicola_PES_Pyrene_Degradation_SynCom.html","Pelagerythrobacter-Salinicola PES Pyrene-Degradation SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:33913","l":"corrinoid","na":2,"nb":1,"a":[["Soil_Corrinoid_B12_Reservoir_Community.html","Soil Corrinoid Reservoir Microbial Community"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_33913","requires corrinoid"]]},{"id":"CHEBI:35381","l":"monosaccharide","na":2,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:35404","l":"chromate(2-)","na":2,"nb":1,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"]],"b":[["RHEA%3A32819","chromate(in) = chromate(out)"]]},{"id":"CHEBI:36219","l":"alpha-lactose","na":2,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"]],"b":[["RHEA%3A84479","alpha-lactose = lactulose"]]},{"id":"CHEBI:40646","l":"autoinducer-2","na":1,"nb":2,"a":[["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.86","The Autoinducer-2 Exporter (AI-2E) Family (Formerly the PerM Family, TC #9.B.22)"]]},{"id":"CHEBI:42111","l":"(R)-lactic acid","na":2,"nb":1,"a":[["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_LAC","LAC-binding site"]]},{"id":"CHEBI:44534","l":"N-(3-oxododecanoyl)-L-homoserine lactone","na":2,"nb":1,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["proteintraitsmech%3ABIOLIP_OHN","OHN-binding site"]]},{"id":"CHEBI:46442","l":"vanadate(3-)","na":2,"nb":1,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["proteintraitsmech%3ABIOLIP_VO4","VO4-binding site"]]},{"id":"CHEBI:47381","l":"diclofenac","na":1,"nb":2,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["proteintraitsmech%3ABIOLIP_DIF","DIF-binding site"]]},{"id":"CHEBI:49544","l":"chromium(3+)","na":1,"nb":2,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["RHEA%3A44372","Cr(6+) + 2 NADH + O2 = Cr(3+) + superoxide + 2 NAD(+) + 2 H(+)"],["RHEA%3A44368","Cr(6+) + 2 NADPH + O2 = Cr(3+) + superoxide + 2 NADP(+) + 2 H(+)"]]},{"id":"CHEBI:53650","l":"guaiacylglycerol-beta-guaiacyl ether","na":1,"nb":2,"a":[["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["EC%3A1.11.1.16","versatile peroxidase"],["RHEA%3A22396","1-(4-hydroxy-3-methoxyphenyl)-2-(2-methoxyphenoxy)propane-1,3-diol + H2O2 = guaiacol + vanillin + glycolaldehyde + H2O"]]},{"id":"CHEBI:61448","l":"isopropyl beta-D-thiogalactopyranoside","na":1,"nb":2,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_IPT","IPT-binding site"]]},{"id":"CHEBI:82420","l":"1-chloro-3-nitrobenzene","na":1,"nb":2,"a":[["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]],"b":[["RHEA%3A57808","1-chloro-3-nitrobenzene + NADH + O2 = 3-chlorocatechol + nitrite + NAD(+)"],["RHEA%3A57804","1-chloro-3-nitrobenzene + NADH + O2 = 4-chlorocatechol + nitrite + NAD(+)"]]},{"id":"CHEBI:84046","l":"pyoverdine","na":1,"nb":2,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_84046","requires pyoverdine"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"GO:0006568","l":"obsolete L-tryptophan metabolic process","na":1,"nb":2,"a":[["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"]],"b":[["Pfam%3APF00697","N-(5'phosphoribosyl)anthranilate (PRA) isomerase"],["Pfam%3APF00290","Tryptophan synthase alpha chain"]]},{"id":"GO:0006995","l":"cellular response to nitrogen starvation","na":1,"nb":2,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["GO%3A0006995","cellular response to nitrogen starvation"],["GO%3A0031142","induction of conjugation upon nitrogen starvation"]]},{"id":"GO:0010025","l":"wax biosynthetic process","na":1,"nb":2,"a":[["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"]],"b":[["GO%3A0010025","wax biosynthetic process"],["Reactome%3AR-HSA-9640463","Wax biosynthesis"]]},{"id":"GO:0019417","l":"sulfur oxidation","na":1,"nb":2,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["GO%3A0019417","sulfur oxidation"],["NCBIfam%3ATIGR04484","sulfur oxidation c-type cytochrome SoxA"]]},{"id":"GO:0019676","l":"ammonia assimilation cycle","na":1,"nb":2,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]],"b":[["ComplexPortal%3ACPX-5041","Glutamate synthase [NADPH] complex"],["GO%3A0019676","ammonia assimilation cycle"]]},{"id":"GO:0046359","l":"butyrate catabolic process","na":2,"nb":1,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["GO%3A0046359","butyrate catabolic process"]]},{"id":"GO:0071466","l":"cellular response to xenobiotic stimulus","na":1,"nb":2,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["ComplexPortal%3ACPX-2121","EmrE multidrug transporter complex"],["GO%3A0071466","cellular response to xenobiotic stimulus"]]},{"id":"GO:0141082","l":"symbiont-mediated detoxification of host-generated reactive oxygen species","na":1,"nb":2,"a":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["GO%3A0141082","symbiont-mediated detoxification of host-generated reactive oxygen species"],["Reactome%3AR-HSA-1222538","Tolerance by Mtb to nitric oxide produced by macrophages"]]},{"id":"NCBITaxon:105841","l":"Anaerostipes caccae","na":2,"nb":1,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["TED%3AAF-A0A6N2WKG2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N2WKG2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1245","l":"Leuconostoc mesenteroides","na":1,"nb":2,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["Pfam%3APF08951","Bacteriocin immunity protein family"],["TED%3AAF-A0A8B5R1X5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B5R1X5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1249","l":"Weissella paramesenteroides","na":1,"nb":2,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["Pfam%3APF01874","ATP:dephospho-CoA triphosphoribosyl transferase"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"]]},{"id":"NCBITaxon:1303","l":"Streptococcus oralis","na":1,"nb":2,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["Pfam%3APF03047","COMC family"],["TED%3AAF-A0A139PPG4-F1-model_v4_TED02","TED novel fold AF-A0A139PPG4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1317","l":"Streptococcus downei","na":2,"nb":1,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"],["FourSpecies_Aerobic_Lung_Microbiome_Model.html","Four-Species Aerobic Lung Microbiome Model"]],"b":[["Pfam%3APF13199","Glycosyl hydrolase family 66"]]},{"id":"NCBITaxon:1335","l":"Streptococcus equinus","na":2,"nb":1,"a":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"]],"b":[["TED%3AAF-A0A1V0GLT7-F1-model_v4_TED01","TED novel fold AF-A0A1V0GLT7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1582","l":"Lacticaseibacillus casei","na":1,"nb":2,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["Pfam%3APF07475","HPr Serine kinase C-terminal domain"],["PROSITE%3APS01163","Galactose-1-phosphate uridyl transferase family 2 signature"]]},{"id":"NCBITaxon:158836","l":"Enterobacter hormaechei","na":1,"nb":2,"a":[["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["TED%3AAF-A0A431SE22-F1-model_v4_TED01","TED novel fold AF-A0A431SE22-F1-model_v4_TED01"],["TED%3AAF-A0A8B5ZRS3-F1-model_v4_TED01","TED novel fold AF-A0A8B5ZRS3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1597","l":"Lacticaseibacillus paracasei","na":1,"nb":2,"a":[["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["Pfam%3APF09136","Glucodextranase, domain B"],["Pfam%3APF08109","Lactocin 705 family"]]},{"id":"NCBITaxon:1655","l":"Actinomyces naeslundii","na":1,"nb":2,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["Pfam%3APF16555","Gram-positive pilin subunit D1, N-terminal domain"],["TED%3AAF-A0A2Z5QNH6-F1-model_v4_TED02","TED novel fold AF-A0A2Z5QNH6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1871043","l":"Variovorax sp.","na":2,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]],"b":[["TED%3AAF-A0A2E9BKC8-F1-model_v4_TED02","TED novel fold AF-A0A2E9BKC8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1908224","l":"Sphingopyxis sp.","na":2,"nb":1,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["TED%3AAF-A0A2G2D229-F1-model_v4_TED01","TED novel fold AF-A0A2G2D229-F1-model_v4_TED01"]]},{"id":"NCBITaxon:244366","l":"Klebsiella variicola","na":2,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["TED%3AAF-A0A2N4Z4E2-F1-model_v4_TED01","TED novel fold AF-A0A2N4Z4E2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:246200","l":"Ruegeria pomeroyi DSS-3","na":1,"nb":2,"a":[["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["Pfam%3APF16867","Dimethlysulfonioproprionate lyase"],["Pfam%3APF09347","Domain of unknown function (DUF1989)"]]},{"id":"NCBITaxon:252970","l":"Paraburkholderia phenoliruptrix","na":1,"nb":2,"a":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]],"b":[["TED%3AAF-A0A6J5BF93-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6J5BF93-F1-model_v4_TED01"],["TED%3AAF-A0A6J5BWX8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6J5BWX8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":2,"nb":1,"a":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]],"b":[["PROSITE%3APS01322","Phosphotriesterase family signature 1"]]},{"id":"NCBITaxon:29466","l":"Veillonella parvula","na":2,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]],"b":[["TED%3AAF-A0A134BYG5-F1-model_v4_TED01","TED novel fold AF-A0A134BYG5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:299767","l":"Enterobacter ludwigii","na":2,"nb":1,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["TED%3AAF-W0BYN9-F1-model_v4_TED01","TED highly-symmetric fold AF-W0BYN9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:323259","l":"Methanospirillum hungatei JF-1","na":2,"nb":1,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["Pfam%3APF01864","CDP-archaeol synthase"]]},{"id":"NCBITaxon:33959","l":"Lactobacillus johnsonii","na":2,"nb":1,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]],"b":[["Pfam%3APF13518","Helix-turn-helix domain"]]},{"id":"NCBITaxon:375","l":"Bradyrhizobium japonicum","na":1,"nb":2,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"]],"b":[["TED%3AAF-A0A1L3FD53-F1-model_v4_TED02","TED novel fold AF-A0A1L3FD53-F1-model_v4_TED02"],["TED%3AAF-A0A1L3FDV4-F1-model_v4_TED02","TED novel fold AF-A0A1L3FDV4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:3818","l":"Arachis hypogaea","na":1,"nb":2,"a":[["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["TED%3AAF-A0A445AVV9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A445AVV9-F1-model_v4_TED02"],["TED%3AAF-A0A444Z3U3-F1-model_v4_TED01","TED novel fold AF-A0A444Z3U3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:40214","l":"Acinetobacter johnsonii","na":1,"nb":2,"a":[["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["Pfam%3APF12973","ChrR Cupin-like domain"],["Pfam%3APF13807","G-rich domain on putative tyrosine kinase"]]},{"id":"NCBITaxon:4530","l":"Oryza sativa","na":1,"nb":2,"a":[["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"]],"b":[["Pfam%3APF10839","Protein of unknown function (DUF2647)"],["PROSITE%3APS00937","Ribosomal protein L20 signature"]]},{"id":"NCBITaxon:582702","l":"Rhodanobacter glycinis","na":1,"nb":2,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"]],"b":[["TED%3AAF-A0A1I4G4N7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I4G4N7-F1-model_v4_TED02"],["TED%3AAF-A0A502CFB8-F1-model_v4_TED01","TED novel fold AF-A0A502CFB8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:64104","l":"Bacillus pseudomycoides","na":1,"nb":2,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["TED%3AAF-A0A1Y3MB62-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y3MB62-F1-model_v4_TED01"],["TED%3AAF-A0A2C4USY5-F1-model_v4_TED01","TED novel fold AF-A0A2C4USY5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:659243","l":"Bacillus siamensis","na":2,"nb":1,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"]],"b":[["TED%3AAF-A0A853L550-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A853L550-F1-model_v4_TED02"]]},{"id":"NCBITaxon:82380","l":"Microbacterium oxydans","na":2,"nb":1,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]],"b":[["TED%3AAF-A0A4Y4GD74-F1-model_v4_TED02","TED novel fold AF-A0A4Y4GD74-F1-model_v4_TED02"]]},{"id":"NCBITaxon:94626","l":"Brucella tritici","na":1,"nb":2,"a":[["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]],"b":[["TED%3AAF-A0A7X6FRR6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X6FRR6-F1-model_v4_TED01"],["TED%3AAF-A0A7X6JC90-F1-model_v4_TED01","TED novel fold AF-A0A7X6JC90-F1-model_v4_TED01"]]},{"id":"NCBITaxon:971","l":"Pseudoselenomonas ruminantium","na":1,"nb":2,"a":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"]],"b":[["TED%3AAF-A0A1H0QI16-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H0QI16-F1-model_v4_TED02"],["TED%3AAF-A0A1I6XHL5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I6XHL5-F1-model_v4_TED01"]]},{"id":"UBERON:0002097","l":"skin of body","na":1,"nb":2,"a":[["SkinCom_Synthetic_Skin_Community.html","SkinCom Synthetic Skin Community"]],"b":[["GO%3A0043588","skin development"],["GO%3A0043589","skin morphogenesis"]]},{"id":"CHEBI:15517","l":"butyryl-CoA","na":1,"nb":1,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_BCO","BCO-binding site"]]},{"id":"CHEBI:15859","l":"N-carbamoyl-L-aspartic acid","na":1,"nb":1,"a":[["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:16119","l":"shikimic acid","na":1,"nb":1,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["proteintraitsmech%3ABIOLIP_SKM","SKM-binding site"]]},{"id":"CHEBI:16449","l":"alanine","na":1,"nb":1,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["MCSA%3A724","repressor LexA"]]},{"id":"CHEBI:16988","l":"D-ribose","na":1,"nb":1,"a":[["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:16991","l":"deoxyribonucleic acid","na":1,"nb":1,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_DNA","DNA-binding site"]]},{"id":"CHEBI:17089","l":"glycoprotein","na":1,"nb":1,"a":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"]],"b":[["TCDB%3A9.B.417","The MCFD2/LMAN1 Complex Receptor (MLM-CR) Family"]]},{"id":"CHEBI:17359)","l":"","na":1,"nb":1,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"]],"b":[["RHEA%3A12945","2'-hydroxybiphenyl-2-sulfinate + H2O = biphenyl-2-ol + sulfite + H(+)"]]},{"id":"CHEBI:17418","l":"valeric acid","na":1,"nb":1,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_LEA","LEA-binding site"]]},{"id":"CHEBI:17642","l":"pentachlorophenol","na":1,"nb":1,"a":[["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_PCI","PCI-binding site"]]},{"id":"CHEBI:18012","l":"fumaric acid","na":1,"nb":1,"a":[["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["proteintraitsmech%3ABIOLIP_FUM","FUM-binding site"]]},{"id":"CHEBI:18186","l":"tyrosine","na":1,"nb":1,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["MCSA%3A668","leishmanolysin"]]},{"id":"CHEBI:22660","l":"aspartic acid","na":1,"nb":1,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"]]},{"id":"CHEBI:24632","l":"hydrocarbon","na":1,"nb":1,"a":[["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"]],"b":[["TCDB%3A1.B.9","The FadL Outer Membrane Protein (FadL) Family"]]},{"id":"CHEBI:26401","l":"purines","na":1,"nb":1,"a":[["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:27570","l":"histidine","na":1,"nb":1,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:28260","l":"galactose","na":1,"nb":1,"a":[["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:28808","l":"mannan","na":1,"nb":1,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"]],"b":[["TCDB%3A4.A.3","The PTS Lactose-N,N'-Diacetylchitobiose-β-glucoside (Lac) Family"]]},{"id":"CHEBI:30531","l":"pimelic acid","na":1,"nb":1,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["proteintraitsmech%3ABIOLIP_PML","PML-binding site"]]},{"id":"CHEBI:30778","l":"gallic acid","na":1,"nb":1,"a":[["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_GDE","GDE-binding site"]]},{"id":"CHEBI:32079","l":"pyrrolnitrin","na":1,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["RHEA%3A46136","aminopyrrolnitrin + NADPH + 2 O2 + H(+) = pyrrolnitrin + NADP(+) + 2 H2O"]]},{"id":"CHEBI:33198","l":"D-gluconic acid","na":1,"nb":1,"a":[["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"]],"b":[["proteintraitsmech%3ABIOLIP_GCO","GCO-binding site"]]},{"id":"CHEBI:34031","l":"1,1-dichloroethene","na":1,"nb":1,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["RHEA%3A68000","1,1-dichloroethene + AH2 = chloroethene + chloride + A + H(+)"]]},{"id":"CHEBI:34631","l":"chlorpyrifos","na":1,"nb":1,"a":[["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:35366","l":"fatty acid","na":1,"nb":1,"a":[["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:36976","l":"nucleotide","na":1,"nb":1,"a":[["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"]],"b":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"]]},{"id":"CHEBI:38155","l":"phytosiderophore","na":1,"nb":1,"a":[["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["TCDB%3A2.A.67","The Oligopeptide Transporter (OPT) Family"]]},{"id":"CHEBI:38372","l":"cis-2-dodecenoic acid","na":1,"nb":1,"a":[["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_GEY","GEY-binding site"]]},{"id":"CHEBI:41131","l":"crotonic acid","na":1,"nb":1,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_BEO","BEO-binding site"]]},{"id":"CHEBI:45441","l":"N-acetyl-L-serine","na":1,"nb":1,"a":[["Watermelon_Rhizosphere_Fusarium_SynCom8.html","Watermelon Rhizosphere Fusarium-Protective SynCom8"]],"b":[["proteintraitsmech%3ABIOLIP_SAC","SAC-binding site"]]},{"id":"CHEBI:46645","l":"isobutanol","na":1,"nb":1,"a":[["Trichoderma_Ecoli_Cellulosic_Isobutanol_Coculture.html","Trichoderma-E. coli Cellulosic Isobutanol Coculture"]],"b":[["RHEA%3A64692","isobutanol + NAD(+) = 2-methylpropanal + NADH + H(+)"]]},{"id":"CHEBI:49017","l":"3-methylthiopropanal","na":1,"nb":1,"a":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["RHEA%3A55076","4-methylsulfanyl-2-oxobutanoate + H(+) = 3-methylsulfanylpropanal + CO2"]]},{"id":"CHEBI:49890","l":"samarium(3+)","na":1,"nb":1,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_SM","SM-binding site"]]},{"id":"CHEBI:49980","l":"ytterbium(3+)","na":1,"nb":1,"a":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["proteintraitsmech%3ABIOLIP_YB","YB-binding site"]]},{"id":"CHEBI:7476","l":"naproxen","na":1,"nb":1,"a":[["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"]],"b":[["proteintraitsmech%3ABIOLIP_NPS","NPS-binding site"]]},{"id":"CHEBI:84043","l":"gallium(3+)","na":1,"nb":1,"a":[["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"GO:0006046","l":"N-acetylglucosamine catabolic process","na":1,"nb":1,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]],"b":[["GO%3A0006046","N-acetylglucosamine catabolic process"]]},{"id":"GO:0006082","l":"obsolete organic acid metabolic process","na":1,"nb":1,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["PANTHER%3APTHR43680","NITRATE REDUCTASE MOLYBDENUM COFACTOR ASSEMBLY CHAPERONE"]]},{"id":"GO:0019249","l":"lactate biosynthetic process","na":1,"nb":1,"a":[["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["GO%3A0019249","lactate biosynthetic process"]]},{"id":"GO:0019253","l":"reductive pentose-phosphate cycle","na":1,"nb":1,"a":[["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["GO%3A0019253","reductive pentose-phosphate cycle"]]},{"id":"GO:0019332","l":"aerobic respiration, using nitrite as electron donor","na":1,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"]],"b":[["GO%3A0019332","aerobic respiration, using nitrite as electron donor"]]},{"id":"GO:0022622","l":"root system development","na":1,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["GO%3A0022622","root system development"]]},{"id":"GO:0042192","l":"methylmercury biosynthetic process","na":1,"nb":1,"a":[["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"]],"b":[["GO%3A0042192","methylmercury biosynthetic process"]]},{"id":"GO:0051850","l":"acquisition of nutrients from symbiont","na":1,"nb":1,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0051850","acquisition of nutrients from symbiont"]]},{"id":"GO:0140923","l":"magnetosome assembly","na":1,"nb":1,"a":[["Tropidoatractus_Magnetotacticus_Tripartite_Syntrophy.html","Tropidoatractus magnetotacticus Magnetotactic Ciliate Tripartite Syntrophy"]],"b":[["GO%3A0140923","magnetosome assembly"]]},{"id":"GO:1902087","l":"dimethylsulfoniopropionate catabolic process","na":1,"nb":1,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["GO%3A1902087","dimethylsulfoniopropionate catabolic process"]]},{"id":"NCBITaxon:101028","l":"Fusarium pseudograminearum","na":1,"nb":1,"a":[["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["TED%3AAF-A0A7S8DXW2-F1-model_v4_TED02","TED novel fold AF-A0A7S8DXW2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1072583","l":"Vreelandella boliviensis LC1","na":1,"nb":1,"a":[["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"]],"b":[["TED%3AAF-A0A265DTH2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A265DTH2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1165","l":"Anabaena cylindrica","na":1,"nb":1,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["Pfam%3APF17275","Family of unknown function (DUF5340)"]]},{"id":"NCBITaxon:118127","l":"Chryseobacterium proteolyticum","na":1,"nb":1,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["Pfam%3APF18626","Glutaminase"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":1,"nb":1,"a":[["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["TED%3AAF-A0A132HLN2-F1-model_v4_TED01","TED novel fold AF-A0A132HLN2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1215089","l":"Planococcus halocryophilus","na":1,"nb":1,"a":[["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"]],"b":[["TED%3AAF-A0A1C7DVM0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C7DVM0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":1,"nb":1,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["PROSITE%3APS01043","Transposases, IS30 family, signature"]]},{"id":"NCBITaxon:134","l":"Methylocystis parvus","na":1,"nb":1,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"]],"b":[["TED%3AAF-A0A6B8M6B0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6B8M6B0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:138074","l":"Serratia symbiotica","na":1,"nb":1,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"]],"b":[["TED%3AAF-A0A068YYP3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A068YYP3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1399","l":"Cytobacillus firmus","na":1,"nb":1,"a":[["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"]],"b":[["TED%3AAF-A0A800NFK9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A800NFK9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1520","l":"Clostridium beijerinckii","na":1,"nb":1,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"]],"b":[["TED%3AAF-A0A0B5QQV4-F1-model_v4_TED02","TED novel fold AF-A0A0B5QQV4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1547","l":"Thomasclavelia ramosa","na":1,"nb":1,"a":[["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["TED%3AAF-A0A3E3E4C4-F1-model_v4_TED02","TED novel fold AF-A0A3E3E4C4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1585","l":"Lactobacillus delbrueckii subsp. bulgaricus","na":1,"nb":1,"a":[["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["TED%3AAF-A0A809EIY6-F1-model_v4_TED02","TED novel fold AF-A0A809EIY6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:159743","l":"Paenibacillus terrae","na":1,"nb":1,"a":[["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"]],"b":[["TED%3AAF-A0A0D7WXS4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D7WXS4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1673428","l":"Cuniculiplasma divulgatum","na":1,"nb":1,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["TED%3AAF-A0A1N5S5J2-F1-model_v4_TED02","TED novel fold AF-A0A1N5S5J2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":1,"nb":1,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["Pfam%3APF08124","Polysaccharide lyase family 8, N terminal alpha-helical domain"]]},{"id":"NCBITaxon:1920","l":"Streptomyces nigrescens","na":1,"nb":1,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["Pfam%3APF03995","Peptidase inhibitor family I36"]]},{"id":"NCBITaxon:1979961","l":"Wenzhouxiangella sp.","na":1,"nb":1,"a":[["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["TED%3AAF-A0A5Q4GWL5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Q4GWL5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:216778","l":"Stenotrophomonas rhizophila","na":1,"nb":1,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"]],"b":[["TED%3AAF-A0A023XYG6-F1-model_v4_TED02","TED novel fold AF-A0A023XYG6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2209","l":"Methanosarcina mazei","na":1,"nb":1,"a":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"]],"b":[["TED%3AAF-A0A0F8CQX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F8CQX7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:223967","l":"Methylorubrum populi","na":1,"nb":1,"a":[["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"]],"b":[["TED%3AAF-A0A161JLG1-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A161JLG1-F1-model_v4_TED04"]]},{"id":"NCBITaxon:250","l":"Chryseobacterium gleum","na":1,"nb":1,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["TED%3AAF-A0A448B167-F1-model_v4_TED02","TED novel fold AF-A0A448B167-F1-model_v4_TED02"]]},{"id":"NCBITaxon:258","l":"Sphingobacterium spiritivorum","na":1,"nb":1,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["TED%3AAF-A0A380CHI8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A380CHI8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:264198","l":"Cupriavidus pinatubonensis JMP134","na":1,"nb":1,"a":[["Rhizorhabdus_Cupriavidus_BDE47_Degradation_SynCom.html","Rhizorhabdus-Cupriavidus BDE-47 Degradation SynCom"]],"b":[["TED%3AAF-Q476D1-F1-model_v4_TED02","TED highly-symmetric fold AF-Q476D1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:270351","l":"Methylobacterium aquaticum","na":1,"nb":1,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["TED%3AAF-A0A0J6S4M9-F1-model_v4_TED02","TED novel fold AF-A0A0J6S4M9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2759","l":"Eukaryota","na":1,"nb":1,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2759","Eukaryota orthologous groups (OrthoDB)"]]},{"id":"NCBITaxon:294710","l":"Proteiniphilum acetatigenes","na":1,"nb":1,"a":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"]],"b":[["TED%3AAF-A0A101HH48-F1-model_v4_TED02","TED novel fold AF-A0A101HH48-F1-model_v4_TED02"]]},{"id":"NCBITaxon:29875","l":"Trichoderma virens","na":1,"nb":1,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"]],"b":[["Pfam%3APF07249","Cerato-platanin"]]},{"id":"NCBITaxon:316385","l":"Escherichia coli str. K-12 substr. DH10B","na":1,"nb":1,"a":[["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["Pfam%3APF06392","Acid shock protein"]]},{"id":"NCBITaxon:33905","l":"Bifidobacterium thermophilum","na":1,"nb":1,"a":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["TED%3AAF-A0A2N3QE79-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3QE79-F1-model_v4_TED01"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":1,"nb":1,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["TED%3AAF-A0A679J1E9-F1-model_v4_TED01","TED novel fold AF-A0A679J1E9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:3747","l":"Fragaria x ananassa","na":1,"nb":1,"a":[["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["PROSITE%3APS00451","Pathogenesis-related proteins Bet v I family signature"]]},{"id":"NCBITaxon:37929","l":"Glutamicibacter nicotianae","na":1,"nb":1,"a":[["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"]],"b":[["Pfam%3APF16701","Adenylate cyclase regulatory domain"]]},{"id":"NCBITaxon:38304","l":"Corynebacterium tuberculostearicum","na":1,"nb":1,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["TED%3AAF-A0A7U0H937-F1-model_v4_TED01","TED novel fold AF-A0A7U0H937-F1-model_v4_TED01"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"]],"b":[["Pfam%3APF13282","Domain of unknown function (DUF4070)"]]},{"id":"NCBITaxon:40216","l":"Acinetobacter radioresistens","na":1,"nb":1,"a":[["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["TED%3AAF-A0A7D7YF26-F1-model_v4_TED02","TED novel fold AF-A0A7D7YF26-F1-model_v4_TED02"]]},{"id":"NCBITaxon:4054","l":"Panax ginseng","na":1,"nb":1,"a":[["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"]],"b":[["Pfam%3APF26168","Glycosyltransferase, N-terminal domain"]]},{"id":"NCBITaxon:408","l":"Methylorubrum extorquens","na":1,"nb":1,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["Pfam%3APF04476","4-HFC-P synthase"]]},{"id":"NCBITaxon:453960","l":"Sulfobacillus benefaciens","na":1,"nb":1,"a":[["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"]],"b":[["TED%3AAF-A0A2T2WWZ6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2T2WWZ6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:47715","l":"Lacticaseibacillus rhamnosus","na":1,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["Pfam%3APF04914","DltD protein"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":1,"nb":1,"a":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]],"b":[["TED%3AAF-A0A4R6CRR7-F1-model_v4_TED01","TED novel fold AF-A0A4R6CRR7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:4909","l":"Pichia kudriavzevii","na":1,"nb":1,"a":[["Sichuan_Shai_Vinegar_Yeast_Flavor_SynCom.html","Sichuan Shai Vinegar Yeast Flavor SynCom"]],"b":[["TED%3AAF-A0A099P804-F1-model_v4_TED01","TED novel fold AF-A0A099P804-F1-model_v4_TED01"]]},{"id":"NCBITaxon:4911","l":"Kluyveromyces marxianus","na":1,"nb":1,"a":[["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["Pfam%3APF04684","BAF1 / ABF1 chromatin reorganising factor"]]},{"id":"NCBITaxon:5007","l":"Brettanomyces bruxellensis","na":1,"nb":1,"a":[["Sichuan_Shai_Vinegar_Yeast_Flavor_SynCom.html","Sichuan Shai Vinegar Yeast Flavor SynCom"]],"b":[["TED%3AAF-A0A7D9CWH5-F1-model_v4_TED01","TED novel fold AF-A0A7D9CWH5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":1,"nb":1,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["Pfam%3APF07335","Fungal chitosanase of glycosyl hydrolase group 75"]]},{"id":"NCBITaxon:5547","l":"Trichoderma viride","na":1,"nb":1,"a":[["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["Pfam%3APF14587","O-Glycosyl hydrolase family 30"]]},{"id":"NCBITaxon:61435","l":"Dehalococcoides mccartyi","na":1,"nb":1,"a":[["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"]],"b":[["TED%3AAF-A0A2J1E0L6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J1E0L6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:68239","l":"Streptomyces mirabilis strain P8-A","na":1,"nb":1,"a":[["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["TED%3AAF-A0A1I2Y4U7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2Y4U7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:72360","l":"Bacillus mojavensis","na":1,"nb":1,"a":[["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["Pfam%3APF05952","Bacillus competence pheromone ComX"]]},{"id":"NCBITaxon:82367","l":"Paracoccus pantotrophus","na":1,"nb":1,"a":[["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"]],"b":[["Pfam%3APF17805","AsnC-like ligand binding domain"]]},{"id":"NCBITaxon:901","l":"Desulfovibrio piger","na":1,"nb":1,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["TED%3AAF-A0A848CHH4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A848CHH4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:96241","l":"Bacillus spizizenii","na":1,"nb":1,"a":[["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"]],"b":[["Pfam%3APF05952","Bacillus competence pheromone ComX"]]},{"id":"NCBITaxon:986","l":"Flavobacterium johnsoniae","na":1,"nb":1,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["TED%3AAF-A0A1J7BWE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1J7BWE6-F1-model_v4_TED01"]]}]} \ No newline at end of file +{"a":"CommunityMech","b":"ProteinTraitsMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record="},"n":689,"by":{"CHEBI":276,"NCBITaxon":226,"GO":186,"UBERON":1},"terms":[{"id":"CHEBI:30089","l":"acetate","na":78,"nb":302,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"]],"b":[["EC%3A1.1.1.318","eugenol synthase"],["EC%3A1.1.1.319","isoeugenol synthase"],["EC%3A1.13.11.50","acetylacetone-cleaving enzyme"],["EC%3A1.13.12.4","lactate 2-monooxygenase"],["EC%3A1.14.13.54","ketosteroid monooxygenase"],["EC%3A1.14.14.19","steroid 17alpha-monooxygenase"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":75,"nb":1616,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]],"b":[["EC%3A1.1.1.170","3beta-hydroxysteroid-4alpha-carboxylate 3-dehydrogenase (decarboxylating)"],["EC%3A1.1.1.262","4-hydroxythreonine-4-phosphate dehydrogenase"],["EC%3A1.1.1.276","serine 3-dehydrogenase (NADP(+))"],["EC%3A1.1.1.286","isocitrate--homoisocitrate dehydrogenase"],["EC%3A1.1.1.305","UDP-glucuronic acid oxidase (UDP-4-keto-hexauronic acid decarboxylating)"],["EC%3A1.1.1.343","phosphogluconate dehydrogenase (NAD(+)-dependent, decarboxylating)"]]},{"id":"GO:0015979","l":"photosynthesis","na":44,"nb":146,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["GO%3A0015979","photosynthesis"],["NCBIfam%3ATIGR01337","allophycocyanin subunit beta"],["NCBIfam%3ATIGR03056","alpha/beta fold hydrolase BchO"],["NCBIfam%3ANF013497","Apocytochrome F, C-terminal"],["NCBIfam%3ANF014391","Bacteriochlorophyll A protein"],["NCBIfam%3ANF058502","C-phycocyanin alpha-cysteine-84 phycocyanobilin lyase subunit CpcE"]]},{"id":"GO:0015948","l":"methanogenesis","na":44,"nb":82,"a":[["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"]],"b":[["GO%3A0019385","methanogenesis, from acetate"],["GO%3A0019386","methanogenesis, from carbon dioxide"],["GO%3A0019387","methanogenesis, from methanol"],["GO%3A0015948","methanogenesis"],["proteintraitsmech%3ASEED_SUBSYSTEM_Methanogenesis","Methanogenesis"],["NCBIfam%3ATIGR03957","5,10-methenyltetrahydromethanopterin hydrogenase cofactor biosynthesis protein HmdB"]]},{"id":"CHEBI:18276","l":"dihydrogen","na":58,"nb":42,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"]],"b":[["EC%3A1.12.1.2","hydrogen dehydrogenase"],["EC%3A1.12.1.3","hydrogen dehydrogenase (NADP(+))"],["EC%3A1.12.1.4","hydrogenase (NAD(+), ferredoxin)"],["EC%3A1.12.1.5","hydrogen dehydrogenase [NAD(P)(+)]"],["EC%3A1.12.2.1","cytochrome-c3 hydrogenase"],["EC%3A1.12.5.1","hydrogen:quinone oxidoreductase"]]},{"id":"GO:0015977","l":"carbon fixation","na":33,"nb":30,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["GO%3A0009760","C4 photosynthesis"],["GO%3A0009761","CAM photosynthesis"],["GO%3A0043427","carbon fixation by 3-hydroxypropionate cycle"],["GO%3A0030634","carbon fixation by acetyl-CoA pathway"],["GO%3A0015977","carbon fixation"],["GO%3A0019643","reductive tricarboxylic acid cycle"]]},{"id":"CHEBI:17632","l":"nitrate","na":28,"nb":40,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["EC%3A1.14.12.17","nitric oxide dioxygenase"],["EC%3A1.7.1.1","nitrate reductase (NADH)"],["EC%3A1.7.1.2","nitrate reductase [NAD(P)H]"],["EC%3A1.7.1.3","nitrate reductase (NADPH)"],["EC%3A1.7.5.1","nitrate reductase (quinone)"],["EC%3A1.7.6.1","nitrite dismutase"]]},{"id":"CHEBI:15379","l":"dioxygen","na":25,"nb":3896,"a":[["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["EC%3A1.1.3.10","pyranose oxidase"],["EC%3A1.1.3.11","L-sorbose oxidase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.3.13","alcohol oxidase"],["EC%3A1.1.3.14","catechol oxidase (dimerizing)"],["EC%3A1.1.3.15","(S)-2-hydroxy-acid oxidase"]]},{"id":"CHEBI:16189","l":"sulfate","na":25,"nb":133,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16189","requires sulfate"],["EC%3A1.14.11.77","alkyl sulfatase"],["EC%3A1.8.2.1","sulfite dehydrogenase (cytochrome)"],["EC%3A1.8.3.1","sulfite oxidase"],["EC%3A1.8.5.6","sulfite dehydrogenase (quinone)"],["EC%3A2.7.7.4","sulfate adenylyltransferase"]]},{"id":"CHEBI:16236","l":"ethanol","na":25,"nb":31,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.5.5","alcohol dehydrogenase (quinone)"],["EC%3A1.1.99.36","alcohol dehydrogenase (nicotinoprotein)"],["EC%3A2.3.1.268","ethanol O-acetyltransferase"],["EC%3A3.1.1.113","ethyl acetate hydrolase"],["EC%3A3.1.1.67","fatty-acyl-ethyl-ester synthase"]]},{"id":"GO:0009399","l":"nitrogen fixation","na":24,"nb":36,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"]],"b":[["GO%3A0009399","nitrogen fixation"],["proteintraitsmech%3ASEED_SUBSYSTEM_Nitrogen_fixation","Nitrogen fixation"],["NCBIfam%3ATIGR02662","ADP-ribosyl-[dinitrogen reductase] hydrolase"],["NCBIfam%3ATIGR02931","Fe-only nitrogenase subunit beta"],["NCBIfam%3ATIGR02929","Fe-only nitrogenase subunit delta"],["NCBIfam%3ATIGR02000","Fe-S cluster assembly protein NifU"]]},{"id":"CHEBI:15740","l":"formate","na":23,"nb":173,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"]],"b":[["EC%3A1.1.98.6","ribonucleoside-triphosphate reductase (formate)"],["EC%3A1.10.3.15","grixazone synthase"],["EC%3A1.13.11.41","2,4'-dihydroxyacetophenone dioxygenase"],["EC%3A1.13.11.53","acireductone dioxygenase (Ni(2+)-requiring)"],["EC%3A1.13.11.54","acireductone dioxygenase (Fe(2+)-requiring)"],["EC%3A1.13.11.72","2-hydroxyethylphosphonate dioxygenase"]]},{"id":"CHEBI:24996","l":"lactate","na":22,"nb":23,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["EC%3A1.1.1.436","lactate dehydrogenase (NAD(+),ferredoxin)"],["EC%3A3.5.1.124","protein deglycase"],["RHEA%3A57300","an N(2)-(1-hydroxy-2-oxopropyl)-2'-deoxyguanosine in DNA + H2O = a 2'-deoxyguanosine in DNA + lactate + H(+)"],["RHEA%3A57288","an N(2)-(1-hydroxy-2-oxopropyl)-guanosine in RNA + H2O = a guanosine in RNA + lactate + H(+)"],["RHEA%3A46964","lactate + 2 reduced [2Fe-2S]-[ferredoxin] + 2 NAD(+) = 2 oxidized [2Fe-2S]-[ferredoxin] + pyruvate + 2 NADH"],["RHEA%3A57244","N(2)-(1-hydroxy-2-oxopropyl)-dGTP + H2O = lactate + dGTP + H(+)"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":21,"nb":396,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29033","requires iron(2+)"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.11","glucoside 3-dehydrogenase (cytochrome c)"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.2.3","L-lactate dehydrogenase (cytochrome)"],["EC%3A1.1.2.4","D-lactate dehydrogenase (cytochrome)"]]},{"id":"CHEBI:29034","l":"iron(3+)","na":21,"nb":376,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29034","requires iron(3+)"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.11","glucoside 3-dehydrogenase (cytochrome c)"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.2.3","L-lactate dehydrogenase (cytochrome)"],["EC%3A1.1.2.4","D-lactate dehydrogenase (cytochrome)"]]},{"id":"CHEBI:28938","l":"ammonium","na":19,"nb":837,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_28938","requires ammonium"],["EC%3A1.13.12.15","3,4-dihydroxyphenylalanine oxidative deaminase"],["EC%3A1.13.99.3","tryptophan 2'-dioxygenase"],["EC%3A1.14.11.37","kanamycin B dioxygenase"],["EC%3A1.14.12.1","anthranilate 1,2-dioxygenase (deaminating, decarboxylating)"],["EC%3A1.14.12.14","2-aminobenzenesulfonate 2,3-dioxygenase"]]},{"id":"CHEBI:17968","l":"butyrate","na":19,"nb":33,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"]],"b":[["EC%3A1.3.1.31","2-enoate reductase"],["EC%3A2.3.1.315","succinyl-CoA:cyclohexane-1-carboxylate CoA transferase"],["EC%3A2.7.2.7","butyrate kinase"],["EC%3A2.8.3.9","butyrate--acetoacetate CoA-transferase"],["EC%3A3.1.1.51","phorbol-diester hydrolase"],["EC%3A3.7.1.7","beta-diketone hydrolase"]]},{"id":"GO:0044419","l":"biological process involved in interspecies interaction between organisms","na":148,"nb":18,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]],"b":[["GO%3A0044419","biological process involved in interspecies interaction between organisms"],["GO%3A0044403","biological process involved in symbiotic interaction"],["GO%3A0141060","disruption of anatomical structure in another organism"],["GO%3A0044111","formation of structure involved in a symbiotic process"],["GO%3A0140106","hematophagy"],["GO%3A0035821","modulation of process of another organism"]]},{"id":"GO:0030245","l":"cellulose catabolic process","na":30,"nb":18,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"]],"b":[["GO%3A1990488","anaerobic cellulose catabolic process"],["GO%3A0030245","cellulose catabolic process"],["GO%3A0052785","cellulose catabolism by endo-processive cellulases"],["NCBIfam%3ANF049990","cellulose 1,4-beta-cellobiosidase"],["NCBIfam%3ANF041611","exoglucanase CbhB"],["NCBIfam%3ATIGR03356","GH1 family beta-glucosidase"]]},{"id":"CHEBI:16301","l":"nitrite","na":17,"nb":116,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["EC%3A1.13.11.64","5-nitrosalicylate dioxygenase"],["EC%3A1.13.12.16","nitronate monooxygenase"],["EC%3A1.14.12.23","nitroarene dioxygenase"],["EC%3A1.14.12.24","2,4-dinitrotoluene dioxygenase"],["EC%3A1.14.13.166","4-nitrocatechol 4-monooxygenase"],["EC%3A1.14.13.167","4-nitrophenol 4-monooxygenase"]]},{"id":"GO:0006805","l":"xenobiotic metabolic process","na":17,"nb":38,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"]],"b":[["GO%3A0018872","arsonoacetate metabolic process"],["GO%3A0018890","cyanamide metabolic process"],["GO%3A0018892","cyclohexylsulfamate metabolic process"],["GO%3A0018905","dimethyl ether metabolic process"],["GO%3A0018909","dodecyl sulfate metabolic process"],["GO%3A0042197","halogenated hydrocarbon metabolic process"]]},{"id":"GO:0006826","l":"iron ion transport","na":17,"nb":26,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"]],"b":[["GO%3A1901678","iron coordination entity transport"],["GO%3A0033212","iron import into cell"],["GO%3A0034755","iron ion transmembrane transport"],["GO%3A0006826","iron ion transport"],["GO%3A0033571","lactoferrin transport"],["GO%3A0033572","transferrin transport"]]},{"id":"GO:0005975","l":"carbohydrate metabolic process","na":15,"nb":401,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"]],"b":[["GO%3A0016051","carbohydrate biosynthetic process"],["GO%3A0016052","carbohydrate catabolic process"],["GO%3A0005975","carbohydrate metabolic process"],["GO%3A0046835","carbohydrate phosphorylation"],["GO%3A0042836","D-glucarate metabolic process"],["GO%3A0019521","D-gluconate metabolic process"]]},{"id":"GO:0022900","l":"electron transport chain","na":15,"nb":50,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"]],"b":[["GO%3A0022900","electron transport chain"],["GO%3A0140647","P450-containing electron transport chain"],["GO%3A0009767","photosynthetic electron transport chain"],["GO%3A0022904","respiratory electron transport chain"],["NCBIfam%3ANF058577","4Fe-4S ferredoxin"],["NCBIfam%3ANF042982","8-methylmenaquinol:fumarate reductase flavoprotein subunit"]]},{"id":"CHEBI:17992","l":"sucrose","na":15,"nb":49,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"]],"b":[["EC%3A1.1.99.13","glucoside 3-dehydrogenase (acceptor)"],["EC%3A2.4.1.10","levansucrase"],["EC%3A2.4.1.125","sucrose--1,6-alpha-glucan 3(6)-alpha-glucosyltransferase"],["EC%3A2.4.1.13","sucrose synthase"],["EC%3A2.4.1.166","raffinose--raffinose alpha-galactosyltransferase"],["EC%3A2.4.1.167","sucrose 6(F)-alpha-galactosyltransferase"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":15,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["Pfam%3APF14562","Restriction endonuclease BglI"],["Pfam%3APF09195","Restriction endonuclease BglII/BglIII"],["Pfam%3APF09208","Restriction endonuclease MspI"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":14,"nb":145,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]],"b":[["IDPO%3A0000033","flexible linker"],["IDPO%3A0000014","order to disorder"],["IDPO%3A0000004","pre-molten globule"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"]]},{"id":"GO:0006113","l":"fermentation","na":43,"nb":14,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"]],"b":[["ComplexPortal%3ACPX-281","Hydrogenase-1 complex"],["GO%3A0030645","acetyl-CoA fermentation to butanoate"],["GO%3A0019665","amino acid fermentation"],["GO%3A0019588","anaerobic glycerol catabolic process"],["GO%3A0019658","bifid shunt"],["GO%3A0044577","D-xylose fermentation"]]},{"id":"GO:0006790","l":"sulfur compound metabolic process","na":13,"nb":113,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"]],"b":[["GO%3A0050427","3'-phosphoadenosine 5'-phosphosulfate metabolic process"],["GO%3A0018887","4-carboxy-4'-sulfoazobenzene metabolic process"],["GO%3A0006637","acyl-CoA metabolic process"],["GO%3A0019694","alkanesulfonate metabolic process"],["GO%3A0006768","biotin metabolic process"],["GO%3A1901266","cephalosporin C metabolic process"]]},{"id":"CHEBI:16183","l":"methane","na":62,"nb":13,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"]],"b":[["EC%3A1.14.13.25","methane monooxygenase (soluble)"],["EC%3A1.14.18.3","methane monooxygenase (particulate)"],["EC%3A2.8.4.1","coenzyme-B sulfoethylthiotransferase"],["EC%3A4.7.1.1","alpha-D-ribose 1-methylphosphonate 5-phosphate C-P-lyase"],["RHEA%3A34707","alpha-D-ribose 1-methylphosphonate 5-phosphate + AH2 + S-adenosyl-L-methionine = alpha-D-ribose 1,2-cyclic phosphate 5-phosphate + methane + 5'-deoxyadenosine + L-methionine + A + H(+)"],["RHEA%3A12532","coenzyme B + methyl-coenzyme M = methane + coenzyme M-coenzyme B heterodisulfide"]]},{"id":"CHEBI:26833","l":"sulfur atom","na":12,"nb":24,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["EC%3A1.12.98.4","sulfhydrogenase"],["EC%3A1.13.11.55","sulfur oxygenase/reductase"],["EC%3A1.8.1.18","NAD(P)H sulfur oxidoreductase (CoA-dependent)"],["EC%3A1.8.1.19","sulfide dehydrogenase"],["EC%3A1.8.2.3","sulfide-cytochrome-c reductase (flavocytochrome c)"],["EC%3A1.8.2.7","thiocyanate desulfurase"]]},{"id":"CHEBI:17997","l":"dinitrogen","na":12,"nb":18,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["EC%3A1.18.6.1","nitrogenase"],["EC%3A1.18.6.2","vanadium-dependent nitrogenase"],["EC%3A1.19.6.1","nitrogenase (flavodoxin)"],["EC%3A1.7.2.4","nitrous-oxide reductase"],["EC%3A1.7.2.8","hydrazine dehydrogenase"],["RHEA%3A79967","3-diazoavenalumate + NADH + H(+) = avenalumate + N2 + NAD(+)"]]},{"id":"CHEBI:17272","l":"propionate","na":11,"nb":34,"a":[["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"]],"b":[["EC%3A1.3.1.125","acrylate reductase"],["EC%3A2.7.2.15","propionate kinase"],["EC%3A2.8.3.1","propionate CoA-transferase"],["EC%3A2.8.3.27","propanoyl-CoA:succinate CoA transferase"],["EC%3A4.1.3.32","2,3-dimethylmalate lyase"],["EC%3A6.2.1.13","acetate--CoA ligase (ADP-forming)"]]},{"id":"GO:0044403","l":"biological process involved in symbiotic interaction","na":20,"nb":11,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["GO%3A0036377","arbuscular mycorrhizal association"],["GO%3A0051701","biological process involved in interaction with host"],["GO%3A0051702","biological process involved in interaction with symbiont"],["GO%3A0044403","biological process involved in symbiotic interaction"],["GO%3A0075733","intracellular transport of virus"],["GO%3A0044399","multi-species biofilm formation"]]},{"id":"GO:0045493","l":"xylan catabolic process","na":11,"nb":19,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["GO%3A2000888","arabinoxylan-containing compound catabolic process"],["GO%3A2000886","glucuronoxylan catabolic process"],["GO%3A0045493","xylan catabolic process"],["NCBIfam%3ANF042968","acetylxylan esterase AxeA1"],["NCBIfam%3ANF041579","beta-xylosidase"],["NCBIfam%3ANF042969","bifunctional acetylxylan esterase/glucomannan deacetylase AxeC2"]]},{"id":"GO:0050832","l":"defense response to fungus","na":11,"nb":15,"a":[["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"]],"b":[["GO%3A0019732","antifungal humoral response"],["GO%3A0061760","antifungal innate immune response"],["GO%3A0050832","defense response to fungus"],["NCBIfam%3ANF013159","Barwin family"],["InterPro%3AIPR018226","Barwin, conserved site"],["InterPro%3AIPR001153","Barwin domain"]]},{"id":"CHEBI:16134","l":"ammonia","na":14,"nb":11,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]],"b":[["TCDB%3A1.A.11","The Ammonium Transporter Channel (Amt) Family"],["MCSA%3A376","adenosine deaminase"],["MCSA%3A75","aspartate-ammonia ligase"],["MCSA%3A449","cystathionine beta-lyase"],["MCSA%3A97","cytidine deaminase"],["MCSA%3A710","cytosine deaminase (bacterial)"]]},{"id":"CHEBI:17790","l":"methanol","na":10,"nb":86,"a":[["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"]],"b":[["EC%3A1.1.1.244","methanol dehydrogenase"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.99.37","methanol dehydrogenase (nicotinoprotein)"],["EC%3A1.14.13.25","methane monooxygenase (soluble)"],["EC%3A1.14.14.117","aflatoxin B synthase"]]},{"id":"CHEBI:29036","l":"copper(2+)","na":10,"nb":40,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29036","requires copper(2+)"],["EC%3A1.1.9.1","alcohol dehydrogenase (azurin)"],["EC%3A1.16.3.4","cuproxidase"],["EC%3A1.17.9.1","4-methylphenol dehydrogenase (hydroxylating)"],["EC%3A1.17.9.2","(+)-pinoresinol hydroxylase"],["EC%3A1.20.9.1","arsenate reductase (azurin)"]]},{"id":"GO:0042742","l":"defense response to bacterium","na":9,"nb":53,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["ComplexPortal%3ACPX-10317","Interleukin-26 complex"],["GO%3A0019731","antibacterial humoral response"],["GO%3A0140367","antibacterial innate immune response"],["GO%3A0042742","defense response to bacterium"],["GO%3A0050829","defense response to Gram-negative bacterium"],["GO%3A0050830","defense response to Gram-positive bacterium"]]},{"id":"GO:0009372","l":"quorum sensing","na":9,"nb":21,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["ComplexPortal%3ACPX-4315","Autoinducer-2 ABC transporter complex"],["GO%3A0120218","host interaction involved in quorum sensing"],["GO%3A0009372","quorum sensing"],["NCBIfam%3ANF052393","acyl-homoserine-lactone synthase"],["NCBIfam%3ANF008187","autoinducer-2 kinase"],["NCBIfam%3ANF010444","autoinducer-binding transcriptional regulator TraR"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":9,"nb":20,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]],"b":[["Pfam%3APF14535","AMP-binding enzyme C-terminal domain"],["Pfam%3APF13442","Cytochrome C oxidase, cbb3-type, subunit III"],["Pfam%3APF22247","Catechol 2,3-dioxygenase-like N-terminal domain"],["Pfam%3APF25371","Domain of unknown function (DUF7884)"],["Pfam%3APF19301","LigXa C-terminal domain like"],["Pfam%3APF12729","Four helix bundle sensory module for signal transduction"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":9,"nb":19,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"]],"b":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"],["Pfam%3APF18173","Bacterial HORMA domain 2"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["Pfam%3APF27322","Cap8 HORMA domain"],["Pfam%3APF01526","Tn3 transposase DDE domain"]]},{"id":"CHEBI:28885","l":"butan-1-ol","na":9,"nb":16,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["EC%3A1.1.2.9","1-butanol dehydrogenase (cytochrome c)"],["EC%3A1.1.5.11","1-butanol dehydrogenase (quinone)"],["EC%3A1.14.13.230","butane monooxygenase (soluble)"],["RHEA%3A64672","2-(methylsulfanyl)acetyl-CoA + butan-1-ol = butyl 2-(methylsulfanyl)acetate + CoA"],["RHEA%3A64676","3-(methylsulfanyl)propanoyl-CoA + butan-1-ol = butyl 3-(methylsulfanyl)propanoate + CoA"],["RHEA%3A43432","butan-1-ol + 2 Fe(III)-[cytochrome c] = butanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"]]},{"id":"CHEBI:15361","l":"pyruvate","na":8,"nb":410,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15361","requires pyruvate"],["EC%3A1.1.1.27","L-lactate dehydrogenase"],["EC%3A1.1.1.28","D-lactate dehydrogenase"],["EC%3A1.1.1.38","malate dehydrogenase (oxaloacetate-decarboxylating)"],["EC%3A1.1.1.39","malate dehydrogenase (decarboxylating)"],["EC%3A1.1.1.40","malate dehydrogenase (oxaloacetate-decarboxylating) (NADP(+))"]]},{"id":"GO:0009061","l":"anaerobic respiration","na":8,"nb":36,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["ComplexPortal%3ACPX-4841","Anaerobic glycerol-3-phosphate dehydrogenase complex"],["ComplexPortal%3ACPX-317","Formate hydrogenlyase-H/Hydrogenase-3 complex"],["ComplexPortal%3ACPX-6028","Formate hydrogenlyase-H/Hydrogenase-4 complex"],["ComplexPortal%3ACPX-281","Hydrogenase-1 complex"],["ComplexPortal%3ACPX-282","Hydrogenase-2 complex"],["ComplexPortal%3ACPX-3447","NapAB nitrate reductase complex"]]},{"id":"GO:0010038","l":"response to metal ion","na":8,"nb":34,"a":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["GO%3A0071248","cellular response to metal ion"],["GO%3A0010044","response to aluminum ion"],["GO%3A0046686","response to cadmium ion"],["GO%3A0051592","response to calcium ion"],["GO%3A0010164","response to cesium ion"],["GO%3A0032025","response to cobalt ion"]]},{"id":"CHEBI:18385","l":"thiamine(1+)","na":8,"nb":19,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["EC%3A1.1.3.23","thiamine oxidase"],["EC%3A2.5.1.2","thiamine pyridinylase"],["EC%3A2.7.1.89","thiamine kinase"],["EC%3A2.7.6.2","thiamine diphosphokinase"],["EC%3A3.1.3.100","thiamine phosphate phosphatase"],["EC%3A3.5.99.2","aminopyrimidine aminohydrolase"]]},{"id":"CHEBI:33709","l":"amino acid","na":14,"nb":8,"a":[["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.23","The Dicarboxylate/Amino Acid:Cation (Na+ or H+) Symporter (DAACS) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A1.V.1","The Filamentous Cyanobacterial Septal Pore (Septum) Family"],["TCDB%3A1.A.24","The Gap Junction-forming Connexin (Connexin) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"GO:0015947","l":"methane metabolic process","na":11,"nb":8,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"]],"b":[["GO%3A0046188","methane catabolic process"],["GO%3A0015947","methane metabolic process"],["GO%3A0015948","methanogenesis"],["NCBIfam%3ANF014960","Methane monooxygenase, hydrolase gamma chain"],["Pfam%3APF02964","Methane monooxygenase, hydrolase gamma chain"],["InterPro%3AIPR015952","Methane monooxygenase, gamma chain, domain 1"]]},{"id":"GO:0046274","l":"lignin catabolic process","na":8,"nb":10,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"]],"b":[["GO%3A1990487","anaerobic lignin catabolic process"],["GO%3A1901062","guaiacyl lignin catabolic process"],["GO%3A0046274","lignin catabolic process"],["GO%3A1901059","p-hydroxyphenyl lignin catabolic process"],["GO%3A1901065","syringal lignin catabolic process"],["NCBIfam%3ANF042997","beta-etherase"]]},{"id":"GO:0040007","l":"growth","na":36,"nb":7,"a":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Cultivated_Meat_Contaminant_SynCom.html","Cultivated Meat Contaminant SynCom"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["GO%3A0007117","budding cell bud growth"],["GO%3A0016049","cell growth"],["GO%3A0048589","developmental growth"],["GO%3A0030447","filamentous growth"],["GO%3A0040007","growth"],["GO%3A0080190","lateral growth"]]},{"id":"GO:0042710","l":"biofilm formation","na":29,"nb":7,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["GO%3A0042710","biofilm formation"],["GO%3A0044399","multi-species biofilm formation"],["GO%3A0044010","single-species biofilm formation"],["GO%3A0090605","submerged biofilm formation"],["GO%3A0090604","surface biofilm formation"],["Reactome%3AR-HSA-9931953","Biofilm formation"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":7,"nb":23,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["Pfam%3APF08878","HamA"],["Pfam%3APF05791","Bacillus haemolytic enterotoxin (HBL)"],["Pfam%3APF10803","Spore germination GerPB"],["Pfam%3APF10737","Spore germination protein GerPC"],["Pfam%3APF10970","Spore germination protein GerPE"],["Pfam%3APF07486","Cell Wall Hydrolase"]]},{"id":"CHEBI:17057","l":"cellobiose","na":7,"nb":19,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["EC%3A1.1.3.5","hexose oxidase"],["EC%3A1.1.99.18","cellobiose dehydrogenase (acceptor)"],["EC%3A2.4.1.20","cellobiose phosphorylase"],["EC%3A2.7.1.205","protein-N(pi)-phosphohistidine--D-cellobiose phosphotransferase"],["EC%3A2.7.1.85","beta-glucoside kinase"],["EC%3A5.1.3.11","cellobiose epimerase"]]},{"id":"GO:0019420","l":"dissimilatory sulfate reduction","na":17,"nb":7,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["DVM_Triculture.html","DVM Tri-culture"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"]],"b":[["GO%3A0019420","dissimilatory sulfate reduction"],["NCBIfam%3ATIGR02061","adenylyl-sulfate reductase subunit alpha"],["NCBIfam%3ATIGR02060","adenylyl-sulfate reductase subunit beta"],["NCBIfam%3ATIGR02066","dissimilatory-type sulfite reductase subunit beta"],["NCBIfam%3ANF045796","sulfate reduction electron transfer complex DsrMKJOP subunit DsrK"],["NCBIfam%3ANF045797","sulfate reduction electron transfer complex DsrMKJOP subunit DsrO"]]},{"id":"CHEBI:49786","l":"nickel(2+)","na":7,"nb":10,"a":[["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_49786","requires nickel(2+)"],["EC%3A4.99.1.11","sirohydrochlorin nickelchelatase"],["EC%3A4.99.1.12","pyridinium-3,5-bisthiocarboxylic acid mononucleotide nickel chelatase"],["EC%3A7.2.2.11","ABC-type Ni(2+) transporter"],["RHEA%3A29831","Ni(2+)(in) = Ni(2+)(out)"],["RHEA%3A15557","Ni(2+)(out) + ATP + H2O = Ni(2+)(in) + ADP + phosphate + H(+)"]]},{"id":"NCBITaxon:818","l":"Bacteroides thetaiotaomicron","na":7,"nb":9,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["Pfam%3APF09093","Lyase, catalytic"],["TED%3AAF-A0A174W9M0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A174W9M0-F1-model_v4_TED01"],["TED%3AAF-A0A679HCU6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A679HCU6-F1-model_v4_TED01"],["TED%3AAF-A0A139L295-F1-model_v4_TED04","TED novel fold AF-A0A139L295-F1-model_v4_TED04"],["TED%3AAF-A0A174QBB7-F1-model_v4_TED02","TED novel fold AF-A0A174QBB7-F1-model_v4_TED02"],["TED%3AAF-A0A679H9T4-F1-model_v4_TED03","TED novel fold AF-A0A679H9T4-F1-model_v4_TED03"]]},{"id":"GO:0009056","l":"catabolic process","na":6,"nb":109,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"],["Wetland_Oxygen_Sulfate_GHG_Microcosm_Community.html","Wetland Oxygen-Sulfate Greenhouse Gas Microcosm Community"]],"b":[["GO%3A0018911","1,2,4-trichlorobenzene catabolic process"],["GO%3A0019261","1,4-dichlorobenzene catabolic process"],["GO%3A0046302","2-chloro-N-isopropylacetanilide catabolic process"],["GO%3A1901851","7,8-didemethyl-8-hydroxy-5-deazariboflavin catabolic process"],["GO%3A0006581","acetylcholine catabolic process"],["GO%3A0046185","aldehyde catabolic process"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":6,"nb":93,"a":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17544","requires hydrogencarbonate"],["EC%3A1.13.11.73","methylphosphonate synthase"],["EC%3A1.2.1.27","methylmalonate-semialdehyde dehydrogenase (CoA acylating)"],["EC%3A2.5.1.120","aminodeoxyfutalosine synthase"],["EC%3A2.5.1.143","pyridinium-3,5-biscarboxylic acid mononucleotide synthase"],["EC%3A2.7.2.2","carbamate kinase"]]},{"id":"GO:0006979","l":"response to oxidative stress","na":6,"nb":50,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["ComplexPortal%3ACPX-9082","19S-20S-PA28-alphabeta hybrid proteasome complex"],["ComplexPortal%3ACPX-9085","19S-20S-PA28-gamma hybrid proteasome complex"],["ComplexPortal%3ACPX-8806","20S proteasome complex"],["ComplexPortal%3ACPX-4862","Alkyl hydroperoxide reductase complex"],["ComplexPortal%3ACPX-8842","PA28-alphabeta double-capped 20S proteasome complex"],["ComplexPortal%3ACPX-9002","PA28-alphabeta single-capped 20S proteasome complex"]]},{"id":"CHEBI:17245","l":"carbon monoxide","na":6,"nb":31,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Subsurface_Carboxydocella_CO_Aquifer_Community.html","Subsurface Carboxydocella CO-Oxidation Aquifer Community"]],"b":[["EC%3A1.13.11.24","quercetin 2,3-dioxygenase"],["EC%3A1.13.11.47","3-hydroxy-4-oxoquinoline 2,4-dioxygenase"],["EC%3A1.13.11.48","3-hydroxy-2-methylquinolin-4-one 2,4-dioxygenase"],["EC%3A1.13.11.53","acireductone dioxygenase (Ni(2+)-requiring)"],["EC%3A1.14.14.18","heme oxygenase (biliverdin-producing)"],["EC%3A1.14.15.20","heme oxygenase (biliverdin-producing, ferredoxin)"]]},{"id":"CHEBI:18246","l":"(1->4)-beta-D-glucan","na":27,"nb":6,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["EC%3A2.4.1.12","cellulose synthase (UDP-forming)"],["EC%3A2.4.1.29","cellulose synthase (GDP-forming)"],["EC%3A2.4.1.49","cellodextrin phosphorylase"],["RHEA%3A17797","[(1->4)-beta-D-glucosyl](n) + GDP-alpha-D-glucose = [(1->4)-beta-D-glucosyl](n+1) + GDP + H(+)"],["RHEA%3A23024","[(1->4)-beta-D-glucosyl](n) + phosphate = [(1->4)-beta-D-glucosyl](n-1) + alpha-D-glucose 1-phosphate"],["RHEA%3A19929","[(1->4)-beta-D-glucosyl](n) + UDP-alpha-D-glucose = [(1->4)-beta-D-glucosyl](n+1) + UDP + H(+)"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":6,"nb":16,"a":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["Pfam%3APF16822","SGNH hydrolase-like domain, acetyltransferase AlgX"],["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"],["Pfam%3APF11182","Alginate O-acetyl transferase AlgF"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF27129","Functional amyloid protein FapB/FapC family"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":6,"nb":11,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF02085","Class III cytochrome C family"],["Pfam%3APF06397","Desulfoferrodoxin, N-terminal domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["Pfam%3APF12797","4Fe-4S binding domain"],["Pfam%3APF06180","Cobalt chelatase (CbiK)"]]},{"id":"GO:0009877","l":"nodulation","na":6,"nb":8,"a":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"],["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["GO%3A0009877","nodulation"],["NCBIfam%3ATIGR04243","chitooligosaccharide deacetylase NodB"],["NCBIfam%3ATIGR04242","chitooligosaccharide synthase NodC"],["NCBIfam%3ANF017620","HrpF/NolX family T3SS translocon protein"],["NCBIfam%3ATIGR04245","NodA family N-acyltransferase"],["NCBIfam%3ANF014526","Nodulation protein A (NodA)"]]},{"id":"GO:0071941","l":"nitrogen cycle metabolic process","na":6,"nb":8,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"]],"b":[["GO%3A0019409","aerobic respiration, using ammonia as electron donor"],["GO%3A0019331","anaerobic respiration, using ammonium as electron donor"],["GO%3A0019333","denitrification pathway"],["GO%3A0042128","nitrate assimilation"],["GO%3A0071941","nitrogen cycle metabolic process"],["GO%3A0009399","nitrogen fixation"]]},{"id":"CHEBI:18153","l":"ethene","na":7,"nb":6,"a":[["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"]],"b":[["EC%3A1.13.12.19","2-oxoglutarate dioxygenase (ethylene-forming)"],["EC%3A1.14.17.4","aminocyclopropanecarboxylate oxidase"],["RHEA%3A23640","1-aminocyclopropane-1-carboxylate + L-ascorbate + O2 = ethene + L-dehydroascorbate + hydrogen cyanide + CO2 + 2 H2O"],["RHEA%3A81439","2-(methylsulfanyl)ethanol + AH2 = ethene + methanethiol + A + H2O"],["RHEA%3A31523","2-oxoglutarate + O2 + 2 H(+) = ethene + 3 CO2 + H2O"],["RHEA%3A68004","chloroethene + AH2 = ethene + chloride + A + H(+)"]]},{"id":"NCBITaxon:40324","l":"Stenotrophomonas maltophilia","na":7,"nb":6,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]],"b":[["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["TED%3AAF-A0A2U4H7T5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2U4H7T5-F1-model_v4_TED02"],["TED%3AAF-A0A2W6G5X3-F1-model_v4_TED01","TED novel fold AF-A0A2W6G5X3-F1-model_v4_TED01"],["TED%3AAF-A0A2W6IKS3-F1-model_v4_TED02","TED novel fold AF-A0A2W6IKS3-F1-model_v4_TED02"],["TED%3AAF-A0A7D0KRT5-F1-model_v4_TED03","TED novel fold AF-A0A7D0KRT5-F1-model_v4_TED03"],["TED%3AAF-A0A7T8PWR1-F1-model_v4_TED05","TED novel fold AF-A0A7T8PWR1-F1-model_v4_TED05"]]},{"id":"CHEBI:17754","l":"glycerol","na":5,"nb":95,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"]],"b":[["EC%3A1.1.1.156","glycerol 2-dehydrogenase (NADP(+))"],["EC%3A1.1.1.372","D/L-glyceraldehyde reductase"],["EC%3A1.1.1.6","glycerol dehydrogenase"],["EC%3A1.1.1.72","glycerol dehydrogenase (NADP(+))"],["EC%3A1.1.99.22","glycerol dehydrogenase (acceptor)"],["EC%3A2.4.1.332","1,2-alpha-glucosylglycerol phosphorylase"]]},{"id":"GO:0006629","l":"lipid metabolic process","na":5,"nb":81,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"]],"b":[["ComplexPortal%3ACPX-1381","NVJ1-VAC8 nucleus-vacuole junction complex"],["GO%3A0046485","ether lipid metabolic process"],["GO%3A1901568","fatty acid derivative metabolic process"],["GO%3A0006631","fatty acid metabolic process"],["GO%3A0046486","glycerolipid metabolic process"],["GO%3A0006720","isoprenoid metabolic process"]]},{"id":"GO:0009236","l":"cobalamin biosynthetic process","na":5,"nb":75,"a":[["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["GO%3A0009236","cobalamin biosynthetic process"],["proteintraitsmech%3ASEED_SUBSYSTEM_Cobalamin_synthesis","Cobalamin synthesis"],["NCBIfam%3ATIGR02476","5,6-dimethylbenzimidazole synthase"],["NCBIfam%3ANF011580","adenosylcobalamin/alpha-ribazole phosphatase"],["NCBIfam%3ANF014685","adenosylcobinamide-GDP ribazoletransferase"],["NCBIfam%3ATIGR00317","adenosylcobinamide-GDP ribazoletransferase"]]},{"id":"GO:0006935","l":"chemotaxis","na":5,"nb":64,"a":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["SynCom_MetG2_Rhizobacteria_Sugarcane_Stress_Resilience.html","SynCom MetG2 Rhizobacteria Sugarcane Stress Resilience"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"],["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009454","aerotaxis"]]},{"id":"GO:0006635","l":"fatty acid beta-oxidation","na":5,"nb":32,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["ComplexPortal%3ACPX-3964","fadBA fatty acid oxidation complex, aerobic conditions"],["ComplexPortal%3ACPX-3966","fadJI fatty acid oxidation complex, anaerobic conditions"],["ComplexPortal%3ACPX-6245","Mitochondrial trifunctional enzyme complex"],["GO%3A0006635","fatty acid beta-oxidation"],["GO%3A0033539","fatty acid beta-oxidation using acyl-CoA dehydrogenase"],["GO%3A0033540","fatty acid beta-oxidation using acyl-CoA oxidase"]]},{"id":"GO:0009060","l":"aerobic respiration","na":5,"nb":25,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Soil_CPR_Nanoarchaea_Rare_Biosphere_Community.html","Soil CPR Bacteria and Nanoarchaea Rare-Biosphere Community"]],"b":[["ComplexPortal%3ACPX-266","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-577","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-319","Trimethylamine-N-oxide reductase TorAC complex"],["GO%3A0019646","aerobic electron transport chain"],["GO%3A0009060","aerobic respiration"],["GO%3A0019409","aerobic respiration, using ammonia as electron donor"]]},{"id":"GO:0005986","l":"sucrose biosynthetic process","na":7,"nb":5,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"],["Synechococcus_Bacillus_SPC.html","Synechococcus-Bacillus Synthetic Photosynthetic Consortium"],["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"],["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"],["Synechococcus_Saccharomyces_SPC.html","Synechococcus-Saccharomyces Synthetic Photosynthetic Consortium"]],"b":[["GO%3A0005986","sucrose biosynthetic process"],["NCBIfam%3ANF020061","Sucrose-6-phosphate phosphohydrolase C-terminal"],["NCBIfam%3ATIGR01485","sucrose-phosphate phosphatase"],["InterPro%3AIPR013679","Sucrose-phosphatase, C-terminal"],["Pfam%3APF08472","Sucrose-6-phosphate phosphohydrolase C-terminal"]]},{"id":"CHEBI:18310","l":"alkane","na":5,"nb":5,"a":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"]],"b":[["EC%3A4.99.1.2","alkylmercury lyase"],["RHEA%3A18777","an alkylmercury + H(+) = an alkane + Hg(2+)"],["MCSA%3A297","alkylmercury lyase"],["MCSA%3A248","chloride peroxidase (cofactor free)"],["MCSA%3A250","chloride peroxidase (heme dependent)"]]},{"id":"CHEBI:15377","l":"water","na":4,"nb":9376,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["EC%3A1.1.1.115","ribose 1-dehydrogenase (NADP(+))"],["EC%3A1.1.1.132","GDP-mannose 6-dehydrogenase"],["EC%3A1.1.1.136","UDP-N-acetylglucosamine 6-dehydrogenase"],["EC%3A1.1.1.186","dTDP-galactose 6-dehydrogenase"],["EC%3A1.1.1.192","long-chain-alcohol dehydrogenase"],["EC%3A1.1.1.205","IMP dehydrogenase"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":4,"nb":680,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16240","requires hydrogen peroxide"],["EC%3A1.1.3.10","pyranose oxidase"],["EC%3A1.1.3.11","L-sorbose oxidase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.3.13","alcohol oxidase"],["EC%3A1.1.3.15","(S)-2-hydroxy-acid oxidase"]]},{"id":"GO:0006952","l":"defense response","na":4,"nb":62,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["ComplexPortal%3ACPX-2833","Camalexin biosynthetic metabolon complex"],["ComplexPortal%3ACPX-25769","TAP antigen peptide transporter complex"],["GO%3A0002209","behavioral defense response"],["GO%3A0006968","cellular defense response"],["GO%3A0052542","defense response by callose deposition"],["GO%3A0052482","defense response by cell wall thickening"]]},{"id":"GO:0008610","l":"lipid biosynthetic process","na":4,"nb":61,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"],["Yarrowia_lipolytica_Division_of_Labor_Lipid_Consortium.html","Yarrowia lipolytica Division-of-Labor Lipid Consortium"]],"b":[["GO%3A1900557","emericellamide biosynthetic process"],["GO%3A0008611","ether lipid biosynthetic process"],["GO%3A0006633","fatty acid biosynthetic process"],["GO%3A1901570","fatty acid derivative biosynthetic process"],["GO%3A0045017","glycerolipid biosynthetic process"],["GO%3A0009247","glycolipid biosynthetic process"]]},{"id":"CHEBI:16199","l":"urea","na":4,"nb":48,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["EC%3A3.5.1.5","urease"],["EC%3A3.5.1.95","N-malonylurea hydrolase"],["EC%3A3.5.3.1","arginase"],["EC%3A3.5.3.10","D-arginase"],["EC%3A3.5.3.11","agmatinase"],["EC%3A3.5.3.14","amidinoaspartase"]]},{"id":"CHEBI:29105","l":"zinc(2+)","na":4,"nb":20,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29105","requires zinc(2+)"],["EC%3A7.2.2.12","P-type Zn(2+) transporter"],["EC%3A7.2.2.20","ABC-type Zn(2+) transporter"],["RHEA%3A62264","selenite(out) + Zn(2+)(out) + hydrogencarbonate(out) = selenite(in) + Zn(2+)(in) + hydrogencarbonate(in)"],["RHEA%3A72627","Zn(2+)(in) + 2 H(+)(out) = Zn(2+)(out) + 2 H(+)(in)"],["RHEA%3A20621","Zn(2+)(in) + ATP + H2O = Zn(2+)(out) + ADP + phosphate + H(+)"]]},{"id":"GO:0044003","l":"symbiont-mediated perturbation of host process","na":4,"nb":20,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"]],"b":[["GO%3A0140418","effector-mediated perturbation of host process by symbiont"],["GO%3A0098676","symbiont-mediated modulation of host virulence"],["GO%3A0044068","symbiont-mediated perturbation of host cellular process"],["GO%3A0052031","symbiont-mediated perturbation of host defense response"],["GO%3A0044003","symbiont-mediated perturbation of host process"],["GO%3A0033635","symbiont-mediated perturbation of host response to abiotic stimulus"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":4,"nb":19,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["Pfam%3APF03306","Alpha-acetolactate decarboxylase"],["Pfam%3APF22208","Cas_Csm6 CARF domain"],["Pfam%3APF09659","Cas_Csm6 HEPN domain"],["Pfam%3APF22335","Cas10/Cmr2, second palm domain"],["Pfam%3APF18395","Cas3 C-terminal domain"],["Pfam%3APF18019","Cas3, HD domain"]]},{"id":"CHEBI:16899","l":"D-mannitol","na":4,"nb":17,"a":[["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["EC%3A1.1.1.138","mannitol 2-dehydrogenase (NADP(+))"],["EC%3A1.1.1.255","mannitol dehydrogenase"],["EC%3A1.1.1.67","mannitol 2-dehydrogenase"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.3.40","D-mannitol oxidase"],["EC%3A2.7.1.197","protein-N(pi)-phosphohistidine--D-mannitol phosphotransferase"]]},{"id":"GO:0019333","l":"denitrification pathway","na":13,"nb":4,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"]],"b":[["GO%3A0019333","denitrification pathway"],["NCBIfam%3ATIGR02161","periplasmic nitrate (or nitrite) reductase c-type cytochrome, NapC/NirT family"],["NCBIfam%3ATIGR04244","TAT-dependent nitrous-oxide reductase"],["NCBIfam%3ATIGR04246","Sec-dependent nitrous-oxide reductase"]]},{"id":"GO:0019543","l":"propionate catabolic process","na":4,"nb":11,"a":[["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["GO%3A0019543","propionate catabolic process"],["NCBIfam%3ATIGR02334","2-methylaconitate cis-trans isomerase PrpF"],["NCBIfam%3ATIGR02330","2-methylcitrate dehydratase"],["NCBIfam%3ANF006943","bifunctional 2-methylcitrate dehydratase/aconitate hydratase"],["NCBIfam%3ANF009006","bifunctional 2-methylcitrate synthase/citrate synthase"],["NCBIfam%3ATIGR02333","Fe/S-dependent 2-methylisocitrate dehydratase AcnD"]]},{"id":"CHEBI:48775","l":"cadmium(2+)","na":4,"nb":9,"a":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Meghalaya_Bacillus_Consortia_A22ED9.html","Meghalaya Bacillus Consortia-A22ED9"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["SynCom_Pseudomonas_Rahnella_Artemisia_Phytoremediation.html","Pseudomonas-Rahnella native rhizosphere SynCom for Artemisia argyi phytoremediation"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_48775","requires cadmium(2+)"],["EC%3A7.2.2.2","ABC-type Cd(2+) transporter"],["EC%3A7.2.2.21","Cd(2+)-exporting ATPase"],["RHEA%3A12132","Cd(2+)(in) + ATP + H2O = Cd(2+)(out) + ADP + phosphate + H(+)"],["RHEA%3A28707","Cd(2+)(in) = Cd(2+)(out)"],["RHEA%3A28739","Cd(2+)(in) + H(+)(out) = Cd(2+)(out) + H(+)(in)"]]},{"id":"CHEBI:17029","l":"chitin","na":4,"nb":8,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]],"b":[["EC%3A2.4.1.16","chitin synthase"],["EC%3A3.5.1.41","chitin deacetylase"],["RHEA%3A85463","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-1)-N-acetyl-alpha-D-glucosamine"],["RHEA%3A50672","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-2) + N,N'-diacetylchitobiose"],["RHEA%3A85003","[(1->4)-N-acetyl-beta-D-glucosaminyl](n)-N-acetyl-alpha-D-glucosamine + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n) + N-acetyl-alpha-D-glucosamine"],["RHEA%3A10464","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + n H2O = chitosan + n acetate"]]},{"id":"CHEBI:30411","l":"cobalamin","na":8,"nb":4,"a":[["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_30411","requires cobalamin"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.A.54","The Lysosomal Cobalamin (B12) Transporter (L-B12T) Family"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]]},{"id":"CHEBI:64709","l":"organic acid","na":7,"nb":4,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["TCDB%3A2.A.28","The Bile Acid:Na+ Symporter (BASS) Family"],["TCDB%3A2.A.23","The Dicarboxylate/Amino Acid:Cation (Na+ or H+) Symporter (DAACS) Family"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.25","The Outer Membrane Porin (Opr) Family"]]},{"id":"CHEBI:28509","l":"chloroethene","na":6,"nb":4,"a":[["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["RHEA%3A68000","1,1-dichloroethene + AH2 = chloroethene + chloride + A + H(+)"],["RHEA%3A68004","chloroethene + AH2 = ethene + chloride + A + H(+)"],["RHEA%3A83555","chloroethene + reduced [NADPH--hemoprotein reductase] + O2 = chloroethylene oxide + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A67996","(Z)-1,2-dichloroethene + AH2 = chloroethene + chloride + A + H(+)"]]},{"id":"GO:1903457","l":"lactate catabolic process","na":6,"nb":4,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["GO%3A1990484","aerobic lactate catabolic process"],["GO%3A1990485","anaerobic lactate catabolic process"],["GO%3A1903457","lactate catabolic process"],["NCBIfam%3ANF049975","D-2-hydroxyglutarate dehydrogenase YdiJ"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":4,"nb":6,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF10779","Haemolysin XhlA"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF08181","DegQ (SacQ) family"],["Pfam%3APF08057","Erythromycin resistance leader peptide"],["Pfam%3APF14867","Lantibiotic alpha"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":4,"nb":6,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["Pfam%3APF16376","N-terminal domain of fragilysin"],["TED%3AAF-A0A412XR06-F1-model_v4_TED03","TED novel fold AF-A0A412XR06-F1-model_v4_TED03"],["TED%3AAF-A0A4V1EUI2-F1-model_v4_TED02","TED novel fold AF-A0A4V1EUI2-F1-model_v4_TED02"],["TED%3AAF-A0A5C6IXH5-F1-model_v4_TED01","TED novel fold AF-A0A5C6IXH5-F1-model_v4_TED01"],["TED%3AAF-A0A5C6L6G9-F1-model_v4_TED02","TED novel fold AF-A0A5C6L6G9-F1-model_v4_TED02"],["TED%3AAF-A0A642KY52-F1-model_v4_TED01","TED novel fold AF-A0A642KY52-F1-model_v4_TED01"]]},{"id":"CHEBI:16670","l":"peptide","na":4,"nb":5,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A9.B.46","The Staphylococcus aureus Putative Quorum Sensing Peptide Exporter, AgrB (AgrB) Family"],["TCDB%3A3.A.25","The Symbiont-specific ERAD-like Machinery (SELMA) Family"],["proteintraitsmech%3ABIOLIP_PEPTIDE","peptide-binding site"]]},{"id":"NCBITaxon:5544","l":"Trichoderma harzianum","na":5,"nb":4,"a":[["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"],["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"],["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["Pfam%3APF00840","Glycosyl hydrolase family 7"],["Pfam%3APF12708","Rhamnogalacturonase A/epimerase, pectate lyase-like"],["TED%3AAF-A0A0F9XDU3-F1-model_v4_TED01","TED novel fold AF-A0A0F9XDU3-F1-model_v4_TED01"],["TED%3AAF-A0A0G0ASL4-F1-model_v4_TED01","TED novel fold AF-A0A0G0ASL4-F1-model_v4_TED01"]]},{"id":"CHEBI:18154","l":"polysaccharide","na":4,"nb":4,"a":[["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Wollastonite_Ramichloridium_Talaromyces_Fungal_Consortium.html","Wollastonite Ramichloridium-Talaromyces Fungal Consortium"]],"b":[["TCDB%3A9.B.97","The Acyltransferase-3/Putative Acetyl-CoA Transporter (AT3AT) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.18","The Outer Membrane Auxiliary (OMA) Protein Family"]]},{"id":"GO:0019541","l":"propionate metabolic process","na":4,"nb":4,"a":[["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["GO%3A0019542","propionate biosynthetic process"],["GO%3A0019543","propionate catabolic process"],["GO%3A0019541","propionate metabolic process"],["GO%3A0019657","pyruvate fermentation to propionate"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":3,"nb":212,"a":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["EC%3A1.1.1.244","methanol dehydrogenase"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.99.37","methanol dehydrogenase (nicotinoprotein)"],["EC%3A1.13.11.94","4-vinylguaiacol dioxygenase"],["EC%3A1.14.11.27","[histone H3]-dimethyl-L-lysine(36) demethylase"]]},{"id":"GO:0006520","l":"amino acid metabolic process","na":3,"nb":155,"a":[["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["GO%3A0043038","amino acid activation"],["GO%3A0008652","amino acid biosynthetic process"],["GO%3A0009063","amino acid catabolic process"],["GO%3A0006520","amino acid metabolic process"],["GO%3A0006525","arginine metabolic process"],["GO%3A0009072","aromatic amino acid metabolic process"]]},{"id":"CHEBI:17359","l":"sulfite","na":3,"nb":109,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"]],"b":[["EC%3A1.13.11.18","persulfide dioxygenase"],["EC%3A1.13.11.55","sulfur oxygenase/reductase"],["EC%3A1.14.11.17","taurine dioxygenase"],["EC%3A1.14.12.8","4-sulfobenzoate 3,4-dioxygenase"],["EC%3A1.14.13.111","methanesulfonate monooxygenase (NADH)"],["EC%3A1.14.14.181","sulfoquinovose monooxygenase"]]},{"id":"GO:0007155","l":"cell adhesion","na":3,"nb":102,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"]],"b":[["ComplexPortal%3ACPX-12912","BCAR1-CRK-SH2D3C, focal adhesion regulator complex"],["ComplexPortal%3ACPX-1737","Collagen type VII trimer"],["ComplexPortal%3ACPX-2966","Collagen type VII trimer"],["ComplexPortal%3ACPX-2855","Fimbrial Tip Complex FimFGH"],["ComplexPortal%3ACPX-450","Multimerin-2 complex"],["ComplexPortal%3ACPX-451","Multimerin-2 complex"]]},{"id":"GO:0008652","l":"amino acid biosynthetic process","na":3,"nb":69,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"]],"b":[["GO%3A0008153","4-aminobenzoate biosynthetic process"],["GO%3A0006523","alanine biosynthetic process"],["GO%3A0008652","amino acid biosynthetic process"],["GO%3A0043102","amino acid salvage"],["GO%3A0019483","beta-alanine biosynthetic process"],["GO%3A0035499","carnosine biosynthetic process"]]},{"id":"GO:0030001","l":"metal ion transport","na":3,"nb":66,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["GO%3A0015690","aluminum cation transport"],["GO%3A0006816","calcium ion transport"],["GO%3A0015692","lead ion transport"],["GO%3A0010351","lithium ion transport"],["GO%3A0015693","magnesium ion transport"],["GO%3A0030001","metal ion transport"]]},{"id":"CHEBI:29035","l":"manganese(2+)","na":3,"nb":44,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29035","requires manganese(2+)"],["EC%3A1.11.1.13","manganese peroxidase"],["EC%3A1.11.1.16","versatile peroxidase"],["EC%3A1.16.3.3","manganese oxidase"],["EC%3A7.2.2.22","P-type Mn(2+) transporter"],["EC%3A7.2.2.5","ABC-type Mn(2+) transporter"]]},{"id":"GO:0010467","l":"gene expression","na":3,"nb":41,"a":[["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["GO%3A0001816","cytokine production"],["GO%3A0010467","gene expression"],["GO%3A1901148","gene expression involved in extracellular matrix organization"],["GO%3A0140053","mitochondrial gene expression"],["GO%3A0036162","oxytocin production"],["GO%3A0140899","plastid gene expression"]]},{"id":"CHEBI:17750","l":"glycine betaine","na":3,"nb":33,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["EC%3A1.1.3.17","choline oxidase"],["EC%3A1.13.11.90","[1-hydroxy-2-(trimethylamino)ethyl]phosphonate dioxygenase (glycine- betaine-forming)"],["EC%3A1.14.13.251","glycine betaine monooxygenase"],["EC%3A1.2.1.8","betaine-aldehyde dehydrogenase"],["EC%3A1.21.4.4","betaine reductase"],["EC%3A2.1.1.157","sarcosine/dimethylglycine N-methyltransferase"]]},{"id":"CHEBI:29103","l":"potassium(1+)","na":3,"nb":32,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29103","requires potassium(1+)"],["EC%3A7.2.2.13","Na(+)/K(+)-exchanging ATPase"],["EC%3A7.2.2.19","H(+)/K(+)-exchanging ATPase"],["EC%3A7.2.2.6","P-type K(+) transporter"],["RHEA%3A18353","2 K(+)(out) + 3 Na(+)(in) + ATP + H2O = 2 K(+)(in) + 3 Na(+)(out) + ADP + phosphate + H(+)"],["RHEA%3A69967","Ca(2+)(out) + K(+)(out) + 4 Na(+)(in) = Ca(2+)(in) + K(+)(in) + 4 Na(+)(out)"]]},{"id":"NCBITaxon:3055","l":"Chlamydomonas reinhardtii","na":3,"nb":27,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]],"b":[["Pfam%3APF01333","Apocytochrome F, C-terminal"],["Pfam%3APF16639","Apocytochrome F, N-terminal"],["Pfam%3APF00430","ATP synthase B/B' CF(0)"],["Pfam%3APF00401","ATP synthase, Delta/Epsilon chain, long alpha-helix domain"],["Pfam%3APF21771","CFAP58 central coiled coil"],["Pfam%3APF27956","CFAP99 V-shaped coiled-coil domain"]]},{"id":"GO:0031347","l":"regulation of defense response","na":3,"nb":25,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"],["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["GO%3A0031348","negative regulation of defense response"],["GO%3A0031349","positive regulation of defense response"],["GO%3A0002759","regulation of antimicrobial humoral response"],["GO%3A2000822","regulation of behavioral fear response"],["GO%3A0010185","regulation of cellular defense response"],["GO%3A2000071","regulation of defense response by callose deposition"]]},{"id":"GO:0000162","l":"L-tryptophan biosynthetic process","na":3,"nb":22,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"]],"b":[["ComplexPortal%3ACPX-1850","Anthranilate synthase complex"],["ComplexPortal%3ACPX-4783","Anthranilate synthase complex"],["ComplexPortal%3ACPX-3446","TrpAB tryptophan synthase complex"],["GO%3A0000162","L-tryptophan biosynthetic process"],["NCBIfam%3ANF010081","anthranilate synthase component I"],["NCBIfam%3ANF010086","anthranilate synthase component I"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":3,"nb":21,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29108","requires calcium(2+)"],["EC%3A1.13.12.24","calcium-regulated photoprotein"],["EC%3A7.2.2.10","P-type Ca(2+) transporter"],["RHEA%3A72631","3 Li(+)(out) + Ca(2+)(in) = 3 Li(+)(in) + Ca(2+)(out)"],["RHEA%3A55884","[aequorin] + 3 Ca(2+) = [aequorin]--dioxetanone"],["RHEA%3A55888","[aequorin]--dioxetanone = excited state-[aequorin] + CO2"]]},{"id":"CHEBI:17716","l":"lactose","na":3,"nb":20,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"]],"b":[["EC%3A2.4.1.22","lactose synthase"],["EC%3A2.7.1.207","protein-N(pi)-phosphohistidine--lactose phosphotransferase"],["EC%3A3.2.1.108","lactase"],["EC%3A3.2.1.140","lacto-N-biosidase"],["EC%3A3.2.1.227","N-acetyllactosaminidase"],["RHEA%3A86923","a beta-D-Gal-(1->4)-beta-D-Glc-(1<->1)-Cer(d18:1(4E)) + H2O = lactose + an N-acylsphing-4-enine"]]},{"id":"GO:0045088","l":"regulation of innate immune response","na":3,"nb":19,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["GO%3A0045824","negative regulation of innate immune response"],["GO%3A0045089","positive regulation of innate immune response"],["GO%3A1904248","regulation of age-related resistance"],["GO%3A1905034","regulation of antifungal innate immune response"],["GO%3A0030451","regulation of complement activation, alternative pathway"],["GO%3A0001868","regulation of complement activation, lectin pathway"]]},{"id":"CHEBI:48828","l":"cobalt(2+)","na":3,"nb":16,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_48828","requires cobalt(2+)"],["EC%3A1.16.99.1","[Co(II) methylated amine-specific corrinoid protein] reductase"],["EC%3A4.99.1.3","sirohydrochlorin cobaltochelatase"],["EC%3A6.6.1.2","cobaltochelatase"],["RHEA%3A65832","2 Co(II)-[dimethylamine-specific corrinoid protein] + AH2 + ATP + H2O = 2 Co(I)-[dimethylamine-specific corrinoid protein] + A + ADP + phosphate + 3 H(+)"],["RHEA%3A65816","2 Co(II)-[methylamine-specific corrinoid protein] + AH2 + ATP + H2O = 2 Co(I)-[methylamine-specific corrinoid protein] + A + ADP + phosphate + 3 H(+)"]]},{"id":"CHEBI:17045","l":"dinitrogen oxide","na":3,"nb":13,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"]],"b":[["EC%3A1.7.1.14","nitric oxide reductase [NAD(P)(+), nitrous oxide-forming]"],["EC%3A1.7.2.4","nitrous-oxide reductase"],["EC%3A1.7.2.5","nitric-oxide reductase (cytochrome c)"],["EC%3A1.7.5.2","nitric oxide reductase (menaquinol)"],["RHEA%3A30215","a menaquinol + 2 nitric oxide = nitrous oxide + a menaquinone + H2O"],["RHEA%3A43108","N2 + 2 Fe(III)-[cytochrome c] + H2O = nitrous oxide + 2 Fe(II)-[cytochrome c] + 2 H(+)"]]},{"id":"CHEBI:26271","l":"proline","na":3,"nb":12,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.15","The Betaine/Carnitine/Choline Transporter (BCCT) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"]]},{"id":"GO:0006083","l":"acetate metabolic process","na":3,"nb":12,"a":[["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["GO%3A0019413","acetate biosynthetic process"],["GO%3A0045733","acetate catabolic process"],["GO%3A0006083","acetate metabolic process"],["GO%3A0045122","aflatoxin biosynthetic process"],["GO%3A0019658","bifid shunt"],["GO%3A0019475","L-lysine fermentation"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":11,"nb":3,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["Pfam%3APF14864","Alkyl sulfatase C-terminal"],["Pfam%3APF13816","Haem-containing dehydratase"],["Pfam%3APF14863","Alkyl sulfatase dimerisation"]]},{"id":"GO:0019329","l":"ammonia oxidation","na":10,"nb":3,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"]],"b":[["GO%3A0019409","aerobic respiration, using ammonia as electron donor"],["GO%3A0019329","ammonia oxidation"],["GO%3A0019331","anaerobic respiration, using ammonium as electron donor"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":3,"nb":10,"a":[["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["Pfam%3APF27445","Adaptation to cold protein A"],["Pfam%3APF27450","AtcB C-terminal domain"],["Pfam%3APF27486","AtcB N-terminal domain"],["Pfam%3APF02464","CinA C-terminal domain"],["Pfam%3APF13657","HipA N-terminal domain"],["Pfam%3APF01934","Ribonuclease HepT-like"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":3,"nb":10,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF09081","Glucan 1,4-alpha-maltotetraohydrolase, domain C"],["Pfam%3APF09459","Ethylbenzene dehydrogenase"],["Pfam%3APF08406","CbbQ/NirQ/NorQ C-terminal"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"],["Pfam%3APF18793","Nitrous oxide reductase propeller repeat 2"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":3,"nb":10,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["Pfam%3APF17433","Glycosyl hydrolase family 49 N-terminal Ig-like domain"],["PROSITE%3APS00820","Glucoamylase active site region signature"],["PROSITE%3APS00920","Nitrilases / cyanide hydratase signature 1"],["PROSITE%3APS00502","Polygalacturonase active site"],["Pfam%3APF18841","Beta solenoid repeat from Dextranase"],["Pfam%3APF03718","Glycosyl hydrolase family 49"]]},{"id":"NCBITaxon:853","l":"Faecalibacterium prausnitzii","na":3,"nb":10,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"]],"b":[["TED%3AAF-A0A2A7AJ69-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A7AJ69-F1-model_v4_TED01"],["TED%3AAF-A0A329UNG0-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A329UNG0-F1-model_v4_TED05"],["TED%3AAF-A0A3F3JVN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3F3JVN3-F1-model_v4_TED01"],["TED%3AAF-A0A564SWB8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A564SWB8-F1-model_v4_TED02"],["TED%3AAF-A0A173SIF7-F1-model_v4_TED01","TED novel fold AF-A0A173SIF7-F1-model_v4_TED01"],["TED%3AAF-A0A173WYP6-F1-model_v4_TED01","TED novel fold AF-A0A173WYP6-F1-model_v4_TED01"]]},{"id":"CHEBI:16602","l":"trichloroethene","na":9,"nb":3,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["EC%3A1.21.99.5","tetrachloroethene reductive dehalogenase"],["RHEA%3A67992","trichloroethene + AH2 = (Z)-1,2-dichloroethene + chloride + A + H(+)"],["RHEA%3A20353","trichloroethene + chloride + A + H(+) = tetrachloroethene + AH2"]]},{"id":"CHEBI:18367","l":"phosphate(3-)","na":9,"nb":3,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["proteintraitsmech%3ABIOLIP_PO4","PO4-binding site"]]},{"id":"CHEBI:87393","l":"hexan-1-ol","na":3,"nb":9,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["RHEA%3A65480","2-methylbutanoyl-CoA + hexan-1-ol = hexyl 2-methylbutanoate + CoA"],["RHEA%3A79331","hexan-1-ol + 2 Fe(III)-[cytochrome c] = hexanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A65460","hexan-1-ol + acetyl-CoA = hexyl acetate + CoA"],["RHEA%3A65444","hexan-1-ol + butanoyl-CoA = hexyl butanoate + CoA"],["RHEA%3A65484","hexan-1-ol + hexanoyl-CoA = hexyl hexanoate + CoA"],["RHEA%3A60972","hexan-1-ol + NAD(+) = hexanal + NADH + H(+)"]]},{"id":"GO:1990748","l":"cellular detoxification","na":3,"nb":9,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["GO%3A1990748","cellular detoxification"],["GO%3A0140977","cellular detoxification of acetone"],["GO%3A0110095","cellular detoxification of aldehyde"],["GO%3A0140114","cellular detoxification of fluoride"],["GO%3A0140961","cellular detoxification of metal ion"],["GO%3A0070458","cellular detoxification of nitrogen compound"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":3,"nb":8,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["Pfam%3APF01890","Cobalamin synthesis G C-terminus"],["Pfam%3APF11761","Cobalamin biosynthesis central region"],["Pfam%3APF11760","Cobalamin synthesis G N-terminal"],["Pfam%3APF02570","Precorrin-8X methylmutase"],["PROSITE%3APS00304","Small, acid-soluble spore proteins, alpha/beta type, signature 1"],["PROSITE%3APS00684","Small, acid-soluble spore proteins, alpha/beta type, signature 2"]]},{"id":"CHEBI:30742","l":"ethylene glycol","na":3,"nb":7,"a":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"]],"b":[["EC%3A3.1.1.102","mono(ethylene terephthalate) hydrolase"],["RHEA%3A42648","(2,5-ethylene furandicarboxylate)(n) + 2 H2O = (2,5-ethylene furandicarboxylate)(n-1) + 2,5-dicarboxyfuran + ethylene glycol + 2 H(+)"],["RHEA%3A49532","4-[(2-hydroxyethoxy)carbonyl]benzoate + H2O = terephthalate + ethylene glycol + H(+)"],["RHEA%3A80759","bis(2-hydroxyethyl) terephthalate + H2O = 4-[(2-hydroxyethoxy)carbonyl]benzoate + ethylene glycol + H(+)"],["RHEA%3A27630","ethylene glycol + NAD(+) = glycolaldehyde + NADH + H(+)"],["MCSA%3A847","epoxide hydrolase"]]},{"id":"NCBITaxon:28116","l":"Bacteroides ovatus","na":3,"nb":7,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["TED%3AAF-A0A515J030-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A515J030-F1-model_v4_TED01"],["TED%3AAF-A0A5M5C3M7-F1-model_v4_TED01","TED novel fold AF-A0A5M5C3M7-F1-model_v4_TED01"],["TED%3AAF-A0A641PL20-F1-model_v4_TED01","TED novel fold AF-A0A641PL20-F1-model_v4_TED01"],["TED%3AAF-A0A641V3P9-F1-model_v4_TED03","TED novel fold AF-A0A641V3P9-F1-model_v4_TED03"],["TED%3AAF-A0A641VT79-F1-model_v4_TED01","TED novel fold AF-A0A641VT79-F1-model_v4_TED01"],["TED%3AAF-A0A642C648-F1-model_v4_TED01","TED novel fold AF-A0A642C648-F1-model_v4_TED01"]]},{"id":"CHEBI:15890","l":"5,6-dimethylbenzimidazole","na":3,"nb":6,"a":[["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["EC%3A1.13.11.79","aerobic 5,6-dimethylbenzimidazole synthase"],["EC%3A2.4.2.21","nicotinate-nucleotide--dimethylbenzimidazole phosphoribosyltransferase"],["RHEA%3A11196","5,6-dimethylbenzimidazole + nicotinate beta-D-ribonucleotide = alpha-ribazole 5'-phosphate + nicotinate + H(+)"],["RHEA%3A27345","FMNH2 + O2 = dialurate + 5,6-dimethylbenzimidazole + D-erythrose 4-phosphate + H(+)"],["MCSA%3A79","nicotinate-nucleotide-dimethylbenzimidazole phosphoribosyltransferase"],["proteintraitsmech%3ABIOLIP_DMD","DMD-binding site"]]},{"id":"CHEBI:27266","l":"valine","na":3,"nb":6,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.26","The Branched Chain Amino Acid:Cation Symporter (LIVCS) Family"],["TCDB%3A2.A.78","The Branched Chain Amino Acid Exporter (LIV-E) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:55474","l":"N-acyl-L-homoserine lactone","na":3,"nb":6,"a":[["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["EC%3A2.3.1.184","acyl-homoserine-lactone synthase"],["EC%3A3.1.1.81","quorum-quenching N-acyl-homoserine lactonase"],["EC%3A3.5.1.97","acyl-homoserine-lactone acylase"],["RHEA%3A10096","a fatty acyl-[ACP] + S-adenosyl-L-methionine = an N-acyl-L-homoserine lactone + S-methyl-5'-thioadenosine + holo-[ACP] + H(+)"],["RHEA%3A22576","an N-acyl-L-homoserine lactone + H2O = an N-acyl-L-homoserine + H(+)"],["RHEA%3A18937","an N-acyl-L-homoserine lactone + H2O = L-homoserine lactone + a carboxylate"]]},{"id":"NCBITaxon:1390","l":"Bacillus amyloliquefaciens","na":3,"nb":6,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]],"b":[["Pfam%3APF02923","Restriction endonuclease BamHI"],["Pfam%3APF01337","Barstar (barnase inhibitor)"],["Pfam%3APF22148","Fervidolysin N-terminal prodomain"],["PROSITE%3APS00093","N-4 cytosine-specific DNA methylases signature"],["PROSITE%3APS01334","Pyrrolidone-carboxylate peptidase cysteine active site"],["PROSITE%3APS01333","Pyrrolidone-carboxylate peptidase glutamic acid active site"]]},{"id":"CHEBI:17015","l":"riboflavin","na":5,"nb":3,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17015","requires riboflavin"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_RBF","RBF-binding site"]]},{"id":"CHEBI:26672","l":"siderophore","na":3,"nb":5,"a":[["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_26672","siderophore cofactor class"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.17","The Outer Membrane Factor (OMF) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]]},{"id":"GO:0005987","l":"sucrose catabolic process","na":5,"nb":3,"a":[["Synechococcus_Bacillus_SPC.html","Synechococcus-Bacillus Synthetic Photosynthetic Consortium"],["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"],["Synechococcus_Saccharomyces_SPC.html","Synechococcus-Saccharomyces Synthetic Photosynthetic Consortium"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["GO%3A0061704","glycolytic process from sucrose"],["GO%3A0005987","sucrose catabolic process"],["NCBIfam%3ANF006957","fructokinase"]]},{"id":"GO:0006766","l":"vitamin metabolic process","na":3,"nb":5,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["GO%3A0042816","vitamin B6 metabolic process"],["GO%3A0009110","vitamin biosynthetic process"],["GO%3A0009111","vitamin catabolic process"],["GO%3A0006766","vitamin metabolic process"],["Reactome%3AR-HSA-211916","Vitamins"]]},{"id":"GO:0009410","l":"response to xenobiotic stimulus","na":3,"nb":5,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["SkinCom_Synthetic_Skin_Community.html","SkinCom Synthetic Skin Community"]],"b":[["GO%3A0071466","cellular response to xenobiotic stimulus"],["GO%3A0009410","response to xenobiotic stimulus"],["NCBIfam%3ATIGR00957","multi drug resistance-associated protein (MRP)"],["NCBIfam%3ANF018181","R67 dihydrofolate reductase"],["Pfam%3APF06442","R67 dihydrofolate reductase"]]},{"id":"NCBITaxon:1667","l":"Arthrobacter sp.","na":3,"nb":5,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["Pfam%3APF14031","Putative serine dehydratase domain"],["Pfam%3APF02449","Beta-galactosidase"],["Pfam%3APF08533","Beta-galactosidase C-terminal domain"],["Pfam%3APF08532","Beta-galactosidase trimerisation domain"],["TED%3AAF-A0A3C2BWN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C2BWN3-F1-model_v4_TED01"]]},{"id":"CHEBI:17191","l":"L-isoleucine","na":3,"nb":4,"a":[["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"]],"b":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.26","The Branched Chain Amino Acid:Cation Symporter (LIVCS) Family"],["proteintraitsmech%3ABIOLIP_ILE","ILE-binding site"]]},{"id":"CHEBI:18237","l":"glutamic acid","na":4,"nb":3,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:72813","l":"exopolysaccharide","na":4,"nb":3,"a":[["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.18","The Outer Membrane Auxiliary (OMA) Protein Family"]]},{"id":"GO:0019386","l":"methanogenesis, from carbon dioxide","na":3,"nb":4,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Tropidoatractus_Magnetotacticus_Tripartite_Syntrophy.html","Tropidoatractus magnetotacticus Magnetotactic Ciliate Tripartite Syntrophy"]],"b":[["GO%3A0019386","methanogenesis, from carbon dioxide"],["NCBIfam%3ATIGR01723","5,10-methenyltetrahydromethanopterin hydrogenase"],["NCBIfam%3ATIGR01112","tetrahydromethanopterin S-methyltransferase subunit D"],["NCBIfam%3ATIGR01113","tetrahydromethanopterin S-methyltransferase subunit E"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":3,"nb":4,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF09711","CRISPR-associated protein (Cas_Csn2)"],["Pfam%3APF06308","23S rRNA methylastransferase leader peptide (ErmCL)"]]},{"id":"NCBITaxon:3076","l":"Chlorella sorokiniana","na":3,"nb":4,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Dairy_Wastewater_Algal_Cyanobacterial_Cultivation_Panel.html","Dairy Wastewater Algal-Cyanobacterial Cultivation Panel"],["SynCom_Chlorella_sorokiniana_Biogas_Slurry_Coupling_System.html","SynCom + Chlorella sorokiniana Biogas-slurry Coupling System"]],"b":[["TED%3AAF-A0A2P6TR54-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P6TR54-F1-model_v4_TED01"],["TED%3AAF-A0A2P6TVK6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P6TVK6-F1-model_v4_TED01"],["TED%3AAF-A0A2P6TZ25-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2P6TZ25-F1-model_v4_TED02"],["TED%3AAF-A0A2P6TLT0-F1-model_v4_TED05","TED novel fold AF-A0A2P6TLT0-F1-model_v4_TED05"]]},{"id":"NCBITaxon:33038","l":"Mediterraneibacter gnavus","na":4,"nb":3,"a":[["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Clostridial_isoDCA_Mini_Consortium.html","Clostridial isoDCA Mini Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["Pfam%3APF16874","Glycosyl hydrolase family 36 C-terminal domain"],["Pfam%3APF16875","Glycosyl hydrolase family 36 N-terminal domain"],["Pfam%3APF04604","Type-A lantibiotic"]]},{"id":"CHEBI:16482","l":"naphthalene","na":3,"nb":3,"a":[["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"]],"b":[["EC%3A1.14.12.12","naphthalene 1,2-dioxygenase"],["RHEA%3A19173","naphthalene + NADH + O2 + H(+) = (1R,2S)-1,2-dihydronaphthalene-1,2-diol + NAD(+)"],["MCSA%3A130","naphthalene 1,2-dioxygenase"]]},{"id":"GO:0009110","l":"vitamin biosynthetic process","na":3,"nb":3,"a":[["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["GO%3A0042362","fat-soluble vitamin biosynthetic process"],["GO%3A0009110","vitamin biosynthetic process"],["GO%3A0042364","water-soluble vitamin biosynthetic process"]]},{"id":"GO:0098743","l":"cell aggregation","na":3,"nb":3,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["GO%3A0098630","aggregation of unicellular organisms"],["GO%3A0001502","cartilage condensation"],["GO%3A0098743","cell aggregation"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":3,"nb":3,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["Pfam%3APF03423","Carbohydrate binding domain (family 25)"],["Pfam%3APF03422","Carbohydrate binding module (family 6)"],["TED%3AAF-A0A7X5SGP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X5SGP7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:3702","l":"Arabidopsis thaliana","na":2,"nb":18772,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["EC%3A1.1.99.-","With other acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.14.11.-","With 2-oxoglutarate as one donor, and incorporation of one atom each of oxygen into both donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.14.-","With reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen"]]},{"id":"CHEBI:30031","l":"succinate(2-)","na":2,"nb":502,"a":[["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["EC%3A1.14.11.1","gamma-butyrobetaine dioxygenase"],["EC%3A1.14.11.10","pyrimidine-deoxynucleoside 1'-dioxygenase"],["EC%3A1.14.11.11","hyoscyamine (6S)-dioxygenase"],["EC%3A1.14.11.12","gibberellin-44 dioxygenase"],["EC%3A1.14.11.13","gibberellin 2beta-dioxygenase"],["EC%3A1.14.11.15","gibberellin 3beta-dioxygenase"]]},{"id":"GO:0010468","l":"regulation of gene expression","na":2,"nb":394,"a":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["ComplexPortal%3ACPX-1129","Atk-1/Akt-2/Sgk-1 protein kinase complex"],["ComplexPortal%3ACPX-5666","CCAAT-binding factor complex, nfya-1 variant"],["ComplexPortal%3ACPX-5667","CCAAT-binding factor complex, nfya-2 variant"],["ComplexPortal%3ACPX-4305","DHIC complex"],["ComplexPortal%3ACPX-3885","sir-2.1-ftt-2 complex"],["ComplexPortal%3ACPX-3886","sir-2.1-par-5 complex"]]},{"id":"CHEBI:4167","l":"D-glucopyranose","na":2,"nb":217,"a":[["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["EC%3A1.1.1.118","glucose 1-dehydrogenase (NAD(+))"],["EC%3A1.1.1.119","glucose 1-dehydrogenase (NADP(+))"],["EC%3A1.1.1.359","aldose 1-dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.1.360","glucose/galactose 1-dehydrogenase"],["EC%3A1.1.1.432","6-dehydroglucose reductase"],["EC%3A1.1.1.47","glucose 1-dehydrogenase [NAD(P)(+)]"]]},{"id":"CHEBI:17996","l":"chloride","na":2,"nb":196,"a":[["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17996","requires chloride"],["EC%3A1.11.2.2","myeloperoxidase"],["EC%3A1.13.11.49","chlorite O2-lyase"],["EC%3A1.14.12.13","2-halobenzoate 1,2-dioxygenase"],["EC%3A1.14.12.9","4-chlorophenylacetate 3,4-dioxygenase"],["EC%3A1.14.13.50","pentachlorophenol monooxygenase"]]},{"id":"GO:0016032","l":"viral process","na":2,"nb":113,"a":[["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"]],"b":[["GO%3A0075526","cap snatching"],["GO%3A0099015","degradation of host chromosome by virus"],["GO%3A0019043","establishment of viral latency"],["GO%3A0039674","exit of virus from host cell nucleus"],["GO%3A0039700","fusion of viral membrane with host outer nuclear membrane"],["GO%3A0075522","IRES-dependent viral translational initiation"]]},{"id":"GO:0006099","l":"tricarboxylic acid cycle","na":2,"nb":92,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["ComplexPortal%3ACPX-3921","2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-9044","Mitochondrial 2-oxoglutarate dehydrogenase complex,CG1544 variant"],["ComplexPortal%3ACPX-9043","Mitochondrial 2-oxoglutarate dehydrogenase complex, CG33791 variant"],["ComplexPortal%3ACPX-1293","Mitochondrial 2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-9061","Mitochondrial 2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-9042","Mitochondrial 2-oxoglutarate dehydrogenase complex, ODGH variant"]]},{"id":"GO:0009733","l":"response to auxin","na":2,"nb":89,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["ComplexPortal%3ACPX-1523","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK10"],["ComplexPortal%3ACPX-1524","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK11"],["ComplexPortal%3ACPX-1525","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK12"],["ComplexPortal%3ACPX-1526","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK13"],["ComplexPortal%3ACPX-1527","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK14"],["ComplexPortal%3ACPX-1528","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK15"]]},{"id":"GO:0016053","l":"obsolete organic acid biosynthetic process","na":2,"nb":83,"a":[["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Wollastonite_Ramichloridium_Talaromyces_Fungal_Consortium.html","Wollastonite Ramichloridium-Talaromyces Fungal Consortium"]],"b":[["PANTHER%3APTHR43090","1-(5-PHOSPHORIBOSYL)-5-[(5-PHOSPHORIBOSYLAMINO)METHYLIDENEAMINO] IMIDAZOLE-4-CARBOXAMIDE ISOMERASE"],["PANTHER%3APTHR43699","3-DEHYDROQUINATE DEHYDRATASE"],["PANTHER%3APTHR42979","3-ISOPROPYLMALATE DEHYDROGENASE"],["PANTHER%3APTHR20881","3-METHYL-2-OXOBUTANOATE HYDROXYMETHYLTRANSFERASE"],["PANTHER%3APTHR46832","5'-METHYLTHIOADENOSINE/S-ADENOSYLHOMOCYSTEINE NUCLEOSIDASE"],["PANTHER%3APTHR31242","ACETOLACTATE SYNTHASE SMALL SUBUNIT, MITOCHONDRIAL"]]},{"id":"CHEBI:15354","l":"choline","na":2,"nb":78,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["EC%3A1.1.3.17","choline oxidase"],["EC%3A1.1.99.1","choline dehydrogenase"],["EC%3A1.14.15.7","choline monooxygenase"],["EC%3A2.3.1.6","choline O-acetyltransferase"],["EC%3A2.3.1.91","sinapoylglucose--choline O-sinapoyltransferase"],["EC%3A2.7.1.32","choline kinase"]]},{"id":"CHEBI:29806","l":"fumarate(2-)","na":2,"nb":76,"a":[["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["EC%3A1.3.1.6","fumarate reductase (NADH)"],["EC%3A1.3.2.4","fumarate reductase (cytochrome)"],["EC%3A1.3.4.1","fumarate reductase (CoM/CoB)"],["EC%3A1.3.5.1","succinate dehydrogenase"],["EC%3A1.3.98.1","dihydroorotate oxidase (fumarate)"],["EC%3A3.7.1.14","2-hydroxy-6-oxonona-2,4-dienedioate hydrolase"]]},{"id":"CHEBI:15422","l":"ATP","na":2,"nb":68,"a":[["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15422","requires ATP"],["ARO%3A3002628","aad(6)"],["ARO%3A3002601","aadA"],["ARO%3A3004692","aadA10"],["ARO%3A3002611","aadA11"],["ARO%3A3002612","aadA12"]]},{"id":"CHEBI:16947","l":"citrate(3-)","na":2,"nb":49,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["EC%3A2.3.3.1","citrate (Si)-synthase"],["EC%3A2.3.3.16","citrate synthase (unknown stereospecificity)"],["EC%3A2.3.3.3","citrate (Re)-synthase"],["EC%3A2.3.3.8","ATP citrate synthase"],["EC%3A2.8.3.10","citrate CoA-transferase"],["EC%3A4.1.3.6","citrate (pro-3S)-lyase"]]},{"id":"GO:0009063","l":"amino acid catabolic process","na":2,"nb":47,"a":[["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"]],"b":[["ComplexPortal%3ACPX-865","Electron transfer flavoprotein complex"],["ComplexPortal%3ACPX-2731","Mitochondrial electron transfer flavoprotein complex"],["GO%3A0042217","1-aminocyclopropane-1-carboxylate catabolic process"],["GO%3A0009063","amino acid catabolic process"],["GO%3A0019665","amino acid fermentation"],["GO%3A0019484","beta-alanine catabolic process"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":46,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF13166","AAA domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF27533","CapK C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"]]},{"id":"CHEBI:16480","l":"nitric oxide","na":2,"nb":43,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"]],"b":[["EC%3A1.14.12.17","nitric oxide dioxygenase"],["EC%3A1.14.13.39","nitric-oxide synthase (NADPH)"],["EC%3A1.14.14.47","nitric-oxide synthase (flavodoxin)"],["EC%3A1.14.15.41","L-tryptophan 4-nitrase"],["EC%3A1.14.15.42","L-tyrosine 3-nitrase"],["EC%3A1.7.1.14","nitric oxide reductase [NAD(P)(+), nitrous oxide-forming]"]]},{"id":"GO:0030163","l":"protein catabolic process","na":2,"nb":40,"a":[["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"]],"b":[["ComplexPortal%3ACPX-1655","i-AAA complex"],["ComplexPortal%3ACPX-1654","m-AAA protease complex"],["GO%3A0002077","acrosome matrix dispersal"],["GO%3A0061684","chaperone-mediated autophagy"],["GO%3A0007174","epidermal growth factor catabolic process"],["GO%3A0006516","glycoprotein catabolic process"]]},{"id":"GO:0019684","l":"photosynthesis, light reaction","na":2,"nb":39,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]],"b":[["GO%3A0019684","photosynthesis, light reaction"],["NCBIfam%3ANF058510","bifunctional rod-capping linker CpcD/ferredoxin--NADP reductase PetH"],["NCBIfam%3ATIGR01332","cytochrome b559 subunit alpha"],["NCBIfam%3ATIGR01333","cytochrome b559 subunit beta"],["NCBIfam%3ANF043009","cytochrome c-554 Puf2C"],["NCBIfam%3ANF040862","light-harvesting antenna LH1, beta subunit"]]},{"id":"GO:0006006","l":"glucose metabolic process","na":2,"nb":38,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["GO%3A0006094","gluconeogenesis"],["GO%3A0006007","glucose catabolic process"],["GO%3A0006006","glucose metabolic process"],["Reactome%3AR-HSA-70326","Glucose metabolism"],["NCBIfam%3ANF033735","ArsJ-associated glyceraldehyde-3-phosphate dehydrogenase"],["NCBIfam%3ANF045551","ATP-dependent glucokinase"]]},{"id":"GO:0008643","l":"carbohydrate transport","na":2,"nb":38,"a":[["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["ComplexPortal%3ACPX-5990","sgcABC sugar permease enzyme II complex"],["GO%3A0033231","carbohydrate export"],["GO%3A0034219","carbohydrate transmembrane transport"],["GO%3A0008643","carbohydrate transport"],["GO%3A0015772","oligosaccharide transport"],["GO%3A0015774","polysaccharide transport"]]},{"id":"CHEBI:16150","l":"benzoate","na":2,"nb":36,"a":[["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["EC%3A1.14.12.10","benzoate 1,2-dioxygenase"],["EC%3A1.14.14.92","benzoate 4-monooxygenase"],["EC%3A1.2.1.28","benzaldehyde dehydrogenase (NAD(+))"],["EC%3A1.2.1.7","benzaldehyde dehydrogenase (NADP(+))"],["EC%3A2.1.1.273","benzoate O-methyltransferase"],["EC%3A3.1.1.84","cocaine esterase"]]},{"id":"GO:0000272","l":"polysaccharide catabolic process","na":2,"nb":36,"a":[["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["GO%3A0042122","alginic acid catabolic process"],["GO%3A0031222","arabinan catabolic process"],["GO%3A0030995","cell septum edging catabolic process"],["GO%3A0044347","cell wall polysaccharide catabolic process"],["GO%3A0010147","fructan catabolic process"],["GO%3A2000885","galactoglucomannan catabolic process"]]},{"id":"GO:0009628","l":"response to abiotic stimulus","na":2,"nb":34,"a":[["South_Bay_Salt_Pond_Methane_Restoration_Community.html","South Bay Salt Pond Methane Restoration Microbial Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"]],"b":[["GO%3A0071214","cellular response to abiotic stimulus"],["GO%3A0009582","detection of abiotic stimulus"],["GO%3A0097318","invasive growth in response to abiotic stimulus"],["GO%3A0009628","response to abiotic stimulus"],["GO%3A0051602","response to electrical stimulus"],["GO%3A0009629","response to gravity"]]},{"id":"GO:0007154","l":"cell communication","na":2,"nb":32,"a":[["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["GO%3A0007412","axon target recognition"],["GO%3A0007267","cell-cell signaling"],["GO%3A0010643","cell communication by chemical coupling"],["GO%3A0010644","cell communication by electrical coupling"],["GO%3A0007154","cell communication"],["GO%3A0086065","cell communication involved in cardiac conduction"]]},{"id":"GO:0009228","l":"thiamine biosynthetic process","na":2,"nb":32,"a":[["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"],["Variovorax_Cryptococcus_Vitamin_Mutualism_Microcosm.html","Variovorax-Cryptococcus Vitamin Cross-Feeding Microcosm"]],"b":[["ComplexPortal%3ACPX-2140","iscS-thiI sulfurtransferase complex"],["GO%3A0009228","thiamine biosynthetic process"],["GO%3A0036172","thiamine salvage"],["NCBIfam%3ATIGR00204","1-deoxy-D-xylulose-5-phosphate synthase"],["NCBIfam%3ATIGR02351","2-iminoacetate synthase ThiH"],["NCBIfam%3ANF009078","bifunctional hydroxymethylpyrimidine kinase/phosphomethylpyrimidine kinase"]]},{"id":"CHEBI:15882","l":"phenol","na":2,"nb":31,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]],"b":[["EC%3A1.14.13.244","phenol 2-monooxygenase (NADH)"],["EC%3A1.14.13.7","phenol 2-monooxygenase (NADPH)"],["EC%3A1.14.14.20","phenol 2-monooxygenase (FADH2)"],["EC%3A2.1.1.25","phenol O-methyltransferase"],["EC%3A2.4.2.55","nicotinate D-ribonucleotide:phenol phospho-D-ribosyltransferase"],["EC%3A2.7.1.238","phenol phosphorylase"]]},{"id":"CHEBI:15347","l":"acetone","na":2,"nb":27,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["EC%3A1.1.1.80","isopropanol dehydrogenase (NADP(+))"],["EC%3A1.14.13.226","acetone monooxygenase (methyl acetate-forming)"],["EC%3A1.14.14.141","psoralen synthase"],["EC%3A1.14.14.148","angelicin synthase"],["EC%3A2.6.3.1","oximinotransferase"],["EC%3A4.1.1.4","acetoacetate decarboxylase"]]},{"id":"CHEBI:57586","l":"biotinate","na":2,"nb":24,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_57586","requires biotinate"],["EC%3A2.8.1.6","biotin synthase"],["EC%3A3.5.1.12","biotinidase"],["EC%3A6.2.1.11","biotin--CoA ligase"],["EC%3A6.3.4.10","biotin--[propionyl-CoA-carboxylase (ATP-hydrolyzing)] ligase"],["EC%3A6.3.4.11","biotin--[methylcrotonoyl-CoA-carboxylase] ligase"]]},{"id":"NCBITaxon:160488","l":"Pseudomonas putida (strain ATCC 47054 / DSM 6125 / CFBP 8728 / NCIMB 11950 / KT2440)","na":2,"nb":24,"a":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"]],"b":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF00842","Alanine racemase, C-terminal domain"],["Pfam%3APF01168","Alanine racemase, N-terminal domain"],["Pfam%3APF13372","Alginate export"],["Pfam%3APF03705","CheR methyltransferase, all-alpha domain"],["Pfam%3APF01739","CheR methyltransferase, SAM binding domain"]]},{"id":"GO:0045333","l":"cellular respiration","na":2,"nb":21,"a":[["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"]],"b":[["ComplexPortal%3ACPX-560","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-563","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-567","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-9308","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-1721","Mitochondrial respiratory chain complex IV, COX5A variant"],["ComplexPortal%3ACPX-1722","Mitochondrial respiratory chain complex IV, COX5B variant"]]},{"id":"GO:0071248","l":"cellular response to metal ion","na":2,"nb":21,"a":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["GO%3A0071275","cellular response to aluminum ion"],["GO%3A0071276","cellular response to cadmium ion"],["GO%3A0071277","cellular response to calcium ion"],["GO%3A0071278","cellular response to cesium ion"],["GO%3A0071279","cellular response to cobalt ion"],["GO%3A0071280","cellular response to copper ion"]]},{"id":"GO:0006089","l":"lactate metabolic process","na":2,"nb":20,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"]],"b":[["ComplexPortal%3ACPX-6573","L-lactate dehydrogenase A complex"],["ComplexPortal%3ACPX-6599","L-lactate dehydrogenase B complex"],["ComplexPortal%3ACPX-6602","L-lactate dehydrogenase C complex"],["ComplexPortal%3ACPX-6598","L-lactate dehydrogenase complex, A1B3 variant"],["ComplexPortal%3ACPX-6594","L-lactate dehydrogenase complex, A2B2 variant"],["ComplexPortal%3ACPX-6592","L-lactate dehydrogenase complex, A3B1 variant"]]},{"id":"CHEBI:16750","l":"guanosine","na":2,"nb":19,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["EC%3A2.4.2.1","purine-nucleoside phosphorylase"],["EC%3A2.4.2.15","guanosine phosphorylase"],["EC%3A2.7.1.73","inosine kinase"],["EC%3A3.5.4.15","guanosine deaminase"],["RHEA%3A27862","3'-GMP + H2O = guanosine + phosphate"],["RHEA%3A27714","GMP + H2O = guanosine + phosphate"]]},{"id":"GO:0009636","l":"response to toxic substance","na":2,"nb":18,"a":[["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"]],"b":[["ComplexPortal%3ACPX-2254","Cus cation efflux complex"],["GO%3A0097237","cellular response to toxic substance"],["GO%3A0060992","response to fungicide"],["GO%3A0009635","response to herbicide"],["GO%3A0017085","response to insecticide"],["GO%3A0010188","response to microbial phytotoxin"]]},{"id":"NCBITaxon:4577","l":"Zea mays","na":2,"nb":18,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"]],"b":[["IDPO%3A0000002","disorder"],["Pfam%3APF14861","Plant antimicrobial peptide"],["Pfam%3APF02041","Auxin binding protein"],["Pfam%3APF25436","BSD2 cysteine rich domain"],["Pfam%3APF23493","Cysteinyl-tRNA ligase anticodon binding domain"],["Pfam%3APF03330","Lytic transglycolase"]]},{"id":"GO:0033103","l":"protein secretion by the type VI secretion system","na":2,"nb":17,"a":[["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"]],"b":[["GO%3A0033103","protein secretion by the type VI secretion system"],["NCBIfam%3ATIGR03354","type VI secretion system-associated FHA domain protein TagH"],["NCBIfam%3ATIGR03345","type VI secretion system ATPase TssH"],["NCBIfam%3ATIGR03357","type VI secretion system baseplate subunit TssE"],["NCBIfam%3ATIGR03359","type VI secretion system baseplate subunit TssF"],["NCBIfam%3ATIGR03347","type VI secretion system baseplate subunit TssG"]]},{"id":"GO:0051707","l":"response to other organism","na":2,"nb":17,"a":[["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0002213","defense response to insect"],["GO%3A0002215","defense response to nematode"],["GO%3A0098542","defense response to other organism"],["GO%3A0098543","detection of other organism"],["GO%3A0009617","response to bacterium"],["GO%3A0009620","response to fungus"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":2,"nb":16,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF28265","Lipoprotein N-acylation protein LnsA-like"],["Pfam%3APF16403","Bacterial surface protein, Ig-like domain"],["Pfam%3APF03944","delta endotoxin"],["Pfam%3APF03945","delta endotoxin, N-terminal domain"],["Pfam%3APF06355","Aegerolysin"]]},{"id":"GO:0006970","l":"response to osmotic stress","na":2,"nb":15,"a":[["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["GO%3A0071470","cellular response to osmotic stress"],["GO%3A0043575","detection of osmotic stimulus"],["GO%3A0006972","hyperosmotic response"],["GO%3A0006971","hypotonic response"],["GO%3A0010335","response to non-ionic osmotic stress"],["GO%3A0006970","response to osmotic stress"]]},{"id":"GO:0019645","l":"anaerobic electron transport chain","na":2,"nb":15,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["ComplexPortal%3ACPX-320","DmaABC DMSO reductase complex"],["ComplexPortal%3ACPX-1975","Formate dehydrogenase N complex"],["ComplexPortal%3ACPX-6029","Formate dehydrogenase Z complex"],["ComplexPortal%3ACPX-317","Formate hydrogenlyase-H/Hydrogenase-3 complex"],["ComplexPortal%3ACPX-6028","Formate hydrogenlyase-H/Hydrogenase-4 complex"],["ComplexPortal%3ACPX-281","Hydrogenase-1 complex"]]},{"id":"GO:0009408","l":"response to heat","na":2,"nb":14,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["PMI_Variovorax_Thermotolerance_Collection.html","PMI Variovorax Thermotolerance Collection"]],"b":[["ComplexPortal%3ACPX-4887","DNA-directed RNA polymerase holoenzyme complex, SigmaH variant"],["ComplexPortal%3ACPX-636","ISW1b chromatin remodeling complex"],["GO%3A0034605","cellular response to heat"],["GO%3A0036168","filamentous growth of a population of unicellular organisms in response to heat"],["GO%3A0010286","heat acclimation"],["GO%3A0009408","response to heat"]]},{"id":"GO:0006032","l":"chitin catabolic process","na":2,"nb":13,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["GO%3A0006032","chitin catabolic process"],["NCBIfam%3ANF052619","chitinase ChiD"],["NCBIfam%3ANF041127","exo-beta-D-glucosaminidase"],["NCBIfam%3ANF041128","glucosamine-6-phosphate deaminase"],["NCBIfam%3ATIGR03851","N-acetylglucosamine/diacetylchitobiose ABC transporter substrate-binding protein"],["InterPro%3AIPR005089","Carbohydrate-binding module family 19"]]},{"id":"NCBITaxon:272562","l":"Clostridium acetobutylicum (strain ATCC 824 / DSM 792 / JCM 1419 / IAM 19013 / LMG 5710 / NBRC 13948 / NRRL B-527 / VKM B-1787 / 2291 / W)","na":2,"nb":13,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["Pfam%3APF10882","Bacterial PH domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["Pfam%3APF09940","Domain of unknown function (DUF2172)"],["Pfam%3APF16254","Domain of unknown function (DUF4910)"],["Pfam%3APF01183","Glycosyl hydrolases family 25"],["Pfam%3APF16221","winged helix-turn-helix"]]},{"id":"NCBITaxon:644","l":"Aeromonas hydrophila","na":2,"nb":13,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["Pfam%3APF01117","Aerolysin toxin"],["Pfam%3APF03440","Aerolysin/Pertussis toxin (APT) domain"],["Pfam%3APF21327","GspA, peptidase C39-like domain"],["Pfam%3APF04231","Endonuclease I"],["PROSITE%3APS01092","Adenylate cyclase class-I signature 1"],["PROSITE%3APS01093","Adenylate cyclase class-I signature 2"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus ATCC 27405","na":2,"nb":12,"a":[["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["Pfam%3APF00942","Cellulose binding domain"],["Pfam%3APF17996","Carbohydrate esterase 2 N-terminal"],["Pfam%3APF00963","Cohesin domain"],["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF00404","Dockerin type I domain"]]},{"id":"NCBITaxon:51453","l":"Trichoderma reesei","na":2,"nb":12,"a":[["Trichoderma_Ecoli_Cellulosic_Isobutanol_Coculture.html","Trichoderma-E. coli Cellulosic Isobutanol Coculture"],["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["Pfam%3APF28347","ACE1 small beta sheet domain"],["Pfam%3APF28329","Zinc finger transcription factor ace1 N-terminal domain"],["Pfam%3APF00150","Cellulase (glycosyl hydrolase family 5)"],["Pfam%3APF22514","EXPB1-like domain 1"],["Pfam%3APF01341","Glycosyl hydrolases family 6"],["Pfam%3APF00840","Glycosyl hydrolase family 7"]]},{"id":"GO:0015889","l":"cobalamin transport","na":2,"nb":11,"a":[["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["ComplexPortal%3ACPX-2105","Cobalamin ABC transporter complex"],["ComplexPortal%3ACPX-1083","Cobalamin outer membrane transporter complex"],["ComplexPortal%3ACPX-5774","Cubam cobalamin uptake receptor complex"],["ComplexPortal%3ACPX-5847","Cubam cobalamin uptake receptor complex"],["GO%3A0015889","cobalamin transport"],["Reactome%3AR-HSA-9758890","Transport of RCbl within the body"]]},{"id":"GO:0019605","l":"butyrate metabolic process","na":2,"nb":11,"a":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["GO%3A0030645","acetyl-CoA fermentation to butanoate"],["GO%3A0046358","butyrate biosynthetic process"],["GO%3A0046359","butyrate catabolic process"],["GO%3A0019605","butyrate metabolic process"],["GO%3A0019475","L-lysine fermentation"],["GO%3A0044813","pyruvate fermentation to butanoate"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":2,"nb":11,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["Pfam%3APF22829","HphA C-terminal domain"],["Pfam%3APF22828","HphA N-terminal heme-binding domain"],["Pfam%3APF28205","Ciprofloxacin tolerance protein"],["Pfam%3APF19582","Solute-binding protein AdeT 1/2"],["PROSITE%3APS00337","Beta-lactamase class-D active site"],["Pfam%3APF24575","Surface lipoprotein assembly modifier, N-terminal TPR repeats"]]},{"id":"CHEBI:3098","l":"bile acid","na":2,"nb":9,"a":[["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.28","The Bile Acid:Na+ Symporter (BASS) Family"],["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"],["TCDB%3A9.A.19","The Lipid Intermediate Transporter (Arv1) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":2,"nb":9,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"]],"b":[["Pfam%3APF07835","Bacterial aa3 type cytochrome c oxidase subunit IV"],["Pfam%3APF04828","Glutathione-dependent formaldehyde-activating enzyme"],["Pfam%3APF16448","LapD/MoxY periplasmic domain"],["Pfam%3APF17267","Family of unknown function (DUF5333)"],["Pfam%3APF17272","Family of unknown function (DUF5337)"],["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":2,"nb":9,"a":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF25954","CusB-like, beta-barrel domain"],["Pfam%3APF13438","Domain of unknown function (DUF4113)"],["Pfam%3APF03767","HAD superfamily, subfamily IIIB (Acid phosphatase)"],["Pfam%3APF03496","ADP-ribosyltransferase exoenzyme"]]},{"id":"CHEBI:15366","l":"acetic acid","na":8,"nb":2,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["MCSA%3A431","acetylxylan esterase"],["MCSA%3A996","Peptidoglycan-N-acetylglucosamine deacetylase Bc1960"]]},{"id":"CHEBI:16793","l":"mercury(2+)","na":2,"nb":8,"a":[["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["EC%3A1.16.1.1","mercury(II) reductase"],["EC%3A4.99.1.2","alkylmercury lyase"],["RHEA%3A18777","an alkylmercury + H(+) = an alkane + Hg(2+)"],["RHEA%3A32815","Hg(2+)(in) = Hg(2+)(out)"],["RHEA%3A23856","Hg + NADP(+) + H(+) = Hg(2+) + NADPH"],["MCSA%3A297","alkylmercury lyase"]]},{"id":"GO:0009651","l":"response to salt stress","na":2,"nb":8,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"]],"b":[["GO%3A0071472","cellular response to salt stress"],["GO%3A0042538","hyperosmotic salinity response"],["GO%3A0042539","hypotonic salinity response"],["GO%3A0072342","response to anion stress"],["GO%3A0043157","response to cation stress"],["GO%3A0009651","response to salt stress"]]},{"id":"GO:0033013","l":"tetrapyrrole metabolic process","na":2,"nb":8,"a":[["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["GO%3A0009235","cobalamin metabolic process"],["GO%3A0006778","porphyrin-containing compound metabolic process"],["GO%3A0033014","tetrapyrrole biosynthetic process"],["GO%3A0033015","tetrapyrrole catabolic process"],["GO%3A0033013","tetrapyrrole metabolic process"],["NCBIfam%3ANF047825","tryptophan-rich sensory protein TspO"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":2,"nb":8,"a":[["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]],"b":[["Pfam%3APF02927","Cellulase N-terminal ig-like domain"],["Pfam%3APF00404","Dockerin type I domain"],["PROSITE%3APS00448","Clostridium cellulosome enzymes repeated domain signature"],["PROSITE%3APS60032","Glycosyl hydrolases family 9 (GH9) active site signature 1"],["PROSITE%3APS00592","Glycosyl hydrolases family 9 (GH9) active site signature 2"],["PROSITE%3APS00698","Glycosyl hydrolases family 9 (GH9) active site signature 3"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":8,"nb":2,"a":[["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"],["Sedimenting_Arabinose_Glucose_Saccharomyces_Coculture.html","Sedimenting Arabinose-Glucose Saccharomyces Coculture"]],"b":[["PROSITE%3APS00820","Glucoamylase active site region signature"],["TED%3AAF-A0A7I9G6Y3-F1-model_v4_TED02","TED novel fold AF-A0A7I9G6Y3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:920","l":"Acidithiobacillus ferrooxidans","na":8,"nb":2,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["Pfam%3APF20538","Family of unknown function (DUF6753)"],["PROSITE%3APS01007","Transposases, Mutator family, signature"]]},{"id":"CHEBI:17824","l":"propan-2-ol","na":2,"nb":7,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"]],"b":[["EC%3A1.1.1.80","isopropanol dehydrogenase (NADP(+))"],["EC%3A1.14.13.227","propane 2-monooxygenase"],["RHEA%3A62196","propan-2-ol + 2 Fe(III)-[cytochrome c] = acetone + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A41984","propan-2-ol + NAD(+) = acetone + NADH + H(+)"],["RHEA%3A21792","propan-2-ol + NADP(+) = acetone + NADPH + H(+)"],["RHEA%3A49992","propane + NADH + O2 + H(+) = propan-2-ol + NAD(+) + H2O"]]},{"id":"CHEBI:49713","l":"lithium(1+)","na":2,"nb":7,"a":[["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["RHEA%3A72631","3 Li(+)(out) + Ca(2+)(in) = 3 Li(+)(in) + Ca(2+)(out)"],["RHEA%3A70431","Li(+)(in) + 2 H(+)(out) = Li(+)(out) + 2 H(+)(in)"],["RHEA%3A75063","Li(+)(in) + 2 hydrogencarbonate(in) + chloride(out) = Li(+)(out) + 2 hydrogencarbonate(out) + chloride(in)"],["RHEA%3A78551","Li(+)(in) = Li(+)(out)"],["RHEA%3A72415","Li(+)(in) + Na(+)(out) = Li(+)(out) + Na(+)(in)"],["RHEA%3A72407","Li(+)(out) + H(+)(in) = Li(+)(in) + H(+)(out)"]]},{"id":"GO:0043448","l":"alkane catabolic process","na":7,"nb":2,"a":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Nitratireductor_Gordonia_Z123_LDPE_Degradation_SynCom.html","Nitratireductor-Gordonia Z123 LDPE-Degradation SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"]],"b":[["GO%3A0043448","alkane catabolic process"],["GO%3A0046188","methane catabolic process"]]},{"id":"NCBITaxon:1305","l":"Streptococcus sanguinis","na":2,"nb":7,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["Pfam%3APF09254","FokI, cleavage domain"],["Pfam%3APF02981","FokI, recognition domain, subdomain 1"],["Pfam%3APF02980","FokI, recognition domain, subdomain 2"],["Pfam%3APF07501","G5 domain"],["Pfam%3APF07581","The GLUG motif"],["TED%3AAF-A0A7H8V358-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H8V358-F1-model_v4_TED01"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":2,"nb":7,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["Pfam%3APF19443","DAHL domain"],["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"],["Pfam%3APF03524","Conjugal transfer protein"],["Pfam%3APF27439","Chaperone protein DnaJ C-terminal region"],["Pfam%3APF10907","Protein of unknown function (DUF2749)"],["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":2,"nb":7,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["Pfam%3APF11766","Agglutinin-like protein, N-terminal domain"],["Pfam%3APF16856","Cell division control protein 4 dimerisation domain"],["Pfam%3APF18325","Fatty acid synthase subunit alpha Acyl carrier domain"],["Pfam%3APF18314","Fatty acid synthase type I helical domain"],["Pfam%3APF17828","N-terminal domain in fatty acid synthase subunit beta"],["Pfam%3APF05388","Carboxypeptidase Y pro-peptide"]]},{"id":"CHEBI:16457","l":"S,S-dimethyl-beta-propiothetin","na":2,"nb":6,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["EC%3A2.1.1.269","dimethylsulfoniopropionate demethylase"],["EC%3A4.4.1.3","dimethylpropiothetin dethiomethylase"],["RHEA%3A35467","S,S-dimethyl-beta-propiothetin + (6S)-5,6,7,8-tetrahydrofolate = 3-(methylsulfanyl)propanoate + (6S)-5-methyl-5,6,7,8-tetrahydrofolate + H(+)"],["RHEA%3A19965","S,S-dimethyl-beta-propiothetin = acrylate + dimethyl sulfide + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.15","The Betaine/Carnitine/Choline Transporter (BCCT) Family"]]},{"id":"CHEBI:30772","l":"butyric acid","na":6,"nb":2,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["MCSA%3A900","para-nitrobenzyl esterase"],["proteintraitsmech%3ABIOLIP_BUA","BUA-binding site"]]},{"id":"GO:0009235","l":"cobalamin metabolic process","na":2,"nb":6,"a":[["Soil_Corrinoid_B12_Reservoir_Community.html","Soil Corrinoid Reservoir Microbial Community"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["GO%3A0009236","cobalamin biosynthetic process"],["GO%3A0042366","cobalamin catabolic process"],["GO%3A0009235","cobalamin metabolic process"],["Reactome%3AR-HSA-9759218","Cobalamin (Cbl) metabolism"],["NCBIfam%3ANF021725","methylmalonic aciduria and homocystinuria type D protein"],["Pfam%3APF10229","Methylmalonic aciduria and homocystinuria type D protein"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":2,"nb":6,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]],"b":[["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF03744","6-carboxyhexanoate--CoA ligase"],["PROSITE%3APS00836","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 1"],["PROSITE%3APS00837","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 2"],["TED%3AAF-A0A2S5D092-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5D092-F1-model_v4_TED01"],["TED%3AAF-A0A2S0JW09-F1-model_v4_TED01","TED novel fold AF-A0A2S0JW09-F1-model_v4_TED01"]]},{"id":"NCBITaxon:32049","l":"Picosynechococcus sp. PCC 7002","na":2,"nb":6,"a":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"]],"b":[["Pfam%3APF09367","CpeS-like protein"],["Pfam%3APF06206","CpeT/CpcT family (DUF1001)"],["Pfam%3APF12965","Domain of unknown function (DUF3854)"],["Pfam%3APF19928","Domain of unknown function (DUF6391)"],["Pfam%3APF09366","Protein of unknown function (DUF1997)"],["Pfam%3APF14870","Photosynthesis system II assembly factor YCF48"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":2,"nb":6,"a":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["Pfam%3APF01177","Asp/Glu/Hydantoin racemase"],["Pfam%3APF11339","Protein of unknown function (DUF3141)"],["PROSITE%3APS01303","BCCT family of transporters signature"],["PROSITE%3APS00665","Dihydrodipicolinate synthase signature 1"],["TED%3AAF-A0A2J0YSD4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J0YSD4-F1-model_v4_TED01"],["TED%3AAF-A0A843ZNG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843ZNG8-F1-model_v4_TED01"]]},{"id":"CHEBI:16865","l":"gamma-aminobutyric acid","na":2,"nb":5,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A2.A.42","The Hydroxy/Aromatic Amino Acid Permease (HAAAP) Family"],["TCDB%3A2.A.22","The Neurotransmitter:Sodium Symporter (NSS) Family"],["proteintraitsmech%3ABIOLIP_ABU","ABU-binding site"]]},{"id":"NCBITaxon:3039","l":"Euglena gracilis","na":2,"nb":5,"a":[["Dairy_Wastewater_Algal_Cyanobacterial_Cultivation_Panel.html","Dairy Wastewater Algal-Cyanobacterial Cultivation Panel"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"]],"b":[["Pfam%3APF01333","Apocytochrome F, C-terminal"],["Pfam%3APF16639","Apocytochrome F, N-terminal"],["Pfam%3APF04940","Sensors of blue-light using FAD"],["Pfam%3APF10371","Domain of unknown function"],["PROSITE%3APS00938","Initiation factor 3 signature"]]},{"id":"NCBITaxon:5507","l":"Fusarium oxysporum","na":2,"nb":5,"a":[["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["Pfam%3APF02015","Glycosyl hydrolase family 45"],["PROSITE%3APS01140","Glycosyl hydrolases family 45 active site"],["TED%3AAF-A0A2H3TJY2-F1-model_v4_TED01","TED novel fold AF-A0A2H3TJY2-F1-model_v4_TED01"],["TED%3AAF-A0A420N954-F1-model_v4_TED01","TED novel fold AF-A0A420N954-F1-model_v4_TED01"],["TED%3AAF-A0A420P6J4-F1-model_v4_TED01","TED novel fold AF-A0A420P6J4-F1-model_v4_TED01"]]},{"id":"CHEBI:16995","l":"oxalic acid","na":4,"nb":2,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Wollastonite_Ramichloridium_Talaromyces_Fungal_Consortium.html","Wollastonite Ramichloridium-Talaromyces Fungal Consortium"]],"b":[["TCDB%3A2.A.53","The Sulfate Permease (SulP) Family"],["proteintraitsmech%3ABIOLIP_OXD","OXD-binding site"]]},{"id":"CHEBI:33363","l":"palladium atom","na":2,"nb":4,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_PD_DINUCLEAR","dinuclear palladium site"],["proteintraitsmech%3AMETALPDB_PD_MONONUCLEAR","mononuclear palladium site"],["proteintraitsmech%3AMETALPDB_PD_TETRANUCLEAR","tetranuclear palladium site"],["proteintraitsmech%3AMETALPDB_PD_TRINUCLEAR","trinuclear palladium site"]]},{"id":"GO:0018874","l":"benzoate metabolic process","na":4,"nb":2,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["GO%3A0043639","benzoate catabolic process"],["GO%3A0018874","benzoate metabolic process"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":2,"nb":4,"a":[["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["TED%3AAF-A0A7W3UB61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W3UB61-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F4B3-F1-model_v4_TED01","TED novel fold AF-A0A0D7F4B3-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F6R4-F1-model_v4_TED01","TED novel fold AF-A0A0D7F6R4-F1-model_v4_TED01"],["TED%3AAF-A0A7W3YI15-F1-model_v4_TED02","TED novel fold AF-A0A7W3YI15-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":4,"nb":2,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"],["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["Pfam%3APF22538","Hexaprenyl diphosphate synthase, small subunit"],["PROSITE%3APS01066","Undecaprenyl pyrophosphate synthase family signature"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":4,"nb":2,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]],"b":[["Pfam%3APF02052","Gallidermin"],["Pfam%3APF04604","Type-A lantibiotic"]]},{"id":"NCBITaxon:269797","l":"Methanosarcina barkeri str. Fusaro","na":2,"nb":4,"a":[["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["Pfam%3APF27274","Coenzyme F430 synthetase CfbE, C-terminal domain"],["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"],["Pfam%3APF09505","Dimethylamine methyltransferase (Dimeth_PyL)"],["PROSITE%3APS00507","Nickel-dependent hydrogenases large subunit signature 1"]]},{"id":"NCBITaxon:2822231","l":"Phanerodontia chrysosporium","na":2,"nb":4,"a":[["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"]],"b":[["Pfam%3APF18637","Aldos-2-ulose dehydratase/isomerase (AUDH) Cupin domain"],["Pfam%3APF16010","Cytochrome domain of cellobiose dehydrogenase"],["PROSITE%3APS00623","GMC oxidoreductases signature 1"],["Pfam%3APF22301","Aldos-2-ulose dehydratase, beta-propeller domain"]]},{"id":"NCBITaxon:37919","l":"Rhodococcus opacus","na":4,"nb":2,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"],["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["Pfam%3APF11794","4-hydroxyphenylacetate 3-hydroxylase N terminal"],["Pfam%3APF03241","4-hydroxyphenylacetate 3-hydroxylase C terminal"]]},{"id":"CHEBI:15741","l":"succinic acid","na":3,"nb":2,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_SIN","SIN-binding site"]]},{"id":"CHEBI:15956","l":"biotin","na":3,"nb":2,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15956","requires biotin"],["proteintraitsmech%3ABIOLIP_BTN","BTN-binding site"]]},{"id":"CHEBI:24898","l":"isoleucine","na":2,"nb":3,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["MCSA%3A906","gelatinase A"]]},{"id":"CHEBI:49470","l":"aluminium(3+)","na":2,"nb":3,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Rice_Acid_Soil_Bioinoculant_SynCom.html","Rice Acid Soil Bioinoculant SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["proteintraitsmech%3ABIOLIP_AL","AL-binding site"]]},{"id":"CHEBI:5199","l":"Fusaric acid","na":2,"nb":3,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["TCDB%3A2.A.85","The Aromatic Acid Exporter (ArAE) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.17","The Outer Membrane Factor (OMF) Family"]]},{"id":"CHEBI:58187","l":"alginate","na":2,"nb":3,"a":[["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["EC%3A5.1.3.37","mannuronan 5-epimerase"],["RHEA%3A45572","[(1->4)-beta-D-mannuronosyl](n) = [alginate](n)"],["RHEA%3A15637","[alginate](n) + GDP-alpha-D-mannuronate = [alginate](n+1) + GDP + H(+)"]]},{"id":"GO:0006068","l":"ethanol catabolic process","na":2,"nb":3,"a":[["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["GO%3A0006068","ethanol catabolic process"],["Reactome%3AR-HSA-71384","Ethanol oxidation"],["NCBIfam%3ANF050026","acetaldehyde dehydrogenase ExaC"]]},{"id":"GO:0019385","l":"methanogenesis, from acetate","na":2,"nb":3,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["GO%3A0019385","methanogenesis, from acetate"],["NCBIfam%3ANF014596","carbon monoxide dehydrogenase beta subunit family protein"],["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"]]},{"id":"NCBITaxon:1492","l":"Clostridium butyricum","na":2,"nb":3,"a":[["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["Pfam%3APF00302","Chloramphenicol acetyltransferase"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["PROSITE%3APS00100","Chloramphenicol acetyltransferase active site"]]},{"id":"NCBITaxon:166486","l":"Roseburia intestinalis","na":3,"nb":2,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["TED%3AAF-A0A3R6HE72-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R6HE72-F1-model_v4_TED01"],["TED%3AAF-A0A6L6XJA4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L6XJA4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:239935","l":"Akkermansia muciniphila","na":3,"nb":2,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["TED%3AAF-A0A2N8IJN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N8IJN7-F1-model_v4_TED01"],["TED%3AAF-A0A6N2UM07-F1-model_v4_TED01","TED novel fold AF-A0A6N2UM07-F1-model_v4_TED01"]]},{"id":"NCBITaxon:253","l":"Chryseobacterium indologenes","na":2,"nb":3,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"]],"b":[["PROSITE%3APS00744","Beta-lactamases class B signature 2"],["TED%3AAF-A0A7T8U7T3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T8U7T3-F1-model_v4_TED01"],["TED%3AAF-A0A0N0ZUI2-F1-model_v4_TED01","TED novel fold AF-A0A0N0ZUI2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28108","l":"Alteromonas macleodii","na":2,"nb":3,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["TED%3AAF-A0A6C5N007-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6C5N007-F1-model_v4_TED01"],["TED%3AAF-A0A126Q0V0-F1-model_v4_TED01","TED novel fold AF-A0A126Q0V0-F1-model_v4_TED01"],["TED%3AAF-A0A6T9Y0H6-F1-model_v4_TED01","TED novel fold AF-A0A6T9Y0H6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:33035","l":"Blautia producta","na":3,"nb":2,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["TED%3AAF-A0A2S4GEH6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S4GEH6-F1-model_v4_TED01"],["TED%3AAF-A0A7G5MNY0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G5MNY0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:357809","l":"Lachnoclostridium phytofermentans ISDg","na":2,"nb":3,"a":[["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"]],"b":[["Pfam%3APF09508","Lacto-N-biose phosphorylase N-terminal TIM barrel domain"],["Pfam%3APF17386","Lacto-N-biose phosphorylase C-terminal domain"],["Pfam%3APF17385","Lacto-N-biose phosphorylase central domain"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":3,"nb":2,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["PROSITE%3APS00336","Beta-lactamase class-C active site"],["TED%3AAF-A0A155XQ59-F1-model_v4_TED02","TED novel fold AF-A0A155XQ59-F1-model_v4_TED02"]]},{"id":"NCBITaxon:561879","l":"Bacillus safensis","na":2,"nb":3,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"]],"b":[["Pfam%3APF09221","Bacteriocin class IId cyclical uberolysin-like"],["TED%3AAF-A0A1L6ZPA6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6ZPA6-F1-model_v4_TED01"],["TED%3AAF-A0A1L6ZPC9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6ZPC9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:587753","l":"Pseudomonas chlororaphis","na":3,"nb":2,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["TED%3AAF-A0A8A9Z2C4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A8A9Z2C4-F1-model_v4_TED03"],["TED%3AAF-A0A0A6DEM6-F1-model_v4_TED01","TED novel fold AF-A0A0A6DEM6-F1-model_v4_TED01"]]},{"id":"CHEBI:15930","l":"atrazine","na":2,"nb":2,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["EC%3A3.8.1.8","atrazine chlorohydrolase"],["RHEA%3A11312","atrazine + H2O = hydroxyatrazine + chloride + H(+)"]]},{"id":"CHEBI:16094","l":"thiosulfate(2-)","na":2,"nb":2,"a":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["proteintraitsmech%3ABIOLIP_THJ","THJ-binding site"]]},{"id":"CHEBI:17300","l":"tetrachloroethene","na":2,"nb":2,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["EC%3A1.21.99.5","tetrachloroethene reductive dehalogenase"],["RHEA%3A20353","trichloroethene + chloride + A + H(+) = tetrachloroethene + AH2"]]},{"id":"CHEBI:231672","l":"bis(2-hydroxyethyl) terephthalate","na":2,"nb":2,"a":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["RHEA%3A80759","bis(2-hydroxyethyl) terephthalate + H2O = 4-[(2-hydroxyethoxy)carbonyl]benzoate + ethylene glycol + H(+)"],["proteintraitsmech%3ABIOLIP_C8X","C8X-binding site"]]},{"id":"CHEBI:27518","l":"acetylene","na":2,"nb":2,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"]],"b":[["EC%3A4.2.1.112","acetylene hydratase"],["RHEA%3A17885","acetaldehyde = acetylene + H2O"]]},{"id":"CHEBI:30046","l":"oxidovanadium(2+)","na":2,"nb":2,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["RHEA%3A75007","VO(2+)(out) + H(+)(out) = VO(2+)(in) + H(+)(in)"],["proteintraitsmech%3ABIOLIP_VVO","VVO-binding site"]]},{"id":"CHEBI:30751","l":"formic acid","na":2,"nb":2,"a":[["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["MCSA%3A38","GTP cyclohydrolase I"],["proteintraitsmech%3ABIOLIP_FMT","FMT-binding site"]]},{"id":"CHEBI:47916","l":"flavonoid","na":2,"nb":2,"a":[["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]]},{"id":"CHEBI:48782","l":"cerium(3+)","na":2,"nb":2,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_48782","requires cerium(3+)"],["proteintraitsmech%3ABIOLIP_CE","CE-binding site"]]},{"id":"CHEBI:49701","l":"lanthanum(3+)","na":2,"nb":2,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_49701","requires lanthanum(3+)"],["proteintraitsmech%3ABIOLIP_LA","LA-binding site"]]},{"id":"CHEBI:8005","l":"peptidoglycan","na":2,"nb":2,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.17","The Proton-dependent Oligopeptide Transporter (POT/PTR) Family"]]},{"id":"GO:0005983","l":"starch catabolic process","na":2,"nb":2,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"]],"b":[["GO%3A0005983","starch catabolic process"],["NCBIfam%3ATIGR02103","pullulanase-type alpha-1,6-glucosidase"]]},{"id":"NCBITaxon:145262","l":"Methanothermobacter thermautotrophicus","na":2,"nb":2,"a":[["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]],"b":[["Pfam%3APF12686","Protein of unknown function (DUF3800)"],["PROSITE%3APS00093","N-4 cytosine-specific DNA methylases signature"]]},{"id":"NCBITaxon:2162","l":"Methanobacterium formicicum","na":2,"nb":2,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"]],"b":[["Pfam%3APF04432","Coenzyme F420 hydrogenase/dehydrogenase, beta subunit C terminus"],["Pfam%3APF04422","Coenzyme F420 hydrogenase/dehydrogenase, beta subunit N-term"]]},{"id":"NCBITaxon:2223","l":"Methanothrix soehngenii","na":2,"nb":2,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"],["TED%3AAF-A0A7K4AJW5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K4AJW5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:39152","l":"Methanococcus maripaludis","na":2,"nb":2,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"]],"b":[["Pfam%3APF02571","Precorrin-6x reductase CbiJ/CobK"],["TED%3AAF-A0A7J9PSA9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J9PSA9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:39488","l":"Anaerobutyricum hallii","na":2,"nb":2,"a":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["TED%3AAF-A0A414B1Y3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A414B1Y3-F1-model_v4_TED01"],["TED%3AAF-A0A415G3S7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A415G3S7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:4952","l":"Yarrowia lipolytica","na":2,"nb":2,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Yarrowia_lipolytica_Division_of_Labor_Lipid_Consortium.html","Yarrowia lipolytica Division-of-Labor Lipid Consortium"]],"b":[["TED%3AAF-A0A7H0KE04-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H0KE04-F1-model_v4_TED01"],["TED%3AAF-A0A371C7L0-F1-model_v4_TED02","TED novel fold AF-A0A371C7L0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:84022","l":"Andreesenella acetica","na":2,"nb":2,"a":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"]],"b":[["TED%3AAF-A0A0D8IAM1-F1-model_v4_TED01","TED novel fold AF-A0A0D8IAM1-F1-model_v4_TED01"],["TED%3AAF-A0A0D8IBN9-F1-model_v4_TED02","TED novel fold AF-A0A0D8IBN9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":1,"nb":49554,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["EC%3A1.1.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.1.98.-","With other, known, acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":1,"nb":17470,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["EC%3A1.1.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.16.-.-","Oxidizing metal ions"],["EC%3A1.18.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.7.-","With an iron-sulfur protein as acceptor"]]},{"id":"CHEBI:15378","l":"hydron","na":1,"nb":14383,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.1.10","L-xylulose reductase"],["EC%3A1.1.1.100","3-oxoacyl-[acyl-carrier-protein] reductase"],["EC%3A1.1.1.101","acylglycerone-phosphate reductase"],["EC%3A1.1.1.102","3-dehydrosphinganine reductase"],["EC%3A1.1.1.103","L-threonine 3-dehydrogenase"]]},{"id":"NCBITaxon:7227","l":"Drosophila melanogaster","na":1,"nb":11343,"a":[["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.14.15.-","With reduced iron-sulfur protein as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.17.-","With reduced ascorbate as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.-.-","Acting on paired donors, with incorporation or reduction of molecular oxygen. The oxygen incorporated need not be derived from O2"],["EC%3A1.2.4.-","With a disulfide as acceptor"],["EC%3A1.6.99.-","With other acceptors"]]},{"id":"NCBITaxon:6239","l":"Caenorhabditis elegans","na":1,"nb":9682,"a":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"]],"b":[["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.14.14.-","With reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.17.-","With reduced ascorbate as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.19.-","With oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water"],["EC%3A1.14.99.-","Miscellaneous"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii (strain ATCC 43067 / DSM 2661 / JAL-1 / JCM 10045 / NBRC 100440)","na":1,"nb":5181,"a":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]],"b":[["EC%3A1.12.99.-","With other acceptors"],["EC%3A1.3.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.3.-.-","Acting on the CH-CH group of donors"],["EC%3A1.8.98.-","With other, known, acceptors"],["EC%3A1.97.1.-","Other oxidoreductases"],["EC%3A2.1.2.-","Hydroxymethyl-, formyl- and related transferases"]]},{"id":"GO:0006355","l":"regulation of DNA-templated transcription","na":1,"nb":1131,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["ComplexPortal%3ACPX-2829","ACF chromatin remodeling complex"],["ComplexPortal%3ACPX-2742","ATAC histone acetyltransferase complex"],["ComplexPortal%3ACPX-8344","BRE1 E3 ubiquitin ligase complex"],["ComplexPortal%3ACPX-1830","CCAAT-binding factor complex"],["ComplexPortal%3ACPX-2767","CCAAT-binding factor complex"],["ComplexPortal%3ACPX-2771","CCR4-NOT mRNA deadenylase complex"]]},{"id":"CHEBI:16810","l":"2-oxoglutarate(2-)","na":1,"nb":672,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"]],"b":[["EC%3A1.1.1.286","isocitrate--homoisocitrate dehydrogenase"],["EC%3A1.1.1.399","2-oxoglutarate reductase"],["EC%3A1.1.1.41","isocitrate dehydrogenase (NAD(+))"],["EC%3A1.1.1.42","isocitrate dehydrogenase (NADP(+))"],["EC%3A1.1.5.13","(S)-2-hydroxyglutarate dehydrogenase"],["EC%3A1.1.99.2","L-2-hydroxyglutarate dehydrogenase"]]},{"id":"GO:0006412","l":"translation","na":1,"nb":455,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["GO%3A0002181","cytoplasmic translation"],["GO%3A0032543","mitochondrial translation"],["GO%3A0032544","plastid translation"],["GO%3A0140241","translation at synapse"],["GO%3A0006412","translation"],["Reactome%3AR-HSA-72766","Translation"]]},{"id":"GO:0055085","l":"transmembrane transport","na":1,"nb":439,"a":[["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"]],"b":[["ComplexPortal%3ACPX-271","5-hydroxytryptamine-3A/B receptor complex"],["ComplexPortal%3ACPX-275","5-hydroxytryptamine-3A/B receptor complex"],["ComplexPortal%3ACPX-277","5-hydroxytryptamine-3A/B receptor complex"],["ComplexPortal%3ACPX-276","5-hydroxytryptamine-3A/C receptor complex"],["ComplexPortal%3ACPX-272","5-hydroxytryptamine-3A/D receptor complex"],["ComplexPortal%3ACPX-273","5-hydroxytryptamine-3A/E receptor complex"]]},{"id":"CHEBI:29985","l":"L-glutamate(1-)","na":1,"nb":426,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["EC%3A1.14.11.76","L-glutamate 3(R)-hydroxylase"],["EC%3A1.2.1.88","L-glutamate gamma-semialdehyde dehydrogenase"],["EC%3A1.4.1.13","glutamate synthase (NADPH)"],["EC%3A1.4.1.14","glutamate synthase (NADH)"],["EC%3A1.4.1.2","glutamate dehydrogenase"],["EC%3A1.4.1.3","glutamate dehydrogenase [NAD(P)(+)]"]]},{"id":"GO:0006508","l":"proteolysis","na":1,"nb":393,"a":[["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"]],"b":[["ComplexPortal%3ACPX-6224","Active Protein C complex"],["ComplexPortal%3ACPX-6222","alpha-thrombin complex"],["ComplexPortal%3ACPX-3663","Caspase-8 complex"],["ComplexPortal%3ACPX-975","Caspase-8 complex"],["ComplexPortal%3ACPX-6221","Coagulation factor Va-Xa complex"],["ComplexPortal%3ACPX-279","Coagulation factor VIIa - tissue factor complex"]]},{"id":"GO:0006260","l":"DNA replication","na":1,"nb":311,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["ComplexPortal%3ACPX-6641","ASCC DNA alkylation repair complex"],["ComplexPortal%3ACPX-568","Chromatin assembly factor 1 complex"],["ComplexPortal%3ACPX-2671","CMG helicase complex"],["ComplexPortal%3ACPX-297","CMG helicase complex"],["ComplexPortal%3ACPX-4526","CMG helicase complex"],["ComplexPortal%3ACPX-4541","CMG helicase complex"]]},{"id":"CHEBI:29101","l":"sodium(1+)","na":1,"nb":292,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29101","requires sodium(1+)"],["EC%3A7.2.1.1","NADH:ubiquinone reductase (Na(+)-transporting)"],["EC%3A7.2.1.2","ferredoxin--NAD(+) oxidoreductase (Na(+)-transporting)"],["EC%3A7.2.1.4","tetrahydromethanopterin S-methyltransferase"],["EC%3A7.2.2.1","Na(+)-transporting two-sector ATPase"],["EC%3A7.2.2.13","Na(+)/K(+)-exchanging ATPase"]]},{"id":"GO:0006096","l":"glycolytic process","na":1,"nb":117,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["ComplexPortal%3ACPX-1992","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-2039","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-2040","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-1994","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"],["ComplexPortal%3ACPX-2041","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"],["ComplexPortal%3ACPX-2042","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"]]},{"id":"GO:0042221","l":"response to chemical","na":1,"nb":104,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0070887","cellular response to chemical stimulus"],["GO%3A0036503","ERAD pathway"],["GO%3A1904612","response to 2,3,7,8-tetrachlorodibenzodioxine"],["GO%3A1904610","response to 3,3',4,4',5-pentachlorobiphenyl"],["GO%3A0036275","response to 5-fluorouracil"],["GO%3A0001101","response to acid chemical"]]},{"id":"GO:0009252","l":"peptidoglycan biosynthetic process","na":1,"nb":90,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["GO%3A0009252","peptidoglycan biosynthetic process"],["GO%3A0018104","peptidoglycan-protein cross-linking"],["NCBIfam%3ATIGR00492","alanine racemase"],["NCBIfam%3ANF007061","bifunctional glycosyl transferase/transpeptidase"],["NCBIfam%3ANF006986","bifunctional UDP-N-acetylglucosamine diphosphorylase/glucosamine-1-phosphate N-acetyltransferase GlmU"]]},{"id":"GO:0009306","l":"protein secretion","na":1,"nb":84,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["GO%3A0070162","adiponectin secretion"],["GO%3A0036394","amylase secretion"],["GO%3A0110010","basolateral protein secretion"],["GO%3A0038055","BMP secretion"],["GO%3A0030073","insulin secretion"],["GO%3A1990773","matrix metallopeptidase secretion"]]},{"id":"GO:0006796","l":"phosphate-containing compound metabolic process","na":1,"nb":72,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"]],"b":[["GO%3A0016311","dephosphorylation"],["GO%3A0006796","phosphate-containing compound metabolic process"],["GO%3A0016310","phosphorylation"],["NCBIfam%3ANF053626","ATP-dependent ribose-1-phosphate kinase"],["NCBIfam%3ANF002317","inorganic diphosphatase"],["NCBIfam%3ATIGR02966","phosphate regulon sensor histidine kinase PhoR"]]},{"id":"GO:0048519","l":"negative regulation of biological process","na":1,"nb":72,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["GO%3A1905869","negative regulation of 3'-UTR-mediated mRNA stabilization"],["GO%3A0045759","negative regulation of action potential"],["GO%3A0048519","negative regulation of biological process"],["GO%3A0030712","negative regulation of border follicle cell delamination"],["GO%3A1903780","negative regulation of cardiac conduction"],["GO%3A0048523","negative regulation of cellular process"]]},{"id":"GO:0006631","l":"fatty acid metabolic process","na":1,"nb":71,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["ComplexPortal%3ACPX-6169","Mitochondrial propionyl-CoA carboxylase complex"],["ComplexPortal%3ACPX-1038","PIP2-OAF1 transcription factor complex"],["ComplexPortal%3ACPX-25756","SREBP-SCAP transcription regulator complex"],["GO%3A0006633","fatty acid biosynthetic process"],["GO%3A0009062","fatty acid catabolic process"],["GO%3A0006631","fatty acid metabolic process"]]},{"id":"GO:0006955","l":"immune response","na":1,"nb":69,"a":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"]],"b":[["ComplexPortal%3ACPX-381","Interleukin-12 complex"],["ComplexPortal%3ACPX-387","Interleukin-12 complex"],["ComplexPortal%3ACPX-382","Interleukin-12-receptor ligand complex"],["ComplexPortal%3ACPX-3290","Interleukin-23 complex"],["ComplexPortal%3ACPX-389","Interleukin-23-receptor complex"],["ComplexPortal%3ACPX-383","Interleukin-23 receptor-ligand complex"]]},{"id":"GO:0006814","l":"sodium ion transport","na":1,"nb":67,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"]],"b":[["GO%3A0003096","renal sodium ion transport"],["GO%3A0035725","sodium ion transmembrane transport"],["GO%3A0006814","sodium ion transport"],["NCBIfam%3ANF050096","bicarbonate transporter BicA"],["NCBIfam%3ATIGR02711","cation/acetate symporter ActP"],["NCBIfam%3ANF047943","citrate/sodium symporter CitS"]]},{"id":"GO:0006950","l":"response to stress","na":1,"nb":67,"a":[["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"]],"b":[["GO%3A0033554","cellular response to stress"],["GO%3A0006952","defense response"],["GO%3A0033555","multicellular organismal response to stress"],["GO%3A0003299","muscle hypertrophy in response to stress"],["GO%3A0009271","phage shock"],["GO%3A0034059","response to anoxia"]]},{"id":"GO:0000271","l":"polysaccharide biosynthetic process","na":1,"nb":66,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"]],"b":[["ComplexPortal%3ACPX-417","Glucosidase II complex"],["GO%3A0051072","4,6-pyruvylated galactose residue biosynthetic process"],["GO%3A0042121","alginic acid biosynthetic process"],["GO%3A0035884","arabinan biosynthetic process"],["GO%3A0045227","capsule polysaccharide biosynthetic process"],["GO%3A0070592","cell wall polysaccharide biosynthetic process"]]},{"id":"GO:0044282","l":"small molecule catabolic process","na":1,"nb":63,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"]],"b":[["GO%3A0046164","alcohol catabolic process"],["GO%3A0046395","carboxylic acid catabolic process"],["GO%3A0019341","dibenzo-p-dioxin catabolic process"],["GO%3A0046294","formaldehyde catabolic process"],["GO%3A0046952","ketone body catabolic process"],["GO%3A0042182","ketone catabolic process"]]},{"id":"GO:0071973","l":"bacterial-type flagellum-dependent cell motility","na":1,"nb":60,"a":[["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"]],"b":[["ComplexPortal%3ACPX-4886","DNA-directed RNA polymerase holoenzyme complex, SigmaF variant"],["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["GO%3A0071973","bacterial-type flagellum-dependent cell motility"],["GO%3A0071978","bacterial-type flagellum-dependent swarming motility"]]},{"id":"GO:0019752","l":"carboxylic acid metabolic process","na":1,"nb":59,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"]],"b":[["GO%3A1902056","(25S)-Delta(7)-dafachronate metabolic process"],["GO%3A0006525","arginine metabolic process"],["GO%3A0009072","aromatic amino acid metabolic process"],["GO%3A0018872","arsonoacetate metabolic process"],["GO%3A0120552","branched-chain alpha-keto acid decarboxylation to branched-chain acyl-CoA"],["GO%3A0009081","branched-chain amino acid metabolic process"]]},{"id":"CHEBI:17879","l":"4-hydroxybenzoate","na":1,"nb":57,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["EC%3A1.13.11.41","2,4'-dihydroxyacetophenone dioxygenase"],["EC%3A1.14.13.2","4-hydroxybenzoate 3-monooxygenase"],["EC%3A1.14.13.33","4-hydroxybenzoate 3-monooxygenase [NAD(P)H]"],["EC%3A1.14.13.64","4-hydroxybenzoate 1-hydroxylase"],["EC%3A1.14.14.92","benzoate 4-monooxygenase"],["EC%3A1.14.19.55","4-hydroxybenzoate brominase (decarboxylating)"]]},{"id":"CHEBI:15589","l":"(S)-malate(2-)","na":1,"nb":56,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["EC%3A1.1.1.299","malate dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.1.37","(S)-malate dehydrogenase (NAD(+), oxaloacetate-forming)"],["EC%3A1.1.1.38","malate dehydrogenase (oxaloacetate-decarboxylating)"],["EC%3A1.1.1.39","malate dehydrogenase (decarboxylating)"],["EC%3A1.1.1.40","malate dehydrogenase (oxaloacetate-decarboxylating) (NADP(+))"],["EC%3A1.1.1.82","malate dehydrogenase (NADP(+))"]]},{"id":"NCBITaxon:2","l":"Bacteria","na":56,"nb":1,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2","Bacteria orthologous groups (OrthoDB)"]]},{"id":"GO:0046394","l":"carboxylic acid biosynthetic process","na":1,"nb":55,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["GO%3A0042861","achromobactin biosynthetic process"],["GO%3A1901112","actinorhodin biosynthetic process"],["GO%3A0006523","alanine biosynthetic process"],["GO%3A0019578","aldaric acid biosynthetic process"],["GO%3A0042121","alginic acid biosynthetic process"],["GO%3A0009073","aromatic amino acid biosynthetic process"]]},{"id":"GO:0006094","l":"gluconeogenesis","na":1,"nb":52,"a":[["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"]],"b":[["ComplexPortal%3ACPX-1992","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-2039","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-2040","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-1994","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"],["ComplexPortal%3ACPX-2041","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"],["ComplexPortal%3ACPX-2042","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"]]},{"id":"GO:0006865","l":"amino acid transport","na":1,"nb":52,"a":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"]],"b":[["GO%3A0015800","acidic amino acid transport"],["GO%3A0043090","amino acid import"],["GO%3A0051933","amino acid neurotransmitter reuptake"],["GO%3A0003333","amino acid transmembrane transport"],["GO%3A0006865","amino acid transport"],["GO%3A0015802","basic amino acid transport"]]},{"id":"GO:0009117","l":"nucleotide metabolic process","na":1,"nb":50,"a":[["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"]],"b":[["GO%3A0009394","2'-deoxyribonucleotide metabolic process"],["GO%3A0009187","cyclic nucleotide metabolic process"],["GO%3A0015959","diadenosine polyphosphate metabolic process"],["GO%3A0072387","flavin adenine dinucleotide metabolic process"],["GO%3A0046496","nicotinamide nucleotide metabolic process"],["GO%3A0009165","nucleotide biosynthetic process"]]},{"id":"GO:0044550","l":"secondary metabolite biosynthetic process","na":1,"nb":46,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["GO%3A1900581","(17Z)-protosta-17(20),24-dien-3beta-ol biosynthetic process"],["GO%3A0009821","alkaloid biosynthetic process"],["GO%3A1900587","arugosin biosynthetic process"],["GO%3A0036184","asperthecin biosynthetic process"],["GO%3A0062032","cichorine biosynthetic process"],["GO%3A1900799","cordyol C biosynthetic process"]]},{"id":"CHEBI:30212","l":"photon","na":1,"nb":45,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["EC%3A1.10.3.9","photosystem II"],["EC%3A1.13.12.13","Oplophorus-luciferin 2-monooxygenase"],["EC%3A1.13.12.18","dinoflagellate luciferase"],["EC%3A1.13.12.5","Renilla-type luciferase"],["EC%3A1.13.12.6","Cypridina-luciferin 2-monooxygenase"],["EC%3A1.13.12.7","firefly luciferase"]]},{"id":"CHEBI:506227","l":"N-acetyl-D-glucosamine","na":1,"nb":44,"a":[["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["EC%3A1.1.3.29","N-acylhexosamine oxidase"],["EC%3A2.3.1.3","glucosamine N-acetyltransferase"],["EC%3A2.4.1.211","1,3-beta-galactosyl-N-acetylhexosamine phosphorylase"],["EC%3A2.4.1.280","N,N'-diacetylchitobiose phosphorylase"],["EC%3A2.4.1.320","1,4-beta-mannosyl-N-acetylglucosamine phosphorylase"],["EC%3A2.4.1.90","N-acetyllactosamine synthase"]]},{"id":"GO:0042178","l":"xenobiotic catabolic process","na":1,"nb":42,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["GO%3A0046230","2-aminobenzenesulfonate catabolic process"],["GO%3A0046304","2-nitropropane catabolic process"],["GO%3A0019610","3-hydroxyphenylacetate catabolic process"],["GO%3A0019380","3-phenylpropionate catabolic process"],["GO%3A0046196","4-nitrophenol catabolic process"],["GO%3A0019639","6-hydroxycineole catabolic process"]]},{"id":"GO:0030198","l":"extracellular matrix organization","na":1,"nb":41,"a":[["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]],"b":[["ComplexPortal%3ACPX-1801","Integrin alpha2-beta1 complex"],["ComplexPortal%3ACPX-3115","Integrin alpha2-beta1 complex"],["ComplexPortal%3ACPX-4423","Matrilin-1 complex"],["ComplexPortal%3ACPX-4463","Matrilin-1 complex"],["ComplexPortal%3ACPX-4521","Matrilin-1 complex"],["ComplexPortal%3ACPX-4503","Matrilin-1 - Matrilin-3 complex"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima (strain ATCC 43589 / DSM 3109 / JCM 10099 / NBRC 100826 / MSB8)","na":1,"nb":39,"a":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]],"b":[["Pfam%3APF02829","3H domain"],["Pfam%3APF13175","AAA ATPase domain"],["Pfam%3APF01958","Aspartate dehydrogenase, C-terminal"],["Pfam%3APF05448","Acetyl xylan esterase (AXE1)"],["Pfam%3APF04509","CheC-like family"],["Pfam%3APF13690","Chemotaxis phosphatase CheX"]]},{"id":"GO:0006954","l":"inflammatory response","na":1,"nb":38,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["ComplexPortal%3ACPX-2862","Caspase-7 complex"],["ComplexPortal%3ACPX-3947","Caspase-7 complex"],["ComplexPortal%3ACPX-363","Heparanase complex"],["ComplexPortal%3ACPX-10322","IL33 receptor-ligand complex"],["ComplexPortal%3ACPX-9301","Interleukin-17A complex"],["ComplexPortal%3ACPX-10317","Interleukin-26 complex"]]},{"id":"GO:0007267","l":"cell-cell signaling","na":1,"nb":38,"a":[["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["ComplexPortal%3ACPX-10317","Interleukin-26 complex"],["GO%3A0035425","autocrine signaling"],["GO%3A0061939","c-di-GMP signaling"],["GO%3A0007267","cell-cell signaling"],["GO%3A0045168","cell-cell signaling involved in cell fate commitment"],["GO%3A0060764","cell-cell signaling involved in mammary gland development"]]},{"id":"GO:0008283","l":"cell population proliferation","na":1,"nb":37,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["ComplexPortal%3ACPX-2799","CRL4-DCAF4 E3 ubiquitin ligase complex, CUL4A variant"],["ComplexPortal%3ACPX-2859","CRL4-DCAF4 E3 ubiquitin ligase complex, CUL4B variant"],["GO%3A0008283","cell population proliferation"],["GO%3A0071838","cell proliferation in bone marrow"],["GO%3A0035736","cell proliferation involved in compound eye morphogenesis"],["GO%3A0060722","cell proliferation involved in embryonic placenta development"]]},{"id":"GO:0009231","l":"riboflavin biosynthetic process","na":1,"nb":36,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["GO%3A0009231","riboflavin biosynthetic process"],["NCBIfam%3ANF000814","6,7-dimethyl-8-ribityllumazine synthase"],["NCBIfam%3ANF009084","6,7-dimethyl-8-ribityllumazine synthase"],["NCBIfam%3ANF013081","6,7-dimethyl-8-ribityllumazine synthase"],["NCBIfam%3ATIGR00114","6,7-dimethyl-8-ribityllumazine synthase"],["NCBIfam%3ANF006803","bifunctional 3,4-dihydroxy-2-butanone-4-phosphate synthase/GTP cyclohydrolase II"]]},{"id":"GO:1900376","l":"regulation of secondary metabolite biosynthetic process","na":1,"nb":36,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"]],"b":[["GO%3A1900377","negative regulation of secondary metabolite biosynthetic process"],["GO%3A1900378","positive regulation of secondary metabolite biosynthetic process"],["GO%3A1900177","regulation of aflatoxin biosynthetic process"],["GO%3A1900626","regulation of arugosin biosynthetic process"],["GO%3A1900379","regulation of asperthecin biosynthetic process"],["GO%3A1900861","regulation of cordyol C biosynthetic process"]]},{"id":"NCBITaxon:1898203","l":"Lachnospiraceae bacterium","na":1,"nb":35,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]],"b":[["TED%3AAF-A0A2G3Q064-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G3Q064-F1-model_v4_TED01"],["TED%3AAF-A0A316PVU3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A316PVU3-F1-model_v4_TED02"],["TED%3AAF-A0A349YHB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349YHB4-F1-model_v4_TED01"],["TED%3AAF-A0A349ZVK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349ZVK2-F1-model_v4_TED01"],["TED%3AAF-A0A354ID29-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A354ID29-F1-model_v4_TED04"],["TED%3AAF-A0A355NJL5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A355NJL5-F1-model_v4_TED02"]]},{"id":"CHEBI:17855","l":"triglyceride","na":1,"nb":34,"a":[["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["EC%3A2.3.1.158","phospholipid:diacylglycerol acyltransferase"],["EC%3A2.3.1.77","triacylglycerol--sterol O-acyltransferase"],["EC%3A3.1.1.3","triacylglycerol lipase"],["EC%3A3.1.1.34","lipoprotein lipase"],["EC%3A3.1.1.79","hormone-sensitive lipase"],["RHEA%3A77987","9-hydroxy-octadecanoate + a triacylglycerol = 9-(acyloxy)-octadecanoate + a 1,3-diacylglycerol"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":1,"nb":32,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["Pfam%3APF25848","Rodlin protein"],["Pfam%3APF13420","Acetyltransferase (GNAT) domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF26381","BREX System ATPase PglY protein 5th domain"],["Pfam%3APF26382","BREX System ATPase PglY protein 6th domain"]]},{"id":"GO:0044780","l":"bacterial-type flagellum assembly","na":1,"nb":30,"a":[["SynCom_MetG2_Rhizobacteria_Sugarcane_Stress_Resilience.html","SynCom MetG2 Rhizobacteria Sugarcane Stress Resilience"]],"b":[["ComplexPortal%3ACPX-4886","DNA-directed RNA polymerase holoenzyme complex, SigmaF variant"],["GO%3A0044780","bacterial-type flagellum assembly"],["NCBIfam%3ANF007836","flagella biosynthesis regulatory protein FliT"],["NCBIfam%3ANF006281","flagella length regulator FlaG"],["NCBIfam%3ANF047373","flagellar assembly lytic transglycosylase"],["NCBIfam%3ATIGR02541","flagellar assembly peptidoglycan hydrolase FlgJ"]]},{"id":"GO:0046718","l":"symbiont entry into host cell","na":1,"nb":30,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["ComplexPortal%3ACPX-5768","MERS-CoV Spike - human DPP4 receptor complex"],["ComplexPortal%3ACPX-5769","MERS-CoV Spike - human DPP4 receptor complex"],["ComplexPortal%3ACPX-5683","SARS-CoV-2 Spike - human ACE2 receptor complex"],["ComplexPortal%3ACPX-6761","SARS-CoV-2 Spike - human CLEC4M lectin complex"],["ComplexPortal%3ACPX-5695","SARS-CoV Spike - human ACE2 receptor complex"],["ComplexPortal%3ACPX-5696","SARS-CoV Spike - human CLEC4M lectin complex"]]},{"id":"GO:0006526","l":"L-arginine biosynthetic process","na":1,"nb":28,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["ComplexPortal%3ACPX-579","Carbamoyl-phosphate synthase arginine-specific"],["ComplexPortal%3ACPX-1937","Carbamoyl phosphate synthetase complex"],["ComplexPortal%3ACPX-1151","N-acetylglutamate synthase NAGS/NAGK complex"],["GO%3A0006526","L-arginine biosynthetic process"],["NCBIfam%3ANF003474","acetylornithine deacetylase"],["NCBIfam%3ATIGR01892","acetylornithine deacetylase"]]},{"id":"CHEBI:16235","l":"guanine","na":1,"nb":27,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["EC%3A2.4.2.1","purine-nucleoside phosphorylase"],["EC%3A2.4.2.15","guanosine phosphorylase"],["EC%3A2.4.2.29","tRNA-guanosine(34) preQ1 transglycosylase"],["EC%3A2.4.2.48","tRNA-guanine(15) transglycosylase"],["EC%3A2.4.2.64","tRNA-guanosine(34) queuine transglycosylase"],["EC%3A2.4.2.8","hypoxanthine phosphoribosyltransferase"]]},{"id":"CHEBI:17234","l":"glucose","na":26,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:16007","l":"methanethiol","na":1,"nb":25,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["EC%3A1.14.13.131","dissimilatory dimethyl-sulfide monooxygenase"],["EC%3A1.8.1.21","dissimilatory dimethyldisulfide reductase"],["EC%3A1.8.3.4","methanethiol oxidase"],["EC%3A2.1.1.251","methylated-thiol--coenzyme M methyltransferase"],["EC%3A2.1.1.334","methanethiol S-methyltransferase"],["EC%3A2.5.1.49","O-acetylhomoserine aminocarboxypropyltransferase"]]},{"id":"CHEBI:18346","l":"vanillin","na":1,"nb":25,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"]],"b":[["EC%3A1.1.3.38","vanillyl-alcohol oxidase"],["EC%3A1.11.1.16","versatile peroxidase"],["EC%3A1.13.11.43","lignostilbene alphabeta-dioxygenase"],["EC%3A1.13.11.88","isoeugenol monooxygenase"],["EC%3A1.13.11.94","4-vinylguaiacol dioxygenase"],["EC%3A1.2.1.67","vanillin dehydrogenase"]]},{"id":"NCBITaxon:226186","l":"Bacteroides thetaiotaomicron (strain ATCC 29148 / DSM 2079 / JCM 5827 / CCUG 10774 / NCTC 10582 / VPI-5482 / E50)","na":1,"nb":25,"a":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"]],"b":[["Pfam%3APF06439","3-keto-alpha-glucoside-1,2-lyase-like domain"],["Pfam%3APF13444","Acetyltransferase (GNAT) domain"],["Pfam%3APF19576","Acyltransferase"],["Pfam%3APF23764","GLAA-B beta-barrel domain II"],["Pfam%3APF13715","CarboxypepD_reg-like domain"],["Pfam%3APF26120","SusF, first starch specific CBM"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":1,"nb":25,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["Pfam%3APF13372","Alginate export"],["Pfam%3APF25965","ALG44 beta-barrel domain"],["Pfam%3APF25964","ALG44, barrel-sandwich hybrid domain"],["Pfam%3APF16844","Dinitrogenase iron-molybdenum cofactor, N-terminal"],["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"]]},{"id":"GO:0002221","l":"pattern recognition receptor signaling pathway","na":1,"nb":24,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["ComplexPortal%3ACPX-4242","Caspase-1 complex"],["ComplexPortal%3ACPX-952","Caspase-1 complex"],["ComplexPortal%3ACPX-4144","NLRC4 inflammasome"],["ComplexPortal%3ACPX-4082","NLRP1 inflammasome"],["ComplexPortal%3ACPX-4947","NLRP1 inflammasome, variant 1"],["ComplexPortal%3ACPX-4948","NLRP1 inflammasome, variant 2"]]},{"id":"GO:0018958","l":"phenol-containing compound metabolic process","na":1,"nb":24,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["GO%3A0031147","1-(3,5-dichloro-2,6-dihydroxy-4-methoxyphenyl)hexan-1-one metabolic process"],["GO%3A0018921","3-hydroxybenzyl alcohol metabolic process"],["GO%3A1901022","4-hydroxyphenylacetate metabolic process"],["GO%3A0018960","4-nitrophenol metabolic process"],["GO%3A0042215","anaerobic phenol-containing compound metabolic process"],["GO%3A0036182","asperthecin metabolic process"]]},{"id":"GO:0006221","l":"pyrimidine nucleotide biosynthetic process","na":1,"nb":22,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["ComplexPortal%3ACPX-579","Carbamoyl-phosphate synthase arginine-specific"],["GO%3A0009221","pyrimidine deoxyribonucleotide biosynthetic process"],["GO%3A0006221","pyrimidine nucleotide biosynthetic process"],["GO%3A0032262","pyrimidine nucleotide salvage"],["GO%3A0009220","pyrimidine ribonucleotide biosynthetic process"],["NCBIfam%3ANF018158","CTP synthase N-terminus"]]},{"id":"CHEBI:17437","l":"dimethyl sulfide","na":1,"nb":21,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["EC%3A1.14.13.131","dissimilatory dimethyl-sulfide monooxygenase"],["EC%3A1.14.13.245","assimilatory dimethylsulfide S-monooxygenase"],["EC%3A1.8.2.4","dimethyl sulfide:cytochrome c2 reductase"],["EC%3A1.8.5.3","respiratory dimethylsulfoxide reductase"],["EC%3A2.1.1.19","trimethylsulfonium--tetrahydrofolate N-methyltransferase"],["EC%3A2.1.1.334","methanethiol S-methyltransferase"]]},{"id":"GO:0006817","l":"phosphate ion transport","na":1,"nb":21,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["GO%3A0035435","phosphate ion transmembrane transport"],["GO%3A0006817","phosphate ion transport"],["GO%3A0044341","sodium-dependent phosphate transport"],["NCBIfam%3ANF033774","inorganic phosphate transporter PitA"],["NCBIfam%3ATIGR00972","phosphate ABC transporter ATP-binding protein PstB"],["NCBIfam%3ANF023916","phosphate ABC transporter permease family protein"]]},{"id":"CHEBI:16411","l":"indole-3-acetic acid","na":20,"nb":1,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_IAC","IAC-binding site"]]},{"id":"CHEBI:2181","l":"L-fucopyranose","na":1,"nb":20,"a":[["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"]],"b":[["EC%3A1.1.1.122","D-threo-aldose 1-dehydrogenase"],["EC%3A3.2.1.51","alpha-L-fucosidase"],["EC%3A3.2.1.63","1,2-alpha-L-fucosidase"],["EC%3A5.3.1.25","L-fucose isomerase"],["RHEA%3A49308","a neolactoside IV(2)-alpha-Fuc-nLc4Cer(d18:0) + H2O = a neolactoside nLc4Cer(d18:0) + L-fucose"],["RHEA%3A48224","a neolactoside IV(2)-alpha-Fuc-nLc4Cer(d18:1(4E)) + H2O = a neolactoside nLc4Cer(d18:1(4E)) + L-fucose"]]},{"id":"GO:0052031","l":"symbiont-mediated perturbation of host defense response","na":1,"nb":20,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["GO%3A0140415","effector-mediated perturbation of host defenses by symbiont"],["GO%3A0140424","symbiont-mediated activation of blood coagulation, intrinsic pathway"],["GO%3A0039587","symbiont-mediated-mediated suppression of host tetherin activity"],["GO%3A0052084","symbiont-mediated modulation of host ethylene-mediated defense response"],["GO%3A0052031","symbiont-mediated perturbation of host defense response"],["GO%3A0052553","symbiont-mediated perturbation of host immune response"]]},{"id":"CHEBI:18022","l":"thiocyanate","na":1,"nb":19,"a":[["Thiocyanate_Afipia_Thiobacillus_Bioreactor_Community.html","Thiocyanate-Degrading Afipia and Thiobacillus Bioreactor Community"]],"b":[["EC%3A1.8.2.7","thiocyanate desulfurase"],["EC%3A2.1.1.n4","thiocyanate methyltransferase"],["EC%3A2.8.1.1","thiosulfate sulfurtransferase"],["EC%3A3.5.5.8","thiocyanate hydrolase"],["RHEA%3A63880","thiocyanate + 2 Fe(III)-[cytochrome c] + H2O = cyanate + sulfur + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A21464","thiocyanate + H2O + 2 H(+) = carbonyl sulfide + NH4(+)"]]},{"id":"GO:0019319","l":"hexose biosynthetic process","na":1,"nb":19,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["GO%3A0019315","D-allose biosynthetic process"],["GO%3A0046370","fructose biosynthetic process"],["GO%3A0042353","fucose biosynthetic process"],["GO%3A0046369","galactose biosynthetic process"],["GO%3A0006094","gluconeogenesis"],["GO%3A0019319","hexose biosynthetic process"]]},{"id":"CHEBI:16838","l":"polyphosphate","na":1,"nb":18,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"]],"b":[["EC%3A2.7.1.63","polyphosphate--glucose phosphotransferase"],["EC%3A2.7.4.1","ATP-polyphosphate phosphotransferase"],["EC%3A2.7.4.17","3-phosphoglyceroyl-phosphate--polyphosphate phosphotransferase"],["EC%3A2.7.4.20","dolichyl-diphosphate--polyphosphate phosphotransferase"],["EC%3A2.7.4.33","AMP-polyphosphate phosphotransferase"],["EC%3A2.7.4.34","GDP-polyphosphate phosphotransferase"]]},{"id":"NCBITaxon:2697049","l":"Severe acute respiratory syndrome coronavirus 2","na":1,"nb":18,"a":[["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"]],"b":[["IDPO%3A0000002","disorder"],["IDPO%3A0000033","flexible linker"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000041","glycosylation display site"],["IDPO%3A0000048","limited proteolysis display site"],["IDPO%3A0000037","molecular recognition display site"]]},{"id":"CHEBI:16881","l":"1H-indole","na":1,"nb":17,"a":[["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"]],"b":[["EC%3A1.13.11.17","indole 2,3-dioxygenase"],["EC%3A1.14.14.153","indole-2-monooxygenase"],["EC%3A4.1.1.92","indole-3-carboxylate decarboxylase"],["EC%3A4.1.2.8","indole-3-glycerol-phosphate lyase"],["EC%3A4.1.99.1","tryptophanase"],["EC%3A4.2.1.122","tryptophan synthase (indole-salvaging)"]]},{"id":"CHEBI:17120","l":"hexanoate","na":1,"nb":17,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"]],"b":[["EC%3A3.5.1.39","alkylamidase"],["RHEA%3A53496","1-hexanoyl-2-acyl-sn-glycero-3-phosphocholine + H2O = hexanoate + a 2-acyl-sn-glycero-3-phosphocholine + H(+)"],["RHEA%3A54464","1-octadecanoyl-2-hexanoyl-sn-glycero-3-phosphocholine + H2O = hexanoate + 1-octadecanoyl-sn-glycero-3-phosphocholine + H(+)"],["RHEA%3A47352","a hexanoate ester + H2O = an aliphatic alcohol + hexanoate + H(+)"],["RHEA%3A79351","hexanal + 2 Fe(III)-[cytochrome c] + H2O = hexanoate + 2 Fe(II)-[cytochrome c] + 3 H(+)"],["RHEA%3A67276","hexanal + NAD(+) + H2O = hexanoate + NADH + 2 H(+)"]]},{"id":"GO:0015940","l":"pantothenate biosynthetic process","na":1,"nb":17,"a":[["Variovorax_Cryptococcus_Vitamin_Mutualism_Microcosm.html","Variovorax-Cryptococcus Vitamin Cross-Feeding Microcosm"]],"b":[["GO%3A0015940","pantothenate biosynthetic process"],["NCBIfam%3ANF005087","2-dehydropantoate 2-reductase"],["NCBIfam%3ANF005092","2-dehydropantoate 2-reductase"],["NCBIfam%3ANF005093","2-dehydropantoate 2-reductase"],["NCBIfam%3ANF005094","2-dehydropantoate 2-reductase"],["NCBIfam%3ANF006083","2-dehydropantoate 2-reductase"]]},{"id":"GO:0006090","l":"pyruvate metabolic process","na":1,"nb":16,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"]],"b":[["GO%3A0061678","Entner-Doudoroff pathway"],["GO%3A0061718","glucose catabolic process to pyruvate"],["GO%3A0006096","glycolytic process"],["GO%3A0033508","L-glutamate fermentation"],["GO%3A0019617","protocatechuate catabolic process, meta-cleavage"],["GO%3A0042866","pyruvate biosynthetic process"]]},{"id":"GO:0006527","l":"L-arginine catabolic process","na":1,"nb":16,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["GO%3A0006527","L-arginine catabolic process"],["NCBIfam%3ATIGR01273","arginine decarboxylase"],["NCBIfam%3ANF002381","arginine deiminase"],["NCBIfam%3ATIGR01078","arginine deiminase"],["NCBIfam%3ANF007770","arginine N-succinyltransferase"],["NCBIfam%3ATIGR03244","arginine N-succinyltransferase"]]},{"id":"NCBITaxon:3847","l":"Glycine max","na":1,"nb":16,"a":[["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["Pfam%3APF02095","Extensin-like protein"],["Pfam%3APF00477","Small hydrophilic plant seed protein"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF08027","Albumin I chain b"],["Pfam%3APF10539","Development and cell death domain"],["Pfam%3APF03386","Early nodulin 93 ENOD93 protein"]]},{"id":"CHEBI:36080","l":"protein","na":1,"nb":15,"a":[["Wollastonite_Ramichloridium_Talaromyces_Fungal_Consortium.html","Wollastonite Ramichloridium-Talaromyces Fungal Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A3.A.16","The Endoplasmic Reticular Retrotranslocon (ER-RT) Family"],["TCDB%3A3.A.27","The Endoplasmic Reticulum Membrane Protein Insertion Complex (EMC) Family"],["TCDB%3A9.A.57","The Extended-Synaptotagmin (E-Syt) Family"],["TCDB%3A3.A.13","The Filamentous Phage Exporter (FPhE) Family"],["TCDB%3A9.A.37","The Nuclear Import Tax Protein (Tax) Family"]]},{"id":"GO:0044010","l":"single-species biofilm formation","na":1,"nb":15,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"]],"b":[["ComplexPortal%3ACPX-4063","ChpBS toxin-antitoxin complex"],["ComplexPortal%3ACPX-4743","Curli secretion complex"],["ComplexPortal%3ACPX-1079","DinJ-YafQ toxin-antitoxin complex"],["ComplexPortal%3ACPX-3296","Fucose-binding lectin II complex"],["ComplexPortal%3ACPX-1086","MazEF toxin-antitoxin complex"],["ComplexPortal%3ACPX-1084","MqsRA toxin-antitoxin complex"]]},{"id":"GO:0051453","l":"regulation of intracellular pH","na":1,"nb":15,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["ComplexPortal%3ACPX-3090","Glutathione-regulated potassium-efflux system KefB-KefG complex"],["ComplexPortal%3ACPX-2543","Glutathione-regulated potassium-efflux system KefC-KefF complex"],["ComplexPortal%3ACPX-26449","Sodium/proton exchanger complex, NHE1-CHP1 variant"],["ComplexPortal%3ACPX-26462","Sodium/proton exchanger complex, NHE1-CHP2 variant"],["ComplexPortal%3ACPX-26464","Sodium/proton exchanger complex, NHE1-CHP3 variant"],["ComplexPortal%3ACPX-26469","Sodium/proton exchanger complex, NHE2-CHP1 variant"]]},{"id":"NCBITaxon:2157","l":"Archaea","na":15,"nb":1,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2157","Archaea orthologous groups (OrthoDB)"]]},{"id":"GO:0009607","l":"response to biotic stimulus","na":1,"nb":14,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["GO%3A0071216","cellular response to biotic stimulus"],["GO%3A0009595","detection of biotic stimulus"],["GO%3A0036180","filamentous growth of a population of unicellular organisms in response to biotic stimulus"],["GO%3A0009607","response to biotic stimulus"],["GO%3A0043207","response to external biotic stimulus"],["GO%3A1990840","response to lectin"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":1,"nb":14,"a":[["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"]],"b":[["Pfam%3APF03703","Bacterial PH domain"],["Pfam%3APF01322","Cytochrome C'"],["Pfam%3APF03139","Vanadium/alternative nitrogenase delta subunit"],["Pfam%3APF09527","Putative F0F1-ATPase subunit Ca2+/Mg2+ transporter"],["Pfam%3APF03270","Protein of unknown function, DUF269"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":1,"nb":14,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF02224","Cytidylate kinase"],["Pfam%3APF03319","Ethanolamine utilisation protein EutN/carboxysome"],["Pfam%3APF22019","alpha-1,4-glucan branching enzyme GlgB, N-terminal domain"],["Pfam%3APF21714","Circadian clock protein KaiA, N-terminal domain"],["Pfam%3APF07688","KaiA C-terminal domain"]]},{"id":"CHEBI:15428","l":"glycine","na":1,"nb":13,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["MCSA%3A718","caspase-1"],["MCSA%3A599","dipeptidase E"],["MCSA%3A906","gelatinase A"],["MCSA%3A762","glycine C-acetyltransferase"],["MCSA%3A746","L-peptidase"],["MCSA%3A477","picornain 3C"]]},{"id":"GO:0019076","l":"viral release from host cell","na":1,"nb":13,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0046753","non-lytic viral release"],["GO%3A0044659","viral release from host cell by cytolysis"],["GO%3A0019076","viral release from host cell"],["Reactome%3AR-HSA-168298","Release"],["NCBIfam%3ANF037577","Rz1-like spanin outer membrane subunit"],["NCBIfam%3ANF012767","Vpu"]]},{"id":"GO:2000145","l":"regulation of cell motility","na":1,"nb":13,"a":[["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["GO%3A2000146","negative regulation of cell motility"],["GO%3A2000147","positive regulation of cell motility"],["GO%3A1905416","regulation of amoeboid sperm motility"],["GO%3A1902021","regulation of bacterial-type flagellum-dependent cell motility"],["GO%3A0030334","regulation of cell migration"],["GO%3A2000145","regulation of cell motility"]]},{"id":"NCBITaxon:165179","l":"Segatella copri","na":1,"nb":13,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["TED%3AAF-A0A3R6DW71-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3R6DW71-F1-model_v4_TED02"],["TED%3AAF-A0A3R6EGS2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R6EGS2-F1-model_v4_TED01"],["TED%3AAF-A0A5Q5FTM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Q5FTM4-F1-model_v4_TED01"],["TED%3AAF-A0A3R5WNG5-F1-model_v4_TED02","TED novel fold AF-A0A3R5WNG5-F1-model_v4_TED02"],["TED%3AAF-A0A3R5YKW9-F1-model_v4_TED01","TED novel fold AF-A0A3R5YKW9-F1-model_v4_TED01"],["TED%3AAF-A0A3R6FRY2-F1-model_v4_TED01","TED novel fold AF-A0A3R6FRY2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:239","l":"Flavobacterium sp.","na":1,"nb":13,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["Pfam%3APF21331","Isoamylase, C-terminal"],["TED%3AAF-A0A2E4PC55-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E4PC55-F1-model_v4_TED02"],["TED%3AAF-A0A2E4PGC5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4PGC5-F1-model_v4_TED01"],["TED%3AAF-A0A2E4PMB7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E4PMB7-F1-model_v4_TED02"],["TED%3AAF-A0A355BEV2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A355BEV2-F1-model_v4_TED02"],["TED%3AAF-A0A519QLA6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A519QLA6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:267377","l":"Methanococcus maripaludis (strain DSM 14266 / JCM 13030 / NBRC 101832 / S2 / LL)","na":1,"nb":13,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"]],"b":[["Pfam%3APF09171","N-glycosylase/DNA lyase"],["Pfam%3APF06847","Archaeal Peptidase A24 C-terminus Type II"],["Pfam%3APF06819","Archaeal Peptidase A24 C-terminal Domain"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF26558","3-dehydroquinate synthase II C-terminal domain"],["Pfam%3APF01959","3-dehydroquinate synthase II N-terminal domain"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":13,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["Pfam%3APF07832","Cfr10I/Bse634I restriction endonuclease"],["Pfam%3APF22348","Colicin-A N-terminal domain"],["Pfam%3APF01024","Colicin pore forming domain"],["Pfam%3APF18427","DD-reactivating factor swiveling domain"],["Pfam%3APF02286","Dehydratase large subunit"],["Pfam%3APF02288","Dehydratase medium subunit"]]},{"id":"CHEBI:16136","l":"hydrogen sulfide","na":12,"nb":1,"a":[["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["MCSA%3A398","sulfite reductase (NADPH)"]]},{"id":"CHEBI:16188","l":"octan-1-ol","na":1,"nb":12,"a":[["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["EC%3A1.1.1.73","octanol dehydrogenase"],["EC%3A1.14.15.3","alkane 1-monooxygenase"],["RHEA%3A79323","octan-1-ol + 2 Fe(III)-[cytochrome c] = octanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A64628","octan-1-ol + acetyl-CoA = octyl acetate + CoA"],["RHEA%3A64852","octan-1-ol + benzoyl-CoA = octyl benzoate + CoA"],["RHEA%3A44064","octan-1-ol + hexadecanoyl-CoA = octyl hexadecanoate + CoA"]]},{"id":"GO:0043419","l":"urea catabolic process","na":1,"nb":12,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"]],"b":[["ComplexPortal%3ACPX-1296","Urease activation complex"],["GO%3A0043419","urea catabolic process"],["NCBIfam%3ANF010592","urease subunit alpha"],["NCBIfam%3ANF009682","urease subunit beta"],["NCBIfam%3ANF010591","urease subunit beta"],["NCBIfam%3ANF009712","urease subunit gamma"]]},{"id":"GO:0061687","l":"detoxification of inorganic compound","na":1,"nb":12,"a":[["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["GO%3A0140114","cellular detoxification of fluoride"],["GO%3A0140961","cellular detoxification of metal ion"],["GO%3A0140982","detoxification of aluminum ion"],["GO%3A0071585","detoxification of cadmium ion"],["GO%3A0010299","detoxification of cobalt ion"],["GO%3A0010273","detoxification of copper ion"]]},{"id":"CHEBI:16918","l":"gallate","na":1,"nb":11,"a":[["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["EC%3A1.13.11.57","gallate dioxygenase"],["EC%3A2.1.1.341","vanillate/3-O-methylgallate O-demethylase"],["EC%3A2.4.1.136","gallate 1-beta-glucosyltransferase"],["EC%3A3.1.1.20","tannase"],["EC%3A4.1.1.59","gallate decarboxylase"],["RHEA%3A12749","3,4,5-trihydroxybenzoate + H(+) = 1,2,3-trihydroxybenzene + CO2"]]},{"id":"CHEBI:17847","l":"p-cresol","na":1,"nb":11,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["EC%3A1.14.13.236","toluene 4-monooxygenase"],["EC%3A1.17.9.1","4-methylphenol dehydrogenase (hydroxylating)"],["EC%3A4.1.1.83","4-hydroxyphenylacetate decarboxylase"],["EC%3A4.1.99.19","2-iminoacetate synthase"],["RHEA%3A22732","4-hydroxyphenylacetate + H(+) = 4-methylphenol + CO2"],["RHEA%3A56976","4-methylphenol + 2 oxidized [azurin] + H2O = 4-hydroxybenzyl alcohol + 2 reduced [azurin] + 2 H(+)"]]},{"id":"CHEBI:18212","l":"selenite(2-)","na":1,"nb":11,"a":[["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"]],"b":[["EC%3A1.97.1.14","selenate reductase (quinol)"],["EC%3A1.97.1.9","selenate reductase (cytochrome c)"],["RHEA%3A80603","selenite + 2 Fe(III)-[cytochrome c] + H2O = 2 Fe(II)-[cytochrome] + selenate + 2 H(+)"],["RHEA%3A34903","selenite + 4 glutathione + 2 H(+) = selenodiglutathione + glutathione disulfide + 3 H2O"],["RHEA%3A14029","selenite + A + H2O = selenate + AH2"],["RHEA%3A51636","selenite + a quinone + H2O = selenate + a quinol"]]},{"id":"CHEBI:28009","l":"N-acetyl-beta-D-glucosamine","na":1,"nb":11,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]],"b":[["RHEA%3A85211","alpha-di-N-acetylchitobiose + H2O = N-acetyl-beta-D-glucosamine + N-acetyl-alpha-D-glucosamine"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"],["TCDB%3A4.A.6","The PTS Mannose-Fructose-Sorbose (Man) Family"]]},{"id":"CHEBI:28685","l":"molybdenum atom","na":1,"nb":11,"a":[["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_MO","MO-binding site"],["proteintraitsmech%3AMETALPDB_MO_DINUCLEAR","dinuclear molybdenum site"],["proteintraitsmech%3AMETALPDB_MO_HEPTANUCLEAR","heptanuclear molybdenum site"],["proteintraitsmech%3AMETALPDB_MO_HEXANUCLEAR","hexanuclear molybdenum site"],["proteintraitsmech%3AMETALPDB_MO_MONONUCLEAR","mononuclear molybdenum site"],["proteintraitsmech%3AMETALPDB_MO_MULTINUCLEAR","multinuclear molybdenum site"]]},{"id":"CHEBI:49807","l":"lead(2+)","na":1,"nb":11,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_49807","requires lead(2+)"],["RHEA%3A52580","Pb(2+)(in) + ATP + H2O = Pb(2+)(out) + ADP + phosphate + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.4","The Cation Diffusion Facilitator (CDF) Family"],["TCDB%3A2.A.11","The Citrate-Mg2+:H+ (CitM) Citrate-Ca2+:H+ (CitH) Symporter (CitMHS) Family"],["TCDB%3A1.A.87","The Mechanosensitive Calcium Channel (MCA) Family"]]},{"id":"CHEBI:15075","l":"selenate","na":1,"nb":10,"a":[["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"]],"b":[["EC%3A1.97.1.14","selenate reductase (quinol)"],["EC%3A1.97.1.9","selenate reductase (cytochrome c)"],["RHEA%3A34887","selenate(in) = selenate(out)"],["RHEA%3A72079","selenate(out) + 3 Na(+)(out) = selenate(in) + 3 Na(+)(in)"],["RHEA%3A34883","selenate(out) + ATP + H2O = selenate(in) + ADP + phosphate + H(+)"],["RHEA%3A80603","selenite + 2 Fe(III)-[cytochrome c] + H2O = 2 Fe(II)-[cytochrome] + selenate + 2 H(+)"]]},{"id":"CHEBI:15688","l":"acetoin","na":1,"nb":10,"a":[["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"]],"b":[["EC%3A2.2.1.4","acetoin--ribose-5-phosphate transaldolase"],["EC%3A2.3.1.190","acetoin dehydrogenase system"],["RHEA%3A54364","2 acetaldehyde = acetoin"],["RHEA%3A76879","3-aminobutan-2-ol + NAD(+) + H2O = acetoin + NH4(+) + NADH + H(+)"],["RHEA%3A76931","3-aminobutan-2-ol + NADP(+) + H2O = acetoin + NH4(+) + NADPH + H(+)"],["RHEA%3A54368","acetaldehyde + pyruvate + H(+) = acetoin + CO2"]]},{"id":"CHEBI:16581","l":"pregnenolone","na":1,"nb":10,"a":[["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"]],"b":[["EC%3A1.14.14.19","steroid 17alpha-monooxygenase"],["EC%3A1.14.15.6","cholesterol monooxygenase (side-chain-cleaving)"],["RHEA%3A34343","(20R,22R)-20,22-dihydroxycholesterol + 2 reduced [adrenodoxin] + O2 + 2 H(+) = 4-methylpentanal + pregnenolone + 2 oxidized [adrenodoxin] + 2 H2O"],["RHEA%3A35739","6 reduced [adrenodoxin] + cholesterol + 3 O2 + 6 H(+) = 4-methylpentanal + pregnenolone + 6 oxidized [adrenodoxin] + 4 H2O"],["RHEA%3A52356","pregnenolone + 3'-phosphoadenylyl sulfate = pregnenolone sulfate + adenosine 3',5'-bisphosphate + H(+)"],["RHEA%3A43924","pregnenolone + NAD(+) = pregn-5-ene-3,20-dione + NADH + H(+)"]]},{"id":"CHEBI:16738","l":"2,4-dichlorophenol","na":1,"nb":10,"a":[["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"]],"b":[["EC%3A1.14.11.43","(S)-dichlorprop dioxygenase (2-oxoglutarate)"],["EC%3A1.14.11.44","(R)-dichlorprop dioxygenase (2-oxoglutarate)"],["EC%3A1.14.13.20","2,4-dichlorophenol 6-monooxygenase"],["RHEA%3A86719","2,4-dichlorophenol + AH2 = 4-chlorophenol + chloride + A + H(+)"],["RHEA%3A80611","2,4-dichlorophenol + NADH + O2 + H(+) = 3,5-dichlorocatechol + NAD(+) + H2O"],["RHEA%3A20920","2,4-dichlorophenol + NADPH + O2 + H(+) = 3,5-dichlorocatechol + NADP(+) + H2O"]]},{"id":"CHEBI:17051","l":"fluoride","na":1,"nb":10,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["EC%3A2.5.1.63","adenosyl-fluoride synthase"],["EC%3A3.8.1.3","haloacetate dehalogenase"],["EC%3A3.8.2.2","diisopropyl-fluorophosphatase"],["RHEA%3A24100","diisopropyl fluorophosphate + H2O = diisopropyl phosphate + fluoride + 2 H(+)"],["RHEA%3A76159","fluoride(in) = fluoride(out)"],["RHEA%3A16661","fluoride + S-adenosyl-L-methionine = 5'-deoxy-5'-fluoroadenosine + L-methionine"]]},{"id":"CHEBI:17698","l":"chloramphenicol","na":1,"nb":10,"a":[["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"]],"b":[["EC%3A1.14.99.67","alpha-N-dichloroacetyl-p-aminophenylserinol N-oxygenase"],["EC%3A2.3.1.28","chloramphenicol O-acetyltransferase"],["RHEA%3A58884","alpha-N-dichloroacetyl-p-aminophenylserinol + AH2 + 2 O2 = chloramphenicol + A + 2 H2O"],["RHEA%3A18421","chloramphenicol + acetyl-CoA = chloramphenicol 3-acetate + CoA"],["RHEA%3A35287","chloramphenicol(in) + ATP + H2O = chloramphenicol(out) + ADP + phosphate + H(+)"],["RHEA%3A35059","chloramphenicol(in) + H(+)(out) = chloramphenicol(out) + H(+)(in)"]]},{"id":"GO:0006548","l":"L-histidine catabolic process","na":1,"nb":10,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["GO%3A0006548","L-histidine catabolic process"],["Reactome%3AR-HSA-70921","Histidine catabolism"],["proteintraitsmech%3ASEED_SUBSYSTEM_Histidine_Degradation","Histidine Degradation"],["NCBIfam%3ATIGR01227","formimidoylglutamase"],["NCBIfam%3ATIGR02022","formimidoylglutamate deiminase"],["NCBIfam%3ATIGR02024","glutamate formimidoyltransferase"]]},{"id":"GO:0070482","l":"response to oxygen levels","na":1,"nb":10,"a":[["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"]],"b":[["ComplexPortal%3ACPX-3982","dosPC diguanylate cyclase/c-di-GMP phosphodiesterase complex"],["ComplexPortal%3ACPX-1882","HAP1 transcriptional repressor complex, SSA1 variant"],["ComplexPortal%3ACPX-1883","HAP1 transcriptional repressor complex, SSA2 variant"],["ComplexPortal%3ACPX-1276","HMC complex"],["GO%3A0071453","cellular response to oxygen levels"],["GO%3A0003032","detection of oxygen"]]},{"id":"GO:2000146","l":"negative regulation of cell motility","na":1,"nb":10,"a":[["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["GO%3A1905417","negative regulation of amoeboid sperm motility"],["GO%3A1902201","negative regulation of bacterial-type flagellum-dependent cell motility"],["GO%3A0030336","negative regulation of cell migration"],["GO%3A2000146","negative regulation of cell motility"],["GO%3A1902020","negative regulation of cilium-dependent cell motility"],["PANTHER%3APTHR28616","COILED-COIL DOMAIN-CONTAINING PROTEIN 125"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":1,"nb":10,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["TED%3AAF-A0A5T2E4X7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5T2E4X7-F1-model_v4_TED01"],["TED%3AAF-A0A5Y4BP44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Y4BP44-F1-model_v4_TED01"],["TED%3AAF-A0A623P6F3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A623P6F3-F1-model_v4_TED02"],["TED%3AAF-A0A721BDS7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A721BDS7-F1-model_v4_TED02"],["TED%3AAF-A0A743P324-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A743P324-F1-model_v4_TED01"],["TED%3AAF-A0A757VWR3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A757VWR3-F1-model_v4_TED02"]]},{"id":"CHEBI:18248","l":"iron atom","na":1,"nb":9,"a":[["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18248","requires Fe"],["proteintraitsmech%3AMETALPDB_FE_DINUCLEAR","dinuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_HEPTANUCLEAR","heptanuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_HEXANUCLEAR","hexanuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_MONONUCLEAR","mononuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_OCTANUCLEAR","octanuclear iron site"]]},{"id":"CHEBI:26710","l":"sodium chloride","na":9,"nb":1,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["TCDB%3A2.A.30","The Cation-Chloride Cotransporter (CCC) Family"]]},{"id":"GO:0009266","l":"response to temperature stimulus","na":1,"nb":9,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["GO%3A0071502","cellular response to temperature stimulus"],["GO%3A0016048","detection of temperature stimulus"],["GO%3A0009409","response to cold"],["GO%3A0009408","response to heat"],["GO%3A0009266","response to temperature stimulus"],["GO%3A0010378","temperature compensation of the circadian clock"]]},{"id":"GO:0043903","l":"regulation of biological process involved in symbiotic interaction","na":1,"nb":9,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["GO%3A0052372","modulation by symbiont of entry into host"],["GO%3A0140471","positive regulation of transepithelial migration of symbiont in host"],["GO%3A0043903","regulation of biological process involved in symbiotic interaction"],["GO%3A0075045","regulation of formation by symbiont of haustorium for nutrient acquisition from host"],["GO%3A1901252","regulation of intracellular transport of viral material"],["GO%3A0070949","regulation of neutrophil mediated killing of symbiont cell"]]},{"id":"NCBITaxon:1344414","l":"Trichoderma reesei RUT C-30","na":1,"nb":9,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["Pfam%3APF00457","Glycosyl hydrolases family 11"],["Pfam%3APF01341","Glycosyl hydrolases family 6"],["PROSITE%3APS00155","Cutinase, serine active site"],["PROSITE%3APS00776","Glycosyl hydrolases family 11 (GH11) active site signature 1"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"],["PROSITE%3APS00655","Glycosyl hydrolases family 6 signature 1"]]},{"id":"NCBITaxon:2903","l":"Emiliania huxleyi","na":1,"nb":9,"a":[["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"]],"b":[["TED%3AAF-A0A7S3RZJ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3RZJ4-F1-model_v4_TED01"],["TED%3AAF-A0A7S3W933-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3W933-F1-model_v4_TED01"],["TED%3AAF-A0A7S3W9Q3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3W9Q3-F1-model_v4_TED01"],["TED%3AAF-R1DPG1-F1-model_v4_TED01","TED highly-symmetric fold AF-R1DPG1-F1-model_v4_TED01"],["TED%3AAF-A0A7S3TQB6-F1-model_v4_TED02","TED novel fold AF-A0A7S3TQB6-F1-model_v4_TED02"],["TED%3AAF-R1BEB4-F1-model_v4_TED01","TED novel fold AF-R1BEB4-F1-model_v4_TED01"]]},{"id":"CHEBI:27698","l":"vanadium atom","na":1,"nb":8,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_V_DECANUCLEAR","decanuclear vanadium site"],["proteintraitsmech%3AMETALPDB_V_DINUCLEAR","dinuclear vanadium site"],["proteintraitsmech%3AMETALPDB_V_HEPTANUCLEAR","heptanuclear vanadium site"],["proteintraitsmech%3AMETALPDB_V_HEXANUCLEAR","hexanuclear vanadium site"],["proteintraitsmech%3AMETALPDB_V_MONONUCLEAR","mononuclear vanadium site"],["proteintraitsmech%3AMETALPDB_V_OCTANUCLEAR","octanuclear vanadium site"]]},{"id":"CHEBI:37166","l":"xylan","na":8,"nb":1,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"GO:0042436","l":"indole-containing compound catabolic process","na":1,"nb":8,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["GO%3A0042433","indole catabolic process"],["GO%3A0042436","indole-containing compound catabolic process"],["GO%3A0042344","indole glucosinolate catabolic process"],["GO%3A0046216","indole phytoalexin catabolic process"],["GO%3A0042437","indoleacetic acid catabolic process"],["GO%3A0006569","L-tryptophan catabolic process"]]},{"id":"NCBITaxon:4081","l":"Solanum lycopersicum","na":1,"nb":8,"a":[["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF02977","Carboxypeptidase A inhibitor"],["Pfam%3APF26410","GH family 5 beta-mannosidase-like"],["Pfam%3APF02496","ABA/WDS induced protein"],["Pfam%3APF17302","Family of unknown function (DUF5351)"],["PROSITE%3APS00502","Polygalacturonase active site"]]},{"id":"NCBITaxon:492670","l":"Bacillus velezensis","na":8,"nb":1,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"]],"b":[["TED%3AAF-A0A7S9EWF1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S9EWF1-F1-model_v4_TED02"]]},{"id":"CHEBI:25017","l":"leucine","na":1,"nb":7,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.78","The Branched Chain Amino Acid Exporter (LIV-E) Family"],["TCDB%3A2.A.76","The Resistance to Homoserine/Threonine (RhtB) Family"],["MCSA%3A172","isoaspartyl dipeptidase"]]},{"id":"CHEBI:29195","l":"cyanate","na":1,"nb":7,"a":[["Thiocyanate_Afipia_Thiobacillus_Bioreactor_Community.html","Thiocyanate-Degrading Afipia and Thiobacillus Bioreactor Community"]],"b":[["EC%3A1.8.2.7","thiocyanate desulfurase"],["EC%3A4.2.1.104","cyanase"],["RHEA%3A11120","cyanate + hydrogencarbonate + 3 H(+) = NH4(+) + 2 CO2"],["RHEA%3A18489","cyanate + hydrogencarbonate + H(+) = carbamate + CO2"],["RHEA%3A29231","cyanate(in) = cyanate(out)"],["RHEA%3A63880","thiocyanate + 2 Fe(III)-[cytochrome c] + H2O = cyanate + sulfur + 2 Fe(II)-[cytochrome c] + 2 H(+)"]]},{"id":"CHEBI:32379","l":"cis,cis-muconate","na":1,"nb":7,"a":[["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["EC%3A1.13.11.1","catechol 1,2-dioxygenase"],["EC%3A5.5.1.1","muconate cycloisomerase"],["RHEA%3A23852","catechol + O2 = cis,cis-muconate + 2 H(+)"],["RHEA%3A30031","(S)-muconolactone = cis,cis-muconate + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["MCSA%3A959","muconate cycloisomerase (anti)"]]},{"id":"GO:0009292","l":"horizontal gene transfer","na":1,"nb":7,"a":[["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"]],"b":[["GO%3A0009294","DNA-mediated transformation"],["GO%3A0009292","horizontal gene transfer"],["GO%3A0009293","transduction"],["GO%3A0009291","unidirectional conjugation"],["NCBIfam%3ATIGR04359","entry exclusion lipoprotein TrbK"],["NCBIfam%3ATIGR04361","entry exclusion protein TrbK"]]},{"id":"GO:0040011","l":"locomotion","na":1,"nb":7,"a":[["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"]],"b":[["GO%3A0033058","directional locomotion"],["GO%3A0060361","flight"],["GO%3A0040011","locomotion"],["GO%3A0031987","locomotion involved in locomotory behavior"],["GO%3A0071965","multicellular organismal locomotion"],["GO%3A0036268","swimming"]]},{"id":"GO:0075136","l":"response to host","na":1,"nb":7,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0075136","response to host"],["GO%3A0075139","response to host iron concentration"],["GO%3A0075000","response to host osmotic environment"],["GO%3A0075138","response to host oxygen tension environment"],["GO%3A0075293","response to host pH environment"],["GO%3A0075137","response to host redox environment"]]},{"id":"NCBITaxon:2030806","l":"Burkholderiaceae bacterium","na":1,"nb":7,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["TED%3AAF-A0A5C7NHS1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7NHS1-F1-model_v4_TED01"],["TED%3AAF-A0A5C7Q2S0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A5C7Q2S0-F1-model_v4_TED04"],["TED%3AAF-A0A7L5Y4H7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7L5Y4H7-F1-model_v4_TED02"],["TED%3AAF-A0A520VNE1-F1-model_v4_TED02","TED novel fold AF-A0A520VNE1-F1-model_v4_TED02"],["TED%3AAF-A0A522SAF0-F1-model_v4_TED01","TED novel fold AF-A0A522SAF0-F1-model_v4_TED01"],["TED%3AAF-A0A5C7NTX8-F1-model_v4_TED02","TED novel fold AF-A0A5C7NTX8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:5722","l":"Trichomonas vaginalis","na":1,"nb":7,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["TED%3AAF-A2F3M7-F1-model_v4_TED03","TED highly-symmetric fold AF-A2F3M7-F1-model_v4_TED03"],["TED%3AAF-A2HEW4-F1-model_v4_TED01","TED highly-symmetric fold AF-A2HEW4-F1-model_v4_TED01"],["TED%3AAF-A2DT59-F1-model_v4_TED01","TED novel fold AF-A2DT59-F1-model_v4_TED01"],["TED%3AAF-A2E7I9-F1-model_v4_TED02","TED novel fold AF-A2E7I9-F1-model_v4_TED02"],["TED%3AAF-A2F6I8-F1-model_v4_TED02","TED novel fold AF-A2F6I8-F1-model_v4_TED02"],["TED%3AAF-A2FV33-F1-model_v4_TED01","TED novel fold AF-A2FV33-F1-model_v4_TED01"]]},{"id":"CHEBI:32139","l":"sodium hydrogencarbonate","na":6,"nb":1,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["TCDB%3A2.A.31","The Anion Exchanger (AE) Family"]]},{"id":"GO:0009268","l":"response to pH","na":1,"nb":6,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["GO%3A0071467","cellular response to pH"],["GO%3A0036177","filamentous growth of a population of unicellular organisms in response to pH"],["GO%3A0010447","response to acidic pH"],["GO%3A0010446","response to alkaline pH"],["GO%3A0036176","response to neutral pH"],["GO%3A0009268","response to pH"]]},{"id":"GO:0009684","l":"indoleacetic acid biosynthetic process","na":6,"nb":1,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["GO%3A0009684","indoleacetic acid biosynthetic process"]]},{"id":"GO:0044409","l":"symbiont entry into host","na":1,"nb":6,"a":[["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"]],"b":[["GO%3A0120326","appressorium-mediated entry into host"],["GO%3A0140717","entry into host through the stromata"],["GO%3A0035635","entry of bacterium into host cell"],["GO%3A0046718","symbiont entry into host cell"],["GO%3A0044409","symbiont entry into host"],["Reactome%3AR-HSA-173107","Binding and entry of HIV virion"]]},{"id":"GO:0045733","l":"acetate catabolic process","na":6,"nb":1,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"],["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]],"b":[["GO%3A0045733","acetate catabolic process"]]},{"id":"GO:0140253","l":"cell-cell fusion","na":1,"nb":6,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["ComplexPortal%3ACPX-3089","EFF-1 complex"],["GO%3A0140253","cell-cell fusion"],["GO%3A0000755","cytogamy"],["GO%3A0000768","syncytium formation by cell-cell fusion"],["PANTHER%3APTHR37415","EFF-1A"],["PANTHER%3APTHR41686","MYOMIXER"]]},{"id":"GO:1900190","l":"regulation of single-species biofilm formation","na":1,"nb":6,"a":[["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["ComplexPortal%3ACPX-4681","YiaMNO tripartite ATP-independent periplasmic transporter complex"],["GO%3A1900191","negative regulation of single-species biofilm formation"],["GO%3A1900192","positive regulation of single-species biofilm formation"],["GO%3A1900190","regulation of single-species biofilm formation"],["GO%3A1900228","regulation of single-species biofilm formation in or on host organism"],["GO%3A1900231","regulation of single-species biofilm formation on inanimate substrate"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":6,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["Pfam%3APF03437","BtpA family"]]},{"id":"NCBITaxon:2268204","l":"Thermoplasmatales archaeon","na":1,"nb":6,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["TED%3AAF-A0A7C2AKF2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7C2AKF2-F1-model_v4_TED03"],["TED%3AAF-A0A7J2S4D8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7J2S4D8-F1-model_v4_TED03"],["TED%3AAF-A0A7J3TK18-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7J3TK18-F1-model_v4_TED02"],["TED%3AAF-A0A7C1E5G8-F1-model_v4_TED01","TED novel fold AF-A0A7C1E5G8-F1-model_v4_TED01"],["TED%3AAF-A0A842X889-F1-model_v4_TED01","TED novel fold AF-A0A842X889-F1-model_v4_TED01"],["TED%3AAF-A0A842X9F6-F1-model_v4_TED01","TED novel fold AF-A0A842X9F6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":1,"nb":6,"a":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"]],"b":[["Pfam%3APF14525","AraC-binding-like domain"],["Pfam%3APF06139","BphX-like"],["Pfam%3APF13340","Putative transposase of IS4/5 family (DUF4096)"],["Pfam%3APF11794","4-hydroxyphenylacetate 3-hydroxylase N terminal"],["Pfam%3APF03241","4-hydroxyphenylacetate 3-hydroxylase C terminal"],["TED%3AAF-A0A4S3H3T1-F1-model_v4_TED02","TED novel fold AF-A0A4S3H3T1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:4097","l":"Nicotiana tabacum","na":1,"nb":6,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"]],"b":[["Pfam%3APF02041","Auxin binding protein"],["Pfam%3APF12481","Aluminium induced protein"],["Pfam%3APF11995","Domain of unknown function (DUF3490)"],["Pfam%3APF07172","Glycine rich protein family"],["PROSITE%3APS00157","Ribulose bisphosphate carboxylase large chain active site"],["TED%3AAF-A0A1S4A696-F1-model_v4_TED01","TED novel fold AF-A0A1S4A696-F1-model_v4_TED01"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":1,"nb":6,"a":[["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["Pfam%3APF02929","Beta galactosidase small chain"],["Pfam%3APF27279","Fumarate--diaminopropanoate ligase C-terminal domain"],["Pfam%3APF18024","Helix-turn-helix domain"],["Pfam%3APF16353","Beta-galactosidase, domain 4"],["PROSITE%3APS00594","Aromatic amino acids permeases signature"],["PROSITE%3APS00853","Beta-eliminating lyases pyridoxal-phosphate attachment site"]]},{"id":"CHEBI:15702","l":"terephthalic acid","na":5,"nb":1,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["proteintraitsmech%3ABIOLIP_UB7","UB7-binding site"]]},{"id":"CHEBI:16828","l":"L-tryptophan","na":5,"nb":1,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["proteintraitsmech%3ABIOLIP_TRP","TRP-binding site"]]},{"id":"CHEBI:17439","l":"cyanocob(III)alamin","na":1,"nb":5,"a":[["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["EC%3A1.16.1.6","cyanocobalamin reductase"],["RHEA%3A16113","2 cob(II)alamin-[cyanocobalamin reductase] + 2 hydrogen cyanide + NADP(+) = 2 cyanocob(III)alamin + 2 apo-[cyanocobalamin reductase] + NADPH + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["TCDB%3A9.B.87","The Selenoprotein P Receptor (SelP-Receptor) Family"]]},{"id":"CHEBI:24875","l":"iron cation","na":1,"nb":5,"a":[["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_24875","requires iron cation"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.S.6","The Bacterial/Archaeal Nanocompartment Encapsulin Shell Protein1 (BANC-SP1) Family"],["TCDB%3A2.A.55","The Metal Ion (Mn2+-iron) Transporter (Nramp) Family"],["TCDB%3A5.B.1","The Phagocyte (gp91phox) NADPH Oxidase Family"]]},{"id":"CHEBI:27750","l":"ethyl acetate","na":1,"nb":5,"a":[["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["EC%3A2.3.1.268","ethanol O-acetyltransferase"],["EC%3A3.1.1.113","ethyl acetate hydrolase"],["RHEA%3A55972","ethanol + acetyl-CoA = ethyl acetate + CoA"],["RHEA%3A58148","ethyl acetate + H2O = ethanol + acetate + H(+)"],["proteintraitsmech%3ABIOLIP_EEE","EEE-binding site"]]},{"id":"CHEBI:30746","l":"benzoic acid","na":5,"nb":1,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_BEZ","BEZ-binding site"]]},{"id":"CHEBI:30769","l":"citric acid","na":5,"nb":1,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["proteintraitsmech%3ABIOLIP_CIT","CIT-binding site"]]},{"id":"CHEBI:30776","l":"hexanoic acid","na":5,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["proteintraitsmech%3ABIOLIP_6NA","6NA-binding site"]]},{"id":"CHEBI:33364","l":"platinum atom","na":1,"nb":5,"a":[["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_PT_DINUCLEAR","dinuclear platinum site"],["proteintraitsmech%3AMETALPDB_PT_HEXANUCLEAR","hexanuclear platinum site"],["proteintraitsmech%3AMETALPDB_PT_MONONUCLEAR","mononuclear platinum site"],["proteintraitsmech%3AMETALPDB_PT_TETRANUCLEAR","tetranuclear platinum site"],["proteintraitsmech%3AMETALPDB_PT_TRINUCLEAR","trinuclear platinum site"]]},{"id":"CHEBI:35899","l":"crotonate","na":1,"nb":5,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["EC%3A1.3.1.31","2-enoate reductase"],["RHEA%3A74903","(2E)-2-butenoate + ATP + H(+) = (2E)-but-2-enoyl-AMP + diphosphate"],["RHEA%3A74899","(2E)-2-butenoate + holo-[ACP] + ATP = (2E)-butenoyl-[ACP] + AMP + diphosphate"],["RHEA%3A10200","butanoate + NAD(+) = (2E)-2-butenoate + NADH + H(+)"],["RHEA%3A69172","N(6)-(2E)-butenoyl-L-lysyl-[protein] + H2O = (2E)-2-butenoate + L-lysyl-[protein]"]]},{"id":"CHEBI:37671","l":"(1->3)-beta-D-glucan","na":1,"nb":5,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"]],"b":[["EC%3A2.4.1.30","1,3-beta-oligoglucan phosphorylase"],["EC%3A2.4.1.34","1,3-beta-glucan synthase"],["EC%3A2.4.1.97","1,3-beta-D-glucan phosphorylase"],["RHEA%3A16041","[(1->3)-beta-D-glucosyl](n) + phosphate = [(1->3)-beta-D-glucosyl](n-1) + alpha-D-glucose 1-phosphate"],["RHEA%3A21476","[(1->3)-beta-D-glucosyl](n) + UDP-alpha-D-glucose = [(1->3)-beta-D-glucosyl](n+1) + UDP + H(+)"]]},{"id":"CHEBI:81666","l":"4-methyl-5-nitrocatechol","na":1,"nb":5,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["EC%3A1.14.12.24","2,4-dinitrotoluene dioxygenase"],["EC%3A1.14.13.210","4-methyl-5-nitrocatechol 5-monooxygenase"],["RHEA%3A46760","2,4-dinitrotoluene + NADH + O2 = 4-methyl-5-nitrocatechol + nitrite + NAD(+)"],["RHEA%3A48016","4-methyl-5-nitrocatechol + NADH + O2 = 2-hydroxy-5-methylquinone + nitrite + NAD(+) + H2O + H(+)"],["RHEA%3A48012","4-methyl-5-nitrocatechol + NADPH + O2 = 2-hydroxy-5-methylquinone + nitrite + NADP(+) + H2O + H(+)"]]},{"id":"CHEBI:86471","l":"pyrite","na":5,"nb":1,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"GO:0015945","l":"methanol metabolic process","na":1,"nb":5,"a":[["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"]],"b":[["GO%3A0019387","methanogenesis, from methanol"],["GO%3A0046169","methanol biosynthetic process"],["GO%3A0046170","methanol catabolic process"],["GO%3A0015945","methanol metabolic process"],["GO%3A0015946","methanol oxidation"]]},{"id":"GO:0098869","l":"cellular oxidant detoxification","na":1,"nb":5,"a":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["GO%3A0061692","cellular detoxification of hydrogen peroxide"],["GO%3A0098869","cellular oxidant detoxification"],["GO%3A0019430","removal of superoxide radicals"],["NCBIfam%3ANF009668","peroxiredoxin"],["Pfam%3APF24980","Response to Low Sulfur (LSU) family"]]},{"id":"NCBITaxon:10239","l":"Viruses","na":5,"nb":1,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_10239","Viruses orthologous groups (OrthoDB)"]]},{"id":"NCBITaxon:1598","l":"Limosilactobacillus reuteri","na":1,"nb":5,"a":[["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"]],"b":[["TED%3AAF-A0A6N1EMN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N1EMN7-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2V3C3-F1-model_v4_TED01","TED novel fold AF-A0A1Y2V3C3-F1-model_v4_TED01"],["TED%3AAF-A0A848BUA9-F1-model_v4_TED01","TED novel fold AF-A0A848BUA9-F1-model_v4_TED01"],["TED%3AAF-A0A855XJ18-F1-model_v4_TED01","TED novel fold AF-A0A855XJ18-F1-model_v4_TED01"],["TED%3AAF-Q6WUB1-F1-model_v4_TED03","TED novel fold AF-Q6WUB1-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1872427","l":"Alcanivorax sp.","na":1,"nb":5,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["TED%3AAF-A0A3C1HS87-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A3C1HS87-F1-model_v4_TED05"],["TED%3AAF-A0A2E8G0K2-F1-model_v4_TED02","TED novel fold AF-A0A2E8G0K2-F1-model_v4_TED02"],["TED%3AAF-A0A2E8G2P9-F1-model_v4_TED01","TED novel fold AF-A0A2E8G2P9-F1-model_v4_TED01"],["TED%3AAF-A0A3B8PCI6-F1-model_v4_TED01","TED novel fold AF-A0A3B8PCI6-F1-model_v4_TED01"],["TED%3AAF-A0A3C0M083-F1-model_v4_TED02","TED novel fold AF-A0A3C0M083-F1-model_v4_TED02"]]},{"id":"NCBITaxon:552","l":"Erwinia amylovora","na":1,"nb":5,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]],"b":[["Pfam%3APF09008","Head binding"],["Pfam%3APF11725","AvrE-family Type-III effector proteins (T3Es)"],["Pfam%3APF03608","PTS system enzyme II sorbitol-specific factor"],["Pfam%3APF07663","Sorbitol phosphotransferase enzyme II C-terminus"],["Pfam%3APF03612","Sorbitol phosphotransferase enzyme II N-terminus"]]},{"id":"NCBITaxon:74969","l":"Ferroplasma acidiphilum","na":5,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["TED%3AAF-A0A7K4FNL3-F1-model_v4_TED01","TED novel fold AF-A0A7K4FNL3-F1-model_v4_TED01"]]},{"id":"CHEBI:15603","l":"L-leucine","na":4,"nb":1,"a":[["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"]],"b":[["proteintraitsmech%3ABIOLIP_LEU","LEU-binding site"]]},{"id":"CHEBI:16109","l":"propane-1,3-diol","na":1,"nb":4,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["EC%3A1.1.1.202","1,3-propanediol dehydrogenase"],["RHEA%3A23188","propane-1,3-diol + NAD(+) = 3-hydroxypropanal + NADH + H(+)"],["RHEA%3A35599","propane-1,3-diol + NADP(+) = 3-hydroxypropanal + NADPH + H(+)"],["proteintraitsmech%3ABIOLIP_PDO","PDO-binding site"]]},{"id":"CHEBI:16646","l":"carbohydrate","na":4,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16646","requires pantothenate"]]},{"id":"CHEBI:16811","l":"methionine","na":4,"nb":1,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"]]},{"id":"CHEBI:16856","l":"glutathione","na":1,"nb":4,"a":[["Zymomonas_Ecoli_Exometabolomics_Obligate_Mutualism.html","Zymomonas-E. coli Exometabolomics-Designed Obligate Mutualism"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16856","requires glutathione"],["MCSA%3A359","lactoglutathione lyase"],["MCSA%3A32","lactoylglutathione lyase"],["proteintraitsmech%3ABIOLIP_GSH","GSH-binding site"]]},{"id":"CHEBI:17115","l":"L-serine","na":1,"nb":4,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["MCSA%3A609","alpha-lytic endopeptidase"],["MCSA%3A238","assemblin"],["MCSA%3A688","classical-complement-pathway C3/C5 convertase"],["proteintraitsmech%3ABIOLIP_SER","SER-binding site"]]},{"id":"CHEBI:17634","l":"D-glucose","na":4,"nb":1,"a":[["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"]],"b":[["MCSA%3A976","α‑glucosidase maltase-glucoamylase"]]},{"id":"CHEBI:18050","l":"L-glutamine","na":1,"nb":4,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["MCSA%3A596","deuterolysin"],["MCSA%3A477","picornain 3C"],["MCSA%3A763","picornain 3C"],["proteintraitsmech%3ABIOLIP_GLN","GLN-binding site"]]},{"id":"CHEBI:18059","l":"lipid","na":4,"nb":1,"a":[["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"],["Yarrowia_lipolytica_Division_of_Labor_Lipid_Consortium.html","Yarrowia lipolytica Division-of-Labor Lipid Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:22315","l":"alkaloid","na":1,"nb":4,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]]},{"id":"CHEBI:23681","l":"dibenzothiophene","na":1,"nb":4,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["EC%3A1.14.14.21","dibenzothiophene monooxygenase"],["RHEA%3A49072","dibenzothiophene + 2 FMNH2 + 2 O2 = dibenzothiophene 5,5-dioxide + 2 FMN + 2 H2O + 2 H(+)"],["RHEA%3A49076","dibenzothiophene + FMNH2 + O2 = dibenzothiophene 5-oxide + FMN + H2O + H(+)"],["MCSA%3A973","DszC protein"]]},{"id":"CHEBI:28984","l":"aluminium atom","na":1,"nb":4,"a":[["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_AL_DINUCLEAR","dinuclear aluminium site"],["proteintraitsmech%3AMETALPDB_AL_MONONUCLEAR","mononuclear aluminium site"],["proteintraitsmech%3AMETALPDB_AL_TETRANUCLEAR","tetranuclear aluminium site"],["proteintraitsmech%3AMETALPDB_AL_TRINUCLEAR","trinuclear aluminium site"]]},{"id":"CHEBI:33575","l":"carboxylic acid","na":1,"nb":4,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"]],"b":[["MCSA%3A105","aldehyde dehydrogenase (FAD-independent)"],["MCSA%3A803","aldehyde dehydrogenase (NAD+) (class 2)"],["MCSA%3A556","esterase (estA)"],["MCSA%3A755","lysophospholipase"]]},{"id":"CHEBI:34768","l":"furfural","na":1,"nb":4,"a":[["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"]],"b":[["RHEA%3A77519","furfural + hydrogen cyanide = (2R)-2-(furan-2-yl)-2-hydroxyacetonitrile"],["RHEA%3A76667","furfural + NAD(+) + H2O = 2-furoate + NADH + 2 H(+)"],["RHEA%3A76671","furfural + NADP(+) + H2O = 2-furoate + NADPH + 2 H(+)"],["TCDB%3A1.C.113","The Hemolysin III (Hly III) Family"]]},{"id":"CHEBI:490095","l":"esculetin","na":1,"nb":4,"a":[["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["EC%3A2.5.1.138","coumarin 8-geranyltransferase"],["RHEA%3A51864","esculetin + (2E)-geranyl diphosphate = 8-geranylesculetin + diphosphate"],["RHEA%3A68944","esculetin + S-adenosyl-L-methionine = isoscopoletin + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A68948","esculetin + S-adenosyl-L-methionine = scopoletin + S-adenosyl-L-homocysteine + H(+)"]]},{"id":"GO:0009809","l":"lignin biosynthetic process","na":1,"nb":4,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"]],"b":[["GO%3A1901063","guaiacyl lignin biosynthetic process"],["GO%3A0009809","lignin biosynthetic process"],["GO%3A1901060","p-hydroxyphenyl lignin biosynthetic process"],["GO%3A1901066","syringal lignin biosynthetic process"]]},{"id":"GO:0015694","l":"mercury ion transport","na":1,"nb":4,"a":[["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["GO%3A0015694","mercury ion transport"],["Pfam%3APF03203","MerC mercury resistance protein"],["Pfam%3APF05052","MerE protein"],["Pfam%3APF02411","MerT mercuric transport protein"]]},{"id":"GO:0015976","l":"carbon utilization","na":1,"nb":4,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["GO%3A0015976","carbon utilization"],["NCBIfam%3ANF010378","bifunctional acetaldehyde-CoA/alcohol dehydrogenase"],["NCBIfam%3ANF007756","carbonate dehydratase"],["InterPro%3AIPR015892","Carbonic anhydrase, prokaryotic-like, conserved site"]]},{"id":"GO:0061692","l":"cellular detoxification of hydrogen peroxide","na":1,"nb":4,"a":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["ComplexPortal%3ACPX-4742","Catalase complex"],["ComplexPortal%3ACPX-4767","Catalase complex"],["ComplexPortal%3ACPX-4768","Catalase complex"],["GO%3A0061692","cellular detoxification of hydrogen peroxide"]]},{"id":"GO:1902074","l":"response to salt","na":1,"nb":4,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["GO%3A1902075","cellular response to salt"],["GO%3A1902074","response to salt"],["GO%3A1903935","response to sodium arsenite"],["GO%3A1904383","response to sodium phosphate"]]},{"id":"NCBITaxon:1401","l":"Paenibacillus lautus","na":1,"nb":4,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"]],"b":[["Pfam%3APF18448","Carbohydrate binding domain"],["Pfam%3APF12891","Glycoside hydrolase family 44"],["TED%3AAF-A0A328VZ83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A328VZ83-F1-model_v4_TED01"],["TED%3AAF-A0A385TU82-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A385TU82-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1451","l":"Paenibacillus amylolyticus","na":1,"nb":4,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"]],"b":[["Pfam%3APF03211","Pectate lyase"],["TED%3AAF-A0A117I1X0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A117I1X0-F1-model_v4_TED01"],["TED%3AAF-A0A1R1DDF3-F1-model_v4_TED01","TED novel fold AF-A0A1R1DDF3-F1-model_v4_TED01"],["TED%3AAF-A0A4V3B7H8-F1-model_v4_TED01","TED novel fold AF-A0A4V3B7H8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1501","l":"Clostridium pasteurianum","na":1,"nb":4,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["Pfam%3APF22609","Iron hydrogenase 1-like, iron-sulfur centre-binding domain"],["Pfam%3APF09582","Iron only nitrogenase protein AnfO (AnfO_nitrog)"],["PROSITE%3APS00746","NifH/frxC family signature 1"],["PROSITE%3APS00699","Nitrogenases component 1 alpha and beta subunits signature 1"]]},{"id":"NCBITaxon:1534","l":"Clostridium kluyveri","na":4,"nb":1,"a":[["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["TED%3AAF-A0A1L5FEG9-F1-model_v4_TED01","TED novel fold AF-A0A1L5FEG9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1590","l":"Lactiplantibacillus plantarum","na":4,"nb":1,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Pichia_Lactiplantibacillus_CCMA_Plant_Beverage_Coculture.html","Pichia-Lactiplantibacillus CCMA Plant Beverage Coculture"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["Pfam%3APF06314","Acetoacetate decarboxylase (ADC)"]]},{"id":"NCBITaxon:243164","l":"Dehalococcoides mccartyi 195","na":4,"nb":1,"a":[["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["Pfam%3APF13486","Reductive dehalogenase subunit"]]},{"id":"NCBITaxon:258594","l":"Rhodopseudomonas palustris CGA009","na":1,"nb":4,"a":[["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"]],"b":[["Pfam%3APF01322","Cytochrome C'"],["PROSITE%3APS00969","Antenna complexes beta subunits signature"],["PROSITE%3APS00936","Ribosomal protein L35 signature"],["PROSITE%3APS01181","Ribosomal protein S21 signature"]]},{"id":"NCBITaxon:28037","l":"Streptococcus mitis","na":1,"nb":4,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["Pfam%3APF03047","COMC family"],["TED%3AAF-A0A1X1L9U5-F1-model_v4_TED02","TED novel fold AF-A0A1X1L9U5-F1-model_v4_TED02"],["TED%3AAF-A0A428B8X0-F1-model_v4_TED01","TED novel fold AF-A0A428B8X0-F1-model_v4_TED01"],["TED%3AAF-A0A6L5H4V3-F1-model_v4_TED03","TED novel fold AF-A0A6L5H4V3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:285","l":"Comamonas testosteroni","na":1,"nb":4,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["Pfam%3APF02900","Catalytic LigB subunit of aromatic ring-opening dioxygenase"],["Pfam%3APF19301","LigXa C-terminal domain like"],["TED%3AAF-A0A096HND0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A096HND0-F1-model_v4_TED01"],["TED%3AAF-A0A1Y1JCM1-F1-model_v4_TED01","TED novel fold AF-A0A1Y1JCM1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:34305","l":"Lotus japonicus","na":1,"nb":4,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["Pfam%3APF06241","Castor and Pollux, part of voltage-gated ion channel"],["Pfam%3APF23654","E3 ubiquitin-protein ligase LIN-like, ARM repeat"],["Pfam%3APF23628","Putative E3 ubiquitin-protein ligase LIN, ARM-like domain"],["Pfam%3APF23568","E3 ubiquitin-protein ligase LIN-like, ARM repeat"]]},{"id":"NCBITaxon:40520","l":"Blautia obeum","na":1,"nb":4,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]],"b":[["TED%3AAF-A0A174PFW9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A174PFW9-F1-model_v4_TED01"],["TED%3AAF-A0A174PHS9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A174PHS9-F1-model_v4_TED02"],["TED%3AAF-A0A415LGR0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A415LGR0-F1-model_v4_TED01"],["TED%3AAF-A0A414KHY7-F1-model_v4_TED02","TED novel fold AF-A0A414KHY7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":1,"nb":4,"a":[["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["Pfam%3APF11720","Peptidase inhibitor I78 family"],["Pfam%3APF12296","Hydrophobic surface binding protein A"],["TED%3AAF-A0A3M7JGA1-F1-model_v4_TED02","TED novel fold AF-A0A3M7JGA1-F1-model_v4_TED02"],["TED%3AAF-A0A7G5JNS3-F1-model_v4_TED03","TED novel fold AF-A0A7G5JNS3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:863","l":"Syntrophomonas wolfei","na":4,"nb":1,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["TED%3AAF-A0A354YY78-F1-model_v4_TED03","TED novel fold AF-A0A354YY78-F1-model_v4_TED03"]]},{"id":"CHEBI:147155","l":"","na":3,"nb":1,"a":[["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["RHEA%3A64016","alpha-L-Fuc-(1->2)-beta-D-Gal-(1->4)-D-Glc + GDP-beta-L-fucose = alpha-L-Fuc-(1->2)-beta-D-Gal-(1->4)-[alpha-L-Fuc-(1->3)]-D-Glc + GDP + H(+)"]]},{"id":"CHEBI:15356","l":"cysteine","na":3,"nb":1,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:16015","l":"L-glutamic acid","na":1,"nb":3,"a":[["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]],"b":[["MCSA%3A747","gamma-glutamyl hydrolase"],["proteintraitsmech%3ABIOLIP_GGL","GGL-binding site"],["proteintraitsmech%3ABIOLIP_GLU","GLU-binding site"]]},{"id":"CHEBI:16170","l":"mercury(0)","na":1,"nb":3,"a":[["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["EC%3A1.16.1.1","mercury(II) reductase"],["RHEA%3A23856","Hg + NADP(+) + H(+) = Hg(2+) + NADPH"],["MCSA%3A277","mercury(II) reductase"]]},{"id":"CHEBI:16467","l":"L-arginine","na":1,"nb":3,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["MCSA%3A688","classical-complement-pathway C3/C5 convertase"],["MCSA%3A425","plasmin"],["MCSA%3A798","t-plasminogen activator"]]},{"id":"CHEBI:16982","l":"(R,R)-butane-2,3-diol","na":1,"nb":3,"a":[["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"]],"b":[["EC%3A1.1.1.4","(R,R)-butanediol dehydrogenase"],["RHEA%3A24340","(R,R)-butane-2,3-diol + NAD(+) = (R)-acetoin + NADH + H(+)"],["proteintraitsmech%3ABIOLIP_BU3","BU3-binding site"]]},{"id":"CHEBI:17203","l":"L-proline","na":1,"nb":3,"a":[["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["MCSA%3A403","astacin"],["MCSA%3A379","Xaa-Pro aminopeptidase"],["proteintraitsmech%3ABIOLIP_PRO","PRO-binding site"]]},{"id":"CHEBI:17561","l":"L-cysteine","na":3,"nb":1,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["proteintraitsmech%3ABIOLIP_CYS","CYS-binding site"]]},{"id":"CHEBI:2365","l":"(+)-abscisic acid","na":1,"nb":3,"a":[["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.17","The Proton-dependent Oligopeptide Transporter (POT/PTR) Family"],["proteintraitsmech%3ABIOLIP_A8S","A8S-binding site"]]},{"id":"CHEBI:28805","l":"cis-1,2-dichloroethene","na":1,"nb":3,"a":[["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"]],"b":[["RHEA%3A67992","trichloroethene + AH2 = (Z)-1,2-dichloroethene + chloride + A + H(+)"],["RHEA%3A67996","(Z)-1,2-dichloroethene + AH2 = chloroethene + chloride + A + H(+)"],["proteintraitsmech%3ABIOLIP_JYF","JYF-binding site"]]},{"id":"CHEBI:30803","l":"isophthalate(2-)","na":1,"nb":3,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["EC%3A6.2.1.58","isophthalate--CoA ligase"],["RHEA%3A61636","isophthalate + ATP + CoA = isophthalyl-CoA + AMP + diphosphate"],["TCDB%3A2.A.80","The Tricarboxylate Transporter (TTT) Family"]]},{"id":"CHEBI:31725","l":"isoamyl acetate","na":1,"nb":3,"a":[["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["EC%3A3.1.1.112","isoamyl acetate esterase"],["RHEA%3A65236","3-methylbutan-1-ol + acetyl-CoA = 3-methylbutyl acetate + CoA"],["RHEA%3A60436","3-methylbutyl acetate + H2O = 3-methylbutan-1-ol + acetate + H(+)"]]},{"id":"CHEBI:32816","l":"pyruvic acid","na":1,"nb":3,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_32816","requires pyruvic acid"],["MCSA%3A449","cystathionine beta-lyase"],["proteintraitsmech%3ABIOLIP_PYR","PYR-binding site"]]},{"id":"CHEBI:32879","l":"propane","na":1,"nb":3,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["EC%3A1.14.13.227","propane 2-monooxygenase"],["RHEA%3A49992","propane + NADH + O2 + H(+) = propan-2-ol + NAD(+) + H2O"],["proteintraitsmech%3ABIOLIP_TME","TME-binding site"]]},{"id":"CHEBI:33229","l":"vitamin (role)","na":1,"nb":3,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.21","The Solute:Sodium Symporter (SSS) Family"]]},{"id":"CHEBI:33359","l":"rhodium atom","na":1,"nb":3,"a":[["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_RH_DINUCLEAR","dinuclear rhodium site"],["proteintraitsmech%3AMETALPDB_RH_MONONUCLEAR","mononuclear rhodium site"],["proteintraitsmech%3AMETALPDB_RH_TRINUCLEAR","trinuclear rhodium site"]]},{"id":"CHEBI:33377","l":"dysprosium atom","na":1,"nb":3,"a":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_33377","requires Tb"],["proteintraitsmech%3AMETALPDB_DY_DINUCLEAR","dinuclear dysprosium site"],["proteintraitsmech%3AMETALPDB_DY_MONONUCLEAR","mononuclear dysprosium site"]]},{"id":"CHEBI:35780","l":"phosphate ion","na":3,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"]]},{"id":"CHEBI:412516","l":"5-hydroxymethylfurfural","na":1,"nb":3,"a":[["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"]],"b":[["EC%3A1.1.3.47","5-(hydroxymethyl)furfural oxidase"],["RHEA%3A32683","5-hydroxymethylfurfural + 3 O2 + 2 H2O = 2,5-dicarboxyfuran + 3 H2O2 + 2 H(+)"],["RHEA%3A43504","5-hydroxymethylfurfural + O2 = 2,5-diformylfuran + H2O2"]]},{"id":"CHEBI:49631","l":"gallium atom","na":1,"nb":3,"a":[["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_GA_DINUCLEAR","dinuclear gallium site"],["proteintraitsmech%3AMETALPDB_GA_MONONUCLEAR","mononuclear gallium site"],["proteintraitsmech%3AMETALPDB_GA_TETRANUCLEAR","tetranuclear gallium site"]]},{"id":"CHEBI:50699","l":"oligosaccharide","na":1,"nb":3,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"]]},{"id":"CHEBI:920","l":"2,4-dinitrotoluene","na":1,"nb":3,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["EC%3A1.14.12.24","2,4-dinitrotoluene dioxygenase"],["RHEA%3A80191","2,4-dinitrotoluene + 2 NADPH + 2 H(+) = 4-hydroxylamino-2-nitrotoluene + 2 NADP(+) + H2O"],["RHEA%3A46760","2,4-dinitrotoluene + NADH + O2 = 4-methyl-5-nitrocatechol + nitrite + NAD(+)"]]},{"id":"GO:0005982","l":"starch metabolic process","na":1,"nb":3,"a":[["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"]],"b":[["GO%3A0019252","starch biosynthetic process"],["GO%3A0005983","starch catabolic process"],["GO%3A0005982","starch metabolic process"]]},{"id":"GO:0019563","l":"glycerol catabolic process","na":1,"nb":3,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["GO%3A0019588","anaerobic glycerol catabolic process"],["GO%3A0019563","glycerol catabolic process"],["NCBIfam%3ANF008478","dihydroxyacetone kinase phosphoryl donor subunit DhaM"]]},{"id":"GO:0044002","l":"acquisition of nutrients from host","na":1,"nb":3,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0044002","acquisition of nutrients from host"],["GO%3A0044847","iron acquisition from host"],["GO%3A0052091","modulation of nutrient release by host"]]},{"id":"GO:1902422","l":"hydrogen biosynthetic process","na":1,"nb":3,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["GO%3A1902422","hydrogen biosynthetic process"],["GO%3A0044817","hydrogen generation via biophotolysis"],["GO%3A0044835","hydrogen generation via nitrogenase"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":1,"nb":3,"a":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["Pfam%3APF05258","Dna[CI] antecedent, DciA"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"],["TED%3AAF-Q0RZW9-F1-model_v4_TED03","TED highly-symmetric fold AF-Q0RZW9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":1,"nb":3,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF08130","Type A lantibiotic family"],["Pfam%3APF04738","Lantibiotic dehydratase, N terminus"]]},{"id":"NCBITaxon:1587","l":"Lactobacillus helveticus","na":1,"nb":3,"a":[["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"]],"b":[["Pfam%3APF18008","Replication initiator protein A C-terminal domain"],["Pfam%3APF20956","Domain of unknown function (DUF4931) C-terminal domain"],["Pfam%3APF17312","Bacteriocin helveticin-J"]]},{"id":"NCBITaxon:1589","l":"Lactiplantibacillus pentosus","na":1,"nb":3,"a":[["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["PROSITE%3APS60002","Phosphoketolase signature 1"],["PROSITE%3APS60003","Phosphoketolase signature 2"],["TED%3AAF-A0A2K9I3V8-F1-model_v4_TED01","TED novel fold AF-A0A2K9I3V8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1624","l":"Ligilactobacillus salivarius","na":1,"nb":3,"a":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]],"b":[["TED%3AAF-A0A7X2SS58-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X2SS58-F1-model_v4_TED01"],["TED%3AAF-A0A089QBS8-F1-model_v4_TED02","TED novel fold AF-A0A089QBS8-F1-model_v4_TED02"],["TED%3AAF-A0A2A2XCA8-F1-model_v4_TED01","TED novel fold AF-A0A2A2XCA8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1680","l":"Bifidobacterium adolescentis","na":1,"nb":3,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]],"b":[["TED%3AAF-A0A1X2Z2R7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1X2Z2R7-F1-model_v4_TED02"],["TED%3AAF-A0A1X2Z7X6-F1-model_v4_TED02","TED novel fold AF-A0A1X2Z7X6-F1-model_v4_TED02"],["TED%3AAF-A0A1X2ZNR8-F1-model_v4_TED04","TED novel fold AF-A0A1X2ZNR8-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":3,"nb":1,"a":[["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["TED%3AAF-A0A415C3I8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A415C3I8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1708","l":"Cellulomonas fimi","na":1,"nb":3,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["Pfam%3APF00553","Cellulose binding domain"],["PROSITE%3APS00561","CBM2a (carbohydrate-binding type-2) domain signature"],["PROSITE%3APS00591","Glycosyl hydrolases family 10 (GH10) active site"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":3,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]],"b":[["TED%3AAF-A0A142EAM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142EAM9-F1-model_v4_TED03"],["TED%3AAF-A0A1Q3DTY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3DTY6-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3DNE3-F1-model_v4_TED01","TED novel fold AF-A0A1Q3DNE3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:192","l":"Azospirillum brasilense","na":1,"nb":3,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"]],"b":[["Pfam%3APF24931","ACR9-like, ACT-like domain"],["Pfam%3APF27444","Uridylyltransferase GlnD third domain"],["TED%3AAF-A0A235H319-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A235H319-F1-model_v4_TED01"]]},{"id":"NCBITaxon:198620","l":"Pseudomonas koreensis","na":3,"nb":1,"a":[["FourSpecies_Aerobic_Lung_Microbiome_Model.html","Four-Species Aerobic Lung Microbiome Model"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["TED%3AAF-A0A1G7ALV2-F1-model_v4_TED02","TED novel fold AF-A0A1G7ALV2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:203124","l":"Trichodesmium erythraeum IMS101","na":1,"nb":3,"a":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["Pfam%3APF06206","CpeT/CpcT family (DUF1001)"],["Pfam%3APF18460","Heterocyst differentiation regulator C-terminal Hood domain"],["TED%3AAF-Q10WG6-F1-model_v4_TED05","TED highly-symmetric fold AF-Q10WG6-F1-model_v4_TED05"]]},{"id":"NCBITaxon:216816","l":"Bifidobacterium longum","na":3,"nb":1,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["TED%3AAF-A0A413ACI9-F1-model_v4_TED01","TED novel fold AF-A0A413ACI9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2208","l":"Methanosarcina barkeri","na":3,"nb":1,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["Pfam%3APF09505","Dimethylamine methyltransferase (Dimeth_PyL)"]]},{"id":"NCBITaxon:33039","l":"Mediterraneibacter torques","na":1,"nb":3,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["TED%3AAF-A0A174ZX33-F1-model_v4_TED01","TED novel fold AF-A0A174ZX33-F1-model_v4_TED01"],["TED%3AAF-A0A6N3EHF6-F1-model_v4_TED02","TED novel fold AF-A0A6N3EHF6-F1-model_v4_TED02"],["TED%3AAF-A0A6N3EHH7-F1-model_v4_TED01","TED novel fold AF-A0A6N3EHH7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":1,"nb":3,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"],["TED%3AAF-A0A7H8I034-F1-model_v4_TED01","TED novel fold AF-A0A7H8I034-F1-model_v4_TED01"]]},{"id":"NCBITaxon:582","l":"Morganella morganii","na":1,"nb":3,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["PROSITE%3APS01157","Class A bacterial acid phosphatases signature"],["TED%3AAF-A0A2C5TPE5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2C5TPE5-F1-model_v4_TED01"],["TED%3AAF-A0A0A2RJY1-F1-model_v4_TED02","TED novel fold AF-A0A0A2RJY1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:70448","l":"Ostreococcus tauri","na":1,"nb":3,"a":[["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"]],"b":[["TED%3AAF-A0A090M1U3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A090M1U3-F1-model_v4_TED02"],["TED%3AAF-A0A090M3Z3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A090M3Z3-F1-model_v4_TED01"],["TED%3AAF-A0A1Y5INV9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y5INV9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:831","l":"Butyrivibrio fibrisolvens","na":1,"nb":3,"a":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"]],"b":[["Pfam%3APF16738","Starch-binding module 26"],["Pfam%3APF18318","Glutamine synthetase C-terminal domain"],["Pfam%3APF12437","Glutamine synthetase type III N terminal"]]},{"id":"NCBITaxon:94130","l":"Rhizophagus clarus","na":1,"nb":3,"a":[["Mediterranean_AM_Fungal_SixSpecies_SynCom.html","Mediterranean AM Fungal Six-Species SynCom"]],"b":[["TED%3AAF-A0A2Z6R1J4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z6R1J4-F1-model_v4_TED01"],["TED%3AAF-A0A2Z6SKM0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z6SKM0-F1-model_v4_TED01"],["TED%3AAF-A0A2Z6S4T9-F1-model_v4_TED04","TED novel fold AF-A0A2Z6S4T9-F1-model_v4_TED04"]]},{"id":"CHEBI:134612","l":"staphyloferrin B","na":1,"nb":2,"a":[["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_134612","requires staphyloferrin B"],["proteintraitsmech%3ABIOLIP_SE8","SE8-binding site"]]},{"id":"CHEBI:15729","l":"L-ornithine","na":1,"nb":2,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["MCSA%3A12","ornithine carbamoyltransferase"],["proteintraitsmech%3ABIOLIP_ORN","ORN-binding site"]]},{"id":"CHEBI:15904","l":"long-chain fatty acid","na":1,"nb":2,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:15940","l":"nicotinic acid","na":1,"nb":2,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15940","requires nicotinic acid"],["proteintraitsmech%3ABIOLIP_NIO","NIO-binding site"]]},{"id":"CHEBI:15982","l":"cob(I)alamin","na":2,"nb":1,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15982","requires cob(I)alamin"]]},{"id":"CHEBI:16830","l":"methylamine","na":2,"nb":1,"a":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"]],"b":[["proteintraitsmech%3ABIOLIP_NME","NME-binding site"]]},{"id":"CHEBI:16914","l":"salicylic acid","na":2,"nb":1,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"]],"b":[["proteintraitsmech%3ABIOLIP_SAL","SAL-binding site"]]},{"id":"CHEBI:17747","l":"bis(2-ethylhexyl) phthalate","na":1,"nb":2,"a":[["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"]],"b":[["EC%3A3.1.1.60","bis(2-ethylhexyl)phthalate esterase"],["RHEA%3A15529","bis(2-ethylhexyl)phthalate + H2O = 2-ethylhexan-1-ol + 2-ethylhexyl phthalate + H(+)"]]},{"id":"CHEBI:179252","l":"4-Ethyl-2-methoxyphenol","na":2,"nb":1,"a":[["Sichuan_Shai_Vinegar_Yeast_Flavor_SynCom.html","Sichuan Shai Vinegar Yeast Flavor SynCom"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["RHEA%3A73959","2-methoxy-4-vinylphenol + NADH + H(+) = 4-ethyl-2-methoxyphenol + NAD(+)"]]},{"id":"CHEBI:18053","l":"1-aminocyclopropanecarboxylic acid","na":2,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["proteintraitsmech%3ABIOLIP_1AC","1AC-binding site"]]},{"id":"CHEBI:229785","l":"neodymium(3+)","na":2,"nb":1,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_ND","ND-binding site"]]},{"id":"CHEBI:23530","l":"cytokinin","na":1,"nb":2,"a":[["Staged_Cattle_Manure_Ensifer_Bacillus_SynCom.html","Staged Ensifer-Bacillus Cattle-Manure Wastewater SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"]]},{"id":"CHEBI:28073","l":"chromium atom","na":1,"nb":2,"a":[["Meghalaya_Bacillus_Consortia_A22ED9.html","Meghalaya Bacillus Consortia-A22ED9"]],"b":[["proteintraitsmech%3AMETALPDB_CR_DINUCLEAR","dinuclear chromium site"],["proteintraitsmech%3AMETALPDB_CR_MONONUCLEAR","mononuclear chromium site"]]},{"id":"CHEBI:28757","l":"fructose","na":1,"nb":2,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["GO%3A0070061","fructose binding"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:28817","l":"dodecane","na":1,"nb":2,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["RHEA%3A76739","dodecane + reduced [NADPH--hemoprotein reductase] + O2 = 5-dodecanol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["proteintraitsmech%3ABIOLIP_D12","D12-binding site"]]},{"id":"CHEBI:28837","l":"octanoic acid","na":2,"nb":1,"a":[["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["proteintraitsmech%3ABIOLIP_OCA","OCA-binding site"]]},{"id":"CHEBI:29016","l":"arginine","na":1,"nb":2,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:29073","l":"L-ascorbic acid","na":1,"nb":2,"a":[["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29073","requires L-ascorbic acid"],["proteintraitsmech%3ABIOLIP_ASC","ASC-binding site"]]},{"id":"CHEBI:29681","l":"surfactin","na":1,"nb":2,"a":[["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]]},{"id":"CHEBI:30832","l":"adipic acid","na":1,"nb":2,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["proteintraitsmech%3ABIOLIP_0L1","0L1-binding site"]]},{"id":"CHEBI:32588","l":"potassium chloride","na":2,"nb":1,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"]],"b":[["TCDB%3A2.A.30","The Cation-Chloride Cotransporter (CCC) Family"]]},{"id":"CHEBI:33284","l":"nutrient","na":2,"nb":1,"a":[["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["TCDB%3A1.A.91","The Cytoadherence-linked Asexual Protein 3.2 of Plasmodium falciparum (Clag3) Family"]]},{"id":"CHEBI:33848","l":"polycyclic arene","na":2,"nb":1,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Pelagerythrobacter_Salinicola_PES_Pyrene_Degradation_SynCom.html","Pelagerythrobacter-Salinicola PES Pyrene-Degradation SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:33913","l":"corrinoid","na":2,"nb":1,"a":[["Soil_Corrinoid_B12_Reservoir_Community.html","Soil Corrinoid Reservoir Microbial Community"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_33913","requires corrinoid"]]},{"id":"CHEBI:35381","l":"monosaccharide","na":2,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:35404","l":"chromate(2-)","na":2,"nb":1,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"]],"b":[["RHEA%3A32819","chromate(in) = chromate(out)"]]},{"id":"CHEBI:36219","l":"alpha-lactose","na":2,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"]],"b":[["RHEA%3A84479","alpha-lactose = lactulose"]]},{"id":"CHEBI:40646","l":"autoinducer-2","na":1,"nb":2,"a":[["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.86","The Autoinducer-2 Exporter (AI-2E) Family (Formerly the PerM Family, TC #9.B.22)"]]},{"id":"CHEBI:42111","l":"(R)-lactic acid","na":2,"nb":1,"a":[["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_LAC","LAC-binding site"]]},{"id":"CHEBI:44534","l":"N-(3-oxododecanoyl)-L-homoserine lactone","na":2,"nb":1,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["proteintraitsmech%3ABIOLIP_OHN","OHN-binding site"]]},{"id":"CHEBI:46442","l":"vanadate(3-)","na":2,"nb":1,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["proteintraitsmech%3ABIOLIP_VO4","VO4-binding site"]]},{"id":"CHEBI:47381","l":"diclofenac","na":1,"nb":2,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["proteintraitsmech%3ABIOLIP_DIF","DIF-binding site"]]},{"id":"CHEBI:49544","l":"chromium(3+)","na":1,"nb":2,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["RHEA%3A44372","Cr(6+) + 2 NADH + O2 = Cr(3+) + superoxide + 2 NAD(+) + 2 H(+)"],["RHEA%3A44368","Cr(6+) + 2 NADPH + O2 = Cr(3+) + superoxide + 2 NADP(+) + 2 H(+)"]]},{"id":"CHEBI:53650","l":"guaiacylglycerol-beta-guaiacyl ether","na":1,"nb":2,"a":[["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["EC%3A1.11.1.16","versatile peroxidase"],["RHEA%3A22396","1-(4-hydroxy-3-methoxyphenyl)-2-(2-methoxyphenoxy)propane-1,3-diol + H2O2 = guaiacol + vanillin + glycolaldehyde + H2O"]]},{"id":"CHEBI:61448","l":"isopropyl beta-D-thiogalactopyranoside","na":1,"nb":2,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_IPT","IPT-binding site"]]},{"id":"CHEBI:82420","l":"1-chloro-3-nitrobenzene","na":1,"nb":2,"a":[["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]],"b":[["RHEA%3A57808","1-chloro-3-nitrobenzene + NADH + O2 = 3-chlorocatechol + nitrite + NAD(+)"],["RHEA%3A57804","1-chloro-3-nitrobenzene + NADH + O2 = 4-chlorocatechol + nitrite + NAD(+)"]]},{"id":"CHEBI:84046","l":"pyoverdine","na":1,"nb":2,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_84046","requires pyoverdine"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"GO:0006568","l":"obsolete L-tryptophan metabolic process","na":1,"nb":2,"a":[["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"]],"b":[["Pfam%3APF00697","N-(5'phosphoribosyl)anthranilate (PRA) isomerase"],["Pfam%3APF00290","Tryptophan synthase alpha chain"]]},{"id":"GO:0006995","l":"cellular response to nitrogen starvation","na":1,"nb":2,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["GO%3A0006995","cellular response to nitrogen starvation"],["GO%3A0031142","induction of conjugation upon nitrogen starvation"]]},{"id":"GO:0010025","l":"wax biosynthetic process","na":1,"nb":2,"a":[["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"]],"b":[["GO%3A0010025","wax biosynthetic process"],["Reactome%3AR-HSA-9640463","Wax biosynthesis"]]},{"id":"GO:0019417","l":"sulfur oxidation","na":1,"nb":2,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["GO%3A0019417","sulfur oxidation"],["NCBIfam%3ATIGR04484","sulfur oxidation c-type cytochrome SoxA"]]},{"id":"GO:0019676","l":"ammonia assimilation cycle","na":1,"nb":2,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]],"b":[["ComplexPortal%3ACPX-5041","Glutamate synthase [NADPH] complex"],["GO%3A0019676","ammonia assimilation cycle"]]},{"id":"GO:0046359","l":"butyrate catabolic process","na":2,"nb":1,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["GO%3A0046359","butyrate catabolic process"]]},{"id":"GO:0071466","l":"cellular response to xenobiotic stimulus","na":1,"nb":2,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["ComplexPortal%3ACPX-2121","EmrE multidrug transporter complex"],["GO%3A0071466","cellular response to xenobiotic stimulus"]]},{"id":"GO:0141082","l":"symbiont-mediated detoxification of host-generated reactive oxygen species","na":1,"nb":2,"a":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["GO%3A0141082","symbiont-mediated detoxification of host-generated reactive oxygen species"],["Reactome%3AR-HSA-1222538","Tolerance by Mtb to nitric oxide produced by macrophages"]]},{"id":"NCBITaxon:105841","l":"Anaerostipes caccae","na":2,"nb":1,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["TED%3AAF-A0A6N2WKG2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N2WKG2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1245","l":"Leuconostoc mesenteroides","na":1,"nb":2,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["Pfam%3APF08951","Bacteriocin immunity protein family"],["TED%3AAF-A0A8B5R1X5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B5R1X5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1249","l":"Weissella paramesenteroides","na":1,"nb":2,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["Pfam%3APF01874","ATP:dephospho-CoA triphosphoribosyl transferase"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"]]},{"id":"NCBITaxon:1303","l":"Streptococcus oralis","na":1,"nb":2,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["Pfam%3APF03047","COMC family"],["TED%3AAF-A0A139PPG4-F1-model_v4_TED02","TED novel fold AF-A0A139PPG4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1317","l":"Streptococcus downei","na":2,"nb":1,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"],["FourSpecies_Aerobic_Lung_Microbiome_Model.html","Four-Species Aerobic Lung Microbiome Model"]],"b":[["Pfam%3APF13199","Glycosyl hydrolase family 66"]]},{"id":"NCBITaxon:1335","l":"Streptococcus equinus","na":2,"nb":1,"a":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"]],"b":[["TED%3AAF-A0A1V0GLT7-F1-model_v4_TED01","TED novel fold AF-A0A1V0GLT7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1582","l":"Lacticaseibacillus casei","na":1,"nb":2,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["Pfam%3APF07475","HPr Serine kinase C-terminal domain"],["PROSITE%3APS01163","Galactose-1-phosphate uridyl transferase family 2 signature"]]},{"id":"NCBITaxon:158836","l":"Enterobacter hormaechei","na":1,"nb":2,"a":[["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["TED%3AAF-A0A431SE22-F1-model_v4_TED01","TED novel fold AF-A0A431SE22-F1-model_v4_TED01"],["TED%3AAF-A0A8B5ZRS3-F1-model_v4_TED01","TED novel fold AF-A0A8B5ZRS3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1597","l":"Lacticaseibacillus paracasei","na":1,"nb":2,"a":[["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["Pfam%3APF09136","Glucodextranase, domain B"],["Pfam%3APF08109","Lactocin 705 family"]]},{"id":"NCBITaxon:1655","l":"Actinomyces naeslundii","na":1,"nb":2,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["Pfam%3APF16555","Gram-positive pilin subunit D1, N-terminal domain"],["TED%3AAF-A0A2Z5QNH6-F1-model_v4_TED02","TED novel fold AF-A0A2Z5QNH6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1871043","l":"Variovorax sp.","na":2,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]],"b":[["TED%3AAF-A0A2E9BKC8-F1-model_v4_TED02","TED novel fold AF-A0A2E9BKC8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1908224","l":"Sphingopyxis sp.","na":2,"nb":1,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["TED%3AAF-A0A2G2D229-F1-model_v4_TED01","TED novel fold AF-A0A2G2D229-F1-model_v4_TED01"]]},{"id":"NCBITaxon:244366","l":"Klebsiella variicola","na":2,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["TED%3AAF-A0A2N4Z4E2-F1-model_v4_TED01","TED novel fold AF-A0A2N4Z4E2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:246200","l":"Ruegeria pomeroyi DSS-3","na":1,"nb":2,"a":[["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["Pfam%3APF16867","Dimethlysulfonioproprionate lyase"],["Pfam%3APF09347","Domain of unknown function (DUF1989)"]]},{"id":"NCBITaxon:252970","l":"Paraburkholderia phenoliruptrix","na":1,"nb":2,"a":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]],"b":[["TED%3AAF-A0A6J5BF93-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6J5BF93-F1-model_v4_TED01"],["TED%3AAF-A0A6J5BWX8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6J5BWX8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":2,"nb":1,"a":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]],"b":[["PROSITE%3APS01322","Phosphotriesterase family signature 1"]]},{"id":"NCBITaxon:29466","l":"Veillonella parvula","na":2,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]],"b":[["TED%3AAF-A0A134BYG5-F1-model_v4_TED01","TED novel fold AF-A0A134BYG5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:299767","l":"Enterobacter ludwigii","na":2,"nb":1,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["TED%3AAF-W0BYN9-F1-model_v4_TED01","TED highly-symmetric fold AF-W0BYN9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:323259","l":"Methanospirillum hungatei JF-1","na":2,"nb":1,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["Pfam%3APF01864","CDP-archaeol synthase"]]},{"id":"NCBITaxon:33959","l":"Lactobacillus johnsonii","na":2,"nb":1,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]],"b":[["Pfam%3APF13518","Helix-turn-helix domain"]]},{"id":"NCBITaxon:375","l":"Bradyrhizobium japonicum","na":1,"nb":2,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"]],"b":[["TED%3AAF-A0A1L3FD53-F1-model_v4_TED02","TED novel fold AF-A0A1L3FD53-F1-model_v4_TED02"],["TED%3AAF-A0A1L3FDV4-F1-model_v4_TED02","TED novel fold AF-A0A1L3FDV4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:3818","l":"Arachis hypogaea","na":1,"nb":2,"a":[["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["TED%3AAF-A0A445AVV9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A445AVV9-F1-model_v4_TED02"],["TED%3AAF-A0A444Z3U3-F1-model_v4_TED01","TED novel fold AF-A0A444Z3U3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:40214","l":"Acinetobacter johnsonii","na":1,"nb":2,"a":[["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["Pfam%3APF12973","ChrR Cupin-like domain"],["Pfam%3APF13807","G-rich domain on putative tyrosine kinase"]]},{"id":"NCBITaxon:4530","l":"Oryza sativa","na":1,"nb":2,"a":[["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"]],"b":[["Pfam%3APF10839","Protein of unknown function (DUF2647)"],["PROSITE%3APS00937","Ribosomal protein L20 signature"]]},{"id":"NCBITaxon:582702","l":"Rhodanobacter glycinis","na":1,"nb":2,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"]],"b":[["TED%3AAF-A0A1I4G4N7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I4G4N7-F1-model_v4_TED02"],["TED%3AAF-A0A502CFB8-F1-model_v4_TED01","TED novel fold AF-A0A502CFB8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:64104","l":"Bacillus pseudomycoides","na":1,"nb":2,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["TED%3AAF-A0A1Y3MB62-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y3MB62-F1-model_v4_TED01"],["TED%3AAF-A0A2C4USY5-F1-model_v4_TED01","TED novel fold AF-A0A2C4USY5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:659243","l":"Bacillus siamensis","na":2,"nb":1,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"]],"b":[["TED%3AAF-A0A853L550-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A853L550-F1-model_v4_TED02"]]},{"id":"NCBITaxon:82380","l":"Microbacterium oxydans","na":2,"nb":1,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]],"b":[["TED%3AAF-A0A4Y4GD74-F1-model_v4_TED02","TED novel fold AF-A0A4Y4GD74-F1-model_v4_TED02"]]},{"id":"NCBITaxon:94626","l":"Brucella tritici","na":1,"nb":2,"a":[["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]],"b":[["TED%3AAF-A0A7X6FRR6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X6FRR6-F1-model_v4_TED01"],["TED%3AAF-A0A7X6JC90-F1-model_v4_TED01","TED novel fold AF-A0A7X6JC90-F1-model_v4_TED01"]]},{"id":"NCBITaxon:971","l":"Pseudoselenomonas ruminantium","na":1,"nb":2,"a":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"]],"b":[["TED%3AAF-A0A1H0QI16-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H0QI16-F1-model_v4_TED02"],["TED%3AAF-A0A1I6XHL5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I6XHL5-F1-model_v4_TED01"]]},{"id":"UBERON:0002097","l":"skin of body","na":1,"nb":2,"a":[["SkinCom_Synthetic_Skin_Community.html","SkinCom Synthetic Skin Community"]],"b":[["GO%3A0043588","skin development"],["GO%3A0043589","skin morphogenesis"]]},{"id":"CHEBI:15517","l":"butyryl-CoA","na":1,"nb":1,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_BCO","BCO-binding site"]]},{"id":"CHEBI:15859","l":"N-carbamoyl-L-aspartic acid","na":1,"nb":1,"a":[["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:16119","l":"shikimic acid","na":1,"nb":1,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["proteintraitsmech%3ABIOLIP_SKM","SKM-binding site"]]},{"id":"CHEBI:16449","l":"alanine","na":1,"nb":1,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["MCSA%3A724","repressor LexA"]]},{"id":"CHEBI:16988","l":"D-ribose","na":1,"nb":1,"a":[["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:16991","l":"deoxyribonucleic acid","na":1,"nb":1,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_DNA","DNA-binding site"]]},{"id":"CHEBI:17089","l":"glycoprotein","na":1,"nb":1,"a":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"]],"b":[["TCDB%3A9.B.417","The MCFD2/LMAN1 Complex Receptor (MLM-CR) Family"]]},{"id":"CHEBI:17359)","l":"","na":1,"nb":1,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"]],"b":[["RHEA%3A12945","2'-hydroxybiphenyl-2-sulfinate + H2O = biphenyl-2-ol + sulfite + H(+)"]]},{"id":"CHEBI:17418","l":"valeric acid","na":1,"nb":1,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_LEA","LEA-binding site"]]},{"id":"CHEBI:17642","l":"pentachlorophenol","na":1,"nb":1,"a":[["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_PCI","PCI-binding site"]]},{"id":"CHEBI:18012","l":"fumaric acid","na":1,"nb":1,"a":[["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["proteintraitsmech%3ABIOLIP_FUM","FUM-binding site"]]},{"id":"CHEBI:18186","l":"tyrosine","na":1,"nb":1,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["MCSA%3A668","leishmanolysin"]]},{"id":"CHEBI:22660","l":"aspartic acid","na":1,"nb":1,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"]]},{"id":"CHEBI:24632","l":"hydrocarbon","na":1,"nb":1,"a":[["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"]],"b":[["TCDB%3A1.B.9","The FadL Outer Membrane Protein (FadL) Family"]]},{"id":"CHEBI:26401","l":"purines","na":1,"nb":1,"a":[["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:27570","l":"histidine","na":1,"nb":1,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:28260","l":"galactose","na":1,"nb":1,"a":[["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:28808","l":"mannan","na":1,"nb":1,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"]],"b":[["TCDB%3A4.A.3","The PTS Lactose-N,N'-Diacetylchitobiose-β-glucoside (Lac) Family"]]},{"id":"CHEBI:30531","l":"pimelic acid","na":1,"nb":1,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["proteintraitsmech%3ABIOLIP_PML","PML-binding site"]]},{"id":"CHEBI:30778","l":"gallic acid","na":1,"nb":1,"a":[["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_GDE","GDE-binding site"]]},{"id":"CHEBI:32079","l":"pyrrolnitrin","na":1,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["RHEA%3A46136","aminopyrrolnitrin + NADPH + 2 O2 + H(+) = pyrrolnitrin + NADP(+) + 2 H2O"]]},{"id":"CHEBI:33198","l":"D-gluconic acid","na":1,"nb":1,"a":[["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"]],"b":[["proteintraitsmech%3ABIOLIP_GCO","GCO-binding site"]]},{"id":"CHEBI:34031","l":"1,1-dichloroethene","na":1,"nb":1,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["RHEA%3A68000","1,1-dichloroethene + AH2 = chloroethene + chloride + A + H(+)"]]},{"id":"CHEBI:34631","l":"chlorpyrifos","na":1,"nb":1,"a":[["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:35366","l":"fatty acid","na":1,"nb":1,"a":[["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:36976","l":"nucleotide","na":1,"nb":1,"a":[["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"]],"b":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"]]},{"id":"CHEBI:38155","l":"phytosiderophore","na":1,"nb":1,"a":[["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["TCDB%3A2.A.67","The Oligopeptide Transporter (OPT) Family"]]},{"id":"CHEBI:38372","l":"cis-2-dodecenoic acid","na":1,"nb":1,"a":[["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_GEY","GEY-binding site"]]},{"id":"CHEBI:41131","l":"crotonic acid","na":1,"nb":1,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_BEO","BEO-binding site"]]},{"id":"CHEBI:45441","l":"N-acetyl-L-serine","na":1,"nb":1,"a":[["Watermelon_Rhizosphere_Fusarium_SynCom8.html","Watermelon Rhizosphere Fusarium-Protective SynCom8"]],"b":[["proteintraitsmech%3ABIOLIP_SAC","SAC-binding site"]]},{"id":"CHEBI:46645","l":"isobutanol","na":1,"nb":1,"a":[["Trichoderma_Ecoli_Cellulosic_Isobutanol_Coculture.html","Trichoderma-E. coli Cellulosic Isobutanol Coculture"]],"b":[["RHEA%3A64692","isobutanol + NAD(+) = 2-methylpropanal + NADH + H(+)"]]},{"id":"CHEBI:49017","l":"3-methylthiopropanal","na":1,"nb":1,"a":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["RHEA%3A55076","4-methylsulfanyl-2-oxobutanoate + H(+) = 3-methylsulfanylpropanal + CO2"]]},{"id":"CHEBI:49890","l":"samarium(3+)","na":1,"nb":1,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_SM","SM-binding site"]]},{"id":"CHEBI:49980","l":"ytterbium(3+)","na":1,"nb":1,"a":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["proteintraitsmech%3ABIOLIP_YB","YB-binding site"]]},{"id":"CHEBI:7476","l":"naproxen","na":1,"nb":1,"a":[["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"]],"b":[["proteintraitsmech%3ABIOLIP_NPS","NPS-binding site"]]},{"id":"CHEBI:84043","l":"gallium(3+)","na":1,"nb":1,"a":[["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"GO:0006046","l":"N-acetylglucosamine catabolic process","na":1,"nb":1,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]],"b":[["GO%3A0006046","N-acetylglucosamine catabolic process"]]},{"id":"GO:0006082","l":"obsolete organic acid metabolic process","na":1,"nb":1,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["PANTHER%3APTHR43680","NITRATE REDUCTASE MOLYBDENUM COFACTOR ASSEMBLY CHAPERONE"]]},{"id":"GO:0019249","l":"lactate biosynthetic process","na":1,"nb":1,"a":[["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["GO%3A0019249","lactate biosynthetic process"]]},{"id":"GO:0019253","l":"reductive pentose-phosphate cycle","na":1,"nb":1,"a":[["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["GO%3A0019253","reductive pentose-phosphate cycle"]]},{"id":"GO:0019332","l":"aerobic respiration, using nitrite as electron donor","na":1,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"]],"b":[["GO%3A0019332","aerobic respiration, using nitrite as electron donor"]]},{"id":"GO:0022622","l":"root system development","na":1,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["GO%3A0022622","root system development"]]},{"id":"GO:0042192","l":"methylmercury biosynthetic process","na":1,"nb":1,"a":[["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"]],"b":[["GO%3A0042192","methylmercury biosynthetic process"]]},{"id":"GO:0051850","l":"acquisition of nutrients from symbiont","na":1,"nb":1,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0051850","acquisition of nutrients from symbiont"]]},{"id":"GO:0140923","l":"magnetosome assembly","na":1,"nb":1,"a":[["Tropidoatractus_Magnetotacticus_Tripartite_Syntrophy.html","Tropidoatractus magnetotacticus Magnetotactic Ciliate Tripartite Syntrophy"]],"b":[["GO%3A0140923","magnetosome assembly"]]},{"id":"GO:1902087","l":"dimethylsulfoniopropionate catabolic process","na":1,"nb":1,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["GO%3A1902087","dimethylsulfoniopropionate catabolic process"]]},{"id":"NCBITaxon:101028","l":"Fusarium pseudograminearum","na":1,"nb":1,"a":[["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["TED%3AAF-A0A7S8DXW2-F1-model_v4_TED02","TED novel fold AF-A0A7S8DXW2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1072583","l":"Vreelandella boliviensis LC1","na":1,"nb":1,"a":[["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"]],"b":[["TED%3AAF-A0A265DTH2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A265DTH2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1165","l":"Anabaena cylindrica","na":1,"nb":1,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["Pfam%3APF17275","Family of unknown function (DUF5340)"]]},{"id":"NCBITaxon:118127","l":"Chryseobacterium proteolyticum","na":1,"nb":1,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["Pfam%3APF18626","Glutaminase"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":1,"nb":1,"a":[["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["TED%3AAF-A0A132HLN2-F1-model_v4_TED01","TED novel fold AF-A0A132HLN2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1215089","l":"Planococcus halocryophilus","na":1,"nb":1,"a":[["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"]],"b":[["TED%3AAF-A0A1C7DVM0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C7DVM0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":1,"nb":1,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["PROSITE%3APS01043","Transposases, IS30 family, signature"]]},{"id":"NCBITaxon:134","l":"Methylocystis parvus","na":1,"nb":1,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"]],"b":[["TED%3AAF-A0A6B8M6B0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6B8M6B0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:138074","l":"Serratia symbiotica","na":1,"nb":1,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"]],"b":[["TED%3AAF-A0A068YYP3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A068YYP3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1399","l":"Cytobacillus firmus","na":1,"nb":1,"a":[["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"]],"b":[["TED%3AAF-A0A800NFK9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A800NFK9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1520","l":"Clostridium beijerinckii","na":1,"nb":1,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"]],"b":[["TED%3AAF-A0A0B5QQV4-F1-model_v4_TED02","TED novel fold AF-A0A0B5QQV4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1547","l":"Thomasclavelia ramosa","na":1,"nb":1,"a":[["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["TED%3AAF-A0A3E3E4C4-F1-model_v4_TED02","TED novel fold AF-A0A3E3E4C4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1585","l":"Lactobacillus delbrueckii subsp. bulgaricus","na":1,"nb":1,"a":[["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["TED%3AAF-A0A809EIY6-F1-model_v4_TED02","TED novel fold AF-A0A809EIY6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:159743","l":"Paenibacillus terrae","na":1,"nb":1,"a":[["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"]],"b":[["TED%3AAF-A0A0D7WXS4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D7WXS4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1673428","l":"Cuniculiplasma divulgatum","na":1,"nb":1,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["TED%3AAF-A0A1N5S5J2-F1-model_v4_TED02","TED novel fold AF-A0A1N5S5J2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":1,"nb":1,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["Pfam%3APF08124","Polysaccharide lyase family 8, N terminal alpha-helical domain"]]},{"id":"NCBITaxon:1920","l":"Streptomyces nigrescens","na":1,"nb":1,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["Pfam%3APF03995","Peptidase inhibitor family I36"]]},{"id":"NCBITaxon:1979961","l":"Wenzhouxiangella sp.","na":1,"nb":1,"a":[["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["TED%3AAF-A0A5Q4GWL5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Q4GWL5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:216778","l":"Stenotrophomonas rhizophila","na":1,"nb":1,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"]],"b":[["TED%3AAF-A0A023XYG6-F1-model_v4_TED02","TED novel fold AF-A0A023XYG6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2209","l":"Methanosarcina mazei","na":1,"nb":1,"a":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"]],"b":[["TED%3AAF-A0A0F8CQX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F8CQX7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:223967","l":"Methylorubrum populi","na":1,"nb":1,"a":[["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"]],"b":[["TED%3AAF-A0A161JLG1-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A161JLG1-F1-model_v4_TED04"]]},{"id":"NCBITaxon:250","l":"Chryseobacterium gleum","na":1,"nb":1,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["TED%3AAF-A0A448B167-F1-model_v4_TED02","TED novel fold AF-A0A448B167-F1-model_v4_TED02"]]},{"id":"NCBITaxon:258","l":"Sphingobacterium spiritivorum","na":1,"nb":1,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["TED%3AAF-A0A380CHI8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A380CHI8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:264198","l":"Cupriavidus pinatubonensis JMP134","na":1,"nb":1,"a":[["Rhizorhabdus_Cupriavidus_BDE47_Degradation_SynCom.html","Rhizorhabdus-Cupriavidus BDE-47 Degradation SynCom"]],"b":[["TED%3AAF-Q476D1-F1-model_v4_TED02","TED highly-symmetric fold AF-Q476D1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:270351","l":"Methylobacterium aquaticum","na":1,"nb":1,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["TED%3AAF-A0A0J6S4M9-F1-model_v4_TED02","TED novel fold AF-A0A0J6S4M9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2759","l":"Eukaryota","na":1,"nb":1,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2759","Eukaryota orthologous groups (OrthoDB)"]]},{"id":"NCBITaxon:294710","l":"Proteiniphilum acetatigenes","na":1,"nb":1,"a":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"]],"b":[["TED%3AAF-A0A101HH48-F1-model_v4_TED02","TED novel fold AF-A0A101HH48-F1-model_v4_TED02"]]},{"id":"NCBITaxon:29875","l":"Trichoderma virens","na":1,"nb":1,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"]],"b":[["Pfam%3APF07249","Cerato-platanin"]]},{"id":"NCBITaxon:316385","l":"Escherichia coli str. K-12 substr. DH10B","na":1,"nb":1,"a":[["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["Pfam%3APF06392","Acid shock protein"]]},{"id":"NCBITaxon:33905","l":"Bifidobacterium thermophilum","na":1,"nb":1,"a":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["TED%3AAF-A0A2N3QE79-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3QE79-F1-model_v4_TED01"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":1,"nb":1,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["TED%3AAF-A0A679J1E9-F1-model_v4_TED01","TED novel fold AF-A0A679J1E9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:3747","l":"Fragaria x ananassa","na":1,"nb":1,"a":[["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["PROSITE%3APS00451","Pathogenesis-related proteins Bet v I family signature"]]},{"id":"NCBITaxon:37929","l":"Glutamicibacter nicotianae","na":1,"nb":1,"a":[["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"]],"b":[["Pfam%3APF16701","Adenylate cyclase regulatory domain"]]},{"id":"NCBITaxon:38304","l":"Corynebacterium tuberculostearicum","na":1,"nb":1,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["TED%3AAF-A0A7U0H937-F1-model_v4_TED01","TED novel fold AF-A0A7U0H937-F1-model_v4_TED01"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"]],"b":[["Pfam%3APF13282","Domain of unknown function (DUF4070)"]]},{"id":"NCBITaxon:40216","l":"Acinetobacter radioresistens","na":1,"nb":1,"a":[["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["TED%3AAF-A0A7D7YF26-F1-model_v4_TED02","TED novel fold AF-A0A7D7YF26-F1-model_v4_TED02"]]},{"id":"NCBITaxon:4054","l":"Panax ginseng","na":1,"nb":1,"a":[["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"]],"b":[["Pfam%3APF26168","Glycosyltransferase, N-terminal domain"]]},{"id":"NCBITaxon:408","l":"Methylorubrum extorquens","na":1,"nb":1,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["Pfam%3APF04476","4-HFC-P synthase"]]},{"id":"NCBITaxon:453960","l":"Sulfobacillus benefaciens","na":1,"nb":1,"a":[["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"]],"b":[["TED%3AAF-A0A2T2WWZ6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2T2WWZ6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:47715","l":"Lacticaseibacillus rhamnosus","na":1,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["Pfam%3APF04914","DltD protein"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":1,"nb":1,"a":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]],"b":[["TED%3AAF-A0A4R6CRR7-F1-model_v4_TED01","TED novel fold AF-A0A4R6CRR7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:4909","l":"Pichia kudriavzevii","na":1,"nb":1,"a":[["Sichuan_Shai_Vinegar_Yeast_Flavor_SynCom.html","Sichuan Shai Vinegar Yeast Flavor SynCom"]],"b":[["TED%3AAF-A0A099P804-F1-model_v4_TED01","TED novel fold AF-A0A099P804-F1-model_v4_TED01"]]},{"id":"NCBITaxon:4911","l":"Kluyveromyces marxianus","na":1,"nb":1,"a":[["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["Pfam%3APF04684","BAF1 / ABF1 chromatin reorganising factor"]]},{"id":"NCBITaxon:5007","l":"Brettanomyces bruxellensis","na":1,"nb":1,"a":[["Sichuan_Shai_Vinegar_Yeast_Flavor_SynCom.html","Sichuan Shai Vinegar Yeast Flavor SynCom"]],"b":[["TED%3AAF-A0A7D9CWH5-F1-model_v4_TED01","TED novel fold AF-A0A7D9CWH5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":1,"nb":1,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["Pfam%3APF07335","Fungal chitosanase of glycosyl hydrolase group 75"]]},{"id":"NCBITaxon:5547","l":"Trichoderma viride","na":1,"nb":1,"a":[["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["Pfam%3APF14587","O-Glycosyl hydrolase family 30"]]},{"id":"NCBITaxon:61435","l":"Dehalococcoides mccartyi","na":1,"nb":1,"a":[["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"]],"b":[["TED%3AAF-A0A2J1E0L6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J1E0L6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:68239","l":"Streptomyces mirabilis","na":1,"nb":1,"a":[["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["TED%3AAF-A0A1I2Y4U7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2Y4U7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:72360","l":"Bacillus mojavensis","na":1,"nb":1,"a":[["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["Pfam%3APF05952","Bacillus competence pheromone ComX"]]},{"id":"NCBITaxon:82367","l":"Paracoccus pantotrophus","na":1,"nb":1,"a":[["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"]],"b":[["Pfam%3APF17805","AsnC-like ligand binding domain"]]},{"id":"NCBITaxon:901","l":"Desulfovibrio piger","na":1,"nb":1,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["TED%3AAF-A0A848CHH4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A848CHH4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:96241","l":"Bacillus spizizenii","na":1,"nb":1,"a":[["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"]],"b":[["Pfam%3APF05952","Bacillus competence pheromone ComX"]]},{"id":"NCBITaxon:986","l":"Flavobacterium johnsoniae","na":1,"nb":1,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["TED%3AAF-A0A1J7BWE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1J7BWE6-F1-model_v4_TED01"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/CommunityMech--TaxonMech.json b/assets/fleet/edges/CommunityMech--TaxonMech.json new file mode 100644 index 0000000..c097287 --- /dev/null +++ b/assets/fleet/edges/CommunityMech--TaxonMech.json @@ -0,0 +1 @@ +{"a":"CommunityMech","b":"TaxonMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","TaxonMech":"https://culturebotai.github.io/TaxonMech/pages/taxon.html?id="},"n":1167,"by":{"NCBITaxon":784,"GTDB":383},"terms":[{"id":"NCBITaxon:2","l":"Bacteria","na":56,"nb":605695,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"]],"b":[["NCBITaxon%3A119160","2,3-D degrading bacterium NHC2"],["NCBITaxon%3A119159","2,3-D degrading bacterium NHG3"],["NCBITaxon%3A103498","2,4-D-degrading bacterium 001"],["NCBITaxon%3A103499","2,4-D-degrading bacterium 007"],["NCBITaxon%3A103492","2,4-D-degrading bacterium 010"],["NCBITaxon%3A103495","2,4-D-degrading bacterium 012"]]},{"id":"NCBITaxon:286","l":"Pseudomonas","na":18,"nb":33485,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"]],"b":[["NCBITaxon%3A196824","Arctic sea ice associated bacterium ARK10142"],["NCBITaxon%3A196823","Arctic sea ice bacterium ARK10061"],["NCBITaxon%3A196825","Arctic sea ice bacterium ARK9971"],["NCBITaxon%3A196826","Arctic sea ice bacterium ARK9995"],["NCBITaxon%3A215583","bacterium G5"],["NCBITaxon%3A1871086","Brevundimonas sp."]]},{"id":"GTDB:s__Escherichia_coli","l":"","na":18,"nb":2002,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["NCBITaxon%3A2099680","Methanobacteriaceae archaeon"],["NCBITaxon%3A2585118","Alistipes communis"],["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A2212467","Bacteroidaceae bacterium"],["NCBITaxon%3A2030927","Bacteroidales bacterium"],["NCBITaxon%3A195","Campylobacter coli"]]},{"id":"NCBITaxon:1386","l":"Bacillus","na":16,"nb":33976,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["NCBITaxon%3A208551","alkaliphilic bacterium AF112"],["NCBITaxon%3A33934","Anoxybacillus flavithermus"],["NCBITaxon%3A1185649","Anoxybacillus flavithermus subsp. flavithermus"],["NCBITaxon%3A28030","Bacillus acidopullulyticus"],["NCBITaxon%3A33017","Bacillus acidovorans"],["NCBITaxon%3A203540","Bacillus aeolius"]]},{"id":"NCBITaxon:2157","l":"Archaea","na":15,"nb":14013,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"]],"b":[["NCBITaxon%3A3879924","Abyssiniarchaeum dallolvicinus (SeqCode)"],["NCBITaxon%3A3693715","Acidarchaeum fankouense (SeqCode)"],["NCBITaxon%3A2283","Acidianus ambivalens"],["NCBITaxon%3A41673","Acidianus brierleyi"],["NCBITaxon%3A269667","Acidianus convivator"],["NCBITaxon%3A563177","Acidianus hospitalis"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":82,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["NCBITaxon%3A1390","Bacillus amyloliquefaciens"],["NCBITaxon%3A1452","Bacillus atrophaeus"],["NCBITaxon%3A640707","Bacillus atrophaeus ATCC 9372"],["NCBITaxon%3A483913","Bacillus inaquosorum"],["NCBITaxon%3A1236548","Bacillus inaquosorum KCTC 13429"],["NCBITaxon%3A1402","Bacillus licheniformis"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":14,"nb":3868,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A196023","Aeromonas hydrophila subsp. hydrophila"],["NCBITaxon%3A380703","Aeromonas hydrophila subsp. hydrophila ATCC 7966"],["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A35703","Citrobacter amalonaticus"],["NCBITaxon%3A163202","Corynebacterium appendicis"]]},{"id":"GTDB:s__Bacillus_subtilis","l":"","na":14,"nb":129,"a":[["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"]],"b":[["NCBITaxon%3A79881","Alkalicoccobacillus gibsonii"],["NCBITaxon%3A171685","Alkalicoccobacillus murimartini"],["NCBITaxon%3A1889774","Bacillaceae bacterium"],["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A2922309","Bacillus sp. 1006-3"],["NCBITaxon%3A3096766","Bacillus sp. 204(2023)"]]},{"id":"NCBITaxon:131567","l":"cellular organisms","na":11,"nb":625951,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Horonobe_Mizunami_URL_Subsurface_Microbiome.html","Horonobe and Mizunami Underground Research Laboratory Subsurface Microbiome"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["NCBITaxon%3A3879924","Abyssiniarchaeum dallolvicinus (SeqCode)"],["NCBITaxon%3A3693715","Acidarchaeum fankouense (SeqCode)"],["NCBITaxon%3A2283","Acidianus ambivalens"],["NCBITaxon%3A41673","Acidianus brierleyi"],["NCBITaxon%3A269667","Acidianus convivator"],["NCBITaxon%3A563177","Acidianus hospitalis"]]},{"id":"NCBITaxon:201174","l":"Actinomycetota","na":10,"nb":99340,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["NCBITaxon%3A291968","Acaricomes phytoseiuli"],["NCBITaxon%3A1120917","Acaricomes phytoseiuli DSM 14247"],["NCBITaxon%3A1872088","Acaricomes sp."],["NCBITaxon%3A1026830","Acaricomes sp. RHF117"],["NCBITaxon%3A298618","acid streamer iron-oxidizing bacterium CS11"],["NCBITaxon%3A298616","acid streamer iron-oxidizing bacterium KP1"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":9,"nb":557,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"]],"b":[["NCBITaxon%3A2073169","Chromobacterium alticapitis"],["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1454219","Pseudomonas aeruginosa 059A"],["NCBITaxon%3A1421538","Pseudomonas aeruginosa 0812"],["NCBITaxon%3A1421545","Pseudomonas aeruginosa 0822"],["NCBITaxon%3A1421531","Pseudomonas aeruginosa 0C2E"]]},{"id":"GTDB:s__Bacillus_A_cereus","l":"","na":9,"nb":479,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]],"b":[["NCBITaxon%3A1889774","Bacillaceae bacterium"],["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A2026189","Bacillus albus"],["NCBITaxon%3A658666","Bacillus bombysepticus"],["NCBITaxon%3A1330043","Bacillus bombysepticus str. Wang"],["NCBITaxon%3A1396","Bacillus cereus"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":9,"nb":53,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]],"b":[["NCBITaxon%3A47920","Acidovorax delafieldii"],["NCBITaxon%3A301","Ectopseudomonas oleovorans"],["NCBITaxon%3A29581","Janthinobacterium lividum"],["NCBITaxon%3A294","Pseudomonas fluorescens"],["NCBITaxon%3A77298","Pseudomonas jessenii"],["NCBITaxon%3A1968891","Pseudomonas jessenii subsp. pseudoputida"]]},{"id":"NCBITaxon:1224","l":"Pseudomonadota","na":8,"nb":251482,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"]],"b":[["NCBITaxon%3A119160","2,3-D degrading bacterium NHC2"],["NCBITaxon%3A119159","2,3-D degrading bacterium NHG3"],["NCBITaxon%3A103498","2,4-D-degrading bacterium 001"],["NCBITaxon%3A103499","2,4-D-degrading bacterium 007"],["NCBITaxon%3A103492","2,4-D-degrading bacterium 010"],["NCBITaxon%3A103495","2,4-D-degrading bacterium 012"]]},{"id":"NCBITaxon:1827","l":"Rhodococcus","na":8,"nb":3197,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]],"b":[["NCBITaxon%3A179179","bromate-reducing bacterium B7"],["NCBITaxon%3A179180","bromate-reducing bacterium B8"],["NCBITaxon%3A983873","Dietzia aurantiaca"],["NCBITaxon%3A84096","Gordonia alkanivorans"],["NCBITaxon%3A178933","PAH-contaminated sludge bacterium PB-32"],["NCBITaxon%3A43767","Prescottella equi"]]},{"id":"NCBITaxon:34072","l":"Variovorax","na":8,"nb":1193,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["PMI_Variovorax_Thermotolerance_Collection.html","PMI Variovorax Thermotolerance Collection"]],"b":[["NCBITaxon%3A160241","bacterium C2+6"],["NCBITaxon%3A62670","uncultured proteobacterium OCS98"],["NCBITaxon%3A114708","uncultured Variovorax sp."],["NCBITaxon%3A350651","uncultured Variovorax sp. FR059"],["NCBITaxon%3A140988","uncultured Variovorax sp. M16"],["NCBITaxon%3A129716","uncultured Variovorax VV1"]]},{"id":"GTDB:s__Pseudomonas_aeruginosa","l":"","na":8,"nb":353,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A1977087","Pseudomonadota bacterium"],["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1421531","Pseudomonas aeruginosa 0C2E"],["NCBITaxon%3A1339263","Pseudomonas aeruginosa 148"],["NCBITaxon%3A1286151","Pseudomonas aeruginosa 18A"]]},{"id":"GTDB:s__Bacillus_A_anthracis","l":"","na":8,"nb":326,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1392","Bacillus anthracis"],["NCBITaxon%3A1412844","Bacillus anthracis 52-G"],["NCBITaxon%3A1412843","Bacillus anthracis 8903-G"],["NCBITaxon%3A1412842","Bacillus anthracis 9080-G"],["NCBITaxon%3A1248431","Bacillus anthracis str. 3154"],["NCBITaxon%3A1248436","Bacillus anthracis str. 3166"]]},{"id":"GTDB:s__Bacillus_A_paranthracis","l":"","na":8,"nb":194,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A2654284","Bacillaceae bacterium C02"],["NCBITaxon%3A2654326","Bacillaceae bacterium C05"],["NCBITaxon%3A1392","Bacillus anthracis"],["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A405534","Bacillus cereus AH187"],["NCBITaxon%3A1053166","Bacillus cereus AND1407"]]},{"id":"GTDB:s__Bacillus_A_thuringiensis_S","l":"","na":8,"nb":79,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A1053170","Bacillus cereus BAG1X1-1"],["NCBITaxon%3A1053171","Bacillus cereus BAG1X1-2"],["NCBITaxon%3A1053173","Bacillus cereus BAG1X2-1"],["NCBITaxon%3A1053175","Bacillus cereus BAG1X2-3"],["NCBITaxon%3A1053176","Bacillus cereus BAG2O-1"]]},{"id":"GTDB:s__Bacillus_A_mycoides","l":"","na":8,"nb":73,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A526976","Bacillus cereus BDRD-ST196"],["NCBITaxon%3A2920307","Bacillus cereus group sp. BfR-BA-01331"],["NCBITaxon%3A2920371","Bacillus cereus group sp. BfR-BA-01523"],["NCBITaxon%3A3040247","Bacillus cereus group sp. MG9"],["NCBITaxon%3A2794593","Bacillus cereus group sp. N28"]]},{"id":"GTDB:s__Bacillus_A_tropicus","l":"","na":8,"nb":63,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1392","Bacillus anthracis"],["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A526977","Bacillus cereus ATCC 4342"],["NCBITaxon%3A269801","Bacillus cereus G9241"],["NCBITaxon%3A3445193","Bacillus cereus group sp. BceL035"],["NCBITaxon%3A3444975","Bacillus cereus group sp. BceL310"]]},{"id":"GTDB:s__Bacillus_A_toyonensis","l":"","na":8,"nb":48,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A3445245","Bacillus cereus group sp. Bce021"],["NCBITaxon%3A3445166","Bacillus cereus group sp. BceL062"],["NCBITaxon%3A3018086","Bacillus cereus group sp. BY112LC"],["NCBITaxon%3A3040246","Bacillus cereus group sp. MG6"],["NCBITaxon%3A3450679","Bacillus cereus group sp. MYBK150-2"]]},{"id":"GTDB:s__Bacillus_A_pacificus","l":"","na":8,"nb":46,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1392","Bacillus anthracis"],["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A222523","Bacillus cereus ATCC 10987"],["NCBITaxon%3A1126681","Bacillus cereus F"],["NCBITaxon%3A1217984","Bacillus cereus FRI-35"],["NCBITaxon%3A3018130","Bacillus cereus group sp. Bc002"]]},{"id":"NCBITaxon:492670","l":"Bacillus velezensis","na":8,"nb":18,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"]],"b":[["NCBITaxon%3A492670","Bacillus velezensis"],["NCBITaxon%3A2517241","Bacillus velezensis A3"],["NCBITaxon%3A1225788","Bacillus velezensis AS43.3"],["NCBITaxon%3A1239834","Bacillus velezensis At1"],["NCBITaxon%3A1114958","Bacillus velezensis CAU B946"],["NCBITaxon%3A2853458","Bacillus velezensis EYE_388"]]},{"id":"GTDB:s__Bacillus_A_thuringiensis_K","l":"","na":8,"nb":11,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A2920310","Bacillus cereus group sp. BfR-BA-01347"],["NCBITaxon%3A3450663","Bacillus cereus group sp. MYBK216-1"],["NCBITaxon%3A3450662","Bacillus cereus group sp. MYBK216-2"],["NCBITaxon%3A1053223","Bacillus cereus VD014"],["NCBITaxon%3A1053239","Bacillus cereus VD156"]]},{"id":"GTDB:s__Acidithiobacillus_ferrooxidans","l":"","na":8,"nb":10,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["NCBITaxon%3A920","Acidithiobacillus ferrooxidans"],["NCBITaxon%3A243159","Acidithiobacillus ferrooxidans ATCC 23270"],["NCBITaxon%3A380394","Acidithiobacillus ferrooxidans ATCC 53993"],["NCBITaxon%3A1433292","Acidithiobacillus ferrooxidans BY-3"],["NCBITaxon%3A3063953","Acidithiobacillus ferrooxidans F221"],["NCBITaxon%3A2801579","Acidithiobacillus sp. MC2.2"]]},{"id":"NCBITaxon:920","l":"Acidithiobacillus ferrooxidans","na":8,"nb":10,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["NCBITaxon%3A163359","Acidiferrobacter thiooxydans"],["NCBITaxon%3A1232575","Acidithiobacillus ferridurans"],["NCBITaxon%3A920","Acidithiobacillus ferrooxidans"],["NCBITaxon%3A243159","Acidithiobacillus ferrooxidans ATCC 23270"],["NCBITaxon%3A380394","Acidithiobacillus ferrooxidans ATCC 53993"],["NCBITaxon%3A1433292","Acidithiobacillus ferrooxidans BY-3"]]},{"id":"GTDB:s__Nitratidesulfovibrio_vulgaris","l":"","na":9,"nb":8,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["DVM_Triculture.html","DVM Tri-culture"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"]],"b":[["NCBITaxon%3A876","Desulfovibrio desulfuricans"],["NCBITaxon%3A885","Desulfovibrio sp."],["NCBITaxon%3A2049043","Desulfovibrionaceae bacterium"],["NCBITaxon%3A881","Nitratidesulfovibrio vulgaris"],["NCBITaxon%3A391774","Nitratidesulfovibrio vulgaris DP4"],["NCBITaxon%3A573059","Nitratidesulfovibrio vulgaris RCH1"]]},{"id":"GTDB:s__Synechococcus_elongatus","l":"","na":8,"nb":9,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"],["Synechococcus_Bacillus_SPC.html","Synechococcus-Bacillus Synthetic Photosynthetic Consortium"],["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"],["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"],["Synechococcus_Saccharomyces_SPC.html","Synechococcus-Saccharomyces Synthetic Photosynthetic Consortium"]],"b":[["NCBITaxon%3A32046","Synechococcus elongatus"],["NCBITaxon%3A2692912","Synechococcus elongatus FACHB-1061"],["NCBITaxon%3A1357541","Synechococcus elongatus FACHB-242"],["NCBITaxon%3A269084","Synechococcus elongatus PCC 6301"],["NCBITaxon%3A2883261","Synechococcus elongatus PCC 6311"],["NCBITaxon%3A1140","Synechococcus elongatus PCC 7942 = FACHB-805"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":8,"nb":8,"a":[["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"],["Sedimenting_Arabinose_Glucose_Saccharomyces_Coculture.html","Sedimenting Arabinose-Glucose Saccharomyces Coculture"]],"b":[["NCBITaxon%3A4932","Saccharomyces cerevisiae"],["NCBITaxon%3A1266529","Saccharomyces cerevisiae BY4743"],["NCBITaxon%3A1218710","Saccharomyces cerevisiae CBS 1585"],["NCBITaxon%3A764102","Saccharomyces cerevisiae FostersB"],["NCBITaxon%3A764101","Saccharomyces cerevisiae FostersO"],["NCBITaxon%3A1220494","Saccharomyces cerevisiae PE-2"]]},{"id":"NCBITaxon:976","l":"Bacteroidota","na":7,"nb":25542,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["NCBITaxon%3A120971","abyssal strain AII3"],["NCBITaxon%3A120972","abyssal strain AIII4"],["NCBITaxon%3A2967091","Abyssalbus sp."],["NCBITaxon%3A2926907","Abyssalbus ytuae"],["NCBITaxon%3A979970","Acetobacteroides hydrogenigenes"],["NCBITaxon%3A1872095","Acetobacteroides sp."]]},{"id":"NCBITaxon:40323","l":"Stenotrophomonas","na":7,"nb":3947,"a":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"]],"b":[["NCBITaxon%3A255","[Flavobacterium] lutescens"],["NCBITaxon%3A178909","PAH-contaminated sludge bacterium PB-8"],["NCBITaxon%3A178910","PAH-contaminated sludge bacterium PB-9"],["NCBITaxon%3A128780","Stenotrophomonas acidaminiphila"],["NCBITaxon%3A1292134","Stenotrophomonas africana"],["NCBITaxon%3A1212488","Stenotrophomonas africana MGB"]]},{"id":"NCBITaxon:1783273","l":"Patescibacteria group","na":7,"nb":3035,"a":[["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["Soil_BGC_Phylum_Depth_Vegetation_Community.html","Soil Biosynthetic Gene Cluster Phylum-Depth-Vegetation Community"],["Soil_CPR_Nanoarchaea_Rare_Biosphere_Community.html","Soil CPR Bacteria and Nanoarchaea Rare-Biosphere Community"]],"b":[["NCBITaxon%3A1932010","Candidatus Adlerbacteria bacterium"],["NCBITaxon%3A1618605","Candidatus Adlerbacteria bacterium GW2011_GWA1_54_10"],["NCBITaxon%3A1618606","Candidatus Adlerbacteria bacterium GW2011_GWA2_54_12"],["NCBITaxon%3A1618607","Candidatus Adlerbacteria bacterium GW2011_GWB1_54_7"],["NCBITaxon%3A1618608","Candidatus Adlerbacteria bacterium GW2011_GWC1_50_9"],["NCBITaxon%3A1797239","Candidatus Adlerbacteria bacterium RIFCSPHIGHO2_01_FULL_54_23"]]},{"id":"GTDB:s__Bacillus_velezensis","l":"","na":7,"nb":169,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"]],"b":[["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A1390","Bacillus amyloliquefaciens"],["NCBITaxon%3A1412898","Bacillus amyloliquefaciens CC178"],["NCBITaxon%3A1198291","Bacillus amyloliquefaciens DC-12"],["NCBITaxon%3A1457158","Bacillus amyloliquefaciens EBL11"],["NCBITaxon%3A1390372","Bacillus amyloliquefaciens EGD-AQ14"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":7,"nb":168,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A572264","Bacillus cereus 03BB102"],["NCBITaxon%3A451709","Bacillus cereus 03BB108"],["NCBITaxon%3A526967","Bacillus cereus 172560W"],["NCBITaxon%3A363751","Bacillus cereus 31673"],["NCBITaxon%3A526979","Bacillus cereus 95/8201"]]},{"id":"NCBITaxon:40324","l":"Stenotrophomonas maltophilia","na":7,"nb":44,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]],"b":[["NCBITaxon%3A13689","Sphingomonas paucimobilis"],["NCBITaxon%3A1292134","Stenotrophomonas africana"],["NCBITaxon%3A3384461","Stenotrophomonas beteli"],["NCBITaxon%3A86189","Stenotrophomonas hibiscicola"],["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A1288954","Stenotrophomonas maltophilia 503"]]},{"id":"NCBITaxon:818","l":"Bacteroides thetaiotaomicron","na":7,"nb":32,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A47678","Bacteroides caccae"],["NCBITaxon%3A411901","Bacteroides caccae ATCC 43185"],["NCBITaxon%3A29523","Bacteroides sp."],["NCBITaxon%3A818","Bacteroides thetaiotaomicron"],["NCBITaxon%3A1263054","Bacteroides thetaiotaomicron CAG:40"],["NCBITaxon%3A1235785","Bacteroides thetaiotaomicron dnLKV9"]]},{"id":"GTDB:s__Bacteroides_thetaiotaomicron","l":"","na":7,"nb":20,"a":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A3077420","Acutalibacteraceae bacterium"],["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A1201742","bacterium NLAE-zl-H412"],["NCBITaxon%3A1201743","bacterium NLAE-zl-H413"],["NCBITaxon%3A817","Bacteroides fragilis"],["NCBITaxon%3A29523","Bacteroides sp."]]},{"id":"GTDB:s__Bacillus_A_cereus_U","l":"","na":7,"nb":15,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A1053189","Bacillus cereus BAG5X1-1"],["NCBITaxon%3A1053193","Bacillus cereus BAG6O-2"],["NCBITaxon%3A1053218","Bacillus cereus MC118"],["NCBITaxon%3A1053219","Bacillus cereus MC67"],["NCBITaxon%3A1053231","Bacillus cereus VD118"]]},{"id":"GTDB:s__Bacillus_A_pseudomycoides","l":"","na":7,"nb":15,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A2920292","Bacillus cereus group sp. BfR-BA-01315"],["NCBITaxon%3A2794591","Bacillus cereus group sp. N21"],["NCBITaxon%3A1053234","Bacillus cereus VD136"],["NCBITaxon%3A1085379","Bacillus cereus VDM006"],["NCBITaxon%3A1085386","Bacillus cereus VDM021"],["NCBITaxon%3A1405","Bacillus mycoides"]]},{"id":"GTDB:s__Bacillus_A_mobilis","l":"","na":7,"nb":13,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A526992","Bacillus cereus AH1271"],["NCBITaxon%3A2920286","Bacillus cereus group sp. BfR-BA-01309"],["NCBITaxon%3A2920323","Bacillus cereus group sp. BfR-BA-01379"],["NCBITaxon%3A3094884","Bacillus cereus group sp. BfR-BA-01700"],["NCBITaxon%3A3018060","Bacillus cereus group sp. TH152-1LC"]]},{"id":"GTDB:s__Bacillus_A_sp003400245","l":"","na":7,"nb":13,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A1085389","Bacillus cereus B5-2"],["NCBITaxon%3A1053178","Bacillus cereus BAG2O-3"],["NCBITaxon%3A1085388","Bacillus cereus BAG3O-1"],["NCBITaxon%3A3040259","Bacillus cereus group sp. RP37"],["NCBITaxon%3A2034282","Bacillus sp. AFS075960"]]},{"id":"GTDB:s__Bacillus_A_nitratireducens","l":"","na":7,"nb":11,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A526993","Bacillus cereus AH1272"],["NCBITaxon%3A526994","Bacillus cereus AH1273"],["NCBITaxon%3A1053167","Bacillus cereus BAG1O-1"],["NCBITaxon%3A1053172","Bacillus cereus BAG1X1-3"],["NCBITaxon%3A1053183","Bacillus cereus BAG3X2-1"]]},{"id":"GTDB:s__Bacillus_A_paramycoides","l":"","na":7,"nb":8,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A2920287","Bacillus cereus group sp. BfR-BA-01310"],["NCBITaxon%3A3450636","Bacillus cereus group sp. MYBK30-1"],["NCBITaxon%3A3450635","Bacillus cereus group sp. MYBK30-2"],["NCBITaxon%3A1053229","Bacillus cereus VD107"],["NCBITaxon%3A2026194","Bacillus paramycoides"]]},{"id":"NCBITaxon:1239","l":"Bacillota","na":6,"nb":96113,"a":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["Thermophilic_ExSitu_Biomethanation_Mixed_Culture.html","Thermophilic Ex-Situ Biomethanation Mixed Culture"]],"b":[["NCBITaxon%3A46125","Abiotrophia defectiva"],["NCBITaxon%3A592010","Abiotrophia defectiva ATCC 49176"],["NCBITaxon%3A1410024","Abiotrophia defectiva HMP_JCVI_SC0171"],["NCBITaxon%3A1410025","Abiotrophia defectiva HMP_JCVI_SC0235"],["NCBITaxon%3A191553","Abiotrophia para-adiacens"],["NCBITaxon%3A76631","Abiotrophia sp."]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":6,"nb":79,"a":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["NCBITaxon%3A1931223","Caballeronia sp."],["NCBITaxon%3A89065","Pseudomonas abietaniphila"],["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1123912","Pseudomonas auricularis"],["NCBITaxon%3A930166","Pseudomonas brassicacearum"],["NCBITaxon%3A129817","Pseudomonas brenneri"]]},{"id":"NCBITaxon:32046","l":"Synechococcus elongatus","na":6,"nb":64,"a":[["Synechococcus_Bacillus_SPC.html","Synechococcus-Bacillus Synthetic Photosynthetic Consortium"],["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"],["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"],["Synechococcus_Saccharomyces_SPC.html","Synechococcus-Saccharomyces Synthetic Photosynthetic Consortium"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["NCBITaxon%3A326333","Synechococcus cf. elongatus CCMP1379"],["NCBITaxon%3A32046","Synechococcus elongatus"],["NCBITaxon%3A1665532","Synechococcus elongatus 0814_107_005_M13_Fp"],["NCBITaxon%3A2729336","Synechococcus elongatus AARL T012"],["NCBITaxon%3A3073440","Synechococcus elongatus ACC1"],["NCBITaxon%3A1130982","Synechococcus elongatus ARKK1"]]},{"id":"GTDB:s__Stenotrophomonas_sepilia","l":"","na":6,"nb":29,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A1977087","Pseudomonadota bacterium"],["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A1235458","Stenotrophomonas maltophilia AU12-09"],["NCBITaxon%3A3111513","Stenotrophomonas maltophilia group sp. CASM10"],["NCBITaxon%3A3111514","Stenotrophomonas maltophilia group sp. CASM26"],["NCBITaxon%3A3111515","Stenotrophomonas maltophilia group sp. CASM55"]]},{"id":"GTDB:s__Stenotrophomonas_muris","l":"","na":6,"nb":27,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A1926873","Lysobacteraceae bacterium"],["NCBITaxon%3A1977087","Pseudomonadota bacterium"],["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A1163399","Stenotrophomonas maltophilia D457"],["NCBITaxon%3A1451188","Stenotrophomonas maltophilia M30"],["NCBITaxon%3A2963283","Stenotrophomonas muris"]]},{"id":"GTDB:s__Stenotrophomonas_maltophilia","l":"","na":6,"nb":23,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A1977087","Pseudomonadota bacterium"],["NCBITaxon%3A36746","Pseudomonas cichorii"],["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A1183154","Stenotrophomonas maltophilia Ab55555"],["NCBITaxon%3A1190567","Stenotrophomonas maltophilia EPM1"],["NCBITaxon%3A522373","Stenotrophomonas maltophilia K279a"]]},{"id":"GTDB:s__Stenotrophomonas_indicatrix","l":"","na":6,"nb":20,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A1954209","bacterium AM6"],["NCBITaxon%3A86188","Stenotrophomonas geniculata"],["NCBITaxon%3A2045451","Stenotrophomonas indicatrix"],["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A1429851","Stenotrophomonas maltophilia 5BA-I-2"],["NCBITaxon%3A2940566","Stenotrophomonas sp. 1278"]]},{"id":"GTDB:s__Stenotrophomonas_geniculata","l":"","na":6,"nb":15,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A86188","Stenotrophomonas geniculata"],["NCBITaxon%3A1336242","Stenotrophomonas geniculata ATCC 19374 = JCM 13324"],["NCBITaxon%3A1167641","Stenotrophomonas geniculata N1"],["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A69392","Stenotrophomonas sp."]]},{"id":"GTDB:s__Stenotrophomonas_hibiscicola","l":"","na":6,"nb":14,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A1926873","Lysobacteraceae bacterium"],["NCBITaxon%3A1977087","Pseudomonadota bacterium"],["NCBITaxon%3A86189","Stenotrophomonas hibiscicola"],["NCBITaxon%3A1279018","Stenotrophomonas hibiscicola ATCC 19867"],["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A3061099","Stenotrophomonas maltophilia group sp. msm1"]]},{"id":"GTDB:s__Stenotrophomonas_bentonitica_A","l":"","na":6,"nb":13,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A1926873","Lysobacteraceae bacterium"],["NCBITaxon%3A1977087","Pseudomonadota bacterium"],["NCBITaxon%3A1450134","Stenotrophomonas bentonitica"],["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A1118235","Stenotrophomonas maltophilia PML168"],["NCBITaxon%3A216778","Stenotrophomonas rhizophila"]]},{"id":"GTDB:s__Stenotrophomonas_nematodicola","l":"","na":6,"nb":9,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A1210005","Stenotrophomonas maltophilia S028"],["NCBITaxon%3A2656746","Stenotrophomonas nematodicola"],["NCBITaxon%3A216778","Stenotrophomonas rhizophila"],["NCBITaxon%3A69392","Stenotrophomonas sp."],["NCBITaxon%3A2972779","Stenotrophomonas sp. Marseille-Q5258"]]},{"id":"GTDB:s__Leptospirillum_A_rubarum","l":"","na":6,"nb":7,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["NCBITaxon%3A178606","Leptospirillum ferriphilum"],["NCBITaxon%3A1048260","Leptospirillum ferriphilum ML-04"],["NCBITaxon%3A1441628","Leptospirillum ferriphilum YSK"],["NCBITaxon%3A419542","Leptospirillum rubarum"],["NCBITaxon%3A1159328","Leptospirillum sp. Group II 'C75'"],["NCBITaxon%3A1660083","Leptospirillum sp. Group II 'CF-1'"]]},{"id":"GTDB:s__Geobacter_sulfurreducens","l":"","na":6,"nb":6,"a":[["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"]],"b":[["NCBITaxon%3A3080755","Geobacter sp. 60473"],["NCBITaxon%3A1961403","Geobacter sp. UBA7696"],["NCBITaxon%3A35554","Geobacter sulfurreducens"],["NCBITaxon%3A663917","Geobacter sulfurreducens KN400"],["NCBITaxon%3A243231","Geobacter sulfurreducens PCA"],["NCBITaxon%3A1260928","Geobacter sulfurreducens subsp. ethanolicus"]]},{"id":"NCBITaxon:1883","l":"Streptomyces","na":5,"nb":31267,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["Wheat_Consortium_C6.html","Wheat Synthetic Consortium C6"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A208445","Amycolatopsis tolypomycina"],["NCBITaxon%3A1470348","Candidatus Streptomyces massiliensis"],["NCBITaxon%3A1211820","Candidatus Streptomyces massiliensis AP10"],["NCBITaxon%3A371608","Candidatus Streptomyces philanthi"],["NCBITaxon%3A1563718","Candidatus Streptomyces philanthi bv. albopilosus"],["NCBITaxon%3A371609","Candidatus Streptomyces philanthi bv. barbiger"]]},{"id":"NCBITaxon:374","l":"Bradyrhizobium","na":5,"nb":9860,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"],["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["NCBITaxon%3A2683706","Bradyrhizobium acaciae"],["NCBITaxon%3A2734909","Bradyrhizobium aeschynomenes"],["NCBITaxon%3A2751811","Bradyrhizobium agreste"],["NCBITaxon%3A634784","Bradyrhizobium algeriense"],["NCBITaxon%3A1571202","Bradyrhizobium altum"],["NCBITaxon%3A1300045","Bradyrhizobium americanum"]]},{"id":"NCBITaxon:1578","l":"Lactobacillus","na":5,"nb":2379,"a":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"],["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["NCBITaxon%3A2838636","Candidatus Lactobacillus pullistercoris"],["NCBITaxon%3A2838724","Candidatus Paralactobacillus gallistercoris"],["NCBITaxon%3A1612","Companilactobacillus farciminis"],["NCBITaxon%3A3435293","Faecalibacterium langellae"],["NCBITaxon%3A1614","Fructilactobacillus fructivorans"],["NCBITaxon%3A1597","Lacticaseibacillus paracasei"]]},{"id":"NCBITaxon:57723","l":"Acidobacteriota","na":5,"nb":1245,"a":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["SPRUCE_Peatland_Methane_Cycling_Community.html","SPRUCE Peatland Methane-Cycling Microbial Community"]],"b":[["NCBITaxon%3A442870","Acanthopleuribacter pedis"],["NCBITaxon%3A1872087","Acanthopleuribacter sp."],["NCBITaxon%3A2696471","Acanthopleuribacteraceae bacterium"],["NCBITaxon%3A1335627","Acidicapsa acidiphila"],["NCBITaxon%3A1615681","Acidicapsa acidisoli"],["NCBITaxon%3A946336","Acidicapsa borealis"]]},{"id":"NCBITaxon:106591","l":"Ensifer","na":5,"nb":902,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Staged_Cattle_Manure_Ensifer_Bacillus_SynCom.html","Staged Ensifer-Bacillus Cattle-Manure Wastewater SynCom"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A106592","Ensifer adhaerens"],["NCBITaxon%3A1416753","Ensifer adhaerens OV14"],["NCBITaxon%3A1708715","Ensifer aridi"],["NCBITaxon%3A555315","Ensifer canadensis"],["NCBITaxon%3A1806200","Ensifer collicola"],["NCBITaxon%3A1664424","Ensifer genomosp. I"]]},{"id":"NCBITaxon:1822464","l":"Paraburkholderia","na":5,"nb":416,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["NCBITaxon%3A1034313","Candidatus Paraburkholderia andongensis"],["NCBITaxon%3A242161","Candidatus Paraburkholderia calva"],["NCBITaxon%3A1069529","Candidatus Paraburkholderia hispidae"],["NCBITaxon%3A198822","Candidatus Paraburkholderia kirkii"],["NCBITaxon%3A1055526","Candidatus Paraburkholderia kirkii UZHbot1"],["NCBITaxon%3A242162","Candidatus Paraburkholderia nigropunctata"]]},{"id":"GTDB:s__Methanospirillum_hungatei","l":"","na":8,"nb":5,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"]],"b":[["NCBITaxon%3A1852878","Euryarchaeota archaeon ADurb.Bin294"],["NCBITaxon%3A1915702","Methanomicrobiales archaeon UBA81"],["NCBITaxon%3A2203","Methanospirillum hungatei"],["NCBITaxon%3A323259","Methanospirillum hungatei JF-1"],["NCBITaxon%3A45200","Methanospirillum sp."]]},{"id":"GTDB:s__Bacillus_A_luti","l":"","na":7,"nb":5,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A526968","Bacillus cereus R309803"],["NCBITaxon%3A2026191","Bacillus luti"],["NCBITaxon%3A2217834","Bacillus sp. SH5-2"],["NCBITaxon%3A1428","Bacillus thuringiensis"]]},{"id":"GTDB:s__Bacillus_A_sp018966865","l":"","na":7,"nb":5,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1053206","Bacillus cereus HuA4-10"],["NCBITaxon%3A2846779","Bacillus sp. NP247"],["NCBITaxon%3A3346273","Bacillus sp. NPDC057893"],["NCBITaxon%3A3347061","Bacillus sp. NPDC060175"],["NCBITaxon%3A1428","Bacillus thuringiensis"]]},{"id":"GTDB:s__Hungateiclostridium_thermocellum","l":"","na":5,"nb":7,"a":[["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["NCBITaxon%3A1515","Acetivibrio thermocellus"],["NCBITaxon%3A1138384","Acetivibrio thermocellus AD2"],["NCBITaxon%3A203119","Acetivibrio thermocellus ATCC 27405"],["NCBITaxon%3A1349417","Acetivibrio thermocellus BC1"],["NCBITaxon%3A637887","Acetivibrio thermocellus DSM 1313"],["NCBITaxon%3A572545","Acetivibrio thermocellus DSM 2360"]]},{"id":"GTDB:s__Stenotrophomonas_sp002192255","l":"","na":5,"nb":7,"a":[["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A868597","Stenotrophomonas maltophilia JV3"],["NCBITaxon%3A69392","Stenotrophomonas sp."],["NCBITaxon%3A2183909","Stenotrophomonas sp. AG209"],["NCBITaxon%3A3162882","Stenotrophomonas sp. NRRL B-14846"],["NCBITaxon%3A1641707","Stenotrophomonas sp. TD3"]]},{"id":"NCBITaxon:35554","l":"Geobacter sulfurreducens","na":6,"nb":5,"a":[["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"]],"b":[["NCBITaxon%3A35554","Geobacter sulfurreducens"],["NCBITaxon%3A663917","Geobacter sulfurreducens KN400"],["NCBITaxon%3A243231","Geobacter sulfurreducens PCA"],["NCBITaxon%3A1260928","Geobacter sulfurreducens subsp. ethanolicus"],["NCBITaxon%3A1649546","Geobacter sulfurreducens subsp. sulfurreducens"]]},{"id":"GTDB:s__Dehalococcoides_mccartyi","l":"","na":5,"nb":5,"a":[["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"]],"b":[["NCBITaxon%3A61435","Dehalococcoides mccartyi"],["NCBITaxon%3A243164","Dehalococcoides mccartyi 195"],["NCBITaxon%3A1432060","Dehalococcoides mccartyi CG4"],["NCBITaxon%3A1966486","Dehalococcoides sp."],["NCBITaxon%3A3348344","Dehalococcoides sp. THU4"]]},{"id":"NCBITaxon:32008","l":"Burkholderia","na":4,"nb":7299,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["NCBITaxon%3A2015348","Burkholderia aenigmatica"],["NCBITaxon%3A2683677","Burkholderia alba"],["NCBITaxon%3A152480","Burkholderia ambifaria"],["NCBITaxon%3A339670","Burkholderia ambifaria AMMD"],["NCBITaxon%3A396596","Burkholderia ambifaria IOP40-10"],["NCBITaxon%3A398577","Burkholderia ambifaria MC40-6"]]},{"id":"NCBITaxon:13687","l":"Sphingomonas","na":4,"nb":4913,"a":[["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"],["Wheat_Consortium_C6.html","Wheat Synthetic Consortium C6"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["NCBITaxon%3A196160","Arctic sea ice bacterium ARK10016"],["NCBITaxon%3A3121369","Candidatus Sphingomonas colombiensis"],["NCBITaxon%3A2838760","Candidatus Sphingomonas excrementigallinarum"],["NCBITaxon%3A3121370","Candidatus Sphingomonas phytovorans"],["NCBITaxon%3A1996","Microtetraspora glauca"],["NCBITaxon%3A135719","Sphingobium amiense"]]},{"id":"NCBITaxon:570","l":"Klebsiella","na":4,"nb":4683,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"]],"b":[["NCBITaxon%3A548","Klebsiella aerogenes"],["NCBITaxon%3A1308731","Klebsiella aerogenes ADL-323"],["NCBITaxon%3A935296","Klebsiella aerogenes EA1509E"],["NCBITaxon%3A685445","Klebsiella aerogenes FGI35"],["NCBITaxon%3A1028307","Klebsiella aerogenes KCTC 2190"],["NCBITaxon%3A1439320","Klebsiella aerogenes MGH 61"]]},{"id":"NCBITaxon:237","l":"Flavobacterium","na":4,"nb":4449,"a":[["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["NCBITaxon%3A196875","Arctic sea ice associated bacterium ARK10272"],["NCBITaxon%3A196870","Arctic sea ice bacterium ARK10104"],["NCBITaxon%3A196871","Arctic sea ice bacterium ARK10159"],["NCBITaxon%3A196872","Arctic sea ice bacterium ARK10161"],["NCBITaxon%3A196873","Arctic sea ice bacterium ARK10164"],["NCBITaxon%3A196874","Arctic sea ice bacterium ARK10270"]]},{"id":"NCBITaxon:68287","l":"Mesorhizobium","na":4,"nb":3794,"a":[["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A325218","alpha proteobacterium WG1"],["NCBITaxon%3A102683","Biserrula isolate"],["NCBITaxon%3A1209958","Mesorhizobium abyssinicae"],["NCBITaxon%3A1326083","Mesorhizobium acaciae"],["NCBITaxon%3A3072314","Mesorhizobium album"],["NCBITaxon%3A2448478","Mesorhizobium alexandrii"]]},{"id":"NCBITaxon:1485","l":"Clostridium","na":4,"nb":3036,"a":[["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["QY2S1_Dehalogenimonas_BFR_Bioremediation_Consortium.html","QY2-S1 Dehalogenimonas-Rich Brominated-Flame-Retardant Consortium"],["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]],"b":[["NCBITaxon%3A288965","Acetivibrio clariflavus"],["NCBITaxon%3A720554","Acetivibrio clariflavus DSM 19732"],["NCBITaxon%3A461876","Alkaliphilus oremlandii"],["NCBITaxon%3A259063","Anaerocolumna jejuensis"],["NCBITaxon%3A1121322","Anaerocolumna jejuensis DSM 15929"],["NCBITaxon%3A264463","Anaerosporobacter mobilis"]]},{"id":"NCBITaxon:200795","l":"Chloroflexota","na":4,"nb":1565,"a":[["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["Soil_BGC_Phylum_Depth_Vegetation_Community.html","Soil Biosynthetic Gene Cluster Phylum-Depth-Vegetation Community"]],"b":[["NCBITaxon%3A913108","Aggregatilinea lenta"],["NCBITaxon%3A2806333","Aggregatilinea sp."],["NCBITaxon%3A2952881","Aggregatilineaceae bacterium"],["NCBITaxon%3A2952883","Aggregatilineales bacterium"],["NCBITaxon%3A3117437","Aggregatilineales bacterium SYSU G02658"],["NCBITaxon%3A2738567","Anaerolinaceae bacterium JGI_KA33_A04_032"]]},{"id":"NCBITaxon:816","l":"Bacteroides","na":4,"nb":1027,"a":[["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]],"b":[["NCBITaxon%3A85831","Bacteroides acidifaciens"],["NCBITaxon%3A1235814","Bacteroides acidifaciens JCM 10556"],["NCBITaxon%3A1841855","Bacteroides bouchesdurhonensis"],["NCBITaxon%3A47678","Bacteroides caccae"],["NCBITaxon%3A411901","Bacteroides caccae ATCC 43185"],["NCBITaxon%3A1263037","Bacteroides caccae CAG:21"]]},{"id":"NCBITaxon:1678","l":"Bifidobacterium","na":4,"nb":993,"a":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]],"b":[["NCBITaxon%3A638619","Bifidobacterium actinocoloniiforme"],["NCBITaxon%3A1437605","Bifidobacterium actinocoloniiforme DSM 22766"],["NCBITaxon%3A1680","Bifidobacterium adolescentis"],["NCBITaxon%3A367928","Bifidobacterium adolescentis ATCC 15703"],["NCBITaxon%3A1263057","Bifidobacterium adolescentis CAG:119"],["NCBITaxon%3A1410644","Bifidobacterium adolescentis DSM 20087"]]},{"id":"NCBITaxon:165695","l":"Sphingobium","na":4,"nb":663,"a":[["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["Sphingobium_Nitrososphaera_Phenanthrene_Carbon_SynCom.html","Sphingobium-Nitrososphaera Phenanthrene-Carbon SynCom"],["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["NCBITaxon%3A86193","Sphingobium abikonense"],["NCBITaxon%3A1219036","Sphingobium abikonense NBRC 16140"],["NCBITaxon%3A2933566","Sphingobium agri"],["NCBITaxon%3A3341828","Sphingobium agrisoli"],["NCBITaxon%3A2008318","Sphingobium algorifonticola"],["NCBITaxon%3A135719","Sphingobium amiense"]]},{"id":"NCBITaxon:872","l":"Desulfovibrio","na":4,"nb":600,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["NCBITaxon%3A2838532","Candidatus Desulfovibrio faecigallinarum"],["NCBITaxon%3A2838533","Candidatus Desulfovibrio gallistercoris"],["NCBITaxon%3A2838534","Candidatus Desulfovibrio intestinavium"],["NCBITaxon%3A2838535","Candidatus Desulfovibrio intestinigallinarum"],["NCBITaxon%3A2838536","Candidatus Desulfovibrio intestinipullorum"],["NCBITaxon%3A2696086","Candidatus Desulfovibrio kirbyi"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":4,"nb":178,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]],"b":[["NCBITaxon%3A150055","Streptococcus lutetiensis"],["NCBITaxon%3A1309","Streptococcus mutans"],["NCBITaxon%3A857155","Streptococcus mutans 11A1"],["NCBITaxon%3A857147","Streptococcus mutans 11SSST2"],["NCBITaxon%3A857143","Streptococcus mutans 11VS1"],["NCBITaxon%3A857113","Streptococcus mutans 14D"]]},{"id":"GTDB:s__Streptococcus_mutans","l":"","na":4,"nb":165,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]],"b":[["NCBITaxon%3A1993866","Lactobacillales bacterium"],["NCBITaxon%3A1309","Streptococcus mutans"],["NCBITaxon%3A857155","Streptococcus mutans 11A1"],["NCBITaxon%3A857147","Streptococcus mutans 11SSST2"],["NCBITaxon%3A857143","Streptococcus mutans 11VS1"],["NCBITaxon%3A857113","Streptococcus mutans 14D"]]},{"id":"NCBITaxon:28231","l":"Geobacter","na":4,"nb":102,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["Waste_Sludge_Electrofermentation_Biofilm_Suspension_Community.html","Waste-Sludge Electro-Fermentation Biofilm-Suspension Community"]],"b":[["NCBITaxon%3A1340425","Geobacter anodireducens"],["NCBITaxon%3A345631","Geobacter argillaceus"],["NCBITaxon%3A2815309","Geobacter benzoatilyticus"],["NCBITaxon%3A155042","Geobacter grbiciae"],["NCBITaxon%3A293884","Geobacter hephaestius"],["NCBITaxon%3A225193","Geobacter humireducens"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":4,"nb":101,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A817","Bacteroides fragilis"],["NCBITaxon%3A457424","Bacteroides fragilis 3_1_12"],["NCBITaxon%3A862962","Bacteroides fragilis 638R"],["NCBITaxon%3A1308728","Bacteroides fragilis ADL-402"],["NCBITaxon%3A1263046","Bacteroides fragilis CAG:47"],["NCBITaxon%3A1263047","Bacteroides fragilis CAG:558"]]},{"id":"GTDB:s__Bacteroides_fragilis","l":"","na":4,"nb":92,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A3077420","Acutalibacteraceae bacterium"],["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A817","Bacteroides fragilis"],["NCBITaxon%3A862962","Bacteroides fragilis 638R"],["NCBITaxon%3A1263046","Bacteroides fragilis CAG:47"],["NCBITaxon%3A997878","Bacteroides fragilis CL03T00C08"]]},{"id":"GTDB:s__Bacteroides_ovatus","l":"","na":4,"nb":38,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A1339286","Bacteroides fragilis str. 3725 D9 ii"],["NCBITaxon%3A28116","Bacteroides ovatus"],["NCBITaxon%3A665954","Bacteroides ovatus 3_8_47FAA"],["NCBITaxon%3A411476","Bacteroides ovatus ATCC 8483"],["NCBITaxon%3A1263050","Bacteroides ovatus CAG:22"],["NCBITaxon%3A997885","Bacteroides ovatus CL02T12C04"]]},{"id":"NCBITaxon:1590","l":"Lactiplantibacillus plantarum","na":4,"nb":36,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Pichia_Lactiplantibacillus_CCMA_Plant_Beverage_Coculture.html","Pichia-Lactiplantibacillus CCMA Plant Beverage Coculture"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["NCBITaxon%3A271881","Lactiplantibacillus argentoratensis"],["NCBITaxon%3A1423831","Lactiplantibacillus argentoratensis DSM 16365"],["NCBITaxon%3A60520","Lactiplantibacillus paraplantarum"],["NCBITaxon%3A1590","Lactiplantibacillus plantarum"],["NCBITaxon%3A1327988","Lactiplantibacillus plantarum 16"],["NCBITaxon%3A1399793","Lactiplantibacillus plantarum 19L3"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":4,"nb":32,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["NCBITaxon%3A1359","Lactococcus cremoris"],["NCBITaxon%3A2816960","Lactococcus cremoris subsp. cremoris"],["NCBITaxon%3A1348655","Lactococcus cremoris subsp. cremoris NBRC 100676"],["NCBITaxon%3A1363","Lactococcus garvieae"],["NCBITaxon%3A1358","Lactococcus lactis"],["NCBITaxon%3A2731284","Lactococcus lactis (ex Latorre-Guzman et al. 1977) Schleifer et al. 1986"]]},{"id":"GTDB:s__Streptococcus_thermophilus","l":"","na":4,"nb":30,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["NCBITaxon%3A1903720","Bacilli bacterium"],["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A1306","Streptococcus sp."],["NCBITaxon%3A2921366","Streptococcus sp. FSL E2-3488"],["NCBITaxon%3A2954729","Streptococcus sp. FSL E2-3494"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":4,"nb":25,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["NCBITaxon%3A35783","Enterococcus sp."],["NCBITaxon%3A1308","Streptococcus thermophilus"],["NCBITaxon%3A1435981","Streptococcus thermophilus 1F8CT"],["NCBITaxon%3A1408178","Streptococcus thermophilus ASCC 1275"],["NCBITaxon%3A1263110","Streptococcus thermophilus CAG:236"],["NCBITaxon%3A1042404","Streptococcus thermophilus CNCM I-1630"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":4,"nb":19,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["NCBITaxon%3A1402","Bacillus licheniformis"],["NCBITaxon%3A1169411","Bacillus licheniformis 10-1-A"],["NCBITaxon%3A44097","Bacillus licheniformis 2709"],["NCBITaxon%3A1169412","Bacillus licheniformis 5-2-D"],["NCBITaxon%3A1368424","Bacillus licheniformis CG-B52"],["NCBITaxon%3A1232672","Bacillus licheniformis CGMCC 3963"]]},{"id":"GTDB:s__Bacteroides_hominis","l":"","na":4,"nb":17,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A3077420","Acutalibacteraceae bacterium"],["NCBITaxon%3A817","Bacteroides fragilis"],["NCBITaxon%3A457424","Bacteroides fragilis 3_1_12"],["NCBITaxon%3A1263047","Bacteroides fragilis CAG:558"],["NCBITaxon%3A1073386","Bacteroides fragilis HMW 610"],["NCBITaxon%3A1073388","Bacteroides fragilis HMW 616"]]},{"id":"NCBITaxon:33038","l":"Mediterraneibacter gnavus","na":4,"nb":13,"a":[["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Clostridial_isoDCA_Mini_Consortium.html","Clostridial isoDCA Mini Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A33038","Mediterraneibacter gnavus"],["NCBITaxon%3A1384063","Mediterraneibacter gnavus AGR2154"],["NCBITaxon%3A411470","Mediterraneibacter gnavus ATCC 29149"],["NCBITaxon%3A1263106","Mediterraneibacter gnavus CAG:126"],["NCBITaxon%3A1073375","Mediterraneibacter gnavus CC55_001C"],["NCBITaxon%3A935582","Mediterraneibacter gnavus E1"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":4,"nb":12,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"],["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["NCBITaxon%3A72000","Kocuria rhizophila"],["NCBITaxon%3A378753","Kocuria rhizophila DC2201"],["NCBITaxon%3A1272","Kocuria varians"],["NCBITaxon%3A1270","Micrococcus luteus"],["NCBITaxon%3A1357403","Micrococcus luteus CD1_FAA_NB_1"],["NCBITaxon%3A935864","Micrococcus luteus J28"]]},{"id":"GTDB:s__Bifidobacterium_infantis","l":"","na":4,"nb":9,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["NCBITaxon%3A2569485","Bifidobacteriaceae bacterium MCC01971"],["NCBITaxon%3A216816","Bifidobacterium longum"],["NCBITaxon%3A1682","Bifidobacterium longum subsp. infantis"],["NCBITaxon%3A391904","Bifidobacterium longum subsp. infantis ATCC 15697 = JCM 1222 = DSM 20088"],["NCBITaxon%3A1457183","Bifidobacterium longum subsp. infantis EK3"],["NCBITaxon%3A1695","Bifidobacterium longum subsp. suis"]]},{"id":"NCBITaxon:37919","l":"Rhodococcus opacus","na":4,"nb":9,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"],["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["NCBITaxon%3A1833","Rhodococcus erythropolis"],["NCBITaxon%3A37919","Rhodococcus opacus"],["NCBITaxon%3A632772","Rhodococcus opacus B4"],["NCBITaxon%3A1129896","Rhodococcus opacus M213"],["NCBITaxon%3A1219021","Rhodococcus opacus NBRC 100626"],["NCBITaxon%3A543736","Rhodococcus opacus PD630"]]},{"id":"GTDB:s__Acidithiobacillus_thiooxidans","l":"","na":4,"nb":7,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["NCBITaxon%3A119978","Acidithiobacillus albertensis"],["NCBITaxon%3A1872118","Acidithiobacillus sp."],["NCBITaxon%3A2697656","Acidithiobacillus sp. HP-11"],["NCBITaxon%3A930","Acidithiobacillus thiooxidans"],["NCBITaxon%3A1432062","Acidithiobacillus thiooxidans A01"],["NCBITaxon%3A637390","Acidithiobacillus thiooxidans ATCC 19377"]]},{"id":"GTDB:s__Bacillus_A_cereus_K","l":"","na":7,"nb":4,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A1053179","Bacillus cereus BAG2X1-1"],["NCBITaxon%3A1053181","Bacillus cereus BAG2X1-3"],["NCBITaxon%3A1890302","Bacillus wiedmannii"]]},{"id":"GTDB:s__Geobacter_metallireducens","l":"","na":5,"nb":4,"a":[["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"]],"b":[["NCBITaxon%3A155042","Geobacter grbiciae"],["NCBITaxon%3A28232","Geobacter metallireducens"],["NCBITaxon%3A269799","Geobacter metallireducens GS-15"],["NCBITaxon%3A691164","Geobacter metallireducens RCH3"]]},{"id":"NCBITaxon:863","l":"Syntrophomonas wolfei","na":4,"nb":5,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["NCBITaxon%3A863","Syntrophomonas wolfei"],["NCBITaxon%3A378794","Syntrophomonas wolfei subsp. methylbutyratica"],["NCBITaxon%3A373074","Syntrophomonas wolfei subsp. saponavida"],["NCBITaxon%3A370885","Syntrophomonas wolfei subsp. wolfei"],["NCBITaxon%3A335541","Syntrophomonas wolfei subsp. wolfei str. Goettingen G311"]]},{"id":"NCBITaxon:930","l":"Acidithiobacillus thiooxidans","na":4,"nb":4,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["NCBITaxon%3A3063952","Acidithiobacillus concretivorus"],["NCBITaxon%3A930","Acidithiobacillus thiooxidans"],["NCBITaxon%3A1432062","Acidithiobacillus thiooxidans A01"],["NCBITaxon%3A637390","Acidithiobacillus thiooxidans ATCC 19377"]]},{"id":"NCBITaxon:547","l":"Enterobacter","na":3,"nb":6599,"a":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["NCBITaxon%3A3142537","Enterobacter adelaidei"],["NCBITaxon%3A61645","Enterobacter asburiae"],["NCBITaxon%3A1330532","Enterobacter asburiae B1-3"],["NCBITaxon%3A1330533","Enterobacter asburiae B5-60"],["NCBITaxon%3A1442602","Enterobacter asburiae C1"],["NCBITaxon%3A1298604","Enterobacter asburiae JCM 6051"]]},{"id":"NCBITaxon:379","l":"Rhizobium","na":3,"nb":5539,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["NCBITaxon%3A2934936","Allorhizobium sonneratiae"],["NCBITaxon%3A2041385","Arminella tumorigenes"],["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A1355477","Bradyrhizobium diazoefficiens"],["NCBITaxon%3A224911","Bradyrhizobium diazoefficiens USDA 110"],["NCBITaxon%3A29448","Bradyrhizobium elkanii"]]},{"id":"NCBITaxon:44249","l":"Paenibacillus","na":3,"nb":5352,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["NCBITaxon%3A1531483","Candidatus Paenibacillus aerius"],["NCBITaxon%3A1531475","Candidatus Paenibacillus castillanus"],["NCBITaxon%3A1515745","Candidatus Paenibacillus guadalajarensis"],["NCBITaxon%3A1531482","Candidatus Paenibacillus hispaniensis"],["NCBITaxon%3A1531476","Candidatus Paenibacillus hominis"],["NCBITaxon%3A1515744","Candidatus Paenibacillus ilicicola"]]},{"id":"NCBITaxon:407","l":"Methylobacterium","na":3,"nb":2522,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["NCBITaxon%3A56818","Methylobacillus sp."],["NCBITaxon%3A333297","Methylobacterium adhaesivum"],["NCBITaxon%3A418708","Methylobacterium aerolatum"],["NCBITaxon%3A2738439","Methylobacterium ajmalii"],["NCBITaxon%3A3344826","Methylobacterium alsaeris"],["NCBITaxon%3A3071472","Methylobacterium amylolyticum"]]},{"id":"NCBITaxon:22","l":"Shewanella","na":3,"nb":2330,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Shewanella_Denitrifying_Richness_SynComs.html","Shewanella Denitrifying Richness SynComs"]],"b":[["NCBITaxon%3A196819","Arctic sea ice bacterium ARK10035"],["NCBITaxon%3A259291","cf. Shewanella SAR-1"],["NCBITaxon%3A259292","cf. Shewanella SAR-2"],["NCBITaxon%3A73131","Mariana eubacterium no. 11"],["NCBITaxon%3A73132","Mariana eubacterium no. 13"],["NCBITaxon%3A73133","Mariana eubacterium no. 24"]]},{"id":"NCBITaxon:53335","l":"Pantoea","na":3,"nb":2056,"a":[["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["NCBITaxon%3A2080494","Candidatus Pantoea alvi"],["NCBITaxon%3A1947042","Candidatus Pantoea astica"],["NCBITaxon%3A3108221","Candidatus Pantoea bathycoeliae"],["NCBITaxon%3A2831036","Candidatus Pantoea bituminis"],["NCBITaxon%3A1947044","Candidatus Pantoea borealis"],["NCBITaxon%3A1235990","Candidatus Pantoea carbekii"]]},{"id":"NCBITaxon:2742","l":"Marinobacter","na":3,"nb":1792,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["NCBITaxon%3A196838","Arctic sea ice bacterium ARK10228"],["NCBITaxon%3A196839","Arctic sea ice bacterium ARK10244"],["NCBITaxon%3A196840","Arctic sea ice bacterium ARK10251"],["NCBITaxon%3A196841","Arctic sea ice bacterium ARK10296"],["NCBITaxon%3A127731","endocytic bacterium Noc10"],["NCBITaxon%3A127732","endocytic bacterium Noc11"]]},{"id":"NCBITaxon:203682","l":"Planctomycetota","na":3,"nb":1406,"a":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"]],"b":[["NCBITaxon%3A1930276","Adhaeretor mobilis"],["NCBITaxon%3A2862453","Adhaeretor sp."],["NCBITaxon%3A3454464","Aeoliella fuhlenseeensis"],["NCBITaxon%3A2527972","Aeoliella mucimassa"],["NCBITaxon%3A2795800","Aeoliella sp."],["NCBITaxon%3A2954799","Aeoliella straminimaris"]]},{"id":"NCBITaxon:528","l":"Ochrobactrum","na":3,"nb":1276,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"]],"b":[["NCBITaxon%3A529","Brucella anthropi"],["NCBITaxon%3A659015","Brucella daejeonensis"],["NCBITaxon%3A52132","Brucella sp."],["NCBITaxon%3A246569","marine bacterium 13737"],["NCBITaxon%3A259359","microbial fuel cell bacterium ISO1"],["NCBITaxon%3A2993941","Ochrobactrum chromiisoli"]]},{"id":"NCBITaxon:222","l":"Achromobacter","na":3,"nb":1173,"a":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"]],"b":[["NCBITaxon%3A1287736","Achromobacter aegrifaciens"],["NCBITaxon%3A1783500","Achromobacter agile"],["NCBITaxon%3A1353888","Achromobacter agilis"],["NCBITaxon%3A1750518","Achromobacter aloeverae"],["NCBITaxon%3A1389935","Achromobacter animicus"],["NCBITaxon%3A1287737","Achromobacter anxifer"]]},{"id":"NCBITaxon:55080","l":"Brevibacillus","na":3,"nb":774,"a":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"]],"b":[["NCBITaxon%3A51101","Brevibacillus agri"],["NCBITaxon%3A1444307","Brevibacillus agri 5-2"],["NCBITaxon%3A1246477","Brevibacillus agri BAB-2500"],["NCBITaxon%3A2570228","Brevibacillus antibioticus"],["NCBITaxon%3A927786","Brevibacillus aydinogluensis"],["NCBITaxon%3A45462","Brevibacillus borstelensis"]]},{"id":"NCBITaxon:149698","l":"Massilia","na":3,"nb":707,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]],"b":[["NCBITaxon%3A1904440","Duganella sp."],["NCBITaxon%3A453817","Massilia aerilata"],["NCBITaxon%3A1811226","Massilia agilis"],["NCBITaxon%3A1886785","Massilia agri"],["NCBITaxon%3A2892444","Massilia agrisoli"],["NCBITaxon%3A286638","Massilia alkalitolerans"]]},{"id":"GTDB:s__Enterococcus_faecalis","l":"","na":3,"nb":615,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A363922","bacterium spbL1type3-1"],["NCBITaxon%3A2291321","Enterococcaceae bacterium"],["NCBITaxon%3A1951731","Enterococcaceae bacterium UBA3893"],["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A1260363","Enterococcus faecalis 02-MB-BW-10"]]},{"id":"NCBITaxon:85413","l":"Allobosea","na":3,"nb":605,"a":[["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]],"b":[["NCBITaxon%3A132928","Allobosea aff. thiooxidans 1.10"],["NCBITaxon%3A3068632","Allobosea beijingensis"],["NCBITaxon%3A2763117","Allobosea caraganae"],["NCBITaxon%3A151454","Allobosea eneae"],["NCBITaxon%3A1211774","Allobosea eneae 34614"],["NCBITaxon%3A1036778","Allobosea lathyri"]]},{"id":"NCBITaxon:165697","l":"Sphingopyxis","na":3,"nb":494,"a":[["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"]],"b":[["NCBITaxon%3A28214","Sphingomonas sp."],["NCBITaxon%3A117207","Sphingopyxis alaskensis"],["NCBITaxon%3A317655","Sphingopyxis alaskensis RB2256"],["NCBITaxon%3A651663","Sphingopyxis bauzanensis"],["NCBITaxon%3A180400","Sphingopyxis chilensis"],["NCBITaxon%3A1507287","Sphingopyxis flava"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":3,"nb":391,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A1260363","Enterococcus faecalis 02-MB-BW-10"],["NCBITaxon%3A1260365","Enterococcus faecalis 02-MB-P-10"],["NCBITaxon%3A1260358","Enterococcus faecalis 06-MB-DW-09"],["NCBITaxon%3A1260359","Enterococcus faecalis 06-MB-S-04"],["NCBITaxon%3A1260360","Enterococcus faecalis 06-MB-S-10"]]},{"id":"NCBITaxon:213118","l":"Desulfobacterales","na":3,"nb":389,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"]],"b":[["NCBITaxon%3A318481","Algorimarina butyrica"],["NCBITaxon%3A2841697","Candidatus Desulfaltia bathyphila"],["NCBITaxon%3A3060595","Candidatus Desulfaltia sp."],["NCBITaxon%3A2487131","Candidatus Desulfarcum epimagneticum"],["NCBITaxon%3A2841695","Candidatus Desulfatibia profunda"],["NCBITaxon%3A3101189","Candidatus Desulfatibia sp."]]},{"id":"NCBITaxon:1783276","l":"Nanobdellati","na":3,"nb":356,"a":[["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["Soil_CPR_Nanoarchaea_Rare_Biosphere_Community.html","Soil CPR Bacteria and Nanoarchaea Rare-Biosphere Community"]],"b":[["NCBITaxon%3A3138763","Asbonarchaeaceae archaeon (SeqCode)"],["NCBITaxon%3A3138746","Asbonarchaeum danakilense (SeqCode)"],["NCBITaxon%3A2898728","Candidatus Acidifodinimicrobium mancum"],["NCBITaxon%3A3101490","Candidatus Acidifodinimicrobium sp."],["NCBITaxon%3A1974382","Candidatus Aenigmarchaeota archaeon CG01_land_8_20_14_3_00_37_9"],["NCBITaxon%3A1974383","Candidatus Aenigmarchaeota archaeon CG15_BIG_FIL_POST_REV_8_21_14_020_37_27"]]},{"id":"NCBITaxon:5052","l":"Aspergillus","na":3,"nb":320,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["NCBITaxon%3A1904037","Aspergillus acidohumus"],["NCBITaxon%3A487661","Aspergillus aculeatinus"],["NCBITaxon%3A1070780","Aspergillus affinis"],["NCBITaxon%3A657433","Aspergillus alabamensis"],["NCBITaxon%3A1612426","Aspergillus allahabadii"],["NCBITaxon%3A209559","Aspergillus alliaceus"]]},{"id":"GTDB:s__Enterobacter_hormaechei_C","l":"","na":3,"nb":263,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A1260277","Enterobacter cancerogenus YZ1"],["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A2027919","Enterobacter cloacae complex sp."],["NCBITaxon%3A2998100","Enterobacter cloacae complex sp. 2022EL-00747"],["NCBITaxon%3A2998099","Enterobacter cloacae complex sp. 2022EL-00759"]]},{"id":"NCBITaxon:45989","l":"Methanoculleus","na":3,"nb":223,"a":[["Magnetite_Sulfate_Stress_Anaerobic_Microbiome.html","Magnetite Sulfate-Stress Anaerobic Microbiome"],["Phosphitivorax_Methanoculleus_Lithosyntrophy_Phosphite_Coculture.html","Phosphitivorax-Methanoculleus Lithosyntrophic Phosphite-Oxidizing Methanogenic Culture"],["QY2S1_Dehalogenimonas_BFR_Bioremediation_Consortium.html","QY2-S1 Dehalogenimonas-Rich Brominated-Flame-Retardant Consortium"]],"b":[["NCBITaxon%3A1671625","Candidatus Methanoculleus thermohydrogenotrophicum"],["NCBITaxon%3A83986","Methanoculleus bourgensis"],["NCBITaxon%3A1201294","Methanoculleus bourgensis MS2"],["NCBITaxon%3A2937282","Methanoculleus bovis"],["NCBITaxon%3A2651577","Methanoculleus caldifontis"],["NCBITaxon%3A118126","Methanoculleus chikugoensis"]]},{"id":"NCBITaxon:2301","l":"Thermoplasmatales","na":3,"nb":163,"a":[["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]],"b":[["NCBITaxon%3A507754","Acidiplasma aeolicum"],["NCBITaxon%3A312540","Acidiplasma cupricumulans"],["NCBITaxon%3A1295373","Acidiplasma cupricumulans JCM 13668 = DSM 16651"],["NCBITaxon%3A1872114","Acidiplasma sp."],["NCBITaxon%3A3402690","Acidiplasma sp. BR-02"],["NCBITaxon%3A1293648","Acidiplasma sp. MBA-1"]]},{"id":"NCBITaxon:919","l":"Thiobacillus","na":3,"nb":91,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Thiocyanate_Afipia_Thiobacillus_Bioreactor_Community.html","Thiocyanate-Degrading Afipia and Thiobacillus Bioreactor Community"]],"b":[["NCBITaxon%3A34007","Paracoccus versutus"],["NCBITaxon%3A54272","Thiobacillus baregensis"],["NCBITaxon%3A36861","Thiobacillus denitrificans"],["NCBITaxon%3A292415","Thiobacillus denitrificans ATCC 25259"],["NCBITaxon%3A1123392","Thiobacillus denitrificans DSM 12475"],["NCBITaxon%3A373389","Thiobacillus sajanensis"]]},{"id":"NCBITaxon:216816","l":"Bifidobacterium longum","na":3,"nb":69,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["NCBITaxon%3A1680","Bifidobacterium adolescentis"],["NCBITaxon%3A216816","Bifidobacterium longum"],["NCBITaxon%3A1000567","Bifidobacterium longum 3_1_37DFAAB"],["NCBITaxon%3A1280702","Bifidobacterium longum AGR2137"],["NCBITaxon%3A478445","Bifidobacterium longum BORI"],["NCBITaxon%3A1263059","Bifidobacterium longum CAG:69"]]},{"id":"GTDB:s__Bifidobacterium_longum","l":"","na":3,"nb":60,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["NCBITaxon%3A1883427","Actinomycetes bacterium"],["NCBITaxon%3A3077420","Acutalibacteraceae bacterium"],["NCBITaxon%3A328813","Alistipes onderdonkii"],["NCBITaxon%3A46506","Bacteroides stercoris"],["NCBITaxon%3A2291324","Bifidobacteriaceae bacterium"],["NCBITaxon%3A2569487","Bifidobacteriaceae bacterium MCC01972"]]},{"id":"NCBITaxon:190972","l":"Sedimentibacter","na":3,"nb":56,"a":[["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["QY2S1_Dehalogenimonas_BFR_Bioremediation_Consortium.html","QY2-S1 Dehalogenimonas-Rich Brominated-Flame-Retardant Consortium"],["Waste_Sludge_Electrofermentation_Biofilm_Suspension_Community.html","Waste-Sludge Electro-Fermentation Biofilm-Suspension Community"]],"b":[["NCBITaxon%3A913099","Sedimentibacter acidaminivorans"],["NCBITaxon%3A178338","Sedimentibacter hongkongensis"],["NCBITaxon%3A29345","Sedimentibacter hydroxybenzoicus"],["NCBITaxon%3A1123245","Sedimentibacter hydroxybenzoicus DSM 7310"],["NCBITaxon%3A130788","Sedimentibacter saalensis"],["NCBITaxon%3A1123246","Sedimentibacter saalensis DSM 13558"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":3,"nb":56,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A61645","Enterobacter asburiae"],["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A1328422","Enterobacter cloacae BIDMC 33A"],["NCBITaxon%3A1439324","Enterobacter cloacae BIDMC 66"],["NCBITaxon%3A1439325","Enterobacter cloacae BIDMC 67"],["NCBITaxon%3A1329846","Enterobacter cloacae BIDMC 8"]]},{"id":"NCBITaxon:821","l":"Phocaeicola vulgatus","na":3,"nb":49,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A820","Bacteroides uniformis"],["NCBITaxon%3A411479","Bacteroides uniformis ATCC 8492"],["NCBITaxon%3A821","Phocaeicola vulgatus"],["NCBITaxon%3A1125631","Phocaeicola vulgatus 274-1D4"],["NCBITaxon%3A435590","Phocaeicola vulgatus ATCC 8482"],["NCBITaxon%3A1263056","Phocaeicola vulgatus CAG:6"]]},{"id":"GTDB:s__Bifidobacterium_breve","l":"","na":3,"nb":46,"a":[["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["NCBITaxon%3A1697798","Actinobacteria bacterium UC5.1-1C2"],["NCBITaxon%3A2569493","Bifidobacteriaceae bacterium MCC01950"],["NCBITaxon%3A2569494","Bifidobacteriaceae bacterium MCC01951"],["NCBITaxon%3A2569500","Bifidobacteriaceae bacterium MCC01953"],["NCBITaxon%3A2569498","Bifidobacteriaceae bacterium MCC01954"],["NCBITaxon%3A2569501","Bifidobacteriaceae bacterium MCC01957"]]},{"id":"GTDB:s__Phocaeicola_vulgatus","l":"","na":3,"nb":44,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A3077420","Acutalibacteraceae bacterium"],["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A1146296","bacterium NLAE-zl-P430"],["NCBITaxon%3A2212467","Bacteroidaceae bacterium"],["NCBITaxon%3A29523","Bacteroides sp."],["NCBITaxon%3A469593","Bacteroides sp. 3_1_40A"]]},{"id":"GTDB:s__Lactococcus_lactis","l":"","na":3,"nb":40,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]],"b":[["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A1359","Lactococcus cremoris"],["NCBITaxon%3A1358","Lactococcus lactis"],["NCBITaxon%3A1408188","Lactococcus lactis RTB018"],["NCBITaxon%3A203404","Lactococcus lactis subsp. hordniae"],["NCBITaxon%3A1348656","Lactococcus lactis subsp. hordniae NBRC 100931"]]},{"id":"GTDB:s__Enterobacter_kobei","l":"","na":3,"nb":38,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A2027919","Enterobacter cloacae complex sp."],["NCBITaxon%3A3415634","Enterobacter cloacae complex sp. 2025EL-00065"],["NCBITaxon%3A3395858","Enterobacter cloacae complex sp. 310G5"],["NCBITaxon%3A3395837","Enterobacter cloacae complex sp. 330C8"],["NCBITaxon%3A3412325","Enterobacter cloacae complex sp. BZL2004"]]},{"id":"GTDB:s__Lactiplantibacillus_plantarum","l":"","na":3,"nb":37,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Pichia_Lactiplantibacillus_CCMA_Plant_Beverage_Coculture.html","Pichia-Lactiplantibacillus CCMA Plant Beverage Coculture"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["NCBITaxon%3A271881","Lactiplantibacillus argentoratensis"],["NCBITaxon%3A1423831","Lactiplantibacillus argentoratensis DSM 16365"],["NCBITaxon%3A1590","Lactiplantibacillus plantarum"],["NCBITaxon%3A1327988","Lactiplantibacillus plantarum 16"],["NCBITaxon%3A1399793","Lactiplantibacillus plantarum 19L3"],["NCBITaxon%3A1385856","Lactiplantibacillus plantarum 2025"]]},{"id":"NCBITaxon:4919","l":"Pichia","na":3,"nb":37,"a":[["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["NCBITaxon%3A266127","Sphingomonas soli"],["NCBITaxon%3A1219055","Sphingomonas soli NBRC 100801"],["NCBITaxon%3A551772","Pichia awuae"],["NCBITaxon%3A1249861","Pichia cabralensis"],["NCBITaxon%3A53657","Pichia cactophila"],["NCBITaxon%3A460514","Pichia californica"]]},{"id":"NCBITaxon:1685","l":"Bifidobacterium breve","na":3,"nb":34,"a":[["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["NCBITaxon%3A1681","Bifidobacterium bifidum"],["NCBITaxon%3A1685","Bifidobacterium breve"],["NCBITaxon%3A1385938","Bifidobacterium breve 12L"],["NCBITaxon%3A1385943","Bifidobacterium breve 2L"],["NCBITaxon%3A1385944","Bifidobacterium breve 31L"],["NCBITaxon%3A1385942","Bifidobacterium breve 689b"]]},{"id":"GTDB:s__Enterobacter_roggenkampii","l":"","na":3,"nb":33,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A2887193","Enterobacter cloacae complex sp. 2021EL-01169"],["NCBITaxon%3A3374272","Enterobacter cloacae complex sp. 2024EL-00227"],["NCBITaxon%3A3412324","Enterobacter cloacae complex sp. BZL2003"],["NCBITaxon%3A3412326","Enterobacter cloacae complex sp. BZL2005"],["NCBITaxon%3A2080664","Enterobacter cloacae complex sp. ECNIH14"]]},{"id":"NCBITaxon:28116","l":"Bacteroides ovatus","na":3,"nb":33,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["NCBITaxon%3A28116","Bacteroides ovatus"],["NCBITaxon%3A665954","Bacteroides ovatus 3_8_47FAA"],["NCBITaxon%3A411476","Bacteroides ovatus ATCC 8483"],["NCBITaxon%3A1263050","Bacteroides ovatus CAG:22"],["NCBITaxon%3A997885","Bacteroides ovatus CL02T12C04"],["NCBITaxon%3A997886","Bacteroides ovatus CL03T12C18"]]},{"id":"GTDB:s__Enterobacter_chengduensis","l":"","na":3,"nb":32,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A61645","Enterobacter asburiae"],["NCBITaxon%3A2494701","Enterobacter chengduensis"],["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A1439328","Enterobacter cloacae BWH 43"],["NCBITaxon%3A2913213","Enterobacter cloacae complex sp. ECC445"],["NCBITaxon%3A3412361","Enterobacter cloacae complex sp. IR5414"]]},{"id":"GTDB:s__Enterobacter_cloacae","l":"","na":3,"nb":29,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A3027862","Enterobacter cloacae complex sp. 2022EL-00981"],["NCBITaxon%3A3395880","Enterobacter cloacae complex sp. 275J9"],["NCBITaxon%3A3395873","Enterobacter cloacae complex sp. 277I4"],["NCBITaxon%3A3395830","Enterobacter cloacae complex sp. 292E8"],["NCBITaxon%3A3395879","Enterobacter cloacae complex sp. 309I3"]]},{"id":"NCBITaxon:1390","l":"Bacillus amyloliquefaciens","na":3,"nb":29,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]],"b":[["NCBITaxon%3A1390","Bacillus amyloliquefaciens"],["NCBITaxon%3A1421566","Bacillus amyloliquefaciens AB01"],["NCBITaxon%3A1421569","Bacillus amyloliquefaciens AP143"],["NCBITaxon%3A1421570","Bacillus amyloliquefaciens AP193"],["NCBITaxon%3A1421567","Bacillus amyloliquefaciens AP71"],["NCBITaxon%3A1421568","Bacillus amyloliquefaciens AP79"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":3,"nb":28,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["NCBITaxon%3A729","Haemophilus parainfluenzae"],["NCBITaxon%3A43306","Pseudomonas denitrificans (nom. rej.)"],["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A203192","Stutzerimonas chloritidismutans"],["NCBITaxon%3A3022791","Stutzerimonas decontaminans"]]},{"id":"GTDB:s__Kosakonia_cowanii","l":"","na":3,"nb":22,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A565","Atlantibacter hermannii"],["NCBITaxon%3A3041781","Atlantibacter sp. SORGH_AS_0304"],["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A1399146","Enterobacter cloacae S611"],["NCBITaxon%3A1951672","Enterobacteriaceae bacterium UBA3128"],["NCBITaxon%3A1951678","Enterobacteriaceae bacterium UBA3398"]]},{"id":"GTDB:s__Bifidobacterium_bifidum","l":"","na":3,"nb":19,"a":[["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["NCBITaxon%3A1883427","Actinomycetes bacterium"],["NCBITaxon%3A2569486","Bifidobacteriaceae bacterium MCC01946"],["NCBITaxon%3A2569503","Bifidobacteriaceae bacterium MCC01958"],["NCBITaxon%3A2569497","Bifidobacteriaceae bacterium MCC02030"],["NCBITaxon%3A1681","Bifidobacterium bifidum"],["NCBITaxon%3A500634","Bifidobacterium bifidum ATCC 29521 = JCM 1255 = DSM 20456"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":3,"nb":16,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["NCBITaxon%3A114136","Paenibacillus jamilae"],["NCBITaxon%3A225917","Paenibacillus massiliensis"],["NCBITaxon%3A1406","Paenibacillus polymyxa"],["NCBITaxon%3A1333863","Paenibacillus polymyxa 1-43"],["NCBITaxon%3A1414587","Paenibacillus polymyxa A18"],["NCBITaxon%3A1206104","Paenibacillus polymyxa ATCC 12321"]]},{"id":"NCBITaxon:587753","l":"Pseudomonas chlororaphis","na":3,"nb":16,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["NCBITaxon%3A587753","Pseudomonas chlororaphis"],["NCBITaxon%3A1343078","Pseudomonas chlororaphis HT66"],["NCBITaxon%3A1037915","Pseudomonas chlororaphis O6"],["NCBITaxon%3A1400530","Pseudomonas chlororaphis PCYL_1"],["NCBITaxon%3A86192","Pseudomonas chlororaphis subsp. aurantiaca"],["NCBITaxon%3A1415170","Pseudomonas chlororaphis subsp. aurantiaca PB-St2"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":3,"nb":15,"a":[["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["NCBITaxon%3A1681","Bifidobacterium bifidum"],["NCBITaxon%3A500634","Bifidobacterium bifidum ATCC 29521 = JCM 1255 = DSM 20456"],["NCBITaxon%3A484020","Bifidobacterium bifidum BGN4"],["NCBITaxon%3A1263058","Bifidobacterium bifidum CAG:234"],["NCBITaxon%3A1173065","Bifidobacterium bifidum CECT 7366"],["NCBITaxon%3A398515","Bifidobacterium bifidum DSM 20215"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":3,"nb":14,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["NCBITaxon%3A72360","Bacillus mojavensis"],["NCBITaxon%3A1051501","Bacillus mojavensis RO-H-1 = KCTC 3706"],["NCBITaxon%3A1478","Peribacillus simplex"],["NCBITaxon%3A86664","Priestia flexa"],["NCBITaxon%3A1404","Priestia megaterium"],["NCBITaxon%3A592022","Priestia megaterium DSM 319"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":11,"nb":3,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["NCBITaxon%3A2219225","Pseudomonas asiatica"],["NCBITaxon%3A1628086","Pseudomonas kribbensis"],["NCBITaxon%3A306","Pseudomonas sp."]]},{"id":"GTDB:s__Enterobacter_sichuanensis","l":"","na":3,"nb":10,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A1449089","Enterobacter cloacae subsp. cloacae SY-70"],["NCBITaxon%3A2071710","Enterobacter sichuanensis"],["NCBITaxon%3A42895","Enterobacter sp."],["NCBITaxon%3A1594172","Enterobacter sp. BIDMC92"],["NCBITaxon%3A2678687","Enterobacter sp. HSTU-ASh6"]]},{"id":"NCBITaxon:336809","l":"Candidatus Karelsulcia","na":3,"nb":10,"a":[["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"]],"b":[["NCBITaxon%3A336810","Candidatus Karelsulcia muelleri"],["NCBITaxon%3A706194","Candidatus Karelsulcia muelleri CARI"],["NCBITaxon%3A641892","Candidatus Karelsulcia muelleri DMIN"],["NCBITaxon%3A444179","Candidatus Karelsulcia muelleri GWSS"],["NCBITaxon%3A1189303","Candidatus Karelsulcia muelleri PSPU"],["NCBITaxon%3A595499","Candidatus Karelsulcia muelleri SMDSEM"]]},{"id":"NCBITaxon:2208","l":"Methanosarcina barkeri","na":3,"nb":9,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["NCBITaxon%3A2208","Methanosarcina barkeri"],["NCBITaxon%3A1434106","Methanosarcina barkeri 227"],["NCBITaxon%3A1434107","Methanosarcina barkeri 3"],["NCBITaxon%3A796385","Methanosarcina barkeri CM1"],["NCBITaxon%3A1298606","Methanosarcina barkeri JCM 10043"],["NCBITaxon%3A1434108","Methanosarcina barkeri MS"]]},{"id":"GTDB:s__Enterobacter_dissolvens","l":"","na":3,"nb":8,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A2969431","Enterobacter cloacae complex sp. R_G8"],["NCBITaxon%3A336306","Enterobacter cloacae subsp. cloacae"],["NCBITaxon%3A69219","Enterobacter cloacae subsp. dissolvens"],["NCBITaxon%3A1104326","Enterobacter cloacae subsp. dissolvens SDM"],["NCBITaxon%3A42895","Enterobacter sp."]]},{"id":"GTDB:s__Bacillus_A_cereus_S","l":"","na":7,"nb":3,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A526986","Bacillus cereus Rock3-44"],["NCBITaxon%3A1405","Bacillus mycoides"]]},{"id":"GTDB:s__Bacillus_A_hominis","l":"","na":7,"nb":3,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1053195","Bacillus cereus BAG6X1-2"],["NCBITaxon%3A2817478","Bacillus hominis"],["NCBITaxon%3A1405","Bacillus mycoides"]]},{"id":"GTDB:s__Methanococcus_maripaludis","l":"","na":3,"nb":6,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"]],"b":[["NCBITaxon%3A39152","Methanococcus maripaludis"],["NCBITaxon%3A637914","Methanococcus maripaludis KA1"],["NCBITaxon%3A637915","Methanococcus maripaludis OS7"],["NCBITaxon%3A267377","Methanococcus maripaludis S2"],["NCBITaxon%3A1053692","Methanococcus maripaludis X1"],["NCBITaxon%3A2690208","Methanococcus sp."]]},{"id":"GTDB:s__Methanosarcina_barkeri","l":"","na":3,"nb":6,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["NCBITaxon%3A2208","Methanosarcina barkeri"],["NCBITaxon%3A1434106","Methanosarcina barkeri 227"],["NCBITaxon%3A796385","Methanosarcina barkeri CM1"],["NCBITaxon%3A1298606","Methanosarcina barkeri JCM 10043"],["NCBITaxon%3A1434108","Methanosarcina barkeri MS"],["NCBITaxon%3A1860098","Methanosarcina sp. A14"]]},{"id":"GTDB:s__Stenotrophomonas_maltophilia_L","l":"","na":6,"nb":3,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A391008","Stenotrophomonas maltophilia R551-3"],["NCBITaxon%3A1118157","Stenotrophomonas maltophilia RA8"]]},{"id":"NCBITaxon:166486","l":"Roseburia intestinalis","na":3,"nb":6,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A166486","Roseburia intestinalis"],["NCBITaxon%3A1263104","Roseburia intestinalis CAG:13"],["NCBITaxon%3A536231","Roseburia intestinalis L1-82"],["NCBITaxon%3A657315","Roseburia intestinalis M50/1"],["NCBITaxon%3A1339593","Roseburia intestinalis TSDC19.2-1.1"],["NCBITaxon%3A718255","Roseburia intestinalis XB6B4"]]},{"id":"NCBITaxon:178606","l":"Leptospirillum ferriphilum","na":6,"nb":3,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["NCBITaxon%3A178606","Leptospirillum ferriphilum"],["NCBITaxon%3A1048260","Leptospirillum ferriphilum ML-04"],["NCBITaxon%3A1441628","Leptospirillum ferriphilum YSK"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":3,"nb":6,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["NCBITaxon%3A547018","Zhihengliuella alba"],["NCBITaxon%3A5061","Aspergillus niger"],["NCBITaxon%3A380704","Aspergillus niger ATCC 1015"],["NCBITaxon%3A1353008","Aspergillus niger ATCC 13496"],["NCBITaxon%3A1450533","Aspergillus niger CBS 101883"],["NCBITaxon%3A425011","Aspergillus niger CBS 513.88"]]},{"id":"NCBITaxon:853","l":"Faecalibacterium prausnitzii","na":3,"nb":6,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"]],"b":[["NCBITaxon%3A748224","Faecalibacterium cf. prausnitzii KLE1255"],["NCBITaxon%3A411483","Faecalibacterium duncaniae"],["NCBITaxon%3A853","Faecalibacterium prausnitzii"],["NCBITaxon%3A718252","Faecalibacterium prausnitzii L2-6"],["NCBITaxon%3A411485","Faecalibacterium prausnitzii M21/2"],["NCBITaxon%3A657322","Faecalibacterium prausnitzii SL3/3"]]},{"id":"NCBITaxon:881","l":"Nitratidesulfovibrio vulgaris","na":3,"nb":6,"a":[["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["DVM_Triculture.html","DVM Tri-culture"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"]],"b":[["NCBITaxon%3A32016","Nitratidesulfovibrio oxamicus"],["NCBITaxon%3A881","Nitratidesulfovibrio vulgaris"],["NCBITaxon%3A391774","Nitratidesulfovibrio vulgaris DP4"],["NCBITaxon%3A573059","Nitratidesulfovibrio vulgaris RCH1"],["NCBITaxon%3A882","Nitratidesulfovibrio vulgaris str. Hildenborough"],["NCBITaxon%3A883","Nitratidesulfovibrio vulgaris str. 'Miyazaki F'"]]},{"id":"GTDB:s__Clostridium_B_ljungdahlii","l":"","na":3,"nb":5,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["NCBITaxon%3A84023","Clostridium autoethanogenum"],["NCBITaxon%3A1341692","Clostridium autoethanogenum DSM 10061"],["NCBITaxon%3A1705578","Clostridium coskatii"],["NCBITaxon%3A1538","Clostridium ljungdahlii"],["NCBITaxon%3A748727","Clostridium ljungdahlii DSM 13528"]]},{"id":"NCBITaxon:28232","l":"Geobacter metallireducens","na":5,"nb":3,"a":[["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"]],"b":[["NCBITaxon%3A28232","Geobacter metallireducens"],["NCBITaxon%3A269799","Geobacter metallireducens GS-15"],["NCBITaxon%3A691164","Geobacter metallireducens RCH3"]]},{"id":"GTDB:s__Rhodopseudomonas_palustris_F","l":"","na":4,"nb":3,"a":[["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["NCBITaxon%3A1076","Rhodopseudomonas palustris"],["NCBITaxon%3A258594","Rhodopseudomonas palustris CGA009"],["NCBITaxon%3A395960","Rhodopseudomonas palustris TIE-1"]]},{"id":"GTDB:s__Syntrophomonas_methylbutyratica","l":"","na":4,"nb":3,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["NCBITaxon%3A2093811","Syntrophomonadaceae bacterium"],["NCBITaxon%3A863","Syntrophomonas wolfei"],["NCBITaxon%3A378794","Syntrophomonas wolfei subsp. methylbutyratica"]]},{"id":"NCBITaxon:1534","l":"Clostridium kluyveri","na":4,"nb":3,"a":[["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["NCBITaxon%3A1534","Clostridium kluyveri"],["NCBITaxon%3A431943","Clostridium kluyveri DSM 555"],["NCBITaxon%3A583346","Clostridium kluyveri NBRC 12016"]]},{"id":"NCBITaxon:239935","l":"Akkermansia muciniphila","na":3,"nb":3,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A239935","Akkermansia muciniphila"],["NCBITaxon%3A349741","Akkermansia muciniphila ATCC BAA-835"],["NCBITaxon%3A1263034","Akkermansia muciniphila CAG:154"]]},{"id":"NCBITaxon:1236","l":"Gammaproteobacteria","na":2,"nb":145676,"a":[["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["NCBITaxon%3A103492","2,4-D-degrading bacterium 010"],["NCBITaxon%3A103493","2,4-D-degrading bacterium 030"],["NCBITaxon%3A120969","abyssal strain AIII3*"],["NCBITaxon%3A2182787","Abyssibacter profundi"],["NCBITaxon%3A2320200","Abyssibacter sp."],["NCBITaxon%3A596095","Abyssogena phaseoliformis symbiont"]]},{"id":"NCBITaxon:28211","l":"Alphaproteobacteria","na":2,"nb":72845,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["NCBITaxon%3A119160","2,3-D degrading bacterium NHC2"],["NCBITaxon%3A119159","2,3-D degrading bacterium NHG3"],["NCBITaxon%3A103494","2,4-D-degrading bacterium 022"],["NCBITaxon%3A83493","2,4-D degrading bacterium 2,4-D1"],["NCBITaxon%3A103496","2,4-D-degrading bacterium 524"],["NCBITaxon%3A83492","2,4-D degrading bacterium B6-10"]]},{"id":"NCBITaxon:1117","l":"Cyanobacteriota","na":2,"nb":36120,"a":[["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]],"b":[["NCBITaxon%3A3106961","Acaryochloridaceae cyanobacterium"],["NCBITaxon%3A2720417","Acaryochloridaceae cyanobacterium CSU_3_4"],["NCBITaxon%3A2720418","Acaryochloridaceae cyanobacterium CSU_5_19"],["NCBITaxon%3A2964578","Acaryochloridaceae cyanobacterium OTE_25_metabat_464"],["NCBITaxon%3A2964579","Acaryochloridaceae cyanobacterium OTE_75_metabat_521"],["NCBITaxon%3A2720424","Acaryochloridaceae cyanobacterium RL_2_7"]]},{"id":"NCBITaxon:28216","l":"Betaproteobacteria","na":2,"nb":31526,"a":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]],"b":[["NCBITaxon%3A103498","2,4-D-degrading bacterium 001"],["NCBITaxon%3A103499","2,4-D-degrading bacterium 007"],["NCBITaxon%3A103495","2,4-D-degrading bacterium 012"],["NCBITaxon%3A103500","2,4-D-degrading bacterium 017"],["NCBITaxon%3A103501","2,4-D-degrading bacterium 018"],["NCBITaxon%3A103502","2,4-D-degrading bacterium 019"]]},{"id":"NCBITaxon:28890","l":"Methanobacteriota","na":2,"nb":8091,"a":[["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Thermophilic_ExSitu_Biomethanation_Mixed_Culture.html","Thermophilic Ex-Situ Biomethanation Mixed Culture"]],"b":[["NCBITaxon%3A3879924","Abyssiniarchaeum dallolvicinus (SeqCode)"],["NCBITaxon%3A3138747","Afararchaeum irisae (SeqCode)"],["NCBITaxon%3A81399","anaerobic hyperthermophile Gorda1"],["NCBITaxon%3A2056317","ANME-2 cluster archaeon"],["NCBITaxon%3A114585","archaeal str. vp183"],["NCBITaxon%3A114587","archaeal str. vp21"]]},{"id":"NCBITaxon:1763","l":"Mycobacterium","na":2,"nb":7532,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["NCBITaxon%3A3110407","Candidatus Mycobacterium methanica"],["NCBITaxon%3A2943498","Candidatus Mycobacterium methanotrophicum"],["NCBITaxon%3A3027808","Candidatus Mycobacterium wuenschmannii"],["NCBITaxon%3A1682113","Mycobacterium adipatum"],["NCBITaxon%3A470075","Mycobacterium aemonae"],["NCBITaxon%3A1964395","Mycobacterium ahvazicum"]]},{"id":"NCBITaxon:1663","l":"Arthrobacter","na":2,"nb":6277,"a":[["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A132932","Acetobacterium tundrae"],["NCBITaxon%3A37921","Arthrobacter agilis"],["NCBITaxon%3A369936","Arthrobacter alkaliphilus"],["NCBITaxon%3A656366","Arthrobacter alpinus"],["NCBITaxon%3A3046203","Arthrobacter antibioticus"],["NCBITaxon%3A2895818","Arthrobacter antioxidans"]]},{"id":"NCBITaxon:33882","l":"Microbacterium","na":2,"nb":5935,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A196883","Arctic sea ice bacterium ARK10030"],["NCBITaxon%3A3121366","Candidatus Microbacterium colombiense"],["NCBITaxon%3A3121374","Candidatus Microbacterium phytovorans"],["NCBITaxon%3A2838696","Candidatus Microbacterium pullistercoris"],["NCBITaxon%3A2838697","Candidatus Microbacterium stercoravium"],["NCBITaxon%3A272239","Gulosibacter bifidus"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":4740,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["NCBITaxon%3A475088","Methanosphaerula palustris"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1389955","Escherichia coli ATCC 35150"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A574","Klebsiella pneumoniae subsp. ozaenae"],["NCBITaxon%3A1218098","Klebsiella pneumoniae subsp. ozaenae NBRC 105683"]]},{"id":"GTDB:s__Staphylococcus_aureus","l":"","na":2,"nb":4208,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A548","Klebsiella aerogenes"],["NCBITaxon%3A1280","Staphylococcus aureus"],["NCBITaxon%3A703339","Staphylococcus aureus 04-02981"],["NCBITaxon%3A1413350","Staphylococcus aureus 07-03450"],["NCBITaxon%3A1413351","Staphylococcus aureus 07-03451"]]},{"id":"GTDB:s__Salmonella_enterica","l":"","na":2,"nb":3879,"a":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["NCBITaxon%3A2572084","Campylobacter sp. CFSAN093238"],["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59203","Salmonella enterica subsp. arizonae"],["NCBITaxon%3A1192839","Salmonella enterica subsp. arizonae serovar 18:z4,z23:-"],["NCBITaxon%3A1395115","Salmonella enterica subsp. arizonae serovar 18:z4,z23:- str. CVM N23850"],["NCBITaxon%3A1395109","Salmonella enterica subsp. arizonae serovar 18:z4,z23:- str. CVM N7307"]]},{"id":"NCBITaxon:200940","l":"Thermodesulfobacteriota","na":2,"nb":2781,"a":[["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["Tropidoatractus_Magnetotacticus_Tripartite_Syntrophy.html","Tropidoatractus magnetotacticus Magnetotactic Ciliate Tripartite Syntrophy"]],"b":[["NCBITaxon%3A318481","Algorimarina butyrica"],["NCBITaxon%3A293256","Alkalidesulfovibrio alkalitolerans"],["NCBITaxon%3A1121439","Alkalidesulfovibrio alkalitolerans DSM 16529"],["NCBITaxon%3A340094","anaerobic syntrophic bacterium NE23-3"],["NCBITaxon%3A1929485","Bilophila sp."],["NCBITaxon%3A693988","Bilophila sp. 4_1_30"]]},{"id":"NCBITaxon:5204","l":"Basidiomycota","na":2,"nb":1376,"a":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"]],"b":[["NCBITaxon%3A137743","Abortiporus biennis"],["NCBITaxon%3A215250","Acaromyces ingoldii"],["NCBITaxon%3A1333626","Adustoporia sinuosa"],["NCBITaxon%3A2819351","Agaricus alboumbonatus"],["NCBITaxon%3A1606717","Agaricus argenteus"],["NCBITaxon%3A535738","Agaricus aristocratus"]]},{"id":"NCBITaxon:2034","l":"Curtobacterium","na":2,"nb":1258,"a":[["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"]],"b":[["NCBITaxon%3A1708","Cellulomonas fimi"],["NCBITaxon%3A590998","Cellulomonas fimi ATCC 484"],["NCBITaxon%3A41988","Cryobacterium psychrophilum"],["NCBITaxon%3A2841594","Curtobacterium aetherium"],["NCBITaxon%3A395387","Curtobacterium ammoniigenes"],["NCBITaxon%3A1223517","Curtobacterium ammoniigenes NBRC 101786"]]},{"id":"NCBITaxon:28889","l":"Thermoproteota","na":2,"nb":1242,"a":[["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Soil_Corrinoid_B12_Reservoir_Community.html","Soil Corrinoid Reservoir Microbial Community"]],"b":[["NCBITaxon%3A2283","Acidianus ambivalens"],["NCBITaxon%3A41673","Acidianus brierleyi"],["NCBITaxon%3A269667","Acidianus convivator"],["NCBITaxon%3A563177","Acidianus hospitalis"],["NCBITaxon%3A933801","Acidianus hospitalis W1"],["NCBITaxon%3A12915","Acidianus infernus"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":2,"nb":1075,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A1311139","Acinetobacter baumannii 016901DP_1"],["NCBITaxon%3A1311140","Acinetobacter baumannii 016901DP_2"],["NCBITaxon%3A1310784","Acinetobacter baumannii 1007214"],["NCBITaxon%3A1310751","Acinetobacter baumannii 1022959"],["NCBITaxon%3A1310586","Acinetobacter baumannii 1031433"]]},{"id":"NCBITaxon:84567","l":"Pedobacter","na":2,"nb":889,"a":[["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A3121371","Candidatus Pedobacter colombiensis"],["NCBITaxon%3A2807681","Nubsella sp. EM7"],["NCBITaxon%3A1325323","Nubsella sp. EsD18"],["NCBITaxon%3A1362345","Nubsella sp. Ri3Pt_4400"],["NCBITaxon%3A151894","Pedobacter africanus"],["NCBITaxon%3A454586","Pedobacter agri"]]},{"id":"NCBITaxon:12916","l":"Acidovorax","na":2,"nb":822,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["NCBITaxon%3A192388","Acidovorax aerodenitrificans"],["NCBITaxon%3A2976702","Acidovorax bellezanensis"],["NCBITaxon%3A2987520","Acidovorax benzenivorans"],["NCBITaxon%3A553814","Acidovorax carolinensis"],["NCBITaxon%3A1675792","Acidovorax cavernicola"],["NCBITaxon%3A86669","Acidovorax defluvii"]]},{"id":"NCBITaxon:1696","l":"Brevibacterium","na":2,"nb":794,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["NCBITaxon%3A943903","bacterium Osw"],["NCBITaxon%3A417948","Brevibacterium album"],["NCBITaxon%3A1121122","Brevibacterium album DSM 18261"],["NCBITaxon%3A1046555","Brevibacterium ammoniilyticum"],["NCBITaxon%3A2683611","Brevibacterium anseongense"],["NCBITaxon%3A239268","Brevibacterium antarcticum"]]},{"id":"GTDB:s__Acinetobacter_baumannii","l":"","na":2,"nb":782,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A1310784","Acinetobacter baumannii 1007214"],["NCBITaxon%3A1310751","Acinetobacter baumannii 1022959"],["NCBITaxon%3A1310586","Acinetobacter baumannii 1031433"],["NCBITaxon%3A1310571","Acinetobacter baumannii 1032241"],["NCBITaxon%3A1310572","Acinetobacter baumannii 1032359"]]},{"id":"NCBITaxon:75","l":"Caulobacter","na":2,"nb":704,"a":[["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["NCBITaxon%3A1871086","Brevundimonas sp."],["NCBITaxon%3A1249558","Caulobacter daechungensis"],["NCBITaxon%3A2172652","Caulobacter endophyticus"],["NCBITaxon%3A459277","Caulobacter endosymbiont of Tamarixia radiata"],["NCBITaxon%3A312030","Caulobacter endosymbiont of Tetranychus urticae"],["NCBITaxon%3A1679497","Caulobacter flavus"]]},{"id":"NCBITaxon:2053","l":"Gordonia","na":2,"nb":680,"a":[["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Nitratireductor_Gordonia_Z123_LDPE_Degradation_SynCom.html","Nitratireductor-Gordonia Z123 LDPE-Degradation SynCom"]],"b":[["NCBITaxon%3A3022769","Gordonia abscondita"],["NCBITaxon%3A36820","Gordonia aichiensis"],["NCBITaxon%3A1220583","Gordonia aichiensis NBRC 108223"],["NCBITaxon%3A1292359","Gordonia ajococcus"],["NCBITaxon%3A1053547","Gordonia alkaliphila"],["NCBITaxon%3A84096","Gordonia alkanivorans"]]},{"id":"NCBITaxon:52972","l":"Polaromonas","na":2,"nb":514,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["NCBITaxon%3A332657","Polaromonas aquatica"],["NCBITaxon%3A866565","Polaromonas cryoconiti"],["NCBITaxon%3A1614635","Polaromonas eurypsychrophila"],["NCBITaxon%3A363842","Polaromonas ginsengisoli"],["NCBITaxon%3A866564","Polaromonas glacialis"],["NCBITaxon%3A335476","Polaromonas hydrogenivorans"]]},{"id":"NCBITaxon:46913","l":"Devosia","na":2,"nb":421,"a":[["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["NCBITaxon%3A196772","Arctic sea ice bacterium ARK10037"],["NCBITaxon%3A223181","Candidatus Devosia euplotis"],["NCBITaxon%3A3121372","Candidatus Devosia phytovorans"],["NCBITaxon%3A2911541","Candidatus Devosia symbiotica"],["NCBITaxon%3A3152360","Devosia alba"],["NCBITaxon%3A429726","Devosia albogilva"]]},{"id":"NCBITaxon:423349","l":"Mucilaginibacter","na":2,"nb":352,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["NCBITaxon%3A2599294","Mucilaginibacter achroorhodeus"],["NCBITaxon%3A2695265","Mucilaginibacter agri"],["NCBITaxon%3A1815558","Mucilaginibacter amnicola"],["NCBITaxon%3A869718","Mucilaginibacter angelicae"],["NCBITaxon%3A1855725","Mucilaginibacter antarcticus"],["NCBITaxon%3A1187081","Mucilaginibacter aquaedulcis"]]},{"id":"NCBITaxon:79328","l":"Chitinophaga","na":2,"nb":284,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A2703787","Chitinophaga agri"],["NCBITaxon%3A2607653","Chitinophaga agrisoli"],["NCBITaxon%3A2203219","Chitinophaga alhagiae"],["NCBITaxon%3A29529","Chitinophaga arvensicola"],["NCBITaxon%3A2675051","Chitinophaga aurantiaca"],["NCBITaxon%3A1647451","Chitinophaga barathri"]]},{"id":"NCBITaxon:2207","l":"Methanosarcina","na":2,"nb":269,"a":[["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Thermophilic_ExSitu_Biomethanation_Mixed_Culture.html","Thermophilic Ex-Situ Biomethanation Mixed Culture"]],"b":[["NCBITaxon%3A2214","Methanosarcina acetivorans"],["NCBITaxon%3A188937","Methanosarcina acetivorans C2A"],["NCBITaxon%3A3073890","Methanosarcina baikalica"],["NCBITaxon%3A109046","Methanosarcina baltica"],["NCBITaxon%3A1434105","Methanosarcina baltica GS1-A"],["NCBITaxon%3A2208","Methanosarcina barkeri"]]},{"id":"NCBITaxon:75654","l":"Duganella","na":2,"nb":259,"a":[["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["NCBITaxon%3A2703883","Duganella aceris"],["NCBITaxon%3A132929","Duganella aff. zoogloeoides 14.15"],["NCBITaxon%3A2666081","Duganella alba"],["NCBITaxon%3A2666082","Duganella aquatilis"],["NCBITaxon%3A2885762","Duganella caerulea"],["NCBITaxon%3A2561932","Duganella callida"]]},{"id":"NCBITaxon:142182","l":"Gemmatimonadota","na":2,"nb":249,"a":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"]],"b":[["NCBITaxon%3A234666","bacterium Ellin5220"],["NCBITaxon%3A234674","bacterium Ellin5290"],["NCBITaxon%3A234675","bacterium Ellin5301"],["NCBITaxon%3A3056743","Candidatus Benthicola azotiphorus"],["NCBITaxon%3A3056742","Candidatus Benthicola marisminoris"],["NCBITaxon%3A3101352","Candidatus Benthicola sp."]]},{"id":"NCBITaxon:118562","l":"Limnospira platensis","na":2,"nb":241,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Microalgae_Cyanobacteria_Bioactive_Peptide_Consortia.html","Microalgae-Cyanobacteria Bioactive Peptide Consortia"]],"b":[["NCBITaxon%3A2692892","Arthrospira platensis FACHB-835"],["NCBITaxon%3A118562","Limnospira platensis"],["NCBITaxon%3A1473217","Limnospira platensis 1TEX"],["NCBITaxon%3A2866638","Limnospira platensis 3SAE"],["NCBITaxon%3A1229390","Limnospira platensis 540"],["NCBITaxon%3A2184488","Limnospira platensis A"]]},{"id":"NCBITaxon:1234","l":"Nitrospira","na":2,"nb":181,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"]],"b":[["NCBITaxon%3A3020900","Candidatus Nitrospira allomarina"],["NCBITaxon%3A463288","Candidatus Nitrospira bockiana"],["NCBITaxon%3A1715989","Candidatus Nitrospira inopinata"],["NCBITaxon%3A3721632","Candidatus Nitrospira jureiensis"],["NCBITaxon%3A2652173","Candidatus Nitrospira kreftii"],["NCBITaxon%3A3020899","Candidatus Nitrospira neomarina"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":2,"nb":176,"a":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A90371","Salmonella enterica subsp. enterica serovar Typhimurium"],["NCBITaxon%3A1173928","Salmonella enterica subsp. enterica serovar Typhimurium str. 0052"],["NCBITaxon%3A1114946","Salmonella enterica subsp. enterica serovar Typhimurium str. 00-01036"],["NCBITaxon%3A1173930","Salmonella enterica subsp. enterica serovar Typhimurium str. 0364"]]},{"id":"NCBITaxon:2160","l":"Methanobacterium","na":2,"nb":162,"a":[["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"]],"b":[["NCBITaxon%3A256826","Methanobacterium aarhusense"],["NCBITaxon%3A1615586","Methanobacterium aggregans"],["NCBITaxon%3A392018","Methanobacterium alcaliphilum"],["NCBITaxon%3A2731220","Methanobacterium alkalithermotolerans"],["NCBITaxon%3A386456","Methanobacterium arcticum"],["NCBITaxon%3A2584467","Methanobacterium aridiramus"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":2,"nb":156,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["NCBITaxon%3A1428","Bacillus thuringiensis"],["NCBITaxon%3A1340496","Bacillus thuringiensis AKS-7"],["NCBITaxon%3A714359","Bacillus thuringiensis BMB171"],["NCBITaxon%3A1423143","Bacillus thuringiensis Bt18247"],["NCBITaxon%3A1423142","Bacillus thuringiensis Bt18679"],["NCBITaxon%3A527021","Bacillus thuringiensis Bt407"]]},{"id":"NCBITaxon:79206","l":"Desulfosporosinus","na":2,"nb":154,"a":[["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"]],"b":[["NCBITaxon%3A2043169","Candidatus Desulfosporosinus infrequens"],["NCBITaxon%3A3401928","Candidatus Desulfosporosinus nitrosoreducens"],["NCBITaxon%3A476652","Desulfosporosinus acididurans"],["NCBITaxon%3A885581","Desulfosporosinus acidiphilus"],["NCBITaxon%3A646529","Desulfosporosinus acidiphilus SJ4"],["NCBITaxon%3A56760","Desulfosporosinus auripigmenti"]]},{"id":"NCBITaxon:522","l":"Acidiphilium","na":2,"nb":149,"a":[["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"]],"b":[["NCBITaxon%3A76588","Acidiphilium acidophilum"],["NCBITaxon%3A1307921","Acidiphilium acidophilum DSM 700"],["NCBITaxon%3A523","Acidiphilium angustum"],["NCBITaxon%3A1408418","Acidiphilium angustum ATCC 35903"],["NCBITaxon%3A524","Acidiphilium cryptum"],["NCBITaxon%3A349163","Acidiphilium cryptum JF-5"]]},{"id":"NCBITaxon:40222","l":"Methylophaga","na":2,"nb":131,"a":[["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"]],"b":[["NCBITaxon%3A182774","Methylophaga alcalica"],["NCBITaxon%3A754477","Methylophaga frappieri"],["NCBITaxon%3A999151","Methylophaga lonarensis"],["NCBITaxon%3A1286106","Methylophaga lonarensis MPL"],["NCBITaxon%3A45495","Methylophaga marina"],["NCBITaxon%3A1122235","Methylophaga marina DSM 5689"]]},{"id":"GTDB:s__Klebsiella_variicola","l":"","na":2,"nb":95,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["NCBITaxon%3A1442122","bacterium CSR-63"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1134687","Klebsiella michiganensis"],["NCBITaxon%3A571","Klebsiella oxytoca"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A1463165","Klebsiella quasipneumoniae"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":2,"nb":66,"a":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["NCBITaxon%3A382","Sinorhizobium meliloti"],["NCBITaxon%3A266834","Sinorhizobium meliloti 1021"],["NCBITaxon%3A1194706","Sinorhizobium meliloti 1A42"],["NCBITaxon%3A1286640","Sinorhizobium meliloti 2011"],["NCBITaxon%3A1041151","Sinorhizobium meliloti 4H41"],["NCBITaxon%3A1194707","Sinorhizobium meliloti 5A14"]]},{"id":"GTDB:s__Bacillus_A_wiedmannii","l":"","na":2,"nb":47,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A2920296","Bacillus cereus group sp. BfR-BA-01319"],["NCBITaxon%3A2920300","Bacillus cereus group sp. BfR-BA-01324"],["NCBITaxon%3A3040244","Bacillus cereus group sp. MG4"],["NCBITaxon%3A3040245","Bacillus cereus group sp. MG7w"],["NCBITaxon%3A3041344","Bacillus cereus group sp. MS39"]]},{"id":"GTDB:s__Limnospira_fusiformis","l":"","na":2,"nb":44,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Microalgae_Cyanobacteria_Bioactive_Peptide_Consortia.html","Microalgae-Cyanobacteria Bioactive Peptide Consortia"]],"b":[["NCBITaxon%3A1982223","Arthrospira sp. O9.13F"],["NCBITaxon%3A1640536","Arthrospira sp. TJSD091"],["NCBITaxon%3A2153484","Arthrospira sp. TJSD092"],["NCBITaxon%3A1118279","Limnoraphis robusta"],["NCBITaxon%3A2759955","Limnospira fusiformis KN01"],["NCBITaxon%3A3076243","Limnospira fusiformis LS22"]]},{"id":"NCBITaxon:644","l":"Aeromonas hydrophila","na":2,"nb":44,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["NCBITaxon%3A105751","Aeromonas bestiarum"],["NCBITaxon%3A648","Aeromonas caviae"],["NCBITaxon%3A196024","Aeromonas dhakensis"],["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A1073378","Aeromonas hydrophila 07-345-3437"],["NCBITaxon%3A1268075","Aeromonas hydrophila 116"]]},{"id":"GTDB:s__Agrobacterium_leguminum","l":"","na":2,"nb":37,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["NCBITaxon%3A1183412","Agrobacterium deltae"],["NCBITaxon%3A1183425","Agrobacterium deltaense NCPPB 1641"],["NCBITaxon%3A1183426","Agrobacterium deltaense RV3"],["NCBITaxon%3A1183427","Agrobacterium deltaense Zutra 3/1"],["NCBITaxon%3A2792015","Agrobacterium leguminum"],["NCBITaxon%3A362","Agrobacterium radiobacter"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":2,"nb":35,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["NCBITaxon%3A1183421","Agrobacterium fabacearum CFBP 5771"],["NCBITaxon%3A1300224","Agrobacterium fabacearum P4"],["NCBITaxon%3A1183429","Agrobacterium fabacearum S56"],["NCBITaxon%3A1368455","Agrobacterium fabacearum str. Foundi"],["NCBITaxon%3A1183430","Agrobacterium fabacearum TT111"],["NCBITaxon%3A1176649","Agrobacterium fabrum"]]},{"id":"GTDB:s__Aeromonas_hydrophila","l":"","na":2,"nb":34,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["NCBITaxon%3A648","Aeromonas caviae"],["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A1268078","Aeromonas hydrophila 226"],["NCBITaxon%3A1453502","Aeromonas hydrophila AD9"],["NCBITaxon%3A1419584","Aeromonas hydrophila J-1"],["NCBITaxon%3A1288394","Aeromonas hydrophila ML09-119"]]},{"id":"NCBITaxon:4930","l":"Saccharomyces","na":2,"nb":34,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["NCBITaxon%3A4932","Saccharomyces cerevisiae"],["NCBITaxon%3A1266529","Saccharomyces cerevisiae BY4743"],["NCBITaxon%3A1218710","Saccharomyces cerevisiae CBS 1585"],["NCBITaxon%3A764102","Saccharomyces cerevisiae FostersB"],["NCBITaxon%3A764101","Saccharomyces cerevisiae FostersO"],["NCBITaxon%3A1220494","Saccharomyces cerevisiae PE-2"]]},{"id":"GTDB:s__Agrobacterium_pusense","l":"","na":2,"nb":32,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["NCBITaxon%3A1183436","Agrobacterium genomosp. 2 str. CFBP 5494"],["NCBITaxon%3A648995","Agrobacterium pusense"],["NCBITaxon%3A361","Agrobacterium sp."],["NCBITaxon%3A1279031","Agrobacterium sp. 33MFTa1.1"],["NCBITaxon%3A3128901","Agrobacterium sp. CMT1"],["NCBITaxon%3A2420311","Agrobacterium sp. FDAARGOS_525"]]},{"id":"NCBITaxon:395331","l":"Methanoregula","na":2,"nb":31,"a":[["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Tropidoatractus_Magnetotacticus_Tripartite_Syntrophy.html","Tropidoatractus magnetotacticus Magnetotactic Ciliate Tripartite Syntrophy"]],"b":[["NCBITaxon%3A358766","Methanoregula boonei"],["NCBITaxon%3A456442","Methanoregula boonei 6A8"],["NCBITaxon%3A3118214","Methanoregula endosymbiont of Brachonella contorta"],["NCBITaxon%3A3118215","Methanoregula endosymbiont of Brachonella pulchra"],["NCBITaxon%3A3118216","Methanoregula endosymbiont of Caenomorpha medusula"],["NCBITaxon%3A3118221","Methanoregula endosymbiont of Longitaenia gibba"]]},{"id":"GTDB:s__Sinorhizobium_meliloti","l":"","na":2,"nb":30,"a":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["NCBITaxon%3A2572900","Ensifer sp. SEMIA 134"],["NCBITaxon%3A2572901","Ensifer sp. SEMIA 135"],["NCBITaxon%3A2039285","Ensifer sp. T2_8"],["NCBITaxon%3A381","Mesorhizobium loti"],["NCBITaxon%3A158892","Sinorhizobium kummerowiae"],["NCBITaxon%3A382","Sinorhizobium meliloti"]]},{"id":"GTDB:s__Akkermansia_muciniphila","l":"","na":2,"nb":29,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A3077420","Acutalibacteraceae bacterium"],["NCBITaxon%3A239935","Akkermansia muciniphila"],["NCBITaxon%3A349741","Akkermansia muciniphila ATCC BAA-835"],["NCBITaxon%3A1263034","Akkermansia muciniphila CAG:154"],["NCBITaxon%3A1872421","Akkermansia sp."],["NCBITaxon%3A1896967","Akkermansia sp. 54_46"]]},{"id":"NCBITaxon:1305","l":"Streptococcus sanguinis","na":2,"nb":27,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1302","Streptococcus gordonii"],["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1305","Streptococcus sanguinis"],["NCBITaxon%3A1247655","Streptococcus sanguinis ATCC 15914"],["NCBITaxon%3A997356","Streptococcus sanguinis ATCC 29667"],["NCBITaxon%3A1073373","Streptococcus sanguinis CC94A"]]},{"id":"NCBITaxon:1335","l":"Streptococcus equinus","na":2,"nb":27,"a":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"]],"b":[["NCBITaxon%3A1335","Streptococcus equinus"],["NCBITaxon%3A1410675","Streptococcus equinus 2B"],["NCBITaxon%3A1210006","Streptococcus equinus ATCC 33317"],["NCBITaxon%3A864569","Streptococcus equinus ATCC 700338"],["NCBITaxon%3A525379","Streptococcus equinus ATCC 9812"],["NCBITaxon%3A1280690","Streptococcus equinus B315"]]},{"id":"NCBITaxon:5507","l":"Fusarium oxysporum","na":2,"nb":27,"a":[["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["NCBITaxon%3A5507","Fusarium oxysporum"],["NCBITaxon%3A72712","Fusarium oxysporum f. sp. albedinis"],["NCBITaxon%3A396571","Fusarium oxysporum f. sp. cepae"],["NCBITaxon%3A62683","Fusarium oxysporum f. sp. ciceris"],["NCBITaxon%3A100902","Fusarium oxysporum f. sp. conglutinans"],["NCBITaxon%3A660025","Fusarium oxysporum f. sp. conglutinans Fo5176"]]},{"id":"GTDB:s__Alteromonas_macleodii","l":"","na":2,"nb":26,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["NCBITaxon%3A2719013","Alteromonadaceae bacterium A_SAG1"],["NCBITaxon%3A2719014","Alteromonadaceae bacterium A_SAG2"],["NCBITaxon%3A1955811","Alteromonadales bacterium"],["NCBITaxon%3A28108","Alteromonas macleodii"],["NCBITaxon%3A529120","Alteromonas macleodii ATCC 27126"],["NCBITaxon%3A1004787","Alteromonas macleodii str. 'Balearic Sea AD45'"]]},{"id":"GTDB:s__Bacillus_A_albus","l":"","na":2,"nb":26,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["NCBITaxon%3A2026189","Bacillus albus"],["NCBITaxon%3A1392","Bacillus anthracis"],["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A3018122","Bacillus cereus group sp. Bc025"],["NCBITaxon%3A3018114","Bacillus cereus group sp. Bc177"],["NCBITaxon%3A3018112","Bacillus cereus group sp. Bc200"]]},{"id":"NCBITaxon:2173","l":"Methanobrevibacter smithii","na":2,"nb":26,"a":[["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"]],"b":[["NCBITaxon%3A2173","Methanobrevibacter smithii"],["NCBITaxon%3A420247","Methanobrevibacter smithii ATCC 35061"],["NCBITaxon%3A1263088","Methanobrevibacter smithii CAG:186"],["NCBITaxon%3A521001","Methanobrevibacter smithii DSM 11975"],["NCBITaxon%3A521002","Methanobrevibacter smithii DSM 2374"],["NCBITaxon%3A483214","Methanobrevibacter smithii DSM 2375"]]},{"id":"GTDB:s__Priestia_zanthoxyli","l":"","na":2,"nb":25,"a":[["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["NCBITaxon%3A1292019","Bacillus sp. 278922_107"],["NCBITaxon%3A1202456","Bacillus sp. Aph1"],["NCBITaxon%3A1895009","Bacillus sp. FJAT-26377"],["NCBITaxon%3A2930532","Bacillus sp. H8-1"],["NCBITaxon%3A671602","Bacillus sp. MB95"],["NCBITaxon%3A2744255","Bacillus sp. ME40"]]},{"id":"GTDB:s__Limnospira_platensis","l":"","na":2,"nb":19,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Microalgae_Cyanobacteria_Bioactive_Peptide_Consortia.html","Microalgae-Cyanobacteria Bioactive Peptide Consortia"]],"b":[["NCBITaxon%3A2692892","Arthrospira platensis FACHB-835"],["NCBITaxon%3A1982224","Arthrospira sp. PCC 8006"],["NCBITaxon%3A147317","Arthrospira sp. PCC 9108"],["NCBITaxon%3A2599626","Arthrospira sp. PLM2.Bin9"],["NCBITaxon%3A2828282","Arthrospira sp. SH-MAG29"],["NCBITaxon%3A1982226","Limnospira fusiformis CCALA 023"]]},{"id":"GTDB:s__Clostridium_butyricum","l":"","na":2,"nb":18,"a":[["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A1492","Clostridium butyricum"],["NCBITaxon%3A447214","Clostridium butyricum 5521"],["NCBITaxon%3A997898","Clostridium butyricum 60E.3"],["NCBITaxon%3A1280693","Clostridium butyricum AGR2140"],["NCBITaxon%3A1321950","Clostridium butyricum CWBI1009"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":2,"nb":16,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["NCBITaxon%3A1408","Bacillus pumilus"],["NCBITaxon%3A536229","Bacillus pumilus ATCC 7061"],["NCBITaxon%3A1227811","Bacillus pumilus BA06"],["NCBITaxon%3A1189615","Bacillus pumilus BL8"],["NCBITaxon%3A1350468","Bacillus pumilus CCMA-560"],["NCBITaxon%3A1330463","Bacillus pumilus CIMFR"]]},{"id":"NCBITaxon:244366","l":"Klebsiella variicola","na":2,"nb":16,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A576","Klebsiella sp."],["NCBITaxon%3A244366","Klebsiella variicola"],["NCBITaxon%3A507522","Klebsiella variicola 342"],["NCBITaxon%3A640131","Klebsiella variicola At-22"],["NCBITaxon%3A1438700","Klebsiella variicola BIDMC 61"]]},{"id":"GTDB:s__Stutzerimonas_stutzeri","l":"","na":2,"nb":15,"a":[["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["NCBITaxon%3A1914538","Pseudomonadaceae bacterium"],["NCBITaxon%3A1802004","Pseudomonadales bacterium RIFCSPHIGHO2_01_FULL_64_12"],["NCBITaxon%3A1977087","Pseudomonadota bacterium"],["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A2929472","Pseudomonas sp. JI-2"],["NCBITaxon%3A2717474","Pseudomonas sp. WS 5018"]]},{"id":"NCBITaxon:1492","l":"Clostridium butyricum","na":2,"nb":15,"a":[["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["NCBITaxon%3A1520","Clostridium beijerinckii"],["NCBITaxon%3A1492","Clostridium butyricum"],["NCBITaxon%3A634501","Clostridium butyricum 2CR37"],["NCBITaxon%3A447214","Clostridium butyricum 5521"],["NCBITaxon%3A997898","Clostridium butyricum 60E.3"],["NCBITaxon%3A1280693","Clostridium butyricum AGR2140"]]},{"id":"GTDB:s__Streptococcus_sanguinis","l":"","na":2,"nb":14,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1304","Streptococcus salivarius"],["NCBITaxon%3A1305","Streptococcus sanguinis"],["NCBITaxon%3A1073373","Streptococcus sanguinis CC94A"],["NCBITaxon%3A888821","Streptococcus sanguinis SK1057"],["NCBITaxon%3A888822","Streptococcus sanguinis SK1058"],["NCBITaxon%3A888823","Streptococcus sanguinis SK1059"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":2,"nb":14,"a":[["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["NCBITaxon%3A1076","Rhodopseudomonas palustris"],["NCBITaxon%3A74570","Rhodopseudomonas palustris ATCC 17001"],["NCBITaxon%3A74573","Rhodopseudomonas palustris ATCC 17007"],["NCBITaxon%3A316055","Rhodopseudomonas palustris BisA53"],["NCBITaxon%3A316056","Rhodopseudomonas palustris BisB18"],["NCBITaxon%3A316057","Rhodopseudomonas palustris BisB5"]]},{"id":"NCBITaxon:29466","l":"Veillonella parvula","na":2,"nb":14,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]],"b":[["NCBITaxon%3A39777","Veillonella atypica"],["NCBITaxon%3A29466","Veillonella parvula"],["NCBITaxon%3A1357417","Veillonella parvula AC2_8_11_AN_NA_2"],["NCBITaxon%3A768727","Veillonella parvula ACS-068-V-Sch12"],["NCBITaxon%3A686660","Veillonella parvula ATCC 17745"],["NCBITaxon%3A479436","Veillonella parvula DSM 2008"]]},{"id":"NCBITaxon:5498","l":"Cladosporium","na":2,"nb":14,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"]],"b":[["NCBITaxon%3A1338630","Cladosporium allicinum"],["NCBITaxon%3A29917","Cladosporium cladosporioides"],["NCBITaxon%3A643907","Cladosporium colombiae"],["NCBITaxon%3A1052093","Cladosporium fusiforme"],["NCBITaxon%3A1052096","Cladosporium halotolerans"],["NCBITaxon%3A29918","Cladosporium herbarum"]]},{"id":"GTDB:s__Priestia_megaterium","l":"","na":2,"nb":13,"a":[["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["NCBITaxon%3A3378802","Bacillus sp. Wb"],["NCBITaxon%3A412384","Priestia aryabhattai"],["NCBITaxon%3A1404","Priestia megaterium"],["NCBITaxon%3A592022","Priestia megaterium DSM 319"],["NCBITaxon%3A1348623","Priestia megaterium NBRC 15308 = ATCC 14581"],["NCBITaxon%3A1138452","Priestia megaterium NCT-2"]]},{"id":"GTDB:s__Roseburia_intestinalis","l":"","na":2,"nb":13,"a":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A3077420","Acutalibacteraceae bacterium"],["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A1689","Bifidobacterium dentium"],["NCBITaxon%3A2704657","Bulleidia sp."],["NCBITaxon%3A1898203","Lachnospiraceae bacterium"],["NCBITaxon%3A2485925","Oscillospiraceae bacterium"]]},{"id":"GTDB:s__Methanothrix_soehngenii","l":"","na":2,"nb":12,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["NCBITaxon%3A2026739","Methanobacteriota archaeon"],["NCBITaxon%3A1915557","Methanosaeta sp. UBA243"],["NCBITaxon%3A1915558","Methanosaeta sp. UBA332"],["NCBITaxon%3A1915559","Methanosaeta sp. UBA356"],["NCBITaxon%3A1915560","Methanosaeta sp. UBA372"],["NCBITaxon%3A1915561","Methanosaeta sp. UBA458"]]},{"id":"NCBITaxon:1148","l":"Synechocystis sp. PCC 6803","na":2,"nb":12,"a":[["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["NCBITaxon%3A1148","Synechocystis sp. PCC 6803"],["NCBITaxon%3A2932627","Synechocystis sp. PCC 6803 subst. PCC-Mn"],["NCBITaxon%3A2932628","Synechocystis sp. PCC 6803 subst. PCC-Pn"],["NCBITaxon%3A2962876","Synechocystis sp. PCC 6803 substr. D1-D170H"],["NCBITaxon%3A1080228","Synechocystis sp. PCC 6803 substr. GT-I"],["NCBITaxon%3A2932626","Synechocystis sp. PCC 6803 substr. GT-In"]]},{"id":"GTDB:s__Stutzerimonas_nitrititolerans","l":"","na":2,"nb":11,"a":[["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["NCBITaxon%3A1914538","Pseudomonadaceae bacterium"],["NCBITaxon%3A3003241","Pseudomonadaceae bacterium T75"],["NCBITaxon%3A1977087","Pseudomonadota bacterium"],["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A2479850","Pseudomonas sp. s199"],["NCBITaxon%3A1729723","Pseudomonas sp. TTU2014-066ASC"]]},{"id":"NCBITaxon:293387","l":"Bacillus altitudinis","na":2,"nb":10,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"]],"b":[["NCBITaxon%3A293387","Bacillus altitudinis"],["NCBITaxon%3A1255572","Bacillus altitudinis 263"],["NCBITaxon%3A1178544","Bacillus altitudinis 41KF2b"],["NCBITaxon%3A1326972","Bacillus altitudinis A23-8"],["NCBITaxon%3A1326971","Bacillus altitudinis C101"],["NCBITaxon%3A1326970","Bacillus altitudinis C16B11"]]},{"id":"NCBITaxon:29388","l":"Staphylococcus capitis","na":2,"nb":10,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"],["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["NCBITaxon%3A29388","Staphylococcus capitis"],["NCBITaxon%3A1441378","Staphylococcus capitis AYP1020"],["NCBITaxon%3A435838","Staphylococcus capitis C87"],["NCBITaxon%3A1296619","Staphylococcus capitis CR01"],["NCBITaxon%3A1394901","Staphylococcus capitis HOJ2SBS02"],["NCBITaxon%3A1189311","Staphylococcus capitis QN1"]]},{"id":"NCBITaxon:33959","l":"Lactobacillus johnsonii","na":2,"nb":10,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]],"b":[["NCBITaxon%3A1596","Lactobacillus gasseri"],["NCBITaxon%3A33959","Lactobacillus johnsonii"],["NCBITaxon%3A572503","Lactobacillus johnsonii 135-1-CHN"],["NCBITaxon%3A1033983","Lactobacillus johnsonii 16"],["NCBITaxon%3A525330","Lactobacillus johnsonii ATCC 33200"],["NCBITaxon%3A909954","Lactobacillus johnsonii DPC 6026"]]},{"id":"NCBITaxon:561879","l":"Bacillus safensis","na":2,"nb":10,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"]],"b":[["NCBITaxon%3A1408","Bacillus pumilus"],["NCBITaxon%3A561879","Bacillus safensis"],["NCBITaxon%3A1326975","Bacillus safensis B204-B1-5"],["NCBITaxon%3A1326976","Bacillus safensis D95"],["NCBITaxon%3A1178541","Bacillus safensis FO-36b"],["NCBITaxon%3A1326974","Bacillus safensis NH21E_2"]]},{"id":"GTDB:s__Anaerobutyricum_hallii","l":"","na":2,"nb":9,"a":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A39488","Anaerobutyricum hallii"],["NCBITaxon%3A1263078","Anaerobutyricum hallii CAG:12"],["NCBITaxon%3A411469","Anaerobutyricum hallii DSM 3353"],["NCBITaxon%3A2569098","Anaerobutyricum sp."],["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A1869227","bacterium"]]},{"id":"GTDB:s__Lysinibacillus_sp006864135","l":"","na":2,"nb":9,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]],"b":[["NCBITaxon%3A2936682","Lysinibacillus sp. Ag94"],["NCBITaxon%3A3028148","Lysinibacillus sp. CNPSo 3705"],["NCBITaxon%3A3364130","Lysinibacillus sp. NPDC086135"],["NCBITaxon%3A3364134","Lysinibacillus sp. NPDC095746"],["NCBITaxon%3A3390583","Lysinibacillus sp. NPDC096259"],["NCBITaxon%3A3364136","Lysinibacillus sp. NPDC096382"]]},{"id":"GTDB:s__Shewanella_oneidensis","l":"","na":9,"nb":2,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"],["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"],["Shewanella_Pseudomonas_Fe0_Electrosyntrophic_Denitrifying_Consortium.html","Shewanella oneidensis + Pseudomonas aeruginosa Fe0-dependent Electro-syntrophic Denitrifying Consortium"]],"b":[["NCBITaxon%3A70863","Shewanella oneidensis"],["NCBITaxon%3A211586","Shewanella oneidensis MR-1"]]},{"id":"GTDB:s__Streptococcus_equinus","l":"","na":2,"nb":9,"a":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"]],"b":[["NCBITaxon%3A1335","Streptococcus equinus"],["NCBITaxon%3A1410675","Streptococcus equinus 2B"],["NCBITaxon%3A1210006","Streptococcus equinus ATCC 33317"],["NCBITaxon%3A525379","Streptococcus equinus ATCC 9812"],["NCBITaxon%3A1280690","Streptococcus equinus B315"],["NCBITaxon%3A1280704","Streptococcus equinus SN033"]]},{"id":"GTDB:s__Streptococcus_pasteurianus","l":"","na":2,"nb":9,"a":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"]],"b":[["NCBITaxon%3A2291322","Streptococcaceae bacterium"],["NCBITaxon%3A864569","Streptococcus equinus ATCC 700338"],["NCBITaxon%3A315405","Streptococcus gallolyticus"],["NCBITaxon%3A59310","Streptococcus macedonicus"],["NCBITaxon%3A197614","Streptococcus pasteurianus"],["NCBITaxon%3A981540","Streptococcus pasteurianus ATCC 43144"]]},{"id":"GTDB:s__Streptococcus_ruminicola","l":"","na":2,"nb":9,"a":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"]],"b":[["NCBITaxon%3A1335","Streptococcus equinus"],["NCBITaxon%3A1294274","Streptococcus equinus JB1"],["NCBITaxon%3A102684","Streptococcus infantarius"],["NCBITaxon%3A150055","Streptococcus lutetiensis"],["NCBITaxon%3A2686210","Streptococcus ruminicola"],["NCBITaxon%3A1855326","Streptococcus sp. 45"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":2,"nb":9,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]],"b":[["NCBITaxon%3A28031","Lysinibacillus fusiformis"],["NCBITaxon%3A1130819","Lysinibacillus mangiferihumi"],["NCBITaxon%3A1421","Lysinibacillus sphaericus"],["NCBITaxon%3A444177","Lysinibacillus sphaericus C3-41"],["NCBITaxon%3A1400869","Lysinibacillus sphaericus CBAM5"],["NCBITaxon%3A1354027","Lysinibacillus sphaericus KCTC 3346"]]},{"id":"NCBITaxon:39152","l":"Methanococcus maripaludis","na":2,"nb":9,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"]],"b":[["NCBITaxon%3A39152","Methanococcus maripaludis"],["NCBITaxon%3A402880","Methanococcus maripaludis C5"],["NCBITaxon%3A444158","Methanococcus maripaludis C6"],["NCBITaxon%3A426368","Methanococcus maripaludis C7"],["NCBITaxon%3A637914","Methanococcus maripaludis KA1"],["NCBITaxon%3A637915","Methanococcus maripaludis OS7"]]},{"id":"GTDB:s__Acidiphilium_multivorum","l":"","na":2,"nb":8,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["NCBITaxon%3A349163","Acidiphilium cryptum JF-5"],["NCBITaxon%3A62140","Acidiphilium multivorum"],["NCBITaxon%3A926570","Acidiphilium multivorum AIU301"],["NCBITaxon%3A527","Acidiphilium sp."],["NCBITaxon%3A1464546","Acidiphilium sp. JA12-A1"],["NCBITaxon%3A1043206","Acidiphilium sp. PM"]]},{"id":"GTDB:s__Dehalococcoides_mccartyi_B","l":"","na":2,"nb":8,"a":[["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"]],"b":[["NCBITaxon%3A61435","Dehalococcoides mccartyi"],["NCBITaxon%3A1193806","Dehalococcoides mccartyi BTF08"],["NCBITaxon%3A255470","Dehalococcoides mccartyi CBDB1"],["NCBITaxon%3A1432061","Dehalococcoides mccartyi CG5"],["NCBITaxon%3A1193807","Dehalococcoides mccartyi DCMB5"],["NCBITaxon%3A1407653","Dehalococcoides mccartyi IBARAKI"]]},{"id":"GTDB:s__Stutzerimonas_stutzeri_AC","l":"","na":2,"nb":8,"a":[["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["NCBITaxon%3A3140475","Pseudomonas sp. E45-MNA-CIBAN-0222"],["NCBITaxon%3A2975386","Pseudomonas sp. GD03855"],["NCBITaxon%3A2975387","Pseudomonas sp. GD03856"],["NCBITaxon%3A2975404","Pseudomonas sp. GD03909"],["NCBITaxon%3A1729726","Pseudomonas sp. TTU2014-105ASC"],["NCBITaxon%3A1211807","Stutzerimonas kunmingensis"]]},{"id":"GTDB:s__Virgibacillus_salarius","l":"","na":2,"nb":8,"a":[["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["NCBITaxon%3A1431249","Agaribacter marinus"],["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A1348908","Priestia megaterium MSP20.1"],["NCBITaxon%3A417355","uncultured Virgibacillus sp."],["NCBITaxon%3A447199","Virgibacillus salarius"],["NCBITaxon%3A2812055","Virgibacillus sp. AGTR"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":2,"nb":8,"a":[["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]],"b":[["NCBITaxon%3A1515","Acetivibrio thermocellus"],["NCBITaxon%3A1138384","Acetivibrio thermocellus AD2"],["NCBITaxon%3A203119","Acetivibrio thermocellus ATCC 27405"],["NCBITaxon%3A1349417","Acetivibrio thermocellus BC1"],["NCBITaxon%3A637887","Acetivibrio thermocellus DSM 1313"],["NCBITaxon%3A572545","Acetivibrio thermocellus DSM 2360"]]},{"id":"GTDB:s__Bacillus_siamensis","l":"","na":2,"nb":7,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"]],"b":[["NCBITaxon%3A659243","Bacillus siamensis"],["NCBITaxon%3A1177185","Bacillus siamensis KCTC 13613"],["NCBITaxon%3A2770510","Bacillus sp. 1021"],["NCBITaxon%3A1679193","Bacillus sp. JFL15"],["NCBITaxon%3A1774743","Bacillus sp. SDLI1"],["NCBITaxon%3A3237485","Bacillus sp. YAF8"]]},{"id":"GTDB:s__Nitrosomonas_europaea","l":"","na":2,"nb":7,"a":[["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["NCBITaxon%3A2575678","Betaproteobacteria bacterium PRO5"],["NCBITaxon%3A915","Nitrosomonas europaea"],["NCBITaxon%3A228410","Nitrosomonas europaea ATCC 19718"],["NCBITaxon%3A42353","Nitrosomonas sp."],["NCBITaxon%3A2741553","Nitrosomonas sp. H1_AOB3"],["NCBITaxon%3A1977087","Pseudomonadota bacterium"]]},{"id":"GTDB:s__Veillonella_parvula_A","l":"","na":2,"nb":7,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]],"b":[["NCBITaxon%3A1519439","Oscillibacter sp. ER4"],["NCBITaxon%3A29466","Veillonella parvula"],["NCBITaxon%3A768727","Veillonella parvula ACS-068-V-Sch12"],["NCBITaxon%3A1316254","Veillonella parvula HSIVP1"],["NCBITaxon%3A1926307","Veillonella sp."],["NCBITaxon%3A457416","Veillonella sp. 3_1_44"]]},{"id":"NCBITaxon:28108","l":"Alteromonas macleodii","na":2,"nb":7,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["NCBITaxon%3A28108","Alteromonas macleodii"],["NCBITaxon%3A529120","Alteromonas macleodii ATCC 27126"],["NCBITaxon%3A1004787","Alteromonas macleodii str. 'Balearic Sea AD45'"],["NCBITaxon%3A1004785","Alteromonas macleodii str. 'Black Sea 11'"],["NCBITaxon%3A1004788","Alteromonas macleodii str. 'English Channel 673'"],["NCBITaxon%3A160763","Alteromonas macleodii subsp. abyssi"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":2,"nb":7,"a":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]],"b":[["NCBITaxon%3A293","Brevundimonas diminuta"],["NCBITaxon%3A1255603","Brevundimonas diminuta 3F5N"],["NCBITaxon%3A1035191","Brevundimonas diminuta 470-4"],["NCBITaxon%3A751586","Brevundimonas diminuta ATCC 11568"],["NCBITaxon%3A588932","Brevundimonas naejangsanensis"],["NCBITaxon%3A1325724","Brevundimonas vancanneytii"]]},{"id":"GTDB:s__Anaerostipes_caccae","l":"","na":2,"nb":6,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["NCBITaxon%3A105841","Anaerostipes caccae"],["NCBITaxon%3A411490","Anaerostipes caccae L1-92"],["NCBITaxon%3A1872530","Anaerostipes sp."],["NCBITaxon%3A2292912","Anaerostipes sp. AF04-45"],["NCBITaxon%3A1262699","Anaerostipes sp. CAG:276"],["NCBITaxon%3A244328","uncultured Clostridia bacterium"]]},{"id":"GTDB:s__Lysinibacillus_sphaericus","l":"","na":2,"nb":6,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]],"b":[["NCBITaxon%3A2796169","Lysinibacillus sp. C5.1"],["NCBITaxon%3A2896845","Lysinibacillus sp. GJ-1"],["NCBITaxon%3A1421","Lysinibacillus sphaericus"],["NCBITaxon%3A1354027","Lysinibacillus sphaericus KCTC 3346"],["NCBITaxon%3A1173107","Lysinibacillus tabacifolii"],["NCBITaxon%3A1145276","Lysinibacillus varians"]]},{"id":"GTDB:s__Methanobacterium_formicicum","l":"","na":2,"nb":6,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"]],"b":[["NCBITaxon%3A2026739","Methanobacteriota archaeon"],["NCBITaxon%3A2162","Methanobacterium formicicum"],["NCBITaxon%3A1300163","Methanobacterium formicicum JCM 10132"],["NCBITaxon%3A2164","Methanobacterium sp."],["NCBITaxon%3A1641383","Methanobacterium sp. 42_16"],["NCBITaxon%3A1915470","Methanobacterium sp. UBA74"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":6,"nb":2,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["NCBITaxon%3A324833","Streptomyces lasalocidi"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:2203","l":"Methanospirillum hungatei","na":6,"nb":2,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["NCBITaxon%3A2203","Methanospirillum hungatei"],["NCBITaxon%3A323259","Methanospirillum hungatei JF-1"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":2,"nb":6,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"]],"b":[["NCBITaxon%3A266","Paracoccus denitrificans"],["NCBITaxon%3A1302247","Paracoccus denitrificans JCM 21484"],["NCBITaxon%3A318586","Paracoccus denitrificans PD1222"],["NCBITaxon%3A1051075","Paracoccus denitrificans SD1"],["NCBITaxon%3A82367","Paracoccus pantotrophus"],["NCBITaxon%3A189685","uncultured Paracoccus sp."]]},{"id":"NCBITaxon:70863","l":"Shewanella oneidensis","na":6,"nb":2,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"],["Shewanella_Pseudomonas_Fe0_Electrosyntrophic_Denitrifying_Consortium.html","Shewanella oneidensis + Pseudomonas aeruginosa Fe0-dependent Electro-syntrophic Denitrifying Consortium"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["NCBITaxon%3A70863","Shewanella oneidensis"],["NCBITaxon%3A211586","Shewanella oneidensis MR-1"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":6,"nb":2,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["NCBITaxon%3A881","Nitratidesulfovibrio vulgaris"],["NCBITaxon%3A882","Nitratidesulfovibrio vulgaris str. Hildenborough"]]},{"id":"GTDB:s__Acinetobacter_baylyi","l":"","na":2,"nb":5,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"]],"b":[["NCBITaxon%3A202950","Acinetobacter baylyi"],["NCBITaxon%3A62977","Acinetobacter baylyi ADP1"],["NCBITaxon%3A1120924","Acinetobacter baylyi DSM 14961 = CIP 107474"],["NCBITaxon%3A1221291","Acinetobacter baylyi TG19579"],["NCBITaxon%3A472","Acinetobacter sp."]]},{"id":"GTDB:s__Clostridium_S_acetobutylicum","l":"","na":2,"nb":5,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["NCBITaxon%3A1488","Clostridium acetobutylicum"],["NCBITaxon%3A272562","Clostridium acetobutylicum ATCC 824"],["NCBITaxon%3A991791","Clostridium acetobutylicum DSM 1731"],["NCBITaxon%3A863638","Clostridium acetobutylicum EA 2018"],["NCBITaxon%3A2126737","Clostridium sp. NJ4"]]},{"id":"GTDB:s__Methanothermobacter_thermautotrophicus","l":"","na":2,"nb":5,"a":[["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]],"b":[["NCBITaxon%3A49339","Methanothermobacter defluvii"],["NCBITaxon%3A1884223","Methanothermobacter sp."],["NCBITaxon%3A2017966","Methanothermobacter sp. EMTCatA1"],["NCBITaxon%3A145262","Methanothermobacter thermautotrophicus"],["NCBITaxon%3A187420","Methanothermobacter thermautotrophicus str. Delta H"]]},{"id":"GTDB:s__Novosphingobium_subterraneum","l":"","na":2,"nb":5,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["NCBITaxon%3A1768752","Novosphingobium sp. CCH12-A3"],["NCBITaxon%3A2780074","Novosphingobium sp. ES2-1"],["NCBITaxon%3A48936","Novosphingobium subterraneum"],["NCBITaxon%3A1219057","Novosphingobium subterraneum NBRC 16086"],["NCBITaxon%3A1977087","Pseudomonadota bacterium"]]},{"id":"GTDB:s__Streptococcus_sanguinis_H","l":"","na":2,"nb":5,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1305","Streptococcus sanguinis"],["NCBITaxon%3A888815","Streptococcus sanguinis SK353"],["NCBITaxon%3A388919","Streptococcus sanguinis SK36"],["NCBITaxon%3A888809","Streptococcus sanguinis SK72"],["NCBITaxon%3A888825","Streptococcus sanguinis VMC66"]]},{"id":"GTDB:s__Streptococcus_sanguinis_R","l":"","na":2,"nb":5,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1305","Streptococcus sanguinis"],["NCBITaxon%3A1304891","Streptococcus sanguinis OH0843"],["NCBITaxon%3A888824","Streptococcus sanguinis SK1087"],["NCBITaxon%3A3003644","Streptococcus sp. 27098_8_134"],["NCBITaxon%3A83427","uncultured Streptococcus sp."]]},{"id":"GTDB:s__Stutzerimonas_stutzeri_AE","l":"","na":2,"nb":5,"a":[["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["NCBITaxon%3A2013805","Gammaproteobacteria bacterium HGW-Gammaproteobacteria-9"],["NCBITaxon%3A1883453","Pseudomonas sp. CO183"],["NCBITaxon%3A412955","Pseudomonas sp. SCT"],["NCBITaxon%3A316","Stutzerimonas stutzeri"],["NCBITaxon%3A644801","Stutzerimonas stutzeri RCH2"]]},{"id":"GTDB:s__Stutzerimonas_stutzeri_G","l":"","na":2,"nb":5,"a":[["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A3035478","Pseudomonas sp. FeN3W"],["NCBITaxon%3A1211807","Stutzerimonas kunmingensis"],["NCBITaxon%3A316","Stutzerimonas stutzeri"],["NCBITaxon%3A1212548","Stutzerimonas stutzeri NF13"]]},{"id":"NCBITaxon:202950","l":"Acinetobacter baylyi","na":2,"nb":5,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"]],"b":[["NCBITaxon%3A202950","Acinetobacter baylyi"],["NCBITaxon%3A62977","Acinetobacter baylyi ADP1"],["NCBITaxon%3A1198992","Acinetobacter baylyi BD4"],["NCBITaxon%3A1120924","Acinetobacter baylyi DSM 14961 = CIP 107474"],["NCBITaxon%3A1221291","Acinetobacter baylyi TG19579"]]},{"id":"NCBITaxon:28034","l":"Sulfobacillus thermosulfidooxidans","na":2,"nb":5,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["NCBITaxon%3A28034","Sulfobacillus thermosulfidooxidans"],["NCBITaxon%3A929705","Sulfobacillus thermosulfidooxidans DSM 9293"],["NCBITaxon%3A1366420","Sulfobacillus thermosulfidooxidans ST"],["NCBITaxon%3A1214914","Sulfobacillus thermosulfidooxidans str. Cutipay"],["NCBITaxon%3A108014","Sulfobacillus thermosulfidooxidans subsp. asporogenes"]]},{"id":"NCBITaxon:33059","l":"Acidithiobacillus caldus","na":2,"nb":5,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["NCBITaxon%3A33059","Acidithiobacillus caldus"],["NCBITaxon%3A637389","Acidithiobacillus caldus ATCC 51756"],["NCBITaxon%3A990288","Acidithiobacillus caldus SM-1"],["NCBITaxon%3A184426","environmental samples"],["NCBITaxon%3A184427","uncultured Acidithiobacillus caldus"]]},{"id":"GTDB:s__Acidithiobacillus_A_caldus","l":"","na":2,"nb":4,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["NCBITaxon%3A33059","Acidithiobacillus caldus"],["NCBITaxon%3A637389","Acidithiobacillus caldus ATCC 51756"],["NCBITaxon%3A990288","Acidithiobacillus caldus SM-1"],["NCBITaxon%3A1872118","Acidithiobacillus sp."]]},{"id":"GTDB:s__Clostridium_B_kluyveri","l":"","na":4,"nb":2,"a":[["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["NCBITaxon%3A431943","Clostridium kluyveri DSM 555"],["NCBITaxon%3A583346","Clostridium kluyveri NBRC 12016"]]},{"id":"GTDB:s__Lysinibacillus_sphaericus_B","l":"","na":2,"nb":4,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]],"b":[["NCBITaxon%3A1405","Bacillus mycoides"],["NCBITaxon%3A3411039","Lysinibacillus sp. UGB7"],["NCBITaxon%3A1421","Lysinibacillus sphaericus"],["NCBITaxon%3A1285586","Lysinibacillus sphaericus OT4b.31"]]},{"id":"GTDB:s__Rhodopseudomonas_palustris_C","l":"","na":2,"nb":4,"a":[["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["NCBITaxon%3A1076","Rhodopseudomonas palustris"],["NCBITaxon%3A1421013","Rhodopseudomonas palustris JSC-3b"],["NCBITaxon%3A1421014","Rhodopseudomonas palustris PSBS"],["NCBITaxon%3A2021379","Xanthobacteraceae bacterium"]]},{"id":"GTDB:s__Ruminiclostridium_cellulolyticum","l":"","na":4,"nb":2,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["NCBITaxon%3A1521","Ruminiclostridium cellulolyticum"],["NCBITaxon%3A394503","Ruminiclostridium cellulolyticum H10"]]},{"id":"GTDB:s__Stutzerimonas_stutzeri_AI","l":"","na":2,"nb":4,"a":[["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["NCBITaxon%3A1914538","Pseudomonadaceae bacterium"],["NCBITaxon%3A3369415","Stutzerimonas sp. CQPMC-PStu"],["NCBITaxon%3A316","Stutzerimonas stutzeri"],["NCBITaxon%3A1333856","Stutzerimonas stutzeri MF28"]]},{"id":"GTDB:s__Sulfobacillus_thermosulfidooxidans","l":"","na":2,"nb":4,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["NCBITaxon%3A28034","Sulfobacillus thermosulfidooxidans"],["NCBITaxon%3A929705","Sulfobacillus thermosulfidooxidans DSM 9293"],["NCBITaxon%3A1366420","Sulfobacillus thermosulfidooxidans ST"],["NCBITaxon%3A1214914","Sulfobacillus thermosulfidooxidans str. Cutipay"]]},{"id":"GTDB:s__Syntrophomonas_wolfei","l":"","na":4,"nb":2,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["NCBITaxon%3A863","Syntrophomonas wolfei"],["NCBITaxon%3A335541","Syntrophomonas wolfei subsp. wolfei str. Goettingen G311"]]},{"id":"NCBITaxon:1521","l":"Ruminiclostridium cellulolyticum","na":4,"nb":2,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["NCBITaxon%3A1521","Ruminiclostridium cellulolyticum"],["NCBITaxon%3A394503","Ruminiclostridium cellulolyticum H10"]]},{"id":"NCBITaxon:231455","l":"Dyella japonica","na":2,"nb":4,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["NCBITaxon%3A231455","Dyella japonica"],["NCBITaxon%3A1217721","Dyella japonica A8"],["NCBITaxon%3A1440762","Dyella japonica DSM 16301"],["NCBITaxon%3A1380365","Dyella japonica UNC79MFTsu3.2"]]},{"id":"NCBITaxon:243164","l":"Dehalococcoides mccartyi 195","na":4,"nb":2,"a":[["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["NCBITaxon%3A61435","Dehalococcoides mccartyi"],["NCBITaxon%3A243164","Dehalococcoides mccartyi 195"]]},{"id":"NCBITaxon:253","l":"Chryseobacterium indologenes","na":2,"nb":4,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"]],"b":[["NCBITaxon%3A246","Chryseobacterium balustinum"],["NCBITaxon%3A253","Chryseobacterium indologenes"],["NCBITaxon%3A1218103","Chryseobacterium indologenes NBRC 14944"],["NCBITaxon%3A239","Flavobacterium sp."]]},{"id":"NCBITaxon:511145","l":"Escherichia coli str. K-12 substr. MG1655","na":2,"nb":4,"a":[["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["NCBITaxon%3A47678","Bacteroides caccae"],["NCBITaxon%3A411901","Bacteroides caccae ATCC 43185"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A511145","Escherichia coli str. K-12 substr. MG1655"]]},{"id":"GTDB:s__Acetobacterium_woodii","l":"","na":3,"nb":2,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["NCBITaxon%3A33952","Acetobacterium woodii"],["NCBITaxon%3A931626","Acetobacterium woodii DSM 1030"]]},{"id":"GTDB:s__Chryseobacterium_indologenes","l":"","na":2,"nb":3,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"]],"b":[["NCBITaxon%3A253","Chryseobacterium indologenes"],["NCBITaxon%3A1218103","Chryseobacterium indologenes NBRC 14944"],["NCBITaxon%3A1340435","Chryseobacterium sp. UNC8MFCol"]]},{"id":"GTDB:s__Leptospirillum_ferrooxidans","l":"","na":2,"nb":3,"a":[["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"]],"b":[["NCBITaxon%3A180","Leptospirillum ferrooxidans"],["NCBITaxon%3A1162668","Leptospirillum ferrooxidans C2-3"],["NCBITaxon%3A2026887","Nitrospirota bacterium"]]},{"id":"GTDB:s__Pelotomaculum_thermopropionicum","l":"","na":2,"nb":3,"a":[["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"]],"b":[["NCBITaxon%3A2053590","Pelotomaculum sp."],["NCBITaxon%3A110500","Pelotomaculum thermopropionicum"],["NCBITaxon%3A370438","Pelotomaculum thermopropionicum SI"]]},{"id":"GTDB:s__Rhodopseudomonas_pseudopalustris","l":"","na":2,"nb":3,"a":[["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["NCBITaxon%3A1076","Rhodopseudomonas palustris"],["NCBITaxon%3A316057","Rhodopseudomonas palustris BisB5"],["NCBITaxon%3A1513892","Rhodopseudomonas pseudopalustris"]]},{"id":"GTDB:s__Streptococcus_sanguinis_M","l":"","na":2,"nb":3,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A45634","Streptococcus cristatus"],["NCBITaxon%3A1305","Streptococcus sanguinis"],["NCBITaxon%3A888811","Streptococcus sanguinis SK150"]]},{"id":"GTDB:s__Streptococcus_sp905212325","l":"","na":2,"nb":3,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1305","Streptococcus sanguinis"],["NCBITaxon%3A888813","Streptococcus sanguinis SK330"],["NCBITaxon%3A83427","uncultured Streptococcus sp."]]},{"id":"NCBITaxon:1317","l":"Streptococcus downei","na":2,"nb":3,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"],["FourSpecies_Aerobic_Lung_Microbiome_Model.html","Four-Species Aerobic Lung Microbiome Model"]],"b":[["NCBITaxon%3A1317","Streptococcus downei"],["NCBITaxon%3A904293","Streptococcus downei F0415"],["NCBITaxon%3A764290","Streptococcus downei MFe28"]]},{"id":"NCBITaxon:145262","l":"Methanothermobacter thermautotrophicus","na":2,"nb":3,"a":[["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]],"b":[["NCBITaxon%3A145262","Methanothermobacter thermautotrophicus"],["NCBITaxon%3A187420","Methanothermobacter thermautotrophicus str. Delta H"],["NCBITaxon%3A79930","Methanothermobacter thermautotrophicus str. Winter"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":3,"nb":2,"a":[["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["NCBITaxon%3A70863","Shewanella oneidensis"],["NCBITaxon%3A211586","Shewanella oneidensis MR-1"]]},{"id":"NCBITaxon:2162","l":"Methanobacterium formicicum","na":2,"nb":3,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"]],"b":[["NCBITaxon%3A2162","Methanobacterium formicicum"],["NCBITaxon%3A1204725","Methanobacterium formicicum DSM 3637"],["NCBITaxon%3A1300163","Methanobacterium formicicum JCM 10132"]]},{"id":"NCBITaxon:33035","l":"Blautia producta","na":3,"nb":2,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["NCBITaxon%3A33035","Blautia producta"],["NCBITaxon%3A1121114","Blautia producta ATCC 27340 = DSM 2950"]]},{"id":"NCBITaxon:33952","l":"Acetobacterium woodii","na":3,"nb":2,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["NCBITaxon%3A33952","Acetobacterium woodii"],["NCBITaxon%3A931626","Acetobacterium woodii DSM 1030"]]},{"id":"NCBITaxon:39488","l":"Anaerobutyricum hallii","na":2,"nb":3,"a":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A39488","Anaerobutyricum hallii"],["NCBITaxon%3A1263078","Anaerobutyricum hallii CAG:12"],["NCBITaxon%3A411469","Anaerobutyricum hallii DSM 3353"]]},{"id":"NCBITaxon:573061","l":"Clostridium cellulovorans 743B","na":3,"nb":2,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"]],"b":[["NCBITaxon%3A1493","Clostridium cellulovorans"],["NCBITaxon%3A573061","Clostridium cellulovorans 743B"]]},{"id":"NCBITaxon:648995","l":"Agrobacterium pusense","na":2,"nb":3,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["NCBITaxon%3A648995","Agrobacterium pusense"],["NCBITaxon%3A1368422","Agrobacterium pusense L2/2/1"],["NCBITaxon%3A1368423","Agrobacterium pusense M2/1"]]},{"id":"GTDB:s__Lentilactobacillus_kefiri","l":"","na":2,"nb":2,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["NCBITaxon%3A33962","Lentilactobacillus kefiri"],["NCBITaxon%3A1423764","Lentilactobacillus kefiri DSM 20587 = JCM 5818"]]},{"id":"GTDB:s__Methylotuvimicrobium_alcaliphilum","l":"","na":2,"nb":2,"a":[["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"]],"b":[["NCBITaxon%3A271065","Methylotuvimicrobium alcaliphilum"],["NCBITaxon%3A1091494","Methylotuvimicrobium alcaliphilum 20Z"]]},{"id":"GTDB:s__Priestia_megaterium_D","l":"","na":2,"nb":2,"a":[["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["NCBITaxon%3A412384","Priestia aryabhattai"],["NCBITaxon%3A1404","Priestia megaterium"]]},{"id":"GTDB:s__Rhodopseudomonas_palustris_G","l":"","na":2,"nb":2,"a":[["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["NCBITaxon%3A1076","Rhodopseudomonas palustris"],["NCBITaxon%3A2269367","Rhodopseudomonas sp. WA056"]]},{"id":"GTDB:s__Streptococcus_sanguinis_K","l":"","na":2,"nb":2,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1305","Streptococcus sanguinis"],["NCBITaxon%3A3003643","Streptococcus sp. 27098_8_82"]]},{"id":"GTDB:s__Streptomyces_ambofaciens","l":"","na":2,"nb":2,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["NCBITaxon%3A1889","Streptomyces ambofaciens"],["NCBITaxon%3A278992","Streptomyces ambofaciens ATCC 23877"]]},{"id":"GTDB:s__Stutzerimonas_stutzeri_B","l":"","na":2,"nb":2,"a":[["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["NCBITaxon%3A316","Stutzerimonas stutzeri"],["NCBITaxon%3A1218352","Stutzerimonas stutzeri KOS6"]]},{"id":"GTDB:s__Stutzerimonas_stutzeri_H","l":"","na":2,"nb":2,"a":[["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["NCBITaxon%3A316","Stutzerimonas stutzeri"],["NCBITaxon%3A1109445","Stutzerimonas stutzeri SDM-LAC"]]},{"id":"GTDB:s__Syntrophobacter_fumaroxidans","l":"","na":2,"nb":2,"a":[["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["NCBITaxon%3A119484","Syntrophobacter fumaroxidans"],["NCBITaxon%3A335543","Syntrophobacter fumaroxidans MPOB"]]},{"id":"NCBITaxon:105841","l":"Anaerostipes caccae","na":2,"nb":2,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["NCBITaxon%3A105841","Anaerostipes caccae"],["NCBITaxon%3A411490","Anaerostipes caccae L1-92"]]},{"id":"NCBITaxon:1091494","l":"Methylotuvimicrobium alcaliphilum 20Z","na":2,"nb":2,"a":[["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"]],"b":[["NCBITaxon%3A271065","Methylotuvimicrobium alcaliphilum"],["NCBITaxon%3A1091494","Methylotuvimicrobium alcaliphilum 20Z"]]},{"id":"NCBITaxon:110500","l":"Pelotomaculum thermopropionicum","na":2,"nb":2,"a":[["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"]],"b":[["NCBITaxon%3A110500","Pelotomaculum thermopropionicum"],["NCBITaxon%3A370438","Pelotomaculum thermopropionicum SI"]]},{"id":"NCBITaxon:119484","l":"Syntrophobacter fumaroxidans","na":2,"nb":2,"a":[["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["NCBITaxon%3A119484","Syntrophobacter fumaroxidans"],["NCBITaxon%3A335543","Syntrophobacter fumaroxidans MPOB"]]},{"id":"NCBITaxon:1538","l":"Clostridium ljungdahlii","na":2,"nb":2,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["NCBITaxon%3A1538","Clostridium ljungdahlii"],["NCBITaxon%3A748727","Clostridium ljungdahlii DSM 13528"]]},{"id":"NCBITaxon:160488","l":"Pseudomonas putida (strain ATCC 47054 / DSM 6125 / CFBP 8728 / NCIMB 11950 / KT2440)","na":2,"nb":2,"a":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"]],"b":[["NCBITaxon%3A303","Pseudomonas putida"],["NCBITaxon%3A160488","Pseudomonas putida KT2440"]]},{"id":"NCBITaxon:180","l":"Leptospirillum ferrooxidans","na":2,"nb":2,"a":[["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"]],"b":[["NCBITaxon%3A180","Leptospirillum ferrooxidans"],["NCBITaxon%3A1162668","Leptospirillum ferrooxidans C2-3"]]},{"id":"NCBITaxon:1889","l":"Streptomyces ambofaciens","na":2,"nb":2,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["NCBITaxon%3A1889","Streptomyces ambofaciens"],["NCBITaxon%3A278992","Streptomyces ambofaciens ATCC 23877"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus ATCC 27405","na":2,"nb":2,"a":[["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["NCBITaxon%3A1515","Acetivibrio thermocellus"],["NCBITaxon%3A203119","Acetivibrio thermocellus ATCC 27405"]]},{"id":"NCBITaxon:2223","l":"Methanothrix soehngenii","na":2,"nb":2,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["NCBITaxon%3A2223","Methanothrix soehngenii"],["NCBITaxon%3A990316","Methanothrix soehngenii GP6"]]},{"id":"NCBITaxon:272562","l":"Clostridium acetobutylicum (strain ATCC 824 / DSM 792 / JCM 1419 / IAM 19013 / LMG 5710 / NBRC 13948 / NRRL B-527 / VKM B-1787 / 2291 / W)","na":2,"nb":2,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["NCBITaxon%3A1488","Clostridium acetobutylicum"],["NCBITaxon%3A272562","Clostridium acetobutylicum ATCC 824"]]},{"id":"NCBITaxon:299767","l":"Enterobacter ludwigii","na":2,"nb":2,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A299767","Enterobacter ludwigii"]]},{"id":"NCBITaxon:3039","l":"Euglena gracilis","na":2,"nb":2,"a":[["Dairy_Wastewater_Algal_Cyanobacterial_Cultivation_Panel.html","Dairy Wastewater Algal-Cyanobacterial Cultivation Panel"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"]],"b":[["NCBITaxon%3A3039","Euglena gracilis"],["NCBITaxon%3A158060","Euglena gracilis var. bacillaris"]]},{"id":"NCBITaxon:323259","l":"Methanospirillum hungatei JF-1","na":2,"nb":2,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["NCBITaxon%3A2203","Methanospirillum hungatei"],["NCBITaxon%3A323259","Methanospirillum hungatei JF-1"]]},{"id":"NCBITaxon:33962","l":"Lentilactobacillus kefiri","na":2,"nb":2,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["NCBITaxon%3A33962","Lentilactobacillus kefiri"],["NCBITaxon%3A1423764","Lentilactobacillus kefiri DSM 20587 = JCM 5818"]]},{"id":"NCBITaxon:357809","l":"Lachnoclostridium phytofermentans ISDg","na":2,"nb":2,"a":[["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"]],"b":[["NCBITaxon%3A66219","Lachnoclostridium phytofermentans"],["NCBITaxon%3A357809","Lachnoclostridium phytofermentans ISDg"]]},{"id":"NCBITaxon:48936","l":"Novosphingobium subterraneum","na":2,"nb":2,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["NCBITaxon%3A48936","Novosphingobium subterraneum"],["NCBITaxon%3A1219057","Novosphingobium subterraneum NBRC 16086"]]},{"id":"NCBITaxon:515619","l":"Agathobacter rectalis ATCC 33656","na":2,"nb":2,"a":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A39491","Agathobacter rectalis"],["NCBITaxon%3A515619","Agathobacter rectalis ATCC 33656"]]},{"id":"NCBITaxon:524","l":"Acidiphilium cryptum","na":2,"nb":2,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["NCBITaxon%3A524","Acidiphilium cryptum"],["NCBITaxon%3A349163","Acidiphilium cryptum JF-5"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":2,"nb":2,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["NCBITaxon%3A5476","Candida albicans"],["NCBITaxon%3A1182531","Candida albicans 3153A"]]},{"id":"NCBITaxon:659243","l":"Bacillus siamensis","na":2,"nb":2,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"]],"b":[["NCBITaxon%3A659243","Bacillus siamensis"],["NCBITaxon%3A1177185","Bacillus siamensis KCTC 13613"]]},{"id":"NCBITaxon:82380","l":"Microbacterium oxydans","na":2,"nb":2,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]],"b":[["NCBITaxon%3A82380","Microbacterium oxydans"],["NCBITaxon%3A1255678","Microbacterium oxydans PCA1"]]},{"id":"NCBITaxon:913","l":"Nitrobacter winogradskyi","na":2,"nb":2,"a":[["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["NCBITaxon%3A913","Nitrobacter winogradskyi"],["NCBITaxon%3A323098","Nitrobacter winogradskyi Nb-255"]]},{"id":"NCBITaxon:915","l":"Nitrosomonas europaea","na":2,"nb":2,"a":[["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["NCBITaxon%3A915","Nitrosomonas europaea"],["NCBITaxon%3A228410","Nitrosomonas europaea ATCC 19718"]]},{"id":"NCBITaxon:91061","l":"Bacilli","na":1,"nb":79557,"a":[["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"]],"b":[["NCBITaxon%3A46125","Abiotrophia defectiva"],["NCBITaxon%3A592010","Abiotrophia defectiva ATCC 49176"],["NCBITaxon%3A1410024","Abiotrophia defectiva HMP_JCVI_SC0171"],["NCBITaxon%3A1410025","Abiotrophia defectiva HMP_JCVI_SC0235"],["NCBITaxon%3A191553","Abiotrophia para-adiacens"],["NCBITaxon%3A76631","Abiotrophia sp."]]},{"id":"NCBITaxon:356","l":"Hyphomicrobiales","na":1,"nb":37310,"a":[["Thiocyanate_Afipia_Thiobacillus_Bioreactor_Community.html","Thiocyanate-Degrading Afipia and Thiobacillus Bioreactor Community"]],"b":[["NCBITaxon%3A119160","2,3-D degrading bacterium NHC2"],["NCBITaxon%3A119159","2,3-D degrading bacterium NHG3"],["NCBITaxon%3A83488","2,4-D degrading bacterium M1"],["NCBITaxon%3A2910977","Acuticoccus kalidii"],["NCBITaxon%3A2073160","Acuticoccus kandeliae"],["NCBITaxon%3A2796142","Acuticoccus mangrovi"]]},{"id":"NCBITaxon:80840","l":"Burkholderiales","na":1,"nb":24584,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"]],"b":[["NCBITaxon%3A103498","2,4-D-degrading bacterium 001"],["NCBITaxon%3A103499","2,4-D-degrading bacterium 007"],["NCBITaxon%3A103495","2,4-D-degrading bacterium 012"],["NCBITaxon%3A103500","2,4-D-degrading bacterium 017"],["NCBITaxon%3A103501","2,4-D-degrading bacterium 018"],["NCBITaxon%3A103502","2,4-D-degrading bacterium 019"]]},{"id":"NCBITaxon:186801","l":"Clostridia","na":1,"nb":12463,"a":[["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"]],"b":[["NCBITaxon%3A1766203","Abyssisolibacter fermentans"],["NCBITaxon%3A2684878","Abyssisolibacter sp."],["NCBITaxon%3A3035615","Abyssisolibacter sp. ZYX002"],["NCBITaxon%3A1675854","Abyssivirga alkaniphila"],["NCBITaxon%3A2024429","Abyssivirga sp."],["NCBITaxon%3A2912264","Acetanaerobacter sp."]]},{"id":"NCBITaxon:119060","l":"Burkholderiaceae","na":1,"nb":11091,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["NCBITaxon%3A135641","2,4-D degrading transconjugant WD2"],["NCBITaxon%3A135642","2,4-D degrading transconjugant WD3"],["NCBITaxon%3A204704","bacterium Ellin349"],["NCBITaxon%3A204705","bacterium Ellin350"],["NCBITaxon%3A204706","bacterium Ellin364"],["NCBITaxon%3A204707","bacterium Ellin365"]]},{"id":"NCBITaxon:90964","l":"Staphylococcaceae","na":1,"nb":9983,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["NCBITaxon%3A930138","Aliicoccus persicus"],["NCBITaxon%3A1872438","Aliicoccus sp."],["NCBITaxon%3A196884","Arctic sea ice bacterum ARK9973"],["NCBITaxon%3A91995","bacterium #2 from Psoroptes ovis"],["NCBITaxon%3A2838629","Candidatus Jeotgalicoccus stercoravium"],["NCBITaxon%3A2838704","Candidatus Nosocomiicoccus stercorigallinarum"]]},{"id":"NCBITaxon:1279","l":"Staphylococcus","na":1,"nb":9540,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["NCBITaxon%3A196884","Arctic sea ice bacterum ARK9973"],["NCBITaxon%3A91995","bacterium #2 from Psoroptes ovis"],["NCBITaxon%3A2875764","Macrococcus armenti"],["NCBITaxon%3A150056","Mammaliicoccus fleurettii"],["NCBITaxon%3A42858","Mammaliicoccus lentus"],["NCBITaxon%3A246568","marine bacterium 13691"]]},{"id":"NCBITaxon:135614","l":"Lysobacterales","na":1,"nb":7954,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["NCBITaxon%3A346181","Aerolutibacter daejeonensis"],["NCBITaxon%3A686800","Aerolutibacter ruishenii"],["NCBITaxon%3A2010829","Aerosticca soli"],["NCBITaxon%3A2707022","Aerosticca sp."],["NCBITaxon%3A380628","Agrilutibacter niabensis"],["NCBITaxon%3A2763317","Agrilutibacter solisilvae"]]},{"id":"NCBITaxon:469","l":"Acinetobacter","na":1,"nb":6769,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["NCBITaxon%3A1673609","Acinetobacter albensis"],["NCBITaxon%3A2942470","Acinetobacter amyesii"],["NCBITaxon%3A363192","Acinetobacter antiviralis"],["NCBITaxon%3A1229165","Acinetobacter apis"],["NCBITaxon%3A2605383","Acinetobacter baretiae"],["NCBITaxon%3A470","Acinetobacter baumannii"]]},{"id":"NCBITaxon:135619","l":"Oceanospirillales","na":1,"nb":6491,"a":[["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"]],"b":[["NCBITaxon%3A2717337","Aestuariirhabdaceae bacterium"],["NCBITaxon%3A2918751","Aestuariirhabdus haliotis"],["NCBITaxon%3A2528527","Aestuariirhabdus litorea"],["NCBITaxon%3A2717333","Aestuariirhabdus sp."],["NCBITaxon%3A3417462","Aestuariirhabdus sp. LZHN29"],["NCBITaxon%3A574349","Aidingimonas halophila"]]},{"id":"NCBITaxon:2759","l":"Eukaryota","na":1,"nb":6243,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"]],"b":[["NCBITaxon%3A1450171","Aaosphaeria arxii"],["NCBITaxon%3A749232","Abeoforma whisleri"],["NCBITaxon%3A137743","Abortiporus biennis"],["NCBITaxon%3A420591","Absidia anomala"],["NCBITaxon%3A90261","Absidia caerulea"],["NCBITaxon%3A327741","Absidia californica"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":1,"nb":5776,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["NCBITaxon%3A54736","Salmonella bongori"],["NCBITaxon%3A218493","Salmonella bongori NCTC 12419"],["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59203","Salmonella enterica subsp. arizonae"],["NCBITaxon%3A2577126","Salmonella enterica subsp. arizonae serovar 11:z4,z23:-"],["NCBITaxon%3A2577127","Salmonella enterica subsp. arizonae serovar 13,22:z4,z23:-"]]},{"id":"NCBITaxon:561","l":"Escherichia","na":1,"nb":5589,"a":[["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"]],"b":[["NCBITaxon%3A259276","cf. Escherichia SAR-1"],["NCBITaxon%3A2562891","Escherichia alba"],["NCBITaxon%3A208962","Escherichia albertii"],["NCBITaxon%3A550692","Escherichia albertii B090"],["NCBITaxon%3A550693","Escherichia albertii B156"],["NCBITaxon%3A1440052","Escherichia albertii KF1"]]},{"id":"NCBITaxon:4751","l":"Fungi","na":1,"nb":5527,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["NCBITaxon%3A1450171","Aaosphaeria arxii"],["NCBITaxon%3A137743","Abortiporus biennis"],["NCBITaxon%3A420591","Absidia anomala"],["NCBITaxon%3A90261","Absidia caerulea"],["NCBITaxon%3A327741","Absidia californica"],["NCBITaxon%3A420592","Absidia cuneospora"]]},{"id":"NCBITaxon:1301","l":"Streptococcus","na":1,"nb":4599,"a":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]],"b":[["NCBITaxon%3A2838763","Candidatus Streptococcus faecavium"],["NCBITaxon%3A3711814","Candidatus Streptococcus gullae"],["NCBITaxon%3A2962908","Candidatus Streptococcus sp. bin.001"],["NCBITaxon%3A33945","Enterococcus avium"],["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A1358","Lactococcus lactis"]]},{"id":"NCBITaxon:1350","l":"Enterococcus","na":1,"nb":4515,"a":[["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"]],"b":[["NCBITaxon%3A2838561","Candidatus Enterococcus avicola"],["NCBITaxon%3A1834193","Candidatus Enterococcus clewellii"],["NCBITaxon%3A2815329","Candidatus Enterococcus courvalinii"],["NCBITaxon%3A1834192","Candidatus Enterococcus dunnyi"],["NCBITaxon%3A2815324","Candidatus Enterococcus ferrettii"],["NCBITaxon%3A1857217","Candidatus Enterococcus huntleyi"]]},{"id":"NCBITaxon:203691","l":"Spirochaetota","na":1,"nb":3862,"a":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["NCBITaxon%3A46356","Alkalispirochaeta alkalica"],["NCBITaxon%3A942938","Alkalispirochaeta alkalica DSM 8900"],["NCBITaxon%3A159291","Alkalispirochaeta americana"],["NCBITaxon%3A1410329","Alkalispirochaeta cellulosivorans"],["NCBITaxon%3A1329640","Alkalispirochaeta odontotermitis"],["NCBITaxon%3A2024959","Alkalispirochaeta sp."]]},{"id":"NCBITaxon:4890","l":"Ascomycota","na":1,"nb":3631,"a":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["NCBITaxon%3A1450171","Aaosphaeria arxii"],["NCBITaxon%3A1307806","Acarospora strigata"],["NCBITaxon%3A886606","Acephala macrosclerotiorum"],["NCBITaxon%3A1934374","Achaetomiella virescens"],["NCBITaxon%3A79813","Achaetomium macrosporum"],["NCBITaxon%3A43968","Aciculoconidium aculeatum"]]},{"id":"NCBITaxon:2745","l":"Halomonas","na":1,"nb":3499,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["NCBITaxon%3A1107859","Candidatus Halomonas phosphatis"],["NCBITaxon%3A2838617","Candidatus Halomonas stercoripullorum"],["NCBITaxon%3A1897729","Halomonas aestuarii"],["NCBITaxon%3A659123","Halomonas aidingensis"],["NCBITaxon%3A147248","Halomonas alimentaria"],["NCBITaxon%3A1930622","Halomonas alkalicola"]]},{"id":"NCBITaxon:1873","l":"Micromonospora","na":1,"nb":3346,"a":[["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"]],"b":[["NCBITaxon%3A2202421","Micromonospora acroterricola"],["NCBITaxon%3A2911212","Micromonospora alfalfae"],["NCBITaxon%3A1287068","Micromonospora andamanensis"],["NCBITaxon%3A2807623","Micromonospora antibiotica"],["NCBITaxon%3A309046","Micromonospora aquatica"],["NCBITaxon%3A2116518","Micromonospora arborensis"]]},{"id":"NCBITaxon:75682","l":"Oxalobacteraceae","na":1,"nb":3139,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["NCBITaxon%3A1051899","Actimicrobium antarcticum"],["NCBITaxon%3A2792609","Actimicrobium sp."],["NCBITaxon%3A3048606","Actimicrobium sp. CCC2.4"],["NCBITaxon%3A3048616","Actimicrobium sp. CCI2.3"],["NCBITaxon%3A3071708","Actimicrobium sp. GrIS 1.19"],["NCBITaxon%3A1550357","Actimicrobium sp. MsC-12-4CB4-02"]]},{"id":"NCBITaxon:1125","l":"Microcystis","na":1,"nb":2332,"a":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"]],"b":[["NCBITaxon%3A1126","Microcystis aeruginosa"],["NCBITaxon%3A270630","Microcystis aeruginosa 0BB35S02"],["NCBITaxon%3A270631","Microcystis aeruginosa 0BF29S01"],["NCBITaxon%3A270632","Microcystis aeruginosa 0BF29S03"],["NCBITaxon%3A2358142","Microcystis aeruginosa 11-30S32"],["NCBITaxon%3A3113711","Microcystis aeruginosa 1339"]]},{"id":"NCBITaxon:613","l":"Serratia","na":1,"nb":2177,"a":[["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["NCBITaxon%3A3076559","Prodigiosinella aquatilis"],["NCBITaxon%3A28242","secondary symbiont of Acyrthosiphon pisum"],["NCBITaxon%3A1924982","secondary symbiont of Schizolachnus pineti"],["NCBITaxon%3A207488","secondary symbiont type-R of Aphis craccivora"],["NCBITaxon%3A207491","secondary symbiont type-R of Cinara cupressi"],["NCBITaxon%3A207493","secondary symbiont type-R of Cinara tujafilina"]]},{"id":"NCBITaxon:1129","l":"Synechococcus","na":1,"nb":2170,"a":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]],"b":[["NCBITaxon%3A2081909","Anacystis marina"],["NCBITaxon%3A2081929","Anacystis marina UTEX LB 1634"],["NCBITaxon%3A1522304","Candidatus Synechococcus calcipolaris"],["NCBITaxon%3A1497997","Candidatus Synechococcus calcipolaris G9"],["NCBITaxon%3A431041","Candidatus Synechococcus spongiarum"],["NCBITaxon%3A1608213","Candidatus Synechococcus spongiarum 142"]]},{"id":"NCBITaxon:59732","l":"Chryseobacterium","na":1,"nb":2006,"a":[["Wheat_Consortium_C6.html","Wheat Synthetic Consortium C6"]],"b":[["NCBITaxon%3A3121364","Candidatus Chryseobacterium colombiense"],["NCBITaxon%3A3083056","Candidatus Chryseobacterium enterohippi"],["NCBITaxon%3A204089","Candidatus Chryseobacterium massiliense"],["NCBITaxon%3A445211","Candidatus Chryseobacterium massiliensis"],["NCBITaxon%3A1205738","Candidatus Chryseobacterium massiliensis URChM1"],["NCBITaxon%3A226524","Candidatus Chryseobacterium timonense"]]},{"id":"NCBITaxon:74201","l":"Verrucomicrobiota","na":1,"nb":1784,"a":[["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["NCBITaxon%3A2866162","Actomonas aquatica"],["NCBITaxon%3A2909285","Actomonas lomoniglobus"],["NCBITaxon%3A3445636","Actomonas mangrovi"],["NCBITaxon%3A3138695","Actomonas sp."],["NCBITaxon%3A3841136","Actomonas sp. D89-C28Y8"],["NCBITaxon%3A3445637","Actomonas spartinae"]]},{"id":"NCBITaxon:224756","l":"Methanomicrobia","na":1,"nb":1736,"a":[["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"]],"b":[["NCBITaxon%3A2056317","ANME-2 cluster archaeon"],["NCBITaxon%3A98256","archaeon A8.96.42"],["NCBITaxon%3A2971473","Candidatus Alkanophaga liquidiphilum"],["NCBITaxon%3A2971472","Candidatus Alkanophaga volatiphilum"],["NCBITaxon%3A2971454","Candidatus Alkanophagales archaeon"],["NCBITaxon%3A2608793","Candidatus Argoarchaeum ethanivorans"]]},{"id":"NCBITaxon:204441","l":"Rhodospirillales","na":1,"nb":1729,"a":[["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"]],"b":[["NCBITaxon%3A1709002","Aerophototrophica crusticola"],["NCBITaxon%3A2811398","Aerophototrophica sp."],["NCBITaxon%3A2775080","Aestuariispira ectoiniformans"],["NCBITaxon%3A1461337","Aestuariispira insulae"],["NCBITaxon%3A1872406","Aestuariispira sp."],["NCBITaxon%3A2164067","Algihabitans albus"]]},{"id":"NCBITaxon:1269","l":"Micrococcus","na":1,"nb":1469,"a":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["NCBITaxon%3A1871615","Dermacoccus sp."],["NCBITaxon%3A1275","Kocuria rosea"],["NCBITaxon%3A29377","Micrococcus aerogenes"],["NCBITaxon%3A306270","Micrococcus alkanovora"],["NCBITaxon%3A1391911","Micrococcus aloeverae"],["NCBITaxon%3A86171","Micrococcus antarcticus"]]},{"id":"NCBITaxon:651137","l":"Nitrososphaerota","na":1,"nb":1257,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]],"b":[["NCBITaxon%3A3693715","Acidarchaeum fankouense (SeqCode)"],["NCBITaxon%3A2528703","Aigarchaeota archaeon"],["NCBITaxon%3A1052838","Aigarchaeota archaeon JGI 0000001-A7"],["NCBITaxon%3A1052839","Aigarchaeota archaeon JGI 0000001-B8"],["NCBITaxon%3A1052841","Aigarchaeota archaeon JGI 0000001-H6"],["NCBITaxon%3A1052823","Aigarchaeota archaeon SCGC AAA471-A16"]]},{"id":"NCBITaxon:226","l":"Alteromonas","na":1,"nb":1246,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["NCBITaxon%3A1892904","Alteromonas abrolhosensis"],["NCBITaxon%3A1938339","Alteromonas aestuariivivens"],["NCBITaxon%3A105692","Alteromonas agarilytica"],["NCBITaxon%3A3410268","Alteromonas algae"],["NCBITaxon%3A135000","Alteromonas alvinellae"],["NCBITaxon%3A2803813","Alteromonas antoniana"]]},{"id":"NCBITaxon:47251","l":"Leptolyngbya","na":1,"nb":1210,"a":[["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]],"b":[["NCBITaxon%3A2653193","cf. Leptolyngbya sp. CCNUM2"],["NCBITaxon%3A377165","cf. Leptolyngbya sp. Greenland_10"],["NCBITaxon%3A377164","cf. Leptolyngbya sp. Greenland_9"],["NCBITaxon%3A2675591","cf. Leptolyngbya sp. PKUAC-SCTE412"],["NCBITaxon%3A2675592","cf. Leptolyngbya sp. PKUAC-SCTE413"],["NCBITaxon%3A2675593","cf. Leptolyngbya sp. PKUAC-SCTE811"]]},{"id":"NCBITaxon:171552","l":"Prevotellaceae","na":1,"nb":1003,"a":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]],"b":[["NCBITaxon%3A671218","Alloprevotella rava"],["NCBITaxon%3A524034","Alloprevotella rava F0020"],["NCBITaxon%3A679199","Alloprevotella rava F0323"],["NCBITaxon%3A1872471","Alloprevotella sp."],["NCBITaxon%3A2338072","Alloprevotella sp. A1798"],["NCBITaxon%3A2594464","Alloprevotella sp. CON1"]]},{"id":"NCBITaxon:1163","l":"Anabaena","na":1,"nb":988,"a":[["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"]],"b":[["NCBITaxon%3A212361","Anabaena aequalis"],["NCBITaxon%3A732138","Anabaena aequalis ACCS 089"],["NCBITaxon%3A264684","Anabaena augstumalis"],["NCBITaxon%3A436026","Anabaena augstumalis A802"],["NCBITaxon%3A1217902","Anabaena augstumalis CA2a-1"],["NCBITaxon%3A1940708","Anabaena augstumalis I013-0007"]]},{"id":"NCBITaxon:2818505","l":"Myxococcota","na":1,"nb":970,"a":[["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"]],"b":[["NCBITaxon%3A888830","Aetherobacter fasciculatus"],["NCBITaxon%3A888831","Aetherobacter rufus"],["NCBITaxon%3A2022431","Aetherobacter sp."],["NCBITaxon%3A888842","Aetherobacter sp. SBSr001"],["NCBITaxon%3A888843","Aetherobacter sp. SBSr008"],["NCBITaxon%3A1450165","Aggregicoccus edonensis"]]},{"id":"NCBITaxon:48736","l":"Ralstonia","na":1,"nb":906,"a":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]],"b":[["NCBITaxon%3A1944648","blood disease bacterium A2-HR MARDI"],["NCBITaxon%3A213608","blood disease bacterium BananaE"],["NCBITaxon%3A297304","blood disease bacterium JT656"],["NCBITaxon%3A297303","blood disease bacterium JT657"],["NCBITaxon%3A40803","blood disease bacterium R223"],["NCBITaxon%3A741978","blood disease bacterium R229"]]},{"id":"NCBITaxon:106589","l":"Cupriavidus","na":1,"nb":878,"a":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]],"b":[["NCBITaxon%3A1001822","Cupriavidus agavae"],["NCBITaxon%3A942866","Cupriavidus alkaliphilus"],["NCBITaxon%3A68895","Cupriavidus basilensis"],["NCBITaxon%3A1200775","Cupriavidus basilensis B-8"],["NCBITaxon%3A1127483","Cupriavidus basilensis OR16"],["NCBITaxon%3A151783","Cupriavidus campinensis"]]},{"id":"NCBITaxon:1847","l":"Pseudonocardia","na":1,"nb":850,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["NCBITaxon%3A2792008","Pseudonocardia abyssalis"],["NCBITaxon%3A2724939","Pseudonocardia acidicola"],["NCBITaxon%3A648754","Pseudonocardia adelaidensis"],["NCBITaxon%3A367279","Pseudonocardia ailaonensis"],["NCBITaxon%3A75291","Pseudonocardia alaniniphila"],["NCBITaxon%3A33907","Pseudonocardia alni"]]},{"id":"NCBITaxon:34037","l":"Rahnella","na":1,"nb":846,"a":[["SynCom_Pseudomonas_Rahnella_Artemisia_Phytoremediation.html","Pseudomonas-Rahnella native rhizosphere SynCom for Artemisia argyi phytoremediation"]],"b":[["NCBITaxon%3A2703885","Rahnella aceris"],["NCBITaxon%3A34038","Rahnella aquatilis"],["NCBITaxon%3A745277","Rahnella aquatilis CIP 78.65 = ATCC 33071"],["NCBITaxon%3A1151116","Rahnella aquatilis HX2"],["NCBITaxon%3A2816248","Rahnella bonaserana"],["NCBITaxon%3A1510573","Rahnella bruchi"]]},{"id":"NCBITaxon:507","l":"Alcaligenes","na":1,"nb":772,"a":[["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"]],"b":[["NCBITaxon%3A134375","Achromobacter sp."],["NCBITaxon%3A2582914","Alcaligenes ammonioxydans"],["NCBITaxon%3A323284","Alcaligenes aquatilis"],["NCBITaxon%3A1929088","Alcaligenes endophyticus"],["NCBITaxon%3A511","Alcaligenes faecalis"],["NCBITaxon%3A1255592","Alcaligenes faecalis 2L10"]]},{"id":"NCBITaxon:2283796","l":"Thermoplasmatota","na":1,"nb":743,"a":[["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"]],"b":[["NCBITaxon%3A507754","Acidiplasma aeolicum"],["NCBITaxon%3A312540","Acidiplasma cupricumulans"],["NCBITaxon%3A1295373","Acidiplasma cupricumulans JCM 13668 = DSM 16651"],["NCBITaxon%3A1872114","Acidiplasma sp."],["NCBITaxon%3A3402690","Acidiplasma sp. BR-02"],["NCBITaxon%3A1293648","Acidiplasma sp. MBA-1"]]},{"id":"NCBITaxon:838","l":"Prevotella","na":1,"nb":735,"a":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]],"b":[["NCBITaxon%3A2838738","Candidatus Prevotella avicola"],["NCBITaxon%3A3083129","Candidatus Prevotella equi"],["NCBITaxon%3A2838739","Candidatus Prevotella intestinigallinarum"],["NCBITaxon%3A2838740","Candidatus Prevotella stercoripullorum"],["NCBITaxon%3A81582","Prevotella aff. ruminicola Tc2-24"],["NCBITaxon%3A419005","Prevotella amnii"]]},{"id":"NCBITaxon:28453","l":"Sphingobacterium","na":1,"nb":666,"a":[["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"]],"b":[["NCBITaxon%3A2838758","Candidatus Sphingobacterium stercorigallinarum"],["NCBITaxon%3A2838759","Candidatus Sphingobacterium stercoripullorum"],["NCBITaxon%3A797292","Sphingobacterium alimentarium"],["NCBITaxon%3A1874115","Sphingobacterium alkalisoli"],["NCBITaxon%3A415956","Sphingobacterium allocomposti"],["NCBITaxon%3A493780","Sphingobacterium anhuiense"]]},{"id":"NCBITaxon:2433","l":"Roseobacter","na":1,"nb":652,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["NCBITaxon%3A196799","Arctic sea ice bacterium ARK10233"],["NCBITaxon%3A197015","Arctic sea ice bacterium ARK10278"],["NCBITaxon%3A2602289","Roseobacter cerasinus"],["NCBITaxon%3A3467295","Roseobacter cerffii"],["NCBITaxon%3A2434","Roseobacter denitrificans"],["NCBITaxon%3A375451","Roseobacter denitrificans OCh 114"]]},{"id":"NCBITaxon:110932","l":"Leifsonia","na":1,"nb":647,"a":[["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"]],"b":[["NCBITaxon%3A1638198","Candidatus Leifsonia sp. Metals-1"],["NCBITaxon%3A1638199","Candidatus Leifsonia sp. Metals-2"],["NCBITaxon%3A494024","Leifsonia antarctica"],["NCBITaxon%3A144185","Leifsonia aquatica"],["NCBITaxon%3A1358026","Leifsonia aquatica ATCC 14665"],["NCBITaxon%3A1416759","Leifsonia aquatica H1aii"]]},{"id":"NCBITaxon:1707","l":"Cellulomonas","na":1,"nb":645,"a":[["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"]],"b":[["NCBITaxon%3A1667","Arthrobacter sp."],["NCBITaxon%3A515326","Cellulomonas aerilata"],["NCBITaxon%3A3053467","Cellulomonas alba"],["NCBITaxon%3A2071633","Cellulomonas algicola"],["NCBITaxon%3A2762242","Cellulomonas avistercoris"],["NCBITaxon%3A1709","Cellulomonas biazotea"]]},{"id":"NCBITaxon:183925","l":"Methanobacteria","na":1,"nb":614,"a":[["Thermophilic_ExSitu_Biomethanation_Mixed_Culture.html","Thermophilic Ex-Situ Biomethanation Mixed Culture"]],"b":[["NCBITaxon%3A98257","archaeon A2.95.53"],["NCBITaxon%3A98259","archaeon A8.96.15"],["NCBITaxon%3A98258","archaeon A9.96.64"],["NCBITaxon%3A2006182","Candidatus Methanobinarius endosymbioticus"],["NCBITaxon%3A3110950","Candidatus Methanoflexus mossambicus"],["NCBITaxon%3A3110951","Candidatus Methanorudis spinitermitis"]]},{"id":"NCBITaxon:1988","l":"Actinomadura","na":1,"nb":562,"a":[["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"]],"b":[["NCBITaxon%3A1819600","Actinomadura adrarensis"],["NCBITaxon%3A406431","Actinomadura alba"],["NCBITaxon%3A1679523","Actinomadura algeriensis"],["NCBITaxon%3A1735446","Actinomadura alkaliterrae"],["NCBITaxon%3A755139","Actinomadura apis"],["NCBITaxon%3A1990","Actinomadura atramentaria"]]},{"id":"NCBITaxon:200918","l":"Thermotogota","na":1,"nb":513,"a":[["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"]],"b":[["NCBITaxon%3A1441386","Athalassotoga saccharophila"],["NCBITaxon%3A2022597","Athalassotoga sp."],["NCBITaxon%3A114589","bacterial str. vp424"],["NCBITaxon%3A114588","bacterial str. vp56"],["NCBITaxon%3A91178","Caldotoga fontana"],["NCBITaxon%3A2969823","Defluviitoga sp."]]},{"id":"NCBITaxon:68","l":"Lysobacter","na":1,"nb":501,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["NCBITaxon%3A488485","Luteimonas marina"],["NCBITaxon%3A1582807","Lysobacter agri"],["NCBITaxon%3A84531","Lysobacter antibioticus"],["NCBITaxon%3A1286308","Lysobacter antibioticus HS124"],["NCBITaxon%3A2795387","Lysobacter arenosi"],["NCBITaxon%3A3038776","Lysobacter arvi"]]},{"id":"NCBITaxon:83618","l":"Pseudoxanthomonas","na":1,"nb":475,"a":[["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"]],"b":[["NCBITaxon%3A1844278","Pseudoxanthomonas arseniciresistens"],["NCBITaxon%3A2782537","Pseudoxanthomonas beigongshangi"],["NCBITaxon%3A83619","Pseudoxanthomonas broegbernensis"],["NCBITaxon%3A324747","Pseudoxanthomonas byssovorax"],["NCBITaxon%3A2137479","Pseudoxanthomonas composti"],["NCBITaxon%3A266062","Pseudoxanthomonas daejeonensis"]]},{"id":"NCBITaxon:2237","l":"Haloarcula","na":1,"nb":467,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["NCBITaxon%3A337689","Haloarcula algeriensis"],["NCBITaxon%3A396317","Haloarcula amylolytica"],["NCBITaxon%3A1227452","Haloarcula amylolytica JCM 13557"],["NCBITaxon%3A2562280","Haloarcula amylovorans"],["NCBITaxon%3A43776","Haloarcula argentinensis"],["NCBITaxon%3A1230451","Haloarcula argentinensis DSM 12282"]]},{"id":"NCBITaxon:403","l":"Methylococcaceae","na":1,"nb":433,"a":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["NCBITaxon%3A160972","Bathymodiolus symbiont pMMOA-1"],["NCBITaxon%3A2707345","Candidatus Methylobacter favarea"],["NCBITaxon%3A2497749","Candidatus Methylobacter oryzae"],["NCBITaxon%3A3053457","Candidatus Methylobacter titanis"],["NCBITaxon%3A3108543","Candidatus Methylocalor cossyra"],["NCBITaxon%3A2802053","Candidatus Methylomicrobium oryzae"]]},{"id":"NCBITaxon:32011","l":"Methylophilaceae","na":1,"nb":422,"a":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["NCBITaxon%3A3043849","Candidatus Methylolitoribacter marinus"],["NCBITaxon%3A3710421","Candidatus Methylolitoribacter sp."],["NCBITaxon%3A1581557","Candidatus Methylopumilus planktonicus"],["NCBITaxon%3A2588535","Candidatus Methylopumilus rimovensis"],["NCBITaxon%3A2518607","Candidatus Methylopumilus sp."],["NCBITaxon%3A1846164","Candidatus Methylopumilus sp. SH3101B57"]]},{"id":"NCBITaxon:28228","l":"Colwellia","na":1,"nb":379,"a":[["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"]],"b":[["NCBITaxon%3A196835","Arctic sea ice bacterium ARK10102"],["NCBITaxon%3A2267621","Candidatus Colwellia aromaticivorans"],["NCBITaxon%3A1195759","Colwellia aquaemaris"],["NCBITaxon%3A1520782","Colwellia arctica"],["NCBITaxon%3A517723","Colwellia asteriadis"],["NCBITaxon%3A641665","Colwellia chukchiensis"]]},{"id":"NCBITaxon:47420","l":"Hydrogenophaga","na":1,"nb":363,"a":[["Waste_Sludge_Electrofermentation_Biofilm_Suspension_Community.html","Waste-Sludge Electro-Fermentation Biofilm-Suspension Community"]],"b":[["NCBITaxon%3A1854763","Hydrogenophaga aquatica"],["NCBITaxon%3A2610898","Hydrogenophaga aromaticivorans"],["NCBITaxon%3A249409","Hydrogenophaga atypica"],["NCBITaxon%3A439611","Hydrogenophaga bisanensis"],["NCBITaxon%3A2294117","Hydrogenophaga borbori"],["NCBITaxon%3A370976","Hydrogenophaga caeni"]]},{"id":"NCBITaxon:182639","l":"Kribbella","na":1,"nb":328,"a":[["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"]],"b":[["NCBITaxon%3A190197","Kribbella alba"],["NCBITaxon%3A1266829","Kribbella albertanoniae"],["NCBITaxon%3A416017","Kribbella aluminosa"],["NCBITaxon%3A996641","Kribbella amoyensis"],["NCBITaxon%3A190195","Kribbella antibiotica"],["NCBITaxon%3A2512217","Kribbella antiqua"]]},{"id":"NCBITaxon:2222","l":"Methanothrix","na":1,"nb":318,"a":[["Thermophilic_ExSitu_Biomethanation_Mixed_Culture.html","Thermophilic Ex-Situ Biomethanation Mixed Culture"]],"b":[["NCBITaxon%3A118058","Methanosaeta sp. AMPB-Zg"],["NCBITaxon%3A1857768","Methanosaeta sp. ARCH"],["NCBITaxon%3A1917477","Methanosaeta sp. ASM2"],["NCBITaxon%3A1917474","Methanosaeta sp. ASO1"],["NCBITaxon%3A1917475","Methanosaeta sp. ASP1-1"],["NCBITaxon%3A1917476","Methanosaeta sp. ASP1-2"]]},{"id":"NCBITaxon:434","l":"Acetobacter","na":1,"nb":309,"a":[["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["NCBITaxon%3A435","Acetobacter aceti"],["NCBITaxon%3A1457393","Acetobacter aceti 1023"],["NCBITaxon%3A663932","Acetobacter aceti ATCC 23746"],["NCBITaxon%3A887700","Acetobacter aceti NBRC 14818"],["NCBITaxon%3A1206747","Acetobacter aceti NRIC 0242"],["NCBITaxon%3A481146","Acetobacter ascendens"]]},{"id":"NCBITaxon:54298","l":"Chroococcidiopsis","na":1,"nb":302,"a":[["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"]],"b":[["NCBITaxon%3A2138304","Chroococcidiopsis bourrellyana"],["NCBITaxon%3A2138305","Chroococcidiopsis bourrellyana NTLRM1"],["NCBITaxon%3A869946","Chroococcidiopsis cf. cubana CCALA 047"],["NCBITaxon%3A171392","Chroococcidiopsis cubana"],["NCBITaxon%3A3024990","Chroococcidiopsis cubana C108"],["NCBITaxon%3A2942199","Chroococcidiopsis cubana C148"]]},{"id":"NCBITaxon:1090","l":"Chlorobiota","na":1,"nb":300,"a":[["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"]],"b":[["NCBITaxon%3A338819","anammox bacterium A-3"],["NCBITaxon%3A1653826","Ancalochloris perfilievii"],["NCBITaxon%3A1872565","Ancalochloris sp."],["NCBITaxon%3A3039321","Candidatus Chlorobium antarcticum"],["NCBITaxon%3A2716876","Candidatus Chlorobium masyuteum"],["NCBITaxon%3A1868324","Candidatus Thermochlorobacter aerophilus"]]},{"id":"NCBITaxon:168934","l":"Thalassospira","na":1,"nb":298,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["NCBITaxon%3A2800829","Candidatus Thalassospira pliocenensis"],["NCBITaxon%3A1293890","Thalassospira alkalitolerans"],["NCBITaxon%3A3037796","Thalassospira aquimaris"],["NCBITaxon%3A1528106","Thalassospira australica"],["NCBITaxon%3A1144705","Thalassospira frigidphilosprofundus"],["NCBITaxon%3A1891279","Thalassospira indica"]]},{"id":"NCBITaxon:28100","l":"Phyllobacterium","na":1,"nb":297,"a":[["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A3020828","Candidatus Phyllobacterium onerii"],["NCBITaxon%3A314236","Phyllobacterium bourgognense"],["NCBITaxon%3A314235","Phyllobacterium brassicacearum"],["NCBITaxon%3A2817027","Phyllobacterium calauticae"],["NCBITaxon%3A281785","Phyllobacterium catacumbae"],["NCBITaxon%3A2876082","Phyllobacterium chamaecytisi"]]},{"id":"NCBITaxon:5206","l":"Cryptococcus","na":1,"nb":295,"a":[["Variovorax_Cryptococcus_Vitamin_Mutualism_Microcosm.html","Variovorax-Cryptococcus Vitamin Cross-Feeding Microcosm"]],"b":[["NCBITaxon%3A552467","Cryptococcus bacillisporus"],["NCBITaxon%3A1296109","Cryptococcus bacillisporus CA1280"],["NCBITaxon%3A1296111","Cryptococcus bacillisporus CA1873"],["NCBITaxon%3A1347779","Cryptococcus bacillisporus VGIIIa Mating type alpha"],["NCBITaxon%3A2011032","Cryptococcus cf. gattii"],["NCBITaxon%3A1859122","Cryptococcus decagattii"]]},{"id":"NCBITaxon:766764","l":"Debaryomycetaceae","na":1,"nb":293,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["NCBITaxon%3A43968","Aciculoconidium aculeatum"],["NCBITaxon%3A45518","Yamadazyma aaseri"],["NCBITaxon%3A241526","Candida africana"],["NCBITaxon%3A5476","Candida albicans"],["NCBITaxon%3A1182531","Candida albicans 3153A"],["NCBITaxon%3A148631","[Candida] anglica"]]},{"id":"NCBITaxon:5073","l":"Penicillium","na":1,"nb":290,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["NCBITaxon%3A70094","Penicillium adametzioides"],["NCBITaxon%3A36650","Penicillium aethiopicum"],["NCBITaxon%3A74831","Penicillium albocoremium"],["NCBITaxon%3A1324773","Penicillium alexiae"],["NCBITaxon%3A2998136","Penicillium allaniae"],["NCBITaxon%3A1459053","Penicillium allii"]]},{"id":"NCBITaxon:252356","l":"Maribacter","na":1,"nb":273,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["NCBITaxon%3A1130723","Maribacter aestuarii"],["NCBITaxon%3A3386272","Maribacter algae"],["NCBITaxon%3A3451875","Maribacter algarum (ex Lu et al. 2025) (nom. illeg.)"],["NCBITaxon%3A2578118","Maribacter algarum (ex Zhang et al. 2020)"],["NCBITaxon%3A2498892","Maribacter algicola"],["NCBITaxon%3A505250","Maribacter antarcticus"]]},{"id":"NCBITaxon:1243","l":"Leuconostoc","na":1,"nb":271,"a":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["NCBITaxon%3A3236804","Leuconostoc aquikimchii"],["NCBITaxon%3A1252","Leuconostoc carnosum"],["NCBITaxon%3A1229758","Leuconostoc carnosum JB16"],["NCBITaxon%3A1046593","Leuconostoc carnosum KCTC 3525"],["NCBITaxon%3A33964","Leuconostoc citreum"],["NCBITaxon%3A349519","Leuconostoc citreum KM20"]]},{"id":"NCBITaxon:2239","l":"Halobacterium","na":1,"nb":271,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["NCBITaxon%3A2692200","Halobacterium bonnevillei"],["NCBITaxon%3A1407499","Halobacterium hubeiense"],["NCBITaxon%3A355548","Halobacterium jilantaiense"],["NCBITaxon%3A2039234","Halobacterium litoreum"],["NCBITaxon%3A223182","Halobacterium noricense"],["NCBITaxon%3A1341552","Halobacterium rubrum"]]},{"id":"NCBITaxon:1866885","l":"Mycolicibacterium","na":1,"nb":268,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["NCBITaxon%3A2954114","Candidatus Mycolicibacterium alkanivorans"],["NCBITaxon%3A3023370","Mycobacterium antarcticum"],["NCBITaxon%3A2939269","[Mycobacterium] appelbergii"],["NCBITaxon%3A3238985","[Mycobacterium] bulgaricum"],["NCBITaxon%3A3064286","[Mycobacterium] burgundiense"],["NCBITaxon%3A2600579","[Mycobacterium] fortunisiensis"]]},{"id":"NCBITaxon:74030","l":"Roseovarius","na":1,"nb":262,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["NCBITaxon%3A475083","Roseovarius aestuarii"],["NCBITaxon%3A1888910","Roseovarius aestuariivivens"],["NCBITaxon%3A1247867","Roseovarius albus"],["NCBITaxon%3A1678842","Roseovarius algicolus"],["NCBITaxon%3A2211448","Roseovarius amoyensis"],["NCBITaxon%3A1535313","Roseovarius antarcticus"]]},{"id":"NCBITaxon:189779","l":"Nitrospiraceae","na":1,"nb":260,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"]],"b":[["NCBITaxon%3A3692265","Candidatus Inralta sp."],["NCBITaxon%3A3137712","Candidatus Magnetominusculus dajiuhuensis"],["NCBITaxon%3A2914034","Candidatus Magnetominusculus sp. LBB02"],["NCBITaxon%3A1748249","Candidatus Magnetominusculus xianensis"],["NCBITaxon%3A1609970","Candidatus Magnetovum chiemense"],["NCBITaxon%3A995730","Candidatus Magnetovum mohavense"]]},{"id":"NCBITaxon:213121","l":"Desulfobulbaceae","na":1,"nb":260,"a":[["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"]],"b":[["NCBITaxon%3A3101188","Candidatus Desulfatifera sp."],["NCBITaxon%3A2841691","Candidatus Desulfatifera sulfidica"],["NCBITaxon%3A2841692","Candidatus Desulfobia pelagia"],["NCBITaxon%3A2480839","Candidatus Desulfobulbus rimicarensis"],["NCBITaxon%3A2005002","Candidatus Electronema aureum"],["NCBITaxon%3A3036122","Candidatus Electronema halotolerans"]]},{"id":"NCBITaxon:572511","l":"Blautia","na":1,"nb":249,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["NCBITaxon%3A3133036","Blautia acetica"],["NCBITaxon%3A2981783","Blautia acetigignens"],["NCBITaxon%3A2981782","Blautia ammoniilytica"],["NCBITaxon%3A3133153","Blautia aquisgranensis"],["NCBITaxon%3A1912897","Blautia argi"],["NCBITaxon%3A2696678","Blautia brookingsii"]]},{"id":"NCBITaxon:1142","l":"Synechocystis","na":1,"nb":247,"a":[["Dairy_Wastewater_Algal_Cyanobacterial_Cultivation_Panel.html","Dairy Wastewater Algal-Cyanobacterial Cultivation Panel"]],"b":[["NCBITaxon%3A543824","Synechocystis aquatilis"],["NCBITaxon%3A543825","Synechocystis aquatilis 1LT32S04"],["NCBITaxon%3A1443101","Synechocystis aquatilis C23"],["NCBITaxon%3A1443102","Synechocystis aquatilis C25"],["NCBITaxon%3A1417686","Synechocystis aquatilis I13"],["NCBITaxon%3A1417687","Synechocystis aquatilis I14"]]},{"id":"NCBITaxon:46255","l":"Weissella","na":1,"nb":247,"a":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["NCBITaxon%3A253243","uncultured Weissella sp."],["NCBITaxon%3A1505725","Weissella bombi"],["NCBITaxon%3A759620","Weissella ceti"],["NCBITaxon%3A1238674","Weissella ceti NC36"],["NCBITaxon%3A137591","Weissella cibaria"],["NCBITaxon%3A1255594","Weissella cibaria 3385"]]},{"id":"NCBITaxon:171550","l":"Rikenellaceae","na":1,"nb":241,"a":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]],"b":[["NCBITaxon%3A979970","Acetobacteroides hydrogenigenes"],["NCBITaxon%3A1872095","Acetobacteroides sp."],["NCBITaxon%3A2764708","Acetobacteroides sp. MIZ14"],["NCBITaxon%3A2585118","Alistipes communis"],["NCBITaxon%3A2585119","Alistipes dispar"],["NCBITaxon%3A214856","Alistipes finegoldii"]]},{"id":"NCBITaxon:2172","l":"Methanobrevibacter","na":1,"nb":232,"a":[["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["NCBITaxon%3A243898","endosymbiont 'TS1' of Trimyema compressum"],["NCBITaxon%3A120963","Methanobrevibacter acididurans"],["NCBITaxon%3A39441","Methanobrevibacter arboriphilus"],["NCBITaxon%3A1401244","Methanobrevibacter arboriphilus ANOR1"],["NCBITaxon%3A1300164","Methanobrevibacter arboriphilus JCM 13429 = DSM 1125"],["NCBITaxon%3A1293039","Methanobrevibacter arboriphilus JCM 9315"]]},{"id":"NCBITaxon:1219","l":"Prochlorococcus marinus","na":1,"nb":214,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A379362","environmental samples"],["NCBITaxon%3A1219","Prochlorococcus marinus"],["NCBITaxon%3A2724906","Prochlorococcus marinus 150NLHA"],["NCBITaxon%3A2724907","Prochlorococcus marinus 150SLHA"],["NCBITaxon%3A2724908","Prochlorococcus marinus 150SLHB"],["NCBITaxon%3A1041938","Prochlorococcus marinus bv. HNLC1"]]},{"id":"NCBITaxon:375288","l":"Parabacteroides","na":1,"nb":199,"a":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"]],"b":[["NCBITaxon%3A2838720","Candidatus Parabacteroides faecavium"],["NCBITaxon%3A2838721","Candidatus Parabacteroides intestinavium"],["NCBITaxon%3A2838722","Candidatus Parabacteroides intestinigallinarum"],["NCBITaxon%3A2838723","Candidatus Parabacteroides intestinipullorum"],["NCBITaxon%3A2951805","Parabacteroides absconsus"],["NCBITaxon%3A2290935","Parabacteroides acidifaciens"]]},{"id":"NCBITaxon:67812","l":"Candidatus Omnitrophota","na":1,"nb":196,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]],"b":[["NCBITaxon%3A3041132","Candidatus Aadella gelida"],["NCBITaxon%3A1974748","Candidatus Abzuiibacterium crystallinum"],["NCBITaxon%3A3041133","Candidatus Aceula lacicola"],["NCBITaxon%3A3041134","Candidatus Aceula meridiana"],["NCBITaxon%3A3042653","Candidatus Amyimicrobium silvilacustre"],["NCBITaxon%3A3401993","Candidatus Aquincolibacterium aerophilum"]]},{"id":"NCBITaxon:213119","l":"Desulfobacteraceae","na":1,"nb":194,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"]],"b":[["NCBITaxon%3A318481","Algorimarina butyrica"],["NCBITaxon%3A2487131","Candidatus Desulfarcum epimagneticum"],["NCBITaxon%3A2841694","Candidatus Desulfobacula maris"],["NCBITaxon%3A1817353","Candidatus Magnetananas drummondensis"],["NCBITaxon%3A1463558","Candidatus Magnetananas rongchengensis"],["NCBITaxon%3A1817379","Candidatus Magnetananas sp. SF-1"]]},{"id":"NCBITaxon:970","l":"Selenomonas","na":1,"nb":188,"a":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]],"b":[["NCBITaxon%3A60695","Selenomonas lipolytica"],["NCBITaxon%3A135081","Selenomonas flueggei-like sp. clone AH132"],["NCBITaxon%3A230144","Selenomonas genomosp. C1"],["NCBITaxon%3A230145","Selenomonas genomosp. C2"],["NCBITaxon%3A241557","Selenomonas genomosp. P5"],["NCBITaxon%3A326375","Selenomonas genomosp. P6 oral clone MB3_C41"]]},{"id":"NCBITaxon:119532","l":"Microcoleus vaginatus","na":1,"nb":186,"a":[["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]],"b":[["NCBITaxon%3A2290990","Microcoleus cf. vaginatus Ru-6-12"],["NCBITaxon%3A119532","Microcoleus vaginatus"],["NCBITaxon%3A3034630","Microcoleus vaginatus 98"],["NCBITaxon%3A2493238","Microcoleus vaginatus ACT688"],["NCBITaxon%3A3459536","Microcoleus vaginatus APE406"],["NCBITaxon%3A669364","Microcoleus vaginatus ASU LT04"]]},{"id":"NCBITaxon:1253","l":"Pediococcus","na":1,"nb":186,"a":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["NCBITaxon%3A1872398","Aerococcus sp."],["NCBITaxon%3A51665","Aerococcus urinaeequi"],["NCBITaxon%3A1254","Pediococcus acidilactici"],["NCBITaxon%3A563194","Pediococcus acidilactici 7_4"],["NCBITaxon%3A1384067","Pediococcus acidilactici AGR20"],["NCBITaxon%3A1306952","Pediococcus acidilactici D3"]]},{"id":"NCBITaxon:1033","l":"Afipia","na":1,"nb":182,"a":[["Thiocyanate_Afipia_Thiobacillus_Bioreactor_Community.html","Thiocyanate-Degrading Afipia and Thiobacillus Bioreactor Community"]],"b":[["NCBITaxon%3A151414","Afipia birgiae"],["NCBITaxon%3A1197906","Afipia birgiae 34632"],["NCBITaxon%3A56946","Afipia broomeae"],["NCBITaxon%3A883078","Afipia broomeae ATCC 49717"],["NCBITaxon%3A40137","Afipia carboxidovorans"],["NCBITaxon%3A1031710","Afipia carboxidovorans OM4"]]},{"id":"NCBITaxon:28065","l":"Rhodoferax","na":1,"nb":177,"a":[["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"]],"b":[["NCBITaxon%3A3386181","Candidatus Rhodoferax bjergmarkensis"],["NCBITaxon%3A3386182","Candidatus Rhodoferax mariagerensis"],["NCBITaxon%3A3386180","Candidatus Rhodoferax odensensis"],["NCBITaxon%3A3386179","Candidatus Rhodoferax randersensis"],["NCBITaxon%3A81479","Rhodoferax antarcticus"],["NCBITaxon%3A1111071","Rhodoferax antarcticus ANT.BR"]]},{"id":"NCBITaxon:133","l":"Methylocystis","na":1,"nb":168,"a":[["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"]],"b":[["NCBITaxon%3A3118750","Methylocystis borbori"],["NCBITaxon%3A655015","Methylocystis bryophila"],["NCBITaxon%3A29468","Methylocystis echinoides"],["NCBITaxon%3A391905","Methylocystis heyeri"],["NCBITaxon%3A369798","Methylocystis hirsuta"],["NCBITaxon%3A187303","Methylocystis hydrogenophila"]]},{"id":"NCBITaxon:190323","l":"Plantibacter","na":1,"nb":168,"a":[["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A199710","Plantibacter agrosticola (nom. nud.)"],["NCBITaxon%3A272914","Plantibacter auratus"],["NCBITaxon%3A199709","Plantibacter cousiniae (nom. nud.)"],["NCBITaxon%3A199708","Plantibacter elymi (nom. nud.)"],["NCBITaxon%3A150123","Plantibacter flavus"],["NCBITaxon%3A3423918","Plantibacter lichenum"]]},{"id":"NCBITaxon:61434","l":"Dehalococcoides","na":1,"nb":161,"a":[["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["NCBITaxon%3A257449","Dehalococcoides Family A Group"],["NCBITaxon%3A61435","Dehalococcoides mccartyi"],["NCBITaxon%3A243164","Dehalococcoides mccartyi 195"],["NCBITaxon%3A216389","Dehalococcoides mccartyi BAV1"],["NCBITaxon%3A1193806","Dehalococcoides mccartyi BTF08"],["NCBITaxon%3A255470","Dehalococcoides mccartyi CBDB1"]]},{"id":"NCBITaxon:20","l":"Phenylobacterium","na":1,"nb":156,"a":[["Tomato_Oxylipin_SynCom3.html","Tomato Oxylipin-Protective SynCom3"]],"b":[["NCBITaxon%3A1763816","Phenylobacterium aquaticum"],["NCBITaxon%3A457173","Phenylobacterium composti"],["NCBITaxon%3A1122958","Phenylobacterium composti DSM 19425"],["NCBITaxon%3A1298959","Phenylobacterium conjunctum"],["NCBITaxon%3A1914756","Phenylobacterium deserti"],["NCBITaxon%3A279827","Phenylobacterium falsum"]]},{"id":"NCBITaxon:119977","l":"Acidithiobacillus","na":1,"nb":152,"a":[["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"]],"b":[["NCBITaxon%3A2937799","Acidithiobacillus acidisediminis"],["NCBITaxon%3A119978","Acidithiobacillus albertensis"],["NCBITaxon%3A33059","Acidithiobacillus caldus"],["NCBITaxon%3A637389","Acidithiobacillus caldus ATCC 51756"],["NCBITaxon%3A990288","Acidithiobacillus caldus SM-1"],["NCBITaxon%3A3063952","Acidithiobacillus concretivorus"]]},{"id":"NCBITaxon:1134404","l":"Ignavibacteriota","na":1,"nb":150,"a":[["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"]],"b":[["NCBITaxon%3A3879837","Candidatus Tepidaquicellaceae bacterium"],["NCBITaxon%3A3414687","Candidatus Tepidiaquacella proteinivora"],["NCBITaxon%3A3455485","Candidatus Tepidiaquacellales bacterium"],["NCBITaxon%3A1617411","Candidatus Tepidiaquacellales bacterium OLB4/UTCHB1"],["NCBITaxon%3A1617412","Candidatus Tepidiaquacellales bacterium OLB5"],["NCBITaxon%3A1948666","Candidatus Tepidiaquacellales bacterium UBA2330"]]},{"id":"NCBITaxon:441","l":"Gluconobacter","na":1,"nb":143,"a":[["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"]],"b":[["NCBITaxon%3A2662454","Gluconobacter aidae"],["NCBITaxon%3A318683","Gluconobacter albidus"],["NCBITaxon%3A1307944","Gluconobacter albidus NBRC 3250"],["NCBITaxon%3A2728101","Gluconobacter cadivus"],["NCBITaxon%3A1379734","Gluconobacter cerevisiae"],["NCBITaxon%3A38307","Gluconobacter cerinus"]]},{"id":"NCBITaxon:84565","l":"Sodalis","na":1,"nb":139,"a":[["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"]],"b":[["NCBITaxon%3A2812662","Candidatus Sodalis endolongispinus"],["NCBITaxon%3A1173031","Candidatus Sodalis melophagi"],["NCBITaxon%3A1486991","Candidatus Sodalis pierantonii"],["NCBITaxon%3A2342","Candidatus Sodalis pierantonii str. SOPE"],["NCBITaxon%3A1922216","Candidatus Sodalis sp. SoCistrobi"],["NCBITaxon%3A51226","Glossina austeni S-endosymbiont"]]},{"id":"NCBITaxon:82976","l":"Buttiauxella","na":1,"nb":138,"a":[["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A82977","Buttiauxella agrestis"],["NCBITaxon%3A1006004","Buttiauxella agrestis ATCC 33320"],["NCBITaxon%3A82988","Buttiauxella brennerae"],["NCBITaxon%3A1354251","Buttiauxella brennerae ATCC 51605"],["NCBITaxon%3A2010264","Buttiauxella chrysanthemi"],["NCBITaxon%3A2904524","Buttiauxella cochleicola"]]},{"id":"NCBITaxon:111500","l":"Allomuricauda","na":1,"nb":137,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["NCBITaxon%3A192149","Allomuricauda sp."],["NCBITaxon%3A396072","Allomuricauda sp. 1-5C"],["NCBITaxon%3A501808","Allomuricauda sp. 2PR55-3"],["NCBITaxon%3A287555","Allomuricauda sp. 3IX/A02/243"],["NCBITaxon%3A1701315","Allomuricauda sp. 5M7.13"],["NCBITaxon%3A287532","Allomuricauda sp. 7IX/A01/155"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":1,"nb":124,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["NCBITaxon%3A1748","Acidipropionibacterium acidipropionici"],["NCBITaxon%3A1171373","Acidipropionibacterium acidipropionici ATCC 4875"],["NCBITaxon%3A1750","Arachnia propionica"],["NCBITaxon%3A38288","Corynebacterium genitalium"],["NCBITaxon%3A585529","Corynebacterium genitalium ATCC 33030"],["NCBITaxon%3A1747","Cutibacterium acnes"]]},{"id":"NCBITaxon:2836","l":"Bacillariophyta","na":1,"nb":122,"a":[["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]],"b":[["NCBITaxon%3A451788","Acanthoceras zachariasii"],["NCBITaxon%3A431333","Achnanthidium minutissimum"],["NCBITaxon%3A49231","Actinocyclus curvatulus"],["NCBITaxon%3A265554","Amphora coffeiformis"],["NCBITaxon%3A1155433","Arcocellulus cornucervis"],["NCBITaxon%3A210441","Asterionella formosa"]]},{"id":"NCBITaxon:416","l":"Methylomonas","na":1,"nb":122,"a":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["NCBITaxon%3A1854563","Methylomonas albis"],["NCBITaxon%3A46896","Methylomonas aminofaciens"],["NCBITaxon%3A39771","Methylomonas aurantiaca"],["NCBITaxon%3A2952224","Methylomonas aurea"],["NCBITaxon%3A3045149","Methylomonas defluvii"],["NCBITaxon%3A1538553","Methylomonas denitrificans"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":1,"nb":118,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["NCBITaxon%3A69966","Macrococcoides caseolyticum"],["NCBITaxon%3A1822","Nocardia vaccinii"],["NCBITaxon%3A1210098","Nocardia vaccinii NBRC 15922"],["NCBITaxon%3A1282","Staphylococcus epidermidis"],["NCBITaxon%3A1235440","Staphylococcus epidermidis 12142587"],["NCBITaxon%3A1000590","Staphylococcus epidermidis 14.1.R1.SE"]]},{"id":"NCBITaxon:245876","l":"Nitratireductor","na":1,"nb":116,"a":[["Nitratireductor_Gordonia_Z123_LDPE_Degradation_SynCom.html","Nitratireductor-Gordonia Z123 LDPE-Degradation SynCom"]],"b":[["NCBITaxon%3A1735103","Nitratireductor aestuarii"],["NCBITaxon%3A2448161","Nitratireductor alexandrii"],["NCBITaxon%3A204799","Nitratireductor aquibiodomus"],["NCBITaxon%3A1231185","Nitratireductor aquibiodomus NL21 = JCM 21793"],["NCBITaxon%3A1189611","Nitratireductor aquibiodomus RA22"],["NCBITaxon%3A889300","Nitratireductor aquimarinus"]]},{"id":"NCBITaxon:1935183","l":"Promethearchaeati","na":1,"nb":115,"a":[["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"]],"b":[["NCBITaxon%3A1655639","archaeon Loki2/3"],["NCBITaxon%3A3107042","Candidatus Asgardarchaeales archaeon"],["NCBITaxon%3A3107043","Candidatus Asgardarchaeia archaeon"],["NCBITaxon%3A3163616","Candidatus Asgardarchaeum abyssi"],["NCBITaxon%3A3067292","Candidatus Asgardarchaeum californiense"],["NCBITaxon%3A3101517","Candidatus Asgardarchaeum sp."]]},{"id":"GTDB:s__Citrobacter_freundii","l":"","na":1,"nb":109,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["NCBITaxon%3A546","Citrobacter freundii"],["NCBITaxon%3A1006003","Citrobacter freundii ATCC 8090 = MTCC 1658 = NBRC 12681"],["NCBITaxon%3A3025079","Citrobacter freundii complex sp. 2022EL-00793"],["NCBITaxon%3A2994611","Citrobacter freundii complex sp. 2022EL-00822"],["NCBITaxon%3A2994610","Citrobacter freundii complex sp. 2022EL-00971"],["NCBITaxon%3A2994609","Citrobacter freundii complex sp. 2022EL-00972"]]},{"id":"GTDB:s__Citrobacter_braakii","l":"","na":1,"nb":105,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["NCBITaxon%3A35703","Citrobacter amalonaticus"],["NCBITaxon%3A57706","Citrobacter braakii"],["NCBITaxon%3A546","Citrobacter freundii"],["NCBITaxon%3A2077147","Citrobacter freundii complex sp. CFNIH3"],["NCBITaxon%3A2080671","Citrobacter freundii complex sp. CFNIH5"],["NCBITaxon%3A670484","Citrobacter freundii str. ballerup 7851/39"]]},{"id":"NCBITaxon:255204","l":"Pseudoclavibacter","na":1,"nb":105,"a":[["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"]],"b":[["NCBITaxon%3A272239","Gulosibacter bifidus"],["NCBITaxon%3A272240","Gulosibacter faecalis"],["NCBITaxon%3A272241","Pseudoclavibacter albus"],["NCBITaxon%3A908846","Pseudoclavibacter caeni"],["NCBITaxon%3A587635","Pseudoclavibacter chungangensis"],["NCBITaxon%3A1778590","Pseudoclavibacter endophyticus"]]},{"id":"NCBITaxon:404432","l":"Salinicola","na":1,"nb":103,"a":[["Pelagerythrobacter_Salinicola_PES_Pyrene_Degradation_SynCom.html","Pelagerythrobacter-Salinicola PES Pyrene-Degradation SynCom"]],"b":[["NCBITaxon%3A1541440","Salinicola acroporae"],["NCBITaxon%3A1949082","Salinicola aestuarinus"],["NCBITaxon%3A2916836","Salinicola avicenniae"],["NCBITaxon%3A2606937","Salinicola corii"],["NCBITaxon%3A1949083","Salinicola endophyticus"],["NCBITaxon%3A1949081","Salinicola halimionae"]]},{"id":"NCBITaxon:1501433","l":"Kamptonema","na":1,"nb":101,"a":[["Microalgae_Cyanobacteria_Bioactive_Peptide_Consortia.html","Microalgae-Cyanobacteria Bioactive Peptide Consortia"]],"b":[["NCBITaxon%3A92934","Kamptonema animale"],["NCBITaxon%3A1892029","Kamptonema animale 48et"],["NCBITaxon%3A2930505","Kamptonema animale BEA 0982B"],["NCBITaxon%3A1546116","Kamptonema animale BTA258"],["NCBITaxon%3A1443097","Kamptonema animale C5"],["NCBITaxon%3A499848","Kamptonema animale CCALA 138"]]},{"id":"NCBITaxon:906","l":"Megasphaera","na":1,"nb":98,"a":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]],"b":[["NCBITaxon%3A219650","environmental samples"],["NCBITaxon%3A2981791","Megasphaera butyrica"],["NCBITaxon%3A39029","Megasphaera cerevisiae"],["NCBITaxon%3A1122219","Megasphaera cerevisiae DSM 20462"],["NCBITaxon%3A1981790","Megasphaera cf. elsdenii"],["NCBITaxon%3A1852379","Megasphaera coli"]]},{"id":"NCBITaxon:1434011","l":"Komagataeibacter","na":1,"nb":94,"a":[["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"]],"b":[["NCBITaxon%3A1932662","Komagataeibacter diospyri"],["NCBITaxon%3A33995","Komagataeibacter europaeus"],["NCBITaxon%3A940285","Komagataeibacter europaeus 5P3"],["NCBITaxon%3A940284","Komagataeibacter europaeus LMG 18494"],["NCBITaxon%3A940283","Komagataeibacter europaeus LMG 18890"],["NCBITaxon%3A1234669","Komagataeibacter europaeus NBRC 3261"]]},{"id":"NCBITaxon:76890","l":"Asticcacaulis","na":1,"nb":94,"a":[["Tomato_Oxylipin_SynCom3.html","Tomato Oxylipin-Protective SynCom3"]],"b":[["NCBITaxon%3A2984212","Asticcacaulis aquaticus"],["NCBITaxon%3A347481","Asticcacaulis benevestitus"],["NCBITaxon%3A1121022","Asticcacaulis benevestitus DSM 16100 = ATCC BAA-896"],["NCBITaxon%3A76891","Asticcacaulis biprosthecium"],["NCBITaxon%3A715226","Asticcacaulis biprosthecium C19"],["NCBITaxon%3A3040349","Asticcacaulis carbonis"]]},{"id":"NCBITaxon:1179","l":"Desmonostoc muscorum","na":1,"nb":85,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["NCBITaxon%3A1179","Desmonostoc muscorum"],["NCBITaxon%3A1887616","Desmonostoc muscorum 9a"],["NCBITaxon%3A2493151","Desmonostoc muscorum ACSSI 046"],["NCBITaxon%3A1977323","Desmonostoc muscorum ACSSI 091"],["NCBITaxon%3A1977325","Desmonostoc muscorum ACSSI 149"],["NCBITaxon%3A3735077","Desmonostoc muscorum AUR1017"]]},{"id":"NCBITaxon:145260","l":"Methanothermobacter","na":1,"nb":85,"a":[["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"]],"b":[["NCBITaxon%3A1045764","Methanothermobacter crinale"],["NCBITaxon%3A49339","Methanothermobacter defluvii"],["NCBITaxon%3A145263","Methanothermobacter marburgensis"],["NCBITaxon%3A79929","Methanothermobacter marburgensis str. Marburg"],["NCBITaxon%3A1884223","Methanothermobacter sp."],["NCBITaxon%3A866790","Methanothermobacter sp. CaT2"]]},{"id":"NCBITaxon:56112","l":"Dehalobacter","na":1,"nb":82,"a":[["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]],"b":[["NCBITaxon%3A3401927","Candidatus Dehalobacter alkaniphilus"],["NCBITaxon%3A3683355","Candidatus Dehalobacter sp. J1"],["NCBITaxon%3A55583","Dehalobacter restrictus"],["NCBITaxon%3A871738","Dehalobacter restrictus DSM 9455"],["NCBITaxon%3A1962289","Dehalobacter sp."],["NCBITaxon%3A2070364","Dehalobacter sp. 12DCB1"]]},{"id":"NCBITaxon:16","l":"Methylophilus","na":1,"nb":81,"a":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["NCBITaxon%3A1971610","Methylophilus aquaticus"],["NCBITaxon%3A640084","Methylophilus flavus"],["NCBITaxon%3A214633","Methylophilus freyburgensis"],["NCBITaxon%3A752553","Methylophilus glucosoxydans"],["NCBITaxon%3A45393","Methylophilus leisingeri"],["NCBITaxon%3A640108","Methylophilus luteus"]]},{"id":"NCBITaxon:133925","l":"Olsenella","na":1,"nb":79,"a":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["NCBITaxon%3A2838707","Candidatus Olsenella avicola"],["NCBITaxon%3A2838708","Candidatus Olsenella avistercoris"],["NCBITaxon%3A2838709","Candidatus Olsenella excrementavium"],["NCBITaxon%3A2838710","Candidatus Olsenella excrementigallinarum"],["NCBITaxon%3A2838711","Candidatus Olsenella pullicola"],["NCBITaxon%3A2838712","Candidatus Olsenella pullistercoris"]]},{"id":"NCBITaxon:86795","l":"Marmoricola","na":1,"nb":77,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["NCBITaxon%3A2040280","Marmoricola endophyticus"],["NCBITaxon%3A1645666","Marmoricola silvestris"],["NCBITaxon%3A1692016","Marmoricola soli"],["NCBITaxon%3A1909296","Marmoricola sp."],["NCBITaxon%3A476901","Marmoricola sp. BAC242"],["NCBITaxon%3A1638098","Marmoricola sp. BN130122"]]},{"id":"NCBITaxon:204476","l":"Labrys","na":1,"nb":76,"a":[["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["NCBITaxon%3A400769","Labrys ginsengisoli"],["NCBITaxon%3A298598","Labrys methylaminiphilus"],["NCBITaxon%3A1096091","Labrys methylaminiphilus JLW10"],["NCBITaxon%3A3404917","Labrys methylaminiphilus subsp. lupini"],["NCBITaxon%3A346912","Labrys miyagiensis"],["NCBITaxon%3A217067","Labrys monachus"]]},{"id":"GTDB:s__Bacillus_altitudinis","l":"","na":1,"nb":72,"a":[["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"]],"b":[["NCBITaxon%3A115547","uncultured archaeon"],["NCBITaxon%3A293388","Bacillus aerius"],["NCBITaxon%3A293389","Bacillus aerophilus"],["NCBITaxon%3A293387","Bacillus altitudinis"],["NCBITaxon%3A1178544","Bacillus altitudinis 41KF2b"],["NCBITaxon%3A1326972","Bacillus altitudinis A23-8"]]},{"id":"GTDB:s__Bacillus_safensis","l":"","na":1,"nb":70,"a":[["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"]],"b":[["NCBITaxon%3A1889774","Bacillaceae bacterium"],["NCBITaxon%3A293389","Bacillus aerophilus"],["NCBITaxon%3A1408","Bacillus pumilus"],["NCBITaxon%3A561879","Bacillus safensis"],["NCBITaxon%3A1178541","Bacillus safensis FO-36b"],["NCBITaxon%3A1982610","Bacillus safensis subsp. osmophilus"]]},{"id":"NCBITaxon:862","l":"Syntrophomonas","na":1,"nb":68,"a":[["Waste_Sludge_Electrofermentation_Biofilm_Suspension_Community.html","Waste-Sludge Electro-Fermentation Biofilm-Suspension Community"]],"b":[["NCBITaxon%3A2082","Syntrophomonas bryantii"],["NCBITaxon%3A382673","Syntrophomonas cellicola"],["NCBITaxon%3A231025","Syntrophomonas curvata"],["NCBITaxon%3A264446","Syntrophomonas erecta"],["NCBITaxon%3A1123327","Syntrophomonas erecta DSM 16215"],["NCBITaxon%3A370896","Syntrophomonas erecta subsp. sporosyntropha"]]},{"id":"NCBITaxon:1801631","l":"Microcaldota","na":1,"nb":67,"a":[["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"]],"b":[["NCBITaxon%3A2885744","Candidatus Anstonella stagnisolia"],["NCBITaxon%3A2886383","Candidatus Anstonellaceae archaeon"],["NCBITaxon%3A3058027","Candidatus Anstonellales archaeon"],["NCBITaxon%3A2886391","Candidatus Bilamarchaeaceae archaeon"],["NCBITaxon%3A2885759","Candidatus Bilamarchaeum dharawalense"],["NCBITaxon%3A3070761","Candidatus Bilamarchaeum sp."]]},{"id":"NCBITaxon:171673","l":"Inquilinus","na":1,"nb":65,"a":[["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A363840","Inquilinus ginsengisoli"],["NCBITaxon%3A171674","Inquilinus limosus"],["NCBITaxon%3A1122125","Inquilinus limosus DSM 16000"],["NCBITaxon%3A1398085","Inquilinus limosus MP06"],["NCBITaxon%3A1932117","Inquilinus sp."],["NCBITaxon%3A3232975","Inquilinus sp. 2KB_12"]]},{"id":"NCBITaxon:12960","l":"Azoarcus","na":1,"nb":64,"a":[["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"]],"b":[["NCBITaxon%3A90060","Aromatoleum toluolicum"],["NCBITaxon%3A29545","Azoarcus indigens"],["NCBITaxon%3A418699","Azoarcus olearius"],["NCBITaxon%3A29544","Azoarcus sp."],["NCBITaxon%3A2303328","Azoarcus sp. Aa7"],["NCBITaxon%3A356841","Azoarcus sp. AN21"]]},{"id":"NCBITaxon:429","l":"Methylobacter","na":1,"nb":61,"a":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["NCBITaxon%3A2707345","Candidatus Methylobacter favarea"],["NCBITaxon%3A2497749","Candidatus Methylobacter oryzae"],["NCBITaxon%3A3053457","Candidatus Methylobacter titanis"],["NCBITaxon%3A3230117","Methylobacter arcticus"],["NCBITaxon%3A29425","Methylobacter bovis"],["NCBITaxon%3A430","Methylobacter capsulatus"]]},{"id":"NCBITaxon:832","l":"Fibrobacter","na":1,"nb":61,"a":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]],"b":[["NCBITaxon%3A28122","Fibrobacter intestinalis"],["NCBITaxon%3A35828","Fibrobacter sp."],["NCBITaxon%3A3239812","Fibrobacter sp. HC4"],["NCBITaxon%3A1200546","Fibrobacter sp. RM1"],["NCBITaxon%3A1946526","Fibrobacter sp. UBA1313"],["NCBITaxon%3A1946527","Fibrobacter sp. UBA1717"]]},{"id":"GTDB:s__Lacticaseibacillus_paracasei","l":"","na":1,"nb":60,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["NCBITaxon%3A1582","Lacticaseibacillus casei"],["NCBITaxon%3A1051650","Lacticaseibacillus casei 12A"],["NCBITaxon%3A1051651","Lacticaseibacillus casei 21/1"],["NCBITaxon%3A1051653","Lacticaseibacillus casei A2-362"],["NCBITaxon%3A1423732","Lacticaseibacillus casei DSM 20011 = JCM 1134 = ATCC 393"],["NCBITaxon%3A1051661","Lacticaseibacillus casei UW4"]]},{"id":"NCBITaxon:36853","l":"Desulfitobacterium","na":1,"nb":60,"a":[["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["NCBITaxon%3A51616","Desulfitobacterium chlororespirans"],["NCBITaxon%3A1121395","Desulfitobacterium chlororespirans DSM 11544"],["NCBITaxon%3A36854","Desulfitobacterium dehalogenans"],["NCBITaxon%3A756499","Desulfitobacterium dehalogenans ATCC 51507"],["NCBITaxon%3A233055","Desulfitobacterium dichloroeliminans"],["NCBITaxon%3A871963","Desulfitobacterium dichloroeliminans LMG P-21439"]]},{"id":"NCBITaxon:34067","l":"Cycloclasticus","na":1,"nb":59,"a":[["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"]],"b":[["NCBITaxon%3A1871189","Cycloclasticus endosymbiont of Bathymodiolus heckerae"],["NCBITaxon%3A1871190","Cycloclasticus endosymbiont of sponge"],["NCBITaxon%3A46457","Cycloclasticus oligotrophus"],["NCBITaxon%3A34068","Cycloclasticus pugetii"],["NCBITaxon%3A655438","Cycloclasticus pugetii PS-1"],["NCBITaxon%3A2024830","Cycloclasticus sp."]]},{"id":"NCBITaxon:316612","l":"Methylibium","na":1,"nb":57,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["NCBITaxon%3A105560","Methylibium petroleiphilum"],["NCBITaxon%3A420662","Methylibium petroleiphilum PM1"],["NCBITaxon%3A2570323","Methylibium rhizosphaerae"],["NCBITaxon%3A2067992","Methylibium sp."],["NCBITaxon%3A1454797","Methylibium sp. B17"],["NCBITaxon%3A471602","Methylibium sp. BAC113P"]]},{"id":"NCBITaxon:49082","l":"Candidatus Neoarthromitus","na":1,"nb":57,"a":[["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["NCBITaxon%3A2666074","Candidatus Arthromitus sp. GSU"],["NCBITaxon%3A2608943","Candidatus Arthromitus sp. M17"],["NCBITaxon%3A2608944","Candidatus Arthromitus sp. M18"],["NCBITaxon%3A2608945","Candidatus Arthromitus sp. M19"],["NCBITaxon%3A2608946","Candidatus Arthromitus sp. M20"],["NCBITaxon%3A2608947","Candidatus Arthromitus sp. M21"]]},{"id":"GTDB:s__Bradyrhizobium_barranii","l":"","na":1,"nb":56,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"]],"b":[["NCBITaxon%3A2992140","Bradyrhizobium barranii"],["NCBITaxon%3A2819348","Bradyrhizobium barranii subsp. apii"],["NCBITaxon%3A2823807","Bradyrhizobium barranii subsp. barranii"],["NCBITaxon%3A29448","Bradyrhizobium elkanii"],["NCBITaxon%3A375","Bradyrhizobium japonicum"],["NCBITaxon%3A1128253","Bradyrhizobium japonicum CCBAU 15354"]]},{"id":"NCBITaxon:1185873","l":"Desertifilum tharense","na":1,"nb":56,"a":[["Dairy_Wastewater_Algal_Cyanobacterial_Cultivation_Panel.html","Dairy Wastewater Algal-Cyanobacterial Cultivation Panel"]],"b":[["NCBITaxon%3A2841059","Desertifilum dzianense Am4"],["NCBITaxon%3A2219545","Desertifilum dzianense PMC 871.14"],["NCBITaxon%3A2162620","Desertifilum dzianense PMC 872.14"],["NCBITaxon%3A2219546","Desertifilum dzianense PMC 873.14"],["NCBITaxon%3A2219547","Desertifilum dzianense PMC 874.14"],["NCBITaxon%3A2219548","Desertifilum dzianense PMC 875.14"]]},{"id":"NCBITaxon:1597","l":"Lacticaseibacillus paracasei","na":1,"nb":56,"a":[["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["NCBITaxon%3A1582","Lacticaseibacillus casei"],["NCBITaxon%3A1597","Lacticaseibacillus paracasei"],["NCBITaxon%3A321967","Lacticaseibacillus paracasei ATCC 334"],["NCBITaxon%3A1226299","Lacticaseibacillus paracasei COM0101"],["NCBITaxon%3A1446494","Lacticaseibacillus paracasei N1115"],["NCBITaxon%3A1435038","Lacticaseibacillus paracasei NRIC 0644"]]},{"id":"NCBITaxon:1165","l":"Anabaena cylindrica","na":1,"nb":51,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["NCBITaxon%3A136078","Anabaena cf. cylindrica 133"],["NCBITaxon%3A2716356","Anabaena cf. cylindrica BACA0067"],["NCBITaxon%3A136079","Anabaena cf. cylindrica PMC9705"],["NCBITaxon%3A264675","Anabaena cf. cylindrica XP6B"],["NCBITaxon%3A1165","Anabaena cylindrica"],["NCBITaxon%3A425377","Anabaena cylindrica A621"]]},{"id":"GTDB:s__Bacillus_licheniformis","l":"","na":1,"nb":50,"a":[["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A1402","Bacillus licheniformis"],["NCBITaxon%3A1169411","Bacillus licheniformis 10-1-A"],["NCBITaxon%3A1169412","Bacillus licheniformis 5-2-D"],["NCBITaxon%3A1368424","Bacillus licheniformis CG-B52"],["NCBITaxon%3A1232672","Bacillus licheniformis CGMCC 3963"]]},{"id":"NCBITaxon:96","l":"Gallionella","na":1,"nb":50,"a":[["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"]],"b":[["NCBITaxon%3A1796491","Candidatus Gallionella acididurans"],["NCBITaxon%3A370405","Gallionella capsiferriformans"],["NCBITaxon%3A395494","Gallionella capsiferriformans ES-2"],["NCBITaxon%3A97","Gallionella ferruginea"],["NCBITaxon%3A2052161","Gallionella sp."],["NCBITaxon%3A572946","Gallionella sp. enrichment culture clone B15"]]},{"id":"NCBITaxon:179","l":"Leptospirillum","na":1,"nb":48,"a":[["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["NCBITaxon%3A178606","Leptospirillum ferriphilum"],["NCBITaxon%3A1048260","Leptospirillum ferriphilum ML-04"],["NCBITaxon%3A1441628","Leptospirillum ferriphilum YSK"],["NCBITaxon%3A412449","Leptospirillum ferrodiazotrophum"],["NCBITaxon%3A180","Leptospirillum ferrooxidans"],["NCBITaxon%3A1162668","Leptospirillum ferrooxidans C2-3"]]},{"id":"NCBITaxon:327159","l":"Candidatus Accumulibacter","na":1,"nb":47,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"]],"b":[["NCBITaxon%3A2053492","Accumulibacter sp."],["NCBITaxon%3A1860102","Candidatus Accumulibacter aalborgensis"],["NCBITaxon%3A2954378","Candidatus Accumulibacter adiacens"],["NCBITaxon%3A1454001","Candidatus Accumulibacter adjunctus"],["NCBITaxon%3A2954384","Candidatus Accumulibacter affinis"],["NCBITaxon%3A1454003","Candidatus Accumulibacter appositus"]]},{"id":"NCBITaxon:68288","l":"Cyclobacterium","na":1,"nb":46,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["NCBITaxon%3A320787","Cyclobacterium amurskyense"],["NCBITaxon%3A1235754","Cyclobacterium caenipelagi"],["NCBITaxon%3A708087","Cyclobacterium jeungdonense"],["NCBITaxon%3A388280","Cyclobacterium lianum"],["NCBITaxon%3A104","Cyclobacterium marinum"],["NCBITaxon%3A880070","Cyclobacterium marinum DSM 745"]]},{"id":"NCBITaxon:2740557","l":"Pauljensenia","na":1,"nb":45,"a":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["NCBITaxon%3A178339","Pauljensenia hongkongensis"],["NCBITaxon%3A883071","Pauljensenia hongkongensis FB160-CNA-8"],["NCBITaxon%3A2953801","Pauljensenia sp."],["NCBITaxon%3A3003692","Pauljensenia sp. 20925_1_25"],["NCBITaxon%3A3003675","Pauljensenia sp. 20925_1_27"],["NCBITaxon%3A3003674","Pauljensenia sp. 20925_1_34"]]},{"id":"NCBITaxon:893","l":"Desulfobulbus","na":1,"nb":45,"a":[["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"]],"b":[["NCBITaxon%3A2480839","Candidatus Desulfobulbus rimicarensis"],["NCBITaxon%3A869814","Desulfobulbus alkaliphilus"],["NCBITaxon%3A53332","Desulfobulbus elongatus"],["NCBITaxon%3A1121402","Desulfobulbus elongatus DSM 2908"],["NCBITaxon%3A1909699","Desulfobulbus oligotrophicus"],["NCBITaxon%3A1986146","Desulfobulbus oralis"]]},{"id":"NCBITaxon:904","l":"Acidaminococcus","na":1,"nb":45,"a":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["NCBITaxon%3A905","Acidaminococcus fermentans"],["NCBITaxon%3A591001","Acidaminococcus fermentans DSM 20731"],["NCBITaxon%3A2897706","Acidaminococcus hominis"],["NCBITaxon%3A187327","Acidaminococcus intestini"],["NCBITaxon%3A1263033","Acidaminococcus intestini CAG:325"],["NCBITaxon%3A1120921","Acidaminococcus intestini DSM 21505"]]},{"id":"NCBITaxon:1033997","l":"Nitrososphaeraceae","na":1,"nb":44,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"]],"b":[["NCBITaxon%3A2563600","Candidatus Nitrosocosmicus agrestis"],["NCBITaxon%3A2035267","Candidatus Nitrosocosmicus arcticus"],["NCBITaxon%3A1798806","Candidatus Nitrosocosmicus franklandianus"],["NCBITaxon%3A1826872","Candidatus Nitrosocosmicus hydrocola"],["NCBITaxon%3A1353260","Candidatus Nitrosocosmicus oleophilus"],["NCBITaxon%3A2109671","Candidatus Nitrosocosmicus sp."]]},{"id":"NCBITaxon:5094","l":"Talaromyces","na":1,"nb":44,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["NCBITaxon%3A36649","Talaromyces aculeatus"],["NCBITaxon%3A1392253","Talaromyces aculeatus ATCC 10409"],["NCBITaxon%3A1974180","Talaromyces adpressus"],["NCBITaxon%3A1196081","Talaromyces amestolkiae"],["NCBITaxon%3A1441469","Talaromyces atroroseus"],["NCBITaxon%3A36052","Talaromyces bacillisporus"]]},{"id":"NCBITaxon:414878","l":"Catenulispora","na":1,"nb":40,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"]],"b":[["NCBITaxon%3A234199","bacterium Ellin5062"],["NCBITaxon%3A234202","bacterium Ellin5116"],["NCBITaxon%3A234203","bacterium Ellin5119"],["NCBITaxon%3A304895","Catenulispora acidiphila"],["NCBITaxon%3A479433","Catenulispora acidiphila DSM 44928"],["NCBITaxon%3A436228","Catenulispora cavernae"]]},{"id":"NCBITaxon:641853","l":"Elusimicrobia","na":1,"nb":40,"a":[["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"]],"b":[["NCBITaxon%3A3416221","Candidatus Avelusimicrobium alvi"],["NCBITaxon%3A3416206","Candidatus Avelusimicrobium aviculae"],["NCBITaxon%3A3416215","Candidatus Avelusimicrobium bubulum"],["NCBITaxon%3A3416220","Candidatus Avelusimicrobium caledoniensis"],["NCBITaxon%3A1947906","Candidatus Avelusimicrobium cornigerorum"],["NCBITaxon%3A2840689","Candidatus Avelusimicrobium excrementipullorum"]]},{"id":"NCBITaxon:354354","l":"Niastella","na":1,"nb":39,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["NCBITaxon%3A2569763","Niastella caeni"],["NCBITaxon%3A1542731","Niastella gongjuensis"],["NCBITaxon%3A1781166","Niastella hibisci"],["NCBITaxon%3A354356","Niastella koreensis"],["NCBITaxon%3A700598","Niastella koreensis GR20-10"],["NCBITaxon%3A550983","Niastella populi"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":1,"nb":39,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["NCBITaxon%3A679895","Escherichia coli BW25113"],["NCBITaxon%3A595496","Escherichia coli BW2952"],["NCBITaxon%3A1318715","Escherichia coli BW38028"],["NCBITaxon%3A1245474","Escherichia coli ER2796"],["NCBITaxon%3A83333","Escherichia coli K-12"],["NCBITaxon%3A527799","Escherichia coli LW1655F+"]]},{"id":"GTDB:s__Lacticaseibacillus_rhamnosus","l":"","na":1,"nb":38,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["NCBITaxon%3A47715","Lacticaseibacillus rhamnosus"],["NCBITaxon%3A1381116","Lacticaseibacillus rhamnosus 2166"],["NCBITaxon%3A1408180","Lacticaseibacillus rhamnosus 51B"],["NCBITaxon%3A1002365","Lacticaseibacillus rhamnosus ATCC 21052"],["NCBITaxon%3A1088720","Lacticaseibacillus rhamnosus ATCC 8530"],["NCBITaxon%3A1078018","Lacticaseibacillus rhamnosus CASL"]]},{"id":"NCBITaxon:28037","l":"Streptococcus mitis","na":1,"nb":38,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1660","Schaalia odontolytica"],["NCBITaxon%3A45634","Streptococcus cristatus"],["NCBITaxon%3A1302863","Streptococcus cristatus AS 1.3089"],["NCBITaxon%3A1302","Streptococcus gordonii"],["NCBITaxon%3A28037","Streptococcus mitis"],["NCBITaxon%3A1239792","Streptococcus mitis 11/5"]]},{"id":"NCBITaxon:47715","l":"Lacticaseibacillus rhamnosus","na":1,"nb":38,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["NCBITaxon%3A1597","Lacticaseibacillus paracasei"],["NCBITaxon%3A47715","Lacticaseibacillus rhamnosus"],["NCBITaxon%3A1381116","Lacticaseibacillus rhamnosus 2166"],["NCBITaxon%3A1408180","Lacticaseibacillus rhamnosus 51B"],["NCBITaxon%3A1002365","Lacticaseibacillus rhamnosus ATCC 21052"],["NCBITaxon%3A1088720","Lacticaseibacillus rhamnosus ATCC 8530"]]},{"id":"GTDB:s__Comamonas_tsuruhatensis","l":"","na":1,"nb":37,"a":[["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["NCBITaxon%3A2030806","Burkholderiaceae bacterium"],["NCBITaxon%3A1871071","Comamonadaceae bacterium"],["NCBITaxon%3A80866","Delftia acidovorans"],["NCBITaxon%3A883100","Delftia acidovorans CCUG 15835"],["NCBITaxon%3A883101","Delftia acidovorans CCUG 274B"],["NCBITaxon%3A558537","Delftia lacustris"]]},{"id":"NCBITaxon:33849","l":"Bacillariophyceae","na":1,"nb":37,"a":[["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"]],"b":[["NCBITaxon%3A431333","Achnanthidium minutissimum"],["NCBITaxon%3A265554","Amphora coffeiformis"],["NCBITaxon%3A1550372","Biremis ambigua"],["NCBITaxon%3A1486917","Craspedostauros australis"],["NCBITaxon%3A2856","Cylindrotheca closterium"],["NCBITaxon%3A2853","Cylindrotheca fusiformis"]]},{"id":"GTDB:s__Agrobacterium_tumefaciens","l":"","na":1,"nb":36,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"]],"b":[["NCBITaxon%3A1183421","Agrobacterium fabacearum CFBP 5771"],["NCBITaxon%3A1300224","Agrobacterium fabacearum P4"],["NCBITaxon%3A1183429","Agrobacterium fabacearum S56"],["NCBITaxon%3A1183430","Agrobacterium fabacearum TT111"],["NCBITaxon%3A361","Agrobacterium sp."],["NCBITaxon%3A1150775","Agrobacterium sp. 10MFCol1.1"]]},{"id":"GTDB:s__Pantoea_agglomerans","l":"","na":1,"nb":36,"a":[["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["NCBITaxon%3A115547","uncultured archaeon"],["NCBITaxon%3A221276","[Curtobacterium] plantarum"],["NCBITaxon%3A3376138","Curtobacterium sp. BNK-1"],["NCBITaxon%3A549","Pantoea agglomerans"],["NCBITaxon%3A1408177","Pantoea agglomerans Eh318"],["NCBITaxon%3A1110694","Pantoea agglomerans IG1"]]},{"id":"NCBITaxon:399320","l":"Sphaerochaeta","na":1,"nb":36,"a":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]],"b":[["NCBITaxon%3A1129264","Sphaerochaeta associata"],["NCBITaxon%3A1945881","Sphaerochaeta dissipatitropha"],["NCBITaxon%3A1131703","Sphaerochaeta globosa"],["NCBITaxon%3A158189","Sphaerochaeta globosa str. Buddy"],["NCBITaxon%3A2293840","Sphaerochaeta halotolerans"],["NCBITaxon%3A1131707","Sphaerochaeta pleomorpha"]]},{"id":"NCBITaxon:1303","l":"Streptococcus oralis","na":1,"nb":35,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A68892","Streptococcus infantis"],["NCBITaxon%3A768726","Streptococcus mitis bv. 2 str. F0392"],["NCBITaxon%3A1000588","Streptococcus mitis bv. 2 str. SK95"],["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A655813","Streptococcus oralis ATCC 35037"],["NCBITaxon%3A888049","Streptococcus oralis ATCC 49296"]]},{"id":"NCBITaxon:1462422","l":"Candidatus Parvarchaeota","na":1,"nb":35,"a":[["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"]],"b":[["NCBITaxon%3A2898728","Candidatus Acidifodinimicrobium mancum"],["NCBITaxon%3A3101490","Candidatus Acidifodinimicrobium sp."],["NCBITaxon%3A2077140","Candidatus Parvarchaeota archaeon"],["NCBITaxon%3A1955627","Candidatus Parvarchaeota archaeon JGI 005-G06"],["NCBITaxon%3A2738730","Candidatus Parvarchaeota archaeon JGI 005-H17"],["NCBITaxon%3A2738731","Candidatus Parvarchaeota archaeon JGI 006-E12"]]},{"id":"NCBITaxon:146918","l":"Salinibacter","na":1,"nb":35,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["NCBITaxon%3A3040383","Candidatus Salinibacter abyssi"],["NCBITaxon%3A3040384","Candidatus Salinibacter pampae"],["NCBITaxon%3A90337","halophilic eubacterium EHB"],["NCBITaxon%3A97298","halophilic eubacterium EHB-2"],["NCBITaxon%3A97297","halophilic eubacterium EHB-3"],["NCBITaxon%3A97295","halophilic eubacterium EHB-4"]]},{"id":"NCBITaxon:28261","l":"Thermodesulfovibrio","na":1,"nb":34,"a":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]],"b":[["NCBITaxon%3A86166","Thermodesulfovibrio aggregans"],["NCBITaxon%3A1295128","Thermodesulfovibrio aggregans JCM 13213"],["NCBITaxon%3A3118333","Thermodesulfovibrio autotrophicus"],["NCBITaxon%3A412896","Thermodesulfovibrio hydrogeniphilus"],["NCBITaxon%3A1123374","Thermodesulfovibrio hydrogeniphilus DSM 18151"],["NCBITaxon%3A1123375","Thermodesulfovibrio islandicus DSM 12570"]]},{"id":"NCBITaxon:1021","l":"Beggiatoa","na":1,"nb":33,"a":[["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"]],"b":[["NCBITaxon%3A1022","Beggiatoa alba"],["NCBITaxon%3A395493","Beggiatoa alba B18LD"],["NCBITaxon%3A288004","Beggiatoa leptomitoformis"],["NCBITaxon%3A1962953","Beggiatoa sp."],["NCBITaxon%3A1579656","Beggiatoa sp. 11.1"],["NCBITaxon%3A1579657","Beggiatoa sp. 13.1"]]},{"id":"NCBITaxon:1584","l":"Lactobacillus delbrueckii","na":1,"nb":33,"a":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"]],"b":[["NCBITaxon%3A35783","Enterococcus sp."],["NCBITaxon%3A47715","Lacticaseibacillus rhamnosus"],["NCBITaxon%3A2775876","Lacticaseibacillus sp."],["NCBITaxon%3A1579","Lactobacillus acidophilus"],["NCBITaxon%3A1584","Lactobacillus delbrueckii"],["NCBITaxon%3A1050107","Lactobacillus delbrueckii subsp. allosunkii"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":1,"nb":33,"a":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"]],"b":[["NCBITaxon%3A85698","Achromobacter xylosoxidans"],["NCBITaxon%3A152480","Burkholderia ambifaria"],["NCBITaxon%3A179879","Burkholderia anthina"],["NCBITaxon%3A488730","Burkholderia arboris"],["NCBITaxon%3A95486","Burkholderia cenocepacia"],["NCBITaxon%3A292","Burkholderia cepacia"]]},{"id":"NCBITaxon:63743","l":"Natronomonas","na":1,"nb":33,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["NCBITaxon%3A3108498","Natronomonas amylolytica"],["NCBITaxon%3A2841590","Natronomonas aquatica"],["NCBITaxon%3A1046043","Natronomonas gomsonensis"],["NCBITaxon%3A2747817","Natronomonas halophila"],["NCBITaxon%3A2961939","Natronomonas marina"],["NCBITaxon%3A416273","Natronomonas moolapensis"]]},{"id":"GTDB:s__Paenibacillus_polymyxa_B","l":"","na":1,"nb":32,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"]],"b":[["NCBITaxon%3A114136","Paenibacillus jamilae"],["NCBITaxon%3A59893","Paenibacillus peoriae"],["NCBITaxon%3A1406","Paenibacillus polymyxa"],["NCBITaxon%3A1429244","Paenibacillus polymyxa CR1"],["NCBITaxon%3A349520","Paenibacillus polymyxa E681"],["NCBITaxon%3A1333862","Paenibacillus polymyxa TD94"]]},{"id":"NCBITaxon:1582","l":"Lacticaseibacillus casei","na":1,"nb":32,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["NCBITaxon%3A1582","Lacticaseibacillus casei"],["NCBITaxon%3A1051650","Lacticaseibacillus casei 12A"],["NCBITaxon%3A1051651","Lacticaseibacillus casei 21/1"],["NCBITaxon%3A1051652","Lacticaseibacillus casei 32G"],["NCBITaxon%3A1378069","Lacticaseibacillus casei 5b"],["NCBITaxon%3A1051653","Lacticaseibacillus casei A2-362"]]},{"id":"GTDB:s__Acinetobacter_johnsonii","l":"","na":1,"nb":31,"a":[["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["NCBITaxon%3A115547","uncultured archaeon"],["NCBITaxon%3A40214","Acinetobacter johnsonii"],["NCBITaxon%3A1217662","Acinetobacter johnsonii ANC 3681"],["NCBITaxon%3A1217663","Acinetobacter johnsonii CIP 64.6"],["NCBITaxon%3A575586","Acinetobacter johnsonii SH046"],["NCBITaxon%3A1221300","Acinetobacter johnsonii TG19605"]]},{"id":"NCBITaxon:2571160","l":"Trinickia","na":1,"nb":31,"a":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]],"b":[["NCBITaxon%3A2767482","Trinickia acidisoli"],["NCBITaxon%3A3136562","Trinickia camelliae"],["NCBITaxon%3A28094","Trinickia caryophylli"],["NCBITaxon%3A564714","Trinickia dabaoshanensis"],["NCBITaxon%3A2292265","Trinickia diaoshuihuensis"],["NCBITaxon%3A2291023","Trinickia dinghuensis"]]},{"id":"NCBITaxon:2375","l":"Sporomusa","na":1,"nb":30,"a":[["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["NCBITaxon%3A112900","Sporomusa acidovorans"],["NCBITaxon%3A1123286","Sporomusa acidovorans DSM 3132"],["NCBITaxon%3A204936","Sporomusa aerivorans"],["NCBITaxon%3A3076075","Sporomusa carbonis"],["NCBITaxon%3A316996","Sporomusa intestinalis"],["NCBITaxon%3A112901","Sporomusa malonica"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":1,"nb":29,"a":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]],"b":[["NCBITaxon%3A1579","Lactobacillus acidophilus"],["NCBITaxon%3A47770","Lactobacillus crispatus"],["NCBITaxon%3A575595","Lactobacillus crispatus 125-2-CHN"],["NCBITaxon%3A1381118","Lactobacillus crispatus 2029"],["NCBITaxon%3A679188","Lactobacillus crispatus 214-1"],["NCBITaxon%3A440496","Lactobacillus crispatus CTV-05"]]},{"id":"GTDB:s__Prochlorococcus_A_pastoris","l":"","na":1,"nb":28,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A1219","Prochlorococcus marinus"],["NCBITaxon%3A190047","Prochlorococcus marinus str. EQPAC1"],["NCBITaxon%3A142479","Prochlorococcus marinus subsp. pastoris"],["NCBITaxon%3A59919","Prochlorococcus marinus subsp. pastoris str. CCMP1986"],["NCBITaxon%3A1220","Prochlorococcus sp."],["NCBITaxon%3A2162458","Prochlorococcus sp. AG-335-J19"]]},{"id":"NCBITaxon:1107","l":"Chloroflexus","na":1,"nb":28,"a":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]],"b":[["NCBITaxon%3A152260","Chloroflexus aggregans"],["NCBITaxon%3A326427","Chloroflexus aggregans DSM 9485"],["NCBITaxon%3A1108","Chloroflexus aurantiacus"],["NCBITaxon%3A324602","Chloroflexus aurantiacus J-10-fl"],["NCBITaxon%3A480224","Chloroflexus aurantiacus Y-400-fl"],["NCBITaxon%3A1707952","Chloroflexus islandicus"]]},{"id":"GTDB:s__Citrobacter_werkmanii","l":"","na":1,"nb":27,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["NCBITaxon%3A1748967","Citrobacter cronae"],["NCBITaxon%3A546","Citrobacter freundii"],["NCBITaxon%3A1333848","Citrobacter freundii CFNIH1"],["NCBITaxon%3A1896336","Citrobacter sp."],["NCBITaxon%3A2769344","Citrobacter sp. C5_2"],["NCBITaxon%3A2985036","Citrobacter sp. Cc067"]]},{"id":"NCBITaxon:1680","l":"Bifidobacterium adolescentis","na":1,"nb":27,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]],"b":[["NCBITaxon%3A1680","Bifidobacterium adolescentis"],["NCBITaxon%3A367928","Bifidobacterium adolescentis ATCC 15703"],["NCBITaxon%3A1263057","Bifidobacterium adolescentis CAG:119"],["NCBITaxon%3A1410644","Bifidobacterium adolescentis DSM 20087"],["NCBITaxon%3A1437612","Bifidobacterium adolescentis JCM 15918"],["NCBITaxon%3A411481","Bifidobacterium adolescentis L2-32"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":27,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["NCBITaxon%3A57706","Citrobacter braakii"],["NCBITaxon%3A1914243","Citrobacter europaeus"],["NCBITaxon%3A546","Citrobacter freundii"],["NCBITaxon%3A1173724","Citrobacter freundii 47N"],["NCBITaxon%3A742730","Citrobacter freundii 4_7_47CFAA"],["NCBITaxon%3A1444046","Citrobacter freundii 5-172-05_S1_C1"]]},{"id":"GTDB:s__Comamonas_acidovorans","l":"","na":1,"nb":26,"a":[["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A2035215","Burkholderiales bacterium 23"],["NCBITaxon%3A80866","Delftia acidovorans"],["NCBITaxon%3A1218107","Delftia acidovorans NBRC 14950"],["NCBITaxon%3A398578","Delftia acidovorans SPH-1"],["NCBITaxon%3A1651218","Delftia deserti"]]},{"id":"GTDB:s__Pantoea_ananatis","l":"","na":1,"nb":25,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["NCBITaxon%3A1849603","Enterobacteriaceae bacterium"],["NCBITaxon%3A549","Pantoea agglomerans"],["NCBITaxon%3A574096","Pantoea allii"],["NCBITaxon%3A553","Pantoea ananatis"],["NCBITaxon%3A1419326","Pantoea ananatis 15320"],["NCBITaxon%3A932677","Pantoea ananatis AJ13355"]]},{"id":"NCBITaxon:135461","l":"Bacillus subtilis subsp. subtilis","na":1,"nb":25,"a":[["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["NCBITaxon%3A1390","Bacillus amyloliquefaciens"],["NCBITaxon%3A1452","Bacillus atrophaeus"],["NCBITaxon%3A640707","Bacillus atrophaeus ATCC 9372"],["NCBITaxon%3A96241","Bacillus spizizenii"],["NCBITaxon%3A1423","Bacillus subtilis"],["NCBITaxon%3A135461","Bacillus subtilis subsp. subtilis"]]},{"id":"NCBITaxon:2138240","l":"Coprothermobacterota","na":1,"nb":25,"a":[["Thermophilic_ExSitu_Biomethanation_Mixed_Culture.html","Thermophilic Ex-Situ Biomethanation Mixed Culture"]],"b":[["NCBITaxon%3A108819","Coprothermobacter platensis"],["NCBITaxon%3A1259795","Coprothermobacter platensis DSM 11748"],["NCBITaxon%3A35786","Coprothermobacter proteolyticus"],["NCBITaxon%3A309798","Coprothermobacter proteolyticus DSM 5265"],["NCBITaxon%3A55509","Coprothermobacter sp."],["NCBITaxon%3A187079","Coprothermobacter sp. BHI60-1"]]},{"id":"NCBITaxon:359407","l":"Methylotenera","na":1,"nb":25,"a":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["NCBITaxon%3A3844326","Methylotenera hypolimnetica (SeqCode)"],["NCBITaxon%3A359408","Methylotenera mobilis"],["NCBITaxon%3A1132855","Methylotenera mobilis 13"],["NCBITaxon%3A583345","Methylotenera mobilis JLW8"],["NCBITaxon%3A2080758","Methylotenera oryzisoli"],["NCBITaxon%3A3844325","Methylotenera profunda (SeqCode)"]]},{"id":"GTDB:s__Prochlorococcus_A_sp001989455","l":"","na":1,"nb":24,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A1219","Prochlorococcus marinus"],["NCBITaxon%3A2052594","Prochlorococcus marinus str. XMU1401"],["NCBITaxon%3A2054183","Prochlorococcus marinus str. XMU1401E"],["NCBITaxon%3A2774494","Prochlorococcus marinus XMU1421"],["NCBITaxon%3A2774495","Prochlorococcus marinus XMU1422"],["NCBITaxon%3A2774496","Prochlorococcus marinus XMU1423"]]},{"id":"NCBITaxon:497726","l":"Nitrososphaera","na":1,"nb":24,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"]],"b":[["NCBITaxon%3A1459637","Candidatus Nitrososphaera evergladensis"],["NCBITaxon%3A1459636","Candidatus Nitrososphaera evergladensis SR1"],["NCBITaxon%3A497727","Candidatus Nitrososphaera gargensis"],["NCBITaxon%3A1237085","Candidatus Nitrososphaera gargensis Ga9.2"],["NCBITaxon%3A3447973","Candidatus Nitrososphaera maunauluensis"],["NCBITaxon%3A3141449","Candidatus Nitrososphaera sp."]]},{"id":"NCBITaxon:670486","l":"Dehalogenimonas","na":1,"nb":24,"a":[["QY2S1_Dehalogenimonas_BFR_Bioremediation_Consortium.html","QY2-S1 Dehalogenimonas-Rich Brominated-Flame-Retardant Consortium"]],"b":[["NCBITaxon%3A1217799","Dehalogenimonas alkenigignens"],["NCBITaxon%3A1536648","Dehalogenimonas etheniformans"],["NCBITaxon%3A1839801","Dehalogenimonas formicexedens"],["NCBITaxon%3A3127115","Dehalogenimonas loeffleri"],["NCBITaxon%3A552810","Dehalogenimonas lykanthroporepellens"],["NCBITaxon%3A552811","Dehalogenimonas lykanthroporepellens BL-DC-9"]]},{"id":"GTDB:s__Halopseudomonas_aestusnigri","l":"","na":1,"nb":23,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["NCBITaxon%3A857252","Halopseudomonas aestusnigri"],["NCBITaxon%3A2901191","Halopseudomonas sp."],["NCBITaxon%3A3015994","Halopseudomonas sp. MFKK-1"],["NCBITaxon%3A1914538","Pseudomonadaceae bacterium"],["NCBITaxon%3A1952768","Pseudomonadaceae bacterium UBA1462"],["NCBITaxon%3A1952777","Pseudomonadaceae bacterium UBA3367"]]},{"id":"GTDB:s__Lactobacillus_delbrueckii","l":"","na":1,"nb":23,"a":[["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A1584","Lactobacillus delbrueckii"],["NCBITaxon%3A1050107","Lactobacillus delbrueckii subsp. allosunkii"],["NCBITaxon%3A1585","Lactobacillus delbrueckii subsp. bulgaricus"],["NCBITaxon%3A353496","Lactobacillus delbrueckii subsp. bulgaricus 2038"],["NCBITaxon%3A390333","Lactobacillus delbrueckii subsp. bulgaricus ATCC 11842 = JCM 1002"]]},{"id":"NCBITaxon:1598","l":"Limosilactobacillus reuteri","na":1,"nb":23,"a":[["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"]],"b":[["NCBITaxon%3A1581","Lentilactobacillus buchneri"],["NCBITaxon%3A2767931","Lentilactobacillus sp."],["NCBITaxon%3A1613","Limosilactobacillus fermentum"],["NCBITaxon%3A1598","Limosilactobacillus reuteri"],["NCBITaxon%3A1273150","Limosilactobacillus reuteri 1063"],["NCBITaxon%3A525341","Limosilactobacillus reuteri CF48-3A"]]},{"id":"NCBITaxon:180162","l":"Cetobacterium","na":1,"nb":23,"a":[["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"]],"b":[["NCBITaxon%3A3073100","Candidatus Cetobacterium colombiensis"],["NCBITaxon%3A180163","Cetobacterium ceti"],["NCBITaxon%3A188913","Cetobacterium somerae"],["NCBITaxon%3A1319815","Cetobacterium somerae ATCC BAA-474"],["NCBITaxon%3A2071632","Cetobacterium sp."],["NCBITaxon%3A2754723","Cetobacterium sp. 2A"]]},{"id":"NCBITaxon:1828","l":"Rhodococcoides fascians","na":1,"nb":23,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A1828","Rhodococcoides fascians"],["NCBITaxon%3A1443888","Rhodococcoides fascians 02-815"],["NCBITaxon%3A1443889","Rhodococcoides fascians 02-816c"],["NCBITaxon%3A1443890","Rhodococcoides fascians 04-516"],["NCBITaxon%3A1443891","Rhodococcoides fascians 05-339-1"],["NCBITaxon%3A1443892","Rhodococcoides fascians 05-561-1"]]},{"id":"NCBITaxon:392733","l":"Terriglobus","na":1,"nb":23,"a":[["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["NCBITaxon%3A1592106","Terriglobus albidus"],["NCBITaxon%3A940139","Terriglobus aquaticus"],["NCBITaxon%3A392734","Terriglobus roseus"],["NCBITaxon%3A926566","Terriglobus roseus DSM 18391"],["NCBITaxon%3A870903","Terriglobus saanensis"],["NCBITaxon%3A401053","Terriglobus saanensis SP1PR4"]]},{"id":"GTDB:s__Bacillus_atrophaeus","l":"","na":1,"nb":22,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"]],"b":[["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A1452","Bacillus atrophaeus"],["NCBITaxon%3A723888","Bacillus atrophaeus 1013-1"],["NCBITaxon%3A723889","Bacillus atrophaeus 1013-2"],["NCBITaxon%3A720555","Bacillus atrophaeus 1942"],["NCBITaxon%3A743710","Bacillus atrophaeus ATCC 49822-1"]]},{"id":"NCBITaxon:1849822","l":"Paraclostridium","na":1,"nb":22,"a":[["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"]],"b":[["NCBITaxon%3A1629550","Paraclostridium benzoelyticum"],["NCBITaxon%3A1490","Paraclostridium bifermentans"],["NCBITaxon%3A1233170","Paraclostridium bifermentans ATCC 19299"],["NCBITaxon%3A1233171","Paraclostridium bifermentans ATCC 638 = DSM 14991"],["NCBITaxon%3A1357385","Paraclostridium bifermentans NI48_6"],["NCBITaxon%3A2663174","Paraclostridium bifermentans subsp. bifermentans"]]},{"id":"NCBITaxon:2689614","l":"Steroidobacteraceae","na":1,"nb":22,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"]],"b":[["NCBITaxon%3A268404","Peristeroidobacter agariperforans"],["NCBITaxon%3A2497877","Peristeroidobacter soli"],["NCBITaxon%3A1962978","Povalibacter sp."],["NCBITaxon%3A732238","Povalibacter uvarum"],["NCBITaxon%3A2695856","Steroidobacter agaridevorans"],["NCBITaxon%3A1803913","Steroidobacter cummioxidans"]]},{"id":"NCBITaxon:43773","l":"Syntrophus","na":1,"nb":22,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"]],"b":[["NCBITaxon%3A316277","Syntrophus aciditrophicus"],["NCBITaxon%3A56780","Syntrophus aciditrophicus SB"],["NCBITaxon%3A43774","Syntrophus buswellii"],["NCBITaxon%3A43775","Syntrophus gentianae"],["NCBITaxon%3A1489994","Syntrophus sp. enrichment culture clone AD_hydA_36"],["NCBITaxon%3A511481","Syntrophus sp. enrichment culture clone D2CL_Bac_16S_Clone10"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":1,"nb":22,"a":[["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A221276","[Curtobacterium] plantarum"],["NCBITaxon%3A558","Erwinia sp."],["NCBITaxon%3A83655","Leclercia adecarboxylata"],["NCBITaxon%3A549","Pantoea agglomerans"],["NCBITaxon%3A1261128","Pantoea agglomerans 299R"]]},{"id":"NCBITaxon:83677","l":"Thermobifida","na":1,"nb":22,"a":[["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"]],"b":[["NCBITaxon%3A53522","Thermobifida alba"],["NCBITaxon%3A144786","Thermobifida cellulosilytica"],["NCBITaxon%3A665004","Thermobifida cellulosilytica TB100"],["NCBITaxon%3A2021","Thermobifida fusca"],["NCBITaxon%3A1223522","Thermobifida fusca NBRC 14071 = JCM 3263"],["NCBITaxon%3A1169414","Thermobifida fusca TM51"]]},{"id":"GTDB:s__Prochlorococcus_B_marinus_B","l":"","na":1,"nb":21,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A1219","Prochlorococcus marinus"],["NCBITaxon%3A2998489","Prochlorococcus marinus Sample_003_bin_1.filtered"],["NCBITaxon%3A1570012","Prochlorococcus marinus str. MIT 0915"],["NCBITaxon%3A2053468","Prochlorococcus marinus str. MU1403"],["NCBITaxon%3A167555","Prochlorococcus marinus str. NATL1A"],["NCBITaxon%3A59920","Prochlorococcus marinus str. NATL2A"]]},{"id":"GTDB:s__Thomasclavelia_ramosa","l":"","na":1,"nb":21,"a":[["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["NCBITaxon%3A3030912","Anaerovoracaceae bacterium"],["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A2212467","Bacteroidaceae bacterium"],["NCBITaxon%3A1697788","Clostridia bacterium UC5.1-2H6"],["NCBITaxon%3A1232446","Clostridiales bacterium VE202-18"],["NCBITaxon%3A2137881","Coprobacillus sp."]]},{"id":"GTDB:s__Faecalibacterium_longum","l":"","na":1,"nb":20,"a":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"]],"b":[["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A2212467","Bacteroidaceae bacterium"],["NCBITaxon%3A1262817","Clostridium sp. CAG:524"],["NCBITaxon%3A1262889","Eubacterium sp. CAG:38"],["NCBITaxon%3A1851428","Faecalibacterium longum"]]},{"id":"NCBITaxon:1245","l":"Leuconostoc mesenteroides","na":1,"nb":20,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["NCBITaxon%3A33964","Leuconostoc citreum"],["NCBITaxon%3A1245","Leuconostoc mesenteroides"],["NCBITaxon%3A1357402","Leuconostoc mesenteroides A16_17"],["NCBITaxon%3A427140","Leuconostoc mesenteroides KFRI-MG"],["NCBITaxon%3A1429888","Leuconostoc mesenteroides P45"],["NCBITaxon%3A33965","Leuconostoc mesenteroides subsp. cremoris"]]},{"id":"NCBITaxon:1579","l":"Lactobacillus acidophilus","na":1,"nb":20,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["NCBITaxon%3A1597","Lacticaseibacillus paracasei"],["NCBITaxon%3A1590","Lactiplantibacillus plantarum"],["NCBITaxon%3A1579","Lactobacillus acidophilus"],["NCBITaxon%3A891391","Lactobacillus acidophilus 30SC"],["NCBITaxon%3A525306","Lactobacillus acidophilus ATCC 4796"],["NCBITaxon%3A1421011","Lactobacillus acidophilus CFH"]]},{"id":"NCBITaxon:18","l":"Pelobacter","na":1,"nb":20,"a":[["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"]],"b":[["NCBITaxon%3A2961950","Candidatus Pseudopelobacter ferreus"],["NCBITaxon%3A35816","Pelobacter acidigallici"],["NCBITaxon%3A225195","Pelobacter massiliensis"],["NCBITaxon%3A29543","Pelobacter propionicus"],["NCBITaxon%3A338966","Pelobacter propionicus DSM 2379"],["NCBITaxon%3A407188","Pelobacter seleniigenes"]]},{"id":"NCBITaxon:588814","l":"Candidatus Methanophagales","na":1,"nb":20,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"]],"b":[["NCBITaxon%3A3386331","Candidatus Methanophaga sp."],["NCBITaxon%3A2081360","Candidatus Methanophaga sp. AG-394-G06"],["NCBITaxon%3A2081361","Candidatus Methanophaga sp. AG-394-G21"],["NCBITaxon%3A2759913","Candidatus Methanophaga sp. ANME-1 ERB7"],["NCBITaxon%3A2081356","Candidatus Methanophaga sp. GoMg3.2"],["NCBITaxon%3A3386247","Candidatus Methanophagaceae archaeon"]]},{"id":"NCBITaxon:588816","l":"ANME-2 cluster","na":1,"nb":20,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"]],"b":[["NCBITaxon%3A2056317","ANME-2 cluster archaeon"],["NCBITaxon%3A3460055","Candidatus Methanocomedenaceae archaeon"],["NCBITaxon%3A3386229","Candidatus Methanocomedens sp."],["NCBITaxon%3A3386292","Candidatus Methanogaster sp."],["NCBITaxon%3A2759911","Candidatus Methanogaster sp. ANME-2c ERB4"],["NCBITaxon%3A1915703","Candidatus Methanogaster sp. UBA203"]]},{"id":"NCBITaxon:375","l":"Bradyrhizobium japonicum","na":1,"nb":19,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"]],"b":[["NCBITaxon%3A1355477","Bradyrhizobium diazoefficiens"],["NCBITaxon%3A224911","Bradyrhizobium diazoefficiens USDA 110"],["NCBITaxon%3A375","Bradyrhizobium japonicum"],["NCBITaxon%3A306164","Bradyrhizobium japonicum bv. genistearum"],["NCBITaxon%3A305581","Bradyrhizobium japonicum bv. glycinearum"],["NCBITaxon%3A1128253","Bradyrhizobium japonicum CCBAU 15354"]]},{"id":"NCBITaxon:47678","l":"Bacteroides caccae","na":1,"nb":19,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A47678","Bacteroides caccae"],["NCBITaxon%3A411901","Bacteroides caccae ATCC 43185"],["NCBITaxon%3A1263037","Bacteroides caccae CAG:21"],["NCBITaxon%3A997873","Bacteroides caccae CL03T12C61"],["NCBITaxon%3A1357379","Bacteroides caccae MR1_13"],["NCBITaxon%3A1338837","Bacteroides caccae TSDC10.1-1.1"]]},{"id":"GTDB:s__Mediterraneibacter_torques","l":"","na":1,"nb":18,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A3077420","Acutalibacteraceae bacterium"],["NCBITaxon%3A3030912","Anaerovoracaceae bacterium"],["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A290055","Faecalicatena fissicatena"],["NCBITaxon%3A2005360","Faecalicatena sp."]]},{"id":"GTDB:s__Methylobacterium_extorquens","l":"","na":1,"nb":18,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["NCBITaxon%3A2021371","Methylobacteriaceae bacterium"],["NCBITaxon%3A1736261","Methylobacterium sp. Leaf119"],["NCBITaxon%3A1736262","Methylobacterium sp. Leaf121"],["NCBITaxon%3A1736263","Methylobacterium sp. Leaf122"],["NCBITaxon%3A1736246","Methylobacterium sp. Leaf90"],["NCBITaxon%3A1736248","Methylobacterium sp. Leaf92"]]},{"id":"NCBITaxon:110321","l":"Sinorhizobium medicae","na":1,"nb":18,"a":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"]],"b":[["NCBITaxon%3A110321","Sinorhizobium medicae"],["NCBITaxon%3A1230619","Sinorhizobium medicae A321"],["NCBITaxon%3A1041148","Sinorhizobium medicae DI28"],["NCBITaxon%3A1230620","Sinorhizobium medicae KH36b"],["NCBITaxon%3A1230621","Sinorhizobium medicae KH36c"],["NCBITaxon%3A1230622","Sinorhizobium medicae KH36d"]]},{"id":"NCBITaxon:158836","l":"Enterobacter hormaechei","na":1,"nb":18,"a":[["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A3461408","Enterobacter hoffmannii subsp. nototheniae"],["NCBITaxon%3A158836","Enterobacter hormaechei"],["NCBITaxon%3A888063","Enterobacter hormaechei ATCC 49162"],["NCBITaxon%3A1812934","Enterobacter hormaechei subsp. hoffmannii"],["NCBITaxon%3A1333851","Enterobacter hormaechei subsp. hoffmannii ECNIH3"]]},{"id":"NCBITaxon:5475","l":"Candida","na":1,"nb":18,"a":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["NCBITaxon%3A241526","Candida africana"],["NCBITaxon%3A5476","Candida albicans"],["NCBITaxon%3A1182531","Candida albicans 3153A"],["NCBITaxon%3A1284353","Candida baotianmanensis"],["NCBITaxon%3A434039","Candida buenavistaensis"],["NCBITaxon%3A42374","Candida dubliniensis"]]},{"id":"GTDB:s__Anaerotignum_A_faecicola","l":"","na":1,"nb":17,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A3077420","Acutalibacteraceae bacterium"],["NCBITaxon%3A2358141","Anaerotignum faecicola"],["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A1689","Bifidobacterium dentium"],["NCBITaxon%3A2592645","Clostridium sp. MCC345"],["NCBITaxon%3A901","Desulfovibrio piger"]]},{"id":"GTDB:s__Paenibacillus_polymyxa_D","l":"","na":1,"nb":17,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"]],"b":[["NCBITaxon%3A44250","Paenibacillus alvei"],["NCBITaxon%3A59893","Paenibacillus peoriae"],["NCBITaxon%3A1406","Paenibacillus polymyxa"],["NCBITaxon%3A2806565","Paenibacillus sp. 1182"],["NCBITaxon%3A1683673","Paenibacillus sp. EKM205P"],["NCBITaxon%3A1683674","Paenibacillus sp. EKM206P"]]},{"id":"GTDB:s__Streptococcus_salivarius_D","l":"","na":1,"nb":17,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["NCBITaxon%3A1458738","Bacillus sp. hb116"],["NCBITaxon%3A1335","Streptococcus equinus"],["NCBITaxon%3A1313","Streptococcus pneumoniae"],["NCBITaxon%3A1304","Streptococcus salivarius"],["NCBITaxon%3A1046629","Streptococcus salivarius 57.I"],["NCBITaxon%3A1048332","Streptococcus salivarius CCHSS3"]]},{"id":"NCBITaxon:216431","l":"Croceibacter","na":1,"nb":17,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["NCBITaxon%3A313588","Croceibacter atlanticus"],["NCBITaxon%3A216432","Croceibacter atlanticus HTCC2559"],["NCBITaxon%3A2024829","Croceibacter sp."],["NCBITaxon%3A529764","Croceibacter sp. ADROW2"],["NCBITaxon%3A1247573","Croceibacter sp. Ar-116"],["NCBITaxon%3A1247574","Croceibacter sp. Ar-140"]]},{"id":"NCBITaxon:552","l":"Erwinia amylovora","na":1,"nb":17,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]],"b":[["NCBITaxon%3A552","Erwinia amylovora"],["NCBITaxon%3A1255306","Erwinia amylovora 01SFR-BO"],["NCBITaxon%3A1427519","Erwinia amylovora 692"],["NCBITaxon%3A1027397","Erwinia amylovora ACW56400"],["NCBITaxon%3A716540","Erwinia amylovora ATCC 49946"],["NCBITaxon%3A889211","Erwinia amylovora ATCC BAA-2158"]]},{"id":"GTDB:s__Leuconostoc_mesenteroides","l":"","na":1,"nb":16,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["NCBITaxon%3A1245","Leuconostoc mesenteroides"],["NCBITaxon%3A427140","Leuconostoc mesenteroides KFRI-MG"],["NCBITaxon%3A1429888","Leuconostoc mesenteroides P45"],["NCBITaxon%3A33965","Leuconostoc mesenteroides subsp. cremoris"],["NCBITaxon%3A586220","Leuconostoc mesenteroides subsp. cremoris ATCC 19254"],["NCBITaxon%3A1339224","Leuconostoc mesenteroides subsp. cremoris T26"]]},{"id":"GTDB:s__Paenibacillus_polymyxa","l":"","na":1,"nb":16,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"]],"b":[["NCBITaxon%3A114136","Paenibacillus jamilae"],["NCBITaxon%3A1406","Paenibacillus polymyxa"],["NCBITaxon%3A1414587","Paenibacillus polymyxa A18"],["NCBITaxon%3A1036171","Paenibacillus polymyxa ATCC 842"],["NCBITaxon%3A1156938","Paenibacillus polymyxa OSY-DF"],["NCBITaxon%3A1413214","Paenibacillus polymyxa SQR-21"]]},{"id":"NCBITaxon:285","l":"Comamonas testosteroni","na":1,"nb":16,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["NCBITaxon%3A1775535","Acidovorax sp. JCM 10065"],["NCBITaxon%3A285","Comamonas testosteroni"],["NCBITaxon%3A1009852","Comamonas testosteroni ATCC 11996"],["NCBITaxon%3A543891","Comamonas testosteroni CNB-1"],["NCBITaxon%3A688245","Comamonas testosteroni CNB-2"],["NCBITaxon%3A1440775","Comamonas testosteroni I2"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":1,"nb":16,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["NCBITaxon%3A1114880","Aeromonas australiensis"],["NCBITaxon%3A1264931","Flavobacterium acidificum"],["NCBITaxon%3A553","Pantoea ananatis"],["NCBITaxon%3A1419326","Pantoea ananatis 15320"],["NCBITaxon%3A932677","Pantoea ananatis AJ13355"],["NCBITaxon%3A1048262","Pantoea ananatis B1-9"]]},{"id":"GTDB:s__Bradyrhizobium_elkanii","l":"","na":1,"nb":15,"a":[["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["NCBITaxon%3A29448","Bradyrhizobium elkanii"],["NCBITaxon%3A1128203","Bradyrhizobium elkanii CCBAU 05737"],["NCBITaxon%3A1128204","Bradyrhizobium elkanii CCBAU 43297"],["NCBITaxon%3A1275962","Bradyrhizobium elkanii USDA 61"],["NCBITaxon%3A398525","Bradyrhizobium elkanii USDA 76"],["NCBITaxon%3A398524","Bradyrhizobium elkanii USDA 94"]]},{"id":"GTDB:s__Bradyrhizobium_japonicum_B","l":"","na":1,"nb":15,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"]],"b":[["NCBITaxon%3A244734","Bradyrhizobium betae"],["NCBITaxon%3A3341829","Bradyrhizobium dasycarpum"],["NCBITaxon%3A1304877","Bradyrhizobium sp. 22"],["NCBITaxon%3A3133974","Bradyrhizobium sp. A11"],["NCBITaxon%3A2170627","Bradyrhizobium sp. WBOS01"],["NCBITaxon%3A2171497","Bradyrhizobium sp. WBOS02"]]},{"id":"GTDB:s__Corynebacterium_glutamicum","l":"","na":1,"nb":15,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]],"b":[["NCBITaxon%3A92706","[Brevibacterium] flavum"],["NCBITaxon%3A1232385","[Brevibacterium] flavum ZL-1"],["NCBITaxon%3A1718","Corynebacterium glutamicum"],["NCBITaxon%3A196627","Corynebacterium glutamicum ATCC 13032"],["NCBITaxon%3A1079988","Corynebacterium glutamicum ATCC 14067"],["NCBITaxon%3A1204414","Corynebacterium glutamicum K051"]]},{"id":"GTDB:s__Cupriavidus_metallidurans","l":"","na":1,"nb":15,"a":[["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["NCBITaxon%3A1229488","beta proteobacterium FWI2"],["NCBITaxon%3A119219","Cupriavidus metallidurans"],["NCBITaxon%3A266264","Cupriavidus metallidurans CH34"],["NCBITaxon%3A1395123","Cupriavidus metallidurans H1130"],["NCBITaxon%3A1218106","Cupriavidus metallidurans NBRC 101272"],["NCBITaxon%3A1249621","Cupriavidus sp. HMR-1"]]},{"id":"GTDB:s__Streptococcus_sp001556435","l":"","na":1,"nb":15,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["NCBITaxon%3A2997159","Streptococcaceae bacterium AF07-22B"],["NCBITaxon%3A1335","Streptococcus equinus"],["NCBITaxon%3A1304","Streptococcus salivarius"],["NCBITaxon%3A1200793","Streptococcus salivarius K12"],["NCBITaxon%3A1306","Streptococcus sp."],["NCBITaxon%3A2762566","Streptococcus sp. 21.1"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":1,"nb":15,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["NCBITaxon%3A1304","Streptococcus salivarius"],["NCBITaxon%3A1046629","Streptococcus salivarius 57.I"],["NCBITaxon%3A1420586","Streptococcus salivarius ATCC 25975"],["NCBITaxon%3A1263109","Streptococcus salivarius CAG:79"],["NCBITaxon%3A1048332","Streptococcus salivarius CCHSS3"],["NCBITaxon%3A1255635","Streptococcus salivarius CJ181"]]},{"id":"NCBITaxon:1585","l":"Lactobacillus delbrueckii subsp. bulgaricus","na":1,"nb":15,"a":[["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["NCBITaxon%3A2775876","Lacticaseibacillus sp."],["NCBITaxon%3A1584","Lactobacillus delbrueckii"],["NCBITaxon%3A1585","Lactobacillus delbrueckii subsp. bulgaricus"],["NCBITaxon%3A353496","Lactobacillus delbrueckii subsp. bulgaricus 2038"],["NCBITaxon%3A390333","Lactobacillus delbrueckii subsp. bulgaricus ATCC 11842 = JCM 1002"],["NCBITaxon%3A321956","Lactobacillus delbrueckii subsp. bulgaricus ATCC BAA-365"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":15,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]],"b":[["NCBITaxon%3A38285","Corynebacterium acetoacidophilum"],["NCBITaxon%3A1718","Corynebacterium glutamicum"],["NCBITaxon%3A196627","Corynebacterium glutamicum ATCC 13032"],["NCBITaxon%3A1079988","Corynebacterium glutamicum ATCC 14067"],["NCBITaxon%3A1204414","Corynebacterium glutamicum K051"],["NCBITaxon%3A1310161","Corynebacterium glutamicum MB001"]]},{"id":"NCBITaxon:542","l":"Zymomonas mobilis","na":1,"nb":15,"a":[["Zymomonas_Ecoli_Exometabolomics_Obligate_Mutualism.html","Zymomonas-E. coli Exometabolomics-Designed Obligate Mutualism"]],"b":[["NCBITaxon%3A223958","Exiguobacterium oxidotolerans"],["NCBITaxon%3A1397699","Exiguobacterium oxidotolerans JCM 12280"],["NCBITaxon%3A542","Zymomonas mobilis"],["NCBITaxon%3A325472","Zymomonas mobilis subsp. francensis"],["NCBITaxon%3A120045","Zymomonas mobilis subsp. mobilis"],["NCBITaxon%3A555217","Zymomonas mobilis subsp. mobilis ATCC 10988"]]},{"id":"NCBITaxon:55193","l":"Malassezia","na":1,"nb":15,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["NCBITaxon%3A1381934","Malassezia caprae"],["NCBITaxon%3A948313","Malassezia cuniculi"],["NCBITaxon%3A169489","Malassezia dermatis"],["NCBITaxon%3A1381935","Malassezia equina"],["NCBITaxon%3A55194","Malassezia furfur"],["NCBITaxon%3A76773","Malassezia globosa"]]},{"id":"NCBITaxon:61435","l":"Dehalococcoides mccartyi","na":1,"nb":15,"a":[["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"]],"b":[["NCBITaxon%3A61435","Dehalococcoides mccartyi"],["NCBITaxon%3A243164","Dehalococcoides mccartyi 195"],["NCBITaxon%3A216389","Dehalococcoides mccartyi BAV1"],["NCBITaxon%3A1193806","Dehalococcoides mccartyi BTF08"],["NCBITaxon%3A255470","Dehalococcoides mccartyi CBDB1"],["NCBITaxon%3A1432059","Dehalococcoides mccartyi CG1"]]},{"id":"NCBITaxon:138074","l":"Serratia symbiotica","na":1,"nb":14,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"]],"b":[["NCBITaxon%3A655401","Serratia symbiont of Stomaphis sp."],["NCBITaxon%3A138074","Serratia symbiotica"],["NCBITaxon%3A1592400","Serratia symbiotica AfA2.1"],["NCBITaxon%3A1592401","Serratia symbiotica AfA3.1"],["NCBITaxon%3A2856988","Serratia symbiotica (Cacopsylla coccinea)"],["NCBITaxon%3A1339251","Serratia symbiotica CWBI2.3"]]},{"id":"NCBITaxon:1587","l":"Lactobacillus helveticus","na":1,"nb":14,"a":[["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"]],"b":[["NCBITaxon%3A1587","Lactobacillus helveticus"],["NCBITaxon%3A1226336","Lactobacillus helveticus CIRM-BIA 101"],["NCBITaxon%3A1226332","Lactobacillus helveticus CIRM-BIA 103"],["NCBITaxon%3A1226333","Lactobacillus helveticus CIRM-BIA 104"],["NCBITaxon%3A1226334","Lactobacillus helveticus CIRM-BIA 951"],["NCBITaxon%3A1226335","Lactobacillus helveticus CIRM-BIA 953"]]},{"id":"NCBITaxon:1738645","l":"Caproiciproducens","na":1,"nb":14,"a":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]],"b":[["NCBITaxon%3A2820301","Caproiciproducens faecalis"],["NCBITaxon%3A642589","Caproiciproducens galactitolivorans"],["NCBITaxon%3A3435187","Caproiciproducens lactatisolvens"],["NCBITaxon%3A3435000","Caproiciproducens puteiluti"],["NCBITaxon%3A1954376","Caproiciproducens sp."],["NCBITaxon%3A3023530","Caproiciproducens sp. B_6B25C"]]},{"id":"NCBITaxon:2052312","l":"Candidatus Dormiibacterota","na":1,"nb":14,"a":[["Soil_BGC_Phylum_Depth_Vegetation_Community.html","Soil Biosynthetic Gene Cluster Phylum-Depth-Vegetation Community"]],"b":[["NCBITaxon%3A3693648","Candidatus Aeolococcaceae bacterium"],["NCBITaxon%3A3127015","Candidatus Aeolococcus gillhamiae"],["NCBITaxon%3A3780782","Candidatus Aeolococcus sp."],["NCBITaxon%3A3127014","Candidatus Amunia macphersoniae"],["NCBITaxon%3A3127019","Candidatus Changshengia sp."],["NCBITaxon%3A3134677","Candidatus Dormibacteraceae bacterium"]]},{"id":"NCBITaxon:2822410","l":"Methylotuvimicrobium","na":1,"nb":14,"a":[["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]],"b":[["NCBITaxon%3A271065","Methylotuvimicrobium alcaliphilum"],["NCBITaxon%3A1091494","Methylotuvimicrobium alcaliphilum 20Z"],["NCBITaxon%3A95641","Methylotuvimicrobium buryatense"],["NCBITaxon%3A675511","Methylotuvimicrobium buryatense 5G"],["NCBITaxon%3A81932","Methylotuvimicrobium japanense"],["NCBITaxon%3A269709","Methylotuvimicrobium kenyense"]]},{"id":"NCBITaxon:2837503","l":"Gottfriedia","na":1,"nb":14,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["NCBITaxon%3A371036","Gottfriedia acidiceleris"],["NCBITaxon%3A2820819","Gottfriedia endophytica"],["NCBITaxon%3A178774","Gottfriedia luciferensis"],["NCBITaxon%3A1516104","Gottfriedia solisilvae"],["NCBITaxon%3A2837517","Gottfriedia sp."],["NCBITaxon%3A3570215","Gottfriedia sp. ABJ_BB2_2"]]},{"id":"NCBITaxon:582","l":"Morganella morganii","na":1,"nb":14,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["NCBITaxon%3A582","Morganella morganii"],["NCBITaxon%3A1365974","Morganella morganii AC2_8_11_AN_D6_FAA_4"],["NCBITaxon%3A1428452","Morganella morganii F675"],["NCBITaxon%3A1416758","Morganella morganii H1r"],["NCBITaxon%3A1411647","Morganella morganii IS15"],["NCBITaxon%3A1239989","Morganella morganii SC01"]]},{"id":"GTDB:s__Ensifer_canadensis","l":"","na":1,"nb":13,"a":[["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["NCBITaxon%3A106592","Ensifer adhaerens"],["NCBITaxon%3A1416753","Ensifer adhaerens OV14"],["NCBITaxon%3A555315","Ensifer canadensis"],["NCBITaxon%3A1911585","Ensifer sp. 1H6"],["NCBITaxon%3A2769291","Ensifer sp. ENS11"],["NCBITaxon%3A2109730","Ensifer sp. NM-2"]]},{"id":"GTDB:s__Methanosarcina_mazei","l":"","na":1,"nb":13,"a":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"]],"b":[["NCBITaxon%3A2026739","Methanobacteriota archaeon"],["NCBITaxon%3A2209","Methanosarcina mazei"],["NCBITaxon%3A1434113","Methanosarcina mazei C16"],["NCBITaxon%3A192952","Methanosarcina mazei Go1"],["NCBITaxon%3A1293038","Methanosarcina mazei JCM 9314"],["NCBITaxon%3A1434114","Methanosarcina mazei LYC"]]},{"id":"NCBITaxon:1520","l":"Clostridium beijerinckii","na":1,"nb":13,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"]],"b":[["NCBITaxon%3A1488","Clostridium acetobutylicum"],["NCBITaxon%3A272562","Clostridium acetobutylicum ATCC 824"],["NCBITaxon%3A1520","Clostridium beijerinckii"],["NCBITaxon%3A1202535","Clostridium beijerinckii AAU1"],["NCBITaxon%3A864803","Clostridium beijerinckii ATCC 35702"],["NCBITaxon%3A1200349","Clostridium beijerinckii G117"]]},{"id":"NCBITaxon:1624","l":"Ligilactobacillus salivarius","na":1,"nb":13,"a":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]],"b":[["NCBITaxon%3A1624","Ligilactobacillus salivarius"],["NCBITaxon%3A768728","Ligilactobacillus salivarius ACS-116-V-Col5a"],["NCBITaxon%3A1195377","Ligilactobacillus salivarius B-30514"],["NCBITaxon%3A712961","Ligilactobacillus salivarius CECT 5713"],["NCBITaxon%3A1036738","Ligilactobacillus salivarius CELA2"],["NCBITaxon%3A1273133","Ligilactobacillus salivarius cp400"]]},{"id":"NCBITaxon:4958","l":"Debaryomyces","na":1,"nb":13,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["NCBITaxon%3A27296","Debaryomyces coudertii"],["NCBITaxon%3A58627","Debaryomyces fabryi"],["NCBITaxon%3A4959","Debaryomyces hansenii"],["NCBITaxon%3A284592","Debaryomyces hansenii CBS767"],["NCBITaxon%3A1118155","Debaryomyces hansenii var. hansenii MTCC 234"],["NCBITaxon%3A27297","Debaryomyces maramus"]]},{"id":"GTDB:s__Faecalibacterium_prausnitzii","l":"","na":1,"nb":12,"a":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"]],"b":[["NCBITaxon%3A1872471","Alloprevotella sp."],["NCBITaxon%3A1896972","Azospirillum sp. 51_20"],["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A853","Faecalibacterium prausnitzii"],["NCBITaxon%3A411485","Faecalibacterium prausnitzii M21/2"],["NCBITaxon%3A657322","Faecalibacterium prausnitzii SL3/3"]]},{"id":"GTDB:s__Paenibacillus_polymyxa_C","l":"","na":1,"nb":12,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"]],"b":[["NCBITaxon%3A114136","Paenibacillus jamilae"],["NCBITaxon%3A1406","Paenibacillus polymyxa"],["NCBITaxon%3A1333863","Paenibacillus polymyxa 1-43"],["NCBITaxon%3A1052684","Paenibacillus polymyxa M1"],["NCBITaxon%3A886882","Paenibacillus polymyxa SC2"],["NCBITaxon%3A2849670","Paenibacillus sp. AK121"]]},{"id":"GTDB:s__Trichodesmium_erythraeum","l":"","na":1,"nb":12,"a":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["NCBITaxon%3A1206","Trichodesmium erythraeum"],["NCBITaxon%3A1045866","Trichodesmium erythraeum 21-75"],["NCBITaxon%3A1045867","Trichodesmium erythraeum GBRTRLIN201"],["NCBITaxon%3A203124","Trichodesmium erythraeum IMS101"],["NCBITaxon%3A2919304","Trichodesmium sp. ALOHA_ZT_67"],["NCBITaxon%3A2917417","Trichodesmium sp. MAG_R01"]]},{"id":"GTDB:s__Weizmannia_faecalis","l":"","na":1,"nb":12,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"]],"b":[["NCBITaxon%3A1409","Bacillus sp. (in: firmicutes)"],["NCBITaxon%3A1398","Heyndrickxia coagulans"],["NCBITaxon%3A345219","Heyndrickxia coagulans 36D1"],["NCBITaxon%3A1298921","Heyndrickxia coagulans CSIL1"],["NCBITaxon%3A1398086","Heyndrickxia coagulans P38"],["NCBITaxon%3A1245026","Heyndrickxia coagulans XZL9"]]},{"id":"NCBITaxon:1377992","l":"Halovenus","na":1,"nb":12,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["NCBITaxon%3A2500550","Halovenus amylolytica"],["NCBITaxon%3A3126691","Halovenus anhuiensis"],["NCBITaxon%3A890420","Halovenus aranensis"],["NCBITaxon%3A2692199","Halovenus carboxidivorans"],["NCBITaxon%3A3396622","Halovenus halobia"],["NCBITaxon%3A3396621","Halovenus marina"]]},{"id":"NCBITaxon:1398","l":"Heyndrickxia coagulans","na":1,"nb":12,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"]],"b":[["NCBITaxon%3A3464050","Bacillus coagulans MPL-25"],["NCBITaxon%3A1422","Geobacillus stearothermophilus"],["NCBITaxon%3A1398","Heyndrickxia coagulans"],["NCBITaxon%3A941639","Heyndrickxia coagulans 2-6"],["NCBITaxon%3A345219","Heyndrickxia coagulans 36D1"],["NCBITaxon%3A1298921","Heyndrickxia coagulans CSIL1"]]},{"id":"NCBITaxon:178898","l":"Carboxydocella","na":1,"nb":12,"a":[["Subsurface_Carboxydocella_CO_Aquifer_Community.html","Subsurface Carboxydocella CO-Oxidation Aquifer Community"]],"b":[["NCBITaxon%3A412901","Carboxydocella ferrireducens"],["NCBITaxon%3A744873","Carboxydocella manganica"],["NCBITaxon%3A2152941","Carboxydocella sp."],["NCBITaxon%3A483241","Carboxydocella sp. 1244"],["NCBITaxon%3A483242","Carboxydocella sp. 1503"],["NCBITaxon%3A483243","Carboxydocella sp. 930"]]},{"id":"NCBITaxon:831","l":"Butyrivibrio fibrisolvens","na":1,"nb":12,"a":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"]],"b":[["NCBITaxon%3A831","Butyrivibrio fibrisolvens"],["NCBITaxon%3A657324","Butyrivibrio fibrisolvens 16/4"],["NCBITaxon%3A1280697","Butyrivibrio fibrisolvens AB2020"],["NCBITaxon%3A1121131","Butyrivibrio fibrisolvens DSM 3071"],["NCBITaxon%3A1280700","Butyrivibrio fibrisolvens FE2007"],["NCBITaxon%3A1280703","Butyrivibrio fibrisolvens MD2001"]]},{"id":"GTDB:s__Bacteroides_caccae","l":"","na":1,"nb":11,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A2212467","Bacteroidaceae bacterium"],["NCBITaxon%3A47678","Bacteroides caccae"],["NCBITaxon%3A411901","Bacteroides caccae ATCC 43185"],["NCBITaxon%3A1263037","Bacteroides caccae CAG:21"],["NCBITaxon%3A997873","Bacteroides caccae CL03T12C61"]]},{"id":"GTDB:s__Bradyrhizobium_japonicum","l":"","na":1,"nb":11,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"]],"b":[["NCBITaxon%3A29448","Bradyrhizobium elkanii"],["NCBITaxon%3A375","Bradyrhizobium japonicum"],["NCBITaxon%3A1128255","Bradyrhizobium japonicum CCBAU 15618"],["NCBITaxon%3A1128256","Bradyrhizobium japonicum CCBAU 25435"],["NCBITaxon%3A476282","Bradyrhizobium japonicum SEMIA 5079"],["NCBITaxon%3A1079467","Bradyrhizobium japonicum USDA 38"]]},{"id":"GTDB:s__Bradyrhizobium_liaoningense","l":"","na":1,"nb":11,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"]],"b":[["NCBITaxon%3A1038863","Bradyrhizobium japonicum USDA 135"],["NCBITaxon%3A43992","Bradyrhizobium liaoningense"],["NCBITaxon%3A1128287","Bradyrhizobium liaoningense CCBAU 05525"],["NCBITaxon%3A1128288","Bradyrhizobium liaoningense CCBAU 83689"],["NCBITaxon%3A1641877","Bradyrhizobium sp. CCBAU 25338"],["NCBITaxon%3A1325102","Bradyrhizobium sp. CCBAU 51765"]]},{"id":"GTDB:s__Citrobacter_europaeus","l":"","na":1,"nb":11,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["NCBITaxon%3A57706","Citrobacter braakii"],["NCBITaxon%3A1914243","Citrobacter europaeus"],["NCBITaxon%3A546","Citrobacter freundii"],["NCBITaxon%3A1439318","Citrobacter freundii MGH 56"],["NCBITaxon%3A2883266","Citrobacter sp. 210820-DFI.7.7"],["NCBITaxon%3A2883267","Citrobacter sp. 210820-DFI.7.8"]]},{"id":"GTDB:s__Clostridium_beijerinckii","l":"","na":1,"nb":11,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"]],"b":[["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A1520","Clostridium beijerinckii"],["NCBITaxon%3A864803","Clostridium beijerinckii ATCC 35702"],["NCBITaxon%3A1200349","Clostridium beijerinckii G117"],["NCBITaxon%3A290402","Clostridium beijerinckii NCIMB 8052"],["NCBITaxon%3A1428454","Clostridium beijerinckii NRRL B-598"]]},{"id":"GTDB:s__Lactobacillus_acidophilus","l":"","na":1,"nb":11,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["NCBITaxon%3A1579","Lactobacillus acidophilus"],["NCBITaxon%3A525306","Lactobacillus acidophilus ATCC 4796"],["NCBITaxon%3A1421011","Lactobacillus acidophilus CFH"],["NCBITaxon%3A1226677","Lactobacillus acidophilus CIRM-BIA 442"],["NCBITaxon%3A1226678","Lactobacillus acidophilus CIRM-BIA 445"],["NCBITaxon%3A1423717","Lactobacillus acidophilus DSM 20079 = JCM 1132 = NBRC 13951 = CIP 76.13"]]},{"id":"GTDB:s__Synechocystis_sp000284455","l":"","na":1,"nb":11,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"]],"b":[["NCBITaxon%3A2764086","Synechocystis sp. B12"],["NCBITaxon%3A1933929","Synechocystis sp. CACIAM 05"],["NCBITaxon%3A2692865","Synechocystis sp. FACHB-898"],["NCBITaxon%3A2692866","Synechocystis sp. FACHB-908"],["NCBITaxon%3A2692867","Synechocystis sp. FACHB-929"],["NCBITaxon%3A2116702","Synechocystis sp. IPPAS B-1465"]]},{"id":"NCBITaxon:307628","l":"Petrimonas","na":1,"nb":11,"a":[["Waste_Sludge_Electrofermentation_Biofilm_Suspension_Community.html","Waste-Sludge Electro-Fermentation Biofilm-Suspension Community"]],"b":[["NCBITaxon%3A1642646","Petrimonas mucosa"],["NCBITaxon%3A2023866","Petrimonas sp."],["NCBITaxon%3A1197715","Petrimonas sp. B-17"],["NCBITaxon%3A1347151","Petrimonas sp. canine oral taxon 434"],["NCBITaxon%3A1506907","Petrimonas sp. enrichment culture clone B4-23"],["NCBITaxon%3A1454160","Petrimonas sp. enrichment culture clone SJC6"]]},{"id":"NCBITaxon:83551","l":"Parachlamydia","na":1,"nb":11,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["NCBITaxon%3A83552","Parachlamydia acanthamoebae"],["NCBITaxon%3A159254","Parachlamydia acanthamoebae str. Hall's coccus"],["NCBITaxon%3A765952","Parachlamydia acanthamoebae UV-7"],["NCBITaxon%3A2052048","Parachlamydia sp."],["NCBITaxon%3A2795736","Parachlamydia sp. AcF125"],["NCBITaxon%3A2032639","Parachlamydia sp. BC.030"]]},{"id":"GTDB:s__Butyrivibrio_fibrisolvens_C","l":"","na":1,"nb":10,"a":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"]],"b":[["NCBITaxon%3A831","Butyrivibrio fibrisolvens"],["NCBITaxon%3A1280697","Butyrivibrio fibrisolvens AB2020"],["NCBITaxon%3A1280700","Butyrivibrio fibrisolvens FE2007"],["NCBITaxon%3A1280703","Butyrivibrio fibrisolvens MD2001"],["NCBITaxon%3A1280696","Butyrivibrio fibrisolvens ND3005"],["NCBITaxon%3A1280699","Butyrivibrio fibrisolvens WTE3004"]]},{"id":"GTDB:s__Desulfovibrio_sp900556755","l":"","na":1,"nb":10,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A901","Desulfovibrio piger"],["NCBITaxon%3A885","Desulfovibrio sp."],["NCBITaxon%3A3420558","Desulfovibrio sp. SGI.082"],["NCBITaxon%3A3420559","Desulfovibrio sp. SGI.102"],["NCBITaxon%3A3420560","Desulfovibrio sp. SGI.133"]]},{"id":"GTDB:s__Otoolea_symbiosa","l":"","na":1,"nb":10,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["NCBITaxon%3A1232445","Clostridiales bacterium VE202-16"],["NCBITaxon%3A2126740","Clostridium fessum"],["NCBITaxon%3A1506","Clostridium sp."],["NCBITaxon%3A665940","Clostridium sp. 7_3_54FAA"],["NCBITaxon%3A2044259","Clostridium sp. HMb25"],["NCBITaxon%3A1512","[Clostridium] symbiosum"]]},{"id":"GTDB:s__Stenotrophomonas_pavanii","l":"","na":1,"nb":10,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]],"b":[["NCBITaxon%3A1977087","Pseudomonadota bacterium"],["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A487698","Stenotrophomonas pavanii"],["NCBITaxon%3A2954546","Stenotrophomonas sp. FSL W7-1447"],["NCBITaxon%3A2899139","Stenotrophomonas sp. PI_27"],["NCBITaxon%3A2944932","Stenotrophomonas sp. SG1"]]},{"id":"GTDB:s__Streptococcus_oralis_S","l":"","na":1,"nb":10,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1095740","Streptococcus oralis SK100"],["NCBITaxon%3A1458253","Streptococcus oralis subsp. dentisani"],["NCBITaxon%3A1891914","Streptococcus oralis subsp. oralis"],["NCBITaxon%3A257758","Streptococcus pseudopneumoniae"],["NCBITaxon%3A1739389","Streptococcus sp. HMSC062H02"]]},{"id":"NCBITaxon:165812","l":"Sporanaerobacter","na":1,"nb":10,"a":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]],"b":[["NCBITaxon%3A165813","Sporanaerobacter acetigenes"],["NCBITaxon%3A1123281","Sporanaerobacter acetigenes DSM 13106"],["NCBITaxon%3A2010183","Sporanaerobacter sp."],["NCBITaxon%3A747279","Sporanaerobacter sp. enrichment culture clone B12"],["NCBITaxon%3A393729","Sporanaerobacter sp. Iso-W4"],["NCBITaxon%3A1460448","Sporanaerobacter sp. LAM0007"]]},{"id":"NCBITaxon:2209","l":"Methanosarcina mazei","na":1,"nb":10,"a":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"]],"b":[["NCBITaxon%3A2209","Methanosarcina mazei"],["NCBITaxon%3A1434113","Methanosarcina mazei C16"],["NCBITaxon%3A192952","Methanosarcina mazei Go1"],["NCBITaxon%3A1293038","Methanosarcina mazei JCM 9314"],["NCBITaxon%3A1434114","Methanosarcina mazei LYC"],["NCBITaxon%3A213585","Methanosarcina mazei S-6"]]},{"id":"NCBITaxon:2357","l":"Desulfomonile","na":1,"nb":10,"a":[["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["NCBITaxon%3A2799490","Candidatus Desulfomonile palmitatoxidans"],["NCBITaxon%3A117208","Desulfomonile limimaris"],["NCBITaxon%3A2793219","Desulfomonile sp."],["NCBITaxon%3A1145211","Desulfomonile sp. enrichment culture clone F4_A9"],["NCBITaxon%3A1145212","Desulfomonile sp. enrichment culture clone F4_E11"],["NCBITaxon%3A1145213","Desulfomonile sp. enrichment culture clone F4_F9"]]},{"id":"NCBITaxon:29397","l":"Lactobacillus delbrueckii subsp. lactis","na":1,"nb":10,"a":[["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"]],"b":[["NCBITaxon%3A2775876","Lacticaseibacillus sp."],["NCBITaxon%3A1584","Lactobacillus delbrueckii"],["NCBITaxon%3A29397","Lactobacillus delbrueckii subsp. lactis"],["NCBITaxon%3A1269760","Lactobacillus delbrueckii subsp. lactis CRL581"],["NCBITaxon%3A888027","Lactobacillus delbrueckii subsp. lactis DSM 20072"],["NCBITaxon%3A28039","Lactobacillus leichmannii"]]},{"id":"NCBITaxon:29448","l":"Bradyrhizobium elkanii","na":1,"nb":10,"a":[["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["NCBITaxon%3A29448","Bradyrhizobium elkanii"],["NCBITaxon%3A1156987","Bradyrhizobium elkanii 587"],["NCBITaxon%3A1128203","Bradyrhizobium elkanii CCBAU 05737"],["NCBITaxon%3A1128204","Bradyrhizobium elkanii CCBAU 43297"],["NCBITaxon%3A1079479","Bradyrhizobium elkanii USDA 3254"],["NCBITaxon%3A1079466","Bradyrhizobium elkanii USDA 3259"]]},{"id":"NCBITaxon:38304","l":"Corynebacterium tuberculostearicum","na":1,"nb":10,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["NCBITaxon%3A38284","Corynebacterium accolens"],["NCBITaxon%3A1736004","Corynebacterium cf. tuberculostearicum 1237_CAUR"],["NCBITaxon%3A1736005","Corynebacterium cf. tuberculostearicum 620_CAUR"],["NCBITaxon%3A1736006","Corynebacterium cf. tuberculostearicum 911_CAUR"],["NCBITaxon%3A38287","Corynebacterium fastidiosum"],["NCBITaxon%3A1720","Corynebacterium sp."]]},{"id":"NCBITaxon:40214","l":"Acinetobacter johnsonii","na":1,"nb":10,"a":[["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["NCBITaxon%3A40214","Acinetobacter johnsonii"],["NCBITaxon%3A1255605","Acinetobacter johnsonii 3M05"],["NCBITaxon%3A1217662","Acinetobacter johnsonii ANC 3681"],["NCBITaxon%3A1217663","Acinetobacter johnsonii CIP 64.6"],["NCBITaxon%3A1160709","Acinetobacter johnsonii L18"],["NCBITaxon%3A701047","Acinetobacter johnsonii SE1"]]},{"id":"GTDB:s__Agrobacterium_oryzihabitans","l":"","na":1,"nb":9,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"]],"b":[["NCBITaxon%3A1183412","Agrobacterium deltae"],["NCBITaxon%3A1183435","Agrobacterium genomosp. 5 str. CFBP 6626"],["NCBITaxon%3A361","Agrobacterium sp."],["NCBITaxon%3A2986921","Agrobacterium sp. BT-220-3"],["NCBITaxon%3A358","Agrobacterium tumefaciens"],["NCBITaxon%3A1050720","Agrobacterium tumefaciens F2"]]},{"id":"GTDB:s__Bifidobacterium_thermacidophilum","l":"","na":1,"nb":9,"a":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["NCBITaxon%3A212365","Bifidobacterium porcinum"],["NCBITaxon%3A1435463","Bifidobacterium porcinum DSM 17755"],["NCBITaxon%3A41200","Bifidobacterium sp."],["NCBITaxon%3A3440246","Bifidobacterium sp. LCP19S3_E9"],["NCBITaxon%3A3440249","Bifidobacterium sp. LCP19S3_H1"],["NCBITaxon%3A246618","Bifidobacterium thermacidophilum"]]},{"id":"GTDB:s__Lactiplantibacillus_pentosus","l":"","na":1,"nb":9,"a":[["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["NCBITaxon%3A1589","Lactiplantibacillus pentosus"],["NCBITaxon%3A1423791","Lactiplantibacillus pentosus DSM 20314"],["NCBITaxon%3A1028490","Lactiplantibacillus pentosus MP-10"],["NCBITaxon%3A1590","Lactiplantibacillus plantarum"],["NCBITaxon%3A2767846","Lactiplantibacillus sp."],["NCBITaxon%3A2832297","Lactiplantibacillus sp. 30.2.29"]]},{"id":"GTDB:s__Variovorax_sp900115375","l":"","na":1,"nb":9,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["NCBITaxon%3A1335060","Rhizobium sp. Q54"],["NCBITaxon%3A2529861","Tabrizicola sp. YIM 78059"],["NCBITaxon%3A2855501","Variovorax endophyticus"],["NCBITaxon%3A34073","Variovorax paradoxus"],["NCBITaxon%3A1871043","Variovorax sp."],["NCBITaxon%3A3080983","Variovorax sp. DAIF25"]]},{"id":"GTDB:s__Zymomonas_mobilis","l":"","na":1,"nb":9,"a":[["Zymomonas_Ecoli_Exometabolomics_Obligate_Mutualism.html","Zymomonas-E. coli Exometabolomics-Designed Obligate Mutualism"]],"b":[["NCBITaxon%3A542","Zymomonas mobilis"],["NCBITaxon%3A120045","Zymomonas mobilis subsp. mobilis"],["NCBITaxon%3A555217","Zymomonas mobilis subsp. mobilis ATCC 10988"],["NCBITaxon%3A627344","Zymomonas mobilis subsp. mobilis ATCC 29191"],["NCBITaxon%3A1231376","Zymomonas mobilis subsp. mobilis ATCC 31822"],["NCBITaxon%3A622759","Zymomonas mobilis subsp. mobilis NCIMB 11163"]]},{"id":"NCBITaxon:105983","l":"Apiotrichum","na":1,"nb":9,"a":[["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"]],"b":[["NCBITaxon%3A279327","Apiotrichum akiyoshidainum"],["NCBITaxon%3A82513","Apiotrichum brassicae"],["NCBITaxon%3A82514","Apiotrichum domesticum"],["NCBITaxon%3A1105092","Apiotrichum gamsii"],["NCBITaxon%3A82516","Apiotrichum gracile"],["NCBITaxon%3A82520","Apiotrichum laibachii"]]},{"id":"NCBITaxon:1064","l":"Rhodocyclus","na":1,"nb":9,"a":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"]],"b":[["NCBITaxon%3A2929842","Rhodocyclus gracilis"],["NCBITaxon%3A1067","Rhodocyclus purpureus"],["NCBITaxon%3A77788","Rhodocyclus sp."],["NCBITaxon%3A290800","Rhodocyclus sp. HOD 5"],["NCBITaxon%3A712523","Rhodocyclus sp. oral taxon 028"],["NCBITaxon%3A1206098","Rhodocyclus sp. UW 659-1-F08"]]},{"id":"NCBITaxon:1255","l":"Pediococcus pentosaceus","na":1,"nb":9,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["NCBITaxon%3A1254","Pediococcus acidilactici"],["NCBITaxon%3A114090","Pediococcus inopinatus"],["NCBITaxon%3A54062","Pediococcus parvulus"],["NCBITaxon%3A1255","Pediococcus pentosaceus"],["NCBITaxon%3A278197","Pediococcus pentosaceus ATCC 25745"],["NCBITaxon%3A1460385","Pediococcus pentosaceus CGMCC 7049"]]},{"id":"NCBITaxon:1264","l":"Hominimerdicola alba","na":1,"nb":9,"a":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"]],"b":[["NCBITaxon%3A1264","Hominimerdicola alba"],["NCBITaxon%3A697329","Hominimerdicola alba 7 = DSM 20455"],["NCBITaxon%3A246199","Hominimerdicola alba 8"],["NCBITaxon%3A1384065","Hominimerdicola alba AD2013"],["NCBITaxon%3A1341156","Hominimerdicola alba SY3"],["NCBITaxon%3A1339594","Hominimerdicola alba TSDC17.2-1.1"]]},{"id":"NCBITaxon:1682","l":"Bifidobacterium longum subsp. infantis","na":1,"nb":9,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["NCBITaxon%3A1686","Bifidobacterium catenulatum"],["NCBITaxon%3A630129","Bifidobacterium catenulatum subsp. kashiwanohense"],["NCBITaxon%3A216816","Bifidobacterium longum"],["NCBITaxon%3A1682","Bifidobacterium longum subsp. infantis"],["NCBITaxon%3A565040","Bifidobacterium longum subsp. infantis 157F"],["NCBITaxon%3A391904","Bifidobacterium longum subsp. infantis ATCC 15697 = JCM 1222 = DSM 20088"]]},{"id":"NCBITaxon:1766253","l":"Agathobacter","na":1,"nb":9,"a":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["NCBITaxon%3A39491","Agathobacter rectalis"],["NCBITaxon%3A515619","Agathobacter rectalis ATCC 33656"],["NCBITaxon%3A1263079","Agathobacter rectalis CAG:36"],["NCBITaxon%3A657318","Agathobacter rectalis DSM 17629"],["NCBITaxon%3A657317","Agathobacter rectalis M104/1"],["NCBITaxon%3A1712665","Agathobacter ruminis"]]},{"id":"NCBITaxon:40413","l":"Desulforhopalus","na":1,"nb":9,"a":[["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"]],"b":[["NCBITaxon%3A3470062","Desulforhopalus glucosivorans"],["NCBITaxon%3A91360","Desulforhopalus singaporensis"],["NCBITaxon%3A1121418","Desulforhopalus singaporensis DSM 12130"],["NCBITaxon%3A2099376","Desulforhopalus sp."],["NCBITaxon%3A1824887","Desulforhopalus sp. 16SWWS2-2-3"],["NCBITaxon%3A2569543","Desulforhopalus sp. IMCC35007"]]},{"id":"NCBITaxon:64495","l":"Rhizopus arrhizus","na":1,"nb":9,"a":[["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"]],"b":[["NCBITaxon%3A64495","Rhizopus arrhizus"],["NCBITaxon%3A1279478","Rhizopus arrhizus 99-133"],["NCBITaxon%3A1279482","Rhizopus arrhizus 99-892"],["NCBITaxon%3A1274785","Rhizopus arrhizus B7407"],["NCBITaxon%3A1279480","Rhizopus arrhizus HUMC 02"],["NCBITaxon%3A1279475","Rhizopus arrhizus Type I NRRL 13440"]]},{"id":"NCBITaxon:80866","l":"Delftia acidovorans","na":1,"nb":9,"a":[["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["NCBITaxon%3A1872122","Acidovorax sp."],["NCBITaxon%3A80866","Delftia acidovorans"],["NCBITaxon%3A883100","Delftia acidovorans CCUG 15835"],["NCBITaxon%3A883101","Delftia acidovorans CCUG 274B"],["NCBITaxon%3A1218107","Delftia acidovorans NBRC 14950"],["NCBITaxon%3A1255679","Delftia acidovorans PCA12"]]},{"id":"NCBITaxon:96241","l":"Bacillus spizizenii","na":1,"nb":9,"a":[["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"]],"b":[["NCBITaxon%3A96241","Bacillus spizizenii"],["NCBITaxon%3A703612","Bacillus spizizenii ATCC 6633 = JCM 2499"],["NCBITaxon%3A1051503","Bacillus spizizenii DV1-B-1"],["NCBITaxon%3A932006","Bacillus spizizenii RFWG1A3"],["NCBITaxon%3A932005","Bacillus spizizenii RFWG1A4"],["NCBITaxon%3A932007","Bacillus spizizenii RFWG4C10"]]},{"id":"GTDB:s__Rhodobacter_capsulatus_B","l":"","na":1,"nb":8,"a":[["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"]],"b":[["NCBITaxon%3A1061","Rhodobacter capsulatus"],["NCBITaxon%3A1415162","Rhodobacter capsulatus B6"],["NCBITaxon%3A1415160","Rhodobacter capsulatus DE442"],["NCBITaxon%3A1415163","Rhodobacter capsulatus R121"],["NCBITaxon%3A272942","Rhodobacter capsulatus SB 1003"],["NCBITaxon%3A1415161","Rhodobacter capsulatus Y262"]]},{"id":"GTDB:s__Sphingobacterium_paramultivorum","l":"","na":1,"nb":8,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["NCBITaxon%3A2886510","Sphingobacterium paramultivorum"],["NCBITaxon%3A459529","Sphingobacterium siyangense"],["NCBITaxon%3A634159","Sphingobacterium siyangense subsp. cladoniae"],["NCBITaxon%3A341027","Sphingobacterium sp."],["NCBITaxon%3A2681401","Sphingobacterium sp. 18053"],["NCBITaxon%3A2940619","Sphingobacterium sp. BIGb0116"]]},{"id":"GTDB:s__Streptococcus_downei","l":"","na":1,"nb":8,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1317","Streptococcus downei"],["NCBITaxon%3A904293","Streptococcus downei F0415"],["NCBITaxon%3A764290","Streptococcus downei MFe28"],["NCBITaxon%3A1310","Streptococcus sobrinus"],["NCBITaxon%3A1074072","Streptococcus sobrinus TCI-348"],["NCBITaxon%3A1074073","Streptococcus sobrinus TCI-349"]]},{"id":"GTDB:s__Trichormus_sp000009705","l":"","na":1,"nb":8,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["NCBITaxon%3A2692878","Anabaena cylindrica FACHB-170"],["NCBITaxon%3A2692880","Anabaena cylindrica FACHB-318"],["NCBITaxon%3A3403436","Anabaena sp. FACHB-595"],["NCBITaxon%3A1086822","Anabaena sp. FACHB-709"],["NCBITaxon%3A103690","Nostoc sp. PCC 7120 = FACHB-418"],["NCBITaxon%3A2055761","Nostoc sp. UBA8866"]]},{"id":"GTDB:s__Weizmannia_coagulans","l":"","na":1,"nb":8,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"]],"b":[["NCBITaxon%3A1398","Heyndrickxia coagulans"],["NCBITaxon%3A941639","Heyndrickxia coagulans 2-6"],["NCBITaxon%3A1121088","Heyndrickxia coagulans DSM 1 = ATCC 7050"],["NCBITaxon%3A1236905","Heyndrickxia coagulans H-1"],["NCBITaxon%3A1071395","Heyndrickxia coagulans XZL4"],["NCBITaxon%3A2954554","Weizmannia sp. FSL W8-0401"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":1,"nb":8,"a":[["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"]],"b":[["NCBITaxon%3A1061","Rhodobacter capsulatus"],["NCBITaxon%3A1415162","Rhodobacter capsulatus B6"],["NCBITaxon%3A1415160","Rhodobacter capsulatus DE442"],["NCBITaxon%3A1415163","Rhodobacter capsulatus R121"],["NCBITaxon%3A272942","Rhodobacter capsulatus SB 1003"],["NCBITaxon%3A1415161","Rhodobacter capsulatus Y262"]]},{"id":"NCBITaxon:1272","l":"Kocuria varians","na":1,"nb":8,"a":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"]],"b":[["NCBITaxon%3A71999","Kocuria palustris"],["NCBITaxon%3A72000","Kocuria rhizophila"],["NCBITaxon%3A378753","Kocuria rhizophila DC2201"],["NCBITaxon%3A1871328","Kocuria sp."],["NCBITaxon%3A1272","Kocuria varians"],["NCBITaxon%3A1255672","Kocuria varians Mu208"]]},{"id":"NCBITaxon:155322","l":"Bacillus toyonensis","na":1,"nb":8,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A155322","Bacillus toyonensis"],["NCBITaxon%3A1415784","Bacillus toyonensis BCT-7112"],["NCBITaxon%3A2923195","Bacillus toyonensis biovar Thuringiensis"],["NCBITaxon%3A1195464","Bacillus toyonensis biovar Thuringiensis MC28"],["NCBITaxon%3A526981","Bacillus toyonensis Rock1-3"]]},{"id":"NCBITaxon:1655","l":"Actinomyces naeslundii","na":1,"nb":8,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A3050225","Actinomyces acetigenes"],["NCBITaxon%3A544581","Actinomyces johnsonii"],["NCBITaxon%3A1655","Actinomyces naeslundii"],["NCBITaxon%3A240017","Actinomyces naeslundii MG1"],["NCBITaxon%3A1115803","Actinomyces naeslundii str. Howell 279"],["NCBITaxon%3A544580","Actinomyces oris"]]},{"id":"NCBITaxon:40216","l":"Acinetobacter radioresistens","na":1,"nb":8,"a":[["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["NCBITaxon%3A40216","Acinetobacter radioresistens"],["NCBITaxon%3A981334","Acinetobacter radioresistens DSM 6976 = NBRC 102413 = CIP 103788"],["NCBITaxon%3A1217674","Acinetobacter radioresistens NIPH 2130"],["NCBITaxon%3A575589","Acinetobacter radioresistens SH164"],["NCBITaxon%3A596318","Acinetobacter radioresistens SK82"],["NCBITaxon%3A1221310","Acinetobacter radioresistens TG02010"]]},{"id":"NCBITaxon:5552","l":"Trichosporon","na":1,"nb":8,"a":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["NCBITaxon%3A82508","Trichosporon asahii"],["NCBITaxon%3A889963","Trichosporon asahii JCM 2466"],["NCBITaxon%3A82511","Trichosporon asteroides"],["NCBITaxon%3A5553","Trichosporon beigelii"],["NCBITaxon%3A82509","Trichosporon coremiiforme"],["NCBITaxon%3A82510","Trichosporon faecale"]]},{"id":"NCBITaxon:599737","l":"Wickerhamomyces","na":1,"nb":8,"a":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["NCBITaxon%3A1337057","Wickerhamomyces alni"],["NCBITaxon%3A36018","Wickerhamomyces bisporus"],["NCBITaxon%3A1156965","Wickerhamomyces canadensis"],["NCBITaxon%3A432112","Wickerhamomyces jianshihensis"],["NCBITaxon%3A2530061","Wickerhamomyces kurtzmanii"],["NCBITaxon%3A51924","Wickerhamomyces quercuum"]]},{"id":"NCBITaxon:648","l":"Aeromonas caviae","na":1,"nb":8,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["NCBITaxon%3A648","Aeromonas caviae"],["NCBITaxon%3A878320","Aeromonas caviae Ae398"],["NCBITaxon%3A1458270","Aeromonas caviae NM22"],["NCBITaxon%3A1458271","Aeromonas caviae NM33"],["NCBITaxon%3A3418572","Aeromonas caviae subsp. aquatica"],["NCBITaxon%3A644","Aeromonas hydrophila"]]},{"id":"NCBITaxon:94625","l":"Brucella intermedia","na":1,"nb":8,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["NCBITaxon%3A94625","Brucella intermedia"],["NCBITaxon%3A1337887","Brucella intermedia 229E"],["NCBITaxon%3A1444311","Brucella intermedia 2745-2"],["NCBITaxon%3A1328308","Brucella intermedia CCUG 57381"],["NCBITaxon%3A2975438","Brucella intermedia GD04153"],["NCBITaxon%3A903525","Brucella intermedia J2"]]},{"id":"GTDB:s__Bacillus_inaquosorum","l":"","na":1,"nb":7,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"]],"b":[["NCBITaxon%3A483913","Bacillus inaquosorum"],["NCBITaxon%3A1236548","Bacillus inaquosorum KCTC 13429"],["NCBITaxon%3A667304","Bacillus sp. G16"],["NCBITaxon%3A2055158","Bacillus sp. SN1"],["NCBITaxon%3A2834414","Bacillus sp. TSO22"],["NCBITaxon%3A1423","Bacillus subtilis"]]},{"id":"GTDB:s__Bradyrhizobium_japonicum_C","l":"","na":1,"nb":7,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"]],"b":[["NCBITaxon%3A375","Bradyrhizobium japonicum"],["NCBITaxon%3A376","Bradyrhizobium sp."],["NCBITaxon%3A1304878","Bradyrhizobium sp. in8p8"],["NCBITaxon%3A1304879","Bradyrhizobium sp. is5"],["NCBITaxon%3A1736363","Bradyrhizobium sp. Leaf396"],["NCBITaxon%3A2876564","Bradyrhizobium sp. Leaf401"]]},{"id":"GTDB:s__Phaeobacter_inhibens","l":"","na":1,"nb":7,"a":[["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"]],"b":[["NCBITaxon%3A221822","Phaeobacter inhibens"],["NCBITaxon%3A383629","Phaeobacter inhibens 2.10"],["NCBITaxon%3A999548","Phaeobacter inhibens DSM 16374"],["NCBITaxon%3A391619","Phaeobacter inhibens DSM 17395"],["NCBITaxon%3A2907240","Phaeobacter sp. BS34"],["NCBITaxon%3A2818494","Phaeobacter sp. HS011"]]},{"id":"GTDB:s__Prevotella_copri","l":"","na":1,"nb":7,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["NCBITaxon%3A59823","Prevotella sp."],["NCBITaxon%3A1947118","Prevotella sp. UBA2822"],["NCBITaxon%3A165179","Segatella copri"],["NCBITaxon%3A537011","Segatella copri DSM 18205"],["NCBITaxon%3A2974253","Segatella sp."],["NCBITaxon%3A159272","uncultured Prevotella sp."]]},{"id":"GTDB:s__Prochlorococcus_A_sp002026005","l":"","na":1,"nb":7,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A1219","Prochlorococcus marinus"],["NCBITaxon%3A2053475","Prochlorococcus marinus str. MU1414"],["NCBITaxon%3A2716485","Prochlorococcus marinus XMU1414"],["NCBITaxon%3A2774493","Prochlorococcus marinus XMU1420"],["NCBITaxon%3A2774497","Prochlorococcus marinus XMU1424"],["NCBITaxon%3A2162149","Prochlorococcus sp. AG-347-G18"]]},{"id":"GTDB:s__Prochlorococcus_A_sp003280965","l":"","na":1,"nb":7,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2774507","Prochlorococcus marinus CUG1434"],["NCBITaxon%3A2162105","Prochlorococcus sp. AG-355-B18"],["NCBITaxon%3A2162283","Prochlorococcus sp. AG-418-J19"],["NCBITaxon%3A2162294","Prochlorococcus sp. AG-424-A14"],["NCBITaxon%3A2162296","Prochlorococcus sp. AG-424-G03"],["NCBITaxon%3A1471454","Prochlorococcus sp. scB241_528J8"]]},{"id":"GTDB:s__Trichococcus_flocculiformis","l":"","na":1,"nb":7,"a":[["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["NCBITaxon%3A115547","uncultured archaeon"],["NCBITaxon%3A1903720","Bacilli bacterium"],["NCBITaxon%3A82803","Trichococcus flocculiformis"],["NCBITaxon%3A1985464","Trichococcus sp."],["NCBITaxon%3A872292","Trichococcus sp. ES5"],["NCBITaxon%3A1947762","Trichococcus sp. UBA802"]]},{"id":"NCBITaxon:120961","l":"Roseiflexus","na":1,"nb":7,"a":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]],"b":[["NCBITaxon%3A120962","Roseiflexus castenholzii"],["NCBITaxon%3A383372","Roseiflexus castenholzii DSM 13941"],["NCBITaxon%3A2562120","Roseiflexus sp."],["NCBITaxon%3A2814542","Roseiflexus sp. AH-315-K22"],["NCBITaxon%3A2609474","Roseiflexus sp. LECH5"],["NCBITaxon%3A357808","Roseiflexus sp. RS-1"]]},{"id":"NCBITaxon:129001","l":"Syntrophothermus","na":1,"nb":7,"a":[["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"]],"b":[["NCBITaxon%3A86170","Syntrophothermus lipocalidus"],["NCBITaxon%3A643648","Syntrophothermus lipocalidus DSM 12680"],["NCBITaxon%3A2736299","Syntrophothermus sp."],["NCBITaxon%3A1671631","Syntrophothermus sp. DTU052"],["NCBITaxon%3A1947645","Syntrophothermus sp. UBA1445"],["NCBITaxon%3A1947646","Syntrophothermus sp. UBA3927"]]},{"id":"NCBITaxon:1769012","l":"Arachidicoccus","na":1,"nb":7,"a":[["Tomato_Oxylipin_SynCom3.html","Tomato Oxylipin-Protective SynCom3"]],"b":[["NCBITaxon%3A1850526","Arachidicoccus ginsenosidimutans"],["NCBITaxon%3A496057","Arachidicoccus ginsenosidivorans"],["NCBITaxon%3A551991","Arachidicoccus rhizosphaerae"],["NCBITaxon%3A2341117","Arachidicoccus soli"],["NCBITaxon%3A1872624","Arachidicoccus sp."],["NCBITaxon%3A2875539","Arachidicoccus terrestris"]]},{"id":"NCBITaxon:1840214","l":"Lentimicrobium","na":1,"nb":7,"a":[["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"]],"b":[["NCBITaxon%3A1678841","Lentimicrobium saccharophilum"],["NCBITaxon%3A2034841","Lentimicrobium sp."],["NCBITaxon%3A2735916","Lentimicrobium sp. L6"],["NCBITaxon%3A2735872","Lentimicrobium sp. S6"],["NCBITaxon%3A2875483","Lentimicrobium sp. Zuar_12"],["NCBITaxon%3A2875482","Lentimicrobium sp. Zuar_5"]]},{"id":"NCBITaxon:2800685","l":"Pelagerythrobacter","na":1,"nb":7,"a":[["Pelagerythrobacter_Salinicola_PES_Pyrene_Degradation_SynCom.html","Pelagerythrobacter-Salinicola PES Pyrene-Degradation SynCom"]],"b":[["NCBITaxon%3A2306995","Pelagerythrobacter aerophilus"],["NCBITaxon%3A543877","Pelagerythrobacter marensis"],["NCBITaxon%3A538382","Pelagerythrobacter marinus"],["NCBITaxon%3A2268576","Pelagerythrobacter rhizovicinus"],["NCBITaxon%3A2800702","Pelagerythrobacter sp."],["NCBITaxon%3A3050438","Pelagerythrobacter sp. N7"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":1,"nb":7,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["NCBITaxon%3A34073","Variovorax paradoxus"],["NCBITaxon%3A1150395","Variovorax paradoxus 4MFCol3.1"],["NCBITaxon%3A1246301","Variovorax paradoxus B4"],["NCBITaxon%3A595537","Variovorax paradoxus EPS"],["NCBITaxon%3A1321610","Variovorax paradoxus NBRC 15149"],["NCBITaxon%3A543728","Variovorax paradoxus S110"]]},{"id":"NCBITaxon:353","l":"Azotobacter chroococcum","na":1,"nb":7,"a":[["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"]],"b":[["NCBITaxon%3A353","Azotobacter chroococcum"],["NCBITaxon%3A1328314","Azotobacter chroococcum NCIMB 8003"],["NCBITaxon%3A355","Azotobacter chroococcum (strain mcd 1)"],["NCBITaxon%3A2707774","Azotobacter chroococcum subsp. chroococcum"],["NCBITaxon%3A2528971","Azotobacter chroococcum subsp. isscasi"],["NCBITaxon%3A430797","Rubritalea spongiae"]]},{"id":"NCBITaxon:36910","l":"Clavispora","na":1,"nb":7,"a":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["NCBITaxon%3A255214","Clavispora asparagi"],["NCBITaxon%3A1519030","Clavispora carvajalis"],["NCBITaxon%3A46582","Clavispora fructus"],["NCBITaxon%3A36911","Clavispora lusitaniae"],["NCBITaxon%3A36912","Clavispora opuntiae"],["NCBITaxon%3A1212665","Clavispora phyllophila"]]},{"id":"NCBITaxon:40520","l":"Blautia obeum","na":1,"nb":7,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]],"b":[["NCBITaxon%3A40520","Blautia obeum"],["NCBITaxon%3A657314","Blautia obeum A2-162"],["NCBITaxon%3A411459","Blautia obeum ATCC 29174"],["NCBITaxon%3A1263107","Blautia obeum CAG:39"],["NCBITaxon%3A1339609","Blautia obeum TS7.1-1.1"],["NCBITaxon%3A1339610","Blautia obeum TS7.3-1.1"]]},{"id":"NCBITaxon:408","l":"Methylorubrum extorquens","na":1,"nb":7,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["NCBITaxon%3A408","Methylorubrum extorquens"],["NCBITaxon%3A272630","Methylorubrum extorquens AM1"],["NCBITaxon%3A440085","Methylorubrum extorquens CM4"],["NCBITaxon%3A661410","Methylorubrum extorquens DM4"],["NCBITaxon%3A882800","Methylorubrum extorquens DSM 13060"],["NCBITaxon%3A419610","Methylorubrum extorquens PA1"]]},{"id":"NCBITaxon:4948","l":"Torulaspora","na":1,"nb":7,"a":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["NCBITaxon%3A4950","Torulaspora delbrueckii"],["NCBITaxon%3A53488","Torulaspora franciscae"],["NCBITaxon%3A3680291","Torulaspora gathmanii"],["NCBITaxon%3A48254","Torulaspora globosa"],["NCBITaxon%3A200334","Torulaspora maleeae"],["NCBITaxon%3A1136883","Torulaspora microellipsoides"]]},{"id":"NCBITaxon:51669","l":"Tetragenococcus halophilus","na":1,"nb":7,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["NCBITaxon%3A1254","Pediococcus acidilactici"],["NCBITaxon%3A51669","Tetragenococcus halophilus"],["NCBITaxon%3A1004777","Tetragenococcus halophilus HO"],["NCBITaxon%3A945021","Tetragenococcus halophilus NBRC 12172"],["NCBITaxon%3A1513898","Tetragenococcus halophilus subsp. flandriensis"],["NCBITaxon%3A1513897","Tetragenococcus halophilus subsp. halophilus"]]},{"id":"NCBITaxon:54005","l":"Peptoniphilus harei","na":1,"nb":7,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["NCBITaxon%3A54005","Peptoniphilus harei"],["NCBITaxon%3A908338","Peptoniphilus harei ACS-146-V-Sch2b"],["NCBITaxon%3A1339588","Peptoniphilus harei TSDC10.1-1.1"],["NCBITaxon%3A1339589","Peptoniphilus harei TSDC10.1-2.1"],["NCBITaxon%3A1339590","Peptoniphilus harei TSDC17.1-1.1"],["NCBITaxon%3A1339591","Peptoniphilus harei TSDC17.1-2.1"]]},{"id":"NCBITaxon:930166","l":"Pseudomonas brassicacearum","na":1,"nb":7,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["NCBITaxon%3A29299","Nocardioides plantarum"],["NCBITaxon%3A930166","Pseudomonas brassicacearum"],["NCBITaxon%3A1050347","Pseudomonas brassicacearum 51MFCVI2.1"],["NCBITaxon%3A1403314","Pseudomonas brassicacearum PP1_210F"],["NCBITaxon%3A86264","Pseudomonas brassicacearum subsp. brassicacearum"],["NCBITaxon%3A994484","Pseudomonas brassicacearum subsp. brassicacearum NFM421"]]},{"id":"GTDB:s__Azotobacter_vinelandii","l":"","na":1,"nb":6,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["NCBITaxon%3A3083257","Azotobacter sp. NL3"],["NCBITaxon%3A354","Azotobacter vinelandii"],["NCBITaxon%3A1283330","Azotobacter vinelandii CA"],["NCBITaxon%3A1283331","Azotobacter vinelandii CA6"],["NCBITaxon%3A322710","Azotobacter vinelandii DJ"],["NCBITaxon%3A1314750","Azotobacter vinelandii NBRC 13581"]]},{"id":"GTDB:s__Brocadia_sinica","l":"","na":1,"nb":6,"a":[["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"]],"b":[["NCBITaxon%3A795830","Candidatus Brocadia sinica"],["NCBITaxon%3A1197129","Candidatus Brocadia sinica JPN1"],["NCBITaxon%3A2172549","Candidatus Brocadia sp."],["NCBITaxon%3A2164146","Candidatus Brocadia sp. AMX1"],["NCBITaxon%3A2293635","Candidatus Brocadia sp. AMX2"],["NCBITaxon%3A2026780","Planctomycetota bacterium"]]},{"id":"GTDB:s__Clostridium_B_tyrobutyricum","l":"","na":1,"nb":6,"a":[["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["NCBITaxon%3A1898204","Clostridiaceae bacterium"],["NCBITaxon%3A1946365","Clostridium sp. UBA4948"],["NCBITaxon%3A1519","Clostridium tyrobutyricum"],["NCBITaxon%3A1408889","Clostridium tyrobutyricum DIVETGP"],["NCBITaxon%3A1121342","Clostridium tyrobutyricum DSM 2637 = ATCC 25755 = JCM 11008"],["NCBITaxon%3A1212547","Clostridium tyrobutyricum UC7086"]]},{"id":"GTDB:s__Dehalococcoides_mccartyi_A","l":"","na":1,"nb":6,"a":[["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"]],"b":[["NCBITaxon%3A61435","Dehalococcoides mccartyi"],["NCBITaxon%3A1432059","Dehalococcoides mccartyi CG1"],["NCBITaxon%3A1388758","Dehalococcoides mccartyi GY50"],["NCBITaxon%3A311424","Dehalococcoides mccartyi VS"],["NCBITaxon%3A3151601","Dehalococcoides sp. THU3"],["NCBITaxon%3A1522671","Dehalococcoides sp. UCH007"]]},{"id":"GTDB:s__Paracoccus_pantotrophus","l":"","na":1,"nb":6,"a":[["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"]],"b":[["NCBITaxon%3A82367","Paracoccus pantotrophus"],["NCBITaxon%3A936051","Paracoccus pantotrophus J40"],["NCBITaxon%3A935565","Paracoccus pantotrophus J46"],["NCBITaxon%3A3110237","Paracoccus sp. APAP_BH8"],["NCBITaxon%3A3248840","Paracoccus sp. P2"],["NCBITaxon%3A3395918","Paracoccus sp. TD-10"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_I","l":"","na":1,"nb":6,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A167549","Prochlorococcus marinus str. MIT 9321"],["NCBITaxon%3A167550","Prochlorococcus marinus str. MIT 9322"],["NCBITaxon%3A167551","Prochlorococcus marinus str. MIT 9401"],["NCBITaxon%3A3082522","Prochlorococcus sp. MIT 9321"],["NCBITaxon%3A3082529","Prochlorococcus sp. MIT 9322"],["NCBITaxon%3A3082530","Prochlorococcus sp. MIT 9401"]]},{"id":"GTDB:s__Sinorhizobium_medicae","l":"","na":1,"nb":6,"a":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"]],"b":[["NCBITaxon%3A110321","Sinorhizobium medicae"],["NCBITaxon%3A1041148","Sinorhizobium medicae DI28"],["NCBITaxon%3A935558","Sinorhizobium medicae WSM1115"],["NCBITaxon%3A1041149","Sinorhizobium medicae WSM1369"],["NCBITaxon%3A1041150","Sinorhizobium medicae WSM244"],["NCBITaxon%3A366394","Sinorhizobium medicae WSM419"]]},{"id":"GTDB:s__Streptococcus_oralis_BW","l":"","na":1,"nb":6,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A2172545","Streptococcus halitosis"],["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1035190","Streptococcus oralis SK313"],["NCBITaxon%3A1077464","Streptococcus oralis subsp. tigurinus"],["NCBITaxon%3A936580","Streptococcus sp. CM6"],["NCBITaxon%3A83427","uncultured Streptococcus sp."]]},{"id":"GTDB:s__Thermoanaerobacter_pseudethanolicus","l":"","na":1,"nb":6,"a":[["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"]],"b":[["NCBITaxon%3A509193","Thermoanaerobacter brockii subsp. finnii Ako-1"],["NCBITaxon%3A496866","Thermoanaerobacter pseudethanolicus"],["NCBITaxon%3A340099","Thermoanaerobacter pseudethanolicus ATCC 33223"],["NCBITaxon%3A1755","Thermoanaerobacter sp."],["NCBITaxon%3A399726","Thermoanaerobacter sp. X514"],["NCBITaxon%3A29350","Thermoanaerobacter thermocopriae"]]},{"id":"GTDB:s__Thermotoga_maritima","l":"","na":1,"nb":6,"a":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]],"b":[["NCBITaxon%3A2336","Thermotoga maritima"],["NCBITaxon%3A243274","Thermotoga maritima MSB8"],["NCBITaxon%3A1157948","Thermotoga sp. 2812B"],["NCBITaxon%3A1348331","Thermotoga sp. A7A"],["NCBITaxon%3A1157949","Thermotoga sp. EMP"],["NCBITaxon%3A126740","Thermotoga sp. RQ2"]]},{"id":"NCBITaxon:1488","l":"Clostridium acetobutylicum","na":1,"nb":6,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["NCBITaxon%3A1488","Clostridium acetobutylicum"],["NCBITaxon%3A272562","Clostridium acetobutylicum ATCC 824"],["NCBITaxon%3A991791","Clostridium acetobutylicum DSM 1731"],["NCBITaxon%3A863638","Clostridium acetobutylicum EA 2018"],["NCBITaxon%3A1520","Clostridium beijerinckii"],["NCBITaxon%3A1506","Clostridium sp."]]},{"id":"NCBITaxon:1512","l":"[Clostridium] symbiosum","na":1,"nb":6,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["NCBITaxon%3A1506","Clostridium sp."],["NCBITaxon%3A1512","[Clostridium] symbiosum"],["NCBITaxon%3A411472","[Clostridium] symbiosum ATCC 14940"],["NCBITaxon%3A742740","[Clostridium] symbiosum WAL-14163"],["NCBITaxon%3A742741","[Clostridium] symbiosum WAL-14673"],["NCBITaxon%3A854","Fusobacterium russii"]]},{"id":"NCBITaxon:160791","l":"Rhizorhabdus wittichii","na":1,"nb":6,"a":[["Rhizorhabdus_Cupriavidus_BDE47_Degradation_SynCom.html","Rhizorhabdus-Cupriavidus BDE-47 Degradation SynCom"]],"b":[["NCBITaxon%3A160791","Rhizorhabdus wittichii"],["NCBITaxon%3A1283312","Rhizorhabdus wittichii DC-6"],["NCBITaxon%3A400971","Rhizorhabdus wittichii DP58"],["NCBITaxon%3A392499","Rhizorhabdus wittichii RW1"],["NCBITaxon%3A999380","Rhizorhabdus wittichii TTN3"],["NCBITaxon%3A999381","Rhizorhabdus wittichii TTNP3"]]},{"id":"NCBITaxon:2086","l":"Anaeroplasma","na":1,"nb":6,"a":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]],"b":[["NCBITaxon%3A2087","Anaeroplasma abactoclasticum"],["NCBITaxon%3A2088","Anaeroplasma bactoclasticum"],["NCBITaxon%3A2090","Anaeroplasma intermedium"],["NCBITaxon%3A1872523","Anaeroplasma sp."],["NCBITaxon%3A2089","Anaeroplasma varium"],["NCBITaxon%3A538969","uncultured Anaeroplasma sp."]]},{"id":"NCBITaxon:267818","l":"Lactobacillus kefiranofaciens","na":1,"nb":6,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["NCBITaxon%3A267818","Lactobacillus kefiranofaciens"],["NCBITaxon%3A190905","Lactobacillus kefiranofaciens subsp. kefiranofaciens"],["NCBITaxon%3A1423827","Lactobacillus kefiranofaciens subsp. kefiranofaciens DSM 5016 = JCM 6985"],["NCBITaxon%3A190906","Lactobacillus kefiranofaciens subsp. kefirgranum"],["NCBITaxon%3A1423828","Lactobacillus kefiranofaciens subsp. kefirgranum DSM 10550 = JCM 8572"],["NCBITaxon%3A1033837","Lactobacillus kefiranofaciens ZW3"]]},{"id":"NCBITaxon:28171","l":"Vibrio aestuarianus","na":1,"nb":6,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["NCBITaxon%3A28171","Vibrio aestuarianus"],["NCBITaxon%3A617129","Vibrio aestuarianus FF-238"],["NCBITaxon%3A1219075","Vibrio aestuarianus NBRC 15629"],["NCBITaxon%3A2725491","Vibrio aestuarianus subsp. aestuarianus"],["NCBITaxon%3A2807650","Vibrio aestuarianus subsp. cardii"],["NCBITaxon%3A1443279","Vibrio aestuarianus subsp. francensis"]]},{"id":"NCBITaxon:33039","l":"Mediterraneibacter torques","na":1,"nb":6,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A33039","Mediterraneibacter torques"],["NCBITaxon%3A411460","[Ruminococcus] torques ATCC 27756"],["NCBITaxon%3A1263108","[Ruminococcus] torques CAG:61"],["NCBITaxon%3A1422833","[Ruminococcus] torques IX-70"],["NCBITaxon%3A657313","[Ruminococcus] torques L2-14"],["NCBITaxon%3A1422834","[Ruminococcus] torques VIII-239"]]},{"id":"NCBITaxon:33905","l":"Bifidobacterium thermophilum","na":1,"nb":6,"a":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["NCBITaxon%3A650367","Bifidobacterium sp. JCM 7027"],["NCBITaxon%3A650368","Bifidobacterium sp. JCM 7028"],["NCBITaxon%3A33905","Bifidobacterium thermophilum"],["NCBITaxon%3A1437596","Bifidobacterium thermophilum DSM 20210"],["NCBITaxon%3A1410648","Bifidobacterium thermophilum DSM 20212"],["NCBITaxon%3A1254439","Bifidobacterium thermophilum RBL67"]]},{"id":"NCBITaxon:39645","l":"Mesorhizobium ciceri","na":1,"nb":6,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A39645","Mesorhizobium ciceri"],["NCBITaxon%3A278148","Mesorhizobium ciceri biovar biserrulae"],["NCBITaxon%3A765698","Mesorhizobium ciceri biovar biserrulae WSM1271"],["NCBITaxon%3A682633","Mesorhizobium ciceri ca181"],["NCBITaxon%3A1040980","Mesorhizobium ciceri CMG6"],["NCBITaxon%3A1040981","Mesorhizobium ciceri WSM4083"]]},{"id":"NCBITaxon:47880","l":"Pseudomonas fulva","na":1,"nb":6,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["NCBITaxon%3A157783","Pseudomonas cremoricolorata"],["NCBITaxon%3A1215098","Pseudomonas cremoricolorata DSM 17059 = NBRC 16634"],["NCBITaxon%3A47880","Pseudomonas fulva"],["NCBITaxon%3A743720","Pseudomonas fulva 12-X"],["NCBITaxon%3A1215102","Pseudomonas fulva NBRC 16637 = DSM 17717"],["NCBITaxon%3A306","Pseudomonas sp."]]},{"id":"GTDB:s__Flavobacterium_johnsoniae","l":"","na":1,"nb":5,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A986","Flavobacterium johnsoniae"],["NCBITaxon%3A376686","Flavobacterium johnsoniae UW101"],["NCBITaxon%3A3453866","Flavobacterium sp. 22076"],["NCBITaxon%3A3453953","Flavobacterium sp. 22659"],["NCBITaxon%3A3025667","Flavobacterium sp. KACC 22758"]]},{"id":"GTDB:s__Herbaspirillum_frisingense","l":"","na":1,"nb":5,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]],"b":[["NCBITaxon%3A92645","Herbaspirillum frisingense"],["NCBITaxon%3A864073","Herbaspirillum frisingense GSF30"],["NCBITaxon%3A2058884","Herbaspirillum sp. BH-1"],["NCBITaxon%3A2736666","Herbaspirillum sp. C7C2"],["NCBITaxon%3A1953765","Herbaspirillum sp. VT-16-41"]]},{"id":"GTDB:s__Lactobacillus_kefiranofaciens","l":"","na":1,"nb":5,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["NCBITaxon%3A267818","Lactobacillus kefiranofaciens"],["NCBITaxon%3A190905","Lactobacillus kefiranofaciens subsp. kefiranofaciens"],["NCBITaxon%3A1423827","Lactobacillus kefiranofaciens subsp. kefiranofaciens DSM 5016 = JCM 6985"],["NCBITaxon%3A190906","Lactobacillus kefiranofaciens subsp. kefirgranum"],["NCBITaxon%3A1423828","Lactobacillus kefiranofaciens subsp. kefirgranum DSM 10550 = JCM 8572"]]},{"id":"GTDB:s__Marinobacter_adhaerens","l":"","na":1,"nb":5,"a":[["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]],"b":[["NCBITaxon%3A1916082","Alteromonadaceae bacterium"],["NCBITaxon%3A1033846","Marinobacter adhaerens"],["NCBITaxon%3A225937","Marinobacter adhaerens HP15"],["NCBITaxon%3A2485141","Marinobacter sp. 3-2"],["NCBITaxon%3A1766722","Marinobacter sp. YWL01"]]},{"id":"GTDB:s__Methanosarcina_barkeri_B","l":"","na":5,"nb":1,"a":[["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["DVM_Triculture.html","DVM Tri-culture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["NCBITaxon%3A1434109","Methanosarcina barkeri str. Wiesmoor"]]},{"id":"GTDB:s__Methylobacterium_thiocyanatum","l":"","na":1,"nb":5,"a":[["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"]],"b":[["NCBITaxon%3A2021371","Methylobacteriaceae bacterium"],["NCBITaxon%3A2699470","Methylobacterium sp. ISTM1"],["NCBITaxon%3A223967","Methylorubrum populi"],["NCBITaxon%3A441620","Methylorubrum populi BJ001"],["NCBITaxon%3A47958","Methylorubrum thiocyanatum"]]},{"id":"GTDB:s__Neorhizobium_tomejilense","l":"","na":1,"nb":5,"a":[["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["NCBITaxon%3A323656","Neorhizobium galegae bv. officinalis"],["NCBITaxon%3A2093830","Neorhizobium sp. T25_13"],["NCBITaxon%3A2093831","Neorhizobium sp. T25_27"],["NCBITaxon%3A2093832","Neorhizobium sp. T7_12"],["NCBITaxon%3A2093828","Neorhizobium tomejilense"]]},{"id":"GTDB:s__Pelosinus_fermentans","l":"","na":1,"nb":5,"a":[["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"]],"b":[["NCBITaxon%3A365349","Pelosinus fermentans"],["NCBITaxon%3A1149860","Pelosinus fermentans A11"],["NCBITaxon%3A1149862","Pelosinus fermentans B4"],["NCBITaxon%3A1122947","Pelosinus fermentans DSM 17108"],["NCBITaxon%3A1235479","Pelosinus sp. HCF1"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_N","l":"","na":1,"nb":5,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A59921","Prochlorococcus marinus str. MIT 9107"],["NCBITaxon%3A167544","Prochlorococcus marinus str. MIT 9116"],["NCBITaxon%3A167545","Prochlorococcus marinus str. MIT 9123"],["NCBITaxon%3A3082533","Prochlorococcus sp. MIT 9116"],["NCBITaxon%3A3082523","Prochlorococcus sp. MIT 9123"]]},{"id":"GTDB:s__Streptococcus_dentisani","l":"","na":1,"nb":5,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A28037","Streptococcus mitis"],["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1458253","Streptococcus oralis subsp. dentisani"],["NCBITaxon%3A1297857","Streptococcus oralis subsp. dentisani 7747"],["NCBITaxon%3A563037","Streptococcus sp. M143"]]},{"id":"GTDB:s__Streptococcus_oralis","l":"","na":1,"nb":5,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A655813","Streptococcus oralis ATCC 35037"],["NCBITaxon%3A1095739","Streptococcus oralis SK10"],["NCBITaxon%3A1891914","Streptococcus oralis subsp. oralis"],["NCBITaxon%3A83427","uncultured Streptococcus sp."]]},{"id":"GTDB:s__Streptococcus_oralis_AC","l":"","na":1,"nb":5,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A28037","Streptococcus mitis"],["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1458253","Streptococcus oralis subsp. dentisani"],["NCBITaxon%3A1297534","Streptococcus oralis subsp. dentisani 7746"],["NCBITaxon%3A77133","uncultured bacterium"]]},{"id":"GTDB:s__Streptococcus_oralis_F","l":"","na":1,"nb":5,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1077464","Streptococcus oralis subsp. tigurinus"],["NCBITaxon%3A1282665","Streptococcus oralis subsp. tigurinus 1366"],["NCBITaxon%3A1333864","Streptococcus oralis subsp. tigurinus 2425"],["NCBITaxon%3A1333865","Streptococcus oralis subsp. tigurinus 2426"]]},{"id":"GTDB:s__Streptococcus_oralis_W","l":"","na":1,"nb":5,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1095738","Streptococcus oralis SK1074"],["NCBITaxon%3A1161414","Streptococcus sp. BS21"],["NCBITaxon%3A1161415","Streptococcus sp. BS29a"],["NCBITaxon%3A1105032","Streptococcus sp. BS35b"]]},{"id":"GTDB:s__Thermacetogenium_phaeum","l":"","na":1,"nb":5,"a":[["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]],"b":[["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A2044939","Clostridia bacterium"],["NCBITaxon%3A85874","Thermacetogenium phaeum"],["NCBITaxon%3A1089553","Thermacetogenium phaeum DSM 12270"],["NCBITaxon%3A2883543","Thermacetogenium sp."]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":1,"nb":5,"a":[["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["NCBITaxon%3A119219","Cupriavidus metallidurans"],["NCBITaxon%3A266264","Cupriavidus metallidurans CH34"],["NCBITaxon%3A1395123","Cupriavidus metallidurans H1130"],["NCBITaxon%3A1218106","Cupriavidus metallidurans NBRC 101272"],["NCBITaxon%3A1873897","Cupriavidus sp."]]},{"id":"NCBITaxon:13366","l":"Brettanomyces","na":1,"nb":5,"a":[["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"]],"b":[["NCBITaxon%3A37662","Brettanomyces anomalus"],["NCBITaxon%3A5007","Brettanomyces bruxellensis"],["NCBITaxon%3A13368","Brettanomyces custersianus"],["NCBITaxon%3A13370","Brettanomyces naardenensis"],["NCBITaxon%3A13502","Brettanomyces nanus"]]},{"id":"NCBITaxon:1501","l":"Clostridium pasteurianum","na":1,"nb":5,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["NCBITaxon%3A1501","Clostridium pasteurianum"],["NCBITaxon%3A86416","Clostridium pasteurianum BC1"],["NCBITaxon%3A1262449","Clostridium pasteurianum DSM 525 = ATCC 6013"],["NCBITaxon%3A1341159","Clostridium pasteurianum TK"],["NCBITaxon%3A1506","Clostridium sp."]]},{"id":"NCBITaxon:1521555","l":"Eucapsis","na":1,"nb":5,"a":[["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"]],"b":[["NCBITaxon%3A1521556","Eucapsis minor"],["NCBITaxon%3A1521638","Eucapsis minor SAG 14.99"],["NCBITaxon%3A1929276","Eucapsis sp. 019"],["NCBITaxon%3A2975497","Eucapsis sp. M64187e-7883"],["NCBITaxon%3A2094040","Eucapsis sp. UTEX LB 1519"]]},{"id":"NCBITaxon:1589","l":"Lactiplantibacillus pentosus","na":1,"nb":5,"a":[["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["NCBITaxon%3A1589","Lactiplantibacillus pentosus"],["NCBITaxon%3A1423791","Lactiplantibacillus pentosus DSM 20314"],["NCBITaxon%3A1042160","Lactiplantibacillus pentosus IG1"],["NCBITaxon%3A1136177","Lactiplantibacillus pentosus KCA1"],["NCBITaxon%3A1028490","Lactiplantibacillus pentosus MP-10"]]},{"id":"NCBITaxon:1648923","l":"Bacillus paralicheniformis","na":1,"nb":5,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"]],"b":[["NCBITaxon%3A1402","Bacillus licheniformis"],["NCBITaxon%3A3450803","Bacillus [licheniformis] CMCC 63516"],["NCBITaxon%3A1648923","Bacillus paralicheniformis"],["NCBITaxon%3A766760","Bacillus paralicheniformis ATCC 9945a"],["NCBITaxon%3A1413213","Bacillus paralicheniformis G-1"]]},{"id":"NCBITaxon:295577","l":"Chthoniobacter","na":1,"nb":5,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["NCBITaxon%3A191863","Chthoniobacter flavus"],["NCBITaxon%3A497964","Chthoniobacter flavus Ellin428"],["NCBITaxon%3A2510640","Chthoniobacter sp."],["NCBITaxon%3A1970334","Chthoniobacter sp. 12-60-6"],["NCBITaxon%3A1133324","uncultured Chthoniobacter sp."]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":1,"nb":5,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["NCBITaxon%3A354","Azotobacter vinelandii"],["NCBITaxon%3A1283330","Azotobacter vinelandii CA"],["NCBITaxon%3A1283331","Azotobacter vinelandii CA6"],["NCBITaxon%3A322710","Azotobacter vinelandii DJ"],["NCBITaxon%3A1314750","Azotobacter vinelandii NBRC 13581"]]},{"id":"NCBITaxon:545","l":"Citrobacter koseri","na":1,"nb":5,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["NCBITaxon%3A545","Citrobacter koseri"],["NCBITaxon%3A1308729","Citrobacter koseri ADL-326"],["NCBITaxon%3A1308730","Citrobacter koseri ADL-328"],["NCBITaxon%3A290338","Citrobacter koseri ATCC BAA-895"],["NCBITaxon%3A573","Klebsiella pneumoniae"]]},{"id":"NCBITaxon:5544","l":"Trichoderma harzianum","na":5,"nb":1,"a":[["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"],["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"],["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["NCBITaxon%3A5544","Trichoderma harzianum"]]},{"id":"NCBITaxon:61648","l":"Kluyvera intermedia","na":1,"nb":5,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["NCBITaxon%3A1896336","Citrobacter sp."],["NCBITaxon%3A61648","Kluyvera intermedia"],["NCBITaxon%3A1218113","Kluyvera intermedia NBRC 102594 = ATCC 33110"],["NCBITaxon%3A1255704","Kluyvera intermedia TL336_A"],["NCBITaxon%3A1539298","Treponema sp. OMZ 838"]]},{"id":"NCBITaxon:74969","l":"Ferroplasma acidiphilum","na":5,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["NCBITaxon%3A74969","Ferroplasma acidiphilum"]]},{"id":"NCBITaxon:76759","l":"Pseudomonas monteilii","na":1,"nb":5,"a":[["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"]],"b":[["NCBITaxon%3A76759","Pseudomonas monteilii"],["NCBITaxon%3A1215110","Pseudomonas monteilii NBRC 103158 = DSM 14164"],["NCBITaxon%3A1123524","Pseudomonas monteilii QM"],["NCBITaxon%3A1435044","Pseudomonas monteilii SB3078"],["NCBITaxon%3A1435058","Pseudomonas monteilii SB3101"]]},{"id":"NCBITaxon:82367","l":"Paracoccus pantotrophus","na":1,"nb":5,"a":[["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"]],"b":[["NCBITaxon%3A266","Paracoccus denitrificans"],["NCBITaxon%3A1302247","Paracoccus denitrificans JCM 21484"],["NCBITaxon%3A82367","Paracoccus pantotrophus"],["NCBITaxon%3A936051","Paracoccus pantotrophus J40"],["NCBITaxon%3A935565","Paracoccus pantotrophus J46"]]},{"id":"NCBITaxon:86664","l":"Priestia flexa","na":1,"nb":5,"a":[["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"]],"b":[["NCBITaxon%3A86664","Priestia flexa"],["NCBITaxon%3A1169142","Priestia flexa 121MFChir2"],["NCBITaxon%3A1292043","Priestia flexa 27Col1.1E"],["NCBITaxon%3A1348625","Priestia flexa NBRC 15715"],["NCBITaxon%3A1444310","Priestia flexa T6186-2"]]},{"id":"NCBITaxon:876","l":"Desulfovibrio desulfuricans","na":1,"nb":5,"a":[["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"]],"b":[["NCBITaxon%3A876","Desulfovibrio desulfuricans"],["NCBITaxon%3A525146","Desulfovibrio desulfuricans ATCC 27774"],["NCBITaxon%3A1121445","Desulfovibrio desulfuricans DSM 642"],["NCBITaxon%3A885","Desulfovibrio sp."],["NCBITaxon%3A126333","Halodesulfovibrio aestuarii"]]},{"id":"NCBITaxon:986","l":"Flavobacterium johnsoniae","na":1,"nb":5,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A2704140","Flavobacterium bizetiae"],["NCBITaxon%3A986","Flavobacterium johnsoniae"],["NCBITaxon%3A994","Flavobacterium johnsoniae subsp. aurantiacum"],["NCBITaxon%3A376686","Flavobacterium johnsoniae UW101"],["NCBITaxon%3A1337839","Flavobacterium sp. DSM 425"]]},{"id":"GTDB:s__Acidocella_facilis","l":"","na":1,"nb":4,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"]],"b":[["NCBITaxon%3A525","Acidocella facilis"],["NCBITaxon%3A1408419","Acidocella facilis ATCC 35904"],["NCBITaxon%3A1214225","Acidocella sp. MX-AZ02"],["NCBITaxon%3A2697363","Acidocella sp. MX-AZ03"]]},{"id":"GTDB:s__Caldibacillus_debilis","l":"","na":1,"nb":4,"a":[["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"]],"b":[["NCBITaxon%3A1889774","Bacillaceae bacterium"],["NCBITaxon%3A301148","Caldibacillus debilis"],["NCBITaxon%3A1121917","Caldibacillus debilis DSM 16016"],["NCBITaxon%3A1339248","Caldibacillus debilis GB1"]]},{"id":"GTDB:s__Caldicellulosiruptor_acetigenus","l":"","na":1,"nb":4,"a":[["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"]],"b":[["NCBITaxon%3A301953","Caldicellulosiruptor acetigenus"],["NCBITaxon%3A632516","Caldicellulosiruptor acetigenus 6A"],["NCBITaxon%3A1121259","Caldicellulosiruptor acetigenus DSM 7040"],["NCBITaxon%3A632335","Caldicellulosiruptor acetigenus I77R1B"]]},{"id":"GTDB:s__Caldicellulosiruptor_saccharolyticus","l":"","na":1,"nb":4,"a":[["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"]],"b":[["NCBITaxon%3A44001","Caldicellulosiruptor saccharolyticus"],["NCBITaxon%3A351627","Caldicellulosiruptor saccharolyticus DSM 8903"],["NCBITaxon%3A3019889","Caldicellulosiruptor sp. DIB 104C"],["NCBITaxon%3A1214564","Caldicellulosiruptor sp. F32"]]},{"id":"GTDB:s__Cupriavidus_necator_D","l":"","na":1,"nb":4,"a":[["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"]],"b":[["NCBITaxon%3A106590","Cupriavidus necator"],["NCBITaxon%3A381666","Cupriavidus necator H16"],["NCBITaxon%3A1218105","Cupriavidus necator NBRC 102504"],["NCBITaxon%3A1229514","Cupriavidus sp. GA3-3"]]},{"id":"GTDB:s__Hydrogenophaga_pseudoflava","l":"","na":1,"nb":4,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["NCBITaxon%3A47421","Hydrogenophaga pseudoflava"],["NCBITaxon%3A1349792","Hydrogenophaga pseudoflava NBRC 102511"],["NCBITaxon%3A1882399","Hydrogenophaga sp. H7"],["NCBITaxon%3A2184519","Hydrogenophaga sp. NH-16"]]},{"id":"GTDB:s__Hyphomicrobium_C_zavarzinii","l":"","na":1,"nb":4,"a":[["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["NCBITaxon%3A82","Hyphomicrobium sp."],["NCBITaxon%3A3019544","Hyphomicrobium sp. DMF-1"],["NCBITaxon%3A48292","Hyphomicrobium zavarzinii"],["NCBITaxon%3A1267005","Hyphomicrobium zavarzinii ATCC 27496"]]},{"id":"GTDB:s__Methylobacterium_tardum","l":"","na":1,"nb":4,"a":[["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"]],"b":[["NCBITaxon%3A1909294","Hyphomicrobiales bacterium"],["NCBITaxon%3A2817895","Methylobacterium sp. OAE515"],["NCBITaxon%3A374432","Methylobacterium tardum"],["NCBITaxon%3A157278","uncultured Methylobacterium sp."]]},{"id":"GTDB:s__Nostoc_muscorum_A","l":"","na":1,"nb":4,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["NCBITaxon%3A2692907","Desmonostoc muscorum FACHB-395"],["NCBITaxon%3A76335","Nostoc sp. ATCC 53789"],["NCBITaxon%3A2576903","Nostoc sp. C057"],["NCBITaxon%3A3349876","Nostoc sp. C110"]]},{"id":"GTDB:s__Paenibacillus_G_mucilaginosus","l":"","na":1,"nb":4,"a":[["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["NCBITaxon%3A61624","Paenibacillus mucilaginosus"],["NCBITaxon%3A1116391","Paenibacillus mucilaginosus 3016"],["NCBITaxon%3A997761","Paenibacillus mucilaginosus K02"],["NCBITaxon%3A1036673","Paenibacillus mucilaginosus KNP414"]]},{"id":"GTDB:s__Paraburkholderia_caribensis","l":"","na":1,"nb":4,"a":[["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"]],"b":[["NCBITaxon%3A1561197","Burkholderia sp. E7m48"],["NCBITaxon%3A75105","Paraburkholderia caribensis"],["NCBITaxon%3A1323664","Paraburkholderia caribensis MBA4"],["NCBITaxon%3A2831520","Paraburkholderia sp. XV"]]},{"id":"GTDB:s__Paracoccus_denitrificans","l":"","na":1,"nb":4,"a":[["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"]],"b":[["NCBITaxon%3A266","Paracoccus denitrificans"],["NCBITaxon%3A318586","Paracoccus denitrificans PD1222"],["NCBITaxon%3A267","Paracoccus sp. (in: a-proteobacteria)"],["NCBITaxon%3A3050636","Paracoccus sp. SSJ"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_E","l":"","na":1,"nb":4,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A167546","Prochlorococcus marinus str. MIT 9301"],["NCBITaxon%3A2162170","Prochlorococcus sp. AG-355-P15"],["NCBITaxon%3A3082524","Prochlorococcus sp. MIT 1205"],["NCBITaxon%3A3082525","Prochlorococcus sp. MIT 1304"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_V","l":"","na":1,"nb":4,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A1219","Prochlorococcus marinus"],["NCBITaxon%3A2774503","Prochlorococcus marinus CUG1430"],["NCBITaxon%3A2053473","Prochlorococcus marinus str. MU1411"],["NCBITaxon%3A2716483","Prochlorococcus marinus XMU1411"]]},{"id":"GTDB:s__Streptococcus_mitis","l":"","na":1,"nb":4,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A28037","Streptococcus mitis"],["NCBITaxon%3A1415766","Streptococcus mitis 27/7"],["NCBITaxon%3A246201","Streptococcus mitis NCTC 12261"],["NCBITaxon%3A1403937","Streptococcus sp. DORA_10"]]},{"id":"GTDB:s__Streptococcus_mitis_N","l":"","na":1,"nb":4,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A28037","Streptococcus mitis"],["NCBITaxon%3A1035187","Streptococcus mitis SK569"],["NCBITaxon%3A1095735","Streptococcus mitis SK616"],["NCBITaxon%3A257758","Streptococcus pseudopneumoniae"]]},{"id":"GTDB:s__Streptococcus_oralis_E","l":"","na":1,"nb":4,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1077464","Streptococcus oralis subsp. tigurinus"],["NCBITaxon%3A1282664","Streptococcus oralis subsp. tigurinus AZ_3a"],["NCBITaxon%3A83427","uncultured Streptococcus sp."]]},{"id":"GTDB:s__Streptococcus_oralis_T","l":"","na":1,"nb":4,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1005704","Streptococcus oralis SK255"],["NCBITaxon%3A1077464","Streptococcus oralis subsp. tigurinus"],["NCBITaxon%3A864570","Streptococcus sp. oral taxon 071 str. 73H25AP"]]},{"id":"GTDB:s__Streptococcus_salivarius","l":"","na":1,"nb":4,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["NCBITaxon%3A1335","Streptococcus equinus"],["NCBITaxon%3A1304","Streptococcus salivarius"],["NCBITaxon%3A1263109","Streptococcus salivarius CAG:79"],["NCBITaxon%3A1581080","Streptococcus sp. HMSC10E12"]]},{"id":"GTDB:s__Syntrophus_aciditrophicus","l":"","na":1,"nb":4,"a":[["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"]],"b":[["NCBITaxon%3A1961443","Syntrophaceae bacterium UBA5726"],["NCBITaxon%3A316277","Syntrophus aciditrophicus"],["NCBITaxon%3A56780","Syntrophus aciditrophicus SB"],["NCBITaxon%3A1823758","Syntrophus sp. PtaB.Bin075"]]},{"id":"GTDB:s__Thermoanaerobacterium_thermosaccharolyticum","l":"","na":1,"nb":4,"a":[["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]],"b":[["NCBITaxon%3A1517","Thermoanaerobacterium thermosaccharolyticum"],["NCBITaxon%3A580327","Thermoanaerobacterium thermosaccharolyticum DSM 571"],["NCBITaxon%3A698948","Thermoanaerobacterium thermosaccharolyticum M0795"],["NCBITaxon%3A937254","Thermohydrogenium kirishiense"]]},{"id":"GTDB:s__Variovorax_paradoxus","l":"","na":1,"nb":4,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["NCBITaxon%3A34073","Variovorax paradoxus"],["NCBITaxon%3A1150395","Variovorax paradoxus 4MFCol3.1"],["NCBITaxon%3A1321610","Variovorax paradoxus NBRC 15149"],["NCBITaxon%3A3065953","Variovorax sp. V116"]]},{"id":"GTDB:s__Variovorax_paradoxus_C","l":"","na":1,"nb":4,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["NCBITaxon%3A436515","Variovorax boronicumulans"],["NCBITaxon%3A595537","Variovorax paradoxus EPS"],["NCBITaxon%3A3042309","Variovorax sp. W1I1"],["NCBITaxon%3A3042290","Variovorax sp. W2I14"]]},{"id":"NCBITaxon:1183412","l":"Agrobacterium deltae","na":1,"nb":4,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["NCBITaxon%3A1183412","Agrobacterium deltae"],["NCBITaxon%3A1183425","Agrobacterium deltaense NCPPB 1641"],["NCBITaxon%3A1183426","Agrobacterium deltaense RV3"],["NCBITaxon%3A1183427","Agrobacterium deltaense Zutra 3/1"]]},{"id":"NCBITaxon:1249","l":"Weissella paramesenteroides","na":1,"nb":4,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["NCBITaxon%3A1930076","Leuconostoc sp."],["NCBITaxon%3A46256","Weissella hellenica"],["NCBITaxon%3A1249","Weissella paramesenteroides"],["NCBITaxon%3A585506","Weissella paramesenteroides ATCC 33313"]]},{"id":"NCBITaxon:132919","l":"Rhodococcus jostii","na":1,"nb":4,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["NCBITaxon%3A1850366","Paenibacillus rhizophilus"],["NCBITaxon%3A132919","Rhodococcus jostii"],["NCBITaxon%3A1219017","Rhodococcus jostii NBRC 16295"],["NCBITaxon%3A101510","Rhodococcus jostii RHA1"]]},{"id":"NCBITaxon:1517","l":"Thermoanaerobacterium thermosaccharolyticum","na":1,"nb":4,"a":[["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]],"b":[["NCBITaxon%3A1517","Thermoanaerobacterium thermosaccharolyticum"],["NCBITaxon%3A698949","Thermoanaerobacterium thermosaccharolyticum 33"],["NCBITaxon%3A580327","Thermoanaerobacterium thermosaccharolyticum DSM 571"],["NCBITaxon%3A698948","Thermoanaerobacterium thermosaccharolyticum M0795"]]},{"id":"NCBITaxon:1519","l":"Clostridium tyrobutyricum","na":1,"nb":4,"a":[["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["NCBITaxon%3A1519","Clostridium tyrobutyricum"],["NCBITaxon%3A1408889","Clostridium tyrobutyricum DIVETGP"],["NCBITaxon%3A1121342","Clostridium tyrobutyricum DSM 2637 = ATCC 25755 = JCM 11008"],["NCBITaxon%3A1212547","Clostridium tyrobutyricum UC7086"]]},{"id":"NCBITaxon:1673","l":"Rhizobium viscosum","na":1,"nb":4,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A1281486","Lactococcus formosensis"],["NCBITaxon%3A1850438","Lactococcus formosensis subsp. bovis"],["NCBITaxon%3A1673","Rhizobium viscosum"],["NCBITaxon%3A83428","uncultured Bacillus sp."]]},{"id":"NCBITaxon:172042","l":"Rothia aeria","na":1,"nb":4,"a":[["FourSpecies_Aerobic_Lung_Microbiome_Model.html","Four-Species Aerobic Lung Microbiome Model"]],"b":[["NCBITaxon%3A172042","Rothia aeria"],["NCBITaxon%3A888019","Rothia aeria F0184"],["NCBITaxon%3A1125724","Rothia aeria F0474"],["NCBITaxon%3A2047","Rothia dentocariosa"]]},{"id":"NCBITaxon:192","l":"Azospirillum brasilense","na":1,"nb":4,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"]],"b":[["NCBITaxon%3A1064539","Azospirillum baldaniorum"],["NCBITaxon%3A192","Azospirillum brasilense"],["NCBITaxon%3A1117321","Azospirillum brasilense CBG497"],["NCBITaxon%3A1262469","Azospirillum brasilense FP2"]]},{"id":"NCBITaxon:252970","l":"Paraburkholderia phenoliruptrix","na":1,"nb":4,"a":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]],"b":[["NCBITaxon%3A252970","Paraburkholderia phenoliruptrix"],["NCBITaxon%3A1337996","Paraburkholderia phenoliruptrix AC1100"],["NCBITaxon%3A1229205","Paraburkholderia phenoliruptrix BR3459a"],["NCBITaxon%3A1926495","Paraburkholderia sp."]]},{"id":"NCBITaxon:258","l":"Sphingobacterium spiritivorum","na":1,"nb":4,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["NCBITaxon%3A649196","Sphingobacterium hotanense"],["NCBITaxon%3A258","Sphingobacterium spiritivorum"],["NCBITaxon%3A525372","Sphingobacterium spiritivorum ATCC 33300"],["NCBITaxon%3A525373","Sphingobacterium spiritivorum ATCC 33861"]]},{"id":"NCBITaxon:2597222","l":"Candidatus Acidulidesulfobacterium","na":1,"nb":4,"a":[["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["NCBITaxon%3A2597224","Candidatus Acidulidesulfobacterium acidiphilum"],["NCBITaxon%3A2597223","Candidatus Acidulidesulfobacterium ferriphilum"],["NCBITaxon%3A2940279","Candidatus Acidulodesulfobacterium sp."],["NCBITaxon%3A3395470","Candidatus Acidulodesulfobacterium sp. H_13"]]},{"id":"NCBITaxon:29442","l":"Pseudomonas tolaasii","na":1,"nb":4,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["NCBITaxon%3A29442","Pseudomonas tolaasii"],["NCBITaxon%3A1161101","Pseudomonas tolaasii 6264"],["NCBITaxon%3A564423","Pseudomonas tolaasii NCPPB 2192"],["NCBITaxon%3A1030145","Pseudomonas tolaasii PMS117"]]},{"id":"NCBITaxon:33010","l":"Cutibacterium avidum","na":1,"nb":4,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["NCBITaxon%3A33010","Cutibacterium avidum"],["NCBITaxon%3A1170318","Cutibacterium avidum 44067"],["NCBITaxon%3A997355","Cutibacterium avidum ATCC 25577"],["NCBITaxon%3A1292372","Cutibacterium avidum TM16"]]},{"id":"NCBITaxon:33011","l":"Cutibacterium granulosum","na":1,"nb":4,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["NCBITaxon%3A33011","Cutibacterium granulosum"],["NCBITaxon%3A1160719","Cutibacterium granulosum DSM 20700"],["NCBITaxon%3A553200","Cutibacterium granulosum JCVIHMP029"],["NCBITaxon%3A1292373","Cutibacterium granulosum TM11"]]},{"id":"NCBITaxon:380021","l":"Pseudomonas protegens","na":1,"nb":4,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["NCBITaxon%3A380021","Pseudomonas protegens"],["NCBITaxon%3A1420599","Pseudomonas protegens Cab57"],["NCBITaxon%3A1124983","Pseudomonas protegens CHA0"],["NCBITaxon%3A220664","Pseudomonas protegens Pf-5"]]},{"id":"NCBITaxon:5480","l":"Lodderomyces parapsilosis","na":1,"nb":4,"a":[["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"]],"b":[["NCBITaxon%3A48076","Marinobacterium iners"],["NCBITaxon%3A5480","Lodderomyces parapsilosis"],["NCBITaxon%3A1231521","Lodderomyces parapsilosis CAB50-2638"],["NCBITaxon%3A578454","Lodderomyces parapsilosis CDC317"]]},{"id":"NCBITaxon:59814","l":"Pantoea dispersa","na":1,"nb":4,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["NCBITaxon%3A59814","Pantoea dispersa"],["NCBITaxon%3A1440057","Pantoea dispersa 625"],["NCBITaxon%3A1358411","Pantoea dispersa EGD-AAK13"],["NCBITaxon%3A69393","Pantoea sp."]]},{"id":"NCBITaxon:61624","l":"Paenibacillus mucilaginosus","na":1,"nb":4,"a":[["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["NCBITaxon%3A61624","Paenibacillus mucilaginosus"],["NCBITaxon%3A1116391","Paenibacillus mucilaginosus 3016"],["NCBITaxon%3A997761","Paenibacillus mucilaginosus K02"],["NCBITaxon%3A1036673","Paenibacillus mucilaginosus KNP414"]]},{"id":"NCBITaxon:72360","l":"Bacillus mojavensis","na":1,"nb":4,"a":[["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["NCBITaxon%3A260554","Bacillus halotolerans"],["NCBITaxon%3A72360","Bacillus mojavensis"],["NCBITaxon%3A1051501","Bacillus mojavensis RO-H-1 = KCTC 3706"],["NCBITaxon%3A1329377","Bacillus mojavensis RRC 101"]]},{"id":"NCBITaxon:75105","l":"Paraburkholderia caribensis","na":1,"nb":4,"a":[["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"]],"b":[["NCBITaxon%3A75105","Paraburkholderia caribensis"],["NCBITaxon%3A1160706","Paraburkholderia caribensis HM582870"],["NCBITaxon%3A1323664","Paraburkholderia caribensis MBA4"],["NCBITaxon%3A1338010","Paraburkholderia caribensis XV"]]},{"id":"NCBITaxon:971","l":"Pseudoselenomonas ruminantium","na":1,"nb":4,"a":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"]],"b":[["NCBITaxon%3A971","Pseudoselenomonas ruminantium"],["NCBITaxon%3A1392501","Selenomonas ruminantium AC2024"],["NCBITaxon%3A114196","Selenomonas ruminantium subsp. ruminantium"],["NCBITaxon%3A1280706","Selenomonas ruminantium subsp. ruminantium ATCC 12561"]]},{"id":"NCBITaxon:97393","l":"Ferroplasma acidarmanus","na":1,"nb":4,"a":[["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"]],"b":[["NCBITaxon%3A261389","environmental samples"],["NCBITaxon%3A97393","Ferroplasma acidarmanus"],["NCBITaxon%3A333146","Ferroplasma acidarmanus Fer1"],["NCBITaxon%3A261390","Ferroplasma acidarmanus Type I"]]},{"id":"GTDB:s__Acetobacter_fabarum","l":"","na":1,"nb":3,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["NCBITaxon%3A483199","Acetobacter fabarum"],["NCBITaxon%3A1307906","Acetobacter fabarum DSM 19596"],["NCBITaxon%3A1670660","Acetobacter sp. DsW_54"]]},{"id":"GTDB:s__Anabaena_cylindrica","l":"","na":1,"nb":3,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["NCBITaxon%3A2692879","Anabaena cylindrica FACHB-243"],["NCBITaxon%3A272123","Anabaena cylindrica PCC 7122"],["NCBITaxon%3A1296340","Anabaena sp. PCC 7938"]]},{"id":"GTDB:s__Anaeromyxobacter_dehalogenans","l":"","na":1,"nb":3,"a":[["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"]],"b":[["NCBITaxon%3A161493","Anaeromyxobacter dehalogenans"],["NCBITaxon%3A455488","Anaeromyxobacter dehalogenans 2CP-1"],["NCBITaxon%3A447217","Anaeromyxobacter sp. K"]]},{"id":"GTDB:s__Azospirillum_brasilense","l":"","na":1,"nb":3,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"]],"b":[["NCBITaxon%3A192","Azospirillum brasilense"],["NCBITaxon%3A1262469","Azospirillum brasilense FP2"],["NCBITaxon%3A1685931","Azospirillum sp. Sp 7"]]},{"id":"GTDB:s__Azotobacter_chroococcum","l":"","na":1,"nb":3,"a":[["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"]],"b":[["NCBITaxon%3A353","Azotobacter chroococcum"],["NCBITaxon%3A1328314","Azotobacter chroococcum NCIMB 8003"],["NCBITaxon%3A2528971","Azotobacter chroococcum subsp. isscasi"]]},{"id":"GTDB:s__Blautia_A_hydrogenotrophica","l":"","na":1,"nb":3,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A53443","Blautia hydrogenotrophica"],["NCBITaxon%3A1263061","Blautia hydrogenotrophica CAG:147"],["NCBITaxon%3A476272","Blautia hydrogenotrophica DSM 10507"]]},{"id":"GTDB:s__Clostridium_K_cellulovorans","l":"","na":3,"nb":1,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"]],"b":[["NCBITaxon%3A573061","Clostridium cellulovorans 743B"]]},{"id":"GTDB:s__Desulfovibrio_piger","l":"","na":1,"nb":3,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A901","Desulfovibrio piger"],["NCBITaxon%3A411464","Desulfovibrio piger ATCC 29098"],["NCBITaxon%3A885","Desulfovibrio sp."]]},{"id":"GTDB:s__Desulfovibrio_piger_A","l":"","na":1,"nb":3,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A901","Desulfovibrio piger"],["NCBITaxon%3A167968","uncultured Desulfovibrio sp."],["NCBITaxon%3A172733","uncultured Eubacteriales bacterium"]]},{"id":"GTDB:s__Dinoroseobacter_shibae","l":"","na":1,"nb":3,"a":[["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"]],"b":[["NCBITaxon%3A215813","Dinoroseobacter shibae"],["NCBITaxon%3A398580","Dinoroseobacter shibae DFL 12 = DSM 16493"],["NCBITaxon%3A3028384","Dinoroseobacter sp. PD6"]]},{"id":"GTDB:s__Ferrimicrobium_acidiphilum","l":"","na":1,"nb":3,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"]],"b":[["NCBITaxon%3A1883427","Actinomycetes bacterium"],["NCBITaxon%3A121039","Ferrimicrobium acidiphilum"],["NCBITaxon%3A1121877","Ferrimicrobium acidiphilum DSM 19497"]]},{"id":"GTDB:s__Hungateiclostridium_straminisolvens","l":"","na":1,"nb":3,"a":[["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"]],"b":[["NCBITaxon%3A253314","Acetivibrio straminisolvens"],["NCBITaxon%3A1294263","Acetivibrio straminisolvens JCM 21531"],["NCBITaxon%3A1950858","Clostridiales bacterium UBA3578"]]},{"id":"GTDB:s__Lactiplantibacillus_paraplantarum","l":"","na":1,"nb":3,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"]],"b":[["NCBITaxon%3A60520","Lactiplantibacillus paraplantarum"],["NCBITaxon%3A1423789","Lactiplantibacillus paraplantarum DSM 10667"],["NCBITaxon%3A1590","Lactiplantibacillus plantarum"]]},{"id":"GTDB:s__Methanocrinis_harundinaceus","l":"","na":1,"nb":3,"a":[["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"]],"b":[["NCBITaxon%3A1674799","Methanosarcinales archaeon Methan_02"],["NCBITaxon%3A301375","Methanothrix harundinacea"],["NCBITaxon%3A1110509","Methanothrix harundinacea 6Ac"]]},{"id":"GTDB:s__Methanosarcina_barkeri_A","l":"","na":3,"nb":1,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["NCBITaxon%3A1434107","Methanosarcina barkeri 3"]]},{"id":"GTDB:s__Nostoc_muscorum","l":"","na":1,"nb":3,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["NCBITaxon%3A2756293","Desmonostoc muscorum CCALA 125"],["NCBITaxon%3A1828758","Desmonostoc muscorum LEGE 12446"],["NCBITaxon%3A2692844","Nostoc sp. FACHB-973"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_AB","l":"","na":1,"nb":3,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2053470","Prochlorococcus marinus str. MU1405"],["NCBITaxon%3A2053471","Prochlorococcus marinus str. MU1406"],["NCBITaxon%3A2716480","Prochlorococcus marinus XMU1405"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_AF","l":"","na":1,"nb":3,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A1219","Prochlorococcus marinus"],["NCBITaxon%3A2053474","Prochlorococcus marinus str. MU1412"],["NCBITaxon%3A2716484","Prochlorococcus marinus XMU1412"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_B","l":"","na":1,"nb":3,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A167548","Prochlorococcus marinus str. MIT 9314"],["NCBITaxon%3A3082534","Prochlorococcus sp. MIT 9314"],["NCBITaxon%3A159733","uncultured Prochlorococcus sp."]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_D","l":"","na":1,"nb":3,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A59926","Prochlorococcus marinus str. SB"],["NCBITaxon%3A2162156","Prochlorococcus sp. AG-347-I22"],["NCBITaxon%3A2162292","Prochlorococcus sp. AG-418-P13"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_J","l":"","na":1,"nb":3,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A59925","Prochlorococcus marinus str. GP2"],["NCBITaxon%3A167554","Prochlorococcus marinus str. SS51"],["NCBITaxon%3A3082550","Synechococcus sp. MIT S9506"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_L","l":"","na":1,"nb":3,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A167547","Prochlorococcus marinus str. MIT 9311"],["NCBITaxon%3A74546","Prochlorococcus marinus str. MIT 9312"],["NCBITaxon%3A3082528","Prochlorococcus sp. MIT 9311"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_M","l":"","na":1,"nb":3,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A74545","Prochlorococcus marinus str. MIT 9302"],["NCBITaxon%3A2162278","Prochlorococcus sp. AG-412-A14"],["NCBITaxon%3A159733","uncultured Prochlorococcus sp."]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_Q","l":"","na":1,"nb":3,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A1041938","Prochlorococcus marinus bv. HNLC1"],["NCBITaxon%3A1203261","Prochlorococcus sp. W2"],["NCBITaxon%3A159733","uncultured Prochlorococcus sp."]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_X","l":"","na":1,"nb":3,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2774505","Prochlorococcus marinus CUG1432"],["NCBITaxon%3A2053469","Prochlorococcus marinus str. MU1404"],["NCBITaxon%3A2716479","Prochlorococcus marinus XMU1404"]]},{"id":"GTDB:s__Prochlorococcus_A_sp003212755","l":"","na":1,"nb":3,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2716487","Prochlorococcus marinus CUG1416"],["NCBITaxon%3A2053477","Prochlorococcus marinus str. MU1416"],["NCBITaxon%3A2162308","Prochlorococcus sp. AG-436-A04"]]},{"id":"GTDB:s__Ruegeria_B_pomeroyi","l":"","na":1,"nb":3,"a":[["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["NCBITaxon%3A89184","Ruegeria pomeroyi"],["NCBITaxon%3A246200","Ruegeria pomeroyi DSS-3"],["NCBITaxon%3A1879320","Ruegeria sp."]]},{"id":"GTDB:s__Selenomonas_A_ruminantium_B","l":"","na":1,"nb":3,"a":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"]],"b":[["NCBITaxon%3A971","Pseudoselenomonas ruminantium"],["NCBITaxon%3A1392501","Selenomonas ruminantium AC2024"],["NCBITaxon%3A1408313","Selenomonas sp. FC4001"]]},{"id":"GTDB:s__Selenomonas_sp905372355","l":"","na":1,"nb":3,"a":[["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"]],"b":[["NCBITaxon%3A936381","Selenomonas sp. CM52"],["NCBITaxon%3A69823","Selenomonas sputigena"],["NCBITaxon%3A159275","uncultured Selenomonas sp."]]},{"id":"GTDB:s__Streptococcus_oralis_BC","l":"","na":1,"nb":3,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A888049","Streptococcus oralis ATCC 49296"],["NCBITaxon%3A83427","uncultured Streptococcus sp."]]},{"id":"GTDB:s__Stutzerimonas_songnenensis","l":"","na":1,"nb":3,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]],"b":[["NCBITaxon%3A1914538","Pseudomonadaceae bacterium"],["NCBITaxon%3A1176259","Pseudomonas songnenensis"],["NCBITaxon%3A316","Stutzerimonas stutzeri"]]},{"id":"GTDB:s__Sulfobacillus_benefaciens","l":"","na":1,"nb":3,"a":[["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"]],"b":[["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A453960","Sulfobacillus benefaciens"],["NCBITaxon%3A33949","Sulfobacillus sp."]]},{"id":"GTDB:s__Thiothrix_nivea","l":"","na":1,"nb":3,"a":[["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"]],"b":[["NCBITaxon%3A1031","Thiothrix nivea"],["NCBITaxon%3A870187","Thiothrix nivea DSM 5205"],["NCBITaxon%3A1032","Thiothrix sp."]]},{"id":"NCBITaxon:106592","l":"Ensifer adhaerens","na":1,"nb":3,"a":[["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["NCBITaxon%3A106592","Ensifer adhaerens"],["NCBITaxon%3A1416753","Ensifer adhaerens OV14"],["NCBITaxon%3A1113910","Ensifer sp. NBRC 102459"]]},{"id":"NCBITaxon:133926","l":"Olsenella uli","na":1,"nb":3,"a":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["NCBITaxon%3A133926","Olsenella uli"],["NCBITaxon%3A633147","Olsenella uli DSM 7084"],["NCBITaxon%3A1190621","Olsenella uli MSTE5"]]},{"id":"NCBITaxon:13690","l":"Sphingobium yanoikuyae","na":1,"nb":3,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["NCBITaxon%3A13690","Sphingobium yanoikuyae"],["NCBITaxon%3A883163","Sphingobium yanoikuyae ATCC 51230"],["NCBITaxon%3A1074493","Sphingobium yanoikuyae XLDN2-5"]]},{"id":"NCBITaxon:1399","l":"Cytobacillus firmus","na":1,"nb":3,"a":[["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"]],"b":[["NCBITaxon%3A1399","Cytobacillus firmus"],["NCBITaxon%3A1307436","Cytobacillus firmus DS1"],["NCBITaxon%3A1314753","Cytobacillus firmus NBRC 15306"]]},{"id":"NCBITaxon:161493","l":"Anaeromyxobacter dehalogenans","na":1,"nb":3,"a":[["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"]],"b":[["NCBITaxon%3A161493","Anaeromyxobacter dehalogenans"],["NCBITaxon%3A455488","Anaeromyxobacter dehalogenans 2CP-1"],["NCBITaxon%3A290397","Anaeromyxobacter dehalogenans 2CP-C"]]},{"id":"NCBITaxon:165179","l":"Segatella copri","na":1,"nb":3,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["NCBITaxon%3A165179","Segatella copri"],["NCBITaxon%3A1263102","Segatella copri CAG:164"],["NCBITaxon%3A537011","Segatella copri DSM 18205"]]},{"id":"NCBITaxon:1667","l":"Arthrobacter sp.","na":3,"nb":1,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["NCBITaxon%3A1667","Arthrobacter sp."]]},{"id":"NCBITaxon:1785","l":"Mycobacterium sp.","na":1,"nb":3,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]],"b":[["NCBITaxon%3A722731","Mycobacterium shigaense"],["NCBITaxon%3A1785","Mycobacterium sp."],["NCBITaxon%3A1792835","Mycolicibacter icosiumassiliensis"]]},{"id":"NCBITaxon:1817801","l":"Candidatus Eiseniibacteriota","na":1,"nb":3,"a":[["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"]],"b":[["NCBITaxon%3A1817856","Candidatus Eisenbacteria bacterium RBG_16_71_46"],["NCBITaxon%3A1817857","Candidatus Eisenbacteria bacterium RBG_19FT_COMBO_70_11"],["NCBITaxon%3A2212470","Candidatus Eiseniibacteriota bacterium"]]},{"id":"NCBITaxon:1920","l":"Streptomyces nigrescens","na":1,"nb":3,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A1128671","Microvirga arabica"],["NCBITaxon%3A249582","Streptomyces libani subsp. rufus"],["NCBITaxon%3A1920","Streptomyces nigrescens"]]},{"id":"NCBITaxon:198620","l":"Pseudomonas koreensis","na":3,"nb":1,"a":[["FourSpecies_Aerobic_Lung_Microbiome_Model.html","Four-Species Aerobic Lung Microbiome Model"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A198620","Pseudomonas koreensis"]]},{"id":"NCBITaxon:2034504","l":"Sulfurivermis","na":1,"nb":3,"a":[["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"]],"b":[["NCBITaxon%3A1972068","Sulfurivermis fontis"],["NCBITaxon%3A2034505","Sulfurivermis sp."],["NCBITaxon%3A2034507","uncultured Sulfurivermis sp."]]},{"id":"NCBITaxon:216778","l":"Stenotrophomonas rhizophila","na":1,"nb":3,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"]],"b":[["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A216778","Stenotrophomonas rhizophila"],["NCBITaxon%3A1255680","Stenotrophomonas rhizophila PCA13"]]},{"id":"NCBITaxon:2487276","l":"Bacillus cabrialesii","na":1,"nb":3,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["NCBITaxon%3A2487276","Bacillus cabrialesii"],["NCBITaxon%3A3045387","Bacillus cabrialesii subsp. cabrialesii"],["NCBITaxon%3A2944916","Bacillus cabrialesii subsp. tritici"]]},{"id":"NCBITaxon:250","l":"Chryseobacterium gleum","na":1,"nb":3,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["NCBITaxon%3A250","Chryseobacterium gleum"],["NCBITaxon%3A525257","Chryseobacterium gleum ATCC 35910"],["NCBITaxon%3A1871047","Chryseobacterium sp."]]},{"id":"NCBITaxon:256701","l":"Glutamicibacter arilaitensis","na":1,"nb":3,"a":[["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"]],"b":[["NCBITaxon%3A256701","Glutamicibacter arilaitensis"],["NCBITaxon%3A1255604","Glutamicibacter arilaitensis 3M03"],["NCBITaxon%3A861360","Glutamicibacter arilaitensis Re117"]]},{"id":"NCBITaxon:273371","l":"Lodderomyces orthopsilosis","na":1,"nb":3,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["NCBITaxon%3A273371","Lodderomyces orthopsilosis"],["NCBITaxon%3A1213353","Lodderomyces orthopsilosis AY2"],["NCBITaxon%3A1136231","Lodderomyces orthopsilosis Co 90-125"]]},{"id":"NCBITaxon:301148","l":"Caldibacillus debilis","na":1,"nb":3,"a":[["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"]],"b":[["NCBITaxon%3A301148","Caldibacillus debilis"],["NCBITaxon%3A1121917","Caldibacillus debilis DSM 16016"],["NCBITaxon%3A1339248","Caldibacillus debilis GB1"]]},{"id":"NCBITaxon:301375","l":"Methanothrix harundinacea","na":1,"nb":3,"a":[["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"]],"b":[["NCBITaxon%3A301375","Methanothrix harundinacea"],["NCBITaxon%3A1110509","Methanothrix harundinacea 6Ac"],["NCBITaxon%3A1127228","Methanothrix harundinacea 8Ac"]]},{"id":"NCBITaxon:3041","l":"Chlorophyta","na":3,"nb":1,"a":[["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"]],"b":[["NCBITaxon%3A2812611","Micromonas sp."]]},{"id":"NCBITaxon:3386252","l":"Candidatus Methanogaster","na":1,"nb":3,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"]],"b":[["NCBITaxon%3A3386292","Candidatus Methanogaster sp."],["NCBITaxon%3A2759911","Candidatus Methanogaster sp. ANME-2c ERB4"],["NCBITaxon%3A1915703","Candidatus Methanogaster sp. UBA203"]]},{"id":"NCBITaxon:44752","l":"Rhodococcus wratislaviensis","na":1,"nb":3,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["NCBITaxon%3A44752","Rhodococcus wratislaviensis"],["NCBITaxon%3A1195242","Rhodococcus wratislaviensis IFP 2016"],["NCBITaxon%3A1219028","Rhodococcus wratislaviensis NBRC 100605"]]},{"id":"NCBITaxon:455252","l":"Methylonatrum","na":1,"nb":3,"a":[["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]],"b":[["NCBITaxon%3A455253","Methylonatrum kenyense"],["NCBITaxon%3A1500898","Methylonatrum sp. JGI ETNP_125m_186_B11"],["NCBITaxon%3A546220","uncultured Methylonatrum sp."]]},{"id":"NCBITaxon:460519","l":"Komagataella phaffii","na":1,"nb":3,"a":[["Komagataella_Ecoli_Coinducible_Biosynthesis_Coculture.html","Komagataella-E. coli Co-inducible Biosynthesis Coculture"]],"b":[["NCBITaxon%3A460519","Komagataella phaffii"],["NCBITaxon%3A981350","Komagataella phaffii CBS 7435"],["NCBITaxon%3A644223","Komagataella phaffii GS115"]]},{"id":"NCBITaxon:470150","l":"Pseudomonas taiwanensis","na":1,"nb":3,"a":[["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["NCBITaxon%3A470150","Pseudomonas taiwanensis"],["NCBITaxon%3A1292030","Pseudomonas taiwanensis DSM 21245"],["NCBITaxon%3A1388762","Pseudomonas taiwanensis SJ9"]]},{"id":"NCBITaxon:47920","l":"Acidovorax delafieldii","na":1,"nb":3,"a":[["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["NCBITaxon%3A47920","Acidovorax delafieldii"],["NCBITaxon%3A573060","Acidovorax delafieldii 2AN"],["NCBITaxon%3A80878","Acidovorax temperans"]]},{"id":"NCBITaxon:48292","l":"Hyphomicrobium zavarzinii","na":1,"nb":3,"a":[["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["NCBITaxon%3A48292","Hyphomicrobium zavarzinii"],["NCBITaxon%3A1267005","Hyphomicrobium zavarzinii ATCC 27496"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:483","l":"Neisseria cinerea","na":1,"nb":3,"a":[["FourSpecies_Aerobic_Lung_Microbiome_Model.html","Four-Species Aerobic Lung Microbiome Model"]],"b":[["NCBITaxon%3A483","Neisseria cinerea"],["NCBITaxon%3A546262","Neisseria cinerea ATCC 14685"],["NCBITaxon%3A192066","Neisseria sp."]]},{"id":"NCBITaxon:53443","l":"Blautia hydrogenotrophica","na":1,"nb":3,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A53443","Blautia hydrogenotrophica"],["NCBITaxon%3A1263061","Blautia hydrogenotrophica CAG:147"],["NCBITaxon%3A476272","Blautia hydrogenotrophica DSM 10507"]]},{"id":"NCBITaxon:53633","l":"Sulfobacillus acidophilus","na":1,"nb":3,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["NCBITaxon%3A53633","Sulfobacillus acidophilus"],["NCBITaxon%3A679936","Sulfobacillus acidophilus DSM 10332"],["NCBITaxon%3A1051632","Sulfobacillus acidophilus TPY"]]},{"id":"NCBITaxon:565","l":"Atlantibacter hermannii","na":1,"nb":3,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["NCBITaxon%3A565","Atlantibacter hermannii"],["NCBITaxon%3A1115512","Atlantibacter hermannii NBRC 105704"],["NCBITaxon%3A564","Escherichia fergusonii"]]},{"id":"NCBITaxon:573657","l":"Candidatus Hodgkinia","na":1,"nb":3,"a":[["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"]],"b":[["NCBITaxon%3A573658","Candidatus Hodgkinia cicadicola"],["NCBITaxon%3A573234","Candidatus Hodgkinia cicadicola Dsem"],["NCBITaxon%3A2741067","Candidatus Hodgkinia sp."]]},{"id":"NCBITaxon:67372","l":"Streptomyces variabilis","na":1,"nb":3,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["NCBITaxon%3A29305","Streptomyces griseoincarnatus"],["NCBITaxon%3A67372","Streptomyces variabilis"],["NCBITaxon%3A377639","Streptomyces variabilis subsp. roseolus"]]},{"id":"NCBITaxon:69823","l":"Selenomonas sputigena","na":1,"nb":3,"a":[["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"]],"b":[["NCBITaxon%3A2053611","Selenomonas sp."],["NCBITaxon%3A69823","Selenomonas sputigena"],["NCBITaxon%3A546271","Selenomonas sputigena ATCC 35185"]]},{"id":"NCBITaxon:72361","l":"Bacillus vallismortis","na":1,"nb":3,"a":[["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"]],"b":[["NCBITaxon%3A72361","Bacillus vallismortis"],["NCBITaxon%3A1051502","Bacillus vallismortis DV1-F-3"],["NCBITaxon%3A564287","Bacillus vallismortis NRRL B-14890"]]},{"id":"NCBITaxon:901","l":"Desulfovibrio piger","na":1,"nb":3,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A901","Desulfovibrio piger"],["NCBITaxon%3A411464","Desulfovibrio piger ATCC 29098"],["NCBITaxon%3A613189","Desulfovibrio piger GOR1"]]},{"id":"GTDB:s__Acidisphaera_rubrifaciens","l":"","na":1,"nb":2,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"]],"b":[["NCBITaxon%3A50715","Acidisphaera rubrifaciens"],["NCBITaxon%3A1231350","Acidisphaera rubrifaciens HS-AP3"]]},{"id":"GTDB:s__Actinomyces_naeslundii","l":"","na":1,"nb":2,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1655","Actinomyces naeslundii"],["NCBITaxon%3A1115803","Actinomyces naeslundii str. Howell 279"]]},{"id":"GTDB:s__Bradyrhizobium_huanghuaihaiense","l":"","na":1,"nb":2,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"]],"b":[["NCBITaxon%3A990078","Bradyrhizobium huanghuaihaiense"],["NCBITaxon%3A1038862","Bradyrhizobium japonicum USDA 124"]]},{"id":"GTDB:s__Butyrivibrio_fibrisolvens","l":"","na":1,"nb":2,"a":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"]],"b":[["NCBITaxon%3A831","Butyrivibrio fibrisolvens"],["NCBITaxon%3A1121131","Butyrivibrio fibrisolvens DSM 3071"]]},{"id":"GTDB:s__Caldicellulosiruptor_bescii","l":"","na":1,"nb":2,"a":[["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["NCBITaxon%3A31899","Caldicellulosiruptor bescii"],["NCBITaxon%3A521460","Caldicellulosiruptor bescii DSM 6725"]]},{"id":"GTDB:s__Cellulomonas_fimi","l":"","na":1,"nb":2,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["NCBITaxon%3A1708","Cellulomonas fimi"],["NCBITaxon%3A590998","Cellulomonas fimi ATCC 484"]]},{"id":"GTDB:s__Clostridium_AM_carboxidivorans","l":"","na":1,"nb":2,"a":[["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"]],"b":[["NCBITaxon%3A536227","Clostridium carboxidivorans P7"],["NCBITaxon%3A3064705","Clostridium sp. JS66"]]},{"id":"GTDB:s__Clostridium_I_pasteurianum","l":"","na":1,"nb":2,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["NCBITaxon%3A1501","Clostridium pasteurianum"],["NCBITaxon%3A1262449","Clostridium pasteurianum DSM 525 = ATCC 6013"]]},{"id":"GTDB:s__Desulfovibrio_desulfuricans","l":"","na":1,"nb":2,"a":[["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"]],"b":[["NCBITaxon%3A876","Desulfovibrio desulfuricans"],["NCBITaxon%3A1121445","Desulfovibrio desulfuricans DSM 642"]]},{"id":"GTDB:s__Desulfovibrio_sp944327285","l":"","na":1,"nb":2,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A901","Desulfovibrio piger"],["NCBITaxon%3A167968","uncultured Desulfovibrio sp."]]},{"id":"GTDB:s__Dolosigranulum_pigrum","l":"","na":1,"nb":2,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"]],"b":[["NCBITaxon%3A29394","Dolosigranulum pigrum"],["NCBITaxon%3A883103","Dolosigranulum pigrum ATCC 51524"]]},{"id":"GTDB:s__Dyadobacter_sp017744695","l":"","na":2,"nb":1,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["NCBITaxon%3A1914288","Dyadobacter sp."]]},{"id":"GTDB:s__Lachnoclostridium_phytofermentans","l":"","na":2,"nb":1,"a":[["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"]],"b":[["NCBITaxon%3A357809","Lachnoclostridium phytofermentans ISDg"]]},{"id":"GTDB:s__Lactiplantibacillus_plantarum_A","l":"","na":1,"nb":2,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"]],"b":[["NCBITaxon%3A1136177","Lactiplantibacillus pentosus KCA1"],["NCBITaxon%3A1382301","Lactiplantibacillus plantarum EGD-AQ4"]]},{"id":"GTDB:s__Marvinbryantia_formatexigens","l":"","na":1,"nb":2,"a":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"]],"b":[["NCBITaxon%3A168384","Marvinbryantia formatexigens"],["NCBITaxon%3A478749","Marvinbryantia formatexigens DSM 14469"]]},{"id":"GTDB:s__Methanocaldococcus_jannaschii","l":"","na":1,"nb":2,"a":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]],"b":[["NCBITaxon%3A2190","Methanocaldococcus jannaschii"],["NCBITaxon%3A243232","Methanocaldococcus jannaschii DSM 2661"]]},{"id":"GTDB:s__Methanocella_conradii","l":"","na":1,"nb":2,"a":[["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"]],"b":[["NCBITaxon%3A1175444","Methanocella conradii"],["NCBITaxon%3A1041930","Methanocella conradii HZ254"]]},{"id":"GTDB:s__Methylacidiphilum_infernorum","l":"","na":1,"nb":2,"a":[["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"]],"b":[["NCBITaxon%3A511746","Candidatus Methylacidiphilum infernorum"],["NCBITaxon%3A481448","Methylacidiphilum infernorum V4"]]},{"id":"GTDB:s__Methylocaldum_marinum","l":"","na":2,"nb":1,"a":[["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"]],"b":[["NCBITaxon%3A1432792","Methylocaldum marinum"]]},{"id":"GTDB:s__Methylocystis_parva","l":"","na":1,"nb":2,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"]],"b":[["NCBITaxon%3A134","Methylocystis parvus"],["NCBITaxon%3A1134912","Methylocystis parvus OBBP"]]},{"id":"GTDB:s__Methylosarcina_fibrata","l":"","na":1,"nb":2,"a":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["NCBITaxon%3A105972","Methylosarcina fibrata"],["NCBITaxon%3A1132443","Methylosarcina fibrata AML-C10"]]},{"id":"GTDB:s__Microcoleus_vaginatus_A","l":"","na":1,"nb":2,"a":[["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]],"b":[["NCBITaxon%3A756067","Microcoleus vaginatus FGP-2"],["NCBITaxon%3A669365","Microcoleus vaginatus PCC 9802"]]},{"id":"GTDB:s__Mucispirillum_schaedleri","l":"","na":1,"nb":2,"a":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"]],"b":[["NCBITaxon%3A248039","Mucispirillum schaedleri"],["NCBITaxon%3A1379858","Mucispirillum schaedleri ASF457"]]},{"id":"GTDB:s__Nitrobacter_winogradskyi_A","l":"","na":2,"nb":1,"a":[["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["NCBITaxon%3A913","Nitrobacter winogradskyi"]]},{"id":"GTDB:s__Papillibacter_cinnamivorans","l":"","na":1,"nb":2,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"]],"b":[["NCBITaxon%3A100176","Papillibacter cinnamivorans"],["NCBITaxon%3A1122930","Papillibacter cinnamivorans DSM 12816"]]},{"id":"GTDB:s__Planococcus_halocryophilus","l":"","na":1,"nb":2,"a":[["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"]],"b":[["NCBITaxon%3A1215089","Planococcus halocryophilus"],["NCBITaxon%3A1005941","Planococcus halocryophilus Or1"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_A","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A93058","Prochlorococcus marinus str. MIT 9202"],["NCBITaxon%3A93060","Prochlorococcus marinus str. MIT 9215"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_AC","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2053467","Prochlorococcus marinus str. MU1402"],["NCBITaxon%3A2716478","Prochlorococcus marinus XMU1402"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_AD","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2054182","Prochlorococcus marinus str. XMU1419"],["NCBITaxon%3A2716489","Prochlorococcus marinus XMU1419"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_AE","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2716486","Prochlorococcus marinus CUG1415"],["NCBITaxon%3A2053476","Prochlorococcus marinus str. MU1415"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_AG","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2716488","Prochlorococcus marinus CUG1417"],["NCBITaxon%3A2053478","Prochlorococcus marinus str. MU1417"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_H","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A1219","Prochlorococcus marinus"],["NCBITaxon%3A2774501","Prochlorococcus marinus XMU1428"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_T","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A1041939","Prochlorococcus marinus bv. HNLC2"],["NCBITaxon%3A159733","uncultured Prochlorococcus sp."]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_U","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2774504","Prochlorococcus marinus CUG1431"],["NCBITaxon%3A2774506","Prochlorococcus marinus CUG1433"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_W","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2716481","Prochlorococcus marinus XMU1406"],["NCBITaxon%3A2774500","Prochlorococcus marinus XMU1427"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_Y","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2774512","Prochlorococcus marinus CUG1439"],["NCBITaxon%3A3096220","Prochlorococcus sp. MIT 1314"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_Z","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2053472","Prochlorococcus marinus str. MU1410"],["NCBITaxon%3A2716482","Prochlorococcus marinus XMU1410"]]},{"id":"GTDB:s__Prochlorococcus_A_sp003213375","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2774510","Prochlorococcus marinus CUG1437"],["NCBITaxon%3A2162293","Prochlorococcus sp. AG-424-A03"]]},{"id":"GTDB:s__Prochlorococcus_A_sp003278705","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2774509","Prochlorococcus marinus CUG1436"],["NCBITaxon%3A2162112","Prochlorococcus sp. AG-355-J23"]]},{"id":"GTDB:s__Prochlorococcus_B_marinus_A","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2053971","Prochlorococcus marinus str. XMU1408"],["NCBITaxon%3A2213228","Prochlorococcus marinus XMU1408"]]},{"id":"GTDB:s__Prochlorococcus_B_marinus_C","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A1570009","Prochlorococcus marinus str. MIT 0912"],["NCBITaxon%3A1570010","Prochlorococcus marinus str. MIT 0913"]]},{"id":"GTDB:s__Prochlorococcus_D_sp000760175","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A3014998","Prochlorococcus marinus str. MIT 0919"],["NCBITaxon%3A1499498","Prochlorococcus sp. MIT 0601"]]},{"id":"GTDB:s__Pseudobutyrivibrio_fibrisolvens_A","l":"","na":1,"nb":2,"a":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"]],"b":[["NCBITaxon%3A831","Butyrivibrio fibrisolvens"],["NCBITaxon%3A657324","Butyrivibrio fibrisolvens 16/4"]]},{"id":"GTDB:s__Rhodanobacter_thiooxydans","l":"","na":1,"nb":2,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"]],"b":[["NCBITaxon%3A416169","Rhodanobacter thiooxydans"],["NCBITaxon%3A1163409","Rhodanobacter thiooxydans LCS2"]]},{"id":"GTDB:s__Rhodopseudomonas_palustris_J","l":"","na":2,"nb":1,"a":[["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["NCBITaxon%3A316058","Rhodopseudomonas palustris HaA2"]]},{"id":"GTDB:s__Sphaerochaeta_globosa","l":"","na":1,"nb":2,"a":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"]],"b":[["NCBITaxon%3A1131703","Sphaerochaeta globosa"],["NCBITaxon%3A158189","Sphaerochaeta globosa str. Buddy"]]},{"id":"GTDB:s__Sphingomonas_desiccabilis","l":"","na":2,"nb":1,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["NCBITaxon%3A429134","Sphingomonas desiccabilis"]]},{"id":"GTDB:s__Sphingomonas_panni","l":"","na":1,"nb":2,"a":[["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["NCBITaxon%3A237612","Sphingomonas panni"],["NCBITaxon%3A158754","uncultured Sphingomonas sp."]]},{"id":"GTDB:s__Streptococcus_mitis_AI","l":"","na":1,"nb":2,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1239793","Streptococcus mitis 13/39"],["NCBITaxon%3A1303","Streptococcus oralis"]]},{"id":"GTDB:s__Streptococcus_mitis_AR","l":"","na":1,"nb":2,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A365659","Streptococcus mitis B6"],["NCBITaxon%3A83427","uncultured Streptococcus sp."]]},{"id":"GTDB:s__Streptococcus_mitis_AW","l":"","na":1,"nb":2,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A28037","Streptococcus mitis"],["NCBITaxon%3A1340484","Streptococcus mitis 17/34"]]},{"id":"GTDB:s__Streptococcus_mitis_AX","l":"","na":1,"nb":2,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A28037","Streptococcus mitis"],["NCBITaxon%3A768726","Streptococcus mitis bv. 2 str. F0392"]]},{"id":"GTDB:s__Streptococcus_mitis_CK","l":"","na":1,"nb":2,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A28037","Streptococcus mitis"],["NCBITaxon%3A585202","Streptococcus mitis SK321"]]},{"id":"GTDB:s__Streptococcus_mitis_L","l":"","na":1,"nb":2,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A28037","Streptococcus mitis"],["NCBITaxon%3A1095737","Streptococcus mitis SK579"]]},{"id":"GTDB:s__Streptococcus_oralis_Y","l":"","na":1,"nb":2,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1161421","Streptococcus oralis SK304"]]},{"id":"GTDB:s__Stutzerimonas_stutzeri_C","l":"","na":2,"nb":1,"a":[["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["NCBITaxon%3A477228","Stutzerimonas stutzeri TS44"]]},{"id":"GTDB:s__Variovorax_paradoxus_E","l":"","na":1,"nb":2,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["NCBITaxon%3A34073","Variovorax paradoxus"],["NCBITaxon%3A1246301","Variovorax paradoxus B4"]]},{"id":"GTDB:s__Vreelandella_boliviensis","l":"","na":1,"nb":2,"a":[["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"]],"b":[["NCBITaxon%3A223527","Vreelandella boliviensis"],["NCBITaxon%3A1072583","Vreelandella boliviensis LC1"]]},{"id":"NCBITaxon:100176","l":"Papillibacter cinnamivorans","na":1,"nb":2,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"]],"b":[["NCBITaxon%3A100176","Papillibacter cinnamivorans"],["NCBITaxon%3A1122930","Papillibacter cinnamivorans DSM 12816"]]},{"id":"NCBITaxon:1031","l":"Thiothrix nivea","na":1,"nb":2,"a":[["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"]],"b":[["NCBITaxon%3A1031","Thiothrix nivea"],["NCBITaxon%3A870187","Thiothrix nivea DSM 5205"]]},{"id":"NCBITaxon:1034015","l":"Nitrososphaera viennensis","na":1,"nb":2,"a":[["Sphingobium_Nitrososphaera_Phenanthrene_Carbon_SynCom.html","Sphingobium-Nitrososphaera Phenanthrene-Carbon SynCom"]],"b":[["NCBITaxon%3A1034015","Nitrososphaera viennensis"],["NCBITaxon%3A926571","Nitrososphaera viennensis EN76"]]},{"id":"NCBITaxon:105972","l":"Methylosarcina fibrata","na":1,"nb":2,"a":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["NCBITaxon%3A105972","Methylosarcina fibrata"],["NCBITaxon%3A1132443","Methylosarcina fibrata AML-C10"]]},{"id":"NCBITaxon:1072583","l":"Vreelandella boliviensis LC1","na":1,"nb":2,"a":[["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"]],"b":[["NCBITaxon%3A223527","Vreelandella boliviensis"],["NCBITaxon%3A1072583","Vreelandella boliviensis LC1"]]},{"id":"NCBITaxon:1089553","l":"Thermacetogenium phaeum DSM 12270","na":1,"nb":2,"a":[["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]],"b":[["NCBITaxon%3A85874","Thermacetogenium phaeum"],["NCBITaxon%3A1089553","Thermacetogenium phaeum DSM 12270"]]},{"id":"NCBITaxon:1122947","l":"Pelosinus fermentans DSM 17108","na":1,"nb":2,"a":[["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"]],"b":[["NCBITaxon%3A365349","Pelosinus fermentans"],["NCBITaxon%3A1122947","Pelosinus fermentans DSM 17108"]]},{"id":"NCBITaxon:1131703","l":"Sphaerochaeta globosa","na":1,"nb":2,"a":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"]],"b":[["NCBITaxon%3A1131703","Sphaerochaeta globosa"],["NCBITaxon%3A158189","Sphaerochaeta globosa str. Buddy"]]},{"id":"NCBITaxon:1173061","l":"Geotrichum candidum","na":1,"nb":2,"a":[["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["NCBITaxon%3A104098","Acetobacter peroxydans"],["NCBITaxon%3A1173061","Geotrichum candidum"]]},{"id":"NCBITaxon:1175444","l":"Methanocella conradii","na":1,"nb":2,"a":[["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"]],"b":[["NCBITaxon%3A1175444","Methanocella conradii"],["NCBITaxon%3A1041930","Methanocella conradii HZ254"]]},{"id":"NCBITaxon:121039","l":"Ferrimicrobium acidiphilum","na":1,"nb":2,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"]],"b":[["NCBITaxon%3A121039","Ferrimicrobium acidiphilum"],["NCBITaxon%3A1121877","Ferrimicrobium acidiphilum DSM 19497"]]},{"id":"NCBITaxon:1215089","l":"Planococcus halocryophilus","na":1,"nb":2,"a":[["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"]],"b":[["NCBITaxon%3A1215089","Planococcus halocryophilus"],["NCBITaxon%3A1005941","Planococcus halocryophilus Or1"]]},{"id":"NCBITaxon:1218105","l":"Cupriavidus necator NBRC 102504","na":1,"nb":2,"a":[["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"]],"b":[["NCBITaxon%3A106590","Cupriavidus necator"],["NCBITaxon%3A1218105","Cupriavidus necator NBRC 102504"]]},{"id":"NCBITaxon:1335640","l":"Clostridium saccharoperbutylacetonicum N1-4","na":1,"nb":2,"a":[["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["NCBITaxon%3A1335640","Clostridium saccharoperbutylacetonicum N1-4"],["NCBITaxon%3A931276","Clostridium saccharoperbutylacetonicum N1-4(HMT)"]]},{"id":"NCBITaxon:1336235","l":"Paenirhizobium selenitireducens ATCC BAA-1503","na":1,"nb":2,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["NCBITaxon%3A448181","Paenirhizobium selenitireducens"],["NCBITaxon%3A1336235","Paenirhizobium selenitireducens ATCC BAA-1503"]]},{"id":"NCBITaxon:134","l":"Methylocystis parvus","na":1,"nb":2,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"]],"b":[["NCBITaxon%3A134","Methylocystis parvus"],["NCBITaxon%3A1134912","Methylocystis parvus OBBP"]]},{"id":"NCBITaxon:1401","l":"Paenibacillus lautus","na":1,"nb":2,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"]],"b":[["NCBITaxon%3A1401","Paenibacillus lautus"],["NCBITaxon%3A1349780","Paenibacillus lautus NBRC 15380"]]},{"id":"NCBITaxon:1432792","l":"Methylocaldum marinum","na":2,"nb":1,"a":[["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"]],"b":[["NCBITaxon%3A1432792","Methylocaldum marinum"]]},{"id":"NCBITaxon:1436290","l":"Candidatus Symbiobacter mobilis","na":1,"nb":2,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"]],"b":[["NCBITaxon%3A1436290","Candidatus Symbiobacter mobilis"],["NCBITaxon%3A946483","Candidatus Symbiobacter mobilis CR"]]},{"id":"NCBITaxon:1451","l":"Paenibacillus amylolyticus","na":1,"nb":2,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"]],"b":[["NCBITaxon%3A1451","Paenibacillus amylolyticus"],["NCBITaxon%3A59846","Paenibacillus chibensis"]]},{"id":"NCBITaxon:1455","l":"Pseudobacillus badius","na":1,"nb":2,"a":[["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"]],"b":[["NCBITaxon%3A1348627","Bacillus badius NBRC 15713"],["NCBITaxon%3A1455","Pseudobacillus badius"]]},{"id":"NCBITaxon:1464011","l":"Kitasatospora papulosa","na":1,"nb":2,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]],"b":[["NCBITaxon%3A1464011","Kitasatospora papulosa"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:148447","l":"Paraburkholderia phymatum","na":1,"nb":2,"a":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]],"b":[["NCBITaxon%3A148447","Paraburkholderia phymatum"],["NCBITaxon%3A391038","Paraburkholderia phymatum STM815"]]},{"id":"NCBITaxon:1547","l":"Thomasclavelia ramosa","na":1,"nb":2,"a":[["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["NCBITaxon%3A1547","Thomasclavelia ramosa"],["NCBITaxon%3A445974","Thomasclavelia ramosa DSM 1402"]]},{"id":"NCBITaxon:159743","l":"Paenibacillus terrae","na":1,"nb":2,"a":[["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"]],"b":[["NCBITaxon%3A159743","Paenibacillus terrae"],["NCBITaxon%3A985665","Paenibacillus terrae HPL-003"]]},{"id":"NCBITaxon:168384","l":"Marvinbryantia formatexigens","na":1,"nb":2,"a":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"]],"b":[["NCBITaxon%3A168384","Marvinbryantia formatexigens"],["NCBITaxon%3A478749","Marvinbryantia formatexigens DSM 14469"]]},{"id":"NCBITaxon:1708","l":"Cellulomonas fimi","na":1,"nb":2,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["NCBITaxon%3A1708","Cellulomonas fimi"],["NCBITaxon%3A590998","Cellulomonas fimi ATCC 484"]]},{"id":"NCBITaxon:186490","l":"Candidatus Palibaumannia cicadellinicola","na":1,"nb":2,"a":[["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"]],"b":[["NCBITaxon%3A374463","Baumannia cicadellinicola str. Hc (Homalodisca coagulata)"],["NCBITaxon%3A186490","Candidatus Palibaumannia cicadellinicola"]]},{"id":"NCBITaxon:1871043","l":"Variovorax sp.","na":2,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]],"b":[["NCBITaxon%3A1871043","Variovorax sp."]]},{"id":"NCBITaxon:1902583","l":"Candidatus Desulfofervidus","na":1,"nb":2,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"]],"b":[["NCBITaxon%3A1621989","Candidatus Desulfofervidus auxilii"],["NCBITaxon%3A2820297","Candidatus Desulfofervidus sp."]]},{"id":"NCBITaxon:1908224","l":"Sphingopyxis sp.","na":2,"nb":1,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["NCBITaxon%3A1908224","Sphingopyxis sp."]]},{"id":"NCBITaxon:1914288","l":"Dyadobacter sp.","na":2,"nb":1,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["NCBITaxon%3A1914288","Dyadobacter sp."]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":1,"nb":2,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["NCBITaxon%3A1928","Streptomyces rochei"],["NCBITaxon%3A885435","Streptomyces rochei subsp. volubilis"]]},{"id":"NCBITaxon:200451","l":"Pseudomonas poae","na":1,"nb":2,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A200451","Pseudomonas poae"],["NCBITaxon%3A1282356","Pseudomonas poae RE*1-1-14"]]},{"id":"NCBITaxon:2026186","l":"Bacillus paranthracis","na":1,"nb":2,"a":[["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A2026186","Bacillus paranthracis"]]},{"id":"NCBITaxon:215813","l":"Dinoroseobacter shibae","na":1,"nb":2,"a":[["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"]],"b":[["NCBITaxon%3A215813","Dinoroseobacter shibae"],["NCBITaxon%3A398580","Dinoroseobacter shibae DFL 12 = DSM 16493"]]},{"id":"NCBITaxon:217159","l":"Clostridium carboxidivorans","na":1,"nb":2,"a":[["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"]],"b":[["NCBITaxon%3A217159","Clostridium carboxidivorans"],["NCBITaxon%3A536227","Clostridium carboxidivorans P7"]]},{"id":"NCBITaxon:223967","l":"Methylorubrum populi","na":1,"nb":2,"a":[["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"]],"b":[["NCBITaxon%3A223967","Methylorubrum populi"],["NCBITaxon%3A441620","Methylorubrum populi BJ001"]]},{"id":"NCBITaxon:225937","l":"Marinobacter adhaerens HP15","na":1,"nb":2,"a":[["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]],"b":[["NCBITaxon%3A1033846","Marinobacter adhaerens"],["NCBITaxon%3A225937","Marinobacter adhaerens HP15"]]},{"id":"NCBITaxon:226186","l":"Bacteroides thetaiotaomicron (strain ATCC 29148 / DSM 2079 / JCM 5827 / CCUG 10774 / NCTC 10582 / VPI-5482 / E50)","na":1,"nb":2,"a":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"]],"b":[["NCBITaxon%3A818","Bacteroides thetaiotaomicron"],["NCBITaxon%3A226186","Bacteroides thetaiotaomicron VPI-5482"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii (strain ATCC 43067 / DSM 2661 / JAL-1 / JCM 10045 / NBRC 100440)","na":1,"nb":2,"a":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]],"b":[["NCBITaxon%3A2190","Methanocaldococcus jannaschii"],["NCBITaxon%3A243232","Methanocaldococcus jannaschii DSM 2661"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima (strain ATCC 43589 / DSM 3109 / JCM 10099 / NBRC 100826 / MSB8)","na":1,"nb":2,"a":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]],"b":[["NCBITaxon%3A2336","Thermotoga maritima"],["NCBITaxon%3A243274","Thermotoga maritima MSB8"]]},{"id":"NCBITaxon:246200","l":"Ruegeria pomeroyi DSS-3","na":1,"nb":2,"a":[["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["NCBITaxon%3A89184","Ruegeria pomeroyi"],["NCBITaxon%3A246200","Ruegeria pomeroyi DSS-3"]]},{"id":"NCBITaxon:253314","l":"Acetivibrio straminisolvens","na":1,"nb":2,"a":[["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"]],"b":[["NCBITaxon%3A253314","Acetivibrio straminisolvens"],["NCBITaxon%3A1294263","Acetivibrio straminisolvens JCM 21531"]]},{"id":"NCBITaxon:260554","l":"Bacillus halotolerans","na":1,"nb":2,"a":[["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"]],"b":[["NCBITaxon%3A260554","Bacillus halotolerans"],["NCBITaxon%3A72360","Bacillus mojavensis"]]},{"id":"NCBITaxon:264198","l":"Cupriavidus pinatubonensis JMP134","na":1,"nb":2,"a":[["Rhizorhabdus_Cupriavidus_BDE47_Degradation_SynCom.html","Rhizorhabdus-Cupriavidus BDE-47 Degradation SynCom"]],"b":[["NCBITaxon%3A106590","Cupriavidus necator"],["NCBITaxon%3A264198","Cupriavidus pinatubonensis JMP134"]]},{"id":"NCBITaxon:267377","l":"Methanococcus maripaludis (strain DSM 14266 / JCM 13030 / NBRC 101832 / S2 / LL)","na":1,"nb":2,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"]],"b":[["NCBITaxon%3A39152","Methanococcus maripaludis"],["NCBITaxon%3A267377","Methanococcus maripaludis S2"]]},{"id":"NCBITaxon:269797","l":"Methanosarcina barkeri str. Fusaro","na":2,"nb":1,"a":[["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["NCBITaxon%3A269797","Methanosarcina barkeri str. Fusaro"]]},{"id":"NCBITaxon:2715209","l":"Bacillus rugosus","na":2,"nb":1,"a":[["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"],["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["NCBITaxon%3A2715209","Bacillus rugosus"]]},{"id":"NCBITaxon:272774","l":"Vreelandella alkaliphila","na":1,"nb":2,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["NCBITaxon%3A272774","Vreelandella alkaliphila"],["NCBITaxon%3A1255599","Vreelandella alkaliphila 3A7M"]]},{"id":"NCBITaxon:2822231","l":"Phanerodontia chrysosporium","na":2,"nb":1,"a":[["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"]],"b":[["NCBITaxon%3A2822231","Phanerodontia chrysosporium"]]},{"id":"NCBITaxon:29394","l":"Dolosigranulum pigrum","na":1,"nb":2,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"]],"b":[["NCBITaxon%3A29394","Dolosigranulum pigrum"],["NCBITaxon%3A883103","Dolosigranulum pigrum ATCC 51524"]]},{"id":"NCBITaxon:294710","l":"Proteiniphilum acetatigenes","na":1,"nb":2,"a":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"]],"b":[["NCBITaxon%3A294710","Proteiniphilum acetatigenes"],["NCBITaxon%3A1123008","Proteiniphilum acetatigenes DSM 18083"]]},{"id":"NCBITaxon:312306","l":"Pseudomonas entomophila","na":1,"nb":2,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["NCBITaxon%3A312306","Pseudomonas entomophila"],["NCBITaxon%3A384676","Pseudomonas entomophila L48"]]},{"id":"NCBITaxon:32049","l":"Picosynechococcus sp. PCC 7002","na":2,"nb":1,"a":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"]],"b":[["NCBITaxon%3A32049","Picosynechococcus sp. PCC 7002"]]},{"id":"NCBITaxon:328301","l":"Syntrophorhabdus aromaticivorans","na":1,"nb":2,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["NCBITaxon%3A328301","Syntrophorhabdus aromaticivorans"],["NCBITaxon%3A909663","Syntrophorhabdus aromaticivorans UI"]]},{"id":"NCBITaxon:33075","l":"Acidobacterium capsulatum","na":1,"nb":2,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"]],"b":[["NCBITaxon%3A33075","Acidobacterium capsulatum"],["NCBITaxon%3A240015","Acidobacterium capsulatum ATCC 51196"]]},{"id":"NCBITaxon:351627","l":"Caldicellulosiruptor saccharolyticus DSM 8903","na":1,"nb":2,"a":[["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"]],"b":[["NCBITaxon%3A44001","Caldicellulosiruptor saccharolyticus"],["NCBITaxon%3A351627","Caldicellulosiruptor saccharolyticus DSM 8903"]]},{"id":"NCBITaxon:357441","l":"Enterococcus lactis","na":1,"nb":2,"a":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"]],"b":[["NCBITaxon%3A1352","Enterococcus faecium"],["NCBITaxon%3A357441","Enterococcus lactis"]]},{"id":"NCBITaxon:370111","l":"Brucella pseudintermedia","na":1,"nb":2,"a":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"]],"b":[["NCBITaxon%3A94625","Brucella intermedia"],["NCBITaxon%3A370111","Brucella pseudintermedia"]]},{"id":"NCBITaxon:374432","l":"Methylobacterium tardum","na":1,"nb":2,"a":[["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"]],"b":[["NCBITaxon%3A374432","Methylobacterium tardum"],["NCBITaxon%3A95301","Pseudomonas multiresinivorans"]]},{"id":"NCBITaxon:391619","l":"Phaeobacter inhibens DSM 17395","na":1,"nb":2,"a":[["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"]],"b":[["NCBITaxon%3A221822","Phaeobacter inhibens"],["NCBITaxon%3A391619","Phaeobacter inhibens DSM 17395"]]},{"id":"NCBITaxon:409291","l":"Arthrobacter humicola","na":1,"nb":2,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A1665","Arthrobacter globiformis"],["NCBITaxon%3A409291","Arthrobacter humicola"]]},{"id":"NCBITaxon:411483","l":"Faecalibacterium duncaniae","na":1,"nb":2,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A411483","Faecalibacterium duncaniae"],["NCBITaxon%3A2881265","Faecalibacterium hominis (ex Afrizal et al. 2022)"]]},{"id":"NCBITaxon:412384","l":"Priestia aryabhattai","na":1,"nb":2,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A412384","Priestia aryabhattai"],["NCBITaxon%3A1358420","Priestia aryabhattai B8W22"]]},{"id":"NCBITaxon:412449","l":"Leptospirillum ferrodiazotrophum","na":2,"nb":1,"a":[["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"]],"b":[["NCBITaxon%3A412449","Leptospirillum ferrodiazotrophum"]]},{"id":"NCBITaxon:416169","l":"Rhodanobacter thiooxydans","na":1,"nb":2,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"]],"b":[["NCBITaxon%3A416169","Rhodanobacter thiooxydans"],["NCBITaxon%3A1163409","Rhodanobacter thiooxydans LCS2"]]},{"id":"NCBITaxon:42444","l":"Marinovum algicola","na":1,"nb":2,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["NCBITaxon%3A42444","Marinovum algicola"],["NCBITaxon%3A988812","Marinovum algicola DG 898"]]},{"id":"NCBITaxon:429134","l":"Sphingomonas desiccabilis","na":2,"nb":1,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["NCBITaxon%3A429134","Sphingomonas desiccabilis"]]},{"id":"NCBITaxon:452922","l":"Xenophilus aerolatus","na":1,"nb":2,"a":[["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["NCBITaxon%3A500153","Streptomyces avicenniae"],["NCBITaxon%3A452922","Xenophilus aerolatus"]]},{"id":"NCBITaxon:47421","l":"Hydrogenophaga pseudoflava","na":1,"nb":2,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["NCBITaxon%3A47421","Hydrogenophaga pseudoflava"],["NCBITaxon%3A1349792","Hydrogenophaga pseudoflava NBRC 102511"]]},{"id":"NCBITaxon:483199","l":"Acetobacter fabarum","na":1,"nb":2,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["NCBITaxon%3A483199","Acetobacter fabarum"],["NCBITaxon%3A1307906","Acetobacter fabarum DSM 19596"]]},{"id":"NCBITaxon:4909","l":"Pichia kudriavzevii","na":1,"nb":2,"a":[["Sichuan_Shai_Vinegar_Yeast_Flavor_SynCom.html","Sichuan Shai Vinegar Yeast Flavor SynCom"]],"b":[["NCBITaxon%3A4909","Pichia kudriavzevii"],["NCBITaxon%3A1231518","Pichia kudriavzevii CAB39-6420"]]},{"id":"NCBITaxon:4911","l":"Kluyveromyces marxianus","na":1,"nb":2,"a":[["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["NCBITaxon%3A4911","Kluyveromyces marxianus"],["NCBITaxon%3A374272","Kluyveromyces marxianus var. marxianus"]]},{"id":"NCBITaxon:4952","l":"Yarrowia lipolytica","na":2,"nb":1,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Yarrowia_lipolytica_Division_of_Labor_Lipid_Consortium.html","Yarrowia lipolytica Division-of-Labor Lipid Consortium"]],"b":[["NCBITaxon%3A4952","Yarrowia lipolytica"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":1,"nb":2,"a":[["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["NCBITaxon%3A5059","Aspergillus flavus"],["NCBITaxon%3A332952","Aspergillus flavus NRRL3357"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":1,"nb":2,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["NCBITaxon%3A5062","Aspergillus oryzae"],["NCBITaxon%3A510516","Aspergillus oryzae RIB40"]]},{"id":"NCBITaxon:50715","l":"Acidisphaera rubrifaciens","na":1,"nb":2,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"]],"b":[["NCBITaxon%3A50715","Acidisphaera rubrifaciens"],["NCBITaxon%3A1231350","Acidisphaera rubrifaciens HS-AP3"]]},{"id":"NCBITaxon:511746","l":"Candidatus Methylacidiphilum infernorum","na":1,"nb":2,"a":[["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"]],"b":[["NCBITaxon%3A511746","Candidatus Methylacidiphilum infernorum"],["NCBITaxon%3A481448","Methylacidiphilum infernorum V4"]]},{"id":"NCBITaxon:51453","l":"Trichoderma reesei","na":2,"nb":1,"a":[["Trichoderma_Ecoli_Cellulosic_Isobutanol_Coculture.html","Trichoderma-E. coli Cellulosic Isobutanol Coculture"],["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["NCBITaxon%3A51453","Trichoderma reesei"]]},{"id":"NCBITaxon:521","l":"Bordetella avium","na":1,"nb":2,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["NCBITaxon%3A521","Bordetella avium"],["NCBITaxon%3A360910","Bordetella avium 197N"]]},{"id":"NCBITaxon:521460","l":"Caldicellulosiruptor bescii DSM 6725","na":1,"nb":2,"a":[["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["NCBITaxon%3A31899","Caldicellulosiruptor bescii"],["NCBITaxon%3A521460","Caldicellulosiruptor bescii DSM 6725"]]},{"id":"NCBITaxon:52242","l":"Lactobacillus gallinarum","na":1,"nb":2,"a":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]],"b":[["NCBITaxon%3A52242","Lactobacillus gallinarum"],["NCBITaxon%3A1423748","Lactobacillus gallinarum DSM 10532 = JCM 2011"]]},{"id":"NCBITaxon:525","l":"Acidocella facilis","na":1,"nb":2,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"]],"b":[["NCBITaxon%3A525","Acidocella facilis"],["NCBITaxon%3A1408419","Acidocella facilis ATCC 35904"]]},{"id":"NCBITaxon:54007","l":"Anaerococcus octavius","na":1,"nb":2,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["NCBITaxon%3A54007","Anaerococcus octavius"],["NCBITaxon%3A1161098","Anaerococcus octavius NCTC 9810"]]},{"id":"NCBITaxon:56780","l":"Syntrophus aciditrophicus SB","na":1,"nb":2,"a":[["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"]],"b":[["NCBITaxon%3A316277","Syntrophus aciditrophicus"],["NCBITaxon%3A56780","Syntrophus aciditrophicus SB"]]},{"id":"NCBITaxon:572545","l":"Acetivibrio thermocellus DSM 2360","na":1,"nb":2,"a":[["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"]],"b":[["NCBITaxon%3A1515","Acetivibrio thermocellus"],["NCBITaxon%3A572545","Acetivibrio thermocellus DSM 2360"]]},{"id":"NCBITaxon:62140","l":"Acidiphilium multivorum","na":1,"nb":2,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"]],"b":[["NCBITaxon%3A62140","Acidiphilium multivorum"],["NCBITaxon%3A926570","Acidiphilium multivorum AIU301"]]},{"id":"NCBITaxon:632335","l":"Caldicellulosiruptor acetigenus I77R1B","na":1,"nb":2,"a":[["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"]],"b":[["NCBITaxon%3A301953","Caldicellulosiruptor acetigenus"],["NCBITaxon%3A632335","Caldicellulosiruptor acetigenus I77R1B"]]},{"id":"NCBITaxon:64104","l":"Bacillus pseudomycoides","na":1,"nb":2,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["NCBITaxon%3A64104","Bacillus pseudomycoides"],["NCBITaxon%3A527000","Bacillus pseudomycoides DSM 12442"]]},{"id":"NCBITaxon:64702","l":"Propionibacterium cyclohexanicum","na":1,"nb":2,"a":[["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["NCBITaxon%3A64702","Propionibacterium cyclohexanicum"],["NCBITaxon%3A1122996","Propionibacterium cyclohexanicum DSM 16859"]]},{"id":"NCBITaxon:68239","l":"Streptomyces mirabilis","na":1,"nb":2,"a":[["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["NCBITaxon%3A68239","Streptomyces mirabilis"],["NCBITaxon%3A1169149","Streptomyces mirabilis 138MFCol5.1"]]},{"id":"NCBITaxon:685","l":"Vibrio diazotrophicus","na":1,"nb":2,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["NCBITaxon%3A685","Vibrio diazotrophicus"],["NCBITaxon%3A1348635","Vibrio diazotrophicus NBRC 103148"]]},{"id":"NCBITaxon:69488","l":"Penicillium simplicissimum","na":1,"nb":2,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"]],"b":[["NCBITaxon%3A1459","Sporosarcina globispora"],["NCBITaxon%3A69488","Penicillium simplicissimum"]]},{"id":"NCBITaxon:748727","l":"Clostridium ljungdahlii DSM 13528","na":1,"nb":2,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["NCBITaxon%3A1538","Clostridium ljungdahlii"],["NCBITaxon%3A748727","Clostridium ljungdahlii DSM 13528"]]},{"id":"NCBITaxon:795830","l":"Candidatus Brocadia sinica","na":1,"nb":2,"a":[["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"]],"b":[["NCBITaxon%3A795830","Candidatus Brocadia sinica"],["NCBITaxon%3A1197129","Candidatus Brocadia sinica JPN1"]]},{"id":"NCBITaxon:84022","l":"Andreesenella acetica","na":2,"nb":1,"a":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"]],"b":[["NCBITaxon%3A84022","Andreesenella acetica"]]},{"id":"NCBITaxon:84023","l":"Clostridium autoethanogenum","na":1,"nb":2,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"]],"b":[["NCBITaxon%3A84023","Clostridium autoethanogenum"],["NCBITaxon%3A1341692","Clostridium autoethanogenum DSM 10061"]]},{"id":"NCBITaxon:86185","l":"Pseudomonas lundensis","na":1,"nb":2,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]],"b":[["NCBITaxon%3A86185","Pseudomonas lundensis"],["NCBITaxon%3A1255687","Pseudomonas lundensis PCAi_D2.2"]]},{"id":"NCBITaxon:89152","l":"Peptacetobacter hiranonis","na":1,"nb":2,"a":[["Clostridial_isoDCA_Mini_Consortium.html","Clostridial isoDCA Mini Consortium"]],"b":[["NCBITaxon%3A89152","Peptacetobacter hiranonis"],["NCBITaxon%3A500633","Peptacetobacter hiranonis DSM 13275"]]},{"id":"NCBITaxon:89584","l":"Gluconacetobacter liquefaciens","na":1,"nb":2,"a":[["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]],"b":[["NCBITaxon%3A89584","Gluconacetobacter liquefaciens"],["NCBITaxon%3A1307936","Gluconacetobacter liquefaciens NRIC 0522"]]},{"id":"NCBITaxon:92645","l":"Herbaspirillum frisingense","na":1,"nb":2,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]],"b":[["NCBITaxon%3A92645","Herbaspirillum frisingense"],["NCBITaxon%3A864073","Herbaspirillum frisingense GSF30"]]},{"id":"NCBITaxon:96344","l":"Cupriavidus oxalaticus","na":1,"nb":2,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["NCBITaxon%3A96344","Cupriavidus oxalaticus"],["NCBITaxon%3A1349762","Cupriavidus oxalaticus NBRC 13593"]]},{"id":"GTDB:s__Anaeromyxobacter_dehalogenans_B","l":"","na":1,"nb":1,"a":[["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"]],"b":[["NCBITaxon%3A290397","Anaeromyxobacter dehalogenans 2CP-C"]]},{"id":"GTDB:s__Arthrobacter_sp018215265","l":"","na":1,"nb":1,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["NCBITaxon%3A2782567","Paenarthrobacter sp. GOM3"]]},{"id":"GTDB:s__Chryseobacterium_taiwanense","l":"","na":1,"nb":1,"a":[["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["NCBITaxon%3A363331","Chryseobacterium taiwanense"]]},{"id":"GTDB:s__Clostridium_AM_drakei","l":"","na":1,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"]],"b":[["NCBITaxon%3A332101","Clostridium drakei"]]},{"id":"GTDB:s__Clostridium_beijerinckii_A","l":"","na":1,"nb":1,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"]],"b":[["NCBITaxon%3A1410652","Clostridium beijerinckii HUN142"]]},{"id":"GTDB:s__FACHB-68_sp019359355","l":"","na":1,"nb":1,"a":[["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]],"b":[["NCBITaxon%3A2839660","Microcoleus vaginatus WJT46-NPBG5"]]},{"id":"GTDB:s__Kosakonia_pseudosacchari","l":"","na":1,"nb":1,"a":[["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"]],"b":[["NCBITaxon%3A1646340","Kosakonia pseudosacchari"]]},{"id":"GTDB:s__Lachnospira_sp963590775","l":"","na":1,"nb":1,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A901","Desulfovibrio piger"]]},{"id":"GTDB:s__Lysinibacillus_mangiferihumi","l":"","na":1,"nb":1,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]],"b":[["NCBITaxon%3A1130819","Lysinibacillus mangiferihumi"]]},{"id":"GTDB:s__Methyloceanibacter_caenitepidi","l":"","na":1,"nb":1,"a":[["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"]],"b":[["NCBITaxon%3A1384459","Methyloceanibacter caenitepidi"]]},{"id":"GTDB:s__Paenibacillus_polymyxa_E","l":"","na":1,"nb":1,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"]],"b":[["NCBITaxon%3A1406","Paenibacillus polymyxa"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_AA","l":"","na":1,"nb":1,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2774511","Prochlorococcus marinus CUG1438"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_AH","l":"","na":1,"nb":1,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2774508","Prochlorococcus marinus CUG1435"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_G","l":"","na":1,"nb":1,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A93057","Prochlorococcus marinus str. MIT 9201"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_O","l":"","na":1,"nb":1,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A146891","Prochlorococcus marinus str. AS9601"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_P","l":"","na":1,"nb":1,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A167542","Prochlorococcus marinus str. MIT 9515"]]},{"id":"GTDB:s__Prochlorococcus_B_marinus_D","l":"","na":1,"nb":1,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A1570014","Prochlorococcus marinus str. MIT 0917"]]},{"id":"GTDB:s__Prochlorococcus_B_marinus_E","l":"","na":1,"nb":1,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A3014999","Prochlorococcus marinus str. MIT 1013"]]},{"id":"GTDB:s__Prochlorococcus_B_marinus_F","l":"","na":1,"nb":1,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A3015000","Prochlorococcus marinus str. MIT 1214"]]},{"id":"GTDB:s__Prochlorococcus_D_marinus_B","l":"","na":1,"nb":1,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A93059","Prochlorococcus marinus str. MIT 9211"]]},{"id":"GTDB:s__Pseudonocardia_broussonetiae","l":"","na":1,"nb":1,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["NCBITaxon%3A2736640","Pseudonocardia broussonetiae"]]},{"id":"GTDB:s__Rhodanobacter_glycinis_A","l":"","na":1,"nb":1,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"]],"b":[["NCBITaxon%3A582702","Rhodanobacter glycinis"]]},{"id":"GTDB:s__Selenomonas_A_lactilytica","l":"","na":1,"nb":1,"a":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"]],"b":[["NCBITaxon%3A927704","Selenomonas ruminantium subsp. lactilytica TAM6421"]]},{"id":"GTDB:s__Selenomonas_A_ruminantium","l":"","na":1,"nb":1,"a":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"]],"b":[["NCBITaxon%3A1280706","Selenomonas ruminantium subsp. ruminantium ATCC 12561"]]},{"id":"GTDB:s__Serratia_D_symbiotica_A","l":"","na":1,"nb":1,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"]],"b":[["NCBITaxon%3A568817","Serratia symbiotica str. 'Cinara cedri'"]]},{"id":"GTDB:s__Streptococcus_mitis_AY","l":"","na":1,"nb":1,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1000588","Streptococcus mitis bv. 2 str. SK95"]]},{"id":"GTDB:s__Streptococcus_mitis_AZ","l":"","na":1,"nb":1,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A864567","Streptococcus mitis ATCC 6249"]]},{"id":"GTDB:s__Streptococcus_mitis_CQ","l":"","na":1,"nb":1,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1095736","Streptococcus mitis SK575"]]},{"id":"GTDB:s__Streptococcus_mitis_H","l":"","na":1,"nb":1,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A585203","Streptococcus mitis SK564"]]},{"id":"GTDB:s__Streptococcus_mitis_K","l":"","na":1,"nb":1,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1008453","Streptococcus mitis SK1080"]]},{"id":"GTDB:s__Streptococcus_oralis_L","l":"","na":1,"nb":1,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A927666","Streptococcus oralis Uo5"]]},{"id":"GTDB:s__Syntrophus_gentianae","l":"","na":1,"nb":1,"a":[["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["NCBITaxon%3A43775","Syntrophus gentianae"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":1,"nb":1,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["NCBITaxon%3A100226","Streptomyces coelicolor A3(2)"]]},{"id":"NCBITaxon:101028","l":"Fusarium pseudograminearum","na":1,"nb":1,"a":[["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["NCBITaxon%3A101028","Fusarium pseudograminearum"]]},{"id":"NCBITaxon:101201","l":"Trichoderma asperellum","na":1,"nb":1,"a":[["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"]],"b":[["NCBITaxon%3A101201","Trichoderma asperellum"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":1,"nb":1,"a":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["NCBITaxon%3A101510","Rhodococcus jostii RHA1"]]},{"id":"NCBITaxon:1078905","l":"Nitrosotalea devaniterrae","na":1,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"]],"b":[["NCBITaxon%3A1078905","Nitrosotalea devaniterrae"]]},{"id":"NCBITaxon:1079257","l":"Ilyonectria robusta","na":1,"nb":1,"a":[["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"]],"b":[["NCBITaxon%3A1079257","Ilyonectria robusta"]]},{"id":"NCBITaxon:1105143","l":"Kribbella shirazensis","na":1,"nb":1,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["NCBITaxon%3A1105143","Kribbella shirazensis"]]},{"id":"NCBITaxon:1130819","l":"Lysinibacillus mangiferihumi","na":1,"nb":1,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]],"b":[["NCBITaxon%3A1130819","Lysinibacillus mangiferihumi"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":1,"nb":1,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["NCBITaxon%3A1140","Synechococcus elongatus PCC 7942 = FACHB-805"]]},{"id":"NCBITaxon:117187","l":"Fusarium verticillioides","na":1,"nb":1,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]],"b":[["NCBITaxon%3A117187","Fusarium verticillioides"]]},{"id":"NCBITaxon:1176259","l":"Pseudomonas songnenensis","na":1,"nb":1,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]],"b":[["NCBITaxon%3A1176259","Pseudomonas songnenensis"]]},{"id":"NCBITaxon:118127","l":"Chryseobacterium proteolyticum","na":1,"nb":1,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["NCBITaxon%3A118127","Chryseobacterium proteolyticum"]]},{"id":"NCBITaxon:118667","l":"Bordetella sp. M1-6","na":1,"nb":1,"a":[["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"]],"b":[["NCBITaxon%3A118667","Bordetella sp. M1-6"]]},{"id":"NCBITaxon:118669","l":"Pseudoxanthomonas sp. M1-3","na":1,"nb":1,"a":[["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"]],"b":[["NCBITaxon%3A118669","Pseudoxanthomonas sp. M1-3"]]},{"id":"NCBITaxon:1261393","l":"Desulfatiglans parachlorophenolica","na":1,"nb":1,"a":[["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]],"b":[["NCBITaxon%3A1261393","Desulfatiglans parachlorophenolica"]]},{"id":"NCBITaxon:1334106","l":"Phyllobacterium loti","na":1,"nb":1,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A1334106","Phyllobacterium loti"]]},{"id":"NCBITaxon:1350461","l":"Synechococcus elongatus UTEX 2973","na":1,"nb":1,"a":[["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["NCBITaxon%3A1350461","Synechococcus elongatus UTEX 2973"]]},{"id":"NCBITaxon:1379858","l":"Mucispirillum schaedleri ASF457","na":1,"nb":1,"a":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"]],"b":[["NCBITaxon%3A1379858","Mucispirillum schaedleri ASF457"]]},{"id":"NCBITaxon:1384459","l":"Methyloceanibacter caenitepidi","na":1,"nb":1,"a":[["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"]],"b":[["NCBITaxon%3A1384459","Methyloceanibacter caenitepidi"]]},{"id":"NCBITaxon:1501972","l":"Brevundimonas sp. R3","na":1,"nb":1,"a":[["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["NCBITaxon%3A1501972","Brevundimonas sp. R3"]]},{"id":"NCBITaxon:1546519","l":"Sulfitobacter sp. SA11","na":1,"nb":1,"a":[["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["NCBITaxon%3A1546519","Sulfitobacter sp. SA11"]]},{"id":"NCBITaxon:1577725","l":"Conticribra weissflogii","na":1,"nb":1,"a":[["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]],"b":[["NCBITaxon%3A1577725","Conticribra weissflogii"]]},{"id":"NCBITaxon:1605331","l":"Microbacterium sp. UYFA68","na":1,"nb":1,"a":[["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["NCBITaxon%3A1605331","Microbacterium sp. UYFA68"]]},{"id":"NCBITaxon:1641990","l":"Mycolicibacterium montmartrense","na":1,"nb":1,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A1641990","Mycolicibacterium montmartrense"]]},{"id":"NCBITaxon:1642646","l":"Petrimonas mucosa","na":1,"nb":1,"a":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"]],"b":[["NCBITaxon%3A1642646","Petrimonas mucosa"]]},{"id":"NCBITaxon:1646340","l":"Kosakonia pseudosacchari","na":1,"nb":1,"a":[["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"]],"b":[["NCBITaxon%3A1646340","Kosakonia pseudosacchari"]]},{"id":"NCBITaxon:1671625","l":"Candidatus Methanoculleus thermohydrogenotrophicum","na":1,"nb":1,"a":[["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"]],"b":[["NCBITaxon%3A1671625","Candidatus Methanoculleus thermohydrogenotrophicum"]]},{"id":"NCBITaxon:1673428","l":"Cuniculiplasma divulgatum","na":1,"nb":1,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["NCBITaxon%3A1673428","Cuniculiplasma divulgatum"]]},{"id":"NCBITaxon:179879","l":"Burkholderia anthina","na":1,"nb":1,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["NCBITaxon%3A179879","Burkholderia anthina"]]},{"id":"NCBITaxon:1814128","l":"Streptococcus halotolerans","na":1,"nb":1,"a":[["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["NCBITaxon%3A1814128","Streptococcus halotolerans"]]},{"id":"NCBITaxon:1827305","l":"Stenotrophomonas sp. MYb57","na":1,"nb":1,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["NCBITaxon%3A1827305","Stenotrophomonas sp. MYb57"]]},{"id":"NCBITaxon:1869185","l":"Taibaiella sp.","na":1,"nb":1,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]],"b":[["NCBITaxon%3A1869185","Taibaiella sp."]]},{"id":"NCBITaxon:1871068","l":"Phyllobacteriaceae bacterium","na":1,"nb":1,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["NCBITaxon%3A1871068","Phyllobacteriaceae bacterium"]]},{"id":"NCBITaxon:1872086","l":"Ensifer sp.","na":1,"nb":1,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]],"b":[["NCBITaxon%3A1872086","Ensifer sp."]]},{"id":"NCBITaxon:1872114","l":"Acidiplasma sp.","na":1,"nb":1,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["NCBITaxon%3A1872114","Acidiplasma sp."]]},{"id":"NCBITaxon:1872122","l":"Acidovorax sp.","na":1,"nb":1,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"]],"b":[["NCBITaxon%3A1872122","Acidovorax sp."]]},{"id":"NCBITaxon:1872427","l":"Alcanivorax sp.","na":1,"nb":1,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["NCBITaxon%3A1872427","Alcanivorax sp."]]},{"id":"NCBITaxon:1873462","l":"Microbacteriaceae bacterium","na":1,"nb":1,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["NCBITaxon%3A1873462","Microbacteriaceae bacterium"]]},{"id":"NCBITaxon:1898203","l":"Lachnospiraceae bacterium","na":1,"nb":1,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]],"b":[["NCBITaxon%3A1898203","Lachnospiraceae bacterium"]]},{"id":"NCBITaxon:1904413","l":"Suillus clintonianus","na":1,"nb":1,"a":[["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"]],"b":[["NCBITaxon%3A1904413","Suillus clintonianus"]]},{"id":"NCBITaxon:1904944","l":"Stenotrophomonas sp. LM091","na":1,"nb":1,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["NCBITaxon%3A1904944","Stenotrophomonas sp. LM091"]]},{"id":"NCBITaxon:1913961","l":"Rhizobiaceae bacterium","na":1,"nb":1,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["NCBITaxon%3A1913961","Rhizobiaceae bacterium"]]},{"id":"NCBITaxon:1914538","l":"Pseudomonadaceae bacterium","na":1,"nb":1,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["NCBITaxon%3A1914538","Pseudomonadaceae bacterium"]]},{"id":"NCBITaxon:1918507","l":"Candidatus Phosphitivorax anaerolimi","na":1,"nb":1,"a":[["Phosphitivorax_Methanoculleus_Lithosyntrophy_Phosphite_Coculture.html","Phosphitivorax-Methanoculleus Lithosyntrophic Phosphite-Oxidizing Methanogenic Culture"]],"b":[["NCBITaxon%3A1918507","Candidatus Phosphitivorax anaerolimi"]]},{"id":"NCBITaxon:1955250","l":"Novosphingobium endophyticum","na":1,"nb":1,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]],"b":[["NCBITaxon%3A1955250","Novosphingobium endophyticum"]]},{"id":"NCBITaxon:1979961","l":"Wenzhouxiangella sp.","na":1,"nb":1,"a":[["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["NCBITaxon%3A1979961","Wenzhouxiangella sp."]]},{"id":"NCBITaxon:2026194","l":"Bacillus paramycoides","na":1,"nb":1,"a":[["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["NCBITaxon%3A2026194","Bacillus paramycoides"]]},{"id":"NCBITaxon:2030806","l":"Burkholderiaceae bacterium","na":1,"nb":1,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["NCBITaxon%3A2030806","Burkholderiaceae bacterium"]]},{"id":"NCBITaxon:203124","l":"Trichodesmium erythraeum IMS101","na":1,"nb":1,"a":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["NCBITaxon%3A203124","Trichodesmium erythraeum IMS101"]]},{"id":"NCBITaxon:2093828","l":"Neorhizobium tomejilense","na":1,"nb":1,"a":[["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["NCBITaxon%3A2093828","Neorhizobium tomejilense"]]},{"id":"NCBITaxon:216389","l":"Dehalococcoides mccartyi BAV1","na":1,"nb":1,"a":[["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["NCBITaxon%3A216389","Dehalococcoides mccartyi BAV1"]]},{"id":"NCBITaxon:219572","l":"Pseudomonas antarctica","na":1,"nb":1,"a":[["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["NCBITaxon%3A219572","Pseudomonas antarctica"]]},{"id":"NCBITaxon:2268204","l":"Thermoplasmatales archaeon","na":1,"nb":1,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["NCBITaxon%3A2268204","Thermoplasmatales archaeon"]]},{"id":"NCBITaxon:237612","l":"Sphingomonas panni","na":1,"nb":1,"a":[["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["NCBITaxon%3A237612","Sphingomonas panni"]]},{"id":"NCBITaxon:239","l":"Flavobacterium sp.","na":1,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["NCBITaxon%3A239","Flavobacterium sp."]]},{"id":"NCBITaxon:2496117","l":"Variovorax beijingensis","na":1,"nb":1,"a":[["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["NCBITaxon%3A2496117","Variovorax beijingensis"]]},{"id":"NCBITaxon:258594","l":"Rhodopseudomonas palustris CGA009","na":1,"nb":1,"a":[["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"]],"b":[["NCBITaxon%3A258594","Rhodopseudomonas palustris CGA009"]]},{"id":"NCBITaxon:2591003","l":"Ferroplasma sp.","na":1,"nb":1,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["NCBITaxon%3A2591003","Ferroplasma sp."]]},{"id":"NCBITaxon:270351","l":"Methylobacterium aquaticum","na":1,"nb":1,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["NCBITaxon%3A270351","Methylobacterium aquaticum"]]},{"id":"NCBITaxon:2710591","l":"Pseudomonas arcuscaelestis","na":1,"nb":1,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["NCBITaxon%3A2710591","Pseudomonas arcuscaelestis"]]},{"id":"NCBITaxon:272772","l":"Pseudomonas pudica","na":1,"nb":1,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"]],"b":[["NCBITaxon%3A272772","Pseudomonas pudica"]]},{"id":"NCBITaxon:2736640","l":"Pseudonocardia broussonetiae","na":1,"nb":1,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["NCBITaxon%3A2736640","Pseudonocardia broussonetiae"]]},{"id":"NCBITaxon:27381","l":"Funneliformis mosseae","na":1,"nb":1,"a":[["Mediterranean_AM_Fungal_SixSpecies_SynCom.html","Mediterranean AM Fungal Six-Species SynCom"]],"b":[["NCBITaxon%3A27381","Funneliformis mosseae"]]},{"id":"NCBITaxon:2771362","l":"Stenotrophomonas cyclobalanopsidis","na":1,"nb":1,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["NCBITaxon%3A2771362","Stenotrophomonas cyclobalanopsidis"]]},{"id":"NCBITaxon:2782567","l":"Paenarthrobacter sp. GOM3","na":1,"nb":1,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["NCBITaxon%3A2782567","Paenarthrobacter sp. GOM3"]]},{"id":"NCBITaxon:280333","l":"Bradyrhizobium pachyrhizi","na":1,"nb":1,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["NCBITaxon%3A280333","Bradyrhizobium pachyrhizi"]]},{"id":"NCBITaxon:2833596","l":"Pseudomonas harudinis","na":1,"nb":1,"a":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"]],"b":[["NCBITaxon%3A2833596","Pseudomonas harudinis"]]},{"id":"NCBITaxon:2853159","l":"Pseudomonas pergaminensis","na":1,"nb":1,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["NCBITaxon%3A2853159","Pseudomonas pergaminensis"]]},{"id":"NCBITaxon:2886510","l":"Sphingobacterium paramultivorum","na":1,"nb":1,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["NCBITaxon%3A2886510","Sphingobacterium paramultivorum"]]},{"id":"NCBITaxon:2903","l":"Emiliania huxleyi","na":1,"nb":1,"a":[["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"]],"b":[["NCBITaxon%3A2903","Emiliania huxleyi"]]},{"id":"NCBITaxon:2924872","l":"Acididesulfobacillus","na":1,"nb":1,"a":[["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"]],"b":[["NCBITaxon%3A1561005","Acididesulfobacillus acetoxydans"]]},{"id":"NCBITaxon:29305","l":"Streptomyces griseoincarnatus","na":1,"nb":1,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["NCBITaxon%3A29305","Streptomyces griseoincarnatus"]]},{"id":"NCBITaxon:2982533","l":"Microbacterium forte","na":1,"nb":1,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["NCBITaxon%3A2982533","Microbacterium forte"]]},{"id":"NCBITaxon:29875","l":"Trichoderma virens","na":1,"nb":1,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"]],"b":[["NCBITaxon%3A29875","Trichoderma virens"]]},{"id":"NCBITaxon:3060965","l":"Paenibacillus sp. 11B","na":1,"nb":1,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"]],"b":[["NCBITaxon%3A3060965","Paenibacillus sp. 11B"]]},{"id":"NCBITaxon:3120696","l":"Ferrovibrionaceae","na":1,"nb":1,"a":[["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["NCBITaxon%3A3121786","Ferrovibrionaceae bacterium"]]},{"id":"NCBITaxon:314235","l":"Phyllobacterium brassicacearum","na":1,"nb":1,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A314235","Phyllobacterium brassicacearum"]]},{"id":"NCBITaxon:316385","l":"Escherichia coli str. K-12 substr. DH10B","na":1,"nb":1,"a":[["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["NCBITaxon%3A316385","Escherichia coli str. K-12 substr. DH10B"]]},{"id":"NCBITaxon:319464","l":"Clostridium sp. FG4","na":1,"nb":1,"a":[["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"]],"b":[["NCBITaxon%3A319464","Clostridium sp. FG4"]]},{"id":"NCBITaxon:323284","l":"Alcaligenes aquatilis","na":1,"nb":1,"a":[["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["NCBITaxon%3A323284","Alcaligenes aquatilis"]]},{"id":"NCBITaxon:324747","l":"Pseudoxanthomonas byssovorax","na":1,"nb":1,"a":[["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]],"b":[["NCBITaxon%3A324747","Pseudoxanthomonas byssovorax"]]},{"id":"NCBITaxon:332101","l":"Clostridium drakei","na":1,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"]],"b":[["NCBITaxon%3A332101","Clostridium drakei"]]},{"id":"NCBITaxon:33883","l":"Microbacterium arborescens","na":1,"nb":1,"a":[["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["NCBITaxon%3A33883","Microbacterium arborescens"]]},{"id":"NCBITaxon:340177","l":"Chlorobium chlorochromatii CaD3","na":1,"nb":1,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"]],"b":[["NCBITaxon%3A340177","Chlorobium chlorochromatii CaD3"]]},{"id":"NCBITaxon:34358","l":"Maudiozyma exigua","na":1,"nb":1,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["NCBITaxon%3A34358","Maudiozyma exigua"]]},{"id":"NCBITaxon:346911","l":"Labrys okinawensis","na":1,"nb":1,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]],"b":[["NCBITaxon%3A346911","Labrys okinawensis"]]},{"id":"NCBITaxon:346912","l":"Labrys miyagiensis","na":1,"nb":1,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]],"b":[["NCBITaxon%3A346912","Labrys miyagiensis"]]},{"id":"NCBITaxon:36015","l":"Pichia kluyveri","na":1,"nb":1,"a":[["Pichia_Lactiplantibacillus_CCMA_Plant_Beverage_Coculture.html","Pichia-Lactiplantibacillus CCMA Plant Beverage Coculture"]],"b":[["NCBITaxon%3A36015","Pichia kluyveri"]]},{"id":"NCBITaxon:363331","l":"Chryseobacterium taiwanense","na":1,"nb":1,"a":[["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["NCBITaxon%3A363331","Chryseobacterium taiwanense"]]},{"id":"NCBITaxon:363867","l":"Aeromicrobium ginsengisoli","na":1,"nb":1,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A363867","Aeromicrobium ginsengisoli"]]},{"id":"NCBITaxon:372461","l":"Buchnera aphidicola BCc","na":1,"nb":1,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"]],"b":[["NCBITaxon%3A372461","Buchnera aphidicola BCc"]]},{"id":"NCBITaxon:37319","l":"Pseudo-nitzschia multiseries","na":1,"nb":1,"a":[["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["NCBITaxon%3A37319","Pseudo-nitzschia multiseries"]]},{"id":"NCBITaxon:375486","l":"Paenibacillus sp. PALXIL05","na":1,"nb":1,"a":[["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["NCBITaxon%3A375486","Paenibacillus sp. PALXIL05"]]},{"id":"NCBITaxon:37927","l":"Sinomonas atrocyanea","na":1,"nb":1,"a":[["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"]],"b":[["NCBITaxon%3A37927","Sinomonas atrocyanea"]]},{"id":"NCBITaxon:37929","l":"Glutamicibacter nicotianae","na":1,"nb":1,"a":[["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"]],"b":[["NCBITaxon%3A37929","Glutamicibacter nicotianae"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"]],"b":[["NCBITaxon%3A395960","Rhodopseudomonas palustris TIE-1"]]},{"id":"NCBITaxon:399726","l":"Thermoanaerobacter sp. X514","na":1,"nb":1,"a":[["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"]],"b":[["NCBITaxon%3A399726","Thermoanaerobacter sp. X514"]]},{"id":"NCBITaxon:419541","l":"Leptospirillum sp. Group II '5-way CG'","na":1,"nb":1,"a":[["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"]],"b":[["NCBITaxon%3A419541","Leptospirillum sp. Group II '5-way CG'"]]},{"id":"NCBITaxon:427562","l":"Bacillus sp. 'Bacillus M3'","na":1,"nb":1,"a":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"]],"b":[["NCBITaxon%3A427562","Bacillus sp. 'Bacillus M3'"]]},{"id":"NCBITaxon:428990","l":"Novosphingobium mathurense","na":1,"nb":1,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]],"b":[["NCBITaxon%3A428990","Novosphingobium mathurense"]]},{"id":"NCBITaxon:43775","l":"Syntrophus gentianae","na":1,"nb":1,"a":[["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["NCBITaxon%3A43775","Syntrophus gentianae"]]},{"id":"NCBITaxon:43925","l":"Nannochloropsis oculata","na":1,"nb":1,"a":[["Microalgae_Cyanobacteria_Bioactive_Peptide_Consortia.html","Microalgae-Cyanobacteria Bioactive Peptide Consortia"]],"b":[["NCBITaxon%3A43925","Nannochloropsis oculata"]]},{"id":"NCBITaxon:453960","l":"Sulfobacillus benefaciens","na":1,"nb":1,"a":[["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"]],"b":[["NCBITaxon%3A453960","Sulfobacillus benefaciens"]]},{"id":"NCBITaxon:4757","l":"Neocallimastix frontalis","na":1,"nb":1,"a":[["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"]],"b":[["NCBITaxon%3A4757","Neocallimastix frontalis"]]},{"id":"NCBITaxon:4876","l":"Rhizophagus intraradices","na":1,"nb":1,"a":[["Mediterranean_AM_Fungal_SixSpecies_SynCom.html","Mediterranean AM Fungal Six-Species SynCom"]],"b":[["NCBITaxon%3A4876","Rhizophagus intraradices"]]},{"id":"NCBITaxon:487698","l":"Stenotrophomonas pavanii","na":1,"nb":1,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]],"b":[["NCBITaxon%3A487698","Stenotrophomonas pavanii"]]},{"id":"NCBITaxon:492774","l":"Rhizobium alamii","na":1,"nb":1,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A492774","Rhizobium alamii"]]},{"id":"NCBITaxon:4956","l":"Zygosaccharomyces rouxii","na":1,"nb":1,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["NCBITaxon%3A4956","Zygosaccharomyces rouxii"]]},{"id":"NCBITaxon:5007","l":"Brettanomyces bruxellensis","na":1,"nb":1,"a":[["Sichuan_Shai_Vinegar_Yeast_Flavor_SynCom.html","Sichuan Shai Vinegar Yeast Flavor SynCom"]],"b":[["NCBITaxon%3A5007","Brettanomyces bruxellensis"]]},{"id":"NCBITaxon:505252","l":"Marivita cryptomonadis","na":1,"nb":1,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["NCBITaxon%3A505252","Marivita cryptomonadis"]]},{"id":"NCBITaxon:51915","l":"Maudiozyma humilis","na":1,"nb":1,"a":[["Sichuan_Shai_Vinegar_Yeast_Flavor_SynCom.html","Sichuan Shai Vinegar Yeast Flavor SynCom"]],"b":[["NCBITaxon%3A51915","Maudiozyma humilis"]]},{"id":"NCBITaxon:5323","l":"Pleurotus eryngii","na":1,"nb":1,"a":[["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"]],"b":[["NCBITaxon%3A5323","Pleurotus eryngii"]]},{"id":"NCBITaxon:5535","l":"Rhodotorula glutinis","na":1,"nb":1,"a":[["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["NCBITaxon%3A5535","Rhodotorula glutinis"]]},{"id":"NCBITaxon:5547","l":"Trichoderma viride","na":1,"nb":1,"a":[["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["NCBITaxon%3A5547","Trichoderma viride"]]},{"id":"NCBITaxon:571256","l":"Brucella pituitosa","na":1,"nb":1,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]],"b":[["NCBITaxon%3A571256","Brucella pituitosa"]]},{"id":"NCBITaxon:574561","l":"Rhizobium pisi","na":1,"nb":1,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["NCBITaxon%3A574561","Rhizobium pisi"]]},{"id":"NCBITaxon:577386","l":"Paraniabella yanshanensis","na":1,"nb":1,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["NCBITaxon%3A577386","Paraniabella yanshanensis"]]},{"id":"NCBITaxon:582702","l":"Rhodanobacter glycinis","na":1,"nb":1,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"]],"b":[["NCBITaxon%3A582702","Rhodanobacter glycinis"]]},{"id":"NCBITaxon:592050","l":"Acidovorax soli","na":1,"nb":1,"a":[["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["NCBITaxon%3A592050","Acidovorax soli"]]},{"id":"NCBITaxon:666685","l":"Rhodanobacter denitrificans","na":1,"nb":1,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"]],"b":[["NCBITaxon%3A666685","Rhodanobacter denitrificans"]]},{"id":"NCBITaxon:668369","l":"Escherichia coli DH5[alpha]","na":1,"nb":1,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["NCBITaxon%3A668369","Escherichia coli DH5[alpha]"]]},{"id":"NCBITaxon:67355","l":"Streptomyces recifensis","na":1,"nb":1,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]],"b":[["NCBITaxon%3A67355","Streptomyces recifensis"]]},{"id":"NCBITaxon:67356","l":"Streptomyces resistomycificus","na":1,"nb":1,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A67356","Streptomyces resistomycificus"]]},{"id":"NCBITaxon:68264","l":"Streptomyces rishiriensis","na":1,"nb":1,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A68264","Streptomyces rishiriensis"]]},{"id":"NCBITaxon:68274","l":"Streptomyces tauricus","na":1,"nb":1,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A68274","Streptomyces tauricus"]]},{"id":"NCBITaxon:69373","l":"Curtobacterium pusillum","na":1,"nb":1,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]],"b":[["NCBITaxon%3A69373","Curtobacterium pusillum"]]},{"id":"NCBITaxon:759811","l":"Lysinibacillus pakistanensis","na":1,"nb":1,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"]],"b":[["NCBITaxon%3A759811","Lysinibacillus pakistanensis"]]},{"id":"NCBITaxon:82","l":"Hyphomicrobium sp.","na":1,"nb":1,"a":[["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"]],"b":[["NCBITaxon%3A82","Hyphomicrobium sp."]]},{"id":"NCBITaxon:82803","l":"Trichococcus flocculiformis","na":1,"nb":1,"a":[["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["NCBITaxon%3A82803","Trichococcus flocculiformis"]]},{"id":"NCBITaxon:857252","l":"Halopseudomonas aestusnigri","na":1,"nb":1,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["NCBITaxon%3A857252","Halopseudomonas aestusnigri"]]},{"id":"NCBITaxon:86265","l":"Pseudomonas thivervalensis","na":1,"nb":1,"a":[["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"]],"b":[["NCBITaxon%3A86265","Pseudomonas thivervalensis"]]},{"id":"NCBITaxon:864069","l":"Microvirga lotononidis","na":1,"nb":1,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["NCBITaxon%3A864069","Microvirga lotononidis"]]},{"id":"NCBITaxon:870529","l":"Bacillus sp. DB7","na":1,"nb":1,"a":[["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]],"b":[["NCBITaxon%3A870529","Bacillus sp. DB7"]]},{"id":"NCBITaxon:870530","l":"Klebsiella sp. DB13","na":1,"nb":1,"a":[["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]],"b":[["NCBITaxon%3A870530","Klebsiella sp. DB13"]]},{"id":"NCBITaxon:870532","l":"Ochrobactrum sp. DB8","na":1,"nb":1,"a":[["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]],"b":[["NCBITaxon%3A870532","Ochrobactrum sp. DB8"]]},{"id":"NCBITaxon:871203","l":"Caballeronia zhejiangensis","na":1,"nb":1,"a":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]],"b":[["NCBITaxon%3A871203","Caballeronia zhejiangensis"]]},{"id":"NCBITaxon:940139","l":"Terriglobus aquaticus","na":1,"nb":1,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]],"b":[["NCBITaxon%3A940139","Terriglobus aquaticus"]]},{"id":"NCBITaxon:94130","l":"Rhizophagus clarus","na":1,"nb":1,"a":[["Mediterranean_AM_Fungal_SixSpecies_SynCom.html","Mediterranean AM Fungal Six-Species SynCom"]],"b":[["NCBITaxon%3A94130","Rhizophagus clarus"]]},{"id":"NCBITaxon:94626","l":"Brucella tritici","na":1,"nb":1,"a":[["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]],"b":[["NCBITaxon%3A94626","Brucella tritici"]]},{"id":"NCBITaxon:97485","l":"Prymnesium parvum","na":1,"nb":1,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["NCBITaxon%3A97485","Prymnesium parvum"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/CultureMech--TaxonMech.json b/assets/fleet/edges/CultureMech--TaxonMech.json new file mode 100644 index 0000000..b8dfcb5 --- /dev/null +++ b/assets/fleet/edges/CultureMech--TaxonMech.json @@ -0,0 +1 @@ +{"a":"CultureMech","b":"TaxonMech","base":{"CultureMech":"https://github.com/CultureBotAI/CultureMech/blob/main/data/merge_yaml/merged/","TaxonMech":"https://culturebotai.github.io/TaxonMech/pages/taxon.html?id="},"n":54,"by":{"NCBITaxon":54},"terms":[{"id":"NCBITaxon:210","l":"Helicobacter pylori","na":1,"nb":631,"a":[["BRUCELLA_BROTH.yaml","brucella_broth"]],"b":[["NCBITaxon%3A210","Helicobacter pylori"],["NCBITaxon%3A1028810","Helicobacter pylori 10700"],["NCBITaxon%3A585532","Helicobacter pylori 118"],["NCBITaxon%3A102610","Helicobacter pylori #12"],["NCBITaxon%3A585533","Helicobacter pylori 120"],["NCBITaxon%3A103187","Helicobacter pylori 15818"]]},{"id":"NCBITaxon:823","l":"Parabacteroides distasonis","na":1,"nb":45,"a":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]],"b":[["NCBITaxon%3A823","Parabacteroides distasonis"],["NCBITaxon%3A435591","Parabacteroides distasonis ATCC 8503"],["NCBITaxon%3A999416","Parabacteroides distasonis CL03T12C09"],["NCBITaxon%3A999417","Parabacteroides distasonis CL09T03C24"],["NCBITaxon%3A1339342","Parabacteroides distasonis str. 3776 D15 i"],["NCBITaxon%3A1339343","Parabacteroides distasonis str. 3776 D15 iv"]]},{"id":"NCBITaxon:851","l":"Fusobacterium nucleatum","na":1,"nb":35,"a":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]],"b":[["NCBITaxon%3A76859","Fusobacterium animalis"],["NCBITaxon%3A997347","Fusobacterium animalis ATCC 51191"],["NCBITaxon%3A1583098","Fusobacterium hwasookii"],["NCBITaxon%3A1216362","Fusobacterium hwasookii ChDC F128"],["NCBITaxon%3A1307441","Fusobacterium hwasookii ChDC F145"],["NCBITaxon%3A1307442","Fusobacterium hwasookii ChDC F174"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":1,"nb":29,"a":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]],"b":[["NCBITaxon%3A1579","Lactobacillus acidophilus"],["NCBITaxon%3A47770","Lactobacillus crispatus"],["NCBITaxon%3A575595","Lactobacillus crispatus 125-2-CHN"],["NCBITaxon%3A1381118","Lactobacillus crispatus 2029"],["NCBITaxon%3A679188","Lactobacillus crispatus 214-1"],["NCBITaxon%3A440496","Lactobacillus crispatus CTV-05"]]},{"id":"NCBITaxon:859","l":"Fusobacterium necrophorum","na":1,"nb":18,"a":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]],"b":[["NCBITaxon%3A134605","Fusobacterium equinum"],["NCBITaxon%3A849","Fusobacterium gonidiaformans"],["NCBITaxon%3A859","Fusobacterium necrophorum"],["NCBITaxon%3A1441734","Fusobacterium necrophorum BFTR-1"],["NCBITaxon%3A1441736","Fusobacterium necrophorum BFTR-2"],["NCBITaxon%3A1441732","Fusobacterium necrophorum BL"]]},{"id":"NCBITaxon:1148","l":"Synechocystis sp. PCC 6803","na":1,"nb":12,"a":[["bg11__f771062f.yaml","bg11"]],"b":[["NCBITaxon%3A1148","Synechocystis sp. PCC 6803"],["NCBITaxon%3A2932627","Synechocystis sp. PCC 6803 subst. PCC-Mn"],["NCBITaxon%3A2932628","Synechocystis sp. PCC 6803 subst. PCC-Pn"],["NCBITaxon%3A2962876","Synechocystis sp. PCC 6803 substr. D1-D170H"],["NCBITaxon%3A1080228","Synechocystis sp. PCC 6803 substr. GT-I"],["NCBITaxon%3A2932626","Synechocystis sp. PCC 6803 substr. GT-In"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":1,"nb":11,"a":[["RHODOBACTER_SPHAEROIDES_MEDIUM.yaml","rhodobacter_sphaeroides_medium"]],"b":[["NCBITaxon%3A1063","Cereibacter sphaeroides"],["NCBITaxon%3A272943","Cereibacter sphaeroides 2.4.1"],["NCBITaxon%3A349102","Cereibacter sphaeroides ATCC 17025"],["NCBITaxon%3A349101","Cereibacter sphaeroides ATCC 17029"],["NCBITaxon%3A39723","Cereibacter sphaeroides f. sp. denitrificans"],["NCBITaxon%3A633146","Cereibacter sphaeroides GA"]]},{"id":"NCBITaxon:28125","l":"Prevotella bivia","na":1,"nb":8,"a":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]],"b":[["NCBITaxon%3A28125","Prevotella bivia"],["NCBITaxon%3A1115806","Prevotella bivia B11"],["NCBITaxon%3A1287476","Prevotella bivia DNF00188"],["NCBITaxon%3A1401068","Prevotella bivia DNF00320"],["NCBITaxon%3A1401072","Prevotella bivia DNF00650"],["NCBITaxon%3A868129","Prevotella bivia DSM 20514"]]},{"id":"NCBITaxon:2099","l":"Mesomycoplasma hyopneumoniae","na":1,"nb":7,"a":[["FRIIS_MEDIUM.yaml","friis_medium"]],"b":[["NCBITaxon%3A2099","Mesomycoplasma hyopneumoniae"],["NCBITaxon%3A907287","Mesomycoplasma hyopneumoniae 168"],["NCBITaxon%3A1116211","Mesomycoplasma hyopneumoniae 168-L"],["NCBITaxon%3A295358","Mesomycoplasma hyopneumoniae 232"],["NCBITaxon%3A754503","Mesomycoplasma hyopneumoniae 7422"],["NCBITaxon%3A262722","Mesomycoplasma hyopneumoniae 7448"]]},{"id":"NCBITaxon:35554","l":"Geobacter sulfurreducens","na":1,"nb":5,"a":[["GEOBACTER_SULFURREDUCENS_MEDIUM.yaml","geobacter_sulfurreducens_medium"]],"b":[["NCBITaxon%3A35554","Geobacter sulfurreducens"],["NCBITaxon%3A663917","Geobacter sulfurreducens KN400"],["NCBITaxon%3A243231","Geobacter sulfurreducens PCA"],["NCBITaxon%3A1260928","Geobacter sulfurreducens subsp. ethanolicus"],["NCBITaxon%3A1649546","Geobacter sulfurreducens subsp. sulfurreducens"]]},{"id":"NCBITaxon:301953","l":"Caldicellulosiruptor acetigenus","na":1,"nb":4,"a":[["caldicellulosiruptor_medium_for_dsm_10319.yaml","caldicellulosiruptor_medium_for_dsm_10319"]],"b":[["NCBITaxon%3A301953","Caldicellulosiruptor acetigenus"],["NCBITaxon%3A632516","Caldicellulosiruptor acetigenus 6A"],["NCBITaxon%3A1121259","Caldicellulosiruptor acetigenus DSM 7040"],["NCBITaxon%3A632335","Caldicellulosiruptor acetigenus I77R1B"]]},{"id":"NCBITaxon:511145","l":"Escherichia coli str. K-12 substr. MG1655","na":1,"nb":4,"a":[["LB_Medium.yaml","lb_medium"]],"b":[["NCBITaxon%3A47678","Bacteroides caccae"],["NCBITaxon%3A411901","Bacteroides caccae ATCC 43185"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A511145","Escherichia coli str. K-12 substr. MG1655"]]},{"id":"NCBITaxon:2234","l":"Archaeoglobus fulgidus","na":1,"nb":3,"a":[["archaeoglobus_medium_dsm_399.yaml","archaeoglobus_medium_dsm_399"]],"b":[["NCBITaxon%3A2234","Archaeoglobus fulgidus"],["NCBITaxon%3A224325","Archaeoglobus fulgidus DSM 4304"],["NCBITaxon%3A1344584","Archaeoglobus fulgidus DSM 8774"]]},{"id":"NCBITaxon:2261","l":"Pyrococcus furiosus","na":1,"nb":3,"a":[["pyrococcus_medium__6ffabef8.yaml","pyrococcus_medium"]],"b":[["NCBITaxon%3A2261","Pyrococcus furiosus"],["NCBITaxon%3A1185654","Pyrococcus furiosus COM1"],["NCBITaxon%3A186497","Pyrococcus furiosus DSM 3638"]]},{"id":"NCBITaxon:55518","l":"Magnetospirillum gryphiswaldense","na":1,"nb":3,"a":[["magnetospirillum_gryphiswaldense_medium__6f77a326.yaml","magnetospirillum_gryphiswaldense_medium"]],"b":[["NCBITaxon%3A55518","Magnetospirillum gryphiswaldense"],["NCBITaxon%3A431944","Magnetospirillum gryphiswaldense MSR-1"],["NCBITaxon%3A1430440","Magnetospirillum gryphiswaldense MSR-1 v2"]]},{"id":"NCBITaxon:1042417","l":"Brachyspira pilosicoli P43/6/78","na":1,"nb":2,"a":[["BHIS__8d771a65.yaml","BHIS"]],"b":[["NCBITaxon%3A52584","Brachyspira pilosicoli"],["NCBITaxon%3A1042417","Brachyspira pilosicoli P43/6/78"]]},{"id":"NCBITaxon:111955","l":"Sulfurisphaera tokodaii","na":1,"nb":2,"a":[["sulfolobus_medium_anaerobic_for_dsm_2162.yaml","sulfolobus_medium_anaerobic_for_dsm_2162"]],"b":[["NCBITaxon%3A111955","Sulfurisphaera tokodaii"],["NCBITaxon%3A273063","Sulfurisphaera tokodaii str. 7"]]},{"id":"NCBITaxon:114376","l":"Ignicoccus pacificus","na":1,"nb":2,"a":[["ignicoccus_medium_for_dsm_18386.yaml","ignicoccus_medium_for_dsm_18386"]],"b":[["NCBITaxon%3A114376","Ignicoccus pacificus"],["NCBITaxon%3A940294","Ignicoccus pacificus DSM 13166"]]},{"id":"NCBITaxon:1236958","l":"Sneathiella glossodoripedis JCM 23214","na":1,"nb":2,"a":[["Marine_Agar_2216.yaml","marine_agar_2216"]],"b":[["NCBITaxon%3A418853","Sneathiella glossodoripedis"],["NCBITaxon%3A1236958","Sneathiella glossodoripedis JCM 23214"]]},{"id":"NCBITaxon:160233","l":"Ignicoccus hospitalis","na":1,"nb":2,"a":[["ignicoccus_medium_for_dsm_18386.yaml","ignicoccus_medium_for_dsm_18386"]],"b":[["NCBITaxon%3A160233","Ignicoccus hospitalis"],["NCBITaxon%3A453591","Ignicoccus hospitalis KIN4/I"]]},{"id":"NCBITaxon:2172005","l":"Methylosinus sp. Ce-a6","na":1,"nb":2,"a":[["METHYLOTROPH_MEDIUM.yaml","methylotroph_medium"]],"b":[["NCBITaxon%3A427","Methylosinus sp."],["NCBITaxon%3A2172005","Methylosinus sp. Ce-a6"]]},{"id":"NCBITaxon:2203","l":"Methanospirillum hungatei","na":1,"nb":2,"a":[["medium_for_co_culture_of_strain_jt_with_methanospirillum_hungatei_nbrc_100397.yaml","medium_for_co_culture_of_strain_jt_with_methanospirillum_hungatei_nbrc_100397"]],"b":[["NCBITaxon%3A2203","Methanospirillum hungatei"],["NCBITaxon%3A323259","Methanospirillum hungatei JF-1"]]},{"id":"NCBITaxon:2214","l":"Methanosarcina acetivorans","na":1,"nb":2,"a":[["methanosarcina_medium__046448c4.yaml","methanosarcina_medium"]],"b":[["NCBITaxon%3A2214","Methanosarcina acetivorans"],["NCBITaxon%3A188937","Methanosarcina acetivorans C2A"]]},{"id":"NCBITaxon:261964","l":"Kangiella koreensis","na":1,"nb":2,"a":[["bacto_marine_broth_difco_2216_for_dsm_11879.yaml","bacto_marine_broth_difco_2216_for_dsm_11879"]],"b":[["NCBITaxon%3A261964","Kangiella koreensis"],["NCBITaxon%3A523791","Kangiella koreensis DSM 16069"]]},{"id":"NCBITaxon:262724","l":"Thermus thermophilus (strain ATCC BAA-163 / DSM 7039 / HB27)","na":1,"nb":2,"a":[["thermus_medium__6b1d1914.yaml","thermus_medium"]],"b":[["NCBITaxon%3A274","Thermus thermophilus"],["NCBITaxon%3A262724","Thermus thermophilus HB27"]]},{"id":"NCBITaxon:28114","l":"Porphyromonas levii","na":1,"nb":2,"a":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]],"b":[["NCBITaxon%3A28114","Porphyromonas levii"],["NCBITaxon%3A1122973","Porphyromonas levii DSM 23370"]]},{"id":"NCBITaxon:31899","l":"Caldicellulosiruptor bescii","na":1,"nb":2,"a":[["caldicellulosiruptor_medium_for_dsm_10319.yaml","caldicellulosiruptor_medium_for_dsm_10319"]],"b":[["NCBITaxon%3A31899","Caldicellulosiruptor bescii"],["NCBITaxon%3A521460","Caldicellulosiruptor bescii DSM 6725"]]},{"id":"NCBITaxon:33028","l":"Staphylococcus saccharolyticus","na":1,"nb":2,"a":[["columbia_blood_agar__e1a4386f.yaml","columbia_blood_agar"]],"b":[["NCBITaxon%3A45972","Staphylococcus pasteuri"],["NCBITaxon%3A33028","Staphylococcus saccharolyticus"]]},{"id":"NCBITaxon:373903","l":"Halothermothrix orenii H 168","na":1,"nb":2,"a":[["halothermothrix_orenii.yaml","halothermothrix_orenii"]],"b":[["NCBITaxon%3A31909","Halothermothrix orenii"],["NCBITaxon%3A373903","Halothermothrix orenii H 168"]]},{"id":"NCBITaxon:413888","l":"Caldicellulosiruptor hydrothermalis","na":1,"nb":2,"a":[["caldicellulosiruptor_medium_for_dsm_10319.yaml","caldicellulosiruptor_medium_for_dsm_10319"]],"b":[["NCBITaxon%3A413888","Caldicellulosiruptor hydrothermalis"],["NCBITaxon%3A632292","Caldicellulosiruptor hydrothermalis 108"]]},{"id":"NCBITaxon:413889","l":"Caldicellulosiruptor kronotskyensis","na":1,"nb":2,"a":[["caldicellulosiruptor_medium_for_dsm_10319.yaml","caldicellulosiruptor_medium_for_dsm_10319"]],"b":[["NCBITaxon%3A413889","Caldicellulosiruptor kronotskyensis"],["NCBITaxon%3A632348","Caldicellulosiruptor kronotskyensis 2002"]]},{"id":"NCBITaxon:43687","l":"Metallosphaera sedula","na":1,"nb":2,"a":[["sulfolobus_medium_for_dsm_5348.yaml","sulfolobus_medium_for_dsm_5348"]],"b":[["NCBITaxon%3A43687","Metallosphaera sedula"],["NCBITaxon%3A399549","Metallosphaera sedula DSM 5348"]]},{"id":"NCBITaxon:44001","l":"Caldicellulosiruptor saccharolyticus","na":1,"nb":2,"a":[["caldicellulosiruptor_medium_for_dsm_10319.yaml","caldicellulosiruptor_medium_for_dsm_10319"]],"b":[["NCBITaxon%3A44001","Caldicellulosiruptor saccharolyticus"],["NCBITaxon%3A351627","Caldicellulosiruptor saccharolyticus DSM 8903"]]},{"id":"NCBITaxon:46632","l":"Picrophilus oshimae","na":1,"nb":2,"a":[["sulfolobus_medium_for_dsm_9790.yaml","sulfolobus_medium_for_dsm_9790"]],"b":[["NCBITaxon%3A46632","Picrophilus oshimae"],["NCBITaxon%3A1122961","Picrophilus oshimae DSM 9789"]]},{"id":"NCBITaxon:47303","l":"Sulfuracidifex metallicus","na":1,"nb":2,"a":[["sulfolobus_medium_for_dsm_5348.yaml","sulfolobus_medium_for_dsm_5348"]],"b":[["NCBITaxon%3A47303","Sulfuracidifex metallicus"],["NCBITaxon%3A523847","Sulfuracidifex metallicus DSM 6482 = JCM 9184"]]},{"id":"NCBITaxon:524","l":"Acidiphilium cryptum","na":1,"nb":2,"a":[["acidiphilium_medium__9ab0ce72.yaml","acidiphilium_medium"]],"b":[["NCBITaxon%3A524","Acidiphilium cryptum"],["NCBITaxon%3A349163","Acidiphilium cryptum JF-5"]]},{"id":"NCBITaxon:54259","l":"Ignicoccus islandicus","na":1,"nb":2,"a":[["ignicoccus_medium_for_dsm_18386.yaml","ignicoccus_medium_for_dsm_18386"]],"b":[["NCBITaxon%3A54259","Ignicoccus islandicus"],["NCBITaxon%3A940295","Ignicoccus islandicus DSM 13165"]]},{"id":"NCBITaxon:55205","l":"Caldicellulosiruptor owensensis","na":1,"nb":2,"a":[["caldicellulosiruptor_medium_for_dsm_10319.yaml","caldicellulosiruptor_medium_for_dsm_10319"]],"b":[["NCBITaxon%3A55205","Caldicellulosiruptor owensensis"],["NCBITaxon%3A632518","Caldicellulosiruptor owensensis OL"]]},{"id":"NCBITaxon:556484","l":"","na":2,"nb":1,"a":[["2ASW.yaml","2asw"],["F_2_Medium.yaml","f_2_medium"]],"b":[["NCBITaxon%3A556484","Phaeodactylum tricornutum CCAP 1055/1"]]},{"id":"NCBITaxon:59600","l":"Cellulophaga algicola","na":1,"nb":2,"a":[["bacto_marine_broth_difco_2216_for_dsm_11879.yaml","bacto_marine_broth_difco_2216_for_dsm_11879"]],"b":[["NCBITaxon%3A59600","Cellulophaga algicola"],["NCBITaxon%3A688270","Cellulophaga algicola DSM 14237"]]},{"id":"NCBITaxon:79601","l":"Metallosphaera hakonensis","na":1,"nb":2,"a":[["sulfolobus_medium_anaerobic_for_dsm_2162.yaml","sulfolobus_medium_anaerobic_for_dsm_2162"]],"b":[["NCBITaxon%3A79601","Metallosphaera hakonensis"],["NCBITaxon%3A1293036","Metallosphaera hakonensis JCM 8857 = DSM 7519"]]},{"id":"NCBITaxon:1670455","l":"Sulfodiicoccus acidiphilus","na":1,"nb":1,"a":[["sulfolobus_medium_anaerobic_for_dsm_2162.yaml","sulfolobus_medium_anaerobic_for_dsm_2162"]],"b":[["NCBITaxon%3A1670455","Sulfodiicoccus acidiphilus"]]},{"id":"NCBITaxon:184077","l":"Methylovorus mays","na":1,"nb":1,"a":[["METHYLOTROPH_MEDIUM.yaml","methylotroph_medium"]],"b":[["NCBITaxon%3A184077","Methylovorus mays"]]},{"id":"NCBITaxon:1891787","l":"Roseobacter ponti","na":1,"nb":1,"a":[["bacto_marine_broth_difco_2216_for_dsm_11879.yaml","bacto_marine_broth_difco_2216_for_dsm_11879"]],"b":[["NCBITaxon%3A1891787","Roseobacter ponti"]]},{"id":"NCBITaxon:2053590","l":"Pelotomaculum sp.","na":1,"nb":1,"a":[["medium_for_co_culture_of_strain_jt_with_methanospirillum_hungatei_nbrc_100397.yaml","medium_for_co_culture_of_strain_jt_with_methanospirillum_hungatei_nbrc_100397"]],"b":[["NCBITaxon%3A2053590","Pelotomaculum sp."]]},{"id":"NCBITaxon:2219813","l":"Synechococcus elongatus PCC 11801","na":1,"nb":1,"a":[["bg11__f771062f.yaml","bg11"]],"b":[["NCBITaxon%3A2219813","Synechococcus elongatus PCC 11801"]]},{"id":"NCBITaxon:2283154","l":"Synechococcus elongatus PCC 11802","na":1,"nb":1,"a":[["bg11__f771062f.yaml","bg11"]],"b":[["NCBITaxon%3A2283154","Synechococcus elongatus PCC 11802"]]},{"id":"NCBITaxon:258533","l":"Mycolicibacterium cosmeticum","na":1,"nb":1,"a":[["nutrient_broth__3e8602c5.yaml","nutrient broth"]],"b":[["NCBITaxon%3A258533","Mycolicibacterium cosmeticum"]]},{"id":"NCBITaxon:263820","l":"Picrophilus torridus DSM 9790","na":1,"nb":1,"a":[["sulfolobus_medium_for_dsm_9790.yaml","sulfolobus_medium_for_dsm_9790"]],"b":[["NCBITaxon%3A46632","Picrophilus oshimae"]]},{"id":"NCBITaxon:41673","l":"Acidianus brierleyi","na":1,"nb":1,"a":[["sulfolobus_medium_anaerobic_for_dsm_2162.yaml","sulfolobus_medium_anaerobic_for_dsm_2162"]],"b":[["NCBITaxon%3A41673","Acidianus brierleyi"]]},{"id":"NCBITaxon:633813","l":"Rhodothermus profundi","na":1,"nb":1,"a":[["bacto_marine_broth_difco_2216_for_dsm_11879.yaml","bacto_marine_broth_difco_2216_for_dsm_11879"]],"b":[["NCBITaxon%3A633813","Rhodothermus profundi"]]},{"id":"NCBITaxon:69656","l":"Sulfurisphaera ohwakuensis","na":1,"nb":1,"a":[["sulfolobus_medium_anaerobic_for_dsm_2162.yaml","sulfolobus_medium_anaerobic_for_dsm_2162"]],"b":[["NCBITaxon%3A69656","Sulfurisphaera ohwakuensis"]]},{"id":"NCBITaxon:715028","l":"Thermoanaerobacterium calidifontis","na":1,"nb":1,"a":[["caldicellulosiruptor_medium_for_dsm_10319.yaml","caldicellulosiruptor_medium_for_dsm_10319"]],"b":[["NCBITaxon%3A715028","Thermoanaerobacterium calidifontis"]]},{"id":"NCBITaxon:974","l":"Sporohalobacter lortetii","na":1,"nb":1,"a":[["SPOROHALOBACTER_LORTETII_MEDIUM.yaml","sporohalobacter_lortetii_medium"]],"b":[["NCBITaxon%3A974","Sporohalobacter lortetii"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/HabitatMech--CellStructureMech.json b/assets/fleet/edges/HabitatMech--CellStructureMech.json index 639c1cd..a3db226 100644 --- a/assets/fleet/edges/HabitatMech--CellStructureMech.json +++ b/assets/fleet/edges/HabitatMech--CellStructureMech.json @@ -1 +1 @@ -{"a":"HabitatMech","b":"CellStructureMech","base":{"HabitatMech":"https://culturebotai.github.io/HabitatMech/pages/habitats/","CellStructureMech":"https://culturebotai.github.io/CellStructureMech/pages/structures/"},"n":41,"by":{"NCBITaxon":41},"terms":[{"id":"NCBITaxon:2","l":"Bacteria","na":40,"nb":89,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["factory-envo-01000536.html","factory"],["adult-bto-0001043.html","adult"]],"b":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":36,"nb":31,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["bay-envo-00000032.html","bay"],["freshwater-biome-envo-00000873.html","freshwater biome"],["liquid-water-envo-00002006.html","liquid water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["appendage/curli.html","curli"],["appendage/p_pilus.html","P pilus"],["appendage/pilus.html","pilus"],["appendage/type_i_pilus.html","type I pilus"],["cytoskeleton/parm_filament.html","ParM filament"],["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]]},{"id":"NCBITaxon:1117","l":"Cyanobacteriota","na":11,"nb":13,"a":[["cecum-bto-0000166.html","cecum"],["colon-bto-0000269.html","colon"],["gut-bto-0000545.html","gut"],["head-bto-0000282.html","head"],["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"]],"b":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/photosystem_i.html","photosystem I"],["energy_complex/photosystem_ii.html","photosystem II"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":10,"nb":14,"a":[["anther-bto-0000079.html","anther"],["epithelial-cell-bto-0000414.html","epithelial cell"],["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["cytoskeleton/alfa_filament.html","AlfA filament"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":16,"nb":7,"a":[["fresh-water-envo-00002011.html","fresh water"],["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"]],"b":[["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/rc_lh1_pufx_core_complex.html","RC-LH1-PufX core complex"],["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":5,"nb":6,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"],["feces-uberon-0001988.html","feces"],["rectum-bto-0001158.html","rectum"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"],["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"],["secretion_system/type_vi_secretion_system_baseplate.html","type VI secretion system baseplate"],["secretion_system/type_vi_secretion_system_contractile_sheath.html","type VI secretion system contractile sheath"],["secretion_system/type_vi_secretion_system_hcp_tube.html","type VI secretion system Hcp tube"],["secretion_system/type_vi_secretion_system_vgrg_paar_spike_complex.html","type VI secretion system VgrG/PAAR spike complex"]]},{"id":"NCBITaxon:3055","l":"Chlamydomonas reinhardtii","na":4,"nb":58,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["large-river-biome-envo-00000887.html","large river biome"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["pond-water-envo-00002228.html","pond water"]],"b":[["appendage/ciliary_membrane.html","ciliary membrane"],["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"],["appendage/mastigoneme.html","mastigoneme"],["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_a_tubule_inner_sheath.html","axonemal A tubule inner sheath"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":7,"nb":4,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["liquid-water-envo-00002006.html","liquid water"],["crown-gall-bto-0000303.html","crown gall"],["finger-bto-0004669.html","finger"],["resting-cell-bto-0001170.html","resting cell"],["water-scum-envo-00005794.html","water scum"]],"b":[["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"],["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":28,"nb":3,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["liquid-water-envo-00002006.html","liquid water"],["watercourse-envo-00000029.html","watercourse"],["compost-envo-00002170.html","compost"],["hospital-envo-00002173.html","hospital"],["human-construction-envo-00000070.html","human construction"]],"b":[["appendage/type_iv_pilus.html","type IV pilus"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":10,"nb":3,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"]],"b":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":3,"nb":8,"a":[["city-envo-00000856.html","city"],["cold-environment-envo-01000309.html","cold environment"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["other/ap_5_adaptor_complex.html","AP-5 adaptor complex"],["ribonucleoprotein/u11_snrnp.html","U11 snRNP"],["ribonucleoprotein/u11_u12_snrnp.html","U11/U12 snRNP"],["ribonucleoprotein/u12_snrnp.html","U12 snRNP"],["ribonucleoprotein/u4atac_snrnp.html","U4atac snRNP"],["ribonucleoprotein/u4atac_u6atac_snrnp.html","U4atac/U6atac snRNP"]]},{"id":"NCBITaxon:28211","l":"Alphaproteobacteria","na":6,"nb":3,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"],["alimentary-canal-bto-0000058.html","alimentary canal"],["column-bto-0005692.html","column"],["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["spike-bto-0001278.html","spike"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]]},{"id":"NCBITaxon:1108","l":"Chloroflexus aurantiacus","na":3,"nb":3,"a":[["rhizosphere-envo-00005801.html","rhizosphere"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":40,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["laboratory-facility-envo-01001406.html","laboratory facility"],["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["biofilm-bto-0002690.html","biofilm"]],"b":[["envelope/periplasmic_space.html","periplasmic space"],["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":12,"nb":2,"a":[["hospital-envo-00002173.html","hospital"],["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["epithelial-cell-bto-0000414.html","epithelial cell"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["meninx-bto-0000144.html","meninx"]],"b":[["envelope/capsule.html","capsule"],["envelope/glycocalyx.html","glycocalyx"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":7,"nb":2,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["pseudostem-bto-0005992.html","pseudostem"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]]},{"id":"NCBITaxon:1236","l":"Gammaproteobacteria","na":6,"nb":2,"a":[["column-bto-0005692.html","column"],["hemolymph-bto-0000572.html","hemolymph"],["oil-secretion-bto-0005373.html","oil secretion"],["spike-bto-0001278.html","spike"],["urine-bto-0001419.html","urine"],["subtropical-envo-01000205.html","subtropical"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"],["secretion_system/type_iii_protein_secretion_system_complex.html","type III protein secretion system complex"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":4,"nb":2,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["cytoskeleton/tubz_filament.html","TubZ filament"],["inclusion/parasporal_crystal.html","parasporal crystal"]]},{"id":"NCBITaxon:203682","l":"Planctomycetota","na":2,"nb":2,"a":[["column-bto-0005692.html","column"],["crop-bto-0000301.html","crop"]],"b":[["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":15,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":8,"nb":1,"a":[["beach-envo-00000091.html","beach"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["sea-sand-envo-00002118.html","sea sand"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["microcompartment/bacterial_microcompartment.html","bacterial microcompartment"]]},{"id":"NCBITaxon:1773","l":"Mycobacterium tuberculosis","na":5,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["posterior-lobe-bto-0000561.html","posterior lobe"],["sputum-bto-0001297.html","sputum"],["thorax-bto-0001368.html","thorax"],["thp-1-cell-bto-0001370.html","THP-1 cell"]],"b":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":5,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"],["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]]},{"id":"NCBITaxon:1097","l":"Chlorobaculum tepidum","na":1,"nb":4,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":4,"nb":1,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["envelope/s_layer.html","S-layer"]]},{"id":"NCBITaxon:264462","l":"Bdellovibrio bacteriovorus HD100","na":4,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["appendage/type_iv_pilus.html","type IV pilus"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":1,"nb":3,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]]},{"id":"NCBITaxon:1224","l":"Pseudomonadota","na":1,"nb":3,"a":[["hemolymph-bto-0000572.html","hemolymph"]],"b":[["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["microcompartment/carboxysome.html","carboxysome"],["ribonucleoprotein/bacterial_degradosome.html","bacterial degradosome"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":1,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]]},{"id":"NCBITaxon:139","l":"Borreliella burgdorferi","na":2,"nb":1,"a":[["joint-bto-0001686.html","joint"],["needle-bto-0000917.html","needle"]],"b":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]]},{"id":"NCBITaxon:190650","l":"Caulobacter vibrioides (strain ATCC 19089 / CIP 103742 / CB 15)","na":2,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["cytoskeleton/cytoophidium.html","cytoophidium"]]},{"id":"NCBITaxon:555778","l":"","na":1,"nb":2,"a":[["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]]},{"id":"NCBITaxon:83334","l":"Escherichia coli O157:H7","na":1,"nb":2,"a":[["uterus-bto-0001424.html","uterus"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["spore/exosporium.html","exosporium"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":1,"a":[["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["other/cellulosome.html","cellulosome"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":1,"nb":1,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus (strain ATCC 27405 / DSM 1237 / JCM 9322 / NBRC 103400 / NCIMB 10682 / NRRL B-4536 / VPI 7372)","na":1,"nb":1,"a":[["blood-plasma-bto-0000131.html","blood plasma"]],"b":[["other/cellulosome.html","cellulosome"]]},{"id":"NCBITaxon:208963","l":"Pseudomonas aeruginosa (strain UCBPP-PA14)","na":1,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["inclusion/r_body.html","R-body"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":1,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]]},{"id":"NCBITaxon:2830","l":"Haptophyta","na":1,"nb":1,"a":[["column-bto-0005692.html","column"]],"b":[["appendage/haptonema.html","haptonema"]]},{"id":"NCBITaxon:572477","l":"Allochromatium vinosum (strain ATCC 17899 / DSM 180 / NBRC 103801 / NCIMB 10441 / D)","na":1,"nb":1,"a":[["ditch-water-envo-00002158.html","ditch water"]],"b":[["inclusion/sulfur_globule.html","sulfur globule"]]}]} \ No newline at end of file +{"a":"HabitatMech","b":"CellStructureMech","base":{"HabitatMech":"https://culturebotai.github.io/HabitatMech/pages/habitats/","CellStructureMech":"https://culturebotai.github.io/CellStructureMech/pages/structures/"},"n":41,"by":{"NCBITaxon":41},"terms":[{"id":"NCBITaxon:2","l":"Bacteria","na":40,"nb":89,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["factory-envo-01000536.html","factory"],["adult-bto-0001043.html","adult"]],"b":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":36,"nb":31,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["bay-envo-00000032.html","bay"],["freshwater-biome-envo-00000873.html","freshwater biome"],["liquid-water-envo-00002006.html","liquid water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["appendage/curli.html","curli"],["appendage/p_pilus.html","P pilus"],["appendage/pilus.html","pilus"],["appendage/type_i_pilus.html","type I pilus"],["cytoskeleton/parm_filament.html","ParM filament"],["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]]},{"id":"NCBITaxon:1117","l":"Cyanobacteriota","na":11,"nb":13,"a":[["cecum-bto-0000166.html","cecum"],["colon-bto-0000269.html","colon"],["gut-bto-0000545.html","gut"],["head-bto-0000282.html","head"],["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"]],"b":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/photosystem_i.html","photosystem I"],["energy_complex/photosystem_ii.html","photosystem II"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":10,"nb":14,"a":[["anther-bto-0000079.html","anther"],["epithelial-cell-bto-0000414.html","epithelial cell"],["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["cytoskeleton/alfa_filament.html","AlfA filament"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":16,"nb":7,"a":[["fresh-water-envo-00002011.html","fresh water"],["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"]],"b":[["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/rc_lh1_pufx_core_complex.html","RC-LH1-PufX core complex"],["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":5,"nb":6,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"],["feces-uberon-0001988.html","feces"],["rectum-bto-0001158.html","rectum"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"],["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"],["secretion_system/type_vi_secretion_system_baseplate.html","type VI secretion system baseplate"],["secretion_system/type_vi_secretion_system_contractile_sheath.html","type VI secretion system contractile sheath"],["secretion_system/type_vi_secretion_system_hcp_tube.html","type VI secretion system Hcp tube"],["secretion_system/type_vi_secretion_system_vgrg_paar_spike_complex.html","type VI secretion system VgrG/PAAR spike complex"]]},{"id":"NCBITaxon:3055","l":"Chlamydomonas reinhardtii","na":4,"nb":58,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["large-river-biome-envo-00000887.html","large river biome"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["pond-water-envo-00002228.html","pond water"]],"b":[["appendage/ciliary_membrane.html","ciliary membrane"],["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"],["appendage/mastigoneme.html","mastigoneme"],["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_a_tubule_inner_sheath.html","axonemal A tubule inner sheath"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":7,"nb":4,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["liquid-water-envo-00002006.html","liquid water"],["crown-gall-bto-0000303.html","crown gall"],["finger-bto-0004669.html","finger"],["resting-cell-bto-0001170.html","resting cell"],["water-scum-envo-00005794.html","water scum"]],"b":[["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"],["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":28,"nb":3,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["liquid-water-envo-00002006.html","liquid water"],["watercourse-envo-00000029.html","watercourse"],["compost-envo-00002170.html","compost"],["hospital-envo-00002173.html","hospital"],["human-construction-envo-00000070.html","human construction"]],"b":[["appendage/type_iv_pilus.html","type IV pilus"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":10,"nb":3,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"]],"b":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":3,"nb":8,"a":[["city-envo-00000856.html","city"],["cold-environment-envo-01000309.html","cold environment"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["other/ap_5_adaptor_complex.html","AP-5 adaptor complex"],["ribonucleoprotein/u11_snrnp.html","U11 snRNP"],["ribonucleoprotein/u11_u12_snrnp.html","U11/U12 snRNP"],["ribonucleoprotein/u12_snrnp.html","U12 snRNP"],["ribonucleoprotein/u4atac_snrnp.html","U4atac snRNP"],["ribonucleoprotein/u4atac_u6atac_snrnp.html","U4atac/U6atac snRNP"]]},{"id":"NCBITaxon:28211","l":"Alphaproteobacteria","na":6,"nb":3,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"],["alimentary-canal-bto-0000058.html","alimentary canal"],["column-bto-0005692.html","column"],["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["spike-bto-0001278.html","spike"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]]},{"id":"NCBITaxon:1108","l":"Chloroflexus aurantiacus","na":3,"nb":3,"a":[["rhizosphere-envo-00005801.html","rhizosphere"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":40,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["laboratory-facility-envo-01001406.html","laboratory facility"],["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["biofilm-bto-0002690.html","biofilm"]],"b":[["envelope/periplasmic_space.html","periplasmic space"],["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":12,"nb":2,"a":[["hospital-envo-00002173.html","hospital"],["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["epithelial-cell-bto-0000414.html","epithelial cell"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["meninx-bto-0000144.html","meninx"]],"b":[["envelope/capsule.html","capsule"],["envelope/glycocalyx.html","glycocalyx"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":7,"nb":2,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["pseudostem-bto-0005992.html","pseudostem"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]]},{"id":"NCBITaxon:1236","l":"Gammaproteobacteria","na":6,"nb":2,"a":[["column-bto-0005692.html","column"],["hemolymph-bto-0000572.html","hemolymph"],["oil-secretion-bto-0005373.html","oil secretion"],["spike-bto-0001278.html","spike"],["urine-bto-0001419.html","urine"],["subtropical-envo-01000205.html","subtropical"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"],["secretion_system/type_iii_protein_secretion_system_complex.html","type III protein secretion system complex"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":4,"nb":2,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["cytoskeleton/tubz_filament.html","TubZ filament"],["inclusion/parasporal_crystal.html","parasporal crystal"]]},{"id":"NCBITaxon:203682","l":"Planctomycetota","na":2,"nb":2,"a":[["column-bto-0005692.html","column"],["crop-bto-0000301.html","crop"]],"b":[["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":15,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":8,"nb":1,"a":[["beach-envo-00000091.html","beach"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["sea-sand-envo-00002118.html","sea sand"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["microcompartment/bacterial_microcompartment.html","bacterial microcompartment"]]},{"id":"NCBITaxon:1773","l":"Mycobacterium tuberculosis","na":5,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["posterior-lobe-bto-0000561.html","posterior lobe"],["sputum-bto-0001297.html","sputum"],["thorax-bto-0001368.html","thorax"],["thp-1-cell-bto-0001370.html","THP-1 cell"]],"b":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":5,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"],["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]]},{"id":"NCBITaxon:1097","l":"Chlorobaculum tepidum","na":1,"nb":4,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":4,"nb":1,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["envelope/s_layer.html","S-layer"]]},{"id":"NCBITaxon:264462","l":"Bdellovibrio bacteriovorus HD100","na":4,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["appendage/type_iv_pilus.html","type IV pilus"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":1,"nb":3,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]]},{"id":"NCBITaxon:1224","l":"Pseudomonadota","na":1,"nb":3,"a":[["hemolymph-bto-0000572.html","hemolymph"]],"b":[["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["microcompartment/carboxysome.html","carboxysome"],["ribonucleoprotein/bacterial_degradosome.html","bacterial degradosome"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":1,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]]},{"id":"NCBITaxon:139","l":"Borreliella burgdorferi","na":2,"nb":1,"a":[["joint-bto-0001686.html","joint"],["needle-bto-0000917.html","needle"]],"b":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]]},{"id":"NCBITaxon:190650","l":"Caulobacter vibrioides (strain ATCC 19089 / CIP 103742 / CB 15)","na":2,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["cytoskeleton/cytoophidium.html","cytoophidium"]]},{"id":"NCBITaxon:555778","l":"","na":1,"nb":2,"a":[["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]]},{"id":"NCBITaxon:83334","l":"Escherichia coli O157:H7","na":1,"nb":2,"a":[["uterus-bto-0001424.html","uterus"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["spore/exosporium.html","exosporium"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":1,"a":[["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["other/cellulosome.html","cellulosome"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":1,"nb":1,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus ATCC 27405","na":1,"nb":1,"a":[["blood-plasma-bto-0000131.html","blood plasma"]],"b":[["other/cellulosome.html","cellulosome"]]},{"id":"NCBITaxon:208963","l":"Pseudomonas aeruginosa (strain UCBPP-PA14)","na":1,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["inclusion/r_body.html","R-body"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":1,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]]},{"id":"NCBITaxon:2830","l":"Haptophyta","na":1,"nb":1,"a":[["column-bto-0005692.html","column"]],"b":[["appendage/haptonema.html","haptonema"]]},{"id":"NCBITaxon:572477","l":"Allochromatium vinosum (strain ATCC 17899 / DSM 180 / NBRC 103801 / NCIMB 10441 / D)","na":1,"nb":1,"a":[["ditch-water-envo-00002158.html","ditch water"]],"b":[["inclusion/sulfur_globule.html","sulfur globule"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/HabitatMech--CommunityMech.json b/assets/fleet/edges/HabitatMech--CommunityMech.json index a54750c..9621ff9 100644 --- a/assets/fleet/edges/HabitatMech--CommunityMech.json +++ b/assets/fleet/edges/HabitatMech--CommunityMech.json @@ -1 +1 @@ -{"a":"HabitatMech","b":"CommunityMech","base":{"HabitatMech":"https://culturebotai.github.io/HabitatMech/pages/habitats/","CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/"},"n":313,"by":{"NCBITaxon":265,"ENVO":42,"UBERON":4,"CHEBI":2},"terms":[{"id":"NCBITaxon:2","l":"Bacteria","na":40,"nb":56,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["factory-envo-01000536.html","factory"],["adult-bto-0001043.html","adult"]],"b":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"]]},{"id":"ENVO:00001998","l":"soil","na":105,"nb":17,"a":[["soil-habitatmech-gold-fc35741739.html","Soil"],["wetland-area-envo-00000043.html","wetland area"],["soil-habitatmech-gold-b1d707114a.html","Soil"],["soil-habitatmech-gold-e9844fc187.html","Soil"],["soil-habitatmech-gold-3e86b794ef.html","Soil"],["soil-habitatmech-gold-067f7f5e2a.html","Soil"]],"b":[["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]]},{"id":"ENVO:01001001","l":"plant-associated environment","na":21,"nb":16,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["bryophytes-habitatmech-gold-35beb98884.html","Bryophytes"],["endosphere-habitatmech-gold-bfe3e11951.html","Endosphere"],["green-alga-associated-environment-habitatmech-gold-184cc9e802.html","green-alga-associated environment"],["mixed-parts-habitatmech-gold-4dd29bdcf8.html","Mixed parts"],["peat-moss-associated-environment-habitatmech-gold-7f57b82cab.html","peat moss-associated environment"]],"b":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]]},{"id":"NCBITaxon:1386","l":"Bacillus ","na":19,"nb":16,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["crop-bto-0000301.html","crop"],["dorsum-bto-0001713.html","dorsum"],["hand-bto-0004668.html","hand"],["head-bto-0000282.html","head"],["juvenile-bto-0002168.html","juvenile"]],"b":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":36,"nb":14,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["bay-envo-00000032.html","bay"],["freshwater-biome-envo-00000873.html","freshwater biome"],["liquid-water-envo-00002006.html","liquid water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]]},{"id":"ENVO:00002123","l":"bioreactor","na":31,"nb":13,"a":[["aerobic-bioreactor-envo-00002126.html","aerobic bioreactor"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["air-scrubber-biofilm-habitatmech-gold-7f436f8aff.html","air scrubber biofilm"],["biofilter-envo-00002152.html","biofilter"],["bioreactor-envo-00002123.html","bioreactor"],["bioreactor-habitatmech-gold-c4bf3d0c83.html","Bioreactor"]],"b":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":27,"nb":11,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["watercourse-envo-00000029.html","watercourse"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["egg-food-product-foodon-00001274.html","egg food product"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]]},{"id":"ENVO:00002007","l":"sediment","na":103,"nb":10,"a":[["marine-sediment-envo-03000033.html","marine sediment"],["sediment-habitatmech-gold-6bc70f0406.html","Sediment"],["sediment-habitatmech-gold-33b265d89f.html","Sediment"],["sediment-habitatmech-gold-7db7617ea4.html","Sediment"],["sediment-habitatmech-gold-2f9eb7ed2f.html","Sediment"],["sediment-habitatmech-gold-2ff751e0a6.html","Sediment"]],"b":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]]},{"id":"NCBITaxon:286","l":"Pseudomonas","na":10,"nb":18,"a":[["heart-bto-0000562.html","heart"],["juvenile-bto-0002168.html","juvenile"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"],["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":10,"nb":15,"a":[["anther-bto-0000079.html","anther"],["epithelial-cell-bto-0000414.html","epithelial cell"],["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":28,"nb":9,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["liquid-water-envo-00002006.html","liquid water"],["watercourse-envo-00000029.html","watercourse"],["compost-envo-00002170.html","compost"],["hospital-envo-00002173.html","hospital"],["human-construction-envo-00000070.html","human construction"]],"b":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":11,"nb":9,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["resting-cell-bto-0001170.html","resting cell"],["seedling-bto-0001228.html","seedling"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":27,"nb":7,"a":[["small-river-biome-envo-00000890.html","small river biome"],["factory-envo-01000536.html","factory"],["organic-waste-material-envo-00002873.html","organic waste material"],["leaf-po-0025034.html","leaf"],["milk-uberon-0001913.html","milk"],["rhizosphere-envo-00005801.html","rhizosphere"]],"b":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]]},{"id":"ENVO:00002116","l":"contaminated soil","na":7,"nb":15,"a":[["hydrocarbon-habitatmech-gold-3c68e33a11.html","Hydrocarbon"],["persistent-organic-pollutant-bioremediation-material-habitatmech-gold-1a78606807.html","persistent organic pollutant bioremediation material"],["contaminated-soil-envo-00002116.html","contaminated soil"],["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"],["oil-contaminated-soil-envo-00002875.html","oil contaminated soil"],["pesticide-habitatmech-gold-8ebd2ee3c5.html","Pesticide"]],"b":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"]]},{"id":"NCBITaxon:40324","l":"Stenotrophomonas maltophilia","na":15,"nb":7,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["catheter-device-ncit-c50344.html","Catheter Device"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["seedling-bto-0001228.html","seedling"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]]},{"id":"ENVO:00002043","l":"wastewater treatment plant","na":9,"nb":7,"a":[["a-o-treatment-system-habitatmech-gold-7c91485eb8.html","A/O treatment system"],["activated-sludge-habitatmech-gold-032b7dd40b.html","Activated sludge"],["aerobic-digester-habitatmech-gold-03fc563fae.html","Aerobic digester"],["anaerobic-digester-habitatmech-gold-3f58fb59be.html","Anaerobic digester"],["effluent-habitatmech-gold-827b5dbbef.html","Effluent"],["influent-habitatmech-gold-2bf3ab7d2f.html","Influent"]],"b":[["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Rhizorhabdus_Cupriavidus_BDE47_Degradation_SynCom.html","Rhizorhabdus-Cupriavidus BDE-47 Degradation SynCom"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":19,"nb":6,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["saline-water-body-envo-01001319.html","saline water body"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":18,"nb":6,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]]},{"id":"UBERON:0000160","l":"intestine","na":11,"nb":6,"a":[["intestine-habitatmech-gold-f3f5ed6008.html","Intestine"],["intestine-habitatmech-gold-70ccbcfe44.html","Intestine"],["intestine-habitatmech-gold-8a75a65fc5.html","Intestine"],["intestine-habitatmech-gold-0171231ef5.html","Intestine"],["intestine-habitatmech-gold-523d63f6f3.html","Intestine"],["intestine-habitatmech-gold-394283d34e.html","Intestine"]],"b":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["OMM12_Gnotobiotic_Mouse_Gut_Community.html","OMM12 Gnotobiotic Mouse Gut Community"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]]},{"id":"NCBITaxon:1578","l":"Lactobacillus","na":20,"nb":5,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["blood-bto-0000089.html","blood"],["brain-bto-0000142.html","brain"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["hand-bto-0004668.html","hand"]],"b":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"],["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]]},{"id":"ENVO:00002001","l":"waste water","na":19,"nb":5,"a":[["activated-sludge-habitatmech-gold-0d353772af.html","Activated Sludge"],["anaerobic-digestor-habitatmech-gold-ed87e682a9.html","Anaerobic digestor"],["industrial-wastewater-envo-01000964.html","industrial wastewater"],["municipal-landfill-habitatmech-gold-0f40aa60ce.html","Municipal landfill"],["nutrient-removal-habitatmech-gold-a18a70ae30.html","Nutrient removal"],["reclaimed-recycled-wastewater-habitatmech-gold-dc4dba910a.html","Reclaimed/Recycled wastewater"]],"b":[["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Staged_Cattle_Manure_Ensifer_Bacillus_SynCom.html","Staged Ensifer-Bacillus Cattle-Manure Wastewater SynCom"]]},{"id":"ENVO:00000043","l":"wetland area","na":14,"nb":5,"a":[["bog-habitatmech-gold-42a3b7b2d3.html","Bog"],["fen-habitatmech-gold-9de4fdaa2a.html","Fen"],["marsh-envo-00000035.html","marsh"],["microbial-mat-habitatmech-gold-e066163fc8.html","Microbial mat"],["sediment-habitatmech-gold-7db7617ea4.html","Sediment"],["sediment-habitatmech-gold-98d936714f.html","Sediment"]],"b":[["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Wetland_Oxygen_Sulfate_GHG_Microcosm_Community.html","Wetland Oxygen-Sulfate Greenhouse Gas Microcosm Community"]]},{"id":"ENVO:01001004","l":"groundwater","na":5,"nb":11,"a":[["contaminated-habitatmech-gold-66f93e3a62.html","Contaminated"],["contaminated-habitatmech-gold-33f4720550.html","Contaminated"],["groundwater-habitatmech-gold-22a80cbd14.html","Groundwater"],["groundwater-habitatmech-gold-7f8e268653.html","Groundwater"],["groundwater-envo-01001004.html","groundwater"]],"b":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":33,"nb":4,"a":[["biofilm-envo-00002034.html","biofilm"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["pond-water-envo-00002228.html","pond water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["water-body-envo-00000063.html","water body"]],"b":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"],["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]]},{"id":"NCBITaxon:1485","l":"Clostridium","na":26,"nb":4,"a":[["biofilm-envo-00002034.html","biofilm"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["alimentary-canal-bto-0000058.html","alimentary canal"],["colon-bto-0000269.html","colon"]],"b":[["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["QY2S1_Dehalogenimonas_BFR_Bioremediation_Consortium.html","QY2-S1 Dehalogenimonas-Rich Brominated-Flame-Retardant Consortium"],["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":19,"nb":4,"a":[["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["bone-element-uberon-0001474.html","bone element"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]]},{"id":"NCBITaxon:13687","l":"Sphingomonas","na":14,"nb":4,"a":[["crop-bto-0000301.html","crop"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["ileum-bto-0000620.html","ileum"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"]],"b":[["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"],["Wheat_Consortium_C6.html","Wheat Synthetic Consortium C6"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]]},{"id":"NCBITaxon:1590","l":"Lactiplantibacillus plantarum","na":14,"nb":4,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["food-fermented-foodon-00001258.html","food (fermented)"],["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"],["breast-bto-0000149.html","breast"],["colonic-epithelium-bto-0001709.html","colonic epithelium"],["epithelial-cell-bto-0000414.html","epithelial cell"]],"b":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Pichia_Lactiplantibacillus_CCMA_Plant_Beverage_Coculture.html","Pichia-Lactiplantibacillus CCMA Plant Beverage Coculture"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":11,"nb":4,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["fermentation-starter-envo-03600040.html","fermentation starter"],["fruit-bto-0000486.html","fruit"],["mammary-epithelial-cell-bto-0004300.html","mammary epithelial cell"],["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]]},{"id":"NCBITaxon:1827","l":"Rhodococcus ","na":4,"nb":8,"a":[["nectar-bto-0000537.html","nectar"],["pitcher-bto-0001069.html","pitcher"],["small-intestine-bto-0000651.html","small intestine"],["stem-bto-0001300.html","stem"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]]},{"id":"NCBITaxon:33038","l":"Mediterraneibacter gnavus","na":8,"nb":4,"a":[["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["juvenile-bto-0002168.html","juvenile"],["animal-litter-envo-00002191.html","animal litter"]],"b":[["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Clostridial_isoDCA_Mini_Consortium.html","Clostridial isoDCA Mini Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]]},{"id":"NCBITaxon:374","l":"Bradyrhizobium","na":4,"nb":5,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"],["wood-bto-0005516.html","wood"]],"b":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"],["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]]},{"id":"NCBITaxon:37919","l":"Rhodococcus opacus","na":5,"nb":4,"a":[["watercourse-envo-00000029.html","watercourse"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"],["sludge-envo-00002044.html","sludge"],["water-scum-envo-00005794.html","water scum"]],"b":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"],["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":4,"nb":4,"a":[["stream-envo-00000023.html","stream"],["biome-envo-00000428.html","biome"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]]},{"id":"ENVO:00002170","l":"compost","na":20,"nb":3,"a":[["compost-envo-00002170.html","compost"],["composting-habitatmech-gold-143ceb8669.html","Composting"],["composting-habitatmech-gold-edeecbabed.html","Composting"],["composting-habitatmech-gold-5948923b46.html","Composting"],["composting-habitatmech-gold-70db4820d1.html","Composting"],["composting-habitatmech-gold-cdbbd857c8.html","Composting"]],"b":[["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":17,"nb":3,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["fruit-bto-0000486.html","fruit"],["leaf-po-0025034.html","leaf"],["rhizosphere-envo-00005801.html","rhizosphere"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]]},{"id":"ENVO:00002046","l":"activated sludge","na":16,"nb":3,"a":[["activated-sludge-habitatmech-gold-6ba6dd1c82.html","Activated sludge"],["activated-sludge-habitatmech-gold-adf7e16a3a.html","Activated sludge"],["activated-sludge-habitatmech-gold-25b680d9bc.html","Activated sludge"],["activated-sludge-habitatmech-gold-dab267c443.html","Activated sludge"],["activated-sludge-habitatmech-gold-43c33f3ecc.html","Activated sludge"],["activated-sludge-habitatmech-gold-f459151394.html","Activated sludge"]],"b":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"]]},{"id":"NCBITaxon:1667","l":"Arthrobacter sp.","na":9,"nb":3,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["leaf-po-0025034.html","leaf"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":8,"nb":3,"a":[["reservoir-envo-00000025.html","reservoir"],["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["secretion-bto-0002979.html","secretion"],["stomach-bto-0001307.html","stomach"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":8,"nb":3,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["lab-synthesis-habitatmech-bacdive-0e92e77cd4.html","Lab-synthesis"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["oil-spill-envo-00002061.html","oil spill"],["temperate-envo-01000206.html","temperate"]],"b":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":5,"nb":3,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["pseudostem-bto-0005992.html","pseudostem"],["seedling-bto-0001228.html","seedling"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["soil-envo-00001998.html","soil"]],"b":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]]},{"id":"ENVO:00000044","l":"peatland","na":4,"nb":3,"a":[["bog-habitatmech-gold-42a3b7b2d3.html","Bog"],["blanket-bog-envo-00000511.html","blanket bog"],["fen-envo-00000232.html","fen"],["peatland-envo-00000044.html","peatland"]],"b":[["SPRUCE_Peatland_Methane_Cycling_Community.html","SPRUCE Peatland Methane-Cycling Microbial Community"],["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":3,"nb":4,"a":[["milk-uberon-0001913.html","milk"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]]},{"id":"NCBITaxon:1534","l":"Clostridium kluyveri","na":3,"nb":4,"a":[["reservoir-envo-00000025.html","reservoir"],["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"]],"b":[["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]]},{"id":"NCBITaxon:237","l":"Flavobacterium","na":3,"nb":4,"a":[["column-bto-0005692.html","column"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]]},{"id":"NCBITaxon:3055","l":"Chlamydomonas reinhardtii","na":4,"nb":3,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["large-river-biome-envo-00000887.html","large river biome"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["pond-water-envo-00002228.html","pond water"]],"b":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]]},{"id":"NCBITaxon:32008","l":"Burkholderia","na":3,"nb":4,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["midgut-bto-0000863.html","midgut"]],"b":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]]},{"id":"NCBITaxon:216816","l":"Bifidobacterium longum","na":3,"nb":3,"a":[["coral-reef-envo-00000150.html","coral reef"],["egg-food-product-foodon-00001274.html","egg food product"],["juvenile-bto-0002168.html","juvenile"]],"b":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]]},{"id":"NCBITaxon:239935","l":"Akkermansia muciniphila","na":3,"nb":3,"a":[["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["secretion-bto-0002979.html","secretion"]],"b":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":3,"nb":3,"a":[["liquid-water-envo-00002006.html","liquid water"],["sludge-envo-00002044.html","sludge"],["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]]},{"id":"ENVO:01001405","l":"laboratory environment","na":2,"nb":198,"a":[["genetic-cross-habitatmech-gold-ba9317369a.html","Genetic cross"],["laboratory-environment-envo-01001405.html","laboratory environment"]],"b":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]]},{"id":"ENVO:00005801","l":"rhizosphere","na":2,"nb":62,"a":[["rhizosphere-envo-00005801.html","rhizosphere"],["soil-habitatmech-gold-067f7f5e2a.html","Soil"]],"b":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":40,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["laboratory-facility-envo-01001406.html","laboratory facility"],["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["biofilm-bto-0002690.html","biofilm"]],"b":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]]},{"id":"ENVO:00002124","l":"anaerobic bioreactor","na":20,"nb":2,"a":[["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["anaerobic-sludge-envo-00002129.html","anaerobic sludge"],["anaerobic-sludge-blanket-reactor-envo-00002213.html","anaerobic sludge blanket reactor"],["biofilm-habitatmech-gold-6c12d05420.html","Biofilm"],["biogas-envo-01000556.html","biogas"],["biomass-habitatmech-gold-6dd85a8177.html","Biomass"]],"b":[["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Shewanella_Pseudomonas_Fe0_Electrosyntrophic_Denitrifying_Consortium.html","Shewanella oneidensis + Pseudomonas aeruginosa Fe0-dependent Electro-syntrophic Denitrifying Consortium"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":14,"nb":2,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["compost-envo-00002170.html","compost"],["organic-waste-material-envo-00002873.html","organic waste material"],["larva-bto-0000707.html","larva"],["rhizosphere-envo-00005801.html","rhizosphere"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]]},{"id":"ENVO:00000051","l":"hot spring","na":13,"nb":2,"a":[["acid-lake-habitatmech-gold-21e53e7981.html","Acid lake"],["geothermal-pool-hot-lake-habitatmech-gold-d2132d09ae.html","Geothermal pool/Hot lake"],["hot-42-90c-habitatmech-gold-c085f6141a.html","Hot (42-90C)"],["hot-spring-envo-00000051.html","hot spring"],["microbial-mats-habitatmech-gold-a0372e2d63.html","Microbial mats"],["near-boiling-90c-habitatmech-gold-8b53067bc5.html","Near-boiling (>90C)"]],"b":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]]},{"id":"UBERON:0001007","l":"digestive system","na":13,"nb":2,"a":[["digestive-system-habitatmech-gold-26a84185d3.html","Digestive system"],["digestive-system-habitatmech-gold-6eecdf150d.html","Digestive system"],["digestive-system-habitatmech-gold-d7cff86ce8.html","Digestive system"],["digestive-system-habitatmech-gold-8a68d0f6f5.html","Digestive system"],["digestive-system-habitatmech-gold-c1d7082e4b.html","Digestive system"],["digestive-system-habitatmech-gold-f6720bccf0.html","Digestive system"]],"b":[["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]]},{"id":"NCBITaxon:1117","l":"Cyanobacteriota","na":11,"nb":2,"a":[["cecum-bto-0000166.html","cecum"],["colon-bto-0000269.html","colon"],["gut-bto-0000545.html","gut"],["head-bto-0000282.html","head"],["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"]],"b":[["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]]},{"id":"ENVO:00001997","l":"acid mine drainage","na":2,"nb":9,"a":[["acid-mine-drainage-envo-00001997.html","acid mine drainage"],["sediment-habitatmech-gold-7e27a52150.html","Sediment"]],"b":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":9,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["mud-envo-01000001.html","mud"]],"b":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":8,"nb":2,"a":[["groundwater-envo-01001004.html","groundwater"],["bioreactor-envo-00002123.html","bioreactor"],["river-envo-00000022.html","river"],["freshwater-environment-envo-01000306.html","freshwater environment"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]]},{"id":"ENVO:03600040","l":"fermentation starter","na":2,"nb":7,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["active-sourdough-starter-habitatmech-gold-3153798c1a.html","active sourdough starter"]],"b":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Sichuan_Shai_Vinegar_Yeast_Flavor_SynCom.html","Sichuan Shai Vinegar Yeast Flavor SynCom"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"],["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]]},{"id":"NCBITaxon:28216","l":"Betaproteobacteria","na":7,"nb":2,"a":[["column-bto-0005692.html","column"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["spike-bto-0001278.html","spike"]],"b":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":7,"nb":2,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["liquid-water-envo-00002006.html","liquid water"],["crown-gall-bto-0000303.html","crown gall"],["finger-bto-0004669.html","finger"],["resting-cell-bto-0001170.html","resting cell"],["water-scum-envo-00005794.html","water scum"]],"b":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]]},{"id":"NCBITaxon:1236","l":"Gammaproteobacteria","na":6,"nb":2,"a":[["column-bto-0005692.html","column"],["hemolymph-bto-0000572.html","hemolymph"],["oil-secretion-bto-0005373.html","oil secretion"],["spike-bto-0001278.html","spike"],["urine-bto-0001419.html","urine"],["subtropical-envo-01000205.html","subtropical"]],"b":[["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]]},{"id":"NCBITaxon:1305","l":"Streptococcus sanguinis","na":6,"nb":2,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["throat-bto-0000828.html","throat"],["geographic-feature-envo-00000000.html","geographic feature"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]]},{"id":"NCBITaxon:253","l":"Chryseobacterium indologenes","na":6,"nb":2,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["seedling-bto-0001228.html","seedling"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["tropical-envo-01000204.html","tropical"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"]]},{"id":"NCBITaxon:28211","l":"Alphaproteobacteria","na":6,"nb":2,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"],["alimentary-canal-bto-0000058.html","alimentary canal"],["column-bto-0005692.html","column"],["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["spike-bto-0001278.html","spike"]],"b":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]]},{"id":"ENVO:00002003","l":"fecal material","na":2,"nb":5,"a":[["frass-habitatmech-gold-319c3f351e.html","Frass"],["frass-habitatmech-gold-67f3cde908.html","Frass"]],"b":[["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"]]},{"id":"NCBITaxon:145262","l":"Methanothermobacter thermautotrophicus","na":5,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["intestine-environment-envo-2100002.html","intestine environment"],["sludge-envo-00002044.html","sludge"]],"b":[["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]]},{"id":"NCBITaxon:1883","l":"Streptomyces","na":2,"nb":5,"a":[["crop-bto-0000301.html","crop"],["lab-synthesis-habitatmech-bacdive-0e92e77cd4.html","Lab-synthesis"]],"b":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["Wheat_Consortium_C6.html","Wheat Synthetic Consortium C6"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]]},{"id":"NCBITaxon:1335","l":"Streptococcus equinus","na":4,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["stomach-bto-0001307.html","stomach"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":4,"nb":2,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["carcass-envo-00002033.html","carcass"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["sludge-envo-00002044.html","sludge"]],"b":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":4,"nb":2,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]]},{"id":"NCBITaxon:165695","l":"Sphingobium","na":2,"nb":4,"a":[["juvenile-bto-0002168.html","juvenile"],["leaf-bto-0000713.html","leaf"]],"b":[["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["Sphingobium_Nitrososphaera_Phenanthrene_Carbon_SynCom.html","Sphingobium-Nitrososphaera Phenanthrene-Carbon SynCom"],["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]]},{"id":"NCBITaxon:1678","l":"Bifidobacterium","na":2,"nb":4,"a":[["ileum-bto-0000620.html","ileum"],["juvenile-bto-0002168.html","juvenile"]],"b":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"NCBITaxon:33882","l":"Microbacterium","na":4,"nb":2,"a":[["leaf-bto-0000713.html","leaf"],["pitcher-bto-0001069.html","pitcher"],["small-intestine-bto-0000651.html","small intestine"],["stem-bto-0001300.html","stem"]],"b":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]]},{"id":"NCBITaxon:816","l":"Bacteroides","na":2,"nb":4,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["colon-bto-0000269.html","colon"]],"b":[["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":2,"nb":4,"a":[["hospital-envo-00002173.html","hospital"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]]},{"id":"NCBITaxon:105841","l":"Anaerostipes caccae","na":3,"nb":2,"a":[["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["emulsion-envo-00010506.html","emulsion"],["organic-feature-envo-01000159.html","organic feature"]],"b":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]]},{"id":"NCBITaxon:1492","l":"Clostridium butyricum","na":3,"nb":2,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["intestine-environment-envo-2100002.html","intestine environment"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":2,"nb":3,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]]},{"id":"NCBITaxon:203682","l":"Planctomycetota","na":2,"nb":3,"a":[["column-bto-0005692.html","column"],["crop-bto-0000301.html","crop"]],"b":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"]]},{"id":"NCBITaxon:2208","l":"Methanosarcina barkeri","na":2,"nb":3,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["sludge-envo-00002044.html","sludge"]],"b":[["DVM_Triculture.html","DVM Tri-culture"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]]},{"id":"NCBITaxon:28108","l":"Alteromonas macleodii","na":3,"nb":2,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["marine-water-body-envo-00001999.html","marine water body"],["sandstone-envo-00002055.html","sandstone"]],"b":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]]},{"id":"NCBITaxon:29466","l":"Veillonella parvula","na":3,"nb":2,"a":[["dental-plaque-bto-0000338.html","dental plaque"],["juvenile-bto-0002168.html","juvenile"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]]},{"id":"NCBITaxon:33059","l":"Acidithiobacillus caldus","na":3,"nb":2,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["paddy-field-envo-00000297.html","paddy field"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]]},{"id":"NCBITaxon:33959","l":"Lactobacillus johnsonii","na":3,"nb":2,"a":[["animal-litter-envo-00002191.html","animal litter"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":3,"nb":2,"a":[["bile-bto-0000121.html","bile"],["rectum-bto-0001158.html","rectum"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]]},{"id":"NCBITaxon:528","l":"Ochrobactrum","na":2,"nb":3,"a":[["pitcher-bto-0001069.html","pitcher"],["small-intestine-bto-0000651.html","small intestine"]],"b":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"]]},{"id":"NCBITaxon:853","l":"Faecalibacterium prausnitzii","na":2,"nb":3,"a":[["coral-reef-envo-00000150.html","coral reef"],["tropical-envo-01000204.html","tropical"]],"b":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"]]},{"id":"NCBITaxon:110500","l":"Pelotomaculum thermopropionicum","na":2,"nb":2,"a":[["river-envo-00000022.html","river"],["subpolar-coniferous-forest-biome-envo-01000250.html","subpolar coniferous forest biome"]],"b":[["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"]]},{"id":"NCBITaxon:1234","l":"Nitrospira","na":2,"nb":2,"a":[["crop-bto-0000301.html","crop"],["seedling-bto-0001228.html","seedling"]],"b":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"]]},{"id":"NCBITaxon:244366","l":"Klebsiella variicola","na":2,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]]},{"id":"NCBITaxon:28034","l":"Sulfobacillus thermosulfidooxidans","na":2,"nb":2,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]]},{"id":"NCBITaxon:357809","l":"Lachnoclostridium phytofermentans ISDg","na":2,"nb":2,"a":[["reservoir-envo-00000025.html","reservoir"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":2,"nb":2,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]]},{"id":"NCBITaxon:39488","l":"Anaerobutyricum hallii","na":2,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"],["harbour-envo-00000463.html","harbour"]],"b":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]]},{"id":"NCBITaxon:4577","l":"Zea mays","na":2,"nb":2,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"]]},{"id":"NCBITaxon:84567","l":"Pedobacter","na":2,"nb":2,"a":[["air-envo-00002005.html","air"],["glacier-envo-00000133.html","glacier"]],"b":[["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]]},{"id":"CHEBI:16183","l":"methane","na":1,"nb":62,"a":[["methane-bioremediation-material-habitatmech-gold-d510166905.html","methane bioremediation material"]],"b":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"]]},{"id":"ENVO:01001002","l":"animal-associated environment","na":47,"nb":1,"a":[["amphibian-associated-environment-habitatmech-gold-0cd585a031.html","amphibian-associated environment"],["annelid-associated-environment-habitatmech-gold-6e10201167.html","annelid-associated environment"],["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["chelicerate-associated-environment-habitatmech-gold-44a2cbbd60.html","chelicerate-associated environment"],["crustacean-associated-environment-habitatmech-gold-2959225799.html","crustacean-associated environment"],["insect-associated-environment-habitatmech-gold-dba2a83b95.html","insect-associated environment"]],"b":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":25,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-water-body-envo-00001999.html","marine water body"],["sea-water-envo-00002149.html","sea water"],["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]]},{"id":"NCBITaxon:1279","l":"Staphylococcus","na":23,"nb":1,"a":[["adult-bto-0001043.html","adult"],["cecum-bto-0000166.html","cecum"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["head-bto-0000282.html","head"]],"b":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]]},{"id":"NCBITaxon:1301","l":"Streptococcus","na":23,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["head-bto-0000282.html","head"]],"b":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"NCBITaxon:106592","l":"Ensifer adhaerens","na":20,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]]},{"id":"ENVO:2100002","l":"intestine environment","na":1,"nb":17,"a":[["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"]]},{"id":"ENVO:00000021","l":"freshwater lake","na":16,"nb":1,"a":[["algal-bloom-envo-2000004.html","algal bloom"],["anoxic-zone-habitatmech-gold-b75e4aa08f.html","Anoxic zone"],["aphotic-zone-habitatmech-gold-fcba7e6334.html","Aphotic zone"],["biofilm-habitatmech-gold-748b381af4.html","Biofilm"],["cyanobacterial-aggregates-habitatmech-gold-9b43a12f0c.html","Cyanobacterial aggregates"],["cyanobacterial-bloom-envo-03600071.html","cyanobacterial bloom"]],"b":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"]]},{"id":"NCBITaxon:1598","l":"Limosilactobacillus reuteri","na":14,"nb":1,"a":[["cecum-mucosa-bto-0000213.html","cecum mucosa"],["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["ileum-bto-0000620.html","ileum"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"]],"b":[["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"]]},{"id":"NCBITaxon:1264","l":"Hominimerdicola alba","na":13,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["stream-envo-00000023.html","stream"],["animal-house-envo-00003040.html","animal house"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biome-envo-00000428.html","biome"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"]],"b":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"]]},{"id":"NCBITaxon:1350","l":"Enterococcus","na":13,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["dorsum-bto-0001713.html","dorsum"],["hand-bto-0004668.html","hand"],["intestine-bto-0000648.html","intestine"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"]],"b":[["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"]]},{"id":"ENVO:01000320","l":"marine environment","na":1,"nb":12,"a":[["marine-environment-envo-01000320.html","marine environment"]],"b":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":11,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"],["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["laboratory-facility-envo-01001406.html","laboratory facility"],["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["bone-element-uberon-0001474.html","bone element"],["juvenile-bto-0002168.html","juvenile"]],"b":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]]},{"id":"ENVO:00000020","l":"lake","na":10,"nb":1,"a":[["aphotic-zone-habitatmech-gold-fcba7e6334.html","Aphotic zone"],["freshwater-lake-envo-00000021.html","freshwater lake"],["glacial-lake-envo-00000488.html","glacial lake"],["lake-envo-00000020.html","lake"],["lake-habitatmech-gold-713c7f352a.html","Lake"],["marine-lake-envo-03600041.html","marine lake"]],"b":[["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"]]},{"id":"NCBITaxon:1399","l":"Cytobacillus firmus","na":10,"nb":1,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"],["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"]]},{"id":"NCBITaxon:33075","l":"Acidobacterium capsulatum","na":10,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["paddy-field-envo-00000297.html","paddy field"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"],["area-of-tundra-envo-00000112.html","area of tundra"],["forested-area-envo-00000111.html","forested area"],["mountain-pass-envo-00000084.html","mountain pass"]],"b":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":10,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["air-conditioning-unit-envo-00002874.html","air conditioning unit"],["leaf-bto-0000713.html","leaf"],["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]]},{"id":"NCBITaxon:47715","l":"Lacticaseibacillus rhamnosus","na":10,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["fermentation-starter-envo-03600040.html","fermentation starter"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]]},{"id":"ENVO:01000747","l":"regolith","na":1,"nb":9,"a":[["regolith-envo-01000747.html","regolith"]],"b":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":9,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["fresh-water-envo-00002011.html","fresh water"],["river-envo-00000022.html","river"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"]]},{"id":"NCBITaxon:1224","l":"Pseudomonadota","na":1,"nb":8,"a":[["hemolymph-bto-0000572.html","hemolymph"]],"b":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":8,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["alimentary-canal-bto-0000058.html","alimentary canal"],["blood-bto-0000089.html","blood"],["small-intestine-bto-0000651.html","small intestine"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["geographic-feature-envo-00000000.html","geographic feature"]],"b":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]]},{"id":"NCBITaxon:1655","l":"Actinomyces naeslundii","na":8,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"],["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"],["archeological-site-envo-00000564.html","archeological site"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]]},{"id":"NCBITaxon:171550","l":"Rikenellaceae","na":8,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["ileum-bto-0000620.html","ileum"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"]],"b":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"ENVO:00000003","l":"mine tailing","na":1,"nb":7,"a":[["mine-tailing-envo-00000003.html","mine tailing"]],"b":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]]},{"id":"ENVO:00003862","l":"dairy","na":1,"nb":7,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]]},{"id":"ENVO:00003965","l":"anaerobic digester sludge","na":1,"nb":7,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"]],"b":[["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Magnetite_Sulfate_Stress_Anaerobic_Microbiome.html","Magnetite Sulfate-Stress Anaerobic Microbiome"],["Thermophilic_ExSitu_Biomethanation_Mixed_Culture.html","Thermophilic Ex-Situ Biomethanation Mixed Culture"]]},{"id":"ENVO:00005750","l":"grassland soil","na":1,"nb":7,"a":[["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"],["Soil_BGC_Phylum_Depth_Vegetation_Community.html","Soil Biosynthetic Gene Cluster Phylum-Depth-Vegetation Community"],["Soil_CPR_Nanoarchaea_Rare_Biosphere_Community.html","Soil CPR Bacteria and Nanoarchaea Rare-Biosphere Community"]]},{"id":"ENVO:01000313","l":"anthropogenic environment","na":7,"nb":1,"a":[["laboratory-environment-envo-01001405.html","laboratory environment"],["subway-environment-habitatmech-gold-961229841c.html","subway environment"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["cultivated-environment-envo-01000311.html","cultivated environment"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":7,"nb":1,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["farm-envo-00000078.html","farm"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]]},{"id":"NCBITaxon:1107","l":"Chloroflexus","na":7,"nb":1,"a":[["crop-bto-0000301.html","crop"],["gut-bto-0000545.html","gut"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["seedling-bto-0001228.html","seedling"],["skin-bto-0001253.html","skin"]],"b":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]]},{"id":"NCBITaxon:1243","l":"Leuconostoc","na":7,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["intestine-bto-0000648.html","intestine"],["mouth-bto-0001090.html","mouth"],["stem-bto-0001300.html","stem"]],"b":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]]},{"id":"NCBITaxon:13690","l":"Sphingobium yanoikuyae","na":7,"nb":1,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["resting-cell-bto-0001170.html","resting cell"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"],["water-scum-envo-00005794.html","water scum"]],"b":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]]},{"id":"NCBITaxon:165179","l":"Segatella copri","na":7,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["juvenile-bto-0002168.html","juvenile"],["rumen-uberon-0007365.html","rumen"],["tongue-bto-0001385.html","tongue"],["vaginal-fluid-bto-0003084.html","vaginal fluid"],["animal-litter-envo-00002191.html","animal litter"]],"b":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":7,"nb":1,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["pseudostem-bto-0005992.html","pseudostem"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]]},{"id":"NCBITaxon:40323","l":"Stenotrophomonas","na":1,"nb":7,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"]]},{"id":"NCBITaxon:469","l":"Acinetobacter","na":7,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["endotracheal-fluid-ncit-c171504.html","Endotracheal Fluid"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"],["pseudostem-bto-0005992.html","pseudostem"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"]],"b":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]]},{"id":"NCBITaxon:56780","l":"Syntrophus aciditrophicus SB","na":7,"nb":1,"a":[["bay-envo-00000032.html","bay"],["black-smoker-envo-00000218.html","black smoker"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["saline-water-envo-00002010.html","saline water"],["village-biome-envo-01000246.html","village biome"]],"b":[["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"]]},{"id":"ENVO:01000001","l":"mud","na":6,"nb":1,"a":[["marine-mud-envo-00005795.html","marine mud"],["mud-habitatmech-gold-cdf0825f85.html","Mud"],["anaerobic-mud-envo-00002133.html","anaerobic mud"],["estuarine-mud-envo-00002160.html","estuarine mud"],["mud-envo-01000001.html","mud"],["mud-habitatmech-gold-16370f2eb5.html","Mud"]],"b":[["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"]]},{"id":"NCBITaxon:1269","l":"Micrococcus","na":6,"nb":1,"a":[["cecum-bto-0000166.html","cecum"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["saliva-bto-0001202.html","saliva"],["tongue-bto-0001385.html","tongue"]],"b":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]]},{"id":"NCBITaxon:1512","l":"[Clostridium] symbiosum","na":6,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["animal-house-envo-00003040.html","animal house"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["emulsion-envo-00010506.html","emulsion"],["environmental-feature-envo-00002297.html","environmental feature"],["pig-manure-envo-00003860.html","pig manure"]],"b":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]]},{"id":"NCBITaxon:1624","l":"Ligilactobacillus salivarius","na":6,"nb":1,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["trachea-bto-0001388.html","trachea"],["animal-litter-envo-00002191.html","animal litter"],["intestine-environment-envo-2100002.html","intestine environment"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]]},{"id":"NCBITaxon:1872122","l":"Acidovorax sp.","na":6,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"]]},{"id":"NCBITaxon:2203","l":"Methanospirillum hungatei","na":1,"nb":6,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"]],"b":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":1,"nb":6,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]]},{"id":"ENVO:00000134","l":"permafrost","na":5,"nb":1,"a":[["permafrost-envo-00000134.html","permafrost"],["permafrost-habitatmech-gold-dd598a891d.html","Permafrost"],["permafrost-habitatmech-gold-6821e96263.html","Permafrost"],["permafrost-habitatmech-gold-6d092784ef.html","Permafrost"],["permafrost-habitatmech-gold-83818dd6ed.html","Permafrost"]],"b":[["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"]]},{"id":"ENVO:00002012","l":"hypersaline water","na":5,"nb":1,"a":[["brine-envo-00003044.html","brine"],["hypersaline-water-envo-00002012.html","hypersaline water"],["microbial-mats-habitatmech-gold-a00c47c576.html","Microbial mats"],["saline-water-habitatmech-gold-f75e192814.html","Saline water"],["salt-crystallizer-ponds-habitatmech-gold-277843111f.html","Salt crystallizer ponds"]],"b":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]]},{"id":"NCBITaxon:106589","l":"Cupriavidus","na":5,"nb":1,"a":[["gut-bto-0000545.html","gut"],["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["skin-bto-0001253.html","skin"]],"b":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]]},{"id":"NCBITaxon:1245","l":"Leuconostoc mesenteroides","na":5,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["leaf-po-0025034.html","leaf"],["animal-manure-envo-00003031.html","animal manure"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]]},{"id":"NCBITaxon:239","l":"Flavobacterium sp.","na":5,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["mud-envo-01000001.html","mud"],["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"],["orchard-envo-00000115.html","orchard"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]]},{"id":"NCBITaxon:28232","l":"Geobacter metallireducens","na":1,"nb":5,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":5,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["food-spoiled-foodon-00003366.html","food (spoiled)"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"]],"b":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":5,"nb":1,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["pseudostem-bto-0005992.html","pseudostem"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]]},{"id":"NCBITaxon:57723","l":"Acidobacteriota","na":1,"nb":5,"a":[["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["SPRUCE_Peatland_Methane_Cycling_Community.html","SPRUCE Peatland Methane-Cycling Microbial Community"]]},{"id":"NCBITaxon:74969","l":"Ferroplasma acidiphilum","na":1,"nb":5,"a":[["factory-envo-01000536.html","factory"]],"b":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]]},{"id":"NCBITaxon:838","l":"Prevotella","na":5,"nb":1,"a":[["brain-bto-0000142.html","brain"],["colon-bto-0000269.html","colon"],["heart-bto-0000562.html","heart"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"]],"b":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"CHEBI:24632","l":"hydrocarbon","na":4,"nb":1,"a":[["hydrocarbon-habitatmech-gold-db79f0142d.html","Hydrocarbon"],["hydrocarbon-habitatmech-gold-3c68e33a11.html","Hydrocarbon"],["hydrocarbon-habitatmech-gold-e77998b825.html","Hydrocarbon"],["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"]],"b":[["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"]]},{"id":"ENVO:01000306","l":"freshwater environment","na":1,"nb":4,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]]},{"id":"ENVO:01001033","l":"digestive tract environment","na":1,"nb":4,"a":[["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"],["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":4,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"],["human-construction-envo-00000070.html","human construction"],["sediment-envo-00002007.html","sediment"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]]},{"id":"NCBITaxon:1089553","l":"Thermacetogenium phaeum DSM 12270","na":4,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["pulp-bto-0001142.html","pulp"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":4,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]]},{"id":"NCBITaxon:1587","l":"Lactobacillus helveticus","na":4,"nb":1,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["intestine-environment-envo-2100002.html","intestine environment"],["urban-biome-envo-01000249.html","urban biome"],["harbour-envo-00000463.html","harbour"]],"b":[["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"]]},{"id":"NCBITaxon:1682","l":"Bifidobacterium longum subsp. infantis","na":4,"nb":1,"a":[["egg-food-product-foodon-00001274.html","egg food product"],["breast-bto-0000149.html","breast"],["ht-29-cell-bto-0000182.html","HT-29 cell"],["ma-104-cell-bto-0004983.html","MA-104 cell"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]]},{"id":"NCBITaxon:200795","l":"Chloroflexota","na":1,"nb":4,"a":[["crop-bto-0000301.html","crop"]],"b":[["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["Soil_BGC_Phylum_Depth_Vegetation_Community.html","Soil Biosynthetic Gene Cluster Phylum-Depth-Vegetation Community"]]},{"id":"NCBITaxon:2209","l":"Methanosarcina mazei","na":4,"nb":1,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["sludge-envo-00002044.html","sludge"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"]]},{"id":"NCBITaxon:356","l":"Hyphomicrobiales","na":4,"nb":1,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["stem-bto-0001300.html","stem"]],"b":[["Thiocyanate_Afipia_Thiobacillus_Bioreactor_Community.html","Thiocyanate-Degrading Afipia and Thiobacillus Bioreactor Community"]]},{"id":"NCBITaxon:570","l":"Klebsiella","na":1,"nb":4,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"]]},{"id":"NCBITaxon:68287","l":"Mesorhizobium","na":1,"nb":4,"a":[["head-bto-0000282.html","head"]],"b":[["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]]},{"id":"NCBITaxon:75682","l":"Oxalobacteraceae","na":4,"nb":1,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]]},{"id":"NCBITaxon:872","l":"Desulfovibrio","na":1,"nb":4,"a":[["colon-bto-0000269.html","colon"]],"b":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]]},{"id":"NCBITaxon:930","l":"Acidithiobacillus thiooxidans","na":1,"nb":4,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]]},{"id":"NCBITaxon:1090","l":"Chlorobiota","na":3,"nb":1,"a":[["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"]],"b":[["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"]]},{"id":"NCBITaxon:1249","l":"Weissella paramesenteroides","na":3,"nb":1,"a":[["cecum-bto-0000166.html","cecum"],["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"]],"b":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]]},{"id":"NCBITaxon:1451","l":"Paenibacillus amylolyticus","na":3,"nb":1,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"]]},{"id":"NCBITaxon:1519","l":"Clostridium tyrobutyricum","na":3,"nb":1,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["peatland-envo-00000044.html","peatland"]],"b":[["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]]},{"id":"NCBITaxon:1582","l":"Lacticaseibacillus casei","na":3,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]]},{"id":"NCBITaxon:1597","l":"Lacticaseibacillus paracasei","na":3,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":1,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":3,"nb":1,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]]},{"id":"NCBITaxon:203124","l":"Trichodesmium erythraeum IMS101","na":3,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["coastal-water-body-envo-02000049.html","coastal water body"],["marine-neritic-zone-envo-00000206.html","marine neritic zone"]],"b":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":1,"nb":3,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]]},{"id":"NCBITaxon:22","l":"Shewanella","na":1,"nb":3,"a":[["wood-bto-0005516.html","wood"]],"b":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Shewanella_Denitrifying_Richness_SynComs.html","Shewanella Denitrifying Richness SynComs"]]},{"id":"NCBITaxon:28037","l":"Streptococcus mitis","na":3,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["archeological-site-envo-00000564.html","archeological site"],["tropical-envo-01000204.html","tropical"]],"b":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]]},{"id":"NCBITaxon:301375","l":"Methanothrix harundinacea","na":3,"nb":1,"a":[["small-river-biome-envo-00000890.html","small river biome"],["shoreline-envo-00000486.html","shoreline"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"]]},{"id":"NCBITaxon:3041","l":"Chlorophyta","na":1,"nb":3,"a":[["leaf-bto-0000713.html","leaf"]],"b":[["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"]]},{"id":"NCBITaxon:33035","l":"Blautia producta","na":1,"nb":3,"a":[["juvenile-bto-0002168.html","juvenile"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]]},{"id":"NCBITaxon:33952","l":"Acetobacterium woodii","na":1,"nb":3,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]]},{"id":"NCBITaxon:375","l":"Bradyrhizobium japonicum","na":3,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"]]},{"id":"NCBITaxon:375288","l":"Parabacteroides","na":3,"nb":1,"a":[["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"]],"b":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"]]},{"id":"NCBITaxon:40214","l":"Acinetobacter johnsonii","na":3,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["pitcher-bto-0001069.html","pitcher"],["water-scum-envo-00005794.html","water scum"]],"b":[["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]]},{"id":"NCBITaxon:48736","l":"Ralstonia","na":3,"nb":1,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"]],"b":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":1,"nb":3,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]]},{"id":"NCBITaxon:547","l":"Enterobacter","na":1,"nb":3,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]]},{"id":"NCBITaxon:572511","l":"Blautia","na":3,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["colon-bto-0000269.html","colon"]],"b":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]]},{"id":"NCBITaxon:582","l":"Morganella morganii","na":3,"nb":1,"a":[["blast-cell-bto-0000125.html","blast cell"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"],["spike-bto-0001278.html","spike"]],"b":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]]},{"id":"NCBITaxon:69373","l":"Curtobacterium pusillum","na":3,"nb":1,"a":[["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["seedling-bto-0001228.html","seedling"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]]},{"id":"NCBITaxon:76759","l":"Pseudomonas monteilii","na":3,"nb":1,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"]]},{"id":"NCBITaxon:85413","l":"Allobosea","na":1,"nb":3,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"]],"b":[["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":3,"nb":1,"a":[["city-envo-00000856.html","city"],["cold-environment-envo-01000309.html","cold environment"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]]},{"id":"ENVO:00002127","l":"stream sediment","na":1,"nb":2,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Tropidoatractus_Magnetotacticus_Tripartite_Syntrophy.html","Tropidoatractus magnetotacticus Magnetotactic Ciliate Tripartite Syntrophy"]]},{"id":"ENVO:03000033","l":"marine sediment","na":2,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"]]},{"id":"NCBITaxon:1033","l":"Afipia","na":2,"nb":1,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"]],"b":[["Thiocyanate_Afipia_Thiobacillus_Bioreactor_Community.html","Thiocyanate-Degrading Afipia and Thiobacillus Bioreactor Community"]]},{"id":"NCBITaxon:1091494","l":"Methylotuvimicrobium alcaliphilum 20Z","na":1,"nb":2,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"]]},{"id":"NCBITaxon:1129","l":"Synechococcus","na":2,"nb":1,"a":[["column-bto-0005692.html","column"],["hemolymph-bto-0000572.html","hemolymph"]],"b":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]]},{"id":"NCBITaxon:1173061","l":"Geotrichum candidum","na":2,"nb":1,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]]},{"id":"NCBITaxon:119532","l":"Microcoleus vaginatus","na":2,"nb":1,"a":[["desert-biome-envo-01000179.html","desert biome"],["desert-area-envo-00000097.html","desert area"]],"b":[["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]]},{"id":"NCBITaxon:1255","l":"Pediococcus pentosaceus","na":2,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"]],"b":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]]},{"id":"NCBITaxon:12916","l":"Acidovorax","na":1,"nb":2,"a":[["urine-bto-0001419.html","urine"]],"b":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]]},{"id":"NCBITaxon:1303","l":"Streptococcus oralis","na":2,"nb":1,"a":[["throat-bto-0000828.html","throat"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]]},{"id":"NCBITaxon:138074","l":"Serratia symbiotica","na":2,"nb":1,"a":[["intestine-bto-0000648.html","intestine"],["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"]]},{"id":"NCBITaxon:1398","l":"Heyndrickxia coagulans","na":2,"nb":1,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"]]},{"id":"NCBITaxon:1401","l":"Paenibacillus lautus","na":2,"nb":1,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"]]},{"id":"NCBITaxon:142182","l":"Gemmatimonadota","na":1,"nb":2,"a":[["crop-bto-0000301.html","crop"]],"b":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":2,"a":[["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]]},{"id":"NCBITaxon:1538","l":"Clostridium ljungdahlii","na":1,"nb":2,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]]},{"id":"NCBITaxon:160488","l":"Pseudomonas putida (strain ATCC 47054 / DSM 6125 / CFBP 8728 / NCIMB 11950 / KT2440)","na":1,"nb":2,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"]]},{"id":"NCBITaxon:161493","l":"Anaeromyxobacter dehalogenans","na":2,"nb":1,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"]]},{"id":"NCBITaxon:1680","l":"Bifidobacterium adolescentis","na":2,"nb":1,"a":[["brain-bto-0000142.html","brain"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]]},{"id":"NCBITaxon:169215","l":"","na":1,"nb":2,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"]],"b":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]]},{"id":"NCBITaxon:171552","l":"Prevotellaceae","na":2,"nb":1,"a":[["colon-bto-0000269.html","colon"],["rumen-uberon-0007365.html","rumen"]],"b":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"NCBITaxon:1785","l":"Mycobacterium sp.","na":2,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"],["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]]},{"id":"NCBITaxon:1871043","l":"Variovorax sp.","na":1,"nb":2,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]]},{"id":"NCBITaxon:1872086","l":"Ensifer sp.","na":2,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]]},{"id":"NCBITaxon:192","l":"Azospirillum brasilense","na":2,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"]]},{"id":"NCBITaxon:20","l":"Phenylobacterium","na":2,"nb":1,"a":[["crop-bto-0000301.html","crop"],["nectar-bto-0000537.html","nectar"]],"b":[["Tomato_Oxylipin_SynCom3.html","Tomato Oxylipin-Protective SynCom3"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus (strain ATCC 27405 / DSM 1237 / JCM 9322 / NBRC 103400 / NCIMB 10682 / NRRL B-4536 / VPI 7372)","na":1,"nb":2,"a":[["blood-plasma-bto-0000131.html","blood plasma"]],"b":[["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]]},{"id":"NCBITaxon:2162","l":"Methanobacterium formicicum","na":1,"nb":2,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"]]},{"id":"NCBITaxon:2173","l":"Methanobrevibacter smithii","na":1,"nb":2,"a":[["lagoon-envo-00000038.html","lagoon"]],"b":[["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"]]},{"id":"NCBITaxon:2223","l":"Methanothrix soehngenii","na":1,"nb":2,"a":[["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]]},{"id":"NCBITaxon:231455","l":"Dyella japonica","na":1,"nb":2,"a":[["area-of-tundra-envo-00000112.html","area of tundra"]],"b":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii (strain ATCC 43067 / DSM 2661 / JAL-1 / JCM 10045 / NBRC 100440)","na":2,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":2,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"]]},{"id":"NCBITaxon:2836","l":"Bacillariophyta","na":2,"nb":1,"a":[["diatom-associated-environment-habitatmech-gold-1276bea544.html","diatom-associated environment"],["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]]},{"id":"NCBITaxon:285","l":"Comamonas testosteroni","na":2,"nb":1,"a":[["waste-habitatmech-bacdive-36df85e4a4.html","Waste"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]]},{"id":"NCBITaxon:293387","l":"Bacillus altitudinis","na":1,"nb":2,"a":[["resting-cell-bto-0001170.html","resting cell"]],"b":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"]]},{"id":"NCBITaxon:29448","l":"Bradyrhizobium elkanii","na":2,"nb":1,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["area-of-tundra-envo-00000112.html","area of tundra"]],"b":[["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]]},{"id":"NCBITaxon:299767","l":"Enterobacter ludwigii","na":1,"nb":2,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]]},{"id":"NCBITaxon:323259","l":"Methanospirillum hungatei JF-1","na":1,"nb":2,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]]},{"id":"NCBITaxon:39152","l":"Methanococcus maripaludis","na":1,"nb":2,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["DVM_Triculture.html","DVM Tri-culture"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":2,"nb":1,"a":[["city-envo-00000856.html","city"],["cropland-biome-envo-01000245.html","cropland biome"]],"b":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]]},{"id":"NCBITaxon:515619","l":"Agathobacter rectalis ATCC 33656","na":1,"nb":2,"a":[["gut-epithelium-bto-0000956.html","gut epithelium"]],"b":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]]},{"id":"NCBITaxon:6239","l":"Caenorhabditis elegans","na":2,"nb":1,"a":[["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"]]},{"id":"NCBITaxon:648","l":"Aeromonas caviae","na":2,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]]},{"id":"NCBITaxon:82367","l":"Paracoccus pantotrophus","na":2,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"]]},{"id":"NCBITaxon:82380","l":"Microbacterium oxydans","na":1,"nb":2,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]]},{"id":"NCBITaxon:876","l":"Desulfovibrio desulfuricans","na":2,"nb":1,"a":[["sludge-envo-00002044.html","sludge"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":2,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]]},{"id":"UBERON:0001155","l":"colon","na":2,"nb":1,"a":[["colon-habitatmech-gold-c484d9a195.html","Colon"],["colon-habitatmech-gold-195d07bc47.html","Colon"]],"b":[["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"]]},{"id":"ENVO:00000057","l":"mangrove swamp","na":1,"nb":1,"a":[["mangrove-swamp-envo-00000057.html","mangrove swamp"]],"b":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"]]},{"id":"ENVO:00000126","l":"sulfur spring","na":1,"nb":1,"a":[["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"]]},{"id":"ENVO:00002121","l":"alkaline salt lake","na":1,"nb":1,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"]],"b":[["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]]},{"id":"ENVO:00003030","l":"silage","na":1,"nb":1,"a":[["silage-envo-00003030.html","silage"]],"b":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"]]},{"id":"ENVO:01000910","l":"soil biocrust","na":1,"nb":1,"a":[["soil-biocrust-envo-01000910.html","soil biocrust"]],"b":[["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]]},{"id":"NCBITaxon:100176","l":"Papillibacter cinnamivorans","na":1,"nb":1,"a":[["cecum-bto-0000166.html","cecum"]],"b":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"]]},{"id":"NCBITaxon:105972","l":"Methylosarcina fibrata","na":1,"nb":1,"a":[["stream-envo-00000023.html","stream"]],"b":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]]},{"id":"NCBITaxon:110321","l":"Sinorhizobium medicae","na":1,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"]]},{"id":"NCBITaxon:1122947","l":"Pelosinus fermentans DSM 17108","na":1,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"]]},{"id":"NCBITaxon:1131703","l":"Sphaerochaeta globosa","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"]]},{"id":"NCBITaxon:1134404","l":"Ignavibacteriota","na":1,"nb":1,"a":[["gut-bto-0000545.html","gut"]],"b":[["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"]]},{"id":"NCBITaxon:119060","l":"Burkholderiaceae","na":1,"nb":1,"a":[["trunk-bto-0001493.html","trunk"]],"b":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]]},{"id":"NCBITaxon:1253","l":"Pediococcus","na":1,"nb":1,"a":[["cecum-bto-0000166.html","cecum"]],"b":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]]},{"id":"NCBITaxon:1272","l":"Kocuria varians","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"]]},{"id":"NCBITaxon:135619","l":"Oceanospirillales","na":1,"nb":1,"a":[["column-bto-0005692.html","column"]],"b":[["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"]]},{"id":"NCBITaxon:1455","l":"Pseudobacillus badius","na":1,"nb":1,"a":[["organic-waste-material-envo-00002873.html","organic waste material"]],"b":[["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"]]},{"id":"NCBITaxon:1488","l":"Clostridium acetobutylicum","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]]},{"id":"NCBITaxon:1501","l":"Clostridium pasteurianum","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]]},{"id":"NCBITaxon:1517","l":"Thermoanaerobacterium thermosaccharolyticum","na":1,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]]},{"id":"NCBITaxon:1579","l":"Lactobacillus acidophilus","na":1,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"]],"b":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]]},{"id":"NCBITaxon:1585","l":"Lactobacillus delbrueckii subsp. bulgaricus","na":1,"nb":1,"a":[["pig-manure-envo-00003860.html","pig manure"]],"b":[["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]]},{"id":"NCBITaxon:158836","l":"Enterobacter hormaechei","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]]},{"id":"NCBITaxon:168384","l":"Marvinbryantia formatexigens","na":1,"nb":1,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"]]},{"id":"NCBITaxon:1828","l":"Rhodococcoides fascians","na":1,"nb":1,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]]},{"id":"NCBITaxon:1871068","l":"Phyllobacteriaceae bacterium","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]]},{"id":"NCBITaxon:1898203","l":"Lachnospiraceae bacterium","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]]},{"id":"NCBITaxon:216389","l":"Dehalococcoides mccartyi BAV1","na":1,"nb":1,"a":[["road-envo-00000064.html","road"]],"b":[["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]]},{"id":"NCBITaxon:216778","l":"Stenotrophomonas rhizophila","na":1,"nb":1,"a":[["style-bto-0001313.html","style"]],"b":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"]]},{"id":"NCBITaxon:219572","l":"Pseudomonas antarctica","na":1,"nb":1,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]]},{"id":"NCBITaxon:225937","l":"Marinobacter adhaerens HP15","na":1,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]]},{"id":"NCBITaxon:226","l":"Alteromonas","na":1,"nb":1,"a":[["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]]},{"id":"NCBITaxon:226186","l":"Bacteroides thetaiotaomicron (strain ATCC 29148 / DSM 2079 / JCM 5827 / CCUG 10774 / NCTC 10582 / VPI-5482 / E50)","na":1,"nb":1,"a":[["gut-epithelium-bto-0000956.html","gut epithelium"]],"b":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima (strain ATCC 43589 / DSM 3109 / JCM 10099 / NBRC 100826 / MSB8)","na":1,"nb":1,"a":[["feather-bto-0000447.html","feather"]],"b":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]]},{"id":"NCBITaxon:246200","l":"Ruegeria pomeroyi DSS-3","na":1,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]]},{"id":"NCBITaxon:250","l":"Chryseobacterium gleum","na":1,"nb":1,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]]},{"id":"NCBITaxon:2745","l":"Halomonas","na":1,"nb":1,"a":[["wood-bto-0005516.html","wood"]],"b":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]]},{"id":"NCBITaxon:29394","l":"Dolosigranulum pigrum","na":1,"nb":1,"a":[["bone-element-uberon-0001474.html","bone element"]],"b":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"]]},{"id":"NCBITaxon:3078","l":"Auxenochlorella pyrenoidosa","na":1,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"]],"b":[["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"]]},{"id":"NCBITaxon:33010","l":"Cutibacterium avidum","na":1,"nb":1,"a":[["bone-element-uberon-0001474.html","bone element"]],"b":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]]},{"id":"NCBITaxon:33011","l":"Cutibacterium granulosum","na":1,"nb":1,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]]},{"id":"NCBITaxon:33883","l":"Microbacterium arborescens","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]]},{"id":"NCBITaxon:340177","l":"Chlorobium chlorochromatii CaD3","na":1,"nb":1,"a":[["photoreceptor-cell-bto-0001060.html","photoreceptor cell"]],"b":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"]]},{"id":"NCBITaxon:372461","l":"Buchnera aphidicola BCc","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"]]},{"id":"NCBITaxon:38304","l":"Corynebacterium tuberculostearicum","na":1,"nb":1,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"]]},{"id":"NCBITaxon:399726","l":"Thermoanaerobacter sp. X514","na":1,"nb":1,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"]]},{"id":"NCBITaxon:409291","l":"Arthrobacter humicola","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]]},{"id":"NCBITaxon:43775","l":"Syntrophus gentianae","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]]},{"id":"NCBITaxon:47880","l":"Pseudomonas fulva","na":1,"nb":1,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]]},{"id":"NCBITaxon:47920","l":"Acidovorax delafieldii","na":1,"nb":1,"a":[["bone-element-uberon-0001474.html","bone element"]],"b":[["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]]},{"id":"NCBITaxon:49082","l":"Candidatus Neoarthromitus","na":1,"nb":1,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]]},{"id":"NCBITaxon:51669","l":"Tetragenococcus halophilus","na":1,"nb":1,"a":[["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]]},{"id":"NCBITaxon:542","l":"Zymomonas mobilis","na":1,"nb":1,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["Zymomonas_Ecoli_Exometabolomics_Obligate_Mutualism.html","Zymomonas-E. coli Exometabolomics-Designed Obligate Mutualism"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":1,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":1,"nb":1,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]]},{"id":"NCBITaxon:571256","l":"Brucella pituitosa","na":1,"nb":1,"a":[["seedling-bto-0001228.html","seedling"]],"b":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]]},{"id":"NCBITaxon:685","l":"Vibrio diazotrophicus","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]]},{"id":"NCBITaxon:80840","l":"Burkholderiales","na":1,"nb":1,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"]],"b":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"]]},{"id":"NCBITaxon:80866","l":"Delftia acidovorans","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]]},{"id":"NCBITaxon:82","l":"Hyphomicrobium sp.","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"]]},{"id":"NCBITaxon:86185","l":"Pseudomonas lundensis","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]]},{"id":"NCBITaxon:930166","l":"Pseudomonas brassicacearum","na":1,"nb":1,"a":[["spike-bto-0001278.html","spike"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]]},{"id":"NCBITaxon:94625","l":"Brucella intermedia","na":1,"nb":1,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]]},{"id":"UBERON:0002097","l":"skin of body","na":1,"nb":1,"a":[["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["SkinCom_Synthetic_Skin_Community.html","SkinCom Synthetic Skin Community"]]}]} \ No newline at end of file +{"a":"HabitatMech","b":"CommunityMech","base":{"HabitatMech":"https://culturebotai.github.io/HabitatMech/pages/habitats/","CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/"},"n":313,"by":{"NCBITaxon":265,"ENVO":42,"UBERON":4,"CHEBI":2},"terms":[{"id":"NCBITaxon:2","l":"Bacteria","na":40,"nb":56,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["factory-envo-01000536.html","factory"],["adult-bto-0001043.html","adult"]],"b":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"]]},{"id":"ENVO:00001998","l":"soil","na":105,"nb":17,"a":[["soil-habitatmech-gold-fc35741739.html","Soil"],["wetland-area-envo-00000043.html","wetland area"],["soil-habitatmech-gold-b1d707114a.html","Soil"],["soil-habitatmech-gold-e9844fc187.html","Soil"],["soil-habitatmech-gold-3e86b794ef.html","Soil"],["soil-habitatmech-gold-067f7f5e2a.html","Soil"]],"b":[["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]]},{"id":"ENVO:01001001","l":"plant-associated environment","na":21,"nb":16,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["bryophytes-habitatmech-gold-35beb98884.html","Bryophytes"],["endosphere-habitatmech-gold-bfe3e11951.html","Endosphere"],["green-alga-associated-environment-habitatmech-gold-184cc9e802.html","green-alga-associated environment"],["mixed-parts-habitatmech-gold-4dd29bdcf8.html","Mixed parts"],["peat-moss-associated-environment-habitatmech-gold-7f57b82cab.html","peat moss-associated environment"]],"b":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]]},{"id":"NCBITaxon:1386","l":"Bacillus","na":19,"nb":16,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["crop-bto-0000301.html","crop"],["dorsum-bto-0001713.html","dorsum"],["hand-bto-0004668.html","hand"],["head-bto-0000282.html","head"],["juvenile-bto-0002168.html","juvenile"]],"b":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":36,"nb":14,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["bay-envo-00000032.html","bay"],["freshwater-biome-envo-00000873.html","freshwater biome"],["liquid-water-envo-00002006.html","liquid water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]]},{"id":"ENVO:00002123","l":"bioreactor","na":31,"nb":13,"a":[["aerobic-bioreactor-envo-00002126.html","aerobic bioreactor"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["air-scrubber-biofilm-habitatmech-gold-7f436f8aff.html","air scrubber biofilm"],["biofilter-envo-00002152.html","biofilter"],["bioreactor-envo-00002123.html","bioreactor"],["bioreactor-habitatmech-gold-c4bf3d0c83.html","Bioreactor"]],"b":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":27,"nb":11,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["watercourse-envo-00000029.html","watercourse"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["egg-food-product-foodon-00001274.html","egg food product"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]]},{"id":"ENVO:00002007","l":"sediment","na":103,"nb":10,"a":[["marine-sediment-envo-03000033.html","marine sediment"],["sediment-habitatmech-gold-6bc70f0406.html","Sediment"],["sediment-habitatmech-gold-33b265d89f.html","Sediment"],["sediment-habitatmech-gold-7db7617ea4.html","Sediment"],["sediment-habitatmech-gold-2f9eb7ed2f.html","Sediment"],["sediment-habitatmech-gold-2ff751e0a6.html","Sediment"]],"b":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]]},{"id":"NCBITaxon:286","l":"Pseudomonas","na":10,"nb":18,"a":[["heart-bto-0000562.html","heart"],["juvenile-bto-0002168.html","juvenile"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"],["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":10,"nb":15,"a":[["anther-bto-0000079.html","anther"],["epithelial-cell-bto-0000414.html","epithelial cell"],["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":28,"nb":9,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["liquid-water-envo-00002006.html","liquid water"],["watercourse-envo-00000029.html","watercourse"],["compost-envo-00002170.html","compost"],["hospital-envo-00002173.html","hospital"],["human-construction-envo-00000070.html","human construction"]],"b":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":11,"nb":9,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["resting-cell-bto-0001170.html","resting cell"],["seedling-bto-0001228.html","seedling"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":27,"nb":7,"a":[["small-river-biome-envo-00000890.html","small river biome"],["factory-envo-01000536.html","factory"],["organic-waste-material-envo-00002873.html","organic waste material"],["leaf-po-0025034.html","leaf"],["milk-uberon-0001913.html","milk"],["rhizosphere-envo-00005801.html","rhizosphere"]],"b":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]]},{"id":"ENVO:00002116","l":"contaminated soil","na":7,"nb":15,"a":[["hydrocarbon-habitatmech-gold-3c68e33a11.html","Hydrocarbon"],["persistent-organic-pollutant-bioremediation-material-habitatmech-gold-1a78606807.html","persistent organic pollutant bioremediation material"],["contaminated-soil-envo-00002116.html","contaminated soil"],["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"],["oil-contaminated-soil-envo-00002875.html","oil contaminated soil"],["pesticide-habitatmech-gold-8ebd2ee3c5.html","Pesticide"]],"b":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"]]},{"id":"NCBITaxon:40324","l":"Stenotrophomonas maltophilia","na":15,"nb":7,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["catheter-device-ncit-c50344.html","Catheter Device"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["seedling-bto-0001228.html","seedling"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]]},{"id":"ENVO:00002043","l":"wastewater treatment plant","na":9,"nb":7,"a":[["a-o-treatment-system-habitatmech-gold-7c91485eb8.html","A/O treatment system"],["activated-sludge-habitatmech-gold-032b7dd40b.html","Activated sludge"],["aerobic-digester-habitatmech-gold-03fc563fae.html","Aerobic digester"],["anaerobic-digester-habitatmech-gold-3f58fb59be.html","Anaerobic digester"],["effluent-habitatmech-gold-827b5dbbef.html","Effluent"],["influent-habitatmech-gold-2bf3ab7d2f.html","Influent"]],"b":[["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Rhizorhabdus_Cupriavidus_BDE47_Degradation_SynCom.html","Rhizorhabdus-Cupriavidus BDE-47 Degradation SynCom"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":19,"nb":6,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["saline-water-body-envo-01001319.html","saline water body"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":18,"nb":6,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]]},{"id":"UBERON:0000160","l":"intestine","na":11,"nb":6,"a":[["intestine-habitatmech-gold-f3f5ed6008.html","Intestine"],["intestine-habitatmech-gold-70ccbcfe44.html","Intestine"],["intestine-habitatmech-gold-8a75a65fc5.html","Intestine"],["intestine-habitatmech-gold-0171231ef5.html","Intestine"],["intestine-habitatmech-gold-523d63f6f3.html","Intestine"],["intestine-habitatmech-gold-394283d34e.html","Intestine"]],"b":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["OMM12_Gnotobiotic_Mouse_Gut_Community.html","OMM12 Gnotobiotic Mouse Gut Community"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]]},{"id":"NCBITaxon:1578","l":"Lactobacillus","na":20,"nb":5,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["blood-bto-0000089.html","blood"],["brain-bto-0000142.html","brain"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["hand-bto-0004668.html","hand"]],"b":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"],["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]]},{"id":"ENVO:00002001","l":"waste water","na":19,"nb":5,"a":[["activated-sludge-habitatmech-gold-0d353772af.html","Activated Sludge"],["anaerobic-digestor-habitatmech-gold-ed87e682a9.html","Anaerobic digestor"],["industrial-wastewater-envo-01000964.html","industrial wastewater"],["municipal-landfill-habitatmech-gold-0f40aa60ce.html","Municipal landfill"],["nutrient-removal-habitatmech-gold-a18a70ae30.html","Nutrient removal"],["reclaimed-recycled-wastewater-habitatmech-gold-dc4dba910a.html","Reclaimed/Recycled wastewater"]],"b":[["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Staged_Cattle_Manure_Ensifer_Bacillus_SynCom.html","Staged Ensifer-Bacillus Cattle-Manure Wastewater SynCom"]]},{"id":"ENVO:00000043","l":"wetland area","na":14,"nb":5,"a":[["bog-habitatmech-gold-42a3b7b2d3.html","Bog"],["fen-habitatmech-gold-9de4fdaa2a.html","Fen"],["marsh-envo-00000035.html","marsh"],["microbial-mat-habitatmech-gold-e066163fc8.html","Microbial mat"],["sediment-habitatmech-gold-7db7617ea4.html","Sediment"],["sediment-habitatmech-gold-98d936714f.html","Sediment"]],"b":[["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Wetland_Oxygen_Sulfate_GHG_Microcosm_Community.html","Wetland Oxygen-Sulfate Greenhouse Gas Microcosm Community"]]},{"id":"ENVO:01001004","l":"groundwater","na":5,"nb":11,"a":[["contaminated-habitatmech-gold-66f93e3a62.html","Contaminated"],["contaminated-habitatmech-gold-33f4720550.html","Contaminated"],["groundwater-habitatmech-gold-22a80cbd14.html","Groundwater"],["groundwater-habitatmech-gold-7f8e268653.html","Groundwater"],["groundwater-envo-01001004.html","groundwater"]],"b":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":33,"nb":4,"a":[["biofilm-envo-00002034.html","biofilm"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["pond-water-envo-00002228.html","pond water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["water-body-envo-00000063.html","water body"]],"b":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"],["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]]},{"id":"NCBITaxon:1485","l":"Clostridium","na":26,"nb":4,"a":[["biofilm-envo-00002034.html","biofilm"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["alimentary-canal-bto-0000058.html","alimentary canal"],["colon-bto-0000269.html","colon"]],"b":[["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["QY2S1_Dehalogenimonas_BFR_Bioremediation_Consortium.html","QY2-S1 Dehalogenimonas-Rich Brominated-Flame-Retardant Consortium"],["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":19,"nb":4,"a":[["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["bone-element-uberon-0001474.html","bone element"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]]},{"id":"NCBITaxon:13687","l":"Sphingomonas","na":14,"nb":4,"a":[["crop-bto-0000301.html","crop"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["ileum-bto-0000620.html","ileum"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"]],"b":[["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"],["Wheat_Consortium_C6.html","Wheat Synthetic Consortium C6"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]]},{"id":"NCBITaxon:1590","l":"Lactiplantibacillus plantarum","na":14,"nb":4,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["food-fermented-foodon-00001258.html","food (fermented)"],["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"],["breast-bto-0000149.html","breast"],["colonic-epithelium-bto-0001709.html","colonic epithelium"],["epithelial-cell-bto-0000414.html","epithelial cell"]],"b":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Pichia_Lactiplantibacillus_CCMA_Plant_Beverage_Coculture.html","Pichia-Lactiplantibacillus CCMA Plant Beverage Coculture"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":11,"nb":4,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["fermentation-starter-envo-03600040.html","fermentation starter"],["fruit-bto-0000486.html","fruit"],["mammary-epithelial-cell-bto-0004300.html","mammary epithelial cell"],["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]]},{"id":"NCBITaxon:1827","l":"Rhodococcus","na":4,"nb":8,"a":[["nectar-bto-0000537.html","nectar"],["pitcher-bto-0001069.html","pitcher"],["small-intestine-bto-0000651.html","small intestine"],["stem-bto-0001300.html","stem"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]]},{"id":"NCBITaxon:33038","l":"Mediterraneibacter gnavus","na":8,"nb":4,"a":[["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["juvenile-bto-0002168.html","juvenile"],["animal-litter-envo-00002191.html","animal litter"]],"b":[["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Clostridial_isoDCA_Mini_Consortium.html","Clostridial isoDCA Mini Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]]},{"id":"NCBITaxon:374","l":"Bradyrhizobium","na":4,"nb":5,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"],["wood-bto-0005516.html","wood"]],"b":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"],["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]]},{"id":"NCBITaxon:37919","l":"Rhodococcus opacus","na":5,"nb":4,"a":[["watercourse-envo-00000029.html","watercourse"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"],["sludge-envo-00002044.html","sludge"],["water-scum-envo-00005794.html","water scum"]],"b":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"],["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":4,"nb":4,"a":[["stream-envo-00000023.html","stream"],["biome-envo-00000428.html","biome"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]]},{"id":"ENVO:00002170","l":"compost","na":20,"nb":3,"a":[["compost-envo-00002170.html","compost"],["composting-habitatmech-gold-143ceb8669.html","Composting"],["composting-habitatmech-gold-edeecbabed.html","Composting"],["composting-habitatmech-gold-5948923b46.html","Composting"],["composting-habitatmech-gold-70db4820d1.html","Composting"],["composting-habitatmech-gold-cdbbd857c8.html","Composting"]],"b":[["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":17,"nb":3,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["fruit-bto-0000486.html","fruit"],["leaf-po-0025034.html","leaf"],["rhizosphere-envo-00005801.html","rhizosphere"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]]},{"id":"ENVO:00002046","l":"activated sludge","na":16,"nb":3,"a":[["activated-sludge-habitatmech-gold-6ba6dd1c82.html","Activated sludge"],["activated-sludge-habitatmech-gold-adf7e16a3a.html","Activated sludge"],["activated-sludge-habitatmech-gold-25b680d9bc.html","Activated sludge"],["activated-sludge-habitatmech-gold-dab267c443.html","Activated sludge"],["activated-sludge-habitatmech-gold-43c33f3ecc.html","Activated sludge"],["activated-sludge-habitatmech-gold-f459151394.html","Activated sludge"]],"b":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"]]},{"id":"NCBITaxon:1667","l":"Arthrobacter sp.","na":9,"nb":3,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["leaf-po-0025034.html","leaf"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":8,"nb":3,"a":[["reservoir-envo-00000025.html","reservoir"],["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["secretion-bto-0002979.html","secretion"],["stomach-bto-0001307.html","stomach"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":8,"nb":3,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["lab-synthesis-habitatmech-bacdive-0e92e77cd4.html","Lab-synthesis"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["oil-spill-envo-00002061.html","oil spill"],["temperate-envo-01000206.html","temperate"]],"b":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":5,"nb":3,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["pseudostem-bto-0005992.html","pseudostem"],["seedling-bto-0001228.html","seedling"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["soil-envo-00001998.html","soil"]],"b":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]]},{"id":"ENVO:00000044","l":"peatland","na":4,"nb":3,"a":[["bog-habitatmech-gold-42a3b7b2d3.html","Bog"],["blanket-bog-envo-00000511.html","blanket bog"],["fen-envo-00000232.html","fen"],["peatland-envo-00000044.html","peatland"]],"b":[["SPRUCE_Peatland_Methane_Cycling_Community.html","SPRUCE Peatland Methane-Cycling Microbial Community"],["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":3,"nb":4,"a":[["milk-uberon-0001913.html","milk"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]]},{"id":"NCBITaxon:1534","l":"Clostridium kluyveri","na":3,"nb":4,"a":[["reservoir-envo-00000025.html","reservoir"],["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"]],"b":[["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]]},{"id":"NCBITaxon:237","l":"Flavobacterium","na":3,"nb":4,"a":[["column-bto-0005692.html","column"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]]},{"id":"NCBITaxon:3055","l":"Chlamydomonas reinhardtii","na":4,"nb":3,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["large-river-biome-envo-00000887.html","large river biome"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["pond-water-envo-00002228.html","pond water"]],"b":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]]},{"id":"NCBITaxon:32008","l":"Burkholderia","na":3,"nb":4,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["midgut-bto-0000863.html","midgut"]],"b":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]]},{"id":"NCBITaxon:216816","l":"Bifidobacterium longum","na":3,"nb":3,"a":[["coral-reef-envo-00000150.html","coral reef"],["egg-food-product-foodon-00001274.html","egg food product"],["juvenile-bto-0002168.html","juvenile"]],"b":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]]},{"id":"NCBITaxon:239935","l":"Akkermansia muciniphila","na":3,"nb":3,"a":[["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["secretion-bto-0002979.html","secretion"]],"b":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":3,"nb":3,"a":[["liquid-water-envo-00002006.html","liquid water"],["sludge-envo-00002044.html","sludge"],["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]]},{"id":"ENVO:01001405","l":"laboratory environment","na":2,"nb":198,"a":[["genetic-cross-habitatmech-gold-ba9317369a.html","Genetic cross"],["laboratory-environment-envo-01001405.html","laboratory environment"]],"b":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]]},{"id":"ENVO:00005801","l":"rhizosphere","na":2,"nb":62,"a":[["rhizosphere-envo-00005801.html","rhizosphere"],["soil-habitatmech-gold-067f7f5e2a.html","Soil"]],"b":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":40,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["laboratory-facility-envo-01001406.html","laboratory facility"],["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["biofilm-bto-0002690.html","biofilm"]],"b":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]]},{"id":"ENVO:00002124","l":"anaerobic bioreactor","na":20,"nb":2,"a":[["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["anaerobic-sludge-envo-00002129.html","anaerobic sludge"],["anaerobic-sludge-blanket-reactor-envo-00002213.html","anaerobic sludge blanket reactor"],["biofilm-habitatmech-gold-6c12d05420.html","Biofilm"],["biogas-envo-01000556.html","biogas"],["biomass-habitatmech-gold-6dd85a8177.html","Biomass"]],"b":[["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Shewanella_Pseudomonas_Fe0_Electrosyntrophic_Denitrifying_Consortium.html","Shewanella oneidensis + Pseudomonas aeruginosa Fe0-dependent Electro-syntrophic Denitrifying Consortium"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":14,"nb":2,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["compost-envo-00002170.html","compost"],["organic-waste-material-envo-00002873.html","organic waste material"],["larva-bto-0000707.html","larva"],["rhizosphere-envo-00005801.html","rhizosphere"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]]},{"id":"ENVO:00000051","l":"hot spring","na":13,"nb":2,"a":[["acid-lake-habitatmech-gold-21e53e7981.html","Acid lake"],["geothermal-pool-hot-lake-habitatmech-gold-d2132d09ae.html","Geothermal pool/Hot lake"],["hot-42-90c-habitatmech-gold-c085f6141a.html","Hot (42-90C)"],["hot-spring-envo-00000051.html","hot spring"],["microbial-mats-habitatmech-gold-a0372e2d63.html","Microbial mats"],["near-boiling-90c-habitatmech-gold-8b53067bc5.html","Near-boiling (>90C)"]],"b":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]]},{"id":"UBERON:0001007","l":"digestive system","na":13,"nb":2,"a":[["digestive-system-habitatmech-gold-26a84185d3.html","Digestive system"],["digestive-system-habitatmech-gold-6eecdf150d.html","Digestive system"],["digestive-system-habitatmech-gold-d7cff86ce8.html","Digestive system"],["digestive-system-habitatmech-gold-8a68d0f6f5.html","Digestive system"],["digestive-system-habitatmech-gold-c1d7082e4b.html","Digestive system"],["digestive-system-habitatmech-gold-f6720bccf0.html","Digestive system"]],"b":[["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]]},{"id":"NCBITaxon:1117","l":"Cyanobacteriota","na":11,"nb":2,"a":[["cecum-bto-0000166.html","cecum"],["colon-bto-0000269.html","colon"],["gut-bto-0000545.html","gut"],["head-bto-0000282.html","head"],["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"]],"b":[["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]]},{"id":"ENVO:00001997","l":"acid mine drainage","na":2,"nb":9,"a":[["acid-mine-drainage-envo-00001997.html","acid mine drainage"],["sediment-habitatmech-gold-7e27a52150.html","Sediment"]],"b":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":9,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["mud-envo-01000001.html","mud"]],"b":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":8,"nb":2,"a":[["groundwater-envo-01001004.html","groundwater"],["bioreactor-envo-00002123.html","bioreactor"],["river-envo-00000022.html","river"],["freshwater-environment-envo-01000306.html","freshwater environment"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]]},{"id":"ENVO:03600040","l":"fermentation starter","na":2,"nb":7,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["active-sourdough-starter-habitatmech-gold-3153798c1a.html","active sourdough starter"]],"b":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Sichuan_Shai_Vinegar_Yeast_Flavor_SynCom.html","Sichuan Shai Vinegar Yeast Flavor SynCom"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"],["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]]},{"id":"NCBITaxon:28216","l":"Betaproteobacteria","na":7,"nb":2,"a":[["column-bto-0005692.html","column"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["spike-bto-0001278.html","spike"]],"b":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":7,"nb":2,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["liquid-water-envo-00002006.html","liquid water"],["crown-gall-bto-0000303.html","crown gall"],["finger-bto-0004669.html","finger"],["resting-cell-bto-0001170.html","resting cell"],["water-scum-envo-00005794.html","water scum"]],"b":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]]},{"id":"NCBITaxon:1236","l":"Gammaproteobacteria","na":6,"nb":2,"a":[["column-bto-0005692.html","column"],["hemolymph-bto-0000572.html","hemolymph"],["oil-secretion-bto-0005373.html","oil secretion"],["spike-bto-0001278.html","spike"],["urine-bto-0001419.html","urine"],["subtropical-envo-01000205.html","subtropical"]],"b":[["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]]},{"id":"NCBITaxon:1305","l":"Streptococcus sanguinis","na":6,"nb":2,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["throat-bto-0000828.html","throat"],["geographic-feature-envo-00000000.html","geographic feature"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]]},{"id":"NCBITaxon:253","l":"Chryseobacterium indologenes","na":6,"nb":2,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["seedling-bto-0001228.html","seedling"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["tropical-envo-01000204.html","tropical"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"]]},{"id":"NCBITaxon:28211","l":"Alphaproteobacteria","na":6,"nb":2,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"],["alimentary-canal-bto-0000058.html","alimentary canal"],["column-bto-0005692.html","column"],["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["spike-bto-0001278.html","spike"]],"b":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]]},{"id":"ENVO:00002003","l":"fecal material","na":2,"nb":5,"a":[["frass-habitatmech-gold-319c3f351e.html","Frass"],["frass-habitatmech-gold-67f3cde908.html","Frass"]],"b":[["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"]]},{"id":"NCBITaxon:145262","l":"Methanothermobacter thermautotrophicus","na":5,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["intestine-environment-envo-2100002.html","intestine environment"],["sludge-envo-00002044.html","sludge"]],"b":[["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]]},{"id":"NCBITaxon:1883","l":"Streptomyces","na":2,"nb":5,"a":[["crop-bto-0000301.html","crop"],["lab-synthesis-habitatmech-bacdive-0e92e77cd4.html","Lab-synthesis"]],"b":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["Wheat_Consortium_C6.html","Wheat Synthetic Consortium C6"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]]},{"id":"NCBITaxon:1335","l":"Streptococcus equinus","na":4,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["stomach-bto-0001307.html","stomach"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":4,"nb":2,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["carcass-envo-00002033.html","carcass"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["sludge-envo-00002044.html","sludge"]],"b":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":4,"nb":2,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]]},{"id":"NCBITaxon:165695","l":"Sphingobium","na":2,"nb":4,"a":[["juvenile-bto-0002168.html","juvenile"],["leaf-bto-0000713.html","leaf"]],"b":[["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["Sphingobium_Nitrososphaera_Phenanthrene_Carbon_SynCom.html","Sphingobium-Nitrososphaera Phenanthrene-Carbon SynCom"],["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]]},{"id":"NCBITaxon:1678","l":"Bifidobacterium","na":2,"nb":4,"a":[["ileum-bto-0000620.html","ileum"],["juvenile-bto-0002168.html","juvenile"]],"b":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"NCBITaxon:33882","l":"Microbacterium","na":4,"nb":2,"a":[["leaf-bto-0000713.html","leaf"],["pitcher-bto-0001069.html","pitcher"],["small-intestine-bto-0000651.html","small intestine"],["stem-bto-0001300.html","stem"]],"b":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]]},{"id":"NCBITaxon:816","l":"Bacteroides","na":2,"nb":4,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["colon-bto-0000269.html","colon"]],"b":[["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":2,"nb":4,"a":[["hospital-envo-00002173.html","hospital"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]]},{"id":"NCBITaxon:105841","l":"Anaerostipes caccae","na":3,"nb":2,"a":[["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["emulsion-envo-00010506.html","emulsion"],["organic-feature-envo-01000159.html","organic feature"]],"b":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]]},{"id":"NCBITaxon:1492","l":"Clostridium butyricum","na":3,"nb":2,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["intestine-environment-envo-2100002.html","intestine environment"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":2,"nb":3,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]]},{"id":"NCBITaxon:203682","l":"Planctomycetota","na":2,"nb":3,"a":[["column-bto-0005692.html","column"],["crop-bto-0000301.html","crop"]],"b":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"]]},{"id":"NCBITaxon:2208","l":"Methanosarcina barkeri","na":2,"nb":3,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["sludge-envo-00002044.html","sludge"]],"b":[["DVM_Triculture.html","DVM Tri-culture"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]]},{"id":"NCBITaxon:28108","l":"Alteromonas macleodii","na":3,"nb":2,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["marine-water-body-envo-00001999.html","marine water body"],["sandstone-envo-00002055.html","sandstone"]],"b":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]]},{"id":"NCBITaxon:29466","l":"Veillonella parvula","na":3,"nb":2,"a":[["dental-plaque-bto-0000338.html","dental plaque"],["juvenile-bto-0002168.html","juvenile"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]]},{"id":"NCBITaxon:33059","l":"Acidithiobacillus caldus","na":3,"nb":2,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["paddy-field-envo-00000297.html","paddy field"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]]},{"id":"NCBITaxon:33959","l":"Lactobacillus johnsonii","na":3,"nb":2,"a":[["animal-litter-envo-00002191.html","animal litter"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":3,"nb":2,"a":[["bile-bto-0000121.html","bile"],["rectum-bto-0001158.html","rectum"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]]},{"id":"NCBITaxon:528","l":"Ochrobactrum","na":2,"nb":3,"a":[["pitcher-bto-0001069.html","pitcher"],["small-intestine-bto-0000651.html","small intestine"]],"b":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"]]},{"id":"NCBITaxon:853","l":"Faecalibacterium prausnitzii","na":2,"nb":3,"a":[["coral-reef-envo-00000150.html","coral reef"],["tropical-envo-01000204.html","tropical"]],"b":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"]]},{"id":"NCBITaxon:110500","l":"Pelotomaculum thermopropionicum","na":2,"nb":2,"a":[["river-envo-00000022.html","river"],["subpolar-coniferous-forest-biome-envo-01000250.html","subpolar coniferous forest biome"]],"b":[["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"]]},{"id":"NCBITaxon:1234","l":"Nitrospira","na":2,"nb":2,"a":[["crop-bto-0000301.html","crop"],["seedling-bto-0001228.html","seedling"]],"b":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"]]},{"id":"NCBITaxon:244366","l":"Klebsiella variicola","na":2,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]]},{"id":"NCBITaxon:28034","l":"Sulfobacillus thermosulfidooxidans","na":2,"nb":2,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]]},{"id":"NCBITaxon:357809","l":"Lachnoclostridium phytofermentans ISDg","na":2,"nb":2,"a":[["reservoir-envo-00000025.html","reservoir"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":2,"nb":2,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]]},{"id":"NCBITaxon:39488","l":"Anaerobutyricum hallii","na":2,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"],["harbour-envo-00000463.html","harbour"]],"b":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]]},{"id":"NCBITaxon:4577","l":"Zea mays","na":2,"nb":2,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"]]},{"id":"NCBITaxon:84567","l":"Pedobacter","na":2,"nb":2,"a":[["air-envo-00002005.html","air"],["glacier-envo-00000133.html","glacier"]],"b":[["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]]},{"id":"CHEBI:16183","l":"methane","na":1,"nb":62,"a":[["methane-bioremediation-material-habitatmech-gold-d510166905.html","methane bioremediation material"]],"b":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"]]},{"id":"ENVO:01001002","l":"animal-associated environment","na":47,"nb":1,"a":[["amphibian-associated-environment-habitatmech-gold-0cd585a031.html","amphibian-associated environment"],["annelid-associated-environment-habitatmech-gold-6e10201167.html","annelid-associated environment"],["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["chelicerate-associated-environment-habitatmech-gold-44a2cbbd60.html","chelicerate-associated environment"],["crustacean-associated-environment-habitatmech-gold-2959225799.html","crustacean-associated environment"],["insect-associated-environment-habitatmech-gold-dba2a83b95.html","insect-associated environment"]],"b":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":25,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-water-body-envo-00001999.html","marine water body"],["sea-water-envo-00002149.html","sea water"],["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]]},{"id":"NCBITaxon:1279","l":"Staphylococcus","na":23,"nb":1,"a":[["adult-bto-0001043.html","adult"],["cecum-bto-0000166.html","cecum"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["head-bto-0000282.html","head"]],"b":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]]},{"id":"NCBITaxon:1301","l":"Streptococcus","na":23,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["head-bto-0000282.html","head"]],"b":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"NCBITaxon:106592","l":"Ensifer adhaerens","na":20,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]]},{"id":"ENVO:2100002","l":"intestine environment","na":1,"nb":17,"a":[["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"]]},{"id":"ENVO:00000021","l":"freshwater lake","na":16,"nb":1,"a":[["algal-bloom-envo-2000004.html","algal bloom"],["anoxic-zone-habitatmech-gold-b75e4aa08f.html","Anoxic zone"],["aphotic-zone-habitatmech-gold-fcba7e6334.html","Aphotic zone"],["biofilm-habitatmech-gold-748b381af4.html","Biofilm"],["cyanobacterial-aggregates-habitatmech-gold-9b43a12f0c.html","Cyanobacterial aggregates"],["cyanobacterial-bloom-envo-03600071.html","cyanobacterial bloom"]],"b":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"]]},{"id":"NCBITaxon:1598","l":"Limosilactobacillus reuteri","na":14,"nb":1,"a":[["cecum-mucosa-bto-0000213.html","cecum mucosa"],["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["ileum-bto-0000620.html","ileum"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"]],"b":[["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"]]},{"id":"NCBITaxon:1264","l":"Hominimerdicola alba","na":13,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["stream-envo-00000023.html","stream"],["animal-house-envo-00003040.html","animal house"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biome-envo-00000428.html","biome"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"]],"b":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"]]},{"id":"NCBITaxon:1350","l":"Enterococcus","na":13,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["dorsum-bto-0001713.html","dorsum"],["hand-bto-0004668.html","hand"],["intestine-bto-0000648.html","intestine"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"]],"b":[["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"]]},{"id":"ENVO:01000320","l":"marine environment","na":1,"nb":12,"a":[["marine-environment-envo-01000320.html","marine environment"]],"b":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":11,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"],["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["laboratory-facility-envo-01001406.html","laboratory facility"],["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["bone-element-uberon-0001474.html","bone element"],["juvenile-bto-0002168.html","juvenile"]],"b":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]]},{"id":"ENVO:00000020","l":"lake","na":10,"nb":1,"a":[["aphotic-zone-habitatmech-gold-fcba7e6334.html","Aphotic zone"],["freshwater-lake-envo-00000021.html","freshwater lake"],["glacial-lake-envo-00000488.html","glacial lake"],["lake-envo-00000020.html","lake"],["lake-habitatmech-gold-713c7f352a.html","Lake"],["marine-lake-envo-03600041.html","marine lake"]],"b":[["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"]]},{"id":"NCBITaxon:1399","l":"Cytobacillus firmus","na":10,"nb":1,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"],["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"]]},{"id":"NCBITaxon:33075","l":"Acidobacterium capsulatum","na":10,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["paddy-field-envo-00000297.html","paddy field"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"],["area-of-tundra-envo-00000112.html","area of tundra"],["forested-area-envo-00000111.html","forested area"],["mountain-pass-envo-00000084.html","mountain pass"]],"b":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":10,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["air-conditioning-unit-envo-00002874.html","air conditioning unit"],["leaf-bto-0000713.html","leaf"],["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]]},{"id":"NCBITaxon:47715","l":"Lacticaseibacillus rhamnosus","na":10,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["fermentation-starter-envo-03600040.html","fermentation starter"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]]},{"id":"ENVO:01000747","l":"regolith","na":1,"nb":9,"a":[["regolith-envo-01000747.html","regolith"]],"b":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":9,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["fresh-water-envo-00002011.html","fresh water"],["river-envo-00000022.html","river"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"]]},{"id":"NCBITaxon:1224","l":"Pseudomonadota","na":1,"nb":8,"a":[["hemolymph-bto-0000572.html","hemolymph"]],"b":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":8,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["alimentary-canal-bto-0000058.html","alimentary canal"],["blood-bto-0000089.html","blood"],["small-intestine-bto-0000651.html","small intestine"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["geographic-feature-envo-00000000.html","geographic feature"]],"b":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]]},{"id":"NCBITaxon:1655","l":"Actinomyces naeslundii","na":8,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"],["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"],["archeological-site-envo-00000564.html","archeological site"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]]},{"id":"NCBITaxon:171550","l":"Rikenellaceae","na":8,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["ileum-bto-0000620.html","ileum"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"]],"b":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"ENVO:00000003","l":"mine tailing","na":1,"nb":7,"a":[["mine-tailing-envo-00000003.html","mine tailing"]],"b":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]]},{"id":"ENVO:00003862","l":"dairy","na":1,"nb":7,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]]},{"id":"ENVO:00003965","l":"anaerobic digester sludge","na":1,"nb":7,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"]],"b":[["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Magnetite_Sulfate_Stress_Anaerobic_Microbiome.html","Magnetite Sulfate-Stress Anaerobic Microbiome"],["Thermophilic_ExSitu_Biomethanation_Mixed_Culture.html","Thermophilic Ex-Situ Biomethanation Mixed Culture"]]},{"id":"ENVO:00005750","l":"grassland soil","na":1,"nb":7,"a":[["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"],["Soil_BGC_Phylum_Depth_Vegetation_Community.html","Soil Biosynthetic Gene Cluster Phylum-Depth-Vegetation Community"],["Soil_CPR_Nanoarchaea_Rare_Biosphere_Community.html","Soil CPR Bacteria and Nanoarchaea Rare-Biosphere Community"]]},{"id":"ENVO:01000313","l":"anthropogenic environment","na":7,"nb":1,"a":[["laboratory-environment-envo-01001405.html","laboratory environment"],["subway-environment-habitatmech-gold-961229841c.html","subway environment"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["cultivated-environment-envo-01000311.html","cultivated environment"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":7,"nb":1,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["farm-envo-00000078.html","farm"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]]},{"id":"NCBITaxon:1107","l":"Chloroflexus","na":7,"nb":1,"a":[["crop-bto-0000301.html","crop"],["gut-bto-0000545.html","gut"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["seedling-bto-0001228.html","seedling"],["skin-bto-0001253.html","skin"]],"b":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]]},{"id":"NCBITaxon:1243","l":"Leuconostoc","na":7,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["intestine-bto-0000648.html","intestine"],["mouth-bto-0001090.html","mouth"],["stem-bto-0001300.html","stem"]],"b":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]]},{"id":"NCBITaxon:13690","l":"Sphingobium yanoikuyae","na":7,"nb":1,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["resting-cell-bto-0001170.html","resting cell"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"],["water-scum-envo-00005794.html","water scum"]],"b":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]]},{"id":"NCBITaxon:165179","l":"Segatella copri","na":7,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["juvenile-bto-0002168.html","juvenile"],["rumen-uberon-0007365.html","rumen"],["tongue-bto-0001385.html","tongue"],["vaginal-fluid-bto-0003084.html","vaginal fluid"],["animal-litter-envo-00002191.html","animal litter"]],"b":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":7,"nb":1,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["pseudostem-bto-0005992.html","pseudostem"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]]},{"id":"NCBITaxon:40323","l":"Stenotrophomonas","na":1,"nb":7,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"]]},{"id":"NCBITaxon:469","l":"Acinetobacter","na":7,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["endotracheal-fluid-ncit-c171504.html","Endotracheal Fluid"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"],["pseudostem-bto-0005992.html","pseudostem"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"]],"b":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]]},{"id":"NCBITaxon:56780","l":"Syntrophus aciditrophicus SB","na":7,"nb":1,"a":[["bay-envo-00000032.html","bay"],["black-smoker-envo-00000218.html","black smoker"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["saline-water-envo-00002010.html","saline water"],["village-biome-envo-01000246.html","village biome"]],"b":[["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"]]},{"id":"ENVO:01000001","l":"mud","na":6,"nb":1,"a":[["marine-mud-envo-00005795.html","marine mud"],["mud-habitatmech-gold-cdf0825f85.html","Mud"],["anaerobic-mud-envo-00002133.html","anaerobic mud"],["estuarine-mud-envo-00002160.html","estuarine mud"],["mud-envo-01000001.html","mud"],["mud-habitatmech-gold-16370f2eb5.html","Mud"]],"b":[["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"]]},{"id":"NCBITaxon:1269","l":"Micrococcus","na":6,"nb":1,"a":[["cecum-bto-0000166.html","cecum"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["saliva-bto-0001202.html","saliva"],["tongue-bto-0001385.html","tongue"]],"b":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]]},{"id":"NCBITaxon:1512","l":"[Clostridium] symbiosum","na":6,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["animal-house-envo-00003040.html","animal house"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["emulsion-envo-00010506.html","emulsion"],["environmental-feature-envo-00002297.html","environmental feature"],["pig-manure-envo-00003860.html","pig manure"]],"b":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]]},{"id":"NCBITaxon:1624","l":"Ligilactobacillus salivarius","na":6,"nb":1,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["trachea-bto-0001388.html","trachea"],["animal-litter-envo-00002191.html","animal litter"],["intestine-environment-envo-2100002.html","intestine environment"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]]},{"id":"NCBITaxon:1872122","l":"Acidovorax sp.","na":6,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"]]},{"id":"NCBITaxon:2203","l":"Methanospirillum hungatei","na":1,"nb":6,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"]],"b":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":1,"nb":6,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]]},{"id":"ENVO:00000134","l":"permafrost","na":5,"nb":1,"a":[["permafrost-envo-00000134.html","permafrost"],["permafrost-habitatmech-gold-dd598a891d.html","Permafrost"],["permafrost-habitatmech-gold-6821e96263.html","Permafrost"],["permafrost-habitatmech-gold-6d092784ef.html","Permafrost"],["permafrost-habitatmech-gold-83818dd6ed.html","Permafrost"]],"b":[["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"]]},{"id":"ENVO:00002012","l":"hypersaline water","na":5,"nb":1,"a":[["brine-envo-00003044.html","brine"],["hypersaline-water-envo-00002012.html","hypersaline water"],["microbial-mats-habitatmech-gold-a00c47c576.html","Microbial mats"],["saline-water-habitatmech-gold-f75e192814.html","Saline water"],["salt-crystallizer-ponds-habitatmech-gold-277843111f.html","Salt crystallizer ponds"]],"b":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]]},{"id":"NCBITaxon:106589","l":"Cupriavidus","na":5,"nb":1,"a":[["gut-bto-0000545.html","gut"],["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["skin-bto-0001253.html","skin"]],"b":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]]},{"id":"NCBITaxon:1245","l":"Leuconostoc mesenteroides","na":5,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["leaf-po-0025034.html","leaf"],["animal-manure-envo-00003031.html","animal manure"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]]},{"id":"NCBITaxon:239","l":"Flavobacterium sp.","na":5,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["mud-envo-01000001.html","mud"],["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"],["orchard-envo-00000115.html","orchard"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]]},{"id":"NCBITaxon:28232","l":"Geobacter metallireducens","na":1,"nb":5,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":5,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["food-spoiled-foodon-00003366.html","food (spoiled)"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"]],"b":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":5,"nb":1,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["pseudostem-bto-0005992.html","pseudostem"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]]},{"id":"NCBITaxon:57723","l":"Acidobacteriota","na":1,"nb":5,"a":[["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["SPRUCE_Peatland_Methane_Cycling_Community.html","SPRUCE Peatland Methane-Cycling Microbial Community"]]},{"id":"NCBITaxon:74969","l":"Ferroplasma acidiphilum","na":1,"nb":5,"a":[["factory-envo-01000536.html","factory"]],"b":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]]},{"id":"NCBITaxon:838","l":"Prevotella","na":5,"nb":1,"a":[["brain-bto-0000142.html","brain"],["colon-bto-0000269.html","colon"],["heart-bto-0000562.html","heart"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"]],"b":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"CHEBI:24632","l":"hydrocarbon","na":4,"nb":1,"a":[["hydrocarbon-habitatmech-gold-db79f0142d.html","Hydrocarbon"],["hydrocarbon-habitatmech-gold-3c68e33a11.html","Hydrocarbon"],["hydrocarbon-habitatmech-gold-e77998b825.html","Hydrocarbon"],["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"]],"b":[["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"]]},{"id":"ENVO:01000306","l":"freshwater environment","na":1,"nb":4,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]]},{"id":"ENVO:01001033","l":"digestive tract environment","na":1,"nb":4,"a":[["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"],["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":4,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"],["human-construction-envo-00000070.html","human construction"],["sediment-envo-00002007.html","sediment"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]]},{"id":"NCBITaxon:1089553","l":"Thermacetogenium phaeum DSM 12270","na":4,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["pulp-bto-0001142.html","pulp"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":4,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]]},{"id":"NCBITaxon:1587","l":"Lactobacillus helveticus","na":4,"nb":1,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["intestine-environment-envo-2100002.html","intestine environment"],["urban-biome-envo-01000249.html","urban biome"],["harbour-envo-00000463.html","harbour"]],"b":[["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"]]},{"id":"NCBITaxon:1682","l":"Bifidobacterium longum subsp. infantis","na":4,"nb":1,"a":[["egg-food-product-foodon-00001274.html","egg food product"],["breast-bto-0000149.html","breast"],["ht-29-cell-bto-0000182.html","HT-29 cell"],["ma-104-cell-bto-0004983.html","MA-104 cell"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]]},{"id":"NCBITaxon:200795","l":"Chloroflexota","na":1,"nb":4,"a":[["crop-bto-0000301.html","crop"]],"b":[["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["Soil_BGC_Phylum_Depth_Vegetation_Community.html","Soil Biosynthetic Gene Cluster Phylum-Depth-Vegetation Community"]]},{"id":"NCBITaxon:2209","l":"Methanosarcina mazei","na":4,"nb":1,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["sludge-envo-00002044.html","sludge"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"]]},{"id":"NCBITaxon:356","l":"Hyphomicrobiales","na":4,"nb":1,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["stem-bto-0001300.html","stem"]],"b":[["Thiocyanate_Afipia_Thiobacillus_Bioreactor_Community.html","Thiocyanate-Degrading Afipia and Thiobacillus Bioreactor Community"]]},{"id":"NCBITaxon:570","l":"Klebsiella","na":1,"nb":4,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"]]},{"id":"NCBITaxon:68287","l":"Mesorhizobium","na":1,"nb":4,"a":[["head-bto-0000282.html","head"]],"b":[["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]]},{"id":"NCBITaxon:75682","l":"Oxalobacteraceae","na":4,"nb":1,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]]},{"id":"NCBITaxon:872","l":"Desulfovibrio","na":1,"nb":4,"a":[["colon-bto-0000269.html","colon"]],"b":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]]},{"id":"NCBITaxon:930","l":"Acidithiobacillus thiooxidans","na":1,"nb":4,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]]},{"id":"NCBITaxon:1090","l":"Chlorobiota","na":3,"nb":1,"a":[["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"]],"b":[["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"]]},{"id":"NCBITaxon:1249","l":"Weissella paramesenteroides","na":3,"nb":1,"a":[["cecum-bto-0000166.html","cecum"],["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"]],"b":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]]},{"id":"NCBITaxon:1451","l":"Paenibacillus amylolyticus","na":3,"nb":1,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"]]},{"id":"NCBITaxon:1519","l":"Clostridium tyrobutyricum","na":3,"nb":1,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["peatland-envo-00000044.html","peatland"]],"b":[["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]]},{"id":"NCBITaxon:1582","l":"Lacticaseibacillus casei","na":3,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]]},{"id":"NCBITaxon:1597","l":"Lacticaseibacillus paracasei","na":3,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":1,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":3,"nb":1,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]]},{"id":"NCBITaxon:203124","l":"Trichodesmium erythraeum IMS101","na":3,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["coastal-water-body-envo-02000049.html","coastal water body"],["marine-neritic-zone-envo-00000206.html","marine neritic zone"]],"b":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":1,"nb":3,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]]},{"id":"NCBITaxon:22","l":"Shewanella","na":1,"nb":3,"a":[["wood-bto-0005516.html","wood"]],"b":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Shewanella_Denitrifying_Richness_SynComs.html","Shewanella Denitrifying Richness SynComs"]]},{"id":"NCBITaxon:28037","l":"Streptococcus mitis","na":3,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["archeological-site-envo-00000564.html","archeological site"],["tropical-envo-01000204.html","tropical"]],"b":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]]},{"id":"NCBITaxon:301375","l":"Methanothrix harundinacea","na":3,"nb":1,"a":[["small-river-biome-envo-00000890.html","small river biome"],["shoreline-envo-00000486.html","shoreline"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"]]},{"id":"NCBITaxon:3041","l":"Chlorophyta","na":1,"nb":3,"a":[["leaf-bto-0000713.html","leaf"]],"b":[["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"]]},{"id":"NCBITaxon:33035","l":"Blautia producta","na":1,"nb":3,"a":[["juvenile-bto-0002168.html","juvenile"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]]},{"id":"NCBITaxon:33952","l":"Acetobacterium woodii","na":1,"nb":3,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]]},{"id":"NCBITaxon:375","l":"Bradyrhizobium japonicum","na":3,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"]]},{"id":"NCBITaxon:375288","l":"Parabacteroides","na":3,"nb":1,"a":[["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"]],"b":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"]]},{"id":"NCBITaxon:40214","l":"Acinetobacter johnsonii","na":3,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["pitcher-bto-0001069.html","pitcher"],["water-scum-envo-00005794.html","water scum"]],"b":[["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]]},{"id":"NCBITaxon:48736","l":"Ralstonia","na":3,"nb":1,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"]],"b":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":1,"nb":3,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]]},{"id":"NCBITaxon:547","l":"Enterobacter","na":1,"nb":3,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]]},{"id":"NCBITaxon:572511","l":"Blautia","na":3,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["colon-bto-0000269.html","colon"]],"b":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]]},{"id":"NCBITaxon:582","l":"Morganella morganii","na":3,"nb":1,"a":[["blast-cell-bto-0000125.html","blast cell"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"],["spike-bto-0001278.html","spike"]],"b":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]]},{"id":"NCBITaxon:69373","l":"Curtobacterium pusillum","na":3,"nb":1,"a":[["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["seedling-bto-0001228.html","seedling"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]]},{"id":"NCBITaxon:76759","l":"Pseudomonas monteilii","na":3,"nb":1,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"]]},{"id":"NCBITaxon:85413","l":"Allobosea","na":1,"nb":3,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"]],"b":[["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":3,"nb":1,"a":[["city-envo-00000856.html","city"],["cold-environment-envo-01000309.html","cold environment"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]]},{"id":"ENVO:00002127","l":"stream sediment","na":1,"nb":2,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Tropidoatractus_Magnetotacticus_Tripartite_Syntrophy.html","Tropidoatractus magnetotacticus Magnetotactic Ciliate Tripartite Syntrophy"]]},{"id":"ENVO:03000033","l":"marine sediment","na":2,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"]]},{"id":"NCBITaxon:1033","l":"Afipia","na":2,"nb":1,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"]],"b":[["Thiocyanate_Afipia_Thiobacillus_Bioreactor_Community.html","Thiocyanate-Degrading Afipia and Thiobacillus Bioreactor Community"]]},{"id":"NCBITaxon:1091494","l":"Methylotuvimicrobium alcaliphilum 20Z","na":1,"nb":2,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"]]},{"id":"NCBITaxon:1129","l":"Synechococcus","na":2,"nb":1,"a":[["column-bto-0005692.html","column"],["hemolymph-bto-0000572.html","hemolymph"]],"b":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]]},{"id":"NCBITaxon:1173061","l":"Geotrichum candidum","na":2,"nb":1,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]]},{"id":"NCBITaxon:119532","l":"Microcoleus vaginatus","na":2,"nb":1,"a":[["desert-biome-envo-01000179.html","desert biome"],["desert-area-envo-00000097.html","desert area"]],"b":[["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]]},{"id":"NCBITaxon:1255","l":"Pediococcus pentosaceus","na":2,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"]],"b":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]]},{"id":"NCBITaxon:12916","l":"Acidovorax","na":1,"nb":2,"a":[["urine-bto-0001419.html","urine"]],"b":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]]},{"id":"NCBITaxon:1303","l":"Streptococcus oralis","na":2,"nb":1,"a":[["throat-bto-0000828.html","throat"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]]},{"id":"NCBITaxon:138074","l":"Serratia symbiotica","na":2,"nb":1,"a":[["intestine-bto-0000648.html","intestine"],["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"]]},{"id":"NCBITaxon:1398","l":"Heyndrickxia coagulans","na":2,"nb":1,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"]]},{"id":"NCBITaxon:1401","l":"Paenibacillus lautus","na":2,"nb":1,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"]]},{"id":"NCBITaxon:142182","l":"Gemmatimonadota","na":1,"nb":2,"a":[["crop-bto-0000301.html","crop"]],"b":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":2,"a":[["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]]},{"id":"NCBITaxon:1538","l":"Clostridium ljungdahlii","na":1,"nb":2,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]]},{"id":"NCBITaxon:160488","l":"Pseudomonas putida (strain ATCC 47054 / DSM 6125 / CFBP 8728 / NCIMB 11950 / KT2440)","na":1,"nb":2,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"]]},{"id":"NCBITaxon:161493","l":"Anaeromyxobacter dehalogenans","na":2,"nb":1,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"]]},{"id":"NCBITaxon:1680","l":"Bifidobacterium adolescentis","na":2,"nb":1,"a":[["brain-bto-0000142.html","brain"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]]},{"id":"NCBITaxon:169215","l":"","na":1,"nb":2,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"]],"b":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]]},{"id":"NCBITaxon:171552","l":"Prevotellaceae","na":2,"nb":1,"a":[["colon-bto-0000269.html","colon"],["rumen-uberon-0007365.html","rumen"]],"b":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"NCBITaxon:1785","l":"Mycobacterium sp.","na":2,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"],["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]]},{"id":"NCBITaxon:1871043","l":"Variovorax sp.","na":1,"nb":2,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]]},{"id":"NCBITaxon:1872086","l":"Ensifer sp.","na":2,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]]},{"id":"NCBITaxon:192","l":"Azospirillum brasilense","na":2,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"]]},{"id":"NCBITaxon:20","l":"Phenylobacterium","na":2,"nb":1,"a":[["crop-bto-0000301.html","crop"],["nectar-bto-0000537.html","nectar"]],"b":[["Tomato_Oxylipin_SynCom3.html","Tomato Oxylipin-Protective SynCom3"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus ATCC 27405","na":1,"nb":2,"a":[["blood-plasma-bto-0000131.html","blood plasma"]],"b":[["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]]},{"id":"NCBITaxon:2162","l":"Methanobacterium formicicum","na":1,"nb":2,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"]]},{"id":"NCBITaxon:2173","l":"Methanobrevibacter smithii","na":1,"nb":2,"a":[["lagoon-envo-00000038.html","lagoon"]],"b":[["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"]]},{"id":"NCBITaxon:2223","l":"Methanothrix soehngenii","na":1,"nb":2,"a":[["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]]},{"id":"NCBITaxon:231455","l":"Dyella japonica","na":1,"nb":2,"a":[["area-of-tundra-envo-00000112.html","area of tundra"]],"b":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii (strain ATCC 43067 / DSM 2661 / JAL-1 / JCM 10045 / NBRC 100440)","na":2,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":2,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"]]},{"id":"NCBITaxon:2836","l":"Bacillariophyta","na":2,"nb":1,"a":[["diatom-associated-environment-habitatmech-gold-1276bea544.html","diatom-associated environment"],["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]]},{"id":"NCBITaxon:285","l":"Comamonas testosteroni","na":2,"nb":1,"a":[["waste-habitatmech-bacdive-36df85e4a4.html","Waste"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]]},{"id":"NCBITaxon:293387","l":"Bacillus altitudinis","na":1,"nb":2,"a":[["resting-cell-bto-0001170.html","resting cell"]],"b":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"]]},{"id":"NCBITaxon:29448","l":"Bradyrhizobium elkanii","na":2,"nb":1,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["area-of-tundra-envo-00000112.html","area of tundra"]],"b":[["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]]},{"id":"NCBITaxon:299767","l":"Enterobacter ludwigii","na":1,"nb":2,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]]},{"id":"NCBITaxon:323259","l":"Methanospirillum hungatei JF-1","na":1,"nb":2,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]]},{"id":"NCBITaxon:39152","l":"Methanococcus maripaludis","na":1,"nb":2,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["DVM_Triculture.html","DVM Tri-culture"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":2,"nb":1,"a":[["city-envo-00000856.html","city"],["cropland-biome-envo-01000245.html","cropland biome"]],"b":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]]},{"id":"NCBITaxon:515619","l":"Agathobacter rectalis ATCC 33656","na":1,"nb":2,"a":[["gut-epithelium-bto-0000956.html","gut epithelium"]],"b":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]]},{"id":"NCBITaxon:6239","l":"Caenorhabditis elegans","na":2,"nb":1,"a":[["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"]]},{"id":"NCBITaxon:648","l":"Aeromonas caviae","na":2,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]]},{"id":"NCBITaxon:82367","l":"Paracoccus pantotrophus","na":2,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"]]},{"id":"NCBITaxon:82380","l":"Microbacterium oxydans","na":1,"nb":2,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]]},{"id":"NCBITaxon:876","l":"Desulfovibrio desulfuricans","na":2,"nb":1,"a":[["sludge-envo-00002044.html","sludge"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":2,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]]},{"id":"UBERON:0001155","l":"colon","na":2,"nb":1,"a":[["colon-habitatmech-gold-c484d9a195.html","Colon"],["colon-habitatmech-gold-195d07bc47.html","Colon"]],"b":[["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"]]},{"id":"ENVO:00000057","l":"mangrove swamp","na":1,"nb":1,"a":[["mangrove-swamp-envo-00000057.html","mangrove swamp"]],"b":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"]]},{"id":"ENVO:00000126","l":"sulfur spring","na":1,"nb":1,"a":[["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"]]},{"id":"ENVO:00002121","l":"alkaline salt lake","na":1,"nb":1,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"]],"b":[["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]]},{"id":"ENVO:00003030","l":"silage","na":1,"nb":1,"a":[["silage-envo-00003030.html","silage"]],"b":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"]]},{"id":"ENVO:01000910","l":"soil biocrust","na":1,"nb":1,"a":[["soil-biocrust-envo-01000910.html","soil biocrust"]],"b":[["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]]},{"id":"NCBITaxon:100176","l":"Papillibacter cinnamivorans","na":1,"nb":1,"a":[["cecum-bto-0000166.html","cecum"]],"b":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"]]},{"id":"NCBITaxon:105972","l":"Methylosarcina fibrata","na":1,"nb":1,"a":[["stream-envo-00000023.html","stream"]],"b":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]]},{"id":"NCBITaxon:110321","l":"Sinorhizobium medicae","na":1,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"]]},{"id":"NCBITaxon:1122947","l":"Pelosinus fermentans DSM 17108","na":1,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"]]},{"id":"NCBITaxon:1131703","l":"Sphaerochaeta globosa","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"]]},{"id":"NCBITaxon:1134404","l":"Ignavibacteriota","na":1,"nb":1,"a":[["gut-bto-0000545.html","gut"]],"b":[["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"]]},{"id":"NCBITaxon:119060","l":"Burkholderiaceae","na":1,"nb":1,"a":[["trunk-bto-0001493.html","trunk"]],"b":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]]},{"id":"NCBITaxon:1253","l":"Pediococcus","na":1,"nb":1,"a":[["cecum-bto-0000166.html","cecum"]],"b":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]]},{"id":"NCBITaxon:1272","l":"Kocuria varians","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"]]},{"id":"NCBITaxon:135619","l":"Oceanospirillales","na":1,"nb":1,"a":[["column-bto-0005692.html","column"]],"b":[["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"]]},{"id":"NCBITaxon:1455","l":"Pseudobacillus badius","na":1,"nb":1,"a":[["organic-waste-material-envo-00002873.html","organic waste material"]],"b":[["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"]]},{"id":"NCBITaxon:1488","l":"Clostridium acetobutylicum","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]]},{"id":"NCBITaxon:1501","l":"Clostridium pasteurianum","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]]},{"id":"NCBITaxon:1517","l":"Thermoanaerobacterium thermosaccharolyticum","na":1,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]]},{"id":"NCBITaxon:1579","l":"Lactobacillus acidophilus","na":1,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"]],"b":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]]},{"id":"NCBITaxon:1585","l":"Lactobacillus delbrueckii subsp. bulgaricus","na":1,"nb":1,"a":[["pig-manure-envo-00003860.html","pig manure"]],"b":[["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]]},{"id":"NCBITaxon:158836","l":"Enterobacter hormaechei","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]]},{"id":"NCBITaxon:168384","l":"Marvinbryantia formatexigens","na":1,"nb":1,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"]]},{"id":"NCBITaxon:1828","l":"Rhodococcoides fascians","na":1,"nb":1,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]]},{"id":"NCBITaxon:1871068","l":"Phyllobacteriaceae bacterium","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]]},{"id":"NCBITaxon:1898203","l":"Lachnospiraceae bacterium","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]]},{"id":"NCBITaxon:216389","l":"Dehalococcoides mccartyi BAV1","na":1,"nb":1,"a":[["road-envo-00000064.html","road"]],"b":[["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]]},{"id":"NCBITaxon:216778","l":"Stenotrophomonas rhizophila","na":1,"nb":1,"a":[["style-bto-0001313.html","style"]],"b":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"]]},{"id":"NCBITaxon:219572","l":"Pseudomonas antarctica","na":1,"nb":1,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]]},{"id":"NCBITaxon:225937","l":"Marinobacter adhaerens HP15","na":1,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]]},{"id":"NCBITaxon:226","l":"Alteromonas","na":1,"nb":1,"a":[["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]]},{"id":"NCBITaxon:226186","l":"Bacteroides thetaiotaomicron (strain ATCC 29148 / DSM 2079 / JCM 5827 / CCUG 10774 / NCTC 10582 / VPI-5482 / E50)","na":1,"nb":1,"a":[["gut-epithelium-bto-0000956.html","gut epithelium"]],"b":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima (strain ATCC 43589 / DSM 3109 / JCM 10099 / NBRC 100826 / MSB8)","na":1,"nb":1,"a":[["feather-bto-0000447.html","feather"]],"b":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]]},{"id":"NCBITaxon:246200","l":"Ruegeria pomeroyi DSS-3","na":1,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]]},{"id":"NCBITaxon:250","l":"Chryseobacterium gleum","na":1,"nb":1,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]]},{"id":"NCBITaxon:2745","l":"Halomonas","na":1,"nb":1,"a":[["wood-bto-0005516.html","wood"]],"b":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]]},{"id":"NCBITaxon:29394","l":"Dolosigranulum pigrum","na":1,"nb":1,"a":[["bone-element-uberon-0001474.html","bone element"]],"b":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"]]},{"id":"NCBITaxon:3078","l":"Auxenochlorella pyrenoidosa","na":1,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"]],"b":[["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"]]},{"id":"NCBITaxon:33010","l":"Cutibacterium avidum","na":1,"nb":1,"a":[["bone-element-uberon-0001474.html","bone element"]],"b":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]]},{"id":"NCBITaxon:33011","l":"Cutibacterium granulosum","na":1,"nb":1,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]]},{"id":"NCBITaxon:33883","l":"Microbacterium arborescens","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]]},{"id":"NCBITaxon:340177","l":"Chlorobium chlorochromatii CaD3","na":1,"nb":1,"a":[["photoreceptor-cell-bto-0001060.html","photoreceptor cell"]],"b":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"]]},{"id":"NCBITaxon:372461","l":"Buchnera aphidicola BCc","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"]]},{"id":"NCBITaxon:38304","l":"Corynebacterium tuberculostearicum","na":1,"nb":1,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"]]},{"id":"NCBITaxon:399726","l":"Thermoanaerobacter sp. X514","na":1,"nb":1,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"]]},{"id":"NCBITaxon:409291","l":"Arthrobacter humicola","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]]},{"id":"NCBITaxon:43775","l":"Syntrophus gentianae","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]]},{"id":"NCBITaxon:47880","l":"Pseudomonas fulva","na":1,"nb":1,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]]},{"id":"NCBITaxon:47920","l":"Acidovorax delafieldii","na":1,"nb":1,"a":[["bone-element-uberon-0001474.html","bone element"]],"b":[["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]]},{"id":"NCBITaxon:49082","l":"Candidatus Neoarthromitus","na":1,"nb":1,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]]},{"id":"NCBITaxon:51669","l":"Tetragenococcus halophilus","na":1,"nb":1,"a":[["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]]},{"id":"NCBITaxon:542","l":"Zymomonas mobilis","na":1,"nb":1,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["Zymomonas_Ecoli_Exometabolomics_Obligate_Mutualism.html","Zymomonas-E. coli Exometabolomics-Designed Obligate Mutualism"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":1,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":1,"nb":1,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]]},{"id":"NCBITaxon:571256","l":"Brucella pituitosa","na":1,"nb":1,"a":[["seedling-bto-0001228.html","seedling"]],"b":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]]},{"id":"NCBITaxon:685","l":"Vibrio diazotrophicus","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]]},{"id":"NCBITaxon:80840","l":"Burkholderiales","na":1,"nb":1,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"]],"b":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"]]},{"id":"NCBITaxon:80866","l":"Delftia acidovorans","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]]},{"id":"NCBITaxon:82","l":"Hyphomicrobium sp.","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"]]},{"id":"NCBITaxon:86185","l":"Pseudomonas lundensis","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]]},{"id":"NCBITaxon:930166","l":"Pseudomonas brassicacearum","na":1,"nb":1,"a":[["spike-bto-0001278.html","spike"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]]},{"id":"NCBITaxon:94625","l":"Brucella intermedia","na":1,"nb":1,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]]},{"id":"UBERON:0002097","l":"skin of body","na":1,"nb":1,"a":[["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["SkinCom_Synthetic_Skin_Community.html","SkinCom Synthetic Skin Community"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/HabitatMech--NaturalProductMech.json b/assets/fleet/edges/HabitatMech--NaturalProductMech.json index 5487c10..bed0ce1 100644 --- a/assets/fleet/edges/HabitatMech--NaturalProductMech.json +++ b/assets/fleet/edges/HabitatMech--NaturalProductMech.json @@ -1 +1 @@ -{"a":"HabitatMech","b":"NaturalProductMech","base":{"HabitatMech":"https://culturebotai.github.io/HabitatMech/pages/habitats/","NaturalProductMech":"https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/natural_products/"},"n":312,"by":{"NCBITaxon":312},"terms":[{"id":"NCBITaxon:56","l":"Sorangium cellulosum","na":27,"nb":25,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["watercourse-envo-00000029.html","watercourse"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["amino_acids_and_peptides/microsclerodermin-m.yaml","microsclerodermin M"],["polyketides/ambruticin.yaml","ambruticin"],["polyketides/chivosazol.yaml","chivosazol"],["polyketides/chlorotonil-a.yaml","chlorotonil A"],["polyketides/disorazol-a.yaml","disorazol A"],["polyketides/etnangien.yaml","etnangien"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":36,"nb":24,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["bay-envo-00000032.html","bay"],["freshwater-biome-envo-00000873.html","freshwater biome"],["liquid-water-envo-00002006.html","liquid water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":19,"nb":116,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["saline-water-body-envo-01001319.html","saline water body"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["alkaloids/altemicidin.yaml","altemicidin"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"],["alkaloids/aurachin-ss.yaml","aurachin SS"],["alkaloids/berninamycin-j.yaml","berninamycin J"],["alkaloids/berninamycin-k.yaml","berninamycin K"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":18,"nb":27,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["alkaloids/pseudomonine.yaml","pseudomonine"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyreudione-c.yaml","pyreudione C"],["alkaloids/quinolobactin.yaml","quinolobactin"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":14,"nb":31,"a":[["watercourse-envo-00000029.html","watercourse"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["leaf-po-0025034.html","leaf"]],"b":[["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["alkaloids/myxofacycline-e.yaml","myxofacycline E"],["alkaloids/myxofacycline-f.yaml","myxofacycline F"],["alkaloids/myxofacycline-g.yaml","myxofacycline G"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":27,"nb":13,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["watercourse-envo-00000029.html","watercourse"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["egg-food-product-foodon-00001274.html","egg food product"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"]],"b":[["unclassified/bananamide-d.yaml","bananamide D"],["unclassified/bananamide-e.yaml","bananamide E"],["unclassified/bananamide-f.yaml","bananamide F"],["unclassified/bananamide-g.yaml","bananamide G"],["unclassified/lokisin.yaml","lokisin"],["unclassified/pseudodesmin-a.yaml","pseudodesmin A"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":28,"nb":12,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["liquid-water-envo-00002006.html","liquid water"],["watercourse-envo-00000029.html","watercourse"],["compost-envo-00002170.html","compost"],["hospital-envo-00002173.html","hospital"],["human-construction-envo-00000070.html","human construction"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:286","l":"Pseudomonas","na":10,"nb":41,"a":[["heart-bto-0000562.html","heart"],["juvenile-bto-0002168.html","juvenile"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"],["pseudostem-bto-0005992.html","pseudostem"]],"b":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["alkaloids/tioguanine.yaml","tioguanine"],["amino_acids_and_peptides/napsamycin-c.yaml","napsamycin C"],["amino_acids_and_peptides/napsamycin-d.yaml","napsamycin D"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":10,"nb":16,"a":[["anther-bto-0000079.html","anther"],["epithelial-cell-bto-0000414.html","epithelial cell"],["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["amino_acids_and_peptides/ericin-s.yaml","ericin S"],["amino_acids_and_peptides/iturin.yaml","iturin"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"]]},{"id":"NCBITaxon:1386","l":"Bacillus ","na":19,"nb":9,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["crop-bto-0000301.html","crop"],["dorsum-bto-0001713.html","dorsum"],["hand-bto-0004668.html","hand"],["head-bto-0000282.html","head"],["juvenile-bto-0002168.html","juvenile"]],"b":[["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bogorol-a.yaml","bogorol A"],["amino_acids_and_peptides/koranimine.yaml","koranimine"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"],["amino_acids_and_peptides/rhizocticin-a.yaml","rhizocticin A"],["polyketides/difficidin.yaml","difficidin"]]},{"id":"NCBITaxon:1464","l":"Paenibacillus larvae","na":10,"nb":8,"a":[["surface-water-envo-00002042.html","surface water"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["carcass-envo-00002033.html","carcass"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"],["sludge-envo-00002044.html","sludge"]],"b":[["alkaloids/paenilamicin-a2.yaml","paenilamicin A2"],["alkaloids/paenilamicin-b1.yaml","paenilamicin B1"],["alkaloids/paenilamicin-b2.yaml","paenilamicin B2"],["alkaloids/paenilamicin.yaml","paenilamicin"],["amino_acids_and_peptides/paenilarvin-a.yaml","paenilarvin A"],["amino_acids_and_peptides/paenilarvin-b.yaml","paenilarvin B"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":8,"nb":10,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["alkaloids/labradorin-1.yaml","labradorin 1"],["alkaloids/labradorin-2.yaml","labradorin 2"],["alkaloids/secimide.yaml","secimide"],["amino_acids_and_peptides/phaseolotoxin.yaml","phaseolotoxin"],["amino_acids_and_peptides/syringolin-a.yaml","syringolin A"],["amino_acids_and_peptides/tabtoxin.yaml","tabtoxin"]]},{"id":"NCBITaxon:1876","l":"Micromonospora sp.","na":7,"nb":9,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["marine-water-body-envo-00001999.html","marine water body"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["sludge-envo-00002044.html","sludge"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["polyketides/quinolidomicin-a.yaml","quinolidomicin A"],["polyketides/sungeidine-c.yaml","sungeidine C"],["polyketides/sungeidine-f.yaml","sungeidine F"],["polyketides/sungeidine-g.yaml","sungeidine G"],["shikimates_and_phenylpropanoids/sungeidine-d.yaml","sungeidine D"],["unclassified/sungeidine-a.yaml","sungeidine A"]]},{"id":"NCBITaxon:67263","l":"Streptomyces griseus subsp. griseus","na":6,"nb":7,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["laboratory-facility-envo-01001406.html","laboratory facility"],["clay-envo-00002982.html","clay"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["alkaloids/indolmycin.yaml","indolmycin"],["polyketides/chromomycin-a3.yaml","chromomycin A3"],["polyketides/dinactin.yaml","dinactin"],["polyketides/monactin.yaml","monactin"],["polyketides/nonactin.yaml","nonactin"],["polyketides/tetranactin.yaml","tetranactin"]]},{"id":"NCBITaxon:1269","l":"Micrococcus","na":6,"nb":6,"a":[["cecum-bto-0000166.html","cecum"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["saliva-bto-0001202.html","saliva"],["tongue-bto-0001385.html","tongue"]],"b":[["alkaloids/limazepine-a.yaml","limazepine A"],["alkaloids/limazepine-c.yaml","limazepine C"],["alkaloids/limazepine-d.yaml","limazepine D"],["alkaloids/limazepine-e.yaml","limazepine E"],["alkaloids/limazepine-f.yaml","limazepine F"],["terpenoids/mk-8.yaml","MK-8"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":40,"nb":5,"a":[["liquid-water-envo-00002006.html","liquid water"],["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["laboratory-facility-envo-01001406.html","laboratory facility"],["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["biofilm-bto-0002690.html","biofilm"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"],["unclassified/leuvalin.yaml","leuvalin"],["unclassified/phevalin.yaml","phevalin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":11,"nb":5,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["resting-cell-bto-0001170.html","resting cell"],["seedling-bto-0001228.html","seedling"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["alkaloids/promysalin.yaml","promysalin"],["polyketides/pseudopyronine-a.yaml","pseudopyronine A"],["polyketides/pseudopyronine-b.yaml","pseudopyronine B"],["unclassified/putisolvin-iii.yaml","putisolvin III"],["unclassified/putisolvin-v.yaml","putisolvin V"]]},{"id":"NCBITaxon:10090","l":"Mus musculus","na":8,"nb":5,"a":[["river-envo-00000022.html","river"],["animal-manure-envo-00003031.html","animal manure"],["biotope-envo-00002036.html","biotope"],["intestine-environment-envo-2100002.html","intestine environment"],["urban-biome-envo-01000249.html","urban biome"],["sediment-envo-00002007.html","sediment"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"],["terpenoids/carotene.yaml","β-carotene"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":5,"nb":5,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["pseudostem-bto-0005992.html","pseudostem"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/andrimid.yaml","andrimid"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/pantocin-a.yaml","pantocin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":5,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"],["midgut-bto-0000863.html","midgut"],["paddy-field-envo-00000297.html","paddy field"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["alkaloids/prodigiosin-2.yaml","prodigiosin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/serratiochelin-a.yaml","serratiochelin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["polyketides/oocydin-a.yaml","oocydin A"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":27,"nb":4,"a":[["small-river-biome-envo-00000890.html","small river biome"],["factory-envo-01000536.html","factory"],["organic-waste-material-envo-00002873.html","organic waste material"],["leaf-po-0025034.html","leaf"],["milk-uberon-0001913.html","milk"],["rhizosphere-envo-00005801.html","rhizosphere"]],"b":[["alkaloids/zwittermicin-a.yaml","zwittermicin A"],["amino_acids_and_peptides/livipeptin.yaml","Livipeptin"],["carbohydrates/tunicamycin.yaml","tunicamycin"],["unclassified/cereulide.yaml","cereulide"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":4,"nb":23,"a":[["bioreactor-envo-00002123.html","bioreactor"],["human-construction-envo-00000070.html","human construction"],["sediment-envo-00002007.html","sediment"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/melanin.yaml","melanin"],["alkaloids/undecylprodigiosin.yaml","undecylprodigiosin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/sapb.yaml","SapB"]]},{"id":"NCBITaxon:378806","l":"Stigmatella aurantiaca DW4/3-1","na":4,"nb":17,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["orchard-envo-00000115.html","orchard"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["polyketides/aurafuron-a.yaml","aurafuron A"],["polyketides/dawenol.yaml","dawenol"],["unclassified/dkxanthene-504.yaml","dkxanthene 504"],["unclassified/dkxanthene-508.yaml","dkxanthene 508"],["unclassified/dkxanthene-518.yaml","dkxanthene 518"],["unclassified/dkxanthene-520.yaml","dkxanthene 520"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":13,"nb":4,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["neutrophil-bto-0000130.html","neutrophil"],["rectum-bto-0001158.html","rectum"],["spleen-bto-0001281.html","spleen"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["alkaloids/tilivalline.yaml","tilivalline"],["amino_acids_and_peptides/colibactin.yaml","colibactin"],["amino_acids_and_peptides/klebsidin.yaml","klebsidin"],["carbohydrates/capsular-polysaccharide-2.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:1397","l":"Niallia circulans","na":12,"nb":4,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["organic-waste-material-envo-00002873.html","organic waste material"],["rhizosphere-envo-00005801.html","rhizosphere"],["cultivated-environment-envo-01000311.html","cultivated environment"],["sludge-envo-00002044.html","sludge"]],"b":[["carbohydrates/butirosin-a.yaml","butirosin A"],["carbohydrates/butirosin-b.yaml","butirosin B"],["carbohydrates/butirosin.yaml","butirosin"],["unclassified/pelgipeptin-b.yaml","Pelgipeptin B"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":10,"nb":4,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["air-conditioning-unit-envo-00002874.html","air conditioning unit"],["leaf-bto-0000713.html","leaf"],["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["unclassified/vacidobactin-a.yaml","vacidobactin A"],["unclassified/vacidobactin-b.yaml","vacidobactin B"],["unclassified/variobactin-a.yaml","variobactin A"],["unclassified/variobactin-b.yaml","variobactin B"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae (strain ATCC 42149 / RIB 40)","na":4,"nb":10,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["mountain-pass-envo-00000084.html","mountain pass"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["fatty_acids/oryzine-a.yaml","oryzine A"],["polyketides/kojic-acid.yaml","kojic acid"],["polyketides/oryzine-b.yaml","oryzine B"],["polyketides/ywa1.yaml","YWA1"],["shikimates_and_phenylpropanoids/2-4-dihydroxy-3-methoxypropiophenone.yaml","2,4'-dihydroxy-3'-methoxypropiophenone"],["shikimates_and_phenylpropanoids/8-methyldiaporthin.yaml","8-methyldiaporthin"]]},{"id":"NCBITaxon:10116","l":"Rattus norvegicus","na":9,"nb":4,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["biotope-envo-00002036.html","biotope"],["farm-envo-00000078.html","farm"],["intestine-environment-envo-2100002.html","intestine environment"],["organic-material-envo-01000155.html","organic material"]],"b":[["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/methylarcyriarubin.yaml","methylarcyriarubin"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]]},{"id":"NCBITaxon:83451","l":"Archangium violaceum","na":7,"nb":4,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["wood-bto-0005516.html","wood"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["plant-litter-envo-01000628.html","plant litter"],["sand-envo-01000017.html","sand"]],"b":[["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["alkaloids/myxochelin-n.yaml","myxochelin N"],["alkaloids/myxochelin-o.yaml","myxochelin O"]]},{"id":"NCBITaxon:1930","l":"Streptomyces scabiei","na":4,"nb":6,"a":[["a10-cell-bto-0002196.html","A10 cell"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"],["amino_acids_and_peptides/thaxtomin-c.yaml","thaxtomin C"],["polyketides/oronofacic-acid.yaml","oronofacic acid"],["unclassified/n-coronafacoyl-l-isoleucine.yaml","N-coronafacoyl-L-isoleucine"],["unclassified/thaxtomin-a.yaml","thaxtomin A"],["unclassified/thaxtomin-b.yaml","thaxtomin B"]]},{"id":"NCBITaxon:1393","l":"Brevibacillus brevis","na":5,"nb":4,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["alkaloids/ulbactin-f.yaml","ulbactin F"],["alkaloids/ulbactin-g.yaml","ulbactin G"],["amino_acids_and_peptides/gramicidin.yaml","gramicidin"],["amino_acids_and_peptides/tyrocidine-a.yaml","tyrocidine A"]]},{"id":"NCBITaxon:479432","l":"Streptosporangium roseum DSM 43021","na":4,"nb":5,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"],["vegetable-garden-soil-envo-00005779.html","vegetable garden soil"]],"b":[["polyketides/benaphthamycin.yaml","benaphthamycin"],["polyketides/ws-79089a.yaml","WS 79089A"],["polyketides/ws-79089b.yaml","WS 79089B"],["polyketides/ws-79089c.yaml","WS 79089C"],["polyketides/ws-79089d.yaml","WS 79089D"]]},{"id":"NCBITaxon:39947","l":"Oryza sativa subsp. japonica","na":4,"nb":4,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["large-river-biome-envo-00000887.html","large river biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"],["river-bed-envo-00000384.html","river bed"]],"b":[["terpenoids/10-oxodepressin.yaml","10-Oxodepressin"],["terpenoids/momilactone-b.yaml","momilactone B"],["terpenoids/oryzalides.yaml","oryzalides"],["terpenoids/phytocassane.yaml","phytocassane"]]},{"id":"NCBITaxon:184914","l":"Corallococcus coralloides","na":35,"nb":3,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["watercourse-envo-00000029.html","watercourse"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["amino_acids_and_peptides/myxovalargin-a.yaml","myxovalargin A"],["polyketides/corallopyronin.yaml","corallopyronin"],["polyketides/phenalamide.yaml","phenalamide"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":25,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-water-body-envo-00001999.html","marine water body"],["sea-water-envo-00002149.html","sea water"],["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["amino_acids_and_peptides/epidermin.yaml","epidermin"],["amino_acids_and_peptides/epilancin-15x.yaml","epilancin 15x"],["amino_acids_and_peptides/pep5.yaml","pep5"]]},{"id":"NCBITaxon:54","l":"Nannocystis exedens","na":22,"nb":3,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["watercourse-envo-00000029.html","watercourse"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["polyketides/phenylnannolone-a.yaml","phenylnannolone A"],["polyketides/phenylnannolone-b.yaml","phenylnannolone B"],["polyketides/phenylnannolone-c.yaml","phenylnannolone C"]]},{"id":"NCBITaxon:33","l":"Myxococcus fulvus","na":21,"nb":3,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"]],"b":[["unclassified/fulvuthiacene-a.yaml","Fulvuthiacene A"],["unclassified/fulvuthiacene-b.yaml","Fulvuthiacene B"],["unclassified/myxothiazol.yaml","myxothiazol"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":17,"nb":3,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["fruit-bto-0000486.html","fruit"],["leaf-po-0025034.html","leaf"],["rhizosphere-envo-00005801.html","rhizosphere"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["amino_acids_and_peptides/polymyxin-b.yaml","polymyxin B"],["amino_acids_and_peptides/polymyxin.yaml","polymyxin"],["unclassified/fusaricidin-b.yaml","fusaricidin B"]]},{"id":"NCBITaxon:1654","l":"Actinomyces","na":3,"nb":13,"a":[["hand-bto-0004668.html","hand"],["vaginal-fluid-bto-0003084.html","vaginal fluid"],["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["alkaloids/lynamicin-a.yaml","lynamicin A"],["alkaloids/lynamicin-d.yaml","lynamicin D"],["amino_acids_and_peptides/cephamycin-c.yaml","cephamycin C"],["amino_acids_and_peptides/glycinocin-a.yaml","glycinocin A"],["carbohydrates/cetoniacytone-a.yaml","cetoniacytone A"],["polyketides/4-hexadecanoyl-3-hydroxy-2-hydroxymethyl-2h-furan-5-one.yaml","4-hexadecanoyl-3-hydroxy-2-(hydroxymethyl)-2H-furan-5-one"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":3,"nb":13,"a":[["city-envo-00000856.html","city"],["cold-environment-envo-01000309.html","cold environment"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/congocidine.yaml","congocidine"],["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK1622","na":3,"nb":12,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"],["amino_acids_and_peptides/myxochromide-a.yaml","myxochromide A"],["amino_acids_and_peptides/myxoprincomide-c506.yaml","myxoprincomide-c506"]]},{"id":"NCBITaxon:28095","l":"Burkholderia gladioli","na":3,"nb":12,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["alkaloids/gladiofungin-a.yaml","gladiofungin A"],["alkaloids/gladiofungin-b.yaml","gladiofungin B"],["alkaloids/toxoflavin.yaml","toxoflavin"],["amino_acids_and_peptides/arsinothricin.yaml","arsinothricin"],["amino_acids_and_peptides/bolagladin-a.yaml","bolagladin A"],["fatty_acids/bongkrekic-acid-2.yaml","bongkrekic acid"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":11,"nb":3,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["fermentation-starter-envo-03600040.html","fermentation starter"],["fruit-bto-0000486.html","fruit"],["mammary-epithelial-cell-bto-0004300.html","mammary epithelial cell"],["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"],["amino_acids_and_peptides/lacticin-z.yaml","lacticin Z"],["amino_acids_and_peptides/nisin-a.yaml","nisin A"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":3,"nb":10,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["amino_acids_and_peptides/lipopeptide-8d1-1.yaml","lipopeptide 8D1-1"],["amino_acids_and_peptides/lipopeptide-8d1-2.yaml","lipopeptide 8D1-2"],["carbohydrates/amicetin.yaml","amicetin"],["carbohydrates/streptothricin-c.yaml","streptothricin C"],["carbohydrates/streptothricin-d.yaml","streptothricin D"],["carbohydrates/streptothricin-e.yaml","streptothricin E"]]},{"id":"NCBITaxon:38","l":"Archangium disciforme","na":7,"nb":3,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["feces-uberon-0001988.html","feces"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["wood-bto-0005516.html","wood"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["alkaloids/myxochelin-a.yaml","myxochelin A"],["amino_acids_and_peptides/tubulysin-a.yaml","tubulysin A"],["amino_acids_and_peptides/tubulysin-h.yaml","tubulysin H"]]},{"id":"NCBITaxon:83460","l":"Allostigmatella erecta","na":7,"nb":3,"a":[["feces-uberon-0001988.html","feces"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["plant-litter-envo-01000628.html","plant litter"],["sand-envo-01000017.html","sand"]],"b":[["alkaloids/aurachin-a.yaml","aurachin A"],["alkaloids/aurachin-c.yaml","aurachin C"],["unclassified/myxochromide-d.yaml","myxochromide D"]]},{"id":"NCBITaxon:32008","l":"Burkholderia","na":3,"nb":6,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["midgut-bto-0000863.html","midgut"]],"b":[["polyketides/necroxime-a.yaml","necroxime A"],["polyketides/necroxime-c.yaml","necroxime C"],["polyketides/necroxime-d.yaml","necroxime D"],["polyketides/thailanstatin-a.yaml","thailanstatin A"],["unclassified/necroxime-b.yaml","necroxime B"],["unclassified/spliceostatin.yaml","spliceostatin"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":5,"nb":3,"a":[["liquid-water-envo-00002006.html","liquid water"],["food-spoiled-foodon-00003366.html","food (spoiled)"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"]],"b":[["alkaloids/cepaciachelin.yaml","cepaciachelin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["terpenoids/hopene.yaml","hopene"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":4,"nb":3,"a":[["stream-envo-00000023.html","stream"],["biome-envo-00000428.html","biome"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["unclassified/leuvalin.yaml","leuvalin"],["unclassified/mutanocyclin.yaml","mutanocyclin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:1120925","l":"Acinetobacter bouvetii DSM 14964 = CIP 107468","na":3,"nb":3,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["alkaloids/butanochelin.yaml","butanochelin"],["alkaloids/pentanochelin.yaml","pentanochelin"],["alkaloids/propanochelin.yaml","propanochelin"]]},{"id":"NCBITaxon:1833","l":"Rhodococcus erythropolis","na":3,"nb":3,"a":[["watercourse-envo-00000029.html","watercourse"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"],["water-scum-envo-00005794.html","water scum"]],"b":[["alkaloids/aurachin-re.yaml","aurachin RE"],["amino_acids_and_peptides/heterobactin-a.yaml","heterobactin A"],["amino_acids_and_peptides/heterobactin-s2.yaml","heterobactin S2"]]},{"id":"NCBITaxon:1961","l":"Streptomyces virginiae","na":3,"nb":3,"a":[["clay-envo-00002982.html","clay"],["plain-envo-00000086.html","plain"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["alkaloids/endophenazine-a.yaml","endophenazine A"],["polyketides/monensin.yaml","monensin"],["unclassified/virginiamycin-s1.yaml","virginiamycin S1"]]},{"id":"NCBITaxon:1883","l":"Streptomyces","na":2,"nb":438,"a":[["crop-bto-0000301.html","crop"],["lab-synthesis-habitatmech-bacdive-0e92e77cd4.html","Lab-synthesis"]],"b":[["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/7-prenylisatin.yaml","7-prenylisatin"],["alkaloids/9-methylstreptimidone.yaml","9-methylstreptimidone"],["alkaloids/anisomycin.yaml","(−)-anisomycin"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"]]},{"id":"NCBITaxon:1886","l":"Streptomyces albidoflavus","na":2,"nb":54,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/anthramycin.yaml","anthramycin"],["alkaloids/diazaquinomycin-f.yaml","diazaquinomycin F"],["alkaloids/diazaquinomycin-g.yaml","diazaquinomycin G"],["alkaloids/holomycin.yaml","holomycin"],["alkaloids/melanin.yaml","melanin"]]},{"id":"NCBITaxon:1911","l":"Streptomyces griseus","na":2,"nb":32,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["alkaloids/cycloheximide.yaml","cycloheximide"],["alkaloids/grixazone-a.yaml","grixazone A"],["alkaloids/iminimycin-a.yaml","iminimycin A"],["alkaloids/iminimycin-b.yaml","iminimycin B"],["alkaloids/indolmycin.yaml","indolmycin"],["alkaloids/melanin.yaml","melanin"]]},{"id":"NCBITaxon:369723","l":"Salinispora tropica CNB-440","na":2,"nb":23,"a":[["coarse-beach-sand-envo-00002148.html","coarse beach sand"],["sand-envo-01000017.html","sand"]],"b":[["alkaloids/lymphostin.yaml","lymphostin"],["alkaloids/lymphostinol.yaml","lymphostinol"],["alkaloids/neolymphostin-b-2.yaml","neolymphostin B"],["alkaloids/neolymphostinol-b.yaml","neolymphostinol B"],["amino_acids_and_peptides/salinosporamide-a.yaml","salinosporamide A"],["fatty_acids/salinipostin-a.yaml","Salinipostin A"]]},{"id":"NCBITaxon:83456","l":"Myxococcus virescens","na":15,"nb":2,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["feces-uberon-0001988.html","feces"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"]],"b":[["alkaloids/bengamide.yaml","bengamide"],["unclassified/myxochromide-c.yaml","myxochromide C"]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":2,"nb":14,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/framycetin.yaml","framycetin"],["carbohydrates/neomycin-c.yaml","neomycin C"],["carbohydrates/paromomycin.yaml","paromomycin"]]},{"id":"NCBITaxon:2013","l":"Nocardiopsis","na":2,"nb":14,"a":[["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"],["alkaloids/k-252a.yaml","K-252a"],["alkaloids/methylpendolmycin.yaml","methylpendolmycin"],["alkaloids/pendolmycin.yaml","pendolmycin"],["amino_acids_and_peptides/tp-1161.yaml","TP-1161"],["polyketides/apoptolidin.yaml","apoptolidin"]]},{"id":"NCBITaxon:102234","l":"Cyanobacterium","na":12,"nb":2,"a":[["cecum-bto-0000166.html","cecum"],["colon-bto-0000269.html","colon"],["gut-bto-0000545.html","gut"],["head-bto-0000282.html","head"],["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"]],"b":[["amino_acids_and_peptides/aeruginosin-98-c.yaml","aeruginosin 98-C"],["unclassified/nostopeptolide-a2.yaml","nostopeptolide A2"]]},{"id":"NCBITaxon:271848","l":"Burkholderia thailandensis E264","na":2,"nb":12,"a":[["needle-bto-0000917.html","needle"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["alkaloids/malleobactin-b.yaml","malleobactin B"],["alkaloids/malleobactin-d.yaml","malleobactin D"],["polyketides/malleicyprol.yaml","malleicyprol"],["polyketides/malleilactone.yaml","malleilactone"],["polyketides/thailandamide-lactone.yaml","thailandamide lactone"],["polyketides/thailandamide.yaml","thailandamide"]]},{"id":"NCBITaxon:457427","l":"Streptomyces himastatinicus ATCC 53653","na":9,"nb":2,"a":[["bay-envo-00000032.html","bay"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["saline-water-envo-00002010.html","saline water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["food-product-foodon-00001002.html","food product"]],"b":[["alkaloids/9-methylstreptimidone.yaml","9-methylstreptimidone"],["amino_acids_and_peptides/himastatin.yaml","himastatin"]]},{"id":"NCBITaxon:500485","l":"Penicillium rubens Wisconsin 54-1255","na":2,"nb":9,"a":[["finger-bto-0004669.html","finger"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["alkaloids/dehydrohistidyltryptophanyldiketopiperazine.yaml","dehydrohistidyltryptophanyldiketopiperazine"],["alkaloids/glandicoline-a.yaml","glandicoline A"],["alkaloids/glandicoline-b.yaml","glandicoline B"],["alkaloids/meleagrine.yaml","meleagrine"],["polyketides/sorbicillin.yaml","sorbicillin"],["terpenoids/conidiogenone.yaml","conidiogenone"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":8,"nb":2,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["lab-synthesis-habitatmech-bacdive-0e92e77cd4.html","Lab-synthesis"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["oil-spill-envo-00002061.html","oil spill"],["temperate-envo-01000206.html","temperate"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"],["carbohydrates/oxetanocin-a.yaml","oxetanocin A"]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":8,"nb":2,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["terpenoids/xanthan.yaml","xanthan"]]},{"id":"NCBITaxon:345341","l":"Kutzneria sp. 744","na":2,"nb":8,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"],["clay-envo-00002982.html","clay"]],"b":[["amino_acids_and_peptides/kutzneride-6.yaml","Kutzneride 6"],["unclassified/kutzneride-1.yaml","Kutzneride 1"],["unclassified/kutzneride-2.yaml","Kutzneride 2"],["unclassified/kutzneride-3.yaml","Kutzneride 3"],["unclassified/kutzneride-4.yaml","Kutzneride 4"],["unclassified/kutzneride-5.yaml","Kutzneride 5"]]},{"id":"NCBITaxon:331117","l":"Aspergillus fischeri NRRL 181","na":2,"nb":7,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["terpenoids/compound-5.yaml","compound 5"],["terpenoids/compound-6-2.yaml","compound 6"],["terpenoids/compound-7a.yaml","compound 7a"],["terpenoids/compound-8-2.yaml","compound 8"],["terpenoids/sesterfisheric-acid.yaml","sesterfisheric acid"],["terpenoids/sesterfisherol.yaml","sesterfisherol"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":7,"nb":2,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["liquid-water-envo-00002006.html","liquid water"],["crown-gall-bto-0000303.html","crown gall"],["finger-bto-0004669.html","finger"],["resting-cell-bto-0001170.html","resting cell"],["water-scum-envo-00005794.html","water scum"]],"b":[["alkaloids/agrobactin.yaml","agrobactin"],["amino_acids_and_peptides/aztreonam.yaml","aztreonam"]]},{"id":"NCBITaxon:391037","l":"Salinispora arenicola CNS-205","na":2,"nb":7,"a":[["beach-sand-envo-00002138.html","beach sand"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["alkaloids/lymphostin.yaml","lymphostin"],["alkaloids/lymphostinol.yaml","lymphostinol"],["alkaloids/neolymphostin-b.yaml","neolymphostin b"],["alkaloids/neolymphostinol-b.yaml","neolymphostinol B"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/cyclomarin-d.yaml","cyclomarin D"]]},{"id":"NCBITaxon:63737","l":"Nostoc punctiforme PCC 73102","na":2,"nb":7,"a":[["heterocyst-bto-0000600.html","heterocyst"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["amino_acids_and_peptides/microviridin-n3.yaml","microviridin N3"],["amino_acids_and_peptides/microviridin-n4.yaml","microviridin N4"],["amino_acids_and_peptides/microviridin-n6.yaml","microviridin N6"],["amino_acids_and_peptides/microviridin-n7.yaml","microviridin N7"],["amino_acids_and_peptides/microviridin-n8.yaml","microviridin N8"],["amino_acids_and_peptides/microviridin-n9.yaml","microviridin N9"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":6,"nb":2,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"],["sludge-envo-00002044.html","sludge"],["forested-area-envo-00000111.html","forested area"],["scrubland-area-envo-00000300.html","scrubland area"],["soil-envo-00001998.html","soil"]],"b":[["amino_acids_and_peptides/cupriachelin.yaml","cupriachelin"],["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"]]},{"id":"NCBITaxon:457412","l":"Ruminococcus sp. 5_1_39BFAA","na":2,"nb":6,"a":[["animal-litter-envo-00002191.html","animal litter"],["tropical-envo-01000204.html","tropical"]],"b":[["alkaloids/pzn10.yaml","PZN10"],["alkaloids/pzn11.yaml","PZN11"],["alkaloids/pzn5.yaml","PZN5"],["alkaloids/pzn6.yaml","PZN6"],["alkaloids/pzn7.yaml","PZN7"],["alkaloids/pzn9.yaml","PZN9"]]},{"id":"NCBITaxon:4577","l":"Zea mays","na":2,"nb":6,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["alkaloids/dimboa.yaml","DIMBOA"],["polyketides/emodin.yaml","emodin"],["terpenoids/zealexin-a1.yaml","zealexin A1"],["terpenoids/zealexin-b3.yaml","zealexin B3"],["terpenoids/zealexin-c2.yaml","zealexin C2"],["unclassified/aflatoxin.yaml","aflatoxin"]]},{"id":"NCBITaxon:1465","l":"Brevibacillus laterosporus","na":2,"nb":5,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["amino_acids_and_peptides/bogorol-a.yaml","bogorol A"],["amino_acids_and_peptides/tauramamide.yaml","tauramamide"],["shikimates_and_phenylpropanoids/basiliskamide-a.yaml","Basiliskamide A"],["unclassified/basiliskamide-b.yaml","Basiliskamide B"],["unclassified/laterocidine.yaml","laterocidine"]]},{"id":"NCBITaxon:497689","l":"Streptomyces sp. SNA15896","na":2,"nb":5,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["unclassified/sw-163c.yaml","SW-163C"],["unclassified/sw-163e.yaml","SW-163E"],["unclassified/sw-163f.yaml","SW-163F"],["unclassified/sw-163g.yaml","SW-163G"],["unclassified/uk-63598.yaml","UK 63598"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":5,"nb":2,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["pseudostem-bto-0005992.html","pseudostem"],["seedling-bto-0001228.html","seedling"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["soil-envo-00001998.html","soil"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["terpenoids/mk-8.yaml","MK-8"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":5,"nb":2,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"],["feces-uberon-0001988.html","feces"],["rectum-bto-0001158.html","rectum"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["alkaloids/vibriobactin-2.yaml","vibriobactin"],["alkaloids/vibriobactin.yaml","vibriobactin"]]},{"id":"NCBITaxon:1224742","l":"Vibrio campbellii ATCC BAA-1116","na":2,"nb":4,"a":[["kidney-bto-0000671.html","kidney"],["renal-cortex-bto-0001166.html","renal cortex"]],"b":[["polyketides/amphi-enterobactin-1.yaml","Amphi-enterobactin 1"],["polyketides/amphi-enterobactin-2.yaml","amphi-enterobactin 2"],["polyketides/amphi-enterobactin-3.yaml","amphi-enterobactin 3"],["polyketides/amphi-enterobactin-4.yaml","amphi-enterobactin 4"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":4,"nb":2,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["carcass-envo-00002033.html","carcass"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["sludge-envo-00002044.html","sludge"]],"b":[["alkaloids/biotin.yaml","biotin"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":4,"nb":2,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["unclassified/andalusicin-a.yaml","andalusicin A"]]},{"id":"NCBITaxon:305","l":"Ralstonia solanacearum","na":4,"nb":2,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"],["pseudostem-bto-0005992.html","pseudostem"],["xylem-bto-0001468.html","xylem"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"],["unclassified/micacocidin.yaml","micacocidin"]]},{"id":"NCBITaxon:398578","l":"Delftia acidovorans SPH-1","na":4,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["large-river-biome-envo-00000887.html","large river biome"],["sewage-envo-00002018.html","sewage"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["amino_acids_and_peptides/delftibactin-a.yaml","delftibactin A"],["amino_acids_and_peptides/delftibactin-b.yaml","delftibactin B"]]},{"id":"NCBITaxon:426418","l":"Pyrenophora tritici-repentis Pt-1C-BFP","na":2,"nb":4,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["unclassified/triticone-a.yaml","triticone A"],["unclassified/triticone-b.yaml","triticone B"],["unclassified/triticone-c.yaml","triticone C"],["unclassified/triticone-f.yaml","triticone F"]]},{"id":"NCBITaxon:479433","l":"Catenulispora acidiphila DSM 44928","na":4,"nb":2,"a":[["filament-bto-0000463.html","filament"],["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["amino_acids_and_peptides/catenulipeptin.yaml","catenulipeptin"],["shikimates_and_phenylpropanoids/cacibiocin-b.yaml","cacibiocin B"]]},{"id":"NCBITaxon:6239","l":"Caenorhabditis elegans","na":2,"nb":4,"a":[["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["alkaloids/biotin.yaml","biotin"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/itaconic-acid.yaml","itaconic acid"],["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"]]},{"id":"NCBITaxon:703612","l":"Bacillus subtilis subsp. spizizenii ATCC 6633","na":2,"nb":4,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["amino_acids_and_peptides/mycosubtilin.yaml","mycosubtilin"],["amino_acids_and_peptides/rhizocticin-a.yaml","rhizocticin A"],["amino_acids_and_peptides/subtilin.yaml","subtilin"],["amino_acids_and_peptides/subtilosin-a.yaml","subtilosin A"]]},{"id":"NCBITaxon:1129","l":"Synechococcus","na":2,"nb":3,"a":[["column-bto-0005692.html","column"],["hemolymph-bto-0000572.html","hemolymph"]],"b":[["alkaloids/synechobactin-a.yaml","synechobactin A"],["alkaloids/synechobactin-b.yaml","synechobactin B"],["alkaloids/synechobactin-c.yaml","synechobactin C"]]},{"id":"NCBITaxon:1218948","l":"Pseudomonas fluorescens PF5","na":3,"nb":2,"a":[["large-river-biome-envo-00000887.html","large river biome"],["human-construction-envo-00000070.html","human construction"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["alkaloids/pyoluteorin.yaml","pyoluteorin"],["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":2,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:1932","l":"Streptomyces tendae","na":2,"nb":3,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"],["polyketides/lysolipin-i.yaml","lysolipin I"],["terpenoids/geosmin.yaml","(−)-geosmin"]]},{"id":"NCBITaxon:1938","l":"Streptomyces viridochromogenes","na":2,"nb":3,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["amino_acids_and_peptides/glycinocin-a.yaml","glycinocin A"],["carbohydrates/avilamycin-a.yaml","avilamycin A"],["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"]]},{"id":"NCBITaxon:2021","l":"Thermobifida fusca","na":2,"nb":3,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["amino_acids_and_peptides/fuscachelin-a.yaml","Fuscachelin A"],["amino_acids_and_peptides/fuscachelin-b.yaml","Fuscachelin B"],["amino_acids_and_peptides/fuscachelin-c.yaml","Fuscachelin C"]]},{"id":"NCBITaxon:269800","l":"","na":2,"nb":3,"a":[["compost-envo-00002170.html","compost"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["amino_acids_and_peptides/fuscachelin-a.yaml","Fuscachelin A"],["amino_acids_and_peptides/fuscachelin-b.yaml","Fuscachelin B"],["amino_acids_and_peptides/fuscachelin-c.yaml","Fuscachelin C"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":3,"nb":2,"a":[["bile-bto-0000121.html","bile"],["rectum-bto-0001158.html","rectum"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["alkaloids/acinetobactin.yaml","acinetobactin"],["amino_acids_and_peptides/fimsbactin-a.yaml","fimsbactin A"]]},{"id":"NCBITaxon:556","l":"Dickeya chrysanthemi","na":2,"nb":3,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["amino_acids_and_peptides/chrysobactin.yaml","chrysobactin"],["amino_acids_and_peptides/dichrysobactin.yaml","dichrysobactin"],["unclassified/cyclic-trichrysobactin.yaml","cyclic trichrysobactin"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":3,"nb":2,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["amino_acids_and_peptides/vibrioferrin-2.yaml","vibrioferrin"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:1121302","l":"Clostridium cavendishii DSM 21758","na":2,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["groundwater-envo-01001004.html","groundwater"]],"b":[["alkaloids/closoxazole-a.yaml","closoxazole A"],["alkaloids/closoxazole-b.yaml","closoxazole B"]]},{"id":"NCBITaxon:176299","l":"Agrobacterium fabrum (strain C58 / ATCC 33970)","na":2,"nb":2,"a":[["human-construction-envo-00000070.html","human construction"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["amino_acids_and_peptides/fabrubactin-a.yaml","fabrubactin A"],["amino_acids_and_peptides/fabrubactin-b.yaml","fabrubactin B"]]},{"id":"NCBITaxon:316274","l":"Herpetosiphon aurantiacus DSM 785","na":2,"nb":2,"a":[["filament-bto-0000463.html","filament"],["joint-bto-0001686.html","joint"]],"b":[["alkaloids/auriculamide.yaml","auriculamide"],["terpenoids/o-methylkolavelool.yaml","(+)-O-methylkolavelool"]]},{"id":"NCBITaxon:394096","l":"Hyalangium minutum","na":2,"nb":2,"a":[["wood-bto-0005516.html","wood"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["polyketides/nystatin-a1.yaml","nystatin A1"],["unclassified/myxochromide-d-2.yaml","myxochromide D"]]},{"id":"NCBITaxon:394503","l":"","na":2,"nb":2,"a":[["agricultural-waste-material-envo-01000371.html","agricultural waste material"],["compost-envo-00002170.html","compost"]],"b":[["alkaloids/closthioamide.yaml","closthioamide"],["amino_acids_and_peptides/rc-aip1.yaml","Rc-AIP1"]]},{"id":"NCBITaxon:444103","l":"Streptomyces sp. CNQ-509","na":2,"nb":2,"a":[["colonic-cancer-cell-bto-0000586.html","colonic cancer cell"],["vas-efferens-bto-0002254.html","vas efferens"]],"b":[["alkaloids/marinophenazine-a.yaml","marinophenazine A"],["alkaloids/phenaziterpene-a.yaml","phenaziterpene A"]]},{"id":"NCBITaxon:47879","l":"Pseudomonas corrugata","na":2,"nb":2,"a":[["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["wilt-habitatmech-bacdive-4c48b5114d.html","Wilt"]],"b":[["amino_acids_and_peptides/corpeptin-a.yaml","corpeptin A"],["amino_acids_and_peptides/corpeptin-b.yaml","corpeptin B"]]},{"id":"NCBITaxon:543728","l":"Variovorax paradoxus S110","na":2,"nb":2,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"]],"b":[["unclassified/vacidobactin-a.yaml","vacidobactin A"],["unclassified/vacidobactin-b.yaml","vacidobactin B"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":2,"nb":2,"a":[["feces-uberon-0001988.html","feces"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["alkaloids/yersiniabactin.yaml","yersiniabactin"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":2,"nb":2,"a":[["watercourse-envo-00000029.html","watercourse"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["amino_acids_and_peptides/vibrioferrin-2.yaml","vibrioferrin"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:1177","l":"Nostoc","na":1,"nb":41,"a":[["inflorescence-bto-0000628.html","inflorescence"]],"b":[["alkaloids/nocuolin-a.yaml","Nocuolin A"],["amino_acids_and_peptides/anabaenopeptin-802.yaml","anabaenopeptin 802"],["amino_acids_and_peptides/heinamide-a1.yaml","heinamide A1"],["amino_acids_and_peptides/heinamide-a2.yaml","heinamide A2"],["amino_acids_and_peptides/heinamide-a3.yaml","heinamide A3"],["amino_acids_and_peptides/heinamide-b1.yaml","heinamide B1"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":33,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["pond-water-envo-00002228.html","pond water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["water-body-envo-00000063.html","water body"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:243265","l":"Photorhabdus laumondii subsp. laumondii TTO1","na":1,"nb":21,"a":[["carcass-bto-0001965.html","carcass"]],"b":[["amino_acids_and_peptides/gamexpeptide-c.yaml","gamexpeptide C"],["amino_acids_and_peptides/luminmycin-a.yaml","luminmycin A"],["amino_acids_and_peptides/ririwpeptide-a.yaml","ririwpeptide A"],["amino_acids_and_peptides/ririwpeptide-b.yaml","ririwpeptide B"],["carbohydrates/oligosaccharide-1-glcnac-1-4-1-6-anhydro-glcnac.yaml","oligosaccharide 1 (GlcNAc-β(1-4)-1,6-anhydro-β-GlcNAc)"],["carbohydrates/oligosaccharide-2-glcnac-1-4-glcnac-1-4-1-6-anhydro-glcnac.yaml","oligosaccharide 2 (GlcNAc-β(1-4)-GlcNAc-β(1-4)-1,6-anhydro-β-GlcNAc)"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":1,"nb":20,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/c-3-sulfonylated-derivative.yaml","C-3 sulfonylated derivative"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["alkaloids/n-n-dioxide-containing-derivate.yaml","N,N-dioxide containing derivate"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":19,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["bone-element-uberon-0001474.html","bone element"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["amino_acids_and_peptides/bacitracin.yaml","bacitracin"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":17,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["hospital-envo-00002173.html","hospital"],["egg-food-product-foodon-00001274.html","egg food product"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["amino_acids_and_peptides/enterocin-a.yaml","enterocin A"]]},{"id":"NCBITaxon:455632","l":"Streptomyces griseus subsp. griseus NBRC 13350","na":1,"nb":17,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["alkaloids/grixazone-a.yaml","grixazone A"],["alkaloids/iminimycin-a.yaml","iminimycin A"],["alkaloids/iminimycin-b.yaml","iminimycin B"],["alkaloids/melanin.yaml","melanin"],["carbohydrates/streptomycin.yaml","streptomycin"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":16,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":14,"nb":1,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["compost-envo-00002170.html","compost"],["organic-waste-material-envo-00002873.html","organic waste material"],["larva-bto-0000707.html","larva"],["rhizosphere-envo-00005801.html","rhizosphere"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]]},{"id":"NCBITaxon:29488","l":"Photorhabdus luminescens","na":1,"nb":14,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["alkaloids/photobactin.yaml","photobactin"],["alkaloids/pzn5.yaml","PZN5"],["amino_acids_and_peptides/gamexpeptide-c.yaml","gamexpeptide C"],["amino_acids_and_peptides/glidobactin.yaml","glidobactin"],["amino_acids_and_peptides/luminmycin-a.yaml","luminmycin A"],["polyketides/photopyrone-a.yaml","photopyrone A"]]},{"id":"NCBITaxon:1357","l":"Lactococcus","na":13,"nb":1,"a":[["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["ileum-bto-0000620.html","ileum"],["intestine-bto-0000648.html","intestine"],["mouth-bto-0001090.html","mouth"]],"b":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":1,"nb":13,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["alkaloids/holomycin.yaml","holomycin"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/2-formyloxymethylclavam.yaml","2-formyloxymethylclavam"],["amino_acids_and_peptides/2-hydroxymethylclavam.yaml","2-hydroxymethylclavam"],["amino_acids_and_peptides/alanylclavam.yaml","alanylclavam"],["amino_acids_and_peptides/cephamycin-c.yaml","cephamycin C"]]},{"id":"NCBITaxon:406817","l":"Xenorhabdus nematophila ATCC 19061","na":1,"nb":13,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["alkaloids/nematophin.yaml","nematophin"],["amino_acids_and_peptides/rhabdopeptide-1.yaml","rhabdopeptide 1"],["amino_acids_and_peptides/rhabdopeptide-2.yaml","rhabdopeptide 2"],["amino_acids_and_peptides/rhabdopeptide-3.yaml","rhabdopeptide 3"],["amino_acids_and_peptides/rhabdopeptide-4.yaml","rhabdopeptide 4"],["amino_acids_and_peptides/xenortide-a.yaml","xenortide A"]]},{"id":"NCBITaxon:104268","l":"Tenacibaculum mesophilum","na":12,"nb":1,"a":[["bay-envo-00000032.html","bay"],["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"],["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"]],"b":[["fatty_acids/bisucaberin-b.yaml","bisucaberin B"]]},{"id":"NCBITaxon:321614","l":"","na":1,"nb":12,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["alkaloids/phomacin-d.yaml","phomacin D"],["alkaloids/phomacin-e.yaml","phomacin E"],["polyketides/betaenone-b.yaml","betaenone B"],["polyketides/betaenone-c.yaml","betaenone C"],["polyketides/compound-3-2.yaml","compound 3"],["polyketides/compound-5-2.yaml","compound 5"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":11,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"],["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["laboratory-facility-envo-01001406.html","laboratory facility"],["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["bone-element-uberon-0001474.html","bone element"],["juvenile-bto-0002168.html","juvenile"]],"b":[["amino_acids_and_peptides/cutimycin.yaml","cutimycin"]]},{"id":"NCBITaxon:229533","l":"Fusarium graminearum PH-1","na":1,"nb":11,"a":[["soil-envo-00001998.html","soil"]],"b":[["alkaloids/chrysogine.yaml","chrysogine"],["amino_acids_and_peptides/fusaoctaxin-a.yaml","fusaoctaxin A"],["polyketides/aurofusarin.yaml","aurofusarin"],["polyketides/prolipyrone-b.yaml","prolipyrone B"],["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"],["terpenoids/15-acetyldeoxynivalenol.yaml","15-acetyldeoxynivalenol"]]},{"id":"NCBITaxon:38033","l":"Chaetomium globosum","na":1,"nb":11,"a":[["desert-sand-envo-00005800.html","desert sand"]],"b":[["alkaloids/chaetoglobosin-c.yaml","chaetoglobosin C"],["alkaloids/cytoglobosin-x.yaml","cytoglobosin X"],["polyketides/11-epichaetomugilin-a.yaml","11-epichaetomugilin A"],["polyketides/azanigerone-a.yaml","azanigerone A"],["polyketides/chaetoviridin-e.yaml","chaetoviridin E"],["polyketides/shanorellin.yaml","shanorellin"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":1,"nb":11,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["amino_acids_and_peptides/ferrichrome.yaml","ferrichrome"],["polyketides/1-2-3-5-10-tetrahydroxy-7-methoxy-4-oxo-1-2-3-4-tetrahydroanthracen-2-yl-pentane.yaml","1-(2,3,5,10-tetrahydroxy-7-methoxy-4-oxo-1,2,3,4-tetrahydroanthracen-2-yl)pentane-2,4-dione"],["polyketides/azanigerone-a.yaml","azanigerone A"],["polyketides/campyrone-b.yaml","campyrone B"],["polyketides/desmethyl-tan-1612.yaml","desmethyl TAN-1612"],["polyketides/fumonisin-b2.yaml","fumonisin B2"]]},{"id":"NCBITaxon:111805","l":"Actinomadura pelletieri","na":10,"nb":1,"a":[["lake-envo-00000020.html","lake"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["foot-bto-0000476.html","foot"],["rhizosphere-envo-00005801.html","rhizosphere"],["organic-material-envo-01000155.html","organic material"]],"b":[["alkaloids/undecylprodigiosin-2.yaml","undecylprodigiosin"]]},{"id":"NCBITaxon:1716","l":"Corynebacterium","na":10,"nb":1,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["ileum-bto-0000620.html","ileum"],["juvenile-bto-0002168.html","juvenile"],["mucosa-bto-0000886.html","mucosa"],["nectar-bto-0000537.html","nectar"]],"b":[["alkaloids/corynecin-iii.yaml","corynecin III"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa (strain ATCC 15692 / DSM 22644 / CIP 104116 / JCM 14847 / LMG 12228 / 1C / PRS 101 / PAO1)","na":1,"nb":10,"a":[["style-bto-0001313.html","style"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:543","l":"Enterobacteriaceae","na":10,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"],["midgut-bto-0000863.html","midgut"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":9,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["fresh-water-envo-00002011.html","fresh water"],["river-envo-00000022.html","river"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["alkaloids/molybdenum-cofactor.yaml","molybdenum cofactor"]]},{"id":"NCBITaxon:1817","l":"Nocardia","na":1,"nb":9,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["alkaloids/rebeccamycin.yaml","rebeccamycin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/nocathiacin-i.yaml","nocathiacin I"],["amino_acids_and_peptides/ristocetin-a.yaml","Ristocetin A"],["amino_acids_and_peptides/vancomycin.yaml","vancomycin"],["polyketides/macbecin-ii.yaml","macbecin II"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":9,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["mud-envo-01000001.html","mud"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":8,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["alimentary-canal-bto-0000058.html","alimentary canal"],["blood-bto-0000089.html","blood"],["small-intestine-bto-0000651.html","small intestine"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["geographic-feature-envo-00000000.html","geographic feature"]],"b":[["amino_acids_and_peptides/salivaricin-d.yaml","salivaricin D"]]},{"id":"NCBITaxon:1836","l":"Saccharopolyspora erythraea","na":1,"nb":8,"a":[["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["amino_acids_and_peptides/erythrochelin.yaml","erythrochelin"],["polyketides/3-3-diflaviolin.yaml","3,3'-diflaviolin"],["polyketides/erythromycin-a.yaml","erythromycin A"],["polyketides/erythromycin-b.yaml","erythromycin B"],["polyketides/flaviolin-rhamnoside.yaml","flaviolin rhamnoside"],["polyketides/flaviolin.yaml","flaviolin"]]},{"id":"NCBITaxon:1908","l":"Streptomyces globisporus","na":1,"nb":8,"a":[["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["polyketides/c-1027-chromophore.yaml","C-1027 chromophore"],["polyketides/c-1027.yaml","C-1027"],["polyketides/landomycin-a.yaml","landomycin A"],["polyketides/nonactin.yaml","nonactin"],["polyketides/prejadomycin.yaml","prejadomycin"],["polyketides/tetranactin.yaml","tetranactin"]]},{"id":"NCBITaxon:326423","l":"Bacillus velezensis FZB42","na":1,"nb":8,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["polyketides/bacillaene.yaml","bacillaene"],["polyketides/difficidin.yaml","difficidin"],["polyketides/macrolactin-h.yaml","macrolactin H"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:420953","l":"Paraburkholderia megapolitana","na":1,"nb":8,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["amino_acids_and_peptides/megapolibactin-a.yaml","megapolibactin A"],["amino_acids_and_peptides/megapolibactin-acyc.yaml","megapolibactin Acyc"],["amino_acids_and_peptides/megapolibactin-b.yaml","megapolibactin B"],["amino_acids_and_peptides/megapolibactin-c.yaml","megapolibactin C"],["amino_acids_and_peptides/megapolibactin-d.yaml","megapolibactin D"],["amino_acids_and_peptides/megapolibactin-e.yaml","megapolibactin E"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":8,"nb":1,"a":[["beach-envo-00000091.html","beach"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["sea-sand-envo-00002118.html","sea sand"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["polyketides/haliamide.yaml","haliamide"]]},{"id":"NCBITaxon:680198","l":"Streptomyces scabiei 87.22","na":1,"nb":8,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["alkaloids/rotihibin-a.yaml","rotihibin A"],["amino_acids_and_peptides/bottromycin-a2.yaml","bottromycin A2"],["amino_acids_and_peptides/edha.yaml","EDHA"],["amino_acids_and_peptides/scabichelin.yaml","scabichelin"],["amino_acids_and_peptides/thaxtomin-c.yaml","thaxtomin C"],["unclassified/n-coronafacoyl-l-isoleucine.yaml","N-coronafacoyl-L-isoleucine"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":7,"nb":1,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["farm-envo-00000078.html","farm"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["unclassified/rhodochelin.yaml","rhodochelin"]]},{"id":"NCBITaxon:1044","l":"Erythrobacter longus","na":7,"nb":1,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["small-river-biome-envo-00000890.html","small river biome"],["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["biofilm-material-envo-01000156.html","biofilm material"]],"b":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]]},{"id":"NCBITaxon:83455","l":"Myxococcus stipitatus","na":7,"nb":1,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["plant-litter-envo-01000628.html","plant litter"],["sand-envo-01000017.html","sand"]],"b":[["polyketides/phenalamide-a2.yaml","phenalamide A2"]]},{"id":"NCBITaxon:1069","l":"Rhodomicrobium vannielii","na":6,"nb":1,"a":[["lake-envo-00000020.html","lake"],["stream-envo-00000023.html","stream"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["rhizosphere-envo-00005801.html","rhizosphere"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["terpenoids/carotene.yaml","β-carotene"]]},{"id":"NCBITaxon:1311","l":"Streptococcus agalactiae","na":6,"nb":1,"a":[["kidney-bto-0000671.html","kidney"],["milk-uberon-0001913.html","milk"],["oropharynx-bto-0005257.html","oropharynx"],["urine-bto-0001419.html","urine"],["urogenital-system-bto-0003091.html","urogenital system"],["vagina-bto-0000243.html","vagina"]],"b":[["carbohydrates/capsular-polysaccharide-3.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:205922","l":"Pseudomonas fluorescens Pf0-1","na":6,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["cold-environment-envo-01000309.html","cold environment"],["microbial-mat-material-envo-01000157.html","microbial mat material"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"],["agricultural-soil-envo-00002259.html","agricultural soil"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["unclassified/gacamide-a.yaml","gacamide A"]]},{"id":"NCBITaxon:278992","l":"Streptomyces ambofaciens ATCC 23877","na":1,"nb":6,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["alkaloids/congocidine.yaml","congocidine"],["polyketides/spiramycin.yaml","spiramycin"],["polyketides/stambomycin-a.yaml","stambomycin A"],["polyketides/stambomycin-b.yaml","stambomycin B"],["polyketides/stambomycin-c.yaml","stambomycin C"],["polyketides/stambomycin-d.yaml","stambomycin D"]]},{"id":"NCBITaxon:37632","l":"Amycolatopsis sp.","na":1,"nb":6,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["amino_acids_and_peptides/ristocetin-a.yaml","Ristocetin A"],["polyketides/rifamorpholine-a.yaml","rifamorpholine A"],["polyketides/rifamorpholine-b.yaml","rifamorpholine B"],["polyketides/rifamorpholine-c.yaml","rifamorpholine C"],["polyketides/rifamorpholine-d.yaml","rifamorpholine D"],["polyketides/rifamorpholine-e.yaml","rifamorpholine E"]]},{"id":"NCBITaxon:446","l":"Legionella pneumophila","na":6,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["hospital-envo-00002173.html","hospital"],["macrophage-bto-0000801.html","macrophage"],["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["fatty_acids/lipopolysaccharide.yaml","lipopolysaccharide"]]},{"id":"NCBITaxon:5530","l":"Metarhizium anisopliae","na":1,"nb":6,"a":[["soil-envo-00001998.html","soil"]],"b":[["alkaloids/ng-391.yaml","NG-391"],["amino_acids_and_peptides/serinocyclin-a.yaml","serinocyclin A"],["amino_acids_and_peptides/serinocyclin-b.yaml","serinocyclin B"],["fatty_acids/baa.yaml","BAA"],["fatty_acids/bab.yaml","BAB"],["unclassified/destruxin-a.yaml","destruxin A"]]},{"id":"NCBITaxon:115828","l":"Streptomyces maritimus","na":5,"nb":1,"a":[["farm-envo-00000078.html","farm"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["plain-envo-00000086.html","plain"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["terpenoids/enterocin.yaml","enterocin"]]},{"id":"NCBITaxon:1275","l":"Kocuria rosea","na":5,"nb":1,"a":[["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["marine-environment-envo-01000320.html","marine environment"],["oil-spill-envo-00002061.html","oil spill"],["painting-habitatmech-bacdive-0bfb662164.html","Painting"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["amino_acids_and_peptides/kocurin.yaml","kocurin"]]},{"id":"NCBITaxon:1292","l":"Staphylococcus warneri","na":5,"nb":1,"a":[["neonate-bto-0001762.html","neonate"],["skin-of-body-uberon-0002097.html","skin of body"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["amino_acids_and_peptides/nukacin-isk-1.yaml","nukacin ISK-1"]]},{"id":"NCBITaxon:168695","l":"Salinispora tropica","na":1,"nb":5,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["alkaloids/lymphostin.yaml","lymphostin"],["amino_acids_and_peptides/salinosporamide-a.yaml","salinosporamide A"],["polyketides/lomaiviticin-a.yaml","lomaiviticin A"],["polyketides/sporolide-b.yaml","sporolide B"],["unclassified/salinilactam.yaml","salinilactam"]]},{"id":"NCBITaxon:168697","l":"Salinispora arenicola","na":1,"nb":5,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["amino_acids_and_peptides/cyclomarin-d.yaml","cyclomarin D"],["polyketides/arenimycin-a.yaml","arenimycin A"],["polyketides/rifamycin-sv.yaml","rifamycin SV"],["unclassified/emericellamide-a.yaml","emericellamide A"],["unclassified/emericellamide-b.yaml","emericellamide B"]]},{"id":"NCBITaxon:29303","l":"Streptomyces cattleya","na":1,"nb":5,"a":[["clay-envo-00002982.html","clay"]],"b":[["amino_acids_and_peptides/cattlecin.yaml","cattlecin"],["amino_acids_and_peptides/clavulanic-acid.yaml","clavulanic acid"],["amino_acids_and_peptides/ethynylserine.yaml","β-ethynylserine"],["amino_acids_and_peptides/thienamycin.yaml","thienamycin"],["terpenoids/cattleyene.yaml","cattleyene"]]},{"id":"NCBITaxon:43","l":"Cystobacter fuscus","na":1,"nb":5,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"]],"b":[["amino_acids_and_peptides/cystomanamide-a.yaml","cystomanamide A"],["amino_acids_and_peptides/cystomanamide-b.yaml","cystomanamide B"],["amino_acids_and_peptides/cystomanamide-c.yaml","cystomanamide C"],["amino_acids_and_peptides/cystomanamide-d.yaml","cystomanamide D"],["unclassified/cystothiazole-a.yaml","cystothiazole A"]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":1,"nb":5,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["alkaloids/9-deoxy-tilivalline.yaml","9-deoxy tilivalline"],["alkaloids/dehydro-tilivalline.yaml","dehydro tilivalline"],["alkaloids/dihydroxy-dehydro-tilivalline.yaml","dihydroxy-dehydro tilivalline"],["alkaloids/dihydroxy-tilivalline.yaml","dihydroxy tilivalline"],["alkaloids/tilivalline.yaml","tilivalline"]]},{"id":"NCBITaxon:95486","l":"Burkholderia cenocepacia","na":5,"nb":1,"a":[["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["unclassified/ornibactin-c8.yaml","ornibactin C8"]]},{"id":"NCBITaxon:1038928","l":"Streptomyces xinghaiensis","na":1,"nb":4,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["alkaloids/dixiamycin-a.yaml","dixiamycin A"],["alkaloids/xiamycin-a.yaml","xiamycin A"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"],["polyketides/oligomycin.yaml","oligomycin"]]},{"id":"NCBITaxon:1827","l":"Rhodococcus ","na":4,"nb":1,"a":[["nectar-bto-0000537.html","nectar"],["pitcher-bto-0001069.html","pitcher"],["small-intestine-bto-0000651.html","small intestine"],["stem-bto-0001300.html","stem"]],"b":[["alkaloids/corynecin-iii.yaml","corynecin III"]]},{"id":"NCBITaxon:1965334","l":"Cystobacter sp.","na":1,"nb":4,"a":[["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["unclassified/vioprolide-a.yaml","vioprolide A"],["unclassified/vioprolide-b.yaml","vioprolide B"],["unclassified/vioprolide-c.yaml","vioprolide C"],["unclassified/vioprolide-d.yaml","vioprolide D"]]},{"id":"NCBITaxon:1967","l":"Streptomyces kanamyceticus","na":1,"nb":4,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["amino_acids_and_peptides/gausemycin-a.yaml","gausemycin A"],["amino_acids_and_peptides/gausemycin-b.yaml","gausemycin B"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/kanamycin-a.yaml","kanamycin A"]]},{"id":"NCBITaxon:227882","l":"Streptomyces avermitilis (strain ATCC 31267 / DSM 46492 / JCM 5070 / NBRC 14893 / NCIMB 12804 / NRRL 8165 / MA-4680)","na":1,"nb":4,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["amino_acids_and_peptides/edha.yaml","EDHA"],["polyketides/filipin-iii.yaml","filipin III"],["terpenoids/avermitilol.yaml","avermitilol"],["terpenoids/pentalenolactone.yaml","pentalenolactone"]]},{"id":"NCBITaxon:2745","l":"Halomonas","na":1,"nb":4,"a":[["wood-bto-0005516.html","wood"]],"b":[["amino_acids_and_peptides/potashchelin-a.yaml","potashchelin A"],["amino_acids_and_peptides/potashchelin-b.yaml","potashchelin B"],["amino_acids_and_peptides/potashchelin-c.yaml","potashchelin C"],["amino_acids_and_peptides/potashchelin-d.yaml","potashchelin D"]]},{"id":"NCBITaxon:310350","l":"Nocardiopsis sp.","na":1,"nb":4,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["alkaloids/k-252a.yaml","K-252a"],["polyketides/nocardiopsistin-a.yaml","nocardiopsistin A"],["polyketides/nocardiopsistin-b.yaml","nocardiopsistin B"],["polyketides/nocardiopsistin-c.yaml","nocardiopsistin C"]]},{"id":"NCBITaxon:362","l":"Agrobacterium radiobacter","na":4,"nb":1,"a":[["plant-gall-po-0025626.html","plant gall"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["alkaloids/agrobactin.yaml","agrobactin"]]},{"id":"NCBITaxon:68570","l":"","na":1,"nb":4,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["amino_acids_and_peptides/deimino-antipain.yaml","deimino-antipain"],["polyketides/nystatin.yaml","nystatin"],["unclassified/albonoursin.yaml","albonoursin"],["unclassified/citrulassin-a.yaml","citrulassin A"]]},{"id":"NCBITaxon:746360","l":"Pseudomonas fluorescens WH6","na":4,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["human-construction-envo-00000070.html","human construction"],["cold-environment-envo-01000309.html","cold environment"],["peatland-envo-00000044.html","peatland"]],"b":[["amino_acids_and_peptides/4-formylaminooxyvinylglycine.yaml","4-formylaminooxyvinylglycine"]]},{"id":"NCBITaxon:85698","l":"","na":4,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["amino_acids_and_peptides/alcaligin.yaml","alcaligin"]]},{"id":"NCBITaxon:86667","l":"Jeotgalibacillus marinus","na":1,"nb":4,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"]],"b":[["fatty_acids/macrolactin-1c.yaml","macrolactin 1c"],["fatty_acids/macrolactin-b.yaml","macrolactin B"],["polyketides/macrolactin-e.yaml","macrolactin E"],["polyketides/macrolactin-h.yaml","macrolactin H"]]},{"id":"NCBITaxon:103232","l":"Streptomyces ipomoeae","na":1,"nb":3,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["amino_acids_and_peptides/thaxtomin-c.yaml","thaxtomin C"],["unclassified/thaxtomin-a.yaml","thaxtomin A"],["unclassified/thaxtomin-b.yaml","thaxtomin B"]]},{"id":"NCBITaxon:107635","l":"Methylosinus sp. LW3","na":3,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"]],"b":[["amino_acids_and_peptides/group-1-methanobactin.yaml","group 1 methanobactin"]]},{"id":"NCBITaxon:1570","l":"Halobacillus halophilus","na":3,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:1904","l":"Streptomyces cyaneus","na":1,"nb":3,"a":[["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["carbohydrates/curamycin.yaml","curamycin"],["polyketides/cardol.yaml","cardol"],["polyketides/cosmomycin-d.yaml","cosmomycin D"]]},{"id":"NCBITaxon:1935","l":"Streptomyces violaceoruber","na":1,"nb":3,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["polyketides/granaticin.yaml","granaticin"],["polyketides/kendomycin.yaml","kendomycin"],["terpenoids/methylenomycin-a.yaml","methylenomycin A"]]},{"id":"NCBITaxon:216591","l":"Burkholderia cenocepacia J2315","na":1,"nb":3,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["unclassified/ornibactin-c4.yaml","ornibactin C4"],["unclassified/ornibactin-c6.yaml","ornibactin C6"],["unclassified/ornibactin-c8.yaml","ornibactin C8"]]},{"id":"NCBITaxon:216595","l":"","na":3,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["human-construction-envo-00000070.html","human construction"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["unclassified/viscosin.yaml","viscosin"]]},{"id":"NCBITaxon:237","l":"Flavobacterium","na":3,"nb":1,"a":[["column-bto-0005692.html","column"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"]]},{"id":"NCBITaxon:264951","l":"Paecilomyces variotii","na":1,"nb":3,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["polyketides/agnestin-a.yaml","agnestin A"],["polyketides/agnestin-b.yaml","agnestin B"],["polyketides/viriditoxin.yaml","viriditoxin"]]},{"id":"NCBITaxon:28447","l":"Clavibacter michiganensis","na":3,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["canker-habitatmech-bacdive-0f078d72a7.html","Canker"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["amino_acids_and_peptides/michiganin-a.yaml","michiganin A"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":3,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["sludge-envo-00002044.html","sludge"],["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"NCBITaxon:384676","l":"","na":1,"nb":3,"a":[["coelom-bto-0001707.html","coelom"]],"b":[["alkaloids/labradorin-1.yaml","labradorin 1"],["alkaloids/labradorin-2.yaml","labradorin 2"],["alkaloids/pimprinine.yaml","pimprinine"]]},{"id":"NCBITaxon:388467","l":"Planktothrix agardhii NIVA-CYA 126/8","na":1,"nb":3,"a":[["filament-bto-0000463.html","filament"]],"b":[["amino_acids_and_peptides/anabaenopeptin-908.yaml","anabaenopeptin 908"],["amino_acids_and_peptides/anabaenopeptin-915.yaml","anabaenopeptin 915"],["amino_acids_and_peptides/microcystin.yaml","microcystin"]]},{"id":"NCBITaxon:393595","l":"Alcanivorax borkumensis SK2","na":1,"nb":3,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["amino_acids_and_peptides/amphibactin-e.yaml","amphibactin E"],["amino_acids_and_peptides/amphibactin-h.yaml","amphibactin H"],["fatty_acids/amphibactin-i.yaml","amphibactin I"]]},{"id":"NCBITaxon:448385","l":"","na":1,"nb":3,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["polyketides/etnangien.yaml","etnangien"],["polyketides/soraphen-a.yaml","soraphen A"],["terpenoids/eremophilene.yaml","(+)-eremophilene"]]},{"id":"NCBITaxon:45","l":"Melittangium lichenicola","na":3,"nb":1,"a":[["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["unclassified/melithiazol-a.yaml","melithiazol A"]]},{"id":"NCBITaxon:469371","l":"Thermobispora bispora DSM 43833","na":3,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["amino_acids_and_peptides/thiomuracin.yaml","thiomuracin"]]},{"id":"NCBITaxon:47312","l":"Tsukamurella pulmonis","na":3,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["tuberculosis-habitatmech-bacdive-e5d21f85b7.html","Tuberculosis"]],"b":[["amino_acids_and_peptides/longicatenamide-a.yaml","longicatenamide A"]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":3,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:757424","l":"Herbaspirillum seropedicae SmR1","na":1,"nb":3,"a":[["environmental-material-envo-00010483.html","environmental material"]],"b":[["amino_acids_and_peptides/serobactin-a.yaml","serobactin A"],["amino_acids_and_peptides/serobactin-b.yaml","serobactin B"],["amino_acids_and_peptides/serobactin-c.yaml","serobactin C"]]},{"id":"NCBITaxon:1074049","l":"Candidatus Burkholderia crenata","na":2,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"],["seedling-bto-0001228.html","seedling"]],"b":[["unclassified/fr900359.yaml","FR900359"]]},{"id":"NCBITaxon:1122611","l":"Nonomuraea coxensis DSM 45129","na":1,"nb":2,"a":[["sand-envo-01000017.html","sand"]],"b":[["amino_acids_and_peptides/a50926-a.yaml","A50926 A"],["amino_acids_and_peptides/a50926-b.yaml","A50926 B"]]},{"id":"NCBITaxon:1267754","l":"Corynebacterium urealyticum DSM 7111","na":2,"nb":1,"a":[["kidney-bto-0000671.html","kidney"],["urinary-tract-bto-0001244.html","urinary tract"]],"b":[["amino_acids_and_peptides/corynazolicin.yaml","corynazolicin"]]},{"id":"NCBITaxon:1281","l":"Staphylococcus carnosus","na":2,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["alkaloids/molybdenum-cofactor.yaml","molybdenum cofactor"]]},{"id":"NCBITaxon:1284","l":"Staphylococcus hyicus","na":1,"nb":2,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["unclassified/staphyloferrin-a.yaml","staphyloferrin A"]]},{"id":"NCBITaxon:1360","l":"Lactococcus lactis subsp. lactis","na":1,"nb":2,"a":[["foregut-bto-0000507.html","foregut"]],"b":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"],["amino_acids_and_peptides/nisin-a.yaml","nisin A"]]},{"id":"NCBITaxon:13684","l":"Parastagonospora nodorum","na":2,"nb":1,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["desert-sand-envo-00005800.html","desert sand"]],"b":[["shikimates_and_phenylpropanoids/mellein.yaml","(-)-Mellein"]]},{"id":"NCBITaxon:13689","l":"Sphingomonas paucimobilis","na":2,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"]],"b":[["unclassified/minimycin.yaml","minimycin"]]},{"id":"NCBITaxon:1550035","l":"Streptomyces sp. NBRC 109706","na":1,"nb":2,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["polyketides/akaeolide.yaml","akaeolide"],["polyketides/lorneic-acid-a.yaml","lorneic acid A"]]},{"id":"NCBITaxon:1703","l":"Brevibacterium linens","na":1,"nb":2,"a":[["animal-waste-material-envo-00002276.html","animal waste material"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"],["terpenoids/isorenieratene.yaml","isorenieratene"]]},{"id":"NCBITaxon:173560","l":"Saccharothrix algeriensis","na":1,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["alkaloids/holomycin.yaml","holomycin"],["alkaloids/thiolutin.yaml","thiolutin"]]},{"id":"NCBITaxon:1946","l":"Streptomyces kasugaensis","na":1,"nb":2,"a":[["plain-envo-00000086.html","plain"]],"b":[["alkaloids/thiolutin.yaml","thiolutin"],["carbohydrates/kasugamycin.yaml","kasugamycin"]]},{"id":"NCBITaxon:2014","l":"Nocardiopsis dassonvillei","na":2,"nb":1,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["alkaloids/iodinin.yaml","iodinin"]]},{"id":"NCBITaxon:2045","l":"Nocardioides simplex","na":2,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:205918","l":"Pseudomonas syringae pv. syringae B728a","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["alkaloids/secimide.yaml","secimide"],["unclassified/syringomycin.yaml","syringomycin"]]},{"id":"NCBITaxon:2062","l":"Streptomycetaceae","na":1,"nb":2,"a":[["crop-bto-0000301.html","crop"]],"b":[["alkaloids/carbazomycin-b.yaml","carbazomycin B"],["unclassified/quinomycin.yaml","quinomycin"]]},{"id":"NCBITaxon:234621","l":"Rhodococcus erythropolis PR4","na":1,"nb":2,"a":[["joint-bto-0001686.html","joint"]],"b":[["amino_acids_and_peptides/heterobactin-a.yaml","heterobactin A"],["amino_acids_and_peptides/heterobactin-s2.yaml","heterobactin S2"]]},{"id":"NCBITaxon:249586","l":"Streptomyces cacaoi subsp. asoensis","na":1,"nb":2,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["carbohydrates/polyoxin-a.yaml","polyoxin A"],["carbohydrates/polyoxin-h.yaml","polyoxin H"]]},{"id":"NCBITaxon:263358","l":"Verrucosispora maris AB-18-032","na":1,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["polyketides/abyssomicin-c.yaml","abyssomicin C"],["polyketides/atrop-abyssomicin-c.yaml","atrop-abyssomicin C"]]},{"id":"NCBITaxon:28094","l":"Trinickia caryophylli","na":1,"nb":2,"a":[["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["amino_acids_and_peptides/gramibactin-b.yaml","gramibactin B"],["fatty_acids/caryoynencin.yaml","caryoynencin"]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["carbohydrates/legionaminic-acid.yaml","legionaminic acid"],["carbohydrates/pseudaminate.yaml","pseudaminate"]]},{"id":"NCBITaxon:298386","l":"Photobacterium profundum SS9","na":2,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["underground-water-envo-00005792.html","underground water"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans Pd1222","na":2,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["alkaloids/parabactin.yaml","parabactin"]]},{"id":"NCBITaxon:337330","l":"Lactiplantibacillus plantarum subsp. plantarum","na":2,"nb":1,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:357","l":"Agrobacterium","na":2,"nb":1,"a":[["stem-bto-0001300.html","stem"],["trunk-bto-0001493.html","trunk"]],"b":[["alkaloids/sesbanimide-c.yaml","sesbanimide C"]]},{"id":"NCBITaxon:362242","l":"","na":2,"nb":1,"a":[["subcutaneous-tissue-bto-0004525.html","subcutaneous tissue"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["polyketides/mycolactone-b.yaml","mycolactone B"]]},{"id":"NCBITaxon:36746","l":"Pseudomonas cichorii","na":1,"nb":2,"a":[["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["amino_acids_and_peptides/cichofactin-a.yaml","cichofactin A"],["amino_acids_and_peptides/cichofactin-b.yaml","cichofactin B"]]},{"id":"NCBITaxon:37329","l":"Nocardia farcinica","na":2,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["amino_acids_and_peptides/nocobactin-na.yaml","nocobactin NA"]]},{"id":"NCBITaxon:397945","l":"Acidovorax citrulli AAC00-1","na":1,"nb":2,"a":[["river-bed-envo-00000384.html","river bed"]],"b":[["unclassified/acidobactin-a.yaml","acidobactin A"],["unclassified/acidobactin-b.yaml","acidobactin B"]]},{"id":"NCBITaxon:41899","l":"Burkholderia plantarii","na":2,"nb":1,"a":[["panicle-bto-0005436.html","panicle"],["seedling-bto-0001228.html","seedling"]],"b":[["amino_acids_and_peptides/plantaribactin.yaml","plantaribactin"]]},{"id":"NCBITaxon:42234","l":"Streptomyces acidiscabies","na":1,"nb":2,"a":[["a10-cell-bto-0002196.html","A10 cell"]],"b":[["fatty_acids/butyrolactone.yaml","γ-butyrolactone"],["unclassified/thaxtomin-a.yaml","thaxtomin A"]]},{"id":"NCBITaxon:443906","l":"Clavibacter michiganensis subsp. michiganensis NCPPB 382","na":2,"nb":1,"a":[["xylem-bto-0001468.html","xylem"],["peatland-envo-00000044.html","peatland"]],"b":[["amino_acids_and_peptides/michiganin-a.yaml","michiganin A"]]},{"id":"NCBITaxon:4558","l":"Sorghum bicolor","na":1,"nb":2,"a":[["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["amino_acids_and_peptides/s-4-hydroxymandelonitrile-d-glucoside.yaml","(S)-4-hydroxymandelonitrile β-D-glucoside"],["shikimates_and_phenylpropanoids/alternariol.yaml","alternariol"]]},{"id":"NCBITaxon:457429","l":"","na":1,"nb":2,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["amino_acids_and_peptides/pristinin-a3.yaml","pristinin A3"],["terpenoids/2s-3r-9r-pristinol.yaml","(+)-(2S,3R,9R)-pristinol"]]},{"id":"NCBITaxon:47917","l":"Serratia fonticola","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"]],"b":[["alkaloids/1-6-phenazinedimethanol.yaml","1,6-phenazinedimethanol"]]},{"id":"NCBITaxon:497965","l":"","na":2,"nb":1,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["fatty_acids/1-heptadecene.yaml","1-heptadecene"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":1,"nb":2,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["amino_acids_and_peptides/aerobactin.yaml","aerobactin"],["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:58340","l":"Streptomyces lavendulae subsp. lavendulae","na":1,"nb":2,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["amino_acids_and_peptides/cycloserine.yaml","cycloserine"],["polyketides/auricin.yaml","auricin"]]},{"id":"NCBITaxon:587","l":"Providencia rettgeri","na":2,"nb":1,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["fumarole-envo-00000216.html","fumarole"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:60550","l":"Burkholderia pyrrocinia","na":1,"nb":2,"a":[["seedling-bto-0001228.html","seedling"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/occidiofungin-a.yaml","occidiofungin A"]]},{"id":"NCBITaxon:60894","l":"Saccharopolyspora spinosa","na":1,"nb":2,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["polyketides/a83543a.yaml","A83543A"],["polyketides/spinosyn-d.yaml","spinosyn D"]]},{"id":"NCBITaxon:648","l":"Aeromonas caviae","na":2,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:65","l":"Herpetosiphon aurantiacus","na":1,"nb":2,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["alkaloids/auriculamide.yaml","auriculamide"],["terpenoids/o-methylkolavelool.yaml","(+)-O-methylkolavelool"]]},{"id":"NCBITaxon:67274","l":"Streptomyces argenteolus","na":1,"nb":2,"a":[["plain-envo-00000086.html","plain"]],"b":[["amino_acids_and_peptides/carbapenem-mm4550.yaml","carbapenem MM4550"],["terpenoids/ks-505a.yaml","KS-505a"]]},{"id":"NCBITaxon:68042","l":"Streptomyces hygroscopicus subsp. hygroscopicus","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["terpenoids/hygromycin-a.yaml","hygromycin A"]]},{"id":"NCBITaxon:68170","l":"Lechevalieria aerocolonigenes","na":1,"nb":2,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["alkaloids/rebeccamycin.yaml","rebeccamycin"],["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:68203","l":"Streptomyces fungicidicus","na":1,"nb":2,"a":[["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["unclassified/enduracidin-a.yaml","enduracidin A"],["unclassified/enduracidin-b.yaml","enduracidin B"]]},{"id":"NCBITaxon:71999","l":"Kocuria palustris","na":2,"nb":1,"a":[["duodenal-mucosa-bto-0000367.html","duodenal mucosa"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"]],"b":[["amino_acids_and_peptides/kocurin.yaml","kocurin"]]},{"id":"NCBITaxon:720","l":"Actinobacillus lignieresii","na":2,"nb":1,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["unclassified/capsular-polysaccharide.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:80866","l":"Delftia acidovorans","na":1,"nb":2,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["amino_acids_and_peptides/delftibactin-a.yaml","delftibactin A"],["amino_acids_and_peptides/delftibactin-b.yaml","delftibactin B"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":2,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["fatty_acids/galactosylceramide.yaml","α-galactosylceramide"]]},{"id":"NCBITaxon:88728","l":"Pinus koraiensis","na":2,"nb":1,"a":[["lagoon-envo-00000038.html","lagoon"],["tropical-envo-01000204.html","tropical"]],"b":[["terpenoids/koraiol.yaml","koraiol"]]},{"id":"NCBITaxon:9031","l":"Gallus gallus","na":2,"nb":1,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:92743","l":"Streptomyces rimosus subsp. paromomycinus","na":1,"nb":2,"a":[["plain-envo-00000086.html","plain"]],"b":[["amino_acids_and_peptides/malonomycin.yaml","malonomycin"],["carbohydrates/paromomycin.yaml","paromomycin"]]},{"id":"NCBITaxon:1004","l":"Chitinophaga sancti","na":1,"nb":1,"a":[["plant-bto-0001481.html","plant"]],"b":[["polyketides/elansolid-a1.yaml","elansolid A1"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"]]},{"id":"NCBITaxon:1077944","l":"Streptomyces muensis","na":1,"nb":1,"a":[["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["unclassified/griselimycin.yaml","griselimycin"]]},{"id":"NCBITaxon:1091494","l":"Methylotuvimicrobium alcaliphilum 20Z","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:1108595","l":"Chromobacterium vaccinii","na":1,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["unclassified/fr900359-2.yaml","FR900359"]]},{"id":"NCBITaxon:111781","l":"Leptolyngbya sp. PCC 7376","na":1,"nb":1,"a":[["rock-envo-00001995.html","rock"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"]]},{"id":"NCBITaxon:111807","l":"Actinomadura yumaensis","na":1,"nb":1,"a":[["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["polyketides/maduramicin.yaml","maduramicin"]]},{"id":"NCBITaxon:1137255","l":"Salinispora arenicola CNT005","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["unclassified/retimycin-a.yaml","retimycin A"]]},{"id":"NCBITaxon:114497","l":"Cordyceps fumosorosea","na":1,"nb":1,"a":[["low-tide-zone-envo-00000319.html","low tide zone"]],"b":[["polyketides/fumosorinone.yaml","fumosorinone"]]},{"id":"NCBITaxon:1200302","l":"Photobacterium damselae subsp. piscicida DI21","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["alkaloids/piscibactin.yaml","piscibactin"]]},{"id":"NCBITaxon:1293","l":"Staphylococcus gallinarum","na":1,"nb":1,"a":[["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["amino_acids_and_peptides/gallidermin.yaml","gallidermin"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["alkaloids/petrobactin.yaml","petrobactin"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:1599","l":"Latilactobacillus sakei","na":1,"nb":1,"a":[["research-facility-envo-00000469.html","research facility"]],"b":[["unclassified/lactocin-s.yaml","lactocin S"]]},{"id":"NCBITaxon:173365","l":"Methylobacter tundripaludum","na":1,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["unclassified/tundrenone.yaml","tundrenone"]]},{"id":"NCBITaxon:1989","l":"Actinomadura sp.","na":1,"nb":1,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["polyketides/maduramicin.yaml","maduramicin"]]},{"id":"NCBITaxon:1993","l":"Actinomadura madurae","na":1,"nb":1,"a":[["foot-bto-0000476.html","foot"]],"b":[["polyketides/maduropeptin.yaml","maduropeptin"]]},{"id":"NCBITaxon:2074","l":"Pseudonocardia autotrophica","na":1,"nb":1,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["polyketides/nystatin-like-pseudonocardia-polyene-a1.yaml","nystatin-like Pseudonocardia polyene A1"]]},{"id":"NCBITaxon:216895","l":"Vibrio vulnificus CMCP6","na":1,"nb":1,"a":[["hela-cell-bto-0000567.html","HeLa cell"]],"b":[["alkaloids/vulnibactin.yaml","vulnibactin"]]},{"id":"NCBITaxon:22","l":"Shewanella","na":1,"nb":1,"a":[["wood-bto-0005516.html","wood"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"NCBITaxon:226","l":"Alteromonas","na":1,"nb":1,"a":[["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["unclassified/marinostatin.yaml","marinostatin"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":1,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["alkaloids/parabactin.yaml","parabactin"]]},{"id":"NCBITaxon:267747","l":"Cutibacterium acnes KPA171202","na":1,"nb":1,"a":[["sebaceous-gland-bto-0001980.html","sebaceous gland"]],"b":[["amino_acids_and_peptides/cutimycin.yaml","cutimycin"]]},{"id":"NCBITaxon:28035","l":"Staphylococcus lugdunensis","na":1,"nb":1,"a":[["foot-bto-0000476.html","foot"]],"b":[["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]]},{"id":"NCBITaxon:28450","l":"Burkholderia pseudomallei","na":1,"nb":1,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"]],"b":[["polyketides/malleilactone.yaml","malleilactone"]]},{"id":"NCBITaxon:285482","l":"Streptomyces tsusimaensis","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["unclassified/valinomycin-2.yaml","valinomycin"]]},{"id":"NCBITaxon:29447","l":"Xanthomonas albilineans","na":1,"nb":1,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["alkaloids/albicidin.yaml","albicidin"]]},{"id":"NCBITaxon:298653","l":"Frankia sp. EAN1pec","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["polyketides/frankiamicin.yaml","frankiamicin"]]},{"id":"NCBITaxon:299254","l":"Streptomyces sp. NRRL 11266","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["polyketides/tetronomycin.yaml","tetronomycin"]]},{"id":"NCBITaxon:307120","l":"Micromonospora marina","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["unclassified/thiocoraline.yaml","thiocoraline"]]},{"id":"NCBITaxon:312309","l":"Aliivibrio fischeri (strain ATCC 700601 / ES114)","na":1,"nb":1,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["unclassified/ape-vf.yaml","APE Vf"]]},{"id":"NCBITaxon:322710","l":"","na":1,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["amino_acids_and_peptides/azotobactin-d.yaml","azotobactin D"]]},{"id":"NCBITaxon:333964","l":"Xenorhabdus indica","na":1,"nb":1,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["unclassified/taxlllaid-a.yaml","taxlllaid A"]]},{"id":"NCBITaxon:33915","l":"Saccharopolyspora sp.","na":1,"nb":1,"a":[["forested-area-envo-00000111.html","forested area"]],"b":[["amino_acids_and_peptides/kyamicin.yaml","kyamicin"]]},{"id":"NCBITaxon:349521","l":"","na":1,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["alkaloids/prodigiosin-2.yaml","prodigiosin"]]},{"id":"NCBITaxon:349725","l":"Micromonospora sp. ML1","na":1,"nb":1,"a":[["clay-envo-00002982.html","clay"]],"b":[["unclassified/thiocoraline.yaml","thiocoraline"]]},{"id":"NCBITaxon:3654","l":"Citrullus lanatus","na":1,"nb":1,"a":[["wood-bto-0005516.html","wood"]],"b":[["fatty_acids/butyrolactone.yaml","γ-butyrolactone"]]},{"id":"NCBITaxon:376686","l":"Flavobacterium johnsoniae (strain ATCC 17061 / DSM 2064 / JCM 8514 / BCRC 14874 / CCUG 350202 / NBRC 14942 / NCIMB 11054 / UW101)","na":1,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["polyketides/flexirubin.yaml","flexirubin"]]},{"id":"NCBITaxon:38313","l":"Shewanella algae","na":1,"nb":1,"a":[["foot-bto-0000476.html","foot"]],"b":[["amino_acids_and_peptides/avaroferrin.yaml","avaroferrin"]]},{"id":"NCBITaxon:384","l":"Rhizobium leguminosarum","na":1,"nb":1,"a":[["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["amino_acids_and_peptides/vicibactin.yaml","vicibactin"]]},{"id":"NCBITaxon:394193","l":"Amycolatopsis saalfeldensis","na":1,"nb":1,"a":[["cave-envo-00000067.html","cave"]],"b":[["amino_acids_and_peptides/saalfelduracin.yaml","saalfelduracin"]]},{"id":"NCBITaxon:40223","l":"Methylophaga thalassica","na":1,"nb":1,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:4113","l":"Solanum tuberosum","na":1,"nb":1,"a":[["tuber-bto-0001400.html","tuber"]],"b":[["fatty_acids/itaconic-acid.yaml","itaconic acid"]]},{"id":"NCBITaxon:41276","l":"Brevundimonas vesicularis","na":1,"nb":1,"a":[["forested-area-envo-00000111.html","forested area"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:43769","l":"Corynebacterium propinquum","na":1,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["amino_acids_and_peptides/dehydroxynocardamine.yaml","dehydroxynocardamine"]]},{"id":"NCBITaxon:446787","l":"","na":1,"nb":1,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"]]},{"id":"NCBITaxon:45071","l":"Legionella parisiensis","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["shikimates_and_phenylpropanoids/legioliulin.yaml","legioliulin"]]},{"id":"NCBITaxon:4513","l":"Hordeum vulgare","na":1,"nb":1,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["unclassified/roquefortine-c.yaml","roquefortine C"]]},{"id":"NCBITaxon:452652","l":"Kitasatospora setae KM-6054","na":1,"nb":1,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["alkaloids/kitasetaline.yaml","kitasetaline"]]},{"id":"NCBITaxon:463","l":"Fluoribacter dumoffii","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["shikimates_and_phenylpropanoids/legioliulin.yaml","legioliulin"]]},{"id":"NCBITaxon:488447","l":"Burkholderia contaminans","na":1,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["amino_acids_and_peptides/occidiofungin-a.yaml","occidiofungin A"]]},{"id":"NCBITaxon:512","l":"Alcaligenes sp","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["polyketides/kalimantacin-a.yaml","kalimantacin A"]]},{"id":"NCBITaxon:53409","l":"Pseudomonas coronafaciens","na":1,"nb":1,"a":[["pc-12-cell-bto-0001009.html","PC-12 cell"]],"b":[["polyketides/coronatine.yaml","coronatine"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":1,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:547","l":"Enterobacter","na":1,"nb":1,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["amino_acids_and_peptides/andrimid.yaml","andrimid"]]},{"id":"NCBITaxon:570268","l":"Nocardiopsis potens DSM 45234","na":1,"nb":1,"a":[["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"]],"b":[["amino_acids_and_peptides/potensibactin.yaml","potensibactin"]]},{"id":"NCBITaxon:591158","l":"Streptomyces sp. AA4","na":1,"nb":1,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["amino_acids_and_peptides/amychelin-a.yaml","amychelin A"]]},{"id":"NCBITaxon:60890","l":"","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["shikimates_and_phenylpropanoids/tropodithietic-acid.yaml","tropodithietic acid"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":1,"nb":1,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["unclassified/ape-vf.yaml","APE Vf"]]},{"id":"NCBITaxon:68175","l":"Streptomyces antimycoticus","na":1,"nb":1,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["terpenoids/napyradiomycin.yaml","napyradiomycin"]]},{"id":"NCBITaxon:68242","l":"Streptomyces natalensis","na":1,"nb":1,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["polyketides/natamycin.yaml","natamycin"]]},{"id":"NCBITaxon:69485","l":"Actinoplanes garbadinensis","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["amino_acids_and_peptides/actagardine.yaml","actagardine"]]},{"id":"NCBITaxon:703577","l":"Dactylosporangium aurantiacum subsp. hamdenensis","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["polyketides/tiacumicin-b.yaml","tiacumicin B"]]},{"id":"NCBITaxon:715","l":"Actinobacillus pleuropneumoniae","na":1,"nb":1,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["unclassified/capsular-polysaccharide.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["unclassified/lysocin-e.yaml","lysocin E"]]},{"id":"NCBITaxon:749414","l":"","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["polyketides/nanchangmycin.yaml","nanchangmycin"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":1,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["unclassified/mycobactin.yaml","mycobactin"]]},{"id":"NCBITaxon:85336","l":"Rothia nasimurium","na":1,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"]],"b":[["unclassified/valinomycin-2.yaml","valinomycin"]]}]} \ No newline at end of file +{"a":"HabitatMech","b":"NaturalProductMech","base":{"HabitatMech":"https://culturebotai.github.io/HabitatMech/pages/habitats/","NaturalProductMech":"https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/natural_products/"},"n":312,"by":{"NCBITaxon":312},"terms":[{"id":"NCBITaxon:56","l":"Sorangium cellulosum","na":27,"nb":25,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["watercourse-envo-00000029.html","watercourse"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["amino_acids_and_peptides/microsclerodermin-m.yaml","microsclerodermin M"],["polyketides/ambruticin.yaml","ambruticin"],["polyketides/chivosazol.yaml","chivosazol"],["polyketides/chlorotonil-a.yaml","chlorotonil A"],["polyketides/disorazol-a.yaml","disorazol A"],["polyketides/etnangien.yaml","etnangien"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":36,"nb":24,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["bay-envo-00000032.html","bay"],["freshwater-biome-envo-00000873.html","freshwater biome"],["liquid-water-envo-00002006.html","liquid water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":19,"nb":116,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["saline-water-body-envo-01001319.html","saline water body"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["alkaloids/altemicidin.yaml","altemicidin"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"],["alkaloids/aurachin-ss.yaml","aurachin SS"],["alkaloids/berninamycin-j.yaml","berninamycin J"],["alkaloids/berninamycin-k.yaml","berninamycin K"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":18,"nb":27,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["alkaloids/pseudomonine.yaml","pseudomonine"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyreudione-c.yaml","pyreudione C"],["alkaloids/quinolobactin.yaml","quinolobactin"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":14,"nb":31,"a":[["watercourse-envo-00000029.html","watercourse"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["leaf-po-0025034.html","leaf"]],"b":[["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["alkaloids/myxofacycline-e.yaml","myxofacycline E"],["alkaloids/myxofacycline-f.yaml","myxofacycline F"],["alkaloids/myxofacycline-g.yaml","myxofacycline G"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":27,"nb":13,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["watercourse-envo-00000029.html","watercourse"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["egg-food-product-foodon-00001274.html","egg food product"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"]],"b":[["unclassified/bananamide-d.yaml","bananamide D"],["unclassified/bananamide-e.yaml","bananamide E"],["unclassified/bananamide-f.yaml","bananamide F"],["unclassified/bananamide-g.yaml","bananamide G"],["unclassified/lokisin.yaml","lokisin"],["unclassified/pseudodesmin-a.yaml","pseudodesmin A"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":28,"nb":12,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["liquid-water-envo-00002006.html","liquid water"],["watercourse-envo-00000029.html","watercourse"],["compost-envo-00002170.html","compost"],["hospital-envo-00002173.html","hospital"],["human-construction-envo-00000070.html","human construction"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:286","l":"Pseudomonas","na":10,"nb":41,"a":[["heart-bto-0000562.html","heart"],["juvenile-bto-0002168.html","juvenile"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"],["pseudostem-bto-0005992.html","pseudostem"]],"b":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["alkaloids/tioguanine.yaml","tioguanine"],["amino_acids_and_peptides/napsamycin-c.yaml","napsamycin C"],["amino_acids_and_peptides/napsamycin-d.yaml","napsamycin D"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":10,"nb":16,"a":[["anther-bto-0000079.html","anther"],["epithelial-cell-bto-0000414.html","epithelial cell"],["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["amino_acids_and_peptides/ericin-s.yaml","ericin S"],["amino_acids_and_peptides/iturin.yaml","iturin"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"]]},{"id":"NCBITaxon:1386","l":"Bacillus","na":19,"nb":9,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["crop-bto-0000301.html","crop"],["dorsum-bto-0001713.html","dorsum"],["hand-bto-0004668.html","hand"],["head-bto-0000282.html","head"],["juvenile-bto-0002168.html","juvenile"]],"b":[["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bogorol-a.yaml","bogorol A"],["amino_acids_and_peptides/koranimine.yaml","koranimine"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"],["amino_acids_and_peptides/rhizocticin-a.yaml","rhizocticin A"],["polyketides/difficidin.yaml","difficidin"]]},{"id":"NCBITaxon:1464","l":"Paenibacillus larvae","na":10,"nb":8,"a":[["surface-water-envo-00002042.html","surface water"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["carcass-envo-00002033.html","carcass"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"],["sludge-envo-00002044.html","sludge"]],"b":[["alkaloids/paenilamicin-a2.yaml","paenilamicin A2"],["alkaloids/paenilamicin-b1.yaml","paenilamicin B1"],["alkaloids/paenilamicin-b2.yaml","paenilamicin B2"],["alkaloids/paenilamicin.yaml","paenilamicin"],["amino_acids_and_peptides/paenilarvin-a.yaml","paenilarvin A"],["amino_acids_and_peptides/paenilarvin-b.yaml","paenilarvin B"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":8,"nb":10,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["alkaloids/labradorin-1.yaml","labradorin 1"],["alkaloids/labradorin-2.yaml","labradorin 2"],["alkaloids/secimide.yaml","secimide"],["amino_acids_and_peptides/phaseolotoxin.yaml","phaseolotoxin"],["amino_acids_and_peptides/syringolin-a.yaml","syringolin A"],["amino_acids_and_peptides/tabtoxin.yaml","tabtoxin"]]},{"id":"NCBITaxon:1876","l":"Micromonospora sp.","na":7,"nb":9,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["marine-water-body-envo-00001999.html","marine water body"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["sludge-envo-00002044.html","sludge"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["polyketides/quinolidomicin-a.yaml","quinolidomicin A"],["polyketides/sungeidine-c.yaml","sungeidine C"],["polyketides/sungeidine-f.yaml","sungeidine F"],["polyketides/sungeidine-g.yaml","sungeidine G"],["shikimates_and_phenylpropanoids/sungeidine-d.yaml","sungeidine D"],["unclassified/sungeidine-a.yaml","sungeidine A"]]},{"id":"NCBITaxon:67263","l":"Streptomyces griseus subsp. griseus","na":6,"nb":7,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["laboratory-facility-envo-01001406.html","laboratory facility"],["clay-envo-00002982.html","clay"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["alkaloids/indolmycin.yaml","indolmycin"],["polyketides/chromomycin-a3.yaml","chromomycin A3"],["polyketides/dinactin.yaml","dinactin"],["polyketides/monactin.yaml","monactin"],["polyketides/nonactin.yaml","nonactin"],["polyketides/tetranactin.yaml","tetranactin"]]},{"id":"NCBITaxon:1269","l":"Micrococcus","na":6,"nb":6,"a":[["cecum-bto-0000166.html","cecum"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["saliva-bto-0001202.html","saliva"],["tongue-bto-0001385.html","tongue"]],"b":[["alkaloids/limazepine-a.yaml","limazepine A"],["alkaloids/limazepine-c.yaml","limazepine C"],["alkaloids/limazepine-d.yaml","limazepine D"],["alkaloids/limazepine-e.yaml","limazepine E"],["alkaloids/limazepine-f.yaml","limazepine F"],["terpenoids/mk-8.yaml","MK-8"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":40,"nb":5,"a":[["liquid-water-envo-00002006.html","liquid water"],["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["laboratory-facility-envo-01001406.html","laboratory facility"],["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["biofilm-bto-0002690.html","biofilm"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"],["unclassified/leuvalin.yaml","leuvalin"],["unclassified/phevalin.yaml","phevalin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":11,"nb":5,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["resting-cell-bto-0001170.html","resting cell"],["seedling-bto-0001228.html","seedling"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["alkaloids/promysalin.yaml","promysalin"],["polyketides/pseudopyronine-a.yaml","pseudopyronine A"],["polyketides/pseudopyronine-b.yaml","pseudopyronine B"],["unclassified/putisolvin-iii.yaml","putisolvin III"],["unclassified/putisolvin-v.yaml","putisolvin V"]]},{"id":"NCBITaxon:10090","l":"Mus musculus","na":8,"nb":5,"a":[["river-envo-00000022.html","river"],["animal-manure-envo-00003031.html","animal manure"],["biotope-envo-00002036.html","biotope"],["intestine-environment-envo-2100002.html","intestine environment"],["urban-biome-envo-01000249.html","urban biome"],["sediment-envo-00002007.html","sediment"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"],["terpenoids/carotene.yaml","β-carotene"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":5,"nb":5,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["pseudostem-bto-0005992.html","pseudostem"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/andrimid.yaml","andrimid"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/pantocin-a.yaml","pantocin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":5,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"],["midgut-bto-0000863.html","midgut"],["paddy-field-envo-00000297.html","paddy field"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["alkaloids/prodigiosin-2.yaml","prodigiosin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/serratiochelin-a.yaml","serratiochelin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["polyketides/oocydin-a.yaml","oocydin A"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":27,"nb":4,"a":[["small-river-biome-envo-00000890.html","small river biome"],["factory-envo-01000536.html","factory"],["organic-waste-material-envo-00002873.html","organic waste material"],["leaf-po-0025034.html","leaf"],["milk-uberon-0001913.html","milk"],["rhizosphere-envo-00005801.html","rhizosphere"]],"b":[["alkaloids/zwittermicin-a.yaml","zwittermicin A"],["amino_acids_and_peptides/livipeptin.yaml","Livipeptin"],["carbohydrates/tunicamycin.yaml","tunicamycin"],["unclassified/cereulide.yaml","cereulide"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":4,"nb":23,"a":[["bioreactor-envo-00002123.html","bioreactor"],["human-construction-envo-00000070.html","human construction"],["sediment-envo-00002007.html","sediment"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/melanin.yaml","melanin"],["alkaloids/undecylprodigiosin.yaml","undecylprodigiosin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/sapb.yaml","SapB"]]},{"id":"NCBITaxon:378806","l":"Stigmatella aurantiaca DW4/3-1","na":4,"nb":17,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["orchard-envo-00000115.html","orchard"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["polyketides/aurafuron-a.yaml","aurafuron A"],["polyketides/dawenol.yaml","dawenol"],["unclassified/dkxanthene-504.yaml","dkxanthene 504"],["unclassified/dkxanthene-508.yaml","dkxanthene 508"],["unclassified/dkxanthene-518.yaml","dkxanthene 518"],["unclassified/dkxanthene-520.yaml","dkxanthene 520"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":13,"nb":4,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["neutrophil-bto-0000130.html","neutrophil"],["rectum-bto-0001158.html","rectum"],["spleen-bto-0001281.html","spleen"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["alkaloids/tilivalline.yaml","tilivalline"],["amino_acids_and_peptides/colibactin.yaml","colibactin"],["amino_acids_and_peptides/klebsidin.yaml","klebsidin"],["carbohydrates/capsular-polysaccharide-2.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:1397","l":"Niallia circulans","na":12,"nb":4,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["organic-waste-material-envo-00002873.html","organic waste material"],["rhizosphere-envo-00005801.html","rhizosphere"],["cultivated-environment-envo-01000311.html","cultivated environment"],["sludge-envo-00002044.html","sludge"]],"b":[["carbohydrates/butirosin-a.yaml","butirosin A"],["carbohydrates/butirosin-b.yaml","butirosin B"],["carbohydrates/butirosin.yaml","butirosin"],["unclassified/pelgipeptin-b.yaml","Pelgipeptin B"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":10,"nb":4,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["air-conditioning-unit-envo-00002874.html","air conditioning unit"],["leaf-bto-0000713.html","leaf"],["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["unclassified/vacidobactin-a.yaml","vacidobactin A"],["unclassified/vacidobactin-b.yaml","vacidobactin B"],["unclassified/variobactin-a.yaml","variobactin A"],["unclassified/variobactin-b.yaml","variobactin B"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae (strain ATCC 42149 / RIB 40)","na":4,"nb":10,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["mountain-pass-envo-00000084.html","mountain pass"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["fatty_acids/oryzine-a.yaml","oryzine A"],["polyketides/kojic-acid.yaml","kojic acid"],["polyketides/oryzine-b.yaml","oryzine B"],["polyketides/ywa1.yaml","YWA1"],["shikimates_and_phenylpropanoids/2-4-dihydroxy-3-methoxypropiophenone.yaml","2,4'-dihydroxy-3'-methoxypropiophenone"],["shikimates_and_phenylpropanoids/8-methyldiaporthin.yaml","8-methyldiaporthin"]]},{"id":"NCBITaxon:10116","l":"Rattus norvegicus","na":9,"nb":4,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["biotope-envo-00002036.html","biotope"],["farm-envo-00000078.html","farm"],["intestine-environment-envo-2100002.html","intestine environment"],["organic-material-envo-01000155.html","organic material"]],"b":[["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/methylarcyriarubin.yaml","methylarcyriarubin"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]]},{"id":"NCBITaxon:83451","l":"Archangium violaceum","na":7,"nb":4,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["wood-bto-0005516.html","wood"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["plant-litter-envo-01000628.html","plant litter"],["sand-envo-01000017.html","sand"]],"b":[["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["alkaloids/myxochelin-n.yaml","myxochelin N"],["alkaloids/myxochelin-o.yaml","myxochelin O"]]},{"id":"NCBITaxon:1930","l":"Streptomyces scabiei","na":4,"nb":6,"a":[["a10-cell-bto-0002196.html","A10 cell"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"],["amino_acids_and_peptides/thaxtomin-c.yaml","thaxtomin C"],["polyketides/oronofacic-acid.yaml","oronofacic acid"],["unclassified/n-coronafacoyl-l-isoleucine.yaml","N-coronafacoyl-L-isoleucine"],["unclassified/thaxtomin-a.yaml","thaxtomin A"],["unclassified/thaxtomin-b.yaml","thaxtomin B"]]},{"id":"NCBITaxon:1393","l":"Brevibacillus brevis","na":5,"nb":4,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["alkaloids/ulbactin-f.yaml","ulbactin F"],["alkaloids/ulbactin-g.yaml","ulbactin G"],["amino_acids_and_peptides/gramicidin.yaml","gramicidin"],["amino_acids_and_peptides/tyrocidine-a.yaml","tyrocidine A"]]},{"id":"NCBITaxon:479432","l":"Streptosporangium roseum DSM 43021","na":4,"nb":5,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"],["vegetable-garden-soil-envo-00005779.html","vegetable garden soil"]],"b":[["polyketides/benaphthamycin.yaml","benaphthamycin"],["polyketides/ws-79089a.yaml","WS 79089A"],["polyketides/ws-79089b.yaml","WS 79089B"],["polyketides/ws-79089c.yaml","WS 79089C"],["polyketides/ws-79089d.yaml","WS 79089D"]]},{"id":"NCBITaxon:39947","l":"Oryza sativa subsp. japonica","na":4,"nb":4,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["large-river-biome-envo-00000887.html","large river biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"],["river-bed-envo-00000384.html","river bed"]],"b":[["terpenoids/10-oxodepressin.yaml","10-Oxodepressin"],["terpenoids/momilactone-b.yaml","momilactone B"],["terpenoids/oryzalides.yaml","oryzalides"],["terpenoids/phytocassane.yaml","phytocassane"]]},{"id":"NCBITaxon:184914","l":"Corallococcus coralloides","na":35,"nb":3,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["watercourse-envo-00000029.html","watercourse"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["amino_acids_and_peptides/myxovalargin-a.yaml","myxovalargin A"],["polyketides/corallopyronin.yaml","corallopyronin"],["polyketides/phenalamide.yaml","phenalamide"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":25,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-water-body-envo-00001999.html","marine water body"],["sea-water-envo-00002149.html","sea water"],["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["amino_acids_and_peptides/epidermin.yaml","epidermin"],["amino_acids_and_peptides/epilancin-15x.yaml","epilancin 15x"],["amino_acids_and_peptides/pep5.yaml","pep5"]]},{"id":"NCBITaxon:54","l":"Nannocystis exedens","na":22,"nb":3,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["watercourse-envo-00000029.html","watercourse"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["polyketides/phenylnannolone-a.yaml","phenylnannolone A"],["polyketides/phenylnannolone-b.yaml","phenylnannolone B"],["polyketides/phenylnannolone-c.yaml","phenylnannolone C"]]},{"id":"NCBITaxon:33","l":"Myxococcus fulvus","na":21,"nb":3,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"]],"b":[["unclassified/fulvuthiacene-a.yaml","Fulvuthiacene A"],["unclassified/fulvuthiacene-b.yaml","Fulvuthiacene B"],["unclassified/myxothiazol.yaml","myxothiazol"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":17,"nb":3,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["fruit-bto-0000486.html","fruit"],["leaf-po-0025034.html","leaf"],["rhizosphere-envo-00005801.html","rhizosphere"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["amino_acids_and_peptides/polymyxin-b.yaml","polymyxin B"],["amino_acids_and_peptides/polymyxin.yaml","polymyxin"],["unclassified/fusaricidin-b.yaml","fusaricidin B"]]},{"id":"NCBITaxon:1654","l":"Actinomyces","na":3,"nb":13,"a":[["hand-bto-0004668.html","hand"],["vaginal-fluid-bto-0003084.html","vaginal fluid"],["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["alkaloids/lynamicin-a.yaml","lynamicin A"],["alkaloids/lynamicin-d.yaml","lynamicin D"],["amino_acids_and_peptides/cephamycin-c.yaml","cephamycin C"],["amino_acids_and_peptides/glycinocin-a.yaml","glycinocin A"],["carbohydrates/cetoniacytone-a.yaml","cetoniacytone A"],["polyketides/4-hexadecanoyl-3-hydroxy-2-hydroxymethyl-2h-furan-5-one.yaml","4-hexadecanoyl-3-hydroxy-2-(hydroxymethyl)-2H-furan-5-one"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":3,"nb":13,"a":[["city-envo-00000856.html","city"],["cold-environment-envo-01000309.html","cold environment"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/congocidine.yaml","congocidine"],["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK1622","na":3,"nb":12,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"],["amino_acids_and_peptides/myxochromide-a.yaml","myxochromide A"],["amino_acids_and_peptides/myxoprincomide-c506.yaml","myxoprincomide-c506"]]},{"id":"NCBITaxon:28095","l":"Burkholderia gladioli","na":3,"nb":12,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["alkaloids/gladiofungin-a.yaml","gladiofungin A"],["alkaloids/gladiofungin-b.yaml","gladiofungin B"],["alkaloids/toxoflavin.yaml","toxoflavin"],["amino_acids_and_peptides/arsinothricin.yaml","arsinothricin"],["amino_acids_and_peptides/bolagladin-a.yaml","bolagladin A"],["fatty_acids/bongkrekic-acid-2.yaml","bongkrekic acid"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":11,"nb":3,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["fermentation-starter-envo-03600040.html","fermentation starter"],["fruit-bto-0000486.html","fruit"],["mammary-epithelial-cell-bto-0004300.html","mammary epithelial cell"],["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"],["amino_acids_and_peptides/lacticin-z.yaml","lacticin Z"],["amino_acids_and_peptides/nisin-a.yaml","nisin A"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":3,"nb":10,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["amino_acids_and_peptides/lipopeptide-8d1-1.yaml","lipopeptide 8D1-1"],["amino_acids_and_peptides/lipopeptide-8d1-2.yaml","lipopeptide 8D1-2"],["carbohydrates/amicetin.yaml","amicetin"],["carbohydrates/streptothricin-c.yaml","streptothricin C"],["carbohydrates/streptothricin-d.yaml","streptothricin D"],["carbohydrates/streptothricin-e.yaml","streptothricin E"]]},{"id":"NCBITaxon:38","l":"Archangium disciforme","na":7,"nb":3,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["feces-uberon-0001988.html","feces"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["wood-bto-0005516.html","wood"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["alkaloids/myxochelin-a.yaml","myxochelin A"],["amino_acids_and_peptides/tubulysin-a.yaml","tubulysin A"],["amino_acids_and_peptides/tubulysin-h.yaml","tubulysin H"]]},{"id":"NCBITaxon:83460","l":"Allostigmatella erecta","na":7,"nb":3,"a":[["feces-uberon-0001988.html","feces"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["plant-litter-envo-01000628.html","plant litter"],["sand-envo-01000017.html","sand"]],"b":[["alkaloids/aurachin-a.yaml","aurachin A"],["alkaloids/aurachin-c.yaml","aurachin C"],["unclassified/myxochromide-d.yaml","myxochromide D"]]},{"id":"NCBITaxon:32008","l":"Burkholderia","na":3,"nb":6,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["midgut-bto-0000863.html","midgut"]],"b":[["polyketides/necroxime-a.yaml","necroxime A"],["polyketides/necroxime-c.yaml","necroxime C"],["polyketides/necroxime-d.yaml","necroxime D"],["polyketides/thailanstatin-a.yaml","thailanstatin A"],["unclassified/necroxime-b.yaml","necroxime B"],["unclassified/spliceostatin.yaml","spliceostatin"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":5,"nb":3,"a":[["liquid-water-envo-00002006.html","liquid water"],["food-spoiled-foodon-00003366.html","food (spoiled)"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"]],"b":[["alkaloids/cepaciachelin.yaml","cepaciachelin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["terpenoids/hopene.yaml","hopene"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":4,"nb":3,"a":[["stream-envo-00000023.html","stream"],["biome-envo-00000428.html","biome"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["unclassified/leuvalin.yaml","leuvalin"],["unclassified/mutanocyclin.yaml","mutanocyclin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:1120925","l":"Acinetobacter bouvetii DSM 14964 = CIP 107468","na":3,"nb":3,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["alkaloids/butanochelin.yaml","butanochelin"],["alkaloids/pentanochelin.yaml","pentanochelin"],["alkaloids/propanochelin.yaml","propanochelin"]]},{"id":"NCBITaxon:1833","l":"Rhodococcus erythropolis","na":3,"nb":3,"a":[["watercourse-envo-00000029.html","watercourse"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"],["water-scum-envo-00005794.html","water scum"]],"b":[["alkaloids/aurachin-re.yaml","aurachin RE"],["amino_acids_and_peptides/heterobactin-a.yaml","heterobactin A"],["amino_acids_and_peptides/heterobactin-s2.yaml","heterobactin S2"]]},{"id":"NCBITaxon:1961","l":"Streptomyces virginiae","na":3,"nb":3,"a":[["clay-envo-00002982.html","clay"],["plain-envo-00000086.html","plain"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["alkaloids/endophenazine-a.yaml","endophenazine A"],["polyketides/monensin.yaml","monensin"],["unclassified/virginiamycin-s1.yaml","virginiamycin S1"]]},{"id":"NCBITaxon:1883","l":"Streptomyces","na":2,"nb":438,"a":[["crop-bto-0000301.html","crop"],["lab-synthesis-habitatmech-bacdive-0e92e77cd4.html","Lab-synthesis"]],"b":[["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/7-prenylisatin.yaml","7-prenylisatin"],["alkaloids/9-methylstreptimidone.yaml","9-methylstreptimidone"],["alkaloids/anisomycin.yaml","(−)-anisomycin"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"]]},{"id":"NCBITaxon:1886","l":"Streptomyces albidoflavus","na":2,"nb":54,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/anthramycin.yaml","anthramycin"],["alkaloids/diazaquinomycin-f.yaml","diazaquinomycin F"],["alkaloids/diazaquinomycin-g.yaml","diazaquinomycin G"],["alkaloids/holomycin.yaml","holomycin"],["alkaloids/melanin.yaml","melanin"]]},{"id":"NCBITaxon:1911","l":"Streptomyces griseus","na":2,"nb":32,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["alkaloids/cycloheximide.yaml","cycloheximide"],["alkaloids/grixazone-a.yaml","grixazone A"],["alkaloids/iminimycin-a.yaml","iminimycin A"],["alkaloids/iminimycin-b.yaml","iminimycin B"],["alkaloids/indolmycin.yaml","indolmycin"],["alkaloids/melanin.yaml","melanin"]]},{"id":"NCBITaxon:369723","l":"Salinispora tropica CNB-440","na":2,"nb":23,"a":[["coarse-beach-sand-envo-00002148.html","coarse beach sand"],["sand-envo-01000017.html","sand"]],"b":[["alkaloids/lymphostin.yaml","lymphostin"],["alkaloids/lymphostinol.yaml","lymphostinol"],["alkaloids/neolymphostin-b-2.yaml","neolymphostin B"],["alkaloids/neolymphostinol-b.yaml","neolymphostinol B"],["amino_acids_and_peptides/salinosporamide-a.yaml","salinosporamide A"],["fatty_acids/salinipostin-a.yaml","Salinipostin A"]]},{"id":"NCBITaxon:83456","l":"Myxococcus virescens","na":15,"nb":2,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["feces-uberon-0001988.html","feces"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"]],"b":[["alkaloids/bengamide.yaml","bengamide"],["unclassified/myxochromide-c.yaml","myxochromide C"]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":2,"nb":14,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/framycetin.yaml","framycetin"],["carbohydrates/neomycin-c.yaml","neomycin C"],["carbohydrates/paromomycin.yaml","paromomycin"]]},{"id":"NCBITaxon:2013","l":"Nocardiopsis","na":2,"nb":14,"a":[["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"],["alkaloids/k-252a.yaml","K-252a"],["alkaloids/methylpendolmycin.yaml","methylpendolmycin"],["alkaloids/pendolmycin.yaml","pendolmycin"],["amino_acids_and_peptides/tp-1161.yaml","TP-1161"],["polyketides/apoptolidin.yaml","apoptolidin"]]},{"id":"NCBITaxon:102234","l":"Cyanobacterium","na":12,"nb":2,"a":[["cecum-bto-0000166.html","cecum"],["colon-bto-0000269.html","colon"],["gut-bto-0000545.html","gut"],["head-bto-0000282.html","head"],["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"]],"b":[["amino_acids_and_peptides/aeruginosin-98-c.yaml","aeruginosin 98-C"],["unclassified/nostopeptolide-a2.yaml","nostopeptolide A2"]]},{"id":"NCBITaxon:271848","l":"Burkholderia thailandensis E264","na":2,"nb":12,"a":[["needle-bto-0000917.html","needle"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["alkaloids/malleobactin-b.yaml","malleobactin B"],["alkaloids/malleobactin-d.yaml","malleobactin D"],["polyketides/malleicyprol.yaml","malleicyprol"],["polyketides/malleilactone.yaml","malleilactone"],["polyketides/thailandamide-lactone.yaml","thailandamide lactone"],["polyketides/thailandamide.yaml","thailandamide"]]},{"id":"NCBITaxon:457427","l":"Streptomyces himastatinicus ATCC 53653","na":9,"nb":2,"a":[["bay-envo-00000032.html","bay"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["saline-water-envo-00002010.html","saline water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["food-product-foodon-00001002.html","food product"]],"b":[["alkaloids/9-methylstreptimidone.yaml","9-methylstreptimidone"],["amino_acids_and_peptides/himastatin.yaml","himastatin"]]},{"id":"NCBITaxon:500485","l":"Penicillium rubens Wisconsin 54-1255","na":2,"nb":9,"a":[["finger-bto-0004669.html","finger"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["alkaloids/dehydrohistidyltryptophanyldiketopiperazine.yaml","dehydrohistidyltryptophanyldiketopiperazine"],["alkaloids/glandicoline-a.yaml","glandicoline A"],["alkaloids/glandicoline-b.yaml","glandicoline B"],["alkaloids/meleagrine.yaml","meleagrine"],["polyketides/sorbicillin.yaml","sorbicillin"],["terpenoids/conidiogenone.yaml","conidiogenone"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":8,"nb":2,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["lab-synthesis-habitatmech-bacdive-0e92e77cd4.html","Lab-synthesis"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["oil-spill-envo-00002061.html","oil spill"],["temperate-envo-01000206.html","temperate"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"],["carbohydrates/oxetanocin-a.yaml","oxetanocin A"]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":8,"nb":2,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["terpenoids/xanthan.yaml","xanthan"]]},{"id":"NCBITaxon:345341","l":"Kutzneria sp. 744","na":2,"nb":8,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"],["clay-envo-00002982.html","clay"]],"b":[["amino_acids_and_peptides/kutzneride-6.yaml","Kutzneride 6"],["unclassified/kutzneride-1.yaml","Kutzneride 1"],["unclassified/kutzneride-2.yaml","Kutzneride 2"],["unclassified/kutzneride-3.yaml","Kutzneride 3"],["unclassified/kutzneride-4.yaml","Kutzneride 4"],["unclassified/kutzneride-5.yaml","Kutzneride 5"]]},{"id":"NCBITaxon:331117","l":"Aspergillus fischeri NRRL 181","na":2,"nb":7,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["terpenoids/compound-5.yaml","compound 5"],["terpenoids/compound-6-2.yaml","compound 6"],["terpenoids/compound-7a.yaml","compound 7a"],["terpenoids/compound-8-2.yaml","compound 8"],["terpenoids/sesterfisheric-acid.yaml","sesterfisheric acid"],["terpenoids/sesterfisherol.yaml","sesterfisherol"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":7,"nb":2,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["liquid-water-envo-00002006.html","liquid water"],["crown-gall-bto-0000303.html","crown gall"],["finger-bto-0004669.html","finger"],["resting-cell-bto-0001170.html","resting cell"],["water-scum-envo-00005794.html","water scum"]],"b":[["alkaloids/agrobactin.yaml","agrobactin"],["amino_acids_and_peptides/aztreonam.yaml","aztreonam"]]},{"id":"NCBITaxon:391037","l":"Salinispora arenicola CNS-205","na":2,"nb":7,"a":[["beach-sand-envo-00002138.html","beach sand"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["alkaloids/lymphostin.yaml","lymphostin"],["alkaloids/lymphostinol.yaml","lymphostinol"],["alkaloids/neolymphostin-b.yaml","neolymphostin b"],["alkaloids/neolymphostinol-b.yaml","neolymphostinol B"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/cyclomarin-d.yaml","cyclomarin D"]]},{"id":"NCBITaxon:63737","l":"Nostoc punctiforme PCC 73102","na":2,"nb":7,"a":[["heterocyst-bto-0000600.html","heterocyst"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["amino_acids_and_peptides/microviridin-n3.yaml","microviridin N3"],["amino_acids_and_peptides/microviridin-n4.yaml","microviridin N4"],["amino_acids_and_peptides/microviridin-n6.yaml","microviridin N6"],["amino_acids_and_peptides/microviridin-n7.yaml","microviridin N7"],["amino_acids_and_peptides/microviridin-n8.yaml","microviridin N8"],["amino_acids_and_peptides/microviridin-n9.yaml","microviridin N9"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":6,"nb":2,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"],["sludge-envo-00002044.html","sludge"],["forested-area-envo-00000111.html","forested area"],["scrubland-area-envo-00000300.html","scrubland area"],["soil-envo-00001998.html","soil"]],"b":[["amino_acids_and_peptides/cupriachelin.yaml","cupriachelin"],["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"]]},{"id":"NCBITaxon:457412","l":"Ruminococcus sp. 5_1_39BFAA","na":2,"nb":6,"a":[["animal-litter-envo-00002191.html","animal litter"],["tropical-envo-01000204.html","tropical"]],"b":[["alkaloids/pzn10.yaml","PZN10"],["alkaloids/pzn11.yaml","PZN11"],["alkaloids/pzn5.yaml","PZN5"],["alkaloids/pzn6.yaml","PZN6"],["alkaloids/pzn7.yaml","PZN7"],["alkaloids/pzn9.yaml","PZN9"]]},{"id":"NCBITaxon:4577","l":"Zea mays","na":2,"nb":6,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["alkaloids/dimboa.yaml","DIMBOA"],["polyketides/emodin.yaml","emodin"],["terpenoids/zealexin-a1.yaml","zealexin A1"],["terpenoids/zealexin-b3.yaml","zealexin B3"],["terpenoids/zealexin-c2.yaml","zealexin C2"],["unclassified/aflatoxin.yaml","aflatoxin"]]},{"id":"NCBITaxon:1465","l":"Brevibacillus laterosporus","na":2,"nb":5,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["amino_acids_and_peptides/bogorol-a.yaml","bogorol A"],["amino_acids_and_peptides/tauramamide.yaml","tauramamide"],["shikimates_and_phenylpropanoids/basiliskamide-a.yaml","Basiliskamide A"],["unclassified/basiliskamide-b.yaml","Basiliskamide B"],["unclassified/laterocidine.yaml","laterocidine"]]},{"id":"NCBITaxon:497689","l":"Streptomyces sp. SNA15896","na":2,"nb":5,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["unclassified/sw-163c.yaml","SW-163C"],["unclassified/sw-163e.yaml","SW-163E"],["unclassified/sw-163f.yaml","SW-163F"],["unclassified/sw-163g.yaml","SW-163G"],["unclassified/uk-63598.yaml","UK 63598"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":5,"nb":2,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["pseudostem-bto-0005992.html","pseudostem"],["seedling-bto-0001228.html","seedling"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["soil-envo-00001998.html","soil"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["terpenoids/mk-8.yaml","MK-8"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":5,"nb":2,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"],["feces-uberon-0001988.html","feces"],["rectum-bto-0001158.html","rectum"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["alkaloids/vibriobactin-2.yaml","vibriobactin"],["alkaloids/vibriobactin.yaml","vibriobactin"]]},{"id":"NCBITaxon:1224742","l":"","na":2,"nb":4,"a":[["kidney-bto-0000671.html","kidney"],["renal-cortex-bto-0001166.html","renal cortex"]],"b":[["polyketides/amphi-enterobactin-1.yaml","Amphi-enterobactin 1"],["polyketides/amphi-enterobactin-2.yaml","amphi-enterobactin 2"],["polyketides/amphi-enterobactin-3.yaml","amphi-enterobactin 3"],["polyketides/amphi-enterobactin-4.yaml","amphi-enterobactin 4"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":4,"nb":2,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["carcass-envo-00002033.html","carcass"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["sludge-envo-00002044.html","sludge"]],"b":[["alkaloids/biotin.yaml","biotin"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":4,"nb":2,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["unclassified/andalusicin-a.yaml","andalusicin A"]]},{"id":"NCBITaxon:305","l":"Ralstonia solanacearum","na":4,"nb":2,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"],["pseudostem-bto-0005992.html","pseudostem"],["xylem-bto-0001468.html","xylem"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"],["unclassified/micacocidin.yaml","micacocidin"]]},{"id":"NCBITaxon:398578","l":"Delftia acidovorans SPH-1","na":4,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["large-river-biome-envo-00000887.html","large river biome"],["sewage-envo-00002018.html","sewage"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["amino_acids_and_peptides/delftibactin-a.yaml","delftibactin A"],["amino_acids_and_peptides/delftibactin-b.yaml","delftibactin B"]]},{"id":"NCBITaxon:426418","l":"Pyrenophora tritici-repentis Pt-1C-BFP","na":2,"nb":4,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["unclassified/triticone-a.yaml","triticone A"],["unclassified/triticone-b.yaml","triticone B"],["unclassified/triticone-c.yaml","triticone C"],["unclassified/triticone-f.yaml","triticone F"]]},{"id":"NCBITaxon:479433","l":"Catenulispora acidiphila DSM 44928","na":4,"nb":2,"a":[["filament-bto-0000463.html","filament"],["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["amino_acids_and_peptides/catenulipeptin.yaml","catenulipeptin"],["shikimates_and_phenylpropanoids/cacibiocin-b.yaml","cacibiocin B"]]},{"id":"NCBITaxon:6239","l":"Caenorhabditis elegans","na":2,"nb":4,"a":[["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["alkaloids/biotin.yaml","biotin"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/itaconic-acid.yaml","itaconic acid"],["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"]]},{"id":"NCBITaxon:703612","l":"","na":2,"nb":4,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["amino_acids_and_peptides/mycosubtilin.yaml","mycosubtilin"],["amino_acids_and_peptides/rhizocticin-a.yaml","rhizocticin A"],["amino_acids_and_peptides/subtilin.yaml","subtilin"],["amino_acids_and_peptides/subtilosin-a.yaml","subtilosin A"]]},{"id":"NCBITaxon:1129","l":"Synechococcus","na":2,"nb":3,"a":[["column-bto-0005692.html","column"],["hemolymph-bto-0000572.html","hemolymph"]],"b":[["alkaloids/synechobactin-a.yaml","synechobactin A"],["alkaloids/synechobactin-b.yaml","synechobactin B"],["alkaloids/synechobactin-c.yaml","synechobactin C"]]},{"id":"NCBITaxon:1218948","l":"Pseudomonas fluorescens PF5","na":3,"nb":2,"a":[["large-river-biome-envo-00000887.html","large river biome"],["human-construction-envo-00000070.html","human construction"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["alkaloids/pyoluteorin.yaml","pyoluteorin"],["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":2,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:1932","l":"Streptomyces tendae","na":2,"nb":3,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"],["polyketides/lysolipin-i.yaml","lysolipin I"],["terpenoids/geosmin.yaml","(−)-geosmin"]]},{"id":"NCBITaxon:1938","l":"Streptomyces viridochromogenes","na":2,"nb":3,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["amino_acids_and_peptides/glycinocin-a.yaml","glycinocin A"],["carbohydrates/avilamycin-a.yaml","avilamycin A"],["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"]]},{"id":"NCBITaxon:2021","l":"Thermobifida fusca","na":2,"nb":3,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["amino_acids_and_peptides/fuscachelin-a.yaml","Fuscachelin A"],["amino_acids_and_peptides/fuscachelin-b.yaml","Fuscachelin B"],["amino_acids_and_peptides/fuscachelin-c.yaml","Fuscachelin C"]]},{"id":"NCBITaxon:269800","l":"Thermobifida fusca YX","na":2,"nb":3,"a":[["compost-envo-00002170.html","compost"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["amino_acids_and_peptides/fuscachelin-a.yaml","Fuscachelin A"],["amino_acids_and_peptides/fuscachelin-b.yaml","Fuscachelin B"],["amino_acids_and_peptides/fuscachelin-c.yaml","Fuscachelin C"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":3,"nb":2,"a":[["bile-bto-0000121.html","bile"],["rectum-bto-0001158.html","rectum"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["alkaloids/acinetobactin.yaml","acinetobactin"],["amino_acids_and_peptides/fimsbactin-a.yaml","fimsbactin A"]]},{"id":"NCBITaxon:556","l":"Dickeya chrysanthemi","na":2,"nb":3,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["amino_acids_and_peptides/chrysobactin.yaml","chrysobactin"],["amino_acids_and_peptides/dichrysobactin.yaml","dichrysobactin"],["unclassified/cyclic-trichrysobactin.yaml","cyclic trichrysobactin"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":3,"nb":2,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["amino_acids_and_peptides/vibrioferrin-2.yaml","vibrioferrin"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:1121302","l":"Clostridium cavendishii DSM 21758","na":2,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["groundwater-envo-01001004.html","groundwater"]],"b":[["alkaloids/closoxazole-a.yaml","closoxazole A"],["alkaloids/closoxazole-b.yaml","closoxazole B"]]},{"id":"NCBITaxon:176299","l":"Agrobacterium fabrum (strain C58 / ATCC 33970)","na":2,"nb":2,"a":[["human-construction-envo-00000070.html","human construction"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["amino_acids_and_peptides/fabrubactin-a.yaml","fabrubactin A"],["amino_acids_and_peptides/fabrubactin-b.yaml","fabrubactin B"]]},{"id":"NCBITaxon:316274","l":"Herpetosiphon aurantiacus DSM 785","na":2,"nb":2,"a":[["filament-bto-0000463.html","filament"],["joint-bto-0001686.html","joint"]],"b":[["alkaloids/auriculamide.yaml","auriculamide"],["terpenoids/o-methylkolavelool.yaml","(+)-O-methylkolavelool"]]},{"id":"NCBITaxon:394096","l":"Hyalangium minutum","na":2,"nb":2,"a":[["wood-bto-0005516.html","wood"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["polyketides/nystatin-a1.yaml","nystatin A1"],["unclassified/myxochromide-d-2.yaml","myxochromide D"]]},{"id":"NCBITaxon:394503","l":"Ruminiclostridium cellulolyticum H10","na":2,"nb":2,"a":[["agricultural-waste-material-envo-01000371.html","agricultural waste material"],["compost-envo-00002170.html","compost"]],"b":[["alkaloids/closthioamide.yaml","closthioamide"],["amino_acids_and_peptides/rc-aip1.yaml","Rc-AIP1"]]},{"id":"NCBITaxon:444103","l":"Streptomyces sp. CNQ-509","na":2,"nb":2,"a":[["colonic-cancer-cell-bto-0000586.html","colonic cancer cell"],["vas-efferens-bto-0002254.html","vas efferens"]],"b":[["alkaloids/marinophenazine-a.yaml","marinophenazine A"],["alkaloids/phenaziterpene-a.yaml","phenaziterpene A"]]},{"id":"NCBITaxon:47879","l":"Pseudomonas corrugata","na":2,"nb":2,"a":[["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["wilt-habitatmech-bacdive-4c48b5114d.html","Wilt"]],"b":[["amino_acids_and_peptides/corpeptin-a.yaml","corpeptin A"],["amino_acids_and_peptides/corpeptin-b.yaml","corpeptin B"]]},{"id":"NCBITaxon:543728","l":"Variovorax paradoxus S110","na":2,"nb":2,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"]],"b":[["unclassified/vacidobactin-a.yaml","vacidobactin A"],["unclassified/vacidobactin-b.yaml","vacidobactin B"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":2,"nb":2,"a":[["feces-uberon-0001988.html","feces"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["alkaloids/yersiniabactin.yaml","yersiniabactin"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":2,"nb":2,"a":[["watercourse-envo-00000029.html","watercourse"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["amino_acids_and_peptides/vibrioferrin-2.yaml","vibrioferrin"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:1177","l":"Nostoc","na":1,"nb":41,"a":[["inflorescence-bto-0000628.html","inflorescence"]],"b":[["alkaloids/nocuolin-a.yaml","Nocuolin A"],["amino_acids_and_peptides/anabaenopeptin-802.yaml","anabaenopeptin 802"],["amino_acids_and_peptides/heinamide-a1.yaml","heinamide A1"],["amino_acids_and_peptides/heinamide-a2.yaml","heinamide A2"],["amino_acids_and_peptides/heinamide-a3.yaml","heinamide A3"],["amino_acids_and_peptides/heinamide-b1.yaml","heinamide B1"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":33,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["pond-water-envo-00002228.html","pond water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["water-body-envo-00000063.html","water body"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:243265","l":"Photorhabdus laumondii subsp. laumondii TTO1","na":1,"nb":21,"a":[["carcass-bto-0001965.html","carcass"]],"b":[["amino_acids_and_peptides/gamexpeptide-c.yaml","gamexpeptide C"],["amino_acids_and_peptides/luminmycin-a.yaml","luminmycin A"],["amino_acids_and_peptides/ririwpeptide-a.yaml","ririwpeptide A"],["amino_acids_and_peptides/ririwpeptide-b.yaml","ririwpeptide B"],["carbohydrates/oligosaccharide-1-glcnac-1-4-1-6-anhydro-glcnac.yaml","oligosaccharide 1 (GlcNAc-β(1-4)-1,6-anhydro-β-GlcNAc)"],["carbohydrates/oligosaccharide-2-glcnac-1-4-glcnac-1-4-1-6-anhydro-glcnac.yaml","oligosaccharide 2 (GlcNAc-β(1-4)-GlcNAc-β(1-4)-1,6-anhydro-β-GlcNAc)"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":1,"nb":20,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/c-3-sulfonylated-derivative.yaml","C-3 sulfonylated derivative"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["alkaloids/n-n-dioxide-containing-derivate.yaml","N,N-dioxide containing derivate"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":19,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["bone-element-uberon-0001474.html","bone element"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["amino_acids_and_peptides/bacitracin.yaml","bacitracin"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":17,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["hospital-envo-00002173.html","hospital"],["egg-food-product-foodon-00001274.html","egg food product"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["amino_acids_and_peptides/enterocin-a.yaml","enterocin A"]]},{"id":"NCBITaxon:455632","l":"Streptomyces griseus subsp. griseus NBRC 13350","na":1,"nb":17,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["alkaloids/grixazone-a.yaml","grixazone A"],["alkaloids/iminimycin-a.yaml","iminimycin A"],["alkaloids/iminimycin-b.yaml","iminimycin B"],["alkaloids/melanin.yaml","melanin"],["carbohydrates/streptomycin.yaml","streptomycin"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":16,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":14,"nb":1,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["compost-envo-00002170.html","compost"],["organic-waste-material-envo-00002873.html","organic waste material"],["larva-bto-0000707.html","larva"],["rhizosphere-envo-00005801.html","rhizosphere"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]]},{"id":"NCBITaxon:29488","l":"Photorhabdus luminescens","na":1,"nb":14,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["alkaloids/photobactin.yaml","photobactin"],["alkaloids/pzn5.yaml","PZN5"],["amino_acids_and_peptides/gamexpeptide-c.yaml","gamexpeptide C"],["amino_acids_and_peptides/glidobactin.yaml","glidobactin"],["amino_acids_and_peptides/luminmycin-a.yaml","luminmycin A"],["polyketides/photopyrone-a.yaml","photopyrone A"]]},{"id":"NCBITaxon:1357","l":"Lactococcus","na":13,"nb":1,"a":[["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["ileum-bto-0000620.html","ileum"],["intestine-bto-0000648.html","intestine"],["mouth-bto-0001090.html","mouth"]],"b":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":1,"nb":13,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["alkaloids/holomycin.yaml","holomycin"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/2-formyloxymethylclavam.yaml","2-formyloxymethylclavam"],["amino_acids_and_peptides/2-hydroxymethylclavam.yaml","2-hydroxymethylclavam"],["amino_acids_and_peptides/alanylclavam.yaml","alanylclavam"],["amino_acids_and_peptides/cephamycin-c.yaml","cephamycin C"]]},{"id":"NCBITaxon:406817","l":"Xenorhabdus nematophila ATCC 19061","na":1,"nb":13,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["alkaloids/nematophin.yaml","nematophin"],["amino_acids_and_peptides/rhabdopeptide-1.yaml","rhabdopeptide 1"],["amino_acids_and_peptides/rhabdopeptide-2.yaml","rhabdopeptide 2"],["amino_acids_and_peptides/rhabdopeptide-3.yaml","rhabdopeptide 3"],["amino_acids_and_peptides/rhabdopeptide-4.yaml","rhabdopeptide 4"],["amino_acids_and_peptides/xenortide-a.yaml","xenortide A"]]},{"id":"NCBITaxon:104268","l":"Tenacibaculum mesophilum","na":12,"nb":1,"a":[["bay-envo-00000032.html","bay"],["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"],["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"]],"b":[["fatty_acids/bisucaberin-b.yaml","bisucaberin B"]]},{"id":"NCBITaxon:321614","l":"","na":1,"nb":12,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["alkaloids/phomacin-d.yaml","phomacin D"],["alkaloids/phomacin-e.yaml","phomacin E"],["polyketides/betaenone-b.yaml","betaenone B"],["polyketides/betaenone-c.yaml","betaenone C"],["polyketides/compound-3-2.yaml","compound 3"],["polyketides/compound-5-2.yaml","compound 5"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":11,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"],["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["laboratory-facility-envo-01001406.html","laboratory facility"],["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["bone-element-uberon-0001474.html","bone element"],["juvenile-bto-0002168.html","juvenile"]],"b":[["amino_acids_and_peptides/cutimycin.yaml","cutimycin"]]},{"id":"NCBITaxon:229533","l":"Fusarium graminearum PH-1","na":1,"nb":11,"a":[["soil-envo-00001998.html","soil"]],"b":[["alkaloids/chrysogine.yaml","chrysogine"],["amino_acids_and_peptides/fusaoctaxin-a.yaml","fusaoctaxin A"],["polyketides/aurofusarin.yaml","aurofusarin"],["polyketides/prolipyrone-b.yaml","prolipyrone B"],["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"],["terpenoids/15-acetyldeoxynivalenol.yaml","15-acetyldeoxynivalenol"]]},{"id":"NCBITaxon:38033","l":"Chaetomium globosum","na":1,"nb":11,"a":[["desert-sand-envo-00005800.html","desert sand"]],"b":[["alkaloids/chaetoglobosin-c.yaml","chaetoglobosin C"],["alkaloids/cytoglobosin-x.yaml","cytoglobosin X"],["polyketides/11-epichaetomugilin-a.yaml","11-epichaetomugilin A"],["polyketides/azanigerone-a.yaml","azanigerone A"],["polyketides/chaetoviridin-e.yaml","chaetoviridin E"],["polyketides/shanorellin.yaml","shanorellin"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":1,"nb":11,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["amino_acids_and_peptides/ferrichrome.yaml","ferrichrome"],["polyketides/1-2-3-5-10-tetrahydroxy-7-methoxy-4-oxo-1-2-3-4-tetrahydroanthracen-2-yl-pentane.yaml","1-(2,3,5,10-tetrahydroxy-7-methoxy-4-oxo-1,2,3,4-tetrahydroanthracen-2-yl)pentane-2,4-dione"],["polyketides/azanigerone-a.yaml","azanigerone A"],["polyketides/campyrone-b.yaml","campyrone B"],["polyketides/desmethyl-tan-1612.yaml","desmethyl TAN-1612"],["polyketides/fumonisin-b2.yaml","fumonisin B2"]]},{"id":"NCBITaxon:111805","l":"Actinomadura pelletieri","na":10,"nb":1,"a":[["lake-envo-00000020.html","lake"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["foot-bto-0000476.html","foot"],["rhizosphere-envo-00005801.html","rhizosphere"],["organic-material-envo-01000155.html","organic material"]],"b":[["alkaloids/undecylprodigiosin-2.yaml","undecylprodigiosin"]]},{"id":"NCBITaxon:1716","l":"Corynebacterium","na":10,"nb":1,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["ileum-bto-0000620.html","ileum"],["juvenile-bto-0002168.html","juvenile"],["mucosa-bto-0000886.html","mucosa"],["nectar-bto-0000537.html","nectar"]],"b":[["alkaloids/corynecin-iii.yaml","corynecin III"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa (strain ATCC 15692 / DSM 22644 / CIP 104116 / JCM 14847 / LMG 12228 / 1C / PRS 101 / PAO1)","na":1,"nb":10,"a":[["style-bto-0001313.html","style"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:543","l":"Enterobacteriaceae","na":10,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"],["midgut-bto-0000863.html","midgut"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":9,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["fresh-water-envo-00002011.html","fresh water"],["river-envo-00000022.html","river"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["alkaloids/molybdenum-cofactor.yaml","molybdenum cofactor"]]},{"id":"NCBITaxon:1817","l":"Nocardia","na":1,"nb":9,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["alkaloids/rebeccamycin.yaml","rebeccamycin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/nocathiacin-i.yaml","nocathiacin I"],["amino_acids_and_peptides/ristocetin-a.yaml","Ristocetin A"],["amino_acids_and_peptides/vancomycin.yaml","vancomycin"],["polyketides/macbecin-ii.yaml","macbecin II"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":9,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["mud-envo-01000001.html","mud"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":8,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["alimentary-canal-bto-0000058.html","alimentary canal"],["blood-bto-0000089.html","blood"],["small-intestine-bto-0000651.html","small intestine"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["geographic-feature-envo-00000000.html","geographic feature"]],"b":[["amino_acids_and_peptides/salivaricin-d.yaml","salivaricin D"]]},{"id":"NCBITaxon:1836","l":"Saccharopolyspora erythraea","na":1,"nb":8,"a":[["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["amino_acids_and_peptides/erythrochelin.yaml","erythrochelin"],["polyketides/3-3-diflaviolin.yaml","3,3'-diflaviolin"],["polyketides/erythromycin-a.yaml","erythromycin A"],["polyketides/erythromycin-b.yaml","erythromycin B"],["polyketides/flaviolin-rhamnoside.yaml","flaviolin rhamnoside"],["polyketides/flaviolin.yaml","flaviolin"]]},{"id":"NCBITaxon:1908","l":"Streptomyces globisporus","na":1,"nb":8,"a":[["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["polyketides/c-1027-chromophore.yaml","C-1027 chromophore"],["polyketides/c-1027.yaml","C-1027"],["polyketides/landomycin-a.yaml","landomycin A"],["polyketides/nonactin.yaml","nonactin"],["polyketides/prejadomycin.yaml","prejadomycin"],["polyketides/tetranactin.yaml","tetranactin"]]},{"id":"NCBITaxon:326423","l":"Bacillus velezensis FZB42","na":1,"nb":8,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["polyketides/bacillaene.yaml","bacillaene"],["polyketides/difficidin.yaml","difficidin"],["polyketides/macrolactin-h.yaml","macrolactin H"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:420953","l":"Paraburkholderia megapolitana","na":1,"nb":8,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["amino_acids_and_peptides/megapolibactin-a.yaml","megapolibactin A"],["amino_acids_and_peptides/megapolibactin-acyc.yaml","megapolibactin Acyc"],["amino_acids_and_peptides/megapolibactin-b.yaml","megapolibactin B"],["amino_acids_and_peptides/megapolibactin-c.yaml","megapolibactin C"],["amino_acids_and_peptides/megapolibactin-d.yaml","megapolibactin D"],["amino_acids_and_peptides/megapolibactin-e.yaml","megapolibactin E"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":8,"nb":1,"a":[["beach-envo-00000091.html","beach"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["sea-sand-envo-00002118.html","sea sand"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["polyketides/haliamide.yaml","haliamide"]]},{"id":"NCBITaxon:680198","l":"Streptomyces scabiei 87.22","na":1,"nb":8,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["alkaloids/rotihibin-a.yaml","rotihibin A"],["amino_acids_and_peptides/bottromycin-a2.yaml","bottromycin A2"],["amino_acids_and_peptides/edha.yaml","EDHA"],["amino_acids_and_peptides/scabichelin.yaml","scabichelin"],["amino_acids_and_peptides/thaxtomin-c.yaml","thaxtomin C"],["unclassified/n-coronafacoyl-l-isoleucine.yaml","N-coronafacoyl-L-isoleucine"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":7,"nb":1,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["farm-envo-00000078.html","farm"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["unclassified/rhodochelin.yaml","rhodochelin"]]},{"id":"NCBITaxon:1044","l":"Erythrobacter longus","na":7,"nb":1,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["small-river-biome-envo-00000890.html","small river biome"],["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["biofilm-material-envo-01000156.html","biofilm material"]],"b":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]]},{"id":"NCBITaxon:83455","l":"Myxococcus stipitatus","na":7,"nb":1,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["plant-litter-envo-01000628.html","plant litter"],["sand-envo-01000017.html","sand"]],"b":[["polyketides/phenalamide-a2.yaml","phenalamide A2"]]},{"id":"NCBITaxon:1069","l":"Rhodomicrobium vannielii","na":6,"nb":1,"a":[["lake-envo-00000020.html","lake"],["stream-envo-00000023.html","stream"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["rhizosphere-envo-00005801.html","rhizosphere"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["terpenoids/carotene.yaml","β-carotene"]]},{"id":"NCBITaxon:1311","l":"Streptococcus agalactiae","na":6,"nb":1,"a":[["kidney-bto-0000671.html","kidney"],["milk-uberon-0001913.html","milk"],["oropharynx-bto-0005257.html","oropharynx"],["urine-bto-0001419.html","urine"],["urogenital-system-bto-0003091.html","urogenital system"],["vagina-bto-0000243.html","vagina"]],"b":[["carbohydrates/capsular-polysaccharide-3.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:205922","l":"Pseudomonas fluorescens Pf0-1","na":6,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["cold-environment-envo-01000309.html","cold environment"],["microbial-mat-material-envo-01000157.html","microbial mat material"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"],["agricultural-soil-envo-00002259.html","agricultural soil"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["unclassified/gacamide-a.yaml","gacamide A"]]},{"id":"NCBITaxon:278992","l":"Streptomyces ambofaciens ATCC 23877","na":1,"nb":6,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["alkaloids/congocidine.yaml","congocidine"],["polyketides/spiramycin.yaml","spiramycin"],["polyketides/stambomycin-a.yaml","stambomycin A"],["polyketides/stambomycin-b.yaml","stambomycin B"],["polyketides/stambomycin-c.yaml","stambomycin C"],["polyketides/stambomycin-d.yaml","stambomycin D"]]},{"id":"NCBITaxon:37632","l":"Amycolatopsis sp.","na":1,"nb":6,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["amino_acids_and_peptides/ristocetin-a.yaml","Ristocetin A"],["polyketides/rifamorpholine-a.yaml","rifamorpholine A"],["polyketides/rifamorpholine-b.yaml","rifamorpholine B"],["polyketides/rifamorpholine-c.yaml","rifamorpholine C"],["polyketides/rifamorpholine-d.yaml","rifamorpholine D"],["polyketides/rifamorpholine-e.yaml","rifamorpholine E"]]},{"id":"NCBITaxon:446","l":"Legionella pneumophila","na":6,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["hospital-envo-00002173.html","hospital"],["macrophage-bto-0000801.html","macrophage"],["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["fatty_acids/lipopolysaccharide.yaml","lipopolysaccharide"]]},{"id":"NCBITaxon:5530","l":"Metarhizium anisopliae","na":1,"nb":6,"a":[["soil-envo-00001998.html","soil"]],"b":[["alkaloids/ng-391.yaml","NG-391"],["amino_acids_and_peptides/serinocyclin-a.yaml","serinocyclin A"],["amino_acids_and_peptides/serinocyclin-b.yaml","serinocyclin B"],["fatty_acids/baa.yaml","BAA"],["fatty_acids/bab.yaml","BAB"],["unclassified/destruxin-a.yaml","destruxin A"]]},{"id":"NCBITaxon:115828","l":"Streptomyces maritimus","na":5,"nb":1,"a":[["farm-envo-00000078.html","farm"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["plain-envo-00000086.html","plain"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["terpenoids/enterocin.yaml","enterocin"]]},{"id":"NCBITaxon:1275","l":"Kocuria rosea","na":5,"nb":1,"a":[["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["marine-environment-envo-01000320.html","marine environment"],["oil-spill-envo-00002061.html","oil spill"],["painting-habitatmech-bacdive-0bfb662164.html","Painting"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["amino_acids_and_peptides/kocurin.yaml","kocurin"]]},{"id":"NCBITaxon:1292","l":"Staphylococcus warneri","na":5,"nb":1,"a":[["neonate-bto-0001762.html","neonate"],["skin-of-body-uberon-0002097.html","skin of body"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["amino_acids_and_peptides/nukacin-isk-1.yaml","nukacin ISK-1"]]},{"id":"NCBITaxon:168695","l":"Salinispora tropica","na":1,"nb":5,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["alkaloids/lymphostin.yaml","lymphostin"],["amino_acids_and_peptides/salinosporamide-a.yaml","salinosporamide A"],["polyketides/lomaiviticin-a.yaml","lomaiviticin A"],["polyketides/sporolide-b.yaml","sporolide B"],["unclassified/salinilactam.yaml","salinilactam"]]},{"id":"NCBITaxon:168697","l":"Salinispora arenicola","na":1,"nb":5,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["amino_acids_and_peptides/cyclomarin-d.yaml","cyclomarin D"],["polyketides/arenimycin-a.yaml","arenimycin A"],["polyketides/rifamycin-sv.yaml","rifamycin SV"],["unclassified/emericellamide-a.yaml","emericellamide A"],["unclassified/emericellamide-b.yaml","emericellamide B"]]},{"id":"NCBITaxon:29303","l":"Streptomyces cattleya","na":1,"nb":5,"a":[["clay-envo-00002982.html","clay"]],"b":[["amino_acids_and_peptides/cattlecin.yaml","cattlecin"],["amino_acids_and_peptides/clavulanic-acid.yaml","clavulanic acid"],["amino_acids_and_peptides/ethynylserine.yaml","β-ethynylserine"],["amino_acids_and_peptides/thienamycin.yaml","thienamycin"],["terpenoids/cattleyene.yaml","cattleyene"]]},{"id":"NCBITaxon:43","l":"Cystobacter fuscus","na":1,"nb":5,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"]],"b":[["amino_acids_and_peptides/cystomanamide-a.yaml","cystomanamide A"],["amino_acids_and_peptides/cystomanamide-b.yaml","cystomanamide B"],["amino_acids_and_peptides/cystomanamide-c.yaml","cystomanamide C"],["amino_acids_and_peptides/cystomanamide-d.yaml","cystomanamide D"],["unclassified/cystothiazole-a.yaml","cystothiazole A"]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":1,"nb":5,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["alkaloids/9-deoxy-tilivalline.yaml","9-deoxy tilivalline"],["alkaloids/dehydro-tilivalline.yaml","dehydro tilivalline"],["alkaloids/dihydroxy-dehydro-tilivalline.yaml","dihydroxy-dehydro tilivalline"],["alkaloids/dihydroxy-tilivalline.yaml","dihydroxy tilivalline"],["alkaloids/tilivalline.yaml","tilivalline"]]},{"id":"NCBITaxon:95486","l":"Burkholderia cenocepacia","na":5,"nb":1,"a":[["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["unclassified/ornibactin-c8.yaml","ornibactin C8"]]},{"id":"NCBITaxon:1038928","l":"Streptomyces xinghaiensis","na":1,"nb":4,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["alkaloids/dixiamycin-a.yaml","dixiamycin A"],["alkaloids/xiamycin-a.yaml","xiamycin A"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"],["polyketides/oligomycin.yaml","oligomycin"]]},{"id":"NCBITaxon:1827","l":"Rhodococcus","na":4,"nb":1,"a":[["nectar-bto-0000537.html","nectar"],["pitcher-bto-0001069.html","pitcher"],["small-intestine-bto-0000651.html","small intestine"],["stem-bto-0001300.html","stem"]],"b":[["alkaloids/corynecin-iii.yaml","corynecin III"]]},{"id":"NCBITaxon:1965334","l":"Cystobacter sp.","na":1,"nb":4,"a":[["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["unclassified/vioprolide-a.yaml","vioprolide A"],["unclassified/vioprolide-b.yaml","vioprolide B"],["unclassified/vioprolide-c.yaml","vioprolide C"],["unclassified/vioprolide-d.yaml","vioprolide D"]]},{"id":"NCBITaxon:1967","l":"Streptomyces kanamyceticus","na":1,"nb":4,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["amino_acids_and_peptides/gausemycin-a.yaml","gausemycin A"],["amino_acids_and_peptides/gausemycin-b.yaml","gausemycin B"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/kanamycin-a.yaml","kanamycin A"]]},{"id":"NCBITaxon:227882","l":"","na":1,"nb":4,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["amino_acids_and_peptides/edha.yaml","EDHA"],["polyketides/filipin-iii.yaml","filipin III"],["terpenoids/avermitilol.yaml","avermitilol"],["terpenoids/pentalenolactone.yaml","pentalenolactone"]]},{"id":"NCBITaxon:2745","l":"Halomonas","na":1,"nb":4,"a":[["wood-bto-0005516.html","wood"]],"b":[["amino_acids_and_peptides/potashchelin-a.yaml","potashchelin A"],["amino_acids_and_peptides/potashchelin-b.yaml","potashchelin B"],["amino_acids_and_peptides/potashchelin-c.yaml","potashchelin C"],["amino_acids_and_peptides/potashchelin-d.yaml","potashchelin D"]]},{"id":"NCBITaxon:310350","l":"Nocardiopsis sp.","na":1,"nb":4,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["alkaloids/k-252a.yaml","K-252a"],["polyketides/nocardiopsistin-a.yaml","nocardiopsistin A"],["polyketides/nocardiopsistin-b.yaml","nocardiopsistin B"],["polyketides/nocardiopsistin-c.yaml","nocardiopsistin C"]]},{"id":"NCBITaxon:362","l":"Agrobacterium radiobacter","na":4,"nb":1,"a":[["plant-gall-po-0025626.html","plant gall"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["alkaloids/agrobactin.yaml","agrobactin"]]},{"id":"NCBITaxon:68570","l":"","na":1,"nb":4,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["amino_acids_and_peptides/deimino-antipain.yaml","deimino-antipain"],["polyketides/nystatin.yaml","nystatin"],["unclassified/albonoursin.yaml","albonoursin"],["unclassified/citrulassin-a.yaml","citrulassin A"]]},{"id":"NCBITaxon:746360","l":"Pseudomonas fluorescens WH6","na":4,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["human-construction-envo-00000070.html","human construction"],["cold-environment-envo-01000309.html","cold environment"],["peatland-envo-00000044.html","peatland"]],"b":[["amino_acids_and_peptides/4-formylaminooxyvinylglycine.yaml","4-formylaminooxyvinylglycine"]]},{"id":"NCBITaxon:85698","l":"Achromobacter xylosoxidans","na":4,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["amino_acids_and_peptides/alcaligin.yaml","alcaligin"]]},{"id":"NCBITaxon:86667","l":"Jeotgalibacillus marinus","na":1,"nb":4,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"]],"b":[["fatty_acids/macrolactin-1c.yaml","macrolactin 1c"],["fatty_acids/macrolactin-b.yaml","macrolactin B"],["polyketides/macrolactin-e.yaml","macrolactin E"],["polyketides/macrolactin-h.yaml","macrolactin H"]]},{"id":"NCBITaxon:103232","l":"Streptomyces ipomoeae","na":1,"nb":3,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["amino_acids_and_peptides/thaxtomin-c.yaml","thaxtomin C"],["unclassified/thaxtomin-a.yaml","thaxtomin A"],["unclassified/thaxtomin-b.yaml","thaxtomin B"]]},{"id":"NCBITaxon:107635","l":"Methylosinus sp. LW3","na":3,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"]],"b":[["amino_acids_and_peptides/group-1-methanobactin.yaml","group 1 methanobactin"]]},{"id":"NCBITaxon:1570","l":"Halobacillus halophilus","na":3,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:1904","l":"Streptomyces cyaneus","na":1,"nb":3,"a":[["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["carbohydrates/curamycin.yaml","curamycin"],["polyketides/cardol.yaml","cardol"],["polyketides/cosmomycin-d.yaml","cosmomycin D"]]},{"id":"NCBITaxon:1935","l":"Streptomyces violaceoruber","na":1,"nb":3,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["polyketides/granaticin.yaml","granaticin"],["polyketides/kendomycin.yaml","kendomycin"],["terpenoids/methylenomycin-a.yaml","methylenomycin A"]]},{"id":"NCBITaxon:216591","l":"Burkholderia cenocepacia J2315","na":1,"nb":3,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["unclassified/ornibactin-c4.yaml","ornibactin C4"],["unclassified/ornibactin-c6.yaml","ornibactin C6"],["unclassified/ornibactin-c8.yaml","ornibactin C8"]]},{"id":"NCBITaxon:216595","l":"","na":3,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["human-construction-envo-00000070.html","human construction"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["unclassified/viscosin.yaml","viscosin"]]},{"id":"NCBITaxon:237","l":"Flavobacterium","na":3,"nb":1,"a":[["column-bto-0005692.html","column"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"]]},{"id":"NCBITaxon:264951","l":"Paecilomyces variotii","na":1,"nb":3,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["polyketides/agnestin-a.yaml","agnestin A"],["polyketides/agnestin-b.yaml","agnestin B"],["polyketides/viriditoxin.yaml","viriditoxin"]]},{"id":"NCBITaxon:28447","l":"Clavibacter michiganensis","na":3,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["canker-habitatmech-bacdive-0f078d72a7.html","Canker"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["amino_acids_and_peptides/michiganin-a.yaml","michiganin A"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":3,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["sludge-envo-00002044.html","sludge"],["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"NCBITaxon:384676","l":"Pseudomonas entomophila L48","na":1,"nb":3,"a":[["coelom-bto-0001707.html","coelom"]],"b":[["alkaloids/labradorin-1.yaml","labradorin 1"],["alkaloids/labradorin-2.yaml","labradorin 2"],["alkaloids/pimprinine.yaml","pimprinine"]]},{"id":"NCBITaxon:388467","l":"Planktothrix agardhii NIVA-CYA 126/8","na":1,"nb":3,"a":[["filament-bto-0000463.html","filament"]],"b":[["amino_acids_and_peptides/anabaenopeptin-908.yaml","anabaenopeptin 908"],["amino_acids_and_peptides/anabaenopeptin-915.yaml","anabaenopeptin 915"],["amino_acids_and_peptides/microcystin.yaml","microcystin"]]},{"id":"NCBITaxon:393595","l":"Alcanivorax borkumensis SK2","na":1,"nb":3,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["amino_acids_and_peptides/amphibactin-e.yaml","amphibactin E"],["amino_acids_and_peptides/amphibactin-h.yaml","amphibactin H"],["fatty_acids/amphibactin-i.yaml","amphibactin I"]]},{"id":"NCBITaxon:448385","l":"","na":1,"nb":3,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["polyketides/etnangien.yaml","etnangien"],["polyketides/soraphen-a.yaml","soraphen A"],["terpenoids/eremophilene.yaml","(+)-eremophilene"]]},{"id":"NCBITaxon:45","l":"Melittangium lichenicola","na":3,"nb":1,"a":[["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["unclassified/melithiazol-a.yaml","melithiazol A"]]},{"id":"NCBITaxon:469371","l":"Thermobispora bispora DSM 43833","na":3,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["amino_acids_and_peptides/thiomuracin.yaml","thiomuracin"]]},{"id":"NCBITaxon:47312","l":"Tsukamurella pulmonis","na":3,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["tuberculosis-habitatmech-bacdive-e5d21f85b7.html","Tuberculosis"]],"b":[["amino_acids_and_peptides/longicatenamide-a.yaml","longicatenamide A"]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":3,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:757424","l":"Herbaspirillum seropedicae SmR1","na":1,"nb":3,"a":[["environmental-material-envo-00010483.html","environmental material"]],"b":[["amino_acids_and_peptides/serobactin-a.yaml","serobactin A"],["amino_acids_and_peptides/serobactin-b.yaml","serobactin B"],["amino_acids_and_peptides/serobactin-c.yaml","serobactin C"]]},{"id":"NCBITaxon:1074049","l":"Candidatus Burkholderia crenata","na":2,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"],["seedling-bto-0001228.html","seedling"]],"b":[["unclassified/fr900359.yaml","FR900359"]]},{"id":"NCBITaxon:1122611","l":"Nonomuraea coxensis DSM 45129","na":1,"nb":2,"a":[["sand-envo-01000017.html","sand"]],"b":[["amino_acids_and_peptides/a50926-a.yaml","A50926 A"],["amino_acids_and_peptides/a50926-b.yaml","A50926 B"]]},{"id":"NCBITaxon:1267754","l":"Corynebacterium urealyticum DSM 7111","na":2,"nb":1,"a":[["kidney-bto-0000671.html","kidney"],["urinary-tract-bto-0001244.html","urinary tract"]],"b":[["amino_acids_and_peptides/corynazolicin.yaml","corynazolicin"]]},{"id":"NCBITaxon:1281","l":"Staphylococcus carnosus","na":2,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["alkaloids/molybdenum-cofactor.yaml","molybdenum cofactor"]]},{"id":"NCBITaxon:1284","l":"Staphylococcus hyicus","na":1,"nb":2,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["unclassified/staphyloferrin-a.yaml","staphyloferrin A"]]},{"id":"NCBITaxon:1360","l":"Lactococcus lactis subsp. lactis","na":1,"nb":2,"a":[["foregut-bto-0000507.html","foregut"]],"b":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"],["amino_acids_and_peptides/nisin-a.yaml","nisin A"]]},{"id":"NCBITaxon:13684","l":"Parastagonospora nodorum","na":2,"nb":1,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["desert-sand-envo-00005800.html","desert sand"]],"b":[["shikimates_and_phenylpropanoids/mellein.yaml","(-)-Mellein"]]},{"id":"NCBITaxon:13689","l":"Sphingomonas paucimobilis","na":2,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"]],"b":[["unclassified/minimycin.yaml","minimycin"]]},{"id":"NCBITaxon:1550035","l":"Streptomyces sp. NBRC 109706","na":1,"nb":2,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["polyketides/akaeolide.yaml","akaeolide"],["polyketides/lorneic-acid-a.yaml","lorneic acid A"]]},{"id":"NCBITaxon:1703","l":"Brevibacterium linens","na":1,"nb":2,"a":[["animal-waste-material-envo-00002276.html","animal waste material"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"],["terpenoids/isorenieratene.yaml","isorenieratene"]]},{"id":"NCBITaxon:173560","l":"Saccharothrix algeriensis","na":1,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["alkaloids/holomycin.yaml","holomycin"],["alkaloids/thiolutin.yaml","thiolutin"]]},{"id":"NCBITaxon:1946","l":"Streptomyces kasugaensis","na":1,"nb":2,"a":[["plain-envo-00000086.html","plain"]],"b":[["alkaloids/thiolutin.yaml","thiolutin"],["carbohydrates/kasugamycin.yaml","kasugamycin"]]},{"id":"NCBITaxon:2014","l":"Nocardiopsis dassonvillei","na":2,"nb":1,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["alkaloids/iodinin.yaml","iodinin"]]},{"id":"NCBITaxon:2045","l":"Nocardioides simplex","na":2,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:205918","l":"Pseudomonas syringae pv. syringae B728a","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["alkaloids/secimide.yaml","secimide"],["unclassified/syringomycin.yaml","syringomycin"]]},{"id":"NCBITaxon:2062","l":"Streptomycetaceae","na":1,"nb":2,"a":[["crop-bto-0000301.html","crop"]],"b":[["alkaloids/carbazomycin-b.yaml","carbazomycin B"],["unclassified/quinomycin.yaml","quinomycin"]]},{"id":"NCBITaxon:234621","l":"Rhodococcus erythropolis PR4","na":1,"nb":2,"a":[["joint-bto-0001686.html","joint"]],"b":[["amino_acids_and_peptides/heterobactin-a.yaml","heterobactin A"],["amino_acids_and_peptides/heterobactin-s2.yaml","heterobactin S2"]]},{"id":"NCBITaxon:249586","l":"","na":1,"nb":2,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["carbohydrates/polyoxin-a.yaml","polyoxin A"],["carbohydrates/polyoxin-h.yaml","polyoxin H"]]},{"id":"NCBITaxon:263358","l":"Verrucosispora maris AB-18-032","na":1,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["polyketides/abyssomicin-c.yaml","abyssomicin C"],["polyketides/atrop-abyssomicin-c.yaml","atrop-abyssomicin C"]]},{"id":"NCBITaxon:28094","l":"Trinickia caryophylli","na":1,"nb":2,"a":[["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["amino_acids_and_peptides/gramibactin-b.yaml","gramibactin B"],["fatty_acids/caryoynencin.yaml","caryoynencin"]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["carbohydrates/legionaminic-acid.yaml","legionaminic acid"],["carbohydrates/pseudaminate.yaml","pseudaminate"]]},{"id":"NCBITaxon:298386","l":"Photobacterium profundum SS9","na":2,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["underground-water-envo-00005792.html","underground water"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans Pd1222","na":2,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["alkaloids/parabactin.yaml","parabactin"]]},{"id":"NCBITaxon:337330","l":"Lactiplantibacillus plantarum subsp. plantarum","na":2,"nb":1,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:357","l":"Agrobacterium","na":2,"nb":1,"a":[["stem-bto-0001300.html","stem"],["trunk-bto-0001493.html","trunk"]],"b":[["alkaloids/sesbanimide-c.yaml","sesbanimide C"]]},{"id":"NCBITaxon:362242","l":"","na":2,"nb":1,"a":[["subcutaneous-tissue-bto-0004525.html","subcutaneous tissue"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["polyketides/mycolactone-b.yaml","mycolactone B"]]},{"id":"NCBITaxon:36746","l":"Pseudomonas cichorii","na":1,"nb":2,"a":[["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["amino_acids_and_peptides/cichofactin-a.yaml","cichofactin A"],["amino_acids_and_peptides/cichofactin-b.yaml","cichofactin B"]]},{"id":"NCBITaxon:37329","l":"Nocardia farcinica","na":2,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["amino_acids_and_peptides/nocobactin-na.yaml","nocobactin NA"]]},{"id":"NCBITaxon:397945","l":"","na":1,"nb":2,"a":[["river-bed-envo-00000384.html","river bed"]],"b":[["unclassified/acidobactin-a.yaml","acidobactin A"],["unclassified/acidobactin-b.yaml","acidobactin B"]]},{"id":"NCBITaxon:41899","l":"Burkholderia plantarii","na":2,"nb":1,"a":[["panicle-bto-0005436.html","panicle"],["seedling-bto-0001228.html","seedling"]],"b":[["amino_acids_and_peptides/plantaribactin.yaml","plantaribactin"]]},{"id":"NCBITaxon:42234","l":"Streptomyces acidiscabies","na":1,"nb":2,"a":[["a10-cell-bto-0002196.html","A10 cell"]],"b":[["fatty_acids/butyrolactone.yaml","γ-butyrolactone"],["unclassified/thaxtomin-a.yaml","thaxtomin A"]]},{"id":"NCBITaxon:443906","l":"Clavibacter michiganensis subsp. michiganensis NCPPB 382","na":2,"nb":1,"a":[["xylem-bto-0001468.html","xylem"],["peatland-envo-00000044.html","peatland"]],"b":[["amino_acids_and_peptides/michiganin-a.yaml","michiganin A"]]},{"id":"NCBITaxon:4558","l":"Sorghum bicolor","na":1,"nb":2,"a":[["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["amino_acids_and_peptides/s-4-hydroxymandelonitrile-d-glucoside.yaml","(S)-4-hydroxymandelonitrile β-D-glucoside"],["shikimates_and_phenylpropanoids/alternariol.yaml","alternariol"]]},{"id":"NCBITaxon:457429","l":"Streptomyces pristinaespiralis ATCC 25486","na":1,"nb":2,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["amino_acids_and_peptides/pristinin-a3.yaml","pristinin A3"],["terpenoids/2s-3r-9r-pristinol.yaml","(+)-(2S,3R,9R)-pristinol"]]},{"id":"NCBITaxon:47917","l":"Serratia fonticola","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"]],"b":[["alkaloids/1-6-phenazinedimethanol.yaml","1,6-phenazinedimethanol"]]},{"id":"NCBITaxon:497965","l":"","na":2,"nb":1,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["fatty_acids/1-heptadecene.yaml","1-heptadecene"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":1,"nb":2,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["amino_acids_and_peptides/aerobactin.yaml","aerobactin"],["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:58340","l":"Streptomyces lavendulae subsp. lavendulae","na":1,"nb":2,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["amino_acids_and_peptides/cycloserine.yaml","cycloserine"],["polyketides/auricin.yaml","auricin"]]},{"id":"NCBITaxon:587","l":"Providencia rettgeri","na":2,"nb":1,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["fumarole-envo-00000216.html","fumarole"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:60550","l":"Burkholderia pyrrocinia","na":1,"nb":2,"a":[["seedling-bto-0001228.html","seedling"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/occidiofungin-a.yaml","occidiofungin A"]]},{"id":"NCBITaxon:60894","l":"Saccharopolyspora spinosa","na":1,"nb":2,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["polyketides/a83543a.yaml","A83543A"],["polyketides/spinosyn-d.yaml","spinosyn D"]]},{"id":"NCBITaxon:648","l":"Aeromonas caviae","na":2,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:65","l":"Herpetosiphon aurantiacus","na":1,"nb":2,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["alkaloids/auriculamide.yaml","auriculamide"],["terpenoids/o-methylkolavelool.yaml","(+)-O-methylkolavelool"]]},{"id":"NCBITaxon:67274","l":"Streptomyces argenteolus","na":1,"nb":2,"a":[["plain-envo-00000086.html","plain"]],"b":[["amino_acids_and_peptides/carbapenem-mm4550.yaml","carbapenem MM4550"],["terpenoids/ks-505a.yaml","KS-505a"]]},{"id":"NCBITaxon:68042","l":"Streptomyces hygroscopicus subsp. hygroscopicus","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["terpenoids/hygromycin-a.yaml","hygromycin A"]]},{"id":"NCBITaxon:68170","l":"","na":1,"nb":2,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["alkaloids/rebeccamycin.yaml","rebeccamycin"],["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:68203","l":"Streptomyces fungicidicus","na":1,"nb":2,"a":[["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["unclassified/enduracidin-a.yaml","enduracidin A"],["unclassified/enduracidin-b.yaml","enduracidin B"]]},{"id":"NCBITaxon:71999","l":"Kocuria palustris","na":2,"nb":1,"a":[["duodenal-mucosa-bto-0000367.html","duodenal mucosa"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"]],"b":[["amino_acids_and_peptides/kocurin.yaml","kocurin"]]},{"id":"NCBITaxon:720","l":"Actinobacillus lignieresii","na":2,"nb":1,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["unclassified/capsular-polysaccharide.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:80866","l":"Delftia acidovorans","na":1,"nb":2,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["amino_acids_and_peptides/delftibactin-a.yaml","delftibactin A"],["amino_acids_and_peptides/delftibactin-b.yaml","delftibactin B"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":2,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["fatty_acids/galactosylceramide.yaml","α-galactosylceramide"]]},{"id":"NCBITaxon:88728","l":"Pinus koraiensis","na":2,"nb":1,"a":[["lagoon-envo-00000038.html","lagoon"],["tropical-envo-01000204.html","tropical"]],"b":[["terpenoids/koraiol.yaml","koraiol"]]},{"id":"NCBITaxon:9031","l":"Gallus gallus","na":2,"nb":1,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:92743","l":"","na":1,"nb":2,"a":[["plain-envo-00000086.html","plain"]],"b":[["amino_acids_and_peptides/malonomycin.yaml","malonomycin"],["carbohydrates/paromomycin.yaml","paromomycin"]]},{"id":"NCBITaxon:1004","l":"Chitinophaga sancti","na":1,"nb":1,"a":[["plant-bto-0001481.html","plant"]],"b":[["polyketides/elansolid-a1.yaml","elansolid A1"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"]]},{"id":"NCBITaxon:1077944","l":"Streptomyces muensis","na":1,"nb":1,"a":[["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["unclassified/griselimycin.yaml","griselimycin"]]},{"id":"NCBITaxon:1091494","l":"Methylotuvimicrobium alcaliphilum 20Z","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:1108595","l":"Chromobacterium vaccinii","na":1,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["unclassified/fr900359-2.yaml","FR900359"]]},{"id":"NCBITaxon:111781","l":"Leptolyngbya sp. PCC 7376","na":1,"nb":1,"a":[["rock-envo-00001995.html","rock"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"]]},{"id":"NCBITaxon:111807","l":"Actinomadura yumaensis","na":1,"nb":1,"a":[["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["polyketides/maduramicin.yaml","maduramicin"]]},{"id":"NCBITaxon:1137255","l":"Salinispora arenicola CNT005","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["unclassified/retimycin-a.yaml","retimycin A"]]},{"id":"NCBITaxon:114497","l":"Cordyceps fumosorosea","na":1,"nb":1,"a":[["low-tide-zone-envo-00000319.html","low tide zone"]],"b":[["polyketides/fumosorinone.yaml","fumosorinone"]]},{"id":"NCBITaxon:1200302","l":"Photobacterium damselae subsp. piscicida DI21","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["alkaloids/piscibactin.yaml","piscibactin"]]},{"id":"NCBITaxon:1293","l":"Staphylococcus gallinarum","na":1,"nb":1,"a":[["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["amino_acids_and_peptides/gallidermin.yaml","gallidermin"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["alkaloids/petrobactin.yaml","petrobactin"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:1599","l":"Latilactobacillus sakei","na":1,"nb":1,"a":[["research-facility-envo-00000469.html","research facility"]],"b":[["unclassified/lactocin-s.yaml","lactocin S"]]},{"id":"NCBITaxon:173365","l":"Methylobacter tundripaludum","na":1,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["unclassified/tundrenone.yaml","tundrenone"]]},{"id":"NCBITaxon:1989","l":"Actinomadura sp.","na":1,"nb":1,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["polyketides/maduramicin.yaml","maduramicin"]]},{"id":"NCBITaxon:1993","l":"Actinomadura madurae","na":1,"nb":1,"a":[["foot-bto-0000476.html","foot"]],"b":[["polyketides/maduropeptin.yaml","maduropeptin"]]},{"id":"NCBITaxon:2074","l":"Pseudonocardia autotrophica","na":1,"nb":1,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["polyketides/nystatin-like-pseudonocardia-polyene-a1.yaml","nystatin-like Pseudonocardia polyene A1"]]},{"id":"NCBITaxon:216895","l":"Vibrio vulnificus CMCP6","na":1,"nb":1,"a":[["hela-cell-bto-0000567.html","HeLa cell"]],"b":[["alkaloids/vulnibactin.yaml","vulnibactin"]]},{"id":"NCBITaxon:22","l":"Shewanella","na":1,"nb":1,"a":[["wood-bto-0005516.html","wood"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"NCBITaxon:226","l":"Alteromonas","na":1,"nb":1,"a":[["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["unclassified/marinostatin.yaml","marinostatin"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":1,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["alkaloids/parabactin.yaml","parabactin"]]},{"id":"NCBITaxon:267747","l":"Cutibacterium acnes KPA171202","na":1,"nb":1,"a":[["sebaceous-gland-bto-0001980.html","sebaceous gland"]],"b":[["amino_acids_and_peptides/cutimycin.yaml","cutimycin"]]},{"id":"NCBITaxon:28035","l":"Staphylococcus lugdunensis","na":1,"nb":1,"a":[["foot-bto-0000476.html","foot"]],"b":[["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]]},{"id":"NCBITaxon:28450","l":"Burkholderia pseudomallei","na":1,"nb":1,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"]],"b":[["polyketides/malleilactone.yaml","malleilactone"]]},{"id":"NCBITaxon:285482","l":"Streptomyces tsusimaensis","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["unclassified/valinomycin-2.yaml","valinomycin"]]},{"id":"NCBITaxon:29447","l":"Xanthomonas albilineans","na":1,"nb":1,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["alkaloids/albicidin.yaml","albicidin"]]},{"id":"NCBITaxon:298653","l":"Frankia sp. EAN1pec","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["polyketides/frankiamicin.yaml","frankiamicin"]]},{"id":"NCBITaxon:299254","l":"Streptomyces sp. NRRL 11266","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["polyketides/tetronomycin.yaml","tetronomycin"]]},{"id":"NCBITaxon:307120","l":"Micromonospora marina","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["unclassified/thiocoraline.yaml","thiocoraline"]]},{"id":"NCBITaxon:312309","l":"","na":1,"nb":1,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["unclassified/ape-vf.yaml","APE Vf"]]},{"id":"NCBITaxon:322710","l":"Azotobacter vinelandii DJ","na":1,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["amino_acids_and_peptides/azotobactin-d.yaml","azotobactin D"]]},{"id":"NCBITaxon:333964","l":"Xenorhabdus indica","na":1,"nb":1,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["unclassified/taxlllaid-a.yaml","taxlllaid A"]]},{"id":"NCBITaxon:33915","l":"Saccharopolyspora sp.","na":1,"nb":1,"a":[["forested-area-envo-00000111.html","forested area"]],"b":[["amino_acids_and_peptides/kyamicin.yaml","kyamicin"]]},{"id":"NCBITaxon:349521","l":"Hahella chejuensis KCTC 2396","na":1,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["alkaloids/prodigiosin-2.yaml","prodigiosin"]]},{"id":"NCBITaxon:349725","l":"Micromonospora sp. ML1","na":1,"nb":1,"a":[["clay-envo-00002982.html","clay"]],"b":[["unclassified/thiocoraline.yaml","thiocoraline"]]},{"id":"NCBITaxon:3654","l":"Citrullus lanatus","na":1,"nb":1,"a":[["wood-bto-0005516.html","wood"]],"b":[["fatty_acids/butyrolactone.yaml","γ-butyrolactone"]]},{"id":"NCBITaxon:376686","l":"","na":1,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["polyketides/flexirubin.yaml","flexirubin"]]},{"id":"NCBITaxon:38313","l":"Shewanella algae","na":1,"nb":1,"a":[["foot-bto-0000476.html","foot"]],"b":[["amino_acids_and_peptides/avaroferrin.yaml","avaroferrin"]]},{"id":"NCBITaxon:384","l":"Rhizobium leguminosarum","na":1,"nb":1,"a":[["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["amino_acids_and_peptides/vicibactin.yaml","vicibactin"]]},{"id":"NCBITaxon:394193","l":"Amycolatopsis saalfeldensis","na":1,"nb":1,"a":[["cave-envo-00000067.html","cave"]],"b":[["amino_acids_and_peptides/saalfelduracin.yaml","saalfelduracin"]]},{"id":"NCBITaxon:40223","l":"Methylophaga thalassica","na":1,"nb":1,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:4113","l":"Solanum tuberosum","na":1,"nb":1,"a":[["tuber-bto-0001400.html","tuber"]],"b":[["fatty_acids/itaconic-acid.yaml","itaconic acid"]]},{"id":"NCBITaxon:41276","l":"Brevundimonas vesicularis","na":1,"nb":1,"a":[["forested-area-envo-00000111.html","forested area"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:43769","l":"Corynebacterium propinquum","na":1,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["amino_acids_and_peptides/dehydroxynocardamine.yaml","dehydroxynocardamine"]]},{"id":"NCBITaxon:446787","l":"Actinopolymorpha rutila","na":1,"nb":1,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"]]},{"id":"NCBITaxon:45071","l":"Legionella parisiensis","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["shikimates_and_phenylpropanoids/legioliulin.yaml","legioliulin"]]},{"id":"NCBITaxon:4513","l":"Hordeum vulgare","na":1,"nb":1,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["unclassified/roquefortine-c.yaml","roquefortine C"]]},{"id":"NCBITaxon:452652","l":"Kitasatospora setae KM-6054","na":1,"nb":1,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["alkaloids/kitasetaline.yaml","kitasetaline"]]},{"id":"NCBITaxon:463","l":"Fluoribacter dumoffii","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["shikimates_and_phenylpropanoids/legioliulin.yaml","legioliulin"]]},{"id":"NCBITaxon:488447","l":"Burkholderia contaminans","na":1,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["amino_acids_and_peptides/occidiofungin-a.yaml","occidiofungin A"]]},{"id":"NCBITaxon:512","l":"Alcaligenes sp","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["polyketides/kalimantacin-a.yaml","kalimantacin A"]]},{"id":"NCBITaxon:53409","l":"Pseudomonas coronafaciens","na":1,"nb":1,"a":[["pc-12-cell-bto-0001009.html","PC-12 cell"]],"b":[["polyketides/coronatine.yaml","coronatine"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":1,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:547","l":"Enterobacter","na":1,"nb":1,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["amino_acids_and_peptides/andrimid.yaml","andrimid"]]},{"id":"NCBITaxon:570268","l":"Nocardiopsis potens DSM 45234","na":1,"nb":1,"a":[["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"]],"b":[["amino_acids_and_peptides/potensibactin.yaml","potensibactin"]]},{"id":"NCBITaxon:591158","l":"Streptomyces sp. AA4","na":1,"nb":1,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["amino_acids_and_peptides/amychelin-a.yaml","amychelin A"]]},{"id":"NCBITaxon:60890","l":"Phaeobacter gallaeciensis","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["shikimates_and_phenylpropanoids/tropodithietic-acid.yaml","tropodithietic acid"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":1,"nb":1,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["unclassified/ape-vf.yaml","APE Vf"]]},{"id":"NCBITaxon:68175","l":"Streptomyces antimycoticus","na":1,"nb":1,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["terpenoids/napyradiomycin.yaml","napyradiomycin"]]},{"id":"NCBITaxon:68242","l":"Streptomyces natalensis","na":1,"nb":1,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["polyketides/natamycin.yaml","natamycin"]]},{"id":"NCBITaxon:69485","l":"Actinoplanes garbadinensis","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["amino_acids_and_peptides/actagardine.yaml","actagardine"]]},{"id":"NCBITaxon:703577","l":"Dactylosporangium aurantiacum subsp. hamdenensis","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["polyketides/tiacumicin-b.yaml","tiacumicin B"]]},{"id":"NCBITaxon:715","l":"Actinobacillus pleuropneumoniae","na":1,"nb":1,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["unclassified/capsular-polysaccharide.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["unclassified/lysocin-e.yaml","lysocin E"]]},{"id":"NCBITaxon:749414","l":"","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["polyketides/nanchangmycin.yaml","nanchangmycin"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":1,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["unclassified/mycobactin.yaml","mycobactin"]]},{"id":"NCBITaxon:85336","l":"Rothia nasimurium","na":1,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"]],"b":[["unclassified/valinomycin-2.yaml","valinomycin"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/HabitatMech--ProteinTraitsMech.json b/assets/fleet/edges/HabitatMech--ProteinTraitsMech.json index 5d7ba65..899b66a 100644 --- a/assets/fleet/edges/HabitatMech--ProteinTraitsMech.json +++ b/assets/fleet/edges/HabitatMech--ProteinTraitsMech.json @@ -1 +1 @@ -{"a":"HabitatMech","b":"ProteinTraitsMech","base":{"HabitatMech":"https://culturebotai.github.io/HabitatMech/pages/habitats/","ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record="},"n":1250,"by":{"NCBITaxon":1234,"UBERON":12,"CHEBI":2,"GO":2},"terms":[{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":40,"nb":46,"a":[["liquid-water-envo-00002006.html","liquid water"],["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["laboratory-facility-envo-01001406.html","laboratory facility"],["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["biofilm-bto-0002690.html","biofilm"]],"b":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF13166","AAA domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF27533","CapK C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":36,"nb":145,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["bay-envo-00000032.html","bay"],["freshwater-biome-envo-00000873.html","freshwater biome"],["liquid-water-envo-00002006.html","liquid water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["IDPO%3A0000033","flexible linker"],["IDPO%3A0000014","order to disorder"],["IDPO%3A0000004","pre-molten globule"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"]]},{"id":"NCBITaxon:1869227","l":"bacterium","na":26,"nb":57,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["marine-water-body-envo-00001999.html","marine water body"],["watercourse-envo-00000029.html","watercourse"],["laboratory-facility-envo-01001406.html","laboratory facility"]],"b":[["TED%3AAF-A0A2D6E3L3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D6E3L3-F1-model_v4_TED02"],["TED%3AAF-A0A2D6IMF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D6IMF4-F1-model_v4_TED01"],["TED%3AAF-A0A3N5GA95-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3N5GA95-F1-model_v4_TED02"],["TED%3AAF-A0A3N5I065-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N5I065-F1-model_v4_TED01"],["TED%3AAF-A0A496UYV5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A496UYV5-F1-model_v4_TED02"],["TED%3AAF-A0A4Q3U385-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q3U385-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":27,"nb":23,"a":[["small-river-biome-envo-00000890.html","small river biome"],["factory-envo-01000536.html","factory"],["organic-waste-material-envo-00002873.html","organic waste material"],["leaf-po-0025034.html","leaf"],["milk-uberon-0001913.html","milk"],["rhizosphere-envo-00005801.html","rhizosphere"]],"b":[["Pfam%3APF08878","HamA"],["Pfam%3APF05791","Bacillus haemolytic enterotoxin (HBL)"],["Pfam%3APF10803","Spore germination GerPB"],["Pfam%3APF10737","Spore germination protein GerPC"],["Pfam%3APF10970","Spore germination protein GerPE"],["Pfam%3APF07486","Cell Wall Hydrolase"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":28,"nb":19,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["liquid-water-envo-00002006.html","liquid water"],["watercourse-envo-00000029.html","watercourse"],["compost-envo-00002170.html","compost"],["hospital-envo-00002173.html","hospital"],["human-construction-envo-00000070.html","human construction"]],"b":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"],["Pfam%3APF18173","Bacterial HORMA domain 2"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["Pfam%3APF27322","Cap8 HORMA domain"],["Pfam%3APF01526","Tn3 transposase DDE domain"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":18,"nb":16,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["Pfam%3APF16822","SGNH hydrolase-like domain, acetyltransferase AlgX"],["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"],["Pfam%3APF11182","Alginate O-acetyl transferase AlgF"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF27129","Functional amyloid protein FapB/FapC family"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":13,"nb":30,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["neutrophil-bto-0000130.html","neutrophil"],["rectum-bto-0001158.html","rectum"],["spleen-bto-0001281.html","spleen"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["Pfam%3APF08787","Alginate lyase"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF08218","Citrate lyase ligase C-terminal domain"],["Pfam%3APF13727","CoA-binding domain"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["Pfam%3APF20714","DpiA-like helix-turn-helix domain"]]},{"id":"NCBITaxon:56","l":"Sorangium cellulosum","na":27,"nb":13,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["watercourse-envo-00000029.html","watercourse"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["TED%3AAF-A0A150SQB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A150SQB4-F1-model_v4_TED01"],["TED%3AAF-A0A2L0EP96-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0EP96-F1-model_v4_TED01"],["TED%3AAF-A0A2L0F1G5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0F1G5-F1-model_v4_TED01"],["TED%3AAF-A0A2L0F230-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0F230-F1-model_v4_TED01"],["TED%3AAF-A0A4P2R1W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P2R1W3-F1-model_v4_TED01"],["TED%3AAF-A0A150P579-F1-model_v4_TED02","TED novel fold AF-A0A150P579-F1-model_v4_TED02"]]},{"id":"NCBITaxon:54","l":"Nannocystis exedens","na":22,"nb":13,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["watercourse-envo-00000029.html","watercourse"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["TED%3AAF-A0A1I2A5Z6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2A5Z6-F1-model_v4_TED01"],["TED%3AAF-A0A1I2FM38-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I2FM38-F1-model_v4_TED02"],["TED%3AAF-A0A1I2H0F9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2H0F9-F1-model_v4_TED01"],["TED%3AAF-A0A831ZMD9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A831ZMD9-F1-model_v4_TED01"],["TED%3AAF-A0A1I1T6U3-F1-model_v4_TED01","TED novel fold AF-A0A1I1T6U3-F1-model_v4_TED01"],["TED%3AAF-A0A1I1XLT5-F1-model_v4_TED02","TED novel fold AF-A0A1I1XLT5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":11,"nb":20,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["resting-cell-bto-0001170.html","resting cell"],["seedling-bto-0001228.html","seedling"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Pfam%3APF14535","AMP-binding enzyme C-terminal domain"],["Pfam%3APF13442","Cytochrome C oxidase, cbb3-type, subunit III"],["Pfam%3APF22247","Catechol 2,3-dioxygenase-like N-terminal domain"],["Pfam%3APF25371","Domain of unknown function (DUF7884)"],["Pfam%3APF19301","LigXa C-terminal domain like"],["Pfam%3APF12729","Four helix bundle sensory module for signal transduction"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":10,"nb":15,"a":[["anther-bto-0000079.html","anther"],["epithelial-cell-bto-0000414.html","epithelial cell"],["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["Pfam%3APF14562","Restriction endonuclease BglI"],["Pfam%3APF09195","Restriction endonuclease BglII/BglIII"],["Pfam%3APF09208","Restriction endonuclease MspI"]]},{"id":"NCBITaxon:10116","l":"Rattus norvegicus","na":9,"nb":1002,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["biotope-envo-00002036.html","biotope"],["farm-envo-00000078.html","farm"],["intestine-environment-envo-2100002.html","intestine environment"],["organic-material-envo-01000155.html","organic material"]],"b":[["IDPO%3A0000011","disorder to order"],["IDPO%3A0000030","entropic chain"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000033","flexible linker"],["IDPO%3A0000041","glycosylation display site"],["IDPO%3A0000003","molten globule"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":9,"nb":14,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["fresh-water-envo-00002011.html","fresh water"],["river-envo-00000022.html","river"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["Pfam%3APF03703","Bacterial PH domain"],["Pfam%3APF01322","Cytochrome C'"],["Pfam%3APF03139","Vanadium/alternative nitrogenase delta subunit"],["Pfam%3APF09527","Putative F0F1-ATPase subunit Ca2+/Mg2+ transporter"],["Pfam%3APF03270","Protein of unknown function, DUF269"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"]]},{"id":"NCBITaxon:39946","l":"Oryza sativa subsp. indica","na":13,"nb":9,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["eutrophic-water-envo-00002224.html","eutrophic water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["Pfam%3APF17538","DNA Binding Domain (C-terminal) Leafy/Floricaula"],["Pfam%3APF23703","DExH-box ATP-dependent RNA helicase DExH18, N-terminal"],["Pfam%3APF02496","ABA/WDS induced protein"],["Pfam%3APF06351","Allene oxide cyclase"],["Pfam%3APF02514","CobN/Magnesium Chelatase"],["Pfam%3APF05558","DREPP plasma membrane polypeptide"]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":12,"nb":9,"a":[["hospital-envo-00002173.html","hospital"],["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["epithelial-cell-bto-0000414.html","epithelial cell"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["meninx-bto-0000144.html","meninx"]],"b":[["Pfam%3APF19567","Capsular polysaccharide synthesis, CpsB/CapC"],["Pfam%3APF07501","G5 domain"],["Pfam%3APF13551","Winged helix-turn helix"],["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF03047","COMC family"],["Pfam%3APF04556","DpnII restriction endonuclease"]]},{"id":"NCBITaxon:10090","l":"Mus musculus","na":8,"nb":45870,"a":[["river-envo-00000022.html","river"],["animal-manure-envo-00003031.html","animal manure"],["biotope-envo-00002036.html","biotope"],["intestine-environment-envo-2100002.html","intestine environment"],["urban-biome-envo-01000249.html","urban biome"],["sediment-envo-00002007.html","sediment"]],"b":[["EC%3A1.1.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.1.98.-","With other, known, acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"]]},{"id":"NCBITaxon:1265","l":"Ruminococcus flavefaciens","na":29,"nb":8,"a":[["biofilm-envo-00002034.html","biofilm"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["TED%3AAF-A0A1H6I5C3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1H6I5C3-F1-model_v4_TED03"],["TED%3AAF-A0A1K2AQV3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1K2AQV3-F1-model_v4_TED01"],["TED%3AAF-A0A1M7IZN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M7IZN6-F1-model_v4_TED01"],["TED%3AAF-A0A1H6IY18-F1-model_v4_TED01","TED novel fold AF-A0A1H6IY18-F1-model_v4_TED01"],["TED%3AAF-A0A1K1WYY5-F1-model_v4_TED01","TED novel fold AF-A0A1K1WYY5-F1-model_v4_TED01"],["TED%3AAF-A0A1K2C3A7-F1-model_v4_TED01","TED novel fold AF-A0A1K2C3A7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":17,"nb":8,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["hospital-envo-00002173.html","hospital"],["egg-food-product-foodon-00001274.html","egg food product"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["Pfam%3APF01721","Class II bacteriocin"],["Pfam%3APF13700","Domain of unknown function (DUF4158)"],["Pfam%3APF07478","D-ala D-ala ligase C-terminus"],["Pfam%3APF01820","D-ala D-ala ligase N-terminus"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"],["PROSITE%3APS00843","D-alanine--D-alanine ligase signature 1"]]},{"id":"NCBITaxon:210","l":"Helicobacter pylori","na":8,"nb":9,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["hospital-envo-00002173.html","hospital"],["duodenum-bto-0000365.html","duodenum"],["gastric-juice-bto-0000501.html","gastric juice"],["gastric-mucosa-bto-0001308.html","gastric mucosa"],["gastric-ulcer-bto-0002990.html","gastric ulcer"]],"b":[["Pfam%3APF18025","Alpha-(1,3)-fucosyltransferase FucT N-terminal domain"],["Pfam%3APF18971","CagA protein"],["Pfam%3APF03507","CagA exotoxin phosphopeptide substrate mimic region"],["Pfam%3APF02691","Vacuolating cyotoxin beta-helical domain"],["TED%3AAF-A0A2T6UWI4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T6UWI4-F1-model_v4_TED01"],["TED%3AAF-A0A1Q9JB12-F1-model_v4_TED01","TED novel fold AF-A0A1Q9JB12-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":8,"nb":8,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["lab-synthesis-habitatmech-bacdive-0e92e77cd4.html","Lab-synthesis"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["oil-spill-envo-00002061.html","oil spill"],["temperate-envo-01000206.html","temperate"]],"b":[["Pfam%3APF01890","Cobalamin synthesis G C-terminus"],["Pfam%3APF11761","Cobalamin biosynthesis central region"],["Pfam%3APF11760","Cobalamin synthesis G N-terminal"],["Pfam%3APF02570","Precorrin-8X methylmutase"],["PROSITE%3APS00304","Small, acid-soluble spore proteins, alpha/beta type, signature 1"],["PROSITE%3APS00684","Small, acid-soluble spore proteins, alpha/beta type, signature 2"]]},{"id":"NCBITaxon:165179","l":"Segatella copri","na":7,"nb":13,"a":[["biofilm-envo-00002034.html","biofilm"],["juvenile-bto-0002168.html","juvenile"],["rumen-uberon-0007365.html","rumen"],["tongue-bto-0001385.html","tongue"],["vaginal-fluid-bto-0003084.html","vaginal fluid"],["animal-litter-envo-00002191.html","animal litter"]],"b":[["TED%3AAF-A0A3R6DW71-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3R6DW71-F1-model_v4_TED02"],["TED%3AAF-A0A3R6EGS2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R6EGS2-F1-model_v4_TED01"],["TED%3AAF-A0A5Q5FTM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Q5FTM4-F1-model_v4_TED01"],["TED%3AAF-A0A3R5WNG5-F1-model_v4_TED02","TED novel fold AF-A0A3R5WNG5-F1-model_v4_TED02"],["TED%3AAF-A0A3R5YKW9-F1-model_v4_TED01","TED novel fold AF-A0A3R5YKW9-F1-model_v4_TED01"],["TED%3AAF-A0A3R6FRY2-F1-model_v4_TED01","TED novel fold AF-A0A3R6FRY2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":10,"nb":7,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"]],"b":[["Pfam%3APF04439","Streptomycin adenylyltransferase"],["TED%3AAF-A0A696J2C3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A696J2C3-F1-model_v4_TED01"],["TED%3AAF-A0A825M6H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A825M6H4-F1-model_v4_TED01"],["TED%3AAF-A0A5T0SBG5-F1-model_v4_TED01","TED novel fold AF-A0A5T0SBG5-F1-model_v4_TED01"],["TED%3AAF-A0A698JVM3-F1-model_v4_TED03","TED novel fold AF-A0A698JVM3-F1-model_v4_TED03"],["TED%3AAF-A0A824N1N8-F1-model_v4_TED01","TED novel fold AF-A0A824N1N8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":7,"nb":10,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["pseudostem-bto-0005992.html","pseudostem"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["TED%3AAF-A0A5T2E4X7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5T2E4X7-F1-model_v4_TED01"],["TED%3AAF-A0A5Y4BP44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Y4BP44-F1-model_v4_TED01"],["TED%3AAF-A0A623P6F3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A623P6F3-F1-model_v4_TED02"],["TED%3AAF-A0A721BDS7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A721BDS7-F1-model_v4_TED02"],["TED%3AAF-A0A743P324-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A743P324-F1-model_v4_TED01"],["TED%3AAF-A0A757VWR3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A757VWR3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1314","l":"Streptococcus pyogenes","na":9,"nb":7,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"],["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"],["epithelial-cell-bto-0000414.html","epithelial cell"],["nasopharynx-bto-0000662.html","nasopharynx"],["skin-of-body-uberon-0002097.html","skin of body"],["throat-bto-0000828.html","throat"]],"b":[["Pfam%3APF13585","CHU_C Type IX secretion signal domain"],["Pfam%3APF24547","Domain of unknown function (DUF7601)"],["Pfam%3APF08998","Bacterial epsilon antitoxin"],["Pfam%3APF06280","Fn3-like domain"],["Pfam%3APF02274","Arginine deiminase"],["Pfam%3APF13734","Spi protease inhibitor"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":7,"nb":7,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["liquid-water-envo-00002006.html","liquid water"],["crown-gall-bto-0000303.html","crown gall"],["finger-bto-0004669.html","finger"],["resting-cell-bto-0001170.html","resting cell"],["water-scum-envo-00005794.html","water scum"]],"b":[["Pfam%3APF19443","DAHL domain"],["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"],["Pfam%3APF03524","Conjugal transfer protein"],["Pfam%3APF27439","Chaperone protein DnaJ C-terminal region"],["Pfam%3APF10907","Protein of unknown function (DUF2749)"],["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":19,"nb":6,"a":[["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["bone-element-uberon-0001474.html","bone element"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF10779","Haemolysin XhlA"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF08181","DegQ (SacQ) family"],["Pfam%3APF08057","Erythromycin resistance leader peptide"],["Pfam%3APF14867","Lantibiotic alpha"]]},{"id":"NCBITaxon:1409","l":"Bacillus sp. (in: firmicutes)","na":16,"nb":6,"a":[["biofilm-envo-00002034.html","biofilm"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["low-tide-zone-envo-00000319.html","low tide zone"],["organic-waste-material-envo-00002873.html","organic waste material"],["rhizosphere-envo-00005801.html","rhizosphere"],["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["Pfam%3APF02903","Alpha amylase, N-terminal ig-like domain"],["Pfam%3APF12123","PlyG Cell wall binding domain"],["Pfam%3APF24517","Carbohydrate-binding module family 96"],["Pfam%3APF07827","KNTase C-terminal domain"],["TED%3AAF-A0A3D0E1V5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D0E1V5-F1-model_v4_TED01"],["TED%3AAF-A0A3D5U4K3-F1-model_v4_TED01","TED novel fold AF-A0A3D5U4K3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:40324","l":"Stenotrophomonas maltophilia","na":15,"nb":6,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["catheter-device-ncit-c50344.html","Catheter Device"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["seedling-bto-0001228.html","seedling"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["TED%3AAF-A0A2U4H7T5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2U4H7T5-F1-model_v4_TED02"],["TED%3AAF-A0A2W6G5X3-F1-model_v4_TED01","TED novel fold AF-A0A2W6G5X3-F1-model_v4_TED01"],["TED%3AAF-A0A2W6IKS3-F1-model_v4_TED02","TED novel fold AF-A0A2W6IKS3-F1-model_v4_TED02"],["TED%3AAF-A0A7D0KRT5-F1-model_v4_TED03","TED novel fold AF-A0A7D0KRT5-F1-model_v4_TED03"],["TED%3AAF-A0A7T8PWR1-F1-model_v4_TED05","TED novel fold AF-A0A7T8PWR1-F1-model_v4_TED05"]]},{"id":"NCBITaxon:1397","l":"Niallia circulans","na":12,"nb":6,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["organic-waste-material-envo-00002873.html","organic waste material"],["rhizosphere-envo-00005801.html","rhizosphere"],["cultivated-environment-envo-01000311.html","cultivated environment"],["sludge-envo-00002044.html","sludge"]],"b":[["Pfam%3APF03423","Carbohydrate binding domain (family 25)"],["Pfam%3APF13199","Glycosyl hydrolase family 66"],["Pfam%3APF14399","Butirosin biosynthesis protein H, N-terminal"],["Pfam%3APF19634","Family of unknown function (DUF6137)"],["PROSITE%3APS60000","Chitosanases families 46 and 80 active sites signature"],["TED%3AAF-A0A0J1IR10-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0J1IR10-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1496","l":"Clostridioides difficile","na":6,"nb":10,"a":[["hospital-envo-00002173.html","hospital"],["feces-uberon-0001988.html","feces"],["leukocyte-bto-0000751.html","leukocyte"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["intestine-environment-envo-2100002.html","intestine environment"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["Pfam%3APF18671","4-Hydroxyphenylacetate decarboxylase subunit gamma N-terminal"],["Pfam%3APF00302","Chloramphenicol acetyltransferase"],["Pfam%3APF18524","High potential iron-sulfur protein like"],["Pfam%3APF06050","2-hydroxyglutaryl-CoA dehydratase, D-component"],["PROSITE%3APS00100","Chloramphenicol acetyltransferase active site"],["Pfam%3APF01473","Putative cell wall binding repeat"]]},{"id":"NCBITaxon:727","l":"Haemophilus influenzae","na":9,"nb":6,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["head-bto-0000282.html","head"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["Pfam%3APF06808","Tripartite ATP-independent periplasmic transporter, DctM component"],["Pfam%3APF04290","Tripartite ATP-independent periplasmic transporters, DctQ component"],["Pfam%3APF09226","Restriction endonuclease HincII"],["Pfam%3APF09520","Type II restriction endonuclease, HinfI"],["Pfam%3APF24077","Immunoglobulin A1 protease autotransporter domain 2"],["PROSITE%3APS01068","OmpA-like domain"]]},{"id":"NCBITaxon:1305","l":"Streptococcus sanguinis","na":6,"nb":7,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["throat-bto-0000828.html","throat"],["geographic-feature-envo-00000000.html","geographic feature"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Pfam%3APF09254","FokI, cleavage domain"],["Pfam%3APF02981","FokI, recognition domain, subdomain 1"],["Pfam%3APF02980","FokI, recognition domain, subdomain 2"],["Pfam%3APF07501","G5 domain"],["Pfam%3APF07581","The GLUG motif"],["TED%3AAF-A0A7H8V358-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H8V358-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1502","l":"Clostridium perfringens","na":7,"nb":6,"a":[["small-river-biome-envo-00000890.html","small river biome"],["animal-house-envo-00003040.html","animal house"],["ileum-bto-0000620.html","ileum"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["Pfam%3APF08307","Glycosyl hydrolase family 98 C-terminal domain"],["Pfam%3APF08306","Glycosyl hydrolase family 98"],["Pfam%3APF12645","Helix-turn-helix domain"],["Pfam%3APF03505","Clostridium enterotoxin"],["Pfam%3APF10960","BhlA holin family"],["TED%3AAF-A0A140GRT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A140GRT8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1510","l":"Thermoclostridium stercorarium","na":6,"nb":7,"a":[["small-river-biome-envo-00000890.html","small river biome"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"],["rock-envo-00001995.html","rock"],["sulfur-spring-envo-00000126.html","sulfur spring"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["Pfam%3APF07523","Bacterial Ig-like domain (group 3)"],["Pfam%3APF03442","Carbohydrate binding domain X2"],["Pfam%3APF00457","Glycosyl hydrolases family 11"],["Pfam%3APF03422","Carbohydrate binding module (family 6)"],["PROSITE%3APS00776","Glycosyl hydrolases family 11 (GH11) active site signature 1"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"]]},{"id":"NCBITaxon:1871047","l":"Chryseobacterium sp.","na":6,"nb":7,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["leaf-po-0025034.html","leaf"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["humid-habitatmech-bacdive-0fa0234f43.html","Humid"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["TED%3AAF-A0A2W6XQ62-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W6XQ62-F1-model_v4_TED01"],["TED%3AAF-A0A2W6YLD3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2W6YLD3-F1-model_v4_TED02"],["TED%3AAF-A0A5N7U1L3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5N7U1L3-F1-model_v4_TED01"],["TED%3AAF-A0A3D4JZX5-F1-model_v4_TED04","TED novel fold AF-A0A3D4JZX5-F1-model_v4_TED04"],["TED%3AAF-A0A3N7GZ20-F1-model_v4_TED01","TED novel fold AF-A0A3N7GZ20-F1-model_v4_TED01"],["TED%3AAF-A0A5N7YYR2-F1-model_v4_TED01","TED novel fold AF-A0A5N7YYR2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":16,"nb":5,"a":[["fresh-water-envo-00002011.html","fresh water"],["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"]],"b":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF02963","Restriction endonuclease EcoRI"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["PROSITE%3APS00974","Mannitol dehydrogenases signature"],["PROSITE%3APS00567","Phosphoribulokinase signature"]]},{"id":"NCBITaxon:1598","l":"Limosilactobacillus reuteri","na":14,"nb":5,"a":[["cecum-mucosa-bto-0000213.html","cecum mucosa"],["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["ileum-bto-0000620.html","ileum"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"]],"b":[["TED%3AAF-A0A6N1EMN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N1EMN7-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2V3C3-F1-model_v4_TED01","TED novel fold AF-A0A1Y2V3C3-F1-model_v4_TED01"],["TED%3AAF-A0A848BUA9-F1-model_v4_TED01","TED novel fold AF-A0A848BUA9-F1-model_v4_TED01"],["TED%3AAF-A0A855XJ18-F1-model_v4_TED01","TED novel fold AF-A0A855XJ18-F1-model_v4_TED01"],["TED%3AAF-Q6WUB1-F1-model_v4_TED03","TED novel fold AF-Q6WUB1-F1-model_v4_TED03"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":14,"nb":5,"a":[["watercourse-envo-00000029.html","watercourse"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["leaf-po-0025034.html","leaf"]],"b":[["TED%3AAF-A0A4Y6CF56-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y6CF56-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6CNZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Y6CNZ1-F1-model_v4_TED02"],["TED%3AAF-A0A7Y4IIX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4IIX4-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6B7F9-F1-model_v4_TED01","TED novel fold AF-A0A4Y6B7F9-F1-model_v4_TED01"],["TED%3AAF-A0A7Y4IR70-F1-model_v4_TED01","TED novel fold AF-A0A7Y4IR70-F1-model_v4_TED01"]]},{"id":"NCBITaxon:239","l":"Flavobacterium sp.","na":5,"nb":13,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["mud-envo-01000001.html","mud"],["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"],["orchard-envo-00000115.html","orchard"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["Pfam%3APF21331","Isoamylase, C-terminal"],["TED%3AAF-A0A2E4PC55-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E4PC55-F1-model_v4_TED02"],["TED%3AAF-A0A2E4PGC5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4PGC5-F1-model_v4_TED01"],["TED%3AAF-A0A2E4PMB7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E4PMB7-F1-model_v4_TED02"],["TED%3AAF-A0A355BEV2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A355BEV2-F1-model_v4_TED02"],["TED%3AAF-A0A519QLA6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A519QLA6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":13,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"],["midgut-bto-0000863.html","midgut"],["paddy-field-envo-00000297.html","paddy field"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF03173","Putative carbohydrate binding domain"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"],["Pfam%3APF06438","Heme-binding protein A (HasA)"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF05247","Flagellar transcriptional activator (FlhD)"]]},{"id":"NCBITaxon:224911","l":"Bradyrhizobium diazoefficiens (strain JCM 10833 / BCRC 13528 / IAM 13628 / NBRC 14792 / USDA 110)","na":5,"nb":10,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["microbial-mat-material-envo-01000157.html","microbial mat material"],["agricultural-soil-envo-00002259.html","agricultural soil"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["Pfam%3APF14715","N-terminal domain of cytochrome oxidase-cbb3, FixP"],["Pfam%3APF03886","ABC-type transport auxiliary lipoprotein component"],["Pfam%3APF10649","Protein of unknown function (DUF2478)"],["Pfam%3APF01924","Hydrogenase formation hypA family"],["PROSITE%3APS00882","Nickel-dependent hydrogenases b-type cytochrome subunit signature 1"]]},{"id":"NCBITaxon:1667","l":"Arthrobacter sp.","na":9,"nb":5,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["leaf-po-0025034.html","leaf"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["Pfam%3APF14031","Putative serine dehydratase domain"],["Pfam%3APF02449","Beta-galactosidase"],["Pfam%3APF08533","Beta-galactosidase C-terminal domain"],["Pfam%3APF08532","Beta-galactosidase trimerisation domain"],["TED%3AAF-A0A3C2BWN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C2BWN3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":5,"nb":6,"a":[["liquid-water-envo-00002006.html","liquid water"],["food-spoiled-foodon-00003366.html","food (spoiled)"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"]],"b":[["Pfam%3APF14525","AraC-binding-like domain"],["Pfam%3APF06139","BphX-like"],["Pfam%3APF13340","Putative transposase of IS4/5 family (DUF4096)"],["Pfam%3APF11794","4-hydroxyphenylacetate 3-hydroxylase N terminal"],["Pfam%3APF03241","4-hydroxyphenylacetate 3-hydroxylase C terminal"],["TED%3AAF-A0A4S3H3T1-F1-model_v4_TED02","TED novel fold AF-A0A4S3H3T1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:391625","l":"Plesiocystis pacifica SIR-1","na":5,"nb":6,"a":[["coral-reef-envo-00000150.html","coral reef"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["bulk-soil-envo-00005802.html","bulk soil"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-A6FXI2-F1-model_v4_TED01","TED highly-symmetric fold AF-A6FXI2-F1-model_v4_TED01"],["TED%3AAF-A6G0J0-F1-model_v4_TED01","TED highly-symmetric fold AF-A6G0J0-F1-model_v4_TED01"],["TED%3AAF-A6G9Q2-F1-model_v4_TED01","TED highly-symmetric fold AF-A6G9Q2-F1-model_v4_TED01"],["TED%3AAF-A6G861-F1-model_v4_TED02","TED novel fold AF-A6G861-F1-model_v4_TED02"],["TED%3AAF-A6GGD7-F1-model_v4_TED01","TED novel fold AF-A6GGD7-F1-model_v4_TED01"],["TED%3AAF-A6GI73-F1-model_v4_TED02","TED novel fold AF-A6GI73-F1-model_v4_TED02"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":5,"nb":6,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["pseudostem-bto-0005992.html","pseudostem"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["Pfam%3APF02929","Beta galactosidase small chain"],["Pfam%3APF27279","Fumarate--diaminopropanoate ligase C-terminal domain"],["Pfam%3APF18024","Helix-turn-helix domain"],["Pfam%3APF16353","Beta-galactosidase, domain 4"],["PROSITE%3APS00594","Aromatic amino acids permeases signature"],["PROSITE%3APS00853","Beta-eliminating lyases pyridoxal-phosphate attachment site"]]},{"id":"NCBITaxon:1318","l":"Streptococcus parasanguinis","na":5,"nb":5,"a":[["biofilm-envo-00002034.html","biofilm"],["geographic-feature-envo-00000000.html","geographic feature"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"],["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["Pfam%3APF26337","Glucosyltransferase 3-like, C-terminal domain"],["Pfam%3APF26334","Glucosyltransferase 3-like, N-terminal domain"],["Pfam%3APF22145","GtfA extended beta-sheet domain"],["Pfam%3APF27244","GtfB middle domain"],["Pfam%3APF04286","Protein of unknown function (DUF445)"]]},{"id":"NCBITaxon:1393","l":"Brevibacillus brevis","na":5,"nb":5,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["Pfam%3APF03306","Alpha-acetolactate decarboxylase"],["Pfam%3APF05384","Sensor protein DegS"],["TED%3AAF-A0A2Z4MK38-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z4MK38-F1-model_v4_TED01"],["TED%3AAF-A0A2Z4MPQ6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2Z4MPQ6-F1-model_v4_TED02"],["TED%3AAF-A0A517IGN3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A517IGN3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:39947","l":"Oryza sativa subsp. japonica","na":4,"nb":158,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["large-river-biome-envo-00000887.html","large river biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"],["river-bed-envo-00000384.html","river bed"]],"b":[["Pfam%3APF03157","High molecular weight glutenin subunit"],["Pfam%3APF26249","RdRP3/4/5, N-terminal four helical bundle domain"],["Pfam%3APF23242","TRIP13-like, AAA+ ATPase lid C-terminal domain"],["Pfam%3APF26791","AAPxQ domain"],["Pfam%3APF24922","Acyl-CoA-binding domain-containing protein 4-6, C-terminal"],["Pfam%3APF04864","Allinase"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":4,"nb":32,"a":[["bioreactor-envo-00002123.html","bioreactor"],["human-construction-envo-00000070.html","human construction"],["sediment-envo-00002007.html","sediment"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF25848","Rodlin protein"],["Pfam%3APF13420","Acetyltransferase (GNAT) domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF26381","BREX System ATPase PglY protein 5th domain"],["Pfam%3APF26382","BREX System ATPase PglY protein 6th domain"]]},{"id":"NCBITaxon:3055","l":"Chlamydomonas reinhardtii","na":4,"nb":27,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["large-river-biome-envo-00000887.html","large river biome"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["pond-water-envo-00002228.html","pond water"]],"b":[["Pfam%3APF01333","Apocytochrome F, C-terminal"],["Pfam%3APF16639","Apocytochrome F, N-terminal"],["Pfam%3APF00430","ATP synthase B/B' CF(0)"],["Pfam%3APF00401","ATP synthase, Delta/Epsilon chain, long alpha-helix domain"],["Pfam%3APF21771","CFAP58 central coiled coil"],["Pfam%3APF27956","CFAP99 V-shaped coiled-coil domain"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae (strain ATCC 42149 / RIB 40)","na":4,"nb":27,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["mountain-pass-envo-00000084.html","mountain pass"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF09260","Alpha-amylase, domain C"],["Pfam%3APF28338","AclK C-terminal domain"],["Pfam%3APF09206","Alpha-L-arabinofuranosidase B, catalytic"],["Pfam%3APF28380","Sesquiterpene cyclase astC-like C-terminal domain"],["Pfam%3APF13364","Beta-galactosidase second all-beta domain"],["Pfam%3APF10435","Beta-galactosidase, domain 2"]]},{"id":"NCBITaxon:33","l":"Myxococcus fulvus","na":21,"nb":4,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"]],"b":[["TED%3AAF-A0A511SVC1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A511SVC1-F1-model_v4_TED01"],["TED%3AAF-A0A511SU64-F1-model_v4_TED01","TED novel fold AF-A0A511SU64-F1-model_v4_TED01"],["TED%3AAF-A0A511T2U3-F1-model_v4_TED02","TED novel fold AF-A0A511T2U3-F1-model_v4_TED02"],["TED%3AAF-A0A511T9F8-F1-model_v4_TED05","TED novel fold AF-A0A511T9F8-F1-model_v4_TED05"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":4,"nb":20,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF27529","AMPT"],["Pfam%3APF24856","L-arabinose isomerase central domain"],["Pfam%3APF02610","L-arabinose isomerase N-terminal domain"],["Pfam%3APF11762","L-arabinose isomerase C-terminal domain"],["Pfam%3APF17727","CtsR C-terminal dimerization domain"]]},{"id":"NCBITaxon:1085","l":"Rhodospirillum rubrum","na":19,"nb":4,"a":[["biofilm-envo-00002034.html","biofilm"],["brackish-water-body-envo-01001321.html","brackish water body"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["liquid-water-envo-00002006.html","liquid water"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["river-envo-00000022.html","river"]],"b":[["Pfam%3APF00556","Antenna complex alpha/beta subunit"],["Pfam%3APF09527","Putative F0F1-ATPase subunit Ca2+/Mg2+ transporter"],["Pfam%3APF07357","Dinitrogenase reductase ADP-ribosyltransferase (DRAT)"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"]]},{"id":"NCBITaxon:169963","l":"Listeria monocytogenes serovar 1/2a (strain ATCC BAA-679 / EGD-e)","na":4,"nb":18,"a":[["brain-bto-0000142.html","brain"],["heart-bto-0000562.html","heart"],["macrophage-cell-line-bto-0002278.html","macrophage cell line"],["p-388d1-cell-bto-0000984.html","P-388D1 cell"]],"b":[["Pfam%3APF17936","Bacterial Ig domain"],["Pfam%3APF06778","Chlorite dismutase"],["Pfam%3APF05737","Collagen binding domain"],["Pfam%3APF09479","Listeria-Bacteroides repeat domain (List_Bact_rpt)"],["Pfam%3APF13457","GW (Gly-Tryp) dipeptide domain"],["Pfam%3APF08858","IDEAL domain"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":4,"nb":16,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF28265","Lipoprotein N-acylation protein LnsA-like"],["Pfam%3APF16403","Bacterial surface protein, Ig-like domain"],["Pfam%3APF03944","delta endotoxin"],["Pfam%3APF03945","delta endotoxin, N-terminal domain"],["Pfam%3APF06355","Aegerolysin"]]},{"id":"NCBITaxon:28214","l":"Sphingomonas sp.","na":16,"nb":4,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["air-conditioning-unit-envo-00002874.html","air conditioning unit"],["laboratory-facility-envo-01001406.html","laboratory facility"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["Pfam%3APF11723","Homotrimeric ring hydroxylase"],["Pfam%3APF07364","Metallopeptidase family M81"],["TED%3AAF-A0A525HJK0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A525HJK0-F1-model_v4_TED02"],["TED%3AAF-A0A520ITV0-F1-model_v4_TED02","TED novel fold AF-A0A520ITV0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1302","l":"Streptococcus gordonii","na":4,"nb":13,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["dental-plaque-uberon-0016482.html","dental plaque"],["archeological-site-envo-00000564.html","archeological site"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Pfam%3APF18652","Adhesin P1 N-terminal domain"],["Pfam%3APF17998","Cell surface antigen I/II C2 terminal domain"],["Pfam%3APF16364","Cell surface antigen C-terminus"],["Pfam%3APF18938","Atypical Rib domain"],["Pfam%3APF08759","Glycosyltransferase GT-D fold"],["Pfam%3APF22145","GtfA extended beta-sheet domain"]]},{"id":"NCBITaxon:238","l":"Elizabethkingia meningoseptica","na":10,"nb":4,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["pond-water-envo-00002228.html","pond water"],["small-river-biome-envo-00000890.html","small river biome"],["bronchus-uberon-0002185.html","bronchus"],["midgut-bto-0000863.html","midgut"],["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["Pfam%3APF21252","Glycosyl hydrolase 109, C-terminal domain"],["Pfam%3APF26305","cGAS/DncV-like nucleotidyltransferase C-terminal helical domain"],["PROSITE%3APS00743","Beta-lactamases class B signature 1"],["PROSITE%3APS00744","Beta-lactamases class B signature 2"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":8,"nb":4,"a":[["groundwater-envo-01001004.html","groundwater"],["bioreactor-envo-00002123.html","bioreactor"],["river-envo-00000022.html","river"],["freshwater-environment-envo-01000306.html","freshwater environment"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["TED%3AAF-A0A7W3UB61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W3UB61-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F4B3-F1-model_v4_TED01","TED novel fold AF-A0A0D7F4B3-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F6R4-F1-model_v4_TED01","TED novel fold AF-A0A0D7F6R4-F1-model_v4_TED01"],["TED%3AAF-A0A7W3YI15-F1-model_v4_TED02","TED novel fold AF-A0A7W3YI15-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":8,"nb":4,"a":[["reservoir-envo-00000025.html","reservoir"],["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["secretion-bto-0002979.html","secretion"],["stomach-bto-0001307.html","stomach"]],"b":[["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF09711","CRISPR-associated protein (Cas_Csn2)"],["Pfam%3APF06308","23S rRNA methylastransferase leader peptide (ErmCL)"]]},{"id":"NCBITaxon:1505","l":"Paraclostridium sordellii","na":8,"nb":4,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["animal-house-envo-00003040.html","animal house"],["animal-litter-envo-00002191.html","animal litter"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["mud-envo-01000001.html","mud"]],"b":[["Pfam%3APF13859","BNR repeat-like domain"],["Pfam%3APF01473","Putative cell wall binding repeat"],["Pfam%3APF19127","Choline-binding repeat"],["TED%3AAF-A0A822PVZ2-F1-model_v4_TED01","TED novel fold AF-A0A822PVZ2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":8,"nb":4,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"],["TED%3AAF-A0A085UKV7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085UKV7-F1-model_v4_TED01"],["TED%3AAF-A0A4R6IU28-F1-model_v4_TED02","TED novel fold AF-A0A4R6IU28-F1-model_v4_TED02"]]},{"id":"NCBITaxon:51671","l":"Microbacterium sp.","na":8,"nb":4,"a":[["marine-water-body-envo-00001999.html","marine water body"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"]],"b":[["Pfam%3APF19906","C-glycoside deglycosidase beta subunit"],["TED%3AAF-A0A349CW39-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349CW39-F1-model_v4_TED01"],["TED%3AAF-A0A2W6V981-F1-model_v4_TED01","TED novel fold AF-A0A2W6V981-F1-model_v4_TED01"],["TED%3AAF-A0A3D4PQL1-F1-model_v4_TED01","TED novel fold AF-A0A3D4PQL1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:438753","l":"Azorhizobium caulinodans ORS 571","na":7,"nb":4,"a":[["bacteroid-bto-0000109.html","bacteroid"],["free-living-state-bto-0001551.html","free-living state"],["lateral-root-bto-0005441.html","lateral root"],["rootlet-bto-0001192.html","rootlet"],["seedling-bto-0001228.html","seedling"],["stem-nodule-bto-0001816.html","stem nodule"]],"b":[["Pfam%3APF27389","AZC_3924"],["Pfam%3APF09663","Amidohydrolase ring-opening protein (Amido_AtzD_TrzD)"],["PROSITE%3APS01349","Nodulation protein nodA signature"],["PROSITE%3APS00647","Thymidine and pyrimidine-nucleoside phosphorylases signature"]]},{"id":"NCBITaxon:53249","l":"","na":4,"nb":7,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["aquaculture-farm-envo-03600074.html","aquaculture farm"],["fumarole-envo-00000216.html","fumarole"]],"b":[["Pfam%3APF25291","Lambda-carrageenase C-terminal domain"],["Pfam%3APF25290","Lambda-carrageenase middle domain"],["Pfam%3APF17396","Domain of unknown function (DUF1611_N) Rossmann-like domain"],["Pfam%3APF07755","Domain of unknown function (DUF1611_C) P-loop domain"],["Pfam%3APF25292","Lambda-carrageenase beta-propeller domain"],["TED%3AAF-A0A2D5T282-F1-model_v4_TED01","TED novel fold AF-A0A2D5T282-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1079","l":"Blastochloris viridis","na":6,"nb":4,"a":[["fresh-water-envo-00002011.html","fresh water"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["Pfam%3APF00556","Antenna complex alpha/beta subunit"],["Pfam%3APF02276","Photosynthetic reaction centre cytochrome C subunit"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["TED%3AAF-A0A0H5BDG4-F1-model_v4_TED01","TED novel fold AF-A0A0H5BDG4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1306","l":"Streptococcus sp.","na":4,"nb":6,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["co-culture-habitatmech-bacdive-ff945d8a69.html","Co-culture"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["TED%3AAF-A0A496KVG3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A496KVG3-F1-model_v4_TED02"],["TED%3AAF-A0A496KCG7-F1-model_v4_TED01","TED novel fold AF-A0A496KCG7-F1-model_v4_TED01"],["TED%3AAF-A0A496L3I5-F1-model_v4_TED01","TED novel fold AF-A0A496L3I5-F1-model_v4_TED01"],["TED%3AAF-A0A496LB14-F1-model_v4_TED02","TED novel fold AF-A0A496LB14-F1-model_v4_TED02"],["TED%3AAF-A0A496M1E6-F1-model_v4_TED02","TED novel fold AF-A0A496M1E6-F1-model_v4_TED02"],["TED%3AAF-A0A496M2R1-F1-model_v4_TED06","TED novel fold AF-A0A496M2R1-F1-model_v4_TED06"]]},{"id":"NCBITaxon:1311","l":"Streptococcus agalactiae","na":6,"nb":4,"a":[["kidney-bto-0000671.html","kidney"],["milk-uberon-0001913.html","milk"],["oropharynx-bto-0005257.html","oropharynx"],["urine-bto-0001419.html","urine"],["urogenital-system-bto-0003091.html","urogenital system"],["vagina-bto-0000243.html","vagina"]],"b":[["Pfam%3APF19567","Capsular polysaccharide synthesis, CpsB/CapC"],["Pfam%3APF16828","GAG-binding domain on surface antigen"],["Pfam%3APF27244","GtfB middle domain"],["Pfam%3APF07373","CAMP factor (Cfa)"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":4,"nb":6,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["carcass-envo-00002033.html","carcass"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["sludge-envo-00002044.html","sludge"]],"b":[["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF03744","6-carboxyhexanoate--CoA ligase"],["PROSITE%3APS00836","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 1"],["PROSITE%3APS00837","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 2"],["TED%3AAF-A0A2S5D092-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5D092-F1-model_v4_TED01"],["TED%3AAF-A0A2S0JW09-F1-model_v4_TED01","TED novel fold AF-A0A2S0JW09-F1-model_v4_TED01"]]},{"id":"NCBITaxon:388919","l":"Streptococcus sanguinis (strain SK36)","na":4,"nb":6,"a":[["buccal-mucosa-bto-0003833.html","buccal mucosa"],["dental-plaque-bto-0000338.html","dental plaque"],["pharyngeal-mucosa-bto-0001047.html","pharyngeal mucosa"],["pharynx-bto-0001049.html","pharynx"]],"b":[["Pfam%3APF20921","Domain of unknown function DUF1846, C-terminal"],["Pfam%3APF08903","Domain of unknown function DUF1846, N-terminal"],["Pfam%3APF03186","CobD/Cbib protein"],["Pfam%3APF08503","Tetrahydrodipicolinate succinyltransferase N-terminal"],["Pfam%3APF06949","Protein of unknown function (DUF1292)"],["Pfam%3APF06160","Septation ring formation regulator, EzrA"]]},{"id":"NCBITaxon:1366","l":"","na":4,"nb":5,"a":[["animal-house-envo-00003040.html","animal house"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["TED%3AAF-A0A5R9CHM3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5R9CHM3-F1-model_v4_TED02"],["TED%3AAF-A0A6H0UIE5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6H0UIE5-F1-model_v4_TED01"],["TED%3AAF-A0A6H0UK30-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6H0UK30-F1-model_v4_TED01"],["TED%3AAF-A0A6H0URM1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6H0URM1-F1-model_v4_TED02"],["TED%3AAF-A0A6H0UGG1-F1-model_v4_TED06","TED novel fold AF-A0A6H0UGG1-F1-model_v4_TED06"]]},{"id":"NCBITaxon:1411316","l":"Pedobacter sp.","na":5,"nb":4,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["TED%3AAF-A0A520IH20-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A520IH20-F1-model_v4_TED02"],["TED%3AAF-A0A519VYD0-F1-model_v4_TED02","TED novel fold AF-A0A519VYD0-F1-model_v4_TED02"],["TED%3AAF-A0A520CAS2-F1-model_v4_TED01","TED novel fold AF-A0A520CAS2-F1-model_v4_TED01"],["TED%3AAF-A0A520GU64-F1-model_v4_TED01","TED novel fold AF-A0A520GU64-F1-model_v4_TED01"]]},{"id":"NCBITaxon:195","l":"Campylobacter coli","na":4,"nb":5,"a":[["feces-uberon-0001988.html","feces"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["PROSITE%3APS00100","Chloramphenicol acetyltransferase active site"],["TED%3AAF-A0A697DVN1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A697DVN1-F1-model_v4_TED01"],["TED%3AAF-A0A5T0YXG5-F1-model_v4_TED02","TED novel fold AF-A0A5T0YXG5-F1-model_v4_TED02"],["TED%3AAF-A0A825MHY8-F1-model_v4_TED03","TED novel fold AF-A0A825MHY8-F1-model_v4_TED03"],["TED%3AAF-A0A828DMV9-F1-model_v4_TED01","TED novel fold AF-A0A828DMV9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:305","l":"Ralstonia solanacearum","na":4,"nb":5,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"],["pseudostem-bto-0005992.html","pseudostem"],["xylem-bto-0001468.html","xylem"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["Pfam%3APF14897","EpsG family"],["TED%3AAF-A0A7I8FQZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7I8FQZ6-F1-model_v4_TED01"],["TED%3AAF-A0A7H1MI34-F1-model_v4_TED01","TED novel fold AF-A0A7H1MI34-F1-model_v4_TED01"],["TED%3AAF-A0A7I8FKL4-F1-model_v4_TED01","TED novel fold AF-A0A7I8FKL4-F1-model_v4_TED01"],["TED%3AAF-A0A850FKB0-F1-model_v4_TED01","TED novel fold AF-A0A850FKB0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":5,"nb":4,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"],["feces-uberon-0001988.html","feces"],["rectum-bto-0001158.html","rectum"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["Pfam%3APF01375","Heat-labile enterotoxin alpha chain"],["Pfam%3APF09101","Exotoxin A binding"],["Pfam%3APF09009","Exotoxin A catalytic"],["Pfam%3APF09102","Exotoxin A, targeting"]]},{"id":"NCBITaxon:378806","l":"Stigmatella aurantiaca DW4/3-1","na":4,"nb":4,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["orchard-envo-00000115.html","orchard"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-Q098I8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q098I8-F1-model_v4_TED01"],["TED%3AAF-E3FRW3-F1-model_v4_TED01","TED novel fold AF-E3FRW3-F1-model_v4_TED01"],["TED%3AAF-E3G0M4-F1-model_v4_TED01","TED novel fold AF-E3G0M4-F1-model_v4_TED01"],["TED%3AAF-Q08VS7-F1-model_v4_TED01","TED novel fold AF-Q08VS7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:83449","l":"Cystobacter ferrugineus","na":4,"nb":4,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["wood-bto-0005516.html","wood"],["sand-envo-01000017.html","sand"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-A0A1L9B4M1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L9B4M1-F1-model_v4_TED01"],["TED%3AAF-A0A1L9B5W1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L9B5W1-F1-model_v4_TED01"],["TED%3AAF-A0A1L9BCS8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L9BCS8-F1-model_v4_TED01"],["TED%3AAF-A0A1L9BDA4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1L9BDA4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:85698","l":"","na":4,"nb":4,"a":[["hospital-envo-00002173.html","hospital"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["Pfam%3APF25975","CzcB C-terminal circularly permuted SH3-like domain"],["Pfam%3APF17524","Anti-sigma factor CnrY"],["Pfam%3APF10778","Halocarboxylic acid dehydrogenase DehI"],["TED%3AAF-A0A1R1JVF9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1R1JVF9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":3,"nb":49554,"a":[["city-envo-00000856.html","city"],["cold-environment-envo-01000309.html","cold environment"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["EC%3A1.1.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.1.98.-","With other, known, acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":27,"nb":3,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["watercourse-envo-00000029.html","watercourse"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["egg-food-product-foodon-00001274.html","egg food product"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"]],"b":[["Pfam%3APF14864","Alkyl sulfatase C-terminal"],["Pfam%3APF13816","Haem-containing dehydratase"],["Pfam%3APF14863","Alkyl sulfatase dimerisation"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":25,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-water-body-envo-00001999.html","marine water body"],["sea-water-envo-00002149.html","sea water"],["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF08130","Type A lantibiotic family"],["Pfam%3APF04738","Lantibiotic dehydratase, N terminus"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":3,"nb":19,"a":[["milk-uberon-0001913.html","milk"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["Pfam%3APF03306","Alpha-acetolactate decarboxylase"],["Pfam%3APF22208","Cas_Csm6 CARF domain"],["Pfam%3APF09659","Cas_Csm6 HEPN domain"],["Pfam%3APF22335","Cas10/Cmr2, second palm domain"],["Pfam%3APF18395","Cas3 C-terminal domain"],["Pfam%3APF18019","Cas3, HD domain"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":17,"nb":3,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["fruit-bto-0000486.html","fruit"],["leaf-po-0025034.html","leaf"],["rhizosphere-envo-00005801.html","rhizosphere"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["Pfam%3APF03423","Carbohydrate binding domain (family 25)"],["Pfam%3APF03422","Carbohydrate binding module (family 6)"],["TED%3AAF-A0A7X5SGP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X5SGP7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:243161","l":"Chlamydia muridarum (strain MoPn / Nigg)","na":3,"nb":16,"a":[["cervical-adenocarcinoma-cell-bto-0003165.html","cervical adenocarcinoma cell"],["fibroblast-bto-0000452.html","fibroblast"],["hela-229-cell-bto-0005030.html","HeLa-229 cell"]],"b":[["Pfam%3APF07382","Histone H1-like nucleoprotein HC2"],["Pfam%3APF05475","Pgp3 C-terminal domain"],["Pfam%3APF07577","Domain of Unknown Function (DUF1547)"],["Pfam%3APF05745","Chlamydia 15 kDa cysteine-rich outer membrane protein (CRPA)"],["Pfam%3APF28261","Uncharacterized protein CT_504-like"],["Pfam%3APF17435","CT_584-like"]]},{"id":"NCBITaxon:29158","l":"Mytilus galloprovincialis","na":3,"nb":13,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["Pfam%3APF01097","Arthropod defensin"],["TED%3AAF-A0A8B6CBP4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B6CBP4-F1-model_v4_TED01"],["TED%3AAF-A0A8B6CUV9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A8B6CUV9-F1-model_v4_TED03"],["TED%3AAF-A0A8B6EJL3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A8B6EJL3-F1-model_v4_TED03"],["TED%3AAF-A0A8B6EMQ1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B6EMQ1-F1-model_v4_TED01"],["TED%3AAF-A0A8B6GYA1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B6GYA1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":3,"nb":11,"a":[["bile-bto-0000121.html","bile"],["rectum-bto-0001158.html","rectum"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["Pfam%3APF22829","HphA C-terminal domain"],["Pfam%3APF22828","HphA N-terminal heme-binding domain"],["Pfam%3APF28205","Ciprofloxacin tolerance protein"],["Pfam%3APF19582","Solute-binding protein AdeT 1/2"],["PROSITE%3APS00337","Beta-lactamase class-D active site"],["Pfam%3APF24575","Surface lipoprotein assembly modifier, N-terminal TPR repeats"]]},{"id":"NCBITaxon:1506","l":"Clostridium sp.","na":10,"nb":3,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["animal-waste-material-envo-00002276.html","animal waste material"],["laboratory-facility-envo-01001406.html","laboratory facility"],["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["TED%3AAF-A0A3D5KI35-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D5KI35-F1-model_v4_TED01"],["TED%3AAF-A0A316SA98-F1-model_v4_TED01","TED novel fold AF-A0A316SA98-F1-model_v4_TED01"],["TED%3AAF-A0A3B9UYE3-F1-model_v4_TED01","TED novel fold AF-A0A3B9UYE3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":3,"nb":10,"a":[["liquid-water-envo-00002006.html","liquid water"],["sludge-envo-00002044.html","sludge"],["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF09081","Glucan 1,4-alpha-maltotetraohydrolase, domain C"],["Pfam%3APF09459","Ethylbenzene dehydrogenase"],["Pfam%3APF08406","CbbQ/NirQ/NorQ C-terminal"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"],["Pfam%3APF18793","Nitrous oxide reductase propeller repeat 2"]]},{"id":"NCBITaxon:6238","l":"Caenorhabditis briggsae","na":3,"nb":10,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"],["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["Pfam%3APF09287","CEP-1, DNA binding"],["Pfam%3APF22073","Cep192 domain 4"],["Pfam%3APF15481","Chondroitin proteoglycan 4"],["Pfam%3APF13358","DDE superfamily endonuclease"],["Pfam%3APF10326","Serpentine type 7TM GPCR chemoreceptor Str"],["Pfam%3APF17266","Family of unknown function (DUF5332)"]]},{"id":"NCBITaxon:1639","l":"Listeria monocytogenes","na":9,"nb":3,"a":[["liquid-water-envo-00002006.html","liquid water"],["brain-bto-0000142.html","brain"],["central-nervous-system-bto-0000227.html","central nervous system"],["fruit-bto-0000486.html","fruit"],["placenta-bto-0001078.html","placenta"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["TED%3AAF-A0A6Z1JB74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6Z1JB74-F1-model_v4_TED01"],["TED%3AAF-A0A5Z1VYX2-F1-model_v4_TED01","TED novel fold AF-A0A5Z1VYX2-F1-model_v4_TED01"],["TED%3AAF-A0A823IT06-F1-model_v4_TED02","TED novel fold AF-A0A823IT06-F1-model_v4_TED02"]]},{"id":"NCBITaxon:121845","l":"Diaphorina citri","na":8,"nb":3,"a":[["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["stream-envo-00000023.html","stream"],["animal-house-envo-00003040.html","animal house"],["biome-envo-00000428.html","biome"]],"b":[["TED%3AAF-A0A3Q0J3L1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3Q0J3L1-F1-model_v4_TED03"],["TED%3AAF-A0A3Q0JAD0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3Q0JAD0-F1-model_v4_TED01"],["TED%3AAF-A0A1S4EQL6-F1-model_v4_TED01","TED novel fold AF-A0A1S4EQL6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1359","l":"Lactococcus lactis subsp. cremoris","na":3,"nb":8,"a":[["b-lymphocyte-bto-0000776.html","B-lymphocyte"],["peripheral-blood-mononuclear-cell-bto-0001025.html","peripheral blood mononuclear cell"],["spleen-bto-0001281.html","spleen"]],"b":[["Pfam%3APF16873","Putative abortive phage resistance protein AbiGii toxin"],["Pfam%3APF21368","AI2M/AI1M-like, HNH endonuclease"],["Pfam%3APF09136","Glucodextranase, domain B"],["Pfam%3APF10899","Putative abortive phage resistance protein AbiGi, antitoxin"],["Pfam%3APF04556","DpnII restriction endonuclease"],["Pfam%3APF04369","Lactococcin-like family"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK1622","na":3,"nb":8,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["Pfam%3APF27281","DevT C-terminal domain"],["Pfam%3APF27372","DevT N-terminal domain"],["Pfam%3APF17762","ParB HTH domain"],["Pfam%3APF01930","Domain of unknown function DUF83"],["Pfam%3APF09559","Cas6 Crispr"],["Pfam%3APF01905","CRISPR-associated negative auto-regulator DevR/Csa2"]]},{"id":"NCBITaxon:292800","l":"Flavonifractor plautii","na":3,"nb":8,"a":[["goblet-cell-bto-0001540.html","goblet cell"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["secretion-bto-0002979.html","secretion"]],"b":[["TED%3AAF-A0A6I2QXD7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I2QXD7-F1-model_v4_TED01"],["TED%3AAF-A0A6I2R9U0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I2R9U0-F1-model_v4_TED01"],["TED%3AAF-A0A6I7GJ83-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6I7GJ83-F1-model_v4_TED02"],["TED%3AAF-A0A174L5D2-F1-model_v4_TED02","TED novel fold AF-A0A174L5D2-F1-model_v4_TED02"],["TED%3AAF-A0A6I2R566-F1-model_v4_TED01","TED novel fold AF-A0A6I2R566-F1-model_v4_TED01"],["TED%3AAF-A0A6I2R5K9-F1-model_v4_TED01","TED novel fold AF-A0A6I2R5K9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:33038","l":"Mediterraneibacter gnavus","na":8,"nb":3,"a":[["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["juvenile-bto-0002168.html","juvenile"],["animal-litter-envo-00002191.html","animal litter"]],"b":[["Pfam%3APF16874","Glycosyl hydrolase family 36 C-terminal domain"],["Pfam%3APF16875","Glycosyl hydrolase family 36 N-terminal domain"],["Pfam%3APF04604","Type-A lantibiotic"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":8,"nb":3,"a":[["beach-envo-00000091.html","beach"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["sea-sand-envo-00002118.html","sea sand"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF22277","EncFtn-like"],["TED%3AAF-D0LJ11-F1-model_v4_TED04","TED highly-symmetric fold AF-D0LJ11-F1-model_v4_TED04"]]},{"id":"NCBITaxon:7159","l":"Aedes aegypti","na":3,"nb":8,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["tropical-envo-01000204.html","tropical"],["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["IDPO%3A0000004","pre-molten globule"],["Pfam%3APF25001","Aegyptin, C-terminal domain"],["Pfam%3APF01097","Arthropod defensin"],["Pfam%3APF15957","Commissureless"],["Pfam%3APF23757","Insect HPS5 TPR domain"],["TED%3AAF-Q0IGF9-F1-model_v4_TED01","TED highly-symmetric fold AF-Q0IGF9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":7,"nb":3,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["farm-envo-00000078.html","farm"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["Pfam%3APF05258","Dna[CI] antecedent, DciA"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"],["TED%3AAF-Q0RZW9-F1-model_v4_TED03","TED highly-symmetric fold AF-Q0RZW9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1307","l":"Streptococcus suis","na":3,"nb":6,"a":[["monocyte-bto-0000876.html","monocyte"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["tonsil-bto-0001387.html","tonsil"]],"b":[["TED%3AAF-A0A0Z8XA17-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0Z8XA17-F1-model_v4_TED02"],["TED%3AAF-A0A116R309-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A116R309-F1-model_v4_TED02"],["TED%3AAF-A0A3R8SIF2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R8SIF2-F1-model_v4_TED01"],["TED%3AAF-A0A0Z8H9E5-F1-model_v4_TED02","TED novel fold AF-A0A0Z8H9E5-F1-model_v4_TED02"],["TED%3AAF-A0A4T2GPV6-F1-model_v4_TED02","TED novel fold AF-A0A4T2GPV6-F1-model_v4_TED02"],["TED%3AAF-A0A7G1JVZ6-F1-model_v4_TED02","TED novel fold AF-A0A7G1JVZ6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1624","l":"Ligilactobacillus salivarius","na":6,"nb":3,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["trachea-bto-0001388.html","trachea"],["animal-litter-envo-00002191.html","animal litter"],["intestine-environment-envo-2100002.html","intestine environment"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["TED%3AAF-A0A7X2SS58-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X2SS58-F1-model_v4_TED01"],["TED%3AAF-A0A089QBS8-F1-model_v4_TED02","TED novel fold AF-A0A089QBS8-F1-model_v4_TED02"],["TED%3AAF-A0A2A2XCA8-F1-model_v4_TED01","TED novel fold AF-A0A2A2XCA8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:243365","l":"Chromobacterium violaceum ATCC 12472","na":6,"nb":3,"a":[["acute-lymphoblastic-leukemia-cell-bto-0000731.html","acute lymphoblastic leukemia cell"],["adrenal-gland-bto-0000047.html","adrenal gland"],["eosinophil-bto-0000399.html","eosinophil"],["lymphocyte-bto-0000775.html","lymphocyte"],["neutrophil-bto-0000130.html","neutrophil"],["peripheral-blood-bto-0000553.html","peripheral blood"]],"b":[["Pfam%3APF17074","Darcynin, domain of unknown function"],["Pfam%3APF12902","Ferritin-like"],["Pfam%3APF06314","Acetoacetate decarboxylase (ADC)"]]},{"id":"NCBITaxon:253","l":"Chryseobacterium indologenes","na":6,"nb":3,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["seedling-bto-0001228.html","seedling"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["tropical-envo-01000204.html","tropical"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["PROSITE%3APS00744","Beta-lactamases class B signature 2"],["TED%3AAF-A0A7T8U7T3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T8U7T3-F1-model_v4_TED01"],["TED%3AAF-A0A0N0ZUI2-F1-model_v4_TED01","TED novel fold AF-A0A0N0ZUI2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:399742","l":"Enterobacter sp. (strain 638)","na":3,"nb":6,"a":[["vasculature-uberon-0002049.html","vasculature"],["part-of-plant-habitatmech-madin-25325947e2.html","part of plant"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Pfam%3APF12404","Peptidase"],["Pfam%3APF27465","DNA-binding protein Fis N-terminal domain"],["Pfam%3APF02300","Fumarate reductase subunit C"],["Pfam%3APF04102","SlyX"],["Pfam%3APF06005","ZapB family"],["Pfam%3APF07208","Protein of unknown function (DUF1414)"]]},{"id":"NCBITaxon:1514140","l":"Trieres chinensis","na":3,"nb":5,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["estuarine-biome-envo-01000020.html","estuarine biome"],["shoreline-envo-00000486.html","shoreline"]],"b":[["TED%3AAF-A0A7S1YW68-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1YW68-F1-model_v4_TED01"],["TED%3AAF-A0A7S1Z4Z7-F1-model_v4_TED01","TED novel fold AF-A0A7S1Z4Z7-F1-model_v4_TED01"],["TED%3AAF-A0A7S1ZAT3-F1-model_v4_TED03","TED novel fold AF-A0A7S1ZAT3-F1-model_v4_TED03"],["TED%3AAF-A0A7S2A6A9-F1-model_v4_TED02","TED novel fold AF-A0A7S2A6A9-F1-model_v4_TED02"],["TED%3AAF-A0A7S2A7V0-F1-model_v4_TED02","TED novel fold AF-A0A7S2A7V0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1833","l":"Rhodococcus erythropolis","na":3,"nb":5,"a":[["watercourse-envo-00000029.html","watercourse"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"],["water-scum-envo-00005794.html","water scum"]],"b":[["Pfam%3APF08028","Acyl-CoA dehydrogenase, C-terminal domain"],["Pfam%3APF13816","Haem-containing dehydratase"],["Pfam%3APF07858","Limonene-1,2-epoxide hydrolase catalytic domain"],["Pfam%3APF09663","Amidohydrolase ring-opening protein (Amido_AtzD_TrzD)"],["TED%3AAF-A0A401N7F7-F1-model_v4_TED02","TED novel fold AF-A0A401N7F7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:68886","l":"Theileria orientalis","na":5,"nb":3,"a":[["erythrocyte-bto-0000424.html","erythrocyte"],["leukocyte-bto-0000751.html","leukocyte"],["lymphocyte-bto-0000775.html","lymphocyte"],["macrophage-bto-0000801.html","macrophage"],["monocyte-bto-0000876.html","monocyte"]],"b":[["TED%3AAF-A0A2T7I0Y7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2T7I0Y7-F1-model_v4_TED02"],["TED%3AAF-A0A2T7ITL4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T7ITL4-F1-model_v4_TED01"],["TED%3AAF-A0A2T7IKV1-F1-model_v4_TED01","TED novel fold AF-A0A2T7IKV1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:813","l":"Chlamydia trachomatis","na":3,"nb":5,"a":[["conjunctiva-bto-0003415.html","conjunctiva"],["epithelial-cell-bto-0000414.html","epithelial cell"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["Pfam%3APF07382","Histone H1-like nucleoprotein HC2"],["Pfam%3APF01308","Chlamydia major outer membrane protein"],["Pfam%3APF05475","Pgp3 C-terminal domain"],["Pfam%3APF03504","Chlamydia cysteine-rich outer membrane protein 6"],["TED%3AAF-C7DZ76-F1-model_v4_TED01","TED novel fold AF-C7DZ76-F1-model_v4_TED01"]]},{"id":"NCBITaxon:95486","l":"Burkholderia cenocepacia","na":5,"nb":3,"a":[["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["TED%3AAF-A0A109EHZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A109EHZ6-F1-model_v4_TED01"],["TED%3AAF-A0A071M3L2-F1-model_v4_TED01","TED novel fold AF-A0A071M3L2-F1-model_v4_TED01"],["TED%3AAF-A0A088UYL8-F1-model_v4_TED01","TED novel fold AF-A0A088UYL8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1451","l":"Paenibacillus amylolyticus","na":3,"nb":4,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["Pfam%3APF03211","Pectate lyase"],["TED%3AAF-A0A117I1X0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A117I1X0-F1-model_v4_TED01"],["TED%3AAF-A0A1R1DDF3-F1-model_v4_TED01","TED novel fold AF-A0A1R1DDF3-F1-model_v4_TED01"],["TED%3AAF-A0A4V3B7H8-F1-model_v4_TED01","TED novel fold AF-A0A4V3B7H8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1587","l":"Lactobacillus helveticus","na":4,"nb":3,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["intestine-environment-envo-2100002.html","intestine environment"],["urban-biome-envo-01000249.html","urban biome"],["harbour-envo-00000463.html","harbour"]],"b":[["Pfam%3APF18008","Replication initiator protein A C-terminal domain"],["Pfam%3APF20956","Domain of unknown function (DUF4931) C-terminal domain"],["Pfam%3APF17312","Bacteriocin helveticin-J"]]},{"id":"NCBITaxon:203122","l":"","na":4,"nb":3,"a":[["intertidal-zone-envo-00000316.html","intertidal zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["saline-marsh-envo-00000054.html","saline marsh"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["Pfam%3APF22686","Exo-oligoalginate lyase-like, C-terminal domain"],["Pfam%3APF07940","Heparinase II/III-like, C-terminal"],["Pfam%3APF05426","Alginate lyase"]]},{"id":"NCBITaxon:243090","l":"","na":4,"nb":3,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["oligotrophic-water-envo-00002223.html","oligotrophic water"],["pond-water-envo-00002228.html","pond water"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["Pfam%3APF02601","Exonuclease VII, large subunit"],["TED%3AAF-Q7UU79-F1-model_v4_TED04","TED highly-symmetric fold AF-Q7UU79-F1-model_v4_TED04"],["TED%3AAF-Q7USE8-F1-model_v4_TED02","TED novel fold AF-Q7USE8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:28037","l":"Streptococcus mitis","na":3,"nb":4,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["archeological-site-envo-00000564.html","archeological site"],["tropical-envo-01000204.html","tropical"]],"b":[["Pfam%3APF03047","COMC family"],["TED%3AAF-A0A1X1L9U5-F1-model_v4_TED02","TED novel fold AF-A0A1X1L9U5-F1-model_v4_TED02"],["TED%3AAF-A0A428B8X0-F1-model_v4_TED01","TED novel fold AF-A0A428B8X0-F1-model_v4_TED01"],["TED%3AAF-A0A6L5H4V3-F1-model_v4_TED03","TED novel fold AF-A0A6L5H4V3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:28447","l":"Clavibacter michiganensis","na":3,"nb":4,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["canker-habitatmech-bacdive-0f078d72a7.html","Canker"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["TED%3AAF-A0A251YC11-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A251YC11-F1-model_v4_TED02"],["TED%3AAF-A0A2S5VA57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5VA57-F1-model_v4_TED01"],["TED%3AAF-A0A2S5VJK2-F1-model_v4_TED01","TED novel fold AF-A0A2S5VJK2-F1-model_v4_TED01"],["TED%3AAF-A0A399NHQ8-F1-model_v4_TED01","TED novel fold AF-A0A399NHQ8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:290398","l":"","na":3,"nb":4,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["saline-evaporation-pond-envo-00000055.html","saline evaporation pond"],["joint-bto-0001686.html","joint"]],"b":[["Pfam%3APF20629","D-galactarate/Altronate dehydratase, C-terminal"],["Pfam%3APF04295","D-galactarate dehydratase/Altronate hydrolase, second domain"],["Pfam%3APF11982","Domain of unknown function (DUF3483)"],["PROSITE%3APS00908","Mandelate racemase / muconate lactonizing enzyme family signature 1"]]},{"id":"NCBITaxon:29159","l":"Crassostrea gigas","na":3,"nb":4,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["Pfam%3APF22494","Choice-of-anchor I domain"],["TED%3AAF-K1PYR0-F1-model_v4_TED01","TED novel fold AF-K1PYR0-F1-model_v4_TED01"],["TED%3AAF-K1Q3N2-F1-model_v4_TED01","TED novel fold AF-K1Q3N2-F1-model_v4_TED01"],["TED%3AAF-K1RG39-F1-model_v4_TED01","TED novel fold AF-K1RG39-F1-model_v4_TED01"]]},{"id":"NCBITaxon:404589","l":"","na":3,"nb":4,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["TED%3AAF-A7H7H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A7H7H4-F1-model_v4_TED01"],["TED%3AAF-A7H7U8-F1-model_v4_TED01","TED highly-symmetric fold AF-A7H7U8-F1-model_v4_TED01"],["TED%3AAF-A7HAV5-F1-model_v4_TED01","TED novel fold AF-A7HAV5-F1-model_v4_TED01"],["TED%3AAF-A7HE89-F1-model_v4_TED01","TED novel fold AF-A7HE89-F1-model_v4_TED01"]]},{"id":"NCBITaxon:45351","l":"Nematostella vectensis","na":4,"nb":3,"a":[["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["microbial-mat-material-envo-01000157.html","microbial mat material"],["slope-envo-00002000.html","slope"]],"b":[["Pfam%3APF14777","Cilia BBSome complex subunit 10"],["TED%3AAF-A7SVA7-F1-model_v4_TED01","TED highly-symmetric fold AF-A7SVA7-F1-model_v4_TED01"],["TED%3AAF-A7SXG3-F1-model_v4_TED02","TED novel fold AF-A7SXG3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:50741","l":"Marinobacter sp.","na":3,"nb":4,"a":[["marine-water-body-envo-00001999.html","marine water body"],["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["TED%3AAF-A0A2D9LBV8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9LBV8-F1-model_v4_TED01"],["TED%3AAF-A0A2D7X1D2-F1-model_v4_TED01","TED novel fold AF-A0A2D7X1D2-F1-model_v4_TED01"],["TED%3AAF-A0A2E8AEX3-F1-model_v4_TED02","TED novel fold AF-A0A2E8AEX3-F1-model_v4_TED02"],["TED%3AAF-A0A3D5Q8H2-F1-model_v4_TED01","TED novel fold AF-A0A3D5Q8H2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1260","l":"Finegoldia magna","na":3,"nb":3,"a":[["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["Pfam%3APF17573","GA-like domain"],["Pfam%3APF18656","Family of unknown function (DUF5633)"],["TED%3AAF-A0A233W4R0-F1-model_v4_TED01","TED novel fold AF-A0A233W4R0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1492","l":"Clostridium butyricum","na":3,"nb":3,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["intestine-environment-envo-2100002.html","intestine environment"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["Pfam%3APF00302","Chloramphenicol acetyltransferase"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["PROSITE%3APS00100","Chloramphenicol acetyltransferase active site"]]},{"id":"NCBITaxon:1717","l":"Corynebacterium diphtheriae","na":3,"nb":3,"a":[["foot-bto-0000476.html","foot"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["Pfam%3APF08051","Erythromycin resistance leader peptide"],["PROSITE%3APS01007","Transposases, Mutator family, signature"],["TED%3AAF-A0A811G0F8-F1-model_v4_TED05","TED novel fold AF-A0A811G0F8-F1-model_v4_TED05"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":3,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["TED%3AAF-A0A142EAM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142EAM9-F1-model_v4_TED03"],["TED%3AAF-A0A1Q3DTY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3DTY6-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3DNE3-F1-model_v4_TED01","TED novel fold AF-A0A1Q3DNE3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1961","l":"Streptomyces virginiae","na":3,"nb":3,"a":[["clay-envo-00002982.html","clay"],["plain-envo-00000086.html","plain"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF19328","2,4-diaminopentanoate dehydrogenase C-terminal domain"],["PROSITE%3APS01014","Transcription termination factor nusG signature"]]},{"id":"NCBITaxon:203124","l":"Trichodesmium erythraeum IMS101","na":3,"nb":3,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["coastal-water-body-envo-02000049.html","coastal water body"],["marine-neritic-zone-envo-00000206.html","marine neritic zone"]],"b":[["Pfam%3APF06206","CpeT/CpcT family (DUF1001)"],["Pfam%3APF18460","Heterocyst differentiation regulator C-terminal Hood domain"],["TED%3AAF-Q10WG6-F1-model_v4_TED05","TED highly-symmetric fold AF-Q10WG6-F1-model_v4_TED05"]]},{"id":"NCBITaxon:28108","l":"Alteromonas macleodii","na":3,"nb":3,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["marine-water-body-envo-00001999.html","marine water body"],["sandstone-envo-00002055.html","sandstone"]],"b":[["TED%3AAF-A0A6C5N007-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6C5N007-F1-model_v4_TED01"],["TED%3AAF-A0A126Q0V0-F1-model_v4_TED01","TED novel fold AF-A0A126Q0V0-F1-model_v4_TED01"],["TED%3AAF-A0A6T9Y0H6-F1-model_v4_TED01","TED novel fold AF-A0A6T9Y0H6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:335543","l":"","na":3,"nb":3,"a":[["anaerobic-sludge-envo-00002129.html","anaerobic sludge"],["submerged-bed-envo-00000501.html","submerged bed"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["Pfam%3APF03746","LamB/YcsF family"],["Pfam%3APF03588","Leucyl/phenylalanyl-tRNA protein transferase"],["Pfam%3APF05167","Uncharacterised ACR (DUF711)"]]},{"id":"NCBITaxon:340102","l":"","na":3,"nb":3,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"],["solfatara-envo-00000217.html","solfatara"]],"b":[["Pfam%3APF22039","Imidazolonepropionase-like composite domain, bacteria"],["Pfam%3APF01949","Endonuclease dU"],["TED%3AAF-A4WK08-F1-model_v4_TED01","TED novel fold AF-A4WK08-F1-model_v4_TED01"]]},{"id":"NCBITaxon:386415","l":"","na":3,"nb":3,"a":[["myocardium-bto-0000901.html","myocardium"],["reticuloendothelial-system-bto-0001174.html","reticuloendothelial system"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["Pfam%3APF27467","ATP-dependent helicase/deoxyribonuclease AddB fifth domain"],["Pfam%3APF01888","CbiD"],["Pfam%3APF18146","Damage-inducible protein CinA KH domain"]]},{"id":"NCBITaxon:418699","l":"","na":3,"nb":3,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["petroleum-envo-00002984.html","petroleum"]],"b":[["Pfam%3APF27460","ATP phosphoribosyltransferase subunit HisZ C-terminal domain"],["Pfam%3APF20543","N2-fixation sustaining protein CowN"],["PROSITE%3APS00855","Signal peptidases II signature"]]},{"id":"NCBITaxon:582","l":"Morganella morganii","na":3,"nb":3,"a":[["blast-cell-bto-0000125.html","blast cell"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"],["spike-bto-0001278.html","spike"]],"b":[["PROSITE%3APS01157","Class A bacterial acid phosphatases signature"],["TED%3AAF-A0A2C5TPE5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2C5TPE5-F1-model_v4_TED01"],["TED%3AAF-A0A0A2RJY1-F1-model_v4_TED02","TED novel fold AF-A0A0A2RJY1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":3,"nb":3,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Pfam%3APF04205","FMN-binding domain"],["Pfam%3APF10795","Protein of unknown function (DUF2607)"],["TED%3AAF-A0A1W6U0N2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W6U0N2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:75985","l":"Mannheimia haemolytica","na":3,"nb":3,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["leukocyte-bto-0000751.html","leukocyte"],["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["Pfam%3APF04224","Protein of unknown function, DUF417"],["Pfam%3APF04393","Protein of unknown function (DUF535)"],["TED%3AAF-A0A378MS69-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A378MS69-F1-model_v4_TED01"]]},{"id":"NCBITaxon:94122","l":"Shewanella sp. ANA-3","na":3,"nb":3,"a":[["alkaline-water-envo-01000357.html","alkaline water"],["brackish-estuary-envo-00002137.html","brackish estuary"],["underground-water-envo-00005792.html","underground water"]],"b":[["Pfam%3APF03883","Peroxide stress protein YaaA"],["Pfam%3APF04751","Dual-action ribosomal maturation protein DarP"],["Pfam%3APF04356","Protein of unknown function (DUF489)"]]},{"id":"NCBITaxon:6239","l":"Caenorhabditis elegans","na":2,"nb":9682,"a":[["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.14.14.-","With reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.17.-","With reduced ascorbate as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.19.-","With oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water"],["EC%3A1.14.99.-","Miscellaneous"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii (strain ATCC 43067 / DSM 2661 / JAL-1 / JCM 10045 / NBRC 100440)","na":2,"nb":5181,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["EC%3A1.12.99.-","With other acceptors"],["EC%3A1.3.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.3.-.-","Acting on the CH-CH group of donors"],["EC%3A1.8.98.-","With other, known, acceptors"],["EC%3A1.97.1.-","Other oxidoreductases"],["EC%3A2.1.2.-","Hydroxymethyl-, formyl- and related transferases"]]},{"id":"NCBITaxon:83331","l":"Mycobacterium tuberculosis (strain CDC 1551 / Oshkosh)","na":2,"nb":99,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["Pfam%3APF09407","AbiEi antitoxin C-terminal domain"],["Pfam%3APF17668","Acetyltransferase (GNAT) domain"],["Pfam%3APF13480","Acetyltransferase (GNAT) domain"],["Pfam%3APF13527","Acetyltransferase (GNAT) domain"],["Pfam%3APF16701","Adenylate cyclase regulatory domain"],["Pfam%3APF06029","AlkA N-terminal domain"]]},{"id":"NCBITaxon:9031","l":"Gallus gallus","na":2,"nb":48,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["Pfam%3APF16620","Unstructured linker between I-set domains 2 and 3 on MYLCK"],["Pfam%3APF15512","Chromatin assembly factor complex 1 subunit p60, C-terminal"],["Pfam%3APF18130","ATP-grasp N-terminal domain"],["Pfam%3APF15632","ATP-grasp in the biosynthetic pathway with Ter operon"],["Pfam%3APF01382","Avidin family"],["Pfam%3APF08072","BDHCT (NUC031) domain"]]},{"id":"NCBITaxon:266940","l":"Kineococcus radiotolerans SRS30216 = ATCC BAA-149","na":38,"nb":2,"a":[["air-envo-00002005.html","air"],["bay-envo-00000032.html","bay"],["coastal-sea-water-envo-00002150.html","coastal sea water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"]],"b":[["Pfam%3APF01083","Cutinase"],["TED%3AAF-A6WE06-F1-model_v4_TED06","TED novel fold AF-A6WE06-F1-model_v4_TED06"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":33,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["pond-water-envo-00002228.html","pond water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["water-body-envo-00000063.html","water body"]],"b":[["Pfam%3APF22538","Hexaprenyl diphosphate synthase, small subunit"],["PROSITE%3APS01066","Undecaprenyl pyrophosphate synthase family signature"]]},{"id":"NCBITaxon:9541","l":"Macaca fascicularis","na":2,"nb":27,"a":[["neritic-epipelagic-zone-biome-envo-01000042.html","neritic epipelagic zone biome"],["sea-shore-envo-00000485.html","sea shore"]],"b":[["Pfam%3APF16618","Linker region between SH3 and WW domains on ARHGAP12"],["Pfam%3APF28426","ATRIP C-terminal domain"],["Pfam%3APF28409","ATR-interacting protein N-terminal domain"],["Pfam%3APF23998","BTBDG BTB/POZ domain"],["Pfam%3APF21059","BTB/POZ domain-containing protein 16, C-terminal domain"],["Pfam%3APF12366","Cancer susceptibility candidate 1 C-terminal"]]},{"id":"NCBITaxon:4577","l":"Zea mays","na":2,"nb":18,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["IDPO%3A0000002","disorder"],["Pfam%3APF14861","Plant antimicrobial peptide"],["Pfam%3APF02041","Auxin binding protein"],["Pfam%3APF25436","BSD2 cysteine rich domain"],["Pfam%3APF23493","Cysteinyl-tRNA ligase anticodon binding domain"],["Pfam%3APF03330","Lytic transglycolase"]]},{"id":"NCBITaxon:85963","l":"Helicobacter pylori (strain J99 / ATCC 700824)","na":2,"nb":18,"a":[["anaerobic-sludge-blanket-reactor-envo-00002213.html","anaerobic sludge blanket reactor"],["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["Pfam%3APF15437","Plasminogen-binding protein pgbA C-terminal"],["Pfam%3APF02293","AmiS/UreI family transporter"],["Pfam%3APF26365","Apolipoprotein N-acyltransferase integral membrane domain"],["Pfam%3APF16730","DnaG-primase C-terminal, helicase-binding domain"],["Pfam%3APF10398","Protein of unknown function (DUF2443)"],["Pfam%3APF13099","Domain of unknown function (DUF3944)"]]},{"id":"NCBITaxon:176299","l":"Agrobacterium fabrum (strain C58 / ATCC 33970)","na":2,"nb":17,"a":[["human-construction-envo-00000070.html","human construction"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF28403","Aconitase X second domain"],["Pfam%3APF28406","Aconitase X third domain"],["Pfam%3APF04412","Aconitase X first domain"],["Pfam%3APF01989","Aconitase X swivel domain"]]},{"id":"NCBITaxon:272631","l":"Mycobacterium leprae (strain TN)","na":2,"nb":16,"a":[["peripheral-blood-mononuclear-cell-bto-0001025.html","peripheral blood mononuclear cell"],["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["Pfam%3APF26519","Biotin synthase auxiliary protein family"],["Pfam%3APF24481","CT398-like coiled coil hairpin domain"],["Pfam%3APF09438","Domain of unknown function (DUF2017)"],["Pfam%3APF12089","Transmembrane domain of unknown function (DUF3566)"],["Pfam%3APF12823","Domain of unknown function (DUF3817)"],["Pfam%3APF19187","PafC helix-turn-helix domain"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":2,"nb":16,"a":[["feces-uberon-0001988.html","feces"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["Pfam%3APF05932","Tir chaperone protein (CesT) family"],["Pfam%3APF17656","FlgA N-terminal domain"],["Pfam%3APF22200","ExsA N-terminal regulatory domain"],["Pfam%3APF05171","Haemin-degrading HemS.ChuX domain"],["Pfam%3APF07201","HrpJ-like domain"],["Pfam%3APF04391","Protein of unknown function (DUF533)"]]},{"id":"NCBITaxon:1580","l":"Levilactobacillus brevis","na":14,"nb":2,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["organic-waste-material-envo-00002873.html","organic waste material"],["research-facility-envo-00000469.html","research facility"],["food-fermented-foodon-00001258.html","food (fermented)"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["caco-2-cell-bto-0000195.html","CACO-2 cell"]],"b":[["TED%3AAF-A0A2A3TVW3-F1-model_v4_TED01","TED novel fold AF-A0A2A3TVW3-F1-model_v4_TED01"],["TED%3AAF-A0A7Z6MPZ0-F1-model_v4_TED02","TED novel fold AF-A0A7Z6MPZ0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:574521","l":"Escherichia coli O127:H6 (strain E2348/69 / EPEC)","na":2,"nb":13,"a":[["enterocyte-bto-0000398.html","enterocyte"],["gut-epithelium-bto-0000956.html","gut epithelium"]],"b":[["IDPO%3A0000006","order"],["IDPO%3A0000045","phosphorylation display site"],["Pfam%3APF02369","Bacterial Ig-like domain (group 1)"],["Pfam%3APF05307","Bundlin"],["Pfam%3APF27328","EcpD C-terminal domain"],["Pfam%3APF11924","Inverse autotransporter, beta-domain"]]},{"id":"NCBITaxon:58172","l":"Paenibacillus sp.","na":12,"nb":2,"a":[["factory-envo-01000536.html","factory"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["Pfam%3APF03442","Carbohydrate binding domain X2"],["TED%3AAF-A0A357M9E9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A357M9E9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:234267","l":"Candidatus Solibacter usitatus Ellin6076","na":11,"nb":2,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["pond-water-envo-00002228.html","pond water"],["aquatic-environment-envo-01000317.html","aquatic environment"],["desert-sand-envo-00005800.html","desert sand"],["environmental-material-envo-00010483.html","environmental material"],["mud-envo-01000001.html","mud"]],"b":[["TED%3AAF-Q01YB9-F1-model_v4_TED05","TED highly-symmetric fold AF-Q01YB9-F1-model_v4_TED05"],["TED%3AAF-Q02DA0-F1-model_v4_TED01","TED highly-symmetric fold AF-Q02DA0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:31234","l":"Caenorhabditis remanei","na":2,"nb":11,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"]],"b":[["TED%3AAF-A0A260YVB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A260YVB9-F1-model_v4_TED01"],["TED%3AAF-A0A2P4UZM7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2P4UZM7-F1-model_v4_TED02"],["TED%3AAF-A0A6A5GBX3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A5GBX3-F1-model_v4_TED01"],["TED%3AAF-A0A6A5H6H5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A5H6H5-F1-model_v4_TED01"],["TED%3AAF-A0A6A5HK12-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6A5HK12-F1-model_v4_TED02"],["TED%3AAF-E3LF65-F1-model_v4_TED02","TED highly-symmetric fold AF-E3LF65-F1-model_v4_TED02"]]},{"id":"NCBITaxon:190650","l":"Caulobacter vibrioides (strain ATCC 19089 / CIP 103742 / CB 15)","na":2,"nb":10,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["IDPO%3A0000060","self-assembly"],["Pfam%3APF27198","FlaEY third domain"],["Pfam%3APF22367","Flagellar hook protein FlgE, third domain"],["Pfam%3APF03799","Cell division protein FtsQ/DivIB, C-terminal"],["Pfam%3APF27294","HfaA"],["Pfam%3APF27277","Holdfast attachment protein D"]]},{"id":"NCBITaxon:853","l":"Faecalibacterium prausnitzii","na":2,"nb":10,"a":[["coral-reef-envo-00000150.html","coral reef"],["tropical-envo-01000204.html","tropical"]],"b":[["TED%3AAF-A0A2A7AJ69-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A7AJ69-F1-model_v4_TED01"],["TED%3AAF-A0A329UNG0-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A329UNG0-F1-model_v4_TED05"],["TED%3AAF-A0A3F3JVN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3F3JVN3-F1-model_v4_TED01"],["TED%3AAF-A0A564SWB8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A564SWB8-F1-model_v4_TED02"],["TED%3AAF-A0A173SIF7-F1-model_v4_TED01","TED novel fold AF-A0A173SIF7-F1-model_v4_TED01"],["TED%3AAF-A0A173WYP6-F1-model_v4_TED01","TED novel fold AF-A0A173WYP6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:166","l":"Treponema sp.","na":2,"nb":9,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["TED%3AAF-A0A351Z2H3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A351Z2H3-F1-model_v4_TED01"],["TED%3AAF-A0A356K0W2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A356K0W2-F1-model_v4_TED02"],["TED%3AAF-A0A3B8WTM6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3B8WTM6-F1-model_v4_TED02"],["TED%3AAF-A0A3C1HX51-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3C1HX51-F1-model_v4_TED03"],["TED%3AAF-A0A521IH80-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521IH80-F1-model_v4_TED01"],["TED%3AAF-A0A7X8IF67-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X8IF67-F1-model_v4_TED01"]]},{"id":"NCBITaxon:190485","l":"Xanthomonas campestris pv. campestris (strain ATCC 33913 / DSM 3586 / NCPPB 528 / LMG 568 / P 25)","na":2,"nb":9,"a":[["fruit-bto-0000486.html","fruit"],["vascular-tissue-bto-0001432.html","vascular tissue"]],"b":[["Pfam%3APF28546","TonB transmembrane helix"],["Pfam%3APF00325","Bacterial regulatory proteins, crp family"],["Pfam%3APF06165","Glycosyl hydrolase 94, supersandwich domain"],["Pfam%3APF12019","Type II transport protein GspH"],["Pfam%3APF22059","Glucuronosyltransferase GumK, N-terminal domain"],["Pfam%3APF14307","Glycosyltransferase WbsX"]]},{"id":"NCBITaxon:272624","l":"Legionella pneumophila subsp. pneumophila (strain Philadelphia 1 / ATCC 33152 / DSM 7513)","na":2,"nb":9,"a":[["underground-water-envo-00005792.html","underground water"],["macrophage-bto-0000801.html","macrophage"]],"b":[["Pfam%3APF22170","Phosphocholine transferase AnkX insertion domain"],["Pfam%3APF23127","DotM, C-terminal cytoplasmic domain"],["Pfam%3APF14860","DrrA phosphatidylinositol 4-phosphate binding domain"],["Pfam%3APF01346","Domain amino terminal to FKBP-type peptidyl-prolyl isomerase"],["Pfam%3APF19335","Heavy metal binding domain"],["Pfam%3APF26393","Lart1 ADP-ribosyltransferase family"]]},{"id":"NCBITaxon:1074","l":"Rhodoblastus acidophilus","na":8,"nb":2,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"],["liquid-water-envo-00002006.html","liquid water"],["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["rhizosphere-envo-00005801.html","rhizosphere"]],"b":[["PROSITE%3APS00969","Antenna complexes beta subunits signature"],["TED%3AAF-A0A6N8DR15-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8DR15-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1655","l":"Actinomyces naeslundii","na":8,"nb":2,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"],["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"],["archeological-site-envo-00000564.html","archeological site"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Pfam%3APF16555","Gram-positive pilin subunit D1, N-terminal domain"],["TED%3AAF-A0A2Z5QNH6-F1-model_v4_TED02","TED novel fold AF-A0A2Z5QNH6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2702","l":"Gardnerella vaginalis","na":8,"nb":2,"a":[["egg-food-product-foodon-00001274.html","egg food product"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["TED%3AAF-A0A133NUL7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A133NUL7-F1-model_v4_TED01"],["TED%3AAF-A0A3E2C3X9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3E2C3X9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":8,"nb":2,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"]],"b":[["TED%3AAF-A0A6N3WS12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N3WS12-F1-model_v4_TED01"],["TED%3AAF-A0A3R7GIU2-F1-model_v4_TED02","TED novel fold AF-A0A3R7GIU2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:419947","l":"Mycobacterium tuberculosis (strain ATCC 25177 / H37Ra)","na":2,"nb":8,"a":[["clay-envo-00002982.html","clay"],["paddy-field-envo-00000297.html","paddy field"]],"b":[["Pfam%3APF17668","Acetyltransferase (GNAT) domain"],["Pfam%3APF13527","Acetyltransferase (GNAT) domain"],["Pfam%3APF02261","Aspartate decarboxylase"],["Pfam%3APF07584","Aerotolerance regulator N-terminal"],["Pfam%3APF03993","Domain of Unknown Function (DUF349)"],["Pfam%3APF02313","Fumarate reductase subunit D"]]},{"id":"NCBITaxon:467705","l":"Streptococcus gordonii (strain Challis / ATCC 35105 / BCRC 15272 / CH1 / DL1 / V288)","na":2,"nb":8,"a":[["dental-plaque-bto-0000338.html","dental plaque"],["tooth-bto-0000397.html","tooth"]],"b":[["Pfam%3APF18652","Adhesin P1 N-terminal domain"],["Pfam%3APF17998","Cell surface antigen I/II C2 terminal domain"],["Pfam%3APF16364","Cell surface antigen C-terminus"],["Pfam%3APF18938","Atypical Rib domain"],["Pfam%3APF20164","GspA/SrpA SigLec-like domain"],["Pfam%3APF08363","Glucan-binding protein C"]]},{"id":"NCBITaxon:1231","l":"Nitrosospira multiformis","na":7,"nb":2,"a":[["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["biome-envo-00000428.html","biome"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"],["sludge-envo-00002044.html","sludge"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"]],"b":[["TED%3AAF-A0A1I0DRD9-F1-model_v4_TED01","TED novel fold AF-A0A1I0DRD9-F1-model_v4_TED01"],["TED%3AAF-A0A2T5IBV5-F1-model_v4_TED01","TED novel fold AF-A0A2T5IBV5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1911","l":"Streptomyces griseus","na":2,"nb":7,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["Pfam%3APF13207","AAA domain"],["Pfam%3APF27054","Beta-methylindole-3-pyruvate reductase C-terminal domain"],["Pfam%3APF26558","3-dehydroquinate synthase II C-terminal domain"],["Pfam%3APF01959","3-dehydroquinate synthase II N-terminal domain"],["Pfam%3APF13459","4Fe-4S single cluster domain"],["Pfam%3APF04655","Aminoglycoside/hydroxyurea antibiotic resistance kinase"]]},{"id":"NCBITaxon:216773","l":"Corethron hystrix","na":2,"nb":7,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"],["saline-water-envo-00002010.html","saline water"]],"b":[["TED%3AAF-A0A7S1B7I7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1B7I7-F1-model_v4_TED01"],["TED%3AAF-A0A7S1BDF8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1BDF8-F1-model_v4_TED01"],["TED%3AAF-A0A7S1BL96-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1BL96-F1-model_v4_TED01"],["TED%3AAF-A0A7S1FKX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1FKX2-F1-model_v4_TED01"],["TED%3AAF-A0A7S1BFC1-F1-model_v4_TED01","TED novel fold AF-A0A7S1BFC1-F1-model_v4_TED01"],["TED%3AAF-A0A7S1BX15-F1-model_v4_TED02","TED novel fold AF-A0A7S1BX15-F1-model_v4_TED02"]]},{"id":"NCBITaxon:379508","l":"Lodderomyces elongisporus (strain ATCC 11503 / CBS 2605 / JCM 1781 / NBRC 1676 / NRRL YB-4239)","na":2,"nb":7,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"],["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["Pfam%3APF28272","AIM11 N-terminal domain"],["Pfam%3APF23681","ATP-dependent rRNA helicase SPB4-like, C-terminal tail"],["Pfam%3APF01987","Mitochondrial biogenesis AIM24"],["Pfam%3APF17052","Cap associated factor"],["PROSITE%3APS00885","EPSP synthase signature 2"],["TED%3AAF-A5DUG9-F1-model_v4_TED01","TED novel fold AF-A5DUG9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1184267","l":"Pseudobdellovibrio exovorus JSS","na":6,"nb":2,"a":[["stream-envo-00000023.html","stream"],["biome-envo-00000428.html","biome"],["desert-biome-envo-01000179.html","desert biome"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["TED%3AAF-M4VA20-F1-model_v4_TED02","TED highly-symmetric fold AF-M4VA20-F1-model_v4_TED02"],["TED%3AAF-M4VEE5-F1-model_v4_TED01","TED highly-symmetric fold AF-M4VEE5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:34003","l":"Paracoccus aminophilus","na":6,"nb":2,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["small-river-biome-envo-00000890.html","small river biome"],["water-scum-envo-00005794.html","water scum"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"],["stony-desert-envo-00000183.html","stony desert"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["Pfam%3APF26354","N,N-dimethylformamidase alpha subunit"],["Pfam%3APF20254","N,N-dimethylformamidase beta subunit-like, C-terminal"]]},{"id":"NCBITaxon:353153","l":"Trypanosoma cruzi (strain CL Brener)","na":2,"nb":6,"a":[["amastigote-bto-0000062.html","amastigote"],["kinetoplastid-bto-0002502.html","kinetoplastid"]],"b":[["Pfam%3APF03738","Glutathionylspermidine synthase preATP-grasp"],["TED%3AAF-Q4D5Q0-F1-model_v4_TED01","TED highly-symmetric fold AF-Q4D5Q0-F1-model_v4_TED01"],["TED%3AAF-Q4CQE1-F1-model_v4_TED01","TED novel fold AF-Q4CQE1-F1-model_v4_TED01"],["TED%3AAF-Q4DRS0-F1-model_v4_TED01","TED novel fold AF-Q4DRS0-F1-model_v4_TED01"],["TED%3AAF-Q4DY69-F1-model_v4_TED01","TED novel fold AF-Q4DY69-F1-model_v4_TED01"],["TED%3AAF-Q4E0W9-F1-model_v4_TED01","TED novel fold AF-Q4E0W9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":2,"nb":6,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["Pfam%3APF01177","Asp/Glu/Hydantoin racemase"],["Pfam%3APF11339","Protein of unknown function (DUF3141)"],["PROSITE%3APS01303","BCCT family of transporters signature"],["PROSITE%3APS00665","Dihydrodipicolinate synthase signature 1"],["TED%3AAF-A0A2J0YSD4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J0YSD4-F1-model_v4_TED01"],["TED%3AAF-A0A843ZNG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843ZNG8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:446","l":"Legionella pneumophila","na":6,"nb":2,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["hospital-envo-00002173.html","hospital"],["macrophage-bto-0000801.html","macrophage"],["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["Pfam%3APF14860","DrrA phosphatidylinositol 4-phosphate binding domain"],["TED%3AAF-A0A822WCM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A822WCM6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:523849","l":"Thermococcus litoralis (strain ATCC 51850 / DSM 5473 / JCM 8560 / NS-C)","na":2,"nb":6,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["Pfam%3APF09094","Alpha-amylase/4-alpha-glucanotransferase, middle domain"],["Pfam%3APF09095","Alpha-amylase/4-alpha-glucanotransferase, C-terminal"],["Pfam%3APF28476","Glycogen phosphorylase C-terminal domain"],["Pfam%3APF11897","Protein of unknown function (DUF3417)"],["PROSITE%3APS01334","Pyrrolidone-carboxylate peptidase cysteine active site"],["PROSITE%3APS01333","Pyrrolidone-carboxylate peptidase glutamic acid active site"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":2,"nb":6,"a":[["hospital-envo-00002173.html","hospital"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["Pfam%3APF16376","N-terminal domain of fragilysin"],["TED%3AAF-A0A412XR06-F1-model_v4_TED03","TED novel fold AF-A0A412XR06-F1-model_v4_TED03"],["TED%3AAF-A0A4V1EUI2-F1-model_v4_TED02","TED novel fold AF-A0A4V1EUI2-F1-model_v4_TED02"],["TED%3AAF-A0A5C6IXH5-F1-model_v4_TED01","TED novel fold AF-A0A5C6IXH5-F1-model_v4_TED01"],["TED%3AAF-A0A5C6L6G9-F1-model_v4_TED02","TED novel fold AF-A0A5C6L6G9-F1-model_v4_TED02"],["TED%3AAF-A0A642KY52-F1-model_v4_TED01","TED novel fold AF-A0A642KY52-F1-model_v4_TED01"]]},{"id":"UBERON:0001046","l":"","na":6,"nb":2,"a":[["hindgut-habitatmech-gold-38f60a7f52.html","Hindgut"],["hindgut-habitatmech-gold-e323c98727.html","Hindgut"],["hindgut-habitatmech-gold-19840c718e.html","Hindgut"],["hindgut-habitatmech-gold-c336fb0bb7.html","Hindgut"],["hindgut-habitatmech-gold-50722c7871.html","Hindgut"],["paunch-p3-segment-habitatmech-gold-86aef52360.html","Paunch/P3 segment"]],"b":[["GO%3A0043133","hindgut contraction"],["GO%3A0043134","regulation of hindgut contraction"]]},{"id":"NCBITaxon:1055524","l":"Burkholderia cenocepacia (strain H111)","na":2,"nb":5,"a":[["k-562-cell-bto-0000664.html","K-562 cell"],["macrophage-bto-0000801.html","macrophage"]],"b":[["Pfam%3APF20148","Domain of unknown function (DUF6531)"],["Pfam%3APF14430","Immunity protein Imm1"],["Pfam%3APF05488","PAAR motif"],["Pfam%3APF03527","RHS protein"],["Pfam%3APF05593","RHS Repeat"]]},{"id":"NCBITaxon:1121264","l":"Caloranaerobacter azorensis DSM 13643","na":5,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["sea-envo-00000016.html","sea"],["ridge-envo-00000283.html","ridge"],["trough-envo-00000499.html","trough"]],"b":[["TED%3AAF-A0A1M5V0T2-F1-model_v4_TED02","TED novel fold AF-A0A1M5V0T2-F1-model_v4_TED02"],["TED%3AAF-A0A1M5V0T2-F1-model_v4_TED03","TED novel fold AF-A0A1M5V0T2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1245","l":"Leuconostoc mesenteroides","na":5,"nb":2,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["leaf-po-0025034.html","leaf"],["animal-manure-envo-00003031.html","animal manure"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["Pfam%3APF08951","Bacteriocin immunity protein family"],["TED%3AAF-A0A8B5R1X5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B5R1X5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:143495","l":"Aneurinibacillus thermoaerophilus","na":5,"nb":2,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["Pfam%3APF05523","WxcM-like, C-terminal"],["TED%3AAF-A0A1G8FMF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G8FMF4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:145262","l":"Methanothermobacter thermautotrophicus","na":5,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["intestine-environment-envo-2100002.html","intestine environment"],["sludge-envo-00002044.html","sludge"]],"b":[["Pfam%3APF12686","Protein of unknown function (DUF3800)"],["PROSITE%3APS00093","N-4 cytosine-specific DNA methylases signature"]]},{"id":"NCBITaxon:2021","l":"Thermobifida fusca","na":2,"nb":5,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["Pfam%3APF00553","Cellulose binding domain"],["Pfam%3APF01341","Glycosyl hydrolases family 6"],["PROSITE%3APS00561","CBM2a (carbohydrate-binding type-2) domain signature"],["PROSITE%3APS00655","Glycosyl hydrolases family 6 signature 1"],["PROSITE%3APS00656","Glycosyl hydrolases family 6 signature 2"]]},{"id":"NCBITaxon:37919","l":"Rhodococcus opacus","na":5,"nb":2,"a":[["watercourse-envo-00000029.html","watercourse"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"],["sludge-envo-00002044.html","sludge"],["water-scum-envo-00005794.html","water scum"]],"b":[["Pfam%3APF11794","4-hydroxyphenylacetate 3-hydroxylase N terminal"],["Pfam%3APF03241","4-hydroxyphenylacetate 3-hydroxylase C terminal"]]},{"id":"NCBITaxon:393133","l":"Listeria monocytogenes serotype 1/2a (strain 10403S)","na":2,"nb":5,"a":[["lymphocyte-bto-0000775.html","lymphocyte"],["spleen-bto-0001281.html","spleen"]],"b":[["Pfam%3APF07698","7TM receptor with intracellular HD hydrolase"],["Pfam%3APF07697","7TM-HD extracellular"],["Pfam%3APF24898","Cyclic-di-AMP phosphodiesterase GdpP-like, GGDEF domain"],["Pfam%3APF19293","CdaA N-terminal transmembrane domain"],["Pfam%3APF04346","Ethanolamine utilisation protein, EutH"]]},{"id":"NCBITaxon:394096","l":"Hyalangium minutum","na":2,"nb":5,"a":[["wood-bto-0005516.html","wood"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["TED%3AAF-A0A085W4M3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085W4M3-F1-model_v4_TED01"],["TED%3AAF-A0A085WRA7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085WRA7-F1-model_v4_TED01"],["TED%3AAF-A0A085WWM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085WWM4-F1-model_v4_TED01"],["TED%3AAF-A0A085W7S5-F1-model_v4_TED03","TED novel fold AF-A0A085W7S5-F1-model_v4_TED03"],["TED%3AAF-A0A085WH04-F1-model_v4_TED01","TED novel fold AF-A0A085WH04-F1-model_v4_TED01"]]},{"id":"NCBITaxon:529","l":"Brucella anthropi","na":5,"nb":2,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["hospital-envo-00002173.html","hospital"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF07930","D-aminopeptidase, domain B"],["TED%3AAF-A0A7T4IBJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T4IBJ8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":5,"nb":2,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["pseudostem-bto-0005992.html","pseudostem"],["seedling-bto-0001228.html","seedling"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["soil-envo-00001998.html","soil"]],"b":[["PROSITE%3APS00336","Beta-lactamase class-C active site"],["TED%3AAF-A0A155XQ59-F1-model_v4_TED02","TED novel fold AF-A0A155XQ59-F1-model_v4_TED02"]]},{"id":"NCBITaxon:556","l":"Dickeya chrysanthemi","na":2,"nb":5,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["Pfam%3APF18390","Glycogen debranching enzyme C-terminal domain"],["Pfam%3APF25994","AprE, long alpha-helical hairpin"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF03812","2-keto-3-deoxygluconate permease"],["Pfam%3APF09589","HrpA pilus formation protein"]]},{"id":"NCBITaxon:63737","l":"Nostoc punctiforme PCC 73102","na":2,"nb":5,"a":[["heterocyst-bto-0000600.html","heterocyst"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["Pfam%3APF11266","Long-chain fatty aldehyde decarbonylase"],["Pfam%3APF21808","Bacterial dynamin-like protein, helical domain"],["Pfam%3APF18460","Heterocyst differentiation regulator C-terminal Hood domain"],["Pfam%3APF13619","KTSC domain"],["PROSITE%3APS01026","Photosystem I psaG and psaK proteins signature"]]},{"id":"NCBITaxon:6945","l":"Ixodes scapularis","na":5,"nb":2,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["city-envo-00000856.html","city"],["midgut-bto-0000863.html","midgut"],["nymph-bto-0000954.html","nymph"],["salivary-gland-bto-0001203.html","salivary gland"]],"b":[["TED%3AAF-A0A4D5RH31-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4D5RH31-F1-model_v4_TED01"],["TED%3AAF-B7Q616-F1-model_v4_TED01","TED highly-symmetric fold AF-B7Q616-F1-model_v4_TED01"]]},{"id":"NCBITaxon:76114","l":"Aromatoleum aromaticum (strain DSM 19018 / LMG 30748 / EbN1)","na":2,"nb":5,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["Pfam%3APF08882","Acetone carboxylase gamma subunit"],["Pfam%3APF19278","Hydantoinase/oxoprolinase C-terminal domain"],["Pfam%3APF05378","Hydantoinase/oxoprolinase N-terminal region"],["Pfam%3APF01968","Hydantoinase/oxoprolinase"],["Pfam%3APF02538","Hydantoinase B/oxoprolinase"]]},{"id":"NCBITaxon:885","l":"Desulfovibrio sp.","na":5,"nb":2,"a":[["marine-water-body-envo-00001999.html","marine water body"],["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["sludge-envo-00002044.html","sludge"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["TED%3AAF-A0A6N8BWZ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8BWZ8-F1-model_v4_TED01"],["TED%3AAF-A0A2E3RAH3-F1-model_v4_TED02","TED novel fold AF-A0A2E3RAH3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:100884","l":"Coprobacillus cateniformis","na":4,"nb":2,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["gut-bto-0000545.html","gut"],["sediment-envo-00002007.html","sediment"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-E7G7Y6-F1-model_v4_TED01","TED highly-symmetric fold AF-E7G7Y6-F1-model_v4_TED01"],["TED%3AAF-E7G976-F1-model_v4_TED02","TED highly-symmetric fold AF-E7G976-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1122192","l":"Marinactinospora thermotolerans DSM 45154","na":4,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["ocean-trench-envo-00000275.html","ocean trench"],["oceanic-zone-envo-00000207.html","oceanic zone"],["trough-envo-00000499.html","trough"]],"b":[["TED%3AAF-A0A1T4KF05-F1-model_v4_TED04","TED novel fold AF-A0A1T4KF05-F1-model_v4_TED04"],["TED%3AAF-A0A1T4TG93-F1-model_v4_TED01","TED novel fold AF-A0A1T4TG93-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1254","l":"Pediococcus acidilactici","na":4,"nb":2,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["research-facility-envo-00000469.html","research facility"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["Pfam%3APF01721","Class II bacteriocin"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":4,"nb":2,"a":[["stream-envo-00000023.html","stream"],["biome-envo-00000428.html","biome"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["Pfam%3APF02052","Gallidermin"],["Pfam%3APF04604","Type-A lantibiotic"]]},{"id":"NCBITaxon:1334","l":"Streptococcus dysgalactiae","na":4,"nb":2,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["Pfam%3APF20746","Endo-beta-N-acetylglucosaminidase F2, Ig-like domain"],["Pfam%3APF23952","Endo-beta-N-acetylglucosaminidase EndoS LRR domain"]]},{"id":"NCBITaxon:1401","l":"Paenibacillus lautus","na":2,"nb":4,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["Pfam%3APF18448","Carbohydrate binding domain"],["Pfam%3APF12891","Glycoside hydrolase family 44"],["TED%3AAF-A0A328VZ83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A328VZ83-F1-model_v4_TED01"],["TED%3AAF-A0A385TU82-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A385TU82-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1525","l":"Neomoorella thermoacetica","na":2,"nb":4,"a":[["liquid-water-envo-00002006.html","liquid water"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["Pfam%3APF25461","Selenocysteine-specific elongation factor, beta-barrel domain"],["Pfam%3APF18537","Carbon monoxide dehydrogenase subunit alpha N-terminal domain"],["Pfam%3APF04060","Putative Fe-S cluster"],["Pfam%3APF03599","CO dehydrogenase/acetyl-CoA synthase delta subunit"]]},{"id":"NCBITaxon:2045","l":"Nocardioides simplex","na":2,"nb":4,"a":[["petroleum-envo-00002984.html","petroleum"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["Pfam%3APF00775","Dioxygenase"],["Pfam%3APF04444","Catechol dioxygenase N terminus"],["PROSITE%3APS00083","Intradiol ring-cleavage dioxygenases signature"],["TED%3AAF-A0A4Y3NBY1-F1-model_v4_TED01","TED novel fold AF-A0A4Y3NBY1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:262316","l":"Mycolicibacterium paratuberculosis (strain ATCC BAA-968 / K-10)","na":2,"nb":4,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF19288","CofH/MqnC C-terminal region"],["Pfam%3APF03601","Conserved hypothetical protein 698"],["PROSITE%3APS60002","Phosphoketolase signature 1"],["PROSITE%3APS60003","Phosphoketolase signature 2"]]},{"id":"NCBITaxon:264462","l":"Bdellovibrio bacteriovorus HD100","na":4,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-Q6MMM6-F1-model_v4_TED01","TED novel fold AF-Q6MMM6-F1-model_v4_TED01"],["TED%3AAF-Q6MPT8-F1-model_v4_TED01","TED novel fold AF-Q6MPT8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:266265","l":"Paraburkholderia xenovorans (strain LB400)","na":2,"nb":4,"a":[["aquifer-envo-00012408.html","aquifer"],["landfill-envo-00000533.html","landfill"]],"b":[["Pfam%3APF09290","Prokaryotic acetaldehyde dehydrogenase, dimerisation"],["Pfam%3APF04345","Chorismate lyase"],["Pfam%3APF07836","DmpG-like communication domain"],["Pfam%3APF06139","BphX-like"]]},{"id":"NCBITaxon:269800","l":"","na":2,"nb":4,"a":[["compost-envo-00002170.html","compost"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["Pfam%3APF20628","Dyp-type peroxidase, C-terminal"],["Pfam%3APF04261","Dyp-type peroxidase, N-terminal"],["Pfam%3APF18374","Enolase N-terminal domain-like"],["PROSITE%3APS00909","Mandelate racemase / muconate lactonizing enzyme family signature 2"]]},{"id":"NCBITaxon:28115","l":"Porphyromonas macacae","na":4,"nb":2,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"],["mud-envo-01000001.html","mud"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["TED%3AAF-A0A379E7L0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A379E7L0-F1-model_v4_TED01"],["TED%3AAF-A0A379E9C9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A379E9C9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:285","l":"Comamonas testosteroni","na":2,"nb":4,"a":[["waste-habitatmech-bacdive-36df85e4a4.html","Waste"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["Pfam%3APF02900","Catalytic LigB subunit of aromatic ring-opening dioxygenase"],["Pfam%3APF19301","LigXa C-terminal domain like"],["TED%3AAF-A0A096HND0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A096HND0-F1-model_v4_TED01"],["TED%3AAF-A0A1Y1JCM1-F1-model_v4_TED01","TED novel fold AF-A0A1Y1JCM1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:313603","l":"Maribacter sp. HTCC2170","na":4,"nb":2,"a":[["coral-reef-envo-00000150.html","coral reef"],["hydrographic-feature-envo-00000012.html","hydrographic feature"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["TED%3AAF-A4ARA8-F1-model_v4_TED01","TED novel fold AF-A4ARA8-F1-model_v4_TED01"],["TED%3AAF-A4ARA8-F1-model_v4_TED02","TED novel fold AF-A4ARA8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans Pd1222","na":2,"nb":4,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["Pfam%3APF27518","Heme exporter protein C"],["Pfam%3APF22039","Imidazolonepropionase-like composite domain, bacteria"],["PROSITE%3APS01181","Ribosomal protein S21 signature"],["Pfam%3APF02239","Cytochrome D1 heme domain"]]},{"id":"NCBITaxon:349307","l":"Methanothrix thermoacetophila (strain DSM 6194 / JCM 14653 / NBRC 101360 / PT)","na":2,"nb":4,"a":[["rice-field-envo-00000296.html","rice field"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["Pfam%3APF06973","Domain of unknown function (DUF1297)"],["Pfam%3APF07826","IMP cyclohydrolase-like protein"],["Pfam%3APF06849","Protein of unknown function (DUF1246)"],["Pfam%3APF08714","Formaldehyde-activating enzyme (Fae)"]]},{"id":"NCBITaxon:365044","l":"Polaromonas naphthalenivorans CJ2","na":4,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["large-river-biome-envo-00000887.html","large river biome"],["waterfall-envo-00000040.html","waterfall"],["petroleum-envo-00002984.html","petroleum"]],"b":[["Pfam%3APF01888","CbiD"],["Pfam%3APF02609","Exonuclease VII small subunit"]]},{"id":"NCBITaxon:406327","l":"Methanococcus vannielii (strain ATCC 35089 / DSM 1224 / JCM 13029 / OCM 148 / SB)","na":2,"nb":4,"a":[["estuary-envo-00000045.html","estuary"],["mudflat-envo-00000192.html","mudflat"]],"b":[["Pfam%3APF06787","FeGP cofactor biosynthesis protein HcgF"],["Pfam%3APF04476","4-HFC-P synthase"],["Pfam%3APF27030","AbpE bacteria"],["Pfam%3APF09840","Uncharacterized protein conserved in archaea (DUF2067)"]]},{"id":"NCBITaxon:497965","l":"","na":2,"nb":4,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["TED%3AAF-E0UJA0-F1-model_v4_TED01","TED highly-symmetric fold AF-E0UJA0-F1-model_v4_TED01"],["TED%3AAF-E0U6M3-F1-model_v4_TED03","TED novel fold AF-E0U6M3-F1-model_v4_TED03"],["TED%3AAF-E0UE39-F1-model_v4_TED02","TED novel fold AF-E0UE39-F1-model_v4_TED02"],["TED%3AAF-E0UM93-F1-model_v4_TED01","TED novel fold AF-E0UM93-F1-model_v4_TED01"]]},{"id":"NCBITaxon:500485","l":"Penicillium rubens Wisconsin 54-1255","na":2,"nb":4,"a":[["finger-bto-0004669.html","finger"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["Pfam%3APF03417","Acyl-coenzyme A:6-aminopenicillanic acid acyl-transferase"],["Pfam%3APF03659","Glycosyl hydrolase family 71"],["PROSITE%3APS00185","Isopenicillin N synthase signature 1"],["PROSITE%3APS00186","Isopenicillin N synthase signature 2"]]},{"id":"NCBITaxon:529507","l":"Proteus mirabilis (strain HI4320)","na":2,"nb":4,"a":[["needle-bto-0000917.html","needle"],["spinal-cord-bto-0001279.html","spinal cord"]],"b":[["Pfam%3APF02028","BCCT, betaine/carnitine/choline family transporter"],["PROSITE%3APS01303","BCCT family of transporters signature"],["PROSITE%3APS01120","Urease nickel ligands signature"],["PROSITE%3APS00145","Urease active site"]]},{"id":"NCBITaxon:556484","l":"","na":2,"nb":4,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["TED%3AAF-B7GAJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-B7GAJ8-F1-model_v4_TED01"],["TED%3AAF-B7G520-F1-model_v4_TED02","TED novel fold AF-B7G520-F1-model_v4_TED02"],["TED%3AAF-B7G8V4-F1-model_v4_TED02","TED novel fold AF-B7G8V4-F1-model_v4_TED02"],["TED%3AAF-B7GB31-F1-model_v4_TED01","TED novel fold AF-B7GB31-F1-model_v4_TED01"]]},{"id":"NCBITaxon:60552","l":"Burkholderia vietnamiensis","na":4,"nb":2,"a":[["hospital-envo-00002173.html","hospital"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["TED%3AAF-A0A1G5M5D3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G5M5D3-F1-model_v4_TED02"],["TED%3AAF-A0A2Z6TW79-F1-model_v4_TED01","TED novel fold AF-A0A2Z6TW79-F1-model_v4_TED01"]]},{"id":"NCBITaxon:678","l":"","na":4,"nb":2,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["aquaculture-farm-envo-03600074.html","aquaculture farm"],["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["Pfam%3APF17851","Beta xylosidase C-terminal Concanavalin A-like domain"],["Pfam%3APF11606","Family 31 carbohydrate binding protein"]]},{"id":"NCBITaxon:83552","l":"Parachlamydia acanthamoebae","na":2,"nb":4,"a":[["elementary-body-bto-0000377.html","elementary body"],["hep-2-cell-bto-0000976.html","HEp-2 cell"]],"b":[["TED%3AAF-A0A0C1C0X3-F1-model_v4_TED01","TED novel fold AF-A0A0C1C0X3-F1-model_v4_TED01"],["TED%3AAF-A0A0C1C9D0-F1-model_v4_TED03","TED novel fold AF-A0A0C1C9D0-F1-model_v4_TED03"],["TED%3AAF-A0A0C1CAV8-F1-model_v4_TED03","TED novel fold AF-A0A0C1CAV8-F1-model_v4_TED03"],["TED%3AAF-A0A0C1ECC2-F1-model_v4_TED03","TED novel fold AF-A0A0C1ECC2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1019","l":"Capnocytophaga sputigena","na":3,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["biotope-envo-00002036.html","biotope"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-A0A3S4WAY3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S4WAY3-F1-model_v4_TED01"],["TED%3AAF-A0A2A3N675-F1-model_v4_TED02","TED novel fold AF-A0A2A3N675-F1-model_v4_TED02"]]},{"id":"NCBITaxon:102129","l":"Leptolyngbya sp. PCC 7375","na":2,"nb":3,"a":[["undersea-feature-envo-00000104.html","undersea feature"],["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["TED%3AAF-K9ELM8-F1-model_v4_TED01","TED highly-symmetric fold AF-K9ELM8-F1-model_v4_TED01"],["TED%3AAF-K9F3N8-F1-model_v4_TED02","TED highly-symmetric fold AF-K9F3N8-F1-model_v4_TED02"],["TED%3AAF-K9FA28-F1-model_v4_TED01","TED novel fold AF-K9FA28-F1-model_v4_TED01"]]},{"id":"NCBITaxon:103796","l":"Pseudomonas syringae pv. actinidiae","na":2,"nb":3,"a":[["leaf-po-0025034.html","leaf"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["Pfam%3APF05425","Copper resistance protein D"],["TED%3AAF-J7I956-F1-model_v4_TED01","TED highly-symmetric fold AF-J7I956-F1-model_v4_TED01"],["TED%3AAF-J7IG33-F1-model_v4_TED01","TED highly-symmetric fold AF-J7IG33-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1071","l":"Rhodopila globiformis","na":3,"nb":2,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["TED%3AAF-A0A2S6NEC8-F1-model_v4_TED01","TED novel fold AF-A0A2S6NEC8-F1-model_v4_TED01"],["TED%3AAF-A0A2S6NJW5-F1-model_v4_TED01","TED novel fold AF-A0A2S6NJW5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1120925","l":"Acinetobacter bouvetii DSM 14964 = CIP 107468","na":3,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["proteintraitsmech%3AELIFE109154_VibH_like","VibH-like metallophore standalone condensation enzyme family"],["TED%3AAF-N9C7M4-F1-model_v4_TED02","TED novel fold AF-N9C7M4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1122961","l":"Picrophilus torridus (strain ATCC 700027 / DSM 9790 / JCM 10055 / NBRC 100828 / KAW 2/3)","na":2,"nb":3,"a":[["volcanic-field-envo-00000354.html","volcanic field"],["volcano-envo-00000247.html","volcano"]],"b":[["Pfam%3APF22578","Geranylgeranyl reductase catalytic domain"],["Pfam%3APF04038","Dihydroneopterin aldolase"],["Pfam%3APF16912","Glucose dehydrogenase C-terminus"]]},{"id":"NCBITaxon:1238","l":"Piscirickettsia salmonis","na":3,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["sea-water-envo-00002149.html","sea water"],["stream-envo-00000023.html","stream"]],"b":[["TED%3AAF-A0A0K2DZD9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0K2DZD9-F1-model_v4_TED01"],["TED%3AAF-A0A1L6TBT4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6TBT4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1249","l":"Weissella paramesenteroides","na":3,"nb":2,"a":[["cecum-bto-0000166.html","cecum"],["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"]],"b":[["Pfam%3APF01874","ATP:dephospho-CoA triphosphoribosyl transferase"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"]]},{"id":"NCBITaxon:1334565","l":"Listeria monocytogenes serotype 1/2a (strain EGD / Mackaness)","na":2,"nb":3,"a":[["liver-bto-0000759.html","liver"],["spleen-bto-0001281.html","spleen"]],"b":[["Pfam%3APF09479","Listeria-Bacteroides repeat domain (List_Bact_rpt)"],["Pfam%3APF13457","GW (Gly-Tryp) dipeptide domain"],["Pfam%3APF12354","Bacterial adhesion/invasion protein N terminal"]]},{"id":"NCBITaxon:1380357","l":"Rhodospirillales bacterium URHD0017","na":3,"nb":2,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["TED%3AAF-A0A1H8SNT0-F1-model_v4_TED02","TED novel fold AF-A0A1H8SNT0-F1-model_v4_TED02"],["TED%3AAF-A0A1H8Y0S7-F1-model_v4_TED02","TED novel fold AF-A0A1H8Y0S7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1387353","l":"Paludisphaera borealis","na":3,"nb":2,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["filament-bto-0000463.html","filament"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A1U7CK02-F1-model_v4_TED02","TED novel fold AF-A0A1U7CK02-F1-model_v4_TED02"],["TED%3AAF-A0A1U7CMS9-F1-model_v4_TED03","TED novel fold AF-A0A1U7CMS9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:154046","l":"Hungatella hathewayi","na":3,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["TED%3AAF-A0A3E3DRT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3E3DRT8-F1-model_v4_TED01"],["TED%3AAF-A0A174BLS4-F1-model_v4_TED01","TED novel fold AF-A0A174BLS4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1541063","l":"Prolixibacter denitrificans","na":3,"nb":2,"a":[["environmental-system-envo-01000254.html","environmental system"],["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"]],"b":[["TED%3AAF-A0A2P8CHN5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P8CHN5-F1-model_v4_TED01"],["TED%3AAF-A0A2P8CKY9-F1-model_v4_TED01","TED novel fold AF-A0A2P8CKY9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:157687","l":"Leptotrichia wadei","na":3,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["grassland-soil-envo-00005750.html","grassland soil"],["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["TED%3AAF-A0A510KFE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A510KFE6-F1-model_v4_TED01"],["TED%3AAF-A0A510KJX4-F1-model_v4_TED02","TED novel fold AF-A0A510KJX4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1582","l":"Lacticaseibacillus casei","na":3,"nb":2,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["Pfam%3APF07475","HPr Serine kinase C-terminal domain"],["PROSITE%3APS01163","Galactose-1-phosphate uridyl transferase family 2 signature"]]},{"id":"NCBITaxon:1597","l":"Lacticaseibacillus paracasei","na":3,"nb":2,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["Pfam%3APF09136","Glucodextranase, domain B"],["Pfam%3APF08109","Lactocin 705 family"]]},{"id":"NCBITaxon:1629","l":"Weissella viridescens","na":3,"nb":2,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["Pfam%3APF02388","FemAB family"],["TED%3AAF-A0A3P2RFX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3P2RFX7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1680","l":"Bifidobacterium adolescentis","na":2,"nb":3,"a":[["brain-bto-0000142.html","brain"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["TED%3AAF-A0A1X2Z2R7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1X2Z2R7-F1-model_v4_TED02"],["TED%3AAF-A0A1X2Z7X6-F1-model_v4_TED02","TED novel fold AF-A0A1X2Z7X6-F1-model_v4_TED02"],["TED%3AAF-A0A1X2ZNR8-F1-model_v4_TED04","TED novel fold AF-A0A1X2ZNR8-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1810840","l":"Piscirickettsiaceae bacterium NZ-RLO1","na":3,"nb":2,"a":[["bhk-21-cell-bto-0000120.html","BHK-21 cell"],["endothelial-progenitor-cell-bto-0004093.html","endothelial progenitor cell"],["sf-21-cell-bto-0001196.html","SF-21 cell"]],"b":[["TED%3AAF-A0A177W3E9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A177W3E9-F1-model_v4_TED03"],["TED%3AAF-A0A177W3K1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A177W3K1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:190304","l":"Fusobacterium nucleatum subsp. nucleatum (strain ATCC 25586 / DSM 15643 / BCRC 10681 / CIP 101130 / JCM 8532 / KCTC 2640 / LMG 13131 / VPI 4355)","na":2,"nb":3,"a":[["fibroblast-bto-0000452.html","fibroblast"],["gingival-epithelium-bto-0004998.html","gingival epithelium"]],"b":[["Pfam%3APF05853","beta-keto acid cleavage enzyme"],["Pfam%3APF26317","Histidine racemase CntK N-terminal domain"],["Pfam%3APF26370","L-erythro-3,5-diaminohexanoate dehydrogenase N-terminal domain"]]},{"id":"NCBITaxon:192","l":"Azospirillum brasilense","na":2,"nb":3,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF24931","ACR9-like, ACT-like domain"],["Pfam%3APF27444","Uridylyltransferase GlnD third domain"],["TED%3AAF-A0A235H319-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A235H319-F1-model_v4_TED01"]]},{"id":"NCBITaxon:192066","l":"Neisseria sp.","na":2,"nb":3,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["TED%3AAF-A0A496JVX2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A496JVX2-F1-model_v4_TED03"],["TED%3AAF-A0A496L0X3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A496L0X3-F1-model_v4_TED01"],["TED%3AAF-A0A496JRN7-F1-model_v4_TED02","TED novel fold AF-A0A496JRN7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:213810","l":"Ruminococcus champanellensis 18P13 = JCM 17042","na":3,"nb":2,"a":[["environmental-feature-envo-00002297.html","environmental feature"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["pig-manure-envo-00003860.html","pig manure"]],"b":[["TED%3AAF-D4LAY2-F1-model_v4_TED01","TED novel fold AF-D4LAY2-F1-model_v4_TED01"],["TED%3AAF-D4LBV4-F1-model_v4_TED01","TED novel fold AF-D4LBV4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:216595","l":"","na":3,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["human-construction-envo-00000070.html","human construction"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["Pfam%3APF04996","Succinylarginine dihydrolase"],["TED%3AAF-A0A0G4E5V4-F1-model_v4_TED01","TED novel fold AF-A0A0G4E5V4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:239935","l":"Akkermansia muciniphila","na":3,"nb":2,"a":[["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["secretion-bto-0002979.html","secretion"]],"b":[["TED%3AAF-A0A2N8IJN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N8IJN7-F1-model_v4_TED01"],["TED%3AAF-A0A6N2UM07-F1-model_v4_TED01","TED novel fold AF-A0A6N2UM07-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2751","l":"Carnobacterium maltaromaticum","na":3,"nb":2,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["food-habitatmech-madin-81cb9e74cb.html","food"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["Pfam%3APF09221","Bacteriocin class IId cyclical uberolysin-like"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"]]},{"id":"NCBITaxon:28454","l":"Sphingobacterium multivorum","na":3,"nb":2,"a":[["mud-envo-01000001.html","mud"],["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["TED%3AAF-A0A7T9NU88-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T9NU88-F1-model_v4_TED01"],["TED%3AAF-A0A7T9PGY4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T9PGY4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:313606","l":"Microscilla marina ATCC 23134","na":3,"nb":2,"a":[["coral-reef-envo-00000150.html","coral reef"],["liquid-water-envo-00002006.html","liquid water"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["TED%3AAF-A1ZH11-F1-model_v4_TED02","TED novel fold AF-A1ZH11-F1-model_v4_TED02"],["TED%3AAF-A1ZSU9-F1-model_v4_TED01","TED novel fold AF-A1ZSU9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:314275","l":"Alteromonas mediterranea","na":2,"nb":3,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A1J0SAZ8-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1J0SAZ8-F1-model_v4_TED04"],["TED%3AAF-A0A1J0SA48-F1-model_v4_TED01","TED novel fold AF-A0A1J0SA48-F1-model_v4_TED01"],["TED%3AAF-A0A1J0SX60-F1-model_v4_TED02","TED novel fold AF-A0A1J0SX60-F1-model_v4_TED02"]]},{"id":"NCBITaxon:331117","l":"Aspergillus fischeri NRRL 181","na":2,"nb":3,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["Pfam%3APF23681","ATP-dependent rRNA helicase SPB4-like, C-terminal tail"],["Pfam%3APF16803","Fe-S cluster assembly protein DRE2 N-terminus"],["Pfam%3APF02012","BNR/Asp-box repeat"]]},{"id":"NCBITaxon:357809","l":"Lachnoclostridium phytofermentans ISDg","na":2,"nb":3,"a":[["reservoir-envo-00000025.html","reservoir"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["Pfam%3APF09508","Lacto-N-biose phosphorylase N-terminal TIM barrel domain"],["Pfam%3APF17386","Lacto-N-biose phosphorylase C-terminal domain"],["Pfam%3APF17385","Lacto-N-biose phosphorylase central domain"]]},{"id":"NCBITaxon:362242","l":"","na":2,"nb":3,"a":[["subcutaneous-tissue-bto-0004525.html","subcutaneous tissue"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF02654","Cobalamin-5-phosphate synthase"],["Pfam%3APF02622","AlgH-like"],["Pfam%3APF01628","HrcA protein C terminal domain"]]},{"id":"NCBITaxon:375","l":"Bradyrhizobium japonicum","na":3,"nb":2,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["TED%3AAF-A0A1L3FD53-F1-model_v4_TED02","TED novel fold AF-A0A1L3FD53-F1-model_v4_TED02"],["TED%3AAF-A0A1L3FDV4-F1-model_v4_TED02","TED novel fold AF-A0A1L3FDV4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:391587","l":"Kordia algicida OT-1","na":2,"nb":3,"a":[["coral-reef-envo-00000150.html","coral reef"],["soil-envo-00001998.html","soil"]],"b":[["TED%3AAF-A9DJI5-F1-model_v4_TED02","TED highly-symmetric fold AF-A9DJI5-F1-model_v4_TED02"],["TED%3AAF-A9E7Y3-F1-model_v4_TED02","TED highly-symmetric fold AF-A9E7Y3-F1-model_v4_TED02"],["TED%3AAF-A9E6S0-F1-model_v4_TED02","TED novel fold AF-A9E6S0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:394503","l":"","na":2,"nb":3,"a":[["agricultural-waste-material-envo-01000371.html","agricultural waste material"],["compost-envo-00002170.html","compost"]],"b":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["PROSITE%3APS00812","Glycosyl hydrolases family 8 signature"],["Pfam%3APF01270","Glycosyl hydrolases family 8"]]},{"id":"NCBITaxon:39486","l":"Dorea formicigenerans","na":2,"nb":3,"a":[["adult-bto-0001043.html","adult"],["juvenile-bto-0002168.html","juvenile"]],"b":[["TED%3AAF-A0A3E5ESC3-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A3E5ESC3-F1-model_v4_TED05"],["TED%3AAF-A0A412MBB7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A412MBB7-F1-model_v4_TED01"],["TED%3AAF-A0A412MF47-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A412MF47-F1-model_v4_TED02"]]},{"id":"NCBITaxon:400667","l":"Acinetobacter baumannii (strain ATCC 17978 / DSM 105126 / CIP 53.77 / LMG 1025 / NCDC KC755 / 5377)","na":2,"nb":3,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"],["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["Pfam%3APF17074","Darcynin, domain of unknown function"],["Pfam%3APF05232","Chlorhexidine efflux transporter"],["Pfam%3APF05662","Coiled stalk of trimeric autotransporter adhesin"]]},{"id":"NCBITaxon:400946","l":"Wohlfahrtiimonas chitiniclastica","na":3,"nb":2,"a":[["foot-bto-0000476.html","foot"],["pancreas-bto-0000988.html","pancreas"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["TED%3AAF-A0A256BUL6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A256BUL6-F1-model_v4_TED01"],["TED%3AAF-A0A256BUL6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A256BUL6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:40214","l":"Acinetobacter johnsonii","na":3,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["pitcher-bto-0001069.html","pitcher"],["water-scum-envo-00005794.html","water scum"]],"b":[["Pfam%3APF12973","ChrR Cupin-like domain"],["Pfam%3APF13807","G-rich domain on putative tyrosine kinase"]]},{"id":"NCBITaxon:402880","l":"Methanococcus maripaludis (strain C5 / ATCC BAA-1333)","na":2,"nb":3,"a":[["marsh-envo-00000035.html","marsh"],["wetland-area-envo-00000043.html","wetland area"]],"b":[["Pfam%3APF02553","Cobalt transport protein component CbiN"],["Pfam%3APF18195","GatD N-terminal domain"],["Pfam%3APF01941","S-adenosylmethionine synthetase (AdoMet synthetase)"]]},{"id":"NCBITaxon:41899","l":"Burkholderia plantarii","na":2,"nb":3,"a":[["panicle-bto-0005436.html","panicle"],["seedling-bto-0001228.html","seedling"]],"b":[["proteintraitsmech%3AELIFE109154_GrbD","GrbD-type graminine biosynthesis protein family"],["proteintraitsmech%3AELIFE109154_GrbE","GrbE-type graminine biosynthesis protein family"],["TED%3AAF-A0A0B6RMB1-F1-model_v4_TED01","TED novel fold AF-A0A0B6RMB1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:523846","l":"Methanothermus fervidus DSM 2088","na":3,"nb":2,"a":[["mountain-envo-00000081.html","mountain"],["seamount-envo-00000264.html","seamount"],["volcano-envo-00000247.html","volcano"]],"b":[["Pfam%3APF02829","3H domain"],["Pfam%3APF27272","Cyclic 2,3-diphosphoglycerate synthetase, N-terminal domain"]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":3,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"]],"b":[["Pfam%3APF07833","Copper amine oxidase N-terminal domain"],["TED%3AAF-A0A447L715-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A447L715-F1-model_v4_TED02"]]},{"id":"NCBITaxon:59919","l":"Prochlorococcus marinus subsp. pastoris str. CCMP1986","na":3,"nb":2,"a":[["marginal-sea-biome-envo-01000046.html","marginal sea biome"],["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"],["sea-envo-00000016.html","sea"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF12288","Carboxysome shell peptide mid-region"]]},{"id":"NCBITaxon:65393","l":"Gloeothece citriformis (strain PCC 7424)","na":2,"nb":3,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["Pfam%3APF13720","Udp N-acetylglucosamine O-acyltransferase; Domain 2"],["TED%3AAF-B7K6Y8-F1-model_v4_TED03","TED novel fold AF-B7K6Y8-F1-model_v4_TED03"],["TED%3AAF-B7KGW4-F1-model_v4_TED01","TED novel fold AF-B7KGW4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:6669","l":"Daphnia pulex","na":3,"nb":2,"a":[["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"],["neritic-epipelagic-zone-biome-envo-01000042.html","neritic epipelagic zone biome"],["sea-shore-envo-00000485.html","sea shore"]],"b":[["TED%3AAF-E9GQ61-F1-model_v4_TED02","TED novel fold AF-E9GQ61-F1-model_v4_TED02"],["TED%3AAF-E9I2W7-F1-model_v4_TED04","TED novel fold AF-E9I2W7-F1-model_v4_TED04"]]},{"id":"NCBITaxon:714","l":"Aggregatibacter actinomycetemcomitans","na":2,"nb":3,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["Pfam%3APF10137","CAP12/Pycsar effector protein, TIR domain"],["Pfam%3APF25988","CyaD, alpha-helical hairpin domain"],["PROSITE%3APS00543","HlyD family secretion proteins signature"]]},{"id":"NCBITaxon:8090","l":"Oryzias latipes","na":2,"nb":3,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["Pfam%3APF24979","EDAR death domain"],["Pfam%3APF24796","WDR55"],["TED%3AAF-A0A3P9JIT2-F1-model_v4_TED01","TED novel fold AF-A0A3P9JIT2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:889378","l":"Spirochaeta africana DSM 8902","na":3,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["alkaline-water-envo-01000357.html","alkaline water"],["brine-envo-00003044.html","brine"]],"b":[["TED%3AAF-H9UHS0-F1-model_v4_TED01","TED highly-symmetric fold AF-H9UHS0-F1-model_v4_TED01"],["TED%3AAF-H9UIK6-F1-model_v4_TED01","TED novel fold AF-H9UIK6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1032476","l":"Nonomuraea soli","na":2,"nb":2,"a":[["soil-envo-00001998.html","soil"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-A0A7W0HQS4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7W0HQS4-F1-model_v4_TED03"],["TED%3AAF-A0A7W0CFM2-F1-model_v4_TED01","TED novel fold AF-A0A7W0CFM2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1110509","l":"","na":2,"nb":2,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["cob-bto-0000266.html","cob"]],"b":[["Pfam%3APF05228","CHASE4 domain"],["Pfam%3APF08350","Methanogenesis regulatory protein FilR1, middle domain"]]},{"id":"NCBITaxon:1121395","l":"Desulfitobacterium chlororespirans DSM 11544","na":2,"nb":2,"a":[["compost-envo-00002170.html","compost"],["waste-material-envo-00002264.html","waste material"]],"b":[["TED%3AAF-A0A1M7UUA6-F1-model_v4_TED02","TED novel fold AF-A0A1M7UUA6-F1-model_v4_TED02"],["TED%3AAF-A0A1M7UUA6-F1-model_v4_TED03","TED novel fold AF-A0A1M7UUA6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1295","l":"Staphylococcus schleiferi","na":2,"nb":2,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["foot-bto-0000476.html","foot"]],"b":[["Pfam%3APF18153","Cap15, cyclic dinucleotide receptor domain"],["Pfam%3APF26305","cGAS/DncV-like nucleotidyltransferase C-terminal helical domain"]]},{"id":"NCBITaxon:1303","l":"Streptococcus oralis","na":2,"nb":2,"a":[["throat-bto-0000828.html","throat"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Pfam%3APF03047","COMC family"],["TED%3AAF-A0A139PPG4-F1-model_v4_TED02","TED novel fold AF-A0A139PPG4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1527","l":"Anaerocolumna aminovalerica","na":2,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"]],"b":[["TED%3AAF-A0A1I5I955-F1-model_v4_TED02","TED novel fold AF-A0A1I5I955-F1-model_v4_TED02"],["TED%3AAF-A0A1I5ILH1-F1-model_v4_TED04","TED novel fold AF-A0A1I5ILH1-F1-model_v4_TED04"]]},{"id":"NCBITaxon:156889","l":"","na":2,"nb":2,"a":[["estuary-envo-00000045.html","estuary"],["marine-neritic-zone-envo-00000206.html","marine neritic zone"]],"b":[["Pfam%3APF02622","AlgH-like"],["Pfam%3APF04279","Intracellular septation protein A"]]},{"id":"NCBITaxon:180282","l":"Delftia tsuruhatensis","na":2,"nb":2,"a":[["surface-water-envo-00002042.html","surface water"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["TED%3AAF-A0A1D8JBF2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1D8JBF2-F1-model_v4_TED01"],["TED%3AAF-A0A5P8XEZ5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5P8XEZ5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:194963","l":"Sinorhizobium americanum","na":2,"nb":2,"a":[["root-nodule-envo-01000164.html","root nodule"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["TED%3AAF-A0A2S3YNG1-F1-model_v4_TED01","TED novel fold AF-A0A2S3YNG1-F1-model_v4_TED01"],["TED%3AAF-A0A4R2AWY1-F1-model_v4_TED01","TED novel fold AF-A0A4R2AWY1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2024826","l":"Blastopirellula sp.","na":2,"nb":2,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["TED%3AAF-A0A2E0B0H3-F1-model_v4_TED02","TED novel fold AF-A0A2E0B0H3-F1-model_v4_TED02"],["TED%3AAF-A0A2G2IUT2-F1-model_v4_TED02","TED novel fold AF-A0A2G2IUT2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:257314","l":"Lactobacillus johnsonii (strain CNCM I-12250 / La1 / NCC 533)","na":2,"nb":2,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["Pfam%3APF10439","Bacteriocin class II with double-glycine leader peptide"],["Pfam%3APF02435","Levansucrase/Invertase"]]},{"id":"NCBITaxon:271848","l":"Burkholderia thailandensis E264","na":2,"nb":2,"a":[["needle-bto-0000917.html","needle"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["Pfam%3APF12091","Protein of unknown function (DUF3567)"],["Pfam%3APF01075","Glycosyltransferase family 9 (heptosyltransferase)"]]},{"id":"NCBITaxon:2748","l":"Carnobacterium divergens","na":2,"nb":2,"a":[["food-product-foodon-00001002.html","food product"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["TED%3AAF-A0A7Z8CZ16-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Z8CZ16-F1-model_v4_TED02"],["TED%3AAF-A0A5F0MGI8-F1-model_v4_TED01","TED novel fold AF-A0A5F0MGI8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28141","l":"Cronobacter sakazakii","na":2,"nb":2,"a":[["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["TED%3AAF-A0A855WTZ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A855WTZ2-F1-model_v4_TED01"],["TED%3AAF-A0A855WPZ3-F1-model_v4_TED01","TED novel fold AF-A0A855WPZ3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28185","l":"Spirochaeta sp.","na":2,"nb":2,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["TED%3AAF-A0A3C0SUV0-F1-model_v4_TED03","TED novel fold AF-A0A3C0SUV0-F1-model_v4_TED03"],["TED%3AAF-A0A6N7M3Q7-F1-model_v4_TED01","TED novel fold AF-A0A6N7M3Q7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:283166","l":"","na":2,"nb":2,"a":[["endothelial-cell-bto-0001176.html","endothelial cell"],["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["Pfam%3APF18543","Intracellular delivery domain"],["Pfam%3APF03524","Conjugal transfer protein"]]},{"id":"NCBITaxon:393664","l":"","na":2,"nb":2,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["TED%3AAF-A0A7W4XHJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W4XHJ9-F1-model_v4_TED01"],["TED%3AAF-A0A7W4SSW3-F1-model_v4_TED01","TED novel fold AF-A0A7W4SSW3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:39488","l":"Anaerobutyricum hallii","na":2,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"],["harbour-envo-00000463.html","harbour"]],"b":[["TED%3AAF-A0A414B1Y3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A414B1Y3-F1-model_v4_TED01"],["TED%3AAF-A0A415G3S7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A415G3S7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:39490","l":"Eubacterium ramulus","na":2,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"],["harbour-envo-00000463.html","harbour"]],"b":[["TED%3AAF-A0A173V5Z6-F1-model_v4_TED02","TED novel fold AF-A0A173V5Z6-F1-model_v4_TED02"],["TED%3AAF-A0A2V1JWA1-F1-model_v4_TED05","TED novel fold AF-A0A2V1JWA1-F1-model_v4_TED05"]]},{"id":"NCBITaxon:399741","l":"","na":2,"nb":2,"a":[["pleura-bto-0001791.html","pleura"],["seedling-bto-0001228.html","seedling"]],"b":[["Pfam%3APF09012","FeoC like transcriptional regulator"],["Pfam%3APF05488","PAAR motif"]]},{"id":"NCBITaxon:426128","l":"Natronincola peptidivorans","na":2,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["TED%3AAF-A0A1I0EK12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I0EK12-F1-model_v4_TED01"],["TED%3AAF-A0A1I0H2J6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I0H2J6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:426418","l":"Pyrenophora tritici-repentis Pt-1C-BFP","na":2,"nb":2,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-B2VYP9-F1-model_v4_TED01","TED novel fold AF-B2VYP9-F1-model_v4_TED01"],["TED%3AAF-B2VZ40-F1-model_v4_TED02","TED novel fold AF-B2VZ40-F1-model_v4_TED02"]]},{"id":"NCBITaxon:435590","l":"","na":2,"nb":2,"a":[["bay-envo-00000032.html","bay"],["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["Pfam%3APF13444","Acetyltransferase (GNAT) domain"],["Pfam%3APF19576","Acyltransferase"]]},{"id":"NCBITaxon:474952","l":"Granulicella rosea","na":2,"nb":2,"a":[["wetland-area-envo-00000043.html","wetland area"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A239KLB2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A239KLB2-F1-model_v4_TED01"],["TED%3AAF-A0A239CX56-F1-model_v4_TED02","TED novel fold AF-A0A239CX56-F1-model_v4_TED02"]]},{"id":"NCBITaxon:479434","l":"","na":2,"nb":2,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-D1C926-F1-model_v4_TED01","TED highly-symmetric fold AF-D1C926-F1-model_v4_TED01"],["TED%3AAF-D1C9G8-F1-model_v4_TED01","TED highly-symmetric fold AF-D1C9G8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:48296","l":"Acinetobacter pittii","na":2,"nb":2,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["TED%3AAF-A0A3R9S6D0-F1-model_v4_TED03","TED novel fold AF-A0A3R9S6D0-F1-model_v4_TED03"],["TED%3AAF-A0A6P1SKX2-F1-model_v4_TED04","TED novel fold AF-A0A6P1SKX2-F1-model_v4_TED04"]]},{"id":"NCBITaxon:55209","l":"Pantoea cypripedii","na":2,"nb":2,"a":[["leaf-po-0025034.html","leaf"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["Pfam%3APF13618","Gluconate 2-dehydrogenase subunit 3"],["TED%3AAF-A0A1X1EQM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1X1EQM9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:56811","l":"Psychrobacter sp.","na":2,"nb":2,"a":[["marine-water-body-envo-00001999.html","marine water body"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["TED%3AAF-A0A350DM46-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A350DM46-F1-model_v4_TED01"],["TED%3AAF-A0A353XTU7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A353XTU7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:572546","l":"","na":2,"nb":2,"a":[["inlet-envo-00000475.html","inlet"],["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["TED%3AAF-D2RFB5-F1-model_v4_TED02","TED highly-symmetric fold AF-D2RFB5-F1-model_v4_TED02"],["TED%3AAF-D2RE38-F1-model_v4_TED02","TED novel fold AF-D2RE38-F1-model_v4_TED02"]]},{"id":"NCBITaxon:577","l":"","na":2,"nb":2,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["TED%3AAF-A0A485AWY7-F1-model_v4_TED01","TED novel fold AF-A0A485AWY7-F1-model_v4_TED01"],["TED%3AAF-A0A4U9DC68-F1-model_v4_TED02","TED novel fold AF-A0A4U9DC68-F1-model_v4_TED02"]]},{"id":"NCBITaxon:59201","l":"","na":2,"nb":2,"a":[["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["TED%3AAF-A0A711ED47-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A711ED47-F1-model_v4_TED01"],["TED%3AAF-A0A5U3EZQ4-F1-model_v4_TED01","TED novel fold AF-A0A5U3EZQ4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:59405","l":"Thauera aromatica","na":2,"nb":2,"a":[["sludge-envo-00002044.html","sludge"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF18512","Benzylsuccinate synthase beta subunit"],["Pfam%3APF08201","BssC/TutF protein"]]},{"id":"NCBITaxon:61646","l":"Lelliottia amnigena","na":2,"nb":2,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["Pfam%3APF17425","Arylsulfotransferase Ig-like domain"],["Pfam%3APF05935","Arylsulfotransferase (ASST)"]]},{"id":"NCBITaxon:633","l":"Yersinia pseudotuberculosis","na":2,"nb":2,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["Pfam%3APF03421","YopJ Serine/Threonine acetyltransferase"],["Pfam%3APF01041","DegT/DnrJ/EryC1/StrS aminotransferase family"]]},{"id":"NCBITaxon:647113","l":"","na":2,"nb":2,"a":[["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["TED%3AAF-F8ANV0-F1-model_v4_TED01","TED highly-symmetric fold AF-F8ANV0-F1-model_v4_TED01"],["TED%3AAF-F8AK92-F1-model_v4_TED02","TED novel fold AF-F8AK92-F1-model_v4_TED02"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":2,"nb":2,"a":[["watercourse-envo-00000029.html","watercourse"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["TED%3AAF-B5UAE0-F1-model_v4_TED01","TED highly-symmetric fold AF-B5UAE0-F1-model_v4_TED01"],["TED%3AAF-A0A3E1IF45-F1-model_v4_TED01","TED novel fold AF-A0A3E1IF45-F1-model_v4_TED01"]]},{"id":"NCBITaxon:7029","l":"Acyrthosiphon pisum","na":2,"nb":2,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["TED%3AAF-J9KQC4-F1-model_v4_TED01","TED novel fold AF-J9KQC4-F1-model_v4_TED01"],["TED%3AAF-J9L4U4-F1-model_v4_TED02","TED novel fold AF-J9L4U4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:7209","l":"Loa loa","na":2,"nb":2,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["TED%3AAF-A0A1I7VCR8-F1-model_v4_TED01","TED novel fold AF-A0A1I7VCR8-F1-model_v4_TED01"],["TED%3AAF-A0A1S0U4H9-F1-model_v4_TED02","TED novel fold AF-A0A1S0U4H9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:746697","l":"","na":2,"nb":2,"a":[["hill-envo-00000083.html","hill"],["seamount-envo-00000264.html","seamount"]],"b":[["TED%3AAF-I3YW66-F1-model_v4_TED01","TED highly-symmetric fold AF-I3YW66-F1-model_v4_TED01"],["TED%3AAF-I3YWC3-F1-model_v4_TED01","TED highly-symmetric fold AF-I3YWC3-F1-model_v4_TED01"]]},{"id":"UBERON:0001723","l":"","na":2,"nb":2,"a":[["tongue-habitatmech-gold-334001c233.html","Tongue"],["tongue-habitatmech-gold-8587dba825.html","Tongue"]],"b":[["GO%3A0043586","tongue development"],["GO%3A0043587","tongue morphogenesis"]]},{"id":"GO:0005622","l":"intracellular anatomical structure","na":1,"nb":524,"a":[["molluscan-gill-intracellular-environment-habitatmech-gold-0ac09185d9.html","molluscan gill intracellular environment"]],"b":[["GO%3A0070477","endospore core"],["GO%3A0005727","extrachromosomal circular DNA"],["GO%3A0046821","extrachromosomal DNA"],["GO%3A0016234","inclusion body"],["GO%3A0005622","intracellular anatomical structure"],["GO%3A0070090","metaphase plate"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":297,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["IDPO%3A0000002","disorder"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000045","phosphorylation display site"],["IDPO%3A0000059","self-inhibition"],["Pfam%3APF17837","4'-phosphopantetheinyl transferase N-terminal domain"]]},{"id":"GO:0005615","l":"","na":1,"nb":292,"a":[["molluscan-gill-extracellular-environment-habitatmech-gold-6c8238add0.html","molluscan gill extracellular environment"]],"b":[["ComplexPortal%3ACPX-6224","Active Protein C complex"],["ComplexPortal%3ACPX-6222","alpha-thrombin complex"],["ComplexPortal%3ACPX-5601","Alternative pathway C3 convertase complex C3bBb"],["ComplexPortal%3ACPX-5894","Alternative pathway C3 convertase complex C3bBb"],["ComplexPortal%3ACPX-5381","Alternative pathway fluid-phase C3 convertase complex C3(H2O)Bb"],["ComplexPortal%3ACPX-5893","Alternative pathway fluid-phase C3 convertase complex C3(H2O)Bb"]]},{"id":"NCBITaxon:7955","l":"Danio rerio","na":1,"nb":261,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["IDPO%3A0000019","disorder to pre-molten globule"],["Pfam%3APF16096","Fragile X-related 1 protein C-terminal region 2"],["Pfam%3APF16605","LSM-interacting associated unstructured"],["Pfam%3APF17229","Serine/threonine-protein kinase SMG1 N-terminal"],["Pfam%3APF16195","SUMO-activating enzyme subunit 2 C-terminus"],["Pfam%3APF00709","Adenylosuccinate synthetase"]]},{"id":"NCBITaxon:1978231","l":"Acidobacteriota bacterium","na":1,"nb":186,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2E4W649-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4W649-F1-model_v4_TED01"],["TED%3AAF-A0A2P6WIX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P6WIX4-F1-model_v4_TED01"],["TED%3AAF-A0A2V2RP64-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V2RP64-F1-model_v4_TED01"],["TED%3AAF-A0A2V7TZP2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V7TZP2-F1-model_v4_TED01"],["TED%3AAF-A0A2V7USQ3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V7USQ3-F1-model_v4_TED02"],["TED%3AAF-A0A2V7V8X8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V7V8X8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa (strain ATCC 15692 / DSM 22644 / CIP 104116 / JCM 14847 / LMG 12228 / 1C / PRS 101 / PAO1)","na":1,"nb":162,"a":[["style-bto-0001313.html","style"]],"b":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF06750","Bacterial Peptidase A24 N-terminal domain"],["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF28403","Aconitase X second domain"],["Pfam%3APF28406","Aconitase X third domain"],["Pfam%3APF04412","Aconitase X first domain"]]},{"id":"NCBITaxon:71421","l":"Haemophilus influenzae (strain ATCC 51907 / DSM 11121 / KW20 / Rd)","na":1,"nb":133,"a":[["respiratory-mucosa-bto-0000973.html","respiratory mucosa"]],"b":[["Pfam%3APF13521","AAA domain"],["Pfam%3APF13654","LonB-like, AAA domain"],["Pfam%3APF16326","ABC transporter C-terminal domain"],["Pfam%3APF13710","ACT domain"],["Pfam%3APF12633","Adenylate cyclase NT domain"],["Pfam%3APF26690","Adenylate cyclase, class-I, third domain"]]},{"id":"NCBITaxon:83334","l":"Escherichia coli O157:H7","na":1,"nb":130,"a":[["uterus-bto-0001424.html","uterus"]],"b":[["IDPO%3A0000011","disorder to order"],["IDPO%3A0000014","order to disorder"],["Pfam%3APF12343","DeaD helicase C-terminal disordered region"],["Pfam%3APF26539","YhiD C-terminal ACT domain"],["Pfam%3APF01081","KDPG and KHG aldolase"],["Pfam%3APF10423","Bacterial AMP nucleoside phosphorylase N-terminus"]]},{"id":"NCBITaxon:1898207","l":"Clostridiales bacterium","na":1,"nb":63,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["TED%3AAF-A0A239QGX8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A239QGX8-F1-model_v4_TED02"],["TED%3AAF-A0A2V2DI93-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V2DI93-F1-model_v4_TED02"],["TED%3AAF-A0A2V2EHK5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V2EHK5-F1-model_v4_TED02"],["TED%3AAF-A0A2V2G296-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2V2G296-F1-model_v4_TED03"],["TED%3AAF-A0A316P962-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A316P962-F1-model_v4_TED03"],["TED%3AAF-A0A316PDC9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A316PDC9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:233413","l":"Mycobacterium bovis (strain ATCC BAA-935 / AF2122/97)","na":1,"nb":52,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF12625","Arabinose-binding domain of AraC transcription regulator, N-term"],["Pfam%3APF21139","Methylcrotonyl-CoA carboxylase, alpha-subunit, BT domain"],["Pfam%3APF09167","Domain of unknown function (DUF1942)"],["Pfam%3APF09438","Domain of unknown function (DUF2017)"],["Pfam%3APF12823","Domain of unknown function (DUF3817)"]]},{"id":"NCBITaxon:2026742","l":"Gemmatimonadota bacterium","na":1,"nb":49,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2D8UDK3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D8UDK3-F1-model_v4_TED02"],["TED%3AAF-A0A2E8HI53-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E8HI53-F1-model_v4_TED02"],["TED%3AAF-A0A2V7GTY6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2V7GTY6-F1-model_v4_TED03"],["TED%3AAF-A0A2V7KRA4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V7KRA4-F1-model_v4_TED01"],["TED%3AAF-A0A2V7S355-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V7S355-F1-model_v4_TED01"],["TED%3AAF-A0A3M2BQU6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M2BQU6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:186497","l":"Pyrococcus furiosus (strain ATCC 43587 / DSM 3638 / JCM 8422 / Vc1)","na":1,"nb":41,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF01314","Aldehyde ferredoxin oxidoreductase, domains 2 & 3"],["Pfam%3APF02730","Aldehyde ferredoxin oxidoreductase, N-terminal domain"],["Pfam%3APF22476","Argonaute, N-terminal domain"],["Pfam%3APF09094","Alpha-amylase/4-alpha-glucanotransferase, middle domain"],["Pfam%3APF09095","Alpha-amylase/4-alpha-glucanotransferase, C-terminal"]]},{"id":"NCBITaxon:2","l":"Bacteria","na":40,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["factory-envo-01000536.html","factory"],["adult-bto-0001043.html","adult"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2","Bacteria orthologous groups (OrthoDB)"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima (strain ATCC 43589 / DSM 3109 / JCM 10099 / NBRC 100826 / MSB8)","na":1,"nb":39,"a":[["feather-bto-0000447.html","feather"]],"b":[["Pfam%3APF02829","3H domain"],["Pfam%3APF13175","AAA ATPase domain"],["Pfam%3APF01958","Aspartate dehydrogenase, C-terminal"],["Pfam%3APF05448","Acetyl xylan esterase (AXE1)"],["Pfam%3APF04509","CheC-like family"],["Pfam%3APF13690","Chemotaxis phosphatase CheX"]]},{"id":"NCBITaxon:36987","l":"Coptotermes formosanus","na":38,"nb":1,"a":[["black-smoker-envo-00000218.html","black smoker"],["coastal-sea-water-envo-00002150.html","coastal sea water"],["eutrophic-water-envo-00002224.html","eutrophic water"],["marine-bathyal-zone-biome-envo-01000026.html","marine bathyal zone biome"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"]],"b":[["TED%3AAF-A0A6L2PKM4-F1-model_v4_TED01","TED novel fold AF-A0A6L2PKM4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:273057","l":"Saccharolobus solfataricus (strain ATCC 35092 / DSM 1617 / JCM 11322 / P2)","na":1,"nb":37,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["Pfam%3APF02294","7kD DNA-binding domain"],["Pfam%3APF02675","S-adenosylmethionine decarboxylase"],["Pfam%3APF09071","Alpha-amylase, C terminal"],["Pfam%3APF17952","Cas6 N-terminal domain"],["Pfam%3APF27338","Cytochrome b558/566 subunit B"],["Pfam%3APF22703","Cdc6 AAA+ ATPase-type lid domain"]]},{"id":"NCBITaxon:1898203","l":"Lachnospiraceae bacterium","na":1,"nb":35,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["TED%3AAF-A0A2G3Q064-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G3Q064-F1-model_v4_TED01"],["TED%3AAF-A0A316PVU3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A316PVU3-F1-model_v4_TED02"],["TED%3AAF-A0A349YHB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349YHB4-F1-model_v4_TED01"],["TED%3AAF-A0A349ZVK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349ZVK2-F1-model_v4_TED01"],["TED%3AAF-A0A354ID29-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A354ID29-F1-model_v4_TED04"],["TED%3AAF-A0A355NJL5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A355NJL5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2026801","l":"Verrucomicrobiales bacterium","na":1,"nb":33,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2D5AKS0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D5AKS0-F1-model_v4_TED01"],["TED%3AAF-A0A2D9K0M4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9K0M4-F1-model_v4_TED01"],["TED%3AAF-A0A2E0QW10-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0QW10-F1-model_v4_TED01"],["TED%3AAF-A0A2E5EQN4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E5EQN4-F1-model_v4_TED02"],["TED%3AAF-A0A2E5WTV4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E5WTV4-F1-model_v4_TED01"],["TED%3AAF-A0A350EXF0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A350EXF0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:170187","l":"Streptococcus pneumoniae serotype 4 (strain ATCC BAA-334 / TIGR4)","na":1,"nb":32,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["Pfam%3APF25935","LcnD-like, barrel-sandwich hybrid domain"],["Pfam%3APF22637","BppA domain 1"],["Pfam%3APF18146","Damage-inducible protein CinA KH domain"],["Pfam%3APF27342","ComB N-terminal domain"],["Pfam%3APF26697","Competence protein ComGC, C-terminal domain"],["Pfam%3APF23117","DpnD N-terminal domain"]]},{"id":"NCBITaxon:243273","l":"Mycoplasmoides genitalium (strain ATCC 33530 / DSM 19775 / NCTC 10195 / G37)","na":1,"nb":31,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF03257","Mycoplasma adhesin P1, C-terminal"],["Pfam%3APF09185","Domain of unknown function (DUF1948)"],["Pfam%3APF09188","Domain of unknown function (DUF1951)"],["Pfam%3APF03072","Domain of unknown function (DUF237)"],["Pfam%3APF03086","Domain of unknown function (DUF240)"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":29,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["Pfam%3APF09156","Anthrax toxin lethal factor, middle domain"],["Pfam%3APF08401","N-terminal domain of anti-restriction factor ArdC"],["Pfam%3APF07737","Anthrax toxin lethal factor, N- and C-terminal domain"],["Pfam%3APF27053","Bacillus anthracis plasmid pXO2 protein 26"],["Pfam%3APF13205","Bacterial Ig-like domain"],["Pfam%3APF17475","Clostridial binary toxin B/anthrax toxin PA domain 2"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":1,"nb":26,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["Pfam%3APF27270","Alr1449"],["Pfam%3APF27301","Alr2735 N-terminal domain"],["Pfam%3APF27288","Alr2735"],["Pfam%3APF21571","Arginine dihydrolase ArgZ-like, C-terminal, first region"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF13205","Bacterial Ig-like domain"]]},{"id":"NCBITaxon:226186","l":"Bacteroides thetaiotaomicron (strain ATCC 29148 / DSM 2079 / JCM 5827 / CCUG 10774 / NCTC 10582 / VPI-5482 / E50)","na":1,"nb":25,"a":[["gut-epithelium-bto-0000956.html","gut epithelium"]],"b":[["Pfam%3APF06439","3-keto-alpha-glucoside-1,2-lyase-like domain"],["Pfam%3APF13444","Acetyltransferase (GNAT) domain"],["Pfam%3APF19576","Acyltransferase"],["Pfam%3APF23764","GLAA-B beta-barrel domain II"],["Pfam%3APF13715","CarboxypepD_reg-like domain"],["Pfam%3APF26120","SusF, first starch specific CBM"]]},{"id":"NCBITaxon:160488","l":"Pseudomonas putida (strain ATCC 47054 / DSM 6125 / CFBP 8728 / NCIMB 11950 / KT2440)","na":1,"nb":24,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF00842","Alanine racemase, C-terminal domain"],["Pfam%3APF01168","Alanine racemase, N-terminal domain"],["Pfam%3APF13372","Alginate export"],["Pfam%3APF03705","CheR methyltransferase, all-alpha domain"],["Pfam%3APF01739","CheR methyltransferase, SAM binding domain"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":19,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["saline-water-body-envo-01001319.html","saline water body"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["Pfam%3APF03437","BtpA family"]]},{"id":"NCBITaxon:1871066","l":"Mesorhizobium sp.","na":1,"nb":18,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["TED%3AAF-A0A3S3GQ11-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S3GQ11-F1-model_v4_TED01"],["TED%3AAF-A0A439J515-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A439J515-F1-model_v4_TED03"],["TED%3AAF-A0A439JC49-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A439JC49-F1-model_v4_TED01"],["TED%3AAF-A0A439N076-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A439N076-F1-model_v4_TED01"],["TED%3AAF-A0A442WFH9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A442WFH9-F1-model_v4_TED03"],["TED%3AAF-A0A529PFR3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A529PFR3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1018","l":"Capnocytophaga ochracea","na":17,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["gut-bto-0000545.html","gut"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"]],"b":[["TED%3AAF-A0A2X2T3Z4-F1-model_v4_TED01","TED novel fold AF-A0A2X2T3Z4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:208963","l":"Pseudomonas aeruginosa (strain UCBPP-PA14)","na":1,"nb":17,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF21384","CRISPR-associated nuclease/helicase Cas3, I-F/YPEST, Cas2 domain"],["Pfam%3APF21802","CRISPR-associated Cas3 subtype I-F/YPEST-like, C-terminal domain"],["Pfam%3APF20975","DGC-associated coil"],["Pfam%3APF19502","Nucleotidyltransferase of unknown function (DUF6036)"]]},{"id":"NCBITaxon:210007","l":"Streptococcus mutans serotype c (strain ATCC 700610 / UA159)","na":1,"nb":17,"a":[["tooth-bto-0000397.html","tooth"]],"b":[["Pfam%3APF18652","Adhesin P1 N-terminal domain"],["Pfam%3APF17998","Cell surface antigen I/II C2 terminal domain"],["Pfam%3APF16364","Cell surface antigen C-terminus"],["Pfam%3APF12733","Cadherin-like beta sandwich domain"],["Pfam%3APF05737","Collagen binding domain"],["Pfam%3APF21537","DUF1980 C-terminal domain"]]},{"id":"NCBITaxon:69014","l":"Thermococcus kodakarensis (strain ATCC BAA-918 / JCM 12380 / KOD1)","na":1,"nb":17,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["Pfam%3APF08546","Ketopantoate reductase PanE/ApbA C terminal"],["Pfam%3APF02558","Ketopantoate reductase PanE/ApbA"],["Pfam%3APF09210","1,4-alpha-glucan branching enzyme, C-terminal"],["Pfam%3APF01861","Branched-chain polyamine synthase A C-terminal domain"],["Pfam%3APF27272","Cyclic 2,3-diphosphoglycerate synthetase, N-terminal domain"],["Pfam%3APF17884","Domain of unknown function (DUF5591)"]]},{"id":"NCBITaxon:9615","l":"Canis lupus familiaris","na":1,"nb":16,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["Pfam%3APF14797","Serine-rich region of AP3B1, clathrin-adaptor complex"],["Pfam%3APF22627","AglB core domain"],["Pfam%3APF09064","Thrombomodulin like fifth domain, EGF-like"],["Pfam%3APF14828","Amnionless"],["Pfam%3APF03669","PAT complex subunit Asterix"],["Pfam%3APF07946","PAT complex subunit CCDC47"]]},{"id":"NCBITaxon:106370","l":"Frankia casuarinae","na":14,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["river-envo-00000022.html","river"],["rhizosphere-envo-00005801.html","rhizosphere"],["root-nodule-bto-0001190.html","root nodule"],["biome-envo-00000428.html","biome"],["biotope-envo-00002036.html","biotope"]],"b":[["Pfam%3APF14403","Circularly permuted ATP-grasp type 2"]]},{"id":"NCBITaxon:1360","l":"Lactococcus lactis subsp. lactis","na":1,"nb":14,"a":[["foregut-bto-0000507.html","foregut"]],"b":[["Pfam%3APF08951","Bacteriocin immunity protein family"],["Pfam%3APF08998","Bacterial epsilon antitoxin"],["Pfam%3APF25887","LcnD-like, long helical bundle domain"],["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF25940","LcnD-like, C-terminal domain"],["Pfam%3APF08129","Alpha/beta enterocin family"]]},{"id":"NCBITaxon:1590","l":"Lactiplantibacillus plantarum","na":14,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["food-fermented-foodon-00001258.html","food (fermented)"],["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"],["breast-bto-0000149.html","breast"],["colonic-epithelium-bto-0001709.html","colonic epithelium"],["epithelial-cell-bto-0000414.html","epithelial cell"]],"b":[["Pfam%3APF06314","Acetoacetate decarboxylase (ADC)"]]},{"id":"CHEBI:16183","l":"methane","na":1,"nb":13,"a":[["methane-bioremediation-material-habitatmech-gold-d510166905.html","methane bioremediation material"]],"b":[["EC%3A1.14.13.25","methane monooxygenase (soluble)"],["EC%3A1.14.18.3","methane monooxygenase (particulate)"],["EC%3A2.8.4.1","coenzyme-B sulfoethylthiotransferase"],["EC%3A4.7.1.1","alpha-D-ribose 1-methylphosphonate 5-phosphate C-P-lyase"],["RHEA%3A34707","alpha-D-ribose 1-methylphosphonate 5-phosphate + AH2 + S-adenosyl-L-methionine = alpha-D-ribose 1,2-cyclic phosphate 5-phosphate + methane + 5'-deoxyadenosine + L-methionine + A + H(+)"],["RHEA%3A12532","coenzyme B + methyl-coenzyme M = methane + coenzyme M-coenzyme B heterodisulfide"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":13,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["Pfam%3APF07832","Cfr10I/Bse634I restriction endonuclease"],["Pfam%3APF22348","Colicin-A N-terminal domain"],["Pfam%3APF01024","Colicin pore forming domain"],["Pfam%3APF18427","DD-reactivating factor swiveling domain"],["Pfam%3APF02286","Dehydratase large subunit"],["Pfam%3APF02288","Dehydratase medium subunit"]]},{"id":"NCBITaxon:104268","l":"Tenacibaculum mesophilum","na":12,"nb":1,"a":[["bay-envo-00000032.html","bay"],["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"],["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"]],"b":[["TED%3AAF-A0A1M5HMT5-F1-model_v4_TED01","TED novel fold AF-A0A1M5HMT5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:107401","l":"Tenacibaculum maritimum","na":12,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["low-tide-zone-envo-00000319.html","low tide zone"],["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A5S9T7W6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5S9T7W6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1596","l":"Lactobacillus gasseri","na":12,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["catheter-device-ncit-c50344.html","Catheter Device"],["city-envo-00000856.html","city"],["egg-food-product-foodon-00001274.html","egg food product"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"]],"b":[["TED%3AAF-A0A845FIT3-F1-model_v4_TED02","TED novel fold AF-A0A845FIT3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus (strain ATCC 27405 / DSM 1237 / JCM 9322 / NBRC 103400 / NCIMB 10682 / NRRL B-4536 / VPI 7372)","na":1,"nb":12,"a":[["blood-plasma-bto-0000131.html","blood plasma"]],"b":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["Pfam%3APF00942","Cellulose binding domain"],["Pfam%3APF17996","Carbohydrate esterase 2 N-terminal"],["Pfam%3APF00963","Cohesin domain"],["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF00404","Dockerin type I domain"]]},{"id":"NCBITaxon:272942","l":"Rhodobacter capsulatus (strain ATCC BAA-309 / NBRC 16581 / SB1003)","na":1,"nb":12,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["Pfam%3APF02553","Cobalt transport protein component CbiN"],["Pfam%3APF03379","CcmB protein"],["Pfam%3APF27123","Carotenoid hydratase CrtC"],["Pfam%3APF14715","N-terminal domain of cytochrome oxidase-cbb3, FixP"],["Pfam%3APF07284","2-vinyl bacteriochlorophyllide hydratase (BCHF)"],["Pfam%3APF02571","Precorrin-6x reductase CbiJ/CobK"]]},{"id":"NCBITaxon:469383","l":"Conexibacter woesei DSM 14684","na":12,"nb":1,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["oil-spill-envo-00002061.html","oil spill"],["village-biome-envo-01000246.html","village biome"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["TED%3AAF-D3FEY8-F1-model_v4_TED03","TED highly-symmetric fold AF-D3FEY8-F1-model_v4_TED03"]]},{"id":"NCBITaxon:471472","l":"Chlamydia trachomatis serovar L2 (strain ATCC VR-902B / DSM 19102 / 434/Bu)","na":1,"nb":12,"a":[["lymph-node-bto-0000784.html","lymph node"]],"b":[["Pfam%3APF07382","Histone H1-like nucleoprotein HC2"],["Pfam%3APF05475","Pgp3 C-terminal domain"],["Pfam%3APF22368","Response regulator protein ChxR, N-terminal domain"],["Pfam%3APF01345","CLIPPER domain"],["Pfam%3APF07577","Domain of Unknown Function (DUF1547)"],["Pfam%3APF03503","Chlamydia cysteine-rich outer membrane protein 3"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":11,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"],["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["laboratory-facility-envo-01001406.html","laboratory facility"],["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["bone-element-uberon-0001474.html","bone element"],["juvenile-bto-0002168.html","juvenile"]],"b":[["Pfam%3APF08124","Polysaccharide lyase family 8, N terminal alpha-helical domain"]]},{"id":"NCBITaxon:272626","l":"Listeria innocua serovar 6a (strain ATCC BAA-680 / CLIP 11262)","na":1,"nb":11,"a":[["heart-bto-0000562.html","heart"]],"b":[["Pfam%3APF16595","PAM-interacting domain of CRISPR-associated endonuclease Cas9"],["Pfam%3APF21846","Domain of unknown function (DUF6905)"],["Pfam%3APF27405","Lin0124 C-terminal coiled-coil domain"],["Pfam%3APF14297","Lin1244/Lin1753-like, N-terminal"],["Pfam%3APF16593","Bridge helix of CRISPR-associated endonuclease Cas9"],["Pfam%3APF16592","REC lobe of CRISPR-associated endonuclease Cas9"]]},{"id":"NCBITaxon:331112","l":"Escherichia coli O9:H4 (strain HS)","na":1,"nb":11,"a":[["adrenal-gland-bto-0000047.html","adrenal gland"]],"b":[["Pfam%3APF25796","BREX ATP-binding protein BrxC 4th domain with six-stranded beta sheet"],["Pfam%3APF25792","BREX ATP-binding protein BrxC alpha helical domain"],["Pfam%3APF08747","BREX protein BrxB"],["Pfam%3APF19557","BrxC/PglY, N-terminal domain"],["Pfam%3APF13337","Lon-like protease BrxL-like, ATPase domain"],["Pfam%3APF20442","BREX system Lon protease-like protein BrxL N-terminal"]]},{"id":"NCBITaxon:4113","l":"Solanum tuberosum","na":1,"nb":11,"a":[["tuber-bto-0001400.html","tuber"]],"b":[["Pfam%3APF02977","Carboxypeptidase A inhibitor"],["Pfam%3APF01474","Class-II DAHP synthetase family"],["Pfam%3APF23229","Alpha-glucan water dikinase, DUF7067"],["Pfam%3APF02446","4-alpha-glucanotransferase"],["Pfam%3APF22973","Alpha-glucan water dikinase, phosphohistidine-like domain"],["Pfam%3APF23166","Alpha-glucan water dikinase 1 Ig-like N-terminal domain"]]},{"id":"NCBITaxon:498211","l":"Cellvibrio japonicus (strain Ueda107)","na":1,"nb":11,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["Pfam%3APF17996","Carbohydrate esterase 2 N-terminal"],["Pfam%3APF02156","Glycosyl hydrolase family 26"],["Pfam%3APF02015","Glycosyl hydrolase family 45"],["Pfam%3APF07477","Glycosyl hydrolase family 67 C-terminus"],["Pfam%3APF07488","Glycosyl hydrolase family 67 middle domain"],["Pfam%3APF03648","Glycosyl hydrolase family 67 N-terminus"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":1,"nb":11,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF02085","Class III cytochrome C family"],["Pfam%3APF06397","Desulfoferrodoxin, N-terminal domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["Pfam%3APF12797","4Fe-4S binding domain"],["Pfam%3APF06180","Cobalt chelatase (CbiK)"]]},{"id":"NCBITaxon:1058","l":"Thiocapsa roseopersicina","na":10,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["saline-marsh-envo-00000054.html","saline marsh"],["river-envo-00000022.html","river"],["waste-water-envo-00002001.html","waste water"],["environmental-feature-envo-00002297.html","environmental feature"],["stromatolite-mat-envo-00002157.html","stromatolite mat"]],"b":[["Pfam%3APF27123","Carotenoid hydratase CrtC"]]},{"id":"NCBITaxon:1399","l":"Cytobacillus firmus","na":10,"nb":1,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"],["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["TED%3AAF-A0A800NFK9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A800NFK9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:147","l":"Spirochaeta aurantia","na":10,"nb":1,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["water-body-envo-00000063.html","water body"]],"b":[["Pfam%3APF06226","Protein of unknown function (DUF1007)"]]},{"id":"NCBITaxon:192222","l":"Campylobacter jejuni subsp. jejuni serotype O:2 (strain ATCC 700819 / NCTC 11168)","na":1,"nb":10,"a":[["flagellate-bto-0000464.html","flagellate"]],"b":[["Pfam%3APF26365","Apolipoprotein N-acyltransferase integral membrane domain"],["Pfam%3APF22131","CRISPR-associated endonuclease CjCas9 PI-CTD domain"],["Pfam%3APF22129","CRISPR-associated endonuclease CjCas9 wedge domain"],["Pfam%3APF02554","Carbon starvation protein CstA"],["Pfam%3APF27310","HrcA C-terminal domain"],["Pfam%3APF05538","Campylobacter major outer membrane protein"]]},{"id":"NCBITaxon:2026795","l":"Nitrososphaerota archaeon","na":1,"nb":10,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2E0QIG3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E0QIG3-F1-model_v4_TED02"],["TED%3AAF-A0A519CY76-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A519CY76-F1-model_v4_TED02"],["TED%3AAF-A0A533VPG5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A533VPG5-F1-model_v4_TED01"],["TED%3AAF-A0A533VS28-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A533VS28-F1-model_v4_TED01"],["TED%3AAF-A0A538P7I2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A538P7I2-F1-model_v4_TED02"],["TED%3AAF-A0A662PPJ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A662PPJ2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":1,"nb":10,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["Pfam%3APF27445","Adaptation to cold protein A"],["Pfam%3APF27450","AtcB C-terminal domain"],["Pfam%3APF27486","AtcB N-terminal domain"],["Pfam%3APF02464","CinA C-terminal domain"],["Pfam%3APF13657","HipA N-terminal domain"],["Pfam%3APF01934","Ribonuclease HepT-like"]]},{"id":"NCBITaxon:266264","l":"Cupriavidus metallidurans CH34","na":1,"nb":10,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["Pfam%3APF25973","CzcB-like, barrel-sandwich hybrid domain"],["Pfam%3APF09828","ChrB, C-terminal domain"],["Pfam%3APF20229","Protein ChrB, N-terminal"],["Pfam%3APF01923","Cobalamin adenosyltransferase"],["Pfam%3APF25975","CzcB C-terminal circularly permuted SH3-like domain"],["Pfam%3APF25971","CzcB, N-terminal domain"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":10,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["air-conditioning-unit-envo-00002874.html","air conditioning unit"],["leaf-bto-0000713.html","leaf"],["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["TED%3AAF-A0A679J1E9-F1-model_v4_TED01","TED novel fold AF-A0A679J1E9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:47715","l":"Lacticaseibacillus rhamnosus","na":10,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["fermentation-starter-envo-03600040.html","fermentation starter"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["Pfam%3APF04914","DltD protein"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":1,"nb":10,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["Pfam%3APF17433","Glycosyl hydrolase family 49 N-terminal Ig-like domain"],["PROSITE%3APS00820","Glucoamylase active site region signature"],["PROSITE%3APS00920","Nitrilases / cyanide hydratase signature 1"],["PROSITE%3APS00502","Polygalacturonase active site"],["Pfam%3APF18841","Beta solenoid repeat from Dextranase"],["Pfam%3APF03718","Glycosyl hydrolase family 49"]]},{"id":"NCBITaxon:72036","l":"Lepeophtheirus salmonis","na":1,"nb":10,"a":[["sandstone-envo-00002055.html","sandstone"]],"b":[["TED%3AAF-A0A0K2T0G4-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A0K2T0G4-F1-model_v4_TED05"],["TED%3AAF-A0A0K2UM05-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0K2UM05-F1-model_v4_TED02"],["TED%3AAF-A0A0K2UVC7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0K2UVC7-F1-model_v4_TED02"],["TED%3AAF-A0A7R8CWL1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7R8CWL1-F1-model_v4_TED02"],["TED%3AAF-A0A0K2U8Q2-F1-model_v4_TED01","TED novel fold AF-A0A0K2U8Q2-F1-model_v4_TED01"],["TED%3AAF-A0A0K2U962-F1-model_v4_TED02","TED novel fold AF-A0A0K2U962-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1017","l":"Capnocytophaga gingivalis","na":9,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biotope-envo-00002036.html","biotope"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["organic-feature-envo-01000159.html","organic feature"]],"b":[["TED%3AAF-A0A250FUG5-F1-model_v4_TED01","TED novel fold AF-A0A250FUG5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:107806","l":"Buchnera aphidicola subsp. Acyrthosiphon pisum (strain APS)","na":1,"nb":9,"a":[["embryo-bto-0000379.html","embryo"]],"b":[["Pfam%3APF21157","DnaK suppressor protein DksA, N-terminal domain"],["Pfam%3APF21158","Flagellar hook-associated protein 1, D2-like domain"],["Pfam%3APF02955","Prokaryotic glutathione synthetase, ATP-grasp domain"],["Pfam%3APF02951","Prokaryotic glutathione synthetase, N-terminal domain"],["Pfam%3APF21500","DNA polymerase III subunit delta', AAA+ ATPase lid domain"],["Pfam%3APF14840","Processivity clamp loader gamma complex DNA pol III C-term"]]},{"id":"NCBITaxon:111770","l":"Thiothrix fructosivorans","na":9,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"],["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"]],"b":[["TED%3AAF-A0A8B0SKG2-F1-model_v4_TED02","TED novel fold AF-A0A8B0SKG2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1261","l":"Peptostreptococcus anaerobius","na":9,"nb":1,"a":[["dorsum-bto-0001713.html","dorsum"],["saliva-bto-0001202.html","saliva"],["sgs-cell-bto-0001210.html","SGS cell"],["tongue-bto-0001385.html","tongue"],["urine-bto-0001419.html","urine"],["vagina-bto-0000243.html","vagina"]],"b":[["TED%3AAF-A0A379CE26-F1-model_v4_TED01","TED novel fold AF-A0A379CE26-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1904441","l":"Paracoccaceae bacterium","na":1,"nb":9,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2E3PFF7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E3PFF7-F1-model_v4_TED02"],["TED%3AAF-A0A357LNH5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A357LNH5-F1-model_v4_TED01"],["TED%3AAF-A0A3D4DSL4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D4DSL4-F1-model_v4_TED01"],["TED%3AAF-A0A6L8C0Y8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L8C0Y8-F1-model_v4_TED01"],["TED%3AAF-A0A7Y2J0I6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y2J0I6-F1-model_v4_TED01"],["TED%3AAF-A0A2E0BJC7-F1-model_v4_TED02","TED novel fold AF-A0A2E0BJC7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:226185","l":"Enterococcus faecalis (strain ATCC 700802 / V583)","na":1,"nb":9,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["Pfam%3APF13523","Acetyltransferase (GNAT) domain"],["Pfam%3APF17255","EbsA-like protein"],["Pfam%3APF22647","Deacetylase EF_0837-like composite domain"],["Pfam%3APF08858","IDEAL domain"],["Pfam%3APF02655","ATP-grasp domain"],["Pfam%3APF17400","Family of unknown function (DUF5406)"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":9,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["Pfam%3APF07835","Bacterial aa3 type cytochrome c oxidase subunit IV"],["Pfam%3APF04828","Glutathione-dependent formaldehyde-activating enzyme"],["Pfam%3APF16448","LapD/MoxY periplasmic domain"],["Pfam%3APF17267","Family of unknown function (DUF5333)"],["Pfam%3APF17272","Family of unknown function (DUF5337)"],["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":9,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["mud-envo-01000001.html","mud"]],"b":[["PROSITE%3APS01322","Phosphotriesterase family signature 1"]]},{"id":"NCBITaxon:29539","l":"Thermoleophilum album","na":9,"nb":1,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"],["desert-sand-envo-00005800.html","desert sand"],["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"],["village-biome-envo-01000246.html","village biome"]],"b":[["TED%3AAF-A0A1H6FIV6-F1-model_v4_TED01","TED novel fold AF-A0A1H6FIV6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:359391","l":"Brucella abortus (strain 2308)","na":1,"nb":9,"a":[["style-bto-0001313.html","style"]],"b":[["Pfam%3APF13444","Acetyltransferase (GNAT) domain"],["Pfam%3APF10090","Histidine phosphotransferase C-terminal domain"],["Pfam%3APF07536","HWE histidine kinase"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF07886","BA14K-like protein"],["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"]]},{"id":"NCBITaxon:405955","l":"Escherichia coli O1:K1 / APEC","na":1,"nb":9,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["Pfam%3APF07417","Sigma factor-binding transcriptional regulator Crl"],["Pfam%3APF10807","Domain of unknown function (DUF2541)"],["Pfam%3APF25878","pHBA AAEA subunit, alpha-helical hairpin domain"],["Pfam%3APF10796","Sigma-S stabilisation anti-adaptor protein"],["Pfam%3APF06693","Protein of unknown function (DUF1190)"],["Pfam%3APF06932","Protein of unknown function (DUF1283)"]]},{"id":"NCBITaxon:7668","l":"Strongylocentrotus purpuratus","na":1,"nb":9,"a":[["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["Pfam%3APF01382","Avidin family"],["Pfam%3APF02084","Bindin"],["PROSITE%3APS00577","Avidin-like domain signature"],["Pfam%3APF22494","Choice-of-anchor I domain"],["Pfam%3APF05804","Kinesin-associated protein (KAP)"],["Pfam%3APF07054","Pericardin like repeat"]]},{"id":"NCBITaxon:83462","l":"Corallococcus exiguus","na":9,"nb":1,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["feces-uberon-0001988.html","feces"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"]],"b":[["TED%3AAF-A0A7X4Y983-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X4Y983-F1-model_v4_TED01"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":9,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF25954","CusB-like, beta-barrel domain"],["Pfam%3APF13438","Domain of unknown function (DUF4113)"],["Pfam%3APF03767","HAD superfamily, subfamily IIIB (Acid phosphatase)"],["Pfam%3APF03496","ADP-ribosyltransferase exoenzyme"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":8,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["alimentary-canal-bto-0000058.html","alimentary canal"],["blood-bto-0000089.html","blood"],["small-intestine-bto-0000651.html","small intestine"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["geographic-feature-envo-00000000.html","geographic feature"]],"b":[["PROSITE%3APS01043","Transposases, IS30 family, signature"]]},{"id":"NCBITaxon:1486246","l":"Halomonas sp.","na":8,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["saline-water-body-envo-01001319.html","saline water body"],["laboratory-facility-envo-01001406.html","laboratory facility"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["TED%3AAF-A0A355PHS8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A355PHS8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":8,"a":[["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["Pfam%3APF02927","Cellulase N-terminal ig-like domain"],["Pfam%3APF00404","Dockerin type I domain"],["PROSITE%3APS00448","Clostridium cellulosome enzymes repeated domain signature"],["PROSITE%3APS60032","Glycosyl hydrolases family 9 (GH9) active site signature 1"],["PROSITE%3APS00592","Glycosyl hydrolases family 9 (GH9) active site signature 2"],["PROSITE%3APS00698","Glycosyl hydrolases family 9 (GH9) active site signature 3"]]},{"id":"NCBITaxon:183190","l":"Xylella fastidiosa (strain Temecula1 / ATCC 700964)","na":1,"nb":8,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["Pfam%3APF21142","Bacterial alpha-2 macroglobulin MG2 domain"],["Pfam%3APF04273","Beta-lactamase hydrolase-like protein, phosphatase-like domain"],["Pfam%3APF17970","Bacterial Alpha-2-macroglobulin MG1 domain"],["Pfam%3APF17973","Bacterial Alpha-2-macroglobulin MG10 domain"],["Pfam%3APF11974","Bacterial alpha-2-macroglobulin MG3 domain"],["Pfam%3APF17972","Bacterial Alpha-2-macroglobulin MG5 domain"]]},{"id":"NCBITaxon:196162","l":"Nocardioides sp. JS614","na":8,"nb":1,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["oil-spill-envo-00002061.html","oil spill"],["petroleum-envo-00002984.html","petroleum"]],"b":[["TED%3AAF-A1SFH1-F1-model_v4_TED04","TED highly-symmetric fold AF-A1SFH1-F1-model_v4_TED04"]]},{"id":"NCBITaxon:227882","l":"Streptomyces avermitilis (strain ATCC 31267 / DSM 46492 / JCM 5070 / NBRC 14893 / NCIMB 12804 / NRRL 8165 / MA-4680)","na":1,"nb":8,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["Pfam%3APF17390","Bacterial alpha-L-rhamnosidase C-terminal domain"],["Pfam%3APF08531","Alpha-L-rhamnosidase N-terminal domain"],["Pfam%3APF05592","Bacterial alpha-L-rhamnosidase concanavalin-like domain"],["Pfam%3APF26366","Domain of unknown function (DUF8094)"],["Pfam%3APF25788","Rha78A-like, N-terminal immunoglobulin domain"],["Pfam%3APF06781","Cell division protein CrgA"]]},{"id":"NCBITaxon:229533","l":"Fusarium graminearum PH-1","na":1,"nb":8,"a":[["soil-envo-00001998.html","soil"]],"b":[["Pfam%3APF18388","Atg29 N-terminal domain"],["Pfam%3APF27599","CcsR C-terminal domain"],["Pfam%3APF07110","EthD domain"],["Pfam%3APF11700","Vacuole effluxer Atg22 like"],["Pfam%3APF28504","Gramillins biosynthetic cluster protein GRA5"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"]]},{"id":"NCBITaxon:240176","l":"Coprinopsis cinerea (strain Okayama-7 / 130 / ATCC MYA-4618 / FGSC 9003)","na":1,"nb":8,"a":[["meiotic-cell-bto-0000845.html","meiotic cell"]],"b":[["Pfam%3APF26733","Adenylate-forming reductase 03009, C-terminal domain"],["Pfam%3APF01761","3-dehydroquinate synthase N-terminal"],["Pfam%3APF24621","3-dehydroquinate synthase C-terminal"],["Pfam%3APF03443","Auxiliary Activity family 9 (formerly GH61)"],["Pfam%3APF16010","Cytochrome domain of cellobiose dehydrogenase"],["PROSITE%3APS00104","EPSP synthase signature 1"]]},{"id":"NCBITaxon:35761","l":"Nocardioides sp.","na":8,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"],["desert-sand-envo-00005800.html","desert sand"],["endosymbiont-habitatmech-bacdive-7d840c7ddc.html","Endosymbiont"],["oil-spill-envo-00002061.html","oil spill"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["orchard-envo-00000115.html","orchard"]],"b":[["TED%3AAF-A0A2E8Z449-F1-model_v4_TED01","TED novel fold AF-A0A2E8Z449-F1-model_v4_TED01"]]},{"id":"NCBITaxon:47885","l":"Pseudomonas oryzihabitans","na":8,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"],["hospital-envo-00002173.html","hospital"],["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"],["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["TED%3AAF-A0A7X3T0R5-F1-model_v4_TED02","TED novel fold AF-A0A7X3T0R5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:572477","l":"Allochromatium vinosum (strain ATCC 17899 / DSM 180 / NBRC 103801 / NCIMB 10441 / D)","na":1,"nb":8,"a":[["ditch-water-envo-00002158.html","ditch water"]],"b":[["Pfam%3APF01322","Cytochrome C'"],["Pfam%3APF02635","DsrE/DsrF-like family"],["Pfam%3APF21706","Sulfide dehydrogenase [flavocytochrome c] flavoprotein chain, central"],["Pfam%3APF09242","Flavocytochrome c sulphide dehydrogenase, flavin-binding"],["Pfam%3APF01355","High potential iron-sulfur protein"],["Pfam%3APF13686","DsrE/DsrF/DrsH-like family"]]},{"id":"UBERON:0001009","l":"","na":8,"nb":1,"a":[["circulatory-system-habitatmech-gold-0552e4fd8a.html","Circulatory system"],["circulatory-system-habitatmech-gold-ce9fa1ef7f.html","Circulatory system"],["circulatory-system-habitatmech-gold-0635cc88f0.html","Circulatory system"],["circulatory-system-habitatmech-gold-2a948ee511.html","Circulatory system"],["circulatory-system-habitatmech-gold-7a7f8b9aa3.html","Circulatory system"],["circulatory-system-habitatmech-gold-5307a30baa.html","Circulatory system"]],"b":[["GO%3A0072359","circulatory system development"]]},{"id":"NCBITaxon:114615","l":"Bradyrhizobium sp. ORS 278","na":7,"nb":1,"a":[["river-envo-00000022.html","river"],["bacteroid-bto-0000109.html","bacteroid"],["root-nodule-bto-0001190.html","root nodule"],["stem-nodule-bto-0001816.html","stem nodule"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["Pfam%3APF10073","GapR-like, DNA-binding domain"]]},{"id":"NCBITaxon:1656","l":"Actinomyces viscosus","na":7,"nb":1,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"],["skin-of-body-uberon-0002097.html","skin of body"],["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Pfam%3APF16555","Gram-positive pilin subunit D1, N-terminal domain"]]},{"id":"NCBITaxon:1906666","l":"Thermoplasmata archaeon","na":1,"nb":7,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A497HVI4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A497HVI4-F1-model_v4_TED01"],["TED%3AAF-A0A497HX78-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A497HX78-F1-model_v4_TED01"],["TED%3AAF-A0A662M489-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A662M489-F1-model_v4_TED03"],["TED%3AAF-A0A662MMC3-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A662MMC3-F1-model_v4_TED06"],["TED%3AAF-A0A7J4F045-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J4F045-F1-model_v4_TED01"],["TED%3AAF-A0A5A7S0Y2-F1-model_v4_TED02","TED novel fold AF-A0A5A7S0Y2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2006849","l":"Xanthomonadales bacterium","na":1,"nb":7,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2E6REI1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E6REI1-F1-model_v4_TED01"],["TED%3AAF-A0A2E6RHE7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E6RHE7-F1-model_v4_TED02"],["TED%3AAF-A0A354Z1F6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A354Z1F6-F1-model_v4_TED01"],["TED%3AAF-A0A3S0DIN1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S0DIN1-F1-model_v4_TED01"],["TED%3AAF-A0A431HZV9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A431HZV9-F1-model_v4_TED02"],["TED%3AAF-A0A3S0DMM0-F1-model_v4_TED01","TED novel fold AF-A0A3S0DMM0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:242619","l":"Porphyromonas gingivalis (strain ATCC BAA-308 / W83)","na":1,"nb":7,"a":[["gingiva-bto-0000519.html","gingiva"]],"b":[["Pfam%3APF13290","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF04023","FeoA domain"],["Pfam%3APF17910","FeoB cytosolic helical domain"],["Pfam%3APF02421","Ferrous iron transport protein B"],["Pfam%3APF22492","FimA4 pilin C-terminal domain"],["Pfam%3APF07664","Ferrous iron transport protein B C terminus"]]},{"id":"NCBITaxon:273075","l":"Thermoplasma acidophilum (strain ATCC 25905 / DSM 1728 / JCM 9062 / NBRC 15155 / AMRC-C165)","na":1,"nb":7,"a":[["blood-plasma-bto-0000131.html","blood plasma"]],"b":[["Pfam%3APF17989","Actin like proteins N terminal domain"],["Pfam%3APF10432","Bacterial phospho-glucose isomerase C-terminal SIS domain"],["Pfam%3APF22490","tRNA-splicing endonuclease, linker domain"],["Pfam%3APF22578","Geranylgeranyl reductase catalytic domain"],["Pfam%3APF12831","FAD dependent oxidoreductase"],["Pfam%3APF26550","Tricorn protease second beta propeller domain"]]},{"id":"NCBITaxon:314230","l":"Blastopirellula marina DSM 3645","na":7,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["shoreline-envo-00000486.html","shoreline"],["bulk-soil-envo-00005802.html","bulk soil"],["forested-area-envo-00000111.html","forested area"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-A3ZZX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A3ZZX2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:37734","l":"Enterococcus casseliflavus","na":1,"nb":7,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["PROSITE%3APS00843","D-alanine--D-alanine ligase signature 1"],["PROSITE%3APS00844","D-alanine--D-alanine ligase signature 2"],["TED%3AAF-A0A1V3NEA6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1V3NEA6-F1-model_v4_TED03"],["TED%3AAF-A0A377MP00-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A377MP00-F1-model_v4_TED01"],["TED%3AAF-A0A377KTN3-F1-model_v4_TED02","TED novel fold AF-A0A377KTN3-F1-model_v4_TED02"],["TED%3AAF-A0A377MJ12-F1-model_v4_TED01","TED novel fold AF-A0A377MJ12-F1-model_v4_TED01"]]},{"id":"NCBITaxon:555778","l":"","na":1,"nb":7,"a":[["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["Pfam%3APF08936","Carboxysome Shell Carbonic Anhydrase, C-terminal"],["Pfam%3APF20686","Carboxysome Shell Carbonic Anhydrase, catalytic domain"],["Pfam%3APF20687","Carboxysome Shell Carbonic Anhydrase, N-terminal"],["Pfam%3APF12288","Carboxysome shell peptide mid-region"],["Pfam%3APF10070","Probable inorganic carbon transporter subunit DabA"],["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"UBERON:0000948","l":"heart","na":7,"nb":1,"a":[["heart-habitatmech-gold-2db4d9dd6e.html","Heart"],["heart-habitatmech-gold-8d7a4e1712.html","Heart"],["heart-uberon-0000948.html","heart"],["heart-habitatmech-gold-e9d67283fc.html","Heart"],["heart-habitatmech-gold-805ee181bd.html","Heart"],["heart-habitatmech-gold-20bc7c46a0.html","Heart"]],"b":[["GO%3A0007507","heart development"]]},{"id":"NCBITaxon:101571","l":"Burkholderia ubonensis","na":1,"nb":6,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["TED%3AAF-A0A118H7W5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A118H7W5-F1-model_v4_TED01"],["TED%3AAF-A0A853WTK8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A853WTK8-F1-model_v4_TED01"],["TED%3AAF-A0A104J6D5-F1-model_v4_TED03","TED novel fold AF-A0A104J6D5-F1-model_v4_TED03"],["TED%3AAF-A0A104Z719-F1-model_v4_TED01","TED novel fold AF-A0A104Z719-F1-model_v4_TED01"],["TED%3AAF-A0A106QCV3-F1-model_v4_TED01","TED novel fold AF-A0A106QCV3-F1-model_v4_TED01"],["TED%3AAF-A0A124U5S7-F1-model_v4_TED02","TED novel fold AF-A0A124U5S7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":6,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"],["sludge-envo-00002044.html","sludge"],["forested-area-envo-00000111.html","forested area"],["scrubland-area-envo-00000300.html","scrubland area"],["soil-envo-00001998.html","soil"]],"b":[["TED%3AAF-A0A367PA30-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A367PA30-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121927","l":"Gordonia hirsuta DSM 44140 = NBRC 16056","na":6,"nb":1,"a":[["biofilter-envo-00002152.html","biofilter"],["compost-envo-00002170.html","compost"],["wood-bto-0005516.html","wood"],["wood-envo-00002040.html","wood"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["waste-material-envo-00002264.html","waste material"]],"b":[["TED%3AAF-L7L8J6-F1-model_v4_TED01","TED highly-symmetric fold AF-L7L8J6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1133849","l":"Nocardia brasiliensis ATCC 700358","na":6,"nb":1,"a":[["b-lymphocyte-bto-0000776.html","B-lymphocyte"],["brain-bto-0000142.html","brain"],["heart-bto-0000562.html","heart"],["lymphocyte-bto-0000775.html","lymphocyte"],["macrophage-bto-0000801.html","macrophage"],["spleen-bto-0001281.html","spleen"]],"b":[["TED%3AAF-K0ES07-F1-model_v4_TED01","TED novel fold AF-K0ES07-F1-model_v4_TED01"]]},{"id":"NCBITaxon:124","l":"Blastopirellula marina","na":1,"nb":6,"a":[["marine-environment-envo-01000320.html","marine environment"]],"b":[["TED%3AAF-A0A2S8GNX8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S8GNX8-F1-model_v4_TED01"],["TED%3AAF-A0A2S8F9J3-F1-model_v4_TED04","TED novel fold AF-A0A2S8F9J3-F1-model_v4_TED04"],["TED%3AAF-A0A2S8FMN6-F1-model_v4_TED01","TED novel fold AF-A0A2S8FMN6-F1-model_v4_TED01"],["TED%3AAF-A0A2S8GCT5-F1-model_v4_TED02","TED novel fold AF-A0A2S8GCT5-F1-model_v4_TED02"],["TED%3AAF-A0A2S8GL91-F1-model_v4_TED01","TED novel fold AF-A0A2S8GL91-F1-model_v4_TED01"],["TED%3AAF-A0A2S8GLG3-F1-model_v4_TED01","TED novel fold AF-A0A2S8GLG3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:205922","l":"Pseudomonas fluorescens Pf0-1","na":6,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["cold-environment-envo-01000309.html","cold environment"],["microbial-mat-material-envo-01000157.html","microbial mat material"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"],["agricultural-soil-envo-00002259.html","agricultural soil"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["Pfam%3APF07927","HicA toxin of bacterial toxin-antitoxin,"]]},{"id":"NCBITaxon:2210","l":"Methanosarcina thermophila","na":1,"nb":6,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF19436","ACS/CODH beta subunit C-terminal"],["Pfam%3APF03598","CO dehydrogenase/acetyl-CoA synthase complex beta subunit"],["Pfam%3APF00871","Acetokinase family"],["PROSITE%3APS01075","Acetate and butyrate kinases family signature 1"],["PROSITE%3APS01076","Acetate and butyrate kinases family signature 2"]]},{"id":"NCBITaxon:272630","l":"Methylorubrum extorquens (strain ATCC 14718 / DSM 1338 / JCM 2805 / NCIMB 9133 / AM1)","na":1,"nb":6,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["Pfam%3APF07726","ATPase family associated with various cellular activities (AAA)"],["Pfam%3APF02741","FTR, proximal lobe"],["Pfam%3APF01913","Formylmethanofuran-tetrahydromethanopterin formyltransferase"],["Pfam%3APF10677","Protein of unknown function (DUF2490)"],["Pfam%3APF08714","Formaldehyde-activating enzyme (Fae)"],["PROSITE%3APS00363","Bacterial quinoprotein dehydrogenases signature 1"]]},{"id":"NCBITaxon:290402","l":"Clostridium beijerinckii (strain ATCC 51743 / NCIMB 8052)","na":1,"nb":6,"a":[["garden-soil-envo-00002263.html","garden soil"]],"b":[["Pfam%3APF28550","Domain of unknown function (DUF8436)"],["Pfam%3APF21688","FAD-dependent protein, C-terminal domain-like"],["Pfam%3APF02001","Protein of unknown function DUF134"],["Pfam%3APF03608","PTS system enzyme II sorbitol-specific factor"],["Pfam%3APF07663","Sorbitol phosphotransferase enzyme II C-terminus"],["Pfam%3APF03612","Sorbitol phosphotransferase enzyme II N-terminus"]]},{"id":"NCBITaxon:3068","l":"Volvox carteri f. nagariensis","na":6,"nb":1,"a":[["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["neritic-epipelagic-zone-biome-envo-01000042.html","neritic epipelagic zone biome"],["germ-cell-bto-0000535.html","germ cell"],["semen-bto-0001230.html","semen"],["sea-shore-envo-00000485.html","sea shore"]],"b":[["TED%3AAF-D8U4E8-F1-model_v4_TED01","TED highly-symmetric fold AF-D8U4E8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:321614","l":"","na":1,"nb":6,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["Pfam%3APF11786","Aft1 HRA domain"],["Pfam%3APF11787","Aft1 HRR domain"],["Pfam%3APF26980","Dicer-like protein 2, dsRNA binding domain"],["Pfam%3APF18973","Putative Chitin binding like"],["Pfam%3APF25326","SRB8 ARM-like domain"],["TED%3AAF-A0A7U2I0S3-F1-model_v4_TED02","TED novel fold AF-A0A7U2I0S3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:364106","l":"Escherichia coli (strain UTI89 / UPEC)","na":1,"nb":6,"a":[["rectum-bto-0001158.html","rectum"]],"b":[["Pfam%3APF26516","Inner membrane protein CbrB"],["Pfam%3APF17151","Periplasmic sensor domain"],["Pfam%3APF08971","Glycogen synthesis protein"],["Pfam%3APF06005","ZapB family"],["Pfam%3APF09618","CRISPR-associated protein (Cas_Csy4)"],["Pfam%3APF28061","Type I toxin DinQ-like"]]},{"id":"NCBITaxon:374930","l":"Haemophilus influenzae (strain PittEE)","na":1,"nb":6,"a":[["middle-ear-bto-0002099.html","middle ear"]],"b":[["Pfam%3APF02952","L-fucose isomerase, C-terminal domain"],["Pfam%3APF07881","L-fucose isomerase, first N-terminal domain"],["Pfam%3APF07882","L-fucose isomerase, second N-terminal domain"],["Pfam%3APF02313","Fumarate reductase subunit D"],["Pfam%3APF13286","Phosphohydrolase-associated domain"],["Pfam%3APF04751","Dual-action ribosomal maturation protein DarP"]]},{"id":"NCBITaxon:471852","l":"Thermomonospora curvata DSM 43183","na":6,"nb":1,"a":[["city-envo-00000856.html","city"],["compost-envo-00002170.html","compost"],["urban-biome-envo-01000249.html","urban biome"],["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["Pfam%3APF01580","FtsK/SpoIIIE family"]]},{"id":"NCBITaxon:669","l":"Vibrio harveyi","na":1,"nb":6,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["Pfam%3APF02273","Acyl transferase"],["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF03173","Putative carbohydrate binding domain"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"],["TED%3AAF-A0A454D440-F1-model_v4_TED02","TED novel fold AF-A0A454D440-F1-model_v4_TED02"],["TED%3AAF-A0A8B3DE42-F1-model_v4_TED03","TED novel fold AF-A0A8B3DE42-F1-model_v4_TED03"]]},{"id":"NCBITaxon:7719","l":"Ciona intestinalis","na":6,"nb":1,"a":[["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"],["ascidian-bto-0000090.html","ascidian"],["ocellus-bto-0001758.html","ocellus"],["sensory-cell-bto-0001037.html","sensory cell"],["tadpole-bto-0001347.html","tadpole"],["trunk-bto-0001493.html","trunk"]],"b":[["TED%3AAF-F6ULD1-F1-model_v4_TED03","TED highly-symmetric fold AF-F6ULD1-F1-model_v4_TED03"]]},{"id":"NCBITaxon:9544","l":"Macaca mulatta","na":1,"nb":6,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["Pfam%3APF21708","Galactocerebrosidase, C-terminal lectin domain"],["Pfam%3APF17387","Glycosyl hydrolase family 59 central domain"],["Pfam%3APF18771","APOBEC3H"],["Pfam%3APF02057","Glycosyl hydrolase family 59"],["PROSITE%3APS00970","Nuclear transition protein 2 signature 1"],["PROSITE%3APS00971","Nuclear transition protein 2 signature 2"]]},{"id":"UBERON:0002048","l":"","na":6,"nb":1,"a":[["lung-habitatmech-gold-dd1a9f0db8.html","Lung"],["lung-habitatmech-gold-5bbc13545b.html","Lung"],["lung-habitatmech-gold-ba687e2c95.html","Lung"],["lung-habitatmech-gold-8fed57e653.html","Lung"],["lung-habitatmech-gold-e8a2c6cf87.html","Lung"],["lung-habitatmech-gold-0d343fdd03.html","Lung"]],"b":[["GO%3A0030324","lung development"]]},{"id":"NCBITaxon:1001240","l":"Cryobacterium roopkundense","na":5,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"],["mineral-material-envo-01000256.html","mineral material"]],"b":[["TED%3AAF-A0A099JLC4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A099JLC4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1006551","l":"Klebsiella michiganensis (strain ATCC 8724 / DSM 4798 / JCM 20051 / NBRC 3318 / NRRL B-199 / KCTC 1686 / BUCSAV 143 / CCM 1901)","na":1,"nb":5,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["Pfam%3APF07833","Copper amine oxidase N-terminal domain"],["Pfam%3APF18427","DD-reactivating factor swiveling domain"],["Pfam%3APF02288","Dehydratase medium subunit"],["Pfam%3APF08841","Diol dehydratase reactivase ATPase-like domain"],["TED%3AAF-A0A0H3H2M0-F1-model_v4_TED01","TED novel fold AF-A0A0H3H2M0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:103836","l":"Thermopolyspora flexuosa","na":5,"nb":1,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["intestine-environment-envo-2100002.html","intestine environment"],["organic-feature-envo-01000159.html","organic feature"],["compost-soil-envo-00005747.html","compost soil"],["soil-envo-00001998.html","soil"]],"b":[["TED%3AAF-A0A543J0S6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A543J0S6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:104421","l":"Camponotus floridanus","na":5,"nb":1,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"],["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"],["biotope-envo-00002036.html","biotope"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["Pfam%3APF22299","BRISC complex subunit FAM175B, helical domain"]]},{"id":"NCBITaxon:1288","l":"Staphylococcus xylosus","na":5,"nb":1,"a":[["stream-envo-00000023.html","stream"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"],["fecal-environment-envo-01001029.html","fecal environment"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["Pfam%3APF02603","HPr Serine kinase N terminus"]]},{"id":"NCBITaxon:13243","l":"Rarobacter faecitabidus","na":5,"nb":1,"a":[["water-body-envo-00000063.html","water body"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["TED%3AAF-A0A542ZUH8-F1-model_v4_TED03","TED novel fold AF-A0A542ZUH8-F1-model_v4_TED03"]]},{"id":"NCBITaxon:135569","l":"Helicobacter apodemus","na":5,"nb":1,"a":[["cecum-mucosa-bto-0000213.html","cecum mucosa"],["epithelium-bto-0000416.html","epithelium"],["ht-29-cell-bto-0000182.html","HT-29 cell"],["lymphoid-tissue-bto-0000753.html","lymphoid tissue"],["mucosa-bto-0000886.html","mucosa"]],"b":[["TED%3AAF-A0A4U8UFG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8UFG8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1356854","l":"Alicyclobacillus acidoterrestris (strain ATCC 49025 / DSM 3922 / CIP 106132 / NCIMB 13137 / GD3B)","na":1,"nb":5,"a":[["fruit-juice-bto-0004057.html","fruit juice"]],"b":[["Pfam%3APF22202","CRISPR-associated endonuclease C2c1 first helical domain"],["Pfam%3APF22172","CRISPR-associated endonuclease C2c1 second helical domain"],["Pfam%3APF22077","CRISPR-associated endonuclease C2c1 Nuc-II domain"],["Pfam%3APF22126","C2c1 CRISPR-Cas endonuclease, RuvC-like domain"],["Pfam%3APF22204","CRISPR-associated endonuclease C2c1, wedge domain, second region"]]},{"id":"NCBITaxon:1363","l":"Lactococcus garvieae","na":5,"nb":1,"a":[["animal-house-envo-00003040.html","animal house"],["gall-bladder-bto-0000493.html","gall bladder"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["geographic-feature-envo-00000000.html","geographic feature"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["TED%3AAF-A0A6L2ZWS4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L2ZWS4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:155077","l":"Cellvibrio japonicus","na":1,"nb":5,"a":[["compost-envo-00002170.html","compost"]],"b":[["Pfam%3APF02013","Cellulose or protein binding domain"],["Pfam%3APF03426","Carbohydrate binding domain (family 15)"],["Pfam%3APF16841","Ca-dependent carbohydrate-binding module xylan-binding"],["Pfam%3APF00331","Glycosyl hydrolase family 10"],["PROSITE%3APS00591","Glycosyl hydrolases family 10 (GH10) active site"]]},{"id":"NCBITaxon:1778","l":"Mycobacterium gordonae","na":5,"nb":1,"a":[["fibroblast-bto-0000452.html","fibroblast"],["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["kidney-bto-0000671.html","kidney"],["spleen-bto-0001281.html","spleen"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["TED%3AAF-A0A7D6E392-F1-model_v4_TED02","TED novel fold AF-A0A7D6E392-F1-model_v4_TED02"]]},{"id":"NCBITaxon:183","l":"Leptonema illini","na":1,"nb":5,"a":[["mud-envo-01000001.html","mud"]],"b":[["TED%3AAF-A0A833GYM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A833GYM6-F1-model_v4_TED01"],["TED%3AAF-A0A833GZG7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A833GZG7-F1-model_v4_TED01"],["TED%3AAF-A0A833H0U1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A833H0U1-F1-model_v4_TED01"],["TED%3AAF-A0A833H0U1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A833H0U1-F1-model_v4_TED02"],["TED%3AAF-A0A833LYP2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A833LYP2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1861","l":"Geodermatophilus obscurus","na":5,"nb":1,"a":[["desert-sand-envo-00005800.html","desert sand"],["tropical-envo-01000204.html","tropical"],["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["TED%3AAF-A0A1M7SWB5-F1-model_v4_TED02","TED novel fold AF-A0A1M7SWB5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:190486","l":"Xanthomonas axonopodis pv. citri (strain 306)","na":1,"nb":5,"a":[["vascular-tissue-bto-0001432.html","vascular tissue"]],"b":[["IDPO%3A0000003","molten globule"],["IDPO%3A0000012","molten globule to order"],["IDPO%3A0000006","order"],["Pfam%3APF00325","Bacterial regulatory proteins, crp family"],["Pfam%3APF05420","Cellulose synthase operon protein C C-terminus (BCSC_C)"]]},{"id":"NCBITaxon:2026715","l":"Pseudobdellovibrionaceae bacterium","na":1,"nb":5,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2E8I2Q3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E8I2Q3-F1-model_v4_TED02"],["TED%3AAF-A0A2E8I7A7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E8I7A7-F1-model_v4_TED02"],["TED%3AAF-A0A2E1Q4H5-F1-model_v4_TED06","TED novel fold AF-A0A2E1Q4H5-F1-model_v4_TED06"],["TED%3AAF-A0A2E7GIF0-F1-model_v4_TED01","TED novel fold AF-A0A2E7GIF0-F1-model_v4_TED01"],["TED%3AAF-A0A849WIZ5-F1-model_v4_TED01","TED novel fold AF-A0A849WIZ5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2098","l":"Metamycoplasma hominis","na":5,"nb":1,"a":[["egg-food-product-foodon-00001274.html","egg food product"],["amniotic-cavity-bto-0000025.html","amniotic cavity"],["amniotic-fluid-bto-0000068.html","amniotic fluid"],["placenta-bto-0001078.html","placenta"],["reproductive-system-bto-0000081.html","reproductive system"]],"b":[["TED%3AAF-A0A6A8Q3G2-F1-model_v4_TED02","TED novel fold AF-A0A6A8Q3G2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:265072","l":"Methylobacillus flagellatus KT","na":5,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"],["water-body-envo-00000063.html","water body"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["activated-sludge-envo-00002046.html","activated sludge"],["sludge-envo-00002044.html","sludge"]],"b":[["Pfam%3APF10414","Sirohaem synthase dimerisation region"]]},{"id":"NCBITaxon:28038","l":"Latilactobacillus curvatus","na":5,"nb":1,"a":[["research-facility-envo-00000469.html","research facility"],["food-fermented-foodon-00001258.html","food (fermented)"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["TED%3AAF-A0A3R5XZN9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3R5XZN9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:290054","l":"Eubacterium coprostanoligenes","na":5,"nb":1,"a":[["emulsion-envo-00010506.html","emulsion"],["environmental-feature-envo-00002297.html","environmental feature"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["pig-manure-envo-00003860.html","pig manure"],["harbour-envo-00000463.html","harbour"]],"b":[["TED%3AAF-A0A1T4NG17-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1T4NG17-F1-model_v4_TED01"]]},{"id":"NCBITaxon:324602","l":"Chloroflexus aurantiacus (strain ATCC 29366 / DSM 635 / J-10-fl)","na":1,"nb":5,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["Pfam%3APF00127","Copper binding proteins, plastocyanin/azurin family"],["Pfam%3APF02276","Photosynthetic reaction centre cytochrome C subunit"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["PROSITE%3APS00196","Type-1 copper (blue) proteins signature"],["PROSITE%3APS00648","Bacterial ribonuclease P protein component signature"]]},{"id":"NCBITaxon:338969","l":"Rhodoferax ferrireducens T118","na":5,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["petroleum-envo-00002984.html","petroleum"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["Pfam%3APF11154","Protein of unknown function (DUF2934)"]]},{"id":"NCBITaxon:34062","l":"Faucicola osloensis","na":5,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"],["water-scum-envo-00005794.html","water scum"]],"b":[["Pfam%3APF14130","Cap4, dsDNA endonuclease domain"]]},{"id":"NCBITaxon:354242","l":"Campylobacter jejuni subsp. jejuni 81-176","na":5,"nb":1,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["leukocyte-bto-0000751.html","leukocyte"],["lymphocyte-bto-0000775.html","lymphocyte"],["neutrophil-bto-0000130.html","neutrophil"],["small-intestine-bto-0000651.html","small intestine"]],"b":[["PROSITE%3APS01300","RecR protein signature"]]},{"id":"NCBITaxon:384","l":"Rhizobium leguminosarum","na":1,"nb":5,"a":[["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["Pfam%3APF10931","Protein of unknown function (DUF2735)"],["TED%3AAF-A0A1B1C3F3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1B1C3F3-F1-model_v4_TED02"],["TED%3AAF-A0A4Q8XNE1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q8XNE1-F1-model_v4_TED01"],["TED%3AAF-A0A6P0B3F8-F1-model_v4_TED02","TED novel fold AF-A0A6P0B3F8-F1-model_v4_TED02"],["TED%3AAF-A0A6P0DM15-F1-model_v4_TED01","TED novel fold AF-A0A6P0DM15-F1-model_v4_TED01"]]},{"id":"NCBITaxon:388399","l":"Sagittula stellata E-37","na":5,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["oligotrophic-water-envo-00002223.html","oligotrophic water"],["pulp-bto-0001142.html","pulp"],["rosette-bto-0001201.html","rosette"],["scolex-bto-0002305.html","scolex"]],"b":[["TED%3AAF-A3JXK6-F1-model_v4_TED02","TED novel fold AF-A3JXK6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:393480","l":"Fusobacterium polymorphum ATCC 10953","na":5,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"],["forested-area-envo-00000111.html","forested area"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["TED%3AAF-A5TXK7-F1-model_v4_TED01","TED highly-symmetric fold AF-A5TXK7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:40518","l":"Ruminococcus bromii","na":5,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["emulsion-envo-00010506.html","emulsion"],["skin-environment-envo-2100003.html","skin environment"],["animal-habitation-envo-00005803.html","animal habitation"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-A0A412UMQ9-F1-model_v4_TED02","TED novel fold AF-A0A412UMQ9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:410359","l":"Pyrobaculum calidifontis (strain DSM 21063 / JCM 11548 / VA1)","na":1,"nb":5,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF18653","Arcadin 1"],["Pfam%3APF01930","Domain of unknown function DUF83"],["PROSITE%3APS00895","3-hydroxyisobutyrate dehydrogenase signature"],["TED%3AAF-A3MU28-F1-model_v4_TED02","TED highly-symmetric fold AF-A3MU28-F1-model_v4_TED02"],["TED%3AAF-A3MXY3-F1-model_v4_TED01","TED highly-symmetric fold AF-A3MXY3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:4513","l":"Hordeum vulgare","na":1,"nb":5,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["Pfam%3APF20241","Domain of unknown function (DUF6598)"],["PROSITE%3APS00771","Barwin domain signature 1"],["PROSITE%3APS00426","Cereal trypsin/alpha-amylase inhibitors family signature"],["PROSITE%3APS00725","Germin family signature"],["PROSITE%3APS00431","Small hydrophilic plant seed proteins signature"]]},{"id":"NCBITaxon:511","l":"Alcaligenes faecalis","na":1,"nb":5,"a":[["foot-bto-0000476.html","foot"]],"b":[["Pfam%3APF16867","Dimethlysulfonioproprionate lyase"],["Pfam%3APF17645","Arylmalonate decarboxylase"],["Pfam%3APF06433","Methylamine dehydrogenase heavy chain (MADH)"],["TED%3AAF-A0A1Z3MKY1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z3MKY1-F1-model_v4_TED01"],["TED%3AAF-A0A2U2BPX7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2U2BPX7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:716541","l":"Enterobacter cloacae subsp. cloacae (strain ATCC 13047 / DSM 30054 / NBRC 13535 / NCTC 10005 / WDCM 00083 / NCDC 279-56)","na":1,"nb":5,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Pfam%3APF18228","CdiI N-terminal domain"],["PROSITE%3APS00896","LacY family proton/sugar symporters signature 1"],["PROSITE%3APS00897","LacY family proton/sugar symporters signature 2"],["Pfam%3APF13332","Hemagglutinin repeat"],["Pfam%3APF05860","TPS secretion domain"]]},{"id":"NCBITaxon:747","l":"Pasteurella multocida","na":5,"nb":1,"a":[["bronchus-uberon-0002185.html","bronchus"],["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["finger-bto-0004669.html","finger"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["TED%3AAF-A0A8A8HHD5-F1-model_v4_TED02","TED novel fold AF-A0A8A8HHD5-F1-model_v4_TED02"]]},{"id":"UBERON:0000955","l":"brain","na":5,"nb":1,"a":[["brain-habitatmech-gold-752ac1c5aa.html","Brain"],["brain-habitatmech-gold-6bdd76cda3.html","Brain"],["brain-habitatmech-gold-a220aa6bb0.html","Brain"],["brain-habitatmech-gold-e1c2f5f7d4.html","Brain"],["brain-habitatmech-gold-2e584195fd.html","Brain"]],"b":[["GO%3A0007420","brain development"]]},{"id":"CHEBI:24632","l":"hydrocarbon","na":4,"nb":1,"a":[["hydrocarbon-habitatmech-gold-db79f0142d.html","Hydrocarbon"],["hydrocarbon-habitatmech-gold-3c68e33a11.html","Hydrocarbon"],["hydrocarbon-habitatmech-gold-e77998b825.html","Hydrocarbon"],["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"]],"b":[["TCDB%3A1.B.9","The FadL Outer Membrane Protein (FadL) Family"]]},{"id":"NCBITaxon:100","l":"Ancylobacter aquaticus","na":4,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["groundwater-envo-01001004.html","groundwater"],["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"]],"b":[["TED%3AAF-A0A431PQS4-F1-model_v4_TED01","TED novel fold AF-A0A431PQS4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:102862","l":"Proteus penneri","na":4,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"],["geographic-feature-envo-00000000.html","geographic feature"],["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-A0A0G4Q3D2-F1-model_v4_TED01","TED novel fold AF-A0A0G4Q3D2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:102897","l":"Parafrankia sp. EUN1f","na":4,"nb":1,"a":[["plant-bto-0001481.html","plant"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["TED%3AAF-D3D2N4-F1-model_v4_TED01","TED novel fold AF-D3D2N4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1029718","l":"Candidatus Arthromitus sp. SFB-mouse-Japan","na":4,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["lymphocyte-bto-0000775.html","lymphocyte"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["TED%3AAF-F9VKB6-F1-model_v4_TED01","TED novel fold AF-F9VKB6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:105612","l":"Dellaglioa algida","na":4,"nb":1,"a":[["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biotope-envo-00002036.html","biotope"],["organic-feature-envo-01000159.html","organic feature"]],"b":[["TED%3AAF-A0A5C6M980-F1-model_v4_TED02","TED novel fold AF-A0A5C6M980-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1121132","l":"Butyrivibrio hungatei DSM 14810","na":4,"nb":1,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"],["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["TED%3AAF-A0A1M7SJD3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M7SJD3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121301","l":"Paramaledivibacter caminithermalis DSM 15212","na":4,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"],["trough-envo-00000499.html","trough"]],"b":[["TED%3AAF-A0A1M6LSW1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M6LSW1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121324","l":"Peptoclostridium litorale DSM 5388","na":4,"nb":1,"a":[["inlet-envo-00000475.html","inlet"],["ocean-envo-00000015.html","ocean"],["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"]],"b":[["TED%3AAF-A0A069RDW3-F1-model_v4_TED01","TED novel fold AF-A0A069RDW3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121449","l":"Paucidesulfovibrio gracilis DSM 16080","na":4,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"],["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["TED%3AAF-A0A1T4W1V7-F1-model_v4_TED03","TED novel fold AF-A0A1T4W1V7-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1121451","l":"Maridesulfovibrio hydrothermalis AM13 = DSM 14728","na":4,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["undersea-feature-envo-00000104.html","undersea feature"],["trough-envo-00000499.html","trough"]],"b":[["TED%3AAF-L0RH10-F1-model_v4_TED01","TED novel fold AF-L0RH10-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1122195","l":"Marinitoga hydrogenitolerans DSM 16785","na":4,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["ridge-envo-00000283.html","ridge"],["trough-envo-00000499.html","trough"]],"b":[["Pfam%3APF22362","Argonaute, middle domain, bacteria"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":4,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["TED%3AAF-A0A132HLN2-F1-model_v4_TED01","TED novel fold AF-A0A132HLN2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:122587","l":"Neisseria meningitidis serogroup A / serotype 4A (strain DSM 15465 / Z2491)","na":1,"nb":4,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"]],"b":[["Pfam%3APF17850","CysA C-terminal regulatory domain"],["Pfam%3APF22443","FbpC-like, regulatory domain"],["Pfam%3APF05159","Capsule polysaccharide biosynthesis protein"],["Pfam%3APF10077","Uncharacterized protein conserved in bacteria (DUF2314)"]]},{"id":"NCBITaxon:1335","l":"Streptococcus equinus","na":4,"nb":1,"a":[["foregut-bto-0000507.html","foregut"],["stomach-bto-0001307.html","stomach"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["TED%3AAF-A0A1V0GLT7-F1-model_v4_TED01","TED novel fold AF-A0A1V0GLT7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:137584","l":"Thalassomonas viridans","na":1,"nb":4,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["TED%3AAF-A0A0D8CPR2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D8CPR2-F1-model_v4_TED01"],["TED%3AAF-A0A0D8CLZ9-F1-model_v4_TED01","TED novel fold AF-A0A0D8CLZ9-F1-model_v4_TED01"],["TED%3AAF-A0A0D8D8E8-F1-model_v4_TED02","TED novel fold AF-A0A0D8D8E8-F1-model_v4_TED02"],["TED%3AAF-A0A0D8DAF2-F1-model_v4_TED01","TED novel fold AF-A0A0D8DAF2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:148604","l":"Limosilactobacillus ingluviei","na":4,"nb":1,"a":[["animal-house-envo-00003040.html","animal house"],["organic-waste-material-envo-00002873.html","organic waste material"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["TED%3AAF-A0A0R2GUF0-F1-model_v4_TED01","TED novel fold AF-A0A0R2GUF0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1501","l":"Clostridium pasteurianum","na":1,"nb":4,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["Pfam%3APF22609","Iron hydrogenase 1-like, iron-sulfur centre-binding domain"],["Pfam%3APF09582","Iron only nitrogenase protein AnfO (AnfO_nitrog)"],["PROSITE%3APS00746","NifH/frxC family signature 1"],["PROSITE%3APS00699","Nitrogenases component 1 alpha and beta subunits signature 1"]]},{"id":"NCBITaxon:152142","l":"Mycolicibacterium holsaticum","na":4,"nb":1,"a":[["fibroblast-bto-0000452.html","fibroblast"],["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["kidney-bto-0000671.html","kidney"],["spleen-bto-0001281.html","spleen"]],"b":[["TED%3AAF-A0A1E3RVW1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E3RVW1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:160492","l":"Xylella fastidiosa (strain 9a5c)","na":1,"nb":4,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["Pfam%3APF21142","Bacterial alpha-2 macroglobulin MG2 domain"],["Pfam%3APF04273","Beta-lactamase hydrolase-like protein, phosphatase-like domain"],["Pfam%3APF17970","Bacterial Alpha-2-macroglobulin MG1 domain"],["Pfam%3APF20398","Family of unknown function (DUF6691)"]]},{"id":"NCBITaxon:1622","l":"Ligilactobacillus murinus","na":4,"nb":1,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"],["animal-litter-envo-00002191.html","animal litter"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["TED%3AAF-A0A4S2E8S9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4S2E8S9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:163","l":"Treponema bryantii","na":4,"nb":1,"a":[["stomach-bto-0001307.html","stomach"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["intestine-environment-envo-2100002.html","intestine environment"],["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["TED%3AAF-A0A1I3JLL1-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A1I3JLL1-F1-model_v4_TED05"]]},{"id":"NCBITaxon:1710","l":"Cellulosimicrobium cellulans","na":4,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"],["oil-spill-envo-00002061.html","oil spill"],["peat-soil-envo-00005774.html","peat soil"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["Pfam%3APF16483","Beta-1,3-glucanase"]]},{"id":"NCBITaxon:1712410","l":"Thermanaerosceptrum fracticalcis","na":4,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["ocean-trench-envo-00000275.html","ocean trench"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["trough-envo-00000499.html","trough"]],"b":[["TED%3AAF-A0A7G6E021-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7G6E021-F1-model_v4_TED02"]]},{"id":"NCBITaxon:172045","l":"Elizabethkingia miricola","na":4,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["hindgut-bto-0000510.html","hindgut"],["wood-bto-0005516.html","wood"],["environmental-system-envo-01000254.html","environmental system"]],"b":[["TED%3AAF-A0A0D5BKG2-F1-model_v4_TED01","TED novel fold AF-A0A0D5BKG2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1836","l":"Saccharopolyspora erythraea","na":1,"nb":4,"a":[["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["Pfam%3APF08990","Erythronolide synthase docking domain"],["Pfam%3APF09277","Erythronolide synthase, docking"],["Pfam%3APF12728","Helix-turn-helix domain"],["Pfam%3APF12307","Protein of unknown function (DUF3631)"]]},{"id":"NCBITaxon:1871086","l":"Brevundimonas sp.","na":1,"nb":4,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["TED%3AAF-A0A2W6RYY6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2W6RYY6-F1-model_v4_TED03"],["TED%3AAF-A0A326KNM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A326KNM4-F1-model_v4_TED01"],["TED%3AAF-A0A521NPA0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521NPA0-F1-model_v4_TED01"],["TED%3AAF-A0A519PPD7-F1-model_v4_TED01","TED novel fold AF-A0A519PPD7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":1,"nb":4,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["Pfam%3APF16861","Carbamoyltransferase C-terminus"],["Pfam%3APF02543","Carbamoyltransferase N-terminus"],["Pfam%3APF01960","ArgJ family"],["Pfam%3APF07467","Beta-lactamase inhibitor (BLIP)"]]},{"id":"NCBITaxon:1930","l":"Streptomyces scabiei","na":4,"nb":1,"a":[["a10-cell-bto-0002196.html","A10 cell"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["TED%3AAF-A0A086GLG9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A086GLG9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:207559","l":"Oleidesulfovibrio alaskensis (strain ATCC BAA-1058 / DSM 17464 / G20)","na":1,"nb":4,"a":[["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["Pfam%3APF13353","4Fe-4S single cluster domain"],["Pfam%3APF01228","Glycine radical"],["PROSITE%3APS00850","Glycine radical domain signature"],["PROSITE%3APS01087","Radical activating enzymes signature"]]},{"id":"NCBITaxon:2209","l":"Methanosarcina mazei","na":4,"nb":1,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["sludge-envo-00002044.html","sludge"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["TED%3AAF-A0A0F8CQX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F8CQX7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:224914","l":"Brucella melitensis biotype 1 (strain ATCC 23456 / CCUG 17765 / NCTC 10094 / 16M)","na":1,"nb":4,"a":[["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["Pfam%3APF03625","Domain of unknown function DUF302"],["Pfam%3APF07559","Flagellar basal body protein FlaE D2 domain"],["Pfam%3APF07536","HWE histidine kinase"],["Pfam%3APF06776","Invasion associated locus B (IalB) protein"]]},{"id":"NCBITaxon:224915","l":"Buchnera aphidicola subsp. Baizongia pistaciae (strain Bp)","na":1,"nb":4,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Pfam%3APF26016","Exonuclease I C-terminal domain"],["Pfam%3APF08411","Exonuclease I SH3-like domain"],["Pfam%3APF09849","Uncharacterized protein conserved in bacteria (DUF2076)"],["Pfam%3APF06481","COX Aromatic Rich Motif"]]},{"id":"NCBITaxon:269796","l":"Rhodospirillum rubrum (strain ATCC 11170 / ATH 1.1.1 / DSM 467 / LMG 4362 / NCIMB 8255 / S1)","na":1,"nb":4,"a":[["joint-bto-0001686.html","joint"]],"b":[["Pfam%3APF24931","ACR9-like, ACT-like domain"],["Pfam%3APF20543","N2-fixation sustaining protein CowN"],["Pfam%3APF22277","EncFtn-like"],["TED%3AAF-Q2RML2-F1-model_v4_TED01","TED highly-symmetric fold AF-Q2RML2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:272563","l":"Clostridioides difficile (strain 630)","na":1,"nb":4,"a":[["central-nervous-system-bto-0000227.html","central nervous system"]],"b":[["Pfam%3APF07737","Anthrax toxin lethal factor, N- and C-terminal domain"],["Pfam%3APF11155","Domain of unknown function (DUF2935)"],["Pfam%3APF06249","Ethanolamine utilisation protein EutQ"],["Pfam%3APF12544","Lysine-2,3-aminomutase"]]},{"id":"NCBITaxon:272620","l":"Klebsiella pneumoniae subsp. pneumoniae (strain ATCC 700721 / MGH 78578)","na":1,"nb":4,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Pfam%3APF04336","Acyl carrier protein phosphodiesterase"],["Pfam%3APF17948","DnaT DNA-binding domain"],["PROSITE%3APS00839","Uroporphyrin-III C-methyltransferase signature 1"],["PROSITE%3APS00840","Uroporphyrin-III C-methyltransferase signature 2"]]},{"id":"NCBITaxon:28450","l":"Burkholderia pseudomallei","na":1,"nb":4,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"]],"b":[["Pfam%3APF18664","CdiA C-terminal tRNase domain"],["Pfam%3APF12106","Colicin E5 ribonuclease domain"],["Pfam%3APF11480","Colicin-E5 Imm protein"],["Pfam%3APF13332","Hemagglutinin repeat"]]},{"id":"NCBITaxon:29313","l":"Mycobacterium shimoidei","na":4,"nb":1,"a":[["fibroblast-bto-0000452.html","fibroblast"],["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["kidney-bto-0000671.html","kidney"],["spleen-bto-0001281.html","spleen"]],"b":[["TED%3AAF-A0A1E3TGG0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1E3TGG0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:29345","l":"Sedimentibacter hydroxybenzoicus","na":4,"nb":1,"a":[["mud-envo-01000001.html","mud"],["oil-spill-envo-00002061.html","oil spill"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["Pfam%3APF26358","EcdD/BsdD phenolic detoxification"]]},{"id":"NCBITaxon:29494","l":"Vibrio furnissii","na":1,"nb":4,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["Pfam%3APF17957","Bacterial Ig domain"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"],["Pfam%3APF02839","Carbohydrate-binding module family 5/12"],["Pfam%3APF06483","Chitinase C"]]},{"id":"NCBITaxon:301","l":"Pseudomonas oleovorans","na":1,"nb":4,"a":[["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["PROSITE%3APS00202","Rubredoxin signature"],["TED%3AAF-A0A2W5VSG0-F1-model_v4_TED02","TED novel fold AF-A0A2W5VSG0-F1-model_v4_TED02"],["TED%3AAF-A0A379JMN0-F1-model_v4_TED01","TED novel fold AF-A0A379JMN0-F1-model_v4_TED01"],["TED%3AAF-A0A379PLI0-F1-model_v4_TED03","TED novel fold AF-A0A379PLI0-F1-model_v4_TED03"]]},{"id":"NCBITaxon:324057","l":"Paenibacillus sp. JDR-2","na":4,"nb":1,"a":[["vasculature-uberon-0002049.html","vasculature"],["wood-envo-00002040.html","wood"],["part-of-plant-habitatmech-madin-25325947e2.html","part of plant"],["village-biome-envo-01000246.html","village biome"]],"b":[["Pfam%3APF06452","Carbohydrate family 9 binding domain-like"]]},{"id":"NCBITaxon:326423","l":"Bacillus velezensis FZB42","na":1,"nb":4,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["Pfam%3APF21607","[Acyl-carrier-protein] S-malonyltransferase, inserted helical domain"],["Pfam%3APF21996","Histidyl-tRNA synthetase HisZ, C-terminal domain"],["Pfam%3APF07293","Protein of unknown function (DUF1450)"],["Pfam%3APF12227","Protein of unknown function (DUF3603)"]]},{"id":"NCBITaxon:362","l":"Agrobacterium radiobacter","na":4,"nb":1,"a":[["plant-gall-po-0025626.html","plant gall"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["Pfam%3APF04909","Amidohydrolase"]]},{"id":"NCBITaxon:391","l":"Rhizobium sp.","na":4,"nb":1,"a":[["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["paddy-ricefield-habitatmech-bacdive-6e3154acd8.html","Paddy-Ricefield"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["TED%3AAF-A0A353G134-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A353G134-F1-model_v4_TED01"]]},{"id":"NCBITaxon:395019","l":"Burkholderia multivorans ATCC 17616","na":4,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"],["desert-sand-envo-00005800.html","desert sand"],["orchard-envo-00000115.html","orchard"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["TED%3AAF-A0A0H3KMX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0H3KMX2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:410358","l":"Methanocorpusculum labreanum (strain ATCC 43576 / DSM 4855 / Z)","na":1,"nb":4,"a":[["joint-bto-0001686.html","joint"]],"b":[["Pfam%3APF27030","AbpE bacteria"],["Pfam%3APF01864","CDP-archaeol synthase"],["Pfam%3APF01891","Cobalt uptake substrate-specific transmembrane region"],["TED%3AAF-A2SPH3-F1-model_v4_TED02","TED highly-symmetric fold AF-A2SPH3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:43","l":"Cystobacter fuscus","na":1,"nb":4,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"]],"b":[["TED%3AAF-A0A250J1A4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J1A4-F1-model_v4_TED01"],["TED%3AAF-A0A250J4G5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J4G5-F1-model_v4_TED01"],["TED%3AAF-A0A250J8W0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J8W0-F1-model_v4_TED01"],["TED%3AAF-A0A250J3K5-F1-model_v4_TED03","TED novel fold AF-A0A250J3K5-F1-model_v4_TED03"]]},{"id":"NCBITaxon:452863","l":"Pseudarthrobacter chlorophenolicus (strain ATCC 700700 / DSM 12829 / CIP 107037 / JCM 12360 / KCTC 9906 / NCIMB 13794 / A6)","na":1,"nb":4,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["TED%3AAF-B8HI43-F1-model_v4_TED02","TED highly-symmetric fold AF-B8HI43-F1-model_v4_TED02"],["TED%3AAF-B8HIA6-F1-model_v4_TED01","TED highly-symmetric fold AF-B8HIA6-F1-model_v4_TED01"],["TED%3AAF-B8HIQ6-F1-model_v4_TED02","TED highly-symmetric fold AF-B8HIQ6-F1-model_v4_TED02"],["TED%3AAF-B8HHK3-F1-model_v4_TED01","TED novel fold AF-B8HHK3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:46245","l":"Drosophila pseudoobscura pseudoobscura","na":1,"nb":4,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"]],"b":[["Pfam%3APF23724","Caspase-8, second domain"],["Pfam%3APF23725","Caspase-8, N-terminal domain"],["Pfam%3APF22123","Exuperantia RNAse H-like domain"],["Pfam%3APF23757","Insect HPS5 TPR domain"]]},{"id":"NCBITaxon:485913","l":"Ktedonobacter racemifer DSM 44963","na":1,"nb":4,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"]],"b":[["TED%3AAF-D6U145-F1-model_v4_TED01","TED highly-symmetric fold AF-D6U145-F1-model_v4_TED01"],["TED%3AAF-D6U380-F1-model_v4_TED01","TED highly-symmetric fold AF-D6U380-F1-model_v4_TED01"],["TED%3AAF-D6TNQ7-F1-model_v4_TED02","TED novel fold AF-D6TNQ7-F1-model_v4_TED02"],["TED%3AAF-D6U8N4-F1-model_v4_TED02","TED novel fold AF-D6U8N4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:512","l":"Alcaligenes sp","na":1,"nb":4,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["Pfam%3APF26354","N,N-dimethylformamidase alpha subunit"],["Pfam%3APF20254","N,N-dimethylformamidase beta subunit-like, C-terminal"],["Pfam%3APF11606","Family 31 carbohydrate binding protein"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"]]},{"id":"NCBITaxon:575540","l":"Isosphaera pallida ATCC 43644","na":4,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["agricultural-soil-envo-00002259.html","agricultural soil"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-E8R507-F1-model_v4_TED01","TED highly-symmetric fold AF-E8R507-F1-model_v4_TED01"]]},{"id":"NCBITaxon:644281","l":"Methanocaldococcus sp. FS406-22","na":4,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"],["volcano-envo-00000247.html","volcano"]],"b":[["TED%3AAF-D3S6J5-F1-model_v4_TED01","TED highly-symmetric fold AF-D3S6J5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":1,"nb":4,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["PROSITE%3APS00949","Autoinducer synthase family signature"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"],["PROSITE%3APS00607","cAMP phosphodiesterases class-II signature"],["TED%3AAF-A0A844NWZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A844NWZ1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:7244","l":"Drosophila virilis","na":1,"nb":4,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"]],"b":[["Pfam%3APF14786","Tube Death domain"],["Pfam%3APF05836","Chorion protein S16"],["Pfam%3APF13428","Tetratricopeptide repeat"],["TED%3AAF-B4LEB1-F1-model_v4_TED02","TED novel fold AF-B4LEB1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:888845","l":"Minicystis rosea","na":1,"nb":4,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["TED%3AAF-A0A1L6LHU6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6LHU6-F1-model_v4_TED01"],["TED%3AAF-A0A1L6LWQ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6LWQ0-F1-model_v4_TED01"],["TED%3AAF-A0A1L6L181-F1-model_v4_TED02","TED novel fold AF-A0A1L6L181-F1-model_v4_TED02"],["TED%3AAF-A0A1L6LWI8-F1-model_v4_TED02","TED novel fold AF-A0A1L6LWI8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:935293","l":"Yersinia entomophaga","na":1,"nb":4,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["Pfam%3APF05785","Rho-activating domain of cytotoxic necrotizing factor"],["Pfam%3APF20220","ABC toxin N-terminal region"],["Pfam%3APF18413","Neuraminidase-like domain"],["Pfam%3APF12256","Insecticide toxin TcdB middle/N-terminal region"]]},{"id":"UBERON:0001045","l":"","na":4,"nb":1,"a":[["midgut-habitatmech-gold-5c1b0d44e2.html","Midgut"],["midgut-habitatmech-gold-31577394a0.html","Midgut"],["midgut-habitatmech-gold-67c565f695.html","Midgut"],["midgut-habitatmech-gold-0307474089.html","Midgut"]],"b":[["GO%3A0007494","midgut development"]]},{"id":"UBERON:0001836","l":"","na":4,"nb":1,"a":[["saliva-habitatmech-gold-4c19ae6894.html","Saliva"],["saliva-habitatmech-gold-1e04aaebba.html","Saliva"],["saliva-habitatmech-gold-68875fbeda.html","Saliva"],["saliva-habitatmech-gold-a747c6ab38.html","Saliva"]],"b":[["GO%3A0046541","saliva secretion"]]},{"id":"NCBITaxon:105841","l":"Anaerostipes caccae","na":3,"nb":1,"a":[["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["emulsion-envo-00010506.html","emulsion"],["organic-feature-envo-01000159.html","organic feature"]],"b":[["TED%3AAF-A0A6N2WKG2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N2WKG2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1090322","l":"Methanolobus tindarius DSM 2278","na":1,"nb":3,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["TED%3AAF-W9DQM0-F1-model_v4_TED03","TED highly-symmetric fold AF-W9DQM0-F1-model_v4_TED03"],["TED%3AAF-W9DMY0-F1-model_v4_TED01","TED novel fold AF-W9DMY0-F1-model_v4_TED01"],["TED%3AAF-W9DNB8-F1-model_v4_TED01","TED novel fold AF-W9DNB8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1120927","l":"Acinetobacter tandoii DSM 14970 = CIP 107469","na":3,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["TED%3AAF-R9BEH0-F1-model_v4_TED04","TED highly-symmetric fold AF-R9BEH0-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1120928","l":"Acinetobacter tjernbergiae DSM 14971 = CIP 107465","na":3,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["TED%3AAF-V2W927-F1-model_v4_TED01","TED highly-symmetric fold AF-V2W927-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121391","l":"Desulfacinum infernum DSM 9756","na":3,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["TED%3AAF-A0A1M5CF65-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M5CF65-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121393","l":"Desulfatibacillum alkenivorans DSM 16219","na":3,"nb":1,"a":[["sewage-plant-envo-00003043.html","sewage plant"],["waste-water-envo-00002001.html","waste water"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["TED%3AAF-A0A1M6GB75-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M6GB75-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121950","l":"Hespellia stercorisuis DSM 15480","na":3,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["fecal-environment-envo-01001029.html","fecal environment"],["waste-material-envo-00002264.html","waste material"]],"b":[["TED%3AAF-A0A1M6UMY1-F1-model_v4_TED01","TED novel fold AF-A0A1M6UMY1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1122133","l":"Kaistia soli DSM 19436","na":3,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["wetland-area-envo-00000043.html","wetland area"]],"b":[["TED%3AAF-A0A1M5DFE2-F1-model_v4_TED01","TED novel fold AF-A0A1M5DFE2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1123012","l":"Pseudobutyrivibrio xylanivorans DSM 14809","na":3,"nb":1,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"],["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"]],"b":[["TED%3AAF-A0A1M6KN30-F1-model_v4_TED01","TED novel fold AF-A0A1M6KN30-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1125630","l":"Klebsiella pneumoniae subsp. pneumoniae (strain HS11286)","na":1,"nb":3,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["Pfam%3APF16527","Two-component sensor protein CpxA, periplasmic domain"],["Pfam%3APF03883","Peroxide stress protein YaaA"],["PROSITE%3APS01081","TetR-type HTH domain signature"]]},{"id":"NCBITaxon:117681","l":"Pseudomonas gingeri","na":3,"nb":1,"a":[["lake-envo-00000020.html","lake"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"]],"b":[["TED%3AAF-A0A7Y7X9U2-F1-model_v4_TED01","TED novel fold AF-A0A7Y7X9U2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:119602","l":"Streptococcus dysgalactiae subsp. equisimilis","na":3,"nb":1,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["animal-manure-envo-00003031.html","animal manure"]],"b":[["TED%3AAF-A0A5M4CWR2-F1-model_v4_TED02","TED novel fold AF-A0A5M4CWR2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1267423","l":"Roseivirga pacifica","na":1,"nb":3,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["TED%3AAF-A0A1I0MEP5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I0MEP5-F1-model_v4_TED02"],["TED%3AAF-A0A1I0RG98-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I0RG98-F1-model_v4_TED01"],["TED%3AAF-A0A4D7JNA0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4D7JNA0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1295009","l":"Methanomassiliicoccus intestinalis (strain Issoire-Mx1)","na":1,"nb":3,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["TED%3AAF-R9T6Q3-F1-model_v4_TED04","TED highly-symmetric fold AF-R9T6Q3-F1-model_v4_TED04"],["TED%3AAF-R9TAZ5-F1-model_v4_TED01","TED highly-symmetric fold AF-R9TAZ5-F1-model_v4_TED01"],["TED%3AAF-R9T6T6-F1-model_v4_TED01","TED novel fold AF-R9T6T6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1298856","l":"Sphingomonas sp. URHD0007","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["TED%3AAF-A0A2U1FWJ9-F1-model_v4_TED03","TED novel fold AF-A0A2U1FWJ9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1329250","l":"Weissella oryzae (strain DSM 25784 / JCM 18191 / LMG 30913 / SG25)","na":1,"nb":3,"a":[["caryopsis-bto-0000208.html","caryopsis"]],"b":[["Pfam%3APF26322","Botulinum-like neurotoxin Wo, C-terminal beta-trefoil domain"],["Pfam%3APF26321","Botulinum-like neurotoxin Wo, concanavalin A-like domain"],["TED%3AAF-A0A069CU70-F1-model_v4_TED02","TED novel fold AF-A0A069CU70-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1353","l":"Enterococcus gallinarum","na":3,"nb":1,"a":[["foregut-bto-0000507.html","foregut"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["Pfam%3APF01757","Acyltransferase domain"]]},{"id":"NCBITaxon:137591","l":"Weissella cibaria","na":3,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["epithelial-cell-bto-0000414.html","epithelial cell"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["TED%3AAF-A0A0D1LFQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D1LFQ3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:137722","l":"Azospirillum sp. B510","na":3,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["TED%3AAF-D3P3H1-F1-model_v4_TED02","TED highly-symmetric fold AF-D3P3H1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1503","l":"Gottschalkia purinilytica","na":3,"nb":1,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"],["sludge-envo-00002044.html","sludge"]],"b":[["Pfam%3APF07355","Glycine/sarcosine/betaine reductase selenoprotein B (GRDB)"]]},{"id":"NCBITaxon:1534","l":"Clostridium kluyveri","na":3,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"],["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"]],"b":[["TED%3AAF-A0A1L5FEG9-F1-model_v4_TED01","TED novel fold AF-A0A1L5FEG9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1552123","l":"Listeria booriae","na":1,"nb":3,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["TED%3AAF-A0A7X0TLR3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X0TLR3-F1-model_v4_TED01"],["TED%3AAF-A0A841XX79-F1-model_v4_TED03","TED novel fold AF-A0A841XX79-F1-model_v4_TED03"],["TED%3AAF-A0A842AXH7-F1-model_v4_TED01","TED novel fold AF-A0A842AXH7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:158","l":"Treponema denticola","na":3,"nb":1,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["archeological-site-envo-00000564.html","archeological site"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["TED%3AAF-A0A125RME2-F1-model_v4_TED02","TED novel fold AF-A0A125RME2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1588","l":"Lentilactobacillus hilgardii","na":3,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["TED%3AAF-A0A6G9Q2H1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6G9Q2H1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:169760","l":"Paenibacillus stellifer","na":3,"nb":1,"a":[["factory-envo-01000536.html","factory"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["TED%3AAF-A0A089LNP8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A089LNP8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1724","l":"Corynebacterium renale","na":3,"nb":1,"a":[["water-body-envo-00000063.html","water body"],["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["TED%3AAF-A0A2A9DLH1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A9DLH1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":1,"nb":3,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["Pfam%3APF03069","Acetamidase/Formamidase family"],["PROSITE%3APS00818","Dps protein family signature 1"],["Pfam%3APF13810","Domain of unknown function (DUF4185)"]]},{"id":"NCBITaxon:178306","l":"Pyrobaculum aerophilum (strain ATCC 51768 / DSM 7523 / JCM 9630 / CIP 104966 / NBRC 100827 / IM2)","na":1,"nb":3,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF09171","N-glycosylase/DNA lyase"],["Pfam%3APF10432","Bacterial phospho-glucose isomerase C-terminal SIS domain"],["TED%3AAF-Q8ZWY1-F1-model_v4_TED04","TED novel fold AF-Q8ZWY1-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1831","l":"","na":1,"nb":3,"a":[["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["Pfam%3APF14525","AraC-binding-like domain"],["Pfam%3APF01613","Flavin reductase like domain"],["TED%3AAF-A0A7X7SF64-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X7SF64-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1872119","l":"Acidobacterium sp.","na":3,"nb":1,"a":[["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"],["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["TED%3AAF-A0A2G4JIL1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2G4JIL1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1872578","l":"Aquabacterium sp.","na":1,"nb":3,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["TED%3AAF-A0A521ZRM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521ZRM4-F1-model_v4_TED01"],["TED%3AAF-A0A521ZL87-F1-model_v4_TED04","TED novel fold AF-A0A521ZL87-F1-model_v4_TED04"],["TED%3AAF-A0A5C8BIL8-F1-model_v4_TED02","TED novel fold AF-A0A5C8BIL8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1874361","l":"Idiomarina sp.","na":3,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"],["saline-water-body-envo-01001319.html","saline water body"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["TED%3AAF-A0A2E9H521-F1-model_v4_TED01","TED novel fold AF-A0A2E9H521-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1882831","l":"Verrucomicrobium sp. GAS474","na":1,"nb":3,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["TED%3AAF-A0A1H2GE34-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H2GE34-F1-model_v4_TED01"],["TED%3AAF-A0A1H2GVJ7-F1-model_v4_TED04","TED novel fold AF-A0A1H2GVJ7-F1-model_v4_TED04"],["TED%3AAF-A0A1H2HH15-F1-model_v4_TED02","TED novel fold AF-A0A1H2HH15-F1-model_v4_TED02"]]},{"id":"NCBITaxon:188906","l":"Jannaschia helgolandensis","na":3,"nb":1,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["TED%3AAF-A0A1H7MIC2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H7MIC2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:188908","l":"Oleispira antarctica","na":3,"nb":1,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A1Y5HYG0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y5HYG0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:189518","l":"Leptospira interrogans serovar Lai str. 56601","na":3,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF27429","LB_356"]]},{"id":"NCBITaxon:190655","l":"Legionella busanensis","na":1,"nb":3,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["TED%3AAF-A0A378JRR1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A378JRR1-F1-model_v4_TED01"],["TED%3AAF-A0A378JH21-F1-model_v4_TED02","TED novel fold AF-A0A378JH21-F1-model_v4_TED02"],["TED%3AAF-A0A378JIY5-F1-model_v4_TED01","TED novel fold AF-A0A378JIY5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1916082","l":"Alteromonadaceae bacterium","na":1,"nb":3,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2E5MKL5-F1-model_v4_TED03","TED novel fold AF-A0A2E5MKL5-F1-model_v4_TED03"],["TED%3AAF-A0A7Y6ZTD4-F1-model_v4_TED02","TED novel fold AF-A0A7Y6ZTD4-F1-model_v4_TED02"],["TED%3AAF-A0A7Y6ZTV9-F1-model_v4_TED01","TED novel fold AF-A0A7Y6ZTV9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1970199","l":"Sorangiineae bacterium NIC37A 2","na":1,"nb":3,"a":[["compost-envo-00002170.html","compost"]],"b":[["TED%3AAF-A0A1W9QHW9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W9QHW9-F1-model_v4_TED01"],["TED%3AAF-A0A1W9Q7E2-F1-model_v4_TED02","TED novel fold AF-A0A1W9Q7E2-F1-model_v4_TED02"],["TED%3AAF-A0A1W9QHC1-F1-model_v4_TED04","TED novel fold AF-A0A1W9QHC1-F1-model_v4_TED04"]]},{"id":"NCBITaxon:198804","l":"Buchnera aphidicola subsp. Schizaphis graminum (strain Sg)","na":1,"nb":3,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Pfam%3APF09849","Uncharacterized protein conserved in bacteria (DUF2076)"],["Pfam%3APF09976","Tetratricopeptide repeat-like domain"],["Pfam%3APF13371","Tetratricopeptide repeat"]]},{"id":"NCBITaxon:199","l":"Campylobacter concisus","na":1,"nb":3,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["TED%3AAF-A0A7S9RBE4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S9RBE4-F1-model_v4_TED03"],["TED%3AAF-A0A1Y5MKZ8-F1-model_v4_TED01","TED novel fold AF-A0A1Y5MKZ8-F1-model_v4_TED01"],["TED%3AAF-A0A7S9X6B9-F1-model_v4_TED01","TED novel fold AF-A0A7S9X6B9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:216816","l":"Bifidobacterium longum","na":3,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"],["egg-food-product-foodon-00001274.html","egg food product"],["juvenile-bto-0002168.html","juvenile"]],"b":[["TED%3AAF-A0A413ACI9-F1-model_v4_TED01","TED novel fold AF-A0A413ACI9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2283","l":"Acidianus ambivalens","na":1,"nb":3,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["Pfam%3APF07680","TQO small subunit DoxA"],["Pfam%3APF04173","TQO small subunit DoxD"],["TED%3AAF-O57695-F1-model_v4_TED01","TED highly-symmetric fold AF-O57695-F1-model_v4_TED01"]]},{"id":"NCBITaxon:228410","l":"Nitrosomonas europaea ATCC 19718","na":1,"nb":3,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["Pfam%3APF02461","Ammonia monooxygenase"],["Pfam%3APF13435","Cytochrome c554 and c-prime"],["TED%3AAF-Q82SR8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q82SR8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:232991","l":"","na":3,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"],["desert-area-envo-00000097.html","desert area"],["sand-envo-01000017.html","sand"]],"b":[["TED%3AAF-A0A433V699-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A433V699-F1-model_v4_TED01"]]},{"id":"NCBITaxon:235279","l":"Helicobacter hepaticus (strain ATCC 51449 / 3B1)","na":1,"nb":3,"a":[["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"]],"b":[["Pfam%3APF13673","Acetyltransferase (GNAT) domain"],["Pfam%3APF03498","Cytolethal distending toxin A/C domain"],["Pfam%3APF03352","Methyladenine glycosylase"]]},{"id":"NCBITaxon:2371","l":"Xylella fastidiosa","na":3,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"],["water-scum-envo-00005794.html","water scum"]],"b":[["TED%3AAF-A0A1L2B4G6-F1-model_v4_TED02","TED novel fold AF-A0A1L2B4G6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:243243","l":"Mycobacterium avium (strain 104)","na":1,"nb":3,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF13740","ACT domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03710","Glutamate-ammonia ligase adenylyltransferase"]]},{"id":"NCBITaxon:256","l":"Myroides odoratus","na":3,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"]],"b":[["TED%3AAF-A0A378RV66-F1-model_v4_TED01","TED novel fold AF-A0A378RV66-F1-model_v4_TED01"]]},{"id":"NCBITaxon:272560","l":"Burkholderia pseudomallei (strain K96243)","na":1,"nb":3,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF07077","Virulence factor BPSS1818"],["Pfam%3APF11958","Surface attachment protein BPSS1860"],["Pfam%3APF16374","Cycle inhibiting factor (CIF)"]]},{"id":"NCBITaxon:28090","l":"Acinetobacter lwoffii","na":3,"nb":1,"a":[["nectar-bto-0000537.html","nectar"],["pseudostem-bto-0005992.html","pseudostem"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["TED%3AAF-A0A7S9AAV2-F1-model_v4_TED01","TED novel fold AF-A0A7S9AAV2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28111","l":"Bacteroides eggerthii","na":1,"nb":3,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["TED%3AAF-A0A380YHG6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A380YHG6-F1-model_v4_TED01"],["TED%3AAF-A0A380YP67-F1-model_v4_TED01","TED novel fold AF-A0A380YP67-F1-model_v4_TED01"],["TED%3AAF-A0A414M8K0-F1-model_v4_TED04","TED novel fold AF-A0A414M8K0-F1-model_v4_TED04"]]},{"id":"NCBITaxon:290338","l":"Citrobacter koseri (strain ATCC BAA-895 / CDC 4225-83 / SGSC4696)","na":1,"nb":3,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Pfam%3APF03783","Curli production assembly/transport component CsgG"],["Pfam%3APF04269","Protein of unknown function, DUF440"],["Pfam%3APF17874","MalT-like TPR region"]]},{"id":"NCBITaxon:29466","l":"Veillonella parvula","na":3,"nb":1,"a":[["dental-plaque-bto-0000338.html","dental plaque"],["juvenile-bto-0002168.html","juvenile"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["TED%3AAF-A0A134BYG5-F1-model_v4_TED01","TED novel fold AF-A0A134BYG5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:297246","l":"Legionella pneumophila str. Paris","na":3,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"],["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["Pfam%3APF03445","Putative nucleotidyltransferase DUF294"]]},{"id":"NCBITaxon:312309","l":"Aliivibrio fischeri (strain ATCC 700601 / ES114)","na":1,"nb":3,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["Pfam%3APF06610","L-alanine exporter"],["Pfam%3APF00765","Autoinducer synthase"],["PROSITE%3APS00949","Autoinducer synthase family signature"]]},{"id":"NCBITaxon:313589","l":"Janibacter sp. HTCC2649","na":3,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["bulk-soil-envo-00005802.html","bulk soil"],["orchard-envo-00000115.html","orchard"]],"b":[["TED%3AAF-A3TKC7-F1-model_v4_TED01","TED novel fold AF-A3TKC7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:313595","l":"Psychroflexus torquis ATCC 700755","na":3,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["coral-reef-envo-00000150.html","coral reef"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["TED%3AAF-K4IBR2-F1-model_v4_TED01","TED novel fold AF-K4IBR2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:315456","l":"Rickettsia felis (strain ATCC VR-1525 / URRWXCal2)","na":1,"nb":3,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["Pfam%3APF18324","Bacterial isocitrate dehydrogenase, C-terminal domain"],["Pfam%3APF11019","Protein of unknown function (DUF2608)"],["Pfam%3APF22203","Surface cell antigen Sca2 helical repeat"]]},{"id":"NCBITaxon:317655","l":"Sphingopyxis alaskensis RB2256","na":3,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["environmental-material-envo-00010483.html","environmental material"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["Pfam%3APF10755","Protein of unknown function (DUF2585)"]]},{"id":"NCBITaxon:321967","l":"Lacticaseibacillus paracasei (strain ATCC 334 / BCRC 17002 / CCUG 31169 / CIP 107868 / KCTC 3260 / NRRL B-441)","na":1,"nb":3,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["Pfam%3APF11975","Family 4 glycosyl hydrolase C-terminal domain"],["Pfam%3APF02056","Family 4 glycosyl hydrolase"],["PROSITE%3APS01324","Glycosyl hydrolases family 4 signature"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":1,"nb":3,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF22041","Glutathione S-transferase, C-terminal domain"],["Pfam%3APF08493","Aflatoxin regulatory protein"]]},{"id":"NCBITaxon:33959","l":"Lactobacillus johnsonii","na":3,"nb":1,"a":[["animal-litter-envo-00002191.html","animal litter"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["Pfam%3APF13518","Helix-turn-helix domain"]]},{"id":"NCBITaxon:349124","l":"Halorhodospira halophila (strain DSM 244 / SL1)","na":1,"nb":3,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["Pfam%3APF02639","Uncharacterized BCR, YaiI/YqxD family COG1671"],["Pfam%3APF20543","N2-fixation sustaining protein CowN"],["Pfam%3APF07311","Dodecin"]]},{"id":"NCBITaxon:349741","l":"Akkermansia muciniphila (strain ATCC BAA-835 / DSM 22959 / JCM 33894 / BCRC 81048 / CCUG 64013 / CIP 107961 / Muc)","na":1,"nb":3,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["Pfam%3APF23763","GLAA-B beta-barrel domain I"],["Pfam%3APF23764","GLAA-B beta-barrel domain II"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"]]},{"id":"NCBITaxon:357804","l":"Psychromonas ingrahamii (strain DSM 17664 / CCUG 51855 / 37)","na":1,"nb":3,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["Pfam%3APF27465","DNA-binding protein Fis N-terminal domain"],["Pfam%3APF04363","Protein of unknown function (DUF496)"],["Pfam%3APF18955","Domain of unknown function (DUF5698)"]]},{"id":"NCBITaxon:35816","l":"Pelobacter acidigallici","na":3,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["Pfam%3APF21423","Pyrogallol hydroxytransferase large subunit-like, domain 1"]]},{"id":"NCBITaxon:360807","l":"Roseburia inulinivorans","na":3,"nb":1,"a":[["pig-manure-envo-00003860.html","pig manure"],["tropical-envo-01000204.html","tropical"],["harbour-envo-00000463.html","harbour"]],"b":[["TED%3AAF-A0A173VWR5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A173VWR5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:367928","l":"Bifidobacterium adolescentis (strain ATCC 15703 / DSM 20083 / NCTC 11814 / E194a)","na":1,"nb":3,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["Pfam%3APF02156","Glycosyl hydrolase family 26"],["Pfam%3APF27512","LeuD_N"]]},{"id":"NCBITaxon:376686","l":"Flavobacterium johnsoniae (strain ATCC 17061 / DSM 2064 / JCM 8514 / BCRC 14874 / CCUG 350202 / NBRC 14942 / NCIMB 11054 / UW101)","na":1,"nb":3,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["Pfam%3APF17957","Bacterial Ig domain"],["Pfam%3APF24850","Bacillithiol biosynthesis BshC, C-terminal coiled-coil domain"],["Pfam%3APF14109","GldH lipoprotein"]]},{"id":"NCBITaxon:384616","l":"Pyrobaculum islandicum (strain DSM 4184 / JCM 9189 / GEO3)","na":1,"nb":3,"a":[["geothermal-power-plant-envo-00002215.html","geothermal power plant"]],"b":[["Pfam%3APF01941","S-adenosylmethionine synthetase (AdoMet synthetase)"],["Pfam%3APF11520","Chromatin protein Cren7"],["Pfam%3APF05167","Uncharacterised ACR (DUF711)"]]},{"id":"NCBITaxon:384676","l":"","na":1,"nb":3,"a":[["coelom-bto-0001707.html","coelom"]],"b":[["Pfam%3APF18063","Beta barrel Pore-forming domain"],["Pfam%3APF08548","Peptidase M10 serralysin C terminal"],["TED%3AAF-Q1I2P2-F1-model_v4_TED01","TED novel fold AF-Q1I2P2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:399599","l":"Shewanella baltica (strain OS195)","na":1,"nb":3,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["Pfam%3APF24860","FdhE, C-terminal domain"],["Pfam%3APF24859","FdhE, central domain"],["Pfam%3APF04216","FdhE, N-terminal"]]},{"id":"NCBITaxon:399739","l":"Ectopseudomonas mendocina (strain ymp)","na":1,"nb":3,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["Pfam%3APF22289","Dimethylamine monooxygenase subunit DmmA-like, C-terminal domain"],["Pfam%3APF04359","Protein of unknown function (DUF493)"],["Pfam%3APF11927","Haem-dependent oxidative N-demethylase, alpha subunit-like"]]},{"id":"NCBITaxon:400682","l":"Amphimedon queenslandica","na":1,"nb":3,"a":[["germ-cell-bto-0000535.html","germ cell"]],"b":[["TED%3AAF-A0A1X7UW69-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X7UW69-F1-model_v4_TED01"],["TED%3AAF-A0A1X7SZW3-F1-model_v4_TED01","TED novel fold AF-A0A1X7SZW3-F1-model_v4_TED01"],["TED%3AAF-A0A1X7UQD3-F1-model_v4_TED02","TED novel fold AF-A0A1X7UQD3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:401053","l":"Terriglobus saanensis SP1PR4","na":3,"nb":1,"a":[["bulk-soil-envo-00005802.html","bulk soil"],["forested-area-envo-00000111.html","forested area"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-E8UZX5-F1-model_v4_TED02","TED novel fold AF-E8UZX5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:406547","l":"Rubripirellula obstinata","na":1,"nb":3,"a":[["epibiont-habitatmech-bacdive-f4eb470a03.html","Epibiont"]],"b":[["TED%3AAF-A0A5B1CJC2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B1CJC2-F1-model_v4_TED01"],["TED%3AAF-A0A5B1CQ78-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B1CQ78-F1-model_v4_TED01"],["TED%3AAF-A0A5B1CIN8-F1-model_v4_TED02","TED novel fold AF-A0A5B1CIN8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:419665","l":"Methanococcus aeolicus (strain ATCC BAA-1280 / DSM 17508 / OCM 812 / Nankai-3)","na":1,"nb":3,"a":[["shoreline-envo-00000486.html","shoreline"]],"b":[["Pfam%3APF26548","Putative peptidyl-prolyl cis-trans isomerase domain"],["Pfam%3APF06787","FeGP cofactor biosynthesis protein HcgF"],["Pfam%3APF01941","S-adenosylmethionine synthetase (AdoMet synthetase)"]]},{"id":"NCBITaxon:438","l":"Acetobacter pasteurianus","na":3,"nb":1,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"],["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["TED%3AAF-A0A1A0CE09-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1A0CE09-F1-model_v4_TED01"]]},{"id":"NCBITaxon:439292","l":"Bacillus selenitireducens (strain ATCC 700615 / DSM 15326 / MLS10)","na":1,"nb":3,"a":[["anaerobic-mud-envo-00002133.html","anaerobic mud"]],"b":[["Pfam%3APF03633","Glycosyl hydrolase family 65, C-terminal domain"],["Pfam%3APF03636","Glycosyl hydrolase family 65, N-terminal domain"],["Pfam%3APF03632","Glycosyl hydrolase family 65 central catalytic domain"]]},{"id":"NCBITaxon:439495","l":"Pseudovibrio sp. JE062","na":3,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["germ-cell-bto-0000535.html","germ cell"],["desert-sand-envo-00005800.html","desert sand"]],"b":[["TED%3AAF-B6R9T4-F1-model_v4_TED01","TED highly-symmetric fold AF-B6R9T4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:444158","l":"Methanococcus maripaludis (strain C6 / ATCC BAA-1332)","na":1,"nb":3,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["Pfam%3APF06847","Archaeal Peptidase A24 C-terminus Type II"],["Pfam%3APF09888","Uncharacterized protein conserved in archaea (DUF2115)"],["Pfam%3APF05165","GTP cyclohydrolase III"]]},{"id":"NCBITaxon:446465","l":"Brachybacterium faecium DSM 4810","na":3,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["poultry-deep-litter-envo-00003908.html","poultry deep litter"],["village-biome-envo-01000246.html","village biome"]],"b":[["TED%3AAF-C7MEJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-C7MEJ8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:448385","l":"","na":1,"nb":3,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["TED%3AAF-A9FYP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A9FYP8-F1-model_v4_TED01"],["TED%3AAF-A9G932-F1-model_v4_TED01","TED highly-symmetric fold AF-A9G932-F1-model_v4_TED01"],["TED%3AAF-A9F9E5-F1-model_v4_TED01","TED novel fold AF-A9F9E5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:45634","l":"Streptococcus cristatus","na":1,"nb":3,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["Pfam%3APF03486","HI0933-like protein Rossmann domain"],["Pfam%3APF22780","HI0933-like protein barrel and H2TH domain"],["TED%3AAF-A0A139N090-F1-model_v4_TED01","TED novel fold AF-A0A139N090-F1-model_v4_TED01"]]},{"id":"NCBITaxon:469371","l":"Thermobispora bispora DSM 43833","na":3,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["TED%3AAF-D6Y8C2-F1-model_v4_TED02","TED novel fold AF-D6Y8C2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:479431","l":"Nakamurella multipartita DSM 44233","na":3,"nb":1,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["TED%3AAF-C8XHD0-F1-model_v4_TED02","TED novel fold AF-C8XHD0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:51663","l":"Pediococcus damnosus","na":3,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["blast-cell-bto-0000125.html","blast cell"]],"b":[["TED%3AAF-A0A0R2HKY5-F1-model_v4_TED01","TED novel fold AF-A0A0R2HKY5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:530564","l":"Pirellula staleyi DSM 6068","na":3,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["agricultural-soil-envo-00002259.html","agricultural soil"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-D2QXI3-F1-model_v4_TED05","TED novel fold AF-D2QXI3-F1-model_v4_TED05"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":1,"nb":3,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"],["TED%3AAF-A0A7H8I034-F1-model_v4_TED01","TED novel fold AF-A0A7H8I034-F1-model_v4_TED01"]]},{"id":"NCBITaxon:554155","l":"Arthroderma otae (strain ATCC MYA-4605 / CBS 113480)","na":1,"nb":3,"a":[["mountain-pass-envo-00000084.html","mountain pass"]],"b":[["Pfam%3APF13560","Helix-turn-helix domain"],["TED%3AAF-C5FU25-F1-model_v4_TED01","TED novel fold AF-C5FU25-F1-model_v4_TED01"],["TED%3AAF-C5FXD7-F1-model_v4_TED05","TED novel fold AF-C5FXD7-F1-model_v4_TED05"]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":1,"nb":3,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"],["PROSITE%3APS00896","LacY family proton/sugar symporters signature 1"],["PROSITE%3APS00897","LacY family proton/sugar symporters signature 2"]]},{"id":"NCBITaxon:573064","l":"Methanocaldococcus fervens AG86","na":3,"nb":1,"a":[["inlet-envo-00000475.html","inlet"],["shoreline-envo-00000486.html","shoreline"],["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["Pfam%3APF02655","ATP-grasp domain"]]},{"id":"NCBITaxon:578458","l":"Schizophyllum commune (strain H4-8 / FGSC 9210)","na":1,"nb":3,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["TED%3AAF-D8PNC3-F1-model_v4_TED01","TED novel fold AF-D8PNC3-F1-model_v4_TED01"],["TED%3AAF-D8QDU6-F1-model_v4_TED02","TED novel fold AF-D8QDU6-F1-model_v4_TED02"],["TED%3AAF-D8QJK2-F1-model_v4_TED01","TED novel fold AF-D8QJK2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:584","l":"Proteus mirabilis","na":1,"nb":3,"a":[["salivary-gland-bto-0001203.html","salivary gland"]],"b":[["Pfam%3APF05280","Flagellar transcriptional activator (FlhC)"],["TED%3AAF-A0A1Z1SXV6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z1SXV6-F1-model_v4_TED01"],["TED%3AAF-A0A7U1CMJ9-F1-model_v4_TED01","TED novel fold AF-A0A7U1CMJ9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:588","l":"Providencia stuartii","na":1,"nb":3,"a":[["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["PROSITE%3APS01157","Class A bacterial acid phosphatases signature"]]},{"id":"NCBITaxon:644282","l":"Desulfarculus baarsii (strain ATCC 33931 / DSM 2075 / LMG 7858 / VKM B-1802 / 2st14)","na":1,"nb":3,"a":[["ditch-envo-00000037.html","ditch"]],"b":[["Pfam%3APF06397","Desulfoferrodoxin, N-terminal domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["TED%3AAF-E1QLH8-F1-model_v4_TED02","TED novel fold AF-E1QLH8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:658457","l":"Ectopseudomonas composti","na":3,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["TED%3AAF-A0A1I5P4N2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5P4N2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:666681","l":"Methylotenera versatilis 301","na":3,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["environmental-material-envo-00010483.html","environmental material"],["river-bed-envo-00000384.html","river bed"]],"b":[["TED%3AAF-D7DL14-F1-model_v4_TED01","TED novel fold AF-D7DL14-F1-model_v4_TED01"]]},{"id":"NCBITaxon:66711","l":"Escherichia phage AR1","na":1,"nb":3,"a":[["fiber-bto-0000450.html","fiber"]],"b":[["Pfam%3APF21721","Phage tail fibre adhesin Gp38 N-terminal domain"],["Pfam%3APF05268","Phage tail fibre adhesin Gp38"],["Pfam%3APF21446","Long-tail fiber proximal subunit, C-terminal, trimerization domain"]]},{"id":"NCBITaxon:688270","l":"Cellulophaga algicola (strain DSM 14237 / IC166 / ACAM 630)","na":1,"nb":3,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["TED%3AAF-E6XBJ1-F1-model_v4_TED01","TED highly-symmetric fold AF-E6XBJ1-F1-model_v4_TED01"],["TED%3AAF-E6X960-F1-model_v4_TED02","TED novel fold AF-E6X960-F1-model_v4_TED02"],["TED%3AAF-E6XEV2-F1-model_v4_TED02","TED novel fold AF-E6XEV2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:69293","l":"Gasterosteus aculeatus","na":3,"nb":1,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"],["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["TED%3AAF-G3Q6M8-F1-model_v4_TED01","TED novel fold AF-G3Q6M8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:715","l":"Actinobacillus pleuropneumoniae","na":1,"nb":3,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["Pfam%3APF26002","AprE-like, beta-barrel domain"],["Pfam%3APF02794","RTX toxin acyltransferase family"],["PROSITE%3APS00543","HlyD family secretion proteins signature"]]},{"id":"NCBITaxon:7176","l":"Culex quinquefasciatus","na":1,"nb":3,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["TED%3AAF-B0W7X4-F1-model_v4_TED04","TED highly-symmetric fold AF-B0W7X4-F1-model_v4_TED04"],["TED%3AAF-B0WQL7-F1-model_v4_TED02","TED highly-symmetric fold AF-B0WQL7-F1-model_v4_TED02"],["TED%3AAF-B0XLK9-F1-model_v4_TED05","TED highly-symmetric fold AF-B0XLK9-F1-model_v4_TED05"]]},{"id":"NCBITaxon:729","l":"Haemophilus parainfluenzae","na":3,"nb":1,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"],["tropical-envo-01000204.html","tropical"]],"b":[["Pfam%3APF04480","Protein of unknown function (DUF559)"]]},{"id":"NCBITaxon:749414","l":"","na":1,"nb":3,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF14509","Glycosyl-hydrolase 97 C-terminal, oligomerisation"],["Pfam%3APF14508","Glycosyl-hydrolase 97 N-terminal"],["Pfam%3APF10566","Glycoside hydrolase 97"]]},{"id":"NCBITaxon:79880","l":"Shouchella clausii","na":1,"nb":3,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["Pfam%3APF13536","Putative multidrug resistance efflux transporter"],["Pfam%3APF10776","Protein of unknown function (DUF2600)"],["TED%3AAF-A0A268NXB1-F1-model_v4_TED01","TED novel fold AF-A0A268NXB1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:83655","l":"Leclercia adecarboxylata","na":3,"nb":1,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["TED%3AAF-A0A5B7XGB6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A5B7XGB6-F1-model_v4_TED04"]]},{"id":"NCBITaxon:886293","l":"Singulisphaera acidiphila (strain ATCC BAA-1392 / DSM 18658 / VKM B-2454 / MOB10)","na":1,"nb":3,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-L0DF60-F1-model_v4_TED01","TED highly-symmetric fold AF-L0DF60-F1-model_v4_TED01"],["TED%3AAF-L0DFV3-F1-model_v4_TED01","TED highly-symmetric fold AF-L0DFV3-F1-model_v4_TED01"],["TED%3AAF-L0DBJ5-F1-model_v4_TED02","TED novel fold AF-L0DBJ5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:91360","l":"Desulforhopalus singaporensis","na":3,"nb":1,"a":[["marsh-envo-00000035.html","marsh"],["road-envo-00000064.html","road"],["garden-envo-00000011.html","garden"]],"b":[["TED%3AAF-A0A1H0QB18-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H0QB18-F1-model_v4_TED01"]]},{"id":"NCBITaxon:996","l":"Flavobacterium columnare","na":1,"nb":3,"a":[["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["TED%3AAF-A0A4Z0FEB3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Z0FEB3-F1-model_v4_TED02"],["TED%3AAF-A0A2N9P872-F1-model_v4_TED02","TED novel fold AF-A0A2N9P872-F1-model_v4_TED02"],["TED%3AAF-A0A2T4HIF9-F1-model_v4_TED03","TED novel fold AF-A0A2T4HIF9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1002340","l":"Leisingera sp. ANG1","na":2,"nb":1,"a":[["gland-bto-0000522.html","gland"],["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["TED%3AAF-A0A0B4EI55-F1-model_v4_TED01","TED novel fold AF-A0A0B4EI55-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1004304","l":"Hydrotalea sandarakina","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["island-envo-00000098.html","island"]],"b":[["TED%3AAF-A0A2W7RGM4-F1-model_v4_TED03","TED novel fold AF-A0A2W7RGM4-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1005043","l":"Candidatus Regiella insecticola 5.15","na":1,"nb":2,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["TED%3AAF-G2H098-F1-model_v4_TED01","TED highly-symmetric fold AF-G2H098-F1-model_v4_TED01"],["TED%3AAF-G2H102-F1-model_v4_TED04","TED novel fold AF-G2H102-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1006155","l":"","na":2,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["TED%3AAF-A0A1S7FXD4-F1-model_v4_TED02","TED novel fold AF-A0A1S7FXD4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1007676","l":"Companilactobacillus ginsenosidimutans","na":2,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["TED%3AAF-A0A0H4QHM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0H4QHM6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1028307","l":"Klebsiella aerogenes (strain ATCC 13048 / DSM 30053 / CCUG 1429 / JCM 1235 / KCTC 2190 / NBRC 13534 / NCIMB 10102 / NCTC 10006 / CDC 819-56)","na":1,"nb":2,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["Pfam%3APF16031","TonB polyproline region"],["Pfam%3APF09078","CheY binding"]]},{"id":"NCBITaxon:1031537","l":"Bremerella cremea","na":2,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"],["carcass-envo-00002033.html","carcass"]],"b":[["TED%3AAF-A0A368KQM2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A368KQM2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1033810","l":"Haloplasma contractile SSD-17B","na":1,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["TED%3AAF-F7PZK9-F1-model_v4_TED01","TED highly-symmetric fold AF-F7PZK9-F1-model_v4_TED01"],["TED%3AAF-U2EDU2-F1-model_v4_TED03","TED novel fold AF-U2EDU2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1034943","l":"Legionella massiliensis","na":1,"nb":2,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["TED%3AAF-A0A078KZR2-F1-model_v4_TED02","TED novel fold AF-A0A078KZR2-F1-model_v4_TED02"],["TED%3AAF-A0A078L1Y9-F1-model_v4_TED02","TED novel fold AF-A0A078L1Y9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1042","l":"Erythrobacter sp.","na":2,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A6G9N8S4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6G9N8S4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1045004","l":"Oenococcus kitaharae DSM 17330","na":2,"nb":1,"a":[["compost-envo-00002170.html","compost"],["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["TED%3AAF-G9WIN5-F1-model_v4_TED02","TED highly-symmetric fold AF-G9WIN5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1048394","l":"Compostimonas suwonensis","na":2,"nb":1,"a":[["agricultural-waste-material-envo-01000371.html","agricultural waste material"],["waste-material-envo-00002264.html","waste material"]],"b":[["TED%3AAF-A0A2M9BCH6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2M9BCH6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1048689","l":"Escherichia coli O55:H7 (strain RM12579 / EPEC)","na":1,"nb":2,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["Pfam%3APF28043","Anti-phage protein KwaA"],["Pfam%3APF16162","Kiwa protein KwaB-like"]]},{"id":"NCBITaxon:108981","l":"Acinetobacter schindleri","na":2,"nb":1,"a":[["gut-bto-0000545.html","gut"],["skin-bto-0001253.html","skin"]],"b":[["TED%3AAF-A0A855WCB4-F1-model_v4_TED02","TED novel fold AF-A0A855WCB4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1096246","l":"Hungatella effluvii","na":2,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["environmental-system-envo-01000254.html","environmental system"]],"b":[["TED%3AAF-A0A2V3YBX4-F1-model_v4_TED02","TED novel fold AF-A0A2V3YBX4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1114856","l":"Natronorubrum tibetense DSM 13204","na":2,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"],["sediment-envo-00002007.html","sediment"]],"b":[["TED%3AAF-L9VUV1-F1-model_v4_TED01","TED novel fold AF-L9VUV1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1120918","l":"Acetitomaculum ruminis DSM 5522","na":2,"nb":1,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["TED%3AAF-A0A1I1ATM7-F1-model_v4_TED01","TED novel fold AF-A0A1I1ATM7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1120923","l":"Acidocella aminolytica 101 = DSM 11237","na":2,"nb":1,"a":[["mine-envo-00000076.html","mine"],["rock-envo-00001995.html","rock"]],"b":[["TED%3AAF-A0A0D6PBP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D6PBP8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121022","l":"Asticcacaulis benevestitus DSM 16100 = ATCC BAA-896","na":2,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["TED%3AAF-V4PT21-F1-model_v4_TED01","TED highly-symmetric fold AF-V4PT21-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121270","l":"Carboxydocella sporoproducens DSM 16521","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["peninsula-envo-00000305.html","peninsula"]],"b":[["TED%3AAF-A0A1T4LMW3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1T4LMW3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1121279","l":"Chitinimonas taiwanensis DSM 18899","na":1,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"]],"b":[["TED%3AAF-A0A1K2HNH6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1K2HNH6-F1-model_v4_TED02"],["TED%3AAF-A0A1K2HS13-F1-model_v4_TED04","TED novel fold AF-A0A1K2HS13-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1121405","l":"Desulfococcus multivorans DSM 2059","na":2,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"],["sludge-envo-00002044.html","sludge"]],"b":[["TED%3AAF-S7VDW8-F1-model_v4_TED02","TED highly-symmetric fold AF-S7VDW8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1121419","l":"Desulfosporosinus hippei DSM 8344","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["TED%3AAF-A0A1G8D348-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G8D348-F1-model_v4_TED01"],["TED%3AAF-A0A1G8CVS7-F1-model_v4_TED01","TED novel fold AF-A0A1G8CVS7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121448","l":"","na":2,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["primordium-bto-0001886.html","primordium"]],"b":[["Pfam%3APF12139","Adenosine-5'-phosphosulfate reductase beta subunit"]]},{"id":"NCBITaxon:1121868","l":"Enterovibrio nigricans DSM 22720","na":1,"nb":2,"a":[["mediterranean-envo-01000207.html","mediterranean"]],"b":[["TED%3AAF-A0A1T4UXP3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1T4UXP3-F1-model_v4_TED01"],["TED%3AAF-A0A1T4VT23-F1-model_v4_TED01","TED novel fold AF-A0A1T4VT23-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121915","l":"Geoalkalibacter ferrihydriticus DSM 17813","na":2,"nb":1,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["TED%3AAF-A0A0C2HTA4-F1-model_v4_TED03","TED novel fold AF-A0A0C2HTA4-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1121955","l":"Hymenobacter daecheongensis DSM 21074","na":1,"nb":2,"a":[["dam-envo-00000074.html","dam"]],"b":[["TED%3AAF-A0A1M6EGP6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M6EGP6-F1-model_v4_TED02"],["TED%3AAF-A0A1M6M5E1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M6M5E1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1123071","l":"Rubritalea squalenifaciens DSM 18772","na":2,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"],["peninsula-envo-00000305.html","peninsula"]],"b":[["TED%3AAF-A0A1M6J7A4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M6J7A4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1124743","l":"Kribbella soli","na":2,"nb":1,"a":[["park-envo-00000562.html","park"],["forest-biome-envo-01000174.html","forest biome"]],"b":[["TED%3AAF-A0A4Q7WU76-F1-model_v4_TED01","TED novel fold AF-A0A4Q7WU76-F1-model_v4_TED01"]]},{"id":"NCBITaxon:113653","l":"Geoglobus ahangari","na":1,"nb":2,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["TED%3AAF-A0A7J3TIF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J3TIF4-F1-model_v4_TED01"],["TED%3AAF-A0A0F7ID24-F1-model_v4_TED02","TED novel fold AF-A0A0F7ID24-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1150298","l":"Fusicatenibacter saccharivorans","na":1,"nb":2,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["TED%3AAF-A0A174K1Z5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A174K1Z5-F1-model_v4_TED01"],["TED%3AAF-A0A174J3Q6-F1-model_v4_TED01","TED novel fold AF-A0A174J3Q6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1153","l":"Pseudanabaena sp.","na":1,"nb":2,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"]],"b":[["TED%3AAF-A0A2W6YPX5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W6YPX5-F1-model_v4_TED01"],["TED%3AAF-A0A2W7B262-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W7B262-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1165092","l":"Lachnospiraceae bacterium JC7","na":1,"nb":2,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["TED%3AAF-W3AP45-F1-model_v4_TED03","TED highly-symmetric fold AF-W3AP45-F1-model_v4_TED03"],["TED%3AAF-W3ATW4-F1-model_v4_TED02","TED highly-symmetric fold AF-W3ATW4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1166078","l":"Aureimonas phyllosphaerae","na":2,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["TED%3AAF-A0A7W6FW33-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W6FW33-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1172204","l":"Paeniclostridium sordellii 8483","na":1,"nb":2,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["TED%3AAF-A0A446IBF2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A446IBF2-F1-model_v4_TED01"],["TED%3AAF-A0A446ICV2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A446ICV2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1190417","l":"Geodermatophilus telluris","na":2,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"],["sand-envo-01000017.html","sand"]],"b":[["TED%3AAF-A0A1G6L8J2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G6L8J2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1192854","l":"Granulosicoccus antarcticus IMCC3135","na":1,"nb":2,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["TED%3AAF-A0A2Z2NPF3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2Z2NPF3-F1-model_v4_TED03"],["TED%3AAF-A0A2Z2P0Z5-F1-model_v4_TED01","TED novel fold AF-A0A2Z2P0Z5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:119641","l":"Clostridium uliginosum","na":1,"nb":2,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["TED%3AAF-A0A1I1R8X9-F1-model_v4_TED03","TED novel fold AF-A0A1I1R8X9-F1-model_v4_TED03"],["TED%3AAF-A0A1I1S8C7-F1-model_v4_TED03","TED novel fold AF-A0A1I1S8C7-F1-model_v4_TED03"]]},{"id":"NCBITaxon:121719","l":"Pannonibacter phragmitetus","na":2,"nb":1,"a":[["nectar-bto-0000537.html","nectar"],["style-bto-0001313.html","style"]],"b":[["TED%3AAF-A0A0U3EPB7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0U3EPB7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1284","l":"Staphylococcus hyicus","na":1,"nb":2,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["Pfam%3APF04650","YSIRK type signal peptide"],["PROSITE%3APS01123","Thermonuclease family signature 1"]]},{"id":"NCBITaxon:1286","l":"Staphylococcus simulans","na":2,"nb":1,"a":[["animal-house-envo-00003040.html","animal house"],["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["Pfam%3APF25533","Lysostaphin, N-terminal domain"]]},{"id":"NCBITaxon:1290","l":"Staphylococcus hominis","na":2,"nb":1,"a":[["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"]],"b":[["TED%3AAF-A0A6N0I1N0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N0I1N0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1341154","l":"Flavobacterium cauense R2A-7","na":1,"nb":2,"a":[["lake-envo-00000020.html","lake"]],"b":[["TED%3AAF-V6RYF5-F1-model_v4_TED01","TED novel fold AF-V6RYF5-F1-model_v4_TED01"],["TED%3AAF-V6S0E8-F1-model_v4_TED02","TED novel fold AF-V6S0E8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:134537","l":"Paraburkholderia fungorum","na":1,"nb":2,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["TED%3AAF-A0A1H1IH55-F1-model_v4_TED01","TED novel fold AF-A0A1H1IH55-F1-model_v4_TED01"],["TED%3AAF-A0A2N8QLD6-F1-model_v4_TED03","TED novel fold AF-A0A2N8QLD6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:13689","l":"Sphingomonas paucimobilis","na":2,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"]],"b":[["PROSITE%3APS00082","Extradiol ring-cleavage dioxygenases signature"]]},{"id":"NCBITaxon:138074","l":"Serratia symbiotica","na":2,"nb":1,"a":[["intestine-bto-0000648.html","intestine"],["pseudostem-bto-0005992.html","pseudostem"]],"b":[["TED%3AAF-A0A068YYP3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A068YYP3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1385511","l":"Pontibacillus marinus BH030004 = DSM 16465","na":2,"nb":1,"a":[["pond-envo-00000033.html","pond"],["saline-evaporation-pond-envo-00000055.html","saline evaporation pond"]],"b":[["TED%3AAF-A0A0A5GIK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A5GIK2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1408281","l":"Endomicrobium proavitum","na":2,"nb":1,"a":[["flagellate-bto-0000464.html","flagellate"],["larva-bto-0000707.html","larva"]],"b":[["TED%3AAF-A0A0G3WK72-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G3WK72-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1427370","l":"Chlamydia pecorum DBDeUG","na":2,"nb":1,"a":[["conjunctiva-bto-0003415.html","conjunctiva"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["TED%3AAF-V8TRT3-F1-model_v4_TED01","TED highly-symmetric fold AF-V8TRT3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1465","l":"Brevibacillus laterosporus","na":2,"nb":1,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["TED%3AAF-A0A0F7BZ24-F1-model_v4_TED01","TED novel fold AF-A0A0F7BZ24-F1-model_v4_TED01"]]},{"id":"NCBITaxon:146919","l":"Salinibacter ruber","na":2,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["TED%3AAF-A0A840D6P8-F1-model_v4_TED02","TED novel fold AF-A0A840D6P8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["PROSITE%3APS01120","Urease nickel ligands signature"],["PROSITE%3APS00145","Urease active site"]]},{"id":"NCBITaxon:1490","l":"Paraclostridium bifermentans","na":2,"nb":1,"a":[["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"],["harbour-envo-00000463.html","harbour"]],"b":[["TED%3AAF-A0A5P3XDT9-F1-model_v4_TED01","TED novel fold AF-A0A5P3XDT9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1494","l":"Clostridium cochlearium","na":2,"nb":1,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"]],"b":[["TED%3AAF-A0A7Y3V7F0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y3V7F0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1509","l":"Clostridium sporogenes","na":2,"nb":1,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["Pfam%3APF06050","2-hydroxyglutaryl-CoA dehydratase, D-component"]]},{"id":"NCBITaxon:1553448","l":"Gemmobacter intermedius","na":1,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["TED%3AAF-A0A444M931-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A444M931-F1-model_v4_TED02"],["TED%3AAF-A0A444ME17-F1-model_v4_TED01","TED novel fold AF-A0A444ME17-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1578720","l":"Helicobacter ailurogastricus","na":2,"nb":1,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["mycosis-habitatmech-bacdive-6d5784a4c5.html","Mycosis"]],"b":[["TED%3AAF-A0A0K2X3G5-F1-model_v4_TED01","TED novel fold AF-A0A0K2X3G5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:158500","l":"Novosphingobium resinovorum","na":1,"nb":2,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A031JQ90-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A031JQ90-F1-model_v4_TED01"],["TED%3AAF-A0A031JQV5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A031JQV5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:158836","l":"Enterobacter hormaechei","na":1,"nb":2,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["TED%3AAF-A0A431SE22-F1-model_v4_TED01","TED novel fold AF-A0A431SE22-F1-model_v4_TED01"],["TED%3AAF-A0A8B5ZRS3-F1-model_v4_TED01","TED novel fold AF-A0A8B5ZRS3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1612308","l":"Methylocapsa palsarum","na":1,"nb":2,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["TED%3AAF-A0A1I4BSR3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I4BSR3-F1-model_v4_TED02"],["TED%3AAF-A0A1I3X4Y4-F1-model_v4_TED01","TED novel fold AF-A0A1I3X4Y4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:164756","l":"Mycobacterium sp. MCS","na":2,"nb":1,"a":[["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["TED%3AAF-A0A5Q5BFH8-F1-model_v4_TED01","TED novel fold AF-A0A5Q5BFH8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:167968","l":"uncultured Desulfovibrio sp.","na":1,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["TED%3AAF-A0A212J776-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A212J776-F1-model_v4_TED02"],["TED%3AAF-A0A212L6P7-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A212L6P7-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":2,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["TED%3AAF-A0A415C3I8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A415C3I8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:168471","l":"Laribacter hongkongensis","na":2,"nb":1,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"]],"b":[["TED%3AAF-A0A248LK09-F1-model_v4_TED01","TED novel fold AF-A0A248LK09-F1-model_v4_TED01"]]},{"id":"NCBITaxon:169679","l":"Clostridium saccharobutylicum","na":2,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"]],"b":[["Pfam%3APF13290","Chitobiase/beta-hexosaminidase C-terminal domain"]]},{"id":"NCBITaxon:1797191","l":"Acidobacteria bacterium RIFCSPLOWO2 12 FULL 66 21","na":1,"nb":2,"a":[["loam-envo-00002258.html","loam"]],"b":[["TED%3AAF-A0A1F2TD39-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F2TD39-F1-model_v4_TED01"],["TED%3AAF-A0A1F2TJD6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F2TJD6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1798213","l":"Pseudovibrio sp. Tun.PSC04-5.I4","na":2,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["peninsula-envo-00000305.html","peninsula"]],"b":[["TED%3AAF-A0A1H1I1X9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H1I1X9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1873897","l":"Cupriavidus sp.","na":2,"nb":1,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["TED%3AAF-A0A352SA47-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A352SA47-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1895664","l":"Halanaerobium sp.","na":1,"nb":2,"a":[["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["TED%3AAF-A0A315QT49-F1-model_v4_TED03","TED novel fold AF-A0A315QT49-F1-model_v4_TED03"],["TED%3AAF-A0A315R434-F1-model_v4_TED03","TED novel fold AF-A0A315R434-F1-model_v4_TED03"]]},{"id":"NCBITaxon:189918","l":"Mycobacterium sp. KMS","na":2,"nb":1,"a":[["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"],["mountain-pass-envo-00000084.html","mountain pass"]],"b":[["Pfam%3APF06339","Ectoine synthase"]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":2,"nb":1,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Pfam%3APF26312","Domain of unknown function (DUF8083)"]]},{"id":"NCBITaxon:193","l":"Azospirillum lipoferum","na":2,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"]],"b":[["TED%3AAF-A0A1X7MZF1-F1-model_v4_TED02","TED novel fold AF-A0A1X7MZF1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1932","l":"Streptomyces tendae","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["Pfam%3APF01356","Alpha amylase inhibitor"]]},{"id":"NCBITaxon:1938","l":"Streptomyces viridochromogenes","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["Pfam%3APF11599","RRNA methyltransferase AviRa"]]},{"id":"NCBITaxon:2024855","l":"Rhodopirellula sp.","na":1,"nb":2,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A2E0S8K6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0S8K6-F1-model_v4_TED01"],["TED%3AAF-A0A358MZ88-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A358MZ88-F1-model_v4_TED03"]]},{"id":"NCBITaxon:2026725","l":"Chromatiales bacterium","na":1,"nb":2,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A520X6H8-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A520X6H8-F1-model_v4_TED05"],["TED%3AAF-A0A7C2AIC9-F1-model_v4_TED02","TED novel fold AF-A0A7C2AIC9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:208962","l":"Escherichia albertii","na":1,"nb":2,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["Pfam%3APF18134","Adenylyl/Guanylyl and SMODS C-terminal sensor domain"],["Pfam%3APF18153","Cap15, cyclic dinucleotide receptor domain"]]},{"id":"NCBITaxon:2100533","l":"Sphingobacterium haloxyli","na":1,"nb":2,"a":[["endosphere-habitatmech-bacdive-3e4680f074.html","Endosphere"]],"b":[["TED%3AAF-A0A2S9J8F0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S9J8F0-F1-model_v4_TED01"],["TED%3AAF-A0A2S9J915-F1-model_v4_TED02","TED novel fold AF-A0A2S9J915-F1-model_v4_TED02"]]},{"id":"NCBITaxon:213224","l":"Geothermobacter ehrlichii","na":2,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["seamount-envo-00000264.html","seamount"]],"b":[["TED%3AAF-A0A5D3WPY1-F1-model_v4_TED02","TED novel fold AF-A0A5D3WPY1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2162","l":"Methanobacterium formicicum","na":1,"nb":2,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Pfam%3APF04432","Coenzyme F420 hydrogenase/dehydrogenase, beta subunit C terminus"],["Pfam%3APF04422","Coenzyme F420 hydrogenase/dehydrogenase, beta subunit N-term"]]},{"id":"NCBITaxon:2183985","l":"Halomonas sp. A11-A","na":2,"nb":1,"a":[["ocean-trench-envo-00000275.html","ocean trench"],["trough-envo-00000499.html","trough"]],"b":[["TED%3AAF-A0A317P655-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A317P655-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2208","l":"Methanosarcina barkeri","na":2,"nb":1,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["sludge-envo-00002044.html","sludge"]],"b":[["Pfam%3APF09505","Dimethylamine methyltransferase (Dimeth_PyL)"]]},{"id":"NCBITaxon:2223","l":"Methanothrix soehngenii","na":1,"nb":2,"a":[["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"],["TED%3AAF-A0A7K4AJW5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K4AJW5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:226506","l":"Algoriphagus ornithinivorans","na":2,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"],["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["TED%3AAF-A0A1I5CGG6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5CGG6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2292705","l":"Paenibacillus paeoniae","na":2,"nb":1,"a":[["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["TED%3AAF-A0A371PIW4-F1-model_v4_TED01","TED novel fold AF-A0A371PIW4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:238540","l":"Algoriphagus antarcticus","na":2,"nb":1,"a":[["hill-envo-00000083.html","hill"],["seamount-envo-00000264.html","seamount"]],"b":[["TED%3AAF-A0A3E0D6W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3E0D6W3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:244366","l":"Klebsiella variicola","na":2,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["TED%3AAF-A0A2N4Z4E2-F1-model_v4_TED01","TED novel fold AF-A0A2N4Z4E2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:245188","l":"Yoonia vestfoldensis","na":2,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["sandstone-envo-00002055.html","sandstone"]],"b":[["TED%3AAF-A0A1Y0EB74-F1-model_v4_TED01","TED novel fold AF-A0A1Y0EB74-F1-model_v4_TED01"]]},{"id":"NCBITaxon:246200","l":"Ruegeria pomeroyi DSS-3","na":1,"nb":2,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["Pfam%3APF16867","Dimethlysulfonioproprionate lyase"],["Pfam%3APF09347","Domain of unknown function (DUF1989)"]]},{"id":"NCBITaxon:2485163","l":"Methylocaldum sp. 0917","na":1,"nb":2,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["TED%3AAF-A0A4R7A0H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R7A0H4-F1-model_v4_TED01"],["TED%3AAF-A0A4R7AGM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R7AGM3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2547395","l":"Paenibacillus piri","na":1,"nb":2,"a":[["transportation-ways-roads-habitatmech-bacdive-1b4071cb1d.html","Transportation-ways-Roads"]],"b":[["TED%3AAF-A0A4V2ZS36-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A4V2ZS36-F1-model_v4_TED03"],["TED%3AAF-A0A4R5KXP2-F1-model_v4_TED02","TED novel fold AF-A0A4R5KXP2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:262543","l":"Exiguobacterium sibiricum (strain DSM 17290 / CCUG 55495 / CIP 109462 / JCM 13490 / 255-15)","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["Pfam%3APF06335","Domain of unknown function (DUF1054)"],["Pfam%3APF11023","Zinc-ribbon containing domain"]]},{"id":"NCBITaxon:269482","l":"Burkholderia vietnamiensis G4","na":2,"nb":1,"a":[["air-envo-00002005.html","air"],["human-construction-envo-00000070.html","human construction"]],"b":[["TED%3AAF-A4JWD8-F1-model_v4_TED01","TED novel fold AF-A4JWD8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:279714","l":"Pseudogulbenkiania ferrooxidans 2002","na":2,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["pond-water-envo-00002228.html","pond water"]],"b":[["TED%3AAF-B9Z3M4-F1-model_v4_TED02","TED novel fold AF-B9Z3M4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:28087","l":"Legionella sainthelensi","na":1,"nb":2,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["TED%3AAF-A0A3S4I5M7-F1-model_v4_TED01","TED novel fold AF-A0A3S4I5M7-F1-model_v4_TED01"],["TED%3AAF-A0A447STS7-F1-model_v4_TED04","TED novel fold AF-A0A447STS7-F1-model_v4_TED04"]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["Pfam%3APF21252","Glycosyl hydrolase 109, C-terminal domain"],["TED%3AAF-A0A3P1YJQ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3P1YJQ6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28128","l":"Prevotella corporis","na":2,"nb":1,"a":[["environmental-feature-envo-00002297.html","environmental feature"],["harbour-envo-00000463.html","harbour"]],"b":[["TED%3AAF-A0A133Q582-F1-model_v4_TED02","TED novel fold AF-A0A133Q582-F1-model_v4_TED02"]]},{"id":"NCBITaxon:28183","l":"Leptospira santarosai","na":2,"nb":1,"a":[["kidney-bto-0000671.html","kidney"],["liver-bto-0000759.html","liver"]],"b":[["TED%3AAF-A0A2P1QYQ7-F1-model_v4_TED01","TED novel fold AF-A0A2P1QYQ7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:282199","l":"Nereida ignava","na":2,"nb":1,"a":[["sandstone-envo-00002055.html","sandstone"],["bile-bto-0000121.html","bile"]],"b":[["TED%3AAF-A0A0U1NPS2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0U1NPS2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:29017","l":"Cyriopagopus schmidti","na":2,"nb":1,"a":[["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["PROSITE%3APS60021","Huwentoxin-1 family signature"]]},{"id":"NCBITaxon:290339","l":"Cronobacter sakazakii (strain ATCC BAA-894)","na":1,"nb":2,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Pfam%3APF06610","L-alanine exporter"],["Pfam%3APF10796","Sigma-S stabilisation anti-adaptor protein"]]},{"id":"NCBITaxon:292415","l":"Thiobacillus denitrificans ATCC 25259","na":2,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["river-bed-envo-00000384.html","river bed"]],"b":[["Pfam%3APF06804","Outer membrane protein assembly factor BamC-like C-terminal domain"]]},{"id":"NCBITaxon:292459","l":"","na":1,"nb":2,"a":[["compost-envo-00002170.html","compost"]],"b":[["PROSITE%3APS00853","Beta-eliminating lyases pyridoxal-phosphate attachment site"],["TED%3AAF-Q67TA8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q67TA8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:29320","l":"Paenarthrobacter nicotinovorans","na":1,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["Pfam%3APF22607","FAD binding domain-like"],["Pfam%3APF06500","Esterase FrsA-like"]]},{"id":"NCBITaxon:29488","l":"Photorhabdus luminescens","na":1,"nb":2,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["Pfam%3APF02273","Acyl transferase"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"]]},{"id":"NCBITaxon:29491","l":"Aeromonas salmonicida subsp. salmonicida","na":1,"nb":2,"a":[["liver-bto-0000759.html","liver"]],"b":[["TED%3AAF-A0A189PGR3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A189PGR3-F1-model_v4_TED01"],["TED%3AAF-A0A0F6QDS7-F1-model_v4_TED02","TED novel fold AF-A0A0F6QDS7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:29522","l":"Brachyspira aalborgi","na":1,"nb":2,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["TED%3AAF-A0A5C8E3N2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C8E3N2-F1-model_v4_TED01"],["TED%3AAF-A0A5C8E9C6-F1-model_v4_TED01","TED novel fold AF-A0A5C8E9C6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:29559","l":"Metamycoplasma hyosynoviae","na":1,"nb":2,"a":[["joint-bto-0001686.html","joint"]],"b":[["TED%3AAF-A0A063YD07-F1-model_v4_TED02","TED novel fold AF-A0A063YD07-F1-model_v4_TED02"],["TED%3AAF-A0A4R7TZF5-F1-model_v4_TED02","TED novel fold AF-A0A4R7TZF5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:298386","l":"Photobacterium profundum SS9","na":2,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["underground-water-envo-00005792.html","underground water"]],"b":[["Pfam%3APF12558","ATP-binding cassette cobalt transporter"]]},{"id":"NCBITaxon:304371","l":"Methanocella paludicola SANAE","na":2,"nb":1,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["TED%3AAF-D1Z063-F1-model_v4_TED03","TED highly-symmetric fold AF-D1Z063-F1-model_v4_TED03"]]},{"id":"NCBITaxon:309807","l":"Salinibacter ruber DSM 13855","na":2,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["underground-water-envo-00005792.html","underground water"]],"b":[["Pfam%3APF06491","Disulphide isomerase"]]},{"id":"NCBITaxon:313594","l":"Polaribacter irgensii 23-P","na":2,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["TED%3AAF-A4BXQ4-F1-model_v4_TED01","TED novel fold AF-A4BXQ4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:314237","l":"Phyllobacterium leguminum","na":2,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"],["root-nodule-envo-01000164.html","root nodule"]],"b":[["TED%3AAF-A0A318T1W1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A318T1W1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:316058","l":"Rhodopseudomonas palustris HaA2","na":2,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["TED%3AAF-Q2IYC7-F1-model_v4_TED03","TED novel fold AF-Q2IYC7-F1-model_v4_TED03"]]},{"id":"NCBITaxon:316274","l":"Herpetosiphon aurantiacus DSM 785","na":2,"nb":1,"a":[["filament-bto-0000463.html","filament"],["joint-bto-0001686.html","joint"]],"b":[["TED%3AAF-A9AZN6-F1-model_v4_TED02","TED highly-symmetric fold AF-A9AZN6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:320771","l":"Pedosphaera parvula (strain Ellin514)","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["TED%3AAF-B9XAB4-F1-model_v4_TED02","TED highly-symmetric fold AF-B9XAB4-F1-model_v4_TED02"],["TED%3AAF-B9XFV1-F1-model_v4_TED01","TED highly-symmetric fold AF-B9XFV1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:3218","l":"Physcomitrium patens","na":2,"nb":1,"a":[["area-of-tundra-envo-00000112.html","area of tundra"],["slope-envo-00002000.html","slope"]],"b":[["TED%3AAF-A0A2K1IJQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2K1IJQ3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:322710","l":"","na":1,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["proteintraitsmech%3AELIFE109154_Orn_monoox","Metallophore-associated ornithine N5-monooxygenase family"],["proteintraitsmech%3AELIFE109154_PvdP","Pyoverdine chromophore maturation tyrosinase family"]]},{"id":"NCBITaxon:323426","l":"Jezberella montanilacus","na":1,"nb":2,"a":[["pond-envo-00000033.html","pond"]],"b":[["TED%3AAF-A0A2T0XBZ0-F1-model_v4_TED02","TED novel fold AF-A0A2T0XBZ0-F1-model_v4_TED02"],["TED%3AAF-A0A2T0XCA1-F1-model_v4_TED02","TED novel fold AF-A0A2T0XCA1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:33035","l":"Blautia producta","na":1,"nb":2,"a":[["juvenile-bto-0002168.html","juvenile"]],"b":[["TED%3AAF-A0A2S4GEH6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S4GEH6-F1-model_v4_TED01"],["TED%3AAF-A0A7G5MNY0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G5MNY0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:331272","l":"Burkholderia cenocepacia HI2424","na":2,"nb":1,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["Pfam%3APF02673","Bacitracin resistance protein BacA"]]},{"id":"NCBITaxon:332175","l":"Desulfosalsimonas propionicica","na":2,"nb":1,"a":[["inlet-envo-00000475.html","inlet"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["TED%3AAF-A0A7W0HJC5-F1-model_v4_TED03","TED novel fold AF-A0A7W0HJC5-F1-model_v4_TED03"]]},{"id":"NCBITaxon:33889","l":"Brevibacterium casei","na":2,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"]],"b":[["TED%3AAF-A0A7T2TGM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T2TGM6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:33922","l":"Mycoplasmopsis agassizii","na":1,"nb":2,"a":[["valley-envo-00000100.html","valley"]],"b":[["TED%3AAF-A0A1W1X4W5-F1-model_v4_TED01","TED novel fold AF-A0A1W1X4W5-F1-model_v4_TED01"],["TED%3AAF-A0A1W1XA50-F1-model_v4_TED02","TED novel fold AF-A0A1W1XA50-F1-model_v4_TED02"]]},{"id":"NCBITaxon:33950","l":"Thermoanaerobacterium thermosulfurigenes","na":1,"nb":2,"a":[["park-envo-00000562.html","park"]],"b":[["Pfam%3APF18565","Glycoside hydrolase family 2 C-terminal domain 5"],["Pfam%3APF00395","S-layer homology domain"]]},{"id":"NCBITaxon:342616","l":"Streptococcus agalactiae serotype III (strain COH1)","na":1,"nb":2,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["Pfam%3APF26337","Glucosyltransferase 3-like, C-terminal domain"],["Pfam%3APF26334","Glucosyltransferase 3-like, N-terminal domain"]]},{"id":"NCBITaxon:345341","l":"Kutzneria sp. 744","na":2,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"],["clay-envo-00002982.html","clay"]],"b":[["TED%3AAF-W7SU68-F1-model_v4_TED01","TED novel fold AF-W7SU68-F1-model_v4_TED01"]]},{"id":"NCBITaxon:349521","l":"","na":1,"nb":2,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["TED%3AAF-Q2SFS2-F1-model_v4_TED01","TED novel fold AF-Q2SFS2-F1-model_v4_TED01"],["TED%3AAF-Q2SI43-F1-model_v4_TED03","TED novel fold AF-Q2SI43-F1-model_v4_TED03"]]},{"id":"NCBITaxon:350688","l":"Alkaliphilus oremlandii OhILAs","na":2,"nb":1,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["Pfam%3APF18955","Domain of unknown function (DUF5698)"]]},{"id":"NCBITaxon:35703","l":"Citrobacter amalonaticus","na":2,"nb":1,"a":[["dental-plaque-bto-0000338.html","dental plaque"],["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["TED%3AAF-A0A376C300-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A376C300-F1-model_v4_TED02"]]},{"id":"NCBITaxon:363265","l":"Prevotella stercorea","na":1,"nb":2,"a":[["pig-manure-envo-00003860.html","pig manure"]],"b":[["TED%3AAF-A0A415GCN6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A415GCN6-F1-model_v4_TED04"],["TED%3AAF-A0A3R6FHW9-F1-model_v4_TED01","TED novel fold AF-A0A3R6FHW9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:368407","l":"Methanoculleus marisnigri (strain ATCC 35101 / DSM 1498 / JR1)","na":1,"nb":2,"a":[["joint-bto-0001686.html","joint"]],"b":[["Pfam%3APF27030","AbpE bacteria"],["Pfam%3APF04019","Protein of unknown function (DUF359)"]]},{"id":"NCBITaxon:37329","l":"Nocardia farcinica","na":2,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["TED%3AAF-A0A449G5H5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A449G5H5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:375286","l":"Janthinobacterium sp. (strain Marseille)","na":1,"nb":2,"a":[["large-river-biome-envo-00000887.html","large river biome"]],"b":[["Pfam%3APF06299","Protein of unknown function (DUF1045)"],["Pfam%3APF04361","Protein of unknown function (DUF494)"]]},{"id":"NCBITaxon:382514","l":"Telmatospirillum siberiense","na":2,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["peatland-envo-00000044.html","peatland"]],"b":[["TED%3AAF-A0A2N3PPB2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3PPB2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:38313","l":"Shewanella algae","na":1,"nb":2,"a":[["foot-bto-0000476.html","foot"]],"b":[["TED%3AAF-A0A1S2T8W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S2T8W3-F1-model_v4_TED01"],["TED%3AAF-A0A8A5EFG1-F1-model_v4_TED02","TED novel fold AF-A0A8A5EFG1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:389348","l":"Candidatus Protochlamydia naegleriophila","na":2,"nb":1,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["TED%3AAF-A0A0U5J6J4-F1-model_v4_TED01","TED novel fold AF-A0A0U5J6J4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:391037","l":"Salinispora arenicola CNS-205","na":2,"nb":1,"a":[["beach-sand-envo-00002138.html","beach sand"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["Pfam%3APF12072","RNase Y N-terminal region"]]},{"id":"NCBITaxon:39152","l":"Methanococcus maripaludis","na":1,"nb":2,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["Pfam%3APF02571","Precorrin-6x reductase CbiJ/CobK"],["TED%3AAF-A0A7J9PSA9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J9PSA9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:39441","l":"Methanobrevibacter arboriphilus","na":2,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["sludge-envo-00002044.html","sludge"]],"b":[["TED%3AAF-A0A843AID3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843AID3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:395494","l":"Gallionella capsiferriformans (strain ES-2)","na":1,"nb":2,"a":[["river-bed-envo-00000384.html","river bed"]],"b":[["TED%3AAF-D9SCL7-F1-model_v4_TED01","TED highly-symmetric fold AF-D9SCL7-F1-model_v4_TED01"],["TED%3AAF-D9SFM7-F1-model_v4_TED01","TED highly-symmetric fold AF-D9SFM7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:395961","l":"Cyanothece sp. PCC 7425","na":2,"nb":1,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["TED%3AAF-B8HKH7-F1-model_v4_TED01","TED highly-symmetric fold AF-B8HKH7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:39691","l":"Mycolicibacterium moriokaense","na":1,"nb":2,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["TED%3AAF-A0A370D086-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A370D086-F1-model_v4_TED01"],["TED%3AAF-A0A370D4B9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A370D4B9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:404881","l":"Albidovulum denitrificans","na":2,"nb":1,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["TED%3AAF-A0A2S8SDZ8-F1-model_v4_TED03","TED novel fold AF-A0A2S8SDZ8-F1-model_v4_TED03"]]},{"id":"NCBITaxon:404941","l":"Mycobacteroides salmoniphilum","na":1,"nb":2,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["TED%3AAF-A0A4R8SEB1-F1-model_v4_TED02","TED novel fold AF-A0A4R8SEB1-F1-model_v4_TED02"],["TED%3AAF-A0A4R8SGK3-F1-model_v4_TED01","TED novel fold AF-A0A4R8SGK3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:411461","l":"Dorea formicigenerans ATCC 27755","na":2,"nb":1,"a":[["emulsion-envo-00010506.html","emulsion"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["TED%3AAF-B0G854-F1-model_v4_TED01","TED novel fold AF-B0G854-F1-model_v4_TED01"]]},{"id":"NCBITaxon:411463","l":"Eubacterium ventriosum ATCC 27560","na":2,"nb":1,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["TED%3AAF-A5Z937-F1-model_v4_TED01","TED highly-symmetric fold AF-A5Z937-F1-model_v4_TED01"]]},{"id":"NCBITaxon:41211","l":"Desulfotomaculum sp.","na":2,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["TED%3AAF-A0A356UJQ3-F1-model_v4_TED01","TED novel fold AF-A0A356UJQ3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:41880","l":"Pycnococcus provasolii","na":1,"nb":2,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["TED%3AAF-A0A830HBX6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A830HBX6-F1-model_v4_TED02"],["TED%3AAF-A0A830HI63-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A830HI63-F1-model_v4_TED01"]]},{"id":"NCBITaxon:420247","l":"Methanobrevibacter smithii (strain ATCC 35061 / DSM 861 / OCM 144 / PS)","na":1,"nb":2,"a":[["gut-mucosa-bto-0000546.html","gut mucosa"]],"b":[["Pfam%3APF17884","Domain of unknown function (DUF5591)"],["Pfam%3APF18195","GatD N-terminal domain"]]},{"id":"NCBITaxon:420952","l":"Paraburkholderia bryophila","na":2,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["TED%3AAF-A0A7Y9WQV4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y9WQV4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:42256","l":"Rubrobacter radiotolerans","na":2,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["desert-sand-envo-00005800.html","desert sand"]],"b":[["TED%3AAF-A0A023X7L7-F1-model_v4_TED02","TED novel fold AF-A0A023X7L7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:42322","l":"Eubacterium ruminantium","na":1,"nb":2,"a":[["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["TED%3AAF-A0A1H6A208-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H6A208-F1-model_v4_TED01"],["TED%3AAF-A0A1T4Q7U0-F1-model_v4_TED01","TED novel fold AF-A0A1T4Q7U0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:425104","l":"Shewanella sediminis (strain HAW-EB3)","na":1,"nb":2,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["Pfam%3APF13286","Phosphohydrolase-associated domain"],["TED%3AAF-A8FZD8-F1-model_v4_TED01","TED novel fold AF-A8FZD8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:43671","l":"Actinotalea fermentans","na":2,"nb":1,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["TED%3AAF-A0A511YTN2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A511YTN2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:441772","l":"Clostridium botulinum (strain Langeland / NCTC 10281 / Type F)","na":1,"nb":2,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["Pfam%3APF02001","Protein of unknown function DUF134"],["Pfam%3APF06874","Firmicute fructose-1,6-bisphosphatase"]]},{"id":"NCBITaxon:443152","l":"Marinobacter algicola DG893","na":2,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["TED%3AAF-A6EY08-F1-model_v4_TED01","TED highly-symmetric fold AF-A6EY08-F1-model_v4_TED01"]]},{"id":"NCBITaxon:444157","l":"Pyrobaculum neutrophilum V24Sta","na":2,"nb":1,"a":[["silty-sediment-envo-01000119.html","silty sediment"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF01950","Fructose-1,6-bisphosphatase"]]},{"id":"NCBITaxon:44737","l":"Capnocytophaga sp.","na":1,"nb":2,"a":[["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["TED%3AAF-A0A496MK20-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A496MK20-F1-model_v4_TED01"],["TED%3AAF-A0A496MK73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A496MK73-F1-model_v4_TED01"]]},{"id":"NCBITaxon:452637","l":"Opitutus terrae (strain DSM 11246 / JCM 15787 / PB90-1)","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["TED%3AAF-B1ZX41-F1-model_v4_TED02","TED novel fold AF-B1ZX41-F1-model_v4_TED02"],["TED%3AAF-B1ZYN8-F1-model_v4_TED02","TED novel fold AF-B1ZYN8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:455632","l":"Streptomyces griseus subsp. griseus NBRC 13350","na":1,"nb":2,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["PROSITE%3APS01311","Prolipoprotein diacylglyceryl transferase signature"]]},{"id":"NCBITaxon:472","l":"Acinetobacter sp.","na":1,"nb":2,"a":[["carcass-envo-00002033.html","carcass"]],"b":[["TED%3AAF-A0A433CUV6-F1-model_v4_TED01","TED novel fold AF-A0A433CUV6-F1-model_v4_TED01"],["TED%3AAF-A0A7G3BTL8-F1-model_v4_TED01","TED novel fold AF-A0A7G3BTL8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:472759","l":"Nitrosococcus halophilus Nc 4","na":2,"nb":1,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["TED%3AAF-D5BWL1-F1-model_v4_TED01","TED highly-symmetric fold AF-D5BWL1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:474950","l":"Granulicella pectinivorans","na":2,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A1I6LYB5-F1-model_v4_TED03","TED novel fold AF-A0A1I6LYB5-F1-model_v4_TED03"]]},{"id":"NCBITaxon:476","l":"Moraxella bovis","na":1,"nb":2,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"]],"b":[["Pfam%3APF04556","DpnII restriction endonuclease"],["TED%3AAF-A0A1S9ZVN5-F1-model_v4_TED01","TED novel fold AF-A0A1S9ZVN5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":2,"nb":1,"a":[["city-envo-00000856.html","city"],["cropland-biome-envo-01000245.html","cropland biome"]],"b":[["TED%3AAF-A0A4R6CRR7-F1-model_v4_TED01","TED novel fold AF-A0A4R6CRR7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:479435","l":"Kribbella flavida DSM 17836","na":2,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["Pfam%3APF21568","1,3-alpha-isomaltosidase-like, N-terminal domain"]]},{"id":"NCBITaxon:482957","l":"","na":2,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["TED%3AAF-A0A6P2XDC0-F1-model_v4_TED01","TED novel fold AF-A0A6P2XDC0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:484019","l":"Thermosipho africanus (strain TCF52B)","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["TED%3AAF-B7IGW9-F1-model_v4_TED05","TED highly-symmetric fold AF-B7IGW9-F1-model_v4_TED05"],["TED%3AAF-B7IEF5-F1-model_v4_TED01","TED novel fold AF-B7IEF5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:487","l":"Neisseria meningitidis","na":2,"nb":1,"a":[["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["Pfam%3APF22582","Amylosucrase, C-terminal domain"]]},{"id":"NCBITaxon:487796","l":"Flavobacteria bacterium MS024-2A","na":2,"nb":1,"a":[["marine-neritic-zone-envo-00000206.html","marine neritic zone"],["coastal-plain-envo-00000090.html","coastal plain"]],"b":[["TED%3AAF-C0BK38-F1-model_v4_TED02","TED novel fold AF-C0BK38-F1-model_v4_TED02"]]},{"id":"NCBITaxon:49252","l":"Eucampia antarctica","na":1,"nb":2,"a":[["saline-water-envo-00002010.html","saline water"]],"b":[["TED%3AAF-A0A7S2RNI9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S2RNI9-F1-model_v4_TED02"],["TED%3AAF-A0A7S2SD61-F1-model_v4_TED01","TED novel fold AF-A0A7S2SD61-F1-model_v4_TED01"]]},{"id":"NCBITaxon:498214","l":"Clostridium botulinum (strain Loch Maree / Type A3)","na":1,"nb":2,"a":[["plateau-envo-00000182.html","plateau"]],"b":[["Pfam%3APF20921","Domain of unknown function DUF1846, C-terminal"],["Pfam%3APF08903","Domain of unknown function DUF1846, N-terminal"]]},{"id":"NCBITaxon:504472","l":"Spirosoma linguale DSM 74","na":2,"nb":1,"a":[["drinking-water-envo-00003064.html","drinking water"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["TED%3AAF-D2QHB9-F1-model_v4_TED01","TED highly-symmetric fold AF-D2QHB9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:507522","l":"Klebsiella variicola (strain 342)","na":1,"nb":2,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Pfam%3APF18649","EcpB C-terminal domain"],["Pfam%3APF04205","FMN-binding domain"]]},{"id":"NCBITaxon:508451","l":"Lactobacillus taiwanensis","na":1,"nb":2,"a":[["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["TED%3AAF-A0A256LG95-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A256LG95-F1-model_v4_TED04"],["TED%3AAF-A0A8A8VQ16-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8A8VQ16-F1-model_v4_TED01"]]},{"id":"NCBITaxon:515393","l":"Pseudomonas yamanorum","na":1,"nb":2,"a":[["subarctic-habitatmech-bacdive-09ded89de7.html","Subarctic"]],"b":[["TED%3AAF-A0A143GFF9-F1-model_v4_TED03","TED novel fold AF-A0A143GFF9-F1-model_v4_TED03"],["TED%3AAF-A0A1H2I658-F1-model_v4_TED02","TED novel fold AF-A0A1H2I658-F1-model_v4_TED02"]]},{"id":"NCBITaxon:517417","l":"Chlorobaculum parvum (strain DSM 263 / NCIMB 8327)","na":1,"nb":2,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["Pfam%3APF28537","Probable trigger factor, FKBP-like domain"],["Pfam%3APF10643","Photosystem P840 reaction-centre cytochrome c-551"]]},{"id":"NCBITaxon:519","l":"Bordetella parapertussis","na":2,"nb":1,"a":[["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Pfam%3APF13542","Helix-turn-helix domain of transposase family ISL3"]]},{"id":"NCBITaxon:521674","l":"Planctopirus limnophila DSM 3776","na":2,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-D5SQH0-F1-model_v4_TED01","TED novel fold AF-D5SQH0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:52560","l":"Desulfomicrobium apsheronum","na":2,"nb":1,"a":[["black-smoker-envo-00000218.html","black smoker"],["volcanic-rock-envo-00002015.html","volcanic rock"]],"b":[["TED%3AAF-A0A1I3Z6Q6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1I3Z6Q6-F1-model_v4_TED04"]]},{"id":"NCBITaxon:53463","l":"Paracoccus solventivorans","na":2,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["plain-envo-00000086.html","plain"]],"b":[["TED%3AAF-A0A1M7DMW2-F1-model_v4_TED03","TED novel fold AF-A0A1M7DMW2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:536044","l":"Methanolobus zinderi","na":1,"nb":2,"a":[["coalbed-water-habitatmech-bacdive-499e641dc2.html","Coalbed-water"]],"b":[["TED%3AAF-A0A7D5IAI6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7D5IAI6-F1-model_v4_TED01"],["TED%3AAF-A0A7D5E6R2-F1-model_v4_TED02","TED novel fold AF-A0A7D5E6R2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:555970","l":"Bifidobacterium animalis subsp. lactis (strain DSM 10140 / CCUG 37979 / JCM 10602 / LMG 18314 / NRRL B-41405 / UR1)","na":1,"nb":2,"a":[["intestinal-epithelium-bto-0000781.html","intestinal epithelium"]],"b":[["PROSITE%3APS60002","Phosphoketolase signature 1"],["PROSITE%3APS60003","Phosphoketolase signature 2"]]},{"id":"NCBITaxon:579137","l":"Methanocaldococcus vulcanius M7","na":2,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["TED%3AAF-C9RDN7-F1-model_v4_TED02","TED highly-symmetric fold AF-C9RDN7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:5823","l":"Plasmodium berghei (strain Anka)","na":1,"nb":2,"a":[["ookinete-bto-0004857.html","ookinete"]],"b":[["Pfam%3APF03092","BT1 family"],["Pfam%3APF12628","Falstatin, cysteine peptidase inhibitor"]]},{"id":"NCBITaxon:5851","l":"Plasmodium knowlesi strain H","na":2,"nb":1,"a":[["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["hypnozoite-bto-0003594.html","hypnozoite"]],"b":[["TED%3AAF-A0A6H5FUY2-F1-model_v4_TED01","TED novel fold AF-A0A6H5FUY2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:588581","l":"Ruminiclostridium papyrosolvens DSM 2782","na":2,"nb":1,"a":[["estuary-envo-00000045.html","estuary"],["sporangium-bto-0001287.html","sporangium"]],"b":[["TED%3AAF-F1TA67-F1-model_v4_TED05","TED highly-symmetric fold AF-F1TA67-F1-model_v4_TED05"]]},{"id":"NCBITaxon:59406","l":"Aromatoleum evansii","na":1,"nb":2,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF14535","AMP-binding enzyme C-terminal domain"],["Pfam%3APF12837","4Fe-4S binding domain"]]},{"id":"NCBITaxon:595453","l":"Rhodopirellula sp. SM50","na":2,"nb":1,"a":[["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"]],"b":[["TED%3AAF-A0A2A2WGR6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A2WGR6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:60480","l":"Shewanella sp. (strain MR-4)","na":1,"nb":2,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["Pfam%3APF06276","Ferric iron reductase FhuF-like transporter"],["Pfam%3APF04183","IucA / IucC family"]]},{"id":"NCBITaxon:608538","l":"Hydrogenobacter thermophilus TK-6","na":2,"nb":1,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"],["peninsula-envo-00000305.html","peninsula"]],"b":[["Pfam%3APF17805","AsnC-like ligand binding domain"]]},{"id":"NCBITaxon:6087","l":"Hydra vulgaris","na":1,"nb":2,"a":[["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["Pfam%3APF06369","Sea anemone cytotoxic protein"],["TED%3AAF-B8Y8I7-F1-model_v4_TED01","TED highly-symmetric fold AF-B8Y8I7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:616997","l":"Hoyosella altamirensis","na":2,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["cave-envo-00000067.html","cave"]],"b":[["TED%3AAF-A0A839RM00-F1-model_v4_TED02","TED novel fold AF-A0A839RM00-F1-model_v4_TED02"]]},{"id":"NCBITaxon:623280","l":"Parapedobacter luteus","na":2,"nb":1,"a":[["sewage-envo-00002018.html","sewage"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["TED%3AAF-A0A1T5FI29-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1T5FI29-F1-model_v4_TED01"]]},{"id":"NCBITaxon:642492","l":"Cellulosilyticum lentocellum (strain ATCC 49066 / DSM 5427 / NCIMB 11756 / RHM5)","na":1,"nb":2,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["TED%3AAF-F2JHU0-F1-model_v4_TED01","TED highly-symmetric fold AF-F2JHU0-F1-model_v4_TED01"],["TED%3AAF-F2JQ83-F1-model_v4_TED01","TED highly-symmetric fold AF-F2JQ83-F1-model_v4_TED01"]]},{"id":"NCBITaxon:644107","l":"Ruegeria lacuscaerulensis (strain DSM 11314 / KCTC 2953 / ITI-1157)","na":1,"nb":2,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["Pfam%3APF16867","Dimethlysulfonioproprionate lyase"],["TED%3AAF-D0CYX0-F1-model_v4_TED01","TED novel fold AF-D0CYX0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:649349","l":"Leadbetterella byssophila DSM 17132","na":2,"nb":1,"a":[["compost-envo-00002170.html","compost"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["TED%3AAF-E4RVH3-F1-model_v4_TED02","TED novel fold AF-E4RVH3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:679926","l":"Methanolacinia petrolearia DSM 11571","na":2,"nb":1,"a":[["inlet-envo-00000475.html","inlet"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["TED%3AAF-E1RJC3-F1-model_v4_TED02","TED novel fold AF-E1RJC3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:68170","l":"Lechevalieria aerocolonigenes","na":1,"nb":2,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["Pfam%3APF12902","Ferritin-like"],["TED%3AAF-A0A0F0GZM7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0F0GZM7-F1-model_v4_TED03"]]},{"id":"NCBITaxon:688246","l":"Hallella multisaccharivorax DSM 17128","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["TED%3AAF-F8N9C0-F1-model_v4_TED03","TED novel fold AF-F8N9C0-F1-model_v4_TED03"],["TED%3AAF-F8N9F2-F1-model_v4_TED01","TED novel fold AF-F8N9F2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:68892","l":"Streptococcus infantis","na":2,"nb":1,"a":[["head-bto-0000282.html","head"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["TED%3AAF-A0A0F2E1C7-F1-model_v4_TED04","TED novel fold AF-A0A0F2E1C7-F1-model_v4_TED04"]]},{"id":"NCBITaxon:693216","l":"Cronobacter turicensis z3032","na":2,"nb":1,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["TED%3AAF-C9Y1S3-F1-model_v4_TED01","TED novel fold AF-C9Y1S3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:69969","l":"Macrococcus carouselicus","na":2,"nb":1,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["TED%3AAF-A0A4R6BCC8-F1-model_v4_TED01","TED novel fold AF-A0A4R6BCC8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:7230","l":"Drosophila mojavensis","na":1,"nb":2,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"]],"b":[["Pfam%3APF10562","Calmodulin-binding domain C0 of NMDA receptor NR1 subunit"],["Pfam%3APF13428","Tetratricopeptide repeat"]]},{"id":"NCBITaxon:7425","l":"Nasonia vitripennis","na":2,"nb":1,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["TED%3AAF-A0A7M7QB08-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7M7QB08-F1-model_v4_TED04"]]},{"id":"NCBITaxon:756067","l":"Microcoleus vaginatus FGP-2","na":2,"nb":1,"a":[["desert-area-envo-00000097.html","desert area"],["seamount-envo-00000264.html","seamount"]],"b":[["TED%3AAF-F5UCE7-F1-model_v4_TED03","TED highly-symmetric fold AF-F5UCE7-F1-model_v4_TED03"]]},{"id":"NCBITaxon:756272","l":"Rubinisphaera brasiliensis DSM 5305","na":2,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["TED%3AAF-F0SH04-F1-model_v4_TED04","TED novel fold AF-F0SH04-F1-model_v4_TED04"]]},{"id":"NCBITaxon:7654","l":"Lytechinus variegatus","na":2,"nb":1,"a":[["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["Pfam%3APF02084","Bindin"]]},{"id":"NCBITaxon:78229","l":"Paracidovorax anthurii","na":1,"nb":2,"a":[["leaf-po-0025034.html","leaf"]],"b":[["TED%3AAF-A0A328ZC73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A328ZC73-F1-model_v4_TED01"],["TED%3AAF-A0A328Z0A2-F1-model_v4_TED01","TED novel fold AF-A0A328Z0A2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:794903","l":"Opitutaceae bacterium TAV5","na":2,"nb":1,"a":[["hindgut-bto-0000510.html","hindgut"],["wood-bto-0005516.html","wood"]],"b":[["TED%3AAF-W0J1Y7-F1-model_v4_TED01","TED highly-symmetric fold AF-W0J1Y7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:82367","l":"Paracoccus pantotrophus","na":2,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["Pfam%3APF17805","AsnC-like ligand binding domain"]]},{"id":"NCBITaxon:83554","l":"Chlamydia psittaci","na":2,"nb":1,"a":[["spleen-bto-0001281.html","spleen"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["Pfam%3APF01345","CLIPPER domain"]]},{"id":"NCBITaxon:83555","l":"Chlamydia abortus","na":2,"nb":1,"a":[["elementary-body-bto-0000377.html","elementary body"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["TED%3AAF-A0A5C1D8N1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C1D8N1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:865938","l":"Weeksella virosa DSM 16922","na":2,"nb":1,"a":[["urethra-bto-0001426.html","urethra"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["TED%3AAF-F0P1F3-F1-model_v4_TED01","TED novel fold AF-F0P1F3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:912594","l":"Mycolicibacterium iranicum","na":1,"nb":2,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["TED%3AAF-A0A178LVR2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A178LVR2-F1-model_v4_TED02"],["TED%3AAF-A0A178M0U6-F1-model_v4_TED01","TED novel fold AF-A0A178M0U6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:9258","l":"Ornithorhynchus anatinus","na":1,"nb":2,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"]],"b":[["Pfam%3APF08131","Defensin-like peptide family"],["Pfam%3APF17858","Platypus intermediate defensin-like peptide"]]},{"id":"NCBITaxon:933063","l":"Dichotomicrobium thermohalophilum","na":1,"nb":2,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["TED%3AAF-A0A397Q5H3-F1-model_v4_TED01","TED novel fold AF-A0A397Q5H3-F1-model_v4_TED01"],["TED%3AAF-A0A397Q636-F1-model_v4_TED02","TED novel fold AF-A0A397Q636-F1-model_v4_TED02"]]},{"id":"NCBITaxon:99656","l":"[Clostridium] fimetarium","na":1,"nb":2,"a":[["animal-waste-material-envo-00002276.html","animal waste material"]],"b":[["TED%3AAF-A0A1I0N088-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I0N088-F1-model_v4_TED02"],["TED%3AAF-A0A1I0QS44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I0QS44-F1-model_v4_TED01"]]},{"id":"UBERON:0001003","l":"skin epidermis","na":1,"nb":2,"a":[["skin-epidermis-uberon-0001003.html","skin epidermis"]],"b":[["GO%3A0008544","epidermis development"],["GO%3A0048730","epidermis morphogenesis"]]},{"id":"UBERON:0001705","l":"nail","na":2,"nb":1,"a":[["nail-uberon-0001705.html","nail"],["nails-habitatmech-gold-1d1529ead1.html","Nails"]],"b":[["GO%3A0035878","nail development"]]},{"id":"UBERON:0002073","l":"","na":2,"nb":1,"a":[["hair-follicle-habitatmech-gold-1e3f47202c.html","Hair follicle"],["hair-follicle-habitatmech-gold-b7fcb62675.html","Hair follicle"]],"b":[["GO%3A0001942","hair follicle development"]]},{"id":"UBERON:0002097","l":"skin of body","na":1,"nb":2,"a":[["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["GO%3A0043588","skin development"],["GO%3A0043589","skin morphogenesis"]]},{"id":"NCBITaxon:1001590","l":"","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["TED%3AAF-M6GW27-F1-model_v4_TED03","TED novel fold AF-M6GW27-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1003237","l":"Nitrospirillum amazonense Y2","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["TED%3AAF-G1Y2J3-F1-model_v4_TED02","TED novel fold AF-G1Y2J3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1017277","l":"","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["TED%3AAF-A0A0V8GEY0-F1-model_v4_TED01","TED novel fold AF-A0A0V8GEY0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1032","l":"Thiothrix sp.","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["TED%3AAF-A0A432UXQ4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A432UXQ4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1032505","l":"Fusobacterium sp. OBRC1","na":1,"nb":1,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["TED%3AAF-X8HXN3-F1-model_v4_TED01","TED highly-symmetric fold AF-X8HXN3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1035309","l":"Ceratocystis fimbriata CBS 114723","na":1,"nb":1,"a":[["plant-bto-0001481.html","plant"]],"b":[["TED%3AAF-A0A2C5WW72-F1-model_v4_TED01","TED novel fold AF-A0A2C5WW72-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1037377","l":"Chryseobacterium viscerum","na":1,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["TED%3AAF-A0A316W9L1-F1-model_v4_TED02","TED novel fold AF-A0A316W9L1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1038014","l":"Aquimarina amphilecti","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["TED%3AAF-A0A1H7GXR7-F1-model_v4_TED01","TED novel fold AF-A0A1H7GXR7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:103816","l":"","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A419ZLU8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A419ZLU8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:103838","l":"","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["TED%3AAF-A0A5S4FRG4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5S4FRG4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1038845","l":"","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["TED%3AAF-A0A6N8H854-F1-model_v4_TED02","TED novel fold AF-A0A6N8H854-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1038928","l":"Streptomyces xinghaiensis","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["TED%3AAF-A0A3R7FP99-F1-model_v4_TED01","TED novel fold AF-A0A3R7FP99-F1-model_v4_TED01"]]},{"id":"NCBITaxon:104205","l":"","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["TED%3AAF-A0A841ECK8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841ECK8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:104660","l":"Pinctada maxima","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["Pfam%3APF03173","Putative carbohydrate binding domain"]]},{"id":"NCBITaxon:104663","l":"","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["TED%3AAF-A0A1G7RSD9-F1-model_v4_TED01","TED novel fold AF-A0A1G7RSD9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1048396","l":"Halopenitus persicus","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["TED%3AAF-A0A1H3M4L7-F1-model_v4_TED01","TED novel fold AF-A0A1H3M4L7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1051531","l":"Saccharothrix tamanrassetensis","na":1,"nb":1,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["TED%3AAF-A0A841CPC6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841CPC6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1052260","l":"","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["TED%3AAF-A0A1H0TFA4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H0TFA4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1052585","l":"","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["TED%3AAF-G4P1P4-F1-model_v4_TED01","TED highly-symmetric fold AF-G4P1P4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1053222","l":"","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["TED%3AAF-J8G3X2-F1-model_v4_TED01","TED highly-symmetric fold AF-J8G3X2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1054202","l":"Rhodobacter viridis","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["TED%3AAF-A0A318TZ12-F1-model_v4_TED01","TED novel fold AF-A0A318TZ12-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1054217","l":"","na":1,"nb":1,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["TED%3AAF-M4YJR5-F1-model_v4_TED01","TED highly-symmetric fold AF-M4YJR5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:106654","l":"","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["TED%3AAF-A0A5Q0RRM8-F1-model_v4_TED01","TED novel fold AF-A0A5Q0RRM8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1071078","l":"Bacillus sp. NSP9.1","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["TED%3AAF-A0A6I7F721-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I7F721-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1078016","l":"","na":1,"nb":1,"a":[["resting-cell-bto-0001170.html","resting cell"]],"b":[["Pfam%3APF08028","Acyl-CoA dehydrogenase, C-terminal domain"]]},{"id":"NCBITaxon:1078050","l":"Seleniivibrio woodruffii","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["TED%3AAF-A0A4R1KEH0-F1-model_v4_TED02","TED novel fold AF-A0A4R1KEH0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1085538","l":"","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["TED%3AAF-M6TC60-F1-model_v4_TED05","TED novel fold AF-M6TC60-F1-model_v4_TED05"]]},{"id":"NCBITaxon:108980","l":"Acinetobacter ursingii","na":1,"nb":1,"a":[["foot-bto-0000476.html","foot"]],"b":[["TED%3AAF-A0A3F3LBR7-F1-model_v4_TED01","TED novel fold AF-A0A3F3LBR7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1094555","l":"Bartonella elizabethae F9251 = ATCC 49927","na":1,"nb":1,"a":[["blood-bto-0000089.html","blood"]],"b":[["TED%3AAF-J1K501-F1-model_v4_TED02","TED highly-symmetric fold AF-J1K501-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1100720","l":"Limnohabitans sp. Rim28","na":1,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["TED%3AAF-A0A2T7SZL1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T7SZL1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1107882","l":"Mesorhizobium alhagi CCNWXJ12-2","na":1,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["TED%3AAF-H0I1K0-F1-model_v4_TED01","TED novel fold AF-H0I1K0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1108595","l":"Chromobacterium vaccinii","na":1,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["TED%3AAF-A0A2L2B8V3-F1-model_v4_TED02","TED novel fold AF-A0A2L2B8V3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1111454","l":"","na":1,"nb":1,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["TED%3AAF-U7UHK7-F1-model_v4_TED01","TED novel fold AF-U7UHK7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1112204","l":"","na":1,"nb":1,"a":[["latex-bto-0000710.html","latex"]],"b":[["TED%3AAF-H6N0Q7-F1-model_v4_TED01","TED novel fold AF-H6N0Q7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1116472","l":"Methyloglobulus morosus KoM1","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["TED%3AAF-V5BKR0-F1-model_v4_TED01","TED highly-symmetric fold AF-V5BKR0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1120926","l":"Acinetobacter gerneri DSM 14967 = CIP 107464 = MTCC 9824","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["TED%3AAF-N8ZKV3-F1-model_v4_TED01","TED highly-symmetric fold AF-N8ZKV3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1120996","l":"Anaerosporobacter mobilis DSM 15930","na":1,"nb":1,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["TED%3AAF-A0A1M7NGC0-F1-model_v4_TED01","TED novel fold AF-A0A1M7NGC0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121098","l":"Phocaeicola massiliensis B84634 = Timone 84634 = DSM 17679 = JCM 13223","na":1,"nb":1,"a":[["blood-bto-0000089.html","blood"]],"b":[["TED%3AAF-U6RRG8-F1-model_v4_TED01","TED highly-symmetric fold AF-U6RRG8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121326","l":"Clostridium magnum DSM 2767","na":1,"nb":1,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["TED%3AAF-A0A162T1A8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A162T1A8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121336","l":"Thermoclostridium stercorarium subsp. thermolacticum DSM 2910","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["TED%3AAF-A0A1B1YDV6-F1-model_v4_TED02","TED novel fold AF-A0A1B1YDV6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1121424","l":"Desulfotruncus arcticus DSM 17038","na":1,"nb":1,"a":[["sea-coast-envo-00000303.html","sea coast"]],"b":[["TED%3AAF-A0A1I2Z3E3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I2Z3E3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1121426","l":"Desulfoscipio geothermicus DSM 3669","na":1,"nb":1,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["TED%3AAF-A0A1I6DXW2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I6DXW2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121898","l":"","na":1,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"]],"b":[["TED%3AAF-A0A0A2M8C2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A2M8C2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1122169","l":"Legionella shakespearei DSM 23087","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["TED%3AAF-A0A0W0YL59-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0W0YL59-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1122189","l":"Malonomonas rubra DSM 5091","na":1,"nb":1,"a":[["canal-envo-00000014.html","canal"]],"b":[["TED%3AAF-A0A1M6IYP5-F1-model_v4_TED01","TED novel fold AF-A0A1M6IYP5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1122247","l":"","na":1,"nb":1,"a":[["urethra-bto-0001426.html","urethra"]],"b":[["Pfam%3APF22422","Mannosylglycerate hydrolase MGH1-like glycoside hydrolase domain"]]},{"id":"NCBITaxon:1122252","l":"Marinospirillum celere","na":1,"nb":1,"a":[["island-envo-00000098.html","island"]],"b":[["TED%3AAF-A0A1I1DUZ3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1I1DUZ3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1123078","l":"","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["Pfam%3APF26164","Bacterial Gasdermin Family"]]},{"id":"NCBITaxon:1123282","l":"Sporobacter termitidis DSM 10068","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["TED%3AAF-A0A1M5VTW1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M5VTW1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1125876","l":"Halpernia frigidisoli","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["TED%3AAF-A0A1I3H4T1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I3H4T1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1129374","l":"Alishewanella jeotgali KCTC 22429","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["TED%3AAF-H3ZBB0-F1-model_v4_TED01","TED highly-symmetric fold AF-H3ZBB0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:113355","l":"","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["Pfam%3APF18921","Cyanophycin synthase-like N-terminal domain"]]},{"id":"NCBITaxon:1134687","l":"Klebsiella michiganensis","na":1,"nb":1,"a":[["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"]],"b":[["TED%3AAF-A0A443W129-F1-model_v4_TED01","TED novel fold AF-A0A443W129-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1141221","l":"Chryseobacterium taihuense","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["TED%3AAF-A0A4U8WD57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8WD57-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1144618","l":"Allonocardiopsis opalescens","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["TED%3AAF-A0A2T0QE02-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T0QE02-F1-model_v4_TED01"]]},{"id":"NCBITaxon:114527","l":"Mogibacterium diversum","na":1,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["TED%3AAF-A0A2S0L5I6-F1-model_v4_TED02","TED novel fold AF-A0A2S0L5I6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1148157","l":"Acinetobacter oleivorans","na":1,"nb":1,"a":[["plume-bto-0002480.html","plume"]],"b":[["TED%3AAF-A0A0B2UAV2-F1-model_v4_TED02","TED novel fold AF-A0A0B2UAV2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:115778","l":"Leuconostoc gasicomitatum","na":1,"nb":1,"a":[["research-facility-envo-00000469.html","research facility"]],"b":[["TED%3AAF-A0A7H9BD19-F1-model_v4_TED01","TED novel fold AF-A0A7H9BD19-F1-model_v4_TED01"]]},{"id":"NCBITaxon:115808","l":"Bradyrhizobium sp. ORS 285","na":1,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["TED%3AAF-A0A1Y6KEH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y6KEH3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:115979","l":"","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["TED%3AAF-A0A2N0Z186-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N0Z186-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1161919","l":"Erwinia piriflorinigrans CFBP 5888","na":1,"nb":1,"a":[["flower-bto-0000469.html","flower"]],"b":[["TED%3AAF-V5Z5E5-F1-model_v4_TED01","TED novel fold AF-V5Z5E5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1162967","l":"Diaminobutyricimonas aerilata","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["TED%3AAF-A0A2M9CH35-F1-model_v4_TED01","TED novel fold AF-A0A2M9CH35-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1163745","l":"","na":1,"nb":1,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["TED%3AAF-I0EUT8-F1-model_v4_TED01","TED novel fold AF-I0EUT8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1163748","l":"","na":1,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["Pfam%3APF13205","Bacterial Ig-like domain"]]},{"id":"NCBITaxon:1164594","l":"Massilia yuzhufengensis","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["TED%3AAF-A0A1I1LD95-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I1LD95-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1173995","l":"Parvularcula dongshanensis","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["TED%3AAF-A0A840I3S3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A840I3S3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1176176","l":"Methylobacterium haplocladii","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["TED%3AAF-A0A512INB8-F1-model_v4_TED02","TED novel fold AF-A0A512INB8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1186196","l":"Natrinema salaciae","na":1,"nb":1,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["TED%3AAF-A0A1H9QMZ8-F1-model_v4_TED01","TED novel fold AF-A0A1H9QMZ8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1188229","l":"","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["TED%3AAF-A0A1J0AGF7-F1-model_v4_TED01","TED novel fold AF-A0A1J0AGF7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1198114","l":"","na":1,"nb":1,"a":[["area-designated-as-a-nature-reserve-envo-00000363.html","area designated as a nature reserve"]],"b":[["TED%3AAF-E8X149-F1-model_v4_TED01","TED highly-symmetric fold AF-E8X149-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1210091","l":"Nocardia ninae NBRC 108245","na":1,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["TED%3AAF-A0A511MS59-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A511MS59-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1210932","l":"Peteryoungia ipomoeae","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["TED%3AAF-A0A4S8P7B5-F1-model_v4_TED01","TED novel fold AF-A0A4S8P7B5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1212765","l":"","na":1,"nb":1,"a":[["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["TED%3AAF-I7CFH3-F1-model_v4_TED01","TED novel fold AF-I7CFH3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1216006","l":"Vibrio aerogenes CECT 7868","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["TED%3AAF-A0A1M5VN06-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M5VN06-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1227498","l":"Natronococcus jeotgali DSM 18795","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["TED%3AAF-L9WM09-F1-model_v4_TED01","TED novel fold AF-L9WM09-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1236689","l":"","na":1,"nb":1,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["TED%3AAF-M9SC19-F1-model_v4_TED01","TED highly-symmetric fold AF-M9SC19-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1241906","l":"-","na":1,"nb":1,"a":[["nb-4-cell-bto-0002136.html","NB-4 cell"]],"b":[["TED%3AAF-M6ZXW8-F1-model_v4_TED01","TED highly-symmetric fold AF-M6ZXW8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1245469","l":"Bradyrhizobium oligotrophicum S58","na":1,"nb":1,"a":[["bacteroid-bto-0000109.html","bacteroid"]],"b":[["TED%3AAF-M4ZLP8-F1-model_v4_TED01","TED highly-symmetric fold AF-M4ZLP8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1262550","l":"Brevibacterium jeotgali","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["TED%3AAF-A0A2H1L8Q0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H1L8Q0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1262583","l":"Tamaricihabitans halophyticus","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["TED%3AAF-A0A4R2RDI5-F1-model_v4_TED01","TED novel fold AF-A0A4R2RDI5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1263636","l":"Microbacterium kyungheense","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["TED%3AAF-A0A543F149-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A543F149-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1267768","l":"Brevirhabdus pacifica","na":1,"nb":1,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["TED%3AAF-A0A2M9DE94-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M9DE94-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1268635","l":"Legionella oakridgensis ATCC 33761 = DSM 21215","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["TED%3AAF-W0BCQ3-F1-model_v4_TED02","TED highly-symmetric fold AF-W0BCQ3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1273541","l":"Pyrodictium delaneyi","na":1,"nb":1,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["TED%3AAF-A0A211YRF7-F1-model_v4_TED01","TED novel fold AF-A0A211YRF7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1274631","l":"Bradyrhizobium icense","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["TED%3AAF-A0A533IQI7-F1-model_v4_TED02","TED novel fold AF-A0A533IQI7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1276220","l":"Spiroplasma taiwanense CT-1","na":1,"nb":1,"a":[["cardiovascular-system-bto-0000088.html","cardiovascular system"]],"b":[["TED%3AAF-S5LY17-F1-model_v4_TED02","TED novel fold AF-S5LY17-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1276221","l":"Spiroplasma diminutum CUAS-1","na":1,"nb":1,"a":[["cardiovascular-system-bto-0000088.html","cardiovascular system"]],"b":[["TED%3AAF-S5M2Q1-F1-model_v4_TED01","TED novel fold AF-S5M2Q1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1291742","l":"","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["TED%3AAF-A0A0A1GYI0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A1GYI0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1298595","l":"Veillonella rogosae JCM 15642","na":1,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["TED%3AAF-A0A2S7YXG0-F1-model_v4_TED02","TED novel fold AF-A0A2S7YXG0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1307761","l":"","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["TED%3AAF-V5WIK3-F1-model_v4_TED01","TED highly-symmetric fold AF-V5WIK3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1324350","l":"Acinetobacter equi","na":1,"nb":1,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["TED%3AAF-A0A0N9WF70-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0N9WF70-F1-model_v4_TED01"]]},{"id":"NCBITaxon:132476","l":"","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A1H5FUT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H5FUT8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1333523","l":"Salinarchaeum sp. Harcht-Bsk1","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["TED%3AAF-R4VXQ2-F1-model_v4_TED01","TED highly-symmetric fold AF-R4VXQ2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1341157","l":"Ruminococcus flavefaciens 007c","na":1,"nb":1,"a":[["fiber-bto-0000450.html","fiber"]],"b":[["TED%3AAF-W7UF30-F1-model_v4_TED01","TED novel fold AF-W7UF30-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1342794","l":"Photobacterium sanctipauli","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["TED%3AAF-A0A2T3P194-F1-model_v4_TED01","TED novel fold AF-A0A2T3P194-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1346286","l":"","na":1,"nb":1,"a":[["hindgut-bto-0000510.html","hindgut"]],"b":[["TED%3AAF-A0A1M4VXX6-F1-model_v4_TED02","TED novel fold AF-A0A1M4VXX6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1348114","l":"Pseudoalteromonas piratica","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["TED%3AAF-A0A0A7EDY8-F1-model_v4_TED01","TED novel fold AF-A0A0A7EDY8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1365176","l":"","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["TED%3AAF-A0A7C1CCT4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C1CCT4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1424653","l":"Caminibacter pacificus","na":1,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["TED%3AAF-A0A3N1YR43-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3N1YR43-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1431546","l":"Corynebacterium aquilae DSM 44791","na":1,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["TED%3AAF-A0A1L7CFU4-F1-model_v4_TED03","TED novel fold AF-A0A1L7CFU4-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1497681","l":"","na":1,"nb":1,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["TED%3AAF-A0A841Z083-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A841Z083-F1-model_v4_TED02"]]},{"id":"NCBITaxon:150","l":"Spirochaeta isovalerica","na":1,"nb":1,"a":[["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["TED%3AAF-A0A841R6V2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841R6V2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1500506","l":"Halopolyspora algeriensis","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["TED%3AAF-A0A368VEW2-F1-model_v4_TED01","TED novel fold AF-A0A368VEW2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:150053","l":"Yersinia enterocolitica subsp. palearctica","na":1,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["TED%3AAF-A0A6M1Q6Y0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6M1Q6Y0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1507806","l":"Campylobacter fetus subsp. testudinum","na":1,"nb":1,"a":[["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["TED%3AAF-A0A2S0JEW5-F1-model_v4_TED02","TED novel fold AF-A0A2S0JEW5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:151783","l":"Cupriavidus campinensis","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["TED%3AAF-A0A556UPV6-F1-model_v4_TED01","TED novel fold AF-A0A556UPV6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1524097","l":"Massilia glaciei","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["TED%3AAF-A0A2U2HFI6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U2HFI6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1526762","l":"Vibrio sp. B183","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["TED%3AAF-A0A086WSI7-F1-model_v4_TED02","TED novel fold AF-A0A086WSI7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1550","l":"Clostridium subterminale","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["Pfam%3APF12544","Lysine-2,3-aminomutase"]]},{"id":"NCBITaxon:156133","l":"Prasinoderma coloniale","na":1,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A7R9Y3T8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7R9Y3T8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1574623","l":"Lyngbya confervoides BDU141951","na":1,"nb":1,"a":[["filament-bto-0000463.html","filament"]],"b":[["TED%3AAF-A0A0C1V1F7-F1-model_v4_TED01","TED novel fold AF-A0A0C1V1F7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:157733","l":"Alkalihalobacillus macyae","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["TED%3AAF-A0A0J6FWV9-F1-model_v4_TED01","TED novel fold AF-A0A0J6FWV9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1577902","l":"Leisingera sp. ANG-M7","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["TED%3AAF-A0A0C1IJ64-F1-model_v4_TED02","TED novel fold AF-A0A0C1IJ64-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1577905","l":"Tateyamaria sp. ANG-S1","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["TED%3AAF-A0A0B4CZX6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0B4CZX6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1585","l":"Lactobacillus delbrueckii subsp. bulgaricus","na":1,"nb":1,"a":[["pig-manure-envo-00003860.html","pig manure"]],"b":[["TED%3AAF-A0A809EIY6-F1-model_v4_TED02","TED novel fold AF-A0A809EIY6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1604","l":"Lactobacillus amylovorus","na":1,"nb":1,"a":[["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["Pfam%3APF10439","Bacteriocin class II with double-glycine leader peptide"]]},{"id":"NCBITaxon:1612149","l":"Chryseobacterium limigenitum","na":1,"nb":1,"a":[["waste-material-envo-00002264.html","waste material"]],"b":[["TED%3AAF-A0A1K2ISG6-F1-model_v4_TED01","TED novel fold AF-A0A1K2ISG6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:161879","l":"Corynebacterium kroppenstedtii","na":1,"nb":1,"a":[["breast-bto-0000149.html","breast"]],"b":[["TED%3AAF-A0A2N6TDE9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N6TDE9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1639133","l":"Citrobacter portucalensis","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["TED%3AAF-A0A7I7D4I9-F1-model_v4_TED01","TED novel fold AF-A0A7I7D4I9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1648404","l":"","na":1,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["TED%3AAF-A0A0H4VAN8-F1-model_v4_TED01","TED novel fold AF-A0A0H4VAN8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1690","l":"Bifidobacterium pseudolongum subsp. globosum","na":1,"nb":1,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["TED%3AAF-A0A4Q5B3M5-F1-model_v4_TED01","TED novel fold AF-A0A4Q5B3M5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1703352","l":"","na":1,"nb":1,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["TED%3AAF-A0A0S8JVR9-F1-model_v4_TED02","TED novel fold AF-A0A0S8JVR9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1703960","l":"Rhizobium sp. N113","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["TED%3AAF-A0A192M071-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A192M071-F1-model_v4_TED01"]]},{"id":"NCBITaxon:170673","l":"Vibrio kanaloae","na":1,"nb":1,"a":[["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["TED%3AAF-A0A4U1Z3U9-F1-model_v4_TED01","TED novel fold AF-A0A4U1Z3U9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1716141","l":"Streptomyces jeddahensis","na":1,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["TED%3AAF-A0A177HQP2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A177HQP2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:171674","l":"Inquilinus limosus","na":1,"nb":1,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"]],"b":[["TED%3AAF-A0A211ZKE4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A211ZKE4-F1-model_v4_TED03"]]},{"id":"NCBITaxon:172044","l":"Sphingomonas yabuuchiae","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["TED%3AAF-A0A147IMF7-F1-model_v4_TED02","TED novel fold AF-A0A147IMF7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1727163","l":"","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["TED%3AAF-A0A142ENK3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142ENK3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:173365","l":"Methylobacter tundripaludum","na":1,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A2S6HGL6-F1-model_v4_TED02","TED novel fold AF-A0A2S6HGL6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:173959","l":"Brevibacillus invocatus","na":1,"nb":1,"a":[["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"]],"b":[["TED%3AAF-A0A3M8C5C7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M8C5C7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:174","l":"Leptospira borgpetersenii","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["Pfam%3APF01548","Transposase"]]},{"id":"NCBITaxon:1761780","l":"Butyrivibrio sp. ob235","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["TED%3AAF-A0A1H7I3V4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H7I3V4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1761884","l":"Prevotella sp. khp1","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["TED%3AAF-A0A1H0Y2B2-F1-model_v4_TED01","TED novel fold AF-A0A1H0Y2B2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1767","l":"Mycobacterium intracellulare","na":1,"nb":1,"a":[["co-culture-habitatmech-bacdive-ff945d8a69.html","Co-culture"]],"b":[["Pfam%3APF18914","Domain of unknown function (DUF5666)"]]},{"id":"NCBITaxon:177437","l":"","na":1,"nb":1,"a":[["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["TED%3AAF-C0QA36-F1-model_v4_TED03","TED novel fold AF-C0QA36-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1795630","l":"Frondihabitans sp. PAMC 28766","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["TED%3AAF-A0A126Z0C8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A126Z0C8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1797220","l":"","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["TED%3AAF-A0A1F2Z3M8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F2Z3M8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1798185","l":"Pseudobutyrivibrio sp. UC1225","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["TED%3AAF-A0A1I5GI49-F1-model_v4_TED01","TED novel fold AF-A0A1I5GI49-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1799789","l":"Paraglaciecola hydrolytica","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["TED%3AAF-A0A135ZZ80-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A135ZZ80-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1812935","l":"Enterobacter roggenkampii","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["TED%3AAF-A0A7D6U4G9-F1-model_v4_TED01","TED novel fold AF-A0A7D6U4G9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1829","l":"Rhodococcus rhodochrous","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"]]},{"id":"NCBITaxon:1843237","l":"Sphingomonas prati","na":1,"nb":1,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["TED%3AAF-A0A7W9BV99-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W9BV99-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1852","l":"Saccharomonospora viridis","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["TED%3AAF-A0A837DC99-F1-model_v4_TED01","TED novel fold AF-A0A837DC99-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1869214","l":"Rheinheimera sp.","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["TED%3AAF-A0A2D5RQK8-F1-model_v4_TED01","TED novel fold AF-A0A2D5RQK8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1870902","l":"Leifsonia sp.","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["TED%3AAF-A0A2E0SSA9-F1-model_v4_TED02","TED novel fold AF-A0A2E0SSA9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1871043","l":"Variovorax sp.","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["TED%3AAF-A0A2E9BKC8-F1-model_v4_TED02","TED novel fold AF-A0A2E9BKC8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:187303","l":"","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["TED%3AAF-J7QPR6-F1-model_v4_TED01","TED novel fold AF-J7QPR6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:187327","l":"Acidaminococcus intestini","na":1,"nb":1,"a":[["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["TED%3AAF-C0WBZ8-F1-model_v4_TED01","TED highly-symmetric fold AF-C0WBZ8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1881060","l":"Clostridium sp. USBA 49","na":1,"nb":1,"a":[["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"]],"b":[["TED%3AAF-A0A1T4XFS6-F1-model_v4_TED02","TED novel fold AF-A0A1T4XFS6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1882750","l":"Burkholderia sp. GAS332","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["TED%3AAF-A0A1N6LVR0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1N6LVR0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1882752","l":"Singulisphaera sp. GP187","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["TED%3AAF-A0A1N6KHP4-F1-model_v4_TED02","TED novel fold AF-A0A1N6KHP4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1882832","l":"Paenibacillaceae bacterium GAS479","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["TED%3AAF-A0A1H1ZWX8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H1ZWX8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1888168","l":"Curvibacter sp.","na":1,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["TED%3AAF-A0A433BGD3-F1-model_v4_TED01","TED novel fold AF-A0A433BGD3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1890675","l":"Herbaspirillum sp.","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["TED%3AAF-A0A2E7PAN6-F1-model_v4_TED02","TED novel fold AF-A0A2E7PAN6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1904","l":"Streptomyces cyaneus","na":1,"nb":1,"a":[["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["Pfam%3APF04673","Polyketide synthesis cyclase"]]},{"id":"NCBITaxon:1907575","l":"Jatrophihabitans sp. GAS493","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["TED%3AAF-A0A286EQ27-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A286EQ27-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1908","l":"Streptomyces globisporus","na":1,"nb":1,"a":[["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["PROSITE%3APS00953","Glycosyl hydrolases family 25 active site signature"]]},{"id":"NCBITaxon:191292","l":"Rhodococcus aetherivorans","na":1,"nb":1,"a":[["bcp-1-cell-bto-0002728.html","BCP-1 cell"]],"b":[["TED%3AAF-N1LZY7-F1-model_v4_TED01","TED highly-symmetric fold AF-N1LZY7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1926630","l":"","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["TED%3AAF-A0A6I4U4Z5-F1-model_v4_TED03","TED novel fold AF-A0A6I4U4Z5-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1935","l":"Streptomyces violaceoruber","na":1,"nb":1,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["Pfam%3APF03559","NDP-hexose 2,3-dehydratase"]]},{"id":"NCBITaxon:1938870","l":"","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["TED%3AAF-A0A286BLC6-F1-model_v4_TED02","TED novel fold AF-A0A286BLC6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:195913","l":"","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["TED%3AAF-A0A1I4CVX6-F1-model_v4_TED03","TED novel fold AF-A0A1I4CVX6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1967","l":"Streptomyces kanamyceticus","na":1,"nb":1,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Pfam%3APF13579","Glycosyl transferase 4-like domain"]]},{"id":"NCBITaxon:2024860","l":"Spongiibacter sp.","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["TED%3AAF-A0A2D7WH13-F1-model_v4_TED03","TED novel fold AF-A0A2D7WH13-F1-model_v4_TED03"]]},{"id":"NCBITaxon:203","l":"Campylobacter rectus","na":1,"nb":1,"a":[["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["TED%3AAF-A0A6G5QQ81-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A6G5QQ81-F1-model_v4_TED04"]]},{"id":"NCBITaxon:2030","l":"Kibdelosporangium aridum","na":1,"nb":1,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["TED%3AAF-A0A1W1ZQL0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W1ZQL0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2051","l":"Mobiluncus curtisii","na":1,"nb":1,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["TED%3AAF-A0A7Y0UGC2-F1-model_v4_TED01","TED novel fold AF-A0A7Y0UGC2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:205918","l":"Pseudomonas syringae pv. syringae B728a","na":1,"nb":1,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["Pfam%3APF15457","Type III T3SS secreted effector HopW1-1/HopPmaA"]]},{"id":"NCBITaxon:2125990","l":"Pseudodesulfovibrio hydrargyri","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["TED%3AAF-A0A1J5N6X0-F1-model_v4_TED02","TED novel fold AF-A0A1J5N6X0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:212717","l":"","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["Pfam%3APF08453","Peptidase family M9 N-terminal"]]},{"id":"NCBITaxon:2148","l":"Acholeplasma laidlawii","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["TED%3AAF-A0A553IH20-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A553IH20-F1-model_v4_TED04"]]},{"id":"NCBITaxon:2164","l":"Methanobacterium sp.","na":1,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"]],"b":[["TED%3AAF-A0A6A8RVR7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6A8RVR7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:216591","l":"Burkholderia cenocepacia J2315","na":1,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["Pfam%3APF04199","Putative cyclase"]]},{"id":"NCBITaxon:216778","l":"Stenotrophomonas rhizophila","na":1,"nb":1,"a":[["style-bto-0001313.html","style"]],"b":[["TED%3AAF-A0A023XYG6-F1-model_v4_TED02","TED novel fold AF-A0A023XYG6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:216895","l":"Vibrio vulnificus CMCP6","na":1,"nb":1,"a":[["hela-cell-bto-0000567.html","HeLa cell"]],"b":[["Pfam%3APF18416","N-acetylglucosamine binding protein domain 2"]]},{"id":"NCBITaxon:218208","l":"Desulfatibacillum aliphaticivorans","na":1,"nb":1,"a":[["watercourse-envo-00000029.html","watercourse"]],"b":[["TED%3AAF-B8FC96-F1-model_v4_TED02","TED highly-symmetric fold AF-B8FC96-F1-model_v4_TED02"]]},{"id":"NCBITaxon:223788","l":"Balnearium lithotrophicum","na":1,"nb":1,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["TED%3AAF-A0A521D8E7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A521D8E7-F1-model_v4_TED03"]]},{"id":"NCBITaxon:2242","l":"Halobacterium salinarum","na":1,"nb":1,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["Pfam%3APF07232","Putative rep protein (DUF1424)"]]},{"id":"NCBITaxon:225324","l":"Enhydrobacter aerosaccus","na":1,"nb":1,"a":[["nectar-bto-0000537.html","nectar"]],"b":[["TED%3AAF-A0A1T4TCH1-F1-model_v4_TED01","TED novel fold AF-A0A1T4TCH1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:225849","l":"","na":1,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["TED%3AAF-B8CPC1-F1-model_v4_TED01","TED novel fold AF-B8CPC1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:225991","l":"Comamonas aquatica","na":1,"nb":1,"a":[["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["TED%3AAF-A0A8B0TG78-F1-model_v4_TED02","TED novel fold AF-A0A8B0TG78-F1-model_v4_TED02"]]},{"id":"NCBITaxon:227605","l":"","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A4U8Z7R3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8Z7R3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:229919","l":"Anaerolinea thermolimosa","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["TED%3AAF-A0A3D1JEJ6-F1-model_v4_TED03","TED novel fold AF-A0A3D1JEJ6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:230089","l":"Photorhabdus thracensis","na":1,"nb":1,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["TED%3AAF-A0A0F7LMP9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F7LMP9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:231438","l":"","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["TED%3AAF-A0A4U8YKH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8YKH3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:234621","l":"Rhodococcus erythropolis PR4","na":1,"nb":1,"a":[["joint-bto-0001686.html","joint"]],"b":[["TED%3AAF-C0ZLI2-F1-model_v4_TED01","TED novel fold AF-C0ZLI2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:243160","l":"","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["PROSITE%3APS01306","Uncharacterized protein family UPF0054 signature"]]},{"id":"NCBITaxon:243265","l":"Photorhabdus laumondii subsp. laumondii TTO1","na":1,"nb":1,"a":[["carcass-bto-0001965.html","carcass"]],"b":[["Pfam%3APF07927","HicA toxin of bacterial toxin-antitoxin,"]]},{"id":"NCBITaxon:246432","l":"Staphylococcus equorum","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["TED%3AAF-A0A1B1GAW5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1B1GAW5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:250","l":"Chryseobacterium gleum","na":1,"nb":1,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["TED%3AAF-A0A448B167-F1-model_v4_TED02","TED novel fold AF-A0A448B167-F1-model_v4_TED02"]]},{"id":"NCBITaxon:252514","l":"","na":1,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["Pfam%3APF18040","beta porphyranase A C-terminal"]]},{"id":"NCBITaxon:253239","l":"","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["TED%3AAF-A0A386XVY3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A386XVY3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:257363","l":"","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Pfam%3APF12334","Rickettsia outer membrane protein B, passenger domain"]]},{"id":"NCBITaxon:259564","l":"","na":1,"nb":1,"a":[["hypolimnion-envo-00002130.html","hypolimnion"]],"b":[["TED%3AAF-Q12W09-F1-model_v4_TED02","TED novel fold AF-Q12W09-F1-model_v4_TED02"]]},{"id":"NCBITaxon:266117","l":"","na":1,"nb":1,"a":[["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["TED%3AAF-Q1AVL5-F1-model_v4_TED02","TED highly-symmetric fold AF-Q1AVL5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:267671","l":"","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["Pfam%3APF05262","Borrelia P83/100 protein"]]},{"id":"NCBITaxon:267747","l":"Cutibacterium acnes KPA171202","na":1,"nb":1,"a":[["sebaceous-gland-bto-0001980.html","sebaceous gland"]],"b":[["Pfam%3APF27542","ArfC"]]},{"id":"NCBITaxon:272831","l":"","na":1,"nb":1,"a":[["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["Pfam%3APF27460","ATP phosphoribosyltransferase subunit HisZ C-terminal domain"]]},{"id":"NCBITaxon:272951","l":"","na":1,"nb":1,"a":[["endothelial-cell-bto-0001176.html","endothelial cell"]],"b":[["Pfam%3APF22203","Surface cell antigen Sca2 helical repeat"]]},{"id":"NCBITaxon:273384","l":"Brevibacterium aurantiacum","na":1,"nb":1,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["TED%3AAF-A0A556CK32-F1-model_v4_TED02","TED novel fold AF-A0A556CK32-F1-model_v4_TED02"]]},{"id":"NCBITaxon:278992","l":"Streptomyces ambofaciens ATCC 23877","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF00553","Cellulose binding domain"]]},{"id":"NCBITaxon:28031","l":"Lysinibacillus fusiformis","na":1,"nb":1,"a":[["organic-waste-material-envo-00002873.html","organic waste material"]],"b":[["TED%3AAF-A0A1E4QZZ2-F1-model_v4_TED04","TED novel fold AF-A0A1E4QZZ2-F1-model_v4_TED04"]]},{"id":"NCBITaxon:28113","l":"","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["TED%3AAF-A0A449I749-F1-model_v4_TED01","TED novel fold AF-A0A449I749-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28181","l":"Magnetovibrio blakemorei","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["TED%3AAF-A0A1E5Q9I9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E5Q9I9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28198","l":"Aliarcobacter cryaerophilus","na":1,"nb":1,"a":[["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["TED%3AAF-A0A2S9SPY1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S9SPY1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:284579","l":"","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["TED%3AAF-A0A3R9PEH4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R9PEH4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:288681","l":"","na":1,"nb":1,"a":[["carcass-envo-00002033.html","carcass"]],"b":[["TED%3AAF-Q4V119-F1-model_v4_TED01","TED highly-symmetric fold AF-Q4V119-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28892","l":"Methanofollis liminatans DSM 4140","na":1,"nb":1,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["TED%3AAF-J0S6K4-F1-model_v4_TED02","TED novel fold AF-J0S6K4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:291645","l":"Bacteroides nordii","na":1,"nb":1,"a":[["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["TED%3AAF-A0A413VD19-F1-model_v4_TED01","TED novel fold AF-A0A413VD19-F1-model_v4_TED01"]]},{"id":"NCBITaxon:29303","l":"Streptomyces cattleya","na":1,"nb":1,"a":[["clay-envo-00002982.html","clay"]],"b":[["Pfam%3APF22636","Fluoroacetyl-CoA-specific thioesterase"]]},{"id":"NCBITaxon:29422","l":"Legionella brunensis","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["TED%3AAF-A0A0W0RZW2-F1-model_v4_TED03","TED novel fold AF-A0A0W0RZW2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:29447","l":"Xanthomonas albilineans","na":1,"nb":1,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["TED%3AAF-A0A6P1SIK7-F1-model_v4_TED02","TED novel fold AF-A0A6P1SIK7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:29554","l":"Metamycoplasma canadense","na":1,"nb":1,"a":[["inflammatory-cell-bto-0003861.html","inflammatory cell"]],"b":[["TED%3AAF-A0A077LB01-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A077LB01-F1-model_v4_TED02"]]},{"id":"NCBITaxon:29557","l":"Mycoplasmopsis gallinarum","na":1,"nb":1,"a":[["medial-geniculate-nucleus-bto-0002670.html","medial geniculate nucleus"]],"b":[["TED%3AAF-A0A168RG78-F1-model_v4_TED05","TED novel fold AF-A0A168RG78-F1-model_v4_TED05"]]},{"id":"NCBITaxon:29581","l":"","na":1,"nb":1,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["TED%3AAF-A0A853SDQ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A853SDQ0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:298","l":"Pseudomonas marginalis","na":1,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["PROSITE%3APS00330","Hemolysin-type calcium-binding region signature"]]},{"id":"NCBITaxon:299767","l":"Enterobacter ludwigii","na":1,"nb":1,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["TED%3AAF-W0BYN9-F1-model_v4_TED01","TED highly-symmetric fold AF-W0BYN9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:300","l":"","na":1,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"]],"b":[["TED%3AAF-A0A550EU84-F1-model_v4_TED01","TED novel fold AF-A0A550EU84-F1-model_v4_TED01"]]},{"id":"NCBITaxon:301154","l":"Sphingomonas oligophenolica","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["TED%3AAF-A0A502CIK8-F1-model_v4_TED02","TED novel fold AF-A0A502CIK8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:304","l":"","na":1,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"]],"b":[["Pfam%3APF09081","Glucan 1,4-alpha-maltotetraohydrolase, domain C"]]},{"id":"NCBITaxon:306537","l":"","na":1,"nb":1,"a":[["bone-marrow-bto-0000141.html","bone marrow"]],"b":[["TED%3AAF-Q4JSH9-F1-model_v4_TED02","TED novel fold AF-Q4JSH9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:315277","l":"","na":1,"nb":1,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["Pfam%3APF05745","Chlamydia 15 kDa cysteine-rich outer membrane protein (CRPA)"]]},{"id":"NCBITaxon:315750","l":"","na":1,"nb":1,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["Pfam%3APF06569","Protein of unknown function (DUF1128)"]]},{"id":"NCBITaxon:317010","l":"Enterococcus canintestini","na":1,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"]],"b":[["TED%3AAF-A0A1L8R2Z2-F1-model_v4_TED01","TED novel fold AF-A0A1L8R2Z2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:317577","l":"Deinococcus ficus","na":1,"nb":1,"a":[["waste-treatment-plant-envo-00002272.html","waste treatment plant"]],"b":[["TED%3AAF-A0A221T2Q9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A221T2Q9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:318751","l":"Westerdykella ornata","na":1,"nb":1,"a":[["desert-sand-envo-00005800.html","desert sand"]],"b":[["TED%3AAF-A0A6A6JM44-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6A6JM44-F1-model_v4_TED02"]]},{"id":"NCBITaxon:32019","l":"Campylobacter fetus subsp. fetus","na":1,"nb":1,"a":[["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["TED%3AAF-A0A0S4SB94-F1-model_v4_TED05","TED novel fold AF-A0A0S4SB94-F1-model_v4_TED05"]]},{"id":"NCBITaxon:32021","l":"Campylobacter jejuni subsp. doylei","na":1,"nb":1,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["TED%3AAF-A0A381D4M6-F1-model_v4_TED01","TED novel fold AF-A0A381D4M6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:320388","l":"","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Pfam%3APF27460","ATP phosphoribosyltransferase subunit HisZ C-terminal domain"]]},{"id":"NCBITaxon:321267","l":"","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["TED%3AAF-A0A0P1EQT4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0P1EQT4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:321985","l":"Pseudoduganella lutea","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["TED%3AAF-A0A4V0Z4E3-F1-model_v4_TED01","TED novel fold AF-A0A4V0Z4E3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:323259","l":"Methanospirillum hungatei JF-1","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["Pfam%3APF01864","CDP-archaeol synthase"]]},{"id":"NCBITaxon:326424","l":"","na":1,"nb":1,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["Pfam%3APF14403","Circularly permuted ATP-grasp type 2"]]},{"id":"NCBITaxon:335284","l":"","na":1,"nb":1,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["Pfam%3APF10414","Sirohaem synthase dimerisation region"]]},{"id":"NCBITaxon:336203","l":"","na":1,"nb":1,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["TED%3AAF-A0A4Q4J272-F1-model_v4_TED01","TED novel fold AF-A0A4Q4J272-F1-model_v4_TED01"]]},{"id":"NCBITaxon:33967","l":"Leuconostoc mesenteroides subsp. mesenteroides","na":1,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"]],"b":[["Pfam%3APF03390","2-hydroxycarboxylate transporter family"]]},{"id":"NCBITaxon:340","l":"Xanthomonas campestris pv. campestris","na":1,"nb":1,"a":[["waste-treatment-plant-envo-00002272.html","waste treatment plant"]],"b":[["Pfam%3APF22059","Glucuronosyltransferase GumK, N-terminal domain"]]},{"id":"NCBITaxon:340047","l":"","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Pfam%3APF27879","Helix-rich protein"]]},{"id":"NCBITaxon:340345","l":"Actinoalloteichus hymeniacidonis","na":1,"nb":1,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["TED%3AAF-A0A7W9UEM7-F1-model_v4_TED01","TED novel fold AF-A0A7W9UEM7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:343509","l":"","na":1,"nb":1,"a":[["needle-bto-0000917.html","needle"]],"b":[["Pfam%3APF04345","Chorismate lyase"]]},{"id":"NCBITaxon:345631","l":"Geobacter argillaceus","na":1,"nb":1,"a":[["clay-envo-00002982.html","clay"]],"b":[["TED%3AAF-A0A562VM24-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A562VM24-F1-model_v4_TED02"]]},{"id":"NCBITaxon:351607","l":"","na":1,"nb":1,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["Pfam%3APF10647","Lipoprotein LpqB beta-propeller domain"]]},{"id":"NCBITaxon:353152","l":"","na":1,"nb":1,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"]],"b":[["TED%3AAF-Q5CXF2-F1-model_v4_TED01","TED highly-symmetric fold AF-Q5CXF2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:356829","l":"Bifidobacterium tsurumiense","na":1,"nb":1,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["TED%3AAF-A0A6L5X0P9-F1-model_v4_TED01","TED novel fold AF-A0A6L5X0P9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:357244","l":"","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Pfam%3APF01745","Isopentenyl transferase"]]},{"id":"NCBITaxon:35752","l":"Actinoplanes philippinensis","na":1,"nb":1,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["TED%3AAF-A0A1I2HI82-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I2HI82-F1-model_v4_TED02"]]},{"id":"NCBITaxon:35787","l":"Limosilactobacillus pontis","na":1,"nb":1,"a":[["pig-manure-envo-00003860.html","pig manure"]],"b":[["TED%3AAF-A0A2J6NPS8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2J6NPS8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:360911","l":"","na":1,"nb":1,"a":[["joint-bto-0001686.html","joint"]],"b":[["TED%3AAF-C4L6T8-F1-model_v4_TED04","TED highly-symmetric fold AF-C4L6T8-F1-model_v4_TED04"]]},{"id":"NCBITaxon:362787","l":"Candidatus Protochlamydia amoebophila","na":1,"nb":1,"a":[["endosymbiont-habitatmech-bacdive-7d840c7ddc.html","Endosymbiont"]],"b":[["TED%3AAF-A0A0C1H7Y9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0C1H7Y9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:36746","l":"Pseudomonas cichorii","na":1,"nb":1,"a":[["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["TED%3AAF-A0A3M4VH83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M4VH83-F1-model_v4_TED01"]]},{"id":"NCBITaxon:36841","l":"Terrisporobacter glycolicus","na":1,"nb":1,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["TED%3AAF-A0A1I3PG81-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I3PG81-F1-model_v4_TED01"]]},{"id":"NCBITaxon:370554","l":"","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["Pfam%3APF04260","Protein of unknown function (DUF436)"]]},{"id":"NCBITaxon:370973","l":"Runella defluvii","na":1,"nb":1,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["TED%3AAF-A0A7W5ZNZ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W5ZNZ4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:373","l":"","na":1,"nb":1,"a":[["trunk-bto-0001493.html","trunk"]],"b":[["TED%3AAF-A0A368P0R2-F1-model_v4_TED01","TED novel fold AF-A0A368P0R2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:373672","l":"","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["TED%3AAF-A0A1N7P9B3-F1-model_v4_TED02","TED novel fold AF-A0A1N7P9B3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:37372","l":"Helicobacter bilis","na":1,"nb":1,"a":[["ht-29-cell-bto-0000182.html","HT-29 cell"]],"b":[["TED%3AAF-A0A4U8UA27-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8UA27-F1-model_v4_TED01"]]},{"id":"NCBITaxon:375177","l":"","na":1,"nb":1,"a":[["b-lymphocyte-cell-line-bto-0001522.html","B-lymphocyte cell line"]],"b":[["Pfam%3APF16747","Surface-adhesin protein E"]]},{"id":"NCBITaxon:375451","l":"","na":1,"nb":1,"a":[["inlet-envo-00000475.html","inlet"]],"b":[["TED%3AAF-Q164W9-F1-model_v4_TED02","TED highly-symmetric fold AF-Q164W9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:378543","l":"Tumebacillus permanentifrigoris","na":1,"nb":1,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["TED%3AAF-A0A316DIT3-F1-model_v4_TED01","TED novel fold AF-A0A316DIT3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:381754","l":"","na":1,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["Pfam%3APF05985","Ethanolamine ammonia-lyase light chain (EutC)"]]},{"id":"NCBITaxon:38301","l":"Corynebacterium minutissimum","na":1,"nb":1,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["TED%3AAF-A0A376D050-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A376D050-F1-model_v4_TED01"]]},{"id":"NCBITaxon:38304","l":"Corynebacterium tuberculostearicum","na":1,"nb":1,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["TED%3AAF-A0A7U0H937-F1-model_v4_TED01","TED novel fold AF-A0A7U0H937-F1-model_v4_TED01"]]},{"id":"NCBITaxon:384602","l":"Micrococcus flavus","na":1,"nb":1,"a":[["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["TED%3AAF-A0A7W7PAI2-F1-model_v4_TED01","TED novel fold AF-A0A7W7PAI2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:384765","l":"","na":1,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["Pfam%3APF04199","Putative cyclase"]]},{"id":"NCBITaxon:388396","l":"","na":1,"nb":1,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["Pfam%3APF21868","GlcNAc-binding protein A, third domain"]]},{"id":"NCBITaxon:391038","l":"","na":1,"nb":1,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["PROSITE%3APS00921","Nitrilases / cyanide hydratase active site signature"]]},{"id":"NCBITaxon:391904","l":"","na":1,"nb":1,"a":[["breast-bto-0000149.html","breast"]],"b":[["Pfam%3APF25528","Domain of unknown function (DUF7917)"]]},{"id":"NCBITaxon:392015","l":"","na":1,"nb":1,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["TED%3AAF-A0A1I7LHN3-F1-model_v4_TED02","TED novel fold AF-A0A1I7LHN3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:393595","l":"Alcanivorax borkumensis SK2","na":1,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["TED%3AAF-Q0VNH7-F1-model_v4_TED01","TED highly-symmetric fold AF-Q0VNH7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:394935","l":"Chromobacterium haemolyticum","na":1,"nb":1,"a":[["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["TED%3AAF-A0A1W0CCE1-F1-model_v4_TED01","TED novel fold AF-A0A1W0CCE1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["Pfam%3APF13282","Domain of unknown function (DUF4070)"]]},{"id":"NCBITaxon:395963","l":"","na":1,"nb":1,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["TED%3AAF-B2IFK3-F1-model_v4_TED03","TED novel fold AF-B2IFK3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:39650","l":"Cellvibrio mixtus","na":1,"nb":1,"a":[["compost-envo-00002170.html","compost"]],"b":[["TED%3AAF-A0A266QDL6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A266QDL6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:399549","l":"Metallosphaera sedula DSM 5348","na":1,"nb":1,"a":[["solfatara-envo-00000217.html","solfatara"]],"b":[["Pfam%3APF18195","GatD N-terminal domain"]]},{"id":"NCBITaxon:399579","l":"","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["TED%3AAF-A0A830FZ95-F1-model_v4_TED01","TED novel fold AF-A0A830FZ95-F1-model_v4_TED01"]]},{"id":"NCBITaxon:40041","l":"Streptococcus equi subsp. zooepidemicus","na":1,"nb":1,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["Pfam%3APF02388","FemAB family"]]},{"id":"NCBITaxon:40215","l":"Acinetobacter junii","na":1,"nb":1,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["TED%3AAF-A0A8B4RWB2-F1-model_v4_TED01","TED novel fold AF-A0A8B4RWB2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:403833","l":"","na":1,"nb":1,"a":[["oil-envo-00002985.html","oil"]],"b":[["Pfam%3APF19328","2,4-diaminopentanoate dehydrogenase C-terminal domain"]]},{"id":"NCBITaxon:405440","l":"","na":1,"nb":1,"a":[["valley-envo-00000100.html","valley"]],"b":[["Pfam%3APF04977","Septum formation initiator"]]},{"id":"NCBITaxon:411154","l":"","na":1,"nb":1,"a":[["joint-bto-0001686.html","joint"]],"b":[["Pfam%3APF14109","GldH lipoprotein"]]},{"id":"NCBITaxon:411684","l":"","na":1,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["TED%3AAF-A9D4N0-F1-model_v4_TED02","TED novel fold AF-A9D4N0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:414684","l":"","na":1,"nb":1,"a":[["cyst-bto-0000320.html","cyst"]],"b":[["Pfam%3APF27469","ATP synthase epsilon chain C-terminal domain"]]},{"id":"NCBITaxon:420953","l":"Paraburkholderia megapolitana","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["proteintraitsmech%3AELIFE109154_GrbD","GrbD-type graminine biosynthesis protein family"]]},{"id":"NCBITaxon:422289","l":"Beggiatoa sp. PS","na":1,"nb":1,"a":[["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-A7BS81-F1-model_v4_TED01","TED highly-symmetric fold AF-A7BS81-F1-model_v4_TED01"]]},{"id":"NCBITaxon:427317","l":"Saccharolobus islandicus M.14.25","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["Pfam%3APF05165","GTP cyclohydrolase III"]]},{"id":"NCBITaxon:436308","l":"","na":1,"nb":1,"a":[["aquarium-envo-00002196.html","aquarium"]],"b":[["Pfam%3APF19045","Ligase-CoA domain"]]},{"id":"NCBITaxon:436717","l":"","na":1,"nb":1,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["TED%3AAF-D8JEH7-F1-model_v4_TED03","TED novel fold AF-D8JEH7-F1-model_v4_TED03"]]},{"id":"NCBITaxon:43675","l":"Rothia mucilaginosa","na":1,"nb":1,"a":[["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["TED%3AAF-A0A291DCT6-F1-model_v4_TED03","TED novel fold AF-A0A291DCT6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:43677","l":"Promicromonospora citrea","na":1,"nb":1,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["TED%3AAF-A0A7Y2QR62-F1-model_v4_TED01","TED novel fold AF-A0A7Y2QR62-F1-model_v4_TED01"]]},{"id":"NCBITaxon:43768","l":"Corynebacterium matruchotii","na":1,"nb":1,"a":[["archeological-site-envo-00000564.html","archeological site"]],"b":[["TED%3AAF-A0A6H9XP04-F1-model_v4_TED01","TED novel fold AF-A0A6H9XP04-F1-model_v4_TED01"]]},{"id":"NCBITaxon:44008","l":"Enterococcus cecorum","na":1,"nb":1,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["TED%3AAF-A0A200I1A2-F1-model_v4_TED01","TED novel fold AF-A0A200I1A2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:446469","l":"","na":1,"nb":1,"a":[["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-D1BCE8-F1-model_v4_TED01","TED highly-symmetric fold AF-D1BCE8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:447217","l":"","na":1,"nb":1,"a":[["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-B4UAH6-F1-model_v4_TED03","TED highly-symmetric fold AF-B4UAH6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:451","l":"Legionella micdadei","na":1,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"]],"b":[["TED%3AAF-A0A098GE29-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A098GE29-F1-model_v4_TED01"]]},{"id":"NCBITaxon:45243","l":"Capnocytophaga haemolytica","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["TED%3AAF-A0A0X8JC19-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0X8JC19-F1-model_v4_TED01"]]},{"id":"NCBITaxon:453","l":"Legionella feeleii","na":1,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["TED%3AAF-A0A378IZL6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A378IZL6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:454006","l":"Epilithonimonas hungarica","na":1,"nb":1,"a":[["oil-envo-00002985.html","oil"]],"b":[["TED%3AAF-A0A1G7J6K0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1G7J6K0-F1-model_v4_TED03"]]},{"id":"NCBITaxon:455488","l":"","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["TED%3AAF-B8J8V7-F1-model_v4_TED01","TED novel fold AF-B8J8V7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:4558","l":"Sorghum bicolor","na":1,"nb":1,"a":[["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["TED%3AAF-A0A1W0W5T3-F1-model_v4_TED02","TED novel fold AF-A0A1W0W5T3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:457570","l":"","na":1,"nb":1,"a":[["wadi-envo-00000031.html","wadi"]],"b":[["TED%3AAF-B2A1S1-F1-model_v4_TED02","TED highly-symmetric fold AF-B2A1S1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:459529","l":"Sphingobacterium siyangense","na":1,"nb":1,"a":[["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["TED%3AAF-A0A420FHV4-F1-model_v4_TED01","TED novel fold AF-A0A420FHV4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:46224","l":"Heyndrickxia sporothermodurans","na":1,"nb":1,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["TED%3AAF-A0A2T6EYG9-F1-model_v4_TED03","TED novel fold AF-A0A2T6EYG9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:463","l":"Fluoribacter dumoffii","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["TED%3AAF-A0A377G6U6-F1-model_v4_TED01","TED novel fold AF-A0A377G6U6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:463301","l":"","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["TED%3AAF-A0A1I7FWW8-F1-model_v4_TED01","TED novel fold AF-A0A1I7FWW8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:469616","l":"Fusobacterium mortiferum ATCC 9817","na":1,"nb":1,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["TED%3AAF-C3WAL7-F1-model_v4_TED02","TED novel fold AF-C3WAL7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:471514","l":"","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["TED%3AAF-A0A0N8PN50-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0N8PN50-F1-model_v4_TED03"]]},{"id":"NCBITaxon:474949","l":"","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A7W7ZBP1-F1-model_v4_TED02","TED novel fold AF-A0A7W7ZBP1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:478","l":"Moraxella nonliquefaciens","na":1,"nb":1,"a":[["disease-habitatmech-bacdive-c659c7e939.html","Disease"]],"b":[["TED%3AAF-A0A1B8PJM7-F1-model_v4_TED01","TED novel fold AF-A0A1B8PJM7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:481877","l":"","na":1,"nb":1,"a":[["microsporidian-bto-0003132.html","microsporidian"]],"b":[["TED%3AAF-B7XL67-F1-model_v4_TED01","TED novel fold AF-B7XL67-F1-model_v4_TED01"]]},{"id":"NCBITaxon:485916","l":"","na":1,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"]],"b":[["TED%3AAF-C8W2Y9-F1-model_v4_TED01","TED highly-symmetric fold AF-C8W2Y9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:488447","l":"Burkholderia contaminans","na":1,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["TED%3AAF-A0A3N8RI51-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N8RI51-F1-model_v4_TED01"]]},{"id":"NCBITaxon:490899","l":"","na":1,"nb":1,"a":[["shoreline-envo-00000486.html","shoreline"]],"b":[["TED%3AAF-B8D4A7-F1-model_v4_TED01","TED novel fold AF-B8D4A7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:491207","l":"Chryseobacterium oleae","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["TED%3AAF-A0A1I5BFN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5BFN6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:491952","l":"","na":1,"nb":1,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["proteintraitsmech%3AELIFE109154_SalSyn","Metallophore-associated bifunctional salicylate synthase family"]]},{"id":"NCBITaxon:508767","l":"","na":1,"nb":1,"a":[["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["Pfam%3APF04029","2-phosphosulpholactate phosphatase"]]},{"id":"NCBITaxon:508771","l":"Toxoplasma gondii (strain ATCC 50611 / Me49)","na":1,"nb":1,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"]],"b":[["PROSITE%3APS01005","Formate and nitrite transporters signature 1"]]},{"id":"NCBITaxon:52771","l":"Actinomyces howellii","na":1,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["TED%3AAF-A0A3S4R0T4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S4R0T4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:535722","l":"","na":1,"nb":1,"a":[["mountain-pass-envo-00000084.html","mountain pass"]],"b":[["TED%3AAF-E4V3G8-F1-model_v4_TED01","TED highly-symmetric fold AF-E4V3G8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:544406","l":"","na":1,"nb":1,"a":[["duodenum-bto-0000365.html","duodenum"]],"b":[["PROSITE%3APS01292","Uncharacterized protein family UPF0036 signature"]]},{"id":"NCBITaxon:544580","l":"Actinomyces oris","na":1,"nb":1,"a":[["archeological-site-envo-00000564.html","archeological site"]],"b":[["TED%3AAF-A0A1Q8WF60-F1-model_v4_TED01","TED novel fold AF-A0A1Q8WF60-F1-model_v4_TED01"]]},{"id":"NCBITaxon:54736","l":"Salmonella bongori","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["TED%3AAF-A0A698W123-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A698W123-F1-model_v4_TED02"]]},{"id":"NCBITaxon:553480","l":"","na":1,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"]],"b":[["Pfam%3APF06804","Outer membrane protein assembly factor BamC-like C-terminal domain"]]},{"id":"NCBITaxon:554290","l":"","na":1,"nb":1,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["Pfam%3APF08254","Threonine leader peptide"]]},{"id":"NCBITaxon:558173","l":"Corynebacterium doosanense CAU 212 = DSM 45436","na":1,"nb":1,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["TED%3AAF-A0A097IJJ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A097IJJ3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:563008","l":"","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["TED%3AAF-D7NFV4-F1-model_v4_TED01","TED novel fold AF-D7NFV4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:566549","l":"Corynebacterium matruchotii ATCC 33806","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["TED%3AAF-C0E5R2-F1-model_v4_TED02","TED highly-symmetric fold AF-C0E5R2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:568106","l":"Marinobacterium lutimaris","na":1,"nb":1,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["TED%3AAF-A0A1H5Y6J0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1H5Y6J0-F1-model_v4_TED04"]]},{"id":"NCBITaxon:569860","l":"Methylovirgula ligni","na":1,"nb":1,"a":[["wood-envo-00002040.html","wood"]],"b":[["TED%3AAF-A0A3D9Z4S9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D9Z4S9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:570156","l":"Pseudoalteromonas lipolytica","na":1,"nb":1,"a":[["leaf-lamina-bto-0000719.html","leaf lamina"]],"b":[["TED%3AAF-A0A1I7CGN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I7CGN6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:573065","l":"","na":1,"nb":1,"a":[["pond-envo-00000033.html","pond"]],"b":[["TED%3AAF-E8RUW8-F1-model_v4_TED01","TED novel fold AF-E8RUW8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:573737","l":"","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["TED%3AAF-A0A0G3IC85-F1-model_v4_TED03","TED novel fold AF-A0A0G3IC85-F1-model_v4_TED03"]]},{"id":"NCBITaxon:582855","l":"Streptomyces haliclonae","na":1,"nb":1,"a":[["shoreline-envo-00000486.html","shoreline"]],"b":[["TED%3AAF-A0A7W7BYP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W7BYP7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:585054","l":"","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Pfam%3APF08364","Bacterial translation initiation factor IF-2 associated region"]]},{"id":"NCBITaxon:5866","l":"Babesia bigemina","na":1,"nb":1,"a":[["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["TED%3AAF-A0A061D3T3-F1-model_v4_TED01","TED novel fold AF-A0A061D3T3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:589924","l":"","na":1,"nb":1,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["TED%3AAF-D3S1W1-F1-model_v4_TED01","TED novel fold AF-D3S1W1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:592015","l":"Acetomicrobium hydrogeniformans ATCC BAA-1850","na":1,"nb":1,"a":[["village-biome-envo-01000246.html","village biome"]],"b":[["TED%3AAF-A0A0T5X7S6-F1-model_v4_TED02","TED novel fold AF-A0A0T5X7S6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:59203","l":"Salmonella enterica subsp. arizonae","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["TED%3AAF-A0A3S4K1T2-F1-model_v4_TED01","TED novel fold AF-A0A3S4K1T2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:604330","l":"Parafannyhessea umbonata","na":1,"nb":1,"a":[["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"]],"b":[["TED%3AAF-A0A6N7XAR1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N7XAR1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:60894","l":"Saccharopolyspora spinosa","na":1,"nb":1,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF03559","NDP-hexose 2,3-dehydratase"]]},{"id":"NCBITaxon:610130","l":"","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["TED%3AAF-D9RA58-F1-model_v4_TED03","TED highly-symmetric fold AF-D9RA58-F1-model_v4_TED03"]]},{"id":"NCBITaxon:61645","l":"Enterobacter asburiae","na":1,"nb":1,"a":[["bone-marrow-bto-0000141.html","bone marrow"]],"b":[["TED%3AAF-A0A8B3U934-F1-model_v4_TED02","TED novel fold AF-A0A8B3U934-F1-model_v4_TED02"]]},{"id":"NCBITaxon:629741","l":"Kingella oralis ATCC 51147","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["TED%3AAF-C4GEH4-F1-model_v4_TED01","TED highly-symmetric fold AF-C4GEH4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:634436","l":"Marisediminitalea aggregata","na":1,"nb":1,"a":[["mangrove-biome-envo-01000181.html","mangrove biome"]],"b":[["TED%3AAF-A0A1M5JV92-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M5JV92-F1-model_v4_TED01"]]},{"id":"NCBITaxon:634500","l":"","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["PROSITE%3APS01090","TatD deoxyribonuclease family signature 2"]]},{"id":"NCBITaxon:636","l":"Edwardsiella tarda","na":1,"nb":1,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["Pfam%3APF05791","Bacillus haemolytic enterotoxin (HBL)"]]},{"id":"NCBITaxon:638300","l":"","na":1,"nb":1,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["TED%3AAF-C8NBX0-F1-model_v4_TED02","TED novel fold AF-C8NBX0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:639283","l":"","na":1,"nb":1,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["TED%3AAF-D6ZYI9-F1-model_v4_TED01","TED highly-symmetric fold AF-D6ZYI9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:641491","l":"Pseudodesulfovibrio mercurii","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["Pfam%3APF03599","CO dehydrogenase/acetyl-CoA synthase delta subunit"]]},{"id":"NCBITaxon:645463","l":"","na":1,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["Pfam%3APF04392","ABC transporter substrate binding protein"]]},{"id":"NCBITaxon:649760","l":"","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["TED%3AAF-D1QV56-F1-model_v4_TED02","TED novel fold AF-D1QV56-F1-model_v4_TED02"]]},{"id":"NCBITaxon:65","l":"Herpetosiphon aurantiacus","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["Pfam%3APF09520","Type II restriction endonuclease, HinfI"]]},{"id":"NCBITaxon:652103","l":"","na":1,"nb":1,"a":[["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-E6VQ23-F1-model_v4_TED02","TED novel fold AF-E6VQ23-F1-model_v4_TED02"]]},{"id":"NCBITaxon:656914","l":"Desulfonispora thiosulfatigenes DSM 11270","na":1,"nb":1,"a":[["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["TED%3AAF-A0A1W1UJ66-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W1UJ66-F1-model_v4_TED01"]]},{"id":"NCBITaxon:659425","l":"","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["TED%3AAF-A0A1M6H7B8-F1-model_v4_TED02","TED novel fold AF-A0A1M6H7B8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:663917","l":"","na":1,"nb":1,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF13435","Cytochrome c554 and c-prime"]]},{"id":"NCBITaxon:679191","l":"Prevotella amnii CRIS 21A-A","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["TED%3AAF-E1GW40-F1-model_v4_TED02","TED highly-symmetric fold AF-E1GW40-F1-model_v4_TED02"]]},{"id":"NCBITaxon:679937","l":"Bacteroides coprosuis DSM 18011","na":1,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"]],"b":[["TED%3AAF-F3ZUW4-F1-model_v4_TED02","TED novel fold AF-F3ZUW4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:688269","l":"Pseudothermotoga thermarum DSM 5069","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["TED%3AAF-F7YY41-F1-model_v4_TED02","TED highly-symmetric fold AF-F7YY41-F1-model_v4_TED02"]]},{"id":"NCBITaxon:688867","l":"Ohtaekwangia koreensis","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["TED%3AAF-A0A1T5MFB7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1T5MFB7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:693661","l":"","na":1,"nb":1,"a":[["black-smoker-envo-00000218.html","black smoker"]],"b":[["TED%3AAF-F2KRD1-F1-model_v4_TED02","TED highly-symmetric fold AF-F2KRD1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:69392","l":"Stenotrophomonas sp.","na":1,"nb":1,"a":[["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["TED%3AAF-A0A6N8APF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8APF4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:694433","l":"Saprospira grandis DSM 2844","na":1,"nb":1,"a":[["carapace-bto-0001701.html","carapace"]],"b":[["TED%3AAF-J0P380-F1-model_v4_TED01","TED highly-symmetric fold AF-J0P380-F1-model_v4_TED01"]]},{"id":"NCBITaxon:69974","l":"Mesorhizobium plurifarium","na":1,"nb":1,"a":[["hair-follicle-outer-root-sheath-bto-0003969.html","hair follicle outer root sheath"]],"b":[["PROSITE%3APS01349","Nodulation protein nodA signature"]]},{"id":"NCBITaxon:702459","l":"","na":1,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["TED%3AAF-A0A0H3E8C8-F1-model_v4_TED01","TED novel fold AF-A0A0H3E8C8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:706587","l":"","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["TED%3AAF-I4CB34-F1-model_v4_TED01","TED highly-symmetric fold AF-I4CB34-F1-model_v4_TED01"]]},{"id":"NCBITaxon:722","l":"Actinobacillus seminis","na":1,"nb":1,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"]],"b":[["TED%3AAF-A0A263HFT1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A263HFT1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:7222","l":"Drosophila grimshawi","na":1,"nb":1,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"]],"b":[["TED%3AAF-B4K2M8-F1-model_v4_TED01","TED novel fold AF-B4K2M8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["TED%3AAF-A0A5C7XIK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7XIK2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:726","l":"Haemophilus haemolyticus","na":1,"nb":1,"a":[["trunk-uberon-0002100.html","trunk"]],"b":[["TED%3AAF-A0A1B8PEV3-F1-model_v4_TED01","TED novel fold AF-A0A1B8PEV3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:742013","l":"","na":1,"nb":1,"a":[["waterfall-envo-00000040.html","waterfall"]],"b":[["TED%3AAF-F6AQI2-F1-model_v4_TED01","TED highly-symmetric fold AF-F6AQI2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:74547","l":"","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Pfam%3APF11266","Long-chain fatty aldehyde decarbonylase"]]},{"id":"NCBITaxon:74969","l":"Ferroplasma acidiphilum","na":1,"nb":1,"a":[["factory-envo-01000536.html","factory"]],"b":[["TED%3AAF-A0A7K4FNL3-F1-model_v4_TED01","TED novel fold AF-A0A7K4FNL3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:755731","l":"Clostridium sp. BNL1100","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["TED%3AAF-H2JEL4-F1-model_v4_TED02","TED highly-symmetric fold AF-H2JEL4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:758","l":"Rodentibacter pneumotropicus","na":1,"nb":1,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["TED%3AAF-A0A6L9GQA8-F1-model_v4_TED01","TED novel fold AF-A0A6L9GQA8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:758847","l":"Leptospira santarosai serovar Shermani str. LT 821","na":1,"nb":1,"a":[["renal-tubule-bto-0000343.html","renal tubule"]],"b":[["TED%3AAF-A0A097ES00-F1-model_v4_TED01","TED novel fold AF-A0A097ES00-F1-model_v4_TED01"]]},{"id":"NCBITaxon:761659","l":"","na":1,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["TED%3AAF-D5H5E0-F1-model_v4_TED03","TED novel fold AF-D5H5E0-F1-model_v4_TED03"]]},{"id":"NCBITaxon:768066","l":"","na":1,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["Pfam%3APF06339","Ectoine synthase"]]},{"id":"NCBITaxon:795797","l":"","na":1,"nb":1,"a":[["food-product-foodon-00001002.html","food product"]],"b":[["TED%3AAF-D8JCM3-F1-model_v4_TED01","TED highly-symmetric fold AF-D8JCM3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:796937","l":"Peptoanaerobacter stomatis","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["TED%3AAF-G9XC71-F1-model_v4_TED01","TED novel fold AF-G9XC71-F1-model_v4_TED01"]]},{"id":"NCBITaxon:797292","l":"Sphingobacterium alimentarium","na":1,"nb":1,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["TED%3AAF-A0A4R3VZ52-F1-model_v4_TED08","TED novel fold AF-A0A4R3VZ52-F1-model_v4_TED08"]]},{"id":"NCBITaxon:79967","l":"Erwinia pyrifoliae","na":1,"nb":1,"a":[["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["Pfam%3APF09589","HrpA pilus formation protein"]]},{"id":"NCBITaxon:82380","l":"Microbacterium oxydans","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["TED%3AAF-A0A4Y4GD74-F1-model_v4_TED02","TED novel fold AF-A0A4Y4GD74-F1-model_v4_TED02"]]},{"id":"NCBITaxon:839","l":"","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["TED%3AAF-A0A1M7DCP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M7DCP8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:85336","l":"Rothia nasimurium","na":1,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"]],"b":[["proteintraitsmech%3AELIFE109154_EntC","EntC-type catechol biosynthesis isochorismate synthase family"]]},{"id":"NCBITaxon:85831","l":"Bacteroides acidifaciens","na":1,"nb":1,"a":[["colon-bto-0000269.html","colon"]],"b":[["TED%3AAF-A0A7K3MGB4-F1-model_v4_TED01","TED novel fold AF-A0A7K3MGB4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:861865","l":"","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["TED%3AAF-A0A239BGP1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A239BGP1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:863372","l":"Herbaspirillum huttiense","na":1,"nb":1,"a":[["factory-envo-01000536.html","factory"]],"b":[["TED%3AAF-A0A4P7ADR5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P7ADR5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:863522","l":"Bryocella elongata","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A1H5ZBZ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H5ZBZ9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:865937","l":"","na":1,"nb":1,"a":[["dry-valley-envo-00000128.html","dry valley"]],"b":[["Pfam%3APF27061","Bacterial gasdermin-associated protease"]]},{"id":"NCBITaxon:866499","l":"Cloacibacillus evryensis DSM 19522","na":1,"nb":1,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["TED%3AAF-A0A010YSJ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A010YSJ4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:869210","l":"","na":1,"nb":1,"a":[["seamount-envo-00000264.html","seamount"]],"b":[["TED%3AAF-F2NQ34-F1-model_v4_TED01","TED novel fold AF-F2NQ34-F1-model_v4_TED01"]]},{"id":"NCBITaxon:883","l":"","na":1,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"]],"b":[["TED%3AAF-B8DPA3-F1-model_v4_TED01","TED novel fold AF-B8DPA3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:888743","l":"Prevotella multiformis DSM 16608","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["TED%3AAF-F0F5W8-F1-model_v4_TED02","TED novel fold AF-F0F5W8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:926690","l":"","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["Pfam%3APF28161","Fusexin 1"]]},{"id":"NCBITaxon:930943","l":"","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["TED%3AAF-F0NJI0-F1-model_v4_TED01","TED novel fold AF-F0NJI0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:93222","l":"Pandoraea sputorum","na":1,"nb":1,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"]],"b":[["TED%3AAF-A0A5E5BHU5-F1-model_v4_TED02","TED novel fold AF-A0A5E5BHU5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:936138","l":"Phorcysia thermohydrogeniphila","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["TED%3AAF-A0A4V2PDB0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A4V2PDB0-F1-model_v4_TED04"]]},{"id":"NCBITaxon:9483","l":"Callithrix jacchus","na":1,"nb":1,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["Pfam%3APF21049","Cilia- and flagella-associated protein 69, ARM repeat"]]},{"id":"NCBITaxon:94868","l":"","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["TED%3AAF-A0A419SY83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A419SY83-F1-model_v4_TED01"]]},{"id":"NCBITaxon:95485","l":"Burkholderia stabilis","na":1,"nb":1,"a":[["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["TED%3AAF-A0A4V1PSL6-F1-model_v4_TED02","TED novel fold AF-A0A4V1PSL6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:980271","l":"","na":1,"nb":1,"a":[["epibiont-habitatmech-bacdive-f4eb470a03.html","Epibiont"]],"b":[["TED%3AAF-A0A7W5H7H8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7W5H7H8-F1-model_v4_TED03"]]},{"id":"NCBITaxon:993414","l":"Naumannella halotolerans","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["TED%3AAF-A0A4R7J3W9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R7J3W9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:999552","l":"Leisingera methylohalidivorans DSM 14336","na":1,"nb":1,"a":[["marine-neritic-zone-envo-00000206.html","marine neritic zone"]],"b":[["TED%3AAF-V9VZA3-F1-model_v4_TED02","TED novel fold AF-V9VZA3-F1-model_v4_TED02"]]}]} \ No newline at end of file +{"a":"HabitatMech","b":"ProteinTraitsMech","base":{"HabitatMech":"https://culturebotai.github.io/HabitatMech/pages/habitats/","ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record="},"n":1250,"by":{"NCBITaxon":1234,"UBERON":12,"CHEBI":2,"GO":2},"terms":[{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":40,"nb":46,"a":[["liquid-water-envo-00002006.html","liquid water"],["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["laboratory-facility-envo-01001406.html","laboratory facility"],["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["biofilm-bto-0002690.html","biofilm"]],"b":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF13166","AAA domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF27533","CapK C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":36,"nb":145,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["bay-envo-00000032.html","bay"],["freshwater-biome-envo-00000873.html","freshwater biome"],["liquid-water-envo-00002006.html","liquid water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["IDPO%3A0000033","flexible linker"],["IDPO%3A0000014","order to disorder"],["IDPO%3A0000004","pre-molten globule"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"]]},{"id":"NCBITaxon:1869227","l":"bacterium","na":26,"nb":57,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["marine-water-body-envo-00001999.html","marine water body"],["watercourse-envo-00000029.html","watercourse"],["laboratory-facility-envo-01001406.html","laboratory facility"]],"b":[["TED%3AAF-A0A2D6E3L3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D6E3L3-F1-model_v4_TED02"],["TED%3AAF-A0A2D6IMF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D6IMF4-F1-model_v4_TED01"],["TED%3AAF-A0A3N5GA95-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3N5GA95-F1-model_v4_TED02"],["TED%3AAF-A0A3N5I065-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N5I065-F1-model_v4_TED01"],["TED%3AAF-A0A496UYV5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A496UYV5-F1-model_v4_TED02"],["TED%3AAF-A0A4Q3U385-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q3U385-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":27,"nb":23,"a":[["small-river-biome-envo-00000890.html","small river biome"],["factory-envo-01000536.html","factory"],["organic-waste-material-envo-00002873.html","organic waste material"],["leaf-po-0025034.html","leaf"],["milk-uberon-0001913.html","milk"],["rhizosphere-envo-00005801.html","rhizosphere"]],"b":[["Pfam%3APF08878","HamA"],["Pfam%3APF05791","Bacillus haemolytic enterotoxin (HBL)"],["Pfam%3APF10803","Spore germination GerPB"],["Pfam%3APF10737","Spore germination protein GerPC"],["Pfam%3APF10970","Spore germination protein GerPE"],["Pfam%3APF07486","Cell Wall Hydrolase"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":28,"nb":19,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["liquid-water-envo-00002006.html","liquid water"],["watercourse-envo-00000029.html","watercourse"],["compost-envo-00002170.html","compost"],["hospital-envo-00002173.html","hospital"],["human-construction-envo-00000070.html","human construction"]],"b":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"],["Pfam%3APF18173","Bacterial HORMA domain 2"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["Pfam%3APF27322","Cap8 HORMA domain"],["Pfam%3APF01526","Tn3 transposase DDE domain"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":18,"nb":16,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["Pfam%3APF16822","SGNH hydrolase-like domain, acetyltransferase AlgX"],["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"],["Pfam%3APF11182","Alginate O-acetyl transferase AlgF"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF27129","Functional amyloid protein FapB/FapC family"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":13,"nb":30,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["neutrophil-bto-0000130.html","neutrophil"],["rectum-bto-0001158.html","rectum"],["spleen-bto-0001281.html","spleen"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["Pfam%3APF08787","Alginate lyase"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF08218","Citrate lyase ligase C-terminal domain"],["Pfam%3APF13727","CoA-binding domain"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["Pfam%3APF20714","DpiA-like helix-turn-helix domain"]]},{"id":"NCBITaxon:56","l":"Sorangium cellulosum","na":27,"nb":13,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["watercourse-envo-00000029.html","watercourse"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["TED%3AAF-A0A150SQB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A150SQB4-F1-model_v4_TED01"],["TED%3AAF-A0A2L0EP96-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0EP96-F1-model_v4_TED01"],["TED%3AAF-A0A2L0F1G5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0F1G5-F1-model_v4_TED01"],["TED%3AAF-A0A2L0F230-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0F230-F1-model_v4_TED01"],["TED%3AAF-A0A4P2R1W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P2R1W3-F1-model_v4_TED01"],["TED%3AAF-A0A150P579-F1-model_v4_TED02","TED novel fold AF-A0A150P579-F1-model_v4_TED02"]]},{"id":"NCBITaxon:54","l":"Nannocystis exedens","na":22,"nb":13,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["watercourse-envo-00000029.html","watercourse"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["TED%3AAF-A0A1I2A5Z6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2A5Z6-F1-model_v4_TED01"],["TED%3AAF-A0A1I2FM38-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I2FM38-F1-model_v4_TED02"],["TED%3AAF-A0A1I2H0F9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2H0F9-F1-model_v4_TED01"],["TED%3AAF-A0A831ZMD9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A831ZMD9-F1-model_v4_TED01"],["TED%3AAF-A0A1I1T6U3-F1-model_v4_TED01","TED novel fold AF-A0A1I1T6U3-F1-model_v4_TED01"],["TED%3AAF-A0A1I1XLT5-F1-model_v4_TED02","TED novel fold AF-A0A1I1XLT5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":11,"nb":20,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["resting-cell-bto-0001170.html","resting cell"],["seedling-bto-0001228.html","seedling"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Pfam%3APF14535","AMP-binding enzyme C-terminal domain"],["Pfam%3APF13442","Cytochrome C oxidase, cbb3-type, subunit III"],["Pfam%3APF22247","Catechol 2,3-dioxygenase-like N-terminal domain"],["Pfam%3APF25371","Domain of unknown function (DUF7884)"],["Pfam%3APF19301","LigXa C-terminal domain like"],["Pfam%3APF12729","Four helix bundle sensory module for signal transduction"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":10,"nb":15,"a":[["anther-bto-0000079.html","anther"],["epithelial-cell-bto-0000414.html","epithelial cell"],["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["Pfam%3APF14562","Restriction endonuclease BglI"],["Pfam%3APF09195","Restriction endonuclease BglII/BglIII"],["Pfam%3APF09208","Restriction endonuclease MspI"]]},{"id":"NCBITaxon:10116","l":"Rattus norvegicus","na":9,"nb":1002,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["biotope-envo-00002036.html","biotope"],["farm-envo-00000078.html","farm"],["intestine-environment-envo-2100002.html","intestine environment"],["organic-material-envo-01000155.html","organic material"]],"b":[["IDPO%3A0000011","disorder to order"],["IDPO%3A0000030","entropic chain"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000033","flexible linker"],["IDPO%3A0000041","glycosylation display site"],["IDPO%3A0000003","molten globule"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":9,"nb":14,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["fresh-water-envo-00002011.html","fresh water"],["river-envo-00000022.html","river"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["Pfam%3APF03703","Bacterial PH domain"],["Pfam%3APF01322","Cytochrome C'"],["Pfam%3APF03139","Vanadium/alternative nitrogenase delta subunit"],["Pfam%3APF09527","Putative F0F1-ATPase subunit Ca2+/Mg2+ transporter"],["Pfam%3APF03270","Protein of unknown function, DUF269"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"]]},{"id":"NCBITaxon:39946","l":"Oryza sativa subsp. indica","na":13,"nb":9,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["eutrophic-water-envo-00002224.html","eutrophic water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["Pfam%3APF17538","DNA Binding Domain (C-terminal) Leafy/Floricaula"],["Pfam%3APF23703","DExH-box ATP-dependent RNA helicase DExH18, N-terminal"],["Pfam%3APF02496","ABA/WDS induced protein"],["Pfam%3APF06351","Allene oxide cyclase"],["Pfam%3APF02514","CobN/Magnesium Chelatase"],["Pfam%3APF05558","DREPP plasma membrane polypeptide"]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":12,"nb":9,"a":[["hospital-envo-00002173.html","hospital"],["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["epithelial-cell-bto-0000414.html","epithelial cell"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["meninx-bto-0000144.html","meninx"]],"b":[["Pfam%3APF19567","Capsular polysaccharide synthesis, CpsB/CapC"],["Pfam%3APF07501","G5 domain"],["Pfam%3APF13551","Winged helix-turn helix"],["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF03047","COMC family"],["Pfam%3APF04556","DpnII restriction endonuclease"]]},{"id":"NCBITaxon:10090","l":"Mus musculus","na":8,"nb":45870,"a":[["river-envo-00000022.html","river"],["animal-manure-envo-00003031.html","animal manure"],["biotope-envo-00002036.html","biotope"],["intestine-environment-envo-2100002.html","intestine environment"],["urban-biome-envo-01000249.html","urban biome"],["sediment-envo-00002007.html","sediment"]],"b":[["EC%3A1.1.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.1.98.-","With other, known, acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"]]},{"id":"NCBITaxon:1265","l":"Ruminococcus flavefaciens","na":29,"nb":8,"a":[["biofilm-envo-00002034.html","biofilm"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["TED%3AAF-A0A1H6I5C3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1H6I5C3-F1-model_v4_TED03"],["TED%3AAF-A0A1K2AQV3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1K2AQV3-F1-model_v4_TED01"],["TED%3AAF-A0A1M7IZN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M7IZN6-F1-model_v4_TED01"],["TED%3AAF-A0A1H6IY18-F1-model_v4_TED01","TED novel fold AF-A0A1H6IY18-F1-model_v4_TED01"],["TED%3AAF-A0A1K1WYY5-F1-model_v4_TED01","TED novel fold AF-A0A1K1WYY5-F1-model_v4_TED01"],["TED%3AAF-A0A1K2C3A7-F1-model_v4_TED01","TED novel fold AF-A0A1K2C3A7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":17,"nb":8,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["hospital-envo-00002173.html","hospital"],["egg-food-product-foodon-00001274.html","egg food product"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["Pfam%3APF01721","Class II bacteriocin"],["Pfam%3APF13700","Domain of unknown function (DUF4158)"],["Pfam%3APF07478","D-ala D-ala ligase C-terminus"],["Pfam%3APF01820","D-ala D-ala ligase N-terminus"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"],["PROSITE%3APS00843","D-alanine--D-alanine ligase signature 1"]]},{"id":"NCBITaxon:210","l":"Helicobacter pylori","na":8,"nb":9,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["hospital-envo-00002173.html","hospital"],["duodenum-bto-0000365.html","duodenum"],["gastric-juice-bto-0000501.html","gastric juice"],["gastric-mucosa-bto-0001308.html","gastric mucosa"],["gastric-ulcer-bto-0002990.html","gastric ulcer"]],"b":[["Pfam%3APF18025","Alpha-(1,3)-fucosyltransferase FucT N-terminal domain"],["Pfam%3APF18971","CagA protein"],["Pfam%3APF03507","CagA exotoxin phosphopeptide substrate mimic region"],["Pfam%3APF02691","Vacuolating cyotoxin beta-helical domain"],["TED%3AAF-A0A2T6UWI4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T6UWI4-F1-model_v4_TED01"],["TED%3AAF-A0A1Q9JB12-F1-model_v4_TED01","TED novel fold AF-A0A1Q9JB12-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":8,"nb":8,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["lab-synthesis-habitatmech-bacdive-0e92e77cd4.html","Lab-synthesis"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["oil-spill-envo-00002061.html","oil spill"],["temperate-envo-01000206.html","temperate"]],"b":[["Pfam%3APF01890","Cobalamin synthesis G C-terminus"],["Pfam%3APF11761","Cobalamin biosynthesis central region"],["Pfam%3APF11760","Cobalamin synthesis G N-terminal"],["Pfam%3APF02570","Precorrin-8X methylmutase"],["PROSITE%3APS00304","Small, acid-soluble spore proteins, alpha/beta type, signature 1"],["PROSITE%3APS00684","Small, acid-soluble spore proteins, alpha/beta type, signature 2"]]},{"id":"NCBITaxon:165179","l":"Segatella copri","na":7,"nb":13,"a":[["biofilm-envo-00002034.html","biofilm"],["juvenile-bto-0002168.html","juvenile"],["rumen-uberon-0007365.html","rumen"],["tongue-bto-0001385.html","tongue"],["vaginal-fluid-bto-0003084.html","vaginal fluid"],["animal-litter-envo-00002191.html","animal litter"]],"b":[["TED%3AAF-A0A3R6DW71-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3R6DW71-F1-model_v4_TED02"],["TED%3AAF-A0A3R6EGS2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R6EGS2-F1-model_v4_TED01"],["TED%3AAF-A0A5Q5FTM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Q5FTM4-F1-model_v4_TED01"],["TED%3AAF-A0A3R5WNG5-F1-model_v4_TED02","TED novel fold AF-A0A3R5WNG5-F1-model_v4_TED02"],["TED%3AAF-A0A3R5YKW9-F1-model_v4_TED01","TED novel fold AF-A0A3R5YKW9-F1-model_v4_TED01"],["TED%3AAF-A0A3R6FRY2-F1-model_v4_TED01","TED novel fold AF-A0A3R6FRY2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":10,"nb":7,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"]],"b":[["Pfam%3APF04439","Streptomycin adenylyltransferase"],["TED%3AAF-A0A696J2C3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A696J2C3-F1-model_v4_TED01"],["TED%3AAF-A0A825M6H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A825M6H4-F1-model_v4_TED01"],["TED%3AAF-A0A5T0SBG5-F1-model_v4_TED01","TED novel fold AF-A0A5T0SBG5-F1-model_v4_TED01"],["TED%3AAF-A0A698JVM3-F1-model_v4_TED03","TED novel fold AF-A0A698JVM3-F1-model_v4_TED03"],["TED%3AAF-A0A824N1N8-F1-model_v4_TED01","TED novel fold AF-A0A824N1N8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":7,"nb":10,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["pseudostem-bto-0005992.html","pseudostem"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["TED%3AAF-A0A5T2E4X7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5T2E4X7-F1-model_v4_TED01"],["TED%3AAF-A0A5Y4BP44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Y4BP44-F1-model_v4_TED01"],["TED%3AAF-A0A623P6F3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A623P6F3-F1-model_v4_TED02"],["TED%3AAF-A0A721BDS7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A721BDS7-F1-model_v4_TED02"],["TED%3AAF-A0A743P324-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A743P324-F1-model_v4_TED01"],["TED%3AAF-A0A757VWR3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A757VWR3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1314","l":"Streptococcus pyogenes","na":9,"nb":7,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"],["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"],["epithelial-cell-bto-0000414.html","epithelial cell"],["nasopharynx-bto-0000662.html","nasopharynx"],["skin-of-body-uberon-0002097.html","skin of body"],["throat-bto-0000828.html","throat"]],"b":[["Pfam%3APF13585","CHU_C Type IX secretion signal domain"],["Pfam%3APF24547","Domain of unknown function (DUF7601)"],["Pfam%3APF08998","Bacterial epsilon antitoxin"],["Pfam%3APF06280","Fn3-like domain"],["Pfam%3APF02274","Arginine deiminase"],["Pfam%3APF13734","Spi protease inhibitor"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":7,"nb":7,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["liquid-water-envo-00002006.html","liquid water"],["crown-gall-bto-0000303.html","crown gall"],["finger-bto-0004669.html","finger"],["resting-cell-bto-0001170.html","resting cell"],["water-scum-envo-00005794.html","water scum"]],"b":[["Pfam%3APF19443","DAHL domain"],["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"],["Pfam%3APF03524","Conjugal transfer protein"],["Pfam%3APF27439","Chaperone protein DnaJ C-terminal region"],["Pfam%3APF10907","Protein of unknown function (DUF2749)"],["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":19,"nb":6,"a":[["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["bone-element-uberon-0001474.html","bone element"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF10779","Haemolysin XhlA"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF08181","DegQ (SacQ) family"],["Pfam%3APF08057","Erythromycin resistance leader peptide"],["Pfam%3APF14867","Lantibiotic alpha"]]},{"id":"NCBITaxon:1409","l":"Bacillus sp. (in: firmicutes)","na":16,"nb":6,"a":[["biofilm-envo-00002034.html","biofilm"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["low-tide-zone-envo-00000319.html","low tide zone"],["organic-waste-material-envo-00002873.html","organic waste material"],["rhizosphere-envo-00005801.html","rhizosphere"],["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["Pfam%3APF02903","Alpha amylase, N-terminal ig-like domain"],["Pfam%3APF12123","PlyG Cell wall binding domain"],["Pfam%3APF24517","Carbohydrate-binding module family 96"],["Pfam%3APF07827","KNTase C-terminal domain"],["TED%3AAF-A0A3D0E1V5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D0E1V5-F1-model_v4_TED01"],["TED%3AAF-A0A3D5U4K3-F1-model_v4_TED01","TED novel fold AF-A0A3D5U4K3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:40324","l":"Stenotrophomonas maltophilia","na":15,"nb":6,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["catheter-device-ncit-c50344.html","Catheter Device"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["seedling-bto-0001228.html","seedling"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["TED%3AAF-A0A2U4H7T5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2U4H7T5-F1-model_v4_TED02"],["TED%3AAF-A0A2W6G5X3-F1-model_v4_TED01","TED novel fold AF-A0A2W6G5X3-F1-model_v4_TED01"],["TED%3AAF-A0A2W6IKS3-F1-model_v4_TED02","TED novel fold AF-A0A2W6IKS3-F1-model_v4_TED02"],["TED%3AAF-A0A7D0KRT5-F1-model_v4_TED03","TED novel fold AF-A0A7D0KRT5-F1-model_v4_TED03"],["TED%3AAF-A0A7T8PWR1-F1-model_v4_TED05","TED novel fold AF-A0A7T8PWR1-F1-model_v4_TED05"]]},{"id":"NCBITaxon:1397","l":"Niallia circulans","na":12,"nb":6,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["organic-waste-material-envo-00002873.html","organic waste material"],["rhizosphere-envo-00005801.html","rhizosphere"],["cultivated-environment-envo-01000311.html","cultivated environment"],["sludge-envo-00002044.html","sludge"]],"b":[["Pfam%3APF03423","Carbohydrate binding domain (family 25)"],["Pfam%3APF13199","Glycosyl hydrolase family 66"],["Pfam%3APF14399","Butirosin biosynthesis protein H, N-terminal"],["Pfam%3APF19634","Family of unknown function (DUF6137)"],["PROSITE%3APS60000","Chitosanases families 46 and 80 active sites signature"],["TED%3AAF-A0A0J1IR10-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0J1IR10-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1496","l":"Clostridioides difficile","na":6,"nb":10,"a":[["hospital-envo-00002173.html","hospital"],["feces-uberon-0001988.html","feces"],["leukocyte-bto-0000751.html","leukocyte"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["intestine-environment-envo-2100002.html","intestine environment"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["Pfam%3APF18671","4-Hydroxyphenylacetate decarboxylase subunit gamma N-terminal"],["Pfam%3APF00302","Chloramphenicol acetyltransferase"],["Pfam%3APF18524","High potential iron-sulfur protein like"],["Pfam%3APF06050","2-hydroxyglutaryl-CoA dehydratase, D-component"],["PROSITE%3APS00100","Chloramphenicol acetyltransferase active site"],["Pfam%3APF01473","Putative cell wall binding repeat"]]},{"id":"NCBITaxon:727","l":"Haemophilus influenzae","na":9,"nb":6,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["head-bto-0000282.html","head"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["Pfam%3APF06808","Tripartite ATP-independent periplasmic transporter, DctM component"],["Pfam%3APF04290","Tripartite ATP-independent periplasmic transporters, DctQ component"],["Pfam%3APF09226","Restriction endonuclease HincII"],["Pfam%3APF09520","Type II restriction endonuclease, HinfI"],["Pfam%3APF24077","Immunoglobulin A1 protease autotransporter domain 2"],["PROSITE%3APS01068","OmpA-like domain"]]},{"id":"NCBITaxon:1305","l":"Streptococcus sanguinis","na":6,"nb":7,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["throat-bto-0000828.html","throat"],["geographic-feature-envo-00000000.html","geographic feature"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Pfam%3APF09254","FokI, cleavage domain"],["Pfam%3APF02981","FokI, recognition domain, subdomain 1"],["Pfam%3APF02980","FokI, recognition domain, subdomain 2"],["Pfam%3APF07501","G5 domain"],["Pfam%3APF07581","The GLUG motif"],["TED%3AAF-A0A7H8V358-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H8V358-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1502","l":"Clostridium perfringens","na":7,"nb":6,"a":[["small-river-biome-envo-00000890.html","small river biome"],["animal-house-envo-00003040.html","animal house"],["ileum-bto-0000620.html","ileum"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["Pfam%3APF08307","Glycosyl hydrolase family 98 C-terminal domain"],["Pfam%3APF08306","Glycosyl hydrolase family 98"],["Pfam%3APF12645","Helix-turn-helix domain"],["Pfam%3APF03505","Clostridium enterotoxin"],["Pfam%3APF10960","BhlA holin family"],["TED%3AAF-A0A140GRT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A140GRT8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1510","l":"Thermoclostridium stercorarium","na":6,"nb":7,"a":[["small-river-biome-envo-00000890.html","small river biome"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"],["rock-envo-00001995.html","rock"],["sulfur-spring-envo-00000126.html","sulfur spring"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["Pfam%3APF07523","Bacterial Ig-like domain (group 3)"],["Pfam%3APF03442","Carbohydrate binding domain X2"],["Pfam%3APF00457","Glycosyl hydrolases family 11"],["Pfam%3APF03422","Carbohydrate binding module (family 6)"],["PROSITE%3APS00776","Glycosyl hydrolases family 11 (GH11) active site signature 1"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"]]},{"id":"NCBITaxon:1871047","l":"Chryseobacterium sp.","na":6,"nb":7,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["leaf-po-0025034.html","leaf"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["humid-habitatmech-bacdive-0fa0234f43.html","Humid"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["TED%3AAF-A0A2W6XQ62-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W6XQ62-F1-model_v4_TED01"],["TED%3AAF-A0A2W6YLD3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2W6YLD3-F1-model_v4_TED02"],["TED%3AAF-A0A5N7U1L3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5N7U1L3-F1-model_v4_TED01"],["TED%3AAF-A0A3D4JZX5-F1-model_v4_TED04","TED novel fold AF-A0A3D4JZX5-F1-model_v4_TED04"],["TED%3AAF-A0A3N7GZ20-F1-model_v4_TED01","TED novel fold AF-A0A3N7GZ20-F1-model_v4_TED01"],["TED%3AAF-A0A5N7YYR2-F1-model_v4_TED01","TED novel fold AF-A0A5N7YYR2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":16,"nb":5,"a":[["fresh-water-envo-00002011.html","fresh water"],["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"]],"b":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF02963","Restriction endonuclease EcoRI"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["PROSITE%3APS00974","Mannitol dehydrogenases signature"],["PROSITE%3APS00567","Phosphoribulokinase signature"]]},{"id":"NCBITaxon:1598","l":"Limosilactobacillus reuteri","na":14,"nb":5,"a":[["cecum-mucosa-bto-0000213.html","cecum mucosa"],["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["ileum-bto-0000620.html","ileum"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"]],"b":[["TED%3AAF-A0A6N1EMN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N1EMN7-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2V3C3-F1-model_v4_TED01","TED novel fold AF-A0A1Y2V3C3-F1-model_v4_TED01"],["TED%3AAF-A0A848BUA9-F1-model_v4_TED01","TED novel fold AF-A0A848BUA9-F1-model_v4_TED01"],["TED%3AAF-A0A855XJ18-F1-model_v4_TED01","TED novel fold AF-A0A855XJ18-F1-model_v4_TED01"],["TED%3AAF-Q6WUB1-F1-model_v4_TED03","TED novel fold AF-Q6WUB1-F1-model_v4_TED03"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":14,"nb":5,"a":[["watercourse-envo-00000029.html","watercourse"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["leaf-po-0025034.html","leaf"]],"b":[["TED%3AAF-A0A4Y6CF56-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y6CF56-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6CNZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Y6CNZ1-F1-model_v4_TED02"],["TED%3AAF-A0A7Y4IIX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4IIX4-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6B7F9-F1-model_v4_TED01","TED novel fold AF-A0A4Y6B7F9-F1-model_v4_TED01"],["TED%3AAF-A0A7Y4IR70-F1-model_v4_TED01","TED novel fold AF-A0A7Y4IR70-F1-model_v4_TED01"]]},{"id":"NCBITaxon:239","l":"Flavobacterium sp.","na":5,"nb":13,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["mud-envo-01000001.html","mud"],["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"],["orchard-envo-00000115.html","orchard"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["Pfam%3APF21331","Isoamylase, C-terminal"],["TED%3AAF-A0A2E4PC55-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E4PC55-F1-model_v4_TED02"],["TED%3AAF-A0A2E4PGC5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4PGC5-F1-model_v4_TED01"],["TED%3AAF-A0A2E4PMB7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E4PMB7-F1-model_v4_TED02"],["TED%3AAF-A0A355BEV2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A355BEV2-F1-model_v4_TED02"],["TED%3AAF-A0A519QLA6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A519QLA6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":13,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"],["midgut-bto-0000863.html","midgut"],["paddy-field-envo-00000297.html","paddy field"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF03173","Putative carbohydrate binding domain"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"],["Pfam%3APF06438","Heme-binding protein A (HasA)"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF05247","Flagellar transcriptional activator (FlhD)"]]},{"id":"NCBITaxon:224911","l":"Bradyrhizobium diazoefficiens USDA 110","na":5,"nb":10,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["microbial-mat-material-envo-01000157.html","microbial mat material"],["agricultural-soil-envo-00002259.html","agricultural soil"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["Pfam%3APF14715","N-terminal domain of cytochrome oxidase-cbb3, FixP"],["Pfam%3APF03886","ABC-type transport auxiliary lipoprotein component"],["Pfam%3APF10649","Protein of unknown function (DUF2478)"],["Pfam%3APF01924","Hydrogenase formation hypA family"],["PROSITE%3APS00882","Nickel-dependent hydrogenases b-type cytochrome subunit signature 1"]]},{"id":"NCBITaxon:1667","l":"Arthrobacter sp.","na":9,"nb":5,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["leaf-po-0025034.html","leaf"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["Pfam%3APF14031","Putative serine dehydratase domain"],["Pfam%3APF02449","Beta-galactosidase"],["Pfam%3APF08533","Beta-galactosidase C-terminal domain"],["Pfam%3APF08532","Beta-galactosidase trimerisation domain"],["TED%3AAF-A0A3C2BWN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C2BWN3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":5,"nb":6,"a":[["liquid-water-envo-00002006.html","liquid water"],["food-spoiled-foodon-00003366.html","food (spoiled)"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"]],"b":[["Pfam%3APF14525","AraC-binding-like domain"],["Pfam%3APF06139","BphX-like"],["Pfam%3APF13340","Putative transposase of IS4/5 family (DUF4096)"],["Pfam%3APF11794","4-hydroxyphenylacetate 3-hydroxylase N terminal"],["Pfam%3APF03241","4-hydroxyphenylacetate 3-hydroxylase C terminal"],["TED%3AAF-A0A4S3H3T1-F1-model_v4_TED02","TED novel fold AF-A0A4S3H3T1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:391625","l":"Plesiocystis pacifica SIR-1","na":5,"nb":6,"a":[["coral-reef-envo-00000150.html","coral reef"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["bulk-soil-envo-00005802.html","bulk soil"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-A6FXI2-F1-model_v4_TED01","TED highly-symmetric fold AF-A6FXI2-F1-model_v4_TED01"],["TED%3AAF-A6G0J0-F1-model_v4_TED01","TED highly-symmetric fold AF-A6G0J0-F1-model_v4_TED01"],["TED%3AAF-A6G9Q2-F1-model_v4_TED01","TED highly-symmetric fold AF-A6G9Q2-F1-model_v4_TED01"],["TED%3AAF-A6G861-F1-model_v4_TED02","TED novel fold AF-A6G861-F1-model_v4_TED02"],["TED%3AAF-A6GGD7-F1-model_v4_TED01","TED novel fold AF-A6GGD7-F1-model_v4_TED01"],["TED%3AAF-A6GI73-F1-model_v4_TED02","TED novel fold AF-A6GI73-F1-model_v4_TED02"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":5,"nb":6,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["pseudostem-bto-0005992.html","pseudostem"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["Pfam%3APF02929","Beta galactosidase small chain"],["Pfam%3APF27279","Fumarate--diaminopropanoate ligase C-terminal domain"],["Pfam%3APF18024","Helix-turn-helix domain"],["Pfam%3APF16353","Beta-galactosidase, domain 4"],["PROSITE%3APS00594","Aromatic amino acids permeases signature"],["PROSITE%3APS00853","Beta-eliminating lyases pyridoxal-phosphate attachment site"]]},{"id":"NCBITaxon:1318","l":"Streptococcus parasanguinis","na":5,"nb":5,"a":[["biofilm-envo-00002034.html","biofilm"],["geographic-feature-envo-00000000.html","geographic feature"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"],["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["Pfam%3APF26337","Glucosyltransferase 3-like, C-terminal domain"],["Pfam%3APF26334","Glucosyltransferase 3-like, N-terminal domain"],["Pfam%3APF22145","GtfA extended beta-sheet domain"],["Pfam%3APF27244","GtfB middle domain"],["Pfam%3APF04286","Protein of unknown function (DUF445)"]]},{"id":"NCBITaxon:1393","l":"Brevibacillus brevis","na":5,"nb":5,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["Pfam%3APF03306","Alpha-acetolactate decarboxylase"],["Pfam%3APF05384","Sensor protein DegS"],["TED%3AAF-A0A2Z4MK38-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z4MK38-F1-model_v4_TED01"],["TED%3AAF-A0A2Z4MPQ6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2Z4MPQ6-F1-model_v4_TED02"],["TED%3AAF-A0A517IGN3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A517IGN3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:39947","l":"Oryza sativa subsp. japonica","na":4,"nb":158,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["large-river-biome-envo-00000887.html","large river biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"],["river-bed-envo-00000384.html","river bed"]],"b":[["Pfam%3APF03157","High molecular weight glutenin subunit"],["Pfam%3APF26249","RdRP3/4/5, N-terminal four helical bundle domain"],["Pfam%3APF23242","TRIP13-like, AAA+ ATPase lid C-terminal domain"],["Pfam%3APF26791","AAPxQ domain"],["Pfam%3APF24922","Acyl-CoA-binding domain-containing protein 4-6, C-terminal"],["Pfam%3APF04864","Allinase"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":4,"nb":32,"a":[["bioreactor-envo-00002123.html","bioreactor"],["human-construction-envo-00000070.html","human construction"],["sediment-envo-00002007.html","sediment"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF25848","Rodlin protein"],["Pfam%3APF13420","Acetyltransferase (GNAT) domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF26381","BREX System ATPase PglY protein 5th domain"],["Pfam%3APF26382","BREX System ATPase PglY protein 6th domain"]]},{"id":"NCBITaxon:3055","l":"Chlamydomonas reinhardtii","na":4,"nb":27,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["large-river-biome-envo-00000887.html","large river biome"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["pond-water-envo-00002228.html","pond water"]],"b":[["Pfam%3APF01333","Apocytochrome F, C-terminal"],["Pfam%3APF16639","Apocytochrome F, N-terminal"],["Pfam%3APF00430","ATP synthase B/B' CF(0)"],["Pfam%3APF00401","ATP synthase, Delta/Epsilon chain, long alpha-helix domain"],["Pfam%3APF21771","CFAP58 central coiled coil"],["Pfam%3APF27956","CFAP99 V-shaped coiled-coil domain"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae (strain ATCC 42149 / RIB 40)","na":4,"nb":27,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["mountain-pass-envo-00000084.html","mountain pass"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF09260","Alpha-amylase, domain C"],["Pfam%3APF28338","AclK C-terminal domain"],["Pfam%3APF09206","Alpha-L-arabinofuranosidase B, catalytic"],["Pfam%3APF28380","Sesquiterpene cyclase astC-like C-terminal domain"],["Pfam%3APF13364","Beta-galactosidase second all-beta domain"],["Pfam%3APF10435","Beta-galactosidase, domain 2"]]},{"id":"NCBITaxon:33","l":"Myxococcus fulvus","na":21,"nb":4,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"]],"b":[["TED%3AAF-A0A511SVC1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A511SVC1-F1-model_v4_TED01"],["TED%3AAF-A0A511SU64-F1-model_v4_TED01","TED novel fold AF-A0A511SU64-F1-model_v4_TED01"],["TED%3AAF-A0A511T2U3-F1-model_v4_TED02","TED novel fold AF-A0A511T2U3-F1-model_v4_TED02"],["TED%3AAF-A0A511T9F8-F1-model_v4_TED05","TED novel fold AF-A0A511T9F8-F1-model_v4_TED05"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":4,"nb":20,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF27529","AMPT"],["Pfam%3APF24856","L-arabinose isomerase central domain"],["Pfam%3APF02610","L-arabinose isomerase N-terminal domain"],["Pfam%3APF11762","L-arabinose isomerase C-terminal domain"],["Pfam%3APF17727","CtsR C-terminal dimerization domain"]]},{"id":"NCBITaxon:1085","l":"Rhodospirillum rubrum","na":19,"nb":4,"a":[["biofilm-envo-00002034.html","biofilm"],["brackish-water-body-envo-01001321.html","brackish water body"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["liquid-water-envo-00002006.html","liquid water"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["river-envo-00000022.html","river"]],"b":[["Pfam%3APF00556","Antenna complex alpha/beta subunit"],["Pfam%3APF09527","Putative F0F1-ATPase subunit Ca2+/Mg2+ transporter"],["Pfam%3APF07357","Dinitrogenase reductase ADP-ribosyltransferase (DRAT)"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"]]},{"id":"NCBITaxon:169963","l":"Listeria monocytogenes serovar 1/2a (strain ATCC BAA-679 / EGD-e)","na":4,"nb":18,"a":[["brain-bto-0000142.html","brain"],["heart-bto-0000562.html","heart"],["macrophage-cell-line-bto-0002278.html","macrophage cell line"],["p-388d1-cell-bto-0000984.html","P-388D1 cell"]],"b":[["Pfam%3APF17936","Bacterial Ig domain"],["Pfam%3APF06778","Chlorite dismutase"],["Pfam%3APF05737","Collagen binding domain"],["Pfam%3APF09479","Listeria-Bacteroides repeat domain (List_Bact_rpt)"],["Pfam%3APF13457","GW (Gly-Tryp) dipeptide domain"],["Pfam%3APF08858","IDEAL domain"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":4,"nb":16,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF28265","Lipoprotein N-acylation protein LnsA-like"],["Pfam%3APF16403","Bacterial surface protein, Ig-like domain"],["Pfam%3APF03944","delta endotoxin"],["Pfam%3APF03945","delta endotoxin, N-terminal domain"],["Pfam%3APF06355","Aegerolysin"]]},{"id":"NCBITaxon:28214","l":"Sphingomonas sp.","na":16,"nb":4,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["air-conditioning-unit-envo-00002874.html","air conditioning unit"],["laboratory-facility-envo-01001406.html","laboratory facility"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["Pfam%3APF11723","Homotrimeric ring hydroxylase"],["Pfam%3APF07364","Metallopeptidase family M81"],["TED%3AAF-A0A525HJK0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A525HJK0-F1-model_v4_TED02"],["TED%3AAF-A0A520ITV0-F1-model_v4_TED02","TED novel fold AF-A0A520ITV0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1302","l":"Streptococcus gordonii","na":4,"nb":13,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["dental-plaque-uberon-0016482.html","dental plaque"],["archeological-site-envo-00000564.html","archeological site"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Pfam%3APF18652","Adhesin P1 N-terminal domain"],["Pfam%3APF17998","Cell surface antigen I/II C2 terminal domain"],["Pfam%3APF16364","Cell surface antigen C-terminus"],["Pfam%3APF18938","Atypical Rib domain"],["Pfam%3APF08759","Glycosyltransferase GT-D fold"],["Pfam%3APF22145","GtfA extended beta-sheet domain"]]},{"id":"NCBITaxon:238","l":"Elizabethkingia meningoseptica","na":10,"nb":4,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["pond-water-envo-00002228.html","pond water"],["small-river-biome-envo-00000890.html","small river biome"],["bronchus-uberon-0002185.html","bronchus"],["midgut-bto-0000863.html","midgut"],["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["Pfam%3APF21252","Glycosyl hydrolase 109, C-terminal domain"],["Pfam%3APF26305","cGAS/DncV-like nucleotidyltransferase C-terminal helical domain"],["PROSITE%3APS00743","Beta-lactamases class B signature 1"],["PROSITE%3APS00744","Beta-lactamases class B signature 2"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":8,"nb":4,"a":[["groundwater-envo-01001004.html","groundwater"],["bioreactor-envo-00002123.html","bioreactor"],["river-envo-00000022.html","river"],["freshwater-environment-envo-01000306.html","freshwater environment"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["TED%3AAF-A0A7W3UB61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W3UB61-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F4B3-F1-model_v4_TED01","TED novel fold AF-A0A0D7F4B3-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F6R4-F1-model_v4_TED01","TED novel fold AF-A0A0D7F6R4-F1-model_v4_TED01"],["TED%3AAF-A0A7W3YI15-F1-model_v4_TED02","TED novel fold AF-A0A7W3YI15-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":8,"nb":4,"a":[["reservoir-envo-00000025.html","reservoir"],["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["secretion-bto-0002979.html","secretion"],["stomach-bto-0001307.html","stomach"]],"b":[["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF09711","CRISPR-associated protein (Cas_Csn2)"],["Pfam%3APF06308","23S rRNA methylastransferase leader peptide (ErmCL)"]]},{"id":"NCBITaxon:1505","l":"Paraclostridium sordellii","na":8,"nb":4,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["animal-house-envo-00003040.html","animal house"],["animal-litter-envo-00002191.html","animal litter"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["mud-envo-01000001.html","mud"]],"b":[["Pfam%3APF13859","BNR repeat-like domain"],["Pfam%3APF01473","Putative cell wall binding repeat"],["Pfam%3APF19127","Choline-binding repeat"],["TED%3AAF-A0A822PVZ2-F1-model_v4_TED01","TED novel fold AF-A0A822PVZ2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":8,"nb":4,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"],["TED%3AAF-A0A085UKV7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085UKV7-F1-model_v4_TED01"],["TED%3AAF-A0A4R6IU28-F1-model_v4_TED02","TED novel fold AF-A0A4R6IU28-F1-model_v4_TED02"]]},{"id":"NCBITaxon:51671","l":"Microbacterium sp.","na":8,"nb":4,"a":[["marine-water-body-envo-00001999.html","marine water body"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"]],"b":[["Pfam%3APF19906","C-glycoside deglycosidase beta subunit"],["TED%3AAF-A0A349CW39-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349CW39-F1-model_v4_TED01"],["TED%3AAF-A0A2W6V981-F1-model_v4_TED01","TED novel fold AF-A0A2W6V981-F1-model_v4_TED01"],["TED%3AAF-A0A3D4PQL1-F1-model_v4_TED01","TED novel fold AF-A0A3D4PQL1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:438753","l":"Azorhizobium caulinodans ORS 571","na":7,"nb":4,"a":[["bacteroid-bto-0000109.html","bacteroid"],["free-living-state-bto-0001551.html","free-living state"],["lateral-root-bto-0005441.html","lateral root"],["rootlet-bto-0001192.html","rootlet"],["seedling-bto-0001228.html","seedling"],["stem-nodule-bto-0001816.html","stem nodule"]],"b":[["Pfam%3APF27389","AZC_3924"],["Pfam%3APF09663","Amidohydrolase ring-opening protein (Amido_AtzD_TrzD)"],["PROSITE%3APS01349","Nodulation protein nodA signature"],["PROSITE%3APS00647","Thymidine and pyrimidine-nucleoside phosphorylases signature"]]},{"id":"NCBITaxon:53249","l":"","na":4,"nb":7,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["aquaculture-farm-envo-03600074.html","aquaculture farm"],["fumarole-envo-00000216.html","fumarole"]],"b":[["Pfam%3APF25291","Lambda-carrageenase C-terminal domain"],["Pfam%3APF25290","Lambda-carrageenase middle domain"],["Pfam%3APF17396","Domain of unknown function (DUF1611_N) Rossmann-like domain"],["Pfam%3APF07755","Domain of unknown function (DUF1611_C) P-loop domain"],["Pfam%3APF25292","Lambda-carrageenase beta-propeller domain"],["TED%3AAF-A0A2D5T282-F1-model_v4_TED01","TED novel fold AF-A0A2D5T282-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1079","l":"Blastochloris viridis","na":6,"nb":4,"a":[["fresh-water-envo-00002011.html","fresh water"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["Pfam%3APF00556","Antenna complex alpha/beta subunit"],["Pfam%3APF02276","Photosynthetic reaction centre cytochrome C subunit"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["TED%3AAF-A0A0H5BDG4-F1-model_v4_TED01","TED novel fold AF-A0A0H5BDG4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1306","l":"Streptococcus sp.","na":4,"nb":6,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["co-culture-habitatmech-bacdive-ff945d8a69.html","Co-culture"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["TED%3AAF-A0A496KVG3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A496KVG3-F1-model_v4_TED02"],["TED%3AAF-A0A496KCG7-F1-model_v4_TED01","TED novel fold AF-A0A496KCG7-F1-model_v4_TED01"],["TED%3AAF-A0A496L3I5-F1-model_v4_TED01","TED novel fold AF-A0A496L3I5-F1-model_v4_TED01"],["TED%3AAF-A0A496LB14-F1-model_v4_TED02","TED novel fold AF-A0A496LB14-F1-model_v4_TED02"],["TED%3AAF-A0A496M1E6-F1-model_v4_TED02","TED novel fold AF-A0A496M1E6-F1-model_v4_TED02"],["TED%3AAF-A0A496M2R1-F1-model_v4_TED06","TED novel fold AF-A0A496M2R1-F1-model_v4_TED06"]]},{"id":"NCBITaxon:1311","l":"Streptococcus agalactiae","na":6,"nb":4,"a":[["kidney-bto-0000671.html","kidney"],["milk-uberon-0001913.html","milk"],["oropharynx-bto-0005257.html","oropharynx"],["urine-bto-0001419.html","urine"],["urogenital-system-bto-0003091.html","urogenital system"],["vagina-bto-0000243.html","vagina"]],"b":[["Pfam%3APF19567","Capsular polysaccharide synthesis, CpsB/CapC"],["Pfam%3APF16828","GAG-binding domain on surface antigen"],["Pfam%3APF27244","GtfB middle domain"],["Pfam%3APF07373","CAMP factor (Cfa)"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":4,"nb":6,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["carcass-envo-00002033.html","carcass"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["sludge-envo-00002044.html","sludge"]],"b":[["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF03744","6-carboxyhexanoate--CoA ligase"],["PROSITE%3APS00836","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 1"],["PROSITE%3APS00837","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 2"],["TED%3AAF-A0A2S5D092-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5D092-F1-model_v4_TED01"],["TED%3AAF-A0A2S0JW09-F1-model_v4_TED01","TED novel fold AF-A0A2S0JW09-F1-model_v4_TED01"]]},{"id":"NCBITaxon:388919","l":"","na":4,"nb":6,"a":[["buccal-mucosa-bto-0003833.html","buccal mucosa"],["dental-plaque-bto-0000338.html","dental plaque"],["pharyngeal-mucosa-bto-0001047.html","pharyngeal mucosa"],["pharynx-bto-0001049.html","pharynx"]],"b":[["Pfam%3APF20921","Domain of unknown function DUF1846, C-terminal"],["Pfam%3APF08903","Domain of unknown function DUF1846, N-terminal"],["Pfam%3APF03186","CobD/Cbib protein"],["Pfam%3APF08503","Tetrahydrodipicolinate succinyltransferase N-terminal"],["Pfam%3APF06949","Protein of unknown function (DUF1292)"],["Pfam%3APF06160","Septation ring formation regulator, EzrA"]]},{"id":"NCBITaxon:1366","l":"Pseudolactococcus raffinolactis","na":4,"nb":5,"a":[["animal-house-envo-00003040.html","animal house"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["TED%3AAF-A0A5R9CHM3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5R9CHM3-F1-model_v4_TED02"],["TED%3AAF-A0A6H0UIE5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6H0UIE5-F1-model_v4_TED01"],["TED%3AAF-A0A6H0UK30-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6H0UK30-F1-model_v4_TED01"],["TED%3AAF-A0A6H0URM1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6H0URM1-F1-model_v4_TED02"],["TED%3AAF-A0A6H0UGG1-F1-model_v4_TED06","TED novel fold AF-A0A6H0UGG1-F1-model_v4_TED06"]]},{"id":"NCBITaxon:1411316","l":"Pedobacter sp.","na":5,"nb":4,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["TED%3AAF-A0A520IH20-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A520IH20-F1-model_v4_TED02"],["TED%3AAF-A0A519VYD0-F1-model_v4_TED02","TED novel fold AF-A0A519VYD0-F1-model_v4_TED02"],["TED%3AAF-A0A520CAS2-F1-model_v4_TED01","TED novel fold AF-A0A520CAS2-F1-model_v4_TED01"],["TED%3AAF-A0A520GU64-F1-model_v4_TED01","TED novel fold AF-A0A520GU64-F1-model_v4_TED01"]]},{"id":"NCBITaxon:195","l":"Campylobacter coli","na":4,"nb":5,"a":[["feces-uberon-0001988.html","feces"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["PROSITE%3APS00100","Chloramphenicol acetyltransferase active site"],["TED%3AAF-A0A697DVN1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A697DVN1-F1-model_v4_TED01"],["TED%3AAF-A0A5T0YXG5-F1-model_v4_TED02","TED novel fold AF-A0A5T0YXG5-F1-model_v4_TED02"],["TED%3AAF-A0A825MHY8-F1-model_v4_TED03","TED novel fold AF-A0A825MHY8-F1-model_v4_TED03"],["TED%3AAF-A0A828DMV9-F1-model_v4_TED01","TED novel fold AF-A0A828DMV9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:305","l":"Ralstonia solanacearum","na":4,"nb":5,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"],["pseudostem-bto-0005992.html","pseudostem"],["xylem-bto-0001468.html","xylem"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["Pfam%3APF14897","EpsG family"],["TED%3AAF-A0A7I8FQZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7I8FQZ6-F1-model_v4_TED01"],["TED%3AAF-A0A7H1MI34-F1-model_v4_TED01","TED novel fold AF-A0A7H1MI34-F1-model_v4_TED01"],["TED%3AAF-A0A7I8FKL4-F1-model_v4_TED01","TED novel fold AF-A0A7I8FKL4-F1-model_v4_TED01"],["TED%3AAF-A0A850FKB0-F1-model_v4_TED01","TED novel fold AF-A0A850FKB0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":5,"nb":4,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"],["feces-uberon-0001988.html","feces"],["rectum-bto-0001158.html","rectum"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["Pfam%3APF01375","Heat-labile enterotoxin alpha chain"],["Pfam%3APF09101","Exotoxin A binding"],["Pfam%3APF09009","Exotoxin A catalytic"],["Pfam%3APF09102","Exotoxin A, targeting"]]},{"id":"NCBITaxon:378806","l":"Stigmatella aurantiaca DW4/3-1","na":4,"nb":4,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["orchard-envo-00000115.html","orchard"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-Q098I8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q098I8-F1-model_v4_TED01"],["TED%3AAF-E3FRW3-F1-model_v4_TED01","TED novel fold AF-E3FRW3-F1-model_v4_TED01"],["TED%3AAF-E3G0M4-F1-model_v4_TED01","TED novel fold AF-E3G0M4-F1-model_v4_TED01"],["TED%3AAF-Q08VS7-F1-model_v4_TED01","TED novel fold AF-Q08VS7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:83449","l":"Cystobacter ferrugineus","na":4,"nb":4,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["wood-bto-0005516.html","wood"],["sand-envo-01000017.html","sand"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-A0A1L9B4M1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L9B4M1-F1-model_v4_TED01"],["TED%3AAF-A0A1L9B5W1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L9B5W1-F1-model_v4_TED01"],["TED%3AAF-A0A1L9BCS8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L9BCS8-F1-model_v4_TED01"],["TED%3AAF-A0A1L9BDA4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1L9BDA4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:85698","l":"Achromobacter xylosoxidans","na":4,"nb":4,"a":[["hospital-envo-00002173.html","hospital"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["Pfam%3APF25975","CzcB C-terminal circularly permuted SH3-like domain"],["Pfam%3APF17524","Anti-sigma factor CnrY"],["Pfam%3APF10778","Halocarboxylic acid dehydrogenase DehI"],["TED%3AAF-A0A1R1JVF9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1R1JVF9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":3,"nb":49554,"a":[["city-envo-00000856.html","city"],["cold-environment-envo-01000309.html","cold environment"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["EC%3A1.1.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.1.98.-","With other, known, acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":27,"nb":3,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["watercourse-envo-00000029.html","watercourse"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["egg-food-product-foodon-00001274.html","egg food product"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"]],"b":[["Pfam%3APF14864","Alkyl sulfatase C-terminal"],["Pfam%3APF13816","Haem-containing dehydratase"],["Pfam%3APF14863","Alkyl sulfatase dimerisation"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":25,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-water-body-envo-00001999.html","marine water body"],["sea-water-envo-00002149.html","sea water"],["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF08130","Type A lantibiotic family"],["Pfam%3APF04738","Lantibiotic dehydratase, N terminus"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":3,"nb":19,"a":[["milk-uberon-0001913.html","milk"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["Pfam%3APF03306","Alpha-acetolactate decarboxylase"],["Pfam%3APF22208","Cas_Csm6 CARF domain"],["Pfam%3APF09659","Cas_Csm6 HEPN domain"],["Pfam%3APF22335","Cas10/Cmr2, second palm domain"],["Pfam%3APF18395","Cas3 C-terminal domain"],["Pfam%3APF18019","Cas3, HD domain"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":17,"nb":3,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["fruit-bto-0000486.html","fruit"],["leaf-po-0025034.html","leaf"],["rhizosphere-envo-00005801.html","rhizosphere"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["Pfam%3APF03423","Carbohydrate binding domain (family 25)"],["Pfam%3APF03422","Carbohydrate binding module (family 6)"],["TED%3AAF-A0A7X5SGP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X5SGP7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:243161","l":"Chlamydia muridarum (strain MoPn / Nigg)","na":3,"nb":16,"a":[["cervical-adenocarcinoma-cell-bto-0003165.html","cervical adenocarcinoma cell"],["fibroblast-bto-0000452.html","fibroblast"],["hela-229-cell-bto-0005030.html","HeLa-229 cell"]],"b":[["Pfam%3APF07382","Histone H1-like nucleoprotein HC2"],["Pfam%3APF05475","Pgp3 C-terminal domain"],["Pfam%3APF07577","Domain of Unknown Function (DUF1547)"],["Pfam%3APF05745","Chlamydia 15 kDa cysteine-rich outer membrane protein (CRPA)"],["Pfam%3APF28261","Uncharacterized protein CT_504-like"],["Pfam%3APF17435","CT_584-like"]]},{"id":"NCBITaxon:29158","l":"Mytilus galloprovincialis","na":3,"nb":13,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["Pfam%3APF01097","Arthropod defensin"],["TED%3AAF-A0A8B6CBP4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B6CBP4-F1-model_v4_TED01"],["TED%3AAF-A0A8B6CUV9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A8B6CUV9-F1-model_v4_TED03"],["TED%3AAF-A0A8B6EJL3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A8B6EJL3-F1-model_v4_TED03"],["TED%3AAF-A0A8B6EMQ1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B6EMQ1-F1-model_v4_TED01"],["TED%3AAF-A0A8B6GYA1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B6GYA1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":3,"nb":11,"a":[["bile-bto-0000121.html","bile"],["rectum-bto-0001158.html","rectum"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["Pfam%3APF22829","HphA C-terminal domain"],["Pfam%3APF22828","HphA N-terminal heme-binding domain"],["Pfam%3APF28205","Ciprofloxacin tolerance protein"],["Pfam%3APF19582","Solute-binding protein AdeT 1/2"],["PROSITE%3APS00337","Beta-lactamase class-D active site"],["Pfam%3APF24575","Surface lipoprotein assembly modifier, N-terminal TPR repeats"]]},{"id":"NCBITaxon:1506","l":"Clostridium sp.","na":10,"nb":3,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["animal-waste-material-envo-00002276.html","animal waste material"],["laboratory-facility-envo-01001406.html","laboratory facility"],["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["TED%3AAF-A0A3D5KI35-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D5KI35-F1-model_v4_TED01"],["TED%3AAF-A0A316SA98-F1-model_v4_TED01","TED novel fold AF-A0A316SA98-F1-model_v4_TED01"],["TED%3AAF-A0A3B9UYE3-F1-model_v4_TED01","TED novel fold AF-A0A3B9UYE3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":3,"nb":10,"a":[["liquid-water-envo-00002006.html","liquid water"],["sludge-envo-00002044.html","sludge"],["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF09081","Glucan 1,4-alpha-maltotetraohydrolase, domain C"],["Pfam%3APF09459","Ethylbenzene dehydrogenase"],["Pfam%3APF08406","CbbQ/NirQ/NorQ C-terminal"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"],["Pfam%3APF18793","Nitrous oxide reductase propeller repeat 2"]]},{"id":"NCBITaxon:6238","l":"Caenorhabditis briggsae","na":3,"nb":10,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"],["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["Pfam%3APF09287","CEP-1, DNA binding"],["Pfam%3APF22073","Cep192 domain 4"],["Pfam%3APF15481","Chondroitin proteoglycan 4"],["Pfam%3APF13358","DDE superfamily endonuclease"],["Pfam%3APF10326","Serpentine type 7TM GPCR chemoreceptor Str"],["Pfam%3APF17266","Family of unknown function (DUF5332)"]]},{"id":"NCBITaxon:1639","l":"Listeria monocytogenes","na":9,"nb":3,"a":[["liquid-water-envo-00002006.html","liquid water"],["brain-bto-0000142.html","brain"],["central-nervous-system-bto-0000227.html","central nervous system"],["fruit-bto-0000486.html","fruit"],["placenta-bto-0001078.html","placenta"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["TED%3AAF-A0A6Z1JB74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6Z1JB74-F1-model_v4_TED01"],["TED%3AAF-A0A5Z1VYX2-F1-model_v4_TED01","TED novel fold AF-A0A5Z1VYX2-F1-model_v4_TED01"],["TED%3AAF-A0A823IT06-F1-model_v4_TED02","TED novel fold AF-A0A823IT06-F1-model_v4_TED02"]]},{"id":"NCBITaxon:121845","l":"Diaphorina citri","na":8,"nb":3,"a":[["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["stream-envo-00000023.html","stream"],["animal-house-envo-00003040.html","animal house"],["biome-envo-00000428.html","biome"]],"b":[["TED%3AAF-A0A3Q0J3L1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3Q0J3L1-F1-model_v4_TED03"],["TED%3AAF-A0A3Q0JAD0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3Q0JAD0-F1-model_v4_TED01"],["TED%3AAF-A0A1S4EQL6-F1-model_v4_TED01","TED novel fold AF-A0A1S4EQL6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1359","l":"Lactococcus cremoris","na":3,"nb":8,"a":[["b-lymphocyte-bto-0000776.html","B-lymphocyte"],["peripheral-blood-mononuclear-cell-bto-0001025.html","peripheral blood mononuclear cell"],["spleen-bto-0001281.html","spleen"]],"b":[["Pfam%3APF16873","Putative abortive phage resistance protein AbiGii toxin"],["Pfam%3APF21368","AI2M/AI1M-like, HNH endonuclease"],["Pfam%3APF09136","Glucodextranase, domain B"],["Pfam%3APF10899","Putative abortive phage resistance protein AbiGi, antitoxin"],["Pfam%3APF04556","DpnII restriction endonuclease"],["Pfam%3APF04369","Lactococcin-like family"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK1622","na":3,"nb":8,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["Pfam%3APF27281","DevT C-terminal domain"],["Pfam%3APF27372","DevT N-terminal domain"],["Pfam%3APF17762","ParB HTH domain"],["Pfam%3APF01930","Domain of unknown function DUF83"],["Pfam%3APF09559","Cas6 Crispr"],["Pfam%3APF01905","CRISPR-associated negative auto-regulator DevR/Csa2"]]},{"id":"NCBITaxon:292800","l":"Flavonifractor plautii","na":3,"nb":8,"a":[["goblet-cell-bto-0001540.html","goblet cell"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["secretion-bto-0002979.html","secretion"]],"b":[["TED%3AAF-A0A6I2QXD7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I2QXD7-F1-model_v4_TED01"],["TED%3AAF-A0A6I2R9U0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I2R9U0-F1-model_v4_TED01"],["TED%3AAF-A0A6I7GJ83-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6I7GJ83-F1-model_v4_TED02"],["TED%3AAF-A0A174L5D2-F1-model_v4_TED02","TED novel fold AF-A0A174L5D2-F1-model_v4_TED02"],["TED%3AAF-A0A6I2R566-F1-model_v4_TED01","TED novel fold AF-A0A6I2R566-F1-model_v4_TED01"],["TED%3AAF-A0A6I2R5K9-F1-model_v4_TED01","TED novel fold AF-A0A6I2R5K9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:33038","l":"Mediterraneibacter gnavus","na":8,"nb":3,"a":[["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["juvenile-bto-0002168.html","juvenile"],["animal-litter-envo-00002191.html","animal litter"]],"b":[["Pfam%3APF16874","Glycosyl hydrolase family 36 C-terminal domain"],["Pfam%3APF16875","Glycosyl hydrolase family 36 N-terminal domain"],["Pfam%3APF04604","Type-A lantibiotic"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":8,"nb":3,"a":[["beach-envo-00000091.html","beach"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["sea-sand-envo-00002118.html","sea sand"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF22277","EncFtn-like"],["TED%3AAF-D0LJ11-F1-model_v4_TED04","TED highly-symmetric fold AF-D0LJ11-F1-model_v4_TED04"]]},{"id":"NCBITaxon:7159","l":"Aedes aegypti","na":3,"nb":8,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["tropical-envo-01000204.html","tropical"],["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["IDPO%3A0000004","pre-molten globule"],["Pfam%3APF25001","Aegyptin, C-terminal domain"],["Pfam%3APF01097","Arthropod defensin"],["Pfam%3APF15957","Commissureless"],["Pfam%3APF23757","Insect HPS5 TPR domain"],["TED%3AAF-Q0IGF9-F1-model_v4_TED01","TED highly-symmetric fold AF-Q0IGF9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":7,"nb":3,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["farm-envo-00000078.html","farm"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["Pfam%3APF05258","Dna[CI] antecedent, DciA"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"],["TED%3AAF-Q0RZW9-F1-model_v4_TED03","TED highly-symmetric fold AF-Q0RZW9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1307","l":"Streptococcus suis","na":3,"nb":6,"a":[["monocyte-bto-0000876.html","monocyte"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["tonsil-bto-0001387.html","tonsil"]],"b":[["TED%3AAF-A0A0Z8XA17-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0Z8XA17-F1-model_v4_TED02"],["TED%3AAF-A0A116R309-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A116R309-F1-model_v4_TED02"],["TED%3AAF-A0A3R8SIF2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R8SIF2-F1-model_v4_TED01"],["TED%3AAF-A0A0Z8H9E5-F1-model_v4_TED02","TED novel fold AF-A0A0Z8H9E5-F1-model_v4_TED02"],["TED%3AAF-A0A4T2GPV6-F1-model_v4_TED02","TED novel fold AF-A0A4T2GPV6-F1-model_v4_TED02"],["TED%3AAF-A0A7G1JVZ6-F1-model_v4_TED02","TED novel fold AF-A0A7G1JVZ6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1624","l":"Ligilactobacillus salivarius","na":6,"nb":3,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["trachea-bto-0001388.html","trachea"],["animal-litter-envo-00002191.html","animal litter"],["intestine-environment-envo-2100002.html","intestine environment"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["TED%3AAF-A0A7X2SS58-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X2SS58-F1-model_v4_TED01"],["TED%3AAF-A0A089QBS8-F1-model_v4_TED02","TED novel fold AF-A0A089QBS8-F1-model_v4_TED02"],["TED%3AAF-A0A2A2XCA8-F1-model_v4_TED01","TED novel fold AF-A0A2A2XCA8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:243365","l":"Chromobacterium violaceum ATCC 12472","na":6,"nb":3,"a":[["acute-lymphoblastic-leukemia-cell-bto-0000731.html","acute lymphoblastic leukemia cell"],["adrenal-gland-bto-0000047.html","adrenal gland"],["eosinophil-bto-0000399.html","eosinophil"],["lymphocyte-bto-0000775.html","lymphocyte"],["neutrophil-bto-0000130.html","neutrophil"],["peripheral-blood-bto-0000553.html","peripheral blood"]],"b":[["Pfam%3APF17074","Darcynin, domain of unknown function"],["Pfam%3APF12902","Ferritin-like"],["Pfam%3APF06314","Acetoacetate decarboxylase (ADC)"]]},{"id":"NCBITaxon:253","l":"Chryseobacterium indologenes","na":6,"nb":3,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["seedling-bto-0001228.html","seedling"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["tropical-envo-01000204.html","tropical"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["PROSITE%3APS00744","Beta-lactamases class B signature 2"],["TED%3AAF-A0A7T8U7T3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T8U7T3-F1-model_v4_TED01"],["TED%3AAF-A0A0N0ZUI2-F1-model_v4_TED01","TED novel fold AF-A0A0N0ZUI2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:399742","l":"Enterobacter sp. (strain 638)","na":3,"nb":6,"a":[["vasculature-uberon-0002049.html","vasculature"],["part-of-plant-habitatmech-madin-25325947e2.html","part of plant"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Pfam%3APF12404","Peptidase"],["Pfam%3APF27465","DNA-binding protein Fis N-terminal domain"],["Pfam%3APF02300","Fumarate reductase subunit C"],["Pfam%3APF04102","SlyX"],["Pfam%3APF06005","ZapB family"],["Pfam%3APF07208","Protein of unknown function (DUF1414)"]]},{"id":"NCBITaxon:1514140","l":"Trieres chinensis","na":3,"nb":5,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["estuarine-biome-envo-01000020.html","estuarine biome"],["shoreline-envo-00000486.html","shoreline"]],"b":[["TED%3AAF-A0A7S1YW68-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1YW68-F1-model_v4_TED01"],["TED%3AAF-A0A7S1Z4Z7-F1-model_v4_TED01","TED novel fold AF-A0A7S1Z4Z7-F1-model_v4_TED01"],["TED%3AAF-A0A7S1ZAT3-F1-model_v4_TED03","TED novel fold AF-A0A7S1ZAT3-F1-model_v4_TED03"],["TED%3AAF-A0A7S2A6A9-F1-model_v4_TED02","TED novel fold AF-A0A7S2A6A9-F1-model_v4_TED02"],["TED%3AAF-A0A7S2A7V0-F1-model_v4_TED02","TED novel fold AF-A0A7S2A7V0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1833","l":"Rhodococcus erythropolis","na":3,"nb":5,"a":[["watercourse-envo-00000029.html","watercourse"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"],["water-scum-envo-00005794.html","water scum"]],"b":[["Pfam%3APF08028","Acyl-CoA dehydrogenase, C-terminal domain"],["Pfam%3APF13816","Haem-containing dehydratase"],["Pfam%3APF07858","Limonene-1,2-epoxide hydrolase catalytic domain"],["Pfam%3APF09663","Amidohydrolase ring-opening protein (Amido_AtzD_TrzD)"],["TED%3AAF-A0A401N7F7-F1-model_v4_TED02","TED novel fold AF-A0A401N7F7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:68886","l":"Theileria orientalis","na":5,"nb":3,"a":[["erythrocyte-bto-0000424.html","erythrocyte"],["leukocyte-bto-0000751.html","leukocyte"],["lymphocyte-bto-0000775.html","lymphocyte"],["macrophage-bto-0000801.html","macrophage"],["monocyte-bto-0000876.html","monocyte"]],"b":[["TED%3AAF-A0A2T7I0Y7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2T7I0Y7-F1-model_v4_TED02"],["TED%3AAF-A0A2T7ITL4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T7ITL4-F1-model_v4_TED01"],["TED%3AAF-A0A2T7IKV1-F1-model_v4_TED01","TED novel fold AF-A0A2T7IKV1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:813","l":"Chlamydia trachomatis","na":3,"nb":5,"a":[["conjunctiva-bto-0003415.html","conjunctiva"],["epithelial-cell-bto-0000414.html","epithelial cell"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["Pfam%3APF07382","Histone H1-like nucleoprotein HC2"],["Pfam%3APF01308","Chlamydia major outer membrane protein"],["Pfam%3APF05475","Pgp3 C-terminal domain"],["Pfam%3APF03504","Chlamydia cysteine-rich outer membrane protein 6"],["TED%3AAF-C7DZ76-F1-model_v4_TED01","TED novel fold AF-C7DZ76-F1-model_v4_TED01"]]},{"id":"NCBITaxon:95486","l":"Burkholderia cenocepacia","na":5,"nb":3,"a":[["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["TED%3AAF-A0A109EHZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A109EHZ6-F1-model_v4_TED01"],["TED%3AAF-A0A071M3L2-F1-model_v4_TED01","TED novel fold AF-A0A071M3L2-F1-model_v4_TED01"],["TED%3AAF-A0A088UYL8-F1-model_v4_TED01","TED novel fold AF-A0A088UYL8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1451","l":"Paenibacillus amylolyticus","na":3,"nb":4,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["Pfam%3APF03211","Pectate lyase"],["TED%3AAF-A0A117I1X0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A117I1X0-F1-model_v4_TED01"],["TED%3AAF-A0A1R1DDF3-F1-model_v4_TED01","TED novel fold AF-A0A1R1DDF3-F1-model_v4_TED01"],["TED%3AAF-A0A4V3B7H8-F1-model_v4_TED01","TED novel fold AF-A0A4V3B7H8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1587","l":"Lactobacillus helveticus","na":4,"nb":3,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["intestine-environment-envo-2100002.html","intestine environment"],["urban-biome-envo-01000249.html","urban biome"],["harbour-envo-00000463.html","harbour"]],"b":[["Pfam%3APF18008","Replication initiator protein A C-terminal domain"],["Pfam%3APF20956","Domain of unknown function (DUF4931) C-terminal domain"],["Pfam%3APF17312","Bacteriocin helveticin-J"]]},{"id":"NCBITaxon:203122","l":"Saccharophagus degradans 2-40","na":4,"nb":3,"a":[["intertidal-zone-envo-00000316.html","intertidal zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["saline-marsh-envo-00000054.html","saline marsh"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["Pfam%3APF22686","Exo-oligoalginate lyase-like, C-terminal domain"],["Pfam%3APF07940","Heparinase II/III-like, C-terminal"],["Pfam%3APF05426","Alginate lyase"]]},{"id":"NCBITaxon:243090","l":"Rhodopirellula baltica SH 1","na":4,"nb":3,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["oligotrophic-water-envo-00002223.html","oligotrophic water"],["pond-water-envo-00002228.html","pond water"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["Pfam%3APF02601","Exonuclease VII, large subunit"],["TED%3AAF-Q7UU79-F1-model_v4_TED04","TED highly-symmetric fold AF-Q7UU79-F1-model_v4_TED04"],["TED%3AAF-Q7USE8-F1-model_v4_TED02","TED novel fold AF-Q7USE8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:28037","l":"Streptococcus mitis","na":3,"nb":4,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["archeological-site-envo-00000564.html","archeological site"],["tropical-envo-01000204.html","tropical"]],"b":[["Pfam%3APF03047","COMC family"],["TED%3AAF-A0A1X1L9U5-F1-model_v4_TED02","TED novel fold AF-A0A1X1L9U5-F1-model_v4_TED02"],["TED%3AAF-A0A428B8X0-F1-model_v4_TED01","TED novel fold AF-A0A428B8X0-F1-model_v4_TED01"],["TED%3AAF-A0A6L5H4V3-F1-model_v4_TED03","TED novel fold AF-A0A6L5H4V3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:28447","l":"Clavibacter michiganensis","na":3,"nb":4,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["canker-habitatmech-bacdive-0f078d72a7.html","Canker"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["TED%3AAF-A0A251YC11-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A251YC11-F1-model_v4_TED02"],["TED%3AAF-A0A2S5VA57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5VA57-F1-model_v4_TED01"],["TED%3AAF-A0A2S5VJK2-F1-model_v4_TED01","TED novel fold AF-A0A2S5VJK2-F1-model_v4_TED01"],["TED%3AAF-A0A399NHQ8-F1-model_v4_TED01","TED novel fold AF-A0A399NHQ8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:290398","l":"","na":3,"nb":4,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["saline-evaporation-pond-envo-00000055.html","saline evaporation pond"],["joint-bto-0001686.html","joint"]],"b":[["Pfam%3APF20629","D-galactarate/Altronate dehydratase, C-terminal"],["Pfam%3APF04295","D-galactarate dehydratase/Altronate hydrolase, second domain"],["Pfam%3APF11982","Domain of unknown function (DUF3483)"],["PROSITE%3APS00908","Mandelate racemase / muconate lactonizing enzyme family signature 1"]]},{"id":"NCBITaxon:29159","l":"Crassostrea gigas","na":3,"nb":4,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["Pfam%3APF22494","Choice-of-anchor I domain"],["TED%3AAF-K1PYR0-F1-model_v4_TED01","TED novel fold AF-K1PYR0-F1-model_v4_TED01"],["TED%3AAF-K1Q3N2-F1-model_v4_TED01","TED novel fold AF-K1Q3N2-F1-model_v4_TED01"],["TED%3AAF-K1RG39-F1-model_v4_TED01","TED novel fold AF-K1RG39-F1-model_v4_TED01"]]},{"id":"NCBITaxon:404589","l":"","na":3,"nb":4,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["TED%3AAF-A7H7H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A7H7H4-F1-model_v4_TED01"],["TED%3AAF-A7H7U8-F1-model_v4_TED01","TED highly-symmetric fold AF-A7H7U8-F1-model_v4_TED01"],["TED%3AAF-A7HAV5-F1-model_v4_TED01","TED novel fold AF-A7HAV5-F1-model_v4_TED01"],["TED%3AAF-A7HE89-F1-model_v4_TED01","TED novel fold AF-A7HE89-F1-model_v4_TED01"]]},{"id":"NCBITaxon:45351","l":"Nematostella vectensis","na":4,"nb":3,"a":[["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["microbial-mat-material-envo-01000157.html","microbial mat material"],["slope-envo-00002000.html","slope"]],"b":[["Pfam%3APF14777","Cilia BBSome complex subunit 10"],["TED%3AAF-A7SVA7-F1-model_v4_TED01","TED highly-symmetric fold AF-A7SVA7-F1-model_v4_TED01"],["TED%3AAF-A7SXG3-F1-model_v4_TED02","TED novel fold AF-A7SXG3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:50741","l":"Marinobacter sp.","na":3,"nb":4,"a":[["marine-water-body-envo-00001999.html","marine water body"],["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["TED%3AAF-A0A2D9LBV8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9LBV8-F1-model_v4_TED01"],["TED%3AAF-A0A2D7X1D2-F1-model_v4_TED01","TED novel fold AF-A0A2D7X1D2-F1-model_v4_TED01"],["TED%3AAF-A0A2E8AEX3-F1-model_v4_TED02","TED novel fold AF-A0A2E8AEX3-F1-model_v4_TED02"],["TED%3AAF-A0A3D5Q8H2-F1-model_v4_TED01","TED novel fold AF-A0A3D5Q8H2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1260","l":"Finegoldia magna","na":3,"nb":3,"a":[["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["Pfam%3APF17573","GA-like domain"],["Pfam%3APF18656","Family of unknown function (DUF5633)"],["TED%3AAF-A0A233W4R0-F1-model_v4_TED01","TED novel fold AF-A0A233W4R0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1492","l":"Clostridium butyricum","na":3,"nb":3,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["intestine-environment-envo-2100002.html","intestine environment"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["Pfam%3APF00302","Chloramphenicol acetyltransferase"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["PROSITE%3APS00100","Chloramphenicol acetyltransferase active site"]]},{"id":"NCBITaxon:1717","l":"Corynebacterium diphtheriae","na":3,"nb":3,"a":[["foot-bto-0000476.html","foot"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["Pfam%3APF08051","Erythromycin resistance leader peptide"],["PROSITE%3APS01007","Transposases, Mutator family, signature"],["TED%3AAF-A0A811G0F8-F1-model_v4_TED05","TED novel fold AF-A0A811G0F8-F1-model_v4_TED05"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":3,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["TED%3AAF-A0A142EAM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142EAM9-F1-model_v4_TED03"],["TED%3AAF-A0A1Q3DTY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3DTY6-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3DNE3-F1-model_v4_TED01","TED novel fold AF-A0A1Q3DNE3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1961","l":"Streptomyces virginiae","na":3,"nb":3,"a":[["clay-envo-00002982.html","clay"],["plain-envo-00000086.html","plain"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF19328","2,4-diaminopentanoate dehydrogenase C-terminal domain"],["PROSITE%3APS01014","Transcription termination factor nusG signature"]]},{"id":"NCBITaxon:203124","l":"Trichodesmium erythraeum IMS101","na":3,"nb":3,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["coastal-water-body-envo-02000049.html","coastal water body"],["marine-neritic-zone-envo-00000206.html","marine neritic zone"]],"b":[["Pfam%3APF06206","CpeT/CpcT family (DUF1001)"],["Pfam%3APF18460","Heterocyst differentiation regulator C-terminal Hood domain"],["TED%3AAF-Q10WG6-F1-model_v4_TED05","TED highly-symmetric fold AF-Q10WG6-F1-model_v4_TED05"]]},{"id":"NCBITaxon:28108","l":"Alteromonas macleodii","na":3,"nb":3,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["marine-water-body-envo-00001999.html","marine water body"],["sandstone-envo-00002055.html","sandstone"]],"b":[["TED%3AAF-A0A6C5N007-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6C5N007-F1-model_v4_TED01"],["TED%3AAF-A0A126Q0V0-F1-model_v4_TED01","TED novel fold AF-A0A126Q0V0-F1-model_v4_TED01"],["TED%3AAF-A0A6T9Y0H6-F1-model_v4_TED01","TED novel fold AF-A0A6T9Y0H6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:335543","l":"","na":3,"nb":3,"a":[["anaerobic-sludge-envo-00002129.html","anaerobic sludge"],["submerged-bed-envo-00000501.html","submerged bed"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["Pfam%3APF03746","LamB/YcsF family"],["Pfam%3APF03588","Leucyl/phenylalanyl-tRNA protein transferase"],["Pfam%3APF05167","Uncharacterised ACR (DUF711)"]]},{"id":"NCBITaxon:340102","l":"","na":3,"nb":3,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"],["solfatara-envo-00000217.html","solfatara"]],"b":[["Pfam%3APF22039","Imidazolonepropionase-like composite domain, bacteria"],["Pfam%3APF01949","Endonuclease dU"],["TED%3AAF-A4WK08-F1-model_v4_TED01","TED novel fold AF-A4WK08-F1-model_v4_TED01"]]},{"id":"NCBITaxon:386415","l":"","na":3,"nb":3,"a":[["myocardium-bto-0000901.html","myocardium"],["reticuloendothelial-system-bto-0001174.html","reticuloendothelial system"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["Pfam%3APF27467","ATP-dependent helicase/deoxyribonuclease AddB fifth domain"],["Pfam%3APF01888","CbiD"],["Pfam%3APF18146","Damage-inducible protein CinA KH domain"]]},{"id":"NCBITaxon:418699","l":"","na":3,"nb":3,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["petroleum-envo-00002984.html","petroleum"]],"b":[["Pfam%3APF27460","ATP phosphoribosyltransferase subunit HisZ C-terminal domain"],["Pfam%3APF20543","N2-fixation sustaining protein CowN"],["PROSITE%3APS00855","Signal peptidases II signature"]]},{"id":"NCBITaxon:582","l":"Morganella morganii","na":3,"nb":3,"a":[["blast-cell-bto-0000125.html","blast cell"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"],["spike-bto-0001278.html","spike"]],"b":[["PROSITE%3APS01157","Class A bacterial acid phosphatases signature"],["TED%3AAF-A0A2C5TPE5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2C5TPE5-F1-model_v4_TED01"],["TED%3AAF-A0A0A2RJY1-F1-model_v4_TED02","TED novel fold AF-A0A0A2RJY1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":3,"nb":3,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Pfam%3APF04205","FMN-binding domain"],["Pfam%3APF10795","Protein of unknown function (DUF2607)"],["TED%3AAF-A0A1W6U0N2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W6U0N2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:75985","l":"Mannheimia haemolytica","na":3,"nb":3,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["leukocyte-bto-0000751.html","leukocyte"],["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["Pfam%3APF04224","Protein of unknown function, DUF417"],["Pfam%3APF04393","Protein of unknown function (DUF535)"],["TED%3AAF-A0A378MS69-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A378MS69-F1-model_v4_TED01"]]},{"id":"NCBITaxon:94122","l":"Shewanella sp. ANA-3","na":3,"nb":3,"a":[["alkaline-water-envo-01000357.html","alkaline water"],["brackish-estuary-envo-00002137.html","brackish estuary"],["underground-water-envo-00005792.html","underground water"]],"b":[["Pfam%3APF03883","Peroxide stress protein YaaA"],["Pfam%3APF04751","Dual-action ribosomal maturation protein DarP"],["Pfam%3APF04356","Protein of unknown function (DUF489)"]]},{"id":"NCBITaxon:6239","l":"Caenorhabditis elegans","na":2,"nb":9682,"a":[["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.14.14.-","With reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.17.-","With reduced ascorbate as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.19.-","With oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water"],["EC%3A1.14.99.-","Miscellaneous"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii (strain ATCC 43067 / DSM 2661 / JAL-1 / JCM 10045 / NBRC 100440)","na":2,"nb":5181,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["EC%3A1.12.99.-","With other acceptors"],["EC%3A1.3.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.3.-.-","Acting on the CH-CH group of donors"],["EC%3A1.8.98.-","With other, known, acceptors"],["EC%3A1.97.1.-","Other oxidoreductases"],["EC%3A2.1.2.-","Hydroxymethyl-, formyl- and related transferases"]]},{"id":"NCBITaxon:83331","l":"Mycobacterium tuberculosis (strain CDC 1551 / Oshkosh)","na":2,"nb":99,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["Pfam%3APF09407","AbiEi antitoxin C-terminal domain"],["Pfam%3APF17668","Acetyltransferase (GNAT) domain"],["Pfam%3APF13480","Acetyltransferase (GNAT) domain"],["Pfam%3APF13527","Acetyltransferase (GNAT) domain"],["Pfam%3APF16701","Adenylate cyclase regulatory domain"],["Pfam%3APF06029","AlkA N-terminal domain"]]},{"id":"NCBITaxon:9031","l":"Gallus gallus","na":2,"nb":48,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["Pfam%3APF16620","Unstructured linker between I-set domains 2 and 3 on MYLCK"],["Pfam%3APF15512","Chromatin assembly factor complex 1 subunit p60, C-terminal"],["Pfam%3APF18130","ATP-grasp N-terminal domain"],["Pfam%3APF15632","ATP-grasp in the biosynthetic pathway with Ter operon"],["Pfam%3APF01382","Avidin family"],["Pfam%3APF08072","BDHCT (NUC031) domain"]]},{"id":"NCBITaxon:266940","l":"Kineococcus radiotolerans SRS30216 = ATCC BAA-149","na":38,"nb":2,"a":[["air-envo-00002005.html","air"],["bay-envo-00000032.html","bay"],["coastal-sea-water-envo-00002150.html","coastal sea water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"]],"b":[["Pfam%3APF01083","Cutinase"],["TED%3AAF-A6WE06-F1-model_v4_TED06","TED novel fold AF-A6WE06-F1-model_v4_TED06"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":33,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["pond-water-envo-00002228.html","pond water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["water-body-envo-00000063.html","water body"]],"b":[["Pfam%3APF22538","Hexaprenyl diphosphate synthase, small subunit"],["PROSITE%3APS01066","Undecaprenyl pyrophosphate synthase family signature"]]},{"id":"NCBITaxon:9541","l":"Macaca fascicularis","na":2,"nb":27,"a":[["neritic-epipelagic-zone-biome-envo-01000042.html","neritic epipelagic zone biome"],["sea-shore-envo-00000485.html","sea shore"]],"b":[["Pfam%3APF16618","Linker region between SH3 and WW domains on ARHGAP12"],["Pfam%3APF28426","ATRIP C-terminal domain"],["Pfam%3APF28409","ATR-interacting protein N-terminal domain"],["Pfam%3APF23998","BTBDG BTB/POZ domain"],["Pfam%3APF21059","BTB/POZ domain-containing protein 16, C-terminal domain"],["Pfam%3APF12366","Cancer susceptibility candidate 1 C-terminal"]]},{"id":"NCBITaxon:4577","l":"Zea mays","na":2,"nb":18,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["IDPO%3A0000002","disorder"],["Pfam%3APF14861","Plant antimicrobial peptide"],["Pfam%3APF02041","Auxin binding protein"],["Pfam%3APF25436","BSD2 cysteine rich domain"],["Pfam%3APF23493","Cysteinyl-tRNA ligase anticodon binding domain"],["Pfam%3APF03330","Lytic transglycolase"]]},{"id":"NCBITaxon:85963","l":"Helicobacter pylori (strain J99 / ATCC 700824)","na":2,"nb":18,"a":[["anaerobic-sludge-blanket-reactor-envo-00002213.html","anaerobic sludge blanket reactor"],["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["Pfam%3APF15437","Plasminogen-binding protein pgbA C-terminal"],["Pfam%3APF02293","AmiS/UreI family transporter"],["Pfam%3APF26365","Apolipoprotein N-acyltransferase integral membrane domain"],["Pfam%3APF16730","DnaG-primase C-terminal, helicase-binding domain"],["Pfam%3APF10398","Protein of unknown function (DUF2443)"],["Pfam%3APF13099","Domain of unknown function (DUF3944)"]]},{"id":"NCBITaxon:176299","l":"Agrobacterium fabrum (strain C58 / ATCC 33970)","na":2,"nb":17,"a":[["human-construction-envo-00000070.html","human construction"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF28403","Aconitase X second domain"],["Pfam%3APF28406","Aconitase X third domain"],["Pfam%3APF04412","Aconitase X first domain"],["Pfam%3APF01989","Aconitase X swivel domain"]]},{"id":"NCBITaxon:272631","l":"Mycobacterium leprae (strain TN)","na":2,"nb":16,"a":[["peripheral-blood-mononuclear-cell-bto-0001025.html","peripheral blood mononuclear cell"],["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["Pfam%3APF26519","Biotin synthase auxiliary protein family"],["Pfam%3APF24481","CT398-like coiled coil hairpin domain"],["Pfam%3APF09438","Domain of unknown function (DUF2017)"],["Pfam%3APF12089","Transmembrane domain of unknown function (DUF3566)"],["Pfam%3APF12823","Domain of unknown function (DUF3817)"],["Pfam%3APF19187","PafC helix-turn-helix domain"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":2,"nb":16,"a":[["feces-uberon-0001988.html","feces"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["Pfam%3APF05932","Tir chaperone protein (CesT) family"],["Pfam%3APF17656","FlgA N-terminal domain"],["Pfam%3APF22200","ExsA N-terminal regulatory domain"],["Pfam%3APF05171","Haemin-degrading HemS.ChuX domain"],["Pfam%3APF07201","HrpJ-like domain"],["Pfam%3APF04391","Protein of unknown function (DUF533)"]]},{"id":"NCBITaxon:1580","l":"Levilactobacillus brevis","na":14,"nb":2,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["organic-waste-material-envo-00002873.html","organic waste material"],["research-facility-envo-00000469.html","research facility"],["food-fermented-foodon-00001258.html","food (fermented)"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["caco-2-cell-bto-0000195.html","CACO-2 cell"]],"b":[["TED%3AAF-A0A2A3TVW3-F1-model_v4_TED01","TED novel fold AF-A0A2A3TVW3-F1-model_v4_TED01"],["TED%3AAF-A0A7Z6MPZ0-F1-model_v4_TED02","TED novel fold AF-A0A7Z6MPZ0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:574521","l":"Escherichia coli O127:H6 (strain E2348/69 / EPEC)","na":2,"nb":13,"a":[["enterocyte-bto-0000398.html","enterocyte"],["gut-epithelium-bto-0000956.html","gut epithelium"]],"b":[["IDPO%3A0000006","order"],["IDPO%3A0000045","phosphorylation display site"],["Pfam%3APF02369","Bacterial Ig-like domain (group 1)"],["Pfam%3APF05307","Bundlin"],["Pfam%3APF27328","EcpD C-terminal domain"],["Pfam%3APF11924","Inverse autotransporter, beta-domain"]]},{"id":"NCBITaxon:58172","l":"Paenibacillus sp.","na":12,"nb":2,"a":[["factory-envo-01000536.html","factory"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["Pfam%3APF03442","Carbohydrate binding domain X2"],["TED%3AAF-A0A357M9E9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A357M9E9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:234267","l":"Candidatus Solibacter usitatus Ellin6076","na":11,"nb":2,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["pond-water-envo-00002228.html","pond water"],["aquatic-environment-envo-01000317.html","aquatic environment"],["desert-sand-envo-00005800.html","desert sand"],["environmental-material-envo-00010483.html","environmental material"],["mud-envo-01000001.html","mud"]],"b":[["TED%3AAF-Q01YB9-F1-model_v4_TED05","TED highly-symmetric fold AF-Q01YB9-F1-model_v4_TED05"],["TED%3AAF-Q02DA0-F1-model_v4_TED01","TED highly-symmetric fold AF-Q02DA0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:31234","l":"Caenorhabditis remanei","na":2,"nb":11,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"]],"b":[["TED%3AAF-A0A260YVB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A260YVB9-F1-model_v4_TED01"],["TED%3AAF-A0A2P4UZM7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2P4UZM7-F1-model_v4_TED02"],["TED%3AAF-A0A6A5GBX3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A5GBX3-F1-model_v4_TED01"],["TED%3AAF-A0A6A5H6H5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A5H6H5-F1-model_v4_TED01"],["TED%3AAF-A0A6A5HK12-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6A5HK12-F1-model_v4_TED02"],["TED%3AAF-E3LF65-F1-model_v4_TED02","TED highly-symmetric fold AF-E3LF65-F1-model_v4_TED02"]]},{"id":"NCBITaxon:190650","l":"Caulobacter vibrioides (strain ATCC 19089 / CIP 103742 / CB 15)","na":2,"nb":10,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["IDPO%3A0000060","self-assembly"],["Pfam%3APF27198","FlaEY third domain"],["Pfam%3APF22367","Flagellar hook protein FlgE, third domain"],["Pfam%3APF03799","Cell division protein FtsQ/DivIB, C-terminal"],["Pfam%3APF27294","HfaA"],["Pfam%3APF27277","Holdfast attachment protein D"]]},{"id":"NCBITaxon:853","l":"Faecalibacterium prausnitzii","na":2,"nb":10,"a":[["coral-reef-envo-00000150.html","coral reef"],["tropical-envo-01000204.html","tropical"]],"b":[["TED%3AAF-A0A2A7AJ69-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A7AJ69-F1-model_v4_TED01"],["TED%3AAF-A0A329UNG0-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A329UNG0-F1-model_v4_TED05"],["TED%3AAF-A0A3F3JVN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3F3JVN3-F1-model_v4_TED01"],["TED%3AAF-A0A564SWB8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A564SWB8-F1-model_v4_TED02"],["TED%3AAF-A0A173SIF7-F1-model_v4_TED01","TED novel fold AF-A0A173SIF7-F1-model_v4_TED01"],["TED%3AAF-A0A173WYP6-F1-model_v4_TED01","TED novel fold AF-A0A173WYP6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:166","l":"Treponema sp.","na":2,"nb":9,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["TED%3AAF-A0A351Z2H3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A351Z2H3-F1-model_v4_TED01"],["TED%3AAF-A0A356K0W2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A356K0W2-F1-model_v4_TED02"],["TED%3AAF-A0A3B8WTM6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3B8WTM6-F1-model_v4_TED02"],["TED%3AAF-A0A3C1HX51-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3C1HX51-F1-model_v4_TED03"],["TED%3AAF-A0A521IH80-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521IH80-F1-model_v4_TED01"],["TED%3AAF-A0A7X8IF67-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X8IF67-F1-model_v4_TED01"]]},{"id":"NCBITaxon:190485","l":"Xanthomonas campestris pv. campestris (strain ATCC 33913 / DSM 3586 / NCPPB 528 / LMG 568 / P 25)","na":2,"nb":9,"a":[["fruit-bto-0000486.html","fruit"],["vascular-tissue-bto-0001432.html","vascular tissue"]],"b":[["Pfam%3APF28546","TonB transmembrane helix"],["Pfam%3APF00325","Bacterial regulatory proteins, crp family"],["Pfam%3APF06165","Glycosyl hydrolase 94, supersandwich domain"],["Pfam%3APF12019","Type II transport protein GspH"],["Pfam%3APF22059","Glucuronosyltransferase GumK, N-terminal domain"],["Pfam%3APF14307","Glycosyltransferase WbsX"]]},{"id":"NCBITaxon:272624","l":"Legionella pneumophila subsp. pneumophila (strain Philadelphia 1 / ATCC 33152 / DSM 7513)","na":2,"nb":9,"a":[["underground-water-envo-00005792.html","underground water"],["macrophage-bto-0000801.html","macrophage"]],"b":[["Pfam%3APF22170","Phosphocholine transferase AnkX insertion domain"],["Pfam%3APF23127","DotM, C-terminal cytoplasmic domain"],["Pfam%3APF14860","DrrA phosphatidylinositol 4-phosphate binding domain"],["Pfam%3APF01346","Domain amino terminal to FKBP-type peptidyl-prolyl isomerase"],["Pfam%3APF19335","Heavy metal binding domain"],["Pfam%3APF26393","Lart1 ADP-ribosyltransferase family"]]},{"id":"NCBITaxon:1074","l":"Rhodoblastus acidophilus","na":8,"nb":2,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"],["liquid-water-envo-00002006.html","liquid water"],["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["rhizosphere-envo-00005801.html","rhizosphere"]],"b":[["PROSITE%3APS00969","Antenna complexes beta subunits signature"],["TED%3AAF-A0A6N8DR15-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8DR15-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1655","l":"Actinomyces naeslundii","na":8,"nb":2,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"],["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"],["archeological-site-envo-00000564.html","archeological site"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Pfam%3APF16555","Gram-positive pilin subunit D1, N-terminal domain"],["TED%3AAF-A0A2Z5QNH6-F1-model_v4_TED02","TED novel fold AF-A0A2Z5QNH6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2702","l":"Gardnerella vaginalis","na":8,"nb":2,"a":[["egg-food-product-foodon-00001274.html","egg food product"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["TED%3AAF-A0A133NUL7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A133NUL7-F1-model_v4_TED01"],["TED%3AAF-A0A3E2C3X9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3E2C3X9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":8,"nb":2,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"]],"b":[["TED%3AAF-A0A6N3WS12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N3WS12-F1-model_v4_TED01"],["TED%3AAF-A0A3R7GIU2-F1-model_v4_TED02","TED novel fold AF-A0A3R7GIU2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:419947","l":"Mycobacterium tuberculosis (strain ATCC 25177 / H37Ra)","na":2,"nb":8,"a":[["clay-envo-00002982.html","clay"],["paddy-field-envo-00000297.html","paddy field"]],"b":[["Pfam%3APF17668","Acetyltransferase (GNAT) domain"],["Pfam%3APF13527","Acetyltransferase (GNAT) domain"],["Pfam%3APF02261","Aspartate decarboxylase"],["Pfam%3APF07584","Aerotolerance regulator N-terminal"],["Pfam%3APF03993","Domain of Unknown Function (DUF349)"],["Pfam%3APF02313","Fumarate reductase subunit D"]]},{"id":"NCBITaxon:467705","l":"Streptococcus gordonii (strain Challis / ATCC 35105 / BCRC 15272 / CH1 / DL1 / V288)","na":2,"nb":8,"a":[["dental-plaque-bto-0000338.html","dental plaque"],["tooth-bto-0000397.html","tooth"]],"b":[["Pfam%3APF18652","Adhesin P1 N-terminal domain"],["Pfam%3APF17998","Cell surface antigen I/II C2 terminal domain"],["Pfam%3APF16364","Cell surface antigen C-terminus"],["Pfam%3APF18938","Atypical Rib domain"],["Pfam%3APF20164","GspA/SrpA SigLec-like domain"],["Pfam%3APF08363","Glucan-binding protein C"]]},{"id":"NCBITaxon:1231","l":"Nitrosospira multiformis","na":7,"nb":2,"a":[["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["biome-envo-00000428.html","biome"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"],["sludge-envo-00002044.html","sludge"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"]],"b":[["TED%3AAF-A0A1I0DRD9-F1-model_v4_TED01","TED novel fold AF-A0A1I0DRD9-F1-model_v4_TED01"],["TED%3AAF-A0A2T5IBV5-F1-model_v4_TED01","TED novel fold AF-A0A2T5IBV5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1911","l":"Streptomyces griseus","na":2,"nb":7,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["Pfam%3APF13207","AAA domain"],["Pfam%3APF27054","Beta-methylindole-3-pyruvate reductase C-terminal domain"],["Pfam%3APF26558","3-dehydroquinate synthase II C-terminal domain"],["Pfam%3APF01959","3-dehydroquinate synthase II N-terminal domain"],["Pfam%3APF13459","4Fe-4S single cluster domain"],["Pfam%3APF04655","Aminoglycoside/hydroxyurea antibiotic resistance kinase"]]},{"id":"NCBITaxon:216773","l":"Corethron hystrix","na":2,"nb":7,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"],["saline-water-envo-00002010.html","saline water"]],"b":[["TED%3AAF-A0A7S1B7I7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1B7I7-F1-model_v4_TED01"],["TED%3AAF-A0A7S1BDF8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1BDF8-F1-model_v4_TED01"],["TED%3AAF-A0A7S1BL96-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1BL96-F1-model_v4_TED01"],["TED%3AAF-A0A7S1FKX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1FKX2-F1-model_v4_TED01"],["TED%3AAF-A0A7S1BFC1-F1-model_v4_TED01","TED novel fold AF-A0A7S1BFC1-F1-model_v4_TED01"],["TED%3AAF-A0A7S1BX15-F1-model_v4_TED02","TED novel fold AF-A0A7S1BX15-F1-model_v4_TED02"]]},{"id":"NCBITaxon:379508","l":"Lodderomyces elongisporus (strain ATCC 11503 / CBS 2605 / JCM 1781 / NBRC 1676 / NRRL YB-4239)","na":2,"nb":7,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"],["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["Pfam%3APF28272","AIM11 N-terminal domain"],["Pfam%3APF23681","ATP-dependent rRNA helicase SPB4-like, C-terminal tail"],["Pfam%3APF01987","Mitochondrial biogenesis AIM24"],["Pfam%3APF17052","Cap associated factor"],["PROSITE%3APS00885","EPSP synthase signature 2"],["TED%3AAF-A5DUG9-F1-model_v4_TED01","TED novel fold AF-A5DUG9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1184267","l":"Pseudobdellovibrio exovorus JSS","na":6,"nb":2,"a":[["stream-envo-00000023.html","stream"],["biome-envo-00000428.html","biome"],["desert-biome-envo-01000179.html","desert biome"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["TED%3AAF-M4VA20-F1-model_v4_TED02","TED highly-symmetric fold AF-M4VA20-F1-model_v4_TED02"],["TED%3AAF-M4VEE5-F1-model_v4_TED01","TED highly-symmetric fold AF-M4VEE5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:34003","l":"Paracoccus aminophilus","na":6,"nb":2,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["small-river-biome-envo-00000890.html","small river biome"],["water-scum-envo-00005794.html","water scum"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"],["stony-desert-envo-00000183.html","stony desert"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["Pfam%3APF26354","N,N-dimethylformamidase alpha subunit"],["Pfam%3APF20254","N,N-dimethylformamidase beta subunit-like, C-terminal"]]},{"id":"NCBITaxon:353153","l":"Trypanosoma cruzi (strain CL Brener)","na":2,"nb":6,"a":[["amastigote-bto-0000062.html","amastigote"],["kinetoplastid-bto-0002502.html","kinetoplastid"]],"b":[["Pfam%3APF03738","Glutathionylspermidine synthase preATP-grasp"],["TED%3AAF-Q4D5Q0-F1-model_v4_TED01","TED highly-symmetric fold AF-Q4D5Q0-F1-model_v4_TED01"],["TED%3AAF-Q4CQE1-F1-model_v4_TED01","TED novel fold AF-Q4CQE1-F1-model_v4_TED01"],["TED%3AAF-Q4DRS0-F1-model_v4_TED01","TED novel fold AF-Q4DRS0-F1-model_v4_TED01"],["TED%3AAF-Q4DY69-F1-model_v4_TED01","TED novel fold AF-Q4DY69-F1-model_v4_TED01"],["TED%3AAF-Q4E0W9-F1-model_v4_TED01","TED novel fold AF-Q4E0W9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":2,"nb":6,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["Pfam%3APF01177","Asp/Glu/Hydantoin racemase"],["Pfam%3APF11339","Protein of unknown function (DUF3141)"],["PROSITE%3APS01303","BCCT family of transporters signature"],["PROSITE%3APS00665","Dihydrodipicolinate synthase signature 1"],["TED%3AAF-A0A2J0YSD4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J0YSD4-F1-model_v4_TED01"],["TED%3AAF-A0A843ZNG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843ZNG8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:446","l":"Legionella pneumophila","na":6,"nb":2,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["hospital-envo-00002173.html","hospital"],["macrophage-bto-0000801.html","macrophage"],["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["Pfam%3APF14860","DrrA phosphatidylinositol 4-phosphate binding domain"],["TED%3AAF-A0A822WCM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A822WCM6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:523849","l":"Thermococcus litoralis (strain ATCC 51850 / DSM 5473 / JCM 8560 / NS-C)","na":2,"nb":6,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["Pfam%3APF09094","Alpha-amylase/4-alpha-glucanotransferase, middle domain"],["Pfam%3APF09095","Alpha-amylase/4-alpha-glucanotransferase, C-terminal"],["Pfam%3APF28476","Glycogen phosphorylase C-terminal domain"],["Pfam%3APF11897","Protein of unknown function (DUF3417)"],["PROSITE%3APS01334","Pyrrolidone-carboxylate peptidase cysteine active site"],["PROSITE%3APS01333","Pyrrolidone-carboxylate peptidase glutamic acid active site"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":2,"nb":6,"a":[["hospital-envo-00002173.html","hospital"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["Pfam%3APF16376","N-terminal domain of fragilysin"],["TED%3AAF-A0A412XR06-F1-model_v4_TED03","TED novel fold AF-A0A412XR06-F1-model_v4_TED03"],["TED%3AAF-A0A4V1EUI2-F1-model_v4_TED02","TED novel fold AF-A0A4V1EUI2-F1-model_v4_TED02"],["TED%3AAF-A0A5C6IXH5-F1-model_v4_TED01","TED novel fold AF-A0A5C6IXH5-F1-model_v4_TED01"],["TED%3AAF-A0A5C6L6G9-F1-model_v4_TED02","TED novel fold AF-A0A5C6L6G9-F1-model_v4_TED02"],["TED%3AAF-A0A642KY52-F1-model_v4_TED01","TED novel fold AF-A0A642KY52-F1-model_v4_TED01"]]},{"id":"UBERON:0001046","l":"","na":6,"nb":2,"a":[["hindgut-habitatmech-gold-38f60a7f52.html","Hindgut"],["hindgut-habitatmech-gold-e323c98727.html","Hindgut"],["hindgut-habitatmech-gold-19840c718e.html","Hindgut"],["hindgut-habitatmech-gold-c336fb0bb7.html","Hindgut"],["hindgut-habitatmech-gold-50722c7871.html","Hindgut"],["paunch-p3-segment-habitatmech-gold-86aef52360.html","Paunch/P3 segment"]],"b":[["GO%3A0043133","hindgut contraction"],["GO%3A0043134","regulation of hindgut contraction"]]},{"id":"NCBITaxon:1055524","l":"Burkholderia cenocepacia (strain H111)","na":2,"nb":5,"a":[["k-562-cell-bto-0000664.html","K-562 cell"],["macrophage-bto-0000801.html","macrophage"]],"b":[["Pfam%3APF20148","Domain of unknown function (DUF6531)"],["Pfam%3APF14430","Immunity protein Imm1"],["Pfam%3APF05488","PAAR motif"],["Pfam%3APF03527","RHS protein"],["Pfam%3APF05593","RHS Repeat"]]},{"id":"NCBITaxon:1121264","l":"Caloranaerobacter azorensis DSM 13643","na":5,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["sea-envo-00000016.html","sea"],["ridge-envo-00000283.html","ridge"],["trough-envo-00000499.html","trough"]],"b":[["TED%3AAF-A0A1M5V0T2-F1-model_v4_TED02","TED novel fold AF-A0A1M5V0T2-F1-model_v4_TED02"],["TED%3AAF-A0A1M5V0T2-F1-model_v4_TED03","TED novel fold AF-A0A1M5V0T2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1245","l":"Leuconostoc mesenteroides","na":5,"nb":2,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["leaf-po-0025034.html","leaf"],["animal-manure-envo-00003031.html","animal manure"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["Pfam%3APF08951","Bacteriocin immunity protein family"],["TED%3AAF-A0A8B5R1X5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B5R1X5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:143495","l":"Aneurinibacillus thermoaerophilus","na":5,"nb":2,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["Pfam%3APF05523","WxcM-like, C-terminal"],["TED%3AAF-A0A1G8FMF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G8FMF4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:145262","l":"Methanothermobacter thermautotrophicus","na":5,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["intestine-environment-envo-2100002.html","intestine environment"],["sludge-envo-00002044.html","sludge"]],"b":[["Pfam%3APF12686","Protein of unknown function (DUF3800)"],["PROSITE%3APS00093","N-4 cytosine-specific DNA methylases signature"]]},{"id":"NCBITaxon:2021","l":"Thermobifida fusca","na":2,"nb":5,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["Pfam%3APF00553","Cellulose binding domain"],["Pfam%3APF01341","Glycosyl hydrolases family 6"],["PROSITE%3APS00561","CBM2a (carbohydrate-binding type-2) domain signature"],["PROSITE%3APS00655","Glycosyl hydrolases family 6 signature 1"],["PROSITE%3APS00656","Glycosyl hydrolases family 6 signature 2"]]},{"id":"NCBITaxon:37919","l":"Rhodococcus opacus","na":5,"nb":2,"a":[["watercourse-envo-00000029.html","watercourse"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"],["sludge-envo-00002044.html","sludge"],["water-scum-envo-00005794.html","water scum"]],"b":[["Pfam%3APF11794","4-hydroxyphenylacetate 3-hydroxylase N terminal"],["Pfam%3APF03241","4-hydroxyphenylacetate 3-hydroxylase C terminal"]]},{"id":"NCBITaxon:393133","l":"Listeria monocytogenes serotype 1/2a (strain 10403S)","na":2,"nb":5,"a":[["lymphocyte-bto-0000775.html","lymphocyte"],["spleen-bto-0001281.html","spleen"]],"b":[["Pfam%3APF07698","7TM receptor with intracellular HD hydrolase"],["Pfam%3APF07697","7TM-HD extracellular"],["Pfam%3APF24898","Cyclic-di-AMP phosphodiesterase GdpP-like, GGDEF domain"],["Pfam%3APF19293","CdaA N-terminal transmembrane domain"],["Pfam%3APF04346","Ethanolamine utilisation protein, EutH"]]},{"id":"NCBITaxon:394096","l":"Hyalangium minutum","na":2,"nb":5,"a":[["wood-bto-0005516.html","wood"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["TED%3AAF-A0A085W4M3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085W4M3-F1-model_v4_TED01"],["TED%3AAF-A0A085WRA7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085WRA7-F1-model_v4_TED01"],["TED%3AAF-A0A085WWM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085WWM4-F1-model_v4_TED01"],["TED%3AAF-A0A085W7S5-F1-model_v4_TED03","TED novel fold AF-A0A085W7S5-F1-model_v4_TED03"],["TED%3AAF-A0A085WH04-F1-model_v4_TED01","TED novel fold AF-A0A085WH04-F1-model_v4_TED01"]]},{"id":"NCBITaxon:529","l":"Brucella anthropi","na":5,"nb":2,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["hospital-envo-00002173.html","hospital"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF07930","D-aminopeptidase, domain B"],["TED%3AAF-A0A7T4IBJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T4IBJ8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":5,"nb":2,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["pseudostem-bto-0005992.html","pseudostem"],["seedling-bto-0001228.html","seedling"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["soil-envo-00001998.html","soil"]],"b":[["PROSITE%3APS00336","Beta-lactamase class-C active site"],["TED%3AAF-A0A155XQ59-F1-model_v4_TED02","TED novel fold AF-A0A155XQ59-F1-model_v4_TED02"]]},{"id":"NCBITaxon:556","l":"Dickeya chrysanthemi","na":2,"nb":5,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["Pfam%3APF18390","Glycogen debranching enzyme C-terminal domain"],["Pfam%3APF25994","AprE, long alpha-helical hairpin"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF03812","2-keto-3-deoxygluconate permease"],["Pfam%3APF09589","HrpA pilus formation protein"]]},{"id":"NCBITaxon:63737","l":"Nostoc punctiforme PCC 73102","na":2,"nb":5,"a":[["heterocyst-bto-0000600.html","heterocyst"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["Pfam%3APF11266","Long-chain fatty aldehyde decarbonylase"],["Pfam%3APF21808","Bacterial dynamin-like protein, helical domain"],["Pfam%3APF18460","Heterocyst differentiation regulator C-terminal Hood domain"],["Pfam%3APF13619","KTSC domain"],["PROSITE%3APS01026","Photosystem I psaG and psaK proteins signature"]]},{"id":"NCBITaxon:6945","l":"Ixodes scapularis","na":5,"nb":2,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["city-envo-00000856.html","city"],["midgut-bto-0000863.html","midgut"],["nymph-bto-0000954.html","nymph"],["salivary-gland-bto-0001203.html","salivary gland"]],"b":[["TED%3AAF-A0A4D5RH31-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4D5RH31-F1-model_v4_TED01"],["TED%3AAF-B7Q616-F1-model_v4_TED01","TED highly-symmetric fold AF-B7Q616-F1-model_v4_TED01"]]},{"id":"NCBITaxon:76114","l":"Aromatoleum aromaticum (strain DSM 19018 / LMG 30748 / EbN1)","na":2,"nb":5,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["Pfam%3APF08882","Acetone carboxylase gamma subunit"],["Pfam%3APF19278","Hydantoinase/oxoprolinase C-terminal domain"],["Pfam%3APF05378","Hydantoinase/oxoprolinase N-terminal region"],["Pfam%3APF01968","Hydantoinase/oxoprolinase"],["Pfam%3APF02538","Hydantoinase B/oxoprolinase"]]},{"id":"NCBITaxon:885","l":"Desulfovibrio sp.","na":5,"nb":2,"a":[["marine-water-body-envo-00001999.html","marine water body"],["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["sludge-envo-00002044.html","sludge"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["TED%3AAF-A0A6N8BWZ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8BWZ8-F1-model_v4_TED01"],["TED%3AAF-A0A2E3RAH3-F1-model_v4_TED02","TED novel fold AF-A0A2E3RAH3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:100884","l":"Coprobacillus cateniformis","na":4,"nb":2,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["gut-bto-0000545.html","gut"],["sediment-envo-00002007.html","sediment"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-E7G7Y6-F1-model_v4_TED01","TED highly-symmetric fold AF-E7G7Y6-F1-model_v4_TED01"],["TED%3AAF-E7G976-F1-model_v4_TED02","TED highly-symmetric fold AF-E7G976-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1122192","l":"Marinactinospora thermotolerans DSM 45154","na":4,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["ocean-trench-envo-00000275.html","ocean trench"],["oceanic-zone-envo-00000207.html","oceanic zone"],["trough-envo-00000499.html","trough"]],"b":[["TED%3AAF-A0A1T4KF05-F1-model_v4_TED04","TED novel fold AF-A0A1T4KF05-F1-model_v4_TED04"],["TED%3AAF-A0A1T4TG93-F1-model_v4_TED01","TED novel fold AF-A0A1T4TG93-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1254","l":"Pediococcus acidilactici","na":4,"nb":2,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["research-facility-envo-00000469.html","research facility"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["Pfam%3APF01721","Class II bacteriocin"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":4,"nb":2,"a":[["stream-envo-00000023.html","stream"],["biome-envo-00000428.html","biome"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["Pfam%3APF02052","Gallidermin"],["Pfam%3APF04604","Type-A lantibiotic"]]},{"id":"NCBITaxon:1334","l":"Streptococcus dysgalactiae","na":4,"nb":2,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["Pfam%3APF20746","Endo-beta-N-acetylglucosaminidase F2, Ig-like domain"],["Pfam%3APF23952","Endo-beta-N-acetylglucosaminidase EndoS LRR domain"]]},{"id":"NCBITaxon:1401","l":"Paenibacillus lautus","na":2,"nb":4,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["Pfam%3APF18448","Carbohydrate binding domain"],["Pfam%3APF12891","Glycoside hydrolase family 44"],["TED%3AAF-A0A328VZ83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A328VZ83-F1-model_v4_TED01"],["TED%3AAF-A0A385TU82-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A385TU82-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1525","l":"Neomoorella thermoacetica","na":2,"nb":4,"a":[["liquid-water-envo-00002006.html","liquid water"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["Pfam%3APF25461","Selenocysteine-specific elongation factor, beta-barrel domain"],["Pfam%3APF18537","Carbon monoxide dehydrogenase subunit alpha N-terminal domain"],["Pfam%3APF04060","Putative Fe-S cluster"],["Pfam%3APF03599","CO dehydrogenase/acetyl-CoA synthase delta subunit"]]},{"id":"NCBITaxon:2045","l":"Nocardioides simplex","na":2,"nb":4,"a":[["petroleum-envo-00002984.html","petroleum"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["Pfam%3APF00775","Dioxygenase"],["Pfam%3APF04444","Catechol dioxygenase N terminus"],["PROSITE%3APS00083","Intradiol ring-cleavage dioxygenases signature"],["TED%3AAF-A0A4Y3NBY1-F1-model_v4_TED01","TED novel fold AF-A0A4Y3NBY1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:262316","l":"","na":2,"nb":4,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF19288","CofH/MqnC C-terminal region"],["Pfam%3APF03601","Conserved hypothetical protein 698"],["PROSITE%3APS60002","Phosphoketolase signature 1"],["PROSITE%3APS60003","Phosphoketolase signature 2"]]},{"id":"NCBITaxon:264462","l":"Bdellovibrio bacteriovorus HD100","na":4,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-Q6MMM6-F1-model_v4_TED01","TED novel fold AF-Q6MMM6-F1-model_v4_TED01"],["TED%3AAF-Q6MPT8-F1-model_v4_TED01","TED novel fold AF-Q6MPT8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:266265","l":"","na":2,"nb":4,"a":[["aquifer-envo-00012408.html","aquifer"],["landfill-envo-00000533.html","landfill"]],"b":[["Pfam%3APF09290","Prokaryotic acetaldehyde dehydrogenase, dimerisation"],["Pfam%3APF04345","Chorismate lyase"],["Pfam%3APF07836","DmpG-like communication domain"],["Pfam%3APF06139","BphX-like"]]},{"id":"NCBITaxon:269800","l":"Thermobifida fusca YX","na":2,"nb":4,"a":[["compost-envo-00002170.html","compost"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["Pfam%3APF20628","Dyp-type peroxidase, C-terminal"],["Pfam%3APF04261","Dyp-type peroxidase, N-terminal"],["Pfam%3APF18374","Enolase N-terminal domain-like"],["PROSITE%3APS00909","Mandelate racemase / muconate lactonizing enzyme family signature 2"]]},{"id":"NCBITaxon:28115","l":"Porphyromonas macacae","na":4,"nb":2,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"],["mud-envo-01000001.html","mud"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["TED%3AAF-A0A379E7L0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A379E7L0-F1-model_v4_TED01"],["TED%3AAF-A0A379E9C9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A379E9C9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:285","l":"Comamonas testosteroni","na":2,"nb":4,"a":[["waste-habitatmech-bacdive-36df85e4a4.html","Waste"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["Pfam%3APF02900","Catalytic LigB subunit of aromatic ring-opening dioxygenase"],["Pfam%3APF19301","LigXa C-terminal domain like"],["TED%3AAF-A0A096HND0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A096HND0-F1-model_v4_TED01"],["TED%3AAF-A0A1Y1JCM1-F1-model_v4_TED01","TED novel fold AF-A0A1Y1JCM1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:313603","l":"Maribacter sp. HTCC2170","na":4,"nb":2,"a":[["coral-reef-envo-00000150.html","coral reef"],["hydrographic-feature-envo-00000012.html","hydrographic feature"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["TED%3AAF-A4ARA8-F1-model_v4_TED01","TED novel fold AF-A4ARA8-F1-model_v4_TED01"],["TED%3AAF-A4ARA8-F1-model_v4_TED02","TED novel fold AF-A4ARA8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans Pd1222","na":2,"nb":4,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["Pfam%3APF27518","Heme exporter protein C"],["Pfam%3APF22039","Imidazolonepropionase-like composite domain, bacteria"],["PROSITE%3APS01181","Ribosomal protein S21 signature"],["Pfam%3APF02239","Cytochrome D1 heme domain"]]},{"id":"NCBITaxon:349307","l":"","na":2,"nb":4,"a":[["rice-field-envo-00000296.html","rice field"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["Pfam%3APF06973","Domain of unknown function (DUF1297)"],["Pfam%3APF07826","IMP cyclohydrolase-like protein"],["Pfam%3APF06849","Protein of unknown function (DUF1246)"],["Pfam%3APF08714","Formaldehyde-activating enzyme (Fae)"]]},{"id":"NCBITaxon:365044","l":"Polaromonas naphthalenivorans CJ2","na":4,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["large-river-biome-envo-00000887.html","large river biome"],["waterfall-envo-00000040.html","waterfall"],["petroleum-envo-00002984.html","petroleum"]],"b":[["Pfam%3APF01888","CbiD"],["Pfam%3APF02609","Exonuclease VII small subunit"]]},{"id":"NCBITaxon:406327","l":"","na":2,"nb":4,"a":[["estuary-envo-00000045.html","estuary"],["mudflat-envo-00000192.html","mudflat"]],"b":[["Pfam%3APF06787","FeGP cofactor biosynthesis protein HcgF"],["Pfam%3APF04476","4-HFC-P synthase"],["Pfam%3APF27030","AbpE bacteria"],["Pfam%3APF09840","Uncharacterized protein conserved in archaea (DUF2067)"]]},{"id":"NCBITaxon:497965","l":"","na":2,"nb":4,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["TED%3AAF-E0UJA0-F1-model_v4_TED01","TED highly-symmetric fold AF-E0UJA0-F1-model_v4_TED01"],["TED%3AAF-E0U6M3-F1-model_v4_TED03","TED novel fold AF-E0U6M3-F1-model_v4_TED03"],["TED%3AAF-E0UE39-F1-model_v4_TED02","TED novel fold AF-E0UE39-F1-model_v4_TED02"],["TED%3AAF-E0UM93-F1-model_v4_TED01","TED novel fold AF-E0UM93-F1-model_v4_TED01"]]},{"id":"NCBITaxon:500485","l":"Penicillium rubens Wisconsin 54-1255","na":2,"nb":4,"a":[["finger-bto-0004669.html","finger"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["Pfam%3APF03417","Acyl-coenzyme A:6-aminopenicillanic acid acyl-transferase"],["Pfam%3APF03659","Glycosyl hydrolase family 71"],["PROSITE%3APS00185","Isopenicillin N synthase signature 1"],["PROSITE%3APS00186","Isopenicillin N synthase signature 2"]]},{"id":"NCBITaxon:529507","l":"","na":2,"nb":4,"a":[["needle-bto-0000917.html","needle"],["spinal-cord-bto-0001279.html","spinal cord"]],"b":[["Pfam%3APF02028","BCCT, betaine/carnitine/choline family transporter"],["PROSITE%3APS01303","BCCT family of transporters signature"],["PROSITE%3APS01120","Urease nickel ligands signature"],["PROSITE%3APS00145","Urease active site"]]},{"id":"NCBITaxon:556484","l":"","na":2,"nb":4,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["TED%3AAF-B7GAJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-B7GAJ8-F1-model_v4_TED01"],["TED%3AAF-B7G520-F1-model_v4_TED02","TED novel fold AF-B7G520-F1-model_v4_TED02"],["TED%3AAF-B7G8V4-F1-model_v4_TED02","TED novel fold AF-B7G8V4-F1-model_v4_TED02"],["TED%3AAF-B7GB31-F1-model_v4_TED01","TED novel fold AF-B7GB31-F1-model_v4_TED01"]]},{"id":"NCBITaxon:60552","l":"Burkholderia vietnamiensis","na":4,"nb":2,"a":[["hospital-envo-00002173.html","hospital"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["TED%3AAF-A0A1G5M5D3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G5M5D3-F1-model_v4_TED02"],["TED%3AAF-A0A2Z6TW79-F1-model_v4_TED01","TED novel fold AF-A0A2Z6TW79-F1-model_v4_TED01"]]},{"id":"NCBITaxon:678","l":"Vibrio sp.","na":4,"nb":2,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["aquaculture-farm-envo-03600074.html","aquaculture farm"],["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["Pfam%3APF17851","Beta xylosidase C-terminal Concanavalin A-like domain"],["Pfam%3APF11606","Family 31 carbohydrate binding protein"]]},{"id":"NCBITaxon:83552","l":"Parachlamydia acanthamoebae","na":2,"nb":4,"a":[["elementary-body-bto-0000377.html","elementary body"],["hep-2-cell-bto-0000976.html","HEp-2 cell"]],"b":[["TED%3AAF-A0A0C1C0X3-F1-model_v4_TED01","TED novel fold AF-A0A0C1C0X3-F1-model_v4_TED01"],["TED%3AAF-A0A0C1C9D0-F1-model_v4_TED03","TED novel fold AF-A0A0C1C9D0-F1-model_v4_TED03"],["TED%3AAF-A0A0C1CAV8-F1-model_v4_TED03","TED novel fold AF-A0A0C1CAV8-F1-model_v4_TED03"],["TED%3AAF-A0A0C1ECC2-F1-model_v4_TED03","TED novel fold AF-A0A0C1ECC2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1019","l":"Capnocytophaga sputigena","na":3,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["biotope-envo-00002036.html","biotope"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-A0A3S4WAY3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S4WAY3-F1-model_v4_TED01"],["TED%3AAF-A0A2A3N675-F1-model_v4_TED02","TED novel fold AF-A0A2A3N675-F1-model_v4_TED02"]]},{"id":"NCBITaxon:102129","l":"Leptolyngbya sp. PCC 7375","na":2,"nb":3,"a":[["undersea-feature-envo-00000104.html","undersea feature"],["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["TED%3AAF-K9ELM8-F1-model_v4_TED01","TED highly-symmetric fold AF-K9ELM8-F1-model_v4_TED01"],["TED%3AAF-K9F3N8-F1-model_v4_TED02","TED highly-symmetric fold AF-K9F3N8-F1-model_v4_TED02"],["TED%3AAF-K9FA28-F1-model_v4_TED01","TED novel fold AF-K9FA28-F1-model_v4_TED01"]]},{"id":"NCBITaxon:103796","l":"Pseudomonas syringae pv. actinidiae","na":2,"nb":3,"a":[["leaf-po-0025034.html","leaf"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["Pfam%3APF05425","Copper resistance protein D"],["TED%3AAF-J7I956-F1-model_v4_TED01","TED highly-symmetric fold AF-J7I956-F1-model_v4_TED01"],["TED%3AAF-J7IG33-F1-model_v4_TED01","TED highly-symmetric fold AF-J7IG33-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1071","l":"Rhodopila globiformis","na":3,"nb":2,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["TED%3AAF-A0A2S6NEC8-F1-model_v4_TED01","TED novel fold AF-A0A2S6NEC8-F1-model_v4_TED01"],["TED%3AAF-A0A2S6NJW5-F1-model_v4_TED01","TED novel fold AF-A0A2S6NJW5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1120925","l":"Acinetobacter bouvetii DSM 14964 = CIP 107468","na":3,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["proteintraitsmech%3AELIFE109154_VibH_like","VibH-like metallophore standalone condensation enzyme family"],["TED%3AAF-N9C7M4-F1-model_v4_TED02","TED novel fold AF-N9C7M4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1122961","l":"","na":2,"nb":3,"a":[["volcanic-field-envo-00000354.html","volcanic field"],["volcano-envo-00000247.html","volcano"]],"b":[["Pfam%3APF22578","Geranylgeranyl reductase catalytic domain"],["Pfam%3APF04038","Dihydroneopterin aldolase"],["Pfam%3APF16912","Glucose dehydrogenase C-terminus"]]},{"id":"NCBITaxon:1238","l":"Piscirickettsia salmonis","na":3,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["sea-water-envo-00002149.html","sea water"],["stream-envo-00000023.html","stream"]],"b":[["TED%3AAF-A0A0K2DZD9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0K2DZD9-F1-model_v4_TED01"],["TED%3AAF-A0A1L6TBT4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6TBT4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1249","l":"Weissella paramesenteroides","na":3,"nb":2,"a":[["cecum-bto-0000166.html","cecum"],["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"]],"b":[["Pfam%3APF01874","ATP:dephospho-CoA triphosphoribosyl transferase"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"]]},{"id":"NCBITaxon:1334565","l":"","na":2,"nb":3,"a":[["liver-bto-0000759.html","liver"],["spleen-bto-0001281.html","spleen"]],"b":[["Pfam%3APF09479","Listeria-Bacteroides repeat domain (List_Bact_rpt)"],["Pfam%3APF13457","GW (Gly-Tryp) dipeptide domain"],["Pfam%3APF12354","Bacterial adhesion/invasion protein N terminal"]]},{"id":"NCBITaxon:1380357","l":"Rhodospirillales bacterium URHD0017","na":3,"nb":2,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["TED%3AAF-A0A1H8SNT0-F1-model_v4_TED02","TED novel fold AF-A0A1H8SNT0-F1-model_v4_TED02"],["TED%3AAF-A0A1H8Y0S7-F1-model_v4_TED02","TED novel fold AF-A0A1H8Y0S7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1387353","l":"Paludisphaera borealis","na":3,"nb":2,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["filament-bto-0000463.html","filament"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A1U7CK02-F1-model_v4_TED02","TED novel fold AF-A0A1U7CK02-F1-model_v4_TED02"],["TED%3AAF-A0A1U7CMS9-F1-model_v4_TED03","TED novel fold AF-A0A1U7CMS9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:154046","l":"Hungatella hathewayi","na":3,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["TED%3AAF-A0A3E3DRT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3E3DRT8-F1-model_v4_TED01"],["TED%3AAF-A0A174BLS4-F1-model_v4_TED01","TED novel fold AF-A0A174BLS4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1541063","l":"Prolixibacter denitrificans","na":3,"nb":2,"a":[["environmental-system-envo-01000254.html","environmental system"],["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"]],"b":[["TED%3AAF-A0A2P8CHN5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P8CHN5-F1-model_v4_TED01"],["TED%3AAF-A0A2P8CKY9-F1-model_v4_TED01","TED novel fold AF-A0A2P8CKY9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:157687","l":"Leptotrichia wadei","na":3,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["grassland-soil-envo-00005750.html","grassland soil"],["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["TED%3AAF-A0A510KFE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A510KFE6-F1-model_v4_TED01"],["TED%3AAF-A0A510KJX4-F1-model_v4_TED02","TED novel fold AF-A0A510KJX4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1582","l":"Lacticaseibacillus casei","na":3,"nb":2,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["Pfam%3APF07475","HPr Serine kinase C-terminal domain"],["PROSITE%3APS01163","Galactose-1-phosphate uridyl transferase family 2 signature"]]},{"id":"NCBITaxon:1597","l":"Lacticaseibacillus paracasei","na":3,"nb":2,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["Pfam%3APF09136","Glucodextranase, domain B"],["Pfam%3APF08109","Lactocin 705 family"]]},{"id":"NCBITaxon:1629","l":"Weissella viridescens","na":3,"nb":2,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["Pfam%3APF02388","FemAB family"],["TED%3AAF-A0A3P2RFX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3P2RFX7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1680","l":"Bifidobacterium adolescentis","na":2,"nb":3,"a":[["brain-bto-0000142.html","brain"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["TED%3AAF-A0A1X2Z2R7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1X2Z2R7-F1-model_v4_TED02"],["TED%3AAF-A0A1X2Z7X6-F1-model_v4_TED02","TED novel fold AF-A0A1X2Z7X6-F1-model_v4_TED02"],["TED%3AAF-A0A1X2ZNR8-F1-model_v4_TED04","TED novel fold AF-A0A1X2ZNR8-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1810840","l":"Piscirickettsiaceae bacterium NZ-RLO1","na":3,"nb":2,"a":[["bhk-21-cell-bto-0000120.html","BHK-21 cell"],["endothelial-progenitor-cell-bto-0004093.html","endothelial progenitor cell"],["sf-21-cell-bto-0001196.html","SF-21 cell"]],"b":[["TED%3AAF-A0A177W3E9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A177W3E9-F1-model_v4_TED03"],["TED%3AAF-A0A177W3K1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A177W3K1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:190304","l":"","na":2,"nb":3,"a":[["fibroblast-bto-0000452.html","fibroblast"],["gingival-epithelium-bto-0004998.html","gingival epithelium"]],"b":[["Pfam%3APF05853","beta-keto acid cleavage enzyme"],["Pfam%3APF26317","Histidine racemase CntK N-terminal domain"],["Pfam%3APF26370","L-erythro-3,5-diaminohexanoate dehydrogenase N-terminal domain"]]},{"id":"NCBITaxon:192","l":"Azospirillum brasilense","na":2,"nb":3,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF24931","ACR9-like, ACT-like domain"],["Pfam%3APF27444","Uridylyltransferase GlnD third domain"],["TED%3AAF-A0A235H319-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A235H319-F1-model_v4_TED01"]]},{"id":"NCBITaxon:192066","l":"Neisseria sp.","na":2,"nb":3,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["TED%3AAF-A0A496JVX2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A496JVX2-F1-model_v4_TED03"],["TED%3AAF-A0A496L0X3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A496L0X3-F1-model_v4_TED01"],["TED%3AAF-A0A496JRN7-F1-model_v4_TED02","TED novel fold AF-A0A496JRN7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:213810","l":"Ruminococcus champanellensis 18P13 = JCM 17042","na":3,"nb":2,"a":[["environmental-feature-envo-00002297.html","environmental feature"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["pig-manure-envo-00003860.html","pig manure"]],"b":[["TED%3AAF-D4LAY2-F1-model_v4_TED01","TED novel fold AF-D4LAY2-F1-model_v4_TED01"],["TED%3AAF-D4LBV4-F1-model_v4_TED01","TED novel fold AF-D4LBV4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:216595","l":"","na":3,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["human-construction-envo-00000070.html","human construction"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["Pfam%3APF04996","Succinylarginine dihydrolase"],["TED%3AAF-A0A0G4E5V4-F1-model_v4_TED01","TED novel fold AF-A0A0G4E5V4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:239935","l":"Akkermansia muciniphila","na":3,"nb":2,"a":[["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["secretion-bto-0002979.html","secretion"]],"b":[["TED%3AAF-A0A2N8IJN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N8IJN7-F1-model_v4_TED01"],["TED%3AAF-A0A6N2UM07-F1-model_v4_TED01","TED novel fold AF-A0A6N2UM07-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2751","l":"Carnobacterium maltaromaticum","na":3,"nb":2,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["food-habitatmech-madin-81cb9e74cb.html","food"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["Pfam%3APF09221","Bacteriocin class IId cyclical uberolysin-like"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"]]},{"id":"NCBITaxon:28454","l":"Sphingobacterium multivorum","na":3,"nb":2,"a":[["mud-envo-01000001.html","mud"],["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["TED%3AAF-A0A7T9NU88-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T9NU88-F1-model_v4_TED01"],["TED%3AAF-A0A7T9PGY4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T9PGY4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:313606","l":"Microscilla marina ATCC 23134","na":3,"nb":2,"a":[["coral-reef-envo-00000150.html","coral reef"],["liquid-water-envo-00002006.html","liquid water"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["TED%3AAF-A1ZH11-F1-model_v4_TED02","TED novel fold AF-A1ZH11-F1-model_v4_TED02"],["TED%3AAF-A1ZSU9-F1-model_v4_TED01","TED novel fold AF-A1ZSU9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:314275","l":"Alteromonas mediterranea","na":2,"nb":3,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A1J0SAZ8-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1J0SAZ8-F1-model_v4_TED04"],["TED%3AAF-A0A1J0SA48-F1-model_v4_TED01","TED novel fold AF-A0A1J0SA48-F1-model_v4_TED01"],["TED%3AAF-A0A1J0SX60-F1-model_v4_TED02","TED novel fold AF-A0A1J0SX60-F1-model_v4_TED02"]]},{"id":"NCBITaxon:331117","l":"Aspergillus fischeri NRRL 181","na":2,"nb":3,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["Pfam%3APF23681","ATP-dependent rRNA helicase SPB4-like, C-terminal tail"],["Pfam%3APF16803","Fe-S cluster assembly protein DRE2 N-terminus"],["Pfam%3APF02012","BNR/Asp-box repeat"]]},{"id":"NCBITaxon:357809","l":"Lachnoclostridium phytofermentans ISDg","na":2,"nb":3,"a":[["reservoir-envo-00000025.html","reservoir"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["Pfam%3APF09508","Lacto-N-biose phosphorylase N-terminal TIM barrel domain"],["Pfam%3APF17386","Lacto-N-biose phosphorylase C-terminal domain"],["Pfam%3APF17385","Lacto-N-biose phosphorylase central domain"]]},{"id":"NCBITaxon:362242","l":"","na":2,"nb":3,"a":[["subcutaneous-tissue-bto-0004525.html","subcutaneous tissue"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF02654","Cobalamin-5-phosphate synthase"],["Pfam%3APF02622","AlgH-like"],["Pfam%3APF01628","HrcA protein C terminal domain"]]},{"id":"NCBITaxon:375","l":"Bradyrhizobium japonicum","na":3,"nb":2,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["TED%3AAF-A0A1L3FD53-F1-model_v4_TED02","TED novel fold AF-A0A1L3FD53-F1-model_v4_TED02"],["TED%3AAF-A0A1L3FDV4-F1-model_v4_TED02","TED novel fold AF-A0A1L3FDV4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:391587","l":"Kordia algicida OT-1","na":2,"nb":3,"a":[["coral-reef-envo-00000150.html","coral reef"],["soil-envo-00001998.html","soil"]],"b":[["TED%3AAF-A9DJI5-F1-model_v4_TED02","TED highly-symmetric fold AF-A9DJI5-F1-model_v4_TED02"],["TED%3AAF-A9E7Y3-F1-model_v4_TED02","TED highly-symmetric fold AF-A9E7Y3-F1-model_v4_TED02"],["TED%3AAF-A9E6S0-F1-model_v4_TED02","TED novel fold AF-A9E6S0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:394503","l":"Ruminiclostridium cellulolyticum H10","na":2,"nb":3,"a":[["agricultural-waste-material-envo-01000371.html","agricultural waste material"],["compost-envo-00002170.html","compost"]],"b":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["PROSITE%3APS00812","Glycosyl hydrolases family 8 signature"],["Pfam%3APF01270","Glycosyl hydrolases family 8"]]},{"id":"NCBITaxon:39486","l":"Dorea formicigenerans","na":2,"nb":3,"a":[["adult-bto-0001043.html","adult"],["juvenile-bto-0002168.html","juvenile"]],"b":[["TED%3AAF-A0A3E5ESC3-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A3E5ESC3-F1-model_v4_TED05"],["TED%3AAF-A0A412MBB7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A412MBB7-F1-model_v4_TED01"],["TED%3AAF-A0A412MF47-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A412MF47-F1-model_v4_TED02"]]},{"id":"NCBITaxon:400667","l":"","na":2,"nb":3,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"],["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["Pfam%3APF17074","Darcynin, domain of unknown function"],["Pfam%3APF05232","Chlorhexidine efflux transporter"],["Pfam%3APF05662","Coiled stalk of trimeric autotransporter adhesin"]]},{"id":"NCBITaxon:400946","l":"Wohlfahrtiimonas chitiniclastica","na":3,"nb":2,"a":[["foot-bto-0000476.html","foot"],["pancreas-bto-0000988.html","pancreas"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["TED%3AAF-A0A256BUL6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A256BUL6-F1-model_v4_TED01"],["TED%3AAF-A0A256BUL6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A256BUL6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:40214","l":"Acinetobacter johnsonii","na":3,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["pitcher-bto-0001069.html","pitcher"],["water-scum-envo-00005794.html","water scum"]],"b":[["Pfam%3APF12973","ChrR Cupin-like domain"],["Pfam%3APF13807","G-rich domain on putative tyrosine kinase"]]},{"id":"NCBITaxon:402880","l":"","na":2,"nb":3,"a":[["marsh-envo-00000035.html","marsh"],["wetland-area-envo-00000043.html","wetland area"]],"b":[["Pfam%3APF02553","Cobalt transport protein component CbiN"],["Pfam%3APF18195","GatD N-terminal domain"],["Pfam%3APF01941","S-adenosylmethionine synthetase (AdoMet synthetase)"]]},{"id":"NCBITaxon:41899","l":"Burkholderia plantarii","na":2,"nb":3,"a":[["panicle-bto-0005436.html","panicle"],["seedling-bto-0001228.html","seedling"]],"b":[["proteintraitsmech%3AELIFE109154_GrbD","GrbD-type graminine biosynthesis protein family"],["proteintraitsmech%3AELIFE109154_GrbE","GrbE-type graminine biosynthesis protein family"],["TED%3AAF-A0A0B6RMB1-F1-model_v4_TED01","TED novel fold AF-A0A0B6RMB1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:523846","l":"Methanothermus fervidus DSM 2088","na":3,"nb":2,"a":[["mountain-envo-00000081.html","mountain"],["seamount-envo-00000264.html","seamount"],["volcano-envo-00000247.html","volcano"]],"b":[["Pfam%3APF02829","3H domain"],["Pfam%3APF27272","Cyclic 2,3-diphosphoglycerate synthetase, N-terminal domain"]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":3,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"]],"b":[["Pfam%3APF07833","Copper amine oxidase N-terminal domain"],["TED%3AAF-A0A447L715-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A447L715-F1-model_v4_TED02"]]},{"id":"NCBITaxon:59919","l":"Prochlorococcus marinus subsp. pastoris str. CCMP1986","na":3,"nb":2,"a":[["marginal-sea-biome-envo-01000046.html","marginal sea biome"],["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"],["sea-envo-00000016.html","sea"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF12288","Carboxysome shell peptide mid-region"]]},{"id":"NCBITaxon:65393","l":"","na":2,"nb":3,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["Pfam%3APF13720","Udp N-acetylglucosamine O-acyltransferase; Domain 2"],["TED%3AAF-B7K6Y8-F1-model_v4_TED03","TED novel fold AF-B7K6Y8-F1-model_v4_TED03"],["TED%3AAF-B7KGW4-F1-model_v4_TED01","TED novel fold AF-B7KGW4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:6669","l":"Daphnia pulex","na":3,"nb":2,"a":[["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"],["neritic-epipelagic-zone-biome-envo-01000042.html","neritic epipelagic zone biome"],["sea-shore-envo-00000485.html","sea shore"]],"b":[["TED%3AAF-E9GQ61-F1-model_v4_TED02","TED novel fold AF-E9GQ61-F1-model_v4_TED02"],["TED%3AAF-E9I2W7-F1-model_v4_TED04","TED novel fold AF-E9I2W7-F1-model_v4_TED04"]]},{"id":"NCBITaxon:714","l":"Aggregatibacter actinomycetemcomitans","na":2,"nb":3,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["Pfam%3APF10137","CAP12/Pycsar effector protein, TIR domain"],["Pfam%3APF25988","CyaD, alpha-helical hairpin domain"],["PROSITE%3APS00543","HlyD family secretion proteins signature"]]},{"id":"NCBITaxon:8090","l":"Oryzias latipes","na":2,"nb":3,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["Pfam%3APF24979","EDAR death domain"],["Pfam%3APF24796","WDR55"],["TED%3AAF-A0A3P9JIT2-F1-model_v4_TED01","TED novel fold AF-A0A3P9JIT2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:889378","l":"Spirochaeta africana DSM 8902","na":3,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["alkaline-water-envo-01000357.html","alkaline water"],["brine-envo-00003044.html","brine"]],"b":[["TED%3AAF-H9UHS0-F1-model_v4_TED01","TED highly-symmetric fold AF-H9UHS0-F1-model_v4_TED01"],["TED%3AAF-H9UIK6-F1-model_v4_TED01","TED novel fold AF-H9UIK6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1032476","l":"Nonomuraea soli","na":2,"nb":2,"a":[["soil-envo-00001998.html","soil"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-A0A7W0HQS4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7W0HQS4-F1-model_v4_TED03"],["TED%3AAF-A0A7W0CFM2-F1-model_v4_TED01","TED novel fold AF-A0A7W0CFM2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1110509","l":"","na":2,"nb":2,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["cob-bto-0000266.html","cob"]],"b":[["Pfam%3APF05228","CHASE4 domain"],["Pfam%3APF08350","Methanogenesis regulatory protein FilR1, middle domain"]]},{"id":"NCBITaxon:1121395","l":"Desulfitobacterium chlororespirans DSM 11544","na":2,"nb":2,"a":[["compost-envo-00002170.html","compost"],["waste-material-envo-00002264.html","waste material"]],"b":[["TED%3AAF-A0A1M7UUA6-F1-model_v4_TED02","TED novel fold AF-A0A1M7UUA6-F1-model_v4_TED02"],["TED%3AAF-A0A1M7UUA6-F1-model_v4_TED03","TED novel fold AF-A0A1M7UUA6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1295","l":"Staphylococcus schleiferi","na":2,"nb":2,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["foot-bto-0000476.html","foot"]],"b":[["Pfam%3APF18153","Cap15, cyclic dinucleotide receptor domain"],["Pfam%3APF26305","cGAS/DncV-like nucleotidyltransferase C-terminal helical domain"]]},{"id":"NCBITaxon:1303","l":"Streptococcus oralis","na":2,"nb":2,"a":[["throat-bto-0000828.html","throat"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Pfam%3APF03047","COMC family"],["TED%3AAF-A0A139PPG4-F1-model_v4_TED02","TED novel fold AF-A0A139PPG4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1527","l":"Anaerocolumna aminovalerica","na":2,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"]],"b":[["TED%3AAF-A0A1I5I955-F1-model_v4_TED02","TED novel fold AF-A0A1I5I955-F1-model_v4_TED02"],["TED%3AAF-A0A1I5ILH1-F1-model_v4_TED04","TED novel fold AF-A0A1I5ILH1-F1-model_v4_TED04"]]},{"id":"NCBITaxon:156889","l":"Magnetococcus marinus MC-1","na":2,"nb":2,"a":[["estuary-envo-00000045.html","estuary"],["marine-neritic-zone-envo-00000206.html","marine neritic zone"]],"b":[["Pfam%3APF02622","AlgH-like"],["Pfam%3APF04279","Intracellular septation protein A"]]},{"id":"NCBITaxon:180282","l":"Delftia tsuruhatensis","na":2,"nb":2,"a":[["surface-water-envo-00002042.html","surface water"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["TED%3AAF-A0A1D8JBF2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1D8JBF2-F1-model_v4_TED01"],["TED%3AAF-A0A5P8XEZ5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5P8XEZ5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:194963","l":"Sinorhizobium americanum","na":2,"nb":2,"a":[["root-nodule-envo-01000164.html","root nodule"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["TED%3AAF-A0A2S3YNG1-F1-model_v4_TED01","TED novel fold AF-A0A2S3YNG1-F1-model_v4_TED01"],["TED%3AAF-A0A4R2AWY1-F1-model_v4_TED01","TED novel fold AF-A0A4R2AWY1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2024826","l":"Blastopirellula sp.","na":2,"nb":2,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["TED%3AAF-A0A2E0B0H3-F1-model_v4_TED02","TED novel fold AF-A0A2E0B0H3-F1-model_v4_TED02"],["TED%3AAF-A0A2G2IUT2-F1-model_v4_TED02","TED novel fold AF-A0A2G2IUT2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:257314","l":"","na":2,"nb":2,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["Pfam%3APF10439","Bacteriocin class II with double-glycine leader peptide"],["Pfam%3APF02435","Levansucrase/Invertase"]]},{"id":"NCBITaxon:271848","l":"Burkholderia thailandensis E264","na":2,"nb":2,"a":[["needle-bto-0000917.html","needle"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["Pfam%3APF12091","Protein of unknown function (DUF3567)"],["Pfam%3APF01075","Glycosyltransferase family 9 (heptosyltransferase)"]]},{"id":"NCBITaxon:2748","l":"Carnobacterium divergens","na":2,"nb":2,"a":[["food-product-foodon-00001002.html","food product"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["TED%3AAF-A0A7Z8CZ16-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Z8CZ16-F1-model_v4_TED02"],["TED%3AAF-A0A5F0MGI8-F1-model_v4_TED01","TED novel fold AF-A0A5F0MGI8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28141","l":"Cronobacter sakazakii","na":2,"nb":2,"a":[["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["TED%3AAF-A0A855WTZ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A855WTZ2-F1-model_v4_TED01"],["TED%3AAF-A0A855WPZ3-F1-model_v4_TED01","TED novel fold AF-A0A855WPZ3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28185","l":"Spirochaeta sp.","na":2,"nb":2,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["TED%3AAF-A0A3C0SUV0-F1-model_v4_TED03","TED novel fold AF-A0A3C0SUV0-F1-model_v4_TED03"],["TED%3AAF-A0A6N7M3Q7-F1-model_v4_TED01","TED novel fold AF-A0A6N7M3Q7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:283166","l":"Bartonella henselae str. Houston-1","na":2,"nb":2,"a":[["endothelial-cell-bto-0001176.html","endothelial cell"],["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["Pfam%3APF18543","Intracellular delivery domain"],["Pfam%3APF03524","Conjugal transfer protein"]]},{"id":"NCBITaxon:393664","l":"","na":2,"nb":2,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["TED%3AAF-A0A7W4XHJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W4XHJ9-F1-model_v4_TED01"],["TED%3AAF-A0A7W4SSW3-F1-model_v4_TED01","TED novel fold AF-A0A7W4SSW3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:39488","l":"Anaerobutyricum hallii","na":2,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"],["harbour-envo-00000463.html","harbour"]],"b":[["TED%3AAF-A0A414B1Y3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A414B1Y3-F1-model_v4_TED01"],["TED%3AAF-A0A415G3S7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A415G3S7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:39490","l":"Eubacterium ramulus","na":2,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"],["harbour-envo-00000463.html","harbour"]],"b":[["TED%3AAF-A0A173V5Z6-F1-model_v4_TED02","TED novel fold AF-A0A173V5Z6-F1-model_v4_TED02"],["TED%3AAF-A0A2V1JWA1-F1-model_v4_TED05","TED novel fold AF-A0A2V1JWA1-F1-model_v4_TED05"]]},{"id":"NCBITaxon:399741","l":"Serratia proteamaculans 568","na":2,"nb":2,"a":[["pleura-bto-0001791.html","pleura"],["seedling-bto-0001228.html","seedling"]],"b":[["Pfam%3APF09012","FeoC like transcriptional regulator"],["Pfam%3APF05488","PAAR motif"]]},{"id":"NCBITaxon:426128","l":"Natronincola peptidivorans","na":2,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["TED%3AAF-A0A1I0EK12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I0EK12-F1-model_v4_TED01"],["TED%3AAF-A0A1I0H2J6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I0H2J6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:426418","l":"Pyrenophora tritici-repentis Pt-1C-BFP","na":2,"nb":2,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-B2VYP9-F1-model_v4_TED01","TED novel fold AF-B2VYP9-F1-model_v4_TED01"],["TED%3AAF-B2VZ40-F1-model_v4_TED02","TED novel fold AF-B2VZ40-F1-model_v4_TED02"]]},{"id":"NCBITaxon:435590","l":"Phocaeicola vulgatus ATCC 8482","na":2,"nb":2,"a":[["bay-envo-00000032.html","bay"],["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["Pfam%3APF13444","Acetyltransferase (GNAT) domain"],["Pfam%3APF19576","Acyltransferase"]]},{"id":"NCBITaxon:474952","l":"Granulicella rosea","na":2,"nb":2,"a":[["wetland-area-envo-00000043.html","wetland area"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A239KLB2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A239KLB2-F1-model_v4_TED01"],["TED%3AAF-A0A239CX56-F1-model_v4_TED02","TED novel fold AF-A0A239CX56-F1-model_v4_TED02"]]},{"id":"NCBITaxon:479434","l":"Sphaerobacter thermophilus DSM 20745","na":2,"nb":2,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-D1C926-F1-model_v4_TED01","TED highly-symmetric fold AF-D1C926-F1-model_v4_TED01"],["TED%3AAF-D1C9G8-F1-model_v4_TED01","TED highly-symmetric fold AF-D1C9G8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:48296","l":"Acinetobacter pittii","na":2,"nb":2,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["TED%3AAF-A0A3R9S6D0-F1-model_v4_TED03","TED novel fold AF-A0A3R9S6D0-F1-model_v4_TED03"],["TED%3AAF-A0A6P1SKX2-F1-model_v4_TED04","TED novel fold AF-A0A6P1SKX2-F1-model_v4_TED04"]]},{"id":"NCBITaxon:55209","l":"Pantoea cypripedii","na":2,"nb":2,"a":[["leaf-po-0025034.html","leaf"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["Pfam%3APF13618","Gluconate 2-dehydrogenase subunit 3"],["TED%3AAF-A0A1X1EQM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1X1EQM9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:56811","l":"Psychrobacter sp.","na":2,"nb":2,"a":[["marine-water-body-envo-00001999.html","marine water body"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["TED%3AAF-A0A350DM46-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A350DM46-F1-model_v4_TED01"],["TED%3AAF-A0A353XTU7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A353XTU7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:572546","l":"Archaeoglobus profundus DSM 5631","na":2,"nb":2,"a":[["inlet-envo-00000475.html","inlet"],["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["TED%3AAF-D2RFB5-F1-model_v4_TED02","TED highly-symmetric fold AF-D2RFB5-F1-model_v4_TED02"],["TED%3AAF-D2RE38-F1-model_v4_TED02","TED novel fold AF-D2RE38-F1-model_v4_TED02"]]},{"id":"NCBITaxon:577","l":"Klebsiella terrigena","na":2,"nb":2,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["TED%3AAF-A0A485AWY7-F1-model_v4_TED01","TED novel fold AF-A0A485AWY7-F1-model_v4_TED01"],["TED%3AAF-A0A4U9DC68-F1-model_v4_TED02","TED novel fold AF-A0A4U9DC68-F1-model_v4_TED02"]]},{"id":"NCBITaxon:59201","l":"Salmonella enterica subsp. enterica","na":2,"nb":2,"a":[["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["TED%3AAF-A0A711ED47-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A711ED47-F1-model_v4_TED01"],["TED%3AAF-A0A5U3EZQ4-F1-model_v4_TED01","TED novel fold AF-A0A5U3EZQ4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:59405","l":"Thauera aromatica","na":2,"nb":2,"a":[["sludge-envo-00002044.html","sludge"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF18512","Benzylsuccinate synthase beta subunit"],["Pfam%3APF08201","BssC/TutF protein"]]},{"id":"NCBITaxon:61646","l":"Lelliottia amnigena","na":2,"nb":2,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["Pfam%3APF17425","Arylsulfotransferase Ig-like domain"],["Pfam%3APF05935","Arylsulfotransferase (ASST)"]]},{"id":"NCBITaxon:633","l":"Yersinia pseudotuberculosis","na":2,"nb":2,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["Pfam%3APF03421","YopJ Serine/Threonine acetyltransferase"],["Pfam%3APF01041","DegT/DnrJ/EryC1/StrS aminotransferase family"]]},{"id":"NCBITaxon:647113","l":"Methanothermococcus okinawensis IH1","na":2,"nb":2,"a":[["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["TED%3AAF-F8ANV0-F1-model_v4_TED01","TED highly-symmetric fold AF-F8ANV0-F1-model_v4_TED01"],["TED%3AAF-F8AK92-F1-model_v4_TED02","TED novel fold AF-F8AK92-F1-model_v4_TED02"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":2,"nb":2,"a":[["watercourse-envo-00000029.html","watercourse"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["TED%3AAF-B5UAE0-F1-model_v4_TED01","TED highly-symmetric fold AF-B5UAE0-F1-model_v4_TED01"],["TED%3AAF-A0A3E1IF45-F1-model_v4_TED01","TED novel fold AF-A0A3E1IF45-F1-model_v4_TED01"]]},{"id":"NCBITaxon:7029","l":"Acyrthosiphon pisum","na":2,"nb":2,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["TED%3AAF-J9KQC4-F1-model_v4_TED01","TED novel fold AF-J9KQC4-F1-model_v4_TED01"],["TED%3AAF-J9L4U4-F1-model_v4_TED02","TED novel fold AF-J9L4U4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:7209","l":"Loa loa","na":2,"nb":2,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["TED%3AAF-A0A1I7VCR8-F1-model_v4_TED01","TED novel fold AF-A0A1I7VCR8-F1-model_v4_TED01"],["TED%3AAF-A0A1S0U4H9-F1-model_v4_TED02","TED novel fold AF-A0A1S0U4H9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:746697","l":"Aequorivita sublithincola DSM 14238","na":2,"nb":2,"a":[["hill-envo-00000083.html","hill"],["seamount-envo-00000264.html","seamount"]],"b":[["TED%3AAF-I3YW66-F1-model_v4_TED01","TED highly-symmetric fold AF-I3YW66-F1-model_v4_TED01"],["TED%3AAF-I3YWC3-F1-model_v4_TED01","TED highly-symmetric fold AF-I3YWC3-F1-model_v4_TED01"]]},{"id":"UBERON:0001723","l":"","na":2,"nb":2,"a":[["tongue-habitatmech-gold-334001c233.html","Tongue"],["tongue-habitatmech-gold-8587dba825.html","Tongue"]],"b":[["GO%3A0043586","tongue development"],["GO%3A0043587","tongue morphogenesis"]]},{"id":"GO:0005622","l":"intracellular anatomical structure","na":1,"nb":524,"a":[["molluscan-gill-intracellular-environment-habitatmech-gold-0ac09185d9.html","molluscan gill intracellular environment"]],"b":[["GO%3A0070477","endospore core"],["GO%3A0005727","extrachromosomal circular DNA"],["GO%3A0046821","extrachromosomal DNA"],["GO%3A0016234","inclusion body"],["GO%3A0005622","intracellular anatomical structure"],["GO%3A0070090","metaphase plate"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":297,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["IDPO%3A0000002","disorder"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000045","phosphorylation display site"],["IDPO%3A0000059","self-inhibition"],["Pfam%3APF17837","4'-phosphopantetheinyl transferase N-terminal domain"]]},{"id":"GO:0005615","l":"","na":1,"nb":292,"a":[["molluscan-gill-extracellular-environment-habitatmech-gold-6c8238add0.html","molluscan gill extracellular environment"]],"b":[["ComplexPortal%3ACPX-6224","Active Protein C complex"],["ComplexPortal%3ACPX-6222","alpha-thrombin complex"],["ComplexPortal%3ACPX-5601","Alternative pathway C3 convertase complex C3bBb"],["ComplexPortal%3ACPX-5894","Alternative pathway C3 convertase complex C3bBb"],["ComplexPortal%3ACPX-5381","Alternative pathway fluid-phase C3 convertase complex C3(H2O)Bb"],["ComplexPortal%3ACPX-5893","Alternative pathway fluid-phase C3 convertase complex C3(H2O)Bb"]]},{"id":"NCBITaxon:7955","l":"Danio rerio","na":1,"nb":261,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["IDPO%3A0000019","disorder to pre-molten globule"],["Pfam%3APF16096","Fragile X-related 1 protein C-terminal region 2"],["Pfam%3APF16605","LSM-interacting associated unstructured"],["Pfam%3APF17229","Serine/threonine-protein kinase SMG1 N-terminal"],["Pfam%3APF16195","SUMO-activating enzyme subunit 2 C-terminus"],["Pfam%3APF00709","Adenylosuccinate synthetase"]]},{"id":"NCBITaxon:1978231","l":"Acidobacteriota bacterium","na":1,"nb":186,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2E4W649-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4W649-F1-model_v4_TED01"],["TED%3AAF-A0A2P6WIX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P6WIX4-F1-model_v4_TED01"],["TED%3AAF-A0A2V2RP64-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V2RP64-F1-model_v4_TED01"],["TED%3AAF-A0A2V7TZP2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V7TZP2-F1-model_v4_TED01"],["TED%3AAF-A0A2V7USQ3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V7USQ3-F1-model_v4_TED02"],["TED%3AAF-A0A2V7V8X8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V7V8X8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa (strain ATCC 15692 / DSM 22644 / CIP 104116 / JCM 14847 / LMG 12228 / 1C / PRS 101 / PAO1)","na":1,"nb":162,"a":[["style-bto-0001313.html","style"]],"b":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF06750","Bacterial Peptidase A24 N-terminal domain"],["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF28403","Aconitase X second domain"],["Pfam%3APF28406","Aconitase X third domain"],["Pfam%3APF04412","Aconitase X first domain"]]},{"id":"NCBITaxon:71421","l":"Haemophilus influenzae (strain ATCC 51907 / DSM 11121 / KW20 / Rd)","na":1,"nb":133,"a":[["respiratory-mucosa-bto-0000973.html","respiratory mucosa"]],"b":[["Pfam%3APF13521","AAA domain"],["Pfam%3APF13654","LonB-like, AAA domain"],["Pfam%3APF16326","ABC transporter C-terminal domain"],["Pfam%3APF13710","ACT domain"],["Pfam%3APF12633","Adenylate cyclase NT domain"],["Pfam%3APF26690","Adenylate cyclase, class-I, third domain"]]},{"id":"NCBITaxon:83334","l":"Escherichia coli O157:H7","na":1,"nb":130,"a":[["uterus-bto-0001424.html","uterus"]],"b":[["IDPO%3A0000011","disorder to order"],["IDPO%3A0000014","order to disorder"],["Pfam%3APF12343","DeaD helicase C-terminal disordered region"],["Pfam%3APF26539","YhiD C-terminal ACT domain"],["Pfam%3APF01081","KDPG and KHG aldolase"],["Pfam%3APF10423","Bacterial AMP nucleoside phosphorylase N-terminus"]]},{"id":"NCBITaxon:1898207","l":"Clostridiales bacterium","na":1,"nb":63,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["TED%3AAF-A0A239QGX8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A239QGX8-F1-model_v4_TED02"],["TED%3AAF-A0A2V2DI93-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V2DI93-F1-model_v4_TED02"],["TED%3AAF-A0A2V2EHK5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V2EHK5-F1-model_v4_TED02"],["TED%3AAF-A0A2V2G296-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2V2G296-F1-model_v4_TED03"],["TED%3AAF-A0A316P962-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A316P962-F1-model_v4_TED03"],["TED%3AAF-A0A316PDC9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A316PDC9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:233413","l":"Mycobacterium bovis (strain ATCC BAA-935 / AF2122/97)","na":1,"nb":52,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF12625","Arabinose-binding domain of AraC transcription regulator, N-term"],["Pfam%3APF21139","Methylcrotonyl-CoA carboxylase, alpha-subunit, BT domain"],["Pfam%3APF09167","Domain of unknown function (DUF1942)"],["Pfam%3APF09438","Domain of unknown function (DUF2017)"],["Pfam%3APF12823","Domain of unknown function (DUF3817)"]]},{"id":"NCBITaxon:2026742","l":"Gemmatimonadota bacterium","na":1,"nb":49,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2D8UDK3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D8UDK3-F1-model_v4_TED02"],["TED%3AAF-A0A2E8HI53-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E8HI53-F1-model_v4_TED02"],["TED%3AAF-A0A2V7GTY6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2V7GTY6-F1-model_v4_TED03"],["TED%3AAF-A0A2V7KRA4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V7KRA4-F1-model_v4_TED01"],["TED%3AAF-A0A2V7S355-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V7S355-F1-model_v4_TED01"],["TED%3AAF-A0A3M2BQU6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M2BQU6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:186497","l":"Pyrococcus furiosus (strain ATCC 43587 / DSM 3638 / JCM 8422 / Vc1)","na":1,"nb":41,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF01314","Aldehyde ferredoxin oxidoreductase, domains 2 & 3"],["Pfam%3APF02730","Aldehyde ferredoxin oxidoreductase, N-terminal domain"],["Pfam%3APF22476","Argonaute, N-terminal domain"],["Pfam%3APF09094","Alpha-amylase/4-alpha-glucanotransferase, middle domain"],["Pfam%3APF09095","Alpha-amylase/4-alpha-glucanotransferase, C-terminal"]]},{"id":"NCBITaxon:2","l":"Bacteria","na":40,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["factory-envo-01000536.html","factory"],["adult-bto-0001043.html","adult"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2","Bacteria orthologous groups (OrthoDB)"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima (strain ATCC 43589 / DSM 3109 / JCM 10099 / NBRC 100826 / MSB8)","na":1,"nb":39,"a":[["feather-bto-0000447.html","feather"]],"b":[["Pfam%3APF02829","3H domain"],["Pfam%3APF13175","AAA ATPase domain"],["Pfam%3APF01958","Aspartate dehydrogenase, C-terminal"],["Pfam%3APF05448","Acetyl xylan esterase (AXE1)"],["Pfam%3APF04509","CheC-like family"],["Pfam%3APF13690","Chemotaxis phosphatase CheX"]]},{"id":"NCBITaxon:36987","l":"Coptotermes formosanus","na":38,"nb":1,"a":[["black-smoker-envo-00000218.html","black smoker"],["coastal-sea-water-envo-00002150.html","coastal sea water"],["eutrophic-water-envo-00002224.html","eutrophic water"],["marine-bathyal-zone-biome-envo-01000026.html","marine bathyal zone biome"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"]],"b":[["TED%3AAF-A0A6L2PKM4-F1-model_v4_TED01","TED novel fold AF-A0A6L2PKM4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:273057","l":"Saccharolobus solfataricus (strain ATCC 35092 / DSM 1617 / JCM 11322 / P2)","na":1,"nb":37,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["Pfam%3APF02294","7kD DNA-binding domain"],["Pfam%3APF02675","S-adenosylmethionine decarboxylase"],["Pfam%3APF09071","Alpha-amylase, C terminal"],["Pfam%3APF17952","Cas6 N-terminal domain"],["Pfam%3APF27338","Cytochrome b558/566 subunit B"],["Pfam%3APF22703","Cdc6 AAA+ ATPase-type lid domain"]]},{"id":"NCBITaxon:1898203","l":"Lachnospiraceae bacterium","na":1,"nb":35,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["TED%3AAF-A0A2G3Q064-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G3Q064-F1-model_v4_TED01"],["TED%3AAF-A0A316PVU3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A316PVU3-F1-model_v4_TED02"],["TED%3AAF-A0A349YHB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349YHB4-F1-model_v4_TED01"],["TED%3AAF-A0A349ZVK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349ZVK2-F1-model_v4_TED01"],["TED%3AAF-A0A354ID29-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A354ID29-F1-model_v4_TED04"],["TED%3AAF-A0A355NJL5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A355NJL5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2026801","l":"Verrucomicrobiales bacterium","na":1,"nb":33,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2D5AKS0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D5AKS0-F1-model_v4_TED01"],["TED%3AAF-A0A2D9K0M4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9K0M4-F1-model_v4_TED01"],["TED%3AAF-A0A2E0QW10-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0QW10-F1-model_v4_TED01"],["TED%3AAF-A0A2E5EQN4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E5EQN4-F1-model_v4_TED02"],["TED%3AAF-A0A2E5WTV4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E5WTV4-F1-model_v4_TED01"],["TED%3AAF-A0A350EXF0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A350EXF0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:170187","l":"Streptococcus pneumoniae serotype 4 (strain ATCC BAA-334 / TIGR4)","na":1,"nb":32,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["Pfam%3APF25935","LcnD-like, barrel-sandwich hybrid domain"],["Pfam%3APF22637","BppA domain 1"],["Pfam%3APF18146","Damage-inducible protein CinA KH domain"],["Pfam%3APF27342","ComB N-terminal domain"],["Pfam%3APF26697","Competence protein ComGC, C-terminal domain"],["Pfam%3APF23117","DpnD N-terminal domain"]]},{"id":"NCBITaxon:243273","l":"Mycoplasmoides genitalium (strain ATCC 33530 / DSM 19775 / NCTC 10195 / G37)","na":1,"nb":31,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF03257","Mycoplasma adhesin P1, C-terminal"],["Pfam%3APF09185","Domain of unknown function (DUF1948)"],["Pfam%3APF09188","Domain of unknown function (DUF1951)"],["Pfam%3APF03072","Domain of unknown function (DUF237)"],["Pfam%3APF03086","Domain of unknown function (DUF240)"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":29,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["Pfam%3APF09156","Anthrax toxin lethal factor, middle domain"],["Pfam%3APF08401","N-terminal domain of anti-restriction factor ArdC"],["Pfam%3APF07737","Anthrax toxin lethal factor, N- and C-terminal domain"],["Pfam%3APF27053","Bacillus anthracis plasmid pXO2 protein 26"],["Pfam%3APF13205","Bacterial Ig-like domain"],["Pfam%3APF17475","Clostridial binary toxin B/anthrax toxin PA domain 2"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":1,"nb":26,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["Pfam%3APF27270","Alr1449"],["Pfam%3APF27301","Alr2735 N-terminal domain"],["Pfam%3APF27288","Alr2735"],["Pfam%3APF21571","Arginine dihydrolase ArgZ-like, C-terminal, first region"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF13205","Bacterial Ig-like domain"]]},{"id":"NCBITaxon:226186","l":"Bacteroides thetaiotaomicron (strain ATCC 29148 / DSM 2079 / JCM 5827 / CCUG 10774 / NCTC 10582 / VPI-5482 / E50)","na":1,"nb":25,"a":[["gut-epithelium-bto-0000956.html","gut epithelium"]],"b":[["Pfam%3APF06439","3-keto-alpha-glucoside-1,2-lyase-like domain"],["Pfam%3APF13444","Acetyltransferase (GNAT) domain"],["Pfam%3APF19576","Acyltransferase"],["Pfam%3APF23764","GLAA-B beta-barrel domain II"],["Pfam%3APF13715","CarboxypepD_reg-like domain"],["Pfam%3APF26120","SusF, first starch specific CBM"]]},{"id":"NCBITaxon:160488","l":"Pseudomonas putida (strain ATCC 47054 / DSM 6125 / CFBP 8728 / NCIMB 11950 / KT2440)","na":1,"nb":24,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF00842","Alanine racemase, C-terminal domain"],["Pfam%3APF01168","Alanine racemase, N-terminal domain"],["Pfam%3APF13372","Alginate export"],["Pfam%3APF03705","CheR methyltransferase, all-alpha domain"],["Pfam%3APF01739","CheR methyltransferase, SAM binding domain"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":19,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["saline-water-body-envo-01001319.html","saline water body"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["Pfam%3APF03437","BtpA family"]]},{"id":"NCBITaxon:1871066","l":"Mesorhizobium sp.","na":1,"nb":18,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["TED%3AAF-A0A3S3GQ11-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S3GQ11-F1-model_v4_TED01"],["TED%3AAF-A0A439J515-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A439J515-F1-model_v4_TED03"],["TED%3AAF-A0A439JC49-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A439JC49-F1-model_v4_TED01"],["TED%3AAF-A0A439N076-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A439N076-F1-model_v4_TED01"],["TED%3AAF-A0A442WFH9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A442WFH9-F1-model_v4_TED03"],["TED%3AAF-A0A529PFR3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A529PFR3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1018","l":"Capnocytophaga ochracea","na":17,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["gut-bto-0000545.html","gut"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"]],"b":[["TED%3AAF-A0A2X2T3Z4-F1-model_v4_TED01","TED novel fold AF-A0A2X2T3Z4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:208963","l":"Pseudomonas aeruginosa (strain UCBPP-PA14)","na":1,"nb":17,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF21384","CRISPR-associated nuclease/helicase Cas3, I-F/YPEST, Cas2 domain"],["Pfam%3APF21802","CRISPR-associated Cas3 subtype I-F/YPEST-like, C-terminal domain"],["Pfam%3APF20975","DGC-associated coil"],["Pfam%3APF19502","Nucleotidyltransferase of unknown function (DUF6036)"]]},{"id":"NCBITaxon:210007","l":"Streptococcus mutans serotype c (strain ATCC 700610 / UA159)","na":1,"nb":17,"a":[["tooth-bto-0000397.html","tooth"]],"b":[["Pfam%3APF18652","Adhesin P1 N-terminal domain"],["Pfam%3APF17998","Cell surface antigen I/II C2 terminal domain"],["Pfam%3APF16364","Cell surface antigen C-terminus"],["Pfam%3APF12733","Cadherin-like beta sandwich domain"],["Pfam%3APF05737","Collagen binding domain"],["Pfam%3APF21537","DUF1980 C-terminal domain"]]},{"id":"NCBITaxon:69014","l":"Thermococcus kodakarensis (strain ATCC BAA-918 / JCM 12380 / KOD1)","na":1,"nb":17,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["Pfam%3APF08546","Ketopantoate reductase PanE/ApbA C terminal"],["Pfam%3APF02558","Ketopantoate reductase PanE/ApbA"],["Pfam%3APF09210","1,4-alpha-glucan branching enzyme, C-terminal"],["Pfam%3APF01861","Branched-chain polyamine synthase A C-terminal domain"],["Pfam%3APF27272","Cyclic 2,3-diphosphoglycerate synthetase, N-terminal domain"],["Pfam%3APF17884","Domain of unknown function (DUF5591)"]]},{"id":"NCBITaxon:9615","l":"Canis lupus familiaris","na":1,"nb":16,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["Pfam%3APF14797","Serine-rich region of AP3B1, clathrin-adaptor complex"],["Pfam%3APF22627","AglB core domain"],["Pfam%3APF09064","Thrombomodulin like fifth domain, EGF-like"],["Pfam%3APF14828","Amnionless"],["Pfam%3APF03669","PAT complex subunit Asterix"],["Pfam%3APF07946","PAT complex subunit CCDC47"]]},{"id":"NCBITaxon:106370","l":"Frankia casuarinae","na":14,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["river-envo-00000022.html","river"],["rhizosphere-envo-00005801.html","rhizosphere"],["root-nodule-bto-0001190.html","root nodule"],["biome-envo-00000428.html","biome"],["biotope-envo-00002036.html","biotope"]],"b":[["Pfam%3APF14403","Circularly permuted ATP-grasp type 2"]]},{"id":"NCBITaxon:1360","l":"Lactococcus lactis subsp. lactis","na":1,"nb":14,"a":[["foregut-bto-0000507.html","foregut"]],"b":[["Pfam%3APF08951","Bacteriocin immunity protein family"],["Pfam%3APF08998","Bacterial epsilon antitoxin"],["Pfam%3APF25887","LcnD-like, long helical bundle domain"],["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF25940","LcnD-like, C-terminal domain"],["Pfam%3APF08129","Alpha/beta enterocin family"]]},{"id":"NCBITaxon:1590","l":"Lactiplantibacillus plantarum","na":14,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["food-fermented-foodon-00001258.html","food (fermented)"],["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"],["breast-bto-0000149.html","breast"],["colonic-epithelium-bto-0001709.html","colonic epithelium"],["epithelial-cell-bto-0000414.html","epithelial cell"]],"b":[["Pfam%3APF06314","Acetoacetate decarboxylase (ADC)"]]},{"id":"CHEBI:16183","l":"methane","na":1,"nb":13,"a":[["methane-bioremediation-material-habitatmech-gold-d510166905.html","methane bioremediation material"]],"b":[["EC%3A1.14.13.25","methane monooxygenase (soluble)"],["EC%3A1.14.18.3","methane monooxygenase (particulate)"],["EC%3A2.8.4.1","coenzyme-B sulfoethylthiotransferase"],["EC%3A4.7.1.1","alpha-D-ribose 1-methylphosphonate 5-phosphate C-P-lyase"],["RHEA%3A34707","alpha-D-ribose 1-methylphosphonate 5-phosphate + AH2 + S-adenosyl-L-methionine = alpha-D-ribose 1,2-cyclic phosphate 5-phosphate + methane + 5'-deoxyadenosine + L-methionine + A + H(+)"],["RHEA%3A12532","coenzyme B + methyl-coenzyme M = methane + coenzyme M-coenzyme B heterodisulfide"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":13,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["Pfam%3APF07832","Cfr10I/Bse634I restriction endonuclease"],["Pfam%3APF22348","Colicin-A N-terminal domain"],["Pfam%3APF01024","Colicin pore forming domain"],["Pfam%3APF18427","DD-reactivating factor swiveling domain"],["Pfam%3APF02286","Dehydratase large subunit"],["Pfam%3APF02288","Dehydratase medium subunit"]]},{"id":"NCBITaxon:104268","l":"Tenacibaculum mesophilum","na":12,"nb":1,"a":[["bay-envo-00000032.html","bay"],["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"],["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"]],"b":[["TED%3AAF-A0A1M5HMT5-F1-model_v4_TED01","TED novel fold AF-A0A1M5HMT5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:107401","l":"Tenacibaculum maritimum","na":12,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["low-tide-zone-envo-00000319.html","low tide zone"],["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A5S9T7W6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5S9T7W6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1596","l":"Lactobacillus gasseri","na":12,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["catheter-device-ncit-c50344.html","Catheter Device"],["city-envo-00000856.html","city"],["egg-food-product-foodon-00001274.html","egg food product"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"]],"b":[["TED%3AAF-A0A845FIT3-F1-model_v4_TED02","TED novel fold AF-A0A845FIT3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus ATCC 27405","na":1,"nb":12,"a":[["blood-plasma-bto-0000131.html","blood plasma"]],"b":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["Pfam%3APF00942","Cellulose binding domain"],["Pfam%3APF17996","Carbohydrate esterase 2 N-terminal"],["Pfam%3APF00963","Cohesin domain"],["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF00404","Dockerin type I domain"]]},{"id":"NCBITaxon:272942","l":"Rhodobacter capsulatus (strain ATCC BAA-309 / NBRC 16581 / SB1003)","na":1,"nb":12,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["Pfam%3APF02553","Cobalt transport protein component CbiN"],["Pfam%3APF03379","CcmB protein"],["Pfam%3APF27123","Carotenoid hydratase CrtC"],["Pfam%3APF14715","N-terminal domain of cytochrome oxidase-cbb3, FixP"],["Pfam%3APF07284","2-vinyl bacteriochlorophyllide hydratase (BCHF)"],["Pfam%3APF02571","Precorrin-6x reductase CbiJ/CobK"]]},{"id":"NCBITaxon:469383","l":"Conexibacter woesei DSM 14684","na":12,"nb":1,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["oil-spill-envo-00002061.html","oil spill"],["village-biome-envo-01000246.html","village biome"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["TED%3AAF-D3FEY8-F1-model_v4_TED03","TED highly-symmetric fold AF-D3FEY8-F1-model_v4_TED03"]]},{"id":"NCBITaxon:471472","l":"Chlamydia trachomatis serovar L2 (strain ATCC VR-902B / DSM 19102 / 434/Bu)","na":1,"nb":12,"a":[["lymph-node-bto-0000784.html","lymph node"]],"b":[["Pfam%3APF07382","Histone H1-like nucleoprotein HC2"],["Pfam%3APF05475","Pgp3 C-terminal domain"],["Pfam%3APF22368","Response regulator protein ChxR, N-terminal domain"],["Pfam%3APF01345","CLIPPER domain"],["Pfam%3APF07577","Domain of Unknown Function (DUF1547)"],["Pfam%3APF03503","Chlamydia cysteine-rich outer membrane protein 3"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":11,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"],["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["laboratory-facility-envo-01001406.html","laboratory facility"],["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["bone-element-uberon-0001474.html","bone element"],["juvenile-bto-0002168.html","juvenile"]],"b":[["Pfam%3APF08124","Polysaccharide lyase family 8, N terminal alpha-helical domain"]]},{"id":"NCBITaxon:272626","l":"Listeria innocua serovar 6a (strain ATCC BAA-680 / CLIP 11262)","na":1,"nb":11,"a":[["heart-bto-0000562.html","heart"]],"b":[["Pfam%3APF16595","PAM-interacting domain of CRISPR-associated endonuclease Cas9"],["Pfam%3APF21846","Domain of unknown function (DUF6905)"],["Pfam%3APF27405","Lin0124 C-terminal coiled-coil domain"],["Pfam%3APF14297","Lin1244/Lin1753-like, N-terminal"],["Pfam%3APF16593","Bridge helix of CRISPR-associated endonuclease Cas9"],["Pfam%3APF16592","REC lobe of CRISPR-associated endonuclease Cas9"]]},{"id":"NCBITaxon:331112","l":"Escherichia coli O9:H4 (strain HS)","na":1,"nb":11,"a":[["adrenal-gland-bto-0000047.html","adrenal gland"]],"b":[["Pfam%3APF25796","BREX ATP-binding protein BrxC 4th domain with six-stranded beta sheet"],["Pfam%3APF25792","BREX ATP-binding protein BrxC alpha helical domain"],["Pfam%3APF08747","BREX protein BrxB"],["Pfam%3APF19557","BrxC/PglY, N-terminal domain"],["Pfam%3APF13337","Lon-like protease BrxL-like, ATPase domain"],["Pfam%3APF20442","BREX system Lon protease-like protein BrxL N-terminal"]]},{"id":"NCBITaxon:4113","l":"Solanum tuberosum","na":1,"nb":11,"a":[["tuber-bto-0001400.html","tuber"]],"b":[["Pfam%3APF02977","Carboxypeptidase A inhibitor"],["Pfam%3APF01474","Class-II DAHP synthetase family"],["Pfam%3APF23229","Alpha-glucan water dikinase, DUF7067"],["Pfam%3APF02446","4-alpha-glucanotransferase"],["Pfam%3APF22973","Alpha-glucan water dikinase, phosphohistidine-like domain"],["Pfam%3APF23166","Alpha-glucan water dikinase 1 Ig-like N-terminal domain"]]},{"id":"NCBITaxon:498211","l":"Cellvibrio japonicus (strain Ueda107)","na":1,"nb":11,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["Pfam%3APF17996","Carbohydrate esterase 2 N-terminal"],["Pfam%3APF02156","Glycosyl hydrolase family 26"],["Pfam%3APF02015","Glycosyl hydrolase family 45"],["Pfam%3APF07477","Glycosyl hydrolase family 67 C-terminus"],["Pfam%3APF07488","Glycosyl hydrolase family 67 middle domain"],["Pfam%3APF03648","Glycosyl hydrolase family 67 N-terminus"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":1,"nb":11,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF02085","Class III cytochrome C family"],["Pfam%3APF06397","Desulfoferrodoxin, N-terminal domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["Pfam%3APF12797","4Fe-4S binding domain"],["Pfam%3APF06180","Cobalt chelatase (CbiK)"]]},{"id":"NCBITaxon:1058","l":"Thiocapsa roseopersicina","na":10,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["saline-marsh-envo-00000054.html","saline marsh"],["river-envo-00000022.html","river"],["waste-water-envo-00002001.html","waste water"],["environmental-feature-envo-00002297.html","environmental feature"],["stromatolite-mat-envo-00002157.html","stromatolite mat"]],"b":[["Pfam%3APF27123","Carotenoid hydratase CrtC"]]},{"id":"NCBITaxon:1399","l":"Cytobacillus firmus","na":10,"nb":1,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"],["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["TED%3AAF-A0A800NFK9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A800NFK9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:147","l":"Spirochaeta aurantia","na":10,"nb":1,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["water-body-envo-00000063.html","water body"]],"b":[["Pfam%3APF06226","Protein of unknown function (DUF1007)"]]},{"id":"NCBITaxon:192222","l":"Campylobacter jejuni subsp. jejuni NCTC 11168 = ATCC 700819","na":1,"nb":10,"a":[["flagellate-bto-0000464.html","flagellate"]],"b":[["Pfam%3APF26365","Apolipoprotein N-acyltransferase integral membrane domain"],["Pfam%3APF22131","CRISPR-associated endonuclease CjCas9 PI-CTD domain"],["Pfam%3APF22129","CRISPR-associated endonuclease CjCas9 wedge domain"],["Pfam%3APF02554","Carbon starvation protein CstA"],["Pfam%3APF27310","HrcA C-terminal domain"],["Pfam%3APF05538","Campylobacter major outer membrane protein"]]},{"id":"NCBITaxon:2026795","l":"Nitrososphaerota archaeon","na":1,"nb":10,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2E0QIG3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E0QIG3-F1-model_v4_TED02"],["TED%3AAF-A0A519CY76-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A519CY76-F1-model_v4_TED02"],["TED%3AAF-A0A533VPG5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A533VPG5-F1-model_v4_TED01"],["TED%3AAF-A0A533VS28-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A533VS28-F1-model_v4_TED01"],["TED%3AAF-A0A538P7I2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A538P7I2-F1-model_v4_TED02"],["TED%3AAF-A0A662PPJ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A662PPJ2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":1,"nb":10,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["Pfam%3APF27445","Adaptation to cold protein A"],["Pfam%3APF27450","AtcB C-terminal domain"],["Pfam%3APF27486","AtcB N-terminal domain"],["Pfam%3APF02464","CinA C-terminal domain"],["Pfam%3APF13657","HipA N-terminal domain"],["Pfam%3APF01934","Ribonuclease HepT-like"]]},{"id":"NCBITaxon:266264","l":"Cupriavidus metallidurans CH34","na":1,"nb":10,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["Pfam%3APF25973","CzcB-like, barrel-sandwich hybrid domain"],["Pfam%3APF09828","ChrB, C-terminal domain"],["Pfam%3APF20229","Protein ChrB, N-terminal"],["Pfam%3APF01923","Cobalamin adenosyltransferase"],["Pfam%3APF25975","CzcB C-terminal circularly permuted SH3-like domain"],["Pfam%3APF25971","CzcB, N-terminal domain"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":10,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["air-conditioning-unit-envo-00002874.html","air conditioning unit"],["leaf-bto-0000713.html","leaf"],["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["TED%3AAF-A0A679J1E9-F1-model_v4_TED01","TED novel fold AF-A0A679J1E9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:47715","l":"Lacticaseibacillus rhamnosus","na":10,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["fermentation-starter-envo-03600040.html","fermentation starter"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["Pfam%3APF04914","DltD protein"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":1,"nb":10,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["Pfam%3APF17433","Glycosyl hydrolase family 49 N-terminal Ig-like domain"],["PROSITE%3APS00820","Glucoamylase active site region signature"],["PROSITE%3APS00920","Nitrilases / cyanide hydratase signature 1"],["PROSITE%3APS00502","Polygalacturonase active site"],["Pfam%3APF18841","Beta solenoid repeat from Dextranase"],["Pfam%3APF03718","Glycosyl hydrolase family 49"]]},{"id":"NCBITaxon:72036","l":"Lepeophtheirus salmonis","na":1,"nb":10,"a":[["sandstone-envo-00002055.html","sandstone"]],"b":[["TED%3AAF-A0A0K2T0G4-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A0K2T0G4-F1-model_v4_TED05"],["TED%3AAF-A0A0K2UM05-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0K2UM05-F1-model_v4_TED02"],["TED%3AAF-A0A0K2UVC7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0K2UVC7-F1-model_v4_TED02"],["TED%3AAF-A0A7R8CWL1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7R8CWL1-F1-model_v4_TED02"],["TED%3AAF-A0A0K2U8Q2-F1-model_v4_TED01","TED novel fold AF-A0A0K2U8Q2-F1-model_v4_TED01"],["TED%3AAF-A0A0K2U962-F1-model_v4_TED02","TED novel fold AF-A0A0K2U962-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1017","l":"Capnocytophaga gingivalis","na":9,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biotope-envo-00002036.html","biotope"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["organic-feature-envo-01000159.html","organic feature"]],"b":[["TED%3AAF-A0A250FUG5-F1-model_v4_TED01","TED novel fold AF-A0A250FUG5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:107806","l":"Buchnera aphidicola subsp. Acyrthosiphon pisum (strain APS)","na":1,"nb":9,"a":[["embryo-bto-0000379.html","embryo"]],"b":[["Pfam%3APF21157","DnaK suppressor protein DksA, N-terminal domain"],["Pfam%3APF21158","Flagellar hook-associated protein 1, D2-like domain"],["Pfam%3APF02955","Prokaryotic glutathione synthetase, ATP-grasp domain"],["Pfam%3APF02951","Prokaryotic glutathione synthetase, N-terminal domain"],["Pfam%3APF21500","DNA polymerase III subunit delta', AAA+ ATPase lid domain"],["Pfam%3APF14840","Processivity clamp loader gamma complex DNA pol III C-term"]]},{"id":"NCBITaxon:111770","l":"Thiothrix fructosivorans","na":9,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"],["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"]],"b":[["TED%3AAF-A0A8B0SKG2-F1-model_v4_TED02","TED novel fold AF-A0A8B0SKG2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1261","l":"Peptostreptococcus anaerobius","na":9,"nb":1,"a":[["dorsum-bto-0001713.html","dorsum"],["saliva-bto-0001202.html","saliva"],["sgs-cell-bto-0001210.html","SGS cell"],["tongue-bto-0001385.html","tongue"],["urine-bto-0001419.html","urine"],["vagina-bto-0000243.html","vagina"]],"b":[["TED%3AAF-A0A379CE26-F1-model_v4_TED01","TED novel fold AF-A0A379CE26-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1904441","l":"Paracoccaceae bacterium","na":1,"nb":9,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2E3PFF7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E3PFF7-F1-model_v4_TED02"],["TED%3AAF-A0A357LNH5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A357LNH5-F1-model_v4_TED01"],["TED%3AAF-A0A3D4DSL4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D4DSL4-F1-model_v4_TED01"],["TED%3AAF-A0A6L8C0Y8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L8C0Y8-F1-model_v4_TED01"],["TED%3AAF-A0A7Y2J0I6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y2J0I6-F1-model_v4_TED01"],["TED%3AAF-A0A2E0BJC7-F1-model_v4_TED02","TED novel fold AF-A0A2E0BJC7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:226185","l":"Enterococcus faecalis (strain ATCC 700802 / V583)","na":1,"nb":9,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["Pfam%3APF13523","Acetyltransferase (GNAT) domain"],["Pfam%3APF17255","EbsA-like protein"],["Pfam%3APF22647","Deacetylase EF_0837-like composite domain"],["Pfam%3APF08858","IDEAL domain"],["Pfam%3APF02655","ATP-grasp domain"],["Pfam%3APF17400","Family of unknown function (DUF5406)"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":9,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["Pfam%3APF07835","Bacterial aa3 type cytochrome c oxidase subunit IV"],["Pfam%3APF04828","Glutathione-dependent formaldehyde-activating enzyme"],["Pfam%3APF16448","LapD/MoxY periplasmic domain"],["Pfam%3APF17267","Family of unknown function (DUF5333)"],["Pfam%3APF17272","Family of unknown function (DUF5337)"],["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":9,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["mud-envo-01000001.html","mud"]],"b":[["PROSITE%3APS01322","Phosphotriesterase family signature 1"]]},{"id":"NCBITaxon:29539","l":"Thermoleophilum album","na":9,"nb":1,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"],["desert-sand-envo-00005800.html","desert sand"],["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"],["village-biome-envo-01000246.html","village biome"]],"b":[["TED%3AAF-A0A1H6FIV6-F1-model_v4_TED01","TED novel fold AF-A0A1H6FIV6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:359391","l":"Brucella abortus (strain 2308)","na":1,"nb":9,"a":[["style-bto-0001313.html","style"]],"b":[["Pfam%3APF13444","Acetyltransferase (GNAT) domain"],["Pfam%3APF10090","Histidine phosphotransferase C-terminal domain"],["Pfam%3APF07536","HWE histidine kinase"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF07886","BA14K-like protein"],["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"]]},{"id":"NCBITaxon:405955","l":"Escherichia coli O1:K1 / APEC","na":1,"nb":9,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["Pfam%3APF07417","Sigma factor-binding transcriptional regulator Crl"],["Pfam%3APF10807","Domain of unknown function (DUF2541)"],["Pfam%3APF25878","pHBA AAEA subunit, alpha-helical hairpin domain"],["Pfam%3APF10796","Sigma-S stabilisation anti-adaptor protein"],["Pfam%3APF06693","Protein of unknown function (DUF1190)"],["Pfam%3APF06932","Protein of unknown function (DUF1283)"]]},{"id":"NCBITaxon:7668","l":"Strongylocentrotus purpuratus","na":1,"nb":9,"a":[["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["Pfam%3APF01382","Avidin family"],["Pfam%3APF02084","Bindin"],["PROSITE%3APS00577","Avidin-like domain signature"],["Pfam%3APF22494","Choice-of-anchor I domain"],["Pfam%3APF05804","Kinesin-associated protein (KAP)"],["Pfam%3APF07054","Pericardin like repeat"]]},{"id":"NCBITaxon:83462","l":"Corallococcus exiguus","na":9,"nb":1,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["feces-uberon-0001988.html","feces"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"]],"b":[["TED%3AAF-A0A7X4Y983-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X4Y983-F1-model_v4_TED01"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":9,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF25954","CusB-like, beta-barrel domain"],["Pfam%3APF13438","Domain of unknown function (DUF4113)"],["Pfam%3APF03767","HAD superfamily, subfamily IIIB (Acid phosphatase)"],["Pfam%3APF03496","ADP-ribosyltransferase exoenzyme"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":8,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["alimentary-canal-bto-0000058.html","alimentary canal"],["blood-bto-0000089.html","blood"],["small-intestine-bto-0000651.html","small intestine"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["geographic-feature-envo-00000000.html","geographic feature"]],"b":[["PROSITE%3APS01043","Transposases, IS30 family, signature"]]},{"id":"NCBITaxon:1486246","l":"Halomonas sp.","na":8,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["saline-water-body-envo-01001319.html","saline water body"],["laboratory-facility-envo-01001406.html","laboratory facility"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["TED%3AAF-A0A355PHS8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A355PHS8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":8,"a":[["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["Pfam%3APF02927","Cellulase N-terminal ig-like domain"],["Pfam%3APF00404","Dockerin type I domain"],["PROSITE%3APS00448","Clostridium cellulosome enzymes repeated domain signature"],["PROSITE%3APS60032","Glycosyl hydrolases family 9 (GH9) active site signature 1"],["PROSITE%3APS00592","Glycosyl hydrolases family 9 (GH9) active site signature 2"],["PROSITE%3APS00698","Glycosyl hydrolases family 9 (GH9) active site signature 3"]]},{"id":"NCBITaxon:183190","l":"Xylella fastidiosa (strain Temecula1 / ATCC 700964)","na":1,"nb":8,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["Pfam%3APF21142","Bacterial alpha-2 macroglobulin MG2 domain"],["Pfam%3APF04273","Beta-lactamase hydrolase-like protein, phosphatase-like domain"],["Pfam%3APF17970","Bacterial Alpha-2-macroglobulin MG1 domain"],["Pfam%3APF17973","Bacterial Alpha-2-macroglobulin MG10 domain"],["Pfam%3APF11974","Bacterial alpha-2-macroglobulin MG3 domain"],["Pfam%3APF17972","Bacterial Alpha-2-macroglobulin MG5 domain"]]},{"id":"NCBITaxon:196162","l":"Nocardioides sp. JS614","na":8,"nb":1,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["oil-spill-envo-00002061.html","oil spill"],["petroleum-envo-00002984.html","petroleum"]],"b":[["TED%3AAF-A1SFH1-F1-model_v4_TED04","TED highly-symmetric fold AF-A1SFH1-F1-model_v4_TED04"]]},{"id":"NCBITaxon:227882","l":"","na":1,"nb":8,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["Pfam%3APF17390","Bacterial alpha-L-rhamnosidase C-terminal domain"],["Pfam%3APF08531","Alpha-L-rhamnosidase N-terminal domain"],["Pfam%3APF05592","Bacterial alpha-L-rhamnosidase concanavalin-like domain"],["Pfam%3APF26366","Domain of unknown function (DUF8094)"],["Pfam%3APF25788","Rha78A-like, N-terminal immunoglobulin domain"],["Pfam%3APF06781","Cell division protein CrgA"]]},{"id":"NCBITaxon:229533","l":"Fusarium graminearum PH-1","na":1,"nb":8,"a":[["soil-envo-00001998.html","soil"]],"b":[["Pfam%3APF18388","Atg29 N-terminal domain"],["Pfam%3APF27599","CcsR C-terminal domain"],["Pfam%3APF07110","EthD domain"],["Pfam%3APF11700","Vacuole effluxer Atg22 like"],["Pfam%3APF28504","Gramillins biosynthetic cluster protein GRA5"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"]]},{"id":"NCBITaxon:240176","l":"Coprinopsis cinerea (strain Okayama-7 / 130 / ATCC MYA-4618 / FGSC 9003)","na":1,"nb":8,"a":[["meiotic-cell-bto-0000845.html","meiotic cell"]],"b":[["Pfam%3APF26733","Adenylate-forming reductase 03009, C-terminal domain"],["Pfam%3APF01761","3-dehydroquinate synthase N-terminal"],["Pfam%3APF24621","3-dehydroquinate synthase C-terminal"],["Pfam%3APF03443","Auxiliary Activity family 9 (formerly GH61)"],["Pfam%3APF16010","Cytochrome domain of cellobiose dehydrogenase"],["PROSITE%3APS00104","EPSP synthase signature 1"]]},{"id":"NCBITaxon:35761","l":"Nocardioides sp.","na":8,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"],["desert-sand-envo-00005800.html","desert sand"],["endosymbiont-habitatmech-bacdive-7d840c7ddc.html","Endosymbiont"],["oil-spill-envo-00002061.html","oil spill"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["orchard-envo-00000115.html","orchard"]],"b":[["TED%3AAF-A0A2E8Z449-F1-model_v4_TED01","TED novel fold AF-A0A2E8Z449-F1-model_v4_TED01"]]},{"id":"NCBITaxon:47885","l":"Pseudomonas oryzihabitans","na":8,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"],["hospital-envo-00002173.html","hospital"],["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"],["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["TED%3AAF-A0A7X3T0R5-F1-model_v4_TED02","TED novel fold AF-A0A7X3T0R5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:572477","l":"Allochromatium vinosum (strain ATCC 17899 / DSM 180 / NBRC 103801 / NCIMB 10441 / D)","na":1,"nb":8,"a":[["ditch-water-envo-00002158.html","ditch water"]],"b":[["Pfam%3APF01322","Cytochrome C'"],["Pfam%3APF02635","DsrE/DsrF-like family"],["Pfam%3APF21706","Sulfide dehydrogenase [flavocytochrome c] flavoprotein chain, central"],["Pfam%3APF09242","Flavocytochrome c sulphide dehydrogenase, flavin-binding"],["Pfam%3APF01355","High potential iron-sulfur protein"],["Pfam%3APF13686","DsrE/DsrF/DrsH-like family"]]},{"id":"UBERON:0001009","l":"","na":8,"nb":1,"a":[["circulatory-system-habitatmech-gold-0552e4fd8a.html","Circulatory system"],["circulatory-system-habitatmech-gold-ce9fa1ef7f.html","Circulatory system"],["circulatory-system-habitatmech-gold-0635cc88f0.html","Circulatory system"],["circulatory-system-habitatmech-gold-2a948ee511.html","Circulatory system"],["circulatory-system-habitatmech-gold-7a7f8b9aa3.html","Circulatory system"],["circulatory-system-habitatmech-gold-5307a30baa.html","Circulatory system"]],"b":[["GO%3A0072359","circulatory system development"]]},{"id":"NCBITaxon:114615","l":"Bradyrhizobium sp. ORS 278","na":7,"nb":1,"a":[["river-envo-00000022.html","river"],["bacteroid-bto-0000109.html","bacteroid"],["root-nodule-bto-0001190.html","root nodule"],["stem-nodule-bto-0001816.html","stem nodule"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["Pfam%3APF10073","GapR-like, DNA-binding domain"]]},{"id":"NCBITaxon:1656","l":"Actinomyces viscosus","na":7,"nb":1,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"],["skin-of-body-uberon-0002097.html","skin of body"],["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Pfam%3APF16555","Gram-positive pilin subunit D1, N-terminal domain"]]},{"id":"NCBITaxon:1906666","l":"Thermoplasmata archaeon","na":1,"nb":7,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A497HVI4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A497HVI4-F1-model_v4_TED01"],["TED%3AAF-A0A497HX78-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A497HX78-F1-model_v4_TED01"],["TED%3AAF-A0A662M489-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A662M489-F1-model_v4_TED03"],["TED%3AAF-A0A662MMC3-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A662MMC3-F1-model_v4_TED06"],["TED%3AAF-A0A7J4F045-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J4F045-F1-model_v4_TED01"],["TED%3AAF-A0A5A7S0Y2-F1-model_v4_TED02","TED novel fold AF-A0A5A7S0Y2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2006849","l":"Xanthomonadales bacterium","na":1,"nb":7,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2E6REI1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E6REI1-F1-model_v4_TED01"],["TED%3AAF-A0A2E6RHE7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E6RHE7-F1-model_v4_TED02"],["TED%3AAF-A0A354Z1F6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A354Z1F6-F1-model_v4_TED01"],["TED%3AAF-A0A3S0DIN1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S0DIN1-F1-model_v4_TED01"],["TED%3AAF-A0A431HZV9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A431HZV9-F1-model_v4_TED02"],["TED%3AAF-A0A3S0DMM0-F1-model_v4_TED01","TED novel fold AF-A0A3S0DMM0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:242619","l":"Porphyromonas gingivalis (strain ATCC BAA-308 / W83)","na":1,"nb":7,"a":[["gingiva-bto-0000519.html","gingiva"]],"b":[["Pfam%3APF13290","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF04023","FeoA domain"],["Pfam%3APF17910","FeoB cytosolic helical domain"],["Pfam%3APF02421","Ferrous iron transport protein B"],["Pfam%3APF22492","FimA4 pilin C-terminal domain"],["Pfam%3APF07664","Ferrous iron transport protein B C terminus"]]},{"id":"NCBITaxon:273075","l":"Thermoplasma acidophilum (strain ATCC 25905 / DSM 1728 / JCM 9062 / NBRC 15155 / AMRC-C165)","na":1,"nb":7,"a":[["blood-plasma-bto-0000131.html","blood plasma"]],"b":[["Pfam%3APF17989","Actin like proteins N terminal domain"],["Pfam%3APF10432","Bacterial phospho-glucose isomerase C-terminal SIS domain"],["Pfam%3APF22490","tRNA-splicing endonuclease, linker domain"],["Pfam%3APF22578","Geranylgeranyl reductase catalytic domain"],["Pfam%3APF12831","FAD dependent oxidoreductase"],["Pfam%3APF26550","Tricorn protease second beta propeller domain"]]},{"id":"NCBITaxon:314230","l":"Blastopirellula marina DSM 3645","na":7,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["shoreline-envo-00000486.html","shoreline"],["bulk-soil-envo-00005802.html","bulk soil"],["forested-area-envo-00000111.html","forested area"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-A3ZZX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A3ZZX2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:37734","l":"Enterococcus casseliflavus","na":1,"nb":7,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["PROSITE%3APS00843","D-alanine--D-alanine ligase signature 1"],["PROSITE%3APS00844","D-alanine--D-alanine ligase signature 2"],["TED%3AAF-A0A1V3NEA6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1V3NEA6-F1-model_v4_TED03"],["TED%3AAF-A0A377MP00-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A377MP00-F1-model_v4_TED01"],["TED%3AAF-A0A377KTN3-F1-model_v4_TED02","TED novel fold AF-A0A377KTN3-F1-model_v4_TED02"],["TED%3AAF-A0A377MJ12-F1-model_v4_TED01","TED novel fold AF-A0A377MJ12-F1-model_v4_TED01"]]},{"id":"NCBITaxon:555778","l":"","na":1,"nb":7,"a":[["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["Pfam%3APF08936","Carboxysome Shell Carbonic Anhydrase, C-terminal"],["Pfam%3APF20686","Carboxysome Shell Carbonic Anhydrase, catalytic domain"],["Pfam%3APF20687","Carboxysome Shell Carbonic Anhydrase, N-terminal"],["Pfam%3APF12288","Carboxysome shell peptide mid-region"],["Pfam%3APF10070","Probable inorganic carbon transporter subunit DabA"],["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"UBERON:0000948","l":"heart","na":7,"nb":1,"a":[["heart-habitatmech-gold-2db4d9dd6e.html","Heart"],["heart-habitatmech-gold-8d7a4e1712.html","Heart"],["heart-uberon-0000948.html","heart"],["heart-habitatmech-gold-e9d67283fc.html","Heart"],["heart-habitatmech-gold-805ee181bd.html","Heart"],["heart-habitatmech-gold-20bc7c46a0.html","Heart"]],"b":[["GO%3A0007507","heart development"]]},{"id":"NCBITaxon:101571","l":"Burkholderia ubonensis","na":1,"nb":6,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["TED%3AAF-A0A118H7W5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A118H7W5-F1-model_v4_TED01"],["TED%3AAF-A0A853WTK8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A853WTK8-F1-model_v4_TED01"],["TED%3AAF-A0A104J6D5-F1-model_v4_TED03","TED novel fold AF-A0A104J6D5-F1-model_v4_TED03"],["TED%3AAF-A0A104Z719-F1-model_v4_TED01","TED novel fold AF-A0A104Z719-F1-model_v4_TED01"],["TED%3AAF-A0A106QCV3-F1-model_v4_TED01","TED novel fold AF-A0A106QCV3-F1-model_v4_TED01"],["TED%3AAF-A0A124U5S7-F1-model_v4_TED02","TED novel fold AF-A0A124U5S7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":6,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"],["sludge-envo-00002044.html","sludge"],["forested-area-envo-00000111.html","forested area"],["scrubland-area-envo-00000300.html","scrubland area"],["soil-envo-00001998.html","soil"]],"b":[["TED%3AAF-A0A367PA30-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A367PA30-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121927","l":"Gordonia hirsuta DSM 44140 = NBRC 16056","na":6,"nb":1,"a":[["biofilter-envo-00002152.html","biofilter"],["compost-envo-00002170.html","compost"],["wood-bto-0005516.html","wood"],["wood-envo-00002040.html","wood"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["waste-material-envo-00002264.html","waste material"]],"b":[["TED%3AAF-L7L8J6-F1-model_v4_TED01","TED highly-symmetric fold AF-L7L8J6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1133849","l":"Nocardia brasiliensis ATCC 700358","na":6,"nb":1,"a":[["b-lymphocyte-bto-0000776.html","B-lymphocyte"],["brain-bto-0000142.html","brain"],["heart-bto-0000562.html","heart"],["lymphocyte-bto-0000775.html","lymphocyte"],["macrophage-bto-0000801.html","macrophage"],["spleen-bto-0001281.html","spleen"]],"b":[["TED%3AAF-K0ES07-F1-model_v4_TED01","TED novel fold AF-K0ES07-F1-model_v4_TED01"]]},{"id":"NCBITaxon:124","l":"Blastopirellula marina","na":1,"nb":6,"a":[["marine-environment-envo-01000320.html","marine environment"]],"b":[["TED%3AAF-A0A2S8GNX8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S8GNX8-F1-model_v4_TED01"],["TED%3AAF-A0A2S8F9J3-F1-model_v4_TED04","TED novel fold AF-A0A2S8F9J3-F1-model_v4_TED04"],["TED%3AAF-A0A2S8FMN6-F1-model_v4_TED01","TED novel fold AF-A0A2S8FMN6-F1-model_v4_TED01"],["TED%3AAF-A0A2S8GCT5-F1-model_v4_TED02","TED novel fold AF-A0A2S8GCT5-F1-model_v4_TED02"],["TED%3AAF-A0A2S8GL91-F1-model_v4_TED01","TED novel fold AF-A0A2S8GL91-F1-model_v4_TED01"],["TED%3AAF-A0A2S8GLG3-F1-model_v4_TED01","TED novel fold AF-A0A2S8GLG3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:205922","l":"Pseudomonas fluorescens Pf0-1","na":6,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["cold-environment-envo-01000309.html","cold environment"],["microbial-mat-material-envo-01000157.html","microbial mat material"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"],["agricultural-soil-envo-00002259.html","agricultural soil"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["Pfam%3APF07927","HicA toxin of bacterial toxin-antitoxin,"]]},{"id":"NCBITaxon:2210","l":"Methanosarcina thermophila","na":1,"nb":6,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF19436","ACS/CODH beta subunit C-terminal"],["Pfam%3APF03598","CO dehydrogenase/acetyl-CoA synthase complex beta subunit"],["Pfam%3APF00871","Acetokinase family"],["PROSITE%3APS01075","Acetate and butyrate kinases family signature 1"],["PROSITE%3APS01076","Acetate and butyrate kinases family signature 2"]]},{"id":"NCBITaxon:272630","l":"Methylorubrum extorquens (strain ATCC 14718 / DSM 1338 / JCM 2805 / NCIMB 9133 / AM1)","na":1,"nb":6,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["Pfam%3APF07726","ATPase family associated with various cellular activities (AAA)"],["Pfam%3APF02741","FTR, proximal lobe"],["Pfam%3APF01913","Formylmethanofuran-tetrahydromethanopterin formyltransferase"],["Pfam%3APF10677","Protein of unknown function (DUF2490)"],["Pfam%3APF08714","Formaldehyde-activating enzyme (Fae)"],["PROSITE%3APS00363","Bacterial quinoprotein dehydrogenases signature 1"]]},{"id":"NCBITaxon:290402","l":"Clostridium beijerinckii (strain ATCC 51743 / NCIMB 8052)","na":1,"nb":6,"a":[["garden-soil-envo-00002263.html","garden soil"]],"b":[["Pfam%3APF28550","Domain of unknown function (DUF8436)"],["Pfam%3APF21688","FAD-dependent protein, C-terminal domain-like"],["Pfam%3APF02001","Protein of unknown function DUF134"],["Pfam%3APF03608","PTS system enzyme II sorbitol-specific factor"],["Pfam%3APF07663","Sorbitol phosphotransferase enzyme II C-terminus"],["Pfam%3APF03612","Sorbitol phosphotransferase enzyme II N-terminus"]]},{"id":"NCBITaxon:3068","l":"Volvox carteri f. nagariensis","na":6,"nb":1,"a":[["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["neritic-epipelagic-zone-biome-envo-01000042.html","neritic epipelagic zone biome"],["germ-cell-bto-0000535.html","germ cell"],["semen-bto-0001230.html","semen"],["sea-shore-envo-00000485.html","sea shore"]],"b":[["TED%3AAF-D8U4E8-F1-model_v4_TED01","TED highly-symmetric fold AF-D8U4E8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:321614","l":"","na":1,"nb":6,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["Pfam%3APF11786","Aft1 HRA domain"],["Pfam%3APF11787","Aft1 HRR domain"],["Pfam%3APF26980","Dicer-like protein 2, dsRNA binding domain"],["Pfam%3APF18973","Putative Chitin binding like"],["Pfam%3APF25326","SRB8 ARM-like domain"],["TED%3AAF-A0A7U2I0S3-F1-model_v4_TED02","TED novel fold AF-A0A7U2I0S3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:364106","l":"Escherichia coli (strain UTI89 / UPEC)","na":1,"nb":6,"a":[["rectum-bto-0001158.html","rectum"]],"b":[["Pfam%3APF26516","Inner membrane protein CbrB"],["Pfam%3APF17151","Periplasmic sensor domain"],["Pfam%3APF08971","Glycogen synthesis protein"],["Pfam%3APF06005","ZapB family"],["Pfam%3APF09618","CRISPR-associated protein (Cas_Csy4)"],["Pfam%3APF28061","Type I toxin DinQ-like"]]},{"id":"NCBITaxon:374930","l":"Haemophilus influenzae (strain PittEE)","na":1,"nb":6,"a":[["middle-ear-bto-0002099.html","middle ear"]],"b":[["Pfam%3APF02952","L-fucose isomerase, C-terminal domain"],["Pfam%3APF07881","L-fucose isomerase, first N-terminal domain"],["Pfam%3APF07882","L-fucose isomerase, second N-terminal domain"],["Pfam%3APF02313","Fumarate reductase subunit D"],["Pfam%3APF13286","Phosphohydrolase-associated domain"],["Pfam%3APF04751","Dual-action ribosomal maturation protein DarP"]]},{"id":"NCBITaxon:471852","l":"Thermomonospora curvata DSM 43183","na":6,"nb":1,"a":[["city-envo-00000856.html","city"],["compost-envo-00002170.html","compost"],["urban-biome-envo-01000249.html","urban biome"],["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["Pfam%3APF01580","FtsK/SpoIIIE family"]]},{"id":"NCBITaxon:669","l":"Vibrio harveyi","na":1,"nb":6,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["Pfam%3APF02273","Acyl transferase"],["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF03173","Putative carbohydrate binding domain"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"],["TED%3AAF-A0A454D440-F1-model_v4_TED02","TED novel fold AF-A0A454D440-F1-model_v4_TED02"],["TED%3AAF-A0A8B3DE42-F1-model_v4_TED03","TED novel fold AF-A0A8B3DE42-F1-model_v4_TED03"]]},{"id":"NCBITaxon:7719","l":"Ciona intestinalis","na":6,"nb":1,"a":[["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"],["ascidian-bto-0000090.html","ascidian"],["ocellus-bto-0001758.html","ocellus"],["sensory-cell-bto-0001037.html","sensory cell"],["tadpole-bto-0001347.html","tadpole"],["trunk-bto-0001493.html","trunk"]],"b":[["TED%3AAF-F6ULD1-F1-model_v4_TED03","TED highly-symmetric fold AF-F6ULD1-F1-model_v4_TED03"]]},{"id":"NCBITaxon:9544","l":"Macaca mulatta","na":1,"nb":6,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["Pfam%3APF21708","Galactocerebrosidase, C-terminal lectin domain"],["Pfam%3APF17387","Glycosyl hydrolase family 59 central domain"],["Pfam%3APF18771","APOBEC3H"],["Pfam%3APF02057","Glycosyl hydrolase family 59"],["PROSITE%3APS00970","Nuclear transition protein 2 signature 1"],["PROSITE%3APS00971","Nuclear transition protein 2 signature 2"]]},{"id":"UBERON:0002048","l":"","na":6,"nb":1,"a":[["lung-habitatmech-gold-dd1a9f0db8.html","Lung"],["lung-habitatmech-gold-5bbc13545b.html","Lung"],["lung-habitatmech-gold-ba687e2c95.html","Lung"],["lung-habitatmech-gold-8fed57e653.html","Lung"],["lung-habitatmech-gold-e8a2c6cf87.html","Lung"],["lung-habitatmech-gold-0d343fdd03.html","Lung"]],"b":[["GO%3A0030324","lung development"]]},{"id":"NCBITaxon:1001240","l":"Cryobacterium roopkundense","na":5,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"],["mineral-material-envo-01000256.html","mineral material"]],"b":[["TED%3AAF-A0A099JLC4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A099JLC4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1006551","l":"Klebsiella michiganensis (strain ATCC 8724 / DSM 4798 / JCM 20051 / NBRC 3318 / NRRL B-199 / KCTC 1686 / BUCSAV 143 / CCM 1901)","na":1,"nb":5,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["Pfam%3APF07833","Copper amine oxidase N-terminal domain"],["Pfam%3APF18427","DD-reactivating factor swiveling domain"],["Pfam%3APF02288","Dehydratase medium subunit"],["Pfam%3APF08841","Diol dehydratase reactivase ATPase-like domain"],["TED%3AAF-A0A0H3H2M0-F1-model_v4_TED01","TED novel fold AF-A0A0H3H2M0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:103836","l":"Thermopolyspora flexuosa","na":5,"nb":1,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["intestine-environment-envo-2100002.html","intestine environment"],["organic-feature-envo-01000159.html","organic feature"],["compost-soil-envo-00005747.html","compost soil"],["soil-envo-00001998.html","soil"]],"b":[["TED%3AAF-A0A543J0S6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A543J0S6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:104421","l":"Camponotus floridanus","na":5,"nb":1,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"],["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"],["biotope-envo-00002036.html","biotope"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["Pfam%3APF22299","BRISC complex subunit FAM175B, helical domain"]]},{"id":"NCBITaxon:1288","l":"Staphylococcus xylosus","na":5,"nb":1,"a":[["stream-envo-00000023.html","stream"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"],["fecal-environment-envo-01001029.html","fecal environment"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["Pfam%3APF02603","HPr Serine kinase N terminus"]]},{"id":"NCBITaxon:13243","l":"Rarobacter faecitabidus","na":5,"nb":1,"a":[["water-body-envo-00000063.html","water body"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["TED%3AAF-A0A542ZUH8-F1-model_v4_TED03","TED novel fold AF-A0A542ZUH8-F1-model_v4_TED03"]]},{"id":"NCBITaxon:135569","l":"Helicobacter apodemus","na":5,"nb":1,"a":[["cecum-mucosa-bto-0000213.html","cecum mucosa"],["epithelium-bto-0000416.html","epithelium"],["ht-29-cell-bto-0000182.html","HT-29 cell"],["lymphoid-tissue-bto-0000753.html","lymphoid tissue"],["mucosa-bto-0000886.html","mucosa"]],"b":[["TED%3AAF-A0A4U8UFG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8UFG8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1356854","l":"Alicyclobacillus acidoterrestris (strain ATCC 49025 / DSM 3922 / CIP 106132 / NCIMB 13137 / GD3B)","na":1,"nb":5,"a":[["fruit-juice-bto-0004057.html","fruit juice"]],"b":[["Pfam%3APF22202","CRISPR-associated endonuclease C2c1 first helical domain"],["Pfam%3APF22172","CRISPR-associated endonuclease C2c1 second helical domain"],["Pfam%3APF22077","CRISPR-associated endonuclease C2c1 Nuc-II domain"],["Pfam%3APF22126","C2c1 CRISPR-Cas endonuclease, RuvC-like domain"],["Pfam%3APF22204","CRISPR-associated endonuclease C2c1, wedge domain, second region"]]},{"id":"NCBITaxon:1363","l":"Lactococcus garvieae","na":5,"nb":1,"a":[["animal-house-envo-00003040.html","animal house"],["gall-bladder-bto-0000493.html","gall bladder"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["geographic-feature-envo-00000000.html","geographic feature"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["TED%3AAF-A0A6L2ZWS4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L2ZWS4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:155077","l":"Cellvibrio japonicus","na":1,"nb":5,"a":[["compost-envo-00002170.html","compost"]],"b":[["Pfam%3APF02013","Cellulose or protein binding domain"],["Pfam%3APF03426","Carbohydrate binding domain (family 15)"],["Pfam%3APF16841","Ca-dependent carbohydrate-binding module xylan-binding"],["Pfam%3APF00331","Glycosyl hydrolase family 10"],["PROSITE%3APS00591","Glycosyl hydrolases family 10 (GH10) active site"]]},{"id":"NCBITaxon:1778","l":"Mycobacterium gordonae","na":5,"nb":1,"a":[["fibroblast-bto-0000452.html","fibroblast"],["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["kidney-bto-0000671.html","kidney"],["spleen-bto-0001281.html","spleen"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["TED%3AAF-A0A7D6E392-F1-model_v4_TED02","TED novel fold AF-A0A7D6E392-F1-model_v4_TED02"]]},{"id":"NCBITaxon:183","l":"Leptonema illini","na":1,"nb":5,"a":[["mud-envo-01000001.html","mud"]],"b":[["TED%3AAF-A0A833GYM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A833GYM6-F1-model_v4_TED01"],["TED%3AAF-A0A833GZG7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A833GZG7-F1-model_v4_TED01"],["TED%3AAF-A0A833H0U1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A833H0U1-F1-model_v4_TED01"],["TED%3AAF-A0A833H0U1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A833H0U1-F1-model_v4_TED02"],["TED%3AAF-A0A833LYP2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A833LYP2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1861","l":"Geodermatophilus obscurus","na":5,"nb":1,"a":[["desert-sand-envo-00005800.html","desert sand"],["tropical-envo-01000204.html","tropical"],["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["TED%3AAF-A0A1M7SWB5-F1-model_v4_TED02","TED novel fold AF-A0A1M7SWB5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:190486","l":"Xanthomonas axonopodis pv. citri (strain 306)","na":1,"nb":5,"a":[["vascular-tissue-bto-0001432.html","vascular tissue"]],"b":[["IDPO%3A0000003","molten globule"],["IDPO%3A0000012","molten globule to order"],["IDPO%3A0000006","order"],["Pfam%3APF00325","Bacterial regulatory proteins, crp family"],["Pfam%3APF05420","Cellulose synthase operon protein C C-terminus (BCSC_C)"]]},{"id":"NCBITaxon:2026715","l":"Pseudobdellovibrionaceae bacterium","na":1,"nb":5,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2E8I2Q3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E8I2Q3-F1-model_v4_TED02"],["TED%3AAF-A0A2E8I7A7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E8I7A7-F1-model_v4_TED02"],["TED%3AAF-A0A2E1Q4H5-F1-model_v4_TED06","TED novel fold AF-A0A2E1Q4H5-F1-model_v4_TED06"],["TED%3AAF-A0A2E7GIF0-F1-model_v4_TED01","TED novel fold AF-A0A2E7GIF0-F1-model_v4_TED01"],["TED%3AAF-A0A849WIZ5-F1-model_v4_TED01","TED novel fold AF-A0A849WIZ5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2098","l":"Metamycoplasma hominis","na":5,"nb":1,"a":[["egg-food-product-foodon-00001274.html","egg food product"],["amniotic-cavity-bto-0000025.html","amniotic cavity"],["amniotic-fluid-bto-0000068.html","amniotic fluid"],["placenta-bto-0001078.html","placenta"],["reproductive-system-bto-0000081.html","reproductive system"]],"b":[["TED%3AAF-A0A6A8Q3G2-F1-model_v4_TED02","TED novel fold AF-A0A6A8Q3G2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:265072","l":"Methylobacillus flagellatus KT","na":5,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"],["water-body-envo-00000063.html","water body"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["activated-sludge-envo-00002046.html","activated sludge"],["sludge-envo-00002044.html","sludge"]],"b":[["Pfam%3APF10414","Sirohaem synthase dimerisation region"]]},{"id":"NCBITaxon:28038","l":"Latilactobacillus curvatus","na":5,"nb":1,"a":[["research-facility-envo-00000469.html","research facility"],["food-fermented-foodon-00001258.html","food (fermented)"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["TED%3AAF-A0A3R5XZN9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3R5XZN9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:290054","l":"Eubacterium coprostanoligenes","na":5,"nb":1,"a":[["emulsion-envo-00010506.html","emulsion"],["environmental-feature-envo-00002297.html","environmental feature"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["pig-manure-envo-00003860.html","pig manure"],["harbour-envo-00000463.html","harbour"]],"b":[["TED%3AAF-A0A1T4NG17-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1T4NG17-F1-model_v4_TED01"]]},{"id":"NCBITaxon:324602","l":"Chloroflexus aurantiacus (strain ATCC 29366 / DSM 635 / J-10-fl)","na":1,"nb":5,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["Pfam%3APF00127","Copper binding proteins, plastocyanin/azurin family"],["Pfam%3APF02276","Photosynthetic reaction centre cytochrome C subunit"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["PROSITE%3APS00196","Type-1 copper (blue) proteins signature"],["PROSITE%3APS00648","Bacterial ribonuclease P protein component signature"]]},{"id":"NCBITaxon:338969","l":"Rhodoferax ferrireducens T118","na":5,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["petroleum-envo-00002984.html","petroleum"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["Pfam%3APF11154","Protein of unknown function (DUF2934)"]]},{"id":"NCBITaxon:34062","l":"Faucicola osloensis","na":5,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"],["water-scum-envo-00005794.html","water scum"]],"b":[["Pfam%3APF14130","Cap4, dsDNA endonuclease domain"]]},{"id":"NCBITaxon:354242","l":"Campylobacter jejuni subsp. jejuni 81-176","na":5,"nb":1,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["leukocyte-bto-0000751.html","leukocyte"],["lymphocyte-bto-0000775.html","lymphocyte"],["neutrophil-bto-0000130.html","neutrophil"],["small-intestine-bto-0000651.html","small intestine"]],"b":[["PROSITE%3APS01300","RecR protein signature"]]},{"id":"NCBITaxon:384","l":"Rhizobium leguminosarum","na":1,"nb":5,"a":[["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["Pfam%3APF10931","Protein of unknown function (DUF2735)"],["TED%3AAF-A0A1B1C3F3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1B1C3F3-F1-model_v4_TED02"],["TED%3AAF-A0A4Q8XNE1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q8XNE1-F1-model_v4_TED01"],["TED%3AAF-A0A6P0B3F8-F1-model_v4_TED02","TED novel fold AF-A0A6P0B3F8-F1-model_v4_TED02"],["TED%3AAF-A0A6P0DM15-F1-model_v4_TED01","TED novel fold AF-A0A6P0DM15-F1-model_v4_TED01"]]},{"id":"NCBITaxon:388399","l":"Sagittula stellata E-37","na":5,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["oligotrophic-water-envo-00002223.html","oligotrophic water"],["pulp-bto-0001142.html","pulp"],["rosette-bto-0001201.html","rosette"],["scolex-bto-0002305.html","scolex"]],"b":[["TED%3AAF-A3JXK6-F1-model_v4_TED02","TED novel fold AF-A3JXK6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:393480","l":"Fusobacterium polymorphum ATCC 10953","na":5,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"],["forested-area-envo-00000111.html","forested area"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["TED%3AAF-A5TXK7-F1-model_v4_TED01","TED highly-symmetric fold AF-A5TXK7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:40518","l":"Ruminococcus bromii","na":5,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["emulsion-envo-00010506.html","emulsion"],["skin-environment-envo-2100003.html","skin environment"],["animal-habitation-envo-00005803.html","animal habitation"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-A0A412UMQ9-F1-model_v4_TED02","TED novel fold AF-A0A412UMQ9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:410359","l":"Pyrobaculum calidifontis (strain DSM 21063 / JCM 11548 / VA1)","na":1,"nb":5,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF18653","Arcadin 1"],["Pfam%3APF01930","Domain of unknown function DUF83"],["PROSITE%3APS00895","3-hydroxyisobutyrate dehydrogenase signature"],["TED%3AAF-A3MU28-F1-model_v4_TED02","TED highly-symmetric fold AF-A3MU28-F1-model_v4_TED02"],["TED%3AAF-A3MXY3-F1-model_v4_TED01","TED highly-symmetric fold AF-A3MXY3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:4513","l":"Hordeum vulgare","na":1,"nb":5,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["Pfam%3APF20241","Domain of unknown function (DUF6598)"],["PROSITE%3APS00771","Barwin domain signature 1"],["PROSITE%3APS00426","Cereal trypsin/alpha-amylase inhibitors family signature"],["PROSITE%3APS00725","Germin family signature"],["PROSITE%3APS00431","Small hydrophilic plant seed proteins signature"]]},{"id":"NCBITaxon:511","l":"Alcaligenes faecalis","na":1,"nb":5,"a":[["foot-bto-0000476.html","foot"]],"b":[["Pfam%3APF16867","Dimethlysulfonioproprionate lyase"],["Pfam%3APF17645","Arylmalonate decarboxylase"],["Pfam%3APF06433","Methylamine dehydrogenase heavy chain (MADH)"],["TED%3AAF-A0A1Z3MKY1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z3MKY1-F1-model_v4_TED01"],["TED%3AAF-A0A2U2BPX7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2U2BPX7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:716541","l":"Enterobacter cloacae subsp. cloacae (strain ATCC 13047 / DSM 30054 / NBRC 13535 / NCTC 10005 / WDCM 00083 / NCDC 279-56)","na":1,"nb":5,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Pfam%3APF18228","CdiI N-terminal domain"],["PROSITE%3APS00896","LacY family proton/sugar symporters signature 1"],["PROSITE%3APS00897","LacY family proton/sugar symporters signature 2"],["Pfam%3APF13332","Hemagglutinin repeat"],["Pfam%3APF05860","TPS secretion domain"]]},{"id":"NCBITaxon:747","l":"Pasteurella multocida","na":5,"nb":1,"a":[["bronchus-uberon-0002185.html","bronchus"],["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["finger-bto-0004669.html","finger"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["TED%3AAF-A0A8A8HHD5-F1-model_v4_TED02","TED novel fold AF-A0A8A8HHD5-F1-model_v4_TED02"]]},{"id":"UBERON:0000955","l":"brain","na":5,"nb":1,"a":[["brain-habitatmech-gold-752ac1c5aa.html","Brain"],["brain-habitatmech-gold-6bdd76cda3.html","Brain"],["brain-habitatmech-gold-a220aa6bb0.html","Brain"],["brain-habitatmech-gold-e1c2f5f7d4.html","Brain"],["brain-habitatmech-gold-2e584195fd.html","Brain"]],"b":[["GO%3A0007420","brain development"]]},{"id":"CHEBI:24632","l":"hydrocarbon","na":4,"nb":1,"a":[["hydrocarbon-habitatmech-gold-db79f0142d.html","Hydrocarbon"],["hydrocarbon-habitatmech-gold-3c68e33a11.html","Hydrocarbon"],["hydrocarbon-habitatmech-gold-e77998b825.html","Hydrocarbon"],["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"]],"b":[["TCDB%3A1.B.9","The FadL Outer Membrane Protein (FadL) Family"]]},{"id":"NCBITaxon:100","l":"Ancylobacter aquaticus","na":4,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["groundwater-envo-01001004.html","groundwater"],["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"]],"b":[["TED%3AAF-A0A431PQS4-F1-model_v4_TED01","TED novel fold AF-A0A431PQS4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:102862","l":"Proteus penneri","na":4,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"],["geographic-feature-envo-00000000.html","geographic feature"],["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-A0A0G4Q3D2-F1-model_v4_TED01","TED novel fold AF-A0A0G4Q3D2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:102897","l":"Parafrankia sp. EUN1f","na":4,"nb":1,"a":[["plant-bto-0001481.html","plant"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["TED%3AAF-D3D2N4-F1-model_v4_TED01","TED novel fold AF-D3D2N4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1029718","l":"Candidatus Arthromitus sp. SFB-mouse-Japan","na":4,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["lymphocyte-bto-0000775.html","lymphocyte"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["TED%3AAF-F9VKB6-F1-model_v4_TED01","TED novel fold AF-F9VKB6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:105612","l":"Dellaglioa algida","na":4,"nb":1,"a":[["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biotope-envo-00002036.html","biotope"],["organic-feature-envo-01000159.html","organic feature"]],"b":[["TED%3AAF-A0A5C6M980-F1-model_v4_TED02","TED novel fold AF-A0A5C6M980-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1121132","l":"Butyrivibrio hungatei DSM 14810","na":4,"nb":1,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"],["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["TED%3AAF-A0A1M7SJD3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M7SJD3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121301","l":"Paramaledivibacter caminithermalis DSM 15212","na":4,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"],["trough-envo-00000499.html","trough"]],"b":[["TED%3AAF-A0A1M6LSW1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M6LSW1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121324","l":"Peptoclostridium litorale DSM 5388","na":4,"nb":1,"a":[["inlet-envo-00000475.html","inlet"],["ocean-envo-00000015.html","ocean"],["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"]],"b":[["TED%3AAF-A0A069RDW3-F1-model_v4_TED01","TED novel fold AF-A0A069RDW3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121449","l":"Paucidesulfovibrio gracilis DSM 16080","na":4,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"],["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["TED%3AAF-A0A1T4W1V7-F1-model_v4_TED03","TED novel fold AF-A0A1T4W1V7-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1121451","l":"Maridesulfovibrio hydrothermalis AM13 = DSM 14728","na":4,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["undersea-feature-envo-00000104.html","undersea feature"],["trough-envo-00000499.html","trough"]],"b":[["TED%3AAF-L0RH10-F1-model_v4_TED01","TED novel fold AF-L0RH10-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1122195","l":"Marinitoga hydrogenitolerans DSM 16785","na":4,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["ridge-envo-00000283.html","ridge"],["trough-envo-00000499.html","trough"]],"b":[["Pfam%3APF22362","Argonaute, middle domain, bacteria"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":4,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["TED%3AAF-A0A132HLN2-F1-model_v4_TED01","TED novel fold AF-A0A132HLN2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:122587","l":"Neisseria meningitidis serogroup A / serotype 4A (strain DSM 15465 / Z2491)","na":1,"nb":4,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"]],"b":[["Pfam%3APF17850","CysA C-terminal regulatory domain"],["Pfam%3APF22443","FbpC-like, regulatory domain"],["Pfam%3APF05159","Capsule polysaccharide biosynthesis protein"],["Pfam%3APF10077","Uncharacterized protein conserved in bacteria (DUF2314)"]]},{"id":"NCBITaxon:1335","l":"Streptococcus equinus","na":4,"nb":1,"a":[["foregut-bto-0000507.html","foregut"],["stomach-bto-0001307.html","stomach"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["TED%3AAF-A0A1V0GLT7-F1-model_v4_TED01","TED novel fold AF-A0A1V0GLT7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:137584","l":"Thalassomonas viridans","na":1,"nb":4,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["TED%3AAF-A0A0D8CPR2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D8CPR2-F1-model_v4_TED01"],["TED%3AAF-A0A0D8CLZ9-F1-model_v4_TED01","TED novel fold AF-A0A0D8CLZ9-F1-model_v4_TED01"],["TED%3AAF-A0A0D8D8E8-F1-model_v4_TED02","TED novel fold AF-A0A0D8D8E8-F1-model_v4_TED02"],["TED%3AAF-A0A0D8DAF2-F1-model_v4_TED01","TED novel fold AF-A0A0D8DAF2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:148604","l":"Limosilactobacillus ingluviei","na":4,"nb":1,"a":[["animal-house-envo-00003040.html","animal house"],["organic-waste-material-envo-00002873.html","organic waste material"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["TED%3AAF-A0A0R2GUF0-F1-model_v4_TED01","TED novel fold AF-A0A0R2GUF0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1501","l":"Clostridium pasteurianum","na":1,"nb":4,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["Pfam%3APF22609","Iron hydrogenase 1-like, iron-sulfur centre-binding domain"],["Pfam%3APF09582","Iron only nitrogenase protein AnfO (AnfO_nitrog)"],["PROSITE%3APS00746","NifH/frxC family signature 1"],["PROSITE%3APS00699","Nitrogenases component 1 alpha and beta subunits signature 1"]]},{"id":"NCBITaxon:152142","l":"Mycolicibacterium holsaticum","na":4,"nb":1,"a":[["fibroblast-bto-0000452.html","fibroblast"],["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["kidney-bto-0000671.html","kidney"],["spleen-bto-0001281.html","spleen"]],"b":[["TED%3AAF-A0A1E3RVW1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E3RVW1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:160492","l":"Xylella fastidiosa (strain 9a5c)","na":1,"nb":4,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["Pfam%3APF21142","Bacterial alpha-2 macroglobulin MG2 domain"],["Pfam%3APF04273","Beta-lactamase hydrolase-like protein, phosphatase-like domain"],["Pfam%3APF17970","Bacterial Alpha-2-macroglobulin MG1 domain"],["Pfam%3APF20398","Family of unknown function (DUF6691)"]]},{"id":"NCBITaxon:1622","l":"Ligilactobacillus murinus","na":4,"nb":1,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"],["animal-litter-envo-00002191.html","animal litter"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["TED%3AAF-A0A4S2E8S9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4S2E8S9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:163","l":"Treponema bryantii","na":4,"nb":1,"a":[["stomach-bto-0001307.html","stomach"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["intestine-environment-envo-2100002.html","intestine environment"],["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["TED%3AAF-A0A1I3JLL1-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A1I3JLL1-F1-model_v4_TED05"]]},{"id":"NCBITaxon:1710","l":"Cellulosimicrobium cellulans","na":4,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"],["oil-spill-envo-00002061.html","oil spill"],["peat-soil-envo-00005774.html","peat soil"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["Pfam%3APF16483","Beta-1,3-glucanase"]]},{"id":"NCBITaxon:1712410","l":"Thermanaerosceptrum fracticalcis","na":4,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["ocean-trench-envo-00000275.html","ocean trench"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["trough-envo-00000499.html","trough"]],"b":[["TED%3AAF-A0A7G6E021-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7G6E021-F1-model_v4_TED02"]]},{"id":"NCBITaxon:172045","l":"Elizabethkingia miricola","na":4,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["hindgut-bto-0000510.html","hindgut"],["wood-bto-0005516.html","wood"],["environmental-system-envo-01000254.html","environmental system"]],"b":[["TED%3AAF-A0A0D5BKG2-F1-model_v4_TED01","TED novel fold AF-A0A0D5BKG2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1836","l":"Saccharopolyspora erythraea","na":1,"nb":4,"a":[["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["Pfam%3APF08990","Erythronolide synthase docking domain"],["Pfam%3APF09277","Erythronolide synthase, docking"],["Pfam%3APF12728","Helix-turn-helix domain"],["Pfam%3APF12307","Protein of unknown function (DUF3631)"]]},{"id":"NCBITaxon:1871086","l":"Brevundimonas sp.","na":1,"nb":4,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["TED%3AAF-A0A2W6RYY6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2W6RYY6-F1-model_v4_TED03"],["TED%3AAF-A0A326KNM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A326KNM4-F1-model_v4_TED01"],["TED%3AAF-A0A521NPA0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521NPA0-F1-model_v4_TED01"],["TED%3AAF-A0A519PPD7-F1-model_v4_TED01","TED novel fold AF-A0A519PPD7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":1,"nb":4,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["Pfam%3APF16861","Carbamoyltransferase C-terminus"],["Pfam%3APF02543","Carbamoyltransferase N-terminus"],["Pfam%3APF01960","ArgJ family"],["Pfam%3APF07467","Beta-lactamase inhibitor (BLIP)"]]},{"id":"NCBITaxon:1930","l":"Streptomyces scabiei","na":4,"nb":1,"a":[["a10-cell-bto-0002196.html","A10 cell"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["TED%3AAF-A0A086GLG9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A086GLG9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:207559","l":"Oleidesulfovibrio alaskensis (strain ATCC BAA-1058 / DSM 17464 / G20)","na":1,"nb":4,"a":[["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["Pfam%3APF13353","4Fe-4S single cluster domain"],["Pfam%3APF01228","Glycine radical"],["PROSITE%3APS00850","Glycine radical domain signature"],["PROSITE%3APS01087","Radical activating enzymes signature"]]},{"id":"NCBITaxon:2209","l":"Methanosarcina mazei","na":4,"nb":1,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["sludge-envo-00002044.html","sludge"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["TED%3AAF-A0A0F8CQX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F8CQX7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:224914","l":"","na":1,"nb":4,"a":[["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["Pfam%3APF03625","Domain of unknown function DUF302"],["Pfam%3APF07559","Flagellar basal body protein FlaE D2 domain"],["Pfam%3APF07536","HWE histidine kinase"],["Pfam%3APF06776","Invasion associated locus B (IalB) protein"]]},{"id":"NCBITaxon:224915","l":"Buchnera aphidicola subsp. Baizongia pistaciae (strain Bp)","na":1,"nb":4,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Pfam%3APF26016","Exonuclease I C-terminal domain"],["Pfam%3APF08411","Exonuclease I SH3-like domain"],["Pfam%3APF09849","Uncharacterized protein conserved in bacteria (DUF2076)"],["Pfam%3APF06481","COX Aromatic Rich Motif"]]},{"id":"NCBITaxon:269796","l":"Rhodospirillum rubrum (strain ATCC 11170 / ATH 1.1.1 / DSM 467 / LMG 4362 / NCIMB 8255 / S1)","na":1,"nb":4,"a":[["joint-bto-0001686.html","joint"]],"b":[["Pfam%3APF24931","ACR9-like, ACT-like domain"],["Pfam%3APF20543","N2-fixation sustaining protein CowN"],["Pfam%3APF22277","EncFtn-like"],["TED%3AAF-Q2RML2-F1-model_v4_TED01","TED highly-symmetric fold AF-Q2RML2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:272563","l":"Clostridioides difficile (strain 630)","na":1,"nb":4,"a":[["central-nervous-system-bto-0000227.html","central nervous system"]],"b":[["Pfam%3APF07737","Anthrax toxin lethal factor, N- and C-terminal domain"],["Pfam%3APF11155","Domain of unknown function (DUF2935)"],["Pfam%3APF06249","Ethanolamine utilisation protein EutQ"],["Pfam%3APF12544","Lysine-2,3-aminomutase"]]},{"id":"NCBITaxon:272620","l":"Klebsiella pneumoniae subsp. pneumoniae (strain ATCC 700721 / MGH 78578)","na":1,"nb":4,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Pfam%3APF04336","Acyl carrier protein phosphodiesterase"],["Pfam%3APF17948","DnaT DNA-binding domain"],["PROSITE%3APS00839","Uroporphyrin-III C-methyltransferase signature 1"],["PROSITE%3APS00840","Uroporphyrin-III C-methyltransferase signature 2"]]},{"id":"NCBITaxon:28450","l":"Burkholderia pseudomallei","na":1,"nb":4,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"]],"b":[["Pfam%3APF18664","CdiA C-terminal tRNase domain"],["Pfam%3APF12106","Colicin E5 ribonuclease domain"],["Pfam%3APF11480","Colicin-E5 Imm protein"],["Pfam%3APF13332","Hemagglutinin repeat"]]},{"id":"NCBITaxon:29313","l":"Mycobacterium shimoidei","na":4,"nb":1,"a":[["fibroblast-bto-0000452.html","fibroblast"],["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["kidney-bto-0000671.html","kidney"],["spleen-bto-0001281.html","spleen"]],"b":[["TED%3AAF-A0A1E3TGG0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1E3TGG0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:29345","l":"Sedimentibacter hydroxybenzoicus","na":4,"nb":1,"a":[["mud-envo-01000001.html","mud"],["oil-spill-envo-00002061.html","oil spill"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["Pfam%3APF26358","EcdD/BsdD phenolic detoxification"]]},{"id":"NCBITaxon:29494","l":"Vibrio furnissii","na":1,"nb":4,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["Pfam%3APF17957","Bacterial Ig domain"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"],["Pfam%3APF02839","Carbohydrate-binding module family 5/12"],["Pfam%3APF06483","Chitinase C"]]},{"id":"NCBITaxon:301","l":"Ectopseudomonas oleovorans","na":1,"nb":4,"a":[["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["PROSITE%3APS00202","Rubredoxin signature"],["TED%3AAF-A0A2W5VSG0-F1-model_v4_TED02","TED novel fold AF-A0A2W5VSG0-F1-model_v4_TED02"],["TED%3AAF-A0A379JMN0-F1-model_v4_TED01","TED novel fold AF-A0A379JMN0-F1-model_v4_TED01"],["TED%3AAF-A0A379PLI0-F1-model_v4_TED03","TED novel fold AF-A0A379PLI0-F1-model_v4_TED03"]]},{"id":"NCBITaxon:324057","l":"Paenibacillus sp. JDR-2","na":4,"nb":1,"a":[["vasculature-uberon-0002049.html","vasculature"],["wood-envo-00002040.html","wood"],["part-of-plant-habitatmech-madin-25325947e2.html","part of plant"],["village-biome-envo-01000246.html","village biome"]],"b":[["Pfam%3APF06452","Carbohydrate family 9 binding domain-like"]]},{"id":"NCBITaxon:326423","l":"Bacillus velezensis FZB42","na":1,"nb":4,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["Pfam%3APF21607","[Acyl-carrier-protein] S-malonyltransferase, inserted helical domain"],["Pfam%3APF21996","Histidyl-tRNA synthetase HisZ, C-terminal domain"],["Pfam%3APF07293","Protein of unknown function (DUF1450)"],["Pfam%3APF12227","Protein of unknown function (DUF3603)"]]},{"id":"NCBITaxon:362","l":"Agrobacterium radiobacter","na":4,"nb":1,"a":[["plant-gall-po-0025626.html","plant gall"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["Pfam%3APF04909","Amidohydrolase"]]},{"id":"NCBITaxon:391","l":"Rhizobium sp.","na":4,"nb":1,"a":[["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["paddy-ricefield-habitatmech-bacdive-6e3154acd8.html","Paddy-Ricefield"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["TED%3AAF-A0A353G134-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A353G134-F1-model_v4_TED01"]]},{"id":"NCBITaxon:395019","l":"Burkholderia multivorans ATCC 17616","na":4,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"],["desert-sand-envo-00005800.html","desert sand"],["orchard-envo-00000115.html","orchard"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["TED%3AAF-A0A0H3KMX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0H3KMX2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:410358","l":"Methanocorpusculum labreanum (strain ATCC 43576 / DSM 4855 / Z)","na":1,"nb":4,"a":[["joint-bto-0001686.html","joint"]],"b":[["Pfam%3APF27030","AbpE bacteria"],["Pfam%3APF01864","CDP-archaeol synthase"],["Pfam%3APF01891","Cobalt uptake substrate-specific transmembrane region"],["TED%3AAF-A2SPH3-F1-model_v4_TED02","TED highly-symmetric fold AF-A2SPH3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:43","l":"Cystobacter fuscus","na":1,"nb":4,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"]],"b":[["TED%3AAF-A0A250J1A4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J1A4-F1-model_v4_TED01"],["TED%3AAF-A0A250J4G5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J4G5-F1-model_v4_TED01"],["TED%3AAF-A0A250J8W0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J8W0-F1-model_v4_TED01"],["TED%3AAF-A0A250J3K5-F1-model_v4_TED03","TED novel fold AF-A0A250J3K5-F1-model_v4_TED03"]]},{"id":"NCBITaxon:452863","l":"Pseudarthrobacter chlorophenolicus (strain ATCC 700700 / DSM 12829 / CIP 107037 / JCM 12360 / KCTC 9906 / NCIMB 13794 / A6)","na":1,"nb":4,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["TED%3AAF-B8HI43-F1-model_v4_TED02","TED highly-symmetric fold AF-B8HI43-F1-model_v4_TED02"],["TED%3AAF-B8HIA6-F1-model_v4_TED01","TED highly-symmetric fold AF-B8HIA6-F1-model_v4_TED01"],["TED%3AAF-B8HIQ6-F1-model_v4_TED02","TED highly-symmetric fold AF-B8HIQ6-F1-model_v4_TED02"],["TED%3AAF-B8HHK3-F1-model_v4_TED01","TED novel fold AF-B8HHK3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:46245","l":"Drosophila pseudoobscura pseudoobscura","na":1,"nb":4,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"]],"b":[["Pfam%3APF23724","Caspase-8, second domain"],["Pfam%3APF23725","Caspase-8, N-terminal domain"],["Pfam%3APF22123","Exuperantia RNAse H-like domain"],["Pfam%3APF23757","Insect HPS5 TPR domain"]]},{"id":"NCBITaxon:485913","l":"Ktedonobacter racemifer DSM 44963","na":1,"nb":4,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"]],"b":[["TED%3AAF-D6U145-F1-model_v4_TED01","TED highly-symmetric fold AF-D6U145-F1-model_v4_TED01"],["TED%3AAF-D6U380-F1-model_v4_TED01","TED highly-symmetric fold AF-D6U380-F1-model_v4_TED01"],["TED%3AAF-D6TNQ7-F1-model_v4_TED02","TED novel fold AF-D6TNQ7-F1-model_v4_TED02"],["TED%3AAF-D6U8N4-F1-model_v4_TED02","TED novel fold AF-D6U8N4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:512","l":"Alcaligenes sp","na":1,"nb":4,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["Pfam%3APF26354","N,N-dimethylformamidase alpha subunit"],["Pfam%3APF20254","N,N-dimethylformamidase beta subunit-like, C-terminal"],["Pfam%3APF11606","Family 31 carbohydrate binding protein"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"]]},{"id":"NCBITaxon:575540","l":"Isosphaera pallida ATCC 43644","na":4,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["agricultural-soil-envo-00002259.html","agricultural soil"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-E8R507-F1-model_v4_TED01","TED highly-symmetric fold AF-E8R507-F1-model_v4_TED01"]]},{"id":"NCBITaxon:644281","l":"Methanocaldococcus sp. FS406-22","na":4,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"],["volcano-envo-00000247.html","volcano"]],"b":[["TED%3AAF-D3S6J5-F1-model_v4_TED01","TED highly-symmetric fold AF-D3S6J5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":1,"nb":4,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["PROSITE%3APS00949","Autoinducer synthase family signature"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"],["PROSITE%3APS00607","cAMP phosphodiesterases class-II signature"],["TED%3AAF-A0A844NWZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A844NWZ1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:7244","l":"Drosophila virilis","na":1,"nb":4,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"]],"b":[["Pfam%3APF14786","Tube Death domain"],["Pfam%3APF05836","Chorion protein S16"],["Pfam%3APF13428","Tetratricopeptide repeat"],["TED%3AAF-B4LEB1-F1-model_v4_TED02","TED novel fold AF-B4LEB1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:888845","l":"Minicystis rosea","na":1,"nb":4,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["TED%3AAF-A0A1L6LHU6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6LHU6-F1-model_v4_TED01"],["TED%3AAF-A0A1L6LWQ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6LWQ0-F1-model_v4_TED01"],["TED%3AAF-A0A1L6L181-F1-model_v4_TED02","TED novel fold AF-A0A1L6L181-F1-model_v4_TED02"],["TED%3AAF-A0A1L6LWI8-F1-model_v4_TED02","TED novel fold AF-A0A1L6LWI8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:935293","l":"Yersinia entomophaga","na":1,"nb":4,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["Pfam%3APF05785","Rho-activating domain of cytotoxic necrotizing factor"],["Pfam%3APF20220","ABC toxin N-terminal region"],["Pfam%3APF18413","Neuraminidase-like domain"],["Pfam%3APF12256","Insecticide toxin TcdB middle/N-terminal region"]]},{"id":"UBERON:0001045","l":"","na":4,"nb":1,"a":[["midgut-habitatmech-gold-5c1b0d44e2.html","Midgut"],["midgut-habitatmech-gold-31577394a0.html","Midgut"],["midgut-habitatmech-gold-67c565f695.html","Midgut"],["midgut-habitatmech-gold-0307474089.html","Midgut"]],"b":[["GO%3A0007494","midgut development"]]},{"id":"UBERON:0001836","l":"","na":4,"nb":1,"a":[["saliva-habitatmech-gold-4c19ae6894.html","Saliva"],["saliva-habitatmech-gold-1e04aaebba.html","Saliva"],["saliva-habitatmech-gold-68875fbeda.html","Saliva"],["saliva-habitatmech-gold-a747c6ab38.html","Saliva"]],"b":[["GO%3A0046541","saliva secretion"]]},{"id":"NCBITaxon:105841","l":"Anaerostipes caccae","na":3,"nb":1,"a":[["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["emulsion-envo-00010506.html","emulsion"],["organic-feature-envo-01000159.html","organic feature"]],"b":[["TED%3AAF-A0A6N2WKG2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N2WKG2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1090322","l":"Methanolobus tindarius DSM 2278","na":1,"nb":3,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["TED%3AAF-W9DQM0-F1-model_v4_TED03","TED highly-symmetric fold AF-W9DQM0-F1-model_v4_TED03"],["TED%3AAF-W9DMY0-F1-model_v4_TED01","TED novel fold AF-W9DMY0-F1-model_v4_TED01"],["TED%3AAF-W9DNB8-F1-model_v4_TED01","TED novel fold AF-W9DNB8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1120927","l":"Acinetobacter tandoii DSM 14970 = CIP 107469","na":3,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["TED%3AAF-R9BEH0-F1-model_v4_TED04","TED highly-symmetric fold AF-R9BEH0-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1120928","l":"Acinetobacter tjernbergiae DSM 14971 = CIP 107465","na":3,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["TED%3AAF-V2W927-F1-model_v4_TED01","TED highly-symmetric fold AF-V2W927-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121391","l":"Desulfacinum infernum DSM 9756","na":3,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["TED%3AAF-A0A1M5CF65-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M5CF65-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121393","l":"Desulfatibacillum alkenivorans DSM 16219","na":3,"nb":1,"a":[["sewage-plant-envo-00003043.html","sewage plant"],["waste-water-envo-00002001.html","waste water"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["TED%3AAF-A0A1M6GB75-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M6GB75-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121950","l":"Hespellia stercorisuis DSM 15480","na":3,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["fecal-environment-envo-01001029.html","fecal environment"],["waste-material-envo-00002264.html","waste material"]],"b":[["TED%3AAF-A0A1M6UMY1-F1-model_v4_TED01","TED novel fold AF-A0A1M6UMY1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1122133","l":"Kaistia soli DSM 19436","na":3,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["wetland-area-envo-00000043.html","wetland area"]],"b":[["TED%3AAF-A0A1M5DFE2-F1-model_v4_TED01","TED novel fold AF-A0A1M5DFE2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1123012","l":"Pseudobutyrivibrio xylanivorans DSM 14809","na":3,"nb":1,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"],["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"]],"b":[["TED%3AAF-A0A1M6KN30-F1-model_v4_TED01","TED novel fold AF-A0A1M6KN30-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1125630","l":"Klebsiella pneumoniae subsp. pneumoniae (strain HS11286)","na":1,"nb":3,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["Pfam%3APF16527","Two-component sensor protein CpxA, periplasmic domain"],["Pfam%3APF03883","Peroxide stress protein YaaA"],["PROSITE%3APS01081","TetR-type HTH domain signature"]]},{"id":"NCBITaxon:117681","l":"Pseudomonas gingeri","na":3,"nb":1,"a":[["lake-envo-00000020.html","lake"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"]],"b":[["TED%3AAF-A0A7Y7X9U2-F1-model_v4_TED01","TED novel fold AF-A0A7Y7X9U2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:119602","l":"Streptococcus dysgalactiae subsp. equisimilis","na":3,"nb":1,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["animal-manure-envo-00003031.html","animal manure"]],"b":[["TED%3AAF-A0A5M4CWR2-F1-model_v4_TED02","TED novel fold AF-A0A5M4CWR2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1267423","l":"Roseivirga pacifica","na":1,"nb":3,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["TED%3AAF-A0A1I0MEP5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I0MEP5-F1-model_v4_TED02"],["TED%3AAF-A0A1I0RG98-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I0RG98-F1-model_v4_TED01"],["TED%3AAF-A0A4D7JNA0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4D7JNA0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1295009","l":"Methanomassiliicoccus intestinalis (strain Issoire-Mx1)","na":1,"nb":3,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["TED%3AAF-R9T6Q3-F1-model_v4_TED04","TED highly-symmetric fold AF-R9T6Q3-F1-model_v4_TED04"],["TED%3AAF-R9TAZ5-F1-model_v4_TED01","TED highly-symmetric fold AF-R9TAZ5-F1-model_v4_TED01"],["TED%3AAF-R9T6T6-F1-model_v4_TED01","TED novel fold AF-R9T6T6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1298856","l":"Sphingomonas sp. URHD0007","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["TED%3AAF-A0A2U1FWJ9-F1-model_v4_TED03","TED novel fold AF-A0A2U1FWJ9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1329250","l":"Weissella oryzae (strain DSM 25784 / JCM 18191 / LMG 30913 / SG25)","na":1,"nb":3,"a":[["caryopsis-bto-0000208.html","caryopsis"]],"b":[["Pfam%3APF26322","Botulinum-like neurotoxin Wo, C-terminal beta-trefoil domain"],["Pfam%3APF26321","Botulinum-like neurotoxin Wo, concanavalin A-like domain"],["TED%3AAF-A0A069CU70-F1-model_v4_TED02","TED novel fold AF-A0A069CU70-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1353","l":"Enterococcus gallinarum","na":3,"nb":1,"a":[["foregut-bto-0000507.html","foregut"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["Pfam%3APF01757","Acyltransferase domain"]]},{"id":"NCBITaxon:137591","l":"Weissella cibaria","na":3,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["epithelial-cell-bto-0000414.html","epithelial cell"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["TED%3AAF-A0A0D1LFQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D1LFQ3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:137722","l":"Azospirillum sp. B510","na":3,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["TED%3AAF-D3P3H1-F1-model_v4_TED02","TED highly-symmetric fold AF-D3P3H1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1503","l":"Gottschalkia purinilytica","na":3,"nb":1,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"],["sludge-envo-00002044.html","sludge"]],"b":[["Pfam%3APF07355","Glycine/sarcosine/betaine reductase selenoprotein B (GRDB)"]]},{"id":"NCBITaxon:1534","l":"Clostridium kluyveri","na":3,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"],["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"]],"b":[["TED%3AAF-A0A1L5FEG9-F1-model_v4_TED01","TED novel fold AF-A0A1L5FEG9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1552123","l":"Listeria booriae","na":1,"nb":3,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["TED%3AAF-A0A7X0TLR3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X0TLR3-F1-model_v4_TED01"],["TED%3AAF-A0A841XX79-F1-model_v4_TED03","TED novel fold AF-A0A841XX79-F1-model_v4_TED03"],["TED%3AAF-A0A842AXH7-F1-model_v4_TED01","TED novel fold AF-A0A842AXH7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:158","l":"Treponema denticola","na":3,"nb":1,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["archeological-site-envo-00000564.html","archeological site"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["TED%3AAF-A0A125RME2-F1-model_v4_TED02","TED novel fold AF-A0A125RME2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1588","l":"Lentilactobacillus hilgardii","na":3,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["TED%3AAF-A0A6G9Q2H1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6G9Q2H1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:169760","l":"Paenibacillus stellifer","na":3,"nb":1,"a":[["factory-envo-01000536.html","factory"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["TED%3AAF-A0A089LNP8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A089LNP8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1724","l":"Corynebacterium renale","na":3,"nb":1,"a":[["water-body-envo-00000063.html","water body"],["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["TED%3AAF-A0A2A9DLH1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A9DLH1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":1,"nb":3,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["Pfam%3APF03069","Acetamidase/Formamidase family"],["PROSITE%3APS00818","Dps protein family signature 1"],["Pfam%3APF13810","Domain of unknown function (DUF4185)"]]},{"id":"NCBITaxon:178306","l":"Pyrobaculum aerophilum (strain ATCC 51768 / DSM 7523 / JCM 9630 / CIP 104966 / NBRC 100827 / IM2)","na":1,"nb":3,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF09171","N-glycosylase/DNA lyase"],["Pfam%3APF10432","Bacterial phospho-glucose isomerase C-terminal SIS domain"],["TED%3AAF-Q8ZWY1-F1-model_v4_TED04","TED novel fold AF-Q8ZWY1-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1831","l":"","na":1,"nb":3,"a":[["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["Pfam%3APF14525","AraC-binding-like domain"],["Pfam%3APF01613","Flavin reductase like domain"],["TED%3AAF-A0A7X7SF64-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X7SF64-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1872119","l":"Acidobacterium sp.","na":3,"nb":1,"a":[["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"],["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["TED%3AAF-A0A2G4JIL1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2G4JIL1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1872578","l":"Aquabacterium sp.","na":1,"nb":3,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["TED%3AAF-A0A521ZRM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521ZRM4-F1-model_v4_TED01"],["TED%3AAF-A0A521ZL87-F1-model_v4_TED04","TED novel fold AF-A0A521ZL87-F1-model_v4_TED04"],["TED%3AAF-A0A5C8BIL8-F1-model_v4_TED02","TED novel fold AF-A0A5C8BIL8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1874361","l":"Idiomarina sp.","na":3,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"],["saline-water-body-envo-01001319.html","saline water body"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["TED%3AAF-A0A2E9H521-F1-model_v4_TED01","TED novel fold AF-A0A2E9H521-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1882831","l":"Verrucomicrobium sp. GAS474","na":1,"nb":3,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["TED%3AAF-A0A1H2GE34-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H2GE34-F1-model_v4_TED01"],["TED%3AAF-A0A1H2GVJ7-F1-model_v4_TED04","TED novel fold AF-A0A1H2GVJ7-F1-model_v4_TED04"],["TED%3AAF-A0A1H2HH15-F1-model_v4_TED02","TED novel fold AF-A0A1H2HH15-F1-model_v4_TED02"]]},{"id":"NCBITaxon:188906","l":"Jannaschia helgolandensis","na":3,"nb":1,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["TED%3AAF-A0A1H7MIC2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H7MIC2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:188908","l":"Oleispira antarctica","na":3,"nb":1,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A1Y5HYG0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y5HYG0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:189518","l":"Leptospira interrogans serovar Lai str. 56601","na":3,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF27429","LB_356"]]},{"id":"NCBITaxon:190655","l":"Legionella busanensis","na":1,"nb":3,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["TED%3AAF-A0A378JRR1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A378JRR1-F1-model_v4_TED01"],["TED%3AAF-A0A378JH21-F1-model_v4_TED02","TED novel fold AF-A0A378JH21-F1-model_v4_TED02"],["TED%3AAF-A0A378JIY5-F1-model_v4_TED01","TED novel fold AF-A0A378JIY5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1916082","l":"Alteromonadaceae bacterium","na":1,"nb":3,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2E5MKL5-F1-model_v4_TED03","TED novel fold AF-A0A2E5MKL5-F1-model_v4_TED03"],["TED%3AAF-A0A7Y6ZTD4-F1-model_v4_TED02","TED novel fold AF-A0A7Y6ZTD4-F1-model_v4_TED02"],["TED%3AAF-A0A7Y6ZTV9-F1-model_v4_TED01","TED novel fold AF-A0A7Y6ZTV9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1970199","l":"Sorangiineae bacterium NIC37A 2","na":1,"nb":3,"a":[["compost-envo-00002170.html","compost"]],"b":[["TED%3AAF-A0A1W9QHW9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W9QHW9-F1-model_v4_TED01"],["TED%3AAF-A0A1W9Q7E2-F1-model_v4_TED02","TED novel fold AF-A0A1W9Q7E2-F1-model_v4_TED02"],["TED%3AAF-A0A1W9QHC1-F1-model_v4_TED04","TED novel fold AF-A0A1W9QHC1-F1-model_v4_TED04"]]},{"id":"NCBITaxon:198804","l":"Buchnera aphidicola subsp. Schizaphis graminum (strain Sg)","na":1,"nb":3,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Pfam%3APF09849","Uncharacterized protein conserved in bacteria (DUF2076)"],["Pfam%3APF09976","Tetratricopeptide repeat-like domain"],["Pfam%3APF13371","Tetratricopeptide repeat"]]},{"id":"NCBITaxon:199","l":"Campylobacter concisus","na":1,"nb":3,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["TED%3AAF-A0A7S9RBE4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S9RBE4-F1-model_v4_TED03"],["TED%3AAF-A0A1Y5MKZ8-F1-model_v4_TED01","TED novel fold AF-A0A1Y5MKZ8-F1-model_v4_TED01"],["TED%3AAF-A0A7S9X6B9-F1-model_v4_TED01","TED novel fold AF-A0A7S9X6B9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:216816","l":"Bifidobacterium longum","na":3,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"],["egg-food-product-foodon-00001274.html","egg food product"],["juvenile-bto-0002168.html","juvenile"]],"b":[["TED%3AAF-A0A413ACI9-F1-model_v4_TED01","TED novel fold AF-A0A413ACI9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2283","l":"Acidianus ambivalens","na":1,"nb":3,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["Pfam%3APF07680","TQO small subunit DoxA"],["Pfam%3APF04173","TQO small subunit DoxD"],["TED%3AAF-O57695-F1-model_v4_TED01","TED highly-symmetric fold AF-O57695-F1-model_v4_TED01"]]},{"id":"NCBITaxon:228410","l":"Nitrosomonas europaea ATCC 19718","na":1,"nb":3,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["Pfam%3APF02461","Ammonia monooxygenase"],["Pfam%3APF13435","Cytochrome c554 and c-prime"],["TED%3AAF-Q82SR8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q82SR8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:232991","l":"Dulcicalothrix desertica PCC 7102","na":3,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"],["desert-area-envo-00000097.html","desert area"],["sand-envo-01000017.html","sand"]],"b":[["TED%3AAF-A0A433V699-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A433V699-F1-model_v4_TED01"]]},{"id":"NCBITaxon:235279","l":"Helicobacter hepaticus (strain ATCC 51449 / 3B1)","na":1,"nb":3,"a":[["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"]],"b":[["Pfam%3APF13673","Acetyltransferase (GNAT) domain"],["Pfam%3APF03498","Cytolethal distending toxin A/C domain"],["Pfam%3APF03352","Methyladenine glycosylase"]]},{"id":"NCBITaxon:2371","l":"Xylella fastidiosa","na":3,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"],["water-scum-envo-00005794.html","water scum"]],"b":[["TED%3AAF-A0A1L2B4G6-F1-model_v4_TED02","TED novel fold AF-A0A1L2B4G6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:243243","l":"Mycobacterium avium (strain 104)","na":1,"nb":3,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF13740","ACT domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03710","Glutamate-ammonia ligase adenylyltransferase"]]},{"id":"NCBITaxon:256","l":"Myroides odoratus","na":3,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"]],"b":[["TED%3AAF-A0A378RV66-F1-model_v4_TED01","TED novel fold AF-A0A378RV66-F1-model_v4_TED01"]]},{"id":"NCBITaxon:272560","l":"Burkholderia pseudomallei (strain K96243)","na":1,"nb":3,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF07077","Virulence factor BPSS1818"],["Pfam%3APF11958","Surface attachment protein BPSS1860"],["Pfam%3APF16374","Cycle inhibiting factor (CIF)"]]},{"id":"NCBITaxon:28090","l":"Acinetobacter lwoffii","na":3,"nb":1,"a":[["nectar-bto-0000537.html","nectar"],["pseudostem-bto-0005992.html","pseudostem"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["TED%3AAF-A0A7S9AAV2-F1-model_v4_TED01","TED novel fold AF-A0A7S9AAV2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28111","l":"Bacteroides eggerthii","na":1,"nb":3,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["TED%3AAF-A0A380YHG6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A380YHG6-F1-model_v4_TED01"],["TED%3AAF-A0A380YP67-F1-model_v4_TED01","TED novel fold AF-A0A380YP67-F1-model_v4_TED01"],["TED%3AAF-A0A414M8K0-F1-model_v4_TED04","TED novel fold AF-A0A414M8K0-F1-model_v4_TED04"]]},{"id":"NCBITaxon:290338","l":"Citrobacter koseri (strain ATCC BAA-895 / CDC 4225-83 / SGSC4696)","na":1,"nb":3,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Pfam%3APF03783","Curli production assembly/transport component CsgG"],["Pfam%3APF04269","Protein of unknown function, DUF440"],["Pfam%3APF17874","MalT-like TPR region"]]},{"id":"NCBITaxon:29466","l":"Veillonella parvula","na":3,"nb":1,"a":[["dental-plaque-bto-0000338.html","dental plaque"],["juvenile-bto-0002168.html","juvenile"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["TED%3AAF-A0A134BYG5-F1-model_v4_TED01","TED novel fold AF-A0A134BYG5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:297246","l":"Legionella pneumophila str. Paris","na":3,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"],["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["Pfam%3APF03445","Putative nucleotidyltransferase DUF294"]]},{"id":"NCBITaxon:312309","l":"","na":1,"nb":3,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["Pfam%3APF06610","L-alanine exporter"],["Pfam%3APF00765","Autoinducer synthase"],["PROSITE%3APS00949","Autoinducer synthase family signature"]]},{"id":"NCBITaxon:313589","l":"Janibacter sp. HTCC2649","na":3,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["bulk-soil-envo-00005802.html","bulk soil"],["orchard-envo-00000115.html","orchard"]],"b":[["TED%3AAF-A3TKC7-F1-model_v4_TED01","TED novel fold AF-A3TKC7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:313595","l":"Psychroflexus torquis ATCC 700755","na":3,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["coral-reef-envo-00000150.html","coral reef"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["TED%3AAF-K4IBR2-F1-model_v4_TED01","TED novel fold AF-K4IBR2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:315456","l":"Rickettsia felis (strain ATCC VR-1525 / URRWXCal2)","na":1,"nb":3,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["Pfam%3APF18324","Bacterial isocitrate dehydrogenase, C-terminal domain"],["Pfam%3APF11019","Protein of unknown function (DUF2608)"],["Pfam%3APF22203","Surface cell antigen Sca2 helical repeat"]]},{"id":"NCBITaxon:317655","l":"Sphingopyxis alaskensis RB2256","na":3,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["environmental-material-envo-00010483.html","environmental material"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["Pfam%3APF10755","Protein of unknown function (DUF2585)"]]},{"id":"NCBITaxon:321967","l":"Lacticaseibacillus paracasei (strain ATCC 334 / BCRC 17002 / CCUG 31169 / CIP 107868 / KCTC 3260 / NRRL B-441)","na":1,"nb":3,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["Pfam%3APF11975","Family 4 glycosyl hydrolase C-terminal domain"],["Pfam%3APF02056","Family 4 glycosyl hydrolase"],["PROSITE%3APS01324","Glycosyl hydrolases family 4 signature"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":1,"nb":3,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF22041","Glutathione S-transferase, C-terminal domain"],["Pfam%3APF08493","Aflatoxin regulatory protein"]]},{"id":"NCBITaxon:33959","l":"Lactobacillus johnsonii","na":3,"nb":1,"a":[["animal-litter-envo-00002191.html","animal litter"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["Pfam%3APF13518","Helix-turn-helix domain"]]},{"id":"NCBITaxon:349124","l":"Halorhodospira halophila (strain DSM 244 / SL1)","na":1,"nb":3,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["Pfam%3APF02639","Uncharacterized BCR, YaiI/YqxD family COG1671"],["Pfam%3APF20543","N2-fixation sustaining protein CowN"],["Pfam%3APF07311","Dodecin"]]},{"id":"NCBITaxon:349741","l":"Akkermansia muciniphila (strain ATCC BAA-835 / DSM 22959 / JCM 33894 / BCRC 81048 / CCUG 64013 / CIP 107961 / Muc)","na":1,"nb":3,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["Pfam%3APF23763","GLAA-B beta-barrel domain I"],["Pfam%3APF23764","GLAA-B beta-barrel domain II"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"]]},{"id":"NCBITaxon:357804","l":"Psychromonas ingrahamii (strain DSM 17664 / CCUG 51855 / 37)","na":1,"nb":3,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["Pfam%3APF27465","DNA-binding protein Fis N-terminal domain"],["Pfam%3APF04363","Protein of unknown function (DUF496)"],["Pfam%3APF18955","Domain of unknown function (DUF5698)"]]},{"id":"NCBITaxon:35816","l":"Pelobacter acidigallici","na":3,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["Pfam%3APF21423","Pyrogallol hydroxytransferase large subunit-like, domain 1"]]},{"id":"NCBITaxon:360807","l":"Roseburia inulinivorans","na":3,"nb":1,"a":[["pig-manure-envo-00003860.html","pig manure"],["tropical-envo-01000204.html","tropical"],["harbour-envo-00000463.html","harbour"]],"b":[["TED%3AAF-A0A173VWR5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A173VWR5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:367928","l":"Bifidobacterium adolescentis (strain ATCC 15703 / DSM 20083 / NCTC 11814 / E194a)","na":1,"nb":3,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["Pfam%3APF02156","Glycosyl hydrolase family 26"],["Pfam%3APF27512","LeuD_N"]]},{"id":"NCBITaxon:376686","l":"","na":1,"nb":3,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["Pfam%3APF17957","Bacterial Ig domain"],["Pfam%3APF24850","Bacillithiol biosynthesis BshC, C-terminal coiled-coil domain"],["Pfam%3APF14109","GldH lipoprotein"]]},{"id":"NCBITaxon:384616","l":"Pyrobaculum islandicum (strain DSM 4184 / JCM 9189 / GEO3)","na":1,"nb":3,"a":[["geothermal-power-plant-envo-00002215.html","geothermal power plant"]],"b":[["Pfam%3APF01941","S-adenosylmethionine synthetase (AdoMet synthetase)"],["Pfam%3APF11520","Chromatin protein Cren7"],["Pfam%3APF05167","Uncharacterised ACR (DUF711)"]]},{"id":"NCBITaxon:384676","l":"Pseudomonas entomophila L48","na":1,"nb":3,"a":[["coelom-bto-0001707.html","coelom"]],"b":[["Pfam%3APF18063","Beta barrel Pore-forming domain"],["Pfam%3APF08548","Peptidase M10 serralysin C terminal"],["TED%3AAF-Q1I2P2-F1-model_v4_TED01","TED novel fold AF-Q1I2P2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:399599","l":"Shewanella baltica (strain OS195)","na":1,"nb":3,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["Pfam%3APF24860","FdhE, C-terminal domain"],["Pfam%3APF24859","FdhE, central domain"],["Pfam%3APF04216","FdhE, N-terminal"]]},{"id":"NCBITaxon:399739","l":"Ectopseudomonas mendocina (strain ymp)","na":1,"nb":3,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["Pfam%3APF22289","Dimethylamine monooxygenase subunit DmmA-like, C-terminal domain"],["Pfam%3APF04359","Protein of unknown function (DUF493)"],["Pfam%3APF11927","Haem-dependent oxidative N-demethylase, alpha subunit-like"]]},{"id":"NCBITaxon:400682","l":"Amphimedon queenslandica","na":1,"nb":3,"a":[["germ-cell-bto-0000535.html","germ cell"]],"b":[["TED%3AAF-A0A1X7UW69-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X7UW69-F1-model_v4_TED01"],["TED%3AAF-A0A1X7SZW3-F1-model_v4_TED01","TED novel fold AF-A0A1X7SZW3-F1-model_v4_TED01"],["TED%3AAF-A0A1X7UQD3-F1-model_v4_TED02","TED novel fold AF-A0A1X7UQD3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:401053","l":"Terriglobus saanensis SP1PR4","na":3,"nb":1,"a":[["bulk-soil-envo-00005802.html","bulk soil"],["forested-area-envo-00000111.html","forested area"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-E8UZX5-F1-model_v4_TED02","TED novel fold AF-E8UZX5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:406547","l":"Rubripirellula obstinata","na":1,"nb":3,"a":[["epibiont-habitatmech-bacdive-f4eb470a03.html","Epibiont"]],"b":[["TED%3AAF-A0A5B1CJC2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B1CJC2-F1-model_v4_TED01"],["TED%3AAF-A0A5B1CQ78-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B1CQ78-F1-model_v4_TED01"],["TED%3AAF-A0A5B1CIN8-F1-model_v4_TED02","TED novel fold AF-A0A5B1CIN8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:419665","l":"Methanococcus aeolicus (strain ATCC BAA-1280 / DSM 17508 / OCM 812 / Nankai-3)","na":1,"nb":3,"a":[["shoreline-envo-00000486.html","shoreline"]],"b":[["Pfam%3APF26548","Putative peptidyl-prolyl cis-trans isomerase domain"],["Pfam%3APF06787","FeGP cofactor biosynthesis protein HcgF"],["Pfam%3APF01941","S-adenosylmethionine synthetase (AdoMet synthetase)"]]},{"id":"NCBITaxon:438","l":"Acetobacter pasteurianus","na":3,"nb":1,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"],["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["TED%3AAF-A0A1A0CE09-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1A0CE09-F1-model_v4_TED01"]]},{"id":"NCBITaxon:439292","l":"Bacillus selenitireducens (strain ATCC 700615 / DSM 15326 / MLS10)","na":1,"nb":3,"a":[["anaerobic-mud-envo-00002133.html","anaerobic mud"]],"b":[["Pfam%3APF03633","Glycosyl hydrolase family 65, C-terminal domain"],["Pfam%3APF03636","Glycosyl hydrolase family 65, N-terminal domain"],["Pfam%3APF03632","Glycosyl hydrolase family 65 central catalytic domain"]]},{"id":"NCBITaxon:439495","l":"Pseudovibrio sp. JE062","na":3,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["germ-cell-bto-0000535.html","germ cell"],["desert-sand-envo-00005800.html","desert sand"]],"b":[["TED%3AAF-B6R9T4-F1-model_v4_TED01","TED highly-symmetric fold AF-B6R9T4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:444158","l":"Methanococcus maripaludis (strain C6 / ATCC BAA-1332)","na":1,"nb":3,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["Pfam%3APF06847","Archaeal Peptidase A24 C-terminus Type II"],["Pfam%3APF09888","Uncharacterized protein conserved in archaea (DUF2115)"],["Pfam%3APF05165","GTP cyclohydrolase III"]]},{"id":"NCBITaxon:446465","l":"Brachybacterium faecium DSM 4810","na":3,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["poultry-deep-litter-envo-00003908.html","poultry deep litter"],["village-biome-envo-01000246.html","village biome"]],"b":[["TED%3AAF-C7MEJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-C7MEJ8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:448385","l":"","na":1,"nb":3,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["TED%3AAF-A9FYP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A9FYP8-F1-model_v4_TED01"],["TED%3AAF-A9G932-F1-model_v4_TED01","TED highly-symmetric fold AF-A9G932-F1-model_v4_TED01"],["TED%3AAF-A9F9E5-F1-model_v4_TED01","TED novel fold AF-A9F9E5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:45634","l":"Streptococcus cristatus","na":1,"nb":3,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["Pfam%3APF03486","HI0933-like protein Rossmann domain"],["Pfam%3APF22780","HI0933-like protein barrel and H2TH domain"],["TED%3AAF-A0A139N090-F1-model_v4_TED01","TED novel fold AF-A0A139N090-F1-model_v4_TED01"]]},{"id":"NCBITaxon:469371","l":"Thermobispora bispora DSM 43833","na":3,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["TED%3AAF-D6Y8C2-F1-model_v4_TED02","TED novel fold AF-D6Y8C2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:479431","l":"Nakamurella multipartita DSM 44233","na":3,"nb":1,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["TED%3AAF-C8XHD0-F1-model_v4_TED02","TED novel fold AF-C8XHD0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:51663","l":"Pediococcus damnosus","na":3,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["blast-cell-bto-0000125.html","blast cell"]],"b":[["TED%3AAF-A0A0R2HKY5-F1-model_v4_TED01","TED novel fold AF-A0A0R2HKY5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:530564","l":"Pirellula staleyi DSM 6068","na":3,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["agricultural-soil-envo-00002259.html","agricultural soil"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-D2QXI3-F1-model_v4_TED05","TED novel fold AF-D2QXI3-F1-model_v4_TED05"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":1,"nb":3,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"],["TED%3AAF-A0A7H8I034-F1-model_v4_TED01","TED novel fold AF-A0A7H8I034-F1-model_v4_TED01"]]},{"id":"NCBITaxon:554155","l":"Arthroderma otae (strain ATCC MYA-4605 / CBS 113480)","na":1,"nb":3,"a":[["mountain-pass-envo-00000084.html","mountain pass"]],"b":[["Pfam%3APF13560","Helix-turn-helix domain"],["TED%3AAF-C5FU25-F1-model_v4_TED01","TED novel fold AF-C5FU25-F1-model_v4_TED01"],["TED%3AAF-C5FXD7-F1-model_v4_TED05","TED novel fold AF-C5FXD7-F1-model_v4_TED05"]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":1,"nb":3,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"],["PROSITE%3APS00896","LacY family proton/sugar symporters signature 1"],["PROSITE%3APS00897","LacY family proton/sugar symporters signature 2"]]},{"id":"NCBITaxon:573064","l":"Methanocaldococcus fervens AG86","na":3,"nb":1,"a":[["inlet-envo-00000475.html","inlet"],["shoreline-envo-00000486.html","shoreline"],["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["Pfam%3APF02655","ATP-grasp domain"]]},{"id":"NCBITaxon:578458","l":"Schizophyllum commune (strain H4-8 / FGSC 9210)","na":1,"nb":3,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["TED%3AAF-D8PNC3-F1-model_v4_TED01","TED novel fold AF-D8PNC3-F1-model_v4_TED01"],["TED%3AAF-D8QDU6-F1-model_v4_TED02","TED novel fold AF-D8QDU6-F1-model_v4_TED02"],["TED%3AAF-D8QJK2-F1-model_v4_TED01","TED novel fold AF-D8QJK2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:584","l":"Proteus mirabilis","na":1,"nb":3,"a":[["salivary-gland-bto-0001203.html","salivary gland"]],"b":[["Pfam%3APF05280","Flagellar transcriptional activator (FlhC)"],["TED%3AAF-A0A1Z1SXV6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z1SXV6-F1-model_v4_TED01"],["TED%3AAF-A0A7U1CMJ9-F1-model_v4_TED01","TED novel fold AF-A0A7U1CMJ9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:588","l":"Providencia stuartii","na":1,"nb":3,"a":[["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["PROSITE%3APS01157","Class A bacterial acid phosphatases signature"]]},{"id":"NCBITaxon:644282","l":"Desulfarculus baarsii (strain ATCC 33931 / DSM 2075 / LMG 7858 / VKM B-1802 / 2st14)","na":1,"nb":3,"a":[["ditch-envo-00000037.html","ditch"]],"b":[["Pfam%3APF06397","Desulfoferrodoxin, N-terminal domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["TED%3AAF-E1QLH8-F1-model_v4_TED02","TED novel fold AF-E1QLH8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:658457","l":"Ectopseudomonas composti","na":3,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["TED%3AAF-A0A1I5P4N2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5P4N2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:666681","l":"Methylotenera versatilis 301","na":3,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["environmental-material-envo-00010483.html","environmental material"],["river-bed-envo-00000384.html","river bed"]],"b":[["TED%3AAF-D7DL14-F1-model_v4_TED01","TED novel fold AF-D7DL14-F1-model_v4_TED01"]]},{"id":"NCBITaxon:66711","l":"Escherichia phage AR1","na":1,"nb":3,"a":[["fiber-bto-0000450.html","fiber"]],"b":[["Pfam%3APF21721","Phage tail fibre adhesin Gp38 N-terminal domain"],["Pfam%3APF05268","Phage tail fibre adhesin Gp38"],["Pfam%3APF21446","Long-tail fiber proximal subunit, C-terminal, trimerization domain"]]},{"id":"NCBITaxon:688270","l":"Cellulophaga algicola (strain DSM 14237 / IC166 / ACAM 630)","na":1,"nb":3,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["TED%3AAF-E6XBJ1-F1-model_v4_TED01","TED highly-symmetric fold AF-E6XBJ1-F1-model_v4_TED01"],["TED%3AAF-E6X960-F1-model_v4_TED02","TED novel fold AF-E6X960-F1-model_v4_TED02"],["TED%3AAF-E6XEV2-F1-model_v4_TED02","TED novel fold AF-E6XEV2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:69293","l":"Gasterosteus aculeatus","na":3,"nb":1,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"],["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["TED%3AAF-G3Q6M8-F1-model_v4_TED01","TED novel fold AF-G3Q6M8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:715","l":"Actinobacillus pleuropneumoniae","na":1,"nb":3,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["Pfam%3APF26002","AprE-like, beta-barrel domain"],["Pfam%3APF02794","RTX toxin acyltransferase family"],["PROSITE%3APS00543","HlyD family secretion proteins signature"]]},{"id":"NCBITaxon:7176","l":"Culex quinquefasciatus","na":1,"nb":3,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["TED%3AAF-B0W7X4-F1-model_v4_TED04","TED highly-symmetric fold AF-B0W7X4-F1-model_v4_TED04"],["TED%3AAF-B0WQL7-F1-model_v4_TED02","TED highly-symmetric fold AF-B0WQL7-F1-model_v4_TED02"],["TED%3AAF-B0XLK9-F1-model_v4_TED05","TED highly-symmetric fold AF-B0XLK9-F1-model_v4_TED05"]]},{"id":"NCBITaxon:729","l":"Haemophilus parainfluenzae","na":3,"nb":1,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"],["tropical-envo-01000204.html","tropical"]],"b":[["Pfam%3APF04480","Protein of unknown function (DUF559)"]]},{"id":"NCBITaxon:749414","l":"","na":1,"nb":3,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF14509","Glycosyl-hydrolase 97 C-terminal, oligomerisation"],["Pfam%3APF14508","Glycosyl-hydrolase 97 N-terminal"],["Pfam%3APF10566","Glycoside hydrolase 97"]]},{"id":"NCBITaxon:79880","l":"Shouchella clausii","na":1,"nb":3,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["Pfam%3APF13536","Putative multidrug resistance efflux transporter"],["Pfam%3APF10776","Protein of unknown function (DUF2600)"],["TED%3AAF-A0A268NXB1-F1-model_v4_TED01","TED novel fold AF-A0A268NXB1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:83655","l":"Leclercia adecarboxylata","na":3,"nb":1,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["TED%3AAF-A0A5B7XGB6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A5B7XGB6-F1-model_v4_TED04"]]},{"id":"NCBITaxon:886293","l":"Singulisphaera acidiphila (strain ATCC BAA-1392 / DSM 18658 / VKM B-2454 / MOB10)","na":1,"nb":3,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-L0DF60-F1-model_v4_TED01","TED highly-symmetric fold AF-L0DF60-F1-model_v4_TED01"],["TED%3AAF-L0DFV3-F1-model_v4_TED01","TED highly-symmetric fold AF-L0DFV3-F1-model_v4_TED01"],["TED%3AAF-L0DBJ5-F1-model_v4_TED02","TED novel fold AF-L0DBJ5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:91360","l":"Desulforhopalus singaporensis","na":3,"nb":1,"a":[["marsh-envo-00000035.html","marsh"],["road-envo-00000064.html","road"],["garden-envo-00000011.html","garden"]],"b":[["TED%3AAF-A0A1H0QB18-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H0QB18-F1-model_v4_TED01"]]},{"id":"NCBITaxon:996","l":"Flavobacterium columnare","na":1,"nb":3,"a":[["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["TED%3AAF-A0A4Z0FEB3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Z0FEB3-F1-model_v4_TED02"],["TED%3AAF-A0A2N9P872-F1-model_v4_TED02","TED novel fold AF-A0A2N9P872-F1-model_v4_TED02"],["TED%3AAF-A0A2T4HIF9-F1-model_v4_TED03","TED novel fold AF-A0A2T4HIF9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1002340","l":"Leisingera sp. ANG1","na":2,"nb":1,"a":[["gland-bto-0000522.html","gland"],["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["TED%3AAF-A0A0B4EI55-F1-model_v4_TED01","TED novel fold AF-A0A0B4EI55-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1004304","l":"Hydrotalea sandarakina","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["island-envo-00000098.html","island"]],"b":[["TED%3AAF-A0A2W7RGM4-F1-model_v4_TED03","TED novel fold AF-A0A2W7RGM4-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1005043","l":"Candidatus Regiella insecticola 5.15","na":1,"nb":2,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["TED%3AAF-G2H098-F1-model_v4_TED01","TED highly-symmetric fold AF-G2H098-F1-model_v4_TED01"],["TED%3AAF-G2H102-F1-model_v4_TED04","TED novel fold AF-G2H102-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1006155","l":"Paenilisteria weihenstephanensis","na":2,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["TED%3AAF-A0A1S7FXD4-F1-model_v4_TED02","TED novel fold AF-A0A1S7FXD4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1007676","l":"Companilactobacillus ginsenosidimutans","na":2,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["TED%3AAF-A0A0H4QHM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0H4QHM6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1028307","l":"","na":1,"nb":2,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["Pfam%3APF16031","TonB polyproline region"],["Pfam%3APF09078","CheY binding"]]},{"id":"NCBITaxon:1031537","l":"Bremerella cremea","na":2,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"],["carcass-envo-00002033.html","carcass"]],"b":[["TED%3AAF-A0A368KQM2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A368KQM2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1033810","l":"Haloplasma contractile SSD-17B","na":1,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["TED%3AAF-F7PZK9-F1-model_v4_TED01","TED highly-symmetric fold AF-F7PZK9-F1-model_v4_TED01"],["TED%3AAF-U2EDU2-F1-model_v4_TED03","TED novel fold AF-U2EDU2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1034943","l":"Legionella massiliensis","na":1,"nb":2,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["TED%3AAF-A0A078KZR2-F1-model_v4_TED02","TED novel fold AF-A0A078KZR2-F1-model_v4_TED02"],["TED%3AAF-A0A078L1Y9-F1-model_v4_TED02","TED novel fold AF-A0A078L1Y9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1042","l":"Erythrobacter sp.","na":2,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A6G9N8S4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6G9N8S4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1045004","l":"Oenococcus kitaharae DSM 17330","na":2,"nb":1,"a":[["compost-envo-00002170.html","compost"],["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["TED%3AAF-G9WIN5-F1-model_v4_TED02","TED highly-symmetric fold AF-G9WIN5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1048394","l":"Compostimonas suwonensis","na":2,"nb":1,"a":[["agricultural-waste-material-envo-01000371.html","agricultural waste material"],["waste-material-envo-00002264.html","waste material"]],"b":[["TED%3AAF-A0A2M9BCH6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2M9BCH6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1048689","l":"","na":1,"nb":2,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["Pfam%3APF28043","Anti-phage protein KwaA"],["Pfam%3APF16162","Kiwa protein KwaB-like"]]},{"id":"NCBITaxon:108981","l":"Acinetobacter schindleri","na":2,"nb":1,"a":[["gut-bto-0000545.html","gut"],["skin-bto-0001253.html","skin"]],"b":[["TED%3AAF-A0A855WCB4-F1-model_v4_TED02","TED novel fold AF-A0A855WCB4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1096246","l":"Hungatella effluvii","na":2,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["environmental-system-envo-01000254.html","environmental system"]],"b":[["TED%3AAF-A0A2V3YBX4-F1-model_v4_TED02","TED novel fold AF-A0A2V3YBX4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1114856","l":"","na":2,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"],["sediment-envo-00002007.html","sediment"]],"b":[["TED%3AAF-L9VUV1-F1-model_v4_TED01","TED novel fold AF-L9VUV1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1120918","l":"Acetitomaculum ruminis DSM 5522","na":2,"nb":1,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["TED%3AAF-A0A1I1ATM7-F1-model_v4_TED01","TED novel fold AF-A0A1I1ATM7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1120923","l":"Acidocella aminolytica 101 = DSM 11237","na":2,"nb":1,"a":[["mine-envo-00000076.html","mine"],["rock-envo-00001995.html","rock"]],"b":[["TED%3AAF-A0A0D6PBP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D6PBP8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121022","l":"Asticcacaulis benevestitus DSM 16100 = ATCC BAA-896","na":2,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["TED%3AAF-V4PT21-F1-model_v4_TED01","TED highly-symmetric fold AF-V4PT21-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121270","l":"","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["peninsula-envo-00000305.html","peninsula"]],"b":[["TED%3AAF-A0A1T4LMW3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1T4LMW3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1121279","l":"Chitinimonas taiwanensis DSM 18899","na":1,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"]],"b":[["TED%3AAF-A0A1K2HNH6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1K2HNH6-F1-model_v4_TED02"],["TED%3AAF-A0A1K2HS13-F1-model_v4_TED04","TED novel fold AF-A0A1K2HS13-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1121405","l":"Desulfococcus multivorans DSM 2059","na":2,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"],["sludge-envo-00002044.html","sludge"]],"b":[["TED%3AAF-S7VDW8-F1-model_v4_TED02","TED highly-symmetric fold AF-S7VDW8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1121419","l":"Desulfosporosinus hippei DSM 8344","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["TED%3AAF-A0A1G8D348-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G8D348-F1-model_v4_TED01"],["TED%3AAF-A0A1G8CVS7-F1-model_v4_TED01","TED novel fold AF-A0A1G8CVS7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121448","l":"","na":2,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["primordium-bto-0001886.html","primordium"]],"b":[["Pfam%3APF12139","Adenosine-5'-phosphosulfate reductase beta subunit"]]},{"id":"NCBITaxon:1121868","l":"Enterovibrio nigricans DSM 22720","na":1,"nb":2,"a":[["mediterranean-envo-01000207.html","mediterranean"]],"b":[["TED%3AAF-A0A1T4UXP3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1T4UXP3-F1-model_v4_TED01"],["TED%3AAF-A0A1T4VT23-F1-model_v4_TED01","TED novel fold AF-A0A1T4VT23-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121915","l":"Geoalkalibacter ferrihydriticus DSM 17813","na":2,"nb":1,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["TED%3AAF-A0A0C2HTA4-F1-model_v4_TED03","TED novel fold AF-A0A0C2HTA4-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1121955","l":"Hymenobacter daecheongensis DSM 21074","na":1,"nb":2,"a":[["dam-envo-00000074.html","dam"]],"b":[["TED%3AAF-A0A1M6EGP6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M6EGP6-F1-model_v4_TED02"],["TED%3AAF-A0A1M6M5E1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M6M5E1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1123071","l":"Rubritalea squalenifaciens DSM 18772","na":2,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"],["peninsula-envo-00000305.html","peninsula"]],"b":[["TED%3AAF-A0A1M6J7A4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M6J7A4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1124743","l":"Kribbella soli","na":2,"nb":1,"a":[["park-envo-00000562.html","park"],["forest-biome-envo-01000174.html","forest biome"]],"b":[["TED%3AAF-A0A4Q7WU76-F1-model_v4_TED01","TED novel fold AF-A0A4Q7WU76-F1-model_v4_TED01"]]},{"id":"NCBITaxon:113653","l":"Geoglobus ahangari","na":1,"nb":2,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["TED%3AAF-A0A7J3TIF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J3TIF4-F1-model_v4_TED01"],["TED%3AAF-A0A0F7ID24-F1-model_v4_TED02","TED novel fold AF-A0A0F7ID24-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1150298","l":"Fusicatenibacter saccharivorans","na":1,"nb":2,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["TED%3AAF-A0A174K1Z5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A174K1Z5-F1-model_v4_TED01"],["TED%3AAF-A0A174J3Q6-F1-model_v4_TED01","TED novel fold AF-A0A174J3Q6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1153","l":"Pseudanabaena sp.","na":1,"nb":2,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"]],"b":[["TED%3AAF-A0A2W6YPX5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W6YPX5-F1-model_v4_TED01"],["TED%3AAF-A0A2W7B262-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W7B262-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1165092","l":"Lachnospiraceae bacterium JC7","na":1,"nb":2,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["TED%3AAF-W3AP45-F1-model_v4_TED03","TED highly-symmetric fold AF-W3AP45-F1-model_v4_TED03"],["TED%3AAF-W3ATW4-F1-model_v4_TED02","TED highly-symmetric fold AF-W3ATW4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1166078","l":"Aureimonas phyllosphaerae","na":2,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["TED%3AAF-A0A7W6FW33-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W6FW33-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1172204","l":"","na":1,"nb":2,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["TED%3AAF-A0A446IBF2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A446IBF2-F1-model_v4_TED01"],["TED%3AAF-A0A446ICV2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A446ICV2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1190417","l":"Geodermatophilus telluris","na":2,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"],["sand-envo-01000017.html","sand"]],"b":[["TED%3AAF-A0A1G6L8J2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G6L8J2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1192854","l":"Granulosicoccus antarcticus IMCC3135","na":1,"nb":2,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["TED%3AAF-A0A2Z2NPF3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2Z2NPF3-F1-model_v4_TED03"],["TED%3AAF-A0A2Z2P0Z5-F1-model_v4_TED01","TED novel fold AF-A0A2Z2P0Z5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:119641","l":"Clostridium uliginosum","na":1,"nb":2,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["TED%3AAF-A0A1I1R8X9-F1-model_v4_TED03","TED novel fold AF-A0A1I1R8X9-F1-model_v4_TED03"],["TED%3AAF-A0A1I1S8C7-F1-model_v4_TED03","TED novel fold AF-A0A1I1S8C7-F1-model_v4_TED03"]]},{"id":"NCBITaxon:121719","l":"Pannonibacter phragmitetus","na":2,"nb":1,"a":[["nectar-bto-0000537.html","nectar"],["style-bto-0001313.html","style"]],"b":[["TED%3AAF-A0A0U3EPB7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0U3EPB7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1284","l":"Staphylococcus hyicus","na":1,"nb":2,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["Pfam%3APF04650","YSIRK type signal peptide"],["PROSITE%3APS01123","Thermonuclease family signature 1"]]},{"id":"NCBITaxon:1286","l":"Staphylococcus simulans","na":2,"nb":1,"a":[["animal-house-envo-00003040.html","animal house"],["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["Pfam%3APF25533","Lysostaphin, N-terminal domain"]]},{"id":"NCBITaxon:1290","l":"Staphylococcus hominis","na":2,"nb":1,"a":[["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"]],"b":[["TED%3AAF-A0A6N0I1N0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N0I1N0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1341154","l":"Flavobacterium cauense R2A-7","na":1,"nb":2,"a":[["lake-envo-00000020.html","lake"]],"b":[["TED%3AAF-V6RYF5-F1-model_v4_TED01","TED novel fold AF-V6RYF5-F1-model_v4_TED01"],["TED%3AAF-V6S0E8-F1-model_v4_TED02","TED novel fold AF-V6S0E8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:134537","l":"Paraburkholderia fungorum","na":1,"nb":2,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["TED%3AAF-A0A1H1IH55-F1-model_v4_TED01","TED novel fold AF-A0A1H1IH55-F1-model_v4_TED01"],["TED%3AAF-A0A2N8QLD6-F1-model_v4_TED03","TED novel fold AF-A0A2N8QLD6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:13689","l":"Sphingomonas paucimobilis","na":2,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"]],"b":[["PROSITE%3APS00082","Extradiol ring-cleavage dioxygenases signature"]]},{"id":"NCBITaxon:138074","l":"Serratia symbiotica","na":2,"nb":1,"a":[["intestine-bto-0000648.html","intestine"],["pseudostem-bto-0005992.html","pseudostem"]],"b":[["TED%3AAF-A0A068YYP3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A068YYP3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1385511","l":"Pontibacillus marinus BH030004 = DSM 16465","na":2,"nb":1,"a":[["pond-envo-00000033.html","pond"],["saline-evaporation-pond-envo-00000055.html","saline evaporation pond"]],"b":[["TED%3AAF-A0A0A5GIK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A5GIK2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1408281","l":"Endomicrobium proavitum","na":2,"nb":1,"a":[["flagellate-bto-0000464.html","flagellate"],["larva-bto-0000707.html","larva"]],"b":[["TED%3AAF-A0A0G3WK72-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G3WK72-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1427370","l":"Chlamydia pecorum DBDeUG","na":2,"nb":1,"a":[["conjunctiva-bto-0003415.html","conjunctiva"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["TED%3AAF-V8TRT3-F1-model_v4_TED01","TED highly-symmetric fold AF-V8TRT3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1465","l":"Brevibacillus laterosporus","na":2,"nb":1,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["TED%3AAF-A0A0F7BZ24-F1-model_v4_TED01","TED novel fold AF-A0A0F7BZ24-F1-model_v4_TED01"]]},{"id":"NCBITaxon:146919","l":"Salinibacter ruber","na":2,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["TED%3AAF-A0A840D6P8-F1-model_v4_TED02","TED novel fold AF-A0A840D6P8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["PROSITE%3APS01120","Urease nickel ligands signature"],["PROSITE%3APS00145","Urease active site"]]},{"id":"NCBITaxon:1490","l":"Paraclostridium bifermentans","na":2,"nb":1,"a":[["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"],["harbour-envo-00000463.html","harbour"]],"b":[["TED%3AAF-A0A5P3XDT9-F1-model_v4_TED01","TED novel fold AF-A0A5P3XDT9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1494","l":"Clostridium cochlearium","na":2,"nb":1,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"]],"b":[["TED%3AAF-A0A7Y3V7F0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y3V7F0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1509","l":"Clostridium sporogenes","na":2,"nb":1,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["Pfam%3APF06050","2-hydroxyglutaryl-CoA dehydratase, D-component"]]},{"id":"NCBITaxon:1553448","l":"","na":1,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["TED%3AAF-A0A444M931-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A444M931-F1-model_v4_TED02"],["TED%3AAF-A0A444ME17-F1-model_v4_TED01","TED novel fold AF-A0A444ME17-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1578720","l":"Helicobacter ailurogastricus","na":2,"nb":1,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["mycosis-habitatmech-bacdive-6d5784a4c5.html","Mycosis"]],"b":[["TED%3AAF-A0A0K2X3G5-F1-model_v4_TED01","TED novel fold AF-A0A0K2X3G5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:158500","l":"Novosphingobium resinovorum","na":1,"nb":2,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A031JQ90-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A031JQ90-F1-model_v4_TED01"],["TED%3AAF-A0A031JQV5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A031JQV5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:158836","l":"Enterobacter hormaechei","na":1,"nb":2,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["TED%3AAF-A0A431SE22-F1-model_v4_TED01","TED novel fold AF-A0A431SE22-F1-model_v4_TED01"],["TED%3AAF-A0A8B5ZRS3-F1-model_v4_TED01","TED novel fold AF-A0A8B5ZRS3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1612308","l":"Methylocapsa palsarum","na":1,"nb":2,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["TED%3AAF-A0A1I4BSR3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I4BSR3-F1-model_v4_TED02"],["TED%3AAF-A0A1I3X4Y4-F1-model_v4_TED01","TED novel fold AF-A0A1I3X4Y4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:164756","l":"Mycobacterium sp. MCS","na":2,"nb":1,"a":[["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["TED%3AAF-A0A5Q5BFH8-F1-model_v4_TED01","TED novel fold AF-A0A5Q5BFH8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:167968","l":"uncultured Desulfovibrio sp.","na":1,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["TED%3AAF-A0A212J776-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A212J776-F1-model_v4_TED02"],["TED%3AAF-A0A212L6P7-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A212L6P7-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":2,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["TED%3AAF-A0A415C3I8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A415C3I8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:168471","l":"Laribacter hongkongensis","na":2,"nb":1,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"]],"b":[["TED%3AAF-A0A248LK09-F1-model_v4_TED01","TED novel fold AF-A0A248LK09-F1-model_v4_TED01"]]},{"id":"NCBITaxon:169679","l":"Clostridium saccharobutylicum","na":2,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"]],"b":[["Pfam%3APF13290","Chitobiase/beta-hexosaminidase C-terminal domain"]]},{"id":"NCBITaxon:1797191","l":"","na":1,"nb":2,"a":[["loam-envo-00002258.html","loam"]],"b":[["TED%3AAF-A0A1F2TD39-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F2TD39-F1-model_v4_TED01"],["TED%3AAF-A0A1F2TJD6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F2TJD6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1798213","l":"Pseudovibrio sp. Tun.PSC04-5.I4","na":2,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["peninsula-envo-00000305.html","peninsula"]],"b":[["TED%3AAF-A0A1H1I1X9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H1I1X9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1873897","l":"Cupriavidus sp.","na":2,"nb":1,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["TED%3AAF-A0A352SA47-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A352SA47-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1895664","l":"Halanaerobium sp.","na":1,"nb":2,"a":[["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["TED%3AAF-A0A315QT49-F1-model_v4_TED03","TED novel fold AF-A0A315QT49-F1-model_v4_TED03"],["TED%3AAF-A0A315R434-F1-model_v4_TED03","TED novel fold AF-A0A315R434-F1-model_v4_TED03"]]},{"id":"NCBITaxon:189918","l":"Mycobacterium sp. KMS","na":2,"nb":1,"a":[["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"],["mountain-pass-envo-00000084.html","mountain pass"]],"b":[["Pfam%3APF06339","Ectoine synthase"]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":2,"nb":1,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Pfam%3APF26312","Domain of unknown function (DUF8083)"]]},{"id":"NCBITaxon:193","l":"Azospirillum lipoferum","na":2,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"]],"b":[["TED%3AAF-A0A1X7MZF1-F1-model_v4_TED02","TED novel fold AF-A0A1X7MZF1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1932","l":"Streptomyces tendae","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["Pfam%3APF01356","Alpha amylase inhibitor"]]},{"id":"NCBITaxon:1938","l":"Streptomyces viridochromogenes","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["Pfam%3APF11599","RRNA methyltransferase AviRa"]]},{"id":"NCBITaxon:2024855","l":"Rhodopirellula sp.","na":1,"nb":2,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A2E0S8K6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0S8K6-F1-model_v4_TED01"],["TED%3AAF-A0A358MZ88-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A358MZ88-F1-model_v4_TED03"]]},{"id":"NCBITaxon:2026725","l":"Chromatiales bacterium","na":1,"nb":2,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A520X6H8-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A520X6H8-F1-model_v4_TED05"],["TED%3AAF-A0A7C2AIC9-F1-model_v4_TED02","TED novel fold AF-A0A7C2AIC9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:208962","l":"Escherichia albertii","na":1,"nb":2,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["Pfam%3APF18134","Adenylyl/Guanylyl and SMODS C-terminal sensor domain"],["Pfam%3APF18153","Cap15, cyclic dinucleotide receptor domain"]]},{"id":"NCBITaxon:2100533","l":"Sphingobacterium haloxyli","na":1,"nb":2,"a":[["endosphere-habitatmech-bacdive-3e4680f074.html","Endosphere"]],"b":[["TED%3AAF-A0A2S9J8F0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S9J8F0-F1-model_v4_TED01"],["TED%3AAF-A0A2S9J915-F1-model_v4_TED02","TED novel fold AF-A0A2S9J915-F1-model_v4_TED02"]]},{"id":"NCBITaxon:213224","l":"Geothermobacter ehrlichii","na":2,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["seamount-envo-00000264.html","seamount"]],"b":[["TED%3AAF-A0A5D3WPY1-F1-model_v4_TED02","TED novel fold AF-A0A5D3WPY1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2162","l":"Methanobacterium formicicum","na":1,"nb":2,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Pfam%3APF04432","Coenzyme F420 hydrogenase/dehydrogenase, beta subunit C terminus"],["Pfam%3APF04422","Coenzyme F420 hydrogenase/dehydrogenase, beta subunit N-term"]]},{"id":"NCBITaxon:2183985","l":"Halomonas sp. A11-A","na":2,"nb":1,"a":[["ocean-trench-envo-00000275.html","ocean trench"],["trough-envo-00000499.html","trough"]],"b":[["TED%3AAF-A0A317P655-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A317P655-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2208","l":"Methanosarcina barkeri","na":2,"nb":1,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["sludge-envo-00002044.html","sludge"]],"b":[["Pfam%3APF09505","Dimethylamine methyltransferase (Dimeth_PyL)"]]},{"id":"NCBITaxon:2223","l":"Methanothrix soehngenii","na":1,"nb":2,"a":[["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"],["TED%3AAF-A0A7K4AJW5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K4AJW5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:226506","l":"Algoriphagus ornithinivorans","na":2,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"],["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["TED%3AAF-A0A1I5CGG6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5CGG6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2292705","l":"Paenibacillus paeoniae","na":2,"nb":1,"a":[["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["TED%3AAF-A0A371PIW4-F1-model_v4_TED01","TED novel fold AF-A0A371PIW4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:238540","l":"Algoriphagus antarcticus","na":2,"nb":1,"a":[["hill-envo-00000083.html","hill"],["seamount-envo-00000264.html","seamount"]],"b":[["TED%3AAF-A0A3E0D6W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3E0D6W3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:244366","l":"Klebsiella variicola","na":2,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["TED%3AAF-A0A2N4Z4E2-F1-model_v4_TED01","TED novel fold AF-A0A2N4Z4E2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:245188","l":"Yoonia vestfoldensis","na":2,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["sandstone-envo-00002055.html","sandstone"]],"b":[["TED%3AAF-A0A1Y0EB74-F1-model_v4_TED01","TED novel fold AF-A0A1Y0EB74-F1-model_v4_TED01"]]},{"id":"NCBITaxon:246200","l":"Ruegeria pomeroyi DSS-3","na":1,"nb":2,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["Pfam%3APF16867","Dimethlysulfonioproprionate lyase"],["Pfam%3APF09347","Domain of unknown function (DUF1989)"]]},{"id":"NCBITaxon:2485163","l":"","na":1,"nb":2,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["TED%3AAF-A0A4R7A0H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R7A0H4-F1-model_v4_TED01"],["TED%3AAF-A0A4R7AGM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R7AGM3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2547395","l":"Paenibacillus piri","na":1,"nb":2,"a":[["transportation-ways-roads-habitatmech-bacdive-1b4071cb1d.html","Transportation-ways-Roads"]],"b":[["TED%3AAF-A0A4V2ZS36-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A4V2ZS36-F1-model_v4_TED03"],["TED%3AAF-A0A4R5KXP2-F1-model_v4_TED02","TED novel fold AF-A0A4R5KXP2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:262543","l":"","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["Pfam%3APF06335","Domain of unknown function (DUF1054)"],["Pfam%3APF11023","Zinc-ribbon containing domain"]]},{"id":"NCBITaxon:269482","l":"Burkholderia vietnamiensis G4","na":2,"nb":1,"a":[["air-envo-00002005.html","air"],["human-construction-envo-00000070.html","human construction"]],"b":[["TED%3AAF-A4JWD8-F1-model_v4_TED01","TED novel fold AF-A4JWD8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:279714","l":"Pseudogulbenkiania ferrooxidans 2002","na":2,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["pond-water-envo-00002228.html","pond water"]],"b":[["TED%3AAF-B9Z3M4-F1-model_v4_TED02","TED novel fold AF-B9Z3M4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:28087","l":"Legionella sainthelensi","na":1,"nb":2,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["TED%3AAF-A0A3S4I5M7-F1-model_v4_TED01","TED novel fold AF-A0A3S4I5M7-F1-model_v4_TED01"],["TED%3AAF-A0A447STS7-F1-model_v4_TED04","TED novel fold AF-A0A447STS7-F1-model_v4_TED04"]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["Pfam%3APF21252","Glycosyl hydrolase 109, C-terminal domain"],["TED%3AAF-A0A3P1YJQ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3P1YJQ6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28128","l":"Prevotella corporis","na":2,"nb":1,"a":[["environmental-feature-envo-00002297.html","environmental feature"],["harbour-envo-00000463.html","harbour"]],"b":[["TED%3AAF-A0A133Q582-F1-model_v4_TED02","TED novel fold AF-A0A133Q582-F1-model_v4_TED02"]]},{"id":"NCBITaxon:28183","l":"Leptospira santarosai","na":2,"nb":1,"a":[["kidney-bto-0000671.html","kidney"],["liver-bto-0000759.html","liver"]],"b":[["TED%3AAF-A0A2P1QYQ7-F1-model_v4_TED01","TED novel fold AF-A0A2P1QYQ7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:282199","l":"Nereida ignava","na":2,"nb":1,"a":[["sandstone-envo-00002055.html","sandstone"],["bile-bto-0000121.html","bile"]],"b":[["TED%3AAF-A0A0U1NPS2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0U1NPS2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:29017","l":"Cyriopagopus schmidti","na":2,"nb":1,"a":[["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["PROSITE%3APS60021","Huwentoxin-1 family signature"]]},{"id":"NCBITaxon:290339","l":"","na":1,"nb":2,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Pfam%3APF06610","L-alanine exporter"],["Pfam%3APF10796","Sigma-S stabilisation anti-adaptor protein"]]},{"id":"NCBITaxon:292415","l":"Thiobacillus denitrificans ATCC 25259","na":2,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["river-bed-envo-00000384.html","river bed"]],"b":[["Pfam%3APF06804","Outer membrane protein assembly factor BamC-like C-terminal domain"]]},{"id":"NCBITaxon:292459","l":"","na":1,"nb":2,"a":[["compost-envo-00002170.html","compost"]],"b":[["PROSITE%3APS00853","Beta-eliminating lyases pyridoxal-phosphate attachment site"],["TED%3AAF-Q67TA8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q67TA8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:29320","l":"Paenarthrobacter nicotinovorans","na":1,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["Pfam%3APF22607","FAD binding domain-like"],["Pfam%3APF06500","Esterase FrsA-like"]]},{"id":"NCBITaxon:29488","l":"Photorhabdus luminescens","na":1,"nb":2,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["Pfam%3APF02273","Acyl transferase"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"]]},{"id":"NCBITaxon:29491","l":"Aeromonas salmonicida subsp. salmonicida","na":1,"nb":2,"a":[["liver-bto-0000759.html","liver"]],"b":[["TED%3AAF-A0A189PGR3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A189PGR3-F1-model_v4_TED01"],["TED%3AAF-A0A0F6QDS7-F1-model_v4_TED02","TED novel fold AF-A0A0F6QDS7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:29522","l":"Brachyspira aalborgi","na":1,"nb":2,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["TED%3AAF-A0A5C8E3N2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C8E3N2-F1-model_v4_TED01"],["TED%3AAF-A0A5C8E9C6-F1-model_v4_TED01","TED novel fold AF-A0A5C8E9C6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:29559","l":"Metamycoplasma hyosynoviae","na":1,"nb":2,"a":[["joint-bto-0001686.html","joint"]],"b":[["TED%3AAF-A0A063YD07-F1-model_v4_TED02","TED novel fold AF-A0A063YD07-F1-model_v4_TED02"],["TED%3AAF-A0A4R7TZF5-F1-model_v4_TED02","TED novel fold AF-A0A4R7TZF5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:298386","l":"Photobacterium profundum SS9","na":2,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["underground-water-envo-00005792.html","underground water"]],"b":[["Pfam%3APF12558","ATP-binding cassette cobalt transporter"]]},{"id":"NCBITaxon:304371","l":"Methanocella paludicola SANAE","na":2,"nb":1,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["TED%3AAF-D1Z063-F1-model_v4_TED03","TED highly-symmetric fold AF-D1Z063-F1-model_v4_TED03"]]},{"id":"NCBITaxon:309807","l":"Salinibacter ruber DSM 13855","na":2,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["underground-water-envo-00005792.html","underground water"]],"b":[["Pfam%3APF06491","Disulphide isomerase"]]},{"id":"NCBITaxon:313594","l":"Polaribacter irgensii 23-P","na":2,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["TED%3AAF-A4BXQ4-F1-model_v4_TED01","TED novel fold AF-A4BXQ4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:314237","l":"","na":2,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"],["root-nodule-envo-01000164.html","root nodule"]],"b":[["TED%3AAF-A0A318T1W1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A318T1W1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:316058","l":"Rhodopseudomonas palustris HaA2","na":2,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["TED%3AAF-Q2IYC7-F1-model_v4_TED03","TED novel fold AF-Q2IYC7-F1-model_v4_TED03"]]},{"id":"NCBITaxon:316274","l":"Herpetosiphon aurantiacus DSM 785","na":2,"nb":1,"a":[["filament-bto-0000463.html","filament"],["joint-bto-0001686.html","joint"]],"b":[["TED%3AAF-A9AZN6-F1-model_v4_TED02","TED highly-symmetric fold AF-A9AZN6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:320771","l":"","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["TED%3AAF-B9XAB4-F1-model_v4_TED02","TED highly-symmetric fold AF-B9XAB4-F1-model_v4_TED02"],["TED%3AAF-B9XFV1-F1-model_v4_TED01","TED highly-symmetric fold AF-B9XFV1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:3218","l":"Physcomitrium patens","na":2,"nb":1,"a":[["area-of-tundra-envo-00000112.html","area of tundra"],["slope-envo-00002000.html","slope"]],"b":[["TED%3AAF-A0A2K1IJQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2K1IJQ3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:322710","l":"Azotobacter vinelandii DJ","na":1,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["proteintraitsmech%3AELIFE109154_Orn_monoox","Metallophore-associated ornithine N5-monooxygenase family"],["proteintraitsmech%3AELIFE109154_PvdP","Pyoverdine chromophore maturation tyrosinase family"]]},{"id":"NCBITaxon:323426","l":"Jezberella montanilacus","na":1,"nb":2,"a":[["pond-envo-00000033.html","pond"]],"b":[["TED%3AAF-A0A2T0XBZ0-F1-model_v4_TED02","TED novel fold AF-A0A2T0XBZ0-F1-model_v4_TED02"],["TED%3AAF-A0A2T0XCA1-F1-model_v4_TED02","TED novel fold AF-A0A2T0XCA1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:33035","l":"Blautia producta","na":1,"nb":2,"a":[["juvenile-bto-0002168.html","juvenile"]],"b":[["TED%3AAF-A0A2S4GEH6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S4GEH6-F1-model_v4_TED01"],["TED%3AAF-A0A7G5MNY0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G5MNY0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:331272","l":"Burkholderia cenocepacia HI2424","na":2,"nb":1,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["Pfam%3APF02673","Bacitracin resistance protein BacA"]]},{"id":"NCBITaxon:332175","l":"Desulfosalsimonas propionicica","na":2,"nb":1,"a":[["inlet-envo-00000475.html","inlet"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["TED%3AAF-A0A7W0HJC5-F1-model_v4_TED03","TED novel fold AF-A0A7W0HJC5-F1-model_v4_TED03"]]},{"id":"NCBITaxon:33889","l":"Brevibacterium casei","na":2,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"]],"b":[["TED%3AAF-A0A7T2TGM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T2TGM6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:33922","l":"Mycoplasmopsis agassizii","na":1,"nb":2,"a":[["valley-envo-00000100.html","valley"]],"b":[["TED%3AAF-A0A1W1X4W5-F1-model_v4_TED01","TED novel fold AF-A0A1W1X4W5-F1-model_v4_TED01"],["TED%3AAF-A0A1W1XA50-F1-model_v4_TED02","TED novel fold AF-A0A1W1XA50-F1-model_v4_TED02"]]},{"id":"NCBITaxon:33950","l":"Thermoanaerobacterium thermosulfurigenes","na":1,"nb":2,"a":[["park-envo-00000562.html","park"]],"b":[["Pfam%3APF18565","Glycoside hydrolase family 2 C-terminal domain 5"],["Pfam%3APF00395","S-layer homology domain"]]},{"id":"NCBITaxon:342616","l":"","na":1,"nb":2,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["Pfam%3APF26337","Glucosyltransferase 3-like, C-terminal domain"],["Pfam%3APF26334","Glucosyltransferase 3-like, N-terminal domain"]]},{"id":"NCBITaxon:345341","l":"Kutzneria sp. 744","na":2,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"],["clay-envo-00002982.html","clay"]],"b":[["TED%3AAF-W7SU68-F1-model_v4_TED01","TED novel fold AF-W7SU68-F1-model_v4_TED01"]]},{"id":"NCBITaxon:349521","l":"Hahella chejuensis KCTC 2396","na":1,"nb":2,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["TED%3AAF-Q2SFS2-F1-model_v4_TED01","TED novel fold AF-Q2SFS2-F1-model_v4_TED01"],["TED%3AAF-Q2SI43-F1-model_v4_TED03","TED novel fold AF-Q2SI43-F1-model_v4_TED03"]]},{"id":"NCBITaxon:350688","l":"Alkaliphilus oremlandii OhILAs","na":2,"nb":1,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["Pfam%3APF18955","Domain of unknown function (DUF5698)"]]},{"id":"NCBITaxon:35703","l":"Citrobacter amalonaticus","na":2,"nb":1,"a":[["dental-plaque-bto-0000338.html","dental plaque"],["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["TED%3AAF-A0A376C300-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A376C300-F1-model_v4_TED02"]]},{"id":"NCBITaxon:363265","l":"Leyella stercorea","na":1,"nb":2,"a":[["pig-manure-envo-00003860.html","pig manure"]],"b":[["TED%3AAF-A0A415GCN6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A415GCN6-F1-model_v4_TED04"],["TED%3AAF-A0A3R6FHW9-F1-model_v4_TED01","TED novel fold AF-A0A3R6FHW9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:368407","l":"","na":1,"nb":2,"a":[["joint-bto-0001686.html","joint"]],"b":[["Pfam%3APF27030","AbpE bacteria"],["Pfam%3APF04019","Protein of unknown function (DUF359)"]]},{"id":"NCBITaxon:37329","l":"Nocardia farcinica","na":2,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["TED%3AAF-A0A449G5H5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A449G5H5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:375286","l":"","na":1,"nb":2,"a":[["large-river-biome-envo-00000887.html","large river biome"]],"b":[["Pfam%3APF06299","Protein of unknown function (DUF1045)"],["Pfam%3APF04361","Protein of unknown function (DUF494)"]]},{"id":"NCBITaxon:382514","l":"Telmatospirillum siberiense","na":2,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["peatland-envo-00000044.html","peatland"]],"b":[["TED%3AAF-A0A2N3PPB2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3PPB2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:38313","l":"Shewanella algae","na":1,"nb":2,"a":[["foot-bto-0000476.html","foot"]],"b":[["TED%3AAF-A0A1S2T8W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S2T8W3-F1-model_v4_TED01"],["TED%3AAF-A0A8A5EFG1-F1-model_v4_TED02","TED novel fold AF-A0A8A5EFG1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:389348","l":"Candidatus Protochlamydia naegleriophila","na":2,"nb":1,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["TED%3AAF-A0A0U5J6J4-F1-model_v4_TED01","TED novel fold AF-A0A0U5J6J4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:391037","l":"Salinispora arenicola CNS-205","na":2,"nb":1,"a":[["beach-sand-envo-00002138.html","beach sand"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["Pfam%3APF12072","RNase Y N-terminal region"]]},{"id":"NCBITaxon:39152","l":"Methanococcus maripaludis","na":1,"nb":2,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["Pfam%3APF02571","Precorrin-6x reductase CbiJ/CobK"],["TED%3AAF-A0A7J9PSA9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J9PSA9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:39441","l":"Methanobrevibacter arboriphilus","na":2,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["sludge-envo-00002044.html","sludge"]],"b":[["TED%3AAF-A0A843AID3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843AID3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:395494","l":"","na":1,"nb":2,"a":[["river-bed-envo-00000384.html","river bed"]],"b":[["TED%3AAF-D9SCL7-F1-model_v4_TED01","TED highly-symmetric fold AF-D9SCL7-F1-model_v4_TED01"],["TED%3AAF-D9SFM7-F1-model_v4_TED01","TED highly-symmetric fold AF-D9SFM7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:395961","l":"Cyanothece sp. PCC 7425","na":2,"nb":1,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["TED%3AAF-B8HKH7-F1-model_v4_TED01","TED highly-symmetric fold AF-B8HKH7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:39691","l":"Mycolicibacterium moriokaense","na":1,"nb":2,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["TED%3AAF-A0A370D086-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A370D086-F1-model_v4_TED01"],["TED%3AAF-A0A370D4B9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A370D4B9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:404881","l":"Albidovulum denitrificans","na":2,"nb":1,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["TED%3AAF-A0A2S8SDZ8-F1-model_v4_TED03","TED novel fold AF-A0A2S8SDZ8-F1-model_v4_TED03"]]},{"id":"NCBITaxon:404941","l":"Mycobacteroides salmoniphilum","na":1,"nb":2,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["TED%3AAF-A0A4R8SEB1-F1-model_v4_TED02","TED novel fold AF-A0A4R8SEB1-F1-model_v4_TED02"],["TED%3AAF-A0A4R8SGK3-F1-model_v4_TED01","TED novel fold AF-A0A4R8SGK3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:411461","l":"Dorea formicigenerans ATCC 27755","na":2,"nb":1,"a":[["emulsion-envo-00010506.html","emulsion"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["TED%3AAF-B0G854-F1-model_v4_TED01","TED novel fold AF-B0G854-F1-model_v4_TED01"]]},{"id":"NCBITaxon:411463","l":"Eubacterium ventriosum ATCC 27560","na":2,"nb":1,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["TED%3AAF-A5Z937-F1-model_v4_TED01","TED highly-symmetric fold AF-A5Z937-F1-model_v4_TED01"]]},{"id":"NCBITaxon:41211","l":"Desulfotomaculum sp.","na":2,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["TED%3AAF-A0A356UJQ3-F1-model_v4_TED01","TED novel fold AF-A0A356UJQ3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:41880","l":"Pycnococcus provasolii","na":1,"nb":2,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["TED%3AAF-A0A830HBX6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A830HBX6-F1-model_v4_TED02"],["TED%3AAF-A0A830HI63-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A830HI63-F1-model_v4_TED01"]]},{"id":"NCBITaxon:420247","l":"","na":1,"nb":2,"a":[["gut-mucosa-bto-0000546.html","gut mucosa"]],"b":[["Pfam%3APF17884","Domain of unknown function (DUF5591)"],["Pfam%3APF18195","GatD N-terminal domain"]]},{"id":"NCBITaxon:420952","l":"Paraburkholderia bryophila","na":2,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["TED%3AAF-A0A7Y9WQV4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y9WQV4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:42256","l":"Rubrobacter radiotolerans","na":2,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["desert-sand-envo-00005800.html","desert sand"]],"b":[["TED%3AAF-A0A023X7L7-F1-model_v4_TED02","TED novel fold AF-A0A023X7L7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:42322","l":"Eubacterium ruminantium","na":1,"nb":2,"a":[["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["TED%3AAF-A0A1H6A208-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H6A208-F1-model_v4_TED01"],["TED%3AAF-A0A1T4Q7U0-F1-model_v4_TED01","TED novel fold AF-A0A1T4Q7U0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:425104","l":"","na":1,"nb":2,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["Pfam%3APF13286","Phosphohydrolase-associated domain"],["TED%3AAF-A8FZD8-F1-model_v4_TED01","TED novel fold AF-A8FZD8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:43671","l":"Actinotalea fermentans","na":2,"nb":1,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["TED%3AAF-A0A511YTN2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A511YTN2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:441772","l":"","na":1,"nb":2,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["Pfam%3APF02001","Protein of unknown function DUF134"],["Pfam%3APF06874","Firmicute fructose-1,6-bisphosphatase"]]},{"id":"NCBITaxon:443152","l":"Marinobacter algicola DG893","na":2,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["TED%3AAF-A6EY08-F1-model_v4_TED01","TED highly-symmetric fold AF-A6EY08-F1-model_v4_TED01"]]},{"id":"NCBITaxon:444157","l":"Pyrobaculum neutrophilum V24Sta","na":2,"nb":1,"a":[["silty-sediment-envo-01000119.html","silty sediment"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF01950","Fructose-1,6-bisphosphatase"]]},{"id":"NCBITaxon:44737","l":"Capnocytophaga sp.","na":1,"nb":2,"a":[["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["TED%3AAF-A0A496MK20-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A496MK20-F1-model_v4_TED01"],["TED%3AAF-A0A496MK73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A496MK73-F1-model_v4_TED01"]]},{"id":"NCBITaxon:452637","l":"","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["TED%3AAF-B1ZX41-F1-model_v4_TED02","TED novel fold AF-B1ZX41-F1-model_v4_TED02"],["TED%3AAF-B1ZYN8-F1-model_v4_TED02","TED novel fold AF-B1ZYN8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:455632","l":"Streptomyces griseus subsp. griseus NBRC 13350","na":1,"nb":2,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["PROSITE%3APS01311","Prolipoprotein diacylglyceryl transferase signature"]]},{"id":"NCBITaxon:472","l":"Acinetobacter sp.","na":1,"nb":2,"a":[["carcass-envo-00002033.html","carcass"]],"b":[["TED%3AAF-A0A433CUV6-F1-model_v4_TED01","TED novel fold AF-A0A433CUV6-F1-model_v4_TED01"],["TED%3AAF-A0A7G3BTL8-F1-model_v4_TED01","TED novel fold AF-A0A7G3BTL8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:472759","l":"Nitrosococcus halophilus Nc 4","na":2,"nb":1,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["TED%3AAF-D5BWL1-F1-model_v4_TED01","TED highly-symmetric fold AF-D5BWL1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:474950","l":"Granulicella pectinivorans","na":2,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A1I6LYB5-F1-model_v4_TED03","TED novel fold AF-A0A1I6LYB5-F1-model_v4_TED03"]]},{"id":"NCBITaxon:476","l":"Moraxella bovis","na":1,"nb":2,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"]],"b":[["Pfam%3APF04556","DpnII restriction endonuclease"],["TED%3AAF-A0A1S9ZVN5-F1-model_v4_TED01","TED novel fold AF-A0A1S9ZVN5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":2,"nb":1,"a":[["city-envo-00000856.html","city"],["cropland-biome-envo-01000245.html","cropland biome"]],"b":[["TED%3AAF-A0A4R6CRR7-F1-model_v4_TED01","TED novel fold AF-A0A4R6CRR7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:479435","l":"Kribbella flavida DSM 17836","na":2,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["Pfam%3APF21568","1,3-alpha-isomaltosidase-like, N-terminal domain"]]},{"id":"NCBITaxon:482957","l":"","na":2,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["TED%3AAF-A0A6P2XDC0-F1-model_v4_TED01","TED novel fold AF-A0A6P2XDC0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:484019","l":"","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["TED%3AAF-B7IGW9-F1-model_v4_TED05","TED highly-symmetric fold AF-B7IGW9-F1-model_v4_TED05"],["TED%3AAF-B7IEF5-F1-model_v4_TED01","TED novel fold AF-B7IEF5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:487","l":"Neisseria meningitidis","na":2,"nb":1,"a":[["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["Pfam%3APF22582","Amylosucrase, C-terminal domain"]]},{"id":"NCBITaxon:487796","l":"Flavobacteria bacterium MS024-2A","na":2,"nb":1,"a":[["marine-neritic-zone-envo-00000206.html","marine neritic zone"],["coastal-plain-envo-00000090.html","coastal plain"]],"b":[["TED%3AAF-C0BK38-F1-model_v4_TED02","TED novel fold AF-C0BK38-F1-model_v4_TED02"]]},{"id":"NCBITaxon:49252","l":"Eucampia antarctica","na":1,"nb":2,"a":[["saline-water-envo-00002010.html","saline water"]],"b":[["TED%3AAF-A0A7S2RNI9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S2RNI9-F1-model_v4_TED02"],["TED%3AAF-A0A7S2SD61-F1-model_v4_TED01","TED novel fold AF-A0A7S2SD61-F1-model_v4_TED01"]]},{"id":"NCBITaxon:498214","l":"","na":1,"nb":2,"a":[["plateau-envo-00000182.html","plateau"]],"b":[["Pfam%3APF20921","Domain of unknown function DUF1846, C-terminal"],["Pfam%3APF08903","Domain of unknown function DUF1846, N-terminal"]]},{"id":"NCBITaxon:504472","l":"Spirosoma linguale DSM 74","na":2,"nb":1,"a":[["drinking-water-envo-00003064.html","drinking water"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["TED%3AAF-D2QHB9-F1-model_v4_TED01","TED highly-symmetric fold AF-D2QHB9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:507522","l":"","na":1,"nb":2,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Pfam%3APF18649","EcpB C-terminal domain"],["Pfam%3APF04205","FMN-binding domain"]]},{"id":"NCBITaxon:508451","l":"Lactobacillus taiwanensis","na":1,"nb":2,"a":[["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["TED%3AAF-A0A256LG95-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A256LG95-F1-model_v4_TED04"],["TED%3AAF-A0A8A8VQ16-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8A8VQ16-F1-model_v4_TED01"]]},{"id":"NCBITaxon:515393","l":"Pseudomonas yamanorum","na":1,"nb":2,"a":[["subarctic-habitatmech-bacdive-09ded89de7.html","Subarctic"]],"b":[["TED%3AAF-A0A143GFF9-F1-model_v4_TED03","TED novel fold AF-A0A143GFF9-F1-model_v4_TED03"],["TED%3AAF-A0A1H2I658-F1-model_v4_TED02","TED novel fold AF-A0A1H2I658-F1-model_v4_TED02"]]},{"id":"NCBITaxon:517417","l":"","na":1,"nb":2,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["Pfam%3APF28537","Probable trigger factor, FKBP-like domain"],["Pfam%3APF10643","Photosystem P840 reaction-centre cytochrome c-551"]]},{"id":"NCBITaxon:519","l":"Bordetella parapertussis","na":2,"nb":1,"a":[["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Pfam%3APF13542","Helix-turn-helix domain of transposase family ISL3"]]},{"id":"NCBITaxon:521674","l":"Planctopirus limnophila DSM 3776","na":2,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-D5SQH0-F1-model_v4_TED01","TED novel fold AF-D5SQH0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:52560","l":"Desulfomicrobium apsheronum","na":2,"nb":1,"a":[["black-smoker-envo-00000218.html","black smoker"],["volcanic-rock-envo-00002015.html","volcanic rock"]],"b":[["TED%3AAF-A0A1I3Z6Q6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1I3Z6Q6-F1-model_v4_TED04"]]},{"id":"NCBITaxon:53463","l":"Paracoccus solventivorans","na":2,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["plain-envo-00000086.html","plain"]],"b":[["TED%3AAF-A0A1M7DMW2-F1-model_v4_TED03","TED novel fold AF-A0A1M7DMW2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:536044","l":"Methanolobus zinderi","na":1,"nb":2,"a":[["coalbed-water-habitatmech-bacdive-499e641dc2.html","Coalbed-water"]],"b":[["TED%3AAF-A0A7D5IAI6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7D5IAI6-F1-model_v4_TED01"],["TED%3AAF-A0A7D5E6R2-F1-model_v4_TED02","TED novel fold AF-A0A7D5E6R2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:555970","l":"","na":1,"nb":2,"a":[["intestinal-epithelium-bto-0000781.html","intestinal epithelium"]],"b":[["PROSITE%3APS60002","Phosphoketolase signature 1"],["PROSITE%3APS60003","Phosphoketolase signature 2"]]},{"id":"NCBITaxon:579137","l":"Methanocaldococcus vulcanius M7","na":2,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["TED%3AAF-C9RDN7-F1-model_v4_TED02","TED highly-symmetric fold AF-C9RDN7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:5823","l":"Plasmodium berghei (strain Anka)","na":1,"nb":2,"a":[["ookinete-bto-0004857.html","ookinete"]],"b":[["Pfam%3APF03092","BT1 family"],["Pfam%3APF12628","Falstatin, cysteine peptidase inhibitor"]]},{"id":"NCBITaxon:5851","l":"Plasmodium knowlesi strain H","na":2,"nb":1,"a":[["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["hypnozoite-bto-0003594.html","hypnozoite"]],"b":[["TED%3AAF-A0A6H5FUY2-F1-model_v4_TED01","TED novel fold AF-A0A6H5FUY2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:588581","l":"Ruminiclostridium papyrosolvens DSM 2782","na":2,"nb":1,"a":[["estuary-envo-00000045.html","estuary"],["sporangium-bto-0001287.html","sporangium"]],"b":[["TED%3AAF-F1TA67-F1-model_v4_TED05","TED highly-symmetric fold AF-F1TA67-F1-model_v4_TED05"]]},{"id":"NCBITaxon:59406","l":"Aromatoleum evansii","na":1,"nb":2,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF14535","AMP-binding enzyme C-terminal domain"],["Pfam%3APF12837","4Fe-4S binding domain"]]},{"id":"NCBITaxon:595453","l":"Rhodopirellula sp. SM50","na":2,"nb":1,"a":[["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"]],"b":[["TED%3AAF-A0A2A2WGR6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A2WGR6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:60480","l":"","na":1,"nb":2,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["Pfam%3APF06276","Ferric iron reductase FhuF-like transporter"],["Pfam%3APF04183","IucA / IucC family"]]},{"id":"NCBITaxon:608538","l":"Hydrogenobacter thermophilus TK-6","na":2,"nb":1,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"],["peninsula-envo-00000305.html","peninsula"]],"b":[["Pfam%3APF17805","AsnC-like ligand binding domain"]]},{"id":"NCBITaxon:6087","l":"Hydra vulgaris","na":1,"nb":2,"a":[["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["Pfam%3APF06369","Sea anemone cytotoxic protein"],["TED%3AAF-B8Y8I7-F1-model_v4_TED01","TED highly-symmetric fold AF-B8Y8I7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:616997","l":"Hoyosella altamirensis","na":2,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["cave-envo-00000067.html","cave"]],"b":[["TED%3AAF-A0A839RM00-F1-model_v4_TED02","TED novel fold AF-A0A839RM00-F1-model_v4_TED02"]]},{"id":"NCBITaxon:623280","l":"Parapedobacter luteus","na":2,"nb":1,"a":[["sewage-envo-00002018.html","sewage"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["TED%3AAF-A0A1T5FI29-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1T5FI29-F1-model_v4_TED01"]]},{"id":"NCBITaxon:642492","l":"","na":1,"nb":2,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["TED%3AAF-F2JHU0-F1-model_v4_TED01","TED highly-symmetric fold AF-F2JHU0-F1-model_v4_TED01"],["TED%3AAF-F2JQ83-F1-model_v4_TED01","TED highly-symmetric fold AF-F2JQ83-F1-model_v4_TED01"]]},{"id":"NCBITaxon:644107","l":"","na":1,"nb":2,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["Pfam%3APF16867","Dimethlysulfonioproprionate lyase"],["TED%3AAF-D0CYX0-F1-model_v4_TED01","TED novel fold AF-D0CYX0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:649349","l":"Leadbetterella byssophila DSM 17132","na":2,"nb":1,"a":[["compost-envo-00002170.html","compost"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["TED%3AAF-E4RVH3-F1-model_v4_TED02","TED novel fold AF-E4RVH3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:679926","l":"Methanolacinia petrolearia DSM 11571","na":2,"nb":1,"a":[["inlet-envo-00000475.html","inlet"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["TED%3AAF-E1RJC3-F1-model_v4_TED02","TED novel fold AF-E1RJC3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:68170","l":"","na":1,"nb":2,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["Pfam%3APF12902","Ferritin-like"],["TED%3AAF-A0A0F0GZM7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0F0GZM7-F1-model_v4_TED03"]]},{"id":"NCBITaxon:688246","l":"Hallella multisaccharivorax DSM 17128","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["TED%3AAF-F8N9C0-F1-model_v4_TED03","TED novel fold AF-F8N9C0-F1-model_v4_TED03"],["TED%3AAF-F8N9F2-F1-model_v4_TED01","TED novel fold AF-F8N9F2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:68892","l":"Streptococcus infantis","na":2,"nb":1,"a":[["head-bto-0000282.html","head"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["TED%3AAF-A0A0F2E1C7-F1-model_v4_TED04","TED novel fold AF-A0A0F2E1C7-F1-model_v4_TED04"]]},{"id":"NCBITaxon:693216","l":"Cronobacter turicensis z3032","na":2,"nb":1,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["TED%3AAF-C9Y1S3-F1-model_v4_TED01","TED novel fold AF-C9Y1S3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:69969","l":"Macrococcus carouselicus","na":2,"nb":1,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["TED%3AAF-A0A4R6BCC8-F1-model_v4_TED01","TED novel fold AF-A0A4R6BCC8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:7230","l":"Drosophila mojavensis","na":1,"nb":2,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"]],"b":[["Pfam%3APF10562","Calmodulin-binding domain C0 of NMDA receptor NR1 subunit"],["Pfam%3APF13428","Tetratricopeptide repeat"]]},{"id":"NCBITaxon:7425","l":"Nasonia vitripennis","na":2,"nb":1,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["TED%3AAF-A0A7M7QB08-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7M7QB08-F1-model_v4_TED04"]]},{"id":"NCBITaxon:756067","l":"Microcoleus vaginatus FGP-2","na":2,"nb":1,"a":[["desert-area-envo-00000097.html","desert area"],["seamount-envo-00000264.html","seamount"]],"b":[["TED%3AAF-F5UCE7-F1-model_v4_TED03","TED highly-symmetric fold AF-F5UCE7-F1-model_v4_TED03"]]},{"id":"NCBITaxon:756272","l":"Rubinisphaera brasiliensis DSM 5305","na":2,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["TED%3AAF-F0SH04-F1-model_v4_TED04","TED novel fold AF-F0SH04-F1-model_v4_TED04"]]},{"id":"NCBITaxon:7654","l":"Lytechinus variegatus","na":2,"nb":1,"a":[["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["Pfam%3APF02084","Bindin"]]},{"id":"NCBITaxon:78229","l":"Paracidovorax anthurii","na":1,"nb":2,"a":[["leaf-po-0025034.html","leaf"]],"b":[["TED%3AAF-A0A328ZC73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A328ZC73-F1-model_v4_TED01"],["TED%3AAF-A0A328Z0A2-F1-model_v4_TED01","TED novel fold AF-A0A328Z0A2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:794903","l":"Opitutaceae bacterium TAV5","na":2,"nb":1,"a":[["hindgut-bto-0000510.html","hindgut"],["wood-bto-0005516.html","wood"]],"b":[["TED%3AAF-W0J1Y7-F1-model_v4_TED01","TED highly-symmetric fold AF-W0J1Y7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:82367","l":"Paracoccus pantotrophus","na":2,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["Pfam%3APF17805","AsnC-like ligand binding domain"]]},{"id":"NCBITaxon:83554","l":"Chlamydia psittaci","na":2,"nb":1,"a":[["spleen-bto-0001281.html","spleen"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["Pfam%3APF01345","CLIPPER domain"]]},{"id":"NCBITaxon:83555","l":"Chlamydia abortus","na":2,"nb":1,"a":[["elementary-body-bto-0000377.html","elementary body"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["TED%3AAF-A0A5C1D8N1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C1D8N1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:865938","l":"Weeksella virosa DSM 16922","na":2,"nb":1,"a":[["urethra-bto-0001426.html","urethra"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["TED%3AAF-F0P1F3-F1-model_v4_TED01","TED novel fold AF-F0P1F3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:912594","l":"Mycolicibacterium iranicum","na":1,"nb":2,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["TED%3AAF-A0A178LVR2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A178LVR2-F1-model_v4_TED02"],["TED%3AAF-A0A178M0U6-F1-model_v4_TED01","TED novel fold AF-A0A178M0U6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:9258","l":"Ornithorhynchus anatinus","na":1,"nb":2,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"]],"b":[["Pfam%3APF08131","Defensin-like peptide family"],["Pfam%3APF17858","Platypus intermediate defensin-like peptide"]]},{"id":"NCBITaxon:933063","l":"Dichotomicrobium thermohalophilum","na":1,"nb":2,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["TED%3AAF-A0A397Q5H3-F1-model_v4_TED01","TED novel fold AF-A0A397Q5H3-F1-model_v4_TED01"],["TED%3AAF-A0A397Q636-F1-model_v4_TED02","TED novel fold AF-A0A397Q636-F1-model_v4_TED02"]]},{"id":"NCBITaxon:99656","l":"[Clostridium] fimetarium","na":1,"nb":2,"a":[["animal-waste-material-envo-00002276.html","animal waste material"]],"b":[["TED%3AAF-A0A1I0N088-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I0N088-F1-model_v4_TED02"],["TED%3AAF-A0A1I0QS44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I0QS44-F1-model_v4_TED01"]]},{"id":"UBERON:0001003","l":"skin epidermis","na":1,"nb":2,"a":[["skin-epidermis-uberon-0001003.html","skin epidermis"]],"b":[["GO%3A0008544","epidermis development"],["GO%3A0048730","epidermis morphogenesis"]]},{"id":"UBERON:0001705","l":"nail","na":2,"nb":1,"a":[["nail-uberon-0001705.html","nail"],["nails-habitatmech-gold-1d1529ead1.html","Nails"]],"b":[["GO%3A0035878","nail development"]]},{"id":"UBERON:0002073","l":"","na":2,"nb":1,"a":[["hair-follicle-habitatmech-gold-1e3f47202c.html","Hair follicle"],["hair-follicle-habitatmech-gold-b7fcb62675.html","Hair follicle"]],"b":[["GO%3A0001942","hair follicle development"]]},{"id":"UBERON:0002097","l":"skin of body","na":1,"nb":2,"a":[["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["GO%3A0043588","skin development"],["GO%3A0043589","skin morphogenesis"]]},{"id":"NCBITaxon:1001590","l":"Leptospira interrogans str. 2006001854","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["TED%3AAF-M6GW27-F1-model_v4_TED03","TED novel fold AF-M6GW27-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1003237","l":"Nitrospirillum amazonense Y2","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["TED%3AAF-G1Y2J3-F1-model_v4_TED02","TED novel fold AF-G1Y2J3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1017277","l":"","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["TED%3AAF-A0A0V8GEY0-F1-model_v4_TED01","TED novel fold AF-A0A0V8GEY0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1032","l":"Thiothrix sp.","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["TED%3AAF-A0A432UXQ4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A432UXQ4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1032505","l":"Fusobacterium sp. OBRC1","na":1,"nb":1,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["TED%3AAF-X8HXN3-F1-model_v4_TED01","TED highly-symmetric fold AF-X8HXN3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1035309","l":"Ceratocystis fimbriata CBS 114723","na":1,"nb":1,"a":[["plant-bto-0001481.html","plant"]],"b":[["TED%3AAF-A0A2C5WW72-F1-model_v4_TED01","TED novel fold AF-A0A2C5WW72-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1037377","l":"Chryseobacterium viscerum","na":1,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["TED%3AAF-A0A316W9L1-F1-model_v4_TED02","TED novel fold AF-A0A316W9L1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1038014","l":"Aquimarina amphilecti","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["TED%3AAF-A0A1H7GXR7-F1-model_v4_TED01","TED novel fold AF-A0A1H7GXR7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:103816","l":"Rhodococcus pyridinivorans","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A419ZLU8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A419ZLU8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:103838","l":"Nonomuraea turkmeniaca","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["TED%3AAF-A0A5S4FRG4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5S4FRG4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1038845","l":"Flavobacterium rakeshii","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["TED%3AAF-A0A6N8H854-F1-model_v4_TED02","TED novel fold AF-A0A6N8H854-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1038928","l":"Streptomyces xinghaiensis","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["TED%3AAF-A0A3R7FP99-F1-model_v4_TED01","TED novel fold AF-A0A3R7FP99-F1-model_v4_TED01"]]},{"id":"NCBITaxon:104205","l":"Streptomonospora salina","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["TED%3AAF-A0A841ECK8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841ECK8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:104660","l":"Pinctada maxima","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["Pfam%3APF03173","Putative carbohydrate binding domain"]]},{"id":"NCBITaxon:104663","l":"Chitinophaga filiformis","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["TED%3AAF-A0A1G7RSD9-F1-model_v4_TED01","TED novel fold AF-A0A1G7RSD9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1048396","l":"Halopenitus persicus","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["TED%3AAF-A0A1H3M4L7-F1-model_v4_TED01","TED novel fold AF-A0A1H3M4L7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1051531","l":"Saccharothrix tamanrassetensis","na":1,"nb":1,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["TED%3AAF-A0A841CPC6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841CPC6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1052260","l":"Klenkia soli","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["TED%3AAF-A0A1H0TFA4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H0TFA4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1052585","l":"","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["TED%3AAF-G4P1P4-F1-model_v4_TED01","TED highly-symmetric fold AF-G4P1P4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1053222","l":"Bacillus cereus MSX-D12","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["TED%3AAF-J8G3X2-F1-model_v4_TED01","TED highly-symmetric fold AF-J8G3X2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1054202","l":"Rhodobacter viridis","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["TED%3AAF-A0A318TZ12-F1-model_v4_TED01","TED novel fold AF-A0A318TZ12-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1054217","l":"Thermoplasmatales archaeon BRNA1","na":1,"nb":1,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["TED%3AAF-M4YJR5-F1-model_v4_TED01","TED highly-symmetric fold AF-M4YJR5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:106654","l":"Acinetobacter nosocomialis","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["TED%3AAF-A0A5Q0RRM8-F1-model_v4_TED01","TED novel fold AF-A0A5Q0RRM8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1071078","l":"Bacillus sp. NSP9.1","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["TED%3AAF-A0A6I7F721-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I7F721-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1078016","l":"Rhodococcus erythropolis XP","na":1,"nb":1,"a":[["resting-cell-bto-0001170.html","resting cell"]],"b":[["Pfam%3APF08028","Acyl-CoA dehydrogenase, C-terminal domain"]]},{"id":"NCBITaxon:1078050","l":"Seleniivibrio woodruffii","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["TED%3AAF-A0A4R1KEH0-F1-model_v4_TED02","TED novel fold AF-A0A4R1KEH0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1085538","l":"Leptospira interrogans serovar Bataviae str. HAI135","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["TED%3AAF-M6TC60-F1-model_v4_TED05","TED novel fold AF-M6TC60-F1-model_v4_TED05"]]},{"id":"NCBITaxon:108980","l":"Acinetobacter ursingii","na":1,"nb":1,"a":[["foot-bto-0000476.html","foot"]],"b":[["TED%3AAF-A0A3F3LBR7-F1-model_v4_TED01","TED novel fold AF-A0A3F3LBR7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1094555","l":"Bartonella elizabethae F9251 = ATCC 49927","na":1,"nb":1,"a":[["blood-bto-0000089.html","blood"]],"b":[["TED%3AAF-J1K501-F1-model_v4_TED02","TED highly-symmetric fold AF-J1K501-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1100720","l":"Limnohabitans sp. Rim28","na":1,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["TED%3AAF-A0A2T7SZL1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T7SZL1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1107882","l":"Mesorhizobium alhagi CCNWXJ12-2","na":1,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["TED%3AAF-H0I1K0-F1-model_v4_TED01","TED novel fold AF-H0I1K0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1108595","l":"Chromobacterium vaccinii","na":1,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["TED%3AAF-A0A2L2B8V3-F1-model_v4_TED02","TED novel fold AF-A0A2L2B8V3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1111454","l":"","na":1,"nb":1,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["TED%3AAF-U7UHK7-F1-model_v4_TED01","TED novel fold AF-U7UHK7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1112204","l":"Gordonia polyisoprenivorans VH2","na":1,"nb":1,"a":[["latex-bto-0000710.html","latex"]],"b":[["TED%3AAF-H6N0Q7-F1-model_v4_TED01","TED novel fold AF-H6N0Q7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1116472","l":"Methyloglobulus morosus KoM1","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["TED%3AAF-V5BKR0-F1-model_v4_TED01","TED highly-symmetric fold AF-V5BKR0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1120926","l":"Acinetobacter gerneri DSM 14967 = CIP 107464 = MTCC 9824","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["TED%3AAF-N8ZKV3-F1-model_v4_TED01","TED highly-symmetric fold AF-N8ZKV3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1120996","l":"Anaerosporobacter mobilis DSM 15930","na":1,"nb":1,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["TED%3AAF-A0A1M7NGC0-F1-model_v4_TED01","TED novel fold AF-A0A1M7NGC0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121098","l":"Phocaeicola massiliensis B84634 = Timone 84634 = DSM 17679 = JCM 13223","na":1,"nb":1,"a":[["blood-bto-0000089.html","blood"]],"b":[["TED%3AAF-U6RRG8-F1-model_v4_TED01","TED highly-symmetric fold AF-U6RRG8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121326","l":"Clostridium magnum DSM 2767","na":1,"nb":1,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["TED%3AAF-A0A162T1A8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A162T1A8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121336","l":"Thermoclostridium stercorarium subsp. thermolacticum DSM 2910","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["TED%3AAF-A0A1B1YDV6-F1-model_v4_TED02","TED novel fold AF-A0A1B1YDV6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1121424","l":"Desulfotruncus arcticus DSM 17038","na":1,"nb":1,"a":[["sea-coast-envo-00000303.html","sea coast"]],"b":[["TED%3AAF-A0A1I2Z3E3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I2Z3E3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1121426","l":"Desulfoscipio geothermicus DSM 3669","na":1,"nb":1,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["TED%3AAF-A0A1I6DXW2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I6DXW2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121898","l":"Flavobacterium subsaxonicum WB 4.1-42 = DSM 21790","na":1,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"]],"b":[["TED%3AAF-A0A0A2M8C2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A2M8C2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1122169","l":"Legionella shakespearei DSM 23087","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["TED%3AAF-A0A0W0YL59-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0W0YL59-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1122189","l":"Malonomonas rubra DSM 5091","na":1,"nb":1,"a":[["canal-envo-00000014.html","canal"]],"b":[["TED%3AAF-A0A1M6IYP5-F1-model_v4_TED01","TED novel fold AF-A0A1M6IYP5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1122247","l":"Mycolicibacterium hassiacum DSM 44199","na":1,"nb":1,"a":[["urethra-bto-0001426.html","urethra"]],"b":[["Pfam%3APF22422","Mannosylglycerate hydrolase MGH1-like glycoside hydrolase domain"]]},{"id":"NCBITaxon:1122252","l":"Marinospirillum celere","na":1,"nb":1,"a":[["island-envo-00000098.html","island"]],"b":[["TED%3AAF-A0A1I1DUZ3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1I1DUZ3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1123078","l":"Runella zeae DSM 19591","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["Pfam%3APF26164","Bacterial Gasdermin Family"]]},{"id":"NCBITaxon:1123282","l":"Sporobacter termitidis DSM 10068","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["TED%3AAF-A0A1M5VTW1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M5VTW1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1125876","l":"Halpernia frigidisoli","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["TED%3AAF-A0A1I3H4T1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I3H4T1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1129374","l":"Alishewanella jeotgali KCTC 22429","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["TED%3AAF-H3ZBB0-F1-model_v4_TED01","TED highly-symmetric fold AF-H3ZBB0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:113355","l":"Geminocystis herdmanii PCC 6308","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["Pfam%3APF18921","Cyanophycin synthase-like N-terminal domain"]]},{"id":"NCBITaxon:1134687","l":"Klebsiella michiganensis","na":1,"nb":1,"a":[["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"]],"b":[["TED%3AAF-A0A443W129-F1-model_v4_TED01","TED novel fold AF-A0A443W129-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1141221","l":"Chryseobacterium taihuense","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["TED%3AAF-A0A4U8WD57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8WD57-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1144618","l":"Allonocardiopsis opalescens","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["TED%3AAF-A0A2T0QE02-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T0QE02-F1-model_v4_TED01"]]},{"id":"NCBITaxon:114527","l":"Mogibacterium diversum","na":1,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["TED%3AAF-A0A2S0L5I6-F1-model_v4_TED02","TED novel fold AF-A0A2S0L5I6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1148157","l":"Acinetobacter oleivorans","na":1,"nb":1,"a":[["plume-bto-0002480.html","plume"]],"b":[["TED%3AAF-A0A0B2UAV2-F1-model_v4_TED02","TED novel fold AF-A0A0B2UAV2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:115778","l":"Leuconostoc gasicomitatum","na":1,"nb":1,"a":[["research-facility-envo-00000469.html","research facility"]],"b":[["TED%3AAF-A0A7H9BD19-F1-model_v4_TED01","TED novel fold AF-A0A7H9BD19-F1-model_v4_TED01"]]},{"id":"NCBITaxon:115808","l":"Bradyrhizobium sp. ORS 285","na":1,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["TED%3AAF-A0A1Y6KEH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y6KEH3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:115979","l":"Niallia nealsonii","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["TED%3AAF-A0A2N0Z186-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N0Z186-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1161919","l":"Erwinia piriflorinigrans CFBP 5888","na":1,"nb":1,"a":[["flower-bto-0000469.html","flower"]],"b":[["TED%3AAF-V5Z5E5-F1-model_v4_TED01","TED novel fold AF-V5Z5E5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1162967","l":"Diaminobutyricimonas aerilata","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["TED%3AAF-A0A2M9CH35-F1-model_v4_TED01","TED novel fold AF-A0A2M9CH35-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1163745","l":"Helicobacter cetorum MIT 99-5656","na":1,"nb":1,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["TED%3AAF-I0EUT8-F1-model_v4_TED01","TED novel fold AF-I0EUT8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1163748","l":"","na":1,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["Pfam%3APF13205","Bacterial Ig-like domain"]]},{"id":"NCBITaxon:1164594","l":"Massilia yuzhufengensis","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["TED%3AAF-A0A1I1LD95-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I1LD95-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1173995","l":"Parvularcula dongshanensis","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["TED%3AAF-A0A840I3S3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A840I3S3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1176176","l":"Methylobacterium haplocladii","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["TED%3AAF-A0A512INB8-F1-model_v4_TED02","TED novel fold AF-A0A512INB8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1186196","l":"Natrinema salaciae","na":1,"nb":1,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["TED%3AAF-A0A1H9QMZ8-F1-model_v4_TED01","TED novel fold AF-A0A1H9QMZ8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1188229","l":"Gloeomargarita lithophora Alchichica-D10","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["TED%3AAF-A0A1J0AGF7-F1-model_v4_TED01","TED novel fold AF-A0A1J0AGF7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1198114","l":"Granulicella tundricola MP5ACTX9","na":1,"nb":1,"a":[["area-designated-as-a-nature-reserve-envo-00000363.html","area designated as a nature reserve"]],"b":[["TED%3AAF-E8X149-F1-model_v4_TED01","TED highly-symmetric fold AF-E8X149-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1210091","l":"Nocardia ninae NBRC 108245","na":1,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["TED%3AAF-A0A511MS59-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A511MS59-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1210932","l":"Peteryoungia ipomoeae","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["TED%3AAF-A0A4S8P7B5-F1-model_v4_TED01","TED novel fold AF-A0A4S8P7B5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1212765","l":"Candidatus Mycoplasma haematolamae str. Purdue","na":1,"nb":1,"a":[["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["TED%3AAF-I7CFH3-F1-model_v4_TED01","TED novel fold AF-I7CFH3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1216006","l":"Vibrio aerogenes CECT 7868","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["TED%3AAF-A0A1M5VN06-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M5VN06-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1227498","l":"Natronococcus jeotgali DSM 18795","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["TED%3AAF-L9WM09-F1-model_v4_TED01","TED novel fold AF-L9WM09-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1236689","l":"Candidatus Methanomethylophilus alvi Mx1201","na":1,"nb":1,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["TED%3AAF-M9SC19-F1-model_v4_TED01","TED highly-symmetric fold AF-M9SC19-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1241906","l":"-","na":1,"nb":1,"a":[["nb-4-cell-bto-0002136.html","NB-4 cell"]],"b":[["TED%3AAF-M6ZXW8-F1-model_v4_TED01","TED highly-symmetric fold AF-M6ZXW8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1245469","l":"Bradyrhizobium oligotrophicum S58","na":1,"nb":1,"a":[["bacteroid-bto-0000109.html","bacteroid"]],"b":[["TED%3AAF-M4ZLP8-F1-model_v4_TED01","TED highly-symmetric fold AF-M4ZLP8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1262550","l":"Brevibacterium jeotgali","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["TED%3AAF-A0A2H1L8Q0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H1L8Q0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1262583","l":"Tamaricihabitans halophyticus","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["TED%3AAF-A0A4R2RDI5-F1-model_v4_TED01","TED novel fold AF-A0A4R2RDI5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1263636","l":"Microbacterium kyungheense","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["TED%3AAF-A0A543F149-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A543F149-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1267768","l":"Brevirhabdus pacifica","na":1,"nb":1,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["TED%3AAF-A0A2M9DE94-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M9DE94-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1268635","l":"Legionella oakridgensis ATCC 33761 = DSM 21215","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["TED%3AAF-W0BCQ3-F1-model_v4_TED02","TED highly-symmetric fold AF-W0BCQ3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1273541","l":"Pyrodictium delaneyi","na":1,"nb":1,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["TED%3AAF-A0A211YRF7-F1-model_v4_TED01","TED novel fold AF-A0A211YRF7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1274631","l":"Bradyrhizobium icense","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["TED%3AAF-A0A533IQI7-F1-model_v4_TED02","TED novel fold AF-A0A533IQI7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1276220","l":"Spiroplasma taiwanense CT-1","na":1,"nb":1,"a":[["cardiovascular-system-bto-0000088.html","cardiovascular system"]],"b":[["TED%3AAF-S5LY17-F1-model_v4_TED02","TED novel fold AF-S5LY17-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1276221","l":"Spiroplasma diminutum CUAS-1","na":1,"nb":1,"a":[["cardiovascular-system-bto-0000088.html","cardiovascular system"]],"b":[["TED%3AAF-S5M2Q1-F1-model_v4_TED01","TED novel fold AF-S5M2Q1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1291742","l":"Paucilactobacillus hokkaidonensis JCM 18461","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["TED%3AAF-A0A0A1GYI0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A1GYI0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1298595","l":"Veillonella rogosae JCM 15642","na":1,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["TED%3AAF-A0A2S7YXG0-F1-model_v4_TED02","TED novel fold AF-A0A2S7YXG0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1307761","l":"Salinispira pacifica","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["TED%3AAF-V5WIK3-F1-model_v4_TED01","TED highly-symmetric fold AF-V5WIK3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1324350","l":"Acinetobacter equi","na":1,"nb":1,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["TED%3AAF-A0A0N9WF70-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0N9WF70-F1-model_v4_TED01"]]},{"id":"NCBITaxon:132476","l":"Pseudomonas kilonensis","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A1H5FUT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H5FUT8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1333523","l":"Salinarchaeum sp. Harcht-Bsk1","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["TED%3AAF-R4VXQ2-F1-model_v4_TED01","TED highly-symmetric fold AF-R4VXQ2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1341157","l":"Ruminococcus flavefaciens 007c","na":1,"nb":1,"a":[["fiber-bto-0000450.html","fiber"]],"b":[["TED%3AAF-W7UF30-F1-model_v4_TED01","TED novel fold AF-W7UF30-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1342794","l":"Photobacterium sanctipauli","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["TED%3AAF-A0A2T3P194-F1-model_v4_TED01","TED novel fold AF-A0A2T3P194-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1346286","l":"Indolivaga macrotermitis","na":1,"nb":1,"a":[["hindgut-bto-0000510.html","hindgut"]],"b":[["TED%3AAF-A0A1M4VXX6-F1-model_v4_TED02","TED novel fold AF-A0A1M4VXX6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1348114","l":"Pseudoalteromonas piratica","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["TED%3AAF-A0A0A7EDY8-F1-model_v4_TED01","TED novel fold AF-A0A0A7EDY8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1365176","l":"Thermofilum adornatum","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["TED%3AAF-A0A7C1CCT4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C1CCT4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1424653","l":"Caminibacter pacificus","na":1,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["TED%3AAF-A0A3N1YR43-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3N1YR43-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1431546","l":"Corynebacterium aquilae DSM 44791","na":1,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["TED%3AAF-A0A1L7CFU4-F1-model_v4_TED03","TED novel fold AF-A0A1L7CFU4-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1497681","l":"Paenilisteria newyorkensis","na":1,"nb":1,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["TED%3AAF-A0A841Z083-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A841Z083-F1-model_v4_TED02"]]},{"id":"NCBITaxon:150","l":"Spirochaeta isovalerica","na":1,"nb":1,"a":[["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["TED%3AAF-A0A841R6V2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841R6V2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1500506","l":"Halopolyspora algeriensis","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["TED%3AAF-A0A368VEW2-F1-model_v4_TED01","TED novel fold AF-A0A368VEW2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:150053","l":"Yersinia enterocolitica subsp. palearctica","na":1,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["TED%3AAF-A0A6M1Q6Y0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6M1Q6Y0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1507806","l":"Campylobacter fetus subsp. testudinum","na":1,"nb":1,"a":[["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["TED%3AAF-A0A2S0JEW5-F1-model_v4_TED02","TED novel fold AF-A0A2S0JEW5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:151783","l":"Cupriavidus campinensis","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["TED%3AAF-A0A556UPV6-F1-model_v4_TED01","TED novel fold AF-A0A556UPV6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1524097","l":"Massilia glaciei","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["TED%3AAF-A0A2U2HFI6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U2HFI6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1526762","l":"Vibrio sp. B183","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["TED%3AAF-A0A086WSI7-F1-model_v4_TED02","TED novel fold AF-A0A086WSI7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1550","l":"Clostridium subterminale","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["Pfam%3APF12544","Lysine-2,3-aminomutase"]]},{"id":"NCBITaxon:156133","l":"Prasinoderma coloniale","na":1,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A7R9Y3T8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7R9Y3T8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1574623","l":"Lyngbya confervoides BDU141951","na":1,"nb":1,"a":[["filament-bto-0000463.html","filament"]],"b":[["TED%3AAF-A0A0C1V1F7-F1-model_v4_TED01","TED novel fold AF-A0A0C1V1F7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:157733","l":"Alkalihalobacillus macyae","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["TED%3AAF-A0A0J6FWV9-F1-model_v4_TED01","TED novel fold AF-A0A0J6FWV9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1577902","l":"Leisingera sp. ANG-M7","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["TED%3AAF-A0A0C1IJ64-F1-model_v4_TED02","TED novel fold AF-A0A0C1IJ64-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1577905","l":"Tateyamaria sp. ANG-S1","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["TED%3AAF-A0A0B4CZX6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0B4CZX6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1585","l":"Lactobacillus delbrueckii subsp. bulgaricus","na":1,"nb":1,"a":[["pig-manure-envo-00003860.html","pig manure"]],"b":[["TED%3AAF-A0A809EIY6-F1-model_v4_TED02","TED novel fold AF-A0A809EIY6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1604","l":"Lactobacillus amylovorus","na":1,"nb":1,"a":[["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["Pfam%3APF10439","Bacteriocin class II with double-glycine leader peptide"]]},{"id":"NCBITaxon:1612149","l":"Chryseobacterium limigenitum","na":1,"nb":1,"a":[["waste-material-envo-00002264.html","waste material"]],"b":[["TED%3AAF-A0A1K2ISG6-F1-model_v4_TED01","TED novel fold AF-A0A1K2ISG6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:161879","l":"Corynebacterium kroppenstedtii","na":1,"nb":1,"a":[["breast-bto-0000149.html","breast"]],"b":[["TED%3AAF-A0A2N6TDE9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N6TDE9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1639133","l":"Citrobacter portucalensis","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["TED%3AAF-A0A7I7D4I9-F1-model_v4_TED01","TED novel fold AF-A0A7I7D4I9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1648404","l":"Aurantiacibacter atlanticus","na":1,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["TED%3AAF-A0A0H4VAN8-F1-model_v4_TED01","TED novel fold AF-A0A0H4VAN8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1690","l":"Bifidobacterium pseudolongum subsp. globosum","na":1,"nb":1,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["TED%3AAF-A0A4Q5B3M5-F1-model_v4_TED01","TED novel fold AF-A0A4Q5B3M5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1703352","l":"Bacteroides sp. SM23_62","na":1,"nb":1,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["TED%3AAF-A0A0S8JVR9-F1-model_v4_TED02","TED novel fold AF-A0A0S8JVR9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1703960","l":"Rhizobium sp. N113","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["TED%3AAF-A0A192M071-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A192M071-F1-model_v4_TED01"]]},{"id":"NCBITaxon:170673","l":"Vibrio kanaloae","na":1,"nb":1,"a":[["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["TED%3AAF-A0A4U1Z3U9-F1-model_v4_TED01","TED novel fold AF-A0A4U1Z3U9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1716141","l":"Streptomyces jeddahensis","na":1,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["TED%3AAF-A0A177HQP2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A177HQP2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:171674","l":"Inquilinus limosus","na":1,"nb":1,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"]],"b":[["TED%3AAF-A0A211ZKE4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A211ZKE4-F1-model_v4_TED03"]]},{"id":"NCBITaxon:172044","l":"Sphingomonas yabuuchiae","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["TED%3AAF-A0A147IMF7-F1-model_v4_TED02","TED novel fold AF-A0A147IMF7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1727163","l":"Algoriphagus sanaruensis","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["TED%3AAF-A0A142ENK3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142ENK3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:173365","l":"Methylobacter tundripaludum","na":1,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A2S6HGL6-F1-model_v4_TED02","TED novel fold AF-A0A2S6HGL6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:173959","l":"Brevibacillus invocatus","na":1,"nb":1,"a":[["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"]],"b":[["TED%3AAF-A0A3M8C5C7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M8C5C7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:174","l":"Leptospira borgpetersenii","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["Pfam%3APF01548","Transposase"]]},{"id":"NCBITaxon:1761780","l":"Butyrivibrio sp. ob235","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["TED%3AAF-A0A1H7I3V4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H7I3V4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1761884","l":"Prevotella sp. khp1","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["TED%3AAF-A0A1H0Y2B2-F1-model_v4_TED01","TED novel fold AF-A0A1H0Y2B2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1767","l":"Mycobacterium intracellulare","na":1,"nb":1,"a":[["co-culture-habitatmech-bacdive-ff945d8a69.html","Co-culture"]],"b":[["Pfam%3APF18914","Domain of unknown function (DUF5666)"]]},{"id":"NCBITaxon:177437","l":"Desulforapulum autotrophicum HRM2","na":1,"nb":1,"a":[["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["TED%3AAF-C0QA36-F1-model_v4_TED03","TED novel fold AF-C0QA36-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1795630","l":"Frondihabitans sp. PAMC 28766","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["TED%3AAF-A0A126Z0C8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A126Z0C8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1797220","l":"Alphaproteobacteria bacterium RIFCSPHIGHO2_02_FULL_46_13","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["TED%3AAF-A0A1F2Z3M8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F2Z3M8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1798185","l":"Pseudobutyrivibrio sp. UC1225","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["TED%3AAF-A0A1I5GI49-F1-model_v4_TED01","TED novel fold AF-A0A1I5GI49-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1799789","l":"Paraglaciecola hydrolytica","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["TED%3AAF-A0A135ZZ80-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A135ZZ80-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1812935","l":"Enterobacter roggenkampii","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["TED%3AAF-A0A7D6U4G9-F1-model_v4_TED01","TED novel fold AF-A0A7D6U4G9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1829","l":"Rhodococcus rhodochrous","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"]]},{"id":"NCBITaxon:1843237","l":"Sphingomonas prati","na":1,"nb":1,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["TED%3AAF-A0A7W9BV99-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W9BV99-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1852","l":"Saccharomonospora viridis","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["TED%3AAF-A0A837DC99-F1-model_v4_TED01","TED novel fold AF-A0A837DC99-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1869214","l":"Rheinheimera sp.","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["TED%3AAF-A0A2D5RQK8-F1-model_v4_TED01","TED novel fold AF-A0A2D5RQK8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1870902","l":"Leifsonia sp.","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["TED%3AAF-A0A2E0SSA9-F1-model_v4_TED02","TED novel fold AF-A0A2E0SSA9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1871043","l":"Variovorax sp.","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["TED%3AAF-A0A2E9BKC8-F1-model_v4_TED02","TED novel fold AF-A0A2E9BKC8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:187303","l":"Methylocystis hydrogenophila","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["TED%3AAF-J7QPR6-F1-model_v4_TED01","TED novel fold AF-J7QPR6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:187327","l":"Acidaminococcus intestini","na":1,"nb":1,"a":[["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["TED%3AAF-C0WBZ8-F1-model_v4_TED01","TED highly-symmetric fold AF-C0WBZ8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1881060","l":"Clostridium sp. USBA 49","na":1,"nb":1,"a":[["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"]],"b":[["TED%3AAF-A0A1T4XFS6-F1-model_v4_TED02","TED novel fold AF-A0A1T4XFS6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1882750","l":"Burkholderia sp. GAS332","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["TED%3AAF-A0A1N6LVR0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1N6LVR0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1882752","l":"Singulisphaera sp. GP187","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["TED%3AAF-A0A1N6KHP4-F1-model_v4_TED02","TED novel fold AF-A0A1N6KHP4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1882832","l":"Paenibacillaceae bacterium GAS479","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["TED%3AAF-A0A1H1ZWX8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H1ZWX8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1888168","l":"Curvibacter sp.","na":1,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["TED%3AAF-A0A433BGD3-F1-model_v4_TED01","TED novel fold AF-A0A433BGD3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1890675","l":"Herbaspirillum sp.","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["TED%3AAF-A0A2E7PAN6-F1-model_v4_TED02","TED novel fold AF-A0A2E7PAN6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1904","l":"Streptomyces cyaneus","na":1,"nb":1,"a":[["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["Pfam%3APF04673","Polyketide synthesis cyclase"]]},{"id":"NCBITaxon:1907575","l":"Jatrophihabitans sp. GAS493","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["TED%3AAF-A0A286EQ27-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A286EQ27-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1908","l":"Streptomyces globisporus","na":1,"nb":1,"a":[["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["PROSITE%3APS00953","Glycosyl hydrolases family 25 active site signature"]]},{"id":"NCBITaxon:191292","l":"Rhodococcus aetherivorans","na":1,"nb":1,"a":[["bcp-1-cell-bto-0002728.html","BCP-1 cell"]],"b":[["TED%3AAF-N1LZY7-F1-model_v4_TED01","TED highly-symmetric fold AF-N1LZY7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1926630","l":"Pseudoblastomonas halimionae","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["TED%3AAF-A0A6I4U4Z5-F1-model_v4_TED03","TED novel fold AF-A0A6I4U4Z5-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1935","l":"Streptomyces violaceoruber","na":1,"nb":1,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["Pfam%3APF03559","NDP-hexose 2,3-dehydratase"]]},{"id":"NCBITaxon:1938870","l":"Candidatus Pantoea floridensis","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["TED%3AAF-A0A286BLC6-F1-model_v4_TED02","TED novel fold AF-A0A286BLC6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:195913","l":"Loktanella salsilacus","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["TED%3AAF-A0A1I4CVX6-F1-model_v4_TED03","TED novel fold AF-A0A1I4CVX6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1967","l":"Streptomyces kanamyceticus","na":1,"nb":1,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Pfam%3APF13579","Glycosyl transferase 4-like domain"]]},{"id":"NCBITaxon:2024860","l":"Spongiibacter sp.","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["TED%3AAF-A0A2D7WH13-F1-model_v4_TED03","TED novel fold AF-A0A2D7WH13-F1-model_v4_TED03"]]},{"id":"NCBITaxon:203","l":"Campylobacter rectus","na":1,"nb":1,"a":[["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["TED%3AAF-A0A6G5QQ81-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A6G5QQ81-F1-model_v4_TED04"]]},{"id":"NCBITaxon:2030","l":"Kibdelosporangium aridum","na":1,"nb":1,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["TED%3AAF-A0A1W1ZQL0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W1ZQL0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2051","l":"Mobiluncus curtisii","na":1,"nb":1,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["TED%3AAF-A0A7Y0UGC2-F1-model_v4_TED01","TED novel fold AF-A0A7Y0UGC2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:205918","l":"Pseudomonas syringae pv. syringae B728a","na":1,"nb":1,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["Pfam%3APF15457","Type III T3SS secreted effector HopW1-1/HopPmaA"]]},{"id":"NCBITaxon:2125990","l":"Pseudodesulfovibrio hydrargyri","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["TED%3AAF-A0A1J5N6X0-F1-model_v4_TED02","TED novel fold AF-A0A1J5N6X0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:212717","l":"Clostridium tetani E88","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["Pfam%3APF08453","Peptidase family M9 N-terminal"]]},{"id":"NCBITaxon:2148","l":"Acholeplasma laidlawii","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["TED%3AAF-A0A553IH20-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A553IH20-F1-model_v4_TED04"]]},{"id":"NCBITaxon:2164","l":"Methanobacterium sp.","na":1,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"]],"b":[["TED%3AAF-A0A6A8RVR7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6A8RVR7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:216591","l":"Burkholderia cenocepacia J2315","na":1,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["Pfam%3APF04199","Putative cyclase"]]},{"id":"NCBITaxon:216778","l":"Stenotrophomonas rhizophila","na":1,"nb":1,"a":[["style-bto-0001313.html","style"]],"b":[["TED%3AAF-A0A023XYG6-F1-model_v4_TED02","TED novel fold AF-A0A023XYG6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:216895","l":"Vibrio vulnificus CMCP6","na":1,"nb":1,"a":[["hela-cell-bto-0000567.html","HeLa cell"]],"b":[["Pfam%3APF18416","N-acetylglucosamine binding protein domain 2"]]},{"id":"NCBITaxon:218208","l":"Desulfatibacillum aliphaticivorans","na":1,"nb":1,"a":[["watercourse-envo-00000029.html","watercourse"]],"b":[["TED%3AAF-B8FC96-F1-model_v4_TED02","TED highly-symmetric fold AF-B8FC96-F1-model_v4_TED02"]]},{"id":"NCBITaxon:223788","l":"Balnearium lithotrophicum","na":1,"nb":1,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["TED%3AAF-A0A521D8E7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A521D8E7-F1-model_v4_TED03"]]},{"id":"NCBITaxon:2242","l":"Halobacterium salinarum","na":1,"nb":1,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["Pfam%3APF07232","Putative rep protein (DUF1424)"]]},{"id":"NCBITaxon:225324","l":"Enhydrobacter aerosaccus","na":1,"nb":1,"a":[["nectar-bto-0000537.html","nectar"]],"b":[["TED%3AAF-A0A1T4TCH1-F1-model_v4_TED01","TED novel fold AF-A0A1T4TCH1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:225849","l":"Shewanella piezotolerans WP3","na":1,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["TED%3AAF-B8CPC1-F1-model_v4_TED01","TED novel fold AF-B8CPC1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:225991","l":"Comamonas aquatica","na":1,"nb":1,"a":[["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["TED%3AAF-A0A8B0TG78-F1-model_v4_TED02","TED novel fold AF-A0A8B0TG78-F1-model_v4_TED02"]]},{"id":"NCBITaxon:227605","l":"Methylocella tundrae","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A4U8Z7R3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8Z7R3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:229919","l":"Anaerolinea thermolimosa","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["TED%3AAF-A0A3D1JEJ6-F1-model_v4_TED03","TED novel fold AF-A0A3D1JEJ6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:230089","l":"Photorhabdus thracensis","na":1,"nb":1,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["TED%3AAF-A0A0F7LMP9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F7LMP9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:231438","l":"Desulfoluna butyratoxydans","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["TED%3AAF-A0A4U8YKH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8YKH3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:234621","l":"Rhodococcus erythropolis PR4","na":1,"nb":1,"a":[["joint-bto-0001686.html","joint"]],"b":[["TED%3AAF-C0ZLI2-F1-model_v4_TED01","TED novel fold AF-C0ZLI2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:243160","l":"Burkholderia mallei ATCC 23344","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["PROSITE%3APS01306","Uncharacterized protein family UPF0054 signature"]]},{"id":"NCBITaxon:243265","l":"Photorhabdus laumondii subsp. laumondii TTO1","na":1,"nb":1,"a":[["carcass-bto-0001965.html","carcass"]],"b":[["Pfam%3APF07927","HicA toxin of bacterial toxin-antitoxin,"]]},{"id":"NCBITaxon:246432","l":"Staphylococcus equorum","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["TED%3AAF-A0A1B1GAW5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1B1GAW5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:250","l":"Chryseobacterium gleum","na":1,"nb":1,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["TED%3AAF-A0A448B167-F1-model_v4_TED02","TED novel fold AF-A0A448B167-F1-model_v4_TED02"]]},{"id":"NCBITaxon:252514","l":"Microbulbifer thermotolerans","na":1,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["Pfam%3APF18040","beta porphyranase A C-terminal"]]},{"id":"NCBITaxon:253239","l":"Ethanoligenens harbinense","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["TED%3AAF-A0A386XVY3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A386XVY3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:257363","l":"Rickettsia typhi str. Wilmington","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Pfam%3APF12334","Rickettsia outer membrane protein B, passenger domain"]]},{"id":"NCBITaxon:259564","l":"Methanococcoides burtonii DSM 6242","na":1,"nb":1,"a":[["hypolimnion-envo-00002130.html","hypolimnion"]],"b":[["TED%3AAF-Q12W09-F1-model_v4_TED02","TED novel fold AF-Q12W09-F1-model_v4_TED02"]]},{"id":"NCBITaxon:266117","l":"Rubrobacter xylanophilus DSM 9941","na":1,"nb":1,"a":[["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["TED%3AAF-Q1AVL5-F1-model_v4_TED02","TED highly-symmetric fold AF-Q1AVL5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:267671","l":"Leptospira interrogans serovar Copenhageni str. Fiocruz L1-130","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["Pfam%3APF05262","Borrelia P83/100 protein"]]},{"id":"NCBITaxon:267747","l":"Cutibacterium acnes KPA171202","na":1,"nb":1,"a":[["sebaceous-gland-bto-0001980.html","sebaceous gland"]],"b":[["Pfam%3APF27542","ArfC"]]},{"id":"NCBITaxon:272831","l":"Neisseria meningitidis FAM18","na":1,"nb":1,"a":[["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["Pfam%3APF27460","ATP phosphoribosyltransferase subunit HisZ C-terminal domain"]]},{"id":"NCBITaxon:272951","l":"Rickettsia sibirica 246","na":1,"nb":1,"a":[["endothelial-cell-bto-0001176.html","endothelial cell"]],"b":[["Pfam%3APF22203","Surface cell antigen Sca2 helical repeat"]]},{"id":"NCBITaxon:273384","l":"Brevibacterium aurantiacum","na":1,"nb":1,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["TED%3AAF-A0A556CK32-F1-model_v4_TED02","TED novel fold AF-A0A556CK32-F1-model_v4_TED02"]]},{"id":"NCBITaxon:278992","l":"Streptomyces ambofaciens ATCC 23877","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF00553","Cellulose binding domain"]]},{"id":"NCBITaxon:28031","l":"Lysinibacillus fusiformis","na":1,"nb":1,"a":[["organic-waste-material-envo-00002873.html","organic waste material"]],"b":[["TED%3AAF-A0A1E4QZZ2-F1-model_v4_TED04","TED novel fold AF-A0A1E4QZZ2-F1-model_v4_TED04"]]},{"id":"NCBITaxon:28113","l":"Prevotella heparinolytica","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["TED%3AAF-A0A449I749-F1-model_v4_TED01","TED novel fold AF-A0A449I749-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28181","l":"Magnetovibrio blakemorei","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["TED%3AAF-A0A1E5Q9I9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E5Q9I9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28198","l":"Aliarcobacter cryaerophilus","na":1,"nb":1,"a":[["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["TED%3AAF-A0A2S9SPY1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S9SPY1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:284579","l":"Salibacterium salarium","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["TED%3AAF-A0A3R9PEH4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R9PEH4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:288681","l":"Bacillus cereus E33L","na":1,"nb":1,"a":[["carcass-envo-00002033.html","carcass"]],"b":[["TED%3AAF-Q4V119-F1-model_v4_TED01","TED highly-symmetric fold AF-Q4V119-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28892","l":"Methanofollis liminatans DSM 4140","na":1,"nb":1,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["TED%3AAF-J0S6K4-F1-model_v4_TED02","TED novel fold AF-J0S6K4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:291645","l":"Bacteroides nordii","na":1,"nb":1,"a":[["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["TED%3AAF-A0A413VD19-F1-model_v4_TED01","TED novel fold AF-A0A413VD19-F1-model_v4_TED01"]]},{"id":"NCBITaxon:29303","l":"Streptomyces cattleya","na":1,"nb":1,"a":[["clay-envo-00002982.html","clay"]],"b":[["Pfam%3APF22636","Fluoroacetyl-CoA-specific thioesterase"]]},{"id":"NCBITaxon:29422","l":"Legionella brunensis","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["TED%3AAF-A0A0W0RZW2-F1-model_v4_TED03","TED novel fold AF-A0A0W0RZW2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:29447","l":"Xanthomonas albilineans","na":1,"nb":1,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["TED%3AAF-A0A6P1SIK7-F1-model_v4_TED02","TED novel fold AF-A0A6P1SIK7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:29554","l":"Metamycoplasma canadense","na":1,"nb":1,"a":[["inflammatory-cell-bto-0003861.html","inflammatory cell"]],"b":[["TED%3AAF-A0A077LB01-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A077LB01-F1-model_v4_TED02"]]},{"id":"NCBITaxon:29557","l":"Mycoplasmopsis gallinarum","na":1,"nb":1,"a":[["medial-geniculate-nucleus-bto-0002670.html","medial geniculate nucleus"]],"b":[["TED%3AAF-A0A168RG78-F1-model_v4_TED05","TED novel fold AF-A0A168RG78-F1-model_v4_TED05"]]},{"id":"NCBITaxon:29581","l":"Janthinobacterium lividum","na":1,"nb":1,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["TED%3AAF-A0A853SDQ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A853SDQ0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:298","l":"Pseudomonas marginalis","na":1,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["PROSITE%3APS00330","Hemolysin-type calcium-binding region signature"]]},{"id":"NCBITaxon:299767","l":"Enterobacter ludwigii","na":1,"nb":1,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["TED%3AAF-W0BYN9-F1-model_v4_TED01","TED highly-symmetric fold AF-W0BYN9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:300","l":"Ectopseudomonas mendocina","na":1,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"]],"b":[["TED%3AAF-A0A550EU84-F1-model_v4_TED01","TED novel fold AF-A0A550EU84-F1-model_v4_TED01"]]},{"id":"NCBITaxon:301154","l":"Sphingomonas oligophenolica","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["TED%3AAF-A0A502CIK8-F1-model_v4_TED02","TED novel fold AF-A0A502CIK8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:304","l":"Roseateles saccharophilus","na":1,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"]],"b":[["Pfam%3APF09081","Glucan 1,4-alpha-maltotetraohydrolase, domain C"]]},{"id":"NCBITaxon:306537","l":"Corynebacterium jeikeium K411","na":1,"nb":1,"a":[["bone-marrow-bto-0000141.html","bone marrow"]],"b":[["TED%3AAF-Q4JSH9-F1-model_v4_TED02","TED novel fold AF-Q4JSH9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:315277","l":"Chlamydia trachomatis A/HAR-13","na":1,"nb":1,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["Pfam%3APF05745","Chlamydia 15 kDa cysteine-rich outer membrane protein (CRPA)"]]},{"id":"NCBITaxon:315750","l":"Bacillus pumilus SAFR-032","na":1,"nb":1,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["Pfam%3APF06569","Protein of unknown function (DUF1128)"]]},{"id":"NCBITaxon:317010","l":"Enterococcus canintestini","na":1,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"]],"b":[["TED%3AAF-A0A1L8R2Z2-F1-model_v4_TED01","TED novel fold AF-A0A1L8R2Z2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:317577","l":"Deinococcus ficus","na":1,"nb":1,"a":[["waste-treatment-plant-envo-00002272.html","waste treatment plant"]],"b":[["TED%3AAF-A0A221T2Q9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A221T2Q9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:318751","l":"Westerdykella ornata","na":1,"nb":1,"a":[["desert-sand-envo-00005800.html","desert sand"]],"b":[["TED%3AAF-A0A6A6JM44-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6A6JM44-F1-model_v4_TED02"]]},{"id":"NCBITaxon:32019","l":"Campylobacter fetus subsp. fetus","na":1,"nb":1,"a":[["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["TED%3AAF-A0A0S4SB94-F1-model_v4_TED05","TED novel fold AF-A0A0S4SB94-F1-model_v4_TED05"]]},{"id":"NCBITaxon:32021","l":"Campylobacter jejuni subsp. doylei","na":1,"nb":1,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["TED%3AAF-A0A381D4M6-F1-model_v4_TED01","TED novel fold AF-A0A381D4M6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:320388","l":"Burkholderia mallei SAVP1","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Pfam%3APF27460","ATP phosphoribosyltransferase subunit HisZ C-terminal domain"]]},{"id":"NCBITaxon:321267","l":"Shimia marina","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["TED%3AAF-A0A0P1EQT4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0P1EQT4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:321985","l":"Pseudoduganella lutea","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["TED%3AAF-A0A4V0Z4E3-F1-model_v4_TED01","TED novel fold AF-A0A4V0Z4E3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:323259","l":"Methanospirillum hungatei JF-1","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["Pfam%3APF01864","CDP-archaeol synthase"]]},{"id":"NCBITaxon:326424","l":"Frankia alni ACN14a","na":1,"nb":1,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["Pfam%3APF14403","Circularly permuted ATP-grasp type 2"]]},{"id":"NCBITaxon:335284","l":"Psychrobacter cryohalolentis K5","na":1,"nb":1,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["Pfam%3APF10414","Sirohaem synthase dimerisation region"]]},{"id":"NCBITaxon:336203","l":"Sphingobium fuliginis","na":1,"nb":1,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["TED%3AAF-A0A4Q4J272-F1-model_v4_TED01","TED novel fold AF-A0A4Q4J272-F1-model_v4_TED01"]]},{"id":"NCBITaxon:33967","l":"Leuconostoc mesenteroides subsp. mesenteroides","na":1,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"]],"b":[["Pfam%3APF03390","2-hydroxycarboxylate transporter family"]]},{"id":"NCBITaxon:340","l":"Xanthomonas campestris pv. campestris","na":1,"nb":1,"a":[["waste-treatment-plant-envo-00002272.html","waste treatment plant"]],"b":[["Pfam%3APF22059","Glucuronosyltransferase GumK, N-terminal domain"]]},{"id":"NCBITaxon:340047","l":"Mycoplasma capricolum subsp. capricolum ATCC 27343","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Pfam%3APF27879","Helix-rich protein"]]},{"id":"NCBITaxon:340345","l":"Actinoalloteichus hymeniacidonis","na":1,"nb":1,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["TED%3AAF-A0A7W9UEM7-F1-model_v4_TED01","TED novel fold AF-A0A7W9UEM7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:343509","l":"Sodalis glossinidius str. 'morsitans'","na":1,"nb":1,"a":[["needle-bto-0000917.html","needle"]],"b":[["Pfam%3APF04345","Chorismate lyase"]]},{"id":"NCBITaxon:345631","l":"Geobacter argillaceus","na":1,"nb":1,"a":[["clay-envo-00002982.html","clay"]],"b":[["TED%3AAF-A0A562VM24-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A562VM24-F1-model_v4_TED02"]]},{"id":"NCBITaxon:351607","l":"Acidothermus cellulolyticus 11B","na":1,"nb":1,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["Pfam%3APF10647","Lipoprotein LpqB beta-propeller domain"]]},{"id":"NCBITaxon:353152","l":"","na":1,"nb":1,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"]],"b":[["TED%3AAF-Q5CXF2-F1-model_v4_TED01","TED highly-symmetric fold AF-Q5CXF2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:356829","l":"Bifidobacterium tsurumiense","na":1,"nb":1,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["TED%3AAF-A0A6L5X0P9-F1-model_v4_TED01","TED novel fold AF-A0A6L5X0P9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:357244","l":"Orientia tsutsugamushi str. Boryong","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Pfam%3APF01745","Isopentenyl transferase"]]},{"id":"NCBITaxon:35752","l":"Actinoplanes philippinensis","na":1,"nb":1,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["TED%3AAF-A0A1I2HI82-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I2HI82-F1-model_v4_TED02"]]},{"id":"NCBITaxon:35787","l":"Limosilactobacillus pontis","na":1,"nb":1,"a":[["pig-manure-envo-00003860.html","pig manure"]],"b":[["TED%3AAF-A0A2J6NPS8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2J6NPS8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:360911","l":"Exiguobacterium sp. AT1b","na":1,"nb":1,"a":[["joint-bto-0001686.html","joint"]],"b":[["TED%3AAF-C4L6T8-F1-model_v4_TED04","TED highly-symmetric fold AF-C4L6T8-F1-model_v4_TED04"]]},{"id":"NCBITaxon:362787","l":"Candidatus Protochlamydia amoebophila","na":1,"nb":1,"a":[["endosymbiont-habitatmech-bacdive-7d840c7ddc.html","Endosymbiont"]],"b":[["TED%3AAF-A0A0C1H7Y9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0C1H7Y9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:36746","l":"Pseudomonas cichorii","na":1,"nb":1,"a":[["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["TED%3AAF-A0A3M4VH83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M4VH83-F1-model_v4_TED01"]]},{"id":"NCBITaxon:36841","l":"Terrisporobacter glycolicus","na":1,"nb":1,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["TED%3AAF-A0A1I3PG81-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I3PG81-F1-model_v4_TED01"]]},{"id":"NCBITaxon:370554","l":"Streptococcus pyogenes MGAS10750","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["Pfam%3APF04260","Protein of unknown function (DUF436)"]]},{"id":"NCBITaxon:370973","l":"Runella defluvii","na":1,"nb":1,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["TED%3AAF-A0A7W5ZNZ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W5ZNZ4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:373","l":"Gillisella vitis","na":1,"nb":1,"a":[["trunk-bto-0001493.html","trunk"]],"b":[["TED%3AAF-A0A368P0R2-F1-model_v4_TED01","TED novel fold AF-A0A368P0R2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:373672","l":"Chryseobacterium gambrini","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["TED%3AAF-A0A1N7P9B3-F1-model_v4_TED02","TED novel fold AF-A0A1N7P9B3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:37372","l":"Helicobacter bilis","na":1,"nb":1,"a":[["ht-29-cell-bto-0000182.html","HT-29 cell"]],"b":[["TED%3AAF-A0A4U8UA27-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8UA27-F1-model_v4_TED01"]]},{"id":"NCBITaxon:375177","l":"Haemophilus influenzae 3655","na":1,"nb":1,"a":[["b-lymphocyte-cell-line-bto-0001522.html","B-lymphocyte cell line"]],"b":[["Pfam%3APF16747","Surface-adhesin protein E"]]},{"id":"NCBITaxon:375451","l":"Roseobacter denitrificans OCh 114","na":1,"nb":1,"a":[["inlet-envo-00000475.html","inlet"]],"b":[["TED%3AAF-Q164W9-F1-model_v4_TED02","TED highly-symmetric fold AF-Q164W9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:378543","l":"Tumebacillus permanentifrigoris","na":1,"nb":1,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["TED%3AAF-A0A316DIT3-F1-model_v4_TED01","TED novel fold AF-A0A316DIT3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:381754","l":"Pseudomonas paraeruginosa PA7","na":1,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["Pfam%3APF05985","Ethanolamine ammonia-lyase light chain (EutC)"]]},{"id":"NCBITaxon:38301","l":"Corynebacterium minutissimum","na":1,"nb":1,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["TED%3AAF-A0A376D050-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A376D050-F1-model_v4_TED01"]]},{"id":"NCBITaxon:38304","l":"Corynebacterium tuberculostearicum","na":1,"nb":1,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["TED%3AAF-A0A7U0H937-F1-model_v4_TED01","TED novel fold AF-A0A7U0H937-F1-model_v4_TED01"]]},{"id":"NCBITaxon:384602","l":"Micrococcus flavus","na":1,"nb":1,"a":[["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["TED%3AAF-A0A7W7PAI2-F1-model_v4_TED01","TED novel fold AF-A0A7W7PAI2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:384765","l":"Roseibium aggregatum IAM 12614","na":1,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["Pfam%3APF04199","Putative cyclase"]]},{"id":"NCBITaxon:388396","l":"Aliivibrio fischeri MJ11","na":1,"nb":1,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["Pfam%3APF21868","GlcNAc-binding protein A, third domain"]]},{"id":"NCBITaxon:391038","l":"Paraburkholderia phymatum STM815","na":1,"nb":1,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["PROSITE%3APS00921","Nitrilases / cyanide hydratase active site signature"]]},{"id":"NCBITaxon:391904","l":"","na":1,"nb":1,"a":[["breast-bto-0000149.html","breast"]],"b":[["Pfam%3APF25528","Domain of unknown function (DUF7917)"]]},{"id":"NCBITaxon:392015","l":"Paenalicyclobacillus macrosporangiidus","na":1,"nb":1,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["TED%3AAF-A0A1I7LHN3-F1-model_v4_TED02","TED novel fold AF-A0A1I7LHN3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:393595","l":"Alcanivorax borkumensis SK2","na":1,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["TED%3AAF-Q0VNH7-F1-model_v4_TED01","TED highly-symmetric fold AF-Q0VNH7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:394935","l":"Chromobacterium haemolyticum","na":1,"nb":1,"a":[["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["TED%3AAF-A0A1W0CCE1-F1-model_v4_TED01","TED novel fold AF-A0A1W0CCE1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["Pfam%3APF13282","Domain of unknown function (DUF4070)"]]},{"id":"NCBITaxon:395963","l":"Beijerinckia indica subsp. indica ATCC 9039","na":1,"nb":1,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["TED%3AAF-B2IFK3-F1-model_v4_TED03","TED novel fold AF-B2IFK3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:39650","l":"Cellvibrio mixtus","na":1,"nb":1,"a":[["compost-envo-00002170.html","compost"]],"b":[["TED%3AAF-A0A266QDL6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A266QDL6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:399549","l":"Metallosphaera sedula DSM 5348","na":1,"nb":1,"a":[["solfatara-envo-00000217.html","solfatara"]],"b":[["Pfam%3APF18195","GatD N-terminal domain"]]},{"id":"NCBITaxon:399579","l":"Thermogymnomonas acidicola","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["TED%3AAF-A0A830FZ95-F1-model_v4_TED01","TED novel fold AF-A0A830FZ95-F1-model_v4_TED01"]]},{"id":"NCBITaxon:40041","l":"Streptococcus equi subsp. zooepidemicus","na":1,"nb":1,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["Pfam%3APF02388","FemAB family"]]},{"id":"NCBITaxon:40215","l":"Acinetobacter junii","na":1,"nb":1,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["TED%3AAF-A0A8B4RWB2-F1-model_v4_TED01","TED novel fold AF-A0A8B4RWB2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:403833","l":"Petrotoga mobilis SJ95","na":1,"nb":1,"a":[["oil-envo-00002985.html","oil"]],"b":[["Pfam%3APF19328","2,4-diaminopentanoate dehydrogenase C-terminal domain"]]},{"id":"NCBITaxon:405440","l":"Xylella fastidiosa M12","na":1,"nb":1,"a":[["valley-envo-00000100.html","valley"]],"b":[["Pfam%3APF04977","Septum formation initiator"]]},{"id":"NCBITaxon:411154","l":"Christiangramia forsetii KT0803","na":1,"nb":1,"a":[["joint-bto-0001686.html","joint"]],"b":[["Pfam%3APF14109","GldH lipoprotein"]]},{"id":"NCBITaxon:411684","l":"Hoeflea phototrophica DFL-43","na":1,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["TED%3AAF-A9D4N0-F1-model_v4_TED02","TED novel fold AF-A9D4N0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:414684","l":"Rhodospirillum centenum SW","na":1,"nb":1,"a":[["cyst-bto-0000320.html","cyst"]],"b":[["Pfam%3APF27469","ATP synthase epsilon chain C-terminal domain"]]},{"id":"NCBITaxon:420953","l":"Paraburkholderia megapolitana","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["proteintraitsmech%3AELIFE109154_GrbD","GrbD-type graminine biosynthesis protein family"]]},{"id":"NCBITaxon:422289","l":"Beggiatoa sp. PS","na":1,"nb":1,"a":[["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-A7BS81-F1-model_v4_TED01","TED highly-symmetric fold AF-A7BS81-F1-model_v4_TED01"]]},{"id":"NCBITaxon:427317","l":"Saccharolobus islandicus M.14.25","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["Pfam%3APF05165","GTP cyclohydrolase III"]]},{"id":"NCBITaxon:436308","l":"Nitrosopumilus maritimus SCM1","na":1,"nb":1,"a":[["aquarium-envo-00002196.html","aquarium"]],"b":[["Pfam%3APF19045","Ligase-CoA domain"]]},{"id":"NCBITaxon:436717","l":"Acinetobacter oleivorans DR1","na":1,"nb":1,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["TED%3AAF-D8JEH7-F1-model_v4_TED03","TED novel fold AF-D8JEH7-F1-model_v4_TED03"]]},{"id":"NCBITaxon:43675","l":"Rothia mucilaginosa","na":1,"nb":1,"a":[["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["TED%3AAF-A0A291DCT6-F1-model_v4_TED03","TED novel fold AF-A0A291DCT6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:43677","l":"Promicromonospora citrea","na":1,"nb":1,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["TED%3AAF-A0A7Y2QR62-F1-model_v4_TED01","TED novel fold AF-A0A7Y2QR62-F1-model_v4_TED01"]]},{"id":"NCBITaxon:43768","l":"Corynebacterium matruchotii","na":1,"nb":1,"a":[["archeological-site-envo-00000564.html","archeological site"]],"b":[["TED%3AAF-A0A6H9XP04-F1-model_v4_TED01","TED novel fold AF-A0A6H9XP04-F1-model_v4_TED01"]]},{"id":"NCBITaxon:44008","l":"Enterococcus cecorum","na":1,"nb":1,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["TED%3AAF-A0A200I1A2-F1-model_v4_TED01","TED novel fold AF-A0A200I1A2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:446469","l":"Sanguibacter keddieii DSM 10542","na":1,"nb":1,"a":[["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-D1BCE8-F1-model_v4_TED01","TED highly-symmetric fold AF-D1BCE8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:447217","l":"Anaeromyxobacter sp. K","na":1,"nb":1,"a":[["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-B4UAH6-F1-model_v4_TED03","TED highly-symmetric fold AF-B4UAH6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:451","l":"Legionella micdadei","na":1,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"]],"b":[["TED%3AAF-A0A098GE29-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A098GE29-F1-model_v4_TED01"]]},{"id":"NCBITaxon:45243","l":"Capnocytophaga haemolytica","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["TED%3AAF-A0A0X8JC19-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0X8JC19-F1-model_v4_TED01"]]},{"id":"NCBITaxon:453","l":"Legionella feeleii","na":1,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["TED%3AAF-A0A378IZL6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A378IZL6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:454006","l":"Epilithonimonas hungarica","na":1,"nb":1,"a":[["oil-envo-00002985.html","oil"]],"b":[["TED%3AAF-A0A1G7J6K0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1G7J6K0-F1-model_v4_TED03"]]},{"id":"NCBITaxon:455488","l":"Anaeromyxobacter dehalogenans 2CP-1","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["TED%3AAF-B8J8V7-F1-model_v4_TED01","TED novel fold AF-B8J8V7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:4558","l":"Sorghum bicolor","na":1,"nb":1,"a":[["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["TED%3AAF-A0A1W0W5T3-F1-model_v4_TED02","TED novel fold AF-A0A1W0W5T3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:457570","l":"Natranaerobius thermophilus JW/NM-WN-LF","na":1,"nb":1,"a":[["wadi-envo-00000031.html","wadi"]],"b":[["TED%3AAF-B2A1S1-F1-model_v4_TED02","TED highly-symmetric fold AF-B2A1S1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:459529","l":"Sphingobacterium siyangense","na":1,"nb":1,"a":[["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["TED%3AAF-A0A420FHV4-F1-model_v4_TED01","TED novel fold AF-A0A420FHV4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:46224","l":"Heyndrickxia sporothermodurans","na":1,"nb":1,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["TED%3AAF-A0A2T6EYG9-F1-model_v4_TED03","TED novel fold AF-A0A2T6EYG9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:463","l":"Fluoribacter dumoffii","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["TED%3AAF-A0A377G6U6-F1-model_v4_TED01","TED novel fold AF-A0A377G6U6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:463301","l":"Halomonas korlensis","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["TED%3AAF-A0A1I7FWW8-F1-model_v4_TED01","TED novel fold AF-A0A1I7FWW8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:469616","l":"Fusobacterium mortiferum ATCC 9817","na":1,"nb":1,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["TED%3AAF-C3WAL7-F1-model_v4_TED02","TED novel fold AF-C3WAL7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:471514","l":"","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["TED%3AAF-A0A0N8PN50-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0N8PN50-F1-model_v4_TED03"]]},{"id":"NCBITaxon:474949","l":"Granulicella aggregans","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A7W7ZBP1-F1-model_v4_TED02","TED novel fold AF-A0A7W7ZBP1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:478","l":"Moraxella nonliquefaciens","na":1,"nb":1,"a":[["disease-habitatmech-bacdive-c659c7e939.html","Disease"]],"b":[["TED%3AAF-A0A1B8PJM7-F1-model_v4_TED01","TED novel fold AF-A0A1B8PJM7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:481877","l":"","na":1,"nb":1,"a":[["microsporidian-bto-0003132.html","microsporidian"]],"b":[["TED%3AAF-B7XL67-F1-model_v4_TED01","TED novel fold AF-B7XL67-F1-model_v4_TED01"]]},{"id":"NCBITaxon:485916","l":"Desulfofarcimen acetoxidans DSM 771","na":1,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"]],"b":[["TED%3AAF-C8W2Y9-F1-model_v4_TED01","TED highly-symmetric fold AF-C8W2Y9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:488447","l":"Burkholderia contaminans","na":1,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["TED%3AAF-A0A3N8RI51-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N8RI51-F1-model_v4_TED01"]]},{"id":"NCBITaxon:490899","l":"Desulfurococcus amylolyticus 1221n","na":1,"nb":1,"a":[["shoreline-envo-00000486.html","shoreline"]],"b":[["TED%3AAF-B8D4A7-F1-model_v4_TED01","TED novel fold AF-B8D4A7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:491207","l":"Chryseobacterium oleae","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["TED%3AAF-A0A1I5BFN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5BFN6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:491952","l":"Marinomonas posidonica IVIA-Po-181","na":1,"nb":1,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["proteintraitsmech%3AELIFE109154_SalSyn","Metallophore-associated bifunctional salicylate synthase family"]]},{"id":"NCBITaxon:508767","l":"Clostridium botulinum E3 str. Alaska E43","na":1,"nb":1,"a":[["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["Pfam%3APF04029","2-phosphosulpholactate phosphatase"]]},{"id":"NCBITaxon:508771","l":"Toxoplasma gondii (strain ATCC 50611 / Me49)","na":1,"nb":1,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"]],"b":[["PROSITE%3APS01005","Formate and nitrite transporters signature 1"]]},{"id":"NCBITaxon:52771","l":"Actinomyces howellii","na":1,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["TED%3AAF-A0A3S4R0T4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S4R0T4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:535722","l":"","na":1,"nb":1,"a":[["mountain-pass-envo-00000084.html","mountain pass"]],"b":[["TED%3AAF-E4V3G8-F1-model_v4_TED01","TED highly-symmetric fold AF-E4V3G8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:544406","l":"Helicobacter pylori B128","na":1,"nb":1,"a":[["duodenum-bto-0000365.html","duodenum"]],"b":[["PROSITE%3APS01292","Uncharacterized protein family UPF0036 signature"]]},{"id":"NCBITaxon:544580","l":"Actinomyces oris","na":1,"nb":1,"a":[["archeological-site-envo-00000564.html","archeological site"]],"b":[["TED%3AAF-A0A1Q8WF60-F1-model_v4_TED01","TED novel fold AF-A0A1Q8WF60-F1-model_v4_TED01"]]},{"id":"NCBITaxon:54736","l":"Salmonella bongori","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["TED%3AAF-A0A698W123-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A698W123-F1-model_v4_TED02"]]},{"id":"NCBITaxon:553480","l":"Photorhabdus asymbiotica subsp. asymbiotica ATCC 43949","na":1,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"]],"b":[["Pfam%3APF06804","Outer membrane protein assembly factor BamC-like C-terminal domain"]]},{"id":"NCBITaxon:554290","l":"Salmonella enterica subsp. enterica serovar Paratyphi A str. AKU_12601","na":1,"nb":1,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["Pfam%3APF08254","Threonine leader peptide"]]},{"id":"NCBITaxon:558173","l":"Corynebacterium doosanense CAU 212 = DSM 45436","na":1,"nb":1,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["TED%3AAF-A0A097IJJ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A097IJJ3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:563008","l":"Segatella oris C735","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["TED%3AAF-D7NFV4-F1-model_v4_TED01","TED novel fold AF-D7NFV4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:566549","l":"Corynebacterium matruchotii ATCC 33806","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["TED%3AAF-C0E5R2-F1-model_v4_TED02","TED highly-symmetric fold AF-C0E5R2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:568106","l":"Marinobacterium lutimaris","na":1,"nb":1,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["TED%3AAF-A0A1H5Y6J0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1H5Y6J0-F1-model_v4_TED04"]]},{"id":"NCBITaxon:569860","l":"Methylovirgula ligni","na":1,"nb":1,"a":[["wood-envo-00002040.html","wood"]],"b":[["TED%3AAF-A0A3D9Z4S9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D9Z4S9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:570156","l":"Pseudoalteromonas lipolytica","na":1,"nb":1,"a":[["leaf-lamina-bto-0000719.html","leaf lamina"]],"b":[["TED%3AAF-A0A1I7CGN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I7CGN6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:573065","l":"Asticcacaulis excentricus CB 48","na":1,"nb":1,"a":[["pond-envo-00000033.html","pond"]],"b":[["TED%3AAF-E8RUW8-F1-model_v4_TED01","TED novel fold AF-E8RUW8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:573737","l":"Pandoraea oxalativorans","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["TED%3AAF-A0A0G3IC85-F1-model_v4_TED03","TED novel fold AF-A0A0G3IC85-F1-model_v4_TED03"]]},{"id":"NCBITaxon:582855","l":"Streptomyces haliclonae","na":1,"nb":1,"a":[["shoreline-envo-00000486.html","shoreline"]],"b":[["TED%3AAF-A0A7W7BYP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W7BYP7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:585054","l":"Escherichia fergusonii ATCC 35469","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Pfam%3APF08364","Bacterial translation initiation factor IF-2 associated region"]]},{"id":"NCBITaxon:5866","l":"Babesia bigemina","na":1,"nb":1,"a":[["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["TED%3AAF-A0A061D3T3-F1-model_v4_TED01","TED novel fold AF-A0A061D3T3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:589924","l":"Ferroglobus placidus DSM 10642","na":1,"nb":1,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["TED%3AAF-D3S1W1-F1-model_v4_TED01","TED novel fold AF-D3S1W1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:592015","l":"Acetomicrobium hydrogeniformans ATCC BAA-1850","na":1,"nb":1,"a":[["village-biome-envo-01000246.html","village biome"]],"b":[["TED%3AAF-A0A0T5X7S6-F1-model_v4_TED02","TED novel fold AF-A0A0T5X7S6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:59203","l":"Salmonella enterica subsp. arizonae","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["TED%3AAF-A0A3S4K1T2-F1-model_v4_TED01","TED novel fold AF-A0A3S4K1T2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:604330","l":"Parafannyhessea umbonata","na":1,"nb":1,"a":[["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"]],"b":[["TED%3AAF-A0A6N7XAR1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N7XAR1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:60894","l":"Saccharopolyspora spinosa","na":1,"nb":1,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF03559","NDP-hexose 2,3-dehydratase"]]},{"id":"NCBITaxon:610130","l":"[Clostridium] saccharolyticum WM1","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["TED%3AAF-D9RA58-F1-model_v4_TED03","TED highly-symmetric fold AF-D9RA58-F1-model_v4_TED03"]]},{"id":"NCBITaxon:61645","l":"Enterobacter asburiae","na":1,"nb":1,"a":[["bone-marrow-bto-0000141.html","bone marrow"]],"b":[["TED%3AAF-A0A8B3U934-F1-model_v4_TED02","TED novel fold AF-A0A8B3U934-F1-model_v4_TED02"]]},{"id":"NCBITaxon:629741","l":"Kingella oralis ATCC 51147","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["TED%3AAF-C4GEH4-F1-model_v4_TED01","TED highly-symmetric fold AF-C4GEH4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:634436","l":"Marisediminitalea aggregata","na":1,"nb":1,"a":[["mangrove-biome-envo-01000181.html","mangrove biome"]],"b":[["TED%3AAF-A0A1M5JV92-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M5JV92-F1-model_v4_TED01"]]},{"id":"NCBITaxon:634500","l":"Erwinia billingiae Eb661","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["PROSITE%3APS01090","TatD deoxyribonuclease family signature 2"]]},{"id":"NCBITaxon:636","l":"Edwardsiella tarda","na":1,"nb":1,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["Pfam%3APF05791","Bacillus haemolytic enterotoxin (HBL)"]]},{"id":"NCBITaxon:638300","l":"Cardiobacterium hominis ATCC 15826","na":1,"nb":1,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["TED%3AAF-C8NBX0-F1-model_v4_TED02","TED novel fold AF-C8NBX0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:639283","l":"Ancylobacter novellus DSM 506","na":1,"nb":1,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["TED%3AAF-D6ZYI9-F1-model_v4_TED01","TED highly-symmetric fold AF-D6ZYI9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:641491","l":"Pseudodesulfovibrio mercurii","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["Pfam%3APF03599","CO dehydrogenase/acetyl-CoA synthase delta subunit"]]},{"id":"NCBITaxon:645463","l":"Clostridioides difficile R20291","na":1,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["Pfam%3APF04392","ABC transporter substrate binding protein"]]},{"id":"NCBITaxon:649760","l":"Segatella oris F0302","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["TED%3AAF-D1QV56-F1-model_v4_TED02","TED novel fold AF-D1QV56-F1-model_v4_TED02"]]},{"id":"NCBITaxon:65","l":"Herpetosiphon aurantiacus","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["Pfam%3APF09520","Type II restriction endonuclease, HinfI"]]},{"id":"NCBITaxon:652103","l":"Rhodopseudomonas palustris DX-1","na":1,"nb":1,"a":[["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-E6VQ23-F1-model_v4_TED02","TED novel fold AF-E6VQ23-F1-model_v4_TED02"]]},{"id":"NCBITaxon:656914","l":"Desulfonispora thiosulfatigenes DSM 11270","na":1,"nb":1,"a":[["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["TED%3AAF-A0A1W1UJ66-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W1UJ66-F1-model_v4_TED01"]]},{"id":"NCBITaxon:659425","l":"Thermoclostridium caenicola","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["TED%3AAF-A0A1M6H7B8-F1-model_v4_TED02","TED novel fold AF-A0A1M6H7B8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:663917","l":"Geobacter sulfurreducens KN400","na":1,"nb":1,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF13435","Cytochrome c554 and c-prime"]]},{"id":"NCBITaxon:679191","l":"Prevotella amnii CRIS 21A-A","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["TED%3AAF-E1GW40-F1-model_v4_TED02","TED highly-symmetric fold AF-E1GW40-F1-model_v4_TED02"]]},{"id":"NCBITaxon:679937","l":"Bacteroides coprosuis DSM 18011","na":1,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"]],"b":[["TED%3AAF-F3ZUW4-F1-model_v4_TED02","TED novel fold AF-F3ZUW4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:688269","l":"Pseudothermotoga thermarum DSM 5069","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["TED%3AAF-F7YY41-F1-model_v4_TED02","TED highly-symmetric fold AF-F7YY41-F1-model_v4_TED02"]]},{"id":"NCBITaxon:688867","l":"Ohtaekwangia koreensis","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["TED%3AAF-A0A1T5MFB7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1T5MFB7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:693661","l":"Archaeoglobus veneficus SNP6","na":1,"nb":1,"a":[["black-smoker-envo-00000218.html","black smoker"]],"b":[["TED%3AAF-F2KRD1-F1-model_v4_TED02","TED highly-symmetric fold AF-F2KRD1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:69392","l":"Stenotrophomonas sp.","na":1,"nb":1,"a":[["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["TED%3AAF-A0A6N8APF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8APF4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:694433","l":"Saprospira grandis DSM 2844","na":1,"nb":1,"a":[["carapace-bto-0001701.html","carapace"]],"b":[["TED%3AAF-J0P380-F1-model_v4_TED01","TED highly-symmetric fold AF-J0P380-F1-model_v4_TED01"]]},{"id":"NCBITaxon:69974","l":"Mesorhizobium plurifarium","na":1,"nb":1,"a":[["hair-follicle-outer-root-sheath-bto-0003969.html","hair follicle outer root sheath"]],"b":[["PROSITE%3APS01349","Nodulation protein nodA signature"]]},{"id":"NCBITaxon:702459","l":"Bifidobacterium bifidum PRL2010","na":1,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["TED%3AAF-A0A0H3E8C8-F1-model_v4_TED01","TED novel fold AF-A0A0H3E8C8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:706587","l":"Desulfomonile tiedjei DSM 6799","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["TED%3AAF-I4CB34-F1-model_v4_TED01","TED highly-symmetric fold AF-I4CB34-F1-model_v4_TED01"]]},{"id":"NCBITaxon:722","l":"Actinobacillus seminis","na":1,"nb":1,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"]],"b":[["TED%3AAF-A0A263HFT1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A263HFT1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:7222","l":"Drosophila grimshawi","na":1,"nb":1,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"]],"b":[["TED%3AAF-B4K2M8-F1-model_v4_TED01","TED novel fold AF-B4K2M8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["TED%3AAF-A0A5C7XIK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7XIK2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:726","l":"Haemophilus haemolyticus","na":1,"nb":1,"a":[["trunk-uberon-0002100.html","trunk"]],"b":[["TED%3AAF-A0A1B8PEV3-F1-model_v4_TED01","TED novel fold AF-A0A1B8PEV3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:742013","l":"Delftia sp. Cs1-4","na":1,"nb":1,"a":[["waterfall-envo-00000040.html","waterfall"]],"b":[["TED%3AAF-F6AQI2-F1-model_v4_TED01","TED highly-symmetric fold AF-F6AQI2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:74547","l":"Prochlorococcus marinus str. MIT 9313","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Pfam%3APF11266","Long-chain fatty aldehyde decarbonylase"]]},{"id":"NCBITaxon:74969","l":"Ferroplasma acidiphilum","na":1,"nb":1,"a":[["factory-envo-01000536.html","factory"]],"b":[["TED%3AAF-A0A7K4FNL3-F1-model_v4_TED01","TED novel fold AF-A0A7K4FNL3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:755731","l":"Clostridium sp. BNL1100","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["TED%3AAF-H2JEL4-F1-model_v4_TED02","TED highly-symmetric fold AF-H2JEL4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:758","l":"Rodentibacter pneumotropicus","na":1,"nb":1,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["TED%3AAF-A0A6L9GQA8-F1-model_v4_TED01","TED novel fold AF-A0A6L9GQA8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:758847","l":"Leptospira santarosai serovar Shermani str. LT 821","na":1,"nb":1,"a":[["renal-tubule-bto-0000343.html","renal tubule"]],"b":[["TED%3AAF-A0A097ES00-F1-model_v4_TED01","TED novel fold AF-A0A097ES00-F1-model_v4_TED01"]]},{"id":"NCBITaxon:761659","l":"Salinibacter ruber M8","na":1,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["TED%3AAF-D5H5E0-F1-model_v4_TED03","TED novel fold AF-D5H5E0-F1-model_v4_TED03"]]},{"id":"NCBITaxon:768066","l":"Halomonas elongata DSM 2581","na":1,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["Pfam%3APF06339","Ectoine synthase"]]},{"id":"NCBITaxon:795797","l":"Halalkalicoccus jeotgali B3","na":1,"nb":1,"a":[["food-product-foodon-00001002.html","food product"]],"b":[["TED%3AAF-D8JCM3-F1-model_v4_TED01","TED highly-symmetric fold AF-D8JCM3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:796937","l":"Peptoanaerobacter stomatis","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["TED%3AAF-G9XC71-F1-model_v4_TED01","TED novel fold AF-G9XC71-F1-model_v4_TED01"]]},{"id":"NCBITaxon:797292","l":"Sphingobacterium alimentarium","na":1,"nb":1,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["TED%3AAF-A0A4R3VZ52-F1-model_v4_TED08","TED novel fold AF-A0A4R3VZ52-F1-model_v4_TED08"]]},{"id":"NCBITaxon:79967","l":"Erwinia pyrifoliae","na":1,"nb":1,"a":[["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["Pfam%3APF09589","HrpA pilus formation protein"]]},{"id":"NCBITaxon:82380","l":"Microbacterium oxydans","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["TED%3AAF-A0A4Y4GD74-F1-model_v4_TED02","TED novel fold AF-A0A4Y4GD74-F1-model_v4_TED02"]]},{"id":"NCBITaxon:839","l":"Xylanibacter ruminicola","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["TED%3AAF-A0A1M7DCP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M7DCP8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:85336","l":"Rothia nasimurium","na":1,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"]],"b":[["proteintraitsmech%3AELIFE109154_EntC","EntC-type catechol biosynthesis isochorismate synthase family"]]},{"id":"NCBITaxon:85831","l":"Bacteroides acidifaciens","na":1,"nb":1,"a":[["colon-bto-0000269.html","colon"]],"b":[["TED%3AAF-A0A7K3MGB4-F1-model_v4_TED01","TED novel fold AF-A0A7K3MGB4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:861865","l":"Edaphosphingomonas laterariae","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["TED%3AAF-A0A239BGP1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A239BGP1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:863372","l":"Herbaspirillum huttiense","na":1,"nb":1,"a":[["factory-envo-01000536.html","factory"]],"b":[["TED%3AAF-A0A4P7ADR5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P7ADR5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:863522","l":"Bryocella elongata","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A1H5ZBZ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H5ZBZ9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:865937","l":"Gillisia limnaea DSM 15749","na":1,"nb":1,"a":[["dry-valley-envo-00000128.html","dry valley"]],"b":[["Pfam%3APF27061","Bacterial gasdermin-associated protease"]]},{"id":"NCBITaxon:866499","l":"Cloacibacillus evryensis DSM 19522","na":1,"nb":1,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["TED%3AAF-A0A010YSJ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A010YSJ4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:869210","l":"Marinithermus hydrothermalis DSM 14884","na":1,"nb":1,"a":[["seamount-envo-00000264.html","seamount"]],"b":[["TED%3AAF-F2NQ34-F1-model_v4_TED01","TED novel fold AF-F2NQ34-F1-model_v4_TED01"]]},{"id":"NCBITaxon:883","l":"Nitratidesulfovibrio vulgaris str. 'Miyazaki F'","na":1,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"]],"b":[["TED%3AAF-B8DPA3-F1-model_v4_TED01","TED novel fold AF-B8DPA3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:888743","l":"Prevotella multiformis DSM 16608","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["TED%3AAF-F0F5W8-F1-model_v4_TED02","TED novel fold AF-F0F5W8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:926690","l":"Haloplanus natans DSM 17983","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["Pfam%3APF28161","Fusexin 1"]]},{"id":"NCBITaxon:930943","l":"","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["TED%3AAF-F0NJI0-F1-model_v4_TED01","TED novel fold AF-F0NJI0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:93222","l":"Pandoraea sputorum","na":1,"nb":1,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"]],"b":[["TED%3AAF-A0A5E5BHU5-F1-model_v4_TED02","TED novel fold AF-A0A5E5BHU5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:936138","l":"Phorcysia thermohydrogeniphila","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["TED%3AAF-A0A4V2PDB0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A4V2PDB0-F1-model_v4_TED04"]]},{"id":"NCBITaxon:9483","l":"Callithrix jacchus","na":1,"nb":1,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["Pfam%3APF21049","Cilia- and flagella-associated protein 69, ARM repeat"]]},{"id":"NCBITaxon:94868","l":"Lacrimispora algidixylanolytica","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["TED%3AAF-A0A419SY83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A419SY83-F1-model_v4_TED01"]]},{"id":"NCBITaxon:95485","l":"Burkholderia stabilis","na":1,"nb":1,"a":[["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["TED%3AAF-A0A4V1PSL6-F1-model_v4_TED02","TED novel fold AF-A0A4V1PSL6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:980271","l":"Aporhodopirellula rubra","na":1,"nb":1,"a":[["epibiont-habitatmech-bacdive-f4eb470a03.html","Epibiont"]],"b":[["TED%3AAF-A0A7W5H7H8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7W5H7H8-F1-model_v4_TED03"]]},{"id":"NCBITaxon:993414","l":"Naumannella halotolerans","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["TED%3AAF-A0A4R7J3W9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R7J3W9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:999552","l":"Leisingera methylohalidivorans DSM 14336","na":1,"nb":1,"a":[["marine-neritic-zone-envo-00000206.html","marine neritic zone"]],"b":[["TED%3AAF-V9VZA3-F1-model_v4_TED02","TED novel fold AF-V9VZA3-F1-model_v4_TED02"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/HabitatMech--TaxonMech.json b/assets/fleet/edges/HabitatMech--TaxonMech.json new file mode 100644 index 0000000..8d9930a --- /dev/null +++ b/assets/fleet/edges/HabitatMech--TaxonMech.json @@ -0,0 +1 @@ +{"a":"HabitatMech","b":"TaxonMech","base":{"HabitatMech":"https://culturebotai.github.io/HabitatMech/pages/habitats/","TaxonMech":"https://culturebotai.github.io/TaxonMech/pages/taxon.html?id="},"n":6423,"by":{"NCBITaxon":6423},"terms":[{"id":"NCBITaxon:2","l":"Bacteria","na":40,"nb":605695,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["factory-envo-01000536.html","factory"],["adult-bto-0001043.html","adult"]],"b":[["NCBITaxon%3A119160","2,3-D degrading bacterium NHC2"],["NCBITaxon%3A119159","2,3-D degrading bacterium NHG3"],["NCBITaxon%3A103498","2,4-D-degrading bacterium 001"],["NCBITaxon%3A103499","2,4-D-degrading bacterium 007"],["NCBITaxon%3A103492","2,4-D-degrading bacterium 010"],["NCBITaxon%3A103495","2,4-D-degrading bacterium 012"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":40,"nb":4740,"a":[["liquid-water-envo-00002006.html","liquid water"],["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["laboratory-facility-envo-01001406.html","laboratory facility"],["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["biofilm-bto-0002690.html","biofilm"]],"b":[["NCBITaxon%3A475088","Methanosphaerula palustris"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1389955","Escherichia coli ATCC 35150"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A574","Klebsiella pneumoniae subsp. ozaenae"],["NCBITaxon%3A1218098","Klebsiella pneumoniae subsp. ozaenae NBRC 105683"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":36,"nb":3868,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["bay-envo-00000032.html","bay"],["freshwater-biome-envo-00000873.html","freshwater biome"],["liquid-water-envo-00002006.html","liquid water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A196023","Aeromonas hydrophila subsp. hydrophila"],["NCBITaxon%3A380703","Aeromonas hydrophila subsp. hydrophila ATCC 7966"],["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A35703","Citrobacter amalonaticus"],["NCBITaxon%3A163202","Corynebacterium appendicis"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":28,"nb":557,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["liquid-water-envo-00002006.html","liquid water"],["watercourse-envo-00000029.html","watercourse"],["compost-envo-00002170.html","compost"],["hospital-envo-00002173.html","hospital"],["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A2073169","Chromobacterium alticapitis"],["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1454219","Pseudomonas aeruginosa 059A"],["NCBITaxon%3A1421538","Pseudomonas aeruginosa 0812"],["NCBITaxon%3A1421545","Pseudomonas aeruginosa 0822"],["NCBITaxon%3A1421531","Pseudomonas aeruginosa 0C2E"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":27,"nb":168,"a":[["small-river-biome-envo-00000890.html","small river biome"],["factory-envo-01000536.html","factory"],["organic-waste-material-envo-00002873.html","organic waste material"],["leaf-po-0025034.html","leaf"],["milk-uberon-0001913.html","milk"],["rhizosphere-envo-00005801.html","rhizosphere"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A572264","Bacillus cereus 03BB102"],["NCBITaxon%3A451709","Bacillus cereus 03BB108"],["NCBITaxon%3A526967","Bacillus cereus 172560W"],["NCBITaxon%3A363751","Bacillus cereus 31673"],["NCBITaxon%3A526979","Bacillus cereus 95/8201"]]},{"id":"NCBITaxon:1485","l":"Clostridium","na":26,"nb":3036,"a":[["biofilm-envo-00002034.html","biofilm"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["alimentary-canal-bto-0000058.html","alimentary canal"],["colon-bto-0000269.html","colon"]],"b":[["NCBITaxon%3A288965","Acetivibrio clariflavus"],["NCBITaxon%3A720554","Acetivibrio clariflavus DSM 19732"],["NCBITaxon%3A461876","Alkaliphilus oremlandii"],["NCBITaxon%3A259063","Anaerocolumna jejuensis"],["NCBITaxon%3A1121322","Anaerocolumna jejuensis DSM 15929"],["NCBITaxon%3A264463","Anaerosporobacter mobilis"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":25,"nb":118,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-water-body-envo-00001999.html","marine water body"],["sea-water-envo-00002149.html","sea water"],["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["NCBITaxon%3A69966","Macrococcoides caseolyticum"],["NCBITaxon%3A1822","Nocardia vaccinii"],["NCBITaxon%3A1210098","Nocardia vaccinii NBRC 15922"],["NCBITaxon%3A1282","Staphylococcus epidermidis"],["NCBITaxon%3A1235440","Staphylococcus epidermidis 12142587"],["NCBITaxon%3A1000590","Staphylococcus epidermidis 14.1.R1.SE"]]},{"id":"NCBITaxon:1279","l":"Staphylococcus","na":23,"nb":9540,"a":[["adult-bto-0001043.html","adult"],["cecum-bto-0000166.html","cecum"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["head-bto-0000282.html","head"]],"b":[["NCBITaxon%3A196884","Arctic sea ice bacterum ARK9973"],["NCBITaxon%3A91995","bacterium #2 from Psoroptes ovis"],["NCBITaxon%3A2875764","Macrococcus armenti"],["NCBITaxon%3A150056","Mammaliicoccus fleurettii"],["NCBITaxon%3A42858","Mammaliicoccus lentus"],["NCBITaxon%3A246568","marine bacterium 13691"]]},{"id":"NCBITaxon:1301","l":"Streptococcus","na":23,"nb":4599,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["head-bto-0000282.html","head"]],"b":[["NCBITaxon%3A2838763","Candidatus Streptococcus faecavium"],["NCBITaxon%3A3711814","Candidatus Streptococcus gullae"],["NCBITaxon%3A2962908","Candidatus Streptococcus sp. bin.001"],["NCBITaxon%3A33945","Enterococcus avium"],["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A1358","Lactococcus lactis"]]},{"id":"NCBITaxon:1328","l":"Streptococcus anginosus","na":21,"nb":23,"a":[["bone-element-uberon-0001474.html","bone element"],["brain-bto-0000142.html","brain"],["dental-plaque-uberon-0016482.html","dental plaque"],["dorsum-bto-0001713.html","dorsum"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["forearm-bto-0001447.html","forearm"]],"b":[["NCBITaxon%3A1328","Streptococcus anginosus"],["NCBITaxon%3A1163301","Streptococcus anginosus 1505"],["NCBITaxon%3A742820","Streptococcus anginosus 1_2_62CV"],["NCBITaxon%3A862970","Streptococcus anginosus C1051"],["NCBITaxon%3A862971","Streptococcus anginosus C238"],["NCBITaxon%3A1403946","Streptococcus anginosus DORA_7"]]},{"id":"NCBITaxon:1578","l":"Lactobacillus","na":20,"nb":2379,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["blood-bto-0000089.html","blood"],["brain-bto-0000142.html","brain"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["hand-bto-0004668.html","hand"]],"b":[["NCBITaxon%3A2838636","Candidatus Lactobacillus pullistercoris"],["NCBITaxon%3A2838724","Candidatus Paralactobacillus gallistercoris"],["NCBITaxon%3A1612","Companilactobacillus farciminis"],["NCBITaxon%3A3435293","Faecalibacterium langellae"],["NCBITaxon%3A1614","Fructilactobacillus fructivorans"],["NCBITaxon%3A1597","Lacticaseibacillus paracasei"]]},{"id":"NCBITaxon:1386","l":"Bacillus","na":19,"nb":33976,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["crop-bto-0000301.html","crop"],["dorsum-bto-0001713.html","dorsum"],["hand-bto-0004668.html","hand"],["head-bto-0000282.html","head"],["juvenile-bto-0002168.html","juvenile"]],"b":[["NCBITaxon%3A208551","alkaliphilic bacterium AF112"],["NCBITaxon%3A33934","Anoxybacillus flavithermus"],["NCBITaxon%3A1185649","Anoxybacillus flavithermus subsp. flavithermus"],["NCBITaxon%3A28030","Bacillus acidopullulyticus"],["NCBITaxon%3A33017","Bacillus acidovorans"],["NCBITaxon%3A203540","Bacillus aeolius"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":19,"nb":19,"a":[["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["bone-element-uberon-0001474.html","bone element"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["NCBITaxon%3A1402","Bacillus licheniformis"],["NCBITaxon%3A1169411","Bacillus licheniformis 10-1-A"],["NCBITaxon%3A44097","Bacillus licheniformis 2709"],["NCBITaxon%3A1169412","Bacillus licheniformis 5-2-D"],["NCBITaxon%3A1368424","Bacillus licheniformis CG-B52"],["NCBITaxon%3A1232672","Bacillus licheniformis CGMCC 3963"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":18,"nb":79,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["NCBITaxon%3A1931223","Caballeronia sp."],["NCBITaxon%3A89065","Pseudomonas abietaniphila"],["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1123912","Pseudomonas auricularis"],["NCBITaxon%3A930166","Pseudomonas brassicacearum"],["NCBITaxon%3A129817","Pseudomonas brenneri"]]},{"id":"NCBITaxon:1263","l":"Ruminococcus","na":17,"nb":405,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["alimentary-canal-bto-0000058.html","alimentary canal"],["cecum-bto-0000166.html","cecum"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"]],"b":[["NCBITaxon%3A2838748","Candidatus Ruminococcus avistercoris"],["NCBITaxon%3A3083130","Candidatus Ruminococcus equi"],["NCBITaxon%3A2838749","Candidatus Ruminococcus gallistercoris"],["NCBITaxon%3A3401956","Candidatus Ruminococcus hominiciens"],["NCBITaxon%3A2838750","Candidatus Ruminococcus intestinipullorum"],["NCBITaxon%3A3400595","Candidatus Ruminococcus primaciens"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":17,"nb":375,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["hospital-envo-00002173.html","hospital"],["egg-food-product-foodon-00001274.html","egg food product"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A1352","Enterococcus faecium"],["NCBITaxon%3A1391465","Enterococcus faecium 10/96A"],["NCBITaxon%3A1259824","Enterococcus faecium 13.SD.W.09"],["NCBITaxon%3A1429401","Enterococcus faecium 17282"],["NCBITaxon%3A565659","Enterococcus faecium 1,141,733"]]},{"id":"NCBITaxon:135621","l":"Pseudomonadaceae","na":16,"nb":33948,"a":[["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["ileum-bto-0000620.html","ileum"],["intestine-bto-0000648.html","intestine"],["juvenile-bto-0002168.html","juvenile"],["leaf-bto-0000713.html","leaf"]],"b":[["NCBITaxon%3A300685","antibiotic-resistant bacterium RA4"],["NCBITaxon%3A300699","antibiotic-resistant bacterium RD5"],["NCBITaxon%3A300700","antibiotic-resistant bacterium RD6"],["NCBITaxon%3A300701","antibiotic-resistant bacterium RD8"],["NCBITaxon%3A43263","Aquipseudomonas alcaligenes"],["NCBITaxon%3A1405803","Aquipseudomonas alcaligenes MRY13-0052"]]},{"id":"NCBITaxon:186802","l":"Eubacteriales","na":16,"nb":7591,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["alimentary-canal-bto-0000058.html","alimentary canal"],["blood-bto-0000089.html","blood"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"]],"b":[["NCBITaxon%3A1766203","Abyssisolibacter fermentans"],["NCBITaxon%3A2684878","Abyssisolibacter sp."],["NCBITaxon%3A3035615","Abyssisolibacter sp. ZYX002"],["NCBITaxon%3A2912264","Acetanaerobacter sp."],["NCBITaxon%3A258515","Acetanaerobacterium elongatum"],["NCBITaxon%3A1872089","Acetanaerobacterium sp."]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":17,"nb":16,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["fruit-bto-0000486.html","fruit"],["leaf-po-0025034.html","leaf"],["rhizosphere-envo-00005801.html","rhizosphere"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["NCBITaxon%3A114136","Paenibacillus jamilae"],["NCBITaxon%3A225917","Paenibacillus massiliensis"],["NCBITaxon%3A1406","Paenibacillus polymyxa"],["NCBITaxon%3A1333863","Paenibacillus polymyxa 1-43"],["NCBITaxon%3A1414587","Paenibacillus polymyxa A18"],["NCBITaxon%3A1206104","Paenibacillus polymyxa ATCC 12321"]]},{"id":"NCBITaxon:117563","l":"Granulicatella","na":15,"nb":54,"a":[["cecum-bto-0000166.html","cecum"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["head-bto-0000282.html","head"],["intestine-bto-0000648.html","intestine"]],"b":[["NCBITaxon%3A2962907","Candidatus Granulicatella gullae"],["NCBITaxon%3A46124","Granulicatella adiacens"],["NCBITaxon%3A638301","Granulicatella adiacens ATCC 49175"],["NCBITaxon%3A1073361","Granulicatella adiacens CC94D"],["NCBITaxon%3A137733","Granulicatella balaenopterae"],["NCBITaxon%3A137732","Granulicatella elegans"]]},{"id":"NCBITaxon:40324","l":"Stenotrophomonas maltophilia","na":15,"nb":44,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["catheter-device-ncit-c50344.html","Catheter Device"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["seedling-bto-0001228.html","seedling"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["NCBITaxon%3A13689","Sphingomonas paucimobilis"],["NCBITaxon%3A1292134","Stenotrophomonas africana"],["NCBITaxon%3A3384461","Stenotrophomonas beteli"],["NCBITaxon%3A86189","Stenotrophomonas hibiscicola"],["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A1288954","Stenotrophomonas maltophilia 503"]]},{"id":"NCBITaxon:1045010","l":"Escherichia coli O157","na":18,"nb":15,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["liquid-water-envo-00002006.html","liquid water"],["animal-house-envo-00003040.html","animal house"],["river-envo-00000022.html","river"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biofilm-material-envo-01000156.html","biofilm material"]],"b":[["NCBITaxon%3A1051347","Escherichia coli 3.4880"],["NCBITaxon%3A1051348","Escherichia coli 7.1982"],["NCBITaxon%3A1051346","Escherichia coli 95.0083"],["NCBITaxon%3A1051353","Escherichia coli ATCC 700728"],["NCBITaxon%3A1045010","Escherichia coli O157"],["NCBITaxon%3A1446606","Escherichia coli O157: str. 2010EL-2044"]]},{"id":"NCBITaxon:1268","l":"Micrococcaceae","na":14,"nb":10291,"a":[["cecum-bto-0000166.html","cecum"],["crop-bto-0000301.html","crop"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["leaf-bto-0000713.html","leaf"]],"b":[["NCBITaxon%3A291968","Acaricomes phytoseiuli"],["NCBITaxon%3A1120917","Acaricomes phytoseiuli DSM 14247"],["NCBITaxon%3A1872088","Acaricomes sp."],["NCBITaxon%3A1026830","Acaricomes sp. RHF117"],["NCBITaxon%3A196885","Arctic sea ice bacterium ARK9983"],["NCBITaxon%3A37921","Arthrobacter agilis"]]},{"id":"NCBITaxon:13687","l":"Sphingomonas","na":14,"nb":4913,"a":[["crop-bto-0000301.html","crop"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["ileum-bto-0000620.html","ileum"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"]],"b":[["NCBITaxon%3A196160","Arctic sea ice bacterium ARK10016"],["NCBITaxon%3A3121369","Candidatus Sphingomonas colombiensis"],["NCBITaxon%3A2838760","Candidatus Sphingomonas excrementigallinarum"],["NCBITaxon%3A3121370","Candidatus Sphingomonas phytovorans"],["NCBITaxon%3A1996","Microtetraspora glauca"],["NCBITaxon%3A135719","Sphingobium amiense"]]},{"id":"NCBITaxon:171549","l":"Bacteroidales","na":14,"nb":4513,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["alimentary-canal-bto-0000058.html","alimentary canal"],["blood-bto-0000089.html","blood"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"]],"b":[["NCBITaxon%3A979970","Acetobacteroides hydrogenigenes"],["NCBITaxon%3A1872095","Acetobacteroides sp."],["NCBITaxon%3A2764708","Acetobacteroides sp. MIZ14"],["NCBITaxon%3A1653170","Acetofilamentum rigidum"],["NCBITaxon%3A1872096","Acetofilamentum sp."],["NCBITaxon%3A1653171","Acetothermus paucivorans"]]},{"id":"NCBITaxon:173","l":"Leptospira interrogans","na":14,"nb":312,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["small-river-biome-envo-00000890.html","small river biome"],["surface-water-envo-00002042.html","surface water"]],"b":[["NCBITaxon%3A173","Leptospira interrogans"],["NCBITaxon%3A860644","Leptospira interrogans serovar Akiyami"],["NCBITaxon%3A428408","Leptospira interrogans serovar Anhui"],["NCBITaxon%3A211882","Leptospira interrogans serovar Australis"],["NCBITaxon%3A1085541","Leptospira interrogans serovar Australis str. 200703203"],["NCBITaxon%3A1308441","Leptospira interrogans serovar Australis str. LT2080"]]},{"id":"NCBITaxon:1590","l":"Lactiplantibacillus plantarum","na":14,"nb":36,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["food-fermented-foodon-00001258.html","food (fermented)"],["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"],["breast-bto-0000149.html","breast"],["colonic-epithelium-bto-0001709.html","colonic epithelium"],["epithelial-cell-bto-0000414.html","epithelial cell"]],"b":[["NCBITaxon%3A271881","Lactiplantibacillus argentoratensis"],["NCBITaxon%3A1423831","Lactiplantibacillus argentoratensis DSM 16365"],["NCBITaxon%3A60520","Lactiplantibacillus paraplantarum"],["NCBITaxon%3A1590","Lactiplantibacillus plantarum"],["NCBITaxon%3A1327988","Lactiplantibacillus plantarum 16"],["NCBITaxon%3A1399793","Lactiplantibacillus plantarum 19L3"]]},{"id":"NCBITaxon:1598","l":"Limosilactobacillus reuteri","na":14,"nb":23,"a":[["cecum-mucosa-bto-0000213.html","cecum mucosa"],["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["ileum-bto-0000620.html","ileum"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"]],"b":[["NCBITaxon%3A1581","Lentilactobacillus buchneri"],["NCBITaxon%3A2767931","Lentilactobacillus sp."],["NCBITaxon%3A1613","Limosilactobacillus fermentum"],["NCBITaxon%3A1598","Limosilactobacillus reuteri"],["NCBITaxon%3A1273150","Limosilactobacillus reuteri 1063"],["NCBITaxon%3A525341","Limosilactobacillus reuteri CF48-3A"]]},{"id":"NCBITaxon:1580","l":"Levilactobacillus brevis","na":14,"nb":17,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["organic-waste-material-envo-00002873.html","organic waste material"],["research-facility-envo-00000469.html","research facility"],["food-fermented-foodon-00001258.html","food (fermented)"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["caco-2-cell-bto-0000195.html","CACO-2 cell"]],"b":[["NCBITaxon%3A1590","Lactiplantibacillus plantarum"],["NCBITaxon%3A2767846","Lactiplantibacillus sp."],["NCBITaxon%3A1591","Lactobacillus sp."],["NCBITaxon%3A1581","Lentilactobacillus buchneri"],["NCBITaxon%3A1580","Levilactobacillus brevis"],["NCBITaxon%3A1384064","Levilactobacillus brevis AG48"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":14,"nb":16,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["compost-envo-00002170.html","compost"],["organic-waste-material-envo-00002873.html","organic waste material"],["larva-bto-0000707.html","larva"],["rhizosphere-envo-00005801.html","rhizosphere"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A1408","Bacillus pumilus"],["NCBITaxon%3A536229","Bacillus pumilus ATCC 7061"],["NCBITaxon%3A1227811","Bacillus pumilus BA06"],["NCBITaxon%3A1189615","Bacillus pumilus BL8"],["NCBITaxon%3A1350468","Bacillus pumilus CCMA-560"],["NCBITaxon%3A1330463","Bacillus pumilus CIMFR"]]},{"id":"NCBITaxon:1350","l":"Enterococcus","na":13,"nb":4515,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["dorsum-bto-0001713.html","dorsum"],["hand-bto-0004668.html","hand"],["intestine-bto-0000648.html","intestine"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"]],"b":[["NCBITaxon%3A2838561","Candidatus Enterococcus avicola"],["NCBITaxon%3A1834193","Candidatus Enterococcus clewellii"],["NCBITaxon%3A2815329","Candidatus Enterococcus courvalinii"],["NCBITaxon%3A1834192","Candidatus Enterococcus dunnyi"],["NCBITaxon%3A2815324","Candidatus Enterococcus ferrettii"],["NCBITaxon%3A1857217","Candidatus Enterococcus huntleyi"]]},{"id":"NCBITaxon:186803","l":"Lachnospiraceae","na":13,"nb":2553,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["alimentary-canal-bto-0000058.html","alimentary canal"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["ileum-bto-0000620.html","ileum"]],"b":[["NCBITaxon%3A2941233","Acetatifactor aquisgranensis"],["NCBITaxon%3A879566","Acetatifactor muris"],["NCBITaxon%3A1872090","Acetatifactor sp."],["NCBITaxon%3A2908897","Acetatifactor sp. DFI.5.50"],["NCBITaxon%3A2382","Acetitomaculum ruminis"],["NCBITaxon%3A1120918","Acetitomaculum ruminis DSM 5522"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":13,"nb":422,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["neutrophil-bto-0000130.html","neutrophil"],["rectum-bto-0001158.html","rectum"],["spleen-bto-0001281.html","spleen"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["NCBITaxon%3A1653844","Erwinia carnegieana"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A2058152","Klebsiella grimontii"],["NCBITaxon%3A54291","Klebsiella ornithinolytica"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A1443592","Klebsiella pneumoniae 07A044"]]},{"id":"NCBITaxon:1357","l":"Lactococcus","na":13,"nb":383,"a":[["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["ileum-bto-0000620.html","ileum"],["intestine-bto-0000648.html","intestine"],["mouth-bto-0001090.html","mouth"]],"b":[["NCBITaxon%3A2419773","Lactococcus allomyrinae"],["NCBITaxon%3A1359","Lactococcus cremoris"],["NCBITaxon%3A1286879","Lactococcus cremoris HB61"],["NCBITaxon%3A1286880","Lactococcus cremoris HB63"],["NCBITaxon%3A2816960","Lactococcus cremoris subsp. cremoris"],["NCBITaxon%3A1104322","Lactococcus cremoris subsp. cremoris A76"]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":12,"nb":389,"a":[["hospital-envo-00002173.html","hospital"],["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["epithelial-cell-bto-0000414.html","epithelial cell"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["meninx-bto-0000144.html","meninx"]],"b":[["NCBITaxon%3A1503055","Burkholderia territorii"],["NCBITaxon%3A1270","Micrococcus luteus"],["NCBITaxon%3A465515","Micrococcus luteus NCTC 2665"],["NCBITaxon%3A33051","Sphingomonas sanguinis"],["NCBITaxon%3A1219054","Sphingomonas sanguinis NBRC 13937"],["NCBITaxon%3A1313","Streptococcus pneumoniae"]]},{"id":"NCBITaxon:102234","l":"Cyanobacterium","na":12,"nb":127,"a":[["cecum-bto-0000166.html","cecum"],["colon-bto-0000269.html","colon"],["gut-bto-0000545.html","gut"],["head-bto-0000282.html","head"],["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"]],"b":[["NCBITaxon%3A379064","Cyanobacterium aponinum"],["NCBITaxon%3A2676140","Cyanobacterium aponinum 0216"],["NCBITaxon%3A2862632","Cyanobacterium aponinum 0TAC 3"],["NCBITaxon%3A2862635","Cyanobacterium aponinum 0TAC 8"],["NCBITaxon%3A2867950","Cyanobacterium aponinum 11TAC23"],["NCBITaxon%3A3090662","Cyanobacterium aponinum AL20115"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":33,"nb":12,"a":[["biofilm-envo-00002034.html","biofilm"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["pond-water-envo-00002228.html","pond water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["water-body-envo-00000063.html","water body"]],"b":[["NCBITaxon%3A72000","Kocuria rhizophila"],["NCBITaxon%3A378753","Kocuria rhizophila DC2201"],["NCBITaxon%3A1272","Kocuria varians"],["NCBITaxon%3A1270","Micrococcus luteus"],["NCBITaxon%3A1357403","Micrococcus luteus CD1_FAA_NB_1"],["NCBITaxon%3A935864","Micrococcus luteus J28"]]},{"id":"NCBITaxon:1596","l":"Lactobacillus gasseri","na":12,"nb":29,"a":[["biofilm-envo-00002034.html","biofilm"],["catheter-device-ncit-c50344.html","Catheter Device"],["city-envo-00000856.html","city"],["egg-food-product-foodon-00001274.html","egg food product"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"]],"b":[["NCBITaxon%3A305793","Companilactobacillus nantensis"],["NCBITaxon%3A1596","Lactobacillus gasseri"],["NCBITaxon%3A440498","Lactobacillus gasseri 1151"],["NCBITaxon%3A1403312","Lactobacillus gasseri 130918"],["NCBITaxon%3A1346615","Lactobacillus gasseri 2016"],["NCBITaxon%3A630527","Lactobacillus gasseri 202-4"]]},{"id":"NCBITaxon:1117","l":"Cyanobacteriota","na":11,"nb":36120,"a":[["cecum-bto-0000166.html","cecum"],["colon-bto-0000269.html","colon"],["gut-bto-0000545.html","gut"],["head-bto-0000282.html","head"],["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"]],"b":[["NCBITaxon%3A3106961","Acaryochloridaceae cyanobacterium"],["NCBITaxon%3A2720417","Acaryochloridaceae cyanobacterium CSU_3_4"],["NCBITaxon%3A2720418","Acaryochloridaceae cyanobacterium CSU_5_19"],["NCBITaxon%3A2964578","Acaryochloridaceae cyanobacterium OTE_25_metabat_464"],["NCBITaxon%3A2964579","Acaryochloridaceae cyanobacterium OTE_75_metabat_521"],["NCBITaxon%3A2720424","Acaryochloridaceae cyanobacterium RL_2_7"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":11,"nb":124,"a":[["pond-water-envo-00002228.html","pond water"],["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["laboratory-facility-envo-01001406.html","laboratory facility"],["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["bone-element-uberon-0001474.html","bone element"],["juvenile-bto-0002168.html","juvenile"]],"b":[["NCBITaxon%3A1748","Acidipropionibacterium acidipropionici"],["NCBITaxon%3A1171373","Acidipropionibacterium acidipropionici ATCC 4875"],["NCBITaxon%3A1750","Arachnia propionica"],["NCBITaxon%3A38288","Corynebacterium genitalium"],["NCBITaxon%3A585529","Corynebacterium genitalium ATCC 33030"],["NCBITaxon%3A1747","Cutibacterium acnes"]]},{"id":"NCBITaxon:1380","l":"Atopobium","na":11,"nb":61,"a":[["alimentary-canal-bto-0000058.html","alimentary canal"],["dorsum-bto-0001713.html","dorsum"],["intestine-bto-0000648.html","intestine"],["mouth-bto-0001090.html","mouth"],["rumen-uberon-0007365.html","rumen"],["saliva-bto-0001202.html","saliva"]],"b":[["NCBITaxon%3A1393034","Atopobium deltae"],["NCBITaxon%3A39487","Atopobium fossor"],["NCBITaxon%3A1121023","Atopobium fossor DSM 15642"],["NCBITaxon%3A2094145","Atopobium massiliense"],["NCBITaxon%3A1381","Atopobium minutum"],["NCBITaxon%3A997872","Atopobium minutum 10063974"]]},{"id":"NCBITaxon:1378","l":"Gemella","na":11,"nb":60,"a":[["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["intestine-bto-0000648.html","intestine"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"]],"b":[["NCBITaxon%3A84136","Gemella bergeri"],["NCBITaxon%3A1321820","Gemella bergeri ATCC 700627"],["NCBITaxon%3A150240","Gemella cuniculi"],["NCBITaxon%3A1121914","Gemella cuniculi DSM 15828"],["NCBITaxon%3A1379","Gemella haemolysans"],["NCBITaxon%3A546270","Gemella haemolysans ATCC 10379"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":11,"nb":53,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["resting-cell-bto-0001170.html","resting cell"],["seedling-bto-0001228.html","seedling"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A47920","Acidovorax delafieldii"],["NCBITaxon%3A301","Ectopseudomonas oleovorans"],["NCBITaxon%3A29581","Janthinobacterium lividum"],["NCBITaxon%3A294","Pseudomonas fluorescens"],["NCBITaxon%3A77298","Pseudomonas jessenii"],["NCBITaxon%3A1968891","Pseudomonas jessenii subsp. pseudoputida"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":11,"nb":32,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["fermentation-starter-envo-03600040.html","fermentation starter"],["fruit-bto-0000486.html","fruit"],["mammary-epithelial-cell-bto-0004300.html","mammary epithelial cell"],["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["NCBITaxon%3A1359","Lactococcus cremoris"],["NCBITaxon%3A2816960","Lactococcus cremoris subsp. cremoris"],["NCBITaxon%3A1348655","Lactococcus cremoris subsp. cremoris NBRC 100676"],["NCBITaxon%3A1363","Lactococcus garvieae"],["NCBITaxon%3A1358","Lactococcus lactis"],["NCBITaxon%3A2731284","Lactococcus lactis (ex Latorre-Guzman et al. 1977) Schleifer et al. 1986"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":16,"nb":11,"a":[["fresh-water-envo-00002011.html","fresh water"],["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"]],"b":[["NCBITaxon%3A1063","Cereibacter sphaeroides"],["NCBITaxon%3A272943","Cereibacter sphaeroides 2.4.1"],["NCBITaxon%3A349102","Cereibacter sphaeroides ATCC 17025"],["NCBITaxon%3A349101","Cereibacter sphaeroides ATCC 17029"],["NCBITaxon%3A39723","Cereibacter sphaeroides f. sp. denitrificans"],["NCBITaxon%3A633146","Cereibacter sphaeroides GA"]]},{"id":"NCBITaxon:119852","l":"Oscillospira","na":12,"nb":11,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["cecum-bto-0000166.html","cecum"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["ileum-bto-0000620.html","ileum"]],"b":[["NCBITaxon%3A431589","cf. Oscillospira sp. BA04013493"],["NCBITaxon%3A119853","Oscillospira guilliermondii"],["NCBITaxon%3A227395","Oscillospira sp. A"],["NCBITaxon%3A227394","Oscillospira sp. B"],["NCBITaxon%3A227393","Oscillospira sp. C"],["NCBITaxon%3A227392","Oscillospira sp. D"]]},{"id":"NCBITaxon:543","l":"Enterobacteriaceae","na":10,"nb":33950,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"],["midgut-bto-0000863.html","midgut"]],"b":[["NCBITaxon%3A240150","alkaliphilic bacterium N10"],["NCBITaxon%3A3049091","Apirhabdus apintestini"],["NCBITaxon%3A64559","[Aquamonas] haywardensis"],["NCBITaxon%3A58338","Aranicola proteolyticus"],["NCBITaxon%3A1150713","Aranicola sp. 9AL34"],["NCBITaxon%3A707055","Aranicola sp. Cf3F"]]},{"id":"NCBITaxon:286","l":"Pseudomonas","na":10,"nb":33485,"a":[["heart-bto-0000562.html","heart"],["juvenile-bto-0002168.html","juvenile"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"],["pseudostem-bto-0005992.html","pseudostem"]],"b":[["NCBITaxon%3A196824","Arctic sea ice associated bacterium ARK10142"],["NCBITaxon%3A196823","Arctic sea ice bacterium ARK10061"],["NCBITaxon%3A196825","Arctic sea ice bacterium ARK9971"],["NCBITaxon%3A196826","Arctic sea ice bacterium ARK9995"],["NCBITaxon%3A215583","bacterium G5"],["NCBITaxon%3A1871086","Brevundimonas sp."]]},{"id":"NCBITaxon:1716","l":"Corynebacterium","na":10,"nb":1413,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["ileum-bto-0000620.html","ileum"],["juvenile-bto-0002168.html","juvenile"],["mucosa-bto-0000886.html","mucosa"],["nectar-bto-0000537.html","nectar"]],"b":[["NCBITaxon%3A41986","Agromyces mediolanus"],["NCBITaxon%3A1667","Arthrobacter sp."],["NCBITaxon%3A92706","[Brevibacterium] flavum"],["NCBITaxon%3A1232385","[Brevibacterium] flavum ZL-1"],["NCBITaxon%3A2838527","Candidatus Corynebacterium avicola"],["NCBITaxon%3A2838528","Candidatus Corynebacterium faecigallinarum"]]},{"id":"NCBITaxon:29","l":"Myxococcales","na":10,"nb":725,"a":[["column-bto-0005692.html","column"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["oil-secretion-bto-0005373.html","oil secretion"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["co-culture-habitatmech-bacdive-ff945d8a69.html","Co-culture"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"]],"b":[["NCBITaxon%3A1450165","Aggregicoccus edonensis"],["NCBITaxon%3A1872414","Aggregicoccus sp."],["NCBITaxon%3A2583808","Aggregicoccus sp. 17bor-14"],["NCBITaxon%3A2995309","Allostigmatella ashevillensis"],["NCBITaxon%3A41","Allostigmatella aurantiaca"],["NCBITaxon%3A378806","Allostigmatella aurantiaca DW4/3-1"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":10,"nb":216,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"]],"b":[["NCBITaxon%3A863522","Bryocella elongata"],["NCBITaxon%3A195","Campylobacter coli"],["NCBITaxon%3A197","Campylobacter jejuni"],["NCBITaxon%3A1365653","Campylobacter jejuni 10186"],["NCBITaxon%3A1365189","Campylobacter jejuni 10187"],["NCBITaxon%3A1327986","Campylobacter jejuni 10227"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":10,"nb":82,"a":[["anther-bto-0000079.html","anther"],["epithelial-cell-bto-0000414.html","epithelial cell"],["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["NCBITaxon%3A1390","Bacillus amyloliquefaciens"],["NCBITaxon%3A1452","Bacillus atrophaeus"],["NCBITaxon%3A640707","Bacillus atrophaeus ATCC 9372"],["NCBITaxon%3A483913","Bacillus inaquosorum"],["NCBITaxon%3A1236548","Bacillus inaquosorum KCTC 13429"],["NCBITaxon%3A1402","Bacillus licheniformis"]]},{"id":"NCBITaxon:47715","l":"Lacticaseibacillus rhamnosus","na":10,"nb":38,"a":[["hospital-envo-00002173.html","hospital"],["fermentation-starter-envo-03600040.html","fermentation starter"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["NCBITaxon%3A1597","Lacticaseibacillus paracasei"],["NCBITaxon%3A47715","Lacticaseibacillus rhamnosus"],["NCBITaxon%3A1381116","Lacticaseibacillus rhamnosus 2166"],["NCBITaxon%3A1408180","Lacticaseibacillus rhamnosus 51B"],["NCBITaxon%3A1002365","Lacticaseibacillus rhamnosus ATCC 21052"],["NCBITaxon%3A1088720","Lacticaseibacillus rhamnosus ATCC 8530"]]},{"id":"NCBITaxon:118747","l":"Bulleidia","na":10,"nb":12,"a":[["cecum-bto-0000166.html","cecum"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["intestine-bto-0000648.html","intestine"],["mouth-bto-0001090.html","mouth"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A118748","Bulleidia extructa"],["NCBITaxon%3A679192","Bulleidia extructa W1219"],["NCBITaxon%3A2704657","Bulleidia sp."],["NCBITaxon%3A3241172","Bulleidia sp. 10714-15"],["NCBITaxon%3A3438914","Bulleidia sp. HCP3S3_C9"],["NCBITaxon%3A3438915","Bulleidia sp. HCP3S3_F2"]]},{"id":"NCBITaxon:1397","l":"Niallia circulans","na":12,"nb":10,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["organic-waste-material-envo-00002873.html","organic waste material"],["rhizosphere-envo-00005801.html","rhizosphere"],["cultivated-environment-envo-01000311.html","cultivated environment"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A1393","Brevibacillus brevis"],["NCBITaxon%3A1397","Niallia circulans"],["NCBITaxon%3A1348626","Niallia circulans NBRC 13626"],["NCBITaxon%3A44160","Niallia circulans subsp. alkalophilus"],["NCBITaxon%3A74308","Niallia circulans subsp. circulans"],["NCBITaxon%3A59846","Paenibacillus chibensis"]]},{"id":"NCBITaxon:34085","l":"Riemerella anatipestifer","na":10,"nb":10,"a":[["bay-envo-00000032.html","bay"],["eutrophic-water-envo-00002224.html","eutrophic water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["saline-water-envo-00002010.html","saline water"],["mud-envo-01000001.html","mud"]],"b":[["NCBITaxon%3A34085","Riemerella anatipestifer"],["NCBITaxon%3A693978","Riemerella anatipestifer ATCC 11845 = DSM 15868"],["NCBITaxon%3A1354240","Riemerella anatipestifer CH3"],["NCBITaxon%3A1380769","Riemerella anatipestifer KC104"],["NCBITaxon%3A1228997","Riemerella anatipestifer RA-CH-1"],["NCBITaxon%3A1271752","Riemerella anatipestifer RA-CH-2"]]},{"id":"NCBITaxon:1300","l":"Streptococcaceae","na":9,"nb":5054,"a":[["cecum-bto-0000166.html","cecum"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"],["sgs-cell-bto-0001210.html","SGS cell"]],"b":[["NCBITaxon%3A2838763","Candidatus Streptococcus faecavium"],["NCBITaxon%3A3711814","Candidatus Streptococcus gullae"],["NCBITaxon%3A2962908","Candidatus Streptococcus sp. bin.001"],["NCBITaxon%3A1859475","Floricoccus penangensis"],["NCBITaxon%3A2047721","Floricoccus sp."],["NCBITaxon%3A1859473","Floricoccus tropicus"]]},{"id":"NCBITaxon:1314","l":"Streptococcus pyogenes","na":9,"nb":839,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"],["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"],["epithelial-cell-bto-0000414.html","epithelial cell"],["nasopharynx-bto-0000662.html","nasopharynx"],["skin-of-body-uberon-0002097.html","skin of body"],["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A45634","Streptococcus cristatus"],["NCBITaxon%3A1314","Streptococcus pyogenes"],["NCBITaxon%3A1050217","Streptococcus pyogenes 005-D5"],["NCBITaxon%3A1210041","Streptococcus pyogenes 06BA18369"],["NCBITaxon%3A1235829","Streptococcus pyogenes A20"],["NCBITaxon%3A562016","Streptococcus pyogenes AA216"]]},{"id":"NCBITaxon:1639","l":"Listeria monocytogenes","na":9,"nb":478,"a":[["liquid-water-envo-00002006.html","liquid water"],["brain-bto-0000142.html","brain"],["central-nervous-system-bto-0000227.html","central nervous system"],["fruit-bto-0000486.html","fruit"],["placenta-bto-0001078.html","placenta"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["NCBITaxon%3A1639","Listeria monocytogenes"],["NCBITaxon%3A1126011","Listeria monocytogenes 07PF0776"],["NCBITaxon%3A653938","Listeria monocytogenes 08-5578"],["NCBITaxon%3A637381","Listeria monocytogenes 08-5923"],["NCBITaxon%3A393133","Listeria monocytogenes 10403S"],["NCBITaxon%3A1380708","Listeria monocytogenes 36-25-1"]]},{"id":"NCBITaxon:1016","l":"Capnocytophaga","na":9,"nb":249,"a":[["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["gut-bto-0000545.html","gut"],["hand-bto-0004668.html","hand"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"]],"b":[["NCBITaxon%3A2819369","Capnocytophaga bilenii"],["NCBITaxon%3A28188","Capnocytophaga canimorsus"],["NCBITaxon%3A860228","Capnocytophaga canimorsus Cc5"],["NCBITaxon%3A1848903","Capnocytophaga canis"],["NCBITaxon%3A1004260","Capnocytophaga catalasegens"],["NCBITaxon%3A28189","Capnocytophaga cynodegmi"]]},{"id":"NCBITaxon:727","l":"Haemophilus influenzae","na":9,"nb":43,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["head-bto-0000282.html","head"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["NCBITaxon%3A727","Haemophilus influenzae"],["NCBITaxon%3A862964","Haemophilus influenzae 10810"],["NCBITaxon%3A1232659","Haemophilus influenzae 2019"],["NCBITaxon%3A374927","Haemophilus influenzae 22.1-21"],["NCBITaxon%3A520729","Haemophilus influenzae 22.1-24"],["NCBITaxon%3A375063","Haemophilus influenzae 22.4-21"]]},{"id":"NCBITaxon:1265","l":"Ruminococcus flavefaciens","na":29,"nb":9,"a":[["biofilm-envo-00002034.html","biofilm"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A1265","Ruminococcus flavefaciens"],["NCBITaxon%3A1341157","Ruminococcus flavefaciens 007c"],["NCBITaxon%3A1030842","Ruminococcus flavefaciens 17"],["NCBITaxon%3A1384066","Ruminococcus flavefaciens AE3010"],["NCBITaxon%3A1336236","Ruminococcus flavefaciens ATCC 19208"],["NCBITaxon%3A1313302","Ruminococcus flavefaciens B34b"]]},{"id":"NCBITaxon:1264","l":"Hominimerdicola alba","na":13,"nb":9,"a":[["biofilm-envo-00002034.html","biofilm"],["stream-envo-00000023.html","stream"],["animal-house-envo-00003040.html","animal house"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biome-envo-00000428.html","biome"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"]],"b":[["NCBITaxon%3A1264","Hominimerdicola alba"],["NCBITaxon%3A697329","Hominimerdicola alba 7 = DSM 20455"],["NCBITaxon%3A246199","Hominimerdicola alba 8"],["NCBITaxon%3A1384065","Hominimerdicola alba AD2013"],["NCBITaxon%3A1341156","Hominimerdicola alba SY3"],["NCBITaxon%3A1339594","Hominimerdicola alba TSDC17.2-1.1"]]},{"id":"NCBITaxon:31979","l":"Clostridiaceae","na":8,"nb":3495,"a":[["adult-bto-0001043.html","adult"],["alimentary-canal-bto-0000058.html","alimentary canal"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"]],"b":[["NCBITaxon%3A1766203","Abyssisolibacter fermentans"],["NCBITaxon%3A2684878","Abyssisolibacter sp."],["NCBITaxon%3A3035615","Abyssisolibacter sp. ZYX002"],["NCBITaxon%3A3036945","Anaerococcoides asporogena"],["NCBITaxon%3A3713578","Anaerococcoides sp."],["NCBITaxon%3A2498136","Anaerophilus nitritigenes"]]},{"id":"NCBITaxon:210","l":"Helicobacter pylori","na":8,"nb":631,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["hospital-envo-00002173.html","hospital"],["duodenum-bto-0000365.html","duodenum"],["gastric-juice-bto-0000501.html","gastric juice"],["gastric-mucosa-bto-0001308.html","gastric mucosa"],["gastric-ulcer-bto-0002990.html","gastric ulcer"]],"b":[["NCBITaxon%3A210","Helicobacter pylori"],["NCBITaxon%3A1028810","Helicobacter pylori 10700"],["NCBITaxon%3A585532","Helicobacter pylori 118"],["NCBITaxon%3A102610","Helicobacter pylori #12"],["NCBITaxon%3A585533","Helicobacter pylori 120"],["NCBITaxon%3A103187","Helicobacter pylori 15818"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":8,"nb":391,"a":[["reservoir-envo-00000025.html","reservoir"],["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["secretion-bto-0002979.html","secretion"],["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A1260363","Enterococcus faecalis 02-MB-BW-10"],["NCBITaxon%3A1260365","Enterococcus faecalis 02-MB-P-10"],["NCBITaxon%3A1260358","Enterococcus faecalis 06-MB-DW-09"],["NCBITaxon%3A1260359","Enterococcus faecalis 06-MB-S-04"],["NCBITaxon%3A1260360","Enterococcus faecalis 06-MB-S-10"]]},{"id":"NCBITaxon:171550","l":"Rikenellaceae","na":8,"nb":241,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["ileum-bto-0000620.html","ileum"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"]],"b":[["NCBITaxon%3A979970","Acetobacteroides hydrogenigenes"],["NCBITaxon%3A1872095","Acetobacteroides sp."],["NCBITaxon%3A2764708","Acetobacteroides sp. MIZ14"],["NCBITaxon%3A2585118","Alistipes communis"],["NCBITaxon%3A2585119","Alistipes dispar"],["NCBITaxon%3A214856","Alistipes finegoldii"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":8,"nb":183,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["NCBITaxon%3A86840","Pseudomonas cannabina"],["NCBITaxon%3A53409","Pseudomonas coronafaciens"],["NCBITaxon%3A29438","Pseudomonas savastanoi"],["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A1204471","Pseudomonas syringae BRIP34876"]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":8,"nb":88,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"]],"b":[["NCBITaxon%3A298","Pseudomonas marginalis"],["NCBITaxon%3A56448","Xanthomonas arboricola"],["NCBITaxon%3A339","Xanthomonas campestris"],["NCBITaxon%3A1281290","Xanthomonas campestris CFBP 5824"],["NCBITaxon%3A1281289","Xanthomonas campestris CFBP 5825"],["NCBITaxon%3A1182783","Xanthomonas campestris JX"]]},{"id":"NCBITaxon:33042","l":"Coprococcus","na":8,"nb":72,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["alimentary-canal-bto-0000058.html","alimentary canal"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"]],"b":[["NCBITaxon%3A2981786","Coprococcus aceti"],["NCBITaxon%3A2981785","Coprococcus ammoniilyticus"],["NCBITaxon%3A33043","Coprococcus eutactus"],["NCBITaxon%3A411474","Coprococcus eutactus ATCC 27759"],["NCBITaxon%3A1263071","Coprococcus eutactus CAG:665"],["NCBITaxon%3A2881262","Coprococcus hominis (ex Arizal et al. 2022)"]]},{"id":"NCBITaxon:2702","l":"Gardnerella vaginalis","na":8,"nb":35,"a":[["egg-food-product-foodon-00001274.html","egg food product"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["NCBITaxon%3A2702","Gardnerella vaginalis"],["NCBITaxon%3A698952","Gardnerella vaginalis 0288E"],["NCBITaxon%3A698957","Gardnerella vaginalis 1500E"],["NCBITaxon%3A698950","Gardnerella vaginalis 284V"],["NCBITaxon%3A879307","Gardnerella vaginalis 315-A"],["NCBITaxon%3A553190","Gardnerella vaginalis 409-05"]]},{"id":"NCBITaxon:147802","l":"Lactobacillus iners","na":8,"nb":18,"a":[["egg-food-product-foodon-00001274.html","egg food product"],["blood-bto-0000089.html","blood"],["brain-bto-0000142.html","brain"],["heart-bto-0000562.html","heart"],["urine-bto-0001419.html","urine"],["vagina-bto-0000243.html","vagina"]],"b":[["NCBITaxon%3A78329","Allocoenonia anatina"],["NCBITaxon%3A147802","Lactobacillus iners"],["NCBITaxon%3A713605","Lactobacillus iners AB-1"],["NCBITaxon%3A883160","Lactobacillus iners ACS-070-V-Col3"],["NCBITaxon%3A888801","Lactobacillus iners ATCC 55195"],["NCBITaxon%3A525328","Lactobacillus iners DSM 13335"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":8,"nb":15,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["alimentary-canal-bto-0000058.html","alimentary canal"],["blood-bto-0000089.html","blood"],["small-intestine-bto-0000651.html","small intestine"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["geographic-feature-envo-00000000.html","geographic feature"]],"b":[["NCBITaxon%3A1304","Streptococcus salivarius"],["NCBITaxon%3A1046629","Streptococcus salivarius 57.I"],["NCBITaxon%3A1420586","Streptococcus salivarius ATCC 25975"],["NCBITaxon%3A1263109","Streptococcus salivarius CAG:79"],["NCBITaxon%3A1048332","Streptococcus salivarius CCHSS3"],["NCBITaxon%3A1255635","Streptococcus salivarius CJ181"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":8,"nb":14,"a":[["groundwater-envo-01001004.html","groundwater"],["bioreactor-envo-00002123.html","bioreactor"],["river-envo-00000022.html","river"],["freshwater-environment-envo-01000306.html","freshwater environment"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A1076","Rhodopseudomonas palustris"],["NCBITaxon%3A74570","Rhodopseudomonas palustris ATCC 17001"],["NCBITaxon%3A74573","Rhodopseudomonas palustris ATCC 17007"],["NCBITaxon%3A316055","Rhodopseudomonas palustris BisA53"],["NCBITaxon%3A316056","Rhodopseudomonas palustris BisB18"],["NCBITaxon%3A316057","Rhodopseudomonas palustris BisB5"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":8,"nb":14,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["lab-synthesis-habitatmech-bacdive-0e92e77cd4.html","Lab-synthesis"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["oil-spill-envo-00002061.html","oil spill"],["temperate-envo-01000206.html","temperate"]],"b":[["NCBITaxon%3A72360","Bacillus mojavensis"],["NCBITaxon%3A1051501","Bacillus mojavensis RO-H-1 = KCTC 3706"],["NCBITaxon%3A1478","Peribacillus simplex"],["NCBITaxon%3A86664","Priestia flexa"],["NCBITaxon%3A1404","Priestia megaterium"],["NCBITaxon%3A592022","Priestia megaterium DSM 319"]]},{"id":"NCBITaxon:33038","l":"Mediterraneibacter gnavus","na":8,"nb":13,"a":[["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["juvenile-bto-0002168.html","juvenile"],["animal-litter-envo-00002191.html","animal litter"]],"b":[["NCBITaxon%3A33038","Mediterraneibacter gnavus"],["NCBITaxon%3A1384063","Mediterraneibacter gnavus AGR2154"],["NCBITaxon%3A411470","Mediterraneibacter gnavus ATCC 29149"],["NCBITaxon%3A1263106","Mediterraneibacter gnavus CAG:126"],["NCBITaxon%3A1073375","Mediterraneibacter gnavus CC55_001C"],["NCBITaxon%3A935582","Mediterraneibacter gnavus E1"]]},{"id":"NCBITaxon:554","l":"Pectobacterium carotovorum","na":8,"nb":13,"a":[["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["root-or-stem-rot-environment-habitatmech-bacdive-04ddbbeabe.html","root-or-stem rot environment"],["wilt-habitatmech-bacdive-4c48b5114d.html","Wilt"]],"b":[["NCBITaxon%3A2527970","Blastopirellula retiformator"],["NCBITaxon%3A1201031","Pectobacterium aroidearum"],["NCBITaxon%3A55207","Pectobacterium betavasculorum"],["NCBITaxon%3A180957","Pectobacterium brasiliense"],["NCBITaxon%3A554","Pectobacterium carotovorum"],["NCBITaxon%3A555","Pectobacterium carotovorum subsp. carotovorum"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":9,"nb":8,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["fresh-water-envo-00002011.html","fresh water"],["river-envo-00000022.html","river"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A1061","Rhodobacter capsulatus"],["NCBITaxon%3A1415162","Rhodobacter capsulatus B6"],["NCBITaxon%3A1415160","Rhodobacter capsulatus DE442"],["NCBITaxon%3A1415163","Rhodobacter capsulatus R121"],["NCBITaxon%3A272942","Rhodobacter capsulatus SB 1003"],["NCBITaxon%3A1415161","Rhodobacter capsulatus Y262"]]},{"id":"NCBITaxon:1261","l":"Peptostreptococcus anaerobius","na":9,"nb":8,"a":[["dorsum-bto-0001713.html","dorsum"],["saliva-bto-0001202.html","saliva"],["sgs-cell-bto-0001210.html","SGS cell"],["tongue-bto-0001385.html","tongue"],["urine-bto-0001419.html","urine"],["vagina-bto-0000243.html","vagina"]],"b":[["NCBITaxon%3A1944660","Parvimonas sp."],["NCBITaxon%3A1261","Peptostreptococcus anaerobius"],["NCBITaxon%3A596329","Peptostreptococcus anaerobius 653-L"],["NCBITaxon%3A1263100","Peptostreptococcus anaerobius CAG:621"],["NCBITaxon%3A1073365","Peptostreptococcus anaerobius CC14N"],["NCBITaxon%3A1035196","Peptostreptococcus anaerobius VPI 4330 = DSM 2949"]]},{"id":"NCBITaxon:1655","l":"Actinomyces naeslundii","na":8,"nb":8,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"],["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"],["archeological-site-envo-00000564.html","archeological site"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["NCBITaxon%3A3050225","Actinomyces acetigenes"],["NCBITaxon%3A544581","Actinomyces johnsonii"],["NCBITaxon%3A1655","Actinomyces naeslundii"],["NCBITaxon%3A240017","Actinomyces naeslundii MG1"],["NCBITaxon%3A1115803","Actinomyces naeslundii str. Howell 279"],["NCBITaxon%3A544580","Actinomyces oris"]]},{"id":"NCBITaxon:28216","l":"Betaproteobacteria","na":7,"nb":31526,"a":[["column-bto-0005692.html","column"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["spike-bto-0001278.html","spike"]],"b":[["NCBITaxon%3A103498","2,4-D-degrading bacterium 001"],["NCBITaxon%3A103499","2,4-D-degrading bacterium 007"],["NCBITaxon%3A103495","2,4-D-degrading bacterium 012"],["NCBITaxon%3A103500","2,4-D-degrading bacterium 017"],["NCBITaxon%3A103501","2,4-D-degrading bacterium 018"],["NCBITaxon%3A103502","2,4-D-degrading bacterium 019"]]},{"id":"NCBITaxon:32033","l":"Lysobacteraceae","na":7,"nb":6844,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["leaf-bto-0000713.html","leaf"],["midgut-bto-0000863.html","midgut"],["pitcher-bto-0001069.html","pitcher"],["pseudostem-bto-0005992.html","pseudostem"],["stem-bto-0001300.html","stem"]],"b":[["NCBITaxon%3A346181","Aerolutibacter daejeonensis"],["NCBITaxon%3A686800","Aerolutibacter ruishenii"],["NCBITaxon%3A380628","Agrilutibacter niabensis"],["NCBITaxon%3A2763317","Agrilutibacter solisilvae"],["NCBITaxon%3A3382711","Agrilutibacter sp."],["NCBITaxon%3A2865112","Agrilutibacter terrestris"]]},{"id":"NCBITaxon:469","l":"Acinetobacter","na":7,"nb":6769,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["endotracheal-fluid-ncit-c171504.html","Endotracheal Fluid"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"],["pseudostem-bto-0005992.html","pseudostem"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"]],"b":[["NCBITaxon%3A1673609","Acinetobacter albensis"],["NCBITaxon%3A2942470","Acinetobacter amyesii"],["NCBITaxon%3A363192","Acinetobacter antiviralis"],["NCBITaxon%3A1229165","Acinetobacter apis"],["NCBITaxon%3A2605383","Acinetobacter baretiae"],["NCBITaxon%3A470","Acinetobacter baumannii"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":7,"nb":5776,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["pseudostem-bto-0005992.html","pseudostem"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["NCBITaxon%3A54736","Salmonella bongori"],["NCBITaxon%3A218493","Salmonella bongori NCTC 12419"],["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59203","Salmonella enterica subsp. arizonae"],["NCBITaxon%3A2577126","Salmonella enterica subsp. arizonae serovar 11:z4,z23:-"],["NCBITaxon%3A2577127","Salmonella enterica subsp. arizonae serovar 13,22:z4,z23:-"]]},{"id":"NCBITaxon:2037","l":"Actinomycetales","na":7,"nb":2280,"a":[["saline-water-body-envo-01001319.html","saline water body"],["column-bto-0005692.html","column"],["crop-bto-0000301.html","crop"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"],["stem-bto-0001300.html","stem"]],"b":[["NCBITaxon%3A202789","Actinobaculum massiliense"],["NCBITaxon%3A883066","Actinobaculum massiliense ACS-171-V-Col2"],["NCBITaxon%3A1872129","Actinobaculum sp."],["NCBITaxon%3A749734","Actinobaculum sp. 127266/05"],["NCBITaxon%3A1456838","Actinobaculum sp. 2012257545"],["NCBITaxon%3A1456839","Actinobaculum sp. 2012259764"]]},{"id":"NCBITaxon:128827","l":"Erysipelotrichaceae","na":7,"nb":378,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["cecum-bto-0000166.html","cecum"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["intestine-bto-0000648.html","intestine"],["mouth-bto-0001090.html","mouth"],["mucosa-bto-0000886.html","mucosa"]],"b":[["NCBITaxon%3A2926319","Absicoccus intestinalis"],["NCBITaxon%3A2486576","Absicoccus porci"],["NCBITaxon%3A2718527","Absicoccus sp."],["NCBITaxon%3A2291993","Absiella sp. AM09-45"],["NCBITaxon%3A2291994","Absiella sp. AM09-50"],["NCBITaxon%3A2291995","Absiella sp. AM10-20"]]},{"id":"NCBITaxon:1243","l":"Leuconostoc","na":7,"nb":271,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["intestine-bto-0000648.html","intestine"],["mouth-bto-0001090.html","mouth"],["stem-bto-0001300.html","stem"]],"b":[["NCBITaxon%3A3236804","Leuconostoc aquikimchii"],["NCBITaxon%3A1252","Leuconostoc carnosum"],["NCBITaxon%3A1229758","Leuconostoc carnosum JB16"],["NCBITaxon%3A1046593","Leuconostoc carnosum KCTC 3525"],["NCBITaxon%3A33964","Leuconostoc citreum"],["NCBITaxon%3A349519","Leuconostoc citreum KM20"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":7,"nb":35,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["liquid-water-envo-00002006.html","liquid water"],["crown-gall-bto-0000303.html","crown gall"],["finger-bto-0004669.html","finger"],["resting-cell-bto-0001170.html","resting cell"],["water-scum-envo-00005794.html","water scum"]],"b":[["NCBITaxon%3A1183421","Agrobacterium fabacearum CFBP 5771"],["NCBITaxon%3A1300224","Agrobacterium fabacearum P4"],["NCBITaxon%3A1183429","Agrobacterium fabacearum S56"],["NCBITaxon%3A1368455","Agrobacterium fabacearum str. Foundi"],["NCBITaxon%3A1183430","Agrobacterium fabacearum TT111"],["NCBITaxon%3A1176649","Agrobacterium fabrum"]]},{"id":"NCBITaxon:1107","l":"Chloroflexus","na":7,"nb":28,"a":[["crop-bto-0000301.html","crop"],["gut-bto-0000545.html","gut"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["seedling-bto-0001228.html","seedling"],["skin-bto-0001253.html","skin"]],"b":[["NCBITaxon%3A152260","Chloroflexus aggregans"],["NCBITaxon%3A326427","Chloroflexus aggregans DSM 9485"],["NCBITaxon%3A1108","Chloroflexus aurantiacus"],["NCBITaxon%3A324602","Chloroflexus aurantiacus J-10-fl"],["NCBITaxon%3A480224","Chloroflexus aurantiacus Y-400-fl"],["NCBITaxon%3A1707952","Chloroflexus islandicus"]]},{"id":"NCBITaxon:1502","l":"Clostridium perfringens","na":7,"nb":24,"a":[["small-river-biome-envo-00000890.html","small river biome"],["animal-house-envo-00003040.html","animal house"],["ileum-bto-0000620.html","ileum"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["NCBITaxon%3A1502","Clostridium perfringens"],["NCBITaxon%3A753641","Clostridium perfringens 310"],["NCBITaxon%3A753640","Clostridium perfringens 3100"],["NCBITaxon%3A37763","Clostridium perfringens A"],["NCBITaxon%3A195103","Clostridium perfringens ATCC 13124"],["NCBITaxon%3A451751","Clostridium perfringens B"]]},{"id":"NCBITaxon:1464","l":"Paenibacillus larvae","na":10,"nb":7,"a":[["surface-water-envo-00002042.html","surface water"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["carcass-envo-00002033.html","carcass"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A1464","Paenibacillus larvae"],["NCBITaxon%3A147375","Paenibacillus larvae subsp. larvae"],["NCBITaxon%3A741161","Paenibacillus larvae subsp. larvae B-3650"],["NCBITaxon%3A392917","Paenibacillus larvae subsp. larvae BRL-230010"],["NCBITaxon%3A697284","Paenibacillus larvae subsp. larvae DSM 25430"],["NCBITaxon%3A697286","Paenibacillus larvae subsp. larvae DSM 25719"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":10,"nb":7,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["air-conditioning-unit-envo-00002874.html","air conditioning unit"],["leaf-bto-0000713.html","leaf"],["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["NCBITaxon%3A34073","Variovorax paradoxus"],["NCBITaxon%3A1150395","Variovorax paradoxus 4MFCol3.1"],["NCBITaxon%3A1246301","Variovorax paradoxus B4"],["NCBITaxon%3A595537","Variovorax paradoxus EPS"],["NCBITaxon%3A1321610","Variovorax paradoxus NBRC 15149"],["NCBITaxon%3A543728","Variovorax paradoxus S110"]]},{"id":"NCBITaxon:1283","l":"Staphylococcus haemolyticus","na":9,"nb":7,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["biofilm-bto-0002690.html","biofilm"],["bone-element-uberon-0001474.html","bone element"],["conjunctiva-bto-0003415.html","conjunctiva"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"]],"b":[["NCBITaxon%3A1283","Staphylococcus haemolyticus"],["NCBITaxon%3A1308739","Staphylococcus haemolyticus ADL-104"],["NCBITaxon%3A1308735","Staphylococcus haemolyticus ADL-204"],["NCBITaxon%3A1095104","Staphylococcus haemolyticus BL-2"],["NCBITaxon%3A1401071","Staphylococcus haemolyticus DNF00585"],["NCBITaxon%3A279808","Staphylococcus haemolyticus JCSC1435"]]},{"id":"NCBITaxon:1656","l":"Actinomyces viscosus","na":7,"nb":9,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"],["skin-of-body-uberon-0002097.html","skin of body"],["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["NCBITaxon%3A1655","Actinomyces naeslundii"],["NCBITaxon%3A544580","Actinomyces oris"],["NCBITaxon%3A29317","Actinomyces sp."],["NCBITaxon%3A3050227","Actinomyces stomatis"],["NCBITaxon%3A1656","Actinomyces viscosus"],["NCBITaxon%3A562973","Actinomyces viscosus C505"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":9,"nb":7,"a":[["liquid-water-envo-00002006.html","liquid water"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["mud-envo-01000001.html","mud"]],"b":[["NCBITaxon%3A293","Brevundimonas diminuta"],["NCBITaxon%3A1255603","Brevundimonas diminuta 3F5N"],["NCBITaxon%3A1035191","Brevundimonas diminuta 470-4"],["NCBITaxon%3A751586","Brevundimonas diminuta ATCC 11568"],["NCBITaxon%3A588932","Brevundimonas naejangsanensis"],["NCBITaxon%3A1325724","Brevundimonas vancanneytii"]]},{"id":"NCBITaxon:1236","l":"Gammaproteobacteria","na":6,"nb":145676,"a":[["column-bto-0005692.html","column"],["hemolymph-bto-0000572.html","hemolymph"],["oil-secretion-bto-0005373.html","oil secretion"],["spike-bto-0001278.html","spike"],["urine-bto-0001419.html","urine"],["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A103492","2,4-D-degrading bacterium 010"],["NCBITaxon%3A103493","2,4-D-degrading bacterium 030"],["NCBITaxon%3A120969","abyssal strain AIII3*"],["NCBITaxon%3A2182787","Abyssibacter profundi"],["NCBITaxon%3A2320200","Abyssibacter sp."],["NCBITaxon%3A596095","Abyssogena phaseoliformis symbiont"]]},{"id":"NCBITaxon:28211","l":"Alphaproteobacteria","na":6,"nb":72845,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"],["alimentary-canal-bto-0000058.html","alimentary canal"],["column-bto-0005692.html","column"],["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["spike-bto-0001278.html","spike"]],"b":[["NCBITaxon%3A119160","2,3-D degrading bacterium NHC2"],["NCBITaxon%3A119159","2,3-D degrading bacterium NHG3"],["NCBITaxon%3A103494","2,4-D-degrading bacterium 022"],["NCBITaxon%3A83493","2,4-D degrading bacterium 2,4-D1"],["NCBITaxon%3A103496","2,4-D-degrading bacterium 524"],["NCBITaxon%3A83492","2,4-D degrading bacterium B6-10"]]},{"id":"NCBITaxon:80864","l":"Comamonadaceae","na":6,"nb":5616,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["small-intestine-bto-0000651.html","small intestine"],["trunk-bto-0001493.html","trunk"],["wood-bto-0005516.html","wood"]],"b":[["NCBITaxon%3A103495","2,4-D-degrading bacterium 012"],["NCBITaxon%3A83498","2,4-D degrading bacterium B6-9"],["NCBITaxon%3A83495","2,4-D degrading bacterium TFD23"],["NCBITaxon%3A3386178","Aalborgiella aggregata (SeqCode)"],["NCBITaxon%3A3879854","Aalborgiella sp. (SeqCode)"],["NCBITaxon%3A192388","Acidovorax aerodenitrificans"]]},{"id":"NCBITaxon:1269","l":"Micrococcus","na":6,"nb":1469,"a":[["cecum-bto-0000166.html","cecum"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["saliva-bto-0001202.html","saliva"],["tongue-bto-0001385.html","tongue"]],"b":[["NCBITaxon%3A1871615","Dermacoccus sp."],["NCBITaxon%3A1275","Kocuria rosea"],["NCBITaxon%3A29377","Micrococcus aerogenes"],["NCBITaxon%3A306270","Micrococcus alkanovora"],["NCBITaxon%3A1391911","Micrococcus aloeverae"],["NCBITaxon%3A86171","Micrococcus antarcticus"]]},{"id":"NCBITaxon:1311","l":"Streptococcus agalactiae","na":6,"nb":332,"a":[["kidney-bto-0000671.html","kidney"],["milk-uberon-0001913.html","milk"],["oropharynx-bto-0005257.html","oropharynx"],["urine-bto-0001419.html","urine"],["urogenital-system-bto-0003091.html","urogenital system"],["vagina-bto-0000243.html","vagina"]],"b":[["NCBITaxon%3A536","Chromobacterium violaceum"],["NCBITaxon%3A2896850","Phocaeicola oris"],["NCBITaxon%3A1311","Streptococcus agalactiae"],["NCBITaxon%3A997295","Streptococcus agalactiae 072.21"],["NCBITaxon%3A1309806","Streptococcus agalactiae 09mas018883"],["NCBITaxon%3A1333579","Streptococcus agalactiae 112469214-isolate1"]]},{"id":"NCBITaxon:1496","l":"Clostridioides difficile","na":6,"nb":296,"a":[["hospital-envo-00002173.html","hospital"],["feces-uberon-0001988.html","feces"],["leukocyte-bto-0000751.html","leukocyte"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["intestine-environment-envo-2100002.html","intestine environment"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A1496","Clostridioides difficile"],["NCBITaxon%3A997827","Clostridioides difficile 002-P50-2011"],["NCBITaxon%3A997828","Clostridioides difficile 050-P50-2011"],["NCBITaxon%3A699033","Clostridioides difficile 2007855"],["NCBITaxon%3A1151306","Clostridioides difficile 342"],["NCBITaxon%3A1151307","Clostridioides difficile 360"]]},{"id":"NCBITaxon:1375","l":"Aerococcus","na":6,"nb":234,"a":[["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["saliva-bto-0001202.html","saliva"],["urine-bto-0001419.html","urine"],["vagina-bto-0000243.html","vagina"],["vaginal-fluid-bto-0003084.html","vaginal fluid"]],"b":[["NCBITaxon%3A2487350","Aerococcus agrisoli"],["NCBITaxon%3A87541","Aerococcus christensenii"],["NCBITaxon%3A525247","Aerococcus christensenii DSM 15819 = CCUG 28831"],["NCBITaxon%3A2999064","Aerococcus kribbianus"],["NCBITaxon%3A2976809","Aerococcus loyolae"],["NCBITaxon%3A2976810","Aerococcus mictus"]]},{"id":"NCBITaxon:189330","l":"Dorea","na":6,"nb":83,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["ileum-bto-0000620.html","ileum"],["mucosa-bto-0000886.html","mucosa"]],"b":[["NCBITaxon%3A2838540","Candidatus Dorea faecigallinarum"],["NCBITaxon%3A2838541","Candidatus Dorea faecipullorum"],["NCBITaxon%3A2838542","Candidatus Dorea gallistercoris"],["NCBITaxon%3A2838543","Candidatus Dorea intestinavium"],["NCBITaxon%3A2838544","Candidatus Dorea intestinigallinarum"],["NCBITaxon%3A1470355","Candidatus Dorea massiliensis"]]},{"id":"NCBITaxon:13159","l":"Mycoplana","na":6,"nb":50,"a":[["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"],["style-bto-0001313.html","style"],["urine-bto-0001419.html","urine"]],"b":[["NCBITaxon%3A1636188","Mycoplana azooxidifex"],["NCBITaxon%3A28320","Mycoplana dimorpha"],["NCBITaxon%3A416229","Mycoplana peli"],["NCBITaxon%3A40837","Mycoplana ramosa"],["NCBITaxon%3A2746702","Mycoplana rhizolycopersici"],["NCBITaxon%3A1874381","Mycoplana sp."]]},{"id":"NCBITaxon:446","l":"Legionella pneumophila","na":6,"nb":47,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["hospital-envo-00002173.html","hospital"],["macrophage-bto-0000801.html","macrophage"],["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A446","Legionella pneumophila"],["NCBITaxon%3A866628","Legionella pneumophila 130b"],["NCBITaxon%3A423212","Legionella pneumophila 2300/99 Alcoy"],["NCBITaxon%3A1370127","Legionella pneumophila Leg01/16"],["NCBITaxon%3A66976","Legionella pneumophila serogroup 1"],["NCBITaxon%3A66985","Legionella pneumophila serogroup 10"]]},{"id":"NCBITaxon:777","l":"Coxiella burnetii","na":6,"nb":44,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["marine-bathyal-zone-biome-envo-01000026.html","marine bathyal zone biome"],["neritic-epipelagic-zone-biome-envo-01000042.html","neritic epipelagic zone biome"],["lagoon-envo-00000038.html","lagoon"],["orchard-envo-00000115.html","orchard"],["sea-shore-envo-00000485.html","sea shore"]],"b":[["NCBITaxon%3A777","Coxiella burnetii"],["NCBITaxon%3A1321944","Coxiella burnetii 2338"],["NCBITaxon%3A1321942","Coxiella burnetii C2"],["NCBITaxon%3A1196327","Coxiella burnetii cb109"],["NCBITaxon%3A1364988","Coxiella burnetii Cb111"],["NCBITaxon%3A1401249","Coxiella burnetii Cb118"]]},{"id":"NCBITaxon:1305","l":"Streptococcus sanguinis","na":6,"nb":27,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["throat-bto-0000828.html","throat"],["geographic-feature-envo-00000000.html","geographic feature"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["NCBITaxon%3A1302","Streptococcus gordonii"],["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1305","Streptococcus sanguinis"],["NCBITaxon%3A1247655","Streptococcus sanguinis ATCC 15914"],["NCBITaxon%3A997356","Streptococcus sanguinis ATCC 29667"],["NCBITaxon%3A1073373","Streptococcus sanguinis CC94A"]]},{"id":"NCBITaxon:56","l":"Sorangium cellulosum","na":27,"nb":6,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["watercourse-envo-00000029.html","watercourse"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["NCBITaxon%3A2093422","Sorangium ambruticinum"],["NCBITaxon%3A2093423","Sorangium bulgaricum"],["NCBITaxon%3A56","Sorangium cellulosum"],["NCBITaxon%3A1254432","Sorangium cellulosum So0157-2"],["NCBITaxon%3A448385","Sorangium cellulosum So ce56"],["NCBITaxon%3A2093377","Sorangium sp."]]},{"id":"NCBITaxon:1018","l":"Capnocytophaga ochracea","na":17,"nb":6,"a":[["biofilm-envo-00002034.html","biofilm"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["gut-bto-0000545.html","gut"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"]],"b":[["NCBITaxon%3A1018","Capnocytophaga ochracea"],["NCBITaxon%3A521097","Capnocytophaga ochracea DSM 7271"],["NCBITaxon%3A873517","Capnocytophaga ochracea F0287"],["NCBITaxon%3A1410029","Capnocytophaga ochracea HMP_JCVI_SC0240"],["NCBITaxon%3A1125719","Capnocytophaga ochracea str. Holt 25"],["NCBITaxon%3A1019","Capnocytophaga sputigena"]]},{"id":"NCBITaxon:67263","l":"Streptomyces griseus subsp. griseus","na":6,"nb":14,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["laboratory-facility-envo-01001406.html","laboratory facility"],["clay-envo-00002982.html","clay"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A132249","Nocardia veterana"],["NCBITaxon%3A1884","Streptomyces acrimycini"],["NCBITaxon%3A67274","Streptomyces argenteolus"],["NCBITaxon%3A66872","Streptomyces baarnensis"],["NCBITaxon%3A1896","Streptomyces bikiniensis"],["NCBITaxon%3A90079","Streptomyces caviscabies"]]},{"id":"NCBITaxon:1624","l":"Ligilactobacillus salivarius","na":6,"nb":13,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["trachea-bto-0001388.html","trachea"],["animal-litter-envo-00002191.html","animal litter"],["intestine-environment-envo-2100002.html","intestine environment"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["NCBITaxon%3A1624","Ligilactobacillus salivarius"],["NCBITaxon%3A768728","Ligilactobacillus salivarius ACS-116-V-Col5a"],["NCBITaxon%3A1195377","Ligilactobacillus salivarius B-30514"],["NCBITaxon%3A712961","Ligilactobacillus salivarius CECT 5713"],["NCBITaxon%3A1036738","Ligilactobacillus salivarius CELA2"],["NCBITaxon%3A1273133","Ligilactobacillus salivarius cp400"]]},{"id":"NCBITaxon:238","l":"Elizabethkingia meningoseptica","na":10,"nb":6,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["pond-water-envo-00002228.html","pond water"],["small-river-biome-envo-00000890.html","small river biome"],["bronchus-uberon-0002185.html","bronchus"],["midgut-bto-0000863.html","midgut"],["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["NCBITaxon%3A1453492","Chryseobacterium hispalense"],["NCBITaxon%3A238","Elizabethkingia meningoseptica"],["NCBITaxon%3A1216967","Elizabethkingia meningoseptica ATCC 13253 = NBRC 12535"],["NCBITaxon%3A1379264","Elizabethkingia meningoseptica KuYH"],["NCBITaxon%3A247","Empedobacter brevis"],["NCBITaxon%3A343874","Empedobacter falsenii"]]},{"id":"NCBITaxon:1154585","l":"Gaiellaceae","na":6,"nb":9,"a":[["crop-bto-0000301.html","crop"],["forearm-bto-0001447.html","forearm"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["seedling-bto-0001228.html","seedling"],["skin-bto-0001253.html","skin"]],"b":[["NCBITaxon%3A2928748","Candidatus Gaiellasilicea maunaloa"],["NCBITaxon%3A1002870","Gaiella occulta"],["NCBITaxon%3A2663207","Gaiella sp."],["NCBITaxon%3A1282738","Gaiella sp. EBR4-R2"],["NCBITaxon%3A1282739","Gaiella sp. EBR4-RS1"],["NCBITaxon%3A1799656","Gaiella sp. SCGC AG-212-M14"]]},{"id":"NCBITaxon:1830","l":"Rhodococcus ruber","na":6,"nb":9,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A941184","Nocardia salmonicolor"],["NCBITaxon%3A1830","Rhodococcus ruber"],["NCBITaxon%3A1278076","Rhodococcus ruber BKS 20-38"],["NCBITaxon%3A1240349","Rhodococcus ruber Chol-4"],["NCBITaxon%3A3392186","Rhodococcus ruber IEGM1217"],["NCBITaxon%3A3392194","Rhodococcus ruber IEGM453"]]},{"id":"NCBITaxon:28251","l":"Ornithobacterium rhinotracheale","na":9,"nb":6,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["small-river-biome-envo-00000890.html","small river biome"],["water-body-envo-00000063.html","water body"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["cultivated-environment-envo-01000311.html","cultivated environment"],["mud-envo-01000001.html","mud"]],"b":[["NCBITaxon%3A28251","Ornithobacterium rhinotracheale"],["NCBITaxon%3A1112205","Ornithobacterium rhinotracheale B3263/91"],["NCBITaxon%3A1112206","Ornithobacterium rhinotracheale BAC-96-8334"],["NCBITaxon%3A867902","Ornithobacterium rhinotracheale DSM 15997"],["NCBITaxon%3A1401326","Ornithobacterium rhinotracheale H06-030791"],["NCBITaxon%3A1401325","Ornithobacterium rhinotracheale ORT-UMN 88"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":6,"nb":8,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"],["sludge-envo-00002044.html","sludge"],["forested-area-envo-00000111.html","forested area"],["scrubland-area-envo-00000300.html","scrubland area"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A119219","Cupriavidus metallidurans"],["NCBITaxon%3A106590","Cupriavidus necator"],["NCBITaxon%3A1304882","Cupriavidus necator A5-1"],["NCBITaxon%3A381666","Cupriavidus necator H16"],["NCBITaxon%3A53482","Cupriavidus necator H850"],["NCBITaxon%3A1042878","Cupriavidus necator N-1"]]},{"id":"NCBITaxon:1510","l":"Thermoclostridium stercorarium","na":6,"nb":8,"a":[["small-river-biome-envo-00000890.html","small river biome"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"],["rock-envo-00001995.html","rock"],["sulfur-spring-envo-00000126.html","sulfur spring"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["NCBITaxon%3A1510","Thermoclostridium stercorarium"],["NCBITaxon%3A160385","Thermoclostridium stercorarium subsp. leptospartum"],["NCBITaxon%3A1346611","Thermoclostridium stercorarium subsp. leptospartum DSM 9219"],["NCBITaxon%3A160845","Thermoclostridium stercorarium subsp. stercorarium"],["NCBITaxon%3A1121335","Thermoclostridium stercorarium subsp. stercorarium DSM 8532"],["NCBITaxon%3A29351","Thermoclostridium stercorarium subsp. thermolacticum"]]},{"id":"NCBITaxon:1512","l":"[Clostridium] symbiosum","na":6,"nb":6,"a":[["biofilm-envo-00002034.html","biofilm"],["animal-house-envo-00003040.html","animal house"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["emulsion-envo-00010506.html","emulsion"],["environmental-feature-envo-00002297.html","environmental feature"],["pig-manure-envo-00003860.html","pig manure"]],"b":[["NCBITaxon%3A1506","Clostridium sp."],["NCBITaxon%3A1512","[Clostridium] symbiosum"],["NCBITaxon%3A411472","[Clostridium] symbiosum ATCC 14940"],["NCBITaxon%3A742740","[Clostridium] symbiosum WAL-14163"],["NCBITaxon%3A742741","[Clostridium] symbiosum WAL-14673"],["NCBITaxon%3A854","Fusobacterium russii"]]},{"id":"NCBITaxon:1773","l":"Mycobacterium tuberculosis","na":5,"nb":2946,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["posterior-lobe-bto-0000561.html","posterior lobe"],["sputum-bto-0001297.html","sputum"],["thorax-bto-0001368.html","thorax"],["thp-1-cell-bto-0001370.html","THP-1 cell"]],"b":[["NCBITaxon%3A1773","Mycobacterium tuberculosis"],["NCBITaxon%3A668339","Mycobacterium tuberculosis 00_1695"],["NCBITaxon%3A1455192","Mycobacterium tuberculosis 01-Cr4_ND_3_A"],["NCBITaxon%3A1455078","Mycobacterium tuberculosis 01-Ps1_0_A"],["NCBITaxon%3A515616","Mycobacterium tuberculosis 02_1987"],["NCBITaxon%3A1455200","Mycobacterium tuberculosis 02-Cr4_ND_3_B"]]},{"id":"NCBITaxon:119045","l":"Methylobacteriaceae","na":5,"nb":2784,"a":[["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["hemolymph-bto-0000572.html","hemolymph"],["urine-bto-0001419.html","urine"],["vaginal-fluid-bto-0003084.html","vaginal fluid"]],"b":[["NCBITaxon%3A204700","bacterium Ellin318"],["NCBITaxon%3A204701","bacterium Ellin330"],["NCBITaxon%3A2730920","Enterovirga aerilata"],["NCBITaxon%3A1339210","Enterovirga rhinocerotis"],["NCBITaxon%3A2026350","Enterovirga sp."],["NCBITaxon%3A3400910","Enterovirga sp. CN4-39"]]},{"id":"NCBITaxon:106589","l":"Cupriavidus","na":5,"nb":878,"a":[["gut-bto-0000545.html","gut"],["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["skin-bto-0001253.html","skin"]],"b":[["NCBITaxon%3A1001822","Cupriavidus agavae"],["NCBITaxon%3A942866","Cupriavidus alkaliphilus"],["NCBITaxon%3A68895","Cupriavidus basilensis"],["NCBITaxon%3A1200775","Cupriavidus basilensis B-8"],["NCBITaxon%3A1127483","Cupriavidus basilensis OR16"],["NCBITaxon%3A151783","Cupriavidus campinensis"]]},{"id":"NCBITaxon:838","l":"Prevotella","na":5,"nb":735,"a":[["brain-bto-0000142.html","brain"],["colon-bto-0000269.html","colon"],["heart-bto-0000562.html","heart"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"]],"b":[["NCBITaxon%3A2838738","Candidatus Prevotella avicola"],["NCBITaxon%3A3083129","Candidatus Prevotella equi"],["NCBITaxon%3A2838739","Candidatus Prevotella intestinigallinarum"],["NCBITaxon%3A2838740","Candidatus Prevotella stercoripullorum"],["NCBITaxon%3A81582","Prevotella aff. ruminicola Tc2-24"],["NCBITaxon%3A419005","Prevotella amnii"]]},{"id":"NCBITaxon:1060","l":"Rhodobacter","na":5,"nb":342,"a":[["gut-bto-0000545.html","gut"],["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["skin-bto-0001253.html","skin"]],"b":[["NCBITaxon%3A196780","Arctic sea ice bacterium ARK10036"],["NCBITaxon%3A1675527","Candidatus Rhodobacter oscarellae"],["NCBITaxon%3A1063","Cereibacter sphaeroides"],["NCBITaxon%3A453582","Rhodobacter aestuarii"],["NCBITaxon%3A70067","Rhodobacter apigmentum"],["NCBITaxon%3A1608946","Rhodobacter azollae"]]},{"id":"NCBITaxon:118968","l":"Coxiellaceae","na":5,"nb":311,"a":[["dorsum-bto-0001713.html","dorsum"],["hemolymph-bto-0000572.html","hemolymph"],["skin-bto-0001253.html","skin"],["tongue-bto-0001385.html","tongue"],["vaginal-fluid-bto-0003084.html","vaginal fluid"]],"b":[["NCBITaxon%3A254246","Aquicella lusitana"],["NCBITaxon%3A254247","Aquicella siphonis"],["NCBITaxon%3A1872583","Aquicella sp."],["NCBITaxon%3A868357","Aquicella sp. 1(27-11)"],["NCBITaxon%3A1084584","Aquicella sp. enrichment culture clone B21"],["NCBITaxon%3A1136692","Aquicella sp. enrichment culture clone CTBE CDB1001G12"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":5,"nb":287,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"],["feces-uberon-0001988.html","feces"],["rectum-bto-0001158.html","rectum"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A666","Vibrio cholerae"],["NCBITaxon%3A693741","Vibrio cholerae 0139-ARG"],["NCBITaxon%3A1294144","Vibrio cholerae 01-1751"],["NCBITaxon%3A592313","Vibrio cholerae 12129(1)"],["NCBITaxon%3A412966","Vibrio cholerae 1587"]]},{"id":"NCBITaxon:1129771","l":"Leptotrichiaceae","na":5,"nb":169,"a":[["dorsum-bto-0001713.html","dorsum"],["gut-bto-0000545.html","gut"],["saliva-bto-0001202.html","saliva"],["skin-bto-0001253.html","skin"],["vaginal-fluid-bto-0003084.html","vaginal fluid"]],"b":[["NCBITaxon%3A1766719","Caviibacter abscessus"],["NCBITaxon%3A2024962","Caviibacter sp."],["NCBITaxon%3A3239304","Leptotrichia alba"],["NCBITaxon%3A40542","Leptotrichia buccalis"],["NCBITaxon%3A523794","Leptotrichia buccalis C-1013-b"],["NCBITaxon%3A230138","Leptotrichia genomosp. C1"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":5,"nb":56,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["pseudostem-bto-0005992.html","pseudostem"],["seedling-bto-0001228.html","seedling"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A61645","Enterobacter asburiae"],["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A1328422","Enterobacter cloacae BIDMC 33A"],["NCBITaxon%3A1439324","Enterobacter cloacae BIDMC 66"],["NCBITaxon%3A1439325","Enterobacter cloacae BIDMC 67"],["NCBITaxon%3A1329846","Enterobacter cloacae BIDMC 8"]]},{"id":"NCBITaxon:747","l":"Pasteurella multocida","na":5,"nb":38,"a":[["bronchus-uberon-0002185.html","bronchus"],["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["finger-bto-0004669.html","finger"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A714","Aggregatibacter actinomycetemcomitans"],["NCBITaxon%3A747","Pasteurella multocida"],["NCBITaxon%3A1298929","Pasteurella multocida 1500C"],["NCBITaxon%3A1298924","Pasteurella multocida 1500E"],["NCBITaxon%3A1298925","Pasteurella multocida 2000"],["NCBITaxon%3A1075089","Pasteurella multocida 36950"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":5,"nb":33,"a":[["liquid-water-envo-00002006.html","liquid water"],["food-spoiled-foodon-00003366.html","food (spoiled)"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"]],"b":[["NCBITaxon%3A85698","Achromobacter xylosoxidans"],["NCBITaxon%3A152480","Burkholderia ambifaria"],["NCBITaxon%3A179879","Burkholderia anthina"],["NCBITaxon%3A488730","Burkholderia arboris"],["NCBITaxon%3A95486","Burkholderia cenocepacia"],["NCBITaxon%3A292","Burkholderia cepacia"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":32,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"],["midgut-bto-0000863.html","midgut"],["paddy-field-envo-00000297.html","paddy field"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["NCBITaxon%3A2703793","Serratia bockelmannii"],["NCBITaxon%3A615","Serratia marcescens"],["NCBITaxon%3A1257036","Serratia marcescens 12"],["NCBITaxon%3A1255611","Serratia marcescens 448"],["NCBITaxon%3A1333586","Serratia marcescens AB42556419-isolate1"],["NCBITaxon%3A1400186","Serratia marcescens BIDMC 44"]]},{"id":"NCBITaxon:114248","l":"Tepidimonas","na":5,"nb":25,"a":[["gut-bto-0000545.html","gut"],["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["skin-bto-0001253.html","skin"]],"b":[["NCBITaxon%3A2588942","Tepidimonas alkaliphilus"],["NCBITaxon%3A247482","Tepidimonas aquatica"],["NCBITaxon%3A288769","Tepidimonas arfidensis"],["NCBITaxon%3A2267262","Tepidimonas charontis"],["NCBITaxon%3A1101373","Tepidimonas fonticaldi"],["NCBITaxon%3A114249","Tepidimonas ignava"]]},{"id":"NCBITaxon:109790","l":"Lactobacillus jensenii","na":5,"nb":22,"a":[["egg-food-product-foodon-00001274.html","egg food product"],["vagina-uberon-0000996.html","vagina"],["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A1579","Lactobacillus acidophilus"],["NCBITaxon%3A109790","Lactobacillus jensenii"],["NCBITaxon%3A440497","Lactobacillus jensenii 1153"],["NCBITaxon%3A575605","Lactobacillus jensenii 115-3-CHN"],["NCBITaxon%3A596326","Lactobacillus jensenii 208-1"],["NCBITaxon%3A596325","Lactobacillus jensenii 269-3"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":5,"nb":22,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["pseudostem-bto-0005992.html","pseudostem"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A221276","[Curtobacterium] plantarum"],["NCBITaxon%3A558","Erwinia sp."],["NCBITaxon%3A83655","Leclercia adecarboxylata"],["NCBITaxon%3A549","Pantoea agglomerans"],["NCBITaxon%3A1261128","Pantoea agglomerans 299R"]]},{"id":"NCBITaxon:1245","l":"Leuconostoc mesenteroides","na":5,"nb":20,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["leaf-po-0025034.html","leaf"],["animal-manure-envo-00003031.html","animal manure"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A33964","Leuconostoc citreum"],["NCBITaxon%3A1245","Leuconostoc mesenteroides"],["NCBITaxon%3A1357402","Leuconostoc mesenteroides A16_17"],["NCBITaxon%3A427140","Leuconostoc mesenteroides KFRI-MG"],["NCBITaxon%3A1429888","Leuconostoc mesenteroides P45"],["NCBITaxon%3A33965","Leuconostoc mesenteroides subsp. cremoris"]]},{"id":"NCBITaxon:95486","l":"Burkholderia cenocepacia","na":5,"nb":18,"a":[["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["NCBITaxon%3A95486","Burkholderia cenocepacia"],["NCBITaxon%3A1110700","Burkholderia cenocepacia AU16956"],["NCBITaxon%3A1110701","Burkholderia cenocepacia AU16958"],["NCBITaxon%3A985077","Burkholderia cenocepacia BC7"],["NCBITaxon%3A1165869","Burkholderia cenocepacia D2AES"],["NCBITaxon%3A1055524","Burkholderia cenocepacia H111"]]},{"id":"NCBITaxon:1363","l":"Lactococcus garvieae","na":5,"nb":16,"a":[["animal-house-envo-00003040.html","animal house"],["gall-bladder-bto-0000493.html","gall bladder"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["geographic-feature-envo-00000000.html","geographic feature"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["NCBITaxon%3A1363","Lactococcus garvieae"],["NCBITaxon%3A998087","Lactococcus garvieae 21881"],["NCBITaxon%3A913847","Lactococcus garvieae 8831"],["NCBITaxon%3A420889","Lactococcus garvieae ATCC 49156"],["NCBITaxon%3A1231377","Lactococcus garvieae DCC43"],["NCBITaxon%3A1229517","Lactococcus garvieae I113"]]},{"id":"NCBITaxon:109326","l":"Anaerovorax","na":5,"nb":15,"a":[["cecum-bto-0000166.html","cecum"],["dorsum-bto-0001713.html","dorsum"],["gut-bto-0000545.html","gut"],["intestine-bto-0000648.html","intestine"],["tongue-bto-0001385.html","tongue"]],"b":[["NCBITaxon%3A109327","Anaerovorax odorimutans"],["NCBITaxon%3A1120998","Anaerovorax odorimutans DSM 5092"],["NCBITaxon%3A1872534","Anaerovorax sp."],["NCBITaxon%3A1151487","Anaerovorax sp. canine oral taxon 125"],["NCBITaxon%3A1729608","Anaerovorax sp. E109"],["NCBITaxon%3A511452","Anaerovorax sp. enrichment culture clone D2CL_Bac_16S_Clone16"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":14,"nb":5,"a":[["watercourse-envo-00000029.html","watercourse"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A34","Myxococcus xanthus"],["NCBITaxon%3A246197","Myxococcus xanthus DK 1622"],["NCBITaxon%3A1198133","Myxococcus xanthus DZ2"],["NCBITaxon%3A1198538","Myxococcus xanthus DZF1"],["NCBITaxon%3A675543","Myxococcus xanthus NewJersey2"]]},{"id":"NCBITaxon:1292","l":"Staphylococcus warneri","na":5,"nb":13,"a":[["neonate-bto-0001762.html","neonate"],["skin-of-body-uberon-0002097.html","skin of body"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A1283","Staphylococcus haemolyticus"],["NCBITaxon%3A1290","Staphylococcus hominis"],["NCBITaxon%3A29385","Staphylococcus saprophyticus"],["NCBITaxon%3A29387","Staphylococcus sp."],["NCBITaxon%3A1292","Staphylococcus warneri"],["NCBITaxon%3A1255582","Staphylococcus warneri 1445"]]},{"id":"NCBITaxon:529","l":"Brucella anthropi","na":5,"nb":13,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["hospital-envo-00002173.html","hospital"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A1775538","Acidovorax sp. JCM 10070"],["NCBITaxon%3A1775539","Acidovorax sp. JCM 10072"],["NCBITaxon%3A529","Brucella anthropi"],["NCBITaxon%3A1201037","Brucella anthropi 60a"],["NCBITaxon%3A439375","Brucella anthropi ATCC 49188"],["NCBITaxon%3A1151114","Brucella anthropi CTS-325"]]},{"id":"NCBITaxon:1318","l":"Streptococcus parasanguinis","na":5,"nb":12,"a":[["biofilm-envo-00002034.html","biofilm"],["geographic-feature-envo-00000000.html","geographic feature"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"],["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["NCBITaxon%3A45634","Streptococcus cristatus"],["NCBITaxon%3A1318","Streptococcus parasanguinis"],["NCBITaxon%3A760570","Streptococcus parasanguinis ATCC 15912"],["NCBITaxon%3A888048","Streptococcus parasanguinis ATCC 903"],["NCBITaxon%3A1073372","Streptococcus parasanguinis CC87K"],["NCBITaxon%3A1403947","Streptococcus parasanguinis DORA_23_24"]]},{"id":"NCBITaxon:1393","l":"Brevibacillus brevis","na":5,"nb":12,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A1391","Aneurinibacillus aneurinilyticus"],["NCBITaxon%3A267746","Aneurinibacillus danicus"],["NCBITaxon%3A47500","Aneurinibacillus migulanus"],["NCBITaxon%3A45462","Brevibacillus borstelensis"],["NCBITaxon%3A1393","Brevibacillus brevis"],["NCBITaxon%3A1129895","Brevibacillus brevis FJAT-0809-GLX"]]},{"id":"NCBITaxon:1405","l":"Bacillus mycoides","na":5,"nb":10,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["milk-uberon-0001913.html","milk"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A1405","Bacillus mycoides"],["NCBITaxon%3A695755","Bacillus mycoides AH1143"],["NCBITaxon%3A526997","Bacillus mycoides DSM 2048"],["NCBITaxon%3A1227358","Bacillus mycoides FSL H7-687"],["NCBITaxon%3A1227359","Bacillus mycoides FSL R5-860"],["NCBITaxon%3A315730","Bacillus mycoides KBAB4"]]},{"id":"NCBITaxon:354242","l":"Campylobacter jejuni subsp. jejuni 81-176","na":5,"nb":9,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["leukocyte-bto-0000751.html","leukocyte"],["lymphocyte-bto-0000775.html","lymphocyte"],["neutrophil-bto-0000130.html","neutrophil"],["small-intestine-bto-0000651.html","small intestine"]],"b":[["NCBITaxon%3A354242","Campylobacter jejuni subsp. jejuni 81-176"],["NCBITaxon%3A1368608","Campylobacter jejuni subsp. jejuni 81-176-55"],["NCBITaxon%3A1368609","Campylobacter jejuni subsp. jejuni 81-176-55-O1"],["NCBITaxon%3A1368610","Campylobacter jejuni subsp. jejuni 81-176-55-O3"],["NCBITaxon%3A1368611","Campylobacter jejuni subsp. jejuni 81-176-55-T1"],["NCBITaxon%3A1368612","Campylobacter jejuni subsp. jejuni 81-176-55-T3"]]},{"id":"NCBITaxon:37919","l":"Rhodococcus opacus","na":5,"nb":9,"a":[["watercourse-envo-00000029.html","watercourse"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"],["sludge-envo-00002044.html","sludge"],["water-scum-envo-00005794.html","water scum"]],"b":[["NCBITaxon%3A1833","Rhodococcus erythropolis"],["NCBITaxon%3A37919","Rhodococcus opacus"],["NCBITaxon%3A632772","Rhodococcus opacus B4"],["NCBITaxon%3A1129896","Rhodococcus opacus M213"],["NCBITaxon%3A1219021","Rhodococcus opacus NBRC 100626"],["NCBITaxon%3A543736","Rhodococcus opacus PD630"]]},{"id":"NCBITaxon:732","l":"Aggregatibacter aphrophilus","na":9,"nb":5,"a":[["bone-element-uberon-0001474.html","bone element"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["archeological-site-envo-00000564.html","archeological site"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["NCBITaxon%3A732","Aggregatibacter aphrophilus"],["NCBITaxon%3A985008","Aggregatibacter aphrophilus ATCC 33389"],["NCBITaxon%3A679198","Aggregatibacter aphrophilus F0387"],["NCBITaxon%3A634176","Aggregatibacter aphrophilus NJ8700"],["NCBITaxon%3A249188","Haemophilus pittmaniae"]]},{"id":"NCBITaxon:1015","l":"Bergeyella zoohelcum","na":8,"nb":5,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["biotope-envo-00002036.html","biotope"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A1962306","Bergeyella sp."],["NCBITaxon%3A1015","Bergeyella zoohelcum"],["NCBITaxon%3A883096","Bergeyella zoohelcum ATCC 43767"],["NCBITaxon%3A883098","Bergeyella zoohelcum CCUG 30536"],["NCBITaxon%3A34059","Faucicola atlantae"]]},{"id":"NCBITaxon:1505","l":"Paraclostridium sordellii","na":8,"nb":5,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["animal-house-envo-00003040.html","animal house"],["animal-litter-envo-00002191.html","animal litter"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["mud-envo-01000001.html","mud"]],"b":[["NCBITaxon%3A1490","Paraclostridium bifermentans"],["NCBITaxon%3A1505","Paraclostridium sordellii"],["NCBITaxon%3A1172204","Paraclostridium sordellii 8483"],["NCBITaxon%3A1292036","Paraclostridium sordellii ATCC 9714"],["NCBITaxon%3A1292035","Paraclostridium sordellii VPI 9048"]]},{"id":"NCBITaxon:28038","l":"Latilactobacillus curvatus","na":5,"nb":8,"a":[["research-facility-envo-00000469.html","research facility"],["food-fermented-foodon-00001258.html","food (fermented)"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A418199","Lactobacillus sp. JCM 7527"],["NCBITaxon%3A28038","Latilactobacillus curvatus"],["NCBITaxon%3A1074451","Latilactobacillus curvatus CRL 705"],["NCBITaxon%3A1357401","Latilactobacillus curvatus F16_9"],["NCBITaxon%3A1293592","Latilactobacillus curvatus JCM 1096 = DSM 20019"],["NCBITaxon%3A1318630","Latilactobacillus curvatus WSU1"]]},{"id":"NCBITaxon:29355","l":"Ruminiclostridium cellobioparum","na":7,"nb":5,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["activated-sludge-envo-00002046.html","activated sludge"],["cultivated-environment-envo-01000311.html","cultivated environment"],["mud-envo-01000001.html","mud"],["pig-manure-envo-00003860.html","pig manure"]],"b":[["NCBITaxon%3A29355","Ruminiclostridium cellobioparum"],["NCBITaxon%3A1121303","Ruminiclostridium cellobioparum DSM 1351 = ATCC 15832"],["NCBITaxon%3A2305018","Ruminiclostridium cellobioparum subsp. cellobioparum"],["NCBITaxon%3A29371","Ruminiclostridium cellobioparum subsp. termitidis"],["NCBITaxon%3A1195236","Ruminiclostridium cellobioparum subsp. termitidis CT1112"]]},{"id":"NCBITaxon:40518","l":"Ruminococcus bromii","na":5,"nb":7,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["emulsion-envo-00010506.html","emulsion"],["skin-environment-envo-2100003.html","skin environment"],["animal-habitation-envo-00005803.html","animal habitation"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A40518","Ruminococcus bromii"],["NCBITaxon%3A657321","Ruminococcus bromii L2-63"],["NCBITaxon%3A1339598","Ruminococcus bromii TSDC10.1-1.1"],["NCBITaxon%3A1339599","Ruminococcus bromii TSDC10.2-1.1"],["NCBITaxon%3A1339600","Ruminococcus bromii TSDC17.2-1.1"],["NCBITaxon%3A1339601","Ruminococcus bromii TSDC17.2-1.2"]]},{"id":"NCBITaxon:1032526","l":"Pedosphaera","na":5,"nb":6,"a":[["cecum-bto-0000166.html","cecum"],["gut-bto-0000545.html","gut"],["inflorescence-bto-0000628.html","inflorescence"],["plant-bto-0001481.html","plant"],["root-bto-0001188.html","root"]],"b":[["NCBITaxon%3A1032527","Pedosphaera parvula"],["NCBITaxon%3A320771","Pedosphaera parvula Ellin514"],["NCBITaxon%3A2024890","Pedosphaera sp."],["NCBITaxon%3A1805321","Pedosphaera sp. 13_1_40CM_3_59_3"],["NCBITaxon%3A1982324","Pedosphaera sp. Tous-C6FEB"],["NCBITaxon%3A1191521","uncultured Pedosphaera sp."]]},{"id":"NCBITaxon:114847","l":"uncultured Roseobacter sp.","na":5,"nb":6,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"],["marine-environment-envo-01000320.html","marine environment"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"]],"b":[["NCBITaxon%3A1906325","uncultured Roseobacter bacterium"],["NCBITaxon%3A1906326","uncultured Roseobacter clade_AS-21 lineage bacterium"],["NCBITaxon%3A1906327","uncultured Roseobacter clade_DC5-80-3 lineage bacterium"],["NCBITaxon%3A1906328","uncultured Roseobacter clade_NAC11-7 lineage bacterium"],["NCBITaxon%3A1906329","uncultured Roseobacter clade_OCT lineage bacterium"],["NCBITaxon%3A114847","uncultured Roseobacter sp."]]},{"id":"NCBITaxon:1288","l":"Staphylococcus xylosus","na":5,"nb":6,"a":[["stream-envo-00000023.html","stream"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"],["fecal-environment-envo-01001029.html","fecal environment"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["NCBITaxon%3A246432","Staphylococcus equorum"],["NCBITaxon%3A1293","Staphylococcus gallinarum"],["NCBITaxon%3A29387","Staphylococcus sp."],["NCBITaxon%3A1288","Staphylococcus xylosus"],["NCBITaxon%3A1353979","Staphylococcus xylosus DMB3-Bh1"],["NCBITaxon%3A1262650","Staphylococcus xylosus NJ"]]},{"id":"NCBITaxon:1861","l":"Geodermatophilus obscurus","na":5,"nb":6,"a":[["desert-sand-envo-00005800.html","desert sand"],["tropical-envo-01000204.html","tropical"],["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A1296565","Geodermatophilus amargosae"],["NCBITaxon%3A1523247","Geodermatophilus dictyosporus"],["NCBITaxon%3A1861","Geodermatophilus obscurus"],["NCBITaxon%3A526225","Geodermatophilus obscurus DSM 43160"],["NCBITaxon%3A1523248","Geodermatophilus obscurus subsp. utahensis"],["NCBITaxon%3A97398","Streptomyces abikoensis"]]},{"id":"NCBITaxon:29549","l":"Rhodothermus marinus","na":6,"nb":5,"a":[["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["cultivated-environment-envo-01000311.html","cultivated environment"],["freshwater-environment-envo-01000306.html","freshwater environment"],["oil-spill-envo-00002061.html","oil spill"],["phreatic-zone-envo-00000329.html","phreatic zone"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A29549","Rhodothermus marinus"],["NCBITaxon%3A518766","Rhodothermus marinus DSM 4252"],["NCBITaxon%3A1295135","Rhodothermus marinus JCM 9785"],["NCBITaxon%3A762569","Rhodothermus marinus SG0.5JP17-171"],["NCBITaxon%3A762570","Rhodothermus marinus SG0.5JP17-172"]]},{"id":"NCBITaxon:34062","l":"Faucicola osloensis","na":5,"nb":6,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"],["water-scum-envo-00005794.html","water scum"]],"b":[["NCBITaxon%3A34062","Faucicola osloensis"],["NCBITaxon%3A478","Moraxella nonliquefaciens"],["NCBITaxon%3A1138309","Moraxella osloensis ARD 1"],["NCBITaxon%3A1138312","Moraxella osloensis ARD 11"],["NCBITaxon%3A1138310","Moraxella osloensis ARD 2"],["NCBITaxon%3A1138311","Moraxella osloensis ARD 3"]]},{"id":"NCBITaxon:730","l":"[Haemophilus] ducreyi","na":5,"nb":6,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["NCBITaxon%3A730","[Haemophilus] ducreyi"],["NCBITaxon%3A1005044","[Haemophilus] ducreyi 025"],["NCBITaxon%3A233412","[Haemophilus] ducreyi 35000HP"],["NCBITaxon%3A1005045","[Haemophilus] ducreyi 511"],["NCBITaxon%3A1005046","[Haemophilus] ducreyi ATCC 33921"],["NCBITaxon%3A1005047","[Haemophilus] ducreyi HMC112"]]},{"id":"NCBITaxon:1659","l":"Actinomyces israelii","na":5,"nb":5,"a":[["bone-element-uberon-0001474.html","bone element"],["archeological-site-envo-00000564.html","archeological site"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"],["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["NCBITaxon%3A52769","Actinomyces gerencseriae"],["NCBITaxon%3A1659","Actinomyces israelii"],["NCBITaxon%3A1120944","Actinomyces israelii DSM 43320"],["NCBITaxon%3A686663","Actinomyces israelii F0345"],["NCBITaxon%3A1655","Actinomyces naeslundii"]]},{"id":"NCBITaxon:2047","l":"Rothia dentocariosa","na":5,"nb":5,"a":[["water-body-envo-00000063.html","water body"],["skin-of-body-uberon-0002097.html","skin of body"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["tropical-envo-01000204.html","tropical"],["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["NCBITaxon%3A42858","Mammaliicoccus lentus"],["NCBITaxon%3A2047","Rothia dentocariosa"],["NCBITaxon%3A762948","Rothia dentocariosa ATCC 17931"],["NCBITaxon%3A553202","Rothia dentocariosa JCVIHMP031"],["NCBITaxon%3A563032","Rothia dentocariosa M567"]]},{"id":"NCBITaxon:1385","l":"Caryophanales","na":4,"nb":64257,"a":[["hand-bto-0004668.html","hand"],["intestine-bto-0000648.html","intestine"],["leaf-bto-0000713.html","leaf"],["mouth-bto-0001090.html","mouth"]],"b":[["NCBITaxon%3A3417167","Abyssicoccaceae bacterium KTH-63"],["NCBITaxon%3A1817405","Abyssicoccus albus"],["NCBITaxon%3A1973112","Abyssicoccus sp."],["NCBITaxon%3A1870825","Acidibacillus sp."],["NCBITaxon%3A3054939","Aciduricibacillus chroicocephali"],["NCBITaxon%3A279215","Aeribacillus alveayuensis"]]},{"id":"NCBITaxon:356","l":"Hyphomicrobiales","na":4,"nb":37310,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["stem-bto-0001300.html","stem"]],"b":[["NCBITaxon%3A119160","2,3-D degrading bacterium NHC2"],["NCBITaxon%3A119159","2,3-D degrading bacterium NHG3"],["NCBITaxon%3A83488","2,4-D degrading bacterium M1"],["NCBITaxon%3A2910977","Acuticoccus kalidii"],["NCBITaxon%3A2073160","Acuticoccus kandeliae"],["NCBITaxon%3A2796142","Acuticoccus mangrovi"]]},{"id":"NCBITaxon:374","l":"Bradyrhizobium","na":4,"nb":9860,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"],["wood-bto-0005516.html","wood"]],"b":[["NCBITaxon%3A2683706","Bradyrhizobium acaciae"],["NCBITaxon%3A2734909","Bradyrhizobium aeschynomenes"],["NCBITaxon%3A2751811","Bradyrhizobium agreste"],["NCBITaxon%3A634784","Bradyrhizobium algeriense"],["NCBITaxon%3A1571202","Bradyrhizobium altum"],["NCBITaxon%3A1300045","Bradyrhizobium americanum"]]},{"id":"NCBITaxon:33882","l":"Microbacterium","na":4,"nb":5935,"a":[["leaf-bto-0000713.html","leaf"],["pitcher-bto-0001069.html","pitcher"],["small-intestine-bto-0000651.html","small intestine"],["stem-bto-0001300.html","stem"]],"b":[["NCBITaxon%3A196883","Arctic sea ice bacterium ARK10030"],["NCBITaxon%3A3121366","Candidatus Microbacterium colombiense"],["NCBITaxon%3A3121374","Candidatus Microbacterium phytovorans"],["NCBITaxon%3A2838696","Candidatus Microbacterium pullistercoris"],["NCBITaxon%3A2838697","Candidatus Microbacterium stercoravium"],["NCBITaxon%3A272239","Gulosibacter bifidus"]]},{"id":"NCBITaxon:1827","l":"Rhodococcus","na":4,"nb":3197,"a":[["nectar-bto-0000537.html","nectar"],["pitcher-bto-0001069.html","pitcher"],["small-intestine-bto-0000651.html","small intestine"],["stem-bto-0001300.html","stem"]],"b":[["NCBITaxon%3A179179","bromate-reducing bacterium B7"],["NCBITaxon%3A179180","bromate-reducing bacterium B8"],["NCBITaxon%3A983873","Dietzia aurantiaca"],["NCBITaxon%3A84096","Gordonia alkanivorans"],["NCBITaxon%3A178933","PAH-contaminated sludge bacterium PB-32"],["NCBITaxon%3A43767","Prescottella equi"]]},{"id":"NCBITaxon:75682","l":"Oxalobacteraceae","na":4,"nb":3139,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["NCBITaxon%3A1051899","Actimicrobium antarcticum"],["NCBITaxon%3A2792609","Actimicrobium sp."],["NCBITaxon%3A3048606","Actimicrobium sp. CCC2.4"],["NCBITaxon%3A3048616","Actimicrobium sp. CCI2.3"],["NCBITaxon%3A3071708","Actimicrobium sp. GrIS 1.19"],["NCBITaxon%3A1550357","Actimicrobium sp. MsC-12-4CB4-02"]]},{"id":"NCBITaxon:186804","l":"Peptostreptococcaceae","na":4,"nb":684,"a":[["adult-bto-0001043.html","adult"],["ileum-bto-0000620.html","ileum"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A29359","Asaccharospora irregularis"],["NCBITaxon%3A1121321","Asaccharospora irregularis DSM 2635"],["NCBITaxon%3A1965303","Asaccharospora sp."],["NCBITaxon%3A226526","Candidatus Peptostreptococcus massiliensis"],["NCBITaxon%3A155565","Clostridioides aff. difficile AA1"],["NCBITaxon%3A1496","Clostridioides difficile"]]},{"id":"NCBITaxon:204432","l":"Terriglobia","na":4,"nb":410,"a":[["crop-bto-0000301.html","crop"],["leaf-bto-0000713.html","leaf"],["oil-secretion-bto-0005373.html","oil secretion"],["trunk-bto-0001493.html","trunk"]],"b":[["NCBITaxon%3A1335627","Acidicapsa acidiphila"],["NCBITaxon%3A1615681","Acidicapsa acidisoli"],["NCBITaxon%3A946336","Acidicapsa borealis"],["NCBITaxon%3A2218256","Acidicapsa dinghuensis"],["NCBITaxon%3A1335629","Acidicapsa ferrireducens"],["NCBITaxon%3A542300","Acidicapsa ligni"]]},{"id":"NCBITaxon:102106","l":"Collinsella","na":4,"nb":287,"a":[["cecum-bto-0000166.html","cecum"],["gut-bto-0000545.html","gut"],["intestine-bto-0000648.html","intestine"],["juvenile-bto-0002168.html","juvenile"]],"b":[["NCBITaxon%3A2838522","Candidatus Collinsella stercoripullorum"],["NCBITaxon%3A2713419","Collinsella acetigenes"],["NCBITaxon%3A74426","Collinsella aerofaciens"],["NCBITaxon%3A411903","Collinsella aerofaciens ATCC 25986"],["NCBITaxon%3A1339403","Collinsella aerofaciens TSDA1.2-1.1"],["NCBITaxon%3A1339404","Collinsella aerofaciens TSDA1.2-1.2"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":4,"nb":178,"a":[["stream-envo-00000023.html","stream"],["biome-envo-00000428.html","biome"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["NCBITaxon%3A150055","Streptococcus lutetiensis"],["NCBITaxon%3A1309","Streptococcus mutans"],["NCBITaxon%3A857155","Streptococcus mutans 11A1"],["NCBITaxon%3A857147","Streptococcus mutans 11SSST2"],["NCBITaxon%3A857143","Streptococcus mutans 11VS1"],["NCBITaxon%3A857113","Streptococcus mutans 14D"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":4,"nb":156,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A1428","Bacillus thuringiensis"],["NCBITaxon%3A1340496","Bacillus thuringiensis AKS-7"],["NCBITaxon%3A714359","Bacillus thuringiensis BMB171"],["NCBITaxon%3A1423143","Bacillus thuringiensis Bt18247"],["NCBITaxon%3A1423142","Bacillus thuringiensis Bt18679"],["NCBITaxon%3A527021","Bacillus thuringiensis Bt407"]]},{"id":"NCBITaxon:195","l":"Campylobacter coli","na":4,"nb":122,"a":[["feces-uberon-0001988.html","feces"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A195","Campylobacter coli"],["NCBITaxon%3A887290","Campylobacter coli 1091"],["NCBITaxon%3A887291","Campylobacter coli 1098"],["NCBITaxon%3A887280","Campylobacter coli 111-3"],["NCBITaxon%3A887292","Campylobacter coli 1148"],["NCBITaxon%3A887282","Campylobacter coli 132-6"]]},{"id":"NCBITaxon:518","l":"Bordetella bronchiseptica","na":4,"nb":68,"a":[["mc3t3-e1-cell-bto-0001957.html","MC3T3-E1 cell"],["osteoblast-bto-0001593.html","osteoblast"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"]],"b":[["NCBITaxon%3A518","Bordetella bronchiseptica"],["NCBITaxon%3A1331198","Bordetella bronchiseptica 00-P-2730"],["NCBITaxon%3A1331199","Bordetella bronchiseptica 00-P-2796"],["NCBITaxon%3A1208657","Bordetella bronchiseptica 1289"],["NCBITaxon%3A1331246","Bordetella bronchiseptica 2230997"],["NCBITaxon%3A568707","Bordetella bronchiseptica 253"]]},{"id":"NCBITaxon:10","l":"Cellvibrio","na":4,"nb":67,"a":[["inflorescence-bto-0000628.html","inflorescence"],["plant-bto-0001481.html","plant"],["root-bto-0001188.html","root"],["seedling-bto-0001228.html","seedling"]],"b":[["NCBITaxon%3A3102792","Cellvibrio chitinivorans"],["NCBITaxon%3A1193626","Cellvibrio diazotrophicus"],["NCBITaxon%3A126350","Cellvibrio fibrivorans"],["NCBITaxon%3A1815559","Cellvibrio fontiphilus"],["NCBITaxon%3A180916","Cellvibrio fulvus"],["NCBITaxon%3A126348","Cellvibrio gandavensis"]]},{"id":"NCBITaxon:1257","l":"Peptostreptococcus","na":4,"nb":59,"a":[["dorsum-bto-0001713.html","dorsum"],["saliva-bto-0001202.html","saliva"],["sgs-cell-bto-0001210.html","SGS cell"],["tongue-bto-0001385.html","tongue"]],"b":[["NCBITaxon%3A226526","Candidatus Peptostreptococcus massiliensis"],["NCBITaxon%3A1261","Peptostreptococcus anaerobius"],["NCBITaxon%3A596329","Peptostreptococcus anaerobius 653-L"],["NCBITaxon%3A1263100","Peptostreptococcus anaerobius CAG:621"],["NCBITaxon%3A1073365","Peptostreptococcus anaerobius CC14N"],["NCBITaxon%3A1035196","Peptostreptococcus anaerobius VPI 4330 = DSM 2949"]]},{"id":"NCBITaxon:520","l":"Bordetella pertussis","na":4,"nb":50,"a":[["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["NCBITaxon%3A520","Bordetella pertussis"],["NCBITaxon%3A1403053","Bordetella pertussis 137"],["NCBITaxon%3A568706","Bordetella pertussis 18323"],["NCBITaxon%3A1460378","Bordetella pertussis 1996168"],["NCBITaxon%3A1331247","Bordetella pertussis 2250905"],["NCBITaxon%3A1331248","Bordetella pertussis 2356847"]]},{"id":"NCBITaxon:504","l":"Kingella kingae","na":4,"nb":47,"a":[["bone-element-uberon-0001474.html","bone element"],["foot-bto-0000476.html","foot"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["NCBITaxon%3A504","Kingella kingae"],["NCBITaxon%3A1188007","Kingella kingae 11220434"],["NCBITaxon%3A1305792","Kingella kingae AA068"],["NCBITaxon%3A1305787","Kingella kingae AA105"],["NCBITaxon%3A1305788","Kingella kingae AA255"],["NCBITaxon%3A1305791","Kingella kingae AA417"]]},{"id":"NCBITaxon:150022","l":"Finegoldia","na":4,"nb":39,"a":[["hand-bto-0004668.html","hand"],["sgs-cell-bto-0001210.html","SGS cell"],["vagina-bto-0000243.html","vagina"],["vaginal-fluid-bto-0003084.html","vaginal fluid"]],"b":[["NCBITaxon%3A3145239","Finegoldia dalianensis"],["NCBITaxon%3A1260","Finegoldia magna"],["NCBITaxon%3A768713","Finegoldia magna ACS-171-V-Col3"],["NCBITaxon%3A1459804","Finegoldia magna ALB8"],["NCBITaxon%3A334413","Finegoldia magna ATCC 29328"],["NCBITaxon%3A525282","Finegoldia magna ATCC 53516"]]},{"id":"NCBITaxon:155493","l":"Gallibacterium","na":4,"nb":35,"a":[["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"],["tongue-bto-0001385.html","tongue"],["trachea-bto-0001388.html","trachea"]],"b":[["NCBITaxon%3A750","Gallibacterium anatis"],["NCBITaxon%3A1396515","Gallibacterium anatis 10672-6"],["NCBITaxon%3A1195244","Gallibacterium anatis 12656/12"],["NCBITaxon%3A1396510","Gallibacterium anatis 4895"],["NCBITaxon%3A1396511","Gallibacterium anatis 7990"],["NCBITaxon%3A1380411","Gallibacterium anatis biovar haemolytica"]]},{"id":"NCBITaxon:1335","l":"Streptococcus equinus","na":4,"nb":27,"a":[["foregut-bto-0000507.html","foregut"],["stomach-bto-0001307.html","stomach"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["NCBITaxon%3A1335","Streptococcus equinus"],["NCBITaxon%3A1410675","Streptococcus equinus 2B"],["NCBITaxon%3A1210006","Streptococcus equinus ATCC 33317"],["NCBITaxon%3A864569","Streptococcus equinus ATCC 700338"],["NCBITaxon%3A525379","Streptococcus equinus ATCC 9812"],["NCBITaxon%3A1280690","Streptococcus equinus B315"]]},{"id":"NCBITaxon:158851","l":"Trabulsiella","na":4,"nb":24,"a":[["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"],["midgut-bto-0000863.html","midgut"],["pseudostem-bto-0005992.html","pseudostem"]],"b":[["NCBITaxon%3A158852","Trabulsiella guamensis"],["NCBITaxon%3A1005994","Trabulsiella guamensis ATCC 49490"],["NCBITaxon%3A379893","Trabulsiella odontotermitis"],["NCBITaxon%3A1905692","Trabulsiella sp."],["NCBITaxon%3A1661248","Trabulsiella sp. 12x"],["NCBITaxon%3A1547017","Trabulsiella sp. 140H"]]},{"id":"NCBITaxon:33","l":"Myxococcus fulvus","na":21,"nb":4,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"]],"b":[["NCBITaxon%3A33","Myxococcus fulvus"],["NCBITaxon%3A1334629","Myxococcus fulvus 124B02"],["NCBITaxon%3A483219","Myxococcus fulvus HW-1"],["NCBITaxon%3A675525","Myxococcus fulvus Mx f65"]]},{"id":"NCBITaxon:85698","l":"Achromobacter xylosoxidans","na":4,"nb":21,"a":[["hospital-envo-00002173.html","hospital"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["NCBITaxon%3A1389935","Achromobacter animicus"],["NCBITaxon%3A1353891","Achromobacter deleyi"],["NCBITaxon%3A32002","Achromobacter denitrificans"],["NCBITaxon%3A217204","Achromobacter insolitus"],["NCBITaxon%3A1287735","Achromobacter insuavis"],["NCBITaxon%3A470868","Achromobacter marplatensis"]]},{"id":"NCBITaxon:305","l":"Ralstonia solanacearum","na":4,"nb":19,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"],["pseudostem-bto-0005992.html","pseudostem"],["xylem-bto-0001468.html","xylem"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A1310165","Ralstonia pseudosolanacearum"],["NCBITaxon%3A305","Ralstonia solanacearum"],["NCBITaxon%3A859656","Ralstonia solanacearum CFBP2957"],["NCBITaxon%3A859655","Ralstonia solanacearum CMR15"],["NCBITaxon%3A1130828","Ralstonia solanacearum FJAT-1458"],["NCBITaxon%3A1130829","Ralstonia solanacearum FJAT-91"]]},{"id":"NCBITaxon:1334","l":"Streptococcus dysgalactiae","na":4,"nb":15,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["NCBITaxon%3A1334","Streptococcus dysgalactiae"],["NCBITaxon%3A99822","Streptococcus dysgalactiae subsp. dysgalactiae"],["NCBITaxon%3A663952","Streptococcus dysgalactiae subsp. dysgalactiae ATCC 27957"],["NCBITaxon%3A119602","Streptococcus dysgalactiae subsp. equisimilis"],["NCBITaxon%3A1247189","Streptococcus dysgalactiae subsp. equisimilis 167"],["NCBITaxon%3A759913","Streptococcus dysgalactiae subsp. equisimilis AC-2713"]]},{"id":"NCBITaxon:36773","l":"Burkholderia sp.","na":4,"nb":15,"a":[["compost-envo-00002170.html","compost"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["NCBITaxon%3A1108140","Burkholderia catarinensis"],["NCBITaxon%3A36773","Burkholderia sp."],["NCBITaxon%3A1777142","Caballeronia arationis"],["NCBITaxon%3A1777135","Caballeronia arvi"],["NCBITaxon%3A1777139","Caballeronia calidae"],["NCBITaxon%3A1777136","Caballeronia catudaia"]]},{"id":"NCBITaxon:480","l":"Moraxella catarrhalis","na":4,"nb":15,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["middle-ear-bto-0002099.html","middle ear"],["nasopharynx-bto-0000662.html","nasopharynx"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A480","Moraxella catarrhalis"],["NCBITaxon%3A857572","Moraxella catarrhalis 101P30B1"],["NCBITaxon%3A857579","Moraxella catarrhalis 103P14B1"],["NCBITaxon%3A857577","Moraxella catarrhalis 12P80B1"],["NCBITaxon%3A857578","Moraxella catarrhalis 46P47B1"],["NCBITaxon%3A857581","Moraxella catarrhalis 7169"]]},{"id":"NCBITaxon:1587","l":"Lactobacillus helveticus","na":4,"nb":14,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["intestine-environment-envo-2100002.html","intestine environment"],["urban-biome-envo-01000249.html","urban biome"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A1587","Lactobacillus helveticus"],["NCBITaxon%3A1226336","Lactobacillus helveticus CIRM-BIA 101"],["NCBITaxon%3A1226332","Lactobacillus helveticus CIRM-BIA 103"],["NCBITaxon%3A1226333","Lactobacillus helveticus CIRM-BIA 104"],["NCBITaxon%3A1226334","Lactobacillus helveticus CIRM-BIA 951"],["NCBITaxon%3A1226335","Lactobacillus helveticus CIRM-BIA 953"]]},{"id":"NCBITaxon:206","l":"Campylobacter sputorum","na":4,"nb":13,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["feces-uberon-0001988.html","feces"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A198","Campylobacter hyointestinalis"],["NCBITaxon%3A91352","Campylobacter hyointestinalis subsp. hyointestinalis"],["NCBITaxon%3A202","Campylobacter mucosalis"],["NCBITaxon%3A206","Campylobacter sputorum"],["NCBITaxon%3A1031919","Campylobacter sputorum biovar fecalis"],["NCBITaxon%3A593874","Campylobacter sputorum biovar paraureolyticus"]]},{"id":"NCBITaxon:1254","l":"Pediococcus acidilactici","na":4,"nb":11,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["research-facility-envo-00000469.html","research facility"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A1245","Leuconostoc mesenteroides"],["NCBITaxon%3A1254","Pediococcus acidilactici"],["NCBITaxon%3A563194","Pediococcus acidilactici 7_4"],["NCBITaxon%3A1384067","Pediococcus acidilactici AGR20"],["NCBITaxon%3A1306952","Pediococcus acidilactici D3"],["NCBITaxon%3A862514","Pediococcus acidilactici DSM 20284"]]},{"id":"NCBITaxon:111805","l":"Actinomadura pelletieri","na":10,"nb":4,"a":[["lake-envo-00000020.html","lake"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["foot-bto-0000476.html","foot"],["rhizosphere-envo-00005801.html","rhizosphere"],["organic-material-envo-01000155.html","organic material"]],"b":[["NCBITaxon%3A163603","Actinomadura latina"],["NCBITaxon%3A111805","Actinomadura pelletieri"],["NCBITaxon%3A1120940","Actinomadura pelletieri DSM 43383"],["NCBITaxon%3A37329","Nocardia farcinica"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":4,"nb":10,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A1891658","Geobacillus sp."],["NCBITaxon%3A1422","Geobacillus stearothermophilus"],["NCBITaxon%3A272567","Geobacillus stearothermophilus 10"],["NCBITaxon%3A1366047","Geobacillus stearothermophilus ATCC 12980"],["NCBITaxon%3A937593","Geobacillus stearothermophilus ATCC 7953"],["NCBITaxon%3A664733","Geobacillus stearothermophilus C56-N21"]]},{"id":"NCBITaxon:147","l":"Spirochaeta aurantia","na":10,"nb":4,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["water-body-envo-00000063.html","water body"]],"b":[["NCBITaxon%3A147","Spirochaeta aurantia"],["NCBITaxon%3A143778","Spirochaeta aurantia subsp. aurantia"],["NCBITaxon%3A555314","Spirochaeta aurantia subsp. aurantia M1"],["NCBITaxon%3A143779","Spirochaeta aurantia subsp. stricta"]]},{"id":"NCBITaxon:2209","l":"Methanosarcina mazei","na":4,"nb":10,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["sludge-envo-00002044.html","sludge"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["NCBITaxon%3A2209","Methanosarcina mazei"],["NCBITaxon%3A1434113","Methanosarcina mazei C16"],["NCBITaxon%3A192952","Methanosarcina mazei Go1"],["NCBITaxon%3A1293038","Methanosarcina mazei JCM 9314"],["NCBITaxon%3A1434114","Methanosarcina mazei LYC"],["NCBITaxon%3A213585","Methanosarcina mazei S-6"]]},{"id":"NCBITaxon:32002","l":"Achromobacter denitrificans","na":4,"nb":10,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"],["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A1353888","Achromobacter agilis"],["NCBITaxon%3A1353891","Achromobacter deleyi"],["NCBITaxon%3A32002","Achromobacter denitrificans"],["NCBITaxon%3A1255278","Achromobacter denitrificans NBRC 15125"],["NCBITaxon%3A1389922","Achromobacter mucicolens"],["NCBITaxon%3A134375","Achromobacter sp."]]},{"id":"NCBITaxon:76832","l":"Myroides odoratimimus","na":4,"nb":10,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["foot-bto-0000476.html","foot"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A979","Cellulophaga lytica"],["NCBITaxon%3A867900","Cellulophaga lytica DSM 7489"],["NCBITaxon%3A76832","Myroides odoratimimus"],["NCBITaxon%3A883150","Myroides odoratimimus CCUG 10230"],["NCBITaxon%3A883151","Myroides odoratimimus CCUG 12700"],["NCBITaxon%3A883152","Myroides odoratimimus CCUG 12901"]]},{"id":"NCBITaxon:87883","l":"Burkholderia multivorans","na":4,"nb":10,"a":[["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["NCBITaxon%3A87883","Burkholderia multivorans"],["NCBITaxon%3A395019","Burkholderia multivorans ATCC 17616"],["NCBITaxon%3A985079","Burkholderia multivorans ATCC BAA-247"],["NCBITaxon%3A985078","Burkholderia multivorans CF2"],["NCBITaxon%3A513051","Burkholderia multivorans CGD1"],["NCBITaxon%3A513052","Burkholderia multivorans CGD2"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":4,"nb":9,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["carcass-envo-00002033.html","carcass"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A28031","Lysinibacillus fusiformis"],["NCBITaxon%3A1130819","Lysinibacillus mangiferihumi"],["NCBITaxon%3A1421","Lysinibacillus sphaericus"],["NCBITaxon%3A444177","Lysinibacillus sphaericus C3-41"],["NCBITaxon%3A1400869","Lysinibacillus sphaericus CBAM5"],["NCBITaxon%3A1354027","Lysinibacillus sphaericus KCTC 3346"]]},{"id":"NCBITaxon:1682","l":"Bifidobacterium longum subsp. infantis","na":4,"nb":9,"a":[["egg-food-product-foodon-00001274.html","egg food product"],["breast-bto-0000149.html","breast"],["ht-29-cell-bto-0000182.html","HT-29 cell"],["ma-104-cell-bto-0004983.html","MA-104 cell"]],"b":[["NCBITaxon%3A1686","Bifidobacterium catenulatum"],["NCBITaxon%3A630129","Bifidobacterium catenulatum subsp. kashiwanohense"],["NCBITaxon%3A216816","Bifidobacterium longum"],["NCBITaxon%3A1682","Bifidobacterium longum subsp. infantis"],["NCBITaxon%3A565040","Bifidobacterium longum subsp. infantis 157F"],["NCBITaxon%3A391904","Bifidobacterium longum subsp. infantis ATCC 15697 = JCM 1222 = DSM 20088"]]},{"id":"NCBITaxon:1930","l":"Streptomyces scabiei","na":4,"nb":9,"a":[["a10-cell-bto-0002196.html","A10 cell"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["NCBITaxon%3A2993540","Streptomyces griseiscabiei"],["NCBITaxon%3A1930","Streptomyces scabiei"],["NCBITaxon%3A680198","Streptomyces scabiei 87.22"],["NCBITaxon%3A175280","Streptomyces scabiei subsp. chosun"],["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A74595","Streptomyces sp. ATCC 10246"]]},{"id":"NCBITaxon:1660","l":"Schaalia odontolytica","na":8,"nb":4,"a":[["macrophage-bto-0000801.html","macrophage"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["plant-gall-po-0025626.html","plant gall"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"]],"b":[["NCBITaxon%3A52769","Actinomyces gerencseriae"],["NCBITaxon%3A1660","Schaalia odontolytica"],["NCBITaxon%3A562972","Schaalia odontolytica C702"],["NCBITaxon%3A649742","Schaalia odontolytica F0309"]]},{"id":"NCBITaxon:362","l":"Agrobacterium radiobacter","na":4,"nb":7,"a":[["plant-gall-po-0025626.html","plant gall"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A362","Agrobacterium radiobacter"],["NCBITaxon%3A1336745","Agrobacterium radiobacter DSM 30147"],["NCBITaxon%3A361","Agrobacterium sp."],["NCBITaxon%3A358","Agrobacterium tumefaciens"],["NCBITaxon%3A359","Martinezella rhizogenes"],["NCBITaxon%3A204072","Ramlibacter henchirensis"]]},{"id":"NCBITaxon:60552","l":"Burkholderia vietnamiensis","na":4,"nb":7,"a":[["hospital-envo-00002173.html","hospital"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["NCBITaxon%3A292","Burkholderia cepacia"],["NCBITaxon%3A36773","Burkholderia sp."],["NCBITaxon%3A60552","Burkholderia vietnamiensis"],["NCBITaxon%3A269482","Burkholderia vietnamiensis G4"],["NCBITaxon%3A1449978","Burkholderia vietnamiensis LMG 10929"],["NCBITaxon%3A1254","Pediococcus acidilactici"]]},{"id":"NCBITaxon:1229","l":"Nitrosococcus oceani","na":6,"nb":4,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["sea-water-envo-00002149.html","sea water"],["stream-envo-00000023.html","stream"],["biome-envo-00000428.html","biome"],["farm-envo-00000078.html","farm"]],"b":[["NCBITaxon%3A1229","Nitrosococcus oceani"],["NCBITaxon%3A473788","Nitrosococcus oceani AFC27"],["NCBITaxon%3A323261","Nitrosococcus oceani ATCC 19707"],["NCBITaxon%3A314279","Nitrosococcus oceani C-27"]]},{"id":"NCBITaxon:1348","l":"Streptococcus parauberis","na":4,"nb":6,"a":[["animal-house-envo-00003040.html","animal house"],["brain-bto-0000142.html","brain"],["spleen-bto-0001281.html","spleen"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["NCBITaxon%3A1348","Streptococcus parauberis"],["NCBITaxon%3A936154","Streptococcus parauberis KCTC 11537"],["NCBITaxon%3A1260132","Streptococcus parauberis KCTC 11980BP"],["NCBITaxon%3A1207545","Streptococcus parauberis KRS-02083"],["NCBITaxon%3A1207544","Streptococcus parauberis KRS-02109"],["NCBITaxon%3A873447","Streptococcus parauberis NCFD 2020"]]},{"id":"NCBITaxon:1710","l":"Cellulosimicrobium cellulans","na":4,"nb":6,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"],["oil-spill-envo-00002061.html","oil spill"],["peat-soil-envo-00005774.html","peat soil"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A1710","Cellulosimicrobium cellulans"],["NCBITaxon%3A1350482","Cellulosimicrobium cellulans F16"],["NCBITaxon%3A903523","Cellulosimicrobium cellulans J1"],["NCBITaxon%3A935838","Cellulosimicrobium cellulans J34"],["NCBITaxon%3A935839","Cellulosimicrobium cellulans J36"],["NCBITaxon%3A1242247","Cellulosimicrobium cellulans LMG 16121"]]},{"id":"NCBITaxon:253","l":"Chryseobacterium indologenes","na":6,"nb":4,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["seedling-bto-0001228.html","seedling"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["tropical-envo-01000204.html","tropical"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["NCBITaxon%3A246","Chryseobacterium balustinum"],["NCBITaxon%3A253","Chryseobacterium indologenes"],["NCBITaxon%3A1218103","Chryseobacterium indologenes NBRC 14944"],["NCBITaxon%3A239","Flavobacterium sp."]]},{"id":"NCBITaxon:38284","l":"Corynebacterium accolens","na":4,"nb":6,"a":[["bone-element-uberon-0001474.html","bone element"],["vaginal-fluid-uberon-0036243.html","vaginal fluid"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"]],"b":[["NCBITaxon%3A38284","Corynebacterium accolens"],["NCBITaxon%3A525260","Corynebacterium accolens ATCC 49725"],["NCBITaxon%3A862512","Corynebacterium accolens ATCC 49726"],["NCBITaxon%3A38287","Corynebacterium fastidiosum"],["NCBITaxon%3A1720","Corynebacterium sp."],["NCBITaxon%3A38304","Corynebacterium tuberculostearicum"]]},{"id":"NCBITaxon:113557","l":"Lacticaseibacillus paracasei subsp. tolerans","na":4,"nb":5,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["milk-uberon-0001913.html","milk"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A1597","Lacticaseibacillus paracasei"],["NCBITaxon%3A113557","Lacticaseibacillus paracasei subsp. tolerans"],["NCBITaxon%3A1423830","Lacticaseibacillus paracasei subsp. tolerans DSM 20258"],["NCBITaxon%3A1256229","Lacticaseibacillus paracasei subsp. tolerans Lpl14"],["NCBITaxon%3A1256230","Lacticaseibacillus paracasei subsp. tolerans Lpl7"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":4,"nb":5,"a":[["reservoir-envo-00000025.html","reservoir"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["NCBITaxon%3A119219","Cupriavidus metallidurans"],["NCBITaxon%3A266264","Cupriavidus metallidurans CH34"],["NCBITaxon%3A1395123","Cupriavidus metallidurans H1130"],["NCBITaxon%3A1218106","Cupriavidus metallidurans NBRC 101272"],["NCBITaxon%3A1873897","Cupriavidus sp."]]},{"id":"NCBITaxon:1302","l":"Streptococcus gordonii","na":4,"nb":5,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["dental-plaque-uberon-0016482.html","dental plaque"],["archeological-site-envo-00000564.html","archeological site"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["NCBITaxon%3A1302","Streptococcus gordonii"],["NCBITaxon%3A1308737","Streptococcus gordonii ADL-228"],["NCBITaxon%3A29390","Streptococcus gordonii str. Challis"],["NCBITaxon%3A467705","Streptococcus gordonii str. Challis substr. CH1"],["NCBITaxon%3A1339616","Streptococcus gordonii TSDC19.2-1.1"]]},{"id":"NCBITaxon:144185","l":"Leifsonia aquatica","na":5,"nb":4,"a":[["hospital-envo-00002173.html","hospital"],["laboratory-facility-envo-01001406.html","laboratory facility"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A272239","Gulosibacter bifidus"],["NCBITaxon%3A144185","Leifsonia aquatica"],["NCBITaxon%3A1358026","Leifsonia aquatica ATCC 14665"],["NCBITaxon%3A1416759","Leifsonia aquatica H1aii"]]},{"id":"NCBITaxon:1478","l":"Peribacillus simplex","na":4,"nb":5,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"]],"b":[["NCBITaxon%3A33935","Lysinibacillus macroides"],["NCBITaxon%3A1478","Peribacillus simplex"],["NCBITaxon%3A1403313","Peribacillus simplex BA2H3"],["NCBITaxon%3A707251","Peribacillus simplex KBS1F-3"],["NCBITaxon%3A1349754","Peribacillus simplex NBRC 15720 = DSM 1321"]]},{"id":"NCBITaxon:2098","l":"Metamycoplasma hominis","na":5,"nb":4,"a":[["egg-food-product-foodon-00001274.html","egg food product"],["amniotic-cavity-bto-0000025.html","amniotic cavity"],["amniotic-fluid-bto-0000068.html","amniotic fluid"],["placenta-bto-0001078.html","placenta"],["reproductive-system-bto-0000081.html","reproductive system"]],"b":[["NCBITaxon%3A2098","Metamycoplasma hominis"],["NCBITaxon%3A347256","Metamycoplasma hominis ATCC 23114"],["NCBITaxon%3A1267000","Metamycoplasma hominis ATCC 27545"],["NCBITaxon%3A287","Pseudomonas aeruginosa"]]},{"id":"NCBITaxon:214326","l":"Latilactobacillus sakei subsp. sakei","na":4,"nb":5,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["food-habitatmech-madin-81cb9e74cb.html","food"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A1599","Latilactobacillus sakei"],["NCBITaxon%3A214326","Latilactobacillus sakei subsp. sakei"],["NCBITaxon%3A314315","Latilactobacillus sakei subsp. sakei 23K"],["NCBITaxon%3A1423833","Latilactobacillus sakei subsp. sakei DSM 20017 = JCM 1157"],["NCBITaxon%3A1285582","Latilactobacillus sakei subsp. sakei LS25"]]},{"id":"NCBITaxon:106649","l":"Acinetobacter guillouiae","na":4,"nb":4,"a":[["gut-bto-0000545.html","gut"],["skin-bto-0001253.html","skin"],["fecal-environment-envo-01001029.html","fecal environment"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A106649","Acinetobacter guillouiae"],["NCBITaxon%3A1217655","Acinetobacter guillouiae CIP 63.46"],["NCBITaxon%3A1330038","Acinetobacter guillouiae MSP4-18"],["NCBITaxon%3A1217656","Acinetobacter guillouiae NIPH 991"]]},{"id":"NCBITaxon:119542","l":"Roseinatronobacter bogoriensis","na":4,"nb":4,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"],["marine-environment-envo-01000320.html","marine environment"]],"b":[["NCBITaxon%3A119542","Roseinatronobacter bogoriensis"],["NCBITaxon%3A1188254","Roseinatronobacter bogoriensis DSM 18756"],["NCBITaxon%3A441209","Roseinatronobacter bogoriensis subsp. barguzinensis"],["NCBITaxon%3A3161156","Roseinatronobacter bogoriensis subsp. bogoriensis"]]},{"id":"NCBITaxon:1366","l":"Pseudolactococcus raffinolactis","na":4,"nb":4,"a":[["animal-house-envo-00003040.html","animal house"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["NCBITaxon%3A1366","Pseudolactococcus raffinolactis"],["NCBITaxon%3A1215915","Pseudolactococcus raffinolactis 4877"],["NCBITaxon%3A1255675","Pseudolactococcus raffinolactis JIM2957"],["NCBITaxon%3A1348633","Pseudolactococcus raffinolactis NBRC 100932"]]},{"id":"NCBITaxon:158847","l":"Megamonas hypermegale","na":4,"nb":4,"a":[["biofilm-envo-00002034.html","biofilm"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["emulsion-envo-00010506.html","emulsion"]],"b":[["NCBITaxon%3A482957","Burkholderia lata"],["NCBITaxon%3A158847","Megamonas hypermegale"],["NCBITaxon%3A657316","Megamonas hypermegale ART12/1"],["NCBITaxon%3A1122216","Megamonas hypermegale DSM 1672"]]},{"id":"NCBITaxon:37330","l":"Nocardia nova","na":4,"nb":4,"a":[["foot-bto-0000476.html","foot"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A300029","Nocardia elegans"],["NCBITaxon%3A37330","Nocardia nova"],["NCBITaxon%3A1210081","Nocardia nova NBRC 15556"],["NCBITaxon%3A1415166","Nocardia nova SH22a"]]},{"id":"NCBITaxon:731","l":"Histophilus somni","na":4,"nb":4,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["NCBITaxon%3A740","Haemophilus sp."],["NCBITaxon%3A731","Histophilus somni"],["NCBITaxon%3A205914","Histophilus somni 129PT"],["NCBITaxon%3A228400","Histophilus somni 2336"]]},{"id":"NCBITaxon:41294","l":"Nitrobacteraceae","na":3,"nb":10866,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["NCBITaxon%3A83488","2,4-D degrading bacterium M1"],["NCBITaxon%3A151414","Afipia birgiae"],["NCBITaxon%3A1197906","Afipia birgiae 34632"],["NCBITaxon%3A56946","Afipia broomeae"],["NCBITaxon%3A883078","Afipia broomeae ATCC 49717"],["NCBITaxon%3A40137","Afipia carboxidovorans"]]},{"id":"NCBITaxon:135622","l":"Alteromonadales","na":3,"nb":10390,"a":[["column-bto-0005692.html","column"],["oil-secretion-bto-0005373.html","oil secretion"],["trachea-bto-0001388.html","trachea"]],"b":[["NCBITaxon%3A120969","abyssal strain AIII3*"],["NCBITaxon%3A1619912","Adhaerimonas asanensis"],["NCBITaxon%3A3131927","Aegicerorhabdus qinzhovensis"],["NCBITaxon%3A226010","Aestuariibacter salexigens"],["NCBITaxon%3A1120953","Aestuariibacter salexigens DSM 15300"],["NCBITaxon%3A1872400","Aestuariibacter sp."]]},{"id":"NCBITaxon:32008","l":"Burkholderia","na":3,"nb":7299,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["midgut-bto-0000863.html","midgut"]],"b":[["NCBITaxon%3A2015348","Burkholderia aenigmatica"],["NCBITaxon%3A2683677","Burkholderia alba"],["NCBITaxon%3A152480","Burkholderia ambifaria"],["NCBITaxon%3A339670","Burkholderia ambifaria AMMD"],["NCBITaxon%3A396596","Burkholderia ambifaria IOP40-10"],["NCBITaxon%3A398577","Burkholderia ambifaria MC40-6"]]},{"id":"NCBITaxon:41297","l":"Sphingomonadaceae","na":3,"nb":6106,"a":[["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["NCBITaxon%3A83493","2,4-D degrading bacterium 2,4-D1"],["NCBITaxon%3A103496","2,4-D-degrading bacterium 524"],["NCBITaxon%3A83492","2,4-D degrading bacterium B6-10"],["NCBITaxon%3A83491","2,4-D degrading bacterium B6-5"],["NCBITaxon%3A83489","2,4-D degrading bacterium K1443"],["NCBITaxon%3A112499","alpha proteobacterium 15s.b."]]},{"id":"NCBITaxon:237","l":"Flavobacterium","na":3,"nb":4449,"a":[["column-bto-0005692.html","column"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["NCBITaxon%3A196875","Arctic sea ice associated bacterium ARK10272"],["NCBITaxon%3A196870","Arctic sea ice bacterium ARK10104"],["NCBITaxon%3A196871","Arctic sea ice bacterium ARK10159"],["NCBITaxon%3A196872","Arctic sea ice bacterium ARK10161"],["NCBITaxon%3A196873","Arctic sea ice bacterium ARK10164"],["NCBITaxon%3A196874","Arctic sea ice bacterium ARK10270"]]},{"id":"NCBITaxon:84642","l":"Aeromonadaceae","na":3,"nb":3610,"a":[["midgut-bto-0000863.html","midgut"],["pseudostem-bto-0005992.html","pseudostem"],["spike-bto-0001278.html","spike"]],"b":[["NCBITaxon%3A1948889","Aeromonadaceae bacterium"],["NCBITaxon%3A1546596","Aeromonadaceae bacterium 124L2"],["NCBITaxon%3A1546597","Aeromonadaceae bacterium 126H"],["NCBITaxon%3A1546598","Aeromonadaceae bacterium 129C"],["NCBITaxon%3A1546599","Aeromonadaceae bacterium 130I2"],["NCBITaxon%3A1546600","Aeromonadaceae bacterium 136C"]]},{"id":"NCBITaxon:31989","l":"Paracoccaceae","na":3,"nb":3139,"a":[["juvenile-bto-0002168.html","juvenile"],["leaf-bto-0000713.html","leaf"],["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["NCBITaxon%3A2881234","Abyssibius alkaniclasticus"],["NCBITaxon%3A3029207","Abyssibius sp."],["NCBITaxon%3A2030798","Acidimangrovimonas pyrenivorans"],["NCBITaxon%3A2056283","Acidimangrovimonas sediminis"],["NCBITaxon%3A2676791","Acidimangrovimonas sp."],["NCBITaxon%3A2058287","Aestuariibius insulae"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":3,"nb":1075,"a":[["bile-bto-0000121.html","bile"],["rectum-bto-0001158.html","rectum"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A1311139","Acinetobacter baumannii 016901DP_1"],["NCBITaxon%3A1311140","Acinetobacter baumannii 016901DP_2"],["NCBITaxon%3A1310784","Acinetobacter baumannii 1007214"],["NCBITaxon%3A1310751","Acinetobacter baumannii 1022959"],["NCBITaxon%3A1310586","Acinetobacter baumannii 1031433"]]},{"id":"NCBITaxon:48736","l":"Ralstonia","na":3,"nb":906,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"]],"b":[["NCBITaxon%3A1944648","blood disease bacterium A2-HR MARDI"],["NCBITaxon%3A213608","blood disease bacterium BananaE"],["NCBITaxon%3A297304","blood disease bacterium JT656"],["NCBITaxon%3A297303","blood disease bacterium JT657"],["NCBITaxon%3A40803","blood disease bacterium R223"],["NCBITaxon%3A741978","blood disease bacterium R229"]]},{"id":"NCBITaxon:194924","l":"Desulfovibrionaceae","na":3,"nb":862,"a":[["cecum-mucosa-bto-0000213.html","cecum mucosa"],["ileum-bto-0000620.html","ileum"],["mucosa-bto-0000886.html","mucosa"]],"b":[["NCBITaxon%3A293256","Alkalidesulfovibrio alkalitolerans"],["NCBITaxon%3A1121439","Alkalidesulfovibrio alkalitolerans DSM 16529"],["NCBITaxon%3A1929485","Bilophila sp."],["NCBITaxon%3A693988","Bilophila sp. 4_1_30"],["NCBITaxon%3A3839265","Bilophila sp. HF3_202"],["NCBITaxon%3A3839266","Bilophila sp. HF3_202_2"]]},{"id":"NCBITaxon:1046","l":"Chromatiaceae","na":3,"nb":781,"a":[["gut-bto-0000545.html","gut"],["hemolymph-bto-0000572.html","hemolymph"],["skin-bto-0001253.html","skin"]],"b":[["NCBITaxon%3A504901","Allochromatium humboldtianum"],["NCBITaxon%3A61596","Allochromatium minutissimum"],["NCBITaxon%3A231048","Allochromatium palmeri"],["NCBITaxon%3A430676","Allochromatium phaeobacterium"],["NCBITaxon%3A402883","Allochromatium renukae"],["NCBITaxon%3A1872465","Allochromatium sp."]]},{"id":"NCBITaxon:157","l":"Treponema","na":3,"nb":663,"a":[["rumen-uberon-0007365.html","rumen"],["sgs-cell-bto-0001210.html","SGS cell"],["tongue-bto-0001385.html","tongue"]],"b":[["NCBITaxon%3A3083137","Candidatus Treponema caballi"],["NCBITaxon%3A3083138","Candidatus Treponema equi"],["NCBITaxon%3A3083139","Candidatus Treponema equifaecale"],["NCBITaxon%3A2838768","Candidatus Treponema excrementipullorum"],["NCBITaxon%3A2838769","Candidatus Treponema faecavium"],["NCBITaxon%3A3083140","Candidatus Treponema merdequi"]]},{"id":"NCBITaxon:1654","l":"Actinomyces","na":3,"nb":460,"a":[["hand-bto-0004668.html","hand"],["vaginal-fluid-bto-0003084.html","vaginal fluid"],["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["NCBITaxon%3A3050225","Actinomyces acetigenes"],["NCBITaxon%3A1852361","Actinomyces bouchesdurhonensis"],["NCBITaxon%3A1658","Actinomyces bovis"],["NCBITaxon%3A131109","Actinomyces bowdenii"],["NCBITaxon%3A2755559","Actinomyces capricornis"],["NCBITaxon%3A119495","Actinomyces catuli"]]},{"id":"NCBITaxon:84107","l":"Coriobacteriaceae","na":3,"nb":399,"a":[["alimentary-canal-bto-0000058.html","alimentary canal"],["brain-bto-0000142.html","brain"],["heart-bto-0000562.html","heart"]],"b":[["NCBITaxon%3A2838522","Candidatus Collinsella stercoripullorum"],["NCBITaxon%3A2840753","Candidatus Coprousia avicola"],["NCBITaxon%3A3101127","Candidatus Coprousia sp."],["NCBITaxon%3A2840754","Candidatus Coprovicinus avistercoris"],["NCBITaxon%3A3101126","Candidatus Coprovicinus sp."],["NCBITaxon%3A2840848","Candidatus Limicola stercorigallinarum"]]},{"id":"NCBITaxon:1090","l":"Chlorobiota","na":3,"nb":300,"a":[["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"]],"b":[["NCBITaxon%3A338819","anammox bacterium A-3"],["NCBITaxon%3A1653826","Ancalochloris perfilievii"],["NCBITaxon%3A1872565","Ancalochloris sp."],["NCBITaxon%3A3039321","Candidatus Chlorobium antarcticum"],["NCBITaxon%3A2716876","Candidatus Chlorobium masyuteum"],["NCBITaxon%3A1868324","Candidatus Thermochlorobacter aerophilus"]]},{"id":"NCBITaxon:572511","l":"Blautia","na":3,"nb":249,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["colon-bto-0000269.html","colon"]],"b":[["NCBITaxon%3A3133036","Blautia acetica"],["NCBITaxon%3A2981783","Blautia acetigignens"],["NCBITaxon%3A2981782","Blautia ammoniilytica"],["NCBITaxon%3A3133153","Blautia aquisgranensis"],["NCBITaxon%3A1912897","Blautia argi"],["NCBITaxon%3A2696678","Blautia brookingsii"]]},{"id":"NCBITaxon:375288","l":"Parabacteroides","na":3,"nb":199,"a":[["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"]],"b":[["NCBITaxon%3A2838720","Candidatus Parabacteroides faecavium"],["NCBITaxon%3A2838721","Candidatus Parabacteroides intestinavium"],["NCBITaxon%3A2838722","Candidatus Parabacteroides intestinigallinarum"],["NCBITaxon%3A2838723","Candidatus Parabacteroides intestinipullorum"],["NCBITaxon%3A2951805","Parabacteroides absconsus"],["NCBITaxon%3A2290935","Parabacteroides acidifaciens"]]},{"id":"NCBITaxon:162289","l":"Peptoniphilus","na":3,"nb":170,"a":[["hand-bto-0004668.html","hand"],["vagina-bto-0000243.html","vagina"],["vaginal-fluid-bto-0003084.html","vaginal fluid"]],"b":[["NCBITaxon%3A1871017","Aedoeadaptatus urinae"],["NCBITaxon%3A33034","Anaerococcus prevotii"],["NCBITaxon%3A337315","Candidatus Peptoniphilus massiliensis (ex Fenollar et al. 2006)"],["NCBITaxon%3A507749","Peptoniphilus allenii"],["NCBITaxon%3A1258","Peptoniphilus asaccharolyticus"],["NCBITaxon%3A1357407","Peptoniphilus asaccharolyticus CD1_D5_FAA_2"]]},{"id":"NCBITaxon:1307","l":"Streptococcus suis","na":3,"nb":145,"a":[["monocyte-bto-0000876.html","monocyte"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["tonsil-bto-0001387.html","tonsil"]],"b":[["NCBITaxon%3A229549","Streptococcus minor"],["NCBITaxon%3A82806","Streptococcus ovis"],["NCBITaxon%3A1307","Streptococcus suis"],["NCBITaxon%3A672190","Streptococcus suis 05HAS68"],["NCBITaxon%3A391295","Streptococcus suis 05ZYH33"],["NCBITaxon%3A1214149","Streptococcus suis 07SC3"]]},{"id":"NCBITaxon:665874","l":"Limnohabitans","na":3,"nb":144,"a":[["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["NCBITaxon%3A544681","Limnohabitans australis"],["NCBITaxon%3A323423","Limnohabitans curvus"],["NCBITaxon%3A3844323","Limnohabitans kasalickyi (SeqCode)"],["NCBITaxon%3A3045173","Limnohabitans lacus"],["NCBITaxon%3A540061","Limnohabitans parvus"],["NCBITaxon%3A1293052","Limnohabitans parvus II-B4"]]},{"id":"NCBITaxon:39","l":"Archangiaceae","na":3,"nb":100,"a":[["wood-bto-0005516.html","wood"],["plant-litter-envo-01000628.html","plant litter"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A2995309","Allostigmatella ashevillensis"],["NCBITaxon%3A41","Allostigmatella aurantiaca"],["NCBITaxon%3A378806","Allostigmatella aurantiaca DW4/3-1"],["NCBITaxon%3A675526","Allostigmatella aurantiaca Sg a15"],["NCBITaxon%3A83460","Allostigmatella erecta"],["NCBITaxon%3A394097","Allostigmatella hybrida"]]},{"id":"NCBITaxon:813","l":"Chlamydia trachomatis","na":3,"nb":100,"a":[["conjunctiva-bto-0003415.html","conjunctiva"],["epithelial-cell-bto-0000414.html","epithelial cell"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A813","Chlamydia trachomatis"],["NCBITaxon%3A564416","Chlamydia trachomatis 6276"],["NCBITaxon%3A564417","Chlamydia trachomatis 6276s"],["NCBITaxon%3A564418","Chlamydia trachomatis 70"],["NCBITaxon%3A564419","Chlamydia trachomatis 70s"],["NCBITaxon%3A580047","Chlamydia trachomatis A2497"]]},{"id":"NCBITaxon:36809","l":"Mycobacteroides abscessus","na":3,"nb":89,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["NCBITaxon%3A36809","Mycobacteroides abscessus"],["NCBITaxon%3A1299323","Mycobacteroides abscessus 1948"],["NCBITaxon%3A1299324","Mycobacteroides abscessus 21"],["NCBITaxon%3A1001721","Mycobacteroides abscessus 3A-0119-R"],["NCBITaxon%3A1001715","Mycobacteroides abscessus 3A-0122-R"],["NCBITaxon%3A1001716","Mycobacteroides abscessus 3A-0122-S"]]},{"id":"NCBITaxon:72407","l":"Klebsiella pneumoniae subsp. pneumoniae","na":3,"nb":78,"a":[["bronchus-uberon-0002185.html","bronchus"],["neutrophil-bto-0000130.html","neutrophil"],["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A1653844","Erwinia carnegieana"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A1316938","Klebsiella pneumoniae ATCC 25955"],["NCBITaxon%3A72407","Klebsiella pneumoniae subsp. pneumoniae"],["NCBITaxon%3A1193292","Klebsiella pneumoniae subsp. pneumoniae 1084"]]},{"id":"NCBITaxon:216816","l":"Bifidobacterium longum","na":3,"nb":69,"a":[["coral-reef-envo-00000150.html","coral reef"],["egg-food-product-foodon-00001274.html","egg food product"],["juvenile-bto-0002168.html","juvenile"]],"b":[["NCBITaxon%3A1680","Bifidobacterium adolescentis"],["NCBITaxon%3A216816","Bifidobacterium longum"],["NCBITaxon%3A1000567","Bifidobacterium longum 3_1_37DFAAB"],["NCBITaxon%3A1280702","Bifidobacterium longum AGR2137"],["NCBITaxon%3A478445","Bifidobacterium longum BORI"],["NCBITaxon%3A1263059","Bifidobacterium longum CAG:69"]]},{"id":"NCBITaxon:100883","l":"Coprobacillus","na":3,"nb":65,"a":[["cecum-bto-0000166.html","cecum"],["gut-bto-0000545.html","gut"],["intestine-bto-0000648.html","intestine"]],"b":[["NCBITaxon%3A100884","Coprobacillus cateniformis"],["NCBITaxon%3A1297794","Coprobacillus cateniformis JCM 10604"],["NCBITaxon%3A2137881","Coprobacillus sp."],["NCBITaxon%3A2787134","Coprobacillus sp. 1001095IJ_161003_A8"],["NCBITaxon%3A2787096","Coprobacillus sp. 1001099B_141217_E2"],["NCBITaxon%3A1896994","Coprobacillus sp. 28_7"]]},{"id":"NCBITaxon:1597","l":"Lacticaseibacillus paracasei","na":3,"nb":56,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A1582","Lacticaseibacillus casei"],["NCBITaxon%3A1597","Lacticaseibacillus paracasei"],["NCBITaxon%3A321967","Lacticaseibacillus paracasei ATCC 334"],["NCBITaxon%3A1226299","Lacticaseibacillus paracasei COM0101"],["NCBITaxon%3A1446494","Lacticaseibacillus paracasei N1115"],["NCBITaxon%3A1435038","Lacticaseibacillus paracasei NRIC 0644"]]},{"id":"NCBITaxon:1247","l":"Oenococcus oeni","na":3,"nb":54,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A1247","Oenococcus oeni"],["NCBITaxon%3A379360","Oenococcus oeni ATCC BAA-1163"],["NCBITaxon%3A1160703","Oenococcus oeni AWRIB202"],["NCBITaxon%3A1160702","Oenococcus oeni AWRIB304"],["NCBITaxon%3A1167631","Oenococcus oeni AWRIB318"],["NCBITaxon%3A1206769","Oenococcus oeni AWRIB418"]]},{"id":"NCBITaxon:1310","l":"Streptococcus sobrinus","na":3,"nb":52,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"],["urine-bto-0001419.html","urine"],["biome-envo-00000428.html","biome"]],"b":[["NCBITaxon%3A1310","Streptococcus sobrinus"],["NCBITaxon%3A246202","Streptococcus sobrinus 6715"],["NCBITaxon%3A1123317","Streptococcus sobrinus DSM 20742 = ATCC 33478"],["NCBITaxon%3A1074066","Streptococcus sobrinus TCI-107"],["NCBITaxon%3A1074117","Streptococcus sobrinus TCI-118"],["NCBITaxon%3A1074067","Streptococcus sobrinus TCI-119"]]},{"id":"NCBITaxon:47714","l":"Lacticaseibacillus paracasei subsp. paracasei","na":3,"nb":41,"a":[["city-envo-00000856.html","city"],["food-fermented-foodon-00001258.html","food (fermented)"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["NCBITaxon%3A1582","Lacticaseibacillus casei"],["NCBITaxon%3A1597","Lacticaseibacillus paracasei"],["NCBITaxon%3A47714","Lacticaseibacillus paracasei subsp. paracasei"],["NCBITaxon%3A537973","Lacticaseibacillus paracasei subsp. paracasei 8700:2"],["NCBITaxon%3A525337","Lacticaseibacillus paracasei subsp. paracasei ATCC 25302 = DSM 5622 = JCM 8130"],["NCBITaxon%3A1235989","Lacticaseibacillus paracasei subsp. paracasei BGSJ2-8"]]},{"id":"NCBITaxon:283168","l":"Odoribacter","na":3,"nb":39,"a":[["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["mucosa-bto-0000886.html","mucosa"]],"b":[["NCBITaxon%3A2838706","Candidatus Odoribacter faecigallinarum"],["NCBITaxon%3A283169","Odoribacter denticanis"],["NCBITaxon%3A626933","Odoribacter laneus"],["NCBITaxon%3A1263089","Odoribacter laneus CAG:561"],["NCBITaxon%3A742817","Odoribacter laneus YIT 12061"],["NCBITaxon%3A2941335","Odoribacter lunatus"]]},{"id":"NCBITaxon:1030","l":"Thiothrix","na":3,"nb":38,"a":[["gut-bto-0000545.html","gut"],["hemolymph-bto-0000572.html","hemolymph"],["spike-bto-0001278.html","spike"]],"b":[["NCBITaxon%3A2823902","Candidatus Thiothrix anitrata"],["NCBITaxon%3A2799668","Candidatus Thiothrix moscowensis"],["NCBITaxon%3A3149045","Candidatus Thiothrix namsaraevi"],["NCBITaxon%3A3112415","Candidatus Thiothrix phosphatis"],["NCBITaxon%3A3080811","Candidatus Thiothrix putei"],["NCBITaxon%3A2799669","Candidatus Thiothrix singaporensis"]]},{"id":"NCBITaxon:28037","l":"Streptococcus mitis","na":3,"nb":38,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["archeological-site-envo-00000564.html","archeological site"],["tropical-envo-01000204.html","tropical"]],"b":[["NCBITaxon%3A1660","Schaalia odontolytica"],["NCBITaxon%3A45634","Streptococcus cristatus"],["NCBITaxon%3A1302863","Streptococcus cristatus AS 1.3089"],["NCBITaxon%3A1302","Streptococcus gordonii"],["NCBITaxon%3A28037","Streptococcus mitis"],["NCBITaxon%3A1239792","Streptococcus mitis 11/5"]]},{"id":"NCBITaxon:438","l":"Acetobacter pasteurianus","na":3,"nb":34,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"],["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A435","Acetobacter aceti"],["NCBITaxon%3A178900","Acetobacter cerevisiae"],["NCBITaxon%3A1307903","Acetobacter cerevisiae DSM 14362"],["NCBITaxon%3A1737472","Acetobacter conturbans"],["NCBITaxon%3A104097","Acetobacter estunensis"],["NCBITaxon%3A104101","Acetobacter indonesiensis"]]},{"id":"NCBITaxon:1582","l":"Lacticaseibacillus casei","na":3,"nb":32,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["NCBITaxon%3A1582","Lacticaseibacillus casei"],["NCBITaxon%3A1051650","Lacticaseibacillus casei 12A"],["NCBITaxon%3A1051651","Lacticaseibacillus casei 21/1"],["NCBITaxon%3A1051652","Lacticaseibacillus casei 32G"],["NCBITaxon%3A1378069","Lacticaseibacillus casei 5b"],["NCBITaxon%3A1051653","Lacticaseibacillus casei A2-362"]]},{"id":"NCBITaxon:75985","l":"Mannheimia haemolytica","na":3,"nb":32,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["leukocyte-bto-0000751.html","leukocyte"],["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["NCBITaxon%3A47735","Bibersteinia trehalosi"],["NCBITaxon%3A85401","Mannheimia glucosida"],["NCBITaxon%3A75985","Mannheimia haemolytica"],["NCBITaxon%3A1261126","Mannheimia haemolytica D153"],["NCBITaxon%3A1311759","Mannheimia haemolytica D171"],["NCBITaxon%3A1311760","Mannheimia haemolytica D174"]]},{"id":"NCBITaxon:33973","l":"Acidobacterium","na":3,"nb":31,"a":[["leaf-bto-0000713.html","leaf"],["oil-secretion-bto-0005373.html","oil secretion"],["trunk-bto-0001493.html","trunk"]],"b":[["NCBITaxon%3A33075","Acidobacterium capsulatum"],["NCBITaxon%3A240015","Acidobacterium capsulatum ATCC 51196"],["NCBITaxon%3A1872119","Acidobacterium sp."],["NCBITaxon%3A433983","Acidobacterium sp. BK18"],["NCBITaxon%3A1336583","Acidobacterium sp. Colony17"],["NCBITaxon%3A192103","Acidobacterium sp. Ellin289"]]},{"id":"NCBITaxon:1717","l":"Corynebacterium diphtheriae","na":3,"nb":28,"a":[["foot-bto-0000476.html","foot"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A1717","Corynebacterium diphtheriae"],["NCBITaxon%3A698966","Corynebacterium diphtheriae 241"],["NCBITaxon%3A698962","Corynebacterium diphtheriae 31A"],["NCBITaxon%3A698973","Corynebacterium diphtheriae BH8"],["NCBITaxon%3A1720349","Corynebacterium diphtheriae bv. gravis"],["NCBITaxon%3A1450521","Corynebacterium diphtheriae bv. gravis str. ISS 4060"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":3,"nb":28,"a":[["liquid-water-envo-00002006.html","liquid water"],["sludge-envo-00002044.html","sludge"],["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A729","Haemophilus parainfluenzae"],["NCBITaxon%3A43306","Pseudomonas denitrificans (nom. rej.)"],["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A203192","Stutzerimonas chloritidismutans"],["NCBITaxon%3A3022791","Stutzerimonas decontaminans"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":27,"nb":3,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["watercourse-envo-00000029.html","watercourse"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["egg-food-product-foodon-00001274.html","egg food product"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"]],"b":[["NCBITaxon%3A2219225","Pseudomonas asiatica"],["NCBITaxon%3A1628086","Pseudomonas kribbensis"],["NCBITaxon%3A306","Pseudomonas sp."]]},{"id":"NCBITaxon:2371","l":"Xylella fastidiosa","na":3,"nb":26,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"],["water-scum-envo-00005794.html","water scum"]],"b":[["NCBITaxon%3A329529","environmental samples"],["NCBITaxon%3A329530","uncultured Xylella fastidiosa"],["NCBITaxon%3A2371","Xylella fastidiosa"],["NCBITaxon%3A1214121","Xylella fastidiosa 32"],["NCBITaxon%3A1211847","Xylella fastidiosa 6c"],["NCBITaxon%3A160492","Xylella fastidiosa 9a5c"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":3,"nb":25,"a":[["milk-uberon-0001913.html","milk"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["NCBITaxon%3A35783","Enterococcus sp."],["NCBITaxon%3A1308","Streptococcus thermophilus"],["NCBITaxon%3A1435981","Streptococcus thermophilus 1F8CT"],["NCBITaxon%3A1408178","Streptococcus thermophilus ASCC 1275"],["NCBITaxon%3A1263110","Streptococcus thermophilus CAG:236"],["NCBITaxon%3A1042404","Streptococcus thermophilus CNCM I-1630"]]},{"id":"NCBITaxon:1359","l":"Lactococcus cremoris","na":3,"nb":24,"a":[["b-lymphocyte-bto-0000776.html","B-lymphocyte"],["peripheral-blood-mononuclear-cell-bto-0001025.html","peripheral blood mononuclear cell"],["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A1359","Lactococcus cremoris"],["NCBITaxon%3A1286879","Lactococcus cremoris HB61"],["NCBITaxon%3A1286880","Lactococcus cremoris HB63"],["NCBITaxon%3A2816960","Lactococcus cremoris subsp. cremoris"],["NCBITaxon%3A1104322","Lactococcus cremoris subsp. cremoris A76"],["NCBITaxon%3A1415168","Lactococcus cremoris subsp. cremoris GE214"]]},{"id":"NCBITaxon:157687","l":"Leptotrichia wadei","na":3,"nb":23,"a":[["biofilm-envo-00002034.html","biofilm"],["grassland-soil-envo-00005750.html","grassland soil"],["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["NCBITaxon%3A157687","Leptotrichia wadei"],["NCBITaxon%3A1122174","Leptotrichia wadei DSM 19758"],["NCBITaxon%3A888055","Leptotrichia wadei F0279"],["NCBITaxon%3A1409967","Leptotrichia wadei HMP_JCVI_SC0129"],["NCBITaxon%3A1409968","Leptotrichia wadei HMP_JCVI_SC0130"],["NCBITaxon%3A1409969","Leptotrichia wadei HMP_JCVI_SC0192"]]},{"id":"NCBITaxon:191303","l":"Turicibacter","na":3,"nb":23,"a":[["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"],["mucosa-bto-0000886.html","mucosa"]],"b":[["NCBITaxon%3A2735723","Turicibacter bilis"],["NCBITaxon%3A2963365","Turicibacter faecis"],["NCBITaxon%3A154288","Turicibacter sanguinis"],["NCBITaxon%3A702450","Turicibacter sanguinis PC909"],["NCBITaxon%3A2049042","Turicibacter sp."],["NCBITaxon%3A2951143","Turicibacter sp. 1E2"]]},{"id":"NCBITaxon:442","l":"Gluconobacter oxydans","na":3,"nb":22,"a":[["research-facility-envo-00000469.html","research facility"],["food-fermented-foodon-00001258.html","food (fermented)"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["NCBITaxon%3A438","Acetobacter pasteurianus"],["NCBITaxon%3A318683","Gluconobacter albidus"],["NCBITaxon%3A1307944","Gluconobacter albidus NBRC 3250"],["NCBITaxon%3A2728101","Gluconobacter cadivus"],["NCBITaxon%3A38308","Gluconobacter frateurii"],["NCBITaxon%3A442","Gluconobacter oxydans"]]},{"id":"NCBITaxon:106592","l":"Ensifer adhaerens","na":20,"nb":3,"a":[["fresh-water-envo-00002011.html","fresh water"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["NCBITaxon%3A106592","Ensifer adhaerens"],["NCBITaxon%3A1416753","Ensifer adhaerens OV14"],["NCBITaxon%3A1113910","Ensifer sp. NBRC 102459"]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":3,"nb":20,"a":[["liquid-water-envo-00002006.html","liquid water"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"]],"b":[["NCBITaxon%3A548","Klebsiella aerogenes"],["NCBITaxon%3A1308731","Klebsiella aerogenes ADL-323"],["NCBITaxon%3A935296","Klebsiella aerogenes EA1509E"],["NCBITaxon%3A685445","Klebsiella aerogenes FGI35"],["NCBITaxon%3A1028307","Klebsiella aerogenes KCTC 2190"],["NCBITaxon%3A1439320","Klebsiella aerogenes MGH 61"]]},{"id":"NCBITaxon:1085","l":"Rhodospirillum rubrum","na":19,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"],["brackish-water-body-envo-01001321.html","brackish water body"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["liquid-water-envo-00002006.html","liquid water"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["river-envo-00000022.html","river"]],"b":[["NCBITaxon%3A1085","Rhodospirillum rubrum"],["NCBITaxon%3A269796","Rhodospirillum rubrum ATCC 11170"],["NCBITaxon%3A1036743","Rhodospirillum rubrum F11"]]},{"id":"NCBITaxon:158","l":"Treponema denticola","na":3,"nb":19,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["archeological-site-envo-00000564.html","archeological site"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A158","Treponema denticola"],["NCBITaxon%3A999426","Treponema denticola AL-2"],["NCBITaxon%3A999427","Treponema denticola ASLM"],["NCBITaxon%3A999428","Treponema denticola ATCC 33520"],["NCBITaxon%3A999429","Treponema denticola ATCC 33521"],["NCBITaxon%3A999430","Treponema denticola ATCC 35404"]]},{"id":"NCBITaxon:1833","l":"Rhodococcus erythropolis","na":3,"nb":19,"a":[["watercourse-envo-00000029.html","watercourse"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"],["water-scum-envo-00005794.html","water scum"]],"b":[["NCBITaxon%3A1818","Nocardia globerula"],["NCBITaxon%3A1821","Nocardia sp."],["NCBITaxon%3A53432","Nocardia uniformis"],["NCBITaxon%3A1210100","Nocardia uniformis NBRC 13702"],["NCBITaxon%3A1833","Rhodococcus erythropolis"],["NCBITaxon%3A1136179","Rhodococcus erythropolis CCM2595"]]},{"id":"NCBITaxon:375","l":"Bradyrhizobium japonicum","na":3,"nb":19,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A1355477","Bradyrhizobium diazoefficiens"],["NCBITaxon%3A224911","Bradyrhizobium diazoefficiens USDA 110"],["NCBITaxon%3A375","Bradyrhizobium japonicum"],["NCBITaxon%3A306164","Bradyrhizobium japonicum bv. genistearum"],["NCBITaxon%3A305581","Bradyrhizobium japonicum bv. glycinearum"],["NCBITaxon%3A1128253","Bradyrhizobium japonicum CCBAU 15354"]]},{"id":"NCBITaxon:1492","l":"Clostridium butyricum","na":3,"nb":15,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["intestine-environment-envo-2100002.html","intestine environment"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["NCBITaxon%3A1520","Clostridium beijerinckii"],["NCBITaxon%3A1492","Clostridium butyricum"],["NCBITaxon%3A634501","Clostridium butyricum 2CR37"],["NCBITaxon%3A447214","Clostridium butyricum 5521"],["NCBITaxon%3A997898","Clostridium butyricum 60E.3"],["NCBITaxon%3A1280693","Clostridium butyricum AGR2140"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":15,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["NCBITaxon%3A38285","Corynebacterium acetoacidophilum"],["NCBITaxon%3A1718","Corynebacterium glutamicum"],["NCBITaxon%3A196627","Corynebacterium glutamicum ATCC 13032"],["NCBITaxon%3A1079988","Corynebacterium glutamicum ATCC 14067"],["NCBITaxon%3A1204414","Corynebacterium glutamicum K051"],["NCBITaxon%3A1310161","Corynebacterium glutamicum MB001"]]},{"id":"NCBITaxon:1011","l":"Sporocytophaga","na":3,"nb":14,"a":[["inflorescence-bto-0000628.html","inflorescence"],["plant-bto-0001481.html","plant"],["root-bto-0001188.html","root"]],"b":[["NCBITaxon%3A1012","Sporocytophaga cauliformis"],["NCBITaxon%3A153721","Sporocytophaga myxococcoides"],["NCBITaxon%3A926565","Sporocytophaga myxococcoides DSM 11118"],["NCBITaxon%3A2231183","Sporocytophaga sp."],["NCBITaxon%3A420530","Sporocytophaga sp. 25B"],["NCBITaxon%3A571179","Sporocytophaga sp. 4v"]]},{"id":"NCBITaxon:29466","l":"Veillonella parvula","na":3,"nb":14,"a":[["dental-plaque-bto-0000338.html","dental plaque"],["juvenile-bto-0002168.html","juvenile"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["NCBITaxon%3A39777","Veillonella atypica"],["NCBITaxon%3A29466","Veillonella parvula"],["NCBITaxon%3A1357417","Veillonella parvula AC2_8_11_AN_NA_2"],["NCBITaxon%3A768727","Veillonella parvula ACS-068-V-Sch12"],["NCBITaxon%3A686660","Veillonella parvula ATCC 17745"],["NCBITaxon%3A479436","Veillonella parvula DSM 2008"]]},{"id":"NCBITaxon:582","l":"Morganella morganii","na":3,"nb":14,"a":[["blast-cell-bto-0000125.html","blast cell"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"],["spike-bto-0001278.html","spike"]],"b":[["NCBITaxon%3A582","Morganella morganii"],["NCBITaxon%3A1365974","Morganella morganii AC2_8_11_AN_D6_FAA_4"],["NCBITaxon%3A1428452","Morganella morganii F675"],["NCBITaxon%3A1416758","Morganella morganii H1r"],["NCBITaxon%3A1411647","Morganella morganii IS15"],["NCBITaxon%3A1239989","Morganella morganii SC01"]]},{"id":"NCBITaxon:28090","l":"Acinetobacter lwoffii","na":3,"nb":13,"a":[["nectar-bto-0000537.html","nectar"],["pseudostem-bto-0005992.html","pseudostem"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["NCBITaxon%3A1311822","Acinetobacter genomosp. 9 str. ATCC 17910"],["NCBITaxon%3A40215","Acinetobacter junii"],["NCBITaxon%3A28090","Acinetobacter lwoffii"],["NCBITaxon%3A1311804","Acinetobacter lwoffii ATCC 9957 = CIP 70.31"],["NCBITaxon%3A54394","Acinetobacter lwoffii K24"],["NCBITaxon%3A981327","Acinetobacter lwoffii NCTC 5866 = CIP 64.10 = NIPH 512"]]},{"id":"NCBITaxon:113286","l":"Pseudoramibacter","na":3,"nb":12,"a":[["cecum-bto-0000166.html","cecum"],["gut-bto-0000545.html","gut"],["sgs-cell-bto-0001210.html","SGS cell"]],"b":[["NCBITaxon%3A2594427","Candidatus Pseudoramibacter fermentans"],["NCBITaxon%3A113287","Pseudoramibacter alactolyticus"],["NCBITaxon%3A887929","Pseudoramibacter alactolyticus ATCC 23263"],["NCBITaxon%3A3108534","Pseudoramibacter faecis"],["NCBITaxon%3A2606631","Pseudoramibacter porci"],["NCBITaxon%3A2034862","Pseudoramibacter sp."]]},{"id":"NCBITaxon:119602","l":"Streptococcus dysgalactiae subsp. equisimilis","na":3,"nb":12,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["animal-manure-envo-00003031.html","animal manure"]],"b":[["NCBITaxon%3A1334","Streptococcus dysgalactiae"],["NCBITaxon%3A119602","Streptococcus dysgalactiae subsp. equisimilis"],["NCBITaxon%3A1247189","Streptococcus dysgalactiae subsp. equisimilis 167"],["NCBITaxon%3A759913","Streptococcus dysgalactiae subsp. equisimilis AC-2713"],["NCBITaxon%3A452436","Streptococcus dysgalactiae subsp. equisimilis AKSDE4288"],["NCBITaxon%3A663954","Streptococcus dysgalactiae subsp. equisimilis ATCC 12394"]]},{"id":"NCBITaxon:24","l":"Shewanella putrefaciens","na":3,"nb":12,"a":[["reservoir-envo-00000025.html","reservoir"],["foot-bto-0000476.html","foot"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A1882437","Massilia sp."],["NCBITaxon%3A38313","Shewanella algae"],["NCBITaxon%3A62322","Shewanella baltica"],["NCBITaxon%3A24","Shewanella putrefaciens"],["NCBITaxon%3A399804","Shewanella putrefaciens 200"],["NCBITaxon%3A319224","Shewanella putrefaciens CN-32"]]},{"id":"NCBITaxon:28447","l":"Clavibacter michiganensis","na":3,"nb":12,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["canker-habitatmech-bacdive-0f078d72a7.html","Canker"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["NCBITaxon%3A1874630","Clavibacter capsici"],["NCBITaxon%3A2301718","Clavibacter lycopersici"],["NCBITaxon%3A28447","Clavibacter michiganensis"],["NCBITaxon%3A33014","Clavibacter michiganensis subsp. insidiosus"],["NCBITaxon%3A33013","Clavibacter michiganensis subsp. michiganensis"],["NCBITaxon%3A443906","Clavibacter michiganensis subsp. michiganensis NCPPB 382"]]},{"id":"NCBITaxon:1154584","l":"Gaiellales","na":3,"nb":11,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["skin-bto-0001253.html","skin"]],"b":[["NCBITaxon%3A2928748","Candidatus Gaiellasilicea maunaloa"],["NCBITaxon%3A1002870","Gaiella occulta"],["NCBITaxon%3A2663207","Gaiella sp."],["NCBITaxon%3A1282738","Gaiella sp. EBR4-R2"],["NCBITaxon%3A1282739","Gaiella sp. EBR4-RS1"],["NCBITaxon%3A1799656","Gaiella sp. SCGC AG-212-M14"]]},{"id":"NCBITaxon:168808","l":"Sneathia","na":3,"nb":11,"a":[["blood-bto-0000089.html","blood"],["brain-bto-0000142.html","brain"],["heart-bto-0000562.html","heart"]],"b":[["NCBITaxon%3A40543","Sneathia sanguinegens"],["NCBITaxon%3A1123259","Sneathia sanguinegens DSM 22970"],["NCBITaxon%3A553163","Sneathia sanguinegens JCVIHMP003"],["NCBITaxon%3A2776143","Sneathia sp."],["NCBITaxon%3A2777993","Sneathia sp. DSM 16630"],["NCBITaxon%3A2777994","Sneathia sp. DSM 16631"]]},{"id":"NCBITaxon:2426","l":"Teredinibacter turnerae","na":3,"nb":11,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["NCBITaxon%3A2426","Teredinibacter turnerae"],["NCBITaxon%3A1313298","Teredinibacter turnerae 1133Y.S.0a.04"],["NCBITaxon%3A1313297","Teredinibacter turnerae 1675L.S.0a.01"],["NCBITaxon%3A1206095","Teredinibacter turnerae T0609"],["NCBITaxon%3A377629","Teredinibacter turnerae T7901"],["NCBITaxon%3A1056820","Teredinibacter turnerae T7902"]]},{"id":"NCBITaxon:1260","l":"Finegoldia magna","na":3,"nb":10,"a":[["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A1260","Finegoldia magna"],["NCBITaxon%3A768713","Finegoldia magna ACS-171-V-Col3"],["NCBITaxon%3A1459804","Finegoldia magna ALB8"],["NCBITaxon%3A334413","Finegoldia magna ATCC 29328"],["NCBITaxon%3A525282","Finegoldia magna ATCC 53516"],["NCBITaxon%3A866773","Finegoldia magna BVS033A4"]]},{"id":"NCBITaxon:1399","l":"Cytobacillus firmus","na":10,"nb":3,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"],["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["NCBITaxon%3A1399","Cytobacillus firmus"],["NCBITaxon%3A1307436","Cytobacillus firmus DS1"],["NCBITaxon%3A1314753","Cytobacillus firmus NBRC 15306"]]},{"id":"NCBITaxon:2035","l":"Curtobacterium flaccumfaciens","na":3,"nb":10,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["wilt-habitatmech-bacdive-4c48b5114d.html","Wilt"]],"b":[["NCBITaxon%3A3236919","Curtobacterium aurantiacum"],["NCBITaxon%3A2035","Curtobacterium flaccumfaciens"],["NCBITaxon%3A2878384","Curtobacterium flaccumfaciens pv. allii"],["NCBITaxon%3A83664","Curtobacterium flaccumfaciens pv. betae"],["NCBITaxon%3A221277","Curtobacterium flaccumfaciens pv. beticola"],["NCBITaxon%3A138532","Curtobacterium flaccumfaciens pv. flaccumfaciens"]]},{"id":"NCBITaxon:28095","l":"Burkholderia gladioli","na":3,"nb":10,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["NCBITaxon%3A28095","Burkholderia gladioli"],["NCBITaxon%3A1263856","Burkholderia gladioli 3848s-5"],["NCBITaxon%3A999541","Burkholderia gladioli BSR3"],["NCBITaxon%3A1218079","Burkholderia gladioli NBRC 13700"],["NCBITaxon%3A336070","Burkholderia gladioli pv. agaricicola"],["NCBITaxon%3A32010","Burkholderia gladioli pv. alliicola"]]},{"id":"NCBITaxon:315405","l":"Streptococcus gallolyticus","na":3,"nb":10,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A1036677","Methanosarcina soligelidi"],["NCBITaxon%3A1335","Streptococcus equinus"],["NCBITaxon%3A315405","Streptococcus gallolyticus"],["NCBITaxon%3A53354","Streptococcus gallolyticus subsp. gallolyticus"],["NCBITaxon%3A981539","Streptococcus gallolyticus subsp. gallolyticus ATCC 43143"],["NCBITaxon%3A990317","Streptococcus gallolyticus subsp. gallolyticus ATCC BAA-2069"]]},{"id":"NCBITaxon:33959","l":"Lactobacillus johnsonii","na":3,"nb":10,"a":[["animal-litter-envo-00002191.html","animal litter"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["NCBITaxon%3A1596","Lactobacillus gasseri"],["NCBITaxon%3A33959","Lactobacillus johnsonii"],["NCBITaxon%3A572503","Lactobacillus johnsonii 135-1-CHN"],["NCBITaxon%3A1033983","Lactobacillus johnsonii 16"],["NCBITaxon%3A525330","Lactobacillus johnsonii ATCC 33200"],["NCBITaxon%3A909954","Lactobacillus johnsonii DPC 6026"]]},{"id":"NCBITaxon:40214","l":"Acinetobacter johnsonii","na":3,"nb":10,"a":[["liquid-water-envo-00002006.html","liquid water"],["pitcher-bto-0001069.html","pitcher"],["water-scum-envo-00005794.html","water scum"]],"b":[["NCBITaxon%3A40214","Acinetobacter johnsonii"],["NCBITaxon%3A1255605","Acinetobacter johnsonii 3M05"],["NCBITaxon%3A1217662","Acinetobacter johnsonii ANC 3681"],["NCBITaxon%3A1217663","Acinetobacter johnsonii CIP 64.6"],["NCBITaxon%3A1160709","Acinetobacter johnsonii L18"],["NCBITaxon%3A701047","Acinetobacter johnsonii SE1"]]},{"id":"NCBITaxon:1017","l":"Capnocytophaga gingivalis","na":9,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"],["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biotope-envo-00002036.html","biotope"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["organic-feature-envo-01000159.html","organic feature"]],"b":[["NCBITaxon%3A1017","Capnocytophaga gingivalis"],["NCBITaxon%3A553178","Capnocytophaga gingivalis ATCC 33624"],["NCBITaxon%3A45242","Capnocytophaga granulosa"]]},{"id":"NCBITaxon:1238","l":"Piscirickettsia salmonis","na":3,"nb":9,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["sea-water-envo-00002149.html","sea water"],["stream-envo-00000023.html","stream"]],"b":[["NCBITaxon%3A1238","Piscirickettsia salmonis"],["NCBITaxon%3A1269812","Piscirickettsia salmonis Al10015"],["NCBITaxon%3A1398558","Piscirickettsia salmonis AUSTRAL-005"],["NCBITaxon%3A1441380","Piscirickettsia salmonis CGA/3731"],["NCBITaxon%3A1435375","Piscirickettsia salmonis EM-90"],["NCBITaxon%3A1435376","Piscirickettsia salmonis ES-3"]]},{"id":"NCBITaxon:133193","l":"Alkalilimnicola","na":3,"nb":9,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["sea-water-envo-00002149.html","sea water"],["stream-envo-00000023.html","stream"]],"b":[["NCBITaxon%3A351052","Alkalilimnicola ehrlichii"],["NCBITaxon%3A187272","Alkalilimnicola ehrlichii MLHE-1"],["NCBITaxon%3A133194","Alkalilimnicola halodurans"],["NCBITaxon%3A1872450","Alkalilimnicola sp."],["NCBITaxon%3A1985295","Alkalilimnicola sp. AK92"],["NCBITaxon%3A2613922","Alkalilimnicola sp. S0819"]]},{"id":"NCBITaxon:28188","l":"Capnocytophaga canimorsus","na":9,"nb":3,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["alkaline-environment-envo-01000316.html","alkaline environment"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["NCBITaxon%3A28188","Capnocytophaga canimorsus"],["NCBITaxon%3A860228","Capnocytophaga canimorsus Cc5"],["NCBITaxon%3A1848903","Capnocytophaga canis"]]},{"id":"NCBITaxon:359","l":"Martinezella rhizogenes","na":3,"nb":9,"a":[["hairy-root-bto-0004305.html","hairy root"],["plant-gall-po-0025626.html","plant gall"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["NCBITaxon%3A362","Agrobacterium radiobacter"],["NCBITaxon%3A1972867","Agrobacterium rosae"],["NCBITaxon%3A28099","Agrobacterium rubi"],["NCBITaxon%3A1368415","Agrobacterium rubi TR3 = NBRC 13261"],["NCBITaxon%3A361","Agrobacterium sp."],["NCBITaxon%3A359","Martinezella rhizogenes"]]},{"id":"NCBITaxon:729","l":"Haemophilus parainfluenzae","na":3,"nb":9,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"],["tropical-envo-01000204.html","tropical"]],"b":[["NCBITaxon%3A732","Aggregatibacter aphrophilus"],["NCBITaxon%3A726","Haemophilus haemolyticus"],["NCBITaxon%3A729","Haemophilus parainfluenzae"],["NCBITaxon%3A888828","Haemophilus parainfluenzae ATCC 33392"],["NCBITaxon%3A1095746","Haemophilus parainfluenzae HK2019"],["NCBITaxon%3A1095745","Haemophilus parainfluenzae HK262"]]},{"id":"NCBITaxon:1623","l":"Ligilactobacillus ruminis","na":3,"nb":8,"a":[["biofilm-envo-00002034.html","biofilm"],["flagellate-bto-0000464.html","flagellate"],["juvenile-bto-0002168.html","juvenile"]],"b":[["NCBITaxon%3A1623","Ligilactobacillus ruminis"],["NCBITaxon%3A525362","Ligilactobacillus ruminis ATCC 25644"],["NCBITaxon%3A1069534","Ligilactobacillus ruminis ATCC 27782"],["NCBITaxon%3A1263085","Ligilactobacillus ruminis CAG:367"],["NCBITaxon%3A1402208","Ligilactobacillus ruminis DPC 6832"],["NCBITaxon%3A1423798","Ligilactobacillus ruminis DSM 20403 = NBRC 102161"]]},{"id":"NCBITaxon:198","l":"Campylobacter hyointestinalis","na":3,"nb":8,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["feces-uberon-0001988.html","feces"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["NCBITaxon%3A198","Campylobacter hyointestinalis"],["NCBITaxon%3A91352","Campylobacter hyointestinalis subsp. hyointestinalis"],["NCBITaxon%3A1031746","Campylobacter hyointestinalis subsp. hyointestinalis LMG 9260"],["NCBITaxon%3A91353","Campylobacter hyointestinalis subsp. lawsonii"],["NCBITaxon%3A1031752","Campylobacter hyointestinalis subsp. lawsonii CCUG 27631"],["NCBITaxon%3A206","Campylobacter sputorum"]]},{"id":"NCBITaxon:47885","l":"Pseudomonas oryzihabitans","na":8,"nb":3,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"],["hospital-envo-00002173.html","hospital"],["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"],["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["NCBITaxon%3A47885","Pseudomonas oryzihabitans"],["NCBITaxon%3A1215113","Pseudomonas oryzihabitans NBRC 102199"],["NCBITaxon%3A1112217","Pseudomonas psychrotolerans L19"]]},{"id":"NCBITaxon:537937","l":"Bifidobacterium longum subsp. infantis CCUG 52486","na":8,"nb":3,"a":[["bay-envo-00000032.html","bay"],["black-smoker-envo-00000218.html","black smoker"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["saline-water-envo-00002010.html","saline water"],["village-biome-envo-01000246.html","village biome"]],"b":[["NCBITaxon%3A216816","Bifidobacterium longum"],["NCBITaxon%3A1682","Bifidobacterium longum subsp. infantis"],["NCBITaxon%3A537937","Bifidobacterium longum subsp. infantis CCUG 52486"]]},{"id":"NCBITaxon:1299","l":"Deinococcus radiodurans","na":7,"nb":3,"a":[["animal-house-envo-00003040.html","animal house"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["water-scum-envo-00005794.html","water scum"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"]],"b":[["NCBITaxon%3A1299","Deinococcus radiodurans"],["NCBITaxon%3A243230","Deinococcus radiodurans R1 = ATCC 13939 = DSM 20539"],["NCBITaxon%3A47478","Deinococcus sp."]]},{"id":"NCBITaxon:13690","l":"Sphingobium yanoikuyae","na":7,"nb":3,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["resting-cell-bto-0001170.html","resting cell"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"],["water-scum-envo-00005794.html","water scum"]],"b":[["NCBITaxon%3A13690","Sphingobium yanoikuyae"],["NCBITaxon%3A883163","Sphingobium yanoikuyae ATCC 51230"],["NCBITaxon%3A1074493","Sphingobium yanoikuyae XLDN2-5"]]},{"id":"NCBITaxon:154046","l":"Hungatella hathewayi","na":3,"nb":7,"a":[["biofilm-envo-00002034.html","biofilm"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["NCBITaxon%3A154046","Hungatella hathewayi"],["NCBITaxon%3A999412","Hungatella hathewayi 12489931"],["NCBITaxon%3A1263067","Hungatella hathewayi CAG:224"],["NCBITaxon%3A566550","Hungatella hathewayi DSM 13479"],["NCBITaxon%3A1232440","Hungatella hathewayi VE202-04"],["NCBITaxon%3A1232451","Hungatella hathewayi VE202-11"]]},{"id":"NCBITaxon:165179","l":"Segatella copri","na":7,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"],["juvenile-bto-0002168.html","juvenile"],["rumen-uberon-0007365.html","rumen"],["tongue-bto-0001385.html","tongue"],["vaginal-fluid-bto-0003084.html","vaginal fluid"],["animal-litter-envo-00002191.html","animal litter"]],"b":[["NCBITaxon%3A165179","Segatella copri"],["NCBITaxon%3A1263102","Segatella copri CAG:164"],["NCBITaxon%3A537011","Segatella copri DSM 18205"]]},{"id":"NCBITaxon:28108","l":"Alteromonas macleodii","na":3,"nb":7,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["marine-water-body-envo-00001999.html","marine water body"],["sandstone-envo-00002055.html","sandstone"]],"b":[["NCBITaxon%3A28108","Alteromonas macleodii"],["NCBITaxon%3A529120","Alteromonas macleodii ATCC 27126"],["NCBITaxon%3A1004787","Alteromonas macleodii str. 'Balearic Sea AD45'"],["NCBITaxon%3A1004785","Alteromonas macleodii str. 'Black Sea 11'"],["NCBITaxon%3A1004788","Alteromonas macleodii str. 'English Channel 673'"],["NCBITaxon%3A160763","Alteromonas macleodii subsp. abyssi"]]},{"id":"NCBITaxon:283734","l":"Staphylococcus pseudintermedius","na":3,"nb":7,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["NCBITaxon%3A1280","Staphylococcus aureus"],["NCBITaxon%3A1285","Staphylococcus intermedius"],["NCBITaxon%3A283734","Staphylococcus pseudintermedius"],["NCBITaxon%3A1266717","Staphylococcus pseudintermedius E140"],["NCBITaxon%3A984892","Staphylococcus pseudintermedius ED99"],["NCBITaxon%3A937773","Staphylococcus pseudintermedius HKU10-03"]]},{"id":"NCBITaxon:43770","l":"Corynebacterium striatum","na":3,"nb":7,"a":[["bone-element-uberon-0001474.html","bone element"],["foot-bto-0000476.html","foot"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"]],"b":[["NCBITaxon%3A43765","Corynebacterium amycolatum"],["NCBITaxon%3A1717","Corynebacterium diphtheriae"],["NCBITaxon%3A38301","Corynebacterium minutissimum"],["NCBITaxon%3A1720","Corynebacterium sp."],["NCBITaxon%3A43770","Corynebacterium striatum"],["NCBITaxon%3A525268","Corynebacterium striatum ATCC 6940"]]},{"id":"NCBITaxon:55518","l":"Magnetospirillum gryphiswaldense","na":7,"nb":3,"a":[["bay-envo-00000032.html","bay"],["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"],["saline-water-envo-00002010.html","saline water"],["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["farm-soil-envo-00005749.html","farm soil"],["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A55518","Magnetospirillum gryphiswaldense"],["NCBITaxon%3A431944","Magnetospirillum gryphiswaldense MSR-1"],["NCBITaxon%3A1430440","Magnetospirillum gryphiswaldense MSR-1 v2"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":3,"nb":7,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A663","Vibrio alginolyticus"],["NCBITaxon%3A314288","Vibrio alginolyticus 12G01"],["NCBITaxon%3A674977","Vibrio alginolyticus 40B"],["NCBITaxon%3A664","Vibrio alginolyticus chemovar iophagus"],["NCBITaxon%3A1219076","Vibrio alginolyticus NBRC 15630 = ATCC 17749"],["NCBITaxon%3A669","Vibrio harveyi"]]},{"id":"NCBITaxon:83451","l":"Archangium violaceum","na":7,"nb":3,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["wood-bto-0005516.html","wood"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["plant-litter-envo-01000628.html","plant litter"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A48","Archangium gephyra"],["NCBITaxon%3A83451","Archangium violaceum"],["NCBITaxon%3A1406225","Archangium violaceum Cb vi76"]]},{"id":"NCBITaxon:1005038","l":"Fimbriimonas","na":3,"nb":6,"a":[["inflorescence-bto-0000628.html","inflorescence"],["plant-bto-0001481.html","plant"],["root-bto-0001188.html","root"]],"b":[["NCBITaxon%3A3712373","Fimbriimonas antarctica (SeqCode)"],["NCBITaxon%3A1005039","Fimbriimonas ginsengisoli"],["NCBITaxon%3A661478","Fimbriimonas ginsengisoli Gsoil 348"],["NCBITaxon%3A1936159","Fimbriimonas sp."],["NCBITaxon%3A3378866","Fimbriimonas sp. LA-C6"],["NCBITaxon%3A1936177","uncultured Fimbriimonas sp."]]},{"id":"NCBITaxon:137591","l":"Weissella cibaria","na":3,"nb":6,"a":[["biofilm-bto-0002690.html","biofilm"],["epithelial-cell-bto-0000414.html","epithelial cell"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A137591","Weissella cibaria"],["NCBITaxon%3A1255594","Weissella cibaria 3385"],["NCBITaxon%3A1255595","Weissella cibaria 3386"],["NCBITaxon%3A1357418","Weissella cibaria F16_1"],["NCBITaxon%3A911104","Weissella cibaria KACC 11862"],["NCBITaxon%3A1583","Weissella confusa"]]},{"id":"NCBITaxon:1391","l":"Aneurinibacillus aneurinilyticus","na":6,"nb":3,"a":[["animal-house-envo-00003040.html","animal house"],["rhizosphere-envo-00005801.html","rhizosphere"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["NCBITaxon%3A1391","Aneurinibacillus aneurinilyticus"],["NCBITaxon%3A649747","Aneurinibacillus aneurinilyticus ATCC 12856"],["NCBITaxon%3A83428","uncultured Bacillus sp."]]},{"id":"NCBITaxon:46124","l":"Granulicatella adiacens","na":6,"nb":3,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["bone-element-uberon-0001474.html","bone element"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["NCBITaxon%3A46124","Granulicatella adiacens"],["NCBITaxon%3A638301","Granulicatella adiacens ATCC 49175"],["NCBITaxon%3A1073361","Granulicatella adiacens CC94D"]]},{"id":"NCBITaxon:1275","l":"Kocuria rosea","na":5,"nb":3,"a":[["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["marine-environment-envo-01000320.html","marine environment"],["oil-spill-envo-00002061.html","oil spill"],["painting-habitatmech-bacdive-0bfb662164.html","Painting"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A37921","Arthrobacter agilis"],["NCBITaxon%3A1275","Kocuria rosea"],["NCBITaxon%3A136273","Kocuria rosea subsp. polaris"]]},{"id":"NCBITaxon:135569","l":"Helicobacter apodemus","na":5,"nb":3,"a":[["cecum-mucosa-bto-0000213.html","cecum mucosa"],["epithelium-bto-0000416.html","epithelium"],["ht-29-cell-bto-0000182.html","HT-29 cell"],["lymphoid-tissue-bto-0000753.html","lymphoid tissue"],["mucosa-bto-0000886.html","mucosa"]],"b":[["NCBITaxon%3A135569","Helicobacter apodemus"],["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"]]},{"id":"NCBITaxon:1365","l":"Pseudolactococcus plantarum","na":3,"nb":5,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["NCBITaxon%3A44273","Lactococcus sp."],["NCBITaxon%3A40542","Leptotrichia buccalis"],["NCBITaxon%3A1365","Pseudolactococcus plantarum"],["NCBITaxon%3A1255636","Pseudolactococcus plantarum CNRZ 1322"],["NCBITaxon%3A1348632","Pseudolactococcus plantarum NBRC 100936"]]},{"id":"NCBITaxon:145262","l":"Methanothermobacter thermautotrophicus","na":5,"nb":3,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["intestine-environment-envo-2100002.html","intestine environment"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A145262","Methanothermobacter thermautotrophicus"],["NCBITaxon%3A187420","Methanothermobacter thermautotrophicus str. Delta H"],["NCBITaxon%3A79930","Methanothermobacter thermautotrophicus str. Winter"]]},{"id":"NCBITaxon:1516","l":"Thermoanaerobacter ethanolicus subsp. thermohydrosulfuricus","na":3,"nb":5,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A1757","Thermoanaerobacter ethanolicus"],["NCBITaxon%3A1125974","Thermoanaerobacter ethanolicus subsp. indiensis"],["NCBITaxon%3A1516","Thermoanaerobacter ethanolicus subsp. thermohydrosulfuricus"],["NCBITaxon%3A248492","Thermoanaerobacter thermohydrosulfuricus subsp. carboxydovorans"],["NCBITaxon%3A1198630","Thermoanaerobacter thermohydrosulfuricus WC1"]]},{"id":"NCBITaxon:1633","l":"Limosilactobacillus vaginalis","na":3,"nb":5,"a":[["ileum-bto-0000620.html","ileum"],["vaginal-fluid-bto-0003084.html","vaginal fluid"],["cropland-biome-envo-01000245.html","cropland biome"]],"b":[["NCBITaxon%3A1633","Limosilactobacillus vaginalis"],["NCBITaxon%3A1423814","Limosilactobacillus vaginalis DSM 5837 = ATCC 49540"],["NCBITaxon%3A858674","Limosilactobacillus vaginalis EX336960VC05"],["NCBITaxon%3A858675","Limosilactobacillus vaginalis EX336960VC11"],["NCBITaxon%3A858676","Limosilactobacillus vaginalis EX336960VC12"]]},{"id":"NCBITaxon:1648","l":"Erysipelothrix rhusiopathiae","na":3,"nb":5,"a":[["skin-of-body-uberon-0002097.html","skin of body"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["animal-litter-envo-00002191.html","animal litter"]],"b":[["NCBITaxon%3A1648","Erysipelothrix rhusiopathiae"],["NCBITaxon%3A525280","Erysipelothrix rhusiopathiae ATCC 19414"],["NCBITaxon%3A650150","Erysipelothrix rhusiopathiae str. Fujisawa"],["NCBITaxon%3A3119429","Erysipelothrix rhusiopathiae subsp. ohloneorum"],["NCBITaxon%3A1313290","Erysipelothrix rhusiopathiae SY1027"]]},{"id":"NCBITaxon:1661","l":"Trueperella pyogenes","na":5,"nb":3,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["uterus-bto-0001424.html","uterus"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["NCBITaxon%3A1661","Trueperella pyogenes"],["NCBITaxon%3A1448141","Trueperella pyogenes MS249"],["NCBITaxon%3A1435056","Trueperella pyogenes TP8"]]},{"id":"NCBITaxon:256","l":"Myroides odoratus","na":3,"nb":5,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"]],"b":[["NCBITaxon%3A1820002","Bartonella mastomydis"],["NCBITaxon%3A76832","Myroides odoratimimus"],["NCBITaxon%3A256","Myroides odoratus"],["NCBITaxon%3A883155","Myroides odoratus CIP 103059"],["NCBITaxon%3A929704","Myroides odoratus DSM 2801"]]},{"id":"NCBITaxon:2751","l":"Carnobacterium maltaromaticum","na":3,"nb":5,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["food-habitatmech-madin-81cb9e74cb.html","food"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["NCBITaxon%3A2751","Carnobacterium maltaromaticum"],["NCBITaxon%3A1255596","Carnobacterium maltaromaticum 38b"],["NCBITaxon%3A1087479","Carnobacterium maltaromaticum ATCC 35586"],["NCBITaxon%3A1449341","Carnobacterium maltaromaticum DSM 20342"],["NCBITaxon%3A1234679","Carnobacterium maltaromaticum LMA28"]]},{"id":"NCBITaxon:28262","l":"Thermodesulfovibrio yellowstonii","na":5,"nb":3,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["cultivated-environment-envo-01000311.html","cultivated environment"],["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"]],"b":[["NCBITaxon%3A1123375","Thermodesulfovibrio islandicus DSM 12570"],["NCBITaxon%3A28262","Thermodesulfovibrio yellowstonii"],["NCBITaxon%3A289376","Thermodesulfovibrio yellowstonii DSM 11347"]]},{"id":"NCBITaxon:292800","l":"Flavonifractor plautii","na":3,"nb":5,"a":[["goblet-cell-bto-0001540.html","goblet cell"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["secretion-bto-0002979.html","secretion"]],"b":[["NCBITaxon%3A292800","Flavonifractor plautii"],["NCBITaxon%3A742738","Flavonifractor plautii 1_3_50AFAA"],["NCBITaxon%3A411475","Flavonifractor plautii ATCC 29863"],["NCBITaxon%3A1073358","Flavonifractor plautii CC43_001K"],["NCBITaxon%3A649753","Flavonifractor plautii DSM 6740"]]},{"id":"NCBITaxon:29346","l":"Alkalithermobacter thermoalcaliphilus","na":5,"nb":3,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"],["cultivated-environment-envo-01000311.html","cultivated environment"],["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"]],"b":[["NCBITaxon%3A29349","Alkalithermobacter paradoxus"],["NCBITaxon%3A29346","Alkalithermobacter thermoalcaliphilus"],["NCBITaxon%3A1121328","Alkalithermobacter thermoalcaliphilus JW-YL-7 = DSM 7308"]]},{"id":"NCBITaxon:29575","l":"Taylorella equigenitalis","na":3,"nb":5,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["semen-bto-0001230.html","semen"],["urethra-bto-0001426.html","urethra"]],"b":[["NCBITaxon%3A29575","Taylorella equigenitalis"],["NCBITaxon%3A1091497","Taylorella equigenitalis 14/56"],["NCBITaxon%3A1323579","Taylorella equigenitalis 96-58774"],["NCBITaxon%3A743973","Taylorella equigenitalis ATCC 35865"],["NCBITaxon%3A937774","Taylorella equigenitalis MCE9"]]},{"id":"NCBITaxon:33059","l":"Acidithiobacillus caldus","na":3,"nb":5,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["paddy-field-envo-00000297.html","paddy field"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A33059","Acidithiobacillus caldus"],["NCBITaxon%3A637389","Acidithiobacillus caldus ATCC 51756"],["NCBITaxon%3A990288","Acidithiobacillus caldus SM-1"],["NCBITaxon%3A184426","environmental samples"],["NCBITaxon%3A184427","uncultured Acidithiobacillus caldus"]]},{"id":"NCBITaxon:76759","l":"Pseudomonas monteilii","na":3,"nb":5,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["NCBITaxon%3A76759","Pseudomonas monteilii"],["NCBITaxon%3A1215110","Pseudomonas monteilii NBRC 103158 = DSM 14164"],["NCBITaxon%3A1123524","Pseudomonas monteilii QM"],["NCBITaxon%3A1435044","Pseudomonas monteilii SB3078"],["NCBITaxon%3A1435058","Pseudomonas monteilii SB3101"]]},{"id":"NCBITaxon:103817","l":"Janibacter terrae","na":4,"nb":3,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"],["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A103817","Janibacter terrae"],["NCBITaxon%3A1216972","Janibacter terrae NBRC 107853"],["NCBITaxon%3A1053688","Janibacter terrae NBRC 107854 = JCM 12887"]]},{"id":"NCBITaxon:108015","l":"Bradyrhizobium yuanmingense","na":3,"nb":4,"a":[["rhizosphere-envo-00005801.html","rhizosphere"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["NCBITaxon%3A108015","Bradyrhizobium yuanmingense"],["NCBITaxon%3A1128326","Bradyrhizobium yuanmingense CCBAU 05623"],["NCBITaxon%3A1128327","Bradyrhizobium yuanmingense CCBAU 25021"],["NCBITaxon%3A1128328","Bradyrhizobium yuanmingense CCBAU 35157"]]},{"id":"NCBITaxon:1249","l":"Weissella paramesenteroides","na":3,"nb":4,"a":[["cecum-bto-0000166.html","cecum"],["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"]],"b":[["NCBITaxon%3A1930076","Leuconostoc sp."],["NCBITaxon%3A46256","Weissella hellenica"],["NCBITaxon%3A1249","Weissella paramesenteroides"],["NCBITaxon%3A585506","Weissella paramesenteroides ATCC 33313"]]},{"id":"NCBITaxon:129338","l":"Geobacillus subterraneus","na":3,"nb":4,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A129338","Geobacillus subterraneus"],["NCBITaxon%3A1382357","Geobacillus subterraneus PSS2"],["NCBITaxon%3A1117704","Geobacillus subterraneus subsp. aromaticivorans"],["NCBITaxon%3A1690415","Geobacillus subterraneus subsp. subterraneus"]]},{"id":"NCBITaxon:131111","l":"Schaalia turicensis","na":4,"nb":3,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["skin-of-body-uberon-0002097.html","skin of body"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"]],"b":[["NCBITaxon%3A131111","Schaalia turicensis"],["NCBITaxon%3A883077","Schaalia turicensis ACS-279-V-Col4"],["NCBITaxon%3A184870","Varibaculum cambriense"]]},{"id":"NCBITaxon:1328866","l":"Rathayibacter festucae DSM 15932","na":3,"nb":4,"a":[["leaf-po-0025034.html","leaf"],["plant-gall-po-0025626.html","plant gall"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["NCBITaxon%3A33941","Geobacillus thermoleovorans"],["NCBITaxon%3A278196","Geobacillus thermoleovorans subsp. stromboliensis"],["NCBITaxon%3A110937","Rathayibacter festucae"],["NCBITaxon%3A1328866","Rathayibacter festucae DSM 15932"]]},{"id":"NCBITaxon:135083","l":"Centipeda noxia","na":4,"nb":3,"a":[["dorsum-bto-0001713.html","dorsum"],["saliva-bto-0001202.html","saliva"],["sgs-cell-bto-0001210.html","SGS cell"],["tongue-bto-0001385.html","tongue"]],"b":[["NCBITaxon%3A135083","Centipeda noxia"],["NCBITaxon%3A585503","Centipeda noxia ATCC 43541"],["NCBITaxon%3A702437","Centipeda noxia F0398"]]},{"id":"NCBITaxon:1353","l":"Enterococcus gallinarum","na":3,"nb":4,"a":[["foregut-bto-0000507.html","foregut"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A1353","Enterococcus gallinarum"],["NCBITaxon%3A565653","Enterococcus gallinarum EG2"],["NCBITaxon%3A1357296","Enterococcus gallinarum EGD-AAK12"],["NCBITaxon%3A1218091","Enterococcus gallinarum NBRC 100675"]]},{"id":"NCBITaxon:1472","l":"Paenibacillus pabuli","na":4,"nb":3,"a":[["animal-house-envo-00003040.html","animal house"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A1397","Niallia circulans"],["NCBITaxon%3A1472","Paenibacillus pabuli"],["NCBITaxon%3A1349782","Paenibacillus pabuli NBRC 13638"]]},{"id":"NCBITaxon:1479","l":"Bacillus smithii","na":4,"nb":3,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A1479","Bacillus smithii"],["NCBITaxon%3A665952","Bacillus smithii 7_3_47FAA"],["NCBITaxon%3A1220590","Bacillus smithii NBRC 15311"]]},{"id":"NCBITaxon:148604","l":"Limosilactobacillus ingluviei","na":4,"nb":3,"a":[["animal-house-envo-00003040.html","animal house"],["organic-waste-material-envo-00002873.html","organic waste material"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["NCBITaxon%3A148604","Limosilactobacillus ingluviei"],["NCBITaxon%3A1423760","Limosilactobacillus ingluviei DSM 15946"],["NCBITaxon%3A1203076","Limosilactobacillus ingluviei str. Autruche 4"]]},{"id":"NCBITaxon:1519","l":"Clostridium tyrobutyricum","na":3,"nb":4,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A1519","Clostridium tyrobutyricum"],["NCBITaxon%3A1408889","Clostridium tyrobutyricum DIVETGP"],["NCBITaxon%3A1121342","Clostridium tyrobutyricum DSM 2637 = ATCC 25755 = JCM 11008"],["NCBITaxon%3A1212547","Clostridium tyrobutyricum UC7086"]]},{"id":"NCBITaxon:1588","l":"Lentilactobacillus hilgardii","na":3,"nb":4,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A1588","Lentilactobacillus hilgardii"],["NCBITaxon%3A525310","Lentilactobacillus hilgardii ATCC 27305"],["NCBITaxon%3A1423757","Lentilactobacillus hilgardii DSM 20176 = ATCC 8290"],["NCBITaxon%3A1580","Levilactobacillus brevis"]]},{"id":"NCBITaxon:1622","l":"Ligilactobacillus murinus","na":4,"nb":3,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"],["animal-litter-envo-00002191.html","animal litter"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["NCBITaxon%3A1622","Ligilactobacillus murinus"],["NCBITaxon%3A1235801","Ligilactobacillus murinus ASF361"],["NCBITaxon%3A1423772","Ligilactobacillus murinus DSM 20452 = NBRC 14221"]]},{"id":"NCBITaxon:164","l":"Treponema pectinovorum","na":4,"nb":3,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["pig-manure-envo-00003860.html","pig manure"],["skin-environment-envo-2100003.html","skin environment"],["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["NCBITaxon%3A164","Treponema pectinovorum"],["NCBITaxon%3A83524","Treponema pectinovorum 8:A:33768"],["NCBITaxon%3A1081905","Treponema pectinovorum VPI D-36DR-2"]]},{"id":"NCBITaxon:1697","l":"Corynebacterium ammoniagenes","na":3,"nb":4,"a":[["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A1697","Corynebacterium ammoniagenes"],["NCBITaxon%3A649754","Corynebacterium ammoniagenes DSM 20306"],["NCBITaxon%3A1255706","Corynebacterium ammoniagenes ws_2211"],["NCBITaxon%3A1705","Corynebacterium stationis"]]},{"id":"NCBITaxon:1961","l":"Streptomyces virginiae","na":3,"nb":4,"a":[["clay-envo-00002982.html","clay"],["plain-envo-00000086.html","plain"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A1535204","Metabacillus endolithicus"],["NCBITaxon%3A67381","Streptomyces violascens"],["NCBITaxon%3A1961","Streptomyces virginiae"],["NCBITaxon%3A3478784","Streptomyces virginiae subsp. lipoxae (nom. nud.)"]]},{"id":"NCBITaxon:28115","l":"Porphyromonas macacae","na":4,"nb":3,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"],["mud-envo-01000001.html","mud"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A28115","Porphyromonas macacae"],["NCBITaxon%3A1122974","Porphyromonas macacae DSM 20710 = JCM 13914"],["NCBITaxon%3A1236521","Porphyromonas macacae JCM 15984"]]},{"id":"NCBITaxon:321318","l":"Dietzia cinnamea","na":3,"nb":4,"a":[["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["NCBITaxon%3A321318","Dietzia cinnamea"],["NCBITaxon%3A1223524","Dietzia cinnamea NBRC 102147"],["NCBITaxon%3A910954","Dietzia cinnamea P4"],["NCBITaxon%3A37915","Dietzia maris"]]},{"id":"NCBITaxon:36808","l":"Corynebacterium bovis","na":3,"nb":4,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["NCBITaxon%3A36808","Corynebacterium bovis"],["NCBITaxon%3A927655","Corynebacterium bovis DSM 20582 = CIP 54.80"],["NCBITaxon%3A272240","Gulosibacter faecalis"],["NCBITaxon%3A1915061","Pseudoclavibacter sp."]]},{"id":"NCBITaxon:398578","l":"Delftia acidovorans SPH-1","na":4,"nb":3,"a":[["aquifer-envo-00012408.html","aquifer"],["large-river-biome-envo-00000887.html","large river biome"],["sewage-envo-00002018.html","sewage"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["NCBITaxon%3A80866","Delftia acidovorans"],["NCBITaxon%3A1218107","Delftia acidovorans NBRC 14950"],["NCBITaxon%3A398578","Delftia acidovorans SPH-1"]]},{"id":"NCBITaxon:400946","l":"Wohlfahrtiimonas chitiniclastica","na":3,"nb":4,"a":[["foot-bto-0000476.html","foot"],["pancreas-bto-0000988.html","pancreas"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A472","Acinetobacter sp."],["NCBITaxon%3A400946","Wohlfahrtiimonas chitiniclastica"],["NCBITaxon%3A1123502","Wohlfahrtiimonas chitiniclastica DSM 18708"],["NCBITaxon%3A1261130","Wohlfahrtiimonas chitiniclastica SH04"]]},{"id":"NCBITaxon:43771","l":"Corynebacterium urealyticum","na":3,"nb":4,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"]],"b":[["NCBITaxon%3A43771","Corynebacterium urealyticum"],["NCBITaxon%3A504474","Corynebacterium urealyticum DSM 7109"],["NCBITaxon%3A1267754","Corynebacterium urealyticum DSM 7111"],["NCBITaxon%3A401472","Corynebacterium ureicelerivorans"]]},{"id":"NCBITaxon:51665","l":"Aerococcus urinaeequi","na":4,"nb":3,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A51665","Aerococcus urinaeequi"],["NCBITaxon%3A1120952","Aerococcus urinaeequi DSM 20341 = CCUG 28094"],["NCBITaxon%3A1377","Aerococcus viridans"]]},{"id":"NCBITaxon:59505","l":"Actinotignum schaalii","na":4,"nb":3,"a":[["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["NCBITaxon%3A59505","Actinotignum schaalii"],["NCBITaxon%3A1120932","Actinotignum schaalii DSM 15541"],["NCBITaxon%3A883067","Actinotignum schaalii FB123-CNA-2"]]},{"id":"NCBITaxon:678","l":"Vibrio sp.","na":4,"nb":3,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["aquaculture-farm-envo-03600074.html","aquaculture farm"],["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["NCBITaxon%3A2077090","Vibrio gangliei"],["NCBITaxon%3A678","Vibrio sp."],["NCBITaxon%3A1046128","Vibrio zhanjiangensis"]]},{"id":"NCBITaxon:1019","l":"Capnocytophaga sputigena","na":3,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"],["biotope-envo-00002036.html","biotope"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A1019","Capnocytophaga sputigena"],["NCBITaxon%3A553177","Capnocytophaga sputigena ATCC 33612"],["NCBITaxon%3A1073354","Capnocytophaga sputigena CC21_001D"]]},{"id":"NCBITaxon:104102","l":"Acetobacter tropicalis","na":3,"nb":3,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"],["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A104102","Acetobacter tropicalis"],["NCBITaxon%3A749388","Acetobacter tropicalis NBRC 101654"],["NCBITaxon%3A1307920","Acetobacter tropicalis NRIC 0312"]]},{"id":"NCBITaxon:1108","l":"Chloroflexus aurantiacus","na":3,"nb":3,"a":[["rhizosphere-envo-00005801.html","rhizosphere"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["NCBITaxon%3A1108","Chloroflexus aurantiacus"],["NCBITaxon%3A324602","Chloroflexus aurantiacus J-10-fl"],["NCBITaxon%3A480224","Chloroflexus aurantiacus Y-400-fl"]]},{"id":"NCBITaxon:119224","l":"Streptococcus phocae","na":3,"nb":3,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"]],"b":[["NCBITaxon%3A119224","Streptococcus phocae"],["NCBITaxon%3A1698290","Streptococcus phocae subsp. phocae"],["NCBITaxon%3A1000562","Streptococcus phocae subsp. salmonis"]]},{"id":"NCBITaxon:1278308","l":"[Zimmermannella] faecalis ATCC 13722","na":3,"nb":3,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["fecal-environment-envo-01001029.html","fecal environment"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A272240","Gulosibacter faecalis"],["NCBITaxon%3A1915061","Pseudoclavibacter sp."],["NCBITaxon%3A1278308","[Zimmermannella] faecalis ATCC 13722"]]},{"id":"NCBITaxon:1329","l":"Streptococcus canis","na":3,"nb":3,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["NCBITaxon%3A1329","Streptococcus canis"],["NCBITaxon%3A482234","Streptococcus canis FSL Z3-227"],["NCBITaxon%3A1306","Streptococcus sp."]]},{"id":"NCBITaxon:1381","l":"Atopobium minutum","na":3,"nb":3,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["geographic-feature-envo-00000000.html","geographic feature"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A54007","Anaerococcus octavius"],["NCBITaxon%3A1381","Atopobium minutum"],["NCBITaxon%3A997872","Atopobium minutum 10063974"]]},{"id":"NCBITaxon:1423830","l":"Lacticaseibacillus paracasei subsp. tolerans DSM 20258","na":3,"nb":3,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A1597","Lacticaseibacillus paracasei"],["NCBITaxon%3A113557","Lacticaseibacillus paracasei subsp. tolerans"],["NCBITaxon%3A1423830","Lacticaseibacillus paracasei subsp. tolerans DSM 20258"]]},{"id":"NCBITaxon:153026","l":"Desulforegula conservatrix","na":3,"nb":3,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["low-tide-zone-envo-00000319.html","low tide zone"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["NCBITaxon%3A153026","Desulforegula conservatrix"],["NCBITaxon%3A1121417","Desulforegula conservatrix DSM 13527"],["NCBITaxon%3A1304885","Desulforegula conservatrix Mb1Pa"]]},{"id":"NCBITaxon:1534","l":"Clostridium kluyveri","na":3,"nb":3,"a":[["reservoir-envo-00000025.html","reservoir"],["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"]],"b":[["NCBITaxon%3A1534","Clostridium kluyveri"],["NCBITaxon%3A431943","Clostridium kluyveri DSM 555"],["NCBITaxon%3A583346","Clostridium kluyveri NBRC 12016"]]},{"id":"NCBITaxon:154","l":"Winmispira thermophila","na":3,"nb":3,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["lagoon-envo-00000038.html","lagoon"],["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A154","Winmispira thermophila"],["NCBITaxon%3A665571","Winmispira thermophila DSM 6192"],["NCBITaxon%3A869211","Winmispira thermophila DSM 6578"]]},{"id":"NCBITaxon:1570","l":"Halobacillus halophilus","na":3,"nb":3,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["NCBITaxon%3A1570","Halobacillus halophilus"],["NCBITaxon%3A866895","Halobacillus halophilus DSM 2266"],["NCBITaxon%3A56800","Halobacillus sp."]]},{"id":"NCBITaxon:2041036","l":"Corynebacterium gottingense","na":3,"nb":3,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["co-culture-habitatmech-bacdive-ff945d8a69.html","Co-culture"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A2041036","Corynebacterium gottingense"],["NCBITaxon%3A2026255","Corynebacterium hadale"],["NCBITaxon%3A156978","Corynebacterium imitans"]]},{"id":"NCBITaxon:239935","l":"Akkermansia muciniphila","na":3,"nb":3,"a":[["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["secretion-bto-0002979.html","secretion"]],"b":[["NCBITaxon%3A239935","Akkermansia muciniphila"],["NCBITaxon%3A349741","Akkermansia muciniphila ATCC BAA-835"],["NCBITaxon%3A1263034","Akkermansia muciniphila CAG:154"]]},{"id":"NCBITaxon:28091","l":"Neisseria weaveri","na":3,"nb":3,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"]],"b":[["NCBITaxon%3A28091","Neisseria weaveri"],["NCBITaxon%3A1051972","Neisseria weaveri ATCC 51223"],["NCBITaxon%3A1051985","Neisseria weaveri LMG 5135"]]},{"id":"NCBITaxon:301375","l":"Methanothrix harundinacea","na":3,"nb":3,"a":[["small-river-biome-envo-00000890.html","small river biome"],["shoreline-envo-00000486.html","shoreline"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["NCBITaxon%3A301375","Methanothrix harundinacea"],["NCBITaxon%3A1110509","Methanothrix harundinacea 6Ac"],["NCBITaxon%3A1127228","Methanothrix harundinacea 8Ac"]]},{"id":"NCBITaxon:360807","l":"Roseburia inulinivorans","na":3,"nb":3,"a":[["pig-manure-envo-00003860.html","pig manure"],["tropical-envo-01000204.html","tropical"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A360807","Roseburia inulinivorans"],["NCBITaxon%3A1263105","Roseburia inulinivorans CAG:15"],["NCBITaxon%3A622312","Roseburia inulinivorans DSM 16841"]]},{"id":"NCBITaxon:467210","l":"Lachnoanaerobaculum saburreum","na":3,"nb":3,"a":[["archeological-site-envo-00000564.html","archeological site"],["animal-habitation-envo-00005803.html","animal habitation"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["NCBITaxon%3A467210","Lachnoanaerobaculum saburreum"],["NCBITaxon%3A887325","Lachnoanaerobaculum saburreum DSM 3986"],["NCBITaxon%3A1095750","Lachnoanaerobaculum saburreum F0468"]]},{"id":"NCBITaxon:501571","l":"Butyricicoccus pullicaecorum","na":3,"nb":3,"a":[["poultry-litter-envo-00002192.html","poultry litter"],["urban-biome-envo-01000249.html","urban biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["NCBITaxon%3A501571","Butyricicoccus pullicaecorum"],["NCBITaxon%3A1203606","Butyricicoccus pullicaecorum 1.2"],["NCBITaxon%3A1121128","Butyricicoccus pullicaecorum DSM 23266"]]},{"id":"NCBITaxon:51663","l":"Pediococcus damnosus","na":3,"nb":3,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["blast-cell-bto-0000125.html","blast cell"]],"b":[["NCBITaxon%3A51663","Pediococcus damnosus"],["NCBITaxon%3A1089442","Pediococcus damnosus 9-6b"],["NCBITaxon%3A1448143","Pediococcus damnosus LMG 28219"]]},{"id":"NCBITaxon:83655","l":"Leclercia adecarboxylata","na":3,"nb":3,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["NCBITaxon%3A42895","Enterobacter sp."],["NCBITaxon%3A83655","Leclercia adecarboxylata"],["NCBITaxon%3A911008","Leclercia adecarboxylata ATCC 23216 = NBRC 102595"]]},{"id":"NCBITaxon:186817","l":"Bacillaceae","na":2,"nb":40935,"a":[["leaf-bto-0000713.html","leaf"],["trachea-bto-0001388.html","trachea"]],"b":[["NCBITaxon%3A3054939","Aciduricibacillus chroicocephali"],["NCBITaxon%3A279215","Aeribacillus alveayuensis"],["NCBITaxon%3A1868734","Aeribacillus composti"],["NCBITaxon%3A2078952","Aeribacillus kexueae"],["NCBITaxon%3A33936","Aeribacillus pallidus"],["NCBITaxon%3A1196032","Aeribacillus pallidus CIC9"]]},{"id":"NCBITaxon:1883","l":"Streptomyces","na":2,"nb":31267,"a":[["crop-bto-0000301.html","crop"],["lab-synthesis-habitatmech-bacdive-0e92e77cd4.html","Lab-synthesis"]],"b":[["NCBITaxon%3A208445","Amycolatopsis tolypomycina"],["NCBITaxon%3A1470348","Candidatus Streptomyces massiliensis"],["NCBITaxon%3A1211820","Candidatus Streptomyces massiliensis AP10"],["NCBITaxon%3A371608","Candidatus Streptomyces philanthi"],["NCBITaxon%3A1563718","Candidatus Streptomyces philanthi bv. albopilosus"],["NCBITaxon%3A371609","Candidatus Streptomyces philanthi bv. barbiger"]]},{"id":"NCBITaxon:186826","l":"Lactobacillales","na":2,"nb":15185,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["stem-bto-0001300.html","stem"]],"b":[["NCBITaxon%3A46125","Abiotrophia defectiva"],["NCBITaxon%3A592010","Abiotrophia defectiva ATCC 49176"],["NCBITaxon%3A1410024","Abiotrophia defectiva HMP_JCVI_SC0171"],["NCBITaxon%3A1410025","Abiotrophia defectiva HMP_JCVI_SC0235"],["NCBITaxon%3A191553","Abiotrophia para-adiacens"],["NCBITaxon%3A76631","Abiotrophia sp."]]},{"id":"NCBITaxon:468","l":"Moraxellaceae","na":2,"nb":9079,"a":[["head-bto-0000282.html","head"],["pseudostem-bto-0005992.html","pseudostem"]],"b":[["NCBITaxon%3A1673609","Acinetobacter albensis"],["NCBITaxon%3A2942470","Acinetobacter amyesii"],["NCBITaxon%3A363192","Acinetobacter antiviralis"],["NCBITaxon%3A1229165","Acinetobacter apis"],["NCBITaxon%3A2605383","Acinetobacter baretiae"],["NCBITaxon%3A470","Acinetobacter baumannii"]]},{"id":"NCBITaxon:1162","l":"Nostocaceae","na":2,"nb":8565,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"]],"b":[["NCBITaxon%3A3127779","Ahomia kamrupensis"],["NCBITaxon%3A3036653","Ahomia kamrupensis ASM11-PS"],["NCBITaxon%3A3127780","Ahomia purpurea"],["NCBITaxon%3A3036654","Ahomia purpurea NP-KLS-5A-PS"],["NCBITaxon%3A3449825","Ahomia purpurea RAT4D-PS"],["NCBITaxon%3A3127781","Ahomia soli"]]},{"id":"NCBITaxon:59201","l":"Salmonella enterica subsp. enterica","na":2,"nb":4549,"a":[["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A486987","Salmonella enterica subsp. enterica serovar '02-6026 18:1 v-z-Arizona'"],["NCBITaxon%3A2978376","Salmonella enterica subsp. enterica serovar 11:b:1,7"],["NCBITaxon%3A2808980","Salmonella enterica subsp. enterica serovar 11:r:-"],["NCBITaxon%3A3367019","Salmonella enterica subsp. enterica serovar 13,22:y:-"]]},{"id":"NCBITaxon:135624","l":"Aeromonadales","na":2,"nb":3684,"a":[["trachea-bto-0001388.html","trachea"],["urine-bto-0001419.html","urine"]],"b":[["NCBITaxon%3A1948889","Aeromonadaceae bacterium"],["NCBITaxon%3A1546596","Aeromonadaceae bacterium 124L2"],["NCBITaxon%3A1546597","Aeromonadaceae bacterium 126H"],["NCBITaxon%3A1546598","Aeromonadaceae bacterium 129C"],["NCBITaxon%3A1546599","Aeromonadaceae bacterium 130I2"],["NCBITaxon%3A1546600","Aeromonadaceae bacterium 136C"]]},{"id":"NCBITaxon:76892","l":"Caulobacteraceae","na":2,"nb":2633,"a":[["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["NCBITaxon%3A81457","alpha proteobacterium MBIC3025"],["NCBITaxon%3A81458","alpha proteobacterium MBIC3029"],["NCBITaxon%3A81442","alpha proteobacterium MBIC3032"],["NCBITaxon%3A81443","alpha proteobacterium MBIC3033"],["NCBITaxon%3A81441","alpha proteobacterium MBIC3034"],["NCBITaxon%3A81444","alpha proteobacterium MBIC3036"]]},{"id":"NCBITaxon:1129","l":"Synechococcus","na":2,"nb":2170,"a":[["column-bto-0005692.html","column"],["hemolymph-bto-0000572.html","hemolymph"]],"b":[["NCBITaxon%3A2081909","Anacystis marina"],["NCBITaxon%3A2081929","Anacystis marina UTEX LB 1634"],["NCBITaxon%3A1522304","Candidatus Synechococcus calcipolaris"],["NCBITaxon%3A1497997","Candidatus Synechococcus calcipolaris G9"],["NCBITaxon%3A431041","Candidatus Synechococcus spongiarum"],["NCBITaxon%3A1608213","Candidatus Synechococcus spongiarum 142"]]},{"id":"NCBITaxon:357","l":"Agrobacterium","na":2,"nb":1466,"a":[["stem-bto-0001300.html","stem"],["trunk-bto-0001493.html","trunk"]],"b":[["NCBITaxon%3A76979","Agrobacterium agile"],["NCBITaxon%3A147266","Agrobacterium albertimagni"],["NCBITaxon%3A1156935","Agrobacterium albertimagni AOL15"],["NCBITaxon%3A1585697","Agrobacterium arsenijevicii"],["NCBITaxon%3A44155","Agrobacterium aurantiacum"],["NCBITaxon%3A2052828","Agrobacterium bohemicum"]]},{"id":"NCBITaxon:203682","l":"Planctomycetota","na":2,"nb":1406,"a":[["column-bto-0005692.html","column"],["crop-bto-0000301.html","crop"]],"b":[["NCBITaxon%3A1930276","Adhaeretor mobilis"],["NCBITaxon%3A2862453","Adhaeretor sp."],["NCBITaxon%3A3454464","Aeoliella fuhlenseeensis"],["NCBITaxon%3A2527972","Aeoliella mucimassa"],["NCBITaxon%3A2795800","Aeoliella sp."],["NCBITaxon%3A2954799","Aeoliella straminimaris"]]},{"id":"NCBITaxon:528","l":"Ochrobactrum","na":2,"nb":1276,"a":[["pitcher-bto-0001069.html","pitcher"],["small-intestine-bto-0000651.html","small intestine"]],"b":[["NCBITaxon%3A529","Brucella anthropi"],["NCBITaxon%3A659015","Brucella daejeonensis"],["NCBITaxon%3A52132","Brucella sp."],["NCBITaxon%3A246569","marine bacterium 13737"],["NCBITaxon%3A259359","microbial fuel cell bacterium ISO1"],["NCBITaxon%3A2993941","Ochrobactrum chromiisoli"]]},{"id":"NCBITaxon:2013","l":"Nocardiopsis","na":2,"nb":1175,"a":[["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["NCBITaxon%3A2838703","Candidatus Nocardiopsis merdipullorum"],["NCBITaxon%3A220378","Nocardiopsis aegyptia"],["NCBITaxon%3A2831968","Nocardiopsis akebiae"],["NCBITaxon%3A1236269","Nocardiopsis akesuensis"],["NCBITaxon%3A53437","Nocardiopsis alba"],["NCBITaxon%3A1205910","Nocardiopsis alba ATCC BAA-2165"]]},{"id":"NCBITaxon:816","l":"Bacteroides","na":2,"nb":1027,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["colon-bto-0000269.html","colon"]],"b":[["NCBITaxon%3A85831","Bacteroides acidifaciens"],["NCBITaxon%3A1235814","Bacteroides acidifaciens JCM 10556"],["NCBITaxon%3A1841855","Bacteroides bouchesdurhonensis"],["NCBITaxon%3A47678","Bacteroides caccae"],["NCBITaxon%3A411901","Bacteroides caccae ATCC 43185"],["NCBITaxon%3A1263037","Bacteroides caccae CAG:21"]]},{"id":"NCBITaxon:171552","l":"Prevotellaceae","na":2,"nb":1003,"a":[["colon-bto-0000269.html","colon"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A671218","Alloprevotella rava"],["NCBITaxon%3A524034","Alloprevotella rava F0020"],["NCBITaxon%3A679199","Alloprevotella rava F0323"],["NCBITaxon%3A1872471","Alloprevotella sp."],["NCBITaxon%3A2338072","Alloprevotella sp. A1798"],["NCBITaxon%3A2594464","Alloprevotella sp. CON1"]]},{"id":"NCBITaxon:1678","l":"Bifidobacterium","na":2,"nb":993,"a":[["ileum-bto-0000620.html","ileum"],["juvenile-bto-0002168.html","juvenile"]],"b":[["NCBITaxon%3A638619","Bifidobacterium actinocoloniiforme"],["NCBITaxon%3A1437605","Bifidobacterium actinocoloniiforme DSM 22766"],["NCBITaxon%3A1680","Bifidobacterium adolescentis"],["NCBITaxon%3A367928","Bifidobacterium adolescentis ATCC 15703"],["NCBITaxon%3A1263057","Bifidobacterium adolescentis CAG:119"],["NCBITaxon%3A1410644","Bifidobacterium adolescentis DSM 20087"]]},{"id":"NCBITaxon:209","l":"Helicobacter","na":2,"nb":974,"a":[["cecum-mucosa-bto-0000213.html","cecum mucosa"],["mucosa-bto-0000886.html","mucosa"]],"b":[["NCBITaxon%3A2838618","Candidatus Helicobacter avicola"],["NCBITaxon%3A2838619","Candidatus Helicobacter avistercoris"],["NCBITaxon%3A104629","Candidatus Helicobacter bovis"],["NCBITaxon%3A167880","Candidatus Helicobacter cebus"],["NCBITaxon%3A146753","cilia-associated respiratory bacterium B6"],["NCBITaxon%3A212","Helicobacter acinonychis"]]},{"id":"NCBITaxon:203683","l":"Planctomycetia","na":2,"nb":969,"a":[["column-bto-0005692.html","column"],["crop-bto-0000301.html","crop"]],"b":[["NCBITaxon%3A1930276","Adhaeretor mobilis"],["NCBITaxon%3A2862453","Adhaeretor sp."],["NCBITaxon%3A3454464","Aeoliella fuhlenseeensis"],["NCBITaxon%3A2527972","Aeoliella mucimassa"],["NCBITaxon%3A2795800","Aeoliella sp."],["NCBITaxon%3A2954799","Aeoliella straminimaris"]]},{"id":"NCBITaxon:84567","l":"Pedobacter","na":2,"nb":889,"a":[["air-envo-00002005.html","air"],["glacier-envo-00000133.html","glacier"]],"b":[["NCBITaxon%3A3121371","Candidatus Pedobacter colombiensis"],["NCBITaxon%3A2807681","Nubsella sp. EM7"],["NCBITaxon%3A1325323","Nubsella sp. EsD18"],["NCBITaxon%3A1362345","Nubsella sp. Ri3Pt_4400"],["NCBITaxon%3A151894","Pedobacter africanus"],["NCBITaxon%3A454586","Pedobacter agri"]]},{"id":"NCBITaxon:118969","l":"Legionellales","na":2,"nb":803,"a":[["hemolymph-bto-0000572.html","hemolymph"],["skin-bto-0001253.html","skin"]],"b":[["NCBITaxon%3A254246","Aquicella lusitana"],["NCBITaxon%3A254247","Aquicella siphonis"],["NCBITaxon%3A1872583","Aquicella sp."],["NCBITaxon%3A868357","Aquicella sp. 1(27-11)"],["NCBITaxon%3A1084584","Aquicella sp. enrichment culture clone B21"],["NCBITaxon%3A1136692","Aquicella sp. enrichment culture clone CTBE CDB1001G12"]]},{"id":"NCBITaxon:551","l":"Erwinia","na":2,"nb":743,"a":[["pseudostem-bto-0005992.html","pseudostem"],["trunk-bto-0001493.html","trunk"]],"b":[["NCBITaxon%3A252393","Candidatus Erwinia dacicola"],["NCBITaxon%3A1922217","Candidatus Erwinia haradaeae"],["NCBITaxon%3A3141250","Candidatus Erwinia impunctatus"],["NCBITaxon%3A556","Dickeya chrysanthemi"],["NCBITaxon%3A3239803","Erwinia aeris"],["NCBITaxon%3A552","Erwinia amylovora"]]},{"id":"NCBITaxon:165695","l":"Sphingobium","na":2,"nb":663,"a":[["juvenile-bto-0002168.html","juvenile"],["leaf-bto-0000713.html","leaf"]],"b":[["NCBITaxon%3A86193","Sphingobium abikonense"],["NCBITaxon%3A1219036","Sphingobium abikonense NBRC 16140"],["NCBITaxon%3A2933566","Sphingobium agri"],["NCBITaxon%3A3341828","Sphingobium agrisoli"],["NCBITaxon%3A2008318","Sphingobium algorifonticola"],["NCBITaxon%3A135719","Sphingobium amiense"]]},{"id":"NCBITaxon:29580","l":"Janthinobacterium","na":2,"nb":640,"a":[["water-ice-envo-01000277.html","water ice"],["glacier-envo-00000133.html","glacier"]],"b":[["NCBITaxon%3A2985511","Janthinobacterium aestuarii"],["NCBITaxon%3A55508","Janthinobacterium agaricidamnosum"],["NCBITaxon%3A1349767","Janthinobacterium agaricidamnosum NBRC 102515 = DSM 9628"],["NCBITaxon%3A1259339","Janthinobacterium algoris"],["NCBITaxon%3A3424188","Janthinobacterium amylolyticum"],["NCBITaxon%3A2751477","Janthinobacterium aquaticum"]]},{"id":"NCBITaxon:41295","l":"Rhodospirillaceae","na":2,"nb":528,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["NCBITaxon%3A1709002","Aerophototrophica crusticola"],["NCBITaxon%3A2811398","Aerophototrophica sp."],["NCBITaxon%3A173005","alpha proteobacterium BiesA12"],["NCBITaxon%3A173006","alpha proteobacterium BiesA14"],["NCBITaxon%3A173007","alpha proteobacterium BiesA23"],["NCBITaxon%3A173008","alpha proteobacterium BiesA51"]]},{"id":"NCBITaxon:96492","l":"Frigoribacterium","na":2,"nb":431,"a":[["water-ice-envo-01000277.html","water ice"],["glacier-envo-00000133.html","glacier"]],"b":[["NCBITaxon%3A3402170","Frigoribacterium adelgis"],["NCBITaxon%3A132924","Frigoribacterium aff. faeni A-1/C-an/E"],["NCBITaxon%3A1522176","Frigoribacterium endophyticum"],["NCBITaxon%3A145483","Frigoribacterium faeni"],["NCBITaxon%3A1616784","Frigoribacterium salinisoli"],["NCBITaxon%3A1880915","Frigoribacterium sp."]]},{"id":"NCBITaxon:75787","l":"Rhodocyclaceae","na":2,"nb":390,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["NCBITaxon%3A182180","Aromatoleum anaerobium"],["NCBITaxon%3A551760","Aromatoleum aromaticum"],["NCBITaxon%3A76114","Aromatoleum aromaticum EbN1"],["NCBITaxon%3A76115","Aromatoleum bremense"],["NCBITaxon%3A200254","Aromatoleum buckelii"],["NCBITaxon%3A75796","Aromatoleum diolicum"]]},{"id":"NCBITaxon:255475","l":"Aurantimonadaceae","na":2,"nb":333,"a":[["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"]],"b":[["NCBITaxon%3A2606717","Antarcticirhabdus aurantiaca"],["NCBITaxon%3A1978523","Aurantimonadaceae bacterium"],["NCBITaxon%3A766839","Aurantimonadaceae bacterium 08WSH1-24"],["NCBITaxon%3A532743","Aurantimonadaceae bacterium ACEMC 6-4"],["NCBITaxon%3A1556364","Aurantimonadaceae bacterium CC13I"],["NCBITaxon%3A2998450","Aurantimonadaceae bacterium DY-R2A-11"]]},{"id":"NCBITaxon:104267","l":"Tenacibaculum","na":2,"nb":295,"a":[["column-bto-0005692.html","column"],["hemolymph-bto-0000572.html","hemolymph"]],"b":[["NCBITaxon%3A3141958","Candidatus Tenacibaculum medusae"],["NCBITaxon%3A413713","Tenacibaculum adriaticum"],["NCBITaxon%3A362781","Tenacibaculum aestuarii"],["NCBITaxon%3A2006131","Tenacibaculum aestuariivivum"],["NCBITaxon%3A1908389","Tenacibaculum agarivorans"],["NCBITaxon%3A426481","Tenacibaculum aiptasiae"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":2,"nb":264,"a":[["watercourse-envo-00000029.html","watercourse"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A663","Vibrio alginolyticus"],["NCBITaxon%3A29494","Vibrio furnissii"],["NCBITaxon%3A675811","Vibrio furnissii CIP 102972"],["NCBITaxon%3A670","Vibrio parahaemolyticus"],["NCBITaxon%3A1238231","Vibrio parahaemolyticus 10290"],["NCBITaxon%3A1238195","Vibrio parahaemolyticus 10296"]]},{"id":"NCBITaxon:487","l":"Neisseria meningitidis","na":2,"nb":232,"a":[["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["NCBITaxon%3A487","Neisseria meningitidis"],["NCBITaxon%3A374833","Neisseria meningitidis 053442"],["NCBITaxon%3A926508","Neisseria meningitidis 1076"],["NCBITaxon%3A926533","Neisseria meningitidis 1101"],["NCBITaxon%3A926506","Neisseria meningitidis 1102"],["NCBITaxon%3A926507","Neisseria meningitidis 115 CB V1"]]},{"id":"NCBITaxon:119532","l":"Microcoleus vaginatus","na":2,"nb":186,"a":[["desert-biome-envo-01000179.html","desert biome"],["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A2290990","Microcoleus cf. vaginatus Ru-6-12"],["NCBITaxon%3A119532","Microcoleus vaginatus"],["NCBITaxon%3A3034630","Microcoleus vaginatus 98"],["NCBITaxon%3A2493238","Microcoleus vaginatus ACT688"],["NCBITaxon%3A3459536","Microcoleus vaginatus APE406"],["NCBITaxon%3A669364","Microcoleus vaginatus ASU LT04"]]},{"id":"NCBITaxon:1033","l":"Afipia","na":2,"nb":182,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"]],"b":[["NCBITaxon%3A151414","Afipia birgiae"],["NCBITaxon%3A1197906","Afipia birgiae 34632"],["NCBITaxon%3A56946","Afipia broomeae"],["NCBITaxon%3A883078","Afipia broomeae ATCC 49717"],["NCBITaxon%3A40137","Afipia carboxidovorans"],["NCBITaxon%3A1031710","Afipia carboxidovorans OM4"]]},{"id":"NCBITaxon:1234","l":"Nitrospira","na":2,"nb":181,"a":[["crop-bto-0000301.html","crop"],["seedling-bto-0001228.html","seedling"]],"b":[["NCBITaxon%3A3020900","Candidatus Nitrospira allomarina"],["NCBITaxon%3A463288","Candidatus Nitrospira bockiana"],["NCBITaxon%3A1715989","Candidatus Nitrospira inopinata"],["NCBITaxon%3A3721632","Candidatus Nitrospira jureiensis"],["NCBITaxon%3A2652173","Candidatus Nitrospira kreftii"],["NCBITaxon%3A3020899","Candidatus Nitrospira neomarina"]]},{"id":"NCBITaxon:20","l":"Phenylobacterium","na":2,"nb":156,"a":[["crop-bto-0000301.html","crop"],["nectar-bto-0000537.html","nectar"]],"b":[["NCBITaxon%3A1763816","Phenylobacterium aquaticum"],["NCBITaxon%3A457173","Phenylobacterium composti"],["NCBITaxon%3A1122958","Phenylobacterium composti DSM 19425"],["NCBITaxon%3A1298959","Phenylobacterium conjunctum"],["NCBITaxon%3A1914756","Phenylobacterium deserti"],["NCBITaxon%3A279827","Phenylobacterium falsum"]]},{"id":"NCBITaxon:235888","l":"Salinibacterium","na":2,"nb":147,"a":[["water-ice-envo-01000277.html","water ice"],["glacier-envo-00000133.html","glacier"]],"b":[["NCBITaxon%3A1348338","Leifsonia rubra CMS 76R"],["NCBITaxon%3A205941","Salinibacterium amurskyense"],["NCBITaxon%3A191389","Salinibacterium rubrum"],["NCBITaxon%3A1915057","Salinibacterium sp."],["NCBITaxon%3A3439527","Salinibacterium sp. 10G20-15"],["NCBITaxon%3A3444110","Salinibacterium sp. 10J20-7"]]},{"id":"NCBITaxon:830","l":"Butyrivibrio","na":2,"nb":146,"a":[["alimentary-canal-bto-0000058.html","alimentary canal"],["colon-bto-0000269.html","colon"]],"b":[["NCBITaxon%3A129556","Butyrivibrio cf. fibrisolvens EAT6"],["NCBITaxon%3A831","Butyrivibrio fibrisolvens"],["NCBITaxon%3A657324","Butyrivibrio fibrisolvens 16/4"],["NCBITaxon%3A1280697","Butyrivibrio fibrisolvens AB2020"],["NCBITaxon%3A1121131","Butyrivibrio fibrisolvens DSM 3071"],["NCBITaxon%3A1280700","Butyrivibrio fibrisolvens FE2007"]]},{"id":"NCBITaxon:2701","l":"Gardnerella","na":2,"nb":137,"a":[["brain-bto-0000142.html","brain"],["heart-bto-0000562.html","heart"]],"b":[["NCBITaxon%3A3698142","Gardnerella aggregata"],["NCBITaxon%3A3455249","Gardnerella aggregata subsp. aggregata"],["NCBITaxon%3A2749064","Gardnerella aggregata subsp. hutchinsoni"],["NCBITaxon%3A2749049","Gardnerella bivia"],["NCBITaxon%3A3383031","Gardnerella bretellae"],["NCBITaxon%3A2749071","Gardnerella coleohominis"]]},{"id":"NCBITaxon:2836","l":"Bacillariophyta","na":2,"nb":122,"a":[["diatom-associated-environment-habitatmech-gold-1276bea544.html","diatom-associated environment"],["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["NCBITaxon%3A451788","Acanthoceras zachariasii"],["NCBITaxon%3A431333","Achnanthidium minutissimum"],["NCBITaxon%3A49231","Actinocyclus curvatulus"],["NCBITaxon%3A265554","Amphora coffeiformis"],["NCBITaxon%3A1155433","Arcocellulus cornucervis"],["NCBITaxon%3A210441","Asterionella formosa"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":2,"nb":101,"a":[["hospital-envo-00002173.html","hospital"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A817","Bacteroides fragilis"],["NCBITaxon%3A457424","Bacteroides fragilis 3_1_12"],["NCBITaxon%3A862962","Bacteroides fragilis 638R"],["NCBITaxon%3A1308728","Bacteroides fragilis ADL-402"],["NCBITaxon%3A1263046","Bacteroides fragilis CAG:47"],["NCBITaxon%3A1263047","Bacteroides fragilis CAG:558"]]},{"id":"NCBITaxon:28183","l":"Leptospira santarosai","na":2,"nb":72,"a":[["kidney-bto-0000671.html","kidney"],["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A28183","Leptospira santarosai"],["NCBITaxon%3A312171","Leptospira santarosai serovar Alexi"],["NCBITaxon%3A407851","Leptospira santarosai serovar Alice"],["NCBITaxon%3A1049975","Leptospira santarosai serovar Arenal"],["NCBITaxon%3A1085549","Leptospira santarosai serovar Arenal str. 11"],["NCBITaxon%3A1085550","Leptospira santarosai serovar Arenal str. 7"]]},{"id":"NCBITaxon:83554","l":"Chlamydia psittaci","na":2,"nb":69,"a":[["spleen-bto-0001281.html","spleen"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A83554","Chlamydia psittaci"],["NCBITaxon%3A1112252","Chlamydia psittaci 01DC11"],["NCBITaxon%3A1221877","Chlamydia psittaci 01DC12"],["NCBITaxon%3A1112253","Chlamydia psittaci 02DC14"],["NCBITaxon%3A1112254","Chlamydia psittaci 02DC15"],["NCBITaxon%3A1112255","Chlamydia psittaci 02DC16"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":2,"nb":66,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A382","Sinorhizobium meliloti"],["NCBITaxon%3A266834","Sinorhizobium meliloti 1021"],["NCBITaxon%3A1194706","Sinorhizobium meliloti 1A42"],["NCBITaxon%3A1286640","Sinorhizobium meliloti 2011"],["NCBITaxon%3A1041151","Sinorhizobium meliloti 4H41"],["NCBITaxon%3A1194707","Sinorhizobium meliloti 5A14"]]},{"id":"NCBITaxon:76634","l":"Mycetocola","na":2,"nb":66,"a":[["water-ice-envo-01000277.html","water ice"],["glacier-envo-00000133.html","glacier"]],"b":[["NCBITaxon%3A76637","Mycetocola lacteus"],["NCBITaxon%3A699879","Mycetocola manganoxydans"],["NCBITaxon%3A995034","Mycetocola miduiensis"],["NCBITaxon%3A331618","Mycetocola reblochoni"],["NCBITaxon%3A1255698","Mycetocola reblochoni REB411"],["NCBITaxon%3A76636","Mycetocola saprophilus"]]},{"id":"NCBITaxon:103796","l":"Pseudomonas syringae pv. actinidiae","na":2,"nb":65,"a":[["leaf-po-0025034.html","leaf"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A103796","Pseudomonas syringae pv. actinidiae"],["NCBITaxon%3A1094176","Pseudomonas syringae pv. actinidiae CFBP 7286"],["NCBITaxon%3A1108967","Pseudomonas syringae pv. actinidiae CH2010-5"],["NCBITaxon%3A1108968","Pseudomonas syringae pv. actinidiae CH2010-6"],["NCBITaxon%3A1343752","Pseudomonas syringae pv. actinidiae CH2010-7"],["NCBITaxon%3A1343741","Pseudomonas syringae pv. actinidiae Haxa4"]]},{"id":"NCBITaxon:504481","l":"Sediminibacterium","na":2,"nb":65,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["pitcher-bto-0001069.html","pitcher"]],"b":[["NCBITaxon%3A1706829","Sediminibacterium aquarii"],["NCBITaxon%3A413434","Sediminibacterium ginsengisoli"],["NCBITaxon%3A1086393","Sediminibacterium goheungense"],["NCBITaxon%3A1162689","Sediminibacterium lactis"],["NCBITaxon%3A1751071","Sediminibacterium longum"],["NCBITaxon%3A669455","Sediminibacterium magnilacihabitans"]]},{"id":"NCBITaxon:235572","l":"Candidatus Portiera","na":2,"nb":57,"a":[["column-bto-0005692.html","column"],["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["NCBITaxon%3A91844","Candidatus Portiera aleyrodidarum"],["NCBITaxon%3A1386065","Candidatus Portiera aleyrodidarum AD-VLC"],["NCBITaxon%3A1206109","Candidatus Portiera aleyrodidarum BT-B-HRs"],["NCBITaxon%3A1232201","Candidatus Portiera aleyrodidarum BT-Q"],["NCBITaxon%3A1231388","Candidatus Portiera aleyrodidarum BT-Q-AWRs"],["NCBITaxon%3A1239881","Candidatus Portiera aleyrodidarum BT-QVLC"]]},{"id":"NCBITaxon:40544","l":"Sutterella","na":2,"nb":53,"a":[["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"]],"b":[["NCBITaxon%3A2838764","Candidatus Sutterella merdavium"],["NCBITaxon%3A2584944","Sutterella faecalis"],["NCBITaxon%3A1816689","Sutterella massiliensis"],["NCBITaxon%3A2494234","Sutterella megalosphaeroides"],["NCBITaxon%3A293545","Sutterella morbirenis"],["NCBITaxon%3A437898","Sutterella parvirubra"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":2,"nb":47,"a":[["feces-uberon-0001988.html","feces"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A630","Yersinia enterocolitica"],["NCBITaxon%3A947561","Yersinia enterocolitica IP2222"],["NCBITaxon%3A1243181","Yersinia enterocolitica IP 10393"],["NCBITaxon%3A1443113","Yersinia enterocolitica LC20"],["NCBITaxon%3A947557","Yersinia enterocolitica NFO"],["NCBITaxon%3A150052","Yersinia enterocolitica subsp. enterocolitica"]]},{"id":"NCBITaxon:139","l":"Borreliella burgdorferi","na":2,"nb":43,"a":[["joint-bto-0001686.html","joint"],["needle-bto-0000917.html","needle"]],"b":[["NCBITaxon%3A139","Borreliella burgdorferi"],["NCBITaxon%3A476210","Borreliella burgdorferi 118a"],["NCBITaxon%3A445983","Borreliella burgdorferi 156a"],["NCBITaxon%3A521009","Borreliella burgdorferi 297"],["NCBITaxon%3A498738","Borreliella burgdorferi 29805"],["NCBITaxon%3A498740","Borreliella burgdorferi 64b"]]},{"id":"NCBITaxon:266940","l":"Kineococcus radiotolerans SRS30216 = ATCC BAA-149","na":38,"nb":2,"a":[["air-envo-00002005.html","air"],["bay-envo-00000032.html","bay"],["coastal-sea-water-envo-00002150.html","coastal sea water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"]],"b":[["NCBITaxon%3A131568","Kineococcus radiotolerans"],["NCBITaxon%3A266940","Kineococcus radiotolerans SRS30216 = ATCC BAA-149"]]},{"id":"NCBITaxon:1303","l":"Streptococcus oralis","na":2,"nb":35,"a":[["throat-bto-0000828.html","throat"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["NCBITaxon%3A68892","Streptococcus infantis"],["NCBITaxon%3A768726","Streptococcus mitis bv. 2 str. F0392"],["NCBITaxon%3A1000588","Streptococcus mitis bv. 2 str. SK95"],["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A655813","Streptococcus oralis ATCC 35037"],["NCBITaxon%3A888049","Streptococcus oralis ATCC 49296"]]},{"id":"NCBITaxon:184914","l":"Corallococcus coralloides","na":35,"nb":2,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["watercourse-envo-00000029.html","watercourse"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["NCBITaxon%3A184914","Corallococcus coralloides"],["NCBITaxon%3A1144275","Corallococcus coralloides DSM 2259"]]},{"id":"NCBITaxon:714","l":"Aggregatibacter actinomycetemcomitans","na":2,"nb":35,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A714","Aggregatibacter actinomycetemcomitans"],["NCBITaxon%3A754507","Aggregatibacter actinomycetemcomitans ANH9381"],["NCBITaxon%3A668336","Aggregatibacter actinomycetemcomitans D11S-1"],["NCBITaxon%3A754505","Aggregatibacter actinomycetemcomitans D17P-3"],["NCBITaxon%3A694569","Aggregatibacter actinomycetemcomitans D7S-1"],["NCBITaxon%3A1120957","Aggregatibacter actinomycetemcomitans DSM 8324"]]},{"id":"NCBITaxon:128","l":"Isosphaera pallida","na":34,"nb":2,"a":[["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["low-tide-zone-envo-00000319.html","low tide zone"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"]],"b":[["NCBITaxon%3A128","Isosphaera pallida"],["NCBITaxon%3A575540","Isosphaera pallida ATCC 43644"]]},{"id":"NCBITaxon:1077257","l":"Chthonomonadia","na":2,"nb":32,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"]],"b":[["NCBITaxon%3A2739509","Chthonomonadaceae bacterium"],["NCBITaxon%3A2282151","Chthonomonadales bacterium"],["NCBITaxon%3A2282152","Chthonomonadia bacterium"],["NCBITaxon%3A454171","Chthonomonas calidirosea"],["NCBITaxon%3A1416929","Chthonomonas calidirosea P488"],["NCBITaxon%3A1303518","Chthonomonas calidirosea T49"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":2,"nb":29,"a":[["city-envo-00000856.html","city"],["cropland-biome-envo-01000245.html","cropland biome"]],"b":[["NCBITaxon%3A1579","Lactobacillus acidophilus"],["NCBITaxon%3A47770","Lactobacillus crispatus"],["NCBITaxon%3A575595","Lactobacillus crispatus 125-2-CHN"],["NCBITaxon%3A1381118","Lactobacillus crispatus 2029"],["NCBITaxon%3A679188","Lactobacillus crispatus 214-1"],["NCBITaxon%3A440496","Lactobacillus crispatus CTV-05"]]},{"id":"NCBITaxon:1026","l":"Marinoscillum furvescens","na":28,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"]],"b":[["NCBITaxon%3A1026","Marinoscillum furvescens"],["NCBITaxon%3A1122208","Marinoscillum furvescens DSM 4134"]]},{"id":"NCBITaxon:1077264","l":"Chthonomonadaceae","na":2,"nb":28,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"]],"b":[["NCBITaxon%3A2739509","Chthonomonadaceae bacterium"],["NCBITaxon%3A454171","Chthonomonas calidirosea"],["NCBITaxon%3A1416929","Chthonomonas calidirosea P488"],["NCBITaxon%3A1303518","Chthonomonas calidirosea T49"],["NCBITaxon%3A1427520","Chthonomonas calidirosea TKA4.10"],["NCBITaxon%3A1427521","Chthonomonas calidirosea WRG1.2"]]},{"id":"NCBITaxon:28141","l":"Cronobacter sakazakii","na":2,"nb":28,"a":[["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["NCBITaxon%3A413497","Cronobacter dublinensis"],["NCBITaxon%3A413501","Cronobacter muytjensii"],["NCBITaxon%3A1159613","Cronobacter muytjensii ATCC 51329"],["NCBITaxon%3A28141","Cronobacter sakazakii"],["NCBITaxon%3A1159489","Cronobacter sakazakii 2151"],["NCBITaxon%3A1208592","Cronobacter sakazakii 680"]]},{"id":"NCBITaxon:103","l":"Flectobacillus major","na":27,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"]],"b":[["NCBITaxon%3A103","Flectobacillus major"],["NCBITaxon%3A929703","Flectobacillus major DSM 103"]]},{"id":"NCBITaxon:1680","l":"Bifidobacterium adolescentis","na":2,"nb":27,"a":[["brain-bto-0000142.html","brain"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["NCBITaxon%3A1680","Bifidobacterium adolescentis"],["NCBITaxon%3A367928","Bifidobacterium adolescentis ATCC 15703"],["NCBITaxon%3A1263057","Bifidobacterium adolescentis CAG:119"],["NCBITaxon%3A1410644","Bifidobacterium adolescentis DSM 20087"],["NCBITaxon%3A1437612","Bifidobacterium adolescentis JCM 15918"],["NCBITaxon%3A411481","Bifidobacterium adolescentis L2-32"]]},{"id":"NCBITaxon:1004301","l":"Flavihumibacter","na":2,"nb":26,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"]],"b":[["NCBITaxon%3A1442385","Flavihumibacter cheonanensis"],["NCBITaxon%3A2909236","Flavihumibacter fluminis"],["NCBITaxon%3A2838157","Flavihumibacter fluvii"],["NCBITaxon%3A549295","Flavihumibacter petaseus"],["NCBITaxon%3A1220578","Flavihumibacter petaseus NBRC 106054"],["NCBITaxon%3A2716883","Flavihumibacter profundi"]]},{"id":"NCBITaxon:74426","l":"Collinsella aerofaciens","na":2,"nb":25,"a":[["coral-reef-envo-00000150.html","coral reef"],["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["NCBITaxon%3A74426","Collinsella aerofaciens"],["NCBITaxon%3A411903","Collinsella aerofaciens ATCC 25986"],["NCBITaxon%3A1339403","Collinsella aerofaciens TSDA1.2-1.1"],["NCBITaxon%3A1339404","Collinsella aerofaciens TSDA1.2-1.2"],["NCBITaxon%3A1339405","Collinsella aerofaciens TSDA1.2-1.3"],["NCBITaxon%3A1339406","Collinsella aerofaciens TSDC17.1-1.1"]]},{"id":"NCBITaxon:1336","l":"Streptococcus equi","na":2,"nb":23,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["saliva-bto-0001202.html","saliva"]],"b":[["NCBITaxon%3A1336","Streptococcus equi"],["NCBITaxon%3A148942","Streptococcus equi subsp. equi"],["NCBITaxon%3A553482","Streptococcus equi subsp. equi 4047"],["NCBITaxon%3A254358","Streptococcus equi subsp. ruminatorum"],["NCBITaxon%3A1051981","Streptococcus equi subsp. ruminatorum CECT 5772"],["NCBITaxon%3A40041","Streptococcus equi subsp. zooepidemicus"]]},{"id":"NCBITaxon:1679","l":"Bifidobacterium longum subsp. longum","na":2,"nb":22,"a":[["breast-bto-0000149.html","breast"],["juvenile-bto-0002168.html","juvenile"]],"b":[["NCBITaxon%3A216816","Bifidobacterium longum"],["NCBITaxon%3A1682","Bifidobacterium longum subsp. infantis"],["NCBITaxon%3A1679","Bifidobacterium longum subsp. longum"],["NCBITaxon%3A1350473","Bifidobacterium longum subsp. longum 17-1B"],["NCBITaxon%3A1350471","Bifidobacterium longum subsp. longum 1-5B"],["NCBITaxon%3A1161744","Bifidobacterium longum subsp. longum 1-6B"]]},{"id":"NCBITaxon:54","l":"Nannocystis exedens","na":22,"nb":2,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["watercourse-envo-00000029.html","watercourse"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["NCBITaxon%3A54","Nannocystis exedens"],["NCBITaxon%3A1366054","Nannocystis exedens subsp. cinnabaria"]]},{"id":"NCBITaxon:104176","l":"Oscillochloris trichoides","na":21,"nb":2,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["low-tide-zone-envo-00000319.html","low tide zone"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"]],"b":[["NCBITaxon%3A104176","Oscillochloris trichoides"],["NCBITaxon%3A765420","Oscillochloris trichoides DG-6"]]},{"id":"NCBITaxon:32020","l":"Campylobacter fetus subsp. venerealis","na":2,"nb":21,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A196","Campylobacter fetus"],["NCBITaxon%3A32020","Campylobacter fetus subsp. venerealis"],["NCBITaxon%3A1093099","Campylobacter fetus subsp. venerealis 97/608"],["NCBITaxon%3A2789416","Campylobacter fetus subsp. venerealis bv. intermedius"],["NCBITaxon%3A1167640","Campylobacter fetus subsp. venerealis bv. intermedius str. 642-21"],["NCBITaxon%3A1333529","Campylobacter fetus subsp. venerealis bv. intermedius str. 99541"]]},{"id":"NCBITaxon:1911","l":"Streptomyces griseus","na":2,"nb":20,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A1884","Streptomyces acrimycini"],["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A67274","Streptomyces argenteolus"],["NCBITaxon%3A1896","Streptomyces bikiniensis"],["NCBITaxon%3A90079","Streptomyces caviscabies"],["NCBITaxon%3A66883","Streptomyces cyaneofuscatus"]]},{"id":"NCBITaxon:633","l":"Yersinia pseudotuberculosis","na":2,"nb":20,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A633","Yersinia pseudotuberculosis"],["NCBITaxon%3A1286084","Yersinia pseudotuberculosis B-6796"],["NCBITaxon%3A1286085","Yersinia pseudotuberculosis B-6862"],["NCBITaxon%3A1286086","Yersinia pseudotuberculosis B-6863"],["NCBITaxon%3A1286087","Yersinia pseudotuberculosis B-6864"],["NCBITaxon%3A1286088","Yersinia pseudotuberculosis B-6865"]]},{"id":"NCBITaxon:114628","l":"Alkaliphilus transvaalensis","na":19,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biome-envo-00000428.html","biome"]],"b":[["NCBITaxon%3A114628","Alkaliphilus transvaalensis"],["NCBITaxon%3A1408422","Alkaliphilus transvaalensis ATCC 700919"]]},{"id":"NCBITaxon:1613","l":"Limosilactobacillus fermentum","na":2,"nb":19,"a":[["intestine-environment-envo-2100002.html","intestine environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A1591","Lactobacillus sp."],["NCBITaxon%3A2767931","Lentilactobacillus sp."],["NCBITaxon%3A1613","Limosilactobacillus fermentum"],["NCBITaxon%3A1449750","Limosilactobacillus fermentum 222"],["NCBITaxon%3A575599","Limosilactobacillus fermentum 28-3-CHN"],["NCBITaxon%3A1381124","Limosilactobacillus fermentum 3872"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":19,"nb":2,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["saline-water-body-envo-01001319.html","saline water body"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["NCBITaxon%3A324833","Streptomyces lasalocidi"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:48296","l":"Acinetobacter pittii","na":2,"nb":19,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A106654","Acinetobacter nosocomialis"],["NCBITaxon%3A1217670","Acinetobacter nosocomialis NIPH 2119"],["NCBITaxon%3A48296","Acinetobacter pittii"],["NCBITaxon%3A1147132","Acinetobacter pittii 42F"],["NCBITaxon%3A1217673","Acinetobacter pittii ANC 3678"]]},{"id":"NCBITaxon:1719","l":"Corynebacterium pseudotuberculosis","na":2,"nb":18,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["NCBITaxon%3A1719","Corynebacterium pseudotuberculosis"],["NCBITaxon%3A679896","Corynebacterium pseudotuberculosis 1002"],["NCBITaxon%3A1087454","Corynebacterium pseudotuberculosis 1/06-A"],["NCBITaxon%3A1168865","Corynebacterium pseudotuberculosis 258"],["NCBITaxon%3A1089446","Corynebacterium pseudotuberculosis 267"],["NCBITaxon%3A1087451","Corynebacterium pseudotuberculosis 31"]]},{"id":"NCBITaxon:214688","l":"Gemmata obscuriglobus UQM 2246","na":18,"nb":2,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["pond-water-envo-00002228.html","pond water"],["water-body-envo-00000063.html","water body"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["aquatic-environment-envo-01000317.html","aquatic environment"]],"b":[["NCBITaxon%3A114","Gemmata obscuriglobus"],["NCBITaxon%3A214688","Gemmata obscuriglobus UQM 2246"]]},{"id":"NCBITaxon:103810","l":"Riemerella columbina","na":17,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"],["low-tide-zone-envo-00000319.html","low tide zone"]],"b":[["NCBITaxon%3A103810","Riemerella columbina"],["NCBITaxon%3A1123058","Riemerella columbina DSM 16469"]]},{"id":"NCBITaxon:379066","l":"Gemmatimonas aurantiaca T-27","na":17,"nb":2,"a":[["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["alkaline-environment-envo-01000316.html","alkaline environment"],["aquatic-environment-envo-01000317.html","aquatic environment"],["desert-sand-envo-00005800.html","desert sand"]],"b":[["NCBITaxon%3A173480","Gemmatimonas aurantiaca"],["NCBITaxon%3A379066","Gemmatimonas aurantiaca T-27"]]},{"id":"NCBITaxon:68042","l":"Streptomyces hygroscopicus subsp. hygroscopicus","na":2,"nb":17,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A68175","Streptomyces antimycoticus"],["NCBITaxon%3A1226758","Streptomyces antimycoticus subsp. mordarskii"],["NCBITaxon%3A476551","Streptomyces ascomycinicus"],["NCBITaxon%3A114699","Streptomyces asiaticus"],["NCBITaxon%3A3098222","Streptomyces asiaticus subsp. ignotus"],["NCBITaxon%3A998084","Streptomyces himastatinicus"]]},{"id":"NCBITaxon:244366","l":"Klebsiella variicola","na":2,"nb":16,"a":[["liquid-water-envo-00002006.html","liquid water"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A576","Klebsiella sp."],["NCBITaxon%3A244366","Klebsiella variicola"],["NCBITaxon%3A507522","Klebsiella variicola 342"],["NCBITaxon%3A640131","Klebsiella variicola At-22"],["NCBITaxon%3A1438700","Klebsiella variicola BIDMC 61"]]},{"id":"NCBITaxon:28214","l":"Sphingomonas sp.","na":16,"nb":2,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["air-conditioning-unit-envo-00002874.html","air conditioning unit"],["laboratory-facility-envo-01001406.html","laboratory facility"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A28214","Sphingomonas sp."],["NCBITaxon%3A1888892","Sphingomonas turrisvirgatae"]]},{"id":"NCBITaxon:285","l":"Comamonas testosteroni","na":2,"nb":16,"a":[["waste-habitatmech-bacdive-36df85e4a4.html","Waste"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A1775535","Acidovorax sp. JCM 10065"],["NCBITaxon%3A285","Comamonas testosteroni"],["NCBITaxon%3A1009852","Comamonas testosteroni ATCC 11996"],["NCBITaxon%3A543891","Comamonas testosteroni CNB-1"],["NCBITaxon%3A688245","Comamonas testosteroni CNB-2"],["NCBITaxon%3A1440775","Comamonas testosteroni I2"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":2,"nb":15,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["NCBITaxon%3A1681","Bifidobacterium bifidum"],["NCBITaxon%3A500634","Bifidobacterium bifidum ATCC 29521 = JCM 1255 = DSM 20456"],["NCBITaxon%3A484020","Bifidobacterium bifidum BGN4"],["NCBITaxon%3A1263058","Bifidobacterium bifidum CAG:234"],["NCBITaxon%3A1173065","Bifidobacterium bifidum CECT 7366"],["NCBITaxon%3A398515","Bifidobacterium bifidum DSM 20215"]]},{"id":"NCBITaxon:39486","l":"Dorea formicigenerans","na":2,"nb":15,"a":[["adult-bto-0001043.html","adult"],["juvenile-bto-0002168.html","juvenile"]],"b":[["NCBITaxon%3A39486","Dorea formicigenerans"],["NCBITaxon%3A742765","Dorea formicigenerans 4_6_53AFAA"],["NCBITaxon%3A411461","Dorea formicigenerans ATCC 27755"],["NCBITaxon%3A1263073","Dorea formicigenerans CAG:28"],["NCBITaxon%3A1339457","Dorea formicigenerans TSDA1.2-1.1"],["NCBITaxon%3A1339458","Dorea formicigenerans TSDA1.2-1.2"]]},{"id":"NCBITaxon:43767","l":"Prescottella equi","na":2,"nb":15,"a":[["hospital-envo-00002173.html","hospital"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["NCBITaxon%3A84096","Gordonia alkanivorans"],["NCBITaxon%3A2683586","Luteimonas cellulosilyticus"],["NCBITaxon%3A43767","Prescottella equi"],["NCBITaxon%3A685727","Prescottella equi 103S"],["NCBITaxon%3A525370","Prescottella equi ATCC 33707"],["NCBITaxon%3A1219013","Prescottella equi NBRC 101255 = C 7"]]},{"id":"NCBITaxon:1027","l":"Microscilla marina","na":14,"nb":2,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["river-envo-00000022.html","river"],["animal-manure-envo-00003031.html","animal manure"],["biofilm-material-envo-01000156.html","biofilm material"],["biotope-envo-00002036.html","biotope"],["desert-biome-envo-01000179.html","desert biome"]],"b":[["NCBITaxon%3A1027","Microscilla marina"],["NCBITaxon%3A313606","Microscilla marina ATCC 23134"]]},{"id":"NCBITaxon:138074","l":"Serratia symbiotica","na":2,"nb":14,"a":[["intestine-bto-0000648.html","intestine"],["pseudostem-bto-0005992.html","pseudostem"]],"b":[["NCBITaxon%3A655401","Serratia symbiont of Stomaphis sp."],["NCBITaxon%3A138074","Serratia symbiotica"],["NCBITaxon%3A1592400","Serratia symbiotica AfA2.1"],["NCBITaxon%3A1592401","Serratia symbiotica AfA3.1"],["NCBITaxon%3A2856988","Serratia symbiotica (Cacopsylla coccinea)"],["NCBITaxon%3A1339251","Serratia symbiotica CWBI2.3"]]},{"id":"NCBITaxon:411467","l":"Pseudoflavonifractor capillosus ATCC 29799","na":14,"nb":2,"a":[["bay-envo-00000032.html","bay"],["saline-water-envo-00002010.html","saline water"],["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["emulsion-envo-00010506.html","emulsion"],["freshwater-environment-envo-01000306.html","freshwater environment"],["lagoon-envo-00000038.html","lagoon"]],"b":[["NCBITaxon%3A106588","Pseudoflavonifractor capillosus"],["NCBITaxon%3A411467","Pseudoflavonifractor capillosus ATCC 29799"]]},{"id":"NCBITaxon:84112","l":"Eggerthella lenta","na":2,"nb":14,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["feces-uberon-0001988.html","feces"]],"b":[["NCBITaxon%3A84112","Eggerthella lenta"],["NCBITaxon%3A742768","Eggerthella lenta 1_1_60AFAA"],["NCBITaxon%3A479437","Eggerthella lenta DSM 2243"],["NCBITaxon%3A1203548","Eggerthella lenta HPP0013"],["NCBITaxon%3A1357395","Eggerthella lenta MR1_12"],["NCBITaxon%3A1339486","Eggerthella lenta TSDC20.1-1.1"]]},{"id":"NCBITaxon:1042312","l":"Armatimonadia","na":2,"nb":13,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"]],"b":[["NCBITaxon%3A2933160","Armatimonadaceae bacterium"],["NCBITaxon%3A3106989","Armatimonadales bacterium"],["NCBITaxon%3A2663015","Armatimonadia bacterium"],["NCBITaxon%3A685828","Armatimonas rosea"],["NCBITaxon%3A1872638","Armatimonas sp."],["NCBITaxon%3A2953755","Capsulimonadaceae bacterium"]]},{"id":"NCBITaxon:107401","l":"Tenacibaculum maritimum","na":12,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["low-tide-zone-envo-00000319.html","low tide zone"],["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A107401","Tenacibaculum maritimum"],["NCBITaxon%3A1349785","Tenacibaculum maritimum NCIMB 2154"]]},{"id":"NCBITaxon:1398","l":"Heyndrickxia coagulans","na":2,"nb":12,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["NCBITaxon%3A3464050","Bacillus coagulans MPL-25"],["NCBITaxon%3A1422","Geobacillus stearothermophilus"],["NCBITaxon%3A1398","Heyndrickxia coagulans"],["NCBITaxon%3A941639","Heyndrickxia coagulans 2-6"],["NCBITaxon%3A345219","Heyndrickxia coagulans 36D1"],["NCBITaxon%3A1298921","Heyndrickxia coagulans CSIL1"]]},{"id":"NCBITaxon:1423814","l":"Limosilactobacillus vaginalis DSM 5837 = ATCC 49540","na":12,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["small-river-biome-envo-00000890.html","small river biome"],["animal-house-envo-00003040.html","animal house"],["desert-sand-envo-00005800.html","desert sand"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["NCBITaxon%3A1633","Limosilactobacillus vaginalis"],["NCBITaxon%3A1423814","Limosilactobacillus vaginalis DSM 5837 = ATCC 49540"]]},{"id":"NCBITaxon:316407","l":"Escherichia coli str. K-12 substr. W3110","na":12,"nb":2,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["cv-1-cell-bto-0000318.html","CV-1 cell"],["electric-organ-bto-0000376.html","electric organ"],["erythrocyte-bto-0000424.html","erythrocyte"],["filament-bto-0000463.html","filament"],["free-living-state-bto-0001551.html","free-living state"]],"b":[["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A316407","Escherichia coli str. K-12 substr. W3110"]]},{"id":"NCBITaxon:469383","l":"Conexibacter woesei DSM 14684","na":12,"nb":2,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["oil-spill-envo-00002061.html","oil spill"],["village-biome-envo-01000246.html","village biome"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A191495","Conexibacter woesei"],["NCBITaxon%3A469383","Conexibacter woesei DSM 14684"]]},{"id":"NCBITaxon:498761","l":"Heliomicrobium modesticaldum Ice1","na":12,"nb":2,"a":[["bay-envo-00000032.html","bay"],["black-smoker-envo-00000218.html","black smoker"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["saline-water-envo-00002010.html","saline water"],["sea-envo-00000016.html","sea"]],"b":[["NCBITaxon%3A35701","Heliomicrobium modesticaldum"],["NCBITaxon%3A498761","Heliomicrobium modesticaldum Ice1"]]},{"id":"NCBITaxon:1886","l":"Streptomyces albidoflavus","na":2,"nb":11,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A53445","Streptomyces canescens"],["NCBITaxon%3A68184","Streptomyces champavatii"],["NCBITaxon%3A1902","Streptomyces coelicolor"],["NCBITaxon%3A53447","Streptomyces felleus"],["NCBITaxon%3A1911","Streptomyces griseus"]]},{"id":"NCBITaxon:674","l":"Vibrio mimicus","na":2,"nb":11,"a":[["watercourse-envo-00000029.html","watercourse"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"]],"b":[["NCBITaxon%3A674","Vibrio mimicus"],["NCBITaxon%3A693747","Vibrio mimicus 7555"],["NCBITaxon%3A1267896","Vibrio mimicus ATCC 33654"],["NCBITaxon%3A1400797","Vibrio mimicus CAIM 1882"],["NCBITaxon%3A1400798","Vibrio mimicus CAIM 1883"],["NCBITaxon%3A1259812","Vibrio mimicus CAIM 602"]]},{"id":"NCBITaxon:102684","l":"Streptococcus infantarius","na":2,"nb":10,"a":[["bone-element-uberon-0001474.html","bone element"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"]],"b":[["NCBITaxon%3A315405","Streptococcus gallolyticus"],["NCBITaxon%3A102684","Streptococcus infantarius"],["NCBITaxon%3A150054","Streptococcus infantarius subsp. infantarius"],["NCBITaxon%3A1255580","Streptococcus infantarius subsp. infantarius 11FA"],["NCBITaxon%3A1255600","Streptococcus infantarius subsp. infantarius 3AG"],["NCBITaxon%3A471872","Streptococcus infantarius subsp. infantarius ATCC BAA-102"]]},{"id":"NCBITaxon:121608","l":"Paenibacillus koleovorans","na":10,"nb":2,"a":[["rhizosphere-envo-00005801.html","rhizosphere"],["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["desert-biome-envo-01000179.html","desert biome"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"]],"b":[["NCBITaxon%3A121608","Paenibacillus koleovorans"],["NCBITaxon%3A1220568","Paenibacillus koleovorans NBRC 103111"]]},{"id":"NCBITaxon:153721","l":"Sporocytophaga myxococcoides","na":10,"nb":2,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["climate-habitatmech-bacdive-1599585546.html","Climate"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"]],"b":[["NCBITaxon%3A153721","Sporocytophaga myxococcoides"],["NCBITaxon%3A926565","Sporocytophaga myxococcoides DSM 11118"]]},{"id":"NCBITaxon:2850","l":"Phaeodactylum tricornutum","na":10,"nb":2,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"],["large-river-biome-envo-00000887.html","large river biome"],["oligotrophic-water-envo-00002223.html","oligotrophic water"],["saline-marsh-envo-00000054.html","saline marsh"],["shoreline-envo-00000486.html","shoreline"],["stromatolite-mat-envo-00002157.html","stromatolite mat"]],"b":[["NCBITaxon%3A2850","Phaeodactylum tricornutum"],["NCBITaxon%3A556484","Phaeodactylum tricornutum CCAP 1055/1"]]},{"id":"NCBITaxon:29448","l":"Bradyrhizobium elkanii","na":2,"nb":10,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["area-of-tundra-envo-00000112.html","area of tundra"]],"b":[["NCBITaxon%3A29448","Bradyrhizobium elkanii"],["NCBITaxon%3A1156987","Bradyrhizobium elkanii 587"],["NCBITaxon%3A1128203","Bradyrhizobium elkanii CCBAU 05737"],["NCBITaxon%3A1128204","Bradyrhizobium elkanii CCBAU 43297"],["NCBITaxon%3A1079479","Bradyrhizobium elkanii USDA 3254"],["NCBITaxon%3A1079466","Bradyrhizobium elkanii USDA 3259"]]},{"id":"NCBITaxon:302912","l":"Bifidobacterium animalis subsp. animalis","na":2,"nb":10,"a":[["goblet-cell-bto-0001540.html","goblet cell"],["secretion-bto-0002979.html","secretion"]],"b":[["NCBITaxon%3A28025","Bifidobacterium animalis"],["NCBITaxon%3A302912","Bifidobacterium animalis subsp. animalis"],["NCBITaxon%3A703613","Bifidobacterium animalis subsp. animalis ATCC 25527"],["NCBITaxon%3A1365959","Bifidobacterium animalis subsp. animalis ATCC 27672"],["NCBITaxon%3A1402194","Bifidobacterium animalis subsp. animalis IM386"],["NCBITaxon%3A1365955","Bifidobacterium animalis subsp. animalis MCC 0483"]]},{"id":"NCBITaxon:314275","l":"Alteromonas mediterranea","na":2,"nb":10,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A314275","Alteromonas mediterranea"],["NCBITaxon%3A1300253","Alteromonas mediterranea 615"],["NCBITaxon%3A1774373","Alteromonas mediterranea DE"],["NCBITaxon%3A1004786","Alteromonas mediterranea DE1"],["NCBITaxon%3A1300254","Alteromonas mediterranea MED64"],["NCBITaxon%3A1300255","Alteromonas mediterranea U4"]]},{"id":"NCBITaxon:33075","l":"Acidobacterium capsulatum","na":10,"nb":2,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["paddy-field-envo-00000297.html","paddy field"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"],["area-of-tundra-envo-00000112.html","area of tundra"],["forested-area-envo-00000111.html","forested area"],["mountain-pass-envo-00000084.html","mountain pass"]],"b":[["NCBITaxon%3A33075","Acidobacterium capsulatum"],["NCBITaxon%3A240015","Acidobacterium capsulatum ATCC 51196"]]},{"id":"NCBITaxon:1255","l":"Pediococcus pentosaceus","na":2,"nb":9,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"]],"b":[["NCBITaxon%3A1254","Pediococcus acidilactici"],["NCBITaxon%3A114090","Pediococcus inopinatus"],["NCBITaxon%3A54062","Pediococcus parvulus"],["NCBITaxon%3A1255","Pediococcus pentosaceus"],["NCBITaxon%3A278197","Pediococcus pentosaceus ATCC 25745"],["NCBITaxon%3A1460385","Pediococcus pentosaceus CGMCC 7049"]]},{"id":"NCBITaxon:1290","l":"Staphylococcus hominis","na":2,"nb":9,"a":[["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"]],"b":[["NCBITaxon%3A1290","Staphylococcus hominis"],["NCBITaxon%3A629742","Staphylococcus hominis SK119"],["NCBITaxon%3A145391","Staphylococcus hominis subsp. hominis"],["NCBITaxon%3A435837","Staphylococcus hominis subsp. hominis C80"],["NCBITaxon%3A1185421","Staphylococcus hominis subsp. hominis ZBW5"],["NCBITaxon%3A145393","Staphylococcus hominis subsp. novobiosepticus"]]},{"id":"NCBITaxon:1601","l":"Ligilactobacillus agilis","na":9,"nb":2,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["blood-bto-0000089.html","blood"],["brain-bto-0000142.html","brain"],["heart-bto-0000562.html","heart"],["trachea-bto-0001388.html","trachea"],["vagina-bto-0000243.html","vagina"]],"b":[["NCBITaxon%3A1601","Ligilactobacillus agilis"],["NCBITaxon%3A1423718","Ligilactobacillus agilis DSM 20509"]]},{"id":"NCBITaxon:2208","l":"Methanosarcina barkeri","na":2,"nb":9,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A2208","Methanosarcina barkeri"],["NCBITaxon%3A1434106","Methanosarcina barkeri 227"],["NCBITaxon%3A1434107","Methanosarcina barkeri 3"],["NCBITaxon%3A796385","Methanosarcina barkeri CM1"],["NCBITaxon%3A1298606","Methanosarcina barkeri JCM 10043"],["NCBITaxon%3A1434108","Methanosarcina barkeri MS"]]},{"id":"NCBITaxon:428125","l":"[Clostridium] leptum DSM 753","na":9,"nb":2,"a":[["bay-envo-00000032.html","bay"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["saline-water-envo-00002010.html","saline water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["desert-sand-envo-00005800.html","desert sand"]],"b":[["NCBITaxon%3A1535","[Clostridium] leptum"],["NCBITaxon%3A428125","[Clostridium] leptum DSM 753"]]},{"id":"NCBITaxon:457427","l":"Streptomyces himastatinicus ATCC 53653","na":9,"nb":2,"a":[["bay-envo-00000032.html","bay"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["saline-water-envo-00002010.html","saline water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["food-product-foodon-00001002.html","food product"]],"b":[["NCBITaxon%3A998084","Streptomyces himastatinicus"],["NCBITaxon%3A457427","Streptomyces himastatinicus ATCC 53653"]]},{"id":"NCBITaxon:556","l":"Dickeya chrysanthemi","na":2,"nb":9,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["NCBITaxon%3A556","Dickeya chrysanthemi"],["NCBITaxon%3A561229","Dickeya chrysanthemi Ech1591"],["NCBITaxon%3A1224148","Dickeya chrysanthemi NCPPB 3533"],["NCBITaxon%3A1223569","Dickeya chrysanthemi NCPPB 402"],["NCBITaxon%3A3474837","Dickeya chrysanthemi pv. chrysanthemi"],["NCBITaxon%3A3474953","Dickeya chrysanthemi pv. parthenii"]]},{"id":"NCBITaxon:1014","l":"Weeksella virosa","na":8,"nb":2,"a":[["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"],["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"],["animal-manure-envo-00003031.html","animal manure"],["biotope-envo-00002036.html","biotope"]],"b":[["NCBITaxon%3A1014","Weeksella virosa"],["NCBITaxon%3A865938","Weeksella virosa DSM 16922"]]},{"id":"NCBITaxon:104270","l":"Tenacibaculum ovolyticum","na":8,"nb":2,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"],["marine-environment-envo-01000320.html","marine environment"]],"b":[["NCBITaxon%3A104270","Tenacibaculum ovolyticum"],["NCBITaxon%3A1123347","Tenacibaculum ovolyticum DSM 18103"]]},{"id":"NCBITaxon:1120954","l":"Aestuariimicrobium kwangyangense DSM 21549","na":8,"nb":2,"a":[["ocean-envo-00000015.html","ocean"],["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"],["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A396389","Aestuariimicrobium kwangyangense"],["NCBITaxon%3A1120954","Aestuariimicrobium kwangyangense DSM 21549"]]},{"id":"NCBITaxon:1121938","l":"Halobacillus kuroshimensis DSM 18393","na":8,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["intertidal-zone-envo-00000316.html","intertidal zone"],["ocean-trench-envo-00000275.html","ocean trench"],["hill-envo-00000083.html","hill"],["mount-envo-00000477.html","mount"],["mountain-envo-00000081.html","mountain"]],"b":[["NCBITaxon%3A302481","Halobacillus kuroshimensis"],["NCBITaxon%3A1121938","Halobacillus kuroshimensis DSM 18393"]]},{"id":"NCBITaxon:13689","l":"Sphingomonas paucimobilis","na":2,"nb":8,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"]],"b":[["NCBITaxon%3A178355","Flavobacterium omnivorum"],["NCBITaxon%3A1404341","Sphingobium scionense"],["NCBITaxon%3A13689","Sphingomonas paucimobilis"],["NCBITaxon%3A1219050","Sphingomonas paucimobilis NBRC 13935"],["NCBITaxon%3A33051","Sphingomonas sanguinis"],["NCBITaxon%3A1219054","Sphingomonas sanguinis NBRC 13937"]]},{"id":"NCBITaxon:1490","l":"Paraclostridium bifermentans","na":2,"nb":8,"a":[["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A1490","Paraclostridium bifermentans"],["NCBITaxon%3A1233170","Paraclostridium bifermentans ATCC 19299"],["NCBITaxon%3A1233171","Paraclostridium bifermentans ATCC 638 = DSM 14991"],["NCBITaxon%3A1357385","Paraclostridium bifermentans NI48_6"],["NCBITaxon%3A2663174","Paraclostridium bifermentans subsp. bifermentans"],["NCBITaxon%3A2663173","Paraclostridium bifermentans subsp. muricolitidis"]]},{"id":"NCBITaxon:1537","l":"Romboutsia lituseburensis","na":8,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["low-tide-zone-envo-00000319.html","low tide zone"],["surface-water-envo-00002042.html","surface water"],["animal-litter-envo-00002191.html","animal litter"]],"b":[["NCBITaxon%3A1537","Romboutsia lituseburensis"],["NCBITaxon%3A1121325","Romboutsia lituseburensis DSM 797"]]},{"id":"NCBITaxon:257758","l":"Streptococcus pseudopneumoniae","na":2,"nb":8,"a":[["bile-duct-bto-0000122.html","bile duct"],["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A257758","Streptococcus pseudopneumoniae"],["NCBITaxon%3A1415760","Streptococcus pseudopneumoniae 1321"],["NCBITaxon%3A1415759","Streptococcus pseudopneumoniae 22725"],["NCBITaxon%3A1415761","Streptococcus pseudopneumoniae 5247"],["NCBITaxon%3A889205","Streptococcus pseudopneumoniae ATCC BAA-960 = CCUG 49455"],["NCBITaxon%3A1415758","Streptococcus pseudopneumoniae G42"]]},{"id":"NCBITaxon:35761","l":"Nocardioides sp.","na":8,"nb":2,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"],["desert-sand-envo-00005800.html","desert sand"],["endosymbiont-habitatmech-bacdive-7d840c7ddc.html","Endosymbiont"],["oil-spill-envo-00002061.html","oil spill"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A35761","Nocardioides sp."],["NCBITaxon%3A2568655","Nocardioides vastitatis"]]},{"id":"NCBITaxon:411459","l":"Blautia obeum ATCC 29174","na":8,"nb":2,"a":[["colonic-mucosa-bto-0000271.html","colonic mucosa"],["desert-sand-envo-00005800.html","desert sand"],["lagoon-envo-00000038.html","lagoon"],["tropical-envo-01000204.html","tropical"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"],["cropland-biome-envo-01000245.html","cropland biome"]],"b":[["NCBITaxon%3A40520","Blautia obeum"],["NCBITaxon%3A411459","Blautia obeum ATCC 29174"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":8,"nb":2,"a":[["beach-envo-00000091.html","beach"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["sea-sand-envo-00002118.html","sea sand"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A80816","Haliangium ochraceum"],["NCBITaxon%3A502025","Haliangium ochraceum DSM 14365"]]},{"id":"NCBITaxon:648","l":"Aeromonas caviae","na":2,"nb":8,"a":[["human-construction-envo-00000070.html","human construction"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["NCBITaxon%3A648","Aeromonas caviae"],["NCBITaxon%3A878320","Aeromonas caviae Ae398"],["NCBITaxon%3A1458270","Aeromonas caviae NM22"],["NCBITaxon%3A1458271","Aeromonas caviae NM33"],["NCBITaxon%3A3418572","Aeromonas caviae subsp. aquatica"],["NCBITaxon%3A644","Aeromonas hydrophila"]]},{"id":"NCBITaxon:1053","l":"Halorhodospira halophila","na":7,"nb":2,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["marine-environment-envo-01000320.html","marine environment"],["organic-feature-envo-01000159.html","organic feature"],["organic-material-envo-01000155.html","organic material"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A1053","Halorhodospira halophila"],["NCBITaxon%3A349124","Halorhodospira halophila SL1"]]},{"id":"NCBITaxon:1121479","l":"Pseudodonghicola xiamenensis DSM 18339","na":7,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"],["strait-envo-00000394.html","strait"],["petroleum-envo-00002984.html","petroleum"],["bank-envo-00000141.html","bank"],["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A337702","Pseudodonghicola xiamenensis"],["NCBITaxon%3A1121479","Pseudodonghicola xiamenensis DSM 18339"]]},{"id":"NCBITaxon:1211807","l":"Stutzerimonas kunmingensis","na":7,"nb":2,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["laboratory-facility-envo-01001406.html","laboratory facility"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A1211807","Stutzerimonas kunmingensis"],["NCBITaxon%3A316","Stutzerimonas stutzeri"]]},{"id":"NCBITaxon:1231","l":"Nitrosospira multiformis","na":7,"nb":2,"a":[["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["biome-envo-00000428.html","biome"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"],["sludge-envo-00002044.html","sludge"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"]],"b":[["NCBITaxon%3A1231","Nitrosospira multiformis"],["NCBITaxon%3A323848","Nitrosospira multiformis ATCC 25196"]]},{"id":"NCBITaxon:1266","l":"Sarcina","na":2,"nb":7,"a":[["cecum-bto-0000166.html","cecum"],["intestine-bto-0000648.html","intestine"]],"b":[["NCBITaxon%3A2726954","Candidatus Sarcina troglodytae"],["NCBITaxon%3A35785","Sarcina maxima"],["NCBITaxon%3A2053610","Sarcina sp."],["NCBITaxon%3A1798184","Sarcina sp. DSM 11001"],["NCBITaxon%3A3240357","Sarcina sp. JB3"],["NCBITaxon%3A1267","Sarcina ventriculi"]]},{"id":"NCBITaxon:165813","l":"Sporanaerobacter acetigenes","na":7,"nb":2,"a":[["bay-envo-00000032.html","bay"],["desert-sand-envo-00005800.html","desert sand"],["mud-envo-01000001.html","mud"],["village-biome-envo-01000246.html","village biome"],["area-of-tundra-envo-00000112.html","area of tundra"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["NCBITaxon%3A165813","Sporanaerobacter acetigenes"],["NCBITaxon%3A1123281","Sporanaerobacter acetigenes DSM 13106"]]},{"id":"NCBITaxon:1938","l":"Streptomyces viridochromogenes","na":2,"nb":7,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A1969","Streptomyces chartreusis"],["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A1938","Streptomyces viridochromogenes"],["NCBITaxon%3A591159","Streptomyces viridochromogenes DSM 40736"],["NCBITaxon%3A285521","Streptomyces viridochromogenes subsp. komabensis"],["NCBITaxon%3A285503","Streptomyces viridochromogenes subsp. sulfomycini"]]},{"id":"NCBITaxon:2014","l":"Nocardiopsis dassonvillei","na":2,"nb":7,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A146802","Nocardiopsis alborubida"],["NCBITaxon%3A1223496","Nocardiopsis alborubida NBRC 13392"],["NCBITaxon%3A2014","Nocardiopsis dassonvillei"],["NCBITaxon%3A2580523","Nocardiopsis dassonvillei subsp. crassaminis"],["NCBITaxon%3A568208","Nocardiopsis dassonvillei subsp. dassonvillei"],["NCBITaxon%3A446468","Nocardiopsis dassonvillei subsp. dassonvillei DSM 43111"]]},{"id":"NCBITaxon:314230","l":"Blastopirellula marina DSM 3645","na":7,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["shoreline-envo-00000486.html","shoreline"],["bulk-soil-envo-00005802.html","bulk soil"],["forested-area-envo-00000111.html","forested area"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A124","Blastopirellula marina"],["NCBITaxon%3A314230","Blastopirellula marina DSM 3645"]]},{"id":"NCBITaxon:337330","l":"Lactiplantibacillus plantarum subsp. plantarum","na":2,"nb":7,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A1590","Lactiplantibacillus plantarum"],["NCBITaxon%3A337330","Lactiplantibacillus plantarum subsp. plantarum"],["NCBITaxon%3A525338","Lactiplantibacillus plantarum subsp. plantarum ATCC 14917 = JCM 1149 = CGMCC"],["NCBITaxon%3A889516","Lactiplantibacillus plantarum subsp. plantarum KCA-1"],["NCBITaxon%3A1036177","Lactiplantibacillus plantarum subsp. plantarum NC8"],["NCBITaxon%3A767468","Lactiplantibacillus plantarum subsp. plantarum P-8"]]},{"id":"NCBITaxon:411477","l":"Parabacteroides merdae ATCC 43184","na":7,"nb":2,"a":[["bay-envo-00000032.html","bay"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["saline-water-envo-00002010.html","saline water"],["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"]],"b":[["NCBITaxon%3A46503","Parabacteroides merdae"],["NCBITaxon%3A411477","Parabacteroides merdae ATCC 43184"]]},{"id":"NCBITaxon:438753","l":"Azorhizobium caulinodans ORS 571","na":7,"nb":2,"a":[["bacteroid-bto-0000109.html","bacteroid"],["free-living-state-bto-0001551.html","free-living state"],["lateral-root-bto-0005441.html","lateral root"],["rootlet-bto-0001192.html","rootlet"],["seedling-bto-0001228.html","seedling"],["stem-nodule-bto-0001816.html","stem nodule"]],"b":[["NCBITaxon%3A7","Azorhizobium caulinodans"],["NCBITaxon%3A438753","Azorhizobium caulinodans ORS 571"]]},{"id":"NCBITaxon:56780","l":"Syntrophus aciditrophicus SB","na":7,"nb":2,"a":[["bay-envo-00000032.html","bay"],["black-smoker-envo-00000218.html","black smoker"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["saline-water-envo-00002010.html","saline water"],["village-biome-envo-01000246.html","village biome"]],"b":[["NCBITaxon%3A316277","Syntrophus aciditrophicus"],["NCBITaxon%3A56780","Syntrophus aciditrophicus SB"]]},{"id":"NCBITaxon:583355","l":"Coraliomargarita akajimensis DSM 45221","na":7,"nb":2,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["oligotrophic-water-envo-00002223.html","oligotrophic water"],["sandstone-envo-00002055.html","sandstone"]],"b":[["NCBITaxon%3A395922","Coraliomargarita akajimensis"],["NCBITaxon%3A583355","Coraliomargarita akajimensis DSM 45221"]]},{"id":"NCBITaxon:614","l":"Serratia liquefaciens","na":2,"nb":7,"a":[["foot-bto-0000476.html","foot"],["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A82995","Serratia grimesii"],["NCBITaxon%3A614","Serratia liquefaciens"],["NCBITaxon%3A1255584","Serratia liquefaciens 1B4F"],["NCBITaxon%3A1346614","Serratia liquefaciens ATCC 27592"],["NCBITaxon%3A1460083","Serratia liquefaciens FK01"],["NCBITaxon%3A615","Serratia marcescens"]]},{"id":"NCBITaxon:68892","l":"Streptococcus infantis","na":2,"nb":7,"a":[["head-bto-0000282.html","head"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A68892","Streptococcus infantis"],["NCBITaxon%3A889204","Streptococcus infantis ATCC 700779"],["NCBITaxon%3A1005705","Streptococcus infantis SK1076"],["NCBITaxon%3A871237","Streptococcus infantis SK1302"],["NCBITaxon%3A1035189","Streptococcus infantis SK970"],["NCBITaxon%3A1159208","Streptococcus infantis SPAR10"]]},{"id":"NCBITaxon:710696","l":"Intrasporangium calvum DSM 43043","na":7,"nb":2,"a":[["air-envo-00002005.html","air"],["large-river-biome-envo-00000887.html","large river biome"],["petroleum-envo-00002984.html","petroleum"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"],["grassland-biome-envo-01000177.html","grassland biome"]],"b":[["NCBITaxon%3A53358","Intrasporangium calvum"],["NCBITaxon%3A710696","Intrasporangium calvum DSM 43043"]]},{"id":"NCBITaxon:83455","l":"Myxococcus stipitatus","na":7,"nb":2,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["plant-litter-envo-01000628.html","plant litter"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A83455","Myxococcus stipitatus"],["NCBITaxon%3A1278073","Myxococcus stipitatus DSM 14675"]]},{"id":"NCBITaxon:102148","l":"Solobacterium moorei","na":2,"nb":6,"a":[["mouth-environment-envo-08000002.html","mouth environment"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A142586","Eubacterium sp."],["NCBITaxon%3A102148","Solobacterium moorei"],["NCBITaxon%3A1073370","Solobacterium moorei CC14Y"],["NCBITaxon%3A1073371","Solobacterium moorei CC57E"],["NCBITaxon%3A1123263","Solobacterium moorei DSM 22971"],["NCBITaxon%3A706433","Solobacterium moorei F0204"]]},{"id":"NCBITaxon:104336","l":"Microbacterium foliorum","na":6,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["building-envo-00000073.html","building"],["leaf-po-0025034.html","leaf"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["desert-biome-envo-01000179.html","desert biome"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"]],"b":[["NCBITaxon%3A104336","Microbacterium foliorum"],["NCBITaxon%3A1255620","Microbacterium foliorum C45"]]},{"id":"NCBITaxon:1069","l":"Rhodomicrobium vannielii","na":6,"nb":2,"a":[["lake-envo-00000020.html","lake"],["stream-envo-00000023.html","stream"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["rhizosphere-envo-00005801.html","rhizosphere"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["NCBITaxon%3A1069","Rhodomicrobium vannielii"],["NCBITaxon%3A648757","Rhodomicrobium vannielii ATCC 17100"]]},{"id":"NCBITaxon:1069080","l":"Succinispira mobilis DSM 6222","na":6,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"],["pond-envo-00000033.html","pond"],["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["NCBITaxon%3A78120","Succinispira mobilis"],["NCBITaxon%3A1069080","Succinispira mobilis DSM 6222"]]},{"id":"NCBITaxon:1079","l":"Blastochloris viridis","na":6,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["NCBITaxon%3A50712","Blastochloris sulfoviridis"],["NCBITaxon%3A1079","Blastochloris viridis"]]},{"id":"NCBITaxon:1087","l":"Rhodovibrio salinarum","na":6,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["liquid-water-envo-00002006.html","liquid water"],["ocean-envo-00000015.html","ocean"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["sea-water-envo-00002149.html","sea water"],["stream-envo-00000023.html","stream"]],"b":[["NCBITaxon%3A1087","Rhodovibrio salinarum"],["NCBITaxon%3A1089552","Rhodovibrio salinarum DSM 9154"]]},{"id":"NCBITaxon:1121398","l":"Desulfobacter vibrioformis DSM 8776","na":6,"nb":2,"a":[["ocean-envo-00000015.html","ocean"],["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"],["undersea-feature-envo-00000104.html","undersea feature"],["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"]],"b":[["NCBITaxon%3A34031","Desulfobacter vibrioformis"],["NCBITaxon%3A1121398","Desulfobacter vibrioformis DSM 8776"]]},{"id":"NCBITaxon:1121404","l":"Desulfogranum mediterraneum DSM 13871","na":6,"nb":2,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"],["ocean-envo-00000015.html","ocean"],["ocean-biome-envo-01000048.html","ocean biome"],["ocean-trench-envo-00000275.html","ocean trench"],["oceanic-zone-envo-00000207.html","oceanic zone"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A160661","Desulfogranum mediterraneum"],["NCBITaxon%3A1121404","Desulfogranum mediterraneum DSM 13871"]]},{"id":"NCBITaxon:1121466","l":"Oleidesulfovibrio vietnamensis DSM 10520","na":6,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["groundwater-envo-01001004.html","groundwater"],["reservoir-envo-00000025.html","reservoir"],["city-envo-00000856.html","city"],["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A201571","Oleidesulfovibrio vietnamensis"],["NCBITaxon%3A1121466","Oleidesulfovibrio vietnamensis DSM 10520"]]},{"id":"NCBITaxon:1121927","l":"Gordonia hirsuta DSM 44140 = NBRC 16056","na":6,"nb":2,"a":[["biofilter-envo-00002152.html","biofilter"],["compost-envo-00002170.html","compost"],["wood-bto-0005516.html","wood"],["wood-envo-00002040.html","wood"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A53427","Gordonia hirsuta"],["NCBITaxon%3A1121927","Gordonia hirsuta DSM 44140 = NBRC 16056"]]},{"id":"NCBITaxon:1147159","l":"Ornithinibacillus scapharcae","na":6,"nb":2,"a":[["gut-bto-0000545.html","gut"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["seedling-bto-0001228.html","seedling"],["skin-bto-0001253.html","skin"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A1147159","Ornithinibacillus scapharcae"],["NCBITaxon%3A981383","Ornithinibacillus scapharcae TW25"]]},{"id":"NCBITaxon:1184267","l":"Pseudobdellovibrio exovorus JSS","na":6,"nb":2,"a":[["stream-envo-00000023.html","stream"],["biome-envo-00000428.html","biome"],["desert-biome-envo-01000179.html","desert biome"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["NCBITaxon%3A453816","Pseudobdellovibrio exovorus"],["NCBITaxon%3A1184267","Pseudobdellovibrio exovorus JSS"]]},{"id":"NCBITaxon:1286","l":"Staphylococcus simulans","na":2,"nb":6,"a":[["animal-house-envo-00003040.html","animal house"],["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["NCBITaxon%3A1285","Staphylococcus intermedius"],["NCBITaxon%3A1286","Staphylococcus simulans"],["NCBITaxon%3A883166","Staphylococcus simulans ACS-120-V-Sch1"],["NCBITaxon%3A1287","Staphylococcus simulans bv. staphylolyticus"],["NCBITaxon%3A1405498","Staphylococcus simulans UMC-CNS-990"],["NCBITaxon%3A29387","Staphylococcus sp."]]},{"id":"NCBITaxon:1509","l":"Clostridium sporogenes","na":2,"nb":6,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["NCBITaxon%3A1491","Clostridium botulinum"],["NCBITaxon%3A1506","Clostridium sp."],["NCBITaxon%3A1509","Clostridium sporogenes"],["NCBITaxon%3A471871","Clostridium sporogenes ATCC 15579"],["NCBITaxon%3A1075091","Clostridium sporogenes PA 3679"],["NCBITaxon%3A378516","Clostridium sporogenes subsp. tusciae"]]},{"id":"NCBITaxon:1871047","l":"Chryseobacterium sp.","na":6,"nb":2,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["leaf-po-0025034.html","leaf"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["humid-habitatmech-bacdive-0fa0234f43.html","Humid"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["NCBITaxon%3A651561","Chryseobacterium arthrosphaerae"],["NCBITaxon%3A1871047","Chryseobacterium sp."]]},{"id":"NCBITaxon:187326","l":"Megasphaera micronuciformis","na":2,"nb":6,"a":[["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"],["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["NCBITaxon%3A219650","environmental samples"],["NCBITaxon%3A187326","Megasphaera micronuciformis"],["NCBITaxon%3A626371","Megasphaera micronuciformis C1054"],["NCBITaxon%3A1401076","Megasphaera micronuciformis DNF00954"],["NCBITaxon%3A706434","Megasphaera micronuciformis F0359"],["NCBITaxon%3A163573","Megasphaera sp. oral clone BU057"]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":2,"nb":6,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A1906","Streptomyces fradiae"],["NCBITaxon%3A1319510","Streptomyces fradiae ATCC 10745 = DSM 40063"],["NCBITaxon%3A285449","Streptomyces fradiae subsp. acinicolor"],["NCBITaxon%3A2871172","Streptomyces fradiae V-1-3"],["NCBITaxon%3A66894","Streptomyces griseobrunneus"],["NCBITaxon%3A1909","Streptomyces griseolus"]]},{"id":"NCBITaxon:243365","l":"Chromobacterium violaceum ATCC 12472","na":6,"nb":2,"a":[["acute-lymphoblastic-leukemia-cell-bto-0000731.html","acute lymphoblastic leukemia cell"],["adrenal-gland-bto-0000047.html","adrenal gland"],["eosinophil-bto-0000399.html","eosinophil"],["lymphocyte-bto-0000775.html","lymphocyte"],["neutrophil-bto-0000130.html","neutrophil"],["peripheral-blood-bto-0000553.html","peripheral blood"]],"b":[["NCBITaxon%3A536","Chromobacterium violaceum"],["NCBITaxon%3A243365","Chromobacterium violaceum ATCC 12472"]]},{"id":"NCBITaxon:280","l":"Xanthobacter autotrophicus","na":2,"nb":6,"a":[["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A280","Xanthobacter autotrophicus"],["NCBITaxon%3A3119915","Xanthobacter autotrophicus ATCC 700551"],["NCBITaxon%3A3119916","Xanthobacter autotrophicus ATCC 700552"],["NCBITaxon%3A3119912","Xanthobacter nonsaccharivorans"],["NCBITaxon%3A78245","Xanthobacter versatilis"],["NCBITaxon%3A3119913","Xanthobacter wiegelii"]]},{"id":"NCBITaxon:28080","l":"Campylobacter upsaliensis","na":2,"nb":6,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["feces-uberon-0001988.html","feces"]],"b":[["NCBITaxon%3A28898","Campylobacter helveticus"],["NCBITaxon%3A28080","Campylobacter upsaliensis"],["NCBITaxon%3A1121269","Campylobacter upsaliensis DSM 5365"],["NCBITaxon%3A888826","Campylobacter upsaliensis JV21"],["NCBITaxon%3A306264","Campylobacter upsaliensis RM3195"],["NCBITaxon%3A1031733","Campylobacter upsaliensis RM3940"]]},{"id":"NCBITaxon:28129","l":"Prevotella denticola","na":2,"nb":6,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["pig-manure-envo-00003860.html","pig manure"]],"b":[["NCBITaxon%3A28125","Prevotella bivia"],["NCBITaxon%3A28129","Prevotella denticola"],["NCBITaxon%3A944557","Prevotella denticola CRIS 18C-A"],["NCBITaxon%3A1401077","Prevotella denticola DNF00960"],["NCBITaxon%3A1122982","Prevotella denticola DSM 20614 = JCM 13449"],["NCBITaxon%3A767031","Prevotella denticola F0289"]]},{"id":"NCBITaxon:29382","l":"Staphylococcus cohnii","na":2,"nb":6,"a":[["skin-of-body-uberon-0002097.html","skin of body"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["NCBITaxon%3A29382","Staphylococcus cohnii"],["NCBITaxon%3A1415164","Staphylococcus cohnii hu-01"],["NCBITaxon%3A1356853","Staphylococcus cohnii MU-CNS-924"],["NCBITaxon%3A2834574","Staphylococcus cohnii subsp. barensis"],["NCBITaxon%3A74704","Staphylococcus cohnii subsp. cohnii"],["NCBITaxon%3A94138","Staphylococcus ureilyticus"]]},{"id":"NCBITaxon:31910","l":"Halovibrio variabilis","na":6,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"],["oceanic-sea-surface-microlayer-biome-envo-01000034.html","oceanic sea surface microlayer biome"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["cultivated-environment-envo-01000311.html","cultivated environment"],["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"]],"b":[["NCBITaxon%3A31910","Halovibrio variabilis"],["NCBITaxon%3A86177","Vreelandella halophila"]]},{"id":"NCBITaxon:33953","l":"Clostridium aminobutyricum","na":6,"nb":2,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["animal-litter-envo-00002191.html","animal litter"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["mud-envo-01000001.html","mud"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"]],"b":[["NCBITaxon%3A33953","Clostridium aminobutyricum"],["NCBITaxon%3A1506","Clostridium sp."]]},{"id":"NCBITaxon:34003","l":"Paracoccus aminophilus","na":6,"nb":2,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["small-river-biome-envo-00000890.html","small river biome"],["water-scum-envo-00005794.html","water scum"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"],["stony-desert-envo-00000183.html","stony desert"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["NCBITaxon%3A34003","Paracoccus aminophilus"],["NCBITaxon%3A1367847","Paracoccus aminophilus JCM 7686"]]},{"id":"NCBITaxon:411460","l":"[Ruminococcus] torques ATCC 27756","na":6,"nb":2,"a":[["colonic-mucosa-bto-0000271.html","colonic mucosa"],["animal-litter-envo-00002191.html","animal litter"],["emulsion-envo-00010506.html","emulsion"],["tropical-envo-01000204.html","tropical"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"],["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A33039","Mediterraneibacter torques"],["NCBITaxon%3A411460","[Ruminococcus] torques ATCC 27756"]]},{"id":"NCBITaxon:471852","l":"Thermomonospora curvata DSM 43183","na":6,"nb":2,"a":[["city-envo-00000856.html","city"],["compost-envo-00002170.html","compost"],["urban-biome-envo-01000249.html","urban biome"],["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A2020","Thermomonospora curvata"],["NCBITaxon%3A471852","Thermomonospora curvata DSM 43183"]]},{"id":"NCBITaxon:47917","l":"Serratia fonticola","na":2,"nb":6,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"]],"b":[["NCBITaxon%3A47917","Serratia fonticola"],["NCBITaxon%3A1332071","Serratia fonticola AU-AP2C"],["NCBITaxon%3A1332070","Serratia fonticola AU-P3(3)"],["NCBITaxon%3A649197","Serratia fonticola DSM 22080"],["NCBITaxon%3A1378072","Serratia fonticola LMG 7882"],["NCBITaxon%3A1379259","Serratia fonticola UTAD54"]]},{"id":"NCBITaxon:498","l":"Psychrobacter immobilis","na":2,"nb":6,"a":[["skin-of-body-uberon-0002097.html","skin of body"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A498","Psychrobacter immobilis"],["NCBITaxon%3A1256511","Psychrobacter immobilis PG1"],["NCBITaxon%3A29432","Psychrobacter phenylpyruvicus"],["NCBITaxon%3A56811","Psychrobacter sp."],["NCBITaxon%3A1113655","Psychrobacter sp. NBRC 15736"],["NCBITaxon%3A45610","Psychrobacter urativorans"]]},{"id":"NCBITaxon:77608","l":"Pseudoalteromonas distincta","na":2,"nb":6,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A86104","Arenibacter latericius"],["NCBITaxon%3A1121012","Arenibacter latericius DSM 15913"],["NCBITaxon%3A77608","Pseudoalteromonas distincta"],["NCBITaxon%3A1315279","Pseudoalteromonas distincta KMM 3548"],["NCBITaxon%3A166935","Pseudoalteromonas translucida"],["NCBITaxon%3A1315283","Pseudoalteromonas translucida KMM 520"]]},{"id":"NCBITaxon:82135","l":"Fannyhessea vaginae","na":2,"nb":6,"a":[["brain-bto-0000142.html","brain"],["heart-bto-0000562.html","heart"]],"b":[["NCBITaxon%3A1872650","Atopobium sp."],["NCBITaxon%3A82135","Fannyhessea vaginae"],["NCBITaxon%3A525256","Fannyhessea vaginae DSM 15829"],["NCBITaxon%3A553187","Fannyhessea vaginae JCVIHMP018"],["NCBITaxon%3A553188","Fannyhessea vaginae JCVIHMP019"],["NCBITaxon%3A866774","Fannyhessea vaginae PB189-T1-4"]]},{"id":"NCBITaxon:853","l":"Faecalibacterium prausnitzii","na":2,"nb":6,"a":[["coral-reef-envo-00000150.html","coral reef"],["tropical-envo-01000204.html","tropical"]],"b":[["NCBITaxon%3A748224","Faecalibacterium cf. prausnitzii KLE1255"],["NCBITaxon%3A411483","Faecalibacterium duncaniae"],["NCBITaxon%3A853","Faecalibacterium prausnitzii"],["NCBITaxon%3A718252","Faecalibacterium prausnitzii L2-6"],["NCBITaxon%3A411485","Faecalibacterium prausnitzii M21/2"],["NCBITaxon%3A657322","Faecalibacterium prausnitzii SL3/3"]]},{"id":"NCBITaxon:102618","l":"Helicobacter pylori NCTC 11637 = CCUG 17874 = ATCC 43504 = JCM 12093","na":5,"nb":2,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["duodenum-bto-0000365.html","duodenum"],["gastric-mucosa-bto-0001308.html","gastric mucosa"],["gastric-ulcer-bto-0002990.html","gastric ulcer"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A210","Helicobacter pylori"],["NCBITaxon%3A102618","Helicobacter pylori NCTC 11637 = CCUG 17874 = ATCC 43504 = JCM 12093"]]},{"id":"NCBITaxon:1042314","l":"Armatimonadaceae","na":2,"nb":5,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"]],"b":[["NCBITaxon%3A2933160","Armatimonadaceae bacterium"],["NCBITaxon%3A685828","Armatimonas rosea"],["NCBITaxon%3A1872638","Armatimonas sp."],["NCBITaxon%3A1579981","uncultured Armatimonadaceae bacterium"],["NCBITaxon%3A1920858","uncultured Armatimonas sp."]]},{"id":"NCBITaxon:1069081","l":"Nitratiruptor tergarcus DSM 16512","na":5,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["sea-envo-00000016.html","sea"],["agricultural-field-envo-00000114.html","agricultural field"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A269259","Nitratiruptor tergarcus"],["NCBITaxon%3A1069081","Nitratiruptor tergarcus DSM 16512"]]},{"id":"NCBITaxon:1082","l":"Magnetospirillum fulvum","na":5,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["stream-envo-00000023.html","stream"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["river-envo-00000022.html","river"],["subpolar-coniferous-forest-biome-envo-01000250.html","subpolar coniferous forest biome"]],"b":[["NCBITaxon%3A1082","Magnetospirillum fulvum"],["NCBITaxon%3A1316936","Magnetospirillum fulvum MGU-K5"]]},{"id":"NCBITaxon:111105","l":"Porphyromonas gulae","na":5,"nb":2,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["dental-plaque-uberon-0016482.html","dental plaque"],["biome-envo-00000428.html","biome"],["biotope-envo-00002036.html","biotope"],["organic-material-envo-01000155.html","organic material"]],"b":[["NCBITaxon%3A111105","Porphyromonas gulae"],["NCBITaxon%3A1122972","Porphyromonas gulae DSM 15663"]]},{"id":"NCBITaxon:112002","l":"Psychrobacter pacificensis","na":5,"nb":2,"a":[["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"],["gut-bto-0000545.html","gut"],["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"],["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["NCBITaxon%3A112002","Psychrobacter pacificensis"],["NCBITaxon%3A2800839","Psychrobacter pacificensis E23"]]},{"id":"NCBITaxon:112009","l":"Ignatzschineria larvae","na":5,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"],["stream-envo-00000023.html","stream"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A112009","Ignatzschineria larvae"],["NCBITaxon%3A1111732","Ignatzschineria larvae DSM 13226"]]},{"id":"NCBITaxon:1120966","l":"Algoriphagus marincola DSM 16067","na":5,"nb":2,"a":[["beach-envo-00000091.html","beach"],["sea-envo-00000016.html","sea"],["sea-water-envo-00002149.html","sea water"],["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A264027","Algoriphagus marincola"],["NCBITaxon%3A1120966","Algoriphagus marincola DSM 16067"]]},{"id":"NCBITaxon:1121264","l":"Caloranaerobacter azorensis DSM 13643","na":5,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["sea-envo-00000016.html","sea"],["ridge-envo-00000283.html","ridge"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A116090","Caloranaerobacter azorensis"],["NCBITaxon%3A1121264","Caloranaerobacter azorensis DSM 13643"]]},{"id":"NCBITaxon:1121392","l":"Desulfatibacillum aliphaticivorans DSM 15576","na":5,"nb":2,"a":[["cove-envo-00000138.html","cove"],["inlet-envo-00000475.html","inlet"],["canal-envo-00000014.html","canal"],["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A218208","Desulfatibacillum aliphaticivorans"],["NCBITaxon%3A1121392","Desulfatibacillum aliphaticivorans DSM 15576"]]},{"id":"NCBITaxon:129958","l":"Carboxydothermus hydrogenoformans","na":5,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["stream-envo-00000023.html","stream"],["temperate-envo-01000206.html","temperate"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A129958","Carboxydothermus hydrogenoformans"],["NCBITaxon%3A246194","Carboxydothermus hydrogenoformans Z-2901"]]},{"id":"NCBITaxon:130049","l":"Paenibacillus dendritiformis","na":5,"nb":2,"a":[["lake-envo-00000020.html","lake"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["NCBITaxon%3A130049","Paenibacillus dendritiformis"],["NCBITaxon%3A1131935","Paenibacillus dendritiformis C454"]]},{"id":"NCBITaxon:1465","l":"Brevibacillus laterosporus","na":2,"nb":5,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["NCBITaxon%3A1465","Brevibacillus laterosporus"],["NCBITaxon%3A1121121","Brevibacillus laterosporus DSM 25"],["NCBITaxon%3A1118154","Brevibacillus laterosporus GI-9"],["NCBITaxon%3A1042163","Brevibacillus laterosporus LMG 15441"],["NCBITaxon%3A1399144","Brevibacillus laterosporus PE36"]]},{"id":"NCBITaxon:1525","l":"Neomoorella thermoacetica","na":2,"nb":5,"a":[["liquid-water-envo-00002006.html","liquid water"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["NCBITaxon%3A264732","Moorella thermoacetica ATCC 39073"],["NCBITaxon%3A1122242","Moorella thermoacetica DSM 1974"],["NCBITaxon%3A1325331","Moorella thermoacetica Y72"],["NCBITaxon%3A3051332","Neomoorella caeni"],["NCBITaxon%3A1525","Neomoorella thermoacetica"]]},{"id":"NCBITaxon:1526","l":"[Clostridium] aminophilum","na":5,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["rumen-uberon-0007365.html","rumen"],["stomach-bto-0001307.html","stomach"],["intestine-environment-envo-2100002.html","intestine environment"],["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["NCBITaxon%3A1526","[Clostridium] aminophilum"],["NCBITaxon%3A1121296","[Clostridium] aminophilum DSM 10710"]]},{"id":"NCBITaxon:158899","l":"Collimonas fungivorans","na":5,"nb":2,"a":[["surface-water-envo-00002042.html","surface water"],["water-body-envo-00000063.html","water body"],["fungi-associated-environment-envo-01001041.html","fungi-associated environment"],["blanket-bog-envo-00000511.html","blanket bog"],["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["NCBITaxon%3A158899","Collimonas fungivorans"],["NCBITaxon%3A1005048","Collimonas fungivorans Ter331"]]},{"id":"NCBITaxon:1642","l":"Listeria innocua","na":2,"nb":5,"a":[["abort-habitatmech-bacdive-b61f30c070.html","Abort"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["NCBITaxon%3A1642","Listeria innocua"],["NCBITaxon%3A1002366","Listeria innocua ATCC 33091"],["NCBITaxon%3A272626","Listeria innocua Clip11262"],["NCBITaxon%3A702455","Listeria innocua FSL J1-023"],["NCBITaxon%3A702456","Listeria innocua FSL S4-378"]]},{"id":"NCBITaxon:172371","l":"Alloalcanivorax venustensis","na":5,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"],["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"],["oceanic-sea-surface-microlayer-biome-envo-01000034.html","oceanic sea surface microlayer biome"]],"b":[["NCBITaxon%3A172371","Alloalcanivorax venustensis"],["NCBITaxon%3A1177184","Alloalcanivorax venustensis ISO4"]]},{"id":"NCBITaxon:1776","l":"Mycolicibacterium flavescens","na":5,"nb":2,"a":[["fibroblast-bto-0000452.html","fibroblast"],["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["kidney-bto-0000671.html","kidney"],["spleen-bto-0001281.html","spleen"],["tuberculosis-habitatmech-bacdive-e5d21f85b7.html","Tuberculosis"]],"b":[["NCBITaxon%3A1776","Mycolicibacterium flavescens"],["NCBITaxon%3A1303678","Mycolicibacterium flavescens JCM 14741"]]},{"id":"NCBITaxon:1802","l":"","na":2,"nb":5,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"]],"b":[["NCBITaxon%3A1802","Mycobacterium farcinogenes"],["NCBITaxon%3A1237860","Mycobacterium farcinogenes DSM 43637"],["NCBITaxon%3A1796","Mycolicibacterium senegalense"],["NCBITaxon%3A37329","Nocardia farcinica"],["NCBITaxon%3A1210076","Nocardia farcinica NBRC 15532"]]},{"id":"NCBITaxon:193","l":"Azospirillum lipoferum","na":2,"nb":5,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"]],"b":[["NCBITaxon%3A442870","Acanthopleuribacter pedis"],["NCBITaxon%3A52761","Azospirillum largimobile"],["NCBITaxon%3A193","Azospirillum lipoferum"],["NCBITaxon%3A862719","Azospirillum lipoferum 4B"],["NCBITaxon%3A34012","Azospirillum sp."]]},{"id":"NCBITaxon:204","l":"Campylobacter showae","na":2,"nb":5,"a":[["archeological-site-envo-00000564.html","archeological site"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A204","Campylobacter showae"],["NCBITaxon%3A1073353","Campylobacter showae CC57C"],["NCBITaxon%3A1244083","Campylobacter showae CSUNSWCD"],["NCBITaxon%3A553219","Campylobacter showae RM3277"],["NCBITaxon%3A205","Campylobacter sp."]]},{"id":"NCBITaxon:224911","l":"Bradyrhizobium diazoefficiens USDA 110","na":5,"nb":2,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["microbial-mat-material-envo-01000157.html","microbial mat material"],["agricultural-soil-envo-00002259.html","agricultural soil"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A1355477","Bradyrhizobium diazoefficiens"],["NCBITaxon%3A224911","Bradyrhizobium diazoefficiens USDA 110"]]},{"id":"NCBITaxon:232721","l":"Acidovorax sp. JS42","na":5,"nb":2,"a":[["large-river-biome-envo-00000887.html","large river biome"],["pond-water-envo-00002228.html","pond water"],["nitrobenzene-enriched-sediment-envo-00002182.html","nitrobenzene enriched sediment"],["river-bed-envo-00000384.html","river bed"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A1872122","Acidovorax sp."],["NCBITaxon%3A232721","Acidovorax sp. JS42"]]},{"id":"NCBITaxon:240016","l":"Verrucomicrobium spinosum DSM 4136 = JCM 18804","na":5,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["pond-water-envo-00002228.html","pond water"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A2736","Verrucomicrobium spinosum"],["NCBITaxon%3A240016","Verrucomicrobium spinosum DSM 4136 = JCM 18804"]]},{"id":"NCBITaxon:248039","l":"Mucispirillum schaedleri","na":5,"nb":2,"a":[["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"],["mucosa-bto-0000886.html","mucosa"]],"b":[["NCBITaxon%3A248039","Mucispirillum schaedleri"],["NCBITaxon%3A1379858","Mucispirillum schaedleri ASF457"]]},{"id":"NCBITaxon:265072","l":"Methylobacillus flagellatus KT","na":5,"nb":2,"a":[["pond-water-envo-00002228.html","pond water"],["water-body-envo-00000063.html","water body"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["activated-sludge-envo-00002046.html","activated sludge"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A405","Methylobacillus flagellatus"],["NCBITaxon%3A265072","Methylobacillus flagellatus KT"]]},{"id":"NCBITaxon:28034","l":"Sulfobacillus thermosulfidooxidans","na":2,"nb":5,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["NCBITaxon%3A28034","Sulfobacillus thermosulfidooxidans"],["NCBITaxon%3A929705","Sulfobacillus thermosulfidooxidans DSM 9293"],["NCBITaxon%3A1366420","Sulfobacillus thermosulfidooxidans ST"],["NCBITaxon%3A1214914","Sulfobacillus thermosulfidooxidans str. Cutipay"],["NCBITaxon%3A108014","Sulfobacillus thermosulfidooxidans subsp. asporogenes"]]},{"id":"NCBITaxon:293091","l":"Haloquadratum walsbyi","na":2,"nb":5,"a":[["small-river-biome-envo-00000890.html","small river biome"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["NCBITaxon%3A293091","Haloquadratum walsbyi"],["NCBITaxon%3A768065","Haloquadratum walsbyi C23"],["NCBITaxon%3A362976","Haloquadratum walsbyi DSM 16790"],["NCBITaxon%3A1238424","Haloquadratum walsbyi J07HQW1"],["NCBITaxon%3A1238425","Haloquadratum walsbyi J07HQW2"]]},{"id":"NCBITaxon:33034","l":"Anaerococcus prevotii","na":2,"nb":5,"a":[["skin-environment-envo-2100003.html","skin environment"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A33034","Anaerococcus prevotii"],["NCBITaxon%3A879305","Anaerococcus prevotii ACS-065-V-Col13"],["NCBITaxon%3A525919","Anaerococcus prevotii DSM 20548"],["NCBITaxon%3A33036","Anaerococcus tetradius"],["NCBITaxon%3A1827099","Peptoniphilus sp. JCM 8141"]]},{"id":"NCBITaxon:338969","l":"Rhodoferax ferrireducens T118","na":5,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["petroleum-envo-00002984.html","petroleum"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["NCBITaxon%3A192843","Rhodoferax ferrireducens"],["NCBITaxon%3A338969","Rhodoferax ferrireducens T118"]]},{"id":"NCBITaxon:388399","l":"Sagittula stellata E-37","na":5,"nb":2,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["oligotrophic-water-envo-00002223.html","oligotrophic water"],["pulp-bto-0001142.html","pulp"],["rosette-bto-0001201.html","rosette"],["scolex-bto-0002305.html","scolex"]],"b":[["NCBITaxon%3A52603","Sagittula stellata"],["NCBITaxon%3A388399","Sagittula stellata E-37"]]},{"id":"NCBITaxon:391625","l":"Plesiocystis pacifica SIR-1","na":5,"nb":2,"a":[["coral-reef-envo-00000150.html","coral reef"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["bulk-soil-envo-00005802.html","bulk soil"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A191768","Plesiocystis pacifica"],["NCBITaxon%3A391625","Plesiocystis pacifica SIR-1"]]},{"id":"NCBITaxon:393480","l":"Fusobacterium polymorphum ATCC 10953","na":5,"nb":2,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"],["forested-area-envo-00000111.html","forested area"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["NCBITaxon%3A76857","Fusobacterium polymorphum"],["NCBITaxon%3A393480","Fusobacterium polymorphum ATCC 10953"]]},{"id":"NCBITaxon:41976","l":"Porphyromonas catoniae","na":2,"nb":5,"a":[["archeological-site-envo-00000564.html","archeological site"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["NCBITaxon%3A41976","Porphyromonas catoniae"],["NCBITaxon%3A887901","Porphyromonas catoniae ATCC 51270"],["NCBITaxon%3A1127696","Porphyromonas catoniae F0037"],["NCBITaxon%3A1410034","Porphyromonas catoniae HMP_JCVI_SC0176"],["NCBITaxon%3A1924944","Porphyromonas sp."]]},{"id":"NCBITaxon:484","l":"Neisseria flavescens","na":2,"nb":5,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A483","Neisseria cinerea"],["NCBITaxon%3A484","Neisseria flavescens"],["NCBITaxon%3A546264","Neisseria flavescens NRL30031/H210"],["NCBITaxon%3A596320","Neisseria flavescens SK114"],["NCBITaxon%3A490","Neisseria sicca"]]},{"id":"NCBITaxon:49118","l":"Candidatus Arthromitus sp. SFB-mouse","na":2,"nb":5,"a":[["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["NCBITaxon%3A49118","Candidatus Arthromitus sp. SFB-mouse"],["NCBITaxon%3A937846","Candidatus Arthromitus sp. SFB-mouse-1"],["NCBITaxon%3A1029718","Candidatus Arthromitus sp. SFB-mouse-Japan"],["NCBITaxon%3A1073972","Candidatus Arthromitus sp. SFB-mouse-NYU"],["NCBITaxon%3A1041809","Candidatus Arthromitus sp. SFB-mouse-Yit"]]},{"id":"NCBITaxon:526225","l":"Geodermatophilus obscurus DSM 43160","na":5,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A1861","Geodermatophilus obscurus"],["NCBITaxon%3A526225","Geodermatophilus obscurus DSM 43160"]]},{"id":"NCBITaxon:70993","l":"Flexithrix dorotheae","na":5,"nb":2,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["sandstone-envo-00002055.html","sandstone"],["lagoon-envo-00000038.html","lagoon"],["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A70993","Flexithrix dorotheae"],["NCBITaxon%3A1121904","Flexithrix dorotheae DSM 6795"]]},{"id":"NCBITaxon:82367","l":"Paracoccus pantotrophus","na":2,"nb":5,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A266","Paracoccus denitrificans"],["NCBITaxon%3A1302247","Paracoccus denitrificans JCM 21484"],["NCBITaxon%3A82367","Paracoccus pantotrophus"],["NCBITaxon%3A936051","Paracoccus pantotrophus J40"],["NCBITaxon%3A935565","Paracoccus pantotrophus J46"]]},{"id":"NCBITaxon:86104","l":"Arenibacter latericius","na":2,"nb":5,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"],["fumarole-envo-00000216.html","fumarole"]],"b":[["NCBITaxon%3A86104","Arenibacter latericius"],["NCBITaxon%3A1121012","Arenibacter latericius DSM 15913"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A72407","Klebsiella pneumoniae subsp. pneumoniae"],["NCBITaxon%3A1162296","Klebsiella pneumoniae subsp. pneumoniae DSM 30104 = JCM 1662 = NBRC 14940"]]},{"id":"NCBITaxon:876","l":"Desulfovibrio desulfuricans","na":2,"nb":5,"a":[["sludge-envo-00002044.html","sludge"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A876","Desulfovibrio desulfuricans"],["NCBITaxon%3A525146","Desulfovibrio desulfuricans ATCC 27774"],["NCBITaxon%3A1121445","Desulfovibrio desulfuricans DSM 642"],["NCBITaxon%3A885","Desulfovibrio sp."],["NCBITaxon%3A126333","Halodesulfovibrio aestuarii"]]},{"id":"NCBITaxon:937777","l":"Deinococcus peraridilitoris DSM 19664","na":5,"nb":2,"a":[["desert-area-envo-00000097.html","desert area"],["hill-envo-00000083.html","hill"],["mount-envo-00000477.html","mount"],["mountain-envo-00000081.html","mountain"],["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A432329","Deinococcus peraridilitoris"],["NCBITaxon%3A937777","Deinococcus peraridilitoris DSM 19664"]]},{"id":"NCBITaxon:100884","l":"Coprobacillus cateniformis","na":4,"nb":2,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["gut-bto-0000545.html","gut"],["sediment-envo-00002007.html","sediment"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A100884","Coprobacillus cateniformis"],["NCBITaxon%3A1297794","Coprobacillus cateniformis JCM 10604"]]},{"id":"NCBITaxon:102862","l":"Proteus penneri","na":4,"nb":2,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"],["geographic-feature-envo-00000000.html","geographic feature"],["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A102862","Proteus penneri"],["NCBITaxon%3A471881","Proteus penneri ATCC 35198"]]},{"id":"NCBITaxon:1035271","l":"Rhizobium nepotum","na":2,"nb":4,"a":[["plant-gall-po-0025626.html","plant gall"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["NCBITaxon%3A1035271","Rhizobium nepotum"],["NCBITaxon%3A1368418","Rhizobium nepotum 39/7"],["NCBITaxon%3A1368419","Rhizobium nepotum AGR18"],["NCBITaxon%3A1368420","Rhizobium nepotum AGR19"]]},{"id":"NCBITaxon:105219","l":"Ralstonia mannitolilytica","na":4,"nb":2,"a":[["factory-envo-01000536.html","factory"],["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A105219","Ralstonia mannitolilytica"],["NCBITaxon%3A54061","Ralstonia sp."]]},{"id":"NCBITaxon:105612","l":"Dellaglioa algida","na":4,"nb":2,"a":[["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biotope-envo-00002036.html","biotope"],["organic-feature-envo-01000159.html","organic feature"]],"b":[["NCBITaxon%3A105612","Dellaglioa algida"],["NCBITaxon%3A1423719","Dellaglioa algida DSM 15638"]]},{"id":"NCBITaxon:1069448","l":"Nitriliruptor alkaliphilus DSM 45188","na":4,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"],["freshwater-environment-envo-01000306.html","freshwater environment"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A427918","Nitriliruptor alkaliphilus"],["NCBITaxon%3A1069448","Nitriliruptor alkaliphilus DSM 45188"]]},{"id":"NCBITaxon:108328","l":"Anaerobranca gottschalkii","na":4,"nb":2,"a":[["animal-manure-envo-00003031.html","animal manure"],["biotope-envo-00002036.html","biotope"],["environmental-feature-envo-00002297.html","environmental feature"],["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["NCBITaxon%3A108328","Anaerobranca gottschalkii"],["NCBITaxon%3A1120990","Anaerobranca gottschalkii DSM 13577"]]},{"id":"NCBITaxon:1089553","l":"Thermacetogenium phaeum DSM 12270","na":4,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["pulp-bto-0001142.html","pulp"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["NCBITaxon%3A85874","Thermacetogenium phaeum"],["NCBITaxon%3A1089553","Thermacetogenium phaeum DSM 12270"]]},{"id":"NCBITaxon:108981","l":"Acinetobacter schindleri","na":2,"nb":4,"a":[["gut-bto-0000545.html","gut"],["skin-bto-0001253.html","skin"]],"b":[["NCBITaxon%3A108981","Acinetobacter schindleri"],["NCBITaxon%3A1217988","Acinetobacter schindleri CIP 107287"],["NCBITaxon%3A1217675","Acinetobacter schindleri NIPH 900"],["NCBITaxon%3A1221311","Acinetobacter schindleri TG19614"]]},{"id":"NCBITaxon:109328","l":"Leptotrichia trevisanii","na":4,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biotope-envo-00002036.html","biotope"],["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["NCBITaxon%3A109328","Leptotrichia trevisanii"],["NCBITaxon%3A1122173","Leptotrichia trevisanii DSM 22070"]]},{"id":"NCBITaxon:1111735","l":"Sedimenticola selenatireducens DSM 17993","na":4,"nb":2,"a":[["brackish-water-body-envo-01001321.html","brackish water body"],["estuarine-biome-envo-01000020.html","estuarine biome"],["estuary-envo-00000045.html","estuary"],["watercourse-envo-00000029.html","watercourse"]],"b":[["NCBITaxon%3A191960","Sedimenticola selenatireducens"],["NCBITaxon%3A1111735","Sedimenticola selenatireducens DSM 17993"]]},{"id":"NCBITaxon:1111737","l":"Thermocrispum municipale DSM 44069","na":4,"nb":2,"a":[["city-envo-00000856.html","city"],["compost-envo-00002170.html","compost"],["urban-biome-envo-01000249.html","urban biome"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A37926","Thermocrispum municipale"],["NCBITaxon%3A1111737","Thermocrispum municipale DSM 44069"]]},{"id":"NCBITaxon:1120951","l":"Aequorivita capsosiphonis DSM 23843","na":4,"nb":2,"a":[["sea-envo-00000016.html","sea"],["sea-water-envo-00002149.html","sea water"],["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A487317","Aequorivita capsosiphonis"],["NCBITaxon%3A1120951","Aequorivita capsosiphonis DSM 23843"]]},{"id":"NCBITaxon:1120963","l":"Algicola sagamiensis DSM 14643","na":4,"nb":2,"a":[["inlet-envo-00000475.html","inlet"],["sea-water-envo-00002149.html","sea water"],["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A163869","Algicola sagamiensis"],["NCBITaxon%3A1120963","Algicola sagamiensis DSM 14643"]]},{"id":"NCBITaxon:1120977","l":"Alkanindiges illinoisensis DSM 15370","na":4,"nb":2,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"],["oil-envo-00002985.html","oil"]],"b":[["NCBITaxon%3A197183","Alkanindiges illinoisensis"],["NCBITaxon%3A1120977","Alkanindiges illinoisensis DSM 15370"]]},{"id":"NCBITaxon:1121007","l":"Aquimarina muelleri DSM 19832","na":4,"nb":2,"a":[["inlet-envo-00000475.html","inlet"],["marginal-sea-biome-envo-01000046.html","marginal sea biome"],["sea-envo-00000016.html","sea"],["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A279356","Aquimarina muelleri"],["NCBITaxon%3A1121007","Aquimarina muelleri DSM 19832"]]},{"id":"NCBITaxon:1121014","l":"Arenimonas donghaensis DSM 18148 = HO3-R19","na":4,"nb":2,"a":[["beach-envo-00000091.html","beach"],["intertidal-zone-envo-00000316.html","intertidal zone"],["city-envo-00000856.html","city"],["sea-sand-envo-00002118.html","sea sand"]],"b":[["NCBITaxon%3A375061","Arenimonas donghaensis"],["NCBITaxon%3A1121014","Arenimonas donghaensis DSM 18148 = HO3-R19"]]},{"id":"NCBITaxon:1121132","l":"Butyrivibrio hungatei DSM 14810","na":4,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"],["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A185008","Butyrivibrio hungatei"],["NCBITaxon%3A1121132","Butyrivibrio hungatei DSM 14810"]]},{"id":"NCBITaxon:1121266","l":"Caminicella sporogenes DSM 14501","na":4,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["undersea-feature-envo-00000104.html","undersea feature"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A166485","Caminicella sporogenes"],["NCBITaxon%3A1121266","Caminicella sporogenes DSM 14501"]]},{"id":"NCBITaxon:1121301","l":"Paramaledivibacter caminithermalis DSM 15212","na":4,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A191027","Paramaledivibacter caminithermalis"],["NCBITaxon%3A1121301","Paramaledivibacter caminithermalis DSM 15212"]]},{"id":"NCBITaxon:1121324","l":"Peptoclostridium litorale DSM 5388","na":4,"nb":2,"a":[["inlet-envo-00000475.html","inlet"],["ocean-envo-00000015.html","ocean"],["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"]],"b":[["NCBITaxon%3A1557","Peptoclostridium litorale"],["NCBITaxon%3A1121324","Peptoclostridium litorale DSM 5388"]]},{"id":"NCBITaxon:1121374","l":"Dasania marina DSM 21967","na":4,"nb":2,"a":[["ocean-envo-00000015.html","ocean"],["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"],["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A471499","Dasania marina"],["NCBITaxon%3A1121374","Dasania marina DSM 21967"]]},{"id":"NCBITaxon:1121449","l":"Paucidesulfovibrio gracilis DSM 16080","na":4,"nb":2,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"],["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A47158","Paucidesulfovibrio gracilis"],["NCBITaxon%3A1121449","Paucidesulfovibrio gracilis DSM 16080"]]},{"id":"NCBITaxon:1121451","l":"Maridesulfovibrio hydrothermalis AM13 = DSM 14728","na":4,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["undersea-feature-envo-00000104.html","undersea feature"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A191026","Maridesulfovibrio hydrothermalis"],["NCBITaxon%3A1121451","Maridesulfovibrio hydrothermalis AM13 = DSM 14728"]]},{"id":"NCBITaxon:1121456","l":"Paucidesulfovibrio longus DSM 6739","na":4,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"],["drainage-basin-envo-00000291.html","drainage basin"],["oil-envo-00002985.html","oil"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A889","Paucidesulfovibrio longus"],["NCBITaxon%3A1121456","Paucidesulfovibrio longus DSM 6739"]]},{"id":"NCBITaxon:1121877","l":"Ferrimicrobium acidiphilum DSM 19497","na":4,"nb":2,"a":[["acid-mine-drainage-envo-00001997.html","acid mine drainage"],["mine-envo-00000076.html","mine"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A121039","Ferrimicrobium acidiphilum"],["NCBITaxon%3A1121877","Ferrimicrobium acidiphilum DSM 19497"]]},{"id":"NCBITaxon:1121911","l":"Garciella nitratireducens DSM 15102","na":4,"nb":2,"a":[["inlet-envo-00000475.html","inlet"],["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A218205","Garciella nitratireducens"],["NCBITaxon%3A1121911","Garciella nitratireducens DSM 15102"]]},{"id":"NCBITaxon:1121912","l":"Gelidibacter mesophilus DSM 14095","na":4,"nb":2,"a":[["marginal-sea-biome-envo-01000046.html","marginal sea biome"],["sea-envo-00000016.html","sea"],["sea-water-envo-00002149.html","sea water"],["mediterranean-envo-01000207.html","mediterranean"]],"b":[["NCBITaxon%3A169050","Gelidibacter mesophilus"],["NCBITaxon%3A1121912","Gelidibacter mesophilus DSM 14095"]]},{"id":"NCBITaxon:1121922","l":"Brumicola pallidula DSM 14239 = ACAM 615","na":4,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"],["sea-water-envo-00002149.html","sea water"],["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A56807","Brumicola pallidula"],["NCBITaxon%3A1121922","Brumicola pallidula DSM 14239 = ACAM 615"]]},{"id":"NCBITaxon:1121937","l":"Haliea salexigens DSM 19537","na":4,"nb":2,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"],["sea-water-envo-00002149.html","sea water"],["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A287487","Haliea salexigens"],["NCBITaxon%3A1121937","Haliea salexigens DSM 19537"]]},{"id":"NCBITaxon:1122192","l":"Marinactinospora thermotolerans DSM 45154","na":4,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["ocean-trench-envo-00000275.html","ocean trench"],["oceanic-zone-envo-00000207.html","oceanic zone"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A531310","Marinactinospora thermotolerans"],["NCBITaxon%3A1122192","Marinactinospora thermotolerans DSM 45154"]]},{"id":"NCBITaxon:1122195","l":"Marinitoga hydrogenitolerans DSM 16785","na":4,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["ridge-envo-00000283.html","ridge"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A287990","Marinitoga hydrogenitolerans"],["NCBITaxon%3A1122195","Marinitoga hydrogenitolerans DSM 16785"]]},{"id":"NCBITaxon:1122238","l":"Microbacterium indicum DSM 19969","na":4,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["ocean-trench-envo-00000275.html","ocean trench"],["oceanic-zone-envo-00000207.html","oceanic zone"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A358100","Microbacterium indicum"],["NCBITaxon%3A1122238","Microbacterium indicum DSM 19969"]]},{"id":"NCBITaxon:1123233","l":"Salinicoccus luteus DSM 17002","na":4,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"],["desert-biome-envo-01000179.html","desert biome"],["desert-area-envo-00000097.html","desert area"],["wadi-envo-00000031.html","wadi"]],"b":[["NCBITaxon%3A367840","Salinicoccus luteus"],["NCBITaxon%3A1123233","Salinicoccus luteus DSM 17002"]]},{"id":"NCBITaxon:1123349","l":"Tepidibacter formicigenes DSM 15518","na":4,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["ridge-envo-00000283.html","ridge"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A227138","Tepidibacter formicigenes"],["NCBITaxon%3A1123349","Tepidibacter formicigenes DSM 15518"]]},{"id":"NCBITaxon:1123383","l":"Pseudothermotoga elfii DSM 9442 = NBRC 107921","na":4,"nb":2,"a":[["blast-cell-bto-0000125.html","blast cell"],["flagellum-bto-0002292.html","flagellum"],["petroleum-envo-00002984.html","petroleum"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A38322","Pseudothermotoga elfii"],["NCBITaxon%3A1123383","Pseudothermotoga elfii DSM 9442 = NBRC 107921"]]},{"id":"NCBITaxon:1123384","l":"Pseudothermotoga hypogea DSM 11164 = NBRC 106472","na":4,"nb":2,"a":[["blast-cell-bto-0000125.html","blast cell"],["flagellum-bto-0002292.html","flagellum"],["petroleum-envo-00002984.html","petroleum"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A57487","Pseudothermotoga hypogea"],["NCBITaxon%3A1123384","Pseudothermotoga hypogea DSM 11164 = NBRC 106472"]]},{"id":"NCBITaxon:1137989","l":"Geodermatophilus normandii","na":4,"nb":2,"a":[["desert-biome-envo-01000179.html","desert biome"],["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"],["desert-area-envo-00000097.html","desert area"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A1137989","Geodermatophilus normandii"],["NCBITaxon%3A52020","Geodermatophilus sp."]]},{"id":"NCBITaxon:114259","l":"Nocardia paucivorans","na":4,"nb":2,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["NCBITaxon%3A114259","Nocardia paucivorans"],["NCBITaxon%3A1206734","Nocardia paucivorans NBRC 100373"]]},{"id":"NCBITaxon:114652","l":"Streptococcus orisratti","na":2,"nb":4,"a":[["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"]],"b":[["NCBITaxon%3A114652","Streptococcus orisratti"],["NCBITaxon%3A1123311","Streptococcus orisratti DSM 15617"],["NCBITaxon%3A3409805","Streptococcus orisratti subsp. futianensis"],["NCBITaxon%3A3709338","Streptococcus orisratti subsp. orisratti"]]},{"id":"NCBITaxon:121719","l":"Pannonibacter phragmitetus","na":2,"nb":4,"a":[["nectar-bto-0000537.html","nectar"],["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A134375","Achromobacter sp."],["NCBITaxon%3A121719","Pannonibacter phragmitetus"],["NCBITaxon%3A1402210","Pannonibacter phragmitetus BB"],["NCBITaxon%3A1122929","Pannonibacter phragmitetus DSM 14782"]]},{"id":"NCBITaxon:1217908","l":"Octadecabacter antarcticus","na":4,"nb":2,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["sea-water-envo-00002149.html","sea water"],["hemolymph-bto-0000572.html","hemolymph"]],"b":[["NCBITaxon%3A1217908","Octadecabacter antarcticus"],["NCBITaxon%3A391626","Octadecabacter antarcticus 307"]]},{"id":"NCBITaxon:1306","l":"Streptococcus sp.","na":4,"nb":2,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["co-culture-habitatmech-bacdive-ff945d8a69.html","Co-culture"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1306","Streptococcus sp."]]},{"id":"NCBITaxon:1469607","l":"[Scytonema hofmanni] UTEX 2349","na":4,"nb":2,"a":[["track-envo-00000122.html","track"],["iucn-national-park-envo-00000367.html","IUCN national park"],["canyon-envo-00000169.html","canyon"],["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A1469607","[Scytonema hofmanni] UTEX 2349"],["NCBITaxon%3A379533","Tolypothrix sp. PCC 9009"]]},{"id":"NCBITaxon:1495","l":"Clostridium cylindrosporum","na":4,"nb":2,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["surface-water-envo-00002042.html","surface water"],["sludge-envo-00002044.html","sludge"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"]],"b":[["NCBITaxon%3A1495","Clostridium cylindrosporum"],["NCBITaxon%3A1121307","Clostridium cylindrosporum DSM 605"]]},{"id":"NCBITaxon:152142","l":"Mycolicibacterium holsaticum","na":4,"nb":2,"a":[["fibroblast-bto-0000452.html","fibroblast"],["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["kidney-bto-0000671.html","kidney"],["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A152142","Mycolicibacterium holsaticum"],["NCBITaxon%3A1226752","Mycolicibacterium holsaticum DSM 44478 = JCM 12374"]]},{"id":"NCBITaxon:153233","l":"Oceanicaulis alexandrii","na":4,"nb":2,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"],["forested-area-envo-00000111.html","forested area"],["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["NCBITaxon%3A153233","Oceanicaulis alexandrii"],["NCBITaxon%3A1122613","Oceanicaulis alexandrii DSM 11625"]]},{"id":"NCBITaxon:1565","l":"Desulfotomaculum nigrificans","na":2,"nb":4,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A2419843","Desulfofundulus salinus"],["NCBITaxon%3A1565","Desulfotomaculum nigrificans"],["NCBITaxon%3A868595","Desulfotomaculum nigrificans CO-1-SRB"],["NCBITaxon%3A696369","Desulfotomaculum nigrificans DSM 574"]]},{"id":"NCBITaxon:163","l":"Treponema bryantii","na":4,"nb":2,"a":[["stomach-bto-0001307.html","stomach"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["intestine-environment-envo-2100002.html","intestine environment"],["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["NCBITaxon%3A163","Treponema bryantii"],["NCBITaxon%3A877418","Treponema bryantii NK4A124"]]},{"id":"NCBITaxon:164393","l":"Latilactobacillus fuchuensis","na":4,"nb":2,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A164393","Latilactobacillus fuchuensis"],["NCBITaxon%3A1423747","Latilactobacillus fuchuensis DSM 14340 = JCM 11249"]]},{"id":"NCBITaxon:1684","l":"Bifidobacterium asteroides","na":2,"nb":4,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"]],"b":[["NCBITaxon%3A419015","Alloscardovia omnicolens"],["NCBITaxon%3A1684","Bifidobacterium asteroides"],["NCBITaxon%3A1437594","Bifidobacterium asteroides DSM 20089"],["NCBITaxon%3A1147128","Bifidobacterium asteroides PRL2011"]]},{"id":"NCBITaxon:172045","l":"Elizabethkingia miricola","na":4,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["hindgut-bto-0000510.html","hindgut"],["wood-bto-0005516.html","wood"],["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A238","Elizabethkingia meningoseptica"],["NCBITaxon%3A172045","Elizabethkingia miricola"]]},{"id":"NCBITaxon:1725","l":"Corynebacterium xerosis","na":2,"nb":4,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A1720","Corynebacterium sp."],["NCBITaxon%3A43770","Corynebacterium striatum"],["NCBITaxon%3A1725","Corynebacterium xerosis"],["NCBITaxon%3A1223513","Corynebacterium xerosis NBRC 16721 = ATCC 373"]]},{"id":"NCBITaxon:1736","l":"Eubacterium limosum","na":2,"nb":4,"a":[["watercourse-envo-00000029.html","watercourse"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A1852361","Actinomyces bouchesdurhonensis"],["NCBITaxon%3A1736","Eubacterium limosum"],["NCBITaxon%3A903814","Eubacterium limosum KIST612"],["NCBITaxon%3A2041044","Eubacterium maltosivorans"]]},{"id":"NCBITaxon:190721","l":"Ralstonia insidiosa","na":4,"nb":2,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["NCBITaxon%3A3058597","Ralstonia flaminis"],["NCBITaxon%3A190721","Ralstonia insidiosa"]]},{"id":"NCBITaxon:192","l":"Azospirillum brasilense","na":2,"nb":4,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A1064539","Azospirillum baldaniorum"],["NCBITaxon%3A192","Azospirillum brasilense"],["NCBITaxon%3A1117321","Azospirillum brasilense CBG497"],["NCBITaxon%3A1262469","Azospirillum brasilense FP2"]]},{"id":"NCBITaxon:2021","l":"Thermobifida fusca","na":2,"nb":4,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["NCBITaxon%3A2021","Thermobifida fusca"],["NCBITaxon%3A1223522","Thermobifida fusca NBRC 14071 = JCM 3263"],["NCBITaxon%3A1169414","Thermobifida fusca TM51"],["NCBITaxon%3A269800","Thermobifida fusca YX"]]},{"id":"NCBITaxon:203122","l":"Saccharophagus degradans 2-40","na":4,"nb":2,"a":[["intertidal-zone-envo-00000316.html","intertidal zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["saline-marsh-envo-00000054.html","saline marsh"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["NCBITaxon%3A86304","Saccharophagus degradans"],["NCBITaxon%3A203122","Saccharophagus degradans 2-40"]]},{"id":"NCBITaxon:208223","l":"Kosakonia cowanii","na":4,"nb":2,"a":[["midgut-bto-0000863.html","midgut"],["midgut-epithelium-bto-0005053.html","midgut epithelium"],["nectar-bto-0000537.html","nectar"],["ookinete-bto-0004857.html","ookinete"]],"b":[["NCBITaxon%3A208223","Kosakonia cowanii"],["NCBITaxon%3A1300165","Kosakonia cowanii JCM 10956 = DSM 18146"]]},{"id":"NCBITaxon:243061","l":"Mycobacterium sherrisii","na":4,"nb":2,"a":[["fibroblast-bto-0000452.html","fibroblast"],["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["kidney-bto-0000671.html","kidney"],["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A154654","Mycobacterium montefiorense"],["NCBITaxon%3A243061","Mycobacterium sherrisii"]]},{"id":"NCBITaxon:243090","l":"Rhodopirellula baltica SH 1","na":4,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["oligotrophic-water-envo-00002223.html","oligotrophic water"],["pond-water-envo-00002228.html","pond water"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A265606","Rhodopirellula baltica"],["NCBITaxon%3A243090","Rhodopirellula baltica SH 1"]]},{"id":"NCBITaxon:264462","l":"Bdellovibrio bacteriovorus HD100","na":4,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A959","Bdellovibrio bacteriovorus"],["NCBITaxon%3A264462","Bdellovibrio bacteriovorus HD100"]]},{"id":"NCBITaxon:272624","l":"Legionella pneumophila subsp. pneumophila (strain Philadelphia 1 / ATCC 33152 / DSM 7513)","na":2,"nb":4,"a":[["underground-water-envo-00005792.html","underground water"],["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A446","Legionella pneumophila"],["NCBITaxon%3A91891","Legionella pneumophila subsp. pneumophila"],["NCBITaxon%3A1236535","Legionella pneumophila subsp. pneumophila JCM 7571"],["NCBITaxon%3A272624","Legionella pneumophila subsp. pneumophila str. Philadelphia 1"]]},{"id":"NCBITaxon:2748","l":"Carnobacterium divergens","na":2,"nb":4,"a":[["food-product-foodon-00001002.html","food product"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["NCBITaxon%3A2748","Carnobacterium divergens"],["NCBITaxon%3A1449336","Carnobacterium divergens DSM 20623"],["NCBITaxon%3A2751","Carnobacterium maltaromaticum"],["NCBITaxon%3A1579","Lactobacillus acidophilus"]]},{"id":"NCBITaxon:28051","l":"Lachnospira multipara","na":2,"nb":4,"a":[["animal-litter-envo-00002191.html","animal litter"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["NCBITaxon%3A28051","Lachnospira multipara"],["NCBITaxon%3A1282887","Lachnospira multipara ATCC 19207"],["NCBITaxon%3A1410661","Lachnospira multipara LB2003"],["NCBITaxon%3A1410662","Lachnospira multipara MC2003"]]},{"id":"NCBITaxon:28114","l":"Porphyromonas levii","na":4,"nb":2,"a":[["environmental-feature-envo-00002297.html","environmental feature"],["lagoon-envo-00000038.html","lagoon"],["skin-environment-envo-2100003.html","skin environment"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A28114","Porphyromonas levii"],["NCBITaxon%3A1122973","Porphyromonas levii DSM 23370"]]},{"id":"NCBITaxon:29345","l":"Sedimentibacter hydroxybenzoicus","na":4,"nb":2,"a":[["mud-envo-01000001.html","mud"],["oil-spill-envo-00002061.html","oil spill"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A29345","Sedimentibacter hydroxybenzoicus"],["NCBITaxon%3A1123245","Sedimentibacter hydroxybenzoicus DSM 7310"]]},{"id":"NCBITaxon:35703","l":"Citrobacter amalonaticus","na":2,"nb":4,"a":[["dental-plaque-bto-0000338.html","dental plaque"],["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["NCBITaxon%3A35703","Citrobacter amalonaticus"],["NCBITaxon%3A1261127","Citrobacter amalonaticus Y19"],["NCBITaxon%3A67824","Citrobacter farmeri"],["NCBITaxon%3A546","Citrobacter freundii"]]},{"id":"NCBITaxon:365044","l":"Polaromonas naphthalenivorans CJ2","na":4,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["large-river-biome-envo-00000887.html","large river biome"],["waterfall-envo-00000040.html","waterfall"],["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A216465","Polaromonas naphthalenivorans"],["NCBITaxon%3A365044","Polaromonas naphthalenivorans CJ2"]]},{"id":"NCBITaxon:37637","l":"Corynebacterium pseudodiphtheriticum","na":2,"nb":4,"a":[["hospital-envo-00002173.html","hospital"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["NCBITaxon%3A43769","Corynebacterium propinquum"],["NCBITaxon%3A37637","Corynebacterium pseudodiphtheriticum"],["NCBITaxon%3A1381111","Corynebacterium pseudodiphtheriticum 090104"],["NCBITaxon%3A1121368","Corynebacterium pseudodiphtheriticum DSM 44287"]]},{"id":"NCBITaxon:391606","l":"Caldanaerobacter subterraneus subsp. pacificus DSM 12653","na":2,"nb":4,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"]],"b":[["NCBITaxon%3A911092","Caldanaerobacter subterraneus"],["NCBITaxon%3A109807","Caldanaerobacter subterraneus subsp. pacificus"],["NCBITaxon%3A391606","Caldanaerobacter subterraneus subsp. pacificus DSM 12653"],["NCBITaxon%3A119072","Caldanaerobacter subterraneus subsp. tengcongensis"]]},{"id":"NCBITaxon:391735","l":"Verminephrobacter eiseniae EF01-2","na":4,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["embryo-bto-0000379.html","embryo"],["nephridium-bto-0000923.html","nephridium"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["NCBITaxon%3A364317","Verminephrobacter eiseniae"],["NCBITaxon%3A391735","Verminephrobacter eiseniae EF01-2"]]},{"id":"NCBITaxon:39441","l":"Methanobrevibacter arboriphilus","na":2,"nb":4,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A39441","Methanobrevibacter arboriphilus"],["NCBITaxon%3A1401244","Methanobrevibacter arboriphilus ANOR1"],["NCBITaxon%3A1300164","Methanobrevibacter arboriphilus JCM 13429 = DSM 1125"],["NCBITaxon%3A1293039","Methanobrevibacter arboriphilus JCM 9315"]]},{"id":"NCBITaxon:395019","l":"Burkholderia multivorans ATCC 17616","na":4,"nb":2,"a":[["human-construction-envo-00000070.html","human construction"],["desert-sand-envo-00005800.html","desert sand"],["orchard-envo-00000115.html","orchard"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["NCBITaxon%3A87883","Burkholderia multivorans"],["NCBITaxon%3A395019","Burkholderia multivorans ATCC 17616"]]},{"id":"NCBITaxon:411465","l":"Parvimonas micra ATCC 33270","na":4,"nb":2,"a":[["hip-bto-0001457.html","hip"],["joint-bto-0001686.html","joint"],["tooth-bto-0000397.html","tooth"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A33033","Parvimonas micra"],["NCBITaxon%3A411465","Parvimonas micra ATCC 33270"]]},{"id":"NCBITaxon:449973","l":"Chelativorans multitrophicus","na":4,"nb":2,"a":[["factory-envo-01000536.html","factory"],["sludge-envo-00002044.html","sludge"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A449973","Chelativorans multitrophicus"],["NCBITaxon%3A449974","Chelativorans oligotrophicus"]]},{"id":"NCBITaxon:479432","l":"Streptosporangium roseum DSM 43021","na":4,"nb":2,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"],["vegetable-garden-soil-envo-00005779.html","vegetable garden soil"]],"b":[["NCBITaxon%3A2001","Streptosporangium roseum"],["NCBITaxon%3A479432","Streptosporangium roseum DSM 43021"]]},{"id":"NCBITaxon:479433","l":"Catenulispora acidiphila DSM 44928","na":4,"nb":2,"a":[["filament-bto-0000463.html","filament"],["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A304895","Catenulispora acidiphila"],["NCBITaxon%3A479433","Catenulispora acidiphila DSM 44928"]]},{"id":"NCBITaxon:480224","l":"Chloroflexus aurantiacus Y-400-fl","na":4,"nb":2,"a":[["alkaline-hot-spring-envo-00002119.html","alkaline hot spring"],["mountain-pass-envo-00000084.html","mountain pass"],["silty-sediment-envo-01000119.html","silty sediment"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A1108","Chloroflexus aurantiacus"],["NCBITaxon%3A480224","Chloroflexus aurantiacus Y-400-fl"]]},{"id":"NCBITaxon:485914","l":"Halomicrobium mukohataei DSM 12286","na":4,"nb":2,"a":[["saline-lake-envo-00000019.html","saline lake"],["saline-marsh-envo-00000054.html","saline marsh"],["alkaline-flat-envo-00000196.html","alkaline flat"],["plateau-envo-00000182.html","plateau"]],"b":[["NCBITaxon%3A57705","Halomicrobium mukohataei"],["NCBITaxon%3A485914","Halomicrobium mukohataei DSM 12286"]]},{"id":"NCBITaxon:51514","l":"Dehalobacterium","na":2,"nb":4,"a":[["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"]],"b":[["NCBITaxon%3A51515","Dehalobacterium formicoaceticum"],["NCBITaxon%3A2022806","Dehalobacterium sp."],["NCBITaxon%3A3143029","Dehalobacterium sp. XH"],["NCBITaxon%3A926829","uncultured Dehalobacterium sp."]]},{"id":"NCBITaxon:519","l":"Bordetella parapertussis","na":2,"nb":4,"a":[["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["NCBITaxon%3A519","Bordetella parapertussis"],["NCBITaxon%3A257311","Bordetella parapertussis 12822"],["NCBITaxon%3A1208717","Bordetella parapertussis 18323"],["NCBITaxon%3A1208660","Bordetella parapertussis Bpp5"]]},{"id":"NCBITaxon:525909","l":"Acidimicrobium ferrooxidans DSM 10331","na":4,"nb":2,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A53635","Acidimicrobium ferrooxidans"],["NCBITaxon%3A525909","Acidimicrobium ferrooxidans DSM 10331"]]},{"id":"NCBITaxon:555779","l":"Desulfonatronospira thiodismutans ASO3-1","na":4,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"],["soil-envo-00001998.html","soil"],["steppe-envo-00000262.html","steppe"]],"b":[["NCBITaxon%3A488939","Desulfonatronospira thiodismutans"],["NCBITaxon%3A555779","Desulfonatronospira thiodismutans ASO3-1"]]},{"id":"NCBITaxon:563040","l":"Sulfurimonas autotrophica DSM 16294","na":4,"nb":2,"a":[["hill-envo-00000083.html","hill"],["mount-envo-00000477.html","mount"],["mountain-envo-00000081.html","mountain"],["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A202747","Sulfurimonas autotrophica"],["NCBITaxon%3A563040","Sulfurimonas autotrophica DSM 16294"]]},{"id":"NCBITaxon:575540","l":"Isosphaera pallida ATCC 43644","na":4,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["agricultural-soil-envo-00002259.html","agricultural soil"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A128","Isosphaera pallida"],["NCBITaxon%3A575540","Isosphaera pallida ATCC 43644"]]},{"id":"NCBITaxon:577","l":"Klebsiella terrigena","na":2,"nb":4,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A577","Klebsiella terrigena"],["NCBITaxon%3A1354274","Klebsiella terrigena ATCC 33257"],["NCBITaxon%3A1255696","Klebsiella terrigena Pi19"]]},{"id":"NCBITaxon:587","l":"Providencia rettgeri","na":2,"nb":4,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["fumarole-envo-00000216.html","fumarole"]],"b":[["NCBITaxon%3A587","Providencia rettgeri"],["NCBITaxon%3A1255575","Providencia rettgeri 947"],["NCBITaxon%3A1141663","Providencia rettgeri Dmel1"],["NCBITaxon%3A521000","Providencia rettgeri DSM 1131"]]},{"id":"NCBITaxon:588319","l":"Palaeococcus ferrophilus DSM 13482","na":4,"nb":2,"a":[["hill-envo-00000083.html","hill"],["mount-envo-00000477.html","mount"],["mountain-envo-00000081.html","mountain"],["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A83868","Palaeococcus ferrophilus"],["NCBITaxon%3A588319","Palaeococcus ferrophilus DSM 13482"]]},{"id":"NCBITaxon:61646","l":"Lelliottia amnigena","na":2,"nb":4,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["NCBITaxon%3A61646","Lelliottia amnigena"],["NCBITaxon%3A1439331","Lelliottia amnigena CHS 78"],["NCBITaxon%3A1255644","Lelliottia amnigena CV9"],["NCBITaxon%3A1219085","Lelliottia amnigena NBRC 105700"]]},{"id":"NCBITaxon:633148","l":"Thermosphaera aggregans DSM 11486","na":4,"nb":2,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["park-envo-00000562.html","park"],["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A54254","Thermosphaera aggregans"],["NCBITaxon%3A633148","Thermosphaera aggregans DSM 11486"]]},{"id":"NCBITaxon:651","l":"Aeromonas media","na":4,"nb":2,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"],["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A651","Aeromonas media"],["NCBITaxon%3A1208104","Aeromonas media WS"]]},{"id":"NCBITaxon:753","l":"Pasteurella canis","na":2,"nb":4,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"]],"b":[["NCBITaxon%3A317577","Deinococcus ficus"],["NCBITaxon%3A1121379","Deinococcus ficus DSM 19119"],["NCBITaxon%3A753","Pasteurella canis"],["NCBITaxon%3A1538102","Pseudochelatococcus lubricantis"]]},{"id":"NCBITaxon:1000570","l":"Streptococcus anginosus SK52","na":2,"nb":3,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"],["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1328","Streptococcus anginosus"],["NCBITaxon%3A1000570","Streptococcus anginosus SK52 = DSM 20563"],["NCBITaxon%3A1671923","Streptococcus anginosus subsp. anginosus"]]},{"id":"NCBITaxon:1001714","l":"Mycobacteroides abscessus subsp. massiliense CCUG 48898 = JCM 15300","na":2,"nb":3,"a":[["respiratory-system-bto-0000203.html","respiratory system"],["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A36809","Mycobacteroides abscessus"],["NCBITaxon%3A1962118","Mycobacteroides abscessus subsp. massiliense"],["NCBITaxon%3A1001714","Mycobacteroides abscessus subsp. massiliense CCUG 48898 = JCM 15300"]]},{"id":"NCBITaxon:1027273","l":"Endozoicomonas montiporae","na":3,"nb":2,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"],["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"],["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1027273","Endozoicomonas montiporae"],["NCBITaxon%3A570277","Endozoicomonas montiporae CL-33"]]},{"id":"NCBITaxon:102886","l":"Streptococcus didelphis","na":3,"nb":2,"a":[["animal-manure-envo-00003031.html","animal manure"],["organic-feature-envo-01000159.html","organic feature"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A102886","Streptococcus didelphis"],["NCBITaxon%3A1123301","Streptococcus didelphis DSM 15616"]]},{"id":"NCBITaxon:104097","l":"Acetobacter estunensis","na":3,"nb":2,"a":[["river-envo-00000022.html","river"],["food-fermented-foodon-00001258.html","food (fermented)"],["subpolar-coniferous-forest-biome-envo-01000250.html","subpolar coniferous forest biome"]],"b":[["NCBITaxon%3A104097","Acetobacter estunensis"],["NCBITaxon%3A1307905","Acetobacter estunensis NRIC 0472"]]},{"id":"NCBITaxon:1050107","l":"Lactobacillus delbrueckii subsp. allosunkii","na":2,"nb":3,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A1584","Lactobacillus delbrueckii"],["NCBITaxon%3A1050107","Lactobacillus delbrueckii subsp. allosunkii"],["NCBITaxon%3A29397","Lactobacillus delbrueckii subsp. lactis"]]},{"id":"NCBITaxon:1055104","l":"Cobetia amphilecti","na":2,"nb":3,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A1055104","Cobetia amphilecti"],["NCBITaxon%3A412417","Streptomonospora arabica"],["NCBITaxon%3A58345","Streptomyces mauvecolor"]]},{"id":"NCBITaxon:105841","l":"Anaerostipes caccae","na":3,"nb":2,"a":[["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["emulsion-envo-00010506.html","emulsion"],["organic-feature-envo-01000159.html","organic feature"]],"b":[["NCBITaxon%3A105841","Anaerostipes caccae"],["NCBITaxon%3A411490","Anaerostipes caccae L1-92"]]},{"id":"NCBITaxon:1069082","l":"Halomicrobium katesii DSM 19301","na":3,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A437163","Halomicrobium katesii"],["NCBITaxon%3A1069082","Halomicrobium katesii DSM 19301"]]},{"id":"NCBITaxon:1069083","l":"Methanocaldococcus villosus KIN24-T80","na":3,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["flagellum-bto-0002292.html","flagellum"],["ridge-envo-00000283.html","ridge"]],"b":[["NCBITaxon%3A667126","Methanocaldococcus villosus"],["NCBITaxon%3A1069083","Methanocaldococcus villosus KIN24-T80"]]},{"id":"NCBITaxon:1071","l":"Rhodopila globiformis","na":3,"nb":2,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A563170","Ferruginibacter alkalilentus"],["NCBITaxon%3A1071","Rhodopila globiformis"]]},{"id":"NCBITaxon:107635","l":"Methylosinus sp. LW3","na":3,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A427","Methylosinus sp."],["NCBITaxon%3A107635","Methylosinus sp. LW3"]]},{"id":"NCBITaxon:107637","l":"Methylomonas sp. LW13","na":3,"nb":2,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["freshwater-environment-envo-01000306.html","freshwater environment"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A418","Methylomonas sp."],["NCBITaxon%3A107637","Methylomonas sp. LW13"]]},{"id":"NCBITaxon:1086","l":"Rhodothalassium salexigens","na":3,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A1086","Rhodothalassium salexigens"],["NCBITaxon%3A1188247","Rhodothalassium salexigens DSM 2132"]]},{"id":"NCBITaxon:1091038","l":"Streptococcus thermophilus DSM 20617","na":3,"nb":2,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A1308","Streptococcus thermophilus"],["NCBITaxon%3A1091038","Streptococcus thermophilus DSM 20617"]]},{"id":"NCBITaxon:1096","l":"Chlorobium phaeobacteroides","na":2,"nb":3,"a":[["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"]],"b":[["NCBITaxon%3A1096","Chlorobium phaeobacteroides"],["NCBITaxon%3A331678","Chlorobium phaeobacteroides BS1"],["NCBITaxon%3A290317","Chlorobium phaeobacteroides DSM 266"]]},{"id":"NCBITaxon:110101","l":"Laceyella putida","na":3,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"],["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["NCBITaxon%3A1538144","Aeromicrobium camelliae"],["NCBITaxon%3A110101","Laceyella putida"]]},{"id":"NCBITaxon:1112212","l":"Sphingomonas echinoides ATCC 14820","na":3,"nb":2,"a":[["bioreactor-envo-00002123.html","bioreactor"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["NCBITaxon%3A59803","Sphingomonas echinoides"],["NCBITaxon%3A1112212","Sphingomonas echinoides ATCC 14820"]]},{"id":"NCBITaxon:1117644","l":"Mycoplasmopsis canis PG 14","na":3,"nb":2,"a":[["brain-bto-0000142.html","brain"],["throat-bto-0000828.html","throat"],["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A29555","Mycoplasmopsis canis"],["NCBITaxon%3A1117644","Mycoplasmopsis canis PG 14"]]},{"id":"NCBITaxon:1117647","l":"Simiduia agarivorans SA1 = DSM 21679","na":3,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"],["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A447471","Simiduia agarivorans"],["NCBITaxon%3A1117647","Simiduia agarivorans SA1 = DSM 21679"]]},{"id":"NCBITaxon:1120925","l":"Acinetobacter bouvetii DSM 14964 = CIP 107468","na":3,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A202951","Acinetobacter bouvetii"],["NCBITaxon%3A1120925","Acinetobacter bouvetii DSM 14964 = CIP 107468"]]},{"id":"NCBITaxon:1120927","l":"Acinetobacter tandoii DSM 14970 = CIP 107469","na":3,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A202954","Acinetobacter tandoii"],["NCBITaxon%3A1120927","Acinetobacter tandoii DSM 14970 = CIP 107469"]]},{"id":"NCBITaxon:1120928","l":"Acinetobacter tjernbergiae DSM 14971 = CIP 107465","na":3,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A202955","Acinetobacter tjernbergiae"],["NCBITaxon%3A1120928","Acinetobacter tjernbergiae DSM 14971 = CIP 107465"]]},{"id":"NCBITaxon:1120953","l":"Aestuariibacter salexigens DSM 15300","na":3,"nb":2,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"],["island-envo-00000098.html","island"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A226010","Aestuariibacter salexigens"],["NCBITaxon%3A1120953","Aestuariibacter salexigens DSM 15300"]]},{"id":"NCBITaxon:1120956","l":"Afifella pfennigii DSM 17143","na":3,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A209897","Afifella pfennigii"],["NCBITaxon%3A1120956","Afifella pfennigii DSM 17143"]]},{"id":"NCBITaxon:1120961","l":"Ahrensia kielensis DSM 5890","na":3,"nb":2,"a":[["brackish-water-body-envo-01001321.html","brackish water body"],["hypersaline-water-envo-00002012.html","hypersaline water"],["sea-envo-00000016.html","sea"]],"b":[["NCBITaxon%3A76980","Ahrensia kielensis"],["NCBITaxon%3A1120961","Ahrensia kielensis DSM 5890"]]},{"id":"NCBITaxon:1120965","l":"Algoriphagus mannitolivorans DSM 15301","na":3,"nb":2,"a":[["intertidal-zone-envo-00000316.html","intertidal zone"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A226504","Algoriphagus mannitolivorans"],["NCBITaxon%3A1120965","Algoriphagus mannitolivorans DSM 15301"]]},{"id":"NCBITaxon:1120969","l":"Aliagarivorans marinus DSM 23064","na":3,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"],["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A561965","Aliagarivorans marinus"],["NCBITaxon%3A1120969","Aliagarivorans marinus DSM 23064"]]},{"id":"NCBITaxon:1120983","l":"Amorphus coralli DSM 19760","na":3,"nb":2,"a":[["inlet-envo-00000475.html","inlet"],["sea-envo-00000016.html","sea"],["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A340680","Amorphus coralli"],["NCBITaxon%3A1120983","Amorphus coralli DSM 19760"]]},{"id":"NCBITaxon:1120985","l":"Anaeroarcus burkinensis DSM 6283","na":3,"nb":2,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A82376","Anaeromusa burkinensis"],["NCBITaxon%3A1120985","Anaeromusa burkinensis DSM 6283"]]},{"id":"NCBITaxon:1120987","l":"Acetomicrobium thermoterrenum DSM 13490","na":3,"nb":2,"a":[["reservoir-envo-00000025.html","reservoir"],["agricultural-field-envo-00000114.html","agricultural field"],["oil-envo-00002985.html","oil"]],"b":[["NCBITaxon%3A1120986","Acetomicrobium thermoterrenum"],["NCBITaxon%3A1120987","Acetomicrobium thermoterrenum DSM 13490"]]},{"id":"NCBITaxon:1120998","l":"Anaerovorax odorimutans DSM 5092","na":3,"nb":2,"a":[["brackish-water-body-envo-01001321.html","brackish water body"],["hypersaline-water-envo-00002012.html","hypersaline water"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A109327","Anaerovorax odorimutans"],["NCBITaxon%3A1120998","Anaerovorax odorimutans DSM 5092"]]},{"id":"NCBITaxon:1120999","l":"Andreprevotia chitinilytica DSM 18519","na":3,"nb":2,"a":[["forest-soil-envo-00002261.html","forest soil"],["island-envo-00000098.html","island"],["mountain-envo-00000081.html","mountain"]],"b":[["NCBITaxon%3A396808","Andreprevotia chitinilytica"],["NCBITaxon%3A1120999","Andreprevotia chitinilytica DSM 18519"]]},{"id":"NCBITaxon:1121012","l":"Arenibacter latericius DSM 15913","na":3,"nb":2,"a":[["sea-envo-00000016.html","sea"],["island-envo-00000098.html","island"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A86104","Arenibacter latericius"],["NCBITaxon%3A1121012","Arenibacter latericius DSM 15913"]]},{"id":"NCBITaxon:1121013","l":"Arenimonas composti TR7-09 = DSM 18010","na":3,"nb":2,"a":[["agricultural-waste-material-envo-01000371.html","agricultural waste material"],["compost-envo-00002170.html","compost"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A370776","Arenimonas composti"],["NCBITaxon%3A1121013","Arenimonas composti TR7-09 = DSM 18010"]]},{"id":"NCBITaxon:1121015","l":"Arenimonas oryziterrae DSM 21050 = YC6267","na":3,"nb":2,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A498055","Arenimonas oryziterrae"],["NCBITaxon%3A1121015","Arenimonas oryziterrae DSM 21050 = YC6267"]]},{"id":"NCBITaxon:1121016","l":"Arhodomonas aquaeolei DSM 8974","na":3,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A2369","Arhodomonas aquaeolei"],["NCBITaxon%3A1121016","Arhodomonas aquaeolei DSM 8974"]]},{"id":"NCBITaxon:1121025","l":"Atopostipes suicloacalis DSM 15692","na":3,"nb":2,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["fecal-environment-envo-01001029.html","fecal environment"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A180295","Atopostipes suicloacalis"],["NCBITaxon%3A1121025","Atopostipes suicloacalis DSM 15692"]]},{"id":"NCBITaxon:1121085","l":"Salibacterium aidingense DSM 18341","na":3,"nb":2,"a":[["saline-lake-envo-00000019.html","saline lake"],["undersea-feature-envo-00000104.html","undersea feature"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A384933","Salibacterium aidingense"],["NCBITaxon%3A1121085","Salibacterium aidingense DSM 18341"]]},{"id":"NCBITaxon:1121087","l":"Alkalicoccus chagannorensis DSM 18086","na":3,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["hypersaline-water-envo-00002012.html","hypersaline water"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A427072","Alkalicoccus chagannorensis"],["NCBITaxon%3A1121087","Alkalicoccus chagannorensis DSM 18086"]]},{"id":"NCBITaxon:1121111","l":"Bifidobacterium thermacidophilum subsp. thermacidophilum DSM 15837","na":2,"nb":3,"a":[["waste-water-envo-00002001.html","waste water"],["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A246618","Bifidobacterium thermacidophilum"],["NCBITaxon%3A79262","Bifidobacterium thermacidophilum subsp. thermacidophilum"],["NCBITaxon%3A1121111","Bifidobacterium thermacidophilum subsp. thermacidophilum DSM 15837"]]},{"id":"NCBITaxon:1121112","l":"Bifidobacterium tsurumiense DSM 17777","na":3,"nb":2,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A356829","Bifidobacterium tsurumiense"],["NCBITaxon%3A1121112","Bifidobacterium tsurumiense DSM 17777"]]},{"id":"NCBITaxon:1121256","l":"Caldanaerobius fijiensis DSM 17918","na":3,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"],["island-envo-00000098.html","island"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A456330","Caldanaerobius fijiensis"],["NCBITaxon%3A1121256","Caldanaerobius fijiensis DSM 17918"]]},{"id":"NCBITaxon:1121291","l":"Clostridium acidisoli DSM 12555","na":3,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A91624","Clostridium acidisoli"],["NCBITaxon%3A1121291","Clostridium acidisoli DSM 12555"]]},{"id":"NCBITaxon:1121303","l":"Ruminiclostridium cellobioparum DSM 1351 = ATCC 15832","na":2,"nb":3,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A29355","Ruminiclostridium cellobioparum"],["NCBITaxon%3A1121303","Ruminiclostridium cellobioparum DSM 1351 = ATCC 15832"],["NCBITaxon%3A2305018","Ruminiclostridium cellobioparum subsp. cellobioparum"]]},{"id":"NCBITaxon:1121349","l":"Comamonas composti DSM 21721","na":3,"nb":2,"a":[["compost-envo-00002170.html","compost"],["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A408558","Comamonas composti"],["NCBITaxon%3A1121349","Comamonas composti DSM 21721"]]},{"id":"NCBITaxon:1121377","l":"Deinococcus apachensis DSM 19763","na":3,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"],["desert-biome-envo-01000179.html","desert biome"],["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A309886","Deinococcus apachensis"],["NCBITaxon%3A1121377","Deinococcus apachensis DSM 19763"]]},{"id":"NCBITaxon:1121381","l":"Deinococcus marmoris DSM 12784","na":3,"nb":2,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"],["dry-valley-envo-00000128.html","dry valley"],["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A249408","Deinococcus marmoris"],["NCBITaxon%3A1121381","Deinococcus marmoris DSM 12784"]]},{"id":"NCBITaxon:1121391","l":"Desulfacinum infernum DSM 9756","na":3,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A35837","Desulfacinum infernum"],["NCBITaxon%3A1121391","Desulfacinum infernum DSM 9756"]]},{"id":"NCBITaxon:1121393","l":"Desulfatibacillum alkenivorans DSM 16219","na":3,"nb":2,"a":[["sewage-plant-envo-00003043.html","sewage plant"],["waste-water-envo-00002001.html","waste water"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A259354","Desulfatibacillum alkenivorans"],["NCBITaxon%3A1121393","Desulfatibacillum alkenivorans DSM 16219"]]},{"id":"NCBITaxon:1121403","l":"Desulfogranum japonicum DSM 18378","na":3,"nb":2,"a":[["brackish-water-body-envo-01001321.html","brackish water body"],["estuary-envo-00000045.html","estuary"],["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["NCBITaxon%3A231447","Desulfogranum japonicum"],["NCBITaxon%3A1121403","Desulfogranum japonicum DSM 18378"]]},{"id":"NCBITaxon:1121406","l":"Desulfocurvus vexinensis DSM 17965","na":3,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["groundwater-envo-01001004.html","groundwater"],["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A399548","Desulfocurvus vexinensis"],["NCBITaxon%3A1121406","Desulfocurvus vexinensis DSM 17965"]]},{"id":"NCBITaxon:1121416","l":"Desulfopila aestuarii DSM 18488","na":3,"nb":2,"a":[["brackish-water-body-envo-01001321.html","brackish water body"],["estuary-envo-00000045.html","estuary"],["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["NCBITaxon%3A231440","Desulfopila aestuarii"],["NCBITaxon%3A1121416","Desulfopila aestuarii DSM 18488"]]},{"id":"NCBITaxon:1121423","l":"Desulfofalx alkaliphila DSM 12257","na":3,"nb":2,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["fecal-environment-envo-01001029.html","fecal environment"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A105483","Desulfofalx alkaliphila"],["NCBITaxon%3A1121423","Desulfofalx alkaliphila DSM 12257"]]},{"id":"NCBITaxon:1121429","l":"Desulforamulus putei DSM 12395","na":3,"nb":2,"a":[["ocean-trench-envo-00000275.html","ocean trench"],["drainage-basin-envo-00000291.html","drainage basin"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A74701","Desulforamulus putei"],["NCBITaxon%3A1121429","Desulforamulus putei DSM 12395"]]},{"id":"NCBITaxon:1121430","l":"Desulfofundulus thermocisternus DSM 10259","na":3,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A42471","Desulfofundulus thermocisternus"],["NCBITaxon%3A1121430","Desulfofundulus thermocisternus DSM 10259"]]},{"id":"NCBITaxon:1121431","l":"Desulfallas thermosapovorans DSM 6562","na":3,"nb":2,"a":[["agricultural-waste-material-envo-01000371.html","agricultural waste material"],["compost-envo-00002170.html","compost"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A58137","Desulfallas thermosapovorans"],["NCBITaxon%3A1121431","Desulfallas thermosapovorans DSM 6562"]]},{"id":"NCBITaxon:1121436","l":"Oleidesulfovibrio alaskensis DSM 16109","na":3,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A58180","Oleidesulfovibrio alaskensis"],["NCBITaxon%3A1121436","Oleidesulfovibrio alaskensis DSM 16109"]]},{"id":"NCBITaxon:1121463","l":"Desulfobaculum senezii DSM 8436","na":3,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"],["pond-envo-00000033.html","pond"],["saline-evaporation-pond-envo-00000055.html","saline evaporation pond"]],"b":[["NCBITaxon%3A76007","Desulfobaculum senezii"],["NCBITaxon%3A1121463","Desulfobaculum senezii DSM 8436"]]},{"id":"NCBITaxon:1121472","l":"Desulfurispora thermophila DSM 16022","na":3,"nb":2,"a":[["bioreactor-envo-00002123.html","bioreactor"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A265470","Desulfurispora thermophila"],["NCBITaxon%3A1121472","Desulfurispora thermophila DSM 16022"]]},{"id":"NCBITaxon:1121481","l":"Dyadobacter alkalitolerans DSM 23607","na":3,"nb":2,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"],["rock-envo-00001995.html","rock"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A492736","Dyadobacter alkalitolerans"],["NCBITaxon%3A1121481","Dyadobacter alkalitolerans DSM 23607"]]},{"id":"NCBITaxon:1121875","l":"Eudoraea adriatica DSM 19308","na":3,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"],["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A446681","Eudoraea adriatica"],["NCBITaxon%3A1121875","Eudoraea adriatica DSM 19308"]]},{"id":"NCBITaxon:1121881","l":"Ferrithrix thermotolerans DSM 19514","na":3,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"],["iucn-national-park-envo-00000367.html","IUCN national park"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A209649","Ferrithrix thermotolerans"],["NCBITaxon%3A1121881","Ferrithrix thermotolerans DSM 19514"]]},{"id":"NCBITaxon:1121890","l":"Flavobacterium frigidarium DSM 17623","na":3,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"],["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A99286","Flavobacterium frigidarium"],["NCBITaxon%3A1121890","Flavobacterium frigidarium DSM 17623"]]},{"id":"NCBITaxon:1121919","l":"Geosporobacter subterraneus DSM 17957","na":3,"nb":2,"a":[["ocean-trench-envo-00000275.html","ocean trench"],["drainage-basin-envo-00000291.html","drainage basin"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A390806","Geosporobacter subterraneus"],["NCBITaxon%3A1121919","Geosporobacter subterraneus DSM 17957"]]},{"id":"NCBITaxon:1121920","l":"Geothrix fermentans DSM 14018","na":3,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["oil-envo-00002985.html","oil"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A44676","Geothrix fermentans"],["NCBITaxon%3A1121920","Geothrix fermentans DSM 14018"]]},{"id":"NCBITaxon:1121935","l":"Hahella ganghwensis DSM 17046","na":3,"nb":2,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"],["island-envo-00000098.html","island"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A286420","Hahella ganghwensis"],["NCBITaxon%3A1121935","Hahella ganghwensis DSM 17046"]]},{"id":"NCBITaxon:1121942","l":"Modicisalibacter ilicicola DSM 19980","na":3,"nb":2,"a":[["pond-envo-00000033.html","pond"],["saline-evaporation-pond-envo-00000055.html","saline evaporation pond"],["mediterranean-envo-01000207.html","mediterranean"]],"b":[["NCBITaxon%3A480814","Modicisalibacter ilicicola"],["NCBITaxon%3A1121942","Modicisalibacter ilicicola DSM 19980"]]},{"id":"NCBITaxon:1121950","l":"Hespellia stercorisuis DSM 15480","na":3,"nb":2,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["fecal-environment-envo-01001029.html","fecal environment"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A180311","Hespellia stercorisuis"],["NCBITaxon%3A1121950","Hespellia stercorisuis DSM 15480"]]},{"id":"NCBITaxon:1121952","l":"Humibacter albus DSM 18994","na":3,"nb":2,"a":[["compost-envo-00002170.html","compost"],["sewage-envo-00002018.html","sewage"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A427754","Humibacter albus"],["NCBITaxon%3A1121952","Humibacter albus DSM 18994"]]},{"id":"NCBITaxon:1121959","l":"Hymenobacter psychrotolerans DSM 18569","na":3,"nb":2,"a":[["drainage-basin-envo-00000291.html","drainage basin"],["permafrost-envo-00000134.html","permafrost"],["plateau-envo-00000182.html","plateau"]],"b":[["NCBITaxon%3A344998","Hymenobacter psychrotolerans"],["NCBITaxon%3A1121959","Hymenobacter psychrotolerans DSM 18569"]]},{"id":"NCBITaxon:1122124","l":"Pseudidiomarina sediminum DSM 21906","na":3,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"],["undersea-feature-envo-00000104.html","undersea feature"]],"b":[["NCBITaxon%3A431675","Pseudidiomarina sediminum"],["NCBITaxon%3A1122124","Pseudidiomarina sediminum DSM 21906"]]},{"id":"NCBITaxon:1122133","l":"Kaistia soli DSM 19436","na":3,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A446684","Kaistia soli"],["NCBITaxon%3A1122133","Kaistia soli DSM 19436"]]},{"id":"NCBITaxon:1122134","l":"Kangiella aquimarina DSM 16071","na":3,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"],["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["NCBITaxon%3A261965","Kangiella aquimarina"],["NCBITaxon%3A1122134","Kangiella aquimarina DSM 16071"]]},{"id":"NCBITaxon:1122143","l":"Lacticigenium naphthae DSM 19658","na":3,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A515351","Lacticigenium naphthae"],["NCBITaxon%3A1122143","Lacticigenium naphthae DSM 19658"]]},{"id":"NCBITaxon:1122147","l":"Schleiferilactobacillus harbinensis DSM 16991","na":3,"nb":2,"a":[["food-product-foodon-00001002.html","food product"],["immune-system-bto-0005810.html","immune system"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A304207","Schleiferilactobacillus harbinensis"],["NCBITaxon%3A1122147","Schleiferilactobacillus harbinensis DSM 16991"]]},{"id":"NCBITaxon:1122148","l":"Fructilactobacillus lindneri DSM 20690 = JCM 11027","na":3,"nb":2,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["food-product-foodon-00001002.html","food product"],["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A53444","Fructilactobacillus lindneri"],["NCBITaxon%3A1122148","Fructilactobacillus lindneri DSM 20690 = JCM 11027"]]},{"id":"NCBITaxon:1122158","l":"Leeia oryzae DSM 17879","na":3,"nb":2,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A356662","Leeia oryzae"],["NCBITaxon%3A1122158","Leeia oryzae DSM 17879"]]},{"id":"NCBITaxon:1122176","l":"Lewinella cohaerens DSM 23179","na":3,"nb":2,"a":[["beach-envo-00000091.html","beach"],["intertidal-zone-envo-00000316.html","intertidal zone"],["sea-sand-envo-00002118.html","sea sand"]],"b":[["NCBITaxon%3A70995","Lewinella cohaerens"],["NCBITaxon%3A1122176","Lewinella cohaerens DSM 23179"]]},{"id":"NCBITaxon:1122197","l":"Marinobacter daepoensis DSM 16072","na":3,"nb":2,"a":[["beach-envo-00000091.html","beach"],["intertidal-zone-envo-00000316.html","intertidal zone"],["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A262077","Marinobacter daepoensis"],["NCBITaxon%3A1122197","Marinobacter daepoensis DSM 16072"]]},{"id":"NCBITaxon:1122211","l":"Marinospirillum insulare DSM 21763","na":3,"nb":2,"a":[["food-product-foodon-00001002.html","food product"],["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"],["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A217169","Marinospirillum insulare"],["NCBITaxon%3A1122211","Marinospirillum insulare DSM 21763"]]},{"id":"NCBITaxon:1122233","l":"Methermicoccus shengliensis DSM 18856","na":3,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A660064","Methermicoccus shengliensis"],["NCBITaxon%3A1122233","Methermicoccus shengliensis DSM 18856"]]},{"id":"NCBITaxon:1122599","l":"Neptunomonas japonica DSM 18939","na":3,"nb":2,"a":[["intertidal-zone-envo-00000316.html","intertidal zone"],["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A417574","Neptunomonas japonica"],["NCBITaxon%3A1122599","Neptunomonas japonica DSM 18939"]]},{"id":"NCBITaxon:1122612","l":"Novosphingobium acidiphilum DSM 19966","na":3,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A505248","Novosphingobium acidiphilum"],["NCBITaxon%3A1122612","Novosphingobium acidiphilum DSM 19966"]]},{"id":"NCBITaxon:1122614","l":"Pseudooceanicola nanhaiensis DSM 18065","na":3,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"],["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A375761","Pseudooceanicola nanhaiensis"],["NCBITaxon%3A1122614","Pseudooceanicola nanhaiensis DSM 18065"]]},{"id":"NCBITaxon:1122922","l":"Paenibacillus massiliensis subsp. panacisoli DSM 21345","na":2,"nb":3,"a":[["undersea-feature-envo-00000104.html","undersea feature"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A225917","Paenibacillus massiliensis"],["NCBITaxon%3A363858","Paenibacillus massiliensis subsp. panacisoli"],["NCBITaxon%3A1122922","Paenibacillus massiliensis subsp. panacisoli DSM 21345"]]},{"id":"NCBITaxon:1122958","l":"Phenylobacterium composti DSM 19425","na":3,"nb":2,"a":[["compost-envo-00002170.html","compost"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A457173","Phenylobacterium composti"],["NCBITaxon%3A1122958","Phenylobacterium composti DSM 19425"]]},{"id":"NCBITaxon:1123012","l":"Pseudobutyrivibrio xylanivorans DSM 14809","na":3,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"],["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"]],"b":[["NCBITaxon%3A185007","Pseudobutyrivibrio xylanivorans"],["NCBITaxon%3A1123012","Pseudobutyrivibrio xylanivorans DSM 14809"]]},{"id":"NCBITaxon:1123024","l":"Pseudonocardia asaccharolytica DSM 44247 = NBRC 16224","na":3,"nb":2,"a":[["compost-envo-00002170.html","compost"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"]],"b":[["NCBITaxon%3A54010","Pseudonocardia asaccharolytica"],["NCBITaxon%3A1123024","Pseudonocardia asaccharolytica DSM 44247 = NBRC 16224"]]},{"id":"NCBITaxon:1123226","l":"Saccharibacillus kuerlensis DSM 22868","na":3,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"],["desert-biome-envo-01000179.html","desert biome"],["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A459527","Saccharibacillus kuerlensis"],["NCBITaxon%3A1123226","Saccharibacillus kuerlensis DSM 22868"]]},{"id":"NCBITaxon:1123239","l":"Salsuginibacillus kocurii DSM 18087","na":3,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"],["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A427078","Salsuginibacillus kocurii"],["NCBITaxon%3A1123239","Salsuginibacillus kocurii DSM 18087"]]},{"id":"NCBITaxon:1123258","l":"","na":3,"nb":2,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"],["oil-envo-00002985.html","oil"]],"b":[["NCBITaxon%3A359359","Smaragdicoccus niigatensis"],["NCBITaxon%3A1123258","Smaragdicoccus niigatensis DSM 44881 = NBRC 103563"]]},{"id":"NCBITaxon:1123317","l":"Streptococcus sobrinus DSM 20742 = ATCC 33478","na":3,"nb":2,"a":[["biofilm-bto-0002690.html","biofilm"],["dental-plaque-uberon-0016482.html","dental plaque"],["tooth-bto-0000397.html","tooth"]],"b":[["NCBITaxon%3A1310","Streptococcus sobrinus"],["NCBITaxon%3A1123317","Streptococcus sobrinus DSM 20742 = ATCC 33478"]]},{"id":"NCBITaxon:1123350","l":"Tepidibacter thalassicus DSM 15285","na":3,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A214905","Tepidibacter thalassicus"],["NCBITaxon%3A1123350","Tepidibacter thalassicus DSM 15285"]]},{"id":"NCBITaxon:1123501","l":"Wenxinia marina DSM 24838","na":3,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"],["chemically-enriched-sediment-envo-00002114.html","chemically enriched sediment"],["oil-envo-00002985.html","oil"]],"b":[["NCBITaxon%3A390641","Wenxinia marina"],["NCBITaxon%3A1123501","Wenxinia marina DSM 24838"]]},{"id":"NCBITaxon:1123503","l":"Woodsholea maritima DSM 17123","na":3,"nb":2,"a":[["brackish-water-body-envo-01001321.html","brackish water body"],["estuary-envo-00000045.html","estuary"],["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["NCBITaxon%3A240237","Woodsholea maritima"],["NCBITaxon%3A1123503","Woodsholea maritima DSM 17123"]]},{"id":"NCBITaxon:1123517","l":"Thiomicrospira pelophila DSM 1534","na":3,"nb":2,"a":[["brackish-water-body-envo-01001321.html","brackish water body"],["estuary-envo-00000045.html","estuary"],["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["NCBITaxon%3A934","Thiomicrospira pelophila"],["NCBITaxon%3A1123517","Thiomicrospira pelophila DSM 1534"]]},{"id":"NCBITaxon:1150864","l":"Micromonospora lupini str. Lupac 08","na":3,"nb":2,"a":[["carcinoma-cell-bto-0000176.html","carcinoma cell"],["colonic-cancer-cell-bto-0000586.html","colonic cancer cell"],["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A285679","Micromonospora lupini"],["NCBITaxon%3A1150864","Micromonospora lupini str. Lupac 08"]]},{"id":"NCBITaxon:115335","l":"Actinomadura rubrobrunea","na":2,"nb":3,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A115335","Actinomadura rubrobrunea"],["NCBITaxon%3A1220567","Actinomadura rubrobrunea NBRC 15275"],["NCBITaxon%3A58112","Actinomadura viridilutea"]]},{"id":"NCBITaxon:115781","l":"Desulfotignum balticum","na":3,"nb":2,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A115781","Desulfotignum balticum"],["NCBITaxon%3A1304886","Desulfotignum balticum DSM 7044"]]},{"id":"NCBITaxon:117506","l":"Comamonas denitrificans","na":3,"nb":2,"a":[["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["NCBITaxon%3A117506","Comamonas denitrificans"],["NCBITaxon%3A1713625","Marinococcus salis"]]},{"id":"NCBITaxon:117681","l":"Pseudomonas gingeri","na":3,"nb":2,"a":[["lake-envo-00000020.html","lake"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"]],"b":[["NCBITaxon%3A117681","Pseudomonas gingeri"],["NCBITaxon%3A707248","Pseudomonas gingeri NCPPB 3146 = LMG 5327"]]},{"id":"NCBITaxon:1177117","l":"Vreelandella stevensii S18214","na":3,"nb":2,"a":[["biofilm-bto-0002690.html","biofilm"],["brain-bto-0000142.html","brain"],["heart-bto-0000562.html","heart"]],"b":[["NCBITaxon%3A502821","Vreelandella stevensii"],["NCBITaxon%3A1177117","Vreelandella stevensii S18214"]]},{"id":"NCBITaxon:1212491","l":"Legionella fallonii LLAP-10","na":3,"nb":2,"a":[["flagellum-bto-0002292.html","flagellum"],["lung-bto-0000763.html","lung"],["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A96230","Legionella fallonii"],["NCBITaxon%3A1212491","Legionella fallonii LLAP-10"]]},{"id":"NCBITaxon:121428","l":"Sphingobium xenophagum","na":2,"nb":3,"a":[["sludge-envo-00002044.html","sludge"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A121428","Sphingobium xenophagum"],["NCBITaxon%3A1219037","Sphingobium xenophagum NBRC 107872"],["NCBITaxon%3A1192759","Sphingobium xenophagum QYY"]]},{"id":"NCBITaxon:1215095","l":"Pseudomonas chlororaphis subsp. aureofaciens NBRC 3521","na":2,"nb":3,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A587753","Pseudomonas chlororaphis"],["NCBITaxon%3A587851","Pseudomonas chlororaphis subsp. aureofaciens"],["NCBITaxon%3A1215095","Pseudomonas chlororaphis subsp. aureofaciens NBRC 3521"]]},{"id":"NCBITaxon:1220595","l":"Geobacillus kaustophilus NBRC 102445","na":3,"nb":2,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A1462","Geobacillus kaustophilus"],["NCBITaxon%3A1220595","Geobacillus kaustophilus NBRC 102445"]]},{"id":"NCBITaxon:1223541","l":"Gordonia hydrophobica NBRC 16057","na":3,"nb":2,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A40516","Gordonia hydrophobica"],["NCBITaxon%3A1223541","Gordonia hydrophobica NBRC 16057"]]},{"id":"NCBITaxon:123899","l":"Bordetella trematum","na":2,"nb":3,"a":[["bone-element-uberon-0001474.html","bone element"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["NCBITaxon%3A123899","Bordetella trematum"],["NCBITaxon%3A1392839","Bordetella trematum CCUG 13902"],["NCBITaxon%3A1496","Clostridioides difficile"]]},{"id":"NCBITaxon:1238993","l":"Mycoplasmoides pneumoniae M129-B7","na":3,"nb":2,"a":[["biofilm-bto-0002690.html","biofilm"],["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A2104","Mycoplasmoides pneumoniae"],["NCBITaxon%3A1238993","Mycoplasmoides pneumoniae M129-B7"]]},{"id":"NCBITaxon:1255632","l":"Ornithinibacillus bavariensis CIP 109287","na":3,"nb":2,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A545502","Ornithinibacillus bavariensis"],["NCBITaxon%3A1255632","Ornithinibacillus bavariensis CIP 109287"]]},{"id":"NCBITaxon:1257041","l":"Streptococcus mutans ATCC 25175","na":2,"nb":3,"a":[["biofilm-bto-0002690.html","biofilm"],["tooth-bto-0000397.html","tooth"]],"b":[["NCBITaxon%3A1309","Streptococcus mutans"],["NCBITaxon%3A1257041","Streptococcus mutans ATCC 25175"],["NCBITaxon%3A1123310","Streptococcus mutans DSM 20523"]]},{"id":"NCBITaxon:1266720","l":"Neomoorella stamsii","na":2,"nb":3,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A539813","Enterobacter mori"],["NCBITaxon%3A980518","Enterobacter mori LMG 25706"],["NCBITaxon%3A1266720","Neomoorella stamsii"]]},{"id":"NCBITaxon:1278307","l":"Psychromonas ossibalaenae ATCC BAA-1528","na":3,"nb":2,"a":[["intertidal-zone-envo-00000316.html","intertidal zone"],["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A444922","Psychromonas ossibalaenae"],["NCBITaxon%3A1278307","Psychromonas ossibalaenae ATCC BAA-1528"]]},{"id":"NCBITaxon:1280706","l":"Selenomonas ruminantium subsp. ruminantium ATCC 12561","na":2,"nb":3,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A971","Pseudoselenomonas ruminantium"],["NCBITaxon%3A114196","Selenomonas ruminantium subsp. ruminantium"],["NCBITaxon%3A1280706","Selenomonas ruminantium subsp. ruminantium ATCC 12561"]]},{"id":"NCBITaxon:1281","l":"Staphylococcus carnosus","na":2,"nb":3,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A1281","Staphylococcus carnosus"],["NCBITaxon%3A1158532","Staphylococcus carnosus M0504"],["NCBITaxon%3A396513","Staphylococcus carnosus subsp. carnosus TM300"]]},{"id":"NCBITaxon:1295","l":"Staphylococcus schleiferi","na":2,"nb":3,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["foot-bto-0000476.html","foot"]],"b":[["NCBITaxon%3A74706","Staphylococcus coagulans"],["NCBITaxon%3A1295","Staphylococcus schleiferi"],["NCBITaxon%3A74707","Staphylococcus schleiferi subsp. schleiferi"]]},{"id":"NCBITaxon:1322345","l":"Escherichia coli ATCC 25922","na":2,"nb":3,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1322345","Escherichia coli ATCC 25922"],["NCBITaxon%3A1236527","Escherichia coli JCM 5491"]]},{"id":"NCBITaxon:133552","l":"Methylocapsa acidiphila","na":3,"nb":2,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A133552","Methylocapsa acidiphila"],["NCBITaxon%3A395964","Methylocapsa acidiphila B2"]]},{"id":"NCBITaxon:133924","l":"Leisingera methylohalidivorans","na":3,"nb":2,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A133924","Leisingera methylohalidivorans"],["NCBITaxon%3A999552","Leisingera methylohalidivorans DSM 14336"]]},{"id":"NCBITaxon:136093","l":"Globicatella sulfidifaciens","na":2,"nb":3,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A62321","Globicatella sp."],["NCBITaxon%3A136093","Globicatella sulfidifaciens"],["NCBITaxon%3A1121925","Globicatella sulfidifaciens DSM 15739"]]},{"id":"NCBITaxon:13684","l":"Parastagonospora nodorum","na":2,"nb":3,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["desert-sand-envo-00005800.html","desert sand"]],"b":[["NCBITaxon%3A13684","Parastagonospora nodorum"],["NCBITaxon%3A1211001","Parastagonospora nodorum Sn4"],["NCBITaxon%3A1211002","Parastagonospora nodorum Sn79"]]},{"id":"NCBITaxon:137722","l":"Azospirillum sp. B510","na":3,"nb":2,"a":[["pond-water-envo-00002228.html","pond water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["NCBITaxon%3A34012","Azospirillum sp."],["NCBITaxon%3A137722","Azospirillum sp. B510"]]},{"id":"NCBITaxon:1383","l":"Lancefieldella rimae","na":3,"nb":2,"a":[["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"],["sgs-cell-bto-0001210.html","SGS cell"]],"b":[["NCBITaxon%3A1383","Lancefieldella rimae"],["NCBITaxon%3A553184","Lancefieldella rimae ATCC 49626"]]},{"id":"NCBITaxon:1408433","l":"Crocinitomix catalasitica ATCC 23190","na":3,"nb":2,"a":[["beach-envo-00000091.html","beach"],["intertidal-zone-envo-00000316.html","intertidal zone"],["sea-sand-envo-00002118.html","sea sand"]],"b":[["NCBITaxon%3A184607","Crocinitomix catalasitica"],["NCBITaxon%3A1408433","Crocinitomix catalasitica ATCC 23190"]]},{"id":"NCBITaxon:1408441","l":"Helicobacter bilis ATCC 51630","na":3,"nb":2,"a":[["epithelium-bto-0000416.html","epithelium"],["ht-29-cell-bto-0000182.html","HT-29 cell"],["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"]]},{"id":"NCBITaxon:1451","l":"Paenibacillus amylolyticus","na":3,"nb":2,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["NCBITaxon%3A1451","Paenibacillus amylolyticus"],["NCBITaxon%3A59846","Paenibacillus chibensis"]]},{"id":"NCBITaxon:145996","l":"","na":3,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"],["mineral-material-envo-01000256.html","mineral material"],["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A2030","Kibdelosporangium aridum"],["NCBITaxon%3A145996","Kibdelosporangium aridum subsp. largum"]]},{"id":"NCBITaxon:146919","l":"Salinibacter ruber","na":2,"nb":3,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A146919","Salinibacter ruber"],["NCBITaxon%3A309807","Salinibacter ruber DSM 13855"],["NCBITaxon%3A761659","Salinibacter ruber M8"]]},{"id":"NCBITaxon:148814","l":"Apilactobacillus kunkeei","na":2,"nb":3,"a":[["fruit-bto-0000486.html","fruit"],["honey-bto-0000605.html","honey"]],"b":[["NCBITaxon%3A148814","Apilactobacillus kunkeei"],["NCBITaxon%3A1423768","Apilactobacillus kunkeei DSM 12361 = ATCC 700308"],["NCBITaxon%3A1419324","Apilactobacillus kunkeei EFB6"]]},{"id":"NCBITaxon:1511749","l":"Geobacillus thermodenitrificans subsp. thermodenitrificans","na":2,"nb":3,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A33940","Geobacillus thermodenitrificans"],["NCBITaxon%3A1511749","Geobacillus thermodenitrificans subsp. thermodenitrificans"],["NCBITaxon%3A1413215","Geobacillus thermodenitrificans subsp. thermodenitrificans DSM 465"]]},{"id":"NCBITaxon:152500","l":"Burkholderia dolosa","na":2,"nb":3,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A152500","Burkholderia dolosa"],["NCBITaxon%3A350701","Burkholderia dolosa AU0158"],["NCBITaxon%3A1385930","Burkholderia dolosa PC543"]]},{"id":"NCBITaxon:153376","l":"Pseudonocardia zijingensis","na":3,"nb":2,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A682979","Microlunatus parietis"],["NCBITaxon%3A153376","Pseudonocardia zijingensis"]]},{"id":"NCBITaxon:153496","l":"Kozakia baliensis","na":3,"nb":2,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"],["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A153496","Kozakia baliensis"],["NCBITaxon%3A1307929","Kozakia baliensis NRIC 0488"]]},{"id":"NCBITaxon:1548018","l":"Helicobacter saguini","na":2,"nb":3,"a":[["epithelium-bto-0000416.html","epithelium"],["ht-29-cell-bto-0000182.html","HT-29 cell"]],"b":[["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"],["NCBITaxon%3A1548018","Helicobacter saguini"]]},{"id":"NCBITaxon:1548147","l":"Helicobacter sp. MIT 03-1614","na":2,"nb":3,"a":[["epithelium-bto-0000416.html","epithelium"],["ht-29-cell-bto-0000182.html","HT-29 cell"]],"b":[["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"],["NCBITaxon%3A1548147","Helicobacter sp. MIT 03-1614"]]},{"id":"NCBITaxon:1548148","l":"Helicobacter sp. MIT 03-1616","na":2,"nb":3,"a":[["epithelium-bto-0000416.html","epithelium"],["ht-29-cell-bto-0000182.html","HT-29 cell"]],"b":[["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"],["NCBITaxon%3A1548148","Helicobacter sp. MIT 03-1616"]]},{"id":"NCBITaxon:1548149","l":"Helicobacter sp. MIT 05-5293","na":2,"nb":3,"a":[["epithelium-bto-0000416.html","epithelium"],["ht-29-cell-bto-0000182.html","HT-29 cell"]],"b":[["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"],["NCBITaxon%3A1548149","Helicobacter sp. MIT 05-5293"]]},{"id":"NCBITaxon:1548150","l":"Helicobacter sp. MIT 05-5294","na":2,"nb":3,"a":[["epithelium-bto-0000416.html","epithelium"],["ht-29-cell-bto-0000182.html","HT-29 cell"]],"b":[["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"],["NCBITaxon%3A1548150","Helicobacter sp. MIT 05-5294"]]},{"id":"NCBITaxon:1548151","l":"Helicobacter sp. MIT 11-5569","na":2,"nb":3,"a":[["epithelium-bto-0000416.html","epithelium"],["ht-29-cell-bto-0000182.html","HT-29 cell"]],"b":[["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"],["NCBITaxon%3A1548151","Helicobacter sp. MIT 11-5569"]]},{"id":"NCBITaxon:1548153","l":"Campylobacter sp. MIT 97-5078","na":2,"nb":3,"a":[["epithelium-bto-0000416.html","epithelium"],["ht-29-cell-bto-0000182.html","HT-29 cell"]],"b":[["NCBITaxon%3A1548153","Campylobacter sp. MIT 97-5078"],["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"]]},{"id":"NCBITaxon:1553","l":"Clostridium tetanomorphum","na":2,"nb":3,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"]],"b":[["NCBITaxon%3A1494","Clostridium cochlearium"],["NCBITaxon%3A1553","Clostridium tetanomorphum"],["NCBITaxon%3A1230342","Clostridium tetanomorphum DSM 665"]]},{"id":"NCBITaxon:1605","l":"Ligilactobacillus animalis","na":2,"nb":3,"a":[["animal-litter-envo-00002191.html","animal litter"],["cropland-biome-envo-01000245.html","cropland biome"]],"b":[["NCBITaxon%3A1591","Lactobacillus sp."],["NCBITaxon%3A1605","Ligilactobacillus animalis"],["NCBITaxon%3A930942","Ligilactobacillus animalis KCTC 3501 = DSM 20602"]]},{"id":"NCBITaxon:161493","l":"Anaeromyxobacter dehalogenans","na":2,"nb":3,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A161493","Anaeromyxobacter dehalogenans"],["NCBITaxon%3A455488","Anaeromyxobacter dehalogenans 2CP-1"],["NCBITaxon%3A290397","Anaeromyxobacter dehalogenans 2CP-C"]]},{"id":"NCBITaxon:1629","l":"Weissella viridescens","na":3,"nb":2,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A1896315","Weissella sp."],["NCBITaxon%3A1629","Weissella viridescens"]]},{"id":"NCBITaxon:1658","l":"Actinomyces bovis","na":2,"nb":3,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A1658","Actinomyces bovis"],["NCBITaxon%3A29317","Actinomyces sp."],["NCBITaxon%3A1648","Erysipelothrix rhusiopathiae"]]},{"id":"NCBITaxon:1677920","l":"Helicobacter jaachi","na":2,"nb":3,"a":[["epithelium-bto-0000416.html","epithelium"],["ht-29-cell-bto-0000182.html","HT-29 cell"]],"b":[["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"],["NCBITaxon%3A1677920","Helicobacter jaachi"]]},{"id":"NCBITaxon:168275","l":"Psychromonas arctica","na":3,"nb":2,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A168275","Psychromonas arctica"],["NCBITaxon%3A1123036","Psychromonas arctica DSM 14288"]]},{"id":"NCBITaxon:168471","l":"Laribacter hongkongensis","na":2,"nb":3,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"]],"b":[["NCBITaxon%3A168471","Laribacter hongkongensis"],["NCBITaxon%3A1122157","Laribacter hongkongensis DSM 14985"],["NCBITaxon%3A557598","Laribacter hongkongensis HLHK9"]]},{"id":"NCBITaxon:1713","l":"Oerskovia turbata","na":2,"nb":3,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A162169","Oerskovia jenensis"],["NCBITaxon%3A1713","Oerskovia turbata"],["NCBITaxon%3A1322249","Oerskovia turbata NBRC 15015"]]},{"id":"NCBITaxon:176299","l":"Agrobacterium fabrum (strain C58 / ATCC 33970)","na":2,"nb":3,"a":[["human-construction-envo-00000070.html","human construction"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["NCBITaxon%3A1176649","Agrobacterium fabrum"],["NCBITaxon%3A176299","Agrobacterium fabrum str. C58"],["NCBITaxon%3A362","Agrobacterium radiobacter"]]},{"id":"NCBITaxon:1785","l":"Mycobacterium sp.","na":2,"nb":3,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"],["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["NCBITaxon%3A722731","Mycobacterium shigaense"],["NCBITaxon%3A1785","Mycobacterium sp."],["NCBITaxon%3A1792835","Mycolicibacter icosiumassiliensis"]]},{"id":"NCBITaxon:1796613","l":"Bacteroides caecimuris","na":3,"nb":2,"a":[["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["secretion-bto-0002979.html","secretion"]],"b":[["NCBITaxon%3A1796613","Bacteroides caecimuris"],["NCBITaxon%3A2516959","Bacteroides caecimuris NM63_1-25"]]},{"id":"NCBITaxon:180282","l":"Delftia tsuruhatensis","na":2,"nb":3,"a":[["surface-water-envo-00002042.html","surface water"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["NCBITaxon%3A180282","Delftia tsuruhatensis"],["NCBITaxon%3A1280939","Delftia tsuruhatensis ARB"],["NCBITaxon%3A1220577","Delftia tsuruhatensis NBRC 16741"]]},{"id":"NCBITaxon:180295","l":"Atopostipes suicloacalis","na":3,"nb":2,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["skin-environment-envo-2100003.html","skin environment"],["cropland-biome-envo-01000245.html","cropland biome"]],"b":[["NCBITaxon%3A180295","Atopostipes suicloacalis"],["NCBITaxon%3A1121025","Atopostipes suicloacalis DSM 15692"]]},{"id":"NCBITaxon:185008","l":"Butyrivibrio hungatei","na":2,"nb":3,"a":[["animal-habitation-envo-00005803.html","animal habitation"],["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["NCBITaxon%3A185008","Butyrivibrio hungatei"],["NCBITaxon%3A1121132","Butyrivibrio hungatei DSM 14810"],["NCBITaxon%3A877422","Butyrivibrio hungatei NK4A153"]]},{"id":"NCBITaxon:185294","l":"Segatella paludivivens","na":3,"nb":2,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["research-facility-envo-00000469.html","research facility"]],"b":[["NCBITaxon%3A185294","Segatella paludivivens"],["NCBITaxon%3A1122990","Segatella paludivivens DSM 17968 = JCM 13650"]]},{"id":"NCBITaxon:188908","l":"Oleispira antarctica","na":3,"nb":2,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A188908","Oleispira antarctica"],["NCBITaxon%3A698738","Oleispira antarctica RB-8"]]},{"id":"NCBITaxon:190304","l":"","na":2,"nb":3,"a":[["fibroblast-bto-0000452.html","fibroblast"],["gingival-epithelium-bto-0004998.html","gingival epithelium"]],"b":[["NCBITaxon%3A851","Fusobacterium nucleatum"],["NCBITaxon%3A76856","Fusobacterium nucleatum subsp. nucleatum"],["NCBITaxon%3A190304","Fusobacterium nucleatum subsp. nucleatum ATCC 25586"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":3,"nb":2,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A1928","Streptomyces rochei"],["NCBITaxon%3A885435","Streptomyces rochei subsp. volubilis"]]},{"id":"NCBITaxon:197222","l":"Paraglaciecola mesophila","na":3,"nb":2,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A197222","Paraglaciecola mesophila"],["NCBITaxon%3A1128912","Paraglaciecola mesophila KMM 241"]]},{"id":"NCBITaxon:2026","l":"Thermoactinomyces vulgaris","na":2,"nb":3,"a":[["air-conditioning-unit-envo-00002874.html","air conditioning unit"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"]],"b":[["NCBITaxon%3A58112","Actinomadura viridilutea"],["NCBITaxon%3A37482","Laceyella sacchari"],["NCBITaxon%3A2026","Thermoactinomyces vulgaris"]]},{"id":"NCBITaxon:202747","l":"Sulfurimonas autotrophica","na":3,"nb":2,"a":[["black-smoker-envo-00000218.html","black smoker"],["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["volcanic-rock-envo-00002015.html","volcanic rock"]],"b":[["NCBITaxon%3A202747","Sulfurimonas autotrophica"],["NCBITaxon%3A563040","Sulfurimonas autotrophica DSM 16294"]]},{"id":"NCBITaxon:2108","l":"Mycoplasma sp.","na":3,"nb":2,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["post-mortem-habitatmech-bacdive-4e5b25adcb.html","Post-mortem"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A2499220","Mycoplasma enhydrae"],["NCBITaxon%3A2108","Mycoplasma sp."]]},{"id":"NCBITaxon:213810","l":"Ruminococcus champanellensis 18P13 = JCM 17042","na":3,"nb":2,"a":[["environmental-feature-envo-00002297.html","environmental feature"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["pig-manure-envo-00003860.html","pig manure"]],"b":[["NCBITaxon%3A1161942","Ruminococcus champanellensis"],["NCBITaxon%3A213810","Ruminococcus champanellensis 18P13 = JCM 17042"]]},{"id":"NCBITaxon:214856","l":"Alistipes finegoldii","na":2,"nb":3,"a":[["environmental-feature-envo-00002297.html","environmental feature"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A214856","Alistipes finegoldii"],["NCBITaxon%3A1263035","Alistipes finegoldii CAG:68"],["NCBITaxon%3A679935","Alistipes finegoldii DSM 17242"]]},{"id":"NCBITaxon:216","l":"Helicobacter muridarum","na":2,"nb":3,"a":[["epithelium-bto-0000416.html","epithelium"],["ht-29-cell-bto-0000182.html","HT-29 cell"]],"b":[["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"],["NCBITaxon%3A216","Helicobacter muridarum"]]},{"id":"NCBITaxon:224999","l":"Tepidanaerobacter syntrophicus","na":3,"nb":2,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A224999","Tepidanaerobacter syntrophicus"],["NCBITaxon%3A1123348","Tepidanaerobacter syntrophicus DSM 15584"]]},{"id":"NCBITaxon:228405","l":"Hyphomonas neptunium ATCC 15444","na":3,"nb":2,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"],["pond-water-envo-00002228.html","pond water"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["NCBITaxon%3A81032","Hyphomonas neptunium"],["NCBITaxon%3A228405","Hyphomonas neptunium ATCC 15444"]]},{"id":"NCBITaxon:232991","l":"Dulcicalothrix desertica PCC 7102","na":3,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"],["desert-area-envo-00000097.html","desert area"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A32056","Dulcicalothrix desertica"],["NCBITaxon%3A232991","Dulcicalothrix desertica PCC 7102"]]},{"id":"NCBITaxon:2353","l":"Flexispira","na":2,"nb":3,"a":[["cecum-mucosa-bto-0000213.html","cecum mucosa"],["mucosa-bto-0000886.html","mucosa"]],"b":[["NCBITaxon%3A2354","Flexispira rappini"],["NCBITaxon%3A98428","Flexispira sp. CDC-H69"],["NCBITaxon%3A1776876","uncultured Flexispira sp."]]},{"id":"NCBITaxon:240015","l":"Acidobacterium capsulatum ATCC 51196","na":3,"nb":2,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A33075","Acidobacterium capsulatum"],["NCBITaxon%3A240015","Acidobacterium capsulatum ATCC 51196"]]},{"id":"NCBITaxon:243161","l":"Chlamydia muridarum (strain MoPn / Nigg)","na":3,"nb":2,"a":[["cervical-adenocarcinoma-cell-bto-0003165.html","cervical adenocarcinoma cell"],["fibroblast-bto-0000452.html","fibroblast"],["hela-229-cell-bto-0005030.html","HeLa-229 cell"]],"b":[["NCBITaxon%3A243161","Chlamydia muridarum str. Nigg"],["NCBITaxon%3A1434773","Chlamydia muridarum str. Nigg CM972"]]},{"id":"NCBITaxon:245188","l":"Yoonia vestfoldensis","na":2,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"],["sandstone-envo-00002055.html","sandstone"]],"b":[["NCBITaxon%3A245188","Yoonia vestfoldensis"],["NCBITaxon%3A1122181","Yoonia vestfoldensis DSM 16212"],["NCBITaxon%3A314232","Yoonia vestfoldensis SKA53"]]},{"id":"NCBITaxon:278137","l":"Mycolicibacterium gilvum Spyr1","na":3,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"],["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A1804","Mycolicibacterium gilvum"],["NCBITaxon%3A278137","Mycolicibacterium gilvum Spyr1"]]},{"id":"NCBITaxon:28042","l":"Saccharopolyspora rectivirgula","na":2,"nb":3,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["desert-sand-envo-00005800.html","desert sand"]],"b":[["NCBITaxon%3A28042","Saccharopolyspora rectivirgula"],["NCBITaxon%3A1283279","Saccharopolyspora rectivirgula DSM 43747"],["NCBITaxon%3A37926","Thermocrispum municipale"]]},{"id":"NCBITaxon:28220","l":"Allobrachymonas denitrificans","na":3,"nb":2,"a":[["factory-envo-01000536.html","factory"],["archeological-site-envo-00000564.html","archeological site"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["NCBITaxon%3A28220","Allobrachymonas denitrificans"],["NCBITaxon%3A1121117","Allobrachymonas denitrificans DSM 15123"]]},{"id":"NCBITaxon:28264","l":"Arcanobacterium haemolyticum","na":2,"nb":3,"a":[["foot-bto-0000476.html","foot"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"]],"b":[["NCBITaxon%3A28264","Arcanobacterium haemolyticum"],["NCBITaxon%3A644284","Arcanobacterium haemolyticum DSM 20595"],["NCBITaxon%3A1328","Streptococcus anginosus"]]},{"id":"NCBITaxon:28454","l":"Sphingobacterium multivorum","na":3,"nb":2,"a":[["mud-envo-01000001.html","mud"],["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A28454","Sphingobacterium multivorum"],["NCBITaxon%3A1123264","Sphingobacterium multivorum DSM 11691"]]},{"id":"NCBITaxon:286730","l":"Alkaliflexus imshenetskii","na":3,"nb":2,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["NCBITaxon%3A286730","Alkaliflexus imshenetskii"],["NCBITaxon%3A927658","Alkaliflexus imshenetskii DSM 15055"]]},{"id":"NCBITaxon:28898","l":"Campylobacter helveticus","na":2,"nb":3,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["NCBITaxon%3A28898","Campylobacter helveticus"],["NCBITaxon%3A1031739","Campylobacter helveticus CCUG 30566"],["NCBITaxon%3A28080","Campylobacter upsaliensis"]]},{"id":"NCBITaxon:290398","l":"","na":3,"nb":2,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["saline-evaporation-pond-envo-00000055.html","saline evaporation pond"],["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A141390","Chromohalobacter israelensis"],["NCBITaxon%3A290398","Chromohalobacter israelensis DSM 3043"]]},{"id":"NCBITaxon:29405","l":"Microlunatus phosphovorus","na":3,"nb":2,"a":[["water-scum-envo-00005794.html","water scum"],["orchard-envo-00000115.html","orchard"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["NCBITaxon%3A29405","Microlunatus phosphovorus"],["NCBITaxon%3A1032480","Microlunatus phosphovorus NM-1"]]},{"id":"NCBITaxon:312153","l":"Polynucleobacter asymbioticus QLW-P1DMWA-1","na":3,"nb":2,"a":[["large-river-biome-envo-00000887.html","large river biome"],["joint-bto-0001686.html","joint"],["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A576611","Polynucleobacter asymbioticus"],["NCBITaxon%3A312153","Polynucleobacter asymbioticus QLW-P1DMWA-1"]]},{"id":"NCBITaxon:313595","l":"Psychroflexus torquis ATCC 700755","na":3,"nb":2,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["coral-reef-envo-00000150.html","coral reef"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["NCBITaxon%3A57029","Psychroflexus torquis"],["NCBITaxon%3A313595","Psychroflexus torquis ATCC 700755"]]},{"id":"NCBITaxon:313606","l":"Microscilla marina ATCC 23134","na":3,"nb":2,"a":[["coral-reef-envo-00000150.html","coral reef"],["liquid-water-envo-00002006.html","liquid water"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["NCBITaxon%3A1027","Microscilla marina"],["NCBITaxon%3A313606","Microscilla marina ATCC 23134"]]},{"id":"NCBITaxon:317655","l":"Sphingopyxis alaskensis RB2256","na":3,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["environmental-material-envo-00010483.html","environmental material"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["NCBITaxon%3A117207","Sphingopyxis alaskensis"],["NCBITaxon%3A317655","Sphingopyxis alaskensis RB2256"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans Pd1222","na":2,"nb":3,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["NCBITaxon%3A266","Paracoccus denitrificans"],["NCBITaxon%3A1302247","Paracoccus denitrificans JCM 21484"],["NCBITaxon%3A318586","Paracoccus denitrificans PD1222"]]},{"id":"NCBITaxon:320497","l":"Neoasaia chiangmaiensis","na":3,"nb":2,"a":[["research-facility-envo-00000469.html","research facility"],["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A320497","Neoasaia chiangmaiensis"],["NCBITaxon%3A1307930","Neoasaia chiangmaiensis NBRC 101099"]]},{"id":"NCBITaxon:326298","l":"Sulfurimonas denitrificans DSM 1251","na":3,"nb":2,"a":[["estuary-envo-00000045.html","estuary"],["underground-water-envo-00005792.html","underground water"],["estuarine-mud-envo-00002160.html","estuarine mud"]],"b":[["NCBITaxon%3A39766","Sulfurimonas denitrificans"],["NCBITaxon%3A326298","Sulfurimonas denitrificans DSM 1251"]]},{"id":"NCBITaxon:326442","l":"Pseudoalteromonas translucida TAC125","na":3,"nb":2,"a":[["bay-envo-00000032.html","bay"],["coastal-water-body-envo-02000049.html","coastal water body"],["saline-water-envo-00002010.html","saline water"]],"b":[["NCBITaxon%3A166935","Pseudoalteromonas translucida"],["NCBITaxon%3A326442","Pseudoalteromonas translucida TAC125"]]},{"id":"NCBITaxon:33028","l":"Staphylococcus saccharolyticus","na":3,"nb":2,"a":[["bone-element-uberon-0001474.html","bone element"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["NCBITaxon%3A45972","Staphylococcus pasteuri"],["NCBITaxon%3A33028","Staphylococcus saccharolyticus"]]},{"id":"NCBITaxon:335543","l":"","na":3,"nb":2,"a":[["anaerobic-sludge-envo-00002129.html","anaerobic sludge"],["submerged-bed-envo-00000501.html","submerged bed"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A119484","Syntrophobacter fumaroxidans"],["NCBITaxon%3A335543","Syntrophobacter fumaroxidans MPOB"]]},{"id":"NCBITaxon:33889","l":"Brevibacterium casei","na":2,"nb":3,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"]],"b":[["NCBITaxon%3A33889","Brevibacterium casei"],["NCBITaxon%3A1255625","Brevibacterium casei CIP 102111"],["NCBITaxon%3A1229781","Brevibacterium casei S18"]]},{"id":"NCBITaxon:340102","l":"","na":3,"nb":2,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"],["solfatara-envo-00000217.html","solfatara"]],"b":[["NCBITaxon%3A121277","Pyrobaculum arsenaticum"],["NCBITaxon%3A340102","Pyrobaculum arsenaticum DSM 13514"]]},{"id":"NCBITaxon:344747","l":"Gimesia maris DSM 8797","na":3,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["shoreline-envo-00000486.html","shoreline"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A122","Gimesia maris"],["NCBITaxon%3A344747","Gimesia maris DSM 8797"]]},{"id":"NCBITaxon:37329","l":"Nocardia farcinica","na":2,"nb":3,"a":[["hospital-envo-00002173.html","hospital"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["NCBITaxon%3A37329","Nocardia farcinica"],["NCBITaxon%3A247156","Nocardia farcinica IFM 10152"],["NCBITaxon%3A1210076","Nocardia farcinica NBRC 15532"]]},{"id":"NCBITaxon:391624","l":"Sulfitobacter indolifex HEL-45","na":3,"nb":2,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["oligotrophic-water-envo-00002223.html","oligotrophic water"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A225422","Sulfitobacter indolifex"],["NCBITaxon%3A391624","Sulfitobacter indolifex HEL-45"]]},{"id":"NCBITaxon:39488","l":"Anaerobutyricum hallii","na":2,"nb":3,"a":[["emulsion-envo-00010506.html","emulsion"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A39488","Anaerobutyricum hallii"],["NCBITaxon%3A1263078","Anaerobutyricum hallii CAG:12"],["NCBITaxon%3A411469","Anaerobutyricum hallii DSM 3353"]]},{"id":"NCBITaxon:395965","l":"Methylocella silvestris BL2","na":3,"nb":2,"a":[["cambisol-envo-00002235.html","cambisol"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A199596","Methylocella silvestris"],["NCBITaxon%3A395965","Methylocella silvestris BL2"]]},{"id":"NCBITaxon:399550","l":"Staphylothermus marinus F1","na":3,"nb":2,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A2280","Staphylothermus marinus"],["NCBITaxon%3A399550","Staphylothermus marinus F1"]]},{"id":"NCBITaxon:401053","l":"Terriglobus saanensis SP1PR4","na":3,"nb":2,"a":[["bulk-soil-envo-00005802.html","bulk soil"],["forested-area-envo-00000111.html","forested area"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A870903","Terriglobus saanensis"],["NCBITaxon%3A401053","Terriglobus saanensis SP1PR4"]]},{"id":"NCBITaxon:402881","l":"Parvibaculum lavamentivorans DS-1","na":3,"nb":2,"a":[["sewage-plant-envo-00003043.html","sewage plant"],["cold-environment-envo-01000309.html","cold environment"],["environmental-material-envo-00010483.html","environmental material"]],"b":[["NCBITaxon%3A256618","Parvibaculum lavamentivorans"],["NCBITaxon%3A402881","Parvibaculum lavamentivorans DS-1"]]},{"id":"NCBITaxon:411901","l":"Bacteroides caccae ATCC 43185","na":3,"nb":2,"a":[["bay-envo-00000032.html","bay"],["animal-habitation-envo-00005803.html","animal habitation"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["NCBITaxon%3A47678","Bacteroides caccae"],["NCBITaxon%3A411901","Bacteroides caccae ATCC 43185"]]},{"id":"NCBITaxon:418699","l":"","na":3,"nb":2,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A418699","Azoarcus olearius"],["NCBITaxon%3A29544","Azoarcus sp."]]},{"id":"NCBITaxon:441209","l":"Roseinatronobacter bogoriensis subsp. barguzinensis","na":3,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"],["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A119542","Roseinatronobacter bogoriensis"],["NCBITaxon%3A441209","Roseinatronobacter bogoriensis subsp. barguzinensis"]]},{"id":"NCBITaxon:445973","l":"Intestinibacter bartlettii DSM 16795","na":2,"nb":3,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A261299","Intestinibacter bartlettii"],["NCBITaxon%3A445973","Intestinibacter bartlettii DSM 16795"],["NCBITaxon%3A36841","Terrisporobacter glycolicus"]]},{"id":"NCBITaxon:446465","l":"Brachybacterium faecium DSM 4810","na":3,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"],["poultry-deep-litter-envo-00003908.html","poultry deep litter"],["village-biome-envo-01000246.html","village biome"]],"b":[["NCBITaxon%3A43669","Brachybacterium faecium"],["NCBITaxon%3A446465","Brachybacterium faecium DSM 4810"]]},{"id":"NCBITaxon:469371","l":"Thermobispora bispora DSM 43833","na":3,"nb":2,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A2006","Thermobispora bispora"],["NCBITaxon%3A469371","Thermobispora bispora DSM 43833"]]},{"id":"NCBITaxon:479431","l":"Nakamurella multipartita DSM 44233","na":3,"nb":2,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["NCBITaxon%3A53461","Nakamurella multipartita"],["NCBITaxon%3A479431","Nakamurella multipartita DSM 44233"]]},{"id":"NCBITaxon:482957","l":"","na":2,"nb":3,"a":[["human-construction-envo-00000070.html","human construction"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A2015348","Burkholderia aenigmatica"],["NCBITaxon%3A292","Burkholderia cepacia"],["NCBITaxon%3A482957","Burkholderia lata"]]},{"id":"NCBITaxon:502","l":"Kingella denitrificans","na":2,"nb":3,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["NCBITaxon%3A502","Kingella denitrificans"],["NCBITaxon%3A888741","Kingella denitrificans ATCC 33394"],["NCBITaxon%3A3100349","Simonsiella sp."]]},{"id":"NCBITaxon:509191","l":"Acetivibrio cellulolyticus CD2","na":3,"nb":2,"a":[["village-biome-envo-01000246.html","village biome"],["forested-area-envo-00000111.html","forested area"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A35830","Acetivibrio cellulolyticus"],["NCBITaxon%3A509191","Acetivibrio cellulolyticus CD2"]]},{"id":"NCBITaxon:50960","l":"Helicobacter trogontum","na":2,"nb":3,"a":[["ht-29-cell-bto-0000182.html","HT-29 cell"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"],["NCBITaxon%3A50960","Helicobacter trogontum"]]},{"id":"NCBITaxon:523846","l":"Methanothermus fervidus DSM 2088","na":3,"nb":2,"a":[["mountain-envo-00000081.html","mountain"],["seamount-envo-00000264.html","seamount"],["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A2180","Methanothermus fervidus"],["NCBITaxon%3A523846","Methanothermus fervidus DSM 2088"]]},{"id":"NCBITaxon:530564","l":"Pirellula staleyi DSM 6068","na":3,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["agricultural-soil-envo-00002259.html","agricultural soil"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A125","Pirellula staleyi"],["NCBITaxon%3A530564","Pirellula staleyi DSM 6068"]]},{"id":"NCBITaxon:53408","l":"Pseudomonas citronellolis","na":3,"nb":2,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["cuticle-bto-0001600.html","cuticle"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"]],"b":[["NCBITaxon%3A53408","Pseudomonas citronellolis"],["NCBITaxon%3A1215097","Pseudomonas citronellolis NBRC 103043"]]},{"id":"NCBITaxon:573064","l":"Methanocaldococcus fervens AG86","na":3,"nb":2,"a":[["inlet-envo-00000475.html","inlet"],["shoreline-envo-00000486.html","shoreline"],["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A83171","Methanocaldococcus fervens"],["NCBITaxon%3A573064","Methanocaldococcus fervens AG86"]]},{"id":"NCBITaxon:574521","l":"Escherichia coli O127:H6 (strain E2348/69 / EPEC)","na":2,"nb":3,"a":[["enterocyte-bto-0000398.html","enterocyte"],["gut-epithelium-bto-0000956.html","gut epithelium"]],"b":[["NCBITaxon%3A574521","Escherichia coli O127:H6 str. E2348/69"],["NCBITaxon%3A1336205","Escherichia coli O127:H6 str. E2348/69 substr. CVDNalr"],["NCBITaxon%3A1336206","Escherichia coli O127:H6 str. E2348/69 substr. UMD753"]]},{"id":"NCBITaxon:591019","l":"Staphylothermus hellenicus DSM 12710","na":3,"nb":2,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A84599","Staphylothermus hellenicus"],["NCBITaxon%3A591019","Staphylothermus hellenicus DSM 12710"]]},{"id":"NCBITaxon:59405","l":"Thauera aromatica","na":2,"nb":3,"a":[["sludge-envo-00002044.html","sludge"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A59405","Thauera aromatica"],["NCBITaxon%3A859322","Thauera aromatica 3CB2"],["NCBITaxon%3A44139","Thauera aromatica K172"]]},{"id":"NCBITaxon:632348","l":"Caldicellulosiruptor kronotskyensis 2002","na":3,"nb":2,"a":[["geyser-envo-00000050.html","geyser"],["peninsula-envo-00000305.html","peninsula"],["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A413889","Caldicellulosiruptor kronotskyensis"],["NCBITaxon%3A632348","Caldicellulosiruptor kronotskyensis 2002"]]},{"id":"NCBITaxon:641112","l":"Ruminococcus flavefaciens FD-1","na":3,"nb":2,"a":[["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["fiber-bto-0000450.html","fiber"]],"b":[["NCBITaxon%3A1265","Ruminococcus flavefaciens"],["NCBITaxon%3A641112","Ruminococcus flavefaciens FD-1"]]},{"id":"NCBITaxon:643562","l":"Pseudodesulfovibrio aespoeensis Aspo-2","na":3,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["ocean-trench-envo-00000275.html","ocean trench"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A182210","Pseudodesulfovibrio aespoeensis"],["NCBITaxon%3A643562","Pseudodesulfovibrio aespoeensis Aspo-2"]]},{"id":"NCBITaxon:643867","l":"Marivirga tractuosa DSM 4126","na":3,"nb":2,"a":[["beach-envo-00000091.html","beach"],["coral-reef-envo-00000150.html","coral reef"],["sea-sand-envo-00002118.html","sea sand"]],"b":[["NCBITaxon%3A1006","Marivirga tractuosa"],["NCBITaxon%3A643867","Marivirga tractuosa DSM 4126"]]},{"id":"NCBITaxon:65553","l":"Sulfurospirillum deleyianum","na":2,"nb":3,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A65553","Sulfurospirillum deleyianum"],["NCBITaxon%3A525898","Sulfurospirillum deleyianum DSM 6946"],["NCBITaxon%3A2053622","Sulfurospirillum sp."]]},{"id":"NCBITaxon:666681","l":"Methylotenera versatilis 301","na":3,"nb":2,"a":[["large-river-biome-envo-00000887.html","large river biome"],["environmental-material-envo-00010483.html","environmental material"],["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A1055487","Methylotenera versatilis"],["NCBITaxon%3A666681","Methylotenera versatilis 301"]]},{"id":"NCBITaxon:697282","l":"Methylobacter tundripaludum SV96","na":3,"nb":2,"a":[["cold-environment-envo-01000309.html","cold environment"],["environmental-material-envo-00010483.html","environmental material"],["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A173365","Methylobacter tundripaludum"],["NCBITaxon%3A697282","Methylobacter tundripaludum SV96"]]},{"id":"NCBITaxon:717","l":"Actinobacillus capsulatus","na":3,"nb":2,"a":[["bone-element-uberon-0001474.html","bone element"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A717","Actinobacillus capsulatus"],["NCBITaxon%3A1120931","Actinobacillus capsulatus DSM 19761"]]},{"id":"NCBITaxon:71999","l":"Kocuria palustris","na":2,"nb":3,"a":[["duodenal-mucosa-bto-0000367.html","duodenal mucosa"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"]],"b":[["NCBITaxon%3A71999","Kocuria palustris"],["NCBITaxon%3A1236550","Kocuria palustris PEL"],["NCBITaxon%3A1272","Kocuria varians"]]},{"id":"NCBITaxon:759851","l":"Sporosarcina newyorkensis","na":2,"nb":3,"a":[["hospital-envo-00002173.html","hospital"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A759851","Sporosarcina newyorkensis"],["NCBITaxon%3A1027292","Sporosarcina newyorkensis 2681"],["NCBITaxon%3A49982","Sporosarcina sp."]]},{"id":"NCBITaxon:765177","l":"Desulfurococcus mucosus DSM 2162","na":3,"nb":2,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"],["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A2275","Desulfurococcus mucosus"],["NCBITaxon%3A765177","Desulfurococcus mucosus DSM 2162"]]},{"id":"NCBITaxon:83552","l":"Parachlamydia acanthamoebae","na":2,"nb":3,"a":[["elementary-body-bto-0000377.html","elementary body"],["hep-2-cell-bto-0000976.html","HEp-2 cell"]],"b":[["NCBITaxon%3A83552","Parachlamydia acanthamoebae"],["NCBITaxon%3A159254","Parachlamydia acanthamoebae str. Hall's coccus"],["NCBITaxon%3A765952","Parachlamydia acanthamoebae UV-7"]]},{"id":"NCBITaxon:83555","l":"Chlamydia abortus","na":2,"nb":3,"a":[["elementary-body-bto-0000377.html","elementary body"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A83555","Chlamydia abortus"],["NCBITaxon%3A1003238","Chlamydia abortus LLG"],["NCBITaxon%3A218497","Chlamydia abortus S26/3"]]},{"id":"NCBITaxon:85963","l":"Helicobacter pylori (strain J99 / ATCC 700824)","na":2,"nb":3,"a":[["anaerobic-sludge-blanket-reactor-envo-00002213.html","anaerobic sludge blanket reactor"],["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A141390","Chromohalobacter israelensis"],["NCBITaxon%3A210","Helicobacter pylori"],["NCBITaxon%3A85963","Helicobacter pylori J99"]]},{"id":"NCBITaxon:889378","l":"Spirochaeta africana DSM 8902","na":3,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["alkaline-water-envo-01000357.html","alkaline water"],["brine-envo-00003044.html","brine"]],"b":[["NCBITaxon%3A46355","Spirochaeta africana"],["NCBITaxon%3A889378","Spirochaeta africana DSM 8902"]]},{"id":"NCBITaxon:897","l":"Desulfococcus multivorans","na":3,"nb":2,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A897","Desulfococcus multivorans"],["NCBITaxon%3A1121405","Desulfococcus multivorans DSM 2059"]]},{"id":"NCBITaxon:91360","l":"Desulforhopalus singaporensis","na":3,"nb":2,"a":[["marsh-envo-00000035.html","marsh"],["road-envo-00000064.html","road"],["garden-envo-00000011.html","garden"]],"b":[["NCBITaxon%3A91360","Desulforhopalus singaporensis"],["NCBITaxon%3A1121418","Desulforhopalus singaporensis DSM 12130"]]},{"id":"NCBITaxon:926569","l":"Anaerolinea thermophila UNI-1","na":3,"nb":2,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["shoreline-envo-00000486.html","shoreline"]],"b":[["NCBITaxon%3A167964","Anaerolinea thermophila"],["NCBITaxon%3A926569","Anaerolinea thermophila UNI-1"]]},{"id":"NCBITaxon:1006155","l":"Paenilisteria weihenstephanensis","na":2,"nb":2,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1006155","Paenilisteria weihenstephanensis"],["NCBITaxon%3A1265845","Paenilisteria weihenstephanensis FSL R9-0317"]]},{"id":"NCBITaxon:1007105","l":"Pusillimonas sp. T7-7","na":2,"nb":2,"a":[["marine-sediment-envo-03000033.html","marine sediment"],["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A1979962","Pusillimonas sp."],["NCBITaxon%3A1007105","Pusillimonas sp. T7-7"]]},{"id":"NCBITaxon:100901","l":"Wolbachia endosymbiont of Onchocerca ochengi","na":2,"nb":2,"a":[["gonad-bto-0000534.html","gonad"],["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A100901","Wolbachia endosymbiont of Onchocerca ochengi"],["NCBITaxon%3A1141110","Wolbachia endosymbiont of Onchocerca ochengi str. Adamawa_Cameroon"]]},{"id":"NCBITaxon:1028800","l":"Neorhizobium galegae bv. orientalis str. HAMBI 540","na":2,"nb":2,"a":[["root-nodule-bto-0001190.html","root nodule"],["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A399","Neorhizobium galegae"],["NCBITaxon%3A1028800","Neorhizobium galegae bv. orientalis str. HAMBI 540"]]},{"id":"NCBITaxon:1032070","l":"Aliarcobacter cryaerophilus ATCC 43158","na":2,"nb":2,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A28198","Aliarcobacter cryaerophilus"],["NCBITaxon%3A1032070","Aliarcobacter cryaerophilus ATCC 43158"]]},{"id":"NCBITaxon:1038869","l":"Paraburkholderia mimosarum LMG 23256 = NBRC 106338","na":2,"nb":2,"a":[["root-nodule-bto-0001190.html","root nodule"],["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A312026","Paraburkholderia mimosarum"],["NCBITaxon%3A1038869","Paraburkholderia mimosarum LMG 23256 = NBRC 106338"]]},{"id":"NCBITaxon:1041930","l":"Methanocella conradii HZ254","na":2,"nb":2,"a":[["flagellum-bto-0002292.html","flagellum"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A1175444","Methanocella conradii"],["NCBITaxon%3A1041930","Methanocella conradii HZ254"]]},{"id":"NCBITaxon:1042209","l":"Pseudomonas fluorescens HK44","na":2,"nb":2,"a":[["bioreactor-envo-00002123.html","bioreactor"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A294","Pseudomonas fluorescens"],["NCBITaxon%3A1042209","Pseudomonas fluorescens HK44"]]},{"id":"NCBITaxon:1045004","l":"Oenococcus kitaharae DSM 17330","na":2,"nb":2,"a":[["compost-envo-00002170.html","compost"],["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A336988","Oenococcus kitaharae"],["NCBITaxon%3A1045004","Oenococcus kitaharae DSM 17330"]]},{"id":"NCBITaxon:1045855","l":"Pseudoxanthomonas spadix BD-a59","na":2,"nb":2,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A415229","Pseudoxanthomonas spadix"],["NCBITaxon%3A1045855","Pseudoxanthomonas spadix BD-a59"]]},{"id":"NCBITaxon:1046593","l":"Leuconostoc carnosum KCTC 3525","na":2,"nb":2,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A1252","Leuconostoc carnosum"],["NCBITaxon%3A1046593","Leuconostoc carnosum KCTC 3525"]]},{"id":"NCBITaxon:1046596","l":"Liquorilactobacillus mali KCTC 3596 = DSM 20444","na":2,"nb":2,"a":[["juice-bto-0000659.html","juice"],["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A1618","Liquorilactobacillus mali"],["NCBITaxon%3A1046596","Liquorilactobacillus mali KCTC 3596 = DSM 20444"]]},{"id":"NCBITaxon:1049","l":"Allochromatium vinosum","na":2,"nb":2,"a":[["brackish-water-body-envo-01001321.html","brackish water body"],["factory-envo-01000536.html","factory"]],"b":[["NCBITaxon%3A1049","Allochromatium vinosum"],["NCBITaxon%3A572477","Allochromatium vinosum DSM 180"]]},{"id":"NCBITaxon:104955","l":"Limosilactobacillus frumenti","na":2,"nb":2,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["animal-manure-envo-00003031.html","animal manure"]],"b":[["NCBITaxon%3A104955","Limosilactobacillus frumenti"],["NCBITaxon%3A1423746","Limosilactobacillus frumenti DSM 13145"]]},{"id":"NCBITaxon:1049583","l":"Kocuria marina subsp. indica","na":2,"nb":2,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A223184","Kocuria marina"],["NCBITaxon%3A1049583","Kocuria marina subsp. indica"]]},{"id":"NCBITaxon:1050202","l":"Actinopolyspora mortivallis DSM 44261","na":2,"nb":2,"a":[["soil-envo-00001998.html","soil"],["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A33906","Actinopolyspora mortivallis"],["NCBITaxon%3A1050202","Actinopolyspora mortivallis DSM 44261"]]},{"id":"NCBITaxon:1056495","l":"Caldisphaera lagunensis DSM 15908","na":2,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"],["acidic-hot-spring-envo-00002120.html","acidic hot spring"]],"b":[["NCBITaxon%3A200415","Caldisphaera lagunensis"],["NCBITaxon%3A1056495","Caldisphaera lagunensis DSM 15908"]]},{"id":"NCBITaxon:1068979","l":"Amycolatopsis thermoflava N1165","na":2,"nb":2,"a":[["island-envo-00000098.html","island"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A84480","Amycolatopsis thermoflava"],["NCBITaxon%3A1068979","Amycolatopsis thermoflava N1165"]]},{"id":"NCBITaxon:1068980","l":"Amycolatopsis nigrescens CSC17Ta-90","na":2,"nb":2,"a":[["building-envo-00000073.html","building"],["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A381445","Amycolatopsis nigrescens"],["NCBITaxon%3A1068980","Amycolatopsis nigrescens CSC17Ta-90"]]},{"id":"NCBITaxon:1071947","l":"Pasteurella oralis","na":2,"nb":2,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A988827","Kocuria oceani"],["NCBITaxon%3A1071947","Pasteurella oralis"]]},{"id":"NCBITaxon:1074493","l":"Sphingobium yanoikuyae XLDN2-5","na":2,"nb":2,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A13690","Sphingobium yanoikuyae"],["NCBITaxon%3A1074493","Sphingobium yanoikuyae XLDN2-5"]]},{"id":"NCBITaxon:107636","l":"Methylosinus sp. PW1","na":2,"nb":2,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A427","Methylosinus sp."],["NCBITaxon%3A107636","Methylosinus sp. PW1"]]},{"id":"NCBITaxon:1080","l":"Afifella marina","na":2,"nb":2,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"]],"b":[["NCBITaxon%3A1080","Afifella marina"],["NCBITaxon%3A1120955","Afifella marina DSM 2698"]]},{"id":"NCBITaxon:108486","l":"Corynebacterium falsenii","na":2,"nb":2,"a":[["animal-house-envo-00003040.html","animal house"],["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A108486","Corynebacterium falsenii"],["NCBITaxon%3A1451189","Corynebacterium falsenii DSM 44353"]]},{"id":"NCBITaxon:1089547","l":"Rudanella lutea DSM 19387","na":2,"nb":2,"a":[["air-envo-00002005.html","air"],["city-envo-00000856.html","city"]],"b":[["NCBITaxon%3A451374","Rudanella lutea"],["NCBITaxon%3A1089547","Rudanella lutea DSM 19387"]]},{"id":"NCBITaxon:1089549","l":"Haloglycomyces albus DSM 45210","na":2,"nb":2,"a":[["undersea-feature-envo-00000104.html","undersea feature"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A526067","Haloglycomyces albus"],["NCBITaxon%3A1089549","Haloglycomyces albus DSM 45210"]]},{"id":"NCBITaxon:1089550","l":"Salisaeta longa DSM 21114","na":2,"nb":2,"a":[["marine-anoxic-zone-envo-01000066.html","marine anoxic zone"],["sea-envo-00000016.html","sea"]],"b":[["NCBITaxon%3A503170","Salisaeta longa"],["NCBITaxon%3A1089550","Salisaeta longa DSM 21114"]]},{"id":"NCBITaxon:1089551","l":"Geminicoccus roseus DSM 18922","na":2,"nb":2,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A404900","Geminicoccus roseus"],["NCBITaxon%3A1089551","Geminicoccus roseus DSM 18922"]]},{"id":"NCBITaxon:1089552","l":"Rhodovibrio salinarum DSM 9154","na":2,"nb":2,"a":[["compost-envo-00002170.html","compost"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A1087","Rhodovibrio salinarum"],["NCBITaxon%3A1089552","Rhodovibrio salinarum DSM 9154"]]},{"id":"NCBITaxon:110479","l":"Asaia siamensis","na":2,"nb":2,"a":[["river-envo-00000022.html","river"],["subpolar-coniferous-forest-biome-envo-01000250.html","subpolar coniferous forest biome"]],"b":[["NCBITaxon%3A110479","Asaia siamensis"],["NCBITaxon%3A1307927","Asaia siamensis NRIC 0323"]]},{"id":"NCBITaxon:110500","l":"Pelotomaculum thermopropionicum","na":2,"nb":2,"a":[["river-envo-00000022.html","river"],["subpolar-coniferous-forest-biome-envo-01000250.html","subpolar coniferous forest biome"]],"b":[["NCBITaxon%3A110500","Pelotomaculum thermopropionicum"],["NCBITaxon%3A370438","Pelotomaculum thermopropionicum SI"]]},{"id":"NCBITaxon:1111728","l":"Budvicia aquatica DSM 5075 = ATCC 35567","na":2,"nb":2,"a":[["drinking-water-envo-00003064.html","drinking water"],["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A82979","Budvicia aquatica"],["NCBITaxon%3A1111728","Budvicia aquatica DSM 5075 = ATCC 35567"]]},{"id":"NCBITaxon:1111738","l":"Thermocrispum agreste DSM 44070","na":2,"nb":2,"a":[["compost-envo-00002170.html","compost"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A37925","Thermocrispum agreste"],["NCBITaxon%3A1111738","Thermocrispum agreste DSM 44070"]]},{"id":"NCBITaxon:1112","l":"Erythrobacter neustonensis","na":2,"nb":2,"a":[["groundwater-envo-01001004.html","groundwater"],["marine-environment-envo-01000320.html","marine environment"]],"b":[["NCBITaxon%3A1112","Erythrobacter neustonensis"],["NCBITaxon%3A1042","Erythrobacter sp."]]},{"id":"NCBITaxon:1114856","l":"","na":2,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A63128","Natronorubrum tibetense"],["NCBITaxon%3A1114856","Natronorubrum tibetense GA33"]]},{"id":"NCBITaxon:1114972","l":"Furfurilactobacillus rossiae DSM 15814","na":2,"nb":2,"a":[["food-product-foodon-00001002.html","food product"],["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A231049","Furfurilactobacillus rossiae"],["NCBITaxon%3A1114972","Furfurilactobacillus rossiae DSM 15814"]]},{"id":"NCBITaxon:1115512","l":"Atlantibacter hermannii NBRC 105704","na":2,"nb":2,"a":[["foot-bto-0000476.html","foot"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A565","Atlantibacter hermannii"],["NCBITaxon%3A1115512","Atlantibacter hermannii NBRC 105704"]]},{"id":"NCBITaxon:1120918","l":"Acetitomaculum ruminis DSM 5522","na":2,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A2382","Acetitomaculum ruminis"],["NCBITaxon%3A1120918","Acetitomaculum ruminis DSM 5522"]]},{"id":"NCBITaxon:1120923","l":"Acidocella aminolytica 101 = DSM 11237","na":2,"nb":2,"a":[["mine-envo-00000076.html","mine"],["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A33998","Acidocella aminolytica"],["NCBITaxon%3A1120923","Acidocella aminolytica 101 = DSM 11237"]]},{"id":"NCBITaxon:1120924","l":"Acinetobacter baylyi DSM 14961 = CIP 107474","na":2,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A202950","Acinetobacter baylyi"],["NCBITaxon%3A1120924","Acinetobacter baylyi DSM 14961 = CIP 107474"]]},{"id":"NCBITaxon:1120929","l":"Acinetobacter towneri DSM 14962 = CIP 107472","na":2,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A202956","Acinetobacter towneri"],["NCBITaxon%3A1120929","Acinetobacter towneri DSM 14962 = CIP 107472"]]},{"id":"NCBITaxon:1120955","l":"Afifella marina DSM 2698","na":2,"nb":2,"a":[["sea-envo-00000016.html","sea"],["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1080","Afifella marina"],["NCBITaxon%3A1120955","Afifella marina DSM 2698"]]},{"id":"NCBITaxon:1120959","l":"Agromyces italicus DSM 16388","na":2,"nb":2,"a":[["cave-envo-00000067.html","cave"],["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A279572","Agromyces italicus"],["NCBITaxon%3A1120959","Agromyces italicus DSM 16388"]]},{"id":"NCBITaxon:1120968","l":"Algoriphagus vanfongensis DSM 17529","na":2,"nb":2,"a":[["sea-envo-00000016.html","sea"],["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A426371","Algoriphagus vanfongensis"],["NCBITaxon%3A1120968","Algoriphagus vanfongensis DSM 17529"]]},{"id":"NCBITaxon:1120989","l":"Anaerobranca californiensis DSM 14826","na":2,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"],["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A182411","Anaerobranca californiensis"],["NCBITaxon%3A1120989","Anaerobranca californiensis DSM 14826"]]},{"id":"NCBITaxon:1120997","l":"Anaerovibrio lipolyticus DSM 3074","na":2,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A82374","Anaerovibrio lipolyticus"],["NCBITaxon%3A1120997","Anaerovibrio lipolyticus DSM 3074"]]},{"id":"NCBITaxon:1121001","l":"Andreprevotia lacus DSM 23236","na":2,"nb":2,"a":[["pond-envo-00000033.html","pond"],["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A1121000","Andreprevotia lacus"],["NCBITaxon%3A1121001","Andreprevotia lacus DSM 23236"]]},{"id":"NCBITaxon:1121003","l":"Aquamicrobium aerolatum DSM 21857","na":2,"nb":2,"a":[["air-envo-00002005.html","air"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A561088","Aerobium aerolatum"],["NCBITaxon%3A1121003","Aquamicrobium aerolatum DSM 21857"]]},{"id":"NCBITaxon:1121018","l":"Arsenophonus nasoniae DSM 15247","na":2,"nb":2,"a":[["saline-lake-envo-00000019.html","saline lake"],["city-envo-00000856.html","city"]],"b":[["NCBITaxon%3A638","Arsenophonus nasoniae"],["NCBITaxon%3A1121018","Arsenophonus nasoniae DSM 15247"]]},{"id":"NCBITaxon:1121019","l":"Arthrobacter castelli DSM 16402","na":2,"nb":2,"a":[["environmental-system-envo-01000254.html","environmental system"],["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A271431","Arthrobacter castelli"],["NCBITaxon%3A1121019","Arthrobacter castelli DSM 16402"]]},{"id":"NCBITaxon:1121022","l":"Asticcacaulis benevestitus DSM 16100 = ATCC BAA-896","na":2,"nb":2,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A347481","Asticcacaulis benevestitus"],["NCBITaxon%3A1121022","Asticcacaulis benevestitus DSM 16100 = ATCC BAA-896"]]},{"id":"NCBITaxon:1121026","l":"Aureimonas altamirensis DSM 21988","na":2,"nb":2,"a":[["cave-envo-00000067.html","cave"],["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A370622","Aureimonas altamirensis"],["NCBITaxon%3A1121026","Aureimonas altamirensis DSM 21988"]]},{"id":"NCBITaxon:1121028","l":"Aureimonas ureilytica DSM 18598 = NBRC 106430","na":2,"nb":2,"a":[["air-envo-00002005.html","air"],["city-envo-00000856.html","city"]],"b":[["NCBITaxon%3A401562","Aureimonas ureilytica"],["NCBITaxon%3A1121028","Aureimonas ureilytica DSM 18598 = NBRC 106430"]]},{"id":"NCBITaxon:1121032","l":"Azonexus hydrophilus DSM 23864","na":2,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A418702","Azonexus hydrophilus"],["NCBITaxon%3A1121032","Azonexus hydrophilus DSM 23864"]]},{"id":"NCBITaxon:1121086","l":"Alteribacter aurantiacus DSM 18675","na":2,"nb":2,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A254410","Alteribacter aurantiacus"],["NCBITaxon%3A1121086","Alteribacter aurantiacus DSM 18675"]]},{"id":"NCBITaxon:1121106","l":"Belnapia moabensis DSM 16746","na":2,"nb":2,"a":[["city-envo-00000856.html","city"],["plateau-envo-00000182.html","plateau"]],"b":[["NCBITaxon%3A365533","Belnapia moabensis"],["NCBITaxon%3A1121106","Belnapia moabensis DSM 16746"]]},{"id":"NCBITaxon:1121109","l":"Bifidobacterium minimum DSM 20102","na":2,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"],["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A1693","Bifidobacterium minimum"],["NCBITaxon%3A1121109","Bifidobacterium minimum DSM 20102"]]},{"id":"NCBITaxon:1121110","l":"Bifidobacterium subtile DSM 20096","na":2,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"],["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A77635","Bifidobacterium subtile"],["NCBITaxon%3A1121110","Bifidobacterium subtile DSM 20096"]]},{"id":"NCBITaxon:1121117","l":"Allobrachymonas denitrificans DSM 15123","na":2,"nb":2,"a":[["sewage-envo-00002018.html","sewage"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["NCBITaxon%3A28220","Allobrachymonas denitrificans"],["NCBITaxon%3A1121117","Allobrachymonas denitrificans DSM 15123"]]},{"id":"NCBITaxon:1121131","l":"Butyrivibrio fibrisolvens DSM 3071","na":2,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A831","Butyrivibrio fibrisolvens"],["NCBITaxon%3A1121131","Butyrivibrio fibrisolvens DSM 3071"]]},{"id":"NCBITaxon:1121262","l":"Caloramator proteoclasticus DSM 10124","na":2,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"],["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A53342","Caloramator proteoclasticus"],["NCBITaxon%3A1121262","Caloramator proteoclasticus DSM 10124"]]},{"id":"NCBITaxon:1121270","l":"","na":2,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"],["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A178899","Carboxydocella thermautotrophica"],["NCBITaxon%3A1121270","Carboxydocella thermautotrophica DSM 16521"]]},{"id":"NCBITaxon:1121275","l":"Chitinilyticum aquatile DSM 21506","na":2,"nb":2,"a":[["pond-envo-00000033.html","pond"],["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A362520","Chitinilyticum aquatile"],["NCBITaxon%3A1121275","Chitinilyticum aquatile DSM 21506"]]},{"id":"NCBITaxon:1121295","l":"Clostridium algidicarnis DSM 15099","na":2,"nb":2,"a":[["food-product-foodon-00001002.html","food product"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["NCBITaxon%3A37659","Clostridium algidicarnis"],["NCBITaxon%3A1121295","Clostridium algidicarnis DSM 15099"]]},{"id":"NCBITaxon:1121296","l":"[Clostridium] aminophilum DSM 10710","na":2,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A1526","[Clostridium] aminophilum"],["NCBITaxon%3A1121296","[Clostridium] aminophilum DSM 10710"]]},{"id":"NCBITaxon:1121302","l":"Clostridium cavendishii DSM 21758","na":2,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A349931","Clostridium cavendishii"],["NCBITaxon%3A1121302","Clostridium cavendishii DSM 21758"]]},{"id":"NCBITaxon:1121312","l":"Clostridium frigidicarnis DSM 12271","na":2,"nb":2,"a":[["food-product-foodon-00001002.html","food product"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["NCBITaxon%3A84698","Clostridium frigidicarnis"],["NCBITaxon%3A1121312","Clostridium frigidicarnis DSM 12271"]]},{"id":"NCBITaxon:1121314","l":"Clostridium gasigenes DSM 12272","na":2,"nb":2,"a":[["food-product-foodon-00001002.html","food product"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["NCBITaxon%3A94869","Clostridium gasigenes"],["NCBITaxon%3A1121314","Clostridium gasigenes DSM 12272"]]},{"id":"NCBITaxon:1121317","l":"Clostridium halophilum DSM 5387","na":2,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A36842","Maledivibacter halophilus"],["NCBITaxon%3A1121317","Maledivibacter halophilus DSM 5387"]]},{"id":"NCBITaxon:1121318","l":"Clostridium homopropionicum DSM 5847","na":2,"nb":2,"a":[["sewage-envo-00002018.html","sewage"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A36844","Clostridium homopropionicum"],["NCBITaxon%3A1121318","Clostridium homopropionicum DSM 5847"]]},{"id":"NCBITaxon:1121319","l":"Clostridium hydrogeniformans DSM 21757","na":2,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A349933","Clostridium hydrogeniformans"],["NCBITaxon%3A1121319","Clostridium hydrogeniformans DSM 21757"]]},{"id":"NCBITaxon:1121327","l":"Anaerotignum neopropionicum DSM 3847","na":2,"nb":2,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A36847","Anaerotignum neopropionicum"],["NCBITaxon%3A1121327","Anaerotignum neopropionicum DSM 3847"]]},{"id":"NCBITaxon:1121344","l":"[Clostridium] viride DSM 6836","na":2,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A47246","[Clostridium] viride"],["NCBITaxon%3A1121344","[Clostridium] viride DSM 6836"]]},{"id":"NCBITaxon:1121364","l":"Corynebacterium massiliense DSM 45435","na":2,"nb":2,"a":[["hospital-envo-00002173.html","hospital"],["bone-element-uberon-0001474.html","bone element"]],"b":[["NCBITaxon%3A441501","Corynebacterium massiliense"],["NCBITaxon%3A1121364","Corynebacterium massiliense DSM 45435"]]},{"id":"NCBITaxon:1121375","l":"Deefgea rivuli DSM 18356","na":2,"nb":2,"a":[["mountain-envo-00000081.html","mountain"],["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A400948","Deefgea rivuli"],["NCBITaxon%3A1121375","Deefgea rivuli DSM 18356"]]},{"id":"NCBITaxon:1121385","l":"Demetria terragena DSM 11295","na":2,"nb":2,"a":[["compost-envo-00002170.html","compost"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A63959","Demetria terragena"],["NCBITaxon%3A1121385","Demetria terragena DSM 11295"]]},{"id":"NCBITaxon:1121390","l":"Desulfacinum hydrothermale DSM 13146","na":2,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A109258","Desulfacinum hydrothermale"],["NCBITaxon%3A1121390","Desulfacinum hydrothermale DSM 13146"]]},{"id":"NCBITaxon:1121395","l":"Desulfitobacterium chlororespirans DSM 11544","na":2,"nb":2,"a":[["compost-envo-00002170.html","compost"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A51616","Desulfitobacterium chlororespirans"],["NCBITaxon%3A1121395","Desulfitobacterium chlororespirans DSM 11544"]]},{"id":"NCBITaxon:1121396","l":"Desulfobacter curvatus DSM 3379","na":2,"nb":2,"a":[["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A2290","Desulfobacter curvatus"],["NCBITaxon%3A1121396","Desulfobacter curvatus DSM 3379"]]},{"id":"NCBITaxon:1121399","l":"Desulfatiglans anilini DSM 4660","na":2,"nb":2,"a":[["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A90728","Desulfatiglans anilini"],["NCBITaxon%3A1121399","Desulfatiglans anilini DSM 4660"]]},{"id":"NCBITaxon:1121405","l":"Desulfococcus multivorans DSM 2059","na":2,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A897","Desulfococcus multivorans"],["NCBITaxon%3A1121405","Desulfococcus multivorans DSM 2059"]]},{"id":"NCBITaxon:1121409","l":"Desulfofustis glycolicus DSM 9705","na":2,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"]],"b":[["NCBITaxon%3A51195","Desulfofustis glycolicus"],["NCBITaxon%3A1121409","Desulfofustis glycolicus DSM 9705"]]},{"id":"NCBITaxon:1121428","l":"Desulforamulus hydrothermalis Lam5 = DSM 18033","na":2,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"],["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A412895","Desulforamulus hydrothermalis"],["NCBITaxon%3A1121428","Desulforamulus hydrothermalis Lam5 = DSM 18033"]]},{"id":"NCBITaxon:1121432","l":"Desulfofundulus thermosubterraneus DSM 16057","na":2,"nb":2,"a":[["mine-envo-00000076.html","mine"],["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A348840","Desulfofundulus thermosubterraneus"],["NCBITaxon%3A1121432","Desulfofundulus thermosubterraneus DSM 16057"]]},{"id":"NCBITaxon:1121433","l":"Desulfovermiculus halophilus DSM 18834","na":2,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"],["oil-envo-00002985.html","oil"]],"b":[["NCBITaxon%3A339722","Desulfovermiculus halophilus"],["NCBITaxon%3A1121433","Desulfovermiculus halophilus DSM 18834"]]},{"id":"NCBITaxon:1121434","l":"Halodesulfovibrio aestuarii DSM 10141","na":2,"nb":2,"a":[["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A126333","Halodesulfovibrio aestuarii"],["NCBITaxon%3A1121434","Halodesulfovibrio aestuarii DSM 10141"]]},{"id":"NCBITaxon:1121441","l":"Maridesulfovibrio bastinii DSM 16055","na":2,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A47157","Maridesulfovibrio bastinii"],["NCBITaxon%3A1121441","Maridesulfovibrio bastinii DSM 16055"]]},{"id":"NCBITaxon:1121442","l":"Desulfobaculum bizertense DSM 18034","na":2,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"]],"b":[["NCBITaxon%3A376490","Desulfobaculum bizertense"],["NCBITaxon%3A1121442","Desulfobaculum bizertense DSM 18034"]]},{"id":"NCBITaxon:1121445","l":"Desulfovibrio desulfuricans DSM 642","na":2,"nb":2,"a":[["rock-envo-00001995.html","rock"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A876","Desulfovibrio desulfuricans"],["NCBITaxon%3A1121445","Desulfovibrio desulfuricans DSM 642"]]},{"id":"NCBITaxon:1121447","l":"Maridesulfovibrio frigidus DSM 17176","na":2,"nb":2,"a":[["sea-coast-envo-00000303.html","sea coast"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A340956","Maridesulfovibrio frigidus"],["NCBITaxon%3A1121447","Maridesulfovibrio frigidus DSM 17176"]]},{"id":"NCBITaxon:1121448","l":"","na":2,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["primordium-bto-0001886.html","primordium"]],"b":[["NCBITaxon%3A879","Megalodesulfovibrio gigas"],["NCBITaxon%3A1121448","Megalodesulfovibrio gigas DSM 1382 = ATCC 19364"]]},{"id":"NCBITaxon:1121453","l":"Desulfovibrio inopinatus DSM 10711","na":2,"nb":2,"a":[["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A102109","Desulfovibrio inopinatus"],["NCBITaxon%3A1121453","Desulfovibrio inopinatus DSM 10711"]]},{"id":"NCBITaxon:1121457","l":"Halodesulfovibrio marinisediminis DSM 17456","na":2,"nb":2,"a":[["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A458711","Halodesulfovibrio marinisediminis"],["NCBITaxon%3A1121457","Halodesulfovibrio marinisediminis DSM 17456"]]},{"id":"NCBITaxon:1121458","l":"Humidesulfovibrio mexicanus DSM 13116","na":2,"nb":2,"a":[["activated-sludge-envo-00002046.html","activated sludge"],["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A147047","Humidesulfovibrio mexicanus"],["NCBITaxon%3A1121458","Humidesulfovibrio mexicanus DSM 13116"]]},{"id":"NCBITaxon:1121460","l":"Megalodesulfovibrio paquesii DSM 16681","na":2,"nb":2,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A299072","Megalodesulfovibrio paquesii"],["NCBITaxon%3A1121460","Megalodesulfovibrio paquesii DSM 16681"]]},{"id":"NCBITaxon:1121462","l":"Fundidesulfovibrio putealis DSM 16056","na":2,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A270496","Fundidesulfovibrio putealis"],["NCBITaxon%3A1121462","Fundidesulfovibrio putealis DSM 16056"]]},{"id":"NCBITaxon:1121468","l":"Desulfovirgula thermocuniculi DSM 16036","na":2,"nb":2,"a":[["mine-envo-00000076.html","mine"],["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A348842","Desulfovirgula thermocuniculi"],["NCBITaxon%3A1121468","Desulfovirgula thermocuniculi DSM 16036"]]},{"id":"NCBITaxon:1121476","l":"Dethiosulfatibacter aminovorans DSM 17477","na":2,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"]],"b":[["NCBITaxon%3A332095","Dethiosulfatibacter aminovorans"],["NCBITaxon%3A1121476","Dethiosulfatibacter aminovorans DSM 17477"]]},{"id":"NCBITaxon:1121480","l":"Pseudoduganella violaceinigra DSM 15887","na":2,"nb":2,"a":[["undersea-feature-envo-00000104.html","undersea feature"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A246602","Pseudoduganella violaceinigra"],["NCBITaxon%3A1121480","Pseudoduganella violaceinigra DSM 15887"]]},{"id":"NCBITaxon:1121484","l":"Dyadobacter ginsengisoli DSM 21015","na":2,"nb":2,"a":[["undersea-feature-envo-00000104.html","undersea feature"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A363850","Dyadobacter ginsengisoli"],["NCBITaxon%3A1121484","Dyadobacter ginsengisoli DSM 21015"]]},{"id":"NCBITaxon:1121878","l":"Ferrimonas futtsuensis DSM 18154","na":2,"nb":2,"a":[["beach-envo-00000091.html","beach"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A364764","Ferrimonas futtsuensis"],["NCBITaxon%3A1121878","Ferrimonas futtsuensis DSM 18154"]]},{"id":"NCBITaxon:1121884","l":"Flavisolibacter ginsengisoli DSM 18119","na":2,"nb":2,"a":[["undersea-feature-envo-00000104.html","undersea feature"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A462367","Flavisolibacter ginsengisoli"],["NCBITaxon%3A1121884","Flavisolibacter ginsengisoli DSM 18119"]]},{"id":"NCBITaxon:1121885","l":"Flavisolibacter ginsengiterrae DSM 18136","na":2,"nb":2,"a":[["undersea-feature-envo-00000104.html","undersea feature"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A398045","Flavisolibacter ginsengiterrae"],["NCBITaxon%3A1121885","Flavisolibacter ginsengiterrae DSM 18136"]]},{"id":"NCBITaxon:1121899","l":"Flavobacterium suncheonense GH29-5 = DSM 17707","na":2,"nb":2,"a":[["city-envo-00000856.html","city"],["greenhouse-soil-envo-00005780.html","greenhouse soil"]],"b":[["NCBITaxon%3A350894","Flavobacterium suncheonense"],["NCBITaxon%3A1121899","Flavobacterium suncheonense GH29-5 = DSM 17707"]]},{"id":"NCBITaxon:1121901","l":"Flavobacterium tegetincola DSM 22377","na":2,"nb":2,"a":[["hill-envo-00000083.html","hill"],["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A150172","Flavobacterium tegetincola"],["NCBITaxon%3A1121901","Flavobacterium tegetincola DSM 22377"]]},{"id":"NCBITaxon:1121909","l":"Gaetbulibacter saemankumensis DSM 17032","na":2,"nb":2,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A311208","Gaetbulibacter saemankumensis"],["NCBITaxon%3A1121909","Gaetbulibacter saemankumensis DSM 17032"]]},{"id":"NCBITaxon:1121915","l":"Geoalkalibacter ferrihydriticus DSM 17813","na":2,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A392333","Geoalkalibacter ferrihydriticus"],["NCBITaxon%3A1121915","Geoalkalibacter ferrihydriticus DSM 17813"]]},{"id":"NCBITaxon:1121918","l":"Geopsychrobacter electrodiphilus DSM 16401","na":2,"nb":2,"a":[["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"],["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A225196","Geopsychrobacter electrodiphilus"],["NCBITaxon%3A1121918","Geopsychrobacter electrodiphilus DSM 16401"]]},{"id":"NCBITaxon:1121921","l":"Gilvimarinus chinensis DSM 19667","na":2,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"],["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A396005","Gilvimarinus chinensis"],["NCBITaxon%3A1121921","Gilvimarinus chinensis DSM 19667"]]},{"id":"NCBITaxon:1121924","l":"Glaciibacter superstes DSM 21135","na":2,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"],["tunnel-envo-00000068.html","tunnel"]],"b":[["NCBITaxon%3A501023","Glaciibacter superstes"],["NCBITaxon%3A1121924","Glaciibacter superstes DSM 21135"]]},{"id":"NCBITaxon:1121929","l":"Gracilibacillus lacisalsi DSM 19029","na":2,"nb":2,"a":[["undersea-feature-envo-00000104.html","undersea feature"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A393087","Gracilibacillus lacisalsi"],["NCBITaxon%3A1121929","Gracilibacillus lacisalsi DSM 19029"]]},{"id":"NCBITaxon:1121930","l":"Gracilimonas tropica DSM 19535","na":2,"nb":2,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["NCBITaxon%3A454600","Gracilimonas tropica"],["NCBITaxon%3A1121930","Gracilimonas tropica DSM 19535"]]},{"id":"NCBITaxon:1121932","l":"Christiangramia portivictoriae DSM 23547","na":2,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"]],"b":[["NCBITaxon%3A326069","Christiangramia portivictoriae"],["NCBITaxon%3A1121932","Christiangramia portivictoriae DSM 23547"]]},{"id":"NCBITaxon:1121948","l":"Hellea balneolensis DSM 19091","na":2,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["NCBITaxon%3A287478","Hellea balneolensis"],["NCBITaxon%3A1121948","Hellea balneolensis DSM 19091"]]},{"id":"NCBITaxon:1122129","l":"Jeotgalicoccus psychrophilus DSM 19085","na":2,"nb":2,"a":[["food-product-foodon-00001002.html","food product"],["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A157228","Jeotgalicoccus psychrophilus"],["NCBITaxon%3A1122129","Jeotgalicoccus psychrophilus DSM 19085"]]},{"id":"NCBITaxon:1122130","l":"Jonesia quinghaiensis DSM 15701","na":2,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A262806","Jonesia quinghaiensis"],["NCBITaxon%3A1122130","Jonesia quinghaiensis DSM 15701"]]},{"id":"NCBITaxon:1122135","l":"Kiloniella laminariae DSM 19542","na":2,"nb":2,"a":[["inlet-envo-00000475.html","inlet"],["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A454162","Kiloniella laminariae"],["NCBITaxon%3A1122135","Kiloniella laminariae DSM 19542"]]},{"id":"NCBITaxon:1122137","l":"Kordiimonas gwangyangensis DSM 19435 = JCM 12864","na":2,"nb":2,"a":[["marginal-sea-biome-envo-01000046.html","marginal sea biome"],["sea-envo-00000016.html","sea"]],"b":[["NCBITaxon%3A288022","Kordiimonas gwangyangensis"],["NCBITaxon%3A1122137","Kordiimonas gwangyangensis DSM 19435 = JCM 12864"]]},{"id":"NCBITaxon:1122146","l":"Ligilactobacillus ceti DSM 22408","na":2,"nb":2,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A395085","Ligilactobacillus ceti"],["NCBITaxon%3A1122146","Ligilactobacillus ceti DSM 22408"]]},{"id":"NCBITaxon:1122149","l":"Secundilactobacillus malefermentans DSM 5705 = KCTC 3548","na":2,"nb":2,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A176292","Secundilactobacillus malefermentans"],["NCBITaxon%3A1122149","Secundilactobacillus malefermentans DSM 5705 = KCTC 3548"]]},{"id":"NCBITaxon:1122150","l":"Liquorilactobacillus nagelii DSM 13675","na":2,"nb":2,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A82688","Liquorilactobacillus nagelii"],["NCBITaxon%3A1122150","Liquorilactobacillus nagelii DSM 13675"]]},{"id":"NCBITaxon:1122151","l":"Companilactobacillus paralimentarius DSM 13238 = JCM 10415","na":2,"nb":2,"a":[["food-product-foodon-00001002.html","food product"],["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A83526","Companilactobacillus paralimentarius"],["NCBITaxon%3A1122151","Companilactobacillus paralimentarius DSM 13238 = JCM 10415"]]},{"id":"NCBITaxon:1122161","l":"Legionella geestiana DSM 21217","na":2,"nb":2,"a":[["drinking-water-envo-00003064.html","drinking water"],["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A45065","Legionella geestiana"],["NCBITaxon%3A1122161","Legionella geestiana DSM 21217"]]},{"id":"NCBITaxon:1122181","l":"Yoonia vestfoldensis DSM 16212","na":2,"nb":2,"a":[["hill-envo-00000083.html","hill"],["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A245188","Yoonia vestfoldensis"],["NCBITaxon%3A1122181","Yoonia vestfoldensis DSM 16212"]]},{"id":"NCBITaxon:1122191","l":"Maribacter antarcticus DSM 21422","na":2,"nb":2,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"],["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A505250","Maribacter antarcticus"],["NCBITaxon%3A1122191","Maribacter antarcticus DSM 21422"]]},{"id":"NCBITaxon:1122198","l":"Marinobacterium iners DSM 11526","na":2,"nb":2,"a":[["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["NCBITaxon%3A48076","Marinobacterium iners"],["NCBITaxon%3A1122198","Marinobacterium iners DSM 11526"]]},{"id":"NCBITaxon:1122201","l":"Marinobacterium litorale DSM 23545","na":2,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"],["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A404770","Marinobacterium litorale"],["NCBITaxon%3A1122201","Marinobacterium litorale DSM 23545"]]},{"id":"NCBITaxon:1122206","l":"Marinomonas polaris DSM 16579","na":2,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"],["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A293552","Marinomonas polaris"],["NCBITaxon%3A1122206","Marinomonas polaris DSM 16579"]]},{"id":"NCBITaxon:1122209","l":"Marinospirillum alkaliphilum DSM 21637","na":2,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A148454","Marinospirillum alkaliphilum"],["NCBITaxon%3A1122209","Marinospirillum alkaliphilum DSM 21637"]]},{"id":"NCBITaxon:1122225","l":"Mesoflavibacter zeaxanthinifaciens DSM 18436","na":2,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"],["shoreline-envo-00000486.html","shoreline"]],"b":[["NCBITaxon%3A393060","Mesoflavibacter zeaxanthinifaciens"],["NCBITaxon%3A1122225","Mesoflavibacter zeaxanthinifaciens DSM 18436"]]},{"id":"NCBITaxon:1122226","l":"Mesonia mobilis DSM 19841","na":2,"nb":2,"a":[["inlet-envo-00000475.html","inlet"],["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A369791","Mesonia mobilis"],["NCBITaxon%3A1122226","Mesonia mobilis DSM 19841"]]},{"id":"NCBITaxon:1122228","l":"Alloscardovia criceti DSM 17774","na":2,"nb":2,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A356828","Alloscardovia criceti"],["NCBITaxon%3A1122228","Alloscardovia criceti DSM 17774"]]},{"id":"NCBITaxon:1122239","l":"Microbacterium luticocti DSM 19459","na":2,"nb":2,"a":[["compost-envo-00002170.html","compost"],["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A451764","Microbacterium luticocti"],["NCBITaxon%3A1122239","Microbacterium luticocti DSM 19459"]]},{"id":"NCBITaxon:1122248","l":"Mycoplasmopsis gallinarum DSM 19816","na":2,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"],["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A29557","Mycoplasmopsis gallinarum"],["NCBITaxon%3A1122248","Mycoplasmopsis gallinarum DSM 19816"]]},{"id":"NCBITaxon:1122600","l":"Nereida ignava DSM 16309","na":2,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"],["mediterranean-envo-01000207.html","mediterranean"]],"b":[["NCBITaxon%3A282199","Nereida ignava"],["NCBITaxon%3A1122600","Nereida ignava DSM 16309"]]},{"id":"NCBITaxon:1122601","l":"Pseudovibrio exalbescens DSM 16456","na":2,"nb":2,"a":[["atoll-envo-00000166.html","atoll"],["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A197461","Pseudovibrio exalbescens"],["NCBITaxon%3A1122601","Pseudovibrio exalbescens DSM 16456"]]},{"id":"NCBITaxon:1122602","l":"Nesterenkonia alba DSM 19423","na":2,"nb":2,"a":[["bioreactor-envo-00002123.html","bioreactor"],["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A515814","Nesterenkonia alba"],["NCBITaxon%3A1122602","Nesterenkonia alba DSM 19423"]]},{"id":"NCBITaxon:1122603","l":"Nevskia ramosa DSM 11499","na":2,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A64002","Nevskia ramosa"],["NCBITaxon%3A1122603","Nevskia ramosa DSM 11499"]]},{"id":"NCBITaxon:1122607","l":"Nisaea denitrificans DSM 18348","na":2,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["NCBITaxon%3A390877","Nisaea denitrificans"],["NCBITaxon%3A1122607","Nisaea denitrificans DSM 18348"]]},{"id":"NCBITaxon:1122613","l":"Oceanicaulis alexandrii DSM 11625","na":2,"nb":2,"a":[["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"],["ria-envo-00000418.html","ria"]],"b":[["NCBITaxon%3A153233","Oceanicaulis alexandrii"],["NCBITaxon%3A1122613","Oceanicaulis alexandrii DSM 11625"]]},{"id":"NCBITaxon:1122920","l":"Paenibacillus harenae DSM 16969","na":2,"nb":2,"a":[["undersea-feature-envo-00000104.html","undersea feature"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A306543","Paenibacillus harenae"],["NCBITaxon%3A1122920","Paenibacillus harenae DSM 16969"]]},{"id":"NCBITaxon:1122923","l":"Paenibacillus pasadenensis DSM 19293","na":2,"nb":2,"a":[["building-envo-00000073.html","building"],["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A217090","Paenibacillus pasadenensis"],["NCBITaxon%3A1122923","Paenibacillus pasadenensis DSM 19293"]]},{"id":"NCBITaxon:1122928","l":"Paludibacterium yongneupense DSM 18731","na":2,"nb":2,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A400061","Paludibacterium yongneupense"],["NCBITaxon%3A1122928","Paludibacterium yongneupense DSM 18731"]]},{"id":"NCBITaxon:1122933","l":"Paraoerskovia marina DSM 21750","na":2,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"]],"b":[["NCBITaxon%3A545619","Paraoerskovia marina"],["NCBITaxon%3A1122933","Paraoerskovia marina DSM 21750"]]},{"id":"NCBITaxon:1122935","l":"Alitibacter langaaensis DSM 22999","na":2,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"],["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A756","Alitibacter langaaensis"],["NCBITaxon%3A1122935","Alitibacter langaaensis DSM 22999"]]},{"id":"NCBITaxon:1122946","l":"Pelobacter seleniigenes DSM 18267","na":2,"nb":2,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A407188","Pelobacter seleniigenes"],["NCBITaxon%3A1122946","Pelobacter seleniigenes DSM 18267"]]},{"id":"NCBITaxon:1122961","l":"","na":2,"nb":2,"a":[["volcanic-field-envo-00000354.html","volcanic field"],["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A46632","Picrophilus oshimae"],["NCBITaxon%3A1122961","Picrophilus oshimae DSM 9789"]]},{"id":"NCBITaxon:1122973","l":"Porphyromonas levii DSM 23370","na":2,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A28114","Porphyromonas levii"],["NCBITaxon%3A1122973","Porphyromonas levii DSM 23370"]]},{"id":"NCBITaxon:1122978","l":"Segatella albensis DSM 11370 = JCM 12258","na":2,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A77768","Segatella albensis"],["NCBITaxon%3A1122978","Segatella albensis DSM 11370 = JCM 12258"]]},{"id":"NCBITaxon:1122981","l":"Prevotella corporis DSM 18810 = JCM 8529","na":2,"nb":2,"a":[["vagina-uberon-0000996.html","vagina"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A28128","Prevotella corporis"],["NCBITaxon%3A1122981","Prevotella corporis DSM 18810 = JCM 8529"]]},{"id":"NCBITaxon:1122990","l":"Segatella paludivivens DSM 17968 = JCM 13650","na":2,"nb":2,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["NCBITaxon%3A185294","Segatella paludivivens"],["NCBITaxon%3A1122990","Segatella paludivivens DSM 17968 = JCM 13650"]]},{"id":"NCBITaxon:1123000","l":"Propionigenium maris DSM 9537","na":2,"nb":2,"a":[["estuary-envo-00000045.html","estuary"],["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["NCBITaxon%3A45622","Propionigenium maris"],["NCBITaxon%3A1123000","Propionigenium maris DSM 9537"]]},{"id":"NCBITaxon:1123032","l":"Psychrilyobacter atlanticus DSM 19335","na":2,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"]],"b":[["NCBITaxon%3A271091","Psychrilyobacter atlanticus"],["NCBITaxon%3A1123032","Psychrilyobacter atlanticus DSM 19335"]]},{"id":"NCBITaxon:1123037","l":"Psychroserpens burtonensis DSM 12212","na":2,"nb":2,"a":[["hill-envo-00000083.html","hill"],["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A49278","Psychroserpens burtonensis"],["NCBITaxon%3A1123037","Psychroserpens burtonensis DSM 12212"]]},{"id":"NCBITaxon:1123053","l":"Rheinheimera baltica DSM 14885","na":2,"nb":2,"a":[["marginal-sea-biome-envo-01000046.html","marginal sea biome"],["sea-envo-00000016.html","sea"]],"b":[["NCBITaxon%3A67576","Rheinheimera baltica"],["NCBITaxon%3A1123053","Rheinheimera baltica DSM 14885"]]},{"id":"NCBITaxon:1123057","l":"Rhodonellum psychrophilum GCM71 = DSM 17998","na":2,"nb":2,"a":[["fjord-envo-00000039.html","fjord"],["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A336828","Rhodonellum psychrophilum"],["NCBITaxon%3A1123057","Rhodonellum psychrophilum GCM71 = DSM 17998"]]},{"id":"NCBITaxon:1123071","l":"Rubritalea squalenifaciens DSM 18772","na":2,"nb":2,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"],["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A407226","Rubritalea squalenifaciens"],["NCBITaxon%3A1123071","Rubritalea squalenifaciens DSM 18772"]]},{"id":"NCBITaxon:1123075","l":"Ruminococcus gauvreauii DSM 19829","na":2,"nb":2,"a":[["large-intestine-bto-0000706.html","large intestine"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A438033","Ruminococcus gauvreauii"],["NCBITaxon%3A1123075","Ruminococcus gauvreauii DSM 19829"]]},{"id":"NCBITaxon:1123231","l":"Lacicoccus alkaliphilus DSM 16010","na":2,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A148453","Lacicoccus alkaliphilus"],["NCBITaxon%3A1123231","Lacicoccus alkaliphilus DSM 16010"]]},{"id":"NCBITaxon:1123234","l":"Salinimicrobium terrae DSM 17865","na":2,"nb":2,"a":[["saline-lake-envo-00000019.html","saline lake"],["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A470866","Salinimicrobium terrae"],["NCBITaxon%3A1123234","Salinimicrobium terrae DSM 17865"]]},{"id":"NCBITaxon:1123236","l":"Salinimonas chungwhensis DSM 16280","na":2,"nb":2,"a":[["pond-envo-00000033.html","pond"],["saline-evaporation-pond-envo-00000055.html","saline evaporation pond"]],"b":[["NCBITaxon%3A265425","Salinimonas chungwhensis"],["NCBITaxon%3A1123236","Salinimonas chungwhensis DSM 16280"]]},{"id":"NCBITaxon:1123243","l":"Schwartzia succinivorans DSM 10502","na":2,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A55507","Schwartzia succinivorans"],["NCBITaxon%3A1123243","Schwartzia succinivorans DSM 10502"]]},{"id":"NCBITaxon:1123244","l":"Sciscionella marina DSM 45152","na":2,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"]],"b":[["NCBITaxon%3A508770","Sciscionella marina"],["NCBITaxon%3A1123244","Sciscionella marina DSM 45152"]]},{"id":"NCBITaxon:1123250","l":"Selenomonas bovis DSM 23594","na":2,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A416586","Dongibacter bovis"],["NCBITaxon%3A1123250","Selenomonas bovis DSM 23594"]]},{"id":"NCBITaxon:1123251","l":"Serinicoccus marinus DSM 15273","na":2,"nb":2,"a":[["marginal-sea-biome-envo-01000046.html","marginal sea biome"],["sea-envo-00000016.html","sea"]],"b":[["NCBITaxon%3A247333","Serinicoccus marinus"],["NCBITaxon%3A1123251","Serinicoccus marinus DSM 15273"]]},{"id":"NCBITaxon:1123253","l":"Silanimonas lenta DSM 16282","na":2,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"],["mountain-envo-00000081.html","mountain"]],"b":[["NCBITaxon%3A265429","Silanimonas lenta"],["NCBITaxon%3A1123253","Silanimonas lenta DSM 16282"]]},{"id":"NCBITaxon:1123255","l":"Simplicispira psychrophila DSM 11588","na":2,"nb":2,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A80882","Simplicispira psychrophila"],["NCBITaxon%3A1123255","Simplicispira psychrophila DSM 11588"]]},{"id":"NCBITaxon:1123270","l":"Novosphingopyxis baekryungensis DSM 16222","na":2,"nb":2,"a":[["marginal-sea-biome-envo-01000046.html","marginal sea biome"],["sea-envo-00000016.html","sea"]],"b":[["NCBITaxon%3A279369","Novosphingopyxis baekryungensis"],["NCBITaxon%3A1123270","Novosphingopyxis baekryungensis DSM 16222"]]},{"id":"NCBITaxon:1123275","l":"Spirochaeta cellobiosiphila DSM 17781","na":2,"nb":2,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["saline-marsh-envo-00000054.html","saline marsh"]],"b":[["NCBITaxon%3A504483","Spirochaeta cellobiosiphila"],["NCBITaxon%3A1123275","Spirochaeta cellobiosiphila DSM 17781"]]},{"id":"NCBITaxon:1123276","l":"Spirosoma luteum DSM 19990","na":2,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"],["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A431553","Spirosoma luteum"],["NCBITaxon%3A1123276","Spirosoma luteum DSM 19990"]]},{"id":"NCBITaxon:1123278","l":"Spirosoma spitsbergense DSM 19989","na":2,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"],["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A431554","Spirosoma spitsbergense"],["NCBITaxon%3A1123278","Spirosoma spitsbergense DSM 19989"]]},{"id":"NCBITaxon:1123299","l":"Streptococcus castoreus DSM 17536","na":2,"nb":2,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A254786","Streptococcus castoreus"],["NCBITaxon%3A1123299","Streptococcus castoreus DSM 17536"]]},{"id":"NCBITaxon:1123323","l":"Succiniclasticum ruminis DSM 9236","na":2,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A40841","Succiniclasticum ruminis"],["NCBITaxon%3A1123323","Succiniclasticum ruminis DSM 9236"]]},{"id":"NCBITaxon:1123324","l":"Succinivibrio dextrinosolvens DSM 3072","na":2,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A83771","Succinivibrio dextrinosolvens"],["NCBITaxon%3A1123324","Succinivibrio dextrinosolvens DSM 3072"]]},{"id":"NCBITaxon:1123325","l":"Sulfurihydrogenibium subterraneum DSM 15120","na":2,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["gold-mine-envo-00002168.html","gold mine"]],"b":[["NCBITaxon%3A171121","Sulfurihydrogenibium subterraneum"],["NCBITaxon%3A1123325","Sulfurihydrogenibium subterraneum DSM 15120"]]},{"id":"NCBITaxon:1123326","l":"Sulfurospirillum arcachonense DSM 9755","na":2,"nb":2,"a":[["ocean-trench-envo-00000275.html","ocean trench"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A57666","Sulfurospirillum arcachonense"],["NCBITaxon%3A1123326","Sulfurospirillum arcachonense DSM 9755"]]},{"id":"NCBITaxon:1123359","l":"Tetragenococcus muriaticus DSM 15685","na":2,"nb":2,"a":[["food-product-foodon-00001002.html","food product"],["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A64642","Tetragenococcus muriaticus"],["NCBITaxon%3A1123359","Tetragenococcus muriaticus DSM 15685"]]},{"id":"NCBITaxon:1123368","l":"Thermithiobacillus tepidarius DSM 3134","na":2,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A929","Thermithiobacillus tepidarius"],["NCBITaxon%3A1123368","Thermithiobacillus tepidarius DSM 3134"]]},{"id":"NCBITaxon:1123371","l":"Thermodesulfatator atlanticus DSM 21156","na":2,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ridge-envo-00000283.html","ridge"]],"b":[["NCBITaxon%3A501497","Thermodesulfatator atlanticus"],["NCBITaxon%3A1123371","Thermodesulfatator atlanticus DSM 21156"]]},{"id":"NCBITaxon:1123373","l":"Thermodesulfobacterium thermophilum DSM 1276","na":2,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A886","Thermodesulfobacterium thermophilum"],["NCBITaxon%3A1123373","Thermodesulfobacterium thermophilum DSM 1276"]]},{"id":"NCBITaxon:1123380","l":"Thermosipho atlanticus DSM 15807","na":2,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ridge-envo-00000283.html","ridge"]],"b":[["NCBITaxon%3A238991","Thermosipho atlanticus"],["NCBITaxon%3A1123380","Thermosipho atlanticus DSM 15807"]]},{"id":"NCBITaxon:1123405","l":"Tuberibacillus calidus DSM 17572","na":2,"nb":2,"a":[["compost-envo-00002170.html","compost"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A340097","Tuberibacillus calidus"],["NCBITaxon%3A1123405","Tuberibacillus calidus DSM 17572"]]},{"id":"NCBITaxon:1123500","l":"Weissella halotolerans DSM 20190","na":2,"nb":2,"a":[["food-product-foodon-00001002.html","food product"],["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A1615","Weissella halotolerans"],["NCBITaxon%3A1123500","Weissella halotolerans DSM 20190"]]},{"id":"NCBITaxon:1124597","l":"Magnetococcus marinus","na":2,"nb":2,"a":[["brackish-water-envo-00002019.html","brackish water"],["brackish-water-body-envo-01001321.html","brackish water body"]],"b":[["NCBITaxon%3A1124597","Magnetococcus marinus"],["NCBITaxon%3A156889","Magnetococcus marinus MC-1"]]},{"id":"NCBITaxon:1132443","l":"Methylosarcina fibrata AML-C10","na":2,"nb":2,"a":[["landfill-envo-00000533.html","landfill"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A105972","Methylosarcina fibrata"],["NCBITaxon%3A1132443","Methylosarcina fibrata AML-C10"]]},{"id":"NCBITaxon:1160719","l":"Cutibacterium granulosum DSM 20700","na":2,"nb":2,"a":[["sebaceous-gland-bto-0001980.html","sebaceous gland"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["NCBITaxon%3A33011","Cutibacterium granulosum"],["NCBITaxon%3A1160719","Cutibacterium granulosum DSM 20700"]]},{"id":"NCBITaxon:1165090","l":"Imtechella halotolerans","na":2,"nb":2,"a":[["brackish-water-envo-00002019.html","brackish water"],["brackish-water-body-envo-01001321.html","brackish water body"]],"b":[["NCBITaxon%3A1165090","Imtechella halotolerans"],["NCBITaxon%3A946077","Imtechella halotolerans K1"]]},{"id":"NCBITaxon:1168067","l":"Hydrogenovibrio kuenenii DSM 12350","na":2,"nb":2,"a":[["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A63658","Hydrogenovibrio kuenenii"],["NCBITaxon%3A1168067","Hydrogenovibrio kuenenii DSM 12350"]]},{"id":"NCBITaxon:1173061","l":"Geotrichum candidum","na":2,"nb":2,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A104098","Acetobacter peroxydans"],["NCBITaxon%3A1173061","Geotrichum candidum"]]},{"id":"NCBITaxon:1193095","l":"Paucilactobacillus hokkaidonensis","na":2,"nb":2,"a":[["immune-system-bto-0005810.html","immune system"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A1193095","Paucilactobacillus hokkaidonensis"],["NCBITaxon%3A1291742","Paucilactobacillus hokkaidonensis JCM 18461"]]},{"id":"NCBITaxon:119394","l":"Pseudothermotoga thermarum","na":2,"nb":2,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A119394","Pseudothermotoga thermarum"],["NCBITaxon%3A688269","Pseudothermotoga thermarum DSM 5069"]]},{"id":"NCBITaxon:1206734","l":"Nocardia paucivorans NBRC 100373","na":2,"nb":2,"a":[["secretion-bto-0002979.html","secretion"],["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A114259","Nocardia paucivorans"],["NCBITaxon%3A1206734","Nocardia paucivorans NBRC 100373"]]},{"id":"NCBITaxon:1207542","l":"Bifidobacterium bifidum LMG 13195","na":2,"nb":2,"a":[["leukocyte-bto-0000751.html","leukocyte"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"]],"b":[["NCBITaxon%3A1681","Bifidobacterium bifidum"],["NCBITaxon%3A1207542","Bifidobacterium bifidum LMG 13195"]]},{"id":"NCBITaxon:120962","l":"Roseiflexus castenholzii","na":2,"nb":2,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["NCBITaxon%3A120962","Roseiflexus castenholzii"],["NCBITaxon%3A383372","Roseiflexus castenholzii DSM 13941"]]},{"id":"NCBITaxon:1210098","l":"Nocardia vaccinii NBRC 15922","na":2,"nb":2,"a":[["plant-gall-po-0025626.html","plant gall"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["NCBITaxon%3A1822","Nocardia vaccinii"],["NCBITaxon%3A1210098","Nocardia vaccinii NBRC 15922"]]},{"id":"NCBITaxon:1215098","l":"Pseudomonas cremoricolorata DSM 17059 = NBRC 16634","na":2,"nb":2,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["NCBITaxon%3A157783","Pseudomonas cremoricolorata"],["NCBITaxon%3A1215098","Pseudomonas cremoricolorata DSM 17059 = NBRC 16634"]]},{"id":"NCBITaxon:1215103","l":"Pseudomonas indica NBRC 103045","na":2,"nb":2,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A137658","Pseudomonas indica"],["NCBITaxon%3A1215103","Pseudomonas indica NBRC 103045"]]},{"id":"NCBITaxon:1215114","l":"Pseudomonas parafulva NBRC 16636 = DSM 17004","na":2,"nb":2,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["NCBITaxon%3A157782","Pseudomonas parafulva"],["NCBITaxon%3A1215114","Pseudomonas parafulva NBRC 16636 = DSM 17004"]]},{"id":"NCBITaxon:1219042","l":"Novosphingobium capsulatum NBRC 12533","na":2,"nb":2,"a":[["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A13688","Novosphingobium capsulatum"],["NCBITaxon%3A1219042","Novosphingobium capsulatum NBRC 12533"]]},{"id":"NCBITaxon:1219071","l":"Vibrio harveyi NBRC 15634 = ATCC 14126 = KCTC 12724","na":2,"nb":2,"a":[["alimentary-canal-bto-0000058.html","alimentary canal"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A669","Vibrio harveyi"],["NCBITaxon%3A1219071","Vibrio harveyi NBRC 15634 = ATCC 14126 = KCTC 12724"]]},{"id":"NCBITaxon:1220554","l":"Actinomadura chibensis NBRC 106107","na":2,"nb":2,"a":[["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A392828","Actinomadura chibensis"],["NCBITaxon%3A1220554","Actinomadura chibensis NBRC 106107"]]},{"id":"NCBITaxon:1223527","l":"Microbacterium hydrocarbonoxydans NBRC 103074","na":2,"nb":2,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A273678","Microbacterium hydrocarbonoxydans"],["NCBITaxon%3A1223527","Microbacterium hydrocarbonoxydans NBRC 103074"]]},{"id":"NCBITaxon:1224163","l":"Corynebacterium maris DSM 45190","na":2,"nb":2,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"],["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A575200","Corynebacterium maris"],["NCBITaxon%3A1224163","Corynebacterium maris DSM 45190"]]},{"id":"NCBITaxon:1224742","l":"","na":2,"nb":2,"a":[["kidney-bto-0000671.html","kidney"],["renal-cortex-bto-0001166.html","renal cortex"]],"b":[["NCBITaxon%3A680","Vibrio campbellii"],["NCBITaxon%3A1224742","Vibrio campbellii CAIM 519 = NBRC 15631 = ATCC 25920"]]},{"id":"NCBITaxon:1226751","l":"Mycolicibacterium monacense DSM 44395","na":2,"nb":2,"a":[["bronchus-uberon-0002185.html","bronchus"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A85693","Mycolicibacterium monacense"],["NCBITaxon%3A1226751","Mycolicibacterium monacense DSM 44395"]]},{"id":"NCBITaxon:1227812","l":"Piscirickettsia salmonis LF-89 = ATCC VR-1361","na":2,"nb":2,"a":[["head-kidney-bto-0005189.html","head kidney"],["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A1238","Piscirickettsia salmonis"],["NCBITaxon%3A1227812","Piscirickettsia salmonis LF-89 = ATCC VR-1361"]]},{"id":"NCBITaxon:122960","l":"Paenalicyclobacillus herbarius","na":2,"nb":2,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A1120972","Alicyclobacillus herbarius DSM 13609"],["NCBITaxon%3A122960","Paenalicyclobacillus herbarius"]]},{"id":"NCBITaxon:1236548","l":"Bacillus inaquosorum KCTC 13429","na":2,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"],["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A483913","Bacillus inaquosorum"],["NCBITaxon%3A1236548","Bacillus inaquosorum KCTC 13429"]]},{"id":"NCBITaxon:1251","l":"Leuconostoc fallax","na":2,"nb":2,"a":[["plant-resin-po-0025603.html","plant resin"],["animal-manure-envo-00003031.html","animal manure"]],"b":[["NCBITaxon%3A1251","Leuconostoc fallax"],["NCBITaxon%3A907931","Leuconostoc fallax KCTC 3537"]]},{"id":"NCBITaxon:1265311","l":"Mycobacterium arosiense ATCC BAA-1401 = DSM 45069","na":2,"nb":2,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["bone-element-uberon-0001474.html","bone element"]],"b":[["NCBITaxon%3A425468","Mycobacterium arosiense"],["NCBITaxon%3A1265311","Mycobacterium arosiense ATCC BAA-1401 = DSM 45069"]]},{"id":"NCBITaxon:1265504","l":"Curvibacter lanceolatus ATCC 14669","na":2,"nb":2,"a":[["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A86182","Curvibacter lanceolatus"],["NCBITaxon%3A1265504","Curvibacter lanceolatus ATCC 14669"]]},{"id":"NCBITaxon:1265505","l":"Desulfospira joergensenii DSM 10085","na":2,"nb":2,"a":[["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A53329","Desulfospira joergensenii"],["NCBITaxon%3A1265505","Desulfospira joergensenii DSM 10085"]]},{"id":"NCBITaxon:1265507","l":"Succinimonas amylolytica DSM 2873","na":2,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A83769","Succinimonas amylolytica"],["NCBITaxon%3A1265507","Succinimonas amylolytica DSM 2873"]]},{"id":"NCBITaxon:1267754","l":"Corynebacterium urealyticum DSM 7111","na":2,"nb":2,"a":[["kidney-bto-0000671.html","kidney"],["urinary-tract-bto-0001244.html","urinary tract"]],"b":[["NCBITaxon%3A43771","Corynebacterium urealyticum"],["NCBITaxon%3A1267754","Corynebacterium urealyticum DSM 7111"]]},{"id":"NCBITaxon:1278303","l":"Psychromonas macrocephali ATCC BAA-1527","na":2,"nb":2,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A444920","Psychromonas macrocephali"],["NCBITaxon%3A1278303","Psychromonas macrocephali ATCC BAA-1527"]]},{"id":"NCBITaxon:1278309","l":"Amphritea japonica ATCC BAA-1530","na":2,"nb":2,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A452627","Amphritea japonica"],["NCBITaxon%3A1278309","Amphritea japonica ATCC BAA-1530"]]},{"id":"NCBITaxon:1278310","l":"Amphritea balenae ATCC BAA-1529","na":2,"nb":2,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A452629","Amphritea balenae"],["NCBITaxon%3A1278310","Amphritea balenae ATCC BAA-1529"]]},{"id":"NCBITaxon:1278312","l":"Psychromonas aquimarina ATCC BAA-1526","na":2,"nb":2,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A444919","Psychromonas aquimarina"],["NCBITaxon%3A1278312","Psychromonas aquimarina ATCC BAA-1526"]]},{"id":"NCBITaxon:1291048","l":"Thermoanaerobacter thermocopriae JCM 7501","na":2,"nb":2,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A29350","Thermoanaerobacter thermocopriae"],["NCBITaxon%3A1291048","Thermoanaerobacter thermocopriae JCM 7501"]]},{"id":"NCBITaxon:12917","l":"Acidovorax facilis","na":2,"nb":2,"a":[["biome-envo-00000428.html","biome"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A12917","Acidovorax facilis"],["NCBITaxon%3A1872122","Acidovorax sp."]]},{"id":"NCBITaxon:1292027","l":"Stutzerimonas azotifigens DSM 17556","na":2,"nb":2,"a":[["compost-envo-00002170.html","compost"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A291995","Stutzerimonas azotifigens"],["NCBITaxon%3A1292027","Stutzerimonas azotifigens DSM 17556"]]},{"id":"NCBITaxon:1297617","l":"Intestinimonas butyriciproducens","na":2,"nb":2,"a":[["enterocyte-bto-0000398.html","enterocyte"],["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A1297617","Intestinimonas butyriciproducens"],["NCBITaxon%3A1470357","Intestinimonas butyriciproducens AP4"]]},{"id":"NCBITaxon:1313303","l":"Xanthomonas oryzae ATCC 35933","na":2,"nb":2,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["NCBITaxon%3A347","Xanthomonas oryzae"],["NCBITaxon%3A1313303","Xanthomonas oryzae ATCC 35933"]]},{"id":"NCBITaxon:132144","l":"Candidatus Glomeribacter gigasporarum","na":2,"nb":2,"a":[["marine-water-body-envo-00001999.html","marine water body"],["stream-envo-00000023.html","stream"]],"b":[["NCBITaxon%3A132144","Candidatus Glomeribacter gigasporarum"],["NCBITaxon%3A1070319","Candidatus Glomeribacter gigasporarum BEG34"]]},{"id":"NCBITaxon:132249","l":"Nocardia veterana","na":2,"nb":2,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A132249","Nocardia veterana"],["NCBITaxon%3A1206743","Nocardia veterana NBRC 100344"]]},{"id":"NCBITaxon:134034","l":"Corynebacterium freneyi","na":2,"nb":2,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A134034","Corynebacterium freneyi"],["NCBITaxon%3A1287475","Corynebacterium freneyi DNF00450"]]},{"id":"NCBITaxon:1349763","l":"Curvibacter delicatus NBRC 14919","na":2,"nb":2,"a":[["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A80879","Curvibacter delicatus"],["NCBITaxon%3A1349763","Curvibacter delicatus NBRC 14919"]]},{"id":"NCBITaxon:1358026","l":"Leifsonia aquatica ATCC 14665","na":2,"nb":2,"a":[["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A144185","Leifsonia aquatica"],["NCBITaxon%3A1358026","Leifsonia aquatica ATCC 14665"]]},{"id":"NCBITaxon:1366054","l":"Nannocystis exedens subsp. cinnabaria","na":2,"nb":2,"a":[["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A54","Nannocystis exedens"],["NCBITaxon%3A1366054","Nannocystis exedens subsp. cinnabaria"]]},{"id":"NCBITaxon:1367848","l":"Cronobacter sakazakii NCIMB 8272","na":2,"nb":2,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A28141","Cronobacter sakazakii"],["NCBITaxon%3A1367848","Cronobacter sakazakii NCIMB 8272"]]},{"id":"NCBITaxon:1385511","l":"Pontibacillus marinus BH030004 = DSM 16465","na":2,"nb":2,"a":[["pond-envo-00000033.html","pond"],["saline-evaporation-pond-envo-00000055.html","saline evaporation pond"]],"b":[["NCBITaxon%3A273164","Pontibacillus marinus"],["NCBITaxon%3A1385511","Pontibacillus marinus BH030004 = DSM 16465"]]},{"id":"NCBITaxon:1385515","l":"Lysobacter defluvii IMMIB APB-9 = DSM 18482","na":2,"nb":2,"a":[["landfill-envo-00000533.html","landfill"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A1385515","Lysobacter defluvii IMMIB APB-9 = DSM 18482"],["NCBITaxon%3A391738","Novilysobacter defluvii"]]},{"id":"NCBITaxon:1385984","l":"Exiguobacterium chiriqhucha","na":2,"nb":2,"a":[["water-ice-envo-01000277.html","water ice"],["peak-envo-00000480.html","peak"]],"b":[["NCBITaxon%3A1385984","Exiguobacterium chiriqhucha"],["NCBITaxon%3A1345023","Exiguobacterium chiriqhucha RW-2"]]},{"id":"NCBITaxon:1397696","l":"Exiguobacterium marinum DSM 16307","na":2,"nb":2,"a":[["beach-envo-00000091.html","beach"],["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["NCBITaxon%3A273528","Exiguobacterium marinum"],["NCBITaxon%3A1397696","Exiguobacterium marinum DSM 16307"]]},{"id":"NCBITaxon:1401","l":"Paenibacillus lautus","na":2,"nb":2,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A1401","Paenibacillus lautus"],["NCBITaxon%3A1349780","Paenibacillus lautus NBRC 15380"]]},{"id":"NCBITaxon:1404341","l":"Sphingobium scionense","na":2,"nb":2,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"],["oil-envo-00002985.html","oil"]],"b":[["NCBITaxon%3A1206997","Pseudonocardia nematodicida"],["NCBITaxon%3A1404341","Sphingobium scionense"]]},{"id":"NCBITaxon:1408191","l":"Corynebacterium deserti","na":2,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"],["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A1408191","Corynebacterium deserti"],["NCBITaxon%3A931089","Corynebacterium deserti GIMN1.010"]]},{"id":"NCBITaxon:1408420","l":"Paracidovorax oryzae ATCC 19882","na":2,"nb":2,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["NCBITaxon%3A862720","Paracidovorax oryzae"],["NCBITaxon%3A1408420","Paracidovorax oryzae ATCC 19882"]]},{"id":"NCBITaxon:1408424","l":"Alkalihalobacillus bogoriensis ATCC BAA-922","na":2,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A1408424","Alkalihalobacillus bogoriensis ATCC BAA-922"],["NCBITaxon%3A246272","Alkalihalobacterium bogoriense"]]},{"id":"NCBITaxon:1423144","l":"Phaeobacter gallaeciensis DSM 26640","na":2,"nb":2,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A60890","Phaeobacter gallaeciensis"],["NCBITaxon%3A1423144","Phaeobacter gallaeciensis DSM 26640"]]},{"id":"NCBITaxon:1435036","l":"Acinetobacter bohemicus","na":2,"nb":2,"a":[["sludge-envo-00002044.html","sludge"],["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A1435036","Acinetobacter bohemicus"],["NCBITaxon%3A1217715","Acinetobacter bohemicus ANC 3994"]]},{"id":"NCBITaxon:1449351","l":"Roseivivax isoporae LMG 25204","na":2,"nb":2,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A591206","Roseivivax isoporae"],["NCBITaxon%3A1449351","Roseivivax isoporae LMG 25204"]]},{"id":"NCBITaxon:1462938","l":"Rickettsia tamurae subsp. buchneri","na":2,"nb":2,"a":[["embryonic-cell-line-bto-0000669.html","embryonic cell line"],["ovary-bto-0000975.html","ovary"]],"b":[["NCBITaxon%3A334545","Rickettsia tamurae"],["NCBITaxon%3A1462938","Rickettsia tamurae subsp. buchneri"]]},{"id":"NCBITaxon:1523","l":"Clostridium longisporum","na":2,"nb":2,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1523","Clostridium longisporum"],["NCBITaxon%3A1761781","Clostridium sp. DSM 8431"]]},{"id":"NCBITaxon:1527","l":"Anaerocolumna aminovalerica","na":2,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"]],"b":[["NCBITaxon%3A1527","Anaerocolumna aminovalerica"],["NCBITaxon%3A1121297","Anaerocolumna aminovalerica DSM 1283"]]},{"id":"NCBITaxon:153151","l":"Parageobacillus toebii","na":2,"nb":2,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A153151","Parageobacillus toebii"],["NCBITaxon%3A1223503","Parageobacillus toebii NBRC 107807"]]},{"id":"NCBITaxon:1563","l":"Desulfosporosinus orientis","na":2,"nb":2,"a":[["grassland-soil-envo-00005750.html","grassland soil"],["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["NCBITaxon%3A1563","Desulfosporosinus orientis"],["NCBITaxon%3A768706","Desulfosporosinus orientis DSM 765"]]},{"id":"NCBITaxon:156889","l":"Magnetococcus marinus MC-1","na":2,"nb":2,"a":[["estuary-envo-00000045.html","estuary"],["marine-neritic-zone-envo-00000206.html","marine neritic zone"]],"b":[["NCBITaxon%3A1124597","Magnetococcus marinus"],["NCBITaxon%3A156889","Magnetococcus marinus MC-1"]]},{"id":"NCBITaxon:156977","l":"Microbacterium resistens","na":2,"nb":2,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A156977","Microbacterium resistens"],["NCBITaxon%3A1223505","Microbacterium resistens NBRC 103078"]]},{"id":"NCBITaxon:161890","l":"Corynebacterium mastitidis","na":2,"nb":2,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["NCBITaxon%3A161890","Corynebacterium mastitidis"],["NCBITaxon%3A1121365","Corynebacterium mastitidis DSM 44356"]]},{"id":"NCBITaxon:162426","l":"Microbacterium hominis","na":2,"nb":2,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A162426","Microbacterium hominis"],["NCBITaxon%3A1348634","Microbacterium hominis NBRC 15708"]]},{"id":"NCBITaxon:1626","l":"Lacticaseibacillus sharpeae","na":2,"nb":2,"a":[["pig-manure-envo-00003860.html","pig manure"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["NCBITaxon%3A1626","Lacticaseibacillus sharpeae"],["NCBITaxon%3A1291052","Lacticaseibacillus sharpeae JCM 1186 = DSM 20505"]]},{"id":"NCBITaxon:164759","l":"Diaphorobacter nitroreducens","na":2,"nb":2,"a":[["activated-sludge-envo-00002046.html","activated sludge"],["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A164759","Diaphorobacter nitroreducens"],["NCBITaxon%3A1236961","Diaphorobacter nitroreducens JCM 11421"]]},{"id":"NCBITaxon:165","l":"Treponema saccharophilum","na":2,"nb":2,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["lagoon-envo-00000038.html","lagoon"]],"b":[["NCBITaxon%3A165","Treponema saccharophilum"],["NCBITaxon%3A907348","Treponema saccharophilum DSM 2985"]]},{"id":"NCBITaxon:169679","l":"Clostridium saccharobutylicum","na":2,"nb":2,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"]],"b":[["NCBITaxon%3A169679","Clostridium saccharobutylicum"],["NCBITaxon%3A1345695","Clostridium saccharobutylicum DSM 13864"]]},{"id":"NCBITaxon:176292","l":"Secundilactobacillus malefermentans","na":2,"nb":2,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["NCBITaxon%3A176292","Secundilactobacillus malefermentans"],["NCBITaxon%3A1122149","Secundilactobacillus malefermentans DSM 5705 = KCTC 3548"]]},{"id":"NCBITaxon:180311","l":"Hespellia stercorisuis","na":2,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["NCBITaxon%3A180311","Hespellia stercorisuis"],["NCBITaxon%3A1121950","Hespellia stercorisuis DSM 15480"]]},{"id":"NCBITaxon:184067","l":"Kushneria indalinina","na":2,"nb":2,"a":[["pond-envo-00000033.html","pond"],["saline-evaporation-pond-envo-00000055.html","saline evaporation pond"]],"b":[["NCBITaxon%3A184067","Kushneria indalinina"],["NCBITaxon%3A1122140","Kushneria indalinina DSM 14324"]]},{"id":"NCBITaxon:1863","l":"Dermatophilus congolensis","na":2,"nb":2,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["NCBITaxon%3A1863","Dermatophilus congolensis"],["NCBITaxon%3A1121387","Dermatophilus congolensis DSM 44180 = NBRC 105199"]]},{"id":"NCBITaxon:187101","l":"Sneathia vaginalis","na":2,"nb":2,"a":[["reproductive-system-bto-0000081.html","reproductive system"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A187101","Sneathia vaginalis"],["NCBITaxon%3A553161","Sneathia vaginalis JCVIHMP001"]]},{"id":"NCBITaxon:1871063","l":"Aeromicrobium sp.","na":2,"nb":2,"a":[["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A2708114","Aeromicrobium panacisoli"],["NCBITaxon%3A1871063","Aeromicrobium sp."]]},{"id":"NCBITaxon:190485","l":"Xanthomonas campestris pv. campestris (strain ATCC 33913 / DSM 3586 / NCPPB 528 / LMG 568 / P 25)","na":2,"nb":2,"a":[["fruit-bto-0000486.html","fruit"],["vascular-tissue-bto-0001432.html","vascular tissue"]],"b":[["NCBITaxon%3A339","Xanthomonas campestris"],["NCBITaxon%3A190485","Xanthomonas campestris pv. campestris str. ATCC 33913"]]},{"id":"NCBITaxon:190650","l":"Caulobacter vibrioides (strain ATCC 19089 / CIP 103742 / CB 15)","na":2,"nb":2,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A155892","Caulobacter vibrioides"],["NCBITaxon%3A190650","Caulobacter vibrioides CB15"]]},{"id":"NCBITaxon:194963","l":"Sinorhizobium americanum","na":2,"nb":2,"a":[["root-nodule-envo-01000164.html","root nodule"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A194963","Sinorhizobium americanum"],["NCBITaxon%3A1408224","Sinorhizobium americanum CCGM7"]]},{"id":"NCBITaxon:204470","l":"Paenalicyclobacillus pomorum","na":2,"nb":2,"a":[["surface-water-envo-00002042.html","surface water"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["NCBITaxon%3A1111479","Alicyclobacillus pomorum DSM 14955"],["NCBITaxon%3A204470","Paenalicyclobacillus pomorum"]]},{"id":"NCBITaxon:209897","l":"Afifella pfennigii","na":2,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["NCBITaxon%3A209897","Afifella pfennigii"],["NCBITaxon%3A1120956","Afifella pfennigii DSM 17143"]]},{"id":"NCBITaxon:210512","l":"Sandarakinorhabdus limnophila","na":2,"nb":2,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["water-body-envo-00000063.html","water body"]],"b":[["NCBITaxon%3A210512","Sandarakinorhabdus limnophila"],["NCBITaxon%3A1123240","Sandarakinorhabdus limnophila DSM 17366"]]},{"id":"NCBITaxon:216432","l":"Croceibacter atlanticus HTCC2559","na":2,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["NCBITaxon%3A313588","Croceibacter atlanticus"],["NCBITaxon%3A216432","Croceibacter atlanticus HTCC2559"]]},{"id":"NCBITaxon:218205","l":"Garciella nitratireducens","na":2,"nb":2,"a":[["ocean-trench-envo-00000275.html","ocean trench"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A218205","Garciella nitratireducens"],["NCBITaxon%3A1121911","Garciella nitratireducens DSM 15102"]]},{"id":"NCBITaxon:2200","l":"Methanoculleus thermophilus","na":2,"nb":2,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"]],"b":[["NCBITaxon%3A2200","Methanoculleus thermophilus"],["NCBITaxon%3A1122231","Methanoculleus thermophilus DSM 2373"]]},{"id":"NCBITaxon:221109","l":"Oceanobacillus iheyensis HTE831","na":2,"nb":2,"a":[["duodenum-bto-0000365.html","duodenum"],["kidney-bto-0000671.html","kidney"]],"b":[["NCBITaxon%3A182710","Oceanobacillus iheyensis"],["NCBITaxon%3A221109","Oceanobacillus iheyensis HTE831"]]},{"id":"NCBITaxon:223390","l":"Ancylobacter polymorphus","na":2,"nb":2,"a":[["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"]],"b":[["NCBITaxon%3A286438","Agromyces hippuratus"],["NCBITaxon%3A223390","Ancylobacter polymorphus"]]},{"id":"NCBITaxon:2264","l":"Thermococcus celer","na":2,"nb":2,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A2264","Thermococcus celer"],["NCBITaxon%3A1293037","Thermococcus celer Vu 13 = JCM 8558"]]},{"id":"NCBITaxon:2303","l":"Thermoplasma acidophilum","na":2,"nb":2,"a":[["paddy-field-envo-00000297.html","paddy field"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["NCBITaxon%3A2303","Thermoplasma acidophilum"],["NCBITaxon%3A273075","Thermoplasma acidophilum DSM 1728"]]},{"id":"NCBITaxon:231233","l":"Streptococcus devriesei","na":2,"nb":2,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A231233","Streptococcus devriesei"],["NCBITaxon%3A1123300","Streptococcus devriesei DSM 19639"]]},{"id":"NCBITaxon:2369","l":"Arhodomonas aquaeolei","na":2,"nb":2,"a":[["small-river-biome-envo-00000890.html","small river biome"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["NCBITaxon%3A2369","Arhodomonas aquaeolei"],["NCBITaxon%3A1121016","Arhodomonas aquaeolei DSM 8974"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii (strain ATCC 43067 / DSM 2661 / JAL-1 / JCM 10045 / NBRC 100440)","na":2,"nb":2,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A2190","Methanocaldococcus jannaschii"],["NCBITaxon%3A243232","Methanocaldococcus jannaschii DSM 2661"]]},{"id":"NCBITaxon:244592","l":"Roseibium alexandrii DFL-11","na":2,"nb":2,"a":[["sandstone-envo-00002055.html","sandstone"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["NCBITaxon%3A388408","Roseibium alexandrii"],["NCBITaxon%3A244592","Roseibium alexandrii DFL-11"]]},{"id":"NCBITaxon:266265","l":"","na":2,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["landfill-envo-00000533.html","landfill"]],"b":[["NCBITaxon%3A36873","Paraburkholderia xenovorans"],["NCBITaxon%3A266265","Paraburkholderia xenovorans LB400"]]},{"id":"NCBITaxon:269482","l":"Burkholderia vietnamiensis G4","na":2,"nb":2,"a":[["air-envo-00002005.html","air"],["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A60552","Burkholderia vietnamiensis"],["NCBITaxon%3A269482","Burkholderia vietnamiensis G4"]]},{"id":"NCBITaxon:271848","l":"Burkholderia thailandensis E264","na":2,"nb":2,"a":[["needle-bto-0000917.html","needle"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A57975","Burkholderia thailandensis"],["NCBITaxon%3A271848","Burkholderia thailandensis E264"]]},{"id":"NCBITaxon:272161","l":"Arthrobacter stackebrandtii","na":2,"nb":2,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A272161","Arthrobacter stackebrandtii"],["NCBITaxon%3A1302660","Arthrobacter stackebrandtii Ln5.10"]]},{"id":"NCBITaxon:2746","l":"Halomonas elongata","na":2,"nb":2,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"],["saline-water-body-envo-01001319.html","saline water body"]],"b":[["NCBITaxon%3A2746","Halomonas elongata"],["NCBITaxon%3A768066","Halomonas elongata DSM 2581"]]},{"id":"NCBITaxon:28128","l":"Prevotella corporis","na":2,"nb":2,"a":[["environmental-feature-envo-00002297.html","environmental feature"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A28128","Prevotella corporis"],["NCBITaxon%3A1122981","Prevotella corporis DSM 18810 = JCM 8529"]]},{"id":"NCBITaxon:28172","l":"Vibrio metschnikovii","na":2,"nb":2,"a":[["heated-burned-habitatmech-bacdive-8bf2766463.html","Heated-Burned"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A28172","Vibrio metschnikovii"],["NCBITaxon%3A675813","Vibrio metschnikovii CIP 69.14"]]},{"id":"NCBITaxon:282199","l":"Nereida ignava","na":2,"nb":2,"a":[["sandstone-envo-00002055.html","sandstone"],["bile-bto-0000121.html","bile"]],"b":[["NCBITaxon%3A282199","Nereida ignava"],["NCBITaxon%3A1122600","Nereida ignava DSM 16309"]]},{"id":"NCBITaxon:28223","l":"Desulfobacula toluolica","na":2,"nb":2,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A28223","Desulfobacula toluolica"],["NCBITaxon%3A651182","Desulfobacula toluolica Tol2"]]},{"id":"NCBITaxon:28229","l":"Colwellia psychrerythraea","na":2,"nb":2,"a":[["egg-food-product-foodon-00001274.html","egg food product"],["fumarole-envo-00000216.html","fumarole"]],"b":[["NCBITaxon%3A28229","Colwellia psychrerythraea"],["NCBITaxon%3A167879","Colwellia psychrerythraea 34H"]]},{"id":"NCBITaxon:28254","l":"Marinomonas communis","na":2,"nb":2,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A2743","Marinobacter nauticus"],["NCBITaxon%3A28254","Marinomonas communis"]]},{"id":"NCBITaxon:283166","l":"Bartonella henselae str. Houston-1","na":2,"nb":2,"a":[["endothelial-cell-bto-0001176.html","endothelial cell"],["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["NCBITaxon%3A38323","Bartonella henselae"],["NCBITaxon%3A283166","Bartonella henselae str. Houston-1"]]},{"id":"NCBITaxon:28446","l":"Anaerotignum propionicum","na":2,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["NCBITaxon%3A28446","Anaerotignum propionicum"],["NCBITaxon%3A991789","Anaerotignum propionicum DSM 1682"]]},{"id":"NCBITaxon:285106","l":"Tepidimicrobium ferriphilum","na":2,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["NCBITaxon%3A285106","Tepidimicrobium ferriphilum"],["NCBITaxon%3A1123351","Tepidimicrobium ferriphilum DSM 16624"]]},{"id":"NCBITaxon:292806","l":"Ureibacillus massiliensis","na":2,"nb":2,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["NCBITaxon%3A292806","Ureibacillus massiliensis"],["NCBITaxon%3A1211035","Ureibacillus massiliensis 4400831 = CIP 108448 = CCUG 49529"]]},{"id":"NCBITaxon:29292","l":"Pyrococcus abyssi","na":2,"nb":2,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A29292","Pyrococcus abyssi"],["NCBITaxon%3A272844","Pyrococcus abyssi GE5"]]},{"id":"NCBITaxon:29344","l":"Caloramator fervidus","na":2,"nb":2,"a":[["park-envo-00000562.html","park"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A29344","Caloramator fervidus"],["NCBITaxon%3A1121261","Caloramator fervidus DSM 5463"]]},{"id":"NCBITaxon:29364","l":"[Clostridium] polysaccharolyticum","na":2,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A29364","[Clostridium] polysaccharolyticum"],["NCBITaxon%3A1121329","[Clostridium] polysaccharolyticum DSM 1801"]]},{"id":"NCBITaxon:29446","l":"Xanthomonas sp.","na":2,"nb":2,"a":[["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["NCBITaxon%3A1720302","Xanthomonas massiliensis"],["NCBITaxon%3A29446","Xanthomonas sp."]]},{"id":"NCBITaxon:304371","l":"Methanocella paludicola SANAE","na":2,"nb":2,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["NCBITaxon%3A570267","Methanocella paludicola"],["NCBITaxon%3A304371","Methanocella paludicola SANAE"]]},{"id":"NCBITaxon:309807","l":"Salinibacter ruber DSM 13855","na":2,"nb":2,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A146919","Salinibacter ruber"],["NCBITaxon%3A309807","Salinibacter ruber DSM 13855"]]},{"id":"NCBITaxon:309889","l":"Deinococcus yavapaiensis","na":2,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"],["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A309889","Deinococcus yavapaiensis"],["NCBITaxon%3A694435","Deinococcus yavapaiensis KR-236"]]},{"id":"NCBITaxon:313594","l":"Polaribacter irgensii 23-P","na":2,"nb":2,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["NCBITaxon%3A531","Polaribacter irgensii"],["NCBITaxon%3A313594","Polaribacter irgensii 23-P"]]},{"id":"NCBITaxon:314345","l":"Mariprofundus ferrooxydans PV-1","na":2,"nb":2,"a":[["filament-bto-0000463.html","filament"],["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A314344","Mariprofundus ferrooxydans"],["NCBITaxon%3A314345","Mariprofundus ferrooxydans PV-1"]]},{"id":"NCBITaxon:316274","l":"Herpetosiphon aurantiacus DSM 785","na":2,"nb":2,"a":[["filament-bto-0000463.html","filament"],["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A65","Herpetosiphon aurantiacus"],["NCBITaxon%3A316274","Herpetosiphon aurantiacus DSM 785"]]},{"id":"NCBITaxon:320502","l":"Acetivibrio alkalicellulosi","na":2,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A320502","Acetivibrio alkalicellulosi"],["NCBITaxon%3A1002220","Acetivibrio alkalicellulosi DSM 17461"]]},{"id":"NCBITaxon:323097","l":"Nitrobacter hamburgensis X14","na":2,"nb":2,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A912","Nitrobacter hamburgensis"],["NCBITaxon%3A323097","Nitrobacter hamburgensis X14"]]},{"id":"NCBITaxon:3381696","l":"Methanothermobacter sp. DSM 3267","na":2,"nb":2,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["NCBITaxon%3A3381696","Methanothermobacter sp. DSM 3267"],["NCBITaxon%3A145262","Methanothermobacter thermautotrophicus"]]},{"id":"NCBITaxon:33885","l":"Microbacterium lacticum","na":2,"nb":2,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["NCBITaxon%3A33885","Microbacterium lacticum"],["NCBITaxon%3A596316","Microbacterium lacticum SK124"]]},{"id":"NCBITaxon:33936","l":"Aeribacillus pallidus","na":2,"nb":2,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["organic-waste-material-envo-00002873.html","organic waste material"]],"b":[["NCBITaxon%3A33936","Aeribacillus pallidus"],["NCBITaxon%3A1196032","Aeribacillus pallidus CIC9"]]},{"id":"NCBITaxon:33946","l":"Kurthia gibsonii","na":2,"nb":2,"a":[["area-of-tundra-envo-00000112.html","area of tundra"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["NCBITaxon%3A33946","Kurthia gibsonii"],["NCBITaxon%3A1650","Kurthia zopfii"]]},{"id":"NCBITaxon:33954","l":"Clostridium magnum","na":2,"nb":2,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"]],"b":[["NCBITaxon%3A33954","Clostridium magnum"],["NCBITaxon%3A1121326","Clostridium magnum DSM 2767"]]},{"id":"NCBITaxon:349307","l":"","na":2,"nb":2,"a":[["rice-field-envo-00000296.html","rice field"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["NCBITaxon%3A2224","Methanothrix thermoacetophila"],["NCBITaxon%3A349307","Methanothrix thermoacetophila PT"]]},{"id":"NCBITaxon:350688","l":"Alkaliphilus oremlandii OhILAs","na":2,"nb":2,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["NCBITaxon%3A461876","Alkaliphilus oremlandii"],["NCBITaxon%3A350688","Alkaliphilus oremlandii OhILAs"]]},{"id":"NCBITaxon:356828","l":"Alloscardovia criceti","na":2,"nb":2,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A356828","Alloscardovia criceti"],["NCBITaxon%3A1122228","Alloscardovia criceti DSM 17774"]]},{"id":"NCBITaxon:357809","l":"Lachnoclostridium phytofermentans ISDg","na":2,"nb":2,"a":[["reservoir-envo-00000025.html","reservoir"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A66219","Lachnoclostridium phytofermentans"],["NCBITaxon%3A357809","Lachnoclostridium phytofermentans ISDg"]]},{"id":"NCBITaxon:35786","l":"Coprothermobacter proteolyticus","na":2,"nb":2,"a":[["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["NCBITaxon%3A35786","Coprothermobacter proteolyticus"],["NCBITaxon%3A309798","Coprothermobacter proteolyticus DSM 5265"]]},{"id":"NCBITaxon:358766","l":"","na":2,"nb":2,"a":[["marsh-envo-00000035.html","marsh"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A358766","Methanoregula boonei"],["NCBITaxon%3A456442","Methanoregula boonei 6A8"]]},{"id":"NCBITaxon:369723","l":"Salinispora tropica CNB-440","na":2,"nb":2,"a":[["coarse-beach-sand-envo-00002148.html","coarse beach sand"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A168695","Salinispora tropica"],["NCBITaxon%3A369723","Salinispora tropica CNB-440"]]},{"id":"NCBITaxon:376805","l":"Phocaeicola salanitronis","na":2,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"],["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["NCBITaxon%3A376805","Phocaeicola salanitronis"],["NCBITaxon%3A667015","Phocaeicola salanitronis DSM 18170"]]},{"id":"NCBITaxon:383629","l":"Phaeobacter inhibens 2.10","na":2,"nb":2,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A221822","Phaeobacter inhibens"],["NCBITaxon%3A383629","Phaeobacter inhibens 2.10"]]},{"id":"NCBITaxon:388051","l":"Cupriavidus sp. amp6","na":2,"nb":2,"a":[["environmental-system-envo-01000254.html","environmental system"],["national-wildlife-refuge-envo-00000364.html","national wildlife refuge"]],"b":[["NCBITaxon%3A2821359","Cupriavidus phytohabitans"],["NCBITaxon%3A388051","Cupriavidus sp. amp6"]]},{"id":"NCBITaxon:391165","l":"Granulibacter bethesdensis CGDNIH1","na":2,"nb":2,"a":[["lymph-node-bto-0000784.html","lymph node"],["phagocyte-bto-0001044.html","phagocyte"]],"b":[["NCBITaxon%3A364410","Granulibacter bethesdensis"],["NCBITaxon%3A391165","Granulibacter bethesdensis CGDNIH1"]]},{"id":"NCBITaxon:391587","l":"Kordia algicida OT-1","na":2,"nb":2,"a":[["coral-reef-envo-00000150.html","coral reef"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A221066","Kordia algicida"],["NCBITaxon%3A391587","Kordia algicida OT-1"]]},{"id":"NCBITaxon:392499","l":"Rhizorhabdus wittichii RW1","na":2,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["NCBITaxon%3A160791","Rhizorhabdus wittichii"],["NCBITaxon%3A392499","Rhizorhabdus wittichii RW1"]]},{"id":"NCBITaxon:393664","l":"","na":2,"nb":2,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A393664","Aliirhizobium cellulosilyticum"],["NCBITaxon%3A1368426","Aliirhizobium cellulosilyticum ALA10B2"]]},{"id":"NCBITaxon:393762","l":"Natronincola ferrireducens","na":2,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A393762","Natronincola ferrireducens"],["NCBITaxon%3A1122595","Natronincola ferrireducens DSM 18346"]]},{"id":"NCBITaxon:394503","l":"Ruminiclostridium cellulolyticum H10","na":2,"nb":2,"a":[["agricultural-waste-material-envo-01000371.html","agricultural waste material"],["compost-envo-00002170.html","compost"]],"b":[["NCBITaxon%3A1521","Ruminiclostridium cellulolyticum"],["NCBITaxon%3A394503","Ruminiclostridium cellulolyticum H10"]]},{"id":"NCBITaxon:39490","l":"Eubacterium ramulus","na":2,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A39490","Eubacterium ramulus"],["NCBITaxon%3A1256908","Eubacterium ramulus ATCC 29099"]]},{"id":"NCBITaxon:395964","l":"Methylocapsa acidiphila B2","na":2,"nb":2,"a":[["wetland-area-envo-00000043.html","wetland area"],["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A133552","Methylocapsa acidiphila"],["NCBITaxon%3A395964","Methylocapsa acidiphila B2"]]},{"id":"NCBITaxon:398579","l":"Shewanella pealeana ATCC 700345","na":2,"nb":2,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["gland-bto-0000522.html","gland"]],"b":[["NCBITaxon%3A70864","Shewanella pealeana"],["NCBITaxon%3A398579","Shewanella pealeana ATCC 700345"]]},{"id":"NCBITaxon:398580","l":"Dinoroseobacter shibae DFL 12 = DSM 16493","na":2,"nb":2,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["stromatolite-mat-envo-00002157.html","stromatolite mat"]],"b":[["NCBITaxon%3A215813","Dinoroseobacter shibae"],["NCBITaxon%3A398580","Dinoroseobacter shibae DFL 12 = DSM 16493"]]},{"id":"NCBITaxon:398720","l":"Leeuwenhoekiella blandensis MED217","na":2,"nb":2,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A360293","Leeuwenhoekiella blandensis"],["NCBITaxon%3A398720","Leeuwenhoekiella blandensis MED217"]]},{"id":"NCBITaxon:39956","l":"Methylobacterium mesophilicum","na":2,"nb":2,"a":[["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A39956","Methylobacterium mesophilicum"],["NCBITaxon%3A908290","Methylobacterium mesophilicum SR1.6/6"]]},{"id":"NCBITaxon:400667","l":"","na":2,"nb":2,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"],["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A400667","Acinetobacter baumannii ATCC 17978"]]},{"id":"NCBITaxon:40091","l":"Helcococcus kunzii","na":2,"nb":2,"a":[["foot-bto-0000476.html","foot"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A40091","Helcococcus kunzii"],["NCBITaxon%3A883114","Helcococcus kunzii ATCC 51366"]]},{"id":"NCBITaxon:406327","l":"","na":2,"nb":2,"a":[["estuary-envo-00000045.html","estuary"],["mudflat-envo-00000192.html","mudflat"]],"b":[["NCBITaxon%3A2187","Methanococcus vannielii"],["NCBITaxon%3A406327","Methanococcus vannielii SB"]]},{"id":"NCBITaxon:411461","l":"Dorea formicigenerans ATCC 27755","na":2,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["NCBITaxon%3A39486","Dorea formicigenerans"],["NCBITaxon%3A411461","Dorea formicigenerans ATCC 27755"]]},{"id":"NCBITaxon:411462","l":"Dorea longicatena DSM 13814","na":2,"nb":2,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"]],"b":[["NCBITaxon%3A88431","Dorea longicatena"],["NCBITaxon%3A411462","Dorea longicatena DSM 13814"]]},{"id":"NCBITaxon:411463","l":"Eubacterium ventriosum ATCC 27560","na":2,"nb":2,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["NCBITaxon%3A39496","Eubacterium ventriosum"],["NCBITaxon%3A411463","Eubacterium ventriosum ATCC 27560"]]},{"id":"NCBITaxon:411469","l":"Anaerobutyricum hallii DSM 3353","na":2,"nb":2,"a":[["cow-shed-envo-00003041.html","cow shed"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["NCBITaxon%3A39488","Anaerobutyricum hallii"],["NCBITaxon%3A411469","Anaerobutyricum hallii DSM 3353"]]},{"id":"NCBITaxon:411902","l":"Enterocloster bolteae ATCC BAA-613","na":2,"nb":2,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"]],"b":[["NCBITaxon%3A208479","Enterocloster bolteae"],["NCBITaxon%3A411902","Enterocloster bolteae ATCC BAA-613"]]},{"id":"NCBITaxon:411903","l":"Collinsella aerofaciens ATCC 25986","na":2,"nb":2,"a":[["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"],["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A74426","Collinsella aerofaciens"],["NCBITaxon%3A411903","Collinsella aerofaciens ATCC 25986"]]},{"id":"NCBITaxon:41899","l":"Burkholderia plantarii","na":2,"nb":2,"a":[["panicle-bto-0005436.html","panicle"],["seedling-bto-0001228.html","seedling"]],"b":[["NCBITaxon%3A41899","Burkholderia plantarii"],["NCBITaxon%3A796107","Burkholderia plantarii MAFF 301723"]]},{"id":"NCBITaxon:420662","l":"Methylibium petroleiphilum PM1","na":2,"nb":2,"a":[["compost-biofilter-envo-00002153.html","compost biofilter"],["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A105560","Methylibium petroleiphilum"],["NCBITaxon%3A420662","Methylibium petroleiphilum PM1"]]},{"id":"NCBITaxon:420952","l":"Paraburkholderia bryophila","na":2,"nb":2,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A420952","Paraburkholderia bryophila"],["NCBITaxon%3A1169143","Paraburkholderia bryophila 376MFSha3.1"]]},{"id":"NCBITaxon:42256","l":"Rubrobacter radiotolerans","na":2,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["desert-sand-envo-00005800.html","desert sand"]],"b":[["NCBITaxon%3A42256","Rubrobacter radiotolerans"],["NCBITaxon%3A643560","Rubrobacter radiotolerans DSM 5868"]]},{"id":"NCBITaxon:424718","l":"Shigella flexneri 5a","na":2,"nb":2,"a":[["waste-treatment-plant-envo-00002272.html","waste treatment plant"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["NCBITaxon%3A424718","Shigella flexneri 5a"],["NCBITaxon%3A1086030","Shigella flexneri 5a str. M90T"]]},{"id":"NCBITaxon:426128","l":"Natronincola peptidivorans","na":2,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A426128","Natronincola peptidivorans"],["NCBITaxon%3A1122597","Natronincola peptidivorans DSM 18979"]]},{"id":"NCBITaxon:435590","l":"Phocaeicola vulgatus ATCC 8482","na":2,"nb":2,"a":[["bay-envo-00000032.html","bay"],["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["NCBITaxon%3A821","Phocaeicola vulgatus"],["NCBITaxon%3A435590","Phocaeicola vulgatus ATCC 8482"]]},{"id":"NCBITaxon:43671","l":"Actinotalea fermentans","na":2,"nb":2,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A43671","Actinotalea fermentans"],["NCBITaxon%3A862422","Actinotalea fermentans ATCC 43279 = JCM 9966 = DSM 3133"]]},{"id":"NCBITaxon:443152","l":"Marinobacter algicola DG893","na":2,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["NCBITaxon%3A236100","Marinobacter algicola"],["NCBITaxon%3A443152","Marinobacter algicola DG893"]]},{"id":"NCBITaxon:444157","l":"Pyrobaculum neutrophilum V24Sta","na":2,"nb":2,"a":[["silty-sediment-envo-01000119.html","silty sediment"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A70771","Pyrobaculum neutrophilum"],["NCBITaxon%3A444157","Pyrobaculum neutrophilum V24Sta"]]},{"id":"NCBITaxon:445972","l":"Anaerotruncus colihominis DSM 17241","na":2,"nb":2,"a":[["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["NCBITaxon%3A169435","Anaerotruncus colihominis"],["NCBITaxon%3A445972","Anaerotruncus colihominis DSM 17241"]]},{"id":"NCBITaxon:446471","l":"Xylanimonas cellulosilytica DSM 15894","na":2,"nb":2,"a":[["wood-envo-00002040.html","wood"],["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A186189","Xylanimonas cellulosilytica"],["NCBITaxon%3A446471","Xylanimonas cellulosilytica DSM 15894"]]},{"id":"NCBITaxon:450851","l":"Phenylobacterium zucineum HLK1","na":2,"nb":2,"a":[["erythroleukemia-cell-line-bto-0000846.html","erythroleukemia cell line"],["leukemia-cell-line-bto-0000737.html","leukemia cell line"]],"b":[["NCBITaxon%3A284016","Phenylobacterium zucineum"],["NCBITaxon%3A450851","Phenylobacterium zucineum HLK1"]]},{"id":"NCBITaxon:451757","l":"Clostridium perfringens NCTC 8239","na":2,"nb":2,"a":[["heated-burned-habitatmech-bacdive-8bf2766463.html","Heated-Burned"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A1502","Clostridium perfringens"],["NCBITaxon%3A451757","Clostridium perfringens NCTC 8239"]]},{"id":"NCBITaxon:456442","l":"Methanoregula boonei 6A8","na":2,"nb":2,"a":[["wetland-area-envo-00000043.html","wetland area"],["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A358766","Methanoregula boonei"],["NCBITaxon%3A456442","Methanoregula boonei 6A8"]]},{"id":"NCBITaxon:456493","l":"","na":2,"nb":2,"a":[["vasculature-uberon-0002049.html","vasculature"],["part-of-plant-habitatmech-madin-25325947e2.html","part of plant"]],"b":[["NCBITaxon%3A456493","Saccharibacillus sacchari"],["NCBITaxon%3A915437","Saccharibacillus sacchari DSM 19268"]]},{"id":"NCBITaxon:46539","l":"Thermococcus hydrothermalis","na":2,"nb":2,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A46539","Thermococcus hydrothermalis"],["NCBITaxon%3A522522","Thermococcus hydrothermalis AL662"]]},{"id":"NCBITaxon:468059","l":"Daejeonella oryzae DSM 19973","na":2,"nb":2,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["NCBITaxon%3A1122943","Daejeonella oryzae"],["NCBITaxon%3A468059","Daejeonella oryzae DSM 19973"]]},{"id":"NCBITaxon:469382","l":"Halogeometricum borinquense DSM 11551","na":2,"nb":2,"a":[["pond-envo-00000033.html","pond"],["saline-evaporation-pond-envo-00000055.html","saline evaporation pond"]],"b":[["NCBITaxon%3A60847","Halogeometricum borinquense"],["NCBITaxon%3A469382","Halogeometricum borinquense DSM 11551"]]},{"id":"NCBITaxon:471853","l":"Beutenbergia cavernae DSM 12333","na":2,"nb":2,"a":[["cave-envo-00000067.html","cave"],["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A84757","Beutenbergia cavernae"],["NCBITaxon%3A471853","Beutenbergia cavernae DSM 12333"]]},{"id":"NCBITaxon:471854","l":"Dyadobacter fermentans DSM 18053","na":2,"nb":2,"a":[["filament-bto-0000463.html","filament"],["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A94254","Dyadobacter fermentans"],["NCBITaxon%3A471854","Dyadobacter fermentans DSM 18053"]]},{"id":"NCBITaxon:471857","l":"Saccharomonospora viridis DSM 43017","na":2,"nb":2,"a":[["wetland-area-envo-00000043.html","wetland area"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A1852","Saccharomonospora viridis"],["NCBITaxon%3A471857","Saccharomonospora viridis DSM 43017"]]},{"id":"NCBITaxon:472759","l":"Nitrosococcus halophilus Nc 4","na":2,"nb":2,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A133539","Nitrosococcus halophilus"],["NCBITaxon%3A472759","Nitrosococcus halophilus Nc 4"]]},{"id":"NCBITaxon:47879","l":"Pseudomonas corrugata","na":2,"nb":2,"a":[["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["wilt-habitatmech-bacdive-4c48b5114d.html","Wilt"]],"b":[["NCBITaxon%3A47879","Pseudomonas corrugata"],["NCBITaxon%3A1316927","Pseudomonas corrugata CFBP 5454"]]},{"id":"NCBITaxon:479434","l":"Sphaerobacter thermophilus DSM 20745","na":2,"nb":2,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A2057","Sphaerobacter thermophilus"],["NCBITaxon%3A479434","Sphaerobacter thermophilus DSM 20745"]]},{"id":"NCBITaxon:479435","l":"Kribbella flavida DSM 17836","na":2,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["NCBITaxon%3A182640","Kribbella flavida"],["NCBITaxon%3A479435","Kribbella flavida DSM 17836"]]},{"id":"NCBITaxon:485918","l":"Chitinophaga pinensis DSM 2588","na":2,"nb":2,"a":[["filament-bto-0000463.html","filament"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A79329","Chitinophaga pinensis"],["NCBITaxon%3A485918","Chitinophaga pinensis DSM 2588"]]},{"id":"NCBITaxon:492476","l":"Acetivibrio thermocellus JW20","na":2,"nb":2,"a":[["sea-envo-00000016.html","sea"],["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"]],"b":[["NCBITaxon%3A1515","Acetivibrio thermocellus"],["NCBITaxon%3A492476","Acetivibrio thermocellus JW20"]]},{"id":"NCBITaxon:504472","l":"Spirosoma linguale DSM 74","na":2,"nb":2,"a":[["drinking-water-envo-00003064.html","drinking water"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["NCBITaxon%3A108","Spirosoma linguale"],["NCBITaxon%3A504472","Spirosoma linguale DSM 74"]]},{"id":"NCBITaxon:504728","l":"Meiothermus ruber DSM 1279","na":2,"nb":2,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"],["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A277","Meiothermus ruber"],["NCBITaxon%3A504728","Meiothermus ruber DSM 1279"]]},{"id":"NCBITaxon:519050","l":"","na":2,"nb":2,"a":[["vasculature-uberon-0002049.html","vasculature"],["part-of-plant-habitatmech-madin-25325947e2.html","part of plant"]],"b":[["NCBITaxon%3A519050","Liquorilactobacillus sucicola"],["NCBITaxon%3A1423806","Liquorilactobacillus sucicola DSM 21376 = JCM 15457"]]},{"id":"NCBITaxon:521674","l":"Planctopirus limnophila DSM 3776","na":2,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A120","Planctopirus limnophila"],["NCBITaxon%3A521674","Planctopirus limnophila DSM 3776"]]},{"id":"NCBITaxon:523791","l":"Kangiella koreensis DSM 16069","na":2,"nb":2,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["NCBITaxon%3A261964","Kangiella koreensis"],["NCBITaxon%3A523791","Kangiella koreensis DSM 16069"]]},{"id":"NCBITaxon:523849","l":"Thermococcus litoralis (strain ATCC 51850 / DSM 5473 / JCM 8560 / NS-C)","na":2,"nb":2,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A2265","Thermococcus litoralis"],["NCBITaxon%3A523849","Thermococcus litoralis DSM 5473"]]},{"id":"NCBITaxon:52767","l":"Actinomyces denticolens","na":2,"nb":2,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["NCBITaxon%3A52767","Actinomyces denticolens"],["NCBITaxon%3A29317","Actinomyces sp."]]},{"id":"NCBITaxon:53245","l":"Desulfonatronovibrio hydrogenovorans","na":2,"nb":2,"a":[["brine-pool-envo-00000369.html","brine pool"],["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["NCBITaxon%3A53245","Desulfonatronovibrio hydrogenovorans"],["NCBITaxon%3A1121413","Desulfonatronovibrio hydrogenovorans DSM 9292"]]},{"id":"NCBITaxon:53444","l":"Fructilactobacillus lindneri","na":2,"nb":2,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["blast-cell-bto-0000125.html","blast cell"]],"b":[["NCBITaxon%3A53444","Fructilactobacillus lindneri"],["NCBITaxon%3A1122148","Fructilactobacillus lindneri DSM 20690 = JCM 11027"]]},{"id":"NCBITaxon:53953","l":"Pyrococcus horikoshii","na":2,"nb":2,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A53953","Pyrococcus horikoshii"],["NCBITaxon%3A70601","Pyrococcus horikoshii OT3"]]},{"id":"NCBITaxon:554117","l":"Paenibacillus phoenicis","na":2,"nb":2,"a":[["factory-envo-01000536.html","factory"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A554117","Paenibacillus phoenicis"],["NCBITaxon%3A58172","Paenibacillus sp."]]},{"id":"NCBITaxon:555088","l":"Dethiobacter alkaliphilus AHT 1","na":2,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["NCBITaxon%3A427926","Dethiobacter alkaliphilus"],["NCBITaxon%3A555088","Dethiobacter alkaliphilus AHT 1"]]},{"id":"NCBITaxon:572546","l":"Archaeoglobus profundus DSM 5631","na":2,"nb":2,"a":[["inlet-envo-00000475.html","inlet"],["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A84156","Archaeoglobus profundus"],["NCBITaxon%3A572546","Archaeoglobus profundus DSM 5631"]]},{"id":"NCBITaxon:579137","l":"Methanocaldococcus vulcanius M7","na":2,"nb":2,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A73913","Methanocaldococcus vulcanius"],["NCBITaxon%3A579137","Methanocaldococcus vulcanius M7"]]},{"id":"NCBITaxon:580332","l":"Sideroxydans lithotrophicus ES-1","na":2,"nb":2,"a":[["cold-environment-envo-01000309.html","cold environment"],["environmental-material-envo-00010483.html","environmental material"]],"b":[["NCBITaxon%3A63745","Sideroxydans lithotrophicus"],["NCBITaxon%3A580332","Sideroxydans lithotrophicus ES-1"]]},{"id":"NCBITaxon:580340","l":"Thermovirga lienii DSM 17291","na":2,"nb":2,"a":[["reservoir-envo-00000025.html","reservoir"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A336261","Thermovirga lienii"],["NCBITaxon%3A580340","Thermovirga lienii DSM 17291"]]},{"id":"NCBITaxon:582402","l":"Hirschia baltica ATCC 49814","na":2,"nb":2,"a":[["alkaline-water-envo-01000357.html","alkaline water"],["fjord-envo-00000039.html","fjord"]],"b":[["NCBITaxon%3A2724","Hirschia baltica"],["NCBITaxon%3A582402","Hirschia baltica ATCC 49814"]]},{"id":"NCBITaxon:582899","l":"Hyphomicrobium denitrificans ATCC 51888","na":2,"nb":2,"a":[["environmental-material-envo-00010483.html","environmental material"],["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A53399","Hyphomicrobium denitrificans"],["NCBITaxon%3A582899","Hyphomicrobium denitrificans ATCC 51888"]]},{"id":"NCBITaxon:588581","l":"Ruminiclostridium papyrosolvens DSM 2782","na":2,"nb":2,"a":[["estuary-envo-00000045.html","estuary"],["sporangium-bto-0001287.html","sporangium"]],"b":[["NCBITaxon%3A29362","Ruminiclostridium papyrosolvens"],["NCBITaxon%3A588581","Ruminiclostridium papyrosolvens DSM 2782"]]},{"id":"NCBITaxon:589865","l":"Desulfurivibrio alkaliphilus AHT 2","na":2,"nb":2,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"],["wadi-envo-00000031.html","wadi"]],"b":[["NCBITaxon%3A427923","Desulfurivibrio alkaliphilus"],["NCBITaxon%3A589865","Desulfurivibrio alkaliphilus AHT 2"]]},{"id":"NCBITaxon:608538","l":"Hydrogenobacter thermophilus TK-6","na":2,"nb":2,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"],["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A940","Hydrogenobacter thermophilus"],["NCBITaxon%3A608538","Hydrogenobacter thermophilus TK-6"]]},{"id":"NCBITaxon:61592","l":"Corynebacterium durum","na":2,"nb":2,"a":[["filament-bto-0000463.html","filament"],["archeological-site-envo-00000564.html","archeological site"]],"b":[["NCBITaxon%3A61592","Corynebacterium durum"],["NCBITaxon%3A1035195","Corynebacterium durum F0235"]]},{"id":"NCBITaxon:643561","l":"Paracidovorax avenae ATCC 19860","na":2,"nb":2,"a":[["large-river-biome-envo-00000887.html","large river biome"],["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A80867","Paracidovorax avenae"],["NCBITaxon%3A643561","Paracidovorax avenae ATCC 19860"]]},{"id":"NCBITaxon:644283","l":"Micromonospora aurantiaca ATCC 27029","na":2,"nb":2,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A644283","Micromonospora aurantiaca ATCC 27029"],["NCBITaxon%3A47850","Micromonospora aurantiaca (nom. illeg.)"]]},{"id":"NCBITaxon:647113","l":"Methanothermococcus okinawensis IH1","na":2,"nb":2,"a":[["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A155863","Methanothermococcus okinawensis"],["NCBITaxon%3A647113","Methanothermococcus okinawensis IH1"]]},{"id":"NCBITaxon:649349","l":"Leadbetterella byssophila DSM 17132","na":2,"nb":2,"a":[["compost-envo-00002170.html","compost"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["NCBITaxon%3A316068","Leadbetterella byssophila"],["NCBITaxon%3A649349","Leadbetterella byssophila DSM 17132"]]},{"id":"NCBITaxon:66228","l":"Gleimia europaea","na":2,"nb":2,"a":[["bone-element-uberon-0001474.html","bone element"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"]],"b":[["NCBITaxon%3A66228","Gleimia europaea"],["NCBITaxon%3A883069","Gleimia europaea ACS-120-V-Col10b"]]},{"id":"NCBITaxon:675813","l":"Vibrio metschnikovii CIP 69.14","na":2,"nb":2,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A28172","Vibrio metschnikovii"],["NCBITaxon%3A675813","Vibrio metschnikovii CIP 69.14"]]},{"id":"NCBITaxon:679926","l":"Methanolacinia petrolearia DSM 11571","na":2,"nb":2,"a":[["inlet-envo-00000475.html","inlet"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A54120","Methanolacinia petrolearia"],["NCBITaxon%3A679926","Methanolacinia petrolearia DSM 11571"]]},{"id":"NCBITaxon:688066","l":"Kosmotoga arenicorallina","na":2,"nb":2,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A688066","Kosmotoga arenicorallina"],["NCBITaxon%3A1453497","Kosmotoga arenicorallina S304"]]},{"id":"NCBITaxon:693216","l":"Cronobacter turicensis z3032","na":2,"nb":2,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A413502","Cronobacter turicensis"],["NCBITaxon%3A693216","Cronobacter turicensis z3032"]]},{"id":"NCBITaxon:693986","l":"Methylobacterium oryzae CBMB20","na":2,"nb":2,"a":[["aerial-part-bto-0001658.html","aerial part"],["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A334852","Methylobacterium oryzae"],["NCBITaxon%3A693986","Methylobacterium oryzae CBMB20"]]},{"id":"NCBITaxon:694427","l":"Paludibacter propionicigenes WB4","na":2,"nb":2,"a":[["agricultural-field-envo-00000114.html","agricultural field"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A185300","Paludibacter propionicigenes"],["NCBITaxon%3A694427","Paludibacter propionicigenes WB4"]]},{"id":"NCBITaxon:694430","l":"Natronococcus occultus SP4","na":2,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A29288","Natronococcus occultus"],["NCBITaxon%3A694430","Natronococcus occultus SP4"]]},{"id":"NCBITaxon:697281","l":"Mahella australiensis 50-1 BON","na":2,"nb":2,"a":[["drainage-basin-envo-00000291.html","drainage basin"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A252966","Mahella australiensis"],["NCBITaxon%3A697281","Mahella australiensis 50-1 BON"]]},{"id":"NCBITaxon:703612","l":"","na":2,"nb":2,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A96241","Bacillus spizizenii"],["NCBITaxon%3A703612","Bacillus spizizenii ATCC 6633 = JCM 2499"]]},{"id":"NCBITaxon:739","l":"Aggregatibacter segnis","na":2,"nb":2,"a":[["archeological-site-envo-00000564.html","archeological site"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["NCBITaxon%3A739","Aggregatibacter segnis"],["NCBITaxon%3A888057","Aggregatibacter segnis ATCC 33393"]]},{"id":"NCBITaxon:74349","l":"Sulfitobacter guttiformis","na":2,"nb":2,"a":[["hill-envo-00000083.html","hill"],["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A74349","Sulfitobacter guttiformis"],["NCBITaxon%3A1443111","Sulfitobacter guttiformis KCTC 32187"]]},{"id":"NCBITaxon:746697","l":"Aequorivita sublithincola DSM 14238","na":2,"nb":2,"a":[["hill-envo-00000083.html","hill"],["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A101385","Aequorivita sublithincola"],["NCBITaxon%3A746697","Aequorivita sublithincola DSM 14238"]]},{"id":"NCBITaxon:748449","l":"Halobacteroides halobius DSM 5150","na":2,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["marine-anoxic-zone-envo-01000066.html","marine anoxic zone"]],"b":[["NCBITaxon%3A42422","Halobacteroides halobius"],["NCBITaxon%3A748449","Halobacteroides halobius DSM 5150"]]},{"id":"NCBITaxon:754","l":"Pasteurella dagmatis","na":2,"nb":2,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"]],"b":[["NCBITaxon%3A754","Pasteurella dagmatis"],["NCBITaxon%3A667128","Pasteurella dagmatis ATCC 43325"]]},{"id":"NCBITaxon:756272","l":"Rubinisphaera brasiliensis DSM 5305","na":2,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["NCBITaxon%3A119","Rubinisphaera brasiliensis"],["NCBITaxon%3A756272","Rubinisphaera brasiliensis DSM 5305"]]},{"id":"NCBITaxon:756689","l":"Nocardia amikacinitolerans","na":2,"nb":2,"a":[["hospital-envo-00002173.html","hospital"],["bronchus-uberon-0002185.html","bronchus"]],"b":[["NCBITaxon%3A756689","Nocardia amikacinitolerans"],["NCBITaxon%3A1379680","Nocardia amikacinitolerans NBRC 108937"]]},{"id":"NCBITaxon:76114","l":"Aromatoleum aromaticum (strain DSM 19018 / LMG 30748 / EbN1)","na":2,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["NCBITaxon%3A551760","Aromatoleum aromaticum"],["NCBITaxon%3A76114","Aromatoleum aromaticum EbN1"]]},{"id":"NCBITaxon:80878","l":"Acidovorax temperans","na":2,"nb":2,"a":[["urethra-bto-0001426.html","urethra"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"]],"b":[["NCBITaxon%3A80878","Acidovorax temperans"],["NCBITaxon%3A665025","Acidovorax temperans CB2"]]},{"id":"NCBITaxon:85558","l":"Streptomyces turgidiscabies","na":2,"nb":2,"a":[["a10-cell-bto-0002196.html","A10 cell"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["NCBITaxon%3A85558","Streptomyces turgidiscabies"],["NCBITaxon%3A698760","Streptomyces turgidiscabies Car8"]]},{"id":"NCBITaxon:865938","l":"Weeksella virosa DSM 16922","na":2,"nb":2,"a":[["urethra-bto-0001426.html","urethra"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A1014","Weeksella virosa"],["NCBITaxon%3A865938","Weeksella virosa DSM 16922"]]},{"id":"NCBITaxon:870187","l":"Thiothrix nivea DSM 5205","na":2,"nb":2,"a":[["rosette-bto-0001201.html","rosette"],["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A1031","Thiothrix nivea"],["NCBITaxon%3A870187","Thiothrix nivea DSM 5205"]]},{"id":"NCBITaxon:880478","l":"Thermoanaerobacter siderophilus SR4","na":2,"nb":2,"a":[["peninsula-envo-00000305.html","peninsula"],["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A106578","Thermoanaerobacter siderophilus"],["NCBITaxon%3A880478","Thermoanaerobacter siderophilus SR4"]]},{"id":"NCBITaxon:926559","l":"Galbibacter orientalis DSM 19592","na":2,"nb":2,"a":[["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A453852","Galbibacter orientalis"],["NCBITaxon%3A926559","Galbibacter orientalis DSM 19592"]]},{"id":"NCBITaxon:927658","l":"Alkaliflexus imshenetskii DSM 15055","na":2,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A286730","Alkaliflexus imshenetskii"],["NCBITaxon%3A927658","Alkaliflexus imshenetskii DSM 15055"]]},{"id":"NCBITaxon:935295","l":"Leuconostoc pseudomesenteroides KCTC 3652","na":2,"nb":2,"a":[["juice-bto-0000659.html","juice"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A33968","Leuconostoc pseudomesenteroides"],["NCBITaxon%3A935295","Leuconostoc pseudomesenteroides KCTC 3652"]]},{"id":"NCBITaxon:94136","l":"Alkalibacillus haloalkaliphilus","na":2,"nb":2,"a":[["saline-water-body-envo-01001319.html","saline water body"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["NCBITaxon%3A94136","Alkalibacillus haloalkaliphilus"],["NCBITaxon%3A1193119","Alkalibacillus haloalkaliphilus C5"]]},{"id":"NCBITaxon:942938","l":"Alkalispirochaeta alkalica DSM 8900","na":2,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A46356","Alkalispirochaeta alkalica"],["NCBITaxon%3A942938","Alkalispirochaeta alkalica DSM 8900"]]},{"id":"NCBITaxon:999549","l":"Leisingera caerulea DSM 24564","na":2,"nb":2,"a":[["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A506591","Leisingera caerulea"],["NCBITaxon%3A999549","Leisingera caerulea DSM 24564"]]},{"id":"NCBITaxon:1224","l":"Pseudomonadota","na":1,"nb":251482,"a":[["hemolymph-bto-0000572.html","hemolymph"]],"b":[["NCBITaxon%3A119160","2,3-D degrading bacterium NHC2"],["NCBITaxon%3A119159","2,3-D degrading bacterium NHG3"],["NCBITaxon%3A103498","2,4-D-degrading bacterium 001"],["NCBITaxon%3A103499","2,4-D-degrading bacterium 007"],["NCBITaxon%3A103492","2,4-D-degrading bacterium 010"],["NCBITaxon%3A103495","2,4-D-degrading bacterium 012"]]},{"id":"NCBITaxon:2062","l":"Streptomycetaceae","na":1,"nb":32318,"a":[["crop-bto-0000301.html","crop"]],"b":[["NCBITaxon%3A2784346","Actinacidiphila acididurans"],["NCBITaxon%3A2873382","Actinacidiphila acidipaludis"],["NCBITaxon%3A380248","Actinacidiphila alni"],["NCBITaxon%3A1436133","Actinacidiphila bryophytorum"],["NCBITaxon%3A887465","Actinacidiphila cocklensis"],["NCBITaxon%3A2053013","Actinacidiphila epipremni"]]},{"id":"NCBITaxon:80840","l":"Burkholderiales","na":1,"nb":24584,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"]],"b":[["NCBITaxon%3A103498","2,4-D-degrading bacterium 001"],["NCBITaxon%3A103499","2,4-D-degrading bacterium 007"],["NCBITaxon%3A103495","2,4-D-degrading bacterium 012"],["NCBITaxon%3A103500","2,4-D-degrading bacterium 017"],["NCBITaxon%3A103501","2,4-D-degrading bacterium 018"],["NCBITaxon%3A103502","2,4-D-degrading bacterium 019"]]},{"id":"NCBITaxon:200644","l":"Flavobacteriales","na":1,"nb":12879,"a":[["column-bto-0005692.html","column"]],"b":[["NCBITaxon%3A2967091","Abyssalbus sp."],["NCBITaxon%3A2926907","Abyssalbus ytuae"],["NCBITaxon%3A2692424","Acidiluteibacter ferrifornacis"],["NCBITaxon%3A2819283","Acidiluteibacter sp."],["NCBITaxon%3A2964002","Acidiluteibacter sp. SCM31"],["NCBITaxon%3A1295005","Actibacter haliotis"]]},{"id":"NCBITaxon:119060","l":"Burkholderiaceae","na":1,"nb":11091,"a":[["trunk-bto-0001493.html","trunk"]],"b":[["NCBITaxon%3A135641","2,4-D degrading transconjugant WD2"],["NCBITaxon%3A135642","2,4-D degrading transconjugant WD3"],["NCBITaxon%3A204704","bacterium Ellin349"],["NCBITaxon%3A204705","bacterium Ellin350"],["NCBITaxon%3A204706","bacterium Ellin364"],["NCBITaxon%3A204707","bacterium Ellin365"]]},{"id":"NCBITaxon:82115","l":"Rhizobiaceae","na":1,"nb":10105,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"]],"b":[["NCBITaxon%3A119160","2,3-D degrading bacterium NHC2"],["NCBITaxon%3A119159","2,3-D degrading bacterium NHG3"],["NCBITaxon%3A879568","Affinirhizobium capsici"],["NCBITaxon%3A2952477","Affinirhizobium gouqiense"],["NCBITaxon%3A1132695","Affinirhizobium helianthi"],["NCBITaxon%3A1214924","Affinirhizobium lemnae"]]},{"id":"NCBITaxon:547","l":"Enterobacter","na":1,"nb":6599,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["NCBITaxon%3A3142537","Enterobacter adelaidei"],["NCBITaxon%3A61645","Enterobacter asburiae"],["NCBITaxon%3A1330532","Enterobacter asburiae B1-3"],["NCBITaxon%3A1330533","Enterobacter asburiae B5-60"],["NCBITaxon%3A1442602","Enterobacter asburiae C1"],["NCBITaxon%3A1298604","Enterobacter asburiae JCM 6051"]]},{"id":"NCBITaxon:1177","l":"Nostoc","na":1,"nb":6579,"a":[["inflorescence-bto-0000628.html","inflorescence"]],"b":[["NCBITaxon%3A3085085","Anabaena oryzae CF66701"],["NCBITaxon%3A2739044","Cyanocohniella crotaloides"],["NCBITaxon%3A1179","Desmonostoc muscorum"],["NCBITaxon%3A3366270","Nostoc breve"],["NCBITaxon%3A3040065","Nostoc breve BG11-PS"],["NCBITaxon%3A1521619","Nostoc caeruleum"]]},{"id":"NCBITaxon:135619","l":"Oceanospirillales","na":1,"nb":6491,"a":[["column-bto-0005692.html","column"]],"b":[["NCBITaxon%3A2717337","Aestuariirhabdaceae bacterium"],["NCBITaxon%3A2918751","Aestuariirhabdus haliotis"],["NCBITaxon%3A2528527","Aestuariirhabdus litorea"],["NCBITaxon%3A2717333","Aestuariirhabdus sp."],["NCBITaxon%3A3417462","Aestuariirhabdus sp. LZHN29"],["NCBITaxon%3A574349","Aidingimonas halophila"]]},{"id":"NCBITaxon:766","l":"Rickettsiales","na":1,"nb":6218,"a":[["alimentary-canal-bto-0000058.html","alimentary canal"]],"b":[["NCBITaxon%3A3236821","Aaplasma endosymbiont of Hyalomma asiaticum"],["NCBITaxon%3A203862","Aegyptianella pullorum"],["NCBITaxon%3A1872389","Aegyptianella sp."],["NCBITaxon%3A186733","Anaplasma bovis"],["NCBITaxon%3A1562740","Anaplasma capra"],["NCBITaxon%3A2823527","Anaplasma caudatum"]]},{"id":"NCBITaxon:570","l":"Klebsiella","na":1,"nb":4683,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["NCBITaxon%3A548","Klebsiella aerogenes"],["NCBITaxon%3A1308731","Klebsiella aerogenes ADL-323"],["NCBITaxon%3A935296","Klebsiella aerogenes EA1509E"],["NCBITaxon%3A685445","Klebsiella aerogenes FGI35"],["NCBITaxon%3A1028307","Klebsiella aerogenes KCTC 2190"],["NCBITaxon%3A1439320","Klebsiella aerogenes MGH 61"]]},{"id":"NCBITaxon:69277","l":"Phyllobacteriaceae","na":1,"nb":4623,"a":[["head-bto-0000282.html","head"]],"b":[["NCBITaxon%3A561088","Aerobium aerolatum"],["NCBITaxon%3A3143725","Aerobium sp."],["NCBITaxon%3A453840","Aliihoeflea aestuarii"],["NCBITaxon%3A2608088","Aliihoeflea sp."],["NCBITaxon%3A1381123","Aliihoeflea sp. 2WW"],["NCBITaxon%3A2696467","Aliihoeflea sp. 40Bstr573"]]},{"id":"NCBITaxon:40323","l":"Stenotrophomonas","na":1,"nb":3947,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["NCBITaxon%3A255","[Flavobacterium] lutescens"],["NCBITaxon%3A178909","PAH-contaminated sludge bacterium PB-8"],["NCBITaxon%3A178910","PAH-contaminated sludge bacterium PB-9"],["NCBITaxon%3A128780","Stenotrophomonas acidaminiphila"],["NCBITaxon%3A1292134","Stenotrophomonas africana"],["NCBITaxon%3A1212488","Stenotrophomonas africana MGB"]]},{"id":"NCBITaxon:68287","l":"Mesorhizobium","na":1,"nb":3794,"a":[["head-bto-0000282.html","head"]],"b":[["NCBITaxon%3A325218","alpha proteobacterium WG1"],["NCBITaxon%3A102683","Biserrula isolate"],["NCBITaxon%3A1209958","Mesorhizobium abyssinicae"],["NCBITaxon%3A1326083","Mesorhizobium acaciae"],["NCBITaxon%3A3072314","Mesorhizobium album"],["NCBITaxon%3A2448478","Mesorhizobium alexandrii"]]},{"id":"NCBITaxon:2745","l":"Halomonas","na":1,"nb":3499,"a":[["wood-bto-0005516.html","wood"]],"b":[["NCBITaxon%3A1107859","Candidatus Halomonas phosphatis"],["NCBITaxon%3A2838617","Candidatus Halomonas stercoripullorum"],["NCBITaxon%3A1897729","Halomonas aestuarii"],["NCBITaxon%3A659123","Halomonas aidingensis"],["NCBITaxon%3A147248","Halomonas alimentaria"],["NCBITaxon%3A1930622","Halomonas alkalicola"]]},{"id":"NCBITaxon:22","l":"Shewanella","na":1,"nb":2330,"a":[["wood-bto-0005516.html","wood"]],"b":[["NCBITaxon%3A196819","Arctic sea ice bacterium ARK10035"],["NCBITaxon%3A259291","cf. Shewanella SAR-1"],["NCBITaxon%3A259292","cf. Shewanella SAR-2"],["NCBITaxon%3A73131","Mariana eubacterium no. 11"],["NCBITaxon%3A73132","Mariana eubacterium no. 13"],["NCBITaxon%3A73133","Mariana eubacterium no. 24"]]},{"id":"NCBITaxon:200666","l":"Sphingobacteriales","na":1,"nb":2327,"a":[["column-bto-0005692.html","column"]],"b":[["NCBITaxon%3A653929","Albibacterium bauzanense"],["NCBITaxon%3A2292082","Albibacterium indicum"],["NCBITaxon%3A3134906","Albibacterium profundi"],["NCBITaxon%3A2952885","Albibacterium sp."],["NCBITaxon%3A496056","Anseongella ginsenosidimutans"],["NCBITaxon%3A2023704","Anseongella sp."]]},{"id":"NCBITaxon:118882","l":"Brucellaceae","na":1,"nb":2154,"a":[["skin-bto-0001253.html","skin"]],"b":[["NCBITaxon%3A235","Brucella abortus"],["NCBITaxon%3A1310176","Brucella abortus 00-666"],["NCBITaxon%3A1328357","Brucella abortus 01-0065"],["NCBITaxon%3A1328356","Brucella abortus 01-0585"],["NCBITaxon%3A1328355","Brucella abortus 01-0648"],["NCBITaxon%3A1341669","Brucella abortus 01-4165"]]},{"id":"NCBITaxon:72275","l":"Alteromonadaceae","na":1,"nb":2007,"a":[["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["NCBITaxon%3A120969","abyssal strain AIII3*"],["NCBITaxon%3A1619912","Adhaerimonas asanensis"],["NCBITaxon%3A226010","Aestuariibacter salexigens"],["NCBITaxon%3A1120953","Aestuariibacter salexigens DSM 15300"],["NCBITaxon%3A1872400","Aestuariibacter sp."],["NCBITaxon%3A2841571","Aestuariibacter sp. A3R04"]]},{"id":"NCBITaxon:186818","l":"Caryophanaceae","na":1,"nb":1900,"a":[["trachea-bto-0001388.html","trachea"]],"b":[["NCBITaxon%3A426756","Bhargavaea beijingensis"],["NCBITaxon%3A394098","Bhargavaea cecembensis"],["NCBITaxon%3A1235279","Bhargavaea cecembensis DSE10"],["NCBITaxon%3A2134037","Bhargavaea changchunensis"],["NCBITaxon%3A426757","Bhargavaea ginsengi"],["NCBITaxon%3A627618","Bhargavaea indica"]]},{"id":"NCBITaxon:544","l":"Citrobacter","na":1,"nb":1678,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["NCBITaxon%3A35703","Citrobacter amalonaticus"],["NCBITaxon%3A1261127","Citrobacter amalonaticus Y19"],["NCBITaxon%3A2546350","Citrobacter arsenatis"],["NCBITaxon%3A1585982","Citrobacter bitternis"],["NCBITaxon%3A57706","Citrobacter braakii"],["NCBITaxon%3A1748967","Citrobacter cronae"]]},{"id":"NCBITaxon:1817","l":"Nocardia","na":1,"nb":1573,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["NCBITaxon%3A120957","Nocardia abscessus"],["NCBITaxon%3A1206723","Nocardia abscessus NBRC 100374"],["NCBITaxon%3A2802282","Nocardia acididurans"],["NCBITaxon%3A1224718","Nocardia aciditolerans"],["NCBITaxon%3A404580","Nocardia acidivorans"],["NCBITaxon%3A1210062","Nocardia acidivorans NBRC 108247"]]},{"id":"NCBITaxon:200795","l":"Chloroflexota","na":1,"nb":1565,"a":[["crop-bto-0000301.html","crop"]],"b":[["NCBITaxon%3A913108","Aggregatilinea lenta"],["NCBITaxon%3A2806333","Aggregatilinea sp."],["NCBITaxon%3A2952881","Aggregatilineaceae bacterium"],["NCBITaxon%3A2952883","Aggregatilineales bacterium"],["NCBITaxon%3A3117437","Aggregatilineales bacterium SYSU G02658"],["NCBITaxon%3A2738567","Anaerolinaceae bacterium JGI_KA33_A04_032"]]},{"id":"NCBITaxon:135613","l":"Chromatiales","na":1,"nb":1456,"a":[["column-bto-0005692.html","column"]],"b":[["NCBITaxon%3A2182787","Abyssibacter profundi"],["NCBITaxon%3A2320200","Abyssibacter sp."],["NCBITaxon%3A2792603","Acidihalobacter aeolianus"],["NCBITaxon%3A1765967","Acidihalobacter ferrooxydans"],["NCBITaxon%3A160660","Acidihalobacter prosperus"],["NCBITaxon%3A1872108","Acidihalobacter sp."]]},{"id":"NCBITaxon:28221","l":"Deltaproteobacteria","na":1,"nb":1266,"a":[["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["NCBITaxon%3A2946587","Acetispira formosa (nom. nud.)"],["NCBITaxon%3A318480","Algidimarina propionica"],["NCBITaxon%3A2600177","Allomicrovenator marinus"],["NCBITaxon%3A2946509","Allomicrovenator sp."],["NCBITaxon%3A3107492","Allomicrovenatoraceae bacterium"],["NCBITaxon%3A93990","Alvinella pompejana symbiont 3.11"]]},{"id":"NCBITaxon:712","l":"Pasteurellaceae","na":1,"nb":1252,"a":[["head-bto-0000282.html","head"]],"b":[["NCBITaxon%3A221404","Actinobacillus anseriformium"],["NCBITaxon%3A221398","Actinobacillus anseriformium biovar 1"],["NCBITaxon%3A221399","Actinobacillus anseriformium biovar 2"],["NCBITaxon%3A157339","Actinobacillus arthritidis"],["NCBITaxon%3A717","Actinobacillus capsulatus"],["NCBITaxon%3A1120931","Actinobacillus capsulatus DSM 19761"]]},{"id":"NCBITaxon:226","l":"Alteromonas","na":1,"nb":1246,"a":[["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["NCBITaxon%3A1892904","Alteromonas abrolhosensis"],["NCBITaxon%3A1938339","Alteromonas aestuariivivens"],["NCBITaxon%3A105692","Alteromonas agarilytica"],["NCBITaxon%3A3410268","Alteromonas algae"],["NCBITaxon%3A135000","Alteromonas alvinellae"],["NCBITaxon%3A2803813","Alteromonas antoniana"]]},{"id":"NCBITaxon:57723","l":"Acidobacteriota","na":1,"nb":1245,"a":[["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["NCBITaxon%3A442870","Acanthopleuribacter pedis"],["NCBITaxon%3A1872087","Acanthopleuribacter sp."],["NCBITaxon%3A2696471","Acanthopleuribacteraceae bacterium"],["NCBITaxon%3A1335627","Acidicapsa acidiphila"],["NCBITaxon%3A1615681","Acidicapsa acidisoli"],["NCBITaxon%3A946336","Acidicapsa borealis"]]},{"id":"NCBITaxon:265","l":"Paracoccus","na":1,"nb":1093,"a":[["nectar-bto-0000537.html","nectar"]],"b":[["NCBITaxon%3A246571","marine bacterium 13733"],["NCBITaxon%3A1795310","Paracoccus acridae"],["NCBITaxon%3A3064531","Paracoccus actinidiae"],["NCBITaxon%3A1966466","Paracoccus aeridis"],["NCBITaxon%3A1915382","Paracoccus aerius"],["NCBITaxon%3A3017781","Paracoccus aerodenitrificans"]]},{"id":"NCBITaxon:563835","l":"Chitinophagaceae","na":1,"nb":893,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"]],"b":[["NCBITaxon%3A1104781","Agriterribacter humi"],["NCBITaxon%3A2171976","Agriterribacter soli"],["NCBITaxon%3A2821509","Agriterribacter sp."],["NCBITaxon%3A1850526","Arachidicoccus ginsenosidimutans"],["NCBITaxon%3A496057","Arachidicoccus ginsenosidivorans"],["NCBITaxon%3A551991","Arachidicoccus rhizosphaerae"]]},{"id":"NCBITaxon:12916","l":"Acidovorax","na":1,"nb":822,"a":[["urine-bto-0001419.html","urine"]],"b":[["NCBITaxon%3A192388","Acidovorax aerodenitrificans"],["NCBITaxon%3A2976702","Acidovorax bellezanensis"],["NCBITaxon%3A2987520","Acidovorax benzenivorans"],["NCBITaxon%3A553814","Acidovorax carolinensis"],["NCBITaxon%3A1675792","Acidovorax cavernicola"],["NCBITaxon%3A86669","Acidovorax defluvii"]]},{"id":"NCBITaxon:283","l":"Comamonas","na":1,"nb":742,"a":[["nectar-bto-0000537.html","nectar"]],"b":[["NCBITaxon%3A472","Acinetobacter sp."],["NCBITaxon%3A3083076","Candidatus Comamonas equi"],["NCBITaxon%3A2743470","Comamonas antarctica"],["NCBITaxon%3A225991","Comamonas aquatica"],["NCBITaxon%3A1457173","Comamonas aquatica DA1877"],["NCBITaxon%3A1219031","Comamonas aquatica NBRC 14918"]]},{"id":"NCBITaxon:1041","l":"Erythrobacter","na":1,"nb":667,"a":[["hemolymph-bto-0000572.html","hemolymph"]],"b":[["NCBITaxon%3A1896145","Erythrobacter alti"],["NCBITaxon%3A2827235","Erythrobacter ani"],["NCBITaxon%3A2909249","Erythrobacter aurantius"],["NCBITaxon%3A2182384","Erythrobacter aureus"],["NCBITaxon%3A1161202","Erythrobacter colymbi"],["NCBITaxon%3A2828328","Erythrobacter crassostreae"]]},{"id":"NCBITaxon:204428","l":"Chlamydiota","na":1,"nb":627,"a":[["epilimnion-envo-00002131.html","epilimnion"]],"b":[["NCBITaxon%3A3076874","Candidatus Acheromyda pituitae"],["NCBITaxon%3A1742710","Candidatus Actinochlamydia clariatis"],["NCBITaxon%3A2040623","Candidatus Actinochlamydia pangasianodontis"],["NCBITaxon%3A3341976","Candidatus Algichlamydia australiensis"],["NCBITaxon%3A1123968","Candidatus Amphibiichlamydia ranarum"],["NCBITaxon%3A1115881","Candidatus Amphibiichlamydia salamandrae"]]},{"id":"NCBITaxon:85413","l":"Allobosea","na":1,"nb":605,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"]],"b":[["NCBITaxon%3A132928","Allobosea aff. thiooxidans 1.10"],["NCBITaxon%3A3068632","Allobosea beijingensis"],["NCBITaxon%3A2763117","Allobosea caraganae"],["NCBITaxon%3A151454","Allobosea eneae"],["NCBITaxon%3A1211774","Allobosea eneae 34614"],["NCBITaxon%3A1036778","Allobosea lathyri"]]},{"id":"NCBITaxon:872","l":"Desulfovibrio","na":1,"nb":600,"a":[["colon-bto-0000269.html","colon"]],"b":[["NCBITaxon%3A2838532","Candidatus Desulfovibrio faecigallinarum"],["NCBITaxon%3A2838533","Candidatus Desulfovibrio gallistercoris"],["NCBITaxon%3A2838534","Candidatus Desulfovibrio intestinavium"],["NCBITaxon%3A2838535","Candidatus Desulfovibrio intestinigallinarum"],["NCBITaxon%3A2838536","Candidatus Desulfovibrio intestinipullorum"],["NCBITaxon%3A2696086","Candidatus Desulfovibrio kirbyi"]]},{"id":"NCBITaxon:29465","l":"Veillonella","na":1,"nb":490,"a":[["juvenile-bto-0002168.html","juvenile"]],"b":[["NCBITaxon%3A3474240","Candidatus Veillonella sanguinis"],["NCBITaxon%3A147802","Lactobacillus iners"],["NCBITaxon%3A159268","uncultured Veillonella sp."],["NCBITaxon%3A3079305","Veillonella absiana"],["NCBITaxon%3A2941340","Veillonella agrestimuris"],["NCBITaxon%3A39777","Veillonella atypica"]]},{"id":"NCBITaxon:1298","l":"Deinococcus","na":1,"nb":488,"a":[["forearm-bto-0001447.html","forearm"]],"b":[["NCBITaxon%3A1768108","Deinococcus actinosclerus"],["NCBITaxon%3A200253","Deinococcus aerius"],["NCBITaxon%3A522487","Deinococcus aerolatus"],["NCBITaxon%3A522488","Deinococcus aerophilus"],["NCBITaxon%3A2774531","Deinococcus aestuarii"],["NCBITaxon%3A200252","Deinococcus aetherius"]]},{"id":"NCBITaxon:1655514","l":"Candidatus Pelagibacteraceae","na":1,"nb":486,"a":[["column-bto-0005692.html","column"]],"b":[["NCBITaxon%3A684719","alpha proteobacterium HIMB114"],["NCBITaxon%3A859653","alpha proteobacterium HIMB5"],["NCBITaxon%3A744985","alpha proteobacterium HIMB59"],["NCBITaxon%3A1502488","alpha proteobacterium QL1"],["NCBITaxon%3A939306","alpha proteobacterium SCGC AAA240-E13"],["NCBITaxon%3A939316","alpha proteobacterium SCGC AAA288-E13"]]},{"id":"NCBITaxon:186814","l":"Thermoanaerobacteraceae","na":1,"nb":422,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A2755338","Aceticella autotrophica"],["NCBITaxon%3A3692757","Aceticella sp. 75b-Ac"],["NCBITaxon%3A42838","Ammonifex degensii"],["NCBITaxon%3A429009","Ammonifex degensii KC4"],["NCBITaxon%3A1872493","Ammonifex sp."],["NCBITaxon%3A444093","Ammonifex thiophilus"]]},{"id":"NCBITaxon:724","l":"Haemophilus","na":1,"nb":412,"a":[["head-bto-0000282.html","head"]],"b":[["NCBITaxon%3A762","Avibacterium volantium"],["NCBITaxon%3A3711815","Candidatus Haemophilus gullae"],["NCBITaxon%3A2962910","Candidatus Haemophilus sp. bin.10"],["NCBITaxon%3A259279","cf. Haemophilus SAR-1"],["NCBITaxon%3A197575","Haemophilus aegyptius"],["NCBITaxon%3A888728","Haemophilus aegyptius ATCC 11116"]]},{"id":"NCBITaxon:135616","l":"Piscirickettsiaceae","na":1,"nb":366,"a":[["crop-bto-0000301.html","crop"]],"b":[["NCBITaxon%3A1871189","Cycloclasticus endosymbiont of Bathymodiolus heckerae"],["NCBITaxon%3A1871190","Cycloclasticus endosymbiont of sponge"],["NCBITaxon%3A46457","Cycloclasticus oligotrophus"],["NCBITaxon%3A34068","Cycloclasticus pugetii"],["NCBITaxon%3A655438","Cycloclasticus pugetii PS-1"],["NCBITaxon%3A2024830","Cycloclasticus sp."]]},{"id":"NCBITaxon:31993","l":"Methylocystaceae","na":1,"nb":327,"a":[["leaf-bto-0000713.html","leaf"]],"b":[["NCBITaxon%3A67602","alpha methylotroph Hohenstaufen"],["NCBITaxon%3A493383","methanotroph B8"],["NCBITaxon%3A493384","methanotroph C9"],["NCBITaxon%3A129791","methanotroph FL20"],["NCBITaxon%3A493386","methanotroph H8"],["NCBITaxon%3A210772","methanotroph K1-1"]]},{"id":"NCBITaxon:108619","l":"Salmonella enterica subsp. enterica serovar Newport","na":1,"nb":305,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A108619","Salmonella enterica subsp. enterica serovar Newport"],["NCBITaxon%3A1173883","Salmonella enterica subsp. enterica serovar Newport str. 0015"],["NCBITaxon%3A1173884","Salmonella enterica subsp. enterica serovar Newport str. 0029"],["NCBITaxon%3A1173885","Salmonella enterica subsp. enterica serovar Newport str. 0039"]]},{"id":"NCBITaxon:203693","l":"Nitrospiria","na":1,"nb":287,"a":[["crop-bto-0000301.html","crop"]],"b":[["NCBITaxon%3A3692265","Candidatus Inralta sp."],["NCBITaxon%3A3692264","Candidatus Inrsubterrania sp."],["NCBITaxon%3A3137712","Candidatus Magnetominusculus dajiuhuensis"],["NCBITaxon%3A2914034","Candidatus Magnetominusculus sp. LBB02"],["NCBITaxon%3A1748249","Candidatus Magnetominusculus xianensis"],["NCBITaxon%3A2552947","Candidatus Magnetomonas plexicatena"]]},{"id":"NCBITaxon:2691357","l":"Pirellulaceae","na":1,"nb":272,"a":[["column-bto-0005692.html","column"]],"b":[["NCBITaxon%3A2714739","Allorhodopirellula heiligendammensis"],["NCBITaxon%3A2527987","Allorhodopirellula solitaria"],["NCBITaxon%3A2528021","Anatilimnocola aggregata"],["NCBITaxon%3A3415683","Anatilimnocola aquadivae"],["NCBITaxon%3A2948575","Anatilimnocola floriformis"],["NCBITaxon%3A2807433","Anatilimnocola sp."]]},{"id":"NCBITaxon:475","l":"Moraxella","na":1,"nb":269,"a":[["head-bto-0000282.html","head"]],"b":[["NCBITaxon%3A34059","Faucicola atlantae"],["NCBITaxon%3A34062","Faucicola osloensis"],["NCBITaxon%3A1736026","Moraxella aff. catarrhalis 324_MCAT"],["NCBITaxon%3A1736027","Moraxella aff. catarrhalis 394_MCAT"],["NCBITaxon%3A476","Moraxella bovis"],["NCBITaxon%3A387425","Moraxella bovis Epp63"]]},{"id":"NCBITaxon:32012","l":"Thiomonas","na":1,"nb":257,"a":[["watercourse-envo-00000029.html","watercourse"]],"b":[["NCBITaxon%3A426114","Thiomonas arsenitoxydans"],["NCBITaxon%3A339866","Thiomonas bhubaneswarensis"],["NCBITaxon%3A364030","Thiomonas delicata"],["NCBITaxon%3A926","Thiomonas intermedia"],["NCBITaxon%3A75379","Thiomonas intermedia K12"],["NCBITaxon%3A545537","Thiomonas islandica"]]},{"id":"NCBITaxon:45401","l":"Hyphomicrobiaceae","na":1,"nb":250,"a":[["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["NCBITaxon%3A1608628","Candidatus Filomicrobium marinum"],["NCBITaxon%3A3098631","Candidatus Tectiglobus diatomicola"],["NCBITaxon%3A3098632","Candidatus Tectiglobus profundi"],["NCBITaxon%3A2952957","Dichotomicrobium sp."],["NCBITaxon%3A933063","Dichotomicrobium thermohalophilum"],["NCBITaxon%3A66850","Filomicrobium fusiforme"]]},{"id":"NCBITaxon:142182","l":"Gemmatimonadota","na":1,"nb":249,"a":[["crop-bto-0000301.html","crop"]],"b":[["NCBITaxon%3A234666","bacterium Ellin5220"],["NCBITaxon%3A234674","bacterium Ellin5290"],["NCBITaxon%3A234675","bacterium Ellin5301"],["NCBITaxon%3A3056743","Candidatus Benthicola azotiphorus"],["NCBITaxon%3A3056742","Candidatus Benthicola marisminoris"],["NCBITaxon%3A3101352","Candidatus Benthicola sp."]]},{"id":"NCBITaxon:84993","l":"Acidimicrobiales","na":1,"nb":240,"a":[["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["NCBITaxon%3A2664430","Acidiferrimicrobium australe"],["NCBITaxon%3A3100505","Acidiferrimicrobium sp."],["NCBITaxon%3A2871700","Acidiferrimicrobium sp. IK"],["NCBITaxon%3A2024894","Acidimicrobiaceae bacterium"],["NCBITaxon%3A2814543","Acidimicrobiaceae bacterium AH-315-P05"],["NCBITaxon%3A2023289","Acidimicrobiaceae bacterium BS0038C4"]]},{"id":"NCBITaxon:28450","l":"Burkholderia pseudomallei","na":1,"nb":214,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"]],"b":[["NCBITaxon%3A28450","Burkholderia pseudomallei"],["NCBITaxon%3A1085027","Burkholderia pseudomallei 1026a"],["NCBITaxon%3A884204","Burkholderia pseudomallei 1026b"],["NCBITaxon%3A1310219","Burkholderia pseudomallei 104(1990)"],["NCBITaxon%3A357348","Burkholderia pseudomallei 1106a"],["NCBITaxon%3A357347","Burkholderia pseudomallei 1106b"]]},{"id":"NCBITaxon:137","l":"Spirochaetaceae","na":1,"nb":208,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A46356","Alkalispirochaeta alkalica"],["NCBITaxon%3A942938","Alkalispirochaeta alkalica DSM 8900"],["NCBITaxon%3A159291","Alkalispirochaeta americana"],["NCBITaxon%3A1410329","Alkalispirochaeta cellulosivorans"],["NCBITaxon%3A1329640","Alkalispirochaeta odontotermitis"],["NCBITaxon%3A2024959","Alkalispirochaeta sp."]]},{"id":"NCBITaxon:245186","l":"Loktanella","na":1,"nb":208,"a":[["column-bto-0005692.html","column"]],"b":[["NCBITaxon%3A101376","alpha proteobacterium QSSC9-5"],["NCBITaxon%3A287097","Loktanella agnita"],["NCBITaxon%3A1610528","Loktanella aquimaris"],["NCBITaxon%3A366533","Loktanella atrilutea"],["NCBITaxon%3A245187","Loktanella fryxellensis"],["NCBITaxon%3A2881335","Loktanella gaetbuli"]]},{"id":"NCBITaxon:74152","l":"Elusimicrobiota","na":1,"nb":201,"a":[["hypolimnion-envo-00002130.html","hypolimnion"]],"b":[["NCBITaxon%3A3416221","Candidatus Avelusimicrobium alvi"],["NCBITaxon%3A3416206","Candidatus Avelusimicrobium aviculae"],["NCBITaxon%3A3416215","Candidatus Avelusimicrobium bubulum"],["NCBITaxon%3A3416220","Candidatus Avelusimicrobium caledoniensis"],["NCBITaxon%3A1947906","Candidatus Avelusimicrobium cornigerorum"],["NCBITaxon%3A2840689","Candidatus Avelusimicrobium excrementipullorum"]]},{"id":"NCBITaxon:1253","l":"Pediococcus","na":1,"nb":186,"a":[["cecum-bto-0000166.html","cecum"]],"b":[["NCBITaxon%3A1872398","Aerococcus sp."],["NCBITaxon%3A51665","Aerococcus urinaeequi"],["NCBITaxon%3A1254","Pediococcus acidilactici"],["NCBITaxon%3A563194","Pediococcus acidilactici 7_4"],["NCBITaxon%3A1384067","Pediococcus acidilactici AGR20"],["NCBITaxon%3A1306952","Pediococcus acidilactici D3"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":176,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A90371","Salmonella enterica subsp. enterica serovar Typhimurium"],["NCBITaxon%3A1173928","Salmonella enterica subsp. enterica serovar Typhimurium str. 0052"],["NCBITaxon%3A1114946","Salmonella enterica subsp. enterica serovar Typhimurium str. 00-01036"],["NCBITaxon%3A1173930","Salmonella enterica subsp. enterica serovar Typhimurium str. 0364"]]},{"id":"NCBITaxon:186650","l":"Microvirga","na":1,"nb":171,"a":[["crop-bto-0000301.html","crop"]],"b":[["NCBITaxon%3A670292","Microvirga aerilata"],["NCBITaxon%3A670291","Microvirga aerophila"],["NCBITaxon%3A2791025","Microvirga alba"],["NCBITaxon%3A2819233","Microvirga antarctica"],["NCBITaxon%3A1128671","Microvirga arabica"],["NCBITaxon%3A2692265","Microvirga arsenatis"]]},{"id":"NCBITaxon:59203","l":"Salmonella enterica subsp. arizonae","na":1,"nb":151,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59203","Salmonella enterica subsp. arizonae"],["NCBITaxon%3A2577126","Salmonella enterica subsp. arizonae serovar 11:z4,z23:-"],["NCBITaxon%3A2577127","Salmonella enterica subsp. arizonae serovar 13,22:z4,z23:-"],["NCBITaxon%3A2691147","Salmonella enterica subsp. arizonae serovar 13,23:g,z51:-"],["NCBITaxon%3A2577128","Salmonella enterica subsp. arizonae serovar 13,23:z4,z23,[z32]:-"]]},{"id":"NCBITaxon:1134404","l":"Ignavibacteriota","na":1,"nb":150,"a":[["gut-bto-0000545.html","gut"]],"b":[["NCBITaxon%3A3879837","Candidatus Tepidaquicellaceae bacterium"],["NCBITaxon%3A3414687","Candidatus Tepidiaquacella proteinivora"],["NCBITaxon%3A3455485","Candidatus Tepidiaquacellales bacterium"],["NCBITaxon%3A1617411","Candidatus Tepidiaquacellales bacterium OLB4/UTCHB1"],["NCBITaxon%3A1617412","Candidatus Tepidiaquacellales bacterium OLB5"],["NCBITaxon%3A1948666","Candidatus Tepidiaquacellales bacterium UBA2330"]]},{"id":"NCBITaxon:83334","l":"Escherichia coli O157:H7","na":1,"nb":140,"a":[["uterus-bto-0001424.html","uterus"]],"b":[["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1389955","Escherichia coli ATCC 35150"],["NCBITaxon%3A83334","Escherichia coli O157:H7"],["NCBITaxon%3A1446609","Escherichia coli O157:H7 str. 06-3745"],["NCBITaxon%3A1446610","Escherichia coli O157:H7 str. 06-4039"],["NCBITaxon%3A1446611","Escherichia coli O157:H7 str. 07-3091"]]},{"id":"NCBITaxon:203557","l":"Verrucomicrobiaceae","na":1,"nb":130,"a":[["column-bto-0005692.html","column"]],"b":[["NCBITaxon%3A748831","Prosthecobacter gellanilyticus"],["NCBITaxon%3A177412","Fucophilus fucoidanolyticus"],["NCBITaxon%3A1048331","Haloferula chungangensis"],["NCBITaxon%3A490092","Haloferula harenae"],["NCBITaxon%3A490095","Haloferula helveola"],["NCBITaxon%3A595692","Haloferula luteola"]]},{"id":"NCBITaxon:1860","l":"Geodermatophilus","na":1,"nb":127,"a":[["crop-bto-0000301.html","crop"]],"b":[["NCBITaxon%3A1137993","Geodermatophilus africanus"],["NCBITaxon%3A1296565","Geodermatophilus amargosae"],["NCBITaxon%3A1564161","Geodermatophilus aquaeductus"],["NCBITaxon%3A1137990","Geodermatophilus arenarius"],["NCBITaxon%3A1564160","Geodermatophilus bullaregiensis"],["NCBITaxon%3A2035835","Geodermatophilus chilensis"]]},{"id":"NCBITaxon:265488","l":"Rhodopirellula","na":1,"nb":121,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A980271","Aporhodopirellula rubra"],["NCBITaxon%3A1263869","Aporhodopirellula sallentina"],["NCBITaxon%3A1265734","Novipirellula maiorica"],["NCBITaxon%3A2014065","Rhodopirellula bahusiensis"],["NCBITaxon%3A265606","Rhodopirellula baltica"],["NCBITaxon%3A993517","Rhodopirellula baltica SH28"]]},{"id":"NCBITaxon:219685","l":"Gemmatimonadia","na":1,"nb":108,"a":[["crop-bto-0000301.html","crop"]],"b":[["NCBITaxon%3A3056743","Candidatus Benthicola azotiphorus"],["NCBITaxon%3A3056742","Candidatus Benthicola marisminoris"],["NCBITaxon%3A3101352","Candidatus Benthicola sp."],["NCBITaxon%3A3056746","Candidatus Caribbeanibacter nitroreducens"],["NCBITaxon%3A3056744","Candidatus Carthagonibacter metallireducens"],["NCBITaxon%3A3101351","Candidatus Carthagonibacter sp."]]},{"id":"NCBITaxon:1577788","l":"Methanomassiliicoccaceae","na":1,"nb":103,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A1234667","Candidatus Methanogranum caenicola"],["NCBITaxon%3A2848114","Candidatus Methanogranum gryphiswaldense"],["NCBITaxon%3A3101443","Candidatus Methanogranum sp."],["NCBITaxon%3A1406512","Candidatus Methanomassiliicoccus intestinalis"],["NCBITaxon%3A1295009","Candidatus Methanomassiliicoccus intestinalis Issoire-Mx1"],["NCBITaxon%3A3136098","Candidatus Methanoplasma cognatum"]]},{"id":"NCBITaxon:281915","l":"Curvibacter","na":1,"nb":100,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"]],"b":[["NCBITaxon%3A3026422","Curvibacter cyanobacteriorum"],["NCBITaxon%3A80879","Curvibacter delicatus"],["NCBITaxon%3A1349763","Curvibacter delicatus NBRC 14919"],["NCBITaxon%3A247486","Curvibacter fontanus"],["NCBITaxon%3A230310","Curvibacter gracilis"],["NCBITaxon%3A1336244","Curvibacter gracilis ATCC BAA-807"]]},{"id":"NCBITaxon:568386","l":"Nevskiaceae","na":1,"nb":99,"a":[["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["NCBITaxon%3A159478","Alkanibacter difficilis"],["NCBITaxon%3A1872458","Alkanibacter sp."],["NCBITaxon%3A2806210","Flagellatimonas centrodinii"],["NCBITaxon%3A2893024","Flagellatimonas sp."],["NCBITaxon%3A1891218","Fontimonas sp."],["NCBITaxon%3A3693038","Fontimonas sp. FW305-C-3"]]},{"id":"NCBITaxon:107","l":"Spirosoma","na":1,"nb":96,"a":[["skin-bto-0001253.html","skin"]],"b":[["NCBITaxon%3A1211326","Spirosoma aerolatum"],["NCBITaxon%3A1717229","Spirosoma aerophilum"],["NCBITaxon%3A1987381","Spirosoma agri"],["NCBITaxon%3A2682092","Spirosoma arboris"],["NCBITaxon%3A1465616","Spirosoma arcticum"],["NCBITaxon%3A1806202","Spirosoma areae"]]},{"id":"NCBITaxon:1562","l":"Desulfotomaculum","na":1,"nb":94,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"]],"b":[["NCBITaxon%3A2792885","Desulfotomaculum antarcticum"],["NCBITaxon%3A1838280","Desulfotomaculum copahuensis"],["NCBITaxon%3A369958","Desulfotomaculum defluvii"],["NCBITaxon%3A1565","Desulfotomaculum nigrificans"],["NCBITaxon%3A868595","Desulfotomaculum nigrificans CO-1-SRB"],["NCBITaxon%3A696369","Desulfotomaculum nigrificans DSM 574"]]},{"id":"NCBITaxon:212791","l":"Enhydrobacter","na":1,"nb":86,"a":[["trachea-bto-0001388.html","trachea"]],"b":[["NCBITaxon%3A225324","Enhydrobacter aerosaccus"],["NCBITaxon%3A553217","Enhydrobacter aerosaccus SK60"],["NCBITaxon%3A1894999","Enhydrobacter sp."],["NCBITaxon%3A1449459","Enhydrobacter sp. 1153-i7"],["NCBITaxon%3A881987","Enhydrobacter sp. 1_36p"],["NCBITaxon%3A2653137","Enhydrobacter sp. 8BJ"]]},{"id":"NCBITaxon:4762","l":"Oomycota","na":1,"nb":85,"a":[["oomycete-associated-environment-habitatmech-gold-a233293e47.html","oomycete-associated environment"]],"b":[["NCBITaxon%3A1202772","Achlya hypogyna"],["NCBITaxon%3A65357","Albugo candida"],["NCBITaxon%3A112090","Aphanomyces astaci"],["NCBITaxon%3A112091","Aphanomyces cochlioides"],["NCBITaxon%3A100861","Aphanomyces euteiches"],["NCBITaxon%3A157072","Aphanomyces invadans"]]},{"id":"NCBITaxon:713","l":"Actinobacillus","na":1,"nb":85,"a":[["head-bto-0000282.html","head"]],"b":[["NCBITaxon%3A221404","Actinobacillus anseriformium"],["NCBITaxon%3A221398","Actinobacillus anseriformium biovar 1"],["NCBITaxon%3A221399","Actinobacillus anseriformium biovar 2"],["NCBITaxon%3A157339","Actinobacillus arthritidis"],["NCBITaxon%3A717","Actinobacillus capsulatus"],["NCBITaxon%3A1120931","Actinobacillus capsulatus DSM 19761"]]},{"id":"NCBITaxon:213465","l":"Syntrophobacteraceae","na":1,"nb":84,"a":[["crop-bto-0000301.html","crop"]],"b":[["NCBITaxon%3A1930578","Candidatus Desulfonatronobulbus propionicus"],["NCBITaxon%3A109258","Desulfacinum hydrothermale"],["NCBITaxon%3A1121390","Desulfacinum hydrothermale DSM 13146"],["NCBITaxon%3A35837","Desulfacinum infernum"],["NCBITaxon%3A1121391","Desulfacinum infernum DSM 9756"],["NCBITaxon%3A2301220","Desulfacinum sp."]]},{"id":"NCBITaxon:219686","l":"Gemmatimonadales","na":1,"nb":83,"a":[["spike-bto-0001278.html","spike"]],"b":[["NCBITaxon%3A2026741","Gemmatimonadaceae bacterium"],["NCBITaxon%3A1956166","Gemmatimonadaceae bacterium 4484_173"],["NCBITaxon%3A1387400","Gemmatimonadaceae bacterium LWQ133"],["NCBITaxon%3A2448054","Gemmatimonadales bacterium"],["NCBITaxon%3A2478550","Gemmatimonadales bacterium JGI 01_G21"],["NCBITaxon%3A2478549","Gemmatimonadales bacterium JGI 01_H16"]]},{"id":"NCBITaxon:174951","l":"Ramlibacter","na":1,"nb":81,"a":[["crop-bto-0000301.html","crop"]],"b":[["NCBITaxon%3A2728837","Ramlibacter agri"],["NCBITaxon%3A2079448","Ramlibacter albus"],["NCBITaxon%3A2795217","Ramlibacter algicola"],["NCBITaxon%3A2039631","Ramlibacter alkalitolerans"],["NCBITaxon%3A2780094","Ramlibacter aquaticus"],["NCBITaxon%3A2801330","Ramlibacter aurantiacus"]]},{"id":"NCBITaxon:28067","l":"Rubrivivax","na":1,"nb":76,"a":[["nectar-bto-0000537.html","nectar"]],"b":[["NCBITaxon%3A3400288","Candidatus Rubrivivax defluviihabitans"],["NCBITaxon%3A2499835","Rubrivivax albus"],["NCBITaxon%3A316997","Rubrivivax benzoatilyticus"],["NCBITaxon%3A987059","Rubrivivax benzoatilyticus JA2 = ATCC BAA-35"],["NCBITaxon%3A28068","Rubrivivax gelatinosus"],["NCBITaxon%3A1154769","Rubrivivax gelatinosus CBS"]]},{"id":"NCBITaxon:1101","l":"Prosthecochloris","na":1,"nb":70,"a":[["hemolymph-bto-0000572.html","hemolymph"]],"b":[["NCBITaxon%3A1102","Prosthecochloris aestuarii"],["NCBITaxon%3A290512","Prosthecochloris aestuarii DSM 271"],["NCBITaxon%3A2743976","Prosthecochloris ethylica"],["NCBITaxon%3A315457","Prosthecochloris indica"],["NCBITaxon%3A2017681","Prosthecochloris marina"],["NCBITaxon%3A1692047","Prosthecochloris phaeoasteroidea"]]},{"id":"NCBITaxon:1313211","l":"Lentisphaeria","na":1,"nb":69,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A2840947","Candidatus Spyradenecus faecavium"],["NCBITaxon%3A3004486","Candidatus Spyradenecus sp."],["NCBITaxon%3A256847","Lentisphaera araneosa"],["NCBITaxon%3A313628","Lentisphaera araneosa HTCC2155"],["NCBITaxon%3A1111041","Lentisphaera marina"],["NCBITaxon%3A1658616","Lentisphaera profundi"]]},{"id":"NCBITaxon:168697","l":"Salinispora arenicola","na":1,"nb":66,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A168697","Salinispora arenicola"],["NCBITaxon%3A391967","Salinispora arenicola ATCC BAA-917"],["NCBITaxon%3A1136425","Salinispora arenicola CNB458"],["NCBITaxon%3A1137250","Salinispora arenicola CNB527"],["NCBITaxon%3A1136427","Salinispora arenicola CNH646"],["NCBITaxon%3A1408327","Salinispora arenicola CNH713"]]},{"id":"NCBITaxon:174","l":"Leptospira borgpetersenii","na":1,"nb":61,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A174","Leptospira borgpetersenii"],["NCBITaxon%3A652580","Leptospira borgpetersenii serovar Arborea"],["NCBITaxon%3A1218566","Leptospira borgpetersenii serovar Arborea str. LT2208"],["NCBITaxon%3A508535","Leptospira borgpetersenii serovar Balcanica"],["NCBITaxon%3A280505","Leptospira borgpetersenii serovar Ballum"],["NCBITaxon%3A376921","Leptospira borgpetersenii serovar Castellonis"]]},{"id":"NCBITaxon:49082","l":"Candidatus Neoarthromitus","na":1,"nb":57,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["NCBITaxon%3A2666074","Candidatus Arthromitus sp. GSU"],["NCBITaxon%3A2608943","Candidatus Arthromitus sp. M17"],["NCBITaxon%3A2608944","Candidatus Arthromitus sp. M18"],["NCBITaxon%3A2608945","Candidatus Arthromitus sp. M19"],["NCBITaxon%3A2608946","Candidatus Arthromitus sp. M20"],["NCBITaxon%3A2608947","Candidatus Arthromitus sp. M21"]]},{"id":"NCBITaxon:187","l":"Aquaspirillum","na":1,"nb":54,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A87645","Aquaspirillum arcticum"],["NCBITaxon%3A682713","Aquaspirillum denitrificans"],["NCBITaxon%3A80877","Aquaspirillum polymorphum"],["NCBITaxon%3A181658","Aquaspirillum putridiconchylium"],["NCBITaxon%3A190","Aquaspirillum serpens"],["NCBITaxon%3A1121004","Aquaspirillum serpens DSM 68"]]},{"id":"NCBITaxon:2864","l":"Dinophyceae","na":1,"nb":53,"a":[["dinoflagellate-associated-environment-habitatmech-gold-94019ddb33.html","dinoflagellate-associated environment"]],"b":[["NCBITaxon%3A143672","Akashiwo sanguinea"],["NCBITaxon%3A327968","Alexandrium andersonii"],["NCBITaxon%3A2925","Alexandrium catenella"],["NCBITaxon%3A2932","Alexandrium fundyense"],["NCBITaxon%3A109239","Alexandrium margalefii"],["NCBITaxon%3A39455","Alexandrium minutum"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":51,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A1392","Bacillus anthracis"],["NCBITaxon%3A1412844","Bacillus anthracis 52-G"],["NCBITaxon%3A1412843","Bacillus anthracis 8903-G"],["NCBITaxon%3A1412842","Bacillus anthracis 9080-G"],["NCBITaxon%3A1420588","Bacillus anthracis CVCC 40048"],["NCBITaxon%3A1439874","Bacillus anthracis CZC5"]]},{"id":"NCBITaxon:227979","l":"Jeotgalicoccus","na":1,"nb":50,"a":[["trachea-bto-0001388.html","trachea"]],"b":[["NCBITaxon%3A2838629","Candidatus Jeotgalicoccus stercoravium"],["NCBITaxon%3A709510","Jeotgalicoccus aerolatus"],["NCBITaxon%3A709509","Jeotgalicoccus coquinae"],["NCBITaxon%3A157227","Jeotgalicoccus halotolerans"],["NCBITaxon%3A589010","Jeotgalicoccus huakuii"],["NCBITaxon%3A516700","Jeotgalicoccus marinus"]]},{"id":"NCBITaxon:2830","l":"Haptophyta","na":1,"nb":44,"a":[["column-bto-0005692.html","column"]],"b":[["NCBITaxon%3A127549","Calcidiscus leptoporus"],["NCBITaxon%3A412156","Chrysochromulina leadbeateri"],["NCBITaxon%3A127563","Chrysochromulina parva"],["NCBITaxon%3A412157","Chrysochromulina rotalis"],["NCBITaxon%3A412158","Chrysochromulina simplex"],["NCBITaxon%3A1460289","Chrysochromulina tobinii"]]},{"id":"NCBITaxon:50709","l":"Acidocella","na":1,"nb":42,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"]],"b":[["NCBITaxon%3A472056","Acidocella aluminiidurans"],["NCBITaxon%3A33998","Acidocella aminolytica"],["NCBITaxon%3A1120923","Acidocella aminolytica 101 = DSM 11237"],["NCBITaxon%3A1922313","Acidocella aquatica"],["NCBITaxon%3A1303579","Acidocella aromatica"],["NCBITaxon%3A525","Acidocella facilis"]]},{"id":"NCBITaxon:340","l":"Xanthomonas campestris pv. campestris","na":1,"nb":41,"a":[["waste-treatment-plant-envo-00002272.html","waste treatment plant"]],"b":[["NCBITaxon%3A339","Xanthomonas campestris"],["NCBITaxon%3A340","Xanthomonas campestris pv. campestris"],["NCBITaxon%3A1357995","Xanthomonas campestris pv. campestris str. 147"],["NCBITaxon%3A314565","Xanthomonas campestris pv. campestris str. 8004"],["NCBITaxon%3A190485","Xanthomonas campestris pv. campestris str. ATCC 33913"],["NCBITaxon%3A509169","Xanthomonas campestris pv. campestris str. B100"]]},{"id":"NCBITaxon:384","l":"Rhizobium leguminosarum","na":1,"nb":39,"a":[["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["NCBITaxon%3A3019932","Rhizobium brockwellii"],["NCBITaxon%3A384","Rhizobium leguminosarum"],["NCBITaxon%3A385","Rhizobium leguminosarum bv. phaseoli"],["NCBITaxon%3A936350","Rhizobium leguminosarum bv. phaseoli 4292"],["NCBITaxon%3A1408223","Rhizobium leguminosarum bv. phaseoli CCGM1"],["NCBITaxon%3A1041140","Rhizobium leguminosarum bv. phaseoli FA23"]]},{"id":"NCBITaxon:261933","l":"Pleomorphomonas","na":1,"nb":38,"a":[["nectar-bto-0000537.html","nectar"]],"b":[["NCBITaxon%3A2023338","Pleomorphomonas carboxyditropha"],["NCBITaxon%3A1166257","Pleomorphomonas diazotrophica"],["NCBITaxon%3A257440","Pleomorphomonas koreensis"],["NCBITaxon%3A1122962","Pleomorphomonas koreensis DSM 23070"],["NCBITaxon%3A261934","Pleomorphomonas oryzae"],["NCBITaxon%3A1122963","Pleomorphomonas oryzae DSM 16300"]]},{"id":"NCBITaxon:447020","l":"Adlercreutzia","na":1,"nb":37,"a":[["cecum-mucosa-bto-0000213.html","cecum mucosa"]],"b":[["NCBITaxon%3A2941324","Adlercreutzia agrestimuris"],["NCBITaxon%3A2941323","Adlercreutzia aquisgranensis"],["NCBITaxon%3A671266","Adlercreutzia caecimuris"],["NCBITaxon%3A1235794","Adlercreutzia caecimuris B7"],["NCBITaxon%3A446660","Adlercreutzia equolifaciens"],["NCBITaxon%3A1384484","Adlercreutzia equolifaciens DSM 19450"]]},{"id":"NCBITaxon:54736","l":"Salmonella bongori","na":1,"nb":36,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A54736","Salmonella bongori"],["NCBITaxon%3A1299281","Salmonella bongori CFSAN000509"],["NCBITaxon%3A1299282","Salmonella bongori CFSAN000510"],["NCBITaxon%3A1197719","Salmonella bongori N268-08"],["NCBITaxon%3A218493","Salmonella bongori NCTC 12419"],["NCBITaxon%3A2577113","Salmonella bongori serovar 13,22:r:-"]]},{"id":"NCBITaxon:1080709","l":"Methanomassiliicoccus","na":1,"nb":35,"a":[["gut-bto-0000545.html","gut"]],"b":[["NCBITaxon%3A1406512","Candidatus Methanomassiliicoccus intestinalis"],["NCBITaxon%3A1295009","Candidatus Methanomassiliicoccus intestinalis Issoire-Mx1"],["NCBITaxon%3A1080712","Methanomassiliicoccus luminyensis"],["NCBITaxon%3A1175296","Methanomassiliicoccus luminyensis B10"],["NCBITaxon%3A2528041","Methanomassiliicoccus sp."],["NCBITaxon%3A1622079","Methanomassiliicoccus sp. 138"]]},{"id":"NCBITaxon:715","l":"Actinobacillus pleuropneumoniae","na":1,"nb":35,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["NCBITaxon%3A44930","Natronobacterium gregoryi"],["NCBITaxon%3A797304","Natronobacterium gregoryi SP2"],["NCBITaxon%3A715","Actinobacillus pleuropneumoniae"],["NCBITaxon%3A1224142","Actinobacillus pleuropneumoniae S8"],["NCBITaxon%3A40325","Actinobacillus pleuropneumoniae serovar 1"],["NCBITaxon%3A754347","Actinobacillus pleuropneumoniae serovar 10"]]},{"id":"NCBITaxon:28050","l":"Lachnospira","na":1,"nb":34,"a":[["adult-bto-0001043.html","adult"]],"b":[["NCBITaxon%3A39485","Lachnospira eligens"],["NCBITaxon%3A515620","Lachnospira eligens ATCC 27750"],["NCBITaxon%3A1263077","Lachnospira eligens CAG:72"],["NCBITaxon%3A3230259","Lachnospira hominis (ex Hitch et al. 2025)"],["NCBITaxon%3A2763051","Lachnospira hominis (ex Liu et al. 2021)"],["NCBITaxon%3A3133158","Lachnospira intestinalis"]]},{"id":"NCBITaxon:246874","l":"Cryomorphaceae","na":1,"nb":33,"a":[["column-bto-0005692.html","column"]],"b":[["NCBITaxon%3A2692424","Acidiluteibacter ferrifornacis"],["NCBITaxon%3A2819283","Acidiluteibacter sp."],["NCBITaxon%3A2964002","Acidiluteibacter sp. SCM31"],["NCBITaxon%3A2953872","Candidatus Marisimplicoccus framensis"],["NCBITaxon%3A3101254","Candidatus Marisimplicoccus sp."],["NCBITaxon%3A101383","Cryomorpha ignava"]]},{"id":"NCBITaxon:105850","l":"Acidilobus","na":1,"nb":32,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A105851","Acidilobus aceticus"],["NCBITaxon%3A242703","Acidilobus saccharovorans"],["NCBITaxon%3A666510","Acidilobus saccharovorans 345-15"],["NCBITaxon%3A1872109","Acidilobus sp."],["NCBITaxon%3A242702","Acidilobus sp. 124-87"],["NCBITaxon%3A242704","Acidilobus sp. 405-16"]]},{"id":"NCBITaxon:114627","l":"Alkaliphilus","na":1,"nb":32,"a":[["ileum-bto-0000620.html","ileum"]],"b":[["NCBITaxon%3A185693","Alkaliphilus crotonatoxidans"],["NCBITaxon%3A2841507","Alkaliphilus flagellatus"],["NCBITaxon%3A522397","Alkaliphilus halophilus"],["NCBITaxon%3A1482730","Alkaliphilus hydrothermalis"],["NCBITaxon%3A208226","Alkaliphilus metalliredigens"],["NCBITaxon%3A293826","Alkaliphilus metalliredigens QYMF"]]},{"id":"NCBITaxon:83428","l":"uncultured Bacillus sp.","na":32,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"],["saline-water-body-envo-01001319.html","saline water body"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["NCBITaxon%3A83428","uncultured Bacillus sp."]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":1,"nb":31,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["NCBITaxon%3A571","Klebsiella oxytoca"],["NCBITaxon%3A883116","Klebsiella oxytoca 09-7231"],["NCBITaxon%3A883117","Klebsiella oxytoca 10-5242"],["NCBITaxon%3A883118","Klebsiella oxytoca 10-5243"],["NCBITaxon%3A883119","Klebsiella oxytoca 10-5244"],["NCBITaxon%3A883120","Klebsiella oxytoca 10-5245"]]},{"id":"NCBITaxon:890","l":"Desulfuromonas","na":1,"nb":30,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A891","Desulfuromonas acetoxidans"],["NCBITaxon%3A281689","Desulfuromonas acetoxidans DSM 684"],["NCBITaxon%3A1523623","Desulfuromonas carbonis"],["NCBITaxon%3A93716","Desulfuromonas chloroethenica"],["NCBITaxon%3A158192","Desulfuromonas michiganensis"],["NCBITaxon%3A40982","Desulfuromonas palmitatis"]]},{"id":"NCBITaxon:109168","l":"Desulfotalea","na":1,"nb":28,"a":[["hemolymph-bto-0000572.html","hemolymph"]],"b":[["NCBITaxon%3A84979","Desulfotalea arctica"],["NCBITaxon%3A84980","Desulfotalea psychrophila"],["NCBITaxon%3A177439","Desulfotalea psychrophila LSv54"],["NCBITaxon%3A2030813","Desulfotalea sp."],["NCBITaxon%3A303199","Desulfotalea sp. NA22"],["NCBITaxon%3A1092757","Desulfotalea sp. PR5_A04"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":27,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A57706","Citrobacter braakii"],["NCBITaxon%3A1914243","Citrobacter europaeus"],["NCBITaxon%3A546","Citrobacter freundii"],["NCBITaxon%3A1173724","Citrobacter freundii 47N"],["NCBITaxon%3A742730","Citrobacter freundii 4_7_47CFAA"],["NCBITaxon%3A1444046","Citrobacter freundii 5-172-05_S1_C1"]]},{"id":"NCBITaxon:1077265","l":"Chthonomonas","na":1,"nb":26,"a":[["root-bto-0001188.html","root"]],"b":[["NCBITaxon%3A454171","Chthonomonas calidirosea"],["NCBITaxon%3A1416929","Chthonomonas calidirosea P488"],["NCBITaxon%3A1303518","Chthonomonas calidirosea T49"],["NCBITaxon%3A1427520","Chthonomonas calidirosea TKA4.10"],["NCBITaxon%3A1427521","Chthonomonas calidirosea WRG1.2"],["NCBITaxon%3A2282153","Chthonomonas sp."]]},{"id":"NCBITaxon:118","l":"Planctomyces","na":1,"nb":26,"a":[["column-bto-0005692.html","column"]],"b":[["NCBITaxon%3A1653850","Planctomyces bekefii"],["NCBITaxon%3A37635","Planctomyces sp."],["NCBITaxon%3A79925","Planctomyces sp. 248"],["NCBITaxon%3A79927","Planctomyces sp. 282"],["NCBITaxon%3A79926","Planctomyces sp. 287"],["NCBITaxon%3A79924","Planctomyces sp. 423"]]},{"id":"NCBITaxon:1869227","l":"bacterium","na":26,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["marine-water-body-envo-00001999.html","marine water body"],["watercourse-envo-00000029.html","watercourse"],["laboratory-facility-envo-01001406.html","laboratory facility"]],"b":[["NCBITaxon%3A1869227","bacterium"]]},{"id":"NCBITaxon:2173","l":"Methanobrevibacter smithii","na":1,"nb":26,"a":[["lagoon-envo-00000038.html","lagoon"]],"b":[["NCBITaxon%3A2173","Methanobrevibacter smithii"],["NCBITaxon%3A420247","Methanobrevibacter smithii ATCC 35061"],["NCBITaxon%3A1263088","Methanobrevibacter smithii CAG:186"],["NCBITaxon%3A521001","Methanobrevibacter smithii DSM 11975"],["NCBITaxon%3A521002","Methanobrevibacter smithii DSM 2374"],["NCBITaxon%3A483214","Methanobrevibacter smithii DSM 2375"]]},{"id":"NCBITaxon:106111","l":"Pedobacter sp. KP-2","na":25,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"]],"b":[["NCBITaxon%3A106111","Pedobacter sp. KP-2"]]},{"id":"NCBITaxon:1360","l":"Lactococcus lactis subsp. lactis","na":1,"nb":25,"a":[["foregut-bto-0000507.html","foregut"]],"b":[["NCBITaxon%3A1358","Lactococcus lactis"],["NCBITaxon%3A203404","Lactococcus lactis subsp. hordniae"],["NCBITaxon%3A1348656","Lactococcus lactis subsp. hordniae NBRC 100931"],["NCBITaxon%3A1360","Lactococcus lactis subsp. lactis"],["NCBITaxon%3A1379274","Lactococcus lactis subsp. lactis 1AA59"],["NCBITaxon%3A1137134","Lactococcus lactis subsp. lactis A12"]]},{"id":"NCBITaxon:1765","l":"Mycobacterium tuberculosis variant bovis","na":1,"nb":25,"a":[["lymph-node-bto-0000784.html","lymph node"]],"b":[["NCBITaxon%3A1773","Mycobacterium tuberculosis"],["NCBITaxon%3A1765","Mycobacterium tuberculosis variant bovis"],["NCBITaxon%3A1384084","Mycobacterium tuberculosis variant bovis 04-303"],["NCBITaxon%3A233413","Mycobacterium tuberculosis variant bovis AF2122/97"],["NCBITaxon%3A1389959","Mycobacterium tuberculosis variant bovis AN5"],["NCBITaxon%3A1438822","Mycobacterium tuberculosis variant bovis B2 7505"]]},{"id":"NCBITaxon:2740","l":"Peptococcus","na":1,"nb":25,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"]],"b":[["NCBITaxon%3A2741","Peptococcus niger"],["NCBITaxon%3A1643805","Peptococcus simiae"],["NCBITaxon%3A2049038","Peptococcus sp."],["NCBITaxon%3A665947","Peptococcus sp. 2_1_54CFAA_CT1"],["NCBITaxon%3A1357330","Peptococcus sp. 2_1_54CFAACT2"],["NCBITaxon%3A1151468","Peptococcus sp. canine oral taxon 044"]]},{"id":"NCBITaxon:114715","l":"uncultured Ralstonia sp.","na":24,"nb":1,"a":[["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"]],"b":[["NCBITaxon%3A114715","uncultured Ralstonia sp."]]},{"id":"NCBITaxon:1828","l":"Rhodococcoides fascians","na":1,"nb":23,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["NCBITaxon%3A1828","Rhodococcoides fascians"],["NCBITaxon%3A1443888","Rhodococcoides fascians 02-815"],["NCBITaxon%3A1443889","Rhodococcoides fascians 02-816c"],["NCBITaxon%3A1443890","Rhodococcoides fascians 04-516"],["NCBITaxon%3A1443891","Rhodococcoides fascians 05-339-1"],["NCBITaxon%3A1443892","Rhodococcoides fascians 05-561-1"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa (strain ATCC 15692 / DSM 22644 / CIP 104116 / JCM 14847 / LMG 12228 / 1C / PRS 101 / PAO1)","na":1,"nb":23,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1453991","Pseudomonas aeruginosa BK1"],["NCBITaxon%3A1236530","Pseudomonas aeruginosa JCM 14847"],["NCBITaxon%3A1131757","Pseudomonas aeruginosa MPAO1/P1"],["NCBITaxon%3A1131758","Pseudomonas aeruginosa MPAO1/P2"],["NCBITaxon%3A208964","Pseudomonas aeruginosa PAO1"]]},{"id":"NCBITaxon:431041","l":"Candidatus Synechococcus spongiarum","na":1,"nb":23,"a":[["inlet-envo-00000475.html","inlet"]],"b":[["NCBITaxon%3A431041","Candidatus Synechococcus spongiarum"],["NCBITaxon%3A1608213","Candidatus Synechococcus spongiarum 142"],["NCBITaxon%3A1608419","Candidatus Synechococcus spongiarum 15L"],["NCBITaxon%3A452893","Candidatus Synechococcus spongiarum 604SC1"],["NCBITaxon%3A452894","Candidatus Synechococcus spongiarum 607SC1"],["NCBITaxon%3A452895","Candidatus Synechococcus spongiarum 614SC3"]]},{"id":"NCBITaxon:112248","l":"Seinonella peptonophila","na":20,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["stream-envo-00000023.html","stream"],["surface-water-envo-00002042.html","surface water"]],"b":[["NCBITaxon%3A112248","Seinonella peptonophila"]]},{"id":"NCBITaxon:1452","l":"Bacillus atrophaeus","na":1,"nb":20,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A1452","Bacillus atrophaeus"],["NCBITaxon%3A723888","Bacillus atrophaeus 1013-1"],["NCBITaxon%3A723889","Bacillus atrophaeus 1013-2"],["NCBITaxon%3A720555","Bacillus atrophaeus 1942"],["NCBITaxon%3A743709","Bacillus atrophaeus ATCC 49822"],["NCBITaxon%3A743710","Bacillus atrophaeus ATCC 49822-1"]]},{"id":"NCBITaxon:1579","l":"Lactobacillus acidophilus","na":1,"nb":20,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"]],"b":[["NCBITaxon%3A1597","Lacticaseibacillus paracasei"],["NCBITaxon%3A1590","Lactiplantibacillus plantarum"],["NCBITaxon%3A1579","Lactobacillus acidophilus"],["NCBITaxon%3A891391","Lactobacillus acidophilus 30SC"],["NCBITaxon%3A525306","Lactobacillus acidophilus ATCC 4796"],["NCBITaxon%3A1421011","Lactobacillus acidophilus CFH"]]},{"id":"NCBITaxon:29488","l":"Photorhabdus luminescens","na":1,"nb":20,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A171438","Photorhabdus akhurstii"],["NCBITaxon%3A2934395","Photorhabdus akhurstii subsp. akhurstii"],["NCBITaxon%3A1004165","Photorhabdus caribbeanensis"],["NCBITaxon%3A1004166","Photorhabdus hainanensis"],["NCBITaxon%3A230088","Photorhabdus kayaii"],["NCBITaxon%3A768034","Photorhabdus kleinii"]]},{"id":"NCBITaxon:302911","l":"Bifidobacterium animalis subsp. lactis","na":1,"nb":20,"a":[["simulated-communities-habitatmech-bacdive-5fa4710934.html","Simulated-communities"]],"b":[["NCBITaxon%3A28025","Bifidobacterium animalis"],["NCBITaxon%3A302911","Bifidobacterium animalis subsp. lactis"],["NCBITaxon%3A442563","Bifidobacterium animalis subsp. lactis AD011"],["NCBITaxon%3A1365953","Bifidobacterium animalis subsp. lactis ATCC 27536"],["NCBITaxon%3A1167629","Bifidobacterium animalis subsp. lactis ATCC 27673"],["NCBITaxon%3A1365954","Bifidobacterium animalis subsp. lactis ATCC 27674"]]},{"id":"NCBITaxon:330214","l":"Nitrospira defluvii","na":20,"nb":1,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["activated-sludge-envo-00002046.html","activated sludge"],["aquatic-environment-envo-01000317.html","aquatic environment"],["archeological-site-envo-00000564.html","archeological site"],["cultivated-environment-envo-01000311.html","cultivated environment"]],"b":[["NCBITaxon%3A330214","Nitrospira defluvii"]]},{"id":"NCBITaxon:2050","l":"Mobiluncus","na":1,"nb":19,"a":[["heart-bto-0000562.html","heart"]],"b":[["NCBITaxon%3A2051","Mobiluncus curtisii"],["NCBITaxon%3A548479","Mobiluncus curtisii ATCC 43063"],["NCBITaxon%3A887326","Mobiluncus curtisii ATCC 51333"],["NCBITaxon%3A144177","Mobiluncus curtisii subsp. curtisii"],["NCBITaxon%3A585198","Mobiluncus curtisii subsp. curtisii ATCC 35241"],["NCBITaxon%3A144178","Mobiluncus holmesii"]]},{"id":"NCBITaxon:40041","l":"Streptococcus equi subsp. zooepidemicus","na":1,"nb":19,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["NCBITaxon%3A1336","Streptococcus equi"],["NCBITaxon%3A40041","Streptococcus equi subsp. zooepidemicus"],["NCBITaxon%3A1051072","Streptococcus equi subsp. zooepidemicus ATCC 35246"],["NCBITaxon%3A681573","Streptococcus equi subsp. zooepidemicus BHS5"],["NCBITaxon%3A1403449","Streptococcus equi subsp. zooepidemicus CY"],["NCBITaxon%3A553483","Streptococcus equi subsp. zooepidemicus H70"]]},{"id":"NCBITaxon:110321","l":"Sinorhizobium medicae","na":1,"nb":18,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A110321","Sinorhizobium medicae"],["NCBITaxon%3A1230619","Sinorhizobium medicae A321"],["NCBITaxon%3A1041148","Sinorhizobium medicae DI28"],["NCBITaxon%3A1230620","Sinorhizobium medicae KH36b"],["NCBITaxon%3A1230621","Sinorhizobium medicae KH36c"],["NCBITaxon%3A1230622","Sinorhizobium medicae KH36d"]]},{"id":"NCBITaxon:1462430","l":"Candidatus Nanohalarchaeota","na":1,"nb":18,"a":[["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A3138763","Asbonarchaeaceae archaeon (SeqCode)"],["NCBITaxon%3A3138746","Asbonarchaeum danakilense (SeqCode)"],["NCBITaxon%3A2987745","Candidatus Nanoanaerosalina archaeon"],["NCBITaxon%3A2987741","Candidatus Nanoanaerosalina halalkaliphila"],["NCBITaxon%3A2987742","Candidatus Nanohalalkaliarchaeum halalkaliphilum"],["NCBITaxon%3A2099673","Candidatus Nanohalarchaeota archaeon"]]},{"id":"NCBITaxon:158836","l":"Enterobacter hormaechei","na":1,"nb":18,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A3461408","Enterobacter hoffmannii subsp. nototheniae"],["NCBITaxon%3A158836","Enterobacter hormaechei"],["NCBITaxon%3A888063","Enterobacter hormaechei ATCC 49162"],["NCBITaxon%3A1812934","Enterobacter hormaechei subsp. hoffmannii"],["NCBITaxon%3A1333851","Enterobacter hormaechei subsp. hoffmannii ECNIH3"]]},{"id":"NCBITaxon:859","l":"Fusobacterium necrophorum","na":1,"nb":18,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A134605","Fusobacterium equinum"],["NCBITaxon%3A849","Fusobacterium gonidiaformans"],["NCBITaxon%3A859","Fusobacterium necrophorum"],["NCBITaxon%3A1441734","Fusobacterium necrophorum BFTR-1"],["NCBITaxon%3A1441736","Fusobacterium necrophorum BFTR-2"],["NCBITaxon%3A1441732","Fusobacterium necrophorum BL"]]},{"id":"NCBITaxon:1007","l":"Saprospira","na":1,"nb":17,"a":[["hemolymph-bto-0000572.html","hemolymph"]],"b":[["NCBITaxon%3A1008","Saprospira grandis"],["NCBITaxon%3A694433","Saprospira grandis DSM 2844"],["NCBITaxon%3A984262","Saprospira grandis str. Lewin"],["NCBITaxon%3A3100341","Saprospira sp."],["NCBITaxon%3A3023936","Saprospira sp. CCB-QB6"],["NCBITaxon%3A263635","Saprospira sp. CNJ451"]]},{"id":"NCBITaxon:135858","l":"Catenibacterium","na":1,"nb":17,"a":[["intestine-bto-0000648.html","intestine"]],"b":[["NCBITaxon%3A2764323","Catenibacterium faecis"],["NCBITaxon%3A100886","Catenibacterium mitsuokai"],["NCBITaxon%3A451640","Catenibacterium mitsuokai DSM 15897"],["NCBITaxon%3A3035606","Catenibacterium mitsuokai subsp. tridentinum"],["NCBITaxon%3A2049022","Catenibacterium sp."],["NCBITaxon%3A2292991","Catenibacterium sp. AM22-15"]]},{"id":"NCBITaxon:1767","l":"Mycobacterium intracellulare","na":1,"nb":17,"a":[["co-culture-habitatmech-bacdive-ff945d8a69.html","Co-culture"]],"b":[["NCBITaxon%3A1764","Mycobacterium avium"],["NCBITaxon%3A1767","Mycobacterium intracellulare"],["NCBITaxon%3A1299331","Mycobacterium intracellulare 1956"],["NCBITaxon%3A1160713","Mycobacterium intracellulare 3387"],["NCBITaxon%3A487521","Mycobacterium intracellulare ATCC 13950"],["NCBITaxon%3A1134473","Mycobacterium intracellulare H2"]]},{"id":"NCBITaxon:1829","l":"Rhodococcus rhodochrous","na":1,"nb":17,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A1872672","Azotobacter sp."],["NCBITaxon%3A36822","Gordonia rubripertincta"],["NCBITaxon%3A1824","Nocardia asteroides"],["NCBITaxon%3A37329","Nocardia farcinica"],["NCBITaxon%3A1833","Rhodococcus erythropolis"],["NCBITaxon%3A33008","Rhodococcus globerulus"]]},{"id":"NCBITaxon:114707","l":"uncultured Pseudomonas sp.","na":16,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["animal-house-envo-00003040.html","animal house"]],"b":[["NCBITaxon%3A114707","uncultured Pseudomonas sp."]]},{"id":"NCBITaxon:1292046","l":"Desulfobulbus sp. oral taxon 041 str. Dsb1-5","na":16,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["central-nervous-system-bto-0000227.html","central nervous system"],["colonic-mucosa-bto-0000271.html","colonic mucosa"],["epithelium-bto-0000416.html","epithelium"],["gingiva-bto-0000519.html","gingiva"],["hip-bto-0001457.html","hip"]],"b":[["NCBITaxon%3A1292046","Desulfobulbus sp. oral taxon 041 str. Dsb1-5"]]},{"id":"NCBITaxon:1409","l":"Bacillus sp. (in: firmicutes)","na":16,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["low-tide-zone-envo-00000319.html","low tide zone"],["organic-waste-material-envo-00002873.html","organic waste material"],["rhizosphere-envo-00005801.html","rhizosphere"],["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1409","Bacillus sp. (in: firmicutes)"]]},{"id":"NCBITaxon:1872627","l":"Archangium sp.","na":16,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["reservoir-envo-00000025.html","reservoir"],["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["NCBITaxon%3A1872627","Archangium sp."]]},{"id":"NCBITaxon:411485","l":"Faecalibacterium prausnitzii M21/2","na":16,"nb":1,"a":[["bay-envo-00000032.html","bay"],["black-smoker-envo-00000218.html","black smoker"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["saline-water-envo-00002010.html","saline water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"]],"b":[["NCBITaxon%3A411485","Faecalibacterium prausnitzii M21/2"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":1,"nb":16,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["NCBITaxon%3A1114880","Aeromonas australiensis"],["NCBITaxon%3A1264931","Flavobacterium acidificum"],["NCBITaxon%3A553","Pantoea ananatis"],["NCBITaxon%3A1419326","Pantoea ananatis 15320"],["NCBITaxon%3A932677","Pantoea ananatis AJ13355"],["NCBITaxon%3A1048262","Pantoea ananatis B1-9"]]},{"id":"NCBITaxon:636","l":"Edwardsiella tarda","na":1,"nb":16,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["NCBITaxon%3A1896336","Citrobacter sp."],["NCBITaxon%3A636","Edwardsiella tarda"],["NCBITaxon%3A1418112","Edwardsiella tarda 3-novo"],["NCBITaxon%3A1418111","Edwardsiella tarda 3P"],["NCBITaxon%3A667121","Edwardsiella tarda ATCC 15947 = NBRC 105688"],["NCBITaxon%3A500638","Edwardsiella tarda ATCC 23685"]]},{"id":"NCBITaxon:1585","l":"Lactobacillus delbrueckii subsp. bulgaricus","na":1,"nb":15,"a":[["pig-manure-envo-00003860.html","pig manure"]],"b":[["NCBITaxon%3A2775876","Lacticaseibacillus sp."],["NCBITaxon%3A1584","Lactobacillus delbrueckii"],["NCBITaxon%3A1585","Lactobacillus delbrueckii subsp. bulgaricus"],["NCBITaxon%3A353496","Lactobacillus delbrueckii subsp. bulgaricus 2038"],["NCBITaxon%3A390333","Lactobacillus delbrueckii subsp. bulgaricus ATCC 11842 = JCM 1002"],["NCBITaxon%3A321956","Lactobacillus delbrueckii subsp. bulgaricus ATCC BAA-365"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":1,"nb":15,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["NCBITaxon%3A175628","Gordonia paraffinivorans"],["NCBITaxon%3A1785","Mycobacterium sp."],["NCBITaxon%3A1772","Mycolicibacterium smegmatis"],["NCBITaxon%3A1455235","Mycolicibacterium smegmatis 30-MsmegS_ND_60_A"],["NCBITaxon%3A1455243","Mycolicibacterium smegmatis 31-MsmegS_CIP_60_A"],["NCBITaxon%3A1455251","Mycolicibacterium smegmatis 32-MsmegS_CIP_30_A"]]},{"id":"NCBITaxon:233189","l":"Anaerolinea","na":1,"nb":15,"a":[["crop-bto-0000301.html","crop"]],"b":[["NCBITaxon%3A1872519","Anaerolinea sp."],["NCBITaxon%3A1968532","Anaerolinea sp. 4484_236"],["NCBITaxon%3A511451","Anaerolinea sp. enrichment culture clone D2CL_Bac_16S_Clone24"],["NCBITaxon%3A1797237","Anaerolinea sp. RIFOXYB12_FULL_60_12"],["NCBITaxon%3A1674540","Anaerolinea sp. SCGC AB-790-B16"],["NCBITaxon%3A1674536","Anaerolinea sp. SCGC AB-790-K11"]]},{"id":"NCBITaxon:264","l":"Francisella tularensis subsp. novicida","na":1,"nb":15,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A984129","Francisella cf. novicida Fx1"],["NCBITaxon%3A676032","Francisella cf. tularensis subsp. novicida 3523"],["NCBITaxon%3A263","Francisella tularensis"],["NCBITaxon%3A264","Francisella tularensis subsp. novicida"],["NCBITaxon%3A1450527","Francisella tularensis subsp. novicida D9876"],["NCBITaxon%3A1452728","Francisella tularensis subsp. novicida F6168"]]},{"id":"NCBITaxon:301","l":"Ectopseudomonas oleovorans","na":1,"nb":15,"a":[["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A43263","Aquipseudomonas alcaligenes"],["NCBITaxon%3A301","Ectopseudomonas oleovorans"],["NCBITaxon%3A1453503","Ectopseudomonas oleovorans AD6"],["NCBITaxon%3A1182590","Ectopseudomonas oleovorans CECT 5344"],["NCBITaxon%3A1033992","Ectopseudomonas oleovorans MOIL14HWK12"],["NCBITaxon%3A468557","Ectopseudomonas oleovorans MTCC 5210"]]},{"id":"NCBITaxon:542","l":"Zymomonas mobilis","na":1,"nb":15,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A223958","Exiguobacterium oxidotolerans"],["NCBITaxon%3A1397699","Exiguobacterium oxidotolerans JCM 12280"],["NCBITaxon%3A542","Zymomonas mobilis"],["NCBITaxon%3A325472","Zymomonas mobilis subsp. francensis"],["NCBITaxon%3A120045","Zymomonas mobilis subsp. mobilis"],["NCBITaxon%3A555217","Zymomonas mobilis subsp. mobilis ATCC 10988"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":1,"nb":15,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["NCBITaxon%3A668","Aliivibrio fischeri"],["NCBITaxon%3A617136","Aliivibrio fischeri 1-C10"],["NCBITaxon%3A617138","Aliivibrio fischeri 9ZB36"],["NCBITaxon%3A1298605","Aliivibrio fischeri ATCC 7744 = JCM 18803 = DSM 507"],["NCBITaxon%3A1367486","Aliivibrio fischeri CB37"],["NCBITaxon%3A1367487","Aliivibrio fischeri EM17"]]},{"id":"NCBITaxon:83456","l":"Myxococcus virescens","na":15,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["feces-uberon-0001988.html","feces"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"]],"b":[["NCBITaxon%3A83456","Myxococcus virescens"]]},{"id":"NCBITaxon:106370","l":"Frankia casuarinae","na":14,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["river-envo-00000022.html","river"],["rhizosphere-envo-00005801.html","rhizosphere"],["root-nodule-bto-0001190.html","root nodule"],["biome-envo-00000428.html","biome"],["biotope-envo-00002036.html","biotope"]],"b":[["NCBITaxon%3A106370","Frankia casuarinae"]]},{"id":"NCBITaxon:134561","l":"Nocardioides sp. C190","na":14,"nb":1,"a":[["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["rhizosphere-envo-00005801.html","rhizosphere"],["biome-envo-00000428.html","biome"]],"b":[["NCBITaxon%3A134561","Nocardioides sp. C190"]]},{"id":"NCBITaxon:1408194","l":"Endomicrobium","na":1,"nb":14,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A3242313","Candidatus Endomicrobium embiratermitis"],["NCBITaxon%3A3242314","Candidatus Endomicrobium labiotermitis"],["NCBITaxon%3A3242315","Candidatus Endomicrobium macrotermitis"],["NCBITaxon%3A3242316","Candidatus Endomicrobium neocapritermitis"],["NCBITaxon%3A3242317","Candidatus Endomicrobium procryptotermitis"],["NCBITaxon%3A1795642","Candidatus Endomicrobium sp. HsTcC-Em16"]]},{"id":"NCBITaxon:2242","l":"Halobacterium salinarum","na":1,"nb":14,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["NCBITaxon%3A2242","Halobacterium salinarum"],["NCBITaxon%3A2597657","Halobacterium salinarum DSM 3754"],["NCBITaxon%3A64091","Halobacterium salinarum NRC-1"],["NCBITaxon%3A2886895","Halobacterium salinarum NRC-34001"],["NCBITaxon%3A478009","Halobacterium salinarum R1"],["NCBITaxon%3A2109941","Halobacterium salinarum str. WSR1 (ex H. Halobium)"]]},{"id":"NCBITaxon:511","l":"Alcaligenes faecalis","na":1,"nb":14,"a":[["foot-bto-0000476.html","foot"]],"b":[["NCBITaxon%3A134375","Achromobacter sp."],["NCBITaxon%3A511","Alcaligenes faecalis"],["NCBITaxon%3A1255592","Alcaligenes faecalis 2L10"],["NCBITaxon%3A32001","Alcaligenes faecalis subsp. faecalis"],["NCBITaxon%3A1218102","Alcaligenes faecalis subsp. faecalis NBRC 13111"],["NCBITaxon%3A1156918","Alcaligenes faecalis subsp. faecalis NCIB 8687"]]},{"id":"NCBITaxon:71864","l":"Herpetosiphon sp.","na":14,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["NCBITaxon%3A71864","Herpetosiphon sp."]]},{"id":"NCBITaxon:1227","l":"Nitrosococcus","na":1,"nb":13,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A133539","Nitrosococcus halophilus"],["NCBITaxon%3A472759","Nitrosococcus halophilus Nc 4"],["NCBITaxon%3A38146","Nitrosococcus nitrosus"],["NCBITaxon%3A1229","Nitrosococcus oceani"],["NCBITaxon%3A473788","Nitrosococcus oceani AFC27"],["NCBITaxon%3A323261","Nitrosococcus oceani ATCC 19707"]]},{"id":"NCBITaxon:150053","l":"Yersinia enterocolitica subsp. palearctica","na":1,"nb":13,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["NCBITaxon%3A630","Yersinia enterocolitica"],["NCBITaxon%3A150052","Yersinia enterocolitica subsp. enterocolitica"],["NCBITaxon%3A150053","Yersinia enterocolitica subsp. palearctica"],["NCBITaxon%3A994476","Yersinia enterocolitica subsp. palearctica 105.5R(r)"],["NCBITaxon%3A940287","Yersinia enterocolitica subsp. palearctica 556/8265"],["NCBITaxon%3A940288","Yersinia enterocolitica subsp. palearctica 647/5307"]]},{"id":"NCBITaxon:168695","l":"Salinispora tropica","na":1,"nb":13,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A168695","Salinispora tropica"],["NCBITaxon%3A1137247","Salinispora tropica CNB476"],["NCBITaxon%3A1136431","Salinispora tropica CNB536"],["NCBITaxon%3A369723","Salinispora tropica CNB-440"],["NCBITaxon%3A1137248","Salinispora tropica CNH898"],["NCBITaxon%3A1169198","Salinispora tropica CNR699"]]},{"id":"NCBITaxon:204516","l":"Phocaeicola massiliensis","na":1,"nb":13,"a":[["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["NCBITaxon%3A204516","Phocaeicola massiliensis"],["NCBITaxon%3A1121098","Phocaeicola massiliensis B84634 = Timone 84634 = DSM 17679 = JCM 13223"],["NCBITaxon%3A1338881","Phocaeicola massiliensis TS7.1-1.1"],["NCBITaxon%3A1338882","Phocaeicola massiliensis TS7.1-1.2"],["NCBITaxon%3A1338883","Phocaeicola massiliensis TS7.1-1.3"],["NCBITaxon%3A1333703","Phocaeicola massiliensis TS7.1_V2.1.1"]]},{"id":"NCBITaxon:28122","l":"Fibrobacter intestinalis","na":13,"nb":1,"a":[["bay-envo-00000032.html","bay"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["small-river-biome-envo-00000890.html","small river biome"],["water-body-envo-00000063.html","water body"]],"b":[["NCBITaxon%3A28122","Fibrobacter intestinalis"]]},{"id":"NCBITaxon:413497","l":"Cronobacter dublinensis","na":1,"nb":13,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["NCBITaxon%3A691816","Bacteroides rodentium"],["NCBITaxon%3A1236512","Bacteroides rodentium JCM 16496"],["NCBITaxon%3A413497","Cronobacter dublinensis"],["NCBITaxon%3A1208656","Cronobacter dublinensis 1210"],["NCBITaxon%3A1208661","Cronobacter dublinensis 582"],["NCBITaxon%3A3459541","Cronobacter dublinensis subsp. beijingensis"]]},{"id":"NCBITaxon:669","l":"Vibrio harveyi","na":1,"nb":13,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["NCBITaxon%3A342113","Burkholderia oklahomensis"],["NCBITaxon%3A669","Vibrio harveyi"],["NCBITaxon%3A673519","Vibrio harveyi 1DA3"],["NCBITaxon%3A1287887","Vibrio harveyi AOD131"],["NCBITaxon%3A1125980","Vibrio harveyi CAIM 1792"],["NCBITaxon%3A1352943","Vibrio harveyi E385"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":13,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["NCBITaxon%3A1773","Mycobacterium tuberculosis"],["NCBITaxon%3A83332","Mycobacterium tuberculosis H37Rv"],["NCBITaxon%3A747078","Mycobacterium tuberculosis H37Rv_2009"],["NCBITaxon%3A928249","Mycobacterium tuberculosis H37Rv_ideR_mutant_ST22"],["NCBITaxon%3A757417","Mycobacterium tuberculosis H37RvAE"],["NCBITaxon%3A757419","Mycobacterium tuberculosis H37RvCO"]]},{"id":"NCBITaxon:104268","l":"Tenacibaculum mesophilum","na":12,"nb":1,"a":[["bay-envo-00000032.html","bay"],["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"],["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A104268","Tenacibaculum mesophilum"]]},{"id":"NCBITaxon:126385","l":"Providencia alcalifaciens","na":1,"nb":12,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A126385","Providencia alcalifaciens"],["NCBITaxon%3A1256988","Providencia alcalifaciens 205/92"],["NCBITaxon%3A663916","Providencia alcalifaciens Ban1"],["NCBITaxon%3A1141661","Providencia alcalifaciens Dmel2"],["NCBITaxon%3A520999","Providencia alcalifaciens DSM 30120"],["NCBITaxon%3A1256987","Providencia alcalifaciens F90-2004"]]},{"id":"NCBITaxon:28026","l":"Bifidobacterium pseudocatenulatum","na":1,"nb":12,"a":[["breast-bto-0000149.html","breast"]],"b":[["NCBITaxon%3A1423","Bacillus subtilis"],["NCBITaxon%3A135461","Bacillus subtilis subsp. subtilis"],["NCBITaxon%3A1686","Bifidobacterium catenulatum"],["NCBITaxon%3A28026","Bifidobacterium pseudocatenulatum"],["NCBITaxon%3A1263060","Bifidobacterium pseudocatenulatum CAG:263"],["NCBITaxon%3A718253","Bifidobacterium pseudocatenulatum D2CA"]]},{"id":"NCBITaxon:28035","l":"Staphylococcus lugdunensis","na":1,"nb":12,"a":[["foot-bto-0000476.html","foot"]],"b":[["NCBITaxon%3A1308746","Staphylococcus lugdenensis ADL-114"],["NCBITaxon%3A1308747","Staphylococcus lugdenensis ADL-405"],["NCBITaxon%3A28035","Staphylococcus lugdunensis"],["NCBITaxon%3A883164","Staphylococcus lugdunensis ACS-027-V-Sch2"],["NCBITaxon%3A698737","Staphylococcus lugdunensis HKU09-01"],["NCBITaxon%3A525377","Staphylococcus lugdunensis M23590"]]},{"id":"NCBITaxon:53409","l":"Pseudomonas coronafaciens","na":1,"nb":12,"a":[["pc-12-cell-bto-0001009.html","PC-12 cell"]],"b":[["NCBITaxon%3A53409","Pseudomonas coronafaciens"],["NCBITaxon%3A129135","Pseudomonas coronafaciens pv. atropurpurea"],["NCBITaxon%3A235275","Pseudomonas coronafaciens pv. coronafaciens"],["NCBITaxon%3A251653","Pseudomonas coronafaciens pv. garcae"],["NCBITaxon%3A1515743","Pseudomonas coronafaciens pv. morceparum"],["NCBITaxon%3A235277","Pseudomonas coronafaciens pv. oryzae"]]},{"id":"NCBITaxon:56454","l":"Xanthomonas hortorum","na":1,"nb":12,"a":[["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A339","Xanthomonas campestris"],["NCBITaxon%3A56454","Xanthomonas hortorum"],["NCBITaxon%3A925777","Xanthomonas hortorum ATCC 19865"],["NCBITaxon%3A3075649","Xanthomonas hortorum NBC5720"],["NCBITaxon%3A487904","Xanthomonas hortorum pv. carotae"],["NCBITaxon%3A863365","Xanthomonas hortorum pv. carotae str. M081"]]},{"id":"NCBITaxon:58172","l":"Paenibacillus sp.","na":12,"nb":1,"a":[["factory-envo-01000536.html","factory"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A58172","Paenibacillus sp."]]},{"id":"NCBITaxon:58340","l":"Streptomyces lavendulae subsp. lavendulae","na":1,"nb":12,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A1894","Kitasatospora aureofaciens"],["NCBITaxon%3A1914","Streptomyces lavendulae"],["NCBITaxon%3A68190","Streptomyces lavendulae subsp. colombiensis"],["NCBITaxon%3A66421","Streptomyces lavendulae subsp. grasserius"],["NCBITaxon%3A58340","Streptomyces lavendulae subsp. lavendulae"],["NCBITaxon%3A1303691","Streptomyces lavendulae subsp. lavendulae JCM 4055"]]},{"id":"NCBITaxon:584","l":"Proteus mirabilis","na":1,"nb":12,"a":[["salivary-gland-bto-0001203.html","salivary gland"]],"b":[["NCBITaxon%3A584","Proteus mirabilis"],["NCBITaxon%3A1285374","Proteus mirabilis 1014"],["NCBITaxon%3A1308721","Proteus mirabilis ADL-319"],["NCBITaxon%3A1308722","Proteus mirabilis ADL-321"],["NCBITaxon%3A1308723","Proteus mirabilis ADL-401"],["NCBITaxon%3A525369","Proteus mirabilis ATCC 29906"]]},{"id":"NCBITaxon:61645","l":"Enterobacter asburiae","na":1,"nb":12,"a":[["bone-marrow-bto-0000141.html","bone marrow"]],"b":[["NCBITaxon%3A61645","Enterobacter asburiae"],["NCBITaxon%3A1330532","Enterobacter asburiae B1-3"],["NCBITaxon%3A1330533","Enterobacter asburiae B5-60"],["NCBITaxon%3A1442602","Enterobacter asburiae C1"],["NCBITaxon%3A1298604","Enterobacter asburiae JCM 6051"],["NCBITaxon%3A1421338","Enterobacter asburiae L1"]]},{"id":"NCBITaxon:106654","l":"Acinetobacter nosocomialis","na":1,"nb":11,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A981325","Acinetobacter genomosp. 13TU str. NCTC 8102"],["NCBITaxon%3A106654","Acinetobacter nosocomialis"],["NCBITaxon%3A1147131","Acinetobacter nosocomialis 28F"],["NCBITaxon%3A1183155","Acinetobacter nosocomialis Ab22222"],["NCBITaxon%3A1343071","Acinetobacter nosocomialis M2"],["NCBITaxon%3A1217670","Acinetobacter nosocomialis NIPH 2119"]]},{"id":"NCBITaxon:110319","l":"Nocardioides sp. CF8","na":11,"nb":1,"a":[["stream-envo-00000023.html","stream"],["bioreactor-envo-00002123.html","bioreactor"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["biofilm-material-envo-01000156.html","biofilm material"],["biotope-envo-00002036.html","biotope"],["desert-biome-envo-01000179.html","desert biome"]],"b":[["NCBITaxon%3A110319","Nocardioides sp. CF8"]]},{"id":"NCBITaxon:110933","l":"Leifsonia poae","na":11,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["plant-gall-po-0025626.html","plant gall"],["animal-associated-environment-envo-01001002.html","animal-associated environment"],["desert-biome-envo-01000179.html","desert biome"],["farm-envo-00000078.html","farm"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["NCBITaxon%3A110933","Leifsonia poae"]]},{"id":"NCBITaxon:120045","l":"Zymomonas mobilis subsp. mobilis","na":1,"nb":11,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A542","Zymomonas mobilis"],["NCBITaxon%3A120045","Zymomonas mobilis subsp. mobilis"],["NCBITaxon%3A555217","Zymomonas mobilis subsp. mobilis ATCC 10988"],["NCBITaxon%3A627344","Zymomonas mobilis subsp. mobilis ATCC 29191"],["NCBITaxon%3A1231376","Zymomonas mobilis subsp. mobilis ATCC 31822"],["NCBITaxon%3A1389958","Zymomonas mobilis subsp. mobilis IRMH52"]]},{"id":"NCBITaxon:1720","l":"Corynebacterium sp.","na":11,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"]],"b":[["NCBITaxon%3A1720","Corynebacterium sp."]]},{"id":"NCBITaxon:208962","l":"Escherichia albertii","na":1,"nb":11,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["NCBITaxon%3A208962","Escherichia albertii"],["NCBITaxon%3A550692","Escherichia albertii B090"],["NCBITaxon%3A550693","Escherichia albertii B156"],["NCBITaxon%3A1440052","Escherichia albertii KF1"],["NCBITaxon%3A1115511","Escherichia albertii NBRC 107761 = DSM 17582"],["NCBITaxon%3A502347","Escherichia albertii TW07627"]]},{"id":"NCBITaxon:231024","l":"Streptomyces africanus","na":11,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["research-facility-envo-00000469.html","research facility"],["activated-sludge-envo-00002046.html","activated sludge"],["village-biome-envo-01000246.html","village biome"],["area-of-tundra-envo-00000112.html","area of tundra"]],"b":[["NCBITaxon%3A231024","Streptomyces africanus"]]},{"id":"NCBITaxon:234267","l":"Candidatus Solibacter usitatus Ellin6076","na":11,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["pond-water-envo-00002228.html","pond water"],["aquatic-environment-envo-01000317.html","aquatic environment"],["desert-sand-envo-00005800.html","desert sand"],["environmental-material-envo-00010483.html","environmental material"],["mud-envo-01000001.html","mud"]],"b":[["NCBITaxon%3A234267","Candidatus Solibacter usitatus Ellin6076"]]},{"id":"NCBITaxon:409","l":"Methylobacterium sp.","na":11,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["air-conditioning-unit-envo-00002874.html","air conditioning unit"],["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A409","Methylobacterium sp."]]},{"id":"NCBITaxon:83560","l":"Chlamydia muridarum","na":1,"nb":11,"a":[["oviduct-bto-0000980.html","oviduct"]],"b":[["NCBITaxon%3A83560","Chlamydia muridarum"],["NCBITaxon%3A658600","Chlamydia muridarum MopnTet14"],["NCBITaxon%3A243161","Chlamydia muridarum str. Nigg"],["NCBITaxon%3A1434769","Chlamydia muridarum str. Nigg3"],["NCBITaxon%3A1434771","Chlamydia muridarum str. Nigg3 CMUT3-13"],["NCBITaxon%3A1434772","Chlamydia muridarum str. Nigg3 CMUT3-42"]]},{"id":"NCBITaxon:103855","l":"Bordetella hinzii","na":1,"nb":10,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A103855","Bordetella hinzii"],["NCBITaxon%3A1331255","Bordetella hinzii 1277"],["NCBITaxon%3A1331256","Bordetella hinzii 4161"],["NCBITaxon%3A1331257","Bordetella hinzii 5132"],["NCBITaxon%3A1392838","Bordetella hinzii ATCC 51730"],["NCBITaxon%3A398517","Bordetella hinzii BC-306"]]},{"id":"NCBITaxon:1058","l":"Thiocapsa roseopersicina","na":10,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["saline-marsh-envo-00000054.html","saline marsh"],["river-envo-00000022.html","river"],["waste-water-envo-00002001.html","waste water"],["environmental-feature-envo-00002297.html","environmental feature"],["stromatolite-mat-envo-00002157.html","stromatolite mat"]],"b":[["NCBITaxon%3A1058","Thiocapsa roseopersicina"]]},{"id":"NCBITaxon:108028","l":"Arcanobacterium pluranimalium","na":10,"nb":1,"a":[["river-envo-00000022.html","river"],["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"],["biofilm-material-envo-01000156.html","biofilm material"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A108028","Arcanobacterium pluranimalium"]]},{"id":"NCBITaxon:1205679","l":"Bifidobacterium longum subsp. longum CECT 7347","na":10,"nb":1,"a":[["caco-2-cell-bto-0000195.html","CACO-2 cell"],["enterocyte-bto-0000398.html","enterocyte"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["jejunum-bto-0000657.html","jejunum"],["leukocyte-bto-0000751.html","leukocyte"]],"b":[["NCBITaxon%3A1205679","Bifidobacterium longum subsp. longum CECT 7347"]]},{"id":"NCBITaxon:1338","l":"Streptococcus intermedius","na":1,"nb":10,"a":[["geographic-feature-envo-00000000.html","geographic feature"]],"b":[["NCBITaxon%3A1328","Streptococcus anginosus"],["NCBITaxon%3A1302","Streptococcus gordonii"],["NCBITaxon%3A1338","Streptococcus intermedius"],["NCBITaxon%3A862967","Streptococcus intermedius B196"],["NCBITaxon%3A1248420","Streptococcus intermedius BA1"],["NCBITaxon%3A862966","Streptococcus intermedius C270"]]},{"id":"NCBITaxon:1506","l":"Clostridium sp.","na":10,"nb":1,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["animal-waste-material-envo-00002276.html","animal waste material"],["laboratory-facility-envo-01001406.html","laboratory facility"],["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["NCBITaxon%3A1506","Clostridium sp."]]},{"id":"NCBITaxon:1855","l":"Frankia sp.","na":10,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["surface-water-envo-00002042.html","surface water"],["water-body-envo-00000063.html","water body"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["cultivated-environment-envo-01000311.html","cultivated environment"],["area-of-tundra-envo-00000112.html","area of tundra"]],"b":[["NCBITaxon%3A1855","Frankia sp."]]},{"id":"NCBITaxon:28118","l":"Odoribacter splanchnicus","na":1,"nb":10,"a":[["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["NCBITaxon%3A28118","Odoribacter splanchnicus"],["NCBITaxon%3A1263090","Odoribacter splanchnicus CAG:14"],["NCBITaxon%3A709991","Odoribacter splanchnicus DSM 20712"],["NCBITaxon%3A1339535","Odoribacter splanchnicus TSDC10.2-1.1"],["NCBITaxon%3A1339536","Odoribacter splanchnicus TSDC17.1-1.1"],["NCBITaxon%3A1339537","Odoribacter splanchnicus TSDC17.2-1.1"]]},{"id":"NCBITaxon:2926447","l":"Marinispora","na":1,"nb":10,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A562918","Marinispora sp. CNQ-140"],["NCBITaxon%3A563581","Streptomyces sp. MAR2 13647N"],["NCBITaxon%3A563582","Streptomyces sp. MAR2 13665F"],["NCBITaxon%3A563583","Streptomyces sp. MAR2 13668C"],["NCBITaxon%3A378617","Streptomyces sp. MAR2 CNJ962 PL04"],["NCBITaxon%3A378618","Streptomyces sp. MAR2 CNR872 PL04"]]},{"id":"NCBITaxon:293387","l":"Bacillus altitudinis","na":1,"nb":10,"a":[["resting-cell-bto-0001170.html","resting cell"]],"b":[["NCBITaxon%3A293387","Bacillus altitudinis"],["NCBITaxon%3A1255572","Bacillus altitudinis 263"],["NCBITaxon%3A1178544","Bacillus altitudinis 41KF2b"],["NCBITaxon%3A1326972","Bacillus altitudinis A23-8"],["NCBITaxon%3A1326971","Bacillus altitudinis C101"],["NCBITaxon%3A1326970","Bacillus altitudinis C16B11"]]},{"id":"NCBITaxon:38304","l":"Corynebacterium tuberculostearicum","na":1,"nb":10,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["NCBITaxon%3A38284","Corynebacterium accolens"],["NCBITaxon%3A1736004","Corynebacterium cf. tuberculostearicum 1237_CAUR"],["NCBITaxon%3A1736005","Corynebacterium cf. tuberculostearicum 620_CAUR"],["NCBITaxon%3A1736006","Corynebacterium cf. tuberculostearicum 911_CAUR"],["NCBITaxon%3A38287","Corynebacterium fastidiosum"],["NCBITaxon%3A1720","Corynebacterium sp."]]},{"id":"NCBITaxon:439334","l":"Mycobacterium avium subsp. hominissuis","na":1,"nb":10,"a":[["lymph-node-bto-0000784.html","lymph node"]],"b":[["NCBITaxon%3A439334","Mycobacterium avium subsp. hominissuis"],["NCBITaxon%3A1402966","Mycobacterium avium subsp. hominissuis 100"],["NCBITaxon%3A1402967","Mycobacterium avium subsp. hominissuis 101"],["NCBITaxon%3A1391990","Mycobacterium avium subsp. hominissuis 10-4249"],["NCBITaxon%3A1381559","Mycobacterium avium subsp. hominissuis 10-5606"],["NCBITaxon%3A1160712","Mycobacterium avium subsp. hominissuis 3388"]]},{"id":"NCBITaxon:109263","l":"Halothiobacillus kellyi","na":9,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"],["small-river-biome-envo-00000890.html","small river biome"]],"b":[["NCBITaxon%3A109263","Halothiobacillus kellyi"]]},{"id":"NCBITaxon:111770","l":"Thiothrix fructosivorans","na":9,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"],["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A111770","Thiothrix fructosivorans"]]},{"id":"NCBITaxon:112235","l":"Neochlamydia hartmannellae","na":9,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["rhizosphere-envo-00005801.html","rhizosphere"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["biome-envo-00000428.html","biome"],["desert-biome-envo-01000179.html","desert biome"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"]],"b":[["NCBITaxon%3A112235","Neochlamydia hartmannellae"]]},{"id":"NCBITaxon:1134687","l":"Klebsiella michiganensis","na":1,"nb":9,"a":[["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"]],"b":[["NCBITaxon%3A1134687","Klebsiella michiganensis"],["NCBITaxon%3A1191061","Klebsiella michiganensis E718"],["NCBITaxon%3A1416754","Klebsiella michiganensis H1g"],["NCBITaxon%3A1308980","Klebsiella michiganensis HKOPL1"],["NCBITaxon%3A1006551","Klebsiella michiganensis KCTC 1686"],["NCBITaxon%3A290336","Klebsiella michiganensis M5al"]]},{"id":"NCBITaxon:1155385","l":"Proteiniclasticum","na":1,"nb":9,"a":[["urine-bto-0001419.html","urine"]],"b":[["NCBITaxon%3A2817862","Proteiniclasticum aestuarii"],["NCBITaxon%3A398199","Proteiniclasticum ruminis"],["NCBITaxon%3A1410668","Proteiniclasticum ruminis DSM 24773"],["NCBITaxon%3A2804028","Proteiniclasticum sediminis"],["NCBITaxon%3A2053595","Proteiniclasticum sp."],["NCBITaxon%3A3374101","Proteiniclasticum sp. C24MP"]]},{"id":"NCBITaxon:1599","l":"Latilactobacillus sakei","na":1,"nb":9,"a":[["research-facility-envo-00000469.html","research facility"]],"b":[["NCBITaxon%3A1599","Latilactobacillus sakei"],["NCBITaxon%3A1381395","Latilactobacillus sakei dgh6"],["NCBITaxon%3A1634","Latilactobacillus sakei L45"],["NCBITaxon%3A214325","Latilactobacillus sakei subsp. carnosus"],["NCBITaxon%3A525363","Latilactobacillus sakei subsp. carnosus DSM 15831"],["NCBITaxon%3A214326","Latilactobacillus sakei subsp. sakei"]]},{"id":"NCBITaxon:1604","l":"Lactobacillus amylovorus","na":1,"nb":9,"a":[["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A1604","Lactobacillus amylovorus"],["NCBITaxon%3A1263084","Lactobacillus amylovorus CAG:719"],["NCBITaxon%3A1423723","Lactobacillus amylovorus DSM 20531"],["NCBITaxon%3A695562","Lactobacillus amylovorus GRL1118"],["NCBITaxon%3A695560","Lactobacillus amylovorus GRL 1112"],["NCBITaxon%3A695561","Lactobacillus amylovorus GRL 1115"]]},{"id":"NCBITaxon:1667","l":"Arthrobacter sp.","na":9,"nb":1,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["leaf-po-0025034.html","leaf"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["NCBITaxon%3A1667","Arthrobacter sp."]]},{"id":"NCBITaxon:1768","l":"Mycobacterium kansasii","na":1,"nb":9,"a":[["liquid-water-envo-00002006.html","liquid water"]],"b":[["NCBITaxon%3A1768","Mycobacterium kansasii"],["NCBITaxon%3A1299326","Mycobacterium kansasii 662"],["NCBITaxon%3A1299327","Mycobacterium kansasii 732"],["NCBITaxon%3A1299328","Mycobacterium kansasii 824"],["NCBITaxon%3A557599","Mycobacterium kansasii ATCC 12478"],["NCBITaxon%3A1451191","Mycobacterium kansasii Z61"]]},{"id":"NCBITaxon:1812935","l":"Enterobacter roggenkampii","na":1,"nb":9,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A299767","Enterobacter ludwigii"],["NCBITaxon%3A1812935","Enterobacter roggenkampii"],["NCBITaxon%3A1439326","Enterobacter roggenkampii CHS 79"],["NCBITaxon%3A1334630","Enterobacter roggenkampii EC_38VIM1"],["NCBITaxon%3A1329832","Enterobacter roggenkampii MGH 34"]]},{"id":"NCBITaxon:1898207","l":"Clostridiales bacterium","na":1,"nb":9,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1898207","Clostridiales bacterium"],["NCBITaxon%3A3070003","Clostridiales bacterium T6-6.105"],["NCBITaxon%3A3070004","Clostridiales bacterium T6-6.35"],["NCBITaxon%3A3070005","Clostridiales bacterium T6-6.39"],["NCBITaxon%3A3070006","Clostridiales bacterium T6-7.35"],["NCBITaxon%3A3070007","Clostridiales bacterium T6-7.60"]]},{"id":"NCBITaxon:192222","l":"Campylobacter jejuni subsp. jejuni NCTC 11168 = ATCC 700819","na":1,"nb":9,"a":[["flagellate-bto-0000464.html","flagellate"]],"b":[["NCBITaxon%3A197","Campylobacter jejuni"],["NCBITaxon%3A192222","Campylobacter jejuni subsp. jejuni NCTC 11168 = ATCC 700819"],["NCBITaxon%3A1211776","Campylobacter jejuni subsp. jejuni NCTC 11168-BN148"],["NCBITaxon%3A1385724","Campylobacter jejuni subsp. jejuni NCTC 11168-GSv"],["NCBITaxon%3A1385720","Campylobacter jejuni subsp. jejuni NCTC 11168-K12E5"],["NCBITaxon%3A1385723","Campylobacter jejuni subsp. jejuni NCTC 11168-Kf1"]]},{"id":"NCBITaxon:199","l":"Campylobacter concisus","na":1,"nb":9,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["NCBITaxon%3A199","Campylobacter concisus"],["NCBITaxon%3A360104","Campylobacter concisus 13826"],["NCBITaxon%3A1243032","Campylobacter concisus ATCC 51561"],["NCBITaxon%3A1242969","Campylobacter concisus ATCC 51562"],["NCBITaxon%3A1242967","Campylobacter concisus UNSW1"],["NCBITaxon%3A1242965","Campylobacter concisus UNSW2"]]},{"id":"NCBITaxon:29539","l":"Thermoleophilum album","na":9,"nb":1,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"],["desert-sand-envo-00005800.html","desert sand"],["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"],["village-biome-envo-01000246.html","village biome"]],"b":[["NCBITaxon%3A29539","Thermoleophilum album"]]},{"id":"NCBITaxon:298","l":"Pseudomonas marginalis","na":1,"nb":9,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["NCBITaxon%3A129847","Pseudomonas grimontii"],["NCBITaxon%3A298","Pseudomonas marginalis"],["NCBITaxon%3A1198318","Pseudomonas marginalis ICMP 11289"],["NCBITaxon%3A1198317","Pseudomonas marginalis ICMP 9505"],["NCBITaxon%3A69646","Pseudomonas marginalis pv. alfalfae"],["NCBITaxon%3A97473","Pseudomonas marginalis pv. marginalis"]]},{"id":"NCBITaxon:32019","l":"Campylobacter fetus subsp. fetus","na":1,"nb":9,"a":[["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["NCBITaxon%3A196","Campylobacter fetus"],["NCBITaxon%3A32019","Campylobacter fetus subsp. fetus"],["NCBITaxon%3A1240980","Campylobacter fetus subsp. fetus 04/554"],["NCBITaxon%3A360106","Campylobacter fetus subsp. fetus 82-40"],["NCBITaxon%3A1273268","Campylobacter fetus subsp. fetus BT 10/98"],["NCBITaxon%3A1273130","Campylobacter fetus subsp. fetus cff110800-21-2"]]},{"id":"NCBITaxon:39152","l":"Methanococcus maripaludis","na":1,"nb":9,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A39152","Methanococcus maripaludis"],["NCBITaxon%3A402880","Methanococcus maripaludis C5"],["NCBITaxon%3A444158","Methanococcus maripaludis C6"],["NCBITaxon%3A426368","Methanococcus maripaludis C7"],["NCBITaxon%3A637914","Methanococcus maripaludis KA1"],["NCBITaxon%3A637915","Methanococcus maripaludis OS7"]]},{"id":"NCBITaxon:40215","l":"Acinetobacter junii","na":1,"nb":9,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["NCBITaxon%3A471","Acinetobacter calcoaceticus"],["NCBITaxon%3A40215","Acinetobacter junii"],["NCBITaxon%3A1217666","Acinetobacter junii CIP 107470 = MTCC 11364"],["NCBITaxon%3A1217664","Acinetobacter junii CIP 64.5"],["NCBITaxon%3A1217665","Acinetobacter junii NIPH 182"],["NCBITaxon%3A575587","Acinetobacter junii SH205"]]},{"id":"NCBITaxon:44454","l":"Mycobacterium avium subsp. avium","na":1,"nb":9,"a":[["tuberculosis-habitatmech-bacdive-e5d21f85b7.html","Tuberculosis"]],"b":[["NCBITaxon%3A1764","Mycobacterium avium"],["NCBITaxon%3A44454","Mycobacterium avium subsp. avium"],["NCBITaxon%3A1391991","Mycobacterium avium subsp. avium 10-9275"],["NCBITaxon%3A1391992","Mycobacterium avium subsp. avium 11-4751"],["NCBITaxon%3A1299330","Mycobacterium avium subsp. avium 2285 (R)"],["NCBITaxon%3A1299329","Mycobacterium avium subsp. avium 2285 (S)"]]},{"id":"NCBITaxon:80866","l":"Delftia acidovorans","na":1,"nb":9,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A1872122","Acidovorax sp."],["NCBITaxon%3A80866","Delftia acidovorans"],["NCBITaxon%3A883100","Delftia acidovorans CCUG 15835"],["NCBITaxon%3A883101","Delftia acidovorans CCUG 274B"],["NCBITaxon%3A1218107","Delftia acidovorans NBRC 14950"],["NCBITaxon%3A1255679","Delftia acidovorans PCA12"]]},{"id":"NCBITaxon:83462","l":"Corallococcus exiguus","na":9,"nb":1,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["feces-uberon-0001988.html","feces"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"]],"b":[["NCBITaxon%3A83462","Corallococcus exiguus"]]},{"id":"NCBITaxon:911092","l":"Caldanaerobacter subterraneus","na":1,"nb":9,"a":[["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A911092","Caldanaerobacter subterraneus"],["NCBITaxon%3A3055846","Caldanaerobacter subterraneus subsp. keratinolyticus"],["NCBITaxon%3A109807","Caldanaerobacter subterraneus subsp. pacificus"],["NCBITaxon%3A391606","Caldanaerobacter subterraneus subsp. pacificus DSM 12653"],["NCBITaxon%3A111823","Caldanaerobacter subterraneus subsp. subterraneus"],["NCBITaxon%3A119072","Caldanaerobacter subterraneus subsp. tengcongensis"]]},{"id":"NCBITaxon:1074","l":"Rhodoblastus acidophilus","na":8,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"],["liquid-water-envo-00002006.html","liquid water"],["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["rhizosphere-envo-00005801.html","rhizosphere"]],"b":[["NCBITaxon%3A1074","Rhodoblastus acidophilus"]]},{"id":"NCBITaxon:109166","l":"Desulfofrigus","na":1,"nb":8,"a":[["hemolymph-bto-0000572.html","hemolymph"]],"b":[["NCBITaxon%3A84983","Desulfofrigus fragile"],["NCBITaxon%3A84982","Desulfofrigus oceanense"],["NCBITaxon%3A449291","Desulfofrigus sp. HRS-La3x"],["NCBITaxon%3A265931","Desulfofrigus sp. J152"],["NCBITaxon%3A303210","Desulfofrigus sp. NA201"],["NCBITaxon%3A303200","Desulfofrigus sp. NB81"]]},{"id":"NCBITaxon:115433","l":"Amycolatopsis sacchari","na":8,"nb":1,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["factory-envo-01000536.html","factory"],["desert-biome-envo-01000179.html","desert biome"],["grassland-soil-envo-00005750.html","grassland soil"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"]],"b":[["NCBITaxon%3A115433","Amycolatopsis sacchari"]]},{"id":"NCBITaxon:1254439","l":"Bifidobacterium thermophilum RBL67","na":8,"nb":1,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"],["epithelium-bto-0000416.html","epithelium"],["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"],["ht-29-cell-bto-0000182.html","HT-29 cell"],["ht-29-mtx-cell-bto-0001565.html","HT-29-MTX cell"],["left-colon-bto-0000646.html","left colon"]],"b":[["NCBITaxon%3A1254439","Bifidobacterium thermophilum RBL67"]]},{"id":"NCBITaxon:1272","l":"Kocuria varians","na":1,"nb":8,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A71999","Kocuria palustris"],["NCBITaxon%3A72000","Kocuria rhizophila"],["NCBITaxon%3A378753","Kocuria rhizophila DC2201"],["NCBITaxon%3A1871328","Kocuria sp."],["NCBITaxon%3A1272","Kocuria varians"],["NCBITaxon%3A1255672","Kocuria varians Mu208"]]},{"id":"NCBITaxon:1486246","l":"Halomonas sp.","na":8,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["saline-water-body-envo-01001319.html","saline water body"],["laboratory-facility-envo-01001406.html","laboratory facility"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["NCBITaxon%3A1486246","Halomonas sp."]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":8,"a":[["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["NCBITaxon%3A1515","Acetivibrio thermocellus"],["NCBITaxon%3A1138384","Acetivibrio thermocellus AD2"],["NCBITaxon%3A203119","Acetivibrio thermocellus ATCC 27405"],["NCBITaxon%3A1349417","Acetivibrio thermocellus BC1"],["NCBITaxon%3A637887","Acetivibrio thermocellus DSM 1313"],["NCBITaxon%3A572545","Acetivibrio thermocellus DSM 2360"]]},{"id":"NCBITaxon:1694","l":"Bifidobacterium pseudolongum","na":1,"nb":8,"a":[["ileum-bto-0000620.html","ileum"]],"b":[["NCBITaxon%3A35760","Bifidobacterium choerinum"],["NCBITaxon%3A1694","Bifidobacterium pseudolongum"],["NCBITaxon%3A1280701","Bifidobacterium pseudolongum AGR2145"],["NCBITaxon%3A1447715","Bifidobacterium pseudolongum PV8-2"],["NCBITaxon%3A1690","Bifidobacterium pseudolongum subsp. globosum"],["NCBITaxon%3A1410605","Bifidobacterium pseudolongum subsp. globosum DSM 20092"]]},{"id":"NCBITaxon:1732","l":"Eubacterium oxidoreducens","na":8,"nb":1,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["animal-litter-envo-00002191.html","animal litter"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["environmental-feature-envo-00002297.html","environmental feature"],["mud-envo-01000001.html","mud"]],"b":[["NCBITaxon%3A1732","Eubacterium oxidoreducens"]]},{"id":"NCBITaxon:1744","l":"Propionibacterium freudenreichii","na":1,"nb":8,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A1591","Lactobacillus sp."],["NCBITaxon%3A1744","Propionibacterium freudenreichii"],["NCBITaxon%3A66712","Propionibacterium freudenreichii subsp. freudenreichii"],["NCBITaxon%3A1408888","Propionibacterium freudenreichii subsp. freudenreichii ITG P20"],["NCBITaxon%3A1219357","Propionibacterium freudenreichii subsp. freudenreichii NBRC 12424"],["NCBITaxon%3A1752","Propionibacterium freudenreichii subsp. shermanii"]]},{"id":"NCBITaxon:196162","l":"Nocardioides sp. JS614","na":8,"nb":1,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["oil-spill-envo-00002061.html","oil spill"],["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A196162","Nocardioides sp. JS614"]]},{"id":"NCBITaxon:28125","l":"Prevotella bivia","na":1,"nb":8,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["NCBITaxon%3A28125","Prevotella bivia"],["NCBITaxon%3A1115806","Prevotella bivia B11"],["NCBITaxon%3A1287476","Prevotella bivia DNF00188"],["NCBITaxon%3A1401068","Prevotella bivia DNF00320"],["NCBITaxon%3A1401072","Prevotella bivia DNF00650"],["NCBITaxon%3A868129","Prevotella bivia DSM 20514"]]},{"id":"NCBITaxon:300","l":"Ectopseudomonas mendocina","na":1,"nb":8,"a":[["liquid-water-envo-00002006.html","liquid water"]],"b":[["NCBITaxon%3A300","Ectopseudomonas mendocina"],["NCBITaxon%3A1197721","Ectopseudomonas mendocina DLHK"],["NCBITaxon%3A1390370","Ectopseudomonas mendocina EGD-AQ5"],["NCBITaxon%3A1215108","Ectopseudomonas mendocina NBRC 14162"],["NCBITaxon%3A1001585","Ectopseudomonas mendocina NK-01"],["NCBITaxon%3A1225174","Ectopseudomonas mendocina S5.2"]]},{"id":"NCBITaxon:33967","l":"Leuconostoc mesenteroides subsp. mesenteroides","na":1,"nb":8,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"]],"b":[["NCBITaxon%3A33964","Leuconostoc citreum"],["NCBITaxon%3A1245","Leuconostoc mesenteroides"],["NCBITaxon%3A33967","Leuconostoc mesenteroides subsp. mesenteroides"],["NCBITaxon%3A203120","Leuconostoc mesenteroides subsp. mesenteroides ATCC 8293"],["NCBITaxon%3A1107880","Leuconostoc mesenteroides subsp. mesenteroides J18"],["NCBITaxon%3A889970","Leuconostoc mesenteroides subsp. mesenteroides Y110"]]},{"id":"NCBITaxon:37734","l":"Enterococcus casseliflavus","na":1,"nb":8,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["NCBITaxon%3A37734","Enterococcus casseliflavus"],["NCBITaxon%3A1259825","Enterococcus casseliflavus 14-MB-W-14"],["NCBITaxon%3A888066","Enterococcus casseliflavus ATCC 12755"],["NCBITaxon%3A1158603","Enterococcus casseliflavus ATCC 49996"],["NCBITaxon%3A565654","Enterococcus casseliflavus EC10"],["NCBITaxon%3A565655","Enterococcus casseliflavus EC20"]]},{"id":"NCBITaxon:488","l":"Neisseria mucosa","na":1,"nb":8,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["NCBITaxon%3A496","Neisseria macacae"],["NCBITaxon%3A997348","Neisseria macacae ATCC 33926"],["NCBITaxon%3A488","Neisseria mucosa"],["NCBITaxon%3A546266","Neisseria mucosa ATCC 25996"],["NCBITaxon%3A435832","Neisseria mucosa C102"],["NCBITaxon%3A33053","Neisseria perflava"]]},{"id":"NCBITaxon:51671","l":"Microbacterium sp.","na":8,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"]],"b":[["NCBITaxon%3A51671","Microbacterium sp."]]},{"id":"NCBITaxon:726","l":"Haemophilus haemolyticus","na":1,"nb":8,"a":[["trunk-uberon-0002100.html","trunk"]],"b":[["NCBITaxon%3A726","Haemophilus haemolyticus"],["NCBITaxon%3A1095742","Haemophilus haemolyticus HK386"],["NCBITaxon%3A1028802","Haemophilus haemolyticus M19107"],["NCBITaxon%3A1028803","Haemophilus haemolyticus M19501"],["NCBITaxon%3A1028804","Haemophilus haemolyticus M21127"],["NCBITaxon%3A1028805","Haemophilus haemolyticus M21621"]]},{"id":"NCBITaxon:94625","l":"Brucella intermedia","na":1,"nb":8,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["NCBITaxon%3A94625","Brucella intermedia"],["NCBITaxon%3A1337887","Brucella intermedia 229E"],["NCBITaxon%3A1444311","Brucella intermedia 2745-2"],["NCBITaxon%3A1328308","Brucella intermedia CCUG 57381"],["NCBITaxon%3A2975438","Brucella intermedia GD04153"],["NCBITaxon%3A903525","Brucella intermedia J2"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":7,"nb":1,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["farm-envo-00000078.html","farm"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A101510","Rhodococcus jostii RHA1"]]},{"id":"NCBITaxon:1044","l":"Erythrobacter longus","na":7,"nb":1,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["small-river-biome-envo-00000890.html","small river biome"],["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["biofilm-material-envo-01000156.html","biofilm material"]],"b":[["NCBITaxon%3A1044","Erythrobacter longus"]]},{"id":"NCBITaxon:114615","l":"Bradyrhizobium sp. ORS 278","na":7,"nb":1,"a":[["river-envo-00000022.html","river"],["bacteroid-bto-0000109.html","bacteroid"],["root-nodule-bto-0001190.html","root nodule"],["stem-nodule-bto-0001816.html","stem nodule"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A114615","Bradyrhizobium sp. ORS 278"]]},{"id":"NCBITaxon:1261128","l":"Pantoea agglomerans 299R","na":7,"nb":1,"a":[["cuticle-bto-0001600.html","cuticle"],["epidermal-cell-bto-0001470.html","epidermal cell"],["epidermis-bto-0000404.html","epidermis"],["lateral-root-bto-0005441.html","lateral root"],["root-tip-bto-0001191.html","root tip"],["secretory-trichome-bto-0003799.html","secretory trichome"]],"b":[["NCBITaxon%3A1261128","Pantoea agglomerans 299R"]]},{"id":"NCBITaxon:1267","l":"Sarcina ventriculi","na":7,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["NCBITaxon%3A1267","Sarcina ventriculi"]]},{"id":"NCBITaxon:1346","l":"Streptococcus iniae","na":1,"nb":7,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"]],"b":[["NCBITaxon%3A230495","Reinekea marinisedimentorum"],["NCBITaxon%3A1346","Streptococcus iniae"],["NCBITaxon%3A386894","Streptococcus iniae 9117"],["NCBITaxon%3A1273539","Streptococcus iniae IUSA1"],["NCBITaxon%3A1260129","Streptococcus iniae KCTC 11634BP"],["NCBITaxon%3A1318633","Streptococcus iniae SF1"]]},{"id":"NCBITaxon:1392869","l":"Escherichia coli K1","na":7,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["brain-bto-0000142.html","brain"],["brain-cell-line-bto-0000255.html","brain cell line"],["caco-2-cell-bto-0000195.html","CACO-2 cell"],["macrophage-bto-0000801.html","macrophage"],["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392869","Escherichia coli K1"]]},{"id":"NCBITaxon:152","l":"Zuelzera stenostrepta","na":7,"nb":1,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["low-tide-zone-envo-00000319.html","low tide zone"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["cultivated-environment-envo-01000311.html","cultivated environment"],["mud-envo-01000001.html","mud"]],"b":[["NCBITaxon%3A152","Zuelzera stenostrepta"]]},{"id":"NCBITaxon:156","l":"Teretinema zuelzerae","na":7,"nb":1,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["cultivated-environment-envo-01000311.html","cultivated environment"],["mud-envo-01000001.html","mud"]],"b":[["NCBITaxon%3A156","Teretinema zuelzerae"]]},{"id":"NCBITaxon:159087","l":"Dechloromonas aromatica RCB","na":7,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["large-river-biome-envo-00000887.html","large river biome"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"],["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A159087","Dechloromonas aromatica RCB"]]},{"id":"NCBITaxon:1686","l":"Bifidobacterium catenulatum","na":1,"nb":7,"a":[["catheter-device-ncit-c50344.html","Catheter Device"]],"b":[["NCBITaxon%3A1686","Bifidobacterium catenulatum"],["NCBITaxon%3A566552","Bifidobacterium catenulatum DSM 16992 = JCM 1194 = LMG 11043"],["NCBITaxon%3A2981616","Bifidobacterium catenulatum subsp. catenulatum"],["NCBITaxon%3A630129","Bifidobacterium catenulatum subsp. kashiwanohense"],["NCBITaxon%3A1150460","Bifidobacterium catenulatum subsp. kashiwanohense JCM 15439 = DSM 21854"],["NCBITaxon%3A3692808","Bifidobacterium catenulatum subsp. puerorum"]]},{"id":"NCBITaxon:1876","l":"Micromonospora sp.","na":7,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["marine-water-body-envo-00001999.html","marine water body"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["sludge-envo-00002044.html","sludge"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["NCBITaxon%3A1876","Micromonospora sp."]]},{"id":"NCBITaxon:1908","l":"Streptomyces globisporus","na":1,"nb":7,"a":[["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A332582","Streptomyces flavofuscus"],["NCBITaxon%3A1908","Streptomyces globisporus"],["NCBITaxon%3A1172567","Streptomyces globisporus C-1027"],["NCBITaxon%3A66858","Streptomyces globisporus subsp. globisporus"],["NCBITaxon%3A1522106","Streptomyces globisporus subsp. griseus"]]},{"id":"NCBITaxon:1935","l":"Streptomyces violaceoruber","na":1,"nb":7,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A67291","Streptomyces cyanocolor"],["NCBITaxon%3A80860","Streptomyces cyanogenus"],["NCBITaxon%3A1916","Streptomyces lividans"],["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A68277","Streptomyces tricolor"]]},{"id":"NCBITaxon:199684","l":"uncultured Bradyrhizobium sp.","na":7,"nb":1,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"],["water-scum-envo-00005794.html","water scum"],["area-of-tundra-envo-00000112.html","area of tundra"],["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"]],"b":[["NCBITaxon%3A199684","uncultured Bradyrhizobium sp."]]},{"id":"NCBITaxon:2051","l":"Mobiluncus curtisii","na":1,"nb":7,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["NCBITaxon%3A2051","Mobiluncus curtisii"],["NCBITaxon%3A548479","Mobiluncus curtisii ATCC 43063"],["NCBITaxon%3A887326","Mobiluncus curtisii ATCC 51333"],["NCBITaxon%3A144177","Mobiluncus curtisii subsp. curtisii"],["NCBITaxon%3A585198","Mobiluncus curtisii subsp. curtisii ATCC 35241"],["NCBITaxon%3A144178","Mobiluncus holmesii"]]},{"id":"NCBITaxon:246432","l":"Staphylococcus equorum","na":1,"nb":7,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A246432","Staphylococcus equorum"],["NCBITaxon%3A29383","Staphylococcus equorum subsp. equorum"],["NCBITaxon%3A1159488","Staphylococcus equorum subsp. equorum Mu2"],["NCBITaxon%3A201829","Staphylococcus equorum subsp. linens"],["NCBITaxon%3A1357294","Staphylococcus equorum UMC-CNS-924"],["NCBITaxon%3A214473","Staphylococcus nepalensis"]]},{"id":"NCBITaxon:28198","l":"Aliarcobacter cryaerophilus","na":1,"nb":7,"a":[["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A28197","Aliarcobacter butzleri"],["NCBITaxon%3A28198","Aliarcobacter cryaerophilus"],["NCBITaxon%3A1032070","Aliarcobacter cryaerophilus ATCC 43158"],["NCBITaxon%3A1032071","Aliarcobacter cryaerophilus D2610"],["NCBITaxon%3A2933790","Arcobacter cryaerophilus gv. crypticus"],["NCBITaxon%3A2027466","Arcobacter cryaerophilus gv. occultus"]]},{"id":"NCBITaxon:29290","l":"Candidatus Magnetobacterium bavaricum","na":7,"nb":1,"a":[["water-body-envo-00000063.html","water body"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["activated-sludge-envo-00002046.html","activated sludge"],["cultivated-environment-envo-01000311.html","cultivated environment"],["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A29290","Candidatus Magnetobacterium bavaricum"]]},{"id":"NCBITaxon:33968","l":"Leuconostoc pseudomesenteroides","na":1,"nb":7,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"]],"b":[["NCBITaxon%3A2766470","Leuconostoc falkenbergense"],["NCBITaxon%3A33968","Leuconostoc pseudomesenteroides"],["NCBITaxon%3A1339246","Leuconostoc pseudomesenteroides 1159"],["NCBITaxon%3A1154757","Leuconostoc pseudomesenteroides 4882"],["NCBITaxon%3A935295","Leuconostoc pseudomesenteroides KCTC 3652"],["NCBITaxon%3A1255668","Leuconostoc pseudomesenteroides MSE7"]]},{"id":"NCBITaxon:38","l":"Archangium disciforme","na":7,"nb":1,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["feces-uberon-0001988.html","feces"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["wood-bto-0005516.html","wood"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A38","Archangium disciforme"]]},{"id":"NCBITaxon:39777","l":"Veillonella atypica","na":1,"nb":7,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["NCBITaxon%3A39777","Veillonella atypica"],["NCBITaxon%3A866776","Veillonella atypica ACS-049-V-Sch6"],["NCBITaxon%3A866778","Veillonella atypica ACS-134-V-Col7a"],["NCBITaxon%3A1357414","Veillonella atypica CD1_NA_1"],["NCBITaxon%3A575616","Veillonella atypica D15"],["NCBITaxon%3A1128111","Veillonella atypica KON"]]},{"id":"NCBITaxon:445336","l":"Clostridium botulinum Bf","na":7,"nb":1,"a":[["bay-envo-00000032.html","bay"],["coral-reef-envo-00000150.html","coral reef"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["saline-water-envo-00002010.html","saline water"],["desert-sand-envo-00005800.html","desert sand"]],"b":[["NCBITaxon%3A445336","Clostridium botulinum Bf"]]},{"id":"NCBITaxon:51669","l":"Tetragenococcus halophilus","na":1,"nb":7,"a":[["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["NCBITaxon%3A1254","Pediococcus acidilactici"],["NCBITaxon%3A51669","Tetragenococcus halophilus"],["NCBITaxon%3A1004777","Tetragenococcus halophilus HO"],["NCBITaxon%3A945021","Tetragenococcus halophilus NBRC 12172"],["NCBITaxon%3A1513898","Tetragenococcus halophilus subsp. flandriensis"],["NCBITaxon%3A1513897","Tetragenococcus halophilus subsp. halophilus"]]},{"id":"NCBITaxon:667019","l":"Curvibacter putative symbiont of Hydra magnipapillata","na":7,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["petroleum-envo-00002984.html","petroleum"],["shoreline-envo-00000486.html","shoreline"],["farm-soil-envo-00005749.html","farm soil"],["orchard-envo-00000115.html","orchard"],["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A667019","Curvibacter putative symbiont of Hydra magnipapillata"]]},{"id":"NCBITaxon:83460","l":"Allostigmatella erecta","na":7,"nb":1,"a":[["feces-uberon-0001988.html","feces"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["plant-litter-envo-01000628.html","plant litter"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A83460","Allostigmatella erecta"]]},{"id":"NCBITaxon:930166","l":"Pseudomonas brassicacearum","na":1,"nb":7,"a":[["spike-bto-0001278.html","spike"]],"b":[["NCBITaxon%3A29299","Nocardioides plantarum"],["NCBITaxon%3A930166","Pseudomonas brassicacearum"],["NCBITaxon%3A1050347","Pseudomonas brassicacearum 51MFCVI2.1"],["NCBITaxon%3A1403314","Pseudomonas brassicacearum PP1_210F"],["NCBITaxon%3A86264","Pseudomonas brassicacearum subsp. brassicacearum"],["NCBITaxon%3A994484","Pseudomonas brassicacearum subsp. brassicacearum NFM421"]]},{"id":"NCBITaxon:1007122","l":"Fidelibacterota bacterium SCGC AAA160-C11","na":6,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["inlet-envo-00000475.html","inlet"],["marine-biome-envo-00000447.html","marine biome"],["ocean-envo-00000015.html","ocean"],["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"]],"b":[["NCBITaxon%3A1007122","Fidelibacterota bacterium SCGC AAA160-C11"]]},{"id":"NCBITaxon:1007124","l":"Fidelibacterota bacterium SCGC AAA076-M08","na":6,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["inlet-envo-00000475.html","inlet"],["marine-biome-envo-00000447.html","marine biome"],["ocean-envo-00000015.html","ocean"],["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"]],"b":[["NCBITaxon%3A1007124","Fidelibacterota bacterium SCGC AAA076-M08"]]},{"id":"NCBITaxon:101571","l":"Burkholderia ubonensis","na":1,"nb":6,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A101571","Burkholderia ubonensis"],["NCBITaxon%3A441166","Burkholderia ubonensis Bu"],["NCBITaxon%3A1436049","Burkholderia ubonensis MSMB153"],["NCBITaxon%3A1249668","Burkholderia ubonensis MSMB22"],["NCBITaxon%3A1436063","Burkholderia ubonensis MSMB57"],["NCBITaxon%3A265293","Burkholderia ubonensis subsp. mesacidophila"]]},{"id":"NCBITaxon:102","l":"Polaribacter glomeratus","na":6,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"],["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"],["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A102","Polaribacter glomeratus"]]},{"id":"NCBITaxon:103816","l":"Rhodococcus pyridinivorans","na":1,"nb":6,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A103816","Rhodococcus pyridinivorans"],["NCBITaxon%3A1114960","Rhodococcus pyridinivorans AK37"],["NCBITaxon%3A1303690","Rhodococcus pyridinivorans JCM 10940 = NBRC 100608"],["NCBITaxon%3A1441730","Rhodococcus pyridinivorans KG-16"],["NCBITaxon%3A1041510","Rhodococcus pyridinivorans NAM81"],["NCBITaxon%3A1435356","Rhodococcus pyridinivorans SB3094"]]},{"id":"NCBITaxon:1057","l":"Thiococcus pfennigii","na":6,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["saline-water-body-envo-01001319.html","saline water body"],["river-envo-00000022.html","river"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["sediment-envo-00002007.html","sediment"],["subpolar-coniferous-forest-biome-envo-01000250.html","subpolar coniferous forest biome"]],"b":[["NCBITaxon%3A1057","Thiococcus pfennigii"]]},{"id":"NCBITaxon:1072256","l":"Corynebacterium uterequi","na":6,"nb":1,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"],["urogenital-system-bto-0003091.html","urogenital system"],["uterus-bto-0001424.html","uterus"],["vagina-uberon-0000996.html","vagina"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A1072256","Corynebacterium uterequi"]]},{"id":"NCBITaxon:110638","l":"Arthrobacter sp. 'SMCC G982'","na":6,"nb":1,"a":[["biofilm-material-envo-01000156.html","biofilm material"],["farm-envo-00000078.html","farm"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["NCBITaxon%3A110638","Arthrobacter sp. 'SMCC G982'"]]},{"id":"NCBITaxon:1133849","l":"Nocardia brasiliensis ATCC 700358","na":6,"nb":1,"a":[["b-lymphocyte-bto-0000776.html","B-lymphocyte"],["brain-bto-0000142.html","brain"],["heart-bto-0000562.html","heart"],["lymphocyte-bto-0000775.html","lymphocyte"],["macrophage-bto-0000801.html","macrophage"],["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A1133849","Nocardia brasiliensis ATCC 700358"]]},{"id":"NCBITaxon:1329902","l":"Mannheimia haemolytica MhBrain2012","na":6,"nb":1,"a":[["blood-vessel-bto-0001102.html","blood vessel"],["brain-stem-bto-0000146.html","brain stem"],["cerebellum-bto-0000232.html","cerebellum"],["lung-bto-0000763.html","lung"],["midbrain-bto-0000138.html","midbrain"],["neutrophil-bto-0000130.html","neutrophil"]],"b":[["NCBITaxon%3A1329902","Mannheimia haemolytica MhBrain2012"]]},{"id":"NCBITaxon:1488","l":"Clostridium acetobutylicum","na":1,"nb":6,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A1488","Clostridium acetobutylicum"],["NCBITaxon%3A272562","Clostridium acetobutylicum ATCC 824"],["NCBITaxon%3A991791","Clostridium acetobutylicum DSM 1731"],["NCBITaxon%3A863638","Clostridium acetobutylicum EA 2018"],["NCBITaxon%3A1520","Clostridium beijerinckii"],["NCBITaxon%3A1506","Clostridium sp."]]},{"id":"NCBITaxon:1522","l":"[Clostridium] innocuum","na":1,"nb":6,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["NCBITaxon%3A1522","[Clostridium] innocuum"],["NCBITaxon%3A999413","[Clostridium] innocuum 2959"],["NCBITaxon%3A450752","[Clostridium] innocuum 6_1_30"],["NCBITaxon%3A665134","[Clostridium] innocuum SB23"],["NCBITaxon%3A1357388","[Clostridium] innocuum UC1_FAA_N"],["NCBITaxon%3A68766","Fusobacterium sp."]]},{"id":"NCBITaxon:1583","l":"Weissella confusa","na":1,"nb":6,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["NCBITaxon%3A137591","Weissella cibaria"],["NCBITaxon%3A1583","Weissella confusa"],["NCBITaxon%3A1225227","Weissella confusa 10D"],["NCBITaxon%3A1225265","Weissella confusa 10E"],["NCBITaxon%3A1127131","Weissella confusa LBAE C39-2"],["NCBITaxon%3A1629","Weissella viridescens"]]},{"id":"NCBITaxon:162290","l":"Gallicola","na":1,"nb":6,"a":[["vagina-bto-0000243.html","vagina"]],"b":[["NCBITaxon%3A116087","Gallicola barnesae"],["NCBITaxon%3A2683910","Gallicola sp."],["NCBITaxon%3A2683940","Gallicola sp. RM-6"],["NCBITaxon%3A1684165","Gallicola sp. SG1.4B"],["NCBITaxon%3A3438785","Gallicola sp. Sow4_E12"],["NCBITaxon%3A527661","uncultured Gallicola sp."]]},{"id":"NCBITaxon:1640","l":"Listeria seeligeri","na":1,"nb":6,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["NCBITaxon%3A1642","Listeria innocua"],["NCBITaxon%3A1002366","Listeria innocua ATCC 33091"],["NCBITaxon%3A1640","Listeria seeligeri"],["NCBITaxon%3A702453","Listeria seeligeri FSL N1-067"],["NCBITaxon%3A702452","Listeria seeligeri FSL S4-171"],["NCBITaxon%3A683837","Listeria seeligeri serovar 1/2b str. SLCC3954"]]},{"id":"NCBITaxon:1769","l":"Mycobacterium leprae","na":1,"nb":6,"a":[["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"]],"b":[["NCBITaxon%3A1769","Mycobacterium leprae"],["NCBITaxon%3A1297123","Mycobacterium leprae 3125609"],["NCBITaxon%3A1297124","Mycobacterium leprae 7935681"],["NCBITaxon%3A561304","Mycobacterium leprae Br4923"],["NCBITaxon%3A1008298","Mycobacterium leprae Kyoto-2"],["NCBITaxon%3A272631","Mycobacterium leprae TN"]]},{"id":"NCBITaxon:180332","l":"Robinsoniella peoriensis","na":6,"nb":1,"a":[["animal-litter-envo-00002191.html","animal litter"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["emulsion-envo-00010506.html","emulsion"],["environmental-feature-envo-00002297.html","environmental feature"],["pig-manure-envo-00003860.html","pig manure"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A180332","Robinsoniella peoriensis"]]},{"id":"NCBITaxon:1872122","l":"Acidovorax sp.","na":6,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["NCBITaxon%3A1872122","Acidovorax sp."]]},{"id":"NCBITaxon:202","l":"Campylobacter mucosalis","na":1,"nb":6,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["NCBITaxon%3A198","Campylobacter hyointestinalis"],["NCBITaxon%3A91352","Campylobacter hyointestinalis subsp. hyointestinalis"],["NCBITaxon%3A2790656","Campylobacter majalis"],["NCBITaxon%3A202","Campylobacter mucosalis"],["NCBITaxon%3A1032067","Campylobacter mucosalis CCUG 21559"],["NCBITaxon%3A205","Campylobacter sp."]]},{"id":"NCBITaxon:205922","l":"Pseudomonas fluorescens Pf0-1","na":6,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["cold-environment-envo-01000309.html","cold environment"],["microbial-mat-material-envo-01000157.html","microbial mat material"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"],["agricultural-soil-envo-00002259.html","agricultural soil"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A205922","Pseudomonas fluorescens Pf0-1"]]},{"id":"NCBITaxon:225991","l":"Comamonas aquatica","na":1,"nb":6,"a":[["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["NCBITaxon%3A225991","Comamonas aquatica"],["NCBITaxon%3A1457173","Comamonas aquatica DA1877"],["NCBITaxon%3A1219031","Comamonas aquatica NBRC 14918"],["NCBITaxon%3A2708318","Comamonas aquatica subsp. aquatica"],["NCBITaxon%3A2708319","Comamonas aquatica subsp. rana"],["NCBITaxon%3A32013","Comamonas terrigena"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":6,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["NCBITaxon%3A266","Paracoccus denitrificans"],["NCBITaxon%3A1302247","Paracoccus denitrificans JCM 21484"],["NCBITaxon%3A318586","Paracoccus denitrificans PD1222"],["NCBITaxon%3A1051075","Paracoccus denitrificans SD1"],["NCBITaxon%3A82367","Paracoccus pantotrophus"],["NCBITaxon%3A189685","uncultured Paracoccus sp."]]},{"id":"NCBITaxon:28131","l":"Prevotella intermedia","na":1,"nb":6,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["NCBITaxon%3A28131","Prevotella intermedia"],["NCBITaxon%3A246198","Prevotella intermedia 17"],["NCBITaxon%3A1122984","Prevotella intermedia ATCC 25611 = DSM 20706"],["NCBITaxon%3A1347790","Prevotella intermedia ZT"],["NCBITaxon%3A28133","Prevotella nigrescens"],["NCBITaxon%3A997352","Prevotella nigrescens ATCC 33563"]]},{"id":"NCBITaxon:33964","l":"Leuconostoc citreum","na":1,"nb":6,"a":[["plant-resin-po-0025603.html","plant resin"]],"b":[["NCBITaxon%3A33964","Leuconostoc citreum"],["NCBITaxon%3A349519","Leuconostoc citreum KM20"],["NCBITaxon%3A1108974","Leuconostoc citreum LBAE C10"],["NCBITaxon%3A1127128","Leuconostoc citreum LBAE C11"],["NCBITaxon%3A1127129","Leuconostoc citreum LBAE E16"],["NCBITaxon%3A1255667","Leuconostoc citreum MSE2"]]},{"id":"NCBITaxon:373","l":"Gillisella vitis","na":1,"nb":6,"a":[["trunk-bto-0001493.html","trunk"]],"b":[["NCBITaxon%3A361","Agrobacterium sp."],["NCBITaxon%3A1265506","Agrobacterium vitis ATCC 49767"],["NCBITaxon%3A1385422","Agrobacterium vitis pv. musae"],["NCBITaxon%3A1384504","Agrobacterium vitis pv. vitis"],["NCBITaxon%3A373","Gillisella vitis"],["NCBITaxon%3A204072","Ramlibacter henchirensis"]]},{"id":"NCBITaxon:37372","l":"Helicobacter bilis","na":1,"nb":6,"a":[["ht-29-cell-bto-0000182.html","HT-29 cell"]],"b":[["NCBITaxon%3A28447","Clavibacter michiganensis"],["NCBITaxon%3A33014","Clavibacter michiganensis subsp. insidiosus"],["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A613026","Helicobacter bilis ATCC 43879"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"],["NCBITaxon%3A1235804","Helicobacter bilis WiWa"]]},{"id":"NCBITaxon:38289","l":"Corynebacterium jeikeium","na":1,"nb":6,"a":[["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["NCBITaxon%3A38288","Corynebacterium genitalium"],["NCBITaxon%3A38289","Corynebacterium jeikeium"],["NCBITaxon%3A525262","Corynebacterium jeikeium ATCC 43734"],["NCBITaxon%3A306537","Corynebacterium jeikeium K411"],["NCBITaxon%3A1720","Corynebacterium sp."],["NCBITaxon%3A43770","Corynebacterium striatum"]]},{"id":"NCBITaxon:43675","l":"Rothia mucilaginosa","na":1,"nb":6,"a":[["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["NCBITaxon%3A43675","Rothia mucilaginosa"],["NCBITaxon%3A553201","Rothia mucilaginosa ATCC 25296"],["NCBITaxon%3A1073369","Rothia mucilaginosa CC87LB"],["NCBITaxon%3A680646","Rothia mucilaginosa DY-18"],["NCBITaxon%3A1255664","Rothia mucilaginosa M1710"],["NCBITaxon%3A563033","Rothia mucilaginosa M508"]]},{"id":"NCBITaxon:43765","l":"Corynebacterium amycolatum","na":1,"nb":6,"a":[["other-habitatmech-bacdive-1cc8e3791c.html","Other"]],"b":[["NCBITaxon%3A43765","Corynebacterium amycolatum"],["NCBITaxon%3A553204","Corynebacterium amycolatum SK46"],["NCBITaxon%3A134034","Corynebacterium freneyi"],["NCBITaxon%3A156978","Corynebacterium imitans"],["NCBITaxon%3A1725","Corynebacterium xerosis"],["NCBITaxon%3A28172","Vibrio metschnikovii"]]},{"id":"NCBITaxon:47880","l":"Pseudomonas fulva","na":1,"nb":6,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A157783","Pseudomonas cremoricolorata"],["NCBITaxon%3A1215098","Pseudomonas cremoricolorata DSM 17059 = NBRC 16634"],["NCBITaxon%3A47880","Pseudomonas fulva"],["NCBITaxon%3A743720","Pseudomonas fulva 12-X"],["NCBITaxon%3A1215102","Pseudomonas fulva NBRC 16637 = DSM 17717"],["NCBITaxon%3A306","Pseudomonas sp."]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":1,"nb":6,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["NCBITaxon%3A547018","Zhihengliuella alba"],["NCBITaxon%3A5061","Aspergillus niger"],["NCBITaxon%3A380704","Aspergillus niger ATCC 1015"],["NCBITaxon%3A1353008","Aspergillus niger ATCC 13496"],["NCBITaxon%3A1450533","Aspergillus niger CBS 101883"],["NCBITaxon%3A425011","Aspergillus niger CBS 513.88"]]},{"id":"NCBITaxon:544580","l":"Actinomyces oris","na":1,"nb":6,"a":[["archeological-site-envo-00000564.html","archeological site"]],"b":[["NCBITaxon%3A3050225","Actinomyces acetigenes"],["NCBITaxon%3A1655","Actinomyces naeslundii"],["NCBITaxon%3A544580","Actinomyces oris"],["NCBITaxon%3A871541","Actinomyces oris K20"],["NCBITaxon%3A29317","Actinomyces sp."],["NCBITaxon%3A1656","Actinomyces viscosus"]]},{"id":"NCBITaxon:569","l":"Hafnia alvei","na":1,"nb":6,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A569","Hafnia alvei"],["NCBITaxon%3A910996","Hafnia alvei ATCC 13337"],["NCBITaxon%3A1002364","Hafnia alvei ATCC 51873"],["NCBITaxon%3A1453496","Hafnia alvei FB1"],["NCBITaxon%3A546367","Hafnia paralvei"],["NCBITaxon%3A1354263","Hafnia paralvei ATCC 29927"]]},{"id":"NCBITaxon:80867","l":"Paracidovorax avenae","na":1,"nb":6,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A80867","Paracidovorax avenae"],["NCBITaxon%3A643561","Paracidovorax avenae ATCC 19860"],["NCBITaxon%3A995087","Paracidovorax avenae RS-1"],["NCBITaxon%3A80868","Paracidovorax cattleyae"],["NCBITaxon%3A862720","Paracidovorax oryzae"],["NCBITaxon%3A1408420","Paracidovorax oryzae ATCC 19882"]]},{"id":"NCBITaxon:863372","l":"Herbaspirillum huttiense","na":1,"nb":6,"a":[["factory-envo-01000536.html","factory"]],"b":[["NCBITaxon%3A863372","Herbaspirillum huttiense"],["NCBITaxon%3A86172","Herbaspirillum huttiense subsp. huttiense"],["NCBITaxon%3A3074428","Herbaspirillum huttiense subsp. lycopersici"],["NCBITaxon%3A3075126","Herbaspirillum huttiense subsp. nephrolepidis"],["NCBITaxon%3A230311","Herbaspirillum huttiense subsp. putei"],["NCBITaxon%3A1235558","Herbaspirillum huttiense subsp. putei IAM 15032"]]},{"id":"NCBITaxon:1001240","l":"Cryobacterium roopkundense","na":5,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"],["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A1001240","Cryobacterium roopkundense"]]},{"id":"NCBITaxon:103836","l":"Thermopolyspora flexuosa","na":5,"nb":1,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["intestine-environment-envo-2100002.html","intestine environment"],["organic-feature-envo-01000159.html","organic feature"],["compost-soil-envo-00005747.html","compost soil"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A103836","Thermopolyspora flexuosa"]]},{"id":"NCBITaxon:1048","l":"Marichromatium gracile","na":5,"nb":1,"a":[["brackish-water-body-envo-01001321.html","brackish water body"],["estuary-envo-00000045.html","estuary"],["intertidal-zone-envo-00000316.html","intertidal zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1048","Marichromatium gracile"]]},{"id":"NCBITaxon:110539","l":"","na":5,"nb":1,"a":[["brackish-water-body-envo-01001321.html","brackish water body"],["river-envo-00000022.html","river"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"],["subpolar-coniferous-forest-biome-envo-01000250.html","subpolar coniferous forest biome"]],"b":[["NCBITaxon%3A39687","Mycolicibacterium austroafricanum"]]},{"id":"NCBITaxon:1125980","l":"Vibrio harveyi CAIM 1792","na":5,"nb":1,"a":[["abdomen-bto-0000020.html","abdomen"],["connective-tissue-bto-0000421.html","connective tissue"],["lymphoid-tissue-bto-0000753.html","lymphoid tissue"],["muscle-fibre-bto-0000888.html","muscle fibre"],["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A1125980","Vibrio harveyi CAIM 1792"]]},{"id":"NCBITaxon:115336","l":"Actinomadura vinacea","na":5,"nb":1,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["desert-biome-envo-01000179.html","desert biome"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A115336","Actinomadura vinacea"]]},{"id":"NCBITaxon:115828","l":"Streptomyces maritimus","na":5,"nb":1,"a":[["farm-envo-00000078.html","farm"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["plain-envo-00000086.html","plain"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["NCBITaxon%3A115828","Streptomyces maritimus"]]},{"id":"NCBITaxon:1183413","l":"Agrobacterium salinitolerans","na":1,"nb":5,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1183413","Agrobacterium salinitolerans"],["NCBITaxon%3A1368460","Agrobacterium salinitolerans AGR7"],["NCBITaxon%3A1368459","Agrobacterium salinitolerans str. Hayward 0362"],["NCBITaxon%3A1183434","Agrobacterium salinitolerans str. Hayward 0363"],["NCBITaxon%3A361","Agrobacterium sp."]]},{"id":"NCBITaxon:1246","l":"Leuconostoc lactis","na":1,"nb":5,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1590","Lactiplantibacillus plantarum"],["NCBITaxon%3A1246","Leuconostoc lactis"],["NCBITaxon%3A1255576","Leuconostoc lactis 1283"],["NCBITaxon%3A935294","Leuconostoc lactis KCTC 3528 = DSM 20202"],["NCBITaxon%3A886872","Leuconostoc lactis KCTC 3773"]]},{"id":"NCBITaxon:126378","l":"Prevotella sp. RS2","na":5,"nb":1,"a":[["biome-envo-00000428.html","biome"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"],["pig-manure-envo-00003860.html","pig manure"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A126378","Prevotella sp. RS2"]]},{"id":"NCBITaxon:1292039","l":"Cutibacterium acnes P6","na":5,"nb":1,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"],["mammary-gland-bto-0000817.html","mammary gland"],["prostate-gland-bto-0001129.html","prostate gland"],["prostate-gland-epithelium-bto-0002397.html","prostate gland epithelium"],["sebaceous-gland-bto-0001980.html","sebaceous gland"]],"b":[["NCBITaxon%3A1292039","Cutibacterium acnes P6"]]},{"id":"NCBITaxon:1296","l":"Mammaliicoccus sciuri","na":5,"nb":1,"a":[["bone-element-uberon-0001474.html","bone element"],["cecum-bto-0000166.html","cecum"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"],["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["NCBITaxon%3A1296","Mammaliicoccus sciuri"]]},{"id":"NCBITaxon:13243","l":"Rarobacter faecitabidus","na":5,"nb":1,"a":[["water-body-envo-00000063.html","water body"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["NCBITaxon%3A13243","Rarobacter faecitabidus"]]},{"id":"NCBITaxon:1326","l":"Streptococcus acidominimus","na":1,"nb":5,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["NCBITaxon%3A46124","Granulicatella adiacens"],["NCBITaxon%3A638301","Granulicatella adiacens ATCC 49175"],["NCBITaxon%3A1326","Streptococcus acidominimus"],["NCBITaxon%3A149015","Streptococcus hyovaginalis"],["NCBITaxon%3A82348","Streptococcus pluranimalium"]]},{"id":"NCBITaxon:1367494","l":"Pseudomonas aeruginosa PAO1-VE13","na":5,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["lung-epithelial-cell-bto-0004299.html","lung epithelial cell"],["lung-epithelium-bto-0001653.html","lung epithelium"],["neutrophil-bto-0000130.html","neutrophil"],["phagocyte-bto-0001044.html","phagocyte"]],"b":[["NCBITaxon%3A1367494","Pseudomonas aeruginosa PAO1-VE13"]]},{"id":"NCBITaxon:137732","l":"Granulicatella elegans","na":1,"nb":5,"a":[["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["NCBITaxon%3A137732","Granulicatella elegans"],["NCBITaxon%3A626369","Granulicatella elegans ATCC 700633"],["NCBITaxon%3A1409954","Granulicatella elegans HMP_JCVI_SC0159"],["NCBITaxon%3A1409955","Granulicatella elegans HMP_JCVI_SC0160"],["NCBITaxon%3A1409956","Granulicatella elegans HMP_JCVI_SC0246"]]},{"id":"NCBITaxon:1382230","l":"Asaia platycodi SF2.1","na":5,"nb":1,"a":[["female-reproductive-system-bto-0000083.html","female reproductive system"],["larva-bto-0000707.html","larva"],["male-reproductive-system-bto-0000082.html","male reproductive system"],["reproductive-system-bto-0000081.html","reproductive system"],["salivary-gland-bto-0001203.html","salivary gland"]],"b":[["NCBITaxon%3A1382230","Asaia platycodi SF2.1"]]},{"id":"NCBITaxon:1388","l":"Alicyclobacillus acidocaldarius subsp. acidocaldarius","na":1,"nb":5,"a":[["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["NCBITaxon%3A405212","Alicyclobacillus acidocaldarius"],["NCBITaxon%3A1388","Alicyclobacillus acidocaldarius subsp. acidocaldarius"],["NCBITaxon%3A521098","Alicyclobacillus acidocaldarius subsp. acidocaldarius DSM 446"],["NCBITaxon%3A1197885","Alicyclobacillus acidocaldarius subsp. acidocaldarius HSU9"],["NCBITaxon%3A1048834","Alicyclobacillus acidocaldarius subsp. acidocaldarius Tc-4-1"]]},{"id":"NCBITaxon:1411316","l":"Pedobacter sp.","na":5,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A1411316","Pedobacter sp."]]},{"id":"NCBITaxon:143495","l":"Aneurinibacillus thermoaerophilus","na":5,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A143495","Aneurinibacillus thermoaerophilus"]]},{"id":"NCBITaxon:145391","l":"Staphylococcus hominis subsp. hominis","na":1,"nb":5,"a":[["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["NCBITaxon%3A1290","Staphylococcus hominis"],["NCBITaxon%3A145391","Staphylococcus hominis subsp. hominis"],["NCBITaxon%3A435837","Staphylococcus hominis subsp. hominis C80"],["NCBITaxon%3A1185421","Staphylococcus hominis subsp. hominis ZBW5"],["NCBITaxon%3A1292","Staphylococcus warneri"]]},{"id":"NCBITaxon:1462","l":"Geobacillus kaustophilus","na":1,"nb":5,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"]],"b":[["NCBITaxon%3A1462","Geobacillus kaustophilus"],["NCBITaxon%3A1337888","Geobacillus kaustophilus GBlys"],["NCBITaxon%3A235909","Geobacillus kaustophilus HTA426"],["NCBITaxon%3A1220595","Geobacillus kaustophilus NBRC 102445"],["NCBITaxon%3A433974","Geobacillus kaustophilus subsp. vulgivagus"]]},{"id":"NCBITaxon:1501","l":"Clostridium pasteurianum","na":1,"nb":5,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A1501","Clostridium pasteurianum"],["NCBITaxon%3A86416","Clostridium pasteurianum BC1"],["NCBITaxon%3A1262449","Clostridium pasteurianum DSM 525 = ATCC 6013"],["NCBITaxon%3A1341159","Clostridium pasteurianum TK"],["NCBITaxon%3A1506","Clostridium sp."]]},{"id":"NCBITaxon:1513","l":"Clostridium tetani","na":1,"nb":5,"a":[["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A1513","Clostridium tetani"],["NCBITaxon%3A1231072","Clostridium tetani 12124569"],["NCBITaxon%3A1172202","Clostridium tetani ATCC 454"],["NCBITaxon%3A1172203","Clostridium tetani ATCC 9441"],["NCBITaxon%3A212717","Clostridium tetani E88"]]},{"id":"NCBITaxon:152682","l":"Sphingomonas melonis","na":1,"nb":5,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["NCBITaxon%3A152682","Sphingomonas melonis"],["NCBITaxon%3A1090316","Sphingomonas melonis C3"],["NCBITaxon%3A1090320","Sphingomonas melonis DAPP-PG 224"],["NCBITaxon%3A1090317","Sphingomonas melonis FR1"],["NCBITaxon%3A621456","Sphingomonas melonis TY"]]},{"id":"NCBITaxon:1575","l":"Leifsonia xyli","na":1,"nb":5,"a":[["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["NCBITaxon%3A1575","Leifsonia xyli"],["NCBITaxon%3A31966","Leifsonia xyli subsp. cynodontis"],["NCBITaxon%3A1389489","Leifsonia xyli subsp. cynodontis DSM 46306"],["NCBITaxon%3A59736","Leifsonia xyli subsp. xyli"],["NCBITaxon%3A281090","Leifsonia xyli subsp. xyli str. CTCB07"]]},{"id":"NCBITaxon:158192","l":"Desulfuromonas michiganensis","na":5,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["cultivated-environment-envo-01000311.html","cultivated environment"],["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A158192","Desulfuromonas michiganensis"]]},{"id":"NCBITaxon:158751","l":"uncultured Acidovorax sp.","na":5,"nb":1,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["water-body-envo-00000063.html","water body"],["water-scum-envo-00005794.html","water scum"],["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"]],"b":[["NCBITaxon%3A158751","uncultured Acidovorax sp."]]},{"id":"NCBITaxon:1614","l":"Fructilactobacillus fructivorans","na":1,"nb":5,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A1614","Fructilactobacillus fructivorans"],["NCBITaxon%3A1600","Lactobacillus acetotolerans"],["NCBITaxon%3A1591","Lactobacillus sp."],["NCBITaxon%3A418198","Lactobacillus sp. JCM 7525"],["NCBITaxon%3A418199","Lactobacillus sp. JCM 7527"]]},{"id":"NCBITaxon:173764","l":"Cytophaga sp. MBIC01539","na":5,"nb":1,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A173764","Cytophaga sp. MBIC01539"]]},{"id":"NCBITaxon:1778","l":"Mycobacterium gordonae","na":5,"nb":1,"a":[["fibroblast-bto-0000452.html","fibroblast"],["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["kidney-bto-0000671.html","kidney"],["spleen-bto-0001281.html","spleen"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["NCBITaxon%3A1778","Mycobacterium gordonae"]]},{"id":"NCBITaxon:1919273","l":"Candidatus Desulfopertinax cowenii","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1919273","Candidatus Desulfopertinax cowenii"]]},{"id":"NCBITaxon:1934978","l":"Acinetobacter sp. JdFR-94","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934978","Acinetobacter sp. JdFR-94"]]},{"id":"NCBITaxon:1934979","l":"Archaeoglobus sp. JdFR-22","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934979","Archaeoglobus sp. JdFR-22"]]},{"id":"NCBITaxon:1934980","l":"Archaeoglobus sp. JdFR-23","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934980","Archaeoglobus sp. JdFR-23"]]},{"id":"NCBITaxon:1934981","l":"Archaeoglobus sp. JdFR-24","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934981","Archaeoglobus sp. JdFR-24"]]},{"id":"NCBITaxon:1934982","l":"Archaeoglobus sp. JdFR-25","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934982","Archaeoglobus sp. JdFR-25"]]},{"id":"NCBITaxon:1934983","l":"Archaeoglobus sp. JdFR-26","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934983","Archaeoglobus sp. JdFR-26"]]},{"id":"NCBITaxon:1934984","l":"Archaeoglobus sp. JdFR-27","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934984","Archaeoglobus sp. JdFR-27"]]},{"id":"NCBITaxon:1934985","l":"Archaeoglobus sp. JdFR-28","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934985","Archaeoglobus sp. JdFR-28"]]},{"id":"NCBITaxon:1934986","l":"Archaeoglobus sp. JdFR-29","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934986","Archaeoglobus sp. JdFR-29"]]},{"id":"NCBITaxon:1934987","l":"Archaeoglobus sp. JdFR-30","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934987","Archaeoglobus sp. JdFR-30"]]},{"id":"NCBITaxon:1934988","l":"Archaeoglobus sp. JdFR-31","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934988","Archaeoglobus sp. JdFR-31"]]},{"id":"NCBITaxon:1934989","l":"Archaeoglobus sp. JdFR-32","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934989","Archaeoglobus sp. JdFR-32"]]},{"id":"NCBITaxon:1934990","l":"Archaeoglobus sp. JdFR-33","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934990","Archaeoglobus sp. JdFR-33"]]},{"id":"NCBITaxon:1934991","l":"Archaeoglobus sp. JdFR-34","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934991","Archaeoglobus sp. JdFR-34"]]},{"id":"NCBITaxon:1934992","l":"Archaeoglobus sp. JdFR-35","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934992","Archaeoglobus sp. JdFR-35"]]},{"id":"NCBITaxon:1962118","l":"Mycobacteroides abscessus subsp. massiliense","na":1,"nb":5,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["NCBITaxon%3A36809","Mycobacteroides abscessus"],["NCBITaxon%3A1185650","Mycobacteroides abscessus subsp. abscessus"],["NCBITaxon%3A1962118","Mycobacteroides abscessus subsp. massiliense"],["NCBITaxon%3A1001714","Mycobacteroides abscessus subsp. massiliense CCUG 48898 = JCM 15300"],["NCBITaxon%3A1198627","Mycobacteroides abscessus subsp. massiliense str. GO 06"]]},{"id":"NCBITaxon:200","l":"Campylobacter curvus","na":1,"nb":5,"a":[["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A28099","Agrobacterium rubi"],["NCBITaxon%3A1368415","Agrobacterium rubi TR3 = NBRC 13261"],["NCBITaxon%3A200","Campylobacter curvus"],["NCBITaxon%3A360105","Campylobacter curvus 525.92"],["NCBITaxon%3A1121268","Campylobacter curvus DSM 6644"]]},{"id":"NCBITaxon:204773","l":"Herminiimonas arsenicoxydans","na":5,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["liquid-water-envo-00002006.html","liquid water"],["cold-environment-envo-01000309.html","cold environment"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A204773","Herminiimonas arsenicoxydans"]]},{"id":"NCBITaxon:208224","l":"Enterobacter kobei","na":1,"nb":5,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1896336","Citrobacter sp."],["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A208224","Enterobacter kobei"],["NCBITaxon%3A1354261","Enterobacter kobei ATCC BAA-260"],["NCBITaxon%3A42895","Enterobacter sp."]]},{"id":"NCBITaxon:2210","l":"Methanosarcina thermophila","na":1,"nb":5,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A1520800","Methanosarcina sp. DSM 11855"],["NCBITaxon%3A2210","Methanosarcina thermophila"],["NCBITaxon%3A1434121","Methanosarcina thermophila CHTI-55"],["NCBITaxon%3A1434122","Methanosarcina thermophila MST-A1"],["NCBITaxon%3A523844","Methanosarcina thermophila TM-1"]]},{"id":"NCBITaxon:2213","l":"Methanosarcina sp.","na":5,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["marine-water-body-envo-00001999.html","marine water body"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A2213","Methanosarcina sp."]]},{"id":"NCBITaxon:2218628","l":"Photorhabdus laumondii","na":1,"nb":5,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A2218628","Photorhabdus laumondii"],["NCBITaxon%3A2029685","Photorhabdus laumondii subsp. clarkei"],["NCBITaxon%3A141679","Photorhabdus laumondii subsp. laumondii"],["NCBITaxon%3A243265","Photorhabdus laumondii subsp. laumondii TTO1"],["NCBITaxon%3A3459528","Photorhabdus laumondii subsp. malanae"]]},{"id":"NCBITaxon:224914","l":"","na":1,"nb":5,"a":[["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A29459","Brucella melitensis"],["NCBITaxon%3A1143191","Brucella melitensis 16M13W"],["NCBITaxon%3A1143190","Brucella melitensis 16M1W"],["NCBITaxon%3A644337","Brucella melitensis bv. 1"],["NCBITaxon%3A224914","Brucella melitensis bv. 1 str. 16M"]]},{"id":"NCBITaxon:239","l":"Flavobacterium sp.","na":5,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["mud-envo-01000001.html","mud"],["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"],["orchard-envo-00000115.html","orchard"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A239","Flavobacterium sp."]]},{"id":"NCBITaxon:265606","l":"Rhodopirellula baltica","na":1,"nb":5,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A265606","Rhodopirellula baltica"],["NCBITaxon%3A993517","Rhodopirellula baltica SH28"],["NCBITaxon%3A243090","Rhodopirellula baltica SH 1"],["NCBITaxon%3A993516","Rhodopirellula baltica SWK14"],["NCBITaxon%3A991778","Rhodopirellula baltica WH47"]]},{"id":"NCBITaxon:290054","l":"Eubacterium coprostanoligenes","na":5,"nb":1,"a":[["emulsion-envo-00010506.html","emulsion"],["environmental-feature-envo-00002297.html","environmental feature"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["pig-manure-envo-00003860.html","pig manure"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A290054","Eubacterium coprostanoligenes"]]},{"id":"NCBITaxon:29494","l":"Vibrio furnissii","na":1,"nb":5,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A676","Vibrio fluvialis"],["NCBITaxon%3A29494","Vibrio furnissii"],["NCBITaxon%3A675811","Vibrio furnissii CIP 102972"],["NCBITaxon%3A903510","Vibrio furnissii NCTC 11218"],["NCBITaxon%3A1339240","Vibrio furnissii ZOR0035"]]},{"id":"NCBITaxon:296591","l":"Polaromonas sp. JS666","na":5,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["resting-cell-bto-0001170.html","resting cell"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A296591","Polaromonas sp. JS666"]]},{"id":"NCBITaxon:305719","l":"Segatella baroniae","na":1,"nb":5,"a":[["pig-manure-envo-00003860.html","pig manure"]],"b":[["NCBITaxon%3A305719","Segatella baroniae"],["NCBITaxon%3A752555","Segatella baroniae B14"],["NCBITaxon%3A1280705","Segatella baroniae C21a"],["NCBITaxon%3A1122980","Segatella baroniae DSM 16972 = JCM 13447"],["NCBITaxon%3A1115809","Segatella baroniae F0067"]]},{"id":"NCBITaxon:310575","l":"Advenella kashmirensis","na":1,"nb":5,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A310575","Advenella kashmirensis"],["NCBITaxon%3A1914954","Advenella kashmirensis subsp. kashmirensis"],["NCBITaxon%3A1439717","Advenella kashmirensis subsp. methylica"],["NCBITaxon%3A1424334","Advenella kashmirensis W13003"],["NCBITaxon%3A1036672","Advenella kashmirensis WT001"]]},{"id":"NCBITaxon:314722","l":"Pseudoxanthomonas suwonensis","na":1,"nb":5,"a":[["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["NCBITaxon%3A314722","Pseudoxanthomonas suwonensis"],["NCBITaxon%3A743721","Pseudoxanthomonas suwonensis 11-1"],["NCBITaxon%3A935566","Pseudoxanthomonas suwonensis J42"],["NCBITaxon%3A935567","Pseudoxanthomonas suwonensis J43"],["NCBITaxon%3A935568","Pseudoxanthomonas suwonensis J47"]]},{"id":"NCBITaxon:32021","l":"Campylobacter jejuni subsp. doylei","na":1,"nb":5,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["NCBITaxon%3A197","Campylobacter jejuni"],["NCBITaxon%3A32021","Campylobacter jejuni subsp. doylei"],["NCBITaxon%3A360109","Campylobacter jejuni subsp. doylei 269.97"],["NCBITaxon%3A1408360","Campylobacter jejuni subsp. doylei ATCC 49349"],["NCBITaxon%3A1070741","Campylobacter jejuni subsp. doylei str. RM3440"]]},{"id":"NCBITaxon:351016","l":"Roseobacter sp. AzwK-3b","na":5,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["oligotrophic-water-envo-00002223.html","oligotrophic water"],["lagoon-envo-00000038.html","lagoon"],["tropical-envo-01000204.html","tropical"],["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A351016","Roseobacter sp. AzwK-3b"]]},{"id":"NCBITaxon:376","l":"Bradyrhizobium sp.","na":5,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A376","Bradyrhizobium sp."]]},{"id":"NCBITaxon:38301","l":"Corynebacterium minutissimum","na":1,"nb":5,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["NCBITaxon%3A43765","Corynebacterium amycolatum"],["NCBITaxon%3A169292","Corynebacterium aurimucosum"],["NCBITaxon%3A156978","Corynebacterium imitans"],["NCBITaxon%3A38301","Corynebacterium minutissimum"],["NCBITaxon%3A1223512","Corynebacterium minutissimum NBRC 15361"]]},{"id":"NCBITaxon:38313","l":"Shewanella algae","na":1,"nb":5,"a":[["foot-bto-0000476.html","foot"]],"b":[["NCBITaxon%3A38313","Shewanella algae"],["NCBITaxon%3A1331670","Shewanella algae ACDC"],["NCBITaxon%3A1236541","Shewanella algae JCM 14758"],["NCBITaxon%3A1236544","Shewanella algae JCM 21037 = NBRC 103173"],["NCBITaxon%3A24","Shewanella putrefaciens"]]},{"id":"NCBITaxon:394092","l":"Hyalangium gracile","na":5,"nb":1,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["wood-bto-0005516.html","wood"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["plant-litter-envo-01000628.html","plant litter"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A394092","Hyalangium gracile"]]},{"id":"NCBITaxon:39650","l":"Cellvibrio mixtus","na":1,"nb":5,"a":[["compost-envo-00002170.html","compost"]],"b":[["NCBITaxon%3A39650","Cellvibrio mixtus"],["NCBITaxon%3A180904","Cellvibrio mixtus subsp. dextranolyticus"],["NCBITaxon%3A126346","Cellvibrio mixtus subsp. mixtus"],["NCBITaxon%3A1209072","Cellvibrio mixtus subsp. mixtus J3-8"],["NCBITaxon%3A180915","Cellvibrio vulgaris"]]},{"id":"NCBITaxon:488447","l":"Burkholderia contaminans","na":1,"nb":5,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A488447","Burkholderia contaminans"],["NCBITaxon%3A1423418","Burkholderia contaminans FFH2050"],["NCBITaxon%3A1423419","Burkholderia contaminans FFH2055"],["NCBITaxon%3A1334628","Burkholderia contaminans LMG 23361"],["NCBITaxon%3A36773","Burkholderia sp."]]},{"id":"NCBITaxon:573060","l":"Acidovorax delafieldii 2AN","na":5,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["large-river-biome-envo-00000887.html","large river biome"],["liquid-water-envo-00002006.html","liquid water"],["petroleum-envo-00002984.html","petroleum"],["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A573060","Acidovorax delafieldii 2AN"]]},{"id":"NCBITaxon:57743","l":"Salmonella enterica subsp. enterica serovar Weltevreden","na":1,"nb":5,"a":[["hep-2-cell-bto-0000976.html","HEp-2 cell"]],"b":[["NCBITaxon%3A57743","Salmonella enterica subsp. enterica serovar Weltevreden"],["NCBITaxon%3A1173939","Salmonella enterica subsp. enterica serovar Weltevreden str. 1655"],["NCBITaxon%3A936157","Salmonella enterica subsp. enterica serovar Weltevreden str. 2007-60-3289-1"],["NCBITaxon%3A465518","Salmonella enterica subsp. enterica serovar Weltevreden str. HI_N05-537"],["NCBITaxon%3A488480","Salmonella enterica subsp. enterica serovar Weltevreden str. SL484"]]},{"id":"NCBITaxon:68175","l":"Streptomyces antimycoticus","na":1,"nb":5,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["NCBITaxon%3A68175","Streptomyces antimycoticus"],["NCBITaxon%3A1226758","Streptomyces antimycoticus subsp. mordarskii"],["NCBITaxon%3A53451","Streptomyces rutgersensis"],["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A68280","Streptomyces violaceusniger"]]},{"id":"NCBITaxon:68886","l":"Theileria orientalis","na":5,"nb":1,"a":[["erythrocyte-bto-0000424.html","erythrocyte"],["leukocyte-bto-0000751.html","leukocyte"],["lymphocyte-bto-0000775.html","lymphocyte"],["macrophage-bto-0000801.html","macrophage"],["monocyte-bto-0000876.html","monocyte"]],"b":[["NCBITaxon%3A68886","Theileria orientalis"]]},{"id":"NCBITaxon:718","l":"Actinobacillus equuli","na":1,"nb":5,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["NCBITaxon%3A718","Actinobacillus equuli"],["NCBITaxon%3A202947","Actinobacillus equuli subsp. equuli"],["NCBITaxon%3A202948","Actinobacillus equuli subsp. haemolyticus"],["NCBITaxon%3A41114","Actinobacillus sp."],["NCBITaxon%3A716","Actinobacillus suis"]]},{"id":"NCBITaxon:72556","l":"Achromobacter piechaudii","na":1,"nb":5,"a":[["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["NCBITaxon%3A72556","Achromobacter piechaudii"],["NCBITaxon%3A742159","Achromobacter piechaudii ATCC 43553"],["NCBITaxon%3A1156919","Achromobacter piechaudii HLE"],["NCBITaxon%3A1216977","Achromobacter piechaudii NBRC 102461"],["NCBITaxon%3A217203","Achromobacter spanius"]]},{"id":"NCBITaxon:75612","l":"Pseudomonas mandelii","na":1,"nb":5,"a":[["plant-gall-po-0025626.html","plant gall"]],"b":[["NCBITaxon%3A75612","Pseudomonas mandelii"],["NCBITaxon%3A1151127","Pseudomonas mandelii 36MFCvi1.1"],["NCBITaxon%3A1147786","Pseudomonas mandelii JR-1"],["NCBITaxon%3A1215107","Pseudomonas mandelii NBRC 103147"],["NCBITaxon%3A1419583","Pseudomonas mandelii PD30"]]},{"id":"NCBITaxon:758","l":"Rodentibacter pneumotropicus","na":1,"nb":5,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["NCBITaxon%3A301","Ectopseudomonas oleovorans"],["NCBITaxon%3A1215116","Ectopseudomonas oleovorans NBRC 14167"],["NCBITaxon%3A1796644","Rodentibacter caecimuris"],["NCBITaxon%3A758","Rodentibacter pneumotropicus"],["NCBITaxon%3A1122936","Rodentibacter pneumotropicus DSM 21403"]]},{"id":"NCBITaxon:827","l":"Campylobacter ureolyticus","na":1,"nb":5,"a":[["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["NCBITaxon%3A827","Campylobacter ureolyticus"],["NCBITaxon%3A883095","Campylobacter ureolyticus ACS-172-V-Col6"],["NCBITaxon%3A883165","Campylobacter ureolyticus ACS-301-V-Sch3b"],["NCBITaxon%3A1121102","Campylobacter ureolyticus DSM 20703"],["NCBITaxon%3A1032069","Campylobacter ureolyticus RIGS 9880"]]},{"id":"NCBITaxon:885","l":"Desulfovibrio sp.","na":5,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"],["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["sludge-envo-00002044.html","sludge"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["NCBITaxon%3A885","Desulfovibrio sp."]]},{"id":"NCBITaxon:100","l":"Ancylobacter aquaticus","na":4,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["groundwater-envo-01001004.html","groundwater"],["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"]],"b":[["NCBITaxon%3A100","Ancylobacter aquaticus"]]},{"id":"NCBITaxon:1000561","l":"Pseudomonas aeruginosa AES-1R","na":4,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["lung-bto-0000763.html","lung"],["respiratory-tract-uberon-0000065.html","respiratory tract"],["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1000561","Pseudomonas aeruginosa AES-1R"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":4,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"],["human-construction-envo-00000070.html","human construction"],["sediment-envo-00002007.html","sediment"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A100226","Streptomyces coelicolor A3(2)"]]},{"id":"NCBITaxon:1005928","l":"Roseovarius lutimaris","na":4,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"],["marine-sediment-envo-03000033.html","marine sediment"],["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["NCBITaxon%3A1005928","Roseovarius lutimaris"]]},{"id":"NCBITaxon:102170","l":"Desulfallas sapomandens","na":4,"nb":1,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["organic-feature-envo-01000159.html","organic feature"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A102170","Desulfallas sapomandens"]]},{"id":"NCBITaxon:102897","l":"Parafrankia sp. EUN1f","na":4,"nb":1,"a":[["plant-bto-0001481.html","plant"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["NCBITaxon%3A102897","Parafrankia sp. EUN1f"]]},{"id":"NCBITaxon:1029718","l":"Candidatus Arthromitus sp. SFB-mouse-Japan","na":4,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["lymphocyte-bto-0000775.html","lymphocyte"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A1029718","Candidatus Arthromitus sp. SFB-mouse-Japan"]]},{"id":"NCBITaxon:103621","l":"Actinomyces urogenitalis","na":1,"nb":4,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A103621","Actinomyces urogenitalis"],["NCBITaxon%3A1403939","Actinomyces urogenitalis DORA_12"],["NCBITaxon%3A525246","Actinomyces urogenitalis DSM 15434"],["NCBITaxon%3A1284679","Actinomyces urogenitalis S6-C4"]]},{"id":"NCBITaxon:1038859","l":"Bradyrhizobium murdochi","na":4,"nb":1,"a":[["plant-bto-0001481.html","plant"],["iucn-national-park-envo-00000367.html","IUCN national park"],["peninsula-envo-00000305.html","peninsula"],["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A1038859","Bradyrhizobium murdochi"]]},{"id":"NCBITaxon:103892","l":"Veillonella ratti","na":4,"nb":1,"a":[["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["intestine-environment-envo-2100002.html","intestine environment"],["organic-feature-envo-01000159.html","organic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["NCBITaxon%3A103892","Veillonella ratti"]]},{"id":"NCBITaxon:104099","l":"Acetobacter orleanensis","na":1,"nb":4,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A178900","Acetobacter cerevisiae"],["NCBITaxon%3A104099","Acetobacter orleanensis"],["NCBITaxon%3A1231342","Acetobacter orleanensis JCM 7639"],["NCBITaxon%3A1307914","Acetobacter orleanensis NRIC 0473"]]},{"id":"NCBITaxon:104269","l":"Tenacibaculum amylolyticum","na":4,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"],["marine-environment-envo-01000320.html","marine environment"],["organic-feature-envo-01000159.html","organic feature"],["organic-material-envo-01000155.html","organic material"]],"b":[["NCBITaxon%3A104269","Tenacibaculum amylolyticum"]]},{"id":"NCBITaxon:1046938","l":"Candidatus Aenigmarchaeota archaeon SCGC AAA011-F07","na":4,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1046938","Candidatus Aenigmarchaeota archaeon SCGC AAA011-F07"]]},{"id":"NCBITaxon:1046985","l":"Parcubacteria bacterium SCGC AAA011-A08","na":4,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1046985","Parcubacteria bacterium SCGC AAA011-A08"]]},{"id":"NCBITaxon:1046987","l":"Parcubacteria bacterium SCGC AAA011-A09","na":4,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1046987","Parcubacteria bacterium SCGC AAA011-A09"]]},{"id":"NCBITaxon:1046989","l":"Parcubacteria bacterium SCGC AAA011-J21","na":4,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1046989","Parcubacteria bacterium SCGC AAA011-J21"]]},{"id":"NCBITaxon:1046996","l":"Parcubacteria bacterium SCGC AAA010-E09","na":4,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1046996","Parcubacteria bacterium SCGC AAA010-E09"]]},{"id":"NCBITaxon:1047003","l":"Candidatus Microgenomatus auricola SCGC AAA011-E14","na":4,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1047003","Candidatus Microgenomatus auricola SCGC AAA011-E14"]]},{"id":"NCBITaxon:1047010","l":"Omnitrophica bacterium SCGC AAA011-L16","na":4,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1047010","Omnitrophica bacterium SCGC AAA011-L16"]]},{"id":"NCBITaxon:1052844","l":"Parcubacteria bacterium SCGC AAA040-L21","na":4,"nb":1,"a":[["ocean-envo-00000015.html","ocean"],["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"],["undersea-feature-envo-00000104.html","undersea feature"]],"b":[["NCBITaxon%3A1052844","Parcubacteria bacterium SCGC AAA040-L21"]]},{"id":"NCBITaxon:1052848","l":"Parcubacteria bacterium SCGC AAA036-E14","na":4,"nb":1,"a":[["ocean-envo-00000015.html","ocean"],["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"],["undersea-feature-envo-00000104.html","undersea feature"]],"b":[["NCBITaxon%3A1052848","Parcubacteria bacterium SCGC AAA036-E14"]]},{"id":"NCBITaxon:1055487","l":"Methylotenera versatilis","na":1,"nb":4,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1055487","Methylotenera versatilis"],["NCBITaxon%3A666681","Methylotenera versatilis 301"],["NCBITaxon%3A1101193","Methylotenera versatilis 7"],["NCBITaxon%3A1115835","Methylotenera versatilis 79"]]},{"id":"NCBITaxon:1066","l":"Rhodocyclus tenuis","na":1,"nb":4,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["NCBITaxon%3A34014","Pararhizobium capsulatum"],["NCBITaxon%3A2929842","Rhodocyclus gracilis"],["NCBITaxon%3A1066","Rhodocyclus tenuis"],["NCBITaxon%3A1188245","Rhodocyclus tenuis DSM 109"]]},{"id":"NCBITaxon:107400","l":"Methylobacterium fujisawaense","na":4,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["liquid-water-envo-00002006.html","liquid water"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"]],"b":[["NCBITaxon%3A107400","Methylobacterium fujisawaense"]]},{"id":"NCBITaxon:108980","l":"Acinetobacter ursingii","na":1,"nb":4,"a":[["foot-bto-0000476.html","foot"]],"b":[["NCBITaxon%3A108980","Acinetobacter ursingii"],["NCBITaxon%3A1257043","Acinetobacter ursingii ANC 3649"],["NCBITaxon%3A981336","Acinetobacter ursingii DSM 16037 = CIP 107286"],["NCBITaxon%3A1217716","Acinetobacter ursingii NIPH 706"]]},{"id":"NCBITaxon:1104584","l":"Candidatus Altimarinus pacificus JGI 0000068-E11","na":4,"nb":1,"a":[["ocean-envo-00000015.html","ocean"],["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"],["undersea-feature-envo-00000104.html","undersea feature"]],"b":[["NCBITaxon%3A1104584","Candidatus Altimarinus pacificus JGI 0000068-E11"]]},{"id":"NCBITaxon:110578","l":"Bartonella vinsonii subsp. arupensis","na":1,"nb":4,"a":[["farm-envo-00000078.html","farm"]],"b":[["NCBITaxon%3A33047","Bartonella vinsonii"],["NCBITaxon%3A110578","Bartonella vinsonii subsp. arupensis"],["NCBITaxon%3A1094562","Bartonella vinsonii subsp. arupensis OK-94-513"],["NCBITaxon%3A1094561","Bartonella vinsonii subsp. arupensis Pm136co"]]},{"id":"NCBITaxon:110639","l":"Arthrobacter sp. 'SMCC G984'","na":4,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["biofilm-material-envo-01000156.html","biofilm material"],["farm-envo-00000078.html","farm"],["temperate-envo-01000206.html","temperate"]],"b":[["NCBITaxon%3A110639","Arthrobacter sp. 'SMCC G984'"]]},{"id":"NCBITaxon:110645","l":"Arthrobacter sp. 'SMCC ZAT004'","na":4,"nb":1,"a":[["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["biofilm-material-envo-01000156.html","biofilm material"],["farm-envo-00000078.html","farm"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"]],"b":[["NCBITaxon%3A110645","Arthrobacter sp. 'SMCC ZAT004'"]]},{"id":"NCBITaxon:111807","l":"Actinomadura yumaensis","na":1,"nb":4,"a":[["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["NCBITaxon%3A111807","Actinomadura yumaensis"],["NCBITaxon%3A1408421","Actinomadura yumaensis ATCC 43060"],["NCBITaxon%3A1749037","Microbacterium zeae"],["NCBITaxon%3A2479765","Ochrobactrum teleogrylli"]]},{"id":"NCBITaxon:1131757","l":"Pseudomonas aeruginosa MPAO1/P1","na":4,"nb":1,"a":[["esophagus-bto-0000959.html","esophagus"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["left-colon-bto-0000646.html","left colon"],["rectum-bto-0001158.html","rectum"]],"b":[["NCBITaxon%3A1131757","Pseudomonas aeruginosa MPAO1/P1"]]},{"id":"NCBITaxon:1131758","l":"Pseudomonas aeruginosa MPAO1/P2","na":4,"nb":1,"a":[["esophagus-bto-0000959.html","esophagus"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["left-colon-bto-0000646.html","left colon"],["rectum-bto-0001158.html","rectum"]],"b":[["NCBITaxon%3A1131758","Pseudomonas aeruginosa MPAO1/P2"]]},{"id":"NCBITaxon:114404","l":"Edaphosphingomonas fennica","na":4,"nb":1,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"],["stream-envo-00000023.html","stream"]],"b":[["NCBITaxon%3A114404","Edaphosphingomonas fennica"]]},{"id":"NCBITaxon:1148157","l":"Acinetobacter oleivorans","na":1,"nb":4,"a":[["plume-bto-0002480.html","plume"]],"b":[["NCBITaxon%3A1148157","Acinetobacter oleivorans"],["NCBITaxon%3A1391912","Acinetobacter oleivorans CIP 110421"],["NCBITaxon%3A436717","Acinetobacter oleivorans DR1"],["NCBITaxon%3A472","Acinetobacter sp."]]},{"id":"NCBITaxon:1150423","l":"Bifidobacterium dentium JCM 1195 = DSM 20436","na":1,"nb":4,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A146474","Acetobacter orientalis"],["NCBITaxon%3A1307913","Acetobacter orientalis NRIC 0481"],["NCBITaxon%3A1689","Bifidobacterium dentium"],["NCBITaxon%3A1150423","Bifidobacterium dentium JCM 1195 = DSM 20436"]]},{"id":"NCBITaxon:115541","l":"Loigolactobacillus coryniformis subsp. coryniformis","na":1,"nb":4,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A1610","Loigolactobacillus coryniformis"],["NCBITaxon%3A115541","Loigolactobacillus coryniformis subsp. coryniformis"],["NCBITaxon%3A1185325","Loigolactobacillus coryniformis subsp. coryniformis CECT 5711"],["NCBITaxon%3A913848","Loigolactobacillus coryniformis subsp. coryniformis KCTC 3167 = DSM 20001"]]},{"id":"NCBITaxon:1156985","l":"Epibacterium ulvae","na":4,"nb":1,"a":[["bar-envo-00000167.html","bar"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"],["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A1156985","Epibacterium ulvae"]]},{"id":"NCBITaxon:119206","l":"Aerococcus sanguinicola","na":4,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["animal-manure-envo-00003031.html","animal manure"],["intestine-environment-envo-2100002.html","intestine environment"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"]],"b":[["NCBITaxon%3A119206","Aerococcus sanguinicola"]]},{"id":"NCBITaxon:1235990","l":"Candidatus Pantoea carbekii","na":4,"nb":1,"a":[["fruit-bto-0000486.html","fruit"],["midgut-bto-0000863.html","midgut"],["nymph-bto-0000954.html","nymph"],["secretion-bto-0002979.html","secretion"]],"b":[["NCBITaxon%3A1235990","Candidatus Pantoea carbekii"]]},{"id":"NCBITaxon:124798","l":"Microbacterium phyllosphaerae","na":4,"nb":1,"a":[["leaf-po-0025034.html","leaf"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["intestine-environment-envo-2100002.html","intestine environment"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"]],"b":[["NCBITaxon%3A124798","Microbacterium phyllosphaerae"]]},{"id":"NCBITaxon:126157","l":"Psychrobacillus psychrodurans","na":4,"nb":1,"a":[["desert-biome-envo-01000179.html","desert biome"],["painting-habitatmech-bacdive-0bfb662164.html","Painting"],["temperate-envo-01000206.html","temperate"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A126157","Psychrobacillus psychrodurans"]]},{"id":"NCBITaxon:1273539","l":"Streptococcus iniae IUSA1","na":4,"nb":1,"a":[["fibroblast-bto-0000452.html","fibroblast"],["kidney-bto-0000671.html","kidney"],["macrophage-bto-0000801.html","macrophage"],["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A1273539","Streptococcus iniae IUSA1"]]},{"id":"NCBITaxon:129817","l":"Pseudomonas brenneri","na":4,"nb":1,"a":[["lake-envo-00000020.html","lake"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["NCBITaxon%3A129817","Pseudomonas brenneri"]]},{"id":"NCBITaxon:13076","l":"Globicatella sanguinis","na":1,"nb":4,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A13076","Globicatella sanguinis"],["NCBITaxon%3A1223493","Globicatella sanguinis NBRC 15551"],["NCBITaxon%3A62321","Globicatella sp."],["NCBITaxon%3A136093","Globicatella sulfidifaciens"]]},{"id":"NCBITaxon:134533","l":"Acinetobacter parvus","na":1,"nb":4,"a":[["animal-house-envo-00003040.html","animal house"]],"b":[["NCBITaxon%3A134533","Acinetobacter parvus"],["NCBITaxon%3A981333","Acinetobacter parvus DSM 16617 = CIP 108168"],["NCBITaxon%3A1217671","Acinetobacter parvus NIPH 1103"],["NCBITaxon%3A1844114","Hymenobacter bucti"]]},{"id":"NCBITaxon:1371","l":"Marinococcus halophilus","na":4,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"],["rhizosphere-envo-00005801.html","rhizosphere"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["NCBITaxon%3A1371","Marinococcus halophilus"]]},{"id":"NCBITaxon:138563","l":"Helicobacter cetorum","na":1,"nb":4,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"]],"b":[["NCBITaxon%3A138563","Helicobacter cetorum"],["NCBITaxon%3A182217","Helicobacter cetorum MIT 00-7128"],["NCBITaxon%3A1163745","Helicobacter cetorum MIT 99-5656"],["NCBITaxon%3A837933","Helicobacter cetorum MIT 99-5665"]]},{"id":"NCBITaxon:143223","l":"Salegentibacter salegens","na":4,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"],["small-river-biome-envo-00000890.html","small river biome"],["marine-environment-envo-01000320.html","marine environment"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["NCBITaxon%3A143223","Salegentibacter salegens"]]},{"id":"NCBITaxon:1463164","l":"Klebsiella quasipneumoniae subsp. similipneumoniae","na":1,"nb":4,"a":[["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"]],"b":[["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A1463165","Klebsiella quasipneumoniae"],["NCBITaxon%3A1463164","Klebsiella quasipneumoniae subsp. similipneumoniae"],["NCBITaxon%3A1328376","Klebsiella quasipneumoniae subsp. similipneumoniae MGH 44"]]},{"id":"NCBITaxon:1484","l":"Hydrogenibacillus schlegelii","na":4,"nb":1,"a":[["factory-envo-01000536.html","factory"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["sludge-envo-00002044.html","sludge"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A1484","Hydrogenibacillus schlegelii"]]},{"id":"NCBITaxon:1507806","l":"Campylobacter fetus subsp. testudinum","na":1,"nb":4,"a":[["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["NCBITaxon%3A196","Campylobacter fetus"],["NCBITaxon%3A1507806","Campylobacter fetus subsp. testudinum"],["NCBITaxon%3A1244528","Campylobacter fetus subsp. testudinum 03-427"],["NCBITaxon%3A1244529","Campylobacter fetus subsp. testudinum Sp3"]]},{"id":"NCBITaxon:151454","l":"Allobosea eneae","na":1,"nb":4,"a":[["hospital-envo-00002173.html","hospital"]],"b":[["NCBITaxon%3A151454","Allobosea eneae"],["NCBITaxon%3A1211774","Allobosea eneae 34614"],["NCBITaxon%3A353","Azotobacter chroococcum"],["NCBITaxon%3A2707774","Azotobacter chroococcum subsp. chroococcum"]]},{"id":"NCBITaxon:1517","l":"Thermoanaerobacterium thermosaccharolyticum","na":1,"nb":4,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["NCBITaxon%3A1517","Thermoanaerobacterium thermosaccharolyticum"],["NCBITaxon%3A698949","Thermoanaerobacterium thermosaccharolyticum 33"],["NCBITaxon%3A580327","Thermoanaerobacterium thermosaccharolyticum DSM 571"],["NCBITaxon%3A698948","Thermoanaerobacterium thermosaccharolyticum M0795"]]},{"id":"NCBITaxon:1679001","l":"Pasteurellaceae bacterium NI1060","na":4,"nb":1,"a":[["alveolar-bone-bto-0001383.html","alveolar bone"],["gingiva-bto-0000519.html","gingiva"],["neutrophil-bto-0000130.html","neutrophil"],["osteoclast-bto-0000968.html","osteoclast"]],"b":[["NCBITaxon%3A1679001","Pasteurellaceae bacterium NI1060"]]},{"id":"NCBITaxon:169963","l":"Listeria monocytogenes serovar 1/2a (strain ATCC BAA-679 / EGD-e)","na":4,"nb":1,"a":[["brain-bto-0000142.html","brain"],["heart-bto-0000562.html","heart"],["macrophage-cell-line-bto-0002278.html","macrophage cell line"],["p-388d1-cell-bto-0000984.html","P-388D1 cell"]],"b":[["NCBITaxon%3A169963","Listeria monocytogenes EGD-e"]]},{"id":"NCBITaxon:1712410","l":"Thermanaerosceptrum fracticalcis","na":4,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["ocean-trench-envo-00000275.html","ocean trench"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A1712410","Thermanaerosceptrum fracticalcis"]]},{"id":"NCBITaxon:173365","l":"Methylobacter tundripaludum","na":1,"nb":4,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A173365","Methylobacter tundripaludum"],["NCBITaxon%3A1408450","Methylobacter tundripaludum 21/22"],["NCBITaxon%3A1408451","Methylobacter tundripaludum 31/32"],["NCBITaxon%3A697282","Methylobacter tundripaludum SV96"]]},{"id":"NCBITaxon:1796646","l":"Muribaculum intestinale","na":4,"nb":1,"a":[["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["secretion-bto-0002979.html","secretion"]],"b":[["NCBITaxon%3A1796646","Muribaculum intestinale"]]},{"id":"NCBITaxon:1798","l":"Mycolicibacillus trivialis","na":4,"nb":1,"a":[["fibroblast-bto-0000452.html","fibroblast"],["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["kidney-bto-0000671.html","kidney"],["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A1798","Mycolicibacillus trivialis"]]},{"id":"NCBITaxon:1804","l":"Mycolicibacterium gilvum","na":1,"nb":4,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["NCBITaxon%3A1785","Mycobacterium sp."],["NCBITaxon%3A1804","Mycolicibacterium gilvum"],["NCBITaxon%3A350054","Mycolicibacterium gilvum PYR-GCK"],["NCBITaxon%3A278137","Mycolicibacterium gilvum Spyr1"]]},{"id":"NCBITaxon:184870","l":"Varibaculum cambriense","na":1,"nb":4,"a":[["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"]],"b":[["NCBITaxon%3A184870","Varibaculum cambriense"],["NCBITaxon%3A1357413","Varibaculum cambriense AB12_3"],["NCBITaxon%3A1403948","Varibaculum cambriense DORA_20"],["NCBITaxon%3A1123488","Varibaculum cambriense DSM 15806"]]},{"id":"NCBITaxon:184917","l":"Solidesulfovibrio magneticus","na":1,"nb":4,"a":[["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["NCBITaxon%3A1304872","Solidesulfovibrio cf. magneticus IFRC170"],["NCBITaxon%3A184917","Solidesulfovibrio magneticus"],["NCBITaxon%3A573370","Solidesulfovibrio magneticus RS-1"],["NCBITaxon%3A1206767","Solidesulfovibrio magneticus str. Maddingley MBC34"]]},{"id":"NCBITaxon:187327","l":"Acidaminococcus intestini","na":1,"nb":4,"a":[["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["NCBITaxon%3A187327","Acidaminococcus intestini"],["NCBITaxon%3A1263033","Acidaminococcus intestini CAG:325"],["NCBITaxon%3A1120921","Acidaminococcus intestini DSM 21505"],["NCBITaxon%3A568816","Acidaminococcus intestini RyC-MR95"]]},{"id":"NCBITaxon:1934993","l":"Archaeoglobus sp. JdFR-36","na":4,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934993","Archaeoglobus sp. JdFR-36"]]},{"id":"NCBITaxon:1934994","l":"Archaeoglobus sp. JdFR-37","na":4,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934994","Archaeoglobus sp. JdFR-37"]]},{"id":"NCBITaxon:1934995","l":"Archaeoglobus sp. JdFR-38","na":4,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934995","Archaeoglobus sp. JdFR-38"]]},{"id":"NCBITaxon:1934996","l":"Archaeoglobus sp. JdFR-39","na":4,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934996","Archaeoglobus sp. JdFR-39"]]},{"id":"NCBITaxon:1934997","l":"Archaeoglobus sp. JdFR-40","na":4,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934997","Archaeoglobus sp. JdFR-40"]]},{"id":"NCBITaxon:1934998","l":"Archaeoglobus sp. JdFR-41","na":4,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934998","Archaeoglobus sp. JdFR-41"]]},{"id":"NCBITaxon:1934999","l":"Cupriavidus sp. JdFR-90","na":4,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934999","Cupriavidus sp. JdFR-90"]]},{"id":"NCBITaxon:194249","l":"uncultured Rhodococcus sp.","na":4,"nb":1,"a":[["leaf-po-0025034.html","leaf"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A194249","uncultured Rhodococcus sp."]]},{"id":"NCBITaxon:1993","l":"Actinomadura madurae","na":1,"nb":4,"a":[["foot-bto-0000476.html","foot"]],"b":[["NCBITaxon%3A1993","Actinomadura madurae"],["NCBITaxon%3A1394178","Actinomadura madurae LIID-AJ290"],["NCBITaxon%3A1220569","Actinomadura madurae NBRC 14623"],["NCBITaxon%3A1465509","Lactobacillus sp. JCM 7736"]]},{"id":"NCBITaxon:207340","l":"Roseomonas mucosa","na":1,"nb":4,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A207340","Roseomonas mucosa"],["NCBITaxon%3A1448136","Roseomonas mucosa ATCC BAA-692"],["NCBITaxon%3A1869190","Roseomonas sp."],["NCBITaxon%3A204525","Teichococcus cervicalis"]]},{"id":"NCBITaxon:2074","l":"Pseudonocardia autotrophica","na":1,"nb":4,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["NCBITaxon%3A255205","Pseudoclavibacter helvolus"],["NCBITaxon%3A2074","Pseudonocardia autotrophica"],["NCBITaxon%3A29401","Pseudonocardia halophobica"],["NCBITaxon%3A471802","Pseudonocardia halophobica NRRL B-16514"]]},{"id":"NCBITaxon:209260","l":"Swaminathania","na":1,"nb":4,"a":[["midgut-bto-0000863.html","midgut"]],"b":[["NCBITaxon%3A182838","Swaminathania salitolerans"],["NCBITaxon%3A1307931","Swaminathania salitolerans LMG 21291"],["NCBITaxon%3A447633","Swaminathania sp. SI15-1"],["NCBITaxon%3A876101","uncultured Swaminathania sp."]]},{"id":"NCBITaxon:231455","l":"Dyella japonica","na":1,"nb":4,"a":[["area-of-tundra-envo-00000112.html","area of tundra"]],"b":[["NCBITaxon%3A231455","Dyella japonica"],["NCBITaxon%3A1217721","Dyella japonica A8"],["NCBITaxon%3A1440762","Dyella japonica DSM 16301"],["NCBITaxon%3A1380365","Dyella japonica UNC79MFTsu3.2"]]},{"id":"NCBITaxon:237491","l":"Clostridium sp. Sukashi-1","na":4,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["environmental-feature-envo-00002297.html","environmental feature"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A237491","Clostridium sp. Sukashi-1"]]},{"id":"NCBITaxon:237727","l":"Erythrobacter sp. NAP1","na":4,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"],["pond-water-envo-00002228.html","pond water"],["small-river-biome-envo-00000890.html","small river biome"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["NCBITaxon%3A237727","Erythrobacter sp. NAP1"]]},{"id":"NCBITaxon:267990","l":"Lebetimonas acidiphila","na":4,"nb":1,"a":[["black-smoker-envo-00000218.html","black smoker"],["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["in-situ-habitatmech-bacdive-3edb563d49.html","In-situ"],["volcanic-rock-envo-00002015.html","volcanic rock"]],"b":[["NCBITaxon%3A267990","Lebetimonas acidiphila"]]},{"id":"NCBITaxon:28031","l":"Lysinibacillus fusiformis","na":1,"nb":4,"a":[["organic-waste-material-envo-00002873.html","organic waste material"]],"b":[["NCBITaxon%3A28031","Lysinibacillus fusiformis"],["NCBITaxon%3A1416755","Lysinibacillus fusiformis H1k"],["NCBITaxon%3A1231627","Lysinibacillus fusiformis ZB2"],["NCBITaxon%3A714961","Lysinibacillus fusiformis ZC1"]]},{"id":"NCBITaxon:28087","l":"Legionella sainthelensi","na":1,"nb":4,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["NCBITaxon%3A28087","Legionella sainthelensi"],["NCBITaxon%3A1408445","Legionella sainthelensi ATCC 35248 = DSM 19231"],["NCBITaxon%3A3413801","Legionella sainthelensi serogroup 1"],["NCBITaxon%3A66962","Legionella sainthelensi serogroup 2"]]},{"id":"NCBITaxon:28111","l":"Bacteroides eggerthii","na":1,"nb":4,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["NCBITaxon%3A28111","Bacteroides eggerthii"],["NCBITaxon%3A665953","Bacteroides eggerthii 1_2_48FAA"],["NCBITaxon%3A1263043","Bacteroides eggerthii CAG:109"],["NCBITaxon%3A483216","Bacteroides eggerthii DSM 20697"]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":1,"nb":4,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A28112","Tannerella forsythia"],["NCBITaxon%3A1307832","Tannerella forsythia 3313"],["NCBITaxon%3A203275","Tannerella forsythia 92A2"],["NCBITaxon%3A1307833","Tannerella forsythia KS16"]]},{"id":"NCBITaxon:28135","l":"Segatella oris","na":1,"nb":4,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["NCBITaxon%3A28135","Segatella oris"],["NCBITaxon%3A563008","Segatella oris C735"],["NCBITaxon%3A1122989","Segatella oris DSM 18711 = JCM 12252"],["NCBITaxon%3A649760","Segatella oris F0302"]]},{"id":"NCBITaxon:28445","l":"Mycobacterium intermedium","na":4,"nb":1,"a":[["fibroblast-bto-0000452.html","fibroblast"],["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["kidney-bto-0000671.html","kidney"],["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A28445","Mycobacterium intermedium"]]},{"id":"NCBITaxon:290400","l":"Jannaschia sp. CCS1","na":4,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["oligotrophic-water-envo-00002223.html","oligotrophic water"],["sandstone-envo-00002055.html","sandstone"],["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A290400","Jannaschia sp. CCS1"]]},{"id":"NCBITaxon:29313","l":"Mycobacterium shimoidei","na":4,"nb":1,"a":[["fibroblast-bto-0000452.html","fibroblast"],["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["kidney-bto-0000671.html","kidney"],["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A29313","Mycobacterium shimoidei"]]},{"id":"NCBITaxon:29491","l":"Aeromonas salmonicida subsp. salmonicida","na":1,"nb":4,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A645","Aeromonas salmonicida"],["NCBITaxon%3A29491","Aeromonas salmonicida subsp. salmonicida"],["NCBITaxon%3A1076135","Aeromonas salmonicida subsp. salmonicida 01-B526"],["NCBITaxon%3A382245","Aeromonas salmonicida subsp. salmonicida A449"]]},{"id":"NCBITaxon:29581","l":"Janthinobacterium lividum","na":1,"nb":4,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A29581","Janthinobacterium lividum"],["NCBITaxon%3A1112211","Janthinobacterium lividum PAMC 25724"],["NCBITaxon%3A303","Pseudomonas putida"],["NCBITaxon%3A13690","Sphingobium yanoikuyae"]]},{"id":"NCBITaxon:313596","l":"Robiginitalea biformata HTCC2501","na":4,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"],["small-river-biome-envo-00000890.html","small river biome"],["lagoon-envo-00000038.html","lagoon"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["NCBITaxon%3A313596","Robiginitalea biformata HTCC2501"]]},{"id":"NCBITaxon:313603","l":"Maribacter sp. HTCC2170","na":4,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"],["hydrographic-feature-envo-00000012.html","hydrographic feature"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["NCBITaxon%3A313603","Maribacter sp. HTCC2170"]]},{"id":"NCBITaxon:314724","l":"Borrelia turicatae 91E135","na":4,"nb":1,"a":[["central-nervous-system-bto-0000227.html","central nervous system"],["heart-bto-0000562.html","heart"],["huvec-cell-bto-0001949.html","HUVEC cell"],["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A314724","Borrelia turicatae 91E135"]]},{"id":"NCBITaxon:317577","l":"Deinococcus ficus","na":1,"nb":4,"a":[["waste-treatment-plant-envo-00002272.html","waste treatment plant"]],"b":[["NCBITaxon%3A317577","Deinococcus ficus"],["NCBITaxon%3A1054569","Deinococcus ficus cp02"],["NCBITaxon%3A1054570","Deinococcus ficus cp4502"],["NCBITaxon%3A1121379","Deinococcus ficus DSM 19119"]]},{"id":"NCBITaxon:324057","l":"Paenibacillus sp. JDR-2","na":4,"nb":1,"a":[["vasculature-uberon-0002049.html","vasculature"],["wood-envo-00002040.html","wood"],["part-of-plant-habitatmech-madin-25325947e2.html","part of plant"],["village-biome-envo-01000246.html","village biome"]],"b":[["NCBITaxon%3A324057","Paenibacillus sp. JDR-2"]]},{"id":"NCBITaxon:33010","l":"Cutibacterium avidum","na":1,"nb":4,"a":[["bone-element-uberon-0001474.html","bone element"]],"b":[["NCBITaxon%3A33010","Cutibacterium avidum"],["NCBITaxon%3A1170318","Cutibacterium avidum 44067"],["NCBITaxon%3A997355","Cutibacterium avidum ATCC 25577"],["NCBITaxon%3A1292372","Cutibacterium avidum TM16"]]},{"id":"NCBITaxon:33011","l":"Cutibacterium granulosum","na":1,"nb":4,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["NCBITaxon%3A33011","Cutibacterium granulosum"],["NCBITaxon%3A1160719","Cutibacterium granulosum DSM 20700"],["NCBITaxon%3A553200","Cutibacterium granulosum JCVIHMP029"],["NCBITaxon%3A1292373","Cutibacterium granulosum TM11"]]},{"id":"NCBITaxon:33013","l":"Clavibacter michiganensis subsp. michiganensis","na":1,"nb":4,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A28447","Clavibacter michiganensis"],["NCBITaxon%3A33013","Clavibacter michiganensis subsp. michiganensis"],["NCBITaxon%3A443906","Clavibacter michiganensis subsp. michiganensis NCPPB 382"],["NCBITaxon%3A2035","Curtobacterium flaccumfaciens"]]},{"id":"NCBITaxon:34105","l":"Streptobacillus moniliformis","na":1,"nb":4,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["NCBITaxon%3A1766719","Caviibacter abscessus"],["NCBITaxon%3A34105","Streptobacillus moniliformis"],["NCBITaxon%3A519441","Streptobacillus moniliformis DSM 12112"],["NCBITaxon%3A1410039","Streptobacillus moniliformis HMP_JCVI_SC0164"]]},{"id":"NCBITaxon:36740","l":"Dermabacter hominis","na":1,"nb":4,"a":[["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["NCBITaxon%3A52770","Buchananella hordeovulneris"],["NCBITaxon%3A36740","Dermabacter hominis"],["NCBITaxon%3A1450519","Dermabacter hominis 1368"],["NCBITaxon%3A1349750","Dermabacter hominis NBRC 106157"]]},{"id":"NCBITaxon:36814","l":"Mycolicibacterium rhodesiae","na":1,"nb":4,"a":[["tuberculosis-habitatmech-bacdive-e5d21f85b7.html","Tuberculosis"]],"b":[["NCBITaxon%3A36814","Mycolicibacterium rhodesiae"],["NCBITaxon%3A710467","Mycolicibacterium rhodesiae IS60"],["NCBITaxon%3A931627","Mycolicibacterium rhodesiae JS60"],["NCBITaxon%3A710685","Mycolicibacterium rhodesiae NBB3"]]},{"id":"NCBITaxon:36856","l":"Sinorhizobium saheli","na":1,"nb":4,"a":[["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A36856","Sinorhizobium saheli"],["NCBITaxon%3A142624","Sinorhizobium saheli bv. acaciae"],["NCBITaxon%3A142621","Sinorhizobium saheli bv. sesbaniae"],["NCBITaxon%3A1230633","Sinorhizobium saheli USDA 4893"]]},{"id":"NCBITaxon:378806","l":"Stigmatella aurantiaca DW4/3-1","na":4,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["orchard-envo-00000115.html","orchard"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A378806","Allostigmatella aurantiaca DW4/3-1"]]},{"id":"NCBITaxon:385067","l":"Bacillus sp. N2a","na":4,"nb":1,"a":[["oil-spill-envo-00002061.html","oil spill"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A385067","Bacillus sp. N2a"]]},{"id":"NCBITaxon:388919","l":"","na":4,"nb":1,"a":[["buccal-mucosa-bto-0003833.html","buccal mucosa"],["dental-plaque-bto-0000338.html","dental plaque"],["pharyngeal-mucosa-bto-0001047.html","pharyngeal mucosa"],["pharynx-bto-0001049.html","pharynx"]],"b":[["NCBITaxon%3A388919","Streptococcus sanguinis SK36"]]},{"id":"NCBITaxon:391","l":"Rhizobium sp.","na":4,"nb":1,"a":[["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["paddy-ricefield-habitatmech-bacdive-6e3154acd8.html","Paddy-Ricefield"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["NCBITaxon%3A391","Rhizobium sp."]]},{"id":"NCBITaxon:394090","l":"Cystobacter armeniaca","na":4,"nb":1,"a":[["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A394090","Cystobacter armeniaca"]]},{"id":"NCBITaxon:40542","l":"Leptotrichia buccalis","na":1,"nb":4,"a":[["archeological-site-envo-00000564.html","archeological site"]],"b":[["NCBITaxon%3A40542","Leptotrichia buccalis"],["NCBITaxon%3A523794","Leptotrichia buccalis C-1013-b"],["NCBITaxon%3A157692","Pseudoleptotrichia goodfellowii"],["NCBITaxon%3A714315","Pseudoleptotrichia goodfellowii DSM 19756"]]},{"id":"NCBITaxon:42895","l":"Enterobacter sp.","na":4,"nb":1,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"],["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A42895","Enterobacter sp."]]},{"id":"NCBITaxon:44753","l":"Tsukamurella spumae","na":4,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"],["foam-habitatmech-bacdive-df2f59b773.html","Foam"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A44753","Tsukamurella spumae"]]},{"id":"NCBITaxon:45243","l":"Capnocytophaga haemolytica","na":1,"nb":4,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A45243","Capnocytophaga haemolytica"],["NCBITaxon%3A1410026","Capnocytophaga haemolytica HMP_JCVI_SC0216"],["NCBITaxon%3A1410027","Capnocytophaga haemolytica HMP_JCVI_SC0218"],["NCBITaxon%3A1827100","Capnocytophaga sp. JCM 8568"]]},{"id":"NCBITaxon:45634","l":"Streptococcus cristatus","na":1,"nb":4,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["NCBITaxon%3A45634","Streptococcus cristatus"],["NCBITaxon%3A1302863","Streptococcus cristatus AS 1.3089"],["NCBITaxon%3A889201","Streptococcus cristatus ATCC 51100"],["NCBITaxon%3A1305","Streptococcus sanguinis"]]},{"id":"NCBITaxon:476","l":"Moraxella bovis","na":1,"nb":4,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"]],"b":[["NCBITaxon%3A476","Moraxella bovis"],["NCBITaxon%3A387425","Moraxella bovis Epp63"],["NCBITaxon%3A386891","Moraxella bovoculi"],["NCBITaxon%3A60442","Moraxella equi"]]},{"id":"NCBITaxon:477974","l":"Candidatus Desulforudis audaxviator MP104C","na":4,"nb":1,"a":[["borehole-envo-00002226.html","borehole"],["gold-mine-envo-00002168.html","gold mine"],["style-bto-0001313.html","style"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A477974","Candidatus Desulforudis audaxviator MP104C"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae (strain ATCC 42149 / RIB 40)","na":4,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["mountain-pass-envo-00000084.html","mountain pass"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A510516","Aspergillus oryzae RIB40"]]},{"id":"NCBITaxon:525919","l":"Anaerococcus prevotii DSM 20548","na":1,"nb":4,"a":[["blood-plasma-bto-0000131.html","blood plasma"]],"b":[["NCBITaxon%3A33034","Anaerococcus prevotii"],["NCBITaxon%3A525919","Anaerococcus prevotii DSM 20548"],["NCBITaxon%3A81462","Thermanaerovibrio acidaminovorans"],["NCBITaxon%3A525903","Thermanaerovibrio acidaminovorans DSM 6589"]]},{"id":"NCBITaxon:53249","l":"","na":4,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["aquaculture-farm-envo-03600074.html","aquaculture farm"],["fumarole-envo-00000216.html","fumarole"]],"b":[["NCBITaxon%3A53249","Pseudoalteromonas sp."]]},{"id":"NCBITaxon:546263","l":"Neisseria elongata subsp. glycolytica ATCC 29315","na":1,"nb":4,"a":[["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["NCBITaxon%3A495","Neisseria elongata"],["NCBITaxon%3A88719","Neisseria elongata subsp. glycolytica"],["NCBITaxon%3A546263","Neisseria elongata subsp. glycolytica ATCC 29315"],["NCBITaxon%3A90367","Neisseria elongata subsp. nitroreducens"]]},{"id":"NCBITaxon:622637","l":"Methylocystis sp. ATCC 49242","na":4,"nb":1,"a":[["park-envo-00000562.html","park"],["sewage-plant-envo-00003043.html","sewage plant"],["rice-field-envo-00000296.html","rice field"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["NCBITaxon%3A622637","Methylocystis sp. ATCC 49242"]]},{"id":"NCBITaxon:644281","l":"Methanocaldococcus sp. FS406-22","na":4,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"],["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A644281","Methanocaldococcus sp. FS406-22"]]},{"id":"NCBITaxon:67274","l":"Streptomyces argenteolus","na":1,"nb":4,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A67274","Streptomyces argenteolus"],["NCBITaxon%3A285516","Streptomyces argenteolus subsp. toyonakensis"],["NCBITaxon%3A1911","Streptomyces griseus"],["NCBITaxon%3A67263","Streptomyces griseus subsp. griseus"]]},{"id":"NCBITaxon:703","l":"Plesiomonas shigelloides","na":1,"nb":4,"a":[["feces-uberon-0001988.html","feces"]],"b":[["NCBITaxon%3A703","Plesiomonas shigelloides"],["NCBITaxon%3A1315976","Plesiomonas shigelloides 302-73"],["NCBITaxon%3A1354269","Plesiomonas shigelloides ATCC 14029"],["NCBITaxon%3A3398690","Plesiomonas shigelloides subsp. oncorhynchi"]]},{"id":"NCBITaxon:710685","l":"Mycolicibacterium rhodesiae NBB3","na":4,"nb":1,"a":[["bar-envo-00000167.html","bar"],["estuary-envo-00000045.html","estuary"],["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"],["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A710685","Mycolicibacterium rhodesiae NBB3"]]},{"id":"NCBITaxon:746360","l":"Pseudomonas fluorescens WH6","na":4,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["human-construction-envo-00000070.html","human construction"],["cold-environment-envo-01000309.html","cold environment"],["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A746360","Pseudomonas fluorescens WH6"]]},{"id":"NCBITaxon:76936","l":"Helicobacter typhlonius","na":1,"nb":4,"a":[["ht-29-cell-bto-0000182.html","HT-29 cell"]],"b":[["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"],["NCBITaxon%3A87012","Helicobacter mesocricetorum"],["NCBITaxon%3A76936","Helicobacter typhlonius"]]},{"id":"NCBITaxon:82983","l":"Obesumbacterium proteus","na":1,"nb":4,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A82983","Obesumbacterium proteus"],["NCBITaxon%3A1354268","Obesumbacterium proteus ATCC 12841"],["NCBITaxon%3A570012","Shimwellia pseudoproteus"]]},{"id":"NCBITaxon:83449","l":"Cystobacter ferrugineus","na":4,"nb":1,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["wood-bto-0005516.html","wood"],["sand-envo-01000017.html","sand"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A83449","Cystobacter ferrugineus"]]},{"id":"NCBITaxon:839","l":"Xylanibacter ruminicola","na":1,"nb":4,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A1531","Enterocloster clostridioformis"],["NCBITaxon%3A839","Xylanibacter ruminicola"],["NCBITaxon%3A264731","Xylanibacter ruminicola 23"],["NCBITaxon%3A1410667","Xylanibacter ruminicola Ga6B6"]]},{"id":"NCBITaxon:85402","l":"Mannheimia granulomatis","na":1,"nb":4,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"]],"b":[["NCBITaxon%3A56878","Helicobacter salomonis"],["NCBITaxon%3A85402","Mannheimia granulomatis"],["NCBITaxon%3A1122190","Mannheimia granulomatis DSM 19156"],["NCBITaxon%3A2081794","Mannheimia sp."]]},{"id":"NCBITaxon:859144","l":"Cytobacillus gottheilii","na":1,"nb":4,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["NCBITaxon%3A1416876","Actinomycetospora rhizophila"],["NCBITaxon%3A859144","Cytobacillus gottheilii"],["NCBITaxon%3A33903","Streptomyces avermitilis"],["NCBITaxon%3A227882","Streptomyces avermitilis MA-4680 = NBRC 14893"]]},{"id":"NCBITaxon:930","l":"Acidithiobacillus thiooxidans","na":1,"nb":4,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A3063952","Acidithiobacillus concretivorus"],["NCBITaxon%3A930","Acidithiobacillus thiooxidans"],["NCBITaxon%3A1432062","Acidithiobacillus thiooxidans A01"],["NCBITaxon%3A637390","Acidithiobacillus thiooxidans ATCC 19377"]]},{"id":"NCBITaxon:1000589","l":"","na":1,"nb":3,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1334","Streptococcus dysgalactiae"],["NCBITaxon%3A119602","Streptococcus dysgalactiae subsp. equisimilis"],["NCBITaxon%3A1000589","Streptococcus dysgalactiae subsp. equisimilis SK1249"]]},{"id":"NCBITaxon:1003237","l":"Nitrospirillum amazonense Y2","na":1,"nb":3,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A28077","Nitrospirillum amazonense"],["NCBITaxon%3A3144925","Nitrospirillum viridazoti"],["NCBITaxon%3A1003237","Nitrospirillum viridazoti Y2"]]},{"id":"NCBITaxon:1004151","l":"","na":1,"nb":3,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1004150","Photorhabdus khanii"],["NCBITaxon%3A1004151","Photorhabdus khanii NC19"],["NCBITaxon%3A2675885","Photorhabdus khanii subsp. khanii"]]},{"id":"NCBITaxon:100469","l":"Schaalia canis","na":3,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A100469","Schaalia canis"]]},{"id":"NCBITaxon:1006","l":"Marivirga tractuosa","na":1,"nb":3,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A2010992","Marivirga harenae"],["NCBITaxon%3A1006","Marivirga tractuosa"],["NCBITaxon%3A643867","Marivirga tractuosa DSM 4126"]]},{"id":"NCBITaxon:1007092","l":"Microlunatus terrae","na":3,"nb":1,"a":[["forested-area-envo-00000111.html","forested area"],["soil-envo-00001998.html","soil"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A1007092","Microlunatus terrae"]]},{"id":"NCBITaxon:1008","l":"Saprospira grandis","na":1,"nb":3,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A1008","Saprospira grandis"],["NCBITaxon%3A694433","Saprospira grandis DSM 2844"],["NCBITaxon%3A984262","Saprospira grandis str. Lewin"]]},{"id":"NCBITaxon:1010","l":"Sphingobacterium mizutaii","na":1,"nb":3,"a":[["gut-bto-0000545.html","gut"]],"b":[["NCBITaxon%3A239","Flavobacterium sp."],["NCBITaxon%3A1010","Sphingobacterium mizutaii"],["NCBITaxon%3A1220576","Sphingobacterium mizutaii NBRC 14946 = DSM 11724"]]},{"id":"NCBITaxon:1012","l":"Sporocytophaga cauliformis","na":3,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"]],"b":[["NCBITaxon%3A1012","Sporocytophaga cauliformis"]]},{"id":"NCBITaxon:102232","l":"Gloeocapsa sp. PCC 73106","na":3,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A102232","Gloeocapsa sp. PCC 73106"]]},{"id":"NCBITaxon:1031536","l":"Campylobacter lari subsp. concheus LMG 11760","na":1,"nb":3,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A201","Campylobacter lari"],["NCBITaxon%3A488545","Campylobacter lari subsp. concheus"],["NCBITaxon%3A1031536","Campylobacter lari subsp. concheus LMG 11760"]]},{"id":"NCBITaxon:1031541","l":"Tropicimonas sediminicola","na":3,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"],["aquaculture-farm-envo-03600074.html","aquaculture farm"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A1031541","Tropicimonas sediminicola"]]},{"id":"NCBITaxon:1031752","l":"Campylobacter hyointestinalis subsp. lawsonii CCUG 27631","na":1,"nb":3,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["NCBITaxon%3A198","Campylobacter hyointestinalis"],["NCBITaxon%3A91353","Campylobacter hyointestinalis subsp. lawsonii"],["NCBITaxon%3A1031752","Campylobacter hyointestinalis subsp. lawsonii CCUG 27631"]]},{"id":"NCBITaxon:1032845","l":"","na":1,"nb":3,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A781","Rickettsia conorii"],["NCBITaxon%3A226665","Rickettsia conorii subsp. heilongjiangensis"],["NCBITaxon%3A1032845","Rickettsia conorii subsp. heilongjiangensis 054"]]},{"id":"NCBITaxon:1036743","l":"Rhodospirillum rubrum F11","na":1,"nb":3,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1085","Rhodospirillum rubrum"],["NCBITaxon%3A269796","Rhodospirillum rubrum ATCC 11170"],["NCBITaxon%3A1036743","Rhodospirillum rubrum F11"]]},{"id":"NCBITaxon:103710","l":"Cellulomonas sp. GM13","na":3,"nb":1,"a":[["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["NCBITaxon%3A103710","Cellulomonas sp. GM13"]]},{"id":"NCBITaxon:103728","l":"Actinokineospora diospyrosa","na":3,"nb":1,"a":[["inflorescence-bto-0000628.html","inflorescence"],["plant-bto-0001481.html","plant"],["root-bto-0001188.html","root"]],"b":[["NCBITaxon%3A103728","Actinokineospora diospyrosa"]]},{"id":"NCBITaxon:103732","l":"Lentzea flava","na":3,"nb":1,"a":[["biofilm-material-envo-01000156.html","biofilm material"],["farm-envo-00000078.html","farm"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A103732","Lentzea flava"]]},{"id":"NCBITaxon:1037355","l":"","na":3,"nb":1,"a":[["undersea-feature-envo-00000104.html","undersea feature"],["city-envo-00000856.html","city"],["factory-envo-01000536.html","factory"]],"b":[["NCBITaxon%3A879969","Macellibacteroides fermentans"]]},{"id":"NCBITaxon:1037411","l":"Lactobacillus johnsonii pf01","na":3,"nb":1,"a":[["duodenum-bto-0000365.html","duodenum"],["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"],["jejunal-epithelium-bto-0001743.html","jejunal epithelium"]],"b":[["NCBITaxon%3A1037411","Lactobacillus johnsonii pf01"]]},{"id":"NCBITaxon:1038928","l":"Streptomyces xinghaiensis","na":1,"nb":3,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1906","Streptomyces fradiae"],["NCBITaxon%3A1038928","Streptomyces xinghaiensis"],["NCBITaxon%3A1038929","Streptomyces xinghaiensis S187"]]},{"id":"NCBITaxon:1040984","l":"Mesorhizobium sp. WSM1293","na":3,"nb":1,"a":[["beach-envo-00000091.html","beach"],["intertidal-zone-envo-00000316.html","intertidal zone"],["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1040984","Mesorhizobium sp. WSM1293"]]},{"id":"NCBITaxon:1041150","l":"Sinorhizobium medicae WSM244","na":3,"nb":1,"a":[["joint-bto-0001686.html","joint"],["rhizosphere-envo-00005801.html","rhizosphere"],["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A1041150","Sinorhizobium medicae WSM244"]]},{"id":"NCBITaxon:1051353","l":"Escherichia coli ATCC 700728","na":1,"nb":3,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1051353","Escherichia coli ATCC 700728"],["NCBITaxon%3A1236522","Escherichia coli JCM 18426"]]},{"id":"NCBITaxon:105420","l":"Streptacidiphilus neutrinimicus","na":3,"nb":1,"a":[["rhizosphere-envo-00005801.html","rhizosphere"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["NCBITaxon%3A105420","Streptacidiphilus neutrinimicus"]]},{"id":"NCBITaxon:1054942","l":"Candidatus Arthromitus sp. SFB-1","na":3,"nb":1,"a":[["filament-bto-0000463.html","filament"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["scolex-bto-0002305.html","scolex"]],"b":[["NCBITaxon%3A1054942","Candidatus Arthromitus sp. SFB-1"]]},{"id":"NCBITaxon:1054943","l":"Candidatus Arthromitus sp. SFB-2","na":3,"nb":1,"a":[["filament-bto-0000463.html","filament"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["scolex-bto-0002305.html","scolex"]],"b":[["NCBITaxon%3A1054943","Candidatus Arthromitus sp. SFB-2"]]},{"id":"NCBITaxon:1068975","l":"Acetobacterium malicum subsp. dehalogenans DSM 11527","na":1,"nb":3,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A52692","Acetobacterium malicum"],["NCBITaxon%3A82116","Acetobacterium malicum subsp. dehalogenans"],["NCBITaxon%3A1068975","Acetobacterium malicum subsp. dehalogenans DSM 11527"]]},{"id":"NCBITaxon:1069073","l":"Haloechinothrix halophila","na":1,"nb":3,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A1069073","Haloechinothrix halophila"],["NCBITaxon%3A3698341","Haloechinothrix halophila 77291"],["NCBITaxon%3A592678","Haloechinothrix halophila YIM 93223"]]},{"id":"NCBITaxon:1069530","l":"Candidatus Paraburkholderia schumanniana","na":3,"nb":1,"a":[["heart-bto-0000562.html","heart"],["mesophyll-bto-0000858.html","mesophyll"],["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A1069530","Candidatus Paraburkholderia schumanniana"]]},{"id":"NCBITaxon:1075399","l":"Blattabacterium sp. (Cryptocercus punctulatus) str. Cpu","na":3,"nb":1,"a":[["abdominal-adipose-tissue-bto-0004041.html","abdominal adipose tissue"],["hindgut-bto-0000510.html","hindgut"],["wood-bto-0005516.html","wood"]],"b":[["NCBITaxon%3A1075399","Blattabacterium sp. (Cryptocercus punctulatus) str. Cpu"]]},{"id":"NCBITaxon:107633","l":"Methylocystis sp. LW5","na":3,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A107633","Methylocystis sp. LW5"]]},{"id":"NCBITaxon:1077942","l":"Micromonospora kangleipakensis","na":3,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"],["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A1077942","Micromonospora kangleipakensis"]]},{"id":"NCBITaxon:1080179","l":"Burkholderia sp. UYPR1.413","na":3,"nb":1,"a":[["plantation-envo-00000117.html","plantation"],["agricultural-field-envo-00000114.html","agricultural field"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A1080179","Burkholderia sp. UYPR1.413"]]},{"id":"NCBITaxon:108901","l":"Porodaedalea pini","na":3,"nb":1,"a":[["lake-envo-00000020.html","lake"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["organic-material-envo-01000155.html","organic material"]],"b":[["NCBITaxon%3A108901","Porodaedalea pini"]]},{"id":"NCBITaxon:1091045","l":"Cutibacterium acnes subsp. defendens ATCC 11828","na":1,"nb":3,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A1747","Cutibacterium acnes"],["NCBITaxon%3A1905725","Cutibacterium acnes subsp. defendens"],["NCBITaxon%3A1091045","Cutibacterium acnes subsp. defendens ATCC 11828"]]},{"id":"NCBITaxon:109635","l":"Flammula alnicola","na":3,"nb":1,"a":[["lake-envo-00000020.html","lake"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["organic-material-envo-01000155.html","organic material"]],"b":[["NCBITaxon%3A109635","Flammula alnicola"]]},{"id":"NCBITaxon:110505","l":"Mycobacterium heckeshornense","na":3,"nb":1,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["respiratory-airway-uberon-0001005.html","respiratory airway"],["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A110505","Mycobacterium heckeshornense"]]},{"id":"NCBITaxon:110643","l":"Arthrobacter sp. 'SMCC ZAT001'","na":3,"nb":1,"a":[["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["NCBITaxon%3A110643","Arthrobacter sp. 'SMCC ZAT001'"]]},{"id":"NCBITaxon:110845","l":"","na":1,"nb":3,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A2599412","Paracoccus aurantiacus"],["NCBITaxon%3A110845","Phocicoccus pinnipedialis"],["NCBITaxon%3A1812261","Phocicoccus schoeneichii"]]},{"id":"NCBITaxon:111769","l":"Thiothrix unzii","na":3,"nb":1,"a":[["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"],["stream-envo-00000023.html","stream"]],"b":[["NCBITaxon%3A111769","Thiothrix unzii"]]},{"id":"NCBITaxon:1118964","l":"Mesomycoplasma hyorhinis SK76","na":3,"nb":1,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"],["prostate-gland-bto-0001129.html","prostate gland"],["prostate-gland-cancer-cell-bto-0001130.html","prostate gland cancer cell"]],"b":[["NCBITaxon%3A1118964","Mesomycoplasma hyorhinis SK76"]]},{"id":"NCBITaxon:1121336","l":"Thermoclostridium stercorarium subsp. thermolacticum DSM 2910","na":1,"nb":3,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A1510","Thermoclostridium stercorarium"],["NCBITaxon%3A29351","Thermoclostridium stercorarium subsp. thermolacticum"],["NCBITaxon%3A1121336","Thermoclostridium stercorarium subsp. thermolacticum DSM 2910"]]},{"id":"NCBITaxon:1121435","l":"","na":1,"nb":3,"a":[["fresh-water-envo-00002011.html","fresh water"]],"b":[["NCBITaxon%3A873","Desulfocurvibacter africanus"],["NCBITaxon%3A1511600","Desulfocurvibacter africanus subsp. africanus"],["NCBITaxon%3A1121435","Desulfocurvibacter africanus subsp. africanus DSM 2603"]]},{"id":"NCBITaxon:112234","l":"Chryseobacterium joostei","na":1,"nb":3,"a":[["reservoir-envo-00000025.html","reservoir"]],"b":[["NCBITaxon%3A112234","Chryseobacterium joostei"],["NCBITaxon%3A1255689","Chryseobacterium joostei PCAi_D6.3"],["NCBITaxon%3A1871047","Chryseobacterium sp."]]},{"id":"NCBITaxon:1122921","l":"Paenibacillus massiliensis 2301065 = DSM 16942","na":1,"nb":3,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A225917","Paenibacillus massiliensis"],["NCBITaxon%3A1122921","Paenibacillus massiliensis 2301065 = DSM 16942"],["NCBITaxon%3A2884454","Paenibacillus massiliensis subsp. massiliensis"]]},{"id":"NCBITaxon:1123015","l":"Pseudomonas aeruginosa DSM 50071 = NBRC 12689","na":1,"nb":3,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1123015","Pseudomonas aeruginosa DSM 50071 = NBRC 12689"],["NCBITaxon%3A1236528","Pseudomonas aeruginosa JCM 5962"]]},{"id":"NCBITaxon:1128671","l":"Microvirga arabica","na":1,"nb":3,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A1651218","Delftia deserti"],["NCBITaxon%3A1128671","Microvirga arabica"],["NCBITaxon%3A1243014","Vibrio thalassae"]]},{"id":"NCBITaxon:1134510","l":"Bartonella koehlerae C-29","na":1,"nb":3,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["NCBITaxon%3A92181","Bartonella koehlerae"],["NCBITaxon%3A1134510","Bartonella koehlerae C-29"],["NCBITaxon%3A1819240","Bartonella koehlerae subsp. koehlerae"]]},{"id":"NCBITaxon:1137988","l":"Geodermatophilus tzadiensis","na":3,"nb":1,"a":[["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A1137988","Geodermatophilus tzadiensis"]]},{"id":"NCBITaxon:114197","l":"Pseudoselenomonas lactilytica","na":1,"nb":3,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A114197","Pseudoselenomonas lactilytica"],["NCBITaxon%3A971","Pseudoselenomonas ruminantium"],["NCBITaxon%3A927704","Selenomonas ruminantium subsp. lactilytica TAM6421"]]},{"id":"NCBITaxon:1147128","l":"Bifidobacterium asteroides PRL2011","na":3,"nb":1,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"],["hindgut-bto-0000510.html","hindgut"],["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["NCBITaxon%3A1147128","Bifidobacterium asteroides PRL2011"]]},{"id":"NCBITaxon:1150460","l":"Bifidobacterium catenulatum subsp. kashiwanohense JCM 15439 = DSM 21854","na":1,"nb":3,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A1686","Bifidobacterium catenulatum"],["NCBITaxon%3A630129","Bifidobacterium catenulatum subsp. kashiwanohense"],["NCBITaxon%3A1150460","Bifidobacterium catenulatum subsp. kashiwanohense JCM 15439 = DSM 21854"]]},{"id":"NCBITaxon:115542","l":"Loigolactobacillus coryniformis subsp. torquens","na":1,"nb":3,"a":[["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A1610","Loigolactobacillus coryniformis"],["NCBITaxon%3A115542","Loigolactobacillus coryniformis subsp. torquens"],["NCBITaxon%3A1423822","Loigolactobacillus coryniformis subsp. torquens DSM 20004 = KCTC 3535"]]},{"id":"NCBITaxon:115778","l":"Leuconostoc gasicomitatum","na":1,"nb":3,"a":[["research-facility-envo-00000469.html","research facility"]],"b":[["NCBITaxon%3A115778","Leuconostoc gasicomitatum"],["NCBITaxon%3A1165892","Leuconostoc gasicomitatum KG16-1"],["NCBITaxon%3A762550","Leuconostoc gasicomitatum LMG 18811"]]},{"id":"NCBITaxon:1159213","l":"Peptostreptococcus canis","na":3,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["dental-plaque-uberon-0016482.html","dental plaque"],["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A1159213","Peptostreptococcus canis"]]},{"id":"NCBITaxon:1159496","l":"Cronobacter dublinensis subsp. lactaridi LMG 23825","na":1,"nb":3,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A413497","Cronobacter dublinensis"],["NCBITaxon%3A413499","Cronobacter dublinensis subsp. lactaridi"],["NCBITaxon%3A1159496","Cronobacter dublinensis subsp. lactaridi LMG 23825"]]},{"id":"NCBITaxon:1159554","l":"Cronobacter dublinensis subsp. dublinensis LMG 23823","na":1,"nb":3,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A413497","Cronobacter dublinensis"],["NCBITaxon%3A413498","Cronobacter dublinensis subsp. dublinensis"],["NCBITaxon%3A1159554","Cronobacter dublinensis subsp. dublinensis LMG 23823"]]},{"id":"NCBITaxon:1159560","l":"Cronobacter dublinensis subsp. lausannensis LMG 23824","na":1,"nb":3,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A413497","Cronobacter dublinensis"],["NCBITaxon%3A413500","Cronobacter dublinensis subsp. lausannensis"],["NCBITaxon%3A1159560","Cronobacter dublinensis subsp. lausannensis LMG 23824"]]},{"id":"NCBITaxon:1159752","l":"Enterococcus lemanii","na":3,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"]],"b":[["NCBITaxon%3A1159752","Enterococcus lemanii"]]},{"id":"NCBITaxon:1159753","l":"Enterococcus eurekensis","na":3,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"]],"b":[["NCBITaxon%3A1159753","Enterococcus eurekensis"]]},{"id":"NCBITaxon:116087","l":"Gallicola barnesae","na":3,"nb":1,"a":[["intestine-environment-envo-2100002.html","intestine environment"],["sludge-envo-00002044.html","sludge"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A116087","Gallicola barnesae"]]},{"id":"NCBITaxon:1169025","l":"Streptomyces pratensis","na":1,"nb":3,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A52258","Streptomyces flavovirens"],["NCBITaxon%3A1169025","Streptomyces pratensis"],["NCBITaxon%3A591167","Streptomyces pratensis ATCC 33331"]]},{"id":"NCBITaxon:1172194","l":"Hydrocarboniphaga effusa AP103","na":1,"nb":3,"a":[["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A243629","Hydrocarboniphaga effusa"],["NCBITaxon%3A1172194","Hydrocarboniphaga effusa AP103"],["NCBITaxon%3A77608","Pseudoalteromonas distincta"]]},{"id":"NCBITaxon:117567","l":"Mycolicibacterium frederiksbergense","na":3,"nb":1,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A117567","Mycolicibacterium frederiksbergense"]]},{"id":"NCBITaxon:117680","l":"Pseudomonas reactans","na":3,"nb":1,"a":[["sea-water-envo-00002149.html","sea water"],["farm-envo-00000078.html","farm"],["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["NCBITaxon%3A117680","Pseudomonas reactans"]]},{"id":"NCBITaxon:1178541","l":"Bacillus safensis FO-36b","na":1,"nb":3,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A561879","Bacillus safensis"],["NCBITaxon%3A1178541","Bacillus safensis FO-36b"],["NCBITaxon%3A2490859","Bacillus safensis subsp. safensis"]]},{"id":"NCBITaxon:118062","l":"Methanobacterium congolense","na":3,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A118062","Methanobacterium congolense"]]},{"id":"NCBITaxon:1188","l":"Tolypothrix sp. PCC 7601","na":1,"nb":3,"a":[["photoreceptor-cell-bto-0001060.html","photoreceptor cell"]],"b":[["NCBITaxon%3A293451","Fremyella diplosiphon Fd33"],["NCBITaxon%3A1188","Tolypothrix sp. PCC 7601"],["NCBITaxon%3A169964","Tolypothrix sp. PCC 7601/1"]]},{"id":"NCBITaxon:1194085","l":"Staphylococcus aureus subsp. aureus SA40","na":3,"nb":1,"a":[["a-549-cell-bto-0000018.html","A-549 cell"],["neutrophil-bto-0000130.html","neutrophil"],["suprachiasmatic-nucleus-bto-0001822.html","suprachiasmatic nucleus"]],"b":[["NCBITaxon%3A1194085","Staphylococcus aureus subsp. aureus SA40"]]},{"id":"NCBITaxon:1201010","l":"Staphylococcus aureus subsp. aureus SA957","na":3,"nb":1,"a":[["a-549-cell-bto-0000018.html","A-549 cell"],["neutrophil-bto-0000130.html","neutrophil"],["suprachiasmatic-nucleus-bto-0001822.html","suprachiasmatic nucleus"]],"b":[["NCBITaxon%3A1201010","Staphylococcus aureus subsp. aureus SA957"]]},{"id":"NCBITaxon:1214102","l":"","na":1,"nb":3,"a":[["brain-bto-0000142.html","brain"]],"b":[["NCBITaxon%3A1766","Mycolicibacterium fortuitum"],["NCBITaxon%3A144549","Mycolicibacterium fortuitum subsp. fortuitum"],["NCBITaxon%3A1214102","Mycolicibacterium fortuitum subsp. fortuitum DSM 46621 = ATCC 6841 = JCM 6387"]]},{"id":"NCBITaxon:1217420","l":"Lactobacillus delbrueckii subsp. jakobsenii ZN7a-9 = DSM 26046","na":1,"nb":3,"a":[["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A1584","Lactobacillus delbrueckii"],["NCBITaxon%3A1537158","Lactobacillus delbrueckii subsp. jakobsenii"],["NCBITaxon%3A1217420","Lactobacillus delbrueckii subsp. jakobsenii ZN7a-9 = DSM 26046"]]},{"id":"NCBITaxon:121872","l":"Natrinema thermotolerans","na":1,"nb":3,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A121872","Natrinema thermotolerans"],["NCBITaxon%3A1455609","Natrinema thermotolerans A29"],["NCBITaxon%3A1227489","Natrinema thermotolerans DSM 11552"]]},{"id":"NCBITaxon:1218948","l":"Pseudomonas fluorescens PF5","na":3,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["human-construction-envo-00000070.html","human construction"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A1218948","Pseudomonas fluorescens PF5"]]},{"id":"NCBITaxon:1224749","l":"Exiguobacterium sp. ZWU0009","na":3,"nb":1,"a":[["epithelium-bto-0000416.html","epithelium"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1224749","Exiguobacterium sp. ZWU0009"]]},{"id":"NCBITaxon:122866","l":"Arthrobacter keyseri","na":3,"nb":1,"a":[["farm-envo-00000078.html","farm"],["intestine-environment-envo-2100002.html","intestine environment"],["cropland-biome-envo-01000245.html","cropland biome"]],"b":[["NCBITaxon%3A122866","Arthrobacter keyseri"]]},{"id":"NCBITaxon:1232438","l":"Clostridiales bacterium VE202-01","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232438","Clostridiales bacterium VE202-01"]]},{"id":"NCBITaxon:1232439","l":"Clostridiales bacterium VE202-03","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232439","Clostridiales bacterium VE202-03"]]},{"id":"NCBITaxon:1232440","l":"Hungatella hathewayi VE202-04","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232440","Hungatella hathewayi VE202-04"]]},{"id":"NCBITaxon:1232442","l":"Clostridiales bacterium VE202-06","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232442","Clostridiales bacterium VE202-06"]]},{"id":"NCBITaxon:1232443","l":"Clostridiales bacterium VE202-13","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232443","Clostridiales bacterium VE202-13"]]},{"id":"NCBITaxon:1232444","l":"Clostridiales bacterium VE202-15","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232444","Clostridiales bacterium VE202-15"]]},{"id":"NCBITaxon:1232445","l":"Clostridiales bacterium VE202-16","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232445","Clostridiales bacterium VE202-16"]]},{"id":"NCBITaxon:1232446","l":"Clostridiales bacterium VE202-18","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232446","Clostridiales bacterium VE202-18"]]},{"id":"NCBITaxon:1232447","l":"Clostridiales bacterium VE202-09","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232447","Clostridiales bacterium VE202-09"]]},{"id":"NCBITaxon:1232448","l":"Clostridiales bacterium VE202-07","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232448","Clostridiales bacterium VE202-07"]]},{"id":"NCBITaxon:1232449","l":"Clostridiales bacterium VE202-08","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232449","Clostridiales bacterium VE202-08"]]},{"id":"NCBITaxon:1232452","l":"Clostridiales bacterium VE202-14","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232452","Clostridiales bacterium VE202-14"]]},{"id":"NCBITaxon:1232453","l":"Clostridiales bacterium VE202-21","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232453","Clostridiales bacterium VE202-21"]]},{"id":"NCBITaxon:1232454","l":"Clostridiales bacterium VE202-26","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232454","Clostridiales bacterium VE202-26"]]},{"id":"NCBITaxon:1232457","l":"Clostridiales bacterium VE202-27","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232457","Clostridiales bacterium VE202-27"]]},{"id":"NCBITaxon:1232458","l":"Clostridiales bacterium VE202-29","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232458","Clostridiales bacterium VE202-29"]]},{"id":"NCBITaxon:1232460","l":"Clostridiales bacterium VE202-28","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232460","Clostridiales bacterium VE202-28"]]},{"id":"NCBITaxon:1233262","l":"Mycoplasmoides pneumoniae PO1","na":3,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1233262","Mycoplasmoides pneumoniae PO1"]]},{"id":"NCBITaxon:1236540","l":"Prolixibacter bellariivorans JCM 13498","na":1,"nb":3,"a":[["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A314319","Prolixibacter bellariivorans"],["NCBITaxon%3A1408473","Prolixibacter bellariivorans ATCC BAA-1284"],["NCBITaxon%3A1236540","Prolixibacter bellariivorans JCM 13498"]]},{"id":"NCBITaxon:1236904","l":"Mycoplasmoides pneumoniae PI 1428","na":3,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1236904","Mycoplasmoides pneumoniae PI 1428"]]},{"id":"NCBITaxon:1246994","l":"Elizabethkingia anophelis R26","na":1,"nb":3,"a":[["midgut-bto-0000863.html","midgut"]],"b":[["NCBITaxon%3A1117645","Elizabethkingia anophelis"],["NCBITaxon%3A1246994","Elizabethkingia anophelis R26"],["NCBITaxon%3A3047319","Elizabethkingia anophelis subsp. anophelis"]]},{"id":"NCBITaxon:1267000","l":"Metamycoplasma hominis ATCC 27545","na":1,"nb":3,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A2098","Metamycoplasma hominis"],["NCBITaxon%3A347256","Metamycoplasma hominis ATCC 23114"],["NCBITaxon%3A1267000","Metamycoplasma hominis ATCC 27545"]]},{"id":"NCBITaxon:1267545","l":"Pectobacterium carotovorum subsp. carotovorum ICMP 5702","na":1,"nb":3,"a":[["tuber-bto-0001400.html","tuber"]],"b":[["NCBITaxon%3A554","Pectobacterium carotovorum"],["NCBITaxon%3A555","Pectobacterium carotovorum subsp. carotovorum"],["NCBITaxon%3A1267545","Pectobacterium carotovorum subsp. carotovorum ICMP 5702"]]},{"id":"NCBITaxon:1279038","l":"Novispirillum itersonii subsp. itersonii ATCC 12639","na":1,"nb":3,"a":[["pond-envo-00000033.html","pond"]],"b":[["NCBITaxon%3A189","Novispirillum itersonii"],["NCBITaxon%3A180199","Novispirillum itersonii subsp. itersonii"],["NCBITaxon%3A1279038","Novispirillum itersonii subsp. itersonii ATCC 12639"]]},{"id":"NCBITaxon:1281486","l":"Lactococcus formosensis","na":1,"nb":3,"a":[["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A1281486","Lactococcus formosensis"],["NCBITaxon%3A1850438","Lactococcus formosensis subsp. bovis"],["NCBITaxon%3A2906461","Lactococcus formosensis subsp. formosensis"]]},{"id":"NCBITaxon:1282664","l":"Streptococcus oralis subsp. tigurinus AZ_3a","na":1,"nb":3,"a":[["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1077464","Streptococcus oralis subsp. tigurinus"],["NCBITaxon%3A1282664","Streptococcus oralis subsp. tigurinus AZ_3a"]]},{"id":"NCBITaxon:1282665","l":"Streptococcus oralis subsp. tigurinus 1366","na":1,"nb":3,"a":[["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1077464","Streptococcus oralis subsp. tigurinus"],["NCBITaxon%3A1282665","Streptococcus oralis subsp. tigurinus 1366"]]},{"id":"NCBITaxon:1286329","l":"Escherichia coli TOP379","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286329","Escherichia coli TOP379"]]},{"id":"NCBITaxon:1286330","l":"Escherichia coli TOP382-1","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286330","Escherichia coli TOP382-1"]]},{"id":"NCBITaxon:1286331","l":"Escherichia coli TOP382-2","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286331","Escherichia coli TOP382-2"]]},{"id":"NCBITaxon:1286332","l":"Escherichia coli TOP382-3","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286332","Escherichia coli TOP382-3"]]},{"id":"NCBITaxon:1286333","l":"Escherichia coli TOP291","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286333","Escherichia coli TOP291"]]},{"id":"NCBITaxon:1286334","l":"Escherichia coli TOP293-1","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286334","Escherichia coli TOP293-1"]]},{"id":"NCBITaxon:1286335","l":"Escherichia coli TOP293-2","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286335","Escherichia coli TOP293-2"]]},{"id":"NCBITaxon:1286336","l":"Escherichia coli TOP293-3","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286336","Escherichia coli TOP293-3"]]},{"id":"NCBITaxon:1286337","l":"Escherichia coli TOP293-4","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286337","Escherichia coli TOP293-4"]]},{"id":"NCBITaxon:1286338","l":"Escherichia coli TOP498","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286338","Escherichia coli TOP498"]]},{"id":"NCBITaxon:1286339","l":"Escherichia coli TOP550-1","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286339","Escherichia coli TOP550-1"]]},{"id":"NCBITaxon:1286340","l":"Escherichia coli TOP550-2","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286340","Escherichia coli TOP550-2"]]},{"id":"NCBITaxon:1286341","l":"Escherichia coli TOP550-3","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286341","Escherichia coli TOP550-3"]]},{"id":"NCBITaxon:1286342","l":"Escherichia coli TOP550-4","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286342","Escherichia coli TOP550-4"]]},{"id":"NCBITaxon:1286343","l":"Escherichia coli TOP2386","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286343","Escherichia coli TOP2386"]]},{"id":"NCBITaxon:1286344","l":"Escherichia coli TOP2396-1","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286344","Escherichia coli TOP2396-1"]]},{"id":"NCBITaxon:1286345","l":"Escherichia coli TOP2396-2","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286345","Escherichia coli TOP2396-2"]]},{"id":"NCBITaxon:1286346","l":"Escherichia coli TOP2396-3","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286346","Escherichia coli TOP2396-3"]]},{"id":"NCBITaxon:1286347","l":"Escherichia coli TOP2515","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286347","Escherichia coli TOP2515"]]},{"id":"NCBITaxon:1292038","l":"Cutibacterium acnes PA2","na":3,"nb":1,"a":[["prostate-gland-bto-0001129.html","prostate gland"],["sebaceous-gland-bto-0001980.html","sebaceous gland"],["urethra-bto-0001426.html","urethra"]],"b":[["NCBITaxon%3A1292038","Cutibacterium acnes PA2"]]},{"id":"NCBITaxon:1292372","l":"Cutibacterium avidum TM16","na":3,"nb":1,"a":[["prostate-gland-bto-0001129.html","prostate gland"],["sebaceous-gland-bto-0001980.html","sebaceous gland"],["urethra-bto-0001426.html","urethra"]],"b":[["NCBITaxon%3A1292372","Cutibacterium avidum TM16"]]},{"id":"NCBITaxon:1293054","l":"Halanaerobium saccharolyticum subsp. saccharolyticum DSM 6643","na":1,"nb":3,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A43595","Halanaerobium saccharolyticum"],["NCBITaxon%3A267736","Halanaerobium saccharolyticum subsp. saccharolyticum"],["NCBITaxon%3A1293054","Halanaerobium saccharolyticum subsp. saccharolyticum DSM 6643"]]},{"id":"NCBITaxon:129578","l":"Oceanimonas baumannii","na":1,"nb":3,"a":[["brackish-water-body-envo-01001321.html","brackish water body"]],"b":[["NCBITaxon%3A164546","Cupriavidus taiwanensis"],["NCBITaxon%3A977880","Cupriavidus taiwanensis LMG 19424"],["NCBITaxon%3A129578","Oceanimonas baumannii"]]},{"id":"NCBITaxon:1296536","l":"Enterobacter hormaechei subsp. xiangfangensis","na":1,"nb":3,"a":[["fibroblast-bto-0000452.html","fibroblast"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A158836","Enterobacter hormaechei"],["NCBITaxon%3A1296536","Enterobacter hormaechei subsp. xiangfangensis"]]},{"id":"NCBITaxon:1297579","l":"Fusobacterium nucleatum CC53","na":3,"nb":1,"a":[["colorectum-bto-0001613.html","colorectum"],["gut-mucosa-bto-0000546.html","gut mucosa"],["lymph-node-bto-0000784.html","lymph node"]],"b":[["NCBITaxon%3A1297579","Fusobacterium nucleatum CC53"]]},{"id":"NCBITaxon:1297857","l":"Streptococcus oralis subsp. dentisani 7747","na":1,"nb":3,"a":[["tooth-bto-0000397.html","tooth"]],"b":[["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1458253","Streptococcus oralis subsp. dentisani"],["NCBITaxon%3A1297857","Streptococcus oralis subsp. dentisani 7747"]]},{"id":"NCBITaxon:1298856","l":"Sphingomonas sp. URHD0007","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1298856","Sphingomonas sp. URHD0007"]]},{"id":"NCBITaxon:1298857","l":"Candidatus Solirubrobacter pratensis","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1298857","Candidatus Solirubrobacter pratensis"]]},{"id":"NCBITaxon:1298861","l":"Lysobacter sp. URHA0019","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1298861","Lysobacter sp. URHA0019"]]},{"id":"NCBITaxon:1298862","l":"Caulobacter sp. URHA0033","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1298862","Caulobacter sp. URHA0033"]]},{"id":"NCBITaxon:1298863","l":"Marmoricola sp. URHB0036","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1298863","Marmoricola sp. URHB0036"]]},{"id":"NCBITaxon:1298864","l":"Mycobacterium sp. URHD0025","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1298864","Mycobacterium sp. URHD0025"]]},{"id":"NCBITaxon:1302620","l":"Cellulomonas sp. URHD0024","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1302620","Cellulomonas sp. URHD0024"]]},{"id":"NCBITaxon:1302863","l":"Streptococcus cristatus AS 1.3089","na":1,"nb":3,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["NCBITaxon%3A45634","Streptococcus cristatus"],["NCBITaxon%3A1302863","Streptococcus cristatus AS 1.3089"],["NCBITaxon%3A28037","Streptococcus mitis"]]},{"id":"NCBITaxon:1308539","l":"Klebsiella pneumoniae subsp. pneumoniae ATCC 43816","na":3,"nb":1,"a":[["j-774a-1-cell-bto-0000804.html","J-774A.1 cell"],["macrophage-cell-line-bto-0002278.html","macrophage cell line"],["raw-264-7-cell-bto-0003292.html","RAW-264.7 cell"]],"b":[["NCBITaxon%3A1308539","Klebsiella pneumoniae subsp. pneumoniae ATCC 43816"]]},{"id":"NCBITaxon:131112","l":"Arcanobacterium phocae","na":3,"nb":1,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A131112","Arcanobacterium phocae"]]},{"id":"NCBITaxon:1336208","l":"Roseomonas gilardii subsp. rosea ATCC BAA-691","na":1,"nb":3,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A257708","Roseomonas gilardii"],["NCBITaxon%3A243956","Roseomonas gilardii subsp. rosea"],["NCBITaxon%3A1336208","Roseomonas gilardii subsp. rosea ATCC BAA-691"]]},{"id":"NCBITaxon:134537","l":"Paraburkholderia fungorum","na":1,"nb":3,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["NCBITaxon%3A36773","Burkholderia sp."],["NCBITaxon%3A134537","Paraburkholderia fungorum"],["NCBITaxon%3A1218077","Paraburkholderia fungorum NBRC 102489"]]},{"id":"NCBITaxon:1348655","l":"Lactococcus cremoris subsp. cremoris NBRC 100676","na":1,"nb":3,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"]],"b":[["NCBITaxon%3A1359","Lactococcus cremoris"],["NCBITaxon%3A2816960","Lactococcus cremoris subsp. cremoris"],["NCBITaxon%3A1348655","Lactococcus cremoris subsp. cremoris NBRC 100676"]]},{"id":"NCBITaxon:137357","l":"Ligilactobacillus equi","na":1,"nb":3,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A137357","Ligilactobacillus equi"],["NCBITaxon%3A1392007","Ligilactobacillus equi DPC 6820"],["NCBITaxon%3A1423740","Ligilactobacillus equi DSM 15833 = JCM 10991"]]},{"id":"NCBITaxon:1380346","l":"Streptomyces sp. URHA0041","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1380346","Streptomyces sp. URHA0041"]]},{"id":"NCBITaxon:1380349","l":"Micromonosporaceae bacterium URHE0070","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1380349","Micromonosporaceae bacterium URHE0070"]]},{"id":"NCBITaxon:1380350","l":"Mesorhizobium sp. URHC0008","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1380350","Mesorhizobium sp. URHC0008"]]},{"id":"NCBITaxon:1380351","l":"Mesorhizobium sp. URHB0007","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1380351","Mesorhizobium sp. URHB0007"]]},{"id":"NCBITaxon:1380352","l":"Bradyrhizobium sp. URHA0013","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1380352","Bradyrhizobium sp. URHA0013"]]},{"id":"NCBITaxon:1380353","l":"Geodermatophilaceae bacterium URHB0062","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1380353","Geodermatophilaceae bacterium URHB0062"]]},{"id":"NCBITaxon:1380354","l":"Cellulomonas sp. URHE0023","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1380354","Cellulomonas sp. URHE0023"]]},{"id":"NCBITaxon:1380355","l":"Bradyrhizobium sp. URHD0069","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1380355","Bradyrhizobium sp. URHD0069"]]},{"id":"NCBITaxon:1380356","l":"Blastococcus sp. URHD0036","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1380356","Blastococcus sp. URHD0036"]]},{"id":"NCBITaxon:1380357","l":"Rhodospirillales bacterium URHD0017","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1380357","Rhodospirillales bacterium URHD0017"]]},{"id":"NCBITaxon:1380385","l":"Variovorax sp. URHB0020","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1380385","Variovorax sp. URHB0020"]]},{"id":"NCBITaxon:1380386","l":"Mycobacterium sp. URHB0044","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1380386","Mycobacterium sp. URHB0044"]]},{"id":"NCBITaxon:1380388","l":"Nocardioides sp. URHA0032","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1380388","Nocardioides sp. URHA0032"]]},{"id":"NCBITaxon:1380389","l":"Sphingomonas sp. URHD0057","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1380389","Sphingomonas sp. URHD0057"]]},{"id":"NCBITaxon:138073","l":"Candidatus Regiella insecticola","na":1,"nb":3,"a":[["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["NCBITaxon%3A138073","Candidatus Regiella insecticola"],["NCBITaxon%3A1005043","Candidatus Regiella insecticola 5.15"],["NCBITaxon%3A663321","Candidatus Regiella insecticola LSR1"]]},{"id":"NCBITaxon:1387353","l":"Paludisphaera borealis","na":3,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["filament-bto-0000463.html","filament"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A1387353","Paludisphaera borealis"]]},{"id":"NCBITaxon:1389489","l":"Leifsonia xyli subsp. cynodontis DSM 46306","na":1,"nb":3,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A1575","Leifsonia xyli"],["NCBITaxon%3A31966","Leifsonia xyli subsp. cynodontis"],["NCBITaxon%3A1389489","Leifsonia xyli subsp. cynodontis DSM 46306"]]},{"id":"NCBITaxon:1390075","l":"Cronobacter turicensis z508","na":1,"nb":3,"a":[["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A1390075","Cronobacter turicensis z508"],["NCBITaxon%3A357233","Siccibacter turicensis"],["NCBITaxon%3A1388748","Siccibacter turicensis LMG 23730"]]},{"id":"NCBITaxon:1397698","l":"Exiguobacterium artemiae 7-3","na":3,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"],["water-ice-envo-01000277.html","water ice"],["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A1397698","Exiguobacterium artemiae 7-3"]]},{"id":"NCBITaxon:1406823","l":"Franconibacter pulveris 601","na":1,"nb":3,"a":[["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A435910","Franconibacter pulveris"],["NCBITaxon%3A1406823","Franconibacter pulveris 601"],["NCBITaxon%3A1121863","Franconibacter pulveris DSM 19144"]]},{"id":"NCBITaxon:1408286","l":"Parvimonas micra A293","na":3,"nb":1,"a":[["alveolar-bone-bto-0001383.html","alveolar bone"],["gingiva-bto-0000519.html","gingiva"],["tooth-bto-0000397.html","tooth"]],"b":[["NCBITaxon%3A1408286","Parvimonas micra A293"]]},{"id":"NCBITaxon:1408360","l":"Campylobacter jejuni subsp. doylei ATCC 49349","na":1,"nb":3,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A197","Campylobacter jejuni"],["NCBITaxon%3A32021","Campylobacter jejuni subsp. doylei"],["NCBITaxon%3A1408360","Campylobacter jejuni subsp. doylei ATCC 49349"]]},{"id":"NCBITaxon:1413215","l":"Geobacillus thermodenitrificans subsp. thermodenitrificans DSM 465","na":1,"nb":3,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A33940","Geobacillus thermodenitrificans"],["NCBITaxon%3A1511749","Geobacillus thermodenitrificans subsp. thermodenitrificans"],["NCBITaxon%3A1413215","Geobacillus thermodenitrificans subsp. thermodenitrificans DSM 465"]]},{"id":"NCBITaxon:143224","l":"Zobellia uliginosa","na":3,"nb":1,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A143224","Zobellia uliginosa"]]},{"id":"NCBITaxon:1452724","l":"Flavobacterium psychrophilum FPG3","na":1,"nb":3,"a":[["kidney-bto-0000671.html","kidney"]],"b":[["NCBITaxon%3A96345","Flavobacterium psychrophilum"],["NCBITaxon%3A1121894","Flavobacterium psychrophilum DSM 3660 = ATCC 49418"],["NCBITaxon%3A1452724","Flavobacterium psychrophilum FPG3"]]},{"id":"NCBITaxon:1454","l":"Schinkia azotoformans","na":1,"nb":3,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A1454","Schinkia azotoformans"],["NCBITaxon%3A1131731","Schinkia azotoformans LMG 9581"],["NCBITaxon%3A1348973","Schinkia azotoformans MEV2011"]]},{"id":"NCBITaxon:1458","l":"Metabacillus fastidiosus","na":1,"nb":3,"a":[["animal-waste-material-envo-00002276.html","animal waste material"]],"b":[["NCBITaxon%3A1458","Metabacillus fastidiosus"],["NCBITaxon%3A1348628","Metabacillus fastidiosus NBRC 101226"],["NCBITaxon%3A83428","uncultured Bacillus sp."]]},{"id":"NCBITaxon:1482","l":"Virgibacillus halodenitrificans","na":1,"nb":3,"a":[["organic-waste-material-envo-00002873.html","organic waste material"]],"b":[["NCBITaxon%3A1482","Virgibacillus halodenitrificans"],["NCBITaxon%3A1196028","Virgibacillus halodenitrificans 1806"],["NCBITaxon%3A1236975","Virgibacillus halodenitrificans JCM 12304"]]},{"id":"NCBITaxon:149712","l":"Desulfovirga adipica","na":3,"nb":1,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["cultivated-environment-envo-01000311.html","cultivated environment"]],"b":[["NCBITaxon%3A149712","Desulfovirga adipica"]]},{"id":"NCBITaxon:1501329","l":"Oribacterium parvum","na":1,"nb":3,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A1501329","Oribacterium parvum"],["NCBITaxon%3A796943","Oribacterium parvum ACB1"],["NCBITaxon%3A796945","Oribacterium parvum ACB8"]]},{"id":"NCBITaxon:1503","l":"Gottschalkia purinilytica","na":3,"nb":1,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A1503","Gottschalkia purinilytica"]]},{"id":"NCBITaxon:1514140","l":"Trieres chinensis","na":3,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["estuarine-biome-envo-01000020.html","estuarine biome"],["shoreline-envo-00000486.html","shoreline"]],"b":[["NCBITaxon%3A1514140","Trieres chinensis"]]},{"id":"NCBITaxon:151416","l":"Allobosea vestrisii","na":1,"nb":3,"a":[["hospital-envo-00002173.html","hospital"]],"b":[["NCBITaxon%3A151416","Allobosea vestrisii"],["NCBITaxon%3A1212487","Allobosea vestrisii 34635"],["NCBITaxon%3A2665495","Phenylobacterium terrae"]]},{"id":"NCBITaxon:152331","l":"Lentilactobacillus parabuchneri","na":1,"nb":3,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["NCBITaxon%3A152331","Lentilactobacillus parabuchneri"],["NCBITaxon%3A1423784","Lentilactobacillus parabuchneri DSM 5707 = NBRC 107865"],["NCBITaxon%3A264697","Peribacillus muralis"]]},{"id":"NCBITaxon:1530","l":"Clostridium carnis","na":3,"nb":1,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["NCBITaxon%3A1530","Clostridium carnis"]]},{"id":"NCBITaxon:1541063","l":"Prolixibacter denitrificans","na":3,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"],["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"]],"b":[["NCBITaxon%3A1541063","Prolixibacter denitrificans"]]},{"id":"NCBITaxon:158500","l":"Novosphingobium resinovorum","na":1,"nb":3,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A1495645","Xanthomarina arctica"],["NCBITaxon%3A158500","Novosphingobium resinovorum"],["NCBITaxon%3A284035","Streptomyces lienomycini"]]},{"id":"NCBITaxon:1591","l":"Lactobacillus sp.","na":3,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A1591","Lactobacillus sp."]]},{"id":"NCBITaxon:161156","l":"Thermodesulfobacterium hydrogeniphilum","na":3,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["inlet-envo-00000475.html","inlet"],["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A161156","Thermodesulfobacterium hydrogeniphilum"]]},{"id":"NCBITaxon:161528","l":"Erythrobacter sp. SD-21","na":3,"nb":1,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["NCBITaxon%3A161528","Erythrobacter sp. SD-21"]]},{"id":"NCBITaxon:161879","l":"Corynebacterium kroppenstedtii","na":1,"nb":3,"a":[["breast-bto-0000149.html","breast"]],"b":[["NCBITaxon%3A161879","Corynebacterium kroppenstedtii"],["NCBITaxon%3A645127","Corynebacterium kroppenstedtii DSM 44385"],["NCBITaxon%3A2736648","Corynebacterium kroppenstedtii subsp. demodicis"]]},{"id":"NCBITaxon:1625","l":"Fructilactobacillus sanfranciscensis","na":1,"nb":3,"a":[["cropland-biome-envo-01000245.html","cropland biome"]],"b":[["NCBITaxon%3A1625","Fructilactobacillus sanfranciscensis"],["NCBITaxon%3A1423800","Fructilactobacillus sanfranciscensis DSM 20451"],["NCBITaxon%3A714313","Fructilactobacillus sanfranciscensis TMW 1.1304"]]},{"id":"NCBITaxon:164757","l":"Mycobacterium sp. JLS","na":3,"nb":1,"a":[["superfund-site-envo-00002156.html","Superfund site"],["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A164757","Mycobacterium sp. JLS"]]},{"id":"NCBITaxon:1651218","l":"Delftia deserti","na":1,"nb":3,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A1651218","Delftia deserti"],["NCBITaxon%3A1199156","Hirschia litorea"],["NCBITaxon%3A590593","Iodobacter arcticus"]]},{"id":"NCBITaxon:1657","l":"Actinobaculum suis","na":1,"nb":3,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["NCBITaxon%3A1657","Actinobaculum suis"],["NCBITaxon%3A1408","Bacillus pumilus"],["NCBITaxon%3A29316","Schaalia hyovaginalis"]]},{"id":"NCBITaxon:1683","l":"Bifidobacterium angulatum","na":1,"nb":3,"a":[["brain-bto-0000142.html","brain"]],"b":[["NCBITaxon%3A1683","Bifidobacterium angulatum"],["NCBITaxon%3A518635","Bifidobacterium angulatum DSM 20098 = JCM 7096"],["NCBITaxon%3A1357382","Bifidobacterium angulatum F16_22"]]},{"id":"NCBITaxon:1690","l":"Bifidobacterium pseudolongum subsp. globosum","na":1,"nb":3,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["NCBITaxon%3A1694","Bifidobacterium pseudolongum"],["NCBITaxon%3A1690","Bifidobacterium pseudolongum subsp. globosum"],["NCBITaxon%3A1410605","Bifidobacterium pseudolongum subsp. globosum DSM 20092"]]},{"id":"NCBITaxon:169760","l":"Paenibacillus stellifer","na":3,"nb":1,"a":[["factory-envo-01000536.html","factory"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A169760","Paenibacillus stellifer"]]},{"id":"NCBITaxon:1697779","l":"Clostridia bacterium UC5.1-1F7","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697779","Clostridia bacterium UC5.1-1F7"]]},{"id":"NCBITaxon:1697780","l":"Clostridia bacterium UC5.1-1D2","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697780","Clostridia bacterium UC5.1-1D2"]]},{"id":"NCBITaxon:1697781","l":"Clostridia bacterium UC5.1-2E3","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697781","Clostridia bacterium UC5.1-2E3"]]},{"id":"NCBITaxon:1697782","l":"Clostridia bacterium UC5.1-1A9","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697782","Clostridia bacterium UC5.1-1A9"]]},{"id":"NCBITaxon:1697783","l":"Clostridia bacterium UC5.1-1F8","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697783","Clostridia bacterium UC5.1-1F8"]]},{"id":"NCBITaxon:1697784","l":"Clostridia bacterium UC5.1-1D4","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697784","Clostridia bacterium UC5.1-1D4"]]},{"id":"NCBITaxon:1697785","l":"Clostridia bacterium UC5.1-2D9","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697785","Clostridia bacterium UC5.1-2D9"]]},{"id":"NCBITaxon:1697786","l":"Clostridia bacterium UC5.1-2E1","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697786","Clostridia bacterium UC5.1-2E1"]]},{"id":"NCBITaxon:1703","l":"Brevibacterium linens","na":1,"nb":3,"a":[["animal-waste-material-envo-00002276.html","animal waste material"]],"b":[["NCBITaxon%3A273384","Brevibacterium aurantiacum"],["NCBITaxon%3A1703","Brevibacterium linens"],["NCBITaxon%3A1255617","Brevibacterium linens ATCC 9172"]]},{"id":"NCBITaxon:170861","l":"Methanosarcina lacustris","na":1,"nb":3,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A170861","Methanosarcina lacustris"],["NCBITaxon%3A1434111","Methanosarcina lacustris Z-7289"],["NCBITaxon%3A1434112","Methanosarcina lacustris ZS"]]},{"id":"NCBITaxon:171674","l":"Inquilinus limosus","na":1,"nb":3,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"]],"b":[["NCBITaxon%3A171674","Inquilinus limosus"],["NCBITaxon%3A1122125","Inquilinus limosus DSM 16000"],["NCBITaxon%3A1398085","Inquilinus limosus MP06"]]},{"id":"NCBITaxon:1724","l":"Corynebacterium renale","na":3,"nb":1,"a":[["water-body-envo-00000063.html","water body"],["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A1724","Corynebacterium renale"]]},{"id":"NCBITaxon:173364","l":"Brachybacterium sacelli","na":1,"nb":3,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A173364","Brachybacterium sacelli"],["NCBITaxon%3A1756043","Cypionkella sinensis"],["NCBITaxon%3A1636843","Paenibacillus wenxiniae"]]},{"id":"NCBITaxon:173737","l":"Cytophaga sp. MBIC04693","na":3,"nb":1,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["NCBITaxon%3A173737","Cytophaga sp. MBIC04693"]]},{"id":"NCBITaxon:1796616","l":"Blautia pseudococcoides","na":3,"nb":1,"a":[["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["secretion-bto-0002979.html","secretion"]],"b":[["NCBITaxon%3A1796616","Blautia pseudococcoides"]]},{"id":"NCBITaxon:180542","l":"Salinisphaera shabanensis","na":1,"nb":3,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A180542","Salinisphaera shabanensis"],["NCBITaxon%3A1033802","Salinisphaera shabanensis E1L3A"],["NCBITaxon%3A1304276","Salinisphaera shabanensis T35B1"]]},{"id":"NCBITaxon:1810840","l":"Piscirickettsiaceae bacterium NZ-RLO1","na":3,"nb":1,"a":[["bhk-21-cell-bto-0000120.html","BHK-21 cell"],["endothelial-progenitor-cell-bto-0004093.html","endothelial progenitor cell"],["sf-21-cell-bto-0001196.html","SF-21 cell"]],"b":[["NCBITaxon%3A1810840","Piscirickettsiaceae bacterium NZ-RLO1"]]},{"id":"NCBITaxon:183","l":"Leptonema illini","na":1,"nb":3,"a":[["mud-envo-01000001.html","mud"]],"b":[["NCBITaxon%3A183","Leptonema illini"],["NCBITaxon%3A929563","Leptonema illini DSM 21528"],["NCBITaxon%3A330706","Leptonema illini serovar Habaki"]]},{"id":"NCBITaxon:1834196","l":"Lachnoclostridium sp. YL32","na":3,"nb":1,"a":[["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["secretion-bto-0002979.html","secretion"]],"b":[["NCBITaxon%3A1834196","Lachnoclostridium sp. YL32"]]},{"id":"NCBITaxon:1834198","l":"Hungateiclostridiaceae bacterium KB18","na":3,"nb":1,"a":[["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["secretion-bto-0002979.html","secretion"]],"b":[["NCBITaxon%3A1834198","Hungateiclostridiaceae bacterium KB18"]]},{"id":"NCBITaxon:1834205","l":"Burkholderiales bacterium YL45","na":3,"nb":1,"a":[["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["secretion-bto-0002979.html","secretion"]],"b":[["NCBITaxon%3A1834205","Burkholderiales bacterium YL45"]]},{"id":"NCBITaxon:1834207","l":"Erysipelotrichaceae bacterium I46","na":3,"nb":1,"a":[["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["secretion-bto-0002979.html","secretion"]],"b":[["NCBITaxon%3A1834207","Erysipelotrichaceae bacterium I46"]]},{"id":"NCBITaxon:1836","l":"Saccharopolyspora erythraea","na":1,"nb":3,"a":[["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["NCBITaxon%3A1836","Saccharopolyspora erythraea"],["NCBITaxon%3A1382595","Saccharopolyspora erythraea D"],["NCBITaxon%3A405948","Saccharopolyspora erythraea NRRL 2338"]]},{"id":"NCBITaxon:1852","l":"Saccharomonospora viridis","na":1,"nb":3,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A40988","Saccharomonospora azurea"],["NCBITaxon%3A1852","Saccharomonospora viridis"],["NCBITaxon%3A471857","Saccharomonospora viridis DSM 43017"]]},{"id":"NCBITaxon:1871618","l":"Gracilibacillus sp.","na":3,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"],["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["NCBITaxon%3A1871618","Gracilibacillus sp."]]},{"id":"NCBITaxon:1872119","l":"Acidobacterium sp.","na":3,"nb":1,"a":[["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"],["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A1872119","Acidobacterium sp."]]},{"id":"NCBITaxon:1872700","l":"Virgibacillus sp.","na":3,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"],["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["NCBITaxon%3A1872700","Virgibacillus sp."]]},{"id":"NCBITaxon:1874361","l":"Idiomarina sp.","na":3,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"],["saline-water-body-envo-01001319.html","saline water body"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["NCBITaxon%3A1874361","Idiomarina sp."]]},{"id":"NCBITaxon:188906","l":"Jannaschia helgolandensis","na":3,"nb":1,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["NCBITaxon%3A188906","Jannaschia helgolandensis"]]},{"id":"NCBITaxon:189518","l":"Leptospira interrogans serovar Lai str. 56601","na":3,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A189518","Leptospira interrogans serovar Lai str. 56601"]]},{"id":"NCBITaxon:1896336","l":"Citrobacter sp.","na":3,"nb":1,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A1896336","Citrobacter sp."]]},{"id":"NCBITaxon:191292","l":"Rhodococcus aetherivorans","na":1,"nb":3,"a":[["bcp-1-cell-bto-0002728.html","BCP-1 cell"]],"b":[["NCBITaxon%3A191292","Rhodococcus aetherivorans"],["NCBITaxon%3A1036179","Rhodococcus aetherivorans I24"],["NCBITaxon%3A194249","uncultured Rhodococcus sp."]]},{"id":"NCBITaxon:1935000","l":"Pseudomonas sp. JdFR-91","na":3,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"]],"b":[["NCBITaxon%3A1935000","Pseudomonas sp. JdFR-91"]]},{"id":"NCBITaxon:195064","l":"Ectothiorhodospira mobilis","na":3,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["NCBITaxon%3A195064","Ectothiorhodospira mobilis"]]},{"id":"NCBITaxon:2030","l":"Kibdelosporangium aridum","na":1,"nb":3,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A2030","Kibdelosporangium aridum"],["NCBITaxon%3A145995","Kibdelosporangium aridum subsp. aridum"],["NCBITaxon%3A145996","Kibdelosporangium aridum subsp. largum"]]},{"id":"NCBITaxon:203124","l":"Trichodesmium erythraeum IMS101","na":3,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["coastal-water-body-envo-02000049.html","coastal water body"],["marine-neritic-zone-envo-00000206.html","marine neritic zone"]],"b":[["NCBITaxon%3A203124","Trichodesmium erythraeum IMS101"]]},{"id":"NCBITaxon:2087","l":"Anaeroplasma abactoclasticum","na":3,"nb":1,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["pig-manure-envo-00003860.html","pig manure"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["NCBITaxon%3A2087","Anaeroplasma abactoclasticum"]]},{"id":"NCBITaxon:212042","l":"Anaplasma phagocytophilum str. HZ","na":3,"nb":1,"a":[["hl-60-cell-bto-0000738.html","HL-60 cell"],["leukocyte-bto-0000751.html","leukocyte"],["promyelocytic-leukemia-cell-line-bto-0002489.html","promyelocytic leukemia cell line"]],"b":[["NCBITaxon%3A212042","Anaplasma phagocytophilum str. HZ"]]},{"id":"NCBITaxon:2162","l":"Methanobacterium formicicum","na":1,"nb":3,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A2162","Methanobacterium formicicum"],["NCBITaxon%3A1204725","Methanobacterium formicicum DSM 3637"],["NCBITaxon%3A1300163","Methanobacterium formicicum JCM 10132"]]},{"id":"NCBITaxon:216595","l":"","na":3,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["human-construction-envo-00000070.html","human construction"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["NCBITaxon%3A216595","Pseudomonas [fluorescens] SBW25"]]},{"id":"NCBITaxon:216778","l":"Stenotrophomonas rhizophila","na":1,"nb":3,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A216778","Stenotrophomonas rhizophila"],["NCBITaxon%3A1255680","Stenotrophomonas rhizophila PCA13"]]},{"id":"NCBITaxon:220341","l":"Salmonella enterica subsp. enterica serovar Typhi str. CT18","na":3,"nb":1,"a":[["bone-marrow-bto-0000141.html","bone marrow"],["liver-bto-0000759.html","liver"],["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A220341","Salmonella enterica subsp. enterica serovar Typhi str. CT18"]]},{"id":"NCBITaxon:222805","l":"Mycobacterium intracellulare subsp. chimaera","na":1,"nb":3,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["NCBITaxon%3A1767","Mycobacterium intracellulare"],["NCBITaxon%3A222805","Mycobacterium intracellulare subsp. chimaera"],["NCBITaxon%3A1203599","Mycobacterium intracellulare subsp. yongonense"]]},{"id":"NCBITaxon:228603","l":"Hoylesella shahii","na":1,"nb":3,"a":[["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["NCBITaxon%3A228603","Hoylesella shahii"],["NCBITaxon%3A1122991","Hoylesella shahii DSM 15611 = JCM 12083"],["NCBITaxon%3A1410035","Hoylesella shahii HMP_JCVI_SC0182"]]},{"id":"NCBITaxon:228604","l":"Segatella salivae","na":1,"nb":3,"a":[["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["NCBITaxon%3A228604","Segatella salivae"],["NCBITaxon%3A888832","Segatella salivae DSM 15606"],["NCBITaxon%3A1395125","Segatella salivae F0493"]]},{"id":"NCBITaxon:2423","l":"Fervidobacterium islandicum","na":3,"nb":1,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["feather-bto-0000447.html","feather"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A2423","Fervidobacterium islandicum"]]},{"id":"NCBITaxon:243265","l":"Photorhabdus laumondii subsp. laumondii TTO1","na":1,"nb":3,"a":[["carcass-bto-0001965.html","carcass"]],"b":[["NCBITaxon%3A2218628","Photorhabdus laumondii"],["NCBITaxon%3A141679","Photorhabdus laumondii subsp. laumondii"],["NCBITaxon%3A243265","Photorhabdus laumondii subsp. laumondii TTO1"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK1622","na":3,"nb":1,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["NCBITaxon%3A246197","Myxococcus xanthus DK 1622"]]},{"id":"NCBITaxon:248026","l":"Cupriavidus pinatubonensis","na":1,"nb":3,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A1220023","Halolamina salina"],["NCBITaxon%3A248026","Cupriavidus pinatubonensis"],["NCBITaxon%3A264198","Cupriavidus pinatubonensis JMP134"]]},{"id":"NCBITaxon:250","l":"Chryseobacterium gleum","na":1,"nb":3,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A250","Chryseobacterium gleum"],["NCBITaxon%3A525257","Chryseobacterium gleum ATCC 35910"],["NCBITaxon%3A1871047","Chryseobacterium sp."]]},{"id":"NCBITaxon:257501","l":"Candidatus Chlorotrichoides halophilum","na":3,"nb":1,"a":[["pond-envo-00000033.html","pond"],["saline-evaporation-pond-envo-00000055.html","saline evaporation pond"],["microbial-mat-envo-01000008.html","microbial mat"]],"b":[["NCBITaxon%3A257501","Candidatus Chlorotrichoides halophilum"]]},{"id":"NCBITaxon:257984","l":"Glutamicibacter mysorens","na":1,"nb":3,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A257984","Glutamicibacter mysorens"],["NCBITaxon%3A1216975","Glutamicibacter mysorens NBRC 103060"],["NCBITaxon%3A37929","Glutamicibacter nicotianae"]]},{"id":"NCBITaxon:267736","l":"Halanaerobium saccharolyticum subsp. saccharolyticum","na":1,"nb":3,"a":[["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["NCBITaxon%3A43595","Halanaerobium saccharolyticum"],["NCBITaxon%3A267736","Halanaerobium saccharolyticum subsp. saccharolyticum"],["NCBITaxon%3A1293054","Halanaerobium saccharolyticum subsp. saccharolyticum DSM 6643"]]},{"id":"NCBITaxon:272951","l":"Rickettsia sibirica 246","na":1,"nb":3,"a":[["endothelial-cell-bto-0001176.html","endothelial cell"]],"b":[["NCBITaxon%3A35793","Rickettsia sibirica"],["NCBITaxon%3A272951","Rickettsia sibirica 246"],["NCBITaxon%3A1144281","Rickettsia sibirica subsp. sibirica"]]},{"id":"NCBITaxon:28136","l":"Segatella oulorum","na":1,"nb":3,"a":[["crevice-envo-01000294.html","crevice"]],"b":[["NCBITaxon%3A28136","Segatella oulorum"],["NCBITaxon%3A702438","Segatella oulorum F0390"],["NCBITaxon%3A1236497","Segatella oulorum JCM 14966"]]},{"id":"NCBITaxon:28139","l":"Rikenella microfusus","na":1,"nb":3,"a":[["lagoon-envo-00000038.html","lagoon"]],"b":[["NCBITaxon%3A28139","Rikenella microfusus"],["NCBITaxon%3A880526","Rikenella microfusus DSM 15922"],["NCBITaxon%3A28136","Segatella oulorum"]]},{"id":"NCBITaxon:28232","l":"Geobacter metallireducens","na":1,"nb":3,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A28232","Geobacter metallireducens"],["NCBITaxon%3A269799","Geobacter metallireducens GS-15"],["NCBITaxon%3A691164","Geobacter metallireducens RCH3"]]},{"id":"NCBITaxon:286698","l":"Geobacter psychrophilus","na":3,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["cultivated-environment-envo-01000311.html","cultivated environment"]],"b":[["NCBITaxon%3A286698","Geobacter psychrophilus"]]},{"id":"NCBITaxon:288","l":"Pseudoalteromonas atlantica","na":1,"nb":3,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A1871086","Brevundimonas sp."],["NCBITaxon%3A288","Pseudoalteromonas atlantica"],["NCBITaxon%3A306","Pseudomonas sp."]]},{"id":"NCBITaxon:290402","l":"Clostridium beijerinckii (strain ATCC 51743 / NCIMB 8052)","na":1,"nb":3,"a":[["garden-soil-envo-00002263.html","garden soil"]],"b":[["NCBITaxon%3A1488","Clostridium acetobutylicum"],["NCBITaxon%3A272562","Clostridium acetobutylicum ATCC 824"],["NCBITaxon%3A290402","Clostridium beijerinckii NCIMB 8052"]]},{"id":"NCBITaxon:291645","l":"Bacteroides nordii","na":1,"nb":3,"a":[["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["NCBITaxon%3A291645","Bacteroides nordii"],["NCBITaxon%3A997884","Bacteroides nordii CL02T12C05"],["NCBITaxon%3A1203608","Bacteroides nordii WAL 11050 = JCM 12987"]]},{"id":"NCBITaxon:29320","l":"Paenarthrobacter nicotinovorans","na":1,"nb":3,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A29320","Paenarthrobacter nicotinovorans"],["NCBITaxon%3A1304876","Paenarthrobacter nicotinovorans 231Sha2.1M6"],["NCBITaxon%3A1292042","Paenarthrobacter nicotinovorans 26Cvi1.1E"]]},{"id":"NCBITaxon:29321","l":"Corynebacterium otitidis","na":1,"nb":3,"a":[["middle-ear-bto-0002099.html","middle ear"]],"b":[["NCBITaxon%3A29321","Corynebacterium otitidis"],["NCBITaxon%3A883169","Corynebacterium otitidis ATCC 51513"],["NCBITaxon%3A1978491","Marinococcus sp."]]},{"id":"NCBITaxon:29370","l":"Lacrimispora sphenoides","na":1,"nb":3,"a":[["emulsion-envo-00010506.html","emulsion"]],"b":[["NCBITaxon%3A29370","Lacrimispora sphenoides"],["NCBITaxon%3A1298920","Lacrimispora sphenoides DSM 4024"],["NCBITaxon%3A1297793","Lacrimispora sphenoides JCM 1415"]]},{"id":"NCBITaxon:29419","l":"Helicobacter canis","na":1,"nb":3,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"]],"b":[["NCBITaxon%3A29419","Helicobacter canis"],["NCBITaxon%3A1357399","Helicobacter canis NCTC 12740"],["NCBITaxon%3A218","Helicobacter sp."]]},{"id":"NCBITaxon:29535","l":"Cytophaga sp.","na":3,"nb":1,"a":[["bay-envo-00000032.html","bay"],["lagoon-envo-00000038.html","lagoon"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["NCBITaxon%3A29535","Cytophaga sp."]]},{"id":"NCBITaxon:295419","l":"Rubellimicrobium thermophilum","na":1,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A2509153","Rubellimicrobium sp."],["NCBITaxon%3A295419","Rubellimicrobium thermophilum"],["NCBITaxon%3A1123069","Rubellimicrobium thermophilum DSM 16684"]]},{"id":"NCBITaxon:297246","l":"Legionella pneumophila str. Paris","na":3,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"],["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A297246","Legionella pneumophila str. Paris"]]},{"id":"NCBITaxon:313589","l":"Janibacter sp. HTCC2649","na":3,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["bulk-soil-envo-00005802.html","bulk soil"],["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A313589","Janibacter sp. HTCC2649"]]},{"id":"NCBITaxon:314260","l":"Parvularcula bermudensis HTCC2503","na":3,"nb":1,"a":[["small-river-biome-envo-00000890.html","small river biome"],["stromatolite-mat-envo-00002157.html","stromatolite mat"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["NCBITaxon%3A314260","Parvularcula bermudensis HTCC2503"]]},{"id":"NCBITaxon:317936","l":"Nostoc sp. PCC 7107","na":3,"nb":1,"a":[["bar-envo-00000167.html","bar"],["pond-envo-00000033.html","pond"],["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A317936","Nostoc sp. PCC 7107"]]},{"id":"NCBITaxon:31994","l":"Beijerinckia indica subsp. indica","na":1,"nb":3,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A533","Beijerinckia indica"],["NCBITaxon%3A31994","Beijerinckia indica subsp. indica"],["NCBITaxon%3A395963","Beijerinckia indica subsp. indica ATCC 9039"]]},{"id":"NCBITaxon:31998","l":"Methylobacterium radiotolerans","na":1,"nb":3,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A410","Methylobacterium organophilum"],["NCBITaxon%3A31998","Methylobacterium radiotolerans"],["NCBITaxon%3A426355","Methylobacterium radiotolerans JCM 2831"]]},{"id":"NCBITaxon:322509","l":"Dietzia kunjamensis","na":1,"nb":3,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A322509","Dietzia kunjamensis"],["NCBITaxon%3A2792887","Dietzia kunjamensis subsp. kunjamensis"],["NCBITaxon%3A498198","Dietzia kunjamensis subsp. schimae"]]},{"id":"NCBITaxon:326522","l":"Neisseria animaloris","na":3,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["foot-bto-0000476.html","foot"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"]],"b":[["NCBITaxon%3A326522","Neisseria animaloris"]]},{"id":"NCBITaxon:33036","l":"Anaerococcus tetradius","na":1,"nb":3,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["NCBITaxon%3A33034","Anaerococcus prevotii"],["NCBITaxon%3A33036","Anaerococcus tetradius"],["NCBITaxon%3A525255","Anaerococcus tetradius ATCC 35098"]]},{"id":"NCBITaxon:33932","l":"Sutcliffiella cohnii","na":1,"nb":3,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["NCBITaxon%3A33932","Sutcliffiella cohnii"],["NCBITaxon%3A1314751","Sutcliffiella cohnii NBRC 15565"],["NCBITaxon%3A83428","uncultured Bacillus sp."]]},{"id":"NCBITaxon:340047","l":"Mycoplasma capricolum subsp. capricolum ATCC 27343","na":1,"nb":3,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A2095","Mycoplasma capricolum"],["NCBITaxon%3A40479","Mycoplasma capricolum subsp. capricolum"],["NCBITaxon%3A340047","Mycoplasma capricolum subsp. capricolum ATCC 27343"]]},{"id":"NCBITaxon:341202","l":"Williamsia faeni","na":3,"nb":1,"a":[["park-envo-00000562.html","park"],["grassland-biome-envo-01000177.html","grassland biome"],["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A341202","Williamsia faeni"]]},{"id":"NCBITaxon:35756","l":"Corynebacterium pilosum","na":1,"nb":3,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A35756","Corynebacterium pilosum"],["NCBITaxon%3A1121366","Corynebacterium pilosum DSM 20521 = CIP 103422"],["NCBITaxon%3A28172","Vibrio metschnikovii"]]},{"id":"NCBITaxon:35787","l":"Limosilactobacillus pontis","na":1,"nb":3,"a":[["pig-manure-envo-00003860.html","pig manure"]],"b":[["NCBITaxon%3A1591","Lactobacillus sp."],["NCBITaxon%3A35787","Limosilactobacillus pontis"],["NCBITaxon%3A1423794","Limosilactobacillus pontis DSM 8475"]]},{"id":"NCBITaxon:35816","l":"Pelobacter acidigallici","na":3,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A35816","Pelobacter acidigallici"]]},{"id":"NCBITaxon:35817","l":"Helicobacter heilmannii","na":1,"nb":3,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["NCBITaxon%3A35817","Helicobacter heilmannii"],["NCBITaxon%3A1216962","Helicobacter heilmannii ASB1.4"],["NCBITaxon%3A28204","Helicobacter heilmannii type 1"]]},{"id":"NCBITaxon:361581","l":"Tenacibaculum discolor","na":3,"nb":1,"a":[["kidney-bto-0000671.html","kidney"],["sludge-envo-00002044.html","sludge"],["fumarole-envo-00000216.html","fumarole"]],"b":[["NCBITaxon%3A361581","Tenacibaculum discolor"]]},{"id":"NCBITaxon:363265","l":"Leyella stercorea","na":1,"nb":3,"a":[["pig-manure-envo-00003860.html","pig manure"]],"b":[["NCBITaxon%3A363265","Leyella stercorea"],["NCBITaxon%3A1263103","Leyella stercorea CAG:629"],["NCBITaxon%3A1002367","Leyella stercorea DSM 18206"]]},{"id":"NCBITaxon:36746","l":"Pseudomonas cichorii","na":1,"nb":3,"a":[["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["NCBITaxon%3A2488639","Pectobacterium versatile"],["NCBITaxon%3A36746","Pseudomonas cichorii"],["NCBITaxon%3A1441629","Pseudomonas cichorii JBC1"]]},{"id":"NCBITaxon:36841","l":"Terrisporobacter glycolicus","na":1,"nb":3,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["NCBITaxon%3A36841","Terrisporobacter glycolicus"],["NCBITaxon%3A1121315","Terrisporobacter glycolicus ATCC 14880 = DSM 1288"],["NCBITaxon%3A1125703","Terrisporobacter glycolicus CC88H"]]},{"id":"NCBITaxon:371731","l":"Rhodobacter ferrooxidans","na":3,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["large-river-biome-envo-00000887.html","large river biome"],["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A371731","Rhodobacter ferrooxidans"]]},{"id":"NCBITaxon:386415","l":"","na":3,"nb":1,"a":[["myocardium-bto-0000901.html","myocardium"],["reticuloendothelial-system-bto-0001174.html","reticuloendothelial system"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A386415","Clostridium novyi NT"]]},{"id":"NCBITaxon:391904","l":"","na":1,"nb":3,"a":[["breast-bto-0000149.html","breast"]],"b":[["NCBITaxon%3A216816","Bifidobacterium longum"],["NCBITaxon%3A1682","Bifidobacterium longum subsp. infantis"],["NCBITaxon%3A391904","Bifidobacterium longum subsp. infantis ATCC 15697 = JCM 1222 = DSM 20088"]]},{"id":"NCBITaxon:393131","l":"Listeria monocytogenes J2818","na":3,"nb":1,"a":[["bay-envo-00000032.html","bay"],["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"]],"b":[["NCBITaxon%3A393131","Listeria monocytogenes J2818"]]},{"id":"NCBITaxon:395963","l":"Beijerinckia indica subsp. indica ATCC 9039","na":1,"nb":3,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["NCBITaxon%3A533","Beijerinckia indica"],["NCBITaxon%3A31994","Beijerinckia indica subsp. indica"],["NCBITaxon%3A395963","Beijerinckia indica subsp. indica ATCC 9039"]]},{"id":"NCBITaxon:396","l":"Rhizobium phaseoli","na":1,"nb":3,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A396","Rhizobium phaseoli"],["NCBITaxon%3A526949","Rhizobium phaseoli Brasil 5"],["NCBITaxon%3A1128399","Rhizobium phaseoli Ch24-10"]]},{"id":"NCBITaxon:396595","l":"Thioalkalivibrio sp. K90mix","na":3,"nb":1,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"],["steppe-envo-00000262.html","steppe"]],"b":[["NCBITaxon%3A396595","Thioalkalivibrio sp. K90mix"]]},{"id":"NCBITaxon:39693","l":"Mycolicibacterium porcinum","na":3,"nb":1,"a":[["fibroblast-bto-0000452.html","fibroblast"],["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A39693","Mycolicibacterium porcinum"]]},{"id":"NCBITaxon:399742","l":"Enterobacter sp. (strain 638)","na":3,"nb":1,"a":[["vasculature-uberon-0002049.html","vasculature"],["part-of-plant-habitatmech-madin-25325947e2.html","part of plant"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A399742","Enterobacter sp. 638"]]},{"id":"NCBITaxon:40223","l":"Methylophaga thalassica","na":1,"nb":3,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A568897","Ectothiorhodospira salini"],["NCBITaxon%3A40223","Methylophaga thalassica"],["NCBITaxon%3A1026882","Methylophaga thalassica MP"]]},{"id":"NCBITaxon:404589","l":"","na":3,"nb":1,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["NCBITaxon%3A404589","Anaeromyxobacter sp. Fw109-5"]]},{"id":"NCBITaxon:416261","l":"Desulfobacterium sp. AK1","na":3,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A416261","Desulfobacterium sp. AK1"]]},{"id":"NCBITaxon:42234","l":"Streptomyces acidiscabies","na":1,"nb":3,"a":[["a10-cell-bto-0002196.html","A10 cell"]],"b":[["NCBITaxon%3A42234","Streptomyces acidiscabies"],["NCBITaxon%3A1116232","Streptomyces acidiscabies 84-104"],["NCBITaxon%3A1930","Streptomyces scabiei"]]},{"id":"NCBITaxon:426117","l":"Methylobacterium sp. 4-46","na":3,"nb":1,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A426117","Methylobacterium sp. 4-46"]]},{"id":"NCBITaxon:428406","l":"Ralstonia pickettii 12D","na":1,"nb":3,"a":[["chemically-enriched-sediment-envo-00002114.html","chemically enriched sediment"]],"b":[["NCBITaxon%3A329","Ralstonia pickettii"],["NCBITaxon%3A428406","Ralstonia pickettii 12D"],["NCBITaxon%3A1218114","Ralstonia pickettii NBRC 102503"]]},{"id":"NCBITaxon:43768","l":"Corynebacterium matruchotii","na":1,"nb":3,"a":[["archeological-site-envo-00000564.html","archeological site"]],"b":[["NCBITaxon%3A43768","Corynebacterium matruchotii"],["NCBITaxon%3A553207","Corynebacterium matruchotii ATCC 14266"],["NCBITaxon%3A566549","Corynebacterium matruchotii ATCC 33806"]]},{"id":"NCBITaxon:439495","l":"Pseudovibrio sp. JE062","na":3,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["germ-cell-bto-0000535.html","germ cell"],["desert-sand-envo-00005800.html","desert sand"]],"b":[["NCBITaxon%3A439495","Pseudovibrio sp. JE062"]]},{"id":"NCBITaxon:44008","l":"Enterococcus cecorum","na":1,"nb":3,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["NCBITaxon%3A44008","Enterococcus cecorum"],["NCBITaxon%3A1121864","Enterococcus cecorum DSM 20682 = ATCC 43198"],["NCBITaxon%3A1352","Enterococcus faecium"]]},{"id":"NCBITaxon:442899","l":"Halolactibacillus alkaliphilus","na":3,"nb":1,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["alkaline-water-envo-01000357.html","alkaline water"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A442899","Halolactibacillus alkaliphilus"]]},{"id":"NCBITaxon:445335","l":"Clostridium botulinum NCTC 2916","na":3,"nb":1,"a":[["sea-envo-00000016.html","sea"],["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A445335","Clostridium botulinum NCTC 2916"]]},{"id":"NCBITaxon:446468","l":"Nocardiopsis dassonvillei subsp. dassonvillei DSM 43111","na":1,"nb":3,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A2014","Nocardiopsis dassonvillei"],["NCBITaxon%3A568208","Nocardiopsis dassonvillei subsp. dassonvillei"],["NCBITaxon%3A446468","Nocardiopsis dassonvillei subsp. dassonvillei DSM 43111"]]},{"id":"NCBITaxon:45","l":"Melittangium lichenicola","na":3,"nb":1,"a":[["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A45","Melittangium lichenicola"]]},{"id":"NCBITaxon:457391","l":"Bacteroides sp. 3_1_33FAA","na":3,"nb":1,"a":[["bay-envo-00000032.html","bay"],["saline-water-envo-00002010.html","saline water"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["NCBITaxon%3A457391","Bacteroides sp. 3_1_33FAA"]]},{"id":"NCBITaxon:457429","l":"Streptomyces pristinaespiralis ATCC 25486","na":1,"nb":3,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A38300","Streptomyces pristinaespiralis"],["NCBITaxon%3A457429","Streptomyces pristinaespiralis ATCC 25486"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:463","l":"Fluoribacter dumoffii","na":1,"nb":3,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A463","Fluoribacter dumoffii"],["NCBITaxon%3A1094715","Fluoribacter dumoffii NY 23"],["NCBITaxon%3A1094714","Fluoribacter dumoffii Tex-KL"]]},{"id":"NCBITaxon:471472","l":"Chlamydia trachomatis serovar L2 (strain ATCC VR-902B / DSM 19102 / 434/Bu)","na":1,"nb":3,"a":[["lymph-node-bto-0000784.html","lymph node"]],"b":[["NCBITaxon%3A471472","Chlamydia trachomatis L2/434/Bu"],["NCBITaxon%3A1262673","Chlamydia trachomatis L2/434/Bu(f)"],["NCBITaxon%3A1263406","Chlamydia trachomatis L2/434/Bu(i)"]]},{"id":"NCBITaxon:471858","l":"Helicobacter magdeburgensis","na":1,"nb":3,"a":[["ht-29-cell-bto-0000182.html","HT-29 cell"]],"b":[["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"],["NCBITaxon%3A471858","Helicobacter magdeburgensis"]]},{"id":"NCBITaxon:47312","l":"Tsukamurella pulmonis","na":3,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["tuberculosis-habitatmech-bacdive-e5d21f85b7.html","Tuberculosis"]],"b":[["NCBITaxon%3A47312","Tsukamurella pulmonis"]]},{"id":"NCBITaxon:47920","l":"Acidovorax delafieldii","na":1,"nb":3,"a":[["bone-element-uberon-0001474.html","bone element"]],"b":[["NCBITaxon%3A47920","Acidovorax delafieldii"],["NCBITaxon%3A573060","Acidovorax delafieldii 2AN"],["NCBITaxon%3A80878","Acidovorax temperans"]]},{"id":"NCBITaxon:50741","l":"Marinobacter sp.","na":3,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"],["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["NCBITaxon%3A50741","Marinobacter sp."]]},{"id":"NCBITaxon:515440","l":"Oceanotoga teriensis","na":3,"nb":1,"a":[["ocean-trench-envo-00000275.html","ocean trench"],["oil-well-envo-01000003.html","oil well"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A515440","Oceanotoga teriensis"]]},{"id":"NCBITaxon:517424","l":"Salsuginibacillus halophilus","na":3,"nb":1,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["alkaline-water-envo-01000357.html","alkaline water"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A517424","Salsuginibacillus halophilus"]]},{"id":"NCBITaxon:520487","l":"Brucella suis bv. 3 str. 686","na":3,"nb":1,"a":[["city-envo-00000856.html","city"],["orchard-envo-00000115.html","orchard"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["NCBITaxon%3A520487","Brucella suis bv. 3 str. 686"]]},{"id":"NCBITaxon:53364","l":"Brevibacterium otitidis","na":1,"nb":3,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"]],"b":[["NCBITaxon%3A53364","Brevibacterium otitidis"],["NCBITaxon%3A1855725","Mucilaginibacter antarcticus"],["NCBITaxon%3A875043","Rheinheimera tilapiae"]]},{"id":"NCBITaxon:539","l":"Eikenella corrodens","na":1,"nb":3,"a":[["archeological-site-envo-00000564.html","archeological site"]],"b":[["NCBITaxon%3A539","Eikenella corrodens"],["NCBITaxon%3A546274","Eikenella corrodens ATCC 23834"],["NCBITaxon%3A1073362","Eikenella corrodens CC92I"]]},{"id":"NCBITaxon:553171","l":"Prevotella bivia JCVIHMP010","na":1,"nb":3,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A28125","Prevotella bivia"],["NCBITaxon%3A868129","Prevotella bivia DSM 20514"],["NCBITaxon%3A553171","Prevotella bivia JCVIHMP010"]]},{"id":"NCBITaxon:55565","l":"Actinomyces graevenitzii","na":1,"nb":3,"a":[["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["NCBITaxon%3A55565","Actinomyces graevenitzii"],["NCBITaxon%3A435830","Actinomyces graevenitzii C83"],["NCBITaxon%3A1321817","Actinomyces graevenitzii F0530"]]},{"id":"NCBITaxon:555970","l":"","na":1,"nb":3,"a":[["intestinal-epithelium-bto-0000781.html","intestinal epithelium"]],"b":[["NCBITaxon%3A28025","Bifidobacterium animalis"],["NCBITaxon%3A302911","Bifidobacterium animalis subsp. lactis"],["NCBITaxon%3A555970","Bifidobacterium animalis subsp. lactis DSM 10140"]]},{"id":"NCBITaxon:557433","l":"","na":1,"nb":3,"a":[["caco-2-cell-bto-0000195.html","CACO-2 cell"]],"b":[["NCBITaxon%3A1598","Limosilactobacillus reuteri"],["NCBITaxon%3A557436","Limosilactobacillus reuteri subsp. reuteri"],["NCBITaxon%3A557433","Limosilactobacillus reuteri subsp. reuteri JCM 1112 = DSM 20016"]]},{"id":"NCBITaxon:566552","l":"Bifidobacterium catenulatum DSM 16992 = JCM 1194 = LMG 11043","na":1,"nb":3,"a":[["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A1686","Bifidobacterium catenulatum"],["NCBITaxon%3A566552","Bifidobacterium catenulatum DSM 16992 = JCM 1194 = LMG 11043"],["NCBITaxon%3A2981616","Bifidobacterium catenulatum subsp. catenulatum"]]},{"id":"NCBITaxon:570156","l":"Pseudoalteromonas lipolytica","na":1,"nb":3,"a":[["leaf-lamina-bto-0000719.html","leaf lamina"]],"b":[["NCBITaxon%3A570156","Pseudoalteromonas lipolytica"],["NCBITaxon%3A1315275","Pseudoalteromonas lipolytica LMEB 39"],["NCBITaxon%3A1452721","Pseudoalteromonas lipolytica SCSIO 04301"]]},{"id":"NCBITaxon:573062","l":"Thermoanaerobacter sp. X513","na":3,"nb":1,"a":[["ocean-trench-envo-00000275.html","ocean trench"],["drainage-basin-envo-00000291.html","drainage basin"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A573062","Thermoanaerobacter sp. X513"]]},{"id":"NCBITaxon:583346","l":"Clostridium kluyveri NBRC 12016","na":1,"nb":3,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A1534","Clostridium kluyveri"],["NCBITaxon%3A431943","Clostridium kluyveri DSM 555"],["NCBITaxon%3A583346","Clostridium kluyveri NBRC 12016"]]},{"id":"NCBITaxon:586220","l":"Leuconostoc mesenteroides subsp. cremoris ATCC 19254","na":1,"nb":3,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"]],"b":[["NCBITaxon%3A1245","Leuconostoc mesenteroides"],["NCBITaxon%3A33965","Leuconostoc mesenteroides subsp. cremoris"],["NCBITaxon%3A586220","Leuconostoc mesenteroides subsp. cremoris ATCC 19254"]]},{"id":"NCBITaxon:588","l":"Providencia stuartii","na":1,"nb":3,"a":[["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["NCBITaxon%3A588","Providencia stuartii"],["NCBITaxon%3A471874","Providencia stuartii ATCC 25827"],["NCBITaxon%3A1157951","Providencia stuartii MRSN 2154"]]},{"id":"NCBITaxon:595452","l":"Rhodopirellula sp. SM49","na":3,"nb":1,"a":[["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"]],"b":[["NCBITaxon%3A595452","Rhodopirellula sp. SM49"]]},{"id":"NCBITaxon:59919","l":"Prochlorococcus marinus subsp. pastoris str. CCMP1986","na":3,"nb":1,"a":[["marginal-sea-biome-envo-01000046.html","marginal sea biome"],["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"],["sea-envo-00000016.html","sea"]],"b":[["NCBITaxon%3A59919","Prochlorococcus marinus subsp. pastoris str. CCMP1986"]]},{"id":"NCBITaxon:647","l":"Aeromonas sp.","na":3,"nb":1,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["cave-water-habitatmech-bacdive-9ae6cfc178.html","Cave-water"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["NCBITaxon%3A647","Aeromonas sp."]]},{"id":"NCBITaxon:647227","l":"Chlamydia muridarum str. Weiss","na":3,"nb":1,"a":[["cervical-adenocarcinoma-cell-bto-0003165.html","cervical adenocarcinoma cell"],["fibroblast-bto-0000452.html","fibroblast"],["hela-229-cell-bto-0005030.html","HeLa-229 cell"]],"b":[["NCBITaxon%3A647227","Chlamydia muridarum str. Weiss"]]},{"id":"NCBITaxon:658457","l":"Ectopseudomonas composti","na":3,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["NCBITaxon%3A658457","Ectopseudomonas composti"]]},{"id":"NCBITaxon:663606","l":"Actinomycetospora chibensis","na":1,"nb":3,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A663606","Actinomycetospora chibensis"],["NCBITaxon%3A173364","Brachybacterium sacelli"],["NCBITaxon%3A42895","Enterobacter sp."]]},{"id":"NCBITaxon:665913","l":"Mixta calida","na":1,"nb":3,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["NCBITaxon%3A665913","Mixta calida"],["NCBITaxon%3A1440767","Mixta calida B021323"],["NCBITaxon%3A665914","Mixta gaviniae"]]},{"id":"NCBITaxon:667127","l":"Klebsiella pneumoniae subsp. rhinoscleromatis ATCC 13884","na":1,"nb":3,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A39831","Klebsiella pneumoniae subsp. rhinoscleromatis"],["NCBITaxon%3A667127","Klebsiella pneumoniae subsp. rhinoscleromatis ATCC 13884"]]},{"id":"NCBITaxon:66976","l":"Legionella pneumophila serogroup 1","na":1,"nb":3,"a":[["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A866628","Legionella pneumophila 130b"],["NCBITaxon%3A423212","Legionella pneumophila 2300/99 Alcoy"],["NCBITaxon%3A66976","Legionella pneumophila serogroup 1"]]},{"id":"NCBITaxon:671218","l":"Alloprevotella rava","na":1,"nb":3,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A671218","Alloprevotella rava"],["NCBITaxon%3A524034","Alloprevotella rava F0020"],["NCBITaxon%3A679199","Alloprevotella rava F0323"]]},{"id":"NCBITaxon:68242","l":"Streptomyces natalensis","na":1,"nb":3,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A68242","Streptomyces natalensis"],["NCBITaxon%3A1240678","Streptomyces natalensis ATCC 27448"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:68895","l":"Cupriavidus basilensis","na":1,"nb":3,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A68895","Cupriavidus basilensis"],["NCBITaxon%3A1200775","Cupriavidus basilensis B-8"],["NCBITaxon%3A1127483","Cupriavidus basilensis OR16"]]},{"id":"NCBITaxon:69218","l":"Enterobacter cancerogenus","na":1,"nb":3,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["NCBITaxon%3A69218","Enterobacter cancerogenus"],["NCBITaxon%3A500639","Enterobacter cancerogenus ATCC 35316"],["NCBITaxon%3A1260277","Enterobacter cancerogenus YZ1"]]},{"id":"NCBITaxon:69373","l":"Curtobacterium pusillum","na":3,"nb":1,"a":[["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["seedling-bto-0001228.html","seedling"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A69373","Curtobacterium pusillum"]]},{"id":"NCBITaxon:698936","l":"Sinorhizobium meliloti BL225C","na":3,"nb":1,"a":[["agricultural-field-envo-00000114.html","agricultural field"],["agricultural-soil-envo-00002259.html","agricultural soil"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A698936","Sinorhizobium meliloti BL225C"]]},{"id":"NCBITaxon:69974","l":"Mesorhizobium plurifarium","na":1,"nb":3,"a":[["hair-follicle-outer-root-sheath-bto-0003969.html","hair follicle outer root sheath"]],"b":[["NCBITaxon%3A69974","Mesorhizobium plurifarium"],["NCBITaxon%3A198626","Mesorhizobium plurifarium subsp. americum"],["NCBITaxon%3A391","Rhizobium sp."]]},{"id":"NCBITaxon:70775","l":"Pseudomonas plecoglossicida","na":1,"nb":3,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A70775","Pseudomonas plecoglossicida"],["NCBITaxon%3A1330531","Pseudomonas plecoglossicida NB2011"],["NCBITaxon%3A1215115","Pseudomonas plecoglossicida NBRC 103162 = DSM 15088"]]},{"id":"NCBITaxon:716","l":"Actinobacillus suis","na":1,"nb":3,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["NCBITaxon%3A716","Actinobacillus suis"],["NCBITaxon%3A743972","Actinobacillus suis ATCC 33415"],["NCBITaxon%3A696748","Actinobacillus suis H91-0380"]]},{"id":"NCBITaxon:716541","l":"Enterobacter cloacae subsp. cloacae (strain ATCC 13047 / DSM 30054 / NBRC 13535 / NCTC 10005 / WDCM 00083 / NCDC 279-56)","na":1,"nb":3,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A336306","Enterobacter cloacae subsp. cloacae"],["NCBITaxon%3A716541","Enterobacter cloacae subsp. cloacae ATCC 13047"]]},{"id":"NCBITaxon:736","l":"Haemophilus paraphrohaemolyticus","na":1,"nb":3,"a":[["trunk-uberon-0002100.html","trunk"]],"b":[["NCBITaxon%3A729","Haemophilus parainfluenzae"],["NCBITaxon%3A736","Haemophilus paraphrohaemolyticus"],["NCBITaxon%3A1095743","Haemophilus paraphrohaemolyticus HK411"]]},{"id":"NCBITaxon:74109","l":"Photobacterium profundum","na":1,"nb":3,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A74109","Photobacterium profundum"],["NCBITaxon%3A314280","Photobacterium profundum 3TCK"],["NCBITaxon%3A298386","Photobacterium profundum SS9"]]},{"id":"NCBITaxon:78344","l":"Bifidobacterium pullorum subsp. gallinarum","na":1,"nb":3,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"]],"b":[["NCBITaxon%3A78448","Bifidobacterium pullorum"],["NCBITaxon%3A78344","Bifidobacterium pullorum subsp. gallinarum"],["NCBITaxon%3A1437602","Bifidobacterium pullorum subsp. gallinarum DSM 20670"]]},{"id":"NCBITaxon:79880","l":"Shouchella clausii","na":1,"nb":3,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A79880","Shouchella clausii"],["NCBITaxon%3A66692","Shouchella clausii KSM-K16"],["NCBITaxon%3A83428","uncultured Bacillus sp."]]},{"id":"NCBITaxon:79967","l":"Erwinia pyrifoliae","na":1,"nb":3,"a":[["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["NCBITaxon%3A79967","Erwinia pyrifoliae"],["NCBITaxon%3A644651","Erwinia pyrifoliae DSM 12163"],["NCBITaxon%3A634499","Erwinia pyrifoliae Ep1/96"]]},{"id":"NCBITaxon:82116","l":"Acetobacterium malicum subsp. dehalogenans","na":1,"nb":3,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A52692","Acetobacterium malicum"],["NCBITaxon%3A82116","Acetobacterium malicum subsp. dehalogenans"],["NCBITaxon%3A1068975","Acetobacterium malicum subsp. dehalogenans DSM 11527"]]},{"id":"NCBITaxon:824","l":"Campylobacter gracilis","na":1,"nb":3,"a":[["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A824","Campylobacter gracilis"],["NCBITaxon%3A553220","Campylobacter gracilis RM3268"],["NCBITaxon%3A203","Campylobacter rectus"]]},{"id":"NCBITaxon:83453","l":"Melittangium boletus","na":1,"nb":3,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["NCBITaxon%3A83452","Melittangium alboraceum"],["NCBITaxon%3A83453","Melittangium boletus"],["NCBITaxon%3A1294270","Melittangium boletus DSM 14713"]]},{"id":"NCBITaxon:86665","l":"Halalkalibacterium halodurans","na":1,"nb":3,"a":[["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A86665","Halalkalibacterium halodurans"],["NCBITaxon%3A272558","Halalkalibacterium halodurans C-125"],["NCBITaxon%3A83428","uncultured Bacillus sp."]]},{"id":"NCBITaxon:880156","l":"Photorhabdus heterorhabditis","na":1,"nb":3,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A880156","Photorhabdus heterorhabditis"],["NCBITaxon%3A2805094","Photorhabdus heterorhabditis subsp. aluminescens"],["NCBITaxon%3A2805095","Photorhabdus heterorhabditis subsp. heterorhabditis"]]},{"id":"NCBITaxon:91353","l":"Campylobacter hyointestinalis subsp. lawsonii","na":1,"nb":3,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["NCBITaxon%3A198","Campylobacter hyointestinalis"],["NCBITaxon%3A91353","Campylobacter hyointestinalis subsp. lawsonii"],["NCBITaxon%3A1031752","Campylobacter hyointestinalis subsp. lawsonii CCUG 27631"]]},{"id":"NCBITaxon:94122","l":"Shewanella sp. ANA-3","na":3,"nb":1,"a":[["alkaline-water-envo-01000357.html","alkaline water"],["brackish-estuary-envo-00002137.html","brackish estuary"],["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A94122","Shewanella sp. ANA-3"]]},{"id":"NCBITaxon:97478","l":"Limosilactobacillus mucosae","na":1,"nb":3,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["NCBITaxon%3A97478","Limosilactobacillus mucosae"],["NCBITaxon%3A1423771","Limosilactobacillus mucosae DSM 13345"],["NCBITaxon%3A1130798","Limosilactobacillus mucosae LM1"]]},{"id":"NCBITaxon:989","l":"Marinilabilia salmonicolor","na":1,"nb":3,"a":[["lagoon-envo-00000038.html","lagoon"]],"b":[["NCBITaxon%3A989","Marinilabilia salmonicolor"],["NCBITaxon%3A60555","Marinilabilia salmonicolor biovar Agarovorans"],["NCBITaxon%3A1168289","Marinilabilia salmonicolor JCM 21150"]]},{"id":"NCBITaxon:996","l":"Flavobacterium columnare","na":1,"nb":3,"a":[["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["NCBITaxon%3A996","Flavobacterium columnare"],["NCBITaxon%3A1041826","Flavobacterium columnare ATCC 49512"],["NCBITaxon%3A1218111","Flavobacterium columnare NBRC 100251 = ATCC 23463"]]},{"id":"NCBITaxon:100052","l":"Delitschia winteri","na":2,"nb":1,"a":[["desert-biome-envo-01000179.html","desert biome"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A100052","Delitschia winteri"]]},{"id":"NCBITaxon:1000562","l":"Streptococcus phocae subsp. salmonis","na":1,"nb":2,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A119224","Streptococcus phocae"],["NCBITaxon%3A1000562","Streptococcus phocae subsp. salmonis"]]},{"id":"NCBITaxon:1000565","l":"Methyloversatilis universalis FAM5","na":1,"nb":2,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A378211","Methyloversatilis universalis"],["NCBITaxon%3A1000565","Methyloversatilis universalis FAM5"]]},{"id":"NCBITaxon:1000566","l":"Halosaccharopolyspora lacisalsi","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1000566","Halosaccharopolyspora lacisalsi"]]},{"id":"NCBITaxon:1000588","l":"","na":1,"nb":2,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1000588","Streptococcus mitis bv. 2 str. SK95"],["NCBITaxon%3A1306","Streptococcus sp."]]},{"id":"NCBITaxon:1000590","l":"Staphylococcus epidermidis 14.1.R1.SE","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A1282","Staphylococcus epidermidis"],["NCBITaxon%3A1000590","Staphylococcus epidermidis 14.1.R1.SE"]]},{"id":"NCBITaxon:1001","l":"Garritya polymorpha","na":2,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A1001","Garritya polymorpha"]]},{"id":"NCBITaxon:100133","l":"Sporobacterium olearium","na":1,"nb":2,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A100133","Sporobacterium olearium"],["NCBITaxon%3A1123283","Sporobacterium olearium DSM 12504"]]},{"id":"NCBITaxon:1001534","l":"Francisella tularensis subsp. tularensis TI0902","na":1,"nb":2,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001534","Francisella tularensis subsp. tularensis TI0902"],["NCBITaxon%3A1001542","Francisella tularensis subsp. tularensis TIGB03"]]},{"id":"NCBITaxon:100176","l":"Papillibacter cinnamivorans","na":1,"nb":2,"a":[["cecum-bto-0000166.html","cecum"]],"b":[["NCBITaxon%3A100176","Papillibacter cinnamivorans"],["NCBITaxon%3A1122930","Papillibacter cinnamivorans DSM 12816"]]},{"id":"NCBITaxon:1001994","l":"Nitrosarchaeum koreense MY1","na":1,"nb":2,"a":[["plant-bto-0001481.html","plant"]],"b":[["NCBITaxon%3A1088740","Nitrosarchaeum koreense"],["NCBITaxon%3A1001994","Nitrosarchaeum koreense MY1"]]},{"id":"NCBITaxon:1002340","l":"Leisingera sp. ANG1","na":2,"nb":1,"a":[["gland-bto-0000522.html","gland"],["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1002340","Leisingera sp. ANG1"]]},{"id":"NCBITaxon:1002689","l":"Occallatibacter riparius","na":2,"nb":1,"a":[["watercourse-envo-00000029.html","watercourse"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A1002689","Occallatibacter riparius"]]},{"id":"NCBITaxon:1003","l":"Thermoflexibacter ruber","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A1003","Thermoflexibacter ruber"]]},{"id":"NCBITaxon:1003091","l":"","na":1,"nb":2,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A409","Methylobacterium sp."],["NCBITaxon%3A1003091","Methylobacterium thuringiense"]]},{"id":"NCBITaxon:1003092","l":"Methylobacterium trifolii","na":1,"nb":2,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A409","Methylobacterium sp."],["NCBITaxon%3A1003092","Methylobacterium trifolii"]]},{"id":"NCBITaxon:1003110","l":"Micromonospora maris","na":1,"nb":2,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1003110","Micromonospora maris"],["NCBITaxon%3A263358","Micromonospora maris AB-18-032"]]},{"id":"NCBITaxon:1003191","l":"Salmonella enterica subsp. enterica serovar Tennessee str. TXSC_TXSC08-19","na":2,"nb":1,"a":[["scale-bto-0005055.html","scale"],["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A1003191","Salmonella enterica subsp. enterica serovar Tennessee str. TXSC_TXSC08-19"]]},{"id":"NCBITaxon:1003192","l":"Salmonella enterica subsp. enterica serovar Tennessee str. TXSC_TXSC08-21","na":2,"nb":1,"a":[["scale-bto-0005055.html","scale"],["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A1003192","Salmonella enterica subsp. enterica serovar Tennessee str. TXSC_TXSC08-21"]]},{"id":"NCBITaxon:1004","l":"Chitinophaga sancti","na":1,"nb":2,"a":[["plant-bto-0001481.html","plant"]],"b":[["NCBITaxon%3A1004","Chitinophaga sancti"],["NCBITaxon%3A1121282","Chitinophaga sancti DSM 784"]]},{"id":"NCBITaxon:1004304","l":"Hydrotalea sandarakina","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A1004304","Hydrotalea sandarakina"]]},{"id":"NCBITaxon:100468","l":"Schleiferilactobacillus perolens","na":1,"nb":2,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A100468","Schleiferilactobacillus perolens"],["NCBITaxon%3A1423792","Schleiferilactobacillus perolens DSM 12744"]]},{"id":"NCBITaxon:1005","l":"Flexibacter sp.","na":2,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A1005","Flexibacter sp."]]},{"id":"NCBITaxon:1005705","l":"Streptococcus infantis SK1076","na":1,"nb":2,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1005705","Streptococcus infantis SK1076"],["NCBITaxon%3A28037","Streptococcus mitis"]]},{"id":"NCBITaxon:1005740","l":"Aminivibrio pyruvatiphilus","na":2,"nb":1,"a":[["soil-envo-00001998.html","soil"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A1005740","Aminivibrio pyruvatiphilus"]]},{"id":"NCBITaxon:1005926","l":"Flagellimonas taeanensis","na":2,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"],["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["NCBITaxon%3A1005926","Flagellimonas taeanensis"]]},{"id":"NCBITaxon:1005941","l":"Planococcus halocryophilus Or1","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A1215089","Planococcus halocryophilus"],["NCBITaxon%3A1005941","Planococcus halocryophilus Or1"]]},{"id":"NCBITaxon:1005996","l":"","na":1,"nb":2,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A575","Klebsiella planticola"],["NCBITaxon%3A1005996","Klebsiella planticola ATCC 33531"]]},{"id":"NCBITaxon:1005999","l":"Leminorella grimontii ATCC 33999 = DSM 5078","na":1,"nb":2,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A82981","Leminorella grimontii"],["NCBITaxon%3A1005999","Leminorella grimontii ATCC 33999 = DSM 5078"]]},{"id":"NCBITaxon:1006576","l":"Defluviitoga tunisiensis","na":2,"nb":1,"a":[["factory-envo-01000536.html","factory"],["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A1006576","Defluviitoga tunisiensis"]]},{"id":"NCBITaxon:1007096","l":"Oscillibacter ruminantium GH1","na":1,"nb":2,"a":[["fiber-bto-0000450.html","fiber"]],"b":[["NCBITaxon%3A1263547","Oscillibacter ruminantium"],["NCBITaxon%3A1007096","Oscillibacter ruminantium GH1"]]},{"id":"NCBITaxon:1007097","l":"Gordonia caeni","na":2,"nb":1,"a":[["sludge-envo-00002044.html","sludge"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A1007097","Gordonia caeni"]]},{"id":"NCBITaxon:1007109","l":"alpha proteobacterium SCGC AAA076-C03","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1007109","alpha proteobacterium SCGC AAA076-C03"]]},{"id":"NCBITaxon:1007110","l":"alpha proteobacterium SCGC AAA076-E06","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1007110","alpha proteobacterium SCGC AAA076-E06"]]},{"id":"NCBITaxon:1007111","l":"alpha proteobacterium SCGC AAA158-B04","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1007111","alpha proteobacterium SCGC AAA158-B04"]]},{"id":"NCBITaxon:1007112","l":"alpha proteobacterium SCGC AAA158-M15","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1007112","alpha proteobacterium SCGC AAA158-M15"]]},{"id":"NCBITaxon:1007113","l":"alpha proteobacterium SCGC AAA160-J14","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1007113","alpha proteobacterium SCGC AAA160-J14"]]},{"id":"NCBITaxon:1007114","l":"gamma proteobacterium SCGC AAA076-D02","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1007114","gamma proteobacterium SCGC AAA076-D02"]]},{"id":"NCBITaxon:1007115","l":"gamma proteobacterium SCGC AAA076-D13","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1007115","gamma proteobacterium SCGC AAA076-D13"]]},{"id":"NCBITaxon:1007116","l":"gamma proteobacterium SCGC AAA076-E13","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1007116","gamma proteobacterium SCGC AAA076-E13"]]},{"id":"NCBITaxon:1007117","l":"gamma proteobacterium SCGC AAA076-F14","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1007117","gamma proteobacterium SCGC AAA076-F14"]]},{"id":"NCBITaxon:1007118","l":"gamma proteobacterium SCGC AAA076-P09","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1007118","gamma proteobacterium SCGC AAA076-P09"]]},{"id":"NCBITaxon:1007119","l":"gamma proteobacterium SCGC AAA076-P13","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1007119","gamma proteobacterium SCGC AAA076-P13"]]},{"id":"NCBITaxon:1007120","l":"gamma proteobacterium SCGC AAA160-D02","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1007120","gamma proteobacterium SCGC AAA160-D02"]]},{"id":"NCBITaxon:1007676","l":"Companilactobacillus ginsenosidimutans","na":2,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A1007676","Companilactobacillus ginsenosidimutans"]]},{"id":"NCBITaxon:1008452","l":"Streptococcus mitis SK1073","na":1,"nb":2,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1008452","Streptococcus mitis SK1073"],["NCBITaxon%3A1303","Streptococcus oralis"]]},{"id":"NCBITaxon:1008453","l":"Streptococcus mitis SK1080","na":1,"nb":2,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1008453","Streptococcus mitis SK1080"],["NCBITaxon%3A1313","Streptococcus pneumoniae"]]},{"id":"NCBITaxon:1008454","l":"Staphylococcus epidermidis FS1","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A1282","Staphylococcus epidermidis"],["NCBITaxon%3A1008454","Staphylococcus epidermidis FS1"]]},{"id":"NCBITaxon:1009370","l":"","na":1,"nb":2,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A2374","Acetonema longum"],["NCBITaxon%3A1009370","Acetonema longum DSM 6540"]]},{"id":"NCBITaxon:1009412","l":"Flavobacterium sp. SCGC AAA160-P02","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1009412","Flavobacterium sp. SCGC AAA160-P02"]]},{"id":"NCBITaxon:1009413","l":"Verrucomicrobia bacterium SCGC AAA164-A08","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1009413","Verrucomicrobia bacterium SCGC AAA164-A08"]]},{"id":"NCBITaxon:1009414","l":"Verrucomicrobia bacterium SCGC AAA164-B23","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1009414","Verrucomicrobia bacterium SCGC AAA164-B23"]]},{"id":"NCBITaxon:1009415","l":"Verrucomicrobia bacterium SCGC AAA164-E04","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1009415","Verrucomicrobia bacterium SCGC AAA164-E04"]]},{"id":"NCBITaxon:1009416","l":"Verrucomicrobia bacterium SCGC AAA164-I21","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1009416","Verrucomicrobia bacterium SCGC AAA164-I21"]]},{"id":"NCBITaxon:1009418","l":"Verrucomicrobia bacterium SCGC AAA164-M04","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1009418","Verrucomicrobia bacterium SCGC AAA164-M04"]]},{"id":"NCBITaxon:1009420","l":"Verrucomicrobia bacterium SCGC AAA164-O14","na":2,"nb":1,"a":[["inlet-envo-00000475.html","inlet"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1009420","Verrucomicrobia bacterium SCGC AAA164-O14"]]},{"id":"NCBITaxon:1009464","l":"Gardnerella vaginalis HMP9231","na":1,"nb":2,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A309120","Dialister micraerophilus"],["NCBITaxon%3A1009464","Gardnerella vaginalis HMP9231"]]},{"id":"NCBITaxon:1009856","l":"Buchnera aphidicola str. USDA (Myzus persicae)","na":2,"nb":1,"a":[["phloem-bto-0001058.html","phloem"],["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1009856","Buchnera aphidicola str. USDA (Myzus persicae)"]]},{"id":"NCBITaxon:1009857","l":"Buchnera aphidicola str. W106 (Myzus persicae)","na":2,"nb":1,"a":[["phloem-bto-0001058.html","phloem"],["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1009857","Buchnera aphidicola str. W106 (Myzus persicae)"]]},{"id":"NCBITaxon:1009858","l":"Buchnera aphidicola str. G002 (Myzus persicae)","na":2,"nb":1,"a":[["phloem-bto-0001058.html","phloem"],["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1009858","Buchnera aphidicola str. G002 (Myzus persicae)"]]},{"id":"NCBITaxon:1009859","l":"Buchnera aphidicola str. F009 (Myzus persicae)","na":2,"nb":1,"a":[["phloem-bto-0001058.html","phloem"],["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1009859","Buchnera aphidicola str. F009 (Myzus persicae)"]]},{"id":"NCBITaxon:101489","l":"Xylanimonas pachnodae","na":1,"nb":2,"a":[["plant-bto-0001481.html","plant"]],"b":[["NCBITaxon%3A1305855","Xylanimicrobium pachnodae JCM 13526 = NBRC 107786"],["NCBITaxon%3A101489","Xylanimonas pachnodae"]]},{"id":"NCBITaxon:1017184","l":"Camelimonas abortus","na":2,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A1017184","Camelimonas abortus"]]},{"id":"NCBITaxon:102129","l":"Leptolyngbya sp. PCC 7375","na":2,"nb":1,"a":[["undersea-feature-envo-00000104.html","undersea feature"],["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A102129","Leptolyngbya sp. PCC 7375"]]},{"id":"NCBITaxon:1027360","l":"Edwardsiella ictaluri ATCC 33202","na":1,"nb":2,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A67780","Edwardsiella ictaluri"],["NCBITaxon%3A1027360","Edwardsiella ictaluri ATCC 33202"]]},{"id":"NCBITaxon:1027371","l":"Gordonia alkanivorans NBRC 16433","na":1,"nb":2,"a":[["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A84096","Gordonia alkanivorans"],["NCBITaxon%3A1027371","Gordonia alkanivorans NBRC 16433"]]},{"id":"NCBITaxon:1027633","l":"Enteractinococcus coprophilus","na":2,"nb":1,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A1027633","Enteractinococcus coprophilus"]]},{"id":"NCBITaxon:1028307","l":"","na":1,"nb":2,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A548","Klebsiella aerogenes"],["NCBITaxon%3A1028307","Klebsiella aerogenes KCTC 2190"]]},{"id":"NCBITaxon:1028566","l":"Sulfolobus acidocaldarius N8","na":1,"nb":2,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A2285","Sulfolobus acidocaldarius"],["NCBITaxon%3A1028566","Sulfolobus acidocaldarius N8"]]},{"id":"NCBITaxon:1028742","l":"Pontixanthobacter gangjinensis","na":2,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"],["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["NCBITaxon%3A1028742","Pontixanthobacter gangjinensis"]]},{"id":"NCBITaxon:1029756","l":"Hyphomicrobium nitrativorans NL23","na":1,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A1427356","Hyphomicrobium nitrativorans"],["NCBITaxon%3A1029756","Hyphomicrobium nitrativorans NL23"]]},{"id":"NCBITaxon:1030841","l":"Neisseria wadsworthii 9715","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A607711","Neisseria wadsworthii"],["NCBITaxon%3A1030841","Neisseria wadsworthii 9715"]]},{"id":"NCBITaxon:1030843","l":"Porphyromonas gingivalis TDC60","na":1,"nb":2,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A837","Porphyromonas gingivalis"],["NCBITaxon%3A1030843","Porphyromonas gingivalis TDC60"]]},{"id":"NCBITaxon:1031537","l":"Bremerella cremea","na":2,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A1031537","Bremerella cremea"]]},{"id":"NCBITaxon:1031538","l":"Neptunomonas concharum","na":2,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A1031538","Neptunomonas concharum"]]},{"id":"NCBITaxon:1031542","l":"Campylobacter volucris","na":1,"nb":2,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A1031542","Campylobacter volucris"],["NCBITaxon%3A580033","Campylobacter volucris LMG 24379"]]},{"id":"NCBITaxon:1031564","l":"Campylobacter insulaenigrae NCTC 12927","na":1,"nb":2,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A260714","Campylobacter insulaenigrae"],["NCBITaxon%3A1031564","Campylobacter insulaenigrae NCTC 12927"]]},{"id":"NCBITaxon:1031739","l":"Campylobacter helveticus CCUG 30566","na":1,"nb":2,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["NCBITaxon%3A28898","Campylobacter helveticus"],["NCBITaxon%3A1031739","Campylobacter helveticus CCUG 30566"]]},{"id":"NCBITaxon:1031746","l":"Campylobacter hyointestinalis subsp. hyointestinalis LMG 9260","na":1,"nb":2,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A198","Campylobacter hyointestinalis"],["NCBITaxon%3A1031746","Campylobacter hyointestinalis subsp. hyointestinalis LMG 9260"]]},{"id":"NCBITaxon:1032238","l":"","na":1,"nb":2,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A603050","Malaciobacter mytili"],["NCBITaxon%3A1032238","Malaciobacter mytili LMG 24559"]]},{"id":"NCBITaxon:1032240","l":"Aliarcobacter thereius LMG 24486","na":1,"nb":2,"a":[["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A544718","Aliarcobacter thereius"],["NCBITaxon%3A1032240","Aliarcobacter thereius LMG 24486"]]},{"id":"NCBITaxon:103232","l":"Streptomyces ipomoeae","na":1,"nb":2,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A103232","Streptomyces ipomoeae"],["NCBITaxon%3A698759","Streptomyces ipomoeae 91-03"]]},{"id":"NCBITaxon:1032476","l":"Nonomuraea soli","na":2,"nb":1,"a":[["soil-envo-00001998.html","soil"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A1032476","Nonomuraea soli"]]},{"id":"NCBITaxon:1032623","l":"Otariodibacter oris","na":2,"nb":1,"a":[["mouth-environment-envo-08000002.html","mouth environment"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A1032623","Otariodibacter oris"]]},{"id":"NCBITaxon:1033802","l":"Salinisphaera shabanensis E1L3A","na":1,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A180542","Salinisphaera shabanensis"],["NCBITaxon%3A1033802","Salinisphaera shabanensis E1L3A"]]},{"id":"NCBITaxon:1033806","l":"Halorhabdus tiamatea SARL4B","na":1,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A430914","Halorhabdus tiamatea"],["NCBITaxon%3A1033806","Halorhabdus tiamatea SARL4B"]]},{"id":"NCBITaxon:1033810","l":"Haloplasma contractile SSD-17B","na":1,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A471825","Haloplasma contractile"],["NCBITaxon%3A1033810","Haloplasma contractile SSD-17B"]]},{"id":"NCBITaxon:1033854","l":"Thioalkalivibrio sulfidiphilus","na":1,"nb":2,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1033854","Thioalkalivibrio sulfidiphilus"],["NCBITaxon%3A396588","Thioalkalivibrio sulfidiphilus HL-EbGr7"]]},{"id":"NCBITaxon:1034807","l":"Flavobacterium branchiophilum FL-15","na":2,"nb":1,"a":[["gill-bto-0000518.html","gill"],["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1034807","Flavobacterium branchiophilum FL-15"]]},{"id":"NCBITaxon:1035187","l":"Streptococcus mitis SK569","na":1,"nb":2,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A28037","Streptococcus mitis"],["NCBITaxon%3A1035187","Streptococcus mitis SK569"]]},{"id":"NCBITaxon:1035188","l":"Haemophilus pittmaniae HK 85","na":1,"nb":2,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A249188","Haemophilus pittmaniae"],["NCBITaxon%3A1035188","Haemophilus pittmaniae HK 85"]]},{"id":"NCBITaxon:1035194","l":"Aggregatibacter actinomycetemcomitans Y4","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A714","Aggregatibacter actinomycetemcomitans"],["NCBITaxon%3A1035194","Aggregatibacter actinomycetemcomitans Y4"]]},{"id":"NCBITaxon:1035196","l":"","na":1,"nb":2,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A1261","Peptostreptococcus anaerobius"],["NCBITaxon%3A1035196","Peptostreptococcus anaerobius VPI 4330 = DSM 2949"]]},{"id":"NCBITaxon:1035839","l":"","na":1,"nb":2,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A1078480","Haemophilus sputorum"],["NCBITaxon%3A1035839","Haemophilus sputorum CCUG 13788"]]},{"id":"NCBITaxon:1037911","l":"Pseudomonas fluorescens A506","na":2,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A1037911","Pseudomonas fluorescens A506"]]},{"id":"NCBITaxon:1038856","l":"Planococcus plakortidis","na":2,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"],["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1038856","Planococcus plakortidis"]]},{"id":"NCBITaxon:1038858","l":"Azorhizobium doebereinerae UFLA1-100","na":1,"nb":2,"a":[["plant-bto-0001481.html","plant"]],"b":[["NCBITaxon%3A281091","Azorhizobium doebereinerae"],["NCBITaxon%3A1038858","Azorhizobium doebereinerae UFLA1-100"]]},{"id":"NCBITaxon:1038867","l":"Bradyrhizobium sp. WSM3983","na":2,"nb":1,"a":[["plant-bto-0001481.html","plant"],["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A1038867","Bradyrhizobium sp. WSM3983"]]},{"id":"NCBITaxon:1038929","l":"Streptomyces xinghaiensis S187","na":1,"nb":2,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1038928","Streptomyces xinghaiensis"],["NCBITaxon%3A1038929","Streptomyces xinghaiensis S187"]]},{"id":"NCBITaxon:104087","l":"Pseudomonas frederiksbergensis","na":2,"nb":1,"a":[["ocean-envo-00000015.html","ocean"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A104087","Pseudomonas frederiksbergensis"]]},{"id":"NCBITaxon:1040985","l":"Mesorhizobium sp. WSM2561","na":2,"nb":1,"a":[["agricultural-field-envo-00000114.html","agricultural field"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A1040985","Mesorhizobium sp. WSM2561"]]},{"id":"NCBITaxon:1040987","l":"Mesorhizobium sp. WSM3626","na":2,"nb":1,"a":[["mountain-envo-00000081.html","mountain"],["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A1040987","Mesorhizobium sp. WSM3626"]]},{"id":"NCBITaxon:104100","l":"Acetobacter lovaniensis","na":1,"nb":2,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A104100","Acetobacter lovaniensis"],["NCBITaxon%3A1307909","Acetobacter lovaniensis NRIC 0474"]]},{"id":"NCBITaxon:104101","l":"Acetobacter indonesiensis","na":1,"nb":2,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A104101","Acetobacter indonesiensis"],["NCBITaxon%3A1307908","Acetobacter indonesiensis NRIC 0313"]]},{"id":"NCBITaxon:1041146","l":"Rhizobium sullae WSM1592","na":2,"nb":1,"a":[["agricultural-field-envo-00000114.html","agricultural field"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A1041146","Rhizobium sullae WSM1592"]]},{"id":"NCBITaxon:1041151","l":"Sinorhizobium meliloti 4H41","na":2,"nb":1,"a":[["joint-bto-0001686.html","joint"],["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A1041151","Sinorhizobium meliloti 4H41"]]},{"id":"NCBITaxon:1041152","l":"Sinorhizobium meliloti CIAM1775","na":2,"nb":1,"a":[["marginal-sea-biome-envo-01000046.html","marginal sea biome"],["sea-envo-00000016.html","sea"]],"b":[["NCBITaxon%3A1041152","Sinorhizobium meliloti CIAM1775"]]},{"id":"NCBITaxon:1041504","l":"Candidatus Arthromitus sp. SFB-rat-Yit","na":2,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1041504","Candidatus Arthromitus sp. SFB-rat-Yit"]]},{"id":"NCBITaxon:1041809","l":"Candidatus Arthromitus sp. SFB-mouse-Yit","na":2,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1041809","Candidatus Arthromitus sp. SFB-mouse-Yit"]]},{"id":"NCBITaxon:1041826","l":"Flavobacterium columnare ATCC 49512","na":1,"nb":2,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A996","Flavobacterium columnare"],["NCBITaxon%3A1041826","Flavobacterium columnare ATCC 49512"]]},{"id":"NCBITaxon:1042","l":"Erythrobacter sp.","na":2,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A1042","Erythrobacter sp."]]},{"id":"NCBITaxon:1042321","l":"Ureaplasma miroungigenitalium","na":2,"nb":1,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A1042321","Ureaplasma miroungigenitalium"]]},{"id":"NCBITaxon:1043206","l":"","na":1,"nb":2,"a":[["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A527","Acidiphilium sp."],["NCBITaxon%3A1043206","Acidiphilium sp. PM"]]},{"id":"NCBITaxon:1045012","l":"Acetivibrio clariflavus 4-2a","na":2,"nb":1,"a":[["compost-envo-00002170.html","compost"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A1045012","Acetivibrio clariflavus 4-2a"]]},{"id":"NCBITaxon:1045317","l":"Sphingomonas lutea","na":1,"nb":2,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A1045317","Sphingomonas lutea"],["NCBITaxon%3A3096157","Sphingomonas sandaracina"]]},{"id":"NCBITaxon:1045776","l":"Kutzneria buriramensis","na":2,"nb":1,"a":[["forested-area-envo-00000111.html","forested area"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A1045776","Kutzneria buriramensis"]]},{"id":"NCBITaxon:104662","l":"Chitinophaga japonensis","na":1,"nb":2,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A104662","Chitinophaga japonensis"],["NCBITaxon%3A1121281","Chitinophaga japonensis DSM 13484"]]},{"id":"NCBITaxon:1046624","l":"Lactococcus lactis subsp. lactis IO-1","na":1,"nb":2,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1358","Lactococcus lactis"],["NCBITaxon%3A1046624","Lactococcus lactis subsp. lactis IO-1"]]},{"id":"NCBITaxon:1048339","l":"Sporichthya polymorpha DSM 43042","na":1,"nb":2,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A35751","Sporichthya polymorpha"],["NCBITaxon%3A1048339","Sporichthya polymorpha DSM 43042"]]},{"id":"NCBITaxon:1048394","l":"Compostimonas suwonensis","na":2,"nb":1,"a":[["agricultural-waste-material-envo-01000371.html","agricultural waste material"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A1048394","Compostimonas suwonensis"]]},{"id":"NCBITaxon:1049790","l":"","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A29506","Leptospira inadai"],["NCBITaxon%3A1049790","Leptospira inadai serovar Lyme str. 10"]]},{"id":"NCBITaxon:1052258","l":"Arenimonas daechungensis","na":2,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"],["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1052258","Arenimonas daechungensis"]]},{"id":"NCBITaxon:105229","l":"Neobacillus fumarioli","na":1,"nb":2,"a":[["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A105229","Neobacillus fumarioli"],["NCBITaxon%3A1314754","Neobacillus fumarioli NBRC 102428"]]},{"id":"NCBITaxon:1052585","l":"","na":1,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A96241","Bacillus spizizenii"],["NCBITaxon%3A1052585","Bacillus spizizenii TU-B-10"]]},{"id":"NCBITaxon:1052802","l":"Crenarchaeota archaeon SCGC AAA471-B23","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052802","Crenarchaeota archaeon SCGC AAA471-B23"]]},{"id":"NCBITaxon:1052803","l":"Crenarchaeota archaeon SCGC AAA471-C03","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052803","Crenarchaeota archaeon SCGC AAA471-C03"]]},{"id":"NCBITaxon:1052804","l":"Crenarchaeota archaeon SCGC AAA471-L13","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052804","Crenarchaeota archaeon SCGC AAA471-L13"]]},{"id":"NCBITaxon:1052805","l":"Crenarchaeota archaeon SCGC AAA471-L14","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052805","Crenarchaeota archaeon SCGC AAA471-L14"]]},{"id":"NCBITaxon:1052806","l":"Crenarchaeota archaeon SCGC AAA471-O08","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052806","Crenarchaeota archaeon SCGC AAA471-O08"]]},{"id":"NCBITaxon:1052810","l":"Calescamantes bacterium SCGC AAA471-M6","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052810","Calescamantes bacterium SCGC AAA471-M6"]]},{"id":"NCBITaxon:1052811","l":"Candidatus Fervidibacteria bacterium JGI 0000001-B9","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052811","Candidatus Fervidibacteria bacterium JGI 0000001-B9"]]},{"id":"NCBITaxon:1052812","l":"Candidatus Fervidibacteria bacterium JGI 0000001-D5","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052812","Candidatus Fervidibacteria bacterium JGI 0000001-D5"]]},{"id":"NCBITaxon:1052813","l":"Candidatus Fervidibacteria bacterium JGI 0000001-G10","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052813","Candidatus Fervidibacteria bacterium JGI 0000001-G10"]]},{"id":"NCBITaxon:1052814","l":"Candidatus Fervidibacteria bacterium JGI 0000054-H05","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052814","Candidatus Fervidibacteria bacterium JGI 0000054-H05"]]},{"id":"NCBITaxon:1052828","l":"Aigarchaeota archaeon SCGC AAA471-E16","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052828","Aigarchaeota archaeon SCGC AAA471-E16"]]},{"id":"NCBITaxon:1052829","l":"Candidatus Calditenuaceae archaeon SCGC AAA471-F17","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052829","Candidatus Calditenuaceae archaeon SCGC AAA471-F17"]]},{"id":"NCBITaxon:1052830","l":"Aigarchaeota archaeon SCGC AAA471-G05","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052830","Aigarchaeota archaeon SCGC AAA471-G05"]]},{"id":"NCBITaxon:1052831","l":"Aigarchaeota archaeon SCGC AAA471-I13","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052831","Aigarchaeota archaeon SCGC AAA471-I13"]]},{"id":"NCBITaxon:1052832","l":"Aigarchaeota archaeon SCGC AAA471-J07","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052832","Aigarchaeota archaeon SCGC AAA471-J07"]]},{"id":"NCBITaxon:1052833","l":"Aigarchaeota archaeon SCGC AAA471-J08","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052833","Aigarchaeota archaeon SCGC AAA471-J08"]]},{"id":"NCBITaxon:1052838","l":"Aigarchaeota archaeon JGI 0000001-A7","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052838","Aigarchaeota archaeon JGI 0000001-A7"]]},{"id":"NCBITaxon:1052839","l":"Aigarchaeota archaeon JGI 0000001-B8","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052839","Aigarchaeota archaeon JGI 0000001-B8"]]},{"id":"NCBITaxon:1052841","l":"Aigarchaeota archaeon JGI 0000001-H6","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052841","Aigarchaeota archaeon JGI 0000001-H6"]]},{"id":"NCBITaxon:1054034","l":"Arcobacter cloacae","na":2,"nb":1,"a":[["sludge-envo-00002044.html","sludge"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A1054034","Arcobacter cloacae"]]},{"id":"NCBITaxon:1054041","l":"Levilactobacillus yonginensis","na":2,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A1054041","Levilactobacillus yonginensis"]]},{"id":"NCBITaxon:1054498","l":"Rivihabitans pingtungensis","na":2,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A1054498","Rivihabitans pingtungensis"]]},{"id":"NCBITaxon:1054860","l":"","na":1,"nb":2,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A1951","Streptomyces purpureus"],["NCBITaxon%3A1054860","Streptomyces purpureus KA281"]]},{"id":"NCBITaxon:1054862","l":"Streptomyces bottropensis ATCC 25435","na":1,"nb":2,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A42235","Streptomyces bottropensis"],["NCBITaxon%3A1054862","Streptomyces bottropensis ATCC 25435"]]},{"id":"NCBITaxon:1055524","l":"Burkholderia cenocepacia (strain H111)","na":2,"nb":1,"a":[["k-562-cell-bto-0000664.html","K-562 cell"],["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A1055524","Burkholderia cenocepacia H111"]]},{"id":"NCBITaxon:105559","l":"Nitrosococcus watsonii C-113","na":1,"nb":2,"a":[["sea-envo-00000016.html","sea"]],"b":[["NCBITaxon%3A473531","Nitrosococcus watsonii"],["NCBITaxon%3A105559","Nitrosococcus watsonii C-113"]]},{"id":"NCBITaxon:105560","l":"Methylibium petroleiphilum","na":1,"nb":2,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"]],"b":[["NCBITaxon%3A105560","Methylibium petroleiphilum"],["NCBITaxon%3A420662","Methylibium petroleiphilum PM1"]]},{"id":"NCBITaxon:1056807","l":"Morococcus cerebrosus","na":2,"nb":1,"a":[["neonate-bto-0001762.html","neonate"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A1056807","Morococcus cerebrosus"]]},{"id":"NCBITaxon:1056982","l":"Gordonia phosphorivorans","na":1,"nb":2,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1056982","Gordonia phosphorivorans"],["NCBITaxon%3A375757","Streptomyces fildesensis"]]},{"id":"NCBITaxon:105972","l":"Methylosarcina fibrata","na":1,"nb":2,"a":[["stream-envo-00000023.html","stream"]],"b":[["NCBITaxon%3A105972","Methylosarcina fibrata"],["NCBITaxon%3A1132443","Methylosarcina fibrata AML-C10"]]},{"id":"NCBITaxon:1064535","l":"Megasphaera elsdenii DSM 20460","na":1,"nb":2,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A907","Megasphaera elsdenii"],["NCBITaxon%3A1064535","Megasphaera elsdenii DSM 20460"]]},{"id":"NCBITaxon:106634","l":"Thioalkalivibrio versutus","na":1,"nb":2,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A106634","Thioalkalivibrio versutus"],["NCBITaxon%3A886877","Thioalkalivibrio versutus AL 2"]]},{"id":"NCBITaxon:1068978","l":"Amycolatopsis methanolica 239","na":1,"nb":2,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A1814","Amycolatopsis methanolica"],["NCBITaxon%3A1068978","Amycolatopsis methanolica 239"]]},{"id":"NCBITaxon:1069221","l":"Mycolicibacillus parakoreensis","na":2,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"],["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A1069221","Mycolicibacillus parakoreensis"]]},{"id":"NCBITaxon:1073081","l":"","na":2,"nb":1,"a":[["foam-habitatmech-bacdive-df2f59b773.html","Foam"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A489913","Halarchaeum nitratireducens"]]},{"id":"NCBITaxon:1073250","l":"Desulfamplus magnetovallimortis BW-1","na":1,"nb":2,"a":[["brackish-water-body-envo-01001321.html","brackish water body"]],"b":[["NCBITaxon%3A1246637","Desulfamplus magnetovallimortis"],["NCBITaxon%3A1073250","Desulfamplus magnetovallimortis BW-1"]]},{"id":"NCBITaxon:1073972","l":"Candidatus Arthromitus sp. SFB-mouse-NYU","na":2,"nb":1,"a":[["lamina-propria-bto-0002330.html","lamina propria"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1073972","Candidatus Arthromitus sp. SFB-mouse-NYU"]]},{"id":"NCBITaxon:1074000","l":"Cronobacter universalis NCTC 9529","na":1,"nb":2,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A535744","Cronobacter universalis"],["NCBITaxon%3A1074000","Cronobacter universalis NCTC 9529"]]},{"id":"NCBITaxon:1074049","l":"Candidatus Burkholderia crenata","na":2,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"],["seedling-bto-0001228.html","seedling"]],"b":[["NCBITaxon%3A1074049","Candidatus Burkholderia crenata"]]},{"id":"NCBITaxon:1074311","l":"Vibrio alfacsensis","na":2,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A1074311","Vibrio alfacsensis"]]},{"id":"NCBITaxon:1075090","l":"Gordonia amarae NBRC 15530","na":1,"nb":2,"a":[["foam-habitatmech-bacdive-df2f59b773.html","Foam"]],"b":[["NCBITaxon%3A36821","Gordonia amarae"],["NCBITaxon%3A1075090","Gordonia amarae NBRC 15530"]]},{"id":"NCBITaxon:1076331","l":"Arsenicicoccus dermatophilus","na":2,"nb":1,"a":[["foot-bto-0000476.html","foot"],["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["NCBITaxon%3A1076331","Arsenicicoccus dermatophilus"]]},{"id":"NCBITaxon:1076596","l":"Acetobacter persici","na":1,"nb":2,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A1076596","Acetobacter persici"],["NCBITaxon%3A1236503","Acetobacter persici JCM 25330"]]},{"id":"NCBITaxon:1077144","l":"Dietzia alimentaria 72","na":1,"nb":2,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A665550","Dietzia alimentaria"],["NCBITaxon%3A1077144","Dietzia alimentaria 72"]]},{"id":"NCBITaxon:1077285","l":"Bacteroides faecis MAJ27","na":1,"nb":2,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A674529","Bacteroides faecis"],["NCBITaxon%3A1077285","Bacteroides faecis MAJ27"]]},{"id":"NCBITaxon:1077976","l":"","na":1,"nb":2,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A84595","Gordonia polyisoprenivorans"],["NCBITaxon%3A1077976","Gordonia polyisoprenivorans NBRC 16320 = JCM 10675"]]},{"id":"NCBITaxon:1078846","l":"Methylovulum miyakonense HT12","na":1,"nb":2,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A645578","Methylovulum miyakonense"],["NCBITaxon%3A1078846","Methylovulum miyakonense HT12"]]},{"id":"NCBITaxon:1080071","l":"Streptococcus orisasini","na":2,"nb":1,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"],["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A1080071","Streptococcus orisasini"]]},{"id":"NCBITaxon:1080712","l":"Methanomassiliicoccus luminyensis","na":1,"nb":2,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A1080712","Methanomassiliicoccus luminyensis"],["NCBITaxon%3A1175296","Methanomassiliicoccus luminyensis B10"]]},{"id":"NCBITaxon:1081094","l":"Legionella pneumophila subsp. pneumophila str. Hextuple_2q","na":2,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"],["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A1081094","Legionella pneumophila subsp. pneumophila str. Hextuple_2q"]]},{"id":"NCBITaxon:1081095","l":"Legionella pneumophila subsp. pneumophila str. Hextuple_3a","na":2,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"],["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A1081095","Legionella pneumophila subsp. pneumophila str. Hextuple_3a"]]},{"id":"NCBITaxon:1081736","l":"Listeria fleischmannii subsp. coloradonensis","na":1,"nb":2,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A1069827","Listeria fleischmannii"],["NCBITaxon%3A1081736","Listeria fleischmannii subsp. coloradonensis"]]},{"id":"NCBITaxon:1082345","l":"Sphingobium boeckii","na":2,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A1082345","Sphingobium boeckii"]]},{"id":"NCBITaxon:1082932","l":"Agrobacterium tumefaciens CCNWGS0286","na":2,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"],["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A1082932","Agrobacterium tumefaciens CCNWGS0286"]]},{"id":"NCBITaxon:1084","l":"Pararhodospirillum photometricum","na":1,"nb":2,"a":[["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A1084","Pararhodospirillum photometricum"],["NCBITaxon%3A1150469","Pararhodospirillum photometricum DSM 122"]]},{"id":"NCBITaxon:1084519","l":"Nibribacter koreensis","na":2,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"],["brackish-water-body-envo-01001321.html","brackish water body"]],"b":[["NCBITaxon%3A1084519","Nibribacter koreensis"]]},{"id":"NCBITaxon:1087449","l":"Aquimarina agarilytica","na":1,"nb":2,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A1087449","Aquimarina agarilytica"],["NCBITaxon%3A620914","Aquimarina agarilytica ZC1"]]},{"id":"NCBITaxon:1088875","l":"Francisella philomiragia FSC145","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A28110","Francisella philomiragia"],["NCBITaxon%3A1088875","Francisella philomiragia FSC145"]]},{"id":"NCBITaxon:1089439","l":"","na":1,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A270495","Fangia hongkongensis"],["NCBITaxon%3A1089439","Fangia hongkongensis FSC776 = DSM 21703"]]},{"id":"NCBITaxon:1089453","l":"Gordonia sputi NBRC 100414","na":1,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A36823","Gordonia sputi"],["NCBITaxon%3A1089453","Gordonia sputi NBRC 100414"]]},{"id":"NCBITaxon:1089545","l":"Amycolatopsis balhimycina FH 1894","na":1,"nb":2,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A208443","Amycolatopsis balhimycina"],["NCBITaxon%3A1089545","Amycolatopsis balhimycina FH 1894"]]},{"id":"NCBITaxon:1089546","l":"Actinopolyspora halophila DSM 43834","na":1,"nb":2,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["NCBITaxon%3A1850","Actinopolyspora halophila"],["NCBITaxon%3A1089546","Actinopolyspora halophila DSM 43834"]]},{"id":"NCBITaxon:1089548","l":"Thermicanus aegyptius DSM 12793","na":1,"nb":2,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A94009","Thermicanus aegyptius"],["NCBITaxon%3A1089548","Thermicanus aegyptius DSM 12793"]]},{"id":"NCBITaxon:1090319","l":"Sphingomonas phyllosphaerae FA2","na":1,"nb":2,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A257003","Sphingomonas phyllosphaerae"],["NCBITaxon%3A1090319","Sphingomonas phyllosphaerae FA2"]]},{"id":"NCBITaxon:1090322","l":"Methanolobus tindarius DSM 2278","na":1,"nb":2,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A2221","Methanolobus tindarius"],["NCBITaxon%3A1090322","Methanolobus tindarius DSM 2278"]]},{"id":"NCBITaxon:1090375","l":"Candidatus Burkholderia pumila","na":2,"nb":1,"a":[["mesophyll-bto-0000858.html","mesophyll"],["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A1090375","Candidatus Burkholderia pumila"]]},{"id":"NCBITaxon:1090379","l":"Candidatus Burkholderia brachyanthoides","na":2,"nb":1,"a":[["mesophyll-bto-0000858.html","mesophyll"],["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A1090379","Candidatus Burkholderia brachyanthoides"]]},{"id":"NCBITaxon:1090471","l":"Candidatus Burkholderia humilis","na":2,"nb":1,"a":[["mesophyll-bto-0000858.html","mesophyll"],["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A1090471","Candidatus Burkholderia humilis"]]},{"id":"NCBITaxon:1091494","l":"Methylotuvimicrobium alcaliphilum 20Z","na":1,"nb":2,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A271065","Methylotuvimicrobium alcaliphilum"],["NCBITaxon%3A1091494","Methylotuvimicrobium alcaliphilum 20Z"]]},{"id":"NCBITaxon:1094","l":"Chlorobium phaeovibrioides","na":1,"nb":2,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A1094","Chlorobium phaeovibrioides"],["NCBITaxon%3A290318","Chlorobium phaeovibrioides DSM 265"]]},{"id":"NCBITaxon:1094555","l":"Bartonella elizabethae F9251 = ATCC 49927","na":1,"nb":2,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A807","Bartonella elizabethae"],["NCBITaxon%3A1094555","Bartonella elizabethae F9251 = ATCC 49927"]]},{"id":"NCBITaxon:109472","l":"Bisgaardia hudsonensis","na":2,"nb":1,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A109472","Bisgaardia hudsonensis"]]},{"id":"NCBITaxon:1095727","l":"Streptococcus sp. SK643","na":1,"nb":2,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A1306","Streptococcus sp."],["NCBITaxon%3A1095727","Streptococcus sp. SK643"]]},{"id":"NCBITaxon:1095745","l":"Haemophilus parainfluenzae HK262","na":1,"nb":2,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A729","Haemophilus parainfluenzae"],["NCBITaxon%3A1095745","Haemophilus parainfluenzae HK262"]]},{"id":"NCBITaxon:1095749","l":"Pasteurella bettyae CCUG 2042","na":1,"nb":2,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A752","Pasteurella bettyae"],["NCBITaxon%3A1095749","Pasteurella bettyae CCUG 2042"]]},{"id":"NCBITaxon:1096091","l":"Labrys methylaminiphilus JLW10","na":1,"nb":2,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A298598","Labrys methylaminiphilus"],["NCBITaxon%3A1096091","Labrys methylaminiphilus JLW10"]]},{"id":"NCBITaxon:1096243","l":"Idiomarina piscisalsi","na":2,"nb":1,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A1096243","Idiomarina piscisalsi"]]},{"id":"NCBITaxon:1096246","l":"Hungatella effluvii","na":2,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A1096246","Hungatella effluvii"]]},{"id":"NCBITaxon:1096930","l":"Novosphingobium lindaniclasticum LE124","na":1,"nb":2,"a":[["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A1329895","Novosphingobium lindaniclasticum"],["NCBITaxon%3A1096930","Novosphingobium lindaniclasticum LE124"]]},{"id":"NCBITaxon:1096995","l":"Acinetobacter baumannii BJAB07104","na":2,"nb":1,"a":[["ascites-bto-0000091.html","ascites"],["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"]],"b":[["NCBITaxon%3A1096995","Acinetobacter baumannii BJAB07104"]]},{"id":"NCBITaxon:1096996","l":"Acinetobacter baumannii BJAB0715","na":2,"nb":1,"a":[["ascites-bto-0000091.html","ascites"],["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"]],"b":[["NCBITaxon%3A1096996","Acinetobacter baumannii BJAB0715"]]},{"id":"NCBITaxon:1096997","l":"Acinetobacter baumannii BJAB0868","na":2,"nb":1,"a":[["ascites-bto-0000091.html","ascites"],["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"]],"b":[["NCBITaxon%3A1096997","Acinetobacter baumannii BJAB0868"]]},{"id":"NCBITaxon:1097","l":"Chlorobaculum tepidum","na":1,"nb":2,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A1097","Chlorobaculum tepidum"],["NCBITaxon%3A194439","Chlorobaculum tepidum TLS"]]},{"id":"NCBITaxon:109936","l":"Cladochytrium replicatum","na":2,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["NCBITaxon%3A109936","Cladochytrium replicatum"]]},{"id":"NCBITaxon:1099853","l":"Coprobacter fastidiosus","na":1,"nb":2,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A1099853","Coprobacter fastidiosus"],["NCBITaxon%3A1349822","Coprobacter fastidiosus NSB1 = JCM 33896"]]},{"id":"NCBITaxon:1100","l":"Pelodictyon luteolum","na":1,"nb":2,"a":[["brackish-water-body-envo-01001321.html","brackish water body"]],"b":[["NCBITaxon%3A1100","Pelodictyon luteolum"],["NCBITaxon%3A319225","Pelodictyon luteolum DSM 273"]]},{"id":"NCBITaxon:1100720","l":"Limnohabitans sp. Rim28","na":1,"nb":2,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A1907725","Limnohabitans sp."],["NCBITaxon%3A1100720","Limnohabitans sp. Rim28"]]},{"id":"NCBITaxon:1100833","l":"Chlamydia trachomatis F/SWFPminus","na":2,"nb":1,"a":[["respiratory-system-bto-0000203.html","respiratory system"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A1100833","Chlamydia trachomatis F/SWFPminus"]]},{"id":"NCBITaxon:110163","l":"Thermococcus aggregans","na":2,"nb":1,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A110163","Thermococcus aggregans"]]},{"id":"NCBITaxon:1104571","l":"Thaumarchaeota archaeon SCGC AB-179-E04","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1104571","Thaumarchaeota archaeon SCGC AB-179-E04"]]},{"id":"NCBITaxon:1104575","l":"Diapherotrites archaeon SCGC AAA011-K09","na":2,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1104575","Diapherotrites archaeon SCGC AAA011-K09"]]},{"id":"NCBITaxon:1104576","l":"Candidatus Iainarchaeum andersonii SCGC AAA011-E11","na":2,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1104576","Candidatus Iainarchaeum andersonii SCGC AAA011-E11"]]},{"id":"NCBITaxon:1104577","l":"Nanoarchaeota archaeon SCGC AAA011-G17","na":2,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1104577","Nanoarchaeota archaeon SCGC AAA011-G17"]]},{"id":"NCBITaxon:1104580","l":"Nanoarchaeota archaeon SCGC AAA011-L15","na":2,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1104580","Nanoarchaeota archaeon SCGC AAA011-L15"]]},{"id":"NCBITaxon:1104607","l":"Microgenomates bacterium SCGC AAA011-A19","na":2,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1104607","Microgenomates bacterium SCGC AAA011-A19"]]},{"id":"NCBITaxon:1104609","l":"Microgenomates bacterium SCGC AAA011-M05","na":2,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1104609","Microgenomates bacterium SCGC AAA011-M05"]]},{"id":"NCBITaxon:1104610","l":"Microgenomates bacterium SCGC AAA011-B20","na":2,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1104610","Microgenomates bacterium SCGC AAA011-B20"]]},{"id":"NCBITaxon:1104614","l":"Microgenomates bacterium SCGC AAA011-I21","na":2,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1104614","Microgenomates bacterium SCGC AAA011-I21"]]},{"id":"NCBITaxon:1104615","l":"Microgenomates bacterium SCGC AAA011-L05","na":2,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1104615","Microgenomates bacterium SCGC AAA011-L05"]]},{"id":"NCBITaxon:110637","l":"Arthrobacter sp. 'SMCC G980'","na":2,"nb":1,"a":[["biofilm-material-envo-01000156.html","biofilm material"],["farm-envo-00000078.html","farm"]],"b":[["NCBITaxon%3A110637","Arthrobacter sp. 'SMCC G980'"]]},{"id":"NCBITaxon:110648","l":"Arthrobacter sp. 'SMCC ZAT013'","na":2,"nb":1,"a":[["biofilm-material-envo-01000156.html","biofilm material"],["farm-envo-00000078.html","farm"]],"b":[["NCBITaxon%3A110648","Arthrobacter sp. 'SMCC ZAT013'"]]},{"id":"NCBITaxon:1107882","l":"Mesorhizobium alhagi CCNWXJ12-2","na":1,"nb":2,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A475067","Allomesorhizobium alhagi"],["NCBITaxon%3A1107882","Mesorhizobium alhagi CCNWXJ12-2"]]},{"id":"NCBITaxon:110935","l":"Agreia bicolorata","na":2,"nb":1,"a":[["plant-gall-po-0025626.html","plant gall"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["NCBITaxon%3A110935","Agreia bicolorata"]]},{"id":"NCBITaxon:110936","l":"Rathayibacter caricis","na":1,"nb":2,"a":[["skin-bto-0001253.html","skin"]],"b":[["NCBITaxon%3A110936","Rathayibacter caricis"],["NCBITaxon%3A1328867","Rathayibacter caricis DSM 15933"]]},{"id":"NCBITaxon:1110509","l":"","na":2,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["cob-bto-0000266.html","cob"]],"b":[["NCBITaxon%3A1110509","Methanothrix harundinacea 6Ac"]]},{"id":"NCBITaxon:1110546","l":"Veillonella tobetsuensis","na":2,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A1110546","Veillonella tobetsuensis"]]},{"id":"NCBITaxon:1110697","l":"Nocardia asteroides NBRC 15531","na":1,"nb":2,"a":[["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1824","Nocardia asteroides"],["NCBITaxon%3A1110697","Nocardia asteroides NBRC 15531"]]},{"id":"NCBITaxon:111143","l":"Alishewanella fetalis","na":2,"nb":1,"a":[["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"]],"b":[["NCBITaxon%3A111143","Alishewanella fetalis"]]},{"id":"NCBITaxon:1111729","l":"Corynebacterium sputi DSM 45148","na":1,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A489915","Corynebacterium sputi"],["NCBITaxon%3A1111729","Corynebacterium sputi DSM 45148"]]},{"id":"NCBITaxon:1111730","l":"Flavobacterium antarcticum DSM 19726","na":1,"nb":2,"a":[["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A271155","Flavobacterium antarcticum"],["NCBITaxon%3A1111730","Flavobacterium antarcticum DSM 19726"]]},{"id":"NCBITaxon:1111733","l":"Massilia alkalitolerans DSM 17462","na":1,"nb":2,"a":[["undersea-feature-envo-00000104.html","undersea feature"]],"b":[["NCBITaxon%3A286638","Massilia alkalitolerans"],["NCBITaxon%3A1111733","Massilia alkalitolerans DSM 17462"]]},{"id":"NCBITaxon:1111734","l":"Acidipropionibacterium acidipropionici DSM 4900","na":1,"nb":2,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["NCBITaxon%3A1748","Acidipropionibacterium acidipropionici"],["NCBITaxon%3A1111734","Acidipropionibacterium acidipropionici DSM 4900"]]},{"id":"NCBITaxon:1112204","l":"Gordonia polyisoprenivorans VH2","na":1,"nb":2,"a":[["latex-bto-0000710.html","latex"]],"b":[["NCBITaxon%3A84595","Gordonia polyisoprenivorans"],["NCBITaxon%3A1112204","Gordonia polyisoprenivorans VH2"]]},{"id":"NCBITaxon:1112856","l":"Mycoplasmoides pneumoniae 309","na":2,"nb":1,"a":[["sputum-bto-0001297.html","sputum"],["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A1112856","Mycoplasmoides pneumoniae 309"]]},{"id":"NCBITaxon:1114960","l":"Rhodococcus pyridinivorans AK37","na":2,"nb":1,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A1114960","Rhodococcus pyridinivorans AK37"]]},{"id":"NCBITaxon:1114962","l":"Actinoalloteichus spitiensis RMV-1378","na":1,"nb":2,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A252394","Actinoalloteichus spitiensis"],["NCBITaxon%3A1114962","Actinoalloteichus spitiensis RMV-1378"]]},{"id":"NCBITaxon:1114965","l":"Streptococcus parasanguinis FW213","na":2,"nb":1,"a":[["tooth-bto-0000397.html","tooth"],["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A1114965","Streptococcus parasanguinis FW213"]]},{"id":"NCBITaxon:111564","l":"Kineosphaera limosa","na":1,"nb":2,"a":[["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["NCBITaxon%3A111564","Kineosphaera limosa"],["NCBITaxon%3A1184609","Kineosphaera limosa NBRC 100340"]]},{"id":"NCBITaxon:1116472","l":"Methyloglobulus morosus KoM1","na":1,"nb":2,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1410681","Methyloglobulus morosus"],["NCBITaxon%3A1116472","Methyloglobulus morosus KoM1"]]},{"id":"NCBITaxon:1117316","l":"Pseudoalteromonas marina DSM 17587","na":1,"nb":2,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["NCBITaxon%3A267375","Pseudoalteromonas marina"],["NCBITaxon%3A1117316","Pseudoalteromonas marina DSM 17587"]]},{"id":"NCBITaxon:1117379","l":"Neobacillus bataviensis LMG 21833","na":1,"nb":2,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A220685","Neobacillus bataviensis"],["NCBITaxon%3A1117379","Neobacillus bataviensis LMG 21833"]]},{"id":"NCBITaxon:111780","l":"Stanieria cyanosphaera PCC 7437","na":2,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["pond-envo-00000033.html","pond"]],"b":[["NCBITaxon%3A111780","Stanieria cyanosphaera PCC 7437"]]},{"id":"NCBITaxon:1118153","l":"Halomonas sp. GFAJ-1","na":1,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A1486246","Halomonas sp."],["NCBITaxon%3A1118153","Halomonas sp. GFAJ-1"]]},{"id":"NCBITaxon:1118379","l":"Mycolicibacter minnesotensis","na":2,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A1118379","Mycolicibacter minnesotensis"]]},{"id":"NCBITaxon:1120920","l":"Acidaminobacter hydrogenoformans DSM 2784","na":1,"nb":2,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["NCBITaxon%3A65403","Acidaminobacter hydrogenoformans"],["NCBITaxon%3A1120920","Acidaminobacter hydrogenoformans DSM 2784"]]},{"id":"NCBITaxon:1120921","l":"Acidaminococcus intestini DSM 21505","na":1,"nb":2,"a":[["hospital-envo-00002173.html","hospital"]],"b":[["NCBITaxon%3A187327","Acidaminococcus intestini"],["NCBITaxon%3A1120921","Acidaminococcus intestini DSM 21505"]]},{"id":"NCBITaxon:1120926","l":"Acinetobacter gerneri DSM 14967 = CIP 107464 = MTCC 9824","na":1,"nb":2,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A202952","Acinetobacter gerneri"],["NCBITaxon%3A1120926","Acinetobacter gerneri DSM 14967 = CIP 107464 = MTCC 9824"]]},{"id":"NCBITaxon:1120932","l":"Actinotignum schaalii DSM 15541","na":1,"nb":2,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A59505","Actinotignum schaalii"],["NCBITaxon%3A1120932","Actinotignum schaalii DSM 15541"]]},{"id":"NCBITaxon:1120933","l":"Actinotignum urinale DSM 15805","na":1,"nb":2,"a":[["urethra-bto-0001426.html","urethra"]],"b":[["NCBITaxon%3A190146","Actinotignum urinale"],["NCBITaxon%3A1120933","Actinotignum urinale DSM 15805"]]},{"id":"NCBITaxon:1120934","l":"Actinokineospora enzanensis DSM 44649","na":1,"nb":2,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A155975","Actinokineospora enzanensis"],["NCBITaxon%3A1120934","Actinokineospora enzanensis DSM 44649"]]},{"id":"NCBITaxon:1120941","l":"Actinomyces dentalis DSM 19115","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A272548","Actinomyces dentalis"],["NCBITaxon%3A1120941","Actinomyces dentalis DSM 19115"]]},{"id":"NCBITaxon:1120942","l":"","na":1,"nb":2,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A52768","Schaalia georgiae"],["NCBITaxon%3A1120942","Schaalia georgiae DSM 6843"]]},{"id":"NCBITaxon:1120943","l":"Actinomyces gerencseriae DSM 6844","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A52769","Actinomyces gerencseriae"],["NCBITaxon%3A1120943","Actinomyces gerencseriae DSM 6844"]]},{"id":"NCBITaxon:1120944","l":"Actinomyces israelii DSM 43320","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A1659","Actinomyces israelii"],["NCBITaxon%3A1120944","Actinomyces israelii DSM 43320"]]},{"id":"NCBITaxon:1120946","l":"","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A121163","Schaalia suimastitidis"],["NCBITaxon%3A1120946","Schaalia suimastitidis DSM 15538"]]},{"id":"NCBITaxon:1120948","l":"Actinomycetospora chiangmaiensis DSM 45062","na":1,"nb":2,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A402650","Actinomycetospora chiangmaiensis"],["NCBITaxon%3A1120948","Actinomycetospora chiangmaiensis DSM 45062"]]},{"id":"NCBITaxon:1120957","l":"","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A714","Aggregatibacter actinomycetemcomitans"],["NCBITaxon%3A1120957","Aggregatibacter actinomycetemcomitans DSM 8324"]]},{"id":"NCBITaxon:1120958","l":"Agrococcus lahaulensis DSM 17612","na":1,"nb":2,"a":[["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A341722","Agrococcus lahaulensis"],["NCBITaxon%3A1120958","Agrococcus lahaulensis DSM 17612"]]},{"id":"NCBITaxon:1120960","l":"Agromyces subbeticus DSM 16689","na":1,"nb":2,"a":[["cave-envo-00000067.html","cave"]],"b":[["NCBITaxon%3A293890","Agromyces subbeticus"],["NCBITaxon%3A1120960","Agromyces subbeticus DSM 16689"]]},{"id":"NCBITaxon:1120962","l":"","na":1,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A232846","Alcaligenes phenolicus"],["NCBITaxon%3A1120962","Alcaligenes phenolicus DSM 16503"]]},{"id":"NCBITaxon:1120970","l":"Aliagarivorans taiwanensis DSM 22990","na":1,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A561966","Aliagarivorans taiwanensis"],["NCBITaxon%3A1120970","Aliagarivorans taiwanensis DSM 22990"]]},{"id":"NCBITaxon:1120971","l":"Alicyclobacillus contaminans DSM 17975","na":1,"nb":2,"a":[["city-envo-00000856.html","city"]],"b":[["NCBITaxon%3A1120971","Alicyclobacillus contaminans DSM 17975"],["NCBITaxon%3A392016","Paenalicyclobacillus contaminans"]]},{"id":"NCBITaxon:1120973","l":"Effusibacillus pohliae DSM 22757","na":1,"nb":2,"a":[["mount-envo-00000477.html","mount"]],"b":[["NCBITaxon%3A232270","Effusibacillus pohliae"],["NCBITaxon%3A1120973","Effusibacillus pohliae DSM 22757"]]},{"id":"NCBITaxon:1120979","l":"Alloscardovia omnicolens DSM 21503","na":1,"nb":2,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A419015","Alloscardovia omnicolens"],["NCBITaxon%3A1120979","Alloscardovia omnicolens DSM 21503"]]},{"id":"NCBITaxon:1120994","l":"Anaerosphaera aminiphila","na":1,"nb":2,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A1120994","Anaerosphaera aminiphila"],["NCBITaxon%3A1120995","Anaerosphaera aminiphila DSM 21120"]]},{"id":"NCBITaxon:1120996","l":"Anaerosporobacter mobilis DSM 15930","na":1,"nb":2,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A264463","Anaerosporobacter mobilis"],["NCBITaxon%3A1120996","Anaerosporobacter mobilis DSM 15930"]]},{"id":"NCBITaxon:1121002","l":"Aneurinibacillus terranovensis DSM 18919","na":1,"nb":2,"a":[["ridge-envo-00000283.html","ridge"]],"b":[["NCBITaxon%3A278991","Aneurinibacillus terranovensis"],["NCBITaxon%3A1121002","Aneurinibacillus terranovensis DSM 18919"]]},{"id":"NCBITaxon:1121004","l":"Aquaspirillum serpens DSM 68","na":1,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"]],"b":[["NCBITaxon%3A190","Aquaspirillum serpens"],["NCBITaxon%3A1121004","Aquaspirillum serpens DSM 68"]]},{"id":"NCBITaxon:1121005","l":"Aquimarina brevivitae DSM 17196","na":1,"nb":2,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["NCBITaxon%3A323412","Aquimarina brevivitae"],["NCBITaxon%3A1121005","Aquimarina brevivitae DSM 17196"]]},{"id":"NCBITaxon:1121011","l":"Arenibacter certesii DSM 19833","na":1,"nb":2,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A228955","Arenibacter certesii"],["NCBITaxon%3A1121011","Arenibacter certesii DSM 19833"]]},{"id":"NCBITaxon:1121017","l":"Arsenicicoccus bolidensis DSM 15745","na":1,"nb":2,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A229480","Arsenicicoccus bolidensis"],["NCBITaxon%3A1121017","Arsenicicoccus bolidensis DSM 15745"]]},{"id":"NCBITaxon:1121020","l":"Haematomicrobium sanguinis DSM 21259","na":1,"nb":2,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A479106","Haematomicrobium sanguinis"],["NCBITaxon%3A1121020","Haematomicrobium sanguinis DSM 21259"]]},{"id":"NCBITaxon:1121027","l":"Aurantimonas coralicida DSM 14790","na":1,"nb":2,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A182270","Aurantimonas coralicida"],["NCBITaxon%3A1121027","Aurantimonas coralicida DSM 14790"]]},{"id":"NCBITaxon:1121034","l":"Niveispirillum irakense DSM 11586","na":1,"nb":2,"a":[["rice-field-envo-00000296.html","rice field"]],"b":[["NCBITaxon%3A34011","Niveispirillum irakense"],["NCBITaxon%3A1121034","Niveispirillum irakense DSM 11586"]]},{"id":"NCBITaxon:1121035","l":"Azovibrio restrictus DSM 23866","na":1,"nb":2,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A146938","Azovibrio restrictus"],["NCBITaxon%3A1121035","Azovibrio restrictus DSM 23866"]]},{"id":"NCBITaxon:1121088","l":"","na":1,"nb":2,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1398","Heyndrickxia coagulans"],["NCBITaxon%3A1121088","Heyndrickxia coagulans DSM 1 = ATCC 7050"]]},{"id":"NCBITaxon:1121090","l":"Siminovitchia fordii DSM 16014 = CIP 108821","na":1,"nb":2,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["NCBITaxon%3A254759","Siminovitchia fordii"],["NCBITaxon%3A1121090","Siminovitchia fordii DSM 16014 = CIP 108821"]]},{"id":"NCBITaxon:1121093","l":"Ectobacillus panaciterrae DSM 19096","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A363872","Ectobacillus panaciterrae"],["NCBITaxon%3A1121093","Ectobacillus panaciterrae DSM 19096"]]},{"id":"NCBITaxon:1121098","l":"Phocaeicola massiliensis B84634 = Timone 84634 = DSM 17679 = JCM 13223","na":1,"nb":2,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A204516","Phocaeicola massiliensis"],["NCBITaxon%3A1121098","Phocaeicola massiliensis B84634 = Timone 84634 = DSM 17679 = JCM 13223"]]},{"id":"NCBITaxon:1121100","l":"","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A310300","Bacteroides pyogenes"],["NCBITaxon%3A1121100","Bacteroides pyogenes DSM 20611 = JCM 6294"]]},{"id":"NCBITaxon:1121102","l":"Campylobacter ureolyticus DSM 20703","na":1,"nb":2,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A827","Campylobacter ureolyticus"],["NCBITaxon%3A1121102","Campylobacter ureolyticus DSM 20703"]]},{"id":"NCBITaxon:1121103","l":"Balneatrix alpica DSM 16621","na":1,"nb":2,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"]],"b":[["NCBITaxon%3A75684","Balneatrix alpica"],["NCBITaxon%3A1121103","Balneatrix alpica DSM 16621"]]},{"id":"NCBITaxon:1121104","l":"Balneola vulgaris DSM 17893","na":1,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"]],"b":[["NCBITaxon%3A287535","Balneola vulgaris"],["NCBITaxon%3A1121104","Balneola vulgaris DSM 17893"]]},{"id":"NCBITaxon:1121107","l":"Bifidobacterium choerinum DSM 20434","na":1,"nb":2,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A35760","Bifidobacterium choerinum"],["NCBITaxon%3A1121107","Bifidobacterium choerinum DSM 20434"]]},{"id":"NCBITaxon:1121108","l":"Bifidobacterium magnum DSM 20222","na":1,"nb":2,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A1692","Bifidobacterium magnum"],["NCBITaxon%3A1121108","Bifidobacterium magnum DSM 20222"]]},{"id":"NCBITaxon:1121114","l":"Blautia producta ATCC 27340 = DSM 2950","na":1,"nb":2,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A33035","Blautia producta"],["NCBITaxon%3A1121114","Blautia producta ATCC 27340 = DSM 2950"]]},{"id":"NCBITaxon:1121115","l":"Blautia wexlerae DSM 19850","na":1,"nb":2,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A418240","Blautia wexlerae"],["NCBITaxon%3A1121115","Blautia wexlerae DSM 19850"]]},{"id":"NCBITaxon:1121116","l":"Allobrachymonas chironomi DSM 19884","na":1,"nb":2,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["NCBITaxon%3A491919","Allobrachymonas chironomi"],["NCBITaxon%3A1121116","Allobrachymonas chironomi DSM 19884"]]},{"id":"NCBITaxon:1121122","l":"Brevibacterium album DSM 18261","na":1,"nb":2,"a":[["undersea-feature-envo-00000104.html","undersea feature"]],"b":[["NCBITaxon%3A417948","Brevibacterium album"],["NCBITaxon%3A1121122","Brevibacterium album DSM 18261"]]},{"id":"NCBITaxon:1121123","l":"Brevundimonas aveniformis DSM 17977","na":1,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A370977","Brevundimonas aveniformis"],["NCBITaxon%3A1121123","Brevundimonas aveniformis DSM 17977"]]},{"id":"NCBITaxon:1121124","l":"Brevundimonas bacteroides DSM 4726","na":1,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"]],"b":[["NCBITaxon%3A74311","Brevundimonas bacteroides"],["NCBITaxon%3A1121124","Brevundimonas bacteroides DSM 4726"]]},{"id":"NCBITaxon:1121125","l":"Brevundimonas naejangsanensis DSM 23858","na":1,"nb":2,"a":[["mountain-envo-00000081.html","mountain"]],"b":[["NCBITaxon%3A588932","Brevundimonas naejangsanensis"],["NCBITaxon%3A1121125","Brevundimonas naejangsanensis DSM 23858"]]},{"id":"NCBITaxon:1121126","l":"Brochothrix thermosphacta DSM 20171 = FSL F6-1036","na":1,"nb":2,"a":[["food-product-foodon-00001002.html","food product"]],"b":[["NCBITaxon%3A2756","Brochothrix thermosphacta"],["NCBITaxon%3A1121126","Brochothrix thermosphacta DSM 20171 = FSL F6-1036"]]},{"id":"NCBITaxon:1121255","l":"Caenimonas koreensis DSM 17982","na":1,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A367474","Caenimonas koreensis"],["NCBITaxon%3A1121255","Caenimonas koreensis DSM 17982"]]},{"id":"NCBITaxon:1121259","l":"Caldicellulosiruptor acetigenus DSM 7040","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A301953","Caldicellulosiruptor acetigenus"],["NCBITaxon%3A1121259","Caldicellulosiruptor acetigenus DSM 7040"]]},{"id":"NCBITaxon:1121268","l":"Campylobacter curvus DSM 6644","na":1,"nb":2,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A200","Campylobacter curvus"],["NCBITaxon%3A1121268","Campylobacter curvus DSM 6644"]]},{"id":"NCBITaxon:1121271","l":"Gemmobacter nectariphilus DSM 15620","na":1,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A220343","Gemmobacter nectariphilus"],["NCBITaxon%3A1121271","Gemmobacter nectariphilus DSM 15620"]]},{"id":"NCBITaxon:1121278","l":"Chitinimonas koreensis DSM 17726","na":1,"nb":2,"a":[["undersea-feature-envo-00000104.html","undersea feature"]],"b":[["NCBITaxon%3A356302","Chitinimonas koreensis"],["NCBITaxon%3A1121278","Chitinimonas koreensis DSM 17726"]]},{"id":"NCBITaxon:1121279","l":"Chitinimonas taiwanensis DSM 18899","na":1,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"]],"b":[["NCBITaxon%3A240412","Chitinimonas taiwanensis"],["NCBITaxon%3A1121279","Chitinimonas taiwanensis DSM 18899"]]},{"id":"NCBITaxon:1121285","l":"","na":1,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A365343","Epilithonimonas caeni"],["NCBITaxon%3A1121285","Epilithonimonas caeni DSM 17710"]]},{"id":"NCBITaxon:1121286","l":"Chryseobacterium daeguense DSM 19388","na":1,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A412438","Chryseobacterium daeguense"],["NCBITaxon%3A1121286","Chryseobacterium daeguense DSM 19388"]]},{"id":"NCBITaxon:1121290","l":"Clostridium acetireducens DSM 10703","na":1,"nb":2,"a":[["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["NCBITaxon%3A76489","Clostridium acetireducens"],["NCBITaxon%3A1121290","Clostridium acetireducens DSM 10703"]]},{"id":"NCBITaxon:1121297","l":"Anaerocolumna aminovalerica DSM 1283","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A1527","Anaerocolumna aminovalerica"],["NCBITaxon%3A1121297","Anaerocolumna aminovalerica DSM 1283"]]},{"id":"NCBITaxon:1121298","l":"Clostridium amylolyticum","na":1,"nb":2,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1121298","Clostridium amylolyticum"],["NCBITaxon%3A1121299","Clostridium amylolyticum DSM 21864"]]},{"id":"NCBITaxon:1121306","l":"Clostridium collagenovorans DSM 3089","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A29357","Clostridium collagenovorans"],["NCBITaxon%3A1121306","Clostridium collagenovorans DSM 3089"]]},{"id":"NCBITaxon:1121308","l":"Clostridioides difficile ATCC 9689 = DSM 1296","na":1,"nb":2,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A1496","Clostridioides difficile"],["NCBITaxon%3A1121308","Clostridioides difficile ATCC 9689 = DSM 1296"]]},{"id":"NCBITaxon:1121322","l":"Anaerocolumna jejuensis DSM 15929","na":1,"nb":2,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A259063","Anaerocolumna jejuensis"],["NCBITaxon%3A1121322","Anaerocolumna jejuensis DSM 15929"]]},{"id":"NCBITaxon:1121326","l":"Clostridium magnum DSM 2767","na":1,"nb":2,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A33954","Clostridium magnum"],["NCBITaxon%3A1121326","Clostridium magnum DSM 2767"]]},{"id":"NCBITaxon:1121333","l":"Thomasclavelia saccharogumia DSM 17460","na":1,"nb":2,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A341225","Thomasclavelia saccharogumia"],["NCBITaxon%3A1121333","Thomasclavelia saccharogumia DSM 17460"]]},{"id":"NCBITaxon:1121343","l":"Clostridium uliginosum DSM 12992","na":1,"nb":2,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["NCBITaxon%3A119641","Clostridium uliginosum"],["NCBITaxon%3A1121343","Clostridium uliginosum DSM 12992"]]},{"id":"NCBITaxon:1121345","l":"Anaerocolumna xylanovorans DSM 12503","na":1,"nb":2,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A100134","Anaerocolumna xylanovorans"],["NCBITaxon%3A1121345","Anaerocolumna xylanovorans DSM 12503"]]},{"id":"NCBITaxon:1121348","l":"Comamonas badia DSM 17552","na":1,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A265291","Comamonas badia"],["NCBITaxon%3A1121348","Comamonas badia DSM 17552"]]},{"id":"NCBITaxon:1121351","l":"Conchiformibius kuhniae DSM 17694","na":1,"nb":2,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["NCBITaxon%3A211502","Conchiformibius kuhniae"],["NCBITaxon%3A1121351","Conchiformibius kuhniae DSM 17694"]]},{"id":"NCBITaxon:1121353","l":"Corynebacterium callunae DSM 20147","na":1,"nb":2,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1721","Corynebacterium callunae"],["NCBITaxon%3A1121353","Corynebacterium callunae DSM 20147"]]},{"id":"NCBITaxon:1121355","l":"Corynebacterium caspium DSM 44850","na":1,"nb":2,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"]],"b":[["NCBITaxon%3A234828","Corynebacterium caspium"],["NCBITaxon%3A1121355","Corynebacterium caspium DSM 44850"]]},{"id":"NCBITaxon:1121356","l":"Corynebacterium ciconiae DSM 44920","na":1,"nb":2,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A227319","Corynebacterium ciconiae"],["NCBITaxon%3A1121356","Corynebacterium ciconiae DSM 44920"]]},{"id":"NCBITaxon:1121362","l":"Corynebacterium halotolerans YIM 70093 = DSM 44683","na":1,"nb":2,"a":[["undersea-feature-envo-00000104.html","undersea feature"]],"b":[["NCBITaxon%3A225326","Corynebacterium halotolerans"],["NCBITaxon%3A1121362","Corynebacterium halotolerans YIM 70093 = DSM 44683"]]},{"id":"NCBITaxon:1121365","l":"Corynebacterium mastitidis DSM 44356","na":1,"nb":2,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["NCBITaxon%3A161890","Corynebacterium mastitidis"],["NCBITaxon%3A1121365","Corynebacterium mastitidis DSM 44356"]]},{"id":"NCBITaxon:1121367","l":"Corynebacterium propinquum DSM 44285","na":1,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A43769","Corynebacterium propinquum"],["NCBITaxon%3A1121367","Corynebacterium propinquum DSM 44285"]]},{"id":"NCBITaxon:1121370","l":"Corynebacterium ulceribovis DSM 45146","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A487732","Corynebacterium ulceribovis"],["NCBITaxon%3A1121370","Corynebacterium ulceribovis DSM 45146"]]},{"id":"NCBITaxon:1121372","l":"Gryllotalpicola ginsengisoli DSM 22003","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A444608","Gryllotalpicola ginsengisoli"],["NCBITaxon%3A1121372","Gryllotalpicola ginsengisoli DSM 22003"]]},{"id":"NCBITaxon:1121378","l":"Deinococcus aquatilis DSM 23025","na":1,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A519440","Deinococcus aquatilis"],["NCBITaxon%3A1121378","Deinococcus aquatilis DSM 23025"]]},{"id":"NCBITaxon:1121380","l":"Deinococcus frigens DSM 12807","na":1,"nb":2,"a":[["dry-valley-envo-00000128.html","dry valley"]],"b":[["NCBITaxon%3A249403","Deinococcus frigens"],["NCBITaxon%3A1121380","Deinococcus frigens DSM 12807"]]},{"id":"NCBITaxon:1121383","l":"Deinococcus murrayi DSM 11303","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A68910","Deinococcus murrayi"],["NCBITaxon%3A1121383","Deinococcus murrayi DSM 11303"]]},{"id":"NCBITaxon:1121384","l":"","na":1,"nb":2,"a":[["food-product-foodon-00001002.html","food product"]],"b":[["NCBITaxon%3A1299","Deinococcus radiodurans"],["NCBITaxon%3A243230","Deinococcus radiodurans R1 = ATCC 13939 = DSM 20539"]]},{"id":"NCBITaxon:1121387","l":"","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A1863","Dermatophilus congolensis"],["NCBITaxon%3A1121387","Dermatophilus congolensis DSM 44180 = NBRC 105199"]]},{"id":"NCBITaxon:1121389","l":"Desmospora activa DSM 45169","na":1,"nb":2,"a":[["tuberculosis-habitatmech-bacdive-e5d21f85b7.html","Tuberculosis"]],"b":[["NCBITaxon%3A500615","Desmospora activa"],["NCBITaxon%3A1121389","Desmospora activa DSM 45169"]]},{"id":"NCBITaxon:1121394","l":"Desulfatirhabdium butyrativorans DSM 18734","na":1,"nb":2,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A340467","Desulfatirhabdium butyrativorans"],["NCBITaxon%3A1121394","Desulfatirhabdium butyrativorans DSM 18734"]]},{"id":"NCBITaxon:1121410","l":"Desulfoluna butyratoxydans DSM 19427","na":1,"nb":2,"a":[["brackish-water-body-envo-01001321.html","brackish water body"]],"b":[["NCBITaxon%3A231438","Desulfoluna butyratoxydans"],["NCBITaxon%3A1121410","Desulfoluna butyratoxydans DSM 19427"]]},{"id":"NCBITaxon:1121411","l":"Desulfomicrobium escambiense DSM 10707","na":1,"nb":2,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A29503","Desulfomicrobium escambiense"],["NCBITaxon%3A1121411","Desulfomicrobium escambiense DSM 10707"]]},{"id":"NCBITaxon:1121412","l":"","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A380392","Thermodesulfomicrobium thermophilum"],["NCBITaxon%3A1121412","Thermodesulfomicrobium thermophilum DSM 16697"]]},{"id":"NCBITaxon:1121415","l":"Desulfonauticus autotrophicus DSM 4206","na":1,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A564288","Desulfonauticus autotrophicus"],["NCBITaxon%3A1121415","Desulfonauticus autotrophicus DSM 4206"]]},{"id":"NCBITaxon:1121418","l":"Desulforhopalus singaporensis DSM 12130","na":1,"nb":2,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A91360","Desulforhopalus singaporensis"],["NCBITaxon%3A1121418","Desulforhopalus singaporensis DSM 12130"]]},{"id":"NCBITaxon:1121419","l":"Desulfosporosinus hippei DSM 8344","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A569859","Desulfosporosinus hippei"],["NCBITaxon%3A1121419","Desulfosporosinus hippei DSM 8344"]]},{"id":"NCBITaxon:1121420","l":"Desulfosporosinus lacus DSM 15449","na":1,"nb":2,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A329936","Desulfosporosinus lacus"],["NCBITaxon%3A1121420","Desulfosporosinus lacus DSM 15449"]]},{"id":"NCBITaxon:1121422","l":"","na":1,"nb":2,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A265477","Desulfotruncus alcoholivorax"],["NCBITaxon%3A1121422","Desulfotruncus alcoholivorax DSM 16058"]]},{"id":"NCBITaxon:1121424","l":"Desulfotruncus arcticus DSM 17038","na":1,"nb":2,"a":[["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A341036","Desulfotruncus arcticus"],["NCBITaxon%3A1121424","Desulfotruncus arcticus DSM 17038"]]},{"id":"NCBITaxon:1121425","l":"Desulfofundulus australicus DSM 11792","na":1,"nb":2,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A1566","Desulfofundulus australicus"],["NCBITaxon%3A1121425","Desulfofundulus australicus DSM 11792"]]},{"id":"NCBITaxon:1121426","l":"Desulfoscipio geothermicus DSM 3669","na":1,"nb":2,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A39060","Desulfoscipio geothermicus"],["NCBITaxon%3A1121426","Desulfoscipio geothermicus DSM 3669"]]},{"id":"NCBITaxon:1121438","l":"","na":1,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A81406","Solidesulfovibrio alcoholivorans"],["NCBITaxon%3A1121438","Solidesulfovibrio alcoholivorans DSM 5433"]]},{"id":"NCBITaxon:1121440","l":"Desulfovibrio aminophilus DSM 12254","na":1,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A81425","Desulfovibrio aminophilus"],["NCBITaxon%3A1121440","Desulfovibrio aminophilus DSM 12254"]]},{"id":"NCBITaxon:1121443","l":"Desulfovibrio cuneatus DSM 11391","na":1,"nb":2,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A159728","Desulfovibrio cuneatus"],["NCBITaxon%3A1121443","Desulfovibrio cuneatus DSM 11391"]]},{"id":"NCBITaxon:1121452","l":"","na":1,"nb":2,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A575978","Humidesulfovibrio idahonensis"],["NCBITaxon%3A1121452","Humidesulfovibrio idahonensis DSM 15450"]]},{"id":"NCBITaxon:1121455","l":"Desulfovibrio litoralis DSM 11393","na":1,"nb":2,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A466107","Desulfovibrio litoralis"],["NCBITaxon%3A1121455","Desulfovibrio litoralis DSM 11393"]]},{"id":"NCBITaxon:1121459","l":"Desulfovibrio oxyclinae DSM 11498","na":1,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A63560","Desulfovibrio oxyclinae"],["NCBITaxon%3A1121459","Desulfovibrio oxyclinae DSM 11498"]]},{"id":"NCBITaxon:1121467","l":"Maridesulfovibrio zosterae DSM 11974","na":1,"nb":2,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A82171","Maridesulfovibrio zosterae"],["NCBITaxon%3A1121467","Maridesulfovibrio zosterae DSM 11974"]]},{"id":"NCBITaxon:1121478","l":"Diaphorobacter oryzae DSM 22780","na":1,"nb":2,"a":[["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["NCBITaxon%3A491745","Diaphorobacter oryzae"],["NCBITaxon%3A1121478","Diaphorobacter oryzae DSM 22780"]]},{"id":"NCBITaxon:1121482","l":"Dyadobacter beijingensis DSM 21582","na":1,"nb":2,"a":[["park-envo-00000562.html","park"]],"b":[["NCBITaxon%3A365489","Dyadobacter beijingensis"],["NCBITaxon%3A1121482","Dyadobacter beijingensis DSM 21582"]]},{"id":"NCBITaxon:1121483","l":"Dyadobacter crusticola DSM 16708","na":1,"nb":2,"a":[["plateau-envo-00000182.html","plateau"]],"b":[["NCBITaxon%3A292407","Dyadobacter crusticola"],["NCBITaxon%3A1121483","Dyadobacter crusticola DSM 16708"]]},{"id":"NCBITaxon:1121485","l":"","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A45254","Indolivaga capnocytophagoides"],["NCBITaxon%3A1121485","Indolivaga capnocytophagoides DSM 22835"]]},{"id":"NCBITaxon:1121830","l":"Fodinicurvata fenggangensis","na":1,"nb":2,"a":[["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A1121830","Fodinicurvata fenggangensis"],["NCBITaxon%3A570967","Fodinicurvata fenggangensis DSM 21160"]]},{"id":"NCBITaxon:1121861","l":"Elioraea tepidiphila DSM 17972","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A457934","Elioraea tepidiphila"],["NCBITaxon%3A1121861","Elioraea tepidiphila DSM 17972"]]},{"id":"NCBITaxon:1121862","l":"Endozoicomonas elysicola DSM 22380","na":1,"nb":2,"a":[["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A305900","Endozoicomonas elysicola"],["NCBITaxon%3A1121862","Endozoicomonas elysicola DSM 22380"]]},{"id":"NCBITaxon:1121867","l":"Enterovibrio calviensis DSM 14347","na":1,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A91359","Enterovibrio calviensis"],["NCBITaxon%3A1121867","Enterovibrio calviensis DSM 14347"]]},{"id":"NCBITaxon:1121868","l":"Enterovibrio nigricans DSM 22720","na":1,"nb":2,"a":[["mediterranean-envo-01000207.html","mediterranean"]],"b":[["NCBITaxon%3A504469","Enterovibrio nigricans"],["NCBITaxon%3A1121868","Enterovibrio nigricans DSM 22720"]]},{"id":"NCBITaxon:1121873","l":"Erysipelothrix inopinata DSM 15511","na":1,"nb":2,"a":[["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["NCBITaxon%3A225084","Erysipelothrix inopinata"],["NCBITaxon%3A1121873","Erysipelothrix inopinata DSM 15511"]]},{"id":"NCBITaxon:1121879","l":"Ferrimonas kyonanensis DSM 18153","na":1,"nb":2,"a":[["beach-envo-00000091.html","beach"]],"b":[["NCBITaxon%3A364763","Ferrimonas kyonanensis"],["NCBITaxon%3A1121879","Ferrimonas kyonanensis DSM 18153"]]},{"id":"NCBITaxon:1121883","l":"Fervidobacterium gondwanense DSM 13020","na":1,"nb":2,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A44754","Fervidobacterium gondwanense"],["NCBITaxon%3A1121883","Fervidobacterium gondwanense DSM 13020"]]},{"id":"NCBITaxon:1121889","l":"Flavobacterium filum DSM 17961","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A370974","Flavobacterium filum"],["NCBITaxon%3A1121889","Flavobacterium filum DSM 17961"]]},{"id":"NCBITaxon:1121895","l":"","na":1,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"]],"b":[["NCBITaxon%3A498301","Flavobacterium rivuli"],["NCBITaxon%3A1121895","Flavobacterium rivuli WB 3.3-2 = DSM 21788"]]},{"id":"NCBITaxon:1121896","l":"Flavobacterium sasangense DSM 21067","na":1,"nb":2,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A503361","Flavobacterium sasangense"],["NCBITaxon%3A1121896","Flavobacterium sasangense DSM 21067"]]},{"id":"NCBITaxon:1121898","l":"Flavobacterium subsaxonicum WB 4.1-42 = DSM 21790","na":1,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"]],"b":[["NCBITaxon%3A426226","Flavobacterium subsaxonicum"],["NCBITaxon%3A1121898","Flavobacterium subsaxonicum WB 4.1-42 = DSM 21790"]]},{"id":"NCBITaxon:1121902","l":"Eisenibacter elegans DSM 3317","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A997","Eisenibacter elegans"],["NCBITaxon%3A1121902","Eisenibacter elegans DSM 3317"]]},{"id":"NCBITaxon:1121903","l":"Hugenholtzia roseola DSM 9546","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A1002","Hugenholtzia roseola"],["NCBITaxon%3A1121903","Hugenholtzia roseola DSM 9546"]]},{"id":"NCBITaxon:1121904","l":"Flexithrix dorotheae DSM 6795","na":1,"nb":2,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A70993","Flexithrix dorotheae"],["NCBITaxon%3A1121904","Flexithrix dorotheae DSM 6795"]]},{"id":"NCBITaxon:1121906","l":"Fructobacillus durionis DSM 19113","na":1,"nb":2,"a":[["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A283737","Fructobacillus durionis"],["NCBITaxon%3A1121906","Fructobacillus durionis DSM 19113"]]},{"id":"NCBITaxon:1121914","l":"Gemella cuniculi DSM 15828","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A150240","Gemella cuniculi"],["NCBITaxon%3A1121914","Gemella cuniculi DSM 15828"]]},{"id":"NCBITaxon:1121926","l":"Glycomyces arizonensis DSM 44726","na":1,"nb":2,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A256035","Glycomyces arizonensis"],["NCBITaxon%3A1121926","Glycomyces arizonensis DSM 44726"]]},{"id":"NCBITaxon:1121928","l":"Gordonia shandongensis DSM 45094","na":1,"nb":2,"a":[["undersea-feature-envo-00000104.html","undersea feature"]],"b":[["NCBITaxon%3A376351","Gordonia shandongensis"],["NCBITaxon%3A1121928","Gordonia shandongensis DSM 45094"]]},{"id":"NCBITaxon:1121931","l":"Christiangramia echinicola DSM 19838","na":1,"nb":2,"a":[["inlet-envo-00000475.html","inlet"]],"b":[["NCBITaxon%3A279359","Christiangramia echinicola"],["NCBITaxon%3A1121931","Christiangramia echinicola DSM 19838"]]},{"id":"NCBITaxon:1121933","l":"Granulicoccus phenolivorans DSM 17626 = NBRC 107789 = JCM 15570","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A266854","Granulicoccus phenolivorans"],["NCBITaxon%3A1121933","Granulicoccus phenolivorans DSM 17626 = NBRC 107789 = JCM 15570"]]},{"id":"NCBITaxon:1121936","l":"Halalkalibacillus halophilus DSM 18494","na":1,"nb":2,"a":[["city-envo-00000856.html","city"]],"b":[["NCBITaxon%3A392827","Halalkalibacillus halophilus"],["NCBITaxon%3A1121936","Halalkalibacillus halophilus DSM 18494"]]},{"id":"NCBITaxon:1121940","l":"Halomonas halocynthiae DSM 14573","na":1,"nb":2,"a":[["inlet-envo-00000475.html","inlet"]],"b":[["NCBITaxon%3A176290","Halomonas halocynthiae"],["NCBITaxon%3A1121940","Halomonas halocynthiae DSM 14573"]]},{"id":"NCBITaxon:1121941","l":"Halomonas halodenitrificans DSM 735","na":1,"nb":2,"a":[["food-product-foodon-00001002.html","food product"]],"b":[["NCBITaxon%3A28252","Halomonas halodenitrificans"],["NCBITaxon%3A1121941","Halomonas halodenitrificans DSM 735"]]},{"id":"NCBITaxon:1121943","l":"Modicisalibacter luteus DSM 23508","na":1,"nb":2,"a":[["undersea-feature-envo-00000104.html","undersea feature"]],"b":[["NCBITaxon%3A453962","Modicisalibacter luteus"],["NCBITaxon%3A1121943","Modicisalibacter luteus DSM 23508"]]},{"id":"NCBITaxon:1121945","l":"Halorubrum ezzemoulense DSM 17463","na":1,"nb":2,"a":[["sabkha-envo-00000151.html","sabkha"]],"b":[["NCBITaxon%3A337243","Halorubrum ezzemoulense"],["NCBITaxon%3A1121945","Halorubrum ezzemoulense DSM 17463"]]},{"id":"NCBITaxon:1121946","l":"Hamadaea tsunoensis DSM 44101","na":1,"nb":2,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A53368","Hamadaea tsunoensis"],["NCBITaxon%3A1121946","Hamadaea tsunoensis DSM 44101"]]},{"id":"NCBITaxon:1121949","l":"Henriciella marina DSM 19595","na":1,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A453851","Henriciella marina"],["NCBITaxon%3A1121949","Henriciella marina DSM 19595"]]},{"id":"NCBITaxon:1121953","l":"Hymenobacter aerophilus DSM 13606","na":1,"nb":2,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A119644","Hymenobacter aerophilus"],["NCBITaxon%3A1121953","Hymenobacter aerophilus DSM 13606"]]},{"id":"NCBITaxon:1121955","l":"Hymenobacter daecheongensis DSM 21074","na":1,"nb":2,"a":[["dam-envo-00000074.html","dam"]],"b":[["NCBITaxon%3A496053","Hymenobacter daecheongensis"],["NCBITaxon%3A1121955","Hymenobacter daecheongensis DSM 21074"]]},{"id":"NCBITaxon:1121957","l":"Hymenobacter norwichensis DSM 15439","na":1,"nb":2,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A223903","Hymenobacter norwichensis"],["NCBITaxon%3A1121957","Hymenobacter norwichensis DSM 15439"]]},{"id":"NCBITaxon:1122132","l":"Kaistia granuli DSM 23481","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A363259","Kaistia granuli"],["NCBITaxon%3A1122132","Kaistia granuli DSM 23481"]]},{"id":"NCBITaxon:1122138","l":"Kribbella catacumbae DSM 19601","na":1,"nb":2,"a":[["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A460086","Kribbella catacumbae"],["NCBITaxon%3A1122138","Kribbella catacumbae DSM 19601"]]},{"id":"NCBITaxon:1122152","l":"Lactobacillus psittaci DSM 15354","na":1,"nb":2,"a":[["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A116089","Lactobacillus psittaci"],["NCBITaxon%3A1122152","Lactobacillus psittaci DSM 15354"]]},{"id":"NCBITaxon:1122153","l":"Ligilactobacillus saerimneri DSM 16049","na":1,"nb":2,"a":[["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A228229","Ligilactobacillus saerimneri"],["NCBITaxon%3A1122153","Ligilactobacillus saerimneri DSM 16049"]]},{"id":"NCBITaxon:1122154","l":"Pseudolactococcus chungangensis CAU 28 = DSM 22330","na":1,"nb":2,"a":[["foam-habitatmech-bacdive-df2f59b773.html","Foam"]],"b":[["NCBITaxon%3A451457","Pseudolactococcus chungangensis"],["NCBITaxon%3A1122154","Pseudolactococcus chungangensis CAU 28 = DSM 22330"]]},{"id":"NCBITaxon:1122155","l":"Lactonifactor longoviformis DSM 17459","na":1,"nb":2,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A341220","Lactonifactor longoviformis"],["NCBITaxon%3A1122155","Lactonifactor longoviformis DSM 17459"]]},{"id":"NCBITaxon:1122156","l":"Lampropedia hyalina DSM 16112","na":1,"nb":2,"a":[["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A198706","Lampropedia hyalina"],["NCBITaxon%3A1122156","Lampropedia hyalina DSM 16112"]]},{"id":"NCBITaxon:1122159","l":"Leeuwenhoekiella marinoflava DSM 3653","na":1,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A988","Leeuwenhoekiella marinoflava"],["NCBITaxon%3A1122159","Leeuwenhoekiella marinoflava DSM 3653"]]},{"id":"NCBITaxon:1122162","l":"Legionella israelensis DSM 19235","na":1,"nb":2,"a":[["pond-envo-00000033.html","pond"]],"b":[["NCBITaxon%3A454","Legionella israelensis"],["NCBITaxon%3A1122162","Legionella israelensis DSM 19235"]]},{"id":"NCBITaxon:1122164","l":"Legionella lansingensis DSM 19556 = ATCC 49751","na":1,"nb":2,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["NCBITaxon%3A45067","Legionella lansingensis"],["NCBITaxon%3A1122164","Legionella lansingensis DSM 19556 = ATCC 49751"]]},{"id":"NCBITaxon:1122165","l":"Legionella moravica DSM 19234","na":1,"nb":2,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A39962","Legionella moravica"],["NCBITaxon%3A1122165","Legionella moravica DSM 19234"]]},{"id":"NCBITaxon:1122167","l":"Legionella quinlivanii DSM 21216","na":1,"nb":2,"a":[["air-conditioning-unit-envo-00002874.html","air conditioning unit"]],"b":[["NCBITaxon%3A45073","Legionella quinlivanii"],["NCBITaxon%3A1122167","Legionella quinlivanii DSM 21216"]]},{"id":"NCBITaxon:1122169","l":"Legionella shakespearei DSM 23087","na":1,"nb":2,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A45075","Legionella shakespearei"],["NCBITaxon%3A1122169","Legionella shakespearei DSM 23087"]]},{"id":"NCBITaxon:1122171","l":"Leptotrichia hofstadii DSM 21651","na":1,"nb":2,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A157688","Leptotrichia hofstadii"],["NCBITaxon%3A1122171","Leptotrichia hofstadii DSM 21651"]]},{"id":"NCBITaxon:1122173","l":"Leptotrichia trevisanii DSM 22070","na":1,"nb":2,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A109328","Leptotrichia trevisanii"],["NCBITaxon%3A1122173","Leptotrichia trevisanii DSM 22070"]]},{"id":"NCBITaxon:1122174","l":"Leptotrichia wadei DSM 19758","na":1,"nb":2,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A157687","Leptotrichia wadei"],["NCBITaxon%3A1122174","Leptotrichia wadei DSM 19758"]]},{"id":"NCBITaxon:1122175","l":"Leucobacter chironomi DSM 19883","na":1,"nb":2,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["NCBITaxon%3A491918","Leucobacter chironomi"],["NCBITaxon%3A1122175","Leucobacter chironomi DSM 19883"]]},{"id":"NCBITaxon:1122183","l":"Luteimonas mephitis DSM 12574","na":1,"nb":2,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"]],"b":[["NCBITaxon%3A83615","Luteimonas mephitis"],["NCBITaxon%3A1122183","Luteimonas mephitis DSM 12574"]]},{"id":"NCBITaxon:1122187","l":"Lysobacter oryzae DSM 21044","na":1,"nb":2,"a":[["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A498057","Lysobacter oryzae"],["NCBITaxon%3A1122187","Lysobacter oryzae DSM 21044"]]},{"id":"NCBITaxon:1122188","l":"Lysobacter spongiicola DSM 21749","na":1,"nb":2,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1122188","Lysobacter spongiicola DSM 21749"],["NCBITaxon%3A435289","Novilysobacter spongiicola"]]},{"id":"NCBITaxon:1122189","l":"Malonomonas rubra DSM 5091","na":1,"nb":2,"a":[["canal-envo-00000014.html","canal"]],"b":[["NCBITaxon%3A57040","Malonomonas rubra"],["NCBITaxon%3A1122189","Malonomonas rubra DSM 5091"]]},{"id":"NCBITaxon:1122200","l":"Marinobacterium jannaschii DSM 6295","na":1,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A64970","Marinobacterium jannaschii"],["NCBITaxon%3A1122200","Marinobacterium jannaschii DSM 6295"]]},{"id":"NCBITaxon:1122202","l":"Marinobacterium rhizophilum DSM 18822","na":1,"nb":2,"a":[["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A420402","Marinobacterium rhizophilum"],["NCBITaxon%3A1122202","Marinobacterium rhizophilum DSM 18822"]]},{"id":"NCBITaxon:1122213","l":"Maritalea myrionectae DSM 19524","na":1,"nb":2,"a":[["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["NCBITaxon%3A454601","Maritalea myrionectae"],["NCBITaxon%3A1122213","Maritalea myrionectae DSM 19524"]]},{"id":"NCBITaxon:1122214","l":"Martelella mediterranea DSM 17316","na":1,"nb":2,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A293089","Martelella mediterranea"],["NCBITaxon%3A1122214","Martelella mediterranea DSM 17316"]]},{"id":"NCBITaxon:1122215","l":"Massilia niastensis DSM 21313","na":1,"nb":2,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A544911","Massilia niastensis"],["NCBITaxon%3A1122215","Massilia niastensis DSM 21313"]]},{"id":"NCBITaxon:1122219","l":"Megasphaera cerevisiae DSM 20462","na":1,"nb":2,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A39029","Megasphaera cerevisiae"],["NCBITaxon%3A1122219","Megasphaera cerevisiae DSM 20462"]]},{"id":"NCBITaxon:1122221","l":"Meiothermus cerbereus DSM 11376","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A65552","Meiothermus cerbereus"],["NCBITaxon%3A1122221","Meiothermus cerbereus DSM 11376"]]},{"id":"NCBITaxon:1122222","l":"Meiothermus taiwanensis DSM 14542","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A172827","Meiothermus taiwanensis"],["NCBITaxon%3A1122222","Meiothermus taiwanensis DSM 14542"]]},{"id":"NCBITaxon:1122224","l":"","na":1,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A1122224","Neomelitea salexigens DSM 19753"],["NCBITaxon%3A354246","Spongiibacter marinus"]]},{"id":"NCBITaxon:1122236","l":"","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A17","Methylophilus methylotrophus"],["NCBITaxon%3A1122236","Methylophilus methylotrophus DSM 46235 = ATCC 53528"]]},{"id":"NCBITaxon:1122237","l":"Microbacterium gubbeenense DSM 15944","na":1,"nb":2,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["NCBITaxon%3A159896","Microbacterium gubbeenense"],["NCBITaxon%3A1122237","Microbacterium gubbeenense DSM 15944"]]},{"id":"NCBITaxon:1122241","l":"Moorella mulderi DSM 14980","na":1,"nb":2,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A1122241","Moorella mulderi DSM 14980"],["NCBITaxon%3A202604","Neomoorella mulderi"]]},{"id":"NCBITaxon:1122243","l":"Moraxella boevrei DSM 14165","na":1,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A346665","Faucicola boevrei"],["NCBITaxon%3A1122243","Moraxella boevrei DSM 14165"]]},{"id":"NCBITaxon:1122244","l":"Moraxella caprae DSM 19149","na":1,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A90240","Moraxella caprae"],["NCBITaxon%3A1122244","Moraxella caprae DSM 19149"]]},{"id":"NCBITaxon:1122247","l":"Mycolicibacterium hassiacum DSM 44199","na":1,"nb":2,"a":[["urethra-bto-0001426.html","urethra"]],"b":[["NCBITaxon%3A46351","Mycolicibacterium hassiacum"],["NCBITaxon%3A1122247","Mycolicibacterium hassiacum DSM 44199"]]},{"id":"NCBITaxon:1122252","l":"Marinospirillum celere","na":1,"nb":2,"a":[["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A1122252","Marinospirillum celere"],["NCBITaxon%3A497722","Marinospirillum celere DSM 18438"]]},{"id":"NCBITaxon:1122604","l":"Nevskia soli DSM 19509","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A418856","Nevskia soli"],["NCBITaxon%3A1122604","Nevskia soli DSM 19509"]]},{"id":"NCBITaxon:1122609","l":"Nocardioides halotolerans DSM 19273","na":1,"nb":2,"a":[["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A433660","Nocardioides halotolerans"],["NCBITaxon%3A1122609","Nocardioides halotolerans DSM 19273"]]},{"id":"NCBITaxon:1122611","l":"Nonomuraea coxensis DSM 45129","na":1,"nb":2,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A404386","Nonomuraea coxensis"],["NCBITaxon%3A1122611","Nonomuraea coxensis DSM 45129"]]},{"id":"NCBITaxon:1122615","l":"Oceanobacter kriegii DSM 6294","na":1,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A64972","Oceanobacter kriegii"],["NCBITaxon%3A1122615","Oceanobacter kriegii DSM 6294"]]},{"id":"NCBITaxon:1122618","l":"","na":1,"nb":2,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A1247","Oenococcus oeni"],["NCBITaxon%3A1122618","Oenococcus oeni DSM 20252 = AWRIB129"]]},{"id":"NCBITaxon:1122619","l":"Oligella ureolytica DSM 18253","na":1,"nb":2,"a":[["urethra-bto-0001426.html","urethra"]],"b":[["NCBITaxon%3A90244","Oligella ureolytica"],["NCBITaxon%3A1122619","Oligella ureolytica DSM 18253"]]},{"id":"NCBITaxon:1122919","l":"Paenibacillus ginsengihumi DSM 21568","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A431596","Paenibacillus ginsengihumi"],["NCBITaxon%3A1122919","Paenibacillus ginsengihumi DSM 21568"]]},{"id":"NCBITaxon:1122925","l":"Paenibacillus sanguinis 2301083 = DSM 16941","na":1,"nb":2,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A225906","Paenibacillus sanguinis"],["NCBITaxon%3A1122925","Paenibacillus sanguinis 2301083 = DSM 16941"]]},{"id":"NCBITaxon:1122930","l":"Papillibacter cinnamivorans DSM 12816","na":1,"nb":2,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A100176","Papillibacter cinnamivorans"],["NCBITaxon%3A1122930","Papillibacter cinnamivorans DSM 12816"]]},{"id":"NCBITaxon:1122938","l":"Pasteurella testudinis DSM 23072","na":1,"nb":2,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A761","Pasteurella testudinis"],["NCBITaxon%3A1122938","Pasteurella testudinis DSM 23072"]]},{"id":"NCBITaxon:1122939","l":"Patulibacter americanus DSM 16676","na":1,"nb":2,"a":[["plateau-envo-00000182.html","plateau"]],"b":[["NCBITaxon%3A588672","Patulibacter americanus"],["NCBITaxon%3A1122939","Patulibacter americanus DSM 16676"]]},{"id":"NCBITaxon:1122947","l":"Pelosinus fermentans DSM 17108","na":1,"nb":2,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A365349","Pelosinus fermentans"],["NCBITaxon%3A1122947","Pelosinus fermentans DSM 17108"]]},{"id":"NCBITaxon:1122951","l":"Perlucidibaca piscinae DSM 21586","na":1,"nb":2,"a":[["pond-envo-00000033.html","pond"]],"b":[["NCBITaxon%3A392589","Perlucidibaca piscinae"],["NCBITaxon%3A1122951","Perlucidibaca piscinae DSM 21586"]]},{"id":"NCBITaxon:1122953","l":"Petrotoga halophila DSM 16923","na":1,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A301141","Petrotoga halophila"],["NCBITaxon%3A1122953","Petrotoga halophila DSM 16923"]]},{"id":"NCBITaxon:1122955","l":"Petrotoga olearia DSM 13574","na":1,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A156203","Petrotoga olearia"],["NCBITaxon%3A1122955","Petrotoga olearia DSM 13574"]]},{"id":"NCBITaxon:1122956","l":"Petrotoga sibirica DSM 13575","na":1,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A156202","Petrotoga sibirica"],["NCBITaxon%3A1122956","Petrotoga sibirica DSM 13575"]]},{"id":"NCBITaxon:1122963","l":"Pleomorphomonas oryzae DSM 16300","na":1,"nb":2,"a":[["rice-field-envo-00000296.html","rice field"]],"b":[["NCBITaxon%3A261934","Pleomorphomonas oryzae"],["NCBITaxon%3A1122963","Pleomorphomonas oryzae DSM 16300"]]},{"id":"NCBITaxon:1122970","l":"","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A196588","Erythrobacter cryptus"],["NCBITaxon%3A1122970","Erythrobacter cryptus DSM 12079"]]},{"id":"NCBITaxon:1122980","l":"","na":1,"nb":2,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A305719","Segatella baroniae"],["NCBITaxon%3A1122980","Segatella baroniae DSM 16972 = JCM 13447"]]},{"id":"NCBITaxon:1122982","l":"Prevotella denticola DSM 20614 = JCM 13449","na":1,"nb":2,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["NCBITaxon%3A28129","Prevotella denticola"],["NCBITaxon%3A1122982","Prevotella denticola DSM 20614 = JCM 13449"]]},{"id":"NCBITaxon:1122983","l":"Prevotella falsenii DSM 22864 = JCM 15124","na":1,"nb":2,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["NCBITaxon%3A515414","Prevotella falsenii"],["NCBITaxon%3A1122983","Prevotella falsenii DSM 22864 = JCM 15124"]]},{"id":"NCBITaxon:1122988","l":"Hoylesella nanceiensis DSM 19126 = JCM 15639","na":1,"nb":2,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A425941","Hoylesella nanceiensis"],["NCBITaxon%3A1122988","Hoylesella nanceiensis DSM 19126 = JCM 15639"]]},{"id":"NCBITaxon:1122997","l":"Acidipropionibacterium jensenii DSM 20535","na":1,"nb":2,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["NCBITaxon%3A1749","Acidipropionibacterium jensenii"],["NCBITaxon%3A1122997","Acidipropionibacterium jensenii DSM 20535"]]},{"id":"NCBITaxon:1122998","l":"Acidipropionibacterium thoenii DSM 20276","na":1,"nb":2,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["NCBITaxon%3A1751","Acidipropionibacterium thoenii"],["NCBITaxon%3A1122998","Acidipropionibacterium thoenii DSM 20276"]]},{"id":"NCBITaxon:1122999","l":"Propionicicella superfundia DSM 22317","na":1,"nb":2,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A348582","Propionicicella superfundia"],["NCBITaxon%3A1122999","Propionicicella superfundia DSM 22317"]]},{"id":"NCBITaxon:1123004","l":"Propionispora vibrioides DSM 13305","na":1,"nb":2,"a":[["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A112903","Propionispora vibrioides"],["NCBITaxon%3A1123004","Propionispora vibrioides DSM 13305"]]},{"id":"NCBITaxon:1123006","l":"Propionivibrio pelophilus DSM 12018","na":1,"nb":2,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["NCBITaxon%3A65401","Propionivibrio pelophilus"],["NCBITaxon%3A1123006","Propionivibrio pelophilus DSM 12018"]]},{"id":"NCBITaxon:1123008","l":"Proteiniphilum acetatigenes DSM 18083","na":1,"nb":2,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A294710","Proteiniphilum acetatigenes"],["NCBITaxon%3A1123008","Proteiniphilum acetatigenes DSM 18083"]]},{"id":"NCBITaxon:1123013","l":"Pseudoclavibacter soli DSM 23366","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A452623","Pseudoclavibacter soli"],["NCBITaxon%3A1123013","Pseudoclavibacter soli DSM 23366"]]},{"id":"NCBITaxon:1123016","l":"Stutzerimonas balearica DSM 6083","na":1,"nb":2,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A74829","Stutzerimonas balearica"],["NCBITaxon%3A1123016","Stutzerimonas balearica DSM 6083"]]},{"id":"NCBITaxon:1123021","l":"Pseudomonas thermotolerans DSM 14292","na":1,"nb":2,"a":[["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A1123021","Pseudomonas thermotolerans DSM 14292"],["NCBITaxon%3A157784","Zestomonas thermotolerans"]]},{"id":"NCBITaxon:1123022","l":"Halopseudomonas xiamenensis DSM 22326","na":1,"nb":2,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A157792","Halopseudomonas xiamenensis"],["NCBITaxon%3A1123022","Halopseudomonas xiamenensis DSM 22326"]]},{"id":"NCBITaxon:1123027","l":"Pseudorhodobacter ferrugineus DSM 5888","na":1,"nb":2,"a":[["brackish-water-body-envo-01001321.html","brackish water body"]],"b":[["NCBITaxon%3A77008","Pseudorhodobacter ferrugineus"],["NCBITaxon%3A1123027","Pseudorhodobacter ferrugineus DSM 5888"]]},{"id":"NCBITaxon:1123030","l":"Pseudoxanthomonas kalamensis DSM 18571","na":1,"nb":2,"a":[["atoll-envo-00000166.html","atoll"]],"b":[["NCBITaxon%3A289483","Pseudoxanthomonas kalamensis"],["NCBITaxon%3A1123030","Pseudoxanthomonas kalamensis DSM 18571"]]},{"id":"NCBITaxon:1123031","l":"Pseudoxanthomonas taiwanensis DSM 22914","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A176598","Pseudoxanthomonas taiwanensis"],["NCBITaxon%3A1123031","Pseudoxanthomonas taiwanensis DSM 22914"]]},{"id":"NCBITaxon:1123034","l":"Psychrobacter phenylpyruvicus DSM 7000 = NBRC 102152","na":1,"nb":2,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A29432","Psychrobacter phenylpyruvicus"],["NCBITaxon%3A1123034","Psychrobacter phenylpyruvicus DSM 7000 = NBRC 102152"]]},{"id":"NCBITaxon:1123035","l":"Psychroflexus tropicus DSM 15496","na":1,"nb":2,"a":[["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A197345","Psychroflexus tropicus"],["NCBITaxon%3A1123035","Psychroflexus tropicus DSM 15496"]]},{"id":"NCBITaxon:1123052","l":"Rathayibacter toxicus DSM 7488","na":1,"nb":2,"a":[["bridge-envo-00000075.html","bridge"]],"b":[["NCBITaxon%3A145458","Rathayibacter toxicus"],["NCBITaxon%3A1123052","Rathayibacter toxicus DSM 7488"]]},{"id":"NCBITaxon:1123059","l":"Robiginitomaculum antarcticum DSM 21748","na":1,"nb":2,"a":[["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"]],"b":[["NCBITaxon%3A437507","Robiginitomaculum antarcticum"],["NCBITaxon%3A1123059","Robiginitomaculum antarcticum DSM 21748"]]},{"id":"NCBITaxon:1123060","l":"Roseomonas aerilata DSM 19363","na":1,"nb":2,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A452982","Muricoccus aerilatus"],["NCBITaxon%3A1123060","Roseomonas aerilata DSM 19363"]]},{"id":"NCBITaxon:1123061","l":"Neoroseomonas lacus DSM 19439","na":1,"nb":2,"a":[["undersea-feature-envo-00000104.html","undersea feature"]],"b":[["NCBITaxon%3A287609","Neoroseomonas lacus"],["NCBITaxon%3A1123061","Neoroseomonas lacus DSM 19439"]]},{"id":"NCBITaxon:1123064","l":"Roseomonas vinacea DSM 19362","na":1,"nb":2,"a":[["plateau-envo-00000182.html","plateau"]],"b":[["NCBITaxon%3A424704","Muricoccus vinaceus"],["NCBITaxon%3A1123064","Roseomonas vinacea DSM 19362"]]},{"id":"NCBITaxon:1123070","l":"Rubritalea marina DSM 17716","na":1,"nb":2,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A361055","Rubritalea marina"],["NCBITaxon%3A1123070","Rubritalea marina DSM 17716"]]},{"id":"NCBITaxon:1123072","l":"Rubritepida flocculans DSM 14296","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A182403","Rubritepida flocculans"],["NCBITaxon%3A1123072","Rubritepida flocculans DSM 14296"]]},{"id":"NCBITaxon:1123078","l":"Runella zeae DSM 19591","na":1,"nb":2,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A94255","Runella zeae"],["NCBITaxon%3A1123078","Runella zeae DSM 19591"]]},{"id":"NCBITaxon:1123225","l":"Spongiispira norvegica","na":1,"nb":2,"a":[["hemolymph-bto-0000572.html","hemolymph"]],"b":[["NCBITaxon%3A1123225","Spongiispira norvegica"],["NCBITaxon%3A354245","Spongiispira norvegica DSM 17749"]]},{"id":"NCBITaxon:1123229","l":"Salinarimonas rosea DSM 21201","na":1,"nb":2,"a":[["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A552063","Salinarimonas rosea"],["NCBITaxon%3A1123229","Salinarimonas rosea DSM 21201"]]},{"id":"NCBITaxon:1123230","l":"Salinicoccus albus DSM 19776","na":1,"nb":2,"a":[["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A418756","Salinicoccus albus"],["NCBITaxon%3A1123230","Salinicoccus albus DSM 19776"]]},{"id":"NCBITaxon:1123232","l":"Lacicoccus kunmingensis DSM 17847","na":1,"nb":2,"a":[["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A399363","Lacicoccus kunmingensis"],["NCBITaxon%3A1123232","Lacicoccus kunmingensis DSM 17847"]]},{"id":"NCBITaxon:1123238","l":"Atlantibacter subterranea DSM 16208","na":1,"nb":2,"a":[["ridge-envo-00000283.html","ridge"]],"b":[["NCBITaxon%3A1123238","Atlantibacter subterranea DSM 16208"],["NCBITaxon%3A255519","Atlantibacter subterraneus"]]},{"id":"NCBITaxon:1123241","l":"Nakamurella lactea DSM 19367","na":1,"nb":2,"a":[["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A459515","Nakamurella lactea"],["NCBITaxon%3A1123241","Nakamurella lactea DSM 19367"]]},{"id":"NCBITaxon:1123242","l":"Schlesneria paludicola DSM 18645","na":1,"nb":2,"a":[["marsh-envo-00000035.html","marsh"]],"b":[["NCBITaxon%3A360056","Schlesneria paludicola"],["NCBITaxon%3A1123242","Schlesneria paludicola DSM 18645"]]},{"id":"NCBITaxon:1123247","l":"Sediminimonas qiaohouensis DSM 21189","na":1,"nb":2,"a":[["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A552061","Sediminimonas qiaohouensis"],["NCBITaxon%3A1123247","Sediminimonas qiaohouensis DSM 21189"]]},{"id":"NCBITaxon:1123248","l":"Segetibacter koreensis DSM 18137","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A398037","Segetibacter koreensis"],["NCBITaxon%3A1123248","Segetibacter koreensis DSM 18137"]]},{"id":"NCBITaxon:1123252","l":"Shimazuella kribbensis DSM 45090","na":1,"nb":2,"a":[["mountain-envo-00000081.html","mountain"]],"b":[["NCBITaxon%3A139808","Shimazuella kribbensis"],["NCBITaxon%3A1123252","Shimazuella kribbensis DSM 45090"]]},{"id":"NCBITaxon:1123256","l":"Solimonas variicoloris DSM 15731","na":1,"nb":2,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"]],"b":[["NCBITaxon%3A254408","Solimonas variicoloris"],["NCBITaxon%3A1123256","Solimonas variicoloris DSM 15731"]]},{"id":"NCBITaxon:1123261","l":"Solimonas soli DSM 21787","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A413479","Solimonas soli"],["NCBITaxon%3A1123261","Solimonas soli DSM 21787"]]},{"id":"NCBITaxon:1123262","l":"Solirubrobacter soli DSM 22325","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A363832","Solirubrobacter soli"],["NCBITaxon%3A1123262","Solirubrobacter soli DSM 22325"]]},{"id":"NCBITaxon:1123263","l":"Solobacterium moorei DSM 22971","na":1,"nb":2,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A102148","Solobacterium moorei"],["NCBITaxon%3A1123263","Solobacterium moorei DSM 22971"]]},{"id":"NCBITaxon:1123264","l":"Sphingobacterium multivorum DSM 11691","na":1,"nb":2,"a":[["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A28454","Sphingobacterium multivorum"],["NCBITaxon%3A1123264","Sphingobacterium multivorum DSM 11691"]]},{"id":"NCBITaxon:1123277","l":"Spirosoma panaciterrae DSM 21099","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A496058","Spirosoma panaciterrae"],["NCBITaxon%3A1123277","Spirosoma panaciterrae DSM 21099"]]},{"id":"NCBITaxon:1123279","l":"Spongiibacter tropicus DSM 19543","na":1,"nb":2,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["NCBITaxon%3A454602","Spongiibacter tropicus"],["NCBITaxon%3A1123279","Spongiibacter tropicus DSM 19543"]]},{"id":"NCBITaxon:1123280","l":"Sporacetigenium mesophilum DSM 16796","na":1,"nb":2,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A286803","Sporacetigenium mesophilum"],["NCBITaxon%3A1123280","Sporacetigenium mesophilum DSM 16796"]]},{"id":"NCBITaxon:1123281","l":"Sporanaerobacter acetigenes DSM 13106","na":1,"nb":2,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A165813","Sporanaerobacter acetigenes"],["NCBITaxon%3A1123281","Sporanaerobacter acetigenes DSM 13106"]]},{"id":"NCBITaxon:1123282","l":"Sporobacter termitidis DSM 10068","na":1,"nb":2,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A44749","Sporobacter termitidis"],["NCBITaxon%3A1123282","Sporobacter termitidis DSM 10068"]]},{"id":"NCBITaxon:1123288","l":"Sporomusa ovata DSM 2662","na":1,"nb":2,"a":[["silage-envo-00003030.html","silage"]],"b":[["NCBITaxon%3A2378","Sporomusa ovata"],["NCBITaxon%3A1123288","Sporomusa ovata DSM 2662"]]},{"id":"NCBITaxon:1123347","l":"Tenacibaculum ovolyticum DSM 18103","na":1,"nb":2,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["NCBITaxon%3A104270","Tenacibaculum ovolyticum"],["NCBITaxon%3A1123347","Tenacibaculum ovolyticum DSM 18103"]]},{"id":"NCBITaxon:1123355","l":"Terasakiella pusilla DSM 6293","na":1,"nb":2,"a":[["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A64973","Terasakiella pusilla"],["NCBITaxon%3A1123355","Terasakiella pusilla DSM 6293"]]},{"id":"NCBITaxon:1123366","l":"Thalassospira xiamenensis M-5 = DSM 17429","na":1,"nb":2,"a":[["oil-envo-00002985.html","oil"]],"b":[["NCBITaxon%3A220697","Thalassospira xiamenensis"],["NCBITaxon%3A1123366","Thalassospira xiamenensis M-5 = DSM 17429"]]},{"id":"NCBITaxon:1123369","l":"Thermoanaerobacter uzonensis DSM 18761","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A447593","Thermoanaerobacter uzonensis"],["NCBITaxon%3A1123369","Thermoanaerobacter uzonensis DSM 18761"]]},{"id":"NCBITaxon:1123372","l":"Thermodesulfobacterium hveragerdense DSM 12571","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A53424","Thermodesulfobacterium hveragerdense"],["NCBITaxon%3A1123372","Thermodesulfobacterium hveragerdense DSM 12571"]]},{"id":"NCBITaxon:1123374","l":"Thermodesulfovibrio hydrogeniphilus DSM 18151","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A412896","Thermodesulfovibrio hydrogeniphilus"],["NCBITaxon%3A1123374","Thermodesulfovibrio hydrogeniphilus DSM 18151"]]},{"id":"NCBITaxon:1123375","l":"Thermodesulfovibrio islandicus DSM 12570","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A1123375","Thermodesulfovibrio islandicus DSM 12570"],["NCBITaxon%3A28262","Thermodesulfovibrio yellowstonii"]]},{"id":"NCBITaxon:1123379","l":"Thermosediminibacter litoriperuensis DSM 16647","na":1,"nb":2,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A291989","Thermosediminibacter litoriperuensis"],["NCBITaxon%3A1123379","Thermosediminibacter litoriperuensis DSM 16647"]]},{"id":"NCBITaxon:1123385","l":"","na":1,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A39100","Pseudothermotoga subterranea"],["NCBITaxon%3A1123385","Pseudothermotoga subterranea DSM 9912 = NBRC 107924"]]},{"id":"NCBITaxon:1123391","l":"Thermus scotoductus DSM 8553","na":1,"nb":2,"a":[["drinking-water-envo-00003064.html","drinking water"]],"b":[["NCBITaxon%3A37636","Thermus scotoductus"],["NCBITaxon%3A1123391","Thermus scotoductus DSM 8553"]]},{"id":"NCBITaxon:1123392","l":"Thiobacillus denitrificans DSM 12475","na":1,"nb":2,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A36861","Thiobacillus denitrificans"],["NCBITaxon%3A1123392","Thiobacillus denitrificans DSM 12475"]]},{"id":"NCBITaxon:1123398","l":"Thiothrix caldifontis DSM 21228","na":1,"nb":2,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A525918","Thiothrix caldifontis"],["NCBITaxon%3A1123398","Thiothrix caldifontis DSM 21228"]]},{"id":"NCBITaxon:1123399","l":"Thiolinea disciformis DSM 14473","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A125614","Thiolinea disciformis"],["NCBITaxon%3A1123399","Thiolinea disciformis DSM 14473"]]},{"id":"NCBITaxon:1123400","l":"Thiofilum flexile DSM 14609","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A125627","Thiofilum flexile"],["NCBITaxon%3A1123400","Thiofilum flexile DSM 14609"]]},{"id":"NCBITaxon:1123487","l":"Uliginosibacterium gangwonense DSM 18521","na":1,"nb":2,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A392736","Uliginosibacterium gangwonense"],["NCBITaxon%3A1123487","Uliginosibacterium gangwonense DSM 18521"]]},{"id":"NCBITaxon:1123491","l":"Vibrio cincinnatiensis DSM 19608","na":1,"nb":2,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["NCBITaxon%3A675","Vibrio cincinnatiensis"],["NCBITaxon%3A1123491","Vibrio cincinnatiensis DSM 19608"]]},{"id":"NCBITaxon:1123508","l":"Zavarzinella formosa DSM 19928","na":1,"nb":2,"a":[["rosette-bto-0001201.html","rosette"]],"b":[["NCBITaxon%3A360055","Zavarzinella formosa"],["NCBITaxon%3A1123508","Zavarzinella formosa DSM 19928"]]},{"id":"NCBITaxon:1123509","l":"Zooshikella ganghwensis DSM 15267","na":1,"nb":2,"a":[["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["NCBITaxon%3A202772","Zooshikella ganghwensis"],["NCBITaxon%3A1123509","Zooshikella ganghwensis DSM 15267"]]},{"id":"NCBITaxon:1123511","l":"Propionispira raffinosivorans DSM 20765","na":1,"nb":2,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"]],"b":[["NCBITaxon%3A86959","Propionispira raffinosivorans"],["NCBITaxon%3A1123511","Propionispira raffinosivorans DSM 20765"]]},{"id":"NCBITaxon:1123514","l":"Thiomicrorhabdus arctica DSM 13458","na":1,"nb":2,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A131540","Thiomicrorhabdus arctica"],["NCBITaxon%3A1123514","Thiomicrorhabdus arctica DSM 13458"]]},{"id":"NCBITaxon:1123515","l":"Thiomicrorhabdus chilensis DSM 12352","na":1,"nb":2,"a":[["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["NCBITaxon%3A63656","Thiomicrorhabdus chilensis"],["NCBITaxon%3A1123515","Thiomicrorhabdus chilensis DSM 12352"]]},{"id":"NCBITaxon:1123721","l":"Weissella koreensis KCTC 3621","na":1,"nb":2,"a":[["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A165096","Weissella koreensis"],["NCBITaxon%3A1123721","Weissella koreensis KCTC 3621"]]},{"id":"NCBITaxon:1124743","l":"Kribbella soli","na":2,"nb":1,"a":[["park-envo-00000562.html","park"],["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1124743","Kribbella soli"]]},{"id":"NCBITaxon:1124780","l":"Nafulsella turpanensis ZLM-10","na":1,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A1265690","Nafulsella turpanensis"],["NCBITaxon%3A1124780","Nafulsella turpanensis ZLM-10"]]},{"id":"NCBITaxon:1124982","l":"Treponema sp. JC4","na":2,"nb":1,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A1124982","Treponema sp. JC4"]]},{"id":"NCBITaxon:1125973","l":"Bosea sp. 117","na":2,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"],["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1125973","Allobosea sp. 117"]]},{"id":"NCBITaxon:1126011","l":"Listeria monocytogenes 07PF0776","na":2,"nb":1,"a":[["central-nervous-system-bto-0000227.html","central nervous system"],["myocardium-bto-0000901.html","myocardium"]],"b":[["NCBITaxon%3A1126011","Listeria monocytogenes 07PF0776"]]},{"id":"NCBITaxon:1126627","l":"Bradyrhizobium sp. DOA9","na":2,"nb":1,"a":[["free-living-state-bto-0001551.html","free-living state"],["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A1126627","Bradyrhizobium sp. DOA9"]]},{"id":"NCBITaxon:1128911","l":"Paraglaciecola arctica","na":1,"nb":2,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A1128911","Paraglaciecola arctica"],["NCBITaxon%3A493475","Paraglaciecola arctica BSs20135"]]},{"id":"NCBITaxon:1128912","l":"Paraglaciecola mesophila KMM 241","na":1,"nb":2,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A197222","Paraglaciecola mesophila"],["NCBITaxon%3A1128912","Paraglaciecola mesophila KMM 241"]]},{"id":"NCBITaxon:1129374","l":"Alishewanella jeotgali KCTC 22429","na":1,"nb":2,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A545533","Alishewanella jeotgali"],["NCBITaxon%3A1129374","Alishewanella jeotgali KCTC 22429"]]},{"id":"NCBITaxon:1129792","l":"Weissella oryzae","na":1,"nb":2,"a":[["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A1129792","Weissella oryzae"],["NCBITaxon%3A1329250","Weissella oryzae SG25"]]},{"id":"NCBITaxon:1129896","l":"Rhodococcus opacus M213","na":2,"nb":1,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A1129896","Rhodococcus opacus M213"]]},{"id":"NCBITaxon:1130382","l":"Spirochaetes bacterium SCGC AAA257-G10","na":2,"nb":1,"a":[["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A1130382","Spirochaetes bacterium SCGC AAA257-G10"]]},{"id":"NCBITaxon:1130383","l":"Spirochaetes bacterium SCGC AAA257-P05","na":2,"nb":1,"a":[["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A1130383","Spirochaetes bacterium SCGC AAA257-P05"]]},{"id":"NCBITaxon:1131452","l":"Mycoplasmopsis canis UF31","na":2,"nb":1,"a":[["brain-bto-0000142.html","brain"],["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A1131452","Mycoplasmopsis canis UF31"]]},{"id":"NCBITaxon:1131453","l":"Mycoplasmopsis canis UF33","na":2,"nb":1,"a":[["brain-bto-0000142.html","brain"],["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A1131453","Mycoplasmopsis canis UF33"]]},{"id":"NCBITaxon:1131454","l":"Mycoplasmopsis canis UFG1","na":2,"nb":1,"a":[["brain-bto-0000142.html","brain"],["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A1131454","Mycoplasmopsis canis UFG1"]]},{"id":"NCBITaxon:1131455","l":"Mycoplasmopsis canis UFG4","na":2,"nb":1,"a":[["brain-bto-0000142.html","brain"],["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A1131455","Mycoplasmopsis canis UFG4"]]},{"id":"NCBITaxon:1131703","l":"Sphaerochaeta globosa","na":1,"nb":2,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1131703","Sphaerochaeta globosa"],["NCBITaxon%3A158189","Sphaerochaeta globosa str. Buddy"]]},{"id":"NCBITaxon:1131707","l":"Sphaerochaeta pleomorpha","na":1,"nb":2,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1131707","Sphaerochaeta pleomorpha"],["NCBITaxon%3A158190","Sphaerochaeta pleomorpha str. Grapes"]]},{"id":"NCBITaxon:1131731","l":"Schinkia azotoformans LMG 9581","na":1,"nb":2,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A1454","Schinkia azotoformans"],["NCBITaxon%3A1131731","Schinkia azotoformans LMG 9581"]]},{"id":"NCBITaxon:1132444","l":"Methylocystis rosea SV97","na":1,"nb":2,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A173366","Methylocystis rosea"],["NCBITaxon%3A1132444","Methylocystis rosea SV97"]]},{"id":"NCBITaxon:1132696","l":"Chryseobacterium rigui","na":2,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"],["brackish-water-body-envo-01001321.html","brackish water body"]],"b":[["NCBITaxon%3A1132696","Chryseobacterium rigui"]]},{"id":"NCBITaxon:1133569","l":"Liquorilactobacillus vini DSM 20605","na":1,"nb":2,"a":[["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A238015","Liquorilactobacillus vini"],["NCBITaxon%3A1133569","Liquorilactobacillus vini DSM 20605"]]},{"id":"NCBITaxon:1134445","l":"Streptomyces somaliensis DSM 40738","na":1,"nb":2,"a":[["foot-bto-0000476.html","foot"]],"b":[["NCBITaxon%3A78355","Streptomyces somaliensis"],["NCBITaxon%3A1134445","Streptomyces somaliensis DSM 40738"]]},{"id":"NCBITaxon:1137848","l":"Clostridium arbusti","na":1,"nb":2,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A1137848","Clostridium arbusti"],["NCBITaxon%3A545243","Clostridium arbusti SL206"]]},{"id":"NCBITaxon:1137991","l":"Geodermatophilus siccatus","na":2,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A1137991","Geodermatophilus siccatus"]]},{"id":"NCBITaxon:1137993","l":"Geodermatophilus africanus","na":2,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A1137993","Geodermatophilus africanus"]]},{"id":"NCBITaxon:1137994","l":"Geodermatophilus saharensis","na":2,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A1137994","Geodermatophilus saharensis"]]},{"id":"NCBITaxon:1138429","l":"Glaesserella parasuis gx033","na":2,"nb":1,"a":[["lung-bto-0000763.html","lung"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1138429","Glaesserella parasuis gx033"]]},{"id":"NCBITaxon:114090","l":"Pediococcus inopinatus","na":2,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A114090","Pediococcus inopinatus"]]},{"id":"NCBITaxon:1141221","l":"Chryseobacterium taihuense","na":1,"nb":2,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A1871047","Chryseobacterium sp."],["NCBITaxon%3A1141221","Chryseobacterium taihuense"]]},{"id":"NCBITaxon:1141647","l":"Nocardia arizonensis","na":2,"nb":1,"a":[["bronchus-uberon-0002185.html","bronchus"],["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1141647","Nocardia arizonensis"]]},{"id":"NCBITaxon:1142394","l":"Phycisphaera mikurensis NBRC 102666","na":1,"nb":2,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A547188","Phycisphaera mikurensis"],["NCBITaxon%3A1142394","Phycisphaera mikurensis NBRC 102666"]]},{"id":"NCBITaxon:114814","l":"Xylaria cubensis","na":2,"nb":1,"a":[["temperate-envo-01000206.html","temperate"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A114814","Xylaria cubensis"]]},{"id":"NCBITaxon:1150461","l":"Bifidobacterium scardovii JCM 12489 = DSM 13734","na":1,"nb":2,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A158787","Bifidobacterium scardovii"],["NCBITaxon%3A1150461","Bifidobacterium scardovii JCM 12489 = DSM 13734"]]},{"id":"NCBITaxon:1150474","l":"Mesoaciditoga lauensis cd-1655R = DSM 25116","na":1,"nb":2,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["NCBITaxon%3A1495039","Mesoaciditoga lauensis"],["NCBITaxon%3A1150474","Mesoaciditoga lauensis cd-1655R = DSM 25116"]]},{"id":"NCBITaxon:1151117","l":"Thermococcus zilligii AN1","na":1,"nb":2,"a":[["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A54076","Thermococcus zilligii"],["NCBITaxon%3A1151117","Thermococcus zilligii AN1"]]},{"id":"NCBITaxon:1154817","l":"Streptococcus agalactiae CCUG 44077","na":1,"nb":2,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A1311","Streptococcus agalactiae"],["NCBITaxon%3A1154817","Streptococcus agalactiae CCUG 44077"]]},{"id":"NCBITaxon:1154862","l":"Streptococcus agalactiae CCUG 34230","na":1,"nb":2,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A1311","Streptococcus agalactiae"],["NCBITaxon%3A1154862","Streptococcus agalactiae CCUG 34230"]]},{"id":"NCBITaxon:1155079","l":"Staphylococcus aureus subsp. aureus DR10","na":2,"nb":1,"a":[["keratinocyte-bto-0000667.html","keratinocyte"],["suprachiasmatic-nucleus-bto-0001822.html","suprachiasmatic nucleus"]],"b":[["NCBITaxon%3A1155079","Staphylococcus aureus subsp. aureus DR10"]]},{"id":"NCBITaxon:1155084","l":"Staphylococcus aureus subsp. aureus 71193","na":2,"nb":1,"a":[["keratinocyte-bto-0000667.html","keratinocyte"],["suprachiasmatic-nucleus-bto-0001822.html","suprachiasmatic nucleus"]],"b":[["NCBITaxon%3A1155084","Staphylococcus aureus subsp. aureus 71193"]]},{"id":"NCBITaxon:115545","l":"Pasteurella multocida subsp. septica","na":1,"nb":2,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["NCBITaxon%3A747","Pasteurella multocida"],["NCBITaxon%3A115545","Pasteurella multocida subsp. septica"]]},{"id":"NCBITaxon:115553","l":"Vreelandella sulfidaeris","na":1,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A115553","Vreelandella sulfidaeris"],["NCBITaxon%3A891402","Vreelandella sulfidaeris Esulfide1"]]},{"id":"NCBITaxon:115561","l":"","na":2,"nb":1,"a":[["river-envo-00000022.html","river"],["subpolar-coniferous-forest-biome-envo-01000250.html","subpolar coniferous forest biome"]],"b":[["NCBITaxon%3A44935","Vreelandella venusta"]]},{"id":"NCBITaxon:1157946","l":"Streptococcus salivarius PS4","na":2,"nb":1,"a":[["breast-bto-0000149.html","breast"],["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1157946","Streptococcus salivarius PS4"]]},{"id":"NCBITaxon:1159489","l":"Cronobacter sakazakii 2151","na":2,"nb":1,"a":[["neonate-bto-0001762.html","neonate"],["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1159489","Cronobacter sakazakii 2151"]]},{"id":"NCBITaxon:1159491","l":"Cronobacter malonaticus LMG 23826","na":1,"nb":2,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A413503","Cronobacter malonaticus"],["NCBITaxon%3A1159491","Cronobacter malonaticus LMG 23826"]]},{"id":"NCBITaxon:1159613","l":"Cronobacter muytjensii ATCC 51329","na":1,"nb":2,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A413501","Cronobacter muytjensii"],["NCBITaxon%3A1159613","Cronobacter muytjensii ATCC 51329"]]},{"id":"NCBITaxon:115979","l":"Niallia nealsonii","na":1,"nb":2,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A115979","Niallia nealsonii"],["NCBITaxon%3A1202533","Niallia nealsonii AAU1"]]},{"id":"NCBITaxon:1161100","l":"Flavobacterium lindanitolerans CIP 109890","na":1,"nb":2,"a":[["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A428988","Flavobacterium lindanitolerans"],["NCBITaxon%3A1161100","Flavobacterium lindanitolerans CIP 109890"]]},{"id":"NCBITaxon:1161919","l":"Erwinia piriflorinigrans CFBP 5888","na":1,"nb":2,"a":[["flower-bto-0000469.html","flower"]],"b":[["NCBITaxon%3A665097","Erwinia piriflorinigrans"],["NCBITaxon%3A1161919","Erwinia piriflorinigrans CFBP 5888"]]},{"id":"NCBITaxon:1161942","l":"Ruminococcus champanellensis","na":1,"nb":2,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A1161942","Ruminococcus champanellensis"],["NCBITaxon%3A213810","Ruminococcus champanellensis 18P13 = JCM 17042"]]},{"id":"NCBITaxon:1162288","l":"Mycobacteroides abscessus M154","na":2,"nb":1,"a":[["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1162288","Mycobacteroides abscessus M154"]]},{"id":"NCBITaxon:1163748","l":"","na":1,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A2743","Marinobacter nauticus"],["NCBITaxon%3A1163748","Marinobacter nauticus ATCC 49840"]]},{"id":"NCBITaxon:1163751","l":"Candidatus Hamiltonella defensa MED (Bemisia tabaci)","na":1,"nb":2,"a":[["phloem-bto-0001058.html","phloem"]],"b":[["NCBITaxon%3A1163751","Candidatus Hamiltonella defensa MED (Bemisia tabaci)"],["NCBITaxon%3A1240083","Candidatus Hamiltonella defensa MED (Bemisia tabaci) BT-B-HRs"]]},{"id":"NCBITaxon:1165867","l":"","na":1,"nb":2,"a":[["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A37919","Rhodococcus opacus"],["NCBITaxon%3A1165867","Rhodococcus opacus RKJ300 = JCM 13270"]]},{"id":"NCBITaxon:1166078","l":"Aureimonas phyllosphaerae","na":2,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A1166078","Aureimonas phyllosphaerae"]]},{"id":"NCBITaxon:1167694","l":"Escherichia coli O32:H37 str. P4","na":2,"nb":1,"a":[["mammary-gland-bto-0000817.html","mammary gland"],["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1167694","Escherichia coli O32:H37 str. P4"]]},{"id":"NCBITaxon:1168170","l":"Klebsiella oxytoca BRL6-2","na":1,"nb":2,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A1168170","Klebsiella oxytoca BRL6-2"],["NCBITaxon%3A576","Klebsiella sp."]]},{"id":"NCBITaxon:117207","l":"Sphingopyxis alaskensis","na":1,"nb":2,"a":[["skin-bto-0001253.html","skin"]],"b":[["NCBITaxon%3A117207","Sphingopyxis alaskensis"],["NCBITaxon%3A317655","Sphingopyxis alaskensis RB2256"]]},{"id":"NCBITaxon:1173062","l":"Acinetobacter sp. HA","na":2,"nb":1,"a":[["larva-bto-0000707.html","larva"],["midgut-bto-0000863.html","midgut"]],"b":[["NCBITaxon%3A1173062","Acinetobacter sp. HA"]]},{"id":"NCBITaxon:1173263","l":"Pseudanabaenococcus habilitatus PCC 7502","na":2,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A1173263","Pseudanabaenococcus habilitatus PCC 7502"]]},{"id":"NCBITaxon:117503","l":"Thermosipho geolei","na":1,"nb":2,"a":[["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A117503","Thermosipho geolei"],["NCBITaxon%3A1123381","Thermosipho geolei DSM 13256"]]},{"id":"NCBITaxon:1175296","l":"Methanomassiliicoccus luminyensis B10","na":1,"nb":2,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A1080712","Methanomassiliicoccus luminyensis"],["NCBITaxon%3A1175296","Methanomassiliicoccus luminyensis B10"]]},{"id":"NCBITaxon:1175486","l":"Nocardioides albertanoniae","na":2,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A1175486","Nocardioides albertanoniae"]]},{"id":"NCBITaxon:1177180","l":"Kosakonia radicincitans DSM 16656","na":1,"nb":2,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A283686","Kosakonia radicincitans"],["NCBITaxon%3A1177180","Kosakonia radicincitans DSM 16656"]]},{"id":"NCBITaxon:118166","l":"Nodosilinea nodulosa PCC 7104","na":2,"nb":1,"a":[["bar-envo-00000167.html","bar"],["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A118166","Nodosilinea nodulosa PCC 7104"]]},{"id":"NCBITaxon:1184251","l":"Thermogladius calderae 1633","na":1,"nb":2,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A1200300","Thermogladius calderae"],["NCBITaxon%3A1184251","Thermogladius calderae 1633"]]},{"id":"NCBITaxon:1185920","l":"Phaeovulum veldkampii DSM 11550","na":1,"nb":2,"a":[["pond-envo-00000033.html","pond"]],"b":[["NCBITaxon%3A33049","Phaeovulum veldkampii"],["NCBITaxon%3A1185920","Phaeovulum veldkampii DSM 11550"]]},{"id":"NCBITaxon:1188261","l":"","na":1,"nb":2,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A521377","Alkalihalophilus marmarensis"],["NCBITaxon%3A1188261","Alkalihalophilus marmarensis DSM 21297"]]},{"id":"NCBITaxon:1189612","l":"Indibacter alkaliphilus LW1","na":1,"nb":2,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["NCBITaxon%3A579922","Indibacter alkaliphilus"],["NCBITaxon%3A1189612","Indibacter alkaliphilus LW1"]]},{"id":"NCBITaxon:1189613","l":"Staphylococcus massiliensis CCUG 55927","na":1,"nb":2,"a":[["brain-bto-0000142.html","brain"]],"b":[["NCBITaxon%3A555791","Staphylococcus massiliensis"],["NCBITaxon%3A1189613","Staphylococcus massiliensis CCUG 55927"]]},{"id":"NCBITaxon:1190417","l":"Geodermatophilus telluris","na":2,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A1190417","Geodermatophilus telluris"]]},{"id":"NCBITaxon:1191475","l":"Pseudomonas aeruginosa PAO579","na":2,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1191475","Pseudomonas aeruginosa PAO579"]]},{"id":"NCBITaxon:1192854","l":"Granulosicoccus antarcticus IMCC3135","na":1,"nb":2,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A437505","Granulosicoccus antarcticus"],["NCBITaxon%3A1192854","Granulosicoccus antarcticus IMCC3135"]]},{"id":"NCBITaxon:1193128","l":"Parascardovia denticolens IPLA 20019","na":2,"nb":1,"a":[["breast-bto-0000149.html","breast"],["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1193128","Parascardovia denticolens IPLA 20019"]]},{"id":"NCBITaxon:1193501","l":"Pseudomonas aeruginosa SJTD-1","na":2,"nb":1,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A1193501","Pseudomonas aeruginosa SJTD-1"]]},{"id":"NCBITaxon:1194079","l":"Streptomyces chilikensis","na":2,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"],["brackish-water-body-envo-01001321.html","brackish water body"]],"b":[["NCBITaxon%3A1194079","Streptomyces chilikensis"]]},{"id":"NCBITaxon:1194086","l":"Yersinia enterocolitica subsp. enterocolitica WA-314","na":2,"nb":1,"a":[["liver-bto-0000759.html","liver"],["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A1194086","Yersinia enterocolitica subsp. enterocolitica WA-314"]]},{"id":"NCBITaxon:1194669","l":"Pseudomonas aeruginosa N002","na":2,"nb":1,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A1194669","Pseudomonas aeruginosa N002"]]},{"id":"NCBITaxon:1195761","l":"Ornithinimicrobium tianjinense","na":1,"nb":2,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A189863","Falsarthrobacter nasiphocae"],["NCBITaxon%3A1195761","Ornithinimicrobium tianjinense"]]},{"id":"NCBITaxon:119641","l":"Clostridium uliginosum","na":1,"nb":2,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A119641","Clostridium uliginosum"],["NCBITaxon%3A1121343","Clostridium uliginosum DSM 12992"]]},{"id":"NCBITaxon:119644","l":"Hymenobacter aerophilus","na":1,"nb":2,"a":[["desert-biome-envo-01000179.html","desert biome"]],"b":[["NCBITaxon%3A119644","Hymenobacter aerophilus"],["NCBITaxon%3A1121953","Hymenobacter aerophilus DSM 13606"]]},{"id":"NCBITaxon:1197727","l":"Pseudomonas sp. Ag1","na":2,"nb":1,"a":[["larva-bto-0000707.html","larva"],["midgut-bto-0000863.html","midgut"]],"b":[["NCBITaxon%3A1197727","Pseudomonas sp. Ag1"]]},{"id":"NCBITaxon:1198114","l":"Granulicella tundricola MP5ACTX9","na":1,"nb":2,"a":[["area-designated-as-a-nature-reserve-envo-00000363.html","area designated as a nature reserve"]],"b":[["NCBITaxon%3A940615","Granulicella tundricola"],["NCBITaxon%3A1198114","Granulicella tundricola MP5ACTX9"]]},{"id":"NCBITaxon:119864","l":"Marinomonas mediterranea","na":1,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A119864","Marinomonas mediterranea"],["NCBITaxon%3A717774","Marinomonas mediterranea MMB-1"]]},{"id":"NCBITaxon:1202448","l":"Enterobacter sp. Ag1","na":2,"nb":1,"a":[["larva-bto-0000707.html","larva"],["midgut-bto-0000863.html","midgut"]],"b":[["NCBITaxon%3A1202448","Enterobacter sp. Ag1"]]},{"id":"NCBITaxon:1202668","l":"Secundilactobacillus oryzae","na":1,"nb":2,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A1202668","Secundilactobacillus oryzae"],["NCBITaxon%3A1291743","Secundilactobacillus oryzae JCM 18671"]]},{"id":"NCBITaxon:1203033","l":"Lactobacillus hominis","na":1,"nb":2,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A1203033","Lactobacillus hominis"],["NCBITaxon%3A1423758","Lactobacillus hominis DSM 23910 = CRBIP 24.179"]]},{"id":"NCBITaxon:1203258","l":"Lacticaseibacillus rhamnosus LRHMDP2","na":2,"nb":1,"a":[["dental-pulp-bto-0000339.html","dental pulp"],["pulp-bto-0001142.html","pulp"]],"b":[["NCBITaxon%3A1203258","Lacticaseibacillus rhamnosus LRHMDP2"]]},{"id":"NCBITaxon:1203259","l":"Lacticaseibacillus rhamnosus LRHMDP3","na":2,"nb":1,"a":[["dental-pulp-bto-0000339.html","dental pulp"],["pulp-bto-0001142.html","pulp"]],"b":[["NCBITaxon%3A1203259","Lacticaseibacillus rhamnosus LRHMDP3"]]},{"id":"NCBITaxon:1203471","l":"Geotalea daltonii","na":1,"nb":2,"a":[["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A1203471","Geotalea daltonii"],["NCBITaxon%3A316067","Geotalea daltonii FRC-32"]]},{"id":"NCBITaxon:120377","l":"Salana multivorans","na":2,"nb":1,"a":[["watercourse-envo-00000029.html","watercourse"],["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A120377","Salana multivorans"]]},{"id":"NCBITaxon:1204725","l":"Methanobacterium formicicum DSM 3637","na":1,"nb":2,"a":[["protist-associated-environment-habitatmech-gold-eee7408afd.html","protist-associated environment"]],"b":[["NCBITaxon%3A2162","Methanobacterium formicicum"],["NCBITaxon%3A1204725","Methanobacterium formicicum DSM 3637"]]},{"id":"NCBITaxon:1206108","l":"Escherichia coli J96","na":2,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["kidney-bto-0000671.html","kidney"]],"b":[["NCBITaxon%3A1206108","Escherichia coli J96"]]},{"id":"NCBITaxon:1206722","l":"Nocardia araoensis NBRC 100135","na":1,"nb":2,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A228600","Nocardia araoensis"],["NCBITaxon%3A1206722","Nocardia araoensis NBRC 100135"]]},{"id":"NCBITaxon:1206724","l":"Nocardia brasiliensis NBRC 14402","na":1,"nb":2,"a":[["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A37326","Nocardia brasiliensis"],["NCBITaxon%3A1206724","Nocardia brasiliensis NBRC 14402"]]},{"id":"NCBITaxon:1206725","l":"Nocardia brevicatena NBRC 12119","na":1,"nb":2,"a":[["tuberculosis-habitatmech-bacdive-e5d21f85b7.html","Tuberculosis"]],"b":[["NCBITaxon%3A37327","Nocardia brevicatena"],["NCBITaxon%3A1206725","Nocardia brevicatena NBRC 12119"]]},{"id":"NCBITaxon:1206729","l":"Nocardia exalbida NBRC 100660","na":1,"nb":2,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["NCBITaxon%3A290231","Nocardia exalbida"],["NCBITaxon%3A1206729","Nocardia exalbida NBRC 100660"]]},{"id":"NCBITaxon:1206730","l":"Nocardia higoensis NBRC 100133","na":1,"nb":2,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A228599","Nocardia higoensis"],["NCBITaxon%3A1206730","Nocardia higoensis NBRC 100133"]]},{"id":"NCBITaxon:1206732","l":"Nocardia otitidiscaviarum NBRC 14405","na":1,"nb":2,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A1823","Nocardia otitidiscaviarum"],["NCBITaxon%3A1206732","Nocardia otitidiscaviarum NBRC 14405"]]},{"id":"NCBITaxon:1206737","l":"Nocardia pneumoniae NBRC 100136","na":1,"nb":2,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A228601","Nocardia pneumoniae"],["NCBITaxon%3A1206737","Nocardia pneumoniae NBRC 100136"]]},{"id":"NCBITaxon:1206739","l":"Nocardia testacea NBRC 100365","na":1,"nb":2,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A248551","Nocardia testacea"],["NCBITaxon%3A1206739","Nocardia testacea NBRC 100365"]]},{"id":"NCBITaxon:1206744","l":"Nocardia transvalensis NBRC 15921","na":1,"nb":2,"a":[["foot-bto-0000476.html","foot"]],"b":[["NCBITaxon%3A37333","Nocardia transvalensis"],["NCBITaxon%3A1206744","Nocardia transvalensis NBRC 15921"]]},{"id":"NCBITaxon:1207063","l":"Oceanibaculum indicum P24","na":1,"nb":2,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A526216","Oceanibaculum indicum"],["NCBITaxon%3A1207063","Oceanibaculum indicum P24"]]},{"id":"NCBITaxon:1208324","l":"Celeribacter indicus","na":2,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["NCBITaxon%3A1208324","Celeribacter indicus"]]},{"id":"NCBITaxon:1209989","l":"Tepidanaerobacter acetatoxydans Re1","na":1,"nb":2,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A499229","Tepidanaerobacter acetatoxydans"],["NCBITaxon%3A1209989","Tepidanaerobacter acetatoxydans Re1"]]},{"id":"NCBITaxon:1210069","l":"Nocardia coubleae NBRC 108252","na":1,"nb":2,"a":[["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A356147","Nocardia coubleae"],["NCBITaxon%3A1210069","Nocardia coubleae NBRC 108252"]]},{"id":"NCBITaxon:1210075","l":"Nocardia ignorata NBRC 108230","na":1,"nb":2,"a":[["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A145285","Nocardia ignorata"],["NCBITaxon%3A1210075","Nocardia ignorata NBRC 108230"]]},{"id":"NCBITaxon:1210078","l":"Nocardia kruczakiae NBRC 101016","na":1,"nb":2,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["NCBITaxon%3A261477","Nocardia kruczakiae"],["NCBITaxon%3A1210078","Nocardia kruczakiae NBRC 101016"]]},{"id":"NCBITaxon:1210091","l":"Nocardia ninae NBRC 108245","na":1,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A356145","Nocardia ninae"],["NCBITaxon%3A1210091","Nocardia ninae NBRC 108245"]]},{"id":"NCBITaxon:1212764","l":"Paenibacillus popilliae ATCC 14706","na":1,"nb":2,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["NCBITaxon%3A78057","Paenibacillus popilliae"],["NCBITaxon%3A1212764","Paenibacillus popilliae ATCC 14706"]]},{"id":"NCBITaxon:1213463","l":"Mycoplasmoides pneumoniae 19294","na":2,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1213463","Mycoplasmoides pneumoniae 19294"]]},{"id":"NCBITaxon:1215100","l":"Pseudomonas fluorescens NBRC 14160","na":1,"nb":2,"a":[["reservoir-envo-00000025.html","reservoir"]],"b":[["NCBITaxon%3A294","Pseudomonas fluorescens"],["NCBITaxon%3A1215100","Pseudomonas fluorescens NBRC 14160"]]},{"id":"NCBITaxon:1215110","l":"Pseudomonas monteilii NBRC 103158 = DSM 14164","na":1,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A76759","Pseudomonas monteilii"],["NCBITaxon%3A1215110","Pseudomonas monteilii NBRC 103158 = DSM 14164"]]},{"id":"NCBITaxon:1215111","l":"Pseudomonas mucidolens NBRC 103159","na":1,"nb":2,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["NCBITaxon%3A46679","Pseudomonas mucidolens"],["NCBITaxon%3A1215111","Pseudomonas mucidolens NBRC 103159"]]},{"id":"NCBITaxon:1215116","l":"Ectopseudomonas oleovorans NBRC 14167","na":1,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A301","Ectopseudomonas oleovorans"],["NCBITaxon%3A1215116","Ectopseudomonas oleovorans NBRC 14167"]]},{"id":"NCBITaxon:1216006","l":"Vibrio aerogenes CECT 7868","na":1,"nb":2,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A92172","Vibrio aerogenes"],["NCBITaxon%3A1216006","Vibrio aerogenes CECT 7868"]]},{"id":"NCBITaxon:1216008","l":"Amphibacillus jilinensis","na":1,"nb":2,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A1216008","Amphibacillus jilinensis"],["NCBITaxon%3A562743","Amphibacillus jilinensis Y1"]]},{"id":"NCBITaxon:1216962","l":"Helicobacter heilmannii ASB1.4","na":1,"nb":2,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A35817","Helicobacter heilmannii"],["NCBITaxon%3A1216962","Helicobacter heilmannii ASB1.4"]]},{"id":"NCBITaxon:1216966","l":"Edwardsiella hoshinae NBRC 105699 = ATCC 33379","na":1,"nb":2,"a":[["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A93378","Edwardsiella hoshinae"],["NCBITaxon%3A1216966","Edwardsiella hoshinae NBRC 105699 = ATCC 33379"]]},{"id":"NCBITaxon:1216969","l":"Janibacter corallicola NBRC 107790","na":1,"nb":2,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A415212","Janibacter corallicola"],["NCBITaxon%3A1216969","Janibacter corallicola NBRC 107790"]]},{"id":"NCBITaxon:1218078","l":"Paraburkholderia ginsengisoli NBRC 100965","na":1,"nb":2,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A311231","Paraburkholderia ginsengisoli"],["NCBITaxon%3A1218078","Paraburkholderia ginsengisoli NBRC 100965"]]},{"id":"NCBITaxon:1218085","l":"Citrobacter rodentium NBRC 105723 = DSM 16636","na":1,"nb":2,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A67825","Citrobacter rodentium"],["NCBITaxon%3A1218085","Citrobacter rodentium NBRC 105723 = DSM 16636"]]},{"id":"NCBITaxon:121821","l":"Roseinatronobacter thiooxidans","na":2,"nb":1,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A121821","Roseinatronobacter thiooxidans"]]},{"id":"NCBITaxon:1219011","l":"","na":1,"nb":2,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A38310","Rhodococcus coprophilus"],["NCBITaxon%3A1219011","Rhodococcus coprophilus NBRC 100603"]]},{"id":"NCBITaxon:1219012","l":"Rhodococcoides corynebacterioides NBRC 14404","na":1,"nb":2,"a":[["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["NCBITaxon%3A53972","Rhodococcoides corynebacterioides"],["NCBITaxon%3A1219012","Rhodococcoides corynebacterioides NBRC 14404"]]},{"id":"NCBITaxon:1219017","l":"Rhodococcus jostii NBRC 16295","na":1,"nb":2,"a":[["bone-element-uberon-0001474.html","bone element"]],"b":[["NCBITaxon%3A132919","Rhodococcus jostii"],["NCBITaxon%3A1219017","Rhodococcus jostii NBRC 16295"]]},{"id":"NCBITaxon:1219036","l":"Sphingobium abikonense NBRC 16140","na":1,"nb":2,"a":[["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A86193","Sphingobium abikonense"],["NCBITaxon%3A1219036","Sphingobium abikonense NBRC 16140"]]},{"id":"NCBITaxon:1219045","l":"Sphingobium herbicidovorans NBRC 16415","na":1,"nb":2,"a":[["resting-cell-bto-0001170.html","resting cell"]],"b":[["NCBITaxon%3A76947","Sphingobium herbicidovorans"],["NCBITaxon%3A1219045","Sphingobium herbicidovorans NBRC 16415"]]},{"id":"NCBITaxon:1219057","l":"Novosphingobium subterraneum NBRC 16086","na":1,"nb":2,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A48936","Novosphingobium subterraneum"],["NCBITaxon%3A1219057","Novosphingobium subterraneum NBRC 16086"]]},{"id":"NCBITaxon:1219065","l":"Vibrio proteolyticus NBRC 13287","na":1,"nb":2,"a":[["alimentary-canal-bto-0000058.html","alimentary canal"]],"b":[["NCBITaxon%3A671","Vibrio proteolyticus"],["NCBITaxon%3A1219065","Vibrio proteolyticus NBRC 13287"]]},{"id":"NCBITaxon:1219067","l":"Vibrio natriegens NBRC 15636 = ATCC 14048 = DSM 759","na":1,"nb":2,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A691","Vibrio natriegens"],["NCBITaxon%3A1219067","Vibrio natriegens NBRC 15636 = ATCC 14048 = DSM 759"]]},{"id":"NCBITaxon:1219076","l":"Vibrio alginolyticus NBRC 15630 = ATCC 17749","na":1,"nb":2,"a":[["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A663","Vibrio alginolyticus"],["NCBITaxon%3A1219076","Vibrio alginolyticus NBRC 15630 = ATCC 17749"]]},{"id":"NCBITaxon:1219375","l":"Xanthomonas cassavae CFBP 4642","na":1,"nb":2,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A56450","Xanthomonas cassavae"],["NCBITaxon%3A1219375","Xanthomonas cassavae CFBP 4642"]]},{"id":"NCBITaxon:1220584","l":"Herbiconiux solani NBRC 106740","na":1,"nb":2,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A661329","Herbiconiux solani"],["NCBITaxon%3A1220584","Herbiconiux solani NBRC 106740"]]},{"id":"NCBITaxon:1220591","l":"","na":1,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A119858","Bacillus sonorensis"],["NCBITaxon%3A1220591","Bacillus sonorensis NBRC 101234 = KCTC 13918"]]},{"id":"NCBITaxon:1221451","l":"Staphylococcus aureus subsp. aureus 120","na":2,"nb":1,"a":[["immune-system-bto-0005810.html","immune system"],["neutrophil-bto-0000130.html","neutrophil"]],"b":[["NCBITaxon%3A1221451","Staphylococcus aureus subsp. aureus 120"]]},{"id":"NCBITaxon:1221452","l":"Staphylococcus aureus subsp. aureus 333","na":2,"nb":1,"a":[["immune-system-bto-0005810.html","immune system"],["neutrophil-bto-0000130.html","neutrophil"]],"b":[["NCBITaxon%3A1221452","Staphylococcus aureus subsp. aureus 333"]]},{"id":"NCBITaxon:1221453","l":"Staphylococcus aureus subsp. aureus 3989","na":2,"nb":1,"a":[["immune-system-bto-0005810.html","immune system"],["neutrophil-bto-0000130.html","neutrophil"]],"b":[["NCBITaxon%3A1221453","Staphylococcus aureus subsp. aureus 3989"]]},{"id":"NCBITaxon:1223489","l":"Nocardia niwae NBRC 108934 = DSM 45340","na":1,"nb":2,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["NCBITaxon%3A626084","Nocardia niwae"],["NCBITaxon%3A1223489","Nocardia niwae NBRC 108934 = DSM 45340"]]},{"id":"NCBITaxon:1223499","l":"","na":1,"nb":2,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1810","Mycolicibacterium vaccae"],["NCBITaxon%3A1223499","Mycolicibacterium vaccae NBRC 14118 = CIP 105934"]]},{"id":"NCBITaxon:1223511","l":"Pseudonocardia sulfidoxydans NBRC 16205","na":1,"nb":2,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"]],"b":[["NCBITaxon%3A54011","Pseudonocardia sulfidoxydans"],["NCBITaxon%3A1223511","Pseudonocardia sulfidoxydans NBRC 16205"]]},{"id":"NCBITaxon:1223528","l":"Microbacterium oleivorans NBRC 103075","na":1,"nb":2,"a":[["reservoir-envo-00000025.html","reservoir"]],"b":[["NCBITaxon%3A273677","Microbacterium oleivorans"],["NCBITaxon%3A1223528","Microbacterium oleivorans NBRC 103075"]]},{"id":"NCBITaxon:1223544","l":"Gordonia sihwensis NBRC 108236","na":1,"nb":2,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A173559","Gordonia sihwensis"],["NCBITaxon%3A1223544","Gordonia sihwensis NBRC 108236"]]},{"id":"NCBITaxon:1224164","l":"Corynebacterium vitaeruminis DSM 20294","na":1,"nb":2,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A38305","Corynebacterium vitaeruminis"],["NCBITaxon%3A1224164","Corynebacterium vitaeruminis DSM 20294"]]},{"id":"NCBITaxon:122587","l":"Neisseria meningitidis serogroup A / serotype 4A (strain DSM 15465 / Z2491)","na":1,"nb":2,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"]],"b":[["NCBITaxon%3A487","Neisseria meningitidis"],["NCBITaxon%3A122587","Neisseria meningitidis Z2491"]]},{"id":"NCBITaxon:1227482","l":"Halorubrum lipolyticum DSM 21995","na":1,"nb":2,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A368624","Halorubrum lipolyticum"],["NCBITaxon%3A1227482","Halorubrum lipolyticum DSM 21995"]]},{"id":"NCBITaxon:1227484","l":"Halorubrum saccharovorum DSM 1137","na":1,"nb":2,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A2248","Halorubrum saccharovorum"],["NCBITaxon%3A1227484","Halorubrum saccharovorum DSM 1137"]]},{"id":"NCBITaxon:1227493","l":"Natrialba hulunbeirensis JCM 10989","na":1,"nb":2,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A123783","Natrialba hulunbeirensis"],["NCBITaxon%3A1227493","Natrialba hulunbeirensis JCM 10989"]]},{"id":"NCBITaxon:1227498","l":"Natronococcus jeotgali DSM 18795","na":1,"nb":2,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A413812","Natronococcus jeotgali"],["NCBITaxon%3A1227498","Natronococcus jeotgali DSM 18795"]]},{"id":"NCBITaxon:1231184","l":"Nitratireductor kimnyeongensis KY 101","na":1,"nb":2,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A430679","Nitratireductor kimnyeongensis"],["NCBITaxon%3A1231184","Nitratireductor kimnyeongensis KY 101"]]},{"id":"NCBITaxon:1231624","l":"Asaia bogorensis NBRC 16594","na":1,"nb":2,"a":[["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A91915","Asaia bogorensis"],["NCBITaxon%3A1231624","Asaia bogorensis NBRC 16594"]]},{"id":"NCBITaxon:1232203","l":"Bacillus thuringiensis serovar aizawai str. Leapi01","na":2,"nb":1,"a":[["larva-bto-0000707.html","larva"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A1232203","Bacillus thuringiensis serovar aizawai str. Leapi01"]]},{"id":"NCBITaxon:1234369","l":"Chlamydia pecorum P787","na":1,"nb":2,"a":[["synovia-bto-0001339.html","synovia"]],"b":[["NCBITaxon%3A85991","Chlamydia pecorum"],["NCBITaxon%3A1234369","Chlamydia pecorum P787"]]},{"id":"NCBITaxon:1235813","l":"Bacteroides pyogenes JCM 10003","na":1,"nb":2,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["NCBITaxon%3A310300","Bacteroides pyogenes"],["NCBITaxon%3A1235813","Bacteroides pyogenes JCM 10003"]]},{"id":"NCBITaxon:1235834","l":"Kosakonia sacchari SP1","na":1,"nb":2,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1158459","Kosakonia sacchari"],["NCBITaxon%3A1235834","Kosakonia sacchari SP1"]]},{"id":"NCBITaxon:1236512","l":"Bacteroides rodentium JCM 16496","na":1,"nb":2,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A691816","Bacteroides rodentium"],["NCBITaxon%3A1236512","Bacteroides rodentium JCM 16496"]]},{"id":"NCBITaxon:1236513","l":"Bacteroides faecichinchillae JCM 17102","na":1,"nb":2,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A871325","Bacteroides faecichinchillae"],["NCBITaxon%3A1236513","Bacteroides faecichinchillae JCM 17102"]]},{"id":"NCBITaxon:1236514","l":"Bacteroides stercorirosoris JCM 17103","na":1,"nb":2,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A871324","Bacteroides stercorirosoris"],["NCBITaxon%3A1236514","Bacteroides stercorirosoris JCM 17103"]]},{"id":"NCBITaxon:1236517","l":"Prevotella fusca JCM 17724","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A589436","Prevotella fusca"],["NCBITaxon%3A1236517","Prevotella fusca JCM 17724"]]},{"id":"NCBITaxon:1236521","l":"Porphyromonas macacae JCM 15984","na":1,"nb":2,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["NCBITaxon%3A28115","Porphyromonas macacae"],["NCBITaxon%3A1236521","Porphyromonas macacae JCM 15984"]]},{"id":"NCBITaxon:1236522","l":"Escherichia coli JCM 18426","na":1,"nb":2,"a":[["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1236522","Escherichia coli JCM 18426"]]},{"id":"NCBITaxon:1236544","l":"","na":1,"nb":2,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A38313","Shewanella algae"],["NCBITaxon%3A1236544","Shewanella algae JCM 21037 = NBRC 103173"]]},{"id":"NCBITaxon:1238186","l":"Leucobacter salsicius M1-8","na":1,"nb":2,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A664638","Leucobacter salsicius"],["NCBITaxon%3A1238186","Leucobacter salsicius M1-8"]]},{"id":"NCBITaxon:123820","l":"[Actinobacillus] rossii","na":2,"nb":1,"a":[["vaginal-fluid-uberon-0036243.html","vaginal fluid"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A123820","[Actinobacillus] rossii"]]},{"id":"NCBITaxon:123822","l":"[Haemophilus] felis","na":2,"nb":1,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A123822","[Haemophilus] felis"]]},{"id":"NCBITaxon:1239783","l":"Bacillus atrophaeus UCMB-5137","na":2,"nb":1,"a":[["fruit-bto-0000486.html","fruit"],["seedling-bto-0001228.html","seedling"]],"b":[["NCBITaxon%3A1239783","Bacillus atrophaeus UCMB-5137"]]},{"id":"NCBITaxon:124","l":"Blastopirellula marina","na":1,"nb":2,"a":[["marine-environment-envo-01000320.html","marine environment"]],"b":[["NCBITaxon%3A124","Blastopirellula marina"],["NCBITaxon%3A314230","Blastopirellula marina DSM 3645"]]},{"id":"NCBITaxon:1240678","l":"Streptomyces natalensis ATCC 27448","na":1,"nb":2,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A1240678","Streptomyces natalensis ATCC 27448"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:1243002","l":"Vibrio olivae","na":1,"nb":2,"a":[["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A1433403","Glycocaulis abyssi"],["NCBITaxon%3A1243002","Vibrio olivae"]]},{"id":"NCBITaxon:1245469","l":"Bradyrhizobium oligotrophicum S58","na":1,"nb":2,"a":[["bacteroid-bto-0000109.html","bacteroid"]],"b":[["NCBITaxon%3A44255","Bradyrhizobium oligotrophicum"],["NCBITaxon%3A1245469","Bradyrhizobium oligotrophicum S58"]]},{"id":"NCBITaxon:1246444","l":"Nocardiopsis halotolerans DSM 44410","na":1,"nb":2,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A124252","Nocardiopsis halotolerans"],["NCBITaxon%3A1246444","Nocardiopsis halotolerans DSM 44410"]]},{"id":"NCBITaxon:1246445","l":"Nocardiopsis kunsanensis DSM 44524","na":1,"nb":2,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A141693","Nocardiopsis kunsanensis"],["NCBITaxon%3A1246445","Nocardiopsis kunsanensis DSM 44524"]]},{"id":"NCBITaxon:1246448","l":"Nocardiopsis valliformis DSM 45023","na":1,"nb":2,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A239974","Nocardiopsis valliformis"],["NCBITaxon%3A1246448","Nocardiopsis valliformis DSM 45023"]]},{"id":"NCBITaxon:1246460","l":"Nocardiopsis lucentensis DSM 44048","na":1,"nb":2,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A53441","Nocardiopsis lucentensis"],["NCBITaxon%3A1246460","Nocardiopsis lucentensis DSM 44048"]]},{"id":"NCBITaxon:1246461","l":"Nocardiopsis alkaliphila YIM 80379","na":1,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A225762","Nocardiopsis alkaliphila"],["NCBITaxon%3A1246461","Nocardiopsis alkaliphila YIM 80379"]]},{"id":"NCBITaxon:1246995","l":"Actinoplanes friuliensis DSM 7358","na":1,"nb":2,"a":[["sporangium-bto-0001287.html","sporangium"]],"b":[["NCBITaxon%3A196914","Actinoplanes friuliensis"],["NCBITaxon%3A1246995","Actinoplanes friuliensis DSM 7358"]]},{"id":"NCBITaxon:1255628","l":"","na":1,"nb":2,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A150056","Mammaliicoccus fleurettii"],["NCBITaxon%3A1255628","Mammaliicoccus fleurettii CIP 106114 = DSM 13212"]]},{"id":"NCBITaxon:125602","l":"Desulfococcus biacutus","na":2,"nb":1,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A125602","Desulfococcus biacutus"]]},{"id":"NCBITaxon:1257026","l":"Streptomyces barkulensis","na":2,"nb":1,"a":[["brackish-water-body-envo-01001321.html","brackish water body"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A1257026","Streptomyces barkulensis"]]},{"id":"NCBITaxon:1257037","l":"Streptococcus mutans 5DC8","na":2,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["tooth-bto-0000397.html","tooth"]],"b":[["NCBITaxon%3A1257037","Streptococcus mutans 5DC8"]]},{"id":"NCBITaxon:1257038","l":"Streptococcus mutans KK21","na":2,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["tooth-bto-0000397.html","tooth"]],"b":[["NCBITaxon%3A1257038","Streptococcus mutans KK21"]]},{"id":"NCBITaxon:1257039","l":"Streptococcus mutans KK23","na":2,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["tooth-bto-0000397.html","tooth"]],"b":[["NCBITaxon%3A1257039","Streptococcus mutans KK23"]]},{"id":"NCBITaxon:1257040","l":"Streptococcus mutans AC4446","na":2,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["tooth-bto-0000397.html","tooth"]],"b":[["NCBITaxon%3A1257040","Streptococcus mutans AC4446"]]},{"id":"NCBITaxon:1257042","l":"Streptococcus mutans NCTC 11060","na":2,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["tooth-bto-0000397.html","tooth"]],"b":[["NCBITaxon%3A1257042","Streptococcus mutans NCTC 11060"]]},{"id":"NCBITaxon:1259795","l":"Coprothermobacter platensis DSM 11748","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A108819","Coprothermobacter platensis"],["NCBITaxon%3A1259795","Coprothermobacter platensis DSM 11748"]]},{"id":"NCBITaxon:1260928","l":"Geobacter sulfurreducens subsp. ethanolicus","na":1,"nb":2,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A35554","Geobacter sulfurreducens"],["NCBITaxon%3A1260928","Geobacter sulfurreducens subsp. ethanolicus"]]},{"id":"NCBITaxon:1261125","l":"Mannheimia haemolytica serotype 6 str. H23","na":2,"nb":1,"a":[["nasopharynx-bto-0000662.html","nasopharynx"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1261125","Mannheimia haemolytica serotype 6 str. H23"]]},{"id":"NCBITaxon:1263547","l":"Oscillibacter ruminantium","na":1,"nb":2,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A1263547","Oscillibacter ruminantium"],["NCBITaxon%3A1007096","Oscillibacter ruminantium GH1"]]},{"id":"NCBITaxon:1263756","l":"Mycoplasmoides pneumoniae 54089","na":2,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1263756","Mycoplasmoides pneumoniae 54089"]]},{"id":"NCBITaxon:1263757","l":"Mycoplasmoides pneumoniae 54524","na":2,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1263757","Mycoplasmoides pneumoniae 54524"]]},{"id":"NCBITaxon:1263758","l":"Mycoplasmoides pneumoniae 51494","na":2,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1263758","Mycoplasmoides pneumoniae 51494"]]},{"id":"NCBITaxon:1263760","l":"Mycoplasmoides pneumoniae 85138","na":2,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1263760","Mycoplasmoides pneumoniae 85138"]]},{"id":"NCBITaxon:1263761","l":"Mycoplasmoides pneumoniae 39443","na":2,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1263761","Mycoplasmoides pneumoniae 39443"]]},{"id":"NCBITaxon:1263762","l":"Mycoplasmoides pneumoniae 85084","na":2,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1263762","Mycoplasmoides pneumoniae 85084"]]},{"id":"NCBITaxon:1263763","l":"Mycoplasmoides pneumoniae M1139","na":2,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1263763","Mycoplasmoides pneumoniae M1139"]]},{"id":"NCBITaxon:1263835","l":"Mycoplasmoides pneumoniae MAC","na":2,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1263835","Mycoplasmoides pneumoniae MAC"]]},{"id":"NCBITaxon:1266845","l":"Carnobacterium inhibens subsp. gilichinskyi","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A147709","Carnobacterium inhibens"],["NCBITaxon%3A1266845","Carnobacterium inhibens subsp. gilichinskyi"]]},{"id":"NCBITaxon:1267002","l":"Mycoplasmoides gallisepticum ATCC 19610","na":1,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A2096","Mycoplasmoides gallisepticum"],["NCBITaxon%3A1267002","Mycoplasmoides gallisepticum ATCC 19610"]]},{"id":"NCBITaxon:126741","l":"Thermotoga sp. KOL6","na":2,"nb":1,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A126741","Thermotoga sp. KOL6"]]},{"id":"NCBITaxon:126843","l":"Mesorhizobium chacoense","na":2,"nb":1,"a":[["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"]],"b":[["NCBITaxon%3A126843","Mesorhizobium chacoense"]]},{"id":"NCBITaxon:1268635","l":"Legionella oakridgensis ATCC 33761 = DSM 21215","na":1,"nb":2,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A29423","Legionella oakridgensis"],["NCBITaxon%3A1268635","Legionella oakridgensis ATCC 33761 = DSM 21215"]]},{"id":"NCBITaxon:1271","l":"Micrococcus sp.","na":2,"nb":1,"a":[["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"]],"b":[["NCBITaxon%3A1271","Micrococcus sp."]]},{"id":"NCBITaxon:127458","l":"Thiobaca trueperi","na":2,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["lake-envo-00000020.html","lake"]],"b":[["NCBITaxon%3A127458","Thiobaca trueperi"]]},{"id":"NCBITaxon:127520","l":"Gremmeniella abietina","na":2,"nb":1,"a":[["lake-envo-00000020.html","lake"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"]],"b":[["NCBITaxon%3A127520","Gremmeniella abietina"]]},{"id":"NCBITaxon:1276","l":"Kytococcus sedentarius","na":1,"nb":2,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A1276","Kytococcus sedentarius"],["NCBITaxon%3A478801","Kytococcus sedentarius DSM 20547"]]},{"id":"NCBITaxon:1276220","l":"Spiroplasma taiwanense CT-1","na":1,"nb":2,"a":[["cardiovascular-system-bto-0000088.html","cardiovascular system"]],"b":[["NCBITaxon%3A2145","Spiroplasma taiwanense"],["NCBITaxon%3A1276220","Spiroplasma taiwanense CT-1"]]},{"id":"NCBITaxon:1276221","l":"Spiroplasma diminutum CUAS-1","na":1,"nb":2,"a":[["cardiovascular-system-bto-0000088.html","cardiovascular system"]],"b":[["NCBITaxon%3A216936","Spiroplasma diminutum"],["NCBITaxon%3A1276221","Spiroplasma diminutum CUAS-1"]]},{"id":"NCBITaxon:1276246","l":"Spiroplasma culicicola AES-1","na":1,"nb":2,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A216935","Spiroplasma culicicola"],["NCBITaxon%3A1276246","Spiroplasma culicicola AES-1"]]},{"id":"NCBITaxon:1279017","l":"Microbulbifer variabilis ATCC 700307","na":1,"nb":2,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A266805","Microbulbifer variabilis"],["NCBITaxon%3A1279017","Microbulbifer variabilis ATCC 700307"]]},{"id":"NCBITaxon:1280004","l":"Vibrio owensii LMG 25430","na":1,"nb":2,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A696485","Vibrio owensii"],["NCBITaxon%3A1280004","Vibrio owensii LMG 25430"]]},{"id":"NCBITaxon:128104","l":"Lentzea albidocapillata subsp. violacea","na":1,"nb":2,"a":[["geographic-feature-envo-00000000.html","geographic feature"]],"b":[["NCBITaxon%3A40571","Lentzea albidocapillata"],["NCBITaxon%3A128104","Lentzea albidocapillata subsp. violacea"]]},{"id":"NCBITaxon:1282887","l":"Lachnospira multipara ATCC 19207","na":1,"nb":2,"a":[["foregut-bto-0000507.html","foregut"]],"b":[["NCBITaxon%3A28051","Lachnospira multipara"],["NCBITaxon%3A1282887","Lachnospira multipara ATCC 19207"]]},{"id":"NCBITaxon:1283291","l":"Pseudomonas sp. URMO17WK12:I11","na":2,"nb":1,"a":[["cuticle-bto-0001600.html","cuticle"],["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A1283291","Pseudomonas sp. URMO17WK12:I11"]]},{"id":"NCBITaxon:1283300","l":"Methylohalobius crimeensis 10Ki","na":1,"nb":2,"a":[["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A244365","Methylohalobius crimeensis"],["NCBITaxon%3A1283300","Methylohalobius crimeensis 10Ki"]]},{"id":"NCBITaxon:1284","l":"Staphylococcus hyicus","na":1,"nb":2,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["NCBITaxon%3A1284","Staphylococcus hyicus"],["NCBITaxon%3A29387","Staphylococcus sp."]]},{"id":"NCBITaxon:128574","l":"Paenibacillus brasilensis","na":2,"nb":1,"a":[["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["NCBITaxon%3A128574","Paenibacillus brasilensis"]]},{"id":"NCBITaxon:1286348","l":"Escherichia coli TOP2522-1","na":2,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286348","Escherichia coli TOP2522-1"]]},{"id":"NCBITaxon:1286350","l":"Escherichia coli TOP2652","na":2,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286350","Escherichia coli TOP2652"]]},{"id":"NCBITaxon:1286351","l":"Escherichia coli TOP2662-1","na":2,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286351","Escherichia coli TOP2662-1"]]},{"id":"NCBITaxon:1286352","l":"Escherichia coli TOP2662-2","na":2,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286352","Escherichia coli TOP2662-2"]]},{"id":"NCBITaxon:1286353","l":"Escherichia coli TOP2662-3","na":2,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286353","Escherichia coli TOP2662-3"]]},{"id":"NCBITaxon:1287736","l":"Achromobacter aegrifaciens","na":1,"nb":2,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"]],"b":[["NCBITaxon%3A1287736","Achromobacter aegrifaciens"],["NCBITaxon%3A32002","Achromobacter denitrificans"]]},{"id":"NCBITaxon:128782","l":"Allobosea minatitlanensis","na":1,"nb":2,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A128782","Allobosea minatitlanensis"],["NCBITaxon%3A2126436","Carnobacterium antarcticum"]]},{"id":"NCBITaxon:1288027","l":"Arcticibacter svalbardensis","na":1,"nb":2,"a":[["subarctic-habitatmech-bacdive-09ded89de7.html","Subarctic"]],"b":[["NCBITaxon%3A1288027","Arcticibacter svalbardensis"],["NCBITaxon%3A1150600","Arcticibacter svalbardensis MN12-7"]]},{"id":"NCBITaxon:1288391","l":"Actinomyces timonensis","na":1,"nb":2,"a":[["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"]],"b":[["NCBITaxon%3A1288391","Actinomyces timonensis"],["NCBITaxon%3A521393","Actinomyces timonensis DSM 23838"]]},{"id":"NCBITaxon:1288392","l":"Moraxella porci","na":1,"nb":2,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["NCBITaxon%3A1288392","Moraxella porci"],["NCBITaxon%3A573983","Moraxella porci DSM 25326"]]},{"id":"NCBITaxon:1288492","l":"Enterococcus durans IPLA 655","na":2,"nb":1,"a":[["enterocyte-bto-0000398.html","enterocyte"],["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A1288492","Enterococcus durans IPLA 655"]]},{"id":"NCBITaxon:1291742","l":"Paucilactobacillus hokkaidonensis JCM 18461","na":1,"nb":2,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A1193095","Paucilactobacillus hokkaidonensis"],["NCBITaxon%3A1291742","Paucilactobacillus hokkaidonensis JCM 18461"]]},{"id":"NCBITaxon:1291743","l":"Secundilactobacillus oryzae JCM 18671","na":1,"nb":2,"a":[["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A1202668","Secundilactobacillus oryzae"],["NCBITaxon%3A1291743","Secundilactobacillus oryzae JCM 18671"]]},{"id":"NCBITaxon:1293","l":"Staphylococcus gallinarum","na":1,"nb":2,"a":[["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["NCBITaxon%3A1293","Staphylococcus gallinarum"],["NCBITaxon%3A1288","Staphylococcus xylosus"]]},{"id":"NCBITaxon:1293038","l":"Methanosarcina mazei JCM 9314","na":1,"nb":2,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A2209","Methanosarcina mazei"],["NCBITaxon%3A1293038","Methanosarcina mazei JCM 9314"]]},{"id":"NCBITaxon:1293039","l":"Methanobrevibacter arboriphilus JCM 9315","na":1,"nb":2,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A39441","Methanobrevibacter arboriphilus"],["NCBITaxon%3A1293039","Methanobrevibacter arboriphilus JCM 9315"]]},{"id":"NCBITaxon:1293042","l":"Methanoculleus chikugoensis JCM 10825","na":1,"nb":2,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A118126","Methanoculleus chikugoensis"],["NCBITaxon%3A1293042","Methanoculleus chikugoensis JCM 10825"]]},{"id":"NCBITaxon:1294022","l":"Piscibacillus salipiscarius JCM 13188","na":1,"nb":2,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A299480","Piscibacillus salipiscarius"],["NCBITaxon%3A1294022","Piscibacillus salipiscarius JCM 13188"]]},{"id":"NCBITaxon:1294260","l":"Geotalea toluenoxydans JCM 15764","na":1,"nb":2,"a":[["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A421624","Geotalea toluenoxydans"],["NCBITaxon%3A1294260","Geotalea toluenoxydans JCM 15764"]]},{"id":"NCBITaxon:1295128","l":"Thermodesulfovibrio aggregans JCM 13213","na":1,"nb":2,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A86166","Thermodesulfovibrio aggregans"],["NCBITaxon%3A1295128","Thermodesulfovibrio aggregans JCM 13213"]]},{"id":"NCBITaxon:1295373","l":"Acidiplasma cupricumulans JCM 13668 = DSM 16651","na":1,"nb":2,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A312540","Acidiplasma cupricumulans"],["NCBITaxon%3A1295373","Acidiplasma cupricumulans JCM 13668 = DSM 16651"]]},{"id":"NCBITaxon:1298595","l":"Veillonella rogosae JCM 15642","na":1,"nb":2,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["NCBITaxon%3A423477","Veillonella rogosae"],["NCBITaxon%3A1298595","Veillonella rogosae JCM 15642"]]},{"id":"NCBITaxon:1298604","l":"Enterobacter asburiae JCM 6051","na":1,"nb":2,"a":[["vaginal-fluid-uberon-0036243.html","vaginal fluid"]],"b":[["NCBITaxon%3A61645","Enterobacter asburiae"],["NCBITaxon%3A1298604","Enterobacter asburiae JCM 6051"]]},{"id":"NCBITaxon:1298606","l":"Methanosarcina barkeri JCM 10043","na":1,"nb":2,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A2208","Methanosarcina barkeri"],["NCBITaxon%3A1298606","Methanosarcina barkeri JCM 10043"]]},{"id":"NCBITaxon:1300163","l":"Methanobacterium formicicum JCM 10132","na":1,"nb":2,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A2162","Methanobacterium formicicum"],["NCBITaxon%3A1300163","Methanobacterium formicicum JCM 10132"]]},{"id":"NCBITaxon:1302689","l":"Mucilaginibacter polytrichastri","na":2,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A1302689","Mucilaginibacter polytrichastri"]]},{"id":"NCBITaxon:1302723","l":"Agromyces ulmi JCM 13315","na":1,"nb":2,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["NCBITaxon%3A248902","Agromyces ulmi"],["NCBITaxon%3A1302723","Agromyces ulmi JCM 13315"]]},{"id":"NCBITaxon:1303680","l":"Rhodococcus phenolicus JCM 14914","na":1,"nb":2,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A263849","Rhodococcus phenolicus"],["NCBITaxon%3A1303680","Rhodococcus phenolicus JCM 14914"]]},{"id":"NCBITaxon:1304875","l":"Aminobacterium mobile DSM 12262","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A81467","Aminobacterium mobile"],["NCBITaxon%3A1304875","Aminobacterium mobile DSM 12262"]]},{"id":"NCBITaxon:1305835","l":"Rhodococcus sp. JG-3","na":2,"nb":1,"a":[["dry-valley-envo-00000128.html","dry valley"],["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A1305835","Rhodococcus sp. JG-3"]]},{"id":"NCBITaxon:1305857","l":"Cellulomonas composti JCM 14898","na":1,"nb":2,"a":[["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A266130","Cellulomonas composti"],["NCBITaxon%3A1305857","Cellulomonas composti JCM 14898"]]},{"id":"NCBITaxon:1305865","l":"Cellulomonas chitinilytica JCM 16927","na":1,"nb":2,"a":[["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A398759","Cellulomonas chitinilytica"],["NCBITaxon%3A1305865","Cellulomonas chitinilytica JCM 16927"]]},{"id":"NCBITaxon:1307457","l":"Kineosporia mikuniensis JCM 9961","na":1,"nb":2,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A499547","Kineosporia mikuniensis"],["NCBITaxon%3A1307457","Kineosporia mikuniensis JCM 9961"]]},{"id":"NCBITaxon:1307759","l":"Desulfohalovibrio reitneri","na":2,"nb":1,"a":[["microbial-mat-envo-01000008.html","microbial mat"],["atoll-envo-00000166.html","atoll"]],"b":[["NCBITaxon%3A1307759","Desulfohalovibrio reitneri"]]},{"id":"NCBITaxon:1307912","l":"Acetobacter oeni LMG 21952","na":1,"nb":2,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A304077","Acetobacter oeni"],["NCBITaxon%3A1307912","Acetobacter oeni LMG 21952"]]},{"id":"NCBITaxon:1307920","l":"Acetobacter tropicalis NRIC 0312","na":1,"nb":2,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A104102","Acetobacter tropicalis"],["NCBITaxon%3A1307920","Acetobacter tropicalis NRIC 0312"]]},{"id":"NCBITaxon:1307939","l":"Komagataeibacter rhaeticus DSM 16663","na":1,"nb":2,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A215221","Komagataeibacter rhaeticus"],["NCBITaxon%3A1307939","Komagataeibacter rhaeticus DSM 16663"]]},{"id":"NCBITaxon:1307943","l":"Komagataeibacter swingsii DSM 16373","na":1,"nb":2,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A215220","Komagataeibacter swingsii"],["NCBITaxon%3A1307943","Komagataeibacter swingsii DSM 16373"]]},{"id":"NCBITaxon:131081","l":"Corynebacterium capitovis","na":1,"nb":2,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"]],"b":[["NCBITaxon%3A131081","Corynebacterium capitovis"],["NCBITaxon%3A1121354","Corynebacterium capitovis DSM 44611"]]},{"id":"NCBITaxon:131109","l":"Actinomyces bowdenii","na":2,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["NCBITaxon%3A131109","Actinomyces bowdenii"]]},{"id":"NCBITaxon:131110","l":"Schaalia radingae","na":1,"nb":2,"a":[["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["NCBITaxon%3A29317","Actinomyces sp."],["NCBITaxon%3A131110","Schaalia radingae"]]},{"id":"NCBITaxon:1314751","l":"Sutcliffiella cohnii NBRC 15565","na":1,"nb":2,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A33932","Sutcliffiella cohnii"],["NCBITaxon%3A1314751","Sutcliffiella cohnii NBRC 15565"]]},{"id":"NCBITaxon:1314958","l":"Parachlamydiaceae bacterium HS-T3","na":2,"nb":1,"a":[["epithelium-bto-0000416.html","epithelium"],["hep-2-cell-bto-0000976.html","HEp-2 cell"]],"b":[["NCBITaxon%3A1314958","Parachlamydiaceae bacterium HS-T3"]]},{"id":"NCBITaxon:13160","l":"Brevundimonas bullata","na":1,"nb":2,"a":[["biome-envo-00000428.html","biome"]],"b":[["NCBITaxon%3A13160","Brevundimonas bullata"],["NCBITaxon%3A1550907","Kiloniella antarctica"]]},{"id":"NCBITaxon:1319815","l":"Cetobacterium somerae ATCC BAA-474","na":1,"nb":2,"a":[["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"]],"b":[["NCBITaxon%3A188913","Cetobacterium somerae"],["NCBITaxon%3A1319815","Cetobacterium somerae ATCC BAA-474"]]},{"id":"NCBITaxon:1321369","l":"Staphylococcus aureus Bmb9393","na":2,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["epithelial-cell-bto-0000414.html","epithelial cell"]],"b":[["NCBITaxon%3A1321369","Staphylococcus aureus Bmb9393"]]},{"id":"NCBITaxon:132476","l":"Pseudomonas kilonensis","na":1,"nb":2,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A132476","Pseudomonas kilonensis"],["NCBITaxon%3A1173480","Pseudomonas kilonensis CBLA-66"]]},{"id":"NCBITaxon:1327988","l":"Lactiplantibacillus plantarum 16","na":2,"nb":1,"a":[["juice-bto-0000659.html","juice"],["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A1327988","Lactiplantibacillus plantarum 16"]]},{"id":"NCBITaxon:1328859","l":"Escherichia coli O157:H7 str. SS17","na":2,"nb":1,"a":[["rectal-epithelium-bto-0005445.html","rectal epithelium"],["squamous-epithelium-bto-0002072.html","squamous epithelium"]],"b":[["NCBITaxon%3A1328859","Escherichia coli O157:H7 str. SS17"]]},{"id":"NCBITaxon:1330043","l":"Bacillus bombysepticus str. Wang","na":2,"nb":1,"a":[["carcass-bto-0001965.html","carcass"],["thorax-bto-0001368.html","thorax"]],"b":[["NCBITaxon%3A1330043","Bacillus bombysepticus str. Wang"]]},{"id":"NCBITaxon:1333","l":"Streptococcus criceti","na":1,"nb":2,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A1333","Streptococcus criceti"],["NCBITaxon%3A873449","Streptococcus criceti HS-6"]]},{"id":"NCBITaxon:1333542","l":"Pseudomonas aeruginosa str. C 1426","na":1,"nb":2,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1333542","Pseudomonas aeruginosa str. C 1426"],["NCBITaxon%3A1333543","Pseudomonas aeruginosa str. C 1433"]]},{"id":"NCBITaxon:1333544","l":"Pseudomonas aeruginosa str. J 1385","na":1,"nb":2,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1333544","Pseudomonas aeruginosa str. J 1385"],["NCBITaxon%3A1333545","Pseudomonas aeruginosa str. J 1532"]]},{"id":"NCBITaxon:1334565","l":"","na":2,"nb":1,"a":[["liver-bto-0000759.html","liver"],["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A1334565","Listeria monocytogenes EGD"]]},{"id":"NCBITaxon:1334628","l":"Burkholderia contaminans LMG 23361","na":1,"nb":2,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A488447","Burkholderia contaminans"],["NCBITaxon%3A1334628","Burkholderia contaminans LMG 23361"]]},{"id":"NCBITaxon:133534","l":"Dethiosulfovibrio russensis","na":2,"nb":1,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A133534","Dethiosulfovibrio russensis"]]},{"id":"NCBITaxon:1336234","l":"Atopobacter phocae ATCC BAA-285","na":1,"nb":2,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"]],"b":[["NCBITaxon%3A136492","Atopobacter phocae"],["NCBITaxon%3A1336234","Atopobacter phocae ATCC BAA-285"]]},{"id":"NCBITaxon:1336236","l":"Ruminococcus flavefaciens ATCC 19208","na":1,"nb":2,"a":[["foregut-bto-0000507.html","foregut"]],"b":[["NCBITaxon%3A1265","Ruminococcus flavefaciens"],["NCBITaxon%3A1336236","Ruminococcus flavefaciens ATCC 19208"]]},{"id":"NCBITaxon:1336240","l":"Shewanella colwelliana ATCC 39565","na":1,"nb":2,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["NCBITaxon%3A23","Shewanella colwelliana"],["NCBITaxon%3A1336240","Shewanella colwelliana ATCC 39565"]]},{"id":"NCBITaxon:1336241","l":"Eubacterium xylanophilum ATCC 35991","na":1,"nb":2,"a":[["foregut-bto-0000507.html","foregut"]],"b":[["NCBITaxon%3A39497","Eubacterium xylanophilum"],["NCBITaxon%3A1336241","Eubacterium xylanophilum ATCC 35991"]]},{"id":"NCBITaxon:1337958","l":"Amycolatopsis orientalis DSM 46075","na":1,"nb":2,"a":[["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A31958","Amycolatopsis orientalis"],["NCBITaxon%3A1337958","Amycolatopsis orientalis DSM 46075"]]},{"id":"NCBITaxon:1337996","l":"Paraburkholderia phenoliruptrix AC1100","na":1,"nb":2,"a":[["resting-cell-bto-0001170.html","resting cell"]],"b":[["NCBITaxon%3A252970","Paraburkholderia phenoliruptrix"],["NCBITaxon%3A1337996","Paraburkholderia phenoliruptrix AC1100"]]},{"id":"NCBITaxon:1341154","l":"Flavobacterium cauense R2A-7","na":1,"nb":2,"a":[["lake-envo-00000020.html","lake"]],"b":[["NCBITaxon%3A510946","Flavobacterium cauense"],["NCBITaxon%3A1341154","Flavobacterium cauense R2A-7"]]},{"id":"NCBITaxon:1341646","l":"Mycolicibacterium septicum DSM 44393","na":1,"nb":2,"a":[["catheter-device-ncit-c50344.html","Catheter Device"]],"b":[["NCBITaxon%3A98668","Mycolicibacterium septicum"],["NCBITaxon%3A1341646","Mycolicibacterium septicum DSM 44393"]]},{"id":"NCBITaxon:1341692","l":"Clostridium autoethanogenum DSM 10061","na":1,"nb":2,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A84023","Clostridium autoethanogenum"],["NCBITaxon%3A1341692","Clostridium autoethanogenum DSM 10061"]]},{"id":"NCBITaxon:1343076","l":"Candidatus Karelsulcia muelleri str. Sulcia-ALF","na":2,"nb":1,"a":[["phloem-bto-0001058.html","phloem"],["xylem-bto-0001468.html","xylem"]],"b":[["NCBITaxon%3A1343076","Candidatus Karelsulcia muelleri str. Sulcia-ALF"]]},{"id":"NCBITaxon:1343077","l":"Candidatus Nasuia deltocephalinicola str. NAS-ALF","na":2,"nb":1,"a":[["phloem-bto-0001058.html","phloem"],["xylem-bto-0001468.html","xylem"]],"b":[["NCBITaxon%3A1343077","Candidatus Nasuia deltocephalinicola str. NAS-ALF"]]},{"id":"NCBITaxon:1346614","l":"Serratia liquefaciens ATCC 27592","na":1,"nb":2,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A614","Serratia liquefaciens"],["NCBITaxon%3A1346614","Serratia liquefaciens ATCC 27592"]]},{"id":"NCBITaxon:1346791","l":"Sphingobium ummariense RL-3","na":1,"nb":2,"a":[["resting-cell-bto-0001170.html","resting cell"]],"b":[["NCBITaxon%3A420994","Sphingobium ummariense"],["NCBITaxon%3A1346791","Sphingobium ummariense RL-3"]]},{"id":"NCBITaxon:1348249","l":"Methanobrevibacter boviskoreani","na":1,"nb":2,"a":[["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"]],"b":[["NCBITaxon%3A1348249","Methanobrevibacter boviskoreani"],["NCBITaxon%3A1214066","Methanobrevibacter boviskoreani JH1"]]},{"id":"NCBITaxon:1348334","l":"Lyngbya aestuarii BL J","na":2,"nb":1,"a":[["filament-bto-0000463.html","filament"],["trichome-bto-0001395.html","trichome"]],"b":[["NCBITaxon%3A1348334","Lyngbya aestuarii BL J"]]},{"id":"NCBITaxon:1348637","l":"Nocardiopsis listeri NBRC 13360","na":1,"nb":2,"a":[["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A53440","Nocardiopsis listeri"],["NCBITaxon%3A1348637","Nocardiopsis listeri NBRC 13360"]]},{"id":"NCBITaxon:1348660","l":"Serratia plymuthica S13","na":2,"nb":1,"a":[["fruit-bto-0000486.html","fruit"],["pollen-bto-0001097.html","pollen"]],"b":[["NCBITaxon%3A1348660","Serratia plymuthica S13"]]},{"id":"NCBITaxon:1348662","l":"Corynebacterium argentoratense DSM 44202","na":1,"nb":2,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A42817","Corynebacterium argentoratense"],["NCBITaxon%3A1348662","Corynebacterium argentoratense DSM 44202"]]},{"id":"NCBITaxon:1349767","l":"Janthinobacterium agaricidamnosum NBRC 102515 = DSM 9628","na":1,"nb":2,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A55508","Janthinobacterium agaricidamnosum"],["NCBITaxon%3A1349767","Janthinobacterium agaricidamnosum NBRC 102515 = DSM 9628"]]},{"id":"NCBITaxon:1353537","l":"Thioclava pacifica DSM 10166","na":1,"nb":2,"a":[["filament-bto-0000463.html","filament"]],"b":[["NCBITaxon%3A285109","Thioclava pacifica"],["NCBITaxon%3A1353537","Thioclava pacifica DSM 10166"]]},{"id":"NCBITaxon:1354791","l":"","na":1,"nb":2,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A1052","Halorhodospira halochloris"],["NCBITaxon%3A1354791","Halorhodospira halochloris str. A"]]},{"id":"NCBITaxon:1355374","l":"Aliarcobacter lanthieri","na":2,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A1355374","Aliarcobacter lanthieri"]]},{"id":"NCBITaxon:1356854","l":"Alicyclobacillus acidoterrestris (strain ATCC 49025 / DSM 3922 / CIP 106132 / NCIMB 13137 / GD3B)","na":1,"nb":2,"a":[["fruit-juice-bto-0004057.html","fruit juice"]],"b":[["NCBITaxon%3A1450","Alicyclobacillus acidoterrestris"],["NCBITaxon%3A1356854","Alicyclobacillus acidoterrestris ATCC 49025"]]},{"id":"NCBITaxon:1364","l":"Pseudolactococcus piscium","na":1,"nb":2,"a":[["juice-bto-0000659.html","juice"]],"b":[["NCBITaxon%3A1364","Pseudolactococcus piscium"],["NCBITaxon%3A297352","Pseudolactococcus piscium MKFS47"]]},{"id":"NCBITaxon:136492","l":"Atopobacter phocae","na":1,"nb":2,"a":[["co-culture-habitatmech-bacdive-ff945d8a69.html","Co-culture"]],"b":[["NCBITaxon%3A136492","Atopobacter phocae"],["NCBITaxon%3A1336234","Atopobacter phocae ATCC BAA-285"]]},{"id":"NCBITaxon:1365176","l":"Thermofilum adornatum","na":1,"nb":2,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A1365176","Thermofilum adornatum"],["NCBITaxon%3A697581","Thermofilum adornatum 1505"]]},{"id":"NCBITaxon:1366047","l":"Geobacillus stearothermophilus ATCC 12980","na":1,"nb":2,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["NCBITaxon%3A1422","Geobacillus stearothermophilus"],["NCBITaxon%3A1366047","Geobacillus stearothermophilus ATCC 12980"]]},{"id":"NCBITaxon:1367847","l":"Paracoccus aminophilus JCM 7686","na":1,"nb":2,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A34003","Paracoccus aminophilus"],["NCBITaxon%3A1367847","Paracoccus aminophilus JCM 7686"]]},{"id":"NCBITaxon:1368418","l":"Rhizobium nepotum 39/7","na":1,"nb":2,"a":[["crown-gall-bto-0000303.html","crown gall"]],"b":[["NCBITaxon%3A1035271","Rhizobium nepotum"],["NCBITaxon%3A1368418","Rhizobium nepotum 39/7"]]},{"id":"NCBITaxon:13725","l":"Thiocystis violacea","na":2,"nb":1,"a":[["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["NCBITaxon%3A13725","Thiocystis violacea"]]},{"id":"NCBITaxon:137545","l":"Serratia quinivorans","na":1,"nb":2,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A28151","Serratia proteamaculans"],["NCBITaxon%3A137545","Serratia quinivorans"]]},{"id":"NCBITaxon:137733","l":"Granulicatella balaenopterae","na":2,"nb":1,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["dorsum-bto-0001713.html","dorsum"]],"b":[["NCBITaxon%3A137733","Granulicatella balaenopterae"]]},{"id":"NCBITaxon:1379786","l":"Wolbachia pipientis wVitA","na":2,"nb":1,"a":[["embryo-bto-0000379.html","embryo"],["semen-bto-0001230.html","semen"]],"b":[["NCBITaxon%3A1379786","Wolbachia pipientis wVitA"]]},{"id":"NCBITaxon:137993","l":"Ectobacillus funiculus","na":1,"nb":2,"a":[["reservoir-envo-00000025.html","reservoir"]],"b":[["NCBITaxon%3A137993","Ectobacillus funiculus"],["NCBITaxon%3A1844115","Sphingomonas floccifaciens"]]},{"id":"NCBITaxon:1380392","l":"Nocardioides sp. URHA0020","na":2,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"]],"b":[["NCBITaxon%3A1380392","Nocardioides sp. URHA0020"]]},{"id":"NCBITaxon:1385512","l":"Pontibacillus litoralis JSM 072002","na":1,"nb":2,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A516703","Pontibacillus litoralis"],["NCBITaxon%3A1385512","Pontibacillus litoralis JSM 072002"]]},{"id":"NCBITaxon:1392848","l":"Escherichia coli M2","na":1,"nb":2,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1392848","Escherichia coli M2"]]},{"id":"NCBITaxon:1394","l":"[Bacillus] caldolyticus","na":2,"nb":1,"a":[["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"]],"b":[["NCBITaxon%3A1394","[Bacillus] caldolyticus"]]},{"id":"NCBITaxon:1395571","l":"Pseudomonas taeanensis MS-3","na":1,"nb":2,"a":[["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A574962","Pseudomonas taeanensis"],["NCBITaxon%3A1395571","Pseudomonas taeanensis MS-3"]]},{"id":"NCBITaxon:1397693","l":"Exiguobacterium undae DSM 14481","na":1,"nb":2,"a":[["pond-envo-00000033.html","pond"]],"b":[["NCBITaxon%3A169177","Exiguobacterium undae"],["NCBITaxon%3A1397693","Exiguobacterium undae DSM 14481"]]},{"id":"NCBITaxon:1397695","l":"Exiguobacterium undae 190-11","na":2,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"],["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A1397695","Exiguobacterium undae 190-11"]]},{"id":"NCBITaxon:1397697","l":"Exiguobacterium acetylicum DSM 20416","na":1,"nb":2,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["NCBITaxon%3A41170","Exiguobacterium acetylicum"],["NCBITaxon%3A1397697","Exiguobacterium acetylicum DSM 20416"]]},{"id":"NCBITaxon:1397700","l":"Exiguobacterium antarcticum DSM 14480","na":1,"nb":2,"a":[["dry-valley-envo-00000128.html","dry valley"]],"b":[["NCBITaxon%3A132920","Exiguobacterium antarcticum"],["NCBITaxon%3A1397700","Exiguobacterium antarcticum DSM 14480"]]},{"id":"NCBITaxon:1400522","l":"Sediminibacterium salmoneum NBRC 103935","na":1,"nb":2,"a":[["reservoir-envo-00000025.html","reservoir"]],"b":[["NCBITaxon%3A426421","Sediminibacterium salmoneum"],["NCBITaxon%3A1400522","Sediminibacterium salmoneum NBRC 103935"]]},{"id":"NCBITaxon:1402163","l":"Wolbachia endosymbiont wPip_Mol of Culex molestus","na":2,"nb":1,"a":[["embryo-bto-0000379.html","embryo"],["finger-bto-0004669.html","finger"]],"b":[["NCBITaxon%3A1402163","Wolbachia endosymbiont wPip_Mol of Culex molestus"]]},{"id":"NCBITaxon:140314","l":"Trichococcus palustris","na":2,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A140314","Trichococcus palustris"]]},{"id":"NCBITaxon:1407","l":"Peribacillus psychrosaccharolyticus","na":1,"nb":2,"a":[["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["NCBITaxon%3A1407","Peribacillus psychrosaccharolyticus"],["NCBITaxon%3A1174504","Peribacillus psychrosaccharolyticus ATCC 23296"]]},{"id":"NCBITaxon:1408159","l":"Pseudothermotoga caldifontis AZM44c09","na":1,"nb":2,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["NCBITaxon%3A1508419","Pseudothermotoga caldifontis"],["NCBITaxon%3A1408159","Pseudothermotoga caldifontis AZM44c09"]]},{"id":"NCBITaxon:1408160","l":"Thermotoga profunda AZM34c06","na":1,"nb":2,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["NCBITaxon%3A1508420","Pseudothermotoga profunda"],["NCBITaxon%3A1408160","Thermotoga profunda AZM34c06"]]},{"id":"NCBITaxon:1408271","l":"Pseudomonas aeruginosa LES400","na":2,"nb":1,"a":[["amoeba-bto-0005312.html","amoeba"],["biofilm-bto-0002690.html","biofilm"]],"b":[["NCBITaxon%3A1408271","Pseudomonas aeruginosa LES400"]]},{"id":"NCBITaxon:1408272","l":"Pseudomonas aeruginosa LES431","na":2,"nb":1,"a":[["amoeba-bto-0005312.html","amoeba"],["biofilm-bto-0002690.html","biofilm"]],"b":[["NCBITaxon%3A1408272","Pseudomonas aeruginosa LES431"]]},{"id":"NCBITaxon:1408273","l":"Pseudomonas aeruginosa LESB65","na":2,"nb":1,"a":[["amoeba-bto-0005312.html","amoeba"],["biofilm-bto-0002690.html","biofilm"]],"b":[["NCBITaxon%3A1408273","Pseudomonas aeruginosa LESB65"]]},{"id":"NCBITaxon:1408274","l":"Pseudomonas aeruginosa LESlike1","na":2,"nb":1,"a":[["amoeba-bto-0005312.html","amoeba"],["biofilm-bto-0002690.html","biofilm"]],"b":[["NCBITaxon%3A1408274","Pseudomonas aeruginosa LESlike1"]]},{"id":"NCBITaxon:1408281","l":"Endomicrobium proavitum","na":2,"nb":1,"a":[["flagellate-bto-0000464.html","flagellate"],["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1408281","Endomicrobium proavitum"]]},{"id":"NCBITaxon:1408434","l":"","na":1,"nb":2,"a":[["food-product-foodon-00001002.html","food product"]],"b":[["NCBITaxon%3A1299","Deinococcus radiodurans"],["NCBITaxon%3A243230","Deinococcus radiodurans R1 = ATCC 13939 = DSM 20539"]]},{"id":"NCBITaxon:1408438","l":"Hutsoniella sourekii ATCC 700629","na":1,"nb":2,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A87650","Hutsoniella sourekii"],["NCBITaxon%3A1408438","Hutsoniella sourekii ATCC 700629"]]},{"id":"NCBITaxon:1408440","l":"Gemella sanguinis ATCC 700632","na":1,"nb":2,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A84135","Gemella sanguinis"],["NCBITaxon%3A1408440","Gemella sanguinis ATCC 700632"]]},{"id":"NCBITaxon:1408478","l":"Vibrio cholerae ATCC 14035","na":1,"nb":2,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A666","Vibrio cholerae"],["NCBITaxon%3A1408478","Vibrio cholerae ATCC 14035"]]},{"id":"NCBITaxon:1410383","l":"Candidatus Tachikawaea gelatinosa","na":2,"nb":1,"a":[["midgut-bto-0000863.html","midgut"],["ovary-bto-0000975.html","ovary"]],"b":[["NCBITaxon%3A1410383","Candidatus Tachikawaea gelatinosa"]]},{"id":"NCBITaxon:1410653","l":"Clostridium lundense DSM 17049","na":1,"nb":2,"a":[["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"]],"b":[["NCBITaxon%3A319475","Clostridium lundense"],["NCBITaxon%3A1410653","Clostridium lundense DSM 17049"]]},{"id":"NCBITaxon:1411141","l":"Serratia ficaria NBRC 102596","na":1,"nb":2,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A61651","Serratia ficaria"],["NCBITaxon%3A1411141","Serratia ficaria NBRC 102596"]]},{"id":"NCBITaxon:1415755","l":"Halomonas sp. TG39a","na":2,"nb":1,"a":[["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A1415755","Halomonas sp. TG39a"]]},{"id":"NCBITaxon:141693","l":"Nocardiopsis kunsanensis","na":1,"nb":2,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A141693","Nocardiopsis kunsanensis"],["NCBITaxon%3A1246445","Nocardiopsis kunsanensis DSM 44524"]]},{"id":"NCBITaxon:1417985","l":"Bacillus thuringiensis LM1212","na":2,"nb":1,"a":[["carcass-bto-0001965.html","carcass"],["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1417985","Bacillus thuringiensis LM1212"]]},{"id":"NCBITaxon:141949","l":"Thermomonas haemolytica","na":2,"nb":1,"a":[["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A141949","Thermomonas haemolytica"]]},{"id":"NCBITaxon:1421019","l":"Kurthia huakuii","na":1,"nb":2,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A1421019","Kurthia huakuii"],["NCBITaxon%3A1334046","Kurthia huakuii LAM0618"]]},{"id":"NCBITaxon:1423716","l":"Ligilactobacillus acidipiscis DSM 15836","na":1,"nb":2,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A89059","Ligilactobacillus acidipiscis"],["NCBITaxon%3A1423716","Ligilactobacillus acidipiscis DSM 15836"]]},{"id":"NCBITaxon:1423719","l":"Dellaglioa algida DSM 15638","na":1,"nb":2,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["NCBITaxon%3A105612","Dellaglioa algida"],["NCBITaxon%3A1423719","Dellaglioa algida DSM 15638"]]},{"id":"NCBITaxon:1423731","l":"Liquorilactobacillus capillatus DSM 19910","na":1,"nb":2,"a":[["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A480931","Liquorilactobacillus capillatus"],["NCBITaxon%3A1423731","Liquorilactobacillus capillatus DSM 19910"]]},{"id":"NCBITaxon:1423749","l":"Limosilactobacillus gastricus DSM 16045","na":1,"nb":2,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["NCBITaxon%3A227942","Limosilactobacillus gastricus"],["NCBITaxon%3A1423749","Limosilactobacillus gastricus DSM 16045"]]},{"id":"NCBITaxon:1423759","l":"Liquorilactobacillus hordei DSM 19519","na":1,"nb":2,"a":[["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A468911","Liquorilactobacillus hordei"],["NCBITaxon%3A1423759","Liquorilactobacillus hordei DSM 19519"]]},{"id":"NCBITaxon:1423762","l":"Lactobacillus jensenii DSM 20557","na":1,"nb":2,"a":[["vaginal-fluid-uberon-0036243.html","vaginal fluid"]],"b":[["NCBITaxon%3A109790","Lactobacillus jensenii"],["NCBITaxon%3A1423762","Lactobacillus jensenii DSM 20557"]]},{"id":"NCBITaxon:1423763","l":"Lactobacillus kalixensis DSM 16043","na":1,"nb":2,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["NCBITaxon%3A227944","Lactobacillus kalixensis"],["NCBITaxon%3A1423763","Lactobacillus kalixensis DSM 16043"]]},{"id":"NCBITaxon:1423768","l":"Apilactobacillus kunkeei DSM 12361 = ATCC 700308","na":1,"nb":2,"a":[["honey-bto-0000605.html","honey"]],"b":[["NCBITaxon%3A148814","Apilactobacillus kunkeei"],["NCBITaxon%3A1423768","Apilactobacillus kunkeei DSM 12361 = ATCC 700308"]]},{"id":"NCBITaxon:1423789","l":"Lactiplantibacillus paraplantarum DSM 10667","na":1,"nb":2,"a":[["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["NCBITaxon%3A60520","Lactiplantibacillus paraplantarum"],["NCBITaxon%3A1423789","Lactiplantibacillus paraplantarum DSM 10667"]]},{"id":"NCBITaxon:1423796","l":"Loigolactobacillus rennini DSM 20253","na":1,"nb":2,"a":[["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["NCBITaxon%3A238013","Loigolactobacillus rennini"],["NCBITaxon%3A1423796","Loigolactobacillus rennini DSM 20253"]]},{"id":"NCBITaxon:1423808","l":"Lentilactobacillus sunkii DSM 19904","na":1,"nb":2,"a":[["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A481719","Lentilactobacillus sunkii"],["NCBITaxon%3A1423808","Lentilactobacillus sunkii DSM 19904"]]},{"id":"NCBITaxon:1427368","l":"Chlamydia pecorum IPTaLE","na":2,"nb":1,"a":[["conjunctiva-bto-0003415.html","conjunctiva"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A1427368","Chlamydia pecorum IPTaLE"]]},{"id":"NCBITaxon:1427369","l":"Chlamydia pecorum MC/MarsBar","na":2,"nb":1,"a":[["conjunctiva-bto-0003415.html","conjunctiva"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A1427369","Chlamydia pecorum MC/MarsBar"]]},{"id":"NCBITaxon:1427370","l":"Chlamydia pecorum DBDeUG","na":2,"nb":1,"a":[["conjunctiva-bto-0003415.html","conjunctiva"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A1427370","Chlamydia pecorum DBDeUG"]]},{"id":"NCBITaxon:1427371","l":"Chlamydia pecorum VR629","na":2,"nb":1,"a":[["conjunctiva-bto-0003415.html","conjunctiva"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A1427371","Chlamydia pecorum VR629"]]},{"id":"NCBITaxon:1429916","l":"Afipia sp. P52-10","na":2,"nb":1,"a":[["fruit-bto-0000486.html","fruit"],["vero-cell-bto-0001444.html","Vero cell"]],"b":[["NCBITaxon%3A1429916","Afipia sp. P52-10"]]},{"id":"NCBITaxon:1431546","l":"Corynebacterium aquilae DSM 44791","na":1,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A203263","Corynebacterium aquilae"],["NCBITaxon%3A1431546","Corynebacterium aquilae DSM 44791"]]},{"id":"NCBITaxon:1436133","l":"Actinacidiphila bryophytorum","na":1,"nb":2,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A1436133","Actinacidiphila bryophytorum"],["NCBITaxon%3A245294","Chromohalobacter sarecensis"]]},{"id":"NCBITaxon:1436140","l":"Ulnaria acus","na":2,"nb":1,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"]],"b":[["NCBITaxon%3A1436140","Ulnaria acus"]]},{"id":"NCBITaxon:1437605","l":"Bifidobacterium actinocoloniiforme DSM 22766","na":1,"nb":2,"a":[["alimentary-canal-bto-0000058.html","alimentary canal"]],"b":[["NCBITaxon%3A638619","Bifidobacterium actinocoloniiforme"],["NCBITaxon%3A1437605","Bifidobacterium actinocoloniiforme DSM 22766"]]},{"id":"NCBITaxon:1437875","l":"Corynebacterium frankenforstense DSM 45800","na":1,"nb":2,"a":[["reservoir-envo-00000025.html","reservoir"]],"b":[["NCBITaxon%3A1230998","Corynebacterium frankenforstense"],["NCBITaxon%3A1437875","Corynebacterium frankenforstense DSM 45800"]]},{"id":"NCBITaxon:1442586","l":"Winogradskyella wandonensis","na":2,"nb":1,"a":[["intertidal-zone-envo-00000316.html","intertidal zone"],["mudflat-envo-00000192.html","mudflat"]],"b":[["NCBITaxon%3A1442586","Winogradskyella wandonensis"]]},{"id":"NCBITaxon:1443941","l":"Acinetobacter gandensis","na":2,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["NCBITaxon%3A1443941","Acinetobacter gandensis"]]},{"id":"NCBITaxon:1444712","l":"Candidatus Rubidus massiliensis","na":2,"nb":1,"a":[["elementary-body-bto-0000377.html","elementary body"],["reticulate-body-bto-0001172.html","reticulate body"]],"b":[["NCBITaxon%3A1444712","Candidatus Rubidus massiliensis"]]},{"id":"NCBITaxon:144550","l":"Mycolicibacterium fortuitum subsp. acetamidolyticum","na":1,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A1766","Mycolicibacterium fortuitum"],["NCBITaxon%3A144550","Mycolicibacterium fortuitum subsp. acetamidolyticum"]]},{"id":"NCBITaxon:1448136","l":"Roseomonas mucosa ATCC BAA-692","na":1,"nb":2,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A207340","Roseomonas mucosa"],["NCBITaxon%3A1448136","Roseomonas mucosa ATCC BAA-692"]]},{"id":"NCBITaxon:1449336","l":"Carnobacterium divergens DSM 20623","na":1,"nb":2,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["NCBITaxon%3A2748","Carnobacterium divergens"],["NCBITaxon%3A1449336","Carnobacterium divergens DSM 20623"]]},{"id":"NCBITaxon:1449345","l":"Helicobacter rodentium ATCC 700285","na":1,"nb":2,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A59617","Helicobacter rodentium"],["NCBITaxon%3A1449345","Helicobacter rodentium ATCC 700285"]]},{"id":"NCBITaxon:1449352","l":"Streptacidiphilus albus JL83","na":1,"nb":2,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A105425","Streptacidiphilus albus"],["NCBITaxon%3A1449352","Streptacidiphilus albus JL83"]]},{"id":"NCBITaxon:1450","l":"Alicyclobacillus acidoterrestris","na":1,"nb":2,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A1450","Alicyclobacillus acidoterrestris"],["NCBITaxon%3A1356854","Alicyclobacillus acidoterrestris ATCC 49025"]]},{"id":"NCBITaxon:1453497","l":"Kosmotoga arenicorallina S304","na":1,"nb":2,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A688066","Kosmotoga arenicorallina"],["NCBITaxon%3A1453497","Kosmotoga arenicorallina S304"]]},{"id":"NCBITaxon:1455","l":"Pseudobacillus badius","na":1,"nb":2,"a":[["organic-waste-material-envo-00002873.html","organic waste material"]],"b":[["NCBITaxon%3A1348627","Bacillus badius NBRC 15713"],["NCBITaxon%3A1455","Pseudobacillus badius"]]},{"id":"NCBITaxon:1455608","l":"Haladaptatus cibarius D43","na":1,"nb":2,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A453847","Haladaptatus cibarius"],["NCBITaxon%3A1455608","Haladaptatus cibarius D43"]]},{"id":"NCBITaxon:1460882","l":"Microbispora bryophytorum","na":1,"nb":2,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A1460882","Microbispora bryophytorum"],["NCBITaxon%3A1677852","Microbispora bryophytorum subsp. camponoti"]]},{"id":"NCBITaxon:147207","l":"Collinsella intestinalis","na":1,"nb":2,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A147207","Collinsella intestinalis"],["NCBITaxon%3A521003","Collinsella intestinalis DSM 13280"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A1474","Sporosarcina pasteurii"],["NCBITaxon%3A1415631","Sporosarcina pasteurii NCIM 2477"]]},{"id":"NCBITaxon:148219","l":"uncultured Crater Lake bacterium CL500-11","na":2,"nb":1,"a":[["freshwater-lake-envo-00000021.html","freshwater lake"],["freshwater-lake-biome-envo-01000252.html","freshwater lake biome"]],"b":[["NCBITaxon%3A148219","uncultured Crater Lake bacterium CL500-11"]]},{"id":"NCBITaxon:149015","l":"Streptococcus hyovaginalis","na":1,"nb":2,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["NCBITaxon%3A149015","Streptococcus hyovaginalis"],["NCBITaxon%3A1123305","Streptococcus hyovaginalis DSM 12219"]]},{"id":"NCBITaxon:1493","l":"Clostridium cellulovorans","na":1,"nb":2,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"]],"b":[["NCBITaxon%3A1493","Clostridium cellulovorans"],["NCBITaxon%3A573061","Clostridium cellulovorans 743B"]]},{"id":"NCBITaxon:1494","l":"Clostridium cochlearium","na":2,"nb":1,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"]],"b":[["NCBITaxon%3A1494","Clostridium cochlearium"]]},{"id":"NCBITaxon:1497","l":"Andreesenella formicacetica","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A1497","Andreesenella formicacetica"],["NCBITaxon%3A92488","Pantoea endophytica"]]},{"id":"NCBITaxon:1498499","l":"Legionella norrlandica","na":2,"nb":1,"a":[["wood-bto-0005516.html","wood"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"]],"b":[["NCBITaxon%3A1498499","Legionella norrlandica"]]},{"id":"NCBITaxon:150120","l":"Shewanella livingstonensis","na":2,"nb":1,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"]],"b":[["NCBITaxon%3A150120","Shewanella livingstonensis"]]},{"id":"NCBITaxon:1501332","l":"Oribacterium asaccharolyticum","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A1501332","Oribacterium asaccharolyticum"],["NCBITaxon%3A796944","Oribacterium asaccharolyticum ACB7"]]},{"id":"NCBITaxon:150146","l":"Flavobacterium gillisiae","na":2,"nb":1,"a":[["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A150146","Flavobacterium gillisiae"]]},{"id":"NCBITaxon:150172","l":"Flavobacterium tegetincola","na":1,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A150172","Flavobacterium tegetincola"],["NCBITaxon%3A1121901","Flavobacterium tegetincola DSM 22377"]]},{"id":"NCBITaxon:1504","l":"Clostridium septicum","na":2,"nb":1,"a":[["carcass-envo-00002033.html","carcass"],["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["NCBITaxon%3A1504","Clostridium septicum"]]},{"id":"NCBITaxon:1505232","l":"Chitinivibrio alkaliphilus","na":1,"nb":2,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["NCBITaxon%3A1505232","Chitinivibrio alkaliphilus"],["NCBITaxon%3A1313304","Chitinivibrio alkaliphilus ACht1"]]},{"id":"NCBITaxon:1508420","l":"Pseudothermotoga profunda","na":1,"nb":2,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1508420","Pseudothermotoga profunda"],["NCBITaxon%3A1408160","Thermotoga profunda AZM34c06"]]},{"id":"NCBITaxon:1511","l":"Acetoanaerobium sticklandii","na":1,"nb":2,"a":[["animal-house-envo-00003040.html","animal house"]],"b":[["NCBITaxon%3A1511","Acetoanaerobium sticklandii"],["NCBITaxon%3A499177","Acetoanaerobium sticklandii DSM 519"]]},{"id":"NCBITaxon:151276","l":"Bacteroides coprosuis","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A151276","Bacteroides coprosuis"],["NCBITaxon%3A679937","Bacteroides coprosuis DSM 18011"]]},{"id":"NCBITaxon:1513898","l":"Tetragenococcus halophilus subsp. flandriensis","na":1,"nb":2,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A51669","Tetragenococcus halophilus"],["NCBITaxon%3A1513898","Tetragenococcus halophilus subsp. flandriensis"]]},{"id":"NCBITaxon:151783","l":"Cupriavidus campinensis","na":1,"nb":2,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A151783","Cupriavidus campinensis"],["NCBITaxon%3A1706855","Deinococcus malanensis"]]},{"id":"NCBITaxon:152268","l":"Metabacillus litoralis","na":2,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A152268","Metabacillus litoralis"]]},{"id":"NCBITaxon:152297","l":"Pseudoalteromonas issachenkonii","na":1,"nb":2,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A152297","Pseudoalteromonas issachenkonii"],["NCBITaxon%3A1315274","Pseudoalteromonas issachenkonii KMM 3549"]]},{"id":"NCBITaxon:153501","l":"uncultured Methylocystis sp.","na":2,"nb":1,"a":[["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["cultivated-environment-envo-01000311.html","cultivated environment"]],"b":[["NCBITaxon%3A153501","uncultured Methylocystis sp."]]},{"id":"NCBITaxon:1536","l":"Hathewaya limosa","na":1,"nb":2,"a":[["cropland-biome-envo-01000245.html","cropland biome"]],"b":[["NCBITaxon%3A1506","Clostridium sp."],["NCBITaxon%3A1536","Hathewaya limosa"]]},{"id":"NCBITaxon:1538","l":"Clostridium ljungdahlii","na":1,"nb":2,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A1538","Clostridium ljungdahlii"],["NCBITaxon%3A748727","Clostridium ljungdahlii DSM 13528"]]},{"id":"NCBITaxon:154117","l":"Georgenia muralis","na":2,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"],["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A154117","Georgenia muralis"]]},{"id":"NCBITaxon:154288","l":"Turicibacter sanguinis","na":1,"nb":2,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A154288","Turicibacter sanguinis"],["NCBITaxon%3A702450","Turicibacter sanguinis PC909"]]},{"id":"NCBITaxon:1543","l":"Clostridium oceanicum","na":2,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"]],"b":[["NCBITaxon%3A1543","Clostridium oceanicum"]]},{"id":"NCBITaxon:1549639","l":"Rufibacter quisquiliarum","na":2,"nb":1,"a":[["leachate-envo-00002141.html","leachate"],["landfill-envo-00000533.html","landfill"]],"b":[["NCBITaxon%3A1549639","Rufibacter quisquiliarum"]]},{"id":"NCBITaxon:155077","l":"Cellvibrio japonicus","na":1,"nb":2,"a":[["compost-envo-00002170.html","compost"]],"b":[["NCBITaxon%3A155077","Cellvibrio japonicus"],["NCBITaxon%3A498211","Cellvibrio japonicus Ueda107"]]},{"id":"NCBITaxon:1552750","l":"Zoogloea oleivorans","na":2,"nb":1,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A1552750","Zoogloea oleivorans"]]},{"id":"NCBITaxon:155866","l":"Weissella soli","na":2,"nb":1,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A155866","Weissella soli"]]},{"id":"NCBITaxon:1560005","l":"Edaphobacter dinghuensis","na":2,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A1560005","Edaphobacter dinghuensis"]]},{"id":"NCBITaxon:1561","l":"Clostridium baratii","na":1,"nb":2,"a":[["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["NCBITaxon%3A1561","Clostridium baratii"],["NCBITaxon%3A1415775","Clostridium baratii str. Sullivan"]]},{"id":"NCBITaxon:156202","l":"Petrotoga sibirica","na":1,"nb":2,"a":[["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A156202","Petrotoga sibirica"],["NCBITaxon%3A1122956","Petrotoga sibirica DSM 13575"]]},{"id":"NCBITaxon:156203","l":"Petrotoga olearia","na":1,"nb":2,"a":[["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A156203","Petrotoga olearia"],["NCBITaxon%3A1122955","Petrotoga olearia DSM 13574"]]},{"id":"NCBITaxon:1566","l":"Desulfofundulus australicus","na":1,"nb":2,"a":[["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1566","Desulfofundulus australicus"],["NCBITaxon%3A1121425","Desulfofundulus australicus DSM 11792"]]},{"id":"NCBITaxon:156979","l":"Pseudoglutamicibacter cumminsii","na":1,"nb":2,"a":[["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A156979","Pseudoglutamicibacter cumminsii"],["NCBITaxon%3A1255707","Pseudoglutamicibacter cumminsii ws2216"]]},{"id":"NCBITaxon:156980","l":"Arthrobacter woluwensis","na":1,"nb":2,"a":[["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["NCBITaxon%3A156980","Arthrobacter woluwensis"],["NCBITaxon%3A1216974","Arthrobacter woluwensis NBRC 107840"]]},{"id":"NCBITaxon:157465","l":"Nocardiopsis composta","na":2,"nb":1,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A157465","Nocardiopsis composta"]]},{"id":"NCBITaxon:157732","l":"Rhodococcus sp. NCIMB 9784","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A157732","Rhodococcus sp. NCIMB 9784"]]},{"id":"NCBITaxon:1578720","l":"Helicobacter ailurogastricus","na":2,"nb":1,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["mycosis-habitatmech-bacdive-6d5784a4c5.html","Mycosis"]],"b":[["NCBITaxon%3A1578720","Helicobacter ailurogastricus"]]},{"id":"NCBITaxon:158627","l":"Pseudomonas graminis","na":2,"nb":1,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"],["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"]],"b":[["NCBITaxon%3A158627","Pseudomonas graminis"]]},{"id":"NCBITaxon:159254","l":"","na":2,"nb":1,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A159254","Parachlamydia acanthamoebae str. Hall's coccus"]]},{"id":"NCBITaxon:1592728","l":"Haloarcula sp. CBA1115","na":1,"nb":2,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A44098","Haloarcula sp."],["NCBITaxon%3A1592728","Haloarcula sp. CBA1115"]]},{"id":"NCBITaxon:159346","l":"Roseicyclus elongatus","na":1,"nb":2,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A159346","Roseicyclus elongatus"],["NCBITaxon%3A1294273","Roseicyclus elongatus DSM 19469"]]},{"id":"NCBITaxon:1594731","l":"Candidatus Westeberhardia cardiocondylae","na":2,"nb":1,"a":[["nurse-cell-bto-0000953.html","nurse cell"],["oocyte-bto-0000964.html","oocyte"]],"b":[["NCBITaxon%3A1594731","Candidatus Westeberhardia cardiocondylae"]]},{"id":"NCBITaxon:159728","l":"Desulfovibrio cuneatus","na":1,"nb":2,"a":[["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["NCBITaxon%3A159728","Desulfovibrio cuneatus"],["NCBITaxon%3A1121443","Desulfovibrio cuneatus DSM 11391"]]},{"id":"NCBITaxon:160488","l":"Pseudomonas putida (strain ATCC 47054 / DSM 6125 / CFBP 8728 / NCIMB 11950 / KT2440)","na":1,"nb":2,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A303","Pseudomonas putida"],["NCBITaxon%3A160488","Pseudomonas putida KT2440"]]},{"id":"NCBITaxon:1607837","l":"Leuconostoc gelidum subsp. aenigmaticum","na":1,"nb":2,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["NCBITaxon%3A1244","Leuconostoc gelidum"],["NCBITaxon%3A1607837","Leuconostoc gelidum subsp. aenigmaticum"]]},{"id":"NCBITaxon:161360","l":"Planococcus antarcticus","na":1,"nb":2,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A161360","Planococcus antarcticus"],["NCBITaxon%3A1185653","Planococcus antarcticus DSM 14505"]]},{"id":"NCBITaxon:1615","l":"Weissella halotolerans","na":1,"nb":2,"a":[["research-facility-envo-00000469.html","research facility"]],"b":[["NCBITaxon%3A1615","Weissella halotolerans"],["NCBITaxon%3A1123500","Weissella halotolerans DSM 20190"]]},{"id":"NCBITaxon:161895","l":"Corynebacterium phocae","na":1,"nb":2,"a":[["nasal-cavity-bto-0002096.html","nasal cavity"]],"b":[["NCBITaxon%3A131112","Arcanobacterium phocae"],["NCBITaxon%3A161895","Corynebacterium phocae"]]},{"id":"NCBITaxon:162209","l":"Paenibacillus naphthalenovorans","na":2,"nb":1,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["surface-water-envo-00002042.html","surface water"]],"b":[["NCBITaxon%3A162209","Paenibacillus naphthalenovorans"]]},{"id":"NCBITaxon:163908","l":"Anabaena sp. PCC 7108","na":2,"nb":1,"a":[["beach-envo-00000091.html","beach"],["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["NCBITaxon%3A163908","Anabaena sp. PCC 7108"]]},{"id":"NCBITaxon:164330","l":"Thauera aminoaromatica","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A164330","Thauera aminoaromatica"],["NCBITaxon%3A1234381","Thauera aminoaromatica S2"]]},{"id":"NCBITaxon:164400","l":"Thauera phenylacetica","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A164400","Thauera phenylacetica"],["NCBITaxon%3A1234382","Thauera phenylacetica B4P"]]},{"id":"NCBITaxon:1645614","l":"Psychromicrobium silvestre","na":2,"nb":1,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"],["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A1645614","Psychromicrobium silvestre"]]},{"id":"NCBITaxon:1646377","l":"Rouxiella badensis","na":1,"nb":2,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A1646377","Rouxiella badensis"],["NCBITaxon%3A3041084","Rouxiella badensis subsp. acadiensis"]]},{"id":"NCBITaxon:1646498","l":"Acinetobacter sp. TTH0-4","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A472","Acinetobacter sp."],["NCBITaxon%3A1646498","Acinetobacter sp. TTH0-4"]]},{"id":"NCBITaxon:164756","l":"Mycobacterium sp. MCS","na":2,"nb":1,"a":[["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A164756","Mycobacterium sp. MCS"]]},{"id":"NCBITaxon:1653064","l":"Halanaerobium sp. DL-01","na":2,"nb":1,"a":[["ocean-trench-envo-00000275.html","ocean trench"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A1653064","Halanaerobium sp. DL-01"]]},{"id":"NCBITaxon:166","l":"Treponema sp.","na":2,"nb":1,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A166","Treponema sp."]]},{"id":"NCBITaxon:167879","l":"Colwellia psychrerythraea 34H","na":2,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A167879","Colwellia psychrerythraea 34H"]]},{"id":"NCBITaxon:168384","l":"Marvinbryantia formatexigens","na":1,"nb":2,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A168384","Marvinbryantia formatexigens"],["NCBITaxon%3A478749","Marvinbryantia formatexigens DSM 14469"]]},{"id":"NCBITaxon:168685","l":"Rhizobium sp. AC100","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A168685","Rhizobium sp. AC100"]]},{"id":"NCBITaxon:1691979","l":"Chitinophagaceae bacterium PMP191F","na":1,"nb":2,"a":[["peritoneum-bto-0001472.html","peritoneum"]],"b":[["NCBITaxon%3A1691979","Chitinophagaceae bacterium PMP191F"],["NCBITaxon%3A2100819","Pseudoflavitalea muciniphila"]]},{"id":"NCBITaxon:169292","l":"Corynebacterium aurimucosum","na":1,"nb":2,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A169292","Corynebacterium aurimucosum"],["NCBITaxon%3A548476","Corynebacterium aurimucosum ATCC 700975"]]},{"id":"NCBITaxon:1697787","l":"Clostridia bacterium UC5.1-1D10","na":2,"nb":1,"a":[["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697787","Clostridia bacterium UC5.1-1D10"]]},{"id":"NCBITaxon:1697788","l":"Clostridia bacterium UC5.1-2H6","na":2,"nb":1,"a":[["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697788","Clostridia bacterium UC5.1-2H6"]]},{"id":"NCBITaxon:1697789","l":"Clostridia bacterium UC5.1-1E3","na":2,"nb":1,"a":[["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697789","Clostridia bacterium UC5.1-1E3"]]},{"id":"NCBITaxon:1697790","l":"Clostridia bacterium UC5.1-1C12","na":2,"nb":1,"a":[["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697790","Clostridia bacterium UC5.1-1C12"]]},{"id":"NCBITaxon:1697791","l":"Clostridia bacterium UC5.1-2G4","na":2,"nb":1,"a":[["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697791","Clostridia bacterium UC5.1-2G4"]]},{"id":"NCBITaxon:1697792","l":"Clostridia bacterium UC5.1-2F7","na":2,"nb":1,"a":[["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697792","Clostridia bacterium UC5.1-2F7"]]},{"id":"NCBITaxon:1697793","l":"Clostridia bacterium UC5.1-1E11","na":2,"nb":1,"a":[["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697793","Clostridia bacterium UC5.1-1E11"]]},{"id":"NCBITaxon:1697794","l":"Clostridia bacterium UC5.1-1D1","na":2,"nb":1,"a":[["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697794","Clostridia bacterium UC5.1-1D1"]]},{"id":"NCBITaxon:1697795","l":"Clostridia bacterium UC5.1-2H11","na":2,"nb":1,"a":[["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697795","Clostridia bacterium UC5.1-2H11"]]},{"id":"NCBITaxon:1697796","l":"Bacteroidia bacterium UC5.1-2G11","na":2,"nb":1,"a":[["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697796","Bacteroidia bacterium UC5.1-2G11"]]},{"id":"NCBITaxon:170673","l":"Vibrio kanaloae","na":1,"nb":2,"a":[["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["NCBITaxon%3A170673","Vibrio kanaloae"],["NCBITaxon%3A1191299","Vibrio kanaloae 5S-149"]]},{"id":"NCBITaxon:170994","l":"Brevibacterium paucivorans","na":1,"nb":2,"a":[["catheter-device-ncit-c50344.html","Catheter Device"]],"b":[["NCBITaxon%3A53363","Brevibacterium mcbrellneri"],["NCBITaxon%3A170994","Brevibacterium paucivorans"]]},{"id":"NCBITaxon:1712031","l":"Streptobacillus notomytis","na":1,"nb":2,"a":[["heart-bto-0000562.html","heart"]],"b":[["NCBITaxon%3A34105","Streptobacillus moniliformis"],["NCBITaxon%3A1712031","Streptobacillus notomytis"]]},{"id":"NCBITaxon:1712665","l":"Agathobacter ruminis","na":2,"nb":1,"a":[["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"],["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A1712665","Agathobacter ruminis"]]},{"id":"NCBITaxon:171401","l":"Paenibacillus agarexedens","na":2,"nb":1,"a":[["forested-area-envo-00000111.html","forested area"],["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A171401","Paenibacillus agarexedens"]]},{"id":"NCBITaxon:172044","l":"Sphingomonas yabuuchiae","na":1,"nb":2,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A172044","Sphingomonas yabuuchiae"],["NCBITaxon%3A1508805","Sphingorhabdus buctiana"]]},{"id":"NCBITaxon:173363","l":"Brachybacterium fresconis","na":1,"nb":2,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A173363","Brachybacterium fresconis"],["NCBITaxon%3A2675430","Ottowia flava"]]},{"id":"NCBITaxon:173861","l":"Streptomyces stramineus","na":1,"nb":2,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A68182","Streptomyces capillispiralis"],["NCBITaxon%3A173861","Streptomyces stramineus"]]},{"id":"NCBITaxon:174587","l":"Carnobacterium viridans","na":2,"nb":1,"a":[["food-product-foodon-00001002.html","food product"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["NCBITaxon%3A174587","Carnobacterium viridans"]]},{"id":"NCBITaxon:177437","l":"Desulforapulum autotrophicum HRM2","na":1,"nb":2,"a":[["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["NCBITaxon%3A2296","Desulforapulum autotrophicum"],["NCBITaxon%3A177437","Desulforapulum autotrophicum HRM2"]]},{"id":"NCBITaxon:1774373","l":"Alteromonas mediterranea DE","na":1,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["NCBITaxon%3A314275","Alteromonas mediterranea"],["NCBITaxon%3A1774373","Alteromonas mediterranea DE"]]},{"id":"NCBITaxon:178306","l":"Pyrobaculum aerophilum (strain ATCC 51768 / DSM 7523 / JCM 9630 / CIP 104966 / NBRC 100827 / IM2)","na":1,"nb":2,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A13773","Pyrobaculum aerophilum"],["NCBITaxon%3A178306","Pyrobaculum aerophilum str. IM2"]]},{"id":"NCBITaxon:1798184","l":"Sarcina sp. DSM 11001","na":1,"nb":2,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A1798184","Sarcina sp. DSM 11001"]]},{"id":"NCBITaxon:1798213","l":"Pseudovibrio sp. Tun.PSC04-5.I4","na":2,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A1798213","Pseudovibrio sp. Tun.PSC04-5.I4"]]},{"id":"NCBITaxon:179878","l":"Sphingomonas elodea","na":1,"nb":2,"a":[["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A179878","Sphingomonas elodea"],["NCBITaxon%3A1081640","Sphingomonas elodea ATCC 31461"]]},{"id":"NCBITaxon:1799529","l":"Leptospira sp. ZV016","na":2,"nb":1,"a":[["kidney-bto-0000671.html","kidney"],["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1799529","Leptospira sp. ZV016"]]},{"id":"NCBITaxon:180441","l":"Flavobacterium limicola","na":1,"nb":2,"a":[["watercourse-envo-00000029.html","watercourse"]],"b":[["NCBITaxon%3A180441","Flavobacterium limicola"],["NCBITaxon%3A182264","Sporotomaculum syntrophicum"]]},{"id":"NCBITaxon:181487","l":"Schaalia cardiffensis","na":1,"nb":2,"a":[["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"]],"b":[["NCBITaxon%3A181487","Schaalia cardiffensis"],["NCBITaxon%3A888050","Schaalia cardiffensis F0333"]]},{"id":"NCBITaxon:1848","l":"Pseudonocardia thermophila","na":1,"nb":2,"a":[["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["NCBITaxon%3A1848","Pseudonocardia thermophila"],["NCBITaxon%3A1123026","Pseudonocardia thermophila DSM 43832"]]},{"id":"NCBITaxon:185007","l":"Pseudobutyrivibrio xylanivorans","na":1,"nb":2,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"]],"b":[["NCBITaxon%3A185007","Pseudobutyrivibrio xylanivorans"],["NCBITaxon%3A1123012","Pseudobutyrivibrio xylanivorans DSM 14809"]]},{"id":"NCBITaxon:1851395","l":"Actinomyces sp. Chiba101","na":2,"nb":1,"a":[["dental-plaque-bto-0000338.html","dental plaque"],["submandibular-lymph-node-bto-0000769.html","submandibular lymph node"]],"b":[["NCBITaxon%3A1851395","Actinomyces sp. Chiba101"]]},{"id":"NCBITaxon:1855377","l":"Candidatus Aquiluna sp. UB-MaderosW2red","na":1,"nb":2,"a":[["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A2053504","Aquiluna sp."],["NCBITaxon%3A1855377","Candidatus Aquiluna sp. UB-MaderosW2red"]]},{"id":"NCBITaxon:185761","l":"Corynebacterium spheniscorum","na":2,"nb":1,"a":[["alimentary-canal-bto-0000058.html","alimentary canal"],["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A185761","Corynebacterium spheniscorum"]]},{"id":"NCBITaxon:185949","l":"Sphingomonas aurantiaca","na":2,"nb":1,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A185949","Sphingomonas aurantiaca"]]},{"id":"NCBITaxon:186497","l":"Pyrococcus furiosus (strain ATCC 43587 / DSM 3638 / JCM 8422 / Vc1)","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A2261","Pyrococcus furiosus"],["NCBITaxon%3A186497","Pyrococcus furiosus DSM 3638"]]},{"id":"NCBITaxon:1867252","l":"Borrelia hermsii HS1","na":1,"nb":2,"a":[["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A140","Borrelia hermsii"],["NCBITaxon%3A1867252","Borrelia hermsii HS1"]]},{"id":"NCBITaxon:186741","l":"uncultured Geobacter sp.","na":2,"nb":1,"a":[["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["cultivated-environment-envo-01000311.html","cultivated environment"]],"b":[["NCBITaxon%3A186741","uncultured Geobacter sp."]]},{"id":"NCBITaxon:1868325","l":"Prosthecochloris sp. CIB 2401","na":1,"nb":2,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A1844006","Phaeobacter porticola"],["NCBITaxon%3A1868325","Prosthecochloris sp. CIB 2401"]]},{"id":"NCBITaxon:1868734","l":"Aeribacillus composti","na":2,"nb":1,"a":[["compost-envo-00002170.html","compost"],["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A1868734","Aeribacillus composti"]]},{"id":"NCBITaxon:1871044","l":"Clavibacter sp.","na":2,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"]],"b":[["NCBITaxon%3A1871044","Clavibacter sp."]]},{"id":"NCBITaxon:1871616","l":"Dietzia sp.","na":2,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"]],"b":[["NCBITaxon%3A1871616","Dietzia sp."]]},{"id":"NCBITaxon:1872086","l":"Ensifer sp.","na":2,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["NCBITaxon%3A1872086","Ensifer sp."]]},{"id":"NCBITaxon:1872654","l":"Aurantimonas sp.","na":1,"nb":2,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1872654","Aurantimonas sp."],["NCBITaxon%3A570951","Aurantimonas sp. YIM J01"]]},{"id":"NCBITaxon:1873466","l":"Modestobacter sp.","na":2,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["NCBITaxon%3A1873466","Modestobacter sp."]]},{"id":"NCBITaxon:1873897","l":"Cupriavidus sp.","na":2,"nb":1,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A1873897","Cupriavidus sp."]]},{"id":"NCBITaxon:187452","l":"Pediococcus claussenii","na":1,"nb":2,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["NCBITaxon%3A187452","Pediococcus claussenii"],["NCBITaxon%3A701521","Pediococcus claussenii ATCC BAA-344"]]},{"id":"NCBITaxon:1898027","l":"Ornithinibacillus sp.","na":2,"nb":1,"a":[["saline-water-body-envo-01001319.html","saline water body"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["NCBITaxon%3A1898027","Ornithinibacillus sp."]]},{"id":"NCBITaxon:189918","l":"Mycobacterium sp. KMS","na":2,"nb":1,"a":[["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"],["mountain-pass-envo-00000084.html","mountain pass"]],"b":[["NCBITaxon%3A189918","Mycobacterium sp. KMS"]]},{"id":"NCBITaxon:1904","l":"Streptomyces cyaneus","na":1,"nb":2,"a":[["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A146537","Streptomyces azureus"],["NCBITaxon%3A1904","Streptomyces cyaneus"]]},{"id":"NCBITaxon:1904441","l":"Paracoccaceae bacterium","na":1,"nb":2,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2301217","Marinibacterium anthonyi"],["NCBITaxon%3A1904441","Paracoccaceae bacterium"]]},{"id":"NCBITaxon:191535","l":"Flavobacterium sp. BH12.12","na":2,"nb":1,"a":[["marine-benthic-feature-envo-01000105.html","marine benthic feature"],["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A191535","Flavobacterium sp. BH12.12"]]},{"id":"NCBITaxon:192066","l":"Neisseria sp.","na":2,"nb":1,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A192066","Neisseria sp."]]},{"id":"NCBITaxon:1926495","l":"Paraburkholderia sp.","na":2,"nb":1,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"],["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A1926495","Paraburkholderia sp."]]},{"id":"NCBITaxon:1932","l":"Streptomyces tendae","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A1932","Streptomyces tendae"]]},{"id":"NCBITaxon:1935001","l":"Pseudomonas sp. JdFR-92","na":2,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["basalt-envo-01000236.html","basalt"]],"b":[["NCBITaxon%3A1935001","Pseudomonas sp. JdFR-92"]]},{"id":"NCBITaxon:1937692","l":"Lacinutrix sp.","na":2,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A1937692","Lacinutrix sp."]]},{"id":"NCBITaxon:1938889","l":"Agreia sp. VKM Ac-1783","na":2,"nb":1,"a":[["plant-gall-po-0025626.html","plant gall"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["NCBITaxon%3A1938889","Agreia sp. VKM Ac-1783"]]},{"id":"NCBITaxon:194373","l":"uncultured Hyphomicrobium sp.","na":2,"nb":1,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["NCBITaxon%3A194373","uncultured Hyphomicrobium sp."]]},{"id":"NCBITaxon:195105","l":"Haematobacter massiliensis","na":2,"nb":1,"a":[["protist-associated-environment-habitatmech-gold-eee7408afd.html","protist-associated environment"],["simulated-communities-habitatmech-bacdive-5fa4710934.html","Simulated-communities"]],"b":[["NCBITaxon%3A195105","Haematobacter massiliensis"]]},{"id":"NCBITaxon:195522","l":"Thermococcus nautili","na":2,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["finger-bto-0004669.html","finger"]],"b":[["NCBITaxon%3A195522","Thermococcus nautili"]]},{"id":"NCBITaxon:1958950","l":"Pseudomonas floridensis","na":2,"nb":1,"a":[["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"]],"b":[["NCBITaxon%3A1958950","Pseudomonas floridensis"]]},{"id":"NCBITaxon:195907","l":"Gillisia limnaea","na":1,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A195907","Gillisia limnaea"],["NCBITaxon%3A865937","Gillisia limnaea DSM 15749"]]},{"id":"NCBITaxon:1962667","l":"Nannocystis sp.","na":2,"nb":1,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["wood-bto-0005516.html","wood"]],"b":[["NCBITaxon%3A1962667","Nannocystis sp."]]},{"id":"NCBITaxon:1965234","l":"Ureaplasma sp.","na":2,"nb":1,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A1965234","Ureaplasma sp."]]},{"id":"NCBITaxon:198437","l":"uncultured Gordonia sp.","na":2,"nb":1,"a":[["foam-habitatmech-bacdive-df2f59b773.html","Foam"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["NCBITaxon%3A198437","uncultured Gordonia sp."]]},{"id":"NCBITaxon:199591","l":"Brevibacterium luteolum","na":1,"nb":2,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["NCBITaxon%3A199591","Brevibacterium luteolum"],["NCBITaxon%3A1401069","Brevibacterium luteolum DNF00447"]]},{"id":"NCBITaxon:200125","l":"Nitrosomonas sp. Nm86","na":2,"nb":1,"a":[["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["cultivated-environment-envo-01000311.html","cultivated environment"]],"b":[["NCBITaxon%3A200125","Nitrosomonas sp. Nm86"]]},{"id":"NCBITaxon:200617","l":"Rhodopseudomonas julia","na":2,"nb":1,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"]],"b":[["NCBITaxon%3A200617","Rhodopseudomonas julia"]]},{"id":"NCBITaxon:2014887","l":"Herbaspirillum robiniae","na":2,"nb":1,"a":[["seedling-bto-0001228.html","seedling"],["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A2014887","Herbaspirillum robiniae"]]},{"id":"NCBITaxon:2024","l":"Thermoactinomyces intermedius","na":1,"nb":2,"a":[["air-conditioning-unit-envo-00002874.html","air conditioning unit"]],"b":[["NCBITaxon%3A46173","Nonomuraea fastidiosa"],["NCBITaxon%3A2024","Thermoactinomyces intermedius"]]},{"id":"NCBITaxon:2024826","l":"Blastopirellula sp.","na":2,"nb":1,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["NCBITaxon%3A2024826","Blastopirellula sp."]]},{"id":"NCBITaxon:2024855","l":"Rhodopirellula sp.","na":1,"nb":2,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A1263866","Rhodopirellula europaea"],["NCBITaxon%3A2024855","Rhodopirellula sp."]]},{"id":"NCBITaxon:203","l":"Campylobacter rectus","na":1,"nb":2,"a":[["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A203","Campylobacter rectus"],["NCBITaxon%3A553218","Campylobacter rectus RM3267"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus ATCC 27405","na":1,"nb":2,"a":[["blood-plasma-bto-0000131.html","blood plasma"]],"b":[["NCBITaxon%3A1515","Acetivibrio thermocellus"],["NCBITaxon%3A203119","Acetivibrio thermocellus ATCC 27405"]]},{"id":"NCBITaxon:203264","l":"Corynebacterium suicordis","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A203264","Corynebacterium suicordis"],["NCBITaxon%3A1121369","Corynebacterium suicordis DSM 45110"]]},{"id":"NCBITaxon:2036","l":"Curtobacterium citreum","na":1,"nb":2,"a":[["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["NCBITaxon%3A2036","Curtobacterium citreum"],["NCBITaxon%3A221278","Curtobacterium citreum pv. basellae"]]},{"id":"NCBITaxon:203907","l":"Candidatus Blochmanniella floridana","na":2,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"],["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A203907","Candidatus Blochmanniella floridana"]]},{"id":"NCBITaxon:2040280","l":"Marmoricola endophyticus","na":2,"nb":1,"a":[["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A2040280","Marmoricola endophyticus"]]},{"id":"NCBITaxon:2042057","l":"Pectobacterium polaris","na":2,"nb":1,"a":[["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["root-or-stem-rot-environment-habitatmech-bacdive-04ddbbeabe.html","root-or-stem rot environment"]],"b":[["NCBITaxon%3A2042057","Pectobacterium polaris"]]},{"id":"NCBITaxon:2044847","l":"Streptomyces roietensis","na":2,"nb":1,"a":[["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A2044847","Streptomyces roietensis"]]},{"id":"NCBITaxon:2045","l":"Nocardioides simplex","na":2,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A2045","Pimelobacter simplex"]]},{"id":"NCBITaxon:204536","l":"Sulfurihydrogenibium azorense Az-Fu1","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A309806","Sulfurihydrogenibium azorense"],["NCBITaxon%3A204536","Sulfurihydrogenibium azorense Az-Fu1"]]},{"id":"NCBITaxon:204669","l":"Candidatus Koribacter versatilis Ellin345","na":2,"nb":1,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"],["pasture-envo-00000266.html","pasture"]],"b":[["NCBITaxon%3A204669","Candidatus Koribacter versatilis Ellin345"]]},{"id":"NCBITaxon:205844","l":"Novosphingobium pentaromativorans","na":1,"nb":2,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A205844","Novosphingobium pentaromativorans"],["NCBITaxon%3A1088721","Novosphingobium pentaromativorans US6-1"]]},{"id":"NCBITaxon:207559","l":"Oleidesulfovibrio alaskensis (strain ATCC BAA-1058 / DSM 17464 / G20)","na":1,"nb":2,"a":[["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A58180","Oleidesulfovibrio alaskensis"],["NCBITaxon%3A207559","Oleidesulfovibrio alaskensis G20"]]},{"id":"NCBITaxon:2081794","l":"Mannheimia sp.","na":2,"nb":1,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"]],"b":[["NCBITaxon%3A2081794","Mannheimia sp."]]},{"id":"NCBITaxon:208304","l":"Thermoanaerobacterium bryantii","na":2,"nb":1,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["NCBITaxon%3A208304","Thermoanaerobacterium bryantii"]]},{"id":"NCBITaxon:211460","l":"Afipia massiliensis","na":1,"nb":2,"a":[["drinking-water-envo-00003064.html","drinking water"]],"b":[["NCBITaxon%3A211460","Afipia massiliensis"],["NCBITaxon%3A1211024","Afipia massiliensis 34633"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A70863","Shewanella oneidensis"],["NCBITaxon%3A211586","Shewanella oneidensis MR-1"]]},{"id":"NCBITaxon:211669","l":"Psychromonas hadalis","na":1,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A211669","Psychromonas hadalis"],["NCBITaxon%3A1278302","Psychromonas hadalis ATCC BAA-638"]]},{"id":"NCBITaxon:212050","l":"Fervidobacterium sp. YNP","na":2,"nb":1,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A212050","Fervidobacterium sp. YNP"]]},{"id":"NCBITaxon:212218","l":"uncultured Neochlamydia sp.","na":2,"nb":1,"a":[["endosymbiont-habitatmech-bacdive-7d840c7ddc.html","Endosymbiont"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A212218","uncultured Neochlamydia sp."]]},{"id":"NCBITaxon:213071","l":"Nocardioides sp. SP12","na":2,"nb":1,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A213071","Nocardioides sp. SP12"]]},{"id":"NCBITaxon:213224","l":"Geothermobacter ehrlichii","na":2,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A213224","Geothermobacter ehrlichii"]]},{"id":"NCBITaxon:214092","l":"Yersinia pestis CO92","na":2,"nb":1,"a":[["alimentary-canal-bto-0000058.html","alimentary canal"],["blood-plasma-bto-0000131.html","blood plasma"]],"b":[["NCBITaxon%3A214092","Yersinia pestis CO92"]]},{"id":"NCBITaxon:214473","l":"Staphylococcus nepalensis","na":1,"nb":2,"a":[["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["NCBITaxon%3A214473","Staphylococcus nepalensis"],["NCBITaxon%3A1288","Staphylococcus xylosus"]]},{"id":"NCBITaxon:2148","l":"Acholeplasma laidlawii","na":1,"nb":2,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A2148","Acholeplasma laidlawii"],["NCBITaxon%3A441768","Acholeplasma laidlawii PG-8A"]]},{"id":"NCBITaxon:216591","l":"Burkholderia cenocepacia J2315","na":1,"nb":2,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A95486","Burkholderia cenocepacia"],["NCBITaxon%3A216591","Burkholderia cenocepacia J2315"]]},{"id":"NCBITaxon:216773","l":"Corethron hystrix","na":2,"nb":1,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"],["saline-water-envo-00002010.html","saline water"]],"b":[["NCBITaxon%3A216773","Corethron hystrix"]]},{"id":"NCBITaxon:216937","l":"Spiroplasma floricola","na":1,"nb":2,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["NCBITaxon%3A216937","Spiroplasma floricola"],["NCBITaxon%3A1336749","Spiroplasma floricola 23-6"]]},{"id":"NCBITaxon:217","l":"Helicobacter mustelae","na":1,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A217","Helicobacter mustelae"],["NCBITaxon%3A679897","Helicobacter mustelae 12198"]]},{"id":"NCBITaxon:217068","l":"Ancylobacter tetraedralis","na":1,"nb":2,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A217069","Ancylobacter amanitiformis"],["NCBITaxon%3A217068","Ancylobacter tetraedralis"]]},{"id":"NCBITaxon:217204","l":"Achromobacter insolitus","na":1,"nb":2,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"]],"b":[["NCBITaxon%3A32002","Achromobacter denitrificans"],["NCBITaxon%3A217204","Achromobacter insolitus"]]},{"id":"NCBITaxon:218208","l":"Desulfatibacillum aliphaticivorans","na":1,"nb":2,"a":[["watercourse-envo-00000029.html","watercourse"]],"b":[["NCBITaxon%3A218208","Desulfatibacillum aliphaticivorans"],["NCBITaxon%3A1121392","Desulfatibacillum aliphaticivorans DSM 15576"]]},{"id":"NCBITaxon:2182385","l":"Brachybacterium endophyticum","na":2,"nb":1,"a":[["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A2182385","Brachybacterium endophyticum"]]},{"id":"NCBITaxon:2183913","l":"Halanaerobium sp. MA284_MarDTE_T2","na":2,"nb":1,"a":[["ocean-trench-envo-00000275.html","ocean trench"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A2183913","Halanaerobium sp. MA284_MarDTE_T2"]]},{"id":"NCBITaxon:2183914","l":"Halanaerobium sp. ST460_2HS_T2","na":2,"nb":1,"a":[["ocean-trench-envo-00000275.html","ocean trench"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A2183914","Halanaerobium sp. ST460_2HS_T2"]]},{"id":"NCBITaxon:2183985","l":"Halomonas sp. A11-A","na":2,"nb":1,"a":[["ocean-trench-envo-00000275.html","ocean trench"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A2183985","Halomonas sp. A11-A"]]},{"id":"NCBITaxon:2203","l":"Methanospirillum hungatei","na":1,"nb":2,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"]],"b":[["NCBITaxon%3A2203","Methanospirillum hungatei"],["NCBITaxon%3A323259","Methanospirillum hungatei JF-1"]]},{"id":"NCBITaxon:2223","l":"Methanothrix soehngenii","na":1,"nb":2,"a":[["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["NCBITaxon%3A2223","Methanothrix soehngenii"],["NCBITaxon%3A990316","Methanothrix soehngenii GP6"]]},{"id":"NCBITaxon:224438","l":"Marichromatium indicum","na":2,"nb":1,"a":[["small-river-biome-envo-00000890.html","small river biome"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["NCBITaxon%3A224438","Marichromatium indicum"]]},{"id":"NCBITaxon:225324","l":"Enhydrobacter aerosaccus","na":1,"nb":2,"a":[["nectar-bto-0000537.html","nectar"]],"b":[["NCBITaxon%3A225324","Enhydrobacter aerosaccus"],["NCBITaxon%3A553217","Enhydrobacter aerosaccus SK60"]]},{"id":"NCBITaxon:225345","l":"Clostridium chromiireducens","na":2,"nb":1,"a":[["marsh-envo-00000035.html","marsh"],["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A225345","Clostridium chromiireducens"]]},{"id":"NCBITaxon:225849","l":"Shewanella piezotolerans WP3","na":1,"nb":2,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["NCBITaxon%3A404011","Shewanella piezotolerans"],["NCBITaxon%3A225849","Shewanella piezotolerans WP3"]]},{"id":"NCBITaxon:225937","l":"Marinobacter adhaerens HP15","na":1,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["NCBITaxon%3A1033846","Marinobacter adhaerens"],["NCBITaxon%3A225937","Marinobacter adhaerens HP15"]]},{"id":"NCBITaxon:226185","l":"Enterococcus faecalis (strain ATCC 700802 / V583)","na":1,"nb":2,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A226185","Enterococcus faecalis V583"]]},{"id":"NCBITaxon:226186","l":"Bacteroides thetaiotaomicron (strain ATCC 29148 / DSM 2079 / JCM 5827 / CCUG 10774 / NCTC 10582 / VPI-5482 / E50)","na":1,"nb":2,"a":[["gut-epithelium-bto-0000956.html","gut epithelium"]],"b":[["NCBITaxon%3A818","Bacteroides thetaiotaomicron"],["NCBITaxon%3A226186","Bacteroides thetaiotaomicron VPI-5482"]]},{"id":"NCBITaxon:226504","l":"Algoriphagus mannitolivorans","na":1,"nb":2,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A226504","Algoriphagus mannitolivorans"],["NCBITaxon%3A1120965","Algoriphagus mannitolivorans DSM 15301"]]},{"id":"NCBITaxon:226505","l":"Algoriphagus halophilus","na":2,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"],["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["NCBITaxon%3A226505","Algoriphagus halophilus"]]},{"id":"NCBITaxon:226506","l":"Algoriphagus ornithinivorans","na":2,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"],["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["NCBITaxon%3A226506","Algoriphagus ornithinivorans"]]},{"id":"NCBITaxon:227882","l":"","na":1,"nb":2,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A33903","Streptomyces avermitilis"],["NCBITaxon%3A227882","Streptomyces avermitilis MA-4680 = NBRC 14893"]]},{"id":"NCBITaxon:2292705","l":"Paenibacillus paeoniae","na":2,"nb":1,"a":[["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A2292705","Paenibacillus paeoniae"]]},{"id":"NCBITaxon:23","l":"Shewanella colwelliana","na":1,"nb":2,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A23","Shewanella colwelliana"],["NCBITaxon%3A1336240","Shewanella colwelliana ATCC 39565"]]},{"id":"NCBITaxon:231438","l":"Desulfoluna butyratoxydans","na":1,"nb":2,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A231438","Desulfoluna butyratoxydans"],["NCBITaxon%3A1121410","Desulfoluna butyratoxydans DSM 19427"]]},{"id":"NCBITaxon:231440","l":"Desulfopila aestuarii","na":1,"nb":2,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A231440","Desulfopila aestuarii"],["NCBITaxon%3A1121416","Desulfopila aestuarii DSM 18488"]]},{"id":"NCBITaxon:231447","l":"Desulfogranum japonicum","na":1,"nb":2,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A231447","Desulfogranum japonicum"],["NCBITaxon%3A1121403","Desulfogranum japonicum DSM 18378"]]},{"id":"NCBITaxon:233412","l":"[Haemophilus] ducreyi 35000HP","na":1,"nb":2,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A730","[Haemophilus] ducreyi"],["NCBITaxon%3A233412","[Haemophilus] ducreyi 35000HP"]]},{"id":"NCBITaxon:234831","l":"Pseudoalteromonas sp. SM9913","na":2,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A234831","Pseudoalteromonas sp. SM9913"]]},{"id":"NCBITaxon:235279","l":"Helicobacter hepaticus (strain ATCC 51449 / 3B1)","na":1,"nb":2,"a":[["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"]],"b":[["NCBITaxon%3A32025","Helicobacter hepaticus"],["NCBITaxon%3A235279","Helicobacter hepaticus ATCC 51449"]]},{"id":"NCBITaxon:2358","l":"Desulfomonile tiedjei","na":1,"nb":2,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A2358","Desulfomonile tiedjei"],["NCBITaxon%3A706587","Desulfomonile tiedjei DSM 6799"]]},{"id":"NCBITaxon:235909","l":"Geobacillus kaustophilus HTA426","na":1,"nb":2,"a":[["semen-bto-0001230.html","semen"]],"b":[["NCBITaxon%3A1462","Geobacillus kaustophilus"],["NCBITaxon%3A235909","Geobacillus kaustophilus HTA426"]]},{"id":"NCBITaxon:237497","l":"Clostridium sp. Kas107-2","na":2,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"]],"b":[["NCBITaxon%3A237497","Clostridium sp. Kas107-2"]]},{"id":"NCBITaxon:238013","l":"Loigolactobacillus rennini","na":1,"nb":2,"a":[["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["NCBITaxon%3A238013","Loigolactobacillus rennini"],["NCBITaxon%3A1423796","Loigolactobacillus rennini DSM 20253"]]},{"id":"NCBITaxon:238209","l":"Desulfotomaculum sp. MPNeg1","na":2,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"]],"b":[["NCBITaxon%3A238209","Desulfotomaculum sp. MPNeg1"]]},{"id":"NCBITaxon:238540","l":"Algoriphagus antarcticus","na":2,"nb":1,"a":[["hill-envo-00000083.html","hill"],["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A238540","Algoriphagus antarcticus"]]},{"id":"NCBITaxon:240166","l":"Desulfurobacterium pacificum","na":1,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["NCBITaxon%3A240166","Desulfurobacterium pacificum"],["NCBITaxon%3A1121473","Desulfurobacterium pacificum DSM 15522"]]},{"id":"NCBITaxon:240167","l":"Thermovibrio guaymasensis","na":2,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A240167","Thermovibrio guaymasensis"]]},{"id":"NCBITaxon:240427","l":"Secundilactobacillus paracollinoides","na":1,"nb":2,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["NCBITaxon%3A240427","Secundilactobacillus paracollinoides"],["NCBITaxon%3A1423785","Secundilactobacillus paracollinoides DSM 15502 = JCM 11969"]]},{"id":"NCBITaxon:241368","l":"Desulfovibrio ferrophilus","na":2,"nb":1,"a":[["small-river-biome-envo-00000890.html","small river biome"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["NCBITaxon%3A241368","Desulfovibrio ferrophilus"]]},{"id":"NCBITaxon:242606","l":"Luteibacter rhizovicinus","na":1,"nb":2,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A242606","Luteibacter rhizovicinus"],["NCBITaxon%3A1440763","Luteibacter rhizovicinus DSM 16549"]]},{"id":"NCBITaxon:243160","l":"Burkholderia mallei ATCC 23344","na":1,"nb":2,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A13373","Burkholderia mallei"],["NCBITaxon%3A243160","Burkholderia mallei ATCC 23344"]]},{"id":"NCBITaxon:243273","l":"Mycoplasmoides genitalium (strain ATCC 33530 / DSM 19775 / NCTC 10195 / G37)","na":1,"nb":2,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["NCBITaxon%3A2097","Mycoplasmoides genitalium"],["NCBITaxon%3A243273","Mycoplasmoides genitalium G37"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima (strain ATCC 43589 / DSM 3109 / JCM 10099 / NBRC 100826 / MSB8)","na":1,"nb":2,"a":[["feather-bto-0000447.html","feather"]],"b":[["NCBITaxon%3A2336","Thermotoga maritima"],["NCBITaxon%3A243274","Thermotoga maritima MSB8"]]},{"id":"NCBITaxon:243275","l":"Treponema denticola ATCC 35405","na":1,"nb":2,"a":[["dental-plaque-bto-0000338.html","dental plaque"]],"b":[["NCBITaxon%3A158","Treponema denticola"],["NCBITaxon%3A243275","Treponema denticola ATCC 35405"]]},{"id":"NCBITaxon:243690","l":"Methylobacterium goesingense","na":1,"nb":2,"a":[["endosphere-habitatmech-bacdive-3e4680f074.html","Endosphere"]],"b":[["NCBITaxon%3A243690","Methylobacterium goesingense"],["NCBITaxon%3A409","Methylobacterium sp."]]},{"id":"NCBITaxon:244563","l":"Bradyrhizobium sp. HWK12","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A244563","Bradyrhizobium sp. HWK12"]]},{"id":"NCBITaxon:245","l":"Flavobacterium aquatile","na":1,"nb":2,"a":[["water-body-envo-00000063.html","water body"]],"b":[["NCBITaxon%3A245","Flavobacterium aquatile"],["NCBITaxon%3A1453498","Flavobacterium aquatile LMG 4008 = ATCC 11947"]]},{"id":"NCBITaxon:246200","l":"Ruegeria pomeroyi DSS-3","na":1,"nb":2,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["NCBITaxon%3A89184","Ruegeria pomeroyi"],["NCBITaxon%3A246200","Ruegeria pomeroyi DSS-3"]]},{"id":"NCBITaxon:252231","l":"Nocardioides aestuarii","na":1,"nb":2,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1323750","Lacimonas salitolerans"],["NCBITaxon%3A252231","Nocardioides aestuarii"]]},{"id":"NCBITaxon:253239","l":"Ethanoligenens harbinense","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A253239","Ethanoligenens harbinense"],["NCBITaxon%3A663278","Ethanoligenens harbinense YUAN-3"]]},{"id":"NCBITaxon:253839","l":"Streptomyces sp. C","na":2,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A253839","Streptomyces sp. C"]]},{"id":"NCBITaxon:254410","l":"Alteribacter aurantiacus","na":1,"nb":2,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A254410","Alteribacter aurantiacus"],["NCBITaxon%3A1121086","Alteribacter aurantiacus DSM 18675"]]},{"id":"NCBITaxon:255045","l":"Bradyrhizobium canariense","na":1,"nb":2,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A255045","Bradyrhizobium canariense"],["NCBITaxon%3A305580","Bradyrhizobium canariense bv. genistearum"]]},{"id":"NCBITaxon:255205","l":"Pseudoclavibacter helvolus","na":1,"nb":2,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["NCBITaxon%3A255205","Pseudoclavibacter helvolus"],["NCBITaxon%3A1673741","Thalassotalea marina"]]},{"id":"NCBITaxon:256466","l":"Pseudomonas japonica","na":1,"nb":2,"a":[["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["NCBITaxon%3A256466","Pseudomonas japonica"],["NCBITaxon%3A1215104","Pseudomonas japonica NBRC 103040 = DSM 22348"]]},{"id":"NCBITaxon:257277","l":"Nocardia aobensis","na":1,"nb":2,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A257277","Nocardia aobensis"],["NCBITaxon%3A1206720","Nocardia aobensis NBRC 100429"]]},{"id":"NCBITaxon:257314","l":"","na":2,"nb":1,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["NCBITaxon%3A257314","Lactobacillus johnsonii NCC 533"]]},{"id":"NCBITaxon:257363","l":"Rickettsia typhi str. Wilmington","na":1,"nb":2,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A785","Rickettsia typhi"],["NCBITaxon%3A257363","Rickettsia typhi str. Wilmington"]]},{"id":"NCBITaxon:259390","l":"Nocardia takedensis","na":1,"nb":2,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A259390","Nocardia takedensis"],["NCBITaxon%3A1206735","Nocardia takedensis NBRC 100417"]]},{"id":"NCBITaxon:259536","l":"Psychrobacter arcticus 273-4","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A334543","Psychrobacter arcticus"],["NCBITaxon%3A259536","Psychrobacter arcticus 273-4"]]},{"id":"NCBITaxon:259564","l":"Methanococcoides burtonii DSM 6242","na":1,"nb":2,"a":[["hypolimnion-envo-00002130.html","hypolimnion"]],"b":[["NCBITaxon%3A29291","Methanococcoides burtonii"],["NCBITaxon%3A259564","Methanococcoides burtonii DSM 6242"]]},{"id":"NCBITaxon:260552","l":"Microbulbifer agarilyticus","na":1,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A260552","Microbulbifer agarilyticus"],["NCBITaxon%3A1042377","Microbulbifer agarilyticus S89"]]},{"id":"NCBITaxon:261164","l":"Psychrobacter alimentarius","na":2,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A261164","Psychrobacter alimentarius"]]},{"id":"NCBITaxon:262076","l":"Marinobacter flavimaris","na":2,"nb":1,"a":[["small-river-biome-envo-00000890.html","small river biome"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["NCBITaxon%3A262076","Marinobacter flavimaris"]]},{"id":"NCBITaxon:262316","l":"","na":2,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A262316","Mycobacterium avium subsp. paratuberculosis K-10"]]},{"id":"NCBITaxon:262543","l":"","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A340145","Exiguobacterium artemiae"],["NCBITaxon%3A262543","Exiguobacterium artemiae 255-15"]]},{"id":"NCBITaxon:263358","l":"Verrucosispora maris AB-18-032","na":1,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A1003110","Micromonospora maris"],["NCBITaxon%3A263358","Micromonospora maris AB-18-032"]]},{"id":"NCBITaxon:264023","l":"Mariniflexile fucanivorans","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A264023","Mariniflexile fucanivorans"],["NCBITaxon%3A1122193","Mariniflexile fucanivorans DSM 18792"]]},{"id":"NCBITaxon:265948","l":"Anoxybacteroides tepidamans","na":1,"nb":2,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A1382358","Anoxybacillus tepidamans PS2"],["NCBITaxon%3A265948","Anoxybacteroides tepidamans"]]},{"id":"NCBITaxon:266117","l":"Rubrobacter xylanophilus DSM 9941","na":1,"nb":2,"a":[["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["NCBITaxon%3A49319","Rubrobacter xylanophilus"],["NCBITaxon%3A266117","Rubrobacter xylanophilus DSM 9941"]]},{"id":"NCBITaxon:266123","l":"Castellaniella caeni","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A266123","Castellaniella caeni"],["NCBITaxon%3A1349760","Castellaniella caeni NBRC 101664"]]},{"id":"NCBITaxon:266264","l":"Cupriavidus metallidurans CH34","na":1,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["NCBITaxon%3A119219","Cupriavidus metallidurans"],["NCBITaxon%3A266264","Cupriavidus metallidurans CH34"]]},{"id":"NCBITaxon:2663692","l":"bacterium JGI MDM2 M14Mat9-1-D14","na":2,"nb":1,"a":[["inlet-envo-00000475.html","inlet"],["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A2663692","bacterium JGI MDM2 M14Mat9-1-D14"]]},{"id":"NCBITaxon:266779","l":"Chelativorans sp. BNC1","na":1,"nb":2,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A449973","Chelativorans multitrophicus"],["NCBITaxon%3A266779","Chelativorans sp. BNC1"]]},{"id":"NCBITaxon:266809","l":"Thalassobacter stenotrophicus","na":1,"nb":2,"a":[["cyst-bto-0000320.html","cyst"]],"b":[["NCBITaxon%3A266809","Thalassobacter stenotrophicus"],["NCBITaxon%3A1123361","Thalassobacter stenotrophicus DSM 16310"]]},{"id":"NCBITaxon:267374","l":"Marinobacterium halophilum","na":1,"nb":2,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A267374","Marinobacterium halophilum"],["NCBITaxon%3A1122199","Marinobacterium halophilum DSM 17586"]]},{"id":"NCBITaxon:267375","l":"Pseudoalteromonas marina","na":1,"nb":2,"a":[["bay-envo-00000032.html","bay"]],"b":[["NCBITaxon%3A267375","Pseudoalteromonas marina"],["NCBITaxon%3A1117316","Pseudoalteromonas marina DSM 17587"]]},{"id":"NCBITaxon:267747","l":"Cutibacterium acnes KPA171202","na":1,"nb":2,"a":[["sebaceous-gland-bto-0001980.html","sebaceous gland"]],"b":[["NCBITaxon%3A1747","Cutibacterium acnes"],["NCBITaxon%3A267747","Cutibacterium acnes KPA171202"]]},{"id":"NCBITaxon:268735","l":"Halonotius pteroides","na":1,"nb":2,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["NCBITaxon%3A268735","Halonotius pteroides"],["NCBITaxon%3A1333847","Halonotius pteroides DSM 18729"]]},{"id":"NCBITaxon:269666","l":"Streptococcus marimammalium","na":1,"nb":2,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"]],"b":[["NCBITaxon%3A269666","Streptococcus marimammalium"],["NCBITaxon%3A1123306","Streptococcus marimammalium DSM 18627"]]},{"id":"NCBITaxon:269796","l":"Rhodospirillum rubrum (strain ATCC 11170 / ATH 1.1.1 / DSM 467 / LMG 4362 / NCIMB 8255 / S1)","na":1,"nb":2,"a":[["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A1085","Rhodospirillum rubrum"],["NCBITaxon%3A269796","Rhodospirillum rubrum ATCC 11170"]]},{"id":"NCBITaxon:269800","l":"Thermobifida fusca YX","na":2,"nb":1,"a":[["compost-envo-00002170.html","compost"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A269800","Thermobifida fusca YX"]]},{"id":"NCBITaxon:270371","l":"Ralstonia sp. SJ98","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A270371","Ralstonia sp. SJ98"]]},{"id":"NCBITaxon:271160","l":"Nicoletella semolina","na":2,"nb":1,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"]],"b":[["NCBITaxon%3A271160","Nicoletella semolina"]]},{"id":"NCBITaxon:2716812","l":"Candidatus Protofrankia datiscae","na":2,"nb":1,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A2716812","Candidatus Protofrankia datiscae"]]},{"id":"NCBITaxon:272563","l":"Clostridioides difficile (strain 630)","na":1,"nb":2,"a":[["central-nervous-system-bto-0000227.html","central nervous system"]],"b":[["NCBITaxon%3A1496","Clostridioides difficile"],["NCBITaxon%3A272563","Clostridioides difficile 630"]]},{"id":"NCBITaxon:272627","l":"","na":1,"nb":2,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A188","Paramagnetospirillum magnetotacticum"],["NCBITaxon%3A272627","Paramagnetospirillum magnetotacticum MS-1"]]},{"id":"NCBITaxon:272630","l":"Methylorubrum extorquens (strain ATCC 14718 / DSM 1338 / JCM 2805 / NCIMB 9133 / AM1)","na":1,"nb":2,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A408","Methylorubrum extorquens"],["NCBITaxon%3A272630","Methylorubrum extorquens AM1"]]},{"id":"NCBITaxon:272631","l":"Mycobacterium leprae (strain TN)","na":2,"nb":1,"a":[["peripheral-blood-mononuclear-cell-bto-0001025.html","peripheral blood mononuclear cell"],["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["NCBITaxon%3A272631","Mycobacterium leprae TN"]]},{"id":"NCBITaxon:272831","l":"Neisseria meningitidis FAM18","na":1,"nb":2,"a":[["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["NCBITaxon%3A487","Neisseria meningitidis"],["NCBITaxon%3A272831","Neisseria meningitidis FAM18"]]},{"id":"NCBITaxon:272918","l":"","na":1,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A317018","Nesterenkonia jeotgali"],["NCBITaxon%3A272918","Nesterenkonia sandarakina"]]},{"id":"NCBITaxon:273057","l":"Saccharolobus solfataricus (strain ATCC 35092 / DSM 1617 / JCM 11322 / P2)","na":1,"nb":2,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A2287","Saccharolobus solfataricus"],["NCBITaxon%3A273057","Saccharolobus solfataricus P2"]]},{"id":"NCBITaxon:273075","l":"Thermoplasma acidophilum (strain ATCC 25905 / DSM 1728 / JCM 9062 / NBRC 15155 / AMRC-C165)","na":1,"nb":2,"a":[["blood-plasma-bto-0000131.html","blood plasma"]],"b":[["NCBITaxon%3A2303","Thermoplasma acidophilum"],["NCBITaxon%3A273075","Thermoplasma acidophilum DSM 1728"]]},{"id":"NCBITaxon:273384","l":"Brevibacterium aurantiacum","na":1,"nb":2,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["NCBITaxon%3A273384","Brevibacterium aurantiacum"],["NCBITaxon%3A1703","Brevibacterium linens"]]},{"id":"NCBITaxon:2741","l":"Peptococcus niger","na":2,"nb":1,"a":[["animal-litter-envo-00002191.html","animal litter"],["pig-manure-envo-00003860.html","pig manure"]],"b":[["NCBITaxon%3A2741","Peptococcus niger"]]},{"id":"NCBITaxon:278956","l":"Opitutaceae bacterium TAV1","na":2,"nb":1,"a":[["hindgut-bto-0000510.html","hindgut"],["wood-bto-0005516.html","wood"]],"b":[["NCBITaxon%3A278956","Opitutaceae bacterium TAV1"]]},{"id":"NCBITaxon:278957","l":"Geminisphaera colitermitum TAV2","na":1,"nb":2,"a":[["wood-envo-00002040.html","wood"]],"b":[["NCBITaxon%3A1148786","Geminisphaera colitermitum"],["NCBITaxon%3A278957","Geminisphaera colitermitum TAV2"]]},{"id":"NCBITaxon:278992","l":"Streptomyces ambofaciens ATCC 23877","na":1,"nb":2,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A1889","Streptomyces ambofaciens"],["NCBITaxon%3A278992","Streptomyces ambofaciens ATCC 23877"]]},{"id":"NCBITaxon:279238","l":"Novosphingobium aromaticivorans DSM 12444","na":1,"nb":2,"a":[["pond-water-envo-00002228.html","pond water"]],"b":[["NCBITaxon%3A48935","Novosphingobium aromaticivorans"],["NCBITaxon%3A279238","Novosphingobium aromaticivorans DSM 12444"]]},{"id":"NCBITaxon:279714","l":"Pseudogulbenkiania ferrooxidans 2002","na":2,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["pond-water-envo-00002228.html","pond water"]],"b":[["NCBITaxon%3A279714","Pseudogulbenkiania ferrooxidans 2002"]]},{"id":"NCBITaxon:280236","l":"Nocardiopsis gilva","na":1,"nb":2,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A280236","Nocardiopsis gilva"],["NCBITaxon%3A1235441","Nocardiopsis gilva YIM 90087"]]},{"id":"NCBITaxon:280239","l":"Nocardiopsis chromatogenes","na":1,"nb":2,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A280239","Nocardiopsis chromatogenes"],["NCBITaxon%3A1246475","Nocardiopsis chromatogenes YIM 90109"]]},{"id":"NCBITaxon:280240","l":"Nocardiopsis baichengensis","na":1,"nb":2,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A280240","Nocardiopsis baichengensis"],["NCBITaxon%3A1236902","Nocardiopsis baichengensis YIM 90130"]]},{"id":"NCBITaxon:28092","l":"Robbsia andropogonis","na":1,"nb":2,"a":[["water-body-envo-00000063.html","water body"]],"b":[["NCBITaxon%3A28092","Robbsia andropogonis"],["NCBITaxon%3A1423893","Robbsia andropogonis Ba3549"]]},{"id":"NCBITaxon:28094","l":"Trinickia caryophylli","na":1,"nb":2,"a":[["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A1632866","Alkalimarinus sediminis"],["NCBITaxon%3A28094","Trinickia caryophylli"]]},{"id":"NCBITaxon:281090","l":"Leifsonia xyli subsp. xyli str. CTCB07","na":2,"nb":1,"a":[["xylem-bto-0001468.html","xylem"],["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A281090","Leifsonia xyli subsp. xyli str. CTCB07"]]},{"id":"NCBITaxon:28113","l":"Prevotella heparinolytica","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A28113","Prevotella heparinolytica"],["NCBITaxon%3A888058","Prevotella heparinolytica ATCC 35895"]]},{"id":"NCBITaxon:281361","l":"Flavobacterium denitrificans","na":1,"nb":2,"a":[["pond-water-envo-00002228.html","pond water"]],"b":[["NCBITaxon%3A281361","Flavobacterium denitrificans"],["NCBITaxon%3A1121888","Flavobacterium denitrificans DSM 15936"]]},{"id":"NCBITaxon:28185","l":"Spirochaeta sp.","na":2,"nb":1,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A28185","Spirochaeta sp."]]},{"id":"NCBITaxon:28200","l":"Aliarcobacter skirrowii","na":1,"nb":2,"a":[["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A28200","Aliarcobacter skirrowii"],["NCBITaxon%3A1032239","Aliarcobacter skirrowii CCUG 10374"]]},{"id":"NCBITaxon:28258","l":"Cobetia marina","na":1,"nb":2,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A28258","Cobetia marina"],["NCBITaxon%3A204798","Saccharothrix xinjiangensis"]]},{"id":"NCBITaxon:282669","l":"Psychrobacter cibarius","na":2,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A282669","Psychrobacter cibarius"]]},{"id":"NCBITaxon:283165","l":"Bartonella quintana str. Toulouse","na":2,"nb":1,"a":[["endothelial-cell-bto-0001176.html","endothelial cell"],["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["NCBITaxon%3A283165","Bartonella quintana str. Toulouse"]]},{"id":"NCBITaxon:28442","l":"Haloarcula vallismortis","na":1,"nb":2,"a":[["pond-envo-00000033.html","pond"]],"b":[["NCBITaxon%3A28442","Haloarcula vallismortis"],["NCBITaxon%3A662477","Haloarcula vallismortis ATCC 29715"]]},{"id":"NCBITaxon:285091","l":"Alloalcanivorax dieselolei","na":1,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A285091","Alloalcanivorax dieselolei"],["NCBITaxon%3A930169","Alloalcanivorax dieselolei B5"]]},{"id":"NCBITaxon:285109","l":"Thioclava pacifica","na":1,"nb":2,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A285109","Thioclava pacifica"],["NCBITaxon%3A1353537","Thioclava pacifica DSM 10166"]]},{"id":"NCBITaxon:285258","l":"Tenacibaculum lutimaris","na":2,"nb":1,"a":[["beach-envo-00000091.html","beach"],["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["NCBITaxon%3A285258","Tenacibaculum lutimaris"]]},{"id":"NCBITaxon:285271","l":"uncultured Methylophaga sp.","na":2,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"],["oceanic-sea-surface-microlayer-biome-envo-01000034.html","oceanic sea surface microlayer biome"]],"b":[["NCBITaxon%3A285271","uncultured Methylophaga sp."]]},{"id":"NCBITaxon:285558","l":"Streptomyces carpaticus","na":2,"nb":1,"a":[["area-of-tundra-envo-00000112.html","area of tundra"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["NCBITaxon%3A285558","Streptomyces carpaticus"]]},{"id":"NCBITaxon:286804","l":"Segniliparus rugosus","na":1,"nb":2,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["NCBITaxon%3A286804","Segniliparus rugosus"],["NCBITaxon%3A679197","Segniliparus rugosus ATCC BAA-974"]]},{"id":"NCBITaxon:287844","l":"Lapidilactobacillus concavus","na":1,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A287844","Lapidilactobacillus concavus"],["NCBITaxon%3A1423735","Lapidilactobacillus concavus DSM 17758"]]},{"id":"NCBITaxon:288022","l":"Kordiimonas gwangyangensis","na":1,"nb":2,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A288022","Kordiimonas gwangyangensis"],["NCBITaxon%3A1122137","Kordiimonas gwangyangensis DSM 19435 = JCM 12864"]]},{"id":"NCBITaxon:28892","l":"Methanofollis liminatans DSM 4140","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A2201","Methanofollis liminatans"],["NCBITaxon%3A28892","Methanofollis liminatans DSM 4140"]]},{"id":"NCBITaxon:290053","l":"Bacteroides helcogenes","na":1,"nb":2,"a":[["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["NCBITaxon%3A290053","Bacteroides helcogenes"],["NCBITaxon%3A693979","Bacteroides helcogenes P 36-108"]]},{"id":"NCBITaxon:291615","l":"Thermoanaerobacter mathranii subsp. alimentarius","na":1,"nb":2,"a":[["food-spoiled-foodon-00003366.html","food (spoiled)"]],"b":[["NCBITaxon%3A291615","Thermoanaerobacter mathranii subsp. alimentarius"],["NCBITaxon%3A29350","Thermoanaerobacter thermocopriae"]]},{"id":"NCBITaxon:292415","l":"Thiobacillus denitrificans ATCC 25259","na":2,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A292415","Thiobacillus denitrificans ATCC 25259"]]},{"id":"NCBITaxon:292459","l":"","na":1,"nb":2,"a":[["compost-envo-00002170.html","compost"]],"b":[["NCBITaxon%3A2734","Symbiobacterium thermophilum"],["NCBITaxon%3A292459","Symbiobacterium thermophilum IAM 14863"]]},{"id":"NCBITaxon:292587","l":"Synechococcus rubescens","na":1,"nb":2,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A292587","Synechococcus rubescens"],["NCBITaxon%3A169675","Synechococcus rubescens SAG 3.81"]]},{"id":"NCBITaxon:29303","l":"Streptomyces cattleya","na":1,"nb":2,"a":[["clay-envo-00002982.html","clay"]],"b":[["NCBITaxon%3A29303","Streptantibioticus cattleyicolor"],["NCBITaxon%3A1003195","Streptantibioticus cattleyicolor NRRL 8057 = DSM 46488"]]},{"id":"NCBITaxon:293050","l":"Rhodococcoides kroppenstedtii","na":1,"nb":2,"a":[["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A293050","Rhodococcoides kroppenstedtii"],["NCBITaxon%3A1123056","Rhodococcoides kroppenstedtii DSM 44908"]]},{"id":"NCBITaxon:29317","l":"Actinomyces sp.","na":2,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"]],"b":[["NCBITaxon%3A29317","Actinomyces sp."]]},{"id":"NCBITaxon:29318","l":"Winkia neuii subsp. anitrata","na":1,"nb":2,"a":[["bone-element-uberon-0001474.html","bone element"]],"b":[["NCBITaxon%3A33007","Winkia neuii"],["NCBITaxon%3A29318","Winkia neuii subsp. anitrata"]]},{"id":"NCBITaxon:293256","l":"Alkalidesulfovibrio alkalitolerans","na":1,"nb":2,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A293256","Alkalidesulfovibrio alkalitolerans"],["NCBITaxon%3A1121439","Alkalidesulfovibrio alkalitolerans DSM 16529"]]},{"id":"NCBITaxon:293371","l":"Paucilactobacillus oligofermentans","na":1,"nb":2,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["NCBITaxon%3A293371","Paucilactobacillus oligofermentans"],["NCBITaxon%3A1423778","Paucilactobacillus oligofermentans DSM 15707 = LMG 22743"]]},{"id":"NCBITaxon:29378","l":"Staphylococcus arlettae","na":1,"nb":2,"a":[["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["NCBITaxon%3A29378","Staphylococcus arlettae"],["NCBITaxon%3A1212545","Staphylococcus arlettae CVD059"]]},{"id":"NCBITaxon:293826","l":"Alkaliphilus metalliredigens QYMF","na":2,"nb":1,"a":[["borax-leachate-envo-00002142.html","borax leachate"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["NCBITaxon%3A293826","Alkaliphilus metalliredigens QYMF"]]},{"id":"NCBITaxon:293890","l":"Agromyces subbeticus","na":1,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A293890","Agromyces subbeticus"],["NCBITaxon%3A1120960","Agromyces subbeticus DSM 16689"]]},{"id":"NCBITaxon:29394","l":"Dolosigranulum pigrum","na":1,"nb":2,"a":[["bone-element-uberon-0001474.html","bone element"]],"b":[["NCBITaxon%3A29394","Dolosigranulum pigrum"],["NCBITaxon%3A883103","Dolosigranulum pigrum ATCC 51524"]]},{"id":"NCBITaxon:29447","l":"Xanthomonas albilineans","na":1,"nb":2,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["NCBITaxon%3A29447","Xanthomonas albilineans"],["NCBITaxon%3A380358","Xanthomonas albilineans GPE PC73"]]},{"id":"NCBITaxon:29557","l":"Mycoplasmopsis gallinarum","na":1,"nb":2,"a":[["medial-geniculate-nucleus-bto-0002670.html","medial geniculate nucleus"]],"b":[["NCBITaxon%3A29557","Mycoplasmopsis gallinarum"],["NCBITaxon%3A1122248","Mycoplasmopsis gallinarum DSM 19816"]]},{"id":"NCBITaxon:295596","l":"Hepatoplasma crinochetorum (SeqCode)","na":1,"nb":2,"a":[["hepatopancreas-bto-0000597.html","hepatopancreas"]],"b":[["NCBITaxon%3A295596","Hepatoplasma crinochetorum (SeqCode)"],["NCBITaxon%3A1427984","Candidatus Hepatoplasma crinochetorum Av"]]},{"id":"NCBITaxon:29561","l":"Mycoplasmopsis meleagridis","na":1,"nb":2,"a":[["medial-geniculate-nucleus-bto-0002670.html","medial geniculate nucleus"]],"b":[["NCBITaxon%3A29561","Mycoplasmopsis meleagridis"],["NCBITaxon%3A1264554","Mycoplasmopsis meleagridis ATCC 25294"]]},{"id":"NCBITaxon:29563","l":"Halanaerobium salsuginis","na":2,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A29563","Halanaerobium salsuginis"]]},{"id":"NCBITaxon:298265","l":"Comamonas sp. JS46","na":2,"nb":1,"a":[["stony-desert-envo-00000183.html","stony desert"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A298265","Comamonas sp. JS46"]]},{"id":"NCBITaxon:298386","l":"Photobacterium profundum SS9","na":2,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A298386","Photobacterium profundum SS9"]]},{"id":"NCBITaxon:298654","l":"Pseudofrankia inefficax","na":2,"nb":1,"a":[["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["NCBITaxon%3A298654","Pseudofrankia inefficax"]]},{"id":"NCBITaxon:299767","l":"Enterobacter ludwigii","na":1,"nb":2,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A299767","Enterobacter ludwigii"]]},{"id":"NCBITaxon:301301","l":"Roseburia hominis","na":1,"nb":2,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["NCBITaxon%3A301301","Roseburia hominis"],["NCBITaxon%3A585394","Roseburia hominis A2-183"]]},{"id":"NCBITaxon:301302","l":"Roseburia faecis","na":1,"nb":2,"a":[["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A301302","Roseburia faecis"],["NCBITaxon%3A451638","Roseburia faecis M72/1"]]},{"id":"NCBITaxon:303682","l":"Thauera sp. 28","na":1,"nb":2,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["NCBITaxon%3A1905334","Thauera sp."],["NCBITaxon%3A303682","Thauera sp. 28"]]},{"id":"NCBITaxon:305977","l":"Pusillimonas noertemannii","na":1,"nb":2,"a":[["simulated-communities-habitatmech-bacdive-5fa4710934.html","Simulated-communities"]],"b":[["NCBITaxon%3A305977","Pusillimonas noertemannii"],["NCBITaxon%3A1231391","Pusillimonas noertemannii BS8"]]},{"id":"NCBITaxon:306537","l":"Corynebacterium jeikeium K411","na":1,"nb":2,"a":[["bone-marrow-bto-0000141.html","bone marrow"]],"b":[["NCBITaxon%3A38289","Corynebacterium jeikeium"],["NCBITaxon%3A306537","Corynebacterium jeikeium K411"]]},{"id":"NCBITaxon:306540","l":"Halolactibacillus halophilus","na":2,"nb":1,"a":[["beach-envo-00000091.html","beach"],["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A306540","Halolactibacillus halophilus"]]},{"id":"NCBITaxon:306541","l":"Halolactibacillus miurensis","na":2,"nb":1,"a":[["beach-envo-00000091.html","beach"],["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A306541","Halolactibacillus miurensis"]]},{"id":"NCBITaxon:306543","l":"Paenibacillus harenae","na":1,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A306543","Paenibacillus harenae"],["NCBITaxon%3A1122920","Paenibacillus harenae DSM 16969"]]},{"id":"NCBITaxon:307119","l":"Micromonospora chaiyaphumensis","na":2,"nb":1,"a":[["area-of-tundra-envo-00000112.html","area of tundra"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["NCBITaxon%3A307119","Micromonospora chaiyaphumensis"]]},{"id":"NCBITaxon:307126","l":"Ligilactobacillus apodemi","na":1,"nb":2,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["NCBITaxon%3A307126","Ligilactobacillus apodemi"],["NCBITaxon%3A1423724","Ligilactobacillus apodemi DSM 16634 = JCM 16172"]]},{"id":"NCBITaxon:308354","l":"Staphylococcus simiae","na":1,"nb":2,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A308354","Staphylococcus simiae"],["NCBITaxon%3A911238","Staphylococcus simiae CCM 7213 = CCUG 51256"]]},{"id":"NCBITaxon:308994","l":"Dialister propionicifaciens","na":2,"nb":1,"a":[["pig-manure-envo-00003860.html","pig manure"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A308994","Dialister propionicifaciens"]]},{"id":"NCBITaxon:310783","l":"Deinococcus deserti","na":1,"nb":2,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A310783","Deinococcus deserti"],["NCBITaxon%3A546414","Deinococcus deserti VCD115"]]},{"id":"NCBITaxon:312286","l":"Trueperella bonasi","na":2,"nb":1,"a":[["water-body-envo-00000063.html","water body"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A312286","Trueperella bonasi"]]},{"id":"NCBITaxon:313007","l":"Ureibacillus suwonensis","na":1,"nb":2,"a":[["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A701041","Mycobacterium bouchedurhonense"],["NCBITaxon%3A313007","Ureibacillus suwonensis"]]},{"id":"NCBITaxon:313590","l":"Dokdonia sp. MED134","na":2,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A313590","Dokdonia sp. MED134"]]},{"id":"NCBITaxon:313598","l":"Polaribacter sp. MED152","na":2,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["NCBITaxon%3A313598","Polaribacter sp. MED152"]]},{"id":"NCBITaxon:314229","l":"Nitrospira marina","na":1,"nb":2,"a":[["inlet-envo-00000475.html","inlet"]],"b":[["NCBITaxon%3A314229","Nitrospira marina"],["NCBITaxon%3A35815","Nitrospira marina Nb-295"]]},{"id":"NCBITaxon:314237","l":"","na":2,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"],["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A314237","Paramesorhizobium leguminum"]]},{"id":"NCBITaxon:314262","l":"Roseobacter sp. MED193","na":2,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["NCBITaxon%3A314262","Roseobacter sp. MED193"]]},{"id":"NCBITaxon:314271","l":"Maritimibacter alkaliphilus HTCC2654","na":1,"nb":2,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["NCBITaxon%3A404236","Maritimibacter alkaliphilus"],["NCBITaxon%3A314271","Maritimibacter alkaliphilus HTCC2654"]]},{"id":"NCBITaxon:314277","l":"Marinomonas sp. MED121","na":2,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A314277","Marinomonas sp. MED121"]]},{"id":"NCBITaxon:315277","l":"Chlamydia trachomatis A/HAR-13","na":1,"nb":2,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A813","Chlamydia trachomatis"],["NCBITaxon%3A315277","Chlamydia trachomatis A/HAR-13"]]},{"id":"NCBITaxon:316058","l":"Rhodopseudomonas palustris HaA2","na":2,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A316058","Rhodopseudomonas palustris HaA2"]]},{"id":"NCBITaxon:316067","l":"Geotalea daltonii FRC-32","na":1,"nb":2,"a":[["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A1203471","Geotalea daltonii"],["NCBITaxon%3A316067","Geotalea daltonii FRC-32"]]},{"id":"NCBITaxon:317010","l":"Enterococcus canintestini","na":1,"nb":2,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"]],"b":[["NCBITaxon%3A1448267","Corynebacterium nasicanis"],["NCBITaxon%3A317010","Enterococcus canintestini"]]},{"id":"NCBITaxon:317619","l":"Prochlorothrix hollandica PCC 9006 = CALU 1027","na":1,"nb":2,"a":[["fjord-envo-00000039.html","fjord"]],"b":[["NCBITaxon%3A1223","Prochlorothrix hollandica"],["NCBITaxon%3A317619","Prochlorothrix hollandica PCC 9006 = CALU 1027"]]},{"id":"NCBITaxon:318161","l":"Shewanella denitrificans OS217","na":1,"nb":2,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A192073","Shewanella denitrificans"],["NCBITaxon%3A318161","Shewanella denitrificans OS217"]]},{"id":"NCBITaxon:319225","l":"Pelodictyon luteolum DSM 273","na":1,"nb":2,"a":[["meromictic-lake-envo-00000199.html","meromictic lake"]],"b":[["NCBITaxon%3A1100","Pelodictyon luteolum"],["NCBITaxon%3A319225","Pelodictyon luteolum DSM 273"]]},{"id":"NCBITaxon:31963","l":"Clavibacter nebraskensis","na":1,"nb":2,"a":[["immunocompromised-habitatmech-bacdive-0d6b871731.html","Immunocompromised"]],"b":[["NCBITaxon%3A31963","Clavibacter nebraskensis"],["NCBITaxon%3A1097677","Clavibacter nebraskensis NCPPB 2581"]]},{"id":"NCBITaxon:320483","l":"Anaplasma marginale str. Florida","na":2,"nb":1,"a":[["erythrocyte-bto-0000424.html","erythrocyte"],["filament-bto-0000463.html","filament"]],"b":[["NCBITaxon%3A320483","Anaplasma marginale str. Florida"]]},{"id":"NCBITaxon:321967","l":"Lacticaseibacillus paracasei (strain ATCC 334 / BCRC 17002 / CCUG 31169 / CIP 107868 / KCTC 3260 / NRRL B-441)","na":1,"nb":2,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["NCBITaxon%3A1597","Lacticaseibacillus paracasei"],["NCBITaxon%3A321967","Lacticaseibacillus paracasei ATCC 334"]]},{"id":"NCBITaxon:322009","l":"Sinomonas cyclohexanicum","na":2,"nb":1,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"]],"b":[["NCBITaxon%3A322009","Sinomonas cyclohexanicum"]]},{"id":"NCBITaxon:322095","l":"Porphyromonas somerae","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A322095","Porphyromonas somerae"],["NCBITaxon%3A1122975","Porphyromonas somerae DSM 23386"]]},{"id":"NCBITaxon:323098","l":"Nitrobacter winogradskyi Nb-255","na":1,"nb":2,"a":[["stromatolite-mat-envo-00002157.html","stromatolite mat"]],"b":[["NCBITaxon%3A913","Nitrobacter winogradskyi"],["NCBITaxon%3A323098","Nitrobacter winogradskyi Nb-255"]]},{"id":"NCBITaxon:323259","l":"Methanospirillum hungatei JF-1","na":1,"nb":2,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A2203","Methanospirillum hungatei"],["NCBITaxon%3A323259","Methanospirillum hungatei JF-1"]]},{"id":"NCBITaxon:323850","l":"Shewanella loihica PV-4","na":1,"nb":2,"a":[["rift-valley-envo-00000302.html","rift valley"]],"b":[["NCBITaxon%3A359303","Shewanella loihica"],["NCBITaxon%3A323850","Shewanella loihica PV-4"]]},{"id":"NCBITaxon:324602","l":"Chloroflexus aurantiacus (strain ATCC 29366 / DSM 635 / J-10-fl)","na":1,"nb":2,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A1108","Chloroflexus aurantiacus"],["NCBITaxon%3A324602","Chloroflexus aurantiacus J-10-fl"]]},{"id":"NCBITaxon:324925","l":"Pelodictyon phaeoclathratiforme BU-1","na":1,"nb":2,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A34090","Pelodictyon phaeoclathratiforme"],["NCBITaxon%3A324925","Pelodictyon phaeoclathratiforme BU-1"]]},{"id":"NCBITaxon:326320","l":"Dokdonia donghaensis","na":1,"nb":2,"a":[["sandstone-envo-00002055.html","sandstone"]],"b":[["NCBITaxon%3A326320","Dokdonia donghaensis"],["NCBITaxon%3A1300343","Dokdonia donghaensis DSW-1"]]},{"id":"NCBITaxon:326423","l":"Bacillus velezensis FZB42","na":1,"nb":2,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["NCBITaxon%3A492670","Bacillus velezensis"],["NCBITaxon%3A326423","Bacillus velezensis FZB42"]]},{"id":"NCBITaxon:326424","l":"Frankia alni ACN14a","na":1,"nb":2,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["NCBITaxon%3A1859","Frankia alni"],["NCBITaxon%3A326424","Frankia alni ACN14a"]]},{"id":"NCBITaxon:33035","l":"Blautia producta","na":1,"nb":2,"a":[["juvenile-bto-0002168.html","juvenile"]],"b":[["NCBITaxon%3A33035","Blautia producta"],["NCBITaxon%3A1121114","Blautia producta ATCC 27340 = DSM 2950"]]},{"id":"NCBITaxon:33050","l":"Sphingopyxis macrogoltabida","na":1,"nb":2,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A33050","Sphingopyxis macrogoltabida"],["NCBITaxon%3A1219047","Sphingopyxis macrogoltabida NBRC 15033"]]},{"id":"NCBITaxon:330922","l":"Psychrobacter cryohalolentis","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A330922","Psychrobacter cryohalolentis"],["NCBITaxon%3A335284","Psychrobacter cryohalolentis K5"]]},{"id":"NCBITaxon:331272","l":"Burkholderia cenocepacia HI2424","na":2,"nb":1,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A331272","Burkholderia cenocepacia HI2424"]]},{"id":"NCBITaxon:332163","l":"Candidatus Solibacter usitatus","na":1,"nb":2,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A332163","Candidatus Solibacter usitatus"],["NCBITaxon%3A234267","Candidatus Solibacter usitatus Ellin6076"]]},{"id":"NCBITaxon:332168","l":"Halococcus hamelinensis","na":1,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A332168","Halococcus hamelinensis"],["NCBITaxon%3A1132509","Halococcus hamelinensis 100A6"]]},{"id":"NCBITaxon:332175","l":"Desulfosalsimonas propionicica","na":2,"nb":1,"a":[["inlet-envo-00000475.html","inlet"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A332175","Desulfosalsimonas propionicica"]]},{"id":"NCBITaxon:333725","l":"Streptomyces kaempferi","na":1,"nb":2,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A333725","Streptomyces kaempferi"],["NCBITaxon%3A156453","Streptomyces yunnanensis"]]},{"id":"NCBITaxon:334543","l":"Psychrobacter arcticus","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A334543","Psychrobacter arcticus"],["NCBITaxon%3A259536","Psychrobacter arcticus 273-4"]]},{"id":"NCBITaxon:335284","l":"Psychrobacter cryohalolentis K5","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A330922","Psychrobacter cryohalolentis"],["NCBITaxon%3A335284","Psychrobacter cryohalolentis K5"]]},{"id":"NCBITaxon:336203","l":"Sphingobium fuliginis","na":1,"nb":2,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["NCBITaxon%3A336203","Sphingobium fuliginis"],["NCBITaxon%3A1208342","Sphingobium fuliginis ATCC 27551"]]},{"id":"NCBITaxon:33881","l":"Curtobacterium luteum","na":1,"nb":2,"a":[["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["NCBITaxon%3A33881","Curtobacterium luteum"],["NCBITaxon%3A465820","Curtobacterium oceanosedimentum"]]},{"id":"NCBITaxon:338966","l":"Pelobacter propionicus DSM 2379","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A29543","Pelobacter propionicus"],["NCBITaxon%3A338966","Pelobacter propionicus DSM 2379"]]},{"id":"NCBITaxon:33935","l":"Lysinibacillus macroides","na":2,"nb":1,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A33935","Lysinibacillus macroides"]]},{"id":"NCBITaxon:33952","l":"Acetobacterium woodii","na":1,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A33952","Acetobacterium woodii"],["NCBITaxon%3A931626","Acetobacterium woodii DSM 1030"]]},{"id":"NCBITaxon:339861","l":"Clostridium aciditolerans","na":1,"nb":2,"a":[["marsh-envo-00000035.html","marsh"]],"b":[["NCBITaxon%3A339861","Clostridium aciditolerans"],["NCBITaxon%3A1506","Clostridium sp."]]},{"id":"NCBITaxon:340100","l":"Bordetella petrii DSM 12804","na":1,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["NCBITaxon%3A94624","Bordetella petrii"],["NCBITaxon%3A340100","Bordetella petrii DSM 12804"]]},{"id":"NCBITaxon:340146","l":"Exiguobacterium mexicanum","na":1,"nb":2,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A340146","Exiguobacterium mexicanum"],["NCBITaxon%3A68258","Streptomyces pulveraceus"]]},{"id":"NCBITaxon:340186","l":"Escherichia coli E110019","na":2,"nb":1,"a":[["hep-2-cell-bto-0000976.html","HEp-2 cell"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"]],"b":[["NCBITaxon%3A340186","Escherichia coli E110019"]]},{"id":"NCBITaxon:340197","l":"Escherichia coli F11","na":2,"nb":1,"a":[["diaphragm-bto-0000341.html","diaphragm"],["kidney-bto-0000671.html","kidney"]],"b":[["NCBITaxon%3A340197","Escherichia coli F11"]]},{"id":"NCBITaxon:342110","l":"Ralstonia solanacearum UW551","na":2,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A342110","Ralstonia solanacearum UW551"]]},{"id":"NCBITaxon:344998","l":"Hymenobacter psychrotolerans","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A344998","Hymenobacter psychrotolerans"],["NCBITaxon%3A1121959","Hymenobacter psychrotolerans DSM 18569"]]},{"id":"NCBITaxon:345219","l":"Heyndrickxia coagulans 36D1","na":1,"nb":2,"a":[["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["NCBITaxon%3A1398","Heyndrickxia coagulans"],["NCBITaxon%3A345219","Heyndrickxia coagulans 36D1"]]},{"id":"NCBITaxon:345341","l":"Kutzneria sp. 744","na":2,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"],["clay-envo-00002982.html","clay"]],"b":[["NCBITaxon%3A345341","Kutzneria sp. 744"]]},{"id":"NCBITaxon:349106","l":"Psychrobacter sp. PRwf-1","na":2,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A349106","Psychrobacter sp. PRwf-1"]]},{"id":"NCBITaxon:349124","l":"Halorhodospira halophila (strain DSM 244 / SL1)","na":1,"nb":2,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A1053","Halorhodospira halophila"],["NCBITaxon%3A349124","Halorhodospira halophila SL1"]]},{"id":"NCBITaxon:349163","l":"Acidiphilium cryptum JF-5","na":2,"nb":1,"a":[["acid-mine-drainage-envo-00001997.html","acid mine drainage"],["coal-mine-lake-sediment-envo-00002147.html","coal mine lake sediment"]],"b":[["NCBITaxon%3A349163","Acidiphilium cryptum JF-5"]]},{"id":"NCBITaxon:349521","l":"Hahella chejuensis KCTC 2396","na":1,"nb":2,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["NCBITaxon%3A158327","Hahella chejuensis"],["NCBITaxon%3A349521","Hahella chejuensis KCTC 2396"]]},{"id":"NCBITaxon:349741","l":"Akkermansia muciniphila (strain ATCC BAA-835 / DSM 22959 / JCM 33894 / BCRC 81048 / CCUG 64013 / CIP 107961 / Muc)","na":1,"nb":2,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["NCBITaxon%3A239935","Akkermansia muciniphila"],["NCBITaxon%3A349741","Akkermansia muciniphila ATCC BAA-835"]]},{"id":"NCBITaxon:349910","l":"Streptomyces bullii","na":1,"nb":2,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A349910","Streptomyces bullii"],["NCBITaxon%3A1818004","Streptomyces zhihengii"]]},{"id":"NCBITaxon:35","l":"Corallococcus macrosporus","na":1,"nb":2,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"]],"b":[["NCBITaxon%3A35","Corallococcus macrosporus"],["NCBITaxon%3A1189310","Corallococcus macrosporus DSM 14697"]]},{"id":"NCBITaxon:350054","l":"Mycolicibacterium gilvum PYR-GCK","na":2,"nb":1,"a":[["soil-envo-00001998.html","soil"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A350054","Mycolicibacterium gilvum PYR-GCK"]]},{"id":"NCBITaxon:351348","l":"Marinobacter nauticus VT8","na":1,"nb":2,"a":[["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A2743","Marinobacter nauticus"],["NCBITaxon%3A351348","Marinobacter nauticus VT8"]]},{"id":"NCBITaxon:351607","l":"Acidothermus cellulolyticus 11B","na":1,"nb":2,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A28049","Acidothermus cellulolyticus"],["NCBITaxon%3A351607","Acidothermus cellulolyticus 11B"]]},{"id":"NCBITaxon:353153","l":"Trypanosoma cruzi (strain CL Brener)","na":2,"nb":1,"a":[["amastigote-bto-0000062.html","amastigote"],["kinetoplastid-bto-0002502.html","kinetoplastid"]],"b":[["NCBITaxon%3A353153","Trypanosoma cruzi strain CL Brener"]]},{"id":"NCBITaxon:356829","l":"Bifidobacterium tsurumiense","na":1,"nb":2,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A356829","Bifidobacterium tsurumiense"],["NCBITaxon%3A1121112","Bifidobacterium tsurumiense DSM 17777"]]},{"id":"NCBITaxon:357347","l":"Burkholderia pseudomallei 1106b","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A357347","Burkholderia pseudomallei 1106b"]]},{"id":"NCBITaxon:357794","l":"Psychromonas ingrahamii","na":1,"nb":2,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A357794","Psychromonas ingrahamii"],["NCBITaxon%3A357804","Psychromonas ingrahamii 37"]]},{"id":"NCBITaxon:357804","l":"Psychromonas ingrahamii (strain DSM 17664 / CCUG 51855 / 37)","na":1,"nb":2,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["NCBITaxon%3A357794","Psychromonas ingrahamii"],["NCBITaxon%3A357804","Psychromonas ingrahamii 37"]]},{"id":"NCBITaxon:358100","l":"Microbacterium indicum","na":1,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A358100","Microbacterium indicum"],["NCBITaxon%3A1122238","Microbacterium indicum DSM 19969"]]},{"id":"NCBITaxon:35841","l":"Caldibacillus thermoamylovorans","na":2,"nb":1,"a":[["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["NCBITaxon%3A35841","Caldibacillus thermoamylovorans"]]},{"id":"NCBITaxon:360054","l":"Bryobacter aggregatus","na":1,"nb":2,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A360054","Bryobacter aggregatus"],["NCBITaxon%3A1340493","Bryobacter aggregatus MPL3"]]},{"id":"NCBITaxon:362242","l":"","na":2,"nb":1,"a":[["subcutaneous-tissue-bto-0004525.html","subcutaneous tissue"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A362242","Mycobacterium ulcerans Agy99"]]},{"id":"NCBITaxon:362787","l":"Candidatus Protochlamydia amoebophila","na":1,"nb":2,"a":[["endosymbiont-habitatmech-bacdive-7d840c7ddc.html","Endosymbiont"]],"b":[["NCBITaxon%3A362787","Candidatus Protochlamydia amoebophila"],["NCBITaxon%3A264201","Candidatus Protochlamydia amoebophila UWE25"]]},{"id":"NCBITaxon:363260","l":"Sphingobacterium composti","na":1,"nb":2,"a":[["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["NCBITaxon%3A415956","Sphingobacterium allocomposti"],["NCBITaxon%3A363260","Sphingobacterium composti"]]},{"id":"NCBITaxon:364197","l":"Pseudomonas pohangensis","na":2,"nb":1,"a":[["beach-envo-00000091.html","beach"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A364197","Pseudomonas pohangensis"]]},{"id":"NCBITaxon:366289","l":"Pseudomonas delhiensis","na":1,"nb":2,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["NCBITaxon%3A366289","Pseudomonas delhiensis"],["NCBITaxon%3A482461","Sediminibacillus halophilus"]]},{"id":"NCBITaxon:36738","l":"Halococcus salifodinae","na":1,"nb":2,"a":[["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["NCBITaxon%3A36738","Halococcus salifodinae"],["NCBITaxon%3A1227456","Halococcus salifodinae DSM 8989"]]},{"id":"NCBITaxon:367928","l":"Bifidobacterium adolescentis (strain ATCC 15703 / DSM 20083 / NCTC 11814 / E194a)","na":1,"nb":2,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["NCBITaxon%3A1680","Bifidobacterium adolescentis"],["NCBITaxon%3A367928","Bifidobacterium adolescentis ATCC 15703"]]},{"id":"NCBITaxon:36821","l":"Gordonia amarae","na":1,"nb":2,"a":[["foam-habitatmech-bacdive-df2f59b773.html","Foam"]],"b":[["NCBITaxon%3A36821","Gordonia amarae"],["NCBITaxon%3A1075090","Gordonia amarae NBRC 15530"]]},{"id":"NCBITaxon:36832","l":"Lacrimispora aerotolerans","na":1,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"]],"b":[["NCBITaxon%3A1410651","[Clostridium] aerotolerans DSM 5434"],["NCBITaxon%3A36832","Lacrimispora aerotolerans"]]},{"id":"NCBITaxon:368407","l":"","na":1,"nb":2,"a":[["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A2198","Methanoculleus marisnigri"],["NCBITaxon%3A368407","Methanoculleus marisnigri JR1"]]},{"id":"NCBITaxon:36874","l":"Porphyromonas cangingivalis","na":1,"nb":2,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["NCBITaxon%3A36874","Porphyromonas cangingivalis"],["NCBITaxon%3A1236520","Porphyromonas cangingivalis JCM 15983"]]},{"id":"NCBITaxon:369822","l":"Rickettsia conorii subsp. raoultii","na":1,"nb":2,"a":[["scalp-bto-0001809.html","scalp"]],"b":[["NCBITaxon%3A781","Rickettsia conorii"],["NCBITaxon%3A369822","Rickettsia conorii subsp. raoultii"]]},{"id":"NCBITaxon:370973","l":"Runella defluvii","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A370973","Runella defluvii"],["NCBITaxon%3A1123076","Runella defluvii DSM 17976"]]},{"id":"NCBITaxon:373903","l":"Halothermothrix orenii H 168","na":1,"nb":2,"a":[["lake-sediment-envo-00000546.html","lake sediment"]],"b":[["NCBITaxon%3A31909","Halothermothrix orenii"],["NCBITaxon%3A373903","Halothermothrix orenii H 168"]]},{"id":"NCBITaxon:374424","l":"Methylobacterium gregans","na":1,"nb":2,"a":[["factory-envo-01000536.html","factory"]],"b":[["NCBITaxon%3A237017","Algoriphagus winogradskyi"],["NCBITaxon%3A374424","Methylobacterium gregans"]]},{"id":"NCBITaxon:374463","l":"Baumannia cicadellinicola str. Hc (Homalodisca coagulata)","na":2,"nb":1,"a":[["phloem-bto-0001058.html","phloem"],["xylem-bto-0001468.html","xylem"]],"b":[["NCBITaxon%3A374463","Baumannia cicadellinicola str. Hc (Homalodisca coagulata)"]]},{"id":"NCBITaxon:374675","l":"Candidatus Karelsulcia muelleri str. Hc (Homalodisca coagulata)","na":2,"nb":1,"a":[["phloem-bto-0001058.html","phloem"],["xylem-bto-0001468.html","xylem"]],"b":[["NCBITaxon%3A374675","Candidatus Karelsulcia muelleri str. Hc (Homalodisca coagulata)"]]},{"id":"NCBITaxon:375451","l":"Roseobacter denitrificans OCh 114","na":1,"nb":2,"a":[["inlet-envo-00000475.html","inlet"]],"b":[["NCBITaxon%3A2434","Roseobacter denitrificans"],["NCBITaxon%3A375451","Roseobacter denitrificans OCh 114"]]},{"id":"NCBITaxon:37658","l":"Anaeromicropila populeti","na":1,"nb":2,"a":[["wood-envo-00002040.html","wood"]],"b":[["NCBITaxon%3A37658","Anaeromicropila populeti"],["NCBITaxon%3A1121330","Anaeromicropila populeti DSM 5832"]]},{"id":"NCBITaxon:376686","l":"","na":1,"nb":2,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["NCBITaxon%3A986","Flavobacterium johnsoniae"],["NCBITaxon%3A376686","Flavobacterium johnsoniae UW101"]]},{"id":"NCBITaxon:376804","l":"Phocaeicola barnesiae","na":1,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"]],"b":[["NCBITaxon%3A376804","Phocaeicola barnesiae"],["NCBITaxon%3A1121094","Phocaeicola barnesiae DSM 18169 = JCM 13652"]]},{"id":"NCBITaxon:377431","l":"Chlorobium ferrooxidans DSM 13031","na":1,"nb":2,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A84205","Chlorobium ferrooxidans"],["NCBITaxon%3A377431","Chlorobium ferrooxidans DSM 13031"]]},{"id":"NCBITaxon:379347","l":"Tritonibacter mobilis","na":1,"nb":2,"a":[["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["NCBITaxon%3A379347","Tritonibacter mobilis"],["NCBITaxon%3A1265309","Tritonibacter mobilis F1926"]]},{"id":"NCBITaxon:380174","l":"Cohnella laeviribosi","na":1,"nb":2,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A380174","Cohnella laeviribosi"],["NCBITaxon%3A1121346","Cohnella laeviribosi DSM 21336"]]},{"id":"NCBITaxon:380394","l":"Acidithiobacillus ferrooxidans ATCC 53993","na":2,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A380394","Acidithiobacillus ferrooxidans ATCC 53993"]]},{"id":"NCBITaxon:381845","l":"Clostridium sp. CYP5","na":2,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"]],"b":[["NCBITaxon%3A381845","Clostridium sp. CYP5"]]},{"id":"NCBITaxon:382514","l":"Telmatospirillum siberiense","na":2,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A382514","Telmatospirillum siberiense"]]},{"id":"NCBITaxon:382640","l":"Bartonella tribocorum CIP 105476","na":1,"nb":2,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A85701","Bartonella tribocorum"],["NCBITaxon%3A382640","Bartonella tribocorum CIP 105476"]]},{"id":"NCBITaxon:383407","l":"Xanthomonas oryzae pv. oryzicola BLS256","na":2,"nb":1,"a":[["mesophyll-bto-0000858.html","mesophyll"],["vascular-tissue-bto-0001432.html","vascular tissue"]],"b":[["NCBITaxon%3A383407","Xanthomonas oryzae pv. oryzicola BLS256"]]},{"id":"NCBITaxon:384602","l":"Micrococcus flavus","na":1,"nb":2,"a":[["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A384602","Micrococcus flavus"],["NCBITaxon%3A1271","Micrococcus sp."]]},{"id":"NCBITaxon:384616","l":"Pyrobaculum islandicum (strain DSM 4184 / JCM 9189 / GEO3)","na":1,"nb":2,"a":[["geothermal-power-plant-envo-00002215.html","geothermal power plant"]],"b":[["NCBITaxon%3A2277","Pyrobaculum islandicum"],["NCBITaxon%3A384616","Pyrobaculum islandicum DSM 4184"]]},{"id":"NCBITaxon:384676","l":"Pseudomonas entomophila L48","na":1,"nb":2,"a":[["coelom-bto-0001707.html","coelom"]],"b":[["NCBITaxon%3A312306","Pseudomonas entomophila"],["NCBITaxon%3A384676","Pseudomonas entomophila L48"]]},{"id":"NCBITaxon:384765","l":"Roseibium aggregatum IAM 12614","na":1,"nb":2,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["NCBITaxon%3A187304","Roseibium aggregatum"],["NCBITaxon%3A384765","Roseibium aggregatum IAM 12614"]]},{"id":"NCBITaxon:386891","l":"Moraxella bovoculi","na":1,"nb":2,"a":[["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["NCBITaxon%3A386891","Moraxella bovoculi"],["NCBITaxon%3A743974","Moraxella bovoculi 237"]]},{"id":"NCBITaxon:387344","l":"Levilactobacillus brevis ATCC 367","na":1,"nb":2,"a":[["silage-envo-00003030.html","silage"]],"b":[["NCBITaxon%3A1580","Levilactobacillus brevis"],["NCBITaxon%3A387344","Levilactobacillus brevis ATCC 367"]]},{"id":"NCBITaxon:387889","l":"Prauserella salsuginis","na":1,"nb":2,"a":[["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A577679","Prauserella flava"],["NCBITaxon%3A387889","Prauserella salsuginis"]]},{"id":"NCBITaxon:389348","l":"Candidatus Protochlamydia naegleriophila","na":2,"nb":1,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A389348","Candidatus Protochlamydia naegleriophila"]]},{"id":"NCBITaxon:391009","l":"Thermosipho melanesiensis BI429","na":1,"nb":2,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A46541","Thermosipho melanesiensis"],["NCBITaxon%3A391009","Thermosipho melanesiensis BI429"]]},{"id":"NCBITaxon:391037","l":"Salinispora arenicola CNS-205","na":2,"nb":1,"a":[["beach-sand-envo-00002138.html","beach sand"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A391037","Salinispora arenicola CNS-205"]]},{"id":"NCBITaxon:391038","l":"Paraburkholderia phymatum STM815","na":1,"nb":2,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A148447","Paraburkholderia phymatum"],["NCBITaxon%3A391038","Paraburkholderia phymatum STM815"]]},{"id":"NCBITaxon:39122","l":"Skermania pinensis","na":1,"nb":2,"a":[["foam-habitatmech-bacdive-df2f59b773.html","Foam"]],"b":[["NCBITaxon%3A39122","Skermania pinensis"],["NCBITaxon%3A1223536","Skermania pinensis NBRC 15059"]]},{"id":"NCBITaxon:391287","l":"","na":1,"nb":2,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A391287","Brucella ciceri"],["NCBITaxon%3A94625","Brucella intermedia"]]},{"id":"NCBITaxon:391613","l":"Roseovarius sp. TM1035","na":1,"nb":2,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A2203213","Roseovarius sp. AK1035"],["NCBITaxon%3A391613","Roseovarius sp. TM1035"]]},{"id":"NCBITaxon:391626","l":"Octadecabacter antarcticus 307","na":1,"nb":2,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["NCBITaxon%3A1217908","Octadecabacter antarcticus"],["NCBITaxon%3A391626","Octadecabacter antarcticus 307"]]},{"id":"NCBITaxon:392015","l":"Paenalicyclobacillus macrosporangiidus","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A1382304","Alicyclobacillus macrosporangiidus CPP55"],["NCBITaxon%3A392015","Paenalicyclobacillus macrosporangiidus"]]},{"id":"NCBITaxon:392838","l":"Bacteroides propionicifaciens","na":1,"nb":2,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A392838","Bacteroides propionicifaciens"],["NCBITaxon%3A1121099","Bacteroides propionicifaciens DSM 19291 = JCM 14649"]]},{"id":"NCBITaxon:393133","l":"Listeria monocytogenes serotype 1/2a (strain 10403S)","na":2,"nb":1,"a":[["lymphocyte-bto-0000775.html","lymphocyte"],["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A393133","Listeria monocytogenes 10403S"]]},{"id":"NCBITaxon:393595","l":"Alcanivorax borkumensis SK2","na":1,"nb":2,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["NCBITaxon%3A59754","Alcanivorax borkumensis"],["NCBITaxon%3A393595","Alcanivorax borkumensis SK2"]]},{"id":"NCBITaxon:394094","l":"Cystobacter velatus","na":2,"nb":1,"a":[["wood-bto-0005516.html","wood"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A394094","Cystobacter velatus"]]},{"id":"NCBITaxon:394096","l":"Hyalangium minutum","na":2,"nb":1,"a":[["wood-bto-0005516.html","wood"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A394096","Hyalangium minutum"]]},{"id":"NCBITaxon:394935","l":"Chromobacterium haemolyticum","na":1,"nb":2,"a":[["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["NCBITaxon%3A394935","Chromobacterium haemolyticum"],["NCBITaxon%3A1121283","Chromobacterium haemolyticum DSM 19808"]]},{"id":"NCBITaxon:395493","l":"Beggiatoa alba B18LD","na":1,"nb":2,"a":[["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["NCBITaxon%3A1022","Beggiatoa alba"],["NCBITaxon%3A395493","Beggiatoa alba B18LD"]]},{"id":"NCBITaxon:395598","l":"Pseudomonas reinekei","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A395598","Pseudomonas reinekei"]]},{"id":"NCBITaxon:395961","l":"Cyanothece sp. PCC 7425","na":2,"nb":1,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["NCBITaxon%3A395961","Cyanothece sp. PCC 7425"]]},{"id":"NCBITaxon:395962","l":"Rippkaea orientalis PCC 8802","na":2,"nb":1,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A395962","Rippkaea orientalis PCC 8802"]]},{"id":"NCBITaxon:396588","l":"Thioalkalivibrio sulfidiphilus HL-EbGr7","na":2,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A396588","Thioalkalivibrio sulfidiphilus HL-EbGr7"]]},{"id":"NCBITaxon:397448","l":"Escherichia coli O119:H6","na":2,"nb":1,"a":[["enterocyte-bto-0000398.html","enterocyte"],["hela-cell-bto-0000567.html","HeLa cell"]],"b":[["NCBITaxon%3A397448","Escherichia coli O119:H6"]]},{"id":"NCBITaxon:397865","l":"Barnesiella viscericola","na":1,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"]],"b":[["NCBITaxon%3A397865","Barnesiella viscericola"],["NCBITaxon%3A880074","Barnesiella viscericola DSM 18177"]]},{"id":"NCBITaxon:397948","l":"Caldivirga maquilingensis IC-167","na":1,"nb":2,"a":[["acidic-hot-spring-envo-00002120.html","acidic hot spring"]],"b":[["NCBITaxon%3A76887","Caldivirga maquilingensis"],["NCBITaxon%3A397948","Caldivirga maquilingensis IC-167"]]},{"id":"NCBITaxon:398000","l":"Campylobacter jejuni subsp. jejuni CG8486","na":2,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["epithelial-cell-bto-0000414.html","epithelial cell"]],"b":[["NCBITaxon%3A398000","Campylobacter jejuni subsp. jejuni CG8486"]]},{"id":"NCBITaxon:398527","l":"Paraburkholderia phytofirmans PsJN","na":1,"nb":2,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["NCBITaxon%3A261302","Paraburkholderia phytofirmans"],["NCBITaxon%3A398527","Paraburkholderia phytofirmans PsJN"]]},{"id":"NCBITaxon:399549","l":"Metallosphaera sedula DSM 5348","na":1,"nb":2,"a":[["solfatara-envo-00000217.html","solfatara"]],"b":[["NCBITaxon%3A43687","Metallosphaera sedula"],["NCBITaxon%3A399549","Metallosphaera sedula DSM 5348"]]},{"id":"NCBITaxon:399579","l":"Thermogymnomonas acidicola","na":1,"nb":2,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A399579","Thermogymnomonas acidicola"],["NCBITaxon%3A1295120","Thermogymnomonas acidicola JCM 13583"]]},{"id":"NCBITaxon:399741","l":"Serratia proteamaculans 568","na":2,"nb":1,"a":[["pleura-bto-0001791.html","pleura"],["seedling-bto-0001228.html","seedling"]],"b":[["NCBITaxon%3A399741","Serratia proteamaculans 568"]]},{"id":"NCBITaxon:399795","l":"Comamonas testosteroni KF-1","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A285","Comamonas testosteroni"],["NCBITaxon%3A399795","Comamonas testosteroni KF-1"]]},{"id":"NCBITaxon:401472","l":"Corynebacterium ureicelerivorans","na":1,"nb":2,"a":[["ascites-bto-0000091.html","ascites"]],"b":[["NCBITaxon%3A57171","Corynebacterium mucifaciens"],["NCBITaxon%3A401472","Corynebacterium ureicelerivorans"]]},{"id":"NCBITaxon:401526","l":"Thermosinus carboxydivorans Nor1","na":1,"nb":2,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A261685","Thermosinus carboxydivorans"],["NCBITaxon%3A401526","Thermosinus carboxydivorans Nor1"]]},{"id":"NCBITaxon:402612","l":"Flavobacterium psychrophilum JIP02/86","na":1,"nb":2,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A96345","Flavobacterium psychrophilum"],["NCBITaxon%3A402612","Flavobacterium psychrophilum JIP02/86"]]},{"id":"NCBITaxon:402880","l":"","na":2,"nb":1,"a":[["marsh-envo-00000035.html","marsh"],["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A402880","Methanococcus maripaludis C5"]]},{"id":"NCBITaxon:403833","l":"Petrotoga mobilis SJ95","na":1,"nb":2,"a":[["oil-envo-00002985.html","oil"]],"b":[["NCBITaxon%3A69499","Petrotoga mobilis"],["NCBITaxon%3A403833","Petrotoga mobilis SJ95"]]},{"id":"NCBITaxon:404385","l":"","na":1,"nb":2,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A404385","Nonomuraea bangladeshensis"],["NCBITaxon%3A282078","Streptococcus orisuis"]]},{"id":"NCBITaxon:404386","l":"Nonomuraea coxensis","na":1,"nb":2,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A404386","Nonomuraea coxensis"],["NCBITaxon%3A1122611","Nonomuraea coxensis DSM 45129"]]},{"id":"NCBITaxon:404881","l":"Albidovulum denitrificans","na":2,"nb":1,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A404881","Albidovulum denitrificans"]]},{"id":"NCBITaxon:405559","l":"Paracoccus saliphilus","na":1,"nb":2,"a":[["area-designated-as-a-nature-reserve-envo-00000363.html","area designated as a nature reserve"]],"b":[["NCBITaxon%3A2778531","Paracoccus halotolerans"],["NCBITaxon%3A405559","Paracoccus saliphilus"]]},{"id":"NCBITaxon:406425","l":"Burkholderia orbicola MC0-3","na":2,"nb":1,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A406425","Burkholderia orbicola MC0-3"]]},{"id":"NCBITaxon:406817","l":"Xenorhabdus nematophila ATCC 19061","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A628","Xenorhabdus nematophila"],["NCBITaxon%3A406817","Xenorhabdus nematophila ATCC 19061"]]},{"id":"NCBITaxon:407022","l":"Olivibacter domesticus","na":1,"nb":2,"a":[["compost-envo-00002170.html","compost"]],"b":[["NCBITaxon%3A407022","Olivibacter domesticus"],["NCBITaxon%3A1123028","Olivibacter domesticus DSM 18733"]]},{"id":"NCBITaxon:408577","l":"Methanobacterium veterum","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A386456","Methanobacterium arcticum"],["NCBITaxon%3A408577","Methanobacterium veterum"]]},{"id":"NCBITaxon:409291","l":"Arthrobacter humicola","na":1,"nb":2,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A1665","Arthrobacter globiformis"],["NCBITaxon%3A409291","Arthrobacter humicola"]]},{"id":"NCBITaxon:40990","l":"Saccharomonospora glauca","na":1,"nb":2,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"]],"b":[["NCBITaxon%3A40990","Saccharomonospora glauca"],["NCBITaxon%3A928724","Saccharomonospora glauca K62"]]},{"id":"NCBITaxon:410358","l":"Methanocorpusculum labreanum (strain ATCC 43576 / DSM 4855 / Z)","na":1,"nb":2,"a":[["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A83984","Methanocorpusculum labreanum"],["NCBITaxon%3A410358","Methanocorpusculum labreanum Z"]]},{"id":"NCBITaxon:410359","l":"Pyrobaculum calidifontis (strain DSM 21063 / JCM 11548 / VA1)","na":1,"nb":2,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A181486","Pyrobaculum calidifontis"],["NCBITaxon%3A410359","Pyrobaculum calidifontis JCM 11548"]]},{"id":"NCBITaxon:411154","l":"Christiangramia forsetii KT0803","na":1,"nb":2,"a":[["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A411153","Christiangramia forsetii"],["NCBITaxon%3A411154","Christiangramia forsetii KT0803"]]},{"id":"NCBITaxon:411466","l":"Schaalia dentiphila ATCC 17982","na":1,"nb":2,"a":[["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["NCBITaxon%3A411466","Schaalia dentiphila ATCC 17982"],["NCBITaxon%3A1660","Schaalia odontolytica"]]},{"id":"NCBITaxon:411474","l":"Coprococcus eutactus ATCC 27759","na":1,"nb":2,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A33043","Coprococcus eutactus"],["NCBITaxon%3A411474","Coprococcus eutactus ATCC 27759"]]},{"id":"NCBITaxon:411479","l":"Bacteroides uniformis ATCC 8492","na":1,"nb":2,"a":[["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["NCBITaxon%3A820","Bacteroides uniformis"],["NCBITaxon%3A411479","Bacteroides uniformis ATCC 8492"]]},{"id":"NCBITaxon:411684","l":"Hoeflea phototrophica DFL-43","na":1,"nb":2,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["NCBITaxon%3A411684","Hoeflea phototrophica DFL-43"],["NCBITaxon%3A244596","Parahoeflea phototrophica"]]},{"id":"NCBITaxon:41211","l":"Desulfotomaculum sp.","na":2,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A41211","Desulfotomaculum sp."]]},{"id":"NCBITaxon:41276","l":"Brevundimonas vesicularis","na":1,"nb":2,"a":[["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A41276","Brevundimonas vesicularis"],["NCBITaxon%3A1349759","Brevundimonas vesicularis NBRC 12165"]]},{"id":"NCBITaxon:412965","l":"Candidatus Vesicomyidisocius calyptogenae","na":2,"nb":1,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"],["gill-bto-0000518.html","gill"]],"b":[["NCBITaxon%3A412965","Candidatus Vesicomyidisocius calyptogenae"]]},{"id":"NCBITaxon:413712","l":"Sphingomonas pseudosanguinis","na":2,"nb":1,"a":[["air-envo-00002005.html","air"],["air-conditioning-unit-envo-00002874.html","air conditioning unit"]],"b":[["NCBITaxon%3A413712","Sphingomonas pseudosanguinis"]]},{"id":"NCBITaxon:41431","l":"Rippkaea orientalis PCC 8801","na":2,"nb":1,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["NCBITaxon%3A41431","Rippkaea orientalis PCC 8801"]]},{"id":"NCBITaxon:415015","l":"Proteiniborus ethanoligenes","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A415015","Proteiniborus ethanoligenes"],["NCBITaxon%3A1123007","Proteiniborus ethanoligenes DSM 21650"]]},{"id":"NCBITaxon:415229","l":"Pseudoxanthomonas spadix","na":1,"nb":2,"a":[["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A415229","Pseudoxanthomonas spadix"],["NCBITaxon%3A1045855","Pseudoxanthomonas spadix BD-a59"]]},{"id":"NCBITaxon:419665","l":"Methanococcus aeolicus (strain ATCC BAA-1280 / DSM 17508 / OCM 812 / Nankai-3)","na":1,"nb":2,"a":[["shoreline-envo-00000486.html","shoreline"]],"b":[["NCBITaxon%3A42879","Methanococcus aeolicus"],["NCBITaxon%3A419665","Methanococcus aeolicus Nankai-3"]]},{"id":"NCBITaxon:41977","l":"Parazoarcus communis","na":1,"nb":2,"a":[["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A41977","Parazoarcus communis"],["NCBITaxon%3A1121029","Parazoarcus communis SWub3 = DSM 12120"]]},{"id":"NCBITaxon:41986","l":"Agromyces mediolanus","na":1,"nb":2,"a":[["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["NCBITaxon%3A41986","Agromyces mediolanus"],["NCBITaxon%3A1303686","Agromyces mediolanus JCM 9631"]]},{"id":"NCBITaxon:419942","l":"Saccharolobus islandicus Y.N.15.51","na":2,"nb":1,"a":[["geyser-envo-00000050.html","geyser"],["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A419942","Saccharolobus islandicus Y.N.15.51"]]},{"id":"NCBITaxon:419947","l":"Mycobacterium tuberculosis (strain ATCC 25177 / H37Ra)","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A419947","Mycobacterium tuberculosis H37Ra"]]},{"id":"NCBITaxon:420247","l":"","na":1,"nb":2,"a":[["gut-mucosa-bto-0000546.html","gut mucosa"]],"b":[["NCBITaxon%3A2173","Methanobrevibacter smithii"],["NCBITaxon%3A420247","Methanobrevibacter smithii ATCC 35061"]]},{"id":"NCBITaxon:420404","l":"Epilithonimonas hominis","na":2,"nb":1,"a":[["kidney-bto-0000671.html","kidney"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["NCBITaxon%3A420404","Epilithonimonas hominis"]]},{"id":"NCBITaxon:42252","l":"Nitratidesulfovibrio termitidis","na":1,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A42252","Nitratidesulfovibrio termitidis"],["NCBITaxon%3A644897","Nitratidesulfovibrio termitidis HI1"]]},{"id":"NCBITaxon:423350","l":"Mucilaginibacter gracilis","na":2,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A423350","Mucilaginibacter gracilis"]]},{"id":"NCBITaxon:423351","l":"Mucilaginibacter paludis","na":1,"nb":2,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A423351","Mucilaginibacter paludis"],["NCBITaxon%3A714943","Mucilaginibacter paludis DSM 18603"]]},{"id":"NCBITaxon:42353","l":"Nitrosomonas sp.","na":2,"nb":1,"a":[["anaerobic-sludge-blanket-reactor-envo-00002213.html","anaerobic sludge blanket reactor"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A42353","Nitrosomonas sp."]]},{"id":"NCBITaxon:425067","l":"Burkholderia pseudomallei 305","na":2,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A425067","Burkholderia pseudomallei 305"]]},{"id":"NCBITaxon:425104","l":"","na":1,"nb":2,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A271097","Shewanella sediminis"],["NCBITaxon%3A425104","Shewanella sediminis HAW-EB3"]]},{"id":"NCBITaxon:426355","l":"Methylobacterium radiotolerans JCM 2831","na":1,"nb":2,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["NCBITaxon%3A31998","Methylobacterium radiotolerans"],["NCBITaxon%3A426355","Methylobacterium radiotolerans JCM 2831"]]},{"id":"NCBITaxon:43","l":"Cystobacter fuscus","na":1,"nb":2,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"]],"b":[["NCBITaxon%3A43","Cystobacter fuscus"],["NCBITaxon%3A1242864","Cystobacter fuscus DSM 2262"]]},{"id":"NCBITaxon:43131","l":"Tissierella praeacuta","na":1,"nb":2,"a":[["village-biome-envo-01000246.html","village biome"]],"b":[["NCBITaxon%3A43131","Tissierella praeacuta"],["NCBITaxon%3A1123404","Tissierella praeacuta DSM 18095"]]},{"id":"NCBITaxon:431489","l":"Demequina lutea","na":2,"nb":1,"a":[["permafrost-envo-00000134.html","permafrost"],["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A431489","Demequina lutea"]]},{"id":"NCBITaxon:431943","l":"Clostridium kluyveri DSM 555","na":1,"nb":2,"a":[["desert-sand-envo-00005800.html","desert sand"]],"b":[["NCBITaxon%3A1534","Clostridium kluyveri"],["NCBITaxon%3A431943","Clostridium kluyveri DSM 555"]]},{"id":"NCBITaxon:435805","l":"Flavobacterium sp. '80m A1 isolate-4'","na":2,"nb":1,"a":[["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"]],"b":[["NCBITaxon%3A435805","Flavobacterium sp. '80m A1 isolate-4'"]]},{"id":"NCBITaxon:436115","l":"Burkholderia mallei PRL-20","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A436115","Burkholderia mallei PRL-20"]]},{"id":"NCBITaxon:436308","l":"Nitrosopumilus maritimus SCM1","na":1,"nb":2,"a":[["aquarium-envo-00002196.html","aquarium"]],"b":[["NCBITaxon%3A338192","Nitrosopumilus maritimus"],["NCBITaxon%3A436308","Nitrosopumilus maritimus SCM1"]]},{"id":"NCBITaxon:436717","l":"Acinetobacter oleivorans DR1","na":1,"nb":2,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A1148157","Acinetobacter oleivorans"],["NCBITaxon%3A436717","Acinetobacter oleivorans DR1"]]},{"id":"NCBITaxon:43677","l":"Promicromonospora citrea","na":1,"nb":2,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A2126556","Flavobacterium artemisiae"],["NCBITaxon%3A43677","Promicromonospora citrea"]]},{"id":"NCBITaxon:43769","l":"Corynebacterium propinquum","na":1,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A43769","Corynebacterium propinquum"],["NCBITaxon%3A1121367","Corynebacterium propinquum DSM 44285"]]},{"id":"NCBITaxon:439292","l":"Bacillus selenitireducens (strain ATCC 700615 / DSM 15326 / MLS10)","na":1,"nb":2,"a":[["anaerobic-mud-envo-00002133.html","anaerobic mud"]],"b":[["NCBITaxon%3A439292","[Bacillus] selenitireducens MLS10"],["NCBITaxon%3A85683","Salisediminibacterium selenitireducens"]]},{"id":"NCBITaxon:439612","l":"","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A439612","Daeguia caeni"],["NCBITaxon%3A2665146","Thauera sinica"]]},{"id":"NCBITaxon:440085","l":"Methylorubrum extorquens CM4","na":1,"nb":2,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A408","Methylorubrum extorquens"],["NCBITaxon%3A440085","Methylorubrum extorquens CM4"]]},{"id":"NCBITaxon:441156","l":"Burkholderia pseudomallei 7894","na":2,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A441156","Burkholderia pseudomallei 7894"]]},{"id":"NCBITaxon:441165","l":"Burkholderia thailandensis TXDOH","na":2,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A441165","Burkholderia thailandensis TXDOH"]]},{"id":"NCBITaxon:441620","l":"Methylorubrum populi BJ001","na":1,"nb":2,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A223967","Methylorubrum populi"],["NCBITaxon%3A441620","Methylorubrum populi BJ001"]]},{"id":"NCBITaxon:442956","l":"Thermococcus sp. HJ21","na":2,"nb":1,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A442956","Thermococcus sp. HJ21"]]},{"id":"NCBITaxon:443906","l":"Clavibacter michiganensis subsp. michiganensis NCPPB 382","na":2,"nb":1,"a":[["xylem-bto-0001468.html","xylem"],["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A443906","Clavibacter michiganensis subsp. michiganensis NCPPB 382"]]},{"id":"NCBITaxon:444103","l":"Streptomyces sp. CNQ-509","na":2,"nb":1,"a":[["colonic-cancer-cell-bto-0000586.html","colonic cancer cell"],["vas-efferens-bto-0002254.html","vas efferens"]],"b":[["NCBITaxon%3A444103","Streptomyces sp. CNQ-509"]]},{"id":"NCBITaxon:445220","l":"Reyranella massiliensis","na":1,"nb":2,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A445220","Reyranella massiliensis"],["NCBITaxon%3A1205680","Reyranella massiliensis 521"]]},{"id":"NCBITaxon:445932","l":"Elusimicrobium minutum Pei191","na":1,"nb":2,"a":[["hindgut-bto-0000510.html","hindgut"]],"b":[["NCBITaxon%3A423605","Elusimicrobium minutum"],["NCBITaxon%3A445932","Elusimicrobium minutum Pei191"]]},{"id":"NCBITaxon:446469","l":"Sanguibacter keddieii DSM 10542","na":1,"nb":2,"a":[["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A60920","Sanguibacter keddieii"],["NCBITaxon%3A446469","Sanguibacter keddieii DSM 10542"]]},{"id":"NCBITaxon:446470","l":"Stackebrandtia nassauensis DSM 44728","na":1,"nb":2,"a":[["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["NCBITaxon%3A283811","Stackebrandtia nassauensis"],["NCBITaxon%3A446470","Stackebrandtia nassauensis DSM 44728"]]},{"id":"NCBITaxon:44751","l":"Exiguobacterium sp.","na":2,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A44751","Exiguobacterium sp."]]},{"id":"NCBITaxon:447595","l":"Caldanaerovirga acetigignens","na":1,"nb":2,"a":[["rocky-desert-envo-00000173.html","rocky desert"]],"b":[["NCBITaxon%3A447595","Caldanaerovirga acetigignens"],["NCBITaxon%3A1121258","Caldanaerovirga acetigignens DSM 18802"]]},{"id":"NCBITaxon:448385","l":"","na":1,"nb":2,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A56","Sorangium cellulosum"],["NCBITaxon%3A448385","Sorangium cellulosum So ce56"]]},{"id":"NCBITaxon:449306","l":"Desulfobulbus sp. DSM 2033","na":2,"nb":1,"a":[["black-smoker-envo-00000218.html","black smoker"],["volcanic-rock-envo-00002015.html","volcanic rock"]],"b":[["NCBITaxon%3A449306","Desulfobulbus sp. DSM 2033"]]},{"id":"NCBITaxon:449673","l":"Bacteroides stercoris ATCC 43183","na":1,"nb":2,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["NCBITaxon%3A46506","Bacteroides stercoris"],["NCBITaxon%3A449673","Bacteroides stercoris ATCC 43183"]]},{"id":"NCBITaxon:451640","l":"Catenibacterium mitsuokai DSM 15897","na":1,"nb":2,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["NCBITaxon%3A100886","Catenibacterium mitsuokai"],["NCBITaxon%3A451640","Catenibacterium mitsuokai DSM 15897"]]},{"id":"NCBITaxon:451754","l":"Clostridium perfringens B str. ATCC 3626","na":1,"nb":2,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["NCBITaxon%3A1502","Clostridium perfringens"],["NCBITaxon%3A451754","Clostridium perfringens B str. ATCC 3626"]]},{"id":"NCBITaxon:45248","l":"Leucothrix mucor","na":1,"nb":2,"a":[["epibiont-habitatmech-bacdive-f4eb470a03.html","Epibiont"]],"b":[["NCBITaxon%3A45248","Leucothrix mucor"],["NCBITaxon%3A998674","Leucothrix mucor DSM 2157"]]},{"id":"NCBITaxon:452637","l":"","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A107709","Opitutus terrae"],["NCBITaxon%3A452637","Opitutus terrae PB90-1"]]},{"id":"NCBITaxon:452638","l":"Polynucleobacter necessarius STIR1","na":2,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A452638","Polynucleobacter necessarius STIR1"]]},{"id":"NCBITaxon:452652","l":"Kitasatospora setae KM-6054","na":1,"nb":2,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A2066","Kitasatospora setae"],["NCBITaxon%3A452652","Kitasatospora setae KM-6054"]]},{"id":"NCBITaxon:452662","l":"Sphingobium indicum UT26S","na":1,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["NCBITaxon%3A332055","Sphingobium indicum"],["NCBITaxon%3A452662","Sphingobium indicum UT26S"]]},{"id":"NCBITaxon:452863","l":"Pseudarthrobacter chlorophenolicus (strain ATCC 700700 / DSM 12829 / CIP 107037 / JCM 12360 / KCTC 9906 / NCIMB 13794 / A6)","na":1,"nb":2,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A85085","Pseudarthrobacter chlorophenolicus"],["NCBITaxon%3A452863","Pseudarthrobacter chlorophenolicus A6"]]},{"id":"NCBITaxon:453","l":"Legionella feeleii","na":1,"nb":2,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A453","Legionella feeleii"],["NCBITaxon%3A66975","Legionella feeleii serogroup 2"]]},{"id":"NCBITaxon:455488","l":"Anaeromyxobacter dehalogenans 2CP-1","na":1,"nb":2,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A161493","Anaeromyxobacter dehalogenans"],["NCBITaxon%3A455488","Anaeromyxobacter dehalogenans 2CP-1"]]},{"id":"NCBITaxon:455632","l":"Streptomyces griseus subsp. griseus NBRC 13350","na":1,"nb":2,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A1896","Streptomyces bikiniensis"],["NCBITaxon%3A455632","Streptomyces griseus subsp. griseus NBRC 13350"]]},{"id":"NCBITaxon:456299","l":"Chryseobacterium gregarium","na":1,"nb":2,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A456299","Chryseobacterium gregarium"],["NCBITaxon%3A1121287","Chryseobacterium gregarium DSM 19109"]]},{"id":"NCBITaxon:457412","l":"Ruminococcus sp. 5_1_39BFAA","na":2,"nb":1,"a":[["animal-litter-envo-00002191.html","animal litter"],["tropical-envo-01000204.html","tropical"]],"b":[["NCBITaxon%3A457412","Ruminococcus sp. 5_1_39BFAA"]]},{"id":"NCBITaxon:457416","l":"Veillonella sp. 3_1_44","na":2,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"],["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"]],"b":[["NCBITaxon%3A457416","Veillonella sp. 3_1_44"]]},{"id":"NCBITaxon:457424","l":"Bacteroides fragilis 3_1_12","na":2,"nb":1,"a":[["bay-envo-00000032.html","bay"],["saline-water-envo-00002010.html","saline water"]],"b":[["NCBITaxon%3A457424","Bacteroides fragilis 3_1_12"]]},{"id":"NCBITaxon:457431","l":"Streptomyces filamentosus NRRL 15998","na":2,"nb":1,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A457431","Streptomyces filamentosus NRRL 15998"]]},{"id":"NCBITaxon:457570","l":"Natranaerobius thermophilus JW/NM-WN-LF","na":1,"nb":2,"a":[["wadi-envo-00000031.html","wadi"]],"b":[["NCBITaxon%3A375929","Natranaerobius thermophilus"],["NCBITaxon%3A457570","Natranaerobius thermophilus JW/NM-WN-LF"]]},{"id":"NCBITaxon:459529","l":"Sphingobacterium siyangense","na":1,"nb":2,"a":[["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["NCBITaxon%3A459529","Sphingobacterium siyangense"],["NCBITaxon%3A634159","Sphingobacterium siyangense subsp. cladoniae"]]},{"id":"NCBITaxon:460265","l":"Methylobacterium nodulans ORS 2060","na":1,"nb":2,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["NCBITaxon%3A114616","Methylobacterium nodulans"],["NCBITaxon%3A460265","Methylobacterium nodulans ORS 2060"]]},{"id":"NCBITaxon:463191","l":"Streptomyces sviceus ATCC 29083","na":1,"nb":2,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A463191","Streptomyces sviceus ATCC 29083"]]},{"id":"NCBITaxon:465817","l":"Erwinia tasmaniensis Et1/99","na":1,"nb":2,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A338565","Erwinia tasmaniensis"],["NCBITaxon%3A465817","Erwinia tasmaniensis Et1/99"]]},{"id":"NCBITaxon:46609","l":"Clostridium pascui","na":2,"nb":1,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A46609","Clostridium pascui"]]},{"id":"NCBITaxon:466153","l":"Singulisphaera acidiphila","na":1,"nb":2,"a":[["marsh-envo-00000035.html","marsh"]],"b":[["NCBITaxon%3A466153","Singulisphaera acidiphila"],["NCBITaxon%3A886293","Singulisphaera acidiphila DSM 18658"]]},{"id":"NCBITaxon:467705","l":"Streptococcus gordonii (strain Challis / ATCC 35105 / BCRC 15272 / CH1 / DL1 / V288)","na":2,"nb":1,"a":[["dental-plaque-bto-0000338.html","dental plaque"],["tooth-bto-0000397.html","tooth"]],"b":[["NCBITaxon%3A467705","Streptococcus gordonii str. Challis substr. CH1"]]},{"id":"NCBITaxon:468911","l":"Liquorilactobacillus hordei","na":1,"nb":2,"a":[["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A468911","Liquorilactobacillus hordei"],["NCBITaxon%3A1423759","Liquorilactobacillus hordei DSM 19519"]]},{"id":"NCBITaxon:469381","l":"Dethiosulfovibrio peptidovorans DSM 11002","na":1,"nb":2,"a":[["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A47055","Dethiosulfovibrio peptidovorans"],["NCBITaxon%3A469381","Dethiosulfovibrio peptidovorans DSM 11002"]]},{"id":"NCBITaxon:469547","l":"Aquamicrobium segne","na":1,"nb":2,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"]],"b":[["NCBITaxon%3A469547","Aquamicrobium segne"],["NCBITaxon%3A66876","Streptomyces chattanoogensis"]]},{"id":"NCBITaxon:470864","l":"Gracilibacillus halophilus","na":1,"nb":2,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A470864","Gracilibacillus halophilus"],["NCBITaxon%3A1308866","Gracilibacillus halophilus YIM-C55.5"]]},{"id":"NCBITaxon:470866","l":"Salinimicrobium terrae","na":1,"nb":2,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A470866","Salinimicrobium terrae"],["NCBITaxon%3A1123234","Salinimicrobium terrae DSM 17865"]]},{"id":"NCBITaxon:471855","l":"Slackia heliotrinireducens DSM 20476","na":1,"nb":2,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["NCBITaxon%3A84110","Slackia heliotrinireducens"],["NCBITaxon%3A471855","Slackia heliotrinireducens DSM 20476"]]},{"id":"NCBITaxon:471875","l":"[Ruminococcus] lactaris ATCC 29176","na":1,"nb":2,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A46228","[Ruminococcus] lactaris"],["NCBITaxon%3A471875","[Ruminococcus] lactaris ATCC 29176"]]},{"id":"NCBITaxon:474950","l":"Granulicella pectinivorans","na":2,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A474950","Granulicella pectinivorans"]]},{"id":"NCBITaxon:474952","l":"Granulicella rosea","na":2,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A474952","Granulicella rosea"]]},{"id":"NCBITaxon:475253","l":"Pedobacter alluvionis","na":2,"nb":1,"a":[["watercourse-envo-00000029.html","watercourse"],["flood-plain-envo-00000255.html","flood plain"]],"b":[["NCBITaxon%3A475253","Pedobacter alluvionis"]]},{"id":"NCBITaxon:477666","l":"Bacteroides graminisolvens","na":1,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A477666","Bacteroides graminisolvens"],["NCBITaxon%3A1121097","Bacteroides graminisolvens DSM 19988 = JCM 15093"]]},{"id":"NCBITaxon:478","l":"Moraxella nonliquefaciens","na":1,"nb":2,"a":[["disease-habitatmech-bacdive-c659c7e939.html","Disease"]],"b":[["NCBITaxon%3A478","Moraxella nonliquefaciens"],["NCBITaxon%3A1441929","Moraxella nonliquefaciens DSM 6327"]]},{"id":"NCBITaxon:479430","l":"Actinospica robiniae DSM 44927","na":1,"nb":2,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A304901","Actinospica robiniae"],["NCBITaxon%3A479430","Actinospica robiniae DSM 44927"]]},{"id":"NCBITaxon:47958","l":"Methylorubrum thiocyanatum","na":1,"nb":2,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A47958","Methylorubrum thiocyanatum"],["NCBITaxon%3A1236972","Methylorubrum thiocyanatum JCM 10893"]]},{"id":"NCBITaxon:480418","l":"Mycobacterium lepromatosis","na":2,"nb":1,"a":[["peripheral-nervous-system-bto-0001028.html","peripheral nervous system"],["schwann-cell-bto-0001220.html","Schwann cell"]],"b":[["NCBITaxon%3A480418","Mycobacterium lepromatosis"]]},{"id":"NCBITaxon:481138","l":"Bartonella queenslandensis","na":1,"nb":2,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["NCBITaxon%3A481138","Bartonella queenslandensis"],["NCBITaxon%3A1221525","Bartonella queenslandensis AUST/NH15"]]},{"id":"NCBITaxon:481139","l":"Bartonella rattaustraliani","na":1,"nb":2,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["NCBITaxon%3A481139","Bartonella rattaustraliani"],["NCBITaxon%3A1205681","Bartonella rattaustraliani AUST/NH4"]]},{"id":"NCBITaxon:484019","l":"","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A2421","Thermosipho africanus"],["NCBITaxon%3A484019","Thermosipho africanus TCF52B"]]},{"id":"NCBITaxon:485371","l":"Bacillus sp. FSL_h8473","na":2,"nb":1,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A485371","Bacillus sp. FSL_h8473"]]},{"id":"NCBITaxon:485913","l":"Ktedonobacter racemifer DSM 44963","na":1,"nb":2,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"]],"b":[["NCBITaxon%3A363277","Ktedonobacter racemifer"],["NCBITaxon%3A485913","Ktedonobacter racemifer DSM 44963"]]},{"id":"NCBITaxon:485916","l":"Desulfofarcimen acetoxidans DSM 771","na":1,"nb":2,"a":[["animal-waste-material-envo-00002276.html","animal waste material"]],"b":[["NCBITaxon%3A58138","Desulfofarcimen acetoxidans"],["NCBITaxon%3A485916","Desulfofarcimen acetoxidans DSM 771"]]},{"id":"NCBITaxon:487796","l":"Flavobacteria bacterium MS024-2A","na":2,"nb":1,"a":[["marine-neritic-zone-envo-00000206.html","marine neritic zone"],["coastal-plain-envo-00000090.html","coastal plain"]],"b":[["NCBITaxon%3A487796","Flavobacteria bacterium MS024-2A"]]},{"id":"NCBITaxon:487797","l":"Flavobacteria bacterium MS024-3C","na":2,"nb":1,"a":[["marine-neritic-zone-envo-00000206.html","marine neritic zone"],["coastal-plain-envo-00000090.html","coastal plain"]],"b":[["NCBITaxon%3A487797","Flavobacteria bacterium MS024-3C"]]},{"id":"NCBITaxon:48935","l":"Novosphingobium aromaticivorans","na":1,"nb":2,"a":[["savanna-envo-00000261.html","savanna"]],"b":[["NCBITaxon%3A48935","Novosphingobium aromaticivorans"],["NCBITaxon%3A279238","Novosphingobium aromaticivorans DSM 12444"]]},{"id":"NCBITaxon:490899","l":"Desulfurococcus amylolyticus 1221n","na":1,"nb":2,"a":[["shoreline-envo-00000486.html","shoreline"]],"b":[["NCBITaxon%3A94694","Desulfurococcus amylolyticus"],["NCBITaxon%3A490899","Desulfurococcus amylolyticus 1221n"]]},{"id":"NCBITaxon:491069","l":"Mesorhizobium sp. F28","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A491069","Mesorhizobium sp. F28"]]},{"id":"NCBITaxon:491952","l":"Marinomonas posidonica IVIA-Po-181","na":1,"nb":2,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["NCBITaxon%3A936476","Marinomonas posidonica"],["NCBITaxon%3A491952","Marinomonas posidonica IVIA-Po-181"]]},{"id":"NCBITaxon:49319","l":"Rubrobacter xylanophilus","na":1,"nb":2,"a":[["village-biome-envo-01000246.html","village biome"]],"b":[["NCBITaxon%3A49319","Rubrobacter xylanophilus"],["NCBITaxon%3A266117","Rubrobacter xylanophilus DSM 9941"]]},{"id":"NCBITaxon:497689","l":"Streptomyces sp. SNA15896","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A497689","Streptomyces sp. SNA15896"]]},{"id":"NCBITaxon:497965","l":"","na":2,"nb":1,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["NCBITaxon%3A497965","Gloeothece verrucosa PCC 7822"]]},{"id":"NCBITaxon:498211","l":"Cellvibrio japonicus (strain Ueda107)","na":1,"nb":2,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A155077","Cellvibrio japonicus"],["NCBITaxon%3A498211","Cellvibrio japonicus Ueda107"]]},{"id":"NCBITaxon:499171","l":"Helicobacter pylori HPKX_438_AG0C1","na":2,"nb":1,"a":[["gastric-epithelium-bto-0000500.html","gastric epithelium"],["gastric-epithelium-cell-line-bto-0004493.html","gastric epithelium cell line"]],"b":[["NCBITaxon%3A499171","Helicobacter pylori HPKX_438_AG0C1"]]},{"id":"NCBITaxon:499172","l":"Helicobacter pylori HPKX_438_CA4C1","na":2,"nb":1,"a":[["gastric-epithelium-bto-0000500.html","gastric epithelium"],["gastric-epithelium-cell-line-bto-0004493.html","gastric epithelium cell line"]],"b":[["NCBITaxon%3A499172","Helicobacter pylori HPKX_438_CA4C1"]]},{"id":"NCBITaxon:500","l":"Thermomicrobium roseum","na":1,"nb":2,"a":[["village-biome-envo-01000246.html","village biome"]],"b":[["NCBITaxon%3A500","Thermomicrobium roseum"],["NCBITaxon%3A309801","Thermomicrobium roseum DSM 5159"]]},{"id":"NCBITaxon:500485","l":"Penicillium rubens Wisconsin 54-1255","na":2,"nb":1,"a":[["finger-bto-0004669.html","finger"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A500485","Penicillium rubens Wisconsin 54-1255"]]},{"id":"NCBITaxon:500632","l":"[Clostridium] nexile DSM 1787","na":1,"nb":2,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["NCBITaxon%3A500632","[Clostridium] nexile DSM 1787"],["NCBITaxon%3A29361","Faecalimonas nexilis"]]},{"id":"NCBITaxon:501023","l":"Glaciibacter superstes","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A501023","Glaciibacter superstes"],["NCBITaxon%3A1121924","Glaciibacter superstes DSM 21135"]]},{"id":"NCBITaxon:50339","l":"Thermoplasma volcanium","na":1,"nb":2,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A50339","Thermoplasma volcanium"],["NCBITaxon%3A273116","Thermoplasma volcanium GSS1"]]},{"id":"NCBITaxon:504474","l":"Corynebacterium urealyticum DSM 7109","na":1,"nb":2,"a":[["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["NCBITaxon%3A43771","Corynebacterium urealyticum"],["NCBITaxon%3A504474","Corynebacterium urealyticum DSM 7109"]]},{"id":"NCBITaxon:508451","l":"Lactobacillus taiwanensis","na":1,"nb":2,"a":[["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["NCBITaxon%3A508451","Lactobacillus taiwanensis"],["NCBITaxon%3A1423809","Lactobacillus taiwanensis DSM 21401"]]},{"id":"NCBITaxon:509190","l":"Caulobacter segnis ATCC 21756","na":1,"nb":2,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A88688","Caulobacter segnis"],["NCBITaxon%3A509190","Caulobacter segnis ATCC 21756"]]},{"id":"NCBITaxon:511680","l":"Eshraghiella crossota DSM 2876","na":1,"nb":2,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A45851","Eshraghiella crossota"],["NCBITaxon%3A511680","Eshraghiella crossota DSM 2876"]]},{"id":"NCBITaxon:51173","l":"Ureibacillus thermosphaericus","na":1,"nb":2,"a":[["landfill-envo-00000533.html","landfill"]],"b":[["NCBITaxon%3A51173","Ureibacillus thermosphaericus"],["NCBITaxon%3A1160707","Ureibacillus thermosphaericus str. Thermo-BF"]]},{"id":"NCBITaxon:515619","l":"Agathobacter rectalis ATCC 33656","na":1,"nb":2,"a":[["gut-epithelium-bto-0000956.html","gut epithelium"]],"b":[["NCBITaxon%3A39491","Agathobacter rectalis"],["NCBITaxon%3A515619","Agathobacter rectalis ATCC 33656"]]},{"id":"NCBITaxon:515620","l":"Lachnospira eligens ATCC 27750","na":1,"nb":2,"a":[["gut-epithelium-bto-0000956.html","gut epithelium"]],"b":[["NCBITaxon%3A39485","Lachnospira eligens"],["NCBITaxon%3A515620","Lachnospira eligens ATCC 27750"]]},{"id":"NCBITaxon:517417","l":"","na":1,"nb":2,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A274539","Chlorobaculum parvum"],["NCBITaxon%3A517417","Chlorobaculum parvum NCIB 8327"]]},{"id":"NCBITaxon:518766","l":"Rhodothermus marinus DSM 4252","na":1,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["NCBITaxon%3A29549","Rhodothermus marinus"],["NCBITaxon%3A518766","Rhodothermus marinus DSM 4252"]]},{"id":"NCBITaxon:519442","l":"Halorhabdus utahensis DSM 12940","na":1,"nb":2,"a":[["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A146826","Halorhabdus utahensis"],["NCBITaxon%3A519442","Halorhabdus utahensis DSM 12940"]]},{"id":"NCBITaxon:520461","l":"Brucella pinnipedialis B2/94","na":1,"nb":2,"a":[["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["NCBITaxon%3A120576","Brucella pinnipedialis"],["NCBITaxon%3A520461","Brucella pinnipedialis B2/94"]]},{"id":"NCBITaxon:520463","l":"Brucella pinnipedialis M163/99/10","na":2,"nb":1,"a":[["lagoon-envo-00000038.html","lagoon"],["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A520463","Brucella pinnipedialis M163/99/10"]]},{"id":"NCBITaxon:520488","l":"Brucella suis bv. 4 str. 40","na":2,"nb":1,"a":[["sea-envo-00000016.html","sea"],["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A520488","Brucella suis bv. 4 str. 40"]]},{"id":"NCBITaxon:521011","l":"Methanosphaerula palustris E1-9c","na":1,"nb":2,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A475088","Methanosphaerula palustris"],["NCBITaxon%3A521011","Methanosphaerula palustris E1-9c"]]},{"id":"NCBITaxon:521095","l":"Lancefieldella parvula DSM 20469","na":1,"nb":2,"a":[["lagoon-envo-00000038.html","lagoon"]],"b":[["NCBITaxon%3A1382","Lancefieldella parvula"],["NCBITaxon%3A521095","Lancefieldella parvula DSM 20469"]]},{"id":"NCBITaxon:522772","l":"Denitrovibrio acetiphilus DSM 12809","na":1,"nb":2,"a":[["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A118000","Denitrovibrio acetiphilus"],["NCBITaxon%3A522772","Denitrovibrio acetiphilus DSM 12809"]]},{"id":"NCBITaxon:523845","l":"Methanothermococcus thermolithotrophicus DSM 2095","na":1,"nb":2,"a":[["beach-envo-00000091.html","beach"]],"b":[["NCBITaxon%3A2186","Methanothermococcus thermolithotrophicus"],["NCBITaxon%3A523845","Methanothermococcus thermolithotrophicus DSM 2095"]]},{"id":"NCBITaxon:523850","l":"Thermococcus onnurineus NA1","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A342948","Thermococcus onnurineus"],["NCBITaxon%3A523850","Thermococcus onnurineus NA1"]]},{"id":"NCBITaxon:525245","l":"Gleimia coleocanis DSM 15436","na":1,"nb":2,"a":[["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A103618","Gleimia coleocanis"],["NCBITaxon%3A525245","Gleimia coleocanis DSM 15436"]]},{"id":"NCBITaxon:525246","l":"Actinomyces urogenitalis DSM 15434","na":1,"nb":2,"a":[["vaginal-fluid-uberon-0036243.html","vaginal fluid"]],"b":[["NCBITaxon%3A103621","Actinomyces urogenitalis"],["NCBITaxon%3A525246","Actinomyces urogenitalis DSM 15434"]]},{"id":"NCBITaxon:525254","l":"Anaerococcus lactolyticus ATCC 51172","na":1,"nb":2,"a":[["vaginal-fluid-uberon-0036243.html","vaginal fluid"]],"b":[["NCBITaxon%3A33032","Anaerococcus lactolyticus"],["NCBITaxon%3A525254","Anaerococcus lactolyticus ATCC 51172"]]},{"id":"NCBITaxon:525264","l":"Corynebacterium pseudogenitalium ATCC 33035","na":1,"nb":2,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A525264","Corynebacterium pseudogenitalium ATCC 33035"],["NCBITaxon%3A38304","Corynebacterium tuberculostearicum"]]},{"id":"NCBITaxon:525367","l":"Listeria grayi DSM 20601","na":1,"nb":2,"a":[["city-envo-00000856.html","city"]],"b":[["NCBITaxon%3A1641","Listeria grayi"],["NCBITaxon%3A525367","Listeria grayi DSM 20601"]]},{"id":"NCBITaxon:525370","l":"Prescottella equi ATCC 33707","na":1,"nb":2,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A43767","Prescottella equi"],["NCBITaxon%3A525370","Prescottella equi ATCC 33707"]]},{"id":"NCBITaxon:525372","l":"Sphingobacterium spiritivorum ATCC 33300","na":1,"nb":2,"a":[["vaginal-fluid-uberon-0036243.html","vaginal fluid"]],"b":[["NCBITaxon%3A258","Sphingobacterium spiritivorum"],["NCBITaxon%3A525372","Sphingobacterium spiritivorum ATCC 33300"]]},{"id":"NCBITaxon:52560","l":"Desulfomicrobium apsheronum","na":2,"nb":1,"a":[["black-smoker-envo-00000218.html","black smoker"],["volcanic-rock-envo-00002015.html","volcanic rock"]],"b":[["NCBITaxon%3A52560","Desulfomicrobium apsheronum"]]},{"id":"NCBITaxon:525898","l":"Sulfurospirillum deleyianum DSM 6946","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A65553","Sulfurospirillum deleyianum"],["NCBITaxon%3A525898","Sulfurospirillum deleyianum DSM 6946"]]},{"id":"NCBITaxon:52598","l":"Sulfitobacter sp. EE-36","na":1,"nb":2,"a":[["pulp-bto-0001142.html","pulp"]],"b":[["NCBITaxon%3A1903071","Sulfitobacter sp."],["NCBITaxon%3A52598","Sulfitobacter sp. EE-36"]]},{"id":"NCBITaxon:526221","l":"Verticillium alfalfae VaMs.102","na":2,"nb":1,"a":[["vascular-system-bto-0001085.html","vascular system"],["xylem-bto-0001468.html","xylem"]],"b":[["NCBITaxon%3A526221","Verticillium alfalfae VaMs.102"]]},{"id":"NCBITaxon:52690","l":"Acetobacterium carbinolicum","na":1,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A52690","Acetobacterium carbinolicum"],["NCBITaxon%3A346376","Acetobacterium carbinolicum subsp. kysingense"]]},{"id":"NCBITaxon:52774","l":"Actinomyces slackii","na":1,"nb":2,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["NCBITaxon%3A52774","Actinomyces slackii"],["NCBITaxon%3A1278298","Actinomyces slackii ATCC 49928"]]},{"id":"NCBITaxon:529086","l":"Chitinilyticum litopenaei DSM 21440","na":1,"nb":2,"a":[["pond-envo-00000033.html","pond"]],"b":[["NCBITaxon%3A1121276","Chitinilyticum litopenaei"],["NCBITaxon%3A529086","Chitinilyticum litopenaei DSM 21440"]]},{"id":"NCBITaxon:529507","l":"","na":2,"nb":1,"a":[["needle-bto-0000917.html","needle"],["spinal-cord-bto-0001279.html","spinal cord"]],"b":[["NCBITaxon%3A529507","Proteus mirabilis HI4320"]]},{"id":"NCBITaxon:53254","l":"Allobosea thiooxidans","na":1,"nb":2,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A132928","Allobosea aff. thiooxidans 1.10"],["NCBITaxon%3A53254","Allobosea thiooxidans"]]},{"id":"NCBITaxon:53344","l":"Staphylococcus delphini","na":1,"nb":2,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"]],"b":[["NCBITaxon%3A53344","Staphylococcus delphini"],["NCBITaxon%3A1141105","Staphylococcus delphini 8086"]]},{"id":"NCBITaxon:53445","l":"","na":1,"nb":2,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A53445","Streptomyces canescens"]]},{"id":"NCBITaxon:53463","l":"Paracoccus solventivorans","na":2,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A53463","Paracoccus solventivorans"]]},{"id":"NCBITaxon:535025","l":"Bacillus subtilis subsp. subtilis str. JH642","na":1,"nb":2,"a":[["archeological-site-envo-00000564.html","archeological site"]],"b":[["NCBITaxon%3A535025","Bacillus subtilis subsp. subtilis str. JH642"],["NCBITaxon%3A1232554","Bacillus subtilis subsp. subtilis str. JH642 substr. AG174"]]},{"id":"NCBITaxon:535289","l":"[Acidovorax] ebreus TPSY","na":2,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A535289","[Acidovorax] ebreus TPSY"]]},{"id":"NCBITaxon:536019","l":"Mesorhizobium opportunistum WSM2075","na":1,"nb":2,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["NCBITaxon%3A593909","Mesorhizobium opportunistum"],["NCBITaxon%3A536019","Mesorhizobium opportunistum WSM2075"]]},{"id":"NCBITaxon:536231","l":"Roseburia intestinalis L1-82","na":1,"nb":2,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["NCBITaxon%3A166486","Roseburia intestinalis"],["NCBITaxon%3A536231","Roseburia intestinalis L1-82"]]},{"id":"NCBITaxon:537013","l":"[Clostridium] methylpentosum DSM 5476","na":1,"nb":2,"a":[["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["NCBITaxon%3A84026","[Clostridium] methylpentosum"],["NCBITaxon%3A537013","[Clostridium] methylpentosum DSM 5476"]]},{"id":"NCBITaxon:537210","l":"Mycobacterium tuberculosis T17","na":2,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A537210","Mycobacterium tuberculosis T17"]]},{"id":"NCBITaxon:54063","l":"Actinopolyspora sp.","na":2,"nb":1,"a":[["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["NCBITaxon%3A54063","Actinopolyspora sp."]]},{"id":"NCBITaxon:54121","l":"Halanaerobium congolense","na":2,"nb":1,"a":[["brine-pool-envo-00000369.html","brine pool"],["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["NCBITaxon%3A54121","Halanaerobium congolense"]]},{"id":"NCBITaxon:543728","l":"Variovorax paradoxus S110","na":2,"nb":1,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"]],"b":[["NCBITaxon%3A543728","Variovorax paradoxus S110"]]},{"id":"NCBITaxon:545534","l":"Carnobacterium jeotgali","na":1,"nb":2,"a":[["food-product-foodon-00001002.html","food product"]],"b":[["NCBITaxon%3A545534","Carnobacterium jeotgali"],["NCBITaxon%3A1449340","Carnobacterium jeotgali MS3"]]},{"id":"NCBITaxon:545696","l":"Holdemania filiformis DSM 12042","na":1,"nb":2,"a":[["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["NCBITaxon%3A61171","Holdemania filiformis"],["NCBITaxon%3A545696","Holdemania filiformis DSM 12042"]]},{"id":"NCBITaxon:547558","l":"Methanohalophilus mahii DSM 5219","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A2176","Methanohalophilus mahii"],["NCBITaxon%3A547558","Methanohalophilus mahii DSM 5219"]]},{"id":"NCBITaxon:548476","l":"Corynebacterium aurimucosum ATCC 700975","na":1,"nb":2,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A169292","Corynebacterium aurimucosum"],["NCBITaxon%3A548476","Corynebacterium aurimucosum ATCC 700975"]]},{"id":"NCBITaxon:548477","l":"Corynebacterium glucuronolyticum ATCC 51867","na":2,"nb":1,"a":[["semen-bto-0001230.html","semen"],["urethra-bto-0001426.html","urethra"]],"b":[["NCBITaxon%3A548477","Corynebacterium glucuronolyticum ATCC 51867"]]},{"id":"NCBITaxon:548579","l":"Isoptericola jiangsuensis","na":2,"nb":1,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A548579","Isoptericola jiangsuensis"]]},{"id":"NCBITaxon:550984","l":"Halomonas sp. HAL1","na":2,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"],["oceanic-sea-surface-microlayer-biome-envo-01000034.html","oceanic sea surface microlayer biome"]],"b":[["NCBITaxon%3A550984","Halomonas sp. HAL1"]]},{"id":"NCBITaxon:551275","l":"Hirschia maritima DSM 19733","na":1,"nb":2,"a":[["beach-envo-00000091.html","beach"]],"b":[["NCBITaxon%3A1121961","Hirschia maritima"],["NCBITaxon%3A551275","Hirschia maritima DSM 19733"]]},{"id":"NCBITaxon:551760","l":"Aromatoleum aromaticum","na":1,"nb":2,"a":[["watercourse-envo-00000029.html","watercourse"]],"b":[["NCBITaxon%3A551760","Aromatoleum aromaticum"],["NCBITaxon%3A76114","Aromatoleum aromaticum EbN1"]]},{"id":"NCBITaxon:551789","l":"Ponticaulis koreensis DSM 19734","na":1,"nb":2,"a":[["beach-envo-00000091.html","beach"]],"b":[["NCBITaxon%3A1123045","Ponticaulis koreensis"],["NCBITaxon%3A551789","Ponticaulis koreensis DSM 19734"]]},{"id":"NCBITaxon:55209","l":"Pantoea cypripedii","na":2,"nb":1,"a":[["leaf-po-0025034.html","leaf"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A55209","Pantoea cypripedii"]]},{"id":"NCBITaxon:553174","l":"Prevotella melaninogenica ATCC 25845","na":1,"nb":2,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A28132","Prevotella melaninogenica"],["NCBITaxon%3A553174","Prevotella melaninogenica ATCC 25845"]]},{"id":"NCBITaxon:553184","l":"Lancefieldella rimae ATCC 49626","na":1,"nb":2,"a":[["gingiva-bto-0000519.html","gingiva"]],"b":[["NCBITaxon%3A1383","Lancefieldella rimae"],["NCBITaxon%3A553184","Lancefieldella rimae ATCC 49626"]]},{"id":"NCBITaxon:555079","l":"Thermosediminibacter oceani DSM 16646","na":1,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A291990","Thermosediminibacter oceani"],["NCBITaxon%3A555079","Thermosediminibacter oceani DSM 16646"]]},{"id":"NCBITaxon:555512","l":"Salipiger marinus","na":1,"nb":2,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["NCBITaxon%3A537017","Kaistia terrae"],["NCBITaxon%3A555512","Salipiger marinus"]]},{"id":"NCBITaxon:555778","l":"","na":1,"nb":2,"a":[["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["NCBITaxon%3A927","Halothiobacillus neapolitanus"],["NCBITaxon%3A555778","Halothiobacillus neapolitanus c2"]]},{"id":"NCBITaxon:556484","l":"","na":2,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["NCBITaxon%3A556484","Phaeodactylum tricornutum CCAP 1055/1"]]},{"id":"NCBITaxon:557599","l":"Mycobacterium kansasii ATCC 12478","na":1,"nb":2,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A1768","Mycobacterium kansasii"],["NCBITaxon%3A557599","Mycobacterium kansasii ATCC 12478"]]},{"id":"NCBITaxon:558173","l":"Corynebacterium doosanense CAU 212 = DSM 45436","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A1121358","Corynebacterium doosanense"],["NCBITaxon%3A558173","Corynebacterium doosanense CAU 212 = DSM 45436"]]},{"id":"NCBITaxon:562970","l":"Kyrpidia tusciae DSM 2912","na":1,"nb":2,"a":[["pond-envo-00000033.html","pond"]],"b":[["NCBITaxon%3A33943","Kyrpidia tusciae"],["NCBITaxon%3A562970","Kyrpidia tusciae DSM 2912"]]},{"id":"NCBITaxon:563043","l":"Thermococcus sp. AMT11","na":2,"nb":1,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A563043","Thermococcus sp. AMT11"]]},{"id":"NCBITaxon:564423","l":"Pseudomonas tolaasii NCPPB 2192","na":1,"nb":2,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A29442","Pseudomonas tolaasii"],["NCBITaxon%3A564423","Pseudomonas tolaasii NCPPB 2192"]]},{"id":"NCBITaxon:56636","l":"Aeropyrum pernix","na":1,"nb":2,"a":[["fumarole-envo-00000216.html","fumarole"]],"b":[["NCBITaxon%3A56636","Aeropyrum pernix"],["NCBITaxon%3A272557","Aeropyrum pernix K1"]]},{"id":"NCBITaxon:566549","l":"Corynebacterium matruchotii ATCC 33806","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A43768","Corynebacterium matruchotii"],["NCBITaxon%3A566549","Corynebacterium matruchotii ATCC 33806"]]},{"id":"NCBITaxon:56698","l":"Sulfurospirillum arsenophilum","na":1,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A56698","Sulfurospirillum arsenophilum"],["NCBITaxon%3A1349789","Sulfurospirillum arsenophilum NBRC 109478"]]},{"id":"NCBITaxon:568106","l":"Marinobacterium lutimaris","na":1,"nb":2,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["NCBITaxon%3A568106","Marinobacterium lutimaris"],["NCBITaxon%3A657014","Thalassovita taeanensis"]]},{"id":"NCBITaxon:56811","l":"Psychrobacter sp.","na":2,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["NCBITaxon%3A56811","Psychrobacter sp."]]},{"id":"NCBITaxon:569859","l":"Desulfosporosinus hippei","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A569859","Desulfosporosinus hippei"],["NCBITaxon%3A1121419","Desulfosporosinus hippei DSM 8344"]]},{"id":"NCBITaxon:570268","l":"Nocardiopsis potens DSM 45234","na":1,"nb":2,"a":[["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"]],"b":[["NCBITaxon%3A1246458","Nocardiopsis potens"],["NCBITaxon%3A570268","Nocardiopsis potens DSM 45234"]]},{"id":"NCBITaxon:57043","l":"Microbacterium esteraromaticum","na":2,"nb":1,"a":[["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"]],"b":[["NCBITaxon%3A57043","Microbacterium esteraromaticum"]]},{"id":"NCBITaxon:572477","l":"Allochromatium vinosum (strain ATCC 17899 / DSM 180 / NBRC 103801 / NCIMB 10441 / D)","na":1,"nb":2,"a":[["ditch-water-envo-00002158.html","ditch water"]],"b":[["NCBITaxon%3A1049","Allochromatium vinosum"],["NCBITaxon%3A572477","Allochromatium vinosum DSM 180"]]},{"id":"NCBITaxon:572547","l":"Aminobacterium colombiense DSM 12261","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A81468","Aminobacterium colombiense"],["NCBITaxon%3A572547","Aminobacterium colombiense DSM 12261"]]},{"id":"NCBITaxon:573063","l":"Methanocaldococcus infernus ME","na":1,"nb":2,"a":[["shoreline-envo-00000486.html","shoreline"]],"b":[["NCBITaxon%3A67760","Methanocaldococcus infernus"],["NCBITaxon%3A573063","Methanocaldococcus infernus ME"]]},{"id":"NCBITaxon:573065","l":"Asticcacaulis excentricus CB 48","na":1,"nb":2,"a":[["pond-envo-00000033.html","pond"]],"b":[["NCBITaxon%3A78587","Asticcacaulis excentricus"],["NCBITaxon%3A573065","Asticcacaulis excentricus CB 48"]]},{"id":"NCBITaxon:573413","l":"Sediminispirochaeta smaragdinae DSM 11293","na":1,"nb":2,"a":[["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A55206","Sediminispirochaeta smaragdinae"],["NCBITaxon%3A573413","Sediminispirochaeta smaragdinae DSM 11293"]]},{"id":"NCBITaxon:573983","l":"Moraxella porci DSM 25326","na":1,"nb":2,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["NCBITaxon%3A1288392","Moraxella porci"],["NCBITaxon%3A573983","Moraxella porci DSM 25326"]]},{"id":"NCBITaxon:575564","l":"Acinetobacter sp. RUH 2624","na":1,"nb":2,"a":[["thigh-bto-0001376.html","thigh"]],"b":[["NCBITaxon%3A106654","Acinetobacter nosocomialis"],["NCBITaxon%3A575564","Acinetobacter sp. RUH 2624"]]},{"id":"NCBITaxon:575585","l":"Acinetobacter calcoaceticus RUH2202","na":1,"nb":2,"a":[["thigh-bto-0001376.html","thigh"]],"b":[["NCBITaxon%3A471","Acinetobacter calcoaceticus"],["NCBITaxon%3A575585","Acinetobacter calcoaceticus RUH2202"]]},{"id":"NCBITaxon:575586","l":"Acinetobacter johnsonii SH046","na":1,"nb":2,"a":[["thigh-bto-0001376.html","thigh"]],"b":[["NCBITaxon%3A40214","Acinetobacter johnsonii"],["NCBITaxon%3A575586","Acinetobacter johnsonii SH046"]]},{"id":"NCBITaxon:575587","l":"Acinetobacter junii SH205","na":1,"nb":2,"a":[["thigh-bto-0001376.html","thigh"]],"b":[["NCBITaxon%3A40215","Acinetobacter junii"],["NCBITaxon%3A575587","Acinetobacter junii SH205"]]},{"id":"NCBITaxon:575588","l":"Acinetobacter lwoffii SH145","na":1,"nb":2,"a":[["thigh-bto-0001376.html","thigh"]],"b":[["NCBITaxon%3A28090","Acinetobacter lwoffii"],["NCBITaxon%3A575588","Acinetobacter lwoffii SH145"]]},{"id":"NCBITaxon:575589","l":"Acinetobacter radioresistens SH164","na":1,"nb":2,"a":[["thigh-bto-0001376.html","thigh"]],"b":[["NCBITaxon%3A40216","Acinetobacter radioresistens"],["NCBITaxon%3A575589","Acinetobacter radioresistens SH164"]]},{"id":"NCBITaxon:579922","l":"Indibacter alkaliphilus","na":1,"nb":2,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A579922","Indibacter alkaliphilus"],["NCBITaxon%3A1189612","Indibacter alkaliphilus LW1"]]},{"id":"NCBITaxon:582855","l":"Streptomyces haliclonae","na":1,"nb":2,"a":[["shoreline-envo-00000486.html","shoreline"]],"b":[["NCBITaxon%3A582855","Streptomyces haliclonae"],["NCBITaxon%3A582854","Streptomyces marinus"]]},{"id":"NCBITaxon:58314","l":"Rhodovulum strictum","na":2,"nb":1,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A58314","Rhodovulum strictum"]]},{"id":"NCBITaxon:583345","l":"Methylotenera mobilis JLW8","na":1,"nb":2,"a":[["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A359408","Methylotenera mobilis"],["NCBITaxon%3A583345","Methylotenera mobilis JLW8"]]},{"id":"NCBITaxon:584708","l":"Aminomonas paucivorans DSM 12260","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A81412","Aminomonas paucivorans"],["NCBITaxon%3A584708","Aminomonas paucivorans DSM 12260"]]},{"id":"NCBITaxon:585054","l":"Escherichia fergusonii ATCC 35469","na":1,"nb":2,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A564","Escherichia fergusonii"],["NCBITaxon%3A585054","Escherichia fergusonii ATCC 35469"]]},{"id":"NCBITaxon:5851","l":"Plasmodium knowlesi strain H","na":2,"nb":1,"a":[["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["hypnozoite-bto-0003594.html","hypnozoite"]],"b":[["NCBITaxon%3A5851","Plasmodium knowlesi strain H"]]},{"id":"NCBITaxon:585501","l":"Oribacterium sinus F0268","na":2,"nb":1,"a":[["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"]],"b":[["NCBITaxon%3A585501","Oribacterium sinus F0268"]]},{"id":"NCBITaxon:585528","l":"Gardnerella vaginalis ATCC 14018 = JCM 11026","na":1,"nb":2,"a":[["vaginal-fluid-uberon-0036243.html","vaginal fluid"]],"b":[["NCBITaxon%3A2702","Gardnerella vaginalis"],["NCBITaxon%3A585528","Gardnerella vaginalis ATCC 14018 = JCM 11026"]]},{"id":"NCBITaxon:585531","l":"Aeromicrobium marinum DSM 15272","na":1,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A219314","Aeromicrobium marinum"],["NCBITaxon%3A585531","Aeromicrobium marinum DSM 15272"]]},{"id":"NCBITaxon:58621","l":"Desulfovibrio intestinalis","na":1,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A58621","Desulfovibrio intestinalis"],["NCBITaxon%3A1121454","Desulfovibrio intestinalis DSM 11275"]]},{"id":"NCBITaxon:588067","l":"Prauserella muralis","na":2,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"],["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A588067","Prauserella muralis"]]},{"id":"NCBITaxon:588857","l":"Thermoanaerobacter sp. X561","na":2,"nb":1,"a":[["ocean-trench-envo-00000275.html","ocean trench"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A588857","Thermoanaerobacter sp. X561"]]},{"id":"NCBITaxon:589924","l":"Ferroglobus placidus DSM 10642","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A54261","Ferroglobus placidus"],["NCBITaxon%3A589924","Ferroglobus placidus DSM 10642"]]},{"id":"NCBITaxon:592015","l":"Acetomicrobium hydrogeniformans ATCC BAA-1850","na":1,"nb":2,"a":[["village-biome-envo-01000246.html","village biome"]],"b":[["NCBITaxon%3A649746","Acetomicrobium hydrogeniformans"],["NCBITaxon%3A592015","Acetomicrobium hydrogeniformans ATCC BAA-1850"]]},{"id":"NCBITaxon:592031","l":"Eubacterium saphenum ATCC 49989","na":1,"nb":2,"a":[["archeological-site-envo-00000564.html","archeological site"]],"b":[["NCBITaxon%3A51123","[Eubacterium] saphenum"],["NCBITaxon%3A592031","Eubacterium saphenum ATCC 49989"]]},{"id":"NCBITaxon:592205","l":"Helicobacter pylori B38","na":2,"nb":1,"a":[["b-lymphocyte-bto-0000776.html","B-lymphocyte"],["duodenum-bto-0000365.html","duodenum"]],"b":[["NCBITaxon%3A592205","Helicobacter pylori B38"]]},{"id":"NCBITaxon:593117","l":"Thermococcus gammatolerans EJ3","na":1,"nb":2,"a":[["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A187878","Thermococcus gammatolerans"],["NCBITaxon%3A593117","Thermococcus gammatolerans EJ3"]]},{"id":"NCBITaxon:594679","l":"Allofrancisella guangzhouensis","na":2,"nb":1,"a":[["air-conditioning-unit-envo-00002874.html","air conditioning unit"],["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A594679","Allofrancisella guangzhouensis"]]},{"id":"NCBITaxon:595453","l":"Rhodopirellula sp. SM50","na":2,"nb":1,"a":[["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"]],"b":[["NCBITaxon%3A595453","Rhodopirellula sp. SM50"]]},{"id":"NCBITaxon:595497","l":"Brucella ceti str. Cudo","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A595497","Brucella ceti str. Cudo"]]},{"id":"NCBITaxon:596153","l":"Alicycliphilus denitrificans BC","na":1,"nb":2,"a":[["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A179636","Alicycliphilus denitrificans"],["NCBITaxon%3A596153","Alicycliphilus denitrificans BC"]]},{"id":"NCBITaxon:59843","l":"Paenibacillus glucanolyticus","na":1,"nb":2,"a":[["pulp-bto-0001142.html","pulp"]],"b":[["NCBITaxon%3A59843","Paenibacillus glucanolyticus"],["NCBITaxon%3A1349777","Paenibacillus glucanolyticus NBRC 15330"]]},{"id":"NCBITaxon:598660","l":"Corynebacterium pyruviciproducens","na":1,"nb":2,"a":[["bone-element-uberon-0001474.html","bone element"]],"b":[["NCBITaxon%3A598660","Corynebacterium pyruviciproducens"],["NCBITaxon%3A1125779","Corynebacterium pyruviciproducens ATCC BAA-1742"]]},{"id":"NCBITaxon:600645","l":"Aeromonas piscicola","na":2,"nb":1,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["NCBITaxon%3A600645","Aeromonas piscicola"]]},{"id":"NCBITaxon:600809","l":"Blattabacterium sp. (Periplaneta americana) str. BPLAN","na":2,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A600809","Blattabacterium sp. (Periplaneta americana) str. BPLAN"]]},{"id":"NCBITaxon:60133","l":"Prevotella pallens","na":1,"nb":2,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["NCBITaxon%3A60133","Prevotella pallens"],["NCBITaxon%3A997353","Prevotella pallens ATCC 700821"]]},{"id":"NCBITaxon:60443","l":"Terrabacter tumescens","na":2,"nb":1,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A60443","Terrabacter tumescens"]]},{"id":"NCBITaxon:60548","l":"Paraburkholderia graminis","na":1,"nb":2,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A60548","Paraburkholderia graminis"],["NCBITaxon%3A396598","Paraburkholderia graminis C4D1M"]]},{"id":"NCBITaxon:60550","l":"Burkholderia pyrrocinia","na":1,"nb":2,"a":[["seedling-bto-0001228.html","seedling"]],"b":[["NCBITaxon%3A60550","Burkholderia pyrrocinia"],["NCBITaxon%3A1212819","Burkholderia pyrrocinia CH-67"]]},{"id":"NCBITaxon:60890","l":"Phaeobacter gallaeciensis","na":1,"nb":2,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A60890","Phaeobacter gallaeciensis"],["NCBITaxon%3A1423144","Phaeobacter gallaeciensis DSM 26640"]]},{"id":"NCBITaxon:60894","l":"Saccharopolyspora spinosa","na":1,"nb":2,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A60894","Saccharopolyspora spinosa"],["NCBITaxon%3A994479","Saccharopolyspora spinosa NRRL 18395"]]},{"id":"NCBITaxon:610130","l":"[Clostridium] saccharolyticum WM1","na":1,"nb":2,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A610130","[Clostridium] saccharolyticum WM1"],["NCBITaxon%3A84030","Lacrimispora saccharolytica"]]},{"id":"NCBITaxon:616997","l":"Hoyosella altamirensis","na":2,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["cave-envo-00000067.html","cave"]],"b":[["NCBITaxon%3A616997","Hoyosella altamirensis"]]},{"id":"NCBITaxon:622312","l":"Roseburia inulinivorans DSM 16841","na":1,"nb":2,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["NCBITaxon%3A360807","Roseburia inulinivorans"],["NCBITaxon%3A622312","Roseburia inulinivorans DSM 16841"]]},{"id":"NCBITaxon:623280","l":"Parapedobacter luteus","na":2,"nb":1,"a":[["sewage-envo-00002018.html","sewage"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["NCBITaxon%3A623280","Parapedobacter luteus"]]},{"id":"NCBITaxon:623281","l":"Parapedobacter composti","na":2,"nb":1,"a":[["sewage-envo-00002018.html","sewage"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["NCBITaxon%3A623281","Parapedobacter composti"]]},{"id":"NCBITaxon:626418","l":"Burkholderia glumae BGR1","na":2,"nb":1,"a":[["panicle-bto-0005436.html","panicle"],["seedling-bto-0001228.html","seedling"]],"b":[["NCBITaxon%3A626418","Burkholderia glumae BGR1"]]},{"id":"NCBITaxon:629741","l":"Kingella oralis ATCC 51147","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A505","Kingella oralis"],["NCBITaxon%3A629741","Kingella oralis ATCC 51147"]]},{"id":"NCBITaxon:630403","l":"Tomitella biformata","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A630403","Tomitella biformata"],["NCBITaxon%3A1448389","Tomitella biformata AHU 1821"]]},{"id":"NCBITaxon:633147","l":"Olsenella uli DSM 7084","na":1,"nb":2,"a":[["crevice-envo-01000294.html","crevice"]],"b":[["NCBITaxon%3A133926","Olsenella uli"],["NCBITaxon%3A633147","Olsenella uli DSM 7084"]]},{"id":"NCBITaxon:633149","l":"Brevundimonas subvibrioides ATCC 15264","na":1,"nb":2,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A74313","Brevundimonas subvibrioides"],["NCBITaxon%3A633149","Brevundimonas subvibrioides ATCC 15264"]]},{"id":"NCBITaxon:634177","l":"Komagataeibacter medellinensis NBRC 3288","na":1,"nb":2,"a":[["mountain-pass-envo-00000084.html","mountain pass"]],"b":[["NCBITaxon%3A1177712","Komagataeibacter medellinensis"],["NCBITaxon%3A634177","Komagataeibacter medellinensis NBRC 3288"]]},{"id":"NCBITaxon:63737","l":"Nostoc punctiforme PCC 73102","na":2,"nb":1,"a":[["heterocyst-bto-0000600.html","heterocyst"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A63737","Nostoc punctiforme PCC 73102"]]},{"id":"NCBITaxon:637911","l":"Actinobacillus minor NM305","na":1,"nb":2,"a":[["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["NCBITaxon%3A51047","Actinobacillus minor"],["NCBITaxon%3A637911","Actinobacillus minor NM305"]]},{"id":"NCBITaxon:638300","l":"Cardiobacterium hominis ATCC 15826","na":1,"nb":2,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A2718","Cardiobacterium hominis"],["NCBITaxon%3A638300","Cardiobacterium hominis ATCC 15826"]]},{"id":"NCBITaxon:639283","l":"Ancylobacter novellus DSM 506","na":1,"nb":2,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["NCBITaxon%3A921","Ancylobacter novellus"],["NCBITaxon%3A639283","Ancylobacter novellus DSM 506"]]},{"id":"NCBITaxon:640030","l":"Neisseria zalophi","na":2,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A640030","Neisseria zalophi"]]},{"id":"NCBITaxon:640132","l":"Segniliparus rotundus DSM 44985","na":1,"nb":2,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A286802","Segniliparus rotundus"],["NCBITaxon%3A640132","Segniliparus rotundus DSM 44985"]]},{"id":"NCBITaxon:641143","l":"Capnocytophaga granulosa ATCC 51502","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A45242","Capnocytophaga granulosa"],["NCBITaxon%3A641143","Capnocytophaga granulosa ATCC 51502"]]},{"id":"NCBITaxon:642492","l":"","na":1,"nb":2,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["NCBITaxon%3A29360","Cellulosilyticum lentocellum"],["NCBITaxon%3A642492","Cellulosilyticum lentocellum DSM 5427"]]},{"id":"NCBITaxon:642780","l":"Nocardioides scoriae","na":1,"nb":2,"a":[["mud-volcano-envo-00000402.html","mud volcano"]],"b":[["NCBITaxon%3A642780","Nocardioides scoriae"],["NCBITaxon%3A35761","Nocardioides sp."]]},{"id":"NCBITaxon:644107","l":"","na":1,"nb":2,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["NCBITaxon%3A55218","Ruegeria lacuscaerulensis"],["NCBITaxon%3A644107","Ruegeria lacuscaerulensis ITI-1157"]]},{"id":"NCBITaxon:644282","l":"Desulfarculus baarsii (strain ATCC 33931 / DSM 2075 / LMG 7858 / VKM B-1802 / 2st14)","na":1,"nb":2,"a":[["ditch-envo-00000037.html","ditch"]],"b":[["NCBITaxon%3A453230","Desulfarculus baarsii"],["NCBITaxon%3A644282","Desulfarculus baarsii DSM 2075"]]},{"id":"NCBITaxon:644295","l":"Methanohalobium evestigatum Z-7303","na":1,"nb":2,"a":[["microbial-mat-envo-01000008.html","microbial mat"]],"b":[["NCBITaxon%3A2322","Methanohalobium evestigatum"],["NCBITaxon%3A644295","Methanohalobium evestigatum Z-7303"]]},{"id":"NCBITaxon:644383","l":"Thermosporothrix hazakensis","na":2,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["compost-envo-00002170.html","compost"]],"b":[["NCBITaxon%3A644383","Thermosporothrix hazakensis"]]},{"id":"NCBITaxon:645463","l":"Clostridioides difficile R20291","na":1,"nb":2,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["NCBITaxon%3A1496","Clostridioides difficile"],["NCBITaxon%3A645463","Clostridioides difficile R20291"]]},{"id":"NCBITaxon:647171","l":"Methanotorris formicicus Mc-S-70","na":1,"nb":2,"a":[["black-smoker-envo-00000218.html","black smoker"]],"b":[["NCBITaxon%3A213185","Methanotorris formicicus"],["NCBITaxon%3A647171","Methanotorris formicicus Mc-S-70"]]},{"id":"NCBITaxon:65","l":"Herpetosiphon aurantiacus","na":1,"nb":2,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A65","Herpetosiphon aurantiacus"],["NCBITaxon%3A316274","Herpetosiphon aurantiacus DSM 785"]]},{"id":"NCBITaxon:653733","l":"Desulfurispirillum indicum S5","na":1,"nb":2,"a":[["canal-envo-00000014.html","canal"]],"b":[["NCBITaxon%3A936456","Desulfurispirillum indicum"],["NCBITaxon%3A653733","Desulfurispirillum indicum S5"]]},{"id":"NCBITaxon:65393","l":"","na":2,"nb":1,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["NCBITaxon%3A65393","Gloeothece citriformis PCC 7424"]]},{"id":"NCBITaxon:655438","l":"Cycloclasticus pugetii PS-1","na":2,"nb":1,"a":[["inlet-envo-00000475.html","inlet"],["sound-envo-00000393.html","sound"]],"b":[["NCBITaxon%3A655438","Cycloclasticus pugetii PS-1"]]},{"id":"NCBITaxon:655815","l":"Zunongwangia profunda SM-A87","na":1,"nb":2,"a":[["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"]],"b":[["NCBITaxon%3A398743","Zunongwangia profunda"],["NCBITaxon%3A655815","Zunongwangia profunda SM-A87"]]},{"id":"NCBITaxon:656912","l":"Haemophilus influenzae RdAW","na":2,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["estuarine-biome-envo-01000020.html","estuarine biome"]],"b":[["NCBITaxon%3A656912","Haemophilus influenzae RdAW"]]},{"id":"NCBITaxon:656914","l":"Desulfonispora thiosulfatigenes DSM 11270","na":1,"nb":2,"a":[["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["NCBITaxon%3A83661","Desulfonispora thiosulfatigenes"],["NCBITaxon%3A656914","Desulfonispora thiosulfatigenes DSM 11270"]]},{"id":"NCBITaxon:65735","l":"Paracoccus alkenifer","na":2,"nb":1,"a":[["sewage-envo-00002018.html","sewage"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"]],"b":[["NCBITaxon%3A65735","Paracoccus alkenifer"]]},{"id":"NCBITaxon:659425","l":"Thermoclostridium caenicola","na":1,"nb":2,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A659425","Thermoclostridium caenicola"],["NCBITaxon%3A1121300","Thermoclostridium caenicola DSM 19027"]]},{"id":"NCBITaxon:661410","l":"Methylorubrum extorquens DM4","na":1,"nb":2,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A408","Methylorubrum extorquens"],["NCBITaxon%3A661410","Methylorubrum extorquens DM4"]]},{"id":"NCBITaxon:665038","l":"Breoghania corrubedonensis","na":2,"nb":1,"a":[["chemically-enriched-sediment-envo-00002114.html","chemically enriched sediment"],["oil-envo-00002985.html","oil"]],"b":[["NCBITaxon%3A665038","Breoghania corrubedonensis"]]},{"id":"NCBITaxon:666510","l":"Acidilobus saccharovorans 345-15","na":1,"nb":2,"a":[["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A242703","Acidilobus saccharovorans"],["NCBITaxon%3A666510","Acidilobus saccharovorans 345-15"]]},{"id":"NCBITaxon:666684","l":"Afipia sp. 1NLS2","na":1,"nb":2,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["NCBITaxon%3A1871052","Afipia sp."],["NCBITaxon%3A666684","Afipia sp. 1NLS2"]]},{"id":"NCBITaxon:667306","l":"Aciditerrimonas ferrireducens","na":1,"nb":2,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A667306","Aciditerrimonas ferrireducens"],["NCBITaxon%3A1294026","Aciditerrimonas ferrireducens JCM 15389"]]},{"id":"NCBITaxon:675631","l":"","na":1,"nb":2,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A2275","Desulfurococcus mucosus"],["NCBITaxon%3A675631","Desulfurococcus mucosus DSM 2161"]]},{"id":"NCBITaxon:675814","l":"Vibrio coralliilyticus ATCC BAA-450","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A190893","Vibrio coralliilyticus"],["NCBITaxon%3A675814","Vibrio coralliilyticus ATCC BAA-450"]]},{"id":"NCBITaxon:675817","l":"Photobacterium damselae subsp. damselae CIP 102761","na":1,"nb":2,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["NCBITaxon%3A38293","Photobacterium damselae"],["NCBITaxon%3A675817","Photobacterium damselae subsp. damselae CIP 102761"]]},{"id":"NCBITaxon:679192","l":"Bulleidia extructa W1219","na":1,"nb":2,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A118748","Bulleidia extructa"],["NCBITaxon%3A679192","Bulleidia extructa W1219"]]},{"id":"NCBITaxon:679901","l":"Methanosalsum zhilinae DSM 4017","na":1,"nb":2,"a":[["wadi-envo-00000031.html","wadi"]],"b":[["NCBITaxon%3A39669","Methanosalsum zhilinae"],["NCBITaxon%3A679901","Methanosalsum zhilinae DSM 4017"]]},{"id":"NCBITaxon:679937","l":"Bacteroides coprosuis DSM 18011","na":1,"nb":2,"a":[["animal-waste-material-envo-00002276.html","animal waste material"]],"b":[["NCBITaxon%3A151276","Bacteroides coprosuis"],["NCBITaxon%3A679937","Bacteroides coprosuis DSM 18011"]]},{"id":"NCBITaxon:68203","l":"Streptomyces fungicidicus","na":1,"nb":2,"a":[["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A68203","Streptomyces fungicidicus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:685","l":"Vibrio diazotrophicus","na":1,"nb":2,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A685","Vibrio diazotrophicus"],["NCBITaxon%3A1348635","Vibrio diazotrophicus NBRC 103148"]]},{"id":"NCBITaxon:685706","l":"Yersinia nurmii","na":2,"nb":1,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A685706","Yersinia nurmii"]]},{"id":"NCBITaxon:688246","l":"Hallella multisaccharivorax DSM 17128","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A310514","Hallella multisaccharivorax"],["NCBITaxon%3A688246","Hallella multisaccharivorax DSM 17128"]]},{"id":"NCBITaxon:688269","l":"Pseudothermotoga thermarum DSM 5069","na":1,"nb":2,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A119394","Pseudothermotoga thermarum"],["NCBITaxon%3A688269","Pseudothermotoga thermarum DSM 5069"]]},{"id":"NCBITaxon:688270","l":"Cellulophaga algicola (strain DSM 14237 / IC166 / ACAM 630)","na":1,"nb":2,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["NCBITaxon%3A59600","Cellulophaga algicola"],["NCBITaxon%3A688270","Cellulophaga algicola DSM 14237"]]},{"id":"NCBITaxon:68891","l":"Streptococcus peroris","na":1,"nb":2,"a":[["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A68891","Streptococcus peroris"],["NCBITaxon%3A888746","Streptococcus peroris ATCC 700780"]]},{"id":"NCBITaxon:69014","l":"Thermococcus kodakarensis (strain ATCC BAA-918 / JCM 12380 / KOD1)","na":1,"nb":2,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A311400","Thermococcus kodakarensis"],["NCBITaxon%3A69014","Thermococcus kodakarensis KOD1"]]},{"id":"NCBITaxon:693444","l":"Enterobacteriaceae bacterium strain FGI 57","na":2,"nb":1,"a":[["road-envo-00000064.html","road"],["garden-envo-00000011.html","garden"]],"b":[["NCBITaxon%3A693444","Enterobacteriaceae bacterium strain FGI 57"]]},{"id":"NCBITaxon:693661","l":"Archaeoglobus veneficus SNP6","na":1,"nb":2,"a":[["black-smoker-envo-00000218.html","black smoker"]],"b":[["NCBITaxon%3A58290","Archaeoglobus veneficus"],["NCBITaxon%3A693661","Archaeoglobus veneficus SNP6"]]},{"id":"NCBITaxon:693972","l":"Shewanella baltica OS625","na":2,"nb":1,"a":[["marginal-sea-biome-envo-01000046.html","marginal sea biome"],["sea-envo-00000016.html","sea"]],"b":[["NCBITaxon%3A693972","Shewanella baltica OS625"]]},{"id":"NCBITaxon:694431","l":"Desulfurella acetivorans A63","na":1,"nb":2,"a":[["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A33002","Desulfurella acetivorans"],["NCBITaxon%3A694431","Desulfurella acetivorans A63"]]},{"id":"NCBITaxon:694433","l":"Saprospira grandis DSM 2844","na":1,"nb":2,"a":[["carapace-bto-0001701.html","carapace"]],"b":[["NCBITaxon%3A1008","Saprospira grandis"],["NCBITaxon%3A694433","Saprospira grandis DSM 2844"]]},{"id":"NCBITaxon:695939","l":"Deinococcus hopiensis KR-140","na":1,"nb":2,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A309885","Deinococcus hopiensis"],["NCBITaxon%3A695939","Deinococcus hopiensis KR-140"]]},{"id":"NCBITaxon:698758","l":"Amphibacillus xylanus NBRC 15112","na":1,"nb":2,"a":[["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["NCBITaxon%3A1449","Amphibacillus xylanus"],["NCBITaxon%3A698758","Amphibacillus xylanus NBRC 15112"]]},{"id":"NCBITaxon:699248","l":"Streptococcus ratti FA-1 = DSM 20564","na":1,"nb":2,"a":[["tooth-bto-0000397.html","tooth"]],"b":[["NCBITaxon%3A1341","Streptococcus ratti"],["NCBITaxon%3A699248","Streptococcus ratti FA-1 = DSM 20564"]]},{"id":"NCBITaxon:69969","l":"Macrococcus carouselicus","na":2,"nb":1,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["NCBITaxon%3A69969","Macrococcus carouselicus"]]},{"id":"NCBITaxon:706587","l":"Desulfomonile tiedjei DSM 6799","na":1,"nb":2,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A2358","Desulfomonile tiedjei"],["NCBITaxon%3A706587","Desulfomonile tiedjei DSM 6799"]]},{"id":"NCBITaxon:707232","l":"Acinetobacter haemolyticus ATCC 19194","na":1,"nb":2,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["NCBITaxon%3A29430","Acinetobacter haemolyticus"],["NCBITaxon%3A707232","Acinetobacter haemolyticus ATCC 19194"]]},{"id":"NCBITaxon:707241","l":"Sinorhizobium meliloti SM11","na":2,"nb":1,"a":[["mountain-pass-envo-00000084.html","mountain pass"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A707241","Sinorhizobium meliloti SM11"]]},{"id":"NCBITaxon:709986","l":"Deinococcus maricopensis DSM 21211","na":1,"nb":2,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A309887","Deinococcus maricopensis"],["NCBITaxon%3A709986","Deinococcus maricopensis DSM 21211"]]},{"id":"NCBITaxon:713586","l":"Thioalkalivibrio thiocyanodenitrificans ARhD 1","na":1,"nb":2,"a":[["wadi-envo-00000031.html","wadi"]],"b":[["NCBITaxon%3A243063","Thioalkalivibrio thiocyanodenitrificans"],["NCBITaxon%3A713586","Thioalkalivibrio thiocyanodenitrificans ARhD 1"]]},{"id":"NCBITaxon:714943","l":"Mucilaginibacter paludis DSM 18603","na":1,"nb":2,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A423351","Mucilaginibacter paludis"],["NCBITaxon%3A714943","Mucilaginibacter paludis DSM 18603"]]},{"id":"NCBITaxon:717231","l":"Flexistipes sinusarabici DSM 4947","na":1,"nb":2,"a":[["brine-envo-00003044.html","brine"]],"b":[["NCBITaxon%3A2352","Flexistipes sinusarabici"],["NCBITaxon%3A717231","Flexistipes sinusarabici DSM 4947"]]},{"id":"NCBITaxon:717606","l":"Paenibacillus curdlanolyticus YK9","na":1,"nb":2,"a":[["city-envo-00000856.html","city"]],"b":[["NCBITaxon%3A59840","Paenibacillus curdlanolyticus"],["NCBITaxon%3A717606","Paenibacillus curdlanolyticus YK9"]]},{"id":"NCBITaxon:720","l":"Actinobacillus lignieresii","na":2,"nb":1,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["NCBITaxon%3A720","Actinobacillus lignieresii"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":2,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["NCBITaxon%3A72226","Lysobacter sp."],["NCBITaxon%3A1645665","Solilutibacter silvestris"]]},{"id":"NCBITaxon:723627","l":"uncultured Rhizobium sp. HF0500_35F13","na":2,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A723627","uncultured Rhizobium sp. HF0500_35F13"]]},{"id":"NCBITaxon:742767","l":"Dysgonomonas mossii DSM 22836","na":1,"nb":2,"a":[["hospital-envo-00002173.html","hospital"]],"b":[["NCBITaxon%3A163665","Dysgonomonas mossii"],["NCBITaxon%3A742767","Dysgonomonas mossii DSM 22836"]]},{"id":"NCBITaxon:748908","l":"Alpinimonas psychrophila","na":2,"nb":1,"a":[["water-ice-envo-01000277.html","water ice"],["glacier-envo-00000133.html","glacier"]],"b":[["NCBITaxon%3A748908","Alpinimonas psychrophila"]]},{"id":"NCBITaxon:749","l":"[Pasteurella] aerogenes","na":2,"nb":1,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A749","[Pasteurella] aerogenes"]]},{"id":"NCBITaxon:749550","l":"Escherichia coli MS 200-1","na":2,"nb":1,"a":[["city-envo-00000856.html","city"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["NCBITaxon%3A749550","Escherichia coli MS 200-1"]]},{"id":"NCBITaxon:751945","l":"Thermus oshimai JL-2","na":1,"nb":2,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A56957","Thermus oshimai"],["NCBITaxon%3A751945","Thermus oshimai JL-2"]]},{"id":"NCBITaxon:756067","l":"Microcoleus vaginatus FGP-2","na":2,"nb":1,"a":[["desert-area-envo-00000097.html","desert area"],["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A756067","Microcoleus vaginatus FGP-2"]]},{"id":"NCBITaxon:75697","l":"Castellaniella defragrans","na":1,"nb":2,"a":[["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A75697","Castellaniella defragrans"],["NCBITaxon%3A1437824","Castellaniella defragrans 65Phen"]]},{"id":"NCBITaxon:758583","l":"Thermococcus sp. 26/2","na":2,"nb":1,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A758583","Thermococcus sp. 26/2"]]},{"id":"NCBITaxon:758847","l":"Leptospira santarosai serovar Shermani str. LT 821","na":1,"nb":2,"a":[["renal-tubule-bto-0000343.html","renal tubule"]],"b":[["NCBITaxon%3A28183","Leptospira santarosai"],["NCBITaxon%3A758847","Leptospira santarosai serovar Shermani str. LT 821"]]},{"id":"NCBITaxon:759","l":"Pasteurella sp.","na":2,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["NCBITaxon%3A759","Pasteurella sp."]]},{"id":"NCBITaxon:760","l":"Pasteurella stomatis","na":2,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"]],"b":[["NCBITaxon%3A760","Pasteurella stomatis"]]},{"id":"NCBITaxon:760011","l":"Parasphaerochaeta coccoides DSM 17374","na":1,"nb":2,"a":[["hindgut-bto-0000510.html","hindgut"]],"b":[["NCBITaxon%3A273376","Parasphaerochaeta coccoides"],["NCBITaxon%3A760011","Parasphaerochaeta coccoides DSM 17374"]]},{"id":"NCBITaxon:760154","l":"Sulfurospirillum barnesii SES-3","na":1,"nb":2,"a":[["marsh-envo-00000035.html","marsh"]],"b":[["NCBITaxon%3A44674","Sulfurospirillum barnesii"],["NCBITaxon%3A760154","Sulfurospirillum barnesii SES-3"]]},{"id":"NCBITaxon:760568","l":"Desulfofundulus kuznetsovii DSM 6115","na":1,"nb":2,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A58135","Desulfofundulus kuznetsovii"],["NCBITaxon%3A760568","Desulfofundulus kuznetsovii DSM 6115"]]},{"id":"NCBITaxon:765420","l":"Oscillochloris trichoides DG-6","na":1,"nb":2,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A104176","Oscillochloris trichoides"],["NCBITaxon%3A765420","Oscillochloris trichoides DG-6"]]},{"id":"NCBITaxon:765698","l":"Mesorhizobium ciceri biovar biserrulae WSM1271","na":1,"nb":2,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A39645","Mesorhizobium ciceri"],["NCBITaxon%3A765698","Mesorhizobium ciceri biovar biserrulae WSM1271"]]},{"id":"NCBITaxon:765873","l":"Ectothiorhodospira haloalkaliphila ATCC 51935","na":1,"nb":2,"a":[["wadi-envo-00000031.html","wadi"]],"b":[["NCBITaxon%3A421628","Ectothiorhodospira haloalkaliphila"],["NCBITaxon%3A765873","Ectothiorhodospira haloalkaliphila ATCC 51935"]]},{"id":"NCBITaxon:765912","l":"Thioflavicoccus mobilis 8321","na":2,"nb":1,"a":[["marsh-envo-00000035.html","marsh"],["saline-marsh-envo-00000054.html","saline marsh"]],"b":[["NCBITaxon%3A765912","Thioflavicoccus mobilis 8321"]]},{"id":"NCBITaxon:768066","l":"Halomonas elongata DSM 2581","na":1,"nb":2,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["NCBITaxon%3A2746","Halomonas elongata"],["NCBITaxon%3A768066","Halomonas elongata DSM 2581"]]},{"id":"NCBITaxon:768492","l":"Serratia plymuthica AS9","na":1,"nb":2,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A768492","Serratia plymuthica AS9"],["NCBITaxon%3A239175","uncultured Serratia sp."]]},{"id":"NCBITaxon:768672","l":"Desulfurococcus amylolyticus DSM 16532","na":1,"nb":2,"a":[["caldera-envo-00000096.html","caldera"]],"b":[["NCBITaxon%3A94694","Desulfurococcus amylolyticus"],["NCBITaxon%3A768672","Desulfurococcus amylolyticus DSM 16532"]]},{"id":"NCBITaxon:768704","l":"Desulfosporosinus meridiei DSM 13257","na":1,"nb":2,"a":[["hill-envo-00000083.html","hill"]],"b":[["NCBITaxon%3A79209","Desulfosporosinus meridiei"],["NCBITaxon%3A768704","Desulfosporosinus meridiei DSM 13257"]]},{"id":"NCBITaxon:79266","l":"Mesorhizobium sp. ZJ15B7","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A79266","Mesorhizobium sp. ZJ15B7"]]},{"id":"NCBITaxon:794903","l":"Opitutaceae bacterium TAV5","na":2,"nb":1,"a":[["hindgut-bto-0000510.html","hindgut"],["wood-bto-0005516.html","wood"]],"b":[["NCBITaxon%3A794903","Opitutaceae bacterium TAV5"]]},{"id":"NCBITaxon:795797","l":"Halalkalicoccus jeotgali B3","na":1,"nb":2,"a":[["food-product-foodon-00001002.html","food product"]],"b":[["NCBITaxon%3A413810","Halalkalicoccus jeotgali"],["NCBITaxon%3A795797","Halalkalicoccus jeotgali B3"]]},{"id":"NCBITaxon:798130","l":"Pseudomonas aeruginosa 39016","na":2,"nb":1,"a":[["underground-water-envo-00005792.html","underground water"],["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A798130","Pseudomonas aeruginosa 39016"]]},{"id":"NCBITaxon:81406","l":"Solidesulfovibrio alcoholivorans","na":1,"nb":2,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A81406","Solidesulfovibrio alcoholivorans"],["NCBITaxon%3A1121438","Solidesulfovibrio alcoholivorans DSM 5433"]]},{"id":"NCBITaxon:82348","l":"Streptococcus pluranimalium","na":1,"nb":2,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"]],"b":[["NCBITaxon%3A149015","Streptococcus hyovaginalis"],["NCBITaxon%3A82348","Streptococcus pluranimalium"]]},{"id":"NCBITaxon:82380","l":"Microbacterium oxydans","na":1,"nb":2,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A82380","Microbacterium oxydans"],["NCBITaxon%3A1255678","Microbacterium oxydans PCA1"]]},{"id":"NCBITaxon:826","l":"Sebaldella termitidis","na":1,"nb":2,"a":[["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A826","Sebaldella termitidis"],["NCBITaxon%3A526218","Sebaldella termitidis ATCC 33386"]]},{"id":"NCBITaxon:82806","l":"Streptococcus ovis","na":1,"nb":2,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"]],"b":[["NCBITaxon%3A82806","Streptococcus ovis"],["NCBITaxon%3A1123312","Streptococcus ovis DSM 16829"]]},{"id":"NCBITaxon:82985","l":"Pragia fontium","na":1,"nb":2,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"]],"b":[["NCBITaxon%3A82985","Pragia fontium"],["NCBITaxon%3A1122977","Pragia fontium DSM 5563 = ATCC 49100"]]},{"id":"NCBITaxon:82991","l":"Buttiauxella izardii","na":1,"nb":2,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A82991","Buttiauxella izardii"],["NCBITaxon%3A1354254","Buttiauxella izardii ATCC 51606"]]},{"id":"NCBITaxon:83219","l":"Sulfitobacter mediterraneus","na":1,"nb":2,"a":[["sandstone-envo-00002055.html","sandstone"]],"b":[["NCBITaxon%3A83219","Sulfitobacter mediterraneus"],["NCBITaxon%3A1443112","Sulfitobacter mediterraneus KCTC 32188"]]},{"id":"NCBITaxon:83262","l":"Mycobacteroides immunogenum","na":1,"nb":2,"a":[["central-nervous-system-bto-0000227.html","central nervous system"]],"b":[["NCBITaxon%3A36809","Mycobacteroides abscessus"],["NCBITaxon%3A83262","Mycobacteroides immunogenum"]]},{"id":"NCBITaxon:83331","l":"Mycobacterium tuberculosis (strain CDC 1551 / Oshkosh)","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A83331","Mycobacterium tuberculosis CDC1551"]]},{"id":"NCBITaxon:83557","l":"Chlamydia caviae","na":1,"nb":2,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A83557","Chlamydia caviae"],["NCBITaxon%3A227941","Chlamydia caviae GPIC"]]},{"id":"NCBITaxon:84032","l":"Clostridium thermosuccinogenes","na":1,"nb":2,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["NCBITaxon%3A84032","Clostridium thermosuccinogenes"],["NCBITaxon%3A1121341","Pseudoclostridium thermosuccinogenes DSM 5807"]]},{"id":"NCBITaxon:84159","l":"Paramagnetospirillum magneticum","na":1,"nb":2,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A84159","Paramagnetospirillum magneticum"],["NCBITaxon%3A342108","Paramagnetospirillum magneticum AMB-1"]]},{"id":"NCBITaxon:844","l":"Wolinella succinogenes","na":1,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A844","Wolinella succinogenes"],["NCBITaxon%3A273121","Wolinella succinogenes DSM 1740"]]},{"id":"NCBITaxon:84980","l":"Desulfotalea psychrophila","na":1,"nb":2,"a":[["shoreline-envo-00000486.html","shoreline"]],"b":[["NCBITaxon%3A84980","Desulfotalea psychrophila"],["NCBITaxon%3A177439","Desulfotalea psychrophila LSv54"]]},{"id":"NCBITaxon:85336","l":"Rothia nasimurium","na":1,"nb":2,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"]],"b":[["NCBITaxon%3A85336","Rothia nasimurium"],["NCBITaxon%3A553203","Rothia nasimurium JCVIHMP032"]]},{"id":"NCBITaxon:85643","l":"","na":2,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["NCBITaxon%3A164330","Thauera aminoaromatica"]]},{"id":"NCBITaxon:85831","l":"Bacteroides acidifaciens","na":1,"nb":2,"a":[["colon-bto-0000269.html","colon"]],"b":[["NCBITaxon%3A85831","Bacteroides acidifaciens"],["NCBITaxon%3A1235814","Bacteroides acidifaciens JCM 10556"]]},{"id":"NCBITaxon:86185","l":"Pseudomonas lundensis","na":1,"nb":2,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A86185","Pseudomonas lundensis"],["NCBITaxon%3A1255687","Pseudomonas lundensis PCAi_D2.2"]]},{"id":"NCBITaxon:862515","l":"Hoylesella marshii DSM 16973 = JCM 13450","na":1,"nb":2,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A189722","Hoylesella marshii"],["NCBITaxon%3A862515","Hoylesella marshii DSM 16973 = JCM 13450"]]},{"id":"NCBITaxon:862908","l":"Halobacteriovorax marinus SJ","na":1,"nb":2,"a":[["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A97084","Halobacteriovorax marinus"],["NCBITaxon%3A862908","Halobacteriovorax marinus SJ"]]},{"id":"NCBITaxon:865937","l":"Gillisia limnaea DSM 15749","na":1,"nb":2,"a":[["dry-valley-envo-00000128.html","dry valley"]],"b":[["NCBITaxon%3A195907","Gillisia limnaea"],["NCBITaxon%3A865937","Gillisia limnaea DSM 15749"]]},{"id":"NCBITaxon:866499","l":"Cloacibacillus evryensis DSM 19522","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A508460","Cloacibacillus evryensis"],["NCBITaxon%3A866499","Cloacibacillus evryensis DSM 19522"]]},{"id":"NCBITaxon:86668","l":"Neobacillus niacini","na":1,"nb":2,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A86668","Neobacillus niacini"],["NCBITaxon%3A1348654","Neobacillus niacini NBRC 15566"]]},{"id":"NCBITaxon:866789","l":"Escherichia coli DSM 30083 = JCM 1649 = ATCC 11775","na":1,"nb":2,"a":[["urethra-bto-0001426.html","urethra"]],"b":[["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A866789","Escherichia coli DSM 30083 = JCM 1649 = ATCC 11775"]]},{"id":"NCBITaxon:869210","l":"Marinithermus hydrothermalis DSM 14884","na":1,"nb":2,"a":[["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A186192","Marinithermus hydrothermalis"],["NCBITaxon%3A869210","Marinithermus hydrothermalis DSM 14884"]]},{"id":"NCBITaxon:86959","l":"Propionispira raffinosivorans","na":1,"nb":2,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"]],"b":[["NCBITaxon%3A86959","Propionispira raffinosivorans"],["NCBITaxon%3A1123511","Propionispira raffinosivorans DSM 20765"]]},{"id":"NCBITaxon:873513","l":"Segatella buccae ATCC 33574","na":1,"nb":2,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A28126","Segatella buccae"],["NCBITaxon%3A873513","Segatella buccae ATCC 33574"]]},{"id":"NCBITaxon:880","l":"Maridesulfovibrio salexigens","na":1,"nb":2,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A880","Maridesulfovibrio salexigens"],["NCBITaxon%3A526222","Maridesulfovibrio salexigens DSM 2638"]]},{"id":"NCBITaxon:880447","l":"Mycoplasma leachii PG50","na":1,"nb":2,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A2105","Mycoplasma leachii"],["NCBITaxon%3A880447","Mycoplasma leachii PG50"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A881","Nitratidesulfovibrio vulgaris"],["NCBITaxon%3A882","Nitratidesulfovibrio vulgaris str. Hildenborough"]]},{"id":"NCBITaxon:883","l":"Nitratidesulfovibrio vulgaris str. 'Miyazaki F'","na":1,"nb":2,"a":[["saline-marsh-envo-00000054.html","saline marsh"]],"b":[["NCBITaxon%3A881","Nitratidesulfovibrio vulgaris"],["NCBITaxon%3A883","Nitratidesulfovibrio vulgaris str. 'Miyazaki F'"]]},{"id":"NCBITaxon:883169","l":"Corynebacterium otitidis ATCC 51513","na":1,"nb":2,"a":[["middle-ear-bto-0002099.html","middle ear"]],"b":[["NCBITaxon%3A29321","Corynebacterium otitidis"],["NCBITaxon%3A883169","Corynebacterium otitidis ATCC 51513"]]},{"id":"NCBITaxon:88373","l":"Agromyces luteolus","na":1,"nb":2,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A88373","Agromyces luteolus"],["NCBITaxon%3A881268","Herbiconiux flava"]]},{"id":"NCBITaxon:886293","l":"Singulisphaera acidiphila (strain ATCC BAA-1392 / DSM 18658 / VKM B-2454 / MOB10)","na":1,"nb":2,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A466153","Singulisphaera acidiphila"],["NCBITaxon%3A886293","Singulisphaera acidiphila DSM 18658"]]},{"id":"NCBITaxon:887899","l":"Mobiluncus holmesii ATCC 35242","na":1,"nb":2,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["NCBITaxon%3A144178","Mobiluncus holmesii"],["NCBITaxon%3A887899","Mobiluncus holmesii ATCC 35242"]]},{"id":"NCBITaxon:887929","l":"Pseudoramibacter alactolyticus ATCC 23263","na":1,"nb":2,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"]],"b":[["NCBITaxon%3A113287","Pseudoramibacter alactolyticus"],["NCBITaxon%3A887929","Pseudoramibacter alactolyticus ATCC 23263"]]},{"id":"NCBITaxon:888061","l":"Desulfomicrobium orale DSM 12838","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A132132","Desulfomicrobium orale"],["NCBITaxon%3A888061","Desulfomicrobium orale DSM 12838"]]},{"id":"NCBITaxon:88874","l":"Luteococcus peritonei","na":1,"nb":2,"a":[["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A88874","Luteococcus peritonei"],["NCBITaxon%3A170679","Vibrio chagasii"]]},{"id":"NCBITaxon:888743","l":"Prevotella multiformis DSM 16608","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A282402","Prevotella multiformis"],["NCBITaxon%3A888743","Prevotella multiformis DSM 16608"]]},{"id":"NCBITaxon:889274","l":"Polyangium sorediatum","na":2,"nb":1,"a":[["wood-bto-0005516.html","wood"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A889274","Polyangium sorediatum"]]},{"id":"NCBITaxon:89065","l":"Pseudomonas abietaniphila","na":2,"nb":1,"a":[["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A89065","Pseudomonas abietaniphila"]]},{"id":"NCBITaxon:89184","l":"Ruegeria pomeroyi","na":1,"nb":2,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A89184","Ruegeria pomeroyi"],["NCBITaxon%3A246200","Ruegeria pomeroyi DSS-3"]]},{"id":"NCBITaxon:90240","l":"Moraxella caprae","na":1,"nb":2,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"]],"b":[["NCBITaxon%3A90240","Moraxella caprae"],["NCBITaxon%3A1122244","Moraxella caprae DSM 19149"]]},{"id":"NCBITaxon:908937","l":"Prevotella dentalis DSM 3688","na":1,"nb":2,"a":[["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A52227","Prevotella dentalis"],["NCBITaxon%3A908937","Prevotella dentalis DSM 3688"]]},{"id":"NCBITaxon:912594","l":"Mycolicibacterium iranicum","na":1,"nb":2,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["NCBITaxon%3A912594","Mycolicibacterium iranicum"],["NCBITaxon%3A1370125","Mycolicibacterium iranicum UM_TJL"]]},{"id":"NCBITaxon:915438","l":"Xylanibacter oryzae DSM 17970","na":1,"nb":2,"a":[["rice-field-envo-00000296.html","rice field"]],"b":[["NCBITaxon%3A185293","Xylanibacter oryzae"],["NCBITaxon%3A915438","Xylanibacter oryzae DSM 17970"]]},{"id":"NCBITaxon:916","l":"Nitrosomonas eutropha","na":1,"nb":2,"a":[["waste-treatment-plant-envo-00002272.html","waste treatment plant"]],"b":[["NCBITaxon%3A916","Nitrosomonas eutropha"],["NCBITaxon%3A335283","Nitrosomonas eutropha C91"]]},{"id":"NCBITaxon:91892","l":"Legionella pneumophila subsp. fraseri","na":1,"nb":2,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A446","Legionella pneumophila"],["NCBITaxon%3A91892","Legionella pneumophila subsp. fraseri"]]},{"id":"NCBITaxon:91917","l":"Burkholderia sp. NF100","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A91917","Burkholderia sp. NF100"]]},{"id":"NCBITaxon:926550","l":"Caldilinea aerophila DSM 14535 = NBRC 104270","na":1,"nb":2,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A133453","Caldilinea aerophila"],["NCBITaxon%3A926550","Caldilinea aerophila DSM 14535 = NBRC 104270"]]},{"id":"NCBITaxon:926554","l":"Deinococcus pimensis DSM 21231","na":1,"nb":2,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A309888","Deinococcus pimensis"],["NCBITaxon%3A926554","Deinococcus pimensis DSM 21231"]]},{"id":"NCBITaxon:926567","l":"Thermanaerovibrio velox DSM 12556","na":1,"nb":2,"a":[["caldera-envo-00000096.html","caldera"]],"b":[["NCBITaxon%3A108007","Thermanaerovibrio velox"],["NCBITaxon%3A926567","Thermanaerovibrio velox DSM 12556"]]},{"id":"NCBITaxon:926690","l":"Haloplanus natans DSM 17983","na":1,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A376171","Haloplanus natans"],["NCBITaxon%3A926690","Haloplanus natans DSM 17983"]]},{"id":"NCBITaxon:927655","l":"Corynebacterium bovis DSM 20582 = CIP 54.80","na":1,"nb":2,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["NCBITaxon%3A36808","Corynebacterium bovis"],["NCBITaxon%3A927655","Corynebacterium bovis DSM 20582 = CIP 54.80"]]},{"id":"NCBITaxon:928729","l":"Saccharomonospora halophila 8","na":1,"nb":2,"a":[["saline-marsh-envo-00000054.html","saline marsh"]],"b":[["NCBITaxon%3A129922","Saccharomonospora halophila"],["NCBITaxon%3A928729","Saccharomonospora halophila 8"]]},{"id":"NCBITaxon:929558","l":"","na":1,"nb":2,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A1176482","Sulfurimonas gotlandica"],["NCBITaxon%3A929558","Sulfurimonas gotlandica GD1"]]},{"id":"NCBITaxon:929705","l":"Sulfobacillus thermosulfidooxidans DSM 9293","na":1,"nb":2,"a":[["mineral-deposit-envo-01000255.html","mineral deposit"]],"b":[["NCBITaxon%3A28034","Sulfobacillus thermosulfidooxidans"],["NCBITaxon%3A929705","Sulfobacillus thermosulfidooxidans DSM 9293"]]},{"id":"NCBITaxon:93220","l":"Pandoraea pnomenusa","na":1,"nb":2,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"]],"b":[["NCBITaxon%3A93220","Pandoraea pnomenusa"],["NCBITaxon%3A1416914","Pandoraea pnomenusa 3kgm"]]},{"id":"NCBITaxon:935948","l":"Caldanaerobius polysaccharolyticus DSM 13641","na":1,"nb":2,"a":[["leachate-envo-00002141.html","leachate"]],"b":[["NCBITaxon%3A44256","Caldanaerobius polysaccharolyticus"],["NCBITaxon%3A935948","Caldanaerobius polysaccharolyticus DSM 13641"]]},{"id":"NCBITaxon:945550","l":"Vibrio sinaloensis DSM 21326","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A379097","Vibrio sinaloensis"],["NCBITaxon%3A945550","Vibrio sinaloensis DSM 21326"]]},{"id":"NCBITaxon:945555","l":"Acinetobacter baumannii WM99c","na":2,"nb":1,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"],["lung-epithelial-cell-bto-0004299.html","lung epithelial cell"]],"b":[["NCBITaxon%3A945555","Acinetobacter baumannii WM99c"]]},{"id":"NCBITaxon:945556","l":"Acinetobacter baumannii D1279779","na":2,"nb":1,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"],["lung-epithelial-cell-bto-0004299.html","lung epithelial cell"]],"b":[["NCBITaxon%3A945556","Acinetobacter baumannii D1279779"]]},{"id":"NCBITaxon:95485","l":"Burkholderia stabilis","na":1,"nb":2,"a":[["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["NCBITaxon%3A292","Burkholderia cepacia"],["NCBITaxon%3A95485","Burkholderia stabilis"]]},{"id":"NCBITaxon:981386","l":"Brucella vulpis","na":2,"nb":1,"a":[["lymph-node-bto-0000784.html","lymph node"],["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["NCBITaxon%3A981386","Brucella vulpis"]]},{"id":"NCBITaxon:983920","l":"Novosphingobium nitrogenifigens DSM 19370","na":1,"nb":2,"a":[["pulp-bto-0001142.html","pulp"]],"b":[["NCBITaxon%3A378548","Novosphingobium nitrogenifigens"],["NCBITaxon%3A983920","Novosphingobium nitrogenifigens DSM 19370"]]},{"id":"NCBITaxon:984260","l":"Rhizobium skierniewicense","na":1,"nb":2,"a":[["plant-gall-po-0025626.html","plant gall"]],"b":[["NCBITaxon%3A984260","Rhizobium skierniewicense"],["NCBITaxon%3A1368417","Rhizobium skierniewicense Ch11"]]},{"id":"NCBITaxon:985762","l":"Staphylococcus agnetis","na":1,"nb":2,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"]],"b":[["NCBITaxon%3A985762","Staphylococcus agnetis"],["NCBITaxon%3A1216360","Staphylococcus agnetis MU1"]]},{"id":"NCBITaxon:987","l":"Aquimarina latercula","na":1,"nb":2,"a":[["sandstone-envo-00002055.html","sandstone"]],"b":[["NCBITaxon%3A987","Aquimarina latercula"],["NCBITaxon%3A1121006","Aquimarina latercula DSM 2041"]]},{"id":"NCBITaxon:987045","l":"Jiangella gansuensis DSM 44835","na":1,"nb":2,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A281473","Jiangella gansuensis"],["NCBITaxon%3A987045","Jiangella gansuensis DSM 44835"]]},{"id":"NCBITaxon:987059","l":"Rubrivivax benzoatilyticus JA2 = ATCC BAA-35","na":1,"nb":2,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A316997","Rubrivivax benzoatilyticus"],["NCBITaxon%3A987059","Rubrivivax benzoatilyticus JA2 = ATCC BAA-35"]]},{"id":"NCBITaxon:988827","l":"Kocuria oceani","na":1,"nb":2,"a":[["in-situ-habitatmech-bacdive-3edb563d49.html","In-situ"]],"b":[["NCBITaxon%3A988827","Kocuria oceani"],["NCBITaxon%3A174038","Luteococcus sanguinis"]]},{"id":"NCBITaxon:990315","l":"Xanthomonas campestris pv. raphani 756C","na":2,"nb":1,"a":[["mesophyll-bto-0000858.html","mesophyll"],["vascular-tissue-bto-0001432.html","vascular tissue"]],"b":[["NCBITaxon%3A990315","Xanthomonas campestris pv. raphani 756C"]]},{"id":"NCBITaxon:991789","l":"Anaerotignum propionicum DSM 1682","na":1,"nb":2,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["NCBITaxon%3A28446","Anaerotignum propionicum"],["NCBITaxon%3A991789","Anaerotignum propionicum DSM 1682"]]},{"id":"NCBITaxon:99481","l":"Nostocoides japonicum","na":1,"nb":2,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["NCBITaxon%3A99481","Nostocoides japonicum"],["NCBITaxon%3A1194083","Nostocoides japonicum T1-X7"]]},{"id":"NCBITaxon:99656","l":"[Clostridium] fimetarium","na":1,"nb":2,"a":[["animal-waste-material-envo-00002276.html","animal waste material"]],"b":[["NCBITaxon%3A99656","[Clostridium] fimetarium"],["NCBITaxon%3A1121311","[Clostridium] fimetarium DSM 9179"]]},{"id":"NCBITaxon:997349","l":"Olsenella profusa DSM 13989","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A138595","Olsenella profusa"],["NCBITaxon%3A997349","Olsenella profusa DSM 13989"]]},{"id":"NCBITaxon:999","l":"Bernardetia litoralis","na":1,"nb":2,"a":[["lagoon-envo-00000038.html","lagoon"]],"b":[["NCBITaxon%3A999","Bernardetia litoralis"],["NCBITaxon%3A880071","Bernardetia litoralis DSM 6794"]]},{"id":"NCBITaxon:999547","l":"Leisingera daeponensis DSM 23529","na":1,"nb":2,"a":[["beach-envo-00000091.html","beach"]],"b":[["NCBITaxon%3A405746","Leisingera daeponensis"],["NCBITaxon%3A999547","Leisingera daeponensis DSM 23529"]]},{"id":"NCBITaxon:999552","l":"Leisingera methylohalidivorans DSM 14336","na":1,"nb":2,"a":[["marine-neritic-zone-envo-00000206.html","marine neritic zone"]],"b":[["NCBITaxon%3A133924","Leisingera methylohalidivorans"],["NCBITaxon%3A999552","Leisingera methylohalidivorans DSM 14336"]]},{"id":"NCBITaxon:1000560","l":"Escherichia coli VDP","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1000560","Escherichia coli VDP"]]},{"id":"NCBITaxon:1000567","l":"Bifidobacterium longum 3_1_37DFAAB","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1000567","Bifidobacterium longum 3_1_37DFAAB"]]},{"id":"NCBITaxon:1000568","l":"","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1000568","Megasphaera lornae"]]},{"id":"NCBITaxon:1000569","l":"Megasphaera sp. UPII 135-E","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1000569","Megasphaera sp. UPII 135-E"]]},{"id":"NCBITaxon:1000935","l":"","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1000935","Anaplasma marginale str. Florida Relapse"]]},{"id":"NCBITaxon:1000936","l":"","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1000936","Anaplasma marginale str. Okeechobee"]]},{"id":"NCBITaxon:1000937","l":"","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1000937","Anaplasma marginale str. Washington Okanogan"]]},{"id":"NCBITaxon:1000938","l":"","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1000938","Anaplasma marginale str. Oklahoma"]]},{"id":"NCBITaxon:1000939","l":"","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1000939","Anaplasma marginale str. South Idaho"]]},{"id":"NCBITaxon:1000950","l":"Vibrio cholerae HC-55C1","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1000950","Vibrio cholerae HC-55C1"]]},{"id":"NCBITaxon:1001223","l":"Avibacterium paragallinarum 72C","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1001223","Avibacterium paragallinarum 72C"]]},{"id":"NCBITaxon:1001224","l":"Avibacterium paragallinarum 72C1","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1001224","Avibacterium paragallinarum 72C1"]]},{"id":"NCBITaxon:1001530","l":"","na":1,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001530","Photobacterium leiognathi subsp. mandapamensis svers.1.1."]]},{"id":"NCBITaxon:1001582","l":"Bacillus amyloliquefaciens LL3","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A1001582","Bacillus amyloliquefaciens LL3"]]},{"id":"NCBITaxon:1001583","l":"Levilactobacillus brevis KB290","na":1,"nb":1,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A1001583","Levilactobacillus brevis KB290"]]},{"id":"NCBITaxon:1001585","l":"","na":1,"nb":1,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A1001585","Ectopseudomonas mendocina NK-01"]]},{"id":"NCBITaxon:1001586","l":"","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001586","Leptospira interrogans serovar Bulgarica str. Mallika"]]},{"id":"NCBITaxon:1001587","l":"","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001587","Leptospira interrogans serovar Pomona str. Pomona"]]},{"id":"NCBITaxon:1001588","l":"","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001588","Leptospira interrogans str. 2002000621"]]},{"id":"NCBITaxon:1001589","l":"","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001589","Leptospira weilii str. 2006001853"]]},{"id":"NCBITaxon:1001590","l":"Leptospira interrogans str. 2006001854","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001590","Leptospira interrogans str. 2006001854"]]},{"id":"NCBITaxon:1001591","l":"","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001591","Leptospira interrogans str. C10069"]]},{"id":"NCBITaxon:1001592","l":"","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001592","Leptospira santarosai str. 2000027870"]]},{"id":"NCBITaxon:1001593","l":"","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001593","Leptospira noguchii str. 2006001870"]]},{"id":"NCBITaxon:1001594","l":"","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001594","Leptospira interrogans serovar Australis str. LT2148"]]},{"id":"NCBITaxon:1001595","l":"","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001595","Leptospira noguchii serovar Panama str. CZ214"]]},{"id":"NCBITaxon:1001596","l":"","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001596","Leptospira interrogans serovar Djasiman str. LT1649"]]},{"id":"NCBITaxon:1001597","l":"","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001597","Leptospira interrogans serovar Canicola str. LT1962"]]},{"id":"NCBITaxon:1001598","l":"","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001598","Leptospira interrogans serovar Copenhageni str. LT2050"]]},{"id":"NCBITaxon:1001599","l":"","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001599","Leptospira interrogans serovar Grippotyphosa str. LT2186"]]},{"id":"NCBITaxon:1001601","l":"","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001601","Leptospira interrogans serovar Zanoni str. LT2156"]]},{"id":"NCBITaxon:1001602","l":"","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001602","Leptospira interrogans serovar Copenhageni str. Fiocruz LV2756C6"]]},{"id":"NCBITaxon:1001603","l":"","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001603","Leptospira interrogans serovar Copenhageni str. Fiocruz R154"]]},{"id":"NCBITaxon:1001704","l":"","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001704","Mycobacteroides abscessus subsp. bolletii 1S-151-0930"]]},{"id":"NCBITaxon:1001705","l":"","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001705","Mycobacteroides abscessus subsp. bolletii 1S-152-0914"]]},{"id":"NCBITaxon:1001706","l":"","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001706","Mycobacteroides abscessus subsp. bolletii 1S-153-0915"]]},{"id":"NCBITaxon:1001707","l":"","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001707","Mycobacteroides abscessus subsp. bolletii 1S-154-0310"]]},{"id":"NCBITaxon:1001708","l":"","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001708","Mycobacteroides abscessus subsp. bolletii 2B-0626"]]},{"id":"NCBITaxon:1001709","l":"","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001709","Mycobacteroides abscessus subsp. bolletii 2B-1231"]]},{"id":"NCBITaxon:1001710","l":"","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001710","Mycobacteroides abscessus subsp. bolletii 2B-0107"]]},{"id":"NCBITaxon:1001711","l":"","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001711","Mycobacteroides abscessus subsp. bolletii 2B-0912-R"]]},{"id":"NCBITaxon:1001712","l":"","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001712","Mycobacteroides abscessus subsp. bolletii 2B-0912-S"]]},{"id":"NCBITaxon:1001713","l":"","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001713","Mycobacteroides abscessus subsp. bolletii 2B-0307"]]},{"id":"NCBITaxon:1001715","l":"","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001715","Mycobacteroides abscessus 3A-0122-R"]]},{"id":"NCBITaxon:1001716","l":"","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001716","Mycobacteroides abscessus 3A-0122-S"]]},{"id":"NCBITaxon:1001717","l":"","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001717","Mycobacteroides abscessus 3A-0810-R"]]},{"id":"NCBITaxon:1001718","l":"","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001718","Mycobacteroides abscessus 3A-0731"]]},{"id":"NCBITaxon:1001719","l":"","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001719","Mycobacteroides abscessus 3A-0930-S"]]},{"id":"NCBITaxon:1001720","l":"","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001720","Mycobacteroides abscessus 3A-0930-R"]]},{"id":"NCBITaxon:1001721","l":"","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001721","Mycobacteroides abscessus 3A-0119-R"]]},{"id":"NCBITaxon:1001722","l":"","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001722","Mycobacteroides abscessus 4S-0303"]]},{"id":"NCBITaxon:1001723","l":"","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001723","Mycobacteroides abscessus 4S-0206"]]},{"id":"NCBITaxon:1001724","l":"","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001724","Mycobacteroides abscessus 4S-0116-S"]]},{"id":"NCBITaxon:1001725","l":"","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001725","Mycobacteroides abscessus 4S-0116-R"]]},{"id":"NCBITaxon:1001732","l":"","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1001732","Mycobacteroides abscessus 5S-0921"]]},{"id":"NCBITaxon:100174","l":"Clostridium peptidivorans","na":1,"nb":1,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A100174","Clostridium peptidivorans"]]},{"id":"NCBITaxon:1001986","l":"","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001986","Leptospira interrogans serovar Copenhageni str. 2006007831"]]},{"id":"NCBITaxon:1001987","l":"","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001987","Leptospira interrogans serovar Copenhageni str. 2001025091"]]},{"id":"NCBITaxon:1001989","l":"Escherichia coli PCN033","na":1,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A1001989","Escherichia coli PCN033"]]},{"id":"NCBITaxon:1002339","l":"","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1002339","Psychrobacter sp. 1501(2011)"]]},{"id":"NCBITaxon:1002526","l":"","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A1002526","Halopseudomonas formosensis"]]},{"id":"NCBITaxon:1002691","l":"Occallatibacter savannae","na":1,"nb":1,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A1002691","Occallatibacter savannae"]]},{"id":"NCBITaxon:1002795","l":"","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A1002795","Pectinatus sottacetonis"]]},{"id":"NCBITaxon:1002809","l":"Solibacillus silvestris StLB046","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1002809","Solibacillus silvestris StLB046"]]},{"id":"NCBITaxon:1003188","l":"","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A1003188","Salmonella enterica subsp. enterica serovar Agona str. SA-4"]]},{"id":"NCBITaxon:1003200","l":"","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1003200","Achromobacter insuavis AXX-A"]]},{"id":"NCBITaxon:1003201","l":"Rickettsia typhi str. TH1527","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1003201","Rickettsia typhi str. TH1527"]]},{"id":"NCBITaxon:1004165","l":"","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1004165","Photorhabdus caribbeanensis"]]},{"id":"NCBITaxon:1004166","l":"","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1004166","Photorhabdus hainanensis"]]},{"id":"NCBITaxon:1004261","l":"Oceanobacillus indicireducens","na":1,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A1004261","Oceanobacillus indicireducens"]]},{"id":"NCBITaxon:1004279","l":"","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1004279","Mesorhizobium muleiense"]]},{"id":"NCBITaxon:1004316","l":"Vibrio sonorensis","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A1004316","Vibrio sonorensis"]]},{"id":"NCBITaxon:1004322","l":"Vibrio crosai","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A1004322","Vibrio crosai"]]},{"id":"NCBITaxon:1004326","l":"Vibrio mexicanus","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A1004326","Vibrio mexicanus"]]},{"id":"NCBITaxon:1004836","l":"Gluconacetobacter sp. SXCC-1","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A1004836","Gluconacetobacter sp. SXCC-1"]]},{"id":"NCBITaxon:1005043","l":"Candidatus Regiella insecticola 5.15","na":1,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1005043","Candidatus Regiella insecticola 5.15"]]},{"id":"NCBITaxon:1005046","l":"","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1005046","[Haemophilus] ducreyi ATCC 33921"]]},{"id":"NCBITaxon:1005048","l":"Collimonas fungivorans Ter331","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1005048","Collimonas fungivorans Ter331"]]},{"id":"NCBITaxon:1005057","l":"Buchnera aphidicola str. Ua (Uroleucon ambrosiae)","na":1,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1005057","Buchnera aphidicola str. Ua (Uroleucon ambrosiae)"]]},{"id":"NCBITaxon:1005090","l":"Buchnera aphidicola str. Ak (Acyrthosiphon kondoi)","na":1,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1005090","Buchnera aphidicola str. Ak (Acyrthosiphon kondoi)"]]},{"id":"NCBITaxon:1005403","l":"Escherichia coli 93.0055","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A1005403","Escherichia coli 93.0055"]]},{"id":"NCBITaxon:1005404","l":"Escherichia coli 93.0056","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A1005404","Escherichia coli 93.0056"]]},{"id":"NCBITaxon:1005405","l":"Escherichia coli 94.0618","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A1005405","Escherichia coli 94.0618"]]},{"id":"NCBITaxon:1005462","l":"Escherichia coli 8.0566","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A1005462","Escherichia coli 8.0566"]]},{"id":"NCBITaxon:1005463","l":"Escherichia coli 8.0416","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A1005463","Escherichia coli 8.0416"]]},{"id":"NCBITaxon:1005464","l":"Escherichia coli 8.0569","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A1005464","Escherichia coli 8.0569"]]},{"id":"NCBITaxon:1005527","l":"Escherichia coli EC4421","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1005527","Escherichia coli EC4421"]]},{"id":"NCBITaxon:1005528","l":"Escherichia coli EC4422","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1005528","Escherichia coli EC4422"]]},{"id":"NCBITaxon:1005704","l":"Streptococcus oralis SK255","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1005704","Streptococcus oralis SK255"]]},{"id":"NCBITaxon:1005925","l":"Kordiimonas aestuarii","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1005925","Kordiimonas aestuarii"]]},{"id":"NCBITaxon:1006551","l":"Klebsiella michiganensis (strain ATCC 8724 / DSM 4798 / JCM 20051 / NBRC 3318 / NRRL B-199 / KCTC 1686 / BUCSAV 143 / CCM 1901)","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1006551","Klebsiella michiganensis KCTC 1686"]]},{"id":"NCBITaxon:1007064","l":"Streptococcus suis ST3","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1007064","Streptococcus suis ST3"]]},{"id":"NCBITaxon:1007065","l":"Escherichia coli M15","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1007065","Escherichia coli M15"]]},{"id":"NCBITaxon:1007098","l":"Deinococcus daejeonensis","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A1007098","Deinococcus daejeonensis"]]},{"id":"NCBITaxon:1007104","l":"Sphingomonas sp. S17","na":1,"nb":1,"a":[["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A1007104","Sphingomonas sp. S17"]]},{"id":"NCBITaxon:1007511","l":"Sphingobium limneticum","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A1007511","Sphingobium limneticum"]]},{"id":"NCBITaxon:1007656","l":"Pseudomonas fluorescens Wayne1","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1007656","Pseudomonas fluorescens Wayne1"]]},{"id":"NCBITaxon:1008392","l":"Chitinispirillum alkaliphilum","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A1008392","Chitinispirillum alkaliphilum"]]},{"id":"NCBITaxon:1009419","l":"Verrucomicrobia bacterium SCGC AAA164-N20","na":1,"nb":1,"a":[["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1009419","Verrucomicrobia bacterium SCGC AAA164-N20"]]},{"id":"NCBITaxon:1009421","l":"Verrucomicrobia bacterium SCGC AAA164-P11","na":1,"nb":1,"a":[["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1009421","Verrucomicrobia bacterium SCGC AAA164-P11"]]},{"id":"NCBITaxon:1009695","l":"Verrucomicrobia bacterium SCGC AAA164-A21","na":1,"nb":1,"a":[["inlet-envo-00000475.html","inlet"]],"b":[["NCBITaxon%3A1009695","Verrucomicrobia bacterium SCGC AAA164-A21"]]},{"id":"NCBITaxon:1009853","l":"Xanthomonas oryzae X11-5A","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1009853","Xanthomonas oryzae X11-5A"]]},{"id":"NCBITaxon:1009854","l":"Xanthomonas oryzae X8-1A","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1009854","Xanthomonas oryzae X8-1A"]]},{"id":"NCBITaxon:1010610","l":"","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1010610","Methylobacterium gnaphalii"]]},{"id":"NCBITaxon:1016997","l":"Polycladomyces subterraneus","na":1,"nb":1,"a":[["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A1016997","Polycladomyces subterraneus"]]},{"id":"NCBITaxon:1017018","l":"Paenimyroides anatoliense","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A1017018","Paenimyroides anatoliense"]]},{"id":"NCBITaxon:1017177","l":"Gluconacetobacter tumulicola","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1017177","Gluconacetobacter tumulicola"]]},{"id":"NCBITaxon:1017181","l":"Gluconacetobacter asukensis","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1017181","Gluconacetobacter asukensis"]]},{"id":"NCBITaxon:1017264","l":"Bordetella pertussis CS","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1017264","Bordetella pertussis CS"]]},{"id":"NCBITaxon:1017266","l":"Lactococcus garvieae UNIUD074","na":1,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1017266","Lactococcus garvieae UNIUD074"]]},{"id":"NCBITaxon:1017277","l":"","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A296995","Exiguobacterium indicum"]]},{"id":"NCBITaxon:102127","l":"","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A102127","Baaleninema simplex PCC 7105"]]},{"id":"NCBITaxon:102227","l":"","na":1,"nb":1,"a":[["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A102227","Pseudonocardia kongjuensis"]]},{"id":"NCBITaxon:1027249","l":"","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A1027249","Gracilibacillus kekensis"]]},{"id":"NCBITaxon:1027364","l":"Edwardsiella tarda DT","na":1,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1027364","Edwardsiella tarda DT"]]},{"id":"NCBITaxon:1027372","l":"Enterococcus faecalis OG1X","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1027372","Enterococcus faecalis OG1X"]]},{"id":"NCBITaxon:1027373","l":"Nitrosopumilus sp. AR","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1027373","Nitrosopumilus sp. AR"]]},{"id":"NCBITaxon:1027374","l":"Nitrosopumilus sp. SJ","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1027374","Nitrosopumilus sp. SJ"]]},{"id":"NCBITaxon:1027397","l":"Erwinia amylovora ACW56400","na":1,"nb":1,"a":[["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A1027397","Erwinia amylovora ACW56400"]]},{"id":"NCBITaxon:1028743","l":"Arenibacter hampyeongensis","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1028743","Arenibacter hampyeongensis"]]},{"id":"NCBITaxon:1028745","l":"Aestuariibaculum suncheonense","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1028745","Aestuariibaculum suncheonense"]]},{"id":"NCBITaxon:1028746","l":"","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1028746","Christiangramia aestuarii"]]},{"id":"NCBITaxon:1028749","l":"Microbulbifer gwangyangensis","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1028749","Microbulbifer gwangyangensis"]]},{"id":"NCBITaxon:1028750","l":"Photobacterium aestuarii","na":1,"nb":1,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["NCBITaxon%3A1028750","Photobacterium aestuarii"]]},{"id":"NCBITaxon:1028752","l":"Shewanella aestuarii","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1028752","Shewanella aestuarii"]]},{"id":"NCBITaxon:1028799","l":"Staphylococcus aureus subsp. aureus VC40","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1028799","Staphylococcus aureus subsp. aureus VC40"]]},{"id":"NCBITaxon:1028801","l":"Neorhizobium galegae bv. officinalis bv. officinalis str. HAMBI 1141","na":1,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A1028801","Neorhizobium galegae bv. officinalis bv. officinalis str. HAMBI 1141"]]},{"id":"NCBITaxon:1028804","l":"Haemophilus haemolyticus M21127","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1028804","Haemophilus haemolyticus M21127"]]},{"id":"NCBITaxon:1028805","l":"Haemophilus haemolyticus M21621","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1028805","Haemophilus haemolyticus M21621"]]},{"id":"NCBITaxon:1028806","l":"Haemophilus haemolyticus M21639","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1028806","Haemophilus haemolyticus M21639"]]},{"id":"NCBITaxon:102891","l":"Frankia sp. ACN1ag","na":1,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A102891","Frankia sp. ACN1ag"]]},{"id":"NCBITaxon:1028989","l":"Pseudomonas sp. StFLB209","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1028989","Pseudomonas sp. StFLB209"]]},{"id":"NCBITaxon:1029822","l":"","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1029822","Ligilactobacillus salivarius NIAS840"]]},{"id":"NCBITaxon:1029823","l":"Acinetobacter sp. P8-3-8","na":1,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1029823","Acinetobacter sp. P8-3-8"]]},{"id":"NCBITaxon:1029824","l":"Kocuria rhizophila P7-4","na":1,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1029824","Kocuria rhizophila P7-4"]]},{"id":"NCBITaxon:1029977","l":"Salmonella enterica subsp. enterica serovar Paratyphi B str. SARA42","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1029977","Salmonella enterica subsp. enterica serovar Paratyphi B str. SARA42"]]},{"id":"NCBITaxon:1029978","l":"Salmonella enterica subsp. enterica serovar Typhimurium str. SARA13","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1029978","Salmonella enterica subsp. enterica serovar Typhimurium str. SARA13"]]},{"id":"NCBITaxon:1029980","l":"Salmonella enterica subsp. enterica serovar Kentucky str. 5349","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1029980","Salmonella enterica subsp. enterica serovar Kentucky str. 5349"]]},{"id":"NCBITaxon:1029982","l":"Salmonella enterica subsp. enterica serovar Tallahassee str. 0012","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1029982","Salmonella enterica subsp. enterica serovar Tallahassee str. 0012"]]},{"id":"NCBITaxon:1029983","l":"Salmonella enterica subsp. enterica serovar Abony str. 0014","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1029983","Salmonella enterica subsp. enterica serovar Abony str. 0014"]]},{"id":"NCBITaxon:1029997","l":"Salmonella enterica subsp. enterica serovar Heidelberg str. SARA35","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1029997","Salmonella enterica subsp. enterica serovar Heidelberg str. SARA35"]]},{"id":"NCBITaxon:1030009","l":"Listeria monocytogenes M7","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1030009","Listeria monocytogenes M7"]]},{"id":"NCBITaxon:1030145","l":"Pseudomonas tolaasii PMS117","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A1030145","Pseudomonas tolaasii PMS117"]]},{"id":"NCBITaxon:1031273","l":"Gaetbulibacter lutimaris","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1031273","Gaetbulibacter lutimaris"]]},{"id":"NCBITaxon:1031711","l":"Ralstonia solanacearum Po82","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1031711","Ralstonia solanacearum Po82"]]},{"id":"NCBITaxon:1032","l":"Thiothrix sp.","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A1032","Thiothrix sp."]]},{"id":"NCBITaxon:1032071","l":"","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1032071","Aliarcobacter cryaerophilus D2610"]]},{"id":"NCBITaxon:1032475","l":"Marine group II euryarchaeote SCGC AAA288-C18","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A1032475","Marine group II euryarchaeote SCGC AAA288-C18"]]},{"id":"NCBITaxon:1032505","l":"Fusobacterium sp. OBRC1","na":1,"nb":1,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A1032505","Fusobacterium sp. OBRC1"]]},{"id":"NCBITaxon:1032866","l":"Pasteurella multocida subsp. gallicida str. Anand1_poultry","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1032866","Pasteurella multocida subsp. gallicida str. Anand1_poultry"]]},{"id":"NCBITaxon:1033813","l":"Escherichia coli NA114","na":1,"nb":1,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A1033813","Escherichia coli NA114"]]},{"id":"NCBITaxon:1033922","l":"Rhodococcus sp. WB1","na":1,"nb":1,"a":[["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A1033922","Rhodococcus sp. WB1"]]},{"id":"NCBITaxon:1033991","l":"Rhizobium leguminosarum bv. trifolii CB782","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1033991","Rhizobium leguminosarum bv. trifolii CB782"]]},{"id":"NCBITaxon:1033992","l":"Ectopseudomonas oleovorans MOIL14HWK12","na":1,"nb":1,"a":[["plant-bto-0001481.html","plant"]],"b":[["NCBITaxon%3A1033992","Ectopseudomonas oleovorans MOIL14HWK12"]]},{"id":"NCBITaxon:1033993","l":"Pseudomonas sp. MOIL14HWK12:I1","na":1,"nb":1,"a":[["plant-bto-0001481.html","plant"]],"b":[["NCBITaxon%3A1033993","Pseudomonas sp. MOIL14HWK12:I1"]]},{"id":"NCBITaxon:1033994","l":"Pseudomonas sp. MOIL14HWK12:I2","na":1,"nb":1,"a":[["plant-bto-0001481.html","plant"]],"b":[["NCBITaxon%3A1033994","Pseudomonas sp. MOIL14HWK12:I2"]]},{"id":"NCBITaxon:1034346","l":"Dielma fastidiosa","na":1,"nb":1,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A1034346","Dielma fastidiosa"]]},{"id":"NCBITaxon:1034471","l":"","na":1,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1034471","Xenorhabdus ishibashii"]]},{"id":"NCBITaxon:1034943","l":"Legionella massiliensis","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A1034943","Legionella massiliensis"]]},{"id":"NCBITaxon:1034944","l":"","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A1034944","Legionella tunisiensis"]]},{"id":"NCBITaxon:1035189","l":"Streptococcus infantis SK970","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1035189","Streptococcus infantis SK970"]]},{"id":"NCBITaxon:1035309","l":"Ceratocystis fimbriata CBS 114723","na":1,"nb":1,"a":[["plant-bto-0001481.html","plant"]],"b":[["NCBITaxon%3A1035309","Ceratocystis fimbriata CBS 114723"]]},{"id":"NCBITaxon:1035817","l":"Bifidobacterium longum subsp. longum KACC 91563","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1035817","Bifidobacterium longum subsp. longum KACC 91563"]]},{"id":"NCBITaxon:1035916","l":"Echinicola shivajiensis","na":1,"nb":1,"a":[["brackish-water-body-envo-01001321.html","brackish water body"]],"b":[["NCBITaxon%3A1035916","Echinicola shivajiensis"]]},{"id":"NCBITaxon:1036133","l":"Kistimonas scapharcae","na":1,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1036133","Kistimonas scapharcae"]]},{"id":"NCBITaxon:1036177","l":"Lactiplantibacillus plantarum subsp. plantarum NC8","na":1,"nb":1,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A1036177","Lactiplantibacillus plantarum subsp. plantarum NC8"]]},{"id":"NCBITaxon:1036180","l":"","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A1036180","Pseudoduganella lurida"]]},{"id":"NCBITaxon:1036182","l":"Paractinoplanes atraurantiacus","na":1,"nb":1,"a":[["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A1036182","Paractinoplanes atraurantiacus"]]},{"id":"NCBITaxon:1036674","l":"Idiomarina sp. A28L","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A1036674","Idiomarina sp. A28L"]]},{"id":"NCBITaxon:1036679","l":"Methanosarcina spelaei","na":1,"nb":1,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A1036679","Methanosarcina spelaei"]]},{"id":"NCBITaxon:1036735","l":"","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1036735","Bifidobacterium breve CECT 7263"]]},{"id":"NCBITaxon:1036778","l":"","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1036778","Allobosea lathyri"]]},{"id":"NCBITaxon:1036779","l":"","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1036779","Allobosea lupini"]]},{"id":"NCBITaxon:1036780","l":"","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1036780","Allobosea robiniae"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A103690","Nostoc sp. PCC 7120 = FACHB-418"]]},{"id":"NCBITaxon:103725","l":"","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A103725","Kutzneria kofuensis"]]},{"id":"NCBITaxon:1037262","l":"Salmonella enterica subsp. enterica serovar Typhimurium str. AZ 057","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1037262","Salmonella enterica subsp. enterica serovar Typhimurium str. AZ 057"]]},{"id":"NCBITaxon:1037377","l":"Chryseobacterium viscerum","na":1,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1037377","Chryseobacterium viscerum"]]},{"id":"NCBITaxon:1037409","l":"Bradyrhizobium japonicum USDA 6","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1037409","Bradyrhizobium japonicum USDA 6"]]},{"id":"NCBITaxon:1037890","l":"Klebsiella pneumoniae JH1","na":1,"nb":1,"a":[["urinary-tract-bto-0001244.html","urinary tract"]],"b":[["NCBITaxon%3A1037890","Klebsiella pneumoniae JH1"]]},{"id":"NCBITaxon:1037908","l":"Klebsiella pneumoniae 1162281","na":1,"nb":1,"a":[["urinary-tract-bto-0001244.html","urinary tract"]],"b":[["NCBITaxon%3A1037908","Klebsiella pneumoniae 1162281"]]},{"id":"NCBITaxon:1038014","l":"Aquimarina amphilecti","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1038014","Aquimarina amphilecti"]]},{"id":"NCBITaxon:103838","l":"Nonomuraea turkmeniaca","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A103838","Nonomuraea turkmeniaca"]]},{"id":"NCBITaxon:1038845","l":"Flavobacterium rakeshii","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1038845","Flavobacterium rakeshii"]]},{"id":"NCBITaxon:1038860","l":"Bradyrhizobium elkanii WSM2783","na":1,"nb":1,"a":[["plant-bto-0001481.html","plant"]],"b":[["NCBITaxon%3A1038860","Bradyrhizobium elkanii WSM2783"]]},{"id":"NCBITaxon:1038861","l":"Bradyrhizobium japonicum USDA 122","na":1,"nb":1,"a":[["plant-bto-0001481.html","plant"]],"b":[["NCBITaxon%3A1038861","Bradyrhizobium japonicum USDA 122"]]},{"id":"NCBITaxon:1038862","l":"Bradyrhizobium japonicum USDA 124","na":1,"nb":1,"a":[["plant-bto-0001481.html","plant"]],"b":[["NCBITaxon%3A1038862","Bradyrhizobium japonicum USDA 124"]]},{"id":"NCBITaxon:1038863","l":"Bradyrhizobium japonicum USDA 135","na":1,"nb":1,"a":[["plant-bto-0001481.html","plant"]],"b":[["NCBITaxon%3A1038863","Bradyrhizobium japonicum USDA 135"]]},{"id":"NCBITaxon:1038864","l":"Bradyrhizobium ottawense USDA 4","na":1,"nb":1,"a":[["plant-bto-0001481.html","plant"]],"b":[["NCBITaxon%3A1038864","Bradyrhizobium ottawense USDA 4"]]},{"id":"NCBITaxon:1038866","l":"Bradyrhizobium sp. WSM2793","na":1,"nb":1,"a":[["plant-bto-0001481.html","plant"]],"b":[["NCBITaxon%3A1038866","Bradyrhizobium sp. WSM2793"]]},{"id":"NCBITaxon:103891","l":"Veillonella criceti","na":1,"nb":1,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A103891","Veillonella criceti"]]},{"id":"NCBITaxon:1038922","l":"Pseudomonas fluorescens Q2-87","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1038922","Pseudomonas fluorescens Q2-87"]]},{"id":"NCBITaxon:1038923","l":"Pseudomonas fluorescens Q8r1-96","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1038923","Pseudomonas fluorescens Q8r1-96"]]},{"id":"NCBITaxon:1040964","l":"","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1040964","Ligilactobacillus ruminis SPM0211"]]},{"id":"NCBITaxon:1040978","l":"Cupriavidus taiwanensis STM 6018","na":1,"nb":1,"a":[["city-envo-00000856.html","city"]],"b":[["NCBITaxon%3A1040978","Cupriavidus taiwanensis STM 6018"]]},{"id":"NCBITaxon:1040981","l":"Mesorhizobium ciceri WSM4083","na":1,"nb":1,"a":[["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A1040981","Mesorhizobium ciceri WSM4083"]]},{"id":"NCBITaxon:1040988","l":"Bradyrhizobium sp. WSM4349","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1040988","Bradyrhizobium sp. WSM4349"]]},{"id":"NCBITaxon:1040989","l":"Bradyrhizobium sp. ARR65","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A1040989","Bradyrhizobium sp. ARR65"]]},{"id":"NCBITaxon:1041141","l":"Rhizobium leguminosarum bv. viciae 128C53","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1041141","Rhizobium leguminosarum bv. viciae 128C53"]]},{"id":"NCBITaxon:1041157","l":"Sinorhizobium meliloti WSM1022","na":1,"nb":1,"a":[["city-envo-00000856.html","city"]],"b":[["NCBITaxon%3A1041157","Sinorhizobium meliloti WSM1022"]]},{"id":"NCBITaxon:104205","l":"Streptomonospora salina","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A104205","Streptomonospora salina"]]},{"id":"NCBITaxon:1042399","l":"Lactobacillus delbrueckii subsp. bulgaricus CNCM I-1632","na":1,"nb":1,"a":[["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A1042399","Lactobacillus delbrueckii subsp. bulgaricus CNCM I-1632"]]},{"id":"NCBITaxon:1042400","l":"Lactobacillus delbrueckii subsp. bulgaricus CNCM I-1519","na":1,"nb":1,"a":[["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A1042400","Lactobacillus delbrueckii subsp. bulgaricus CNCM I-1519"]]},{"id":"NCBITaxon:1042402","l":"Lactococcus lactis subsp. lactis CNCM I-1631","na":1,"nb":1,"a":[["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A1042402","Lactococcus lactis subsp. lactis CNCM I-1631"]]},{"id":"NCBITaxon:1042403","l":"Bifidobacterium animalis subsp. lactis CNCM I-2494","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1042403","Bifidobacterium animalis subsp. lactis CNCM I-2494"]]},{"id":"NCBITaxon:1042404","l":"Streptococcus thermophilus CNCM I-1630","na":1,"nb":1,"a":[["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A1042404","Streptococcus thermophilus CNCM I-1630"]]},{"id":"NCBITaxon:1042877","l":"Thermococcus sp. 4557","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1042877","Thermococcus sp. 4557"]]},{"id":"NCBITaxon:1045558","l":"Neptunomonas qingdaonensis","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1045558","Neptunomonas qingdaonensis"]]},{"id":"NCBITaxon:1045764","l":"Methanothermobacter crinale","na":1,"nb":1,"a":[["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A1045764","Methanothermobacter crinale"]]},{"id":"NCBITaxon:1045854","l":"Weissella koreensis KACC 15510","na":1,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A1045854","Weissella koreensis KACC 15510"]]},{"id":"NCBITaxon:1045857","l":"Cronobacter sakazakii ES713","na":1,"nb":1,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A1045857","Cronobacter sakazakii ES713"]]},{"id":"NCBITaxon:1046128","l":"Vibrio zhanjiangensis","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A1046128","Vibrio zhanjiangensis"]]},{"id":"NCBITaxon:1046556","l":"Nocardioides daejeonensis","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A1046556","Nocardioides daejeonensis"]]},{"id":"NCBITaxon:1046629","l":"Streptococcus salivarius 57.I","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1046629","Streptococcus salivarius 57.I"]]},{"id":"NCBITaxon:104663","l":"Chitinophaga filiformis","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A104663","Chitinophaga filiformis"]]},{"id":"NCBITaxon:104665","l":"Pseudomonas sp. DSM 12877","na":1,"nb":1,"a":[["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A104665","Pseudomonas sp. DSM 12877"]]},{"id":"NCBITaxon:1046935","l":"BRC1 bacterium SCGC AAA257-C11","na":1,"nb":1,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A1046935","BRC1 bacterium SCGC AAA257-C11"]]},{"id":"NCBITaxon:1046954","l":"Cloacimonetes bacterium SCGC AAA252-E20","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046954","Cloacimonetes bacterium SCGC AAA252-E20"]]},{"id":"NCBITaxon:1046955","l":"Cloacimonetes bacterium SCGC AAA252-F02","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046955","Cloacimonetes bacterium SCGC AAA252-F02"]]},{"id":"NCBITaxon:1046956","l":"Cloacimonetes bacterium SCGC AAA252-G07","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046956","Cloacimonetes bacterium SCGC AAA252-G07"]]},{"id":"NCBITaxon:1046957","l":"Cloacimonetes bacterium SCGC AAA252-G08","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046957","Cloacimonetes bacterium SCGC AAA252-G08"]]},{"id":"NCBITaxon:1046958","l":"Cloacimonetes bacterium SCGC AAA252-I11","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046958","Cloacimonetes bacterium SCGC AAA252-I11"]]},{"id":"NCBITaxon:1046959","l":"Cloacimonetes bacterium SCGC AAA252-I16","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046959","Cloacimonetes bacterium SCGC AAA252-I16"]]},{"id":"NCBITaxon:1046960","l":"Cloacimonetes bacterium SCGC AAA252-K16","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046960","Cloacimonetes bacterium SCGC AAA252-K16"]]},{"id":"NCBITaxon:1046961","l":"Cloacimonetes bacterium SCGC AAA252-L05","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046961","Cloacimonetes bacterium SCGC AAA252-L05"]]},{"id":"NCBITaxon:1046962","l":"Cloacimonetes bacterium SCGC AAA252-L13","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046962","Cloacimonetes bacterium SCGC AAA252-L13"]]},{"id":"NCBITaxon:1046963","l":"Cloacimonetes bacterium SCGC AAA252-M08","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046963","Cloacimonetes bacterium SCGC AAA252-M08"]]},{"id":"NCBITaxon:1046964","l":"Cloacimonetes bacterium SCGC AAA252-N05","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046964","Cloacimonetes bacterium SCGC AAA252-N05"]]},{"id":"NCBITaxon:1046965","l":"Cloacimonetes bacterium SCGC AAA252-N14","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046965","Cloacimonetes bacterium SCGC AAA252-N14"]]},{"id":"NCBITaxon:1046966","l":"Cloacimonetes bacterium SCGC AAA252-N17","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046966","Cloacimonetes bacterium SCGC AAA252-N17"]]},{"id":"NCBITaxon:1046967","l":"Cloacimonetes bacterium SCGC AAA252-O02","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046967","Cloacimonetes bacterium SCGC AAA252-O02"]]},{"id":"NCBITaxon:1046970","l":"Cloacimonetes bacterium SCGC AAA252-O17","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046970","Cloacimonetes bacterium SCGC AAA252-O17"]]},{"id":"NCBITaxon:1046971","l":"Cloacimonetes bacterium SCGC AAA252-P02","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046971","Cloacimonetes bacterium SCGC AAA252-P02"]]},{"id":"NCBITaxon:1046972","l":"Cloacimonetes bacterium SCGC AAA252-P10","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046972","Cloacimonetes bacterium SCGC AAA252-P10"]]},{"id":"NCBITaxon:1046973","l":"Cloacimonetes bacterium SCGC AAA252-P14","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046973","Cloacimonetes bacterium SCGC AAA252-P14"]]},{"id":"NCBITaxon:1046974","l":"Cloacimonetes bacterium SCGC AAA255-B16","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046974","Cloacimonetes bacterium SCGC AAA255-B16"]]},{"id":"NCBITaxon:1046975","l":"Cloacimonetes bacterium SCGC AAA255-C20","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046975","Cloacimonetes bacterium SCGC AAA255-C20"]]},{"id":"NCBITaxon:1046978","l":"Cloacimonetes bacterium SCGC AAA255-L20","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046978","Cloacimonetes bacterium SCGC AAA255-L20"]]},{"id":"NCBITaxon:1046983","l":"Hydrogenedentes bacterium JGI 0000059-N10","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1046983","Hydrogenedentes bacterium JGI 0000059-N10"]]},{"id":"NCBITaxon:1046991","l":"Acetothermia bacterium SCGC AAA255-C06","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046991","Acetothermia bacterium SCGC AAA255-C06"]]},{"id":"NCBITaxon:1047002","l":"Microgenomates bacterium SCGC AAA255-J07","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1047002","Microgenomates bacterium SCGC AAA255-J07"]]},{"id":"NCBITaxon:1047006","l":"Omnitrophica bacterium SCGC AAA252-B19","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1047006","Omnitrophica bacterium SCGC AAA252-B19"]]},{"id":"NCBITaxon:1047007","l":"Omnitrophica bacterium SCGC AAA257-O07","na":1,"nb":1,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A1047007","Omnitrophica bacterium SCGC AAA257-O07"]]},{"id":"NCBITaxon:1047009","l":"Fidelibacterota bacterium SCGC AAA011-A05","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047009","Fidelibacterota bacterium SCGC AAA011-A05"]]},{"id":"NCBITaxon:1047012","l":"Caldiserica bacterium JGI 0000059-M03","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047012","Caldiserica bacterium JGI 0000059-M03"]]},{"id":"NCBITaxon:1047014","l":"Aminicenantes bacterium SCGC AAA252-B17","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1047014","Aminicenantes bacterium SCGC AAA252-B17"]]},{"id":"NCBITaxon:1047053","l":"Atribacteria bacterium JGI 0000059-I14","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047053","Atribacteria bacterium JGI 0000059-I14"]]},{"id":"NCBITaxon:1047054","l":"Fidelibacterota bacterium SCGC AAA257-N23","na":1,"nb":1,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A1047054","Fidelibacterota bacterium SCGC AAA257-N23"]]},{"id":"NCBITaxon:1047055","l":"Fidelibacterota bacterium JGI 0000039-D08","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047055","Fidelibacterota bacterium JGI 0000039-D08"]]},{"id":"NCBITaxon:1047056","l":"Fidelibacterota bacterium JGI 0000039-E15","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047056","Fidelibacterota bacterium JGI 0000039-E15"]]},{"id":"NCBITaxon:1047058","l":"Fidelibacterota bacterium JGI 0000039-O11","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047058","Fidelibacterota bacterium JGI 0000039-O11"]]},{"id":"NCBITaxon:1047059","l":"Fidelibacterota bacterium JGI 0000059-D20","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047059","Fidelibacterota bacterium JGI 0000059-D20"]]},{"id":"NCBITaxon:1047060","l":"Fidelibacterota bacterium JGI 0000059-E23","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047060","Fidelibacterota bacterium JGI 0000059-E23"]]},{"id":"NCBITaxon:1047061","l":"Fidelibacterota bacterium JGI 0000059-L03","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047061","Fidelibacterota bacterium JGI 0000059-L03"]]},{"id":"NCBITaxon:1047063","l":"WS1 bacterium JGI 0000059-K21","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047063","WS1 bacterium JGI 0000059-K21"]]},{"id":"NCBITaxon:1047066","l":"Latescibacteria bacterium SCGC AAA257-K07","na":1,"nb":1,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A1047066","Latescibacteria bacterium SCGC AAA257-K07"]]},{"id":"NCBITaxon:1047073","l":"Cloacimonetes bacterium JGI 0000039-I17","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047073","Cloacimonetes bacterium JGI 0000039-I17"]]},{"id":"NCBITaxon:1047076","l":"Cloacimonetes bacterium JGI 0000039-M09","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047076","Cloacimonetes bacterium JGI 0000039-M09"]]},{"id":"NCBITaxon:1047077","l":"Cloacimonetes bacterium JGI 0000039-P09","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047077","Cloacimonetes bacterium JGI 0000039-P09"]]},{"id":"NCBITaxon:1047078","l":"Cloacimonetes bacterium JGI 0000059-F17","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047078","Cloacimonetes bacterium JGI 0000059-F17"]]},{"id":"NCBITaxon:1047079","l":"Cloacimonetes bacterium JGI 0000059-L07","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047079","Cloacimonetes bacterium JGI 0000059-L07"]]},{"id":"NCBITaxon:1047080","l":"Cloacimonetes bacterium JGI 0000059-P03","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047080","Cloacimonetes bacterium JGI 0000059-P03"]]},{"id":"NCBITaxon:1047081","l":"Cloacimonetes bacterium JGI 0000059-P11","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047081","Cloacimonetes bacterium JGI 0000059-P11"]]},{"id":"NCBITaxon:1048221","l":"Mucilaginibacter litoreus","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1048221","Mucilaginibacter litoreus"]]},{"id":"NCBITaxon:1048245","l":"","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1048245","Mycobacterium canetti CIPT 140010059"]]},{"id":"NCBITaxon:1048332","l":"Streptococcus salivarius CCHSS3","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1048332","Streptococcus salivarius CCHSS3"]]},{"id":"NCBITaxon:1048340","l":"Marininema mesophilum","na":1,"nb":1,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A1048340","Marininema mesophilum"]]},{"id":"NCBITaxon:1048357","l":"Nocardiopsis coralliicola","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A1048357","Nocardiopsis coralliicola"]]},{"id":"NCBITaxon:1048380","l":"Fusibacter sp. 3D3","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A1048380","Fusibacter sp. 3D3"]]},{"id":"NCBITaxon:1048396","l":"Halopenitus persicus","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A1048396","Halopenitus persicus"]]},{"id":"NCBITaxon:1048689","l":"","na":1,"nb":1,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A1048689","Escherichia coli O55:H7 str. RM12579"]]},{"id":"NCBITaxon:1049564","l":"endosymbiont of Tevnia jerichonana (vent Tica)","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1049564","endosymbiont of Tevnia jerichonana (vent Tica)"]]},{"id":"NCBITaxon:1049582","l":"Deinococcus enclensis","na":1,"nb":1,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["NCBITaxon%3A1049582","Deinococcus enclensis"]]},{"id":"NCBITaxon:1049980","l":"","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1049980","Leptospira santarosai str. HAI134"]]},{"id":"NCBITaxon:1049981","l":"","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1049981","Leptospira santarosai str. HAI1349"]]},{"id":"NCBITaxon:1049982","l":"","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1049982","Leptospira santarosai str. HAI1380"]]},{"id":"NCBITaxon:1049983","l":"","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1049983","Leptospira santarosai str. HAI821"]]},{"id":"NCBITaxon:1050153","l":"","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1050153","Ornithinimicrobium murale"]]},{"id":"NCBITaxon:1050174","l":"","na":1,"nb":1,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A1050174","Corynebacterium epidermidicanis"]]},{"id":"NCBITaxon:1051006","l":"","na":1,"nb":1,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A1051006","[Propionibacterium] namnetense SK182B-JCVI"]]},{"id":"NCBITaxon:1051075","l":"Paracoccus denitrificans SD1","na":1,"nb":1,"a":[["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A1051075","Paracoccus denitrificans SD1"]]},{"id":"NCBITaxon:1051531","l":"Saccharothrix tamanrassetensis","na":1,"nb":1,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A1051531","Saccharothrix tamanrassetensis"]]},{"id":"NCBITaxon:1051651","l":"Lacticaseibacillus casei 21/1","na":1,"nb":1,"a":[["silage-envo-00003030.html","silage"]],"b":[["NCBITaxon%3A1051651","Lacticaseibacillus casei 21/1"]]},{"id":"NCBITaxon:1051653","l":"","na":1,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A1051653","Lacticaseibacillus casei A2-362"]]},{"id":"NCBITaxon:1051654","l":"","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1051654","Lacticaseibacillus casei CRF28"]]},{"id":"NCBITaxon:1051658","l":"","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1051658","Lacticaseibacillus casei T71499"]]},{"id":"NCBITaxon:1051659","l":"","na":1,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A1051659","Lacticaseibacillus casei UCD174"]]},{"id":"NCBITaxon:1052014","l":"","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1052014","Natronococcus roseus"]]},{"id":"NCBITaxon:1052017","l":"Leucobacter margaritiformis","na":1,"nb":1,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A1052017","Leucobacter margaritiformis"]]},{"id":"NCBITaxon:1052257","l":"Aquihabitans daechungensis","na":1,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"]],"b":[["NCBITaxon%3A1052257","Aquihabitans daechungensis"]]},{"id":"NCBITaxon:1052260","l":"Klenkia soli","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A1052260","Klenkia soli"]]},{"id":"NCBITaxon:1053220","l":"Bacillus cereus MSX-A1","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1053220","Bacillus cereus MSX-A1"]]},{"id":"NCBITaxon:1053221","l":"Bacillus cereus MSX-A12","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1053221","Bacillus cereus MSX-A12"]]},{"id":"NCBITaxon:1053222","l":"Bacillus cereus MSX-D12","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1053222","Bacillus cereus MSX-D12"]]},{"id":"NCBITaxon:1054202","l":"Rhodobacter viridis","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1054202","Rhodobacter viridis"]]},{"id":"NCBITaxon:1054217","l":"Thermoplasmatales archaeon BRNA1","na":1,"nb":1,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A1054217","Thermoplasmatales archaeon BRNA1"]]},{"id":"NCBITaxon:105422","l":"","na":1,"nb":1,"a":[["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A105422","Streptacidiphilus carbonis"]]},{"id":"NCBITaxon:1055192","l":"Comamonas sp. B-9","na":1,"nb":1,"a":[["pulp-bto-0001142.html","pulp"]],"b":[["NCBITaxon%3A1055192","Comamonas sp. B-9"]]},{"id":"NCBITaxon:1055466","l":"Rhodococcus canchipurensis","na":1,"nb":1,"a":[["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A1055466","Rhodococcus canchipurensis"]]},{"id":"NCBITaxon:1055526","l":"Candidatus Paraburkholderia kirkii UZHbot1","na":1,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A1055526","Candidatus Paraburkholderia kirkii UZHbot1"]]},{"id":"NCBITaxon:1056810","l":"","na":1,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A1056810","Prolinoborus fasciculus"]]},{"id":"NCBITaxon:106147","l":"Pelistega europaea","na":1,"nb":1,"a":[["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["NCBITaxon%3A106147","Pelistega europaea"]]},{"id":"NCBITaxon:1062","l":"Rhodobacter sp.","na":1,"nb":1,"a":[["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["NCBITaxon%3A1062","Rhodobacter sp."]]},{"id":"NCBITaxon:1069475","l":"Arthrobacter paludis","na":1,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["NCBITaxon%3A1069475","Arthrobacter paludis"]]},{"id":"NCBITaxon:1069495","l":"Escherichia coli XH001","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1069495","Escherichia coli XH001"]]},{"id":"NCBITaxon:1069608","l":"Neisseria meningitidis 93003","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1069608","Neisseria meningitidis 93003"]]},{"id":"NCBITaxon:1069609","l":"Neisseria meningitidis 93004","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1069609","Neisseria meningitidis 93004"]]},{"id":"NCBITaxon:1069610","l":"Neisseria meningitidis NM255","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1069610","Neisseria meningitidis NM255"]]},{"id":"NCBITaxon:1069612","l":"Neisseria meningitidis NM183","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1069612","Neisseria meningitidis NM183"]]},{"id":"NCBITaxon:1069613","l":"Neisseria meningitidis NM2781","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1069613","Neisseria meningitidis NM2781"]]},{"id":"NCBITaxon:1069614","l":"Neisseria meningitidis 69166","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1069614","Neisseria meningitidis 69166"]]},{"id":"NCBITaxon:1069615","l":"Neisseria meningitidis NM576","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1069615","Neisseria meningitidis NM576"]]},{"id":"NCBITaxon:1069616","l":"Neisseria meningitidis 98008","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1069616","Neisseria meningitidis 98008"]]},{"id":"NCBITaxon:1069617","l":"Neisseria meningitidis 80179","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1069617","Neisseria meningitidis 80179"]]},{"id":"NCBITaxon:1069618","l":"Neisseria meningitidis 92045","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1069618","Neisseria meningitidis 92045"]]},{"id":"NCBITaxon:1069619","l":"Neisseria meningitidis NM2657","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1069619","Neisseria meningitidis NM2657"]]},{"id":"NCBITaxon:1069620","l":"Neisseria meningitidis NM2795","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1069620","Neisseria meningitidis NM2795"]]},{"id":"NCBITaxon:1069621","l":"Neisseria meningitidis NM3081","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1069621","Neisseria meningitidis NM3081"]]},{"id":"NCBITaxon:1069622","l":"Neisseria meningitidis NM3001","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1069622","Neisseria meningitidis NM3001"]]},{"id":"NCBITaxon:1069623","l":"Streptococcus pneumoniae GA05578","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1069623","Streptococcus pneumoniae GA05578"]]},{"id":"NCBITaxon:1069624","l":"Streptococcus pneumoniae GA04216","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1069624","Streptococcus pneumoniae GA04216"]]},{"id":"NCBITaxon:1069626","l":"Streptococcus pneumoniae GA02506","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1069626","Streptococcus pneumoniae GA02506"]]},{"id":"NCBITaxon:1069627","l":"Streptococcus pneumoniae GA04672","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1069627","Streptococcus pneumoniae GA04672"]]},{"id":"NCBITaxon:1069628","l":"Streptococcus pneumoniae GA08825","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1069628","Streptococcus pneumoniae GA08825"]]},{"id":"NCBITaxon:1069963","l":"Janibacter alkaliphilus","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A1069963","Janibacter alkaliphilus"]]},{"id":"NCBITaxon:1070866","l":"Amycolatopsis dongchuanensis","na":1,"nb":1,"a":[["watercourse-envo-00000029.html","watercourse"]],"b":[["NCBITaxon%3A1070866","Amycolatopsis dongchuanensis"]]},{"id":"NCBITaxon:1071054","l":"","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1071054","Domibacillus robiginosus"]]},{"id":"NCBITaxon:1071078","l":"Bacillus sp. NSP9.1","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A1071078","Bacillus sp. NSP9.1"]]},{"id":"NCBITaxon:1071079","l":"Bacillus sp. SB47","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A1071079","Bacillus sp. SB47"]]},{"id":"NCBITaxon:1071395","l":"Heyndrickxia coagulans XZL4","na":1,"nb":1,"a":[["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A1071395","Heyndrickxia coagulans XZL4"]]},{"id":"NCBITaxon:1071400","l":"","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A1071400","Lentilactobacillus buchneri subsp. silagei CD034"]]},{"id":"NCBITaxon:1071679","l":"Caballeronia grimmiae","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A1071679","Caballeronia grimmiae"]]},{"id":"NCBITaxon:1071886","l":"Streptococcus troglodytidis","na":1,"nb":1,"a":[["foot-bto-0000476.html","foot"]],"b":[["NCBITaxon%3A1071886","Streptococcus troglodytidis"]]},{"id":"NCBITaxon:1071983","l":"","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1071983","Legionella cardiaca"]]},{"id":"NCBITaxon:1072459","l":"Escherichia coli O7:K1 str. CE10","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1072459","Escherichia coli O7:K1 str. CE10"]]},{"id":"NCBITaxon:1073382","l":"Aeromonas veronii AER39","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1073382","Aeromonas veronii AER39"]]},{"id":"NCBITaxon:1073423","l":"Carnobacterium iners","na":1,"nb":1,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A1073423","Carnobacterium iners"]]},{"id":"NCBITaxon:1074112","l":"Streptococcus mutans TCI-99","na":1,"nb":1,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A1074112","Streptococcus mutans TCI-99"]]},{"id":"NCBITaxon:1074467","l":"","na":1,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A1074467","Companilactobacillus heilongjiangensis"]]},{"id":"NCBITaxon:1074889","l":"Blattabacterium sp. (Mastotermes darwiniensis) str. MADAR","na":1,"nb":1,"a":[["hindgut-bto-0000510.html","hindgut"]],"b":[["NCBITaxon%3A1074889","Blattabacterium sp. (Mastotermes darwiniensis) str. MADAR"]]},{"id":"NCBITaxon:1075088","l":"Corynebacterium glutamicum S9114","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1075088","Corynebacterium glutamicum S9114"]]},{"id":"NCBITaxon:1075089","l":"Pasteurella multocida 36950","na":1,"nb":1,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A1075089","Pasteurella multocida 36950"]]},{"id":"NCBITaxon:107634","l":"Methylosinus sp. LW2","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A107634","Methylosinus sp. LW2"]]},{"id":"NCBITaxon:1076412","l":"Pelosinus defluvii","na":1,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A1076412","Pelosinus defluvii"]]},{"id":"NCBITaxon:1076524","l":"Rhodanobacter sp. OR92","na":1,"nb":1,"a":[["ridge-envo-00000283.html","ridge"]],"b":[["NCBITaxon%3A1076524","Rhodanobacter sp. OR92"]]},{"id":"NCBITaxon:1076588","l":"Thiolapillus brandeum","na":1,"nb":1,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A1076588","Thiolapillus brandeum"]]},{"id":"NCBITaxon:1076695","l":"Halanaerobium sehlinense","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A1076695","Halanaerobium sehlinense"]]},{"id":"NCBITaxon:1077256","l":"Methanosphaera cuniculi","na":1,"nb":1,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"]],"b":[["NCBITaxon%3A1077256","Methanosphaera cuniculi"]]},{"id":"NCBITaxon:1077936","l":"Pontibacter lucknowensis","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A1077936","Pontibacter lucknowensis"]]},{"id":"NCBITaxon:1077944","l":"Streptomyces muensis","na":1,"nb":1,"a":[["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["NCBITaxon%3A1077944","Streptomyces muensis"]]},{"id":"NCBITaxon:1078","l":"Rhodopseudomonas sp.","na":1,"nb":1,"a":[["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["NCBITaxon%3A1078","Rhodopseudomonas sp."]]},{"id":"NCBITaxon:1078016","l":"Rhodococcus erythropolis XP","na":1,"nb":1,"a":[["resting-cell-bto-0001170.html","resting cell"]],"b":[["NCBITaxon%3A1078016","Rhodococcus erythropolis XP"]]},{"id":"NCBITaxon:1078050","l":"Seleniivibrio woodruffii","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A1078050","Seleniivibrio woodruffii"]]},{"id":"NCBITaxon:107806","l":"Buchnera aphidicola subsp. Acyrthosiphon pisum (strain APS)","na":1,"nb":1,"a":[["embryo-bto-0000379.html","embryo"]],"b":[["NCBITaxon%3A107806","Buchnera aphidicola str. APS (Acyrthosiphon pisum)"]]},{"id":"NCBITaxon:107820","l":"","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A107820","Thioalkalivibrio nitratis"]]},{"id":"NCBITaxon:1078754","l":"Dyadobacter arcticus","na":1,"nb":1,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A1078754","Dyadobacter arcticus"]]},{"id":"NCBITaxon:1079469","l":"Salmonella enterica subsp. enterica serovar Saintpaul str. JO2008","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1079469","Salmonella enterica subsp. enterica serovar Saintpaul str. JO2008"]]},{"id":"NCBITaxon:1079470","l":"Salmonella enterica subsp. enterica serovar Pullorum str. 19945","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1079470","Salmonella enterica subsp. enterica serovar Pullorum str. 19945"]]},{"id":"NCBITaxon:1079473","l":"Salmonella enterica subsp. enterica serovar Montevideo str. 8387","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1079473","Salmonella enterica subsp. enterica serovar Montevideo str. 8387"]]},{"id":"NCBITaxon:1079474","l":"Salmonella enterica subsp. enterica serovar Javiana str. 10721","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1079474","Salmonella enterica subsp. enterica serovar Javiana str. 10721"]]},{"id":"NCBITaxon:1079477","l":"Salmonella enterica subsp. enterica serovar Muenchen str. baa1594","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1079477","Salmonella enterica subsp. enterica serovar Muenchen str. baa1594"]]},{"id":"NCBITaxon:1079478","l":"Salmonella enterica subsp. enterica serovar Muenchen str. baa1674","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1079478","Salmonella enterica subsp. enterica serovar Muenchen str. baa1674"]]},{"id":"NCBITaxon:108003","l":"","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A108003","Thioalkalivibrio denitrificans"]]},{"id":"NCBITaxon:1080072","l":"Streptococcus dentasini","na":1,"nb":1,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A1080072","Streptococcus dentasini"]]},{"id":"NCBITaxon:1080187","l":"Cupriavidus sp. UYPR2.512","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1080187","Cupriavidus sp. UYPR2.512"]]},{"id":"NCBITaxon:1081040","l":"","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1081040","Microbacterium murale"]]},{"id":"NCBITaxon:1081640","l":"Sphingomonas elodea ATCC 31461","na":1,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A1081640","Sphingomonas elodea ATCC 31461"]]},{"id":"NCBITaxon:1082276","l":"Hydrogenispora ethanolica","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1082276","Hydrogenispora ethanolica"]]},{"id":"NCBITaxon:1082479","l":"","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A1082479","Limimonas halophila"]]},{"id":"NCBITaxon:1082933","l":"Mesorhizobium amorphae CCNWGS0123","na":1,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A1082933","Mesorhizobium amorphae CCNWGS0123"]]},{"id":"NCBITaxon:1084229","l":"","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1084229","Yersinia pestis biovar Orientalis str. BA200901703"]]},{"id":"NCBITaxon:1085538","l":"Leptospira interrogans serovar Bataviae str. HAI135","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1085538","Leptospira interrogans serovar Bataviae str. HAI135"]]},{"id":"NCBITaxon:1085628","l":"Streptomyces sp. Wigar10","na":1,"nb":1,"a":[["bulb-bto-0000159.html","bulb"]],"b":[["NCBITaxon%3A1085628","Streptomyces sp. Wigar10"]]},{"id":"NCBITaxon:1085644","l":"Allofrancisella frigidaquae","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A1085644","Allofrancisella frigidaquae"]]},{"id":"NCBITaxon:1085647","l":"Allofrancisella inopinata","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A1085647","Allofrancisella inopinata"]]},{"id":"NCBITaxon:1086030","l":"","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1086030","Shigella flexneri 5a str. M90T"]]},{"id":"NCBITaxon:1087253","l":"Nocardioides marmoraquaticus","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1087253","Nocardioides marmoraquaticus"]]},{"id":"NCBITaxon:1087277","l":"Williamsia spongiae","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1087277","Williamsia spongiae"]]},{"id":"NCBITaxon:1087448","l":"Exiguobacterium antarcticum B7","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A1087448","Exiguobacterium antarcticum B7"]]},{"id":"NCBITaxon:1087453","l":"Corynebacterium pseudotuberculosis 42/02-A","na":1,"nb":1,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A1087453","Corynebacterium pseudotuberculosis 42/02-A"]]},{"id":"NCBITaxon:1087483","l":"Mycobacteroides abscessus 47J26","na":1,"nb":1,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1087483","Mycobacteroides abscessus 47J26"]]},{"id":"NCBITaxon:1088719","l":"Aliivibrio fischeri SR5","na":1,"nb":1,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["NCBITaxon%3A1088719","Aliivibrio fischeri SR5"]]},{"id":"NCBITaxon:1088720","l":"Lacticaseibacillus rhamnosus ATCC 8530","na":1,"nb":1,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A1088720","Lacticaseibacillus rhamnosus ATCC 8530"]]},{"id":"NCBITaxon:1089433","l":"Francisella noatunensis subsp. noatunensis FSC772","na":1,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A1089433","Francisella noatunensis subsp. noatunensis FSC772"]]},{"id":"NCBITaxon:1089442","l":"Pediococcus damnosus 9-6b","na":1,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A1089442","Pediococcus damnosus 9-6b"]]},{"id":"NCBITaxon:1089446","l":"Corynebacterium pseudotuberculosis 267","na":1,"nb":1,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A1089446","Corynebacterium pseudotuberculosis 267"]]},{"id":"NCBITaxon:1089456","l":"Pseudomonas aeruginosa NCGM2.S1","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1089456","Pseudomonas aeruginosa NCGM2.S1"]]},{"id":"NCBITaxon:1093787","l":"Pseudomonas aeruginosa DK2","na":1,"nb":1,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1093787","Pseudomonas aeruginosa DK2"]]},{"id":"NCBITaxon:1094175","l":"Pseudomonas syringae pv. theae NCPPB 2598","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1094175","Pseudomonas syringae pv. theae NCPPB 2598"]]},{"id":"NCBITaxon:1094980","l":"Methanolobus psychrophilus R15","na":1,"nb":1,"a":[["marsh-envo-00000035.html","marsh"]],"b":[["NCBITaxon%3A1094980","Methanolobus psychrophilus R15"]]},{"id":"NCBITaxon:1095955","l":"Treponema pallidum subsp. pallidum str. Sea 81-4","na":1,"nb":1,"a":[["central-nervous-system-bto-0000227.html","central nervous system"]],"b":[["NCBITaxon%3A1095955","Treponema pallidum subsp. pallidum str. Sea 81-4"]]},{"id":"NCBITaxon:1096546","l":"Methylobacterium sp. GXF4","na":1,"nb":1,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["NCBITaxon%3A1096546","Methylobacterium sp. GXF4"]]},{"id":"NCBITaxon:1097668","l":"Burkholderia sp. YI23","na":1,"nb":1,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A1097668","Burkholderia sp. YI23"]]},{"id":"NCBITaxon:1100721","l":"Limnohabitans sp. Rim47","na":1,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A1100721","Limnohabitans sp. Rim47"]]},{"id":"NCBITaxon:1101193","l":"Methylotenera versatilis 7","na":1,"nb":1,"a":[["lake-envo-00000020.html","lake"]],"b":[["NCBITaxon%3A1101193","Methylotenera versatilis 7"]]},{"id":"NCBITaxon:1101402","l":"Flavobacterium aciduliphilum","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A1101402","Flavobacterium aciduliphilum"]]},{"id":"NCBITaxon:1104324","l":"","na":1,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A1104324","Pyrobaculum ferrireducens"]]},{"id":"NCBITaxon:1104565","l":"Candidatus Poribacteria bacterium WGA-4CII","na":1,"nb":1,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["NCBITaxon%3A1104565","Candidatus Poribacteria bacterium WGA-4CII"]]},{"id":"NCBITaxon:1104566","l":"Candidatus Poribacteria bacterium WGA-3G","na":1,"nb":1,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["NCBITaxon%3A1104566","Candidatus Poribacteria bacterium WGA-3G"]]},{"id":"NCBITaxon:1104568","l":"Synergistetes bacterium JGI 0000079-D21","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1104568","Synergistetes bacterium JGI 0000079-D21"]]},{"id":"NCBITaxon:1104603","l":"Atribacteria bacterium JGI 0000079-L04","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1104603","Atribacteria bacterium JGI 0000079-L04"]]},{"id":"NCBITaxon:1104604","l":"Atribacteria bacterium JGI 0000079-F20","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1104604","Atribacteria bacterium JGI 0000079-F20"]]},{"id":"NCBITaxon:1104605","l":"Armatimonadetes bacterium JGI 0000077-K19","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1104605","Armatimonadetes bacterium JGI 0000077-K19"]]},{"id":"NCBITaxon:1104619","l":"Hydrogenedentes bacterium JGI 0000077-D07","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1104619","Hydrogenedentes bacterium JGI 0000077-D07"]]},{"id":"NCBITaxon:110662","l":"Synechococcus sp. CC9605","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A110662","Synechococcus sp. CC9605"]]},{"id":"NCBITaxon:110663","l":"Synechococcus sp. CC9616","na":1,"nb":1,"a":[["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"]],"b":[["NCBITaxon%3A110663","Synechococcus sp. CC9616"]]},{"id":"NCBITaxon:1108140","l":"Burkholderia catarinensis","na":1,"nb":1,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A1108140","Burkholderia catarinensis"]]},{"id":"NCBITaxon:1108595","l":"Chromobacterium vaccinii","na":1,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["NCBITaxon%3A1108595","Chromobacterium vaccinii"]]},{"id":"NCBITaxon:1108812","l":"","na":1,"nb":1,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A1108812","Mycolicibacter longobardus"]]},{"id":"NCBITaxon:111015","l":"Actinomyces radicidentis","na":1,"nb":1,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A111015","Actinomyces radicidentis"]]},{"id":"NCBITaxon:1110504","l":"Mycoplasmopsis agalactiae 14628","na":1,"nb":1,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1110504","Mycoplasmopsis agalactiae 14628"]]},{"id":"NCBITaxon:1110545","l":"Methanosaeta pelagica","na":1,"nb":1,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["NCBITaxon%3A1110545","Methanosaeta pelagica"]]},{"id":"NCBITaxon:1111121","l":"","na":1,"nb":1,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A1111121","Atopobium sp. BV3Ac4"]]},{"id":"NCBITaxon:1111140","l":"Herminiimonas contaminans","na":1,"nb":1,"a":[["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["NCBITaxon%3A1111140","Herminiimonas contaminans"]]},{"id":"NCBITaxon:1111454","l":"","na":1,"nb":1,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A1111454","Megasphaera vaginalis (ex Srinivasan et al. 2021)"]]},{"id":"NCBITaxon:1111677","l":"Enterococcus faecalis M7","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1111677","Enterococcus faecalis M7"]]},{"id":"NCBITaxon:1111760","l":"Streptococcus troglodytae","na":1,"nb":1,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A1111760","Streptococcus troglodytae"]]},{"id":"NCBITaxon:1112211","l":"Janthinobacterium lividum PAMC 25724","na":1,"nb":1,"a":[["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A1112211","Janthinobacterium lividum PAMC 25724"]]},{"id":"NCBITaxon:1112217","l":"Pseudomonas psychrotolerans L19","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1112217","Pseudomonas psychrotolerans L19"]]},{"id":"NCBITaxon:1112272","l":"Hyphomicrobium sp. 802","na":1,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A1112272","Hyphomicrobium sp. 802"]]},{"id":"NCBITaxon:1112912","l":"Brucella suis VBI22","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1112912","Brucella suis VBI22"]]},{"id":"NCBITaxon:1114867","l":"Flavobacterium plurextorum","na":1,"nb":1,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["NCBITaxon%3A1114867","Flavobacterium plurextorum"]]},{"id":"NCBITaxon:1114878","l":"Geomobilimonas luticola","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A1114878","Geomobilimonas luticola"]]},{"id":"NCBITaxon:1115809","l":"","na":1,"nb":1,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A1115809","Segatella baroniae F0067"]]},{"id":"NCBITaxon:1117177","l":"Desulfatiferula berrensis","na":1,"nb":1,"a":[["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A1117177","Desulfatiferula berrensis"]]},{"id":"NCBITaxon:1117322","l":"Glaesserella parasuis str. Nagasaki","na":1,"nb":1,"a":[["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1117322","Glaesserella parasuis str. Nagasaki"]]},{"id":"NCBITaxon:1117702","l":"Novosphingobium fuchskuhlense","na":1,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["NCBITaxon%3A1117702","Novosphingobium fuchskuhlense"]]},{"id":"NCBITaxon:1117703","l":"Novosphingobium aquaticum (ex Glaeser et al. 2013)","na":1,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["NCBITaxon%3A1117703","Novosphingobium aquaticum (ex Glaeser et al. 2013)"]]},{"id":"NCBITaxon:111781","l":"Leptolyngbya sp. PCC 7376","na":1,"nb":1,"a":[["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A111781","[Leptolyngbya] sp. PCC 7376"]]},{"id":"NCBITaxon:1117943","l":"Sinorhizobium fredii HH103","na":1,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A1117943","Sinorhizobium fredii HH103"]]},{"id":"NCBITaxon:1117958","l":"Pseudomonas extremaustralis 14-3 substr. 14-3b","na":1,"nb":1,"a":[["143-b-cell-bto-0003167.html","143-B cell"]],"b":[["NCBITaxon%3A1117958","Pseudomonas extremaustralis 14-3 substr. 14-3b"]]},{"id":"NCBITaxon:111844","l":"Mannheimia pernigra","na":1,"nb":1,"a":[["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["NCBITaxon%3A111844","Mannheimia pernigra"]]},{"id":"NCBITaxon:1119058","l":"Affinundibacterium macrobrachii","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A1119058","Affinundibacterium macrobrachii"]]},{"id":"NCBITaxon:1119534","l":"Nocardioides perillae","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1119534","Nocardioides perillae"]]},{"id":"NCBITaxon:1120797","l":"Mycobacterium sp. 141","na":1,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["NCBITaxon%3A1120797","Mycobacterium sp. 141"]]},{"id":"NCBITaxon:1123042","l":"","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1123042","Photorhabdus stackebrandtii"]]},{"id":"NCBITaxon:1123043","l":"Telmatocola sphagniphila","na":1,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["NCBITaxon%3A1123043","Telmatocola sphagniphila"]]},{"id":"NCBITaxon:112331","l":"Planococcus koreensis","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A112331","Planococcus koreensis"]]},{"id":"NCBITaxon:1123520","l":"Neisseria meningitidis DE9686","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1123520","Neisseria meningitidis DE9686"]]},{"id":"NCBITaxon:1123521","l":"Neisseria meningitidis DE9622","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1123521","Neisseria meningitidis DE9622"]]},{"id":"NCBITaxon:1123522","l":"Neisseria meningitidis DE9938","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1123522","Neisseria meningitidis DE9938"]]},{"id":"NCBITaxon:1123558","l":"Leucobacter kyeonggiensis","na":1,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"]],"b":[["NCBITaxon%3A1123558","Leucobacter kyeonggiensis"]]},{"id":"NCBITaxon:1123687","l":"","na":1,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A1123687","Lacticaseibacillus porcinae"]]},{"id":"NCBITaxon:1124835","l":"Chryseobacterium carnipullorum","na":1,"nb":1,"a":[["factory-envo-01000536.html","factory"]],"b":[["NCBITaxon%3A1124835","Chryseobacterium carnipullorum"]]},{"id":"NCBITaxon:1124919","l":"Salmonella enterica subsp. enterica serovar Agona str. 632182-2","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1124919","Salmonella enterica subsp. enterica serovar Agona str. 632182-2"]]},{"id":"NCBITaxon:1124921","l":"Salmonella enterica subsp. enterica serovar Agona str. 419639 2-1","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1124921","Salmonella enterica subsp. enterica serovar Agona str. 419639 2-1"]]},{"id":"NCBITaxon:1124923","l":"Salmonella enterica subsp. enterica serovar Agona str. 648586-1","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1124923","Salmonella enterica subsp. enterica serovar Agona str. 648586-1"]]},{"id":"NCBITaxon:1124924","l":"Salmonella enterica subsp. enterica serovar Anatum str. USDA 100","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1124924","Salmonella enterica subsp. enterica serovar Anatum str. USDA 100"]]},{"id":"NCBITaxon:1124925","l":"Salmonella enterica subsp. enterica serovar Bareilly str. ATCC 9115","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1124925","Salmonella enterica subsp. enterica serovar Bareilly str. ATCC 9115"]]},{"id":"NCBITaxon:1124926","l":"Salmonella enterica subsp. enterica serovar Berta str. ATCC 8392","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1124926","Salmonella enterica subsp. enterica serovar Berta str. ATCC 8392"]]},{"id":"NCBITaxon:1124928","l":"Salmonella enterica subsp. enterica serovar Cerro str. 818","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1124928","Salmonella enterica subsp. enterica serovar Cerro str. 818"]]},{"id":"NCBITaxon:1124929","l":"Salmonella enterica subsp. enterica serovar Derby str. 626","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1124929","Salmonella enterica subsp. enterica serovar Derby str. 626"]]},{"id":"NCBITaxon:1124933","l":"Salmonella enterica subsp. enterica serovar Hadar str. ATCC 51956","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1124933","Salmonella enterica subsp. enterica serovar Hadar str. ATCC 51956"]]},{"id":"NCBITaxon:1124934","l":"Salmonella enterica subsp. enterica serovar Heidelberg str. 82-2052","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1124934","Salmonella enterica subsp. enterica serovar Heidelberg str. 82-2052"]]},{"id":"NCBITaxon:1124991","l":"Morganella morganii subsp. morganii KT","na":1,"nb":1,"a":[["gall-bladder-bto-0000493.html","gall bladder"]],"b":[["NCBITaxon%3A1124991","Morganella morganii subsp. morganii KT"]]},{"id":"NCBITaxon:1125630","l":"Klebsiella pneumoniae subsp. pneumoniae (strain HS11286)","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1125630","Klebsiella pneumoniae subsp. pneumoniae HS11286"]]},{"id":"NCBITaxon:1125876","l":"Halpernia frigidisoli","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A1125876","Halpernia frigidisoli"]]},{"id":"NCBITaxon:1125975","l":"Thermoanaerobacter ethanolicus subsp. indiensis BSB-33","na":1,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["NCBITaxon%3A1125975","Thermoanaerobacter ethanolicus subsp. indiensis BSB-33"]]},{"id":"NCBITaxon:1126236","l":"Halobellus inordinatus","na":1,"nb":1,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["NCBITaxon%3A1126236","Halobellus inordinatus"]]},{"id":"NCBITaxon:1126681","l":"Bacillus cereus F","na":1,"nb":1,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A1126681","Bacillus cereus F"]]},{"id":"NCBITaxon:1126911","l":"Escherichia coli C639_08","na":1,"nb":1,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["NCBITaxon%3A1126911","Escherichia coli C639_08"]]},{"id":"NCBITaxon:1126932","l":"Escherichia coli C844_97","na":1,"nb":1,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["NCBITaxon%3A1126932","Escherichia coli C844_97"]]},{"id":"NCBITaxon:1127743","l":"Bacillus sp. 5B6","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1127743","Bacillus sp. 5B6"]]},{"id":"NCBITaxon:1128113","l":"Algimonas porphyrae","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A1128113","Algimonas porphyrae"]]},{"id":"NCBITaxon:1128665","l":"Lentzea nigeriaca","na":1,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A1128665","Lentzea nigeriaca"]]},{"id":"NCBITaxon:1128670","l":"Microvirga makkahensis","na":1,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A1128670","Microvirga makkahensis"]]},{"id":"NCBITaxon:1130046","l":"Oceanivirga miroungae","na":1,"nb":1,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"]],"b":[["NCBITaxon%3A1130046","Oceanivirga miroungae"]]},{"id":"NCBITaxon:1130080","l":"Alkalibacterium gilvum","na":1,"nb":1,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["NCBITaxon%3A1130080","Alkalibacterium gilvum"]]},{"id":"NCBITaxon:1130798","l":"Limosilactobacillus mucosae LM1","na":1,"nb":1,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"]],"b":[["NCBITaxon%3A1130798","Limosilactobacillus mucosae LM1"]]},{"id":"NCBITaxon:1130804","l":"Streptococcus pneumoniae ST556","na":1,"nb":1,"a":[["middle-ear-bto-0002099.html","middle ear"]],"b":[["NCBITaxon%3A1130804","Streptococcus pneumoniae ST556"]]},{"id":"NCBITaxon:1131567","l":"Cognatundibacterium squillarum","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A1131567","Cognatundibacterium squillarum"]]},{"id":"NCBITaxon:1131812","l":"Flavobacterium sp. 83","na":1,"nb":1,"a":[["lake-envo-00000020.html","lake"]],"b":[["NCBITaxon%3A1131812","Flavobacterium sp. 83"]]},{"id":"NCBITaxon:1132836","l":"Rhizobium sp. CCGE 510","na":1,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A1132836","Rhizobium sp. CCGE 510"]]},{"id":"NCBITaxon:1133106","l":"Plasticicumulans lactativorans","na":1,"nb":1,"a":[["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["NCBITaxon%3A1133106","Plasticicumulans lactativorans"]]},{"id":"NCBITaxon:113355","l":"Geminocystis herdmanii PCC 6308","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A113355","Geminocystis herdmanii PCC 6308"]]},{"id":"NCBITaxon:1134435","l":"","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A1134435","Thauera humireducens"]]},{"id":"NCBITaxon:1134459","l":"Pseudomonas aeruginosa PADK2_CF510","na":1,"nb":1,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1134459","Pseudomonas aeruginosa PADK2_CF510"]]},{"id":"NCBITaxon:1134474","l":"Cellvibrio sp. BR","na":1,"nb":1,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A1134474","Cellvibrio sp. BR"]]},{"id":"NCBITaxon:1134914","l":"Staphylococcus haemolyticus R1P1","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1134914","Staphylococcus haemolyticus R1P1"]]},{"id":"NCBITaxon:1135990","l":"Geopseudomonas sagittaria","na":1,"nb":1,"a":[["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A1135990","Geopseudomonas sagittaria"]]},{"id":"NCBITaxon:1136177","l":"","na":1,"nb":1,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A1136177","Lactiplantibacillus pentosus KCA1"]]},{"id":"NCBITaxon:1136416","l":"Salinispora pacifica CNT001","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1136416","Salinispora pacifica CNT001"]]},{"id":"NCBITaxon:113653","l":"Geoglobus ahangari","na":1,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A113653","Geoglobus ahangari"]]},{"id":"NCBITaxon:1137135","l":"","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1137135","Escherichia coli O157:H43 str. T22"]]},{"id":"NCBITaxon:1137251","l":"Salinispora arenicola CNH905","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1137251","Salinispora arenicola CNH905"]]},{"id":"NCBITaxon:1137255","l":"Salinispora arenicola CNT005","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1137255","Salinispora arenicola CNT005"]]},{"id":"NCBITaxon:1137257","l":"Salinispora arenicola CNX508","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1137257","Salinispora arenicola CNX508"]]},{"id":"NCBITaxon:1137780","l":"Polaribacter porphyrae","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A1137780","Polaribacter porphyrae"]]},{"id":"NCBITaxon:1137799","l":"Endozoicomonas numazuensis","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1137799","Endozoicomonas numazuensis"]]},{"id":"NCBITaxon:1137990","l":"Geodermatophilus arenarius","na":1,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A1137990","Geodermatophilus arenarius"]]},{"id":"NCBITaxon:114101","l":"Brenneria lupinicola","na":1,"nb":1,"a":[["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"]],"b":[["NCBITaxon%3A114101","Brenneria lupinicola"]]},{"id":"NCBITaxon:1141657","l":"Nocardia vulneris","na":1,"nb":1,"a":[["finger-bto-0004669.html","finger"]],"b":[["NCBITaxon%3A1141657","Nocardia vulneris"]]},{"id":"NCBITaxon:1141883","l":"Massilia putida","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A1141883","Massilia putida"]]},{"id":"NCBITaxon:1141888","l":"Sphingomonas difficilis","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A1141888","Sphingomonas difficilis"]]},{"id":"NCBITaxon:1142511","l":"","na":1,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A1142511","Wigglesworthia glossinidia endosymbiont of Glossina morsitans morsitans (Yale"]]},{"id":"NCBITaxon:1144300","l":"","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1144300","Limosilactobacillus gastricus PS3"]]},{"id":"NCBITaxon:1144553","l":"Nonomuraea solani","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1144553","Nonomuraea solani"]]},{"id":"NCBITaxon:1144618","l":"Allonocardiopsis opalescens","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1144618","Allonocardiopsis opalescens"]]},{"id":"NCBITaxon:1144750","l":"","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A1144750","Olleya namhaensis"]]},{"id":"NCBITaxon:1145111","l":"Helicobacter pylori R030b","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A1145111","Helicobacter pylori R030b"]]},{"id":"NCBITaxon:1145112","l":"Helicobacter pylori R32b","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A1145112","Helicobacter pylori R32b"]]},{"id":"NCBITaxon:1145114","l":"Helicobacter pylori R037c","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A1145114","Helicobacter pylori R037c"]]},{"id":"NCBITaxon:1145115","l":"Helicobacter pylori R038b","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A1145115","Helicobacter pylori R038b"]]},{"id":"NCBITaxon:1145116","l":"Helicobacter pylori R046Wa","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A1145116","Helicobacter pylori R046Wa"]]},{"id":"NCBITaxon:1145118","l":"Helicobacter pylori R056a","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A1145118","Helicobacter pylori R056a"]]},{"id":"NCBITaxon:114527","l":"Mogibacterium diversum","na":1,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["NCBITaxon%3A114527","Mogibacterium diversum"]]},{"id":"NCBITaxon:1145276","l":"Lysinibacillus varians","na":1,"nb":1,"a":[["filament-bto-0000463.html","filament"]],"b":[["NCBITaxon%3A1145276","Lysinibacillus varians"]]},{"id":"NCBITaxon:1146882","l":"Pseudomonas aeruginosa PAHM4","na":1,"nb":1,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1146882","Pseudomonas aeruginosa PAHM4"]]},{"id":"NCBITaxon:114712","l":"uncultured Azospirillum sp.","na":1,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"]],"b":[["NCBITaxon%3A114712","uncultured Azospirillum sp."]]},{"id":"NCBITaxon:114880","l":"","na":1,"nb":1,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A114880","Mycoplasmopsis columbinasalis"]]},{"id":"NCBITaxon:114975","l":"Sporosarcina aquimarina","na":1,"nb":1,"a":[["skin-bto-0001253.html","skin"]],"b":[["NCBITaxon%3A114975","Sporosarcina aquimarina"]]},{"id":"NCBITaxon:1150112","l":"Myroides guanonis","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A1150112","Myroides guanonis"]]},{"id":"NCBITaxon:1150298","l":"Fusicatenibacter saccharivorans","na":1,"nb":1,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A1150298","Fusicatenibacter saccharivorans"]]},{"id":"NCBITaxon:1150475","l":"Bacillus velezensis UCMB5036","na":1,"nb":1,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["NCBITaxon%3A1150475","Bacillus velezensis UCMB5036"]]},{"id":"NCBITaxon:1150776","l":"Winogradskyella multivorans","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A1150776","Winogradskyella multivorans"]]},{"id":"NCBITaxon:1150867","l":"Kingella kingae PYKK081","na":1,"nb":1,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["NCBITaxon%3A1150867","Kingella kingae PYKK081"]]},{"id":"NCBITaxon:1151061","l":"Tsukamurella sp. 1534","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1151061","Tsukamurella sp. 1534"]]},{"id":"NCBITaxon:1153","l":"Pseudanabaena sp.","na":1,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"]],"b":[["NCBITaxon%3A1153","Pseudanabaena sp."]]},{"id":"NCBITaxon:1154763","l":"Oceanicaulis sp. NGOC","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A1154763","Oceanicaulis sp. NGOC"]]},{"id":"NCBITaxon:1154820","l":"Streptococcus agalactiae LMG 15091","na":1,"nb":1,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A1154820","Streptococcus agalactiae LMG 15091"]]},{"id":"NCBITaxon:1154821","l":"Streptococcus agalactiae LMG 15092","na":1,"nb":1,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A1154821","Streptococcus agalactiae LMG 15092"]]},{"id":"NCBITaxon:1154822","l":"Streptococcus agalactiae LMG 15093","na":1,"nb":1,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A1154822","Streptococcus agalactiae LMG 15093"]]},{"id":"NCBITaxon:1154823","l":"Streptococcus agalactiae LMG 15094","na":1,"nb":1,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A1154823","Streptococcus agalactiae LMG 15094"]]},{"id":"NCBITaxon:1155689","l":"Psychroflexus salarius","na":1,"nb":1,"a":[["pond-envo-00000033.html","pond"]],"b":[["NCBITaxon%3A1155689","Psychroflexus salarius"]]},{"id":"NCBITaxon:1155775","l":"Treponema pallidum str. Fribourg-Blanc","na":1,"nb":1,"a":[["globus-pallidus-bto-0002246.html","globus pallidus"]],"b":[["NCBITaxon%3A1155775","Treponema pallidum str. Fribourg-Blanc"]]},{"id":"NCBITaxon:1156842","l":"Streptomyces sp. LaPpAH-180","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1156842","Streptomyces sp. LaPpAH-180"]]},{"id":"NCBITaxon:1157490","l":"Tumebacillus flagellatus","na":1,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A1157490","Tumebacillus flagellatus"]]},{"id":"NCBITaxon:1157629","l":"Streptomyces sp. KhCrAH-340","na":1,"nb":1,"a":[["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A1157629","Streptomyces sp. KhCrAH-340"]]},{"id":"NCBITaxon:1157947","l":"Thermotoga sp. Cell2","na":1,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A1157947","Thermotoga sp. Cell2"]]},{"id":"NCBITaxon:115808","l":"Bradyrhizobium sp. ORS 285","na":1,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A115808","Bradyrhizobium sp. ORS 285"]]},{"id":"NCBITaxon:1158132","l":"Bordetella sp. NGBO","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A1158132","Bordetella sp. NGBO"]]},{"id":"NCBITaxon:1158134","l":"Roseobacter sp. NGRO","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A1158134","Roseobacter sp. NGRO"]]},{"id":"NCBITaxon:115862","l":"","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A115862","Mycobacterium tuberculosis variant caprae"]]},{"id":"NCBITaxon:1159490","l":"Cronobacter sakazakii E764","na":1,"nb":1,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A1159490","Cronobacter sakazakii E764"]]},{"id":"NCBITaxon:1159614","l":"Cronobacter sakazakii ES35","na":1,"nb":1,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A1159614","Cronobacter sakazakii ES35"]]},{"id":"NCBITaxon:1159617","l":"Yersinia pestis INS","na":1,"nb":1,"a":[["lymph-node-bto-0000784.html","lymph node"]],"b":[["NCBITaxon%3A1159617","Yersinia pestis INS"]]},{"id":"NCBITaxon:1160091","l":"","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1160091","Alloscardovia macacae"]]},{"id":"NCBITaxon:1160704","l":"Francisella tularensis subsp. holarctica FSC162","na":1,"nb":1,"a":[["medial-geniculate-body-bto-0002674.html","medial geniculate body"]],"b":[["NCBITaxon%3A1160704","Francisella tularensis subsp. holarctica FSC162"]]},{"id":"NCBITaxon:1160721","l":"","na":1,"nb":1,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A1160721","Ruminococcus bicirculans (ex Wegman et al. 2014)"]]},{"id":"NCBITaxon:1161101","l":"Pseudomonas tolaasii 6264","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A1161101","Pseudomonas tolaasii 6264"]]},{"id":"NCBITaxon:1161102","l":"Pasteurella multocida subsp. multocida VTCCBAA264","na":1,"nb":1,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["NCBITaxon%3A1161102","Pasteurella multocida subsp. multocida VTCCBAA264"]]},{"id":"NCBITaxon:1162283","l":"Mycobacteroides abscessus subsp. bolletii M18","na":1,"nb":1,"a":[["lymph-node-bto-0000784.html","lymph node"]],"b":[["NCBITaxon%3A1162283","Mycobacteroides abscessus subsp. bolletii M18"]]},{"id":"NCBITaxon:1162284","l":"Mycobacteroides abscessus M24","na":1,"nb":1,"a":[["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"]],"b":[["NCBITaxon%3A1162284","Mycobacteroides abscessus M24"]]},{"id":"NCBITaxon:1162286","l":"Mycobacteroides abscessus M172","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1162286","Mycobacteroides abscessus M172"]]},{"id":"NCBITaxon:1162287","l":"Mycobacteroides abscessus M115","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1162287","Mycobacteroides abscessus M115"]]},{"id":"NCBITaxon:1162294","l":"Serratia marcescens LCT-SM213","na":1,"nb":1,"a":[["urinary-tract-bto-0001244.html","urinary tract"]],"b":[["NCBITaxon%3A1162294","Serratia marcescens LCT-SM213"]]},{"id":"NCBITaxon:1162967","l":"Diaminobutyricimonas aerilata","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A1162967","Diaminobutyricimonas aerilata"]]},{"id":"NCBITaxon:1162970","l":"Homoserinimonas aerilata","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A1162970","Homoserinimonas aerilata"]]},{"id":"NCBITaxon:1163745","l":"Helicobacter cetorum MIT 99-5656","na":1,"nb":1,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["NCBITaxon%3A1163745","Helicobacter cetorum MIT 99-5656"]]},{"id":"NCBITaxon:1164594","l":"Massilia yuzhufengensis","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1164594","Massilia yuzhufengensis"]]},{"id":"NCBITaxon:1165092","l":"Lachnospiraceae bacterium JC7","na":1,"nb":1,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A1165092","Lachnospiraceae bacterium JC7"]]},{"id":"NCBITaxon:1165852","l":"Melaminivora alkalimesophila","na":1,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A1165852","Melaminivora alkalimesophila"]]},{"id":"NCBITaxon:1166017","l":"Mycobacteroides abscessus CF","na":1,"nb":1,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1166017","Mycobacteroides abscessus CF"]]},{"id":"NCBITaxon:1166073","l":"Aureimonas jatrophae","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1166073","Aureimonas jatrophae"]]},{"id":"NCBITaxon:1166158","l":"Methylobacterium sp. L2-4","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1166158","Methylobacterium sp. L2-4"]]},{"id":"NCBITaxon:1166257","l":"Pleomorphomonas diazotrophica","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1166257","Pleomorphomonas diazotrophica"]]},{"id":"NCBITaxon:1166323","l":"Sphingomonas carotinifaciens","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1166323","Sphingomonas carotinifaciens"]]},{"id":"NCBITaxon:1166337","l":"Sphingomonas jatrophae","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1166337","Sphingomonas jatrophae"]]},{"id":"NCBITaxon:1167631","l":"Oenococcus oeni AWRIB318","na":1,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A1167631","Oenococcus oeni AWRIB318"]]},{"id":"NCBITaxon:1167641","l":"","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1167641","Stenotrophomonas geniculata N1"]]},{"id":"NCBITaxon:1167697","l":"Enterococcus faecium LCT-EF90","na":1,"nb":1,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A1167697","Enterococcus faecium LCT-EF90"]]},{"id":"NCBITaxon:1168039","l":"Saccharicrinis carchari","na":1,"nb":1,"a":[["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A1168039","Saccharicrinis carchari"]]},{"id":"NCBITaxon:1169863","l":"Escherichia coli NCCP15657","na":1,"nb":1,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["NCBITaxon%3A1169863","Escherichia coli NCCP15657"]]},{"id":"NCBITaxon:1170318","l":"Cutibacterium avidum 44067","na":1,"nb":1,"a":[["trunk-bto-0001493.html","trunk"]],"b":[["NCBITaxon%3A1170318","Cutibacterium avidum 44067"]]},{"id":"NCBITaxon:1170562","l":"Calothrix sp. PCC 6303","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A1170562","Calothrix sp. PCC 6303"]]},{"id":"NCBITaxon:1172204","l":"","na":1,"nb":1,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A1172204","Paraclostridium sordellii 8483"]]},{"id":"NCBITaxon:1172205","l":"Bordetella holmesii 44057","na":1,"nb":1,"a":[["sickle-cell-bto-0002656.html","sickle cell"]],"b":[["NCBITaxon%3A1172205","Bordetella holmesii 44057"]]},{"id":"NCBITaxon:1172565","l":"Lonsdalea populi","na":1,"nb":1,"a":[["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["NCBITaxon%3A1172565","Lonsdalea populi"]]},{"id":"NCBITaxon:1173107","l":"Lysinibacillus tabacifolii","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1173107","Lysinibacillus tabacifolii"]]},{"id":"NCBITaxon:1173481","l":"Pseudomonas sp. DrzB1_18_61a","na":1,"nb":1,"a":[["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A1173481","Pseudomonas sp. DrzB1_18_61a"]]},{"id":"NCBITaxon:1173689","l":"Escherichia coli VL2874","na":1,"nb":1,"a":[["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["NCBITaxon%3A1173689","Escherichia coli VL2874"]]},{"id":"NCBITaxon:1173690","l":"Escherichia coli VL2732","na":1,"nb":1,"a":[["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["NCBITaxon%3A1173690","Escherichia coli VL2732"]]},{"id":"NCBITaxon:1173995","l":"Parvularcula dongshanensis","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A1173995","Parvularcula dongshanensis"]]},{"id":"NCBITaxon:1176176","l":"Methylobacterium haplocladii","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A1176176","Methylobacterium haplocladii"]]},{"id":"NCBITaxon:1176177","l":"Methylobacterium brachythecii","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A1176177","Methylobacterium brachythecii"]]},{"id":"NCBITaxon:1176198","l":"Streptomyces harbinensis","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1176198","Streptomyces harbinensis"]]},{"id":"NCBITaxon:1176728","l":"Escherichia coli K71","na":1,"nb":1,"a":[["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["NCBITaxon%3A1176728","Escherichia coli K71"]]},{"id":"NCBITaxon:1177574","l":"Prevotella jejuni","na":1,"nb":1,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["NCBITaxon%3A1177574","Prevotella jejuni"]]},{"id":"NCBITaxon:1177927","l":"Enterobacter cloacae subsp. cloacae GS1","na":1,"nb":1,"a":[["seedling-bto-0001228.html","seedling"]],"b":[["NCBITaxon%3A1177927","Enterobacter cloacae subsp. cloacae GS1"]]},{"id":"NCBITaxon:1177931","l":"Thiovulum sp. ES","na":1,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A1177931","Thiovulum sp. ES"]]},{"id":"NCBITaxon:1178528","l":"Enterococcus faecium LCT-EF128","na":1,"nb":1,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A1178528","Enterococcus faecium LCT-EF128"]]},{"id":"NCBITaxon:1178540","l":"Bacillus zhangzhouensis","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A1178540","Bacillus zhangzhouensis"]]},{"id":"NCBITaxon:1179467","l":"Hazenella coriacea","na":1,"nb":1,"a":[["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A1179467","Hazenella coriacea"]]},{"id":"NCBITaxon:1181879","l":"Amycolatopsis jiangsuensis","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1181879","Amycolatopsis jiangsuensis"]]},{"id":"NCBITaxon:1181882","l":"Glycomyces phytohabitans","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1181882","Glycomyces phytohabitans"]]},{"id":"NCBITaxon:1181884","l":"Modestobacter roseus","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1181884","Modestobacter roseus"]]},{"id":"NCBITaxon:1181886","l":"Saccharopolyspora dendranthemae","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1181886","Saccharopolyspora dendranthemae"]]},{"id":"NCBITaxon:1181887","l":"Streptomyces halophytocola","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1181887","Streptomyces halophytocola"]]},{"id":"NCBITaxon:1182164","l":"Salmonella enterica subsp. enterica serovar Heidelberg str. CFSAN00322","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1182164","Salmonella enterica subsp. enterica serovar Heidelberg str. CFSAN00322"]]},{"id":"NCBITaxon:1182167","l":"Salmonella enterica subsp. enterica serovar Heidelberg str. CFSAN00325","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1182167","Salmonella enterica subsp. enterica serovar Heidelberg str. CFSAN00325"]]},{"id":"NCBITaxon:1182168","l":"Salmonella enterica subsp. enterica serovar Heidelberg str. CFSAN00326","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1182168","Salmonella enterica subsp. enterica serovar Heidelberg str. CFSAN00326"]]},{"id":"NCBITaxon:1182170","l":"Salmonella enterica subsp. enterica serovar Heidelberg str. CFSAN00328","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1182170","Salmonella enterica subsp. enterica serovar Heidelberg str. CFSAN00328"]]},{"id":"NCBITaxon:1182408","l":"Luteivirga sdotyamensis","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1182408","Luteivirga sdotyamensis"]]},{"id":"NCBITaxon:1182444","l":"Fulvitalea axinellae","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1182444","Fulvitalea axinellae"]]},{"id":"NCBITaxon:1182451","l":"Aureivirga marina","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1182451","Aureivirga marina"]]},{"id":"NCBITaxon:1184706","l":"Micromonospora sonneratiae","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1184706","Micromonospora sonneratiae"]]},{"id":"NCBITaxon:1185324","l":"Lactobacillus gasseri CECT 5714","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1185324","Lactobacillus gasseri CECT 5714"]]},{"id":"NCBITaxon:1185325","l":"","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1185325","Loigolactobacillus coryniformis subsp. coryniformis CECT 5711"]]},{"id":"NCBITaxon:1185682","l":"","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1185682","Xanthomonas phaseoli pv. manihotis str. IBSBF 2673"]]},{"id":"NCBITaxon:1186196","l":"Natrinema salaciae","na":1,"nb":1,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["NCBITaxon%3A1186196","Natrinema salaciae"]]},{"id":"NCBITaxon:1187845","l":"","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1187845","Vibrio genomosp. F10 str. 9ZB36"]]},{"id":"NCBITaxon:1187846","l":"","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1187846","Vibrio genomosp. F10 str. 9ZD137"]]},{"id":"NCBITaxon:1187847","l":"","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1187847","Vibrio genomosp. F10 str. 9ZC157"]]},{"id":"NCBITaxon:1187852","l":"Methylobacterium tarhaniae","na":1,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A1187852","Methylobacterium tarhaniae"]]},{"id":"NCBITaxon:1188229","l":"Gloeomargarita lithophora Alchichica-D10","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A1188229","Gloeomargarita lithophora Alchichica-D10"]]},{"id":"NCBITaxon:1188233","l":"Metamycoplasma auris 15026","na":1,"nb":1,"a":[["outer-ear-bto-0002100.html","outer ear"]],"b":[["NCBITaxon%3A1188233","Metamycoplasma auris 15026"]]},{"id":"NCBITaxon:1188238","l":"","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1188238","Mycoplasma capricolum subsp. capricolum 14232"]]},{"id":"NCBITaxon:1188240","l":"Mycoplasma yeatsii 13926","na":1,"nb":1,"a":[["outer-ear-bto-0002100.html","outer ear"]],"b":[["NCBITaxon%3A1188240","Mycoplasma yeatsii 13926"]]},{"id":"NCBITaxon:1188994","l":"Chromohalobacter sp. HS-2","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A1188994","Chromohalobacter sp. HS-2"]]},{"id":"NCBITaxon:1189289","l":"Pseudomonas sp. NS1","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A1189289","Pseudomonas sp. NS1"]]},{"id":"NCBITaxon:1189304","l":"Sodalis-like symbiont of Philaenus spumarius","na":1,"nb":1,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["NCBITaxon%3A1189304","Sodalis-like symbiont of Philaenus spumarius"]]},{"id":"NCBITaxon:1189325","l":"Oceanicella actignis","na":1,"nb":1,"a":[["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["NCBITaxon%3A1189325","Oceanicella actignis"]]},{"id":"NCBITaxon:119000","l":"Modicisalibacter muralis","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A119000","Modicisalibacter muralis"]]},{"id":"NCBITaxon:1191279","l":"Helicobacter pylori FD423","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1191279","Helicobacter pylori FD423"]]},{"id":"NCBITaxon:1191280","l":"Helicobacter pylori FD430","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1191280","Helicobacter pylori FD430"]]},{"id":"NCBITaxon:1191281","l":"Helicobacter pylori FD506","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1191281","Helicobacter pylori FD506"]]},{"id":"NCBITaxon:1191282","l":"Helicobacter pylori FD568","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1191282","Helicobacter pylori FD568"]]},{"id":"NCBITaxon:1191283","l":"Helicobacter pylori FD577","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1191283","Helicobacter pylori FD577"]]},{"id":"NCBITaxon:1191284","l":"Helicobacter pylori FD662","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1191284","Helicobacter pylori FD662"]]},{"id":"NCBITaxon:1191285","l":"Helicobacter pylori FD703","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1191285","Helicobacter pylori FD703"]]},{"id":"NCBITaxon:1191286","l":"Helicobacter pylori FD719","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1191286","Helicobacter pylori FD719"]]},{"id":"NCBITaxon:1191287","l":"Helicobacter pylori GC26","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1191287","Helicobacter pylori GC26"]]},{"id":"NCBITaxon:1191464","l":"Helicobacter pylori FD535","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1191464","Helicobacter pylori FD535"]]},{"id":"NCBITaxon:1192196","l":"Bacillus subtilis subsp. subtilis str. BSP1","na":1,"nb":1,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A1192196","Bacillus subtilis subsp. subtilis str. BSP1"]]},{"id":"NCBITaxon:1192868","l":"Pseudaminobacter salicylatoxidans KCT001","na":1,"nb":1,"a":[["mo-b-cell-bto-0003680.html","Mo-B cell"]],"b":[["NCBITaxon%3A1192868","Pseudaminobacter salicylatoxidans KCT001"]]},{"id":"NCBITaxon:1193041","l":"","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1193041","Leptospira interrogans str. HAI1536"]]},{"id":"NCBITaxon:1193060","l":"","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1193060","Leptospira interrogans str. HAI1594"]]},{"id":"NCBITaxon:1193292","l":"Klebsiella pneumoniae subsp. pneumoniae 1084","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1193292","Klebsiella pneumoniae subsp. pneumoniae 1084"]]},{"id":"NCBITaxon:1194165","l":"Microbacterium yannicii PS01","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1194165","Microbacterium yannicii PS01"]]},{"id":"NCBITaxon:1194427","l":"Vibrio toranzoniae","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A1194427","Vibrio toranzoniae"]]},{"id":"NCBITaxon:1194719","l":"Sinorhizobium meliloti H1","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1194719","Sinorhizobium meliloti H1"]]},{"id":"NCBITaxon:1195237","l":"Mycobacterium tuberculosis variant bovis BCG str. Frappier","na":1,"nb":1,"a":[["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1195237","Mycobacterium tuberculosis variant bovis BCG str. Frappier"]]},{"id":"NCBITaxon:1195244","l":"Gallibacterium anatis 12656/12","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1195244","Gallibacterium anatis 12656/12"]]},{"id":"NCBITaxon:1195465","l":"Mycobacterium tuberculosis variant bovis BCG str. Glaxo","na":1,"nb":1,"a":[["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1195465","Mycobacterium tuberculosis variant bovis BCG str. Glaxo"]]},{"id":"NCBITaxon:1195466","l":"Mycobacterium tuberculosis variant bovis BCG str. Moreau","na":1,"nb":1,"a":[["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1195466","Mycobacterium tuberculosis variant bovis BCG str. Moreau"]]},{"id":"NCBITaxon:1195467","l":"Mycobacterium tuberculosis variant bovis BCG str. Phipps","na":1,"nb":1,"a":[["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1195467","Mycobacterium tuberculosis variant bovis BCG str. Phipps"]]},{"id":"NCBITaxon:1195468","l":"Mycobacterium tuberculosis variant bovis BCG str. Prague","na":1,"nb":1,"a":[["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1195468","Mycobacterium tuberculosis variant bovis BCG str. Prague"]]},{"id":"NCBITaxon:1195469","l":"Mycobacterium tuberculosis variant bovis BCG str. Sweden","na":1,"nb":1,"a":[["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1195469","Mycobacterium tuberculosis variant bovis BCG str. Sweden"]]},{"id":"NCBITaxon:1195760","l":"Wenyingzhuangia marina","na":1,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"]],"b":[["NCBITaxon%3A1195760","Wenyingzhuangia marina"]]},{"id":"NCBITaxon:1196034","l":"Klebsiella sp. 10982","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1196034","Klebsiella sp. 10982"]]},{"id":"NCBITaxon:119853","l":"Oscillospira guilliermondii","na":1,"nb":1,"a":[["intestine-bto-0000648.html","intestine"]],"b":[["NCBITaxon%3A119853","Oscillospira guilliermondii"]]},{"id":"NCBITaxon:1199154","l":"Lysobacter sp. A03","na":1,"nb":1,"a":[["feather-bto-0000447.html","feather"]],"b":[["NCBITaxon%3A1199154","Lysobacter sp. A03"]]},{"id":"NCBITaxon:1199187","l":"Mycobacterium avium subsp. paratuberculosis MAP4","na":1,"nb":1,"a":[["breast-bto-0000149.html","breast"]],"b":[["NCBITaxon%3A1199187","Mycobacterium avium subsp. paratuberculosis MAP4"]]},{"id":"NCBITaxon:119978","l":"Acidithiobacillus albertensis","na":1,"nb":1,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A119978","Acidithiobacillus albertensis"]]},{"id":"NCBITaxon:1200302","l":"Photobacterium damselae subsp. piscicida DI21","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1200302","Photobacterium damselae subsp. piscicida DI21"]]},{"id":"NCBITaxon:1200345","l":"","na":1,"nb":1,"a":[["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A1200345","Stutzerimonas stutzeri XLDN-R"]]},{"id":"NCBITaxon:1200775","l":"Cupriavidus basilensis B-8","na":1,"nb":1,"a":[["pulp-bto-0001142.html","pulp"]],"b":[["NCBITaxon%3A1200775","Cupriavidus basilensis B-8"]]},{"id":"NCBITaxon:1201036","l":"Pseudochrobactrum sp. AO18b","na":1,"nb":1,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A1201036","Pseudochrobactrum sp. AO18b"]]},{"id":"NCBITaxon:1201295","l":"Shewanella sp. POL2","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1201295","Shewanella sp. POL2"]]},{"id":"NCBITaxon:120213","l":"Subtercola boreus","na":1,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A120213","Subtercola boreus"]]},{"id":"NCBITaxon:1202456","l":"Bacillus sp. Aph1","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1202456","Bacillus sp. Aph1"]]},{"id":"NCBITaxon:1202533","l":"","na":1,"nb":1,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A1202533","Niallia nealsonii AAU1"]]},{"id":"NCBITaxon:1204724","l":"Escherichia coli IMT2125","na":1,"nb":1,"a":[["alveolus-bto-0000060.html","alveolus"]],"b":[["NCBITaxon%3A1204724","Escherichia coli IMT2125"]]},{"id":"NCBITaxon:1205674","l":"Mycobacterium canetti CIPT 140070010","na":1,"nb":1,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["NCBITaxon%3A1205674","Mycobacterium canetti CIPT 140070010"]]},{"id":"NCBITaxon:1205675","l":"Mycobacterium canetti CIPT 140070008","na":1,"nb":1,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["NCBITaxon%3A1205675","Mycobacterium canetti CIPT 140070008"]]},{"id":"NCBITaxon:1205676","l":"Mycobacterium canetti CIPT 140060008","na":1,"nb":1,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["NCBITaxon%3A1205676","Mycobacterium canetti CIPT 140060008"]]},{"id":"NCBITaxon:1205677","l":"Mycobacterium canetti CIPT 140070017","na":1,"nb":1,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["NCBITaxon%3A1205677","Mycobacterium canetti CIPT 140070017"]]},{"id":"NCBITaxon:1206085","l":"Jatrophihabitans endophyticus","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1206085","Jatrophihabitans endophyticus"]]},{"id":"NCBITaxon:1206753","l":"Maribacter spongiicola","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1206753","Maribacter spongiicola"]]},{"id":"NCBITaxon:1206774","l":"Oenococcus oeni AWRIB568","na":1,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A1206774","Oenococcus oeni AWRIB568"]]},{"id":"NCBITaxon:1206776","l":"Serratia plymuthica A30","na":1,"nb":1,"a":[["tuber-bto-0001400.html","tuber"]],"b":[["NCBITaxon%3A1206776","Serratia plymuthica A30"]]},{"id":"NCBITaxon:1206816","l":"Maribacter vaceletii","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1206816","Maribacter vaceletii"]]},{"id":"NCBITaxon:1206817","l":"Allorhizobium paknamense","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A1206817","Allorhizobium paknamense"]]},{"id":"NCBITaxon:1208663","l":"Cronobacter sakazakii 701","na":1,"nb":1,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A1208663","Cronobacter sakazakii 701"]]},{"id":"NCBITaxon:1208664","l":"Cronobacter sakazakii 696","na":1,"nb":1,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A1208664","Cronobacter sakazakii 696"]]},{"id":"NCBITaxon:1208918","l":"Candidatus Kinetoplastidibacterium crithidiae TCC036E","na":1,"nb":1,"a":[["flagellate-bto-0000464.html","flagellate"]],"b":[["NCBITaxon%3A1208918","Candidatus Kinetoplastidibacterium crithidiae TCC036E"]]},{"id":"NCBITaxon:1208919","l":"Candidatus Kinetoplastidibacterium desouzai TCC079E","na":1,"nb":1,"a":[["flagellate-bto-0000464.html","flagellate"]],"b":[["NCBITaxon%3A1208919","Candidatus Kinetoplastidibacterium desouzai TCC079E"]]},{"id":"NCBITaxon:1208920","l":"Candidatus Kinetoplastidibacterium stringomonadis TCC290E","na":1,"nb":1,"a":[["flagellate-bto-0000464.html","flagellate"]],"b":[["NCBITaxon%3A1208920","Candidatus Kinetoplastidibacterium stringomonadis TCC290E"]]},{"id":"NCBITaxon:1208921","l":"Candidatus Kinetoplastidibacterium galati TCC219","na":1,"nb":1,"a":[["flagellate-bto-0000464.html","flagellate"]],"b":[["NCBITaxon%3A1208921","Candidatus Kinetoplastidibacterium galati TCC219"]]},{"id":"NCBITaxon:1208922","l":"Candidatus Kinetoplastidibacterium blastocrithidiae TCC012E","na":1,"nb":1,"a":[["flagellate-bto-0000464.html","flagellate"]],"b":[["NCBITaxon%3A1208922","Candidatus Kinetoplastidibacterium blastocrithidiae TCC012E"]]},{"id":"NCBITaxon:120958","l":"Thermoanaerobacter sulfurigignens","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A120958","Thermoanaerobacter sulfurigignens"]]},{"id":"NCBITaxon:1210932","l":"Peteryoungia ipomoeae","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A1210932","Peteryoungia ipomoeae"]]},{"id":"NCBITaxon:1212765","l":"Candidatus Mycoplasma haematolamae str. Purdue","na":1,"nb":1,"a":[["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["NCBITaxon%3A1212765","Candidatus Mycoplasma haematolamae str. Purdue"]]},{"id":"NCBITaxon:1213457","l":"Helicobacter pylori HLJHP193","na":1,"nb":1,"a":[["gastric-ulcer-bto-0002990.html","gastric ulcer"]],"b":[["NCBITaxon%3A1213457","Helicobacter pylori HLJHP193"]]},{"id":"NCBITaxon:1214063","l":"Mycobacterium intracellulare M.i.198","na":1,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A1214063","Mycobacterium intracellulare M.i.198"]]},{"id":"NCBITaxon:1214221","l":"Helicobacter pylori HLJHP256","na":1,"nb":1,"a":[["gastric-ulcer-bto-0002990.html","gastric ulcer"]],"b":[["NCBITaxon%3A1214221","Helicobacter pylori HLJHP256"]]},{"id":"NCBITaxon:1214222","l":"Helicobacter pylori HLJHP271","na":1,"nb":1,"a":[["gastric-ulcer-bto-0002990.html","gastric ulcer"]],"b":[["NCBITaxon%3A1214222","Helicobacter pylori HLJHP271"]]},{"id":"NCBITaxon:1215087","l":"Pseudomonas putida S12","na":1,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A1215087","Pseudomonas putida S12"]]},{"id":"NCBITaxon:1216961","l":"Aeromonas sp. 159","na":1,"nb":1,"a":[["peritoneal-fluid-bto-0001031.html","peritoneal fluid"]],"b":[["NCBITaxon%3A1216961","Aeromonas sp. 159"]]},{"id":"NCBITaxon:1217418","l":"","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A1217418","Cupriavidus sp. HPC(L)"]]},{"id":"NCBITaxon:1218081","l":"Paraburkholderia kururiensis subsp. thiooxydans NBRC 107107","na":1,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A1218081","Paraburkholderia kururiensis subsp. thiooxydans NBRC 107107"]]},{"id":"NCBITaxon:1219037","l":"Sphingobium xenophagum NBRC 107872","na":1,"nb":1,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["NCBITaxon%3A1219037","Sphingobium xenophagum NBRC 107872"]]},{"id":"NCBITaxon:1220","l":"Prochlorococcus sp.","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A1220","Prochlorococcus sp."]]},{"id":"NCBITaxon:1221522","l":"Pseudomonas fluorescens NCIMB 11764","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1221522","Pseudomonas fluorescens NCIMB 11764"]]},{"id":"NCBITaxon:1223534","l":"Sphingobium amiense NBRC 102518","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1223534","Sphingobium amiense NBRC 102518"]]},{"id":"NCBITaxon:1223566","l":"Bradyrhizobium sp. CCGE-LA001","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1223566","Bradyrhizobium sp. CCGE-LA001"]]},{"id":"NCBITaxon:1224142","l":"Actinobacillus pleuropneumoniae S8","na":1,"nb":1,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1224142","Actinobacillus pleuropneumoniae S8"]]},{"id":"NCBITaxon:1225127","l":"","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1225127","Klenkia taihuensis"]]},{"id":"NCBITaxon:1225184","l":"Pantoea sp. A4","na":1,"nb":1,"a":[["flower-bto-0000469.html","flower"]],"b":[["NCBITaxon%3A1225184","Pantoea sp. A4"]]},{"id":"NCBITaxon:1226633","l":"Fusobacterium necrophorum subsp. funduliforme B35","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1226633","Fusobacterium necrophorum subsp. funduliforme B35"]]},{"id":"NCBITaxon:1226994","l":"Pseudomonas nitroreducens TX1","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1226994","Pseudomonas nitroreducens TX1"]]},{"id":"NCBITaxon:1229491","l":"Bradyrhizobium lupini HPC(L)","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A1229491","Bradyrhizobium lupini HPC(L)"]]},{"id":"NCBITaxon:1230341","l":"Salimicrobium jeotgali","na":1,"nb":1,"a":[["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A1230341","Salimicrobium jeotgali"]]},{"id":"NCBITaxon:1230343","l":"Legionella anisa str. Linanisette","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1230343","Legionella anisa str. Linanisette"]]},{"id":"NCBITaxon:1230477","l":"Bacillus subtilis S1-4","na":1,"nb":1,"a":[["feather-bto-0000447.html","feather"]],"b":[["NCBITaxon%3A1230477","Bacillus subtilis S1-4"]]},{"id":"NCBITaxon:1230480","l":"Escherichia coli EC302/04","na":1,"nb":1,"a":[["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1230480","Escherichia coli EC302/04"]]},{"id":"NCBITaxon:1231058","l":"Vibrio diabolicus E0666","na":1,"nb":1,"a":[["ascites-bto-0000091.html","ascites"]],"b":[["NCBITaxon%3A1231058","Vibrio diabolicus E0666"]]},{"id":"NCBITaxon:1232713","l":"Xanthomonas euvesicatoria pv. viticola LMG 965","na":1,"nb":1,"a":[["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A1232713","Xanthomonas euvesicatoria pv. viticola LMG 965"]]},{"id":"NCBITaxon:1232724","l":"Mycobacterium intracellulare subsp. intracellulare MTCC 9506","na":1,"nb":1,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A1232724","Mycobacterium intracellulare subsp. intracellulare MTCC 9506"]]},{"id":"NCBITaxon:1234143","l":"Endozoicomonas euniceicola","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A1234143","Endozoicomonas euniceicola"]]},{"id":"NCBITaxon:1234144","l":"Endozoicomonas gorgoniicola","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A1234144","Endozoicomonas gorgoniicola"]]},{"id":"NCBITaxon:1234367","l":"Chlamydia pecorum PV3056/3","na":1,"nb":1,"a":[["synovia-bto-0001339.html","synovia"]],"b":[["NCBITaxon%3A1234367","Chlamydia pecorum PV3056/3"]]},{"id":"NCBITaxon:1234368","l":"Chlamydia pecorum W73","na":1,"nb":1,"a":[["synovia-bto-0001339.html","synovia"]],"b":[["NCBITaxon%3A1234368","Chlamydia pecorum W73"]]},{"id":"NCBITaxon:1234380","l":"Cutibacterium acnes C1","na":1,"nb":1,"a":[["sebaceous-gland-bto-0001980.html","sebaceous gland"]],"b":[["NCBITaxon%3A1234380","Cutibacterium acnes C1"]]},{"id":"NCBITaxon:1234597","l":"Brucella intermedia M86","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A1234597","Brucella intermedia M86"]]},{"id":"NCBITaxon:1235259","l":"Oceanobacillus polygoni","na":1,"nb":1,"a":[["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A1235259","Oceanobacillus polygoni"]]},{"id":"NCBITaxon:1235440","l":"Staphylococcus epidermidis 12142587","na":1,"nb":1,"a":[["aortic-valve-bto-0004628.html","aortic valve"]],"b":[["NCBITaxon%3A1235440","Staphylococcus epidermidis 12142587"]]},{"id":"NCBITaxon:1236689","l":"Candidatus Methanomethylophilus alvi Mx1201","na":1,"nb":1,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A1236689","Candidatus Methanomethylophilus alvi Mx1201"]]},{"id":"NCBITaxon:1238885","l":"Bacillus thuringiensis serovar aizawai str. Hu4-2","na":1,"nb":1,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A1238885","Bacillus thuringiensis serovar aizawai str. Hu4-2"]]},{"id":"NCBITaxon:1241935","l":"","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A1241935","Saccharolobus islandicus LAL14/1"]]},{"id":"NCBITaxon:1242148","l":"Melghirimyces profundicolus","na":1,"nb":1,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["NCBITaxon%3A1242148","Melghirimyces profundicolus"]]},{"id":"NCBITaxon:1242245","l":"Acinetobacter johnsonii XBB1","na":1,"nb":1,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A1242245","Acinetobacter johnsonii XBB1"]]},{"id":"NCBITaxon:1242999","l":"Enterococcus olivae","na":1,"nb":1,"a":[["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A1242999","Enterococcus olivae"]]},{"id":"NCBITaxon:1243000","l":"Acidipropionibacterium olivae","na":1,"nb":1,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["NCBITaxon%3A1243000","Acidipropionibacterium olivae"]]},{"id":"NCBITaxon:1243001","l":"Acidipropionibacterium damnosum","na":1,"nb":1,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["NCBITaxon%3A1243001","Acidipropionibacterium damnosum"]]},{"id":"NCBITaxon:1244087","l":"Paenibacillus lentimorbus NRRL B-30488","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1244087","Paenibacillus lentimorbus NRRL B-30488"]]},{"id":"NCBITaxon:1245026","l":"Heyndrickxia coagulans XZL9","na":1,"nb":1,"a":[["cob-bto-0000266.html","cob"]],"b":[["NCBITaxon%3A1245026","Heyndrickxia coagulans XZL9"]]},{"id":"NCBITaxon:1245526","l":"","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A1245526","Geopseudomonas guangdongensis"]]},{"id":"NCBITaxon:1246119","l":"Mycobacterium canetti CIPT 140070002","na":1,"nb":1,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["NCBITaxon%3A1246119","Mycobacterium canetti CIPT 140070002"]]},{"id":"NCBITaxon:1246120","l":"Mycobacterium canetti CIPT 140070005","na":1,"nb":1,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["NCBITaxon%3A1246120","Mycobacterium canetti CIPT 140070005"]]},{"id":"NCBITaxon:1246121","l":"Mycobacterium canetti CIPT 140070013","na":1,"nb":1,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["NCBITaxon%3A1246121","Mycobacterium canetti CIPT 140070013"]]},{"id":"NCBITaxon:1246530","l":"Calderihabitans maritimus","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1246530","Calderihabitans maritimus"]]},{"id":"NCBITaxon:1246634","l":"Mycobacterium canetti CIPT 140070007","na":1,"nb":1,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["NCBITaxon%3A1246634","Mycobacterium canetti CIPT 140070007"]]},{"id":"NCBITaxon:1256514","l":"Novosphingobium arvoryzae","na":1,"nb":1,"a":[["paddy-ricefield-habitatmech-bacdive-6e3154acd8.html","Paddy-Ricefield"]],"b":[["NCBITaxon%3A1256514","Novosphingobium arvoryzae"]]},{"id":"NCBITaxon:1257079","l":"Bacillus thuringiensis DAR 81934","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A1257079","Bacillus thuringiensis DAR 81934"]]},{"id":"NCBITaxon:1257080","l":"Paenibacillus sp. PAMC 26794","na":1,"nb":1,"a":[["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1257080","Paenibacillus sp. PAMC 26794"]]},{"id":"NCBITaxon:1258567","l":"Escherichia coli LCT-EC52","na":1,"nb":1,"a":[["urinary-tract-bto-0001244.html","urinary tract"]],"b":[["NCBITaxon%3A1258567","Escherichia coli LCT-EC52"]]},{"id":"NCBITaxon:1260132","l":"Streptococcus parauberis KCTC 11980BP","na":1,"nb":1,"a":[["kidney-bto-0000671.html","kidney"]],"b":[["NCBITaxon%3A1260132","Streptococcus parauberis KCTC 11980BP"]]},{"id":"NCBITaxon:1260359","l":"Enterococcus faecalis 06-MB-S-04","na":1,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A1260359","Enterococcus faecalis 06-MB-S-04"]]},{"id":"NCBITaxon:1260987","l":"Noviherbaspirillum malthae","na":1,"nb":1,"a":[["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A1260987","Noviherbaspirillum malthae"]]},{"id":"NCBITaxon:1261131","l":"Candidatus Liberibacter americanus str. Sao Paulo","na":1,"nb":1,"a":[["phloem-bto-0001058.html","phloem"]],"b":[["NCBITaxon%3A1261131","Candidatus Liberibacter americanus str. Sao Paulo"]]},{"id":"NCBITaxon:1261567","l":"Streptococcus agalactiae 2-22","na":1,"nb":1,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A1261567","Streptococcus agalactiae 2-22"]]},{"id":"NCBITaxon:1262550","l":"Brevibacterium jeotgali","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A1262550","Brevibacterium jeotgali"]]},{"id":"NCBITaxon:1262554","l":"Garicola koreensis","na":1,"nb":1,"a":[["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A1262554","Garicola koreensis"]]},{"id":"NCBITaxon:1262583","l":"Tamaricihabitans halophyticus","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1262583","Tamaricihabitans halophyticus"]]},{"id":"NCBITaxon:1263636","l":"Microbacterium kyungheense","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A1263636","Microbacterium kyungheense"]]},{"id":"NCBITaxon:1263637","l":"Microbacterium jejuense","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A1263637","Microbacterium jejuense"]]},{"id":"NCBITaxon:1265302","l":"","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1265302","Staphylococcus aureus subsp. aureus PB32"]]},{"id":"NCBITaxon:1265309","l":"Tritonibacter mobilis F1926","na":1,"nb":1,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A1265309","Tritonibacter mobilis F1926"]]},{"id":"NCBITaxon:1265350","l":"Buchnera aphidicola (Aphis glycines)","na":1,"nb":1,"a":[["phloem-bto-0001058.html","phloem"]],"b":[["NCBITaxon%3A1265350","Buchnera aphidicola (Aphis glycines)"]]},{"id":"NCBITaxon:1265684","l":"Streptococcus agalactiae SS1219","na":1,"nb":1,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A1265684","Streptococcus agalactiae SS1219"]]},{"id":"NCBITaxon:1265931","l":"Rhizobium metallidurans","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A1265931","Rhizobium metallidurans"]]},{"id":"NCBITaxon:1266066","l":"Streptococcus agalactiae LADL-90-503","na":1,"nb":1,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A1266066","Streptococcus agalactiae LADL-90-503"]]},{"id":"NCBITaxon:1266067","l":"Streptococcus agalactiae LADL_05-108a","na":1,"nb":1,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A1266067","Streptococcus agalactiae LADL_05-108a"]]},{"id":"NCBITaxon:1266068","l":"Streptococcus agalactiae SS1218","na":1,"nb":1,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A1266068","Streptococcus agalactiae SS1218"]]},{"id":"NCBITaxon:1266069","l":"Streptococcus agalactiae CF01173","na":1,"nb":1,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A1266069","Streptococcus agalactiae CF01173"]]},{"id":"NCBITaxon:1266070","l":"Streptococcus agalactiae SS1014","na":1,"nb":1,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A1266070","Streptococcus agalactiae SS1014"]]},{"id":"NCBITaxon:1266370","l":"Nitrospina gracilis 3/211","na":1,"nb":1,"a":[["gracilis-muscle-bto-0000536.html","gracilis muscle"]],"b":[["NCBITaxon%3A1266370","Nitrospina gracilis 3/211"]]},{"id":"NCBITaxon:1266729","l":"Bordetella holmesii F627","na":1,"nb":1,"a":[["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["NCBITaxon%3A1266729","Bordetella holmesii F627"]]},{"id":"NCBITaxon:1267217","l":"Melaminivora jejuensis","na":1,"nb":1,"a":[["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A1267217","Melaminivora jejuensis"]]},{"id":"NCBITaxon:126740","l":"Thermotoga sp. RQ2","na":1,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["NCBITaxon%3A126740","Thermotoga sp. RQ2"]]},{"id":"NCBITaxon:1267423","l":"Roseivirga pacifica","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1267423","Roseivirga pacifica"]]},{"id":"NCBITaxon:1267547","l":"","na":1,"nb":1,"a":[["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1267547","Bacillus subtilis MB73/2"]]},{"id":"NCBITaxon:1267766","l":"","na":1,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A1267766","Croceibacterium atlanticum"]]},{"id":"NCBITaxon:1267768","l":"Brevirhabdus pacifica","na":1,"nb":1,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["NCBITaxon%3A1267768","Brevirhabdus pacifica"]]},{"id":"NCBITaxon:1267769","l":"Allosediminivita pacifica","na":1,"nb":1,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["NCBITaxon%3A1267769","Allosediminivita pacifica"]]},{"id":"NCBITaxon:1267897","l":"Klebsiella pneumoniae hvKP1","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1267897","Klebsiella pneumoniae hvKP1"]]},{"id":"NCBITaxon:1271862","l":"","na":1,"nb":1,"a":[["breast-bto-0000149.html","breast"]],"b":[["NCBITaxon%3A1271862","Salmonella enterica subsp. enterica serovar Typhimurium var. 5- str. CFSAN001921"]]},{"id":"NCBITaxon:1273133","l":"Ligilactobacillus salivarius cp400","na":1,"nb":1,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A1273133","Ligilactobacillus salivarius cp400"]]},{"id":"NCBITaxon:1273541","l":"Pyrodictium delaneyi","na":1,"nb":1,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A1273541","Pyrodictium delaneyi"]]},{"id":"NCBITaxon:1274374","l":"Paenibacillus antibioticophila","na":1,"nb":1,"a":[["tuberculosis-habitatmech-bacdive-e5d21f85b7.html","Tuberculosis"]],"b":[["NCBITaxon%3A1274374","Paenibacillus antibioticophila"]]},{"id":"NCBITaxon:1274631","l":"Bradyrhizobium icense","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1274631","Bradyrhizobium icense"]]},{"id":"NCBITaxon:1275966","l":"Glaesserella parasuis SW114","na":1,"nb":1,"a":[["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1275966","Glaesserella parasuis SW114"]]},{"id":"NCBITaxon:1275967","l":"Glaesserella parasuis MN-H","na":1,"nb":1,"a":[["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1275967","Glaesserella parasuis MN-H"]]},{"id":"NCBITaxon:1275968","l":"Glaesserella parasuis 12939","na":1,"nb":1,"a":[["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1275968","Glaesserella parasuis 12939"]]},{"id":"NCBITaxon:1275969","l":"Glaesserella parasuis 84-15995","na":1,"nb":1,"a":[["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1275969","Glaesserella parasuis 84-15995"]]},{"id":"NCBITaxon:1276890","l":"Alteromonas sp. TK-46(2)","na":1,"nb":1,"a":[["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A1276890","Alteromonas sp. TK-46(2)"]]},{"id":"NCBITaxon:1277350","l":"Geobacter sp. DSM 9736","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A1277350","Geobacter sp. DSM 9736"]]},{"id":"NCBITaxon:1278232","l":"Keratinibaculum paraultunense","na":1,"nb":1,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A1278232","Keratinibaculum paraultunense"]]},{"id":"NCBITaxon:1279010","l":"Proteus mirabilis PR03","na":1,"nb":1,"a":[["urinary-tract-bto-0001244.html","urinary tract"]],"b":[["NCBITaxon%3A1279010","Proteus mirabilis PR03"]]},{"id":"NCBITaxon:1280940","l":"Mycoplasmoides pneumoniae M2592","na":1,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"]],"b":[["NCBITaxon%3A1280940","Mycoplasmoides pneumoniae M2592"]]},{"id":"NCBITaxon:1281779","l":"Agrobacterium tumefaciens str. Cherry 2E-2-2","na":1,"nb":1,"a":[["crown-gall-bto-0000303.html","crown gall"]],"b":[["NCBITaxon%3A1281779","Agrobacterium tumefaciens str. Cherry 2E-2-2"]]},{"id":"NCBITaxon:1281885","l":"Bordetella holmesii H558","na":1,"nb":1,"a":[["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["NCBITaxon%3A1281885","Bordetella holmesii H558"]]},{"id":"NCBITaxon:1286170","l":"","na":1,"nb":1,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"]],"b":[["NCBITaxon%3A1286170","Klebsiella ornithinolytica B6"]]},{"id":"NCBITaxon:1286354","l":"Escherichia coli TOP2662-4","na":1,"nb":1,"a":[["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286354","Escherichia coli TOP2662-4"]]},{"id":"NCBITaxon:1286405","l":"","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1286405","Lacticaseibacillus rhamnosus CRL1505"]]},{"id":"NCBITaxon:1287068","l":"Micromonospora andamanensis","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1287068","Micromonospora andamanensis"]]},{"id":"NCBITaxon:128780","l":"Stenotrophomonas acidaminiphila","na":1,"nb":1,"a":[["biome-envo-00000428.html","biome"]],"b":[["NCBITaxon%3A128780","Stenotrophomonas acidaminiphila"]]},{"id":"NCBITaxon:128785","l":"Pseudoxanthomonas mexicana","na":1,"nb":1,"a":[["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["NCBITaxon%3A128785","Pseudoxanthomonas mexicana"]]},{"id":"NCBITaxon:1289594","l":"Pectobacterium atrosepticum CFBP 6276","na":1,"nb":1,"a":[["tuber-bto-0001400.html","tuber"]],"b":[["NCBITaxon%3A1289594","Pectobacterium atrosepticum CFBP 6276"]]},{"id":"NCBITaxon:1290393","l":"Pasteurella multocida 671/90","na":1,"nb":1,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1290393","Pasteurella multocida 671/90"]]},{"id":"NCBITaxon:1290553","l":"Halocynthiibacter namhaensis","na":1,"nb":1,"a":[["ascidian-bto-0000090.html","ascidian"]],"b":[["NCBITaxon%3A1290553","Halocynthiibacter namhaensis"]]},{"id":"NCBITaxon:1290995","l":"Treponema pedis isoM1224","na":1,"nb":1,"a":[["gingiva-bto-0000519.html","gingiva"]],"b":[["NCBITaxon%3A1290995","Treponema pedis isoM1224"]]},{"id":"NCBITaxon:1290998","l":"Treponema pedis str. T M1","na":1,"nb":1,"a":[["gingiva-bto-0000519.html","gingiva"]],"b":[["NCBITaxon%3A1290998","Treponema pedis str. T M1"]]},{"id":"NCBITaxon:1290999","l":"Treponema pedis str. B 683","na":1,"nb":1,"a":[["gingiva-bto-0000519.html","gingiva"]],"b":[["NCBITaxon%3A1290999","Treponema pedis str. B 683"]]},{"id":"NCBITaxon:1291000","l":"Treponema pedis isoM1111","na":1,"nb":1,"a":[["gingiva-bto-0000519.html","gingiva"]],"b":[["NCBITaxon%3A1291000","Treponema pedis isoM1111"]]},{"id":"NCBITaxon:1291001","l":"Treponema pedis isoE1186","na":1,"nb":1,"a":[["gingiva-bto-0000519.html","gingiva"]],"b":[["NCBITaxon%3A1291001","Treponema pedis isoE1186"]]},{"id":"NCBITaxon:1291002","l":"Treponema pedis isoM1220","na":1,"nb":1,"a":[["gingiva-bto-0000519.html","gingiva"]],"b":[["NCBITaxon%3A1291002","Treponema pedis isoM1220"]]},{"id":"NCBITaxon:1291379","l":"Treponema pedis str. T A4","na":1,"nb":1,"a":[["gingiva-bto-0000519.html","gingiva"]],"b":[["NCBITaxon%3A1291379","Treponema pedis str. T A4"]]},{"id":"NCBITaxon:1293441","l":"Lysinibacillus contaminans","na":1,"nb":1,"a":[["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["NCBITaxon%3A1293441","Lysinibacillus contaminans"]]},{"id":"NCBITaxon:1293442","l":"Falsochrobactrum ovis","na":1,"nb":1,"a":[["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A1293442","Falsochrobactrum ovis"]]},{"id":"NCBITaxon:1295009","l":"Methanomassiliicoccus intestinalis (strain Issoire-Mx1)","na":1,"nb":1,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A1295009","Candidatus Methanomassiliicoccus intestinalis Issoire-Mx1"]]},{"id":"NCBITaxon:1296537","l":"Enterococcus xiangfangensis","na":1,"nb":1,"a":[["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A1296537","Enterococcus xiangfangensis"]]},{"id":"NCBITaxon:1296538","l":"Lactiplantibacillus mudanjiangensis","na":1,"nb":1,"a":[["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A1296538","Lactiplantibacillus mudanjiangensis"]]},{"id":"NCBITaxon:1296565","l":"Geodermatophilus amargosae","na":1,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A1296565","Geodermatophilus amargosae"]]},{"id":"NCBITaxon:1296619","l":"Staphylococcus capitis CR01","na":1,"nb":1,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A1296619","Staphylococcus capitis CR01"]]},{"id":"NCBITaxon:1296669","l":"Aquabacterium olei","na":1,"nb":1,"a":[["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A1296669","Aquabacterium olei"]]},{"id":"NCBITaxon:1297534","l":"Streptococcus oralis subsp. dentisani 7746","na":1,"nb":1,"a":[["tooth-bto-0000397.html","tooth"]],"b":[["NCBITaxon%3A1297534","Streptococcus oralis subsp. dentisani 7746"]]},{"id":"NCBITaxon:1297750","l":"Bacteroides luti","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1297750","Bacteroides luti"]]},{"id":"NCBITaxon:1297799","l":"Meiothermus ruber H328","na":1,"nb":1,"a":[["feather-bto-0000447.html","feather"]],"b":[["NCBITaxon%3A1297799","Meiothermus ruber H328"]]},{"id":"NCBITaxon:1298860","l":"Microbacterium sp. URHA0036","na":1,"nb":1,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A1298860","Microbacterium sp. URHA0036"]]},{"id":"NCBITaxon:1298868","l":"Flavobacterium sp. URHB0058","na":1,"nb":1,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A1298868","Flavobacterium sp. URHB0058"]]},{"id":"NCBITaxon:129961","l":"Spirulina major PCC 6313","na":1,"nb":1,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A129961","Spirulina major PCC 6313"]]},{"id":"NCBITaxon:129985","l":"Mesobacillus jeotgali","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A129985","Mesobacillus jeotgali"]]},{"id":"NCBITaxon:1300267","l":"Streptomyces zhaozhouensis","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1300267","Streptomyces zhaozhouensis"]]},{"id":"NCBITaxon:1300914","l":"Mucilaginibacter sp. PAMC 26640","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A1300914","Mucilaginibacter sp. PAMC 26640"]]},{"id":"NCBITaxon:1301100","l":"Faecalimicrobium dakarense","na":1,"nb":1,"a":[["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A1301100","Faecalimicrobium dakarense"]]},{"id":"NCBITaxon:1302614","l":"Nanoarchaeota archaeon SCGC AAA011-J2","na":1,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A1302614","Nanoarchaeota archaeon SCGC AAA011-J2"]]},{"id":"NCBITaxon:1302659","l":"Planococcus versutus","na":1,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A1302659","Planococcus versutus"]]},{"id":"NCBITaxon:1302685","l":"Chryseobacterium takakiae","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A1302685","Chryseobacterium takakiae"]]},{"id":"NCBITaxon:1302687","l":"Chryseobacterium polytrichastri","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A1302687","Chryseobacterium polytrichastri"]]},{"id":"NCBITaxon:1302690","l":"Cnuella takakiae","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A1302690","Cnuella takakiae"]]},{"id":"NCBITaxon:13035","l":"Dactylococcopsis salina PCC 8305","na":1,"nb":1,"a":[["inlet-envo-00000475.html","inlet"]],"b":[["NCBITaxon%3A13035","Dactylococcopsis salina PCC 8305"]]},{"id":"NCBITaxon:1303716","l":"Penicillium egyptiacum","na":1,"nb":1,"a":[["low-tide-zone-envo-00000319.html","low tide zone"]],"b":[["NCBITaxon%3A1303716","Penicillium egyptiacum"]]},{"id":"NCBITaxon:1303921","l":"endosymbiont of Bathymodiolus septemdierum str. Myojin knoll","na":1,"nb":1,"a":[["gill-bto-0000518.html","gill"]],"b":[["NCBITaxon%3A1303921","endosymbiont of Bathymodiolus septemdierum str. Myojin knoll"]]},{"id":"NCBITaxon:1306407","l":"Treponema phagedenis 4A","na":1,"nb":1,"a":[["reproductive-system-bto-0000081.html","reproductive system"]],"b":[["NCBITaxon%3A1306407","Treponema phagedenis 4A"]]},{"id":"NCBITaxon:1306948","l":"","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1306948","Xanthomonas arboricola pv. corylina str. NCCB 100457"]]},{"id":"NCBITaxon:1306952","l":"Pediococcus acidilactici D3","na":1,"nb":1,"a":[["pa-1-cell-bto-0001591.html","PA-1 cell"]],"b":[["NCBITaxon%3A1306952","Pediococcus acidilactici D3"]]},{"id":"NCBITaxon:1307436","l":"Cytobacillus firmus DS1","na":1,"nb":1,"a":[["cuticle-bto-0001600.html","cuticle"]],"b":[["NCBITaxon%3A1307436","Cytobacillus firmus DS1"]]},{"id":"NCBITaxon:1307761","l":"Salinispira pacifica","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A1307761","Salinispira pacifica"]]},{"id":"NCBITaxon:1308924","l":"","na":1,"nb":1,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"]],"b":[["NCBITaxon%3A1308924","Agromyces bauzanensis"]]},{"id":"NCBITaxon:1309411","l":"Deinococcus soli (ex Cha et al. 2016)","na":1,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A1309411","Deinococcus soli (ex Cha et al. 2016)"]]},{"id":"NCBITaxon:1310431","l":"","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A1310431","Bacillus subtilis subsp. subtilis str. MP11"]]},{"id":"NCBITaxon:1311757","l":"Escherichia coli ACN001","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1311757","Escherichia coli ACN001"]]},{"id":"NCBITaxon:1311759","l":"Mannheimia haemolytica D171","na":1,"nb":1,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1311759","Mannheimia haemolytica D171"]]},{"id":"NCBITaxon:1312367","l":"Proteus hauseri ZMd44","na":1,"nb":1,"a":[["pulp-bto-0001142.html","pulp"]],"b":[["NCBITaxon%3A1312367","Proteus hauseri ZMd44"]]},{"id":"NCBITaxon:131318","l":"Corynebacterium felinum","na":1,"nb":1,"a":[["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A131318","Corynebacterium felinum"]]},{"id":"NCBITaxon:1315307","l":"Streptococcus pneumoniae MNZ11b","na":1,"nb":1,"a":[["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["NCBITaxon%3A1315307","Streptococcus pneumoniae MNZ11b"]]},{"id":"NCBITaxon:1315308","l":"Streptococcus pneumoniae MNZ14","na":1,"nb":1,"a":[["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["NCBITaxon%3A1315308","Streptococcus pneumoniae MNZ14"]]},{"id":"NCBITaxon:1315309","l":"Streptococcus pneumoniae MNZ37","na":1,"nb":1,"a":[["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["NCBITaxon%3A1315309","Streptococcus pneumoniae MNZ37"]]},{"id":"NCBITaxon:1315310","l":"Streptococcus pneumoniae MNZ41","na":1,"nb":1,"a":[["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["NCBITaxon%3A1315310","Streptococcus pneumoniae MNZ41"]]},{"id":"NCBITaxon:1315311","l":"Streptococcus pneumoniae MNZ85","na":1,"nb":1,"a":[["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["NCBITaxon%3A1315311","Streptococcus pneumoniae MNZ85"]]},{"id":"NCBITaxon:1315977","l":"Mycobacterium tuberculosis PR08","na":1,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"]],"b":[["NCBITaxon%3A1315977","Mycobacterium tuberculosis PR08"]]},{"id":"NCBITaxon:1316254","l":"Veillonella parvula HSIVP1","na":1,"nb":1,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["NCBITaxon%3A1316254","Veillonella parvula HSIVP1"]]},{"id":"NCBITaxon:1316408","l":"Streptococcus sp. HSISM1","na":1,"nb":1,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["NCBITaxon%3A1316408","Streptococcus sp. HSISM1"]]},{"id":"NCBITaxon:1316409","l":"Streptococcus sp. HSISB1","na":1,"nb":1,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["NCBITaxon%3A1316409","Streptococcus sp. HSISB1"]]},{"id":"NCBITaxon:1316410","l":"Streptococcus sp. HSISS1","na":1,"nb":1,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["NCBITaxon%3A1316410","Streptococcus sp. HSISS1"]]},{"id":"NCBITaxon:1316411","l":"Streptococcus sp. HSISS2","na":1,"nb":1,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["NCBITaxon%3A1316411","Streptococcus sp. HSISS2"]]},{"id":"NCBITaxon:1316412","l":"Streptococcus sp. HSISS3","na":1,"nb":1,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["NCBITaxon%3A1316412","Streptococcus sp. HSISS3"]]},{"id":"NCBITaxon:1316414","l":"Enterococcus sp. HSIEG1","na":1,"nb":1,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["NCBITaxon%3A1316414","Enterococcus sp. HSIEG1"]]},{"id":"NCBITaxon:1316928","l":"Gordonia terrae C-6","na":1,"nb":1,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"]],"b":[["NCBITaxon%3A1316928","Gordonia terrae C-6"]]},{"id":"NCBITaxon:1318743","l":"Bartonella ancashensis","na":1,"nb":1,"a":[["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"]],"b":[["NCBITaxon%3A1318743","Bartonella ancashensis"]]},{"id":"NCBITaxon:1321939","l":"Helicobacter pylori UM037","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1321939","Helicobacter pylori UM037"]]},{"id":"NCBITaxon:1321940","l":"Helicobacter pylori UM066","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1321940","Helicobacter pylori UM066"]]},{"id":"NCBITaxon:1322346","l":"Glaesserella parasuis ZJ0906","na":1,"nb":1,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["NCBITaxon%3A1322346","Glaesserella parasuis ZJ0906"]]},{"id":"NCBITaxon:1323370","l":"Caloranaerobacter ferrireducens","na":1,"nb":1,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A1323370","Caloranaerobacter ferrireducens"]]},{"id":"NCBITaxon:1323375","l":"Anoxybacter fermentans","na":1,"nb":1,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A1323375","Anoxybacter fermentans"]]},{"id":"NCBITaxon:1323664","l":"Paraburkholderia caribensis MBA4","na":1,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A1323664","Paraburkholderia caribensis MBA4"]]},{"id":"NCBITaxon:1324350","l":"Acinetobacter equi","na":1,"nb":1,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A1324350","Acinetobacter equi"]]},{"id":"NCBITaxon:1324766","l":"Rothia endophytica","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A1324766","Rothia endophytica"]]},{"id":"NCBITaxon:1324966","l":"Bacillus thuringiensis T01-328","na":1,"nb":1,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A1324966","Bacillus thuringiensis T01-328"]]},{"id":"NCBITaxon:1326758","l":"Morganella sp. GLFB","na":1,"nb":1,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"]],"b":[["NCBITaxon%3A1326758","Morganella sp. GLFB"]]},{"id":"NCBITaxon:1326759","l":"Serratia sp. GLFA","na":1,"nb":1,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"]],"b":[["NCBITaxon%3A1326759","Serratia sp. GLFA"]]},{"id":"NCBITaxon:1329250","l":"Weissella oryzae (strain DSM 25784 / JCM 18191 / LMG 30913 / SG25)","na":1,"nb":1,"a":[["caryopsis-bto-0000208.html","caryopsis"]],"b":[["NCBITaxon%3A1329250","Weissella oryzae SG25"]]},{"id":"NCBITaxon:1329262","l":"Mobilisporobacter senegalensis","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A1329262","Mobilisporobacter senegalensis"]]},{"id":"NCBITaxon:1329370","l":"Franzmannia qiaohouensis","na":1,"nb":1,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["NCBITaxon%3A1329370","Franzmannia qiaohouensis"]]},{"id":"NCBITaxon:1329905","l":"Mannheimia haemolytica D35","na":1,"nb":1,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1329905","Mannheimia haemolytica D35"]]},{"id":"NCBITaxon:1331042","l":"Pasteurella multocida subsp. multocida P1062","na":1,"nb":1,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1331042","Pasteurella multocida subsp. multocida P1062"]]},{"id":"NCBITaxon:1331043","l":"","na":1,"nb":1,"a":[["ovary-bto-0000975.html","ovary"]],"b":[["NCBITaxon%3A1331043","Salmonella enterica subsp. enterica serovar Gallinarum/Pullorum str. FCAV198"]]},{"id":"NCBITaxon:133189","l":"Bdellovibrio sp. W","na":1,"nb":1,"a":[["stream-envo-00000023.html","stream"]],"b":[["NCBITaxon%3A133189","Bdellovibrio sp. W"]]},{"id":"NCBITaxon:1333523","l":"Salinarchaeum sp. Harcht-Bsk1","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A1333523","Salinarchaeum sp. Harcht-Bsk1"]]},{"id":"NCBITaxon:1333529","l":"Campylobacter fetus subsp. venerealis bv. intermedius str. 99541","na":1,"nb":1,"a":[["prepuce-bto-0001113.html","prepuce"]],"b":[["NCBITaxon%3A1333529","Campylobacter fetus subsp. venerealis bv. intermedius str. 99541"]]},{"id":"NCBITaxon:1333540","l":"Pseudomonas aeruginosa str. C 763","na":1,"nb":1,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1333540","Pseudomonas aeruginosa str. C 763"]]},{"id":"NCBITaxon:1333541","l":"Pseudomonas aeruginosa str. C 1334","na":1,"nb":1,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1333541","Pseudomonas aeruginosa str. C 1334"]]},{"id":"NCBITaxon:1333543","l":"Pseudomonas aeruginosa str. C 1433","na":1,"nb":1,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1333543","Pseudomonas aeruginosa str. C 1433"]]},{"id":"NCBITaxon:1333660","l":"Endozoicomonas atrinae","na":1,"nb":1,"a":[["ascidian-bto-0000090.html","ascidian"]],"b":[["NCBITaxon%3A1333660","Endozoicomonas atrinae"]]},{"id":"NCBITaxon:1333864","l":"Streptococcus oralis subsp. tigurinus 2425","na":1,"nb":1,"a":[["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A1333864","Streptococcus oralis subsp. tigurinus 2425"]]},{"id":"NCBITaxon:1333865","l":"Streptococcus oralis subsp. tigurinus 2426","na":1,"nb":1,"a":[["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A1333865","Streptococcus oralis subsp. tigurinus 2426"]]},{"id":"NCBITaxon:1334019","l":"Alcanivorax sp. EPR7","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A1334019","Alcanivorax sp. EPR7"]]},{"id":"NCBITaxon:133422","l":"Pseudoalteromonas sp. A316","na":1,"nb":1,"a":[["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A133422","Pseudoalteromonas sp. A316"]]},{"id":"NCBITaxon:1334629","l":"Myxococcus fulvus 124B02","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1334629","Myxococcus fulvus 124B02"]]},{"id":"NCBITaxon:1336203","l":"Pseudomonas aeruginosa MH38","na":1,"nb":1,"a":[["urethra-bto-0001426.html","urethra"]],"b":[["NCBITaxon%3A1336203","Pseudomonas aeruginosa MH38"]]},{"id":"NCBITaxon:1337051","l":"Murimonas intestini","na":1,"nb":1,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["NCBITaxon%3A1337051","Murimonas intestini"]]},{"id":"NCBITaxon:1337054","l":"Paenibacillus sp. A3","na":1,"nb":1,"a":[["thigh-bto-0001376.html","thigh"]],"b":[["NCBITaxon%3A1337054","Paenibacillus sp. A3"]]},{"id":"NCBITaxon:1337839","l":"Flavobacterium sp. DSM 425","na":1,"nb":1,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A1337839","Flavobacterium sp. DSM 425"]]},{"id":"NCBITaxon:1337887","l":"Brucella intermedia 229E","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A1337887","Brucella intermedia 229E"]]},{"id":"NCBITaxon:1338426","l":"Arthrobacter bambusae","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A1338426","Arthrobacter bambusae"]]},{"id":"NCBITaxon:1338436","l":"","na":1,"nb":1,"a":[["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1338436","Sinomonas humi"]]},{"id":"NCBITaxon:1340529","l":"Photobacterium panuliri","na":1,"nb":1,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["NCBITaxon%3A1340529","Photobacterium panuliri"]]},{"id":"NCBITaxon:1341157","l":"Ruminococcus flavefaciens 007c","na":1,"nb":1,"a":[["fiber-bto-0000450.html","fiber"]],"b":[["NCBITaxon%3A1341157","Ruminococcus flavefaciens 007c"]]},{"id":"NCBITaxon:1341644","l":"Pseudomonas aeruginosa WS136","na":1,"nb":1,"a":[["bone-marrow-bto-0000141.html","bone marrow"]],"b":[["NCBITaxon%3A1341644","Pseudomonas aeruginosa WS136"]]},{"id":"NCBITaxon:1342794","l":"Photobacterium sanctipauli","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A1342794","Photobacterium sanctipauli"]]},{"id":"NCBITaxon:1342818","l":"Vibrio madracius","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A1342818","Vibrio madracius"]]},{"id":"NCBITaxon:1343737","l":"","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1343737","Xylella fastidiosa subsp. multiplex Griffin-1"]]},{"id":"NCBITaxon:1344948","l":"Sphingomonas aerophila","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A1344948","Sphingomonas aerophila"]]},{"id":"NCBITaxon:134602","l":"Actinomadura nitritigenes","na":1,"nb":1,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"]],"b":[["NCBITaxon%3A134602","Actinomadura nitritigenes"]]},{"id":"NCBITaxon:1346286","l":"Indolivaga macrotermitis","na":1,"nb":1,"a":[["hindgut-bto-0000510.html","hindgut"]],"b":[["NCBITaxon%3A1346286","Indolivaga macrotermitis"]]},{"id":"NCBITaxon:1346290","l":"Methyloversatilis thermotolerans","na":1,"nb":1,"a":[["caldera-envo-00000096.html","caldera"]],"b":[["NCBITaxon%3A1346290","Methyloversatilis thermotolerans"]]},{"id":"NCBITaxon:1346330","l":"Sphingobacterium paucimobilis HER1398","na":1,"nb":1,"a":[["corn-silk-bto-0002854.html","corn silk"]],"b":[["NCBITaxon%3A1346330","Sphingobacterium paucimobilis HER1398"]]},{"id":"NCBITaxon:1347420","l":"Aeromonas veronii Hm21","na":1,"nb":1,"a":[["alimentary-canal-bto-0000058.html","alimentary canal"]],"b":[["NCBITaxon%3A1347420","Aeromonas veronii Hm21"]]},{"id":"NCBITaxon:1347891","l":"Naumannella cuiyingiana","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A1347891","Naumannella cuiyingiana"]]},{"id":"NCBITaxon:1348114","l":"Pseudoalteromonas piratica","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A1348114","Pseudoalteromonas piratica"]]},{"id":"NCBITaxon:1348339","l":"Pseudomonas aeruginosa LCT-PA41","na":1,"nb":1,"a":[["orbit-bto-0004687.html","orbit"]],"b":[["NCBITaxon%3A1348339","Pseudomonas aeruginosa LCT-PA41"]]},{"id":"NCBITaxon:1351836","l":"Brucella melitensis ADMAS-G1","na":1,"nb":1,"a":[["placenta-bto-0001078.html","placenta"]],"b":[["NCBITaxon%3A1351836","Brucella melitensis ADMAS-G1"]]},{"id":"NCBITaxon:1352223","l":"Streptococcus dentiloxodontae","na":1,"nb":1,"a":[["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A1352223","Streptococcus dentiloxodontae"]]},{"id":"NCBITaxon:1352343","l":"Helicobacter pylori UM038","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1352343","Helicobacter pylori UM038"]]},{"id":"NCBITaxon:1352344","l":"Helicobacter pylori UM085","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1352344","Helicobacter pylori UM085"]]},{"id":"NCBITaxon:1352345","l":"Helicobacter pylori UM111","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1352345","Helicobacter pylori UM111"]]},{"id":"NCBITaxon:1352346","l":"Helicobacter pylori UM077","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1352346","Helicobacter pylori UM077"]]},{"id":"NCBITaxon:1354301","l":"Clostridium sp. BL8","na":1,"nb":1,"a":[["vero-cell-bto-0001444.html","Vero cell"]],"b":[["NCBITaxon%3A1354301","Clostridium sp. BL8"]]},{"id":"NCBITaxon:1355528","l":"Helicobacter pylori UM065","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1355528","Helicobacter pylori UM065"]]},{"id":"NCBITaxon:1355529","l":"Helicobacter pylori UM067","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1355529","Helicobacter pylori UM067"]]},{"id":"NCBITaxon:1355530","l":"Helicobacter pylori UM084","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1355530","Helicobacter pylori UM084"]]},{"id":"NCBITaxon:1355531","l":"Helicobacter pylori UM114","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1355531","Helicobacter pylori UM114"]]},{"id":"NCBITaxon:1356851","l":"Prauserella soli","na":1,"nb":1,"a":[["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A1356851","Prauserella soli"]]},{"id":"NCBITaxon:1357294","l":"Staphylococcus equorum UMC-CNS-924","na":1,"nb":1,"a":[["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["NCBITaxon%3A1357294","Staphylococcus equorum UMC-CNS-924"]]},{"id":"NCBITaxon:135740","l":"Paracoccus kondratievae","na":1,"nb":1,"a":[["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["NCBITaxon%3A135740","Paracoccus kondratievae"]]},{"id":"NCBITaxon:135826","l":"Jeotgalibacillus alimentarius","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A135826","Jeotgalibacillus alimentarius"]]},{"id":"NCBITaxon:1359204","l":"","na":1,"nb":1,"a":[["vero-cell-bto-0001444.html","Vero cell"]],"b":[["NCBITaxon%3A1359204","Rickettsia rhipicephali str. HJ#5"]]},{"id":"NCBITaxon:136468","l":"Vibrio lentus","na":1,"nb":1,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A136468","Vibrio lentus"]]},{"id":"NCBITaxon:1365636","l":"Helicobacter pylori UM023","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1365636","Helicobacter pylori UM023"]]},{"id":"NCBITaxon:1367852","l":"Izhakiella capsodis","na":1,"nb":1,"a":[["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A1367852","Izhakiella capsodis"]]},{"id":"NCBITaxon:137584","l":"Thalassomonas viridans","na":1,"nb":1,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A137584","Thalassomonas viridans"]]},{"id":"NCBITaxon:137778","l":"Helicobacter aurati","na":1,"nb":1,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A137778","Helicobacter aurati"]]},{"id":"NCBITaxon:137838","l":"Clostridium neonatale","na":1,"nb":1,"a":[["ileum-bto-0000620.html","ileum"]],"b":[["NCBITaxon%3A137838","Clostridium neonatale"]]},{"id":"NCBITaxon:1379676","l":"Xenorhabdus bovienii str. Jollieti","na":1,"nb":1,"a":[["exoskeleton-bto-0004659.html","exoskeleton"]],"b":[["NCBITaxon%3A1379676","Xenorhabdus bovienii str. Jollieti"]]},{"id":"NCBITaxon:1379787","l":"Wolbachia pipientis wUni","na":1,"nb":1,"a":[["semen-bto-0001230.html","semen"]],"b":[["NCBITaxon%3A1379787","Wolbachia pipientis wUni"]]},{"id":"NCBITaxon:1380347","l":"Geodermatophilaceae bacterium URHB0048","na":1,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["NCBITaxon%3A1380347","Geodermatophilaceae bacterium URHB0048"]]},{"id":"NCBITaxon:1380348","l":"Acidobacteriaceae bacterium URHE0068","na":1,"nb":1,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A1380348","Acidobacteriaceae bacterium URHE0068"]]},{"id":"NCBITaxon:1380394","l":"Rhodospirillales bacterium URHD0088","na":1,"nb":1,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A1380394","Rhodospirillales bacterium URHD0088"]]},{"id":"NCBITaxon:1380685","l":"Kroppenstedtia pulmonis","na":1,"nb":1,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["NCBITaxon%3A1380685","Kroppenstedtia pulmonis"]]},{"id":"NCBITaxon:1380771","l":"Smithella sp. ME-1","na":1,"nb":1,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"]],"b":[["NCBITaxon%3A1380771","Smithella sp. ME-1"]]},{"id":"NCBITaxon:1381081","l":"Vibrio panuliri","na":1,"nb":1,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["NCBITaxon%3A1381081","Vibrio panuliri"]]},{"id":"NCBITaxon:1381124","l":"Limosilactobacillus fermentum 3872","na":1,"nb":1,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"]],"b":[["NCBITaxon%3A1381124","Limosilactobacillus fermentum 3872"]]},{"id":"NCBITaxon:1384051","l":"Bacillus amyloliquefaciens UASWS BA1","na":1,"nb":1,"a":[["wood-bto-0005516.html","wood"]],"b":[["NCBITaxon%3A1384051","Bacillus amyloliquefaciens UASWS BA1"]]},{"id":"NCBITaxon:1384060","l":"Rhodococcus sp. P27","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1384060","Rhodococcus sp. P27"]]},{"id":"NCBITaxon:1384063","l":"Mediterraneibacter gnavus AGR2154","na":1,"nb":1,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A1384063","Mediterraneibacter gnavus AGR2154"]]},{"id":"NCBITaxon:1384064","l":"Levilactobacillus brevis AG48","na":1,"nb":1,"a":[["foregut-bto-0000507.html","foregut"]],"b":[["NCBITaxon%3A1384064","Levilactobacillus brevis AG48"]]},{"id":"NCBITaxon:1384065","l":"Hominimerdicola alba AD2013","na":1,"nb":1,"a":[["foregut-bto-0000507.html","foregut"]],"b":[["NCBITaxon%3A1384065","Hominimerdicola alba AD2013"]]},{"id":"NCBITaxon:1384066","l":"Ruminococcus flavefaciens AE3010","na":1,"nb":1,"a":[["foregut-bto-0000507.html","foregut"]],"b":[["NCBITaxon%3A1384066","Ruminococcus flavefaciens AE3010"]]},{"id":"NCBITaxon:1384067","l":"Pediococcus acidilactici AGR20","na":1,"nb":1,"a":[["foregut-bto-0000507.html","foregut"]],"b":[["NCBITaxon%3A1384067","Pediococcus acidilactici AGR20"]]},{"id":"NCBITaxon:1384638","l":"Aridibacter famidurans","na":1,"nb":1,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A1384638","Aridibacter famidurans"]]},{"id":"NCBITaxon:1385420","l":"Allofrancisella heilbronnii","na":1,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A1385420","Allofrancisella heilbronnii"]]},{"id":"NCBITaxon:1386083","l":"Helicobacter pylori X47-2AL","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A1386083","Helicobacter pylori X47-2AL"]]},{"id":"NCBITaxon:1387197","l":"Candidatus Schmidhempelia bombi str. Bimp","na":1,"nb":1,"a":[["hindgut-bto-0000510.html","hindgut"]],"b":[["NCBITaxon%3A1387197","Candidatus Schmidhempelia bombi str. Bimp"]]},{"id":"NCBITaxon:1387275","l":"Chryseobacterium profundimaris","na":1,"nb":1,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["NCBITaxon%3A1387275","Chryseobacterium profundimaris"]]},{"id":"NCBITaxon:1389006","l":"Shimia sp. SK013","na":1,"nb":1,"a":[["filament-bto-0000463.html","filament"]],"b":[["NCBITaxon%3A1389006","Shimia sp. SK013"]]},{"id":"NCBITaxon:1389932","l":"Achromobacter pulmonis","na":1,"nb":1,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"]],"b":[["NCBITaxon%3A1389932","Achromobacter pulmonis"]]},{"id":"NCBITaxon:1390076","l":"Streptococcus pyogenes SP1-LAU","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A1390076","Streptococcus pyogenes SP1-LAU"]]},{"id":"NCBITaxon:1390077","l":"Streptococcus pyogenes SP2-LAU","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A1390077","Streptococcus pyogenes SP2-LAU"]]},{"id":"NCBITaxon:1390078","l":"Streptococcus pyogenes SP3-LAU","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A1390078","Streptococcus pyogenes SP3-LAU"]]},{"id":"NCBITaxon:1390079","l":"Streptococcus pyogenes SP4-LAU","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A1390079","Streptococcus pyogenes SP4-LAU"]]},{"id":"NCBITaxon:1390080","l":"Streptococcus pyogenes SP5-LAU","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A1390080","Streptococcus pyogenes SP5-LAU"]]},{"id":"NCBITaxon:1390081","l":"Streptococcus pyogenes SP6-LAU","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A1390081","Streptococcus pyogenes SP6-LAU"]]},{"id":"NCBITaxon:1390082","l":"Streptococcus pyogenes SP7-LAU","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A1390082","Streptococcus pyogenes SP7-LAU"]]},{"id":"NCBITaxon:1390083","l":"Streptococcus pyogenes SP8-LAU","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A1390083","Streptococcus pyogenes SP8-LAU"]]},{"id":"NCBITaxon:1390084","l":"Streptococcus pyogenes SP10-LAU","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A1390084","Streptococcus pyogenes SP10-LAU"]]},{"id":"NCBITaxon:1390361","l":"Ochrobactrum sp. EGD-AQ16","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A1390361","Ochrobactrum sp. EGD-AQ16"]]},{"id":"NCBITaxon:1390380","l":"Cronobacter turicensis z610","na":1,"nb":1,"a":[["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A1390380","Cronobacter turicensis z610"]]},{"id":"NCBITaxon:1392007","l":"Ligilactobacillus equi DPC 6820","na":1,"nb":1,"a":[["hindgut-bto-0000510.html","hindgut"]],"b":[["NCBITaxon%3A1392007","Ligilactobacillus equi DPC 6820"]]},{"id":"NCBITaxon:1392497","l":"Clostridioides mangenotii LM2","na":1,"nb":1,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A1392497","Clostridioides mangenotii LM2"]]},{"id":"NCBITaxon:1392836","l":"Lachnospiraceae bacterium TWA4","na":1,"nb":1,"a":[["forestomach-bto-0000480.html","forestomach"]],"b":[["NCBITaxon%3A1392836","Lachnospiraceae bacterium TWA4"]]},{"id":"NCBITaxon:1392852","l":"Escherichia coli M6","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392852","Escherichia coli M6"]]},{"id":"NCBITaxon:1392853","l":"Escherichia coli M7","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392853","Escherichia coli M7"]]},{"id":"NCBITaxon:1392855","l":"Escherichia coli M9","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392855","Escherichia coli M9"]]},{"id":"NCBITaxon:1392857","l":"Escherichia coli M11","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392857","Escherichia coli M11"]]},{"id":"NCBITaxon:1392858","l":"Escherichia coli M12","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392858","Escherichia coli M12"]]},{"id":"NCBITaxon:1392859","l":"Escherichia coli M13","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392859","Escherichia coli M13"]]},{"id":"NCBITaxon:1392860","l":"Escherichia coli M14","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392860","Escherichia coli M14"]]},{"id":"NCBITaxon:1392861","l":"Escherichia coli M16","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392861","Escherichia coli M16"]]},{"id":"NCBITaxon:1392862","l":"Escherichia coli M17","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392862","Escherichia coli M17"]]},{"id":"NCBITaxon:1392863","l":"Escherichia coli M18","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392863","Escherichia coli M18"]]},{"id":"NCBITaxon:1392866","l":"Escherichia coli M21","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392866","Escherichia coli M21"]]},{"id":"NCBITaxon:1392867","l":"Escherichia coli M22","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392867","Escherichia coli M22"]]},{"id":"NCBITaxon:1392868","l":"Escherichia coli M23","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392868","Escherichia coli M23"]]},{"id":"NCBITaxon:1392871","l":"Escherichia coli WC1","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392871","Escherichia coli WC1"]]},{"id":"NCBITaxon:1395579","l":"Enterobacter sp. DC3","na":1,"nb":1,"a":[["tuber-bto-0001400.html","tuber"]],"b":[["NCBITaxon%3A1395579","Enterobacter sp. DC3"]]},{"id":"NCBITaxon:1395580","l":"Enterobacter sp. DC4","na":1,"nb":1,"a":[["tuber-bto-0001400.html","tuber"]],"b":[["NCBITaxon%3A1395580","Enterobacter sp. DC4"]]},{"id":"NCBITaxon:1395944","l":"","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1395944","Aliirhizobium smilacinae"]]},{"id":"NCBITaxon:1397850","l":"Mycoplasmopsis californica HAZ160_1","na":1,"nb":1,"a":[["somatic-cell-bto-0001268.html","somatic cell"]],"b":[["NCBITaxon%3A1397850","Mycoplasmopsis californica HAZ160_1"]]},{"id":"NCBITaxon:1398664","l":"Paraburkholderia metalliresistens","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A1398664","Paraburkholderia metalliresistens"]]},{"id":"NCBITaxon:1398776","l":"Pseudomonas chlororaphis YL-1","na":1,"nb":1,"a":[["root-tip-bto-0001191.html","root tip"]],"b":[["NCBITaxon%3A1398776","Pseudomonas chlororaphis YL-1"]]},{"id":"NCBITaxon:1399774","l":"Enterobacter cloacae JD6301","na":1,"nb":1,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A1399774","Enterobacter cloacae JD6301"]]},{"id":"NCBITaxon:1399793","l":"Lactiplantibacillus plantarum 19L3","na":1,"nb":1,"a":[["rennet-bto-0001168.html","rennet"]],"b":[["NCBITaxon%3A1399793","Lactiplantibacillus plantarum 19L3"]]},{"id":"NCBITaxon:1399969","l":"Caballeronia megalochromosomata","na":1,"nb":1,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A1399969","Caballeronia megalochromosomata"]]},{"id":"NCBITaxon:1400868","l":"Pseudomonas aeruginosa VRFPA04","na":1,"nb":1,"a":[["cornea-bto-0000286.html","cornea"]],"b":[["NCBITaxon%3A1400868","Pseudomonas aeruginosa VRFPA04"]]},{"id":"NCBITaxon:1401264","l":"Prauserella coralliicola","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A1401264","Prauserella coralliicola"]]},{"id":"NCBITaxon:1402208","l":"Ligilactobacillus ruminis DPC 6832","na":1,"nb":1,"a":[["flagellate-bto-0000464.html","flagellate"]],"b":[["NCBITaxon%3A1402208","Ligilactobacillus ruminis DPC 6832"]]},{"id":"NCBITaxon:1403829","l":"Streptococcus mutans PKUSS-HG01","na":1,"nb":1,"a":[["dental-plaque-bto-0000338.html","dental plaque"]],"b":[["NCBITaxon%3A1403829","Streptococcus mutans PKUSS-HG01"]]},{"id":"NCBITaxon:1404260","l":"Streptococcus mutans PKUSS-LG01","na":1,"nb":1,"a":[["dental-plaque-bto-0000338.html","dental plaque"]],"b":[["NCBITaxon%3A1404260","Streptococcus mutans PKUSS-LG01"]]},{"id":"NCBITaxon:1405296","l":"Chlamydia suis MD56","na":1,"nb":1,"a":[["conjunctiva-bto-0003415.html","conjunctiva"]],"b":[["NCBITaxon%3A1405296","Chlamydia suis MD56"]]},{"id":"NCBITaxon:1405499","l":"Franconibacter helveticus 1159","na":1,"nb":1,"a":[["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A1405499","Franconibacter helveticus 1159"]]},{"id":"NCBITaxon:1406822","l":"Franconibacter pulveris 1160","na":1,"nb":1,"a":[["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A1406822","Franconibacter pulveris 1160"]]},{"id":"NCBITaxon:1408179","l":"Streptococcus pneumoniae A026","na":1,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"]],"b":[["NCBITaxon%3A1408179","Streptococcus pneumoniae A026"]]},{"id":"NCBITaxon:1408207","l":"Pseudomonas aeruginosa PK6","na":1,"nb":1,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"]],"b":[["NCBITaxon%3A1408207","Pseudomonas aeruginosa PK6"]]},{"id":"NCBITaxon:1408275","l":"Pseudomonas aeruginosa LESlike4","na":1,"nb":1,"a":[["amoeba-bto-0005312.html","amoeba"]],"b":[["NCBITaxon%3A1408275","Pseudomonas aeruginosa LESlike4"]]},{"id":"NCBITaxon:1408276","l":"Pseudomonas aeruginosa LESlike5","na":1,"nb":1,"a":[["amoeba-bto-0005312.html","amoeba"]],"b":[["NCBITaxon%3A1408276","Pseudomonas aeruginosa LESlike5"]]},{"id":"NCBITaxon:1408277","l":"Pseudomonas aeruginosa LESlike7","na":1,"nb":1,"a":[["amoeba-bto-0005312.html","amoeba"]],"b":[["NCBITaxon%3A1408277","Pseudomonas aeruginosa LESlike7"]]},{"id":"NCBITaxon:1408287","l":"Fusobacterium nucleatum W1481","na":1,"nb":1,"a":[["dental-plaque-bto-0000338.html","dental plaque"]],"b":[["NCBITaxon%3A1408287","Fusobacterium nucleatum W1481"]]},{"id":"NCBITaxon:1408452","l":"Mycobacterium genavense ATCC 51234","na":1,"nb":1,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A1408452","Mycobacterium genavense ATCC 51234"]]},{"id":"NCBITaxon:1409927","l":"Acinetobacter baumannii MRSN 7339","na":1,"nb":1,"a":[["fibroblast-bto-0000452.html","fibroblast"]],"b":[["NCBITaxon%3A1409927","Acinetobacter baumannii MRSN 7339"]]},{"id":"NCBITaxon:1409961","l":"Klebsiella pneumoniae MRSN 1319","na":1,"nb":1,"a":[["fibroblast-bto-0000452.html","fibroblast"]],"b":[["NCBITaxon%3A1409961","Klebsiella pneumoniae MRSN 1319"]]},{"id":"NCBITaxon:1410916","l":"Salmonella enterica subsp. enterica serovar Cerro str. CFSAN001588","na":1,"nb":1,"a":[["hindgut-bto-0000510.html","hindgut"]],"b":[["NCBITaxon%3A1410916","Salmonella enterica subsp. enterica serovar Cerro str. CFSAN001588"]]},{"id":"NCBITaxon:1411902","l":"Pacificitalea manganoxidans","na":1,"nb":1,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["NCBITaxon%3A1411902","Pacificitalea manganoxidans"]]},{"id":"NCBITaxon:141349","l":"Mycobacterium lentiflavum","na":1,"nb":1,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["NCBITaxon%3A141349","Mycobacterium lentiflavum"]]},{"id":"NCBITaxon:141451","l":"Oleiphilus messinensis","na":1,"nb":1,"a":[["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A141451","Oleiphilus messinensis"]]},{"id":"NCBITaxon:1415606","l":"Bifidobacterium animalis subsp. lactis CECT 8145","na":1,"nb":1,"a":[["blood-plasma-bto-0000131.html","blood plasma"]],"b":[["NCBITaxon%3A1415606","Bifidobacterium animalis subsp. lactis CECT 8145"]]},{"id":"NCBITaxon:1417989","l":"Burkholderia glumae 336gr-1","na":1,"nb":1,"a":[["panicle-bto-0005436.html","panicle"]],"b":[["NCBITaxon%3A1417989","Burkholderia glumae 336gr-1"]]},{"id":"NCBITaxon:1421531","l":"Pseudomonas aeruginosa 0C2E","na":1,"nb":1,"a":[["secretory-cell-bto-0003659.html","secretory cell"]],"b":[["NCBITaxon%3A1421531","Pseudomonas aeruginosa 0C2E"]]},{"id":"NCBITaxon:1424653","l":"Caminibacter pacificus","na":1,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["NCBITaxon%3A1424653","Caminibacter pacificus"]]},{"id":"NCBITaxon:1427984","l":"Candidatus Hepatoplasma crinochetorum Av","na":1,"nb":1,"a":[["hepatopancreas-bto-0000597.html","hepatopancreas"]],"b":[["NCBITaxon%3A1427984","Candidatus Hepatoplasma crinochetorum Av"]]},{"id":"NCBITaxon:1427985","l":"Bordetella bronchiseptica KM22","na":1,"nb":1,"a":[["nasal-cavity-bto-0002096.html","nasal cavity"]],"b":[["NCBITaxon%3A1427985","Bordetella bronchiseptica KM22"]]},{"id":"NCBITaxon:1429886","l":"Mycobacterium tuberculosis MTB-489","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1429886","Mycobacterium tuberculosis MTB-489"]]},{"id":"NCBITaxon:1429887","l":"Mycobacterium tuberculosis MTB-476","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1429887","Mycobacterium tuberculosis MTB-476"]]},{"id":"NCBITaxon:1430326","l":"Mycobacterium decipiens","na":1,"nb":1,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["NCBITaxon%3A1430326","Mycobacterium decipiens"]]},{"id":"NCBITaxon:1433126","l":"Mucinivorans hirudinis","na":1,"nb":1,"a":[["alimentary-canal-bto-0000058.html","alimentary canal"]],"b":[["NCBITaxon%3A1433126","Mucinivorans hirudinis"]]},{"id":"NCBITaxon:1434066","l":"Psychroserpens luteus","na":1,"nb":1,"a":[["subarctic-habitatmech-bacdive-09ded89de7.html","Subarctic"]],"b":[["NCBITaxon%3A1434066","Psychroserpens luteus"]]},{"id":"NCBITaxon:1434770","l":"Chlamydia muridarum str. Nigg3 CMUT3-5","na":1,"nb":1,"a":[["oviduct-bto-0000980.html","oviduct"]],"b":[["NCBITaxon%3A1434770","Chlamydia muridarum str. Nigg3 CMUT3-5"]]},{"id":"NCBITaxon:1434773","l":"Chlamydia muridarum str. Nigg CM972","na":1,"nb":1,"a":[["oviduct-bto-0000980.html","oviduct"]],"b":[["NCBITaxon%3A1434773","Chlamydia muridarum str. Nigg CM972"]]},{"id":"NCBITaxon:1435357","l":"Bacillus anthracis str. V770-NP1-R","na":1,"nb":1,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A1435357","Bacillus anthracis str. V770-NP1-R"]]},{"id":"NCBITaxon:1435425","l":"Pseudomonas sp. QTF5","na":1,"nb":1,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A1435425","Pseudomonas sp. QTF5"]]},{"id":"NCBITaxon:1436000","l":"Edwardsiella anguillarum ET080729","na":1,"nb":1,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["NCBITaxon%3A1436000","Edwardsiella anguillarum ET080729"]]},{"id":"NCBITaxon:1436301","l":"Edwardsiella anguillarum ET070829","na":1,"nb":1,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["NCBITaxon%3A1436301","Edwardsiella anguillarum ET070829"]]},{"id":"NCBITaxon:1436798","l":"Rickettsia fournieri","na":1,"nb":1,"a":[["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["NCBITaxon%3A1436798","Rickettsia fournieri"]]},{"id":"NCBITaxon:1436965","l":"Peptoniphilus stercorisuis","na":1,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"]],"b":[["NCBITaxon%3A1436965","Peptoniphilus stercorisuis"]]},{"id":"NCBITaxon:1437009","l":"Chenggangzhangella methanolivorans","na":1,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"]],"b":[["NCBITaxon%3A1437009","Chenggangzhangella methanolivorans"]]},{"id":"NCBITaxon:143802","l":"Ralstonia sp. HAB-11","na":1,"nb":1,"a":[["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A143802","Ralstonia sp. HAB-11"]]},{"id":"NCBITaxon:1438822","l":"Mycobacterium tuberculosis variant bovis B2 7505","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1438822","Mycobacterium tuberculosis variant bovis B2 7505"]]},{"id":"NCBITaxon:1438823","l":"Mycobacterium tuberculosis variant bovis Bz 31150","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1438823","Mycobacterium tuberculosis variant bovis Bz 31150"]]},{"id":"NCBITaxon:1440054","l":"Vibrio sp. OY15","na":1,"nb":1,"a":[["embryonic-stem-cell-bto-0001086.html","embryonic stem cell"]],"b":[["NCBITaxon%3A1440054","Vibrio sp. OY15"]]},{"id":"NCBITaxon:1444768","l":"Kitasatospora sp. MBT63","na":1,"nb":1,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A1444768","Kitasatospora sp. MBT63"]]},{"id":"NCBITaxon:1446466","l":"Candidatus Acetithermum autotrophicum","na":1,"nb":1,"a":[["finger-bto-0004669.html","finger"]],"b":[["NCBITaxon%3A1446466","Candidatus Acetithermum autotrophicum"]]},{"id":"NCBITaxon:1448137","l":"Staphylococcus aureus MRSA_CVM43477","na":1,"nb":1,"a":[["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["NCBITaxon%3A1448137","Staphylococcus aureus MRSA_CVM43477"]]},{"id":"NCBITaxon:1448141","l":"Trueperella pyogenes MS249","na":1,"nb":1,"a":[["uterus-bto-0001424.html","uterus"]],"b":[["NCBITaxon%3A1448141","Trueperella pyogenes MS249"]]},{"id":"NCBITaxon:1450449","l":"Mannheimia haemolytica serotype A1/A6 str. PKL10","na":1,"nb":1,"a":[["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A1450449","Mannheimia haemolytica serotype A1/A6 str. PKL10"]]},{"id":"NCBITaxon:1450517","l":"Escherichia coli MS499","na":1,"nb":1,"a":[["uterus-bto-0001424.html","uterus"]],"b":[["NCBITaxon%3A1450517","Escherichia coli MS499"]]},{"id":"NCBITaxon:1452538","l":"Microbacterium aureliae","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A1452538","Microbacterium aureliae"]]},{"id":"NCBITaxon:1454184","l":"Alkaliphilus namsaraevii","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A1454184","Alkaliphilus namsaraevii"]]},{"id":"NCBITaxon:145483","l":"Frigoribacterium faeni","na":1,"nb":1,"a":[["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A145483","Frigoribacterium faeni"]]},{"id":"NCBITaxon:1455611","l":"Mycobacterium tuberculosis K85","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A1455611","Mycobacterium tuberculosis K85"]]},{"id":"NCBITaxon:1457191","l":"Lacticaseibacillus rhamnosus E800","na":1,"nb":1,"a":[["gut-mucosa-bto-0000546.html","gut mucosa"]],"b":[["NCBITaxon%3A1457191","Lacticaseibacillus rhamnosus E800"]]},{"id":"NCBITaxon:1457392","l":"Pseudomonas aeruginosa PA96","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1457392","Pseudomonas aeruginosa PA96"]]},{"id":"NCBITaxon:1457395","l":"Lacticaseibacillus rhamnosus PEL5","na":1,"nb":1,"a":[["gut-mucosa-bto-0000546.html","gut mucosa"]],"b":[["NCBITaxon%3A1457395","Lacticaseibacillus rhamnosus PEL5"]]},{"id":"NCBITaxon:1457396","l":"Lacticaseibacillus rhamnosus PEL6","na":1,"nb":1,"a":[["gut-mucosa-bto-0000546.html","gut mucosa"]],"b":[["NCBITaxon%3A1457396","Lacticaseibacillus rhamnosus PEL6"]]},{"id":"NCBITaxon:1458279","l":"Staphylococcus aureus USA300-ISMMS1","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1458279","Staphylococcus aureus USA300-ISMMS1"]]},{"id":"NCBITaxon:1458472","l":"Mycobacterium tuberculosis CWCFVRF MDRTB 670","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1458472","Mycobacterium tuberculosis CWCFVRF MDRTB 670"]]},{"id":"NCBITaxon:1461579","l":"Haemophilus massiliensis","na":1,"nb":1,"a":[["peritoneal-fluid-bto-0001031.html","peritoneal fluid"]],"b":[["NCBITaxon%3A1461579","Haemophilus massiliensis"]]},{"id":"NCBITaxon:146819","l":"Streptomyces europaeiscabiei","na":1,"nb":1,"a":[["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A146819","Streptomyces europaeiscabiei"]]},{"id":"NCBITaxon:1470180","l":"Prauserella isguenensis","na":1,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A1470180","Prauserella isguenensis"]]},{"id":"NCBITaxon:1470200","l":"Neisseria arctica","na":1,"nb":1,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["NCBITaxon%3A1470200","Neisseria arctica"]]},{"id":"NCBITaxon:1471438","l":"Prochlorococcus sp. scB241_526B19","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1471438","Prochlorococcus sp. scB241_526B19"]]},{"id":"NCBITaxon:1471439","l":"Prochlorococcus sp. scB241_526B22","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1471439","Prochlorococcus sp. scB241_526B22"]]},{"id":"NCBITaxon:1471498","l":"Prochlorococcus sp. scB243_498N8","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1471498","Prochlorococcus sp. scB243_498N8"]]},{"id":"NCBITaxon:1471499","l":"Prochlorococcus sp. scB243_498P15","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1471499","Prochlorococcus sp. scB243_498P15"]]},{"id":"NCBITaxon:147248","l":"Halomonas alimentaria","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A147248","Halomonas alimentaria"]]},{"id":"NCBITaxon:1472682","l":"Psychrobacter sp. 310(2012)","na":1,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"]],"b":[["NCBITaxon%3A1472682","Psychrobacter sp. 310(2012)"]]},{"id":"NCBITaxon:1476","l":"Sporosarcina psychrophila","na":1,"nb":1,"a":[["surface-water-envo-00002042.html","surface water"]],"b":[["NCBITaxon%3A1476","Sporosarcina psychrophila"]]},{"id":"NCBITaxon:1476996","l":"Arthrobacter liuii","na":1,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A1476996","Arthrobacter liuii"]]},{"id":"NCBITaxon:1479025","l":"Myceligenerans cantabricum","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A1479025","Myceligenerans cantabricum"]]},{"id":"NCBITaxon:1481923","l":"Vibrio astriarenae","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A1481923","Vibrio astriarenae"]]},{"id":"NCBITaxon:1484116","l":"","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A1484116","Hymenobacter psoromatis"]]},{"id":"NCBITaxon:1484118","l":"Hymenobacter sp. PAMC 26628","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A1484118","Hymenobacter sp. PAMC 26628"]]},{"id":"NCBITaxon:148449","l":"","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A148449","Halopiger aswanensis"]]},{"id":"NCBITaxon:1485217","l":"Massilia eurypsychrophila","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1485217","Massilia eurypsychrophila"]]},{"id":"NCBITaxon:1485544","l":"Ferriphaselus sp. R-1","na":1,"nb":1,"a":[["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1485544","Ferriphaselus sp. R-1"]]},{"id":"NCBITaxon:1486034","l":"Lacinutrix venerupis","na":1,"nb":1,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A1486034","Lacinutrix venerupis"]]},{"id":"NCBITaxon:1487861","l":"Actinopolyspora sp. M5A","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A1487861","Actinopolyspora sp. M5A"]]},{"id":"NCBITaxon:1488331","l":"Fusibacter bizertensis","na":1,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"]],"b":[["NCBITaxon%3A1488331","Fusibacter bizertensis"]]},{"id":"NCBITaxon:1490222","l":"Actinoallomurus bryophytorum","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A1490222","Actinoallomurus bryophytorum"]]},{"id":"NCBITaxon:1494448","l":"Chelatococcus reniformis","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1494448","Chelatococcus reniformis"]]},{"id":"NCBITaxon:1495045","l":"Thermopetrobacter sp. TC1","na":1,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["NCBITaxon%3A1495045","Thermopetrobacter sp. TC1"]]},{"id":"NCBITaxon:1497681","l":"Paenilisteria newyorkensis","na":1,"nb":1,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["NCBITaxon%3A1497681","Paenilisteria newyorkensis"]]},{"id":"NCBITaxon:150","l":"Spirochaeta isovalerica","na":1,"nb":1,"a":[["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["NCBITaxon%3A150","Spirochaeta isovalerica"]]},{"id":"NCBITaxon:1500506","l":"Halopolyspora algeriensis","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A1500506","Halopolyspora algeriensis"]]},{"id":"NCBITaxon:1500538","l":"Teredinibacter waterburyi","na":1,"nb":1,"a":[["sound-envo-00000393.html","sound"]],"b":[["NCBITaxon%3A1500538","Teredinibacter waterburyi"]]},{"id":"NCBITaxon:150121","l":"","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A150121","Agreia pratensis"]]},{"id":"NCBITaxon:150122","l":"","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A150122","Curtobacterium herbarum"]]},{"id":"NCBITaxon:1501432","l":"Thiopseudomonas denitrificans","na":1,"nb":1,"a":[["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["NCBITaxon%3A1501432","Thiopseudomonas denitrificans"]]},{"id":"NCBITaxon:150248","l":"","na":1,"nb":1,"a":[["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["NCBITaxon%3A150248","Anoxybacillus pushchinoensis"]]},{"id":"NCBITaxon:1502762","l":"Janthinobacterium sp. RA13","na":1,"nb":1,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A1502762","Janthinobacterium sp. RA13"]]},{"id":"NCBITaxon:1505946","l":"Mesorhizobium sp. SOD10","na":1,"nb":1,"a":[["hair-follicle-outer-root-sheath-bto-0003969.html","hair follicle outer root sheath"]],"b":[["NCBITaxon%3A1505946","Mesorhizobium sp. SOD10"]]},{"id":"NCBITaxon:1513468","l":"Rouxiella chamberiensis","na":1,"nb":1,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["NCBITaxon%3A1513468","Rouxiella chamberiensis"]]},{"id":"NCBITaxon:1515612","l":"Sphingopyxis fribergensis","na":1,"nb":1,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A1515612","Sphingopyxis fribergensis"]]},{"id":"NCBITaxon:151654","l":"","na":1,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A151654","Cupriavidus laharis"]]},{"id":"NCBITaxon:1522140","l":"Nocardia xestospongiae","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1522140","Nocardia xestospongiae"]]},{"id":"NCBITaxon:1524095","l":"Hymenobacter frigidus","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1524095","Hymenobacter frigidus"]]},{"id":"NCBITaxon:1524097","l":"Massilia glaciei","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1524097","Massilia glaciei"]]},{"id":"NCBITaxon:1524460","l":"Phaeodactylibacter xiamenensis","na":1,"nb":1,"a":[["co-culture-habitatmech-bacdive-ff945d8a69.html","Co-culture"]],"b":[["NCBITaxon%3A1524460","Phaeodactylibacter xiamenensis"]]},{"id":"NCBITaxon:1524467","l":"Serratia sp. Ag1","na":1,"nb":1,"a":[["midgut-bto-0000863.html","midgut"]],"b":[["NCBITaxon%3A1524467","Serratia sp. Ag1"]]},{"id":"NCBITaxon:1526762","l":"Vibrio sp. B183","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1526762","Vibrio sp. B183"]]},{"id":"NCBITaxon:1528099","l":"Lawsonella clevelandensis","na":1,"nb":1,"a":[["peritoneum-bto-0001472.html","peritoneum"]],"b":[["NCBITaxon%3A1528099","Lawsonella clevelandensis"]]},{"id":"NCBITaxon:1532556","l":"Serratia sp. Ag2","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1532556","Serratia sp. Ag2"]]},{"id":"NCBITaxon:153494","l":"Rarobacter incanus","na":1,"nb":1,"a":[["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["NCBITaxon%3A153494","Rarobacter incanus"]]},{"id":"NCBITaxon:153500","l":"uncultured Methylomonas sp.","na":1,"nb":1,"a":[["low-tide-zone-envo-00000319.html","low tide zone"]],"b":[["NCBITaxon%3A153500","uncultured Methylomonas sp."]]},{"id":"NCBITaxon:1537524","l":"Thiogranum longum","na":1,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["NCBITaxon%3A1537524","Thiogranum longum"]]},{"id":"NCBITaxon:1538102","l":"Pseudochelatococcus lubricantis","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A1538102","Pseudochelatococcus lubricantis"]]},{"id":"NCBITaxon:1538103","l":"Pseudochelatococcus contaminans","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A1538103","Pseudochelatococcus contaminans"]]},{"id":"NCBITaxon:1538552","l":"Clostridium sp. NCR","na":1,"nb":1,"a":[["fiber-bto-0000450.html","fiber"]],"b":[["NCBITaxon%3A1538552","Clostridium sp. NCR"]]},{"id":"NCBITaxon:1543381","l":"Oleiagrimonas soli","na":1,"nb":1,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A1543381","Oleiagrimonas soli"]]},{"id":"NCBITaxon:1543721","l":"Sedimenticola thiotaurini","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A1543721","Sedimenticola thiotaurini"]]},{"id":"NCBITaxon:1545728","l":"Mycobacterium sp. EPa45","na":1,"nb":1,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"]],"b":[["NCBITaxon%3A1545728","Mycobacterium sp. EPa45"]]},{"id":"NCBITaxon:1550","l":"Clostridium subterminale","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A1550","Clostridium subterminale"]]},{"id":"NCBITaxon:1550035","l":"Streptomyces sp. NBRC 109706","na":1,"nb":1,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["NCBITaxon%3A1550035","Streptomyces sp. NBRC 109706"]]},{"id":"NCBITaxon:155042","l":"Geobacter grbiciae","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A155042","Geobacter grbiciae"]]},{"id":"NCBITaxon:1550736","l":"Corticibacter populi","na":1,"nb":1,"a":[["wood-envo-00002040.html","wood"]],"b":[["NCBITaxon%3A1550736","Corticibacter populi"]]},{"id":"NCBITaxon:155085","l":"Staphylococcus lutrae","na":1,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"]],"b":[["NCBITaxon%3A155085","Staphylococcus lutrae"]]},{"id":"NCBITaxon:1552123","l":"Listeria booriae","na":1,"nb":1,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["NCBITaxon%3A1552123","Listeria booriae"]]},{"id":"NCBITaxon:1553448","l":"","na":1,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A1553448","Falsigemmobacter intermedius"]]},{"id":"NCBITaxon:1553449","l":"Psychrobacter ciconiae","na":1,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A1553449","Psychrobacter ciconiae"]]},{"id":"NCBITaxon:155537","l":"Microscilla sp. PRE1","na":1,"nb":1,"a":[["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A155537","Microscilla sp. PRE1"]]},{"id":"NCBITaxon:155567","l":"uncultured Rhizobium sp.","na":1,"nb":1,"a":[["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"]],"b":[["NCBITaxon%3A155567","uncultured Rhizobium sp."]]},{"id":"NCBITaxon:1559","l":"Clostridium tertium","na":1,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"]],"b":[["NCBITaxon%3A1559","Clostridium tertium"]]},{"id":"NCBITaxon:1560217","l":"Clostridium sp. L74","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1560217","Clostridium sp. L74"]]},{"id":"NCBITaxon:1560324","l":"Arenimicrobium luteum","na":1,"nb":1,"a":[["semiarid-habitatmech-bacdive-766cd9f54f.html","Semiarid"]],"b":[["NCBITaxon%3A1560324","Arenimicrobium luteum"]]},{"id":"NCBITaxon:1561923","l":"Paenibacillus tibetensis","na":1,"nb":1,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A1561923","Paenibacillus tibetensis"]]},{"id":"NCBITaxon:1562124","l":"Hymenobacter glacieicola","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1562124","Hymenobacter glacieicola"]]},{"id":"NCBITaxon:1564159","l":"Geodermatophilus pulveris","na":1,"nb":1,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A1564159","Geodermatophilus pulveris"]]},{"id":"NCBITaxon:156523","l":"Nocardioides sp. 4P1-A","na":1,"nb":1,"a":[["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["NCBITaxon%3A156523","Nocardioides sp. 4P1-A"]]},{"id":"NCBITaxon:1566270","l":"Variovorax sp. EL159","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1566270","Variovorax sp. EL159"]]},{"id":"NCBITaxon:1566271","l":"Variovorax sp. 770b2","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1566271","Variovorax sp. 770b2"]]},{"id":"NCBITaxon:1566277","l":"Paenibacillus sp. 276b","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1566277","Paenibacillus sp. 276b"]]},{"id":"NCBITaxon:1566278","l":"Paenibacillus sp. 1_12","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1566278","Paenibacillus sp. 1_12"]]},{"id":"NCBITaxon:1566280","l":"Janthinobacterium sp. 344","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1566280","Janthinobacterium sp. 344"]]},{"id":"NCBITaxon:1566281","l":"Janthinobacterium sp. 551a","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1566281","Janthinobacterium sp. 551a"]]},{"id":"NCBITaxon:1566886","l":"Mycolicibacterium malmesburyense","na":1,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A1566886","Mycolicibacterium malmesburyense"]]},{"id":"NCBITaxon:156892","l":"Boudabousia marimammalium","na":1,"nb":1,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"]],"b":[["NCBITaxon%3A156892","Boudabousia marimammalium"]]},{"id":"NCBITaxon:156978","l":"Corynebacterium imitans","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A156978","Corynebacterium imitans"]]},{"id":"NCBITaxon:1570330","l":"Bacillus sp. BH072","na":1,"nb":1,"a":[["honey-bto-0000605.html","honey"]],"b":[["NCBITaxon%3A1570330","Bacillus sp. BH072"]]},{"id":"NCBITaxon:157227","l":"Jeotgalicoccus halotolerans","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A157227","Jeotgalicoccus halotolerans"]]},{"id":"NCBITaxon:157277","l":"uncultured Agrobacterium sp.","na":1,"nb":1,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["NCBITaxon%3A157277","uncultured Agrobacterium sp."]]},{"id":"NCBITaxon:157278","l":"uncultured Methylobacterium sp.","na":1,"nb":1,"a":[["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A157278","uncultured Methylobacterium sp."]]},{"id":"NCBITaxon:1574623","l":"Lyngbya confervoides BDU141951","na":1,"nb":1,"a":[["filament-bto-0000463.html","filament"]],"b":[["NCBITaxon%3A1574623","Lyngbya confervoides BDU141951"]]},{"id":"NCBITaxon:1576596","l":"Pseudovibrio sp. POLY-S9","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1576596","Pseudovibrio sp. POLY-S9"]]},{"id":"NCBITaxon:157733","l":"Alkalihalobacillus macyae","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A208199","Guptibacillus hwajinpoensis"]]},{"id":"NCBITaxon:1577474","l":"Raineyella antarctica","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A1577474","Raineyella antarctica"]]},{"id":"NCBITaxon:1577895","l":"Leisingera sp. ANG-M1","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["NCBITaxon%3A1577895","Leisingera sp. ANG-M1"]]},{"id":"NCBITaxon:1577896","l":"Leisingera sp. ANG-Vp","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["NCBITaxon%3A1577896","Leisingera sp. ANG-Vp"]]},{"id":"NCBITaxon:1577897","l":"Leisingera sp. ANG-DT","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["NCBITaxon%3A1577897","Leisingera sp. ANG-DT"]]},{"id":"NCBITaxon:1577898","l":"Leisingera sp. ANG-S","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["NCBITaxon%3A1577898","Leisingera sp. ANG-S"]]},{"id":"NCBITaxon:1577899","l":"Leisingera sp. ANG-S3","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["NCBITaxon%3A1577899","Leisingera sp. ANG-S3"]]},{"id":"NCBITaxon:1577900","l":"Leisingera sp. ANG-M6","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["NCBITaxon%3A1577900","Leisingera sp. ANG-M6"]]},{"id":"NCBITaxon:1577901","l":"Leisingera sp. ANG-S5","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["NCBITaxon%3A1577901","Leisingera sp. ANG-S5"]]},{"id":"NCBITaxon:1577902","l":"Leisingera sp. ANG-M7","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["NCBITaxon%3A1577902","Leisingera sp. ANG-M7"]]},{"id":"NCBITaxon:1577903","l":"Ruegeria sp. ANG-R","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["NCBITaxon%3A1577903","Ruegeria sp. ANG-R"]]},{"id":"NCBITaxon:1577904","l":"Ruegeria sp. ANG-S4","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["NCBITaxon%3A1577904","Ruegeria sp. ANG-S4"]]},{"id":"NCBITaxon:1577905","l":"Tateyamaria sp. ANG-S1","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["NCBITaxon%3A1577905","Tateyamaria sp. ANG-S1"]]},{"id":"NCBITaxon:157842","l":"Desulfofaba hansenii","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A157842","Desulfofaba hansenii"]]},{"id":"NCBITaxon:1578756","l":"Brevibacterium metallicum","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A1578756","Brevibacterium metallicum"]]},{"id":"NCBITaxon:1585697","l":"Agrobacterium arsenijevicii","na":1,"nb":1,"a":[["crown-gall-bto-0000303.html","crown gall"]],"b":[["NCBITaxon%3A1585697","Agrobacterium arsenijevicii"]]},{"id":"NCBITaxon:1585974","l":"Beduini massiliensis","na":1,"nb":1,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["NCBITaxon%3A1585974","Beduini massiliensis"]]},{"id":"NCBITaxon:1586233","l":"Halomicrobium urmianum","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A1586233","Halomicrobium urmianum"]]},{"id":"NCBITaxon:1586242","l":"Luteimonas arsenica","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A1586242","Luteimonas arsenica"]]},{"id":"NCBITaxon:1592106","l":"Terriglobus albidus","na":1,"nb":1,"a":[["semiarid-habitatmech-bacdive-766cd9f54f.html","Semiarid"]],"b":[["NCBITaxon%3A1592106","Terriglobus albidus"]]},{"id":"NCBITaxon:159478","l":"Alkanibacter difficilis","na":1,"nb":1,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"]],"b":[["NCBITaxon%3A159478","Alkanibacter difficilis"]]},{"id":"NCBITaxon:1603353","l":"Massilia psychrophila","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1603353","Massilia psychrophila"]]},{"id":"NCBITaxon:1603869","l":"Stenotrophobacter roseus","na":1,"nb":1,"a":[["semiarid-habitatmech-bacdive-766cd9f54f.html","Semiarid"]],"b":[["NCBITaxon%3A1603869","Stenotrophobacter roseus"]]},{"id":"NCBITaxon:1603870","l":"Brevitalea deliciosa","na":1,"nb":1,"a":[["semiarid-habitatmech-bacdive-766cd9f54f.html","Semiarid"]],"b":[["NCBITaxon%3A1603870","Brevitalea deliciosa"]]},{"id":"NCBITaxon:160492","l":"Xylella fastidiosa (strain 9a5c)","na":1,"nb":1,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["NCBITaxon%3A160492","Xylella fastidiosa 9a5c"]]},{"id":"NCBITaxon:1609288","l":"Streptomyces sp. ACT-1","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A1609288","Streptomyces sp. ACT-1"]]},{"id":"NCBITaxon:1609977","l":"Sphingomonas hengshuiensis","na":1,"nb":1,"a":[["marsh-envo-00000035.html","marsh"]],"b":[["NCBITaxon%3A1609977","Sphingomonas hengshuiensis"]]},{"id":"NCBITaxon:1611423","l":"Flavobacterium sp. DSM 9626","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A1611423","Flavobacterium sp. DSM 9626"]]},{"id":"NCBITaxon:161213","l":"Micrococcus sp. 28","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A161213","Micrococcus sp. 28"]]},{"id":"NCBITaxon:1612149","l":"Chryseobacterium limigenitum","na":1,"nb":1,"a":[["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A1612149","Chryseobacterium limigenitum"]]},{"id":"NCBITaxon:1612308","l":"Methylocapsa palsarum","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A1612308","Methylocapsa palsarum"]]},{"id":"NCBITaxon:1612552","l":"Actinoalloteichus fjordicus","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1612552","Actinoalloteichus fjordicus"]]},{"id":"NCBITaxon:1614635","l":"Polaromonas eurypsychrophila","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1614635","Polaromonas eurypsychrophila"]]},{"id":"NCBITaxon:1614636","l":"Sandarakinorhabdus glacialis","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1614636","Sandarakinorhabdus glacialis"]]},{"id":"NCBITaxon:161899","l":"Corynebacterium singulare","na":1,"nb":1,"a":[["semen-bto-0001230.html","semen"]],"b":[["NCBITaxon%3A161899","Corynebacterium singulare"]]},{"id":"NCBITaxon:1619308","l":"Cnuibacter physcomitrellae","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A1619308","Cnuibacter physcomitrellae"]]},{"id":"NCBITaxon:1619309","l":"Paenibacillus herberti","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A1619309","Paenibacillus herberti"]]},{"id":"NCBITaxon:1619310","l":"Paenibacillus marchantiophytorum","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A1619310","Paenibacillus marchantiophytorum"]]},{"id":"NCBITaxon:162028","l":"Haliangium tepidum","na":1,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A162028","Haliangium tepidum"]]},{"id":"NCBITaxon:162154","l":"","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A162154","Candidatus Arcobacter sulfidicus"]]},{"id":"NCBITaxon:162176","l":"Azospira sp. KJ","na":1,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A162176","Azospira sp. KJ"]]},{"id":"NCBITaxon:1630135","l":"Dermabacter vaginalis","na":1,"nb":1,"a":[["vaginal-fluid-uberon-0036243.html","vaginal fluid"]],"b":[["NCBITaxon%3A1630135","Dermabacter vaginalis"]]},{"id":"NCBITaxon:1631871","l":"Weissella jogaejeotgali","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A1631871","Weissella jogaejeotgali"]]},{"id":"NCBITaxon:163604","l":"Nocardiopsis exhalans","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A163604","Nocardiopsis exhalans"]]},{"id":"NCBITaxon:163605","l":"","na":1,"nb":1,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["NCBITaxon%3A109330","Nocardiopsis tropica"]]},{"id":"NCBITaxon:1636188","l":"Mycoplana azooxidifex","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1636188","Mycoplana azooxidifex"]]},{"id":"NCBITaxon:163877","l":"Virgibacillus necropolis","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A163877","Virgibacillus necropolis"]]},{"id":"NCBITaxon:163879","l":"Pseudalkalibacillus decolorationis","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A163879","Pseudalkalibacillus decolorationis"]]},{"id":"NCBITaxon:1639133","l":"Citrobacter portucalensis","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A1639133","Citrobacter portucalensis"]]},{"id":"NCBITaxon:1641715","l":"Sinobacterium norvegicum","na":1,"nb":1,"a":[["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["NCBITaxon%3A1641715","Sinobacterium norvegicum"]]},{"id":"NCBITaxon:1642469","l":"Mariniluteicoccus endophyticus","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1642469","Mariniluteicoccus endophyticus"]]},{"id":"NCBITaxon:1643450","l":"Devosia sp. H5989","na":1,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"]],"b":[["NCBITaxon%3A1643450","Devosia sp. H5989"]]},{"id":"NCBITaxon:1643675","l":"Candidatus Caldipriscus sp. T1.2","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A1643675","Candidatus Caldipriscus sp. T1.2"]]},{"id":"NCBITaxon:1643676","l":"Candidatus Thermoproauctor sp. T2.1","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A1643676","Candidatus Thermoproauctor sp. T2.1"]]},{"id":"NCBITaxon:164608","l":"Novosphingobium sp. KA1","na":1,"nb":1,"a":[["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A164608","Novosphingobium sp. KA1"]]},{"id":"NCBITaxon:1646373","l":"Rouxiella silvae","na":1,"nb":1,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A1646373","Rouxiella silvae"]]},{"id":"NCBITaxon:1647102","l":"Vibrio sp. VPAP30","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1647102","Vibrio sp. VPAP30"]]},{"id":"NCBITaxon:1648404","l":"Aurantiacibacter atlanticus","na":1,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A1648404","Aurantiacibacter atlanticus"]]},{"id":"NCBITaxon:1648871","l":"Mycolicibacterium oryzae","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A1648871","Mycolicibacterium oryzae"]]},{"id":"NCBITaxon:1652545","l":"Arthrobacter sp. YC-RL1","na":1,"nb":1,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"]],"b":[["NCBITaxon%3A1652545","Arthrobacter sp. YC-RL1"]]},{"id":"NCBITaxon:1658620","l":"Rubrivirga profundi","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1658620","Rubrivirga profundi"]]},{"id":"NCBITaxon:166318","l":"Synechococcus sp. WH 8016","na":1,"nb":1,"a":[["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["NCBITaxon%3A166318","Synechococcus sp. WH 8016"]]},{"id":"NCBITaxon:1663241","l":"Geodermatophilus marinus","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1663241","Geodermatophilus marinus"]]},{"id":"NCBITaxon:1665626","l":"Deinococcus budaensis","na":1,"nb":1,"a":[["cave-water-habitatmech-bacdive-9ae6cfc178.html","Cave-water"]],"b":[["NCBITaxon%3A1665626","Deinococcus budaensis"]]},{"id":"NCBITaxon:1671023","l":"Tsukamurella hongkongensis","na":1,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"]],"b":[["NCBITaxon%3A1671023","Tsukamurella hongkongensis"]]},{"id":"NCBITaxon:167644","l":"Ilyobacter tartaricus","na":1,"nb":1,"a":[["lagoon-envo-00000038.html","lagoon"]],"b":[["NCBITaxon%3A167644","Ilyobacter tartaricus"]]},{"id":"NCBITaxon:1677","l":"Arthrobacter pascens","na":1,"nb":1,"a":[["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["NCBITaxon%3A1677","Arthrobacter pascens"]]},{"id":"NCBITaxon:1679495","l":"Variovorax gossypii","na":1,"nb":1,"a":[["endosymbiont-habitatmech-bacdive-7d840c7ddc.html","Endosymbiont"]],"b":[["NCBITaxon%3A1679495","Variovorax gossypii"]]},{"id":"NCBITaxon:167968","l":"uncultured Desulfovibrio sp.","na":1,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A167968","uncultured Desulfovibrio sp."]]},{"id":"NCBITaxon:1682490","l":"Ferrigenium kumadai","na":1,"nb":1,"a":[["paddy-ricefield-habitatmech-bacdive-6e3154acd8.html","Paddy-Ricefield"]],"b":[["NCBITaxon%3A1682490","Ferrigenium kumadai"]]},{"id":"NCBITaxon:1682748","l":"Streptosporangium algeriense","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A1682748","Streptosporangium algeriense"]]},{"id":"NCBITaxon:1683161","l":"Chthonobacter albigriseus","na":1,"nb":1,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A1683161","Chthonobacter albigriseus"]]},{"id":"NCBITaxon:168379","l":"Halorhodospira neutriphila","na":1,"nb":1,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["NCBITaxon%3A168379","Halorhodospira neutriphila"]]},{"id":"NCBITaxon:1685124","l":"miscellaneous Crenarchaeota group-1 archaeon SG8-32-1","na":1,"nb":1,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["NCBITaxon%3A1685124","miscellaneous Crenarchaeota group-1 archaeon SG8-32-1"]]},{"id":"NCBITaxon:1685125","l":"miscellaneous Crenarchaeota group-1 archaeon SG8-32-3","na":1,"nb":1,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["NCBITaxon%3A1685125","miscellaneous Crenarchaeota group-1 archaeon SG8-32-3"]]},{"id":"NCBITaxon:1685126","l":"miscellaneous Crenarchaeota group-6 archaeon AD8-1","na":1,"nb":1,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["NCBITaxon%3A1685126","miscellaneous Crenarchaeota group-6 archaeon AD8-1"]]},{"id":"NCBITaxon:1685127","l":"miscellaneous Crenarchaeota group-15 archaeon DG-45","na":1,"nb":1,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["NCBITaxon%3A1685127","miscellaneous Crenarchaeota group-15 archaeon DG-45"]]},{"id":"NCBITaxon:1685133","l":"miscellaneous Crenarchaeota group archaeon SMTZ1-55","na":1,"nb":1,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["NCBITaxon%3A1685133","miscellaneous Crenarchaeota group archaeon SMTZ1-55"]]},{"id":"NCBITaxon:1685135","l":"miscellaneous Crenarchaeota group archaeon SMTZ-80","na":1,"nb":1,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["NCBITaxon%3A1685135","miscellaneous Crenarchaeota group archaeon SMTZ-80"]]},{"id":"NCBITaxon:1685415","l":"Stenotrophomonas tumulicola","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A1685415","Stenotrophomonas tumulicola"]]},{"id":"NCBITaxon:1690008","l":"Halomonas garicola","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A1690008","Halomonas garicola"]]},{"id":"NCBITaxon:1690221","l":"Streptomyces spongiicola","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1690221","Streptomyces spongiicola"]]},{"id":"NCBITaxon:169134","l":"Citricoccus muralis","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A169134","Citricoccus muralis"]]},{"id":"NCBITaxon:1696072","l":"Microbacterium sp. CGR1","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A1696072","Microbacterium sp. CGR1"]]},{"id":"NCBITaxon:1697797","l":"Actinobacteria bacterium UC5.1-1B11","na":1,"nb":1,"a":[["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697797","Actinobacteria bacterium UC5.1-1B11"]]},{"id":"NCBITaxon:1697798","l":"Actinobacteria bacterium UC5.1-1C2","na":1,"nb":1,"a":[["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697798","Actinobacteria bacterium UC5.1-1C2"]]},{"id":"NCBITaxon:1698521","l":"Endozoicomonas ascidiicola","na":1,"nb":1,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A1698521","Endozoicomonas ascidiicola"]]},{"id":"NCBITaxon:1701","l":"Brevibacterium sp.","na":1,"nb":1,"a":[["research-facility-envo-00000469.html","research facility"]],"b":[["NCBITaxon%3A1701","Brevibacterium sp."]]},{"id":"NCBITaxon:170187","l":"Streptococcus pneumoniae serotype 4 (strain ATCC BAA-334 / TIGR4)","na":1,"nb":1,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["NCBITaxon%3A170187","Streptococcus pneumoniae TIGR4"]]},{"id":"NCBITaxon:1703256","l":"Pseudoalteromonas gelatinilytica","na":1,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A1703256","Pseudoalteromonas gelatinilytica"]]},{"id":"NCBITaxon:1703351","l":"Bacteroides sp. SM1_62","na":1,"nb":1,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["NCBITaxon%3A1703351","Bacteroides sp. SM1_62"]]},{"id":"NCBITaxon:1703352","l":"Bacteroides sp. SM23_62","na":1,"nb":1,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["NCBITaxon%3A1703352","Bacteroides sp. SM23_62"]]},{"id":"NCBITaxon:1703960","l":"Rhizobium sp. N113","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1703960","Rhizobium sp. N113"]]},{"id":"NCBITaxon:1703961","l":"Rhizobium sp. N1314","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1703961","Rhizobium sp. N1314"]]},{"id":"NCBITaxon:1703962","l":"Rhizobium sp. N1341","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1703962","Rhizobium sp. N1341"]]},{"id":"NCBITaxon:1703963","l":"Rhizobium sp. N561","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1703963","Rhizobium sp. N561"]]},{"id":"NCBITaxon:1703964","l":"Rhizobium sp. N621","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1703964","Rhizobium sp. N621"]]},{"id":"NCBITaxon:1703965","l":"Rhizobium sp. N6212","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1703965","Rhizobium sp. N6212"]]},{"id":"NCBITaxon:1703966","l":"Rhizobium sp. N731","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1703966","Rhizobium sp. N731"]]},{"id":"NCBITaxon:1703967","l":"Rhizobium sp. N741","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1703967","Rhizobium sp. N741"]]},{"id":"NCBITaxon:1703968","l":"Rhizobium sp. N871","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1703968","Rhizobium sp. N871"]]},{"id":"NCBITaxon:1703969","l":"Rhizobium sp. N324","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1703969","Rhizobium sp. N324"]]},{"id":"NCBITaxon:1703970","l":"Rhizobium sp. N541","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1703970","Rhizobium sp. N541"]]},{"id":"NCBITaxon:1703971","l":"Rhizobium sp. N941","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1703971","Rhizobium sp. N941"]]},{"id":"NCBITaxon:1704307","l":"Candidatus Xiphinematobacter sp. Idaho Grape","na":1,"nb":1,"a":[["ovary-bto-0000975.html","ovary"]],"b":[["NCBITaxon%3A1704307","Candidatus Xiphinematobacter sp. Idaho Grape"]]},{"id":"NCBITaxon:1705730","l":"Candidatus Adiutrix intracellularis","na":1,"nb":1,"a":[["area-of-national-forest-envo-00000360.html","area of national forest"]],"b":[["NCBITaxon%3A1705730","Candidatus Adiutrix intracellularis"]]},{"id":"NCBITaxon:170622","l":"Bordetella sp. 10d","na":1,"nb":1,"a":[["clay-envo-00002982.html","clay"]],"b":[["NCBITaxon%3A170622","Bordetella sp. 10d"]]},{"id":"NCBITaxon:1708715","l":"Ensifer aridi","na":1,"nb":1,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A1708715","Ensifer aridi"]]},{"id":"NCBITaxon:1710353","l":"Pseudoalteromonas sp. P1-8","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1710353","Pseudoalteromonas sp. P1-8"]]},{"id":"NCBITaxon:1710354","l":"Pseudoalteromonas sp. P1-9","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1710354","Pseudoalteromonas sp. P1-9"]]},{"id":"NCBITaxon:171291","l":"Mycoplasmopsis verecunda","na":1,"nb":1,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A171291","Mycoplasmopsis verecunda"]]},{"id":"NCBITaxon:171399","l":"Paenibacillus sp. DSM 6358","na":1,"nb":1,"a":[["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["NCBITaxon%3A171399","Paenibacillus sp. DSM 6358"]]},{"id":"NCBITaxon:1714","l":"","na":1,"nb":1,"a":[["compost-envo-00002170.html","compost"]],"b":[["NCBITaxon%3A1714","Cellulomonas uda"]]},{"id":"NCBITaxon:171402","l":"Paenibacillus sp. DSM 1474","na":1,"nb":1,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A171402","Paenibacillus sp. DSM 1474"]]},{"id":"NCBITaxon:1715254","l":"Pseudoalteromonas sp. P1-11","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1715254","Pseudoalteromonas sp. P1-11"]]},{"id":"NCBITaxon:1715285","l":"Candidatus Providencia siddallii","na":1,"nb":1,"a":[["phloem-bto-0001058.html","phloem"]],"b":[["NCBITaxon%3A1715285","Candidatus Providencia siddallii"]]},{"id":"NCBITaxon:1716141","l":"Streptomyces jeddahensis","na":1,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A1716141","Streptomyces jeddahensis"]]},{"id":"NCBITaxon:1716143","l":"Pseudodesulfovibrio indicus","na":1,"nb":1,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["NCBITaxon%3A1716143","Pseudodesulfovibrio indicus"]]},{"id":"NCBITaxon:1716175","l":"Pseudoalteromonas sp. UCD-33C","na":1,"nb":1,"a":[["leaf-lamina-bto-0000719.html","leaf lamina"]],"b":[["NCBITaxon%3A1716175","Pseudoalteromonas sp. UCD-33C"]]},{"id":"NCBITaxon:171685","l":"Alkalicoccobacillus murimartini","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A171685","Alkalicoccobacillus murimartini"]]},{"id":"NCBITaxon:171688","l":"Paenibacillus sp. LMG 20245","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A171688","Paenibacillus sp. LMG 20245"]]},{"id":"NCBITaxon:171692","l":"Virgibacillus carmonensis","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A171692","Virgibacillus carmonensis"]]},{"id":"NCBITaxon:171693","l":"Oceanobacillus picturae","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A171693","Oceanobacillus picturae"]]},{"id":"NCBITaxon:171865","l":"Sulfuriferula plumbiphila","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A171865","Sulfuriferula plumbiphila"]]},{"id":"NCBITaxon:1721088","l":"Maridesulfovibrio salinus","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A1721088","Maridesulfovibrio salinus"]]},{"id":"NCBITaxon:1723755","l":"Pseudoalteromonas sp. P1-7a","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1723755","Pseudoalteromonas sp. P1-7a"]]},{"id":"NCBITaxon:1723756","l":"Pseudoalteromonas sp. P1-13-1a","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1723756","Pseudoalteromonas sp. P1-13-1a"]]},{"id":"NCBITaxon:1723757","l":"Pseudoalteromonas sp. P1-16-1b","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1723757","Pseudoalteromonas sp. P1-16-1b"]]},{"id":"NCBITaxon:1723758","l":"Pseudoalteromonas sp. P1-25","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1723758","Pseudoalteromonas sp. P1-25"]]},{"id":"NCBITaxon:1723759","l":"Pseudoalteromonas sp. P1-26","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1723759","Pseudoalteromonas sp. P1-26"]]},{"id":"NCBITaxon:1723760","l":"Pseudoalteromonas sp. P1-30","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1723760","Pseudoalteromonas sp. P1-30"]]},{"id":"NCBITaxon:1727163","l":"Algoriphagus sanaruensis","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1727163","Algoriphagus sanaruensis"]]},{"id":"NCBITaxon:1730094","l":"Methylobacterium sp. GXS13","na":1,"nb":1,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["NCBITaxon%3A1730094","Methylobacterium sp. GXS13"]]},{"id":"NCBITaxon:1734049","l":"Serpentinicella alkaliphila","na":1,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["NCBITaxon%3A1734049","Serpentinicella alkaliphila"]]},{"id":"NCBITaxon:1735038","l":"Oryzomicrobium terrae","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A1735038","Oryzomicrobium terrae"]]},{"id":"NCBITaxon:173560","l":"Saccharothrix algeriensis","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A173560","Saccharothrix algeriensis"]]},{"id":"NCBITaxon:1736691","l":"Aeromicrobium choanae","na":1,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A1736691","Aeromicrobium choanae"]]},{"id":"NCBITaxon:1737","l":"Paraclostridium tenue","na":1,"nb":1,"a":[["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A1737","Paraclostridium tenue"]]},{"id":"NCBITaxon:173735","l":"Cytophaga sp. MBIC04684","na":1,"nb":1,"a":[["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["NCBITaxon%3A173735","Cytophaga sp. MBIC04684"]]},{"id":"NCBITaxon:173738","l":"Cytophaga sp. I-762","na":1,"nb":1,"a":[["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["NCBITaxon%3A173738","Cytophaga sp. I-762"]]},{"id":"NCBITaxon:173740","l":"Cytophaga sp. T-588","na":1,"nb":1,"a":[["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["NCBITaxon%3A173740","Cytophaga sp. T-588"]]},{"id":"NCBITaxon:173959","l":"Brevibacillus invocatus","na":1,"nb":1,"a":[["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"]],"b":[["NCBITaxon%3A173959","Brevibacillus invocatus"]]},{"id":"NCBITaxon:1742358","l":"Cytobacillus praedii","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A1742358","Cytobacillus praedii"]]},{"id":"NCBITaxon:1742686","l":"Paractinoplanes deserti","na":1,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A1742686","Paractinoplanes deserti"]]},{"id":"NCBITaxon:1742687","l":"Arthrobacter deserti","na":1,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A1742687","Arthrobacter deserti"]]},{"id":"NCBITaxon:1747766","l":"Mycobacterium sp. NAZ190054","na":1,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"]],"b":[["NCBITaxon%3A1747766","Mycobacterium sp. NAZ190054"]]},{"id":"NCBITaxon:1751286","l":"Nostoc sp. NIES-3756","na":1,"nb":1,"a":[["photoreceptor-cell-bto-0001060.html","photoreceptor cell"]],"b":[["NCBITaxon%3A1751286","Nostoc sp. NIES-3756"]]},{"id":"NCBITaxon:1756185","l":"Nocardioides opuntiae","na":1,"nb":1,"a":[["xerophytic-habitatmech-bacdive-3abed720b8.html","Xerophytic"]],"b":[["NCBITaxon%3A1756185","Nocardioides opuntiae"]]},{"id":"NCBITaxon:1759399","l":"Streptococcus sp. A12","na":1,"nb":1,"a":[["dental-plaque-bto-0000338.html","dental plaque"]],"b":[["NCBITaxon%3A1759399","Streptococcus sp. A12"]]},{"id":"NCBITaxon:176090","l":"Streptococcus sinensis","na":1,"nb":1,"a":[["archeological-site-envo-00000564.html","archeological site"]],"b":[["NCBITaxon%3A176090","Streptococcus sinensis"]]},{"id":"NCBITaxon:1761780","l":"Butyrivibrio sp. ob235","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1761780","Butyrivibrio sp. ob235"]]},{"id":"NCBITaxon:1761782","l":"Enterobacter sp. kpr-6","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1761782","Enterobacter sp. kpr-6"]]},{"id":"NCBITaxon:1761783","l":"Enterococcus sp. kppr-6","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1761783","Enterococcus sp. kppr-6"]]},{"id":"NCBITaxon:1761883","l":"Prevotella sp. kh1p2","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1761883","Prevotella sp. kh1p2"]]},{"id":"NCBITaxon:1761884","l":"Prevotella sp. khp1","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1761884","Prevotella sp. khp1"]]},{"id":"NCBITaxon:1761885","l":"Prevotella sp. khp7","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1761885","Prevotella sp. khp7"]]},{"id":"NCBITaxon:1761886","l":"Prevotella sp. lc2012","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1761886","Prevotella sp. lc2012"]]},{"id":"NCBITaxon:176307","l":"uncultured Methanosarcina sp.","na":1,"nb":1,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A176307","uncultured Methanosarcina sp."]]},{"id":"NCBITaxon:1766719","l":"Caviibacter abscessus","na":1,"nb":1,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A1766719","Caviibacter abscessus"]]},{"id":"NCBITaxon:1768010","l":"Actinophytocola algeriensis","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A1768010","Actinophytocola algeriensis"]]},{"id":"NCBITaxon:1775","l":"Mycobacterium cookii","na":1,"nb":1,"a":[["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["NCBITaxon%3A1775","Mycobacterium cookii"]]},{"id":"NCBITaxon:1780362","l":"Campylobacter geochelonis","na":1,"nb":1,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A1780362","Campylobacter geochelonis"]]},{"id":"NCBITaxon:1783348","l":"Corynebacterium guangdongense","na":1,"nb":1,"a":[["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["NCBITaxon%3A1783348","Corynebacterium guangdongense"]]},{"id":"NCBITaxon:1788301","l":"Pseudomonas versuta","na":1,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A1788301","Pseudomonas versuta"]]},{"id":"NCBITaxon:179010","l":"Psychrobacter jeotgali","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A179010","Psychrobacter jeotgali"]]},{"id":"NCBITaxon:179095","l":"","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A179095","Microbacterium ulmi"]]},{"id":"NCBITaxon:1792307","l":"","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A1792307","Allobosea sp. PAMC 26642"]]},{"id":"NCBITaxon:1792845","l":"Mucilaginibacter pedocola","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A1792845","Mucilaginibacter pedocola"]]},{"id":"NCBITaxon:179326","l":"Schizothecium curvisporum","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A179326","Schizothecium curvisporum"]]},{"id":"NCBITaxon:1794912","l":"Anaerosporomusa subterranea","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1794912","Anaerosporomusa subterranea"]]},{"id":"NCBITaxon:1795053","l":"Microbacterium sp. PAMC 28756","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A1795053","Microbacterium sp. PAMC 28756"]]},{"id":"NCBITaxon:1795630","l":"Frondihabitans sp. PAMC 28766","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A1795630","Frondihabitans sp. PAMC 28766"]]},{"id":"NCBITaxon:1795631","l":"Variovorax sp. PAMC 28711","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A1795631","Variovorax sp. PAMC 28711"]]},{"id":"NCBITaxon:1796","l":"Mycolicibacterium senegalense","na":1,"nb":1,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"]],"b":[["NCBITaxon%3A1796","Mycolicibacterium senegalense"]]},{"id":"NCBITaxon:1796644","l":"Rodentibacter caecimuris","na":1,"nb":1,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["NCBITaxon%3A1796644","Rodentibacter caecimuris"]]},{"id":"NCBITaxon:1797112","l":"Olsenella sp. kh2p3","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1797112","Olsenella sp. kh2p3"]]},{"id":"NCBITaxon:1797175","l":"Acidobacteria bacterium RIFCSPHIGHO2_01_FULL_67_28","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797175","Acidobacteria bacterium RIFCSPHIGHO2_01_FULL_67_28"]]},{"id":"NCBITaxon:1797176","l":"Acidobacteria bacterium RIFCSPHIGHO2_02_FULL_67_57","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797176","Acidobacteria bacterium RIFCSPHIGHO2_02_FULL_67_57"]]},{"id":"NCBITaxon:1797177","l":"Acidobacteria bacterium RIFCSPHIGHO2_12_FULL_67_30","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797177","Acidobacteria bacterium RIFCSPHIGHO2_12_FULL_67_30"]]},{"id":"NCBITaxon:1797186","l":"Acidobacteria bacterium RIFCSPLOWO2_12_FULL_54_10","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797186","Acidobacteria bacterium RIFCSPLOWO2_12_FULL_54_10"]]},{"id":"NCBITaxon:1797187","l":"Acidobacteria bacterium RIFCSPLOWO2_12_FULL_59_11","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797187","Acidobacteria bacterium RIFCSPLOWO2_12_FULL_59_11"]]},{"id":"NCBITaxon:1797188","l":"Acidobacteria bacterium RIFCSPLOWO2_12_FULL_60_22","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797188","Acidobacteria bacterium RIFCSPLOWO2_12_FULL_60_22"]]},{"id":"NCBITaxon:1797189","l":"Acidobacteria bacterium RIFCSPLOWO2_12_FULL_65_11","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797189","Acidobacteria bacterium RIFCSPLOWO2_12_FULL_65_11"]]},{"id":"NCBITaxon:1797190","l":"Acidobacteria bacterium RIFCSPLOWO2_12_FULL_66_10","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797190","Acidobacteria bacterium RIFCSPLOWO2_12_FULL_66_10"]]},{"id":"NCBITaxon:1797191","l":"","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797191","Acidobacteria bacterium RIFCSPLOWO2_12_FULL_66_21"]]},{"id":"NCBITaxon:1797192","l":"Acidobacteria bacterium RIFCSPLOWO2_12_FULL_67_14","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797192","Acidobacteria bacterium RIFCSPLOWO2_12_FULL_67_14"]]},{"id":"NCBITaxon:1797193","l":"Acidobacteria bacterium RIFCSPLOWO2_12_FULL_67_14b","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797193","Acidobacteria bacterium RIFCSPLOWO2_12_FULL_67_14b"]]},{"id":"NCBITaxon:1797194","l":"Acidobacteria bacterium RIFCSPLOWO2_12_FULL_68_19","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797194","Acidobacteria bacterium RIFCSPLOWO2_12_FULL_68_19"]]},{"id":"NCBITaxon:1797216","l":"Alphaproteobacteria bacterium RIFCSPHIGHO2_01_FULL_40_8","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797216","Alphaproteobacteria bacterium RIFCSPHIGHO2_01_FULL_40_8"]]},{"id":"NCBITaxon:1797217","l":"Alphaproteobacteria bacterium RIFCSPHIGHO2_01_FULL_41_14","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797217","Alphaproteobacteria bacterium RIFCSPHIGHO2_01_FULL_41_14"]]},{"id":"NCBITaxon:1797218","l":"Alphaproteobacteria bacterium RIFCSPHIGHO2_02_FULL_40_34","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797218","Alphaproteobacteria bacterium RIFCSPHIGHO2_02_FULL_40_34"]]},{"id":"NCBITaxon:1797219","l":"Alphaproteobacteria bacterium RIFCSPHIGHO2_02_FULL_42_30","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797219","Alphaproteobacteria bacterium RIFCSPHIGHO2_02_FULL_42_30"]]},{"id":"NCBITaxon:1797220","l":"Alphaproteobacteria bacterium RIFCSPHIGHO2_02_FULL_46_13","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797220","Alphaproteobacteria bacterium RIFCSPHIGHO2_02_FULL_46_13"]]},{"id":"NCBITaxon:1797221","l":"Alphaproteobacteria bacterium RIFCSPHIGHO2_12_42_13","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797221","Alphaproteobacteria bacterium RIFCSPHIGHO2_12_42_13"]]},{"id":"NCBITaxon:1797222","l":"Alphaproteobacteria bacterium RIFCSPHIGHO2_12_FULL_42_100","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797222","Alphaproteobacteria bacterium RIFCSPHIGHO2_12_FULL_42_100"]]},{"id":"NCBITaxon:1798168","l":"Pseudobutyrivibrio sp. NOR37","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1798168","Pseudobutyrivibrio sp. NOR37"]]},{"id":"NCBITaxon:1798185","l":"Pseudobutyrivibrio sp. UC1225","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1798185","Pseudobutyrivibrio sp. UC1225"]]},{"id":"NCBITaxon:1798186","l":"Pseudobutyrivibrio sp. OR37","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1798186","Pseudobutyrivibrio sp. OR37"]]},{"id":"NCBITaxon:1799789","l":"Paraglaciecola hydrolytica","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A1799789","Paraglaciecola hydrolytica"]]},{"id":"NCBITaxon:1803212","l":"Sporosarcina terrae","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A1803212","Sporosarcina terrae"]]},{"id":"NCBITaxon:1806508","l":"","na":1,"nb":1,"a":[["filament-bto-0000463.html","filament"]],"b":[["NCBITaxon%3A1806508","Promineifilum breve (SeqCode)"]]},{"id":"NCBITaxon:1807","l":"Mycolicibacterium obuense","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1807","Mycolicibacterium obuense"]]},{"id":"NCBITaxon:1807133","l":"Natronospira proteinivora","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A1807133","Natronospira proteinivora"]]},{"id":"NCBITaxon:1808508","l":"Altericroceibacterium endophyticum","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A1808508","Altericroceibacterium endophyticum"]]},{"id":"NCBITaxon:1808945","l":"Zunongwangia endophytica","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A1808945","Zunongwangia endophytica"]]},{"id":"NCBITaxon:1812261","l":"Phocicoccus schoeneichii","na":1,"nb":1,"a":[["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A1812261","Phocicoccus schoeneichii"]]},{"id":"NCBITaxon:1812810","l":"Rhodohalobacter halophilus","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A1812810","Rhodohalobacter halophilus"]]},{"id":"NCBITaxon:1813471","l":"Actinokineospora acnipugnans","na":1,"nb":1,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A1813471","Actinokineospora acnipugnans"]]},{"id":"NCBITaxon:1817405","l":"Abyssicoccus albus","na":1,"nb":1,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["NCBITaxon%3A1817405","Abyssicoccus albus"]]},{"id":"NCBITaxon:1819600","l":"Actinomadura adrarensis","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A1819600","Actinomadura adrarensis"]]},{"id":"NCBITaxon:182136","l":"Fictibacillus barbaricus","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A182136","Fictibacillus barbaricus"]]},{"id":"NCBITaxon:182180","l":"Aromatoleum anaerobium","na":1,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"]],"b":[["NCBITaxon%3A182180","Aromatoleum anaerobium"]]},{"id":"NCBITaxon:182264","l":"Sporotomaculum syntrophicum","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A182264","Sporotomaculum syntrophicum"]]},{"id":"NCBITaxon:1825933","l":"Rhizobium sp. WYCCWR10014","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1825933","Rhizobium sp. WYCCWR10014"]]},{"id":"NCBITaxon:182690","l":"uncultured Achromobacter sp.","na":1,"nb":1,"a":[["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"]],"b":[["NCBITaxon%3A182690","uncultured Achromobacter sp."]]},{"id":"NCBITaxon:1827136","l":"Candidatus Marithrix sp. Canyon 246","na":1,"nb":1,"a":[["filament-bto-0000463.html","filament"]],"b":[["NCBITaxon%3A1827136","Candidatus Marithrix sp. Canyon 246"]]},{"id":"NCBITaxon:1830138","l":"","na":1,"nb":1,"a":[["park-envo-00000562.html","park"]],"b":[["NCBITaxon%3A90970","Alicyclobacillus tolerans"]]},{"id":"NCBITaxon:1831","l":"","na":1,"nb":1,"a":[["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["NCBITaxon%3A1831","Rhodococcus sp. (in: high G+C Gram-positive bacteria)"]]},{"id":"NCBITaxon:183190","l":"Xylella fastidiosa (strain Temecula1 / ATCC 700964)","na":1,"nb":1,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["NCBITaxon%3A183190","Xylella fastidiosa Temecula1"]]},{"id":"NCBITaxon:1834516","l":"Pseudofrankia asymbiotica","na":1,"nb":1,"a":[["sporangium-bto-0001287.html","sporangium"]],"b":[["NCBITaxon%3A1834516","Pseudofrankia asymbiotica"]]},{"id":"NCBITaxon:1834927","l":"Kordia zosterae","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A1834927","Kordia zosterae"]]},{"id":"NCBITaxon:1836499","l":"Algoriphagus iocasae","na":1,"nb":1,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["NCBITaxon%3A1836499","Algoriphagus iocasae"]]},{"id":"NCBITaxon:1838","l":"Saccharopolyspora hordei","na":1,"nb":1,"a":[["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"]],"b":[["NCBITaxon%3A1838","Saccharopolyspora hordei"]]},{"id":"NCBITaxon:1838280","l":"","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A1838280","Desulfotomaculum copahuensis"]]},{"id":"NCBITaxon:1840606","l":"Krasilnikoviella muralis","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A1840606","Krasilnikoviella muralis"]]},{"id":"NCBITaxon:1841","l":"Nocardioides albus","na":1,"nb":1,"a":[["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["NCBITaxon%3A1841","Nocardioides albus"]]},{"id":"NCBITaxon:1842533","l":"Acidovorax sp. RAC01","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A1842533","Acidovorax sp. RAC01"]]},{"id":"NCBITaxon:1842534","l":"Sinorhizobium sp. RAC02","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A1842534","Sinorhizobium sp. RAC02"]]},{"id":"NCBITaxon:1842535","l":"Blastomonas sp. RAC04","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A1842535","Blastomonas sp. RAC04"]]},{"id":"NCBITaxon:1842536","l":"Agrobacterium sp. RAC06","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A1842536","Agrobacterium sp. RAC06"]]},{"id":"NCBITaxon:1843237","l":"Sphingomonas prati","na":1,"nb":1,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A1843237","Sphingomonas prati"]]},{"id":"NCBITaxon:1843580","l":"Xanthomonas floridensis","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A1843580","Xanthomonas floridensis"]]},{"id":"NCBITaxon:1843581","l":"Xanthomonas nasturtii","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A1843581","Xanthomonas nasturtii"]]},{"id":"NCBITaxon:1847949","l":"Saccharopolyspora spongiae","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1847949","Saccharopolyspora spongiae"]]},{"id":"NCBITaxon:1854496","l":"Microvirga soli","na":1,"nb":1,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A1854496","Microvirga soli"]]},{"id":"NCBITaxon:185678","l":"Amycolatopsis viridis","na":1,"nb":1,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A185678","Amycolatopsis viridis"]]},{"id":"NCBITaxon:185950","l":"Sphingomonas faeni","na":1,"nb":1,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["NCBITaxon%3A185950","Sphingomonas faeni"]]},{"id":"NCBITaxon:186022","l":"Thalassionema frauenfeldii","na":1,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A186022","Thalassionema frauenfeldii"]]},{"id":"NCBITaxon:1862160","l":"Marinirhabdus citrea","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A1862160","Marinirhabdus citrea"]]},{"id":"NCBITaxon:1867933","l":"Aggregatibacter pneumotropica (nom. nud.)","na":1,"nb":1,"a":[["head-bto-0000282.html","head"]],"b":[["NCBITaxon%3A1867933","Aggregatibacter pneumotropica (nom. nud.)"]]},{"id":"NCBITaxon:1869214","l":"Rheinheimera sp.","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1869214","Rheinheimera sp."]]},{"id":"NCBITaxon:1869344","l":"Curtobacterium sp.","na":1,"nb":1,"a":[["lab-synthesis-habitatmech-bacdive-0e92e77cd4.html","Lab-synthesis"]],"b":[["NCBITaxon%3A1869344","Curtobacterium sp."]]},{"id":"NCBITaxon:1870902","l":"Leifsonia sp.","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["NCBITaxon%3A1870902","Leifsonia sp."]]},{"id":"NCBITaxon:1871025","l":"Ndongobacter massiliensis","na":1,"nb":1,"a":[["kidney-bto-0000671.html","kidney"]],"b":[["NCBITaxon%3A1871025","Ndongobacter massiliensis"]]},{"id":"NCBITaxon:1871043","l":"Variovorax sp.","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["NCBITaxon%3A1871043","Variovorax sp."]]},{"id":"NCBITaxon:1871052","l":"Afipia sp.","na":1,"nb":1,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["NCBITaxon%3A1871052","Afipia sp."]]},{"id":"NCBITaxon:1871066","l":"Mesorhizobium sp.","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["NCBITaxon%3A1871066","Mesorhizobium sp."]]},{"id":"NCBITaxon:1871068","l":"Phyllobacteriaceae bacterium","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A1871068","Phyllobacteriaceae bacterium"]]},{"id":"NCBITaxon:1871086","l":"Brevundimonas sp.","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A1871086","Brevundimonas sp."]]},{"id":"NCBITaxon:1871328","l":"Kocuria sp.","na":1,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A1871328","Kocuria sp."]]},{"id":"NCBITaxon:1871622","l":"Oceanobacillus sp.","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1871622","Oceanobacillus sp."]]},{"id":"NCBITaxon:1872094","l":"Acetobacterium sp.","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A1872094","Acetobacterium sp."]]},{"id":"NCBITaxon:1872138","l":"Actinophytocola sp.","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A1872138","Actinophytocola sp."]]},{"id":"NCBITaxon:1872412","l":"Agarivorans sp.","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A1872412","Agarivorans sp."]]},{"id":"NCBITaxon:1872416","l":"Agreia sp.","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1872416","Agreia sp."]]},{"id":"NCBITaxon:1872578","l":"Aquabacterium sp.","na":1,"nb":1,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["NCBITaxon%3A1872578","Aquabacterium sp."]]},{"id":"NCBITaxon:1872635","l":"Arenimonas sp.","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A1872635","Arenimonas sp."]]},{"id":"NCBITaxon:187303","l":"Methylocystis hydrogenophila","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A187303","Methylocystis hydrogenophila"]]},{"id":"NCBITaxon:1873459","l":"Blastococcus sp.","na":1,"nb":1,"a":[["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["NCBITaxon%3A1873459","Blastococcus sp."]]},{"id":"NCBITaxon:1873498","l":"Hafnia sp.","na":1,"nb":1,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A1873498","Hafnia sp."]]},{"id":"NCBITaxon:1876758","l":"Gluconobacter sp.","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A1876758","Gluconobacter sp."]]},{"id":"NCBITaxon:1879320","l":"Ruegeria sp.","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A1879320","Ruegeria sp."]]},{"id":"NCBITaxon:1880915","l":"Frigoribacterium sp.","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1880915","Frigoribacterium sp."]]},{"id":"NCBITaxon:1881060","l":"Clostridium sp. USBA 49","na":1,"nb":1,"a":[["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"]],"b":[["NCBITaxon%3A1881060","Clostridium sp. USBA 49"]]},{"id":"NCBITaxon:1882747","l":"Afipia sp. GAS231","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1882747","Afipia sp. GAS231"]]},{"id":"NCBITaxon:1882748","l":"Beijerinckia sp. 28-YEA-48","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1882748","Beijerinckia sp. 28-YEA-48"]]},{"id":"NCBITaxon:1882749","l":"Opitutus sp. GAS368","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1882749","Opitutus sp. GAS368"]]},{"id":"NCBITaxon:1882750","l":"Burkholderia sp. GAS332","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1882750","Burkholderia sp. GAS332"]]},{"id":"NCBITaxon:1882751","l":"Paenibacillus sp. GP183","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1882751","Paenibacillus sp. GP183"]]},{"id":"NCBITaxon:1882752","l":"Singulisphaera sp. GP187","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1882752","Singulisphaera sp. GP187"]]},{"id":"NCBITaxon:1882830","l":"Rhizobiales bacterium GAS191","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1882830","Rhizobiales bacterium GAS191"]]},{"id":"NCBITaxon:1882831","l":"Verrucomicrobium sp. GAS474","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1882831","Verrucomicrobium sp. GAS474"]]},{"id":"NCBITaxon:1882832","l":"Paenibacillaceae bacterium GAS479","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1882832","Paenibacillaceae bacterium GAS479"]]},{"id":"NCBITaxon:1882833","l":"Frankineae bacterium MT45","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1882833","Frankineae bacterium MT45"]]},{"id":"NCBITaxon:1883105","l":"Nonomuraea sp.","na":1,"nb":1,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["NCBITaxon%3A1883105","Nonomuraea sp."]]},{"id":"NCBITaxon:1884310","l":"Rhodobacter sp. 24-YEA-8","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1884310","Rhodobacter sp. 24-YEA-8"]]},{"id":"NCBITaxon:1884351","l":"Rhizobiales bacterium GAS188","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1884351","Rhizobiales bacterium GAS188"]]},{"id":"NCBITaxon:1884352","l":"Rhizobiales bacterium GAS113","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1884352","Rhizobiales bacterium GAS113"]]},{"id":"NCBITaxon:1884992","l":"Cumulibacter manganitolerans","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A1884992","Cumulibacter manganitolerans"]]},{"id":"NCBITaxon:188541","l":"Stellarima microtrias","na":1,"nb":1,"a":[["saline-water-envo-00002010.html","saline water"]],"b":[["NCBITaxon%3A188541","Stellarima microtrias"]]},{"id":"NCBITaxon:188626","l":"Dermacoccus sp. Ellin185","na":1,"nb":1,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["NCBITaxon%3A188626","Dermacoccus sp. Ellin185"]]},{"id":"NCBITaxon:1888168","l":"Curvibacter sp.","na":1,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A1888168","Curvibacter sp."]]},{"id":"NCBITaxon:1890675","l":"Herbaspirillum sp.","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A1890675","Herbaspirillum sp."]]},{"id":"NCBITaxon:1891233","l":"Dysgonomonas sp.","na":1,"nb":1,"a":[["protist-associated-environment-habitatmech-gold-eee7408afd.html","protist-associated environment"]],"b":[["NCBITaxon%3A1891233","Dysgonomonas sp."]]},{"id":"NCBITaxon:1891630","l":"Rathayibacter sp.","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1891630","Rathayibacter sp."]]},{"id":"NCBITaxon:1895005","l":"Alteromonadales bacterium BS08","na":1,"nb":1,"a":[["sound-envo-00000393.html","sound"]],"b":[["NCBITaxon%3A1895005","Alteromonadales bacterium BS08"]]},{"id":"NCBITaxon:1895664","l":"Halanaerobium sp.","na":1,"nb":1,"a":[["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["NCBITaxon%3A1895664","Halanaerobium sp."]]},{"id":"NCBITaxon:189685","l":"uncultured Paracoccus sp.","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A189685","uncultured Paracoccus sp."]]},{"id":"NCBITaxon:1898203","l":"Lachnospiraceae bacterium","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1898203","Lachnospiraceae bacterium"]]},{"id":"NCBITaxon:1898979","l":"Sodalis sp. (in: enterobacteria)","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1898979","Sodalis sp. (in: enterobacteria)"]]},{"id":"NCBITaxon:1899569","l":"Spirosoma sp.","na":1,"nb":1,"a":[["air-conditioning-unit-envo-00002874.html","air conditioning unit"]],"b":[["NCBITaxon%3A1899569","Spirosoma sp."]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":1,"nb":1,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A1901","Streptomyces clavuligerus"]]},{"id":"NCBITaxon:1902579","l":"Candidatus Tokpelaia hoelldobleri","na":1,"nb":1,"a":[["gut-epithelium-bto-0000956.html","gut epithelium"]],"b":[["NCBITaxon%3A1902579","Candidatus Tokpelaia hoelldobleri"]]},{"id":"NCBITaxon:1903071","l":"Sulfitobacter sp.","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A1903071","Sulfitobacter sp."]]},{"id":"NCBITaxon:190308","l":"Shewanella schlegeliana","na":1,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A190308","Shewanella schlegeliana"]]},{"id":"NCBITaxon:1904254","l":"Hydrogenophaga sp.","na":1,"nb":1,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"]],"b":[["NCBITaxon%3A1904254","Hydrogenophaga sp."]]},{"id":"NCBITaxon:190655","l":"Legionella busanensis","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A190655","Legionella busanensis"]]},{"id":"NCBITaxon:1906666","l":"Thermoplasmata archaeon","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A1906666","Thermoplasmata archaeon"]]},{"id":"NCBITaxon:1907575","l":"Jatrophihabitans sp. GAS493","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1907575","Jatrophihabitans sp. GAS493"]]},{"id":"NCBITaxon:1908203","l":"uncultured Methanomethylophilus sp.","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1908203","uncultured Methanomethylophilus sp."]]},{"id":"NCBITaxon:190967","l":"","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A190967","Desulfofundulus solfataricus"]]},{"id":"NCBITaxon:191302","l":"Devosia neptuniae","na":1,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A191302","Devosia neptuniae"]]},{"id":"NCBITaxon:191564","l":"Nonlabens xylanidelens","na":1,"nb":1,"a":[["cove-envo-00000138.html","cove"]],"b":[["NCBITaxon%3A191564","Nonlabens xylanidelens"]]},{"id":"NCBITaxon:1916082","l":"Alteromonadaceae bacterium","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A1916082","Alteromonadaceae bacterium"]]},{"id":"NCBITaxon:1918640","l":"Streptacidiphilus sp.","na":1,"nb":1,"a":[["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["NCBITaxon%3A1918640","Streptacidiphilus sp."]]},{"id":"NCBITaxon:1922205","l":"Thalassobacillus sp.","na":1,"nb":1,"a":[["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["NCBITaxon%3A1922205","Thalassobacillus sp."]]},{"id":"NCBITaxon:1926289","l":"Herminiimonas sp.","na":1,"nb":1,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["NCBITaxon%3A1926289","Herminiimonas sp."]]},{"id":"NCBITaxon:1926584","l":"Nitrincola sp.","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A1926584","Nitrincola sp."]]},{"id":"NCBITaxon:1926630","l":"Pseudoblastomonas halimionae","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A1926630","Pseudoblastomonas halimionae"]]},{"id":"NCBITaxon:1930901","l":"Spiribacter sp.","na":1,"nb":1,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["NCBITaxon%3A1930901","Spiribacter sp."]]},{"id":"NCBITaxon:193108","l":"Methylocystis sp. M42/1","na":1,"nb":1,"a":[["surface-water-envo-00002042.html","surface water"]],"b":[["NCBITaxon%3A193108","Methylocystis sp. M42/1"]]},{"id":"NCBITaxon:1938638","l":"Clostridiaceae bacterium JGI 000176CP_B01","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938638","Clostridiaceae bacterium JGI 000176CP_B01"]]},{"id":"NCBITaxon:1938639","l":"Clostridiaceae bacterium JGI 000176CP_E08","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938639","Clostridiaceae bacterium JGI 000176CP_E08"]]},{"id":"NCBITaxon:1938641","l":"Clostridiales bacterium JGI 000170CP_A02","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938641","Clostridiales bacterium JGI 000170CP_A02"]]},{"id":"NCBITaxon:1938642","l":"Clostridiales bacterium JGI 000170CP_C01","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938642","Clostridiales bacterium JGI 000170CP_C01"]]},{"id":"NCBITaxon:1938643","l":"Clostridiales bacterium JGI 000170CP_C03","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938643","Clostridiales bacterium JGI 000170CP_C03"]]},{"id":"NCBITaxon:1938647","l":"Clostridiales bacterium JGI 000176CP_B07","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938647","Clostridiales bacterium JGI 000176CP_B07"]]},{"id":"NCBITaxon:1938649","l":"Clostridiales bacterium JGI 000176CP_E06","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938649","Clostridiales bacterium JGI 000176CP_E06"]]},{"id":"NCBITaxon:1938652","l":"Lachnospiraceae bacterium JGI 000170CP_F01","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938652","Lachnospiraceae bacterium JGI 000170CP_F01"]]},{"id":"NCBITaxon:1938653","l":"Ruminococcaceae bacterium JGI 000176CP_B03","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938653","Ruminococcaceae bacterium JGI 000176CP_B03"]]},{"id":"NCBITaxon:1938739","l":"Alkaliphilus sp. JGI 000170CP_B06","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938739","Alkaliphilus sp. JGI 000170CP_B06"]]},{"id":"NCBITaxon:1938743","l":"Bacillus sp. JKS001846","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A1938743","Bacillus sp. JKS001846"]]},{"id":"NCBITaxon:1938747","l":"Burkholderia sp. JKS000303","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1938747","Burkholderia sp. JKS000303"]]},{"id":"NCBITaxon:1938748","l":"Clostridium sp. JGI 000170CP_A06","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938748","Clostridium sp. JGI 000170CP_A06"]]},{"id":"NCBITaxon:1938750","l":"Clostridium sp. JGI 000170CP_E05","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938750","Clostridium sp. JGI 000170CP_E05"]]},{"id":"NCBITaxon:1938752","l":"Comamonas sp. JGI 000176CP_D06","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938752","Comamonas sp. JGI 000176CP_D06"]]},{"id":"NCBITaxon:1938795","l":"Pantoea sp. JKS000250","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A1938795","Pantoea sp. JKS000250"]]},{"id":"NCBITaxon:1938820","l":"Serratia sp. JKS000199","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A1938820","Serratia sp. JKS000199"]]},{"id":"NCBITaxon:1938824","l":"Serratia sp. JKS296","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A1938824","Serratia sp. JKS296"]]},{"id":"NCBITaxon:1938825","l":"Spirosoma sp. JGI 000178CP_D11","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938825","Spirosoma sp. JGI 000178CP_D11"]]},{"id":"NCBITaxon:1938826","l":"Streptococcus sp. JGI 000170CP_B04","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938826","Streptococcus sp. JGI 000170CP_B04"]]},{"id":"NCBITaxon:1938829","l":"Streptococcus sp. JGI 000170CP_G01","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938829","Streptococcus sp. JGI 000170CP_G01"]]},{"id":"NCBITaxon:1938864","l":"Syntrophomonas sp. JGI 000170CP_G06","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938864","Syntrophomonas sp. JGI 000170CP_G06"]]},{"id":"NCBITaxon:1938865","l":"Syntrophomonas sp. JGI 000170CP_C07","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938865","Syntrophomonas sp. JGI 000170CP_C07"]]},{"id":"NCBITaxon:1938867","l":"Alkaliphilus sp. JGI 000170CP_H07","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938867","Alkaliphilus sp. JGI 000170CP_H07"]]},{"id":"NCBITaxon:1938868","l":"Clostridium sp. JGI 000170CP_A08","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938868","Clostridium sp. JGI 000170CP_A08"]]},{"id":"NCBITaxon:1938869","l":"Enterobacteriaceae bacterium JKS000233","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A1938869","Enterobacteriaceae bacterium JKS000233"]]},{"id":"NCBITaxon:1938870","l":"Candidatus Pantoea floridensis","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A1938870","Candidatus Pantoea floridensis"]]},{"id":"NCBITaxon:1938887","l":"Fastidiosipila sp. JGI 000176CP_A02","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938887","Fastidiosipila sp. JGI 000176CP_A02"]]},{"id":"NCBITaxon:1940240","l":"Wohlfahrtiimonas populi","na":1,"nb":1,"a":[["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["NCBITaxon%3A1940240","Wohlfahrtiimonas populi"]]},{"id":"NCBITaxon:1940617","l":"Angustibacter speluncae","na":1,"nb":1,"a":[["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["NCBITaxon%3A1940617","Angustibacter speluncae"]]},{"id":"NCBITaxon:1945871","l":"Hallerella porci","na":1,"nb":1,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A1945871","Hallerella porci"]]},{"id":"NCBITaxon:1945874","l":"Fibrobacter sp. UWB16","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1945874","Fibrobacter sp. UWB16"]]},{"id":"NCBITaxon:1945883","l":"Dehalococcoidia bacterium SCGC AG-206-J22","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A1945883","Dehalococcoidia bacterium SCGC AG-206-J22"]]},{"id":"NCBITaxon:1945884","l":"Olsenella sp. KH1P3","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1945884","Olsenella sp. KH1P3"]]},{"id":"NCBITaxon:1946","l":"Streptomyces kasugaensis","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A1946","Streptomyces kasugaensis"]]},{"id":"NCBITaxon:1955624","l":"Propionicimonas ferrireducens","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A1955624","Propionicimonas ferrireducens"]]},{"id":"NCBITaxon:1955637","l":"Candidatus Gracilibacteria bacterium JGI MDM2 000217CP-N10","na":1,"nb":1,"a":[["drinking-water-envo-00003064.html","drinking water"]],"b":[["NCBITaxon%3A1955637","Candidatus Gracilibacteria bacterium JGI MDM2 000217CP-N10"]]},{"id":"NCBITaxon:1955672","l":"Candidatus Omnitrophica bacterium JGI MDM2 000217CP-F19","na":1,"nb":1,"a":[["drinking-water-envo-00003064.html","drinking water"]],"b":[["NCBITaxon%3A1955672","Candidatus Omnitrophica bacterium JGI MDM2 000217CP-F19"]]},{"id":"NCBITaxon:1955673","l":"Candidatus Omnitrophica bacterium JGI MDM2 000217CP-I15","na":1,"nb":1,"a":[["drinking-water-envo-00003064.html","drinking water"]],"b":[["NCBITaxon%3A1955673","Candidatus Omnitrophica bacterium JGI MDM2 000217CP-I15"]]},{"id":"NCBITaxon:1955674","l":"Candidatus Omnitrophica bacterium JGI MDM2 000217CP-N5","na":1,"nb":1,"a":[["drinking-water-envo-00003064.html","drinking water"]],"b":[["NCBITaxon%3A1955674","Candidatus Omnitrophica bacterium JGI MDM2 000217CP-N5"]]},{"id":"NCBITaxon:1955675","l":"Candidatus Omnitrophica bacterium JGI MDM2 000217CP-K11","na":1,"nb":1,"a":[["drinking-water-envo-00003064.html","drinking water"]],"b":[["NCBITaxon%3A1955675","Candidatus Omnitrophica bacterium JGI MDM2 000217CP-K11"]]},{"id":"NCBITaxon:195913","l":"Loktanella salsilacus","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A195913","Loktanella salsilacus"]]},{"id":"NCBITaxon:1960093","l":"Rodentibacter sp.","na":1,"nb":1,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["NCBITaxon%3A1960093","Rodentibacter sp."]]},{"id":"NCBITaxon:1960103","l":"Listeria sp.","na":1,"nb":1,"a":[["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A1960103","Listeria sp."]]},{"id":"NCBITaxon:1961642","l":"Chryseobacterium salipaludis","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A1961642","Chryseobacterium salipaludis"]]},{"id":"NCBITaxon:1962263","l":"Clostridium tepidum","na":1,"nb":1,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["NCBITaxon%3A1962263","Clostridium tepidum"]]},{"id":"NCBITaxon:196490","l":"Bradyrhizobium sp. Ai1a-2","na":1,"nb":1,"a":[["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A196490","Bradyrhizobium sp. Ai1a-2"]]},{"id":"NCBITaxon:1965334","l":"Cystobacter sp.","na":1,"nb":1,"a":[["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["NCBITaxon%3A1965334","Cystobacter sp."]]},{"id":"NCBITaxon:196600","l":"Vibrio vulnificus YJ016","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A196600","Vibrio vulnificus YJ016"]]},{"id":"NCBITaxon:1967","l":"Streptomyces kanamyceticus","na":1,"nb":1,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A1967","Streptomyces kanamyceticus"]]},{"id":"NCBITaxon:1970199","l":"Sorangiineae bacterium NIC37A 2","na":1,"nb":1,"a":[["compost-envo-00002170.html","compost"]],"b":[["NCBITaxon%3A1970199","Sorangiineae bacterium NIC37A_2"]]},{"id":"NCBITaxon:1978231","l":"Acidobacteriota bacterium","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A1978231","Acidobacteriota bacterium"]]},{"id":"NCBITaxon:1981331","l":"Pelobacter sp. DSM 2984","na":1,"nb":1,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["NCBITaxon%3A1981331","Pelobacter sp. DSM 2984"]]},{"id":"NCBITaxon:198703","l":"Persephonella hydrogeniphila","na":1,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["NCBITaxon%3A198703","Persephonella hydrogeniphila"]]},{"id":"NCBITaxon:1987382","l":"Spirosoma horti","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A1987382","Spirosoma horti"]]},{"id":"NCBITaxon:198804","l":"Buchnera aphidicola subsp. Schizaphis graminum (strain Sg)","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A198804","Buchnera aphidicola str. Sg (Schizaphis graminum)"]]},{"id":"NCBITaxon:1989","l":"Actinomadura sp.","na":1,"nb":1,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A1989","Actinomadura sp."]]},{"id":"NCBITaxon:200251","l":"Rhodococcus sp. AN-22","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A200251","Rhodococcus sp. AN-22"]]},{"id":"NCBITaxon:200616","l":"Rhodoplanes tepidamans","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A200616","Rhodoplanes tepidamans"]]},{"id":"NCBITaxon:2006849","l":"Xanthomonadales bacterium","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2006849","Lysobacterales bacterium"]]},{"id":"NCBITaxon:2012684","l":"Bacteroidaceae bacterium JGI 000170CP_F02","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A2012684","Bacteroidaceae bacterium JGI 000170CP_F02"]]},{"id":"NCBITaxon:2012733","l":"Dehalococcoidia bacterium SCGC AG-200-A03","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012733","Dehalococcoidia bacterium SCGC AG-200-A03"]]},{"id":"NCBITaxon:2012734","l":"Dehalococcoidia bacterium SCGC AG-200-B03","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012734","Dehalococcoidia bacterium SCGC AG-200-B03"]]},{"id":"NCBITaxon:2012735","l":"Dehalococcoidia bacterium SCGC AG-200-C05","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012735","Dehalococcoidia bacterium SCGC AG-200-C05"]]},{"id":"NCBITaxon:2012736","l":"Dehalococcoidia bacterium SCGC AG-200-E23","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012736","Dehalococcoidia bacterium SCGC AG-200-E23"]]},{"id":"NCBITaxon:2012737","l":"Dehalococcoidia bacterium SCGC AG-200-G19","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012737","Dehalococcoidia bacterium SCGC AG-200-G19"]]},{"id":"NCBITaxon:2012738","l":"Dehalococcoidia bacterium SCGC AG-200-G22","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012738","Dehalococcoidia bacterium SCGC AG-200-G22"]]},{"id":"NCBITaxon:2012739","l":"Dehalococcoidia bacterium SCGC AG-200-K21","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012739","Dehalococcoidia bacterium SCGC AG-200-K21"]]},{"id":"NCBITaxon:2012740","l":"Dehalococcoidia bacterium SCGC AG-205-B13","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012740","Dehalococcoidia bacterium SCGC AG-205-B13"]]},{"id":"NCBITaxon:2012741","l":"Dehalococcoidia bacterium SCGC AG-205-C05","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012741","Dehalococcoidia bacterium SCGC AG-205-C05"]]},{"id":"NCBITaxon:2012742","l":"Dehalococcoidia bacterium SCGC AG-205-C16","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012742","Dehalococcoidia bacterium SCGC AG-205-C16"]]},{"id":"NCBITaxon:2012743","l":"Dehalococcoidia bacterium SCGC AG-205-C19","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012743","Dehalococcoidia bacterium SCGC AG-205-C19"]]},{"id":"NCBITaxon:2012744","l":"Dehalococcoidia bacterium SCGC AG-205-E11","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012744","Dehalococcoidia bacterium SCGC AG-205-E11"]]},{"id":"NCBITaxon:2012745","l":"Dehalococcoidia bacterium SCGC AG-205-F11","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012745","Dehalococcoidia bacterium SCGC AG-205-F11"]]},{"id":"NCBITaxon:2012746","l":"Dehalococcoidia bacterium SCGC AG-205-F19","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012746","Dehalococcoidia bacterium SCGC AG-205-F19"]]},{"id":"NCBITaxon:2012747","l":"Dehalococcoidia bacterium SCGC AG-205-F21","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012747","Dehalococcoidia bacterium SCGC AG-205-F21"]]},{"id":"NCBITaxon:2012749","l":"Dehalococcoidia bacterium SCGC AG-205-G03","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012749","Dehalococcoidia bacterium SCGC AG-205-G03"]]},{"id":"NCBITaxon:2012750","l":"Dehalococcoidia bacterium SCGC AG-205-G09","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012750","Dehalococcoidia bacterium SCGC AG-205-G09"]]},{"id":"NCBITaxon:2012751","l":"Dehalococcoidia bacterium SCGC AG-205-G20","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012751","Dehalococcoidia bacterium SCGC AG-205-G20"]]},{"id":"NCBITaxon:2012752","l":"Dehalococcoidia bacterium SCGC AG-205-I02","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012752","Dehalococcoidia bacterium SCGC AG-205-I02"]]},{"id":"NCBITaxon:2012753","l":"Dehalococcoidia bacterium SCGC AG-205-I03","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012753","Dehalococcoidia bacterium SCGC AG-205-I03"]]},{"id":"NCBITaxon:2012754","l":"Dehalococcoidia bacterium SCGC AG-205-I04","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012754","Dehalococcoidia bacterium SCGC AG-205-I04"]]},{"id":"NCBITaxon:2012755","l":"Dehalococcoidia bacterium SCGC AG-205-I10","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012755","Dehalococcoidia bacterium SCGC AG-205-I10"]]},{"id":"NCBITaxon:2012756","l":"Dehalococcoidia bacterium SCGC AG-205-I13","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012756","Dehalococcoidia bacterium SCGC AG-205-I13"]]},{"id":"NCBITaxon:2022602","l":"Thiorhodococcus sp.","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A2022602","Thiorhodococcus sp."]]},{"id":"NCBITaxon:2024860","l":"Spongiibacter sp.","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A2024860","Spongiibacter sp."]]},{"id":"NCBITaxon:2026715","l":"Pseudobdellovibrionaceae bacterium","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2026715","Pseudobdellovibrionaceae bacterium"]]},{"id":"NCBITaxon:2026725","l":"Chromatiales bacterium","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2026725","Chromatiales bacterium"]]},{"id":"NCBITaxon:2026742","l":"Gemmatimonadota bacterium","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2026742","Gemmatimonadota bacterium"]]},{"id":"NCBITaxon:2026746","l":"Halomonadaceae bacterium","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2026746","Halomonadaceae bacterium"]]},{"id":"NCBITaxon:2026789","l":"Salinisphaeraceae bacterium","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2026789","Salinisphaeraceae bacterium"]]},{"id":"NCBITaxon:2026795","l":"Nitrososphaerota archaeon","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2026795","Nitrososphaerota archaeon"]]},{"id":"NCBITaxon:2026801","l":"Verrucomicrobiales bacterium","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2026801","Verrucomicrobiales bacterium"]]},{"id":"NCBITaxon:202748","l":"Saprospira sp. SS98-5","na":1,"nb":1,"a":[["anaerobic-sludge-blanket-reactor-envo-00002213.html","anaerobic sludge blanket reactor"]],"b":[["NCBITaxon%3A202748","Saprospira sp. SS98-5"]]},{"id":"NCBITaxon:2035108","l":"Flavobacteriaceae bacterium JGI 02_E13","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2035108","Flavobacteriaceae bacterium JGI 02_E13"]]},{"id":"NCBITaxon:2035109","l":"Flavobacteriaceae bacterium JGI 02_G12","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2035109","Flavobacteriaceae bacterium JGI 02_G12"]]},{"id":"NCBITaxon:2035111","l":"Flavobacteriaceae bacterium JGI 02_N12","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2035111","Flavobacteriaceae bacterium JGI 02_N12"]]},{"id":"NCBITaxon:2035112","l":"Flavobacteriaceae bacterium JGI 04_M14","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2035112","Flavobacteriaceae bacterium JGI 04_M14"]]},{"id":"NCBITaxon:2035114","l":"Flavobacteriaceae bacterium JGI 04_M9","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2035114","Flavobacteriaceae bacterium JGI 04_M9"]]},{"id":"NCBITaxon:2035115","l":"Flavobacteriaceae bacterium JGI 04_N11","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2035115","Flavobacteriaceae bacterium JGI 04_N11"]]},{"id":"NCBITaxon:2035116","l":"Flavobacteriaceae bacterium JGI 04_N16","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2035116","Flavobacteriaceae bacterium JGI 04_N16"]]},{"id":"NCBITaxon:2035120","l":"Rhodobacteraceae bacterium JGI 02_G21","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2035120","Rhodobacteraceae bacterium JGI 02_G21"]]},{"id":"NCBITaxon:2035121","l":"Rhodobacteraceae bacterium JGI 02_J20","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2035121","Rhodobacteraceae bacterium JGI 02_J20"]]},{"id":"NCBITaxon:2038117","l":"Actinomadura deserti","na":1,"nb":1,"a":[["transportation-ways-roads-habitatmech-bacdive-1b4071cb1d.html","Transportation-ways-Roads"]],"b":[["NCBITaxon%3A2038117","Actinomadura deserti"]]},{"id":"NCBITaxon:2047734","l":"Paenibacillus azotifigens","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A2047734","Paenibacillus azotifigens"]]},{"id":"NCBITaxon:2052484","l":"Roseateles noduli","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A2052484","Roseateles noduli"]]},{"id":"NCBITaxon:2053930","l":"Xanthomonas prunicola","na":1,"nb":1,"a":[["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["NCBITaxon%3A2053930","Xanthomonas prunicola"]]},{"id":"NCBITaxon:2057004","l":"Paraburkholderia azotifigens","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A2057004","Paraburkholderia azotifigens"]]},{"id":"NCBITaxon:2057246","l":"Acidipropionibacterium virtanenii","na":1,"nb":1,"a":[["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A2057246","Acidipropionibacterium virtanenii"]]},{"id":"NCBITaxon:205913","l":"Bifidobacterium longum DJO10A","na":1,"nb":1,"a":[["breast-bto-0000149.html","breast"]],"b":[["NCBITaxon%3A205913","Bifidobacterium longum DJO10A"]]},{"id":"NCBITaxon:205918","l":"Pseudomonas syringae pv. syringae B728a","na":1,"nb":1,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A205918","Pseudomonas syringae pv. syringae B728a"]]},{"id":"NCBITaxon:205920","l":"Ehrlichia chaffeensis str. Arkansas","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A205920","Ehrlichia chaffeensis str. Arkansas"]]},{"id":"NCBITaxon:206394","l":"Paenibacillus sp. YK5","na":1,"nb":1,"a":[["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A206394","Paenibacillus sp. YK5"]]},{"id":"NCBITaxon:206665","l":"Desulfonauticus submarinus","na":1,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["NCBITaxon%3A206665","Desulfonauticus submarinus"]]},{"id":"NCBITaxon:207949","l":"Bermanella marisrubri","na":1,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["NCBITaxon%3A207949","Bermanella marisrubri"]]},{"id":"NCBITaxon:207954","l":"Neptuniibacter caesariensis","na":1,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["NCBITaxon%3A207954","Neptuniibacter caesariensis"]]},{"id":"NCBITaxon:208963","l":"Pseudomonas aeruginosa (strain UCBPP-PA14)","na":1,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A208963","Pseudomonas aeruginosa UCBPP-PA14"]]},{"id":"NCBITaxon:2093377","l":"Sorangium sp.","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A2093377","Sorangium sp."]]},{"id":"NCBITaxon:2094151","l":"Paramuribaculum intestinale","na":1,"nb":1,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"]],"b":[["NCBITaxon%3A2094151","Paramuribaculum intestinale"]]},{"id":"NCBITaxon:2094236","l":"Candidatus Microgenomates bacterium JGI MDM2 000217CP-F20","na":1,"nb":1,"a":[["drinking-water-envo-00003064.html","drinking water"]],"b":[["NCBITaxon%3A2094236","Candidatus Microgenomates bacterium JGI MDM2 000217CP-F20"]]},{"id":"NCBITaxon:2099376","l":"Desulforhopalus sp.","na":1,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A2099376","Desulforhopalus sp."]]},{"id":"NCBITaxon:210007","l":"Streptococcus mutans serotype c (strain ATCC 700610 / UA159)","na":1,"nb":1,"a":[["tooth-bto-0000397.html","tooth"]],"b":[["NCBITaxon%3A210007","Streptococcus mutans UA159"]]},{"id":"NCBITaxon:2100533","l":"Sphingobacterium haloxyli","na":1,"nb":1,"a":[["endosphere-habitatmech-bacdive-3e4680f074.html","Endosphere"]],"b":[["NCBITaxon%3A2100533","Sphingobacterium haloxyli"]]},{"id":"NCBITaxon:2109933","l":"Alsobacter soli","na":1,"nb":1,"a":[["paddy-ricefield-habitatmech-bacdive-6e3154acd8.html","Paddy-Ricefield"]],"b":[["NCBITaxon%3A2109933","Alsobacter soli"]]},{"id":"NCBITaxon:211457","l":"uncultured Allobosea sp.","na":1,"nb":1,"a":[["watercourse-envo-00000029.html","watercourse"]],"b":[["NCBITaxon%3A211457","uncultured Allobosea sp."]]},{"id":"NCBITaxon:2125990","l":"Pseudodesulfovibrio hydrargyri","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A2125990","Pseudodesulfovibrio hydrargyri"]]},{"id":"NCBITaxon:212667","l":"Vibrio fortis","na":1,"nb":1,"a":[["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["NCBITaxon%3A212667","Vibrio fortis"]]},{"id":"NCBITaxon:212717","l":"Clostridium tetani E88","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A212717","Clostridium tetani E88"]]},{"id":"NCBITaxon:2133958","l":"Nocardioides currus","na":1,"nb":1,"a":[["air-conditioning-unit-envo-00002874.html","air conditioning unit"]],"b":[["NCBITaxon%3A2133958","Nocardioides currus"]]},{"id":"NCBITaxon:2136097","l":"Deinococcus rufus","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A2136097","Deinococcus rufus"]]},{"id":"NCBITaxon:213804","l":"Janthinobacterium sp. J3","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A213804","Janthinobacterium sp. J3"]]},{"id":"NCBITaxon:215580","l":"","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A215580","Caldimonas thermodepolymerans"]]},{"id":"NCBITaxon:215918","l":"Mycobacterium sp. IP20010947","na":1,"nb":1,"a":[["water-body-envo-00000063.html","water body"]],"b":[["NCBITaxon%3A215918","Mycobacterium sp. IP20010947"]]},{"id":"NCBITaxon:2161","l":"Methanobacterium bryantii","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A2161","Methanobacterium bryantii"]]},{"id":"NCBITaxon:2161673","l":"Roseicyclus marinus","na":1,"nb":1,"a":[["simulated-communities-habitatmech-bacdive-5fa4710934.html","Simulated-communities"]],"b":[["NCBITaxon%3A2161673","Roseicyclus marinus"]]},{"id":"NCBITaxon:216389","l":"Dehalococcoides mccartyi BAV1","na":1,"nb":1,"a":[["road-envo-00000064.html","road"]],"b":[["NCBITaxon%3A216389","Dehalococcoides mccartyi BAV1"]]},{"id":"NCBITaxon:2164","l":"Methanobacterium sp.","na":1,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"]],"b":[["NCBITaxon%3A2164","Methanobacterium sp."]]},{"id":"NCBITaxon:216599","l":"Shigella sonnei 53G","na":1,"nb":1,"a":[["gut-mucosa-bto-0000546.html","gut mucosa"]],"b":[["NCBITaxon%3A216599","Shigella sonnei 53G"]]},{"id":"NCBITaxon:216895","l":"Vibrio vulnificus CMCP6","na":1,"nb":1,"a":[["hela-cell-bto-0000567.html","HeLa cell"]],"b":[["NCBITaxon%3A216895","Vibrio vulnificus CMCP6"]]},{"id":"NCBITaxon:216903","l":"","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A216903","Epilithonimonas mollis"]]},{"id":"NCBITaxon:2171","l":"Methanobacterium palustre","na":1,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A2171","Methanobacterium palustre"]]},{"id":"NCBITaxon:217139","l":"uncultured Acetobacterium sp.","na":1,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A217139","uncultured Acetobacterium sp."]]},{"id":"NCBITaxon:2177","l":"","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A2177","Methanohalophilus halophilus"]]},{"id":"NCBITaxon:2181","l":"Methanothermus sociabilis","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A2181","Methanothermus sociabilis"]]},{"id":"NCBITaxon:2183934","l":"Marinospirillum sp.","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A2183934","Marinospirillum sp."]]},{"id":"NCBITaxon:2183988","l":"Idiomarina sp. 017G","na":1,"nb":1,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["NCBITaxon%3A2183988","Idiomarina sp. 017G"]]},{"id":"NCBITaxon:219572","l":"Pseudomonas antarctica","na":1,"nb":1,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A219572","Pseudomonas antarctica"]]},{"id":"NCBITaxon:2219663","l":"Streptacidiphilus pinicola","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A2219663","Streptacidiphilus pinicola"]]},{"id":"NCBITaxon:2231721","l":"Muricoccus radiodurans","na":1,"nb":1,"a":[["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A2231721","Muricoccus radiodurans"]]},{"id":"NCBITaxon:223556","l":"Deinococcus indicus","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A223556","Deinococcus indicus"]]},{"id":"NCBITaxon:223786","l":"Hydrogenimonas thermophila","na":1,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["NCBITaxon%3A223786","Hydrogenimonas thermophila"]]},{"id":"NCBITaxon:223788","l":"Balnearium lithotrophicum","na":1,"nb":1,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["NCBITaxon%3A223788","Balnearium lithotrophicum"]]},{"id":"NCBITaxon:224013","l":"Nostoc piscinale CENA21","na":1,"nb":1,"a":[["heterocyst-bto-0000600.html","heterocyst"]],"b":[["NCBITaxon%3A224013","Nostoc piscinale CENA21"]]},{"id":"NCBITaxon:224915","l":"Buchnera aphidicola subsp. Baizongia pistaciae (strain Bp)","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A224915","Buchnera aphidicola str. Bp (Baizongia pistaciae)"]]},{"id":"NCBITaxon:2250708","l":"Pseudogemmobacter bohemicus","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A2250708","Pseudogemmobacter bohemicus"]]},{"id":"NCBITaxon:227605","l":"Methylocella tundrae","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A227605","Methylocella tundrae"]]},{"id":"NCBITaxon:227865","l":"Cerasibacillus quisquiliarum","na":1,"nb":1,"a":[["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"]],"b":[["NCBITaxon%3A227865","Cerasibacillus quisquiliarum"]]},{"id":"NCBITaxon:2283","l":"Acidianus ambivalens","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A2283","Acidianus ambivalens"]]},{"id":"NCBITaxon:228410","l":"Nitrosomonas europaea ATCC 19718","na":1,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A228410","Nitrosomonas europaea ATCC 19718"]]},{"id":"NCBITaxon:228973","l":"","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A228973","Xylanimonas ulmi"]]},{"id":"NCBITaxon:229919","l":"Anaerolinea thermolimosa","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A229919","Anaerolinea thermolimosa"]]},{"id":"NCBITaxon:229920","l":"Leptolinea tardivitalis","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A229920","Leptolinea tardivitalis"]]},{"id":"NCBITaxon:229921","l":"Levilinea saccharolytica","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A229921","Levilinea saccharolytica"]]},{"id":"NCBITaxon:230089","l":"Photorhabdus thracensis","na":1,"nb":1,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A230089","Photorhabdus thracensis"]]},{"id":"NCBITaxon:230105","l":"","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A40223","Methylophaga thalassica"]]},{"id":"NCBITaxon:232537","l":"Rhodoluna limnophila","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A232537","Rhodoluna limnophila"]]},{"id":"NCBITaxon:233101","l":"Methylobacillus pratensis","na":1,"nb":1,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A233101","Methylobacillus pratensis"]]},{"id":"NCBITaxon:233413","l":"Mycobacterium bovis (strain ATCC BAA-935 / AF2122/97)","na":1,"nb":1,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["NCBITaxon%3A233413","Mycobacterium tuberculosis variant bovis AF2122/97"]]},{"id":"NCBITaxon:2338647","l":"Ottowia konkukae","na":1,"nb":1,"a":[["food-spoiled-foodon-00003366.html","food (spoiled)"]],"b":[["NCBITaxon%3A2338647","Ottowia konkukae"]]},{"id":"NCBITaxon:234621","l":"Rhodococcus erythropolis PR4","na":1,"nb":1,"a":[["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A234621","Rhodococcus erythropolis PR4"]]},{"id":"NCBITaxon:234826","l":"Anaplasma marginale str. St. Maries","na":1,"nb":1,"a":[["midgut-bto-0000863.html","midgut"]],"b":[["NCBITaxon%3A234826","Anaplasma marginale str. St. Maries"]]},{"id":"NCBITaxon:235140","l":"Gemmata sp. Wa1-1","na":1,"nb":1,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A235140","Gemmata sp. Wa1-1"]]},{"id":"NCBITaxon:236097","l":"Alcanivorax sp. DG881","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A236097","Alcanivorax sp. DG881"]]},{"id":"NCBITaxon:236101","l":"Marinobacter sp. DG979","na":1,"nb":1,"a":[["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["NCBITaxon%3A236101","Marinobacter sp. DG979"]]},{"id":"NCBITaxon:2364647","l":"Pantoea piersonii","na":1,"nb":1,"a":[["surface-swab-habitatmech-bacdive-6911460a4a.html","Surface-swab"]],"b":[["NCBITaxon%3A2364647","Pantoea piersonii"]]},{"id":"NCBITaxon:237611","l":"Sphingomonas abaci","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A237611","Sphingomonas abaci"]]},{"id":"NCBITaxon:239498","l":"Tsukamurella pseudospumae","na":1,"nb":1,"a":[["foam-habitatmech-bacdive-df2f59b773.html","Foam"]],"b":[["NCBITaxon%3A239498","Tsukamurella pseudospumae"]]},{"id":"NCBITaxon:239745","l":"uncultured Desulfobulbus sp.","na":1,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"]],"b":[["NCBITaxon%3A239745","uncultured Desulfobulbus sp."]]},{"id":"NCBITaxon:240169","l":"","na":1,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["NCBITaxon%3A240169","Desulfurobacterium atlanticum"]]},{"id":"NCBITaxon:241145","l":"Salegentibacter holothuriorum","na":1,"nb":1,"a":[["sea-envo-00000016.html","sea"]],"b":[["NCBITaxon%3A241145","Salegentibacter holothuriorum"]]},{"id":"NCBITaxon:242161","l":"Candidatus Paraburkholderia calva","na":1,"nb":1,"a":[["mesophyll-bto-0000858.html","mesophyll"]],"b":[["NCBITaxon%3A242161","Candidatus Paraburkholderia calva"]]},{"id":"NCBITaxon:242163","l":"Candidatus Burkholderia verschuerenii","na":1,"nb":1,"a":[["mesophyll-bto-0000858.html","mesophyll"]],"b":[["NCBITaxon%3A242163","Candidatus Burkholderia verschuerenii"]]},{"id":"NCBITaxon:242619","l":"Porphyromonas gingivalis (strain ATCC BAA-308 / W83)","na":1,"nb":1,"a":[["gingiva-bto-0000519.html","gingiva"]],"b":[["NCBITaxon%3A242619","Porphyromonas gingivalis W83"]]},{"id":"NCBITaxon:243243","l":"Mycobacterium avium (strain 104)","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A243243","Mycobacterium avium 104"]]},{"id":"NCBITaxon:243701","l":"Pasteurella caballi","na":1,"nb":1,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["NCBITaxon%3A243701","Pasteurella caballi"]]},{"id":"NCBITaxon:243835","l":"Stenotrophomonas sp. PAMU-2.32","na":1,"nb":1,"a":[["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"]],"b":[["NCBITaxon%3A243835","Stenotrophomonas sp. PAMU-2.32"]]},{"id":"NCBITaxon:243922","l":"Acinetobacter rhizosphaerae","na":1,"nb":1,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["NCBITaxon%3A243922","Acinetobacter rhizosphaerae"]]},{"id":"NCBITaxon:244562","l":"Bradyrhizobium sp. RD5-C2","na":1,"nb":1,"a":[["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A244562","Bradyrhizobium sp. RD5-C2"]]},{"id":"NCBITaxon:245187","l":"","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A245187","Loktanella fryxellensis"]]},{"id":"NCBITaxon:246969","l":"Thermococcus sp. AM4","na":1,"nb":1,"a":[["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A246969","Thermococcus sp. AM4"]]},{"id":"NCBITaxon:247022","l":"","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A247022","Microbulbifer maritimus"]]},{"id":"NCBITaxon:247480","l":"Thermaerobacillus caldiproteolyticus","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A247480","Thermaerobacillus caldiproteolyticus"]]},{"id":"NCBITaxon:2485134","l":"Ochrobactrum sp. LP_5_YM","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A2485134","Ochrobactrum sp. LP_5_YM"]]},{"id":"NCBITaxon:2485135","l":"Pseudomonas sp. LP_4_YM","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A2485135","Pseudomonas sp. LP_4_YM"]]},{"id":"NCBITaxon:2485136","l":"Pseudomonas sp. LP_6_YM","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A2485136","Pseudomonas sp. LP_6_YM"]]},{"id":"NCBITaxon:2485137","l":"Pseudomonas sp. LP_7_YM","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A2485137","Pseudomonas sp. LP_7_YM"]]},{"id":"NCBITaxon:2485138","l":"Pseudomonas sp. LP_8_YM","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A2485138","Pseudomonas sp. LP_8_YM"]]},{"id":"NCBITaxon:2485162","l":"Neorhizobium sp. R1-B","na":1,"nb":1,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A2485162","Neorhizobium sp. R1-B"]]},{"id":"NCBITaxon:2485163","l":"","na":1,"nb":1,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A2485163","Methylocaldum gracile subsp. desertum"]]},{"id":"NCBITaxon:2485164","l":"Bradyrhizobium sp. W","na":1,"nb":1,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A2485164","Bradyrhizobium sp. W"]]},{"id":"NCBITaxon:2485165","l":"Bradyrhizobium sp. R2.2-H","na":1,"nb":1,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A2485165","Bradyrhizobium sp. R2.2-H"]]},{"id":"NCBITaxon:2485170","l":"Granulicella sp. GAS466","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A2485170","Granulicella sp. GAS466"]]},{"id":"NCBITaxon:2485207","l":"Rhodococcus sp. LP_11_YM","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A2485207","Rhodococcus sp. LP_11_YM"]]},{"id":"NCBITaxon:2485208","l":"Rhodococcus sp. LP_3_YM","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A2485208","Rhodococcus sp. LP_3_YM"]]},{"id":"NCBITaxon:249351","l":"","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A249351","Flavobacterium psychrolimnae"]]},{"id":"NCBITaxon:249352","l":"","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A249352","Flavobacterium fryxellicola"]]},{"id":"NCBITaxon:249586","l":"","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A249586","Streptomyces asoensis"]]},{"id":"NCBITaxon:2509153","l":"Rubellimicrobium sp.","na":1,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A2509153","Rubellimicrobium sp."]]},{"id":"NCBITaxon:252230","l":"","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A252230","Nocardioides ganghwensis"]]},{"id":"NCBITaxon:252514","l":"Microbulbifer thermotolerans","na":1,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A252514","Microbulbifer thermotolerans"]]},{"id":"NCBITaxon:252597","l":"","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A252597","Alteromonas litorea"]]},{"id":"NCBITaxon:2527775","l":"Polynucleobacter paneuropaeus","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A2527775","Polynucleobacter paneuropaeus"]]},{"id":"NCBITaxon:253160","l":"","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A253160","Planomicrobium stackebrandtii"]]},{"id":"NCBITaxon:253161","l":"uncultured Methanobrevibacter sp.","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A253161","uncultured Methanobrevibacter sp."]]},{"id":"NCBITaxon:2547395","l":"Paenibacillus piri","na":1,"nb":1,"a":[["transportation-ways-roads-habitatmech-bacdive-1b4071cb1d.html","Transportation-ways-Roads"]],"b":[["NCBITaxon%3A2547395","Paenibacillus piri"]]},{"id":"NCBITaxon:255984","l":"","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A255984","Qipengyuania aquimaris"]]},{"id":"NCBITaxon:258050","l":"","na":1,"nb":1,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A258050","Kitasatospora gansuensis"]]},{"id":"NCBITaxon:258475","l":"Pelotomaculum propionicicum","na":1,"nb":1,"a":[["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"]],"b":[["NCBITaxon%3A258475","Pelotomaculum propionicicum"]]},{"id":"NCBITaxon:2586924","l":"Psychrilyobacter sp.","na":1,"nb":1,"a":[["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A2586924","Psychrilyobacter sp."]]},{"id":"NCBITaxon:2608088","l":"Aliihoeflea sp.","na":1,"nb":1,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"]],"b":[["NCBITaxon%3A2608088","Aliihoeflea sp."]]},{"id":"NCBITaxon:263724","l":"Idiomarina ramblicola","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A263724","Idiomarina ramblicola"]]},{"id":"NCBITaxon:263820","l":"Picrophilus torridus DSM 9790","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A46632","Picrophilus oshimae"]]},{"id":"NCBITaxon:264951","l":"Paecilomyces variotii","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A264951","Paecilomyces variotii"]]},{"id":"NCBITaxon:265883","l":"Hydrogenovibrio thermophilus","na":1,"nb":1,"a":[["in-situ-habitatmech-bacdive-3edb563d49.html","In-situ"]],"b":[["NCBITaxon%3A265883","Hydrogenovibrio thermophilus"]]},{"id":"NCBITaxon:266126","l":"Azonexus caeni","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A266126","Azonexus caeni"]]},{"id":"NCBITaxon:266749","l":"Kaistella jeonii","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A266749","Kaistella jeonii"]]},{"id":"NCBITaxon:267135","l":"Erythrobacter donghaensis","na":1,"nb":1,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["NCBITaxon%3A267135","Erythrobacter donghaensis"]]},{"id":"NCBITaxon:267671","l":"Leptospira interrogans serovar Copenhageni str. Fiocruz L1-130","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A267671","Leptospira interrogans serovar Copenhageni str. Fiocruz L1-130"]]},{"id":"NCBITaxon:268410","l":"Rhodovarius lipocyclicus","na":1,"nb":1,"a":[["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["NCBITaxon%3A268410","Rhodovarius lipocyclicus"]]},{"id":"NCBITaxon:268954","l":"Corynebacterium sp. C12","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A268954","Corynebacterium sp. C12"]]},{"id":"NCBITaxon:269660","l":"Methylobacterium brachiatum","na":1,"nb":1,"a":[["factory-envo-01000536.html","factory"]],"b":[["NCBITaxon%3A269660","Methylobacterium brachiatum"]]},{"id":"NCBITaxon:270374","l":"Marinobacter sp. ELB17","na":1,"nb":1,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A270374","Marinobacter sp. ELB17"]]},{"id":"NCBITaxon:271432","l":"Arthrobacter pigmenti","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A271432","Arthrobacter pigmenti"]]},{"id":"NCBITaxon:2719616","l":"Hymenobacter artigasi","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A2719616","Hymenobacter artigasi"]]},{"id":"NCBITaxon:272556","l":"Aggregatibacter actinomycetemcomitans HK1651","na":1,"nb":1,"a":[["archeological-site-envo-00000564.html","archeological site"]],"b":[["NCBITaxon%3A272556","Aggregatibacter actinomycetemcomitans HK1651"]]},{"id":"NCBITaxon:272560","l":"Burkholderia pseudomallei (strain K96243)","na":1,"nb":1,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A272560","Burkholderia pseudomallei K96243"]]},{"id":"NCBITaxon:272620","l":"Klebsiella pneumoniae subsp. pneumoniae (strain ATCC 700721 / MGH 78578)","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A272620","Klebsiella pneumoniae subsp. pneumoniae MGH 78578"]]},{"id":"NCBITaxon:272621","l":"Lactobacillus acidophilus NCFM","na":1,"nb":1,"a":[["intestinal-mucosa-bto-0000642.html","intestinal mucosa"]],"b":[["NCBITaxon%3A272621","Lactobacillus acidophilus NCFM"]]},{"id":"NCBITaxon:272626","l":"Listeria innocua serovar 6a (strain ATCC BAA-680 / CLIP 11262)","na":1,"nb":1,"a":[["heart-bto-0000562.html","heart"]],"b":[["NCBITaxon%3A272626","Listeria innocua Clip11262"]]},{"id":"NCBITaxon:272942","l":"Rhodobacter capsulatus (strain ATCC BAA-309 / NBRC 16581 / SB1003)","na":1,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A272942","Rhodobacter capsulatus SB 1003"]]},{"id":"NCBITaxon:273035","l":"Spiroplasma kunkelii CR2-3x","na":1,"nb":1,"a":[["mo-b-cell-bto-0003680.html","Mo-B cell"]],"b":[["NCBITaxon%3A273035","Spiroplasma kunkelii CR2-3x"]]},{"id":"NCBITaxon:273251","l":"","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A273251","Paraburkholderia sabiae"]]},{"id":"NCBITaxon:2735894","l":"Hymenobacter caeli","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A2735894","Hymenobacter caeli"]]},{"id":"NCBITaxon:2735895","l":"Flavobacterium gelidicaeli","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A2735895","Flavobacterium gelidicaeli"]]},{"id":"NCBITaxon:2735896","l":"Flavobacterium aeripolare","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A2735896","Flavobacterium aeripolare"]]},{"id":"NCBITaxon:2735899","l":"Frigoriflavimonas asaccharolytica","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A2735899","Frigoriflavimonas asaccharolytica"]]},{"id":"NCBITaxon:2738566","l":"Aerophobetes bacterium JGI MDM2 B17-2-N21","na":1,"nb":1,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["NCBITaxon%3A2738566","Aerophobetes bacterium JGI MDM2 B17-2-N21"]]},{"id":"NCBITaxon:2738689","l":"Omnitrophica bacterium JGI MDM2 000217CP-H20","na":1,"nb":1,"a":[["drinking-water-envo-00003064.html","drinking water"]],"b":[["NCBITaxon%3A2738689","Omnitrophica bacterium JGI MDM2 000217CP-H20"]]},{"id":"NCBITaxon:2738762","l":"Candidatus Woesearchaeota archaeon AG-122-F03","na":1,"nb":1,"a":[["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A2738762","Candidatus Woesearchaeota archaeon AG-122-F03"]]},{"id":"NCBITaxon:2780094","l":"Ramlibacter aquaticus","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A2780094","Ramlibacter aquaticus"]]},{"id":"NCBITaxon:279826","l":"Mesobacillus foraminis","na":1,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["NCBITaxon%3A279826","Mesobacillus foraminis"]]},{"id":"NCBITaxon:279828","l":"Microcella alkaliphila","na":1,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["NCBITaxon%3A279828","Microcella alkaliphila"]]},{"id":"NCBITaxon:280093","l":"Flavobacterium granuli","na":1,"nb":1,"a":[["factory-envo-01000536.html","factory"]],"b":[["NCBITaxon%3A280093","Flavobacterium granuli"]]},{"id":"NCBITaxon:280237","l":"nocardiopsis_rosea","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A280238","Nocardiopsis rhodophaea"]]},{"id":"NCBITaxon:280238","l":"","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A280238","Nocardiopsis rhodophaea"]]},{"id":"NCBITaxon:28045","l":"Mycobacterium celatum","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A28045","Mycobacterium celatum"]]},{"id":"NCBITaxon:280871","l":"Mycolicibacterium llatzerense","na":1,"nb":1,"a":[["central-nervous-system-bto-0000227.html","central nervous system"]],"b":[["NCBITaxon%3A280871","Mycolicibacterium llatzerense"]]},{"id":"NCBITaxon:28121","l":"Butyrivibrio sp.","na":1,"nb":1,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"]],"b":[["NCBITaxon%3A28121","Butyrivibrio sp."]]},{"id":"NCBITaxon:28181","l":"Magnetovibrio blakemorei","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A28181","Magnetovibrio blakemorei"]]},{"id":"NCBITaxon:28210","l":"Chelatococcus asaccharovorans","na":1,"nb":1,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A28210","Chelatococcus asaccharovorans"]]},{"id":"NCBITaxon:283205","l":"Mycobacterium sp. THO100","na":1,"nb":1,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["NCBITaxon%3A283205","Mycobacterium sp. THO100"]]},{"id":"NCBITaxon:283718","l":"Gordonia defluvii","na":1,"nb":1,"a":[["foam-habitatmech-bacdive-df2f59b773.html","Foam"]],"b":[["NCBITaxon%3A283718","Gordonia defluvii"]]},{"id":"NCBITaxon:283878","l":"Leucobacter aridicollis","na":1,"nb":1,"a":[["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["NCBITaxon%3A283878","Leucobacter aridicollis"]]},{"id":"NCBITaxon:284578","l":"","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A284578","Lentibacillus salarius"]]},{"id":"NCBITaxon:284579","l":"Salibacterium salarium","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A284579","Salibacterium salarium"]]},{"id":"NCBITaxon:284580","l":"","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A284580","Bacillus seohaeanensis"]]},{"id":"NCBITaxon:285070","l":"Petrimonas sulfuriphila","na":1,"nb":1,"a":[["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A285070","Petrimonas sulfuriphila"]]},{"id":"NCBITaxon:285444","l":"","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A285444","Streptomyces pseudoechinosporeus"]]},{"id":"NCBITaxon:285482","l":"Streptomyces tsusimaensis","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A285482","Streptomyces tsusimaensis"]]},{"id":"NCBITaxon:288019","l":"Yeosuana aromativorans","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A288019","Yeosuana aromativorans"]]},{"id":"NCBITaxon:288681","l":"Bacillus cereus E33L","na":1,"nb":1,"a":[["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A288681","Bacillus cereus E33L"]]},{"id":"NCBITaxon:290055","l":"Faecalicatena fissicatena","na":1,"nb":1,"a":[["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["NCBITaxon%3A290055","Faecalicatena fissicatena"]]},{"id":"NCBITaxon:290338","l":"Citrobacter koseri (strain ATCC BAA-895 / CDC 4225-83 / SGSC4696)","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A290338","Citrobacter koseri ATCC BAA-895"]]},{"id":"NCBITaxon:290339","l":"","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A290339","Cronobacter sakazakii ATCC BAA-894"]]},{"id":"NCBITaxon:291602","l":"","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A291602","Kribbella lupini"]]},{"id":"NCBITaxon:292414","l":"Ruegeria sp. TM1040","na":1,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["NCBITaxon%3A292414","Ruegeria sp. TM1040"]]},{"id":"NCBITaxon:292807","l":"","na":1,"nb":1,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A292807","Desulfonatronum cooperativum"]]},{"id":"NCBITaxon:2930037","l":"Phaeospirillum sp.","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A2930037","Phaeospirillum sp."]]},{"id":"NCBITaxon:29316","l":"Schaalia hyovaginalis","na":1,"nb":1,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["NCBITaxon%3A29316","Schaalia hyovaginalis"]]},{"id":"NCBITaxon:293614","l":"Rickettsia akari str. Hartford","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A293614","Rickettsia akari str. Hartford"]]},{"id":"NCBITaxon:29389","l":"Streptococcus alactolyticus","na":1,"nb":1,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["NCBITaxon%3A29389","Streptococcus alactolyticus"]]},{"id":"NCBITaxon:29422","l":"Legionella brunensis","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A29422","Legionella brunensis"]]},{"id":"NCBITaxon:294671","l":"Methanobrevibacter olleyae","na":1,"nb":1,"a":[["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"]],"b":[["NCBITaxon%3A294671","Methanobrevibacter olleyae"]]},{"id":"NCBITaxon:294699","l":"Anoxybacteroides amylolyticum","na":1,"nb":1,"a":[["mount-envo-00000477.html","mount"]],"b":[["NCBITaxon%3A294699","Anoxybacteroides amylolyticum"]]},{"id":"NCBITaxon:294936","l":"Photobacterium rosenbergii","na":1,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"]],"b":[["NCBITaxon%3A294936","Photobacterium rosenbergii"]]},{"id":"NCBITaxon:29522","l":"Brachyspira aalborgi","na":1,"nb":1,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["NCBITaxon%3A29522","Brachyspira aalborgi"]]},{"id":"NCBITaxon:295236","l":"Clostridium sp. RKD","na":1,"nb":1,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"]],"b":[["NCBITaxon%3A295236","Clostridium sp. RKD"]]},{"id":"NCBITaxon:295324","l":"Paenibacillus motobuensis","na":1,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A295324","Paenibacillus motobuensis"]]},{"id":"NCBITaxon:29554","l":"Metamycoplasma canadense","na":1,"nb":1,"a":[["inflammatory-cell-bto-0003861.html","inflammatory cell"]],"b":[["NCBITaxon%3A29554","Metamycoplasma canadense"]]},{"id":"NCBITaxon:29558","l":"Mycoplasmopsis hyopharyngis","na":1,"nb":1,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A29558","Mycoplasmopsis hyopharyngis"]]},{"id":"NCBITaxon:29559","l":"Metamycoplasma hyosynoviae","na":1,"nb":1,"a":[["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A29559","Metamycoplasma hyosynoviae"]]},{"id":"NCBITaxon:297245","l":"Legionella pneumophila str. Lens","na":1,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A297245","Legionella pneumophila str. Lens"]]},{"id":"NCBITaxon:297536","l":"Oryzihumus leptocrescens","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A297536","Oryzihumus leptocrescens"]]},{"id":"NCBITaxon:298653","l":"Frankia sp. EAN1pec","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A298653","Parafrankia sp. EAN1pec"]]},{"id":"NCBITaxon:299254","l":"Streptomyces sp. NRRL 11266","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A299254","Streptomyces sp. NRRL 11266"]]},{"id":"NCBITaxon:300181","l":"Serratia ureilytica","na":1,"nb":1,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["NCBITaxon%3A300181","Serratia ureilytica"]]},{"id":"NCBITaxon:301154","l":"Sphingomonas oligophenolica","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A301154","Sphingomonas oligophenolica"]]},{"id":"NCBITaxon:301708","l":"Clostridium sp. MLG480","na":1,"nb":1,"a":[["mud-envo-01000001.html","mud"]],"b":[["NCBITaxon%3A301708","Clostridium sp. MLG480"]]},{"id":"NCBITaxon:302409","l":"Ehrlichia ruminantium str. Gardel","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A302409","Ehrlichia ruminantium str. Gardel"]]},{"id":"NCBITaxon:304","l":"Roseateles saccharophilus","na":1,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"]],"b":[["NCBITaxon%3A304","Roseateles saccharophilus"]]},{"id":"NCBITaxon:3041","l":"Chlorophyta","na":1,"nb":1,"a":[["leaf-bto-0000713.html","leaf"]],"b":[["NCBITaxon%3A2812611","Micromonas sp."]]},{"id":"NCBITaxon:306545","l":"Marinimicrobium koreense","na":1,"nb":1,"a":[["strait-envo-00000394.html","strait"]],"b":[["NCBITaxon%3A306545","Marinimicrobium koreense"]]},{"id":"NCBITaxon:307120","l":"Micromonospora marina","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A307120","Micromonospora marina"]]},{"id":"NCBITaxon:308853","l":"Natronorubrum thiooxidans","na":1,"nb":1,"a":[["steppe-envo-00000262.html","steppe"]],"b":[["NCBITaxon%3A308853","Natronorubrum thiooxidans"]]},{"id":"NCBITaxon:309483","l":"exiguobacterium_soli","na":1,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A132920","Exiguobacterium antarcticum"]]},{"id":"NCBITaxon:309890","l":"","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A309890","Deinococcus papagonensis"]]},{"id":"NCBITaxon:310350","l":"Nocardiopsis sp.","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A310350","Nocardiopsis sp."]]},{"id":"NCBITaxon:310396","l":"Nitrosomonas sp. IWT310","na":1,"nb":1,"a":[["waste-treatment-plant-envo-00002272.html","waste treatment plant"]],"b":[["NCBITaxon%3A310396","Nitrosomonas sp. IWT310"]]},{"id":"NCBITaxon:311458","l":"Candidatus Caldarchaeum subterraneum","na":1,"nb":1,"a":[["finger-bto-0004669.html","finger"]],"b":[["NCBITaxon%3A311458","Candidatus Caldarchaeum subterraneum"]]},{"id":"NCBITaxon:311460","l":"Anoxybacteroides rupiense","na":1,"nb":1,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A311460","Anoxybacteroides rupiense"]]},{"id":"NCBITaxon:312309","l":"","na":1,"nb":1,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["NCBITaxon%3A312309","Aliivibrio fischeri ES114"]]},{"id":"NCBITaxon:314200","l":"Giesbergeria voronezhensis","na":1,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"]],"b":[["NCBITaxon%3A314200","Giesbergeria voronezhensis"]]},{"id":"NCBITaxon:314232","l":"Yoonia vestfoldensis SKA53","na":1,"nb":1,"a":[["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A314232","Yoonia vestfoldensis SKA53"]]},{"id":"NCBITaxon:314238","l":"Phyllobacterium ifriqiyense","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A314238","Phyllobacterium ifriqiyense"]]},{"id":"NCBITaxon:314253","l":"Nitrobacter sp. Nb-311A","na":1,"nb":1,"a":[["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A314253","Nitrobacter sp. Nb-311A"]]},{"id":"NCBITaxon:314256","l":"Oceanicola granulosus HTCC2516","na":1,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["NCBITaxon%3A314256","Oceanicola granulosus HTCC2516"]]},{"id":"NCBITaxon:314266","l":"Sphingomonas sp. SKA58","na":1,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["NCBITaxon%3A314266","Sphingomonas sp. SKA58"]]},{"id":"NCBITaxon:314267","l":"Sulfitobacter sp. NAS-14.1","na":1,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["NCBITaxon%3A314267","Sulfitobacter sp. NAS-14.1"]]},{"id":"NCBITaxon:314278","l":"Nitrococcus mobilis Nb-231","na":1,"nb":1,"a":[["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["NCBITaxon%3A314278","Nitrococcus mobilis Nb-231"]]},{"id":"NCBITaxon:314282","l":"Psychromonas sp. CNPT3","na":1,"nb":1,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A314282","Psychromonas sp. CNPT3"]]},{"id":"NCBITaxon:314291","l":"Vibrio splendidus 12B01","na":1,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["NCBITaxon%3A314291","Vibrio splendidus 12B01"]]},{"id":"NCBITaxon:314330","l":"Enterobacter sp. DC1","na":1,"nb":1,"a":[["tuber-bto-0001400.html","tuber"]],"b":[["NCBITaxon%3A314330","Enterobacter sp. DC1"]]},{"id":"NCBITaxon:314608","l":"Shewanella benthica KT99","na":1,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["NCBITaxon%3A314608","Shewanella benthica KT99"]]},{"id":"NCBITaxon:314723","l":"Borrelia hermsii DAH","na":1,"nb":1,"a":[["salivary-gland-bto-0001203.html","salivary gland"]],"b":[["NCBITaxon%3A314723","Borrelia hermsii DAH"]]},{"id":"NCBITaxon:315456","l":"Rickettsia felis (strain ATCC VR-1525 / URRWXCal2)","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A315456","Rickettsia felis Marseille-URRWFXCal2"]]},{"id":"NCBITaxon:315750","l":"Bacillus pumilus SAFR-032","na":1,"nb":1,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A315750","Bacillus pumilus SAFR-032"]]},{"id":"NCBITaxon:316055","l":"Rhodopseudomonas palustris BisA53","na":1,"nb":1,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A316055","Rhodopseudomonas palustris BisA53"]]},{"id":"NCBITaxon:316056","l":"Rhodopseudomonas palustris BisB18","na":1,"nb":1,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A316056","Rhodopseudomonas palustris BisB18"]]},{"id":"NCBITaxon:316057","l":"Rhodopseudomonas palustris BisB5","na":1,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A316057","Rhodopseudomonas palustris BisB5"]]},{"id":"NCBITaxon:316279","l":"Synechococcus sp. CC9902","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A316279","Synechococcus sp. CC9902"]]},{"id":"NCBITaxon:317580","l":"Flavobacterium sp. 4214","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A317580","Flavobacterium sp. 4214"]]},{"id":"NCBITaxon:317664","l":"Quadrisphaera granulorum","na":1,"nb":1,"a":[["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["NCBITaxon%3A317664","Quadrisphaera granulorum"]]},{"id":"NCBITaxon:318751","l":"Westerdykella ornata","na":1,"nb":1,"a":[["desert-sand-envo-00005800.html","desert sand"]],"b":[["NCBITaxon%3A318751","Westerdykella ornata"]]},{"id":"NCBITaxon:319003","l":"Bradyrhizobium sp. WSM1253","na":1,"nb":1,"a":[["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A319003","Bradyrhizobium sp. WSM1253"]]},{"id":"NCBITaxon:320374","l":"Burkholderia pseudomallei S13","na":1,"nb":1,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A320374","Burkholderia pseudomallei S13"]]},{"id":"NCBITaxon:320388","l":"Burkholderia mallei SAVP1","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A320388","Burkholderia mallei SAVP1"]]},{"id":"NCBITaxon:320771","l":"","na":1,"nb":1,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A320771","Pedosphaera parvula Ellin514"]]},{"id":"NCBITaxon:321267","l":"Shimia marina","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A321267","Shimia marina"]]},{"id":"NCBITaxon:321984","l":"Pseudoduganella plicata","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A321984","Pseudoduganella plicata"]]},{"id":"NCBITaxon:321985","l":"Pseudoduganella lutea","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A321985","Pseudoduganella lutea"]]},{"id":"NCBITaxon:322710","l":"Azotobacter vinelandii DJ","na":1,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["NCBITaxon%3A322710","Azotobacter vinelandii DJ"]]},{"id":"NCBITaxon:323426","l":"Jezberella montanilacus","na":1,"nb":1,"a":[["pond-envo-00000033.html","pond"]],"b":[["NCBITaxon%3A323426","Jezberella montanilacus"]]},{"id":"NCBITaxon:324617","l":"Aeromonas tecta","na":1,"nb":1,"a":[["surface-swab-habitatmech-bacdive-6911460a4a.html","Surface-swab"]],"b":[["NCBITaxon%3A324617","Aeromonas tecta"]]},{"id":"NCBITaxon:325473","l":"Psychroserpens mesophilus","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A325473","Psychroserpens mesophilus"]]},{"id":"NCBITaxon:328552","l":"","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A2734912","Bradyrhizobium denitrificans"]]},{"id":"NCBITaxon:328839","l":"Azospirillum melinis","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A328839","Azospirillum melinis"]]},{"id":"NCBITaxon:328971","l":"Leptospira borgpetersenii serovar Hardjo","na":1,"nb":1,"a":[["kidney-bto-0000671.html","kidney"]],"b":[["NCBITaxon%3A328971","Leptospira borgpetersenii serovar Hardjo"]]},{"id":"NCBITaxon:329406","l":"","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A329406","Thiorhodococcus mannitoliphagus"]]},{"id":"NCBITaxon:331104","l":"Blattabacterium sp. (Blattella germanica) str. Bge","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A331104","Blattabacterium sp. (Blattella germanica) str. Bge"]]},{"id":"NCBITaxon:331112","l":"Escherichia coli O9:H4 (strain HS)","na":1,"nb":1,"a":[["adrenal-gland-bto-0000047.html","adrenal gland"]],"b":[["NCBITaxon%3A331112","Escherichia coli HS"]]},{"id":"NCBITaxon:332415","l":"Ehrlichia chaffeensis str. Sapulpa","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A332415","Ehrlichia chaffeensis str. Sapulpa"]]},{"id":"NCBITaxon:332522","l":"Halospina denitrificans","na":1,"nb":1,"a":[["steppe-envo-00000262.html","steppe"]],"b":[["NCBITaxon%3A332522","Halospina denitrificans"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":1,"nb":1,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["NCBITaxon%3A332952","Aspergillus flavus NRRL3357"]]},{"id":"NCBITaxon:332977","l":"Parapedobacter koreensis","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A332977","Parapedobacter koreensis"]]},{"id":"NCBITaxon:333138","l":"","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A333138","Halalkalibacter okhensis"]]},{"id":"NCBITaxon:333146","l":"Ferroplasma acidarmanus Fer1","na":1,"nb":1,"a":[["mountain-envo-00000081.html","mountain"]],"b":[["NCBITaxon%3A333146","Ferroplasma acidarmanus Fer1"]]},{"id":"NCBITaxon:333368","l":"Rhodoblastus sphagnicola","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A333368","Rhodoblastus sphagnicola"]]},{"id":"NCBITaxon:333668","l":"Theileria parva strain Muguga","na":1,"nb":1,"a":[["lymphocyte-bto-0000775.html","lymphocyte"]],"b":[["NCBITaxon%3A333668","Theileria parva strain Muguga"]]},{"id":"NCBITaxon:333728","l":"Streptomyces erringtonii","na":1,"nb":1,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A333728","Streptomyces erringtonii"]]},{"id":"NCBITaxon:333964","l":"Xenorhabdus indica","na":1,"nb":1,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A333964","Xenorhabdus indica"]]},{"id":"NCBITaxon:333965","l":"Providencia vermicola","na":1,"nb":1,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A333965","Providencia vermicola"]]},{"id":"NCBITaxon:334406","l":"Bacillus cereus NC7401","na":1,"nb":1,"a":[["spermatozoon-bto-0001277.html","spermatozoon"]],"b":[["NCBITaxon%3A334406","Bacillus cereus NC7401"]]},{"id":"NCBITaxon:336179","l":"Pseudoalteromonas sp. 643A","na":1,"nb":1,"a":[["fumarole-envo-00000216.html","fumarole"]],"b":[["NCBITaxon%3A336179","Pseudoalteromonas sp. 643A"]]},{"id":"NCBITaxon:337701","l":"Roseovarius pacificus","na":1,"nb":1,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["NCBITaxon%3A337701","Roseovarius pacificus"]]},{"id":"NCBITaxon:338044","l":"Bacillus sp. GB02-25","na":1,"nb":1,"a":[["organic-waste-material-envo-00002873.html","organic waste material"]],"b":[["NCBITaxon%3A338044","Bacillus sp. GB02-25"]]},{"id":"NCBITaxon:338047","l":"Bacillus sp. GB02-31","na":1,"nb":1,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A338047","Bacillus sp. GB02-31"]]},{"id":"NCBITaxon:33883","l":"Microbacterium arborescens","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A33883","Microbacterium arborescens"]]},{"id":"NCBITaxon:33915","l":"Saccharopolyspora sp.","na":1,"nb":1,"a":[["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A33915","Saccharopolyspora sp."]]},{"id":"NCBITaxon:33922","l":"Mycoplasmopsis agassizii","na":1,"nb":1,"a":[["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A33922","Mycoplasmopsis agassizii"]]},{"id":"NCBITaxon:33950","l":"Thermoanaerobacterium thermosulfurigenes","na":1,"nb":1,"a":[["park-envo-00000562.html","park"]],"b":[["NCBITaxon%3A33950","Thermoanaerobacterium thermosulfurigenes"]]},{"id":"NCBITaxon:34012","l":"Azospirillum sp.","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A34012","Azospirillum sp."]]},{"id":"NCBITaxon:34017","l":"Rhodobium orientis","na":1,"nb":1,"a":[["marine-neritic-zone-envo-00000206.html","marine neritic zone"]],"b":[["NCBITaxon%3A34017","Rhodobium orientis"]]},{"id":"NCBITaxon:340177","l":"Chlorobium chlorochromatii CaD3","na":1,"nb":1,"a":[["photoreceptor-cell-bto-0001060.html","photoreceptor cell"]],"b":[["NCBITaxon%3A340177","Chlorobium chlorochromatii CaD3"]]},{"id":"NCBITaxon:340320","l":"Leucobacter luti","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A340320","Leucobacter luti"]]},{"id":"NCBITaxon:340321","l":"Leucobacter alluvii","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A340321","Leucobacter alluvii"]]},{"id":"NCBITaxon:340345","l":"Actinoalloteichus hymeniacidonis","na":1,"nb":1,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A340345","Actinoalloteichus hymeniacidonis"]]},{"id":"NCBITaxon:34101","l":"Sporosarcina limicola","na":1,"nb":1,"a":[["tarn-envo-00000455.html","tarn"]],"b":[["NCBITaxon%3A34101","Sporosarcina limicola"]]},{"id":"NCBITaxon:341027","l":"Sphingobacterium sp.","na":1,"nb":1,"a":[["air-conditioning-unit-envo-00002874.html","air conditioning unit"]],"b":[["NCBITaxon%3A341027","Sphingobacterium sp."]]},{"id":"NCBITaxon:341199","l":"Nocardia kroppenstedtii","na":1,"nb":1,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["NCBITaxon%3A341199","Nocardia kroppenstedtii"]]},{"id":"NCBITaxon:342616","l":"","na":1,"nb":1,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A342616","Streptococcus agalactiae COH1"]]},{"id":"NCBITaxon:342944","l":"","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A342944","Sinobaca qinghaiensis"]]},{"id":"NCBITaxon:343013","l":"","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A343013","Paenacidovorax caeni"]]},{"id":"NCBITaxon:343080","l":"Chryseobacterium sp. R-25053","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A343080","Chryseobacterium sp. R-25053"]]},{"id":"NCBITaxon:343403","l":"Costertonia aggregata","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A343403","Costertonia aggregata"]]},{"id":"NCBITaxon:343509","l":"Sodalis glossinidius str. 'morsitans'","na":1,"nb":1,"a":[["needle-bto-0000917.html","needle"]],"b":[["NCBITaxon%3A343509","Sodalis glossinidius str. 'morsitans'"]]},{"id":"NCBITaxon:345072","l":"Vibrio cholerae MO10","na":1,"nb":1,"a":[["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["NCBITaxon%3A345072","Vibrio cholerae MO10"]]},{"id":"NCBITaxon:345075","l":"Vibrio cholerae V51","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A345075","Vibrio cholerae V51"]]},{"id":"NCBITaxon:345631","l":"Geobacter argillaceus","na":1,"nb":1,"a":[["clay-envo-00002982.html","clay"]],"b":[["NCBITaxon%3A345631","Geobacter argillaceus"]]},{"id":"NCBITaxon:345632","l":"","na":1,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A345632","Geobacter pickeringii"]]},{"id":"NCBITaxon:347495","l":"Bacillus cereus F837/76","na":1,"nb":1,"a":[["prostate-gland-bto-0001129.html","prostate gland"]],"b":[["NCBITaxon%3A347495","Bacillus cereus F837/76"]]},{"id":"NCBITaxon:347515","l":"Leishmania major strain Friedlin","na":1,"nb":1,"a":[["kinetoplastid-bto-0002502.html","kinetoplastid"]],"b":[["NCBITaxon%3A347515","Leishmania major strain Friedlin"]]},{"id":"NCBITaxon:349725","l":"Micromonospora sp. ML1","na":1,"nb":1,"a":[["clay-envo-00002982.html","clay"]],"b":[["NCBITaxon%3A349725","Micromonospora sp. ML1"]]},{"id":"NCBITaxon:350702","l":"Burkholderia cenocepacia PC184","na":1,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A350702","Burkholderia cenocepacia PC184"]]},{"id":"NCBITaxon:354352","l":"Pseudochrobactrum saccharolyticum","na":1,"nb":1,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["NCBITaxon%3A354352","Pseudochrobactrum saccharolyticum"]]},{"id":"NCBITaxon:35616","l":"Pyrodictium brockii","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A35616","Pyrodictium brockii"]]},{"id":"NCBITaxon:357244","l":"Orientia tsutsugamushi str. Boryong","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A357244","Orientia tsutsugamushi str. Boryong"]]},{"id":"NCBITaxon:35743","l":"Halorubrum sodomense","na":1,"nb":1,"a":[["marine-anoxic-zone-envo-01000066.html","marine anoxic zone"]],"b":[["NCBITaxon%3A35743","Halorubrum sodomense"]]},{"id":"NCBITaxon:35752","l":"Actinoplanes philippinensis","na":1,"nb":1,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A35752","Actinoplanes philippinensis"]]},{"id":"NCBITaxon:357544","l":"Helicobacter pylori HPAG1","na":1,"nb":1,"a":[["oxyntic-cell-bto-0001780.html","oxyntic cell"]],"b":[["NCBITaxon%3A357544","Helicobacter pylori HPAG1"]]},{"id":"NCBITaxon:35755","l":"Corynebacterium kutscheri","na":1,"nb":1,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["NCBITaxon%3A35755","Corynebacterium kutscheri"]]},{"id":"NCBITaxon:358099","l":"","na":1,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A358099","Brevibacterium oceani"]]},{"id":"NCBITaxon:358592","l":"Rheinheimera chironomi","na":1,"nb":1,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["NCBITaxon%3A358592","Rheinheimera chironomi"]]},{"id":"NCBITaxon:358709","l":"Escherichia coli 101-1","na":1,"nb":1,"a":[["hep-2-cell-bto-0000976.html","HEp-2 cell"]],"b":[["NCBITaxon%3A358709","Escherichia coli 101-1"]]},{"id":"NCBITaxon:359391","l":"Brucella abortus (strain 2308)","na":1,"nb":1,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A359391","Brucella abortus 2308"]]},{"id":"NCBITaxon:360104","l":"Campylobacter concisus 13826","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A360104","Campylobacter concisus 13826"]]},{"id":"NCBITaxon:360411","l":"Bellilinea caldifistulae","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A360411","Bellilinea caldifistulae"]]},{"id":"NCBITaxon:360422","l":"Clostridium tagluense","na":1,"nb":1,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A360422","Clostridium tagluense"]]},{"id":"NCBITaxon:360911","l":"Exiguobacterium sp. AT1b","na":1,"nb":1,"a":[["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A360911","Exiguobacterium sp. AT1b"]]},{"id":"NCBITaxon:361","l":"Agrobacterium sp.","na":1,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"]],"b":[["NCBITaxon%3A361","Agrobacterium sp."]]},{"id":"NCBITaxon:361576","l":"Halovibrio mesolongii","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A361576","Halovibrio mesolongii"]]},{"id":"NCBITaxon:364106","l":"Escherichia coli (strain UTI89 / UPEC)","na":1,"nb":1,"a":[["rectum-bto-0001158.html","rectum"]],"b":[["NCBITaxon%3A364106","Escherichia coli UTI89"]]},{"id":"NCBITaxon:364199","l":"Paracoccus homiensis","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A364199","Paracoccus homiensis"]]},{"id":"NCBITaxon:364200","l":"Cognatiyoonia koreensis","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A364200","Cognatiyoonia koreensis"]]},{"id":"NCBITaxon:36813","l":"Mycolicibacterium pulveris","na":1,"nb":1,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["NCBITaxon%3A36813","Mycolicibacterium pulveris"]]},{"id":"NCBITaxon:36870","l":"Wigglesworthia glossinidia endosymbiont of Glossina brevipalpis","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A36870","Wigglesworthia glossinidia endosymbiont of Glossina brevipalpis"]]},{"id":"NCBITaxon:36875","l":"Porphyromonas canoris","na":1,"nb":1,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A36875","Porphyromonas canoris"]]},{"id":"NCBITaxon:370106","l":"Thermococcus sp. GT","na":1,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["NCBITaxon%3A370106","Thermococcus sp. GT"]]},{"id":"NCBITaxon:370551","l":"Streptococcus pyogenes MGAS9429","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A370551","Streptococcus pyogenes MGAS9429"]]},{"id":"NCBITaxon:370552","l":"Streptococcus pyogenes MGAS10270","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A370552","Streptococcus pyogenes MGAS10270"]]},{"id":"NCBITaxon:370553","l":"Streptococcus pyogenes MGAS2096","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A370553","Streptococcus pyogenes MGAS2096"]]},{"id":"NCBITaxon:370554","l":"Streptococcus pyogenes MGAS10750","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A370554","Streptococcus pyogenes MGAS10750"]]},{"id":"NCBITaxon:370979","l":"","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A370979","Flavobacterium defluvii"]]},{"id":"NCBITaxon:371602","l":"Aerococcus suis","na":1,"nb":1,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["NCBITaxon%3A371602","Aerococcus suis"]]},{"id":"NCBITaxon:372072","l":"Cohaesibacter gelatinilyticus","na":1,"nb":1,"a":[["sandstone-envo-00002055.html","sandstone"]],"b":[["NCBITaxon%3A372072","Cohaesibacter gelatinilyticus"]]},{"id":"NCBITaxon:372461","l":"Buchnera aphidicola BCc","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A372461","Buchnera aphidicola BCc"]]},{"id":"NCBITaxon:373672","l":"Chryseobacterium gambrini","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A373672","Chryseobacterium gambrini"]]},{"id":"NCBITaxon:374858","l":"Zoogloea caeni","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A374858","Zoogloea caeni"]]},{"id":"NCBITaxon:374928","l":"Haemophilus influenzae PittAA","na":1,"nb":1,"a":[["middle-ear-bto-0002099.html","middle ear"]],"b":[["NCBITaxon%3A374928","Haemophilus influenzae PittAA"]]},{"id":"NCBITaxon:374930","l":"Haemophilus influenzae (strain PittEE)","na":1,"nb":1,"a":[["middle-ear-bto-0002099.html","middle ear"]],"b":[["NCBITaxon%3A374930","Haemophilus influenzae PittEE"]]},{"id":"NCBITaxon:374931","l":"Haemophilus influenzae PittGG","na":1,"nb":1,"a":[["middle-ear-bto-0002099.html","middle ear"]],"b":[["NCBITaxon%3A374931","Haemophilus influenzae PittGG"]]},{"id":"NCBITaxon:374932","l":"Haemophilus influenzae PittHH","na":1,"nb":1,"a":[["middle-ear-bto-0002099.html","middle ear"]],"b":[["NCBITaxon%3A374932","Haemophilus influenzae PittHH"]]},{"id":"NCBITaxon:374933","l":"Haemophilus influenzae PittII","na":1,"nb":1,"a":[["middle-ear-bto-0002099.html","middle ear"]],"b":[["NCBITaxon%3A374933","Haemophilus influenzae PittII"]]},{"id":"NCBITaxon:375175","l":"Loigolactobacillus backii","na":1,"nb":1,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["NCBITaxon%3A375175","Loigolactobacillus backii"]]},{"id":"NCBITaxon:375177","l":"Haemophilus influenzae 3655","na":1,"nb":1,"a":[["b-lymphocyte-cell-line-bto-0001522.html","B-lymphocyte cell line"]],"b":[["NCBITaxon%3A375177","Haemophilus influenzae 3655"]]},{"id":"NCBITaxon:375286","l":"","na":1,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"]],"b":[["NCBITaxon%3A375286","Janthinobacterium sp. Marseille"]]},{"id":"NCBITaxon:376219","l":"","na":1,"nb":1,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A376219","Limnospira indica PCC 8005"]]},{"id":"NCBITaxon:37632","l":"Amycolatopsis sp.","na":1,"nb":1,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A37632","Amycolatopsis sp."]]},{"id":"NCBITaxon:378534","l":"Pseudomonas sp. Eur1 9.41","na":1,"nb":1,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A378534","Pseudomonas sp. Eur1 9.41"]]},{"id":"NCBITaxon:378543","l":"Tumebacillus permanentifrigoris","na":1,"nb":1,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A378543","Tumebacillus permanentifrigoris"]]},{"id":"NCBITaxon:379731","l":"Stutzerimonas stutzeri A1501","na":1,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["NCBITaxon%3A379731","Stutzerimonas stutzeri A1501"]]},{"id":"NCBITaxon:38033","l":"Chaetomium globosum","na":1,"nb":1,"a":[["desert-sand-envo-00005800.html","desert sand"]],"b":[["NCBITaxon%3A38033","Chaetomium globosum"]]},{"id":"NCBITaxon:380358","l":"Xanthomonas albilineans GPE PC73","na":1,"nb":1,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["NCBITaxon%3A380358","Xanthomonas albilineans GPE PC73"]]},{"id":"NCBITaxon:380481","l":"Methylomicrobium sp. HG-1","na":1,"nb":1,"a":[["gold-mine-envo-00002168.html","gold mine"]],"b":[["NCBITaxon%3A380481","Methylomicrobium sp. HG-1"]]},{"id":"NCBITaxon:38072","l":"Bacillus infernus","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A38072","Bacillus infernus"]]},{"id":"NCBITaxon:380749","l":"Hydrogenobaculum sp. Y04AAS1","na":1,"nb":1,"a":[["acidic-hot-spring-envo-00002120.html","acidic hot spring"]],"b":[["NCBITaxon%3A380749","Hydrogenobaculum sp. Y04AAS1"]]},{"id":"NCBITaxon:381630","l":"Methylobacterium jeotgali","na":1,"nb":1,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["NCBITaxon%3A381630","Methylobacterium jeotgali"]]},{"id":"NCBITaxon:381754","l":"Pseudomonas paraeruginosa PA7","na":1,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A381754","Pseudomonas paraeruginosa PA7"]]},{"id":"NCBITaxon:382638","l":"Helicobacter acinonychis str. Sheeba","na":1,"nb":1,"a":[["gracilis-muscle-bto-0000536.html","gracilis muscle"]],"b":[["NCBITaxon%3A382638","Helicobacter acinonychis str. Sheeba"]]},{"id":"NCBITaxon:385025","l":"Cycloclasticus sp. P1","na":1,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A385025","Cycloclasticus sp. P1"]]},{"id":"NCBITaxon:386456","l":"Methanobacterium arcticum","na":1,"nb":1,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A386456","Methanobacterium arcticum"]]},{"id":"NCBITaxon:386585","l":"Escherichia coli O157:H7 str. Sakai","na":1,"nb":1,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["NCBITaxon%3A386585","Escherichia coli O157:H7 str. Sakai"]]},{"id":"NCBITaxon:387094","l":"Flavobacterium hercynium","na":1,"nb":1,"a":[["stream-bed-envo-00000383.html","stream bed"]],"b":[["NCBITaxon%3A387094","Flavobacterium hercynium"]]},{"id":"NCBITaxon:387426","l":"Pseudoalteromonas sp. KMM 701","na":1,"nb":1,"a":[["fumarole-envo-00000216.html","fumarole"]],"b":[["NCBITaxon%3A387426","Pseudoalteromonas sp. KMM 701"]]},{"id":"NCBITaxon:387890","l":"Prauserella aidingensis","na":1,"nb":1,"a":[["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A387890","Prauserella aidingensis"]]},{"id":"NCBITaxon:388349","l":"Thermoplasma sp. S02","na":1,"nb":1,"a":[["lagoon-envo-00000038.html","lagoon"]],"b":[["NCBITaxon%3A388349","Thermoplasma sp. S02"]]},{"id":"NCBITaxon:388396","l":"Aliivibrio fischeri MJ11","na":1,"nb":1,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["NCBITaxon%3A388396","Aliivibrio fischeri MJ11"]]},{"id":"NCBITaxon:388413","l":"Algoriphagus machipongonensis","na":1,"nb":1,"a":[["choanomastigote-bto-0003434.html","choanomastigote"]],"b":[["NCBITaxon%3A388413","Algoriphagus machipongonensis"]]},{"id":"NCBITaxon:388467","l":"Planktothrix agardhii NIVA-CYA 126/8","na":1,"nb":1,"a":[["filament-bto-0000463.html","filament"]],"b":[["NCBITaxon%3A388467","Planktothrix agardhii NIVA-CYA 126/8"]]},{"id":"NCBITaxon:388739","l":"Roseobacter sp. SK209-2-6","na":1,"nb":1,"a":[["sandstone-envo-00002055.html","sandstone"]],"b":[["NCBITaxon%3A388739","Roseobacter sp. SK209-2-6"]]},{"id":"NCBITaxon:388746","l":"","na":1,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A388746","Puniceicoccus vermicola"]]},{"id":"NCBITaxon:388924","l":"Agromyces sp. KY5R","na":1,"nb":1,"a":[["clay-envo-00002982.html","clay"]],"b":[["NCBITaxon%3A388924","Agromyces sp. KY5R"]]},{"id":"NCBITaxon:390235","l":"Pseudomonas putida W619","na":1,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A390235","Pseudomonas putida W619"]]},{"id":"NCBITaxon:390612","l":"Bacteriovorax sp. NZ7","na":1,"nb":1,"a":[["sandstone-envo-00002055.html","sandstone"]],"b":[["NCBITaxon%3A390612","Bacteriovorax sp. NZ7"]]},{"id":"NCBITaxon:390807","l":"Jannaschia pohangensis","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A390807","Jannaschia pohangensis"]]},{"id":"NCBITaxon:391366","l":"Sporosarcina sp. A20","na":1,"nb":1,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A391366","Sporosarcina sp. A20"]]},{"id":"NCBITaxon:391589","l":"Roseobacter sp. GAI101","na":1,"nb":1,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A391589","Roseobacter sp. GAI101"]]},{"id":"NCBITaxon:391593","l":"Roseobacter sp. CCS2","na":1,"nb":1,"a":[["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A391593","Roseobacter sp. CCS2"]]},{"id":"NCBITaxon:391596","l":"Pedobacter sp. BAL39","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A391596","Pedobacter sp. BAL39"]]},{"id":"NCBITaxon:391597","l":"Limnobacter sp. MED105","na":1,"nb":1,"a":[["environmental-material-envo-00010483.html","environmental material"]],"b":[["NCBITaxon%3A391597","Limnobacter sp. MED105"]]},{"id":"NCBITaxon:391600","l":"Brevundimonas sp. BAL3","na":1,"nb":1,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A391600","Brevundimonas sp. BAL3"]]},{"id":"NCBITaxon:391774","l":"Nitratidesulfovibrio vulgaris DP4","na":1,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"]],"b":[["NCBITaxon%3A391774","Nitratidesulfovibrio vulgaris DP4"]]},{"id":"NCBITaxon:392018","l":"Methanobacterium alcaliphilum","na":1,"nb":1,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A392018","Methanobacterium alcaliphilum"]]},{"id":"NCBITaxon:392423","l":"Hydrogenivirga sp. 128-5-R1-1","na":1,"nb":1,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A392423","Hydrogenivirga sp. 128-5-R1-1"]]},{"id":"NCBITaxon:392430","l":"Roseobacter sp. SO3","na":1,"nb":1,"a":[["sandstone-envo-00002055.html","sandstone"]],"b":[["NCBITaxon%3A392430","Roseobacter sp. SO3"]]},{"id":"NCBITaxon:392844","l":"Desulfothermus naphthae","na":1,"nb":1,"a":[["lagoon-envo-00000038.html","lagoon"]],"b":[["NCBITaxon%3A392844","Desulfothermus naphthae"]]},{"id":"NCBITaxon:392917","l":"Paenibacillus larvae subsp. larvae BRL-230010","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A392917","Paenibacillus larvae subsp. larvae BRL-230010"]]},{"id":"NCBITaxon:393011","l":"Francisella tularensis subsp. holarctica OSU18","na":1,"nb":1,"a":[["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["NCBITaxon%3A393011","Francisella tularensis subsp. holarctica OSU18"]]},{"id":"NCBITaxon:393481","l":"Roseinatronobacter monicus","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A393481","Roseinatronobacter monicus"]]},{"id":"NCBITaxon:394091","l":"Cystobacter badius","na":1,"nb":1,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"]],"b":[["NCBITaxon%3A394091","Cystobacter badius"]]},{"id":"NCBITaxon:394093","l":"Cystobacter miniatus","na":1,"nb":1,"a":[["wood-bto-0005516.html","wood"]],"b":[["NCBITaxon%3A394093","Cystobacter miniatus"]]},{"id":"NCBITaxon:394097","l":"Allostigmatella hybrida","na":1,"nb":1,"a":[["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["NCBITaxon%3A394097","Allostigmatella hybrida"]]},{"id":"NCBITaxon:394193","l":"Amycolatopsis saalfeldensis","na":1,"nb":1,"a":[["cave-envo-00000067.html","cave"]],"b":[["NCBITaxon%3A394193","Amycolatopsis saalfeldensis"]]},{"id":"NCBITaxon:394221","l":"Maricaulis maris MCS10","na":1,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["NCBITaxon%3A394221","Maricaulis maris MCS10"]]},{"id":"NCBITaxon:394958","l":"Clostridium taeniosporum","na":1,"nb":1,"a":[["trunk-bto-0001493.html","trunk"]],"b":[["NCBITaxon%3A394958","Clostridium taeniosporum"]]},{"id":"NCBITaxon:395087","l":"Paenimyroides ceti","na":1,"nb":1,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"]],"b":[["NCBITaxon%3A395087","Paenimyroides ceti"]]},{"id":"NCBITaxon:395491","l":"Rhizobium leguminosarum bv. trifolii WSM1325","na":1,"nb":1,"a":[["beach-envo-00000091.html","beach"]],"b":[["NCBITaxon%3A395491","Rhizobium leguminosarum bv. trifolii WSM1325"]]},{"id":"NCBITaxon:395494","l":"","na":1,"nb":1,"a":[["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A395494","Gallionella capsiferriformans ES-2"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A395960","Rhodopseudomonas palustris TIE-1"]]},{"id":"NCBITaxon:39691","l":"Mycolicibacterium moriokaense","na":1,"nb":1,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A39691","Mycolicibacterium moriokaense"]]},{"id":"NCBITaxon:397945","l":"","na":1,"nb":1,"a":[["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A397945","Paracidovorax citrulli AAC00-1"]]},{"id":"NCBITaxon:398257","l":"Luteimonas composti","na":1,"nb":1,"a":[["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"]],"b":[["NCBITaxon%3A398257","Luteimonas composti"]]},{"id":"NCBITaxon:399599","l":"Shewanella baltica (strain OS195)","na":1,"nb":1,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A399599","Shewanella baltica OS195"]]},{"id":"NCBITaxon:399726","l":"Thermoanaerobacter sp. X514","na":1,"nb":1,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A399726","Thermoanaerobacter sp. X514"]]},{"id":"NCBITaxon:399739","l":"Ectopseudomonas mendocina (strain ymp)","na":1,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["NCBITaxon%3A399739","Ectopseudomonas mendocina ymp"]]},{"id":"NCBITaxon:400091","l":"","na":1,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A400091","Hymenobacter xinjiangensis"]]},{"id":"NCBITaxon:400092","l":"Pontibacter korlensis","na":1,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A400092","Pontibacter korlensis"]]},{"id":"NCBITaxon:400668","l":"Marinomonas sp. MWYL1","na":1,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["NCBITaxon%3A400668","Marinomonas sp. MWYL1"]]},{"id":"NCBITaxon:401976","l":"Pseudonocardia endophytica","na":1,"nb":1,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["NCBITaxon%3A401976","Pseudonocardia endophytica"]]},{"id":"NCBITaxon:404941","l":"Mycobacteroides salmoniphilum","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A404941","Mycobacteroides salmoniphilum"]]},{"id":"NCBITaxon:405436","l":"Micromonospora pattaloongensis","na":1,"nb":1,"a":[["mangrove-swamp-envo-00000057.html","mangrove swamp"]],"b":[["NCBITaxon%3A405436","Micromonospora pattaloongensis"]]},{"id":"NCBITaxon:405440","l":"Xylella fastidiosa M12","na":1,"nb":1,"a":[["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A405440","Xylella fastidiosa M12"]]},{"id":"NCBITaxon:405441","l":"Xylella fastidiosa M23","na":1,"nb":1,"a":[["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A405441","Xylella fastidiosa M23"]]},{"id":"NCBITaxon:40549","l":"Thermoanaerobacterium sp.","na":1,"nb":1,"a":[["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["NCBITaxon%3A40549","Thermoanaerobacterium sp."]]},{"id":"NCBITaxon:405946","l":"Oceanobacillus caeni","na":1,"nb":1,"a":[["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"]],"b":[["NCBITaxon%3A405946","Oceanobacillus caeni"]]},{"id":"NCBITaxon:405955","l":"Escherichia coli O1:K1 / APEC","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A405955","Escherichia coli APEC O1"]]},{"id":"NCBITaxon:406100","l":"","na":1,"nb":1,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A406100","Aquisalimonas asiatica"]]},{"id":"NCBITaxon:406546","l":"Nocardioides sp. CMU5","na":1,"nb":1,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A406546","Nocardioides sp. CMU5"]]},{"id":"NCBITaxon:406547","l":"Rubripirellula obstinata","na":1,"nb":1,"a":[["epibiont-habitatmech-bacdive-f4eb470a03.html","Epibiont"]],"b":[["NCBITaxon%3A406547","Rubripirellula obstinata"]]},{"id":"NCBITaxon:407152","l":"","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A407152","Brucella cytisi"]]},{"id":"NCBITaxon:408180","l":"Mesorhizobium sp. ORS 3324","na":1,"nb":1,"a":[["hair-follicle-outer-root-sheath-bto-0003969.html","hair follicle outer root sheath"]],"b":[["NCBITaxon%3A408180","Mesorhizobium sp. ORS 3324"]]},{"id":"NCBITaxon:408184","l":"Mesorhizobium sp. ORS 3359","na":1,"nb":1,"a":[["hair-follicle-outer-root-sheath-bto-0003969.html","hair follicle outer root sheath"]],"b":[["NCBITaxon%3A408184","Mesorhizobium sp. ORS 3359"]]},{"id":"NCBITaxon:409290","l":"Arthrobacter oryzae","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A409290","Arthrobacter oryzae"]]},{"id":"NCBITaxon:410291","l":"Vibrio campbellii HY01","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A410291","Vibrio campbellii HY01"]]},{"id":"NCBITaxon:41114","l":"Actinobacillus sp.","na":1,"nb":1,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["NCBITaxon%3A41114","Actinobacillus sp."]]},{"id":"NCBITaxon:411489","l":"Clostridium sp. L2-50","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A411489","Clostridium sp. L2-50"]]},{"id":"NCBITaxon:411959","l":"Virgibacillus chiguensis","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A411959","Virgibacillus chiguensis"]]},{"id":"NCBITaxon:412034","l":"Celerinatantimonas diazotrophica","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["NCBITaxon%3A412034","Celerinatantimonas diazotrophica"]]},{"id":"NCBITaxon:412614","l":"Vibrio cholerae 2740-80","na":1,"nb":1,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"]],"b":[["NCBITaxon%3A412614","Vibrio cholerae 2740-80"]]},{"id":"NCBITaxon:41315","l":"Yersinia sp. (in: enterobacteria)","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A41315","Yersinia sp. (in: enterobacteria)"]]},{"id":"NCBITaxon:413949","l":"Eimeria tenella strain Houghton","na":1,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"]],"b":[["NCBITaxon%3A413949","Eimeria tenella strain Houghton"]]},{"id":"NCBITaxon:414052","l":"Caenispirillum bisanense","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A414052","Caenispirillum bisanense"]]},{"id":"NCBITaxon:414684","l":"Rhodospirillum centenum SW","na":1,"nb":1,"a":[["cyst-bto-0000320.html","cyst"]],"b":[["NCBITaxon%3A414684","Rhodospirillum centenum SW"]]},{"id":"NCBITaxon:417203","l":"","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A417203","Mycetohabitans endofungorum"]]},{"id":"NCBITaxon:417397","l":"Vibrio cholerae 623-39","na":1,"nb":1,"a":[["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["NCBITaxon%3A417397","Vibrio cholerae 623-39"]]},{"id":"NCBITaxon:417399","l":"Vibrio cholerae NCTC 8457","na":1,"nb":1,"a":[["anaerobic-sludge-blanket-reactor-envo-00002213.html","anaerobic sludge blanket reactor"]],"b":[["NCBITaxon%3A417399","Vibrio cholerae NCTC 8457"]]},{"id":"NCBITaxon:418643","l":"Brevibacterium marinum","na":1,"nb":1,"a":[["beach-envo-00000091.html","beach"]],"b":[["NCBITaxon%3A418643","Brevibacterium marinum"]]},{"id":"NCBITaxon:419481","l":"Desulfoluna spongiiphila","na":1,"nb":1,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["NCBITaxon%3A419481","Desulfoluna spongiiphila"]]},{"id":"NCBITaxon:419542","l":"Leptospirillum rubarum","na":1,"nb":1,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A419542","Leptospirillum rubarum"]]},{"id":"NCBITaxon:420953","l":"Paraburkholderia megapolitana","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A420953","Paraburkholderia megapolitana"]]},{"id":"NCBITaxon:420955","l":"Sphingobium olei","na":1,"nb":1,"a":[["oil-envo-00002985.html","oil"]],"b":[["NCBITaxon%3A420955","Sphingobium olei"]]},{"id":"NCBITaxon:422289","l":"Beggiatoa sp. PS","na":1,"nb":1,"a":[["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A422289","Beggiatoa sp. PS"]]},{"id":"NCBITaxon:42322","l":"Eubacterium ruminantium","na":1,"nb":1,"a":[["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["NCBITaxon%3A42322","Eubacterium ruminantium"]]},{"id":"NCBITaxon:425006","l":"","na":1,"nb":1,"a":[["marsh-envo-00000035.html","marsh"]],"b":[["NCBITaxon%3A425006","Cohnella yongneupensis"]]},{"id":"NCBITaxon:426118","l":"Saccharolobus islandicus M.16.4","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A426118","Saccharolobus islandicus M.16.4"]]},{"id":"NCBITaxon:426368","l":"Methanococcus maripaludis C7","na":1,"nb":1,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["NCBITaxon%3A426368","Methanococcus maripaludis C7"]]},{"id":"NCBITaxon:427","l":"Methylosinus sp.","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A427","Methylosinus sp."]]},{"id":"NCBITaxon:427317","l":"Saccharolobus islandicus M.14.25","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A427317","Saccharolobus islandicus M.14.25"]]},{"id":"NCBITaxon:427318","l":"Saccharolobus islandicus M.16.27","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A427318","Saccharolobus islandicus M.16.27"]]},{"id":"NCBITaxon:43064","l":"Trichococcus pasteurii","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A43064","Trichococcus pasteurii"]]},{"id":"NCBITaxon:433296","l":"Aminipila butyrica","na":1,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"]],"b":[["NCBITaxon%3A433296","Aminipila butyrica"]]},{"id":"NCBITaxon:433647","l":"Terrimesophilobacter mesophilus","na":1,"nb":1,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A433647","Terrimesophilobacter mesophilus"]]},{"id":"NCBITaxon:435258","l":"Leishmania infantum JPCM5","na":1,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A435258","Leishmania infantum JPCM5"]]},{"id":"NCBITaxon:43666","l":"Paeniglutamicibacter sulfureus","na":1,"nb":1,"a":[["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"]],"b":[["NCBITaxon%3A43666","Paeniglutamicibacter sulfureus"]]},{"id":"NCBITaxon:43774","l":"Syntrophus buswellii","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A43774","Syntrophus buswellii"]]},{"id":"NCBITaxon:43775","l":"Syntrophus gentianae","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A43775","Syntrophus gentianae"]]},{"id":"NCBITaxon:439184","l":"Escherichia coli RS218","na":1,"nb":1,"a":[["microvascular-endothelial-cell-bto-0003123.html","microvascular endothelial cell"]],"b":[["NCBITaxon%3A439184","Escherichia coli RS218"]]},{"id":"NCBITaxon:439235","l":"Desulfatibacillum alkenivorans AK-01","na":1,"nb":1,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["NCBITaxon%3A439235","Desulfatibacillum alkenivorans AK-01"]]},{"id":"NCBITaxon:43928","l":"Halobaculum gomorrense","na":1,"nb":1,"a":[["marine-anoxic-zone-envo-01000066.html","marine anoxic zone"]],"b":[["NCBITaxon%3A43928","Halobaculum gomorrense"]]},{"id":"NCBITaxon:439386","l":"Saccharolobus islandicus Y.G.57.14","na":1,"nb":1,"a":[["geyser-envo-00000050.html","geyser"]],"b":[["NCBITaxon%3A439386","Saccharolobus islandicus Y.G.57.14"]]},{"id":"NCBITaxon:439497","l":"Ruegeria sp. R11","na":1,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["NCBITaxon%3A439497","Ruegeria sp. R11"]]},{"id":"NCBITaxon:439842","l":"Salmonella enterica subsp. enterica serovar Kentucky str. CVM29188","na":1,"nb":1,"a":[["breast-bto-0000149.html","breast"]],"b":[["NCBITaxon%3A439842","Salmonella enterica subsp. enterica serovar Kentucky str. CVM29188"]]},{"id":"NCBITaxon:440","l":"Acetobacter sp.","na":1,"nb":1,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A440","Acetobacter sp."]]},{"id":"NCBITaxon:441153","l":"Burkholderia pseudomallei NCTC 13177","na":1,"nb":1,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A441153","Burkholderia pseudomallei NCTC 13177"]]},{"id":"NCBITaxon:441157","l":"","na":1,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"]],"b":[["NCBITaxon%3A441157","Burkholderia humptydooensis MSMB43"]]},{"id":"NCBITaxon:441161","l":"Burkholderia pseudomallei DM98","na":1,"nb":1,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A441161","Burkholderia pseudomallei DM98"]]},{"id":"NCBITaxon:441772","l":"","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A441772","Clostridium botulinum F str. Langeland"]]},{"id":"NCBITaxon:444158","l":"Methanococcus maripaludis (strain C6 / ATCC BAA-1332)","na":1,"nb":1,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["NCBITaxon%3A444158","Methanococcus maripaludis C6"]]},{"id":"NCBITaxon:444612","l":"Rickettsia endosymbiont of Ixodes scapularis","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A444612","Rickettsia endosymbiont of Ixodes scapularis"]]},{"id":"NCBITaxon:445327","l":"Neorhodopirellula lusitana","na":1,"nb":1,"a":[["epibiont-habitatmech-bacdive-f4eb470a03.html","Epibiont"]],"b":[["NCBITaxon%3A445327","Neorhodopirellula lusitana"]]},{"id":"NCBITaxon:44576","l":"Nitrosomonas halophila","na":1,"nb":1,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"]],"b":[["NCBITaxon%3A44576","Nitrosomonas halophila"]]},{"id":"NCBITaxon:445930","l":"Trueperella abortisuis","na":1,"nb":1,"a":[["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A445930","Trueperella abortisuis"]]},{"id":"NCBITaxon:446787","l":"Actinopolymorpha rutila","na":1,"nb":1,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A446787","Actinopolymorpha rutila"]]},{"id":"NCBITaxon:447082","l":"Flavobacterium sp. S1","na":1,"nb":1,"a":[["city-envo-00000856.html","city"]],"b":[["NCBITaxon%3A447082","Flavobacterium sp. S1"]]},{"id":"NCBITaxon:447217","l":"Anaeromyxobacter sp. K","na":1,"nb":1,"a":[["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A447217","Anaeromyxobacter sp. K"]]},{"id":"NCBITaxon:44737","l":"Capnocytophaga sp.","na":1,"nb":1,"a":[["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A44737","Capnocytophaga sp."]]},{"id":"NCBITaxon:447687","l":"Mesorhizobium sp. CJ1","na":1,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A447687","Mesorhizobium sp. CJ1"]]},{"id":"NCBITaxon:448","l":"Legionella erythra","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A448","Legionella erythra"]]},{"id":"NCBITaxon:449308","l":"Desulfotomaculum sp. DSM 7440","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A449308","Desulfotomaculum sp. DSM 7440"]]},{"id":"NCBITaxon:449312","l":"Desulfotomaculum sp. DSM 8775","na":1,"nb":1,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A449312","Desulfotomaculum sp. DSM 8775"]]},{"id":"NCBITaxon:45056","l":"Legionella adelaidensis","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A45056","Legionella adelaidensis"]]},{"id":"NCBITaxon:45068","l":"Legionella londiniensis","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A45068","Legionella londiniensis"]]},{"id":"NCBITaxon:45071","l":"Legionella parisiensis","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A45071","Legionella parisiensis"]]},{"id":"NCBITaxon:45076","l":"Legionella worsleiensis","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A45076","Legionella worsleiensis"]]},{"id":"NCBITaxon:451","l":"Legionella micdadei","na":1,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A451","Legionella micdadei"]]},{"id":"NCBITaxon:453142","l":"Polaribacter sp. 3-17","na":1,"nb":1,"a":[["fumarole-envo-00000216.html","fumarole"]],"b":[["NCBITaxon%3A453142","Polaribacter sp. 3-17"]]},{"id":"NCBITaxon:454006","l":"Epilithonimonas hungarica","na":1,"nb":1,"a":[["oil-envo-00002985.html","oil"]],"b":[["NCBITaxon%3A454006","Epilithonimonas hungarica"]]},{"id":"NCBITaxon:454148","l":"Roseibacillus persicicus","na":1,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A454148","Roseibacillus persicicus"]]},{"id":"NCBITaxon:454153","l":"Luteolibacter pohnpeiensis","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A454153","Luteolibacter pohnpeiensis"]]},{"id":"NCBITaxon:454165","l":"Salmonella enterica subsp. enterica serovar Schwarzengrund str. SL480","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A454165","Salmonella enterica subsp. enterica serovar Schwarzengrund str. SL480"]]},{"id":"NCBITaxon:45465","l":"Vogesella indigofera","na":1,"nb":1,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"]],"b":[["NCBITaxon%3A45465","Vogesella indigofera"]]},{"id":"NCBITaxon:456320","l":"Methanococcus voltae A3","na":1,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"]],"b":[["NCBITaxon%3A456320","Methanococcus voltae A3"]]},{"id":"NCBITaxon:456482","l":"Haemophilus influenzae HK1212","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A456482","Haemophilus influenzae HK1212"]]},{"id":"NCBITaxon:45670","l":"Salinicoccus roseus","na":1,"nb":1,"a":[["pond-envo-00000033.html","pond"]],"b":[["NCBITaxon%3A45670","Salinicoccus roseus"]]},{"id":"NCBITaxon:457425","l":"Streptomyces albus J1074","na":1,"nb":1,"a":[["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["NCBITaxon%3A457425","Streptomyces albus J1074"]]},{"id":"NCBITaxon:457428","l":"Streptomyces lividans TK24","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A457428","Streptomyces lividans TK24"]]},{"id":"NCBITaxon:458233","l":"Macrococcoides caseolyticum JCSC5402","na":1,"nb":1,"a":[["primordium-bto-0001886.html","primordium"]],"b":[["NCBITaxon%3A458233","Macrococcoides caseolyticum JCSC5402"]]},{"id":"NCBITaxon:459471","l":"Flavobacterium tiangeerense","na":1,"nb":1,"a":[["glacier-envo-00000133.html","glacier"]],"b":[["NCBITaxon%3A459471","Flavobacterium tiangeerense"]]},{"id":"NCBITaxon:459528","l":"Pseudomonas duriflava","na":1,"nb":1,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A459528","Pseudomonas duriflava"]]},{"id":"NCBITaxon:46127","l":"Staphylococcus felis","na":1,"nb":1,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["NCBITaxon%3A46127","Staphylococcus felis"]]},{"id":"NCBITaxon:46170","l":"","na":1,"nb":1,"a":[["spike-bto-0001278.html","spike"]],"b":[["NCBITaxon%3A1280","Staphylococcus aureus"]]},{"id":"NCBITaxon:46223","l":"Thermoflavimicrobium dichotomicum","na":1,"nb":1,"a":[["village-biome-envo-01000246.html","village biome"]],"b":[["NCBITaxon%3A46223","Thermoflavimicrobium dichotomicum"]]},{"id":"NCBITaxon:46224","l":"Heyndrickxia sporothermodurans","na":1,"nb":1,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["NCBITaxon%3A46224","Heyndrickxia sporothermodurans"]]},{"id":"NCBITaxon:463301","l":"Halomonas korlensis","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A463301","Halomonas korlensis"]]},{"id":"NCBITaxon:46353","l":"Agrococcus jenensis","na":1,"nb":1,"a":[["surface-swab-habitatmech-bacdive-6911460a4a.html","Surface-swab"]],"b":[["NCBITaxon%3A46353","Agrococcus jenensis"]]},{"id":"NCBITaxon:463794","l":"Pseudomonas fluorescens BBc6R8","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A463794","Pseudomonas fluorescens BBc6R8"]]},{"id":"NCBITaxon:464","l":"Fluoribacter gormanii","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A464","Fluoribacter gormanii"]]},{"id":"NCBITaxon:469551","l":"Aquamicrobium ahrensii","na":1,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"]],"b":[["NCBITaxon%3A469551","Aquamicrobium ahrensii"]]},{"id":"NCBITaxon:469616","l":"Fusobacterium mortiferum ATCC 9817","na":1,"nb":1,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["NCBITaxon%3A469616","Fusobacterium mortiferum ATCC 9817"]]},{"id":"NCBITaxon:469869","l":"","na":1,"nb":1,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A469869","Virgibacillus arcticus"]]},{"id":"NCBITaxon:471473","l":"Chlamydia trachomatis L2b/UCH-1/proctitis","na":1,"nb":1,"a":[["lymph-node-bto-0000784.html","lymph node"]],"b":[["NCBITaxon%3A471473","Chlamydia trachomatis L2b/UCH-1/proctitis"]]},{"id":"NCBITaxon:471514","l":"","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A471514","Paenalicyclobacillus ferrooxydans"]]},{"id":"NCBITaxon:471575","l":"Photorhabdus cinerea","na":1,"nb":1,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A471575","Photorhabdus cinerea"]]},{"id":"NCBITaxon:471876","l":"Streptococcus pyogenes NZ131","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A471876","Streptococcus pyogenes NZ131"]]},{"id":"NCBITaxon:472","l":"Acinetobacter sp.","na":1,"nb":1,"a":[["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A472","Acinetobacter sp."]]},{"id":"NCBITaxon:472166","l":"","na":1,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A472166","Brevundimonas basaltis"]]},{"id":"NCBITaxon:472181","l":"","na":1,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A472181","Halopseudomonas sabulinigri"]]},{"id":"NCBITaxon:472183","l":"Shewanella basaltis","na":1,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A472183","Shewanella basaltis"]]},{"id":"NCBITaxon:472186","l":"","na":1,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A472186","Vibrio areninigrae"]]},{"id":"NCBITaxon:47254","l":"Leptolyngbya sp.","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A47254","Leptolyngbya sp."]]},{"id":"NCBITaxon:474949","l":"Granulicella aggregans","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A474949","Granulicella aggregans"]]},{"id":"NCBITaxon:474951","l":"","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A474951","Granulicella paludicola"]]},{"id":"NCBITaxon:474953","l":"","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A474953","Telmatobacter bradus"]]},{"id":"NCBITaxon:475299","l":"Algoriphagus aquaeductus","na":1,"nb":1,"a":[["drinking-water-envo-00003064.html","drinking water"]],"b":[["NCBITaxon%3A475299","Algoriphagus aquaeductus"]]},{"id":"NCBITaxon:475609","l":"Escherichia coli chi7122","na":1,"nb":1,"a":[["alveolus-bto-0000060.html","alveolus"]],"b":[["NCBITaxon%3A475609","Escherichia coli chi7122"]]},{"id":"NCBITaxon:476213","l":"Salmonella enterica subsp. enterica serovar Paratyphi C str. RKS4594","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A476213","Salmonella enterica subsp. enterica serovar Paratyphi C str. RKS4594"]]},{"id":"NCBITaxon:478010","l":"Microterricola pindariensis","na":1,"nb":1,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["NCBITaxon%3A478010","Microterricola pindariensis"]]},{"id":"NCBITaxon:478107","l":"Actinoallomurus iriomotensis","na":1,"nb":1,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A478107","Actinoallomurus iriomotensis"]]},{"id":"NCBITaxon:478111","l":"Actinoallomurus luridus","na":1,"nb":1,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A478111","Actinoallomurus luridus"]]},{"id":"NCBITaxon:47846","l":"Brachybacterium conglomeratum","na":1,"nb":1,"a":[["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"]],"b":[["NCBITaxon%3A47846","Brachybacterium conglomeratum"]]},{"id":"NCBITaxon:47988","l":"Actinoplanes auranticolor","na":1,"nb":1,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A47988","Actinoplanes auranticolor"]]},{"id":"NCBITaxon:480035","l":"Nocardia wallacei","na":1,"nb":1,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["NCBITaxon%3A480035","Nocardia wallacei"]]},{"id":"NCBITaxon:484020","l":"Bifidobacterium bifidum BGN4","na":1,"nb":1,"a":[["breast-bto-0000149.html","breast"]],"b":[["NCBITaxon%3A484020","Bifidobacterium bifidum BGN4"]]},{"id":"NCBITaxon:484021","l":"Klebsiella pneumoniae subsp. pneumoniae NTUH-K2044","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A484021","Klebsiella pneumoniae subsp. pneumoniae NTUH-K2044"]]},{"id":"NCBITaxon:48729","l":"Rhabdochromatium marinum","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A48729","Rhabdochromatium marinum"]]},{"id":"NCBITaxon:487514","l":"Mycobacterium kyorinense","na":1,"nb":1,"a":[["lymph-node-bto-0000784.html","lymph node"]],"b":[["NCBITaxon%3A487514","Mycobacterium kyorinense"]]},{"id":"NCBITaxon:488446","l":"Burkholderia latens","na":1,"nb":1,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"]],"b":[["NCBITaxon%3A488446","Burkholderia latens"]]},{"id":"NCBITaxon:488927","l":"Ipomoea phytoplasma","na":1,"nb":1,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A488927","Ipomoea phytoplasma"]]},{"id":"NCBITaxon:488938","l":"Desulfonatronospira delicata","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A488938","Desulfonatronospira delicata"]]},{"id":"NCBITaxon:489632","l":"Ectopseudomonas chengduensis","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A489632","Ectopseudomonas chengduensis"]]},{"id":"NCBITaxon:490098","l":"Methanobacterium flexile","na":1,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A490098","Methanobacterium flexile"]]},{"id":"NCBITaxon:490759","l":"Marinobacter sp. BSs20148","na":1,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A490759","Marinobacter sp. BSs20148"]]},{"id":"NCBITaxon:491207","l":"Chryseobacterium oleae","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A491207","Chryseobacterium oleae"]]},{"id":"NCBITaxon:491916","l":"Rhizobium etli CIAT 652","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A491916","Rhizobium etli CIAT 652"]]},{"id":"NCBITaxon:49252","l":"Eucampia antarctica","na":1,"nb":1,"a":[["saline-water-envo-00002010.html","saline water"]],"b":[["NCBITaxon%3A49252","Eucampia antarctica"]]},{"id":"NCBITaxon:49447","l":"Halochromatium salexigens","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A49447","Halochromatium salexigens"]]},{"id":"NCBITaxon:497963","l":"Streptococcus pneumoniae SP-BS293","na":1,"nb":1,"a":[["archeological-site-envo-00000564.html","archeological site"]],"b":[["NCBITaxon%3A497963","Streptococcus pneumoniae SP-BS293"]]},{"id":"NCBITaxon:498213","l":"Clostridium botulinum B1 str. Okra","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A498213","Clostridium botulinum B1 str. Okra"]]},{"id":"NCBITaxon:498214","l":"","na":1,"nb":1,"a":[["plateau-envo-00000182.html","plateau"]],"b":[["NCBITaxon%3A498214","Clostridium botulinum A3 str. Loch Maree"]]},{"id":"NCBITaxon:499174","l":"Clostridioides difficile QCD-23m63","na":1,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["NCBITaxon%3A499174","Clostridioides difficile QCD-23m63"]]},{"id":"NCBITaxon:500639","l":"Enterobacter cancerogenus ATCC 35316","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A500639","Enterobacter cancerogenus ATCC 35316"]]},{"id":"NCBITaxon:500640","l":"Citrobacter youngae ATCC 29220","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A500640","Citrobacter youngae ATCC 29220"]]},{"id":"NCBITaxon:502915","l":"Pseudomonas sp. AW54a","na":1,"nb":1,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["NCBITaxon%3A502915","Pseudomonas sp. AW54a"]]},{"id":"NCBITaxon:503997","l":"Hydrogenophaga sp. PL2G6","na":1,"nb":1,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A503997","Hydrogenophaga sp. PL2G6"]]},{"id":"NCBITaxon:504000","l":"Thauera sp. E7","na":1,"nb":1,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A504000","Thauera sp. E7"]]},{"id":"NCBITaxon:507522","l":"","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A507522","Klebsiella variicola 342"]]},{"id":"NCBITaxon:507619","l":"Chromobacterium sp. DS-1","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A507619","Chromobacterium sp. DS-1"]]},{"id":"NCBITaxon:507626","l":"Halomonas chromatireducens","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A507626","Halomonas chromatireducens"]]},{"id":"NCBITaxon:508767","l":"Clostridium botulinum E3 str. Alaska E43","na":1,"nb":1,"a":[["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A508767","Clostridium botulinum E3 str. Alaska E43"]]},{"id":"NCBITaxon:511062","l":"Oceanimonas sp. GK1","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A511062","Oceanimonas sp. GK1"]]},{"id":"NCBITaxon:512","l":"Alcaligenes sp","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A512","Alcaligenes sp."]]},{"id":"NCBITaxon:512762","l":"Kineococcus xinjiangensis","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A512762","Kineococcus xinjiangensis"]]},{"id":"NCBITaxon:513051","l":"Burkholderia multivorans CGD1","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A513051","Burkholderia multivorans CGD1"]]},{"id":"NCBITaxon:515393","l":"Pseudomonas yamanorum","na":1,"nb":1,"a":[["subarctic-habitatmech-bacdive-09ded89de7.html","Subarctic"]],"b":[["NCBITaxon%3A515393","Pseudomonas yamanorum"]]},{"id":"NCBITaxon:515415","l":"Microbacterium invictum","na":1,"nb":1,"a":[["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"]],"b":[["NCBITaxon%3A515415","Microbacterium invictum"]]},{"id":"NCBITaxon:515618","l":"Candidatus Riesia pediculicola USDA","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A515618","Candidatus Riesia pediculicola USDA"]]},{"id":"NCBITaxon:519989","l":"Ectothiorhodospira sp. PHS-1","na":1,"nb":1,"a":[["primordium-bto-0001886.html","primordium"]],"b":[["NCBITaxon%3A519989","Ectothiorhodospira sp. PHS-1"]]},{"id":"NCBITaxon:521013","l":"Limimaricola pyoseonensis","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A521013","Limimaricola pyoseonensis"]]},{"id":"NCBITaxon:524884","l":"Saccharopolyspora rosea","na":1,"nb":1,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["NCBITaxon%3A524884","Saccharopolyspora rosea"]]},{"id":"NCBITaxon:526588","l":"Vibrio ostreicida","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A526588","Vibrio ostreicida"]]},{"id":"NCBITaxon:526944","l":"Tetragenococcus osmophilus","na":1,"nb":1,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A526944","Tetragenococcus osmophilus"]]},{"id":"NCBITaxon:526947","l":"Rhizobium etli GR56","na":1,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["NCBITaxon%3A526947","Rhizobium etli GR56"]]},{"id":"NCBITaxon:526968","l":"Bacillus cereus R309803","na":1,"nb":1,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["NCBITaxon%3A526968","Bacillus cereus R309803"]]},{"id":"NCBITaxon:526971","l":"Bacillus cereus MM3","na":1,"nb":1,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A526971","Bacillus cereus MM3"]]},{"id":"NCBITaxon:527028","l":"","na":1,"nb":1,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A527028","Bacillus thuringiensis serovar pulsiensis BGSC 4CC1"]]},{"id":"NCBITaxon:52761","l":"Azospirillum largimobile","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["NCBITaxon%3A52761","Azospirillum largimobile"]]},{"id":"NCBITaxon:52770","l":"Buchananella hordeovulneris","na":1,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"]],"b":[["NCBITaxon%3A52770","Buchananella hordeovulneris"]]},{"id":"NCBITaxon:52771","l":"Actinomyces howellii","na":1,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["NCBITaxon%3A52771","Actinomyces howellii"]]},{"id":"NCBITaxon:52773","l":"Schaalia meyeri","na":1,"nb":1,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["NCBITaxon%3A52773","Schaalia meyeri"]]},{"id":"NCBITaxon:529005","l":"Sphingobium vermicomposti","na":1,"nb":1,"a":[["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"]],"b":[["NCBITaxon%3A529005","Sphingobium vermicomposti"]]},{"id":"NCBITaxon:531814","l":"","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A531814","Gracilibacillus ureilyticus"]]},{"id":"NCBITaxon:531938","l":"Lentzea atacamensis","na":1,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A531938","Lentzea atacamensis"]]},{"id":"NCBITaxon:53356","l":"Terracoccus luteus","na":1,"nb":1,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A53356","Terracoccus luteus"]]},{"id":"NCBITaxon:536044","l":"Methanolobus zinderi","na":1,"nb":1,"a":[["coalbed-water-habitatmech-bacdive-499e641dc2.html","Coalbed-water"]],"b":[["NCBITaxon%3A536044","Methanolobus zinderi"]]},{"id":"NCBITaxon:536230","l":"Burkholderia pseudomallei MSHR346","na":1,"nb":1,"a":[["hospital-envo-00002173.html","hospital"]],"b":[["NCBITaxon%3A536230","Burkholderia pseudomallei MSHR346"]]},{"id":"NCBITaxon:537021","l":"Candidatus Liberibacter asiaticus str. psy62","na":1,"nb":1,"a":[["phloem-bto-0001058.html","phloem"]],"b":[["NCBITaxon%3A537021","Candidatus Liberibacter asiaticus str. psy62"]]},{"id":"NCBITaxon:537288","l":"Megasphaera sp. DJF_B143","na":1,"nb":1,"a":[["hindgut-bto-0000510.html","hindgut"]],"b":[["NCBITaxon%3A537288","Megasphaera sp. DJF_B143"]]},{"id":"NCBITaxon:540251","l":"","na":1,"nb":1,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A540251","Rhodovulum steppense"]]},{"id":"NCBITaxon:54061","l":"Ralstonia sp.","na":1,"nb":1,"a":[["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A54061","Ralstonia sp."]]},{"id":"NCBITaxon:54067","l":"Xylophilus ampelinus","na":1,"nb":1,"a":[["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A54067","Xylophilus ampelinus"]]},{"id":"NCBITaxon:542300","l":"","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A542300","Acidicapsa ligni"]]},{"id":"NCBITaxon:543891","l":"Comamonas testosteroni CNB-1","na":1,"nb":1,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A543891","Comamonas testosteroni CNB-1"]]},{"id":"NCBITaxon:544405","l":"Helicobacter pylori 98-10","na":1,"nb":1,"a":[["duodenum-bto-0000365.html","duodenum"]],"b":[["NCBITaxon%3A544405","Helicobacter pylori 98-10"]]},{"id":"NCBITaxon:544406","l":"Helicobacter pylori B128","na":1,"nb":1,"a":[["duodenum-bto-0000365.html","duodenum"]],"b":[["NCBITaxon%3A544406","Helicobacter pylori B128"]]},{"id":"NCBITaxon:544480","l":"Shinella fusca","na":1,"nb":1,"a":[["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"]],"b":[["NCBITaxon%3A544480","Shinella fusca"]]},{"id":"NCBITaxon:546115","l":"","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A546115","Microbacterium ginsengiterrae"]]},{"id":"NCBITaxon:548474","l":"Staphylococcus aureus subsp. aureus TCH130","na":1,"nb":1,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"]],"b":[["NCBITaxon%3A548474","Staphylococcus aureus subsp. aureus TCH130"]]},{"id":"NCBITaxon:5530","l":"Metarhizium anisopliae","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A5530","Metarhizium anisopliae"]]},{"id":"NCBITaxon:553198","l":"Propionibacterium acidifaciens F0233","na":1,"nb":1,"a":[["central-nervous-system-bto-0000227.html","central nervous system"]],"b":[["NCBITaxon%3A553198","Propionibacterium acidifaciens F0233"]]},{"id":"NCBITaxon:553217","l":"Enhydrobacter aerosaccus SK60","na":1,"nb":1,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A553217","Enhydrobacter aerosaccus SK60"]]},{"id":"NCBITaxon:553480","l":"Photorhabdus asymbiotica subsp. asymbiotica ATCC 43949","na":1,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A553480","Photorhabdus asymbiotica subsp. asymbiotica ATCC 43949"]]},{"id":"NCBITaxon:554290","l":"Salmonella enterica subsp. enterica serovar Paratyphi A str. AKU_12601","na":1,"nb":1,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["NCBITaxon%3A554290","Salmonella enterica subsp. enterica serovar Paratyphi A str. AKU_12601"]]},{"id":"NCBITaxon:555372","l":"","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A555372","Plantactinospora siamensis"]]},{"id":"NCBITaxon:555793","l":"Novosphingobium sp. Rr 2-17","na":1,"nb":1,"a":[["crown-gall-bto-0000303.html","crown gall"]],"b":[["NCBITaxon%3A555793","Novosphingobium sp. Rr 2-17"]]},{"id":"NCBITaxon:556258","l":"Bacteroides sp. D1","na":1,"nb":1,"a":[["bay-envo-00000032.html","bay"]],"b":[["NCBITaxon%3A556258","Bacteroides sp. D1"]]},{"id":"NCBITaxon:558165","l":"Chryseomicrobium amylolyticum","na":1,"nb":1,"a":[["semiarid-habitatmech-bacdive-766cd9f54f.html","Semiarid"]],"b":[["NCBITaxon%3A558165","Chryseomicrobium amylolyticum"]]},{"id":"NCBITaxon:560080","l":"Shewanella corallii","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A560080","Shewanella corallii"]]},{"id":"NCBITaxon:563008","l":"Segatella oris C735","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A563008","Segatella oris C735"]]},{"id":"NCBITaxon:563036","l":"Streptococcus sp. C300","na":1,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["NCBITaxon%3A563036","Streptococcus sp. C300"]]},{"id":"NCBITaxon:563045","l":"Comamonas testosteroni S44","na":1,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"]],"b":[["NCBITaxon%3A563045","Comamonas testosteroni S44"]]},{"id":"NCBITaxon:564421","l":"Pseudomonas fluorescens NZ052","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A564421","Pseudomonas fluorescens NZ052"]]},{"id":"NCBITaxon:564422","l":"","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A564422","Pseudomonas fluorescens NZI7"]]},{"id":"NCBITaxon:565645","l":"Enterococcus faecalis Merz96","na":1,"nb":1,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["NCBITaxon%3A565645","Enterococcus faecalis Merz96"]]},{"id":"NCBITaxon:568099","l":"Litorimonas taeanensis","na":1,"nb":1,"a":[["beach-envo-00000091.html","beach"]],"b":[["NCBITaxon%3A568099","Litorimonas taeanensis"]]},{"id":"NCBITaxon:569857","l":"Staphylococcus microti","na":1,"nb":1,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A569857","Staphylococcus microti"]]},{"id":"NCBITaxon:569860","l":"Methylovirgula ligni","na":1,"nb":1,"a":[["wood-envo-00002040.html","wood"]],"b":[["NCBITaxon%3A569860","Methylovirgula ligni"]]},{"id":"NCBITaxon:57001","l":"Amaricoccus macauensis","na":1,"nb":1,"a":[["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"]],"b":[["NCBITaxon%3A57001","Amaricoccus macauensis"]]},{"id":"NCBITaxon:570936","l":"","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A570936","Pseudonocardia parietis"]]},{"id":"NCBITaxon:571190","l":"Saccharothrix saharensis","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A571190","Saccharothrix saharensis"]]},{"id":"NCBITaxon:571256","l":"Brucella pituitosa","na":1,"nb":1,"a":[["seedling-bto-0001228.html","seedling"]],"b":[["NCBITaxon%3A571256","Brucella pituitosa"]]},{"id":"NCBITaxon:571298","l":"Aliiruegeria lutimaris","na":1,"nb":1,"a":[["sandstone-envo-00002055.html","sandstone"]],"b":[["NCBITaxon%3A571298","Aliiruegeria lutimaris"]]},{"id":"NCBITaxon:573737","l":"Pandoraea oxalativorans","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A573737","Pandoraea oxalativorans"]]},{"id":"NCBITaxon:574375","l":"Bacillus gaemokensis","na":1,"nb":1,"a":[["bl-3-cell-bto-0004404.html","BL-3 cell"]],"b":[["NCBITaxon%3A574375","Bacillus gaemokensis"]]},{"id":"NCBITaxon:574699","l":"Laceyella tengchongensis","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A574699","Laceyella tengchongensis"]]},{"id":"NCBITaxon:575599","l":"Limosilactobacillus fermentum 28-3-CHN","na":1,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["NCBITaxon%3A575599","Limosilactobacillus fermentum 28-3-CHN"]]},{"id":"NCBITaxon:575611","l":"Segatella buccae D17","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A575611","Segatella buccae D17"]]},{"id":"NCBITaxon:575612","l":"Prevotella melaninogenica D18","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A575612","Prevotella melaninogenica D18"]]},{"id":"NCBITaxon:575614","l":"Prevotella sp. oral taxon 299 str. F0039","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A575614","Prevotella sp. oral taxon 299 str. F0039"]]},{"id":"NCBITaxon:576","l":"Klebsiella sp.","na":1,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"]],"b":[["NCBITaxon%3A576","Klebsiella sp."]]},{"id":"NCBITaxon:578460","l":"Vairimorpha ceranae BRL01","na":1,"nb":1,"a":[["microsporidian-bto-0003132.html","microsporidian"]],"b":[["NCBITaxon%3A578460","Vairimorpha ceranae BRL01"]]},{"id":"NCBITaxon:578943","l":"Dongia mobilis","na":1,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A578943","Dongia mobilis"]]},{"id":"NCBITaxon:580050","l":"Bifidobacterium animalis subsp. lactis Bl-04","na":1,"nb":1,"a":[["intestinal-epithelium-bto-0000781.html","intestinal epithelium"]],"b":[["NCBITaxon%3A580050","Bifidobacterium animalis subsp. lactis Bl-04"]]},{"id":"NCBITaxon:582419","l":"Thermococcus paralvinellae","na":1,"nb":1,"a":[["chago-k-1-cell-bto-0003108.html","ChaGo-K-1 cell"]],"b":[["NCBITaxon%3A582419","Thermococcus paralvinellae"]]},{"id":"NCBITaxon:5866","l":"Babesia bigemina","na":1,"nb":1,"a":[["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["NCBITaxon%3A5866","Babesia bigemina"]]},{"id":"NCBITaxon:586733","l":"Staphylococcus devriesei","na":1,"nb":1,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["NCBITaxon%3A586733","Staphylococcus devriesei"]]},{"id":"NCBITaxon:590061","l":"Halomonas sp. KM-1","na":1,"nb":1,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["NCBITaxon%3A590061","Halomonas sp. KM-1"]]},{"id":"NCBITaxon:591023","l":"Actinobacillus minor 202","na":1,"nb":1,"a":[["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["NCBITaxon%3A591023","Actinobacillus minor 202"]]},{"id":"NCBITaxon:591158","l":"Streptomyces sp. AA4","na":1,"nb":1,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["NCBITaxon%3A591158","Streptomyces sp. AA4"]]},{"id":"NCBITaxon:59277","l":"Methanobacterium subterraneum","na":1,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A59277","Methanobacterium subterraneum"]]},{"id":"NCBITaxon:593135","l":"Orbus hercynius","na":1,"nb":1,"a":[["zoological-garden-envo-00010625.html","zoological garden"]],"b":[["NCBITaxon%3A593135","Orbus hercynius"]]},{"id":"NCBITaxon:59406","l":"Aromatoleum evansii","na":1,"nb":1,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A59406","Aromatoleum evansii"]]},{"id":"NCBITaxon:595416","l":"Rhodopirellula sp. CS15","na":1,"nb":1,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A595416","Rhodopirellula sp. CS15"]]},{"id":"NCBITaxon:595537","l":"Variovorax paradoxus EPS","na":1,"nb":1,"a":[["environmental-material-envo-00010483.html","environmental material"]],"b":[["NCBITaxon%3A595537","Variovorax paradoxus EPS"]]},{"id":"NCBITaxon:59561","l":"Trueperella bernardiae","na":1,"nb":1,"a":[["foot-bto-0000476.html","foot"]],"b":[["NCBITaxon%3A59561","Trueperella bernardiae"]]},{"id":"NCBITaxon:596320","l":"Neisseria flavescens SK114","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A596320","Neisseria flavescens SK114"]]},{"id":"NCBITaxon:596322","l":"Streptococcus salivarius SK126","na":1,"nb":1,"a":[["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A596322","Streptococcus salivarius SK126"]]},{"id":"NCBITaxon:596330","l":"Peptoniphilus lacrimalis 315-B","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A596330","Peptoniphilus lacrimalis 315-B"]]},{"id":"NCBITaxon:598553","l":"Clostridium sp. enrichment culture clone 7-25","na":1,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["NCBITaxon%3A598553","Clostridium sp. enrichment culture clone 7-25"]]},{"id":"NCBITaxon:59920","l":"Prochlorococcus marinus str. NATL2A","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A59920","Prochlorococcus marinus str. NATL2A"]]},{"id":"NCBITaxon:604330","l":"Parafannyhessea umbonata","na":1,"nb":1,"a":[["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"]],"b":[["NCBITaxon%3A604330","Parafannyhessea umbonata"]]},{"id":"NCBITaxon:60480","l":"","na":1,"nb":1,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["NCBITaxon%3A60480","Shewanella sp. MR-4"]]},{"id":"NCBITaxon:61169","l":"Alicyclobacillus sp.","na":1,"nb":1,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A61169","Alicyclobacillus sp."]]},{"id":"NCBITaxon:614648","l":"Ureibacillus xyleni","na":1,"nb":1,"a":[["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["NCBITaxon%3A614648","Ureibacillus xyleni"]]},{"id":"NCBITaxon:617000","l":"Desulfonatronovibrio thiodismutans","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A617000","Desulfonatronovibrio thiodismutans"]]},{"id":"NCBITaxon:617001","l":"Desulfonatronum thioautotrophicum","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A617001","Desulfonatronum thioautotrophicum"]]},{"id":"NCBITaxon:619693","l":"Prevotella sp. oral taxon 472 str. F0295","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A619693","Prevotella sp. oral taxon 472 str. F0295"]]},{"id":"NCBITaxon:622617","l":"Burkholderia sp. JS667","na":1,"nb":1,"a":[["waste-treatment-plant-envo-00002272.html","waste treatment plant"]],"b":[["NCBITaxon%3A622617","Burkholderia sp. JS667"]]},{"id":"NCBITaxon:634436","l":"Marisediminitalea aggregata","na":1,"nb":1,"a":[["mangrove-biome-envo-01000181.html","mangrove biome"]],"b":[["NCBITaxon%3A634436","Marisediminitalea aggregata"]]},{"id":"NCBITaxon:634500","l":"Erwinia billingiae Eb661","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A634500","Erwinia billingiae Eb661"]]},{"id":"NCBITaxon:634504","l":"Bartonella grahamii as4aup","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A634504","Bartonella grahamii as4aup"]]},{"id":"NCBITaxon:634956","l":"Parageobacillus thermoglucosidasius C56-YS93","na":1,"nb":1,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A634956","Parageobacillus thermoglucosidasius C56-YS93"]]},{"id":"NCBITaxon:637386","l":"Yersinia pestis Z176003","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A637386","Yersinia pestis Z176003"]]},{"id":"NCBITaxon:637910","l":"Citrobacter rodentium ICC168","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A637910","Citrobacter rodentium ICC168"]]},{"id":"NCBITaxon:640131","l":"Klebsiella variicola At-22","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A640131","Klebsiella variicola At-22"]]},{"id":"NCBITaxon:640938","l":"Trichococcus ilyis","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A640938","Trichococcus ilyis"]]},{"id":"NCBITaxon:641491","l":"Pseudodesulfovibrio mercurii","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A641491","Pseudodesulfovibrio mercurii"]]},{"id":"NCBITaxon:643568","l":"Sphingomonas xinjiangensis","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A643568","Sphingomonas xinjiangensis"]]},{"id":"NCBITaxon:643672","l":"","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A643672","Singulisphaera rosea"]]},{"id":"NCBITaxon:643673","l":"Paenochrobactrum gallinarii","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A643673","Paenochrobactrum gallinarii"]]},{"id":"NCBITaxon:645465","l":"Streptomyces sp. e14","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A645465","Streptomyces sp. e14"]]},{"id":"NCBITaxon:645472","l":"Halomonas sp. HTNK1","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A645472","Halomonas sp. HTNK1"]]},{"id":"NCBITaxon:645887","l":"Alkalibaculum bacchi","na":1,"nb":1,"a":[["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A645887","Alkalibaculum bacchi"]]},{"id":"NCBITaxon:648999","l":"Micromonospora sp. L5","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A648999","Micromonospora sp. L5"]]},{"id":"NCBITaxon:649007","l":"Dactylosporangium luteum","na":1,"nb":1,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A649007","Dactylosporangium luteum"]]},{"id":"NCBITaxon:649008","l":"Dactylosporangium luridum","na":1,"nb":1,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A649008","Dactylosporangium luridum"]]},{"id":"NCBITaxon:649760","l":"Segatella oris F0302","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A649760","Segatella oris F0302"]]},{"id":"NCBITaxon:649761","l":"Prevotella veroralis F0319","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A649761","Prevotella veroralis F0319"]]},{"id":"NCBITaxon:651661","l":"Dyadobacter psychrophilus","na":1,"nb":1,"a":[["contaminated-soil-envo-00002116.html","contaminated soil"]],"b":[["NCBITaxon%3A651661","Dyadobacter psychrophilus"]]},{"id":"NCBITaxon:651822","l":"Fretibacterium fastidiosum","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A651822","Fretibacterium fastidiosum"]]},{"id":"NCBITaxon:652103","l":"Rhodopseudomonas palustris DX-1","na":1,"nb":1,"a":[["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A652103","Rhodopseudomonas palustris DX-1"]]},{"id":"NCBITaxon:652788","l":"Mucilaginibacter frigoritolerans","na":1,"nb":1,"a":[["area-designated-as-a-nature-reserve-envo-00000363.html","area designated as a nature reserve"]],"b":[["NCBITaxon%3A652788","Mucilaginibacter frigoritolerans"]]},{"id":"NCBITaxon:653045","l":"Streptomyces violaceusniger Tu 4113","na":1,"nb":1,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A653045","Streptomyces violaceusniger Tu 4113"]]},{"id":"NCBITaxon:653940","l":"Basfia succiniciproducens","na":1,"nb":1,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"]],"b":[["NCBITaxon%3A653940","Basfia succiniciproducens"]]},{"id":"NCBITaxon:657014","l":"Thalassovita taeanensis","na":1,"nb":1,"a":[["beach-envo-00000091.html","beach"]],"b":[["NCBITaxon%3A657014","Thalassovita taeanensis"]]},{"id":"NCBITaxon:657319","l":"[Eubacterium] siraeum 70/3","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A657319","[Eubacterium] siraeum 70/3"]]},{"id":"NCBITaxon:657321","l":"Ruminococcus bromii L2-63","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A657321","Ruminococcus bromii L2-63"]]},{"id":"NCBITaxon:658172","l":"Candidatus Liberibacter solanacearum CLso-ZC1","na":1,"nb":1,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A658172","Candidatus Liberibacter solanacearum CLso-ZC1"]]},{"id":"NCBITaxon:663321","l":"Candidatus Regiella insecticola LSR1","na":1,"nb":1,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A663321","Candidatus Regiella insecticola LSR1"]]},{"id":"NCBITaxon:663386","l":"","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A663386","Pseudonocardia babensis"]]},{"id":"NCBITaxon:663602","l":"Actinomycetospora corticicola","na":1,"nb":1,"a":[["wood-envo-00002040.html","wood"]],"b":[["NCBITaxon%3A663602","Actinomycetospora corticicola"]]},{"id":"NCBITaxon:663607","l":"Actinomycetospora straminea","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A663607","Actinomycetospora straminea"]]},{"id":"NCBITaxon:663609","l":"Actinomycetospora cinnamomea","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A663609","Actinomycetospora cinnamomea"]]},{"id":"NCBITaxon:663917","l":"Geobacter sulfurreducens KN400","na":1,"nb":1,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A663917","Geobacter sulfurreducens KN400"]]},{"id":"NCBITaxon:665118","l":"Devosia enhydra","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A665118","Devosia enhydra"]]},{"id":"NCBITaxon:665131","l":"Prosthecomicrobium sp. ATCC 27835","na":1,"nb":1,"a":[["factory-envo-01000536.html","factory"]],"b":[["NCBITaxon%3A665131","Prosthecomicrobium sp. ATCC 27835"]]},{"id":"NCBITaxon:665467","l":"Bauldia litoralis","na":1,"nb":1,"a":[["sound-envo-00000393.html","sound"]],"b":[["NCBITaxon%3A665467","Bauldia litoralis"]]},{"id":"NCBITaxon:668820","l":"Burkholderia sp. JPY366","na":1,"nb":1,"a":[["bayou-envo-00000234.html","bayou"]],"b":[["NCBITaxon%3A668820","Burkholderia sp. JPY366"]]},{"id":"NCBITaxon:669365","l":"Microcoleus vaginatus PCC 9802","na":1,"nb":1,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A669365","Microcoleus vaginatus PCC 9802"]]},{"id":"NCBITaxon:670481","l":"Nocardioides sp. SG-4G","na":1,"nb":1,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A670481","Nocardioides sp. SG-4G"]]},{"id":"NCBITaxon:670484","l":"Citrobacter freundii str. ballerup 7851/39","na":1,"nb":1,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["NCBITaxon%3A670484","Citrobacter freundii str. ballerup 7851/39"]]},{"id":"NCBITaxon:670890","l":"Escherichia coli LT-68","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A670890","Escherichia coli LT-68"]]},{"id":"NCBITaxon:670895","l":"Escherichia coli EPEC11","na":1,"nb":1,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["NCBITaxon%3A670895","Escherichia coli EPEC11"]]},{"id":"NCBITaxon:670899","l":"Escherichia coli RN587/1","na":1,"nb":1,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["NCBITaxon%3A670899","Escherichia coli RN587/1"]]},{"id":"NCBITaxon:674977","l":"Vibrio alginolyticus 40B","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A674977","Vibrio alginolyticus 40B"]]},{"id":"NCBITaxon:675518","l":"Mycobacterium tuberculosis SUMu007","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A675518","Mycobacterium tuberculosis SUMu007"]]},{"id":"NCBITaxon:675864","l":"Auraticoccus monumenti","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A675864","Auraticoccus monumenti"]]},{"id":"NCBITaxon:67855","l":"Muribacter muris","na":1,"nb":1,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["NCBITaxon%3A67855","Muribacter muris"]]},{"id":"NCBITaxon:679191","l":"Prevotella amnii CRIS 21A-A","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A679191","Prevotella amnii CRIS 21A-A"]]},{"id":"NCBITaxon:680198","l":"Streptomyces scabiei 87.22","na":1,"nb":1,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A680198","Streptomyces scabiei 87.22"]]},{"id":"NCBITaxon:680375","l":"Desulfonatronum alkalitolerans","na":1,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"]],"b":[["NCBITaxon%3A680375","Desulfonatronum alkalitolerans"]]},{"id":"NCBITaxon:681339","l":"Halothiobacillus sp. HL2","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A681339","Halothiobacillus sp. HL2"]]},{"id":"NCBITaxon:681573","l":"Streptococcus equi subsp. zooepidemicus BHS5","na":1,"nb":1,"a":[["peripheral-blood-mononuclear-cell-bto-0001025.html","peripheral blood mononuclear cell"]],"b":[["NCBITaxon%3A681573","Streptococcus equi subsp. zooepidemicus BHS5"]]},{"id":"NCBITaxon:68170","l":"","na":1,"nb":1,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["NCBITaxon%3A68170","Lentzea aerocolonigenes"]]},{"id":"NCBITaxon:682979","l":"Microlunatus parietis","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A682979","Microlunatus parietis"]]},{"id":"NCBITaxon:68570","l":"","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A1971","Streptomyces noursei"]]},{"id":"NCBITaxon:68766","l":"Fusobacterium sp.","na":1,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["NCBITaxon%3A68766","Fusobacterium sp."]]},{"id":"NCBITaxon:68825","l":"Rasamsonia emersonii","na":1,"nb":1,"a":[["mountain-pass-envo-00000084.html","mountain pass"]],"b":[["NCBITaxon%3A68825","Rasamsonia emersonii"]]},{"id":"NCBITaxon:688867","l":"Ohtaekwangia koreensis","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A688867","Ohtaekwangia koreensis"]]},{"id":"NCBITaxon:688913","l":"Ohtaekwangia kribbensis","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A688913","Ohtaekwangia kribbensis"]]},{"id":"NCBITaxon:69208","l":"Clostridium polyendosporum","na":1,"nb":1,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A69208","Clostridium polyendosporum"]]},{"id":"NCBITaxon:69221","l":"Pectobacterium cacticida","na":1,"nb":1,"a":[["xerophytic-habitatmech-bacdive-3abed720b8.html","Xerophytic"]],"b":[["NCBITaxon%3A69221","Pectobacterium cacticida"]]},{"id":"NCBITaxon:69328","l":"Pseudomonas sp. VLB120","na":1,"nb":1,"a":[["g-cell-bto-0004108.html","G cell"]],"b":[["NCBITaxon%3A69328","Pseudomonas sp. VLB120"]]},{"id":"NCBITaxon:69370","l":"Microbacterium trichothecenolyticum","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A69370","Microbacterium trichothecenolyticum"]]},{"id":"NCBITaxon:69392","l":"Stenotrophomonas sp.","na":1,"nb":1,"a":[["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["NCBITaxon%3A69392","Stenotrophomonas sp."]]},{"id":"NCBITaxon:69485","l":"Actinoplanes garbadinensis","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A69485","Actinoplanes garbadinensis"]]},{"id":"NCBITaxon:695560","l":"Lactobacillus amylovorus GRL 1112","na":1,"nb":1,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["NCBITaxon%3A695560","Lactobacillus amylovorus GRL 1112"]]},{"id":"NCBITaxon:696125","l":"Bartonella clarridgeiae 73","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A696125","Bartonella clarridgeiae 73"]]},{"id":"NCBITaxon:696216","l":"Streptococcus constellatus subsp. pharyngis C232","na":1,"nb":1,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A696216","Streptococcus constellatus subsp. pharyngis C232"]]},{"id":"NCBITaxon:69666","l":"Caulobacter mirabilis","na":1,"nb":1,"a":[["scolex-bto-0002305.html","scolex"]],"b":[["NCBITaxon%3A69666","Caulobacter mirabilis"]]},{"id":"NCBITaxon:69670","l":"Brevundimonas halotolerans","na":1,"nb":1,"a":[["brackish-water-body-envo-01001321.html","brackish water body"]],"b":[["NCBITaxon%3A69670","Brevundimonas halotolerans"]]},{"id":"NCBITaxon:69773","l":"Penicillium glabrum","na":1,"nb":1,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["NCBITaxon%3A69773","Penicillium glabrum"]]},{"id":"NCBITaxon:69960","l":"Rhodospira trueperi","na":1,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"]],"b":[["NCBITaxon%3A69960","Rhodospira trueperi"]]},{"id":"NCBITaxon:700500","l":"Catenisphaera adipataccumulans","na":1,"nb":1,"a":[["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"]],"b":[["NCBITaxon%3A700500","Catenisphaera adipataccumulans"]]},{"id":"NCBITaxon:702452","l":"Listeria seeligeri FSL S4-171","na":1,"nb":1,"a":[["village-biome-envo-01000246.html","village biome"]],"b":[["NCBITaxon%3A702452","Listeria seeligeri FSL S4-171"]]},{"id":"NCBITaxon:702459","l":"Bifidobacterium bifidum PRL2010","na":1,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["NCBITaxon%3A702459","Bifidobacterium bifidum PRL2010"]]},{"id":"NCBITaxon:702568","l":"Litoribacter ruber","na":1,"nb":1,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A702568","Litoribacter ruber"]]},{"id":"NCBITaxon:703577","l":"Dactylosporangium aurantiacum subsp. hamdenensis","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A703577","Dactylosporangium aurantiacum subsp. hamdenensis"]]},{"id":"NCBITaxon:704201","l":"Nesterenkonia sp.","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A704201","Nesterenkonia sp."]]},{"id":"NCBITaxon:70586","l":"Aquabacterium commune","na":1,"nb":1,"a":[["drinking-water-envo-00003064.html","drinking water"]],"b":[["NCBITaxon%3A70586","Aquabacterium commune"]]},{"id":"NCBITaxon:706422","l":"Streptomyces sp. x4(2010)","na":1,"nb":1,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A706422","Streptomyces sp. x4(2010)"]]},{"id":"NCBITaxon:706433","l":"Solobacterium moorei F0204","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A706433","Solobacterium moorei F0204"]]},{"id":"NCBITaxon:708248","l":"Mycoplasma suis KI3806","na":1,"nb":1,"a":[["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["NCBITaxon%3A708248","Mycoplasma suis KI3806"]]},{"id":"NCBITaxon:70856","l":"Aeromonas popoffii","na":1,"nb":1,"a":[["factory-envo-01000536.html","factory"]],"b":[["NCBITaxon%3A70856","Aeromonas popoffii"]]},{"id":"NCBITaxon:710421","l":"Mycolicibacterium chubuense NBB4","na":1,"nb":1,"a":[["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"]],"b":[["NCBITaxon%3A710421","Mycolicibacterium chubuense NBB4"]]},{"id":"NCBITaxon:710687","l":"Mycolicibacterium tusciae JS617","na":1,"nb":1,"a":[["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"]],"b":[["NCBITaxon%3A710687","Mycolicibacterium tusciae JS617"]]},{"id":"NCBITaxon:710992","l":"uncultured Sphingobacterium sp. EB080_L08E11","na":1,"nb":1,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"]],"b":[["NCBITaxon%3A710992","uncultured Sphingobacterium sp. EB080_L08E11"]]},{"id":"NCBITaxon:712898","l":"Pantoea vagans C9-1","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A712898","Pantoea vagans C9-1"]]},{"id":"NCBITaxon:714166","l":"Streptomyces endophyticus","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A714166","Streptomyces endophyticus"]]},{"id":"NCBITaxon:71421","l":"Haemophilus influenzae (strain ATCC 51907 / DSM 11121 / KW20 / Rd)","na":1,"nb":1,"a":[["respiratory-mucosa-bto-0000973.html","respiratory mucosa"]],"b":[["NCBITaxon%3A71421","Haemophilus influenzae Rd KW20"]]},{"id":"NCBITaxon:716659","l":"Collimonas sp. MPS11E8","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A716659","Collimonas sp. MPS11E8"]]},{"id":"NCBITaxon:717522","l":"Mycobacterium tuberculosis variant bovis BCG str. Mexico","na":1,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A717522","Mycobacterium tuberculosis variant bovis BCG str. Mexico"]]},{"id":"NCBITaxon:718254","l":"Enterobacter cloacae subsp. cloacae NCTC 9394","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A718254","Enterobacter cloacae subsp. cloacae NCTC 9394"]]},{"id":"NCBITaxon:720633","l":"Lysinibacillus composti","na":1,"nb":1,"a":[["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"]],"b":[["NCBITaxon%3A720633","Lysinibacillus composti"]]},{"id":"NCBITaxon:722","l":"Actinobacillus seminis","na":1,"nb":1,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"]],"b":[["NCBITaxon%3A722","Actinobacillus seminis"]]},{"id":"NCBITaxon:722413","l":"Bradyrhizobium sp. JS329","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A722413","Bradyrhizobium sp. JS329"]]},{"id":"NCBITaxon:722911","l":"Bifidobacterium longum subsp. longum F8","na":1,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["NCBITaxon%3A722911","Bifidobacterium longum subsp. longum F8"]]},{"id":"NCBITaxon:728004","l":"Glaciimonas immobilis","na":1,"nb":1,"a":[["glacier-envo-00000133.html","glacier"]],"b":[["NCBITaxon%3A728004","Glaciimonas immobilis"]]},{"id":"NCBITaxon:732241","l":"Neomicrococcus lactis","na":1,"nb":1,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["NCBITaxon%3A732241","Neomicrococcus lactis"]]},{"id":"NCBITaxon:735332","l":"Leptothrix ochracea L12","na":1,"nb":1,"a":[["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A735332","Leptothrix ochracea L12"]]},{"id":"NCBITaxon:741093","l":"Escherichia coli Xuzhou21","na":1,"nb":1,"a":[["peripheral-blood-mononuclear-cell-bto-0001025.html","peripheral blood mononuclear cell"]],"b":[["NCBITaxon%3A741093","Escherichia coli Xuzhou21"]]},{"id":"NCBITaxon:742013","l":"Delftia sp. Cs1-4","na":1,"nb":1,"a":[["waterfall-envo-00000040.html","waterfall"]],"b":[["NCBITaxon%3A742013","Delftia sp. Cs1-4"]]},{"id":"NCBITaxon:742741","l":"[Clostridium] symbiosum WAL-14673","na":1,"nb":1,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["NCBITaxon%3A742741","[Clostridium] symbiosum WAL-14673"]]},{"id":"NCBITaxon:743720","l":"Pseudomonas fulva 12-X","na":1,"nb":1,"a":[["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["NCBITaxon%3A743720","Pseudomonas fulva 12-X"]]},{"id":"NCBITaxon:743721","l":"Pseudoxanthomonas suwonensis 11-1","na":1,"nb":1,"a":[["compost-envo-00002170.html","compost"]],"b":[["NCBITaxon%3A743721","Pseudoxanthomonas suwonensis 11-1"]]},{"id":"NCBITaxon:744980","l":"Roseibium sp. TrichSKD4","na":1,"nb":1,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A744980","Roseibium sp. TrichSKD4"]]},{"id":"NCBITaxon:74546","l":"Prochlorococcus marinus str. MIT 9312","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A74546","Prochlorococcus marinus str. MIT 9312"]]},{"id":"NCBITaxon:74547","l":"Prochlorococcus marinus str. MIT 9313","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A74547","Prochlorococcus marinus str. MIT 9313"]]},{"id":"NCBITaxon:748224","l":"Faecalibacterium cf. prausnitzii KLE1255","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A748224","Faecalibacterium cf. prausnitzii KLE1255"]]},{"id":"NCBITaxon:748671","l":"Lactobacillus crispatus ST1","na":1,"nb":1,"a":[["poultry-litter-envo-00002192.html","poultry litter"]],"b":[["NCBITaxon%3A748671","Lactobacillus crispatus ST1"]]},{"id":"NCBITaxon:749414","l":"","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A749414","Streptomyces bingchenggensis BCW-1"]]},{"id":"NCBITaxon:74969","l":"Ferroplasma acidiphilum","na":1,"nb":1,"a":[["factory-envo-01000536.html","factory"]],"b":[["NCBITaxon%3A74969","Ferroplasma acidiphilum"]]},{"id":"NCBITaxon:749927","l":"Amycolatopsis mediterranei U32","na":1,"nb":1,"a":[["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["NCBITaxon%3A749927","Amycolatopsis mediterranei U32"]]},{"id":"NCBITaxon:754088","l":"Escherichia coli STEC_H.I.8","na":1,"nb":1,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["NCBITaxon%3A754088","Escherichia coli STEC_H.I.8"]]},{"id":"NCBITaxon:754476","l":"Methylophaga nitratireducenticrescens","na":1,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A754476","Methylophaga nitratireducenticrescens"]]},{"id":"NCBITaxon:754477","l":"Methylophaga frappieri","na":1,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A754477","Methylophaga frappieri"]]},{"id":"NCBITaxon:754762","l":"Rhizobium leguminosarum bv. trifolii WSM2297","na":1,"nb":1,"a":[["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A754762","Rhizobium leguminosarum bv. trifolii WSM2297"]]},{"id":"NCBITaxon:755731","l":"Clostridium sp. BNL1100","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A755731","Clostridium sp. BNL1100"]]},{"id":"NCBITaxon:757424","l":"Herbaspirillum seropedicae SmR1","na":1,"nb":1,"a":[["environmental-material-envo-00010483.html","environmental material"]],"b":[["NCBITaxon%3A757424","Herbaspirillum seropedicae SmR1"]]},{"id":"NCBITaxon:758793","l":"Caballeronia insecticola","na":1,"nb":1,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["NCBITaxon%3A758793","Caballeronia insecticola"]]},{"id":"NCBITaxon:758831","l":"Escherichia coli ECC-1470","na":1,"nb":1,"a":[["mammary-epithelial-cell-bto-0004300.html","mammary epithelial cell"]],"b":[["NCBITaxon%3A758831","Escherichia coli ECC-1470"]]},{"id":"NCBITaxon:761659","l":"Salinibacter ruber M8","na":1,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["NCBITaxon%3A761659","Salinibacter ruber M8"]]},{"id":"NCBITaxon:763993","l":"Pseudokineococcus lusitanus","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A763993","Pseudokineococcus lusitanus"]]},{"id":"NCBITaxon:765067","l":"Cutibacterium acnes HL053PA2","na":1,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A765067","Cutibacterium acnes HL053PA2"]]},{"id":"NCBITaxon:765109","l":"Cutibacterium modestum HL044PA1","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A765109","Cutibacterium modestum HL044PA1"]]},{"id":"NCBITaxon:765118","l":"Cutibacterium acnes HL007PA1","na":1,"nb":1,"a":[["research-facility-envo-00000469.html","research facility"]],"b":[["NCBITaxon%3A765118","Cutibacterium acnes HL007PA1"]]},{"id":"NCBITaxon:767452","l":"Serinicoccus chungangensis","na":1,"nb":1,"a":[["duodenal-mucosa-bto-0000367.html","duodenal mucosa"]],"b":[["NCBITaxon%3A767452","Serinicoccus chungangensis"]]},{"id":"NCBITaxon:767465","l":"Mycoplasmopsis bovis HB0801","na":1,"nb":1,"a":[["lymph-node-bto-0000784.html","lymph node"]],"b":[["NCBITaxon%3A767465","Mycoplasmopsis bovis HB0801"]]},{"id":"NCBITaxon:76775","l":"Malassezia restricta","na":1,"nb":1,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["NCBITaxon%3A76775","Malassezia restricta"]]},{"id":"NCBITaxon:768534","l":"Sphingobacterium thermophilum","na":1,"nb":1,"a":[["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"]],"b":[["NCBITaxon%3A768534","Sphingobacterium thermophilum"]]},{"id":"NCBITaxon:768535","l":"Acidipila rosea","na":1,"nb":1,"a":[["acid-mine-drainage-envo-00001997.html","acid mine drainage"]],"b":[["NCBITaxon%3A768535","Acidipila rosea"]]},{"id":"NCBITaxon:77152","l":"Moraxella sp. TA144","na":1,"nb":1,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A77152","Moraxella sp. TA144"]]},{"id":"NCBITaxon:77524","l":"Colwellia maris","na":1,"nb":1,"a":[["fumarole-envo-00000216.html","fumarole"]],"b":[["NCBITaxon%3A77524","Colwellia maris"]]},{"id":"NCBITaxon:77917","l":"Fusobacterium naviforme","na":1,"nb":1,"a":[["hospital-envo-00002173.html","hospital"]],"b":[["NCBITaxon%3A77917","Fusobacterium naviforme"]]},{"id":"NCBITaxon:78","l":"Caulobacter sp.","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["NCBITaxon%3A78","Caulobacter sp."]]},{"id":"NCBITaxon:78229","l":"Paracidovorax anthurii","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A78229","Paracidovorax anthurii"]]},{"id":"NCBITaxon:78350","l":"Pelotomaculum schinkii","na":1,"nb":1,"a":[["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["NCBITaxon%3A78350","Pelotomaculum schinkii"]]},{"id":"NCBITaxon:795725","l":"Vibrio sp. VT2(2010)","na":1,"nb":1,"a":[["fumarole-envo-00000216.html","fumarole"]],"b":[["NCBITaxon%3A795725","Vibrio sp. VT2(2010)"]]},{"id":"NCBITaxon:795728","l":"Vibrio sp. VT5(2010)","na":1,"nb":1,"a":[["fumarole-envo-00000216.html","fumarole"]],"b":[["NCBITaxon%3A795728","Vibrio sp. VT5(2010)"]]},{"id":"NCBITaxon:796334","l":"Erwinia oleae","na":1,"nb":1,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A796334","Erwinia oleae"]]},{"id":"NCBITaxon:796891","l":"Rhizobium mesoamericanum STM6155","na":1,"nb":1,"a":[["massif-envo-00000381.html","massif"]],"b":[["NCBITaxon%3A796891","Rhizobium mesoamericanum STM6155"]]},{"id":"NCBITaxon:796937","l":"Peptoanaerobacter stomatis","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A796937","Peptoanaerobacter stomatis"]]},{"id":"NCBITaxon:797292","l":"Sphingobacterium alimentarium","na":1,"nb":1,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["NCBITaxon%3A797292","Sphingobacterium alimentarium"]]},{"id":"NCBITaxon:798300","l":"Streptococcus pyogenes MGAS15252","na":1,"nb":1,"a":[["oropharynx-bto-0005257.html","oropharynx"]],"b":[["NCBITaxon%3A798300","Streptococcus pyogenes MGAS15252"]]},{"id":"NCBITaxon:81569","l":"Ruegeria atlantica","na":1,"nb":1,"a":[["sandstone-envo-00002055.html","sandstone"]],"b":[["NCBITaxon%3A81569","Ruegeria atlantica"]]},{"id":"NCBITaxon:82","l":"Hyphomicrobium sp.","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A82","Hyphomicrobium sp."]]},{"id":"NCBITaxon:83263","l":"Aminobacter aminovorans","na":1,"nb":1,"a":[["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["NCBITaxon%3A83263","Aminobacter aminovorans"]]},{"id":"NCBITaxon:83617","l":"Stenotrophomonas nitritireducens","na":1,"nb":1,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"]],"b":[["NCBITaxon%3A83617","Stenotrophomonas nitritireducens"]]},{"id":"NCBITaxon:83784","l":"Paraburkholderia sartisoli","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A83784","Paraburkholderia sartisoli"]]},{"id":"NCBITaxon:83983","l":"Methanobacterium uliginosum","na":1,"nb":1,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A83983","Methanobacterium uliginosum"]]},{"id":"NCBITaxon:849756","l":"Mongoliitalea lutea","na":1,"nb":1,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A849756","Mongoliitalea lutea"]]},{"id":"NCBITaxon:85401","l":"Mannheimia glucosida","na":1,"nb":1,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"]],"b":[["NCBITaxon%3A85401","Mannheimia glucosida"]]},{"id":"NCBITaxon:859143","l":"Cytobacillus kochii","na":1,"nb":1,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["NCBITaxon%3A859143","Cytobacillus kochii"]]},{"id":"NCBITaxon:85993","l":"Hydrogenophilus hirschii","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A85993","Hydrogenophilus hirschii"]]},{"id":"NCBITaxon:86105","l":"Candidatus Jidaibacter acanthamoebae","na":1,"nb":1,"a":[["cornea-bto-0000286.html","cornea"]],"b":[["NCBITaxon%3A86105","Candidatus Jidaibacter acanthamoebae"]]},{"id":"NCBITaxon:861865","l":"Edaphosphingomonas laterariae","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A861865","Edaphosphingomonas laterariae"]]},{"id":"NCBITaxon:862966","l":"Streptococcus intermedius C270","na":1,"nb":1,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A862966","Streptococcus intermedius C270"]]},{"id":"NCBITaxon:862967","l":"Streptococcus intermedius B196","na":1,"nb":1,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A862967","Streptococcus intermedius B196"]]},{"id":"NCBITaxon:862968","l":"Streptococcus constellatus subsp. pharyngis C818","na":1,"nb":1,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A862968","Streptococcus constellatus subsp. pharyngis C818"]]},{"id":"NCBITaxon:862969","l":"Streptococcus constellatus subsp. pharyngis C1050","na":1,"nb":1,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A862969","Streptococcus constellatus subsp. pharyngis C1050"]]},{"id":"NCBITaxon:862970","l":"Streptococcus anginosus C1051","na":1,"nb":1,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A862970","Streptococcus anginosus C1051"]]},{"id":"NCBITaxon:862971","l":"Streptococcus anginosus C238","na":1,"nb":1,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A862971","Streptococcus anginosus C238"]]},{"id":"NCBITaxon:863522","l":"Bryocella elongata","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A863522","Bryocella elongata"]]},{"id":"NCBITaxon:864732","l":"Acetobacter musti","na":1,"nb":1,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A864732","Acetobacter musti"]]},{"id":"NCBITaxon:865","l":"Pectinatus frisingensis","na":1,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A865","Pectinatus frisingensis"]]},{"id":"NCBITaxon:86667","l":"Jeotgalibacillus marinus","na":1,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"]],"b":[["NCBITaxon%3A86667","Jeotgalibacillus marinus"]]},{"id":"NCBITaxon:86956","l":"Pectinatus cerevisiiphilus","na":1,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A86956","Pectinatus cerevisiiphilus"]]},{"id":"NCBITaxon:86957","l":"","na":1,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"]],"b":[["NCBITaxon%3A86957","Schleiferibacter lacticifex"]]},{"id":"NCBITaxon:86958","l":"Propionispira paucivorans","na":1,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"]],"b":[["NCBITaxon%3A86958","Propionispira paucivorans"]]},{"id":"NCBITaxon:869728","l":"Burkholderia thailandensis E555","na":1,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A869728","Burkholderia thailandensis E555"]]},{"id":"NCBITaxon:873127","l":"Enterococcus faecium E4453","na":1,"nb":1,"a":[["rectum-bto-0001158.html","rectum"]],"b":[["NCBITaxon%3A873127","Enterococcus faecium E4453"]]},{"id":"NCBITaxon:876142","l":"Encephalitozoon intestinalis ATCC 50506","na":1,"nb":1,"a":[["microsporidian-bto-0003132.html","microsporidian"]],"b":[["NCBITaxon%3A876142","Encephalitozoon intestinalis ATCC 50506"]]},{"id":"NCBITaxon:877455","l":"Methanobacterium lacus","na":1,"nb":1,"a":[["fen-envo-00000232.html","fen"]],"b":[["NCBITaxon%3A877455","Methanobacterium lacus"]]},{"id":"NCBITaxon:880157","l":"Xenorhabdus khoisanae","na":1,"nb":1,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A880157","Xenorhabdus khoisanae"]]},{"id":"NCBITaxon:880633","l":"Lactobacillus helveticus R0052","na":1,"nb":1,"a":[["research-facility-envo-00000469.html","research facility"]],"b":[["NCBITaxon%3A880633","Lactobacillus helveticus R0052"]]},{"id":"NCBITaxon:881260","l":"Enterobacter bugandensis","na":1,"nb":1,"a":[["railway-envo-00000065.html","railway"]],"b":[["NCBITaxon%3A881260","Enterobacter bugandensis"]]},{"id":"NCBITaxon:882869","l":"Salmonella enterica subsp. enterica serovar Montevideo str. IA_2010008287","na":1,"nb":1,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["NCBITaxon%3A882869","Salmonella enterica subsp. enterica serovar Montevideo str. IA_2010008287"]]},{"id":"NCBITaxon:883062","l":"Bifidobacterium bifidum S17","na":1,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["NCBITaxon%3A883062","Bifidobacterium bifidum S17"]]},{"id":"NCBITaxon:888845","l":"Minicystis rosea","na":1,"nb":1,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A888845","Minicystis rosea"]]},{"id":"NCBITaxon:889211","l":"Erwinia amylovora ATCC BAA-2158","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A889211","Erwinia amylovora ATCC BAA-2158"]]},{"id":"NCBITaxon:889453","l":"Alkalitalea saponilacus","na":1,"nb":1,"a":[["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A889453","Alkalitalea saponilacus"]]},{"id":"NCBITaxon:889932","l":"Lactiplantibacillus plantarum ST-III","na":1,"nb":1,"a":[["research-facility-envo-00000469.html","research facility"]],"b":[["NCBITaxon%3A889932","Lactiplantibacillus plantarum ST-III"]]},{"id":"NCBITaxon:89067","l":"","na":1,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A89067","Moritella japonica"]]},{"id":"NCBITaxon:90241","l":"Lwoffella lincolnii","na":1,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A90241","Lwoffella lincolnii"]]},{"id":"NCBITaxon:903522","l":"Lacticaseibacillus paracasei TXW","na":1,"nb":1,"a":[["research-facility-envo-00000469.html","research facility"]],"b":[["NCBITaxon%3A903522","Lacticaseibacillus paracasei TXW"]]},{"id":"NCBITaxon:908285","l":"Necropsobacter rosorum","na":1,"nb":1,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A908285","Necropsobacter rosorum"]]},{"id":"NCBITaxon:909613","l":"Actinokineospora spheciospongiae","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A909613","Actinokineospora spheciospongiae"]]},{"id":"NCBITaxon:910312","l":"Porphyromonas asaccharolytica PR426713P-I","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A910312","Porphyromonas asaccharolytica PR426713P-I"]]},{"id":"NCBITaxon:913324","l":"gamma proteobacterium SCGC AAA001-B15","na":1,"nb":1,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A913324","gamma proteobacterium SCGC AAA001-B15"]]},{"id":"NCBITaxon:913327","l":"gamma proteobacterium SCGC AAA007-O20","na":1,"nb":1,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A913327","gamma proteobacterium SCGC AAA007-O20"]]},{"id":"NCBITaxon:913329","l":"SAR324 cluster bacterium SCGC AAA001-C10","na":1,"nb":1,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A913329","SAR324 cluster bacterium SCGC AAA001-C10"]]},{"id":"NCBITaxon:913331","l":"SAR324 cluster bacterium SCGC AAA240-J09","na":1,"nb":1,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A913331","SAR324 cluster bacterium SCGC AAA240-J09"]]},{"id":"NCBITaxon:914127","l":"Vibrio vulnificus MO6-24/O","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A914127","Vibrio vulnificus MO6-24/O"]]},{"id":"NCBITaxon:92743","l":"","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A92743","Streptomyces paromomycinus"]]},{"id":"NCBITaxon:930943","l":"","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A930943","Saccharolobus islandicus HVE10/4"]]},{"id":"NCBITaxon:931202","l":"Candidatus Liberibacter asiaticus str. Ishi-1","na":1,"nb":1,"a":[["phloem-bto-0001058.html","phloem"]],"b":[["NCBITaxon%3A931202","Candidatus Liberibacter asiaticus str. Ishi-1"]]},{"id":"NCBITaxon:931625","l":"Winogradskyella ulvae","na":1,"nb":1,"a":[["epibiont-habitatmech-bacdive-f4eb470a03.html","Epibiont"]],"b":[["NCBITaxon%3A931625","Winogradskyella ulvae"]]},{"id":"NCBITaxon:931627","l":"Mycolicibacterium rhodesiae JS60","na":1,"nb":1,"a":[["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"]],"b":[["NCBITaxon%3A931627","Mycolicibacterium rhodesiae JS60"]]},{"id":"NCBITaxon:93218","l":"Pandoraea apista","na":1,"nb":1,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"]],"b":[["NCBITaxon%3A93218","Pandoraea apista"]]},{"id":"NCBITaxon:93222","l":"Pandoraea sputorum","na":1,"nb":1,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"]],"b":[["NCBITaxon%3A93222","Pandoraea sputorum"]]},{"id":"NCBITaxon:933063","l":"Dichotomicrobium thermohalophilum","na":1,"nb":1,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["NCBITaxon%3A933063","Dichotomicrobium thermohalophilum"]]},{"id":"NCBITaxon:933356","l":"Enterococcus faecium E4452","na":1,"nb":1,"a":[["rectum-bto-0001158.html","rectum"]],"b":[["NCBITaxon%3A933356","Enterococcus faecium E4452"]]},{"id":"NCBITaxon:935293","l":"Yersinia entomophaga","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A935293","Yersinia entomophaga"]]},{"id":"NCBITaxon:935546","l":"Mesorhizobium loti NZP2037","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A935546","Mesorhizobium loti NZP2037"]]},{"id":"NCBITaxon:935548","l":"Mesorhizobium loti R88b","na":1,"nb":1,"a":[["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A935548","Mesorhizobium loti R88b"]]},{"id":"NCBITaxon:935865","l":"Nocardioides sp. J52","na":1,"nb":1,"a":[["agricultural-waste-material-envo-01000371.html","agricultural waste material"]],"b":[["NCBITaxon%3A935865","Nocardioides sp. J52"]]},{"id":"NCBITaxon:936138","l":"Phorcysia thermohydrogeniphila","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A936138","Phorcysia thermohydrogeniphila"]]},{"id":"NCBITaxon:936139","l":"Mesomycoplasma hyorhinis MCLD","na":1,"nb":1,"a":[["melanoma-cell-line-bto-0000849.html","melanoma cell line"]],"b":[["NCBITaxon%3A936139","Mesomycoplasma hyorhinis MCLD"]]},{"id":"NCBITaxon:93684","l":"Roseivivax halotolerans","na":1,"nb":1,"a":[["epibiont-habitatmech-bacdive-f4eb470a03.html","Epibiont"]],"b":[["NCBITaxon%3A93684","Roseivivax halotolerans"]]},{"id":"NCBITaxon:93718","l":"Acetobacterium psammolithicum","na":1,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A93718","Acetobacterium psammolithicum"]]},{"id":"NCBITaxon:937334","l":"Caldicoprobacter faecalis","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A937334","Caldicoprobacter faecalis"]]},{"id":"NCBITaxon:939306","l":"alpha proteobacterium SCGC AAA240-E13","na":1,"nb":1,"a":[["marine-mesopelagic-zone-envo-00000213.html","marine mesopelagic zone"]],"b":[["NCBITaxon%3A939306","alpha proteobacterium SCGC AAA240-E13"]]},{"id":"NCBITaxon:939316","l":"alpha proteobacterium SCGC AAA288-E13","na":1,"nb":1,"a":[["marine-mesopelagic-zone-envo-00000213.html","marine mesopelagic zone"]],"b":[["NCBITaxon%3A939316","alpha proteobacterium SCGC AAA288-E13"]]},{"id":"NCBITaxon:939324","l":"alpha proteobacterium SCGC AAA288-G21","na":1,"nb":1,"a":[["marine-mesopelagic-zone-envo-00000213.html","marine mesopelagic zone"]],"b":[["NCBITaxon%3A939324","alpha proteobacterium SCGC AAA288-G21"]]},{"id":"NCBITaxon:939346","l":"alpha proteobacterium SCGC AAA288-N07","na":1,"nb":1,"a":[["marine-mesopelagic-zone-envo-00000213.html","marine mesopelagic zone"]],"b":[["NCBITaxon%3A939346","alpha proteobacterium SCGC AAA288-N07"]]},{"id":"NCBITaxon:941323","l":"Escherichia coli VR50","na":1,"nb":1,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"]],"b":[["NCBITaxon%3A941323","Escherichia coli VR50"]]},{"id":"NCBITaxon:941907","l":"Allosphingosinicella indica","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A941907","Allosphingosinicella indica"]]},{"id":"NCBITaxon:946336","l":"","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A946336","Acidicapsa borealis"]]},{"id":"NCBITaxon:946678","l":"Flavobacterium araucananum","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A946678","Flavobacterium araucananum"]]},{"id":"NCBITaxon:948106","l":"Paraburkholderia dilworthii","na":1,"nb":1,"a":[["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A948106","Paraburkholderia dilworthii"]]},{"id":"NCBITaxon:94868","l":"Lacrimispora algidixylanolytica","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A94868","Lacrimispora algidixylanolytica"]]},{"id":"NCBITaxon:95160","l":"","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A79909","Actinomadura livida"]]},{"id":"NCBITaxon:957042","l":"","na":1,"nb":1,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A957042","Fuchsiella alkaliacetigena"]]},{"id":"NCBITaxon:96773","l":"Thauera chlorobenzoica","na":1,"nb":1,"a":[["anaerobic-sludge-blanket-reactor-envo-00002213.html","anaerobic sludge blanket reactor"]],"b":[["NCBITaxon%3A96773","Thauera chlorobenzoica"]]},{"id":"NCBITaxon:980254","l":"Roseimaritima ulvae","na":1,"nb":1,"a":[["epibiont-habitatmech-bacdive-f4eb470a03.html","Epibiont"]],"b":[["NCBITaxon%3A980254","Roseimaritima ulvae"]]},{"id":"NCBITaxon:980271","l":"Aporhodopirellula rubra","na":1,"nb":1,"a":[["epibiont-habitatmech-bacdive-f4eb470a03.html","Epibiont"]],"b":[["NCBITaxon%3A980271","Aporhodopirellula rubra"]]},{"id":"NCBITaxon:985076","l":"Burkholderia cenocepacia K56-2Valvano","na":1,"nb":1,"a":[["k-562-cell-bto-0000664.html","K-562 cell"]],"b":[["NCBITaxon%3A985076","Burkholderia cenocepacia K56-2Valvano"]]},{"id":"NCBITaxon:985077","l":"Burkholderia cenocepacia BC7","na":1,"nb":1,"a":[["k-562-cell-bto-0000664.html","K-562 cell"]],"b":[["NCBITaxon%3A985077","Burkholderia cenocepacia BC7"]]},{"id":"NCBITaxon:992013","l":"Helicobacter pylori CPY1124","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A992013","Helicobacter pylori CPY1124"]]},{"id":"NCBITaxon:992014","l":"Helicobacter pylori CPY1313","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A992014","Helicobacter pylori CPY1313"]]},{"id":"NCBITaxon:992016","l":"Helicobacter pylori CPY1962","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A992016","Helicobacter pylori CPY1962"]]},{"id":"NCBITaxon:992017","l":"Helicobacter pylori CPY3281","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A992017","Helicobacter pylori CPY3281"]]},{"id":"NCBITaxon:992018","l":"Helicobacter pylori CPY6081","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A992018","Helicobacter pylori CPY6081"]]},{"id":"NCBITaxon:992019","l":"Helicobacter pylori CPY6261","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A992019","Helicobacter pylori CPY6261"]]},{"id":"NCBITaxon:992020","l":"Helicobacter pylori CPY6271","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A992020","Helicobacter pylori CPY6271"]]},{"id":"NCBITaxon:992022","l":"Helicobacter pylori CPY6311","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A992022","Helicobacter pylori CPY6311"]]},{"id":"NCBITaxon:992023","l":"Helicobacter pylori NQ4216","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A992023","Helicobacter pylori NQ4216"]]},{"id":"NCBITaxon:992024","l":"Helicobacter pylori NQ4200","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A992024","Helicobacter pylori NQ4200"]]},{"id":"NCBITaxon:992025","l":"Helicobacter pylori NQ4228","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A992025","Helicobacter pylori NQ4228"]]},{"id":"NCBITaxon:993414","l":"Naumannella halotolerans","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A993414","Naumannella halotolerans"]]},{"id":"NCBITaxon:993416","l":"Micrococcus cohnii","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A993416","Micrococcus cohnii"]]},{"id":"NCBITaxon:99807","l":"Corynebacterium auriscanis","na":1,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"]],"b":[["NCBITaxon%3A99807","Corynebacterium auriscanis"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/HabitatMech--TraitMech.json b/assets/fleet/edges/HabitatMech--TraitMech.json index 457dcd9..09f4d06 100644 --- a/assets/fleet/edges/HabitatMech--TraitMech.json +++ b/assets/fleet/edges/HabitatMech--TraitMech.json @@ -1 +1 @@ -{"a":"HabitatMech","b":"TraitMech","base":{"HabitatMech":"https://culturebotai.github.io/HabitatMech/pages/habitats/","TraitMech":"https://culturebotai.github.io/TraitMech/pages/traits/"},"n":122,"by":{"NCBITaxon":115,"ENVO":4,"PATO":2,"CHEBI":1},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":36,"nb":65,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["bay-envo-00000032.html","bay"],["freshwater-biome-envo-00000873.html","freshwater biome"],["liquid-water-envo-00002006.html","liquid water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["ecology/biosafety_level.html","biosafety level"],["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/host_associated.html","host-associated"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/halophily_preference.html","halophily preference"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":40,"nb":15,"a":[["liquid-water-envo-00002006.html","liquid water"],["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["laboratory-facility-envo-01001406.html","laboratory facility"],["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["biofilm-bto-0002690.html","biofilm"]],"b":[["ecology/biosafety_level_2.html","biosafety level 2"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/coccus_shaped.html","coccus shaped"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":28,"nb":11,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["liquid-water-envo-00002006.html","liquid water"],["watercourse-envo-00000029.html","watercourse"],["compost-envo-00002170.html","compost"],["hospital-envo-00002173.html","hospital"],["human-construction-envo-00000070.html","human construction"]],"b":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/aerobic.html","aerobic"],["genomics/avast_system.html","AVAST system"],["genomics/jukab_system.html","JukAB system"],["morphology/motile.html","motile"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":11,"nb":19,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["fermentation-starter-envo-03600040.html","fermentation starter"],["fruit-bto-0000486.html","fruit"],["mammary-epithelial-cell-bto-0004300.html","mammary epithelial cell"],["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["environment/aerotolerant.html","aerotolerant"],["genomics/abia_system.html","AbiA system"],["genomics/abib_system.html","AbiB system"],["genomics/abic_system.html","AbiC system"],["genomics/abid_system.html","AbiD system"],["genomics/abie_system.html","AbiE system"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":10,"nb":18,"a":[["anther-bto-0000079.html","anther"],["epithelial-cell-bto-0000414.html","epithelial cell"],["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/neutrophilic.html","neutrophilic"],["environment/non_halophilic.html","non halophilic"],["genomics/spbk_system.html","SpbK system"]]},{"id":"NCBITaxon:1085","l":"Rhodospirillum rubrum","na":19,"nb":6,"a":[["biofilm-envo-00002034.html","biofilm"],["brackish-water-body-envo-01001321.html","brackish water body"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["liquid-water-envo-00002006.html","liquid water"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["river-envo-00000022.html","river"]],"b":[["metabolism/phototrophy.html","phototrophy"],["morphology/spiral_shaped.html","spiral shaped"],["physiology/carboxydotrophic.html","carboxydotrophic"],["physiology/photoheterotrophic.html","photoheterotrophic"],["physiology/photoorganoheterotrophic.html","photoorganoheterotrophic"],["physiology/phototrophic.html","phototrophic"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":13,"nb":6,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["neutrophil-bto-0000130.html","neutrophil"],["rectum-bto-0001158.html","rectum"],["spleen-bto-0001281.html","spleen"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["metabolism/butanediol_fermentation.html","2,3-butanediol fermentation"],["metabolism/citrate_fermentation.html","citrate fermentation"],["morphology/capsule.html","capsule"],["morphology/non_motile.html","non motile"],["other/indole_test_negative.html","indole test negative"],["other/methyl_red_test_negative.html","methyl red test negative"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":11,"nb":6,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["resting-cell-bto-0001170.html","resting cell"],["seedling-bto-0001228.html","seedling"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["ecology/free_living.html","free-living"],["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["genomics/transposable_element.html","transposable element"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"]]},{"id":"NCBITaxon:1299","l":"Deinococcus radiodurans","na":7,"nb":6,"a":[["animal-house-envo-00003040.html","animal house"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["water-scum-envo-00005794.html","water scum"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"]],"b":[["environment/ionizing_radiation_tolerant.html","ionizing radiation tolerant"],["environment/radiotolerant.html","radiotolerant"],["environment/uv_radiation_tolerant.html","UV radiation tolerant"],["environment/xerophilic.html","xerophilic"],["morphology/orange_pigmented.html","orange pigmented"],["physiology/stress_response.html","stress response"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":7,"nb":6,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["pseudostem-bto-0005992.html","pseudostem"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["ecology/animal_pathogen.html","animal pathogen"],["ecology/biosafety_level_2.html","biosafety level 2"],["genomics/genomic_island.html","genomic island"],["genomics/prophage.html","prophage"],["morphology/flagellated.html","flagellated"],["morphology/peritrichous.html","peritrichous"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":27,"nb":5,"a":[["small-river-biome-envo-00000890.html","small river biome"],["factory-envo-01000536.html","factory"],["organic-waste-material-envo-00002873.html","organic waste material"],["leaf-po-0025034.html","leaf"],["milk-uberon-0001913.html","milk"],["rhizosphere-envo-00005801.html","rhizosphere"]],"b":[["genomics/gabija_system.html","Gabija system"],["genomics/shedu_system.html","Shedu system"],["genomics/thoeris_system.html","Thoeris system"],["physiology/caseinase_activity.html","caseinase activity"],["physiology/lecithinase_activity.html","lecithinase activity"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":5,"nb":9,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"],["feces-uberon-0001988.html","feces"],["rectum-bto-0001158.html","rectum"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["environment/euryhaline.html","euryhaline"],["genomics/dartg_system.html","DarTG system"],["genomics/ddmde_system.html","DdmDE system"],["genomics/genomic_island.html","genomic island"],["genomics/lamassu_system.html","Lamassu system"],["genomics/nixi_system.html","NixI system"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":6,"nb":5,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"],["sludge-envo-00002044.html","sludge"],["forested-area-envo-00000111.html","forested area"],["scrubland-area-envo-00000300.html","scrubland area"],["soil-envo-00001998.html","soil"]],"b":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"],["physiology/hydrogenotrophic.html","hydrogenotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"]]},{"id":"NCBITaxon:1773","l":"Mycobacterium tuberculosis","na":5,"nb":5,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["posterior-lobe-bto-0000561.html","posterior lobe"],["sputum-bto-0001297.html","sputum"],["thorax-bto-0001368.html","thorax"],["thp-1-cell-bto-0001370.html","THP-1 cell"]],"b":[["ecology/biosafety_level_3.html","biosafety level 3"],["ecology/human_pathogen.html","human pathogen"],["physiology/acid_phosphatase_activity.html","acid phosphatase activity"],["physiology/dormancy.html","dormancy"],["physiology/pyrazinamidase_activity.html","pyrazinamidase activity"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":5,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"],["midgut-bto-0000863.html","midgut"],["paddy-field-envo-00000297.html","paddy field"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["metabolism/chitinolysis.html","chitinolysis"],["morphology/pigmentation.html","pigmentation"],["morphology/red_pigmented.html","red pigmented"],["morphology/white_pigmented.html","white pigmented"],["physiology/beta_n_acetylhexosaminidase_activity.html","beta-N-acetylhexosaminidase activity"]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":12,"nb":4,"a":[["hospital-envo-00002173.html","hospital"],["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["epithelial-cell-bto-0000414.html","epithelial cell"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["meninx-bto-0000144.html","meninx"]],"b":[["morphology/diplococcus_shaped.html","diplococcus shaped"],["morphology/non_motile.html","non motile"],["morphology/sphere_shaped.html","sphere shaped"],["physiology/natural_competence.html","natural competence"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":4,"nb":7,"a":[["reservoir-envo-00000025.html","reservoir"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/copper_tolerant.html","copper tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["environment/metal_tolerant.html","metal tolerant"]]},{"id":"ENVO:01001057","l":"","na":6,"nb":4,"a":[["peat-moss-associated-environment-habitatmech-gold-7f57b82cab.html","peat moss-associated environment"],["part-of-plant-habitatmech-madin-25325947e2.html","part of plant"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["root-or-stem-rot-environment-habitatmech-bacdive-04ddbbeabe.html","root-or-stem rot environment"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"],["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["environment/strictly_anaerobic.html","strictly anaerobic"],["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/disproportionation.html","Disproportionation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":33,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["pond-water-envo-00002228.html","pond water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["water-body-envo-00000063.html","water body"]],"b":[["environment/aerobic.html","aerobic"],["environment/obligately_aerobic.html","obligately aerobic"],["morphology/tetrad_arrangement.html","tetrad arrangement"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":25,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-water-body-envo-00001999.html","marine water body"],["sea-water-envo-00002149.html","sea water"],["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["ecology/commensalism.html","commensalism"],["genomics/nhi_system.html","Nhi system"],["other/coagulase_negative.html","coagulase negative"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":18,"nb":3,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["ecology/rhizosphere_association.html","rhizosphere association"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/psychrotolerant.html","psychrotolerant"]]},{"id":"NCBITaxon:1314","l":"Streptococcus pyogenes","na":9,"nb":3,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"],["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"],["epithelial-cell-bto-0000414.html","epithelial cell"],["nasopharynx-bto-0000662.html","nasopharynx"],["skin-of-body-uberon-0002097.html","skin of body"],["throat-bto-0000828.html","throat"]],"b":[["environment/aerotolerant.html","aerotolerant"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"],["morphology/streptococcus_arrangement.html","streptococcus arrangement"]]},{"id":"NCBITaxon:210","l":"Helicobacter pylori","na":8,"nb":3,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["hospital-envo-00002173.html","hospital"],["duodenum-bto-0000365.html","duodenum"],["gastric-juice-bto-0000501.html","gastric juice"],["gastric-mucosa-bto-0001308.html","gastric mucosa"],["gastric-ulcer-bto-0002990.html","gastric ulcer"]],"b":[["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/helical_shaped.html","helical shaped"],["morphology/lophotrichous.html","lophotrichous"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":16,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"]],"b":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"]]},{"id":"NCBITaxon:727","l":"Haemophilus influenzae","na":9,"nb":2,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["head-bto-0000282.html","head"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["genomics/restriction_modification_system.html","restriction-modification system"],["morphology/coccobacillus_shaped.html","coccobacillus shaped"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":8,"nb":2,"a":[["reservoir-envo-00000025.html","reservoir"],["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["secretion-bto-0002979.html","secretion"],["stomach-bto-0001307.html","stomach"]],"b":[["genomics/abialpha_system.html","AbiAlpha system"],["physiology/gelatinase_activity.html","gelatinase activity"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":4,"nb":2,"a":[["bioreactor-envo-00002123.html","bioreactor"],["human-construction-envo-00000070.html","human construction"],["sediment-envo-00002007.html","sediment"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["genomics/gc_mid1.html","GC mid1"],["metabolism/lignin_degradation.html","lignin degradation"]]},{"id":"NCBITaxon:2746","l":"Halomonas elongata","na":2,"nb":4,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"],["saline-water-body-envo-01001319.html","saline water body"]],"b":[["environment/euryhaline.html","euryhaline"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/moderately_halophilic.html","moderately halophilic"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":2,"nb":4,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["ecology/mutualism.html","mutualism"],["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["ecology/symbiosis.html","symbiosis"],["genomics/hna_system.html","Hna system"]]},{"id":"NCBITaxon:1108","l":"Chloroflexus aurantiacus","na":3,"nb":2,"a":[["rhizosphere-envo-00005801.html","rhizosphere"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["morphology/green_pigmented.html","green pigmented"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":3,"nb":2,"a":[["milk-uberon-0001913.html","milk"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["genomics/crispr_cas_system.html","CRISPR-Cas system"],["genomics/phage_defense_system.html","phage defense system"]]},{"id":"NCBITaxon:1525","l":"Neomoorella thermoacetica","na":2,"nb":3,"a":[["liquid-water-envo-00002006.html","liquid water"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":2,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["genomics/wadjet_system.html","Wadjet system"],["morphology/irregular_shaped.html","irregular shaped"]]},{"id":"NCBITaxon:317655","l":"Sphingopyxis alaskensis RB2256","na":3,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["environmental-material-envo-00010483.html","environmental material"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":2,"nb":3,"a":[["hospital-envo-00002173.html","hospital"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["environment/anaerobic.html","anaerobic"],["environment/strictly_anaerobic.html","strictly anaerobic"],["metabolism/fumarate_respiration.html","fumarate respiration"]]},{"id":"NCBITaxon:292415","l":"Thiobacillus denitrificans ATCC 25259","na":2,"nb":2,"a":[["large-river-biome-envo-00000887.html","large river biome"],["river-bed-envo-00000384.html","river bed"]],"b":[["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/chemoautotrophic.html","chemoautotrophic"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":19,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["bone-element-uberon-0001474.html","bone element"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["metabolism/starch_degradation.html","starch degradation"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":17,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["hospital-envo-00002173.html","hospital"],["egg-food-product-foodon-00001274.html","egg food product"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["other/catalase_negative.html","catalase negative"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":14,"nb":1,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["compost-envo-00002170.html","compost"],["organic-waste-material-envo-00002873.html","organic waste material"],["larva-bto-0000707.html","larva"],["rhizosphere-envo-00005801.html","rhizosphere"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["physiology/lipase_activity.html","lipase activity"]]},{"id":"NCBITaxon:173","l":"Leptospira interrogans","na":14,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["small-river-biome-envo-00000890.html","small river biome"],["surface-water-envo-00002042.html","surface water"]],"b":[["morphology/axially_filamented.html","axially filamented"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":14,"nb":1,"a":[["watercourse-envo-00000029.html","watercourse"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["leaf-po-0025034.html","leaf"]],"b":[["morphology/gliding.html","gliding"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":10,"nb":1,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"]],"b":[["environment/microaerophilic.html","microaerophilic"]]},{"id":"NCBITaxon:1639","l":"Listeria monocytogenes","na":9,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["brain-bto-0000142.html","brain"],["central-nervous-system-bto-0000227.html","central nervous system"],["fruit-bto-0000486.html","fruit"],["placenta-bto-0001078.html","placenta"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["environment/psychrotolerant.html","psychrotolerant"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":8,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"],["bioreactor-envo-00002123.html","bioreactor"],["river-envo-00000022.html","river"],["freshwater-environment-envo-01000306.html","freshwater environment"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["physiology/photoheterotrophic.html","photoheterotrophic"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":8,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["ecology/plant_pathogen.html","plant pathogen"]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":8,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"]],"b":[["morphology/yellow_pigmented.html","yellow pigmented"]]},{"id":"NCBITaxon:1053","l":"Halorhodospira halophila","na":7,"nb":1,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["marine-environment-envo-01000320.html","marine environment"],["organic-feature-envo-01000159.html","organic feature"],["organic-material-envo-01000155.html","organic material"],["sediment-envo-00002007.html","sediment"]],"b":[["environment/haloalkaliphilic.html","haloalkaliphilic"]]},{"id":"NCBITaxon:1267","l":"Sarcina ventriculi","na":7,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["morphology/sarcina_arrangement.html","sarcina arrangement"]]},{"id":"NCBITaxon:1488","l":"Clostridium acetobutylicum","na":1,"nb":7,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["environment/anaerobic.html","anaerobic"],["environment/obligately_anaerobic.html","obligately anaerobic"],["metabolism/fermentation.html","Fermentation"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"],["morphology/gram_variable.html","gram variable"],["morphology/spindle_shaped.html","spindle shaped"]]},{"id":"NCBITaxon:1830","l":"Rhodococcus ruber","na":6,"nb":1,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["morphology/orange_pigmented.html","orange pigmented"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":6,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/oxidase_activity.html","oxidase activity"]]},{"id":"NCBITaxon:266264","l":"Cupriavidus metallidurans CH34","na":1,"nb":6,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/copper_tolerant.html","copper tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["environment/zinc_tolerant.html","zinc tolerant"]]},{"id":"PATO:0001430","l":"","na":1,"nb":6,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["environment/alkalotolerant.html","alkalotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"],["environment/obligately_alkaphilic.html","obligately alkaliphilic"],["environment/ph_growth_preference.html","pH growth preference"],["environment/ph_optimum_high.html","pH optimum high"]]},{"id":"NCBITaxon:129958","l":"Carboxydothermus hydrogenoformans","na":5,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["stream-envo-00000023.html","stream"],["temperate-envo-01000206.html","temperate"],["seep-envo-01000262.html","seep"]],"b":[["physiology/carboxydotrophic.html","carboxydotrophic"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":1,"nb":5,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["metabolism/dimethyl_sulfoxide_respiration.html","dimethyl sulfoxide respiration"],["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/electron_transfer.html","Electron transfer"]]},{"id":"NCBITaxon:224911","l":"Bradyrhizobium diazoefficiens (strain JCM 10833 / BCRC 13528 / IAM 13628 / NBRC 14792 / USDA 110)","na":5,"nb":1,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["microbial-mat-material-envo-01000157.html","microbial mat material"],["agricultural-soil-envo-00002259.html","agricultural soil"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["morphology/subpolar_flagellation.html","subpolar flagellation"]]},{"id":"NCBITaxon:228410","l":"Nitrosomonas europaea ATCC 19718","na":1,"nb":5,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"],["physiology/lithotrophic.html","lithotrophic"]]},{"id":"NCBITaxon:747","l":"Pasteurella multocida","na":5,"nb":1,"a":[["bronchus-uberon-0002185.html","bronchus"],["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["finger-bto-0004669.html","finger"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["ecology/animal_pathogen.html","animal pathogen"]]},{"id":"PATO:0001456","l":"","na":1,"nb":5,"a":[["anaerobic-wastewater-treatment-reactor-habitatmech-gold-bb0eb00ccb.html","anaerobic wastewater treatment reactor"]],"b":[["environment/anaerobic.html","anaerobic"],["environment/strictly_anaerobic.html","strictly anaerobic"],["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/disproportionation.html","Disproportionation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"]]},{"id":"NCBITaxon:1111735","l":"Sedimenticola selenatireducens DSM 17993","na":4,"nb":1,"a":[["brackish-water-body-envo-01001321.html","brackish water body"],["estuarine-biome-envo-01000020.html","estuarine biome"],["estuary-envo-00000045.html","estuary"],["watercourse-envo-00000029.html","watercourse"]],"b":[["metabolism/selenate_respiration.html","selenate respiration"]]},{"id":"NCBITaxon:1156985","l":"Epibacterium ulvae","na":4,"nb":1,"a":[["bar-envo-00000167.html","bar"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"],["peninsula-envo-00000305.html","peninsula"]],"b":[["other/epibiont_phenotype.html","epibiont phenotype"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":4,"nb":1,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["morphology/s_layer.html","S-layer"]]},{"id":"NCBITaxon:237727","l":"Erythrobacter sp. NAP1","na":4,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"],["pond-water-envo-00002228.html","pond water"],["small-river-biome-envo-00000890.html","small river biome"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["physiology/aerobic_anoxygenic_phototrophy.html","aerobic anoxygenic phototrophy"]]},{"id":"NCBITaxon:651","l":"Aeromonas media","na":4,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"],["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["morphology/brown_pigmented.html","brown pigmented"]]},{"id":"CHEBI:16183","l":"methane","na":1,"nb":3,"a":[["methane-bioremediation-material-habitatmech-gold-d510166905.html","methane bioremediation material"]],"b":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/methanogenesis.html","Methanogenesis"],["physiology/methanotrophic.html","methanotrophic"]]},{"id":"NCBITaxon:1519","l":"Clostridium tyrobutyricum","na":3,"nb":1,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["peatland-envo-00000044.html","peatland"]],"b":[["metabolism/butyric_acid_fermentation.html","butyric acid fermentation"]]},{"id":"NCBITaxon:1570","l":"Halobacillus halophilus","na":3,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["environment/halotolerant.html","halotolerant"]]},{"id":"NCBITaxon:1717","l":"Corynebacterium diphtheriae","na":3,"nb":1,"a":[["foot-bto-0000476.html","foot"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["morphology/dumbbell_shaped.html","dumbbell shaped"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa (strain ATCC 15692 / DSM 22644 / CIP 104116 / JCM 14847 / LMG 12228 / 1C / PRS 101 / PAO1)","na":1,"nb":3,"a":[["style-bto-0001313.html","style"]],"b":[["ecology/biofilm_formation.html","biofilm formation"],["morphology/twitching_motility.html","twitching motility"],["morphology/type_iv_pilus.html","type IV pilus"]]},{"id":"NCBITaxon:2242","l":"Halobacterium salinarum","na":1,"nb":3,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["environment/extremely_halophilic.html","extremely halophilic"],["environment/halophilic.html","halophilic"],["morphology/intracellular_inclusion.html","intracellular inclusion"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK1622","na":3,"nb":1,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["morphology/gliding.html","gliding"]]},{"id":"NCBITaxon:29405","l":"Microlunatus phosphovorus","na":3,"nb":1,"a":[["water-scum-envo-00005794.html","water scum"],["orchard-envo-00000115.html","orchard"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["morphology/polyphosphate_granule.html","polyphosphate granule"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":3,"nb":1,"a":[["bile-bto-0000121.html","bile"],["rectum-bto-0001158.html","rectum"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["ecology/opportunistic_pathogen.html","opportunistic pathogen"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":3,"nb":1,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["morphology/polar_flagellation.html","polar flagellation"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":1,"nb":3,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["ecology/mutualism.html","mutualism"],["physiology/bioluminescence.html","bioluminescence"],["physiology/quorum_sensing.html","quorum sensing"]]},{"id":"NCBITaxon:94122","l":"Shewanella sp. ANA-3","na":3,"nb":1,"a":[["alkaline-water-envo-01000357.html","alkaline water"],["brackish-estuary-envo-00002137.html","brackish estuary"],["underground-water-envo-00005792.html","underground water"]],"b":[["metabolism/arsenate_respiration.html","arsenate respiration"]]},{"id":"ENVO:01000687","l":"","na":1,"nb":2,"a":[["sea-coast-envo-00000303.html","sea coast"]],"b":[["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"]]},{"id":"ENVO:01001040","l":"saline environment","na":1,"nb":2,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"]]},{"id":"NCBITaxon:1097","l":"Chlorobaculum tepidum","na":1,"nb":2,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"],["morphology/green_pigmented.html","green pigmented"]]},{"id":"NCBITaxon:1182451","l":"Aureivirga marina","na":1,"nb":2,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["environment/nacl_delta_mid1.html","NaCl delta mid1"],["environment/nacl_range_mid2.html","NaCl range mid2"]]},{"id":"NCBITaxon:1385984","l":"Exiguobacterium chiriqhucha","na":2,"nb":1,"a":[["water-ice-envo-01000277.html","water ice"],["peak-envo-00000480.html","peak"]],"b":[["environment/temperature_delta_high.html","temperature delta high"]]},{"id":"NCBITaxon:139","l":"Borreliella burgdorferi","na":2,"nb":1,"a":[["joint-bto-0001686.html","joint"],["needle-bto-0000917.html","needle"]],"b":[["genomics/plasmid_carriage.html","plasmid carriage"]]},{"id":"NCBITaxon:165695","l":"Sphingobium","na":2,"nb":1,"a":[["juvenile-bto-0002168.html","juvenile"],["leaf-bto-0000713.html","leaf"]],"b":[["metabolism/lignin_degradation.html","lignin degradation"]]},{"id":"NCBITaxon:167879","l":"Colwellia psychrerythraea 34H","na":2,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["soil-envo-00001998.html","soil"]],"b":[["environment/psychrophilic.html","psychrophilic"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":2,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["morphology/branched_shaped.html","branched shaped"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii (strain ATCC 43067 / DSM 2661 / JAL-1 / JCM 10045 / NBRC 100440)","na":2,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["metabolism/methanogenesis.html","Methanogenesis"]]},{"id":"NCBITaxon:243273","l":"Mycoplasmoides genitalium (strain ATCC 33530 / DSM 19775 / NCTC 10195 / G37)","na":1,"nb":2,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["genomics/gc_high.html","GC high"],["genomics/genome_size.html","genome size"]]},{"id":"NCBITaxon:28264","l":"Arcanobacterium haemolyticum","na":2,"nb":1,"a":[["foot-bto-0000476.html","foot"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"]],"b":[["physiology/alpha_mannosidase_activity.html","alpha-mannosidase activity"]]},{"id":"NCBITaxon:293091","l":"Haloquadratum walsbyi","na":2,"nb":1,"a":[["small-river-biome-envo-00000890.html","small river biome"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["morphology/square_shaped.html","square shaped"]]},{"id":"NCBITaxon:313590","l":"Dokdonia sp. MED134","na":2,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["metabolism/proteorhodopsin_phototrophy.html","proteorhodopsin phototrophy"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans Pd1222","na":2,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["physiology/mixotrophic.html","mixotrophic"]]},{"id":"NCBITaxon:334543","l":"Psychrobacter arcticus","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["environment/delta_phenotype_with_numerical_limits.html","delta phenotype with numerical limits"],["environment/facultative_psychrophilic.html","facultative psychrophilic"]]},{"id":"NCBITaxon:521674","l":"Planctopirus limnophila DSM 3776","na":2,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["morphology/flask_shaped.html","flask shaped"]]},{"id":"NCBITaxon:542","l":"Zymomonas mobilis","na":1,"nb":2,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["physiology/nad_dependent_alcohol_dehydrogenase_activity.html","NAD-dependent alcohol dehydrogenase activity"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":2,"nb":1,"a":[["watercourse-envo-00000029.html","watercourse"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["morphology/lateral_flagellation.html","lateral flagellation"]]},{"id":"NCBITaxon:74109","l":"Photobacterium profundum","na":1,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["environment/piezophilic.html","piezophilic"],["environment/piezotolerant.html","piezotolerant"]]},{"id":"NCBITaxon:86665","l":"Halalkalibacterium halodurans","na":1,"nb":2,"a":[["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["environment/alkalotolerant.html","alkalotolerant"],["environment/alkaphilic.html","alkaliphilic"]]},{"id":"ENVO:01000309","l":"cold environment","na":1,"nb":1,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["environment/temperature_optimum_very_low.html","temperature optimum very low"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["morphology/heterocyst.html","heterocyst"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["physiology/urease_activity.html","urease activity"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":1,"a":[["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["metabolism/cellulolysis.html","cellulolysis"]]},{"id":"NCBITaxon:1579","l":"Lactobacillus acidophilus","na":1,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"]],"b":[["environment/acidotolerant.html","acidotolerant"]]},{"id":"NCBITaxon:1599","l":"Latilactobacillus sakei","na":1,"nb":1,"a":[["research-facility-envo-00000469.html","research facility"]],"b":[["physiology/arginine_dihydrolase_activity.html","arginine dihydrolase activity"]]},{"id":"NCBITaxon:1744","l":"Propionibacterium freudenreichii","na":1,"nb":1,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":1,"nb":1,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["physiology/alkaline_phosphatase_activity.html","alkaline phosphatase activity"]]},{"id":"NCBITaxon:192222","l":"Campylobacter jejuni subsp. jejuni serotype O:2 (strain ATCC 700819 / NCTC 11168)","na":1,"nb":1,"a":[["flagellate-bto-0000464.html","flagellate"]],"b":[["environment/capnophilic.html","capnophilic"]]},{"id":"NCBITaxon:2283","l":"Acidianus ambivalens","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["metabolism/disproportionation.html","Disproportionation"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima (strain ATCC 43589 / DSM 3109 / JCM 10099 / NBRC 100826 / MSB8)","na":1,"nb":1,"a":[["feather-bto-0000447.html","feather"]],"b":[["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"]]},{"id":"NCBITaxon:272630","l":"Methylorubrum extorquens (strain ATCC 14718 / DSM 1338 / JCM 2805 / NCIMB 9133 / AM1)","na":1,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["physiology/methylotrophic.html","methylotrophic"]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["physiology/alpha_fucosidase_activity.html","alpha-fucosidase activity"]]},{"id":"NCBITaxon:33952","l":"Acetobacterium woodii","na":1,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["metabolism/homoacetogenesis.html","Homoacetogenesis"]]},{"id":"NCBITaxon:357794","l":"Psychromonas ingrahamii","na":1,"nb":1,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["environment/temperature_range_very_low.html","temperature range very low"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["metabolism/photoferrotrophy.html","photoferrotrophy"]]},{"id":"NCBITaxon:399549","l":"Metallosphaera sedula DSM 5348","na":1,"nb":1,"a":[["solfatara-envo-00000217.html","solfatara"]],"b":[["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":1,"nb":1,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["other/voges_proskauer_test_positive.html","Voges-Proskauer test positive"]]},{"id":"NCBITaxon:584","l":"Proteus mirabilis","na":1,"nb":1,"a":[["salivary-gland-bto-0001203.html","salivary gland"]],"b":[["morphology/swarming_motility.html","swarming motility"]]},{"id":"NCBITaxon:71421","l":"Haemophilus influenzae (strain ATCC 51907 / DSM 11121 / KW20 / Rd)","na":1,"nb":1,"a":[["respiratory-mucosa-bto-0000973.html","respiratory mucosa"]],"b":[["genomics/restriction_modification_system.html","restriction-modification system"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":1,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["physiology/dormancy.html","dormancy"]]},{"id":"NCBITaxon:844","l":"Wolinella succinogenes","na":1,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":1,"nb":1,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":1,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["morphology/motility.html","motility"]]},{"id":"NCBITaxon:99807","l":"Corynebacterium auriscanis","na":1,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"]],"b":[["physiology/pyrrolidonyl_arylamidase_activity.html","pyrrolidonyl arylamidase activity"]]}]} \ No newline at end of file +{"a":"HabitatMech","b":"TraitMech","base":{"HabitatMech":"https://culturebotai.github.io/HabitatMech/pages/habitats/","TraitMech":"https://culturebotai.github.io/TraitMech/pages/traits/"},"n":122,"by":{"NCBITaxon":115,"ENVO":4,"PATO":2,"CHEBI":1},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":36,"nb":65,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["bay-envo-00000032.html","bay"],["freshwater-biome-envo-00000873.html","freshwater biome"],["liquid-water-envo-00002006.html","liquid water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["ecology/biosafety_level.html","biosafety level"],["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/host_associated.html","host-associated"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/halophily_preference.html","halophily preference"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":40,"nb":15,"a":[["liquid-water-envo-00002006.html","liquid water"],["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["laboratory-facility-envo-01001406.html","laboratory facility"],["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["biofilm-bto-0002690.html","biofilm"]],"b":[["ecology/biosafety_level_2.html","biosafety level 2"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/coccus_shaped.html","coccus shaped"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":28,"nb":11,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["liquid-water-envo-00002006.html","liquid water"],["watercourse-envo-00000029.html","watercourse"],["compost-envo-00002170.html","compost"],["hospital-envo-00002173.html","hospital"],["human-construction-envo-00000070.html","human construction"]],"b":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/aerobic.html","aerobic"],["genomics/avast_system.html","AVAST system"],["genomics/jukab_system.html","JukAB system"],["morphology/motile.html","motile"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":11,"nb":19,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["fermentation-starter-envo-03600040.html","fermentation starter"],["fruit-bto-0000486.html","fruit"],["mammary-epithelial-cell-bto-0004300.html","mammary epithelial cell"],["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["environment/aerotolerant.html","aerotolerant"],["genomics/abia_system.html","AbiA system"],["genomics/abib_system.html","AbiB system"],["genomics/abic_system.html","AbiC system"],["genomics/abid_system.html","AbiD system"],["genomics/abie_system.html","AbiE system"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":10,"nb":18,"a":[["anther-bto-0000079.html","anther"],["epithelial-cell-bto-0000414.html","epithelial cell"],["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/neutrophilic.html","neutrophilic"],["environment/non_halophilic.html","non halophilic"],["genomics/spbk_system.html","SpbK system"]]},{"id":"NCBITaxon:1085","l":"Rhodospirillum rubrum","na":19,"nb":6,"a":[["biofilm-envo-00002034.html","biofilm"],["brackish-water-body-envo-01001321.html","brackish water body"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["liquid-water-envo-00002006.html","liquid water"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["river-envo-00000022.html","river"]],"b":[["metabolism/phototrophy.html","phototrophy"],["morphology/spiral_shaped.html","spiral shaped"],["physiology/carboxydotrophic.html","carboxydotrophic"],["physiology/photoheterotrophic.html","photoheterotrophic"],["physiology/photoorganoheterotrophic.html","photoorganoheterotrophic"],["physiology/phototrophic.html","phototrophic"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":13,"nb":6,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["neutrophil-bto-0000130.html","neutrophil"],["rectum-bto-0001158.html","rectum"],["spleen-bto-0001281.html","spleen"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["metabolism/butanediol_fermentation.html","2,3-butanediol fermentation"],["metabolism/citrate_fermentation.html","citrate fermentation"],["morphology/capsule.html","capsule"],["morphology/non_motile.html","non motile"],["other/indole_test_negative.html","indole test negative"],["other/methyl_red_test_negative.html","methyl red test negative"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":11,"nb":6,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["resting-cell-bto-0001170.html","resting cell"],["seedling-bto-0001228.html","seedling"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["ecology/free_living.html","free-living"],["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["genomics/transposable_element.html","transposable element"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"]]},{"id":"NCBITaxon:1299","l":"Deinococcus radiodurans","na":7,"nb":6,"a":[["animal-house-envo-00003040.html","animal house"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["water-scum-envo-00005794.html","water scum"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"]],"b":[["environment/ionizing_radiation_tolerant.html","ionizing radiation tolerant"],["environment/radiotolerant.html","radiotolerant"],["environment/uv_radiation_tolerant.html","UV radiation tolerant"],["environment/xerophilic.html","xerophilic"],["morphology/orange_pigmented.html","orange pigmented"],["physiology/stress_response.html","stress response"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":7,"nb":6,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["pseudostem-bto-0005992.html","pseudostem"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["ecology/animal_pathogen.html","animal pathogen"],["ecology/biosafety_level_2.html","biosafety level 2"],["genomics/genomic_island.html","genomic island"],["genomics/prophage.html","prophage"],["morphology/flagellated.html","flagellated"],["morphology/peritrichous.html","peritrichous"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":27,"nb":5,"a":[["small-river-biome-envo-00000890.html","small river biome"],["factory-envo-01000536.html","factory"],["organic-waste-material-envo-00002873.html","organic waste material"],["leaf-po-0025034.html","leaf"],["milk-uberon-0001913.html","milk"],["rhizosphere-envo-00005801.html","rhizosphere"]],"b":[["genomics/gabija_system.html","Gabija system"],["genomics/shedu_system.html","Shedu system"],["genomics/thoeris_system.html","Thoeris system"],["physiology/caseinase_activity.html","caseinase activity"],["physiology/lecithinase_activity.html","lecithinase activity"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":5,"nb":9,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"],["feces-uberon-0001988.html","feces"],["rectum-bto-0001158.html","rectum"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["environment/euryhaline.html","euryhaline"],["genomics/dartg_system.html","DarTG system"],["genomics/ddmde_system.html","DdmDE system"],["genomics/genomic_island.html","genomic island"],["genomics/lamassu_system.html","Lamassu system"],["genomics/nixi_system.html","NixI system"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":6,"nb":5,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"],["sludge-envo-00002044.html","sludge"],["forested-area-envo-00000111.html","forested area"],["scrubland-area-envo-00000300.html","scrubland area"],["soil-envo-00001998.html","soil"]],"b":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"],["physiology/hydrogenotrophic.html","hydrogenotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"]]},{"id":"NCBITaxon:1773","l":"Mycobacterium tuberculosis","na":5,"nb":5,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["posterior-lobe-bto-0000561.html","posterior lobe"],["sputum-bto-0001297.html","sputum"],["thorax-bto-0001368.html","thorax"],["thp-1-cell-bto-0001370.html","THP-1 cell"]],"b":[["ecology/biosafety_level_3.html","biosafety level 3"],["ecology/human_pathogen.html","human pathogen"],["physiology/acid_phosphatase_activity.html","acid phosphatase activity"],["physiology/dormancy.html","dormancy"],["physiology/pyrazinamidase_activity.html","pyrazinamidase activity"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":5,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"],["midgut-bto-0000863.html","midgut"],["paddy-field-envo-00000297.html","paddy field"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["metabolism/chitinolysis.html","chitinolysis"],["morphology/pigmentation.html","pigmentation"],["morphology/red_pigmented.html","red pigmented"],["morphology/white_pigmented.html","white pigmented"],["physiology/beta_n_acetylhexosaminidase_activity.html","beta-N-acetylhexosaminidase activity"]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":12,"nb":4,"a":[["hospital-envo-00002173.html","hospital"],["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["epithelial-cell-bto-0000414.html","epithelial cell"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["meninx-bto-0000144.html","meninx"]],"b":[["morphology/diplococcus_shaped.html","diplococcus shaped"],["morphology/non_motile.html","non motile"],["morphology/sphere_shaped.html","sphere shaped"],["physiology/natural_competence.html","natural competence"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":4,"nb":7,"a":[["reservoir-envo-00000025.html","reservoir"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/copper_tolerant.html","copper tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["environment/metal_tolerant.html","metal tolerant"]]},{"id":"ENVO:01001057","l":"","na":6,"nb":4,"a":[["peat-moss-associated-environment-habitatmech-gold-7f57b82cab.html","peat moss-associated environment"],["part-of-plant-habitatmech-madin-25325947e2.html","part of plant"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["root-or-stem-rot-environment-habitatmech-bacdive-04ddbbeabe.html","root-or-stem rot environment"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"],["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["environment/strictly_anaerobic.html","strictly anaerobic"],["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/disproportionation.html","Disproportionation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":33,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["pond-water-envo-00002228.html","pond water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["water-body-envo-00000063.html","water body"]],"b":[["environment/aerobic.html","aerobic"],["environment/obligately_aerobic.html","obligately aerobic"],["morphology/tetrad_arrangement.html","tetrad arrangement"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":25,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-water-body-envo-00001999.html","marine water body"],["sea-water-envo-00002149.html","sea water"],["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["ecology/commensalism.html","commensalism"],["genomics/nhi_system.html","Nhi system"],["other/coagulase_negative.html","coagulase negative"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":18,"nb":3,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["ecology/rhizosphere_association.html","rhizosphere association"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/psychrotolerant.html","psychrotolerant"]]},{"id":"NCBITaxon:1314","l":"Streptococcus pyogenes","na":9,"nb":3,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"],["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"],["epithelial-cell-bto-0000414.html","epithelial cell"],["nasopharynx-bto-0000662.html","nasopharynx"],["skin-of-body-uberon-0002097.html","skin of body"],["throat-bto-0000828.html","throat"]],"b":[["environment/aerotolerant.html","aerotolerant"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"],["morphology/streptococcus_arrangement.html","streptococcus arrangement"]]},{"id":"NCBITaxon:210","l":"Helicobacter pylori","na":8,"nb":3,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["hospital-envo-00002173.html","hospital"],["duodenum-bto-0000365.html","duodenum"],["gastric-juice-bto-0000501.html","gastric juice"],["gastric-mucosa-bto-0001308.html","gastric mucosa"],["gastric-ulcer-bto-0002990.html","gastric ulcer"]],"b":[["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/helical_shaped.html","helical shaped"],["morphology/lophotrichous.html","lophotrichous"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":16,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"]],"b":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"]]},{"id":"NCBITaxon:727","l":"Haemophilus influenzae","na":9,"nb":2,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["head-bto-0000282.html","head"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["genomics/restriction_modification_system.html","restriction-modification system"],["morphology/coccobacillus_shaped.html","coccobacillus shaped"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":8,"nb":2,"a":[["reservoir-envo-00000025.html","reservoir"],["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["secretion-bto-0002979.html","secretion"],["stomach-bto-0001307.html","stomach"]],"b":[["genomics/abialpha_system.html","AbiAlpha system"],["physiology/gelatinase_activity.html","gelatinase activity"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":4,"nb":2,"a":[["bioreactor-envo-00002123.html","bioreactor"],["human-construction-envo-00000070.html","human construction"],["sediment-envo-00002007.html","sediment"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["genomics/gc_mid1.html","GC mid1"],["metabolism/lignin_degradation.html","lignin degradation"]]},{"id":"NCBITaxon:2746","l":"Halomonas elongata","na":2,"nb":4,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"],["saline-water-body-envo-01001319.html","saline water body"]],"b":[["environment/euryhaline.html","euryhaline"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/moderately_halophilic.html","moderately halophilic"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":2,"nb":4,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["ecology/mutualism.html","mutualism"],["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["ecology/symbiosis.html","symbiosis"],["genomics/hna_system.html","Hna system"]]},{"id":"NCBITaxon:1108","l":"Chloroflexus aurantiacus","na":3,"nb":2,"a":[["rhizosphere-envo-00005801.html","rhizosphere"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["morphology/green_pigmented.html","green pigmented"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":3,"nb":2,"a":[["milk-uberon-0001913.html","milk"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["genomics/crispr_cas_system.html","CRISPR-Cas system"],["genomics/phage_defense_system.html","phage defense system"]]},{"id":"NCBITaxon:1525","l":"Neomoorella thermoacetica","na":2,"nb":3,"a":[["liquid-water-envo-00002006.html","liquid water"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":2,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["genomics/wadjet_system.html","Wadjet system"],["morphology/irregular_shaped.html","irregular shaped"]]},{"id":"NCBITaxon:317655","l":"Sphingopyxis alaskensis RB2256","na":3,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["environmental-material-envo-00010483.html","environmental material"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":2,"nb":3,"a":[["hospital-envo-00002173.html","hospital"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["environment/anaerobic.html","anaerobic"],["environment/strictly_anaerobic.html","strictly anaerobic"],["metabolism/fumarate_respiration.html","fumarate respiration"]]},{"id":"NCBITaxon:292415","l":"Thiobacillus denitrificans ATCC 25259","na":2,"nb":2,"a":[["large-river-biome-envo-00000887.html","large river biome"],["river-bed-envo-00000384.html","river bed"]],"b":[["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/chemoautotrophic.html","chemoautotrophic"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":19,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["bone-element-uberon-0001474.html","bone element"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["metabolism/starch_degradation.html","starch degradation"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":17,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["hospital-envo-00002173.html","hospital"],["egg-food-product-foodon-00001274.html","egg food product"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["other/catalase_negative.html","catalase negative"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":14,"nb":1,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["compost-envo-00002170.html","compost"],["organic-waste-material-envo-00002873.html","organic waste material"],["larva-bto-0000707.html","larva"],["rhizosphere-envo-00005801.html","rhizosphere"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["physiology/lipase_activity.html","lipase activity"]]},{"id":"NCBITaxon:173","l":"Leptospira interrogans","na":14,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["small-river-biome-envo-00000890.html","small river biome"],["surface-water-envo-00002042.html","surface water"]],"b":[["morphology/axially_filamented.html","axially filamented"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":14,"nb":1,"a":[["watercourse-envo-00000029.html","watercourse"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["leaf-po-0025034.html","leaf"]],"b":[["morphology/gliding.html","gliding"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":10,"nb":1,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"]],"b":[["environment/microaerophilic.html","microaerophilic"]]},{"id":"NCBITaxon:1639","l":"Listeria monocytogenes","na":9,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["brain-bto-0000142.html","brain"],["central-nervous-system-bto-0000227.html","central nervous system"],["fruit-bto-0000486.html","fruit"],["placenta-bto-0001078.html","placenta"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["environment/psychrotolerant.html","psychrotolerant"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":8,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"],["bioreactor-envo-00002123.html","bioreactor"],["river-envo-00000022.html","river"],["freshwater-environment-envo-01000306.html","freshwater environment"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["physiology/photoheterotrophic.html","photoheterotrophic"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":8,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["ecology/plant_pathogen.html","plant pathogen"]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":8,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"]],"b":[["morphology/yellow_pigmented.html","yellow pigmented"]]},{"id":"NCBITaxon:1053","l":"Halorhodospira halophila","na":7,"nb":1,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["marine-environment-envo-01000320.html","marine environment"],["organic-feature-envo-01000159.html","organic feature"],["organic-material-envo-01000155.html","organic material"],["sediment-envo-00002007.html","sediment"]],"b":[["environment/haloalkaliphilic.html","haloalkaliphilic"]]},{"id":"NCBITaxon:1267","l":"Sarcina ventriculi","na":7,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["morphology/sarcina_arrangement.html","sarcina arrangement"]]},{"id":"NCBITaxon:1488","l":"Clostridium acetobutylicum","na":1,"nb":7,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["environment/anaerobic.html","anaerobic"],["environment/obligately_anaerobic.html","obligately anaerobic"],["metabolism/fermentation.html","Fermentation"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"],["morphology/gram_variable.html","gram variable"],["morphology/spindle_shaped.html","spindle shaped"]]},{"id":"NCBITaxon:1830","l":"Rhodococcus ruber","na":6,"nb":1,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["morphology/orange_pigmented.html","orange pigmented"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":6,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/oxidase_activity.html","oxidase activity"]]},{"id":"NCBITaxon:266264","l":"Cupriavidus metallidurans CH34","na":1,"nb":6,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/copper_tolerant.html","copper tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["environment/zinc_tolerant.html","zinc tolerant"]]},{"id":"PATO:0001430","l":"","na":1,"nb":6,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["environment/alkalotolerant.html","alkalotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"],["environment/obligately_alkaphilic.html","obligately alkaliphilic"],["environment/ph_growth_preference.html","pH growth preference"],["environment/ph_optimum_high.html","pH optimum high"]]},{"id":"NCBITaxon:129958","l":"Carboxydothermus hydrogenoformans","na":5,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["stream-envo-00000023.html","stream"],["temperate-envo-01000206.html","temperate"],["seep-envo-01000262.html","seep"]],"b":[["physiology/carboxydotrophic.html","carboxydotrophic"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":1,"nb":5,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["metabolism/dimethyl_sulfoxide_respiration.html","dimethyl sulfoxide respiration"],["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/electron_transfer.html","Electron transfer"]]},{"id":"NCBITaxon:224911","l":"Bradyrhizobium diazoefficiens USDA 110","na":5,"nb":1,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["microbial-mat-material-envo-01000157.html","microbial mat material"],["agricultural-soil-envo-00002259.html","agricultural soil"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["morphology/subpolar_flagellation.html","subpolar flagellation"]]},{"id":"NCBITaxon:228410","l":"Nitrosomonas europaea ATCC 19718","na":1,"nb":5,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"],["physiology/lithotrophic.html","lithotrophic"]]},{"id":"NCBITaxon:747","l":"Pasteurella multocida","na":5,"nb":1,"a":[["bronchus-uberon-0002185.html","bronchus"],["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["finger-bto-0004669.html","finger"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["ecology/animal_pathogen.html","animal pathogen"]]},{"id":"PATO:0001456","l":"","na":1,"nb":5,"a":[["anaerobic-wastewater-treatment-reactor-habitatmech-gold-bb0eb00ccb.html","anaerobic wastewater treatment reactor"]],"b":[["environment/anaerobic.html","anaerobic"],["environment/strictly_anaerobic.html","strictly anaerobic"],["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/disproportionation.html","Disproportionation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"]]},{"id":"NCBITaxon:1111735","l":"Sedimenticola selenatireducens DSM 17993","na":4,"nb":1,"a":[["brackish-water-body-envo-01001321.html","brackish water body"],["estuarine-biome-envo-01000020.html","estuarine biome"],["estuary-envo-00000045.html","estuary"],["watercourse-envo-00000029.html","watercourse"]],"b":[["metabolism/selenate_respiration.html","selenate respiration"]]},{"id":"NCBITaxon:1156985","l":"Epibacterium ulvae","na":4,"nb":1,"a":[["bar-envo-00000167.html","bar"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"],["peninsula-envo-00000305.html","peninsula"]],"b":[["other/epibiont_phenotype.html","epibiont phenotype"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":4,"nb":1,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["morphology/s_layer.html","S-layer"]]},{"id":"NCBITaxon:237727","l":"Erythrobacter sp. NAP1","na":4,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"],["pond-water-envo-00002228.html","pond water"],["small-river-biome-envo-00000890.html","small river biome"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["physiology/aerobic_anoxygenic_phototrophy.html","aerobic anoxygenic phototrophy"]]},{"id":"NCBITaxon:651","l":"Aeromonas media","na":4,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"],["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["morphology/brown_pigmented.html","brown pigmented"]]},{"id":"CHEBI:16183","l":"methane","na":1,"nb":3,"a":[["methane-bioremediation-material-habitatmech-gold-d510166905.html","methane bioremediation material"]],"b":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/methanogenesis.html","Methanogenesis"],["physiology/methanotrophic.html","methanotrophic"]]},{"id":"NCBITaxon:1519","l":"Clostridium tyrobutyricum","na":3,"nb":1,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["peatland-envo-00000044.html","peatland"]],"b":[["metabolism/butyric_acid_fermentation.html","butyric acid fermentation"]]},{"id":"NCBITaxon:1570","l":"Halobacillus halophilus","na":3,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["environment/halotolerant.html","halotolerant"]]},{"id":"NCBITaxon:1717","l":"Corynebacterium diphtheriae","na":3,"nb":1,"a":[["foot-bto-0000476.html","foot"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["morphology/dumbbell_shaped.html","dumbbell shaped"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa (strain ATCC 15692 / DSM 22644 / CIP 104116 / JCM 14847 / LMG 12228 / 1C / PRS 101 / PAO1)","na":1,"nb":3,"a":[["style-bto-0001313.html","style"]],"b":[["ecology/biofilm_formation.html","biofilm formation"],["morphology/twitching_motility.html","twitching motility"],["morphology/type_iv_pilus.html","type IV pilus"]]},{"id":"NCBITaxon:2242","l":"Halobacterium salinarum","na":1,"nb":3,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["environment/extremely_halophilic.html","extremely halophilic"],["environment/halophilic.html","halophilic"],["morphology/intracellular_inclusion.html","intracellular inclusion"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK1622","na":3,"nb":1,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["morphology/gliding.html","gliding"]]},{"id":"NCBITaxon:29405","l":"Microlunatus phosphovorus","na":3,"nb":1,"a":[["water-scum-envo-00005794.html","water scum"],["orchard-envo-00000115.html","orchard"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["morphology/polyphosphate_granule.html","polyphosphate granule"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":3,"nb":1,"a":[["bile-bto-0000121.html","bile"],["rectum-bto-0001158.html","rectum"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["ecology/opportunistic_pathogen.html","opportunistic pathogen"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":3,"nb":1,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["morphology/polar_flagellation.html","polar flagellation"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":1,"nb":3,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["ecology/mutualism.html","mutualism"],["physiology/bioluminescence.html","bioluminescence"],["physiology/quorum_sensing.html","quorum sensing"]]},{"id":"NCBITaxon:94122","l":"Shewanella sp. ANA-3","na":3,"nb":1,"a":[["alkaline-water-envo-01000357.html","alkaline water"],["brackish-estuary-envo-00002137.html","brackish estuary"],["underground-water-envo-00005792.html","underground water"]],"b":[["metabolism/arsenate_respiration.html","arsenate respiration"]]},{"id":"ENVO:01000687","l":"","na":1,"nb":2,"a":[["sea-coast-envo-00000303.html","sea coast"]],"b":[["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"]]},{"id":"ENVO:01001040","l":"saline environment","na":1,"nb":2,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"]]},{"id":"NCBITaxon:1097","l":"Chlorobaculum tepidum","na":1,"nb":2,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"],["morphology/green_pigmented.html","green pigmented"]]},{"id":"NCBITaxon:1182451","l":"Aureivirga marina","na":1,"nb":2,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["environment/nacl_delta_mid1.html","NaCl delta mid1"],["environment/nacl_range_mid2.html","NaCl range mid2"]]},{"id":"NCBITaxon:1385984","l":"Exiguobacterium chiriqhucha","na":2,"nb":1,"a":[["water-ice-envo-01000277.html","water ice"],["peak-envo-00000480.html","peak"]],"b":[["environment/temperature_delta_high.html","temperature delta high"]]},{"id":"NCBITaxon:139","l":"Borreliella burgdorferi","na":2,"nb":1,"a":[["joint-bto-0001686.html","joint"],["needle-bto-0000917.html","needle"]],"b":[["genomics/plasmid_carriage.html","plasmid carriage"]]},{"id":"NCBITaxon:165695","l":"Sphingobium","na":2,"nb":1,"a":[["juvenile-bto-0002168.html","juvenile"],["leaf-bto-0000713.html","leaf"]],"b":[["metabolism/lignin_degradation.html","lignin degradation"]]},{"id":"NCBITaxon:167879","l":"Colwellia psychrerythraea 34H","na":2,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["soil-envo-00001998.html","soil"]],"b":[["environment/psychrophilic.html","psychrophilic"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":2,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["morphology/branched_shaped.html","branched shaped"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii (strain ATCC 43067 / DSM 2661 / JAL-1 / JCM 10045 / NBRC 100440)","na":2,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["metabolism/methanogenesis.html","Methanogenesis"]]},{"id":"NCBITaxon:243273","l":"Mycoplasmoides genitalium (strain ATCC 33530 / DSM 19775 / NCTC 10195 / G37)","na":1,"nb":2,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["genomics/gc_high.html","GC high"],["genomics/genome_size.html","genome size"]]},{"id":"NCBITaxon:28264","l":"Arcanobacterium haemolyticum","na":2,"nb":1,"a":[["foot-bto-0000476.html","foot"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"]],"b":[["physiology/alpha_mannosidase_activity.html","alpha-mannosidase activity"]]},{"id":"NCBITaxon:293091","l":"Haloquadratum walsbyi","na":2,"nb":1,"a":[["small-river-biome-envo-00000890.html","small river biome"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["morphology/square_shaped.html","square shaped"]]},{"id":"NCBITaxon:313590","l":"Dokdonia sp. MED134","na":2,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["metabolism/proteorhodopsin_phototrophy.html","proteorhodopsin phototrophy"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans Pd1222","na":2,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["physiology/mixotrophic.html","mixotrophic"]]},{"id":"NCBITaxon:334543","l":"Psychrobacter arcticus","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["environment/delta_phenotype_with_numerical_limits.html","delta phenotype with numerical limits"],["environment/facultative_psychrophilic.html","facultative psychrophilic"]]},{"id":"NCBITaxon:521674","l":"Planctopirus limnophila DSM 3776","na":2,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["morphology/flask_shaped.html","flask shaped"]]},{"id":"NCBITaxon:542","l":"Zymomonas mobilis","na":1,"nb":2,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["physiology/nad_dependent_alcohol_dehydrogenase_activity.html","NAD-dependent alcohol dehydrogenase activity"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":2,"nb":1,"a":[["watercourse-envo-00000029.html","watercourse"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["morphology/lateral_flagellation.html","lateral flagellation"]]},{"id":"NCBITaxon:74109","l":"Photobacterium profundum","na":1,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["environment/piezophilic.html","piezophilic"],["environment/piezotolerant.html","piezotolerant"]]},{"id":"NCBITaxon:86665","l":"Halalkalibacterium halodurans","na":1,"nb":2,"a":[["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["environment/alkalotolerant.html","alkalotolerant"],["environment/alkaphilic.html","alkaliphilic"]]},{"id":"ENVO:01000309","l":"cold environment","na":1,"nb":1,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["environment/temperature_optimum_very_low.html","temperature optimum very low"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["morphology/heterocyst.html","heterocyst"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["physiology/urease_activity.html","urease activity"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":1,"a":[["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["metabolism/cellulolysis.html","cellulolysis"]]},{"id":"NCBITaxon:1579","l":"Lactobacillus acidophilus","na":1,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"]],"b":[["environment/acidotolerant.html","acidotolerant"]]},{"id":"NCBITaxon:1599","l":"Latilactobacillus sakei","na":1,"nb":1,"a":[["research-facility-envo-00000469.html","research facility"]],"b":[["physiology/arginine_dihydrolase_activity.html","arginine dihydrolase activity"]]},{"id":"NCBITaxon:1744","l":"Propionibacterium freudenreichii","na":1,"nb":1,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":1,"nb":1,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["physiology/alkaline_phosphatase_activity.html","alkaline phosphatase activity"]]},{"id":"NCBITaxon:192222","l":"Campylobacter jejuni subsp. jejuni NCTC 11168 = ATCC 700819","na":1,"nb":1,"a":[["flagellate-bto-0000464.html","flagellate"]],"b":[["environment/capnophilic.html","capnophilic"]]},{"id":"NCBITaxon:2283","l":"Acidianus ambivalens","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["metabolism/disproportionation.html","Disproportionation"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima (strain ATCC 43589 / DSM 3109 / JCM 10099 / NBRC 100826 / MSB8)","na":1,"nb":1,"a":[["feather-bto-0000447.html","feather"]],"b":[["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"]]},{"id":"NCBITaxon:272630","l":"Methylorubrum extorquens (strain ATCC 14718 / DSM 1338 / JCM 2805 / NCIMB 9133 / AM1)","na":1,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["physiology/methylotrophic.html","methylotrophic"]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["physiology/alpha_fucosidase_activity.html","alpha-fucosidase activity"]]},{"id":"NCBITaxon:33952","l":"Acetobacterium woodii","na":1,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["metabolism/homoacetogenesis.html","Homoacetogenesis"]]},{"id":"NCBITaxon:357794","l":"Psychromonas ingrahamii","na":1,"nb":1,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["environment/temperature_range_very_low.html","temperature range very low"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["metabolism/photoferrotrophy.html","photoferrotrophy"]]},{"id":"NCBITaxon:399549","l":"Metallosphaera sedula DSM 5348","na":1,"nb":1,"a":[["solfatara-envo-00000217.html","solfatara"]],"b":[["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":1,"nb":1,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["other/voges_proskauer_test_positive.html","Voges-Proskauer test positive"]]},{"id":"NCBITaxon:584","l":"Proteus mirabilis","na":1,"nb":1,"a":[["salivary-gland-bto-0001203.html","salivary gland"]],"b":[["morphology/swarming_motility.html","swarming motility"]]},{"id":"NCBITaxon:71421","l":"Haemophilus influenzae (strain ATCC 51907 / DSM 11121 / KW20 / Rd)","na":1,"nb":1,"a":[["respiratory-mucosa-bto-0000973.html","respiratory mucosa"]],"b":[["genomics/restriction_modification_system.html","restriction-modification system"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":1,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["physiology/dormancy.html","dormancy"]]},{"id":"NCBITaxon:844","l":"Wolinella succinogenes","na":1,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":1,"nb":1,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":1,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["morphology/motility.html","motility"]]},{"id":"NCBITaxon:99807","l":"Corynebacterium auriscanis","na":1,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"]],"b":[["physiology/pyrrolidonyl_arylamidase_activity.html","pyrrolidonyl arylamidase activity"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/NaturalProductMech--AntibioticMech.json b/assets/fleet/edges/NaturalProductMech--AntibioticMech.json index 4574bdf..f3de098 100644 --- a/assets/fleet/edges/NaturalProductMech--AntibioticMech.json +++ b/assets/fleet/edges/NaturalProductMech--AntibioticMech.json @@ -1 +1 @@ -{"a":"NaturalProductMech","b":"AntibioticMech","base":{"NaturalProductMech":"https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/natural_products/","AntibioticMech":"https://culturebotai.github.io/AntibioticMech/pages/"},"n":278,"by":{"CHEBI":180,"NCBITaxon":96,"UniProt":2},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":24,"nb":30,"a":[["alkaloids/biotin.yaml","biotin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":12,"nb":12,"a":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"NCBITaxon:330879","l":"Aspergillus fumigatus (strain ATCC MYA-4609 / CBS 101355 / FGSC A1100 / Af293)","na":14,"nb":5,"a":[["alkaloids/fumigaclavine-c.yaml","fumigaclavine C"],["alkaloids/fumiquinazoline-a.yaml","fumiquinazoline A"],["alkaloids/fumiquinazoline-c.yaml","fumiquinazoline C"],["alkaloids/fumiquinazoline-d.yaml","fumiquinazoline D"],["alkaloids/hexadehydroastechrome.yaml","hexadehydroastechrome"],["polyketides/endocrocin.yaml","endocrocin"]],"b":[["antibacterial/fumagillin.html","fumagillin"],["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/terbinafine.html","terbinafine"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:5518","l":"Fusarium graminearum","na":14,"nb":5,"a":[["amino_acids_and_peptides/fusaoctaxin-a.yaml","fusaoctaxin A"],["polyketides/aurofusarin.yaml","aurofusarin"],["polyketides/fusarielin-h.yaml","fusarielin H"],["polyketides/gibepyrone-a.yaml","gibepyrone A"],["polyketides/prolipyrone-b.yaml","prolipyrone B"],["polyketides/zearalenone.yaml","zearalenone"]],"b":[["antifungal/carbendazim.html","carbendazim"],["antifungal/difenoconazole.html","difenoconazole"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/prochloraz.html","prochloraz"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":5,"nb":13,"a":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"],["unclassified/leuvalin.yaml","leuvalin"],["unclassified/phevalin.yaml","phevalin"],["unclassified/tyrvalin.yaml","tyrvalin"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/bromodeoxytopsentin.html","bromodeoxytopsentin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"NCBITaxon:229533","l":"Fusarium graminearum PH-1","na":11,"nb":5,"a":[["alkaloids/chrysogine.yaml","chrysogine"],["amino_acids_and_peptides/fusaoctaxin-a.yaml","fusaoctaxin A"],["polyketides/aurofusarin.yaml","aurofusarin"],["polyketides/prolipyrone-b.yaml","prolipyrone B"],["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"],["terpenoids/15-acetyldeoxynivalenol.yaml","15-acetyldeoxynivalenol"]],"b":[["antifungal/carbendazim.html","carbendazim"],["antifungal/difenoconazole.html","difenoconazole"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/prochloraz.html","prochloraz"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:40559","l":"Botrytis cinerea","na":23,"nb":4,"a":[["terpenoids/1-epibotrydial.yaml","1-epibotrydial"],["terpenoids/10-dehydroxy-dihydrobotrydialone.yaml","10-dehydroxy dihydrobotrydialone"],["terpenoids/10-epi-dihydrobotrydial.yaml","10-epi-dihydrobotrydial"],["terpenoids/10-oxo-dihydrobotrydial.yaml","10-Oxo-dihydrobotrydial"],["terpenoids/10-oxodehydrodihydrobotrydial.yaml","10-Oxodehydrodihydrobotrydial"],["terpenoids/10-oxodihydrobotry-1-9-4-5-diendial.yaml","10-Oxodihydrobotry-1(9),4(5)-diendial"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/iprodione.html","iprodione"],["antifungal/pyrisoxazole.html","pyrisoxazole"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":4,"nb":22,"a":[["alkaloids/tilivalline.yaml","tilivalline"],["amino_acids_and_peptides/colibactin.yaml","colibactin"],["amino_acids_and_peptides/klebsidin.yaml","klebsidin"],["carbohydrates/capsular-polysaccharide-2.yaml","capsular polysaccharide"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"]]},{"id":"NCBITaxon:746128","l":"Aspergillus fumigatus","na":20,"nb":4,"a":[["alkaloids/fumigaclavine-c.yaml","fumigaclavine C"],["alkaloids/fumiquinazoline-a.yaml","fumiquinazoline A"],["alkaloids/fumiquinazoline-c.yaml","fumiquinazoline C"],["alkaloids/fumiquinazoline-d.yaml","fumiquinazoline D"],["alkaloids/hexadehydroastechrome.yaml","hexadehydroastechrome"],["carbohydrates/tobramycin.yaml","tobramycin"]],"b":[["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/terbinafine.html","terbinafine"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:405948","l":"","na":7,"nb":4,"a":[["amino_acids_and_peptides/erythrochelin.yaml","erythrochelin"],["polyketides/erythromycin-a.yaml","erythromycin A"],["polyketides/erythromycin-b.yaml","erythromycin B"],["polyketides/erythromycin-c.yaml","erythromycin C"],["polyketides/erythromycin-d.yaml","erythromycin D"],["polyketides/flaviolin.yaml","flaviolin"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["unspecified/erythromycin-b.html","erythromycin B"],["unspecified/erythromycin-c.html","erythromycin C"],["unspecified/erythromycin-d.html","erythromycin D"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":16,"nb":3,"a":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["amino_acids_and_peptides/ericin-s.yaml","ericin S"],["amino_acids_and_peptides/iturin.yaml","iturin"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"NCBITaxon:1890","l":"Streptomyces antibioticus","na":14,"nb":3,"a":[["alkaloids/esmeraldin.yaml","esmeraldin"],["alkaloids/pentostatin.yaml","pentostatin"],["amino_acids_and_peptides/2-2-hydroxyethyl-clavam.yaml","(-)-2-(2-hydroxyethyl)clavam"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["amino_acids_and_peptides/scabichelin.yaml","scabichelin"],["amino_acids_and_peptides/valclavam.yaml","valclavam"]],"b":[["antibacterial/indanomycin.html","indanomycin"],["unspecified/oviedomycin.html","oviedomycin"],["unspecified/pentostatin.html","pentostatin"]]},{"id":"NCBITaxon:117187","l":"Fusarium verticillioides","na":8,"nb":3,"a":[["alkaloids/dihydrofusarin-c.yaml","dihydrofusarin C"],["alkaloids/epi-fusarin-c.yaml","epi-fusarin C"],["alkaloids/fusaric-acid.yaml","fusaric acid"],["alkaloids/fusarin-c.yaml","fusarin C"],["alkaloids/fusarin-d.yaml","fusarin D"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/fludioxonil.html","fludioxonil"]]},{"id":"NCBITaxon:1867","l":"Actinoplanes teichomyceticus","na":6,"nb":3,"a":[["amino_acids_and_peptides/teicoplanin-a2-1.yaml","Teicoplanin A2-1"],["amino_acids_and_peptides/teicoplanin-a2-2.yaml","teicoplanin A2-2"],["amino_acids_and_peptides/teicoplanin-a2-3.yaml","teicoplanin A2-3"],["amino_acids_and_peptides/teicoplanin-a2-4.yaml","teicoplanin A2-4"],["amino_acids_and_peptides/teicoplanin-a2-5.yaml","Teicoplanin A2-5"],["amino_acids_and_peptides/teicoplanin.yaml","teicoplanin"]],"b":[["antibacterial/teicoplanin.html","teicoplanin"],["unspecified/teicoplanin-a2-2.html","teicoplanin A2-2"],["unspecified/teicoplanin-a2-3.html","teicoplanin A2-3"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":3,"nb":4,"a":[["amino_acids_and_peptides/epidermin.yaml","epidermin"],["amino_acids_and_peptides/epilancin-15x.yaml","epilancin 15x"],["amino_acids_and_peptides/pep5.yaml","pep5"]],"b":[["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/oxacillin.html","oxacillin"]]},{"id":"NCBITaxon:451804","l":"Aspergillus fumigatus (strain CBS 144.89 / FGSC A1163 / CEA10)","na":3,"nb":3,"a":[["terpenoids/21-h-hopane-3beta-22-diol.yaml","21-β-H-hopane-3beta, 22-diol"],["terpenoids/compound-3-3.yaml","compound 3"],["terpenoids/fumihopaside-a.yaml","fumihopaside A"]],"b":[["antifungal/itraconazole.html","itraconazole"],["antifungal/terbinafine.html","terbinafine"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":27,"nb":2,"a":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["alkaloids/pseudomonine.yaml","pseudomonine"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyreudione-c.yaml","pyreudione C"],["alkaloids/quinolobactin.yaml","quinolobactin"]],"b":[["antibacterial/mupirocin.html","mupirocin"],["antifungal/2-4-diacetylphloroglucinol.html","2,4-diacetylphloroglucinol"]]},{"id":"NCBITaxon:332648","l":"Botrytis cinerea B05.10","na":21,"nb":2,"a":[["terpenoids/1-epibotrydial.yaml","1-epibotrydial"],["terpenoids/10-dehydroxy-dihydrobotrydialone.yaml","10-dehydroxy dihydrobotrydialone"],["terpenoids/10-epi-dihydrobotrydial.yaml","10-epi-dihydrobotrydial"],["terpenoids/10-oxo-dihydrobotrydial.yaml","10-Oxo-dihydrobotrydial"],["terpenoids/10-oxodehydrodihydrobotrydial.yaml","10-Oxodehydrodihydrobotrydial"],["terpenoids/10-oxodihydrobotry-1-9-4-5-diendial.yaml","10-Oxodihydrobotry-1(9),4(5)-diendial"]],"b":[["antifungal/fludioxonil.html","fludioxonil"],["antifungal/iprodione.html","iprodione"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":2,"nb":15,"a":[["alkaloids/acinetobactin.yaml","acinetobactin"],["amino_acids_and_peptides/fimsbactin-a.yaml","fimsbactin A"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"NCBITaxon:58346","l":"Streptomyces platensis","na":14,"nb":2,"a":[["alkaloids/13-epi-dorrigocin-a.yaml","13-epi-dorrigocin A"],["alkaloids/17-hydroxy-8-desmethoxy-isomigrastatin.yaml","17-hydroxy-8-desmethoxy-isomigrastatin"],["alkaloids/dorrigocin-a.yaml","dorrigocin A"],["alkaloids/dorrigocin-b.yaml","dorrigocin B"],["alkaloids/iso-migrastatin.yaml","iso-migrastatin"],["alkaloids/staurosporine.yaml","staurosporine"]],"b":[["antibacterial/platencin.html","platencin"],["antibacterial/platensimycin.html","platensimycin"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":10,"nb":2,"a":[["amino_acids_and_peptides/lipopeptide-8d1-1.yaml","lipopeptide 8D1-1"],["amino_acids_and_peptides/lipopeptide-8d1-2.yaml","lipopeptide 8D1-2"],["carbohydrates/amicetin.yaml","amicetin"],["carbohydrates/streptothricin-c.yaml","streptothricin C"],["carbohydrates/streptothricin-d.yaml","streptothricin D"],["carbohydrates/streptothricin-e.yaml","streptothricin E"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"],["unspecified/streptothricin-d.html","streptothricin D"]]},{"id":"NCBITaxon:242507","l":"","na":10,"nb":2,"a":[["polyketides/1-alpha-l-2-o-methyl-6-deoxymannopyranosyloxy-3-6-8-trimethoxynaphthalene.yaml","1-(alpha-l-(2-O-methyl)-6-deoxymannopyranosyloxy)-3,6,8-trimethoxynaphthalene"],["polyketides/10-11-dihydroxymagnaporthepyrone.yaml","10,11-dihydroxymagnaporthepyrone"],["polyketides/12-13-dihydroxymagnaporthepyrone.yaml","12,13-dihydroxymagnaporthepyrone"],["polyketides/epipyriculol.yaml","epipyriculol"],["polyketides/naphthalene-1-3-6-8-tetrol.yaml","naphthalene-1,3,6,8-tetrol"],["polyketides/nectriapyrone-c.yaml","nectriapyrone C"]],"b":[["antifungal/carboxin.html","carboxin"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:1223523","l":"Streptomyces mobaraensis NBRC 13819 = DSM 40847","na":5,"nb":2,"a":[["amino_acids_and_peptides/bleomycin-a2.yaml","bleomycin A2"],["amino_acids_and_peptides/bleomycin-b2.yaml","bleomycin B2"],["amino_acids_and_peptides/cyclothiazomycin-b1.yaml","cyclothiazomycin b1"],["amino_acids_and_peptides/ketomemicin-b3.yaml","ketomemicin B3"],["amino_acids_and_peptides/ketomemicin-b4.yaml","ketomemicin B4"]],"b":[["antibacterial/bleomycin-a2.html","bleomycin A2"],["antibacterial/bleomycin-b2.html","bleomycin B2"]]},{"id":"NCBITaxon:467194","l":"Streptomyces sp. CNQ-418","na":5,"nb":2,"a":[["alkaloids/marinopyrrole-a.yaml","(−)-marinopyrrole A"],["alkaloids/marinopyrrole-b.yaml","(−)-marinopyrrole B"],["alkaloids/marinopyrrole-c.yaml","marinopyrrole C"],["alkaloids/marinopyrrole-d.yaml","marinopyrrole D"],["alkaloids/marinopyrrole-e.yaml","marinopyrrole E"]],"b":[["antibacterial/marinopyrrole-a.html","(−)-marinopyrrole A"],["antibacterial/marinopyrrole-b.html","(−)-marinopyrrole B"]]},{"id":"NCBITaxon:559292","l":"Saccharomyces cerevisiae (strain ATCC 204508 / S288c)","na":2,"nb":5,"a":[["polyketides/kojic-acid.yaml","kojic acid"],["polyketides/radicicol.yaml","radicicol"]],"b":[["antifungal/anidulafungin.html","anidulafungin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/caspofungin.html","caspofungin"],["antifungal/cycloheximide.html","cycloheximide"],["antifungal/micafungin.html","micafungin"]]},{"id":"NCBITaxon:212423","l":"Streptomyces kaniharaensis","na":2,"nb":2,"a":[["alkaloids/formycin-a.yaml","formycin A"],["carbohydrates/coformycin.yaml","coformycin"]],"b":[["unspecified/coformycin.html","coformycin"],["unspecified/formycin-a.html","formycin A"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":31,"nb":1,"a":[["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["alkaloids/myxofacycline-e.yaml","myxofacycline E"],["alkaloids/myxofacycline-f.yaml","myxofacycline F"],["alkaloids/myxofacycline-g.yaml","myxofacycline G"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"]],"b":[["antibacterial/althiomycin.html","althiomycin"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":30,"nb":1,"a":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["amino_acids_and_peptides/ditryptophenaline.yaml","(-)-ditryptophenaline"],["amino_acids_and_peptides/imizoquin-a.yaml","imizoquin A"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":23,"nb":1,"a":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/melanin.yaml","melanin"],["alkaloids/undecylprodigiosin.yaml","undecylprodigiosin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/sapb.yaml","SapB"]],"b":[["antibacterial/nocardamine.html","nocardamine"]]},{"id":"NCBITaxon:162425","l":"Aspergillus nidulans","na":22,"nb":1,"a":[["alkaloids/aspernidine-a.yaml","aspernidine A"],["alkaloids/aspyridone-a.yaml","aspyridone A"],["alkaloids/aspyridone-b.yaml","aspyridone B"],["alkaloids/biotin.yaml","biotin"],["alkaloids/cichorine.yaml","cichorine"],["alkaloids/pentostatin.yaml","pentostatin"]],"b":[["antifungal/thiabendazole.html","thiabendazole"]]},{"id":"NCBITaxon:227321","l":"Emericella nidulans (strain FGSC A4 / ATCC 38163 / CBS 112.46 / NRRL 194 / M139)","na":22,"nb":1,"a":[["alkaloids/aspernidine-a.yaml","aspernidine A"],["alkaloids/aspyridone-a.yaml","aspyridone A"],["alkaloids/aspyridone-b.yaml","aspyridone B"],["alkaloids/cichorine.yaml","cichorine"],["alkaloids/terrequinone-a.yaml","terrequinone A"],["amino_acids_and_peptides/fellutamide-b.yaml","fellutamide B"]],"b":[["antifungal/thiabendazole.html","thiabendazole"]]},{"id":"NCBITaxon:54571","l":"Streptomyces venezuelae","na":21,"nb":1,"a":[["alkaloids/anthelvencin-a.yaml","anthelvencin A"],["alkaloids/anthelvencin-b.yaml","anthelvencin B"],["alkaloids/anthelvencin-c.yaml","anthelvencin C"],["alkaloids/chloramphenicol.yaml","chloramphenicol"],["alkaloids/corynecin-ii.yaml","corynecin II"],["alkaloids/gaburedin-d.yaml","gaburedin D"]],"b":[["antibacterial/methymycin.html","methymycin"]]},{"id":"NCBITaxon:2878388","l":"Streptomyces sp. SCSIO 03032","na":20,"nb":1,"a":[["alkaloids/indimicin-a.yaml","indimicin A"],["alkaloids/indimicin-b.yaml","indimicin B"],["alkaloids/indimicin-c.yaml","indimicin C"],["alkaloids/indimicin-d.yaml","indimicin D"],["alkaloids/indimicin-e.yaml","indimicin E"],["alkaloids/lynamicin-a.yaml","lynamicin A"]],"b":[["unspecified/piericidin-a.html","piericidin A"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":20,"nb":1,"a":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/c-3-sulfonylated-derivative.yaml","C-3 sulfonylated derivative"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["alkaloids/n-n-dioxide-containing-derivate.yaml","N,N-dioxide containing derivate"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:341663","l":"","na":17,"nb":1,"a":[["alkaloids/asterriquinone-ct5.yaml","asterriquinone CT5"],["alkaloids/dihydroisoflavipucine.yaml","dihydroisoflavipucine"],["alkaloids/isoflavipucine.yaml","isoflavipucine"],["polyketides/citreoviridin.yaml","citreoviridin"],["polyketides/geodin.yaml","geodin"],["polyketides/terreic-acid.yaml","terreic acid"]],"b":[["antiviral/aspulvinone-e.html","aspulvinone E"]]},{"id":"NCBITaxon:41951","l":"Streptomyces argillaceus","na":15,"nb":1,"a":[["alkaloids/argimycin-pi.yaml","argimycin PI"],["alkaloids/argimycin-pii.yaml","argimycin PII"],["alkaloids/argimycin-piv.yaml","argimycin PIV"],["alkaloids/argimycin-pix.yaml","argimycin PIX"],["alkaloids/argimycin-pv.yaml","argimycin PV"],["alkaloids/argimycin-pvi.yaml","argimycin PVI"]],"b":[["unspecified/mithramycin.html","mithramycin"]]},{"id":"NCBITaxon:5127","l":"Fusarium fujikuroi","na":15,"nb":1,"a":[["alkaloids/fusaric-acid.yaml","fusaric acid"],["alkaloids/fusarin-c.yaml","fusarin C"],["polyketides/bikaverin.yaml","bikaverin"],["polyketides/fujikurin-c.yaml","fujikurin C"],["polyketides/fujikurin-d.yaml","fujikurin D"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":14,"nb":1,"a":[["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/framycetin.yaml","framycetin"],["carbohydrates/neomycin-c.yaml","neomycin C"],["carbohydrates/paromomycin.yaml","paromomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":13,"nb":1,"a":[["alkaloids/holomycin.yaml","holomycin"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/2-formyloxymethylclavam.yaml","2-formyloxymethylclavam"],["amino_acids_and_peptides/2-hydroxymethylclavam.yaml","2-hydroxymethylclavam"],["amino_acids_and_peptides/alanylclavam.yaml","alanylclavam"],["amino_acids_and_peptides/cephamycin-c.yaml","cephamycin C"]],"b":[["antibacterial/clavulanic-acid.html","clavulanic acid"]]},{"id":"NCBITaxon:1433842","l":"Hapalosiphon welwitschii UTEX B 1830","na":12,"nb":1,"a":[["alkaloids/12-epi-fischerindole-i-isonitrile.yaml","12-epi-fischerindole I isonitrile"],["alkaloids/12-epi-fischerindole-u-isonitrile.yaml","12-epi-fischerindole U isonitrile"],["alkaloids/12-epi-hapalindole-c-isonitrile.yaml","12-epi-hapalindole C isonitrile"],["alkaloids/12-epi-hapalindole-e.yaml","12-epi-hapalindole E"],["alkaloids/3-epi-welwitindolinone-b-isothiocyanate.yaml","3-epi-welwitindolinone B isothiocyanate"],["alkaloids/3-z-2-isocyanovinyl-indole.yaml","3-[(Z)-2-isocyanovinyl]indole"]],"b":[["antibacterial/3-z-2-isocyanovinyl-indole.html","3-[(Z)-2-isocyanovinyl]indole"]]},{"id":"NCBITaxon:5053","l":"Aspergillus aculeatus","na":11,"nb":1,"a":[["alkaloids/acurin-a.yaml","acurin A"],["polyketides/secalonic-acid-a.yaml","Secalonic acid A"],["terpenoids/aculene-a.yaml","aculene A"],["terpenoids/aculene-b.yaml","aculene B"],["terpenoids/aculene-c.yaml","aculene C"],["terpenoids/aculene-d.yaml","aculene D"]],"b":[["antifungal/aculeacin-a.html","aculeacin A"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":10,"nb":1,"a":[["alkaloids/labradorin-1.yaml","labradorin 1"],["alkaloids/labradorin-2.yaml","labradorin 2"],["alkaloids/secimide.yaml","secimide"],["amino_acids_and_peptides/phaseolotoxin.yaml","phaseolotoxin"],["amino_acids_and_peptides/syringolin-a.yaml","syringolin A"],["amino_acids_and_peptides/tabtoxin.yaml","tabtoxin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae (strain ATCC 42149 / RIB 40)","na":10,"nb":1,"a":[["fatty_acids/oryzine-a.yaml","oryzine A"],["polyketides/kojic-acid.yaml","kojic acid"],["polyketides/oryzine-b.yaml","oryzine B"],["polyketides/ywa1.yaml","YWA1"],["shikimates_and_phenylpropanoids/2-4-dihydroxy-3-methoxypropiophenone.yaml","2,4'-dihydroxy-3'-methoxypropiophenone"],["shikimates_and_phenylpropanoids/8-methyldiaporthin.yaml","8-methyldiaporthin"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"NCBITaxon:1159556","l":"Ustilaginoidea virens","na":9,"nb":1,"a":[["amino_acids_and_peptides/ustiloxin-b.yaml","ustiloxin B"],["polyketides/ustilaginoidin-a.yaml","ustilaginoidin A"],["polyketides/ustilaginoidin-d.yaml","ustilaginoidin D"],["polyketides/ustilaginoidin-e.yaml","ustilaginoidin E"],["polyketides/ustilaginoidin-f.yaml","ustilaginoidin F"],["polyketides/ustilaginoidin-g.yaml","ustilaginoidin G"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"]]},{"id":"NCBITaxon:1979465","l":"Phoma betae","na":9,"nb":1,"a":[["polyketides/betaenone-a.yaml","betaenone A"],["polyketides/betaenone-b.yaml","betaenone B"],["polyketides/betaenone-c.yaml","betaenone C"],["terpenoids/17-deoxyaphidicolin.yaml","17-deoxyaphidicolin"],["terpenoids/3-deoxyaphidicolin.yaml","3-deoxyaphidicolin"],["terpenoids/aphidicolan-16-ol.yaml","aphidicolan-16β-ol"]],"b":[["antiviral/aphidicolin.html","aphidicolin"]]},{"id":"NCBITaxon:5076","l":"Penicillium chrysogenum","na":9,"nb":1,"a":[["alkaloids/chrysogine.yaml","chrysogine"],["amino_acids_and_peptides/benzylpenicillin-sodium.yaml","benzylpenicillin sodium"],["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"],["amino_acids_and_peptides/n-5s-5-ammonio-5-carboxylatopentanoyl-l-cysteinyl-d-valinate.yaml","N-[(5S)-5-ammonio-5-carboxylatopentanoyl]-L-cysteinyl-D-valinate"],["polyketides/2-3-dihydrosorbicillin.yaml","2'3'-dihydrosorbicillin"],["polyketides/bisorbicillinol.yaml","bisorbicillinol"]],"b":[["unspecified/isopenicillin-n.html","isopenicillin N"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":1,"nb":8,"a":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]],"b":[["antifungal/anidulafungin.html","anidulafungin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/caspofungin.html","caspofungin"],["antifungal/cycloheximide.html","cycloheximide"],["antifungal/micafungin.html","micafungin"],["antifungal/oligomycin-a.html","oligomycin A"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":8,"nb":1,"a":[["amino_acids_and_peptides/ferrichrome-2.yaml","ferrichrome"],["polyketides/2-acetyl-1-3-6-8-tetrahydroxynaphthalene.yaml","2-acetyl-1,3,6,8-tetrahydroxynaphthalene"],["polyketides/kojic-acid.yaml","kojic acid"],["terpenoids/aphidicolin.yaml","aphidicolin"],["unclassified/2-oxocyclopiazonic-acid.yaml","2-oxocyclopiazonic acid"],["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":1,"nb":7,"a":[["amino_acids_and_peptides/enterocin-a.yaml","enterocin A"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":1,"nb":7,"a":[["unclassified/antimycin-a1b.yaml","antimycin A1B"]],"b":[["antibacterial/brefeldin-a.html","brefeldin A"],["antifungal/anidulafungin.html","anidulafungin"],["antifungal/caspofungin.html","caspofungin"],["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/micafungin.html","micafungin"]]},{"id":"NCBITaxon:68280","l":"Streptomyces violaceusniger","na":7,"nb":1,"a":[["fatty_acids/desulfoclethramycin.yaml","desulfoclethramycin"],["polyketides/be-24566b.yaml","BE-24566B"],["polyketides/elaiophylin.yaml","elaiophylin"],["polyketides/meridamycin-2.yaml","meridamycin"],["polyketides/nigericin.yaml","nigericin"],["terpenoids/2-methylisoborneol.yaml","2-methylisoborneol"]],"b":[["antibacterial/nigericin.html","nigericin"]]},{"id":"NCBITaxon:37326","l":"Nocardia brasiliensis","na":6,"nb":1,"a":[["polyketides/brasilinolide-a.yaml","brasilinolide A"],["polyketides/brasilinolide-b.yaml","brasilinolide B"],["polyketides/brasilinolide-c.yaml","brasilinolide C"],["polyketides/brasiliquinone-a.yaml","brasiliquinone A"],["polyketides/brasiliquinone-b.yaml","brasiliquinone B"],["terpenoids/brasilicardin-a.yaml","brasilicardin A"]],"b":[["antibacterial/brasiliquinone-b.html","brasiliquinone B"]]},{"id":"NCBITaxon:47763","l":"Streptomyces lydicus","na":6,"nb":1,"a":[["amino_acids_and_peptides/ectoine.yaml","ectoine"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"],["polyketides/erythromycin-a.yaml","erythromycin A"],["polyketides/natamycin.yaml","natamycin"],["polyketides/streptolydigin.yaml","streptolydigin"],["unclassified/lydicamycin.yaml","lydicamycin"]],"b":[["unspecified/streptolydigin.html","streptolydigin"]]},{"id":"NCBITaxon:5082","l":"Penicillium roqueforti","na":6,"nb":1,"a":[["alkaloids/mycophenolic-acid-2.yaml","mycophenolic acid"],["polyketides/mycophenolic-acid.yaml","mycophenolic acid"],["terpenoids/pr-toxin.yaml","PR-toxin"],["unclassified/andrastin-a.yaml","andrastin A"],["unclassified/roquefortine-c.yaml","roquefortine C"],["unclassified/roquefortine-d.yaml","roquefortine D"]],"b":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]]},{"id":"NCBITaxon:52","l":"Chondromyces crocatus","na":6,"nb":1,"a":[["polyketides/chondrochloren-a.yaml","chondrochloren A"],["polyketides/cmc-thuggacin-a.yaml","Cmc-thuggacin A"],["polyketides/crocacin.yaml","crocacin"],["shikimates_and_phenylpropanoids/ajudazol-a.yaml","ajudazol A"],["unclassified/chondramide-a.yaml","chondramide A"],["unclassified/cmc-thuggacin-b.yaml","Cmc-thuggacin B"]],"b":[["unspecified/chondrochloren-a.html","chondrochloren A"]]},{"id":"NCBITaxon:43658","l":"Pseudoalteromonas rubra","na":5,"nb":1,"a":[["alkaloids/prodigiosin.yaml","prodigiosin"],["polyketides/nonyltyrazolone.yaml","nonyltyrazolone"],["polyketides/undecyltyrazolone.yaml","undecyltyrazolone"],["shikimates_and_phenylpropanoids/z-6-undecenyltyrazolone.yaml","(Z)-ω-6-undecenyltyrazolone"],["unclassified/heptyltyrazolone.yaml","heptyltyrazolone"]],"b":[["unspecified/prodigiosin.html","prodigiosin"]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":1,"nb":5,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/imipenem.html","imipenem"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":1,"a":[["alkaloids/prodigiosin-2.yaml","prodigiosin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/serratiochelin-a.yaml","serratiochelin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["polyketides/oocydin-a.yaml","oocydin A"]],"b":[["antibacterial/althiomycin.html","althiomycin"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":4,"a":[["alkaloids/petrobactin.yaml","petrobactin"]],"b":[["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/trimethoprim.html","trimethoprim"],["antiprotozoal/suramin.html","suramin"],["antiviral/tilorone.html","tilorone"]]},{"id":"NCBITaxon:318829","l":"Magnaporthe oryzae","na":1,"nb":4,"a":[["polyketides/nectriapyrone.yaml","nectriapyrone"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/carboxin.html","carboxin"],["antifungal/carpropamid.html","carpropamid"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:36650","l":"Penicillium aethiopicum","na":4,"nb":1,"a":[["alkaloids/tryptoquialanine.yaml","tryptoquialanine"],["polyketides/epidechlorogriseofulvin.yaml","epidechlorogriseofulvin"],["polyketides/griseofulvin.yaml","griseofulvin"],["unclassified/viridicatumtoxin.yaml","viridicatumtoxin"]],"b":[["unspecified/viridicatumtoxin.html","viridicatumtoxin"]]},{"id":"NCBITaxon:412963","l":"","na":4,"nb":1,"a":[["amino_acids_and_peptides/endopyrrole-b.yaml","endopyrrole B"],["amino_acids_and_peptides/holrhizin-a.yaml","holrhizin A"],["unclassified/endopyrrole-a.yaml","endopyrrole A"],["unclassified/rhizoxin-a.yaml","rhizoxin A"]],"b":[["unspecified/rhizoxin.html","rhizoxin"]]},{"id":"NCBITaxon:68214","l":"Streptomyces griseochromogenes","na":4,"nb":1,"a":[["carbohydrates/blasticidin-s.yaml","blasticidin S"],["carbohydrates/streptothricin-f.yaml","streptothricin F"],["polyketides/tautomycetin-2.yaml","tautomycetin"],["polyketides/tautomycetin.yaml","tautomycetin"]],"b":[["antifungal/blasticidin-s.html","blasticidin S"]]},{"id":"NCBITaxon:1907","l":"Streptomyces glaucescens","na":3,"nb":1,"a":[["carbohydrates/5-hydroxystreptomycin.yaml","5'-hydroxystreptomycin"],["carbohydrates/streptomycin.yaml","streptomycin"],["polyketides/tetracenomycin-c.yaml","tetracenomycin C"]],"b":[["antibacterial/tetracenomycin-c.html","tetracenomycin C"]]},{"id":"NCBITaxon:264951","l":"Paecilomyces variotii","na":3,"nb":1,"a":[["polyketides/agnestin-a.yaml","agnestin A"],["polyketides/agnestin-b.yaml","agnestin B"],["polyketides/viriditoxin.yaml","viriditoxin"]],"b":[["antibacterial/m-viriditoxin.html","(M)-viriditoxin"]]},{"id":"NCBITaxon:316284","l":"Streptomyces noursei ATCC 11455","na":3,"nb":1,"a":[["amino_acids_and_peptides/dechlorocuracomycin.yaml","dechlorocuracomycin"],["polyketides/nystatin-a1.yaml","nystatin A1"],["unclassified/albonoursin.yaml","albonoursin"]],"b":[["antifungal/nystatin-a1.html","nystatin A1"]]},{"id":"NCBITaxon:334819","l":"Fusarium verticillioides 7600","na":1,"nb":3,"a":[["alkaloids/fusaric-acid.yaml","fusaric acid"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/fludioxonil.html","fludioxonil"]]},{"id":"NCBITaxon:53446","l":"Streptomyces cinnamoneus","na":3,"nb":1,"a":[["amino_acids_and_peptides/cinnamycin.yaml","cinnamycin"],["amino_acids_and_peptides/duramycin.yaml","duramycin"],["unclassified/bicozamycin.yaml","bicozamycin"]],"b":[["antibacterial/bicozamycin.html","bicozamycin"]]},{"id":"NCBITaxon:536","l":"Chromobacterium violaceum","na":3,"nb":1,"a":[["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["unclassified/romidepsin.yaml","romidepsin"]],"b":[["unspecified/romidepsin.html","romidepsin"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":3,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"NCBITaxon:668825","l":"Streptomyces sp. ATCC 700974","na":3,"nb":1,"a":[["amino_acids_and_peptides/albomycin-1.yaml","albomycin δ1"],["amino_acids_and_peptides/albomycin-delta2.yaml","albomycin delta2"],["amino_acids_and_peptides/albomycin-epsilon.yaml","albomycin epsilon"]],"b":[["antibacterial/albomycin-%CE%B41.html","albomycin δ1"]]},{"id":"NCBITaxon:686309","l":"Micromonospora haikouensis","na":3,"nb":1,"a":[["carbohydrates/aristeromycin.yaml","aristeromycin"],["carbohydrates/coformycin.yaml","coformycin"],["carbohydrates/kanamycin-a.yaml","kanamycin A"]],"b":[["unspecified/coformycin.html","coformycin"]]},{"id":"CHEBI:26789","l":"","na":1,"nb":2,"a":[["carbohydrates/streptothricin-f.yaml","streptothricin F"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"],["unspecified/streptothricin-d.html","streptothricin D"]]},{"id":"NCBITaxon:1079985","l":"Streptomyces chartreusis NRRL 3882","na":2,"nb":1,"a":[["carbohydrates/tunicamycin-b1.yaml","tunicamycin B1"],["polyketides/a23187.yaml","A23187"]],"b":[["unspecified/tunicamycin-b1.html","tunicamycin B1"]]},{"id":"NCBITaxon:27337","l":"Verticillium dahliae","na":2,"nb":1,"a":[["polyketides/flaviolin.yaml","flaviolin"],["polyketides/scytalone.yaml","scytalone"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"NCBITaxon:28576","l":"Talaromyces variabilis","na":2,"nb":1,"a":[["alkaloids/ilicicolin-h.yaml","ilicicolin H"],["unclassified/varicidin-a.yaml","varicidin A"]],"b":[["unspecified/ilicicolin-h.html","ilicicolin H"]]},{"id":"NCBITaxon:36651","l":"Penicillium digitatum","na":1,"nb":2,"a":[["alkaloids/tryptoquialanine.yaml","tryptoquialanine"]],"b":[["antifungal/pyrifenox.html","pyrifenox"],["antifungal/triflumizole.html","triflumizole"]]},{"id":"NCBITaxon:5074","l":"Penicillium brevicompactum","na":2,"nb":1,"a":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"],["unclassified/asperphenamate.yaml","asperphenamate"]],"b":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]]},{"id":"NCBITaxon:5270","l":"","na":2,"nb":1,"a":[["fatty_acids/itaconic-acid.yaml","itaconic acid"],["fatty_acids/ustilagic-acid.yaml","ustilagic acid"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":2,"nb":1,"a":[["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["alkaloids/yersiniabactin.yaml","yersiniabactin"]],"b":[["unspecified/chir-090.html","CHIR-090"]]},{"id":"NCBITaxon:68264","l":"Streptomyces rishiriensis","na":2,"nb":1,"a":[["shikimates_and_phenylpropanoids/coumermycin-a1.yaml","coumermycin A1"],["unclassified/lactonamycin.yaml","lactonamycin"]],"b":[["antibacterial/coumermycin-a1.html","coumermycin A1"]]},{"id":"CHEBI:131914","l":"violacein","na":1,"nb":1,"a":[["alkaloids/violacein.yaml","violacein"]],"b":[["antibacterial/violacein.html","violacein"]]},{"id":"CHEBI:132426","l":"chondrochloren A","na":1,"nb":1,"a":[["polyketides/chondrochloren-a.yaml","chondrochloren A"]],"b":[["unspecified/chondrochloren-a.html","chondrochloren A"]]},{"id":"CHEBI:133127","l":"lugdunin","na":1,"nb":1,"a":[["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]],"b":[["antibacterial/lugdunin.html","lugdunin"]]},{"id":"CHEBI:134606","l":"toyocamycin","na":1,"nb":1,"a":[["carbohydrates/toyocamycin.yaml","toyocamycin"]],"b":[["antifungal/toyocamycin.html","toyocamycin"]]},{"id":"CHEBI:138511","l":"piericidin A","na":1,"nb":1,"a":[["polyketides/piericidin-a.yaml","piericidin A"]],"b":[["unspecified/piericidin-a.html","piericidin A"]]},{"id":"CHEBI:140173","l":"malacidin A","na":1,"nb":1,"a":[["amino_acids_and_peptides/malacidin-a.yaml","malacidin A"]],"b":[["antibacterial/malacidin-a.html","malacidin A"]]},{"id":"CHEBI:140174","l":"malacidin B","na":1,"nb":1,"a":[["amino_acids_and_peptides/malacidin-b.yaml","malacidin B"]],"b":[["antibacterial/malacidin-b.html","malacidin B"]]},{"id":"CHEBI:140434","l":"3-[(Z)-2-isocyanovinyl]indole","na":1,"nb":1,"a":[["alkaloids/3-z-2-isocyanovinyl-indole.yaml","3-[(Z)-2-isocyanovinyl]indole"]],"b":[["antibacterial/3-z-2-isocyanovinyl-indole.html","3-[(Z)-2-isocyanovinyl]indole"]]},{"id":"CHEBI:141338","l":"sporothriolide","na":1,"nb":1,"a":[["polyketides/sporothriolide.yaml","sporothriolide"]],"b":[["antifungal/sporothriolide.html","sporothriolide"]]},{"id":"CHEBI:141380","l":"indanomycin","na":1,"nb":1,"a":[["polyketides/indanomycin.yaml","indanomycin"]],"b":[["antibacterial/indanomycin.html","indanomycin"]]},{"id":"CHEBI:144441","l":"triacsin C","na":1,"nb":1,"a":[["fatty_acids/triacsin-c.yaml","triacsin C"]],"b":[["antiprotozoal/triacsin-c.html","triacsin C"]]},{"id":"CHEBI:144729","l":"L-β-ethynylserine zwitterion","na":1,"nb":1,"a":[["amino_acids_and_peptides/ethynylserine.yaml","β-ethynylserine"]],"b":[["antibacterial/l-%CE%B2-ethynylserine-zwitterion.html","L-β-ethynylserine zwitterion"]]},{"id":"CHEBI:144833","l":"L-β-ethynylserine","na":1,"nb":1,"a":[["amino_acids_and_peptides/ethynylserine.yaml","β-ethynylserine"]],"b":[["antibacterial/l-%CE%B2-ethynylserine.html","L-β-ethynylserine"]]},{"id":"CHEBI:146007","l":"(M)-viriditoxin","na":1,"nb":1,"a":[["polyketides/viriditoxin.yaml","viriditoxin"]],"b":[["antibacterial/m-viriditoxin.html","(M)-viriditoxin"]]},{"id":"CHEBI:146153","l":"ilicicolin B","na":1,"nb":1,"a":[["unclassified/ilicicolin-b.yaml","ilicicolin B"]],"b":[["unspecified/ilicicolin-b.html","ilicicolin B"]]},{"id":"CHEBI:149660","l":"atromentin","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/atromentin.yaml","atromentin"]],"b":[["antibacterial/atromentin.html","atromentin"]]},{"id":"CHEBI:15353","l":"blasticidin S","na":1,"nb":1,"a":[["carbohydrates/blasticidin-s.yaml","blasticidin S"]],"b":[["antifungal/blasticidin-s.html","blasticidin S"]]},{"id":"CHEBI:156148","l":"ascofuranone","na":1,"nb":1,"a":[["unclassified/ascofuranone.yaml","ascofuranone"]],"b":[["antiprotozoal/ascofuranone.html","ascofuranone"]]},{"id":"CHEBI:156219","l":"ascochlorin","na":1,"nb":1,"a":[["unclassified/ascochlorin.yaml","ascochlorin"]],"b":[["antifungal/ascochlorin.html","ascochlorin"]]},{"id":"CHEBI:156291","l":"oviedomycin","na":1,"nb":1,"a":[["polyketides/oviedomycin.yaml","oviedomycin"]],"b":[["unspecified/oviedomycin.html","oviedomycin"]]},{"id":"CHEBI:156298","l":"aurafuron A","na":1,"nb":1,"a":[["polyketides/aurafuron-a.yaml","aurafuron A"]],"b":[["antifungal/aurafuron-a.html","aurafuron A"]]},{"id":"CHEBI:156301","l":"auricin","na":1,"nb":1,"a":[["polyketides/auricin.yaml","auricin"]],"b":[["unspecified/auricin.html","auricin"]]},{"id":"CHEBI:156313","l":"erdasporine A","na":1,"nb":1,"a":[["alkaloids/erdasporine-a.yaml","erdasporine A"]],"b":[["antibacterial/erdasporine-a.html","erdasporine A"]]},{"id":"CHEBI:156314","l":"erdasporine B","na":1,"nb":1,"a":[["alkaloids/erdasporine-b.yaml","erdasporine B"]],"b":[["antibacterial/erdasporine-b.html","erdasporine B"]]},{"id":"CHEBI:156315","l":"erdasporine C","na":1,"nb":1,"a":[["alkaloids/erdasporine-c.yaml","erdasporine C"]],"b":[["antibacterial/erdasporine-c.html","erdasporine C"]]},{"id":"CHEBI:156363","l":"gibepyrone A","na":1,"nb":1,"a":[["polyketides/gibepyrone-a.yaml","gibepyrone A"]],"b":[["antibacterial/gibepyrone-a.html","gibepyrone A"]]},{"id":"CHEBI:156386","l":"asperlactone","na":1,"nb":1,"a":[["polyketides/asperlactone.yaml","asperlactone"]],"b":[["antibacterial/asperlactone.html","asperlactone"]]},{"id":"CHEBI:156426","l":"curacomycin","na":1,"nb":1,"a":[["amino_acids_and_peptides/curacomycin.yaml","curacomycin"]],"b":[["antibacterial/curacomycin.html","curacomycin"]]},{"id":"CHEBI:156450","l":"thiolutin","na":1,"nb":1,"a":[["alkaloids/thiolutin.yaml","thiolutin"]],"b":[["antibacterial/thiolutin.html","thiolutin"]]},{"id":"CHEBI:156451","l":"holomycin","na":1,"nb":1,"a":[["alkaloids/holomycin.yaml","holomycin"]],"b":[["antibacterial/holomycin.html","holomycin"]]},{"id":"CHEBI:156453","l":"pyoluteorin","na":1,"nb":1,"a":[["alkaloids/pyoluteorin.yaml","pyoluteorin"]],"b":[["antibacterial/pyoluteorin.html","pyoluteorin"]]},{"id":"CHEBI:156455","l":"tropodithietic acid","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/tropodithietic-acid.yaml","tropodithietic acid"]],"b":[["antibacterial/tropodithietic-acid.html","tropodithietic acid"]]},{"id":"CHEBI:156550","l":"pyrrolomycin A","na":1,"nb":1,"a":[["alkaloids/pyrrolomycin-a.yaml","pyrrolomycin A"]],"b":[["antibacterial/pyrrolomycin-a.html","pyrrolomycin A"]]},{"id":"CHEBI:15732","l":"phosphonoacetic acid","na":1,"nb":1,"a":[["unclassified/phosphonoacetic-acid.yaml","phosphonoacetic acid"]],"b":[["antiviral/phosphonoacetic-acid.html","phosphonoacetic acid"]]},{"id":"CHEBI:161680","l":"aztreonam","na":1,"nb":1,"a":[["amino_acids_and_peptides/aztreonam.yaml","aztreonam"]],"b":[["antibacterial/aztreonam.html","aztreonam"]]},{"id":"CHEBI:16213","l":"coformycin","na":1,"nb":1,"a":[["carbohydrates/coformycin.yaml","coformycin"]],"b":[["unspecified/coformycin.html","coformycin"]]},{"id":"CHEBI:166872","l":"nucleocidin","na":1,"nb":1,"a":[["carbohydrates/nucleocidin.yaml","nucleocidin"]],"b":[["antibacterial/nucleocidin.html","nucleocidin"]]},{"id":"CHEBI:167043","l":"ochrindole A","na":1,"nb":1,"a":[["alkaloids/ochrindole-a.yaml","ochrindole A"]],"b":[["antibacterial/ochrindole-a.html","ochrindole A"]]},{"id":"CHEBI:167054","l":"acrophiarin","na":1,"nb":1,"a":[["amino_acids_and_peptides/acrophiarin.yaml","acrophiarin"]],"b":[["antifungal/acrophiarin.html","acrophiarin"]]},{"id":"CHEBI:168396","l":"mycophenolic acid","na":1,"nb":1,"a":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"]],"b":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]]},{"id":"CHEBI:17076","l":"streptomycin","na":1,"nb":1,"a":[["carbohydrates/streptomycin.yaml","streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"CHEBI:17630","l":"kanamycin A","na":1,"nb":1,"a":[["carbohydrates/kanamycin-a.yaml","kanamycin A"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"CHEBI:17695","l":"casbene","na":1,"nb":1,"a":[["terpenoids/casbene.yaml","casbene"]],"b":[["antifungal/casbene.html","casbene"]]},{"id":"CHEBI:17704","l":"aspulvinone E","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/aspulvinone-e.yaml","aspulvinone E"]],"b":[["antiviral/aspulvinone-e.html","aspulvinone E"]]},{"id":"CHEBI:17939","l":"puromycin","na":1,"nb":1,"a":[["carbohydrates/puromycin.yaml","puromycin"]],"b":[["antibacterial/puromycin.html","puromycin"]]},{"id":"CHEBI:18165","l":"isopenicillin N","na":1,"nb":1,"a":[["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"]],"b":[["unspecified/isopenicillin-n.html","isopenicillin N"]]},{"id":"CHEBI:184373","l":"cremeomycin","na":1,"nb":1,"a":[["unclassified/cremeomycin.yaml","cremeomycin"]],"b":[["antibacterial/cremeomycin.html","cremeomycin"]]},{"id":"CHEBI:190009","l":"himastatin","na":1,"nb":1,"a":[["amino_acids_and_peptides/himastatin.yaml","himastatin"]],"b":[["antibacterial/himastatin.html","himastatin"]]},{"id":"CHEBI:193157","l":"sceliphrolactam","na":1,"nb":1,"a":[["unclassified/sceliphrolactam.yaml","sceliphrolactam"]],"b":[["antifungal/sceliphrolactam.html","sceliphrolactam"]]},{"id":"CHEBI:206040","l":"","na":1,"nb":1,"a":[["polyketides/tartrolon-d.yaml","tartrolon D"]],"b":[["antibacterial/tartrolon-d.html","tartrolon D"]]},{"id":"CHEBI:219363","l":"reedsmycin A","na":1,"nb":1,"a":[["polyketides/reedsmycin-a.yaml","reedsmycin A"]],"b":[["antifungal/reedsmycin-a.html","reedsmycin A"]]},{"id":"CHEBI:219367","l":"reedsmycin B","na":1,"nb":1,"a":[["polyketides/reedsmycin-b.yaml","reedsmycin B"]],"b":[["antifungal/reedsmycin-b.html","reedsmycin B"]]},{"id":"CHEBI:219386","l":"reedsmycin E","na":1,"nb":1,"a":[["polyketides/reedsmycin-e.yaml","reedsmycin E"]],"b":[["antifungal/reedsmycin-e.html","reedsmycin E"]]},{"id":"CHEBI:2448","l":"actinorhodin","na":1,"nb":1,"a":[["polyketides/actinorhodin.yaml","actinorhodin"]],"b":[["unspecified/actinorhodin.html","actinorhodin"]]},{"id":"CHEBI:24750","l":"","na":1,"nb":1,"a":[["carbohydrates/5-hydroxystreptomycin.yaml","5'-hydroxystreptomycin"]],"b":[["unspecified/5-hydroxystreptomycin.html","5'-hydroxystreptomycin"]]},{"id":"CHEBI:2762","l":"antimycin A","na":1,"nb":1,"a":[["unclassified/antimycin-a.yaml","antimycin A"]],"b":[["antifungal/antimycin-a.html","antimycin A"]]},{"id":"CHEBI:2766","l":"aphidicolin","na":1,"nb":1,"a":[["terpenoids/aphidicolin.yaml","aphidicolin"]],"b":[["antiviral/aphidicolin.html","aphidicolin"]]},{"id":"CHEBI:27666","l":"actinomycin D","na":1,"nb":1,"a":[["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"]],"b":[["antibacterial/actinomycin-d.html","actinomycin D"]]},{"id":"CHEBI:27834","l":"pentostatin","na":1,"nb":1,"a":[["alkaloids/pentostatin.yaml","pentostatin"]],"b":[["unspecified/pentostatin.html","pentostatin"]]},{"id":"CHEBI:28001","l":"vancomycin","na":1,"nb":1,"a":[["amino_acids_and_peptides/vancomycin.yaml","vancomycin"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"CHEBI:28196","l":"erythromycin B","na":1,"nb":1,"a":[["polyketides/erythromycin-b.yaml","erythromycin B"]],"b":[["unspecified/erythromycin-b.html","erythromycin B"]]},{"id":"CHEBI:28283","l":"capsidiol","na":1,"nb":1,"a":[["terpenoids/capsidiol.yaml","capsidiol"]],"b":[["antifungal/capsidiol.html","capsidiol"]]},{"id":"CHEBI:28331","l":"erythromycin D","na":1,"nb":1,"a":[["polyketides/erythromycin-d.yaml","erythromycin D"]],"b":[["unspecified/erythromycin-d.html","erythromycin D"]]},{"id":"CHEBI:28748","l":"doxorubicin","na":1,"nb":1,"a":[["polyketides/doxorubicin.yaml","doxorubicin"]],"b":[["unspecified/doxorubicin.html","doxorubicin"]]},{"id":"CHEBI:28864","l":"tobramycin","na":1,"nb":1,"a":[["carbohydrates/tobramycin.yaml","tobramycin"]],"b":[["antibacterial/tobramycin.html","tobramycin"]]},{"id":"CHEBI:28915","l":"fosfomycin","na":1,"nb":1,"a":[["unclassified/fosfomycin.yaml","fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"CHEBI:29515","l":"ansamitocin P3","na":1,"nb":1,"a":[["polyketides/ansamitocin-p3.yaml","ansamitocin P3"]],"b":[["unspecified/ansamitocin-p3.html","ansamitocin P3"]]},{"id":"CHEBI:29556","l":"chloroeremomycin","na":1,"nb":1,"a":[["amino_acids_and_peptides/chloroeremomycin.yaml","chloroeremomycin"]],"b":[["antibacterial/chloroeremomycin.html","chloroeremomycin"]]},{"id":"CHEBI:29630","l":"methymycin","na":1,"nb":1,"a":[["polyketides/methymycin.yaml","methymycin"]],"b":[["antibacterial/methymycin.html","methymycin"]]},{"id":"CHEBI:29649","l":"narbomycin","na":1,"nb":1,"a":[["polyketides/narbomycin.yaml","narbomycin"]],"b":[["antibacterial/narbomycin.html","narbomycin"]]},{"id":"CHEBI:29656","l":"neomethymycin","na":1,"nb":1,"a":[["polyketides/neomethymycin.yaml","neomethymycin"]],"b":[["unspecified/neomethymycin.html","neomethymycin"]]},{"id":"CHEBI:29665","l":"pikromycin","na":1,"nb":1,"a":[["polyketides/pikromycin.yaml","pikromycin"]],"b":[["antibacterial/pikromycin.html","pikromycin"]]},{"id":"CHEBI:29673","l":"rifamycin SV","na":1,"nb":1,"a":[["polyketides/rifamycin-sv.yaml","rifamycin SV"]],"b":[["antimycobacterial/rifamycin-sv.html","rifamycin SV"]]},{"id":"CHEBI:29701","l":"tyrocidine A","na":1,"nb":1,"a":[["amino_acids_and_peptides/tyrocidine-a.yaml","tyrocidine A"]],"b":[["antibacterial/tyrocidine-a.html","tyrocidine A"]]},{"id":"CHEBI:29703","l":"validamycin A","na":1,"nb":1,"a":[["carbohydrates/validamycin-a.yaml","validamycin A"]],"b":[["antifungal/validamycin-a.html","validamycin A"]]},{"id":"CHEBI:3096","l":"bikaverin","na":1,"nb":1,"a":[["polyketides/bikaverin.yaml","bikaverin"]],"b":[["antibacterial/bikaverin.html","bikaverin"]]},{"id":"CHEBI:3139","l":"bleomycin A2","na":1,"nb":1,"a":[["amino_acids_and_peptides/bleomycin-a2.yaml","bleomycin A2"]],"b":[["antibacterial/bleomycin-a2.html","bleomycin A2"]]},{"id":"CHEBI:315018","l":"echinocandin B","na":1,"nb":1,"a":[["amino_acids_and_peptides/echinocandin-b.yaml","echinocandin B"]],"b":[["antifungal/echinocandin-b.html","echinocandin B"]]},{"id":"CHEBI:31856","l":"mithramycin","na":1,"nb":1,"a":[["polyketides/mithramycin.yaml","mithramycin"]],"b":[["unspecified/mithramycin.html","mithramycin"]]},{"id":"CHEBI:32079","l":"pyrrolnitrin","na":1,"nb":1,"a":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]],"b":[["antifungal/pyrrolnitrin.html","pyrrolnitrin"]]},{"id":"CHEBI:3252","l":"C-1027 chromophore","na":1,"nb":1,"a":[["polyketides/c-1027-chromophore.yaml","C-1027 chromophore"]],"b":[["unspecified/c-1027-chromophore.html","C-1027 chromophore"]]},{"id":"CHEBI:338412","l":"(-)-anisomycin","na":1,"nb":1,"a":[["alkaloids/anisomycin.yaml","(−)-anisomycin"]],"b":[["antiviral/anisomycin.html","(−)-anisomycin"]]},{"id":"CHEBI:34996","l":"teicoplanin A2-3","na":1,"nb":1,"a":[["amino_acids_and_peptides/teicoplanin-a2-3.yaml","teicoplanin A2-3"]],"b":[["unspecified/teicoplanin-a2-3.html","teicoplanin A2-3"]]},{"id":"CHEBI:34997","l":"teicoplanin A2-4","na":1,"nb":1,"a":[["amino_acids_and_peptides/teicoplanin-a2-4.yaml","teicoplanin A2-4"]],"b":[["unspecified/teicoplanin-a2-4.html","teicoplanin A2-4"]]},{"id":"CHEBI:3613","l":"chlorflavonin","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/chlorflavonin.yaml","chlorflavonin"]],"b":[["antifungal/chlorflavonin.html","chlorflavonin"]]},{"id":"CHEBI:3907","l":"coumermycin A1","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/coumermycin-a1.yaml","coumermycin A1"]],"b":[["antibacterial/coumermycin-a1.html","coumermycin A1"]]},{"id":"CHEBI:40009","l":"D-cycloserine","na":1,"nb":1,"a":[["amino_acids_and_peptides/cycloserine.yaml","cycloserine"]],"b":[["antimycobacterial/d-cycloserine.html","D-cycloserine"]]},{"id":"CHEBI:4031","l":"cyclosporin A","na":1,"nb":1,"a":[["amino_acids_and_peptides/cyclosporin-a.yaml","cyclosporin A"]],"b":[["antifungal/cyclosporin-a.html","cyclosporin A"]]},{"id":"CHEBI:41977","l":"daunorubicin","na":1,"nb":1,"a":[["polyketides/daunorubicin.yaml","daunorubicin"]],"b":[["unspecified/daunorubicin.html","daunorubicin"]]},{"id":"CHEBI:42355","l":"erythromycin A","na":1,"nb":1,"a":[["polyketides/erythromycin-a.yaml","erythromycin A"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"CHEBI:42452","l":"formycin A","na":1,"nb":1,"a":[["alkaloids/formycin-a.yaml","formycin A"]],"b":[["unspecified/formycin-a.html","formycin A"]]},{"id":"CHEBI:43616","l":"K-252a","na":1,"nb":1,"a":[["alkaloids/k-252a.yaml","K-252a"]],"b":[["unspecified/k-252a.html","K-252a"]]},{"id":"CHEBI:45257","l":"ribostamycin","na":1,"nb":1,"a":[["carbohydrates/ribostamycin.yaml","ribostamycin"]],"b":[["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"CHEBI:45327","l":"adenine arabinoside","na":1,"nb":1,"a":[["carbohydrates/adenine-arabinoside.yaml","adenine arabinoside"]],"b":[["unspecified/adenine-arabinoside.html","adenine arabinoside"]]},{"id":"CHEBI:45773","l":"streptolydigin","na":1,"nb":1,"a":[["polyketides/streptolydigin.yaml","streptolydigin"]],"b":[["unspecified/streptolydigin.html","streptolydigin"]]},{"id":"CHEBI:46416","l":"virginiamycin S1","na":1,"nb":1,"a":[["unclassified/virginiamycin-s1.yaml","virginiamycin S1"]],"b":[["antibacterial/virginiamycin-s1.html","virginiamycin S1"]]},{"id":"CHEBI:473992","l":"nystatin A1","na":1,"nb":1,"a":[["polyketides/nystatin-a1.yaml","nystatin A1"]],"b":[["antifungal/nystatin-a1.html","nystatin A1"]]},{"id":"CHEBI:48200","l":"griseusin B","na":1,"nb":1,"a":[["polyketides/griseusin-b.yaml","griseusin B"]],"b":[["unspecified/griseusin-b.html","griseusin B"]]},{"id":"CHEBI:48201","l":"frenolicin B","na":1,"nb":1,"a":[["polyketides/frenolicin-b.yaml","frenolicin B"]],"b":[["unspecified/frenolicin-b.html","frenolicin B"]]},{"id":"CHEBI:48267","l":"tubercidin","na":1,"nb":1,"a":[["carbohydrates/tubercidin.yaml","tubercidin"]],"b":[["antifungal/tubercidin.html","tubercidin"]]},{"id":"CHEBI:48635","l":"fumagillin","na":1,"nb":1,"a":[["polyketides/fumagillin.yaml","fumagillin"]],"b":[["antibacterial/fumagillin.html","fumagillin"]]},{"id":"CHEBI:48947","l":"clavulanic acid","na":1,"nb":1,"a":[["amino_acids_and_peptides/clavulanic-acid.yaml","clavulanic acid"]],"b":[["antibacterial/clavulanic-acid.html","clavulanic acid"]]},{"id":"CHEBI:50437","l":"nocardamine","na":1,"nb":1,"a":[["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"]],"b":[["antibacterial/nocardamine.html","nocardamine"]]},{"id":"CHEBI:51460","l":"albaflavenone","na":1,"nb":1,"a":[["terpenoids/albaflavenone.yaml","albaflavenone"]],"b":[["unspecified/albaflavenone.html","albaflavenone"]]},{"id":"CHEBI:52549","l":"sordarin","na":1,"nb":1,"a":[["terpenoids/sordarin.yaml","sordarin"]],"b":[["antifungal/sordarin.html","sordarin"]]},{"id":"CHEBI:5292","l":"geldanamycin","na":1,"nb":1,"a":[["polyketides/geldanamycin.yaml","geldanamycin"]],"b":[["antiviral/geldanamycin.html","geldanamycin"]]},{"id":"CHEBI:5674","l":"herbimycin","na":1,"nb":1,"a":[["polyketides/herbimycin-a.yaml","herbimycin A"]],"b":[["unspecified/herbimycin.html","herbimycin"]]},{"id":"CHEBI:59064","l":"colistin A","na":1,"nb":1,"a":[["amino_acids_and_peptides/colistin-a.yaml","colistin A"]],"b":[["antibacterial/colistin-a.html","colistin A"]]},{"id":"CHEBI:59673","l":"colistin B","na":1,"nb":1,"a":[["amino_acids_and_peptides/colistin-b.yaml","colistin B"]],"b":[["antibacterial/colistin-b.html","colistin B"]]},{"id":"CHEBI:60584","l":"bicozamycin","na":1,"nb":1,"a":[["unclassified/bicozamycin.yaml","bicozamycin"]],"b":[["antibacterial/bicozamycin.html","bicozamycin"]]},{"id":"CHEBI:60821","l":"streptothricin F","na":1,"nb":1,"a":[["carbohydrates/streptothricin-f.yaml","streptothricin F"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"]]},{"id":"CHEBI:60828","l":"streptothricin D","na":1,"nb":1,"a":[["carbohydrates/streptothricin-d.yaml","streptothricin D"]],"b":[["unspecified/streptothricin-d.html","streptothricin D"]]},{"id":"CHEBI:61080","l":"romidepsin","na":1,"nb":1,"a":[["unclassified/romidepsin.yaml","romidepsin"]],"b":[["unspecified/romidepsin.html","romidepsin"]]},{"id":"CHEBI:62219","l":"2-heptyl-4-quinolone","na":1,"nb":1,"a":[["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"]],"b":[["antibacterial/2-heptyl-4-quinolone.html","2-heptyl-4-quinolone"]]},{"id":"CHEBI:623918","l":"nikkomycin Z","na":1,"nb":1,"a":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"]],"b":[["antifungal/nikkomycin-z.html","nikkomycin Z"]]},{"id":"CHEBI:64248","l":"tunicamycin B1","na":1,"nb":1,"a":[["carbohydrates/tunicamycin-b1.yaml","tunicamycin B1"]],"b":[["unspecified/tunicamycin-b1.html","tunicamycin B1"]]},{"id":"CHEBI:64273","l":"erythromycin C","na":1,"nb":1,"a":[["polyketides/erythromycin-c.yaml","erythromycin C"]],"b":[["unspecified/erythromycin-c.html","erythromycin C"]]},{"id":"CHEBI:6472","l":"lincomycin","na":1,"nb":1,"a":[["carbohydrates/lincomycin.yaml","lincomycin"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"CHEBI:65110","l":"butirosin B","na":1,"nb":1,"a":[["carbohydrates/butirosin-b.yaml","butirosin B"]],"b":[["unspecified/butirosin-b.html","butirosin B"]]},{"id":"CHEBI:65112","l":"butirosin A","na":1,"nb":1,"a":[["carbohydrates/butirosin-a.yaml","butirosin A"]],"b":[["unspecified/butirosin-a.html","butirosin A"]]},{"id":"CHEBI:65401","l":"ambiguine I","na":1,"nb":1,"a":[["alkaloids/ambiguine-i-isonitrile.yaml","ambiguine I isonitrile"]],"b":[["antibacterial/ambiguine-i.html","ambiguine I"]]},{"id":"CHEBI:65474","l":"BE-24566B","na":1,"nb":1,"a":[["polyketides/be-24566b.yaml","BE-24566B"]],"b":[["antibacterial/be-24566b.html","BE-24566B"]]},{"id":"CHEBI:65517","l":"brasiliquinone B","na":1,"nb":1,"a":[["polyketides/brasiliquinone-b.yaml","brasiliquinone B"]],"b":[["antibacterial/brasiliquinone-b.html","brasiliquinone B"]]},{"id":"CHEBI:65619","l":"chloropeptin II","na":1,"nb":1,"a":[["amino_acids_and_peptides/isocomplestatin.yaml","isocomplestatin"]],"b":[["antiviral/chloropeptin-ii.html","chloropeptin II"]]},{"id":"CHEBI:65716","l":"cystothiazole A","na":1,"nb":1,"a":[["unclassified/cystothiazole-a.yaml","cystothiazole A"]],"b":[["antifungal/cystothiazole-a.html","cystothiazole A"]]},{"id":"CHEBI:65915","l":"FR901464","na":1,"nb":1,"a":[["fatty_acids/fr901464.yaml","FR901464"]],"b":[["unspecified/fr901464.html","FR901464"]]},{"id":"CHEBI:65964","l":"gilvusmycin","na":1,"nb":1,"a":[["alkaloids/gilvusmycin.yaml","gilvusmycin"]],"b":[["unspecified/gilvusmycin.html","gilvusmycin"]]},{"id":"CHEBI:66006","l":"harziphilone","na":1,"nb":1,"a":[["polyketides/harziphilone.yaml","harziphilone"]],"b":[["antiviral/harziphilone.html","harziphilone"]]},{"id":"CHEBI:66093","l":"isocomplestatin","na":1,"nb":1,"a":[["amino_acids_and_peptides/isocomplestatin.yaml","isocomplestatin"]],"b":[["antiviral/complestatin.html","isocomplestatin"]]},{"id":"CHEBI:66135","l":"kalimantacin A","na":1,"nb":1,"a":[["polyketides/kalimantacin-a.yaml","kalimantacin A"]],"b":[["antibacterial/kalimantacin-a.html","kalimantacin A"]]},{"id":"CHEBI:66553","l":"lactonamycin","na":1,"nb":1,"a":[["unclassified/lactonamycin.yaml","lactonamycin"]],"b":[["antibacterial/lactonamycin.html","lactonamycin"]]},{"id":"CHEBI:66678","l":"(−)-marinopyrrole A","na":1,"nb":1,"a":[["alkaloids/marinopyrrole-a.yaml","(−)-marinopyrrole A"]],"b":[["antibacterial/marinopyrrole-a.html","(−)-marinopyrrole A"]]},{"id":"CHEBI:66679","l":"(−)-marinopyrrole B","na":1,"nb":1,"a":[["alkaloids/marinopyrrole-b.yaml","(−)-marinopyrrole B"]],"b":[["antibacterial/marinopyrrole-b.html","(−)-marinopyrrole B"]]},{"id":"CHEBI:66687","l":"mediomycin A","na":1,"nb":1,"a":[["fatty_acids/mediomycin-a.yaml","mediomycin A"]],"b":[["antifungal/mediomycin-a.html","mediomycin A"]]},{"id":"CHEBI:66771","l":"polyketomycin","na":1,"nb":1,"a":[["polyketides/polyketomycin.yaml","polyketomycin"]],"b":[["antibacterial/polyketomycin.html","polyketomycin"]]},{"id":"CHEBI:6701","l":"maytansine","na":1,"nb":1,"a":[["polyketides/maytansine.yaml","maytansine"]],"b":[["unspecified/maytansine.html","maytansine"]]},{"id":"CHEBI:67811","l":"zorbamycin","na":1,"nb":1,"a":[["amino_acids_and_peptides/zorbamycin.yaml","zorbamycin"]],"b":[["unspecified/zorbamycin.html","zorbamycin"]]},{"id":"CHEBI:68236","l":"platensimycin","na":1,"nb":1,"a":[["terpenoids/platensimycin.yaml","platensimycin"]],"b":[["antibacterial/platensimycin.html","platensimycin"]]},{"id":"CHEBI:68241","l":"platencin","na":1,"nb":1,"a":[["terpenoids/platencin.yaml","platencin"]],"b":[["antibacterial/platencin.html","platencin"]]},{"id":"CHEBI:7025","l":"mupirocin","na":1,"nb":1,"a":[["polyketides/mupirocin.yaml","mupirocin"]],"b":[["antibacterial/mupirocin.html","mupirocin"]]},{"id":"CHEBI:70816","l":"pentalenolactone","na":1,"nb":1,"a":[["terpenoids/pentalenolactone.yaml","pentalenolactone"]],"b":[["unspecified/pentalenolactone.html","pentalenolactone"]]},{"id":"CHEBI:71961","l":"lividomycin A","na":1,"nb":1,"a":[["carbohydrates/lividomycin-a.yaml","lividomycin A"]],"b":[["antimycobacterial/lividomycin-a.html","lividomycin A"]]},{"id":"CHEBI:72590","l":"rhizoxin","na":1,"nb":1,"a":[["unclassified/rhizoxin-a.yaml","rhizoxin A"]],"b":[["unspecified/rhizoxin.html","rhizoxin"]]},{"id":"CHEBI:73167","l":"concanamycin A","na":1,"nb":1,"a":[["polyketides/concanamycin-a.yaml","concanamycin A"]],"b":[["antifungal/concanamycin-a.html","concanamycin A"]]},{"id":"CHEBI:7488","l":"natamycin","na":1,"nb":1,"a":[["polyketides/natamycin.yaml","natamycin"]],"b":[["antifungal/natamycin.html","natamycin"]]},{"id":"CHEBI:74926","l":"patulin","na":1,"nb":1,"a":[["polyketides/patulin.yaml","patulin"]],"b":[["unspecified/patulin.html","patulin"]]},{"id":"CHEBI:7508","l":"framycetin","na":1,"nb":1,"a":[["carbohydrates/framycetin.yaml","framycetin"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"CHEBI:75276","l":"ikarugamycin","na":1,"nb":1,"a":[["unclassified/ikarugamycin.yaml","ikarugamycin"]],"b":[["antiprotozoal/ikarugamycin.html","ikarugamycin"]]},{"id":"CHEBI:75306","l":"2-heptyl-4-hydroxyquinoline","na":1,"nb":1,"a":[["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"]],"b":[["antibacterial/2-heptyl-4-hydroxyquinoline.html","2-heptyl-4-hydroxyquinoline"]]},{"id":"CHEBI:7569","l":"nigericin","na":1,"nb":1,"a":[["polyketides/nigericin.yaml","nigericin"]],"b":[["antibacterial/nigericin.html","nigericin"]]},{"id":"CHEBI:77772","l":"ilicicolin H","na":1,"nb":1,"a":[["alkaloids/ilicicolin-h.yaml","ilicicolin H"]],"b":[["unspecified/ilicicolin-h.html","ilicicolin H"]]},{"id":"CHEBI:77879","l":"elaiophylin","na":1,"nb":1,"a":[["polyketides/elaiophylin.yaml","elaiophylin"]],"b":[["antifungal/elaiophylin.html","elaiophylin"]]},{"id":"CHEBI:78156","l":"mucidin","na":1,"nb":1,"a":[["polyketides/mucidin.yaml","mucidin"]],"b":[["antifungal/mucidin.html","mucidin"]]},{"id":"CHEBI:78688","l":"2,4-diacetylphloroglucinol","na":1,"nb":1,"a":[["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"]],"b":[["antifungal/2-4-diacetylphloroglucinol.html","2,4-diacetylphloroglucinol"]]},{"id":"CHEBI:79391","l":"(−)-chuangxinmycin","na":1,"nb":1,"a":[["alkaloids/chuangxinmycin.yaml","(−)-chuangxinmycin"]],"b":[["antibacterial/chuangxinmycin.html","(−)-chuangxinmycin"]]},{"id":"CHEBI:80729","l":"toxoflavin","na":1,"nb":1,"a":[["alkaloids/toxoflavin.yaml","toxoflavin"]],"b":[["antibacterial/toxoflavin.html","toxoflavin"]]},{"id":"CHEBI:82758","l":"prodigiosin","na":1,"nb":1,"a":[["alkaloids/prodigiosin.yaml","prodigiosin"]],"b":[["unspecified/prodigiosin.html","prodigiosin"]]},{"id":"CHEBI:83206","l":"albomycin δ1","na":1,"nb":1,"a":[["amino_acids_and_peptides/albomycin-1.yaml","albomycin δ1"]],"b":[["antibacterial/albomycin-%CE%B41.html","albomycin δ1"]]},{"id":"CHEBI:8349","l":"pradimicin A","na":1,"nb":1,"a":[["polyketides/pradimicin-a.yaml","pradimicin A"]],"b":[["antifungal/pradimicin-a.html","pradimicin A"]]},{"id":"CHEBI:84037","l":"ravidomycin","na":1,"nb":1,"a":[["polyketides/ravidomycin.yaml","ravidomycin"]],"b":[["unspecified/ravidomycin.html","ravidomycin"]]},{"id":"CHEBI:85129","l":"ristocetin","na":1,"nb":1,"a":[["amino_acids_and_peptides/ristocetin-a.yaml","Ristocetin A"]],"b":[["antibacterial/ristocetin.html","ristocetin"]]},{"id":"CHEBI:85251","l":"teicoplanin A2-2","na":1,"nb":1,"a":[["amino_acids_and_peptides/teicoplanin-a2-2.yaml","teicoplanin A2-2"]],"b":[["unspecified/teicoplanin-a2-2.html","teicoplanin A2-2"]]},{"id":"CHEBI:85616","l":"viridicatumtoxin","na":1,"nb":1,"a":[["unclassified/viridicatumtoxin.yaml","viridicatumtoxin"]],"b":[["unspecified/viridicatumtoxin.html","viridicatumtoxin"]]},{"id":"CHEBI:86012","l":"oxetanocin A","na":1,"nb":1,"a":[["carbohydrates/oxetanocin-a.yaml","oxetanocin A"]],"b":[["antibacterial/oxetanocin-a.html","oxetanocin A"]]},{"id":"CHEBI:8653","l":"pyocyanine","na":1,"nb":1,"a":[["alkaloids/pyocyanine.yaml","pyocyanine"]],"b":[["antibacterial/pyocyanine.html","pyocyanine"]]},{"id":"CHEBI:87084","l":"rosaramicin","na":1,"nb":1,"a":[["polyketides/rosaramicin.yaml","rosaramicin"]],"b":[["antibacterial/rosaramicin.html","rosaramicin"]]},{"id":"CHEBI:87399","l":"UK 63598","na":1,"nb":1,"a":[["unclassified/uk-63598.yaml","UK 63598"]],"b":[["unspecified/uk-63598.html","UK 63598"]]},{"id":"CHEBI:90284","l":"pirazofurin","na":1,"nb":1,"a":[["unclassified/pirazofurin.yaml","pirazofurin"]],"b":[["unspecified/pirazofurin.html","pirazofurin"]]},{"id":"CHEBI:90888","l":"aurachin C","na":1,"nb":1,"a":[["alkaloids/aurachin-c.yaml","aurachin C"]],"b":[["antibacterial/aurachin-c.html","aurachin C"]]},{"id":"CHEBI:90924","l":"aurachin A","na":1,"nb":1,"a":[["alkaloids/aurachin-a.yaml","aurachin A"]],"b":[["antibacterial/aurachin-a.html","aurachin A"]]},{"id":"CHEBI:90941","l":"sibiromycin","na":1,"nb":1,"a":[["carbohydrates/sibiromycin.yaml","sibiromycin"]],"b":[["unspecified/sibiromycin.html","sibiromycin"]]},{"id":"CHEBI:9168","l":"sirolimus","na":1,"nb":1,"a":[["polyketides/sirolimus.yaml","sirolimus"]],"b":[["antibacterial/sirolimus.html","sirolimus"]]},{"id":"CHEBI:9169","l":"sisomycin","na":1,"nb":1,"a":[["carbohydrates/sisomycin.yaml","sisomycin"]],"b":[["antibacterial/sisomycin.html","sisomycin"]]},{"id":"CHEBI:9215","l":"spectinomycin","na":1,"nb":1,"a":[["carbohydrates/spectinomycin.yaml","spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"CHEBI:92181","l":"lasalocid","na":1,"nb":1,"a":[["polyketides/lasalocid.yaml","lasalocid"]],"b":[["antiprotozoal/lasalocid.html","lasalocid"]]},{"id":"CHEBI:9232","l":"spinosyn D","na":1,"nb":1,"a":[["polyketides/spinosyn-d.yaml","spinosyn D"]],"b":[["unspecified/spinosyn-d.html","spinosyn D"]]},{"id":"CHEBI:9287","l":"streptonigrin","na":1,"nb":1,"a":[["alkaloids/streptonigrin.yaml","streptonigrin"]],"b":[["unspecified/streptonigrin.html","streptonigrin"]]},{"id":"CHEBI:9470","l":"tetracenomycin C","na":1,"nb":1,"a":[["polyketides/tetracenomycin-c.yaml","tetracenomycin C"]],"b":[["antibacterial/tetracenomycin-c.html","tetracenomycin C"]]},{"id":"CHEBI:9555","l":"tioguanine","na":1,"nb":1,"a":[["alkaloids/tioguanine.yaml","tioguanine"]],"b":[["antiviral/tioguanine.html","tioguanine"]]},{"id":"NCBITaxon:1156913","l":"","na":1,"nb":1,"a":[["amino_acids_and_peptides/vancomycin.yaml","vancomycin"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"NCBITaxon:1352936","l":"","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/clorobiocin.yaml","clorobiocin"]],"b":[["antibacterial/clorobiocin.html","clorobiocin"]]},{"id":"NCBITaxon:1469403","l":"","na":1,"nb":1,"a":[["unclassified/ikarugamycin.yaml","ikarugamycin"]],"b":[["antiprotozoal/ikarugamycin.html","ikarugamycin"]]},{"id":"NCBITaxon:1654360","l":"Photobacterium galatheae","na":1,"nb":1,"a":[["alkaloids/holomycin.yaml","holomycin"]],"b":[["antibacterial/holomycin.html","holomycin"]]},{"id":"NCBITaxon:1764","l":"Mycobacterium avium","na":1,"nb":1,"a":[["fatty_acids/gpl-21.yaml","GPL-21"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"NCBITaxon:2583819","l":"","na":1,"nb":1,"a":[["polyketides/nigericin.yaml","nigericin"]],"b":[["antibacterial/nigericin.html","nigericin"]]},{"id":"NCBITaxon:263","l":"Francisella tularensis","na":1,"nb":1,"a":[["polyketides/emodin.yaml","emodin"]],"b":[["unspecified/%CE%B1-mangostin.html","α-mangostin"]]},{"id":"NCBITaxon:41251","l":"Strobilurus tenacellus","na":1,"nb":1,"a":[["polyketides/mucidin.yaml","mucidin"]],"b":[["antifungal/mucidin.html","mucidin"]]},{"id":"NCBITaxon:527005","l":"","na":1,"nb":1,"a":[["alkaloids/holomycin.yaml","holomycin"]],"b":[["antibacterial/holomycin.html","holomycin"]]},{"id":"NCBITaxon:5382","l":"Suillus grevillei","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/atromentin.yaml","atromentin"]],"b":[["antibacterial/atromentin.html","atromentin"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":1,"nb":1,"a":[["alkaloids/congocidine.yaml","congocidine"]],"b":[["antiprotozoal/emetine.html","emetine"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":1,"nb":1,"a":[["polyketides/emodin.yaml","emodin"]],"b":[["unspecified/%CE%B1-mangostin.html","α-mangostin"]]},{"id":"NCBITaxon:67283","l":"Streptomyces candidus","na":1,"nb":1,"a":[["unclassified/pirazofurin.yaml","pirazofurin"]],"b":[["unspecified/pirazofurin.html","pirazofurin"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":1,"a":[["unclassified/lysocin-e.yaml","lysocin E"]],"b":[["antibacterial/lysocin-e.html","lysocin E"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":1,"a":[["unclassified/mycobactin.yaml","mycobactin"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:889487","l":"","na":1,"nb":1,"a":[["unclassified/antimycin-a.yaml","antimycin A"]],"b":[["antifungal/antimycin-a.html","antimycin A"]]},{"id":"UniProt:A0A1S5RQP7","l":"","na":1,"nb":1,"a":[["alkaloids/pentostatin.yaml","pentostatin"]],"b":[["unspecified/pentostatin.html","pentostatin"]]},{"id":"UniProt:B1JQH1","l":"","na":1,"nb":1,"a":[["polyketides/emodin.yaml","emodin"]],"b":[["unspecified/%CE%B1-mangostin.html","α-mangostin"]]}]} \ No newline at end of file +{"a":"NaturalProductMech","b":"AntibioticMech","base":{"NaturalProductMech":"https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/natural_products/","AntibioticMech":"https://culturebotai.github.io/AntibioticMech/pages/"},"n":278,"by":{"CHEBI":180,"NCBITaxon":96,"UniProt":2},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":24,"nb":30,"a":[["alkaloids/biotin.yaml","biotin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":12,"nb":12,"a":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"NCBITaxon:330879","l":"Aspergillus fumigatus (strain ATCC MYA-4609 / CBS 101355 / FGSC A1100 / Af293)","na":14,"nb":5,"a":[["alkaloids/fumigaclavine-c.yaml","fumigaclavine C"],["alkaloids/fumiquinazoline-a.yaml","fumiquinazoline A"],["alkaloids/fumiquinazoline-c.yaml","fumiquinazoline C"],["alkaloids/fumiquinazoline-d.yaml","fumiquinazoline D"],["alkaloids/hexadehydroastechrome.yaml","hexadehydroastechrome"],["polyketides/endocrocin.yaml","endocrocin"]],"b":[["antibacterial/fumagillin.html","fumagillin"],["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/terbinafine.html","terbinafine"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:5518","l":"Fusarium graminearum","na":14,"nb":5,"a":[["amino_acids_and_peptides/fusaoctaxin-a.yaml","fusaoctaxin A"],["polyketides/aurofusarin.yaml","aurofusarin"],["polyketides/fusarielin-h.yaml","fusarielin H"],["polyketides/gibepyrone-a.yaml","gibepyrone A"],["polyketides/prolipyrone-b.yaml","prolipyrone B"],["polyketides/zearalenone.yaml","zearalenone"]],"b":[["antifungal/carbendazim.html","carbendazim"],["antifungal/difenoconazole.html","difenoconazole"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/prochloraz.html","prochloraz"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":5,"nb":13,"a":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"],["unclassified/leuvalin.yaml","leuvalin"],["unclassified/phevalin.yaml","phevalin"],["unclassified/tyrvalin.yaml","tyrvalin"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/bromodeoxytopsentin.html","bromodeoxytopsentin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"NCBITaxon:229533","l":"Fusarium graminearum PH-1","na":11,"nb":5,"a":[["alkaloids/chrysogine.yaml","chrysogine"],["amino_acids_and_peptides/fusaoctaxin-a.yaml","fusaoctaxin A"],["polyketides/aurofusarin.yaml","aurofusarin"],["polyketides/prolipyrone-b.yaml","prolipyrone B"],["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"],["terpenoids/15-acetyldeoxynivalenol.yaml","15-acetyldeoxynivalenol"]],"b":[["antifungal/carbendazim.html","carbendazim"],["antifungal/difenoconazole.html","difenoconazole"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/prochloraz.html","prochloraz"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:40559","l":"Botrytis cinerea","na":23,"nb":4,"a":[["terpenoids/1-epibotrydial.yaml","1-epibotrydial"],["terpenoids/10-dehydroxy-dihydrobotrydialone.yaml","10-dehydroxy dihydrobotrydialone"],["terpenoids/10-epi-dihydrobotrydial.yaml","10-epi-dihydrobotrydial"],["terpenoids/10-oxo-dihydrobotrydial.yaml","10-Oxo-dihydrobotrydial"],["terpenoids/10-oxodehydrodihydrobotrydial.yaml","10-Oxodehydrodihydrobotrydial"],["terpenoids/10-oxodihydrobotry-1-9-4-5-diendial.yaml","10-Oxodihydrobotry-1(9),4(5)-diendial"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/iprodione.html","iprodione"],["antifungal/pyrisoxazole.html","pyrisoxazole"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":4,"nb":22,"a":[["alkaloids/tilivalline.yaml","tilivalline"],["amino_acids_and_peptides/colibactin.yaml","colibactin"],["amino_acids_and_peptides/klebsidin.yaml","klebsidin"],["carbohydrates/capsular-polysaccharide-2.yaml","capsular polysaccharide"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"]]},{"id":"NCBITaxon:746128","l":"Aspergillus fumigatus","na":20,"nb":4,"a":[["alkaloids/fumigaclavine-c.yaml","fumigaclavine C"],["alkaloids/fumiquinazoline-a.yaml","fumiquinazoline A"],["alkaloids/fumiquinazoline-c.yaml","fumiquinazoline C"],["alkaloids/fumiquinazoline-d.yaml","fumiquinazoline D"],["alkaloids/hexadehydroastechrome.yaml","hexadehydroastechrome"],["carbohydrates/tobramycin.yaml","tobramycin"]],"b":[["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/terbinafine.html","terbinafine"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:405948","l":"Saccharopolyspora erythraea NRRL 2338","na":7,"nb":4,"a":[["amino_acids_and_peptides/erythrochelin.yaml","erythrochelin"],["polyketides/erythromycin-a.yaml","erythromycin A"],["polyketides/erythromycin-b.yaml","erythromycin B"],["polyketides/erythromycin-c.yaml","erythromycin C"],["polyketides/erythromycin-d.yaml","erythromycin D"],["polyketides/flaviolin.yaml","flaviolin"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["unspecified/erythromycin-b.html","erythromycin B"],["unspecified/erythromycin-c.html","erythromycin C"],["unspecified/erythromycin-d.html","erythromycin D"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":16,"nb":3,"a":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["amino_acids_and_peptides/ericin-s.yaml","ericin S"],["amino_acids_and_peptides/iturin.yaml","iturin"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"NCBITaxon:1890","l":"Streptomyces antibioticus","na":14,"nb":3,"a":[["alkaloids/esmeraldin.yaml","esmeraldin"],["alkaloids/pentostatin.yaml","pentostatin"],["amino_acids_and_peptides/2-2-hydroxyethyl-clavam.yaml","(-)-2-(2-hydroxyethyl)clavam"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["amino_acids_and_peptides/scabichelin.yaml","scabichelin"],["amino_acids_and_peptides/valclavam.yaml","valclavam"]],"b":[["antibacterial/indanomycin.html","indanomycin"],["unspecified/oviedomycin.html","oviedomycin"],["unspecified/pentostatin.html","pentostatin"]]},{"id":"NCBITaxon:117187","l":"Fusarium verticillioides","na":8,"nb":3,"a":[["alkaloids/dihydrofusarin-c.yaml","dihydrofusarin C"],["alkaloids/epi-fusarin-c.yaml","epi-fusarin C"],["alkaloids/fusaric-acid.yaml","fusaric acid"],["alkaloids/fusarin-c.yaml","fusarin C"],["alkaloids/fusarin-d.yaml","fusarin D"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/fludioxonil.html","fludioxonil"]]},{"id":"NCBITaxon:1867","l":"Actinoplanes teichomyceticus","na":6,"nb":3,"a":[["amino_acids_and_peptides/teicoplanin-a2-1.yaml","Teicoplanin A2-1"],["amino_acids_and_peptides/teicoplanin-a2-2.yaml","teicoplanin A2-2"],["amino_acids_and_peptides/teicoplanin-a2-3.yaml","teicoplanin A2-3"],["amino_acids_and_peptides/teicoplanin-a2-4.yaml","teicoplanin A2-4"],["amino_acids_and_peptides/teicoplanin-a2-5.yaml","Teicoplanin A2-5"],["amino_acids_and_peptides/teicoplanin.yaml","teicoplanin"]],"b":[["antibacterial/teicoplanin.html","teicoplanin"],["unspecified/teicoplanin-a2-2.html","teicoplanin A2-2"],["unspecified/teicoplanin-a2-3.html","teicoplanin A2-3"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":3,"nb":4,"a":[["amino_acids_and_peptides/epidermin.yaml","epidermin"],["amino_acids_and_peptides/epilancin-15x.yaml","epilancin 15x"],["amino_acids_and_peptides/pep5.yaml","pep5"]],"b":[["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/oxacillin.html","oxacillin"]]},{"id":"NCBITaxon:451804","l":"Aspergillus fumigatus (strain CBS 144.89 / FGSC A1163 / CEA10)","na":3,"nb":3,"a":[["terpenoids/21-h-hopane-3beta-22-diol.yaml","21-β-H-hopane-3beta, 22-diol"],["terpenoids/compound-3-3.yaml","compound 3"],["terpenoids/fumihopaside-a.yaml","fumihopaside A"]],"b":[["antifungal/itraconazole.html","itraconazole"],["antifungal/terbinafine.html","terbinafine"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":27,"nb":2,"a":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["alkaloids/pseudomonine.yaml","pseudomonine"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyreudione-c.yaml","pyreudione C"],["alkaloids/quinolobactin.yaml","quinolobactin"]],"b":[["antibacterial/mupirocin.html","mupirocin"],["antifungal/2-4-diacetylphloroglucinol.html","2,4-diacetylphloroglucinol"]]},{"id":"NCBITaxon:332648","l":"Botrytis cinerea B05.10","na":21,"nb":2,"a":[["terpenoids/1-epibotrydial.yaml","1-epibotrydial"],["terpenoids/10-dehydroxy-dihydrobotrydialone.yaml","10-dehydroxy dihydrobotrydialone"],["terpenoids/10-epi-dihydrobotrydial.yaml","10-epi-dihydrobotrydial"],["terpenoids/10-oxo-dihydrobotrydial.yaml","10-Oxo-dihydrobotrydial"],["terpenoids/10-oxodehydrodihydrobotrydial.yaml","10-Oxodehydrodihydrobotrydial"],["terpenoids/10-oxodihydrobotry-1-9-4-5-diendial.yaml","10-Oxodihydrobotry-1(9),4(5)-diendial"]],"b":[["antifungal/fludioxonil.html","fludioxonil"],["antifungal/iprodione.html","iprodione"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":2,"nb":15,"a":[["alkaloids/acinetobactin.yaml","acinetobactin"],["amino_acids_and_peptides/fimsbactin-a.yaml","fimsbactin A"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"NCBITaxon:58346","l":"Streptomyces platensis","na":14,"nb":2,"a":[["alkaloids/13-epi-dorrigocin-a.yaml","13-epi-dorrigocin A"],["alkaloids/17-hydroxy-8-desmethoxy-isomigrastatin.yaml","17-hydroxy-8-desmethoxy-isomigrastatin"],["alkaloids/dorrigocin-a.yaml","dorrigocin A"],["alkaloids/dorrigocin-b.yaml","dorrigocin B"],["alkaloids/iso-migrastatin.yaml","iso-migrastatin"],["alkaloids/staurosporine.yaml","staurosporine"]],"b":[["antibacterial/platencin.html","platencin"],["antibacterial/platensimycin.html","platensimycin"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":10,"nb":2,"a":[["amino_acids_and_peptides/lipopeptide-8d1-1.yaml","lipopeptide 8D1-1"],["amino_acids_and_peptides/lipopeptide-8d1-2.yaml","lipopeptide 8D1-2"],["carbohydrates/amicetin.yaml","amicetin"],["carbohydrates/streptothricin-c.yaml","streptothricin C"],["carbohydrates/streptothricin-d.yaml","streptothricin D"],["carbohydrates/streptothricin-e.yaml","streptothricin E"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"],["unspecified/streptothricin-d.html","streptothricin D"]]},{"id":"NCBITaxon:242507","l":"","na":10,"nb":2,"a":[["polyketides/1-alpha-l-2-o-methyl-6-deoxymannopyranosyloxy-3-6-8-trimethoxynaphthalene.yaml","1-(alpha-l-(2-O-methyl)-6-deoxymannopyranosyloxy)-3,6,8-trimethoxynaphthalene"],["polyketides/10-11-dihydroxymagnaporthepyrone.yaml","10,11-dihydroxymagnaporthepyrone"],["polyketides/12-13-dihydroxymagnaporthepyrone.yaml","12,13-dihydroxymagnaporthepyrone"],["polyketides/epipyriculol.yaml","epipyriculol"],["polyketides/naphthalene-1-3-6-8-tetrol.yaml","naphthalene-1,3,6,8-tetrol"],["polyketides/nectriapyrone-c.yaml","nectriapyrone C"]],"b":[["antifungal/carboxin.html","carboxin"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:1223523","l":"Streptomyces mobaraensis NBRC 13819 = DSM 40847","na":5,"nb":2,"a":[["amino_acids_and_peptides/bleomycin-a2.yaml","bleomycin A2"],["amino_acids_and_peptides/bleomycin-b2.yaml","bleomycin B2"],["amino_acids_and_peptides/cyclothiazomycin-b1.yaml","cyclothiazomycin b1"],["amino_acids_and_peptides/ketomemicin-b3.yaml","ketomemicin B3"],["amino_acids_and_peptides/ketomemicin-b4.yaml","ketomemicin B4"]],"b":[["antibacterial/bleomycin-a2.html","bleomycin A2"],["antibacterial/bleomycin-b2.html","bleomycin B2"]]},{"id":"NCBITaxon:467194","l":"Streptomyces sp. CNQ-418","na":5,"nb":2,"a":[["alkaloids/marinopyrrole-a.yaml","(−)-marinopyrrole A"],["alkaloids/marinopyrrole-b.yaml","(−)-marinopyrrole B"],["alkaloids/marinopyrrole-c.yaml","marinopyrrole C"],["alkaloids/marinopyrrole-d.yaml","marinopyrrole D"],["alkaloids/marinopyrrole-e.yaml","marinopyrrole E"]],"b":[["antibacterial/marinopyrrole-a.html","(−)-marinopyrrole A"],["antibacterial/marinopyrrole-b.html","(−)-marinopyrrole B"]]},{"id":"NCBITaxon:559292","l":"Saccharomyces cerevisiae (strain ATCC 204508 / S288c)","na":2,"nb":5,"a":[["polyketides/kojic-acid.yaml","kojic acid"],["polyketides/radicicol.yaml","radicicol"]],"b":[["antifungal/anidulafungin.html","anidulafungin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/caspofungin.html","caspofungin"],["antifungal/cycloheximide.html","cycloheximide"],["antifungal/micafungin.html","micafungin"]]},{"id":"NCBITaxon:212423","l":"Streptomyces kaniharaensis","na":2,"nb":2,"a":[["alkaloids/formycin-a.yaml","formycin A"],["carbohydrates/coformycin.yaml","coformycin"]],"b":[["unspecified/coformycin.html","coformycin"],["unspecified/formycin-a.html","formycin A"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":31,"nb":1,"a":[["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["alkaloids/myxofacycline-e.yaml","myxofacycline E"],["alkaloids/myxofacycline-f.yaml","myxofacycline F"],["alkaloids/myxofacycline-g.yaml","myxofacycline G"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"]],"b":[["antibacterial/althiomycin.html","althiomycin"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":30,"nb":1,"a":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["amino_acids_and_peptides/ditryptophenaline.yaml","(-)-ditryptophenaline"],["amino_acids_and_peptides/imizoquin-a.yaml","imizoquin A"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":23,"nb":1,"a":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/melanin.yaml","melanin"],["alkaloids/undecylprodigiosin.yaml","undecylprodigiosin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/sapb.yaml","SapB"]],"b":[["antibacterial/nocardamine.html","nocardamine"]]},{"id":"NCBITaxon:162425","l":"Aspergillus nidulans","na":22,"nb":1,"a":[["alkaloids/aspernidine-a.yaml","aspernidine A"],["alkaloids/aspyridone-a.yaml","aspyridone A"],["alkaloids/aspyridone-b.yaml","aspyridone B"],["alkaloids/biotin.yaml","biotin"],["alkaloids/cichorine.yaml","cichorine"],["alkaloids/pentostatin.yaml","pentostatin"]],"b":[["antifungal/thiabendazole.html","thiabendazole"]]},{"id":"NCBITaxon:227321","l":"Emericella nidulans (strain FGSC A4 / ATCC 38163 / CBS 112.46 / NRRL 194 / M139)","na":22,"nb":1,"a":[["alkaloids/aspernidine-a.yaml","aspernidine A"],["alkaloids/aspyridone-a.yaml","aspyridone A"],["alkaloids/aspyridone-b.yaml","aspyridone B"],["alkaloids/cichorine.yaml","cichorine"],["alkaloids/terrequinone-a.yaml","terrequinone A"],["amino_acids_and_peptides/fellutamide-b.yaml","fellutamide B"]],"b":[["antifungal/thiabendazole.html","thiabendazole"]]},{"id":"NCBITaxon:54571","l":"Streptomyces venezuelae","na":21,"nb":1,"a":[["alkaloids/anthelvencin-a.yaml","anthelvencin A"],["alkaloids/anthelvencin-b.yaml","anthelvencin B"],["alkaloids/anthelvencin-c.yaml","anthelvencin C"],["alkaloids/chloramphenicol.yaml","chloramphenicol"],["alkaloids/corynecin-ii.yaml","corynecin II"],["alkaloids/gaburedin-d.yaml","gaburedin D"]],"b":[["antibacterial/methymycin.html","methymycin"]]},{"id":"NCBITaxon:2878388","l":"Streptomyces sp. SCSIO 03032","na":20,"nb":1,"a":[["alkaloids/indimicin-a.yaml","indimicin A"],["alkaloids/indimicin-b.yaml","indimicin B"],["alkaloids/indimicin-c.yaml","indimicin C"],["alkaloids/indimicin-d.yaml","indimicin D"],["alkaloids/indimicin-e.yaml","indimicin E"],["alkaloids/lynamicin-a.yaml","lynamicin A"]],"b":[["unspecified/piericidin-a.html","piericidin A"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":20,"nb":1,"a":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/c-3-sulfonylated-derivative.yaml","C-3 sulfonylated derivative"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["alkaloids/n-n-dioxide-containing-derivate.yaml","N,N-dioxide containing derivate"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:341663","l":"","na":17,"nb":1,"a":[["alkaloids/asterriquinone-ct5.yaml","asterriquinone CT5"],["alkaloids/dihydroisoflavipucine.yaml","dihydroisoflavipucine"],["alkaloids/isoflavipucine.yaml","isoflavipucine"],["polyketides/citreoviridin.yaml","citreoviridin"],["polyketides/geodin.yaml","geodin"],["polyketides/terreic-acid.yaml","terreic acid"]],"b":[["antiviral/aspulvinone-e.html","aspulvinone E"]]},{"id":"NCBITaxon:41951","l":"Streptomyces argillaceus","na":15,"nb":1,"a":[["alkaloids/argimycin-pi.yaml","argimycin PI"],["alkaloids/argimycin-pii.yaml","argimycin PII"],["alkaloids/argimycin-piv.yaml","argimycin PIV"],["alkaloids/argimycin-pix.yaml","argimycin PIX"],["alkaloids/argimycin-pv.yaml","argimycin PV"],["alkaloids/argimycin-pvi.yaml","argimycin PVI"]],"b":[["unspecified/mithramycin.html","mithramycin"]]},{"id":"NCBITaxon:5127","l":"Fusarium fujikuroi","na":15,"nb":1,"a":[["alkaloids/fusaric-acid.yaml","fusaric acid"],["alkaloids/fusarin-c.yaml","fusarin C"],["polyketides/bikaverin.yaml","bikaverin"],["polyketides/fujikurin-c.yaml","fujikurin C"],["polyketides/fujikurin-d.yaml","fujikurin D"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":14,"nb":1,"a":[["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/framycetin.yaml","framycetin"],["carbohydrates/neomycin-c.yaml","neomycin C"],["carbohydrates/paromomycin.yaml","paromomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":13,"nb":1,"a":[["alkaloids/holomycin.yaml","holomycin"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/2-formyloxymethylclavam.yaml","2-formyloxymethylclavam"],["amino_acids_and_peptides/2-hydroxymethylclavam.yaml","2-hydroxymethylclavam"],["amino_acids_and_peptides/alanylclavam.yaml","alanylclavam"],["amino_acids_and_peptides/cephamycin-c.yaml","cephamycin C"]],"b":[["antibacterial/clavulanic-acid.html","clavulanic acid"]]},{"id":"NCBITaxon:1433842","l":"Hapalosiphon welwitschii UTEX B 1830","na":12,"nb":1,"a":[["alkaloids/12-epi-fischerindole-i-isonitrile.yaml","12-epi-fischerindole I isonitrile"],["alkaloids/12-epi-fischerindole-u-isonitrile.yaml","12-epi-fischerindole U isonitrile"],["alkaloids/12-epi-hapalindole-c-isonitrile.yaml","12-epi-hapalindole C isonitrile"],["alkaloids/12-epi-hapalindole-e.yaml","12-epi-hapalindole E"],["alkaloids/3-epi-welwitindolinone-b-isothiocyanate.yaml","3-epi-welwitindolinone B isothiocyanate"],["alkaloids/3-z-2-isocyanovinyl-indole.yaml","3-[(Z)-2-isocyanovinyl]indole"]],"b":[["antibacterial/3-z-2-isocyanovinyl-indole.html","3-[(Z)-2-isocyanovinyl]indole"]]},{"id":"NCBITaxon:5053","l":"Aspergillus aculeatus","na":11,"nb":1,"a":[["alkaloids/acurin-a.yaml","acurin A"],["polyketides/secalonic-acid-a.yaml","Secalonic acid A"],["terpenoids/aculene-a.yaml","aculene A"],["terpenoids/aculene-b.yaml","aculene B"],["terpenoids/aculene-c.yaml","aculene C"],["terpenoids/aculene-d.yaml","aculene D"]],"b":[["antifungal/aculeacin-a.html","aculeacin A"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":10,"nb":1,"a":[["alkaloids/labradorin-1.yaml","labradorin 1"],["alkaloids/labradorin-2.yaml","labradorin 2"],["alkaloids/secimide.yaml","secimide"],["amino_acids_and_peptides/phaseolotoxin.yaml","phaseolotoxin"],["amino_acids_and_peptides/syringolin-a.yaml","syringolin A"],["amino_acids_and_peptides/tabtoxin.yaml","tabtoxin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae (strain ATCC 42149 / RIB 40)","na":10,"nb":1,"a":[["fatty_acids/oryzine-a.yaml","oryzine A"],["polyketides/kojic-acid.yaml","kojic acid"],["polyketides/oryzine-b.yaml","oryzine B"],["polyketides/ywa1.yaml","YWA1"],["shikimates_and_phenylpropanoids/2-4-dihydroxy-3-methoxypropiophenone.yaml","2,4'-dihydroxy-3'-methoxypropiophenone"],["shikimates_and_phenylpropanoids/8-methyldiaporthin.yaml","8-methyldiaporthin"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"NCBITaxon:1159556","l":"Ustilaginoidea virens","na":9,"nb":1,"a":[["amino_acids_and_peptides/ustiloxin-b.yaml","ustiloxin B"],["polyketides/ustilaginoidin-a.yaml","ustilaginoidin A"],["polyketides/ustilaginoidin-d.yaml","ustilaginoidin D"],["polyketides/ustilaginoidin-e.yaml","ustilaginoidin E"],["polyketides/ustilaginoidin-f.yaml","ustilaginoidin F"],["polyketides/ustilaginoidin-g.yaml","ustilaginoidin G"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"]]},{"id":"NCBITaxon:1979465","l":"Phoma betae","na":9,"nb":1,"a":[["polyketides/betaenone-a.yaml","betaenone A"],["polyketides/betaenone-b.yaml","betaenone B"],["polyketides/betaenone-c.yaml","betaenone C"],["terpenoids/17-deoxyaphidicolin.yaml","17-deoxyaphidicolin"],["terpenoids/3-deoxyaphidicolin.yaml","3-deoxyaphidicolin"],["terpenoids/aphidicolan-16-ol.yaml","aphidicolan-16β-ol"]],"b":[["antiviral/aphidicolin.html","aphidicolin"]]},{"id":"NCBITaxon:5076","l":"Penicillium chrysogenum","na":9,"nb":1,"a":[["alkaloids/chrysogine.yaml","chrysogine"],["amino_acids_and_peptides/benzylpenicillin-sodium.yaml","benzylpenicillin sodium"],["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"],["amino_acids_and_peptides/n-5s-5-ammonio-5-carboxylatopentanoyl-l-cysteinyl-d-valinate.yaml","N-[(5S)-5-ammonio-5-carboxylatopentanoyl]-L-cysteinyl-D-valinate"],["polyketides/2-3-dihydrosorbicillin.yaml","2'3'-dihydrosorbicillin"],["polyketides/bisorbicillinol.yaml","bisorbicillinol"]],"b":[["unspecified/isopenicillin-n.html","isopenicillin N"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":1,"nb":8,"a":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]],"b":[["antifungal/anidulafungin.html","anidulafungin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/caspofungin.html","caspofungin"],["antifungal/cycloheximide.html","cycloheximide"],["antifungal/micafungin.html","micafungin"],["antifungal/oligomycin-a.html","oligomycin A"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":8,"nb":1,"a":[["amino_acids_and_peptides/ferrichrome-2.yaml","ferrichrome"],["polyketides/2-acetyl-1-3-6-8-tetrahydroxynaphthalene.yaml","2-acetyl-1,3,6,8-tetrahydroxynaphthalene"],["polyketides/kojic-acid.yaml","kojic acid"],["terpenoids/aphidicolin.yaml","aphidicolin"],["unclassified/2-oxocyclopiazonic-acid.yaml","2-oxocyclopiazonic acid"],["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":1,"nb":7,"a":[["amino_acids_and_peptides/enterocin-a.yaml","enterocin A"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":1,"nb":7,"a":[["unclassified/antimycin-a1b.yaml","antimycin A1B"]],"b":[["antibacterial/brefeldin-a.html","brefeldin A"],["antifungal/anidulafungin.html","anidulafungin"],["antifungal/caspofungin.html","caspofungin"],["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/micafungin.html","micafungin"]]},{"id":"NCBITaxon:68280","l":"Streptomyces violaceusniger","na":7,"nb":1,"a":[["fatty_acids/desulfoclethramycin.yaml","desulfoclethramycin"],["polyketides/be-24566b.yaml","BE-24566B"],["polyketides/elaiophylin.yaml","elaiophylin"],["polyketides/meridamycin-2.yaml","meridamycin"],["polyketides/nigericin.yaml","nigericin"],["terpenoids/2-methylisoborneol.yaml","2-methylisoborneol"]],"b":[["antibacterial/nigericin.html","nigericin"]]},{"id":"NCBITaxon:37326","l":"Nocardia brasiliensis","na":6,"nb":1,"a":[["polyketides/brasilinolide-a.yaml","brasilinolide A"],["polyketides/brasilinolide-b.yaml","brasilinolide B"],["polyketides/brasilinolide-c.yaml","brasilinolide C"],["polyketides/brasiliquinone-a.yaml","brasiliquinone A"],["polyketides/brasiliquinone-b.yaml","brasiliquinone B"],["terpenoids/brasilicardin-a.yaml","brasilicardin A"]],"b":[["antibacterial/brasiliquinone-b.html","brasiliquinone B"]]},{"id":"NCBITaxon:47763","l":"Streptomyces lydicus","na":6,"nb":1,"a":[["amino_acids_and_peptides/ectoine.yaml","ectoine"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"],["polyketides/erythromycin-a.yaml","erythromycin A"],["polyketides/natamycin.yaml","natamycin"],["polyketides/streptolydigin.yaml","streptolydigin"],["unclassified/lydicamycin.yaml","lydicamycin"]],"b":[["unspecified/streptolydigin.html","streptolydigin"]]},{"id":"NCBITaxon:5082","l":"Penicillium roqueforti","na":6,"nb":1,"a":[["alkaloids/mycophenolic-acid-2.yaml","mycophenolic acid"],["polyketides/mycophenolic-acid.yaml","mycophenolic acid"],["terpenoids/pr-toxin.yaml","PR-toxin"],["unclassified/andrastin-a.yaml","andrastin A"],["unclassified/roquefortine-c.yaml","roquefortine C"],["unclassified/roquefortine-d.yaml","roquefortine D"]],"b":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]]},{"id":"NCBITaxon:52","l":"Chondromyces crocatus","na":6,"nb":1,"a":[["polyketides/chondrochloren-a.yaml","chondrochloren A"],["polyketides/cmc-thuggacin-a.yaml","Cmc-thuggacin A"],["polyketides/crocacin.yaml","crocacin"],["shikimates_and_phenylpropanoids/ajudazol-a.yaml","ajudazol A"],["unclassified/chondramide-a.yaml","chondramide A"],["unclassified/cmc-thuggacin-b.yaml","Cmc-thuggacin B"]],"b":[["unspecified/chondrochloren-a.html","chondrochloren A"]]},{"id":"NCBITaxon:43658","l":"Pseudoalteromonas rubra","na":5,"nb":1,"a":[["alkaloids/prodigiosin.yaml","prodigiosin"],["polyketides/nonyltyrazolone.yaml","nonyltyrazolone"],["polyketides/undecyltyrazolone.yaml","undecyltyrazolone"],["shikimates_and_phenylpropanoids/z-6-undecenyltyrazolone.yaml","(Z)-ω-6-undecenyltyrazolone"],["unclassified/heptyltyrazolone.yaml","heptyltyrazolone"]],"b":[["unspecified/prodigiosin.html","prodigiosin"]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":1,"nb":5,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/imipenem.html","imipenem"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":1,"a":[["alkaloids/prodigiosin-2.yaml","prodigiosin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/serratiochelin-a.yaml","serratiochelin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["polyketides/oocydin-a.yaml","oocydin A"]],"b":[["antibacterial/althiomycin.html","althiomycin"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":4,"a":[["alkaloids/petrobactin.yaml","petrobactin"]],"b":[["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/trimethoprim.html","trimethoprim"],["antiprotozoal/suramin.html","suramin"],["antiviral/tilorone.html","tilorone"]]},{"id":"NCBITaxon:318829","l":"Magnaporthe oryzae","na":1,"nb":4,"a":[["polyketides/nectriapyrone.yaml","nectriapyrone"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/carboxin.html","carboxin"],["antifungal/carpropamid.html","carpropamid"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:36650","l":"Penicillium aethiopicum","na":4,"nb":1,"a":[["alkaloids/tryptoquialanine.yaml","tryptoquialanine"],["polyketides/epidechlorogriseofulvin.yaml","epidechlorogriseofulvin"],["polyketides/griseofulvin.yaml","griseofulvin"],["unclassified/viridicatumtoxin.yaml","viridicatumtoxin"]],"b":[["unspecified/viridicatumtoxin.html","viridicatumtoxin"]]},{"id":"NCBITaxon:412963","l":"","na":4,"nb":1,"a":[["amino_acids_and_peptides/endopyrrole-b.yaml","endopyrrole B"],["amino_acids_and_peptides/holrhizin-a.yaml","holrhizin A"],["unclassified/endopyrrole-a.yaml","endopyrrole A"],["unclassified/rhizoxin-a.yaml","rhizoxin A"]],"b":[["unspecified/rhizoxin.html","rhizoxin"]]},{"id":"NCBITaxon:68214","l":"Streptomyces griseochromogenes","na":4,"nb":1,"a":[["carbohydrates/blasticidin-s.yaml","blasticidin S"],["carbohydrates/streptothricin-f.yaml","streptothricin F"],["polyketides/tautomycetin-2.yaml","tautomycetin"],["polyketides/tautomycetin.yaml","tautomycetin"]],"b":[["antifungal/blasticidin-s.html","blasticidin S"]]},{"id":"NCBITaxon:1907","l":"Streptomyces glaucescens","na":3,"nb":1,"a":[["carbohydrates/5-hydroxystreptomycin.yaml","5'-hydroxystreptomycin"],["carbohydrates/streptomycin.yaml","streptomycin"],["polyketides/tetracenomycin-c.yaml","tetracenomycin C"]],"b":[["antibacterial/tetracenomycin-c.html","tetracenomycin C"]]},{"id":"NCBITaxon:264951","l":"Paecilomyces variotii","na":3,"nb":1,"a":[["polyketides/agnestin-a.yaml","agnestin A"],["polyketides/agnestin-b.yaml","agnestin B"],["polyketides/viriditoxin.yaml","viriditoxin"]],"b":[["antibacterial/m-viriditoxin.html","(M)-viriditoxin"]]},{"id":"NCBITaxon:316284","l":"Streptomyces noursei ATCC 11455","na":3,"nb":1,"a":[["amino_acids_and_peptides/dechlorocuracomycin.yaml","dechlorocuracomycin"],["polyketides/nystatin-a1.yaml","nystatin A1"],["unclassified/albonoursin.yaml","albonoursin"]],"b":[["antifungal/nystatin-a1.html","nystatin A1"]]},{"id":"NCBITaxon:334819","l":"Fusarium verticillioides 7600","na":1,"nb":3,"a":[["alkaloids/fusaric-acid.yaml","fusaric acid"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/fludioxonil.html","fludioxonil"]]},{"id":"NCBITaxon:53446","l":"Streptomyces cinnamoneus","na":3,"nb":1,"a":[["amino_acids_and_peptides/cinnamycin.yaml","cinnamycin"],["amino_acids_and_peptides/duramycin.yaml","duramycin"],["unclassified/bicozamycin.yaml","bicozamycin"]],"b":[["antibacterial/bicozamycin.html","bicozamycin"]]},{"id":"NCBITaxon:536","l":"Chromobacterium violaceum","na":3,"nb":1,"a":[["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["unclassified/romidepsin.yaml","romidepsin"]],"b":[["unspecified/romidepsin.html","romidepsin"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":3,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"NCBITaxon:668825","l":"Streptomyces sp. ATCC 700974","na":3,"nb":1,"a":[["amino_acids_and_peptides/albomycin-1.yaml","albomycin δ1"],["amino_acids_and_peptides/albomycin-delta2.yaml","albomycin delta2"],["amino_acids_and_peptides/albomycin-epsilon.yaml","albomycin epsilon"]],"b":[["antibacterial/albomycin-%CE%B41.html","albomycin δ1"]]},{"id":"NCBITaxon:686309","l":"Micromonospora haikouensis","na":3,"nb":1,"a":[["carbohydrates/aristeromycin.yaml","aristeromycin"],["carbohydrates/coformycin.yaml","coformycin"],["carbohydrates/kanamycin-a.yaml","kanamycin A"]],"b":[["unspecified/coformycin.html","coformycin"]]},{"id":"CHEBI:26789","l":"","na":1,"nb":2,"a":[["carbohydrates/streptothricin-f.yaml","streptothricin F"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"],["unspecified/streptothricin-d.html","streptothricin D"]]},{"id":"NCBITaxon:1079985","l":"Streptomyces chartreusis NRRL 3882","na":2,"nb":1,"a":[["carbohydrates/tunicamycin-b1.yaml","tunicamycin B1"],["polyketides/a23187.yaml","A23187"]],"b":[["unspecified/tunicamycin-b1.html","tunicamycin B1"]]},{"id":"NCBITaxon:27337","l":"Verticillium dahliae","na":2,"nb":1,"a":[["polyketides/flaviolin.yaml","flaviolin"],["polyketides/scytalone.yaml","scytalone"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"NCBITaxon:28576","l":"Talaromyces variabilis","na":2,"nb":1,"a":[["alkaloids/ilicicolin-h.yaml","ilicicolin H"],["unclassified/varicidin-a.yaml","varicidin A"]],"b":[["unspecified/ilicicolin-h.html","ilicicolin H"]]},{"id":"NCBITaxon:36651","l":"Penicillium digitatum","na":1,"nb":2,"a":[["alkaloids/tryptoquialanine.yaml","tryptoquialanine"]],"b":[["antifungal/pyrifenox.html","pyrifenox"],["antifungal/triflumizole.html","triflumizole"]]},{"id":"NCBITaxon:5074","l":"Penicillium brevicompactum","na":2,"nb":1,"a":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"],["unclassified/asperphenamate.yaml","asperphenamate"]],"b":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]]},{"id":"NCBITaxon:5270","l":"","na":2,"nb":1,"a":[["fatty_acids/itaconic-acid.yaml","itaconic acid"],["fatty_acids/ustilagic-acid.yaml","ustilagic acid"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":2,"nb":1,"a":[["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["alkaloids/yersiniabactin.yaml","yersiniabactin"]],"b":[["unspecified/chir-090.html","CHIR-090"]]},{"id":"NCBITaxon:68264","l":"Streptomyces rishiriensis","na":2,"nb":1,"a":[["shikimates_and_phenylpropanoids/coumermycin-a1.yaml","coumermycin A1"],["unclassified/lactonamycin.yaml","lactonamycin"]],"b":[["antibacterial/coumermycin-a1.html","coumermycin A1"]]},{"id":"CHEBI:131914","l":"violacein","na":1,"nb":1,"a":[["alkaloids/violacein.yaml","violacein"]],"b":[["antibacterial/violacein.html","violacein"]]},{"id":"CHEBI:132426","l":"chondrochloren A","na":1,"nb":1,"a":[["polyketides/chondrochloren-a.yaml","chondrochloren A"]],"b":[["unspecified/chondrochloren-a.html","chondrochloren A"]]},{"id":"CHEBI:133127","l":"lugdunin","na":1,"nb":1,"a":[["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]],"b":[["antibacterial/lugdunin.html","lugdunin"]]},{"id":"CHEBI:134606","l":"toyocamycin","na":1,"nb":1,"a":[["carbohydrates/toyocamycin.yaml","toyocamycin"]],"b":[["antifungal/toyocamycin.html","toyocamycin"]]},{"id":"CHEBI:138511","l":"piericidin A","na":1,"nb":1,"a":[["polyketides/piericidin-a.yaml","piericidin A"]],"b":[["unspecified/piericidin-a.html","piericidin A"]]},{"id":"CHEBI:140173","l":"malacidin A","na":1,"nb":1,"a":[["amino_acids_and_peptides/malacidin-a.yaml","malacidin A"]],"b":[["antibacterial/malacidin-a.html","malacidin A"]]},{"id":"CHEBI:140174","l":"malacidin B","na":1,"nb":1,"a":[["amino_acids_and_peptides/malacidin-b.yaml","malacidin B"]],"b":[["antibacterial/malacidin-b.html","malacidin B"]]},{"id":"CHEBI:140434","l":"3-[(Z)-2-isocyanovinyl]indole","na":1,"nb":1,"a":[["alkaloids/3-z-2-isocyanovinyl-indole.yaml","3-[(Z)-2-isocyanovinyl]indole"]],"b":[["antibacterial/3-z-2-isocyanovinyl-indole.html","3-[(Z)-2-isocyanovinyl]indole"]]},{"id":"CHEBI:141338","l":"sporothriolide","na":1,"nb":1,"a":[["polyketides/sporothriolide.yaml","sporothriolide"]],"b":[["antifungal/sporothriolide.html","sporothriolide"]]},{"id":"CHEBI:141380","l":"indanomycin","na":1,"nb":1,"a":[["polyketides/indanomycin.yaml","indanomycin"]],"b":[["antibacterial/indanomycin.html","indanomycin"]]},{"id":"CHEBI:144441","l":"triacsin C","na":1,"nb":1,"a":[["fatty_acids/triacsin-c.yaml","triacsin C"]],"b":[["antiprotozoal/triacsin-c.html","triacsin C"]]},{"id":"CHEBI:144729","l":"L-β-ethynylserine zwitterion","na":1,"nb":1,"a":[["amino_acids_and_peptides/ethynylserine.yaml","β-ethynylserine"]],"b":[["antibacterial/l-%CE%B2-ethynylserine-zwitterion.html","L-β-ethynylserine zwitterion"]]},{"id":"CHEBI:144833","l":"L-β-ethynylserine","na":1,"nb":1,"a":[["amino_acids_and_peptides/ethynylserine.yaml","β-ethynylserine"]],"b":[["antibacterial/l-%CE%B2-ethynylserine.html","L-β-ethynylserine"]]},{"id":"CHEBI:146007","l":"(M)-viriditoxin","na":1,"nb":1,"a":[["polyketides/viriditoxin.yaml","viriditoxin"]],"b":[["antibacterial/m-viriditoxin.html","(M)-viriditoxin"]]},{"id":"CHEBI:146153","l":"ilicicolin B","na":1,"nb":1,"a":[["unclassified/ilicicolin-b.yaml","ilicicolin B"]],"b":[["unspecified/ilicicolin-b.html","ilicicolin B"]]},{"id":"CHEBI:149660","l":"atromentin","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/atromentin.yaml","atromentin"]],"b":[["antibacterial/atromentin.html","atromentin"]]},{"id":"CHEBI:15353","l":"blasticidin S","na":1,"nb":1,"a":[["carbohydrates/blasticidin-s.yaml","blasticidin S"]],"b":[["antifungal/blasticidin-s.html","blasticidin S"]]},{"id":"CHEBI:156148","l":"ascofuranone","na":1,"nb":1,"a":[["unclassified/ascofuranone.yaml","ascofuranone"]],"b":[["antiprotozoal/ascofuranone.html","ascofuranone"]]},{"id":"CHEBI:156219","l":"ascochlorin","na":1,"nb":1,"a":[["unclassified/ascochlorin.yaml","ascochlorin"]],"b":[["antifungal/ascochlorin.html","ascochlorin"]]},{"id":"CHEBI:156291","l":"oviedomycin","na":1,"nb":1,"a":[["polyketides/oviedomycin.yaml","oviedomycin"]],"b":[["unspecified/oviedomycin.html","oviedomycin"]]},{"id":"CHEBI:156298","l":"aurafuron A","na":1,"nb":1,"a":[["polyketides/aurafuron-a.yaml","aurafuron A"]],"b":[["antifungal/aurafuron-a.html","aurafuron A"]]},{"id":"CHEBI:156301","l":"auricin","na":1,"nb":1,"a":[["polyketides/auricin.yaml","auricin"]],"b":[["unspecified/auricin.html","auricin"]]},{"id":"CHEBI:156313","l":"erdasporine A","na":1,"nb":1,"a":[["alkaloids/erdasporine-a.yaml","erdasporine A"]],"b":[["antibacterial/erdasporine-a.html","erdasporine A"]]},{"id":"CHEBI:156314","l":"erdasporine B","na":1,"nb":1,"a":[["alkaloids/erdasporine-b.yaml","erdasporine B"]],"b":[["antibacterial/erdasporine-b.html","erdasporine B"]]},{"id":"CHEBI:156315","l":"erdasporine C","na":1,"nb":1,"a":[["alkaloids/erdasporine-c.yaml","erdasporine C"]],"b":[["antibacterial/erdasporine-c.html","erdasporine C"]]},{"id":"CHEBI:156363","l":"gibepyrone A","na":1,"nb":1,"a":[["polyketides/gibepyrone-a.yaml","gibepyrone A"]],"b":[["antibacterial/gibepyrone-a.html","gibepyrone A"]]},{"id":"CHEBI:156386","l":"asperlactone","na":1,"nb":1,"a":[["polyketides/asperlactone.yaml","asperlactone"]],"b":[["antibacterial/asperlactone.html","asperlactone"]]},{"id":"CHEBI:156426","l":"curacomycin","na":1,"nb":1,"a":[["amino_acids_and_peptides/curacomycin.yaml","curacomycin"]],"b":[["antibacterial/curacomycin.html","curacomycin"]]},{"id":"CHEBI:156450","l":"thiolutin","na":1,"nb":1,"a":[["alkaloids/thiolutin.yaml","thiolutin"]],"b":[["antibacterial/thiolutin.html","thiolutin"]]},{"id":"CHEBI:156451","l":"holomycin","na":1,"nb":1,"a":[["alkaloids/holomycin.yaml","holomycin"]],"b":[["antibacterial/holomycin.html","holomycin"]]},{"id":"CHEBI:156453","l":"pyoluteorin","na":1,"nb":1,"a":[["alkaloids/pyoluteorin.yaml","pyoluteorin"]],"b":[["antibacterial/pyoluteorin.html","pyoluteorin"]]},{"id":"CHEBI:156455","l":"tropodithietic acid","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/tropodithietic-acid.yaml","tropodithietic acid"]],"b":[["antibacterial/tropodithietic-acid.html","tropodithietic acid"]]},{"id":"CHEBI:156550","l":"pyrrolomycin A","na":1,"nb":1,"a":[["alkaloids/pyrrolomycin-a.yaml","pyrrolomycin A"]],"b":[["antibacterial/pyrrolomycin-a.html","pyrrolomycin A"]]},{"id":"CHEBI:15732","l":"phosphonoacetic acid","na":1,"nb":1,"a":[["unclassified/phosphonoacetic-acid.yaml","phosphonoacetic acid"]],"b":[["antiviral/phosphonoacetic-acid.html","phosphonoacetic acid"]]},{"id":"CHEBI:161680","l":"aztreonam","na":1,"nb":1,"a":[["amino_acids_and_peptides/aztreonam.yaml","aztreonam"]],"b":[["antibacterial/aztreonam.html","aztreonam"]]},{"id":"CHEBI:16213","l":"coformycin","na":1,"nb":1,"a":[["carbohydrates/coformycin.yaml","coformycin"]],"b":[["unspecified/coformycin.html","coformycin"]]},{"id":"CHEBI:166872","l":"nucleocidin","na":1,"nb":1,"a":[["carbohydrates/nucleocidin.yaml","nucleocidin"]],"b":[["antibacterial/nucleocidin.html","nucleocidin"]]},{"id":"CHEBI:167043","l":"ochrindole A","na":1,"nb":1,"a":[["alkaloids/ochrindole-a.yaml","ochrindole A"]],"b":[["antibacterial/ochrindole-a.html","ochrindole A"]]},{"id":"CHEBI:167054","l":"acrophiarin","na":1,"nb":1,"a":[["amino_acids_and_peptides/acrophiarin.yaml","acrophiarin"]],"b":[["antifungal/acrophiarin.html","acrophiarin"]]},{"id":"CHEBI:168396","l":"mycophenolic acid","na":1,"nb":1,"a":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"]],"b":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]]},{"id":"CHEBI:17076","l":"streptomycin","na":1,"nb":1,"a":[["carbohydrates/streptomycin.yaml","streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"CHEBI:17630","l":"kanamycin A","na":1,"nb":1,"a":[["carbohydrates/kanamycin-a.yaml","kanamycin A"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"CHEBI:17695","l":"casbene","na":1,"nb":1,"a":[["terpenoids/casbene.yaml","casbene"]],"b":[["antifungal/casbene.html","casbene"]]},{"id":"CHEBI:17704","l":"aspulvinone E","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/aspulvinone-e.yaml","aspulvinone E"]],"b":[["antiviral/aspulvinone-e.html","aspulvinone E"]]},{"id":"CHEBI:17939","l":"puromycin","na":1,"nb":1,"a":[["carbohydrates/puromycin.yaml","puromycin"]],"b":[["antibacterial/puromycin.html","puromycin"]]},{"id":"CHEBI:18165","l":"isopenicillin N","na":1,"nb":1,"a":[["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"]],"b":[["unspecified/isopenicillin-n.html","isopenicillin N"]]},{"id":"CHEBI:184373","l":"cremeomycin","na":1,"nb":1,"a":[["unclassified/cremeomycin.yaml","cremeomycin"]],"b":[["antibacterial/cremeomycin.html","cremeomycin"]]},{"id":"CHEBI:190009","l":"himastatin","na":1,"nb":1,"a":[["amino_acids_and_peptides/himastatin.yaml","himastatin"]],"b":[["antibacterial/himastatin.html","himastatin"]]},{"id":"CHEBI:193157","l":"sceliphrolactam","na":1,"nb":1,"a":[["unclassified/sceliphrolactam.yaml","sceliphrolactam"]],"b":[["antifungal/sceliphrolactam.html","sceliphrolactam"]]},{"id":"CHEBI:206040","l":"","na":1,"nb":1,"a":[["polyketides/tartrolon-d.yaml","tartrolon D"]],"b":[["antibacterial/tartrolon-d.html","tartrolon D"]]},{"id":"CHEBI:219363","l":"reedsmycin A","na":1,"nb":1,"a":[["polyketides/reedsmycin-a.yaml","reedsmycin A"]],"b":[["antifungal/reedsmycin-a.html","reedsmycin A"]]},{"id":"CHEBI:219367","l":"reedsmycin B","na":1,"nb":1,"a":[["polyketides/reedsmycin-b.yaml","reedsmycin B"]],"b":[["antifungal/reedsmycin-b.html","reedsmycin B"]]},{"id":"CHEBI:219386","l":"reedsmycin E","na":1,"nb":1,"a":[["polyketides/reedsmycin-e.yaml","reedsmycin E"]],"b":[["antifungal/reedsmycin-e.html","reedsmycin E"]]},{"id":"CHEBI:2448","l":"actinorhodin","na":1,"nb":1,"a":[["polyketides/actinorhodin.yaml","actinorhodin"]],"b":[["unspecified/actinorhodin.html","actinorhodin"]]},{"id":"CHEBI:24750","l":"","na":1,"nb":1,"a":[["carbohydrates/5-hydroxystreptomycin.yaml","5'-hydroxystreptomycin"]],"b":[["unspecified/5-hydroxystreptomycin.html","5'-hydroxystreptomycin"]]},{"id":"CHEBI:2762","l":"antimycin A","na":1,"nb":1,"a":[["unclassified/antimycin-a.yaml","antimycin A"]],"b":[["antifungal/antimycin-a.html","antimycin A"]]},{"id":"CHEBI:2766","l":"aphidicolin","na":1,"nb":1,"a":[["terpenoids/aphidicolin.yaml","aphidicolin"]],"b":[["antiviral/aphidicolin.html","aphidicolin"]]},{"id":"CHEBI:27666","l":"actinomycin D","na":1,"nb":1,"a":[["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"]],"b":[["antibacterial/actinomycin-d.html","actinomycin D"]]},{"id":"CHEBI:27834","l":"pentostatin","na":1,"nb":1,"a":[["alkaloids/pentostatin.yaml","pentostatin"]],"b":[["unspecified/pentostatin.html","pentostatin"]]},{"id":"CHEBI:28001","l":"vancomycin","na":1,"nb":1,"a":[["amino_acids_and_peptides/vancomycin.yaml","vancomycin"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"CHEBI:28196","l":"erythromycin B","na":1,"nb":1,"a":[["polyketides/erythromycin-b.yaml","erythromycin B"]],"b":[["unspecified/erythromycin-b.html","erythromycin B"]]},{"id":"CHEBI:28283","l":"capsidiol","na":1,"nb":1,"a":[["terpenoids/capsidiol.yaml","capsidiol"]],"b":[["antifungal/capsidiol.html","capsidiol"]]},{"id":"CHEBI:28331","l":"erythromycin D","na":1,"nb":1,"a":[["polyketides/erythromycin-d.yaml","erythromycin D"]],"b":[["unspecified/erythromycin-d.html","erythromycin D"]]},{"id":"CHEBI:28748","l":"doxorubicin","na":1,"nb":1,"a":[["polyketides/doxorubicin.yaml","doxorubicin"]],"b":[["unspecified/doxorubicin.html","doxorubicin"]]},{"id":"CHEBI:28864","l":"tobramycin","na":1,"nb":1,"a":[["carbohydrates/tobramycin.yaml","tobramycin"]],"b":[["antibacterial/tobramycin.html","tobramycin"]]},{"id":"CHEBI:28915","l":"fosfomycin","na":1,"nb":1,"a":[["unclassified/fosfomycin.yaml","fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"CHEBI:29515","l":"ansamitocin P3","na":1,"nb":1,"a":[["polyketides/ansamitocin-p3.yaml","ansamitocin P3"]],"b":[["unspecified/ansamitocin-p3.html","ansamitocin P3"]]},{"id":"CHEBI:29556","l":"chloroeremomycin","na":1,"nb":1,"a":[["amino_acids_and_peptides/chloroeremomycin.yaml","chloroeremomycin"]],"b":[["antibacterial/chloroeremomycin.html","chloroeremomycin"]]},{"id":"CHEBI:29630","l":"methymycin","na":1,"nb":1,"a":[["polyketides/methymycin.yaml","methymycin"]],"b":[["antibacterial/methymycin.html","methymycin"]]},{"id":"CHEBI:29649","l":"narbomycin","na":1,"nb":1,"a":[["polyketides/narbomycin.yaml","narbomycin"]],"b":[["antibacterial/narbomycin.html","narbomycin"]]},{"id":"CHEBI:29656","l":"neomethymycin","na":1,"nb":1,"a":[["polyketides/neomethymycin.yaml","neomethymycin"]],"b":[["unspecified/neomethymycin.html","neomethymycin"]]},{"id":"CHEBI:29665","l":"pikromycin","na":1,"nb":1,"a":[["polyketides/pikromycin.yaml","pikromycin"]],"b":[["antibacterial/pikromycin.html","pikromycin"]]},{"id":"CHEBI:29673","l":"rifamycin SV","na":1,"nb":1,"a":[["polyketides/rifamycin-sv.yaml","rifamycin SV"]],"b":[["antimycobacterial/rifamycin-sv.html","rifamycin SV"]]},{"id":"CHEBI:29701","l":"tyrocidine A","na":1,"nb":1,"a":[["amino_acids_and_peptides/tyrocidine-a.yaml","tyrocidine A"]],"b":[["antibacterial/tyrocidine-a.html","tyrocidine A"]]},{"id":"CHEBI:29703","l":"validamycin A","na":1,"nb":1,"a":[["carbohydrates/validamycin-a.yaml","validamycin A"]],"b":[["antifungal/validamycin-a.html","validamycin A"]]},{"id":"CHEBI:3096","l":"bikaverin","na":1,"nb":1,"a":[["polyketides/bikaverin.yaml","bikaverin"]],"b":[["antibacterial/bikaverin.html","bikaverin"]]},{"id":"CHEBI:3139","l":"bleomycin A2","na":1,"nb":1,"a":[["amino_acids_and_peptides/bleomycin-a2.yaml","bleomycin A2"]],"b":[["antibacterial/bleomycin-a2.html","bleomycin A2"]]},{"id":"CHEBI:315018","l":"echinocandin B","na":1,"nb":1,"a":[["amino_acids_and_peptides/echinocandin-b.yaml","echinocandin B"]],"b":[["antifungal/echinocandin-b.html","echinocandin B"]]},{"id":"CHEBI:31856","l":"mithramycin","na":1,"nb":1,"a":[["polyketides/mithramycin.yaml","mithramycin"]],"b":[["unspecified/mithramycin.html","mithramycin"]]},{"id":"CHEBI:32079","l":"pyrrolnitrin","na":1,"nb":1,"a":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]],"b":[["antifungal/pyrrolnitrin.html","pyrrolnitrin"]]},{"id":"CHEBI:3252","l":"C-1027 chromophore","na":1,"nb":1,"a":[["polyketides/c-1027-chromophore.yaml","C-1027 chromophore"]],"b":[["unspecified/c-1027-chromophore.html","C-1027 chromophore"]]},{"id":"CHEBI:338412","l":"(-)-anisomycin","na":1,"nb":1,"a":[["alkaloids/anisomycin.yaml","(−)-anisomycin"]],"b":[["antiviral/anisomycin.html","(−)-anisomycin"]]},{"id":"CHEBI:34996","l":"teicoplanin A2-3","na":1,"nb":1,"a":[["amino_acids_and_peptides/teicoplanin-a2-3.yaml","teicoplanin A2-3"]],"b":[["unspecified/teicoplanin-a2-3.html","teicoplanin A2-3"]]},{"id":"CHEBI:34997","l":"teicoplanin A2-4","na":1,"nb":1,"a":[["amino_acids_and_peptides/teicoplanin-a2-4.yaml","teicoplanin A2-4"]],"b":[["unspecified/teicoplanin-a2-4.html","teicoplanin A2-4"]]},{"id":"CHEBI:3613","l":"chlorflavonin","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/chlorflavonin.yaml","chlorflavonin"]],"b":[["antifungal/chlorflavonin.html","chlorflavonin"]]},{"id":"CHEBI:3907","l":"coumermycin A1","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/coumermycin-a1.yaml","coumermycin A1"]],"b":[["antibacterial/coumermycin-a1.html","coumermycin A1"]]},{"id":"CHEBI:40009","l":"D-cycloserine","na":1,"nb":1,"a":[["amino_acids_and_peptides/cycloserine.yaml","cycloserine"]],"b":[["antimycobacterial/d-cycloserine.html","D-cycloserine"]]},{"id":"CHEBI:4031","l":"cyclosporin A","na":1,"nb":1,"a":[["amino_acids_and_peptides/cyclosporin-a.yaml","cyclosporin A"]],"b":[["antifungal/cyclosporin-a.html","cyclosporin A"]]},{"id":"CHEBI:41977","l":"daunorubicin","na":1,"nb":1,"a":[["polyketides/daunorubicin.yaml","daunorubicin"]],"b":[["unspecified/daunorubicin.html","daunorubicin"]]},{"id":"CHEBI:42355","l":"erythromycin A","na":1,"nb":1,"a":[["polyketides/erythromycin-a.yaml","erythromycin A"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"CHEBI:42452","l":"formycin A","na":1,"nb":1,"a":[["alkaloids/formycin-a.yaml","formycin A"]],"b":[["unspecified/formycin-a.html","formycin A"]]},{"id":"CHEBI:43616","l":"K-252a","na":1,"nb":1,"a":[["alkaloids/k-252a.yaml","K-252a"]],"b":[["unspecified/k-252a.html","K-252a"]]},{"id":"CHEBI:45257","l":"ribostamycin","na":1,"nb":1,"a":[["carbohydrates/ribostamycin.yaml","ribostamycin"]],"b":[["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"CHEBI:45327","l":"adenine arabinoside","na":1,"nb":1,"a":[["carbohydrates/adenine-arabinoside.yaml","adenine arabinoside"]],"b":[["unspecified/adenine-arabinoside.html","adenine arabinoside"]]},{"id":"CHEBI:45773","l":"streptolydigin","na":1,"nb":1,"a":[["polyketides/streptolydigin.yaml","streptolydigin"]],"b":[["unspecified/streptolydigin.html","streptolydigin"]]},{"id":"CHEBI:46416","l":"virginiamycin S1","na":1,"nb":1,"a":[["unclassified/virginiamycin-s1.yaml","virginiamycin S1"]],"b":[["antibacterial/virginiamycin-s1.html","virginiamycin S1"]]},{"id":"CHEBI:473992","l":"nystatin A1","na":1,"nb":1,"a":[["polyketides/nystatin-a1.yaml","nystatin A1"]],"b":[["antifungal/nystatin-a1.html","nystatin A1"]]},{"id":"CHEBI:48200","l":"griseusin B","na":1,"nb":1,"a":[["polyketides/griseusin-b.yaml","griseusin B"]],"b":[["unspecified/griseusin-b.html","griseusin B"]]},{"id":"CHEBI:48201","l":"frenolicin B","na":1,"nb":1,"a":[["polyketides/frenolicin-b.yaml","frenolicin B"]],"b":[["unspecified/frenolicin-b.html","frenolicin B"]]},{"id":"CHEBI:48267","l":"tubercidin","na":1,"nb":1,"a":[["carbohydrates/tubercidin.yaml","tubercidin"]],"b":[["antifungal/tubercidin.html","tubercidin"]]},{"id":"CHEBI:48635","l":"fumagillin","na":1,"nb":1,"a":[["polyketides/fumagillin.yaml","fumagillin"]],"b":[["antibacterial/fumagillin.html","fumagillin"]]},{"id":"CHEBI:48947","l":"clavulanic acid","na":1,"nb":1,"a":[["amino_acids_and_peptides/clavulanic-acid.yaml","clavulanic acid"]],"b":[["antibacterial/clavulanic-acid.html","clavulanic acid"]]},{"id":"CHEBI:50437","l":"nocardamine","na":1,"nb":1,"a":[["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"]],"b":[["antibacterial/nocardamine.html","nocardamine"]]},{"id":"CHEBI:51460","l":"albaflavenone","na":1,"nb":1,"a":[["terpenoids/albaflavenone.yaml","albaflavenone"]],"b":[["unspecified/albaflavenone.html","albaflavenone"]]},{"id":"CHEBI:52549","l":"sordarin","na":1,"nb":1,"a":[["terpenoids/sordarin.yaml","sordarin"]],"b":[["antifungal/sordarin.html","sordarin"]]},{"id":"CHEBI:5292","l":"geldanamycin","na":1,"nb":1,"a":[["polyketides/geldanamycin.yaml","geldanamycin"]],"b":[["antiviral/geldanamycin.html","geldanamycin"]]},{"id":"CHEBI:5674","l":"herbimycin","na":1,"nb":1,"a":[["polyketides/herbimycin-a.yaml","herbimycin A"]],"b":[["unspecified/herbimycin.html","herbimycin"]]},{"id":"CHEBI:59064","l":"colistin A","na":1,"nb":1,"a":[["amino_acids_and_peptides/colistin-a.yaml","colistin A"]],"b":[["antibacterial/colistin-a.html","colistin A"]]},{"id":"CHEBI:59673","l":"colistin B","na":1,"nb":1,"a":[["amino_acids_and_peptides/colistin-b.yaml","colistin B"]],"b":[["antibacterial/colistin-b.html","colistin B"]]},{"id":"CHEBI:60584","l":"bicozamycin","na":1,"nb":1,"a":[["unclassified/bicozamycin.yaml","bicozamycin"]],"b":[["antibacterial/bicozamycin.html","bicozamycin"]]},{"id":"CHEBI:60821","l":"streptothricin F","na":1,"nb":1,"a":[["carbohydrates/streptothricin-f.yaml","streptothricin F"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"]]},{"id":"CHEBI:60828","l":"streptothricin D","na":1,"nb":1,"a":[["carbohydrates/streptothricin-d.yaml","streptothricin D"]],"b":[["unspecified/streptothricin-d.html","streptothricin D"]]},{"id":"CHEBI:61080","l":"romidepsin","na":1,"nb":1,"a":[["unclassified/romidepsin.yaml","romidepsin"]],"b":[["unspecified/romidepsin.html","romidepsin"]]},{"id":"CHEBI:62219","l":"2-heptyl-4-quinolone","na":1,"nb":1,"a":[["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"]],"b":[["antibacterial/2-heptyl-4-quinolone.html","2-heptyl-4-quinolone"]]},{"id":"CHEBI:623918","l":"nikkomycin Z","na":1,"nb":1,"a":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"]],"b":[["antifungal/nikkomycin-z.html","nikkomycin Z"]]},{"id":"CHEBI:64248","l":"tunicamycin B1","na":1,"nb":1,"a":[["carbohydrates/tunicamycin-b1.yaml","tunicamycin B1"]],"b":[["unspecified/tunicamycin-b1.html","tunicamycin B1"]]},{"id":"CHEBI:64273","l":"erythromycin C","na":1,"nb":1,"a":[["polyketides/erythromycin-c.yaml","erythromycin C"]],"b":[["unspecified/erythromycin-c.html","erythromycin C"]]},{"id":"CHEBI:6472","l":"lincomycin","na":1,"nb":1,"a":[["carbohydrates/lincomycin.yaml","lincomycin"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"CHEBI:65110","l":"butirosin B","na":1,"nb":1,"a":[["carbohydrates/butirosin-b.yaml","butirosin B"]],"b":[["unspecified/butirosin-b.html","butirosin B"]]},{"id":"CHEBI:65112","l":"butirosin A","na":1,"nb":1,"a":[["carbohydrates/butirosin-a.yaml","butirosin A"]],"b":[["unspecified/butirosin-a.html","butirosin A"]]},{"id":"CHEBI:65401","l":"ambiguine I","na":1,"nb":1,"a":[["alkaloids/ambiguine-i-isonitrile.yaml","ambiguine I isonitrile"]],"b":[["antibacterial/ambiguine-i.html","ambiguine I"]]},{"id":"CHEBI:65474","l":"BE-24566B","na":1,"nb":1,"a":[["polyketides/be-24566b.yaml","BE-24566B"]],"b":[["antibacterial/be-24566b.html","BE-24566B"]]},{"id":"CHEBI:65517","l":"brasiliquinone B","na":1,"nb":1,"a":[["polyketides/brasiliquinone-b.yaml","brasiliquinone B"]],"b":[["antibacterial/brasiliquinone-b.html","brasiliquinone B"]]},{"id":"CHEBI:65619","l":"chloropeptin II","na":1,"nb":1,"a":[["amino_acids_and_peptides/isocomplestatin.yaml","isocomplestatin"]],"b":[["antiviral/chloropeptin-ii.html","chloropeptin II"]]},{"id":"CHEBI:65716","l":"cystothiazole A","na":1,"nb":1,"a":[["unclassified/cystothiazole-a.yaml","cystothiazole A"]],"b":[["antifungal/cystothiazole-a.html","cystothiazole A"]]},{"id":"CHEBI:65915","l":"FR901464","na":1,"nb":1,"a":[["fatty_acids/fr901464.yaml","FR901464"]],"b":[["unspecified/fr901464.html","FR901464"]]},{"id":"CHEBI:65964","l":"gilvusmycin","na":1,"nb":1,"a":[["alkaloids/gilvusmycin.yaml","gilvusmycin"]],"b":[["unspecified/gilvusmycin.html","gilvusmycin"]]},{"id":"CHEBI:66006","l":"harziphilone","na":1,"nb":1,"a":[["polyketides/harziphilone.yaml","harziphilone"]],"b":[["antiviral/harziphilone.html","harziphilone"]]},{"id":"CHEBI:66093","l":"isocomplestatin","na":1,"nb":1,"a":[["amino_acids_and_peptides/isocomplestatin.yaml","isocomplestatin"]],"b":[["antiviral/complestatin.html","isocomplestatin"]]},{"id":"CHEBI:66135","l":"kalimantacin A","na":1,"nb":1,"a":[["polyketides/kalimantacin-a.yaml","kalimantacin A"]],"b":[["antibacterial/kalimantacin-a.html","kalimantacin A"]]},{"id":"CHEBI:66553","l":"lactonamycin","na":1,"nb":1,"a":[["unclassified/lactonamycin.yaml","lactonamycin"]],"b":[["antibacterial/lactonamycin.html","lactonamycin"]]},{"id":"CHEBI:66678","l":"(−)-marinopyrrole A","na":1,"nb":1,"a":[["alkaloids/marinopyrrole-a.yaml","(−)-marinopyrrole A"]],"b":[["antibacterial/marinopyrrole-a.html","(−)-marinopyrrole A"]]},{"id":"CHEBI:66679","l":"(−)-marinopyrrole B","na":1,"nb":1,"a":[["alkaloids/marinopyrrole-b.yaml","(−)-marinopyrrole B"]],"b":[["antibacterial/marinopyrrole-b.html","(−)-marinopyrrole B"]]},{"id":"CHEBI:66687","l":"mediomycin A","na":1,"nb":1,"a":[["fatty_acids/mediomycin-a.yaml","mediomycin A"]],"b":[["antifungal/mediomycin-a.html","mediomycin A"]]},{"id":"CHEBI:66771","l":"polyketomycin","na":1,"nb":1,"a":[["polyketides/polyketomycin.yaml","polyketomycin"]],"b":[["antibacterial/polyketomycin.html","polyketomycin"]]},{"id":"CHEBI:6701","l":"maytansine","na":1,"nb":1,"a":[["polyketides/maytansine.yaml","maytansine"]],"b":[["unspecified/maytansine.html","maytansine"]]},{"id":"CHEBI:67811","l":"zorbamycin","na":1,"nb":1,"a":[["amino_acids_and_peptides/zorbamycin.yaml","zorbamycin"]],"b":[["unspecified/zorbamycin.html","zorbamycin"]]},{"id":"CHEBI:68236","l":"platensimycin","na":1,"nb":1,"a":[["terpenoids/platensimycin.yaml","platensimycin"]],"b":[["antibacterial/platensimycin.html","platensimycin"]]},{"id":"CHEBI:68241","l":"platencin","na":1,"nb":1,"a":[["terpenoids/platencin.yaml","platencin"]],"b":[["antibacterial/platencin.html","platencin"]]},{"id":"CHEBI:7025","l":"mupirocin","na":1,"nb":1,"a":[["polyketides/mupirocin.yaml","mupirocin"]],"b":[["antibacterial/mupirocin.html","mupirocin"]]},{"id":"CHEBI:70816","l":"pentalenolactone","na":1,"nb":1,"a":[["terpenoids/pentalenolactone.yaml","pentalenolactone"]],"b":[["unspecified/pentalenolactone.html","pentalenolactone"]]},{"id":"CHEBI:71961","l":"lividomycin A","na":1,"nb":1,"a":[["carbohydrates/lividomycin-a.yaml","lividomycin A"]],"b":[["antimycobacterial/lividomycin-a.html","lividomycin A"]]},{"id":"CHEBI:72590","l":"rhizoxin","na":1,"nb":1,"a":[["unclassified/rhizoxin-a.yaml","rhizoxin A"]],"b":[["unspecified/rhizoxin.html","rhizoxin"]]},{"id":"CHEBI:73167","l":"concanamycin A","na":1,"nb":1,"a":[["polyketides/concanamycin-a.yaml","concanamycin A"]],"b":[["antifungal/concanamycin-a.html","concanamycin A"]]},{"id":"CHEBI:7488","l":"natamycin","na":1,"nb":1,"a":[["polyketides/natamycin.yaml","natamycin"]],"b":[["antifungal/natamycin.html","natamycin"]]},{"id":"CHEBI:74926","l":"patulin","na":1,"nb":1,"a":[["polyketides/patulin.yaml","patulin"]],"b":[["unspecified/patulin.html","patulin"]]},{"id":"CHEBI:7508","l":"framycetin","na":1,"nb":1,"a":[["carbohydrates/framycetin.yaml","framycetin"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"CHEBI:75276","l":"ikarugamycin","na":1,"nb":1,"a":[["unclassified/ikarugamycin.yaml","ikarugamycin"]],"b":[["antiprotozoal/ikarugamycin.html","ikarugamycin"]]},{"id":"CHEBI:75306","l":"2-heptyl-4-hydroxyquinoline","na":1,"nb":1,"a":[["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"]],"b":[["antibacterial/2-heptyl-4-hydroxyquinoline.html","2-heptyl-4-hydroxyquinoline"]]},{"id":"CHEBI:7569","l":"nigericin","na":1,"nb":1,"a":[["polyketides/nigericin.yaml","nigericin"]],"b":[["antibacterial/nigericin.html","nigericin"]]},{"id":"CHEBI:77772","l":"ilicicolin H","na":1,"nb":1,"a":[["alkaloids/ilicicolin-h.yaml","ilicicolin H"]],"b":[["unspecified/ilicicolin-h.html","ilicicolin H"]]},{"id":"CHEBI:77879","l":"elaiophylin","na":1,"nb":1,"a":[["polyketides/elaiophylin.yaml","elaiophylin"]],"b":[["antifungal/elaiophylin.html","elaiophylin"]]},{"id":"CHEBI:78156","l":"mucidin","na":1,"nb":1,"a":[["polyketides/mucidin.yaml","mucidin"]],"b":[["antifungal/mucidin.html","mucidin"]]},{"id":"CHEBI:78688","l":"2,4-diacetylphloroglucinol","na":1,"nb":1,"a":[["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"]],"b":[["antifungal/2-4-diacetylphloroglucinol.html","2,4-diacetylphloroglucinol"]]},{"id":"CHEBI:79391","l":"(−)-chuangxinmycin","na":1,"nb":1,"a":[["alkaloids/chuangxinmycin.yaml","(−)-chuangxinmycin"]],"b":[["antibacterial/chuangxinmycin.html","(−)-chuangxinmycin"]]},{"id":"CHEBI:80729","l":"toxoflavin","na":1,"nb":1,"a":[["alkaloids/toxoflavin.yaml","toxoflavin"]],"b":[["antibacterial/toxoflavin.html","toxoflavin"]]},{"id":"CHEBI:82758","l":"prodigiosin","na":1,"nb":1,"a":[["alkaloids/prodigiosin.yaml","prodigiosin"]],"b":[["unspecified/prodigiosin.html","prodigiosin"]]},{"id":"CHEBI:83206","l":"albomycin δ1","na":1,"nb":1,"a":[["amino_acids_and_peptides/albomycin-1.yaml","albomycin δ1"]],"b":[["antibacterial/albomycin-%CE%B41.html","albomycin δ1"]]},{"id":"CHEBI:8349","l":"pradimicin A","na":1,"nb":1,"a":[["polyketides/pradimicin-a.yaml","pradimicin A"]],"b":[["antifungal/pradimicin-a.html","pradimicin A"]]},{"id":"CHEBI:84037","l":"ravidomycin","na":1,"nb":1,"a":[["polyketides/ravidomycin.yaml","ravidomycin"]],"b":[["unspecified/ravidomycin.html","ravidomycin"]]},{"id":"CHEBI:85129","l":"ristocetin","na":1,"nb":1,"a":[["amino_acids_and_peptides/ristocetin-a.yaml","Ristocetin A"]],"b":[["antibacterial/ristocetin.html","ristocetin"]]},{"id":"CHEBI:85251","l":"teicoplanin A2-2","na":1,"nb":1,"a":[["amino_acids_and_peptides/teicoplanin-a2-2.yaml","teicoplanin A2-2"]],"b":[["unspecified/teicoplanin-a2-2.html","teicoplanin A2-2"]]},{"id":"CHEBI:85616","l":"viridicatumtoxin","na":1,"nb":1,"a":[["unclassified/viridicatumtoxin.yaml","viridicatumtoxin"]],"b":[["unspecified/viridicatumtoxin.html","viridicatumtoxin"]]},{"id":"CHEBI:86012","l":"oxetanocin A","na":1,"nb":1,"a":[["carbohydrates/oxetanocin-a.yaml","oxetanocin A"]],"b":[["antibacterial/oxetanocin-a.html","oxetanocin A"]]},{"id":"CHEBI:8653","l":"pyocyanine","na":1,"nb":1,"a":[["alkaloids/pyocyanine.yaml","pyocyanine"]],"b":[["antibacterial/pyocyanine.html","pyocyanine"]]},{"id":"CHEBI:87084","l":"rosaramicin","na":1,"nb":1,"a":[["polyketides/rosaramicin.yaml","rosaramicin"]],"b":[["antibacterial/rosaramicin.html","rosaramicin"]]},{"id":"CHEBI:87399","l":"UK 63598","na":1,"nb":1,"a":[["unclassified/uk-63598.yaml","UK 63598"]],"b":[["unspecified/uk-63598.html","UK 63598"]]},{"id":"CHEBI:90284","l":"pirazofurin","na":1,"nb":1,"a":[["unclassified/pirazofurin.yaml","pirazofurin"]],"b":[["unspecified/pirazofurin.html","pirazofurin"]]},{"id":"CHEBI:90888","l":"aurachin C","na":1,"nb":1,"a":[["alkaloids/aurachin-c.yaml","aurachin C"]],"b":[["antibacterial/aurachin-c.html","aurachin C"]]},{"id":"CHEBI:90924","l":"aurachin A","na":1,"nb":1,"a":[["alkaloids/aurachin-a.yaml","aurachin A"]],"b":[["antibacterial/aurachin-a.html","aurachin A"]]},{"id":"CHEBI:90941","l":"sibiromycin","na":1,"nb":1,"a":[["carbohydrates/sibiromycin.yaml","sibiromycin"]],"b":[["unspecified/sibiromycin.html","sibiromycin"]]},{"id":"CHEBI:9168","l":"sirolimus","na":1,"nb":1,"a":[["polyketides/sirolimus.yaml","sirolimus"]],"b":[["antibacterial/sirolimus.html","sirolimus"]]},{"id":"CHEBI:9169","l":"sisomycin","na":1,"nb":1,"a":[["carbohydrates/sisomycin.yaml","sisomycin"]],"b":[["antibacterial/sisomycin.html","sisomycin"]]},{"id":"CHEBI:9215","l":"spectinomycin","na":1,"nb":1,"a":[["carbohydrates/spectinomycin.yaml","spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"CHEBI:92181","l":"lasalocid","na":1,"nb":1,"a":[["polyketides/lasalocid.yaml","lasalocid"]],"b":[["antiprotozoal/lasalocid.html","lasalocid"]]},{"id":"CHEBI:9232","l":"spinosyn D","na":1,"nb":1,"a":[["polyketides/spinosyn-d.yaml","spinosyn D"]],"b":[["unspecified/spinosyn-d.html","spinosyn D"]]},{"id":"CHEBI:9287","l":"streptonigrin","na":1,"nb":1,"a":[["alkaloids/streptonigrin.yaml","streptonigrin"]],"b":[["unspecified/streptonigrin.html","streptonigrin"]]},{"id":"CHEBI:9470","l":"tetracenomycin C","na":1,"nb":1,"a":[["polyketides/tetracenomycin-c.yaml","tetracenomycin C"]],"b":[["antibacterial/tetracenomycin-c.html","tetracenomycin C"]]},{"id":"CHEBI:9555","l":"tioguanine","na":1,"nb":1,"a":[["alkaloids/tioguanine.yaml","tioguanine"]],"b":[["antiviral/tioguanine.html","tioguanine"]]},{"id":"NCBITaxon:1156913","l":"","na":1,"nb":1,"a":[["amino_acids_and_peptides/vancomycin.yaml","vancomycin"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"NCBITaxon:1352936","l":"Streptomyces roseochromogenus subsp. oscitans DS 12.976","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/clorobiocin.yaml","clorobiocin"]],"b":[["antibacterial/clorobiocin.html","clorobiocin"]]},{"id":"NCBITaxon:1469403","l":"Streptomyces sp. ZJ306","na":1,"nb":1,"a":[["unclassified/ikarugamycin.yaml","ikarugamycin"]],"b":[["antiprotozoal/ikarugamycin.html","ikarugamycin"]]},{"id":"NCBITaxon:1654360","l":"Photobacterium galatheae","na":1,"nb":1,"a":[["alkaloids/holomycin.yaml","holomycin"]],"b":[["antibacterial/holomycin.html","holomycin"]]},{"id":"NCBITaxon:1764","l":"Mycobacterium avium","na":1,"nb":1,"a":[["fatty_acids/gpl-21.yaml","GPL-21"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"NCBITaxon:2583819","l":"Streptomyces sp. DASNCL29","na":1,"nb":1,"a":[["polyketides/nigericin.yaml","nigericin"]],"b":[["antibacterial/nigericin.html","nigericin"]]},{"id":"NCBITaxon:263","l":"Francisella tularensis","na":1,"nb":1,"a":[["polyketides/emodin.yaml","emodin"]],"b":[["unspecified/%CE%B1-mangostin.html","α-mangostin"]]},{"id":"NCBITaxon:41251","l":"Strobilurus tenacellus","na":1,"nb":1,"a":[["polyketides/mucidin.yaml","mucidin"]],"b":[["antifungal/mucidin.html","mucidin"]]},{"id":"NCBITaxon:527005","l":"Yersinia ruckeri ATCC 29473","na":1,"nb":1,"a":[["alkaloids/holomycin.yaml","holomycin"]],"b":[["antibacterial/holomycin.html","holomycin"]]},{"id":"NCBITaxon:5382","l":"Suillus grevillei","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/atromentin.yaml","atromentin"]],"b":[["antibacterial/atromentin.html","atromentin"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":1,"nb":1,"a":[["alkaloids/congocidine.yaml","congocidine"]],"b":[["antiprotozoal/emetine.html","emetine"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":1,"nb":1,"a":[["polyketides/emodin.yaml","emodin"]],"b":[["unspecified/%CE%B1-mangostin.html","α-mangostin"]]},{"id":"NCBITaxon:67283","l":"Streptomyces candidus","na":1,"nb":1,"a":[["unclassified/pirazofurin.yaml","pirazofurin"]],"b":[["unspecified/pirazofurin.html","pirazofurin"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":1,"a":[["unclassified/lysocin-e.yaml","lysocin E"]],"b":[["antibacterial/lysocin-e.html","lysocin E"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":1,"a":[["unclassified/mycobactin.yaml","mycobactin"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:889487","l":"Streptomyces sp. S4","na":1,"nb":1,"a":[["unclassified/antimycin-a.yaml","antimycin A"]],"b":[["antifungal/antimycin-a.html","antimycin A"]]},{"id":"UniProt:A0A1S5RQP7","l":"","na":1,"nb":1,"a":[["alkaloids/pentostatin.yaml","pentostatin"]],"b":[["unspecified/pentostatin.html","pentostatin"]]},{"id":"UniProt:B1JQH1","l":"","na":1,"nb":1,"a":[["polyketides/emodin.yaml","emodin"]],"b":[["unspecified/%CE%B1-mangostin.html","α-mangostin"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/NaturalProductMech--TaxonMech.json b/assets/fleet/edges/NaturalProductMech--TaxonMech.json new file mode 100644 index 0000000..0ca8368 --- /dev/null +++ b/assets/fleet/edges/NaturalProductMech--TaxonMech.json @@ -0,0 +1 @@ +{"a":"NaturalProductMech","b":"TaxonMech","base":{"NaturalProductMech":"https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/natural_products/","TaxonMech":"https://culturebotai.github.io/TaxonMech/pages/taxon.html?id="},"n":1708,"by":{"NCBITaxon":1708},"terms":[{"id":"NCBITaxon:1883","l":"Streptomyces","na":438,"nb":31267,"a":[["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/7-prenylisatin.yaml","7-prenylisatin"],["alkaloids/9-methylstreptimidone.yaml","9-methylstreptimidone"],["alkaloids/anisomycin.yaml","(−)-anisomycin"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"]],"b":[["NCBITaxon%3A208445","Amycolatopsis tolypomycina"],["NCBITaxon%3A1470348","Candidatus Streptomyces massiliensis"],["NCBITaxon%3A1211820","Candidatus Streptomyces massiliensis AP10"],["NCBITaxon%3A371608","Candidatus Streptomyces philanthi"],["NCBITaxon%3A1563718","Candidatus Streptomyces philanthi bv. albopilosus"],["NCBITaxon%3A371609","Candidatus Streptomyces philanthi bv. barbiger"]]},{"id":"NCBITaxon:1873","l":"Micromonospora","na":49,"nb":3346,"a":[["alkaloids/diazaquinomycin-h.yaml","diazaquinomycin H"],["alkaloids/diazaquinomycin-j.yaml","diazaquinomycin J"],["alkaloids/diazepinomicin.yaml","diazepinomicin"],["alkaloids/microansamycin-i.yaml","microansamycin I"],["alkaloids/staurosporine.yaml","staurosporine"],["alkaloids/streptonigrin.yaml","streptonigrin"]],"b":[["NCBITaxon%3A2202421","Micromonospora acroterricola"],["NCBITaxon%3A2911212","Micromonospora alfalfae"],["NCBITaxon%3A1287068","Micromonospora andamanensis"],["NCBITaxon%3A2807623","Micromonospora antibiotica"],["NCBITaxon%3A309046","Micromonospora aquatica"],["NCBITaxon%3A2116518","Micromonospora arborensis"]]},{"id":"NCBITaxon:286","l":"Pseudomonas","na":41,"nb":33485,"a":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["alkaloids/tioguanine.yaml","tioguanine"],["amino_acids_and_peptides/napsamycin-c.yaml","napsamycin C"],["amino_acids_and_peptides/napsamycin-d.yaml","napsamycin D"]],"b":[["NCBITaxon%3A196824","Arctic sea ice associated bacterium ARK10142"],["NCBITaxon%3A196823","Arctic sea ice bacterium ARK10061"],["NCBITaxon%3A196825","Arctic sea ice bacterium ARK9971"],["NCBITaxon%3A196826","Arctic sea ice bacterium ARK9995"],["NCBITaxon%3A215583","bacterium G5"],["NCBITaxon%3A1871086","Brevundimonas sp."]]},{"id":"NCBITaxon:1177","l":"Nostoc","na":41,"nb":6579,"a":[["alkaloids/nocuolin-a.yaml","Nocuolin A"],["amino_acids_and_peptides/anabaenopeptin-802.yaml","anabaenopeptin 802"],["amino_acids_and_peptides/heinamide-a1.yaml","heinamide A1"],["amino_acids_and_peptides/heinamide-a2.yaml","heinamide A2"],["amino_acids_and_peptides/heinamide-a3.yaml","heinamide A3"],["amino_acids_and_peptides/heinamide-b1.yaml","heinamide B1"]],"b":[["NCBITaxon%3A3085085","Anabaena oryzae CF66701"],["NCBITaxon%3A2739044","Cyanocohniella crotaloides"],["NCBITaxon%3A1179","Desmonostoc muscorum"],["NCBITaxon%3A3366270","Nostoc breve"],["NCBITaxon%3A3040065","Nostoc breve BG11-PS"],["NCBITaxon%3A1521619","Nostoc caeruleum"]]},{"id":"NCBITaxon:1126","l":"Microcystis aeruginosa","na":36,"nb":1085,"a":[["alkaloids/anatoxin-a.yaml","anatoxin-a"],["amino_acids_and_peptides/aerucyclamide-a.yaml","aerucyclamide A"],["amino_acids_and_peptides/aerucyclamide-c.yaml","aerucyclamide C"],["amino_acids_and_peptides/aerucyclamide-d.yaml","aerucyclamide D"],["amino_acids_and_peptides/aeruginosamide-b.yaml","aeruginosamide B"],["amino_acids_and_peptides/aeruginosamide-c.yaml","aeruginosamide C"]],"b":[["NCBITaxon%3A1126","Microcystis aeruginosa"],["NCBITaxon%3A270630","Microcystis aeruginosa 0BB35S02"],["NCBITaxon%3A270631","Microcystis aeruginosa 0BF29S01"],["NCBITaxon%3A270632","Microcystis aeruginosa 0BF29S03"],["NCBITaxon%3A2358142","Microcystis aeruginosa 11-30S32"],["NCBITaxon%3A3113711","Microcystis aeruginosa 1339"]]},{"id":"NCBITaxon:1912","l":"Streptomyces hygroscopicus","na":29,"nb":35,"a":[["alkaloids/9-methylstreptimidone.yaml","9-methylstreptimidone"],["alkaloids/indigoidine-2.yaml","indigoidine"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/cyclothiazomycin.yaml","cyclothiazomycin"],["amino_acids_and_peptides/eponemycin.yaml","eponemycin"],["amino_acids_and_peptides/himastatin.yaml","himastatin"]],"b":[["NCBITaxon%3A285578","Streptomyces angustmyceticus"],["NCBITaxon%3A68175","Streptomyces antimycoticus"],["NCBITaxon%3A1226758","Streptomyces antimycoticus subsp. mordarskii"],["NCBITaxon%3A476551","Streptomyces ascomycinicus"],["NCBITaxon%3A114699","Streptomyces asiaticus"],["NCBITaxon%3A3098222","Streptomyces asiaticus subsp. ignotus"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":27,"nb":79,"a":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["alkaloids/pseudomonine.yaml","pseudomonine"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyreudione-c.yaml","pyreudione C"],["alkaloids/quinolobactin.yaml","quinolobactin"]],"b":[["NCBITaxon%3A1931223","Caballeronia sp."],["NCBITaxon%3A89065","Pseudomonas abietaniphila"],["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1123912","Pseudomonas auricularis"],["NCBITaxon%3A930166","Pseudomonas brassicacearum"],["NCBITaxon%3A129817","Pseudomonas brenneri"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":24,"nb":3868,"a":[["alkaloids/biotin.yaml","biotin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A196023","Aeromonas hydrophila subsp. hydrophila"],["NCBITaxon%3A380703","Aeromonas hydrophila subsp. hydrophila ATCC 7966"],["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A35703","Citrobacter amalonaticus"],["NCBITaxon%3A163202","Corynebacterium appendicis"]]},{"id":"NCBITaxon:5073","l":"Penicillium","na":20,"nb":290,"a":[["alkaloids/citridone-a.yaml","citridone A"],["alkaloids/citridone-b-2.yaml","citridone B'"],["alkaloids/citridone-b.yaml","citridone B"],["alkaloids/communesin-b.yaml","communesin B"],["alkaloids/communesin-c.yaml","communesin C"],["alkaloids/communesin-d.yaml","communesin D"]],"b":[["NCBITaxon%3A70094","Penicillium adametzioides"],["NCBITaxon%3A36650","Penicillium aethiopicum"],["NCBITaxon%3A74831","Penicillium albocoremium"],["NCBITaxon%3A1324773","Penicillium alexiae"],["NCBITaxon%3A2998136","Penicillium allaniae"],["NCBITaxon%3A1459053","Penicillium allii"]]},{"id":"NCBITaxon:1911","l":"Streptomyces griseus","na":32,"nb":20,"a":[["alkaloids/cycloheximide.yaml","cycloheximide"],["alkaloids/grixazone-a.yaml","grixazone A"],["alkaloids/iminimycin-a.yaml","iminimycin A"],["alkaloids/iminimycin-b.yaml","iminimycin B"],["alkaloids/indolmycin.yaml","indolmycin"],["alkaloids/melanin.yaml","melanin"]],"b":[["NCBITaxon%3A1884","Streptomyces acrimycini"],["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A67274","Streptomyces argenteolus"],["NCBITaxon%3A1896","Streptomyces bikiniensis"],["NCBITaxon%3A90079","Streptomyces caviscabies"],["NCBITaxon%3A66883","Streptomyces cyaneofuscatus"]]},{"id":"NCBITaxon:5052","l":"Aspergillus","na":18,"nb":320,"a":[["alkaloids/psychrophilin-e.yaml","psychrophilin E"],["alkaloids/terrequinone-a.yaml","terrequinone A"],["fatty_acids/himeic-acid-a.yaml","himeic acid A"],["polyketides/asperlin.yaml","(+)-asperlin"],["polyketides/geodin.yaml","geodin"],["polyketides/mycophenolic-acid.yaml","mycophenolic acid"]],"b":[["NCBITaxon%3A1904037","Aspergillus acidohumus"],["NCBITaxon%3A487661","Aspergillus aculeatinus"],["NCBITaxon%3A1070780","Aspergillus affinis"],["NCBITaxon%3A657433","Aspergillus alabamensis"],["NCBITaxon%3A1612426","Aspergillus allahabadii"],["NCBITaxon%3A209559","Aspergillus alliaceus"]]},{"id":"NCBITaxon:1190","l":"Fischerella","na":16,"nb":189,"a":[["alkaloids/12-epi-hapalindole-c-isonitrile.yaml","12-epi-hapalindole C isonitrile"],["alkaloids/12-epi-hapalindole-e.yaml","12-epi-hapalindole E"],["alkaloids/12-epi-hapalindole-j-isonitrile.yaml","12-epi-hapalindole J isonitrile"],["alkaloids/ambiguine-a-isonitrile.yaml","ambiguine A isonitrile"],["alkaloids/ambiguine-b-isonitrile.yaml","ambiguine B isonitrile"],["alkaloids/ambiguine-d-isonitrile.yaml","ambiguine D isonitrile"]],"b":[["NCBITaxon%3A384603","filamentous thermophilic cyanobacterium tBTRCCn 101"],["NCBITaxon%3A384608","filamentous thermophilic cyanobacterium tBTRCCn 403"],["NCBITaxon%3A56108","Fischerella ambigua"],["NCBITaxon%3A2904298","Fischerella ambigua AFC012"],["NCBITaxon%3A1678516","Fischerella ambigua BAT1"],["NCBITaxon%3A452092","Fischerella ambigua FS 18"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":16,"nb":82,"a":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["amino_acids_and_peptides/ericin-s.yaml","ericin S"],["amino_acids_and_peptides/iturin.yaml","iturin"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"]],"b":[["NCBITaxon%3A1390","Bacillus amyloliquefaciens"],["NCBITaxon%3A1452","Bacillus atrophaeus"],["NCBITaxon%3A640707","Bacillus atrophaeus ATCC 9372"],["NCBITaxon%3A483913","Bacillus inaquosorum"],["NCBITaxon%3A1236548","Bacillus inaquosorum KCTC 13429"],["NCBITaxon%3A1402","Bacillus licheniformis"]]},{"id":"NCBITaxon:2063","l":"Kitasatospora","na":15,"nb":639,"a":[["alkaloids/5-2-hydroxyacetyl-5-10-dihydrophenazine-1-carboxylic-acid.yaml","5-(2-hydroxyacetyl)-5,10-dihydrophenazine-1-carboxylic acid"],["alkaloids/5-acetyl-5-10-dihydrophenazine-1-carboxylic-acid.yaml","5-acetyl-5,10-dihydrophenazine-1-carboxylic acid"],["alkaloids/endophenazine-a1.yaml","endophenazine A1"],["alkaloids/endophenazine-f.yaml","endophenazine F"],["alkaloids/endophenazine-g.yaml","endophenazine G"],["amino_acids_and_peptides/zelkovamycin-b.yaml","zelkovamycin B"]],"b":[["NCBITaxon%3A67265","Kitasatospora aburaviensis"],["NCBITaxon%3A285481","Kitasatospora aburaviensis subsp. tuftformis"],["NCBITaxon%3A2567942","Kitasatospora acidiphila"],["NCBITaxon%3A68173","Kitasatospora albolonga"],["NCBITaxon%3A258052","Kitasatospora arboriphila"],["NCBITaxon%3A285545","Kitasatospora atroaurantiaca"]]},{"id":"NCBITaxon:2013","l":"Nocardiopsis","na":14,"nb":1175,"a":[["alkaloids/k-252a-2.yaml","K-252a"],["alkaloids/k-252a.yaml","K-252a"],["alkaloids/methylpendolmycin.yaml","methylpendolmycin"],["alkaloids/pendolmycin.yaml","pendolmycin"],["amino_acids_and_peptides/tp-1161.yaml","TP-1161"],["polyketides/apoptolidin.yaml","apoptolidin"]],"b":[["NCBITaxon%3A2838703","Candidatus Nocardiopsis merdipullorum"],["NCBITaxon%3A220378","Nocardiopsis aegyptia"],["NCBITaxon%3A2831968","Nocardiopsis akebiae"],["NCBITaxon%3A1236269","Nocardiopsis akesuensis"],["NCBITaxon%3A53437","Nocardiopsis alba"],["NCBITaxon%3A1205910","Nocardiopsis alba ATCC BAA-2165"]]},{"id":"NCBITaxon:29488","l":"Photorhabdus luminescens","na":14,"nb":20,"a":[["alkaloids/photobactin.yaml","photobactin"],["alkaloids/pzn5.yaml","PZN5"],["amino_acids_and_peptides/gamexpeptide-c.yaml","gamexpeptide C"],["amino_acids_and_peptides/glidobactin.yaml","glidobactin"],["amino_acids_and_peptides/luminmycin-a.yaml","luminmycin A"],["polyketides/photopyrone-a.yaml","photopyrone A"]],"b":[["NCBITaxon%3A171438","Photorhabdus akhurstii"],["NCBITaxon%3A2934395","Photorhabdus akhurstii subsp. akhurstii"],["NCBITaxon%3A1004165","Photorhabdus caribbeanensis"],["NCBITaxon%3A1004166","Photorhabdus hainanensis"],["NCBITaxon%3A230088","Photorhabdus kayaii"],["NCBITaxon%3A768034","Photorhabdus kleinii"]]},{"id":"NCBITaxon:1654","l":"Actinomyces","na":13,"nb":460,"a":[["alkaloids/lynamicin-a.yaml","lynamicin A"],["alkaloids/lynamicin-d.yaml","lynamicin D"],["amino_acids_and_peptides/cephamycin-c.yaml","cephamycin C"],["amino_acids_and_peptides/glycinocin-a.yaml","glycinocin A"],["carbohydrates/cetoniacytone-a.yaml","cetoniacytone A"],["polyketides/4-hexadecanoyl-3-hydroxy-2-hydroxymethyl-2h-furan-5-one.yaml","4-hexadecanoyl-3-hydroxy-2-(hydroxymethyl)-2H-furan-5-one"]],"b":[["NCBITaxon%3A3050225","Actinomyces acetigenes"],["NCBITaxon%3A1852361","Actinomyces bouchesdurhonensis"],["NCBITaxon%3A1658","Actinomyces bovis"],["NCBITaxon%3A131109","Actinomyces bowdenii"],["NCBITaxon%3A2755559","Actinomyces capricornis"],["NCBITaxon%3A119495","Actinomyces catuli"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":12,"nb":557,"a":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]],"b":[["NCBITaxon%3A2073169","Chromobacterium alticapitis"],["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1454219","Pseudomonas aeruginosa 059A"],["NCBITaxon%3A1421538","Pseudomonas aeruginosa 0812"],["NCBITaxon%3A1421545","Pseudomonas aeruginosa 0822"],["NCBITaxon%3A1421531","Pseudomonas aeruginosa 0C2E"]]},{"id":"NCBITaxon:168694","l":"Salinispora","na":12,"nb":263,"a":[["amino_acids_and_peptides/salinosporamide-a.yaml","salinosporamide A"],["fatty_acids/salinipostin-a.yaml","Salinipostin A"],["fatty_acids/salinipostin-b.yaml","Salinipostin B"],["fatty_acids/salinipostin-c.yaml","Salinipostin C"],["fatty_acids/salinipostin-d.yaml","Salinipostin D"],["fatty_acids/salinipostin-e.yaml","Salinipostin E"]],"b":[["NCBITaxon%3A168697","Salinispora arenicola"],["NCBITaxon%3A391967","Salinispora arenicola ATCC BAA-917"],["NCBITaxon%3A1136425","Salinispora arenicola CNB458"],["NCBITaxon%3A1137250","Salinispora arenicola CNB527"],["NCBITaxon%3A1136427","Salinispora arenicola CNH646"],["NCBITaxon%3A1408327","Salinispora arenicola CNH713"]]},{"id":"NCBITaxon:1914","l":"Streptomyces lavendulae","na":12,"nb":17,"a":[["alkaloids/indigoidine.yaml","indigoidine"],["alkaloids/saframycin-a.yaml","saframycin A"],["alkaloids/saframycin-b.yaml","saframycin B"],["amino_acids_and_peptides/cycloserine.yaml","cycloserine"],["amino_acids_and_peptides/isocomplestatin.yaml","isocomplestatin"],["carbohydrates/showdomycin.yaml","showdomycin"]],"b":[["NCBITaxon%3A1914","Streptomyces lavendulae"],["NCBITaxon%3A1522107","Streptomyces lavendulae subsp. avirens"],["NCBITaxon%3A1522108","Streptomyces lavendulae subsp. brasilicus"],["NCBITaxon%3A68190","Streptomyces lavendulae subsp. colombiensis"],["NCBITaxon%3A516458","Streptomyces lavendulae subsp. fuscus"],["NCBITaxon%3A66421","Streptomyces lavendulae subsp. grasserius"]]},{"id":"NCBITaxon:1163","l":"Anabaena","na":11,"nb":988,"a":[["alkaloids/anatoxin-a.yaml","anatoxin-a"],["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"],["alkaloids/saxitoxin.yaml","saxitoxin"],["alkaloids/schizokinen.yaml","schizokinen"],["amino_acids_and_peptides/anabaenopeptin.yaml","anabaenopeptin"],["amino_acids_and_peptides/anacyclamide-a10.yaml","anacyclamide A10"]],"b":[["NCBITaxon%3A212361","Anabaena aequalis"],["NCBITaxon%3A732138","Anabaena aequalis ACCS 089"],["NCBITaxon%3A264684","Anabaena augstumalis"],["NCBITaxon%3A436026","Anabaena augstumalis A802"],["NCBITaxon%3A1217902","Anabaena augstumalis CA2a-1"],["NCBITaxon%3A1940708","Anabaena augstumalis I013-0007"]]},{"id":"NCBITaxon:1813","l":"Amycolatopsis","na":11,"nb":705,"a":[["amino_acids_and_peptides/amychelin-a.yaml","amychelin A"],["amino_acids_and_peptides/amychelin-b.yaml","amychelin B"],["amino_acids_and_peptides/felipeptin-a1.yaml","felipeptin A1"],["amino_acids_and_peptides/felipeptin-a2.yaml","felipeptin A2"],["polyketides/azicemicin-b.yaml","azicemicin B"],["polyketides/nocamycin-v.yaml","nocamycin V"]],"b":[["NCBITaxon%3A2596893","Amycolatopsis acidicola"],["NCBITaxon%3A2724524","Amycolatopsis acididurans"],["NCBITaxon%3A715473","Amycolatopsis acidiphila"],["NCBITaxon%3A2842453","Amycolatopsis aidingensis"],["NCBITaxon%3A76020","Amycolatopsis alba"],["NCBITaxon%3A1125972","Amycolatopsis alba DSM 44262"]]},{"id":"NCBITaxon:1886","l":"Streptomyces albidoflavus","na":54,"nb":11,"a":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/anthramycin.yaml","anthramycin"],["alkaloids/diazaquinomycin-f.yaml","diazaquinomycin F"],["alkaloids/diazaquinomycin-g.yaml","diazaquinomycin G"],["alkaloids/holomycin.yaml","holomycin"],["alkaloids/melanin.yaml","melanin"]],"b":[["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A53445","Streptomyces canescens"],["NCBITaxon%3A68184","Streptomyces champavatii"],["NCBITaxon%3A1902","Streptomyces coelicolor"],["NCBITaxon%3A53447","Streptomyces felleus"],["NCBITaxon%3A1911","Streptomyces griseus"]]},{"id":"NCBITaxon:1888","l":"Streptomyces albus","na":32,"nb":11,"a":[["alkaloids/berninamycin-j.yaml","berninamycin J"],["alkaloids/berninamycin-k.yaml","berninamycin K"],["alkaloids/indolmycin.yaml","indolmycin"],["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/streptonigrin.yaml","streptonigrin"],["alkaloids/sulfadixiamycin-a.yaml","sulfadixiamycin A"]],"b":[["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A1888","Streptomyces albus"],["NCBITaxon%3A1962","Streptomyces albus G"],["NCBITaxon%3A457425","Streptomyces albus J1074"],["NCBITaxon%3A67257","Streptomyces albus subsp. albus"],["NCBITaxon%3A1081613","Streptomyces albus subsp. albus DSM 41398"]]},{"id":"NCBITaxon:5507","l":"Fusarium oxysporum","na":11,"nb":27,"a":[["alkaloids/fusaric-acid.yaml","fusaric acid"],["polyketides/bikaverin.yaml","bikaverin"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"],["polyketides/fumonisin-c1.yaml","Fumonisin C1"],["polyketides/fumonisin-c2.yaml","Fumonisin C2"],["polyketides/fumonisin-c3.yaml","Fumonisin C3"]],"b":[["NCBITaxon%3A5507","Fusarium oxysporum"],["NCBITaxon%3A72712","Fusarium oxysporum f. sp. albedinis"],["NCBITaxon%3A396571","Fusarium oxysporum f. sp. cepae"],["NCBITaxon%3A62683","Fusarium oxysporum f. sp. ciceris"],["NCBITaxon%3A100902","Fusarium oxysporum f. sp. conglutinans"],["NCBITaxon%3A660025","Fusarium oxysporum f. sp. conglutinans Fo5176"]]},{"id":"NCBITaxon:162986","l":"Hapalosiphon welwitschii","na":11,"nb":17,"a":[["alkaloids/12-epi-fischerindole-i-isonitrile.yaml","12-epi-fischerindole I isonitrile"],["alkaloids/12-epi-fischerindole-u-isonitrile.yaml","12-epi-fischerindole U isonitrile"],["alkaloids/12-epi-hapalindole-c-isonitrile.yaml","12-epi-hapalindole C isonitrile"],["alkaloids/12-epi-hapalindole-e.yaml","12-epi-hapalindole E"],["alkaloids/3-epi-welwitindolinone-b-isothiocyanate.yaml","3-epi-welwitindolinone B isothiocyanate"],["alkaloids/welwitindolinone-a-isonitrile.yaml","welwitindolinone A isonitrile"]],"b":[["NCBITaxon%3A162986","Hapalosiphon welwitschii"],["NCBITaxon%3A1565563","Hapalosiphon welwitschii AUS-JR/BS/MS/NT-076"],["NCBITaxon%3A1917997","Hapalosiphon welwitschii BHU49"],["NCBITaxon%3A3024995","Hapalosiphon welwitschii *C2-JAYA"],["NCBITaxon%3A2837618","Hapalosiphon welwitschii EB01A2"],["NCBITaxon%3A2907140","Hapalosiphon welwitschii HKAR-18"]]},{"id":"NCBITaxon:158786","l":"Lyngbya majuscula","na":11,"nb":11,"a":[["alkaloids/lyngbyatoxin.yaml","lyngbyatoxin"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/malyngamide-c-acetate.yaml","malyngamide C acetate"],["carbohydrates/streptomycin.yaml","streptomycin"],["polyketides/curacin-a-2.yaml","curacin A"],["polyketides/curacin-a.yaml","curacin A"]],"b":[["NCBITaxon%3A1414809","Lyngbya cf. majuscula miya1-1mo9"],["NCBITaxon%3A158786","Lyngbya majuscula"],["NCBITaxon%3A1930583","Lyngbya majuscula BG01H01"],["NCBITaxon%3A1930584","Lyngbya majuscula BG03H03"],["NCBITaxon%3A2654332","Lyngbya majuscula HA5"],["NCBITaxon%3A276770","Lyngbya majuscula HECT"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":10,"nb":183,"a":[["alkaloids/labradorin-1.yaml","labradorin 1"],["alkaloids/labradorin-2.yaml","labradorin 2"],["alkaloids/secimide.yaml","secimide"],["amino_acids_and_peptides/phaseolotoxin.yaml","phaseolotoxin"],["amino_acids_and_peptides/syringolin-a.yaml","syringolin A"],["amino_acids_and_peptides/tabtoxin.yaml","tabtoxin"]],"b":[["NCBITaxon%3A86840","Pseudomonas cannabina"],["NCBITaxon%3A53409","Pseudomonas coronafaciens"],["NCBITaxon%3A29438","Pseudomonas savastanoi"],["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A1204471","Pseudomonas syringae BRIP34876"]]},{"id":"NCBITaxon:1178","l":"Nostoc commune","na":10,"nb":174,"a":[["amino_acids_and_peptides/microviridin-n3.yaml","microviridin N3"],["amino_acids_and_peptides/microviridin-n4.yaml","microviridin N4"],["amino_acids_and_peptides/microviridin-n6.yaml","microviridin N6"],["amino_acids_and_peptides/microviridin-n7.yaml","microviridin N7"],["amino_acids_and_peptides/microviridin-n8.yaml","microviridin N8"],["amino_acids_and_peptides/microviridin-n9.yaml","microviridin N9"]],"b":[["NCBITaxon%3A995089","Nostoc cf. commune 257-15"],["NCBITaxon%3A995090","Nostoc cf. commune 257-16"],["NCBITaxon%3A995091","Nostoc cf. commune 257-20"],["NCBITaxon%3A449210","Nostoc cf. commune KG-102"],["NCBITaxon%3A449209","Nostoc cf. commune KG-54"],["NCBITaxon%3A449208","Nostoc cf. commune SO-36"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa (strain ATCC 15692 / DSM 22644 / CIP 104116 / JCM 14847 / LMG 12228 / 1C / PRS 101 / PAO1)","na":10,"nb":23,"a":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]],"b":[["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1453991","Pseudomonas aeruginosa BK1"],["NCBITaxon%3A1236530","Pseudomonas aeruginosa JCM 14847"],["NCBITaxon%3A1131757","Pseudomonas aeruginosa MPAO1/P1"],["NCBITaxon%3A1131758","Pseudomonas aeruginosa MPAO1/P2"],["NCBITaxon%3A208964","Pseudomonas aeruginosa PAO1"]]},{"id":"NCBITaxon:56108","l":"Fischerella ambigua","na":13,"nb":10,"a":[["alkaloids/12-epi-hapalindole-j-isonitrile.yaml","12-epi-hapalindole J isonitrile"],["alkaloids/ambiguine-a-isonitrile.yaml","ambiguine A isonitrile"],["alkaloids/ambiguine-b-isonitrile.yaml","ambiguine B isonitrile"],["alkaloids/ambiguine-c-isonitrile.yaml","ambiguine C isonitrile"],["alkaloids/ambiguine-d-isonitrile.yaml","ambiguine D isonitrile"],["alkaloids/ambiguine-e-isonitrile.yaml","ambiguine E isonitrile"]],"b":[["NCBITaxon%3A56108","Fischerella ambigua"],["NCBITaxon%3A2904298","Fischerella ambigua AFC012"],["NCBITaxon%3A1678516","Fischerella ambigua BAT1"],["NCBITaxon%3A452092","Fischerella ambigua FS 18"],["NCBITaxon%3A1440167","Fischerella ambigua ISC 107"],["NCBITaxon%3A1084562","Fischerella ambigua ISC 4"]]},{"id":"NCBITaxon:628","l":"Xenorhabdus nematophila","na":13,"nb":10,"a":[["alkaloids/nematophin.yaml","nematophin"],["alkaloids/odilorhabdin-noso-95a.yaml","odilorhabdin NOSO-95A"],["alkaloids/odilorhabdin-noso-95b.yaml","odilorhabdin NOSO-95B"],["alkaloids/odilorhabdin-noso-95c.yaml","odilorhabdin NOSO-95C"],["amino_acids_and_peptides/rhabdopeptide-4.yaml","rhabdopeptide 4"],["amino_acids_and_peptides/xenortide-a.yaml","xenortide A"]],"b":[["NCBITaxon%3A40576","Xenorhabdus bovienii"],["NCBITaxon%3A628","Xenorhabdus nematophila"],["NCBITaxon%3A1437823","Xenorhabdus nematophila AN6/1"],["NCBITaxon%3A406817","Xenorhabdus nematophila ATCC 19061"],["NCBITaxon%3A1306162","Xenorhabdus nematophila F1"],["NCBITaxon%3A1437825","Xenorhabdus nematophila str. Anatoliense"]]},{"id":"NCBITaxon:28095","l":"Burkholderia gladioli","na":12,"nb":10,"a":[["alkaloids/gladiofungin-a.yaml","gladiofungin A"],["alkaloids/gladiofungin-b.yaml","gladiofungin B"],["alkaloids/toxoflavin.yaml","toxoflavin"],["amino_acids_and_peptides/arsinothricin.yaml","arsinothricin"],["amino_acids_and_peptides/bolagladin-a.yaml","bolagladin A"],["fatty_acids/bongkrekic-acid-2.yaml","bongkrekic acid"]],"b":[["NCBITaxon%3A28095","Burkholderia gladioli"],["NCBITaxon%3A1263856","Burkholderia gladioli 3848s-5"],["NCBITaxon%3A999541","Burkholderia gladioli BSR3"],["NCBITaxon%3A1218079","Burkholderia gladioli NBRC 13700"],["NCBITaxon%3A336070","Burkholderia gladioli pv. agaricicola"],["NCBITaxon%3A32010","Burkholderia gladioli pv. alliicola"]]},{"id":"NCBITaxon:1386","l":"Bacillus","na":9,"nb":33976,"a":[["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bogorol-a.yaml","bogorol A"],["amino_acids_and_peptides/koranimine.yaml","koranimine"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"],["amino_acids_and_peptides/rhizocticin-a.yaml","rhizocticin A"],["polyketides/difficidin.yaml","difficidin"]],"b":[["NCBITaxon%3A208551","alkaliphilic bacterium AF112"],["NCBITaxon%3A33934","Anoxybacillus flavithermus"],["NCBITaxon%3A1185649","Anoxybacillus flavithermus subsp. flavithermus"],["NCBITaxon%3A28030","Bacillus acidopullulyticus"],["NCBITaxon%3A33017","Bacillus acidovorans"],["NCBITaxon%3A203540","Bacillus aeolius"]]},{"id":"NCBITaxon:1817","l":"Nocardia","na":9,"nb":1573,"a":[["alkaloids/rebeccamycin.yaml","rebeccamycin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/nocathiacin-i.yaml","nocathiacin I"],["amino_acids_and_peptides/ristocetin-a.yaml","Ristocetin A"],["amino_acids_and_peptides/vancomycin.yaml","vancomycin"],["polyketides/macbecin-ii.yaml","macbecin II"]],"b":[["NCBITaxon%3A120957","Nocardia abscessus"],["NCBITaxon%3A1206723","Nocardia abscessus NBRC 100374"],["NCBITaxon%3A2802282","Nocardia acididurans"],["NCBITaxon%3A1224718","Nocardia aciditolerans"],["NCBITaxon%3A404580","Nocardia acidivorans"],["NCBITaxon%3A1210062","Nocardia acidivorans NBRC 108247"]]},{"id":"NCBITaxon:1988","l":"Actinomadura","na":9,"nb":562,"a":[["alkaloids/k-252a.yaml","K-252a"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["carbohydrates/2-chloropentostatin.yaml","2'-chloropentostatin"],["polyketides/actinospirol-a.yaml","actinospirol A"],["polyketides/actinospirol-b.yaml","actinospirol B"],["polyketides/maduralactomycin-a.yaml","maduralactomycin A"]],"b":[["NCBITaxon%3A1819600","Actinomadura adrarensis"],["NCBITaxon%3A406431","Actinomadura alba"],["NCBITaxon%3A1679523","Actinomadura algeriensis"],["NCBITaxon%3A1735446","Actinomadura alkaliterrae"],["NCBITaxon%3A755139","Actinomadura apis"],["NCBITaxon%3A1990","Actinomadura atramentaria"]]},{"id":"NCBITaxon:1160","l":"Planktothrix agardhii","na":9,"nb":289,"a":[["amino_acids_and_peptides/aeruginoside-126a.yaml","aeruginoside 126A"],["amino_acids_and_peptides/aeruginoside-126b.yaml","aeruginoside 126B"],["amino_acids_and_peptides/anabaenopeptin-908.yaml","anabaenopeptin 908"],["amino_acids_and_peptides/anabaenopeptin-915.yaml","anabaenopeptin 915"],["amino_acids_and_peptides/microcystin.yaml","microcystin"],["amino_acids_and_peptides/prenylagaramide-b.yaml","prenylagaramide B"]],"b":[["NCBITaxon%3A1160","Planktothrix agardhii"],["NCBITaxon%3A358557","Planktothrix agardhii 0ES34S1"],["NCBITaxon%3A2884158","Planktothrix agardhii 1025"],["NCBITaxon%3A2884159","Planktothrix agardhii 1026"],["NCBITaxon%3A2884160","Planktothrix agardhii 1027"],["NCBITaxon%3A2884161","Planktothrix agardhii 1029"]]},{"id":"NCBITaxon:2071","l":"Saccharothrix","na":9,"nb":151,"a":[["amino_acids_and_peptides/saccharochelin-a.yaml","saccharochelin A"],["amino_acids_and_peptides/saccharochelin-b.yaml","saccharochelin B"],["amino_acids_and_peptides/saccharochelin-c.yaml","saccharochelin C"],["amino_acids_and_peptides/saccharochelin-d.yaml","saccharochelin D"],["amino_acids_and_peptides/saccharochelin-e.yaml","saccharochelin E"],["amino_acids_and_peptides/saccharochelin-f.yaml","saccharochelin F"]],"b":[["NCBITaxon%3A173560","Saccharothrix algeriensis"],["NCBITaxon%3A2072","Saccharothrix australiensis"],["NCBITaxon%3A3231910","Saccharothrix camelliae"],["NCBITaxon%3A1280637","Saccharothrix carnea"],["NCBITaxon%3A33919","Saccharothrix coeruleofusca"],["NCBITaxon%3A2593674","Saccharothrix deserti"]]},{"id":"NCBITaxon:5506","l":"Fusarium","na":9,"nb":143,"a":[["alkaloids/lucilactaene.yaml","lucilactaene"],["alkaloids/ng-391.yaml","NG-391"],["polyketides/fusarubin.yaml","fusarubin"],["unclassified/ascochlorin.yaml","ascochlorin"],["unclassified/fusaristatin-a.yaml","fusaristatin A"],["unclassified/roquefortine-d.yaml","roquefortine D"]],"b":[["NCBITaxon%3A5515","Fusarium acuminatum"],["NCBITaxon%3A1803897","Fusarium agapanthi"],["NCBITaxon%3A1237068","Fusarium albosuccineum"],["NCBITaxon%3A2050978","Fusarium algeriense"],["NCBITaxon%3A131363","Fusarium ambrosium"],["NCBITaxon%3A183586","Fusarium anguioides"]]},{"id":"NCBITaxon:1155739","l":"Moorena producens","na":9,"nb":40,"a":[["amino_acids_and_peptides/cryptomaldamide.yaml","cryptomaldamide"],["amino_acids_and_peptides/vatiamide-e.yaml","vatiamide E"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"],["polyketides/doxorubicin.yaml","doxorubicin"],["polyketides/vatiamide-a.yaml","vatiamide A"],["polyketides/vatiamide-b.yaml","vatiamide B"]],"b":[["NCBITaxon%3A1155739","Moorena producens"],["NCBITaxon%3A276768","Moorena producens 19L"],["NCBITaxon%3A489825","Moorena producens 3L"],["NCBITaxon%3A2546228","Moorena producens ASI16Jul14-2"],["NCBITaxon%3A1288314","Moorena producens BCBC11-14"],["NCBITaxon%3A1288315","Moorena producens FK12-19"]]},{"id":"NCBITaxon:57975","l":"Burkholderia thailandensis","na":9,"nb":17,"a":[["fatty_acids/fr901464.yaml","FR901464"],["polyketides/malleicyprol.yaml","malleicyprol"],["polyketides/thailandamide-lactone.yaml","thailandamide lactone"],["polyketides/thailandamide.yaml","thailandamide"],["polyketides/thailanstatin-a.yaml","thailanstatin A"],["shikimates_and_phenylpropanoids/bactobolin.yaml","bactobolin"]],"b":[["NCBITaxon%3A57975","Burkholderia thailandensis"],["NCBITaxon%3A1249660","Burkholderia thailandensis 2002721643"],["NCBITaxon%3A1241582","Burkholderia thailandensis 2002721723"],["NCBITaxon%3A1249664","Burkholderia thailandensis 34"],["NCBITaxon%3A441164","Burkholderia thailandensis Bt4"],["NCBITaxon%3A1436064","Burkholderia thailandensis E0444"]]},{"id":"NCBITaxon:1854","l":"Frankia","na":8,"nb":584,"a":[["amino_acids_and_peptides/frankobactin-a1.yaml","frankobactin A1"],["amino_acids_and_peptides/frankobactin-a3.yaml","frankobactin A3"],["amino_acids_and_peptides/frankobactin-b1.yaml","frankobactin B1"],["amino_acids_and_peptides/frankobactin-b3.yaml","frankobactin B3"],["amino_acids_and_peptides/frankobactin-c1.yaml","frankobactin C1"],["polyketides/frankiamicin.yaml","frankiamicin"]],"b":[["NCBITaxon%3A2699483","Candidatus Frankia alpina"],["NCBITaxon%3A2714109","Candidatus Frankia meridionalis"],["NCBITaxon%3A2060052","Candidatus Frankia nodulisporulans"],["NCBITaxon%3A1859","Frankia alni"],["NCBITaxon%3A326424","Frankia alni ACN14a"],["NCBITaxon%3A1836972","Frankia canadensis"]]},{"id":"NCBITaxon:351187","l":"Salinispora pacifica","na":8,"nb":40,"a":[["alkaloids/lymphostin.yaml","lymphostin"],["polyketides/lomaiviticin-a.yaml","lomaiviticin A"],["polyketides/lomaiviticin-c.yaml","lomaiviticin C"],["polyketides/lomaiviticin-d-2.yaml","lomaiviticin D"],["polyketides/lomaiviticin-e.yaml","lomaiviticin E"],["polyketides/pacificanone-a.yaml","pacificanone A"]],"b":[["NCBITaxon%3A351187","Salinispora pacifica"],["NCBITaxon%3A1408347","Salinispora pacifica CNH732"],["NCBITaxon%3A1169193","Salinispora pacifica CNQ768"],["NCBITaxon%3A1137260","Salinispora pacifica CNR114"],["NCBITaxon%3A1408348","Salinispora pacifica CNR510"],["NCBITaxon%3A1137259","Salinispora pacifica CNR551"]]},{"id":"NCBITaxon:492670","l":"Bacillus velezensis","na":8,"nb":18,"a":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["polyketides/bacillaene.yaml","bacillaene"],["polyketides/difficidin.yaml","difficidin"],["polyketides/macrolactin-h.yaml","macrolactin H"],["unclassified/corynebactin.yaml","corynebactin"]],"b":[["NCBITaxon%3A492670","Bacillus velezensis"],["NCBITaxon%3A2517241","Bacillus velezensis A3"],["NCBITaxon%3A1225788","Bacillus velezensis AS43.3"],["NCBITaxon%3A1239834","Bacillus velezensis At1"],["NCBITaxon%3A1114958","Bacillus velezensis CAU B946"],["NCBITaxon%3A2853458","Bacillus velezensis EYE_388"]]},{"id":"NCBITaxon:43356","l":"Kutzneria","na":8,"nb":16,"a":[["polyketides/epemicin-a.yaml","epemicin A"],["polyketides/epemicin-b.yaml","epemicin B"],["unclassified/kutzneride-1.yaml","Kutzneride 1"],["unclassified/kutzneride-2.yaml","Kutzneride 2"],["unclassified/kutzneride-3.yaml","Kutzneride 3"],["unclassified/kutzneride-4.yaml","Kutzneride 4"]],"b":[["NCBITaxon%3A1045776","Kutzneria buriramensis"],["NCBITaxon%3A1483604","Kutzneria chonburiensis"],["NCBITaxon%3A103725","Kutzneria kofuensis"],["NCBITaxon%3A1930788","Kutzneria sp."],["NCBITaxon%3A250526","Kutzneria sp. 306G04"],["NCBITaxon%3A345341","Kutzneria sp. 744"]]},{"id":"NCBITaxon:58346","l":"Streptomyces platensis","na":14,"nb":8,"a":[["alkaloids/13-epi-dorrigocin-a.yaml","13-epi-dorrigocin A"],["alkaloids/17-hydroxy-8-desmethoxy-isomigrastatin.yaml","17-hydroxy-8-desmethoxy-isomigrastatin"],["alkaloids/dorrigocin-a.yaml","dorrigocin A"],["alkaloids/dorrigocin-b.yaml","dorrigocin B"],["alkaloids/iso-migrastatin.yaml","iso-migrastatin"],["alkaloids/staurosporine.yaml","staurosporine"]],"b":[["NCBITaxon%3A249580","Streptomyces glebosus"],["NCBITaxon%3A249582","Streptomyces libani subsp. rufus"],["NCBITaxon%3A1920","Streptomyces nigrescens"],["NCBITaxon%3A58346","Streptomyces platensis"],["NCBITaxon%3A1649334","Streptomyces platensis subsp. clarensis"],["NCBITaxon%3A285579","Streptomyces platensis subsp. malvinus"]]},{"id":"NCBITaxon:82996","l":"Serratia plymuthica","na":8,"nb":8,"a":[["alkaloids/serratiochelin-a.yaml","serratiochelin A"],["alkaloids/serratiochelin-b.yaml","serratiochelin B"],["alkaloids/serratiochelin-c.yaml","serratiochelin C"],["carbohydrates/kanamycin-a.yaml","kanamycin A"],["carbohydrates/tobramycin.yaml","tobramycin"],["fatty_acids/zeamine-i.yaml","zeamine I"]],"b":[["NCBITaxon%3A82996","Serratia plymuthica"],["NCBITaxon%3A682634","Serratia plymuthica 4Rx13"],["NCBITaxon%3A1206776","Serratia plymuthica A30"],["NCBITaxon%3A768492","Serratia plymuthica AS9"],["NCBITaxon%3A1218095","Serratia plymuthica NBRC 102599"],["NCBITaxon%3A1006598","Serratia plymuthica RVH1"]]},{"id":"NCBITaxon:272131","l":"Nostoc punctiforme","na":7,"nb":94,"a":[["amino_acids_and_peptides/microviridin-n3.yaml","microviridin N3"],["amino_acids_and_peptides/microviridin-n4.yaml","microviridin N4"],["amino_acids_and_peptides/microviridin-n6.yaml","microviridin N6"],["amino_acids_and_peptides/microviridin-n7.yaml","microviridin N7"],["amino_acids_and_peptides/microviridin-n8.yaml","microviridin N8"],["amino_acids_and_peptides/microviridin-n9.yaml","microviridin N9"]],"b":[["NCBITaxon%3A515295","Nostoc cf. punctiforme Bashkir"],["NCBITaxon%3A3420387","Nostoc cf. punctiforme ISB222"],["NCBITaxon%3A272131","Nostoc punctiforme"],["NCBITaxon%3A3144258","Nostoc punctiforme 2789"],["NCBITaxon%3A1050188","Nostoc punctiforme ACCS 074"],["NCBITaxon%3A1923819","Nostoc punctiforme ACSSI 037"]]},{"id":"NCBITaxon:945780","l":"Synechocystis salina","na":7,"nb":19,"a":[["polyketides/bartoloside-e.yaml","bartoloside E"],["polyketides/bartoloside-f.yaml","bartoloside F"],["polyketides/bartoloside-g.yaml","bartoloside G"],["polyketides/bartoloside-h.yaml","bartoloside H"],["polyketides/bartoloside-i.yaml","bartoloside I"],["polyketides/bartoloside-j.yaml","bartoloside J"]],"b":[["NCBITaxon%3A945780","Synechocystis salina"],["NCBITaxon%3A2962648","Synechocystis salina BO22"],["NCBITaxon%3A1858735","Synechocystis salina CCALA 192"],["NCBITaxon%3A1472759","Synechocystis salina CCNP 1104"],["NCBITaxon%3A1146998","Synechocystis salina HelwanI"],["NCBITaxon%3A1828732","Synechocystis salina LEGE 00027"]]},{"id":"NCBITaxon:1890","l":"Streptomyces antibioticus","na":14,"nb":7,"a":[["alkaloids/esmeraldin.yaml","esmeraldin"],["alkaloids/pentostatin.yaml","pentostatin"],["amino_acids_and_peptides/2-2-hydroxyethyl-clavam.yaml","(-)-2-(2-hydroxyethyl)clavam"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["amino_acids_and_peptides/scabichelin.yaml","scabichelin"],["amino_acids_and_peptides/valclavam.yaml","valclavam"]],"b":[["NCBITaxon%3A67255","Streptomyces achromogenes"],["NCBITaxon%3A67256","Streptomyces achromogenes subsp. achromogenes"],["NCBITaxon%3A1890","Streptomyces antibioticus"],["NCBITaxon%3A1306178","Streptomyces antibioticus JCM 4620"],["NCBITaxon%3A2713664","Streptomyces antibioticus subsp. yamensis"],["NCBITaxon%3A67315","Streptomyces lavenduligriseus"]]},{"id":"NCBITaxon:67263","l":"Streptomyces griseus subsp. griseus","na":7,"nb":14,"a":[["alkaloids/indolmycin.yaml","indolmycin"],["polyketides/chromomycin-a3.yaml","chromomycin A3"],["polyketides/dinactin.yaml","dinactin"],["polyketides/monactin.yaml","monactin"],["polyketides/nonactin.yaml","nonactin"],["polyketides/tetranactin.yaml","tetranactin"]],"b":[["NCBITaxon%3A132249","Nocardia veterana"],["NCBITaxon%3A1884","Streptomyces acrimycini"],["NCBITaxon%3A67274","Streptomyces argenteolus"],["NCBITaxon%3A66872","Streptomyces baarnensis"],["NCBITaxon%3A1896","Streptomyces bikiniensis"],["NCBITaxon%3A90079","Streptomyces caviscabies"]]},{"id":"NCBITaxon:1464","l":"Paenibacillus larvae","na":8,"nb":7,"a":[["alkaloids/paenilamicin-a2.yaml","paenilamicin A2"],["alkaloids/paenilamicin-b1.yaml","paenilamicin B1"],["alkaloids/paenilamicin-b2.yaml","paenilamicin B2"],["alkaloids/paenilamicin.yaml","paenilamicin"],["amino_acids_and_peptides/paenilarvin-a.yaml","paenilarvin A"],["amino_acids_and_peptides/paenilarvin-b.yaml","paenilarvin B"]],"b":[["NCBITaxon%3A1464","Paenibacillus larvae"],["NCBITaxon%3A147375","Paenibacillus larvae subsp. larvae"],["NCBITaxon%3A741161","Paenibacillus larvae subsp. larvae B-3650"],["NCBITaxon%3A392917","Paenibacillus larvae subsp. larvae BRL-230010"],["NCBITaxon%3A697284","Paenibacillus larvae subsp. larvae DSM 25430"],["NCBITaxon%3A697286","Paenibacillus larvae subsp. larvae DSM 25719"]]},{"id":"NCBITaxon:1908","l":"Streptomyces globisporus","na":8,"nb":7,"a":[["polyketides/c-1027-chromophore.yaml","C-1027 chromophore"],["polyketides/c-1027.yaml","C-1027"],["polyketides/landomycin-a.yaml","landomycin A"],["polyketides/nonactin.yaml","nonactin"],["polyketides/prejadomycin.yaml","prejadomycin"],["polyketides/tetranactin.yaml","tetranactin"]],"b":[["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A332582","Streptomyces flavofuscus"],["NCBITaxon%3A1908","Streptomyces globisporus"],["NCBITaxon%3A1172567","Streptomyces globisporus C-1027"],["NCBITaxon%3A66858","Streptomyces globisporus subsp. globisporus"],["NCBITaxon%3A1522106","Streptomyces globisporus subsp. griseus"]]},{"id":"NCBITaxon:32008","l":"Burkholderia","na":6,"nb":7299,"a":[["polyketides/necroxime-a.yaml","necroxime A"],["polyketides/necroxime-c.yaml","necroxime C"],["polyketides/necroxime-d.yaml","necroxime D"],["polyketides/thailanstatin-a.yaml","thailanstatin A"],["unclassified/necroxime-b.yaml","necroxime B"],["unclassified/spliceostatin.yaml","spliceostatin"]],"b":[["NCBITaxon%3A2015348","Burkholderia aenigmatica"],["NCBITaxon%3A2683677","Burkholderia alba"],["NCBITaxon%3A152480","Burkholderia ambifaria"],["NCBITaxon%3A339670","Burkholderia ambifaria AMMD"],["NCBITaxon%3A396596","Burkholderia ambifaria IOP40-10"],["NCBITaxon%3A398577","Burkholderia ambifaria MC40-6"]]},{"id":"NCBITaxon:1269","l":"Micrococcus","na":6,"nb":1469,"a":[["alkaloids/limazepine-a.yaml","limazepine A"],["alkaloids/limazepine-c.yaml","limazepine C"],["alkaloids/limazepine-d.yaml","limazepine D"],["alkaloids/limazepine-e.yaml","limazepine E"],["alkaloids/limazepine-f.yaml","limazepine F"],["terpenoids/mk-8.yaml","MK-8"]],"b":[["NCBITaxon%3A1871615","Dermacoccus sp."],["NCBITaxon%3A1275","Kocuria rosea"],["NCBITaxon%3A29377","Micrococcus aerogenes"],["NCBITaxon%3A306270","Micrococcus alkanovora"],["NCBITaxon%3A1391911","Micrococcus aloeverae"],["NCBITaxon%3A86171","Micrococcus antarcticus"]]},{"id":"NCBITaxon:5543","l":"Trichoderma","na":6,"nb":169,"a":[["polyketides/bisorbicillinol.yaml","bisorbicillinol"],["polyketides/oxosorbicillinol.yaml","oxosorbicillinol"],["polyketides/sorbicillin.yaml","sorbicillin"],["polyketides/sorbicillinol.yaml","sorbicillinol"],["unclassified/5-epimacrophorin-b.yaml","5'-epimacrophorin B"],["unclassified/gliovirin.yaml","gliovirin"]],"b":[["NCBITaxon%3A1195187","Trichoderma aethiopicum"],["NCBITaxon%3A1571655","Trichoderma afarasin"],["NCBITaxon%3A1567482","Trichoderma afroharzianum"],["NCBITaxon%3A173216","Trichoderma aggressivum"],["NCBITaxon%3A1303768","Trichoderma albofulvum"],["NCBITaxon%3A1490975","Trichoderma alcalifuscescens"]]},{"id":"NCBITaxon:56","l":"Sorangium cellulosum","na":25,"nb":6,"a":[["amino_acids_and_peptides/microsclerodermin-m.yaml","microsclerodermin M"],["polyketides/ambruticin.yaml","ambruticin"],["polyketides/chivosazol.yaml","chivosazol"],["polyketides/chlorotonil-a.yaml","chlorotonil A"],["polyketides/disorazol-a.yaml","disorazol A"],["polyketides/etnangien.yaml","etnangien"]],"b":[["NCBITaxon%3A2093422","Sorangium ambruticinum"],["NCBITaxon%3A2093423","Sorangium bulgaricum"],["NCBITaxon%3A56","Sorangium cellulosum"],["NCBITaxon%3A1254432","Sorangium cellulosum So0157-2"],["NCBITaxon%3A448385","Sorangium cellulosum So ce56"],["NCBITaxon%3A2093377","Sorangium sp."]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":14,"nb":6,"a":[["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/framycetin.yaml","framycetin"],["carbohydrates/neomycin-c.yaml","neomycin C"],["carbohydrates/paromomycin.yaml","paromomycin"]],"b":[["NCBITaxon%3A1906","Streptomyces fradiae"],["NCBITaxon%3A1319510","Streptomyces fradiae ATCC 10745 = DSM 40063"],["NCBITaxon%3A285449","Streptomyces fradiae subsp. acinicolor"],["NCBITaxon%3A2871172","Streptomyces fradiae V-1-3"],["NCBITaxon%3A66894","Streptomyces griseobrunneus"],["NCBITaxon%3A1909","Streptomyces griseolus"]]},{"id":"NCBITaxon:40576","l":"Xenorhabdus bovienii","na":6,"nb":13,"a":[["alkaloids/3-2-acetoxy-3-oxo-4-methylhexyl-indole.yaml","3-(2'-acetoxy-3'-oxo-4'-methylhexyl)-indole"],["alkaloids/3-2-acetoxy-3-oxo-4-methylpentyl-indole.yaml","3-(2'-acetoxy-3'-oxo-4'-methylpentyl)-indole"],["alkaloids/3-2-hydroxy-3-oxo-4-methylhexyl-indole.yaml","3-(2'-hydroxy-3'-oxo-4'-methylhexyl)-indole"],["alkaloids/3-2-hydroxy-3-oxo-4-methylpentyl-indole.yaml","3-(2'-hydroxy-3'-oxo-4'-methylpentyl)-indole"],["amino_acids_and_peptides/leupeptin-a.yaml","leupeptin A"],["fatty_acids/bovienimide-a.yaml","bovienimide A"]],"b":[["NCBITaxon%3A40576","Xenorhabdus bovienii"],["NCBITaxon%3A406818","Xenorhabdus bovienii SS-2004"],["NCBITaxon%3A1397852","Xenorhabdus bovienii str. feltiae Florida"],["NCBITaxon%3A1397851","Xenorhabdus bovienii str. feltiae France"],["NCBITaxon%3A1398200","Xenorhabdus bovienii str. feltiae Moldova"],["NCBITaxon%3A1379677","Xenorhabdus bovienii str. Intermedium"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":11,"nb":6,"a":[["amino_acids_and_peptides/ferrichrome.yaml","ferrichrome"],["polyketides/1-2-3-5-10-tetrahydroxy-7-methoxy-4-oxo-1-2-3-4-tetrahydroanthracen-2-yl-pentane.yaml","1-(2,3,5,10-tetrahydroxy-7-methoxy-4-oxo-1,2,3,4-tetrahydroanthracen-2-yl)pentane-2,4-dione"],["polyketides/azanigerone-a.yaml","azanigerone A"],["polyketides/campyrone-b.yaml","campyrone B"],["polyketides/desmethyl-tan-1612.yaml","desmethyl TAN-1612"],["polyketides/fumonisin-b2.yaml","fumonisin B2"]],"b":[["NCBITaxon%3A547018","Zhihengliuella alba"],["NCBITaxon%3A5061","Aspergillus niger"],["NCBITaxon%3A380704","Aspergillus niger ATCC 1015"],["NCBITaxon%3A1353008","Aspergillus niger ATCC 13496"],["NCBITaxon%3A1450533","Aspergillus niger CBS 101883"],["NCBITaxon%3A425011","Aspergillus niger CBS 513.88"]]},{"id":"NCBITaxon:1930","l":"Streptomyces scabiei","na":6,"nb":9,"a":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"],["amino_acids_and_peptides/thaxtomin-c.yaml","thaxtomin C"],["polyketides/oronofacic-acid.yaml","oronofacic acid"],["unclassified/n-coronafacoyl-l-isoleucine.yaml","N-coronafacoyl-L-isoleucine"],["unclassified/thaxtomin-a.yaml","thaxtomin A"],["unclassified/thaxtomin-b.yaml","thaxtomin B"]],"b":[["NCBITaxon%3A2993540","Streptomyces griseiscabiei"],["NCBITaxon%3A1930","Streptomyces scabiei"],["NCBITaxon%3A680198","Streptomyces scabiei 87.22"],["NCBITaxon%3A175280","Streptomyces scabiei subsp. chosun"],["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A74595","Streptomyces sp. ATCC 10246"]]},{"id":"NCBITaxon:1927","l":"Streptomyces rimosus","na":6,"nb":8,"a":[["amino_acids_and_peptides/cyclothiazomycin-c.yaml","cyclothiazomycin C"],["carbohydrates/framycetin.yaml","framycetin"],["carbohydrates/sangivamycin.yaml","sangivamycin"],["carbohydrates/toyocamycin.yaml","toyocamycin"],["polyketides/oxytetracycline.yaml","oxytetracycline"],["polyketides/rimocidin.yaml","rimocidin"]],"b":[["NCBITaxon%3A1906","Streptomyces fradiae"],["NCBITaxon%3A92743","Streptomyces paromomycinus"],["NCBITaxon%3A1927","Streptomyces rimosus"],["NCBITaxon%3A1421017","Streptomyces rimosus R6-500"],["NCBITaxon%3A1464079","Streptomyces rimosus subsp. pseudoverticillatus"],["NCBITaxon%3A132474","Streptomyces rimosus subsp. rimosus"]]},{"id":"NCBITaxon:1971","l":"Streptomyces noursei","na":8,"nb":6,"a":[["amino_acids_and_peptides/curacomycin.yaml","curacomycin"],["amino_acids_and_peptides/dechlorocuracomycin.yaml","dechlorocuracomycin"],["amino_acids_and_peptides/deimino-antipain.yaml","deimino-antipain"],["carbohydrates/streptothricin-f.yaml","streptothricin F"],["polyketides/nystatin-a1.yaml","nystatin A1"],["polyketides/nystatin.yaml","nystatin"]],"b":[["NCBITaxon%3A1971","Streptomyces noursei"],["NCBITaxon%3A316284","Streptomyces noursei ATCC 11455"],["NCBITaxon%3A1316445","Streptomyces noursei CCRC 11814"],["NCBITaxon%3A1395573","Streptomyces noursei KC-01"],["NCBITaxon%3A1395572","Streptomyces noursei PD-1"],["NCBITaxon%3A1434306","Streptomyces noursei ZPM"]]},{"id":"NCBITaxon:68280","l":"Streptomyces violaceusniger","na":7,"nb":6,"a":[["fatty_acids/desulfoclethramycin.yaml","desulfoclethramycin"],["polyketides/be-24566b.yaml","BE-24566B"],["polyketides/elaiophylin.yaml","elaiophylin"],["polyketides/meridamycin-2.yaml","meridamycin"],["polyketides/nigericin.yaml","nigericin"],["terpenoids/2-methylisoborneol.yaml","2-methylisoborneol"]],"b":[["NCBITaxon%3A1912","Streptomyces hygroscopicus"],["NCBITaxon%3A68042","Streptomyces hygroscopicus subsp. hygroscopicus"],["NCBITaxon%3A33900","Streptomyces murinus"],["NCBITaxon%3A114686","Streptomyces phaeoluteigriseus"],["NCBITaxon%3A68280","Streptomyces violaceusniger"],["NCBITaxon%3A653045","Streptomyces violaceusniger Tu 4113"]]},{"id":"NCBITaxon:37326","l":"Nocardia brasiliensis","na":6,"nb":6,"a":[["polyketides/brasilinolide-a.yaml","brasilinolide A"],["polyketides/brasilinolide-b.yaml","brasilinolide B"],["polyketides/brasilinolide-c.yaml","brasilinolide C"],["polyketides/brasiliquinone-a.yaml","brasiliquinone A"],["polyketides/brasiliquinone-b.yaml","brasiliquinone B"],["terpenoids/brasilicardin-a.yaml","brasilicardin A"]],"b":[["NCBITaxon%3A1824","Nocardia asteroides"],["NCBITaxon%3A37326","Nocardia brasiliensis"],["NCBITaxon%3A1133849","Nocardia brasiliensis ATCC 700358"],["NCBITaxon%3A1406859","Nocardia brasiliensis IFM 10847"],["NCBITaxon%3A1206724","Nocardia brasiliensis NBRC 14402"],["NCBITaxon%3A37328","Nocardia carnea"]]},{"id":"NCBITaxon:662","l":"Vibrio","na":5,"nb":15041,"a":[["alkaloids/anguibactin.yaml","anguibactin"],["amino_acids_and_peptides/divanchrobactin.yaml","divanchrobactin"],["amino_acids_and_peptides/trivanchrobactin.yaml","trivanchrobactin"],["amino_acids_and_peptides/vanchrobactin.yaml","vanchrobactin"],["polyketides/amphi-enterobactin-1.yaml","Amphi-enterobactin 1"]],"b":[["NCBITaxon%3A246572","marine bacterium 13732"],["NCBITaxon%3A194693","marine bacterium SIMO IS-S75-245"],["NCBITaxon%3A127962","uncultured Vibrio kps60rc"],["NCBITaxon%3A114054","uncultured Vibrio sp."],["NCBITaxon%3A89371","uncultured Vibrio sp. 'Artemia'"],["NCBITaxon%3A141882","uncultured Vibrio sp. HD-2000/12"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":5,"nb":4740,"a":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"],["unclassified/leuvalin.yaml","leuvalin"],["unclassified/phevalin.yaml","phevalin"],["unclassified/tyrvalin.yaml","tyrvalin"]],"b":[["NCBITaxon%3A475088","Methanosphaerula palustris"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1389955","Escherichia coli ATCC 35150"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A574","Klebsiella pneumoniae subsp. ozaenae"],["NCBITaxon%3A1218098","Klebsiella pneumoniae subsp. ozaenae NBRC 105683"]]},{"id":"NCBITaxon:1175","l":"Aphanizomenon","na":5,"nb":363,"a":[["alkaloids/7-epi-cylindrospermopsin.yaml","7-epi-cylindrospermopsin"],["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"],["alkaloids/neosaxitoxin.yaml","neosaxitoxin"],["alkaloids/saxitoxin.yaml","saxitoxin"],["fatty_acids/1-heptadecene.yaml","1-heptadecene"]],"b":[["NCBITaxon%3A173580","Aphanizomenon baltica"],["NCBITaxon%3A136083","Aphanizomenon cf. flos-aquae PMC9501"],["NCBITaxon%3A136082","Aphanizomenon cf. gracile 271"],["NCBITaxon%3A1176","Aphanizomenon flos-aquae"],["NCBITaxon%3A358550","Aphanizomenon flos-aquae 0HA35S1"],["NCBITaxon%3A489144","Aphanizomenon flos-aquae 1042"]]},{"id":"NCBITaxon:1176","l":"Aphanizomenon flos-aquae","na":5,"nb":141,"a":[["alkaloids/anatoxin-a.yaml","anatoxin-a"],["alkaloids/guanitoxin.yaml","guanitoxin"],["alkaloids/neosaxitoxin.yaml","neosaxitoxin"],["alkaloids/saxitoxin.yaml","saxitoxin"],["amino_acids_and_peptides/microcystin-lr.yaml","microcystin-LR"]],"b":[["NCBITaxon%3A136083","Aphanizomenon cf. flos-aquae PMC9501"],["NCBITaxon%3A1176","Aphanizomenon flos-aquae"],["NCBITaxon%3A358550","Aphanizomenon flos-aquae 0HA35S1"],["NCBITaxon%3A489144","Aphanizomenon flos-aquae 1042"],["NCBITaxon%3A645888","Aphanizomenon flos-aquae 1473"],["NCBITaxon%3A645889","Aphanizomenon flos-aquae 1474"]]},{"id":"NCBITaxon:168697","l":"Salinispora arenicola","na":5,"nb":66,"a":[["amino_acids_and_peptides/cyclomarin-d.yaml","cyclomarin D"],["polyketides/arenimycin-a.yaml","arenimycin A"],["polyketides/rifamycin-sv.yaml","rifamycin SV"],["unclassified/emericellamide-a.yaml","emericellamide A"],["unclassified/emericellamide-b.yaml","emericellamide B"]],"b":[["NCBITaxon%3A168697","Salinispora arenicola"],["NCBITaxon%3A391967","Salinispora arenicola ATCC BAA-917"],["NCBITaxon%3A1136425","Salinispora arenicola CNB458"],["NCBITaxon%3A1137250","Salinispora arenicola CNB527"],["NCBITaxon%3A1136427","Salinispora arenicola CNH646"],["NCBITaxon%3A1408327","Salinispora arenicola CNH713"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":5,"nb":53,"a":[["alkaloids/promysalin.yaml","promysalin"],["polyketides/pseudopyronine-a.yaml","pseudopyronine A"],["polyketides/pseudopyronine-b.yaml","pseudopyronine B"],["unclassified/putisolvin-iii.yaml","putisolvin III"],["unclassified/putisolvin-v.yaml","putisolvin V"]],"b":[["NCBITaxon%3A47920","Acidovorax delafieldii"],["NCBITaxon%3A301","Ectopseudomonas oleovorans"],["NCBITaxon%3A29581","Janthinobacterium lividum"],["NCBITaxon%3A294","Pseudomonas fluorescens"],["NCBITaxon%3A77298","Pseudomonas jessenii"],["NCBITaxon%3A1968891","Pseudomonas jessenii subsp. pseudoputida"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":32,"a":[["alkaloids/prodigiosin-2.yaml","prodigiosin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/serratiochelin-a.yaml","serratiochelin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["polyketides/oocydin-a.yaml","oocydin A"]],"b":[["NCBITaxon%3A2703793","Serratia bockelmannii"],["NCBITaxon%3A615","Serratia marcescens"],["NCBITaxon%3A1257036","Serratia marcescens 12"],["NCBITaxon%3A1255611","Serratia marcescens 448"],["NCBITaxon%3A1333586","Serratia marcescens AB42556419-isolate1"],["NCBITaxon%3A1400186","Serratia marcescens BIDMC 44"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":31,"nb":5,"a":[["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["alkaloids/myxofacycline-e.yaml","myxofacycline E"],["alkaloids/myxofacycline-f.yaml","myxofacycline F"],["alkaloids/myxofacycline-g.yaml","myxofacycline G"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"]],"b":[["NCBITaxon%3A34","Myxococcus xanthus"],["NCBITaxon%3A246197","Myxococcus xanthus DK 1622"],["NCBITaxon%3A1198133","Myxococcus xanthus DZ2"],["NCBITaxon%3A1198538","Myxococcus xanthus DZF1"],["NCBITaxon%3A675543","Myxococcus xanthus NewJersey2"]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":5,"nb":31,"a":[["alkaloids/9-deoxy-tilivalline.yaml","9-deoxy tilivalline"],["alkaloids/dehydro-tilivalline.yaml","dehydro tilivalline"],["alkaloids/dihydroxy-dehydro-tilivalline.yaml","dihydroxy-dehydro tilivalline"],["alkaloids/dihydroxy-tilivalline.yaml","dihydroxy tilivalline"],["alkaloids/tilivalline.yaml","tilivalline"]],"b":[["NCBITaxon%3A571","Klebsiella oxytoca"],["NCBITaxon%3A883116","Klebsiella oxytoca 09-7231"],["NCBITaxon%3A883117","Klebsiella oxytoca 10-5242"],["NCBITaxon%3A883118","Klebsiella oxytoca 10-5243"],["NCBITaxon%3A883119","Klebsiella oxytoca 10-5244"],["NCBITaxon%3A883120","Klebsiella oxytoca 10-5245"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":5,"nb":22,"a":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/andrimid.yaml","andrimid"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/pantocin-a.yaml","pantocin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]],"b":[["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A221276","[Curtobacterium] plantarum"],["NCBITaxon%3A558","Erwinia sp."],["NCBITaxon%3A83655","Leclercia adecarboxylata"],["NCBITaxon%3A549","Pantoea agglomerans"],["NCBITaxon%3A1261128","Pantoea agglomerans 299R"]]},{"id":"NCBITaxon:1916","l":"Streptomyces lividans","na":18,"nb":5,"a":[["alkaloids/rebeccamycin.yaml","rebeccamycin"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["amino_acids_and_peptides/dehydroxynocardamine.yaml","dehydroxynocardamine"],["amino_acids_and_peptides/goadsporin.yaml","goadsporin"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"]],"b":[["NCBITaxon%3A1894","Kitasatospora aureofaciens"],["NCBITaxon%3A1916","Streptomyces lividans"],["NCBITaxon%3A1200984","Streptomyces lividans 1326"],["NCBITaxon%3A457428","Streptomyces lividans TK24"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:47","l":"Archangium","na":5,"nb":17,"a":[["alkaloids/myxochelin-n.yaml","myxochelin N"],["alkaloids/myxochelin-o.yaml","myxochelin O"],["amino_acids_and_peptides/tubulysin-c.yaml","tubulysin C"],["polyketides/gephyronic-acid.yaml","gephyronic acid"],["unclassified/vioprolide-a.yaml","vioprolide A"]],"b":[["NCBITaxon%3A38","Archangium disciforme"],["NCBITaxon%3A48","Archangium gephyra"],["NCBITaxon%3A2995310","Archangium lansingense"],["NCBITaxon%3A2970465","Archangium lipolyticum"],["NCBITaxon%3A83450","Archangium minus"],["NCBITaxon%3A1872627","Archangium sp."]]},{"id":"NCBITaxon:168695","l":"Salinispora tropica","na":5,"nb":13,"a":[["alkaloids/lymphostin.yaml","lymphostin"],["amino_acids_and_peptides/salinosporamide-a.yaml","salinosporamide A"],["polyketides/lomaiviticin-a.yaml","lomaiviticin A"],["polyketides/sporolide-b.yaml","sporolide B"],["unclassified/salinilactam.yaml","salinilactam"]],"b":[["NCBITaxon%3A168695","Salinispora tropica"],["NCBITaxon%3A1137247","Salinispora tropica CNB476"],["NCBITaxon%3A1136431","Salinispora tropica CNB536"],["NCBITaxon%3A369723","Salinispora tropica CNB-440"],["NCBITaxon%3A1137248","Salinispora tropica CNH898"],["NCBITaxon%3A1169198","Salinispora tropica CNR699"]]},{"id":"NCBITaxon:2893586","l":"Actinoalloteichus cyanogriseus","na":8,"nb":5,"a":[["alkaloids/caerulomycin-a.yaml","caerulomycin A"],["alkaloids/cyanogramide-b.yaml","cyanogramide B"],["alkaloids/cyanogramide-c.yaml","cyanogramide C"],["alkaloids/cyanogramide-d.yaml","cyanogramide D"],["alkaloids/phenaziterpene-a.yaml","phenaziterpene A"],["carbohydrates/kanamycin-a.yaml","kanamycin A"]],"b":[["NCBITaxon%3A2893586","Actinoalloteichus caeruleus"],["NCBITaxon%3A1120930","Actinoalloteichus caeruleus DSM 43889"],["NCBITaxon%3A33921","Saccharothrix mutabilis"],["NCBITaxon%3A66854","Saccharothrix mutabilis subsp. capreolus"],["NCBITaxon%3A193462","Streptomyces niveus"]]},{"id":"NCBITaxon:42684","l":"Streptomyces collinus","na":8,"nb":5,"a":[["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/ectoine.yaml","ectoine"],["polyketides/naphthomycin-a.yaml","naphthomycin A"],["shikimates_and_phenylpropanoids/collinomycin.yaml","collinomycin"],["terpenoids/2-methylisoborneol.yaml","2-methylisoborneol"],["terpenoids/isorenieratene.yaml","isorenieratene"]],"b":[["NCBITaxon%3A42684","Streptomyces collinus"],["NCBITaxon%3A285445","Streptomyces collinus subsp. albescens"],["NCBITaxon%3A1214242","Streptomyces collinus Tu 365"],["NCBITaxon%3A1911","Streptomyces griseus"],["NCBITaxon%3A67263","Streptomyces griseus subsp. griseus"]]},{"id":"NCBITaxon:1892","l":"Streptomyces anulatus","na":7,"nb":5,"a":[["alkaloids/endophenazine-a.yaml","endophenazine A"],["alkaloids/endophenazine-b.yaml","endophenazine B"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["amino_acids_and_peptides/ectoine.yaml","ectoine"],["terpenoids/raimonol.yaml","raimonol"],["unclassified/telomestatin.yaml","telomestatin"]],"b":[["NCBITaxon%3A285560","Kitasatospora cinereorecta"],["NCBITaxon%3A1892","Streptomyces anulatus"],["NCBITaxon%3A285559","Streptomyces chrysomallus subsp. fumigatus"],["NCBITaxon%3A67343","Streptomyces praecox"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:66424","l":"Streptomyces hiroshimensis","na":5,"nb":7,"a":[["alkaloids/fervenulin.yaml","fervenulin"],["alkaloids/jawsamycin.yaml","jawsamycin"],["alkaloids/toxoflavin.yaml","toxoflavin"],["alkaloids/undecylprodigiosin-2.yaml","undecylprodigiosin"],["alkaloids/undecylprodigiosin.yaml","undecylprodigiosin"]],"b":[["NCBITaxon%3A67277","Streptomyces aureoversilis"],["NCBITaxon%3A66424","Streptomyces hiroshimensis"],["NCBITaxon%3A173860","Streptomyces rectiverticillatus"],["NCBITaxon%3A66429","Streptomyces roseoverticillatus"],["NCBITaxon%3A173832","Streptomyces roseoverticillatus subsp. melrosporus"],["NCBITaxon%3A97400","Streptomyces salmonis"]]},{"id":"NCBITaxon:47853","l":"Micromonospora carbonacea","na":6,"nb":5,"a":[["carbohydrates/everninomicin-a.yaml","everninomicin A"],["carbohydrates/everninomicin-d.yaml","everninomicin D"],["carbohydrates/everninomicin-e.yaml","everninomicin E"],["carbohydrates/everninomicin-f.yaml","everninomicin F"],["carbohydrates/everninomicin-g.yaml","everninomicin G"],["polyketides/rosaramicin.yaml","rosaramicin"]],"b":[["NCBITaxon%3A47853","Micromonospora carbonacea"],["NCBITaxon%3A3454472","Micromonospora carbonacea subsp. aurantiaca"],["NCBITaxon%3A3454602","Micromonospora carbonacea subsp. caeruleus"],["NCBITaxon%3A3454473","Micromonospora carbonacea subsp. carbonacea"],["NCBITaxon%3A1877","Micromonospora echinospora"]]},{"id":"NCBITaxon:1465","l":"Brevibacillus laterosporus","na":5,"nb":5,"a":[["amino_acids_and_peptides/bogorol-a.yaml","bogorol A"],["amino_acids_and_peptides/tauramamide.yaml","tauramamide"],["shikimates_and_phenylpropanoids/basiliskamide-a.yaml","Basiliskamide A"],["unclassified/basiliskamide-b.yaml","Basiliskamide B"],["unclassified/laterocidine.yaml","laterocidine"]],"b":[["NCBITaxon%3A1465","Brevibacillus laterosporus"],["NCBITaxon%3A1121121","Brevibacillus laterosporus DSM 25"],["NCBITaxon%3A1118154","Brevibacillus laterosporus GI-9"],["NCBITaxon%3A1042163","Brevibacillus laterosporus LMG 15441"],["NCBITaxon%3A1399144","Brevibacillus laterosporus PE36"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":5,"nb":5,"a":[["alkaloids/aminochelin.yaml","aminochelin"],["alkaloids/azotochelin.yaml","azotochelin"],["alkaloids/protochelin.yaml","protochelin"],["amino_acids_and_peptides/azotobactin-d.yaml","azotobactin D"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]],"b":[["NCBITaxon%3A354","Azotobacter vinelandii"],["NCBITaxon%3A1283330","Azotobacter vinelandii CA"],["NCBITaxon%3A1283331","Azotobacter vinelandii CA6"],["NCBITaxon%3A322710","Azotobacter vinelandii DJ"],["NCBITaxon%3A1314750","Azotobacter vinelandii NBRC 13581"]]},{"id":"NCBITaxon:69781","l":"Penicillium oxalicum","na":5,"nb":5,"a":[["alkaloids/meleagrine.yaml","meleagrine"],["polyketides/endocrocin.yaml","endocrocin"],["polyketides/secalonic-acid-c.yaml","Secalonic acid C"],["unclassified/atpenin-b.yaml","atpenin B"],["unclassified/roquefortine-c.yaml","roquefortine C"]],"b":[["NCBITaxon%3A69781","Penicillium oxalicum"],["NCBITaxon%3A933388","Penicillium oxalicum 114-2"],["NCBITaxon%3A936450","Penicillium oxalicum JU-A10-S"],["NCBITaxon%3A933390","Penicillium oxalicum JU-A10-T"],["NCBITaxon%3A858480","Penicillium oxalicum YT02"]]},{"id":"NCBITaxon:2745","l":"Halomonas","na":4,"nb":3499,"a":[["amino_acids_and_peptides/potashchelin-a.yaml","potashchelin A"],["amino_acids_and_peptides/potashchelin-b.yaml","potashchelin B"],["amino_acids_and_peptides/potashchelin-c.yaml","potashchelin C"],["amino_acids_and_peptides/potashchelin-d.yaml","potashchelin D"]],"b":[["NCBITaxon%3A1107859","Candidatus Halomonas phosphatis"],["NCBITaxon%3A2838617","Candidatus Halomonas stercoripullorum"],["NCBITaxon%3A1897729","Halomonas aestuarii"],["NCBITaxon%3A659123","Halomonas aidingensis"],["NCBITaxon%3A147248","Halomonas alimentaria"],["NCBITaxon%3A1930622","Halomonas alkalicola"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":4,"nb":422,"a":[["alkaloids/tilivalline.yaml","tilivalline"],["amino_acids_and_peptides/colibactin.yaml","colibactin"],["amino_acids_and_peptides/klebsidin.yaml","klebsidin"],["carbohydrates/capsular-polysaccharide-2.yaml","capsular polysaccharide"]],"b":[["NCBITaxon%3A1653844","Erwinia carnegieana"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A2058152","Klebsiella grimontii"],["NCBITaxon%3A54291","Klebsiella ornithinolytica"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A1443592","Klebsiella pneumoniae 07A044"]]},{"id":"NCBITaxon:1158","l":"Oscillatoria","na":4,"nb":360,"a":[["alkaloids/7-epi-cylindrospermopsin.yaml","7-epi-cylindrospermopsin"],["alkaloids/anatoxin-a.yaml","anatoxin-a"],["polyketides/doxorubicin.yaml","doxorubicin"],["polyketides/nystatin-a1.yaml","nystatin A1"]],"b":[["NCBITaxon%3A1442623","Oscillatoria angusta"],["NCBITaxon%3A1442624","Oscillatoria angusta ISB143"],["NCBITaxon%3A1499404","Oscillatoria angusta ISB35"],["NCBITaxon%3A1499405","Oscillatoria angusta ISB38"],["NCBITaxon%3A1499111","Oscillatoria angusta ISB40"],["NCBITaxon%3A1125738","Oscillatoria bonnemaisonii"]]},{"id":"NCBITaxon:77021","l":"Cylindrospermopsis","na":4,"nb":330,"a":[["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"],["alkaloids/gonyautoxin-2.yaml","gonyautoxin 2"],["alkaloids/neosaxitoxin.yaml","neosaxitoxin"],["alkaloids/saxitoxin.yaml","saxitoxin"]],"b":[["NCBITaxon%3A244597","Cylindrospermopsis africana"],["NCBITaxon%3A1857855","Cylindrospermopsis africana CHAB1394"],["NCBITaxon%3A1857856","Cylindrospermopsis africana CHAB3411"],["NCBITaxon%3A1857857","Cylindrospermopsis africana CHAB353"],["NCBITaxon%3A1857858","Cylindrospermopsis africana CHAB355"],["NCBITaxon%3A1857859","Cylindrospermopsis africana CHAB359"]]},{"id":"NCBITaxon:667113","l":"Actinoallomurus","na":4,"nb":229,"a":[["polyketides/allocyclinone-a.yaml","allocyclinone A"],["polyketides/allocyclinone-b.yaml","allocyclinone B"],["polyketides/allocyclinone-c.yaml","allocyclinone C"],["polyketides/allocyclinone-d.yaml","allocyclinone D"]],"b":[["NCBITaxon%3A502577","Actinoallomurus acaciae"],["NCBITaxon%3A1136071","Actinoallomurus acanthiterrae"],["NCBITaxon%3A478109","Actinoallomurus amamiensis"],["NCBITaxon%3A1490222","Actinoallomurus bryophytorum"],["NCBITaxon%3A478115","Actinoallomurus caesius"],["NCBITaxon%3A478106","Actinoallomurus coprocola"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":4,"nb":168,"a":[["alkaloids/zwittermicin-a.yaml","zwittermicin A"],["amino_acids_and_peptides/livipeptin.yaml","Livipeptin"],["carbohydrates/tunicamycin.yaml","tunicamycin"],["unclassified/cereulide.yaml","cereulide"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A572264","Bacillus cereus 03BB102"],["NCBITaxon%3A451709","Bacillus cereus 03BB108"],["NCBITaxon%3A526967","Bacillus cereus 172560W"],["NCBITaxon%3A363751","Bacillus cereus 31673"],["NCBITaxon%3A526979","Bacillus cereus 95/8201"]]},{"id":"NCBITaxon:752201","l":"Sphaerospermopsis","na":4,"nb":136,"a":[["fatty_acids/chlorosphaerolactylate-a.yaml","chlorosphaerolactylate A"],["fatty_acids/chlorosphaerolactylate-b.yaml","chlorosphaerolactylate B"],["fatty_acids/chlorosphaerolactylate-c.yaml","chlorosphaerolactylate C"],["fatty_acids/chlorosphaerolactylate-d.yaml","chlorosphaerolactylate D"]],"b":[["NCBITaxon%3A459663","Sphaerospermopsis aphanizomenoides"],["NCBITaxon%3A531303","Sphaerospermopsis aphanizomenoides 04-43"],["NCBITaxon%3A1137649","Sphaerospermopsis aphanizomenoides 09-03"],["NCBITaxon%3A543800","Sphaerospermopsis aphanizomenoides 1LT27S09"],["NCBITaxon%3A459672","Sphaerospermopsis aphanizomenoides 22C4.9"],["NCBITaxon%3A617115","Sphaerospermopsis aphanizomenoides 22F6.1"]]},{"id":"NCBITaxon:1179","l":"Desmonostoc muscorum","na":4,"nb":85,"a":[["amino_acids_and_peptides/muscoride-a.yaml","muscoride A"],["unclassified/desmamide-a.yaml","desmamide A"],["unclassified/desmamide-b.yaml","desmamide B"],["unclassified/desmamide-c.yaml","desmamide C"]],"b":[["NCBITaxon%3A1179","Desmonostoc muscorum"],["NCBITaxon%3A1887616","Desmonostoc muscorum 9a"],["NCBITaxon%3A2493151","Desmonostoc muscorum ACSSI 046"],["NCBITaxon%3A1977323","Desmonostoc muscorum ACSSI 091"],["NCBITaxon%3A1977325","Desmonostoc muscorum ACSSI 149"],["NCBITaxon%3A3735077","Desmonostoc muscorum AUR1017"]]},{"id":"NCBITaxon:414878","l":"Catenulispora","na":4,"nb":40,"a":[["polyketides/catenulisporolide-a.yaml","catenulisporolide A"],["polyketides/catenulisporolide-b.yaml","catenulisporolide B"],["polyketides/catenulisporolide-c.yaml","catenulisporolide C"],["polyketides/catenulisporolide-d.yaml","catenulisporolide D"]],"b":[["NCBITaxon%3A234199","bacterium Ellin5062"],["NCBITaxon%3A234202","bacterium Ellin5116"],["NCBITaxon%3A234203","bacterium Ellin5119"],["NCBITaxon%3A304895","Catenulispora acidiphila"],["NCBITaxon%3A479433","Catenulispora acidiphila DSM 44928"],["NCBITaxon%3A436228","Catenulispora cavernae"]]},{"id":"NCBITaxon:13373","l":"Burkholderia mallei","na":4,"nb":20,"a":[["alkaloids/malleobactin-b.yaml","malleobactin B"],["polyketides/malleilactone.yaml","malleilactone"],["unclassified/malleobactin-a.yaml","malleobactin A"],["unclassified/malleobactin-c.yaml","malleobactin C"]],"b":[["NCBITaxon%3A13373","Burkholderia mallei"],["NCBITaxon%3A1382516","Burkholderia mallei 2000031281"],["NCBITaxon%3A370895","Burkholderia mallei 2002721280"],["NCBITaxon%3A411920","Burkholderia mallei 721280"],["NCBITaxon%3A1382517","Burkholderia mallei A188"],["NCBITaxon%3A1382518","Burkholderia mallei A193"]]},{"id":"NCBITaxon:31958","l":"Amycolatopsis orientalis","na":4,"nb":13,"a":[["amino_acids_and_peptides/chloroeremomycin.yaml","chloroeremomycin"],["amino_acids_and_peptides/vancomycin.yaml","vancomycin"],["polyketides/eco-0501.yaml","ECO-0501"],["polyketides/quartromicin-a1.yaml","quartromicin A1"]],"b":[["NCBITaxon%3A346045","Amycolatopsis benzoatilytica"],["NCBITaxon%3A1089544","Amycolatopsis benzoatilytica AK 16/65"],["NCBITaxon%3A31959","Amycolatopsis lurida"],["NCBITaxon%3A1460371","Amycolatopsis lurida NRRL 2430"],["NCBITaxon%3A31958","Amycolatopsis orientalis"],["NCBITaxon%3A1125971","Amycolatopsis orientalis DSM 40040 = KCTC 9412"]]},{"id":"NCBITaxon:1393","l":"Brevibacillus brevis","na":4,"nb":12,"a":[["alkaloids/ulbactin-f.yaml","ulbactin F"],["alkaloids/ulbactin-g.yaml","ulbactin G"],["amino_acids_and_peptides/gramicidin.yaml","gramicidin"],["amino_acids_and_peptides/tyrocidine-a.yaml","tyrocidine A"]],"b":[["NCBITaxon%3A1391","Aneurinibacillus aneurinilyticus"],["NCBITaxon%3A267746","Aneurinibacillus danicus"],["NCBITaxon%3A47500","Aneurinibacillus migulanus"],["NCBITaxon%3A45462","Brevibacillus borstelensis"],["NCBITaxon%3A1393","Brevibacillus brevis"],["NCBITaxon%3A1129895","Brevibacillus brevis FJAT-0809-GLX"]]},{"id":"NCBITaxon:1397","l":"Niallia circulans","na":4,"nb":10,"a":[["carbohydrates/butirosin-a.yaml","butirosin A"],["carbohydrates/butirosin-b.yaml","butirosin B"],["carbohydrates/butirosin.yaml","butirosin"],["unclassified/pelgipeptin-b.yaml","Pelgipeptin B"]],"b":[["NCBITaxon%3A1393","Brevibacillus brevis"],["NCBITaxon%3A1397","Niallia circulans"],["NCBITaxon%3A1348626","Niallia circulans NBRC 13626"],["NCBITaxon%3A44160","Niallia circulans subsp. alkalophilus"],["NCBITaxon%3A74308","Niallia circulans subsp. circulans"],["NCBITaxon%3A59846","Paenibacillus chibensis"]]},{"id":"NCBITaxon:35619","l":"Streptomyces griseoflavus","na":10,"nb":4,"a":[["amino_acids_and_peptides/aborycin-2.yaml","aborycin"],["polyketides/gilvocarcin-v.yaml","gilvocarcin V"],["polyketides/resistomycin.yaml","resistomycin"],["unclassified/bicozamycin.yaml","bicozamycin"],["unclassified/hormaomycin-a1.yaml","hormaomycin A1"],["unclassified/hormaomycin-a2.yaml","hormaomycin A2"]],"b":[["NCBITaxon%3A35619","Streptomyces griseoflavus"],["NCBITaxon%3A285490","Streptomyces griseoflavus subsp. pyrindicus"],["NCBITaxon%3A467200","Streptomyces griseoflavus Tu4000"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:1036719","l":"Verticillium","na":4,"nb":7,"a":[["polyketides/ustilaginoidin-a.yaml","ustilaginoidin A"],["polyketides/ustilaginoidin-f.yaml","ustilaginoidin F"],["polyketides/ustilaginoidin-g.yaml","ustilaginoidin G"],["unclassified/ascochlorin.yaml","ascochlorin"]],"b":[["NCBITaxon%3A1051613","Verticillium alfalfae"],["NCBITaxon%3A526221","Verticillium alfalfae VaMs.102"],["NCBITaxon%3A27337","Verticillium dahliae"],["NCBITaxon%3A100787","Verticillium longisporum"],["NCBITaxon%3A1051616","Verticillium nonalfalfae"],["NCBITaxon%3A132580","Verticillium nubilum"]]},{"id":"NCBITaxon:33202","l":"Paecilomyces","na":4,"nb":7,"a":[["amino_acids_and_peptides/leucinostatin-a.yaml","leucinostatin A"],["polyketides/monocillin-iv.yaml","monocillin IV"],["polyketides/monocillin-vi.yaml","monocillin VI"],["polyketides/monocillin-vii.yaml","monocillin VII"]],"b":[["NCBITaxon%3A89137","Paecilomyces fulvus"],["NCBITaxon%3A40383","Paecilomyces sp."],["NCBITaxon%3A2940442","Paecilomyces sp. M2901"],["NCBITaxon%3A2940445","Paecilomyces sp. M2902"],["NCBITaxon%3A2940444","Paecilomyces sp. PK2413"],["NCBITaxon%3A2940443","Paecilomyces sp. PL2402"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":4,"nb":7,"a":[["unclassified/vacidobactin-a.yaml","vacidobactin A"],["unclassified/vacidobactin-b.yaml","vacidobactin B"],["unclassified/variobactin-a.yaml","variobactin A"],["unclassified/variobactin-b.yaml","variobactin B"]],"b":[["NCBITaxon%3A34073","Variovorax paradoxus"],["NCBITaxon%3A1150395","Variovorax paradoxus 4MFCol3.1"],["NCBITaxon%3A1246301","Variovorax paradoxus B4"],["NCBITaxon%3A595537","Variovorax paradoxus EPS"],["NCBITaxon%3A1321610","Variovorax paradoxus NBRC 15149"],["NCBITaxon%3A543728","Variovorax paradoxus S110"]]},{"id":"NCBITaxon:47760","l":"Streptomyces aurantiacus","na":6,"nb":4,"a":[["amino_acids_and_peptides/depsibosamycin-b.yaml","depsibosamycin B"],["amino_acids_and_peptides/depsibosamycin-c.yaml","depsibosamycin C"],["polyketides/resistomycin.yaml","resistomycin"],["polyketides/setomimycin.yaml","setomimycin"],["unclassified/aurantimycin-a.yaml","aurantimycin A"],["unclassified/depsibosamycin-d.yaml","depsibosamycin D"]],"b":[["NCBITaxon%3A58341","Streptomyces albosporeus"],["NCBITaxon%3A66867","Streptomyces albovinaceus"],["NCBITaxon%3A47760","Streptomyces aurantiacus"],["NCBITaxon%3A1286094","Streptomyces aurantiacus JA 4570"]]},{"id":"NCBITaxon:189691","l":"Paenibacillus elgii","na":4,"nb":5,"a":[["unclassified/pelgipeptin-a.yaml","Pelgipeptin A"],["unclassified/pelgipeptin-b.yaml","Pelgipeptin B"],["unclassified/pelgipeptin-c.yaml","Pelgipeptin C"],["unclassified/pelgipeptin-d.yaml","Pelgipeptin D"]],"b":[["NCBITaxon%3A189691","Paenibacillus elgii"],["NCBITaxon%3A1007103","Paenibacillus elgii B69"],["NCBITaxon%3A664734","Paenibacillus elgii C56-YS68"],["NCBITaxon%3A1349776","Paenibacillus elgii NBRC 100335"],["NCBITaxon%3A300028","Rhodococcus triatomae"]]},{"id":"NCBITaxon:67365","l":"Streptomyces sparsogenes","na":5,"nb":4,"a":[["alkaloids/formycin-a.yaml","formycin A"],["carbohydrates/sangivamycin.yaml","sangivamycin"],["carbohydrates/toyocamycin.yaml","toyocamycin"],["carbohydrates/tubercidin.yaml","tubercidin"],["unclassified/pirazofurin.yaml","pirazofurin"]],"b":[["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A67365","Streptomyces sparsogenes"],["NCBITaxon%3A1331668","Streptomyces sparsogenes DSM 40356"],["NCBITaxon%3A66882","Streptomyces sparsogenes subsp. cuspidosporus"]]},{"id":"NCBITaxon:1936","l":"Streptomyces violaceus","na":4,"nb":4,"a":[["polyketides/carotenoid.yaml","carotenoid"],["polyketides/concanamycin-a.yaml","concanamycin A"],["polyketides/cosmomycin-d.yaml","cosmomycin D"],["polyketides/rhodomycin.yaml","rhodomycin"]],"b":[["NCBITaxon%3A2893586","Actinoalloteichus caeruleus"],["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A1936","Streptomyces violaceus"],["NCBITaxon%3A67380","Streptomyces violaceus subsp. violarus"]]},{"id":"NCBITaxon:1944","l":"Streptomyces halstedii","na":4,"nb":4,"a":[["alkaloids/rotihibin-a.yaml","rotihibin A"],["polyketides/halstoctacosanolide-a.yaml","halstoctacosanolide A"],["terpenoids/geosmin.yaml","(−)-geosmin"],["unclassified/vicenistatin.yaml","vicenistatin"]],"b":[["NCBITaxon%3A68212","Streptomyces graminofaciens"],["NCBITaxon%3A1909","Streptomyces griseolus"],["NCBITaxon%3A1944","Streptomyces halstedii"],["NCBITaxon%3A178788","Streptomyces halstedii subsp. scabies"]]},{"id":"NCBITaxon:53246","l":"Pseudoalteromonas","na":3,"nb":4350,"a":[["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["carbohydrates/kanamycin-a.yaml","kanamycin A"],["polyketides/erythromycin-a.yaml","erythromycin A"]],"b":[["NCBITaxon%3A300231","Brumicola nitratireducens"],["NCBITaxon%3A246558","marine bacterium 13684"],["NCBITaxon%3A246559","marine bacterium 13703"],["NCBITaxon%3A246560","marine bacterium 13704"],["NCBITaxon%3A194691","marine bacterium SIMO IS-S73-243"],["NCBITaxon%3A156585","marine bacterium Tw-2"]]},{"id":"NCBITaxon:1125","l":"Microcystis","na":3,"nb":2332,"a":[["amino_acids_and_peptides/microcystin-lr.yaml","microcystin-LR"],["amino_acids_and_peptides/piricyclamide-7005e1.yaml","piricyclamide 7005E1"],["unclassified/cyanopeptolin.yaml","cyanopeptolin"]],"b":[["NCBITaxon%3A1126","Microcystis aeruginosa"],["NCBITaxon%3A270630","Microcystis aeruginosa 0BB35S02"],["NCBITaxon%3A270631","Microcystis aeruginosa 0BF29S01"],["NCBITaxon%3A270632","Microcystis aeruginosa 0BF29S03"],["NCBITaxon%3A2358142","Microcystis aeruginosa 11-30S32"],["NCBITaxon%3A3113711","Microcystis aeruginosa 1339"]]},{"id":"NCBITaxon:1129","l":"Synechococcus","na":3,"nb":2170,"a":[["alkaloids/synechobactin-a.yaml","synechobactin A"],["alkaloids/synechobactin-b.yaml","synechobactin B"],["alkaloids/synechobactin-c.yaml","synechobactin C"]],"b":[["NCBITaxon%3A2081909","Anacystis marina"],["NCBITaxon%3A2081929","Anacystis marina UTEX LB 1634"],["NCBITaxon%3A1522304","Candidatus Synechococcus calcipolaris"],["NCBITaxon%3A1497997","Candidatus Synechococcus calcipolaris G9"],["NCBITaxon%3A431041","Candidatus Synechococcus spongiarum"],["NCBITaxon%3A1608213","Candidatus Synechococcus spongiarum 142"]]},{"id":"NCBITaxon:83681","l":"Nonomuraea","na":3,"nb":632,"a":[["amino_acids_and_peptides/kistamicin-a.yaml","kistamicin A"],["amino_acids_and_peptides/thiomuracin-a.yaml","thiomuracin A"],["unclassified/ecumicin.yaml","ecumicin"]],"b":[["NCBITaxon%3A2805427","Actinomadura luzonensis"],["NCBITaxon%3A1955412","[Actinomadura] parvosata"],["NCBITaxon%3A1909395","[Actinomadura] parvosata subsp. kistnae"],["NCBITaxon%3A1989","Actinomadura sp."],["NCBITaxon%3A411670","Nonomuraea aegyptia"],["NCBITaxon%3A46171","Nonomuraea africana"]]},{"id":"NCBITaxon:159191","l":"Nodularia","na":3,"nb":261,"a":[["unclassified/nocuolactylate-a.yaml","Nocuolactylate A"],["unclassified/nocuolactylate-b.yaml","Nocuolactylate B"],["unclassified/nocuolactylate-c.yaml","Nocuolactylate C"]],"b":[["NCBITaxon%3A1378537","Nodularia armorica"],["NCBITaxon%3A1378538","Nodularia armorica L1"],["NCBITaxon%3A88826","Nodularia baltica"],["NCBITaxon%3A285704","Nodularia baltica BY1"],["NCBITaxon%3A1378539","Nodularia cf. harveyana HBU11"],["NCBITaxon%3A1378540","Nodularia cf. harveyana HBU23"]]},{"id":"NCBITaxon:29487","l":"Photorhabdus","na":3,"nb":179,"a":[["polyketides/aq-256.yaml","AQ-256"],["polyketides/aq-270a.yaml","AQ-270a"],["polyketides/aq-284a.yaml","AQ-284a"]],"b":[["NCBITaxon%3A2991723","Photorhabdus aballayi"],["NCBITaxon%3A2805098","Photorhabdus aegyptia"],["NCBITaxon%3A3097554","Photorhabdus africana"],["NCBITaxon%3A171438","Photorhabdus akhurstii"],["NCBITaxon%3A2934395","Photorhabdus akhurstii subsp. akhurstii"],["NCBITaxon%3A2919874","Photorhabdus akhurstii subsp. bharatensis"]]},{"id":"NCBITaxon:383614","l":"Brasilonema","na":3,"nb":179,"a":[["amino_acids_and_peptides/anabaenopeptin-788.yaml","anabaenopeptin 788"],["amino_acids_and_peptides/anabaenopeptin-802.yaml","anabaenopeptin 802"],["amino_acids_and_peptides/anabaenopeptin-816.yaml","anabaenopeptin 816"]],"b":[["NCBITaxon%3A3398307","Brasilonema amethysteum"],["NCBITaxon%3A3057924","Brasilonema amethysteum CR10-2F/1"],["NCBITaxon%3A1249745","Brasilonema angustatum"],["NCBITaxon%3A1049008","Brasilonema angustatum HA4187-MV1"],["NCBITaxon%3A3398308","Brasilonema bambusae"],["NCBITaxon%3A3237340","Brasilonema bambusae CR06-5A/1"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":3,"nb":178,"a":[["unclassified/leuvalin.yaml","leuvalin"],["unclassified/mutanocyclin.yaml","mutanocyclin"],["unclassified/tyrvalin.yaml","tyrvalin"]],"b":[["NCBITaxon%3A150055","Streptococcus lutetiensis"],["NCBITaxon%3A1309","Streptococcus mutans"],["NCBITaxon%3A857155","Streptococcus mutans 11A1"],["NCBITaxon%3A857147","Streptococcus mutans 11SSST2"],["NCBITaxon%3A857143","Streptococcus mutans 11VS1"],["NCBITaxon%3A857113","Streptococcus mutans 14D"]]},{"id":"NCBITaxon:70799","l":"Nodularia spumigena","na":3,"nb":119,"a":[["amino_acids_and_peptides/microcystin-lr.yaml","microcystin-LR"],["amino_acids_and_peptides/nodularin.yaml","nodularin"],["amino_acids_and_peptides/spumigin-e.yaml","Spumigin E"]],"b":[["NCBITaxon%3A173561","Nodularia cf. spumigena IBASU-DS-13-00"],["NCBITaxon%3A70799","Nodularia spumigena"],["NCBITaxon%3A2161834","Nodularia spumigena 106-108LC"],["NCBITaxon%3A2161835","Nodularia spumigena 120-122LC"],["NCBITaxon%3A2161836","Nodularia spumigena 122-124 LC"],["NCBITaxon%3A2161837","Nodularia spumigena 170-172 LC"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":3,"nb":118,"a":[["amino_acids_and_peptides/epidermin.yaml","epidermin"],["amino_acids_and_peptides/epilancin-15x.yaml","epilancin 15x"],["amino_acids_and_peptides/pep5.yaml","pep5"]],"b":[["NCBITaxon%3A69966","Macrococcoides caseolyticum"],["NCBITaxon%3A1822","Nocardia vaccinii"],["NCBITaxon%3A1210098","Nocardia vaccinii NBRC 15922"],["NCBITaxon%3A1282","Staphylococcus epidermidis"],["NCBITaxon%3A1235440","Staphylococcus epidermidis 12142587"],["NCBITaxon%3A1000590","Staphylococcus epidermidis 14.1.R1.SE"]]},{"id":"NCBITaxon:42","l":"Cystobacter","na":3,"nb":45,"a":[["amino_acids_and_peptides/tubulysin-a.yaml","tubulysin A"],["unclassified/cystobactamid-919-1.yaml","cystobactamid 919-1"],["unclassified/cystobactamid-919-2.yaml","cystobactamid 919-2"]],"b":[["NCBITaxon%3A394090","Cystobacter armeniaca"],["NCBITaxon%3A394091","Cystobacter badius"],["NCBITaxon%3A83449","Cystobacter ferrugineus"],["NCBITaxon%3A43","Cystobacter fuscus"],["NCBITaxon%3A1242864","Cystobacter fuscus DSM 2262"],["NCBITaxon%3A394093","Cystobacter miniatus"]]},{"id":"NCBITaxon:1902","l":"Streptomyces coelicolor","na":42,"nb":3,"a":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/anthramycin.yaml","anthramycin"],["alkaloids/holomycin.yaml","holomycin"],["alkaloids/melanin.yaml","melanin"],["alkaloids/prodigiosin-2.yaml","prodigiosin"],["alkaloids/undecylprodigiosin-2.yaml","undecylprodigiosin"]],"b":[["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A1902","Streptomyces coelicolor"],["NCBITaxon%3A100226","Streptomyces coelicolor A3(2)"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":3,"nb":39,"a":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"],["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"],["unclassified/telomestatin.yaml","telomestatin"]],"b":[["NCBITaxon%3A679895","Escherichia coli BW25113"],["NCBITaxon%3A595496","Escherichia coli BW2952"],["NCBITaxon%3A1318715","Escherichia coli BW38028"],["NCBITaxon%3A1245474","Escherichia coli ER2796"],["NCBITaxon%3A83333","Escherichia coli K-12"],["NCBITaxon%3A527799","Escherichia coli LW1655F+"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":3,"nb":33,"a":[["alkaloids/cepaciachelin.yaml","cepaciachelin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["terpenoids/hopene.yaml","hopene"]],"b":[["NCBITaxon%3A85698","Achromobacter xylosoxidans"],["NCBITaxon%3A152480","Burkholderia ambifaria"],["NCBITaxon%3A179879","Burkholderia anthina"],["NCBITaxon%3A488730","Burkholderia arboris"],["NCBITaxon%3A95486","Burkholderia cenocepacia"],["NCBITaxon%3A292","Burkholderia cepacia"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":3,"nb":32,"a":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"],["amino_acids_and_peptides/lacticin-z.yaml","lacticin Z"],["amino_acids_and_peptides/nisin-a.yaml","nisin A"]],"b":[["NCBITaxon%3A1359","Lactococcus cremoris"],["NCBITaxon%3A2816960","Lactococcus cremoris subsp. cremoris"],["NCBITaxon%3A1348655","Lactococcus cremoris subsp. cremoris NBRC 100676"],["NCBITaxon%3A1363","Lactococcus garvieae"],["NCBITaxon%3A1358","Lactococcus lactis"],["NCBITaxon%3A2731284","Lactococcus lactis (ex Latorre-Guzman et al. 1977) Schleifer et al. 1986"]]},{"id":"NCBITaxon:1214","l":"Prochloron","na":3,"nb":30,"a":[["amino_acids_and_peptides/patellamide-a.yaml","patellamide A"],["amino_acids_and_peptides/patellamide-b.yaml","patellamide B"],["amino_acids_and_peptides/patellin-6.yaml","patellin 6"]],"b":[["NCBITaxon%3A1216","Prochloron didemni"],["NCBITaxon%3A3115413","Prochloron didemni E1"],["NCBITaxon%3A2721547","Prochloron didemni IMFR-1"],["NCBITaxon%3A910450","Prochloron didemni P1-Palau"],["NCBITaxon%3A910454","Prochloron didemni P2-Fiji"],["NCBITaxon%3A910458","Prochloron didemni P3-Solomon"]]},{"id":"NCBITaxon:1998","l":"Planomonospora","na":3,"nb":25,"a":[["amino_acids_and_peptides/biarylitide-yfh.yaml","biarylitide YFH"],["amino_acids_and_peptides/biarylitide-yyh.yaml","biarylitide YYH"],["amino_acids_and_peptides/planosporicin.yaml","planosporicin"]],"b":[["NCBITaxon%3A244","Planomicrobium okeanokoites"],["NCBITaxon%3A161354","Planomonospora alba"],["NCBITaxon%3A1846211","Planomonospora algeriensis"],["NCBITaxon%3A97193","Planomonospora antibiotica"],["NCBITaxon%3A1806052","Planomonospora corallina"],["NCBITaxon%3A58119","Planomonospora parontospora"]]},{"id":"NCBITaxon:162425","l":"Aspergillus nidulans","na":22,"nb":3,"a":[["alkaloids/aspernidine-a.yaml","aspernidine A"],["alkaloids/aspyridone-a.yaml","aspyridone A"],["alkaloids/aspyridone-b.yaml","aspyridone B"],["alkaloids/biotin.yaml","biotin"],["alkaloids/cichorine.yaml","cichorine"],["alkaloids/pentostatin.yaml","pentostatin"]],"b":[["NCBITaxon%3A162425","Aspergillus nidulans"],["NCBITaxon%3A286159","Aspergillus nidulans var. acristatus"],["NCBITaxon%3A286160","Aspergillus nidulans var. dentatus"]]},{"id":"NCBITaxon:243265","l":"Photorhabdus laumondii subsp. laumondii TTO1","na":21,"nb":3,"a":[["amino_acids_and_peptides/gamexpeptide-c.yaml","gamexpeptide C"],["amino_acids_and_peptides/luminmycin-a.yaml","luminmycin A"],["amino_acids_and_peptides/ririwpeptide-a.yaml","ririwpeptide A"],["amino_acids_and_peptides/ririwpeptide-b.yaml","ririwpeptide B"],["carbohydrates/oligosaccharide-1-glcnac-1-4-1-6-anhydro-glcnac.yaml","oligosaccharide 1 (GlcNAc-β(1-4)-1,6-anhydro-β-GlcNAc)"],["carbohydrates/oligosaccharide-2-glcnac-1-4-glcnac-1-4-1-6-anhydro-glcnac.yaml","oligosaccharide 2 (GlcNAc-β(1-4)-GlcNAc-β(1-4)-1,6-anhydro-β-GlcNAc)"]],"b":[["NCBITaxon%3A2218628","Photorhabdus laumondii"],["NCBITaxon%3A141679","Photorhabdus laumondii subsp. laumondii"],["NCBITaxon%3A243265","Photorhabdus laumondii subsp. laumondii TTO1"]]},{"id":"NCBITaxon:54571","l":"Streptomyces venezuelae","na":21,"nb":3,"a":[["alkaloids/anthelvencin-a.yaml","anthelvencin A"],["alkaloids/anthelvencin-b.yaml","anthelvencin B"],["alkaloids/anthelvencin-c.yaml","anthelvencin C"],["alkaloids/chloramphenicol.yaml","chloramphenicol"],["alkaloids/corynecin-ii.yaml","corynecin II"],["alkaloids/gaburedin-d.yaml","gaburedin D"]],"b":[["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A54571","Streptomyces venezuelae"],["NCBITaxon%3A953739","Streptomyces venezuelae ATCC 10712"]]},{"id":"NCBITaxon:746128","l":"Aspergillus fumigatus","na":20,"nb":3,"a":[["alkaloids/fumigaclavine-c.yaml","fumigaclavine C"],["alkaloids/fumiquinazoline-a.yaml","fumiquinazoline A"],["alkaloids/fumiquinazoline-c.yaml","fumiquinazoline C"],["alkaloids/fumiquinazoline-d.yaml","fumiquinazoline D"],["alkaloids/hexadehydroastechrome.yaml","hexadehydroastechrome"],["carbohydrates/tobramycin.yaml","tobramycin"]],"b":[["NCBITaxon%3A746128","Aspergillus fumigatus"],["NCBITaxon%3A451804","Aspergillus fumigatus A1163"],["NCBITaxon%3A41122","Aspergillus fumigatus var. fumigatus"]]},{"id":"NCBITaxon:1833","l":"Rhodococcus erythropolis","na":3,"nb":19,"a":[["alkaloids/aurachin-re.yaml","aurachin RE"],["amino_acids_and_peptides/heterobactin-a.yaml","heterobactin A"],["amino_acids_and_peptides/heterobactin-s2.yaml","heterobactin S2"]],"b":[["NCBITaxon%3A1818","Nocardia globerula"],["NCBITaxon%3A1821","Nocardia sp."],["NCBITaxon%3A53432","Nocardia uniformis"],["NCBITaxon%3A1210100","Nocardia uniformis NBRC 13702"],["NCBITaxon%3A1833","Rhodococcus erythropolis"],["NCBITaxon%3A1136179","Rhodococcus erythropolis CCM2595"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":3,"nb":16,"a":[["amino_acids_and_peptides/polymyxin-b.yaml","polymyxin B"],["amino_acids_and_peptides/polymyxin.yaml","polymyxin"],["unclassified/fusaricidin-b.yaml","fusaricidin B"]],"b":[["NCBITaxon%3A114136","Paenibacillus jamilae"],["NCBITaxon%3A225917","Paenibacillus massiliensis"],["NCBITaxon%3A1406","Paenibacillus polymyxa"],["NCBITaxon%3A1333863","Paenibacillus polymyxa 1-43"],["NCBITaxon%3A1414587","Paenibacillus polymyxa A18"],["NCBITaxon%3A1206104","Paenibacillus polymyxa ATCC 12321"]]},{"id":"NCBITaxon:5598","l":"Alternaria","na":3,"nb":16,"a":[["polyketides/zearalenone.yaml","zearalenone"],["shikimates_and_phenylpropanoids/alternariol.yaml","alternariol"],["unclassified/tenuazonic-acid.yaml","tenuazonic acid"]],"b":[["NCBITaxon%3A1111114","Alternaria alstroemeriae"],["NCBITaxon%3A5599","Alternaria alternata"],["NCBITaxon%3A156630","Alternaria arborescens"],["NCBITaxon%3A29911","Alternaria brassicae"],["NCBITaxon%3A29001","Alternaria brassicicola"],["NCBITaxon%3A1187905","Alternaria calendulae"]]},{"id":"NCBITaxon:41","l":"Stigmatella aurantiaca","na":14,"nb":3,"a":[["alkaloids/aurachin-a.yaml","aurachin A"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"],["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["polyketides/aurafuron-a.yaml","aurafuron A"]],"b":[["NCBITaxon%3A41","Allostigmatella aurantiaca"],["NCBITaxon%3A378806","Allostigmatella aurantiaca DW4/3-1"],["NCBITaxon%3A675526","Allostigmatella aurantiaca Sg a15"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":13,"nb":3,"a":[["unclassified/bananamide-d.yaml","bananamide D"],["unclassified/bananamide-e.yaml","bananamide E"],["unclassified/bananamide-f.yaml","bananamide F"],["unclassified/bananamide-g.yaml","bananamide G"],["unclassified/lokisin.yaml","lokisin"],["unclassified/pseudodesmin-a.yaml","pseudodesmin A"]],"b":[["NCBITaxon%3A2219225","Pseudomonas asiatica"],["NCBITaxon%3A1628086","Pseudomonas kribbensis"],["NCBITaxon%3A306","Pseudomonas sp."]]},{"id":"NCBITaxon:53446","l":"Streptomyces cinnamoneus","na":3,"nb":11,"a":[["amino_acids_and_peptides/cinnamycin.yaml","cinnamycin"],["amino_acids_and_peptides/duramycin.yaml","duramycin"],["unclassified/bicozamycin.yaml","bicozamycin"]],"b":[["NCBITaxon%3A53446","Streptomyces cinnamoneus"],["NCBITaxon%3A173776","Streptomyces cinnamoneus subsp. albosporus"],["NCBITaxon%3A173777","Streptomyces cinnamoneus subsp. azacoluta"],["NCBITaxon%3A173778","Streptomyces cinnamoneus subsp. lanosus"],["NCBITaxon%3A1521191","Streptomyces cinnamoneus subsp. monicae"],["NCBITaxon%3A173779","Streptomyces cinnamoneus subsp. sparsus"]]},{"id":"NCBITaxon:116188","l":"Streptomyces coeruleorubidus","na":10,"nb":3,"a":[["amino_acids_and_peptides/pacidamycin-1.yaml","pacidamycin 1"],["amino_acids_and_peptides/pacidamycin-2.yaml","pacidamycin 2"],["amino_acids_and_peptides/pacidamycin-3.yaml","pacidamycin 3"],["amino_acids_and_peptides/pacidamycin-4.yaml","pacidamycin 4"],["amino_acids_and_peptides/pacidamycin-5.yaml","pacidamycin 5"],["amino_acids_and_peptides/pacidamycin-6.yaml","pacidamycin 6"]],"b":[["NCBITaxon%3A1521190","Streptomyces bellus subsp. cirolerosus"],["NCBITaxon%3A116188","Streptomyces coeruleorubidus"],["NCBITaxon%3A146536","Streptomyces curacoi"]]},{"id":"NCBITaxon:680","l":"Vibrio campbellii","na":3,"nb":10,"a":[["amino_acids_and_peptides/divanchrobactin.yaml","divanchrobactin"],["amino_acids_and_peptides/trivanchrobactin.yaml","trivanchrobactin"],["amino_acids_and_peptides/vanchrobactin.yaml","vanchrobactin"]],"b":[["NCBITaxon%3A680","Vibrio campbellii"],["NCBITaxon%3A1279999","Vibrio campbellii 200612B"],["NCBITaxon%3A2902295","Vibrio campbellii ATCC BAA-1116"],["NCBITaxon%3A1206055","Vibrio campbellii CAIM 333"],["NCBITaxon%3A1224742","Vibrio campbellii CAIM 519 = NBRC 15631 = ATCC 25920"],["NCBITaxon%3A1088888","Vibrio campbellii DS40M4"]]},{"id":"NCBITaxon:12908","l":"unclassified sequences","na":3,"nb":9,"a":[["polyketides/elaiophylin.yaml","elaiophylin"],["polyketides/nargenicin-a1-2.yaml","nargenicin A1"],["polyketides/pederin.yaml","pederin"]],"b":[["NCBITaxon%3A1263854","anaerobic digester metagenome"],["NCBITaxon%3A1169740","aquatic metagenome"],["NCBITaxon%3A702656","compost metagenome"],["NCBITaxon%3A408170","human gut metagenome"],["NCBITaxon%3A256318","metagenome"],["NCBITaxon%3A410658","soil metagenome"]]},{"id":"NCBITaxon:556","l":"Dickeya chrysanthemi","na":3,"nb":9,"a":[["amino_acids_and_peptides/chrysobactin.yaml","chrysobactin"],["amino_acids_and_peptides/dichrysobactin.yaml","dichrysobactin"],["unclassified/cyclic-trichrysobactin.yaml","cyclic trichrysobactin"]],"b":[["NCBITaxon%3A556","Dickeya chrysanthemi"],["NCBITaxon%3A561229","Dickeya chrysanthemi Ech1591"],["NCBITaxon%3A1224148","Dickeya chrysanthemi NCPPB 3533"],["NCBITaxon%3A1223569","Dickeya chrysanthemi NCPPB 402"],["NCBITaxon%3A3474837","Dickeya chrysanthemi pv. chrysanthemi"],["NCBITaxon%3A3474953","Dickeya chrysanthemi pv. parthenii"]]},{"id":"NCBITaxon:1836","l":"Saccharopolyspora erythraea","na":8,"nb":3,"a":[["amino_acids_and_peptides/erythrochelin.yaml","erythrochelin"],["polyketides/3-3-diflaviolin.yaml","3,3'-diflaviolin"],["polyketides/erythromycin-a.yaml","erythromycin A"],["polyketides/erythromycin-b.yaml","erythromycin B"],["polyketides/flaviolin-rhamnoside.yaml","flaviolin rhamnoside"],["polyketides/flaviolin.yaml","flaviolin"]],"b":[["NCBITaxon%3A1836","Saccharopolyspora erythraea"],["NCBITaxon%3A1382595","Saccharopolyspora erythraea D"],["NCBITaxon%3A405948","Saccharopolyspora erythraea NRRL 2338"]]},{"id":"NCBITaxon:1055688","l":"Sandaracinus","na":7,"nb":3,"a":[["amino_acids_and_peptides/sandarazol-a.yaml","sandarazol A"],["amino_acids_and_peptides/sandarazol-c.yaml","sandarazol C"],["amino_acids_and_peptides/sandarazol-d.yaml","sandarazol D"],["amino_acids_and_peptides/sandarazol-f.yaml","sandarazol F"],["amino_acids_and_peptides/sandarazol-g.yaml","sandarazol G"],["unclassified/sandarazol-b.yaml","sandarazol B"]],"b":[["NCBITaxon%3A927083","Sandaracinus amylolyticus"],["NCBITaxon%3A2024858","Sandaracinus sp."],["NCBITaxon%3A1331297","uncultured Sandaracinus sp."]]},{"id":"NCBITaxon:1216","l":"Prochloron didemni","na":3,"nb":7,"a":[["amino_acids_and_peptides/divamide-a.yaml","divamide A"],["amino_acids_and_peptides/patellamide-a.yaml","patellamide A"],["amino_acids_and_peptides/patellamide-c.yaml","patellamide C"]],"b":[["NCBITaxon%3A1216","Prochloron didemni"],["NCBITaxon%3A3115413","Prochloron didemni E1"],["NCBITaxon%3A2721547","Prochloron didemni IMFR-1"],["NCBITaxon%3A910450","Prochloron didemni P1-Palau"],["NCBITaxon%3A910454","Prochloron didemni P2-Fiji"],["NCBITaxon%3A910458","Prochloron didemni P3-Solomon"]]},{"id":"NCBITaxon:1935","l":"Streptomyces violaceoruber","na":3,"nb":7,"a":[["polyketides/granaticin.yaml","granaticin"],["polyketides/kendomycin.yaml","kendomycin"],["terpenoids/methylenomycin-a.yaml","methylenomycin A"]],"b":[["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A67291","Streptomyces cyanocolor"],["NCBITaxon%3A80860","Streptomyces cyanogenus"],["NCBITaxon%3A1916","Streptomyces lividans"],["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A68277","Streptomyces tricolor"]]},{"id":"NCBITaxon:1938","l":"Streptomyces viridochromogenes","na":3,"nb":7,"a":[["amino_acids_and_peptides/glycinocin-a.yaml","glycinocin A"],["carbohydrates/avilamycin-a.yaml","avilamycin A"],["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"]],"b":[["NCBITaxon%3A1969","Streptomyces chartreusis"],["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A1938","Streptomyces viridochromogenes"],["NCBITaxon%3A591159","Streptomyces viridochromogenes DSM 40736"],["NCBITaxon%3A285521","Streptomyces viridochromogenes subsp. komabensis"],["NCBITaxon%3A285503","Streptomyces viridochromogenes subsp. sulfomycini"]]},{"id":"NCBITaxon:37463","l":"Phoma","na":7,"nb":3,"a":[["alkaloids/dihydroisoflavipucine.yaml","dihydroisoflavipucine"],["carbohydrates/kanamycin-a.yaml","kanamycin A"],["polyketides/nystatin-a1.yaml","nystatin A1"],["polyketides/squalestatin-s1.yaml","squalestatin S1"],["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"],["unclassified/eupenifeldin.yaml","eupenifeldin"]],"b":[["NCBITaxon%3A73001","Phoma herbarum"],["NCBITaxon%3A196108","Phoma leveillei"],["NCBITaxon%3A1707701","Phoma sp."]]},{"id":"NCBITaxon:1877","l":"Micromonospora echinospora","na":6,"nb":3,"a":[["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/gentamicin-2.yaml","gentamicin"],["carbohydrates/gentamicin.yaml","gentamicin"],["polyketides/1-6-dihydro-8-propylanthraquinone.yaml","1,6-dihydro-8-propylanthraquinone"],["polyketides/calicheamicin.yaml","calicheamicin"],["polyketides/tiacumicin-b.yaml","tiacumicin B"]],"b":[["NCBITaxon%3A1877","Micromonospora echinospora"],["NCBITaxon%3A704114","Micromonospora echinospora subsp. challisensis"],["NCBITaxon%3A145854","Micromonospora pallida"]]},{"id":"NCBITaxon:1920","l":"Streptomyces nigrescens","na":6,"nb":3,"a":[["alkaloids/5athq-10a.yaml","5aTHQ-10a"],["alkaloids/5athq-9i.yaml","5aTHQ-9i"],["alkaloids/5athq-9n.yaml","5aTHQ-9n"],["alkaloids/stams-9i.yaml","STAMs-9i"],["alkaloids/stams-9n.yaml","STAMs-9n"],["polyketides/phoslactomycin-b.yaml","phoslactomycin B"]],"b":[["NCBITaxon%3A1128671","Microvirga arabica"],["NCBITaxon%3A249582","Streptomyces libani subsp. rufus"],["NCBITaxon%3A1920","Streptomyces nigrescens"]]},{"id":"NCBITaxon:2303152","l":"Anabaena minutissima","na":3,"nb":6,"a":[["amino_acids_and_peptides/minutissamide-a.yaml","minutissamide A"],["amino_acids_and_peptides/minutissamide-b.yaml","minutissamide B"],["amino_acids_and_peptides/puwainaphycin-f.yaml","puwainaphycin F"]],"b":[["NCBITaxon%3A2303152","Anabaena minutissima"],["NCBITaxon%3A2811940","Anabaena minutissima BEA0300B"],["NCBITaxon%3A2929142","Anabaena minutissima BEA 0025"],["NCBITaxon%3A2929143","Anabaena minutissima BEA 0026"],["NCBITaxon%3A2692882","Anabaena minutissima FACHB-250"],["NCBITaxon%3A2303153","Anabaena minutissima UTEX B 1613"]]},{"id":"NCBITaxon:5149","l":"Chaetomium","na":3,"nb":6,"a":[["alkaloids/chaetoglobosin-c.yaml","chaetoglobosin C"],["polyketides/chaetoviridin-e.yaml","chaetoviridin E"],["polyketides/terrestric-acid.yaml","terrestric acid"]],"b":[["NCBITaxon%3A904709","Chaetomium cochliodes"],["NCBITaxon%3A1854472","Chaetomium fimeti"],["NCBITaxon%3A38033","Chaetomium globosum"],["NCBITaxon%3A1769349","Chaetomium sp."],["NCBITaxon%3A1170767","Chaetomium strumarium"],["NCBITaxon%3A1854479","Chaetomium tenue"]]},{"id":"NCBITaxon:129921","l":"","na":5,"nb":3,"a":[["amino_acids_and_peptides/keratinimicin-a.yaml","keratinimicin A"],["amino_acids_and_peptides/keratinimicin-b.yaml","keratinimicin B"],["amino_acids_and_peptides/keratinimicin-c.yaml","keratinimicin C"],["amino_acids_and_peptides/keratinimicin-d.yaml","keratinimicin D"],["polyketides/eco-0501.yaml","ECO-0501"]],"b":[["NCBITaxon%3A129921","Amycolatopsis keratiniphila"],["NCBITaxon%3A227715","Amycolatopsis keratiniphila subsp. keratiniphila"],["NCBITaxon%3A208442","Amycolatopsis keratiniphila subsp. nogabecina"]]},{"id":"NCBITaxon:193461","l":"Streptomyces aureus","na":3,"nb":5,"a":[["amino_acids_and_peptides/thiostrepton.yaml","thiostrepton"],["polyketides/colabomycin-e.yaml","colabomycin E"],["terpenoids/napyradiomycin.yaml","napyradiomycin"]],"b":[["NCBITaxon%3A2071609","Marisediminitalea oceani"],["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A193461","Streptomyces aureus"],["NCBITaxon%3A2706486","Streptomyces aureus subsp. suzhoueusis"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:536","l":"Chromobacterium violaceum","na":3,"nb":5,"a":[["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["unclassified/romidepsin.yaml","romidepsin"]],"b":[["NCBITaxon%3A1382803","Chromobacterium amazonense"],["NCBITaxon%3A686831","Chromobacterium piscinae"],["NCBITaxon%3A3055134","Chromobacterium sp. CCUG 30098"],["NCBITaxon%3A536","Chromobacterium violaceum"],["NCBITaxon%3A243365","Chromobacterium violaceum ATCC 12472"]]},{"id":"NCBITaxon:1038928","l":"Streptomyces xinghaiensis","na":4,"nb":3,"a":[["alkaloids/dixiamycin-a.yaml","dixiamycin A"],["alkaloids/xiamycin-a.yaml","xiamycin A"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"],["polyketides/oligomycin.yaml","oligomycin"]],"b":[["NCBITaxon%3A1906","Streptomyces fradiae"],["NCBITaxon%3A1038928","Streptomyces xinghaiensis"],["NCBITaxon%3A1038929","Streptomyces xinghaiensis S187"]]},{"id":"NCBITaxon:1167","l":"Anabaena sp.","na":4,"nb":3,"a":[["alkaloids/schizokinen.yaml","schizokinen"],["amino_acids_and_peptides/puwainaphycin-a.yaml","puwainaphycin A"],["amino_acids_and_peptides/puwainaphycin-b.yaml","puwainaphycin B"],["amino_acids_and_peptides/puwainaphycin-d.yaml","puwainaphycin D"]],"b":[["NCBITaxon%3A1167","Anabaena sp."],["NCBITaxon%3A103690","Nostoc sp. PCC 7120 = FACHB-418"],["NCBITaxon%3A264691","Trichormus variabilis"]]},{"id":"NCBITaxon:184932","l":"Cylindrospermum licheniforme","na":3,"nb":4,"a":[["polyketides/cylindrocyclophane-d.yaml","Cylindrocyclophane D"],["polyketides/cylindrocyclophane-e.yaml","Cylindrocyclophane E"],["polyketides/cylindrocyclophane-f.yaml","Cylindrocyclophane F"]],"b":[["NCBITaxon%3A184932","Cylindrospermum licheniforme"],["NCBITaxon%3A1382629","Cylindrospermum licheniforme CCALA 995"],["NCBITaxon%3A1982948","Cylindrospermum licheniforme ISB 74"],["NCBITaxon%3A379530","Cylindrospermum licheniforme UTEX B 2014"]]},{"id":"NCBITaxon:1961","l":"Streptomyces virginiae","na":3,"nb":4,"a":[["alkaloids/endophenazine-a.yaml","endophenazine A"],["polyketides/monensin.yaml","monensin"],["unclassified/virginiamycin-s1.yaml","virginiamycin S1"]],"b":[["NCBITaxon%3A1535204","Metabacillus endolithicus"],["NCBITaxon%3A67381","Streptomyces violascens"],["NCBITaxon%3A1961","Streptomyces virginiae"],["NCBITaxon%3A3478784","Streptomyces virginiae subsp. lipoxae (nom. nud.)"]]},{"id":"NCBITaxon:1969","l":"Streptomyces chartreusis","na":4,"nb":3,"a":[["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"],["polyketides/a23187.yaml","A23187"],["shikimates_and_phenylpropanoids/chartreusin.yaml","chartreusin"]],"b":[["NCBITaxon%3A1969","Streptomyces chartreusis"],["NCBITaxon%3A1079986","Streptomyces chartreusis NRRL 12338"],["NCBITaxon%3A1079985","Streptomyces chartreusis NRRL 3882"]]},{"id":"NCBITaxon:2021","l":"Thermobifida fusca","na":3,"nb":4,"a":[["amino_acids_and_peptides/fuscachelin-a.yaml","Fuscachelin A"],["amino_acids_and_peptides/fuscachelin-b.yaml","Fuscachelin B"],["amino_acids_and_peptides/fuscachelin-c.yaml","Fuscachelin C"]],"b":[["NCBITaxon%3A2021","Thermobifida fusca"],["NCBITaxon%3A1223522","Thermobifida fusca NBRC 14071 = JCM 3263"],["NCBITaxon%3A1169414","Thermobifida fusca TM51"],["NCBITaxon%3A269800","Thermobifida fusca YX"]]},{"id":"NCBITaxon:29442","l":"Pseudomonas tolaasii","na":3,"nb":4,"a":[["unclassified/tolaasin-a.yaml","tolaasin A"],["unclassified/tolaasin-f.yaml","tolaasin F"],["unclassified/tolaasin-i.yaml","tolaasin I"]],"b":[["NCBITaxon%3A29442","Pseudomonas tolaasii"],["NCBITaxon%3A1161101","Pseudomonas tolaasii 6264"],["NCBITaxon%3A564423","Pseudomonas tolaasii NCPPB 2192"],["NCBITaxon%3A1030145","Pseudomonas tolaasii PMS117"]]},{"id":"NCBITaxon:33","l":"Myxococcus fulvus","na":3,"nb":4,"a":[["unclassified/fulvuthiacene-a.yaml","Fulvuthiacene A"],["unclassified/fulvuthiacene-b.yaml","Fulvuthiacene B"],["unclassified/myxothiazol.yaml","myxothiazol"]],"b":[["NCBITaxon%3A33","Myxococcus fulvus"],["NCBITaxon%3A1334629","Myxococcus fulvus 124B02"],["NCBITaxon%3A483219","Myxococcus fulvus HW-1"],["NCBITaxon%3A675525","Myxococcus fulvus Mx f65"]]},{"id":"NCBITaxon:380021","l":"Pseudomonas protegens","na":3,"nb":4,"a":[["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"],["unclassified/pf-5-pyoverdine.yaml","Pf-5 pyoverdine"]],"b":[["NCBITaxon%3A380021","Pseudomonas protegens"],["NCBITaxon%3A1420599","Pseudomonas protegens Cab57"],["NCBITaxon%3A1124983","Pseudomonas protegens CHA0"],["NCBITaxon%3A220664","Pseudomonas protegens Pf-5"]]},{"id":"NCBITaxon:43662","l":"Pseudoalteromonas piscicida","na":4,"nb":3,"a":[["alkaloids/2-3-4-5-tetrabromopyrrole.yaml","2,3,4,5-tetrabromopyrrole"],["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["alkaloids/pseudochelin-a.yaml","pseudochelin A"]],"b":[["NCBITaxon%3A43662","Pseudoalteromonas piscicida"],["NCBITaxon%3A1279016","Pseudoalteromonas piscicida ATCC 15057"],["NCBITaxon%3A53249","Pseudoalteromonas sp."]]},{"id":"NCBITaxon:55404","l":"Streptomyces netropsis","na":3,"nb":4,"a":[["alkaloids/congocidine.yaml","congocidine"],["alkaloids/distamycin.yaml","distamycin"],["carbohydrates/spectinomycin.yaml","spectinomycin"]],"b":[["NCBITaxon%3A1914","Streptomyces lavendulae"],["NCBITaxon%3A68190","Streptomyces lavendulae subsp. colombiensis"],["NCBITaxon%3A55404","Streptomyces netropsis"],["NCBITaxon%3A76729","Streptomyces syringium"]]},{"id":"NCBITaxon:58352","l":"Kitasatospora mediocidica","na":3,"nb":4,"a":[["alkaloids/lyngbyatoxin.yaml","lyngbyatoxin"],["fatty_acids/mediomycin-a-2.yaml","mediomycin A"],["fatty_acids/mediomycin-a.yaml","mediomycin A"]],"b":[["NCBITaxon%3A58352","Kitasatospora mediocidica"],["NCBITaxon%3A1449347","Kitasatospora mediocidica KCTC 9733"],["NCBITaxon%3A68180","Streptomyces blastmyceticus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:67294","l":"Streptomyces filamentosus","na":4,"nb":3,"a":[["amino_acids_and_peptides/arylomycin.yaml","arylomycin"],["amino_acids_and_peptides/napsamycin-c.yaml","napsamycin C"],["amino_acids_and_peptides/napsamycin-d.yaml","napsamycin D"],["unclassified/daptomycin.yaml","daptomycin"]],"b":[["NCBITaxon%3A67294","Streptomyces filamentosus"],["NCBITaxon%3A457430","Streptomyces filamentosus NRRL 11379"],["NCBITaxon%3A457431","Streptomyces filamentosus NRRL 15998"]]},{"id":"NCBITaxon:83451","l":"Archangium violaceum","na":4,"nb":3,"a":[["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["alkaloids/myxochelin-n.yaml","myxochelin N"],["alkaloids/myxochelin-o.yaml","myxochelin O"]],"b":[["NCBITaxon%3A48","Archangium gephyra"],["NCBITaxon%3A83451","Archangium violaceum"],["NCBITaxon%3A1406225","Archangium violaceum Cb vi76"]]},{"id":"NCBITaxon:1885","l":"Streptomyces actuosus","na":3,"nb":3,"a":[["alkaloids/staurosporine-2.yaml","staurosporine"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/nosiheptide-2.yaml","nosiheptide"]],"b":[["NCBITaxon%3A1280","Staphylococcus aureus"],["NCBITaxon%3A1885","Streptomyces actuosus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:1905","l":"Streptomyces exfoliatus","na":3,"nb":3,"a":[["alkaloids/carquinostatin-a.yaml","carquinostatin A"],["alkaloids/carquinostatin-b.yaml","carquinostatin B"],["unclassified/valinomycin-2.yaml","valinomycin"]],"b":[["NCBITaxon%3A1905","Streptomyces exfoliatus"],["NCBITaxon%3A1440059","Streptomyces exfoliatus DSM 41693"],["NCBITaxon%3A1873719","Streptomyces hydrogenans"]]},{"id":"NCBITaxon:1950","l":"Streptomyces peucetius","na":3,"nb":3,"a":[["amino_acids_and_peptides/peucechelin.yaml","peucechelin"],["polyketides/daunorubicin.yaml","daunorubicin"],["polyketides/doxorubicin.yaml","doxorubicin"]],"b":[["NCBITaxon%3A1950","Streptomyces peucetius"],["NCBITaxon%3A55158","Streptomyces peucetius subsp. caesius"],["NCBITaxon%3A316280","Streptomyces peucetius subsp. caesius ATCC 27952"]]},{"id":"NCBITaxon:1956","l":"Streptomyces diastaticus","na":3,"nb":3,"a":[["alkaloids/diastaphenazine.yaml","diastaphenazine"],["alkaloids/izumiphenazine-c.yaml","izumiphenazine C"],["polyketides/rimocidin.yaml","rimocidin"]],"b":[["NCBITaxon%3A285564","Streptomyces ardesiacus"],["NCBITaxon%3A1956","Streptomyces diastaticus"],["NCBITaxon%3A68040","Streptomyces diastaticus subsp. diastaticus"]]},{"id":"NCBITaxon:67299","l":"Streptomyces flavogriseus","na":3,"nb":3,"a":[["alkaloids/holomycin.yaml","holomycin"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["polyketides/xantholipin.yaml","xantholipin"]],"b":[["NCBITaxon%3A67299","Streptomyces flavogriseus"],["NCBITaxon%3A52258","Streptomyces flavovirens"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:2062","l":"Streptomycetaceae","na":2,"nb":32318,"a":[["alkaloids/carbazomycin-b.yaml","carbazomycin B"],["unclassified/quinomycin.yaml","quinomycin"]],"b":[["NCBITaxon%3A2784346","Actinacidiphila acididurans"],["NCBITaxon%3A2873382","Actinacidiphila acidipaludis"],["NCBITaxon%3A380248","Actinacidiphila alni"],["NCBITaxon%3A1436133","Actinacidiphila bryophytorum"],["NCBITaxon%3A887465","Actinacidiphila cocklensis"],["NCBITaxon%3A2053013","Actinacidiphila epipremni"]]},{"id":"NCBITaxon:379","l":"Rhizobium","na":2,"nb":5539,"a":[["alkaloids/sesbanimide-c.yaml","sesbanimide C"],["amino_acids_and_peptides/syringolin-a-2.yaml","syringolin A"]],"b":[["NCBITaxon%3A2934936","Allorhizobium sonneratiae"],["NCBITaxon%3A2041385","Arminella tumorigenes"],["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A1355477","Bradyrhizobium diazoefficiens"],["NCBITaxon%3A224911","Bradyrhizobium diazoefficiens USDA 110"],["NCBITaxon%3A29448","Bradyrhizobium elkanii"]]},{"id":"NCBITaxon:44249","l":"Paenibacillus","na":2,"nb":5352,"a":[["alkaloids/paenilamicin.yaml","paenilamicin"],["unclassified/paenibacterin.yaml","paenibacterin"]],"b":[["NCBITaxon%3A1531483","Candidatus Paenibacillus aerius"],["NCBITaxon%3A1531475","Candidatus Paenibacillus castillanus"],["NCBITaxon%3A1515745","Candidatus Paenibacillus guadalajarensis"],["NCBITaxon%3A1531482","Candidatus Paenibacillus hispaniensis"],["NCBITaxon%3A1531476","Candidatus Paenibacillus hominis"],["NCBITaxon%3A1515744","Candidatus Paenibacillus ilicicola"]]},{"id":"NCBITaxon:613","l":"Serratia","na":2,"nb":2177,"a":[["alkaloids/serratiochelin-b.yaml","serratiochelin B"],["alkaloids/serratiochelin-c.yaml","serratiochelin C"]],"b":[["NCBITaxon%3A3076559","Prodigiosinella aquatilis"],["NCBITaxon%3A28242","secondary symbiont of Acyrthosiphon pisum"],["NCBITaxon%3A1924982","secondary symbiont of Schizolachnus pineti"],["NCBITaxon%3A207488","secondary symbiont type-R of Aphis craccivora"],["NCBITaxon%3A207491","secondary symbiont type-R of Cinara cupressi"],["NCBITaxon%3A207493","secondary symbiont type-R of Cinara tujafilina"]]},{"id":"NCBITaxon:54304","l":"Planktothrix","na":2,"nb":1080,"a":[["alkaloids/saxitoxin.yaml","saxitoxin"],["unclassified/cyanopeptolin-1138.yaml","cyanopeptolin 1138"]],"b":[["NCBITaxon%3A1160","Planktothrix agardhii"],["NCBITaxon%3A358557","Planktothrix agardhii 0ES34S1"],["NCBITaxon%3A2884158","Planktothrix agardhii 1025"],["NCBITaxon%3A2884159","Planktothrix agardhii 1026"],["NCBITaxon%3A2884160","Planktothrix agardhii 1027"],["NCBITaxon%3A2884161","Planktothrix agardhii 1029"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":2,"nb":1075,"a":[["alkaloids/acinetobactin.yaml","acinetobactin"],["amino_acids_and_peptides/fimsbactin-a.yaml","fimsbactin A"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A1311139","Acinetobacter baumannii 016901DP_1"],["NCBITaxon%3A1311140","Acinetobacter baumannii 016901DP_2"],["NCBITaxon%3A1310784","Acinetobacter baumannii 1007214"],["NCBITaxon%3A1310751","Acinetobacter baumannii 1022959"],["NCBITaxon%3A1310586","Acinetobacter baumannii 1031433"]]},{"id":"NCBITaxon:55080","l":"Brevibacillus","na":2,"nb":774,"a":[["alkaloids/ulbactin-f.yaml","ulbactin F"],["alkaloids/ulbactin-g.yaml","ulbactin G"]],"b":[["NCBITaxon%3A51101","Brevibacillus agri"],["NCBITaxon%3A1444307","Brevibacillus agri 5-2"],["NCBITaxon%3A1246477","Brevibacillus agri BAB-2500"],["NCBITaxon%3A2570228","Brevibacillus antibioticus"],["NCBITaxon%3A927786","Brevibacillus aydinogluensis"],["NCBITaxon%3A45462","Brevibacillus borstelensis"]]},{"id":"NCBITaxon:149698","l":"Massilia","na":2,"nb":707,"a":[["unclassified/empedopeptin.yaml","empedopeptin"],["unclassified/massiliachelin.yaml","Massiliachelin"]],"b":[["NCBITaxon%3A1904440","Duganella sp."],["NCBITaxon%3A453817","Massilia aerilata"],["NCBITaxon%3A1811226","Massilia agilis"],["NCBITaxon%3A1886785","Massilia agri"],["NCBITaxon%3A2892444","Massilia agrisoli"],["NCBITaxon%3A286638","Massilia alkalitolerans"]]},{"id":"NCBITaxon:68","l":"Lysobacter","na":2,"nb":501,"a":[["unclassified/lysobactin.yaml","lysobactin"],["unclassified/lysocin-e.yaml","lysocin E"]],"b":[["NCBITaxon%3A488485","Luteimonas marina"],["NCBITaxon%3A1582807","Lysobacter agri"],["NCBITaxon%3A84531","Lysobacter antibioticus"],["NCBITaxon%3A1286308","Lysobacter antibioticus HS124"],["NCBITaxon%3A2795387","Lysobacter arenosi"],["NCBITaxon%3A3038776","Lysobacter arvi"]]},{"id":"NCBITaxon:2000","l":"Streptosporangium","na":2,"nb":415,"a":[["polyketides/hexaricin-c.yaml","hexaricin C"],["polyketides/ws-79089a.yaml","WS 79089A"]],"b":[["NCBITaxon%3A47482","Sphaerisporangium cinnabarinum"],["NCBITaxon%3A46189","Sphaerisporangium viridialbum"],["NCBITaxon%3A2932830","Sphaerisporangium viridialbum subsp. reducens"],["NCBITaxon%3A47479","Streptosporangium album"],["NCBITaxon%3A1682748","Streptosporangium algeriense"],["NCBITaxon%3A2002","Streptosporangium amethystogenes"]]},{"id":"NCBITaxon:77022","l":"Cylindrospermopsis raciborskii","na":2,"nb":296,"a":[["alkaloids/7-epi-cylindrospermopsin.yaml","7-epi-cylindrospermopsin"],["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"]],"b":[["NCBITaxon%3A77022","Cylindrospermopsis raciborskii"],["NCBITaxon%3A3345092","Cylindrospermopsis raciborskii 1523720"],["NCBITaxon%3A543817","Cylindrospermopsis raciborskii 1LT32S01"],["NCBITaxon%3A469631","Cylindrospermopsis raciborskii 3-1"],["NCBITaxon%3A3436924","Cylindrospermopsis raciborskii A4"],["NCBITaxon%3A1382247","Cylindrospermopsis raciborskii AK1"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":2,"nb":287,"a":[["alkaloids/vibriobactin-2.yaml","vibriobactin"],["alkaloids/vibriobactin.yaml","vibriobactin"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A666","Vibrio cholerae"],["NCBITaxon%3A693741","Vibrio cholerae 0139-ARG"],["NCBITaxon%3A1294144","Vibrio cholerae 01-1751"],["NCBITaxon%3A592313","Vibrio cholerae 12129(1)"],["NCBITaxon%3A412966","Vibrio cholerae 1587"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":2,"nb":264,"a":[["amino_acids_and_peptides/vibrioferrin-2.yaml","vibrioferrin"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]],"b":[["NCBITaxon%3A663","Vibrio alginolyticus"],["NCBITaxon%3A29494","Vibrio furnissii"],["NCBITaxon%3A675811","Vibrio furnissii CIP 102972"],["NCBITaxon%3A670","Vibrio parahaemolyticus"],["NCBITaxon%3A1238231","Vibrio parahaemolyticus 10290"],["NCBITaxon%3A1238195","Vibrio parahaemolyticus 10296"]]},{"id":"NCBITaxon:1835","l":"Saccharopolyspora","na":2,"nb":251,"a":[["amino_acids_and_peptides/kyamicin.yaml","kyamicin"],["polyketides/a83543a.yaml","A83543A"]],"b":[["NCBITaxon%3A3385973","Saccharopolyspora antibiotica"],["NCBITaxon%3A455193","Saccharopolyspora antimicrobica"],["NCBITaxon%3A3457424","Saccharopolyspora antiqui"],["NCBITaxon%3A2530385","Saccharopolyspora aridisoli"],["NCBITaxon%3A1387985","Saccharopolyspora cavernae"],["NCBITaxon%3A418759","Saccharopolyspora cebuensis"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":2,"nb":156,"a":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["unclassified/andalusicin-a.yaml","andalusicin A"]],"b":[["NCBITaxon%3A1428","Bacillus thuringiensis"],["NCBITaxon%3A1340496","Bacillus thuringiensis AKS-7"],["NCBITaxon%3A714359","Bacillus thuringiensis BMB171"],["NCBITaxon%3A1423143","Bacillus thuringiensis Bt18247"],["NCBITaxon%3A1423142","Bacillus thuringiensis Bt18679"],["NCBITaxon%3A527021","Bacillus thuringiensis Bt407"]]},{"id":"NCBITaxon:1154","l":"Spirulina","na":2,"nb":142,"a":[["terpenoids/carotene.yaml","β-carotene"],["terpenoids/zeaxanthin.yaml","zeaxanthin"]],"b":[["NCBITaxon%3A123228","Spirulina laxissima"],["NCBITaxon%3A1236702","Spirulina laxissima SAG 256.80"],["NCBITaxon%3A1628183","Spirulina laxissima SERB 53"],["NCBITaxon%3A2822060","Spirulina laxissima SV001"],["NCBITaxon%3A2834462","Spirulina laxissima TKTI Uz-106"],["NCBITaxon%3A518102","Spirulina lonar"]]},{"id":"NCBITaxon:102234","l":"Cyanobacterium","na":2,"nb":127,"a":[["amino_acids_and_peptides/aeruginosin-98-c.yaml","aeruginosin 98-C"],["unclassified/nostopeptolide-a2.yaml","nostopeptolide A2"]],"b":[["NCBITaxon%3A379064","Cyanobacterium aponinum"],["NCBITaxon%3A2676140","Cyanobacterium aponinum 0216"],["NCBITaxon%3A2862632","Cyanobacterium aponinum 0TAC 3"],["NCBITaxon%3A2862635","Cyanobacterium aponinum 0TAC 8"],["NCBITaxon%3A2867950","Cyanobacterium aponinum 11TAC23"],["NCBITaxon%3A3090662","Cyanobacterium aponinum AL20115"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":116,"nb":2,"a":[["alkaloids/altemicidin.yaml","altemicidin"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"],["alkaloids/aurachin-ss.yaml","aurachin SS"],["alkaloids/berninamycin-j.yaml","berninamycin J"],["alkaloids/berninamycin-k.yaml","berninamycin K"]],"b":[["NCBITaxon%3A324833","Streptomyces lasalocidi"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":2,"nb":88,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["terpenoids/xanthan.yaml","xanthan"]],"b":[["NCBITaxon%3A298","Pseudomonas marginalis"],["NCBITaxon%3A56448","Xanthomonas arboricola"],["NCBITaxon%3A339","Xanthomonas campestris"],["NCBITaxon%3A1281290","Xanthomonas campestris CFBP 5824"],["NCBITaxon%3A1281289","Xanthomonas campestris CFBP 5825"],["NCBITaxon%3A1182783","Xanthomonas campestris JX"]]},{"id":"NCBITaxon:39643","l":"Sorangium","na":2,"nb":83,"a":[["amino_acids_and_peptides/microsclerodermin-m.yaml","microsclerodermin M"],["unclassified/epothilone-b.yaml","epothilone B"]],"b":[["NCBITaxon%3A2093422","Sorangium ambruticinum"],["NCBITaxon%3A2093421","Sorangium arenae"],["NCBITaxon%3A2995308","Sorangium atrum"],["NCBITaxon%3A2093423","Sorangium bulgaricum"],["NCBITaxon%3A56","Sorangium cellulosum"],["NCBITaxon%3A1254432","Sorangium cellulosum So0157-2"]]},{"id":"NCBITaxon:162985","l":"Hapalosiphon","na":2,"nb":74,"a":[["alkaloids/12-epi-hapalindole-c-isonitrile.yaml","12-epi-hapalindole C isonitrile"],["alkaloids/12-epi-hapalindole-e.yaml","12-epi-hapalindole E"]],"b":[["NCBITaxon%3A1987164","cf. Hapalosiphon sp. SJRP32526_10"],["NCBITaxon%3A1987163","cf. Hapalosiphon sp. SJRP32527_9"],["NCBITaxon%3A1941201","Hapalosiphon arboreus"],["NCBITaxon%3A1941202","Hapalosiphon arboreus 3OW05S02"],["NCBITaxon%3A1941203","Hapalosiphon arboreus 3OW05S03"],["NCBITaxon%3A3702225","Hapalosiphon arboreus 81"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":2,"nb":56,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["terpenoids/mk-8.yaml","MK-8"]],"b":[["NCBITaxon%3A61645","Enterobacter asburiae"],["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A1328422","Enterobacter cloacae BIDMC 33A"],["NCBITaxon%3A1439324","Enterobacter cloacae BIDMC 66"],["NCBITaxon%3A1439325","Enterobacter cloacae BIDMC 67"],["NCBITaxon%3A1329846","Enterobacter cloacae BIDMC 8"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":2,"nb":47,"a":[["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["alkaloids/yersiniabactin.yaml","yersiniabactin"]],"b":[["NCBITaxon%3A630","Yersinia enterocolitica"],["NCBITaxon%3A947561","Yersinia enterocolitica IP2222"],["NCBITaxon%3A1243181","Yersinia enterocolitica IP 10393"],["NCBITaxon%3A1443113","Yersinia enterocolitica LC20"],["NCBITaxon%3A947557","Yersinia enterocolitica NFO"],["NCBITaxon%3A150052","Yersinia enterocolitica subsp. enterocolitica"]]},{"id":"NCBITaxon:65496","l":"Actinoalloteichus","na":2,"nb":37,"a":[["alkaloids/marinacarboline-c.yaml","marinacarboline C"],["unclassified/cyanogramide.yaml","cyanogramide"]],"b":[["NCBITaxon%3A238876","Actinoalloteichus alkalophilus"],["NCBITaxon%3A2893586","Actinoalloteichus caeruleus"],["NCBITaxon%3A1120930","Actinoalloteichus caeruleus DSM 43889"],["NCBITaxon%3A1612552","Actinoalloteichus fjordicus"],["NCBITaxon%3A1470176","Actinoalloteichus hoggarensis"],["NCBITaxon%3A340345","Actinoalloteichus hymeniacidonis"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":2,"nb":35,"a":[["alkaloids/agrobactin.yaml","agrobactin"],["amino_acids_and_peptides/aztreonam.yaml","aztreonam"]],"b":[["NCBITaxon%3A1183421","Agrobacterium fabacearum CFBP 5771"],["NCBITaxon%3A1300224","Agrobacterium fabacearum P4"],["NCBITaxon%3A1183429","Agrobacterium fabacearum S56"],["NCBITaxon%3A1368455","Agrobacterium fabacearum str. Foundi"],["NCBITaxon%3A1183430","Agrobacterium fabacearum TT111"],["NCBITaxon%3A1176649","Agrobacterium fabrum"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":30,"nb":2,"a":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["amino_acids_and_peptides/ditryptophenaline.yaml","(-)-ditryptophenaline"],["amino_acids_and_peptides/imizoquin-a.yaml","imizoquin A"]],"b":[["NCBITaxon%3A5059","Aspergillus flavus"],["NCBITaxon%3A332952","Aspergillus flavus NRRL3357"]]},{"id":"NCBITaxon:2029","l":"Kibdelosporangium","na":2,"nb":29,"a":[["amino_acids_and_peptides/jbir-78.yaml","JBIR-78"],["amino_acids_and_peptides/jbir-95.yaml","JBIR-95"]],"b":[["NCBITaxon%3A2030","Kibdelosporangium aridum"],["NCBITaxon%3A145995","Kibdelosporangium aridum subsp. aridum"],["NCBITaxon%3A145996","Kibdelosporangium aridum subsp. largum"],["NCBITaxon%3A1365924","Kibdelosporangium banguiense"],["NCBITaxon%3A1882231","Kibdelosporangium kanagawaense"],["NCBITaxon%3A1497396","Kibdelosporangium lantanae"]]},{"id":"NCBITaxon:374162","l":"Nostoc carneum","na":2,"nb":29,"a":[["amino_acids_and_peptides/tenuecyclamide-a.yaml","tenuecyclamide A"],["amino_acids_and_peptides/tenuecyclamide-c.yaml","tenuecyclamide C"]],"b":[["NCBITaxon%3A374162","Nostoc carneum"],["NCBITaxon%3A1342287","Nostoc carneum AUS-JR/DB/NT-016"],["NCBITaxon%3A1887370","Nostoc carneum AUS-JR/MT/NT-103"],["NCBITaxon%3A1887371","Nostoc carneum AUS-JR/MT/NT-125"],["NCBITaxon%3A721129","Nostoc carneum BF2"],["NCBITaxon%3A1562734","Nostoc carneum BTA38"]]},{"id":"NCBITaxon:1360","l":"Lactococcus lactis subsp. lactis","na":2,"nb":25,"a":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"],["amino_acids_and_peptides/nisin-a.yaml","nisin A"]],"b":[["NCBITaxon%3A1358","Lactococcus lactis"],["NCBITaxon%3A203404","Lactococcus lactis subsp. hordniae"],["NCBITaxon%3A1348656","Lactococcus lactis subsp. hordniae NBRC 100931"],["NCBITaxon%3A1360","Lactococcus lactis subsp. lactis"],["NCBITaxon%3A1379274","Lactococcus lactis subsp. lactis 1AA59"],["NCBITaxon%3A1137134","Lactococcus lactis subsp. lactis A12"]]},{"id":"NCBITaxon:312885","l":"Raphidiopsis mediterranea","na":2,"nb":25,"a":[["alkaloids/anatoxin-a.yaml","anatoxin-a"],["alkaloids/homoanatoxin-a.yaml","homoanatoxin-a"]],"b":[["NCBITaxon%3A312885","Raphidiopsis mediterranea"],["NCBITaxon%3A1137648","Raphidiopsis mediterranea 07-04"],["NCBITaxon%3A1224695","Raphidiopsis mediterranea AB2011/37"],["NCBITaxon%3A638004","Raphidiopsis mediterranea CHAB1350"],["NCBITaxon%3A638005","Raphidiopsis mediterranea CHAB1353"],["NCBITaxon%3A638006","Raphidiopsis mediterranea CHAB1355"]]},{"id":"NCBITaxon:55","l":"Polyangium","na":2,"nb":25,"a":[["amino_acids_and_peptides/glidobactin-b.yaml","glidobactin B"],["amino_acids_and_peptides/glidobactin-c.yaml","glidobactin C"]],"b":[["NCBITaxon%3A2567896","Polyangium aurulentum"],["NCBITaxon%3A889272","Polyangium fumosum"],["NCBITaxon%3A2829994","Polyangium jinanense"],["NCBITaxon%3A1653851","Polyangium minor"],["NCBITaxon%3A2995306","Polyangium mundeleinium"],["NCBITaxon%3A1653852","Polyangium rugiseptum"]]},{"id":"NCBITaxon:369723","l":"Salinispora tropica CNB-440","na":23,"nb":2,"a":[["alkaloids/lymphostin.yaml","lymphostin"],["alkaloids/lymphostinol.yaml","lymphostinol"],["alkaloids/neolymphostin-b-2.yaml","neolymphostin B"],["alkaloids/neolymphostinol-b.yaml","neolymphostinol B"],["amino_acids_and_peptides/salinosporamide-a.yaml","salinosporamide A"],["fatty_acids/salinipostin-a.yaml","Salinipostin A"]],"b":[["NCBITaxon%3A168695","Salinispora tropica"],["NCBITaxon%3A369723","Salinispora tropica CNB-440"]]},{"id":"NCBITaxon:40559","l":"Botrytis cinerea","na":23,"nb":2,"a":[["terpenoids/1-epibotrydial.yaml","1-epibotrydial"],["terpenoids/10-dehydroxy-dihydrobotrydialone.yaml","10-dehydroxy dihydrobotrydialone"],["terpenoids/10-epi-dihydrobotrydial.yaml","10-epi-dihydrobotrydial"],["terpenoids/10-oxo-dihydrobotrydial.yaml","10-Oxo-dihydrobotrydial"],["terpenoids/10-oxodehydrodihydrobotrydial.yaml","10-Oxodehydrodihydrobotrydial"],["terpenoids/10-oxodihydrobotry-1-9-4-5-diendial.yaml","10-Oxodihydrobotry-1(9),4(5)-diendial"]],"b":[["NCBITaxon%3A40559","Botrytis cinerea"],["NCBITaxon%3A999810","Botrytis cinerea T4"]]},{"id":"NCBITaxon:190968","l":"Hormoscilla spongeliae","na":2,"nb":22,"a":[["shikimates_and_phenylpropanoids/2-4-dibromo-6-2-4-dibromophenoxy-phenol.yaml","2,4-dibromo-6-(2,4-dibromophenoxy)phenol"],["shikimates_and_phenylpropanoids/3-5-dibromo-2-2-4-dibromophenoxy-phenol.yaml","3,5-dibromo-2-(2,4-dibromophenoxy)phenol"]],"b":[["NCBITaxon%3A1490264","Hormoscilla cf. spongeliae DRTO-57.2"],["NCBITaxon%3A190968","Hormoscilla spongeliae"],["NCBITaxon%3A281453","Hormoscilla spongeliae 35P1"],["NCBITaxon%3A281454","Hormoscilla spongeliae 39P1"],["NCBITaxon%3A276773","Hormoscilla spongeliae DYS02155"],["NCBITaxon%3A276772","Hormoscilla spongeliae DYS02158"]]},{"id":"NCBITaxon:224458","l":"Pyxidicoccus","na":2,"nb":21,"a":[["polyketides/pyxipyrrolone-a.yaml","pyxipyrrolone A"],["polyketides/pyxipyrrolone-b.yaml","pyxipyrrolone B"]],"b":[["NCBITaxon%3A2709663","Pyxidicoccus caerfyrddinensis"],["NCBITaxon%3A394095","Pyxidicoccus fallax"],["NCBITaxon%3A2813578","Pyxidicoccus parkwayensis"],["NCBITaxon%3A2023737","Pyxidicoccus sp."],["NCBITaxon%3A3383248","Pyxidicoccus sp. 3LFB2"],["NCBITaxon%3A3383247","Pyxidicoccus sp. 3LG"]]},{"id":"NCBITaxon:305","l":"Ralstonia solanacearum","na":2,"nb":19,"a":[["alkaloids/schizokinen.yaml","schizokinen"],["unclassified/micacocidin.yaml","micacocidin"]],"b":[["NCBITaxon%3A1310165","Ralstonia pseudosolanacearum"],["NCBITaxon%3A305","Ralstonia solanacearum"],["NCBITaxon%3A859656","Ralstonia solanacearum CFBP2957"],["NCBITaxon%3A859655","Ralstonia solanacearum CMR15"],["NCBITaxon%3A1130828","Ralstonia solanacearum FJAT-1458"],["NCBITaxon%3A1130829","Ralstonia solanacearum FJAT-91"]]},{"id":"NCBITaxon:321","l":"Pseudomonas syringae pv. syringae","na":2,"nb":18,"a":[["amino_acids_and_peptides/3-methylarginine.yaml","3-methylarginine"],["unclassified/syringopeptin-25a.yaml","syringopeptin 25A"]],"b":[["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A1449349","Pseudomonas syringae DSM 10604"],["NCBITaxon%3A1154761","Pseudomonas syringae pv. avellanae str. ISPaVe013"],["NCBITaxon%3A1154762","Pseudomonas syringae pv. avellanae str. ISPaVe037"],["NCBITaxon%3A321","Pseudomonas syringae pv. syringae"],["NCBITaxon%3A1357293","Pseudomonas syringae pv. syringae 1212"]]},{"id":"NCBITaxon:455632","l":"Streptomyces griseus subsp. griseus NBRC 13350","na":17,"nb":2,"a":[["alkaloids/grixazone-a.yaml","grixazone A"],["alkaloids/iminimycin-a.yaml","iminimycin A"],["alkaloids/iminimycin-b.yaml","iminimycin B"],["alkaloids/melanin.yaml","melanin"],["carbohydrates/streptomycin.yaml","streptomycin"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"]],"b":[["NCBITaxon%3A1896","Streptomyces bikiniensis"],["NCBITaxon%3A455632","Streptomyces griseus subsp. griseus NBRC 13350"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":2,"nb":16,"a":[["amino_acids_and_peptides/aerobactin.yaml","aerobactin"],["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A1114880","Aeromonas australiensis"],["NCBITaxon%3A1264931","Flavobacterium acidificum"],["NCBITaxon%3A553","Pantoea ananatis"],["NCBITaxon%3A1419326","Pantoea ananatis 15320"],["NCBITaxon%3A932677","Pantoea ananatis AJ13355"],["NCBITaxon%3A1048262","Pantoea ananatis B1-9"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":2,"nb":15,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"],["unclassified/corynebactin.yaml","corynebactin"]],"b":[["NCBITaxon%3A38285","Corynebacterium acetoacidophilum"],["NCBITaxon%3A1718","Corynebacterium glutamicum"],["NCBITaxon%3A196627","Corynebacterium glutamicum ATCC 13032"],["NCBITaxon%3A1079988","Corynebacterium glutamicum ATCC 14067"],["NCBITaxon%3A1204414","Corynebacterium glutamicum K051"],["NCBITaxon%3A1310161","Corynebacterium glutamicum MB001"]]},{"id":"NCBITaxon:55601","l":"Vibrio anguillarum","na":2,"nb":15,"a":[["alkaloids/anguibactin.yaml","anguibactin"],["amino_acids_and_peptides/vanchrobactin.yaml","vanchrobactin"]],"b":[["NCBITaxon%3A1056982","Gordonia phosphorivorans"],["NCBITaxon%3A55601","Vibrio anguillarum"],["NCBITaxon%3A1161910","Vibrio anguillarum 13YK-003"],["NCBITaxon%3A882102","Vibrio anguillarum 775"],["NCBITaxon%3A990314","Vibrio anguillarum 96F"],["NCBITaxon%3A882846","Vibrio anguillarum ATCC 43308"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":2,"nb":14,"a":[["alkaloids/schizokinen.yaml","schizokinen"],["carbohydrates/oxetanocin-a.yaml","oxetanocin A"]],"b":[["NCBITaxon%3A72360","Bacillus mojavensis"],["NCBITaxon%3A1051501","Bacillus mojavensis RO-H-1 = KCTC 3706"],["NCBITaxon%3A1478","Peribacillus simplex"],["NCBITaxon%3A86664","Priestia flexa"],["NCBITaxon%3A1404","Priestia megaterium"],["NCBITaxon%3A592022","Priestia megaterium DSM 319"]]},{"id":"NCBITaxon:69488","l":"Penicillium simplicissimum","na":14,"nb":2,"a":[["polyketides/citreoviridin.yaml","citreoviridin"],["unclassified/andrastin-a.yaml","andrastin A"],["unclassified/okaramine-b.yaml","okaramine B"],["unclassified/okaramine-d.yaml","okaramine D"],["unclassified/paraherquamide.yaml","paraherquamide"],["unclassified/paraherquonin.yaml","paraherquonin"]],"b":[["NCBITaxon%3A1459","Sporosarcina globispora"],["NCBITaxon%3A69488","Penicillium simplicissimum"]]},{"id":"NCBITaxon:1616117","l":"Streptomyces formicae","na":13,"nb":2,"a":[["polyketides/formicamycin-a.yaml","formicamycin A"],["polyketides/formicamycin-b.yaml","formicamycin B"],["polyketides/formicamycin-c.yaml","formicamycin C"],["polyketides/formicamycin-d.yaml","formicamycin D"],["polyketides/formicamycin-e.yaml","formicamycin E"],["polyketides/formicamycin-f.yaml","formicamycin F"]],"b":[["NCBITaxon%3A249409","Hydrogenophaga atypica"],["NCBITaxon%3A1616117","Streptomyces formicae"]]},{"id":"NCBITaxon:406817","l":"Xenorhabdus nematophila ATCC 19061","na":13,"nb":2,"a":[["alkaloids/nematophin.yaml","nematophin"],["amino_acids_and_peptides/rhabdopeptide-1.yaml","rhabdopeptide 1"],["amino_acids_and_peptides/rhabdopeptide-2.yaml","rhabdopeptide 2"],["amino_acids_and_peptides/rhabdopeptide-3.yaml","rhabdopeptide 3"],["amino_acids_and_peptides/rhabdopeptide-4.yaml","rhabdopeptide 4"],["amino_acids_and_peptides/xenortide-a.yaml","xenortide A"]],"b":[["NCBITaxon%3A628","Xenorhabdus nematophila"],["NCBITaxon%3A406817","Xenorhabdus nematophila ATCC 19061"]]},{"id":"NCBITaxon:271848","l":"Burkholderia thailandensis E264","na":12,"nb":2,"a":[["alkaloids/malleobactin-b.yaml","malleobactin B"],["alkaloids/malleobactin-d.yaml","malleobactin D"],["polyketides/malleicyprol.yaml","malleicyprol"],["polyketides/malleilactone.yaml","malleilactone"],["polyketides/thailandamide-lactone.yaml","thailandamide lactone"],["polyketides/thailandamide.yaml","thailandamide"]],"b":[["NCBITaxon%3A57975","Burkholderia thailandensis"],["NCBITaxon%3A271848","Burkholderia thailandensis E264"]]},{"id":"NCBITaxon:33903","l":"Streptomyces avermitilis","na":12,"nb":2,"a":[["alkaloids/melanin.yaml","melanin"],["fatty_acids/butyrolactone.yaml","γ-butyrolactone"],["polyketides/filipin-iii.yaml","filipin III"],["polyketides/oligomycin.yaml","oligomycin"],["polyketides/phthoxazolin.yaml","phthoxazolin"],["terpenoids/avermitilol.yaml","avermitilol"]],"b":[["NCBITaxon%3A33903","Streptomyces avermitilis"],["NCBITaxon%3A227882","Streptomyces avermitilis MA-4680 = NBRC 14893"]]},{"id":"NCBITaxon:47424","l":"Armillaria","na":2,"nb":12,"a":[["carbohydrates/kanamycin-a.yaml","kanamycin A"],["polyketides/nystatin-a1.yaml","nystatin A1"]],"b":[["NCBITaxon%3A1156164","Armillaria altimontana"],["NCBITaxon%3A47425","Armillaria borealis"],["NCBITaxon%3A153910","Armillaria fumosa"],["NCBITaxon%3A108572","Armillaria fuscipes"],["NCBITaxon%3A47427","Armillaria gallica"],["NCBITaxon%3A153913","Armillaria luteobubalina"]]},{"id":"NCBITaxon:47716","l":"Streptomyces olivaceus","na":12,"nb":2,"a":[["alkaloids/prodigiosin-2.yaml","prodigiosin"],["alkaloids/xiamycin-a.yaml","xiamycin A"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["polyketides/elloramycin.yaml","elloramycin"],["polyketides/lobophorin-a.yaml","lobophorin A"],["polyketides/mycemycin-a.yaml","mycemycin A"]],"b":[["NCBITaxon%3A47716","Streptomyces olivaceus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:58340","l":"Streptomyces lavendulae subsp. lavendulae","na":2,"nb":12,"a":[["amino_acids_and_peptides/cycloserine.yaml","cycloserine"],["polyketides/auricin.yaml","auricin"]],"b":[["NCBITaxon%3A1894","Kitasatospora aureofaciens"],["NCBITaxon%3A1914","Streptomyces lavendulae"],["NCBITaxon%3A68190","Streptomyces lavendulae subsp. colombiensis"],["NCBITaxon%3A66421","Streptomyces lavendulae subsp. grasserius"],["NCBITaxon%3A58340","Streptomyces lavendulae subsp. lavendulae"],["NCBITaxon%3A1303691","Streptomyces lavendulae subsp. lavendulae JCM 4055"]]},{"id":"NCBITaxon:1771","l":"Mycolicibacterium phlei","na":2,"nb":11,"a":[["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"],["terpenoids/isorenieratene.yaml","isorenieratene"]],"b":[["NCBITaxon%3A1876","Micromonospora sp."],["NCBITaxon%3A1774","Mycobacteroides chelonae"],["NCBITaxon%3A1771","Mycolicibacterium phlei"],["NCBITaxon%3A1335620","Mycolicibacterium phlei DSM 43070"],["NCBITaxon%3A1384515","Mycolicibacterium phlei DSM 43071"],["NCBITaxon%3A1335621","Mycolicibacterium phlei DSM 43072"]]},{"id":"NCBITaxon:512565","l":"Actinoplanes missouriensis 431","na":11,"nb":2,"a":[["polyketides/6-anteisoheptadecyl-4-o-dihydrogeranyl-2-methoxyhydroquinone.yaml","6-anteisoheptadecyl-4-O-dihydrogeranyl-2-methoxyhydroquinone"],["polyketides/6-isoheptadecyl-4-o-dihydrogeranyl-2-methoxyhydroquinone.yaml","6-isoheptadecyl-4-O-dihydrogeranyl-2-methoxyhydroquinone"],["polyketides/6-palmityl-4-o-dihydrofarnesyl-2-methoxyhydroquinone.yaml","6-palmityl-4-O-dihydrofarnesyl-2-methoxyhydroquinone"],["polyketides/6-palmityl-4-o-geranyl-2-methoxyhydroquinone.yaml","6-palmityl-4-O-geranyl-2-methoxyhydroquinone"],["polyketides/fogacin-2.yaml","fogacin"],["terpenoids/6-anteisoheptadecyl-4-o-dihydrofarnesyl-2-methoxyhydroquinone.yaml","6-anteisoheptadecyl-4-O-dihydrofarnesyl-2-methoxyhydroquinone"]],"b":[["NCBITaxon%3A1866","Actinoplanes missouriensis"],["NCBITaxon%3A512565","Actinoplanes missouriensis 431"]]},{"id":"NCBITaxon:73504","l":"Cladobotryum","na":2,"nb":11,"a":[["alkaloids/cj-15-696.yaml","CJ-15,696"],["unclassified/melinacidin-iv.yaml","melinacidin IV"]],"b":[["NCBITaxon%3A129581","Cladobotryum apiculatum"],["NCBITaxon%3A76881","Cladobotryum asterophorum"],["NCBITaxon%3A2074850","Cladobotryum croceum"],["NCBITaxon%3A491253","Cladobotryum mycophilum"],["NCBITaxon%3A2074851","Cladobotryum obconicum"],["NCBITaxon%3A84680","Cladobotryum penicillatum"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":10,"nb":2,"a":[["amino_acids_and_peptides/lipopeptide-8d1-1.yaml","lipopeptide 8D1-1"],["amino_acids_and_peptides/lipopeptide-8d1-2.yaml","lipopeptide 8D1-2"],["carbohydrates/amicetin.yaml","amicetin"],["carbohydrates/streptothricin-c.yaml","streptothricin C"],["carbohydrates/streptothricin-d.yaml","streptothricin D"],["carbohydrates/streptothricin-e.yaml","streptothricin E"]],"b":[["NCBITaxon%3A1928","Streptomyces rochei"],["NCBITaxon%3A885435","Streptomyces rochei subsp. volubilis"]]},{"id":"NCBITaxon:27334","l":"Penicillium expansum","na":10,"nb":2,"a":[["alkaloids/chaetoglobosin-a.yaml","chaetoglobosin A"],["alkaloids/chaetoglobosin-c.yaml","chaetoglobosin C"],["alkaloids/communesin-a.yaml","communesin A"],["alkaloids/communesin-b.yaml","communesin B"],["alkaloids/communesin-c.yaml","communesin C"],["alkaloids/communesin-d.yaml","communesin D"]],"b":[["NCBITaxon%3A27334","Penicillium expansum"],["NCBITaxon%3A1208580","Penicillium expansum NRRL 62431"]]},{"id":"NCBITaxon:455432","l":"Nocardia terpenica","na":10,"nb":2,"a":[["amino_acids_and_peptides/nocapeptin-a.yaml","nocapeptin A"],["amino_acids_and_peptides/nocathioamide-a.yaml","nocathioamide A"],["polyketides/brasilinolide-a.yaml","brasilinolide A"],["polyketides/brasilinolide-b.yaml","brasilinolide B"],["polyketides/brasilinolide-c.yaml","brasilinolide C"],["polyketides/terpenomycin.yaml","terpenomycin"]],"b":[["NCBITaxon%3A455432","Nocardia terpenica"],["NCBITaxon%3A1206738","Nocardia terpenica NBRC 100888"]]},{"id":"NCBITaxon:953739","l":"Streptomyces venezuelae ATCC 10712","na":10,"nb":2,"a":[["alkaloids/chloramphenicol.yaml","chloramphenicol"],["alkaloids/gaburedin-d.yaml","gaburedin D"],["alkaloids/watasemycin-a.yaml","watasemycin A"],["alkaloids/watasemycin-b.yaml","watasemycin B"],["amino_acids_and_peptides/gaburedin-a.yaml","gaburedin A"],["amino_acids_and_peptides/gaburedin-b.yaml","gaburedin B"]],"b":[["NCBITaxon%3A54571","Streptomyces venezuelae"],["NCBITaxon%3A953739","Streptomyces venezuelae ATCC 10712"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":2,"nb":9,"a":[["alkaloids/biotin.yaml","biotin"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]],"b":[["NCBITaxon%3A28031","Lysinibacillus fusiformis"],["NCBITaxon%3A1130819","Lysinibacillus mangiferihumi"],["NCBITaxon%3A1421","Lysinibacillus sphaericus"],["NCBITaxon%3A444177","Lysinibacillus sphaericus C3-41"],["NCBITaxon%3A1400869","Lysinibacillus sphaericus CBAM5"],["NCBITaxon%3A1354027","Lysinibacillus sphaericus KCTC 3346"]]},{"id":"NCBITaxon:1427518","l":"Xenorhabdus szentirmaii DSM 16338","na":9,"nb":2,"a":[["alkaloids/demethoxygriseoluteic-acid.yaml","demethoxygriseoluteic acid"],["alkaloids/griseoluteic-acid.yaml","griseoluteic acid"],["alkaloids/iodinin.yaml","iodinin"],["alkaloids/phenaszenketide-c.yaml","phenaszenketide C"],["alkaloids/phenaszenketide-d.yaml","phenaszenketide D"],["alkaloids/phenaszentine-a.yaml","phenaszentine A"]],"b":[["NCBITaxon%3A290112","Xenorhabdus szentirmaii"],["NCBITaxon%3A1427518","Xenorhabdus szentirmaii DSM 16338"]]},{"id":"NCBITaxon:204042","l":"Dickeya zeae","na":2,"nb":9,"a":[["fatty_acids/zeamine-ii.yaml","zeamine II"],["fatty_acids/zeamine.yaml","zeamine"]],"b":[["NCBITaxon%3A556","Dickeya chrysanthemi"],["NCBITaxon%3A204042","Dickeya zeae"],["NCBITaxon%3A1223567","Dickeya zeae CSL RW192"],["NCBITaxon%3A1306951","Dickeya zeae DZ2Q"],["NCBITaxon%3A1427366","Dickeya zeae EC1"],["NCBITaxon%3A1224153","Dickeya zeae MK19"]]},{"id":"NCBITaxon:29430","l":"Acinetobacter haemolyticus","na":2,"nb":9,"a":[["alkaloids/acinetoferrin.yaml","acinetoferrin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]],"b":[["NCBITaxon%3A29430","Acinetobacter haemolyticus"],["NCBITaxon%3A707232","Acinetobacter haemolyticus ATCC 19194"],["NCBITaxon%3A1217659","Acinetobacter haemolyticus CIP 64.3 = MTCC 9819"],["NCBITaxon%3A1217986","Acinetobacter haemolyticus NIPH 261"],["NCBITaxon%3A1221297","Acinetobacter haemolyticus TG19599"],["NCBITaxon%3A1221298","Acinetobacter haemolyticus TG19602"]]},{"id":"NCBITaxon:80866","l":"Delftia acidovorans","na":2,"nb":9,"a":[["amino_acids_and_peptides/delftibactin-a.yaml","delftibactin A"],["amino_acids_and_peptides/delftibactin-b.yaml","delftibactin B"]],"b":[["NCBITaxon%3A1872122","Acidovorax sp."],["NCBITaxon%3A80866","Delftia acidovorans"],["NCBITaxon%3A883100","Delftia acidovorans CCUG 15835"],["NCBITaxon%3A883101","Delftia acidovorans CCUG 274B"],["NCBITaxon%3A1218107","Delftia acidovorans NBRC 14950"],["NCBITaxon%3A1255679","Delftia acidovorans PCA12"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":2,"nb":8,"a":[["amino_acids_and_peptides/cupriachelin.yaml","cupriachelin"],["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"]],"b":[["NCBITaxon%3A119219","Cupriavidus metallidurans"],["NCBITaxon%3A106590","Cupriavidus necator"],["NCBITaxon%3A1304882","Cupriavidus necator A5-1"],["NCBITaxon%3A381666","Cupriavidus necator H16"],["NCBITaxon%3A53482","Cupriavidus necator H850"],["NCBITaxon%3A1042878","Cupriavidus necator N-1"]]},{"id":"NCBITaxon:326423","l":"Bacillus velezensis FZB42","na":8,"nb":2,"a":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["polyketides/bacillaene.yaml","bacillaene"],["polyketides/difficidin.yaml","difficidin"],["polyketides/macrolactin-h.yaml","macrolactin H"],["unclassified/corynebactin.yaml","corynebactin"]],"b":[["NCBITaxon%3A492670","Bacillus velezensis"],["NCBITaxon%3A326423","Bacillus velezensis FZB42"]]},{"id":"NCBITaxon:40318","l":"Streptomyces nodosus","na":8,"nb":2,"a":[["alkaloids/melanin.yaml","melanin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/ectoine.yaml","ectoine"],["amino_acids_and_peptides/siamycin-i.yaml","siamycin I"],["fatty_acids/butyrolactone.yaml","γ-butyrolactone"]],"b":[["NCBITaxon%3A40318","Streptomyces nodosus"],["NCBITaxon%3A222892","Streptomyces nodosus subsp. asukaensis"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":8,"nb":2,"a":[["amino_acids_and_peptides/ferrichrome-2.yaml","ferrichrome"],["polyketides/2-acetyl-1-3-6-8-tetrahydroxynaphthalene.yaml","2-acetyl-1,3,6,8-tetrahydroxynaphthalene"],["polyketides/kojic-acid.yaml","kojic acid"],["terpenoids/aphidicolin.yaml","aphidicolin"],["unclassified/2-oxocyclopiazonic-acid.yaml","2-oxocyclopiazonic acid"],["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]],"b":[["NCBITaxon%3A5062","Aspergillus oryzae"],["NCBITaxon%3A510516","Aspergillus oryzae RIB40"]]},{"id":"NCBITaxon:531310","l":"Marinactinospora thermotolerans","na":8,"nb":2,"a":[["alkaloids/marinacarboline-a.yaml","marinacarboline A"],["alkaloids/marinacarboline-b.yaml","marinacarboline B"],["alkaloids/marinacarboline-c.yaml","marinacarboline C"],["alkaloids/marinacarboline-d.yaml","marinacarboline D"],["alkaloids/methylpendolmycin.yaml","methylpendolmycin"],["alkaloids/pendolmycin.yaml","pendolmycin"]],"b":[["NCBITaxon%3A531310","Marinactinospora thermotolerans"],["NCBITaxon%3A1122192","Marinactinospora thermotolerans DSM 45154"]]},{"id":"NCBITaxon:67348","l":"Streptomyces prunicolor","na":8,"nb":2,"a":[["alkaloids/myxofacycline-e.yaml","myxofacycline E"],["alkaloids/myxofacycline-f.yaml","myxofacycline F"],["alkaloids/myxofacycline-g.yaml","myxofacycline G"],["amino_acids_and_peptides/prunipeptin.yaml","prunipeptin"],["fatty_acids/myxofacycline-a.yaml","myxofacycline A"],["fatty_acids/myxofacycline-b.yaml","myxofacycline B"]],"b":[["NCBITaxon%3A67348","Streptomyces prunicolor"],["NCBITaxon%3A1312234","Streptomyces prunicolor NBRC 13075"]]},{"id":"NCBITaxon:356302","l":"Chitinimonas koreensis","na":7,"nb":2,"a":[["amino_acids_and_peptides/chitinimide-a.yaml","chitinimide A"],["amino_acids_and_peptides/chitinimide-b.yaml","chitinimide B"],["amino_acids_and_peptides/chitinimide-c.yaml","chitinimide C"],["amino_acids_and_peptides/chitinimide-d.yaml","chitinimide D"],["amino_acids_and_peptides/chitinimide-e.yaml","chitinimide E"],["amino_acids_and_peptides/chitinimide-f.yaml","chitinimide F"]],"b":[["NCBITaxon%3A356302","Chitinimonas koreensis"],["NCBITaxon%3A1121278","Chitinimonas koreensis DSM 17726"]]},{"id":"NCBITaxon:405948","l":"Saccharopolyspora erythraea NRRL 2338","na":7,"nb":2,"a":[["amino_acids_and_peptides/erythrochelin.yaml","erythrochelin"],["polyketides/erythromycin-a.yaml","erythromycin A"],["polyketides/erythromycin-b.yaml","erythromycin B"],["polyketides/erythromycin-c.yaml","erythromycin C"],["polyketides/erythromycin-d.yaml","erythromycin D"],["polyketides/flaviolin.yaml","flaviolin"]],"b":[["NCBITaxon%3A1836","Saccharopolyspora erythraea"],["NCBITaxon%3A405948","Saccharopolyspora erythraea NRRL 2338"]]},{"id":"NCBITaxon:45398","l":"Streptomyces griseoviridis","na":7,"nb":2,"a":[["alkaloids/prodigiosin-2.yaml","prodigiosin"],["alkaloids/prodigiosin-r1.yaml","Prodigiosin R1"],["alkaloids/prodigiosin-r2.yaml","Prodigiosin R2"],["alkaloids/prodigiosin-r3.yaml","Prodigiosin R3"],["alkaloids/roseophilin.yaml","Roseophilin"],["amino_acids_and_peptides/griseoviridin.yaml","griseoviridin"]],"b":[["NCBITaxon%3A66885","Streptomyces daghestanicus"],["NCBITaxon%3A45398","Streptomyces griseoviridis"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":2,"nb":7,"a":[["amino_acids_and_peptides/vibrioferrin-2.yaml","vibrioferrin"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]],"b":[["NCBITaxon%3A663","Vibrio alginolyticus"],["NCBITaxon%3A314288","Vibrio alginolyticus 12G01"],["NCBITaxon%3A674977","Vibrio alginolyticus 40B"],["NCBITaxon%3A664","Vibrio alginolyticus chemovar iophagus"],["NCBITaxon%3A1219076","Vibrio alginolyticus NBRC 15630 = ATCC 17749"],["NCBITaxon%3A669","Vibrio harveyi"]]},{"id":"NCBITaxon:697284","l":"Paenibacillus larvae subsp. larvae DSM 25430","na":7,"nb":2,"a":[["alkaloids/paenilamicin-a2.yaml","paenilamicin A2"],["alkaloids/paenilamicin-b1.yaml","paenilamicin B1"],["alkaloids/paenilamicin-b2.yaml","paenilamicin B2"],["alkaloids/paenilamicin.yaml","paenilamicin"],["amino_acids_and_peptides/paenilarvin-a.yaml","paenilarvin A"],["amino_acids_and_peptides/paenilarvin-b.yaml","paenilarvin B"]],"b":[["NCBITaxon%3A1464","Paenibacillus larvae"],["NCBITaxon%3A697284","Paenibacillus larvae subsp. larvae DSM 25430"]]},{"id":"NCBITaxon:1445510","l":"Gynuella sunshinyii YC6258","na":6,"nb":2,"a":[["polyketides/lacunalide-a.yaml","lacunalide A"],["polyketides/lacunalide-b.yaml","lacunalide B"],["polyketides/lobatamide-a.yaml","lobatamide A"],["polyketides/tartrolon-d-2.yaml","tartrolon D"],["polyketides/tartrolon-f.yaml","tartrolon F"],["polyketides/tartrolon-g.yaml","tartrolon G"]],"b":[["NCBITaxon%3A1445505","Gynuella sunshinyii"],["NCBITaxon%3A1445510","Gynuella sunshinyii YC6258"]]},{"id":"NCBITaxon:1867","l":"Actinoplanes teichomyceticus","na":6,"nb":2,"a":[["amino_acids_and_peptides/teicoplanin-a2-1.yaml","Teicoplanin A2-1"],["amino_acids_and_peptides/teicoplanin-a2-2.yaml","teicoplanin A2-2"],["amino_acids_and_peptides/teicoplanin-a2-3.yaml","teicoplanin A2-3"],["amino_acids_and_peptides/teicoplanin-a2-4.yaml","teicoplanin A2-4"],["amino_acids_and_peptides/teicoplanin-a2-5.yaml","Teicoplanin A2-5"],["amino_acids_and_peptides/teicoplanin.yaml","teicoplanin"]],"b":[["NCBITaxon%3A1867","Actinoplanes teichomyceticus"],["NCBITaxon%3A457423","Actinoplanes teichomyceticus ATCC 31121"]]},{"id":"NCBITaxon:202862","l":"Streptomyces drozdowiczii","na":6,"nb":2,"a":[["unclassified/marformycin-a.yaml","marformycin A"],["unclassified/marformycin-b.yaml","marformycin B"],["unclassified/marformycin-c.yaml","marformycin C"],["unclassified/marformycin-d.yaml","marformycin D"],["unclassified/marformycin-e.yaml","marformycin E"],["unclassified/marformycin-f.yaml","marformycin F"]],"b":[["NCBITaxon%3A202862","Streptomyces drozdowiczii"],["NCBITaxon%3A1302724","Streptomyces drozdowiczii JCM 13580"]]},{"id":"NCBITaxon:278992","l":"Streptomyces ambofaciens ATCC 23877","na":6,"nb":2,"a":[["alkaloids/congocidine.yaml","congocidine"],["polyketides/spiramycin.yaml","spiramycin"],["polyketides/stambomycin-a.yaml","stambomycin A"],["polyketides/stambomycin-b.yaml","stambomycin B"],["polyketides/stambomycin-c.yaml","stambomycin C"],["polyketides/stambomycin-d.yaml","stambomycin D"]],"b":[["NCBITaxon%3A1889","Streptomyces ambofaciens"],["NCBITaxon%3A278992","Streptomyces ambofaciens ATCC 23877"]]},{"id":"NCBITaxon:44250","l":"Paenibacillus alvei","na":2,"nb":6,"a":[["amino_acids_and_peptides/colistin-a.yaml","colistin A"],["amino_acids_and_peptides/colistin-b.yaml","colistin B"]],"b":[["NCBITaxon%3A44250","Paenibacillus alvei"],["NCBITaxon%3A1117109","Paenibacillus alvei A6-6i-x"],["NCBITaxon%3A1206781","Paenibacillus alvei DSM 29"],["NCBITaxon%3A707255","Paenibacillus alvei NAS6G-6"],["NCBITaxon%3A1117108","Paenibacillus alvei TS-15"],["NCBITaxon%3A49283","Paenibacillus thiaminolyticus"]]},{"id":"NCBITaxon:47763","l":"Streptomyces lydicus","na":6,"nb":2,"a":[["amino_acids_and_peptides/ectoine.yaml","ectoine"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"],["polyketides/erythromycin-a.yaml","erythromycin A"],["polyketides/natamycin.yaml","natamycin"],["polyketides/streptolydigin.yaml","streptolydigin"],["unclassified/lydicamycin.yaml","lydicamycin"]],"b":[["NCBITaxon%3A47763","Streptomyces lydicus"],["NCBITaxon%3A1382545","Streptomyces lydicus A01"]]},{"id":"NCBITaxon:882378","l":"","na":6,"nb":2,"a":[["amino_acids_and_peptides/endopyrrole-b.yaml","endopyrrole B"],["amino_acids_and_peptides/holrhizin-a.yaml","holrhizin A"],["amino_acids_and_peptides/holrhizin-b.yaml","holrhizin B"],["amino_acids_and_peptides/holrhizin-c.yaml","holrhizin C"],["amino_acids_and_peptides/holrhizin-d.yaml","holrhizin D"],["unclassified/endopyrrole-a.yaml","endopyrrole A"]],"b":[["NCBITaxon%3A412963","Mycetohabitans rhizoxinica"],["NCBITaxon%3A882378","Mycetohabitans rhizoxinica HKI 454"]]},{"id":"NCBITaxon:1223523","l":"Streptomyces mobaraensis NBRC 13819 = DSM 40847","na":5,"nb":2,"a":[["amino_acids_and_peptides/bleomycin-a2.yaml","bleomycin A2"],["amino_acids_and_peptides/bleomycin-b2.yaml","bleomycin B2"],["amino_acids_and_peptides/cyclothiazomycin-b1.yaml","cyclothiazomycin b1"],["amino_acids_and_peptides/ketomemicin-b3.yaml","ketomemicin B3"],["amino_acids_and_peptides/ketomemicin-b4.yaml","ketomemicin B4"]],"b":[["NCBITaxon%3A35621","Streptomyces mobaraensis"],["NCBITaxon%3A1223523","Streptomyces mobaraensis NBRC 13819 = DSM 40847"]]},{"id":"NCBITaxon:1445505","l":"Gynuella sunshinyii","na":5,"nb":2,"a":[["polyketides/lacunalide-a.yaml","lacunalide A"],["polyketides/lacunalide-b.yaml","lacunalide B"],["polyketides/lobatamide-a.yaml","lobatamide A"],["polyketides/tartrolon-f.yaml","tartrolon F"],["polyketides/tartrolon-g.yaml","tartrolon G"]],"b":[["NCBITaxon%3A1445505","Gynuella sunshinyii"],["NCBITaxon%3A1445510","Gynuella sunshinyii YC6258"]]},{"id":"NCBITaxon:224308","l":"Bacillus subtilis (strain 168)","na":2,"nb":5,"a":[["unclassified/corynebactin.yaml","corynebactin"],["unclassified/pulcherriminic-acid.yaml","pulcherriminic acid"]],"b":[["NCBITaxon%3A1423","Bacillus subtilis"],["NCBITaxon%3A135461","Bacillus subtilis subsp. subtilis"],["NCBITaxon%3A224308","Bacillus subtilis subsp. subtilis str. 168"],["NCBITaxon%3A536088","Bacillus subtilis subsp. subtilis str. L170"],["NCBITaxon%3A536089","Bacillus subtilis subsp. subtilis str. N170"]]},{"id":"NCBITaxon:28044","l":"Streptomyces longisporoflavus","na":5,"nb":2,"a":[["alkaloids/k-252a.yaml","K-252a"],["alkaloids/staurosporine-2.yaml","staurosporine"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/cinnamycin.yaml","cinnamycin"],["polyketides/tetronasin.yaml","tetronasin"]],"b":[["NCBITaxon%3A28044","Streptomyces longisporoflavus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:285562","l":"Streptomyces coelicoflavus","na":5,"nb":2,"a":[["carbohydrates/acarviostatin-i03.yaml","acarviostatin I03"],["carbohydrates/acarviostatin-ii03.yaml","acarviostatin II03"],["carbohydrates/acarviostatin-iii03.yaml","acarviostatin III03"],["carbohydrates/acarviostatin-iv03.yaml","acarviostatin IV03"],["polyketides/borrelidin.yaml","borrelidin"]],"b":[["NCBITaxon%3A285562","Streptomyces coelicoflavus"],["NCBITaxon%3A1120227","Streptomyces coelicoflavus ZG0656"]]},{"id":"NCBITaxon:29303","l":"Streptomyces cattleya","na":5,"nb":2,"a":[["amino_acids_and_peptides/cattlecin.yaml","cattlecin"],["amino_acids_and_peptides/clavulanic-acid.yaml","clavulanic acid"],["amino_acids_and_peptides/ethynylserine.yaml","β-ethynylserine"],["amino_acids_and_peptides/thienamycin.yaml","thienamycin"],["terpenoids/cattleyene.yaml","cattleyene"]],"b":[["NCBITaxon%3A29303","Streptantibioticus cattleyicolor"],["NCBITaxon%3A1003195","Streptantibioticus cattleyicolor NRRL 8057 = DSM 46488"]]},{"id":"NCBITaxon:31959","l":"Amycolatopsis lurida","na":5,"nb":2,"a":[["amino_acids_and_peptides/desmethyl-ristocetin-a.yaml","Desmethyl ristocetin A"],["amino_acids_and_peptides/desmethyl-ristocetin-b.yaml","Desmethyl ristocetin B"],["amino_acids_and_peptides/ristocetin-a.yaml","Ristocetin A"],["amino_acids_and_peptides/ristocetin-b.yaml","Ristocetin B"],["amino_acids_and_peptides/ristomycin-a.yaml","ristomycin A"]],"b":[["NCBITaxon%3A31959","Amycolatopsis lurida"],["NCBITaxon%3A1460371","Amycolatopsis lurida NRRL 2430"]]},{"id":"NCBITaxon:42235","l":"Streptomyces bottropensis","na":5,"nb":2,"a":[["amino_acids_and_peptides/bottromycin-a2-2.yaml","bottromycin A2"],["polyketides/mensacaricin.yaml","mensacaricin"],["polyketides/rishirilide-a.yaml","rishirilide A"],["polyketides/trioxacarcin-a.yaml","trioxacarcin A"],["unclassified/rishirilide-b.yaml","rishirilide B"]],"b":[["NCBITaxon%3A42235","Streptomyces bottropensis"],["NCBITaxon%3A1054862","Streptomyces bottropensis ATCC 25435"]]},{"id":"NCBITaxon:43","l":"Cystobacter fuscus","na":5,"nb":2,"a":[["amino_acids_and_peptides/cystomanamide-a.yaml","cystomanamide A"],["amino_acids_and_peptides/cystomanamide-b.yaml","cystomanamide B"],["amino_acids_and_peptides/cystomanamide-c.yaml","cystomanamide C"],["amino_acids_and_peptides/cystomanamide-d.yaml","cystomanamide D"],["unclassified/cystothiazole-a.yaml","cystothiazole A"]],"b":[["NCBITaxon%3A43","Cystobacter fuscus"],["NCBITaxon%3A1242864","Cystobacter fuscus DSM 2262"]]},{"id":"NCBITaxon:43658","l":"Pseudoalteromonas rubra","na":5,"nb":2,"a":[["alkaloids/prodigiosin.yaml","prodigiosin"],["polyketides/nonyltyrazolone.yaml","nonyltyrazolone"],["polyketides/undecyltyrazolone.yaml","undecyltyrazolone"],["shikimates_and_phenylpropanoids/z-6-undecenyltyrazolone.yaml","(Z)-ω-6-undecenyltyrazolone"],["unclassified/heptyltyrazolone.yaml","heptyltyrazolone"]],"b":[["NCBITaxon%3A43658","Pseudoalteromonas rubra"],["NCBITaxon%3A1117318","Pseudoalteromonas rubra DSM 6842"]]},{"id":"NCBITaxon:479432","l":"Streptosporangium roseum DSM 43021","na":5,"nb":2,"a":[["polyketides/benaphthamycin.yaml","benaphthamycin"],["polyketides/ws-79089a.yaml","WS 79089A"],["polyketides/ws-79089b.yaml","WS 79089B"],["polyketides/ws-79089c.yaml","WS 79089C"],["polyketides/ws-79089d.yaml","WS 79089D"]],"b":[["NCBITaxon%3A2001","Streptosporangium roseum"],["NCBITaxon%3A479432","Streptosporangium roseum DSM 43021"]]},{"id":"NCBITaxon:66854","l":"Saccharothrix mutabilis subsp. capreolus","na":5,"nb":2,"a":[["amino_acids_and_peptides/capreomycin-ia.yaml","capreomycin IA"],["amino_acids_and_peptides/capreomycin-ib.yaml","capreomycin IB"],["amino_acids_and_peptides/capreomycin-iia.yaml","capreomycin IIA"],["amino_acids_and_peptides/capreomycin-iib.yaml","capreomycin IIB"],["unclassified/a-201a.yaml","A-201A"]],"b":[["NCBITaxon%3A33921","Saccharothrix mutabilis"],["NCBITaxon%3A66854","Saccharothrix mutabilis subsp. capreolus"]]},{"id":"NCBITaxon:67255","l":"Streptomyces achromogenes","na":2,"nb":5,"a":[["alkaloids/tomaymycin.yaml","tomaymycin"],["carbohydrates/streptozotocin.yaml","streptozotocin"]],"b":[["NCBITaxon%3A67255","Streptomyces achromogenes"],["NCBITaxon%3A67256","Streptomyces achromogenes subsp. achromogenes"],["NCBITaxon%3A285532","Streptomyces achromogenes subsp. streptozoticus"],["NCBITaxon%3A285497","Streptomyces achromogenes subsp. tomaymyceticus"],["NCBITaxon%3A285531","Streptomyces rubradiris"]]},{"id":"NCBITaxon:67373","l":"Streptomyces varsoviensis","na":5,"nb":2,"a":[["amino_acids_and_peptides/thiovarsolin-a.yaml","thiovarsolin A"],["amino_acids_and_peptides/thiovarsolin-b.yaml","thiovarsolin B"],["amino_acids_and_peptides/thiovarsolin-c.yaml","thiovarsolin C"],["amino_acids_and_peptides/thiovarsolin-d.yaml","thiovarsolin D"],["polyketides/jbir-100.yaml","JBIR-100"]],"b":[["NCBITaxon%3A68230","Streptomyces longispororuber"],["NCBITaxon%3A67373","Streptomyces varsoviensis"]]},{"id":"NCBITaxon:1224742","l":"","na":4,"nb":2,"a":[["polyketides/amphi-enterobactin-1.yaml","Amphi-enterobactin 1"],["polyketides/amphi-enterobactin-2.yaml","amphi-enterobactin 2"],["polyketides/amphi-enterobactin-3.yaml","amphi-enterobactin 3"],["polyketides/amphi-enterobactin-4.yaml","amphi-enterobactin 4"]],"b":[["NCBITaxon%3A680","Vibrio campbellii"],["NCBITaxon%3A1224742","Vibrio campbellii CAIM 519 = NBRC 15631 = ATCC 25920"]]},{"id":"NCBITaxon:132919","l":"Rhodococcus jostii","na":2,"nb":4,"a":[["amino_acids_and_peptides/lariatin.yaml","lariatin"],["unclassified/rhodochelin.yaml","rhodochelin"]],"b":[["NCBITaxon%3A1850366","Paenibacillus rhizophilus"],["NCBITaxon%3A132919","Rhodococcus jostii"],["NCBITaxon%3A1219017","Rhodococcus jostii NBRC 16295"],["NCBITaxon%3A101510","Rhodococcus jostii RHA1"]]},{"id":"NCBITaxon:136926","l":"","na":4,"nb":2,"a":[["polyketides/megalomicin-a.yaml","megalomicin A"],["polyketides/megalomicin-b.yaml","megalomicin B"],["polyketides/megalomicin-c1.yaml","megalomicin C1"],["polyketides/megalomicin-c2.yaml","megalomicin C2"]],"b":[["NCBITaxon%3A136926","Micromonospora megalomicea subsp. nigra"],["NCBITaxon%3A1876","Micromonospora sp."]]},{"id":"NCBITaxon:1458930","l":"Okeania hirsuta","na":2,"nb":4,"a":[["amino_acids_and_peptides/malyngamide-c-acetate.yaml","malyngamide C acetate"],["amino_acids_and_peptides/malyngamide-i.yaml","malyngamide I"]],"b":[["NCBITaxon%3A1458930","Okeania hirsuta"],["NCBITaxon%3A1387524","Okeania hirsuta NAC11-70"],["NCBITaxon%3A1387527","Okeania hirsuta PAB-10-Feb-10-1"],["NCBITaxon%3A1387528","Okeania hirsuta PAB-21-JUN-10-2"]]},{"id":"NCBITaxon:1889","l":"Streptomyces ambofaciens","na":4,"nb":2,"a":[["alkaloids/congocidine.yaml","congocidine"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["polyketides/spiramycin.yaml","spiramycin"],["polyketides/stambomycin-a.yaml","stambomycin A"]],"b":[["NCBITaxon%3A1889","Streptomyces ambofaciens"],["NCBITaxon%3A278992","Streptomyces ambofaciens ATCC 23877"]]},{"id":"NCBITaxon:1924","l":"Streptomyces purpurascens","na":2,"nb":4,"a":[["polyketides/concanamycin-a.yaml","concanamycin A"],["polyketides/rhodomycin.yaml","rhodomycin"]],"b":[["NCBITaxon%3A66865","Streptomyces afghaniensis"],["NCBITaxon%3A1924","Streptomyces purpurascens"],["NCBITaxon%3A67360","Streptomyces roseoviolaceus"],["NCBITaxon%3A1936","Streptomyces violaceus"]]},{"id":"NCBITaxon:193462","l":"Streptomyces niveus","na":4,"nb":2,"a":[["alkaloids/phenaziterpene-a.yaml","phenaziterpene A"],["carbohydrates/kanamycin-a.yaml","kanamycin A"],["shikimates_and_phenylpropanoids/cathomycin.yaml","cathomycin"],["unclassified/be-14106.yaml","BE-14106"]],"b":[["NCBITaxon%3A193462","Streptomyces niveus"],["NCBITaxon%3A1352941","Streptomyces niveus NCIMB 11891"]]},{"id":"NCBITaxon:196914","l":"Actinoplanes friuliensis","na":4,"nb":2,"a":[["amino_acids_and_peptides/friulimicin-a.yaml","friulimicin A"],["amino_acids_and_peptides/friulimicin-b.yaml","friulimicin B"],["unclassified/friulimicin-c.yaml","friulimicin C"],["unclassified/friulimicin-d.yaml","friulimicin D"]],"b":[["NCBITaxon%3A196914","Actinoplanes friuliensis"],["NCBITaxon%3A1246995","Actinoplanes friuliensis DSM 7358"]]},{"id":"NCBITaxon:227882","l":"","na":4,"nb":2,"a":[["amino_acids_and_peptides/edha.yaml","EDHA"],["polyketides/filipin-iii.yaml","filipin III"],["terpenoids/avermitilol.yaml","avermitilol"],["terpenoids/pentalenolactone.yaml","pentalenolactone"]],"b":[["NCBITaxon%3A33903","Streptomyces avermitilis"],["NCBITaxon%3A227882","Streptomyces avermitilis MA-4680 = NBRC 14893"]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":2,"nb":4,"a":[["carbohydrates/legionaminic-acid.yaml","legionaminic acid"],["carbohydrates/pseudaminate.yaml","pseudaminate"]],"b":[["NCBITaxon%3A28112","Tannerella forsythia"],["NCBITaxon%3A1307832","Tannerella forsythia 3313"],["NCBITaxon%3A203275","Tannerella forsythia 92A2"],["NCBITaxon%3A1307833","Tannerella forsythia KS16"]]},{"id":"NCBITaxon:392500","l":"Shewanella woodyi ATCC 51908","na":4,"nb":2,"a":[["fatty_acids/woodybactin-d.yaml","woodybactin D"],["unclassified/woodybactin-a.yaml","woodybactin A"],["unclassified/woodybactin-b.yaml","woodybactin B"],["unclassified/woodybactin-c.yaml","woodybactin C"]],"b":[["NCBITaxon%3A60961","Shewanella woodyi"],["NCBITaxon%3A392500","Shewanella woodyi ATCC 51908"]]},{"id":"NCBITaxon:412963","l":"","na":4,"nb":2,"a":[["amino_acids_and_peptides/endopyrrole-b.yaml","endopyrrole B"],["amino_acids_and_peptides/holrhizin-a.yaml","holrhizin A"],["unclassified/endopyrrole-a.yaml","endopyrrole A"],["unclassified/rhizoxin-a.yaml","rhizoxin A"]],"b":[["NCBITaxon%3A412963","Mycetohabitans rhizoxinica"],["NCBITaxon%3A882378","Mycetohabitans rhizoxinica HKI 454"]]},{"id":"NCBITaxon:51201","l":"Streptomyces griseocarneus","na":2,"nb":4,"a":[["alkaloids/pimprinine.yaml","pimprinine"],["carbohydrates/5-hydroxystreptomycin.yaml","5'-hydroxystreptomycin"]],"b":[["NCBITaxon%3A173770","Streptomyces alboverticillatus"],["NCBITaxon%3A51201","Streptomyces griseocarneus"],["NCBITaxon%3A156648","Streptomyces septatus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:5581","l":"Beauveria","na":2,"nb":4,"a":[["unclassified/beauveriolide-i.yaml","beauveriolide I"],["unclassified/beauveriolide-iii.yaml","beauveriolide III"]],"b":[["NCBITaxon%3A176275","Beauveria bassiana"],["NCBITaxon%3A118266","Beauveria brongniartii"],["NCBITaxon%3A371061","Beauveria malawiensis"],["NCBITaxon%3A1481906","Beauveria rudraprayagi"]]},{"id":"NCBITaxon:60961","l":"Shewanella woodyi","na":4,"nb":2,"a":[["fatty_acids/woodybactin-d.yaml","woodybactin D"],["unclassified/woodybactin-a.yaml","woodybactin A"],["unclassified/woodybactin-b.yaml","woodybactin B"],["unclassified/woodybactin-c.yaml","woodybactin C"]],"b":[["NCBITaxon%3A60961","Shewanella woodyi"],["NCBITaxon%3A392500","Shewanella woodyi ATCC 51908"]]},{"id":"NCBITaxon:67257","l":"Streptomyces albus subsp. albus","na":2,"nb":4,"a":[["alkaloids/porothramycin-a.yaml","porothramycin A"],["alkaloids/tambjamine-be-18591.yaml","tambjamine BE-18591"]],"b":[["NCBITaxon%3A1888","Streptomyces albus"],["NCBITaxon%3A67257","Streptomyces albus subsp. albus"],["NCBITaxon%3A1081613","Streptomyces albus subsp. albus DSM 41398"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:67274","l":"Streptomyces argenteolus","na":2,"nb":4,"a":[["amino_acids_and_peptides/carbapenem-mm4550.yaml","carbapenem MM4550"],["terpenoids/ks-505a.yaml","KS-505a"]],"b":[["NCBITaxon%3A67274","Streptomyces argenteolus"],["NCBITaxon%3A285516","Streptomyces argenteolus subsp. toyonakensis"],["NCBITaxon%3A1911","Streptomyces griseus"],["NCBITaxon%3A67263","Streptomyces griseus subsp. griseus"]]},{"id":"NCBITaxon:68174","l":"Streptomyces anthocyanicus","na":4,"nb":2,"a":[["polyketides/hatomarubigin-a.yaml","hatomarubigin A"],["polyketides/hatomarubigin-b.yaml","hatomarubigin B"],["polyketides/hatomarubigin-c.yaml","hatomarubigin C"],["polyketides/hatomarubigin-d.yaml","hatomarubigin D"]],"b":[["NCBITaxon%3A68174","Streptomyces anthocyanicus"],["NCBITaxon%3A1935","Streptomyces violaceoruber"]]},{"id":"NCBITaxon:68214","l":"Streptomyces griseochromogenes","na":4,"nb":2,"a":[["carbohydrates/blasticidin-s.yaml","blasticidin S"],["carbohydrates/streptothricin-f.yaml","streptothricin F"],["polyketides/tautomycetin-2.yaml","tautomycetin"],["polyketides/tautomycetin.yaml","tautomycetin"]],"b":[["NCBITaxon%3A68214","Streptomyces griseochromogenes"],["NCBITaxon%3A285477","Streptomyces griseochromogenes subsp. suitaensis"]]},{"id":"NCBITaxon:703612","l":"","na":4,"nb":2,"a":[["amino_acids_and_peptides/mycosubtilin.yaml","mycosubtilin"],["amino_acids_and_peptides/rhizocticin-a.yaml","rhizocticin A"],["amino_acids_and_peptides/subtilin.yaml","subtilin"],["amino_acids_and_peptides/subtilosin-a.yaml","subtilosin A"]],"b":[["NCBITaxon%3A96241","Bacillus spizizenii"],["NCBITaxon%3A703612","Bacillus spizizenii ATCC 6633 = JCM 2499"]]},{"id":"NCBITaxon:76728","l":"Streptomyces vitaminophilus","na":4,"nb":2,"a":[["alkaloids/pyrrolomycin-a.yaml","pyrrolomycin A"],["alkaloids/pyrrolomycin-b.yaml","pyrrolomycin B"],["alkaloids/pyrrolomycin-c.yaml","pyrrolomycin C"],["alkaloids/pyrrolomycin-d.yaml","pyrrolomycin D"]],"b":[["NCBITaxon%3A76728","Wenjunlia vitaminophila"],["NCBITaxon%3A1123322","Wenjunlia vitaminophila DSM 41686"]]},{"id":"NCBITaxon:1003195","l":"","na":3,"nb":2,"a":[["amino_acids_and_peptides/cattlecin.yaml","cattlecin"],["amino_acids_and_peptides/ethynylserine.yaml","β-ethynylserine"],["terpenoids/cattleyene.yaml","cattleyene"]],"b":[["NCBITaxon%3A29303","Streptantibioticus cattleyicolor"],["NCBITaxon%3A1003195","Streptantibioticus cattleyicolor NRRL 8057 = DSM 46488"]]},{"id":"NCBITaxon:103232","l":"Streptomyces ipomoeae","na":3,"nb":2,"a":[["amino_acids_and_peptides/thaxtomin-c.yaml","thaxtomin C"],["unclassified/thaxtomin-a.yaml","thaxtomin A"],["unclassified/thaxtomin-b.yaml","thaxtomin B"]],"b":[["NCBITaxon%3A103232","Streptomyces ipomoeae"],["NCBITaxon%3A698759","Streptomyces ipomoeae 91-03"]]},{"id":"NCBITaxon:103721","l":"Actinosynnema pretiosum subsp. pretiosum","na":3,"nb":2,"a":[["polyketides/ansamitocin-p3.yaml","ansamitocin P3"],["polyketides/macbecin-ii.yaml","macbecin II"],["polyketides/macbecin.yaml","macbecin"]],"b":[["NCBITaxon%3A42197","Actinosynnema pretiosum"],["NCBITaxon%3A103721","Actinosynnema pretiosum subsp. pretiosum"]]},{"id":"NCBITaxon:1120925","l":"Acinetobacter bouvetii DSM 14964 = CIP 107468","na":3,"nb":2,"a":[["alkaloids/butanochelin.yaml","butanochelin"],["alkaloids/pentanochelin.yaml","pentanochelin"],["alkaloids/propanochelin.yaml","propanochelin"]],"b":[["NCBITaxon%3A202951","Acinetobacter bouvetii"],["NCBITaxon%3A1120925","Acinetobacter bouvetii DSM 14964 = CIP 107468"]]},{"id":"NCBITaxon:115647","l":"Streptomyces ansochromogenes","na":2,"nb":3,"a":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"],["polyketides/oviedomycin.yaml","oviedomycin"]],"b":[["NCBITaxon%3A115647","Streptomyces ansochromogenes"],["NCBITaxon%3A285459","Streptomyces ansochromogenes subsp. ansochromogenes"],["NCBITaxon%3A2306568","Streptomyces ansochromogenes subsp. pallens"]]},{"id":"NCBITaxon:146923","l":"Streptomyces parvulus","na":3,"nb":2,"a":[["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["polyketides/borrelidin.yaml","borrelidin"]],"b":[["NCBITaxon%3A146923","Streptomyces parvulus"],["NCBITaxon%3A515263","Streptomyces parvulus subsp. citrinus"]]},{"id":"NCBITaxon:158327","l":"Hahella chejuensis","na":3,"nb":2,"a":[["alkaloids/prodigiosin-2.yaml","prodigiosin"],["terpenoids/chejuenolide-a.yaml","chejuenolide A"],["terpenoids/chejuenolide-b.yaml","chejuenolide B"]],"b":[["NCBITaxon%3A158327","Hahella chejuensis"],["NCBITaxon%3A349521","Hahella chejuensis KCTC 2396"]]},{"id":"NCBITaxon:1703","l":"Brevibacterium linens","na":2,"nb":3,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"],["terpenoids/isorenieratene.yaml","isorenieratene"]],"b":[["NCBITaxon%3A273384","Brevibacterium aurantiacum"],["NCBITaxon%3A1703","Brevibacterium linens"],["NCBITaxon%3A1255617","Brevibacterium linens ATCC 9172"]]},{"id":"NCBITaxon:171437","l":"Tistrella mobilis","na":3,"nb":2,"a":[["unclassified/didemnin-x.yaml","didemnin X"],["unclassified/didemnin-y.yaml","didemnin Y"],["unclassified/nordidemnin-b.yaml","nordidemnin B"]],"b":[["NCBITaxon%3A171437","Tistrella mobilis"],["NCBITaxon%3A1110502","Tistrella mobilis KA081020-065"]]},{"id":"NCBITaxon:176299","l":"Agrobacterium fabrum (strain C58 / ATCC 33970)","na":2,"nb":3,"a":[["amino_acids_and_peptides/fabrubactin-a.yaml","fabrubactin A"],["amino_acids_and_peptides/fabrubactin-b.yaml","fabrubactin B"]],"b":[["NCBITaxon%3A1176649","Agrobacterium fabrum"],["NCBITaxon%3A176299","Agrobacterium fabrum str. C58"],["NCBITaxon%3A362","Agrobacterium radiobacter"]]},{"id":"NCBITaxon:184914","l":"Corallococcus coralloides","na":3,"nb":2,"a":[["amino_acids_and_peptides/myxovalargin-a.yaml","myxovalargin A"],["polyketides/corallopyronin.yaml","corallopyronin"],["polyketides/phenalamide.yaml","phenalamide"]],"b":[["NCBITaxon%3A184914","Corallococcus coralloides"],["NCBITaxon%3A1144275","Corallococcus coralloides DSM 2259"]]},{"id":"NCBITaxon:1857892","l":"Streptomyces sp. MP131-18","na":3,"nb":2,"a":[["polyketides/lagunapyrone-a.yaml","lagunapyrone A"],["polyketides/lagunapyrone-b.yaml","lagunapyrone B"],["polyketides/lagunapyrone-c.yaml","lagunapyrone C"]],"b":[["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A1857892","Streptomyces sp. MP131-18"]]},{"id":"NCBITaxon:1904","l":"Streptomyces cyaneus","na":3,"nb":2,"a":[["carbohydrates/curamycin.yaml","curamycin"],["polyketides/cardol.yaml","cardol"],["polyketides/cosmomycin-d.yaml","cosmomycin D"]],"b":[["NCBITaxon%3A146537","Streptomyces azureus"],["NCBITaxon%3A1904","Streptomyces cyaneus"]]},{"id":"NCBITaxon:202951","l":"Acinetobacter bouvetii","na":3,"nb":2,"a":[["alkaloids/butanochelin.yaml","butanochelin"],["alkaloids/pentanochelin.yaml","pentanochelin"],["alkaloids/propanochelin.yaml","propanochelin"]],"b":[["NCBITaxon%3A202951","Acinetobacter bouvetii"],["NCBITaxon%3A1120925","Acinetobacter bouvetii DSM 14964 = CIP 107468"]]},{"id":"NCBITaxon:210996","l":"Hapalosiphon delicatulus","na":2,"nb":3,"a":[["alkaloids/ambiguine-a-isonitrile.yaml","ambiguine A isonitrile"],["alkaloids/ambiguine-b-isonitrile.yaml","ambiguine B isonitrile"]],"b":[["NCBITaxon%3A1538296","Hapalosiphon cf. delicatulus HCyG"],["NCBITaxon%3A210996","Hapalosiphon delicatulus"],["NCBITaxon%3A210997","Hapalosiphon delicatulus IAM M-266"]]},{"id":"NCBITaxon:216591","l":"Burkholderia cenocepacia J2315","na":3,"nb":2,"a":[["unclassified/ornibactin-c4.yaml","ornibactin C4"],["unclassified/ornibactin-c6.yaml","ornibactin C6"],["unclassified/ornibactin-c8.yaml","ornibactin C8"]],"b":[["NCBITaxon%3A95486","Burkholderia cenocepacia"],["NCBITaxon%3A216591","Burkholderia cenocepacia J2315"]]},{"id":"NCBITaxon:29309","l":"Streptomyces verticillus","na":3,"nb":2,"a":[["amino_acids_and_peptides/bleomycin-a2.yaml","bleomycin A2"],["amino_acids_and_peptides/bleomycin-b2.yaml","bleomycin B2"],["amino_acids_and_peptides/bleomycin.yaml","bleomycin"]],"b":[["NCBITaxon%3A35621","Streptomyces mobaraensis"],["NCBITaxon%3A29309","Streptomyces verticillus"]]},{"id":"NCBITaxon:316280","l":"Streptomyces peucetius subsp. caesius ATCC 27952","na":2,"nb":3,"a":[["amino_acids_and_peptides/peucechelin.yaml","peucechelin"],["polyketides/14-hydroxyisochainin.yaml","14-hydroxyisochainin"]],"b":[["NCBITaxon%3A1950","Streptomyces peucetius"],["NCBITaxon%3A55158","Streptomyces peucetius subsp. caesius"],["NCBITaxon%3A316280","Streptomyces peucetius subsp. caesius ATCC 27952"]]},{"id":"NCBITaxon:316284","l":"Streptomyces noursei ATCC 11455","na":3,"nb":2,"a":[["amino_acids_and_peptides/dechlorocuracomycin.yaml","dechlorocuracomycin"],["polyketides/nystatin-a1.yaml","nystatin A1"],["unclassified/albonoursin.yaml","albonoursin"]],"b":[["NCBITaxon%3A1971","Streptomyces noursei"],["NCBITaxon%3A316284","Streptomyces noursei ATCC 11455"]]},{"id":"NCBITaxon:35717","l":"Epichloe festucae","na":2,"nb":3,"a":[["alkaloids/peramine.yaml","peramine"],["amino_acids_and_peptides/epichloenin-a.yaml","epichloenin A"]],"b":[["NCBITaxon%3A35717","Epichloe festucae"],["NCBITaxon%3A877507","Epichloe festucae Fl1"],["NCBITaxon%3A73839","Epichloe festucae var. lolii"]]},{"id":"NCBITaxon:36746","l":"Pseudomonas cichorii","na":2,"nb":3,"a":[["amino_acids_and_peptides/cichofactin-a.yaml","cichofactin A"],["amino_acids_and_peptides/cichofactin-b.yaml","cichofactin B"]],"b":[["NCBITaxon%3A2488639","Pectobacterium versatile"],["NCBITaxon%3A36746","Pseudomonas cichorii"],["NCBITaxon%3A1441629","Pseudomonas cichorii JBC1"]]},{"id":"NCBITaxon:38300","l":"Streptomyces pristinaespiralis","na":2,"nb":3,"a":[["amino_acids_and_peptides/pristinin-a3.yaml","pristinin A3"],["terpenoids/2s-3r-9r-pristinol.yaml","(+)-(2S,3R,9R)-pristinol"]],"b":[["NCBITaxon%3A38300","Streptomyces pristinaespiralis"],["NCBITaxon%3A457429","Streptomyces pristinaespiralis ATCC 25486"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:384676","l":"Pseudomonas entomophila L48","na":3,"nb":2,"a":[["alkaloids/labradorin-1.yaml","labradorin 1"],["alkaloids/labradorin-2.yaml","labradorin 2"],["alkaloids/pimprinine.yaml","pimprinine"]],"b":[["NCBITaxon%3A312306","Pseudomonas entomophila"],["NCBITaxon%3A384676","Pseudomonas entomophila L48"]]},{"id":"NCBITaxon:393595","l":"Alcanivorax borkumensis SK2","na":3,"nb":2,"a":[["amino_acids_and_peptides/amphibactin-e.yaml","amphibactin E"],["amino_acids_and_peptides/amphibactin-h.yaml","amphibactin H"],["fatty_acids/amphibactin-i.yaml","amphibactin I"]],"b":[["NCBITaxon%3A59754","Alcanivorax borkumensis"],["NCBITaxon%3A393595","Alcanivorax borkumensis SK2"]]},{"id":"NCBITaxon:398578","l":"Delftia acidovorans SPH-1","na":2,"nb":3,"a":[["amino_acids_and_peptides/delftibactin-a.yaml","delftibactin A"],["amino_acids_and_peptides/delftibactin-b.yaml","delftibactin B"]],"b":[["NCBITaxon%3A80866","Delftia acidovorans"],["NCBITaxon%3A1218107","Delftia acidovorans NBRC 14950"],["NCBITaxon%3A398578","Delftia acidovorans SPH-1"]]},{"id":"NCBITaxon:41061","l":"Aspergillus nomiae","na":3,"nb":2,"a":[["polyketides/aflatoxin-b2.yaml","aflatoxin B2"],["unclassified/aflatoxin-b1.yaml","aflatoxin B1"],["unclassified/aflatoxin-g1.yaml","aflatoxin G1"]],"b":[["NCBITaxon%3A41061","Aspergillus nomiae"],["NCBITaxon%3A1509407","Aspergillus nomiae NRRL 13137"]]},{"id":"NCBITaxon:42234","l":"Streptomyces acidiscabies","na":2,"nb":3,"a":[["fatty_acids/butyrolactone.yaml","γ-butyrolactone"],["unclassified/thaxtomin-a.yaml","thaxtomin A"]],"b":[["NCBITaxon%3A42234","Streptomyces acidiscabies"],["NCBITaxon%3A1116232","Streptomyces acidiscabies 84-104"],["NCBITaxon%3A1930","Streptomyces scabiei"]]},{"id":"NCBITaxon:42236","l":"Streptomyces diastatochromogenes","na":3,"nb":2,"a":[["carbohydrates/toyocamycin.yaml","toyocamycin"],["polyketides/concanamycin-a.yaml","concanamycin A"],["polyketides/polyketomycin.yaml","polyketomycin"]],"b":[["NCBITaxon%3A42236","Streptomyces diastatochromogenes"],["NCBITaxon%3A285494","Streptomyces diastatochromogenes subsp. luteus"]]},{"id":"NCBITaxon:42237","l":"Streptomyces eurythermus","na":3,"nb":2,"a":[["polyketides/angolamycin.yaml","angolamycin"],["polyketides/cinerubin-b.yaml","cinerubin B"],["polyketides/filipin-iii.yaml","filipin III"]],"b":[["NCBITaxon%3A42237","Streptomyces eurythermus"],["NCBITaxon%3A1928","Streptomyces rochei"]]},{"id":"NCBITaxon:436515","l":"Variovorax boronicumulans","na":2,"nb":3,"a":[["amino_acids_and_peptides/variochelin-a.yaml","variochelin A"],["amino_acids_and_peptides/variochelin-b.yaml","variochelin B"]],"b":[["NCBITaxon%3A436515","Variovorax boronicumulans"],["NCBITaxon%3A1321609","Variovorax boronicumulans NBRC 103145"],["NCBITaxon%3A34073","Variovorax paradoxus"]]},{"id":"NCBITaxon:448385","l":"","na":3,"nb":2,"a":[["polyketides/etnangien.yaml","etnangien"],["polyketides/soraphen-a.yaml","soraphen A"],["terpenoids/eremophilene.yaml","(+)-eremophilene"]],"b":[["NCBITaxon%3A56","Sorangium cellulosum"],["NCBITaxon%3A448385","Sorangium cellulosum So ce56"]]},{"id":"NCBITaxon:457429","l":"Streptomyces pristinaespiralis ATCC 25486","na":2,"nb":3,"a":[["amino_acids_and_peptides/pristinin-a3.yaml","pristinin A3"],["terpenoids/2s-3r-9r-pristinol.yaml","(+)-(2S,3R,9R)-pristinol"]],"b":[["NCBITaxon%3A38300","Streptomyces pristinaespiralis"],["NCBITaxon%3A457429","Streptomyces pristinaespiralis ATCC 25486"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:47990","l":"Kutzneria albida","na":2,"nb":3,"a":[["carbohydrates/huimycin.yaml","huimycin"],["unclassified/aculeximycin.yaml","aculeximycin"]],"b":[["NCBITaxon%3A103725","Kutzneria kofuensis"],["NCBITaxon%3A47990","Kutzneria viridogrisea"],["NCBITaxon%3A1449976","Kutzneria viridogrisea DSM 43870"]]},{"id":"NCBITaxon:5022","l":"Leptosphaeria maculans","na":3,"nb":2,"a":[["polyketides/flaviolin.yaml","flaviolin"],["terpenoids/2-cis-abscisic-acid.yaml","2-cis-abscisic acid"],["unclassified/sirodesmin-pl.yaml","sirodesmin PL"]],"b":[["NCBITaxon%3A5022","Plenodomus lingam"],["NCBITaxon%3A985895","Plenodomus lingam JN3"]]},{"id":"NCBITaxon:5113","l":"Epichloe typhina","na":2,"nb":3,"a":[["alkaloids/elymoclavine.yaml","elymoclavine"],["alkaloids/ergovaline.yaml","ergovaline"]],"b":[["NCBITaxon%3A5113","Epichloe typhina"],["NCBITaxon%3A1616224","Epichloe typhina subsp. clarkii"],["NCBITaxon%3A2570311","Epichloe typhina subsp. typhina"]]},{"id":"NCBITaxon:54","l":"Nannocystis exedens","na":3,"nb":2,"a":[["polyketides/phenylnannolone-a.yaml","phenylnannolone A"],["polyketides/phenylnannolone-b.yaml","phenylnannolone B"],["polyketides/phenylnannolone-c.yaml","phenylnannolone C"]],"b":[["NCBITaxon%3A54","Nannocystis exedens"],["NCBITaxon%3A1366054","Nannocystis exedens subsp. cinnabaria"]]},{"id":"NCBITaxon:58343","l":"Streptomyces canus","na":3,"nb":2,"a":[["carbohydrates/kanamycin-a.yaml","kanamycin A"],["polyketides/resistomycin.yaml","resistomycin"],["unclassified/telomycin.yaml","telomycin"]],"b":[["NCBITaxon%3A58343","Streptomyces canus"],["NCBITaxon%3A1172183","Streptomyces canus 299MFChir4.1"]]},{"id":"NCBITaxon:66423","l":"Streptomyces eurocidicus","na":3,"nb":2,"a":[["polyketides/eurocidin-d.yaml","eurocidin D"],["polyketides/eurocidin-e.yaml","eurocidin E"],["polyketides/laidlomycin.yaml","laidlomycin"]],"b":[["NCBITaxon%3A1940","Streptomyces albireticuli"],["NCBITaxon%3A66423","Streptomyces eurocidicus"]]},{"id":"NCBITaxon:66869","l":"Streptomyces atroolivaceus","na":2,"nb":3,"a":[["amino_acids_and_peptides/leinamycin.yaml","leinamycin"],["amino_acids_and_peptides/thioviridamide.yaml","thioviridamide"]],"b":[["NCBITaxon%3A66869","Streptomyces atroolivaceus"],["NCBITaxon%3A67338","Streptomyces olivoviridis"],["NCBITaxon%3A28094","Trinickia caryophylli"]]},{"id":"NCBITaxon:66901","l":"Streptomyces nobilis","na":3,"nb":2,"a":[["polyketides/desertomycin-a.yaml","desertomycin A"],["polyketides/desertomycin-b.yaml","desertomycin B"],["polyketides/desertomycin-g.yaml","desertomycin G"]],"b":[["NCBITaxon%3A66901","Streptomyces nobilis"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:67265","l":"Kitasatospora aburaviensis","na":2,"nb":3,"a":[["polyketides/ebelactone-a.yaml","ebelactone A"],["polyketides/ebelactone-b.yaml","ebelactone B"]],"b":[["NCBITaxon%3A67265","Kitasatospora aburaviensis"],["NCBITaxon%3A285481","Kitasatospora aburaviensis subsp. tuftformis"],["NCBITaxon%3A552357","Shewanella fodinae"]]},{"id":"NCBITaxon:67581","l":"Streptomyces viridosporus","na":2,"nb":3,"a":[["fatty_acids/butyrolactone.yaml","γ-butyrolactone"],["unclassified/cinnapeptin.yaml","cinnapeptin"]],"b":[["NCBITaxon%3A67581","Streptomyces viridosporus"],["NCBITaxon%3A566461","Streptomyces viridosporus ATCC 14672"],["NCBITaxon%3A665577","Streptomyces viridosporus T7A"]]},{"id":"NCBITaxon:68239","l":"Streptomyces mirabilis","na":3,"nb":2,"a":[["alkaloids/azodyrecin-a.yaml","Azodyrecin A"],["alkaloids/azodyrecin-b.yaml","Azodyrecin B"],["alkaloids/azodyrecin-c.yaml","Azodyrecin C"]],"b":[["NCBITaxon%3A68239","Streptomyces mirabilis"],["NCBITaxon%3A1169149","Streptomyces mirabilis 138MFCol5.1"]]},{"id":"NCBITaxon:717774","l":"Marinomonas mediterranea MMB-1","na":3,"nb":2,"a":[["alkaloids/bistribromopyrrole.yaml","bistribromopyrrole"],["shikimates_and_phenylpropanoids/bromophene.yaml","bromophene"],["shikimates_and_phenylpropanoids/pentabromopseudilin.yaml","pentabromopseudilin"]],"b":[["NCBITaxon%3A119864","Marinomonas mediterranea"],["NCBITaxon%3A717774","Marinomonas mediterranea MMB-1"]]},{"id":"NCBITaxon:80869","l":"Paracidovorax citrulli","na":2,"nb":3,"a":[["unclassified/acidobactin-a.yaml","acidobactin A"],["unclassified/acidobactin-b.yaml","acidobactin B"]],"b":[["NCBITaxon%3A80869","Paracidovorax citrulli"],["NCBITaxon%3A397945","Paracidovorax citrulli AAC00-1"],["NCBITaxon%3A1154764","Paracidovorax citrulli ZJU1106"]]},{"id":"NCBITaxon:92644","l":"Streptomyces malaysiensis","na":2,"nb":3,"a":[["amino_acids_and_peptides/thioholgamide-a.yaml","thioholgamide A"],["amino_acids_and_peptides/thioholgamide-b.yaml","thioholgamide B"]],"b":[["NCBITaxon%3A92644","Streptomyces malaysiensis"],["NCBITaxon%3A3455775","Streptomyces malaysiensis subsp. malaysiensis"],["NCBITaxon%3A459658","Streptomyces malaysiensis subsp. samsunensis"]]},{"id":"NCBITaxon:93061","l":"Staphylococcus aureus (strain NCTC 8325 / PS 47)","na":2,"nb":3,"a":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["unclassified/staphyloferrin-a.yaml","staphyloferrin A"]],"b":[["NCBITaxon%3A1280","Staphylococcus aureus"],["NCBITaxon%3A93061","Staphylococcus aureus subsp. aureus NCTC 8325"],["NCBITaxon%3A561307","Staphylococcus aureus subsp. aureus RN4220"]]},{"id":"NCBITaxon:103731","l":"Saccharothrix espanaensis","na":2,"nb":2,"a":[["polyketides/pentangumycin.yaml","pentangumycin"],["polyketides/sek90.yaml","SEK90"]],"b":[["NCBITaxon%3A103731","Saccharothrix espanaensis"],["NCBITaxon%3A1179773","Saccharothrix espanaensis DSM 44229"]]},{"id":"NCBITaxon:1079985","l":"Streptomyces chartreusis NRRL 3882","na":2,"nb":2,"a":[["carbohydrates/tunicamycin-b1.yaml","tunicamycin B1"],["polyketides/a23187.yaml","A23187"]],"b":[["NCBITaxon%3A1969","Streptomyces chartreusis"],["NCBITaxon%3A1079985","Streptomyces chartreusis NRRL 3882"]]},{"id":"NCBITaxon:1121302","l":"Clostridium cavendishii DSM 21758","na":2,"nb":2,"a":[["alkaloids/closoxazole-a.yaml","closoxazole A"],["alkaloids/closoxazole-b.yaml","closoxazole B"]],"b":[["NCBITaxon%3A349931","Clostridium cavendishii"],["NCBITaxon%3A1121302","Clostridium cavendishii DSM 21758"]]},{"id":"NCBITaxon:1122611","l":"Nonomuraea coxensis DSM 45129","na":2,"nb":2,"a":[["amino_acids_and_peptides/a50926-a.yaml","A50926 A"],["amino_acids_and_peptides/a50926-b.yaml","A50926 B"]],"b":[["NCBITaxon%3A404386","Nonomuraea coxensis"],["NCBITaxon%3A1122611","Nonomuraea coxensis DSM 45129"]]},{"id":"NCBITaxon:1179773","l":"Saccharothrix espanaensis DSM 44229","na":2,"nb":2,"a":[["polyketides/pentangumycin.yaml","pentangumycin"],["polyketides/sek90.yaml","SEK90"]],"b":[["NCBITaxon%3A103731","Saccharothrix espanaensis"],["NCBITaxon%3A1179773","Saccharothrix espanaensis DSM 44229"]]},{"id":"NCBITaxon:1246301","l":"Variovorax paradoxus B4","na":2,"nb":2,"a":[["amino_acids_and_peptides/variochelin-a.yaml","variochelin A"],["amino_acids_and_peptides/variochelin-b.yaml","variochelin B"]],"b":[["NCBITaxon%3A34073","Variovorax paradoxus"],["NCBITaxon%3A1246301","Variovorax paradoxus B4"]]},{"id":"NCBITaxon:1284","l":"Staphylococcus hyicus","na":2,"nb":2,"a":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["unclassified/staphyloferrin-a.yaml","staphyloferrin A"]],"b":[["NCBITaxon%3A1284","Staphylococcus hyicus"],["NCBITaxon%3A29387","Staphylococcus sp."]]},{"id":"NCBITaxon:1449976","l":"Kutzneria albida DSM 43870","na":2,"nb":2,"a":[["carbohydrates/huimycin.yaml","huimycin"],["unclassified/aculeximycin.yaml","aculeximycin"]],"b":[["NCBITaxon%3A47990","Kutzneria viridogrisea"],["NCBITaxon%3A1449976","Kutzneria viridogrisea DSM 43870"]]},{"id":"NCBITaxon:146922","l":"Streptomyces griseofuscus","na":2,"nb":2,"a":[["alkaloids/physostigmine.yaml","physostigmine"],["polyketides/indanomycin.yaml","indanomycin"]],"b":[["NCBITaxon%3A146922","Streptomyces griseofuscus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:1521","l":"Ruminiclostridium cellulolyticum","na":2,"nb":2,"a":[["alkaloids/closthioamide.yaml","closthioamide"],["amino_acids_and_peptides/rc-aip1.yaml","Rc-AIP1"]],"b":[["NCBITaxon%3A1521","Ruminiclostridium cellulolyticum"],["NCBITaxon%3A394503","Ruminiclostridium cellulolyticum H10"]]},{"id":"NCBITaxon:158878","l":"Staphylococcus aureus (strain Mu50 / ATCC 700699)","na":2,"nb":2,"a":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"]],"b":[["NCBITaxon%3A1280","Staphylococcus aureus"],["NCBITaxon%3A158878","Staphylococcus aureus subsp. aureus Mu50"]]},{"id":"NCBITaxon:168469","l":"Pseudomonas costantinii","na":2,"nb":2,"a":[["unclassified/tolaasin-f.yaml","tolaasin F"],["unclassified/tolaasin-i.yaml","tolaasin I"]],"b":[["NCBITaxon%3A46677","Pseudomonas agarici"],["NCBITaxon%3A168469","Pseudomonas costantinii"]]},{"id":"NCBITaxon:1736290","l":"Brevibacillus sp. Leaf182","na":2,"nb":2,"a":[["amino_acids_and_peptides/marthiapeptide-a.yaml","marthiapeptide A"],["polyketides/macrobrevin.yaml","macrobrevin"]],"b":[["NCBITaxon%3A1882945","Brevibacillus sp."],["NCBITaxon%3A1736290","Brevibacillus sp. Leaf182"]]},{"id":"NCBITaxon:1814","l":"Amycolatopsis methanolica","na":2,"nb":2,"a":[["amino_acids_and_peptides/amychelin-a.yaml","amychelin A"],["amino_acids_and_peptides/amychelin-b.yaml","amychelin B"]],"b":[["NCBITaxon%3A1814","Amycolatopsis methanolica"],["NCBITaxon%3A1068978","Amycolatopsis methanolica 239"]]},{"id":"NCBITaxon:1896","l":"Streptomyces bikiniensis","na":2,"nb":2,"a":[["carbohydrates/streptomycin.yaml","streptomycin"],["polyketides/chalcomycin-a.yaml","chalcomycin A"]],"b":[["NCBITaxon%3A1896","Streptomyces bikiniensis"],["NCBITaxon%3A44286","Streptomyces bikiniensis subsp. zorbonensis"]]},{"id":"NCBITaxon:1897","l":"Streptomyces carzinostaticus","na":2,"nb":2,"a":[["fatty_acids/neocarzilin-a.yaml","neocarzilin A"],["fatty_acids/neocarzilin-b.yaml","neocarzilin B"]],"b":[["NCBITaxon%3A1897","Streptomyces carzinostaticus"],["NCBITaxon%3A167636","Streptomyces carzinostaticus subsp. neocarzinostaticus"]]},{"id":"NCBITaxon:1922","l":"Streptomyces plicatus","na":2,"nb":2,"a":[["carbohydrates/amicetin.yaml","amicetin"],["polyketides/mithramycin.yaml","mithramycin"]],"b":[["NCBITaxon%3A1168082","Lacibacterium aquatile"],["NCBITaxon%3A1922","Streptomyces plicatus"]]},{"id":"NCBITaxon:1923","l":"Streptomyces phaeochromogenes","na":2,"nb":2,"a":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["unclassified/ikarugamycin.yaml","ikarugamycin"]],"b":[["NCBITaxon%3A1923","Streptomyces phaeochromogenes"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:2001","l":"Streptosporangium roseum","na":2,"nb":2,"a":[["polyketides/ws-79089b.yaml","WS 79089B"],["polyketides/ws-79089c.yaml","WS 79089C"]],"b":[["NCBITaxon%3A2001","Streptosporangium roseum"],["NCBITaxon%3A479432","Streptosporangium roseum DSM 43021"]]},{"id":"NCBITaxon:263358","l":"Verrucosispora maris AB-18-032","na":2,"nb":2,"a":[["polyketides/abyssomicin-c.yaml","abyssomicin C"],["polyketides/atrop-abyssomicin-c.yaml","atrop-abyssomicin C"]],"b":[["NCBITaxon%3A1003110","Micromonospora maris"],["NCBITaxon%3A263358","Micromonospora maris AB-18-032"]]},{"id":"NCBITaxon:264445","l":"Streptomyces hygroscopicus subsp. limoneus","na":2,"nb":2,"a":[["carbohydrates/validamycin-a-2.yaml","validamycin A"],["carbohydrates/validamycin-a.yaml","validamycin A"]],"b":[["NCBITaxon%3A1912","Streptomyces hygroscopicus"],["NCBITaxon%3A264445","Streptomyces hygroscopicus subsp. limoneus"]]},{"id":"NCBITaxon:267872","l":"Microcystis aeruginosa PCC 7806","na":2,"nb":2,"a":[["amino_acids_and_peptides/microcyclamide.yaml","microcyclamide"],["amino_acids_and_peptides/microcystin-lr.yaml","microcystin-LR"]],"b":[["NCBITaxon%3A267872","Microcystis aeruginosa PCC 7806"],["NCBITaxon%3A1903187","Microcystis aeruginosa PCC 7806SL"]]},{"id":"NCBITaxon:28094","l":"Trinickia caryophylli","na":2,"nb":2,"a":[["amino_acids_and_peptides/gramibactin-b.yaml","gramibactin B"],["fatty_acids/caryoynencin.yaml","caryoynencin"]],"b":[["NCBITaxon%3A1632866","Alkalimarinus sediminis"],["NCBITaxon%3A28094","Trinickia caryophylli"]]},{"id":"NCBITaxon:285532","l":"Streptomyces achromogenes subsp. streptozoticus","na":2,"nb":2,"a":[["carbohydrates/streptozotocin.yaml","streptozotocin"],["unclassified/enteromycin.yaml","enteromycin"]],"b":[["NCBITaxon%3A67255","Streptomyces achromogenes"],["NCBITaxon%3A285532","Streptomyces achromogenes subsp. streptozoticus"]]},{"id":"NCBITaxon:304895","l":"Catenulispora acidiphila","na":2,"nb":2,"a":[["amino_acids_and_peptides/catenulipeptin.yaml","catenulipeptin"],["shikimates_and_phenylpropanoids/cacibiocin-b.yaml","cacibiocin B"]],"b":[["NCBITaxon%3A304895","Catenulispora acidiphila"],["NCBITaxon%3A479433","Catenulispora acidiphila DSM 44928"]]},{"id":"NCBITaxon:314281","l":"Pseudoalteromonas tunicata","na":2,"nb":2,"a":[["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"]],"b":[["NCBITaxon%3A314281","Pseudoalteromonas tunicata"],["NCBITaxon%3A87626","Pseudoalteromonas tunicata D2"]]},{"id":"NCBITaxon:316274","l":"Herpetosiphon aurantiacus DSM 785","na":2,"nb":2,"a":[["alkaloids/auriculamide.yaml","auriculamide"],["terpenoids/o-methylkolavelool.yaml","(+)-O-methylkolavelool"]],"b":[["NCBITaxon%3A65","Herpetosiphon aurantiacus"],["NCBITaxon%3A316274","Herpetosiphon aurantiacus DSM 785"]]},{"id":"NCBITaxon:33899","l":"Streptomyces galilaeus","na":2,"nb":2,"a":[["polyketides/aclacinomycin.yaml","aclacinomycin"],["polyketides/cinerubin-b.yaml","cinerubin B"]],"b":[["NCBITaxon%3A67280","Streptomyces bobili"],["NCBITaxon%3A33899","Streptomyces galilaeus"]]},{"id":"NCBITaxon:351671","l":"Xenorhabdus doucetiae","na":2,"nb":2,"a":[["unclassified/xenoamicin-a.yaml","xenoamicin A"],["unclassified/xenoamicin-b.yaml","xenoamicin B"]],"b":[["NCBITaxon%3A351671","Xenorhabdus doucetiae"],["NCBITaxon%3A1123505","Xenorhabdus doucetiae FRM16 = DSM 17909"]]},{"id":"NCBITaxon:358681","l":"Brevibacillus brevis NBRC 100599","na":2,"nb":2,"a":[["amino_acids_and_peptides/gramicidin.yaml","gramicidin"],["amino_acids_and_peptides/tyrocidine-a.yaml","tyrocidine A"]],"b":[["NCBITaxon%3A1393","Brevibacillus brevis"],["NCBITaxon%3A358681","Brevibacillus brevis NBRC 100599"]]},{"id":"NCBITaxon:36816","l":"Streptomyces caelestis","na":2,"nb":2,"a":[["alkaloids/celesticetin.yaml","celesticetin"],["polyketides/niddamycin.yaml","niddamycin"]],"b":[["NCBITaxon%3A1964542","Aquimarina celericrescens"],["NCBITaxon%3A36816","Streptomyces caelestis"]]},{"id":"NCBITaxon:377629","l":"Teredinibacter turnerae T7901","na":2,"nb":2,"a":[["polyketides/tartrolon-d.yaml","tartrolon D"],["polyketides/tartrolon-e.yaml","tartrolon E"]],"b":[["NCBITaxon%3A2426","Teredinibacter turnerae"],["NCBITaxon%3A377629","Teredinibacter turnerae T7901"]]},{"id":"NCBITaxon:38314","l":"Streptomyces nogalater","na":2,"nb":2,"a":[["polyketides/mithramycin.yaml","mithramycin"],["polyketides/nogalamycin.yaml","nogalamycin"]],"b":[["NCBITaxon%3A38314","Streptomyces nogalater"],["NCBITaxon%3A527200","Thiorhodococcus fuscus"]]},{"id":"NCBITaxon:391619","l":"Phaeobacter inhibens DSM 17395","na":2,"nb":2,"a":[["shikimates_and_phenylpropanoids/hydroxytropodithietic-acid.yaml","hydroxytropodithietic acid"],["shikimates_and_phenylpropanoids/tropodithietic-acid.yaml","tropodithietic acid"]],"b":[["NCBITaxon%3A221822","Phaeobacter inhibens"],["NCBITaxon%3A391619","Phaeobacter inhibens DSM 17395"]]},{"id":"NCBITaxon:394503","l":"Ruminiclostridium cellulolyticum H10","na":2,"nb":2,"a":[["alkaloids/closthioamide.yaml","closthioamide"],["amino_acids_and_peptides/rc-aip1.yaml","Rc-AIP1"]],"b":[["NCBITaxon%3A1521","Ruminiclostridium cellulolyticum"],["NCBITaxon%3A394503","Ruminiclostridium cellulolyticum H10"]]},{"id":"NCBITaxon:396024","l":"Aspergillus ruber","na":2,"nb":2,"a":[["polyketides/flavoglaucin.yaml","flavoglaucin"],["polyketides/sterigmatocystin.yaml","sterigmatocystin"]],"b":[["NCBITaxon%3A396024","Aspergillus ruber"],["NCBITaxon%3A1388766","Aspergillus ruber CBS 135680"]]},{"id":"NCBITaxon:42198","l":"Actinosynnema pretiosum subsp. auranticum","na":2,"nb":2,"a":[["polyketides/ansamitocin-p3.yaml","ansamitocin P3"],["polyketides/maytansine.yaml","maytansine"]],"b":[["NCBITaxon%3A42197","Actinosynnema pretiosum"],["NCBITaxon%3A42198","Actinosynnema pretiosum subsp. auranticum"]]},{"id":"NCBITaxon:43357","l":"","na":2,"nb":2,"a":[["carbohydrates/huimycin.yaml","huimycin"],["unclassified/aculeximycin.yaml","aculeximycin"]],"b":[["NCBITaxon%3A47990","Kutzneria viridogrisea"],["NCBITaxon%3A1449976","Kutzneria viridogrisea DSM 43870"]]},{"id":"NCBITaxon:457427","l":"Streptomyces himastatinicus ATCC 53653","na":2,"nb":2,"a":[["alkaloids/9-methylstreptimidone.yaml","9-methylstreptimidone"],["amino_acids_and_peptides/himastatin.yaml","himastatin"]],"b":[["NCBITaxon%3A998084","Streptomyces himastatinicus"],["NCBITaxon%3A457427","Streptomyces himastatinicus ATCC 53653"]]},{"id":"NCBITaxon:46165","l":"Actinomadura verrucosospora","na":2,"nb":2,"a":[["polyketides/esperamicin.yaml","esperamicin"],["polyketides/sf2487.yaml","SF2487"]],"b":[["NCBITaxon%3A46165","Actinomadura verrucosospora"],["NCBITaxon%3A1605437","Actinomadura verrucosospora subsp. neohibisca"]]},{"id":"NCBITaxon:47872","l":"Micromonospora purpureochromogenes","na":2,"nb":2,"a":[["unclassified/rakicidin-a-2.yaml","rakicidin A"],["unclassified/rakicidin-b.yaml","rakicidin B"]],"b":[["NCBITaxon%3A47872","Micromonospora purpureochromogenes"],["NCBITaxon%3A1876","Micromonospora sp."]]},{"id":"NCBITaxon:47879","l":"Pseudomonas corrugata","na":2,"nb":2,"a":[["amino_acids_and_peptides/corpeptin-a.yaml","corpeptin A"],["amino_acids_and_peptides/corpeptin-b.yaml","corpeptin B"]],"b":[["NCBITaxon%3A47879","Pseudomonas corrugata"],["NCBITaxon%3A1316927","Pseudomonas corrugata CFBP 5454"]]},{"id":"NCBITaxon:479433","l":"Catenulispora acidiphila DSM 44928","na":2,"nb":2,"a":[["amino_acids_and_peptides/catenulipeptin.yaml","catenulipeptin"],["shikimates_and_phenylpropanoids/cacibiocin-b.yaml","cacibiocin B"]],"b":[["NCBITaxon%3A304895","Catenulispora acidiphila"],["NCBITaxon%3A479433","Catenulispora acidiphila DSM 44928"]]},{"id":"NCBITaxon:5074","l":"Penicillium brevicompactum","na":2,"nb":2,"a":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"],["unclassified/asperphenamate.yaml","asperphenamate"]],"b":[["NCBITaxon%3A1337893","Streptomyces bernensis"],["NCBITaxon%3A5074","Penicillium brevicompactum"]]},{"id":"NCBITaxon:52258","l":"Streptomyces flavovirens","na":2,"nb":2,"a":[["alkaloids/holomycin.yaml","holomycin"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"]],"b":[["NCBITaxon%3A67299","Streptomyces flavogriseus"],["NCBITaxon%3A52258","Streptomyces flavovirens"]]},{"id":"NCBITaxon:55952","l":"Streptomyces toyocaensis","na":2,"nb":2,"a":[["amino_acids_and_peptides/a-47934.yaml","A-47934"],["carbohydrates/toyocamycin.yaml","toyocamycin"]],"b":[["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A55952","Streptomyces toyocaensis"]]},{"id":"NCBITaxon:568076","l":"Metarhizium robertsii","na":2,"nb":2,"a":[["amino_acids_and_peptides/serinocyclin-a.yaml","serinocyclin A"],["amino_acids_and_peptides/serinocyclin-b.yaml","serinocyclin B"]],"b":[["NCBITaxon%3A568076","Metarhizium robertsii"],["NCBITaxon%3A655844","Metarhizium robertsii ARSEF 23"]]},{"id":"NCBITaxon:60550","l":"Burkholderia pyrrocinia","na":2,"nb":2,"a":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/occidiofungin-a.yaml","occidiofungin A"]],"b":[["NCBITaxon%3A60550","Burkholderia pyrrocinia"],["NCBITaxon%3A1212819","Burkholderia pyrrocinia CH-67"]]},{"id":"NCBITaxon:60894","l":"Saccharopolyspora spinosa","na":2,"nb":2,"a":[["polyketides/a83543a.yaml","A83543A"],["polyketides/spinosyn-d.yaml","spinosyn D"]],"b":[["NCBITaxon%3A60894","Saccharopolyspora spinosa"],["NCBITaxon%3A994479","Saccharopolyspora spinosa NRRL 18395"]]},{"id":"NCBITaxon:65","l":"Herpetosiphon aurantiacus","na":2,"nb":2,"a":[["alkaloids/auriculamide.yaml","auriculamide"],["terpenoids/o-methylkolavelool.yaml","(+)-O-methylkolavelool"]],"b":[["NCBITaxon%3A65","Herpetosiphon aurantiacus"],["NCBITaxon%3A316274","Herpetosiphon aurantiacus DSM 785"]]},{"id":"NCBITaxon:66430","l":"Streptomyces roseus","na":2,"nb":2,"a":[["amino_acids_and_peptides/leupeptin-a.yaml","leupeptin A"],["amino_acids_and_peptides/leupeptin-pr.yaml","leupeptin Pr"]],"b":[["NCBITaxon%3A66430","Streptomyces roseus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:67297","l":"Streptomyces flaveolus","na":2,"nb":2,"a":[["amino_acids_and_peptides/sanglifehrin-a.yaml","sanglifehrin A"],["polyketides/tirandamycin.yaml","tirandamycin"]],"b":[["NCBITaxon%3A67297","Streptomyces flaveolus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:67364","l":"Streptomyces sioyaensis","na":2,"nb":2,"a":[["alkaloids/altemicidin.yaml","altemicidin"],["amino_acids_and_peptides/siomycin-a.yaml","siomycin A"]],"b":[["NCBITaxon%3A1280","Staphylococcus aureus"],["NCBITaxon%3A67364","Streptomyces sioyaensis"]]},{"id":"NCBITaxon:67367","l":"Streptomyces tanashiensis","na":2,"nb":2,"a":[["amino_acids_and_peptides/phosphoramidon.yaml","phosphoramidon"],["unclassified/minimycin.yaml","minimycin"]],"b":[["NCBITaxon%3A67367","Streptomyces tanashiensis"],["NCBITaxon%3A285526","Streptomyces tanashiensis subsp. cephalomyceticus"]]},{"id":"NCBITaxon:68180","l":"Streptomyces blastmyceticus","na":2,"nb":2,"a":[["alkaloids/lyngbyatoxin.yaml","lyngbyatoxin"],["fatty_acids/mediomycin-a-2.yaml","mediomycin A"]],"b":[["NCBITaxon%3A58341","Streptomyces albosporeus"],["NCBITaxon%3A68180","Streptomyces blastmyceticus"]]},{"id":"NCBITaxon:68185","l":"Streptomyces chrestomyceticus","na":2,"nb":2,"a":[["alkaloids/guanipiperazine-a.yaml","guanipiperazine A"],["alkaloids/guanipiperazine-b.yaml","guanipiperazine B"]],"b":[["NCBITaxon%3A68185","Streptomyces chrestomyceticus"],["NCBITaxon%3A1306181","Streptomyces chrestomyceticus JCM 4735"]]},{"id":"NCBITaxon:68203","l":"Streptomyces fungicidicus","na":2,"nb":2,"a":[["unclassified/enduracidin-a.yaml","enduracidin A"],["unclassified/enduracidin-b.yaml","enduracidin B"]],"b":[["NCBITaxon%3A68203","Streptomyces fungicidicus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:68213","l":"Streptomyces griseoaurantiacus","na":2,"nb":2,"a":[["alkaloids/metacycloprodigiosin.yaml","metacycloprodigiosin"],["alkaloids/undecylprodigiosin-2.yaml","undecylprodigiosin"]],"b":[["NCBITaxon%3A68213","Streptomyces griseoaurantiacus"],["NCBITaxon%3A996637","Streptomyces griseoaurantiacus M045"]]},{"id":"NCBITaxon:68232","l":"Streptomyces lusitanus","na":2,"nb":2,"a":[["alkaloids/naphthyridinomycin.yaml","naphthyridinomycin"],["polyketides/grincamycin.yaml","grincamycin"]],"b":[["NCBITaxon%3A68232","Streptomyces lusitanus"],["NCBITaxon%3A1522110","Streptomyces lusitanus subsp. tetracyclini"]]},{"id":"NCBITaxon:69","l":"Lysobacter enzymogenes","na":2,"nb":2,"a":[["unclassified/heat-stable-antifungal-factor.yaml","heat-stable antifungal factor"],["unclassified/wap-8294a2.yaml","WAP-8294A2"]],"b":[["NCBITaxon%3A69","Lysobacter enzymogenes"],["NCBITaxon%3A262324","Lysobacter gummosus"]]},{"id":"NCBITaxon:80860","l":"Streptomyces cyanogenus","na":2,"nb":2,"a":[["polyketides/landomycin-a.yaml","landomycin A"],["polyketides/lucensomycin.yaml","lucensomycin"]],"b":[["NCBITaxon%3A80860","Streptomyces cyanogenus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:543","l":"Enterobacteriaceae","na":1,"nb":33950,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A240150","alkaliphilic bacterium N10"],["NCBITaxon%3A3049091","Apirhabdus apintestini"],["NCBITaxon%3A64559","[Aquamonas] haywardensis"],["NCBITaxon%3A58338","Aranicola proteolyticus"],["NCBITaxon%3A1150713","Aranicola sp. 9AL34"],["NCBITaxon%3A707055","Aranicola sp. Cf3F"]]},{"id":"NCBITaxon:547","l":"Enterobacter","na":1,"nb":6599,"a":[["amino_acids_and_peptides/andrimid.yaml","andrimid"]],"b":[["NCBITaxon%3A3142537","Enterobacter adelaidei"],["NCBITaxon%3A61645","Enterobacter asburiae"],["NCBITaxon%3A1330532","Enterobacter asburiae B1-3"],["NCBITaxon%3A1330533","Enterobacter asburiae B5-60"],["NCBITaxon%3A1442602","Enterobacter asburiae C1"],["NCBITaxon%3A1298604","Enterobacter asburiae JCM 6051"]]},{"id":"NCBITaxon:1663","l":"Arthrobacter","na":1,"nb":6277,"a":[["unclassified/ws9326a.yaml","WS9326A"]],"b":[["NCBITaxon%3A132932","Acetobacterium tundrae"],["NCBITaxon%3A37921","Arthrobacter agilis"],["NCBITaxon%3A369936","Arthrobacter alkaliphilus"],["NCBITaxon%3A656366","Arthrobacter alpinus"],["NCBITaxon%3A3046203","Arthrobacter antibioticus"],["NCBITaxon%3A2895818","Arthrobacter antioxidans"]]},{"id":"NCBITaxon:4751","l":"Fungi","na":1,"nb":5527,"a":[["shikimates_and_phenylpropanoids/atromentin.yaml","atromentin"]],"b":[["NCBITaxon%3A1450171","Aaosphaeria arxii"],["NCBITaxon%3A137743","Abortiporus biennis"],["NCBITaxon%3A420591","Absidia anomala"],["NCBITaxon%3A90261","Absidia caerulea"],["NCBITaxon%3A327741","Absidia californica"],["NCBITaxon%3A420592","Absidia cuneospora"]]},{"id":"NCBITaxon:237","l":"Flavobacterium","na":1,"nb":4449,"a":[["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"]],"b":[["NCBITaxon%3A196875","Arctic sea ice associated bacterium ARK10272"],["NCBITaxon%3A196870","Arctic sea ice bacterium ARK10104"],["NCBITaxon%3A196871","Arctic sea ice bacterium ARK10159"],["NCBITaxon%3A196872","Arctic sea ice bacterium ARK10161"],["NCBITaxon%3A196873","Arctic sea ice bacterium ARK10164"],["NCBITaxon%3A196874","Arctic sea ice bacterium ARK10270"]]},{"id":"NCBITaxon:1827","l":"Rhodococcus","na":1,"nb":3197,"a":[["alkaloids/corynecin-iii.yaml","corynecin III"]],"b":[["NCBITaxon%3A179179","bromate-reducing bacterium B7"],["NCBITaxon%3A179180","bromate-reducing bacterium B8"],["NCBITaxon%3A983873","Dietzia aurantiaca"],["NCBITaxon%3A84096","Gordonia alkanivorans"],["NCBITaxon%3A178933","PAH-contaminated sludge bacterium PB-32"],["NCBITaxon%3A43767","Prescottella equi"]]},{"id":"NCBITaxon:22","l":"Shewanella","na":1,"nb":2330,"a":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]],"b":[["NCBITaxon%3A196819","Arctic sea ice bacterium ARK10035"],["NCBITaxon%3A259291","cf. Shewanella SAR-1"],["NCBITaxon%3A259292","cf. Shewanella SAR-2"],["NCBITaxon%3A73131","Mariana eubacterium no. 11"],["NCBITaxon%3A73132","Mariana eubacterium no. 13"],["NCBITaxon%3A73133","Mariana eubacterium no. 24"]]},{"id":"NCBITaxon:41275","l":"Brevundimonas","na":1,"nb":1560,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A1125965","Brevundimonas abyssalis"],["NCBITaxon%3A1391729","Brevundimonas abyssalis TAR-001"],["NCBITaxon%3A74314","Brevundimonas alba"],["NCBITaxon%3A1312364","Brevundimonas albigilva"],["NCBITaxon%3A3712371","Brevundimonas antarctica (SeqCode)"],["NCBITaxon%3A74316","Brevundimonas aurantiaca"]]},{"id":"NCBITaxon:357","l":"Agrobacterium","na":1,"nb":1466,"a":[["alkaloids/sesbanimide-c.yaml","sesbanimide C"]],"b":[["NCBITaxon%3A76979","Agrobacterium agile"],["NCBITaxon%3A147266","Agrobacterium albertimagni"],["NCBITaxon%3A1156935","Agrobacterium albertimagni AOL15"],["NCBITaxon%3A1585697","Agrobacterium arsenijevicii"],["NCBITaxon%3A44155","Agrobacterium aurantiacum"],["NCBITaxon%3A2052828","Agrobacterium bohemicum"]]},{"id":"NCBITaxon:1716","l":"Corynebacterium","na":1,"nb":1413,"a":[["alkaloids/corynecin-iii.yaml","corynecin III"]],"b":[["NCBITaxon%3A41986","Agromyces mediolanus"],["NCBITaxon%3A1667","Arthrobacter sp."],["NCBITaxon%3A92706","[Brevibacterium] flavum"],["NCBITaxon%3A1232385","[Brevibacterium] flavum ZL-1"],["NCBITaxon%3A2838527","Candidatus Corynebacterium avicola"],["NCBITaxon%3A2838528","Candidatus Corynebacterium faecigallinarum"]]},{"id":"NCBITaxon:226","l":"Alteromonas","na":1,"nb":1246,"a":[["unclassified/marinostatin.yaml","marinostatin"]],"b":[["NCBITaxon%3A1892904","Alteromonas abrolhosensis"],["NCBITaxon%3A1938339","Alteromonas aestuariivivens"],["NCBITaxon%3A105692","Alteromonas agarilytica"],["NCBITaxon%3A3410268","Alteromonas algae"],["NCBITaxon%3A135000","Alteromonas alvinellae"],["NCBITaxon%3A2803813","Alteromonas antoniana"]]},{"id":"NCBITaxon:47251","l":"Leptolyngbya","na":1,"nb":1210,"a":[["alkaloids/schizokinen.yaml","schizokinen"]],"b":[["NCBITaxon%3A2653193","cf. Leptolyngbya sp. CCNUM2"],["NCBITaxon%3A377165","cf. Leptolyngbya sp. Greenland_10"],["NCBITaxon%3A377164","cf. Leptolyngbya sp. Greenland_9"],["NCBITaxon%3A2675591","cf. Leptolyngbya sp. PKUAC-SCTE412"],["NCBITaxon%3A2675592","cf. Leptolyngbya sp. PKUAC-SCTE413"],["NCBITaxon%3A2675593","cf. Leptolyngbya sp. PKUAC-SCTE811"]]},{"id":"NCBITaxon:222","l":"Achromobacter","na":1,"nb":1173,"a":[["alkaloids/biotin.yaml","biotin"]],"b":[["NCBITaxon%3A1287736","Achromobacter aegrifaciens"],["NCBITaxon%3A1783500","Achromobacter agile"],["NCBITaxon%3A1353888","Achromobacter agilis"],["NCBITaxon%3A1750518","Achromobacter aloeverae"],["NCBITaxon%3A1389935","Achromobacter animicus"],["NCBITaxon%3A1287737","Achromobacter anxifer"]]},{"id":"NCBITaxon:1696","l":"Brevibacterium","na":1,"nb":794,"a":[["alkaloids/1-6-phenazinedimethanol.yaml","1,6-phenazinedimethanol"]],"b":[["NCBITaxon%3A943903","bacterium Osw"],["NCBITaxon%3A417948","Brevibacterium album"],["NCBITaxon%3A1121122","Brevibacterium album DSM 18261"],["NCBITaxon%3A1046555","Brevibacterium ammoniilyticum"],["NCBITaxon%3A2683611","Brevibacterium anseongense"],["NCBITaxon%3A239268","Brevibacterium antarcticum"]]},{"id":"NCBITaxon:2433","l":"Roseobacter","na":1,"nb":652,"a":[["shikimates_and_phenylpropanoids/tropodithietic-acid.yaml","tropodithietic acid"]],"b":[["NCBITaxon%3A196799","Arctic sea ice bacterium ARK10233"],["NCBITaxon%3A197015","Arctic sea ice bacterium ARK10278"],["NCBITaxon%3A2602289","Roseobacter cerasinus"],["NCBITaxon%3A3467295","Roseobacter cerffii"],["NCBITaxon%3A2434","Roseobacter denitrificans"],["NCBITaxon%3A375451","Roseobacter denitrificans OCh 114"]]},{"id":"NCBITaxon:37914","l":"Dietzia","na":1,"nb":449,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A2838537","Candidatus Dietzia intestinigallinarum"],["NCBITaxon%3A2838538","Candidatus Dietzia intestinipullorum"],["NCBITaxon%3A2838539","Candidatus Dietzia merdigallinarum"],["NCBITaxon%3A595984","Dietzia aerolata"],["NCBITaxon%3A665550","Dietzia alimentaria"],["NCBITaxon%3A1077144","Dietzia alimentaria 72"]]},{"id":"NCBITaxon:1357","l":"Lactococcus","na":1,"nb":383,"a":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"]],"b":[["NCBITaxon%3A2419773","Lactococcus allomyrinae"],["NCBITaxon%3A1359","Lactococcus cremoris"],["NCBITaxon%3A1286879","Lactococcus cremoris HB61"],["NCBITaxon%3A1286880","Lactococcus cremoris HB63"],["NCBITaxon%3A2816960","Lactococcus cremoris subsp. cremoris"],["NCBITaxon%3A1104322","Lactococcus cremoris subsp. cremoris A76"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":1,"nb":375,"a":[["amino_acids_and_peptides/enterocin-a.yaml","enterocin A"]],"b":[["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A1352","Enterococcus faecium"],["NCBITaxon%3A1391465","Enterococcus faecium 10/96A"],["NCBITaxon%3A1259824","Enterococcus faecium 13.SD.W.09"],["NCBITaxon%3A1429401","Enterococcus faecium 17282"],["NCBITaxon%3A565659","Enterococcus faecium 1,141,733"]]},{"id":"NCBITaxon:1865","l":"Actinoplanes","na":1,"nb":367,"a":[["unclassified/kirromycin.yaml","kirromycin"]],"b":[["NCBITaxon%3A135945","Actinoplanes arizonaensis"],["NCBITaxon%3A47988","Actinoplanes auranticolor"],["NCBITaxon%3A2792083","Actinoplanes aureus"],["NCBITaxon%3A135946","Actinoplanes awajinensis"],["NCBITaxon%3A135947","Actinoplanes awajinensis subsp. mycoplanecinus"],["NCBITaxon%3A113559","Actinoplanes campanulatus"]]},{"id":"NCBITaxon:1311","l":"Streptococcus agalactiae","na":1,"nb":332,"a":[["carbohydrates/capsular-polysaccharide-3.yaml","capsular polysaccharide"]],"b":[["NCBITaxon%3A536","Chromobacterium violaceum"],["NCBITaxon%3A2896850","Phocaeicola oris"],["NCBITaxon%3A1311","Streptococcus agalactiae"],["NCBITaxon%3A997295","Streptococcus agalactiae 072.21"],["NCBITaxon%3A1309806","Streptococcus agalactiae 09mas018883"],["NCBITaxon%3A1333579","Streptococcus agalactiae 112469214-isolate1"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":1,"nb":287,"a":[["polyketides/emodin.yaml","emodin"]],"b":[["NCBITaxon%3A632","Yersinia pestis"],["NCBITaxon%3A1345710","Yersinia pestis 1045"],["NCBITaxon%3A1330535","Yersinia pestis 113"],["NCBITaxon%3A755859","Yersinia pestis 12"],["NCBITaxon%3A1345703","Yersinia pestis 1412"],["NCBITaxon%3A1345704","Yersinia pestis 1413"]]},{"id":"NCBITaxon:1142","l":"Synechocystis","na":1,"nb":247,"a":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]],"b":[["NCBITaxon%3A543824","Synechocystis aquatilis"],["NCBITaxon%3A543825","Synechocystis aquatilis 1LT32S04"],["NCBITaxon%3A1443101","Synechocystis aquatilis C23"],["NCBITaxon%3A1443102","Synechocystis aquatilis C25"],["NCBITaxon%3A1417686","Synechocystis aquatilis I13"],["NCBITaxon%3A1417687","Synechocystis aquatilis I14"]]},{"id":"NCBITaxon:626","l":"Xenorhabdus","na":1,"nb":215,"a":[["amino_acids_and_peptides/ambactin.yaml","ambactin"]],"b":[["NCBITaxon%3A651590","uncultured Xenorhabdus sp."],["NCBITaxon%3A3025874","Xenorhabdus aichiensis"],["NCBITaxon%3A3025875","Xenorhabdus anantnagensis"],["NCBITaxon%3A3026967","Xenorhabdus bakwenae"],["NCBITaxon%3A40578","Xenorhabdus beddingii"],["NCBITaxon%3A3136256","Xenorhabdus bharatensis"]]},{"id":"NCBITaxon:28450","l":"Burkholderia pseudomallei","na":1,"nb":214,"a":[["polyketides/malleilactone.yaml","malleilactone"]],"b":[["NCBITaxon%3A28450","Burkholderia pseudomallei"],["NCBITaxon%3A1085027","Burkholderia pseudomallei 1026a"],["NCBITaxon%3A884204","Burkholderia pseudomallei 1026b"],["NCBITaxon%3A1310219","Burkholderia pseudomallei 104(1990)"],["NCBITaxon%3A357348","Burkholderia pseudomallei 1106a"],["NCBITaxon%3A357347","Burkholderia pseudomallei 1106b"]]},{"id":"NCBITaxon:1203","l":"Scytonema","na":1,"nb":207,"a":[["amino_acids_and_peptides/scytodecamide.yaml","scytodecamide"]],"b":[["NCBITaxon%3A3243584","Scytonema ambikapurensis"],["NCBITaxon%3A2727002","Scytonema ambikapurensis TPJ-3"],["NCBITaxon%3A2666251","Scytonema bilaspurensis"],["NCBITaxon%3A1676468","Scytonema bilaspurensis 10C-PS"],["NCBITaxon%3A2984321","Scytonema bilaspurensis NK13"],["NCBITaxon%3A882802","Scytonema bohnerii"]]},{"id":"NCBITaxon:478070","l":"Labrenzia","na":1,"nb":203,"a":[["polyketides/labrenzin.yaml","labrenzin"]],"b":[["NCBITaxon%3A2738454","Labrenzia callyspongiae"],["NCBITaxon%3A1885934","Labrenzia sp."],["NCBITaxon%3A2171494","Labrenzia sp. 011"],["NCBITaxon%3A566486","Labrenzia sp. 06-027339"],["NCBITaxon%3A566487","Labrenzia sp. 06-028675"],["NCBITaxon%3A1914779","Labrenzia sp. 12b"]]},{"id":"NCBITaxon:28073","l":"Lyngbya","na":1,"nb":197,"a":[["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"]],"b":[["NCBITaxon%3A933334","Blennothrix cantharidosma"],["NCBITaxon%3A2006151","Capilliphycus tropicalis ALCB 114392"],["NCBITaxon%3A264748","Lyngbya aerugineo-coerulea"],["NCBITaxon%3A264749","Lyngbya aerugineo-coerulea PACC 8601"],["NCBITaxon%3A1304834","Lyngbya aerugineo-coerulea VB512251"],["NCBITaxon%3A118322","Lyngbya aestuarii"]]},{"id":"NCBITaxon:1851","l":"Saccharomonospora","na":1,"nb":192,"a":[["unclassified/taromycin-a.yaml","taromycin A"]],"b":[["NCBITaxon%3A1128677","Saccharomonospora amisosensis"],["NCBITaxon%3A40988","Saccharomonospora azurea"],["NCBITaxon%3A882081","Saccharomonospora azurea NA-128"],["NCBITaxon%3A1114959","Saccharomonospora azurea SZMC 14600"],["NCBITaxon%3A2040474","Saccharomonospora colocasiae"],["NCBITaxon%3A40989","Saccharomonospora cyanea"]]},{"id":"NCBITaxon:246875","l":"Algoriphagus","na":1,"nb":174,"a":[["polyketides/carotenoid.yaml","carotenoid"]],"b":[["NCBITaxon%3A1634955","Algoriphagus aestuarii"],["NCBITaxon%3A1852016","Algoriphagus aestuariicola"],["NCBITaxon%3A2593007","Algoriphagus algorifonticola"],["NCBITaxon%3A279824","Algoriphagus alkaliphilus"],["NCBITaxon%3A238540","Algoriphagus antarcticus"],["NCBITaxon%3A475299","Algoriphagus aquaeductus"]]},{"id":"NCBITaxon:54296","l":"Aphanizomenon gracile","na":1,"nb":158,"a":[["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"]],"b":[["NCBITaxon%3A136082","Aphanizomenon cf. gracile 271"],["NCBITaxon%3A54296","Aphanizomenon gracile"],["NCBITaxon%3A358537","Aphanizomenon gracile 0AU34S1"],["NCBITaxon%3A358539","Aphanizomenon gracile 0FT35S2"],["NCBITaxon%3A358543","Aphanizomenon gracile 0NO36S4"],["NCBITaxon%3A645895","Aphanizomenon gracile 1"]]},{"id":"NCBITaxon:109265","l":"Dolichospermum circinale","na":1,"nb":133,"a":[["alkaloids/anatoxin-a.yaml","anatoxin-a"]],"b":[["NCBITaxon%3A3085084","Anabaena circinalis CF7670"],["NCBITaxon%3A264674","Dolichospermum cf. circinale macrospora 0tu25s6"],["NCBITaxon%3A264670","Dolichospermum cf. circinale macrospora 1tu23s3"],["NCBITaxon%3A264671","Dolichospermum cf. circinale macrospora 1tu26s10"],["NCBITaxon%3A264672","Dolichospermum cf. circinale macrospora 1tu27s5"],["NCBITaxon%3A264673","Dolichospermum cf. circinale macrospora 1tu28s13"]]},{"id":"NCBITaxon:169133","l":"Citricoccus","na":1,"nb":124,"a":[["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"]],"b":[["NCBITaxon%3A246603","Citricoccus alkalitolerans"],["NCBITaxon%3A1688488","Citricoccus lacusdiani"],["NCBITaxon%3A2045010","Citricoccus massiliensis"],["NCBITaxon%3A169134","Citricoccus muralis"],["NCBITaxon%3A863575","Citricoccus nitrophenolicus"],["NCBITaxon%3A592307","Citricoccus parietis"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":1,"nb":124,"a":[["amino_acids_and_peptides/cutimycin.yaml","cutimycin"]],"b":[["NCBITaxon%3A1748","Acidipropionibacterium acidipropionici"],["NCBITaxon%3A1171373","Acidipropionibacterium acidipropionici ATCC 4875"],["NCBITaxon%3A1750","Arachnia propionica"],["NCBITaxon%3A38288","Corynebacterium genitalium"],["NCBITaxon%3A585529","Corynebacterium genitalium ATCC 33030"],["NCBITaxon%3A1747","Cutibacterium acnes"]]},{"id":"NCBITaxon:1051","l":"Ectothiorhodospira","na":1,"nb":120,"a":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]],"b":[["NCBITaxon%3A421628","Ectothiorhodospira haloalkaliphila"],["NCBITaxon%3A765873","Ectothiorhodospira haloalkaliphila ATCC 51935"],["NCBITaxon%3A480969","Ectothiorhodospira imhoffii"],["NCBITaxon%3A2899127","Ectothiorhodospira lacustris"],["NCBITaxon%3A867345","Ectothiorhodospira magna"],["NCBITaxon%3A1396821","Ectothiorhodospira marina"]]},{"id":"NCBITaxon:264691","l":"Trichormus variabilis","na":1,"nb":120,"a":[["unclassified/shinorine.yaml","shinorine"]],"b":[["NCBITaxon%3A264691","Trichormus variabilis"],["NCBITaxon%3A375899","Trichormus variabilis 0441"],["NCBITaxon%3A358556","Trichormus variabilis 9CH37S2"],["NCBITaxon%3A2681313","Trichormus variabilis 9RC"],["NCBITaxon%3A1392459","Trichormus variabilis A1"],["NCBITaxon%3A2799915","Trichormus variabilis A2"]]},{"id":"NCBITaxon:263","l":"Francisella tularensis","na":1,"nb":117,"a":[["polyketides/emodin.yaml","emodin"]],"b":[["NCBITaxon%3A984129","Francisella cf. novicida Fx1"],["NCBITaxon%3A676032","Francisella cf. tularensis subsp. novicida 3523"],["NCBITaxon%3A263","Francisella tularensis"],["NCBITaxon%3A1367846","Francisella tularensis 99A-2628"],["NCBITaxon%3A545771","Francisella tularensis B-SA"],["NCBITaxon%3A1410527","Francisella tularensis FSC069"]]},{"id":"NCBITaxon:2023","l":"Thermoactinomyces","na":1,"nb":113,"a":[["amino_acids_and_peptides/mechercharmycin.yaml","mechercharmycin"]],"b":[["NCBITaxon%3A40990","Saccharomonospora glauca"],["NCBITaxon%3A157274","Thermoactinomyces albus"],["NCBITaxon%3A1329516","Thermoactinomyces daqus"],["NCBITaxon%3A2024","Thermoactinomyces intermedius"],["NCBITaxon%3A1470181","Thermoactinomyces khenchelensis"],["NCBITaxon%3A2756294","Thermoactinomyces mirandus"]]},{"id":"NCBITaxon:29459","l":"Brucella melitensis","na":1,"nb":108,"a":[["fatty_acids/lipopolysaccharide.yaml","lipopolysaccharide"]],"b":[["NCBITaxon%3A36855","Brucella canis"],["NCBITaxon%3A483179","Brucella canis ATCC 23365"],["NCBITaxon%3A29459","Brucella melitensis"],["NCBITaxon%3A1341686","Brucella melitensis 02-5863-1"],["NCBITaxon%3A1388745","Brucella melitensis 02-7258"],["NCBITaxon%3A1266367","Brucella melitensis 043"]]},{"id":"NCBITaxon:1501433","l":"Kamptonema","na":1,"nb":101,"a":[["amino_acids_and_peptides/landornamide-a.yaml","landornamide A"]],"b":[["NCBITaxon%3A92934","Kamptonema animale"],["NCBITaxon%3A1892029","Kamptonema animale 48et"],["NCBITaxon%3A2930505","Kamptonema animale BEA 0982B"],["NCBITaxon%3A1546116","Kamptonema animale BTA258"],["NCBITaxon%3A1443097","Kamptonema animale C5"],["NCBITaxon%3A499848","Kamptonema animale CCALA 138"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":1,"nb":101,"a":[["fatty_acids/galactosylceramide.yaml","α-galactosylceramide"]],"b":[["NCBITaxon%3A817","Bacteroides fragilis"],["NCBITaxon%3A457424","Bacteroides fragilis 3_1_12"],["NCBITaxon%3A862962","Bacteroides fragilis 638R"],["NCBITaxon%3A1308728","Bacteroides fragilis ADL-402"],["NCBITaxon%3A1263046","Bacteroides fragilis CAG:47"],["NCBITaxon%3A1263047","Bacteroides fragilis CAG:558"]]},{"id":"NCBITaxon:1458928","l":"Okeania","na":1,"nb":85,"a":[["polyketides/doxorubicin.yaml","doxorubicin"]],"b":[["NCBITaxon%3A1458932","Okeania comitata"],["NCBITaxon%3A1387514","Okeania comitata 3L-OSC"],["NCBITaxon%3A1458933","Okeania erythroflocculosa"],["NCBITaxon%3A1387517","Okeania erythroflocculosa FFP12-1"],["NCBITaxon%3A643072","Okeania erythroflocculosa LP16"],["NCBITaxon%3A3799376","Okeania gaditana"]]},{"id":"NCBITaxon:44822","l":"Microcystis viridis","na":1,"nb":83,"a":[["amino_acids_and_peptides/microcystin-lr.yaml","microcystin-LR"]],"b":[["NCBITaxon%3A44822","Microcystis viridis"],["NCBITaxon%3A2798017","Microcystis viridis BKP_CS58"],["NCBITaxon%3A2798018","Microcystis viridis BKP_CS59"],["NCBITaxon%3A2798019","Microcystis viridis BKP_CS60"],["NCBITaxon%3A2798020","Microcystis viridis BKP_CS61"],["NCBITaxon%3A2798021","Microcystis viridis BKP_CS62"]]},{"id":"NCBITaxon:104204","l":"Streptomonospora","na":1,"nb":82,"a":[["polyketides/persiamycin-a.yaml","persiamycin A"]],"b":[["NCBITaxon%3A183763","Streptomonospora alba"],["NCBITaxon%3A995084","Streptomonospora algeriensis"],["NCBITaxon%3A505254","Streptomonospora amylolytica"],["NCBITaxon%3A412417","Streptomonospora arabica"],["NCBITaxon%3A505256","Streptomonospora flavalba"],["NCBITaxon%3A427369","Streptomonospora halophila"]]},{"id":"NCBITaxon:92942","l":"Nostoc linckia","na":1,"nb":77,"a":[["polyketides/cylindrocyclophane-d.yaml","Cylindrocyclophane D"]],"b":[["NCBITaxon%3A92942","Nostoc linckia"],["NCBITaxon%3A653360","Nostoc linckia 129"],["NCBITaxon%3A1977326","Nostoc linckia ACSSI 271"],["NCBITaxon%3A1565567","Nostoc linckia AUS-JR/BS/MS/NT-074"],["NCBITaxon%3A1887375","Nostoc linckia AUS-JR/MT/NT-091"],["NCBITaxon%3A1887376","Nostoc linckia AUS-JR/MT/NT-101"]]},{"id":"NCBITaxon:1764","l":"Mycobacterium avium","na":1,"nb":76,"a":[["fatty_acids/gpl-21.yaml","GPL-21"]],"b":[["NCBITaxon%3A1764","Mycobacterium avium"],["NCBITaxon%3A1392002","Mycobacterium avium 05-4293"],["NCBITaxon%3A1392001","Mycobacterium avium 09-5983"],["NCBITaxon%3A1235987","Mycobacterium avium 100"],["NCBITaxon%3A1235988","Mycobacterium avium 101"],["NCBITaxon%3A243243","Mycobacterium avium 104"]]},{"id":"NCBITaxon:373984","l":"Rivularia","na":1,"nb":70,"a":[["amino_acids_and_peptides/cyanochelin-a.yaml","cyanochelin A"]],"b":[["NCBITaxon%3A373990","Rivularia atra"],["NCBITaxon%3A373991","Rivularia atra BIR KRIV1"],["NCBITaxon%3A373992","Rivularia atra BIR MGR1"],["NCBITaxon%3A2886185","Rivularia atra TAU-MAC 3618"],["NCBITaxon%3A2136403","Rivularia biasolettiana"],["NCBITaxon%3A2136404","Rivularia biasolettiana RU1"]]},{"id":"NCBITaxon:1123","l":"Chlorogloeopsis","na":1,"nb":51,"a":[["unclassified/mycosporine-glycine.yaml","mycosporine glycine"]],"b":[["NCBITaxon%3A1124","Chlorogloeopsis fritschii"],["NCBITaxon%3A3373203","Chlorogloeopsis fritschii 0724_799_007_PCR_TH2D_31F"],["NCBITaxon%3A3373204","Chlorogloeopsis fritschii 0724_799_008_PCR_TH2D_32R"],["NCBITaxon%3A3157551","Chlorogloeopsis fritschii BACA0115"],["NCBITaxon%3A3157552","Chlorogloeopsis fritschii BACA0116"],["NCBITaxon%3A3157553","Chlorogloeopsis fritschii BACA0126"]]},{"id":"NCBITaxon:1165","l":"Anabaena cylindrica","na":1,"nb":51,"a":[["amino_acids_and_peptides/anachelin.yaml","anachelin"]],"b":[["NCBITaxon%3A136078","Anabaena cf. cylindrica 133"],["NCBITaxon%3A2716356","Anabaena cf. cylindrica BACA0067"],["NCBITaxon%3A136079","Anabaena cf. cylindrica PMC9705"],["NCBITaxon%3A264675","Anabaena cf. cylindrica XP6B"],["NCBITaxon%3A1165","Anabaena cylindrica"],["NCBITaxon%3A425377","Anabaena cylindrica A621"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":51,"a":[["alkaloids/petrobactin.yaml","petrobactin"]],"b":[["NCBITaxon%3A1392","Bacillus anthracis"],["NCBITaxon%3A1412844","Bacillus anthracis 52-G"],["NCBITaxon%3A1412843","Bacillus anthracis 8903-G"],["NCBITaxon%3A1412842","Bacillus anthracis 9080-G"],["NCBITaxon%3A1420588","Bacillus anthracis CVCC 40048"],["NCBITaxon%3A1439874","Bacillus anthracis CZC5"]]},{"id":"NCBITaxon:1518149","l":"Thalassotalea","na":1,"nb":51,"a":[["polyketides/kojic-acid.yaml","kojic acid"]],"b":[["NCBITaxon%3A864068","Thalassotalea agariperforans"],["NCBITaxon%3A349064","Thalassotalea agarivorans"],["NCBITaxon%3A2716224","Thalassotalea algicola"],["NCBITaxon%3A3242415","Thalassotalea aquiviva"],["NCBITaxon%3A2054316","Thalassotalea atypica"],["NCBITaxon%3A3075612","Thalassotalea castellviae"]]},{"id":"NCBITaxon:75695","l":"Umezakia ovalisporum","na":1,"nb":48,"a":[["alkaloids/7-epi-cylindrospermopsin.yaml","7-epi-cylindrospermopsin"]],"b":[["NCBITaxon%3A75695","Umezakia ovalisporum"],["NCBITaxon%3A543814","Umezakia ovalisporum 1LT27S04"],["NCBITaxon%3A543812","Umezakia ovalisporum 2LT27S02"],["NCBITaxon%3A543813","Umezakia ovalisporum 2LT27S12"],["NCBITaxon%3A2290998","Umezakia ovalisporum A1"],["NCBITaxon%3A985844","Umezakia ovalisporum AB2010/05"]]},{"id":"NCBITaxon:446","l":"Legionella pneumophila","na":1,"nb":47,"a":[["fatty_acids/lipopolysaccharide.yaml","lipopolysaccharide"]],"b":[["NCBITaxon%3A446","Legionella pneumophila"],["NCBITaxon%3A866628","Legionella pneumophila 130b"],["NCBITaxon%3A423212","Legionella pneumophila 2300/99 Alcoy"],["NCBITaxon%3A1370127","Legionella pneumophila Leg01/16"],["NCBITaxon%3A66976","Legionella pneumophila serogroup 1"],["NCBITaxon%3A66985","Legionella pneumophila serogroup 10"]]},{"id":"NCBITaxon:5094","l":"Talaromyces","na":1,"nb":44,"a":[["unclassified/chrodrimanin-b.yaml","chrodrimanin B"]],"b":[["NCBITaxon%3A36649","Talaromyces aculeatus"],["NCBITaxon%3A1392253","Talaromyces aculeatus ATCC 10409"],["NCBITaxon%3A1974180","Talaromyces adpressus"],["NCBITaxon%3A1196081","Talaromyces amestolkiae"],["NCBITaxon%3A1441469","Talaromyces atroroseus"],["NCBITaxon%3A36052","Talaromyces bacillisporus"]]},{"id":"NCBITaxon:644","l":"Aeromonas hydrophila","na":1,"nb":44,"a":[["amino_acids_and_peptides/amonabactin-p-750.yaml","amonabactin P 750"]],"b":[["NCBITaxon%3A105751","Aeromonas bestiarum"],["NCBITaxon%3A648","Aeromonas caviae"],["NCBITaxon%3A196024","Aeromonas dhakensis"],["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A1073378","Aeromonas hydrophila 07-345-3437"],["NCBITaxon%3A1268075","Aeromonas hydrophila 116"]]},{"id":"NCBITaxon:384","l":"Rhizobium leguminosarum","na":1,"nb":39,"a":[["amino_acids_and_peptides/vicibactin.yaml","vicibactin"]],"b":[["NCBITaxon%3A3019932","Rhizobium brockwellii"],["NCBITaxon%3A384","Rhizobium leguminosarum"],["NCBITaxon%3A385","Rhizobium leguminosarum bv. phaseoli"],["NCBITaxon%3A936350","Rhizobium leguminosarum bv. phaseoli 4292"],["NCBITaxon%3A1408223","Rhizobium leguminosarum bv. phaseoli CCGM1"],["NCBITaxon%3A1041140","Rhizobium leguminosarum bv. phaseoli FA23"]]},{"id":"NCBITaxon:715","l":"Actinobacillus pleuropneumoniae","na":1,"nb":35,"a":[["unclassified/capsular-polysaccharide.yaml","capsular polysaccharide"]],"b":[["NCBITaxon%3A44930","Natronobacterium gregoryi"],["NCBITaxon%3A797304","Natronobacterium gregoryi SP2"],["NCBITaxon%3A715","Actinobacillus pleuropneumoniae"],["NCBITaxon%3A1224142","Actinobacillus pleuropneumoniae S8"],["NCBITaxon%3A40325","Actinobacillus pleuropneumoniae serovar 1"],["NCBITaxon%3A754347","Actinobacillus pleuropneumoniae serovar 10"]]},{"id":"NCBITaxon:77133","l":"uncultured bacterium","na":34,"nb":1,"a":[["alkaloids/borregomycin-a.yaml","borregomycin A"],["alkaloids/borregomycin-b.yaml","borregomycin B"],["alkaloids/borregomycin-c.yaml","borregomycin C"],["alkaloids/borregomycin-d.yaml","borregomycin D"],["alkaloids/erdasporine-a.yaml","erdasporine A"],["alkaloids/erdasporine-b.yaml","erdasporine B"]],"b":[["NCBITaxon%3A77133","uncultured bacterium"]]},{"id":"NCBITaxon:4842","l":"Rhizopus","na":1,"nb":31,"a":[["unclassified/rhizoxin-a.yaml","rhizoxin A"]],"b":[["NCBITaxon%3A235392","Rhizopus americanus"],["NCBITaxon%3A64495","Rhizopus arrhizus"],["NCBITaxon%3A1279478","Rhizopus arrhizus 99-133"],["NCBITaxon%3A1279482","Rhizopus arrhizus 99-892"],["NCBITaxon%3A1274785","Rhizopus arrhizus B7407"],["NCBITaxon%3A1279480","Rhizopus arrhizus HUMC 02"]]},{"id":"NCBITaxon:467598","l":"Microseira wollei","na":1,"nb":30,"a":[["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"]],"b":[["NCBITaxon%3A467598","Microseira wollei"],["NCBITaxon%3A1328888","Microseira wollei AW0709"],["NCBITaxon%3A1549807","Microseira wollei AW2009"],["NCBITaxon%3A3082152","Microseira wollei CHAB5998"],["NCBITaxon%3A3082153","Microseira wollei CHAB5999"],["NCBITaxon%3A3082154","Microseira wollei CHAB6000"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":1,"nb":28,"a":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]],"b":[["NCBITaxon%3A729","Haemophilus parainfluenzae"],["NCBITaxon%3A43306","Pseudomonas denitrificans (nom. rej.)"],["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A203192","Stutzerimonas chloritidismutans"],["NCBITaxon%3A3022791","Stutzerimonas decontaminans"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":27,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]],"b":[["NCBITaxon%3A57706","Citrobacter braakii"],["NCBITaxon%3A1914243","Citrobacter europaeus"],["NCBITaxon%3A546","Citrobacter freundii"],["NCBITaxon%3A1173724","Citrobacter freundii 47N"],["NCBITaxon%3A742730","Citrobacter freundii 4_7_47CFAA"],["NCBITaxon%3A1444046","Citrobacter freundii 5-172-05_S1_C1"]]},{"id":"NCBITaxon:119534","l":"Tolypothrix distorta","na":1,"nb":25,"a":[["carbohydrates/tubercidin.yaml","tubercidin"]],"b":[["NCBITaxon%3A119534","Tolypothrix distorta"],["NCBITaxon%3A1892412","Tolypothrix distorta ACOI 731"],["NCBITaxon%3A2493220","Tolypothrix distorta ACT712"],["NCBITaxon%3A2493221","Tolypothrix distorta ATE705"],["NCBITaxon%3A2493222","Tolypothrix distorta ATE717"],["NCBITaxon%3A1496268","Tolypothrix distorta BTA187"]]},{"id":"NCBITaxon:135461","l":"Bacillus subtilis subsp. subtilis","na":1,"nb":25,"a":[["unclassified/fengycin.yaml","fengycin"]],"b":[["NCBITaxon%3A1390","Bacillus amyloliquefaciens"],["NCBITaxon%3A1452","Bacillus atrophaeus"],["NCBITaxon%3A640707","Bacillus atrophaeus ATCC 9372"],["NCBITaxon%3A96241","Bacillus spizizenii"],["NCBITaxon%3A1423","Bacillus subtilis"],["NCBITaxon%3A135461","Bacillus subtilis subsp. subtilis"]]},{"id":"NCBITaxon:37991","l":"Xylaria","na":1,"nb":25,"a":[["fatty_acids/depudecin.yaml","depudecin"]],"b":[["NCBITaxon%3A114808","Xylaria acuta"],["NCBITaxon%3A114810","Xylaria arbuscula"],["NCBITaxon%3A326684","Xylaria bambusicola"],["NCBITaxon%3A2492676","Xylaria berteroi"],["NCBITaxon%3A492089","Xylaria brunneovinosa"],["NCBITaxon%3A114812","Xylaria castorea"]]},{"id":"NCBITaxon:439476","l":"Heteroscytonema crispum","na":1,"nb":25,"a":[["alkaloids/neosaxitoxin.yaml","neosaxitoxin"]],"b":[["NCBITaxon%3A2493241","Heteroscytonema cf. crispum ACT685"],["NCBITaxon%3A1123970","Heteroscytonema cf. crispum UCFS16"],["NCBITaxon%3A1123971","Heteroscytonema cf. crispum UCFS17"],["NCBITaxon%3A1123972","Heteroscytonema cf. crispum UCFS21"],["NCBITaxon%3A439476","Heteroscytonema crispum"],["NCBITaxon%3A439477","Heteroscytonema crispum 00557"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":23,"nb":1,"a":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/melanin.yaml","melanin"],["alkaloids/undecylprodigiosin.yaml","undecylprodigiosin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/sapb.yaml","SapB"]],"b":[["NCBITaxon%3A100226","Streptomyces coelicolor A3(2)"]]},{"id":"NCBITaxon:53","l":"Nannocystis","na":1,"nb":23,"a":[["unclassified/nannocystin-a.yaml","nannocystin a"]],"b":[["NCBITaxon%3A83457","Nannocystis aggregans"],["NCBITaxon%3A2995303","Nannocystis bainbridge"],["NCBITaxon%3A54","Nannocystis exedens"],["NCBITaxon%3A1366054","Nannocystis exedens subsp. cinnabaria"],["NCBITaxon%3A2066023","Nannocystis konarekensis"],["NCBITaxon%3A2995304","Nannocystis punicea"]]},{"id":"NCBITaxon:33178","l":"Aspergillus terreus","na":22,"nb":1,"a":[["alkaloids/asterriquinone-ct5.yaml","asterriquinone CT5"],["alkaloids/cytochalasin-e.yaml","cytochalasin E"],["alkaloids/dihydroisoflavipucine.yaml","dihydroisoflavipucine"],["alkaloids/terrequinone-a.yaml","terrequinone A"],["amino_acids_and_peptides/valactamide-a.yaml","valactamide A"],["polyketides/citreoviridin.yaml","citreoviridin"]],"b":[["NCBITaxon%3A33178","Aspergillus terreus"]]},{"id":"NCBITaxon:331992","l":"Kamptonema formosum","na":1,"nb":22,"a":[["alkaloids/homoanatoxin-a.yaml","homoanatoxin-a"]],"b":[["NCBITaxon%3A493197","Kamptonema cf. formosum P-FW"],["NCBITaxon%3A493198","Kamptonema cf. formosum P-O"],["NCBITaxon%3A331992","Kamptonema formosum"],["NCBITaxon%3A1887363","Kamptonema formosum AUS-JR/AP/NT-078"],["NCBITaxon%3A2711225","Kamptonema formosum BDU30603"],["NCBITaxon%3A1977282","Kamptonema formosum BDU 30603"]]},{"id":"NCBITaxon:85698","l":"Achromobacter xylosoxidans","na":1,"nb":21,"a":[["amino_acids_and_peptides/alcaligin.yaml","alcaligin"]],"b":[["NCBITaxon%3A1389935","Achromobacter animicus"],["NCBITaxon%3A1353891","Achromobacter deleyi"],["NCBITaxon%3A32002","Achromobacter denitrificans"],["NCBITaxon%3A217204","Achromobacter insolitus"],["NCBITaxon%3A1287735","Achromobacter insuavis"],["NCBITaxon%3A470868","Achromobacter marplatensis"]]},{"id":"NCBITaxon:2878388","l":"Streptomyces sp. SCSIO 03032","na":20,"nb":1,"a":[["alkaloids/indimicin-a.yaml","indimicin A"],["alkaloids/indimicin-b.yaml","indimicin B"],["alkaloids/indimicin-c.yaml","indimicin C"],["alkaloids/indimicin-d.yaml","indimicin D"],["alkaloids/indimicin-e.yaml","indimicin E"],["alkaloids/lynamicin-a.yaml","lynamicin A"]],"b":[["NCBITaxon%3A2878388","Streptomyces marincola"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":20,"nb":1,"a":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/c-3-sulfonylated-derivative.yaml","C-3 sulfonylated derivative"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["alkaloids/n-n-dioxide-containing-derivate.yaml","N,N-dioxide containing derivate"]],"b":[["NCBITaxon%3A332952","Aspergillus flavus NRRL3357"]]},{"id":"NCBITaxon:414715","l":"Actinospica","na":1,"nb":20,"a":[["amino_acids_and_peptides/vancomycin.yaml","vancomycin"]],"b":[["NCBITaxon%3A304899","Actinospica acidiphila"],["NCBITaxon%3A2828514","Actinospica acidithermotolerans"],["NCBITaxon%3A1508375","Actinospica durhamensis"],["NCBITaxon%3A304901","Actinospica robiniae"],["NCBITaxon%3A479430","Actinospica robiniae DSM 44927"],["NCBITaxon%3A1872142","Actinospica sp."]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":1,"nb":20,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]],"b":[["NCBITaxon%3A548","Klebsiella aerogenes"],["NCBITaxon%3A1308731","Klebsiella aerogenes ADL-323"],["NCBITaxon%3A935296","Klebsiella aerogenes EA1509E"],["NCBITaxon%3A685445","Klebsiella aerogenes FGI35"],["NCBITaxon%3A1028307","Klebsiella aerogenes KCTC 2190"],["NCBITaxon%3A1439320","Klebsiella aerogenes MGH 61"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":1,"nb":19,"a":[["amino_acids_and_peptides/bacitracin.yaml","bacitracin"]],"b":[["NCBITaxon%3A1402","Bacillus licheniformis"],["NCBITaxon%3A1169411","Bacillus licheniformis 10-1-A"],["NCBITaxon%3A44097","Bacillus licheniformis 2709"],["NCBITaxon%3A1169412","Bacillus licheniformis 5-2-D"],["NCBITaxon%3A1368424","Bacillus licheniformis CG-B52"],["NCBITaxon%3A1232672","Bacillus licheniformis CGMCC 3963"]]},{"id":"NCBITaxon:43987","l":"Geotrichum","na":1,"nb":19,"a":[["terpenoids/mk-8.yaml","MK-8"]],"b":[["NCBITaxon%3A44075","Geotrichum aggregatum"],["NCBITaxon%3A27315","Geotrichum albidum"],["NCBITaxon%3A43976","Geotrichum australiense"],["NCBITaxon%3A44078","Geotrichum geniculatum"],["NCBITaxon%3A2862415","Geotrichum siamense (nom. inval.)"],["NCBITaxon%3A43962","Geotrichum armillariae"]]},{"id":"NCBITaxon:5110","l":"Claviceps","na":1,"nb":19,"a":[["alkaloids/elymoclavine.yaml","elymoclavine"]],"b":[["NCBITaxon%3A2559226","Claviceps aff. humidiphila group G2b"],["NCBITaxon%3A1967640","Claviceps aff. purpurea"],["NCBITaxon%3A83212","Claviceps africana"],["NCBITaxon%3A1623583","Claviceps arundinis"],["NCBITaxon%3A1649128","Claviceps capensis"],["NCBITaxon%3A62069","Claviceps citrina"]]},{"id":"NCBITaxon:672","l":"Vibrio vulnificus","na":1,"nb":19,"a":[["alkaloids/vulnibactin.yaml","vulnibactin"]],"b":[["NCBITaxon%3A678","Vibrio sp."],["NCBITaxon%3A672","Vibrio vulnificus"],["NCBITaxon%3A701179","Vibrio vulnificus 06-2450"],["NCBITaxon%3A1246308","Vibrio vulnificus 96-11-17M"],["NCBITaxon%3A1246309","Vibrio vulnificus A1402"],["NCBITaxon%3A1229202","Vibrio vulnificus B2"]]},{"id":"NCBITaxon:92938","l":"Fischerella muscicola","na":1,"nb":19,"a":[["alkaloids/welwitindolinone-a-isonitrile.yaml","welwitindolinone A isonitrile"]],"b":[["NCBITaxon%3A92938","Fischerella muscicola"],["NCBITaxon%3A1887362","Fischerella muscicola AUS-JR/AP/NT-083"],["NCBITaxon%3A1397105","Fischerella muscicola AUS-JR/SD/MS-035"],["NCBITaxon%3A2676271","Fischerella muscicola AYJ115"],["NCBITaxon%3A1917995","Fischerella muscicola BHU31"],["NCBITaxon%3A2737729","Fischerella muscicola C-03"]]},{"id":"NCBITaxon:95486","l":"Burkholderia cenocepacia","na":1,"nb":18,"a":[["unclassified/ornibactin-c8.yaml","ornibactin C8"]],"b":[["NCBITaxon%3A95486","Burkholderia cenocepacia"],["NCBITaxon%3A1110700","Burkholderia cenocepacia AU16956"],["NCBITaxon%3A1110701","Burkholderia cenocepacia AU16958"],["NCBITaxon%3A985077","Burkholderia cenocepacia BC7"],["NCBITaxon%3A1165869","Burkholderia cenocepacia D2AES"],["NCBITaxon%3A1055524","Burkholderia cenocepacia H111"]]},{"id":"NCBITaxon:378806","l":"Stigmatella aurantiaca DW4/3-1","na":17,"nb":1,"a":[["polyketides/aurafuron-a.yaml","aurafuron A"],["polyketides/dawenol.yaml","dawenol"],["unclassified/dkxanthene-504.yaml","dkxanthene 504"],["unclassified/dkxanthene-508.yaml","dkxanthene 508"],["unclassified/dkxanthene-518.yaml","dkxanthene 518"],["unclassified/dkxanthene-520.yaml","dkxanthene 520"]],"b":[["NCBITaxon%3A378806","Allostigmatella aurantiaca DW4/3-1"]]},{"id":"NCBITaxon:68042","l":"Streptomyces hygroscopicus subsp. hygroscopicus","na":1,"nb":17,"a":[["terpenoids/hygromycin-a.yaml","hygromycin A"]],"b":[["NCBITaxon%3A68175","Streptomyces antimycoticus"],["NCBITaxon%3A1226758","Streptomyces antimycoticus subsp. mordarskii"],["NCBITaxon%3A476551","Streptomyces ascomycinicus"],["NCBITaxon%3A114699","Streptomyces asiaticus"],["NCBITaxon%3A3098222","Streptomyces asiaticus subsp. ignotus"],["NCBITaxon%3A998084","Streptomyces himastatinicus"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":1,"nb":16,"a":[["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]],"b":[["NCBITaxon%3A1408","Bacillus pumilus"],["NCBITaxon%3A536229","Bacillus pumilus ATCC 7061"],["NCBITaxon%3A1227811","Bacillus pumilus BA06"],["NCBITaxon%3A1189615","Bacillus pumilus BL8"],["NCBITaxon%3A1350468","Bacillus pumilus CCMA-560"],["NCBITaxon%3A1330463","Bacillus pumilus CIMFR"]]},{"id":"NCBITaxon:1510471","l":"Nostoc sp. CAVN2","na":16,"nb":1,"a":[["polyketides/carbamidocyclophane-a.yaml","carbamidocyclophane A"],["polyketides/carbamidocyclophane-b.yaml","carbamidocyclophane B"],["polyketides/carbamidocyclophane-c.yaml","carbamidocyclophane C"],["polyketides/carbamidocyclophane-d.yaml","carbamidocyclophane D"],["polyketides/carbamidocyclophane-e.yaml","carbamidocyclophane E"],["polyketides/carbamidocyclophane-f.yaml","carbamidocyclophane F"]],"b":[["NCBITaxon%3A1510471","Nostoc sp. CAVN2"]]},{"id":"NCBITaxon:1549217","l":"Aspergillus stellatus","na":16,"nb":1,"a":[["fatty_acids/dioic-acid-moiety.yaml","dioic acid moiety"],["polyketides/4-methyl-5-dimethyltetradecahexaene-ketolactone.yaml","4-methyl-5-dimethyltetradecahexaene-β-ketolactone"],["polyketides/4-methyl-5-methylheptatriene-ketolactone.yaml","4-methyl-5-methylheptatriene-β-ketolactone"],["polyketides/calbistrin-a.yaml","calbistrin A"],["polyketides/calbistrin-c.yaml","calbistrin C"],["polyketides/decumbenone-a.yaml","decumbenone a"]],"b":[["NCBITaxon%3A1549217","Aspergillus stellatus"]]},{"id":"NCBITaxon:1958824","l":"Streptomyces sp. KY5","na":16,"nb":1,"a":[["polyketides/fasamycin-c.yaml","fasamycin C"],["polyketides/fasamycin-d.yaml","fasamycin D"],["polyketides/fasamycin-e.yaml","fasamycin E"],["polyketides/formicamycin-a.yaml","formicamycin A"],["polyketides/formicamycin-b.yaml","formicamycin B"],["polyketides/formicamycin-c.yaml","formicamycin C"]],"b":[["NCBITaxon%3A1958824","Streptomyces sp. KY5"]]},{"id":"NCBITaxon:587753","l":"Pseudomonas chlororaphis","na":1,"nb":16,"a":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]],"b":[["NCBITaxon%3A587753","Pseudomonas chlororaphis"],["NCBITaxon%3A1343078","Pseudomonas chlororaphis HT66"],["NCBITaxon%3A1037915","Pseudomonas chlororaphis O6"],["NCBITaxon%3A1400530","Pseudomonas chlororaphis PCYL_1"],["NCBITaxon%3A86192","Pseudomonas chlororaphis subsp. aurantiaca"],["NCBITaxon%3A1415170","Pseudomonas chlororaphis subsp. aurantiaca PB-St2"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":1,"nb":15,"a":[["amino_acids_and_peptides/salivaricin-d.yaml","salivaricin D"]],"b":[["NCBITaxon%3A1304","Streptococcus salivarius"],["NCBITaxon%3A1046629","Streptococcus salivarius 57.I"],["NCBITaxon%3A1420586","Streptococcus salivarius ATCC 25975"],["NCBITaxon%3A1263109","Streptococcus salivarius CAG:79"],["NCBITaxon%3A1048332","Streptococcus salivarius CCHSS3"],["NCBITaxon%3A1255635","Streptococcus salivarius CJ181"]]},{"id":"NCBITaxon:34451","l":"Cortinarius","na":1,"nb":15,"a":[["polyketides/clavorubin.yaml","Clavorubin"]],"b":[["NCBITaxon%3A231915","Cortinarius abnormis"],["NCBITaxon%3A2511838","Cortinarius aff. campbellae"],["NCBITaxon%3A112255","Cortinarius archeri"],["NCBITaxon%3A561959","Cortinarius aurantiobasis"],["NCBITaxon%3A742016","Cortinarius austrovenetus"],["NCBITaxon%3A86082","Cortinarius brunneus"]]},{"id":"NCBITaxon:41900","l":"Aspergillus flavipes","na":15,"nb":1,"a":[["alkaloids/aspergillin-pz.yaml","aspergillin PZ"],["alkaloids/aspochalasin-c.yaml","aspochalasin C"],["alkaloids/aspochalasin-e.yaml","aspochalasin E"],["alkaloids/aspochalasin-m.yaml","aspochalasin M"],["alkaloids/cytochalasin-e.yaml","cytochalasin E"],["alkaloids/flavichalasine-f.yaml","flavichalasine F"]],"b":[["NCBITaxon%3A41900","Aspergillus flavipes"]]},{"id":"NCBITaxon:41951","l":"Streptomyces argillaceus","na":15,"nb":1,"a":[["alkaloids/argimycin-pi.yaml","argimycin PI"],["alkaloids/argimycin-pii.yaml","argimycin PII"],["alkaloids/argimycin-piv.yaml","argimycin PIV"],["alkaloids/argimycin-pix.yaml","argimycin PIX"],["alkaloids/argimycin-pv.yaml","argimycin PV"],["alkaloids/argimycin-pvi.yaml","argimycin PVI"]],"b":[["NCBITaxon%3A41951","Streptomyces argillaceus"]]},{"id":"NCBITaxon:43657","l":"Pseudoalteromonas luteoviolacea","na":1,"nb":15,"a":[["shikimates_and_phenylpropanoids/pentabromopseudilin.yaml","pentabromopseudilin"]],"b":[["NCBITaxon%3A43657","Pseudoalteromonas luteoviolacea"],["NCBITaxon%3A1353533","Pseudoalteromonas luteoviolacea 2ta16"],["NCBITaxon%3A1268239","Pseudoalteromonas luteoviolacea B = ATCC 29581"],["NCBITaxon%3A1365248","Pseudoalteromonas luteoviolacea CPMOR-1"],["NCBITaxon%3A1365249","Pseudoalteromonas luteoviolacea CPMOR-2"],["NCBITaxon%3A1365250","Pseudoalteromonas luteoviolacea DSM 6061"]]},{"id":"NCBITaxon:5127","l":"Fusarium fujikuroi","na":15,"nb":1,"a":[["alkaloids/fusaric-acid.yaml","fusaric acid"],["alkaloids/fusarin-c.yaml","fusarin C"],["polyketides/bikaverin.yaml","bikaverin"],["polyketides/fujikurin-c.yaml","fujikurin C"],["polyketides/fujikurin-d.yaml","fujikurin D"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"]],"b":[["NCBITaxon%3A5127","Fusarium fujikuroi"]]},{"id":"NCBITaxon:645","l":"Aeromonas salmonicida","na":1,"nb":15,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A645","Aeromonas salmonicida"],["NCBITaxon%3A113288","Aeromonas salmonicida subsp. achromogenes"],["NCBITaxon%3A1233098","Aeromonas salmonicida subsp. achromogenes AS03"],["NCBITaxon%3A316054","Aeromonas salmonicida subsp. flounderacida"],["NCBITaxon%3A197700","Aeromonas salmonicida subsp. masoucida"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":1,"nb":15,"a":[["unclassified/ape-vf.yaml","APE Vf"]],"b":[["NCBITaxon%3A668","Aliivibrio fischeri"],["NCBITaxon%3A617136","Aliivibrio fischeri 1-C10"],["NCBITaxon%3A617138","Aliivibrio fischeri 9ZB36"],["NCBITaxon%3A1298605","Aliivibrio fischeri ATCC 7744 = JCM 18803 = DSM 507"],["NCBITaxon%3A1367486","Aliivibrio fischeri CB37"],["NCBITaxon%3A1367487","Aliivibrio fischeri EM17"]]},{"id":"NCBITaxon:29909","l":"Tolypocladium","na":1,"nb":14,"a":[["alkaloids/tolypyridone-c.yaml","tolypyridone C"]],"b":[["NCBITaxon%3A124418","Tolypocladium album"],["NCBITaxon%3A1436175","Tolypocladium amazonense"],["NCBITaxon%3A45235","Tolypocladium capitatum"],["NCBITaxon%3A38005","Tolypocladium cylindrosporum"],["NCBITaxon%3A1436177","Tolypocladium endophyticum"],["NCBITaxon%3A38000","Tolypocladium geodes"]]},{"id":"NCBITaxon:457083","l":"Tolypothrix tenuis","na":1,"nb":14,"a":[["carbohydrates/toyocamycin.yaml","toyocamycin"]],"b":[["NCBITaxon%3A1205934","Tolypothrix cf. tenuis UAM 392"],["NCBITaxon%3A457083","Tolypothrix tenuis"],["NCBITaxon%3A1892413","Tolypothrix tenuis CCALA 197"],["NCBITaxon%3A1496327","Tolypothrix tenuis CG21"],["NCBITaxon%3A1136103","Tolypothrix tenuis f. terrestris"],["NCBITaxon%3A1357513","Tolypothrix tenuis FACHB-128"]]},{"id":"NCBITaxon:5518","l":"Fusarium graminearum","na":14,"nb":1,"a":[["amino_acids_and_peptides/fusaoctaxin-a.yaml","fusaoctaxin A"],["polyketides/aurofusarin.yaml","aurofusarin"],["polyketides/fusarielin-h.yaml","fusarielin H"],["polyketides/gibepyrone-a.yaml","gibepyrone A"],["polyketides/prolipyrone-b.yaml","prolipyrone B"],["polyketides/zearalenone.yaml","zearalenone"]],"b":[["NCBITaxon%3A5518","Fusarium graminearum"]]},{"id":"NCBITaxon:1292","l":"Staphylococcus warneri","na":1,"nb":13,"a":[["amino_acids_and_peptides/nukacin-isk-1.yaml","nukacin ISK-1"]],"b":[["NCBITaxon%3A1283","Staphylococcus haemolyticus"],["NCBITaxon%3A1290","Staphylococcus hominis"],["NCBITaxon%3A29385","Staphylococcus saprophyticus"],["NCBITaxon%3A29387","Staphylococcus sp."],["NCBITaxon%3A1292","Staphylococcus warneri"],["NCBITaxon%3A1255582","Staphylococcus warneri 1445"]]},{"id":"NCBITaxon:1871188","l":"Kitasatospora sp.","na":13,"nb":1,"a":[["polyketides/clifednamide-d.yaml","clifednamide D"],["polyketides/clifednamide-g.yaml","clifednamide G"],["polyketides/clifednamide-h.yaml","clifednamide H"],["unclassified/clifednamide-e.yaml","clifednamide E"],["unclassified/clifednamide-f.yaml","clifednamide F"],["unclassified/clifednamide-i.yaml","clifednamide I"]],"b":[["NCBITaxon%3A1871188","Kitasatospora sp."]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":13,"nb":1,"a":[["alkaloids/holomycin.yaml","holomycin"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/2-formyloxymethylclavam.yaml","2-formyloxymethylclavam"],["amino_acids_and_peptides/2-hydroxymethylclavam.yaml","2-hydroxymethylclavam"],["amino_acids_and_peptides/alanylclavam.yaml","alanylclavam"],["amino_acids_and_peptides/cephamycin-c.yaml","cephamycin C"]],"b":[["NCBITaxon%3A1901","Streptomyces clavuligerus"]]},{"id":"NCBITaxon:29449","l":"Rhizobium etli","na":1,"nb":13,"a":[["amino_acids_and_peptides/vicibactin.yaml","vicibactin"]],"b":[["NCBITaxon%3A29449","Rhizobium etli"],["NCBITaxon%3A538025","Rhizobium etli 8C-3"],["NCBITaxon%3A323733","Rhizobium etli bv. mimosae"],["NCBITaxon%3A1432050","Rhizobium etli bv. mimosae str. IE4771"],["NCBITaxon%3A1328306","Rhizobium etli bv. mimosae str. Mim1"],["NCBITaxon%3A147700","Rhizobium etli bv. phaseoli"]]},{"id":"NCBITaxon:5583","l":"Exophiala","na":1,"nb":13,"a":[["polyketides/asperlactone.yaml","asperlactone"]],"b":[["NCBITaxon%3A91920","Exophiala alcalophila"],["NCBITaxon%3A135514","Exophiala calicioides"],["NCBITaxon%3A414539","Exophiala crusticola"],["NCBITaxon%3A5970","Exophiala dermatitidis"],["NCBITaxon%3A858893","Exophiala dermatitidis NIH/UT8656"],["NCBITaxon%3A91925","Exophiala lecanii-corni"]]},{"id":"NCBITaxon:68270","l":"Streptomyces spectabilis","na":13,"nb":1,"a":[["alkaloids/melanin.yaml","melanin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/ectoine.yaml","ectoine"],["carbohydrates/actinospectacin.yaml","actinospectacin"],["carbohydrates/spectinomycin.yaml","spectinomycin"],["polyketides/merochlorin-c.yaml","merochlorin C"]],"b":[["NCBITaxon%3A68270","Streptomyces spectabilis"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":13,"a":[["unclassified/mycobactin.yaml","mycobactin"]],"b":[["NCBITaxon%3A1773","Mycobacterium tuberculosis"],["NCBITaxon%3A83332","Mycobacterium tuberculosis H37Rv"],["NCBITaxon%3A747078","Mycobacterium tuberculosis H37Rv_2009"],["NCBITaxon%3A928249","Mycobacterium tuberculosis H37Rv_ideR_mutant_ST22"],["NCBITaxon%3A757417","Mycobacterium tuberculosis H37RvAE"],["NCBITaxon%3A757419","Mycobacterium tuberculosis H37RvCO"]]},{"id":"NCBITaxon:1048205","l":"Streptomyces uncialis","na":12,"nb":1,"a":[["alkaloids/ammosamaic-acid-cogener.yaml","ammosamaic acid cogener"],["alkaloids/ammosester-a.yaml","ammosester A"],["alkaloids/ammosester-b.yaml","ammosester B"],["alkaloids/ammosester-c.yaml","ammosester C"],["alkaloids/cladoniamide-a.yaml","cladoniamide A"],["alkaloids/cladoniamide-b.yaml","cladoniamide B"]],"b":[["NCBITaxon%3A1048205","Streptomyces uncialis"]]},{"id":"NCBITaxon:1202","l":"Leptolyngbya ectocarpi","na":1,"nb":12,"a":[["polyketides/hierridin-b.yaml","hierridin B"]],"b":[["NCBITaxon%3A1715276","Leptolyngbya aff. ectocarpi LEGE 11389"],["NCBITaxon%3A1828765","Leptolyngbya aff. ectocarpi LEGE 11473"],["NCBITaxon%3A1828722","Leptolyngbya cf. ectocarpi LEGE 11479"],["NCBITaxon%3A1202","Leptolyngbya ectocarpi"],["NCBITaxon%3A2931369","Leptolyngbya ectocarpi BEA 1211B"],["NCBITaxon%3A2931370","Leptolyngbya ectocarpi BEA 1374B"]]},{"id":"NCBITaxon:1208","l":"Trichodesmium thiebautii","na":1,"nb":12,"a":[["polyketides/doxorubicin.yaml","doxorubicin"]],"b":[["NCBITaxon%3A1208","Trichodesmium thiebautii"],["NCBITaxon%3A3080575","Trichodesmium thiebautii GoM2017"],["NCBITaxon%3A3080765","Trichodesmium thiebautii GoM-2019-11"],["NCBITaxon%3A1045877","Trichodesmium thiebautii H94"],["NCBITaxon%3A306282","Trichodesmium thiebautii II-3"],["NCBITaxon%3A2827264","Trichodesmium thiebautii sct-8t3"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":1,"nb":12,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]],"b":[["NCBITaxon%3A72000","Kocuria rhizophila"],["NCBITaxon%3A378753","Kocuria rhizophila DC2201"],["NCBITaxon%3A1272","Kocuria varians"],["NCBITaxon%3A1270","Micrococcus luteus"],["NCBITaxon%3A1357403","Micrococcus luteus CD1_FAA_NB_1"],["NCBITaxon%3A935864","Micrococcus luteus J28"]]},{"id":"NCBITaxon:1401878","l":"Microcystis aeruginosa LEGE 91341","na":12,"nb":1,"a":[["amino_acids_and_peptides/microginin-558.yaml","microginin 558"],["amino_acids_and_peptides/microginin-592.yaml","microginin 592"],["amino_acids_and_peptides/microginin-626.yaml","microginin 626"],["amino_acids_and_peptides/microginin-705.yaml","microginin 705"],["amino_acids_and_peptides/microginin-721.yaml","microginin 721"],["amino_acids_and_peptides/microginin-735.yaml","microginin 735"]],"b":[["NCBITaxon%3A1401878","Microcystis aeruginosa LEGE 91341"]]},{"id":"NCBITaxon:1433842","l":"Hapalosiphon welwitschii UTEX B 1830","na":12,"nb":1,"a":[["alkaloids/12-epi-fischerindole-i-isonitrile.yaml","12-epi-fischerindole I isonitrile"],["alkaloids/12-epi-fischerindole-u-isonitrile.yaml","12-epi-fischerindole U isonitrile"],["alkaloids/12-epi-hapalindole-c-isonitrile.yaml","12-epi-hapalindole C isonitrile"],["alkaloids/12-epi-hapalindole-e.yaml","12-epi-hapalindole E"],["alkaloids/3-epi-welwitindolinone-b-isothiocyanate.yaml","3-epi-welwitindolinone B isothiocyanate"],["alkaloids/3-z-2-isocyanovinyl-indole.yaml","3-[(Z)-2-isocyanovinyl]indole"]],"b":[["NCBITaxon%3A1433842","Hapalosiphon welwitschii UTEX B 1830"]]},{"id":"NCBITaxon:1896107","l":"Biscogniauxia sp.","na":12,"nb":1,"a":[["shikimates_and_phenylpropanoids/3-4-dihydroxy-5-polyprenylbenzoic-acid.yaml","3,4-dihydroxy-5-polyprenylbenzoic acid"],["shikimates_and_phenylpropanoids/4-hydroxy-3-prenylbenzoic-acid.yaml","4-hydroxy-3-prenylbenzoic acid"],["shikimates_and_phenylpropanoids/compound-7.yaml","compound 7"],["shikimates_and_phenylpropanoids/compound-8.yaml","compound 8"],["shikimates_and_phenylpropanoids/prenylhydroquinone.yaml","prenylhydroquinone"],["terpenoids/biscognienyne-b.yaml","biscognienyne B"]],"b":[["NCBITaxon%3A1896107","Biscogniauxia sp."]]},{"id":"NCBITaxon:1898042","l":"Pseudovibrio brasiliensis Ab134","na":12,"nb":1,"a":[["amino_acids_and_peptides/pseudovibriamide-a1.yaml","pseudovibriamide A1"],["amino_acids_and_peptides/pseudovibriamide-a2.yaml","pseudovibriamide A2"],["amino_acids_and_peptides/pseudovibriamide-a3.yaml","pseudovibriamide A3"],["amino_acids_and_peptides/pseudovibriamide-a4.yaml","pseudovibriamide A4"],["amino_acids_and_peptides/pseudovibriamide-a5.yaml","pseudovibriamide A5"],["amino_acids_and_peptides/pseudovibriamide-a6.yaml","pseudovibriamide A6"]],"b":[["NCBITaxon%3A1898042","Pseudovibrio brasiliensis"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK1622","na":12,"nb":1,"a":[["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"],["amino_acids_and_peptides/myxochromide-a.yaml","myxochromide A"],["amino_acids_and_peptides/myxoprincomide-c506.yaml","myxoprincomide-c506"]],"b":[["NCBITaxon%3A246197","Myxococcus xanthus DK 1622"]]},{"id":"NCBITaxon:28035","l":"Staphylococcus lugdunensis","na":1,"nb":12,"a":[["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]],"b":[["NCBITaxon%3A1308746","Staphylococcus lugdenensis ADL-114"],["NCBITaxon%3A1308747","Staphylococcus lugdenensis ADL-405"],["NCBITaxon%3A28035","Staphylococcus lugdunensis"],["NCBITaxon%3A883164","Staphylococcus lugdunensis ACS-027-V-Sch2"],["NCBITaxon%3A698737","Staphylococcus lugdunensis HKU09-01"],["NCBITaxon%3A525377","Staphylococcus lugdunensis M23590"]]},{"id":"NCBITaxon:28447","l":"Clavibacter michiganensis","na":1,"nb":12,"a":[["amino_acids_and_peptides/michiganin-a.yaml","michiganin A"]],"b":[["NCBITaxon%3A1874630","Clavibacter capsici"],["NCBITaxon%3A2301718","Clavibacter lycopersici"],["NCBITaxon%3A28447","Clavibacter michiganensis"],["NCBITaxon%3A33014","Clavibacter michiganensis subsp. insidiosus"],["NCBITaxon%3A33013","Clavibacter michiganensis subsp. michiganensis"],["NCBITaxon%3A443906","Clavibacter michiganensis subsp. michiganensis NCPPB 382"]]},{"id":"NCBITaxon:42308","l":"Hypoxylon","na":1,"nb":12,"a":[["polyketides/naphthalene-1-3-6-8-tetrol.yaml","naphthalene-1,3,6,8-tetrol"]],"b":[["NCBITaxon%3A1799007","Hypoxylon argillaceum"],["NCBITaxon%3A326656","Hypoxylon cercidicola"],["NCBITaxon%3A326657","Hypoxylon crocopeplum"],["NCBITaxon%3A63214","Hypoxylon fragiforme"],["NCBITaxon%3A109372","Hypoxylon fuscum"],["NCBITaxon%3A326663","Hypoxylon investiens"]]},{"id":"NCBITaxon:53409","l":"Pseudomonas coronafaciens","na":1,"nb":12,"a":[["polyketides/coronatine.yaml","coronatine"]],"b":[["NCBITaxon%3A53409","Pseudomonas coronafaciens"],["NCBITaxon%3A129135","Pseudomonas coronafaciens pv. atropurpurea"],["NCBITaxon%3A235275","Pseudomonas coronafaciens pv. coronafaciens"],["NCBITaxon%3A251653","Pseudomonas coronafaciens pv. garcae"],["NCBITaxon%3A1515743","Pseudomonas coronafaciens pv. morceparum"],["NCBITaxon%3A235277","Pseudomonas coronafaciens pv. oryzae"]]},{"id":"NCBITaxon:60172","l":"Penicillium solitum","na":12,"nb":1,"a":[["polyketides/dihydrobisvertinolone.yaml","dihydrobisvertinolone"],["polyketides/sorbicillin.yaml","sorbicillin"],["polyketides/terrestric-acid.yaml","terrestric acid"],["polyketides/tetrahydrobisvertinolone.yaml","tetrahydrobisvertinolone"],["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"],["unclassified/penitrem-a.yaml","penitrem A"]],"b":[["NCBITaxon%3A60172","Penicillium solitum"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":1,"nb":11,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A1063","Cereibacter sphaeroides"],["NCBITaxon%3A272943","Cereibacter sphaeroides 2.4.1"],["NCBITaxon%3A349102","Cereibacter sphaeroides ATCC 17025"],["NCBITaxon%3A349101","Cereibacter sphaeroides ATCC 17029"],["NCBITaxon%3A39723","Cereibacter sphaeroides f. sp. denitrificans"],["NCBITaxon%3A633146","Cereibacter sphaeroides GA"]]},{"id":"NCBITaxon:230521","l":"Fischerella ambigua UTEX 1903","na":11,"nb":1,"a":[["alkaloids/12-epi-hapalindole-j-isonitrile.yaml","12-epi-hapalindole J isonitrile"],["alkaloids/ambiguine-a-isonitrile.yaml","ambiguine A isonitrile"],["alkaloids/ambiguine-b-isonitrile.yaml","ambiguine B isonitrile"],["alkaloids/ambiguine-c-isonitrile.yaml","ambiguine C isonitrile"],["alkaloids/ambiguine-d-isonitrile.yaml","ambiguine D isonitrile"],["alkaloids/ambiguine-e-isonitrile.yaml","ambiguine E isonitrile"]],"b":[["NCBITaxon%3A230521","Fischerella ambigua UTEX 1903"]]},{"id":"NCBITaxon:358560","l":"Geitlerinema splendidum","na":1,"nb":11,"a":[["fatty_acids/1-heptadecene.yaml","1-heptadecene"]],"b":[["NCBITaxon%3A358560","Geitlerinema splendidum"],["NCBITaxon%3A358561","Geitlerinema splendidum 0ES34S4"],["NCBITaxon%3A1755260","Geitlerinema splendidum CCALA 1004"],["NCBITaxon%3A522331","Geitlerinema splendidum MCCS 019"],["NCBITaxon%3A1437317","Geitlerinema splendidum NIVA-CYA 244"],["NCBITaxon%3A2922239","Geitlerinema splendidum NRMC-F 0141"]]},{"id":"NCBITaxon:38033","l":"Chaetomium globosum","na":11,"nb":1,"a":[["alkaloids/chaetoglobosin-c.yaml","chaetoglobosin C"],["alkaloids/cytoglobosin-x.yaml","cytoglobosin X"],["polyketides/11-epichaetomugilin-a.yaml","11-epichaetomugilin A"],["polyketides/azanigerone-a.yaml","azanigerone A"],["polyketides/chaetoviridin-e.yaml","chaetoviridin E"],["polyketides/shanorellin.yaml","shanorellin"]],"b":[["NCBITaxon%3A38033","Chaetomium globosum"]]},{"id":"NCBITaxon:406818","l":"Xenorhabdus bovienii SS-2004","na":11,"nb":1,"a":[["alkaloids/3-2-acetoxy-3-oxo-4-methylhexyl-indole.yaml","3-(2'-acetoxy-3'-oxo-4'-methylhexyl)-indole"],["alkaloids/3-2-acetoxy-3-oxo-4-methylpentyl-indole.yaml","3-(2'-acetoxy-3'-oxo-4'-methylpentyl)-indole"],["alkaloids/3-2-hydroxy-3-oxo-4-methylhexyl-indole.yaml","3-(2'-hydroxy-3'-oxo-4'-methylhexyl)-indole"],["alkaloids/3-2-hydroxy-3-oxo-4-methylpentyl-indole.yaml","3-(2'-hydroxy-3'-oxo-4'-methylpentyl)-indole"],["amino_acids_and_peptides/leupeptin-a.yaml","leupeptin A"],["amino_acids_and_peptides/leupeptin-b.yaml","leupeptin B"]],"b":[["NCBITaxon%3A406818","Xenorhabdus bovienii SS-2004"]]},{"id":"NCBITaxon:47874","l":"Micromonospora rosaria","na":11,"nb":1,"a":[["polyketides/difluostatin-a.yaml","difluostatin A"],["polyketides/fluostatin-c.yaml","fluostatin C"],["polyketides/fluostatin-d.yaml","fluostatin D"],["polyketides/fluostatin-f-2.yaml","fluostatin F"],["polyketides/fluostatin-f.yaml","fluostatin F"],["polyketides/fluostatin-g-h.yaml","fluostatin G/H"]],"b":[["NCBITaxon%3A47874","Micromonospora rosaria"]]},{"id":"NCBITaxon:64","l":"Herpetosiphon","na":1,"nb":11,"a":[["alkaloids/siphonazole.yaml","siphonazole"]],"b":[["NCBITaxon%3A65","Herpetosiphon aurantiacus"],["NCBITaxon%3A316274","Herpetosiphon aurantiacus DSM 785"],["NCBITaxon%3A70996","Herpetosiphon geysericola"],["NCBITaxon%3A2029754","Herpetosiphon giganteus"],["NCBITaxon%3A1973496","Herpetosiphon gulosus"],["NCBITaxon%3A2094568","Herpetosiphon llansteffanensis"]]},{"id":"NCBITaxon:68249","l":"Streptomyces pactum","na":11,"nb":1,"a":[["terpenoids/7-deoxypactamycin.yaml","7-deoxypactamycin"],["terpenoids/nfat-133.yaml","NFAT-133"],["terpenoids/pactamycin.yaml","pactamycin"],["unclassified/pactamide-a.yaml","pactamide A"],["unclassified/pactamide-b.yaml","pactamide B"],["unclassified/pactamide-c.yaml","pactamide C"]],"b":[["NCBITaxon%3A68249","Streptomyces pactum"]]},{"id":"NCBITaxon:995841","l":"Streptomyces sp. HKI0576","na":11,"nb":1,"a":[["alkaloids/dixiamycin-a.yaml","dixiamycin A"],["alkaloids/sulfadixiamycin-a.yaml","sulfadixiamycin A"],["alkaloids/sulfadixiamycin-b.yaml","sulfadixiamycin B"],["alkaloids/sulfadixiamycin-c.yaml","sulfadixiamycin C"],["alkaloids/xiamycin-a.yaml","xiamycin A"],["terpenoids/indosespene.yaml","indosespene"]],"b":[["NCBITaxon%3A995841","Streptomyces sp. HKI0576"]]},{"id":"NCBITaxon:212355","l":"Microcoleus amoenus","na":1,"nb":10,"a":[["fatty_acids/1-heptadecene.yaml","1-heptadecene"]],"b":[["NCBITaxon%3A212355","Microcoleus amoenus"],["NCBITaxon%3A1296353","Oscillatoria amoena CCAP 1459/39"],["NCBITaxon%3A3022837","Oscillatoria amoena HA16"],["NCBITaxon%3A2922241","Oscillatoria amoena NRMC-F 0135"],["NCBITaxon%3A1521532","Oscillatoria amoena SAG 1459-7"],["NCBITaxon%3A1940722","Phormidium amoenum I013-0027"]]},{"id":"NCBITaxon:29484","l":"Yersinia frederiksenii","na":1,"nb":10,"a":[["unclassified/frederiksenibactin.yaml","frederiksenibactin"]],"b":[["NCBITaxon%3A29484","Yersinia frederiksenii"],["NCBITaxon%3A527010","Yersinia frederiksenii 7175"],["NCBITaxon%3A527011","Yersinia frederiksenii 867"],["NCBITaxon%3A349966","Yersinia frederiksenii ATCC 33641"],["NCBITaxon%3A527009","Yersinia frederiksenii CNY 867"],["NCBITaxon%3A527007","Yersinia frederiksenii WA 933"]]},{"id":"NCBITaxon:442870","l":"Acanthopleuribacter pedis KCTC 12899","na":10,"nb":1,"a":[["polyketides/21-methoxy-calyculinamide.yaml","21-methoxy-calyculinamide"],["polyketides/phorbactazole-a.yaml","phorbactazole A"],["polyketides/phorbactazole-b.yaml","phorbactazole B"],["polyketides/phorbactazole-c.yaml","phorbactazole C"],["polyketides/phorbactazole-d.yaml","phorbactazole D"],["polyketides/phorbactazole-e.yaml","phorbactazole E"]],"b":[["NCBITaxon%3A442870","Acanthopleuribacter pedis"]]},{"id":"NCBITaxon:50","l":"Chondromyces","na":1,"nb":10,"a":[["unclassified/chondramide-a.yaml","chondramide A"]],"b":[["NCBITaxon%3A51","Chondromyces apiculatus"],["NCBITaxon%3A1192034","Chondromyces apiculatus DSM 436"],["NCBITaxon%3A1653841","Chondromyces catenulatus"],["NCBITaxon%3A52","Chondromyces crocatus"],["NCBITaxon%3A83446","Chondromyces lanuginosus"],["NCBITaxon%3A83447","Chondromyces pediculatus"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae (strain ATCC 42149 / RIB 40)","na":10,"nb":1,"a":[["fatty_acids/oryzine-a.yaml","oryzine A"],["polyketides/kojic-acid.yaml","kojic acid"],["polyketides/oryzine-b.yaml","oryzine B"],["polyketides/ywa1.yaml","YWA1"],["shikimates_and_phenylpropanoids/2-4-dihydroxy-3-methoxypropiophenone.yaml","2,4'-dihydroxy-3'-methoxypropiophenone"],["shikimates_and_phenylpropanoids/8-methyldiaporthin.yaml","8-methyldiaporthin"]],"b":[["NCBITaxon%3A510516","Aspergillus oryzae RIB40"]]},{"id":"NCBITaxon:1159556","l":"Ustilaginoidea virens","na":9,"nb":1,"a":[["amino_acids_and_peptides/ustiloxin-b.yaml","ustiloxin B"],["polyketides/ustilaginoidin-a.yaml","ustilaginoidin A"],["polyketides/ustilaginoidin-d.yaml","ustilaginoidin D"],["polyketides/ustilaginoidin-e.yaml","ustilaginoidin E"],["polyketides/ustilaginoidin-f.yaml","ustilaginoidin F"],["polyketides/ustilaginoidin-g.yaml","ustilaginoidin G"]],"b":[["NCBITaxon%3A1159556","Ustilaginoidea virens"]]},{"id":"NCBITaxon:1245497","l":"Micromonospora sp. HK160111","na":9,"nb":1,"a":[["alkaloids/microansamycin-i.yaml","microansamycin I"],["polyketides/microansamycin-a.yaml","microansamycin A"],["polyketides/microansamycin-b.yaml","microansamycin B"],["polyketides/microansamycin-c.yaml","microansamycin C"],["polyketides/microansamycin-d.yaml","microansamycin D"],["polyketides/microansamycin-e.yaml","microansamycin E"]],"b":[["NCBITaxon%3A1245497","Micromonospora sp. HK160111"]]},{"id":"NCBITaxon:1599","l":"Latilactobacillus sakei","na":1,"nb":9,"a":[["unclassified/lactocin-s.yaml","lactocin S"]],"b":[["NCBITaxon%3A1599","Latilactobacillus sakei"],["NCBITaxon%3A1381395","Latilactobacillus sakei dgh6"],["NCBITaxon%3A1634","Latilactobacillus sakei L45"],["NCBITaxon%3A214325","Latilactobacillus sakei subsp. carnosus"],["NCBITaxon%3A525363","Latilactobacillus sakei subsp. carnosus DSM 15831"],["NCBITaxon%3A214326","Latilactobacillus sakei subsp. sakei"]]},{"id":"NCBITaxon:1876","l":"Micromonospora sp.","na":9,"nb":1,"a":[["polyketides/quinolidomicin-a.yaml","quinolidomicin A"],["polyketides/sungeidine-c.yaml","sungeidine C"],["polyketides/sungeidine-f.yaml","sungeidine F"],["polyketides/sungeidine-g.yaml","sungeidine G"],["shikimates_and_phenylpropanoids/sungeidine-d.yaml","sungeidine D"],["unclassified/sungeidine-a.yaml","sungeidine A"]],"b":[["NCBITaxon%3A1876","Micromonospora sp."]]},{"id":"NCBITaxon:1979465","l":"Phoma betae","na":9,"nb":1,"a":[["polyketides/betaenone-a.yaml","betaenone A"],["polyketides/betaenone-b.yaml","betaenone B"],["polyketides/betaenone-c.yaml","betaenone C"],["terpenoids/17-deoxyaphidicolin.yaml","17-deoxyaphidicolin"],["terpenoids/3-deoxyaphidicolin.yaml","3-deoxyaphidicolin"],["terpenoids/aphidicolan-16-ol.yaml","aphidicolan-16β-ol"]],"b":[["NCBITaxon%3A1979465","Neocamarosporium betae"]]},{"id":"NCBITaxon:2016","l":"Streptoalloteichus","na":1,"nb":9,"a":[["unclassified/kedarcidin.yaml","kedarcidin"]],"b":[["NCBITaxon%3A2017","Streptoalloteichus hindustanus"],["NCBITaxon%3A44103","Streptoalloteichus sp."],["NCBITaxon%3A756733","Streptoalloteichus sp. ATCC 53650"],["NCBITaxon%3A672461","Streptoalloteichus sp. CC1J"],["NCBITaxon%3A116397","Streptoalloteichus sp. IM-0154"],["NCBITaxon%3A116398","Streptoalloteichus sp. IM-0911"]]},{"id":"NCBITaxon:290110","l":"Xenorhabdus budapestensis","na":9,"nb":1,"a":[["alkaloids/bicornutin-a1.yaml","bicornutin A1"],["alkaloids/bicornutin-a2.yaml","bicornutin A2"],["alkaloids/nematophin.yaml","nematophin"],["amino_acids_and_peptides/avaroferrin.yaml","avaroferrin"],["amino_acids_and_peptides/fabclavine-ia.yaml","fabclavine Ia"],["amino_acids_and_peptides/fabclavine-ib.yaml","fabclavine Ib"]],"b":[["NCBITaxon%3A290110","Xenorhabdus budapestensis"]]},{"id":"NCBITaxon:500485","l":"Penicillium rubens Wisconsin 54-1255","na":9,"nb":1,"a":[["alkaloids/dehydrohistidyltryptophanyldiketopiperazine.yaml","dehydrohistidyltryptophanyldiketopiperazine"],["alkaloids/glandicoline-a.yaml","glandicoline A"],["alkaloids/glandicoline-b.yaml","glandicoline B"],["alkaloids/meleagrine.yaml","meleagrine"],["polyketides/sorbicillin.yaml","sorbicillin"],["terpenoids/conidiogenone.yaml","conidiogenone"]],"b":[["NCBITaxon%3A500485","Penicillium rubens Wisconsin 54-1255"]]},{"id":"NCBITaxon:5076","l":"Penicillium chrysogenum","na":9,"nb":1,"a":[["alkaloids/chrysogine.yaml","chrysogine"],["amino_acids_and_peptides/benzylpenicillin-sodium.yaml","benzylpenicillin sodium"],["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"],["amino_acids_and_peptides/n-5s-5-ammonio-5-carboxylatopentanoyl-l-cysteinyl-d-valinate.yaml","N-[(5S)-5-ammonio-5-carboxylatopentanoyl]-L-cysteinyl-D-valinate"],["polyketides/2-3-dihydrosorbicillin.yaml","2'3'-dihydrosorbicillin"],["polyketides/bisorbicillinol.yaml","bisorbicillinol"]],"b":[["NCBITaxon%3A5076","Penicillium chrysogenum"]]},{"id":"NCBITaxon:569580","l":"Streptomyces sp. CM020","na":9,"nb":1,"a":[["polyketides/1-6-dihydro-8-propylanthraquinone.yaml","1,6-dihydro-8-propylanthraquinone"],["polyketides/alnumycin-a.yaml","alnumycin A"],["polyketides/alnumycin-b.yaml","alnumycin B"],["polyketides/alnumycin-c.yaml","alnumycin C"],["polyketides/alnumycin-p.yaml","alnumycin P"],["polyketides/k1115a.yaml","K1115A"]],"b":[["NCBITaxon%3A569580","Streptomyces sp. CM020"]]},{"id":"NCBITaxon:61235","l":"Fusarium equiseti","na":9,"nb":1,"a":[["alkaloids/fusarochromene.yaml","fusarochromene"],["amino_acids_and_peptides/4-hydroxykynurenine.yaml","4-hydroxykynurenine"],["polyketides/zearalenone.yaml","zearalenone"],["terpenoids/desacetylfusarochromene.yaml","desacetylfusarochromene"],["terpenoids/fusarochromanone.yaml","fusarochromanone"],["terpenoids/mangicol-a.yaml","mangicol A"]],"b":[["NCBITaxon%3A61235","Fusarium equiseti"]]},{"id":"NCBITaxon:67282","l":"Streptomyces asterosporus","na":9,"nb":1,"a":[["alkaloids/4-e-annimycin.yaml","4-E-annimycin"],["alkaloids/4-z-annimycin.yaml","4-Z-annimycin"],["amino_acids_and_peptides/ws9326d.yaml","WS9326D"],["amino_acids_and_peptides/ws9326f.yaml","WS9326F"],["amino_acids_and_peptides/ws9326g.yaml","WS9326G"],["carbohydrates/nucleocidin.yaml","nucleocidin"]],"b":[["NCBITaxon%3A67282","Streptomyces calvus"]]},{"id":"NCBITaxon:722721","l":"Streptomyces sp. SN-1061M","na":9,"nb":1,"a":[["carbohydrates/liposidomycin-a.yaml","liposidomycin A"],["carbohydrates/liposidomycin-b.yaml","liposidomycin B"],["carbohydrates/liposidomycin-c.yaml","liposidomycin C"],["carbohydrates/liposidomycin-g.yaml","liposidomycin G"],["carbohydrates/liposidomycin-h.yaml","liposidomycin H"],["carbohydrates/liposidomycin-k.yaml","liposidomycin K"]],"b":[["NCBITaxon%3A722721","Streptomyces sp. SN-1061M"]]},{"id":"NCBITaxon:747503","l":"Sphaerospermopsis oumiana","na":1,"nb":9,"a":[["alkaloids/guanitoxin.yaml","guanitoxin"]],"b":[["NCBITaxon%3A747503","Sphaerospermopsis oumiana"],["NCBITaxon%3A929850","Sphaerospermopsis oumiana CHAB1036"],["NCBITaxon%3A929851","Sphaerospermopsis oumiana CHAB338"],["NCBITaxon%3A929852","Sphaerospermopsis oumiana CHAB502"],["NCBITaxon%3A929853","Sphaerospermopsis oumiana CHAB508"],["NCBITaxon%3A929854","Sphaerospermopsis oumiana CHAB510"]]},{"id":"NCBITaxon:764904","l":"Cystobacter sp. SBCb004","na":9,"nb":1,"a":[["amino_acids_and_peptides/tubulysin-a.yaml","tubulysin A"],["amino_acids_and_peptides/tubulysin-b.yaml","tubulysin B"],["amino_acids_and_peptides/tubulysin-c.yaml","tubulysin C"],["amino_acids_and_peptides/tubulysin-d.yaml","tubulysin D"],["amino_acids_and_peptides/tubulysin-e.yaml","tubulysin E"],["amino_acids_and_peptides/tubulysin-f.yaml","tubulysin F"]],"b":[["NCBITaxon%3A764904","Cystobacter sp. SBCb004"]]},{"id":"NCBITaxon:96241","l":"Bacillus spizizenii","na":1,"nb":9,"a":[["amino_acids_and_peptides/entianin.yaml","entianin"]],"b":[["NCBITaxon%3A96241","Bacillus spizizenii"],["NCBITaxon%3A703612","Bacillus spizizenii ATCC 6633 = JCM 2499"],["NCBITaxon%3A1051503","Bacillus spizizenii DV1-B-1"],["NCBITaxon%3A932006","Bacillus spizizenii RFWG1A3"],["NCBITaxon%3A932005","Bacillus spizizenii RFWG1A4"],["NCBITaxon%3A932007","Bacillus spizizenii RFWG4C10"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":1,"nb":8,"a":[["alkaloids/molybdenum-cofactor.yaml","molybdenum cofactor"]],"b":[["NCBITaxon%3A1061","Rhodobacter capsulatus"],["NCBITaxon%3A1415162","Rhodobacter capsulatus B6"],["NCBITaxon%3A1415160","Rhodobacter capsulatus DE442"],["NCBITaxon%3A1415163","Rhodobacter capsulatus R121"],["NCBITaxon%3A272942","Rhodobacter capsulatus SB 1003"],["NCBITaxon%3A1415161","Rhodobacter capsulatus Y262"]]},{"id":"NCBITaxon:1136432","l":"Streptomyces sp. CNH189","na":8,"nb":1,"a":[["polyketides/merochlorin-c.yaml","merochlorin C"],["terpenoids/deschloro-merochlorin-a.yaml","deschloro-merochlorin A"],["terpenoids/deschloro-merochlorin-b.yaml","deschloro-merochlorin B"],["terpenoids/dichloro-merochlorin-b.yaml","dichloro-merochlorin B"],["terpenoids/isochloro-merochlorin-b.yaml","isochloro-merochlorin B"],["terpenoids/merochlorin-a.yaml","merochlorin A"]],"b":[["NCBITaxon%3A1136432","Streptomyces sp. CNH189"]]},{"id":"NCBITaxon:1169156","l":"Streptomyces sp. CNB091","na":8,"nb":1,"a":[["unclassified/desmethylsalinamide-c.yaml","desmethylsalinamide C"],["unclassified/desmethylsalinamide-e.yaml","desmethylsalinamide E"],["unclassified/salinamide-a.yaml","salinamide A"],["unclassified/salinamide-b.yaml","salinamide B"],["unclassified/salinamide-c.yaml","salinamide C"],["unclassified/salinamide-d.yaml","salinamide D"]],"b":[["NCBITaxon%3A1169156","Streptomyces sp. CNB091"]]},{"id":"NCBITaxon:117187","l":"Fusarium verticillioides","na":8,"nb":1,"a":[["alkaloids/dihydrofusarin-c.yaml","dihydrofusarin C"],["alkaloids/epi-fusarin-c.yaml","epi-fusarin C"],["alkaloids/fusaric-acid.yaml","fusaric acid"],["alkaloids/fusarin-c.yaml","fusarin C"],["alkaloids/fusarin-d.yaml","fusarin D"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"]],"b":[["NCBITaxon%3A117187","Fusarium verticillioides"]]},{"id":"NCBITaxon:13689","l":"Sphingomonas paucimobilis","na":1,"nb":8,"a":[["unclassified/minimycin.yaml","minimycin"]],"b":[["NCBITaxon%3A178355","Flavobacterium omnivorum"],["NCBITaxon%3A1404341","Sphingobium scionense"],["NCBITaxon%3A13689","Sphingomonas paucimobilis"],["NCBITaxon%3A1219050","Sphingomonas paucimobilis NBRC 13935"],["NCBITaxon%3A33051","Sphingomonas sanguinis"],["NCBITaxon%3A1219054","Sphingomonas sanguinis NBRC 13937"]]},{"id":"NCBITaxon:1703922","l":"Streptomyces sp. CB02414","na":8,"nb":1,"a":[["polyketides/ochromycinone.yaml","ochromycinone"],["polyketides/rubiginone-a2.yaml","rubiginone A2"],["polyketides/rubiginone-b2.yaml","rubiginone B2"],["polyketides/rubiginone-j.yaml","rubiginone J"],["polyketides/rubiginone-k.yaml","rubiginone K"],["polyketides/rubiginone-l.yaml","rubiginone L"]],"b":[["NCBITaxon%3A1703922","Streptomyces sp. CB02414"]]},{"id":"NCBITaxon:1703937","l":"Streptomyces sp. CB03234","na":8,"nb":1,"a":[["terpenoids/tiancilactone-a.yaml","tiancilactone A"],["terpenoids/tiancilactone-b.yaml","tiancilactone B"],["terpenoids/tiancilactone-c.yaml","tiancilactone C"],["terpenoids/tiancilactone-d.yaml","tiancilactone D"],["terpenoids/tiancilactone-e.yaml","tiancilactone E"],["terpenoids/tiancilactone-f.yaml","tiancilactone F"]],"b":[["NCBITaxon%3A1703937","Streptomyces sp. CB03234"]]},{"id":"NCBITaxon:1809","l":"Mycobacterium ulcerans","na":1,"nb":8,"a":[["polyketides/mycolactone-b.yaml","mycolactone B"]],"b":[["NCBITaxon%3A1809","Mycobacterium ulcerans"],["NCBITaxon%3A459428","Mycobacterium ulcerans 1615"],["NCBITaxon%3A362242","Mycobacterium ulcerans Agy99"],["NCBITaxon%3A1299332","Mycobacterium ulcerans str. Harvey"],["NCBITaxon%3A1124626","Mycobacterium ulcerans subsp. shinshuense"],["NCBITaxon%3A315405","Streptococcus gallolyticus"]]},{"id":"NCBITaxon:1873460","l":"Saccharothrix sp.","na":8,"nb":1,"a":[["amino_acids_and_peptides/saccharochelin-a.yaml","saccharochelin A"],["amino_acids_and_peptides/saccharochelin-b.yaml","saccharochelin B"],["amino_acids_and_peptides/saccharochelin-c.yaml","saccharochelin C"],["amino_acids_and_peptides/saccharochelin-d.yaml","saccharochelin D"],["amino_acids_and_peptides/saccharochelin-e.yaml","saccharochelin E"],["amino_acids_and_peptides/saccharochelin-f.yaml","saccharochelin F"]],"b":[["NCBITaxon%3A1873460","Saccharothrix sp."]]},{"id":"NCBITaxon:2056244","l":"Pseudomonas sp. QS1027","na":8,"nb":1,"a":[["amino_acids_and_peptides/keanumycin-c.yaml","Keanumycin C"],["amino_acids_and_peptides/virginiafactin-a.yaml","virginiafactin A"],["amino_acids_and_peptides/virginiafactin-b.yaml","virginiafactin B"],["amino_acids_and_peptides/virginiafactin-c.yaml","virginiafactin C"],["amino_acids_and_peptides/virginiafactin-d.yaml","virginiafactin D"],["unclassified/jessenipeptin.yaml","jessenipeptin"]],"b":[["NCBITaxon%3A2056244","Pseudomonas sp. QS1027"]]},{"id":"NCBITaxon:2814655","l":"Nostoc sp. UHCC 0702","na":8,"nb":1,"a":[["amino_acids_and_peptides/heinamide-a1.yaml","heinamide A1"],["amino_acids_and_peptides/heinamide-a2.yaml","heinamide A2"],["amino_acids_and_peptides/heinamide-a3.yaml","heinamide A3"],["amino_acids_and_peptides/heinamide-b1.yaml","heinamide B1"],["amino_acids_and_peptides/heinamide-b2.yaml","heinamide B2"],["amino_acids_and_peptides/heinamide-b3.yaml","heinamide B3"]],"b":[["NCBITaxon%3A2814655","Nostoc sp. UHCC 0702"]]},{"id":"NCBITaxon:303698","l":"Penicillium steckii","na":8,"nb":1,"a":[["unclassified/adametizine-a.yaml","adametizine A"],["unclassified/fa2097.yaml","FA2097"],["unclassified/outovirin-a.yaml","outovirin A"],["unclassified/outovirin-c.yaml","outovirin C"],["unclassified/penigainamide-a.yaml","penigainamide A"],["unclassified/penigainamide-b.yaml","penigainamide B"]],"b":[["NCBITaxon%3A303698","Penicillium steckii"]]},{"id":"NCBITaxon:345341","l":"Kutzneria sp. 744","na":8,"nb":1,"a":[["amino_acids_and_peptides/kutzneride-6.yaml","Kutzneride 6"],["unclassified/kutzneride-1.yaml","Kutzneride 1"],["unclassified/kutzneride-2.yaml","Kutzneride 2"],["unclassified/kutzneride-3.yaml","Kutzneride 3"],["unclassified/kutzneride-4.yaml","Kutzneride 4"],["unclassified/kutzneride-5.yaml","Kutzneride 5"]],"b":[["NCBITaxon%3A345341","Kutzneria sp. 744"]]},{"id":"NCBITaxon:36656","l":"Penicillium crustosum","na":8,"nb":1,"a":[["polyketides/terrestric-acid.yaml","terrestric acid"],["unclassified/penitrem-a.yaml","penitrem A"],["unclassified/penitrem-b.yaml","penitrem B"],["unclassified/penitrem-c.yaml","penitrem C"],["unclassified/penitrem-d.yaml","penitrem D"],["unclassified/penitrem-e.yaml","penitrem E"]],"b":[["NCBITaxon%3A36656","Penicillium crustosum"]]},{"id":"NCBITaxon:420953","l":"Paraburkholderia megapolitana","na":8,"nb":1,"a":[["amino_acids_and_peptides/megapolibactin-a.yaml","megapolibactin A"],["amino_acids_and_peptides/megapolibactin-acyc.yaml","megapolibactin Acyc"],["amino_acids_and_peptides/megapolibactin-b.yaml","megapolibactin B"],["amino_acids_and_peptides/megapolibactin-c.yaml","megapolibactin C"],["amino_acids_and_peptides/megapolibactin-d.yaml","megapolibactin D"],["amino_acids_and_peptides/megapolibactin-e.yaml","megapolibactin E"]],"b":[["NCBITaxon%3A420953","Paraburkholderia megapolitana"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":1,"nb":8,"a":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]],"b":[["NCBITaxon%3A4932","Saccharomyces cerevisiae"],["NCBITaxon%3A1266529","Saccharomyces cerevisiae BY4743"],["NCBITaxon%3A1218710","Saccharomyces cerevisiae CBS 1585"],["NCBITaxon%3A764102","Saccharomyces cerevisiae FostersB"],["NCBITaxon%3A764101","Saccharomyces cerevisiae FostersO"],["NCBITaxon%3A1220494","Saccharomyces cerevisiae PE-2"]]},{"id":"NCBITaxon:64187","l":"Xanthomonas oryzae pv. oryzae","na":1,"nb":8,"a":[["unclassified/xanthomonadin-i.yaml","xanthomonadin I"]],"b":[["NCBITaxon%3A347","Xanthomonas oryzae"],["NCBITaxon%3A1313303","Xanthomonas oryzae ATCC 35933"],["NCBITaxon%3A64187","Xanthomonas oryzae pv. oryzae"],["NCBITaxon%3A291331","Xanthomonas oryzae pv. oryzae KACC 10331"],["NCBITaxon%3A342109","Xanthomonas oryzae pv. oryzae MAFF 311018"],["NCBITaxon%3A1423889","Xanthomonas oryzae pv. oryzae NAI8"]]},{"id":"NCBITaxon:648","l":"Aeromonas caviae","na":1,"nb":8,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]],"b":[["NCBITaxon%3A648","Aeromonas caviae"],["NCBITaxon%3A878320","Aeromonas caviae Ae398"],["NCBITaxon%3A1458270","Aeromonas caviae NM22"],["NCBITaxon%3A1458271","Aeromonas caviae NM33"],["NCBITaxon%3A3418572","Aeromonas caviae subsp. aquatica"],["NCBITaxon%3A644","Aeromonas hydrophila"]]},{"id":"NCBITaxon:65497","l":"","na":8,"nb":1,"a":[["alkaloids/caerulomycin-a.yaml","caerulomycin A"],["alkaloids/cyanogramide-b.yaml","cyanogramide B"],["alkaloids/cyanogramide-c.yaml","cyanogramide C"],["alkaloids/cyanogramide-d.yaml","cyanogramide D"],["alkaloids/phenaziterpene-a.yaml","phenaziterpene A"],["carbohydrates/kanamycin-a.yaml","kanamycin A"]],"b":[["NCBITaxon%3A2893586","Actinoalloteichus caeruleus"]]},{"id":"NCBITaxon:675526","l":"Stigmatella aurantiaca Sg a15","na":8,"nb":1,"a":[["alkaloids/aurachin-a.yaml","aurachin A"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"],["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/myxochelin-b.yaml","myxochelin B"],["polyketides/rhizopodin.yaml","rhizopodin"]],"b":[["NCBITaxon%3A675526","Allostigmatella aurantiaca Sg a15"]]},{"id":"NCBITaxon:680198","l":"Streptomyces scabiei 87.22","na":8,"nb":1,"a":[["alkaloids/rotihibin-a.yaml","rotihibin A"],["amino_acids_and_peptides/bottromycin-a2.yaml","bottromycin A2"],["amino_acids_and_peptides/edha.yaml","EDHA"],["amino_acids_and_peptides/scabichelin.yaml","scabichelin"],["amino_acids_and_peptides/thaxtomin-c.yaml","thaxtomin C"],["unclassified/n-coronafacoyl-l-isoleucine.yaml","N-coronafacoyl-L-isoleucine"]],"b":[["NCBITaxon%3A680198","Streptomyces scabiei 87.22"]]},{"id":"NCBITaxon:97398","l":"Streptomyces abikoensis","na":1,"nb":8,"a":[["alkaloids/carbazomycin-b.yaml","carbazomycin B"]],"b":[["NCBITaxon%3A97398","Streptomyces abikoensis"],["NCBITaxon%3A68195","Streptomyces ehimensis"],["NCBITaxon%3A3075519","Streptomyces hesseae"],["NCBITaxon%3A66425","Streptomyces luteoverticillatus"],["NCBITaxon%3A68246","Streptomyces olivoreticuli"],["NCBITaxon%3A68252","Streptomyces parvisporogenes"]]},{"id":"NCBITaxon:104259","l":"Penicillium brasilianum","na":7,"nb":1,"a":[["alkaloids/brasiliamide-i.yaml","brasiliamide I"],["unclassified/brasiliamide-a.yaml","brasiliamide A"],["unclassified/brasiliamide-b.yaml","brasiliamide B"],["unclassified/brasiliamide-d.yaml","brasiliamide D"],["unclassified/paraherquamide.yaml","paraherquamide"],["unclassified/paraherquonin.yaml","paraherquonin"]],"b":[["NCBITaxon%3A104259","Penicillium brasilianum"]]},{"id":"NCBITaxon:1169167","l":"Salinispora arenicola CNR107","na":7,"nb":1,"a":[["unclassified/be-43547a1-2.yaml","BE-43547A1"],["unclassified/be-43547a2.yaml","BE-43547A2"],["unclassified/be-43547b1.yaml","BE-43547B1"],["unclassified/be-43547b2.yaml","BE-43547B2"],["unclassified/be-43547b3.yaml","BE-43547B3"],["unclassified/be-43547c1.yaml","BE-43547C1"]],"b":[["NCBITaxon%3A1169167","Salinispora arenicola CNR107"]]},{"id":"NCBITaxon:1245024","l":"Streptomyces sp. LZ35","na":7,"nb":1,"a":[["polyketides/hygrocin-a.yaml","hygrocin A"],["polyketides/hygrocin-b.yaml","hygrocin B"],["shikimates_and_phenylpropanoids/echoside-a.yaml","echoside A"],["shikimates_and_phenylpropanoids/echoside-b.yaml","echoside B"],["shikimates_and_phenylpropanoids/echoside-c.yaml","echoside C"],["shikimates_and_phenylpropanoids/echoside-d.yaml","echoside D"]],"b":[["NCBITaxon%3A1245024","Streptomyces sp. LZ35"]]},{"id":"NCBITaxon:132473","l":"Streptomyces alboniger","na":7,"nb":1,"a":[["carbohydrates/puromycin.yaml","puromycin"],["polyketides/homopamamycin-677a.yaml","homopamamycin-677A"],["polyketides/pamamycin-607.yaml","pamamycin-607"],["polyketides/pamamycin-621a.yaml","pamamycin-621A"],["polyketides/pamamycin-635g.yaml","pamamycin-635G"],["polyketides/pamamycin-649b.yaml","pamamycin-649B"]],"b":[["NCBITaxon%3A132473","Streptomyces alboniger"]]},{"id":"NCBITaxon:140106","l":"Neonectria","na":1,"nb":7,"a":[["alkaloids/ilicicolin-j.yaml","ilicicolin J"]],"b":[["NCBITaxon%3A57153","Neonectria coccinea"],["NCBITaxon%3A78410","Neonectria ditissima"],["NCBITaxon%3A992199","Neonectria faginata"],["NCBITaxon%3A78402","Neonectria hederae"],["NCBITaxon%3A57155","Neonectria lugdunensis"],["NCBITaxon%3A979145","Neonectria punicea"]]},{"id":"NCBITaxon:1661387","l":"Micromonospora sp. RV43","na":7,"nb":1,"a":[["unclassified/be-43547a1.yaml","BE-43547A1"],["unclassified/be-43547a2.yaml","BE-43547A2"],["unclassified/be-43547b1.yaml","BE-43547B1"],["unclassified/be-43547b2.yaml","BE-43547B2"],["unclassified/be-43547b3.yaml","BE-43547B3"],["unclassified/be-43547c1.yaml","BE-43547C1"]],"b":[["NCBITaxon%3A1661387","Micromonospora sp. RV43"]]},{"id":"NCBITaxon:1703943","l":"Streptomyces sp. CB01883","na":7,"nb":1,"a":[["amino_acids_and_peptides/guangnanmycin.yaml","guangnanmycin"],["polyketides/isofuranonaphthoquinone-a.yaml","Isofuranonaphthoquinone A"],["polyketides/isofuranonaphthoquinone-b.yaml","Isofuranonaphthoquinone B"],["polyketides/isofuranonaphthoquinone-c.yaml","Isofuranonaphthoquinone C"],["polyketides/isofuranonaphthoquinone-d.yaml","Isofuranonaphthoquinone D"],["polyketides/isofuranonaphthoquinone-e.yaml","Isofuranonaphthoquinone E"]],"b":[["NCBITaxon%3A1703943","Streptomyces sp. CB01883"]]},{"id":"NCBITaxon:177416","l":"Francisella tularensis subsp. tularensis SCHU S4","na":1,"nb":7,"a":[["unclassified/rhizoferrin.yaml","rhizoferrin"]],"b":[["NCBITaxon%3A177416","Francisella tularensis subsp. tularensis SCHU S4"],["NCBITaxon%3A1341660","Francisella tularensis subsp. tularensis str. SCHU S4 substr. FSC237"],["NCBITaxon%3A1341661","Francisella tularensis subsp. tularensis str. SCHU S4 substr. FTS-634/635"],["NCBITaxon%3A1341657","Francisella tularensis subsp. tularensis str. SCHU S4 substr. NR-10492"],["NCBITaxon%3A1341656","Francisella tularensis subsp. tularensis str. SCHU S4 substr. NR-28534"],["NCBITaxon%3A1341658","Francisella tularensis subsp. tularensis str. SCHU S4 substr. NR-643"]]},{"id":"NCBITaxon:1893","l":"Streptomyces atratus","na":7,"nb":1,"a":[["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/ilamycin-b1.yaml","ilamycin B1"],["amino_acids_and_peptides/ilamycin-b2.yaml","ilamycin B2"],["amino_acids_and_peptides/ilamycin-e1.yaml","ilamycin E1"],["amino_acids_and_peptides/rufomycin.yaml","rufomycin"],["unclassified/ilamycin-c1.yaml","ilamycin C1"]],"b":[["NCBITaxon%3A1893","Streptomyces atratus"]]},{"id":"NCBITaxon:1934313","l":"Chitinimonas sp.","na":7,"nb":1,"a":[["amino_acids_and_peptides/chitinimide-a.yaml","chitinimide A"],["amino_acids_and_peptides/chitinimide-b.yaml","chitinimide B"],["amino_acids_and_peptides/chitinimide-c.yaml","chitinimide C"],["amino_acids_and_peptides/chitinimide-d.yaml","chitinimide D"],["amino_acids_and_peptides/chitinimide-e.yaml","chitinimide E"],["amino_acids_and_peptides/chitinimide-f.yaml","chitinimide F"]],"b":[["NCBITaxon%3A1934313","Chitinimonas sp."]]},{"id":"NCBITaxon:2014","l":"Nocardiopsis dassonvillei","na":1,"nb":7,"a":[["alkaloids/iodinin.yaml","iodinin"]],"b":[["NCBITaxon%3A146802","Nocardiopsis alborubida"],["NCBITaxon%3A1223496","Nocardiopsis alborubida NBRC 13392"],["NCBITaxon%3A2014","Nocardiopsis dassonvillei"],["NCBITaxon%3A2580523","Nocardiopsis dassonvillei subsp. crassaminis"],["NCBITaxon%3A568208","Nocardiopsis dassonvillei subsp. dassonvillei"],["NCBITaxon%3A446468","Nocardiopsis dassonvillei subsp. dassonvillei DSM 43111"]]},{"id":"NCBITaxon:2024858","l":"","na":7,"nb":1,"a":[["amino_acids_and_peptides/sandarazol-a.yaml","sandarazol A"],["amino_acids_and_peptides/sandarazol-c.yaml","sandarazol C"],["amino_acids_and_peptides/sandarazol-d.yaml","sandarazol D"],["amino_acids_and_peptides/sandarazol-f.yaml","sandarazol F"],["amino_acids_and_peptides/sandarazol-g.yaml","sandarazol G"],["unclassified/sandarazol-b.yaml","sandarazol B"]],"b":[["NCBITaxon%3A2024858","Sandaracinus sp."]]},{"id":"NCBITaxon:209559","l":"","na":7,"nb":1,"a":[["polyketides/burnettiene-a.yaml","burnettiene A"],["polyketides/preburnettiene-a.yaml","preburnettiene A"],["polyketides/preburnettiene-b.yaml","preburnettiene B"],["unclassified/14-hydroxypaspalinine.yaml","14-hydroxypaspalinine"],["unclassified/14-leucyloxy-paspalinine.yaml","14-(leucyloxy)paspalinine"],["unclassified/14-n-n-dimethylleucyloxy-paspalinine.yaml","14-(N,N-dimethylleucyloxy)paspalinine"]],"b":[["NCBITaxon%3A209559","Aspergillus alliaceus"]]},{"id":"NCBITaxon:223283","l":"Pseudomonas syringae pv. tomato (strain ATCC BAA-871 / DC3000)","na":7,"nb":1,"a":[["alkaloids/yersiniabactin.yaml","yersiniabactin"],["amino_acids_and_peptides/syringafactin-a.yaml","syringafactin A"],["amino_acids_and_peptides/syringafactin-b.yaml","syringafactin B"],["amino_acids_and_peptides/syringafactin-c.yaml","syringafactin C"],["amino_acids_and_peptides/syringafactin-d.yaml","syringafactin D"],["amino_acids_and_peptides/syringafactin-e.yaml","syringafactin E"]],"b":[["NCBITaxon%3A223283","Pseudomonas syringae pv. tomato str. DC3000"]]},{"id":"NCBITaxon:2487000","l":"Hypomontagnella monticulosa","na":7,"nb":1,"a":[["fatty_acids/deoxysporothric-acid.yaml","deoxysporothric acid"],["fatty_acids/sporothric-acid.yaml","sporothric acid"],["polyketides/dihydroisosporothric-acid.yaml","dihydroisosporothric acid"],["polyketides/isosporothric-acid.yaml","isosporothric acid"],["polyketides/sporochartine-b.yaml","sporochartine B"],["polyketides/sporothriolide.yaml","sporothriolide"]],"b":[["NCBITaxon%3A2487000","Hypomontagnella monticulosa"]]},{"id":"NCBITaxon:2818510","l":"Candidatus Synoicihabitans palmerolidicus","na":7,"nb":1,"a":[["polyketides/palmerolide-a.yaml","palmerolide A"],["polyketides/palmerolide-b.yaml","palmerolide B"],["polyketides/palmerolide-c.yaml","palmerolide C"],["polyketides/palmerolide-d.yaml","palmerolide D"],["polyketides/palmerolide-f.yaml","palmerolide F"],["polyketides/palmerolide-g.yaml","palmerolide G"]],"b":[["NCBITaxon%3A2818510","Candidatus Synoicihabitans palmerolidicus"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":1,"nb":7,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]],"b":[["NCBITaxon%3A293","Brevundimonas diminuta"],["NCBITaxon%3A1255603","Brevundimonas diminuta 3F5N"],["NCBITaxon%3A1035191","Brevundimonas diminuta 470-4"],["NCBITaxon%3A751586","Brevundimonas diminuta ATCC 11568"],["NCBITaxon%3A588932","Brevundimonas naejangsanensis"],["NCBITaxon%3A1325724","Brevundimonas vancanneytii"]]},{"id":"NCBITaxon:33069","l":"Pseudomonas viridiflava","na":1,"nb":7,"a":[["unclassified/fosfomycin.yaml","fosfomycin"]],"b":[["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A33069","Pseudomonas viridiflava"],["NCBITaxon%3A1357290","Pseudomonas viridiflava CC1582"],["NCBITaxon%3A1198305","Pseudomonas viridiflava ICMP 13104"],["NCBITaxon%3A1198674","Pseudomonas viridiflava ICMP 6717"],["NCBITaxon%3A1357291","Pseudomonas viridiflava TA043"]]},{"id":"NCBITaxon:337330","l":"Lactiplantibacillus plantarum subsp. plantarum","na":1,"nb":7,"a":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]],"b":[["NCBITaxon%3A1590","Lactiplantibacillus plantarum"],["NCBITaxon%3A337330","Lactiplantibacillus plantarum subsp. plantarum"],["NCBITaxon%3A525338","Lactiplantibacillus plantarum subsp. plantarum ATCC 14917 = JCM 1149 = CGMCC"],["NCBITaxon%3A889516","Lactiplantibacillus plantarum subsp. plantarum KCA-1"],["NCBITaxon%3A1036177","Lactiplantibacillus plantarum subsp. plantarum NC8"],["NCBITaxon%3A767468","Lactiplantibacillus plantarum subsp. plantarum P-8"]]},{"id":"NCBITaxon:33910","l":"Amycolatopsis mediterranei","na":1,"nb":7,"a":[["polyketides/rifamycin-sv.yaml","rifamycin SV"]],"b":[["NCBITaxon%3A33910","Amycolatopsis mediterranei"],["NCBITaxon%3A1221524","Amycolatopsis mediterranei RB"],["NCBITaxon%3A713604","Amycolatopsis mediterranei S699"],["NCBITaxon%3A454030","Amycolatopsis mediterranei subsp. kanglensis"],["NCBITaxon%3A749927","Amycolatopsis mediterranei U32"],["NCBITaxon%3A287986","Amycolatopsis rifamycinica"]]},{"id":"NCBITaxon:362","l":"Agrobacterium radiobacter","na":1,"nb":7,"a":[["alkaloids/agrobactin.yaml","agrobactin"]],"b":[["NCBITaxon%3A362","Agrobacterium radiobacter"],["NCBITaxon%3A1336745","Agrobacterium radiobacter DSM 30147"],["NCBITaxon%3A361","Agrobacterium sp."],["NCBITaxon%3A358","Agrobacterium tumefaciens"],["NCBITaxon%3A359","Martinezella rhizogenes"],["NCBITaxon%3A204072","Ramlibacter henchirensis"]]},{"id":"NCBITaxon:391037","l":"Salinispora arenicola CNS-205","na":7,"nb":1,"a":[["alkaloids/lymphostin.yaml","lymphostin"],["alkaloids/lymphostinol.yaml","lymphostinol"],["alkaloids/neolymphostin-b.yaml","neolymphostin b"],["alkaloids/neolymphostinol-b.yaml","neolymphostinol B"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/cyclomarin-d.yaml","cyclomarin D"]],"b":[["NCBITaxon%3A391037","Salinispora arenicola CNS-205"]]},{"id":"NCBITaxon:5077","l":"Penicillium citrinum","na":7,"nb":1,"a":[["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["polyketides/citrinin.yaml","(+)-citrinin"],["polyketides/mevinic-acid.yaml","mevinic acid"],["unclassified/orcinol.yaml","orcinol"],["unclassified/penigainamide-a.yaml","penigainamide A"],["unclassified/penigainamide-b.yaml","penigainamide B"]],"b":[["NCBITaxon%3A5077","Penicillium citrinum"]]},{"id":"NCBITaxon:5599","l":"Alternaria alternata","na":7,"nb":1,"a":[["alkaloids/ak-toxin-i.yaml","AK-toxin I"],["alkaloids/dimethylcoprogen.yaml","dimethylcoprogen"],["amino_acids_and_peptides/am-toxin.yaml","AM-toxin"],["polyketides/act-toxin-ii.yaml","ACT-Toxin II"],["polyketides/unii-yc2q1o94pt.yaml","UNII-YC2Q1O94PT"],["unclassified/af-toxin.yaml","AF-toxin"]],"b":[["NCBITaxon%3A5599","Alternaria alternata"]]},{"id":"NCBITaxon:63737","l":"Nostoc punctiforme PCC 73102","na":7,"nb":1,"a":[["amino_acids_and_peptides/microviridin-n3.yaml","microviridin N3"],["amino_acids_and_peptides/microviridin-n4.yaml","microviridin N4"],["amino_acids_and_peptides/microviridin-n6.yaml","microviridin N6"],["amino_acids_and_peptides/microviridin-n7.yaml","microviridin N7"],["amino_acids_and_peptides/microviridin-n8.yaml","microviridin N8"],["amino_acids_and_peptides/microviridin-n9.yaml","microviridin N9"]],"b":[["NCBITaxon%3A63737","Nostoc punctiforme PCC 73102"]]},{"id":"NCBITaxon:67339","l":"Streptomyces orinoci","na":7,"nb":1,"a":[["polyketides/aureothin.yaml","aureothin"],["polyketides/orinocin.yaml","orinocin"],["polyketides/spectinabilin.yaml","spectinabilin"],["terpenoids/snf4435c.yaml","SNF4435C"],["terpenoids/snf4435d.yaml","SNF4435D"],["unclassified/neoantimycin-2.yaml","neoantimycin"]],"b":[["NCBITaxon%3A67339","Streptomyces orinoci"]]},{"id":"NCBITaxon:683308","l":"Frankia sp. CH37","na":7,"nb":1,"a":[["amino_acids_and_peptides/frankobactin-a1.yaml","frankobactin A1"],["amino_acids_and_peptides/frankobactin-a3.yaml","frankobactin A3"],["amino_acids_and_peptides/frankobactin-b1.yaml","frankobactin B1"],["amino_acids_and_peptides/frankobactin-b3.yaml","frankobactin B3"],["amino_acids_and_peptides/frankobactin-c1.yaml","frankobactin C1"],["unclassified/frankobactin-a2.yaml","frankobactin A2"]],"b":[["NCBITaxon%3A683308","Parafrankia sp. CH37"]]},{"id":"NCBITaxon:69966","l":"Macrococcoides caseolyticum","na":1,"nb":7,"a":[["amino_acids_and_peptides/micrococcin-p1.yaml","micrococcin P1"]],"b":[["NCBITaxon%3A69966","Macrococcoides caseolyticum"],["NCBITaxon%3A1255615","Macrococcoides caseolyticum ATCC 13458 = DSM 20597"],["NCBITaxon%3A458233","Macrococcoides caseolyticum JCSC5402"],["NCBITaxon%3A2233644","Macrococcoides caseolyticum subsp. caseolyticum"],["NCBITaxon%3A1891096","Macrococcoides caseolyticum subsp. hominis"],["NCBITaxon%3A29385","Staphylococcus saprophyticus"]]},{"id":"NCBITaxon:80884","l":"Colletotrichum higginsianum","na":7,"nb":1,"a":[["shikimates_and_phenylpropanoids/colletorin-d-acid.yaml","Colletorin D acid"],["unclassified/13-epi-higginsianin-c.yaml","13-epi-higginsianin C"],["unclassified/colletorin-d.yaml","Colletorin D"],["unclassified/higginsianin-b.yaml","higginsianin B"],["unclassified/higginsianin-c.yaml","higginsianin C"],["unclassified/higginsianin-d.yaml","higginsianin D"]],"b":[["NCBITaxon%3A80884","Colletotrichum higginsianum"]]},{"id":"NCBITaxon:945781","l":"Synechocystis salina LEGE 06099","na":7,"nb":1,"a":[["polyketides/bartoloside-e.yaml","bartoloside E"],["polyketides/bartoloside-f.yaml","bartoloside F"],["polyketides/bartoloside-g.yaml","bartoloside G"],["polyketides/bartoloside-h.yaml","bartoloside H"],["polyketides/bartoloside-i.yaml","bartoloside I"],["polyketides/bartoloside-j.yaml","bartoloside J"]],"b":[["NCBITaxon%3A945781","Synechocystis salina LEGE 06099"]]},{"id":"NCBITaxon:1173023","l":"Fischerella sp. PCC 9431","na":6,"nb":1,"a":[["unclassified/hapalosin-a.yaml","hapalosin A"],["unclassified/hapalosin-c.yaml","hapalosin C"],["unclassified/hapalosin-d.yaml","hapalosin D"],["unclassified/hapalosin-e.yaml","hapalosin E"],["unclassified/hapalosin-f.yaml","hapalosin F"],["unclassified/hapalosin-g.yaml","hapalosin G"]],"b":[["NCBITaxon%3A1173023","Fischerella sp. PCC 9431"]]},{"id":"NCBITaxon:128403","l":"Scytonema hofmannii PCC 7110","na":6,"nb":1,"a":[["amino_acids_and_peptides/scytocyclamide-a.yaml","scytocyclamide A"],["amino_acids_and_peptides/scytocyclamide-a2.yaml","scytocyclamide A2"],["amino_acids_and_peptides/scytocyclamide-b.yaml","scytocyclamide B"],["amino_acids_and_peptides/scytocyclamide-b2.yaml","scytocyclamide B2"],["amino_acids_and_peptides/scytocyclamide-b3.yaml","scytocyclamide B3"],["amino_acids_and_peptides/scytocyclamide-c.yaml","scytocyclamide C"]],"b":[["NCBITaxon%3A128403","Scytonema hofmannii PCC 7110"]]},{"id":"NCBITaxon:1342289","l":"Scytonema hofmannii","na":6,"nb":1,"a":[["amino_acids_and_peptides/scytocyclamide-a.yaml","scytocyclamide A"],["amino_acids_and_peptides/scytocyclamide-a2.yaml","scytocyclamide A2"],["amino_acids_and_peptides/scytocyclamide-b.yaml","scytocyclamide B"],["amino_acids_and_peptides/scytocyclamide-b2.yaml","scytocyclamide B2"],["amino_acids_and_peptides/scytocyclamide-b3.yaml","scytocyclamide B3"],["amino_acids_and_peptides/scytocyclamide-c.yaml","scytocyclamide C"]],"b":[["NCBITaxon%3A1342289","Scytonema hofmannii AUS-JR/DB/NT-012"]]},{"id":"NCBITaxon:1400207","l":"Streptomyces sp. MA37","na":6,"nb":1,"a":[["alkaloids/legonindolizine-a.yaml","Legonindolizine A"],["alkaloids/legonindolizine-b.yaml","Legonindolizine B"],["alkaloids/legonmycin-a.yaml","Legonmycin A"],["alkaloids/legonmycin-b.yaml","Legonmycin B"],["alkaloids/neocarazostatin-a.yaml","neocarazostatin A"],["unclassified/2r-3s-4s-5-fluoro-2-3-4-trihydroxypentanoic-acid.yaml","(2R,3S,4S)-5-fluoro-2,3,4-trihydroxypentanoic acid"]],"b":[["NCBITaxon%3A1400207","Streptomyces sp. MA37"]]},{"id":"NCBITaxon:1491466","l":"Trichoderma guizhouense","na":6,"nb":1,"a":[["polyketides/compound-1.yaml","compound 1"],["polyketides/compound-4.yaml","compound 4"],["polyketides/harziphilone.yaml","harziphilone"],["polyketides/isoharziphilone-1.yaml","isoharziphilone-1"],["polyketides/isoharziphilone-2.yaml","isoharziphilone-2"],["polyketides/t22azaphilone.yaml","t22azaphilone"]],"b":[["NCBITaxon%3A1491466","Trichoderma guizhouense"]]},{"id":"NCBITaxon:1521554","l":"Jaaginema geminatum","na":1,"nb":6,"a":[["fatty_acids/1-heptadecene.yaml","1-heptadecene"]],"b":[["NCBITaxon%3A1521554","Jaaginema geminatum"],["NCBITaxon%3A1849712","Jaaginema geminatum ISB76"],["NCBITaxon%3A2938171","Jaaginema geminatum MMK02"],["NCBITaxon%3A2602019","Jaaginema geminatum PJ S18"],["NCBITaxon%3A1521634","Jaaginema geminatum SAG 1459-8"],["NCBITaxon%3A2012957","Jaaginema geminatum SM S13"]]},{"id":"NCBITaxon:161235","l":"Streptomyces sp. PGA64","na":6,"nb":1,"a":[["polyketides/gaudimycin-a.yaml","gaudimycin A"],["polyketides/gaudimycin-c.yaml","gaudimycin C"],["polyketides/gaudimycin-d.yaml","gaudimycin D"],["polyketides/prejadomycin.yaml","prejadomycin"],["polyketides/rabelomycin.yaml","rabelomycin"],["polyketides/uwm6.yaml","UWM6"]],"b":[["NCBITaxon%3A161235","Streptomyces sp. PGA64"]]},{"id":"NCBITaxon:1873369","l":"Aspergillus hancockii","na":6,"nb":1,"a":[["alkaloids/hancockiamide-b.yaml","hancockiamide B"],["alkaloids/hancockiamide-c.yaml","hancockiamide C"],["alkaloids/hancockiamide-d.yaml","hancockiamide D"],["unclassified/hancockiamide-a.yaml","hancockiamide A"],["unclassified/hancockiamide-e.yaml","hancockiamide E"],["unclassified/hancockiamide-f.yaml","hancockiamide F"]],"b":[["NCBITaxon%3A1873369","Aspergillus hancockii"]]},{"id":"NCBITaxon:1894","l":"Kitasatospora aureofaciens","na":6,"nb":1,"a":[["fatty_acids/triacsin-c.yaml","triacsin C"],["polyketides/auricin.yaml","auricin"],["polyketides/chlortetracycline.yaml","chlortetracycline"],["polyketides/lipomycin.yaml","α-lipomycin"],["polyketides/oxytetracycline.yaml","oxytetracycline"],["polyketides/venturicidin-a.yaml","venturicidin A"]],"b":[["NCBITaxon%3A1894","Kitasatospora aureofaciens"]]},{"id":"NCBITaxon:2070498","l":"Streptomyces sp. IMB7-145","na":6,"nb":1,"a":[["polyketides/17-o-methylniphimycin.yaml","17-O-methylniphimycin"],["polyketides/19-o-malonylniphimycin.yaml","19-O-malonylniphimycin"],["polyketides/niphimycin-c.yaml","niphimycin C"],["polyketides/niphimycin-d.yaml","niphimycin D"],["polyketides/niphimycin-e.yaml","niphimycin E"],["polyketides/niphimycin-i.yaml","niphimycin Iα"]],"b":[["NCBITaxon%3A2070498","Streptomyces sp. IMB7-145"]]},{"id":"NCBITaxon:2546228","l":"Moorena producens ASI16Jul14-2","na":6,"nb":1,"a":[["amino_acids_and_peptides/vatiamide-e.yaml","vatiamide E"],["polyketides/vatiamide-a.yaml","vatiamide A"],["polyketides/vatiamide-b.yaml","vatiamide B"],["polyketides/vatiamide-c.yaml","vatiamide C"],["polyketides/vatiamide-d.yaml","vatiamide D"],["unclassified/vatiamide-f.yaml","vatiamide F"]],"b":[["NCBITaxon%3A2546228","Moorena producens ASI16Jul14-2"]]},{"id":"NCBITaxon:2602572","l":"Streptomyces sp. Tue6314","na":6,"nb":1,"a":[["polyketides/streptoketide-a.yaml","streptoketide A"],["polyketides/streptoketide-b.yaml","streptoketide B"],["polyketides/uwm5.yaml","UWM5"],["shikimates_and_phenylpropanoids/s2502.yaml","S2502"],["shikimates_and_phenylpropanoids/s2507.yaml","S2507"],["unclassified/streptoketide-c.yaml","streptoketide C"]],"b":[["NCBITaxon%3A2602572","Streptomyces sp. Tue6314"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":6,"a":[["alkaloids/parabactin.yaml","parabactin"]],"b":[["NCBITaxon%3A266","Paracoccus denitrificans"],["NCBITaxon%3A1302247","Paracoccus denitrificans JCM 21484"],["NCBITaxon%3A318586","Paracoccus denitrificans PD1222"],["NCBITaxon%3A1051075","Paracoccus denitrificans SD1"],["NCBITaxon%3A82367","Paracoccus pantotrophus"],["NCBITaxon%3A189685","uncultured Paracoccus sp."]]},{"id":"NCBITaxon:270689","l":"Streptomyces aculeolatus","na":6,"nb":1,"a":[["polyketides/e-837.yaml","E-837"],["terpenoids/napyradiomycin-a80915c.yaml","napyradiomycin A80915C"],["terpenoids/napyradiomycin.yaml","napyradiomycin"],["unclassified/napyradiomycin-2.yaml","napyradiomycin 2"],["unclassified/napyradiomycin-3.yaml","napyradiomycin 3"],["unclassified/napyradiomycin-4.yaml","napyradiomycin 4"]],"b":[["NCBITaxon%3A270689","Streptomyces aculeolatus"]]},{"id":"NCBITaxon:280754","l":"Metacordyceps chlamydosporia","na":6,"nb":1,"a":[["polyketides/monocillin-vi.yaml","monocillin VI"],["polyketides/monocillin-vii.yaml","monocillin VII"],["polyketides/monorden-d.yaml","monorden D"],["polyketides/pochonin-m.yaml","pochonin M"],["polyketides/radicicol.yaml","radicicol"],["polyketides/zearalenone.yaml","zearalenone"]],"b":[["NCBITaxon%3A280754","Pochonia chlamydosporia"]]},{"id":"NCBITaxon:285570","l":"","na":6,"nb":1,"a":[["alkaloids/4-z-annimycin.yaml","4-Z-annimycin"],["amino_acids_and_peptides/ws9326f.yaml","WS9326F"],["amino_acids_and_peptides/ws9326g.yaml","WS9326G"],["carbohydrates/nucleocidin.yaml","nucleocidin"],["unclassified/2r-3s-4s-5-fluoro-2-3-4-trihydroxypentanoic-acid.yaml","(2R,3S,4S)-5-fluoro-2,3,4-trihydroxypentanoic acid"],["unclassified/ws9326a.yaml","WS9326A"]],"b":[["NCBITaxon%3A67282","Streptomyces calvus"]]},{"id":"NCBITaxon:29916","l":"Fusarium sp.","na":6,"nb":1,"a":[["alkaloids/lucilactaene.yaml","lucilactaene"],["alkaloids/ng-391.yaml","NG-391"],["fatty_acids/1233b.yaml","1233B"],["polyketides/1233a.yaml","1233A"],["polyketides/bikaverin.yaml","bikaverin"],["polyketides/fusarubin.yaml","fusarubin"]],"b":[["NCBITaxon%3A29916","Fusarium sp."]]},{"id":"NCBITaxon:327061","l":"Annulohypoxylon truncatum","na":6,"nb":1,"a":[["terpenoids/brasilane-a.yaml","brasilane A"],["terpenoids/brasilane-d.yaml","brasilane D"],["terpenoids/brasilane-e.yaml","brasilane E"],["terpenoids/brasilane-f.yaml","brasilane F"],["terpenoids/trichobrasilenol.yaml","trichobrasilenol"],["terpenoids/xylarenic-acid-b.yaml","xylarenic acid B"]],"b":[["NCBITaxon%3A327061","Annulohypoxylon truncatum"]]},{"id":"NCBITaxon:337","l":"Burkholderia glumae","na":1,"nb":6,"a":[["alkaloids/toxoflavin.yaml","toxoflavin"]],"b":[["NCBITaxon%3A337","Burkholderia glumae"],["NCBITaxon%3A1248414","Burkholderia glumae 3252-8"],["NCBITaxon%3A1417989","Burkholderia glumae 336gr-1"],["NCBITaxon%3A1176514","Burkholderia glumae AU6208"],["NCBITaxon%3A626418","Burkholderia glumae BGR1"],["NCBITaxon%3A1176492","Burkholderia glumae LMG 2196 = ATCC 33617"]]},{"id":"NCBITaxon:37632","l":"Amycolatopsis sp.","na":6,"nb":1,"a":[["amino_acids_and_peptides/ristocetin-a.yaml","Ristocetin A"],["polyketides/rifamorpholine-a.yaml","rifamorpholine A"],["polyketides/rifamorpholine-b.yaml","rifamorpholine B"],["polyketides/rifamorpholine-c.yaml","rifamorpholine C"],["polyketides/rifamorpholine-d.yaml","rifamorpholine D"],["polyketides/rifamorpholine-e.yaml","rifamorpholine E"]],"b":[["NCBITaxon%3A37632","Amycolatopsis sp."]]},{"id":"NCBITaxon:45234","l":"Cordyceps","na":1,"nb":6,"a":[["polyketides/oosporein.yaml","oosporein"]],"b":[["NCBITaxon%3A218633","Cordyceps cicadae"],["NCBITaxon%3A89141","Cordyceps farinosa"],["NCBITaxon%3A43265","Cordyceps javanica"],["NCBITaxon%3A73501","Cordyceps militaris"],["NCBITaxon%3A2004951","Cordyceps sp. RAO-2017"],["NCBITaxon%3A45847","Cordyceps tenuipes"]]},{"id":"NCBITaxon:457412","l":"Ruminococcus sp. 5_1_39BFAA","na":6,"nb":1,"a":[["alkaloids/pzn10.yaml","PZN10"],["alkaloids/pzn11.yaml","PZN11"],["alkaloids/pzn5.yaml","PZN5"],["alkaloids/pzn6.yaml","PZN6"],["alkaloids/pzn7.yaml","PZN7"],["alkaloids/pzn9.yaml","PZN9"]],"b":[["NCBITaxon%3A457412","Ruminococcus sp. 5_1_39BFAA"]]},{"id":"NCBITaxon:46472","l":"Aspergillus versicolor","na":6,"nb":1,"a":[["alkaloids/psychrophilin-f.yaml","psychrophilin F"],["alkaloids/psychrophilin-g.yaml","psychrophilin G"],["polyketides/sterigmatocystin.yaml","sterigmatocystin"],["unclassified/chevalone-e.yaml","chevalone E"],["unclassified/notoamide-a.yaml","notoamide A"],["unclassified/psychrophilin-h.yaml","psychrophilin H"]],"b":[["NCBITaxon%3A46472","Aspergillus versicolor"]]},{"id":"NCBITaxon:47917","l":"Serratia fonticola","na":1,"nb":6,"a":[["alkaloids/1-6-phenazinedimethanol.yaml","1,6-phenazinedimethanol"]],"b":[["NCBITaxon%3A47917","Serratia fonticola"],["NCBITaxon%3A1332071","Serratia fonticola AU-AP2C"],["NCBITaxon%3A1332070","Serratia fonticola AU-P3(3)"],["NCBITaxon%3A649197","Serratia fonticola DSM 22080"],["NCBITaxon%3A1378072","Serratia fonticola LMG 7882"],["NCBITaxon%3A1379259","Serratia fonticola UTAD54"]]},{"id":"NCBITaxon:482630","l":"Hassallia byssoidea","na":1,"nb":6,"a":[["carbohydrates/tubercidin.yaml","tubercidin"]],"b":[["NCBITaxon%3A482630","Hassallia byssoidea"],["NCBITaxon%3A482631","Hassallia byssoidea CCALA 823"],["NCBITaxon%3A1168767","Hassallia byssoidea CCALA 841"],["NCBITaxon%3A2489140","Hassallia byssoidea KZ-2-2-3"],["NCBITaxon%3A2489141","Hassallia byssoidea KZ-7-1-5"],["NCBITaxon%3A1304833","Hassallia byssoidea VB512170"]]},{"id":"NCBITaxon:5081","l":"","na":6,"nb":1,"a":[["alkaloids/citridone-a.yaml","citridone A"],["alkaloids/citridone-b-2.yaml","citridone B'"],["alkaloids/citridone-b.yaml","citridone B"],["alkaloids/cj-15-696.yaml","CJ-15,696"],["alkaloids/cj-16-173.yaml","CJ-16,173"],["polyketides/gregatin-a.yaml","gregatin A"]],"b":[["NCBITaxon%3A5081","Penicillium sp."]]},{"id":"NCBITaxon:5082","l":"Penicillium roqueforti","na":6,"nb":1,"a":[["alkaloids/mycophenolic-acid-2.yaml","mycophenolic acid"],["polyketides/mycophenolic-acid.yaml","mycophenolic acid"],["terpenoids/pr-toxin.yaml","PR-toxin"],["unclassified/andrastin-a.yaml","andrastin A"],["unclassified/roquefortine-c.yaml","roquefortine C"],["unclassified/roquefortine-d.yaml","roquefortine D"]],"b":[["NCBITaxon%3A5082","Penicillium roqueforti"]]},{"id":"NCBITaxon:5111","l":"Claviceps purpurea","na":6,"nb":1,"a":[["alkaloids/elymoclavine.yaml","elymoclavine"],["alkaloids/ergocryptine.yaml","α-ergocryptine"],["alkaloids/ergotamine.yaml","ergotamine"],["alkaloids/ergovaline.yaml","ergovaline"],["polyketides/clavorubin.yaml","Clavorubin"],["polyketides/endocrocin.yaml","endocrocin"]],"b":[["NCBITaxon%3A5111","Claviceps purpurea"]]},{"id":"NCBITaxon:52","l":"Chondromyces crocatus","na":6,"nb":1,"a":[["polyketides/chondrochloren-a.yaml","chondrochloren A"],["polyketides/cmc-thuggacin-a.yaml","Cmc-thuggacin A"],["polyketides/crocacin.yaml","crocacin"],["shikimates_and_phenylpropanoids/ajudazol-a.yaml","ajudazol A"],["unclassified/chondramide-a.yaml","chondramide A"],["unclassified/cmc-thuggacin-b.yaml","Cmc-thuggacin B"]],"b":[["NCBITaxon%3A52","Chondromyces crocatus"]]},{"id":"NCBITaxon:548826","l":"Fischerella sp. CENA161","na":6,"nb":1,"a":[["amino_acids_and_peptides/microcystin-fr.yaml","microcystin-FR"],["amino_acids_and_peptides/microcystin-la.yaml","microcystin-LA"],["amino_acids_and_peptides/microcystin-laba.yaml","microcystin-LAba"],["amino_acids_and_peptides/microcystin-ll.yaml","microcystin-LL"],["amino_acids_and_peptides/microcystin-lm.yaml","microcystin-LM"],["amino_acids_and_peptides/microcystin-lr.yaml","microcystin-LR"]],"b":[["NCBITaxon%3A548826","Fischerella sp. CENA161"]]},{"id":"NCBITaxon:5530","l":"Metarhizium anisopliae","na":6,"nb":1,"a":[["alkaloids/ng-391.yaml","NG-391"],["amino_acids_and_peptides/serinocyclin-a.yaml","serinocyclin A"],["amino_acids_and_peptides/serinocyclin-b.yaml","serinocyclin B"],["fatty_acids/baa.yaml","BAA"],["fatty_acids/bab.yaml","BAB"],["unclassified/destruxin-a.yaml","destruxin A"]],"b":[["NCBITaxon%3A5530","Metarhizium anisopliae"]]},{"id":"NCBITaxon:654447","l":"Streptomyces youssoufiensis","na":6,"nb":1,"a":[["polyketides/reedsmycin-a.yaml","reedsmycin A"],["polyketides/youssoufene-a1.yaml","youssoufene A1"],["unclassified/youssoufene-b1.yaml","youssoufene B1"],["unclassified/youssoufene-b2.yaml","youssoufene B2"],["unclassified/youssoufene-b3.yaml","youssoufene B3"],["unclassified/youssoufene-b4.yaml","youssoufene B4"]],"b":[["NCBITaxon%3A654447","Streptomyces youssoufiensis"]]},{"id":"NCBITaxon:1006598","l":"Serratia plymuthica RVH1","na":5,"nb":1,"a":[["amino_acids_and_peptides/prezeamine-i.yaml","prezeamine I"],["amino_acids_and_peptides/prezeamine.yaml","prezeamine"],["fatty_acids/zeamine-i.yaml","zeamine I"],["fatty_acids/zeamine-ii.yaml","zeamine II"],["fatty_acids/zeamine.yaml","zeamine"]],"b":[["NCBITaxon%3A1006598","Serratia plymuthica RVH1"]]},{"id":"NCBITaxon:1110502","l":"Tistrella mobilis KA081020-065","na":5,"nb":1,"a":[["unclassified/dehydrodidemnin-b-aplidine.yaml","dehydrodidemnin B (aplidine)"],["unclassified/didemnin-b.yaml","didemnin B"],["unclassified/didemnin-x.yaml","didemnin X"],["unclassified/didemnin-y.yaml","didemnin Y"],["unclassified/nordidemnin-b.yaml","nordidemnin B"]],"b":[["NCBITaxon%3A1110502","Tistrella mobilis KA081020-065"]]},{"id":"NCBITaxon:1437453","l":"Streptomyces leeuwenhoekii","na":5,"nb":1,"a":[["amino_acids_and_peptides/leepeptin.yaml","Leepeptin"],["polyketides/chaxamycin-a.yaml","chaxamycin A"],["polyketides/chaxamycin-b.yaml","chaxamycin B"],["polyketides/chaxamycin-c.yaml","chaxamycin C"],["polyketides/chaxamycin-d.yaml","chaxamycin D"]],"b":[["NCBITaxon%3A1437453","Streptomyces leeuwenhoekii"]]},{"id":"NCBITaxon:1485014","l":"Kitasatospora sp. HKI 714","na":5,"nb":1,"a":[["alkaloids/5-2-hydroxyacetyl-5-10-dihydrophenazine-1-carboxylic-acid.yaml","5-(2-hydroxyacetyl)-5,10-dihydrophenazine-1-carboxylic acid"],["alkaloids/5-acetyl-5-10-dihydrophenazine-1-carboxylic-acid.yaml","5-acetyl-5,10-dihydrophenazine-1-carboxylic acid"],["alkaloids/endophenazine-a1.yaml","endophenazine A1"],["alkaloids/endophenazine-f.yaml","endophenazine F"],["alkaloids/endophenazine-g.yaml","endophenazine G"]],"b":[["NCBITaxon%3A1485014","Kitasatospora sp. HKI 714"]]},{"id":"NCBITaxon:1550245","l":"Aetokthonos hydrillicola","na":1,"nb":5,"a":[["alkaloids/aetokthonotoxin.yaml","aetokthonotoxin"]],"b":[["NCBITaxon%3A1550245","Aetokthonos hydrillicola"],["NCBITaxon%3A299580","Aetokthonos hydrillicola AEL04-Oct-6-03"],["NCBITaxon%3A2710484","Aetokthonos hydrillicola CCALA 1050"],["NCBITaxon%3A2028341","Aetokthonos hydrillicola JST01"],["NCBITaxon%3A2712845","Aetokthonos hydrillicola Thurmond2011"]]},{"id":"NCBITaxon:1630014","l":"uncultured bacterium AR_456","na":5,"nb":1,"a":[["amino_acids_and_peptides/clarexpoxcin-a.yaml","Clarexpoxcin A"],["amino_acids_and_peptides/clarexpoxcin-b.yaml","Clarexpoxcin B"],["amino_acids_and_peptides/clarexpoxcin-c.yaml","Clarexpoxcin C"],["amino_acids_and_peptides/clarexpoxcin-d.yaml","Clarexpoxcin D"],["amino_acids_and_peptides/clarexpoxcin-e.yaml","Clarexpoxcin E"]],"b":[["NCBITaxon%3A1630014","uncultured bacterium AR_456"]]},{"id":"NCBITaxon:176275","l":"Beauveria bassiana","na":5,"nb":1,"a":[["alkaloids/desmethylbassianin.yaml","desmethylbassianin"],["alkaloids/tenellin.yaml","tenellin"],["polyketides/oosporein.yaml","oosporein"],["unclassified/bassianolide.yaml","bassianolide"],["unclassified/beauvericin.yaml","beauvericin"]],"b":[["NCBITaxon%3A176275","Beauveria bassiana"]]},{"id":"NCBITaxon:1873482","l":"Xenorhabdus eapokensis","na":5,"nb":1,"a":[["alkaloids/9-deoxy-tilivalline.yaml","9-deoxy tilivalline"],["alkaloids/dehydro-tilivalline.yaml","dehydro tilivalline"],["alkaloids/dihydroxy-dehydro-tilivalline.yaml","dihydroxy-dehydro tilivalline"],["alkaloids/dihydroxy-tilivalline.yaml","dihydroxy tilivalline"],["alkaloids/tilivalline.yaml","tilivalline"]],"b":[["NCBITaxon%3A1873482","Xenorhabdus eapokensis"]]},{"id":"NCBITaxon:1919","l":"Streptomyces microflavus","na":1,"nb":5,"a":[["polyketides/ll-f28249.yaml","LL-F28249α"]],"b":[["NCBITaxon%3A67269","Streptomyces alboviridis"],["NCBITaxon%3A164114","Streptomyces luridiscabiei"],["NCBITaxon%3A1919","Streptomyces microflavus"],["NCBITaxon%3A1303692","Streptomyces microflavus DSM 40593"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:1982761","l":"Streptomyces sp. CS113","na":5,"nb":1,"a":[["polyketides/antibiotic-a2121-1.yaml","antibiotic A2121-1"],["polyketides/antibiotic-hki-10311129.yaml","antibiotic HKI 10311129"],["polyketides/cervimycin-a.yaml","cervimycin A"],["polyketides/cervimycin-c.yaml","cervimycin C"],["polyketides/cervimycin-d.yaml","cervimycin D"]],"b":[["NCBITaxon%3A1982761","Streptomyces sp. CS113"]]},{"id":"NCBITaxon:220664","l":"Pseudomonas protegens Pf-5","na":5,"nb":1,"a":[["alkaloids/pyoluteorin.yaml","pyoluteorin"],["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"],["unclassified/orfamide-a.yaml","orfamide A"],["unclassified/orfamide-c.yaml","orfamide C"],["unclassified/pf-5-pyoverdine.yaml","Pf-5 pyoverdine"]],"b":[["NCBITaxon%3A220664","Pseudomonas protegens Pf-5"]]},{"id":"NCBITaxon:223374","l":"Cladorrhinum","na":1,"nb":5,"a":[["polyketides/patulin.yaml","patulin"]],"b":[["NCBITaxon%3A314027","Cladorrhinum coprophilum"],["NCBITaxon%3A223375","Cladorrhinum foecundissimum"],["NCBITaxon%3A2587396","Cladorrhinum hyalocarpum"],["NCBITaxon%3A711350","Cladorrhinum microsclerotigenum"],["NCBITaxon%3A585594","Cladorrhinum samala"]]},{"id":"NCBITaxon:2721247","l":"Symphyonema bifilamentata 97.28","na":5,"nb":1,"a":[["alkaloids/tjipanazole-d.yaml","tjipanazole D"],["alkaloids/tjipanazole-i.yaml","tjipanazole I"],["alkaloids/tjipanazole-k.yaml","tjipanazole K"],["alkaloids/tjipanazole-l.yaml","tjipanazole L"],["alkaloids/tjipanazole-m.yaml","tjipanazole M"]],"b":[["NCBITaxon%3A2721247","Symphyonema bifilamentata 97.28"]]},{"id":"NCBITaxon:2795974","l":"Stieleria maiorica","na":5,"nb":1,"a":[["alkaloids/stieleriacine-a1.yaml","stieleriacine A1"],["alkaloids/stieleriacine-a2.yaml","stieleriacine A2"],["fatty_acids/stieleriacine-c.yaml","stieleriacine C"],["unclassified/stieleriacine-b1.yaml","stieleriacine B1"],["unclassified/stieleriacine-b2.yaml","stieleriacine B2"]],"b":[["NCBITaxon%3A2795974","Stieleria maiorica"]]},{"id":"NCBITaxon:289240","l":"Neopestalotiopsis clavispora","na":5,"nb":1,"a":[["polyketides/1-2-dehydropenicillide.yaml","1,2-dehydropenicillide"],["polyketides/1-2-epoxy-3-4-didehydropenicillide.yaml","1,2-epoxy-3,4-didehydropenicillide"],["polyketides/3-methoxy-1-2-dehydropenicillide.yaml","3-methoxy-1,2-dehydropenicillide"],["polyketides/pestalotiollide-b.yaml","pestalotiollide B"],["polyketides/pestalotiollide-c.yaml","pestalotiollide C"]],"b":[["NCBITaxon%3A289240","Neopestalotiopsis clavispora"]]},{"id":"NCBITaxon:312019","l":"uncultured Candidatus Entotheonella sp.","na":5,"nb":1,"a":[["amino_acids_and_peptides/kasumigamide.yaml","kasumigamide"],["polyketides/calyculin-a.yaml","calyculin A"],["polyketides/calyculinamide-a.yaml","calyculinamide A"],["polyketides/dephosphonocalyculin-a.yaml","dephosphonocalyculin A"],["polyketides/phosphocalyculin-a.yaml","phosphocalyculin A"]],"b":[["NCBITaxon%3A312019","uncultured Candidatus Entotheonella sp."]]},{"id":"NCBITaxon:318","l":"Pseudomonas savastanoi pv. glycinea","na":1,"nb":5,"a":[["polyketides/coronatine.yaml","coronatine"]],"b":[["NCBITaxon%3A29438","Pseudomonas savastanoi"],["NCBITaxon%3A318","Pseudomonas savastanoi pv. glycinea"],["NCBITaxon%3A875329","Pseudomonas savastanoi pv. glycinea str. B076"],["NCBITaxon%3A875330","Pseudomonas savastanoi pv. glycinea str. race 4"],["NCBITaxon%3A317","Pseudomonas syringae"]]},{"id":"NCBITaxon:380704","l":"Aspergillus niger ATCC 1015","na":5,"nb":1,"a":[["polyketides/azanigerone-a.yaml","azanigerone A"],["polyketides/campyrone-b.yaml","campyrone B"],["polyketides/pyranonigrin-e.yaml","pyranonigrin E"],["polyketides/pyrophen.yaml","pyrophen"],["terpenoids/yanuthone-d.yaml","yanuthone D"]],"b":[["NCBITaxon%3A380704","Aspergillus niger ATCC 1015"]]},{"id":"NCBITaxon:38313","l":"Shewanella algae","na":1,"nb":5,"a":[["amino_acids_and_peptides/avaroferrin.yaml","avaroferrin"]],"b":[["NCBITaxon%3A38313","Shewanella algae"],["NCBITaxon%3A1331670","Shewanella algae ACDC"],["NCBITaxon%3A1236541","Shewanella algae JCM 14758"],["NCBITaxon%3A1236544","Shewanella algae JCM 21037 = NBRC 103173"],["NCBITaxon%3A24","Shewanella putrefaciens"]]},{"id":"NCBITaxon:40382","l":"Aspergillus ustus","na":5,"nb":1,"a":[["polyketides/sterigmatocystin.yaml","sterigmatocystin"],["polyketides/ustethylin-a.yaml","ustethylin A"],["unclassified/oxepinamide-d.yaml","oxepinamide D"],["unclassified/oxepinamide-f.yaml","oxepinamide F"],["unclassified/viridicatumtoxin.yaml","viridicatumtoxin"]],"b":[["NCBITaxon%3A40382","Aspergillus ustus"]]},{"id":"NCBITaxon:42747","l":"Fusarium heterosporum","na":5,"nb":1,"a":[["alkaloids/3r-5s-5-4-hydroxybenzyl-3-methyl-3-2e-4e-6e-8e-10e-4-8-10-trimethyldodeca-2-4-6-.yaml","(3R,5S)-5-(4-hydroxybenzyl)-3-methyl-3-((2E,4E,6E,8E,10E)-4,8,10-trimethyldodeca-2,4,6,8,10-pentaenoyl)pyrrolidine-2,4-dione"],["alkaloids/fusaridione-a.yaml","fusaridione A"],["terpenoids/mangicol-a.yaml","mangicol A"],["terpenoids/t-2-toxin.yaml","T-2 toxin"],["unclassified/equisetin.yaml","equisetin"]],"b":[["NCBITaxon%3A42747","Fusarium heterosporum"]]},{"id":"NCBITaxon:439478","l":"Scytonema mirabile","na":1,"nb":5,"a":[["polyketides/scytophycin.yaml","scytophycin"]],"b":[["NCBITaxon%3A2094164","Scytonema cf. mirabile ER0515.01"],["NCBITaxon%3A439478","Scytonema mirabile"],["NCBITaxon%3A439479","Scytonema mirabile 00558"],["NCBITaxon%3A3151466","Scytonema mirabile BACA0450"],["NCBITaxon%3A1521526","Scytonema mirabile SAG 83.79"]]},{"id":"NCBITaxon:467194","l":"Streptomyces sp. CNQ-418","na":5,"nb":1,"a":[["alkaloids/marinopyrrole-a.yaml","(−)-marinopyrrole A"],["alkaloids/marinopyrrole-b.yaml","(−)-marinopyrrole B"],["alkaloids/marinopyrrole-c.yaml","marinopyrrole C"],["alkaloids/marinopyrrole-d.yaml","marinopyrrole D"],["alkaloids/marinopyrrole-e.yaml","marinopyrrole E"]],"b":[["NCBITaxon%3A467194","Streptomyces sp. CNQ-418"]]},{"id":"NCBITaxon:488447","l":"Burkholderia contaminans","na":1,"nb":5,"a":[["amino_acids_and_peptides/occidiofungin-a.yaml","occidiofungin A"]],"b":[["NCBITaxon%3A488447","Burkholderia contaminans"],["NCBITaxon%3A1423418","Burkholderia contaminans FFH2050"],["NCBITaxon%3A1423419","Burkholderia contaminans FFH2055"],["NCBITaxon%3A1334628","Burkholderia contaminans LMG 23361"],["NCBITaxon%3A36773","Burkholderia sp."]]},{"id":"NCBITaxon:497689","l":"Streptomyces sp. SNA15896","na":5,"nb":1,"a":[["unclassified/sw-163c.yaml","SW-163C"],["unclassified/sw-163e.yaml","SW-163E"],["unclassified/sw-163f.yaml","SW-163F"],["unclassified/sw-163g.yaml","SW-163G"],["unclassified/uk-63598.yaml","UK 63598"]],"b":[["NCBITaxon%3A497689","Streptomyces sp. SNA15896"]]},{"id":"NCBITaxon:53437","l":"Nocardiopsis alba","na":1,"nb":5,"a":[["amino_acids_and_peptides/lp2006.yaml","LP2006"]],"b":[["NCBITaxon%3A53437","Nocardiopsis alba"],["NCBITaxon%3A1205910","Nocardiopsis alba ATCC BAA-2165"],["NCBITaxon%3A1245473","Nocardiopsis alba DSM 43377"],["NCBITaxon%3A2015","Nocardiopsis prasina"],["NCBITaxon%3A1245475","Nocardiopsis prasina DSM 43845"]]},{"id":"NCBITaxon:563922","l":"Streptomyces sp. ICBB 8177","na":5,"nb":1,"a":[["alkaloids/limazepine-a.yaml","limazepine A"],["alkaloids/limazepine-c.yaml","limazepine C"],["alkaloids/limazepine-d.yaml","limazepine D"],["alkaloids/limazepine-e.yaml","limazepine E"],["alkaloids/limazepine-f.yaml","limazepine F"]],"b":[["NCBITaxon%3A563922","Streptomyces sp. ICBB 8177"]]},{"id":"NCBITaxon:60171","l":"Penicillium verrucosum","na":5,"nb":1,"a":[["polyketides/verrucosidin.yaml","verrucosidin"],["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"],["unclassified/penitrem-a.yaml","penitrem A"],["unclassified/penitrem-b.yaml","penitrem B"],["unclassified/roquefortine-c.yaml","roquefortine C"]],"b":[["NCBITaxon%3A60171","Penicillium verrucosum"]]},{"id":"NCBITaxon:66429","l":"Streptomyces roseoverticillatus","na":1,"nb":5,"a":[["alkaloids/jawsamycin.yaml","jawsamycin"]],"b":[["NCBITaxon%3A44288","Streptomyces fervens subsp. phenomyceticus"],["NCBITaxon%3A66424","Streptomyces hiroshimensis"],["NCBITaxon%3A66429","Streptomyces roseoverticillatus"],["NCBITaxon%3A173832","Streptomyces roseoverticillatus subsp. melrosporus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:66858","l":"Streptomyces globisporus subsp. globisporus","na":1,"nb":5,"a":[["amino_acids_and_peptides/radamycin.yaml","radamycin"]],"b":[["NCBITaxon%3A66867","Streptomyces albovinaceus"],["NCBITaxon%3A1908","Streptomyces globisporus"],["NCBITaxon%3A66858","Streptomyces globisporus subsp. globisporus"],["NCBITaxon%3A66893","Streptomyces griseinus"],["NCBITaxon%3A68237","Streptomyces mediolani"]]},{"id":"NCBITaxon:67298","l":"Streptomyces flavidovirens","na":1,"nb":5,"a":[["amino_acids_and_peptides/mureidomycin-a.yaml","mureidomycin A"]],"b":[["NCBITaxon%3A67298","Streptomyces flavidovirens"],["NCBITaxon%3A1123319","Streptomyces flavidovirens DSM 40150"],["NCBITaxon%3A1522104","Streptomyces flavidovirens subsp. fuscus"],["NCBITaxon%3A52258","Streptomyces flavovirens"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:68175","l":"Streptomyces antimycoticus","na":1,"nb":5,"a":[["terpenoids/napyradiomycin.yaml","napyradiomycin"]],"b":[["NCBITaxon%3A68175","Streptomyces antimycoticus"],["NCBITaxon%3A1226758","Streptomyces antimycoticus subsp. mordarskii"],["NCBITaxon%3A53451","Streptomyces rutgersensis"],["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A68280","Streptomyces violaceusniger"]]},{"id":"NCBITaxon:684832","l":"Streptomyces platensis subsp. rosaceus","na":5,"nb":1,"a":[["alkaloids/13-epi-dorrigocin-a.yaml","13-epi-dorrigocin A"],["alkaloids/dorrigocin-a.yaml","dorrigocin A"],["alkaloids/dorrigocin-b.yaml","dorrigocin B"],["alkaloids/iso-migrastatin.yaml","iso-migrastatin"],["alkaloids/migrastatin.yaml","migrastatin"]],"b":[["NCBITaxon%3A684832","Streptomyces platensis subsp. rosaceus"]]},{"id":"NCBITaxon:904690","l":"Penicillium shearii","na":5,"nb":1,"a":[["unclassified/colletotrichin.yaml","colletotrichin"],["unclassified/metarhizin-a.yaml","metarhizin A"],["unclassified/paxilline.yaml","paxilline"],["unclassified/sesquicillin-a.yaml","sesquicillin A"],["unclassified/subglutinol-a.yaml","subglutinol A"]],"b":[["NCBITaxon%3A904690","Penicillium shearii"]]},{"id":"NCBITaxon:97376","l":"Biscogniauxia","na":1,"nb":5,"a":[["terpenoids/biscognienyne-b.yaml","biscognienyne B"]],"b":[["NCBITaxon%3A110534","Biscogniauxia marginata"],["NCBITaxon%3A97377","Biscogniauxia mediterranea"],["NCBITaxon%3A97378","Biscogniauxia nummularia"],["NCBITaxon%3A110533","Biscogniauxia simplicior"],["NCBITaxon%3A1896107","Biscogniauxia sp."]]},{"id":"NCBITaxon:986","l":"Flavobacterium johnsoniae","na":1,"nb":5,"a":[["polyketides/flexirubin.yaml","flexirubin"]],"b":[["NCBITaxon%3A2704140","Flavobacterium bizetiae"],["NCBITaxon%3A986","Flavobacterium johnsoniae"],["NCBITaxon%3A994","Flavobacterium johnsoniae subsp. aurantiacum"],["NCBITaxon%3A376686","Flavobacterium johnsoniae UW101"],["NCBITaxon%3A1337839","Flavobacterium sp. DSM 425"]]},{"id":"NCBITaxon:991132","l":"Streptomyces sp. DSM 5940","na":5,"nb":1,"a":[["amino_acids_and_peptides/mureidomycin-a.yaml","mureidomycin A"],["amino_acids_and_peptides/napsamycin-a.yaml","napsamycin A"],["amino_acids_and_peptides/napsamycin-b.yaml","napsamycin B"],["amino_acids_and_peptides/napsamycin-c.yaml","napsamycin C"],["amino_acids_and_peptides/napsamycin-d.yaml","napsamycin D"]],"b":[["NCBITaxon%3A991132","Streptomyces sp. DSM 5940"]]},{"id":"NCBITaxon:101028","l":"Fusarium pseudograminearum","na":4,"nb":1,"a":[["alkaloids/8-oxo-fusatin.yaml","8-oxo-fusatin"],["alkaloids/8-oxo-isopentenyladenine.yaml","8-oxo-isopentenyladenine"],["alkaloids/fusatin.yaml","fusatin"],["alkaloids/fusatinic-acid.yaml","fusatinic acid"]],"b":[["NCBITaxon%3A101028","Fusarium pseudograminearum"]]},{"id":"NCBITaxon:1033177","l":"Aspergillus luchuensis IFO 4308","na":4,"nb":1,"a":[["polyketides/akml-c.yaml","AKML C"],["polyketides/akml-d.yaml","AKML D"],["unclassified/akml-a.yaml","AKML A"],["unclassified/akml-b.yaml","AKML B"]],"b":[["NCBITaxon%3A1033177","Aspergillus luchuensis IFO 4308"]]},{"id":"NCBITaxon:1037453","l":"uncultured bacterium BAC AB649/1850","na":4,"nb":1,"a":[["polyketides/dehydrorabelomycin.yaml","dehydrorabelomycin"],["polyketides/fluostatin-f.yaml","fluostatin F"],["polyketides/fluostatin-g.yaml","fluostatin G"],["polyketides/rabelomycin.yaml","rabelomycin"]],"b":[["NCBITaxon%3A1037453","uncultured bacterium BAC AB649/1850"]]},{"id":"NCBITaxon:111805","l":"Actinomadura pelletieri","na":1,"nb":4,"a":[["alkaloids/undecylprodigiosin-2.yaml","undecylprodigiosin"]],"b":[["NCBITaxon%3A163603","Actinomadura latina"],["NCBITaxon%3A111805","Actinomadura pelletieri"],["NCBITaxon%3A1120940","Actinomadura pelletieri DSM 43383"],["NCBITaxon%3A37329","Nocardia farcinica"]]},{"id":"NCBITaxon:111807","l":"Actinomadura yumaensis","na":1,"nb":4,"a":[["polyketides/maduramicin.yaml","maduramicin"]],"b":[["NCBITaxon%3A111807","Actinomadura yumaensis"],["NCBITaxon%3A1408421","Actinomadura yumaensis ATCC 43060"],["NCBITaxon%3A1749037","Microbacterium zeae"],["NCBITaxon%3A2479765","Ochrobactrum teleogrylli"]]},{"id":"NCBITaxon:1120227","l":"Streptomyces coelicoflavus ZG0656","na":4,"nb":1,"a":[["carbohydrates/acarviostatin-i03.yaml","acarviostatin I03"],["carbohydrates/acarviostatin-ii03.yaml","acarviostatin II03"],["carbohydrates/acarviostatin-iii03.yaml","acarviostatin III03"],["carbohydrates/acarviostatin-iv03.yaml","acarviostatin IV03"]],"b":[["NCBITaxon%3A1120227","Streptomyces coelicoflavus ZG0656"]]},{"id":"NCBITaxon:1180","l":"Nostoc sp.","na":4,"nb":1,"a":[["amino_acids_and_peptides/heinamide-a1.yaml","heinamide A1"],["amino_acids_and_peptides/heinamide-a2.yaml","heinamide A2"],["amino_acids_and_peptides/heinamide-a3.yaml","heinamide A3"],["polyketides/carbamidocyclophane-h.yaml","carbamidocyclophane H"]],"b":[["NCBITaxon%3A1180","Nostoc sp."]]},{"id":"NCBITaxon:1191","l":"Fischerella sp.","na":4,"nb":1,"a":[["unclassified/hapalosin-c.yaml","hapalosin C"],["unclassified/hapalosin-e.yaml","hapalosin E"],["unclassified/hapalosin-f.yaml","hapalosin F"],["unclassified/hapalosin-g.yaml","hapalosin G"]],"b":[["NCBITaxon%3A1191","Fischerella sp."]]},{"id":"NCBITaxon:1215","l":"Prochloron sp.","na":4,"nb":1,"a":[["amino_acids_and_peptides/divamide-a.yaml","divamide A"],["amino_acids_and_peptides/patellamide-a.yaml","patellamide A"],["amino_acids_and_peptides/patellamide-b.yaml","patellamide B"],["amino_acids_and_peptides/patellin-6.yaml","patellin 6"]],"b":[["NCBITaxon%3A1215","Prochloron sp."]]},{"id":"NCBITaxon:1231934","l":"Nocardiopsis sp. CMB-M0232","na":4,"nb":1,"a":[["unclassified/nocardiopsin-a.yaml","nocardiopsin A"],["unclassified/nocardiopsin-b.yaml","nocardiopsin B"],["unclassified/nocardiopsin-c.yaml","nocardiopsin C"],["unclassified/nocardiopsin-d.yaml","nocardiopsin D"]],"b":[["NCBITaxon%3A1231934","Nocardiopsis sp. CMB-M0232"]]},{"id":"NCBITaxon:1283330","l":"Azotobacter vinelandii CA","na":4,"nb":1,"a":[["alkaloids/aminochelin.yaml","aminochelin"],["alkaloids/azotochelin.yaml","azotochelin"],["alkaloids/protochelin.yaml","protochelin"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]],"b":[["NCBITaxon%3A1283330","Azotobacter vinelandii CA"]]},{"id":"NCBITaxon:132474","l":"Streptomyces rimosus subsp. rimosus","na":1,"nb":4,"a":[["polyketides/rimocidin.yaml","rimocidin"]],"b":[["NCBITaxon%3A1890","Streptomyces antibioticus"],["NCBITaxon%3A1927","Streptomyces rimosus"],["NCBITaxon%3A132474","Streptomyces rimosus subsp. rimosus"],["NCBITaxon%3A1265868","Streptomyces rimosus subsp. rimosus ATCC 10970"]]},{"id":"NCBITaxon:133448","l":"Citrobacter youngae","na":1,"nb":4,"a":[["amino_acids_and_peptides/citrocin.yaml","citrocin"]],"b":[["NCBITaxon%3A67829","Citrobacter murliniae"],["NCBITaxon%3A876041","Citrobacter sp. DSM 30041"],["NCBITaxon%3A133448","Citrobacter youngae"],["NCBITaxon%3A500640","Citrobacter youngae ATCC 29220"]]},{"id":"NCBITaxon:1380707","l":"Sphaerospermopsis sp. LEGE 00249","na":4,"nb":1,"a":[["fatty_acids/chlorosphaerolactylate-a.yaml","chlorosphaerolactylate A"],["fatty_acids/chlorosphaerolactylate-b.yaml","chlorosphaerolactylate B"],["fatty_acids/chlorosphaerolactylate-c.yaml","chlorosphaerolactylate C"],["fatty_acids/chlorosphaerolactylate-d.yaml","chlorosphaerolactylate D"]],"b":[["NCBITaxon%3A1380707","Sphaerospermopsis sp. LEGE 00249"]]},{"id":"NCBITaxon:1382618","l":"Cylindrospermum alatosporum CCALA 988","na":4,"nb":1,"a":[["amino_acids_and_peptides/puwainaphycin-a.yaml","puwainaphycin A"],["amino_acids_and_peptides/puwainaphycin-b.yaml","puwainaphycin B"],["amino_acids_and_peptides/puwainaphycin-c.yaml","puwainaphycin C"],["amino_acids_and_peptides/puwainaphycin-d.yaml","puwainaphycin D"]],"b":[["NCBITaxon%3A1382618","Cylindrospermum alatosporum CCALA 988"]]},{"id":"NCBITaxon:141454","l":"Streptomyces wadayamensis","na":4,"nb":1,"a":[["amino_acids_and_peptides/aerobactin.yaml","aerobactin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"],["unclassified/antimycin-a.yaml","antimycin A"]],"b":[["NCBITaxon%3A141454","Streptomyces wadayamensis"]]},{"id":"NCBITaxon:1437823","l":"Xenorhabdus nematophila AN6/1","na":4,"nb":1,"a":[["alkaloids/odilorhabdin-noso-95a.yaml","odilorhabdin NOSO-95A"],["alkaloids/odilorhabdin-noso-95b.yaml","odilorhabdin NOSO-95B"],["alkaloids/odilorhabdin-noso-95c.yaml","odilorhabdin NOSO-95C"],["unclassified/xenematide.yaml","xenematide"]],"b":[["NCBITaxon%3A1437823","Xenorhabdus nematophila AN6/1"]]},{"id":"NCBITaxon:1510026","l":"Streptomyces sp. F001","na":4,"nb":1,"a":[["alkaloids/diazaquinomycin-a.yaml","diazaquinomycin A"],["alkaloids/diazaquinomycin-e.yaml","diazaquinomycin E"],["alkaloids/diazaquinomycin-f.yaml","diazaquinomycin F"],["alkaloids/diazaquinomycin-g.yaml","diazaquinomycin G"]],"b":[["NCBITaxon%3A1510026","Streptomyces sp. F001"]]},{"id":"NCBITaxon:1573173","l":"Colletotrichum incanum","na":4,"nb":1,"a":[["fatty_acids/ciml-a.yaml","CIML A"],["fatty_acids/ciml-b.yaml","CIML B"],["polyketides/ciml-c.yaml","CIML C"],["polyketides/ciml-d.yaml","CIML D"]],"b":[["NCBITaxon%3A1573173","Colletotrichum incanum"]]},{"id":"NCBITaxon:164546","l":"Cupriavidus taiwanensis","na":1,"nb":4,"a":[["amino_acids_and_peptides/taiwachelin.yaml","taiwachelin"]],"b":[["NCBITaxon%3A164546","Cupriavidus taiwanensis"],["NCBITaxon%3A977880","Cupriavidus taiwanensis LMG 19424"],["NCBITaxon%3A1040978","Cupriavidus taiwanensis STM 6018"],["NCBITaxon%3A129578","Oceanimonas baumannii"]]},{"id":"NCBITaxon:1678308","l":"Planktothrix paucivesiculata","na":1,"nb":4,"a":[["polyketides/luminaolide-b.yaml","luminaolide B"]],"b":[["NCBITaxon%3A1678308","Planktothrix paucivesiculata"],["NCBITaxon%3A671067","Planktothrix paucivesiculata PCC 8926"],["NCBITaxon%3A671069","Planktothrix paucivesiculata PCC 8954"],["NCBITaxon%3A671071","Planktothrix paucivesiculata PCC 9631"]]},{"id":"NCBITaxon:169388","l":"Fusarium solani","na":4,"nb":1,"a":[["alkaloids/fusaric-acid.yaml","fusaric acid"],["polyketides/doxorubicin.yaml","doxorubicin"],["polyketides/fusarubin.yaml","fusarubin"],["polyketides/zearalenone.yaml","zearalenone"]],"b":[["NCBITaxon%3A169388","Fusarium solani"]]},{"id":"NCBITaxon:173365","l":"Methylobacter tundripaludum","na":1,"nb":4,"a":[["unclassified/tundrenone.yaml","tundrenone"]],"b":[["NCBITaxon%3A173365","Methylobacter tundripaludum"],["NCBITaxon%3A1408450","Methylobacter tundripaludum 21/22"],["NCBITaxon%3A1408451","Methylobacter tundripaludum 31/32"],["NCBITaxon%3A697282","Methylobacter tundripaludum SV96"]]},{"id":"NCBITaxon:1820605","l":"Actinoallomurus sp. ID145698","na":4,"nb":1,"a":[["polyketides/allocyclinone-a.yaml","allocyclinone A"],["polyketides/allocyclinone-b.yaml","allocyclinone B"],["polyketides/allocyclinone-c.yaml","allocyclinone C"],["polyketides/allocyclinone-d.yaml","allocyclinone D"]],"b":[["NCBITaxon%3A1820605","Actinoallomurus sp. ID145698"]]},{"id":"NCBITaxon:1846204","l":"Streptomyces sp. A1(2016)","na":4,"nb":1,"a":[["polyketides/aldgamycin-e.yaml","aldgamycin E"],["polyketides/aldgamycin-j.yaml","aldgamycin J"],["polyketides/aldgamycin-k.yaml","aldgamycin K"],["polyketides/aldgamycin-p.yaml","aldgamycin P"]],"b":[["NCBITaxon%3A1846204","Streptomyces sp. A1(2016)"]]},{"id":"NCBITaxon:1887","l":"Streptomyces albogriseolus","na":1,"nb":4,"a":[["alkaloids/thienodolin.yaml","thienodolin"]],"b":[["NCBITaxon%3A1887","Streptomyces albogriseolus"],["NCBITaxon%3A1093098","Streptomyces albogriseolus 1-36"],["NCBITaxon%3A1608467","Streptomyces albogriseolus subsp. cellulolyticus"],["NCBITaxon%3A3075520","Streptomyces lancefieldiae"]]},{"id":"NCBITaxon:188770","l":"Streptomyces koyangensis","na":4,"nb":1,"a":[["amino_acids_and_peptides/vancomycin.yaml","vancomycin"],["polyketides/abyssomicin-2.yaml","Abyssomicin 2"],["polyketides/abyssomicin-4.yaml","Abyssomicin 4"],["polyketides/neoabyssomicin-b.yaml","Neoabyssomicin B"]],"b":[["NCBITaxon%3A188770","Streptomyces koyangensis"]]},{"id":"NCBITaxon:1926885","l":"Actinomadura rubteroloni","na":4,"nb":1,"a":[["polyketides/actinospirol-a.yaml","actinospirol A"],["polyketides/actinospirol-b.yaml","actinospirol B"],["polyketides/maduralactomycin-a.yaml","maduralactomycin A"],["polyketides/maduralactomycin-b.yaml","maduralactomycin B"]],"b":[["NCBITaxon%3A1926885","Actinomadura rubteroloni"]]},{"id":"NCBITaxon:1962977","l":"Catenulispora sp.","na":4,"nb":1,"a":[["polyketides/catenulisporolide-a.yaml","catenulisporolide A"],["polyketides/catenulisporolide-b.yaml","catenulisporolide B"],["polyketides/catenulisporolide-c.yaml","catenulisporolide C"],["polyketides/catenulisporolide-d.yaml","catenulisporolide D"]],"b":[["NCBITaxon%3A1962977","Catenulispora sp."]]},{"id":"NCBITaxon:1965334","l":"Cystobacter sp.","na":4,"nb":1,"a":[["unclassified/vioprolide-a.yaml","vioprolide A"],["unclassified/vioprolide-b.yaml","vioprolide B"],["unclassified/vioprolide-c.yaml","vioprolide C"],["unclassified/vioprolide-d.yaml","vioprolide D"]],"b":[["NCBITaxon%3A1965334","Cystobacter sp."]]},{"id":"NCBITaxon:1967","l":"Streptomyces kanamyceticus","na":4,"nb":1,"a":[["amino_acids_and_peptides/gausemycin-a.yaml","gausemycin A"],["amino_acids_and_peptides/gausemycin-b.yaml","gausemycin B"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/kanamycin-a.yaml","kanamycin A"]],"b":[["NCBITaxon%3A1967","Streptomyces kanamyceticus"]]},{"id":"NCBITaxon:198593","l":"Umezakia natans","na":1,"nb":4,"a":[["alkaloids/7-epi-cylindrospermopsin.yaml","7-epi-cylindrospermopsin"]],"b":[["NCBITaxon%3A198593","Umezakia natans"],["NCBITaxon%3A2741711","Umezakia natans HU2"],["NCBITaxon%3A372788","Umezakia natans TAC101"],["NCBITaxon%3A1048936","Umezakia natans TAC611"]]},{"id":"NCBITaxon:1993","l":"Actinomadura madurae","na":1,"nb":4,"a":[["polyketides/maduropeptin.yaml","maduropeptin"]],"b":[["NCBITaxon%3A1993","Actinomadura madurae"],["NCBITaxon%3A1394178","Actinomadura madurae LIID-AJ290"],["NCBITaxon%3A1220569","Actinomadura madurae NBRC 14623"],["NCBITaxon%3A1465509","Lactobacillus sp. JCM 7736"]]},{"id":"NCBITaxon:2017","l":"Streptoalloteichus hindustanus","na":4,"nb":1,"a":[["amino_acids_and_peptides/tallysomycin-a.yaml","tallysomycin A"],["amino_acids_and_peptides/tallysomycin-b.yaml","tallysomycin B"],["carbohydrates/apramycin.yaml","apramycin"],["carbohydrates/tobramycin.yaml","tobramycin"]],"b":[["NCBITaxon%3A2017","Streptoalloteichus hindustanus"]]},{"id":"NCBITaxon:2074","l":"Pseudonocardia autotrophica","na":1,"nb":4,"a":[["polyketides/nystatin-like-pseudonocardia-polyene-a1.yaml","nystatin-like Pseudonocardia polyene A1"]],"b":[["NCBITaxon%3A255205","Pseudoclavibacter helvolus"],["NCBITaxon%3A2074","Pseudonocardia autotrophica"],["NCBITaxon%3A29401","Pseudonocardia halophobica"],["NCBITaxon%3A471802","Pseudonocardia halophobica NRRL B-16514"]]},{"id":"NCBITaxon:221586","l":"Streptomyces amphibiosporus","na":4,"nb":1,"a":[["alkaloids/17-hydroxy-8-desmethoxy-isomigrastatin.yaml","17-hydroxy-8-desmethoxy-isomigrastatin"],["alkaloids/8-9-dihydrolactimidomycin.yaml","8,9-dihydrolactimidomycin"],["alkaloids/8-hydroxy-8-9-dihydrolactidomycin.yaml","8-hydroxy-8,9-dihydrolactidomycin"],["alkaloids/lactimidomycin.yaml","lactimidomycin"]],"b":[["NCBITaxon%3A221586","Streptomyces amphibiosporus"]]},{"id":"NCBITaxon:221822","l":"Phaeobacter inhibens","na":1,"nb":4,"a":[["shikimates_and_phenylpropanoids/tropodithietic-acid.yaml","tropodithietic acid"]],"b":[["NCBITaxon%3A221822","Phaeobacter inhibens"],["NCBITaxon%3A383629","Phaeobacter inhibens 2.10"],["NCBITaxon%3A999548","Phaeobacter inhibens DSM 16374"],["NCBITaxon%3A391619","Phaeobacter inhibens DSM 17395"]]},{"id":"NCBITaxon:224537","l":"Streptomyces murayamaensis","na":4,"nb":1,"a":[["alkaloids/4-hydroxy-3-nitrosobenzamide.yaml","4-hydroxy-3-nitrosobenzamide"],["polyketides/dehydrorabelomycin.yaml","dehydrorabelomycin"],["polyketides/kinamycin.yaml","kinamycin"],["polyketides/murayaquinone.yaml","murayaquinone"]],"b":[["NCBITaxon%3A224537","Streptomyces murayamaensis"]]},{"id":"NCBITaxon:2600296","l":"Halomonas sp. MG34","na":4,"nb":1,"a":[["amino_acids_and_peptides/potashchelin-a.yaml","potashchelin A"],["amino_acids_and_peptides/potashchelin-b.yaml","potashchelin B"],["amino_acids_and_peptides/potashchelin-c.yaml","potashchelin C"],["amino_acids_and_peptides/potashchelin-d.yaml","potashchelin D"]],"b":[["NCBITaxon%3A2600296","Halomonas sp. MG34"]]},{"id":"NCBITaxon:267870","l":"Microcystis aeruginosa PCC 7005","na":4,"nb":1,"a":[["amino_acids_and_peptides/piricyclamide-7005e1.yaml","piricyclamide 7005E1"],["amino_acids_and_peptides/piricyclamide-7005e2.yaml","piricyclamide 7005E2"],["amino_acids_and_peptides/piricyclamide-7005e3.yaml","piricyclamide 7005E3"],["amino_acids_and_peptides/piricyclamide-7005e4.yaml","piricyclamide 7005E4"]],"b":[["NCBITaxon%3A267870","Microcystis aeruginosa PCC 7005"]]},{"id":"NCBITaxon:2713619","l":"Burkholderia sp. B8(2020)","na":4,"nb":1,"a":[["polyketides/necroxime-a.yaml","necroxime A"],["polyketides/necroxime-c.yaml","necroxime C"],["polyketides/necroxime-d.yaml","necroxime D"],["unclassified/necroxime-b.yaml","necroxime B"]],"b":[["NCBITaxon%3A2713619","Burkholderia sp. B8(2020)"]]},{"id":"NCBITaxon:2743","l":"Marinobacter nauticus","na":1,"nb":4,"a":[["alkaloids/petrobactin.yaml","petrobactin"]],"b":[["NCBITaxon%3A2743","Marinobacter nauticus"],["NCBITaxon%3A1163748","Marinobacter nauticus ATCC 49840"],["NCBITaxon%3A1238884","Marinobacter nauticus ES-69"],["NCBITaxon%3A351348","Marinobacter nauticus VT8"]]},{"id":"NCBITaxon:2750812","l":"Actinomadura graeca","na":4,"nb":1,"a":[["amino_acids_and_peptides/zelkovamycin-b.yaml","zelkovamycin B"],["amino_acids_and_peptides/zelkovamycin-c.yaml","zelkovamycin C"],["amino_acids_and_peptides/zelkovamycin-d.yaml","zelkovamycin D"],["amino_acids_and_peptides/zelkovamycin-e.yaml","zelkovamycin E"]],"b":[["NCBITaxon%3A2750812","Actinomadura graeca"]]},{"id":"NCBITaxon:285483","l":"Streptomyces miharaensis","na":4,"nb":1,"a":[["carbohydrates/miharamycin-b.yaml","miharamycin B"],["polyketides/filipin-iii.yaml","filipin III"],["unclassified/miharamycin-a-2.yaml","miharamycin A"],["unclassified/miharamycin-a.yaml","miharamycin A"]],"b":[["NCBITaxon%3A285483","Streptomyces miharaensis"]]},{"id":"NCBITaxon:2926","l":"Gonyaulax tamarensis","na":4,"nb":1,"a":[["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"],["alkaloids/gonyautoxin-2.yaml","gonyautoxin 2"],["alkaloids/neosaxitoxin.yaml","neosaxitoxin"],["alkaloids/saxitoxin.yaml","saxitoxin"]],"b":[["NCBITaxon%3A2926","Alexandrium tamarense"]]},{"id":"NCBITaxon:3100406","l":"Sphaerospermopsis sp.","na":4,"nb":1,"a":[["fatty_acids/chlorosphaerolactylate-a.yaml","chlorosphaerolactylate A"],["fatty_acids/chlorosphaerolactylate-b.yaml","chlorosphaerolactylate B"],["fatty_acids/chlorosphaerolactylate-c.yaml","chlorosphaerolactylate C"],["fatty_acids/chlorosphaerolactylate-d.yaml","chlorosphaerolactylate D"]],"b":[["NCBITaxon%3A3100406","Sphaerospermopsis sp."]]},{"id":"NCBITaxon:310350","l":"Nocardiopsis sp.","na":4,"nb":1,"a":[["alkaloids/k-252a.yaml","K-252a"],["polyketides/nocardiopsistin-a.yaml","nocardiopsistin A"],["polyketides/nocardiopsistin-b.yaml","nocardiopsistin B"],["polyketides/nocardiopsistin-c.yaml","nocardiopsistin C"]],"b":[["NCBITaxon%3A310350","Nocardiopsis sp."]]},{"id":"NCBITaxon:32049","l":"Picosynechococcus sp. PCC 7002","na":4,"nb":1,"a":[["alkaloids/synechobactin-a.yaml","synechobactin A"],["alkaloids/synechobactin-b.yaml","synechobactin B"],["alkaloids/synechobactin-c.yaml","synechobactin C"],["fatty_acids/nonadec-1-ene.yaml","nonadec-1-ene"]],"b":[["NCBITaxon%3A32049","Picosynechococcus sp. PCC 7002"]]},{"id":"NCBITaxon:36630","l":"Aspergillus fischeri","na":4,"nb":1,"a":[["polyketides/neosartorin.yaml","neosartorin"],["unclassified/acetylaszonalenin.yaml","acetylaszonalenin"],["unclassified/isoterrein.yaml","isoterrein"],["unclassified/pyripyropene-a.yaml","pyripyropene A"]],"b":[["NCBITaxon%3A36630","Aspergillus fischeri"]]},{"id":"NCBITaxon:36650","l":"Penicillium aethiopicum","na":4,"nb":1,"a":[["alkaloids/tryptoquialanine.yaml","tryptoquialanine"],["polyketides/epidechlorogriseofulvin.yaml","epidechlorogriseofulvin"],["polyketides/griseofulvin.yaml","griseofulvin"],["unclassified/viridicatumtoxin.yaml","viridicatumtoxin"]],"b":[["NCBITaxon%3A36650","Penicillium aethiopicum"]]},{"id":"NCBITaxon:387846","l":"Streptomyces ahygroscopicus","na":1,"nb":4,"a":[["polyketides/nystatin-a1.yaml","nystatin A1"]],"b":[["NCBITaxon%3A387846","Streptomyces ahygroscopicus"],["NCBITaxon%3A658228","Streptomyces ahygroscopicus subsp. liaoningensis"],["NCBITaxon%3A1423886","Streptomyces ahygroscopicus subsp. wuyiensis"],["NCBITaxon%3A387850","Streptomyces ahygroscopicus subsp. wuzhouensis"]]},{"id":"NCBITaxon:398006","l":"Cylindrospermopsis raciborskii T3","na":4,"nb":1,"a":[["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"],["alkaloids/gonyautoxin-2.yaml","gonyautoxin 2"],["alkaloids/neosaxitoxin.yaml","neosaxitoxin"],["alkaloids/saxitoxin.yaml","saxitoxin"]],"b":[["NCBITaxon%3A398006","Cylindrospermopsis raciborskii T3"]]},{"id":"NCBITaxon:40380","l":"Aspergillus ochraceus","na":4,"nb":1,"a":[["alkaloids/ochrindole-a.yaml","ochrindole A"],["polyketides/asperlactone.yaml","asperlactone"],["polyketides/murayaquinone.yaml","murayaquinone"],["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"]],"b":[["NCBITaxon%3A40380","Aspergillus ochraceus"]]},{"id":"NCBITaxon:431672","l":"Streptomyces sp. A2991200","na":4,"nb":1,"a":[["polyketides/be-43767.yaml","BE-43767"],["polyketides/benastatin-a.yaml","benastatin A"],["polyketides/benastatin-b.yaml","benastatin B"],["polyketides/tan1532b.yaml","TAN1532B"]],"b":[["NCBITaxon%3A431672","Streptomyces sp. A2991200"]]},{"id":"NCBITaxon:449468","l":"Microcystis aeruginosa NIES-298","na":4,"nb":1,"a":[["amino_acids_and_peptides/aerucyclamide-a.yaml","aerucyclamide A"],["amino_acids_and_peptides/aerucyclamide-c.yaml","aerucyclamide C"],["amino_acids_and_peptides/aerucyclamide-d.yaml","aerucyclamide D"],["amino_acids_and_peptides/microviridin-b.yaml","microviridin B"]],"b":[["NCBITaxon%3A449468","Microcystis aeruginosa NIES-298"]]},{"id":"NCBITaxon:48","l":"Archangium gephyra","na":4,"nb":1,"a":[["amino_acids_and_peptides/tubulysin-f.yaml","tubulysin F"],["amino_acids_and_peptides/tubulysin-g.yaml","tubulysin G"],["amino_acids_and_peptides/tubulysin-i.yaml","tubulysin I"],["polyketides/aurafuron-a.yaml","aurafuron A"]],"b":[["NCBITaxon%3A48","Archangium gephyra"]]},{"id":"NCBITaxon:481449","l":"Hapalosiphon hibernicus","na":1,"nb":4,"a":[["amino_acids_and_peptides/microcystin-la.yaml","microcystin-LA"]],"b":[["NCBITaxon%3A481449","Hapalosiphon hibernicus"],["NCBITaxon%3A1565559","Hapalosiphon hibernicus AUS-JR/BS/MS/NT-051"],["NCBITaxon%3A1565560","Hapalosiphon hibernicus AUS-JR/BS/MS/NT-052"],["NCBITaxon%3A481450","Hapalosiphon hibernicus BZ-3-1"]]},{"id":"NCBITaxon:5067","l":"Aspergillus parasiticus","na":4,"nb":1,"a":[["polyketides/aflatoxin-b2.yaml","aflatoxin B2"],["terpenoids/astellolide-a.yaml","astellolide A"],["unclassified/aflatoxin.yaml","aflatoxin"],["unclassified/aspergillic-acid.yaml","aspergillic acid"]],"b":[["NCBITaxon%3A5067","Aspergillus parasiticus"]]},{"id":"NCBITaxon:5078","l":"Penicillium griseofulvum","na":4,"nb":1,"a":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"],["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"],["terpenoids/penifulvin-a.yaml","penifulvin A"],["unclassified/cyclopiazonic-acid.yaml","α-cyclopiazonic acid"]],"b":[["NCBITaxon%3A5078","Penicillium griseofulvum"]]},{"id":"NCBITaxon:5083","l":"Penicillium canescens","na":4,"nb":1,"a":[["alkaloids/agroclavine-i.yaml","Agroclavine I"],["unclassified/outovirin-a.yaml","outovirin A"],["unclassified/outovirin-c.yaml","outovirin C"],["unclassified/penitrem-a.yaml","penitrem A"]],"b":[["NCBITaxon%3A5083","Penicillium canescens"]]},{"id":"NCBITaxon:511145","l":"Escherichia coli str. K-12 substr. MG1655","na":1,"nb":4,"a":[["unclassified/enterobactin.yaml","enterobactin"]],"b":[["NCBITaxon%3A47678","Bacteroides caccae"],["NCBITaxon%3A411901","Bacteroides caccae ATCC 43185"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A511145","Escherichia coli str. K-12 substr. MG1655"]]},{"id":"NCBITaxon:5128","l":"Fusarium roseum","na":4,"nb":1,"a":[["alkaloids/chrysogine.yaml","chrysogine"],["polyketides/zearalenone.yaml","zearalenone"],["terpenoids/culmorin.yaml","culmorin"],["terpenoids/fusarochromanone.yaml","fusarochromanone"]],"b":[["NCBITaxon%3A5128","Fusarium sambucinum"]]},{"id":"NCBITaxon:5341","l":"Agaricus bisporus","na":1,"nb":4,"a":[["polyketides/kojic-acid.yaml","kojic acid"]],"b":[["NCBITaxon%3A5341","Agaricus bisporus"],["NCBITaxon%3A936046","Agaricus bisporus var. bisporus H97"],["NCBITaxon%3A192524","Agaricus bisporus var. burnettii"],["NCBITaxon%3A597362","Agaricus bisporus var. burnettii JB137-S8"]]},{"id":"NCBITaxon:5516","l":"Fusarium culmorum","na":4,"nb":1,"a":[["polyketides/zearalenone.yaml","zearalenone"],["terpenoids/15-acetyldeoxynivalenol.yaml","15-acetyldeoxynivalenol"],["terpenoids/culmorin.yaml","culmorin"],["terpenoids/nivalenol.yaml","nivalenol"]],"b":[["NCBITaxon%3A5516","Fusarium culmorum"]]},{"id":"NCBITaxon:58291","l":"Rhizopus microsporus","na":1,"nb":4,"a":[["unclassified/rhizoxin-a.yaml","rhizoxin A"]],"b":[["NCBITaxon%3A58291","Rhizopus microsporus"],["NCBITaxon%3A4843","Rhizopus microsporus var. chinensis"],["NCBITaxon%3A86635","Rhizopus microsporus var. microsporus"],["NCBITaxon%3A4847","Rhizopus microsporus var. oligosporus"]]},{"id":"NCBITaxon:587","l":"Providencia rettgeri","na":1,"nb":4,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]],"b":[["NCBITaxon%3A587","Providencia rettgeri"],["NCBITaxon%3A1255575","Providencia rettgeri 947"],["NCBITaxon%3A1141663","Providencia rettgeri Dmel1"],["NCBITaxon%3A521000","Providencia rettgeri DSM 1131"]]},{"id":"NCBITaxon:61624","l":"Paenibacillus mucilaginosus","na":1,"nb":4,"a":[["amino_acids_and_peptides/bacillopaline.yaml","bacillopaline"]],"b":[["NCBITaxon%3A61624","Paenibacillus mucilaginosus"],["NCBITaxon%3A1116391","Paenibacillus mucilaginosus 3016"],["NCBITaxon%3A997761","Paenibacillus mucilaginosus K02"],["NCBITaxon%3A1036673","Paenibacillus mucilaginosus KNP414"]]},{"id":"NCBITaxon:634337","l":"Streptomyces sp. FXJ1.264","na":4,"nb":1,"a":[["amino_acids_and_peptides/azolemycin-a.yaml","azolemycin A"],["amino_acids_and_peptides/azolemycin-b.yaml","azolemycin B"],["amino_acids_and_peptides/azolemycin-c.yaml","azolemycin C"],["amino_acids_and_peptides/azolemycin-d.yaml","azolemycin D"]],"b":[["NCBITaxon%3A634337","Streptomyces sp. FXJ1.264"]]},{"id":"NCBITaxon:655844","l":"Metarhizium robertsii ARSEF 23","na":4,"nb":1,"a":[["alkaloids/swainsonine.yaml","swainsonine"],["unclassified/destruxin-a.yaml","destruxin A"],["unclassified/subglutinol-a.yaml","subglutinol A"],["unclassified/subglutinol-b.yaml","subglutinol B"]],"b":[["NCBITaxon%3A655844","Metarhizium robertsii ARSEF 23"]]},{"id":"NCBITaxon:681626","l":"Streptomyces sp. 2238-SVT4","na":4,"nb":1,"a":[["polyketides/hatomarubigin-a.yaml","hatomarubigin A"],["polyketides/hatomarubigin-b.yaml","hatomarubigin B"],["polyketides/hatomarubigin-c.yaml","hatomarubigin C"],["polyketides/hatomarubigin-d.yaml","hatomarubigin D"]],"b":[["NCBITaxon%3A681626","Streptomyces sp. 2238-SVT4"]]},{"id":"NCBITaxon:68570","l":"","na":4,"nb":1,"a":[["amino_acids_and_peptides/deimino-antipain.yaml","deimino-antipain"],["polyketides/nystatin.yaml","nystatin"],["unclassified/albonoursin.yaml","albonoursin"],["unclassified/citrulassin-a.yaml","citrulassin A"]],"b":[["NCBITaxon%3A1971","Streptomyces noursei"]]},{"id":"NCBITaxon:701528","l":"Streptomyces sp. SANK 62799","na":4,"nb":1,"a":[["carbohydrates/a-503083-a.yaml","A-503083 A"],["carbohydrates/a-503083-b.yaml","A-503083 B"],["carbohydrates/a-503083-e.yaml","A-503083 E"],["carbohydrates/a-503083-f.yaml","A-503083 F"]],"b":[["NCBITaxon%3A701528","Streptomyces sp. SANK 62799"]]},{"id":"NCBITaxon:75750","l":"Aspergillus sydowii","na":4,"nb":1,"a":[["alkaloids/fumigaclavine-c.yaml","fumigaclavine C"],["amino_acids_and_peptides/mulundocandin.yaml","mulundocandin"],["unclassified/orcinol.yaml","orcinol"],["unclassified/pyripyropene-a.yaml","pyripyropene A"]],"b":[["NCBITaxon%3A75750","Aspergillus sydowii"]]},{"id":"NCBITaxon:765170","l":"Cylindrospermum alatosporum","na":1,"nb":4,"a":[["amino_acids_and_peptides/puwainaphycin-a.yaml","puwainaphycin A"]],"b":[["NCBITaxon%3A765170","Cylindrospermum alatosporum"],["NCBITaxon%3A1382618","Cylindrospermum alatosporum CCALA 988"],["NCBITaxon%3A1382619","Cylindrospermum alatosporum CCALA 994"],["NCBITaxon%3A765171","Cylindrospermum alatosporum SAG 43.79"]]},{"id":"NCBITaxon:86667","l":"Jeotgalibacillus marinus","na":4,"nb":1,"a":[["fatty_acids/macrolactin-1c.yaml","macrolactin 1c"],["fatty_acids/macrolactin-b.yaml","macrolactin B"],["polyketides/macrolactin-e.yaml","macrolactin E"],["polyketides/macrolactin-h.yaml","macrolactin H"]],"b":[["NCBITaxon%3A86667","Jeotgalibacillus marinus"]]},{"id":"NCBITaxon:889268","l":"Nannocystis pusilla","na":4,"nb":1,"a":[["alkaloids/pyrronazol-b.yaml","pyrronazol B"],["polyketides/phenylnannolone-a.yaml","phenylnannolone A"],["polyketides/phenylnannolone-b.yaml","phenylnannolone B"],["polyketides/phenylnannolone-c.yaml","phenylnannolone C"]],"b":[["NCBITaxon%3A889268","Nannocystis pusilla"]]},{"id":"NCBITaxon:89137","l":"Byssochlamys fulva","na":4,"nb":1,"a":[["polyketides/agnestadride-a.yaml","agnestadride A"],["polyketides/agnestadride-b.yaml","agnestadride B"],["polyketides/byssochlamic-acid.yaml","byssochlamic acid"],["polyketides/triketide-maleidride-monomer-type-a.yaml","Triketide maleidride monomer type A"]],"b":[["NCBITaxon%3A89137","Paecilomyces fulvus"]]},{"id":"NCBITaxon:104397","l":"Epicoccum","na":1,"nb":3,"a":[["polyketides/epipyrone-a.yaml","epipyrone A"]],"b":[["NCBITaxon%3A124084","Epicoccum andropogonis"],["NCBITaxon%3A105696","Epicoccum nigrum"],["NCBITaxon%3A749593","Epicoccum sorghinum"]]},{"id":"NCBITaxon:1213862","l":"Streptomyces sp. SANK 60404","na":3,"nb":1,"a":[["amino_acids_and_peptides/vazabitide-a.yaml","vazabitide A"],["polyketides/2e-4e-6e-8e-n-2-hydroxy-5-oxocyclopent-1-en-1-yl-9-o-tolyl-nona-2-4-6-8-tetraena.yaml","(2E,4E,6E,8E)-N-(2-hydroxy-5-oxocyclopent-1-en-1-yl)-9-(o-tolyl)nona-2,4,6,8-tetraenamide"],["shikimates_and_phenylpropanoids/e-n-2-hydroxy-5-oxocyclopent-1-en-1-yl-5-o-tolyl-pent-4-enamide.yaml","(E)-N-(2-hydroxy-5-oxocyclopent-1-en-1-yl)-5-(o-tolyl)pent-4-enamide"]],"b":[["NCBITaxon%3A1213862","Streptomyces sp. SANK 60404"]]},{"id":"NCBITaxon:1246988","l":"Scytonema ocellatum","na":1,"nb":3,"a":[["polyketides/scytophycin.yaml","scytophycin"]],"b":[["NCBITaxon%3A1246988","Scytonema ocellatum"],["NCBITaxon%3A1352640","Scytonema ocellatum Es_Yyy1200"],["NCBITaxon%3A1246991","Scytonema ocellatum VB61277"]]},{"id":"NCBITaxon:1275","l":"Kocuria rosea","na":1,"nb":3,"a":[["amino_acids_and_peptides/kocurin.yaml","kocurin"]],"b":[["NCBITaxon%3A37921","Arthrobacter agilis"],["NCBITaxon%3A1275","Kocuria rosea"],["NCBITaxon%3A136273","Kocuria rosea subsp. polaris"]]},{"id":"NCBITaxon:1281","l":"Staphylococcus carnosus","na":1,"nb":3,"a":[["alkaloids/molybdenum-cofactor.yaml","molybdenum cofactor"]],"b":[["NCBITaxon%3A1281","Staphylococcus carnosus"],["NCBITaxon%3A1158532","Staphylococcus carnosus M0504"],["NCBITaxon%3A396513","Staphylococcus carnosus subsp. carnosus TM300"]]},{"id":"NCBITaxon:128442","l":"","na":3,"nb":1,"a":[["polyketides/1-2-dehydropenicillide.yaml","1,2-dehydropenicillide"],["polyketides/patulin.yaml","patulin"],["unclassified/chrodrimanin-b.yaml","chrodrimanin B"]],"b":[["NCBITaxon%3A128442","Talaromyces pinophilus"]]},{"id":"NCBITaxon:1297742","l":"Myxococcus hansupus","na":1,"nb":3,"a":[["unclassified/myxochromide-c.yaml","myxochromide C"]],"b":[["NCBITaxon%3A51","Chondromyces apiculatus"],["NCBITaxon%3A1192034","Chondromyces apiculatus DSM 436"],["NCBITaxon%3A1297742","Pseudomyxococcus hansupus"]]},{"id":"NCBITaxon:1333476","l":"Streptomyces sp. SCSIO 11863","na":3,"nb":1,"a":[["shikimates_and_phenylpropanoids/neoenterocin-a.yaml","neoenterocin A"],["shikimates_and_phenylpropanoids/neoenterocin-b.yaml","neoenterocin B"],["terpenoids/enterocin.yaml","enterocin"]],"b":[["NCBITaxon%3A1333476","Streptomyces sp. SCSIO 11863"]]},{"id":"NCBITaxon:13684","l":"Parastagonospora nodorum","na":1,"nb":3,"a":[["shikimates_and_phenylpropanoids/mellein.yaml","(-)-Mellein"]],"b":[["NCBITaxon%3A13684","Parastagonospora nodorum"],["NCBITaxon%3A1211001","Parastagonospora nodorum Sn4"],["NCBITaxon%3A1211002","Parastagonospora nodorum Sn79"]]},{"id":"NCBITaxon:138278","l":"Aspergillus ochraceoroseus","na":3,"nb":1,"a":[["polyketides/aflatoxin-b2.yaml","aflatoxin B2"],["polyketides/sterigmatocystin.yaml","sterigmatocystin"],["unclassified/aflatoxin-b1.yaml","aflatoxin B1"]],"b":[["NCBITaxon%3A138278","Aspergillus ochraceoroseus"]]},{"id":"NCBITaxon:1428626","l":"Streptomyces malaysiense","na":3,"nb":1,"a":[["amino_acids_and_peptides/thioholgamide-a.yaml","thioholgamide A"],["amino_acids_and_peptides/thioholgamide-b.yaml","thioholgamide B"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"]],"b":[["NCBITaxon%3A1428626","Streptomyces malaysiense"]]},{"id":"NCBITaxon:1454205","l":"","na":3,"nb":1,"a":[["amino_acids_and_peptides/cryptomaldamide.yaml","cryptomaldamide"],["amino_acids_and_peptides/hectoramide-b.yaml","hectoramide B"],["fatty_acids/1-heptadecene.yaml","1-heptadecene"]],"b":[["NCBITaxon%3A1454205","Moorena producens JHB"]]},{"id":"NCBITaxon:1463846","l":"Streptomyces sp. NRRL F-3213","na":3,"nb":1,"a":[["polyketides/mutaxanthene-a.yaml","mutaxanthene A"],["polyketides/mutaxanthene-b.yaml","mutaxanthene B"],["polyketides/mutaxanthene-d.yaml","mutaxanthene D"]],"b":[["NCBITaxon%3A1463846","Streptomyces sp. NRRL F-3213"]]},{"id":"NCBITaxon:1470456","l":"Streptomyces cyslabdanicus","na":3,"nb":1,"a":[["terpenoids/cyslabdan-a.yaml","cyslabdan A"],["terpenoids/cyslabdan-b.yaml","cyslabdan B"],["terpenoids/cyslabdan-c.yaml","cyslabdan C"]],"b":[["NCBITaxon%3A1470456","Streptomyces cyslabdanicus"]]},{"id":"NCBITaxon:1476877","l":"Streptomyces sp. NRRL B-1347","na":3,"nb":1,"a":[["alkaloids/gilvusmycin.yaml","gilvusmycin"],["amino_acids_and_peptides/detoxin-n2.yaml","detoxin N2"],["amino_acids_and_peptides/detoxin-n3.yaml","detoxin N3"]],"b":[["NCBITaxon%3A1476877","Streptomyces sp. NRRL B-1347"]]},{"id":"NCBITaxon:1570","l":"Halobacillus halophilus","na":1,"nb":3,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A1570","Halobacillus halophilus"],["NCBITaxon%3A866895","Halobacillus halophilus DSM 2266"],["NCBITaxon%3A56800","Halobacillus sp."]]},{"id":"NCBITaxon:1571707","l":"Streptomyces sp. SNM55","na":3,"nb":1,"a":[["amino_acids_and_peptides/ws9326f.yaml","WS9326F"],["amino_acids_and_peptides/ws9326g.yaml","WS9326G"],["unclassified/ws9326a.yaml","WS9326A"]],"b":[["NCBITaxon%3A1571707","Streptomyces sp. SNM55"]]},{"id":"NCBITaxon:1649596","l":"Streptomyces gandocaensis","na":3,"nb":1,"a":[["amino_acids_and_peptides/cahuitamycin-a.yaml","cahuitamycin A"],["amino_acids_and_peptides/cahuitamycin-b.yaml","cahuitamycin B"],["amino_acids_and_peptides/cahuitamycin-c.yaml","cahuitamycin C"]],"b":[["NCBITaxon%3A1649596","Streptomyces gandocaensis"]]},{"id":"NCBITaxon:167636","l":"Streptomyces carzinostaticus","na":3,"nb":1,"a":[["fatty_acids/neocarzilin-a.yaml","neocarzilin A"],["fatty_acids/neocarzilin-b.yaml","neocarzilin B"],["unclassified/neocarzinostatin-chromophore.yaml","neocarzinostatin chromophore"]],"b":[["NCBITaxon%3A167636","Streptomyces carzinostaticus subsp. neocarzinostaticus"]]},{"id":"NCBITaxon:1703433","l":"Micromonospora sp. RL09-050-HVF-A","na":3,"nb":1,"a":[["unclassified/lobosamide-a.yaml","lobosamide A"],["unclassified/lobosamide-b.yaml","lobosamide B"],["unclassified/lobosamide-c.yaml","lobosamide C"]],"b":[["NCBITaxon%3A1703433","Micromonospora sp. RL09-050-HVF-A"]]},{"id":"NCBITaxon:1727214","l":"Rhodococcus sp. H-CA8f","na":3,"nb":1,"a":[["alkaloids/corynecin-i.yaml","corynecin I"],["alkaloids/corynecin-ii.yaml","corynecin II"],["alkaloids/corynecin-iii.yaml","corynecin III"]],"b":[["NCBITaxon%3A1727214","Rhodococcus sp. H-CA8f"]]},{"id":"NCBITaxon:1826667","l":"Streptomyces sp. CMB-0406 CBM-0406","na":3,"nb":1,"a":[["unclassified/heronamide-a.yaml","heronamide A"],["unclassified/heronamide-b.yaml","heronamide B"],["unclassified/heronamide-c.yaml","heronamide C"]],"b":[["NCBITaxon%3A1826667","Streptomyces sp. CMB-0406"]]},{"id":"NCBITaxon:1828758","l":"Desmonostoc muscorum LEGE 12446","na":3,"nb":1,"a":[["unclassified/desmamide-a.yaml","desmamide A"],["unclassified/desmamide-b.yaml","desmamide B"],["unclassified/desmamide-c.yaml","desmamide C"]],"b":[["NCBITaxon%3A1828758","Desmonostoc muscorum LEGE 12446"]]},{"id":"NCBITaxon:1874","l":"Micromonospora chalcea","na":1,"nb":3,"a":[["polyketides/tetrocarcin-a.yaml","tetrocarcin A"]],"b":[["NCBITaxon%3A1874","Micromonospora chalcea"],["NCBITaxon%3A2008351","Micromonospora chalcea subsp. izumensis"],["NCBITaxon%3A1876","Micromonospora sp."]]},{"id":"NCBITaxon:1907","l":"Streptomyces glaucescens","na":3,"nb":1,"a":[["carbohydrates/5-hydroxystreptomycin.yaml","5'-hydroxystreptomycin"],["carbohydrates/streptomycin.yaml","streptomycin"],["polyketides/tetracenomycin-c.yaml","tetracenomycin C"]],"b":[["NCBITaxon%3A1907","Streptomyces glaucescens"]]},{"id":"NCBITaxon:1932","l":"Streptomyces tendae","na":3,"nb":1,"a":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"],["polyketides/lysolipin-i.yaml","lysolipin I"],["terpenoids/geosmin.yaml","(−)-geosmin"]],"b":[["NCBITaxon%3A1932","Streptomyces tendae"]]},{"id":"NCBITaxon:1940","l":"","na":3,"nb":1,"a":[["fatty_acids/fuelimicin-b.yaml","fuelimicin B"],["fatty_acids/fuelimicin-c.yaml","fuelimicin C"],["fatty_acids/fuelimycin-a.yaml","fuelimycin A"]],"b":[["NCBITaxon%3A1940","Streptomyces albireticuli"]]},{"id":"NCBITaxon:1943","l":"Streptomyces griseoruber","na":3,"nb":1,"a":[["polyketides/cinerubin-b.yaml","cinerubin B"],["polyketides/hedamycin.yaml","hedamycin"],["polyketides/murayaquinone.yaml","murayaquinone"]],"b":[["NCBITaxon%3A1943","Streptomyces griseoruber"]]},{"id":"NCBITaxon:2047085","l":"Nodularia sp.","na":3,"nb":1,"a":[["unclassified/nocuolactylate-a.yaml","Nocuolactylate A"],["unclassified/nocuolactylate-b.yaml","Nocuolactylate B"],["unclassified/nocuolactylate-c.yaml","Nocuolactylate C"]],"b":[["NCBITaxon%3A2047085","Nodularia sp. (in: cyanobacteria)"]]},{"id":"NCBITaxon:2066855","l":"Candidatus Entotheonella sp.","na":3,"nb":1,"a":[["polyketides/4-hydroxy-6-2-oxoheptadecyl-pyran-2-one.yaml","4-hydroxy-6-(2-oxoheptadecyl)pyran-2-one"],["polyketides/4-hydroxy-6-pentadecylpyran-2-one.yaml","4-hydroxy-6-pentadecylpyran-2-one"],["polyketides/cardol.yaml","cardol"]],"b":[["NCBITaxon%3A2066855","Candidatus Entotheonella sp."]]},{"id":"NCBITaxon:208443","l":"Amycolatopsis balhimycina","na":1,"nb":3,"a":[["amino_acids_and_peptides/balhimycin.yaml","balhimycin"]],"b":[["NCBITaxon%3A208443","Amycolatopsis balhimycina"],["NCBITaxon%3A1081091","Amycolatopsis balhimycina DSM 5908"],["NCBITaxon%3A1089545","Amycolatopsis balhimycina FH 1894"]]},{"id":"NCBITaxon:2303154","l":"Anabaena sp. UHCC-0399","na":3,"nb":1,"a":[["amino_acids_and_peptides/minutissamide-a.yaml","minutissamide A"],["amino_acids_and_peptides/minutissamide-b.yaml","minutissamide B"],["amino_acids_and_peptides/puwainaphycin-f.yaml","puwainaphycin F"]],"b":[["NCBITaxon%3A2303154","Anabaena sp. UHCC-0399"]]},{"id":"NCBITaxon:2305222","l":"Streptomyces sp. CBMAI 2042","na":3,"nb":1,"a":[["polyketides/alpiniamide.yaml","alpiniamide"],["unclassified/montanastatin.yaml","montanastatin"],["unclassified/valinomycin.yaml","valinomycin"]],"b":[["NCBITaxon%3A2305222","Streptomyces sp. CBMAI 2042"]]},{"id":"NCBITaxon:240292","l":"Trichormus variabilis ATCC 29413","na":3,"nb":1,"a":[["unclassified/4-deoxygadusol.yaml","4-deoxygadusol"],["unclassified/mycosporine-glycine.yaml","mycosporine glycine"],["unclassified/shinorine.yaml","shinorine"]],"b":[["NCBITaxon%3A240292","Trichormus variabilis ATCC 29413"]]},{"id":"NCBITaxon:2542736","l":"Streptomyces sp. CB02980","na":3,"nb":1,"a":[["alkaloids/pyrroloformamide-d.yaml","pyrroloformamide D"],["unclassified/pyrroloformamide-a.yaml","pyrroloformamide A"],["unclassified/pyrroloformamide-c.yaml","pyrroloformamide C"]],"b":[["NCBITaxon%3A2542736","Streptomyces sp. CB02980"]]},{"id":"NCBITaxon:2561920","l":"Streptomyces sp. IB201691-2A2","na":3,"nb":1,"a":[["polyketides/baikalomycin-a.yaml","baikalomycin A"],["polyketides/baikalomycin-b.yaml","baikalomycin B"],["polyketides/baikalomycin-c.yaml","baikalomycin C"]],"b":[["NCBITaxon%3A2561920","Streptomyces sp. IB201691-2A2"]]},{"id":"NCBITaxon:259942","l":"uncultured Prochloron sp.","na":3,"nb":1,"a":[["amino_acids_and_peptides/patellamide-b.yaml","patellamide B"],["amino_acids_and_peptides/patellin-6.yaml","patellin 6"],["amino_acids_and_peptides/trunkamide.yaml","trunkamide"]],"b":[["NCBITaxon%3A259942","uncultured Prochloron sp."]]},{"id":"NCBITaxon:264951","l":"Paecilomyces variotii","na":3,"nb":1,"a":[["polyketides/agnestin-a.yaml","agnestin A"],["polyketides/agnestin-b.yaml","agnestin B"],["polyketides/viriditoxin.yaml","viriditoxin"]],"b":[["NCBITaxon%3A264951","Paecilomyces variotii"]]},{"id":"NCBITaxon:267869","l":"Microcystis aeruginosa NIES-98","na":3,"nb":1,"a":[["amino_acids_and_peptides/aeruginosin-98-a.yaml","aeruginosin 98-A"],["amino_acids_and_peptides/aeruginosin-98-b.yaml","aeruginosin 98-B"],["amino_acids_and_peptides/aeruginosin-98-c.yaml","aeruginosin 98-C"]],"b":[["NCBITaxon%3A267869","Microcystis aeruginosa NIES-98"]]},{"id":"NCBITaxon:269800","l":"Thermobifida fusca YX","na":3,"nb":1,"a":[["amino_acids_and_peptides/fuscachelin-a.yaml","Fuscachelin A"],["amino_acids_and_peptides/fuscachelin-b.yaml","Fuscachelin B"],["amino_acids_and_peptides/fuscachelin-c.yaml","Fuscachelin C"]],"b":[["NCBITaxon%3A269800","Thermobifida fusca YX"]]},{"id":"NCBITaxon:271065","l":"Methylomicrobium alcaliphilum","na":1,"nb":3,"a":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]],"b":[["NCBITaxon%3A271065","Methylotuvimicrobium alcaliphilum"],["NCBITaxon%3A1091494","Methylotuvimicrobium alcaliphilum 20Z"],["NCBITaxon%3A269709","Methylotuvimicrobium kenyense"]]},{"id":"NCBITaxon:272129","l":"","na":3,"nb":1,"a":[["alkaloids/anatoxin-a.yaml","anatoxin-a"],["alkaloids/homoanatoxin-a.yaml","homoanatoxin-a"],["amino_acids_and_peptides/landornamide-a.yaml","landornamide A"]],"b":[["NCBITaxon%3A272129","Kamptonema sp. PCC 6506"]]},{"id":"NCBITaxon:2748322","l":"Brasilonema sp. CT11","na":3,"nb":1,"a":[["amino_acids_and_peptides/anabaenopeptin-788.yaml","anabaenopeptin 788"],["amino_acids_and_peptides/anabaenopeptin-802.yaml","anabaenopeptin 802"],["amino_acids_and_peptides/anabaenopeptin-816.yaml","anabaenopeptin 816"]],"b":[["NCBITaxon%3A2748322","Brasilonema sp. CT11"]]},{"id":"NCBITaxon:2777965","l":"Nodularia sp. LEGE 06071","na":3,"nb":1,"a":[["unclassified/nocuolactylate-a.yaml","Nocuolactylate A"],["unclassified/nocuolactylate-b.yaml","Nocuolactylate B"],["unclassified/nocuolactylate-c.yaml","Nocuolactylate C"]],"b":[["NCBITaxon%3A2777965","Nodularia sp. LEGE 06071"]]},{"id":"NCBITaxon:285530","l":"Streptomyces sviceus","na":1,"nb":3,"a":[["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"]],"b":[["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A285530","Streptomyces sviceus"],["NCBITaxon%3A463191","Streptomyces sviceus ATCC 29083"]]},{"id":"NCBITaxon:285557","l":"Streptomyces caniferus","na":3,"nb":1,"a":[["alkaloids/jomthonic-acid-a.yaml","jomthonic acid A"],["alkaloids/jomthonic-acid-c.yaml","jomthonic acid C"],["polyketides/jomthonic-acid-b.yaml","jomthonic acid B"]],"b":[["NCBITaxon%3A285557","Streptomyces caniferus"]]},{"id":"NCBITaxon:28893","l":"Streptomyces pilosus","na":3,"nb":1,"a":[["amino_acids_and_peptides/zorbamycin.yaml","zorbamycin"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"],["unclassified/piloquinone.yaml","piloquinone"]],"b":[["NCBITaxon%3A28893","Streptomyces pilosus"]]},{"id":"NCBITaxon:2919940","l":"Streptomyces tasikensis","na":3,"nb":1,"a":[["amino_acids_and_peptides/tasikamide-a.yaml","tasikamide A"],["amino_acids_and_peptides/tasikamide-b.yaml","tasikamide B"],["amino_acids_and_peptides/tasikamide-c.yaml","tasikamide C"]],"b":[["NCBITaxon%3A2919940","Streptomyces tasikensis"]]},{"id":"NCBITaxon:29301","l":"Streptomyces arenae","na":3,"nb":1,"a":[["polyketides/fogacin.yaml","fogacin"],["polyketides/naphtocyclinoic-acid.yaml","α naphtocyclinoic acid"],["terpenoids/pentalenolactone.yaml","pentalenolactone"]],"b":[["NCBITaxon%3A29301","Streptomyces arenae"]]},{"id":"NCBITaxon:29907","l":"Sporothrix","na":1,"nb":3,"a":[["polyketides/sporothriolide.yaml","sporothriolide"]],"b":[["NCBITaxon%3A1892476","Sporothrix dombeyi"],["NCBITaxon%3A545651","Sporothrix globosa"],["NCBITaxon%3A431197","Sporothrix pallida"]]},{"id":"NCBITaxon:311982","l":"Streptomyces hygroscopicus subsp. jinggangensis","na":1,"nb":3,"a":[["carbohydrates/validamycin-a-2.yaml","validamycin A"]],"b":[["NCBITaxon%3A311982","Streptomyces hygroscopicus subsp. jinggangensis"],["NCBITaxon%3A1133850","Streptomyces hygroscopicus subsp. jinggangensis 5008"],["NCBITaxon%3A1203460","Streptomyces hygroscopicus subsp. jinggangensis TL01"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans Pd1222","na":1,"nb":3,"a":[["alkaloids/parabactin.yaml","parabactin"]],"b":[["NCBITaxon%3A266","Paracoccus denitrificans"],["NCBITaxon%3A1302247","Paracoccus denitrificans JCM 21484"],["NCBITaxon%3A318586","Paracoccus denitrificans PD1222"]]},{"id":"NCBITaxon:31943","l":"Brevibacterium iodinum","na":1,"nb":3,"a":[["alkaloids/iodinin.yaml","iodinin"]],"b":[["NCBITaxon%3A31943","Brevibacterium iodinum"],["NCBITaxon%3A1255616","Brevibacterium iodinum ATCC 49514"],["NCBITaxon%3A1295588","Brevibacterium iodinum ZoA 5"]]},{"id":"NCBITaxon:324833","l":"Streptomyces lasaliensis","na":3,"nb":1,"a":[["polyketides/lasalocid-2.yaml","lasalocid"],["polyketides/lasalocid.yaml","lasalocid"],["unclassified/echinomycin.yaml","echinomycin"]],"b":[["NCBITaxon%3A324833","Streptomyces lasalocidi"]]},{"id":"NCBITaxon:330084","l":"Amycolatopsis jejuensis","na":3,"nb":1,"a":[["amino_acids_and_peptides/detoxin-p1.yaml","detoxin P1"],["amino_acids_and_peptides/detoxin-p2.yaml","detoxin P2"],["amino_acids_and_peptides/detoxin-p3.yaml","detoxin P3"]],"b":[["NCBITaxon%3A330084","Amycolatopsis jejuensis"]]},{"id":"NCBITaxon:33203","l":"Purpureocillium lilacinum","na":3,"nb":1,"a":[["amino_acids_and_peptides/leucinostatin-a.yaml","leucinostatin A"],["amino_acids_and_peptides/leucinostatin-b.yaml","leucinostatin B"],["polyketides/patulin.yaml","patulin"]],"b":[["NCBITaxon%3A33203","Purpureocillium lilacinum"]]},{"id":"NCBITaxon:33898","l":"Streptomyces galbus","na":1,"nb":3,"a":[["polyketides/rustmicin.yaml","rustmicin"]],"b":[["NCBITaxon%3A33898","Streptomyces galbus"],["NCBITaxon%3A1522105","Streptomyces galbus subsp. achromogenes"],["NCBITaxon%3A3075518","Streptomyces gottesmaniae"]]},{"id":"NCBITaxon:34381","l":"Aspergillus japonicus","na":3,"nb":1,"a":[["amino_acids_and_peptides/aculeacin-a.yaml","aculeacin A"],["fatty_acids/himeic-acid-a.yaml","himeic acid A"],["unclassified/paraherquamide.yaml","paraherquamide"]],"b":[["NCBITaxon%3A34381","Aspergillus japonicus"]]},{"id":"NCBITaxon:35621","l":"Streptomyces mobaraensis","na":1,"nb":3,"a":[["amino_acids_and_peptides/bleomycin-a2.yaml","bleomycin A2"]],"b":[["NCBITaxon%3A173858","Streptomyces luteireticuli"],["NCBITaxon%3A35621","Streptomyces mobaraensis"],["NCBITaxon%3A1223523","Streptomyces mobaraensis NBRC 13819 = DSM 40847"]]},{"id":"NCBITaxon:37329","l":"Nocardia farcinica","na":1,"nb":3,"a":[["amino_acids_and_peptides/nocobactin-na.yaml","nocobactin NA"]],"b":[["NCBITaxon%3A37329","Nocardia farcinica"],["NCBITaxon%3A247156","Nocardia farcinica IFM 10152"],["NCBITaxon%3A1210076","Nocardia farcinica NBRC 15532"]]},{"id":"NCBITaxon:379530","l":"Cylindrospermum licheniforme UTEX B 2014","na":3,"nb":1,"a":[["polyketides/cylindrocyclophane-d.yaml","Cylindrocyclophane D"],["polyketides/cylindrocyclophane-e.yaml","Cylindrocyclophane E"],["polyketides/cylindrocyclophane-f.yaml","Cylindrocyclophane F"]],"b":[["NCBITaxon%3A379530","Cylindrospermum licheniforme UTEX B 2014"]]},{"id":"NCBITaxon:38","l":"Archangium disciforme","na":3,"nb":1,"a":[["alkaloids/myxochelin-a.yaml","myxochelin A"],["amino_acids_and_peptides/tubulysin-a.yaml","tubulysin A"],["amino_acids_and_peptides/tubulysin-h.yaml","tubulysin H"]],"b":[["NCBITaxon%3A38","Archangium disciforme"]]},{"id":"NCBITaxon:380703","l":"Aeromonas hydrophila subsp. hydrophila (strain ATCC 7966 / DSM 30187 / BCRC 13018 / CCUG 14551 / JCM 1027 / KCTC 2358 / NCIMB 9240 / NCTC 8049)","na":1,"nb":3,"a":[["amino_acids_and_peptides/amonabactin-p-750.yaml","amonabactin P 750"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A196023","Aeromonas hydrophila subsp. hydrophila"],["NCBITaxon%3A380703","Aeromonas hydrophila subsp. hydrophila ATCC 7966"]]},{"id":"NCBITaxon:387850","l":"Streptomyces ahygroscopicus subsp. wuzhouensis","na":3,"nb":1,"a":[["carbohydrates/gougerotin.yaml","gougerotin"],["carbohydrates/toyocamycin.yaml","toyocamycin"],["polyketides/nystatin-a1.yaml","nystatin A1"]],"b":[["NCBITaxon%3A387850","Streptomyces ahygroscopicus subsp. wuzhouensis"]]},{"id":"NCBITaxon:388467","l":"Planktothrix agardhii NIVA-CYA 126/8","na":3,"nb":1,"a":[["amino_acids_and_peptides/anabaenopeptin-908.yaml","anabaenopeptin 908"],["amino_acids_and_peptides/anabaenopeptin-915.yaml","anabaenopeptin 915"],["amino_acids_and_peptides/microcystin.yaml","microcystin"]],"b":[["NCBITaxon%3A388467","Planktothrix agardhii NIVA-CYA 126/8"]]},{"id":"NCBITaxon:40223","l":"Methylophaga thalassica","na":1,"nb":3,"a":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]],"b":[["NCBITaxon%3A568897","Ectothiorhodospira salini"],["NCBITaxon%3A40223","Methylophaga thalassica"],["NCBITaxon%3A1026882","Methylophaga thalassica MP"]]},{"id":"NCBITaxon:40988","l":"Saccharomonospora azurea","na":1,"nb":3,"a":[["polyketides/primycin.yaml","primycin"]],"b":[["NCBITaxon%3A40988","Saccharomonospora azurea"],["NCBITaxon%3A882081","Saccharomonospora azurea NA-128"],["NCBITaxon%3A1114959","Saccharomonospora azurea SZMC 14600"]]},{"id":"NCBITaxon:41067","l":"Aspergillus candidus","na":3,"nb":1,"a":[["alkaloids/aspcandine.yaml","aspcandine"],["polyketides/kojic-acid.yaml","kojic acid"],["shikimates_and_phenylpropanoids/chlorflavonin.yaml","chlorflavonin"]],"b":[["NCBITaxon%3A41067","Aspergillus candidus"]]},{"id":"NCBITaxon:413882","l":"[Polyangium] brachysporum","na":3,"nb":1,"a":[["amino_acids_and_peptides/glidobactin-b.yaml","glidobactin B"],["amino_acids_and_peptides/glidobactin-c.yaml","glidobactin C"],["amino_acids_and_peptides/glidobactin.yaml","glidobactin"]],"b":[["NCBITaxon%3A413882","Caldimonas brevitalea"]]},{"id":"NCBITaxon:41735","l":"Aspergillus quadrilineatus","na":3,"nb":1,"a":[["polyketides/asperthecin.yaml","asperthecin"],["polyketides/sterigmatocystin.yaml","sterigmatocystin"],["shikimates_and_phenylpropanoids/microperfuranone.yaml","(−)-microperfuranone"]],"b":[["NCBITaxon%3A41735","Aspergillus quadrilineatus"]]},{"id":"NCBITaxon:42197","l":"Actinosynnema pretiosum","na":1,"nb":3,"a":[["polyketides/ansamitocin-p3.yaml","ansamitocin P3"]],"b":[["NCBITaxon%3A42197","Actinosynnema pretiosum"],["NCBITaxon%3A42198","Actinosynnema pretiosum subsp. auranticum"],["NCBITaxon%3A103721","Actinosynnema pretiosum subsp. pretiosum"]]},{"id":"NCBITaxon:42238","l":"Streptomyces neyagawaensis","na":3,"nb":1,"a":[["polyketides/concanamycin-a.yaml","concanamycin A"],["polyketides/tetrafibricin.yaml","tetrafibricin"],["unclassified/clifednamide-a-2.yaml","clifednamide A"]],"b":[["NCBITaxon%3A42238","Streptomyces neyagawaensis"]]},{"id":"NCBITaxon:442893","l":"Nostoc sp. TH1S01","na":3,"nb":1,"a":[["amino_acids_and_peptides/microviridin-1688.yaml","microviridin 1688"],["amino_acids_and_peptides/microviridin-1739.yaml","microviridin 1739"],["unclassified/microviridin-1748.yaml","microviridin 1748"]],"b":[["NCBITaxon%3A442893","Nostoc sp. TH1S01"]]},{"id":"NCBITaxon:45133","l":"Lasiodiplodia theobromae","na":3,"nb":1,"a":[["polyketides/lasiodiplodin.yaml","lasiodiplodin"],["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"],["shikimates_and_phenylpropanoids/mellein.yaml","(-)-Mellein"]],"b":[["NCBITaxon%3A45133","Lasiodiplodia theobromae"]]},{"id":"NCBITaxon:451804","l":"Aspergillus fumigatus (strain CBS 144.89 / FGSC A1163 / CEA10)","na":3,"nb":1,"a":[["terpenoids/21-h-hopane-3beta-22-diol.yaml","21-β-H-hopane-3beta, 22-diol"],["terpenoids/compound-3-3.yaml","compound 3"],["terpenoids/fumihopaside-a.yaml","fumihopaside A"]],"b":[["NCBITaxon%3A451804","Aspergillus fumigatus A1163"]]},{"id":"NCBITaxon:454130","l":"Aspergillus calidoustus","na":3,"nb":1,"a":[["terpenoids/calidoustene-a.yaml","calidoustene A"],["terpenoids/calidoustene-b.yaml","calidoustene B"],["terpenoids/calidoustene-c.yaml","calidoustene C"]],"b":[["NCBITaxon%3A454130","Aspergillus calidoustus"]]},{"id":"NCBITaxon:457406","l":"Micromonospora sp. M42","na":3,"nb":1,"a":[["alkaloids/diazepinomicin.yaml","diazepinomicin"],["unclassified/rakicidin-a.yaml","rakicidin A"],["unclassified/rakicidin-b-2.yaml","rakicidin B"]],"b":[["NCBITaxon%3A457406","Micromonospora sp. M42"]]},{"id":"NCBITaxon:457432","l":"Streptosporangium sibiricum","na":1,"nb":3,"a":[["carbohydrates/sibiromycin.yaml","sibiromycin"]],"b":[["NCBITaxon%3A1871","Actinoplanes sp."],["NCBITaxon%3A457432","Streptosporangium sibiricum"],["NCBITaxon%3A457433","Streptosporangium sibiricum ATCC 29053"]]},{"id":"NCBITaxon:46161","l":"Actinomadura kijaniata","na":1,"nb":3,"a":[["polyketides/kijanimicin.yaml","kijanimicin"]],"b":[["NCBITaxon%3A46158","Actinomadura citrea"],["NCBITaxon%3A46161","Actinomadura kijaniata"],["NCBITaxon%3A1220561","Actinomadura kijaniata NBRC 14229"]]},{"id":"NCBITaxon:46234","l":"Anabaena sp. 90","na":3,"nb":1,"a":[["amino_acids_and_peptides/anabaenopeptin.yaml","anabaenopeptin"],["amino_acids_and_peptides/anacyclamide-a10.yaml","anacyclamide A10"],["amino_acids_and_peptides/microcystin-lr.yaml","microcystin-LR"]],"b":[["NCBITaxon%3A46234","Anabaena sp. 90"]]},{"id":"NCBITaxon:463","l":"Fluoribacter dumoffii","na":1,"nb":3,"a":[["shikimates_and_phenylpropanoids/legioliulin.yaml","legioliulin"]],"b":[["NCBITaxon%3A463","Fluoribacter dumoffii"],["NCBITaxon%3A1094715","Fluoribacter dumoffii NY 23"],["NCBITaxon%3A1094714","Fluoribacter dumoffii Tex-KL"]]},{"id":"NCBITaxon:465541","l":"Streptomyces sp. Mg1","na":3,"nb":1,"a":[["polyketides/linearmycin-a.yaml","linearmycin A"],["polyketides/linearmycin-b.yaml","linearmycin B"],["unclassified/linearmycin-c.yaml","linearmycin C"]],"b":[["NCBITaxon%3A465541","Streptomyces sp. Mg1"]]},{"id":"NCBITaxon:474922","l":"Colletotrichum gloeosporioides","na":3,"nb":1,"a":[["unclassified/colletochlorin-a.yaml","Colletochlorin A"],["unclassified/colletotrichin.yaml","colletotrichin"],["unclassified/orcinol.yaml","orcinol"]],"b":[["NCBITaxon%3A474922","Colletotrichum gloeosporioides"]]},{"id":"NCBITaxon:47886","l":"Pseudomonas luteola","na":1,"nb":3,"a":[["amino_acids_and_peptides/chrysobactin.yaml","chrysobactin"]],"b":[["NCBITaxon%3A47886","Pseudomonas luteola"],["NCBITaxon%3A1215106","Pseudomonas luteola NBRC 103146"],["NCBITaxon%3A1207076","Pseudomonas luteola XLDN4-9"]]},{"id":"NCBITaxon:48100","l":"Alternaria solani","na":3,"nb":1,"a":[["polyketides/alternapyrone.yaml","alternapyrone"],["polyketides/solanapyrone-a.yaml","solanapyrone A"],["polyketides/solanapyrone-d.yaml","solanapyrone D"]],"b":[["NCBITaxon%3A48100","Alternaria solani"]]},{"id":"NCBITaxon:5046","l":"Sarocladium strictum","na":3,"nb":1,"a":[["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"],["polyketides/bisvertinolone-spelled-bisvertinolon-in-paper.yaml","bisvertinolone (spelled bisvertinolon in paper)"],["unclassified/xenovulene-a.yaml","xenovulene A"]],"b":[["NCBITaxon%3A5046","Sarocladium strictum"]]},{"id":"NCBITaxon:5050","l":"Epichloe uncinata","na":3,"nb":1,"a":[["alkaloids/loline.yaml","loline"],["alkaloids/n-acetylnorloline.yaml","N-acetylnorloline"],["alkaloids/n-formylloline.yaml","N-formylloline"]],"b":[["NCBITaxon%3A5050","Epichloe uncinata"]]},{"id":"NCBITaxon:5097","l":"Monascus","na":1,"nb":3,"a":[["polyketides/monascin.yaml","monascin"]],"b":[["NCBITaxon%3A225353","Monascus aurantiacus"],["NCBITaxon%3A5098","Monascus purpureus"],["NCBITaxon%3A89489","Monascus ruber"]]},{"id":"NCBITaxon:5098","l":"Monascus purpureus","na":3,"nb":1,"a":[["polyketides/monascin.yaml","monascin"],["polyketides/monascorubrin.yaml","monascorubrin"],["polyketides/rubropunctatine.yaml","rubropunctatine"]],"b":[["NCBITaxon%3A5098","Monascus purpureus"]]},{"id":"NCBITaxon:538381","l":"Stappia indica","na":3,"nb":1,"a":[["alkaloids/sesbanimide-c.yaml","sesbanimide C"],["alkaloids/sesbanimide-e.yaml","sesbanimide E"],["alkaloids/sesbanimide-f.yaml","sesbanimide F"]],"b":[["NCBITaxon%3A538381","Stappia indica"]]},{"id":"NCBITaxon:546342","l":"Staphylococcus aureus subsp. aureus str. JKD6008","na":3,"nb":1,"a":[["unclassified/leuvalin.yaml","leuvalin"],["unclassified/phevalin.yaml","phevalin"],["unclassified/tyrvalin.yaml","tyrvalin"]],"b":[["NCBITaxon%3A546342","Staphylococcus aureus subsp. aureus str. JKD6008"]]},{"id":"NCBITaxon:5544","l":"Trichoderma harzianum","na":3,"nb":1,"a":[["polyketides/1-2-dehydropenicillide.yaml","1,2-dehydropenicillide"],["polyketides/harziphilone.yaml","harziphilone"],["unclassified/harzianopyridone.yaml","harzianopyridone"]],"b":[["NCBITaxon%3A5544","Trichoderma harzianum"]]},{"id":"NCBITaxon:568869","l":"Streptomyces sanyensis","na":3,"nb":1,"a":[["alkaloids/k-252a-2.yaml","K-252a"],["alkaloids/rebeccamycin.yaml","rebeccamycin"],["alkaloids/staurosporine.yaml","staurosporine"]],"b":[["NCBITaxon%3A568869","Streptomyces sanyensis"]]},{"id":"NCBITaxon:574","l":"Klebsiella pneumoniae subsp. ozaenae","na":1,"nb":3,"a":[["carbohydrates/capsular-polysaccharide-2.yaml","capsular polysaccharide"]],"b":[["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A574","Klebsiella pneumoniae subsp. ozaenae"],["NCBITaxon%3A1218098","Klebsiella pneumoniae subsp. ozaenae NBRC 105683"]]},{"id":"NCBITaxon:60167","l":"Penicillium cyclopium","na":3,"nb":1,"a":[["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"],["terpenoids/conidiogenone.yaml","conidiogenone"],["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]],"b":[["NCBITaxon%3A60167","Penicillium cyclopium"]]},{"id":"NCBITaxon:64629","l":"Mycotypha","na":1,"nb":3,"a":[["alkaloids/cytochalasin-e.yaml","cytochalasin E"]],"b":[["NCBITaxon%3A64632","Mycotypha africana"],["NCBITaxon%3A2053761","Mycotypha indica"],["NCBITaxon%3A64633","Mycotypha microspora"]]},{"id":"NCBITaxon:659352","l":"Streptomyces sp. SN-593","na":3,"nb":1,"a":[["polyketides/kinanthraquinone-b.yaml","kinanthraquinone B"],["polyketides/kinanthraquinone.yaml","kinanthraquinone"],["polyketides/reveromycin-a.yaml","reveromycin A"]],"b":[["NCBITaxon%3A659352","Actinacidiphila reveromycinica"]]},{"id":"NCBITaxon:66374","l":"Streptomyces nojiriensis","na":3,"nb":1,"a":[["carbohydrates/streptothricin-d.yaml","streptothricin D"],["carbohydrates/streptothricin-e.yaml","streptothricin E"],["carbohydrates/streptothricin-f.yaml","streptothricin F"]],"b":[["NCBITaxon%3A66374","Streptomyces nojiriensis"]]},{"id":"NCBITaxon:668825","l":"Streptomyces sp. ATCC 700974","na":3,"nb":1,"a":[["amino_acids_and_peptides/albomycin-1.yaml","albomycin δ1"],["amino_acids_and_peptides/albomycin-delta2.yaml","albomycin delta2"],["amino_acids_and_peptides/albomycin-epsilon.yaml","albomycin epsilon"]],"b":[["NCBITaxon%3A668825","Streptomyces sp. ATCC 700974"]]},{"id":"NCBITaxon:67283","l":"Streptomyces candidus","na":1,"nb":3,"a":[["unclassified/pirazofurin.yaml","pirazofurin"]],"b":[["NCBITaxon%3A76021","Amycolatopsis coloradensis"],["NCBITaxon%3A67283","Streptomyces candidus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:67293","l":"Streptomyces echinatus","na":3,"nb":1,"a":[["polyketides/aranciamycin.yaml","aranciamycin"],["unclassified/echinomycin.yaml","echinomycin"],["unclassified/quinomycin.yaml","quinomycin"]],"b":[["NCBITaxon%3A67293","Streptomyces echinatus"]]},{"id":"NCBITaxon:67304","l":"Streptomyces griseorubiginosus","na":3,"nb":1,"a":[["polyketides/cinerubin-b.yaml","cinerubin B"],["polyketides/k1115a.yaml","K1115A"],["polyketides/rubiginone-b2.yaml","rubiginone B2"]],"b":[["NCBITaxon%3A67304","Streptomyces griseorubiginosus"]]},{"id":"NCBITaxon:67372","l":"Streptomyces variabilis","na":1,"nb":3,"a":[["polyketides/resistomycin.yaml","resistomycin"]],"b":[["NCBITaxon%3A29305","Streptomyces griseoincarnatus"],["NCBITaxon%3A67372","Streptomyces variabilis"],["NCBITaxon%3A377639","Streptomyces variabilis subsp. roseolus"]]},{"id":"NCBITaxon:67376","l":"Streptomyces vinaceusdrappus","na":3,"nb":1,"a":[["carbohydrates/amicetin.yaml","amicetin"],["polyketides/ll-d49194-1-lld.yaml","LL-D49194α1 (LLD)"],["polyketides/ll-d49194-2.yaml","LL-D49194β2"]],"b":[["NCBITaxon%3A67376","Streptomyces vinaceusdrappus"]]},{"id":"NCBITaxon:68187","l":"Streptomyces cirratus","na":1,"nb":3,"a":[["unclassified/pheganomycin.yaml","pheganomycin"]],"b":[["NCBITaxon%3A70348","Acinetobacter dispersus"],["NCBITaxon%3A2081977","Litorimonas haliclonae"],["NCBITaxon%3A68187","Streptomyces cirratus"]]},{"id":"NCBITaxon:68195","l":"Streptomyces ehimensis","na":1,"nb":3,"a":[["alkaloids/carbazomycin-b.yaml","carbazomycin B"]],"b":[["NCBITaxon%3A97398","Streptomyces abikoensis"],["NCBITaxon%3A68195","Streptomyces ehimensis"],["NCBITaxon%3A1243002","Vibrio olivae"]]},{"id":"NCBITaxon:68197","l":"Streptomyces fimbriatus","na":1,"nb":3,"a":[["alkaloids/spicamycin.yaml","spicamycin"]],"b":[["NCBITaxon%3A1398493","Pseudocitrobacter faecalis"],["NCBITaxon%3A68197","Streptomyces fimbriatus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:68228","l":"Streptomyces lilacinus","na":1,"nb":3,"a":[["unclassified/rakicidin-d.yaml","rakicidin D"]],"b":[["NCBITaxon%3A68222","Streptomyces kashimirensis"],["NCBITaxon%3A285467","Streptomyces lilaceus"],["NCBITaxon%3A68228","Streptomyces lilacinus"]]},{"id":"NCBITaxon:68242","l":"Streptomyces natalensis","na":1,"nb":3,"a":[["polyketides/natamycin.yaml","natamycin"]],"b":[["NCBITaxon%3A68242","Streptomyces natalensis"],["NCBITaxon%3A1240678","Streptomyces natalensis ATCC 27448"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:683272","l":"Streptosporangium sp. FXJ7.131","na":3,"nb":1,"a":[["polyketides/hexaricin-b.yaml","hexaricin B"],["polyketides/hexaricin-c.yaml","hexaricin C"],["polyketides/ws-79089a.yaml","WS 79089A"]],"b":[["NCBITaxon%3A683272","Streptosporangium sp. FXJ7.131"]]},{"id":"NCBITaxon:686309","l":"Micromonospora haikouensis","na":3,"nb":1,"a":[["carbohydrates/aristeromycin.yaml","aristeromycin"],["carbohydrates/coformycin.yaml","coformycin"],["carbohydrates/kanamycin-a.yaml","kanamycin A"]],"b":[["NCBITaxon%3A686309","Micromonospora haikouensis"]]},{"id":"NCBITaxon:687","l":"Vibrio gazogenes","na":1,"nb":3,"a":[["alkaloids/prodigiosin.yaml","prodigiosin"]],"b":[["NCBITaxon%3A687","Vibrio gazogenes"],["NCBITaxon%3A1269943","Vibrio gazogenes ATCC 43941"],["NCBITaxon%3A1123492","Vibrio gazogenes DSM 21264 = NBRC 103151"]]},{"id":"NCBITaxon:71999","l":"Kocuria palustris","na":1,"nb":3,"a":[["amino_acids_and_peptides/kocurin.yaml","kocurin"]],"b":[["NCBITaxon%3A71999","Kocuria palustris"],["NCBITaxon%3A1236550","Kocuria palustris PEL"],["NCBITaxon%3A1272","Kocuria varians"]]},{"id":"NCBITaxon:757424","l":"Herbaspirillum seropedicae SmR1","na":3,"nb":1,"a":[["amino_acids_and_peptides/serobactin-a.yaml","serobactin A"],["amino_acids_and_peptides/serobactin-b.yaml","serobactin B"],["amino_acids_and_peptides/serobactin-c.yaml","serobactin C"]],"b":[["NCBITaxon%3A757424","Herbaspirillum seropedicae SmR1"]]},{"id":"NCBITaxon:758803","l":"Nocardiopsis flavescens","na":3,"nb":1,"a":[["alkaloids/loonamycin-a.yaml","loonamycin A"],["alkaloids/loonamycin-b.yaml","loonamycin B"],["alkaloids/loonamycin-c.yaml","loonamycin C"]],"b":[["NCBITaxon%3A758803","Nocardiopsis flavescens"]]},{"id":"NCBITaxon:83460","l":"Allostigmatella erecta","na":3,"nb":1,"a":[["alkaloids/aurachin-a.yaml","aurachin A"],["alkaloids/aurachin-c.yaml","aurachin C"],["unclassified/myxochromide-d.yaml","myxochromide D"]],"b":[["NCBITaxon%3A83460","Allostigmatella erecta"]]},{"id":"NCBITaxon:945768","l":"Plectonema radiosum","na":1,"nb":3,"a":[["carbohydrates/tubercidin.yaml","tubercidin"]],"b":[["NCBITaxon%3A945769","Plectonema cf. radiosum LEGE 06105"],["NCBITaxon%3A945768","Plectonema radiosum"],["NCBITaxon%3A2986073","Plectonema radiosum NIES-515"]]},{"id":"NCBITaxon:945782","l":"Synechocystis salina LEGE 06155","na":3,"nb":1,"a":[["polyketides/bartoloside-b.yaml","bartoloside B"],["polyketides/bartoloside-c.yaml","bartoloside C"],["polyketides/bartoloside-d.yaml","bartoloside D"]],"b":[["NCBITaxon%3A945782","Synechocystis salina LEGE 06155"]]},{"id":"NCBITaxon:96045","l":"Nocardia uniformis subsp. tsuyamanensis","na":1,"nb":3,"a":[["amino_acids_and_peptides/nocardicin-a.yaml","nocardicin A"]],"b":[["NCBITaxon%3A1872144","Actinosynnema sp."],["NCBITaxon%3A53432","Nocardia uniformis"],["NCBITaxon%3A96045","Nocardia uniformis subsp. tsuyamanensis"]]},{"id":"NCBITaxon:984195","l":"Pseudomonas sp. SHC52","na":3,"nb":1,"a":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["amino_acids_and_peptides/thanafactin-a.yaml","thanafactin A"],["unclassified/thanamycin.yaml","thanamycin"]],"b":[["NCBITaxon%3A984195","Pseudomonas sp. SHC52"]]},{"id":"NCBITaxon:1001349","l":"Streptomyces sp. Acta 2897","na":2,"nb":1,"a":[["unclassified/skyllamycin-a.yaml","skyllamycin A"],["unclassified/skyllamycin-b.yaml","skyllamycin B"]],"b":[["NCBITaxon%3A1001349","Streptomyces sp. Acta 2897"]]},{"id":"NCBITaxon:1004","l":"Chitinophaga sancti","na":1,"nb":2,"a":[["polyketides/elansolid-a1.yaml","elansolid A1"]],"b":[["NCBITaxon%3A1004","Chitinophaga sancti"],["NCBITaxon%3A1121282","Chitinophaga sancti DSM 784"]]},{"id":"NCBITaxon:101162","l":"Bipolaris oryzae","na":1,"nb":2,"a":[["alkaloids/melanin.yaml","melanin"]],"b":[["NCBITaxon%3A101162","Bipolaris oryzae"],["NCBITaxon%3A930090","Bipolaris oryzae ATCC 44560"]]},{"id":"NCBITaxon:1042163","l":"Brevibacillus laterosporus LMG 15441","na":1,"nb":2,"a":[["unclassified/laterocidine.yaml","laterocidine"]],"b":[["NCBITaxon%3A1465","Brevibacillus laterosporus"],["NCBITaxon%3A1042163","Brevibacillus laterosporus LMG 15441"]]},{"id":"NCBITaxon:104260","l":"Penicillium paraherquei","na":2,"nb":1,"a":[["unclassified/paraherquamide.yaml","paraherquamide"],["unclassified/paraherquonin.yaml","paraherquonin"]],"b":[["NCBITaxon%3A104260","Penicillium paraherquei"]]},{"id":"NCBITaxon:1052","l":"Halorhodospira halochloris","na":1,"nb":2,"a":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]],"b":[["NCBITaxon%3A1052","Halorhodospira halochloris"],["NCBITaxon%3A1354791","Halorhodospira halochloris str. A"]]},{"id":"NCBITaxon:105351","l":"Aspergillus awamori","na":1,"nb":2,"a":[["alkaloids/aspergillin-pz.yaml","aspergillin PZ"]],"b":[["NCBITaxon%3A105351","Aspergillus awamori"],["NCBITaxon%3A309746","Aspergillus awamori var. piceus"]]},{"id":"NCBITaxon:105696","l":"Epicoccum nigrum","na":2,"nb":1,"a":[["polyketides/epipyrone-a.yaml","epipyrone A"],["terpenoids/carotene.yaml","β-carotene"]],"b":[["NCBITaxon%3A105696","Epicoccum nigrum"]]},{"id":"NCBITaxon:1069","l":"Rhodomicrobium vannielii","na":1,"nb":2,"a":[["terpenoids/carotene.yaml","β-carotene"]],"b":[["NCBITaxon%3A1069","Rhodomicrobium vannielii"],["NCBITaxon%3A648757","Rhodomicrobium vannielii ATCC 17100"]]},{"id":"NCBITaxon:107635","l":"Methylosinus sp. LW3","na":1,"nb":2,"a":[["amino_acids_and_peptides/group-1-methanobactin.yaml","group 1 methanobactin"]],"b":[["NCBITaxon%3A427","Methylosinus sp."],["NCBITaxon%3A107635","Methylosinus sp. LW3"]]},{"id":"NCBITaxon:1079983","l":"Streptomyces lysosuperificus","na":1,"nb":2,"a":[["carbohydrates/tunicamycin.yaml","tunicamycin"]],"b":[["NCBITaxon%3A1079983","Streptomyces lysosuperificus"],["NCBITaxon%3A1079984","Streptomyces lysosuperificus ATCC 31396"]]},{"id":"NCBITaxon:1091494","l":"Methylotuvimicrobium alcaliphilum 20Z","na":1,"nb":2,"a":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]],"b":[["NCBITaxon%3A271065","Methylotuvimicrobium alcaliphilum"],["NCBITaxon%3A1091494","Methylotuvimicrobium alcaliphilum 20Z"]]},{"id":"NCBITaxon:1108849","l":"Penicillium rubens","na":1,"nb":2,"a":[["polyketides/sorbicillin.yaml","sorbicillin"]],"b":[["NCBITaxon%3A1108849","Penicillium rubens"],["NCBITaxon%3A500485","Penicillium rubens Wisconsin 54-1255"]]},{"id":"NCBITaxon:1120936","l":"Actinomadura atramentaria DSM 43919","na":1,"nb":2,"a":[["amino_acids_and_peptides/matlystatin-a.yaml","matlystatin A"]],"b":[["NCBITaxon%3A1990","Actinomadura atramentaria"],["NCBITaxon%3A1120936","Actinomadura atramentaria DSM 43919"]]},{"id":"NCBITaxon:1121121","l":"Brevibacillus laterosporus DSM 25","na":1,"nb":2,"a":[["amino_acids_and_peptides/tauramamide.yaml","tauramamide"]],"b":[["NCBITaxon%3A1465","Brevibacillus laterosporus"],["NCBITaxon%3A1121121","Brevibacillus laterosporus DSM 25"]]},{"id":"NCBITaxon:1124983","l":"Pseudomonas protegens CHA0","na":1,"nb":2,"a":[["fatty_acids/protegencin.yaml","protegencin"]],"b":[["NCBITaxon%3A380021","Pseudomonas protegens"],["NCBITaxon%3A1124983","Pseudomonas protegens CHA0"]]},{"id":"NCBITaxon:1125972","l":"Amycolatopsis alba DSM 44262","na":1,"nb":2,"a":[["amino_acids_and_peptides/albachelin.yaml","albachelin"]],"b":[["NCBITaxon%3A76020","Amycolatopsis alba"],["NCBITaxon%3A1125972","Amycolatopsis alba DSM 44262"]]},{"id":"NCBITaxon:1134541","l":"Streptomyces sp. WK-5344","na":2,"nb":1,"a":[["shikimates_and_phenylpropanoids/bagremycin-a.yaml","bagremycin A"],["shikimates_and_phenylpropanoids/bagremycin-b.yaml","bagremycin B"]],"b":[["NCBITaxon%3A1134541","Streptomyces sp. WK-5344"]]},{"id":"NCBITaxon:113561","l":"Paractinoplanes deccanensis","na":1,"nb":2,"a":[["polyketides/tiacumicin-b.yaml","tiacumicin B"]],"b":[["NCBITaxon%3A113561","Paractinoplanes deccanensis"],["NCBITaxon%3A1095092","Paractinoplanes deccanensis subsp. salmoneus"]]},{"id":"NCBITaxon:114230","l":"Nigrospora","na":1,"nb":2,"a":[["polyketides/solanapyrone-a.yaml","solanapyrone A"]],"b":[["NCBITaxon%3A335854","Nigrospora oryzae"],["NCBITaxon%3A114231","Nigrospora sphaerica"]]},{"id":"NCBITaxon:1159","l":"Oscillatoria sp.","na":2,"nb":1,"a":[["alkaloids/7-epi-cylindrospermopsin.yaml","7-epi-cylindrospermopsin"],["terpenoids/zeaxanthin.yaml","zeaxanthin"]],"b":[["NCBITaxon%3A1159","Oscillatoria sp."]]},{"id":"NCBITaxon:1160280","l":"Microcystis aeruginosa PCC 9432","na":2,"nb":1,"a":[["amino_acids_and_peptides/aeruginosamide-b.yaml","aeruginosamide B"],["amino_acids_and_peptides/aeruginosamide-c.yaml","aeruginosamide C"]],"b":[["NCBITaxon%3A1160280","Microcystis aeruginosa PCC 9432"]]},{"id":"NCBITaxon:1160705","l":"Streptomyces viridochromogenes Tue57","na":2,"nb":1,"a":[["carbohydrates/avilamycin-a.yaml","avilamycin A"],["carbohydrates/avilamycin-c.yaml","avilamycin C"]],"b":[["NCBITaxon%3A1160705","Streptomyces viridochromogenes Tue57"]]},{"id":"NCBITaxon:1181","l":"Desmonostoc sp. PCC 7906","na":2,"nb":1,"a":[["amino_acids_and_peptides/muscoride-a.yaml","muscoride A"],["unclassified/muscoride-b.yaml","muscoride B"]],"b":[["NCBITaxon%3A1181","Desmonostoc sp. PCC 7906"]]},{"id":"NCBITaxon:119927","l":"Alternaria tenuissima","na":2,"nb":1,"a":[["polyketides/patulin.yaml","patulin"],["polyketides/solanapyrone-a.yaml","solanapyrone A"]],"b":[["NCBITaxon%3A119927","Alternaria tenuissima"]]},{"id":"NCBITaxon:1200984","l":"Streptomyces lividans 1326","na":2,"nb":1,"a":[["amino_acids_and_peptides/livipeptin.yaml","Livipeptin"],["polyketides/bisenarsan.yaml","Bisenarsan"]],"b":[["NCBITaxon%3A1200984","Streptomyces lividans 1326"]]},{"id":"NCBITaxon:120957","l":"Nocardia abscessus","na":1,"nb":2,"a":[["carbohydrates/kanamycin-a.yaml","kanamycin A"]],"b":[["NCBITaxon%3A120957","Nocardia abscessus"],["NCBITaxon%3A1206723","Nocardia abscessus NBRC 100374"]]},{"id":"NCBITaxon:1214101","l":"Streptomyces davaonensis JCM 4913","na":1,"nb":2,"a":[["alkaloids/roseoflavin.yaml","roseoflavin"]],"b":[["NCBITaxon%3A348043","Streptomyces davaonensis"],["NCBITaxon%3A1214101","Streptomyces davaonensis JCM 4913"]]},{"id":"NCBITaxon:1214242","l":"Streptomyces collinus Tu 365","na":1,"nb":2,"a":[["unclassified/kirromycin.yaml","kirromycin"]],"b":[["NCBITaxon%3A1214242","Streptomyces collinus Tu 365"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:1218948","l":"Pseudomonas fluorescens PF5","na":2,"nb":1,"a":[["alkaloids/pyoluteorin.yaml","pyoluteorin"],["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"]],"b":[["NCBITaxon%3A1218948","Pseudomonas fluorescens PF5"]]},{"id":"NCBITaxon:1221190","l":"Candidatus Entotheonella factor","na":2,"nb":1,"a":[["amino_acids_and_peptides/polytheonamide-a.yaml","polytheonamide A"],["amino_acids_and_peptides/polytheonamide-b.yaml","polytheonamide B"]],"b":[["NCBITaxon%3A1221190","bacterium symbiont of Theonella swinhoei pTSMAC1"]]},{"id":"NCBITaxon:1226757","l":"Streptomyces rapamycinicus","na":1,"nb":2,"a":[["polyketides/sirolimus.yaml","sirolimus"]],"b":[["NCBITaxon%3A1226757","Streptomyces rapamycinicus"],["NCBITaxon%3A1343740","Streptomyces rapamycinicus NRRL 5491"]]},{"id":"NCBITaxon:1245473","l":"Nocardiopsis alba DSM 43377","na":1,"nb":2,"a":[["amino_acids_and_peptides/lp2006.yaml","LP2006"]],"b":[["NCBITaxon%3A53437","Nocardiopsis alba"],["NCBITaxon%3A1245473","Nocardiopsis alba DSM 43377"]]},{"id":"NCBITaxon:1265399","l":"Streptomyces sp. ID38640","na":2,"nb":1,"a":[["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["unclassified/lydicamycin.yaml","lydicamycin"]],"b":[["NCBITaxon%3A1265399","Streptomyces sp. ID38640"]]},{"id":"NCBITaxon:1267754","l":"Corynebacterium urealyticum DSM 7111","na":1,"nb":2,"a":[["amino_acids_and_peptides/corynazolicin.yaml","corynazolicin"]],"b":[["NCBITaxon%3A43771","Corynebacterium urealyticum"],["NCBITaxon%3A1267754","Corynebacterium urealyticum DSM 7111"]]},{"id":"NCBITaxon:1278073","l":"","na":1,"nb":2,"a":[["polyketides/phenalamide-a2.yaml","phenalamide A2"]],"b":[["NCBITaxon%3A83455","Myxococcus stipitatus"],["NCBITaxon%3A1278073","Myxococcus stipitatus DSM 14675"]]},{"id":"NCBITaxon:1284240","l":"Amycolatopsis decaplanina DSM 44594","na":1,"nb":2,"a":[["amino_acids_and_peptides/decaplanin.yaml","decaplanin"]],"b":[["NCBITaxon%3A208441","Amycolatopsis decaplanina"],["NCBITaxon%3A1284240","Amycolatopsis decaplanina DSM 44594"]]},{"id":"NCBITaxon:1286094","l":"Streptomyces aurantiacus JA 4570","na":2,"nb":1,"a":[["polyketides/setomimycin.yaml","setomimycin"],["unclassified/aurantimycin-a.yaml","aurantimycin A"]],"b":[["NCBITaxon%3A1286094","Streptomyces aurantiacus JA 4570"]]},{"id":"NCBITaxon:1293","l":"Staphylococcus gallinarum","na":1,"nb":2,"a":[["amino_acids_and_peptides/gallidermin.yaml","gallidermin"]],"b":[["NCBITaxon%3A1293","Staphylococcus gallinarum"],["NCBITaxon%3A1288","Staphylococcus xylosus"]]},{"id":"NCBITaxon:1295550","l":"Streptomyces arginensis","na":2,"nb":1,"a":[["carbohydrates/arginomycin.yaml","arginomycin"],["carbohydrates/blasticidin-s.yaml","blasticidin S"]],"b":[["NCBITaxon%3A1295550","Streptomyces arginensis"]]},{"id":"NCBITaxon:1306787","l":"","na":1,"nb":2,"a":[["amino_acids_and_peptides/pacifibactin.yaml","pacifibactin"]],"b":[["NCBITaxon%3A1306787","Isoalcanivorax pacificus"],["NCBITaxon%3A391936","Isoalcanivorax pacificus W11-5"]]},{"id":"NCBITaxon:1311812","l":"Nocardia argentinensis","na":1,"nb":2,"a":[["polyketides/nargenicin-a1.yaml","nargenicin A1"]],"b":[["NCBITaxon%3A1311812","Nocardia argentinensis"],["NCBITaxon%3A1311813","Nocardia argentinensis ATCC 31306"]]},{"id":"NCBITaxon:1311815","l":"Nocardia interforma ATCC 21072","na":2,"nb":1,"a":[["alkaloids/formycin-a.yaml","formycin A"],["carbohydrates/coformycin.yaml","coformycin"]],"b":[["NCBITaxon%3A1311815","Nocardia interforma ATCC 21072"]]},{"id":"NCBITaxon:1312234","l":"Streptomyces prunicolor NBRC 13075","na":1,"nb":2,"a":[["amino_acids_and_peptides/prunipeptin.yaml","prunipeptin"]],"b":[["NCBITaxon%3A67348","Streptomyces prunicolor"],["NCBITaxon%3A1312234","Streptomyces prunicolor NBRC 13075"]]},{"id":"NCBITaxon:1315281","l":"Pseudoalteromonas phenolica O-BC30","na":1,"nb":2,"a":[["shikimates_and_phenylpropanoids/pentabromopseudilin.yaml","pentabromopseudilin"]],"b":[["NCBITaxon%3A161398","Pseudoalteromonas phenolica"],["NCBITaxon%3A1315281","Pseudoalteromonas phenolica O-BC30"]]},{"id":"NCBITaxon:1319510","l":"Streptomyces fradiae ATCC 10745 = DSM 40063","na":1,"nb":2,"a":[["carbohydrates/neomycin-c.yaml","neomycin C"]],"b":[["NCBITaxon%3A1906","Streptomyces fradiae"],["NCBITaxon%3A1319510","Streptomyces fradiae ATCC 10745 = DSM 40063"]]},{"id":"NCBITaxon:132248","l":"Streptomyces hygroscopicus subsp. ascomyceticus","na":1,"nb":2,"a":[["polyketides/fr-900520.yaml","FR-900520"]],"b":[["NCBITaxon%3A476551","Streptomyces ascomycinicus"],["NCBITaxon%3A132248","Streptomyces hygroscopicus subsp. ascomyceticus"]]},{"id":"NCBITaxon:1337893","l":"Streptomyces bernensis","na":2,"nb":1,"a":[["amino_acids_and_peptides/berninamycin-a.yaml","berninamycin A"],["amino_acids_and_peptides/berninamycin-b.yaml","berninamycin B"]],"b":[["NCBITaxon%3A1337893","Streptomyces bernensis"]]},{"id":"NCBITaxon:1343740","l":"Streptomyces rapamycinicus NRRL 5491","na":1,"nb":2,"a":[["polyketides/sirolimus.yaml","sirolimus"]],"b":[["NCBITaxon%3A1226757","Streptomyces rapamycinicus"],["NCBITaxon%3A1343740","Streptomyces rapamycinicus NRRL 5491"]]},{"id":"NCBITaxon:134536","l":"Paraburkholderia caledonica","na":1,"nb":2,"a":[["amino_acids_and_peptides/gramibactin-b.yaml","gramibactin B"]],"b":[["NCBITaxon%3A134536","Paraburkholderia caledonica"],["NCBITaxon%3A1218115","Paraburkholderia caledonica NBRC 102488"]]},{"id":"NCBITaxon:136993","l":"Methylosinus sp. LW4","na":1,"nb":2,"a":[["amino_acids_and_peptides/group-1-methanobactin.yaml","group 1 methanobactin"]],"b":[["NCBITaxon%3A427","Methylosinus sp."],["NCBITaxon%3A136993","Methylosinus sp. LW4"]]},{"id":"NCBITaxon:138282","l":"Aspergillus sclerotiorum","na":2,"nb":1,"a":[["carbohydrates/streptomycin.yaml","streptomycin"],["polyketides/doxorubicin.yaml","doxorubicin"]],"b":[["NCBITaxon%3A138282","Aspergillus sclerotiorum"]]},{"id":"NCBITaxon:138284","l":"Aspergillus sulphureus","na":2,"nb":1,"a":[["polyketides/decumbenone-c.yaml","decumbenone c"],["unclassified/penitrem-b.yaml","penitrem B"]],"b":[["NCBITaxon%3A138284","Aspergillus sulphureus"]]},{"id":"NCBITaxon:1399144","l":"Brevibacillus laterosporus PE36","na":2,"nb":1,"a":[["shikimates_and_phenylpropanoids/basiliskamide-a.yaml","Basiliskamide A"],["unclassified/basiliskamide-b.yaml","Basiliskamide B"]],"b":[["NCBITaxon%3A1399144","Brevibacillus laterosporus PE36"]]},{"id":"NCBITaxon:1406225","l":"Archangium violaceum Cb vi76","na":1,"nb":2,"a":[["polyketides/gephyronic-acid.yaml","gephyronic acid"]],"b":[["NCBITaxon%3A83451","Archangium violaceum"],["NCBITaxon%3A1406225","Archangium violaceum Cb vi76"]]},{"id":"NCBITaxon:1415555","l":"Streptomyces sp. WM6372","na":2,"nb":1,"a":[["amino_acids_and_peptides/fosfazinomycin-a.yaml","fosfazinomycin A"],["amino_acids_and_peptides/fosfazinomycin-b.yaml","fosfazinomycin B"]],"b":[["NCBITaxon%3A1415555","Streptomyces sp. WM6372"]]},{"id":"NCBITaxon:1449346","l":"Kitasatospora azatica KCTC 9699","na":1,"nb":2,"a":[["amino_acids_and_peptides/alazopeptin.yaml","alazopeptin"]],"b":[["NCBITaxon%3A58347","Kitasatospora azatica"],["NCBITaxon%3A1449346","Kitasatospora azatica KCTC 9699"]]},{"id":"NCBITaxon:1450533","l":"Aspergillus niger CBS 101883","na":2,"nb":1,"a":[["polyketides/campyrone-b.yaml","campyrone B"],["polyketides/pyrophen.yaml","pyrophen"]],"b":[["NCBITaxon%3A1450533","Aspergillus niger CBS 101883"]]},{"id":"NCBITaxon:145522","l":"Nannochloropsis oceanica","na":1,"nb":2,"a":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]],"b":[["NCBITaxon%3A145522","Nannochloropsis oceanica"],["NCBITaxon%3A1333499","Nannochloropsis oceanica strain IMET1"]]},{"id":"NCBITaxon:1460371","l":"Amycolatopsis lurida NRRL 2430","na":1,"nb":2,"a":[["amino_acids_and_peptides/ristocetin-a.yaml","Ristocetin A"]],"b":[["NCBITaxon%3A31959","Amycolatopsis lurida"],["NCBITaxon%3A1460371","Amycolatopsis lurida NRRL 2430"]]},{"id":"NCBITaxon:1463884","l":"Streptomyces sp. NRRL S-146","na":2,"nb":1,"a":[["amino_acids_and_peptides/anantin-b1.yaml","anantin B1"],["amino_acids_and_peptides/anantin-b2.yaml","anantin B2"]],"b":[["NCBITaxon%3A1463884","Streptomyces sp. NRRL S-146"]]},{"id":"NCBITaxon:146536","l":"Streptomyces curacoi","na":2,"nb":1,"a":[["amino_acids_and_peptides/curacomycin.yaml","curacomycin"],["carbohydrates/curamycin.yaml","curamycin"]],"b":[["NCBITaxon%3A146536","Streptomyces curacoi"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":1,"nb":2,"a":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]],"b":[["NCBITaxon%3A1474","Sporosarcina pasteurii"],["NCBITaxon%3A1415631","Sporosarcina pasteurii NCIM 2477"]]},{"id":"NCBITaxon:148305","l":"Pyricularia grisea","na":2,"nb":1,"a":[["alkaloids/pyrichalasin-h.yaml","pyrichalasin H"],["polyketides/terrestric-acid.yaml","terrestric acid"]],"b":[["NCBITaxon%3A148305","Pyricularia grisea"]]},{"id":"NCBITaxon:1488414","l":"Streptomyces sp. MBT84","na":2,"nb":1,"a":[["polyketides/galtamycin-c.yaml","galtamycin C"],["polyketides/galtamycin-d.yaml","galtamycin D"]],"b":[["NCBITaxon%3A1488414","Streptomyces sp. MBT84"]]},{"id":"NCBITaxon:1490225","l":"","na":1,"nb":2,"a":[["carbohydrates/kanamycin-a.yaml","kanamycin A"]],"b":[["NCBITaxon%3A768479","Cohnella boryungensis"],["NCBITaxon%3A686309","Micromonospora haikouensis"]]},{"id":"NCBITaxon:1494466","l":"Burkholderia sp. FERM BP-3421","na":2,"nb":1,"a":[["fatty_acids/fr901464.yaml","FR901464"],["unclassified/spliceostatin.yaml","spliceostatin"]],"b":[["NCBITaxon%3A1494466","Burkholderia sp. FERM BP-3421"]]},{"id":"NCBITaxon:1495638","l":"Streptomyces sp. M56","na":2,"nb":1,"a":[["polyketides/efomycin-k.yaml","efomycin K"],["polyketides/efomycin-l.yaml","efomycin L"]],"b":[["NCBITaxon%3A1495638","Streptomyces sp. M56"]]},{"id":"NCBITaxon:1497395","l":"Anabaena sp. Syke748","na":2,"nb":1,"a":[["unclassified/hassallidin-c.yaml","hassallidin C"],["unclassified/hassallidin-d.yaml","hassallidin D"]],"b":[["NCBITaxon%3A1497395","Anabaena sp. Syke748"]]},{"id":"NCBITaxon:1519471","l":"Streptomyces sp. NRRL S-4","na":2,"nb":1,"a":[["amino_acids_and_peptides/thiostreptamide-s4.yaml","thiostreptamide S4"],["polyketides/venturicidin-a.yaml","venturicidin A"]],"b":[["NCBITaxon%3A1519471","Streptomyces sp. NRRL S-4"]]},{"id":"NCBITaxon:1550035","l":"Streptomyces sp. NBRC 109706","na":2,"nb":1,"a":[["polyketides/akaeolide.yaml","akaeolide"],["polyketides/lorneic-acid-a.yaml","lorneic acid A"]],"b":[["NCBITaxon%3A1550035","Streptomyces sp. NBRC 109706"]]},{"id":"NCBITaxon:1581323","l":"Streptomyces sp. FXJ8.102","na":2,"nb":1,"a":[["polyketides/homopiloquinone.yaml","homopiloquinone"],["unclassified/piloquinone.yaml","piloquinone"]],"b":[["NCBITaxon%3A1581323","Streptomyces sp. FXJ8.102"]]},{"id":"NCBITaxon:1582798","l":"Streptomyces sp. WAC2288","na":2,"nb":1,"a":[["carbohydrates/vancosamine.yaml","vancosamine"],["polyketides/ibomycin.yaml","ibomycin"]],"b":[["NCBITaxon%3A1582798","Streptomyces sp. WAC2288"]]},{"id":"NCBITaxon:159449","l":"Embleya scabrispora","na":1,"nb":2,"a":[["unclassified/hitachimycin.yaml","hitachimycin"]],"b":[["NCBITaxon%3A159449","Embleya scabrispora"],["NCBITaxon%3A1123320","Embleya scabrispora DSM 41855"]]},{"id":"NCBITaxon:1597781","l":"Eleftheria terrae","na":2,"nb":1,"a":[["unclassified/clovibactin.yaml","clovibactin"],["unclassified/teixobactin.yaml","teixobactin"]],"b":[["NCBITaxon%3A1597781","Eleftheria terrae"]]},{"id":"NCBITaxon:161398","l":"Pseudoalteromonas phenolica","na":1,"nb":2,"a":[["shikimates_and_phenylpropanoids/bromophene.yaml","bromophene"]],"b":[["NCBITaxon%3A161398","Pseudoalteromonas phenolica"],["NCBITaxon%3A1315281","Pseudoalteromonas phenolica O-BC30"]]},{"id":"NCBITaxon:1630013","l":"uncultured bacterium AR_412","na":2,"nb":1,"a":[["amino_acids_and_peptides/landepoxcin-a.yaml","landepoxcin A"],["amino_acids_and_peptides/landepoxcin-b.yaml","landepoxcin B"]],"b":[["NCBITaxon%3A1630013","uncultured bacterium AR_412"]]},{"id":"NCBITaxon:1652106","l":"Candidatus Entotheonella serta","na":2,"nb":1,"a":[["amino_acids_and_peptides/theonellamide.yaml","theonellamide"],["polyketides/misakinolide-a.yaml","misakinolide A"]],"b":[["NCBITaxon%3A1652106","Candidatus Entotheonella serta"]]},{"id":"NCBITaxon:1653203","l":"Streptomyces conglobatus","na":2,"nb":1,"a":[["polyketides/conglobatin.yaml","conglobatin"],["unclassified/neoantimycin.yaml","neoantimycin"]],"b":[["NCBITaxon%3A1653203","Streptomyces conglobatus"]]},{"id":"NCBITaxon:1676287","l":"Streptomyces sp. LC-6-2","na":2,"nb":1,"a":[["polyketides/abyssomicin-w.yaml","abyssomicin W"],["polyketides/abyssomicin-x.yaml","abyssomicin X"]],"b":[["NCBITaxon%3A1676287","Streptomyces sp. LC-6-2"]]},{"id":"NCBITaxon:1676613","l":"Actinomadura sp. ATCC 39365","na":2,"nb":1,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["carbohydrates/2-chloropentostatin.yaml","2'-chloropentostatin"]],"b":[["NCBITaxon%3A1676613","Actinomadura sp. ATCC 39365"]]},{"id":"NCBITaxon:1679164","l":"Cystobacter sp. Cbv34","na":2,"nb":1,"a":[["unclassified/cystobactamid-919-1.yaml","cystobactamid 919-1"],["unclassified/cystobactamid-919-2.yaml","cystobactamid 919-2"]],"b":[["NCBITaxon%3A1679164","Cystobacter sp. Cbv34"]]},{"id":"NCBITaxon:1703928","l":"Streptomyces sp. CB00072","na":2,"nb":1,"a":[["polyketides/thioangucycline-a.yaml","thioangucycline A"],["polyketides/thioangucycline-b.yaml","thioangucycline B"]],"b":[["NCBITaxon%3A1703928","Streptomyces sp. CB00072"]]},{"id":"NCBITaxon:1703935","l":"Streptomyces sp. CB02366","na":2,"nb":1,"a":[["polyketides/c-1027-2.yaml","C-1027"],["polyketides/c-1027-chromophore.yaml","C-1027 chromophore"]],"b":[["NCBITaxon%3A1703935","Streptomyces sp. CB02366"]]},{"id":"NCBITaxon:1707701","l":"Phoma sp.","na":2,"nb":1,"a":[["unclassified/bii-rafflesfungin.yaml","BII-rafflesfungin"],["unclassified/eupenifeldin.yaml","eupenifeldin"]],"b":[["NCBITaxon%3A1707701","Phoma sp."]]},{"id":"NCBITaxon:173560","l":"Saccharothrix algeriensis","na":2,"nb":1,"a":[["alkaloids/holomycin.yaml","holomycin"],["alkaloids/thiolutin.yaml","thiolutin"]],"b":[["NCBITaxon%3A173560","Saccharothrix algeriensis"]]},{"id":"NCBITaxon:177969","l":"Oscillatoria brevis","na":1,"nb":2,"a":[["terpenoids/geosmin.yaml","(−)-geosmin"]],"b":[["NCBITaxon%3A177969","Oscillatoria brevis"],["NCBITaxon%3A2832502","Oscillatoria brevis SH-12"]]},{"id":"NCBITaxon:1799151","l":"Streptomyces sp. RI-77","na":2,"nb":1,"a":[["polyketides/jbir-76.yaml","JBIR-76"],["polyketides/jbir-77.yaml","JBIR-77"]],"b":[["NCBITaxon%3A1799151","Streptomyces sp. RI-77"]]},{"id":"NCBITaxon:182096","l":"Aspergillus chevalieri","na":2,"nb":1,"a":[["polyketides/flavoglaucin.yaml","flavoglaucin"],["polyketides/sterigmatocystin.yaml","sterigmatocystin"]],"b":[["NCBITaxon%3A182096","Aspergillus chevalieri"]]},{"id":"NCBITaxon:1840610","l":"Streptomyces sp. FJS31-2","na":2,"nb":1,"a":[["polyketides/be-24566b.yaml","BE-24566B"],["polyketides/zunyimycin-a.yaml","zunyimycin A"]],"b":[["NCBITaxon%3A1840610","Streptomyces sp. FJS31-2"]]},{"id":"NCBITaxon:1866","l":"Actinoplanes missouriensis","na":1,"nb":2,"a":[["polyketides/fogacin-2.yaml","fogacin"]],"b":[["NCBITaxon%3A1866","Actinoplanes missouriensis"],["NCBITaxon%3A512565","Actinoplanes missouriensis 431"]]},{"id":"NCBITaxon:1885894","l":"Xanthomonas cannabis pv. cannabis","na":2,"nb":1,"a":[["fatty_acids/spliceostatin-l.yaml","spliceostatin L"],["polyketides/spliceostatin-m.yaml","spliceostatin M"]],"b":[["NCBITaxon%3A1885894","Xanthomonas cannabis pv. cannabis"]]},{"id":"NCBITaxon:1898","l":"","na":1,"nb":2,"a":[["unclassified/cacaoidin.yaml","cacaoidin"]],"b":[["NCBITaxon%3A249586","Streptomyces asoensis"],["NCBITaxon%3A1898","Streptomyces cacaoi"]]},{"id":"NCBITaxon:1900","l":"","na":2,"nb":1,"a":[["alkaloids/endophenazine-a.yaml","endophenazine A"],["polyketides/monensin.yaml","monensin"]],"b":[["NCBITaxon%3A1961","Streptomyces virginiae"]]},{"id":"NCBITaxon:1903","l":"Streptomyces corchorusii","na":2,"nb":1,"a":[["polyketides/resistoflavine.yaml","resistoflavine"],["polyketides/resistomycin.yaml","resistomycin"]],"b":[["NCBITaxon%3A1903","Streptomyces corchorusii"]]},{"id":"NCBITaxon:1904044","l":"Streptomyces sp. ZS0098","na":2,"nb":1,"a":[["amino_acids_and_peptides/aborycin-2.yaml","aborycin"],["amino_acids_and_peptides/aborycin.yaml","aborycin"]],"b":[["NCBITaxon%3A1904044","Streptomyces sp. ZS0098"]]},{"id":"NCBITaxon:1912612","l":"Streptomyces sp. KIB-H033","na":2,"nb":1,"a":[["polyketides/rubrolone-a.yaml","rubrolone A"],["polyketides/rubrolone-b.yaml","rubrolone B"]],"b":[["NCBITaxon%3A1912612","Streptomyces sp. KIB-H033"]]},{"id":"NCBITaxon:1921","l":"Streptomyces olivaceoviridis","na":2,"nb":1,"a":[["polyketides/resistoflavine.yaml","resistoflavine"],["polyketides/resistomycin.yaml","resistomycin"]],"b":[["NCBITaxon%3A1921","Streptomyces olivaceoviridis"]]},{"id":"NCBITaxon:1929948","l":"Nostoc sp. UIC 10110","na":2,"nb":1,"a":[["polyketides/merocyclophane-c.yaml","merocyclophane C"],["polyketides/merocyclophane-d.yaml","merocyclophane D"]],"b":[["NCBITaxon%3A1929948","Nostoc sp. UIC 10110"]]},{"id":"NCBITaxon:1934374","l":"Collariella virescens","na":2,"nb":1,"a":[["polyketides/sterigmatocystin.yaml","sterigmatocystin"],["unclassified/chaetocin.yaml","chaetocin"]],"b":[["NCBITaxon%3A1934374","Achaetomiella virescens"]]},{"id":"NCBITaxon:1937528","l":"[Flexibacter] sp. ATCC 35103","na":1,"nb":2,"a":[["amino_acids_and_peptides/aztreonam.yaml","aztreonam"]],"b":[["NCBITaxon%3A1005","Flexibacter sp."],["NCBITaxon%3A1937528","[Flexibacter] sp. ATCC 35103"]]},{"id":"NCBITaxon:1946","l":"Streptomyces kasugaensis","na":2,"nb":1,"a":[["alkaloids/thiolutin.yaml","thiolutin"],["carbohydrates/kasugamycin.yaml","kasugamycin"]],"b":[["NCBITaxon%3A1946","Streptomyces kasugaensis"]]},{"id":"NCBITaxon:1948","l":"Streptomyces longisporus","na":1,"nb":2,"a":[["alkaloids/undecylprodigiosin-2.yaml","undecylprodigiosin"]],"b":[["NCBITaxon%3A1948","Streptomyces longisporus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:1962669","l":"Kibdelosporangium sp. AK-AA56","na":2,"nb":1,"a":[["amino_acids_and_peptides/jbir-78.yaml","JBIR-78"],["amino_acids_and_peptides/jbir-95.yaml","JBIR-95"]],"b":[["NCBITaxon%3A1962669","Kibdelosporangium sp. AK-AA56"]]},{"id":"NCBITaxon:1962685","l":"Hormoscilla spongeliae SP4","na":2,"nb":1,"a":[["shikimates_and_phenylpropanoids/2-4-dibromo-6-2-4-dibromophenoxy-phenol.yaml","2,4-dibromo-6-(2,4-dibromophenoxy)phenol"],["shikimates_and_phenylpropanoids/3-5-dibromo-2-2-4-dibromophenoxy-phenol.yaml","3,5-dibromo-2-(2,4-dibromophenoxy)phenol"]],"b":[["NCBITaxon%3A1962685","Hormoscilla spongeliae SP4"]]},{"id":"NCBITaxon:1968","l":"Streptomyces cellulosae","na":2,"nb":1,"a":[["polyketides/14-hydroxyisochainin.yaml","14-hydroxyisochainin"],["polyketides/pentamycin-2.yaml","pentamycin"]],"b":[["NCBITaxon%3A1968","Streptomyces cellulosae"]]},{"id":"NCBITaxon:1970","l":"Streptomyces morookaense","na":1,"nb":2,"a":[["carbohydrates/blasticidin-s.yaml","blasticidin S"]],"b":[["NCBITaxon%3A68176","Streptomyces aspergilloides"],["NCBITaxon%3A1970","Streptomyces morookaense"]]},{"id":"NCBITaxon:1977088","l":"Streptomyces ficellus","na":1,"nb":2,"a":[["amino_acids_and_peptides/ficellomycin.yaml","Ficellomycin"]],"b":[["NCBITaxon%3A1977088","Streptomyces ficellus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:1982764","l":"Streptomyces sp. CS057","na":2,"nb":1,"a":[["polyketides/warkmycin-cs1.yaml","warkmycin CS1"],["polyketides/warkmycin-cs2.yaml","warkmycin CS2"]],"b":[["NCBITaxon%3A1982764","Streptomyces sp. CS057"]]},{"id":"NCBITaxon:1984801","l":"Streptomyces sp. CLI2509","na":2,"nb":1,"a":[["amino_acids_and_peptides/tryptorubin-a.yaml","Tryptorubin A"],["amino_acids_and_peptides/tryptorubin-b.yaml","Tryptorubin B"]],"b":[["NCBITaxon%3A1984801","Streptomyces sp. CLI2509"]]},{"id":"NCBITaxon:198730","l":"Talaromyces verruculosus","na":2,"nb":1,"a":[["polyketides/verrucosidin.yaml","verrucosidin"],["unclassified/chrodrimanin-b.yaml","chrodrimanin B"]],"b":[["NCBITaxon%3A198730","Talaromyces verruculosus"]]},{"id":"NCBITaxon:1990","l":"Actinomadura atramentaria","na":1,"nb":2,"a":[["amino_acids_and_peptides/matlystatin-a.yaml","matlystatin A"]],"b":[["NCBITaxon%3A1990","Actinomadura atramentaria"],["NCBITaxon%3A1120936","Actinomadura atramentaria DSM 43919"]]},{"id":"NCBITaxon:199310","l":"Escherichia coli O6:H1 (strain CFT073 / ATCC 700928 / UPEC)","na":1,"nb":2,"a":[["unclassified/ape-ec.yaml","APE Ec"]],"b":[["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A199310","Escherichia coli CFT073"]]},{"id":"NCBITaxon:2008351","l":"Micromonospora chalcea subsp. izumensis","na":1,"nb":2,"a":[["polyketides/tylactone.yaml","tylactone"]],"b":[["NCBITaxon%3A2008351","Micromonospora chalcea subsp. izumensis"],["NCBITaxon%3A1876","Micromonospora sp."]]},{"id":"NCBITaxon:2012863","l":"Pyxidicoccus sp. MCy9557","na":2,"nb":1,"a":[["polyketides/pyxipyrrolone-a.yaml","pyxipyrrolone A"],["polyketides/pyxipyrrolone-b.yaml","pyxipyrrolone B"]],"b":[["NCBITaxon%3A2012863","Pyxidicoccus sp. MCy9557"]]},{"id":"NCBITaxon:2028102","l":"","na":2,"nb":1,"a":[["amino_acids_and_peptides/biarylitide-yfh.yaml","biarylitide YFH"],["amino_acids_and_peptides/biarylitide-yyh.yaml","biarylitide YYH"]],"b":[["NCBITaxon%3A2028102","Planomonospora sp."]]},{"id":"NCBITaxon:203275","l":"Tannerella forsythia 92A2","na":1,"nb":2,"a":[["carbohydrates/legionaminic-acid.yaml","legionaminic acid"]],"b":[["NCBITaxon%3A28112","Tannerella forsythia"],["NCBITaxon%3A203275","Tannerella forsythia 92A2"]]},{"id":"NCBITaxon:2041","l":"Aeromicrobium erythreum","na":1,"nb":2,"a":[["polyketides/erythromycin-a.yaml","erythromycin A"]],"b":[["NCBITaxon%3A2041","Aeromicrobium erythreum"],["NCBITaxon%3A31956","Aeromicrobium erythreum (NRRL B-3381)"]]},{"id":"NCBITaxon:204925","l":"Streptomyces nanchangensis","na":2,"nb":1,"a":[["polyketides/meilingmycin.yaml","meilingmycin"],["polyketides/nanchangmycin.yaml","nanchangmycin"]],"b":[["NCBITaxon%3A204925","Streptomyces nanchangensis"]]},{"id":"NCBITaxon:205918","l":"Pseudomonas syringae pv. syringae B728a","na":2,"nb":1,"a":[["alkaloids/secimide.yaml","secimide"],["unclassified/syringomycin.yaml","syringomycin"]],"b":[["NCBITaxon%3A205918","Pseudomonas syringae pv. syringae B728a"]]},{"id":"NCBITaxon:208441","l":"Amycolatopsis decaplanina","na":1,"nb":2,"a":[["amino_acids_and_peptides/decaplanin.yaml","decaplanin"]],"b":[["NCBITaxon%3A208441","Amycolatopsis decaplanina"],["NCBITaxon%3A1284240","Amycolatopsis decaplanina DSM 44594"]]},{"id":"NCBITaxon:208442","l":"Amycolatopsis keratiniphila subsp. nogabecina","na":1,"nb":2,"a":[["amino_acids_and_peptides/actinoidin-b.yaml","Actinoidin B"]],"b":[["NCBITaxon%3A129921","Amycolatopsis keratiniphila"],["NCBITaxon%3A208442","Amycolatopsis keratiniphila subsp. nogabecina"]]},{"id":"NCBITaxon:210993","l":"Fischerella major","na":1,"nb":2,"a":[["unclassified/n-methylwelwitindolinone-c-isothiocyanate.yaml","N-methylwelwitindolinone C isothiocyanate"]],"b":[["NCBITaxon%3A210993","Fischerella major"],["NCBITaxon%3A210994","Fischerella major NIES-592"]]},{"id":"NCBITaxon:212423","l":"Streptomyces kaniharaensis","na":2,"nb":1,"a":[["alkaloids/formycin-a.yaml","formycin A"],["carbohydrates/coformycin.yaml","coformycin"]],"b":[["NCBITaxon%3A212423","Streptomyces kaniharaensis"]]},{"id":"NCBITaxon:212427","l":"Streptomyces citricolor","na":2,"nb":1,"a":[["carbohydrates/aristeromycin.yaml","aristeromycin"],["carbohydrates/gougerotin.yaml","gougerotin"]],"b":[["NCBITaxon%3A212427","Streptomyces citricolor"]]},{"id":"NCBITaxon:213624","l":"Planktothrix agardhii NIVA-CYA 126","na":2,"nb":1,"a":[["amino_acids_and_peptides/aeruginoside-126a.yaml","aeruginoside 126A"],["amino_acids_and_peptides/aeruginoside-126b.yaml","aeruginoside 126B"]],"b":[["NCBITaxon%3A213624","Planktothrix agardhii NIVA-CYA 126"]]},{"id":"NCBITaxon:2201999","l":"Micromonospora sp. B006","na":2,"nb":1,"a":[["alkaloids/diazaquinomycin-h.yaml","diazaquinomycin H"],["alkaloids/diazaquinomycin-j.yaml","diazaquinomycin J"]],"b":[["NCBITaxon%3A2201999","Micromonospora sp. B006"]]},{"id":"NCBITaxon:223296","l":"Streptomyces refuineus","na":1,"nb":2,"a":[["alkaloids/anthramycin.yaml","anthramycin"]],"b":[["NCBITaxon%3A223296","Streptomyces refuineus"],["NCBITaxon%3A223297","Streptomyces refuineus subsp. thermotolerans"]]},{"id":"NCBITaxon:223297","l":"Streptomyces refuineus subsp. thermotolerans","na":1,"nb":2,"a":[["alkaloids/anthramycin.yaml","anthramycin"]],"b":[["NCBITaxon%3A223296","Streptomyces refuineus"],["NCBITaxon%3A223297","Streptomyces refuineus subsp. thermotolerans"]]},{"id":"NCBITaxon:226900","l":"","na":1,"nb":2,"a":[["amino_acids_and_peptides/thiocillin-i.yaml","thiocillin I"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A226900","Bacillus cereus ATCC 14579"]]},{"id":"NCBITaxon:230091","l":"Micromonospora endolithica","na":2,"nb":1,"a":[["polyketides/loseolamycin-a1.yaml","loseolamycin A1"],["polyketides/loseolamycin-a2.yaml","loseolamycin A2"]],"b":[["NCBITaxon%3A230091","Micromonospora endolithica"]]},{"id":"NCBITaxon:2303153","l":"Anabaena minutissima UTEX B 1613","na":2,"nb":1,"a":[["amino_acids_and_peptides/minutissamide-a.yaml","minutissamide A"],["amino_acids_and_peptides/minutissamide-b.yaml","minutissamide B"]],"b":[["NCBITaxon%3A2303153","Anabaena minutissima UTEX B 1613"]]},{"id":"NCBITaxon:234621","l":"Rhodococcus erythropolis PR4","na":2,"nb":1,"a":[["amino_acids_and_peptides/heterobactin-a.yaml","heterobactin A"],["amino_acids_and_peptides/heterobactin-s2.yaml","heterobactin S2"]],"b":[["NCBITaxon%3A234621","Rhodococcus erythropolis PR4"]]},{"id":"NCBITaxon:243277","l":"Vibrio cholerae serotype O1 (strain ATCC 39315 / El Tor Inaba N16961)","na":1,"nb":2,"a":[["alkaloids/vibriobactin-2.yaml","vibriobactin"]],"b":[["NCBITaxon%3A666","Vibrio cholerae"],["NCBITaxon%3A243277","Vibrio cholerae O1 biovar El Tor str. N16961"]]},{"id":"NCBITaxon:247156","l":"Nocardia farcinica IFM 10152","na":2,"nb":1,"a":[["amino_acids_and_peptides/nocobactin-na.yaml","nocobactin NA"],["unclassified/nocobactin-na-10152b.yaml","nocobactin NA 10152B"]],"b":[["NCBITaxon%3A247156","Nocardia farcinica IFM 10152"]]},{"id":"NCBITaxon:249586","l":"","na":2,"nb":1,"a":[["carbohydrates/polyoxin-a.yaml","polyoxin A"],["carbohydrates/polyoxin-h.yaml","polyoxin H"]],"b":[["NCBITaxon%3A249586","Streptomyces asoensis"]]},{"id":"NCBITaxon:257985","l":"Bacillus thuringiensis serovar andalousiensis","na":1,"nb":2,"a":[["unclassified/andalusicin-a.yaml","andalusicin A"]],"b":[["NCBITaxon%3A257985","Bacillus thuringiensis serovar andalousiensis"],["NCBITaxon%3A527032","Bacillus thuringiensis serovar andalousiensis BGSC 4AW1"]]},{"id":"NCBITaxon:2582783","l":"Aspergillus nanangensis","na":2,"nb":1,"a":[["alkaloids/nanangelenin-b.yaml","nanangelenin B"],["terpenoids/nanangelenin-a.yaml","nanangelenin A"]],"b":[["NCBITaxon%3A2582783","Aspergillus nanangensis"]]},{"id":"NCBITaxon:2586640","l":"Streptomyces novoguineensis","na":2,"nb":1,"a":[["unclassified/amipurimycin-2.yaml","amipurimycin"],["unclassified/amipurimycin.yaml","amipurimycin"]],"b":[["NCBITaxon%3A2586640","Streptomyces novoguineensis"]]},{"id":"NCBITaxon:262324","l":"Lysobacter gummosus","na":1,"nb":2,"a":[["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"]],"b":[["NCBITaxon%3A262324","Lysobacter gummosus"],["NCBITaxon%3A1138170","Rhizobium aethiopicum"]]},{"id":"NCBITaxon:264024","l":"Streptomyces sp. SCC 2136","na":2,"nb":1,"a":[["polyketides/sch-47554.yaml","Sch-47554"],["polyketides/sch-47555.yaml","Sch-47555"]],"b":[["NCBITaxon%3A264024","Streptomyces sp. SCC 2136"]]},{"id":"NCBITaxon:2653857","l":"Amycolatopsis sp. YIM 10","na":2,"nb":1,"a":[["amino_acids_and_peptides/felipeptin-a1.yaml","felipeptin A1"],["amino_acids_and_peptides/felipeptin-a2.yaml","felipeptin A2"]],"b":[["NCBITaxon%3A2653857","Amycolatopsis sp. YIM 10"]]},{"id":"NCBITaxon:265726","l":"Photobacterium halotolerans","na":1,"nb":2,"a":[["alkaloids/holomycin.yaml","holomycin"]],"b":[["NCBITaxon%3A265726","Photobacterium halotolerans"],["NCBITaxon%3A1122959","Photobacterium halotolerans DSM 18316"]]},{"id":"NCBITaxon:2662259","l":"Pseudomonas sp. SZ57","na":2,"nb":1,"a":[["amino_acids_and_peptides/syringafactin-a.yaml","syringafactin A"],["amino_acids_and_peptides/syringafactin-c.yaml","syringafactin C"]],"b":[["NCBITaxon%3A2662259","Pseudomonas sp. SZ57"]]},{"id":"NCBITaxon:2665154","l":"Nostoc sp. UHCC-0398","na":2,"nb":1,"a":[["amino_acids_and_peptides/muscoride-a.yaml","muscoride A"],["unclassified/muscoride-b.yaml","muscoride B"]],"b":[["NCBITaxon%3A2665154","Nostoc sp. UHCC-0398"]]},{"id":"NCBITaxon:267747","l":"Cutibacterium acnes KPA171202","na":1,"nb":2,"a":[["amino_acids_and_peptides/cutimycin.yaml","cutimycin"]],"b":[["NCBITaxon%3A1747","Cutibacterium acnes"],["NCBITaxon%3A267747","Cutibacterium acnes KPA171202"]]},{"id":"NCBITaxon:2719566","l":"Streptomyces hygrospinosus subsp. beijingensis","na":2,"nb":1,"a":[["alkaloids/anisomycin.yaml","(−)-anisomycin"],["polyketides/tetramycin-b.yaml","tetramycin B"]],"b":[["NCBITaxon%3A2719566","Streptomyces hygrospinosus subsp. beijingensis"]]},{"id":"NCBITaxon:272559","l":"","na":1,"nb":2,"a":[["fatty_acids/galactosylceramide.yaml","α-galactosylceramide"]],"b":[["NCBITaxon%3A817","Bacteroides fragilis"],["NCBITaxon%3A272559","Bacteroides fragilis NCTC 9343"]]},{"id":"NCBITaxon:27337","l":"Verticillium dahliae","na":2,"nb":1,"a":[["polyketides/flaviolin.yaml","flaviolin"],["polyketides/scytalone.yaml","scytalone"]],"b":[["NCBITaxon%3A27337","Verticillium dahliae"]]},{"id":"NCBITaxon:2742134","l":"Streptomyces sp. NA03103","na":2,"nb":1,"a":[["unclassified/ashimide-a.yaml","ashimide A"],["unclassified/ashimide-b.yaml","ashimide B"]],"b":[["NCBITaxon%3A2742134","Streptomyces sp. NA03103"]]},{"id":"NCBITaxon:2747968","l":"Fusarium vanettenii","na":1,"nb":2,"a":[["polyketides/bikaverin.yaml","bikaverin"]],"b":[["NCBITaxon%3A2747968","Fusarium vanettenii"],["NCBITaxon%3A660122","Fusarium vanettenii 77-13-4"]]},{"id":"NCBITaxon:2802641","l":"Kutzneria sp. CA-103260","na":2,"nb":1,"a":[["polyketides/epemicin-a.yaml","epemicin A"],["polyketides/epemicin-b.yaml","epemicin B"]],"b":[["NCBITaxon%3A2802641","Kutzneria sp. CA-103260"]]},{"id":"NCBITaxon:282216","l":"Streptomyces lividus","na":2,"nb":1,"a":[["alkaloids/staurosporine-2.yaml","staurosporine"],["carbohydrates/lividomycin-a.yaml","lividomycin A"]],"b":[["NCBITaxon%3A282216","Streptomyces lividus"]]},{"id":"NCBITaxon:285219","l":"Streptomyces sp. KO-3988","na":2,"nb":1,"a":[["polyketides/furaquinocin-b.yaml","furaquinocin B"],["terpenoids/viguiepinol.yaml","viguiepinol"]],"b":[["NCBITaxon%3A285219","Streptomyces sp. KO-3988"]]},{"id":"NCBITaxon:285454","l":"Streptomyces anandii","na":1,"nb":2,"a":[["polyketides/gilvocarcin-v.yaml","gilvocarcin V"]],"b":[["NCBITaxon%3A285454","Streptomyces anandii"],["NCBITaxon%3A1306180","Streptomyces anandii JCM 4720"]]},{"id":"NCBITaxon:285508","l":"Streptomyces piomogenus","na":2,"nb":1,"a":[["alkaloids/fumigaclavine-c.yaml","fumigaclavine C"],["polyketides/piericidin-a.yaml","piericidin A"]],"b":[["NCBITaxon%3A285508","Streptomyces piomogenus"]]},{"id":"NCBITaxon:285515","l":"Streptomyces albospinus","na":1,"nb":2,"a":[["alkaloids/physostigmine.yaml","physostigmine"]],"b":[["NCBITaxon%3A285515","Streptomyces albospinus"],["NCBITaxon%3A68237","Streptomyces mediolani"]]},{"id":"NCBITaxon:285527","l":"Streptomyces hygroscopicus subsp. duamyceticus","na":1,"nb":2,"a":[["polyketides/geldanamycin.yaml","geldanamycin"]],"b":[["NCBITaxon%3A1912","Streptomyces hygroscopicus"],["NCBITaxon%3A285527","Streptomyces hygroscopicus subsp. duamyceticus"]]},{"id":"NCBITaxon:285551","l":"Streptomyces paulus","na":1,"nb":2,"a":[["carbohydrates/paulomycin.yaml","paulomycin"]],"b":[["NCBITaxon%3A285551","Streptomyces paulus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:285578","l":"Streptomyces angustmyceticus","na":2,"nb":1,"a":[["carbohydrates/angustmycin-a.yaml","angustmycin A"],["carbohydrates/angustmycin-c.yaml","angustmycin C"]],"b":[["NCBITaxon%3A285578","Streptomyces angustmyceticus"]]},{"id":"NCBITaxon:29001","l":"Alternaria brassicicola","na":2,"nb":1,"a":[["fatty_acids/depudecin.yaml","depudecin"],["terpenoids/brassicicene-c.yaml","brassicicene C"]],"b":[["NCBITaxon%3A29001","Alternaria brassicicola"]]},{"id":"NCBITaxon:290112","l":"Xenorhabdus szentirmaii","na":1,"nb":2,"a":[["alkaloids/pyrrolizixenamide-a.yaml","pyrrolizixenamide A"]],"b":[["NCBITaxon%3A290112","Xenorhabdus szentirmaii"],["NCBITaxon%3A1427518","Xenorhabdus szentirmaii DSM 16338"]]},{"id":"NCBITaxon:29305","l":"Streptomyces griseoincarnatus","na":2,"nb":1,"a":[["polyketides/grincamycin.yaml","grincamycin"],["polyketides/resistomycin.yaml","resistomycin"]],"b":[["NCBITaxon%3A29305","Streptomyces griseoincarnatus"]]},{"id":"NCBITaxon:293381","l":"Penicillium bialowiezense CBS 227.28","na":2,"nb":1,"a":[["terpenoids/brevione-e.yaml","brevione E"],["terpenoids/isobrevione-e.yaml","isobrevione E"]],"b":[["NCBITaxon%3A293381","Penicillium bialowiezense"]]},{"id":"NCBITaxon:29447","l":"Xanthomonas albilineans","na":1,"nb":2,"a":[["alkaloids/albicidin.yaml","albicidin"]],"b":[["NCBITaxon%3A29447","Xanthomonas albilineans"],["NCBITaxon%3A380358","Xanthomonas albilineans GPE PC73"]]},{"id":"NCBITaxon:29486","l":"Yersinia ruckeri","na":1,"nb":2,"a":[["alkaloids/holomycin.yaml","holomycin"]],"b":[["NCBITaxon%3A29486","Yersinia ruckeri"],["NCBITaxon%3A527005","Yersinia ruckeri ATCC 29473"]]},{"id":"NCBITaxon:29829","l":"Lipomyces starkeyi","na":1,"nb":2,"a":[["alkaloids/biotin.yaml","biotin"]],"b":[["NCBITaxon%3A29829","Lipomyces starkeyi"],["NCBITaxon%3A675824","Lipomyces starkeyi NRRL Y-11557"]]},{"id":"NCBITaxon:29852","l":"Hypomyces aurantius","na":2,"nb":1,"a":[["alkaloids/cj-15-696.yaml","CJ-15,696"],["alkaloids/cj-16-173.yaml","CJ-16,173"]],"b":[["NCBITaxon%3A29852","Hypomyces aurantius"]]},{"id":"NCBITaxon:29910","l":"Tolypocladium inflatum","na":2,"nb":1,"a":[["amino_acids_and_peptides/cyclosporin-a.yaml","cyclosporin A"],["terpenoids/aphidicolin.yaml","aphidicolin"]],"b":[["NCBITaxon%3A1086729","Tolypocladium inflatum NRRL8044"]]},{"id":"NCBITaxon:312720","l":"Streptomyces cheonanensis","na":2,"nb":1,"a":[["unclassified/ohmyungsamycin-a.yaml","ohmyungsamycin A"],["unclassified/ohmyungsamycin-b.yaml","ohmyungsamycin B"]],"b":[["NCBITaxon%3A312720","Streptomyces cheonanensis"]]},{"id":"NCBITaxon:3158555","l":"","na":1,"nb":2,"a":[["amino_acids_and_peptides/nostophycin.yaml","nostophycin"]],"b":[["NCBITaxon%3A3399526","Kaarinaea lacus"],["NCBITaxon%3A3158555","Kaarinaea lacus PCC 9237"]]},{"id":"NCBITaxon:337066","l":"Streptomyces albus subsp. chlorinus","na":2,"nb":1,"a":[["alkaloids/nybomycin.yaml","nybomycin"],["unclassified/dudomycin-a.yaml","dudomycin A"]],"b":[["NCBITaxon%3A337066","Streptomyces albus subsp. chlorinus"]]},{"id":"NCBITaxon:339670","l":"Burkholderia ambifaria AMMD","na":2,"nb":1,"a":[["alkaloids/cepaciachelin.yaml","cepaciachelin"],["polyketides/enacyloxin-iia.yaml","enacyloxin IIa"]],"b":[["NCBITaxon%3A339670","Burkholderia ambifaria AMMD"]]},{"id":"NCBITaxon:34058","l":"Methylobacter marinus","na":1,"nb":2,"a":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]],"b":[["NCBITaxon%3A34058","Methylobacter marinus"],["NCBITaxon%3A674036","Methylobacter marinus A45"]]},{"id":"NCBITaxon:34399","l":"Phomopsis","na":2,"nb":1,"a":[["polyketides/phomopsin-a.yaml","phomopsin A"],["polyketides/phomopsin-b.yaml","phomopsin B"]],"b":[["NCBITaxon%3A1715245","Phomopsis sp."]]},{"id":"NCBITaxon:347834","l":"Rhizobium etli (strain ATCC 51251 / DSM 11541 / JCM 21823 / NBRC 15573 / CFN 42)","na":1,"nb":2,"a":[["amino_acids_and_peptides/vicibactin.yaml","vicibactin"]],"b":[["NCBITaxon%3A29449","Rhizobium etli"],["NCBITaxon%3A347834","Rhizobium etli CFN 42"]]},{"id":"NCBITaxon:349521","l":"Hahella chejuensis KCTC 2396","na":1,"nb":2,"a":[["alkaloids/prodigiosin-2.yaml","prodigiosin"]],"b":[["NCBITaxon%3A158327","Hahella chejuensis"],["NCBITaxon%3A349521","Hahella chejuensis KCTC 2396"]]},{"id":"NCBITaxon:349966","l":"Yersinia frederiksenii ATCC 33641","na":1,"nb":2,"a":[["unclassified/frederiksenibactin.yaml","frederiksenibactin"]],"b":[["NCBITaxon%3A29484","Yersinia frederiksenii"],["NCBITaxon%3A349966","Yersinia frederiksenii ATCC 33641"]]},{"id":"NCBITaxon:357447","l":"Aspergillus westerdijkiae","na":2,"nb":1,"a":[["polyketides/asperlactone.yaml","asperlactone"],["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"]],"b":[["NCBITaxon%3A357447","Aspergillus westerdijkiae"]]},{"id":"NCBITaxon:35754","l":"Dactylosporangium aurantiacum","na":1,"nb":2,"a":[["polyketides/tiacumicin-b.yaml","tiacumicin B"]],"b":[["NCBITaxon%3A35754","Dactylosporangium aurantiacum"],["NCBITaxon%3A703577","Dactylosporangium aurantiacum subsp. hamdenensis"]]},{"id":"NCBITaxon:358823","l":"Streptomyces olindensis","na":2,"nb":1,"a":[["polyketides/carotenoid.yaml","carotenoid"],["polyketides/cosmomycin-d.yaml","cosmomycin D"]],"b":[["NCBITaxon%3A358823","Streptomyces olindensis"]]},{"id":"NCBITaxon:359131","l":"Streptomyces rubellomurinus","na":1,"nb":2,"a":[["unclassified/fr-900098.yaml","FR-900098"]],"b":[["NCBITaxon%3A359131","Streptomyces rubellomurinus"],["NCBITaxon%3A1615590","Streptomyces rubellomurinus subsp. indigoferus"]]},{"id":"NCBITaxon:360709","l":"Streptomyces qinlingensis","na":2,"nb":1,"a":[["carbohydrates/streptothricin-d.yaml","streptothricin D"],["carbohydrates/streptothricin-f.yaml","streptothricin F"]],"b":[["NCBITaxon%3A360709","Streptomyces qinlingensis"]]},{"id":"NCBITaxon:36645","l":"Penicillium miczynskii","na":2,"nb":1,"a":[["polyketides/citreoviridin.yaml","citreoviridin"],["unclassified/paxilline.yaml","paxilline"]],"b":[["NCBITaxon%3A36645","Penicillium miczynskii"]]},{"id":"NCBITaxon:36873","l":"Paraburkholderia xenovorans","na":1,"nb":2,"a":[["unclassified/malleobactin-x.yaml","malleobactin X"]],"b":[["NCBITaxon%3A36873","Paraburkholderia xenovorans"],["NCBITaxon%3A266265","Paraburkholderia xenovorans LB400"]]},{"id":"NCBITaxon:376686","l":"","na":1,"nb":2,"a":[["polyketides/flexirubin.yaml","flexirubin"]],"b":[["NCBITaxon%3A986","Flavobacterium johnsoniae"],["NCBITaxon%3A376686","Flavobacterium johnsoniae UW101"]]},{"id":"NCBITaxon:381666","l":"Cupriavidus necator H16","na":1,"nb":2,"a":[["amino_acids_and_peptides/cupriachelin.yaml","cupriachelin"]],"b":[["NCBITaxon%3A106590","Cupriavidus necator"],["NCBITaxon%3A381666","Cupriavidus necator H16"]]},{"id":"NCBITaxon:385492","l":"Pseudophaeobacter arcticus","na":1,"nb":2,"a":[["amino_acids_and_peptides/phaeornamide.yaml","phaeornamide"]],"b":[["NCBITaxon%3A385492","Pseudophaeobacter arcticus"],["NCBITaxon%3A999550","Pseudophaeobacter arcticus DSM 23566"]]},{"id":"NCBITaxon:391936","l":"Isoalcanivorax pacificus W11-5","na":1,"nb":2,"a":[["amino_acids_and_peptides/pacifibactin.yaml","pacifibactin"]],"b":[["NCBITaxon%3A1306787","Isoalcanivorax pacificus"],["NCBITaxon%3A391936","Isoalcanivorax pacificus W11-5"]]},{"id":"NCBITaxon:394095","l":"Pyxidicoccus fallax","na":2,"nb":1,"a":[["polyketides/gulmirecin-a.yaml","gulmirecin A"],["unclassified/myxarylin.yaml","Myxarylin"]],"b":[["NCBITaxon%3A394095","Pyxidicoccus fallax"]]},{"id":"NCBITaxon:394096","l":"Hyalangium minutum","na":2,"nb":1,"a":[["polyketides/nystatin-a1.yaml","nystatin A1"],["unclassified/myxochromide-d-2.yaml","myxochromide D"]],"b":[["NCBITaxon%3A394096","Hyalangium minutum"]]},{"id":"NCBITaxon:396598","l":"Paraburkholderia graminis C4D1M","na":1,"nb":2,"a":[["unclassified/gramibactin.yaml","gramibactin"]],"b":[["NCBITaxon%3A60548","Paraburkholderia graminis"],["NCBITaxon%3A396598","Paraburkholderia graminis C4D1M"]]},{"id":"NCBITaxon:397945","l":"","na":2,"nb":1,"a":[["unclassified/acidobactin-a.yaml","acidobactin A"],["unclassified/acidobactin-b.yaml","acidobactin B"]],"b":[["NCBITaxon%3A397945","Paracidovorax citrulli AAC00-1"]]},{"id":"NCBITaxon:40601","l":"Claviceps paspali","na":1,"nb":2,"a":[["unclassified/paxilline.yaml","paxilline"]],"b":[["NCBITaxon%3A40601","Claviceps paspali"],["NCBITaxon%3A877506","Claviceps paspali RRC 1481"]]},{"id":"NCBITaxon:40695","l":"Trichoderma polysporum","na":2,"nb":1,"a":[["amino_acids_and_peptides/cyclosporin-a.yaml","cyclosporin A"],["amino_acids_and_peptides/cyclosporin-c.yaml","cyclosporin C"]],"b":[["NCBITaxon%3A40695","Trichoderma polysporum"]]},{"id":"NCBITaxon:408015","l":"Streptomyces xiamenensis","na":1,"nb":2,"a":[["polyketides/xiamenmycin-a.yaml","xiamenmycin A"]],"b":[["NCBITaxon%3A408015","Streptomyces xiamenensis"],["NCBITaxon%3A1093097","Streptomyces xiamenensis 318"]]},{"id":"NCBITaxon:41276","l":"Brevundimonas vesicularis","na":1,"nb":2,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A41276","Brevundimonas vesicularis"],["NCBITaxon%3A1349759","Brevundimonas vesicularis NBRC 12165"]]},{"id":"NCBITaxon:41744","l":"Aspergillus puniceus","na":2,"nb":1,"a":[["unclassified/oxepinamide-d.yaml","oxepinamide D"],["unclassified/oxepinamide-f.yaml","oxepinamide F"]],"b":[["NCBITaxon%3A41744","Aspergillus puniceus"]]},{"id":"NCBITaxon:41899","l":"Burkholderia plantarii","na":1,"nb":2,"a":[["amino_acids_and_peptides/plantaribactin.yaml","plantaribactin"]],"b":[["NCBITaxon%3A41899","Burkholderia plantarii"],["NCBITaxon%3A796107","Burkholderia plantarii MAFF 301723"]]},{"id":"NCBITaxon:42239","l":"Streptomyces sampsonii","na":1,"nb":2,"a":[["polyketides/julichrome-q6-6.yaml","julichrome Q6.6"]],"b":[["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A42239","Streptomyces sampsonii"]]},{"id":"NCBITaxon:426","l":"Methylosinus trichosporium","na":1,"nb":2,"a":[["amino_acids_and_peptides/group-1-methanobactin.yaml","group 1 methanobactin"]],"b":[["NCBITaxon%3A426","Methylosinus trichosporium"],["NCBITaxon%3A595536","Methylosinus trichosporium OB3b"]]},{"id":"NCBITaxon:42677","l":"Fusarium subglutinans","na":2,"nb":1,"a":[["unclassified/subglutinol-a.yaml","subglutinol A"],["unclassified/subglutinol-b.yaml","subglutinol B"]],"b":[["NCBITaxon%3A42677","Fusarium subglutinans"]]},{"id":"NCBITaxon:42742","l":"Gelatoporia subvermispora","na":1,"nb":2,"a":[["amino_acids_and_peptides/basidioferrin.yaml","basidioferrin"]],"b":[["NCBITaxon%3A42742","Gelatoporia subvermispora"],["NCBITaxon%3A914234","Gelatoporia subvermispora B"]]},{"id":"NCBITaxon:42881","l":"Streptomyces chromofuscus","na":2,"nb":1,"a":[["alkaloids/indigoidine.yaml","indigoidine"],["polyketides/herboxidiene.yaml","herboxidiene"]],"b":[["NCBITaxon%3A42881","Streptomyces chromofuscus"]]},{"id":"NCBITaxon:43769","l":"Corynebacterium propinquum","na":1,"nb":2,"a":[["amino_acids_and_peptides/dehydroxynocardamine.yaml","dehydroxynocardamine"]],"b":[["NCBITaxon%3A43769","Corynebacterium propinquum"],["NCBITaxon%3A1121367","Corynebacterium propinquum DSM 44285"]]},{"id":"NCBITaxon:443922","l":"Planktothrix agardhii NIES-596","na":2,"nb":1,"a":[["amino_acids_and_peptides/prenylagaramide-b.yaml","prenylagaramide B"],["amino_acids_and_peptides/prenylagaramide-c.yaml","prenylagaramide C"]],"b":[["NCBITaxon%3A443922","Planktothrix agardhii NIES-596"]]},{"id":"NCBITaxon:444103","l":"Streptomyces sp. CNQ-509","na":2,"nb":1,"a":[["alkaloids/marinophenazine-a.yaml","marinophenazine A"],["alkaloids/phenaziterpene-a.yaml","phenaziterpene A"]],"b":[["NCBITaxon%3A444103","Streptomyces sp. CNQ-509"]]},{"id":"NCBITaxon:45130","l":"Bipolaris sorokiniana","na":1,"nb":2,"a":[["polyketides/sterigmatocystin.yaml","sterigmatocystin"]],"b":[["NCBITaxon%3A45130","Bipolaris sorokiniana"],["NCBITaxon%3A665912","Bipolaris sorokiniana ND90Pr"]]},{"id":"NCBITaxon:452529","l":"Streptomyces scopuliridis","na":1,"nb":2,"a":[["amino_acids_and_peptides/vancomycin.yaml","vancomycin"]],"b":[["NCBITaxon%3A452529","Streptomyces scopuliridis"],["NCBITaxon%3A1440053","Streptomyces scopuliridis RB72"]]},{"id":"NCBITaxon:452652","l":"Kitasatospora setae KM-6054","na":1,"nb":2,"a":[["alkaloids/kitasetaline.yaml","kitasetaline"]],"b":[["NCBITaxon%3A2066","Kitasatospora setae"],["NCBITaxon%3A452652","Kitasatospora setae KM-6054"]]},{"id":"NCBITaxon:45399","l":"Streptomyces triostinicus","na":2,"nb":1,"a":[["unclassified/quinomycin.yaml","quinomycin"],["unclassified/triostin-a.yaml","triostin A"]],"b":[["NCBITaxon%3A45399","Streptomyces triostinicus"]]},{"id":"NCBITaxon:457430","l":"Streptomyces filamentosus NRRL 11379","na":2,"nb":1,"a":[["amino_acids_and_peptides/arylomycin.yaml","arylomycin"],["unclassified/daptomycin.yaml","daptomycin"]],"b":[["NCBITaxon%3A457430","Streptomyces filamentosus NRRL 11379"]]},{"id":"NCBITaxon:469280","l":"Aspergillus striatus","na":2,"nb":1,"a":[["polyketides/sterigmatocystin.yaml","sterigmatocystin"],["unclassified/paxilline.yaml","paxilline"]],"b":[["NCBITaxon%3A469280","Aspergillus striatus"]]},{"id":"NCBITaxon:469371","l":"Thermobispora bispora DSM 43833","na":1,"nb":2,"a":[["amino_acids_and_peptides/thiomuracin.yaml","thiomuracin"]],"b":[["NCBITaxon%3A2006","Thermobispora bispora"],["NCBITaxon%3A469371","Thermobispora bispora DSM 43833"]]},{"id":"NCBITaxon:47278","l":"Trichothecium roseum","na":1,"nb":2,"a":[["unclassified/destruxin-a.yaml","destruxin A"]],"b":[["NCBITaxon%3A173858","Streptomyces luteireticuli"],["NCBITaxon%3A47278","Trichothecium roseum"]]},{"id":"NCBITaxon:47850","l":"","na":1,"nb":2,"a":[["polyketides/dynemicin-a.yaml","dynemicin A"]],"b":[["NCBITaxon%3A644283","Micromonospora aurantiaca ATCC 27029"],["NCBITaxon%3A47850","Micromonospora aurantiaca (nom. illeg.)"]]},{"id":"NCBITaxon:47863","l":"Micromonospora globosa","na":1,"nb":2,"a":[["polyketides/dynemicin-a.yaml","dynemicin A"]],"b":[["NCBITaxon%3A47863","Micromonospora globosa"],["NCBITaxon%3A1876","Micromonospora sp."]]},{"id":"NCBITaxon:483421","l":"Streptomyces sp. CNQ-617","na":2,"nb":1,"a":[["alkaloids/marineosin-a.yaml","marineosin A"],["alkaloids/marineosin-b.yaml","marineosin B"]],"b":[["NCBITaxon%3A483421","Streptomyces sp. CNQ-617"]]},{"id":"NCBITaxon:4837","l":"Phycomyces blakesleeanus","na":1,"nb":2,"a":[["alkaloids/biotin.yaml","biotin"]],"b":[["NCBITaxon%3A4837","Phycomyces blakesleeanus"],["NCBITaxon%3A763407","Phycomyces blakesleeanus NRRL 1555(-)"]]},{"id":"NCBITaxon:489825","l":"Moorea producens 3L","na":2,"nb":1,"a":[["fatty_acids/1-heptadecene.yaml","1-heptadecene"],["polyketides/curacin-a-2.yaml","curacin A"]],"b":[["NCBITaxon%3A489825","Moorena producens 3L"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":1,"nb":2,"a":[["polyketides/haliamide.yaml","haliamide"]],"b":[["NCBITaxon%3A80816","Haliangium ochraceum"],["NCBITaxon%3A502025","Haliangium ochraceum DSM 14365"]]},{"id":"NCBITaxon:503010","l":"uncultured Prochloron sp. 06037A","na":2,"nb":1,"a":[["amino_acids_and_peptides/patellin-2.yaml","patellin 2"],["amino_acids_and_peptides/patellin-3.yaml","patellin 3"]],"b":[["NCBITaxon%3A503010","uncultured Prochloron sp. 06037A"]]},{"id":"NCBITaxon:503013","l":"","na":2,"nb":1,"a":[["amino_acids_and_peptides/tenuecyclamide-a.yaml","tenuecyclamide A"],["amino_acids_and_peptides/tenuecyclamide-c.yaml","tenuecyclamide C"]],"b":[["NCBITaxon%3A503013","Nostoc spongiaeforme var. tenue str. Carmeli"]]},{"id":"NCBITaxon:504097","l":"Streptomyces rimofaciens","na":1,"nb":2,"a":[["carbohydrates/mildiomycin.yaml","mildiomycin"]],"b":[["NCBITaxon%3A97398","Streptomyces abikoensis"],["NCBITaxon%3A504097","Streptomyces rimofaciens"]]},{"id":"NCBITaxon:5044","l":"","na":2,"nb":1,"a":[["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"],["polyketides/sorbicillin.yaml","sorbicillin"]],"b":[["NCBITaxon%3A5044","Hapsidospora chrysogena"]]},{"id":"NCBITaxon:5079","l":"Penicillium janthinellum","na":2,"nb":1,"a":[["unclassified/penitrem-a.yaml","penitrem A"],["unclassified/shearinine-d.yaml","shearinine D"]],"b":[["NCBITaxon%3A5079","Penicillium janthinellum"]]},{"id":"NCBITaxon:509173","l":"Acinetobacter baumannii AYE","na":2,"nb":1,"a":[["alkaloids/baumannoferrin-a.yaml","baumannoferrin A"],["alkaloids/baumannoferrin-b.yaml","baumannoferrin B"]],"b":[["NCBITaxon%3A509173","Acinetobacter baumannii AYE"]]},{"id":"NCBITaxon:516360","l":"Streptomyces hygrospinosus","na":1,"nb":2,"a":[["alkaloids/anisomycin.yaml","(−)-anisomycin"]],"b":[["NCBITaxon%3A516360","Streptomyces hygrospinosus"],["NCBITaxon%3A2719566","Streptomyces hygrospinosus subsp. beijingensis"]]},{"id":"NCBITaxon:52259","l":"Streptomyces humidus","na":1,"nb":2,"a":[["amino_acids_and_peptides/humidimycin.yaml","humidimycin"]],"b":[["NCBITaxon%3A52259","Streptomyces humidus"],["NCBITaxon%3A285499","Streptomyces humidus subsp. antitumoris"]]},{"id":"NCBITaxon:5270","l":"","na":2,"nb":1,"a":[["fatty_acids/itaconic-acid.yaml","itaconic acid"],["fatty_acids/ustilagic-acid.yaml","ustilagic acid"]],"b":[["NCBITaxon%3A5270","Mycosarcoma maydis"]]},{"id":"NCBITaxon:527005","l":"Yersinia ruckeri ATCC 29473","na":1,"nb":2,"a":[["alkaloids/holomycin.yaml","holomycin"]],"b":[["NCBITaxon%3A29486","Yersinia ruckeri"],["NCBITaxon%3A527005","Yersinia ruckeri ATCC 29473"]]},{"id":"NCBITaxon:543728","l":"Variovorax paradoxus S110","na":2,"nb":1,"a":[["unclassified/vacidobactin-a.yaml","vacidobactin A"],["unclassified/vacidobactin-b.yaml","vacidobactin B"]],"b":[["NCBITaxon%3A543728","Variovorax paradoxus S110"]]},{"id":"NCBITaxon:544311","l":"Streptomyces araujoniae","na":2,"nb":1,"a":[["polyketides/tetranactin.yaml","tetranactin"],["polyketides/trinactin.yaml","trinactin"]],"b":[["NCBITaxon%3A544311","Streptomyces araujoniae"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":1,"nb":2,"a":[["unclassified/antimycin-a1b.yaml","antimycin A1B"]],"b":[["NCBITaxon%3A5476","Candida albicans"],["NCBITaxon%3A1182531","Candida albicans 3153A"]]},{"id":"NCBITaxon:5514","l":"Fusarium sporotrichioides","na":2,"nb":1,"a":[["terpenoids/t-2-toxin.yaml","T-2 toxin"],["unclassified/beauvericin.yaml","beauvericin"]],"b":[["NCBITaxon%3A5514","Fusarium sporotrichioides"]]},{"id":"NCBITaxon:5531","l":"Myrothecium","na":1,"nb":2,"a":[["carbohydrates/kanamycin-a.yaml","kanamycin A"]],"b":[["NCBITaxon%3A110576","Myrothecium inundatum"],["NCBITaxon%3A1756106","Myrothecium sp."]]},{"id":"NCBITaxon:5548","l":"Trichoderma longibrachiatum","na":1,"nb":2,"a":[["polyketides/sorbicillin.yaml","sorbicillin"]],"b":[["NCBITaxon%3A5548","Trichoderma longibrachiatum"],["NCBITaxon%3A1234776","Trichoderma longibrachiatum SMF2"]]},{"id":"NCBITaxon:55508","l":"Janthinobacterium agaricidamnosum","na":1,"nb":2,"a":[["unclassified/jagaricin.yaml","jagaricin"]],"b":[["NCBITaxon%3A55508","Janthinobacterium agaricidamnosum"],["NCBITaxon%3A1349767","Janthinobacterium agaricidamnosum NBRC 102515 = DSM 9628"]]},{"id":"NCBITaxon:557722","l":"Pseudomonas aeruginosa LESB58","na":2,"nb":1,"a":[["fatty_acids/n-acyl-lysine.yaml","N-acyl lysine"],["fatty_acids/n-acyl-ornithine.yaml","N-acyl ornithine"]],"b":[["NCBITaxon%3A557722","Pseudomonas aeruginosa LESB58"]]},{"id":"NCBITaxon:5580","l":"Aureobasidium pullulans","na":1,"nb":2,"a":[["unclassified/abt1.yaml","AbT1"]],"b":[["NCBITaxon%3A5580","Aureobasidium pullulans"],["NCBITaxon%3A1043002","Aureobasidium pullulans EXF-150"]]},{"id":"NCBITaxon:56427","l":"Couchioplanes caeruleus subsp. caeruleus","na":1,"nb":2,"a":[["polyketides/67-121c.yaml","67-121C"]],"b":[["NCBITaxon%3A56438","Couchioplanes caeruleus"],["NCBITaxon%3A56427","Couchioplanes caeruleus subsp. caeruleus"]]},{"id":"NCBITaxon:566461","l":"Streptomyces viridosporus ATCC 14672","na":1,"nb":2,"a":[["unclassified/cinnapeptin.yaml","cinnapeptin"]],"b":[["NCBITaxon%3A67581","Streptomyces viridosporus"],["NCBITaxon%3A566461","Streptomyces viridosporus ATCC 14672"]]},{"id":"NCBITaxon:570268","l":"Nocardiopsis potens DSM 45234","na":1,"nb":2,"a":[["amino_acids_and_peptides/potensibactin.yaml","potensibactin"]],"b":[["NCBITaxon%3A1246458","Nocardiopsis potens"],["NCBITaxon%3A570268","Nocardiopsis potens DSM 45234"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":1,"nb":2,"a":[["alkaloids/congocidine.yaml","congocidine"]],"b":[["NCBITaxon%3A5833","Plasmodium falciparum"],["NCBITaxon%3A5843","Plasmodium falciparum NF54"]]},{"id":"NCBITaxon:58350","l":"Kitasatospora cystarginea","na":2,"nb":1,"a":[["amino_acids_and_peptides/cystargolide-a.yaml","cystargolide A"],["amino_acids_and_peptides/cystargolide-b.yaml","cystargolide B"]],"b":[["NCBITaxon%3A58350","Kitasatospora cystarginea"]]},{"id":"NCBITaxon:591157","l":"Streptomyces sp. SPB78","na":2,"nb":1,"a":[["unclassified/frontalamide-a.yaml","frontalamide A"],["unclassified/frontalamide-b.yaml","frontalamide B"]],"b":[["NCBITaxon%3A591157","Streptomyces sp. SPB78"]]},{"id":"NCBITaxon:59299","l":"Streptomyces thermocarboxydus","na":1,"nb":2,"a":[["terpenoids/cyslabdan-a.yaml","cyslabdan A"]],"b":[["NCBITaxon%3A59299","Streptomyces thermocarboxydus"],["NCBITaxon%3A682180","Streptomyces thermocarboxydus di50b"]]},{"id":"NCBITaxon:595536","l":"Methylosinus trichosporium OB3b","na":1,"nb":2,"a":[["amino_acids_and_peptides/group-1-methanobactin.yaml","group 1 methanobactin"]],"b":[["NCBITaxon%3A426","Methylosinus trichosporium"],["NCBITaxon%3A595536","Methylosinus trichosporium OB3b"]]},{"id":"NCBITaxon:59737","l":"Rathayibacter iranicus","na":1,"nb":2,"a":[["carbohydrates/tunicamycin.yaml","tunicamycin"]],"b":[["NCBITaxon%3A59737","Rathayibacter iranicus"],["NCBITaxon%3A1328868","Rathayibacter iranicus NCPPB 2253 = VKM Ac-1602"]]},{"id":"NCBITaxon:60175","l":"Penicillium nalgiovense","na":1,"nb":2,"a":[["shikimates_and_phenylpropanoids/dichlorodiaporthin.yaml","dichlorodiaporthin"]],"b":[["NCBITaxon%3A60175","Penicillium nalgiovense"],["NCBITaxon%3A1439352","Penicillium nalgiovense FM193"]]},{"id":"NCBITaxon:60890","l":"Phaeobacter gallaeciensis","na":1,"nb":2,"a":[["shikimates_and_phenylpropanoids/tropodithietic-acid.yaml","tropodithietic acid"]],"b":[["NCBITaxon%3A60890","Phaeobacter gallaeciensis"],["NCBITaxon%3A1423144","Phaeobacter gallaeciensis DSM 26640"]]},{"id":"NCBITaxon:61284","l":"Fusarium tricinctum","na":2,"nb":1,"a":[["terpenoids/nivalenol.yaml","nivalenol"],["unclassified/fusaristatin-a.yaml","fusaristatin A"]],"b":[["NCBITaxon%3A61284","Fusarium tricinctum"]]},{"id":"NCBITaxon:618","l":"Serratia odorifera","na":1,"nb":2,"a":[["terpenoids/sodorifen.yaml","sodorifen"]],"b":[["NCBITaxon%3A618","Serratia odorifera"],["NCBITaxon%3A667129","Serratia odorifera DSM 4582"]]},{"id":"NCBITaxon:62101","l":"Candidatus Endobugula sertula","na":2,"nb":1,"a":[["polyketides/bryostatin-2.yaml","bryostatin"],["polyketides/bryostatin.yaml","bryostatin"]],"b":[["NCBITaxon%3A62101","Candidatus Endobugula sertula"]]},{"id":"NCBITaxon:62977","l":"Acinetobacter baylyi (strain ATCC 33305 / BD413 / ADP1)","na":1,"nb":2,"a":[["amino_acids_and_peptides/fimsbactin-a.yaml","fimsbactin A"]],"b":[["NCBITaxon%3A202950","Acinetobacter baylyi"],["NCBITaxon%3A62977","Acinetobacter baylyi ADP1"]]},{"id":"NCBITaxon:630397","l":"Streptomyces sp. Sp080513GE-23","na":2,"nb":1,"a":[["amino_acids_and_peptides/jbir-34.yaml","JBIR-34"],["amino_acids_and_peptides/jbir-35.yaml","JBIR-35"]],"b":[["NCBITaxon%3A630397","Streptomyces sp. Sp080513GE-23"]]},{"id":"NCBITaxon:634771","l":"Chitinophaga eiseniae","na":2,"nb":1,"a":[["amino_acids_and_peptides/pentacitidin-a.yaml","pentacitidin A"],["amino_acids_and_peptides/pentacitidin-b.yaml","pentacitidin B"]],"b":[["NCBITaxon%3A634771","Chitinophaga eiseniae"]]},{"id":"NCBITaxon:643403","l":"Streptomyces sp. MK730-62F2","na":2,"nb":1,"a":[["carbohydrates/caprazamycin-aglycon.yaml","caprazamycin aglycon"],["carbohydrates/caprazamycin.yaml","caprazamycin"]],"b":[["NCBITaxon%3A643403","Streptomyces sp. MK730-62F2"]]},{"id":"NCBITaxon:658629","l":"Pseudomonas sp. CMR12a","na":2,"nb":1,"a":[["amino_acids_and_peptides/sessilin-a.yaml","sessilin A"],["unclassified/orfamide-b.yaml","orfamide B"]],"b":[["NCBITaxon%3A658629","Pseudomonas sessilinigenes"]]},{"id":"NCBITaxon:66431","l":"Streptomyces thioluteus","na":2,"nb":1,"a":[["alkaloids/sf2768.yaml","SF2768"],["polyketides/aureothin.yaml","aureothin"]],"b":[["NCBITaxon%3A66431","Streptomyces thioluteus"]]},{"id":"NCBITaxon:665007","l":"Streptomyces incarnatus","na":2,"nb":1,"a":[["amino_acids_and_peptides/incarnatapeptin-a.yaml","incarnatapeptin A"],["unclassified/incarnatapeptin-b.yaml","incarnatapeptin B"]],"b":[["NCBITaxon%3A665007","Streptomyces incarnatus"]]},{"id":"NCBITaxon:66866","l":"Streptomyces albofaciens","na":1,"nb":2,"a":[["polyketides/spiramycin.yaml","spiramycin"]],"b":[["NCBITaxon%3A66866","Streptomyces albofaciens"],["NCBITaxon%3A1306175","Streptomyces albofaciens JCM 4342"]]},{"id":"NCBITaxon:66867","l":"Streptomyces albovinaceus","na":2,"nb":1,"a":[["polyketides/borrelidin.yaml","borrelidin"],["terpenoids/isorenieratene.yaml","isorenieratene"]],"b":[["NCBITaxon%3A66867","Streptomyces albovinaceus"]]},{"id":"NCBITaxon:66881","l":"Streptomyces cremeus","na":2,"nb":1,"a":[["carbohydrates/tobramycin.yaml","tobramycin"],["unclassified/cremeomycin.yaml","cremeomycin"]],"b":[["NCBITaxon%3A66881","Streptomyces cremeus"]]},{"id":"NCBITaxon:671071","l":"Planktothrix paucivesiculata PCC 9631","na":2,"nb":1,"a":[["polyketides/luminaolide-b.yaml","luminaolide B"],["polyketides/luminaolide.yaml","luminaolide"]],"b":[["NCBITaxon%3A671071","Planktothrix paucivesiculata PCC 9631"]]},{"id":"NCBITaxon:67267","l":"Streptomyces alboflavus","na":2,"nb":1,"a":[["alkaloids/thienodolin.yaml","thienodolin"],["terpenoids/2-methylisoborneol.yaml","2-methylisoborneol"]],"b":[["NCBITaxon%3A67267","Streptomyces alboflavus"]]},{"id":"NCBITaxon:673","l":"Grimontia hollisae","na":1,"nb":2,"a":[["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]],"b":[["NCBITaxon%3A673","Grimontia hollisae"],["NCBITaxon%3A675812","Grimontia hollisae CIP 101886"]]},{"id":"NCBITaxon:67319","l":"Streptomyces lucensis","na":1,"nb":2,"a":[["polyketides/lucensomycin.yaml","lucensomycin"]],"b":[["NCBITaxon%3A67319","Streptomyces lucensis"],["NCBITaxon%3A1306176","Streptomyces lucensis JCM 4490"]]},{"id":"NCBITaxon:67329","l":"Streptomyces minoensis","na":1,"nb":2,"a":[["polyketides/dutomycin.yaml","dutomycin"]],"b":[["NCBITaxon%3A67329","Streptomyces minoensis"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:67332","l":"Streptomyces mutabilis","na":1,"nb":2,"a":[["polyketides/borrelidin.yaml","borrelidin"]],"b":[["NCBITaxon%3A67332","Streptomyces mutabilis"],["NCBITaxon%3A1028809","Streptomyces mutabilis 13676F"]]},{"id":"NCBITaxon:67333","l":"Streptomyces narbonensis","na":1,"nb":2,"a":[["carbohydrates/desosamine.yaml","desosamine"]],"b":[["NCBITaxon%3A332950","Enterococcus termitis"],["NCBITaxon%3A67333","Streptomyces narbonensis"]]},{"id":"NCBITaxon:67337","l":"Streptomyces noboritoensis","na":1,"nb":2,"a":[["polyketides/cinerubin-b.yaml","cinerubin B"]],"b":[["NCBITaxon%3A67326","Streptomyces melanogenes"],["NCBITaxon%3A67337","Streptomyces noboritoensis"]]},{"id":"NCBITaxon:67338","l":"Streptomyces olivoviridis","na":1,"nb":2,"a":[["amino_acids_and_peptides/thioviridamide.yaml","thioviridamide"]],"b":[["NCBITaxon%3A66869","Streptomyces atroolivaceus"],["NCBITaxon%3A67338","Streptomyces olivoviridis"]]},{"id":"NCBITaxon:67350","l":"Streptomyces pseudovenezuelae","na":1,"nb":2,"a":[["polyketides/setomimycin.yaml","setomimycin"]],"b":[["NCBITaxon%3A67350","Streptomyces pseudovenezuelae"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:67356","l":"Streptomyces resistomycificus","na":2,"nb":1,"a":[["polyketides/resistoflavine.yaml","resistoflavine"],["polyketides/resistomycin.yaml","resistomycin"]],"b":[["NCBITaxon%3A67356","Streptomyces resistomycificus"]]},{"id":"NCBITaxon:67375","l":"Streptomyces versipellis","na":1,"nb":2,"a":[["polyketides/versipelostatin.yaml","versipelostatin"]],"b":[["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A67375","Streptomyces versipellis"]]},{"id":"NCBITaxon:68170","l":"","na":2,"nb":1,"a":[["alkaloids/rebeccamycin.yaml","rebeccamycin"],["alkaloids/staurosporine-2.yaml","staurosporine"]],"b":[["NCBITaxon%3A68170","Lentzea aerocolonigenes"]]},{"id":"NCBITaxon:68212","l":"Streptomyces graminofaciens","na":2,"nb":1,"a":[["alkaloids/rotihibin-a.yaml","rotihibin A"],["polyketides/fd-891.yaml","FD-891"]],"b":[["NCBITaxon%3A68212","Streptomyces graminofaciens"]]},{"id":"NCBITaxon:68229","l":"Streptomyces lomondensis","na":1,"nb":2,"a":[["alkaloids/lomofungin.yaml","lomofungin"]],"b":[["NCBITaxon%3A68229","Streptomyces lomondensis"],["NCBITaxon%3A1415783","Streptomyces lomondensis S015"]]},{"id":"NCBITaxon:68258","l":"Streptomyces pulveraceus","na":1,"nb":2,"a":[["polyketides/fostriecin.yaml","fostriecin"]],"b":[["NCBITaxon%3A67333","Streptomyces narbonensis"],["NCBITaxon%3A68258","Streptomyces pulveraceus"]]},{"id":"NCBITaxon:68260","l":"Streptomyces pyridomyceticus","na":1,"nb":2,"a":[["alkaloids/pyridomycin.yaml","pyridomycin"]],"b":[["NCBITaxon%3A68260","Streptomyces pyridomyceticus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:68264","l":"Streptomyces rishiriensis","na":2,"nb":1,"a":[["shikimates_and_phenylpropanoids/coumermycin-a1.yaml","coumermycin A1"],["unclassified/lactonamycin.yaml","lactonamycin"]],"b":[["NCBITaxon%3A68264","Streptomyces rishiriensis"]]},{"id":"NCBITaxon:68271","l":"Streptomyces steffisburgensis","na":1,"nb":2,"a":[["polyketides/steffimycin-d.yaml","steffimycin D"]],"b":[["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A68271","Streptomyces steffisburgensis"]]},{"id":"NCBITaxon:68276","l":"Streptomyces torulosus","na":2,"nb":1,"a":[["alkaloids/pyridomycin.yaml","pyridomycin"],["unclassified/clifednamide-a-2.yaml","clifednamide A"]],"b":[["NCBITaxon%3A68276","Streptomyces torulosus"]]},{"id":"NCBITaxon:68565","l":"Actinomadura hibisca","na":1,"nb":2,"a":[["polyketides/pradimicin-a.yaml","pradimicin A"]],"b":[["NCBITaxon%3A68565","Actinomadura hibisca"],["NCBITaxon%3A1220559","Actinomadura hibisca NBRC 15177"]]},{"id":"NCBITaxon:689687","l":"Streptomyces sp. SANK 60405","na":2,"nb":1,"a":[["carbohydrates/a-90289-a.yaml","A-90289 A"],["carbohydrates/a-90289-b.yaml","A-90289 B"]],"b":[["NCBITaxon%3A689687","Streptomyces sp. SANK 60405"]]},{"id":"NCBITaxon:693111","l":"uncultured bacterium psy1","na":2,"nb":1,"a":[["unclassified/irciniastatin-b.yaml","irciniastatin B"],["unclassified/psymberin.yaml","psymberin"]],"b":[["NCBITaxon%3A693111","uncultured bacterium psy1"]]},{"id":"NCBITaxon:70109","l":"Penicillium paxilli","na":2,"nb":1,"a":[["unclassified/21-22-diprenylated-paxilline.yaml","21,22-diprenylated paxilline"],["unclassified/paxilline.yaml","paxilline"]],"b":[["NCBITaxon%3A70109","Penicillium paxilli"]]},{"id":"NCBITaxon:70559","l":"Penicillium raciborskii","na":2,"nb":1,"a":[["unclassified/outovirin-a.yaml","outovirin A"],["unclassified/outovirin-c.yaml","outovirin C"]],"b":[["NCBITaxon%3A70559","Penicillium raciborskii"]]},{"id":"NCBITaxon:713604","l":"Amycolatopsis mediterranei S699","na":1,"nb":2,"a":[["polyketides/rifamycin-sv.yaml","rifamycin SV"]],"b":[["NCBITaxon%3A33910","Amycolatopsis mediterranei"],["NCBITaxon%3A713604","Amycolatopsis mediterranei S699"]]},{"id":"NCBITaxon:71944","l":"Hypholoma","na":1,"nb":2,"a":[["terpenoids/naematolin.yaml","naematolin"]],"b":[["NCBITaxon%3A2493788","Hypholoma australianum"],["NCBITaxon%3A945553","Hypholoma sublateritium FD-334 SS-4"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":2,"a":[["unclassified/lysocin-e.yaml","lysocin E"]],"b":[["NCBITaxon%3A72226","Lysobacter sp."],["NCBITaxon%3A1645665","Solilutibacter silvestris"]]},{"id":"NCBITaxon:73044","l":"Streptomyces seoulensis","na":2,"nb":1,"a":[["polyketides/ansaseomycin-a.yaml","ansaseomycin A"],["polyketides/ansaseomycin-b.yaml","ansaseomycin B"]],"b":[["NCBITaxon%3A73044","Streptomyces seoulensis"]]},{"id":"NCBITaxon:73839","l":"Epichloe festucae var. lolii","na":2,"nb":1,"a":[["alkaloids/ergovaline.yaml","ergovaline"],["alkaloids/peramine.yaml","peramine"]],"b":[["NCBITaxon%3A73839","Epichloe festucae var. lolii"]]},{"id":"NCBITaxon:76020","l":"Amycolatopsis alba","na":1,"nb":2,"a":[["polyketides/ansacarbamitocin.yaml","ansacarbamitocin"]],"b":[["NCBITaxon%3A76020","Amycolatopsis alba"],["NCBITaxon%3A1125972","Amycolatopsis alba DSM 44262"]]},{"id":"NCBITaxon:76335","l":"Nostoc sp. ATCC 53789","na":2,"nb":1,"a":[["amino_acids_and_peptides/nostocyclopeptide-a2.yaml","nostocyclopeptide A2"],["unclassified/cryptophycin-a.yaml","Cryptophycin A"]],"b":[["NCBITaxon%3A76335","Nostoc sp. ATCC 53789"]]},{"id":"NCBITaxon:764483","l":"Pseudomonas sp. 2663","na":2,"nb":1,"a":[["fatty_acids/fr901464-2.yaml","FR901464"],["fatty_acids/fr901464.yaml","FR901464"]],"b":[["NCBITaxon%3A764483","Pseudomonas sp. 2663"]]},{"id":"NCBITaxon:77044","l":"Rosellinia necatrix","na":2,"nb":1,"a":[["alkaloids/cytochalasin-e.yaml","cytochalasin E"],["terpenoids/sordaricin-b.yaml","sordaricin B"]],"b":[["NCBITaxon%3A77044","Rosellinia necatrix"]]},{"id":"NCBITaxon:78410","l":"Neonectria ditissima","na":2,"nb":1,"a":[["unclassified/colletochlorin-b.yaml","Colletochlorin B"],["unclassified/colletorin-b.yaml","Colletorin B"]],"b":[["NCBITaxon%3A78410","Neonectria ditissima"]]},{"id":"NCBITaxon:79329","l":"Chitinophaga pinensis","na":1,"nb":2,"a":[["polyketides/flexirubin.yaml","flexirubin"]],"b":[["NCBITaxon%3A79329","Chitinophaga pinensis"],["NCBITaxon%3A485918","Chitinophaga pinensis DSM 2588"]]},{"id":"NCBITaxon:798162","l":"Setophoma terrestris","na":2,"nb":1,"a":[["polyketides/endocrocin.yaml","endocrocin"],["polyketides/secalonic-acid-a.yaml","Secalonic acid A"]],"b":[["NCBITaxon%3A798162","Setophoma terrestris"]]},{"id":"NCBITaxon:80816","l":"Haliangium ochraceum","na":1,"nb":2,"a":[["polyketides/haliamide.yaml","haliamide"]],"b":[["NCBITaxon%3A80816","Haliangium ochraceum"],["NCBITaxon%3A502025","Haliangium ochraceum DSM 14365"]]},{"id":"NCBITaxon:83378","l":"Streptomyces ruber","na":1,"nb":2,"a":[["terpenoids/napyradiomycin.yaml","napyradiomycin"]],"b":[["NCBITaxon%3A83378","Streptomyces ruber"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:83380","l":"Streptomyces althioticus","na":1,"nb":2,"a":[["polyketides/desertomycin-g.yaml","desertomycin G"]],"b":[["NCBITaxon%3A83380","Streptomyces althioticus"],["NCBITaxon%3A3075534","Streptomyces althioticus subsp. attaecolombicae"]]},{"id":"NCBITaxon:83455","l":"Myxococcus stipitatus","na":1,"nb":2,"a":[["polyketides/phenalamide-a2.yaml","phenalamide A2"]],"b":[["NCBITaxon%3A83455","Myxococcus stipitatus"],["NCBITaxon%3A1278073","Myxococcus stipitatus DSM 14675"]]},{"id":"NCBITaxon:83456","l":"Myxococcus virescens","na":2,"nb":1,"a":[["alkaloids/bengamide.yaml","bengamide"],["unclassified/myxochromide-c.yaml","myxochromide C"]],"b":[["NCBITaxon%3A83456","Myxococcus virescens"]]},{"id":"NCBITaxon:83656","l":"Streptomyces tsukubensis","na":1,"nb":2,"a":[["fatty_acids/allylmalonyl-coa.yaml","allylmalonyl-CoA"]],"b":[["NCBITaxon%3A83656","Streptomyces tsukubensis"],["NCBITaxon%3A1114943","Streptomyces tsukubensis NRRL18488"]]},{"id":"NCBITaxon:83682","l":"Nonomuraea longicatena","na":2,"nb":1,"a":[["alkaloids/k-252a-2.yaml","K-252a"],["alkaloids/k-252a.yaml","K-252a"]],"b":[["NCBITaxon%3A83682","Nonomuraea longicatena"]]},{"id":"NCBITaxon:85336","l":"Rothia nasimurium","na":1,"nb":2,"a":[["unclassified/valinomycin-2.yaml","valinomycin"]],"b":[["NCBITaxon%3A85336","Rothia nasimurium"],["NCBITaxon%3A553203","Rothia nasimurium JCVIHMP032"]]},{"id":"NCBITaxon:866895","l":"Halobacillus halophilus DSM 2266","na":1,"nb":2,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A1570","Halobacillus halophilus"],["NCBITaxon%3A866895","Halobacillus halophilus DSM 2266"]]},{"id":"NCBITaxon:92743","l":"","na":2,"nb":1,"a":[["amino_acids_and_peptides/malonomycin.yaml","malonomycin"],["carbohydrates/paromomycin.yaml","paromomycin"]],"b":[["NCBITaxon%3A92743","Streptomyces paromomycinus"]]},{"id":"NCBITaxon:945030","l":"Digenea simplex","na":2,"nb":1,"a":[["amino_acids_and_peptides/kainic-acid.yaml","kainic acid"],["terpenoids/kainic-acid-lactone.yaml","Kainic acid lactone"]],"b":[["NCBITaxon%3A945030","Digenea simplex"]]},{"id":"NCBITaxon:945052","l":"Streptomyces heilongjiangensis","na":1,"nb":2,"a":[["polyketides/borrelidin.yaml","borrelidin"]],"b":[["NCBITaxon%3A211113","Kibdelosporangium philippinense"],["NCBITaxon%3A945052","Streptomyces heilongjiangensis"]]},{"id":"NCBITaxon:948311","l":"Fusarium proliferatum","na":1,"nb":2,"a":[["polyketides/prolipyrone-b.yaml","prolipyrone B"]],"b":[["NCBITaxon%3A948311","Fusarium proliferatum"],["NCBITaxon%3A1227346","Fusarium proliferatum ET1"]]},{"id":"NCBITaxon:964","l":"Herbaspirillum seropedicae","na":1,"nb":2,"a":[["amino_acids_and_peptides/serobactin-c.yaml","serobactin C"]],"b":[["NCBITaxon%3A964","Herbaspirillum seropedicae"],["NCBITaxon%3A757424","Herbaspirillum seropedicae SmR1"]]},{"id":"NCBITaxon:977880","l":"Cupriavidus taiwanensis LMG 19424","na":1,"nb":2,"a":[["amino_acids_and_peptides/taiwachelin.yaml","taiwachelin"]],"b":[["NCBITaxon%3A164546","Cupriavidus taiwanensis"],["NCBITaxon%3A977880","Cupriavidus taiwanensis LMG 19424"]]},{"id":"NCBITaxon:997","l":"Eisenibacter elegans","na":1,"nb":2,"a":[["polyketides/flexirubin.yaml","flexirubin"]],"b":[["NCBITaxon%3A997","Eisenibacter elegans"],["NCBITaxon%3A1121902","Eisenibacter elegans DSM 3317"]]},{"id":"NCBITaxon:999542","l":"Salinispora pacifica DSM 45543 = CNS-863","na":1,"nb":2,"a":[["unclassified/thiolactomycin.yaml","thiolactomycin"]],"b":[["NCBITaxon%3A351187","Salinispora pacifica"],["NCBITaxon%3A999542","Salinispora pacifica DSM 45543 = CNS-863"]]},{"id":"NCBITaxon:999550","l":"Pseudophaeobacter arcticus DSM 23566","na":1,"nb":2,"a":[["amino_acids_and_peptides/phaeornamide.yaml","phaeornamide"]],"b":[["NCBITaxon%3A385492","Pseudophaeobacter arcticus"],["NCBITaxon%3A999550","Pseudophaeobacter arcticus DSM 23566"]]},{"id":"NCBITaxon:1002505","l":"Pseudanabaena sp. dqh15","na":1,"nb":1,"a":[["alkaloids/2-methylisoborneol-2.yaml","2-methylisoborneol"]],"b":[["NCBITaxon%3A1002505","Pseudanabaena sp. dqh15"]]},{"id":"NCBITaxon:1010692","l":"Bacillus sp. NK2003","na":1,"nb":1,"a":[["amino_acids_and_peptides/koranimine.yaml","koranimine"]],"b":[["NCBITaxon%3A1010692","Bacillus sp. NK2003"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":1,"nb":1,"a":[["unclassified/rhodochelin.yaml","rhodochelin"]],"b":[["NCBITaxon%3A101510","Rhodococcus jostii RHA1"]]},{"id":"NCBITaxon:1034809","l":"Staphylococcus lugdunensis N920143","na":1,"nb":1,"a":[["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]],"b":[["NCBITaxon%3A1034809","Staphylococcus lugdunensis N920143"]]},{"id":"NCBITaxon:1035052","l":"Streptomyces sp. SCSIO 01127","na":1,"nb":1,"a":[["polyketides/lobophorin-b.yaml","lobophorin B"]],"b":[["NCBITaxon%3A1035052","Streptomyces sp. SCSIO 01127"]]},{"id":"NCBITaxon:1036673","l":"Paenibacillus mucilaginosus KNP414","na":1,"nb":1,"a":[["amino_acids_and_peptides/bacillopaline.yaml","bacillopaline"]],"b":[["NCBITaxon%3A1036673","Paenibacillus mucilaginosus KNP414"]]},{"id":"NCBITaxon:1036732","l":"Sarocladium zeae","na":1,"nb":1,"a":[["polyketides/trans-resorcylide.yaml","trans-resorcylide"]],"b":[["NCBITaxon%3A1036732","Sarocladium zeae"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":1,"nb":1,"a":[["alkaloids/schizokinen.yaml","schizokinen"]],"b":[["NCBITaxon%3A103690","Nostoc sp. PCC 7120 = FACHB-418"]]},{"id":"NCBITaxon:103733","l":"Saccharothrix syringae","na":1,"nb":1,"a":[["polyketides/nocamycin.yaml","nocamycin"]],"b":[["NCBITaxon%3A103733","Saccharothrix syringae"]]},{"id":"NCBITaxon:104268","l":"Tenacibaculum mesophilum","na":1,"nb":1,"a":[["fatty_acids/bisucaberin-b.yaml","bisucaberin B"]],"b":[["NCBITaxon%3A104268","Tenacibaculum mesophilum"]]},{"id":"NCBITaxon:1044","l":"Erythrobacter longus","na":1,"nb":1,"a":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]],"b":[["NCBITaxon%3A1044","Erythrobacter longus"]]},{"id":"NCBITaxon:1047164","l":"uncultured bacterium AB1650","na":1,"nb":1,"a":[["alkaloids/be-54017.yaml","BE-54017"]],"b":[["NCBITaxon%3A1047164","uncultured bacterium AB1650"]]},{"id":"NCBITaxon:1052105","l":"Purpureocillium","na":1,"nb":1,"a":[["polyketides/sirolimus.yaml","sirolimus"]],"b":[["NCBITaxon%3A33203","Purpureocillium lilacinum"]]},{"id":"NCBITaxon:1055352","l":"Streptomyces sp. W007","na":1,"nb":1,"a":[["polyketides/kiamycin.yaml","kiamycin"]],"b":[["NCBITaxon%3A1055352","Streptomyces sp. W007"]]},{"id":"NCBITaxon:1068630","l":"Streptomyces sp. CS40","na":1,"nb":1,"a":[["alkaloids/collismycin-a.yaml","collismycin A"]],"b":[["NCBITaxon%3A1068630","Streptomyces sp. CS40"]]},{"id":"NCBITaxon:1073998","l":"Streptomyces sp. ATCC 55365","na":1,"nb":1,"a":[["amino_acids_and_peptides/ge37468.yaml","GE37468"]],"b":[["NCBITaxon%3A1073998","Streptomyces sp. ATCC 55365"]]},{"id":"NCBITaxon:1074049","l":"Candidatus Burkholderia crenata","na":1,"nb":1,"a":[["unclassified/fr900359.yaml","FR900359"]],"b":[["NCBITaxon%3A1074049","Candidatus Burkholderia crenata"]]},{"id":"NCBITaxon:1074250","l":"Actinoalloteichus sp. WH1-2216-6","na":1,"nb":1,"a":[["alkaloids/caerulomycin-a.yaml","caerulomycin A"]],"b":[["NCBITaxon%3A1074250","Actinoalloteichus sp. WH1-2216-6"]]},{"id":"NCBITaxon:1077944","l":"Streptomyces muensis","na":1,"nb":1,"a":[["unclassified/griselimycin.yaml","griselimycin"]],"b":[["NCBITaxon%3A1077944","Streptomyces muensis"]]},{"id":"NCBITaxon:1081091","l":"Amycolatopsis balhimycina DSM 5908","na":1,"nb":1,"a":[["amino_acids_and_peptides/balhimycin.yaml","balhimycin"]],"b":[["NCBITaxon%3A1081091","Amycolatopsis balhimycina DSM 5908"]]},{"id":"NCBITaxon:1088888","l":"Vibrio campbellii DS40M4","na":1,"nb":1,"a":[["amino_acids_and_peptides/vanchrobactin.yaml","vanchrobactin"]],"b":[["NCBITaxon%3A1088888","Vibrio campbellii DS40M4"]]},{"id":"NCBITaxon:1091567","l":"uncultured bacterium CSL12","na":1,"nb":1,"a":[["unclassified/n-tetradecanoyl-tyrosine.yaml","N-tetradecanoyl tyrosine"]],"b":[["NCBITaxon%3A1091567","uncultured bacterium CSL12"]]},{"id":"NCBITaxon:1091571","l":"uncultured bacterium CSLC2","na":1,"nb":1,"a":[["unclassified/n-tetradecanoyl-tyrosine.yaml","N-tetradecanoyl tyrosine"]],"b":[["NCBITaxon%3A1091571","uncultured bacterium CSLC2"]]},{"id":"NCBITaxon:110542","l":"Hypoxylon rubiginosum","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"]],"b":[["NCBITaxon%3A110542","Hypoxylon rubiginosum"]]},{"id":"NCBITaxon:1108595","l":"Chromobacterium vaccinii","na":1,"nb":1,"a":[["unclassified/fr900359-2.yaml","FR900359"]],"b":[["NCBITaxon%3A1108595","Chromobacterium vaccinii"]]},{"id":"NCBITaxon:1109705","l":"Streptomyces sp. BC16019","na":1,"nb":1,"a":[["amino_acids_and_peptides/bottromycin-a2-2.yaml","bottromycin A2"]],"b":[["NCBITaxon%3A1109705","Streptomyces sp. BC16019"]]},{"id":"NCBITaxon:1112731","l":"Streptomyces sp. TK08046","na":1,"nb":1,"a":[["polyketides/saprolmycin-e.yaml","saprolmycin E"]],"b":[["NCBITaxon%3A1112731","Streptomyces sp. TK08046"]]},{"id":"NCBITaxon:1113698","l":"","na":1,"nb":1,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A1113698","Brevundimonas sp. NBRC 101024"]]},{"id":"NCBITaxon:1114959","l":"Saccharomonospora azurea SZMC 14600","na":1,"nb":1,"a":[["polyketides/primycin.yaml","primycin"]],"b":[["NCBITaxon%3A1114959","Saccharomonospora azurea SZMC 14600"]]},{"id":"NCBITaxon:111781","l":"Leptolyngbya sp. PCC 7376","na":1,"nb":1,"a":[["alkaloids/schizokinen.yaml","schizokinen"]],"b":[["NCBITaxon%3A111781","[Leptolyngbya] sp. PCC 7376"]]},{"id":"NCBITaxon:112177","l":"Arthrinium","na":1,"nb":1,"a":[["terpenoids/terpestacin.yaml","terpestacin"]],"b":[["NCBITaxon%3A335850","Arthrinium puccinioides"]]},{"id":"NCBITaxon:1131935","l":"Paenibacillus dendritiformis C454","na":1,"nb":1,"a":[["amino_acids_and_peptides/paeninodin.yaml","paeninodin"]],"b":[["NCBITaxon%3A1131935","Paenibacillus dendritiformis C454"]]},{"id":"NCBITaxon:1132638","l":"","na":1,"nb":1,"a":[["unclassified/4-oxomacrophorin-a.yaml","4-oxomacrophorin A"]],"b":[["NCBITaxon%3A1132638","Penicillium kewense"]]},{"id":"NCBITaxon:1137250","l":"Salinispora arenicola CNB527","na":1,"nb":1,"a":[["polyketides/arenimycin-a.yaml","arenimycin A"]],"b":[["NCBITaxon%3A1137250","Salinispora arenicola CNB527"]]},{"id":"NCBITaxon:1137255","l":"Salinispora arenicola CNT005","na":1,"nb":1,"a":[["unclassified/retimycin-a.yaml","retimycin A"]],"b":[["NCBITaxon%3A1137255","Salinispora arenicola CNT005"]]},{"id":"NCBITaxon:114231","l":"Nigrospora sphaerica","na":1,"nb":1,"a":[["terpenoids/aphidicolin.yaml","aphidicolin"]],"b":[["NCBITaxon%3A114231","Nigrospora sphaerica"]]},{"id":"NCBITaxon:1144306","l":"Rhizobium sp. AP16","na":1,"nb":1,"a":[["amino_acids_and_peptides/syringolin-a-2.yaml","syringolin A"]],"b":[["NCBITaxon%3A1144306","Rhizobium sp. AP16"]]},{"id":"NCBITaxon:1148509","l":"","na":1,"nb":1,"a":[["unclassified/prosekin.yaml","prosekin"]],"b":[["NCBITaxon%3A1148509","Pseudomonas prosekii"]]},{"id":"NCBITaxon:1155718","l":"Streptomyces sp. MspMP-M5","na":1,"nb":1,"a":[["unclassified/microtermolide-a.yaml","microtermolide A"]],"b":[["NCBITaxon%3A1155718","Streptomyces sp. MspMP-M5"]]},{"id":"NCBITaxon:1156913","l":"","na":1,"nb":1,"a":[["amino_acids_and_peptides/vancomycin.yaml","vancomycin"]],"b":[["NCBITaxon%3A1156913","Amycolatopsis orientalis HCCB10007"]]},{"id":"NCBITaxon:115828","l":"Streptomyces maritimus","na":1,"nb":1,"a":[["terpenoids/enterocin.yaml","enterocin"]],"b":[["NCBITaxon%3A115828","Streptomyces maritimus"]]},{"id":"NCBITaxon:115983","l":"Phyllosticta ampelicida","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/phenguignardic-acid.yaml","phenguignardic acid"]],"b":[["NCBITaxon%3A115983","Phyllosticta ampelicida"]]},{"id":"NCBITaxon:1169155","l":"Streptomyces sp. CNT302","na":1,"nb":1,"a":[["polyketides/cosmomycin-c.yaml","cosmomycin C"]],"b":[["NCBITaxon%3A1169155","Streptomyces sp. CNT302"]]},{"id":"NCBITaxon:116978","l":"Penicillium thiersii","na":1,"nb":1,"a":[["unclassified/paxilline.yaml","paxilline"]],"b":[["NCBITaxon%3A116978","Penicillium thiersii"]]},{"id":"NCBITaxon:1172567","l":"Streptomyces globisporus C-1027","na":1,"nb":1,"a":[["polyketides/c-1027-chromophore.yaml","C-1027 chromophore"]],"b":[["NCBITaxon%3A1172567","Streptomyces globisporus C-1027"]]},{"id":"NCBITaxon:1182637","l":"Streptomyces melanovinaceus","na":1,"nb":1,"a":[["alkaloids/quinocarcin.yaml","quinocarcin"]],"b":[["NCBITaxon%3A1182637","Streptomyces melanovinaceus"]]},{"id":"NCBITaxon:1182970","l":"","na":1,"nb":1,"a":[["polyketides/kosinostatin.yaml","kosinostatin"]],"b":[["NCBITaxon%3A1182970","Micromonospora okii"]]},{"id":"NCBITaxon:1194094","l":"Streptomyces sp. SCSIO 02999","na":1,"nb":1,"a":[["alkaloids/xiamycin-a.yaml","xiamycin A"]],"b":[["NCBITaxon%3A1194094","Streptomyces sp. SCSIO 02999"]]},{"id":"NCBITaxon:1196081","l":"Talaromyces amestolkiae","na":1,"nb":1,"a":[["unclassified/chrodrimanin-b.yaml","chrodrimanin B"]],"b":[["NCBITaxon%3A1196081","Talaromyces amestolkiae"]]},{"id":"NCBITaxon:1196323","l":"Paenibacillus sp. OSY-SE","na":1,"nb":1,"a":[["unclassified/paenibacterin.yaml","paenibacterin"]],"b":[["NCBITaxon%3A1196323","Paenibacillus sp. OSY-SE"]]},{"id":"NCBITaxon:1200302","l":"Photobacterium damselae subsp. piscicida DI21","na":1,"nb":1,"a":[["alkaloids/piscibactin.yaml","piscibactin"]],"b":[["NCBITaxon%3A1200302","Photobacterium damselae subsp. piscicida DI21"]]},{"id":"NCBITaxon:1211968","l":"Streptomyces sp. YIM 56141","na":1,"nb":1,"a":[["alkaloids/cycloheximide.yaml","cycloheximide"]],"b":[["NCBITaxon%3A1211968","Streptomyces sp. YIM 56141"]]},{"id":"NCBITaxon:121624","l":"Phyllosticta capitalensis","na":1,"nb":1,"a":[["unclassified/macrophorin-a.yaml","macrophorin A"]],"b":[["NCBITaxon%3A121624","Phyllosticta capitalensis"]]},{"id":"NCBITaxon:1218706","l":"Streptomyces sp. NEAU-Z4","na":1,"nb":1,"a":[["alkaloids/streptazone-e.yaml","streptazone E"]],"b":[["NCBITaxon%3A1218706","Streptomyces sp. NEAU-Z4"]]},{"id":"NCBITaxon:1220201","l":"Aspergillus creber","na":1,"nb":1,"a":[["polyketides/asperlactone.yaml","asperlactone"]],"b":[["NCBITaxon%3A1220201","Aspergillus creber"]]},{"id":"NCBITaxon:122368","l":"Cercospora beticola","na":1,"nb":1,"a":[["polyketides/cercosporin.yaml","cercosporin"]],"b":[["NCBITaxon%3A122368","Cercospora beticola"]]},{"id":"NCBITaxon:1225197","l":"Streptococcus mutans B04Sm5","na":1,"nb":1,"a":[["unclassified/mutanocyclin.yaml","mutanocyclin"]],"b":[["NCBITaxon%3A1225197","Streptococcus mutans B04Sm5"]]},{"id":"NCBITaxon:1231908","l":"Pseudomonas sp. Q71576","na":1,"nb":1,"a":[["unclassified/spiruchostatin-a.yaml","spiruchostatin A"]],"b":[["NCBITaxon%3A1231908","Pseudomonas sp. Q71576"]]},{"id":"NCBITaxon:1234059","l":"","na":1,"nb":1,"a":[["amino_acids_and_peptides/bottromycin-d.yaml","bottromycin D"]],"b":[["NCBITaxon%3A1234059","Streptomyces sp. WMMB 272"]]},{"id":"NCBITaxon:1239282","l":"Dactylosporangium sp. SC14051","na":1,"nb":1,"a":[["polyketides/dactylocycline-a.yaml","dactylocycline A"]],"b":[["NCBITaxon%3A1239282","Dactylosporangium sp. SC14051"]]},{"id":"NCBITaxon:1243767","l":"Hypoxylon pulicicidum","na":1,"nb":1,"a":[["unclassified/nodulisporic-acid-f.yaml","nodulisporic acid F"]],"b":[["NCBITaxon%3A1243767","Hypoxylon pulicicidum"]]},{"id":"NCBITaxon:124418","l":"Tolypocladium album","na":1,"nb":1,"a":[["unclassified/terpendole-e.yaml","terpendole E"]],"b":[["NCBITaxon%3A124418","Tolypocladium album"]]},{"id":"NCBITaxon:1245512","l":"Streptomyces sp. XZQH13","na":1,"nb":1,"a":[["polyketides/mycotrienin-i.yaml","mycotrienin I"]],"b":[["NCBITaxon%3A1245512","Streptomyces sp. XZQH13"]]},{"id":"NCBITaxon:1254432","l":"Sorangium cellulosum So0157-2","na":1,"nb":1,"a":[["unclassified/epothilone-b.yaml","epothilone B"]],"b":[["NCBITaxon%3A1254432","Sorangium cellulosum So0157-2"]]},{"id":"NCBITaxon:1263194","l":"Penicillium spathulatum","na":1,"nb":1,"a":[["unclassified/asperphenamate.yaml","asperphenamate"]],"b":[["NCBITaxon%3A1263194","Penicillium spathulatum"]]},{"id":"NCBITaxon:1265536","l":"Streptomyces sp. ML694-90F3","na":1,"nb":1,"a":[["unclassified/incednine.yaml","incednine"]],"b":[["NCBITaxon%3A1265536","Streptomyces sp. ML694-90F3"]]},{"id":"NCBITaxon:1266744","l":"Talaromyces purpureogenus","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"]],"b":[["NCBITaxon%3A1266744","Talaromyces purpureogenus"]]},{"id":"NCBITaxon:1283841","l":"","na":1,"nb":1,"a":[["alkaloids/isoindolin-1-one.yaml","isoindolin-1-one"]],"b":[["NCBITaxon%3A1283841","Stachybotrys chlorohalonatus IBT 40285"]]},{"id":"NCBITaxon:128434","l":"Talaromyces diversus","na":1,"nb":1,"a":[["polyketides/patulin.yaml","patulin"]],"b":[["NCBITaxon%3A128434","Talaromyces diversus"]]},{"id":"NCBITaxon:1286194","l":"Streptomyces sp. NRRL F-4415","na":1,"nb":1,"a":[["amino_acids_and_peptides/gobichelin-a.yaml","gobichelin A"]],"b":[["NCBITaxon%3A1286194","Streptomyces sp. NRRL F-4415"]]},{"id":"NCBITaxon:1287682","l":"Aspergillus felis","na":1,"nb":1,"a":[["unclassified/sartorypyrone-a.yaml","sartorypyrone A"]],"b":[["NCBITaxon%3A1287682","Aspergillus felis"]]},{"id":"NCBITaxon:1288082","l":"","na":1,"nb":1,"a":[["alkaloids/chlorizidine-a.yaml","chlorizidine A"]],"b":[["NCBITaxon%3A1288082","Streptomyces sp. CNH287"]]},{"id":"NCBITaxon:1288362","l":"Actinoplanes sp. ATCC 53533","na":1,"nb":1,"a":[["amino_acids_and_peptides/uk-68-597.yaml","UK-68,597"]],"b":[["NCBITaxon%3A1288362","Actinoplanes sp. ATCC 53533"]]},{"id":"NCBITaxon:1296353","l":"","na":1,"nb":1,"a":[["fatty_acids/1-heptadecene.yaml","1-heptadecene"]],"b":[["NCBITaxon%3A1296353","Oscillatoria amoena CCAP 1459/39"]]},{"id":"NCBITaxon:1297573","l":"Cyanobium sp. LEGE 06113","na":1,"nb":1,"a":[["polyketides/hierridin-b.yaml","hierridin B"]],"b":[["NCBITaxon%3A1297573","Cyanobium sp. LEGE 06113"]]},{"id":"NCBITaxon:1314803","l":"Dendrothele bispora","na":1,"nb":1,"a":[["amino_acids_and_peptides/dendrothelin-a.yaml","dendrothelin A"]],"b":[["NCBITaxon%3A1314803","Dendrothele bispora"]]},{"id":"NCBITaxon:1321967","l":"Streptomyces sp. MJ635-86F5","na":1,"nb":1,"a":[["unclassified/cremimycin.yaml","cremimycin"]],"b":[["NCBITaxon%3A1321967","Streptomyces sp. MJ635-86F5"]]},{"id":"NCBITaxon:1325723","l":"Fusarium neocosmosporiellum","na":1,"nb":1,"a":[["amino_acids_and_peptides/cyclosporin-c.yaml","cyclosporin C"]],"b":[["NCBITaxon%3A1325723","Fusarium neocosmosporiellum"]]},{"id":"NCBITaxon:1341132","l":"Aspergillus welwitschiae","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"]],"b":[["NCBITaxon%3A1341132","Aspergillus welwitschiae"]]},{"id":"NCBITaxon:1352936","l":"Streptomyces roseochromogenus subsp. oscitans DS 12.976","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/clorobiocin.yaml","clorobiocin"]],"b":[["NCBITaxon%3A1352936","Streptomyces roseochromogenus subsp. oscitans DS 12.976"]]},{"id":"NCBITaxon:1353533","l":"Pseudoalteromonas luteoviolacea 2ta16","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/pentabromopseudilin.yaml","pentabromopseudilin"]],"b":[["NCBITaxon%3A1353533","Pseudoalteromonas luteoviolacea 2ta16"]]},{"id":"NCBITaxon:13563","l":"Heterobasidion annosum","na":1,"nb":1,"a":[["polyketides/patulin.yaml","patulin"]],"b":[["NCBITaxon%3A13563","Heterobasidion annosum"]]},{"id":"NCBITaxon:138280","l":"Aspergillus petrakii","na":1,"nb":1,"a":[["polyketides/patulin.yaml","patulin"]],"b":[["NCBITaxon%3A138280","Aspergillus petrakii"]]},{"id":"NCBITaxon:1388766","l":"Aspergillus ruber CBS 135680","na":1,"nb":1,"a":[["polyketides/flavoglaucin.yaml","flavoglaucin"]],"b":[["NCBITaxon%3A1388766","Aspergillus ruber CBS 135680"]]},{"id":"NCBITaxon:139077","l":"Mucidula mucida","na":1,"nb":1,"a":[["polyketides/mucidin.yaml","mucidin"]],"b":[["NCBITaxon%3A139077","Mucidula mucida"]]},{"id":"NCBITaxon:139090","l":"Albatrellus ovinus","na":1,"nb":1,"a":[["unclassified/ilicicolin-b.yaml","ilicicolin B"]],"b":[["NCBITaxon%3A139090","Albatrellus ovinus"]]},{"id":"NCBITaxon:1392253","l":"","na":1,"nb":1,"a":[["polyketides/doxorubicin.yaml","doxorubicin"]],"b":[["NCBITaxon%3A1392253","Talaromyces aculeatus ATCC 10409"]]},{"id":"NCBITaxon:1405805","l":"","na":1,"nb":1,"a":[["polyketides/flavoglaucin.yaml","flavoglaucin"]],"b":[["NCBITaxon%3A1405805","Aspergillus pseudoglaucus"]]},{"id":"NCBITaxon:1408161","l":"Plenodomus tracheiphilus IPT5","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/mellein.yaml","(-)-Mellein"]],"b":[["NCBITaxon%3A1408161","Plenodomus tracheiphilus IPT5"]]},{"id":"NCBITaxon:1408450","l":"Methylobacter tundripaludum 21/22","na":1,"nb":1,"a":[["unclassified/tundrenone.yaml","tundrenone"]],"b":[["NCBITaxon%3A1408450","Methylobacter tundripaludum 21/22"]]},{"id":"NCBITaxon:1414447","l":"Streptomyces sp. MK498-98F14","na":1,"nb":1,"a":[["unclassified/polyoxypeptin.yaml","polyoxypeptin"]],"b":[["NCBITaxon%3A1414447","Streptomyces sp. MK498-98F14"]]},{"id":"NCBITaxon:1429103","l":"Streptomyces sp. RM-5-8","na":1,"nb":1,"a":[["unclassified/5-isoprenylindole-3-carboxylate-d-glycosyl-ester.yaml","5-isoprenylindole-3-carboxylate β-D-glycosyl ester"]],"b":[["NCBITaxon%3A1429103","Streptomyces sp. RM-5-8"]]},{"id":"NCBITaxon:1434086","l":"Jahnella sp. MSr9139","na":1,"nb":1,"a":[["amino_acids_and_peptides/microsclerodermin.yaml","microsclerodermin"]],"b":[["NCBITaxon%3A1434086","Jahnella sp. MSr9139"]]},{"id":"NCBITaxon:143450","l":"Cercospora arachidicola","na":1,"nb":1,"a":[["polyketides/dothistromin.yaml","dothistromin"]],"b":[["NCBITaxon%3A143450","Mycosphaerella arachidis"]]},{"id":"NCBITaxon:1437473","l":"Pseudoalteromonas sp. PS5","na":1,"nb":1,"a":[["alkaloids/2-3-4-5-tetrabromopyrrole.yaml","2,3,4,5-tetrabromopyrrole"]],"b":[["NCBITaxon%3A1437473","Pseudoalteromonas sp. PS5"]]},{"id":"NCBITaxon:1463851","l":"Streptomyces sp. NRRL F-4474","na":1,"nb":1,"a":[["alkaloids/jbir-126.yaml","JBIR-126"]],"b":[["NCBITaxon%3A1463851","Streptomyces sp. NRRL F-4474"]]},{"id":"NCBITaxon:1463861","l":"Streptomyces sp. NRRL F-525","na":1,"nb":1,"a":[["unclassified/phosphonoacetic-acid.yaml","phosphonoacetic acid"]],"b":[["NCBITaxon%3A1463861","Streptomyces sp. NRRL F-525"]]},{"id":"NCBITaxon:1463881","l":"Streptomyces sp. NRRL S-118","na":1,"nb":1,"a":[["amino_acids_and_peptides/lagmysin.yaml","lagmysin"]],"b":[["NCBITaxon%3A1463881","Streptomyces sp. NRRL S-118"]]},{"id":"NCBITaxon:1463899","l":"Streptomyces sp. NRRL S-325","na":1,"nb":1,"a":[["amino_acids_and_peptides/detoxin-s1.yaml","detoxin S1"]],"b":[["NCBITaxon%3A1463899","Streptomyces sp. NRRL S-325"]]},{"id":"NCBITaxon:1463904","l":"Streptomyces sp. NRRL S-378","na":1,"nb":1,"a":[["polyketides/komodoquinone-b.yaml","komodoquinone B"]],"b":[["NCBITaxon%3A1463904","Streptomyces sp. NRRL S-378"]]},{"id":"NCBITaxon:1463920","l":"Streptomyces sp. NRRL S-87","na":1,"nb":1,"a":[["amino_acids_and_peptides/thioholgamide-a.yaml","thioholgamide A"]],"b":[["NCBITaxon%3A1463920","Streptomyces sp. NRRL S-87"]]},{"id":"NCBITaxon:146537","l":"Streptomyces azureus","na":1,"nb":1,"a":[["amino_acids_and_peptides/thiostrepton.yaml","thiostrepton"]],"b":[["NCBITaxon%3A146537","Streptomyces azureus"]]},{"id":"NCBITaxon:1469403","l":"Streptomyces sp. ZJ306","na":1,"nb":1,"a":[["unclassified/ikarugamycin.yaml","ikarugamycin"]],"b":[["NCBITaxon%3A1469403","Streptomyces sp. ZJ306"]]},{"id":"NCBITaxon:1470541","l":"Aspergillus neoniveus","na":1,"nb":1,"a":[["alkaloids/aspochalasin-c.yaml","aspochalasin C"]],"b":[["NCBITaxon%3A1470541","Aspergillus neoniveus"]]},{"id":"NCBITaxon:1470557","l":"Streptomyces sp. Tu 6176","na":1,"nb":1,"a":[["polyketides/nataxazole.yaml","nataxazole"]],"b":[["NCBITaxon%3A1470557","Streptomyces sp. Tu 6176"]]},{"id":"NCBITaxon:1484062","l":"Streptomyces sp. YN86","na":1,"nb":1,"a":[["carbohydrates/paulomycin.yaml","paulomycin"]],"b":[["NCBITaxon%3A1484062","Streptomyces sp. YN86"]]},{"id":"NCBITaxon:1487711","l":"Streptomyces sp. NTK 937","na":1,"nb":1,"a":[["unclassified/caboxamycin.yaml","caboxamycin"]],"b":[["NCBITaxon%3A1487711","Streptomyces sp. NTK 937"]]},{"id":"NCBITaxon:1488357","l":"Streptomyces sp. MBT28","na":1,"nb":1,"a":[["alkaloids/7-prenylisatin.yaml","7-prenylisatin"]],"b":[["NCBITaxon%3A1488357","Streptomyces sp. MBT28"]]},{"id":"NCBITaxon:150374","l":"Escovopsis weberi","na":1,"nb":1,"a":[["unclassified/melinacidin-iv.yaml","melinacidin IV"]],"b":[["NCBITaxon%3A150374","Escovopsis weberi"]]},{"id":"NCBITaxon:1509516","l":"Streptomyces sp. NRRL WC-3908","na":1,"nb":1,"a":[["amino_acids_and_peptides/cyclothiazomycin-c.yaml","cyclothiazomycin C"]],"b":[["NCBITaxon%3A1509516","Streptomyces sp. NRRL WC-3908"]]},{"id":"NCBITaxon:1535768","l":"Streptomyces lunaelactis","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/ferroverdin.yaml","ferroverdin"]],"b":[["NCBITaxon%3A1535768","Streptomyces lunaelactis"]]},{"id":"NCBITaxon:155900","l":"uncultured organism","na":1,"nb":1,"a":[["alkaloids/trabectedin.yaml","trabectedin"]],"b":[["NCBITaxon%3A155900","uncultured organism"]]},{"id":"NCBITaxon:1562372","l":"Nonomuraea sp. MJM5123","na":1,"nb":1,"a":[["unclassified/ecumicin.yaml","ecumicin"]],"b":[["NCBITaxon%3A1562372","Nonomuraea sp. MJM5123"]]},{"id":"NCBITaxon:1563222","l":"Citrobacter pasteurii","na":1,"nb":1,"a":[["amino_acids_and_peptides/citrocin.yaml","citrocin"]],"b":[["NCBITaxon%3A1563222","Citrobacter pasteurii"]]},{"id":"NCBITaxon:1570104","l":"Nostoc sp. CCAP 1453/38","na":1,"nb":1,"a":[["alkaloids/nocuolin-a.yaml","Nocuolin A"]],"b":[["NCBITaxon%3A1570104","Nostoc sp. CCAP 1453/38"]]},{"id":"NCBITaxon:1571532","l":"Streptomyces sp. CNQ431","na":1,"nb":1,"a":[["unclassified/splenocin-c.yaml","splenocin C"]],"b":[["NCBITaxon%3A1571532","Streptomyces sp. CNQ431"]]},{"id":"NCBITaxon:1576542","l":"Thelonectria olida","na":1,"nb":1,"a":[["polyketides/patulin.yaml","patulin"]],"b":[["NCBITaxon%3A1576542","Thelonectria olida"]]},{"id":"NCBITaxon:1589764","l":"Acrocalymma vagum","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/alternariol.yaml","alternariol"]],"b":[["NCBITaxon%3A1589764","Acrocalymma vagum"]]},{"id":"NCBITaxon:1592326","l":"Actinobacteria bacterium OK006","na":1,"nb":1,"a":[["amino_acids_and_peptides/pepticinnamin-e.yaml","pepticinnamin E"]],"b":[["NCBITaxon%3A1592326","Actinobacteria bacterium OK006"]]},{"id":"NCBITaxon:1593482","l":"Massilia sp. YMA4","na":1,"nb":1,"a":[["unclassified/empedopeptin.yaml","empedopeptin"]],"b":[["NCBITaxon%3A1593482","Massilia sp. YMA4"]]},{"id":"NCBITaxon:160621","l":"","na":1,"nb":1,"a":[["alkaloids/saxitoxin.yaml","saxitoxin"]],"b":[["NCBITaxon%3A160621","Lingulaulax polyedra"]]},{"id":"NCBITaxon:161354","l":"Planomonospora alba","na":1,"nb":1,"a":[["amino_acids_and_peptides/planosporicin.yaml","planosporicin"]],"b":[["NCBITaxon%3A161354","Planomonospora alba"]]},{"id":"NCBITaxon:1628","l":"Lactobacillus vermiforme","na":1,"nb":1,"a":[["carbohydrates/toyocamycin.yaml","toyocamycin"]],"b":[["NCBITaxon%3A1628","Lactobacillus vermiforme"]]},{"id":"NCBITaxon:1635094","l":"Albophoma","na":1,"nb":1,"a":[["unclassified/sesquicillin-a.yaml","sesquicillin A"]],"b":[["NCBITaxon%3A1635095","Albophoma yamanashiensis"]]},{"id":"NCBITaxon:1635095","l":"Albophoma yamanashiensis","na":1,"nb":1,"a":[["unclassified/terpendole-e.yaml","terpendole E"]],"b":[["NCBITaxon%3A1635095","Albophoma yamanashiensis"]]},{"id":"NCBITaxon:1650571","l":"Streptomyces pathocidini","na":1,"nb":1,"a":[["alkaloids/8-azaguanine.yaml","8-azaguanine"]],"b":[["NCBITaxon%3A1650571","Streptomyces pathocidini"]]},{"id":"NCBITaxon:1654360","l":"Photobacterium galatheae","na":1,"nb":1,"a":[["alkaloids/holomycin.yaml","holomycin"]],"b":[["NCBITaxon%3A1654360","Photobacterium galatheae"]]},{"id":"NCBITaxon:1670457","l":"Streptomyces sp. MSC090213JE08","na":1,"nb":1,"a":[["alkaloids/streptazone-e.yaml","streptazone E"]],"b":[["NCBITaxon%3A1670457","Streptomyces sp. MSC090213JE08"]]},{"id":"NCBITaxon:167740","l":"Alternaria gaisen","na":1,"nb":1,"a":[["alkaloids/ak-toxin-i.yaml","AK-toxin I"]],"b":[["NCBITaxon%3A167740","Alternaria gaisen"]]},{"id":"NCBITaxon:1678028","l":"Massilia sp. NR 4-1","na":1,"nb":1,"a":[["unclassified/massiliachelin.yaml","Massiliachelin"]],"b":[["NCBITaxon%3A1678028","Massilia sp. NR 4-1"]]},{"id":"NCBITaxon:168477","l":"Phialomyces arenicola","na":1,"nb":1,"a":[["amino_acids_and_peptides/acrophiarin.yaml","acrophiarin"]],"b":[["NCBITaxon%3A168477","Phialomyces arenicola"]]},{"id":"NCBITaxon:1690815","l":"Pseudonocardia sp. HH130630-07","na":1,"nb":1,"a":[["polyketides/selvamicin.yaml","selvamicin"]],"b":[["NCBITaxon%3A1690815","Pseudonocardia sp. HH130630-07"]]},{"id":"NCBITaxon:1696011","l":"Nannocystis sp. MB1016","na":1,"nb":1,"a":[["unclassified/nannocystin-a.yaml","nannocystin a"]],"b":[["NCBITaxon%3A1696011","Nannocystis sp. MB1016"]]},{"id":"NCBITaxon:170651","l":"Vibrio neptunius","na":1,"nb":1,"a":[["alkaloids/piscibactin.yaml","piscibactin"]],"b":[["NCBITaxon%3A170651","Vibrio neptunius"]]},{"id":"NCBITaxon:171258","l":"Streptomyces sp. TP-A0274","na":1,"nb":1,"a":[["alkaloids/staurosporine-2.yaml","staurosporine"]],"b":[["NCBITaxon%3A171258","Streptomyces sp. TP-A0274"]]},{"id":"NCBITaxon:1714301","l":"Streptomyces sp. CNH365","na":1,"nb":1,"a":[["polyketides/anthracimycin.yaml","anthracimycin"]],"b":[["NCBITaxon%3A1714301","Streptomyces sp. CNH365"]]},{"id":"NCBITaxon:1715678","l":"Streptomyces sp. NRRL 12068","na":1,"nb":1,"a":[["alkaloids/a33853.yaml","A33853"]],"b":[["NCBITaxon%3A1715678","Streptomyces sp. NRRL 12068"]]},{"id":"NCBITaxon:1718875","l":"","na":1,"nb":1,"a":[["polyketides/asperlactone.yaml","asperlactone"]],"b":[["NCBITaxon%3A1718875","Exophiala sp."]]},{"id":"NCBITaxon:1718958","l":"","na":1,"nb":1,"a":[["polyketides/c-1027-chromophore.yaml","C-1027 chromophore"]],"b":[["NCBITaxon%3A1718958","Streptomyces sp. CB00657"]]},{"id":"NCBITaxon:1718988","l":"Streptomyces sp. CB03608","na":1,"nb":1,"a":[["polyketides/c-1027-chromophore.yaml","C-1027 chromophore"]],"b":[["NCBITaxon%3A1718988","Streptomyces sp. CB03608"]]},{"id":"NCBITaxon:1740725","l":"Streptomyces sp. DSM 11171","na":1,"nb":1,"a":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"]],"b":[["NCBITaxon%3A1740725","Streptomyces sp. DSM 11171"]]},{"id":"NCBITaxon:1752060","l":"Actinomadura fulva subsp. indica","na":1,"nb":1,"a":[["unclassified/fluvirucin-b2.yaml","fluvirucin B2"]],"b":[["NCBITaxon%3A1752060","Actinomadura fulva subsp. indica"]]},{"id":"NCBITaxon:1756463","l":"Streptomyces sp. NCIB 11649","na":1,"nb":1,"a":[["alkaloids/cyclizidine.yaml","cyclizidine"]],"b":[["NCBITaxon%3A1756463","Streptomyces sp. NCIB 11649"]]},{"id":"NCBITaxon:179408","l":"Oscillatoria nigro-viridis PCC 7112","na":1,"nb":1,"a":[["amino_acids_and_peptides/viridisamide-a.yaml","viridisamide A"]],"b":[["NCBITaxon%3A179408","Phormidium nigroviride PCC 7112"]]},{"id":"NCBITaxon:1809648","l":"Lysobacter sp. RH2180-5","na":1,"nb":1,"a":[["unclassified/lysocin-e.yaml","lysocin E"]],"b":[["NCBITaxon%3A1809648","Lysobacter sp. RH2180-5"]]},{"id":"NCBITaxon:1810909","l":"Emericella desertorum","na":1,"nb":1,"a":[["unclassified/paxilline.yaml","paxilline"]],"b":[["NCBITaxon%3A1810909","Aspergillus desertorum"]]},{"id":"NCBITaxon:1813822","l":"Xylariales sp. No.14919","na":1,"nb":1,"a":[["polyketides/fr901512.yaml","FR901512"]],"b":[["NCBITaxon%3A1813822","Xylariales sp. No.14919"]]},{"id":"NCBITaxon:181527","l":"Pluteus cervinus","na":1,"nb":1,"a":[["alkaloids/psilocybin.yaml","psilocybin"]],"b":[["NCBITaxon%3A181527","Pluteus cervinus"]]},{"id":"NCBITaxon:1816","l":"Actinokineospora fastidiosa","na":1,"nb":1,"a":[["amino_acids_and_peptides/nocathiacin-i.yaml","nocathiacin I"]],"b":[["NCBITaxon%3A1816","Actinokineospora fastidiosa"]]},{"id":"NCBITaxon:181762","l":"Psilocybe cubensis","na":1,"nb":1,"a":[["alkaloids/psilocybin.yaml","psilocybin"]],"b":[["NCBITaxon%3A181762","Psilocybe cubensis"]]},{"id":"NCBITaxon:182774","l":"Methylophaga alcalica","na":1,"nb":1,"a":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]],"b":[["NCBITaxon%3A182774","Methylophaga alcalica"]]},{"id":"NCBITaxon:183763","l":"Streptomonospora alba","na":1,"nb":1,"a":[["amino_acids_and_peptides/streptomonomicin.yaml","streptomonomicin"]],"b":[["NCBITaxon%3A183763","Streptomonospora alba"]]},{"id":"NCBITaxon:1849710","l":"Streptomyces sp. SD85","na":1,"nb":1,"a":[["unclassified/sceliphrolactam.yaml","sceliphrolactam"]],"b":[["NCBITaxon%3A1849710","Streptomyces sp. SD85"]]},{"id":"NCBITaxon:1854574","l":"Streptomyces huasconensis","na":1,"nb":1,"a":[["amino_acids_and_peptides/huascopeptin.yaml","huascopeptin"]],"b":[["NCBITaxon%3A1854574","Streptomyces huasconensis"]]},{"id":"NCBITaxon:1867796","l":"Vitiosangium cumulatum","na":1,"nb":1,"a":[["terpenoids/2-hydroxysorangiadenosine.yaml","2-hydroxysorangiadenosine"]],"b":[["NCBITaxon%3A1867796","Vitiosangium cumulatum"]]},{"id":"NCBITaxon:1869241","l":"Nostoc sp. CENA543","na":1,"nb":1,"a":[["amino_acids_and_peptides/nodularin-2.yaml","nodularin"]],"b":[["NCBITaxon%3A1869241","Nostoc sp. CENA543"]]},{"id":"NCBITaxon:1871626","l":"Verrucosispora sp.","na":1,"nb":1,"a":[["polyketides/kendomycin-b.yaml","kendomycin B"]],"b":[["NCBITaxon%3A1871626","Verrucosispora sp."]]},{"id":"NCBITaxon:1883427","l":"Actinomycetia bacterium","na":1,"nb":1,"a":[["polyketides/anthrabenzoxocinone.yaml","anthrabenzoxocinone"]],"b":[["NCBITaxon%3A1883427","Actinomycetes bacterium"]]},{"id":"NCBITaxon:1884262","l":"Aspergillus cejpii","na":1,"nb":1,"a":[["polyketides/patulin.yaml","patulin"]],"b":[["NCBITaxon%3A1884262","Aspergillus cejpii"]]},{"id":"NCBITaxon:1890733","l":"Limnothrix sp. CACIAM 69d","na":1,"nb":1,"a":[["amino_acids_and_peptides/limnothamide.yaml","limnothamide"]],"b":[["NCBITaxon%3A1890733","Limnothrix sp. CACIAM 69d"]]},{"id":"NCBITaxon:1898658","l":"Streptomyces sp. SoC090715LN-16","na":1,"nb":1,"a":[["polyketides/isoindolinomycin.yaml","isoindolinomycin"]],"b":[["NCBITaxon%3A1898658","Streptomyces sp. SoC090715LN-16"]]},{"id":"NCBITaxon:190048","l":"Corynascus sepedonium","na":1,"nb":1,"a":[["polyketides/patulin.yaml","patulin"]],"b":[["NCBITaxon%3A190048","Corynascus sepedonium"]]},{"id":"NCBITaxon:190592","l":"Aphanizomenon sp. NH-5","na":1,"nb":1,"a":[["alkaloids/neosaxitoxin.yaml","neosaxitoxin"]],"b":[["NCBITaxon%3A190592","Aphanizomenon sp. NH-5"]]},{"id":"NCBITaxon:1909395","l":"","na":1,"nb":1,"a":[["amino_acids_and_peptides/kistamicin-a.yaml","kistamicin A"]],"b":[["NCBITaxon%3A1909395","[Actinomadura] parvosata subsp. kistnae"]]},{"id":"NCBITaxon:1912599","l":"Pseudomonas acidophila","na":1,"nb":1,"a":[["amino_acids_and_peptides/sulfazecin.yaml","sulfazecin"]],"b":[["NCBITaxon%3A1912599","Paraburkholderia acidicola"]]},{"id":"NCBITaxon:1915","l":"Streptomyces lincolnensis","na":1,"nb":1,"a":[["carbohydrates/lincomycin.yaml","lincomycin"]],"b":[["NCBITaxon%3A1915","Streptomyces lincolnensis"]]},{"id":"NCBITaxon:1918945","l":"Vibrio spartinae","na":1,"nb":1,"a":[["amino_acids_and_peptides/vancomycin.yaml","vancomycin"]],"b":[["NCBITaxon%3A1918945","Vibrio spartinae"]]},{"id":"NCBITaxon:1929279","l":"Myxococcus sp.","na":1,"nb":1,"a":[["unclassified/myxochromide-b.yaml","myxochromide B"]],"b":[["NCBITaxon%3A1929279","Myxococcus sp."]]},{"id":"NCBITaxon:1930928","l":"Fischerella sp. TAU","na":1,"nb":1,"a":[["alkaloids/ambiguine-p.yaml","ambiguine P"]],"b":[["NCBITaxon%3A1930928","Fischerella sp. TAU"]]},{"id":"NCBITaxon:1930929","l":"Fischerella sp. SAG 46.79","na":1,"nb":1,"a":[["alkaloids/fischerindole-l.yaml","fischerindole L"]],"b":[["NCBITaxon%3A1930929","Fischerella sp. SAG 46.79"]]},{"id":"NCBITaxon:1933","l":"Streptoalloteichus tenebrarius","na":1,"nb":1,"a":[["carbohydrates/tobramycin.yaml","tobramycin"]],"b":[["NCBITaxon%3A1933","Streptoalloteichus tenebrarius"]]},{"id":"NCBITaxon:193393","l":"Hypomyces subiculosus","na":1,"nb":1,"a":[["polyketides/hypothemycin.yaml","hypothemycin"]],"b":[["NCBITaxon%3A193393","Hypomyces subiculosus"]]},{"id":"NCBITaxon:1934390","l":"Streptomyces sp. RK95-74","na":1,"nb":1,"a":[["unclassified/neomediomycin-b.yaml","neomediomycin B"]],"b":[["NCBITaxon%3A1934390","Streptomyces sp. RK95-74"]]},{"id":"NCBITaxon:193460","l":"Streptomyces sanglieri","na":1,"nb":1,"a":[["unclassified/lactonamycin-z.yaml","lactonamycin Z"]],"b":[["NCBITaxon%3A193460","Streptomyces sanglieri"]]},{"id":"NCBITaxon:1934914","l":"Cystobacterineae bacterium","na":1,"nb":1,"a":[["unclassified/myxochromide-d-2.yaml","myxochromide D"]],"b":[["NCBITaxon%3A1934914","Cystobacterineae bacterium"]]},{"id":"NCBITaxon:1949","l":"Streptomyces mycarofaciens","na":1,"nb":1,"a":[["polyketides/midecamycin.yaml","midecamycin"]],"b":[["NCBITaxon%3A1949","Streptomyces mycarofaciens"]]},{"id":"NCBITaxon:1960","l":"Streptomyces vinaceus","na":1,"nb":1,"a":[["polyketides/resistomycin.yaml","resistomycin"]],"b":[["NCBITaxon%3A1960","Streptomyces vinaceus"]]},{"id":"NCBITaxon:1966654","l":"Nodularia sp. HBU26","na":1,"nb":1,"a":[["alkaloids/nocuolin-a.yaml","Nocuolin A"]],"b":[["NCBITaxon%3A1966654","Nodularia sp. HBU26"]]},{"id":"NCBITaxon:198094","l":"Bacillus anthracis str. Ames","na":1,"nb":1,"a":[["alkaloids/petrobactin.yaml","petrobactin"]],"b":[["NCBITaxon%3A198094","Bacillus anthracis str. Ames"]]},{"id":"NCBITaxon:1981977","l":"Streptomyces zelensis","na":1,"nb":1,"a":[["alkaloids/cc-1065.yaml","CC-1065"]],"b":[["NCBITaxon%3A1981977","Streptomyces zelensis"]]},{"id":"NCBITaxon:1989","l":"Actinomadura sp.","na":1,"nb":1,"a":[["polyketides/maduramicin.yaml","maduramicin"]],"b":[["NCBITaxon%3A1989","Actinomadura sp."]]},{"id":"NCBITaxon:2002978","l":"Herpetosiphon sp. B060","na":1,"nb":1,"a":[["alkaloids/siphonazole.yaml","siphonazole"]],"b":[["NCBITaxon%3A2002978","Herpetosiphon sp. B060"]]},{"id":"NCBITaxon:201500","l":"Streptomyces sp. KCTC 0041BP","na":1,"nb":1,"a":[["polyketides/10-11-dihydro-8-deoxy-12-13-deepoxy-12-13-dihydrochalcomycin.yaml","10,11-dihydro-8-deoxy-12,13-deepoxy-12,13-dihydrochalcomycin"]],"b":[["NCBITaxon%3A201500","Streptomyces sp. KCTC 0041BP"]]},{"id":"NCBITaxon:2025","l":"Thermoactinomyces sp.","na":1,"nb":1,"a":[["amino_acids_and_peptides/mechercharmycin.yaml","mechercharmycin"]],"b":[["NCBITaxon%3A2025","Thermoactinomyces sp."]]},{"id":"NCBITaxon:2026763","l":"Myxococcales bacterium","na":1,"nb":1,"a":[["polyketides/sorangipyranone.yaml","Sorangipyranone"]],"b":[["NCBITaxon%3A2026763","Myxococcales bacterium"]]},{"id":"NCBITaxon:2039464","l":"Actinoplanes tsinanensis","na":1,"nb":1,"a":[["alkaloids/chuangxinmycin.yaml","(−)-chuangxinmycin"]],"b":[["NCBITaxon%3A2039464","Actinoplanes tsinanensis"]]},{"id":"NCBITaxon:2045","l":"Nocardioides simplex","na":1,"nb":1,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]],"b":[["NCBITaxon%3A2045","Pimelobacter simplex"]]},{"id":"NCBITaxon:2055235","l":"Anabaena sp. UHCC 0451","na":1,"nb":1,"a":[["polyketides/scytophycin.yaml","scytophycin"]],"b":[["NCBITaxon%3A2055235","Anabaena sp. UHCC 0451"]]},{"id":"NCBITaxon:2055236","l":"Nostoc sp. UHCC 0450","na":1,"nb":1,"a":[["polyketides/swinholide-a.yaml","swinholide A"]],"b":[["NCBITaxon%3A2055236","Nostoc sp. UHCC 0450"]]},{"id":"NCBITaxon:205686","l":"","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/3-p-hydroxyphenyl-1-2-propanediol.yaml","3-(p-hydroxyphenyl)-1,2-propanediol"]],"b":[["NCBITaxon%3A205686","Ascochyta lentis"]]},{"id":"NCBITaxon:205922","l":"Pseudomonas fluorescens Pf0-1","na":1,"nb":1,"a":[["unclassified/gacamide-a.yaml","gacamide A"]],"b":[["NCBITaxon%3A205922","Pseudomonas fluorescens Pf0-1"]]},{"id":"NCBITaxon:206662","l":"Streptomyces sp. FR-008","na":1,"nb":1,"a":[["polyketides/candicidin.yaml","candicidin"]],"b":[["NCBITaxon%3A206662","Streptomyces sp. FR-008"]]},{"id":"NCBITaxon:2083010","l":"Streptomyces sp. MA5143a","na":1,"nb":1,"a":[["amino_acids_and_peptides/edha.yaml","EDHA"]],"b":[["NCBITaxon%3A2083010","Streptomyces sp. MA5143a"]]},{"id":"NCBITaxon:208439","l":"Amycolatopsis japonica","na":1,"nb":1,"a":[["amino_acids_and_peptides/ristomycin-a.yaml","ristomycin A"]],"b":[["NCBITaxon%3A208439","Amycolatopsis japonica"]]},{"id":"NCBITaxon:210207","l":"Aspergillus foveolatus","na":1,"nb":1,"a":[["unclassified/paxilline.yaml","paxilline"]],"b":[["NCBITaxon%3A210207","Aspergillus foveolatus"]]},{"id":"NCBITaxon:2116518","l":"Micromonospora arborensis","na":1,"nb":1,"a":[["amino_acids_and_peptides/sch-18640.yaml","Sch 18640"]],"b":[["NCBITaxon%3A2116518","Micromonospora arborensis"]]},{"id":"NCBITaxon:213754","l":"Rhodococcus sp. T3H5","na":1,"nb":1,"a":[["carbohydrates/tubercidin.yaml","tubercidin"]],"b":[["NCBITaxon%3A213754","Rhodococcus sp. T3H5"]]},{"id":"NCBITaxon:2162715","l":"Streptomyces sp. CS147","na":1,"nb":1,"a":[["alkaloids/colibrimycin.yaml","colibrimycin"]],"b":[["NCBITaxon%3A2162715","Streptomyces sp. CS147"]]},{"id":"NCBITaxon:216595","l":"","na":1,"nb":1,"a":[["unclassified/viscosin.yaml","viscosin"]],"b":[["NCBITaxon%3A216595","Pseudomonas [fluorescens] SBW25"]]},{"id":"NCBITaxon:216895","l":"Vibrio vulnificus CMCP6","na":1,"nb":1,"a":[["alkaloids/vulnibactin.yaml","vulnibactin"]],"b":[["NCBITaxon%3A216895","Vibrio vulnificus CMCP6"]]},{"id":"NCBITaxon:2169583","l":"Pseudomonas sp. SXM-1","na":1,"nb":1,"a":[["amino_acids_and_peptides/pyoverdine-sxm-1.yaml","pyoverdine SXM-1"]],"b":[["NCBITaxon%3A2169583","Pseudomonas sp. SXM-1"]]},{"id":"NCBITaxon:2203205","l":"Streptomyces sp. WAC 01529","na":1,"nb":1,"a":[["amino_acids_and_peptides/corbomycin.yaml","corbomycin"]],"b":[["NCBITaxon%3A2203205","Streptomyces sp. WAC 01529"]]},{"id":"NCBITaxon:221710","l":"Streptomyces sp. AM-7161","na":1,"nb":1,"a":[["polyketides/medermycin.yaml","medermycin"]],"b":[["NCBITaxon%3A221710","Streptomyces sp. AM-7161"]]},{"id":"NCBITaxon:222892","l":"Streptomyces nodosus subsp. asukaensis","na":1,"nb":1,"a":[["polyketides/asukamycin.yaml","asukamycin"]],"b":[["NCBITaxon%3A222892","Streptomyces nodosus subsp. asukaensis"]]},{"id":"NCBITaxon:2231603","l":"Cephalosporium aphidicola","na":1,"nb":1,"a":[["terpenoids/aphidicolin.yaml","aphidicolin"]],"b":[["NCBITaxon%3A2231603","Akanthomyces muscarius"]]},{"id":"NCBITaxon:225353","l":"Monascus aurantiacus","na":1,"nb":1,"a":[["polyketides/citrinin.yaml","(+)-citrinin"]],"b":[["NCBITaxon%3A225353","Monascus aurantiacus"]]},{"id":"NCBITaxon:225362","l":"Paracoccus haeundaensis","na":1,"nb":1,"a":[["terpenoids/astaxanthin.yaml","astaxanthin"]],"b":[["NCBITaxon%3A225362","Paracoccus haeundaensis"]]},{"id":"NCBITaxon:228095","l":"Pseudomonas sp. M18","na":1,"nb":1,"a":[["alkaloids/pyoluteorin.yaml","pyoluteorin"]],"b":[["NCBITaxon%3A228095","Pseudomonas sp. M18"]]},{"id":"NCBITaxon:2283197","l":"Streptomyces sp. S816","na":1,"nb":1,"a":[["polyketides/pentamycin-2.yaml","pentamycin"]],"b":[["NCBITaxon%3A2283197","Streptomyces sp. S816"]]},{"id":"NCBITaxon:228732","l":"Streptomyces hygroscopicus subsp. yingchengensis","na":1,"nb":1,"a":[["carbohydrates/validamycin-a.yaml","validamycin A"]],"b":[["NCBITaxon%3A228732","Streptomyces hygroscopicus subsp. yingchengensis"]]},{"id":"NCBITaxon:229535","l":"Penicillium nordicum","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"]],"b":[["NCBITaxon%3A229535","Penicillium nordicum"]]},{"id":"NCBITaxon:2304196","l":"Scytonema sp. UIC 10036","na":1,"nb":1,"a":[["amino_acids_and_peptides/scytodecamide.yaml","scytodecamide"]],"b":[["NCBITaxon%3A2304196","Scytonema sp. UIC 10036"]]},{"id":"NCBITaxon:235466","l":"Streptomyces garyphalus","na":1,"nb":1,"a":[["amino_acids_and_peptides/cycloserine.yaml","cycloserine"]],"b":[["NCBITaxon%3A235466","Streptomyces garyphalus"]]},{"id":"NCBITaxon:240499","l":"Calcarisporium arbuscula","na":1,"nb":1,"a":[["polyketides/patulin.yaml","patulin"]],"b":[["NCBITaxon%3A240499","Calcarisporium arbuscula"]]},{"id":"NCBITaxon:244967","l":"Streptomyces sp. HK803","na":1,"nb":1,"a":[["polyketides/phoslactomycin-b.yaml","phoslactomycin B"]],"b":[["NCBITaxon%3A244967","Streptomyces sp. HK803"]]},{"id":"NCBITaxon:249581","l":"Streptomyces ossamyceticus","na":1,"nb":1,"a":[["polyketides/ossamycin.yaml","ossamycin"]],"b":[["NCBITaxon%3A249581","Streptomyces ossamyceticus"]]},{"id":"NCBITaxon:2530358","l":"Moorena bouillonii bAprat14","na":1,"nb":1,"a":[["unclassified/apratoxin-a.yaml","apratoxin A"]],"b":[["NCBITaxon%3A2530358","Moorena bouillonii bAprat14"]]},{"id":"NCBITaxon:2545265","l":"Streptomyces sp. AJS327","na":1,"nb":1,"a":[["alkaloids/tetrachlorizine.yaml","tetrachlorizine"]],"b":[["NCBITaxon%3A2545265","Streptomyces sp. AJS327"]]},{"id":"NCBITaxon:255848","l":"Streptomyces aizunensis","na":1,"nb":1,"a":[["polyketides/eco-02301.yaml","ECO-02301"]],"b":[["NCBITaxon%3A255848","Streptomyces aizunensis"]]},{"id":"NCBITaxon:257313","l":"Bordetella pertussis (strain Tohama I / ATCC BAA-589 / NCTC 13251)","na":1,"nb":1,"a":[["amino_acids_and_peptides/alcaligin.yaml","alcaligin"]],"b":[["NCBITaxon%3A257313","Bordetella pertussis Tohama I"]]},{"id":"NCBITaxon:2577050","l":"Streptomyces mozunensis","na":1,"nb":1,"a":[["amino_acids_and_peptides/phosphoramidon.yaml","phosphoramidon"]],"b":[["NCBITaxon%3A2577050","Streptomyces mozunensis"]]},{"id":"NCBITaxon:2583819","l":"Streptomyces sp. DASNCL29","na":1,"nb":1,"a":[["polyketides/nigericin.yaml","nigericin"]],"b":[["NCBITaxon%3A2583819","Streptomyces sp. DASNCL29"]]},{"id":"NCBITaxon:2590016","l":"Labrenzia sp. PHM005","na":1,"nb":1,"a":[["polyketides/labrenzin.yaml","labrenzin"]],"b":[["NCBITaxon%3A2590016","Labrenzia sp. PHM005"]]},{"id":"NCBITaxon:2601673","l":"Streptomyces sp. ISID311","na":1,"nb":1,"a":[["polyketides/cyphomycin.yaml","cyphomycin"]],"b":[["NCBITaxon%3A2601673","Streptomyces sp. ISID311"]]},{"id":"NCBITaxon:2603660","l":"Planctomycetales bacterium 10988","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/3-5-dibromo-p-anisic-acid.yaml","3,5-dibromo-p-anisic acid"]],"b":[["NCBITaxon%3A2603660","Planctomycetales bacterium 10988"]]},{"id":"NCBITaxon:2607326","l":"Streptomonospora sp. PA3","na":1,"nb":1,"a":[["polyketides/persiamycin-a.yaml","persiamycin A"]],"b":[["NCBITaxon%3A2607326","Streptomonospora sp. PA3"]]},{"id":"NCBITaxon:267608","l":"Ralstonia nicotianae (strain ATCC BAA-1114 / GMI1000)","na":1,"nb":1,"a":[["unclassified/micacocidin.yaml","micacocidin"]],"b":[["NCBITaxon%3A267608","Ralstonia pseudosolanacearum GMI1000"]]},{"id":"NCBITaxon:269709","l":"","na":1,"nb":1,"a":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]],"b":[["NCBITaxon%3A269709","Methylotuvimicrobium kenyense"]]},{"id":"NCBITaxon:269797","l":"Methanosarcina barkeri str. Fusaro","na":1,"nb":1,"a":[["alkaloids/coenzyme-f430.yaml","coenzyme F430"]],"b":[["NCBITaxon%3A269797","Methanosarcina barkeri str. Fusaro"]]},{"id":"NCBITaxon:2712845","l":"Aetokthonos hydrillicola Thurmond2011","na":1,"nb":1,"a":[["alkaloids/aetokthonotoxin.yaml","aetokthonotoxin"]],"b":[["NCBITaxon%3A2712845","Aetokthonos hydrillicola Thurmond2011"]]},{"id":"NCBITaxon:272123","l":"","na":1,"nb":1,"a":[["amino_acids_and_peptides/anachelin.yaml","anachelin"]],"b":[["NCBITaxon%3A272123","Anabaena cylindrica PCC 7122"]]},{"id":"NCBITaxon:272618","l":"Streptomyces sp. CS684","na":1,"nb":1,"a":[["polyketides/laidlomycin.yaml","laidlomycin"]],"b":[["NCBITaxon%3A272618","Streptomyces sp. CS684"]]},{"id":"NCBITaxon:27326","l":"Metschnikowia pulcherrima","na":1,"nb":1,"a":[["unclassified/pulcherriminic-acid.yaml","pulcherriminic acid"]],"b":[["NCBITaxon%3A27326","Metschnikowia pulcherrima"]]},{"id":"NCBITaxon:273526","l":"Serratia marcescens subsp. marcescens Db11","na":1,"nb":1,"a":[["unclassified/althiomycin.yaml","althiomycin"]],"b":[["NCBITaxon%3A273526","Serratia marcescens subsp. marcescens Db11"]]},{"id":"NCBITaxon:2749999","l":"Pseudomonas sp. RtIB026","na":1,"nb":1,"a":[["unclassified/ma026.yaml","MA026"]],"b":[["NCBITaxon%3A2749999","Pseudomonas sp. RtIB026"]]},{"id":"NCBITaxon:276768","l":"","na":1,"nb":1,"a":[["polyketides/curacin-a-2.yaml","curacin A"]],"b":[["NCBITaxon%3A276768","Moorena producens 19L"]]},{"id":"NCBITaxon:279113","l":"Collimonas pratensis","na":1,"nb":1,"a":[["unclassified/malleobactin-x.yaml","malleobactin X"]],"b":[["NCBITaxon%3A279113","Collimonas pratensis"]]},{"id":"NCBITaxon:2797167","l":"","na":1,"nb":1,"a":[["polyketides/nystatin-a1.yaml","nystatin A1"]],"b":[["NCBITaxon%3A2797167","Streptomyces sp. HSG2"]]},{"id":"NCBITaxon:28040","l":"Micromonospora griseorubida","na":1,"nb":1,"a":[["polyketides/mycinamicin-ii.yaml","mycinamicin II"]],"b":[["NCBITaxon%3A28040","Micromonospora griseorubida"]]},{"id":"NCBITaxon:28064","l":"","na":1,"nb":1,"a":[["alkaloids/heme-d1-2.yaml","heme D1"]],"b":[["NCBITaxon%3A28064","Heliobacterium mobile"]]},{"id":"NCBITaxon:28069","l":"Chlorogloeopsis sp.","na":1,"nb":1,"a":[["unclassified/mycosporine-glycine.yaml","mycosporine glycine"]],"b":[["NCBITaxon%3A28069","Chlorogloeopsis sp."]]},{"id":"NCBITaxon:2820808","l":"Lysobacter sp. K5869","na":1,"nb":1,"a":[["unclassified/hypeptin.yaml","hypeptin"]],"b":[["NCBITaxon%3A2820808","Lysobacter sp. K5869"]]},{"id":"NCBITaxon:2834438","l":"Chloroflexi bacterium TSY","na":1,"nb":1,"a":[["polyketides/aurantoside-a.yaml","aurantoside A"]],"b":[["NCBITaxon%3A2834438","Chloroflexi bacterium TSY"]]},{"id":"NCBITaxon:284030","l":"Streptomyces graminearus","na":1,"nb":1,"a":[["carbohydrates/gougerotin.yaml","gougerotin"]],"b":[["NCBITaxon%3A284030","Streptomyces graminearus"]]},{"id":"NCBITaxon:284032","l":"Streptomyces heliomycini","na":1,"nb":1,"a":[["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"]],"b":[["NCBITaxon%3A284032","Streptomyces heliomycini"]]},{"id":"NCBITaxon:2842453","l":"Amycolatopsis aidingensis","na":1,"nb":1,"a":[["polyketides/nystatin-a1.yaml","nystatin A1"]],"b":[["NCBITaxon%3A2842453","Amycolatopsis aidingensis"]]},{"id":"NCBITaxon:284637","l":"Streptomyces griseovariabilis subsp. bandungensis","na":1,"nb":1,"a":[["unclassified/quinomycin.yaml","quinomycin"]],"b":[["NCBITaxon%3A284637","Streptomyces griseovariabilis subsp. bandungensis"]]},{"id":"NCBITaxon:285482","l":"Streptomyces tsusimaensis","na":1,"nb":1,"a":[["unclassified/valinomycin-2.yaml","valinomycin"]],"b":[["NCBITaxon%3A285482","Streptomyces tsusimaensis"]]},{"id":"NCBITaxon:285500","l":"Streptomyces luteocolor","na":1,"nb":1,"a":[["carbohydrates/bd-12.yaml","BD-12"]],"b":[["NCBITaxon%3A285500","Streptomyces luteocolor"]]},{"id":"NCBITaxon:285519","l":"Streptomyces spinichromogenes","na":1,"nb":1,"a":[["polyketides/lankamycin.yaml","lankamycin"]],"b":[["NCBITaxon%3A285519","Streptomyces spinichromogenes"]]},{"id":"NCBITaxon:285525","l":"Streptomyces sahachiroi","na":1,"nb":1,"a":[["unclassified/azinomycin-b.yaml","azinomycin B"]],"b":[["NCBITaxon%3A285525","Streptomyces sahachiroi"]]},{"id":"NCBITaxon:285531","l":"","na":1,"nb":1,"a":[["alkaloids/rubradirin.yaml","rubradirin"]],"b":[["NCBITaxon%3A285531","Streptomyces rubradiris"]]},{"id":"NCBITaxon:285564","l":"","na":1,"nb":1,"a":[["polyketides/butyrolactol-a.yaml","butyrolactol A"]],"b":[["NCBITaxon%3A285564","Streptomyces ardesiacus"]]},{"id":"NCBITaxon:285574","l":"Streptomyces erythrochromogenes","na":1,"nb":1,"a":[["polyketides/komodoquinone-b.yaml","komodoquinone B"]],"b":[["NCBITaxon%3A285574","Streptomyces erythrochromogenes"]]},{"id":"NCBITaxon:28573","l":"Talaromyces islandicus","na":1,"nb":1,"a":[["polyketides/endocrocin.yaml","endocrocin"]],"b":[["NCBITaxon%3A28573","Talaromyces islandicus"]]},{"id":"NCBITaxon:28985","l":"Kluyveromyces lactis","na":1,"nb":1,"a":[["alkaloids/pulcherrimin.yaml","pulcherrimin"]],"b":[["NCBITaxon%3A28985","Kluyveromyces lactis"]]},{"id":"NCBITaxon:2912","l":"Gonyaulax","na":1,"nb":1,"a":[["alkaloids/saxitoxin.yaml","saxitoxin"]],"b":[["NCBITaxon%3A66791","Gonyaulax spinifera"]]},{"id":"NCBITaxon:2914159","l":"","na":1,"nb":1,"a":[["polyketides/apoptolidin.yaml","apoptolidin"]],"b":[["NCBITaxon%3A2914159","Amycolatopsis sp. FU40"]]},{"id":"NCBITaxon:2919322","l":"Amycolatopsis sp. EV170708-02-1","na":1,"nb":1,"a":[["polyketides/nocamycin-v.yaml","nocamycin V"]],"b":[["NCBITaxon%3A2919322","Amycolatopsis sp. EV170708-02-1"]]},{"id":"NCBITaxon:2925","l":"Alexandrium catenella","na":1,"nb":1,"a":[["alkaloids/saxitoxin.yaml","saxitoxin"]],"b":[["NCBITaxon%3A2925","Alexandrium catenella"]]},{"id":"NCBITaxon:292802","l":"Micromonospora cinerea","na":1,"nb":1,"a":[["unclassified/be-43547a1.yaml","BE-43547A1"]],"b":[["NCBITaxon%3A292802","Micromonospora cinerea"]]},{"id":"NCBITaxon:29306","l":"Streptomyces griseoluteus","na":1,"nb":1,"a":[["alkaloids/griseoluteic-acid.yaml","griseoluteic acid"]],"b":[["NCBITaxon%3A29306","Streptomyces griseoluteus"]]},{"id":"NCBITaxon:29308","l":"Streptomyces tenjimariensis","na":1,"nb":1,"a":[["carbohydrates/istamycin.yaml","istamycin"]],"b":[["NCBITaxon%3A29308","Streptomyces tenjimariensis"]]},{"id":"NCBITaxon:29456","l":"Alteromonas sp. B-10-31","na":1,"nb":1,"a":[["unclassified/marinostatin.yaml","marinostatin"]],"b":[["NCBITaxon%3A29456","Alteromonas sp. B-10-31"]]},{"id":"NCBITaxon:298386","l":"Photobacterium profundum SS9","na":1,"nb":1,"a":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]],"b":[["NCBITaxon%3A298386","Photobacterium profundum SS9"]]},{"id":"NCBITaxon:29845","l":"Penicillium vulpinum","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"]],"b":[["NCBITaxon%3A29845","Penicillium vulpinum"]]},{"id":"NCBITaxon:298653","l":"Frankia sp. EAN1pec","na":1,"nb":1,"a":[["polyketides/frankiamicin.yaml","frankiamicin"]],"b":[["NCBITaxon%3A298653","Parafrankia sp. EAN1pec"]]},{"id":"NCBITaxon:299254","l":"Streptomyces sp. NRRL 11266","na":1,"nb":1,"a":[["polyketides/tetronomycin.yaml","tetronomycin"]],"b":[["NCBITaxon%3A299254","Streptomyces sp. NRRL 11266"]]},{"id":"NCBITaxon:300251","l":"Paraconiothyrium","na":1,"nb":1,"a":[["polyketides/calbistrin-a.yaml","calbistrin A"]],"b":[["NCBITaxon%3A300256","Paraconiothyrium cyclothyrioides"]]},{"id":"NCBITaxon:307120","l":"Micromonospora marina","na":1,"nb":1,"a":[["unclassified/thiocoraline.yaml","thiocoraline"]],"b":[["NCBITaxon%3A307120","Micromonospora marina"]]},{"id":"NCBITaxon:312309","l":"","na":1,"nb":1,"a":[["unclassified/ape-vf.yaml","APE Vf"]],"b":[["NCBITaxon%3A312309","Aliivibrio fischeri ES114"]]},{"id":"NCBITaxon:313624","l":"Nodularia spumigena CCY9414","na":1,"nb":1,"a":[["amino_acids_and_peptides/spumigin-e.yaml","Spumigin E"]],"b":[["NCBITaxon%3A313624","Nodularia spumigena CCY9414"]]},{"id":"NCBITaxon:314092","l":"Shewanella pneumatophori","na":1,"nb":1,"a":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]],"b":[["NCBITaxon%3A314092","Shewanella pneumatophori"]]},{"id":"NCBITaxon:314563","l":"Streptomyces sp. TP-A0584","na":1,"nb":1,"a":[["amino_acids_and_peptides/goadsporin.yaml","goadsporin"]],"b":[["NCBITaxon%3A314563","Streptomyces sp. TP-A0584"]]},{"id":"NCBITaxon:318829","l":"Magnaporthe oryzae","na":1,"nb":1,"a":[["polyketides/nectriapyrone.yaml","nectriapyrone"]],"b":[["NCBITaxon%3A318829","Pyricularia oryzae"]]},{"id":"NCBITaxon:319633","l":"Streptomyces cinnabarigriseus","na":1,"nb":1,"a":[["amino_acids_and_peptides/cinnabaramide-a.yaml","cinnabaramide A"]],"b":[["NCBITaxon%3A319633","Streptomyces cinnabarigriseus"]]},{"id":"NCBITaxon:322159","l":"Streptococcus thermophilus (strain ATCC BAA-491 / LMD-9)","na":1,"nb":1,"a":[["amino_acids_and_peptides/streptide.yaml","streptide"]],"b":[["NCBITaxon%3A322159","Streptococcus thermophilus LMD-9"]]},{"id":"NCBITaxon:322710","l":"Azotobacter vinelandii DJ","na":1,"nb":1,"a":[["amino_acids_and_peptides/azotobactin-d.yaml","azotobactin D"]],"b":[["NCBITaxon%3A322710","Azotobacter vinelandii DJ"]]},{"id":"NCBITaxon:324869","l":"Lysobacter sp. ATCC 53042","na":1,"nb":1,"a":[["unclassified/lysobactin.yaml","lysobactin"]],"b":[["NCBITaxon%3A324869","Lysobacter sp. ATCC 53042"]]},{"id":"NCBITaxon:329558","l":"Planktothrix agardhii NIVA-CYA 116","na":1,"nb":1,"a":[["unclassified/cyanopeptolin-1138.yaml","cyanopeptolin 1138"]],"b":[["NCBITaxon%3A329558","Planktothrix agardhii NIVA-CYA 116"]]},{"id":"NCBITaxon:333849","l":"","na":1,"nb":1,"a":[["amino_acids_and_peptides/enterocin-a.yaml","enterocin A"]],"b":[["NCBITaxon%3A333849","Enterococcus faecium DO"]]},{"id":"NCBITaxon:333964","l":"Xenorhabdus indica","na":1,"nb":1,"a":[["unclassified/taxlllaid-a.yaml","taxlllaid A"]],"b":[["NCBITaxon%3A333964","Xenorhabdus indica"]]},{"id":"NCBITaxon:334858","l":"Goodfellowiella coeruleoviolacea","na":1,"nb":1,"a":[["amino_acids_and_peptides/epoxomicin.yaml","epoxomicin"]],"b":[["NCBITaxon%3A334858","Goodfellowiella coeruleoviolacea"]]},{"id":"NCBITaxon:335854","l":"Nigrospora oryzae","na":1,"nb":1,"a":[["terpenoids/aphidicolin.yaml","aphidicolin"]],"b":[["NCBITaxon%3A335854","Nigrospora oryzae"]]},{"id":"NCBITaxon:338584","l":"Polymorphospora rubra","na":1,"nb":1,"a":[["terpenoids/trehangelin.yaml","trehangelin"]],"b":[["NCBITaxon%3A338584","Polymorphospora rubra"]]},{"id":"NCBITaxon:338904","l":"Enterobacteriaceae bacterium DC260","na":1,"nb":1,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A338904","Enterobacteriaceae bacterium DC260"]]},{"id":"NCBITaxon:338905","l":"Enterobacteriaceae bacterium DC404","na":1,"nb":1,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A338905","Enterobacteriaceae bacterium DC404"]]},{"id":"NCBITaxon:338906","l":"Enterobacteriaceae bacterium DC416","na":1,"nb":1,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A338906","Enterobacteriaceae bacterium DC416"]]},{"id":"NCBITaxon:338907","l":"Enterobacteriaceae bacterium DC413","na":1,"nb":1,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A338907","Enterobacteriaceae bacterium DC413"]]},{"id":"NCBITaxon:33900","l":"","na":1,"nb":1,"a":[["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"]],"b":[["NCBITaxon%3A33900","Streptomyces murinus"]]},{"id":"NCBITaxon:33902","l":"Streptomyces roseofulvus","na":1,"nb":1,"a":[["polyketides/frenolicin-b.yaml","frenolicin B"]],"b":[["NCBITaxon%3A33902","Streptomyces roseofulvus"]]},{"id":"NCBITaxon:33915","l":"Saccharopolyspora sp.","na":1,"nb":1,"a":[["amino_acids_and_peptides/kyamicin.yaml","kyamicin"]],"b":[["NCBITaxon%3A33915","Saccharopolyspora sp."]]},{"id":"NCBITaxon:340414","l":"Aspergillus fumigatiaffinis","na":1,"nb":1,"a":[["polyketides/neosartorin.yaml","neosartorin"]],"b":[["NCBITaxon%3A340414","Aspergillus fumigatiaffinis"]]},{"id":"NCBITaxon:34392","l":"Microsporum","na":1,"nb":1,"a":[["polyketides/flavoglaucin.yaml","flavoglaucin"]],"b":[["NCBITaxon%3A63405","Microsporum canis"]]},{"id":"NCBITaxon:348901","l":"Cercospora zeina","na":1,"nb":1,"a":[["polyketides/cercosporin-2.yaml","cercosporin"]],"b":[["NCBITaxon%3A348901","Cercospora zeina"]]},{"id":"NCBITaxon:349725","l":"Micromonospora sp. ML1","na":1,"nb":1,"a":[["unclassified/thiocoraline.yaml","thiocoraline"]],"b":[["NCBITaxon%3A349725","Micromonospora sp. ML1"]]},{"id":"NCBITaxon:351674","l":"Xenorhabdus miraniensis","na":1,"nb":1,"a":[["amino_acids_and_peptides/ambactin.yaml","ambactin"]],"b":[["NCBITaxon%3A351674","Xenorhabdus miraniensis"]]},{"id":"NCBITaxon:355249","l":"Streptomyces sp. Tu6071","na":1,"nb":1,"a":[["unclassified/phenalinolactone-a.yaml","phenalinolactone A"]],"b":[["NCBITaxon%3A355249","Streptomyces sp. Tu6071"]]},{"id":"NCBITaxon:356796","l":"Algoriphagus sp. KK10202C","na":1,"nb":1,"a":[["polyketides/carotenoid.yaml","carotenoid"]],"b":[["NCBITaxon%3A356796","Algoriphagus sp. KK10202C"]]},{"id":"NCBITaxon:35700","l":"Heliophilum fasciatum","na":1,"nb":1,"a":[["unclassified/heme-d1.yaml","heme D1"]],"b":[["NCBITaxon%3A35700","Heliophilum fasciatum"]]},{"id":"NCBITaxon:35762","l":"Planobispora rosea","na":1,"nb":1,"a":[["amino_acids_and_peptides/ge2270.yaml","GE2270"]],"b":[["NCBITaxon%3A35762","Planobispora rosea"]]},{"id":"NCBITaxon:357993","l":"Penicillium ribium","na":1,"nb":1,"a":[["alkaloids/psychrophilin-a.yaml","psychrophilin A"]],"b":[["NCBITaxon%3A357993","Penicillium ribium"]]},{"id":"NCBITaxon:360723","l":"Actinomadura melliaura","na":1,"nb":1,"a":[["alkaloids/at2433-a1.yaml","AT2433-A1"]],"b":[["NCBITaxon%3A360723","Actinomadura melliaura"]]},{"id":"NCBITaxon:362242","l":"","na":1,"nb":1,"a":[["polyketides/mycolactone-b.yaml","mycolactone B"]],"b":[["NCBITaxon%3A362242","Mycobacterium ulcerans Agy99"]]},{"id":"NCBITaxon:36642","l":"Aspergillus terricola","na":1,"nb":1,"a":[["polyketides/kojic-acid.yaml","kojic acid"]],"b":[["NCBITaxon%3A138288","Aspergillus terricola var. indicus"]]},{"id":"NCBITaxon:36648","l":"Penicillium hirsutum","na":1,"nb":1,"a":[["polyketides/patulin.yaml","patulin"]],"b":[["NCBITaxon%3A36648","Penicillium hirsutum"]]},{"id":"NCBITaxon:36651","l":"Penicillium digitatum","na":1,"nb":1,"a":[["alkaloids/tryptoquialanine.yaml","tryptoquialanine"]],"b":[["NCBITaxon%3A36651","Penicillium digitatum"]]},{"id":"NCBITaxon:36653","l":"Penicillium commune","na":1,"nb":1,"a":[["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]],"b":[["NCBITaxon%3A36653","Penicillium commune"]]},{"id":"NCBITaxon:36654","l":"Penicillium gladioli","na":1,"nb":1,"a":[["unclassified/4-oxomacrophorin-a.yaml","4-oxomacrophorin A"]],"b":[["NCBITaxon%3A36654","Penicillium gladioli"]]},{"id":"NCBITaxon:367779","l":"Streptomyces sp. NRRL 30748","na":1,"nb":1,"a":[["polyketides/meridamycin.yaml","meridamycin"]],"b":[["NCBITaxon%3A367779","Streptomyces sp. NRRL 30748"]]},{"id":"NCBITaxon:370437","l":"Dietzia sp. CQ4","na":1,"nb":1,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A370437","Dietzia sp. CQ4"]]},{"id":"NCBITaxon:371632","l":"Candidatus Streptomyces philanthi bv. triangulum","na":1,"nb":1,"a":[["polyketides/piericidin-a.yaml","piericidin A"]],"b":[["NCBITaxon%3A371632","Candidatus Streptomyces philanthi bv. triangulum"]]},{"id":"NCBITaxon:373994","l":"Rivularia sp. PCC 7116","na":1,"nb":1,"a":[["amino_acids_and_peptides/cyanochelin-a.yaml","cyanochelin A"]],"b":[["NCBITaxon%3A373994","Rivularia sp. PCC 7116"]]},{"id":"NCBITaxon:375285","l":"Pseudoalteromonas sp. DS-12","na":1,"nb":1,"a":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]],"b":[["NCBITaxon%3A375285","Pseudoalteromonas sp. DS-12"]]},{"id":"NCBITaxon:37727","l":"Talaromyces marneffei","na":1,"nb":1,"a":[["polyketides/monascorubrin.yaml","monascorubrin"]],"b":[["NCBITaxon%3A37727","Talaromyces marneffei"]]},{"id":"NCBITaxon:38005","l":"Tolypocladium cylindrosporum","na":1,"nb":1,"a":[["unclassified/terpendole-e.yaml","terpendole E"]],"b":[["NCBITaxon%3A38005","Tolypocladium cylindrosporum"]]},{"id":"NCBITaxon:388913","l":"","na":1,"nb":1,"a":[["alkaloids/isoindolin-1-one.yaml","isoindolin-1-one"]],"b":[["NCBITaxon%3A1283841","Stachybotrys chlorohalonatus IBT 40285"]]},{"id":"NCBITaxon:38945","l":"Flammulina velutipes","na":1,"nb":1,"a":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]],"b":[["NCBITaxon%3A38945","Flammulina velutipes"]]},{"id":"NCBITaxon:390239","l":"Streptomyces lohii","na":1,"nb":1,"a":[["polyketides/bafilomycin-b1.yaml","bafilomycin B1"]],"b":[["NCBITaxon%3A390239","Streptomyces lohii"]]},{"id":"NCBITaxon:39291","l":"","na":1,"nb":1,"a":[["amino_acids_and_peptides/ethynylserine.yaml","β-ethynylserine"]],"b":[["NCBITaxon%3A39291","Agroathelia rolfsii"]]},{"id":"NCBITaxon:394","l":"Sinorhizobium fredii (strain NBRC 101917 / NGR234)","na":1,"nb":1,"a":[["terpenoids/gibberellin.yaml","gibberellin"]],"b":[["NCBITaxon%3A394","Sinorhizobium fredii NGR234"]]},{"id":"NCBITaxon:394193","l":"Amycolatopsis saalfeldensis","na":1,"nb":1,"a":[["amino_acids_and_peptides/saalfelduracin.yaml","saalfelduracin"]],"b":[["NCBITaxon%3A394193","Amycolatopsis saalfeldensis"]]},{"id":"NCBITaxon:39447","l":"","na":1,"nb":1,"a":[["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"]],"b":[["NCBITaxon%3A39447","Gymnodinium catenatum"]]},{"id":"NCBITaxon:39478","l":"Streptomyces laurentii","na":1,"nb":1,"a":[["amino_acids_and_peptides/thiostrepton.yaml","thiostrepton"]],"b":[["NCBITaxon%3A39478","Streptomyces laurentii"]]},{"id":"NCBITaxon:396596","l":"Burkholderia ambifaria IOP40-10","na":1,"nb":1,"a":[["polyketides/cepacin-a.yaml","cepacin A"]],"b":[["NCBITaxon%3A396596","Burkholderia ambifaria IOP40-10"]]},{"id":"NCBITaxon:40199","l":"Fusarium avenaceum","na":1,"nb":1,"a":[["unclassified/beauvericin.yaml","beauvericin"]],"b":[["NCBITaxon%3A40199","Fusarium avenaceum"]]},{"id":"NCBITaxon:40381","l":"Aspergillus unguis","na":1,"nb":1,"a":[["polyketides/sterigmatocystin.yaml","sterigmatocystin"]],"b":[["NCBITaxon%3A40381","Aspergillus unguis"]]},{"id":"NCBITaxon:404220","l":"Streptomyces sp. CK4412","na":1,"nb":1,"a":[["polyketides/tautomycetin-2.yaml","tautomycetin"]],"b":[["NCBITaxon%3A404220","Streptomyces sp. CK4412"]]},{"id":"NCBITaxon:40492","l":"Stereum hirsutum","na":1,"nb":1,"a":[["terpenoids/hirsutene.yaml","hirsutene"]],"b":[["NCBITaxon%3A40492","Stereum hirsutum"]]},{"id":"NCBITaxon:40993","l":"Aspergillus carbonarius","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"]],"b":[["NCBITaxon%3A40993","Aspergillus carbonarius"]]},{"id":"NCBITaxon:41047","l":"Aspergillus thermomutatus","na":1,"nb":1,"a":[["unclassified/pyripyropene-a.yaml","pyripyropene A"]],"b":[["NCBITaxon%3A41047","Aspergillus thermomutatus"]]},{"id":"NCBITaxon:41057","l":"Aspergillus unilateralis","na":1,"nb":1,"a":[["unclassified/viridicatumtoxin.yaml","viridicatumtoxin"]],"b":[["NCBITaxon%3A41057","Aspergillus unilateralis"]]},{"id":"NCBITaxon:411144","l":"Amycolatopsis sp. CP2808","na":1,"nb":1,"a":[["polyketides/ansacarbamitocin.yaml","ansacarbamitocin"]],"b":[["NCBITaxon%3A411144","Amycolatopsis sp. CP2808"]]},{"id":"NCBITaxon:41281","l":"Aspergillus niveus","na":1,"nb":1,"a":[["alkaloids/aspochalasin-c.yaml","aspochalasin C"]],"b":[["NCBITaxon%3A41281","Aspergillus niveus"]]},{"id":"NCBITaxon:41288","l":"Aspergillus aureoterreus","na":1,"nb":1,"a":[["polyketides/citreoviridin.yaml","citreoviridin"]],"b":[["NCBITaxon%3A41288","Aspergillus aureoterreus"]]},{"id":"NCBITaxon:41413","l":"Aspergillus glaucus","na":1,"nb":1,"a":[["polyketides/flavoglaucin.yaml","flavoglaucin"]],"b":[["NCBITaxon%3A1906","Streptomyces fradiae"]]},{"id":"NCBITaxon:414689","l":"Nostoc sp. 'Peltigera membranacea cyanobiont'","na":1,"nb":1,"a":[["polyketides/nosperin.yaml","nosperin"]],"b":[["NCBITaxon%3A414689","Nostoc sp. 'Peltigera membranacea cyanobiont'"]]},{"id":"NCBITaxon:414996","l":"Actinopolyspora erythraea","na":1,"nb":1,"a":[["carbohydrates/tubercidin.yaml","tubercidin"]],"b":[["NCBITaxon%3A414996","Actinopolyspora erythraea"]]},{"id":"NCBITaxon:416175","l":"Actinomyces sp. Lu 9419","na":1,"nb":1,"a":[["carbohydrates/cetoniacytone-a.yaml","cetoniacytone A"]],"b":[["NCBITaxon%3A416175","Actinomyces sp. Lu 9419"]]},{"id":"NCBITaxon:41759","l":"Aspergillus multicolor","na":1,"nb":1,"a":[["polyketides/sterigmatocystin.yaml","sterigmatocystin"]],"b":[["NCBITaxon%3A41759","Aspergillus multicolor"]]},{"id":"NCBITaxon:418759","l":"Saccharopolyspora cebuensis","na":1,"nb":1,"a":[["amino_acids_and_peptides/cebulantin.yaml","cebulantin"]],"b":[["NCBITaxon%3A418759","Saccharopolyspora cebuensis"]]},{"id":"NCBITaxon:418855","l":"","na":1,"nb":1,"a":[["terpenoids/napyradiomycin.yaml","napyradiomycin"]],"b":[["NCBITaxon%3A418855","Streptomyces sp. CNQ-525"]]},{"id":"NCBITaxon:41984","l":"Aspergillus tamarii","na":1,"nb":1,"a":[["unclassified/cyclopiazonic-acid.yaml","α-cyclopiazonic acid"]],"b":[["NCBITaxon%3A41984","Aspergillus tamarii"]]},{"id":"NCBITaxon:426436","l":"","na":1,"nb":1,"a":[["terpenoids/2-methylisoborneol.yaml","2-methylisoborneol"]],"b":[["NCBITaxon%3A426436","Phormidium tenue BDU 40061"]]},{"id":"NCBITaxon:42673","l":"Fusarium nygamai","na":1,"nb":1,"a":[["alkaloids/fusaric-acid.yaml","fusaric acid"]],"b":[["NCBITaxon%3A42673","Fusarium nygamai"]]},{"id":"NCBITaxon:428401","l":"Streptomyces sp. UC 11065","na":1,"nb":1,"a":[["alkaloids/pyrrolomycin-a.yaml","pyrrolomycin A"]],"b":[["NCBITaxon%3A428401","Streptomyces sp. UC 11065"]]},{"id":"NCBITaxon:428986","l":"Micromonospora sp. Tu 6368","na":1,"nb":1,"a":[["polyketides/saquayamycin-z.yaml","saquayamycin Z"]],"b":[["NCBITaxon%3A428986","Micromonospora sp. Tu 6368"]]},{"id":"NCBITaxon:434487","l":"Penicillium novae-zeelandiae","na":1,"nb":1,"a":[["unclassified/penitrem-a.yaml","penitrem A"]],"b":[["NCBITaxon%3A434487","Penicillium novae-zeelandiae"]]},{"id":"NCBITaxon:43759","l":"Streptomyces wedmorensis","na":1,"nb":1,"a":[["unclassified/fosfomycin.yaml","fosfomycin"]],"b":[["NCBITaxon%3A43759","Streptomyces wedmorensis"]]},{"id":"NCBITaxon:443906","l":"Clavibacter michiganensis subsp. michiganensis NCPPB 382","na":1,"nb":1,"a":[["amino_acids_and_peptides/michiganin-a.yaml","michiganin A"]],"b":[["NCBITaxon%3A443906","Clavibacter michiganensis subsp. michiganensis NCPPB 382"]]},{"id":"NCBITaxon:445969","l":"Duganella sp. B2","na":1,"nb":1,"a":[["alkaloids/violacein.yaml","violacein"]],"b":[["NCBITaxon%3A445969","Duganella sp. B2"]]},{"id":"NCBITaxon:446787","l":"Actinopolymorpha rutila","na":1,"nb":1,"a":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"]],"b":[["NCBITaxon%3A446787","Actinopolymorpha rutila"]]},{"id":"NCBITaxon:449440","l":"Microcystis aeruginosa NIES-87","na":1,"nb":1,"a":[["amino_acids_and_peptides/kasumigamide.yaml","kasumigamide"]],"b":[["NCBITaxon%3A449440","Microcystis aeruginosa NIES-87"]]},{"id":"NCBITaxon:449441","l":"Microcystis aeruginosa NIES-88","na":1,"nb":1,"a":[["amino_acids_and_peptides/kawaguchipeptin-a.yaml","kawaguchipeptin A"]],"b":[["NCBITaxon%3A449441","Microcystis aeruginosa NIES-88"]]},{"id":"NCBITaxon:45","l":"Melittangium lichenicola","na":1,"nb":1,"a":[["unclassified/melithiazol-a.yaml","melithiazol A"]],"b":[["NCBITaxon%3A45","Melittangium lichenicola"]]},{"id":"NCBITaxon:45071","l":"Legionella parisiensis","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/legioliulin.yaml","legioliulin"]],"b":[["NCBITaxon%3A45071","Legionella parisiensis"]]},{"id":"NCBITaxon:45151","l":"Pyrenophora tritici-repentis","na":1,"nb":1,"a":[["unclassified/triticone-b.yaml","triticone B"]],"b":[["NCBITaxon%3A45151","Pyrenophora tritici-repentis"]]},{"id":"NCBITaxon:45847","l":"","na":1,"nb":1,"a":[["unclassified/beauvericin.yaml","beauvericin"]],"b":[["NCBITaxon%3A45847","Cordyceps tenuipes"]]},{"id":"NCBITaxon:459664","l":"Aphanizomenon sp. 10E6","na":1,"nb":1,"a":[["alkaloids/7-epi-cylindrospermopsin.yaml","7-epi-cylindrospermopsin"]],"b":[["NCBITaxon%3A459664","Aphanizomenon sp. 10E6"]]},{"id":"NCBITaxon:459665","l":"Aphanizomenon sp. 10E9","na":1,"nb":1,"a":[["alkaloids/7-epi-cylindrospermopsin.yaml","7-epi-cylindrospermopsin"]],"b":[["NCBITaxon%3A459665","Aphanizomenon sp. 10E9"]]},{"id":"NCBITaxon:459668","l":"Aphanizomenon sp. 22D11","na":1,"nb":1,"a":[["alkaloids/7-epi-cylindrospermopsin.yaml","7-epi-cylindrospermopsin"]],"b":[["NCBITaxon%3A459668","Aphanizomenon sp. 22D11"]]},{"id":"NCBITaxon:46182","l":"Nonomuraea spiralis","na":1,"nb":1,"a":[["carbohydrates/pyralomicin-1a.yaml","pyralomicin 1a"]],"b":[["NCBITaxon%3A46182","Nonomuraea spiralis"]]},{"id":"NCBITaxon:465543","l":"Streptomyces sp. SPB074","na":1,"nb":1,"a":[["polyketides/cinerubin-b.yaml","cinerubin B"]],"b":[["NCBITaxon%3A465543","Streptomyces sp. SPB074"]]},{"id":"NCBITaxon:47312","l":"Tsukamurella pulmonis","na":1,"nb":1,"a":[["amino_acids_and_peptides/longicatenamide-a.yaml","longicatenamide A"]],"b":[["NCBITaxon%3A47312","Tsukamurella pulmonis"]]},{"id":"NCBITaxon:47427","l":"Armillaria gallica","na":1,"nb":1,"a":[["terpenoids/8-hydroxy-6-protoilludene.yaml","8α-hydroxy-6-protoilludene"]],"b":[["NCBITaxon%3A47427","Armillaria gallica"]]},{"id":"NCBITaxon:476552","l":"Streptomyces milbemycinicus","na":1,"nb":1,"a":[["polyketides/nanchangmycin.yaml","nanchangmycin"]],"b":[["NCBITaxon%3A476552","Streptomyces milbemycinicus"]]},{"id":"NCBITaxon:477245","l":"Streptomyces cyaneogriseus subsp. noncyanogenus","na":1,"nb":1,"a":[["polyketides/ll-f28249.yaml","LL-F28249α"]],"b":[["NCBITaxon%3A477245","Streptomyces cyaneogriseus subsp. noncyanogenus"]]},{"id":"NCBITaxon:47759","l":"Streptomyces tubercidicus","na":1,"nb":1,"a":[["carbohydrates/tubercidin.yaml","tubercidin"]],"b":[["NCBITaxon%3A47759","Streptomyces tubercidicus"]]},{"id":"NCBITaxon:478021","l":"Cylindrospermopsis raciborskii AWT205","na":1,"nb":1,"a":[["alkaloids/7-epi-cylindrospermopsin.yaml","7-epi-cylindrospermopsin"]],"b":[["NCBITaxon%3A478021","Cylindrospermopsis raciborskii AWT205"]]},{"id":"NCBITaxon:478108","l":"Actinoallomurus fulvus","na":1,"nb":1,"a":[["polyketides/actinoallolide-a.yaml","actinoallolide A"]],"b":[["NCBITaxon%3A478108","Actinoallomurus fulvus"]]},{"id":"NCBITaxon:47854","l":"Micromonospora chersina","na":1,"nb":1,"a":[["polyketides/dynemicin-a.yaml","dynemicin A"]],"b":[["NCBITaxon%3A47854","Micromonospora chersina"]]},{"id":"NCBITaxon:47866","l":"Micromonospora inyonensis","na":1,"nb":1,"a":[["carbohydrates/sisomycin.yaml","sisomycin"]],"b":[["NCBITaxon%3A47866","Micromonospora inyonensis"]]},{"id":"NCBITaxon:483219","l":"Myxococcus fulvus HW-1","na":1,"nb":1,"a":[["unclassified/myxochromide-a-2.yaml","myxochromide A"]],"b":[["NCBITaxon%3A483219","Myxococcus fulvus HW-1"]]},{"id":"NCBITaxon:48563","l":"Suillus bovinus","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/atromentin.yaml","atromentin"]],"b":[["NCBITaxon%3A48563","Suillus bovinus"]]},{"id":"NCBITaxon:497965","l":"","na":1,"nb":1,"a":[["fatty_acids/1-heptadecene.yaml","1-heptadecene"]],"b":[["NCBITaxon%3A497965","Gloeothece verrucosa PCC 7822"]]},{"id":"NCBITaxon:5057","l":"Aspergillus clavatus","na":1,"nb":1,"a":[["alkaloids/cytochalasin-e.yaml","cytochalasin E"]],"b":[["NCBITaxon%3A5057","Aspergillus clavatus"]]},{"id":"NCBITaxon:507735","l":"Microcystis aeruginosa MRC","na":1,"nb":1,"a":[["unclassified/microviridin-j.yaml","microviridin J"]],"b":[["NCBITaxon%3A507735","Microcystis aeruginosa MRC"]]},{"id":"NCBITaxon:512","l":"Alcaligenes sp","na":1,"nb":1,"a":[["polyketides/kalimantacin-a.yaml","kalimantacin A"]],"b":[["NCBITaxon%3A512","Alcaligenes sp."]]},{"id":"NCBITaxon:525326","l":"Lactobacillus paragasseri JV-V03","na":1,"nb":1,"a":[["amino_acids_and_peptides/lactocillin.yaml","lactocillin"]],"b":[["NCBITaxon%3A525326","Lactobacillus paragasseri JV-V03"]]},{"id":"NCBITaxon:528191","l":"Paenibacillus xylanexedens","na":1,"nb":1,"a":[["amino_acids_and_peptides/macolacin.yaml","macolacin"]],"b":[["NCBITaxon%3A528191","Paenibacillus xylanexedens"]]},{"id":"NCBITaxon:529089","l":"Streptomyces sp. 307-9","na":1,"nb":1,"a":[["polyketides/tirandamycin.yaml","tirandamycin"]],"b":[["NCBITaxon%3A529089","Streptomyces sp. 307-9"]]},{"id":"NCBITaxon:5353","l":"Lentinula edodes","na":1,"nb":1,"a":[["amino_acids_and_peptides/lentinulin-a.yaml","lentinulin A"]],"b":[["NCBITaxon%3A5353","Lentinula edodes"]]},{"id":"NCBITaxon:541229","l":"Bacillus thuringiensis serovar chinensis CT-43","na":1,"nb":1,"a":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"]],"b":[["NCBITaxon%3A541229","Bacillus thuringiensis serovar chinensis CT-43"]]},{"id":"NCBITaxon:5454","l":"","na":1,"nb":1,"a":[["polyketides/solanapyrone-a.yaml","solanapyrone A"]],"b":[["NCBITaxon%3A5454","Ascochyta rabiei"]]},{"id":"NCBITaxon:546365","l":"Amycolatopsis regifaucium","na":1,"nb":1,"a":[["amino_acids_and_peptides/decaplanin.yaml","decaplanin"]],"b":[["NCBITaxon%3A546365","Amycolatopsis regifaucium"]]},{"id":"NCBITaxon:5526","l":"Humicola","na":1,"nb":1,"a":[["polyketides/monorden-d.yaml","monorden D"]],"b":[["NCBITaxon%3A1756120","Humicola sp."]]},{"id":"NCBITaxon:553510","l":"Streptomyces gilvosporeus","na":1,"nb":1,"a":[["polyketides/natamycin.yaml","natamycin"]],"b":[["NCBITaxon%3A553510","Streptomyces gilvosporeus"]]},{"id":"NCBITaxon:5538","l":"Scytalidium","na":1,"nb":1,"a":[["polyketides/scytalone.yaml","scytalone"]],"b":[["NCBITaxon%3A5539","Scytalidium lignicola"]]},{"id":"NCBITaxon:5587","l":"Rhinocladiella","na":1,"nb":1,"a":[["alkaloids/cytochalasin-e.yaml","cytochalasin E"]],"b":[["NCBITaxon%3A86056","Rhinocladiella mackenziei"]]},{"id":"NCBITaxon:563072","l":"Shewanella sp. BR-2","na":1,"nb":1,"a":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]],"b":[["NCBITaxon%3A563072","Shewanella sp. BR-2"]]},{"id":"NCBITaxon:565073","l":"Streptomyces tateyamensis","na":1,"nb":1,"a":[["amino_acids_and_peptides/thiopeptin.yaml","thiopeptin"]],"b":[["NCBITaxon%3A565073","Streptomyces tateyamensis"]]},{"id":"NCBITaxon:568701","l":"","na":1,"nb":1,"a":[["fatty_acids/1-heptadecene.yaml","1-heptadecene"]],"b":[["NCBITaxon%3A568701","Moorena bouillonii PNG"]]},{"id":"NCBITaxon:57153","l":"Neonectria coccinea","na":1,"nb":1,"a":[["unclassified/ilicicolin-b.yaml","ilicicolin B"]],"b":[["NCBITaxon%3A57153","Neonectria coccinea"]]},{"id":"NCBITaxon:573242","l":"Streptomyces sp. TA-0256","na":1,"nb":1,"a":[["polyketides/fd-594.yaml","FD-594"]],"b":[["NCBITaxon%3A573242","Streptomyces sp. TA-0256"]]},{"id":"NCBITaxon:573841","l":"Sordaria araneosa","na":1,"nb":1,"a":[["terpenoids/sordarin.yaml","sordarin"]],"b":[["NCBITaxon%3A573841","Sordaria araneosa"]]},{"id":"NCBITaxon:578457","l":"","na":1,"nb":1,"a":[["terpenoids/ent-kauren-16alpha-ol.yaml","ent-kauren-16alpha-ol"]],"b":[["NCBITaxon%3A578457","Serpula lacrymans var. lacrymans S7.9"]]},{"id":"NCBITaxon:579932","l":"Streptomyces sp. FXJ7.023","na":1,"nb":1,"a":[["polyketides/lobophorin-a.yaml","lobophorin A"]],"b":[["NCBITaxon%3A579932","Streptomyces sp. FXJ7.023"]]},{"id":"NCBITaxon:58344","l":"Streptomyces celluloflavus","na":1,"nb":1,"a":[["alkaloids/thiolutin.yaml","thiolutin"]],"b":[["NCBITaxon%3A58344","Streptomyces celluloflavus"]]},{"id":"NCBITaxon:58345","l":"Streptomyces mauvecolor","na":1,"nb":1,"a":[["polyketides/rimocidin.yaml","rimocidin"]],"b":[["NCBITaxon%3A58345","Streptomyces mauvecolor"]]},{"id":"NCBITaxon:589385","l":"Amycolatopsis xylanica","na":1,"nb":1,"a":[["amino_acids_and_peptides/amyxirubin-b.yaml","Amyxirubin B"]],"b":[["NCBITaxon%3A589385","Amycolatopsis xylanica"]]},{"id":"NCBITaxon:591158","l":"Streptomyces sp. AA4","na":1,"nb":1,"a":[["amino_acids_and_peptides/amychelin-a.yaml","amychelin A"]],"b":[["NCBITaxon%3A591158","Streptomyces sp. AA4"]]},{"id":"NCBITaxon:59625","l":"Microcystis sp. NIVA-CYA 172/5","na":1,"nb":1,"a":[["unclassified/cyanopeptolin.yaml","cyanopeptolin"]],"b":[["NCBITaxon%3A59625","Microcystis sp. NIVA-CYA 172/5"]]},{"id":"NCBITaxon:600778","l":"Microcystis aeruginosa K-139","na":1,"nb":1,"a":[["unclassified/micropeptin-k139.yaml","micropeptin K139"]],"b":[["NCBITaxon%3A600778","Microcystis aeruginosa K-139"]]},{"id":"NCBITaxon:60169","l":"Penicillium polonicum","na":1,"nb":1,"a":[["polyketides/verrucosidin.yaml","verrucosidin"]],"b":[["NCBITaxon%3A60169","Penicillium polonicum"]]},{"id":"NCBITaxon:60174","l":"Penicillium echinulatum","na":1,"nb":1,"a":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"]],"b":[["NCBITaxon%3A60174","Penicillium echinulatum"]]},{"id":"NCBITaxon:616","l":"","na":1,"nb":1,"a":[["alkaloids/prodigiosin-2.yaml","prodigiosin"]],"b":[["NCBITaxon%3A616","Serratia sp. (in: enterobacteria)"]]},{"id":"NCBITaxon:63396","l":"Ustilago cynodontis","na":1,"nb":1,"a":[["fatty_acids/itaconic-acid.yaml","itaconic acid"]],"b":[["NCBITaxon%3A63396","Ustilago cynodontis"]]},{"id":"NCBITaxon:63577","l":"Trichoderma atroviride","na":1,"nb":1,"a":[["terpenoids/trichobrasilenol.yaml","trichobrasilenol"]],"b":[["NCBITaxon%3A63577","Trichoderma atroviride"]]},{"id":"NCBITaxon:639005","l":"Streptomyces sp. DSM 21069","na":1,"nb":1,"a":[["unclassified/be-14106.yaml","BE-14106"]],"b":[["NCBITaxon%3A639005","Streptomyces sp. DSM 21069"]]},{"id":"NCBITaxon:639006","l":"Streptomyces sp. MP39-85","na":1,"nb":1,"a":[["unclassified/ml-449.yaml","ML-449"]],"b":[["NCBITaxon%3A639006","Streptomyces sp. MP39-85"]]},{"id":"NCBITaxon:64363","l":"Dothistroma septosporum","na":1,"nb":1,"a":[["polyketides/dothistromin.yaml","dothistromin"]],"b":[["NCBITaxon%3A64363","Dothistroma septosporum"]]},{"id":"NCBITaxon:646534","l":"Grimontia marina","na":1,"nb":1,"a":[["amino_acids_and_peptides/grimoviridin.yaml","grimoviridin"]],"b":[["NCBITaxon%3A646534","Grimontia marina"]]},{"id":"NCBITaxon:653884","l":"Nonomuraea sp. WU8817","na":1,"nb":1,"a":[["amino_acids_and_peptides/ge2270.yaml","GE2270"]],"b":[["NCBITaxon%3A653884","Nonomuraea sp. WU8817"]]},{"id":"NCBITaxon:653921","l":"Nonomuraea sp. Bp3714-39","na":1,"nb":1,"a":[["amino_acids_and_peptides/thiomuracin-a.yaml","thiomuracin A"]],"b":[["NCBITaxon%3A653921","Nonomuraea sp. Bp3714-39"]]},{"id":"NCBITaxon:654496","l":"Thelephora aurantiotincta","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/atromentin.yaml","atromentin"]],"b":[["NCBITaxon%3A654496","Thelephora aurantiotincta"]]},{"id":"NCBITaxon:657419","l":"Tistrella bauzanensis","na":1,"nb":1,"a":[["unclassified/thalassospiramide-a.yaml","thalassospiramide A"]],"b":[["NCBITaxon%3A657419","Tistrella bauzanensis"]]},{"id":"NCBITaxon:657443","l":"Aspergillus violaceofuscus","na":1,"nb":1,"a":[["polyketides/pyranoviolin-a.yaml","pyranoviolin A"]],"b":[["NCBITaxon%3A657443","Aspergillus violaceofuscus"]]},{"id":"NCBITaxon:660122","l":"Fusarium vanettenii (strain ATCC MYA-4622 / CBS 123669 / FGSC 9596 / NRRL 45880 / 77-13-4)","na":1,"nb":1,"a":[["unclassified/sansalvamide.yaml","sansalvamide"]],"b":[["NCBITaxon%3A660122","Fusarium vanettenii 77-13-4"]]},{"id":"NCBITaxon:66425","l":"Streptomyces luteoverticillatus","na":1,"nb":1,"a":[["alkaloids/carbazomycin-b.yaml","carbazomycin B"]],"b":[["NCBITaxon%3A66425","Streptomyces luteoverticillatus"]]},{"id":"NCBITaxon:66428","l":"Streptomyces parvus","na":1,"nb":1,"a":[["unclassified/vicenistatin.yaml","vicenistatin"]],"b":[["NCBITaxon%3A66428","Streptomyces parvus"]]},{"id":"NCBITaxon:665029","l":"Erwinia amylovora CFBP1430","na":1,"nb":1,"a":[["alkaloids/tioguanine.yaml","tioguanine"]],"b":[["NCBITaxon%3A665029","Erwinia amylovora CFBP1430"]]},{"id":"NCBITaxon:665959","l":"Bacillus sp. 2_A_57_CT2","na":1,"nb":1,"a":[["fatty_acids/n-acyl-serinol.yaml","N-acyl serinol"]],"b":[["NCBITaxon%3A665959","Bacillus sp. 2_A_57_CT2"]]},{"id":"NCBITaxon:66872","l":"Streptomyces baarnensis","na":1,"nb":1,"a":[["unclassified/antimycin-a.yaml","antimycin A"]],"b":[["NCBITaxon%3A66872","Streptomyces baarnensis"]]},{"id":"NCBITaxon:66876","l":"Streptomyces chattanoogensis","na":1,"nb":1,"a":[["polyketides/natamycin.yaml","natamycin"]],"b":[["NCBITaxon%3A66876","Streptomyces chattanoogensis"]]},{"id":"NCBITaxon:66883","l":"Streptomyces cyaneofuscatus","na":1,"nb":1,"a":[["polyketides/anthracimycin.yaml","anthracimycin"]],"b":[["NCBITaxon%3A66883","Streptomyces cyaneofuscatus"]]},{"id":"NCBITaxon:66887","l":"Streptomyces filipinensis","na":1,"nb":1,"a":[["polyketides/filipin-iii.yaml","filipin III"]],"b":[["NCBITaxon%3A66887","Streptomyces filipinensis"]]},{"id":"NCBITaxon:66889","l":"","na":1,"nb":1,"a":[["amino_acids_and_peptides/zorbamycin.yaml","zorbamycin"]],"b":[["NCBITaxon%3A28893","Streptomyces pilosus"]]},{"id":"NCBITaxon:66896","l":"","na":1,"nb":1,"a":[["amino_acids_and_peptides/alazopeptin.yaml","alazopeptin"]],"b":[["NCBITaxon%3A66896","Peterkaempfera griseoplana"]]},{"id":"NCBITaxon:67302","l":"Streptomyces fumanus","na":1,"nb":1,"a":[["alkaloids/pyrrolomycin-c.yaml","pyrrolomycin C"]],"b":[["NCBITaxon%3A67302","Streptomyces fumanus"]]},{"id":"NCBITaxon:67303","l":"","na":1,"nb":1,"a":[["polyketides/chrysomycin.yaml","chrysomycin"]],"b":[["NCBITaxon%3A67303","Streptomyces griseoloalbus"]]},{"id":"NCBITaxon:67314","l":"Streptomyces lavendofoliae","na":1,"nb":1,"a":[["amino_acids_and_peptides/fosfazinomycin-b.yaml","fosfazinomycin B"]],"b":[["NCBITaxon%3A67314","Streptomyces lavendofoliae"]]},{"id":"NCBITaxon:67315","l":"Streptomyces lavenduligriseus","na":1,"nb":1,"a":[["polyketides/filipin-iii.yaml","filipin III"]],"b":[["NCBITaxon%3A67315","Streptomyces lavenduligriseus"]]},{"id":"NCBITaxon:67320","l":"Streptomyces luridus","na":1,"nb":1,"a":[["amino_acids_and_peptides/dehydrophos.yaml","dehydrophos"]],"b":[["NCBITaxon%3A67320","Streptomyces luridus"]]},{"id":"NCBITaxon:67326","l":"Streptomyces melanogenes","na":1,"nb":1,"a":[["polyketides/cinerubin-b.yaml","cinerubin B"]],"b":[["NCBITaxon%3A67326","Streptomyces melanogenes"]]},{"id":"NCBITaxon:67327","l":"Streptomyces melanosporofaciens","na":1,"nb":1,"a":[["terpenoids/cyclooctatin.yaml","cyclooctatin"]],"b":[["NCBITaxon%3A67327","Streptomyces melanosporofaciens"]]},{"id":"NCBITaxon:67352","l":"Streptomyces purpeofuscus","na":1,"nb":1,"a":[["unclassified/clifednamide-a-2.yaml","clifednamide A"]],"b":[["NCBITaxon%3A67352","Kitasatospora purpeofusca"]]},{"id":"NCBITaxon:67358","l":"Streptomyces roseolus","na":1,"nb":1,"a":[["unclassified/aflatoxin-b1.yaml","aflatoxin B1"]],"b":[["NCBITaxon%3A67358","Streptomyces roseolus"]]},{"id":"NCBITaxon:67363","l":"Streptomyces sindenensis","na":1,"nb":1,"a":[["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"]],"b":[["NCBITaxon%3A67363","Streptomyces sindenensis"]]},{"id":"NCBITaxon:67366","l":"Streptomyces spiroverticillatus","na":1,"nb":1,"a":[["polyketides/tautomycin.yaml","tautomycin"]],"b":[["NCBITaxon%3A67366","Streptomyces spiroverticillatus"]]},{"id":"NCBITaxon:67369","l":"Streptomyces toxytricini","na":1,"nb":1,"a":[["polyketides/lipstatin.yaml","lipstatin"]],"b":[["NCBITaxon%3A67369","Streptomyces toxytricini"]]},{"id":"NCBITaxon:674034","l":"Pseudomonas sp. J465","na":1,"nb":1,"a":[["unclassified/enterobactin.yaml","enterobactin"]],"b":[["NCBITaxon%3A674034","Pseudomonas sp. J465"]]},{"id":"NCBITaxon:679622","l":"Bacillus sp. CS93","na":1,"nb":1,"a":[["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"]],"b":[["NCBITaxon%3A679622","Bacillus sp. CS93"]]},{"id":"NCBITaxon:68172","l":"","na":1,"nb":1,"a":[["polyketides/chrysomycin.yaml","chrysomycin"]],"b":[["NCBITaxon%3A67303","Streptomyces griseoloalbus"]]},{"id":"NCBITaxon:68200","l":"Streptomyces flavofungini","na":1,"nb":1,"a":[["polyketides/desertomycin-a.yaml","desertomycin A"]],"b":[["NCBITaxon%3A68200","Streptomyces flavofungini"]]},{"id":"NCBITaxon:68237","l":"Streptomyces mediolani","na":1,"nb":1,"a":[["terpenoids/isorenieratene.yaml","isorenieratene"]],"b":[["NCBITaxon%3A68237","Streptomyces mediolani"]]},{"id":"NCBITaxon:682634","l":"Serratia plymuthica 4Rx13","na":1,"nb":1,"a":[["terpenoids/sodorifen.yaml","sodorifen"]],"b":[["NCBITaxon%3A682634","Serratia plymuthica 4Rx13"]]},{"id":"NCBITaxon:68268","l":"Streptomyces showdoensis","na":1,"nb":1,"a":[["carbohydrates/showdomycin.yaml","showdomycin"]],"b":[["NCBITaxon%3A68268","Streptomyces showdoensis"]]},{"id":"NCBITaxon:68274","l":"Streptomyces tauricus","na":1,"nb":1,"a":[["polyketides/cinerubin-b.yaml","cinerubin B"]],"b":[["NCBITaxon%3A68274","Streptomyces tauricus"]]},{"id":"NCBITaxon:683228","l":"Micromonospora yangpuensis","na":1,"nb":1,"a":[["polyketides/yangpumicin-a.yaml","yangpumicin A"]],"b":[["NCBITaxon%3A683228","Micromonospora yangpuensis"]]},{"id":"NCBITaxon:684592","l":"uncultured soil bacterium V167","na":1,"nb":1,"a":[["polyketides/erdacin.yaml","erdacin"]],"b":[["NCBITaxon%3A684592","uncultured soil bacterium V167"]]},{"id":"NCBITaxon:686293","l":"Streptomyces sp. 211726","na":1,"nb":1,"a":[["polyketides/azalomycin-f3a.yaml","azalomycin F3a"]],"b":[["NCBITaxon%3A686293","Streptomyces sp. 211726"]]},{"id":"NCBITaxon:687388","l":"","na":1,"nb":1,"a":[["unclassified/taromycin-a.yaml","taromycin A"]],"b":[["NCBITaxon%3A687388","Saccharomonospora piscinae"]]},{"id":"NCBITaxon:69002","l":"Bacillus sp. HIL-Y85/54728","na":1,"nb":1,"a":[["amino_acids_and_peptides/mersacidin.yaml","mersacidin"]],"b":[["NCBITaxon%3A69002","Bacillus sp. HIL-Y85/54728"]]},{"id":"NCBITaxon:691266","l":"Streptomyces ravidus","na":1,"nb":1,"a":[["polyketides/ravidomycin.yaml","ravidomycin"]],"b":[["NCBITaxon%3A691266","Streptomyces ravidus"]]},{"id":"NCBITaxon:69485","l":"Actinoplanes garbadinensis","na":1,"nb":1,"a":[["amino_acids_and_peptides/actagardine.yaml","actagardine"]],"b":[["NCBITaxon%3A69485","Actinoplanes garbadinensis"]]},{"id":"NCBITaxon:697274","l":"Streptomyces sp. 88-682","na":1,"nb":1,"a":[["polyketides/4-hexadecanoyl-3-hydroxy-2-hydroxymethyl-2h-furan-5-one.yaml","4-hexadecanoyl-3-hydroxy-2-(hydroxymethyl)-2H-furan-5-one"]],"b":[["NCBITaxon%3A697274","Streptomyces sp. 88-682"]]},{"id":"NCBITaxon:69771","l":"Penicillium decumbens","na":1,"nb":1,"a":[["polyketides/decumbenone-a.yaml","decumbenone a"]],"b":[["NCBITaxon%3A69771","Penicillium decumbens"]]},{"id":"NCBITaxon:698760","l":"Streptomyces turgidiscabies Car8","na":1,"nb":1,"a":[["unclassified/thaxtomin-a.yaml","thaxtomin A"]],"b":[["NCBITaxon%3A698760","Streptomyces turgidiscabies Car8"]]},{"id":"NCBITaxon:698778","l":"Streptomyces sp. MDG-04-17-069","na":1,"nb":1,"a":[["unclassified/ikarugamycin.yaml","ikarugamycin"]],"b":[["NCBITaxon%3A698778","Streptomyces sp. MDG-04-17-069"]]},{"id":"NCBITaxon:70094","l":"Penicillium adametzioides","na":1,"nb":1,"a":[["unclassified/adametizine-a.yaml","adametizine A"]],"b":[["NCBITaxon%3A70094","Penicillium adametzioides"]]},{"id":"NCBITaxon:70095","l":"Penicillium fellutanum","na":1,"nb":1,"a":[["unclassified/paraherquamide.yaml","paraherquamide"]],"b":[["NCBITaxon%3A70095","Penicillium fellutanum"]]},{"id":"NCBITaxon:703222","l":"Kibdelosporangium sp. MJ126-NF4","na":1,"nb":1,"a":[["polyketides/azicemicin-b.yaml","azicemicin B"]],"b":[["NCBITaxon%3A703222","Kibdelosporangium sp. MJ126-NF4"]]},{"id":"NCBITaxon:703577","l":"Dactylosporangium aurantiacum subsp. hamdenensis","na":1,"nb":1,"a":[["polyketides/tiacumicin-b.yaml","tiacumicin B"]],"b":[["NCBITaxon%3A703577","Dactylosporangium aurantiacum subsp. hamdenensis"]]},{"id":"NCBITaxon:704114","l":"Micromonospora echinospora subsp. challisensis","na":1,"nb":1,"a":[["polyketides/tln-05220.yaml","TLN-05220"]],"b":[["NCBITaxon%3A704114","Micromonospora echinospora subsp. challisensis"]]},{"id":"NCBITaxon:707671","l":"Nostoc sp. 73.1","na":1,"nb":1,"a":[["amino_acids_and_peptides/nodularin.yaml","nodularin"]],"b":[["NCBITaxon%3A707671","Nostoc sp. 73.1"]]},{"id":"NCBITaxon:718015","l":"Micromonospora sp. GMKU326","na":1,"nb":1,"a":[["unclassified/maklamicin.yaml","maklamicin"]],"b":[["NCBITaxon%3A718015","Micromonospora sp. GMKU326"]]},{"id":"NCBITaxon:71945","l":"Hypholoma sublateritium","na":1,"nb":1,"a":[["terpenoids/clavaric-acid.yaml","clavaric acid"]],"b":[["NCBITaxon%3A945553","Hypholoma sublateritium FD-334 SS-4"]]},{"id":"NCBITaxon:720","l":"Actinobacillus lignieresii","na":1,"nb":1,"a":[["unclassified/capsular-polysaccharide.yaml","capsular polysaccharide"]],"b":[["NCBITaxon%3A720","Actinobacillus lignieresii"]]},{"id":"NCBITaxon:72022","l":"Methylarcula marina","na":1,"nb":1,"a":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]],"b":[["NCBITaxon%3A72022","Paracoccus methylarcula"]]},{"id":"NCBITaxon:72122","l":"Tapinella atrotomentosa","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/atromentin.yaml","atromentin"]],"b":[["NCBITaxon%3A72122","Tapinella atrotomentosa"]]},{"id":"NCBITaxon:73501","l":"Cordyceps militaris","na":1,"nb":1,"a":[["unclassified/beauveriolide-i.yaml","beauveriolide I"]],"b":[["NCBITaxon%3A73501","Cordyceps militaris"]]},{"id":"NCBITaxon:73915","l":"Pyrodinium bahamense","na":1,"nb":1,"a":[["alkaloids/saxitoxin.yaml","saxitoxin"]],"b":[["NCBITaxon%3A73915","Pyrodinium bahamense"]]},{"id":"NCBITaxon:746360","l":"Pseudomonas fluorescens WH6","na":1,"nb":1,"a":[["amino_acids_and_peptides/4-formylaminooxyvinylglycine.yaml","4-formylaminooxyvinylglycine"]],"b":[["NCBITaxon%3A746360","Pseudomonas fluorescens WH6"]]},{"id":"NCBITaxon:746675","l":"Streptomyces sp. SF2575","na":1,"nb":1,"a":[["polyketides/sf2575.yaml","SF2575"]],"b":[["NCBITaxon%3A746675","Streptomyces sp. SF2575"]]},{"id":"NCBITaxon:747457","l":"Pseudoalteromonas sp. SANK 73390","na":1,"nb":1,"a":[["polyketides/thiomarinol.yaml","thiomarinol"]],"b":[["NCBITaxon%3A747457","Pseudoalteromonas sp. SANK 73390"]]},{"id":"NCBITaxon:74831","l":"Penicillium albocoremium","na":1,"nb":1,"a":[["unclassified/andrastin-a.yaml","andrastin A"]],"b":[["NCBITaxon%3A74831","Penicillium albocoremium"]]},{"id":"NCBITaxon:749414","l":"","na":1,"nb":1,"a":[["polyketides/nanchangmycin.yaml","nanchangmycin"]],"b":[["NCBITaxon%3A749414","Streptomyces bingchenggensis BCW-1"]]},{"id":"NCBITaxon:749593","l":"Epicoccum sorghinum","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"]],"b":[["NCBITaxon%3A749593","Epicoccum sorghinum"]]},{"id":"NCBITaxon:754256","l":"Actinobacillus pleuropneumoniae serovar 6 str. Femo","na":1,"nb":1,"a":[["unclassified/capsular-polysaccharide.yaml","capsular polysaccharide"]],"b":[["NCBITaxon%3A754256","Actinobacillus pleuropneumoniae serovar 6 str. Femo"]]},{"id":"NCBITaxon:756733","l":"Streptoalloteichus sp. ATCC 53650","na":1,"nb":1,"a":[["unclassified/kedarcidin.yaml","kedarcidin"]],"b":[["NCBITaxon%3A756733","Streptoalloteichus sp. ATCC 53650"]]},{"id":"NCBITaxon:756929","l":"Nocardiopsis sp. TFS65-07","na":1,"nb":1,"a":[["amino_acids_and_peptides/tp-1161.yaml","TP-1161"]],"b":[["NCBITaxon%3A756929","Nocardiopsis sp. TFS65-07"]]},{"id":"NCBITaxon:76021","l":"Amycolatopsis coloradensis","na":1,"nb":1,"a":[["amino_acids_and_peptides/avoparcin.yaml","avoparcin"]],"b":[["NCBITaxon%3A76021","Amycolatopsis coloradensis"]]},{"id":"NCBITaxon:76022","l":"Amycolatopsis sulphurea","na":1,"nb":1,"a":[["polyketides/chelocardin.yaml","chelocardin"]],"b":[["NCBITaxon%3A76022","Amycolatopsis sulphurea"]]},{"id":"NCBITaxon:762837","l":"Streptomyces sp. L-49973","na":1,"nb":1,"a":[["amino_acids_and_peptides/ge81112.yaml","GE81112"]],"b":[["NCBITaxon%3A762837","Streptomyces sp. L-49973"]]},{"id":"NCBITaxon:76334","l":"Nostoc sp. GSV224","na":1,"nb":1,"a":[["unclassified/nostopeptolide-a2.yaml","nostopeptolide A2"]],"b":[["NCBITaxon%3A76334","Nostoc sp. GSV224"]]},{"id":"NCBITaxon:764784","l":"Streptomyces sp. SANK 61196","na":1,"nb":1,"a":[["polyketides/a-74528.yaml","A-74528"]],"b":[["NCBITaxon%3A764784","Streptomyces sp. SANK 61196"]]},{"id":"NCBITaxon:78245","l":"Xanthobacter autotrophicus (strain ATCC BAA-1158 / Py2)","na":1,"nb":1,"a":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]],"b":[["NCBITaxon%3A78245","Xanthobacter versatilis"]]},{"id":"NCBITaxon:78388","l":"Coniothyrium","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/mellein.yaml","(-)-Mellein"]],"b":[["NCBITaxon%3A1077358","Coniothyrium glycines"]]},{"id":"NCBITaxon:78579","l":"Thermothelomyces thermophilus","na":1,"nb":1,"a":[["alkaloids/ucs1025a.yaml","ucs1025a"]],"b":[["NCBITaxon%3A78579","Thermothelomyces thermophilus"]]},{"id":"NCBITaxon:78605","l":"Malbranchea aurantiaca","na":1,"nb":1,"a":[["alkaloids/malbrancheamide-a.yaml","malbrancheamide A"]],"b":[["NCBITaxon%3A78605","Malbranchea aurantiaca"]]},{"id":"NCBITaxon:797057","l":"Amycolatopsis orientalis subsp. vinearia","na":1,"nb":1,"a":[["polyketides/be-7585a.yaml","BE-7585A"]],"b":[["NCBITaxon%3A797057","Amycolatopsis orientalis subsp. vinearia"]]},{"id":"NCBITaxon:80859","l":"Streptomyces ribosidificus","na":1,"nb":1,"a":[["carbohydrates/ribostamycin.yaml","ribostamycin"]],"b":[["NCBITaxon%3A80859","Streptomyces ribosidificus"]]},{"id":"NCBITaxon:81097","l":"Cephalosporium","na":1,"nb":1,"a":[["fatty_acids/1233b.yaml","1233B"]],"b":[["NCBITaxon%3A1981612","Cephalosporium sp."]]},{"id":"NCBITaxon:81397","l":"Paracoccus sp. N81106","na":1,"nb":1,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A81397","Paracoccus sp. N81106"]]},{"id":"NCBITaxon:82632","l":"Streptomyces sp. MA6548","na":1,"nb":1,"a":[["polyketides/tacrolimus.yaml","tacrolimus"]],"b":[["NCBITaxon%3A82632","Streptomyces sp. MA6548"]]},{"id":"NCBITaxon:83212","l":"Claviceps africana","na":1,"nb":1,"a":[["alkaloids/dihydrolysergic-acid.yaml","dihydrolysergic acid"]],"b":[["NCBITaxon%3A83212","Claviceps africana"]]},{"id":"NCBITaxon:83302","l":"Microbispora corallina","na":1,"nb":1,"a":[["amino_acids_and_peptides/microbisporicin-a2.yaml","microbisporicin A2"]],"b":[["NCBITaxon%3A83302","Microbispora corallina"]]},{"id":"NCBITaxon:83382","l":"","na":1,"nb":1,"a":[["polyketides/piericidin-a.yaml","piericidin A"]],"b":[["NCBITaxon%3A83382","Kitasatospora xanthocidica"]]},{"id":"NCBITaxon:83542","l":"Fischerella muscicola UTEX 1829","na":1,"nb":1,"a":[["alkaloids/fischerindole-l.yaml","fischerindole L"]],"b":[["NCBITaxon%3A83542","Fischerella muscicola UTEX 1829"]]},{"id":"NCBITaxon:858632","l":"Streptomyces sp. JV178","na":1,"nb":1,"a":[["unclassified/clifednamide-a-2.yaml","clifednamide A"]],"b":[["NCBITaxon%3A858632","Streptomyces sp. JV178"]]},{"id":"NCBITaxon:861528","l":"Streptomyces sp. SCSIO 1666","na":1,"nb":1,"a":[["polyketides/cytorhodin.yaml","cytorhodin"]],"b":[["NCBITaxon%3A861528","Streptomyces sp. SCSIO 1666"]]},{"id":"NCBITaxon:86265","l":"Pseudomonas thivervalensis","na":1,"nb":1,"a":[["amino_acids_and_peptides/histicorrugatin.yaml","histicorrugatin"]],"b":[["NCBITaxon%3A86265","Pseudomonas thivervalensis"]]},{"id":"NCBITaxon:876169","l":"Streptomyces sp. CS","na":1,"nb":1,"a":[["polyketides/naphthomycin-a.yaml","naphthomycin A"]],"b":[["NCBITaxon%3A876169","Streptomyces sp. CS"]]},{"id":"NCBITaxon:882102","l":"Vibrio anguillarum 775","na":1,"nb":1,"a":[["alkaloids/anguibactin.yaml","anguibactin"]],"b":[["NCBITaxon%3A882102","Vibrio anguillarum 775"]]},{"id":"NCBITaxon:887449","l":"Streptomyces herbaceus","na":1,"nb":1,"a":[["carbohydrates/adenine-arabinoside.yaml","adenine arabinoside"]],"b":[["NCBITaxon%3A887449","Streptomyces herbaceus"]]},{"id":"NCBITaxon:889282","l":"Polyangium spumosum","na":1,"nb":1,"a":[["unclassified/antalid.yaml","antalid"]],"b":[["NCBITaxon%3A889282","Polyangium spumosum"]]},{"id":"NCBITaxon:889487","l":"Streptomyces sp. S4","na":1,"nb":1,"a":[["unclassified/antimycin-a.yaml","antimycin A"]],"b":[["NCBITaxon%3A889487","Streptomyces sp. S4"]]},{"id":"NCBITaxon:89141","l":"Cordyceps farinosa","na":1,"nb":1,"a":[["unclassified/roquefortine-c.yaml","roquefortine C"]],"b":[["NCBITaxon%3A89141","Cordyceps farinosa"]]},{"id":"NCBITaxon:89489","l":"Monascus ruber","na":1,"nb":1,"a":[["polyketides/citrinin.yaml","(+)-citrinin"]],"b":[["NCBITaxon%3A89489","Monascus ruber"]]},{"id":"NCBITaxon:904685","l":"Penicillium sizovae","na":1,"nb":1,"a":[["alkaloids/agroclavine-i.yaml","Agroclavine I"]],"b":[["NCBITaxon%3A904685","Penicillium sizovae"]]},{"id":"NCBITaxon:91465","l":"Pseudomonas sp. MIS38","na":1,"nb":1,"a":[["unclassified/arthrofactin-a.yaml","arthrofactin A"]],"b":[["NCBITaxon%3A91465","Pseudomonas sp. MIS38"]]},{"id":"NCBITaxon:91752","l":"Hericium erinaceus","na":1,"nb":1,"a":[["terpenoids/cyatha-3-12-diene.yaml","(-)-Cyatha-3,12-diene"]],"b":[["NCBITaxon%3A91752","Hericium erinaceus"]]},{"id":"NCBITaxon:92630","l":"Metarhizium flavoviride","na":1,"nb":1,"a":[["unclassified/metarhizin-a.yaml","metarhizin A"]],"b":[["NCBITaxon%3A92630","Metarhizium flavoviride"]]},{"id":"NCBITaxon:930400","l":"Nocardia sp. ATCC 202099","na":1,"nb":1,"a":[["amino_acids_and_peptides/nocathiacin.yaml","nocathiacin"]],"b":[["NCBITaxon%3A930400","Nocardia sp. ATCC 202099"]]},{"id":"NCBITaxon:932694","l":"Streptomyces sp. OH-4156","na":1,"nb":1,"a":[["unclassified/cypemycin.yaml","cypemycin"]],"b":[["NCBITaxon%3A932694","Streptomyces sp. OH-4156"]]},{"id":"NCBITaxon:933388","l":"Penicillium oxalicum (strain 114-2 / CGMCC 5302)","na":1,"nb":1,"a":[["unclassified/atpenin-b.yaml","atpenin B"]],"b":[["NCBITaxon%3A933388","Penicillium oxalicum 114-2"]]},{"id":"NCBITaxon:936046","l":"","na":1,"nb":1,"a":[["polyketides/kojic-acid.yaml","kojic acid"]],"b":[["NCBITaxon%3A936046","Agaricus bisporus var. bisporus H97"]]},{"id":"NCBITaxon:93625","l":"Psilocybe cyanescens","na":1,"nb":1,"a":[["alkaloids/psilocybin.yaml","psilocybin"]],"b":[["NCBITaxon%3A93625","Psilocybe cyanescens"]]},{"id":"NCBITaxon:945553","l":"","na":1,"nb":1,"a":[["terpenoids/naematolin.yaml","naematolin"]],"b":[["NCBITaxon%3A945553","Hypholoma sublateritium FD-334 SS-4"]]},{"id":"NCBITaxon:97096","l":"Eutypa lata","na":1,"nb":1,"a":[["terpenoids/eutypinic-acid.yaml","eutypinic acid"]],"b":[["NCBITaxon%3A97096","Eutypa lata"]]},{"id":"NCBITaxon:97401","l":"Streptomyces sapporonensis","na":1,"nb":1,"a":[["unclassified/bicozamycin.yaml","bicozamycin"]],"b":[["NCBITaxon%3A97401","Streptomyces sapporonensis"]]},{"id":"NCBITaxon:984208","l":"Sphaerospermopsis torques-reginae ITEP-024","na":1,"nb":1,"a":[["alkaloids/guanitoxin.yaml","guanitoxin"]],"b":[["NCBITaxon%3A984208","Sphaerospermopsis torques-reginae ITEP-024"]]},{"id":"NCBITaxon:985895","l":"","na":1,"nb":1,"a":[["terpenoids/2-cis-abscisic-acid.yaml","2-cis-abscisic acid"]],"b":[["NCBITaxon%3A985895","Plenodomus lingam JN3"]]},{"id":"NCBITaxon:989499","l":"Vibrio anguillarum RV22","na":1,"nb":1,"a":[["amino_acids_and_peptides/vanchrobactin.yaml","vanchrobactin"]],"b":[["NCBITaxon%3A989499","Vibrio anguillarum RV22"]]},{"id":"NCBITaxon:991125","l":"Streptomyces sp. TP-A2060","na":1,"nb":1,"a":[["alkaloids/yatakemycin.yaml","yatakemycin"]],"b":[["NCBITaxon%3A991125","Streptomyces sp. TP-A2060"]]},{"id":"NCBITaxon:994086","l":"Hydnomerulius pinastri MD-312","na":1,"nb":1,"a":[["fatty_acids/methyl-2s-4-methyl-2-octanoylamino-pentanoate.yaml","methyl (2S)-4-methyl-2-(octanoylamino)pentanoate"]],"b":[["NCBITaxon%3A994086","Hydnomerulius pinastri MD-312"]]},{"id":"NCBITaxon:996287","l":"Streptomyces sp. NRRL 30471","na":1,"nb":1,"a":[["amino_acids_and_peptides/muraymycin-c1.yaml","muraymycin C1"]],"b":[["NCBITaxon%3A996287","Streptomyces sp. NRRL 30471"]]},{"id":"NCBITaxon:999541","l":"Burkholderia gladioli BSR3","na":1,"nb":1,"a":[["fatty_acids/caryoynencin.yaml","caryoynencin"]],"b":[["NCBITaxon%3A999541","Burkholderia gladioli BSR3"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/ProteinTraitsMech--AntibioticMech.json b/assets/fleet/edges/ProteinTraitsMech--AntibioticMech.json index a3b1c2b..2a6f949 100644 --- a/assets/fleet/edges/ProteinTraitsMech--AntibioticMech.json +++ b/assets/fleet/edges/ProteinTraitsMech--AntibioticMech.json @@ -1 +1 @@ -{"a":"ProteinTraitsMech","b":"AntibioticMech","base":{"ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record=","AntibioticMech":"https://culturebotai.github.io/AntibioticMech/pages/"},"n":2435,"by":{"ARO":1740,"CHEBI":594,"NCBITaxon":79,"UniProt":20,"GO":2},"terms":[{"id":"ARO:0000032","l":"","na":3352,"nb":55,"a":[["ARO%3A3001815","ACC-1"],["ARO%3A3006228","ACC-1a"],["ARO%3A3006229","ACC-1b"],["ARO%3A3006230","ACC-1c"],["ARO%3A3006231","ACC-1d"],["ARO%3A3001816","ACC-2"]],"b":[["antibacterial/cefacetrile.html","cefacetrile"],["antibacterial/cefaclor.html","cefaclor"],["antibacterial/cefadroxil.html","cefadroxil"],["antibacterial/cefaloridine.html","cefaloridine"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefamandole.html","cefamandole"]]},{"id":"ARO:0000000","l":"","na":143,"nb":45,"a":[["ARO%3A3005099","23S rRNA (adenine(2058)-N(6))-methyltransferase Erm(A)"],["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3004125","23S rRNA with mutation conferring resistance to macrolide antibiotics"],["ARO%3A3005001","50S rRNA with mutation conferring resistance to macrolide antibiotics"],["ARO%3A3000772","AdeIJK"],["ARO%3A3004133","Brachyspira hyodysenteriae 23S rRNA with mutation conferring resistance to tylosin"]],"b":[["antibacterial/5-o-mycaminosyltylonolide.html","5-O-mycaminosyltylonolide"],["antibacterial/aplasmomycin.html","(+)-aplasmomycin"],["antibacterial/azalomycin-f.html","azalomycin F"],["antibacterial/azithromycin.html","azithromycin"],["antibacterial/boromycin.html","boromycin"],["antibacterial/brefeldin-a.html","brefeldin A"]]},{"id":"CHEBI:17478","l":"","na":62,"nb":33,"a":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.1.2","alcohol dehydrogenase (NADP(+))"],["EC%3A1.1.1.71","alcohol dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.2.8","alcohol dehydrogenase (cytochrome c)"],["EC%3A1.1.3.13","alcohol oxidase"]],"b":[["antibacterial/5-o-mycaminosyltylonolide.html","5-O-mycaminosyltylonolide"],["antibacterial/fatsicarpain-c.html","fatsicarpain C"],["antibacterial/josamycin.html","josamycin"],["antibacterial/rosaramicin.html","rosaramicin"],["antibacterial/spiramycin-i.html","spiramycin I"],["antibacterial/spiramycin-ii.html","spiramycin II"]]},{"id":"ARO:0000016","l":"","na":331,"nb":32,"a":[["ARO%3A3004272","16S rRNA methyltransferase (A1408)"],["ARO%3A3004271","16S rRNA methyltransferase (G1405)"],["ARO%3A3003666","16s rRNA with mutation conferring resistance to aminoglycoside antibiotics"],["ARO%3A3004936","23s rRNA with mutation conferring resistance to aminoglycoside antibiotics"],["ARO%3A3000341","AAC(2')"],["ARO%3A3007393","AAC(2')-I"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/apramycin.html","apramycin"],["antibacterial/arbekacin.html","arbekacin"]]},{"id":"ARO:0000001","l":"","na":223,"nb":31,"a":[["ARO%3A3005113","AAC(6')-Ib-cr"],["ARO%3A3002547","AAC(6')-Ib-cr1"],["ARO%3A3007770","aac(6')-Ib-cr10"],["ARO%3A3007771","aac(6')-Ib-cr11"],["ARO%3A3005112","AAC(6')-Ib-cr3"],["ARO%3A3005114","AAC(6')-Ib-cr4"]],"b":[["antibacterial/7-3-aminopyrrolidin-1-yl-1-2-4-difluorophenyl-6-fluoro-4-oxo-1-4-dihyd.html","7-(3-aminopyrrolidin-1-yl)-1-(2,4-difluorophenyl)-6-fluoro-4-oxo-1,4-dihydro-1,8-naphthyridine-3-carboxylic"],["antibacterial/9-fluoro-5-methyl-1-oxo-6-7-dihydro-1h-5h-pyrido-3-2-1-ij-quinoline-2-.html","9-fluoro-5-methyl-1-oxo-6,7-dihydro-1H,5H-pyrido[3,2,1-ij]quinoline-2-carboxylic"],["antibacterial/balofloxacin.html","Balofloxacin"],["antibacterial/cinoxacin.html","cinoxacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/clinafloxacin.html","clinafloxacin"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":145,"nb":30,"a":[["IDPO%3A0000033","flexible linker"],["IDPO%3A0000014","order to disorder"],["IDPO%3A0000004","pre-molten globule"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"]]},{"id":"CHEBI:15734","l":"","na":29,"nb":59,"a":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.1.2","alcohol dehydrogenase (NADP(+))"],["EC%3A1.1.1.71","alcohol dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.2.8","alcohol dehydrogenase (cytochrome c)"],["EC%3A1.1.3.13","alcohol oxidase"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/dihydroconiferyl-alcohol.html","dihydroconiferyl alcohol"],["antibacterial/equisetin.html","equisetin"],["antibacterial/hexan-1-ol.html","hexan-1-ol"],["antibacterial/lyoniresinol-3-%CE%B1-o-%CE%B2-d-glucopyranoside.html","(+)-lyoniresinol-3-α-O-β-D-glucopyranoside"],["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3000008","l":"","na":3168,"nb":27,"a":[["ARO%3A3001815","ACC-1"],["ARO%3A3006228","ACC-1a"],["ARO%3A3006229","ACC-1b"],["ARO%3A3006230","ACC-1c"],["ARO%3A3006231","ACC-1d"],["ARO%3A3001816","ACC-2"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aspoxicillin.html","aspoxicillin"],["antibacterial/azidocillin.html","azidocillin"],["antibacterial/azlocillin.html","azlocillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":30,"nb":22,"a":[["Pfam%3APF08787","Alginate lyase"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF08218","Citrate lyase ligase C-terminal domain"],["Pfam%3APF13727","CoA-binding domain"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["Pfam%3APF20714","DpiA-like helix-turn-helix domain"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"]]},{"id":"ARO:3000081","l":"","na":120,"nb":18,"a":[["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3004256","Bleomycin resistant protein"],["ARO%3A3005036","BLMT"],["ARO%3A3001205","BRP(MBL)"],["ARO%3A3004561","Clostridioides difficile murG with mutation conferring resistance to vancomycin"],["ARO%3A3004681","Clostridioides difficile rpoC with mutation conferring resistance to vancomycin"]],"b":[["antibacterial/a47934.html","A47934"],["antibacterial/antibiotic-a40926.html","antibiotic A40926"],["antibacterial/avoparcin.html","avoparcin"],["antibacterial/balhimycin.html","balhimycin"],["antibacterial/bleomycin-a2.html","bleomycin A2"],["antibacterial/bleomycin-b2.html","bleomycin B2"]]},{"id":"ARO:0000026","l":"","na":98,"nb":13,"a":[["ARO%3A3005099","23S rRNA (adenine(2058)-N(6))-methyltransferase Erm(A)"],["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3004182","23S rRNA with mutation conferring resistance to streptogramins antibiotics"],["ARO%3A3000202","Cfr 23S ribosomal RNA methyltransferase"],["ARO%3A3004649","cfr(B)"],["ARO%3A3004609","cfr(B) Group"]],"b":[["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/madumycin-ii.html","madumycin II"],["antibacterial/ostreogrycin-b3.html","ostreogrycin B3"],["antibacterial/patricin-a.html","patricin A"],["antibacterial/patricin-b.html","patricin B"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":46,"nb":13,"a":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF13166","AAA domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF27533","CapK C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/bromodeoxytopsentin.html","bromodeoxytopsentin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"ARO:3000053","l":"","na":203,"nb":12,"a":[["ARO%3A3003667","16s rRNA with mutation conferring resistance to peptide antibiotics"],["ARO%3A3003581","Acinetobacter mutant Lpx gene conferring resistance to colistin"],["ARO%3A3007430","alm glycyl carrier protein"],["ARO%3A3007432","alm glycyltransferase"],["ARO%3A3007433","almE"],["ARO%3A3007434","almEFG"]],"b":[["antibacterial/defensin.html","defensin"],["antibacterial/epinecidin-1.html","epinecidin-1"],["antibacterial/magainin-1.html","magainin 1"],["antibacterial/magainin-2.html","magainin 2"],["antibacterial/magainin-a.html","magainin A"],["antibacterial/magainin-b.html","magainin B"]]},{"id":"ARO:3001219","l":"","na":12,"nb":25,"a":[["ARO%3A3003357","Clostridioides difficile EF-Tu mutants conferring resistance to elfamycin"],["ARO%3A3001312","elfamycin resistant EF-Tu"],["ARO%3A3003875","Enterococcus faecium EF-Tu mutants conferring resistance to elfamycin"],["ARO%3A3003438","Enterococcus faecium EF-Tu mutants conferring resistance to GE2270A"],["ARO%3A3003358","Escherichia coli EF-Tu mutants conferring resistance to elfamycin"],["ARO%3A3003370","Escherichia coli EF-Tu mutants conferring resistance to Enacyloxin IIa"]],"b":[["antibacterial/amythiamicin-a.html","amythiamicin A"],["antibacterial/aurodox.html","aurodox"],["antibacterial/dihydromocimycin.html","dihydromocimycin"],["antibacterial/efrotomycin.html","efrotomycin"],["antibacterial/enacyloxin-iia.html","enacyloxin IIa"],["antibacterial/factumycin.html","factumycin"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":19,"nb":12,"a":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"],["Pfam%3APF18173","Bacterial HORMA domain 2"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["Pfam%3APF27322","Cap8 HORMA domain"],["Pfam%3APF01526","Tn3 transposase DDE domain"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3007499","l":"","na":11,"nb":18,"a":[["ARO%3A3007549","antibiotic resistant ergosterol biosynthesis pathway transcription factor"],["ARO%3A3007565","Aspergillus spp. cyp51A with mutations conferring resistance to triazoles antibiotics"],["ARO%3A3007670","Aspergillus spp. Hmg1 with mutations conferring resistance to triazoles antibiotics"],["ARO%3A3007666","Candida spp. cyp51A1 with mutations conferring resistance to triazoles and imidazole antibiotics"],["ARO%3A3007524","Candida spp. ERG11 with mutations conferring resistance to azole antibiotics"],["ARO%3A3007640","Candida spp. pleiotropic drug resistance factor 1"]],"b":[["antifungal/bromuconazole.html","bromuconazole"],["antifungal/cyproconazole.html","cyproconazole"],["antifungal/difenoconazole.html","difenoconazole"],["antifungal/epoxiconazole.html","epoxiconazole"],["antifungal/fenbuconazole.html","fenbuconazole"],["antifungal/fluconazole.html","fluconazole"]]},{"id":"CHEBI:17087","l":"","na":17,"nb":11,"a":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.1.184","carbonyl reductase (NADPH)"],["EC%3A1.1.1.2","alcohol dehydrogenase (NADP(+))"],["EC%3A1.1.3.18","secondary-alcohol oxidase"],["EC%3A1.1.98.5","secondary-alcohol dehydrogenase (coenzyme-F420)"],["EC%3A1.4.1.28","secondary-alkyl amine dehydrogenase [NAD(P)(+)]"]],"b":[["antibacterial/6-diazo-5-oxo-l-norleucine.html","6-diazo-5-oxo-L-norleucine"],["antibacterial/dehydroacetic-acid.html","dehydroacetic acid"],["antibacterial/ucs1025-a.html","UCS1025 A"],["antifungal/1-2-3-dihydro-1h-pyrrol-1-yl-2-methyldecane-1-3-dione.html","1-(2,3-dihydro-1H-pyrrol-1-yl)-2-methyldecane-1,3-dione"],["antifungal/e-1-2-3-dihydro-1h-pyrrol-1-yl-2-methyldec-8-ene-1-3-dione.html","(E)-1-(2,3-dihydro-1H-pyrrol-1-yl)-2-methyldec-8-ene-1,3-dione"],["antiprotozoal/ct3.html","CT3"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":11,"nb":15,"a":[["Pfam%3APF22829","HphA C-terminal domain"],["Pfam%3APF22828","HphA N-terminal heme-binding domain"],["Pfam%3APF28205","Ciprofloxacin tolerance protein"],["Pfam%3APF19582","Solute-binding protein AdeT 1/2"],["PROSITE%3APS00337","Beta-lactamase class-D active site"],["Pfam%3APF24575","Surface lipoprotein assembly modifier, N-terminal TPR repeats"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3000282","l":"","na":13,"nb":11,"a":[["ARO%3A3007426","ECF transporter S component"],["ARO%3A3003386","Escherichia coli folP with mutation conferring resistance to sulfonamides"],["ARO%3A3000386","MexAB-OprM"],["ARO%3A3004873","Neisseria gonorrhoeae folP with mutation conferring resistance to sulfonamides"],["ARO%3A3007749","Salmonella gallinarum folP with mutation conferring resistance to sulfonamides"],["ARO%3A3003387","Streptococcus pyogenes folP with mutation conferring resistance to sulfonamides"]],"b":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfacetamide.html","sulfacetamide"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfamerazine.html","sulfamerazine"],["antibacterial/sulfamethazine.html","sulfamethazine"],["antibacterial/sulfamethizole.html","sulfamethizole"]]},{"id":"CHEBI:33853","l":"","na":10,"nb":185,"a":[["EC%3A2.1.1.382","methoxylated aromatic compound--corrinoid protein Co-methyltransferase"],["EC%3A2.8.2.1","aryl sulfotransferase"],["EC%3A2.8.2.22","aryl-sulfate sulfotransferase"],["EC%3A3.1.1.2","arylesterase"],["EC%3A3.1.6.1","arylsulfatase (type I)"],["RHEA%3A72283","a methoxylated aromatic compound + Co(I)-[methoxylated-aromatic-compound-specific corrinoid protein] + H(+) = a phenol + methyl-Co(III)-[methoxylated-aromatic-compound-specific corrinoid protein]"]],"b":[["antibacterial/2e-6z-13-hydroxy-1-2-hydroxy-5-methoxy-3-methylphenyl-3-7-11-15-tetram.html","(2E,6Z)-13-hydroxy-1-(2-hydroxy-5-methoxy-3-methylphenyl)-3,7,11,15-tetramethylhexadeca-2,6,14-triene-5,12-dione"],["antibacterial/5e-7-oxozeaenol.html","5E-7-oxozeaenol"],["antibacterial/5z-7-oxozeaenol.html","5Z-7-oxozeaenol"],["antibacterial/7-hydroxy-5-hydroxymethyl-2h-benzo-1-4-thiazin-3-one.html","7-hydroxy-5-hydroxymethyl-2H-benzo[1,4]thiazin-3-one"],["antibacterial/actinodaphnine.html","actinodaphnine"],["antibacterial/anthramycin.html","anthramycin"]]},{"id":"CHEBI:35681","l":"","na":10,"nb":139,"a":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.1.184","carbonyl reductase (NADPH)"],["EC%3A1.1.1.2","alcohol dehydrogenase (NADP(+))"],["EC%3A1.1.3.18","secondary-alcohol oxidase"],["EC%3A1.1.98.5","secondary-alcohol dehydrogenase (coenzyme-F420)"],["RHEA%3A10740","a secondary alcohol + NAD(+) = a ketone + NADH + H(+)"]],"b":[["antibacterial/14-norpseurotin-a.html","14-norpseurotin A"],["antibacterial/2e-6z-13-hydroxy-1-2-hydroxy-5-methoxy-3-methylphenyl-3-7-11-15-tetram.html","(2E,6Z)-13-hydroxy-1-(2-hydroxy-5-methoxy-3-methylphenyl)-3,7,11,15-tetramethylhexadeca-2,6,14-triene-5,12-dione"],["antibacterial/5e-7-oxozeaenol.html","5E-7-oxozeaenol"],["antibacterial/5z-7-oxozeaenol.html","5Z-7-oxozeaenol"],["antibacterial/asperlactone.html","asperlactone"],["antibacterial/aspyrone.html","aspyrone"]]},{"id":"ARO:3000050","l":"","na":50,"nb":9,"a":[["ARO%3A3003669","16S rRNA with mutation conferring resistance to tetracycline derivatives"],["ARO%3A3003499","Cutibacterium acnes 16S rRNA mutation conferring resistance to tetracycline"],["ARO%3A3003411","Escherichia coli 16S rRNA (rrnB) mutation conferring resistance to tetracycline"],["ARO%3A3003410","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to tetracycline"],["ARO%3A3004126","Escherichia coli LamB"],["ARO%3A3003510","Helicobacter pylori 16S rRNA mutation conferring resistance to tetracycline"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/eravacycline.html","eravacycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/omadacycline.html","omadacycline"]]},{"id":"CHEBI:18379","l":"","na":9,"nb":21,"a":[["EC%3A3.5.5.1","nitrilase"],["EC%3A4.8.1.2","aliphatic aldoxime dehydratase"],["EC%3A4.8.1.5","thiohydroximate-O-sulfate sulfate/sulfur-lyase (nitrile-forming)"],["RHEA%3A21724","a nitrile + 2 H2O = a carboxylate + NH4(+)"],["RHEA%3A59956","a (Z)-N-(sulfonatooxy)alkanimidothioate = a nitrile + sulfur + sulfate"],["RHEA%3A11316","an aliphatic aldoxime = a nitrile + H2O"]],"b":[["antibacterial/bay11-7085.html","BAY11-7085"],["antibacterial/cccp.html","CCCP"],["antibacterial/finafloxacin.html","finafloxacin"],["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/cyazofamid.html","cyazofamid"],["antifungal/cymoxanil.html","cymoxanil"]]},{"id":"ARO:0000020","l":"","na":2703,"nb":8,"a":[["ARO%3A3006863","AAK-1"],["ARO%3A3005387","AAK beta-lactamase"],["ARO%3A3003809","Acinetobacter baumannii OprD conferring resistance to imipenem"],["ARO%3A3001821","ACT-1"],["ARO%3A3001832","ACT-10"],["ARO%3A3007883","ACT-100"]],"b":[["antibacterial/biapenem.html","biapenem"],["antibacterial/doripenem.html","doripenem"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"],["antibacterial/panipenem.html","panipenem"]]},{"id":"NCBITaxon:2697049","l":"Severe acute respiratory syndrome coronavirus 2","na":18,"nb":8,"a":[["IDPO%3A0000002","disorder"],["IDPO%3A0000033","flexible linker"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000041","glycosylation display site"],["IDPO%3A0000048","limited proteolysis display site"],["IDPO%3A0000037","molecular recognition display site"]],"b":[["antibacterial/3-6-diaminoacridine.html","3,6-diaminoacridine"],["antibacterial/anacardic-acid.html","anacardic acid"],["antibacterial/baicalein.html","baicalein"],["antibacterial/ebselen.html","ebselen"],["antibacterial/hexachlorophene.html","hexachlorophene"],["antifungal/disulfiram.html","disulfiram"]]},{"id":"ARO:3000034","l":"","na":8,"nb":9,"a":[["ARO%3A3002895","SAT-2"],["ARO%3A3002898","SAT-3"],["ARO%3A3002897","SAT-4"],["ARO%3A3005045","SatA"],["ARO%3A3004699","sta"],["ARO%3A3000869","streptothricin acetyltransferase (SAT)"]],"b":[["antibacterial/a201a.html","A201A"],["antibacterial/caprazamycin.html","caprazamycin"],["antibacterial/cordycepin.html","cordycepin"],["antibacterial/pseudouridimycin.html","pseudouridimycin"],["antibacterial/puromycin.html","puromycin"],["antibacterial/streptothricin-f.html","streptothricin F"]]},{"id":"CHEBI:33709","l":"amino acid","na":8,"nb":8,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.23","The Dicarboxylate/Amino Acid:Cation (Na+ or H+) Symporter (DAACS) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A1.V.1","The Filamentous Cyanobacterial Septal Pore (Septum) Family"],["TCDB%3A1.A.24","The Gap Junction-forming Connexin (Connexin) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/7-3-aminopyrrolidin-1-yl-1-2-4-difluorophenyl-6-fluoro-4-oxo-1-4-dihyd.html","7-(3-aminopyrrolidin-1-yl)-1-(2,4-difluorophenyl)-6-fluoro-4-oxo-1,4-dihydro-1,8-naphthyridine-3-carboxylic"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/pipemidic-acid.html","pipemidic acid"],["antibacterial/trovafloxacin.html","trovafloxacin"],["antifungal/mediomycin-a.html","mediomycin A"],["antifungal/mediomycin-b.html","mediomycin B"]]},{"id":"ARO:3000419","l":"quinolone resistance protein (qnr)","na":111,"nb":7,"a":[["ARO%3A3003844","mfd"],["ARO%3A3003035","mfpA"],["ARO%3A3002707","QnrA1"],["ARO%3A3002708","QnrA2"],["ARO%3A3002709","QnrA3"],["ARO%3A3002710","QnrA4"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"NCBITaxon:237561","l":"Candida albicans (strain SC5314 / ATCC MYA-2876)","na":46,"nb":7,"a":[["Pfam%3APF26023","Alanine--tRNA ligase domain"],["Pfam%3APF09757","Arb2-like domain"],["Pfam%3APF25026","Asd-4-like domain"],["Pfam%3APF07741","Brf1-like TBP-binding domain"],["Pfam%3APF11766","Agglutinin-like protein, N-terminal domain"],["Pfam%3APF16892","Chitin biosynthesis protein CHS5 N-terminus"]],"b":[["antibacterial/brefeldin-a.html","brefeldin A"],["antifungal/anidulafungin.html","anidulafungin"],["antifungal/caspofungin.html","caspofungin"],["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/micafungin.html","micafungin"]]},{"id":"CHEBI:87211","l":"","na":7,"nb":18,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.24","The Mycobacterial Porin (MBP) Family"],["TCDB%3A9.B.325","The Putative ABC4 (ABC4) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/dextrofloxacin.html","dextrofloxacin"],["antibacterial/difloxacin.html","difloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/fleroxacin.html","fleroxacin"],["antibacterial/gemifloxacin.html","gemifloxacin"]]},{"id":"ARO:3000384","l":"AcrAB-TolC","na":16,"nb":7,"a":[["ARO%3A3000384","AcrAB-TolC"],["ARO%3A3000702","acrR"],["ARO%3A3003374","Enterobacter aerogenes acrR with mutation conferring multidrug antibiotic resistance"],["ARO%3A3004108","Enterobacter cloacae rob"],["ARO%3A3003807","Escherichia coli AcrAB-TolC with AcrR mutation conferring resistance to ciprofloxacin, tetracycline, and ceftazidime"],["ARO%3A3003378","Escherichia coli AcrAB-TolC with MarR mutations conferring resistance to ciprofloxacin and tetracycline"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/tetracycline.html","tetracycline"],["antibacterial/tigecycline.html","tigecycline"],["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3000386","l":"MexAB-OprM","na":7,"nb":15,"a":[["ARO%3A3000831","CpxR"],["ARO%3A3000377","MexA"],["ARO%3A3000386","MexAB-OprM"],["ARO%3A3000378","MexB"],["ARO%3A3000506","MexR"],["ARO%3A3000819","nalD"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/azithromycin.html","azithromycin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3000103","l":"","na":12,"nb":7,"a":[["ARO%3A3003830","Aminocoumarin resistant alaS"],["ARO%3A3003840","aminocoumarin resistant cysB"],["ARO%3A3000479","aminocoumarin resistant gyrB"],["ARO%3A3000457","aminocoumarin resistant parE"],["ARO%3A3000480","aminocoumarin resistant parY"],["ARO%3A3003787","aminocoumarin self resistant parY"]],"b":[["antibacterial/chrysomycin-a.html","chrysomycin A"],["antibacterial/clorobiocin.html","clorobiocin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/declovanillobiocin.html","declovanillobiocin"],["antibacterial/isovanillobiocin.html","isovanillobiocin"],["antibacterial/novobiocin.html","novobiocin"]]},{"id":"UniProt:P0DTD1","l":"","na":11,"nb":7,"a":[["EC%3A3.4.22.69","SARS coronavirus main proteinase"],["IDPO%3A0000002","disorder"],["Pfam%3APF12379","Betacoronavirus replicase NSP3, N-terminal"],["ELM%3AELME000557","DEG_Cend_TRIM7_1"],["proteintraitsmech%3ABIOLIP_A1IB6","A1IB6-binding site"],["proteintraitsmech%3ABIOLIP_BJ6","BJ6-binding site"]],"b":[["antibacterial/3-6-diaminoacridine.html","3,6-diaminoacridine"],["antibacterial/anacardic-acid.html","anacardic acid"],["antibacterial/baicalein.html","baicalein"],["antibacterial/ebselen.html","ebselen"],["antibacterial/hexachlorophene.html","hexachlorophene"],["antifungal/disulfiram.html","disulfiram"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":9,"nb":7,"a":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF25954","CusB-like, beta-barrel domain"],["Pfam%3APF13438","Domain of unknown function (DUF4113)"],["Pfam%3APF03767","HAD superfamily, subfamily IIIB (Acid phosphatase)"],["Pfam%3APF03496","ADP-ribosyltransferase exoenzyme"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":8,"nb":7,"a":[["Pfam%3APF01721","Class II bacteriocin"],["Pfam%3APF13700","Domain of unknown function (DUF4158)"],["Pfam%3APF07478","D-ala D-ala ligase C-terminus"],["Pfam%3APF01820","D-ala D-ala ligase N-terminus"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"],["PROSITE%3APS00843","D-alanine--D-alanine ligase signature 1"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":7,"nb":7,"a":[["Pfam%3APF11766","Agglutinin-like protein, N-terminal domain"],["Pfam%3APF16856","Cell division control protein 4 dimerisation domain"],["Pfam%3APF18325","Fatty acid synthase subunit alpha Acyl carrier domain"],["Pfam%3APF18314","Fatty acid synthase type I helical domain"],["Pfam%3APF17828","N-terminal domain in fatty acid synthase subunit beta"],["Pfam%3APF05388","Carboxypeptidase Y pro-peptide"]],"b":[["antibacterial/brefeldin-a.html","brefeldin A"],["antifungal/anidulafungin.html","anidulafungin"],["antifungal/caspofungin.html","caspofungin"],["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/micafungin.html","micafungin"]]},{"id":"CHEBI:132124","l":"","na":91,"nb":6,"a":[["EC%3A1.1.5.10","D-2-hydroxyacid dehydrogenase (quinone)"],["EC%3A1.1.5.11","1-butanol dehydrogenase (quinone)"],["EC%3A1.1.5.12","D-lactate dehydrogenase (quinone)"],["EC%3A1.1.5.13","(S)-2-hydroxyglutarate dehydrogenase"],["EC%3A1.1.5.3","glycerol-3-phosphate dehydrogenase"],["EC%3A1.1.5.4","malate dehydrogenase (quinone)"]],"b":[["antiprotozoal/r-4-methoxydalbergione.html","(R)-4'-methoxydalbergione"],["antiviral/geldanamycin.html","geldanamycin"],["unspecified/auricin.html","auricin"],["unspecified/dutomycin.html","dutomycin"],["unspecified/herbimycin.html","herbimycin"],["unspecified/primin.html","primin"]]},{"id":"ARO:3000670","l":"","na":27,"nb":6,"a":[["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3004178","23S rRNA with mutation conferring resistance to pleuromutilin antibiotics"],["ARO%3A3004472","lsa-type ABC-F protein"],["ARO%3A3000300","lsaA"],["ARO%3A3003111","lsaB"],["ARO%3A3003112","lsaC"]],"b":[["antibacterial/azamulin.html","azamulin"],["antibacterial/lefamulin.html","lefamulin"],["antibacterial/pleuromutilin.html","pleuromutilin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/valnemulin.html","valnemulin"]]},{"id":"ARO:3005386","l":"","na":15,"nb":6,"a":[["ARO%3A3004284","antibiotic resistant fabG"],["ARO%3A3004270","antibiotic resistant fabI"],["ARO%3A3000309","emrD"],["ARO%3A3004049","Escherichia coli fabG mutations conferring resistance to triclosan"],["ARO%3A3004045","Escherichia coli fabI mutations conferring resistance to isoniazid and triclosan"],["ARO%3A3004335","Escherichia coli gyrA with mutation conferring resistance to triclosan"]],"b":[["antibacterial/3-6-diaminoacridine.html","3,6-diaminoacridine"],["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"],["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/triclosan.html","triclosan"],["biocide/acriflavine.html","acriflavine"],["biocide/thiacalixarene-derivatives.html","thiacalixarene derivatives"]]},{"id":"ARO:3000797","l":"MexCD-OprJ","na":6,"nb":7,"a":[["ARO%3A3000797","MexCD-OprJ"],["ARO%3A3004061","MexCD-OprJ with type A NfxB mutation"],["ARO%3A3004062","MexCD-OprJ with type B NfxB mutation"],["ARO%3A3000820","NfxB"],["ARO%3A3004059","Type A NfxB"],["ARO%3A3004060","Type B NfxB"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/gentamicin-c.html","gentamicin C"],["antibacterial/novobiocin.html","novobiocin"],["antibacterial/ofloxacin.html","ofloxacin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"CHEBI:36836","l":"","na":7,"nb":6,"a":[["EC%3A1.1.1.270","3beta-hydroxysteroid 3-dehydrogenase"],["EC%3A2.3.1.77","triacylglycerol--sterol O-acyltransferase"],["RHEA%3A16897","a 3beta-hydroxysteroid + a triacylglycerol = a 3beta-hydroxysteroid ester + a diacylglycerol"],["RHEA%3A78195","a 3beta-hydroxysteroid + a triacylglycerol = a 3beta-hydroxysteroid ester + a 1,2-diacylglycerol"],["RHEA%3A78199","a 3beta-hydroxysteroid + a triacylglycerol = a 3beta-hydroxysteroid ester + a 1,3-diacylglycerol"],["RHEA%3A81603","a 3beta-hydroxysteroid + NAD(+) = a 3-oxosteroid + NADH + H(+)"]],"b":[["antibacterial/5%CE%B1-cholesta-24-en-3%CE%B2-20%CE%B2-diol-23-one.html","5α-cholesta-24-en-3β,20β-diol-23-one"],["antibacterial/5%CE%B1-cholesta-9-11-en-3%CE%B2-20%CE%B2-diol.html","5α-cholesta-9(11)-en-3β, 20β-diol"],["antifungal/9%CE%BE-14%CE%BE-25s-cholestane-3%CE%B2-4%CE%B2-6%CE%B2-7%CE%B1-8-15%CE%B1-16%CE%B2-26-octol.html","(9ξ,14ξ,25S)-cholestane-3β,4β,6β,7α,8,15α,16β,26-octol"],["antifungal/fr171456.html","FR171456"],["antifungal/sclerodol-b.html","sclerodol B"],["antiprotozoal/hellebrigenin.html","hellebrigenin"]]},{"id":"NCBITaxon:559292","l":"Saccharomyces cerevisiae (strain ATCC 204508 / S288c)","na":14483,"nb":5,"a":[["EC%3A1.14.18.-","With another compound as one donor, and incorporation of one atom of oxygen"],["EC%3A1.16.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.18.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.5.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.8.-.-","Acting on a sulfur group of donors"]],"b":[["antifungal/anidulafungin.html","anidulafungin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/caspofungin.html","caspofungin"],["antifungal/cycloheximide.html","cycloheximide"],["antifungal/micafungin.html","micafungin"]]},{"id":"ARO:0000017","l":"","na":104,"nb":5,"a":[["ARO%3A3005099","23S rRNA (adenine(2058)-N(6))-methyltransferase Erm(A)"],["ARO%3A3004187","23S rRNA with mutation conferring resistance to lincosamide antibiotics"],["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3000772","AdeIJK"],["ARO%3A3000202","Cfr 23S ribosomal RNA methyltransferase"],["ARO%3A3004649","cfr(B)"]],"b":[["antibacterial/celesticetin.html","celesticetin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/iboxamycin.html","iboxamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/pirlimycin.html","pirlimycin"]]},{"id":"ARO:3000157","l":"","na":45,"nb":5,"a":[["ARO%3A3002846","arr-1"],["ARO%3A3002847","arr-2"],["ARO%3A3002848","arr-3"],["ARO%3A3002849","arr-4"],["ARO%3A3002850","arr-5"],["ARO%3A3002852","arr-7"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifalazil.html","rifalazil"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"NCBITaxon:330879","l":"Aspergillus fumigatus (strain ATCC MYA-4609 / CBS 101355 / FGSC A1100 / Af293)","na":34,"nb":5,"a":[["Pfam%3APF22624","4'-phosphopantetheinyl transferase, N-terminal"],["Pfam%3APF13523","Acetyltransferase (GNAT) domain"],["Pfam%3APF28338","AclK C-terminal domain"],["Pfam%3APF23297","Highly reducing polyketide synthase sdgA, C-terminal ACP domain"],["Pfam%3APF11001","YDR124W-like, helical bundle domain"],["Pfam%3APF25312","Allergen Asp f 4-like domain"]],"b":[["antibacterial/fumagillin.html","fumagillin"],["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/terbinafine.html","terbinafine"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"ARO:3004115","l":"","na":20,"nb":5,"a":[["ARO%3A3007056","Antibiotic resistant Helicobacter pylori nitroreductase"],["ARO%3A3007656","antibiotic resistant Mycobacterium tuberculosis nitroreductase"],["ARO%3A3007671","Clostridioides difficile nimB"],["ARO%3A3007851","delamanid-resistant fgd1"],["ARO%3A3007059","Helicobacter pylori frxA mutation conferring resistance to metronidazole"],["ARO%3A3007055","Helicobacter pylori rdxA mutation conferring resistance to metronidazole"]],"b":[["antibacterial/delamanid.html","delamanid"],["antibacterial/metronidazole.html","metronidazole"],["antibacterial/ornidazole.html","ornidazole"],["antibacterial/pretomanid.html","pretomanid"],["antibacterial/tinidazole.html","tinidazole"]]},{"id":"CHEBI:46761","l":"","na":12,"nb":5,"a":[["MCSA%3A396","aspartic peptidase"],["MCSA%3A815","caspase-3"],["MCSA%3A818","caspase-8"],["MCSA%3A816","caspase-9"],["MCSA%3A814","cathepsin S"],["MCSA%3A912","endopeptidase Clp"]],"b":[["antifungal/gliotoxin.html","gliotoxin"],["antiprotozoal/wll-vs.html","WLL-vs"],["antiviral/ombitasvir.html","ombitasvir"],["unspecified/bacilysin.html","bacilysin"],["unspecified/tabtoxin.html","tabtoxin"]]},{"id":"NCBITaxon:485","l":"Neisseria gonorrhoeae","na":12,"nb":5,"a":[["Pfam%3APF25860","Cryptic plasmid protein A"],["Pfam%3APF12852","Cupin"],["Pfam%3APF17845","FbpC C-terminal regulatory nucleotide binding domain"],["Pfam%3APF22443","FbpC-like, regulatory domain"],["Pfam%3APF18053","DNA gyrase B subunit insert domain"],["Pfam%3APF25885","EMRA, alpha-helical hairpin domain"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007500","l":"","na":5,"nb":11,"a":[["ARO%3A3007666","Candida spp. cyp51A1 with mutations conferring resistance to triazoles and imidazole antibiotics"],["ARO%3A3007640","Candida spp. pleiotropic drug resistance factor 1"],["ARO%3A3007563","Candida spp. TAC1 with mutations conferring resistance to azole antibiotics"],["ARO%3A3007667","imidazole-resistant fungal cytochrome P450 enzyme"],["ARO%3A3007555","Zn2Cys6 transcription factors"]],"b":[["antibacterial/imazalil.html","imazalil"],["antifungal/bifonazole.html","bifonazole"],["antifungal/clotrimazole.html","clotrimazole"],["antifungal/econazole.html","econazole"],["antifungal/hexaconazole.html","hexaconazole"],["antifungal/ketoconazole.html","ketoconazole"]]},{"id":"ARO:3001815","l":"ACC-1","na":5,"nb":9,"a":[["ARO%3A3001815","ACC-1"],["ARO%3A3006228","ACC-1a"],["ARO%3A3006229","ACC-1b"],["ARO%3A3006230","ACC-1c"],["ARO%3A3006231","ACC-1d"]],"b":[["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/cefotetan.html","cefotetan"],["antibacterial/cefpirome.html","cefpirome"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"NCBITaxon:229533","l":"Fusarium graminearum PH-1","na":8,"nb":5,"a":[["Pfam%3APF18388","Atg29 N-terminal domain"],["Pfam%3APF27599","CcsR C-terminal domain"],["Pfam%3APF07110","EthD domain"],["Pfam%3APF11700","Vacuole effluxer Atg22 like"],["Pfam%3APF28504","Gramillins biosynthetic cluster protein GRA5"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"]],"b":[["antifungal/carbendazim.html","carbendazim"],["antifungal/difenoconazole.html","difenoconazole"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/prochloraz.html","prochloraz"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"ARO:3000491","l":"acrD","na":7,"nb":5,"a":[["ARO%3A3000491","acrD"],["ARO%3A3000828","baeR"],["ARO%3A3000829","baeS"],["ARO%3A3000531","baeSR"],["ARO%3A3000830","cpxA"],["ARO%3A3000524","cpxAR"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:0000004","l":"","na":1345,"nb":4,"a":[["ARO%3A3001815","ACC-1"],["ARO%3A3006228","ACC-1a"],["ARO%3A3006229","ACC-1b"],["ARO%3A3006230","ACC-1c"],["ARO%3A3006231","ACC-1d"],["ARO%3A3001816","ACC-2"]],"b":[["antibacterial/aztreonam.html","aztreonam"],["antibacterial/bal30072.html","BAL30072"],["antibacterial/carumonam.html","carumonam"],["antibacterial/lys228.html","LYS228"]]},{"id":"CHEBI:24646","l":"","na":88,"nb":4,"a":[["EC%3A1.1.5.10","D-2-hydroxyacid dehydrogenase (quinone)"],["EC%3A1.1.5.11","1-butanol dehydrogenase (quinone)"],["EC%3A1.1.5.12","D-lactate dehydrogenase (quinone)"],["EC%3A1.1.5.13","(S)-2-hydroxyglutarate dehydrogenase"],["EC%3A1.1.5.3","glycerol-3-phosphate dehydrogenase"],["EC%3A1.1.5.4","malate dehydrogenase (quinone)"]],"b":[["antibacterial/2-5-dihydroxy-3-methanesulfinylbenzyl-alcohol.html","2,5-dihydroxy-3-methanesulfinylbenzyl alcohol"],["antibacterial/cytotrienin-a.html","cytotrienin A"],["antibacterial/mygalin.html","mygalin"],["unspecified/trierixin.html","trierixin"]]},{"id":"CHEBI:47622","l":"","na":4,"nb":84,"a":[["EC%3A2.3.1.84","alcohol O-acetyltransferase"],["EC%3A3.1.1.6","acetylesterase"],["RHEA%3A12957","an acetyl ester + H2O = an aliphatic alcohol + acetate + H(+)"],["RHEA%3A17229","an aliphatic alcohol + acetyl-CoA = an acetyl ester + CoA"]],"b":[["antibacterial/3-5-di-o-acetyl-1-o-5%CE%B2-8%CE%B1-9%CE%B2-10%CE%B1-18-oxokaur-16-en-18-yl-%CE%B2-l-arabinofur.html","3,5-di-O-acetyl-1-O-[(5β,8α,9β,10α)-18-oxokaur-16-en-18-yl]-β-L-arabinofuranose"],["antibacterial/6%CE%B2-16%CE%B2-diacetoxy-25-hydroxy-3-7-dioxy-29-nordammara-1-17-20-dien-21-oi.html","6β,16β-diacetoxy-25-hydroxy-3,7-dioxy-29-nordammara-1,17(20)-dien-21-oic acid"],["antibacterial/caminoside-a.html","caminoside A"],["antibacterial/geranylgeranyl-acetate.html","geranylgeranyl acetate"],["antibacterial/helvolic-acid-methyl-ester.html","helvolic acid methyl ester"],["antibacterial/helvolic-acid.html","helvolic acid"]]},{"id":"CHEBI:59869","l":"","na":68,"nb":4,"a":[["EC%3A1.4.1.5","L-amino-acid dehydrogenase"],["EC%3A1.4.3.2","L-amino-acid oxidase"],["EC%3A1.5.3.2","N-methyl-L-amino-acid oxidase"],["EC%3A2.6.1.12","alanine--oxo-acid transaminase"],["EC%3A2.6.1.13","ornithine aminotransferase"],["EC%3A2.6.1.14","asparagine--oxo-acid transaminase"]],"b":[["antibacterial/l-%CE%B2-ethynylserine-zwitterion.html","L-β-ethynylserine zwitterion"],["unspecified/alliin-zwitterion.html","alliin zwitterion"],["unspecified/anticapsin-zwitterion.html","anticapsin zwitterion"],["unspecified/l-propargylglycine-zwitterion.html","L-propargylglycine zwitterion"]]},{"id":"ARO:3000387","l":"","na":58,"nb":4,"a":[["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3004188","23S rRNA with mutation conferring resistance to phenicol antibiotics"],["ARO%3A3004451","Agrobacterium fabrum chloramphenicol acetyltransferase"],["ARO%3A3004452","Alkalihalobacillus clausii chloramphenicol acetyltransferase"],["ARO%3A3002672","Bacillus pumilus cat86"],["ARO%3A3004454","Campylobacter coli chloramphenicol acetyltransferase"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"CHEBI:33308","l":"","na":4,"nb":43,"a":[["EC%3A3.1.1.1","carboxylesterase"],["RHEA%3A21164","a carboxylic ester + H2O = an alcohol + a carboxylate + H(+)"],["MCSA%3A631","cutinase"],["MCSA%3A556","esterase (estA)"]],"b":[["antibacterial/bacilysocin.html","bacilysocin"],["antibacterial/cefpodoxime-proxetil.html","cefpodoxime proxetil"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/fidaxomicin.html","fidaxomicin"],["antibacterial/fluquinometoate.html","fluquinometoate"],["antibacterial/fumagillin.html","fumagillin"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":29,"nb":4,"a":[["Pfam%3APF09156","Anthrax toxin lethal factor, middle domain"],["Pfam%3APF08401","N-terminal domain of anti-restriction factor ArdC"],["Pfam%3APF07737","Anthrax toxin lethal factor, N- and C-terminal domain"],["Pfam%3APF27053","Bacillus anthracis plasmid pXO2 protein 26"],["Pfam%3APF13205","Bacterial Ig-like domain"],["Pfam%3APF17475","Clostridial binary toxin B/anthrax toxin PA domain 2"]],"b":[["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/trimethoprim.html","trimethoprim"],["antiprotozoal/suramin.html","suramin"],["antiviral/tilorone.html","tilorone"]]},{"id":"ARO:3000079","l":"","na":21,"nb":4,"a":[["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3004172","23S rRNA with mutation conferring resistance to oxazolidinone antibiotics"],["ARO%3A3000202","Cfr 23S ribosomal RNA methyltransferase"],["ARO%3A3004649","cfr(B)"],["ARO%3A3004609","cfr(B) Group"],["ARO%3A3004610","cfr(C) Group"]],"b":[["antibacterial/contezolid.html","contezolid"],["antibacterial/linezolid.html","linezolid"],["antibacterial/tbi-223.html","TBI-223"],["antibacterial/tedizolid.html","tedizolid"]]},{"id":"CHEBI:22315","l":"alkaloid","na":4,"nb":21,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antibacterial/14-norpseurotin-a.html","14-norpseurotin A"],["antibacterial/5-bromo-8-methoxy-1-methyl-%CE%B2-carboline.html","5-bromo-8-methoxy-1-methyl-β-carboline"],["antibacterial/undecylprodigiosin.html","undecylprodigiosin"],["antifungal/feruloylagmatine.html","feruloylagmatine"],["antifungal/pyrrolnitrin.html","pyrrolnitrin"],["antifungal/sampangine.html","sampangine"]]},{"id":"CHEBI:23765","l":"","na":4,"nb":19,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.60","The Organo Anion Transporter (OAT) Family"]],"b":[["antibacterial/2-heptyl-4-quinolone.html","2-heptyl-4-quinolone"],["antibacterial/aurachin-c.html","aurachin C"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/difloxacin.html","difloxacin"],["antibacterial/e-1-hydroxy-2-non-1-en-1-yl-quinolin-4-one.html","(E)-1-hydroxy-2-(non-1-en-1-yl)quinolin-4-one"],["antibacterial/enrofloxacin.html","enrofloxacin"]]},{"id":"CHEBI:25106","l":"","na":4,"nb":18,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.28","The Bile Acid:Na+ Symporter (BASS) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/5e-7-oxozeaenol.html","5E-7-oxozeaenol"],["antibacterial/5z-7-oxozeaenol.html","5Z-7-oxozeaenol"],["antibacterial/bromophycolide-a.html","bromophycolide A"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/pristinamycin-iia.html","pristinamycin IIA"]]},{"id":"ARO:3003032","l":"MexXY-OprM","na":4,"nb":11,"a":[["ARO%3A3003032","MexXY-OprM"],["ARO%3A3005068","ParR"],["ARO%3A3005066","parRS"],["ARO%3A3005067","ParS"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/gentamicin-c.html","gentamicin C"],["antibacterial/meropenem.html","meropenem"]]},{"id":"CHEBI:33575","l":"carboxylic acid","na":4,"nb":11,"a":[["MCSA%3A105","aldehyde dehydrogenase (FAD-independent)"],["MCSA%3A803","aldehyde dehydrogenase (NAD+) (class 2)"],["MCSA%3A556","esterase (estA)"],["MCSA%3A755","lysophospholipase"]],"b":[["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefatrizine.html","cefatrizine"],["antibacterial/cefazedone.html","cefazedone"],["antibacterial/cefcapene.html","cefcapene"],["antibacterial/cefditoren.html","cefditoren"],["antibacterial/cefiderocol.html","cefiderocol"]]},{"id":"ARO:3000453","l":"streptogramin vat acetyltransferase","na":9,"nb":4,"a":[["ARO%3A3000453","streptogramin vat acetyltransferase"],["ARO%3A3002840","vatA"],["ARO%3A3002841","vatB"],["ARO%3A3002842","vatC"],["ARO%3A3002843","vatD"],["ARO%3A3002844","vatE"]],"b":[["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/madumycin-ii.html","madumycin II"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3000390","l":"rifampin ADP-ribosyltransferase (Arr)","na":8,"nb":4,"a":[["ARO%3A3002846","arr-1"],["ARO%3A3002847","arr-2"],["ARO%3A3002848","arr-3"],["ARO%3A3002849","arr-4"],["ARO%3A3002850","arr-5"],["ARO%3A3002852","arr-7"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3000788","l":"MdtEF-TolC","na":6,"nb":4,"a":[["ARO%3A3000518","CRP"],["ARO%3A3000832","evgA"],["ARO%3A3000515","evgSA"],["ARO%3A3003838","gadW"],["ARO%3A3000508","gadX"],["ARO%3A3000788","MdtEF-TolC"]],"b":[["antibacterial/cloxacillin.html","cloxacillin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/oxacillin.html","oxacillin"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":4,"nb":6,"a":[["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF09711","CRISPR-associated protein (Cas_Csn2)"],["Pfam%3APF06308","23S rRNA methylastransferase leader peptide (ErmCL)"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3004116","l":"","na":4,"nb":5,"a":[["ARO%3A3003754","antibiotic resistant nfsA"],["ARO%3A3003755","Antibiotic resistant nfsB"],["ARO%3A3003751","Escherichia coli nfsA mutations conferring resistance to nitrofurantoin"],["ARO%3A3003756","Escherichia coli nfsB with mutation conferring resistance to nitrofurantoin"]],"b":[["antibacterial/furagin.html","furagin"],["antibacterial/furazolidone.html","furazolidone"],["antibacterial/nifuratel.html","nifuratel"],["antibacterial/nifuroxazide.html","nifuroxazide"],["antibacterial/nitrofurantoin.html","nitrofurantoin"]]},{"id":"NCBITaxon:5518","l":"Fusarium graminearum","na":4,"nb":5,"a":[["Pfam%3APF09118","Galactose oxidase-like, Early set domain"],["Pfam%3APF07250","Glyoxal oxidase N-terminus"],["TED%3AAF-A0A2H3FY84-F1-model_v4_TED03","TED novel fold AF-A0A2H3FY84-F1-model_v4_TED03"],["TED%3AAF-A0A2H3G191-F1-model_v4_TED01","TED novel fold AF-A0A2H3G191-F1-model_v4_TED01"]],"b":[["antifungal/carbendazim.html","carbendazim"],["antifungal/difenoconazole.html","difenoconazole"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/prochloraz.html","prochloraz"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"ARO:3007496","l":"","na":4,"nb":4,"a":[["ARO%3A3007548","Candida spp. FKS2 with mutations conferring resistance to echinocandin antibiotics"],["ARO%3A3007664","Candida spp. High Osmolarity Glycerol 1 conferring resistance to caspofungin via absence"],["ARO%3A3007546","echinocandin antibiotic-resistant beta-1,3-D-glucan synthase"],["ARO%3A3007663","stress-activated protein kinases"]],"b":[["antibacterial/arborcandin-c.html","arborcandin C"],["antifungal/anidulafungin.html","anidulafungin"],["antifungal/caspofungin.html","caspofungin"],["antifungal/micafungin.html","micafungin"]]},{"id":"ARO:3000171","l":"","na":60,"nb":3,"a":[["ARO%3A3005354","dfr22"],["ARO%3A3002854","dfrA1"],["ARO%3A3003011","dfrA10"],["ARO%3A3002858","dfrA12"],["ARO%3A3003012","dfrA13"],["ARO%3A3002859","dfrA14"]],"b":[["antibacterial/brodimoprim.html","brodimoprim"],["antibacterial/tetroxoprim.html","tetroxoprim"],["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004598","l":"Klebsiella pneumoniae KpnGH-TolC","na":3,"nb":17,"a":[["ARO%3A3004588","Klebsiella pneumoniae KpnG"],["ARO%3A3004598","Klebsiella pneumoniae KpnGH-TolC"],["ARO%3A3004597","Klebsiella pneumoniae KpnH"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":3,"a":[["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["Pfam%3APF14562","Restriction endonuclease BglI"],["Pfam%3APF09195","Restriction endonuclease BglII/BglIII"],["Pfam%3APF09208","Restriction endonuclease MspI"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"CHEBI:35924","l":"","na":14,"nb":3,"a":[["EC%3A1.11.1.24","thioredoxin-dependent peroxiredoxin"],["EC%3A1.11.1.25","glutaredoxin-dependent peroxiredoxin"],["EC%3A1.11.1.26","NADH-dependent peroxiredoxin"],["EC%3A1.11.1.27","glutathione-dependent peroxiredoxin"],["EC%3A1.11.1.28","lipoyl-dependent peroxiredoxin"],["EC%3A1.11.1.29","mycoredoxin-dependent peroxiredoxin"]],"b":[["antiprotozoal/10%CE%B1-hydroperoxy-guaia-1-11-diene.html","10α-hydroperoxy-guaia-1,11-diene"],["antiprotozoal/1r-4s-1-hydroperoxy-p-menth-2-en-8-ol-acetate.html","(1R,4S)-1-hydroperoxy-p-menth-2-en-8-ol acetate"],["antiprotozoal/1%CE%B1-hydroperoxy-guaia-10-15-11-diene.html","1α-hydroperoxy-guaia-10(15),11-diene"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":13,"nb":3,"a":[["Pfam%3APF07832","Cfr10I/Bse634I restriction endonuclease"],["Pfam%3APF22348","Colicin-A N-terminal domain"],["Pfam%3APF01024","Colicin pore forming domain"],["Pfam%3APF18427","DD-reactivating factor swiveling domain"],["Pfam%3APF02286","Dehydratase large subunit"],["Pfam%3APF02288","Dehydratase medium subunit"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"UniProt:P38631","l":"","na":13,"nb":3,"a":[["ComplexPortal%3ACPX-1812","1,3-beta-D-glucan synthase complex, FKS1-RHO1 variant"],["GO%3A0000148","1,3-beta-D-glucan synthase complex"],["GO%3A0030479","actin cortical patch"],["GO%3A0003843","1,3-beta-D-glucan synthase activity"],["GO%3A0006075","(1->3)-beta-D-glucan biosynthetic process"],["GO%3A0030476","ascospore wall assembly"]],"b":[["antifungal/anidulafungin.html","anidulafungin"],["antifungal/caspofungin.html","caspofungin"],["antifungal/micafungin.html","micafungin"]]},{"id":"ARO:3004585","l":"Klebsiella pneumoniae KpnEF","na":3,"nb":11,"a":[["ARO%3A3004580","Klebsiella pneumoniae KpnE"],["ARO%3A3004585","Klebsiella pneumoniae KpnEF"],["ARO%3A3004583","Klebsiella pneumoniae KpnF"]],"b":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"],["antibacterial/cefepime.html","cefepime"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"NCBITaxon:451804","l":"Aspergillus fumigatus (strain CBS 144.89 / FGSC A1163 / CEA10)","na":11,"nb":3,"a":[["Pfam%3APF28347","ACE1 small beta sheet domain"],["Pfam%3APF28329","Zinc finger transcription factor ace1 N-terminal domain"],["Pfam%3APF11001","YDR124W-like, helical bundle domain"],["Pfam%3APF28457","Probable beta-glucosidase btgE N-terminal domain"],["Pfam%3APF13373","DSC E3 ubiquitin ligase complex subunit 3, C-terminal domain"],["Pfam%3APF10302","DSC E3 ubiquitin ligase complex subunit 3, ubiquitin-like domain"]],"b":[["antifungal/itraconazole.html","itraconazole"],["antifungal/terbinafine.html","terbinafine"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"CHEBI:33838","l":"","na":3,"nb":10,"a":[["RHEA%3A22140","a nucleoside 5'-phosphate + H2O = a nucleoside + phosphate"],["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"],["TCDB%3A9.A.72","The Putative Nucleoside Efflux Transporter (NET) Family"]],"b":[["unspecified/tunicamycin-a0.html","tunicamycin A0"],["unspecified/tunicamycin-a1.html","tunicamycin A1"],["unspecified/tunicamycin-a2.html","tunicamycin A2"],["unspecified/tunicamycin-b1.html","tunicamycin B1"],["unspecified/tunicamycin-b2.html","tunicamycin B2"],["unspecified/tunicamycin-b3.html","tunicamycin B3"]]},{"id":"CHEBI:55465","l":"","na":3,"nb":8,"a":[["EC%3A2.1.1.150","isoflavone 7-O-methyltransferase"],["RHEA%3A17933","a 7-hydroxyisoflavone + S-adenosyl-L-methionine = a 7-methoxyisoflavone + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A56344","a 7-hydroxyisoflavone + UDP-alpha-D-glucose = a 7-hydroxyisoflavone 7-O-beta-D-glucoside + UDP + H(+)"]],"b":[["antibacterial/5-7-4-trihydroxy-6-8-diprenylisoflavone.html","5,7,4'-trihydroxy-6,8-diprenylisoflavone"],["antibacterial/dihydrolicoisoflavone-a.html","dihydrolicoisoflavone A"],["antifungal/wighteone.html","wighteone"],["antiprotozoal/5-7-3-4-tetrahydroxy-2-3-3-dimethylallyl-isoflavone.html","5,7,3',4'-tetrahydroxy-2'-(3,3-dimethylallyl)isoflavone"],["antiprotozoal/7-4-dihydroxy-3-methoxyisoflavone.html","7,4'-dihydroxy-3'-methoxyisoflavone"],["antiprotozoal/pseudobaptigenin.html","pseudobaptigenin"]]},{"id":"CHEBI:17580","l":"linalool","na":6,"nb":3,"a":[["EC%3A1.14.14.84","linalool 8-monooxygenase"],["EC%3A5.4.4.8","linalool isomerase"],["RHEA%3A68708","(2E)-geranyl diphosphate + H2O = linalool + diphosphate"],["RHEA%3A32635","linalool + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = (6E)-8-oxolinalool + 2 oxidized [NADPH--hemoprotein reductase] + 3 H2O + 2 H(+)"],["RHEA%3A54656","linalool = (2E)-geraniol"],["RHEA%3A32503","linalool + reduced [NADPH--hemoprotein reductase] + O2 = (6E)-8-hydroxylinalool + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["unspecified/linalool.html","linalool"],["unspecified/r-linalool.html","(R)-linalool"],["unspecified/s-linalool.html","(S)-linalool"]]},{"id":"CHEBI:20156","l":"","na":5,"nb":3,"a":[["EC%3A1.17.99.11","3-oxo-Delta(1)-steroid hydratase/dehydrogenase"],["EC%3A1.3.99.4","3-oxosteroid 1-dehydrogenase"],["RHEA%3A65848","a 3-oxo-Delta(1)-steroid + A + H2O = a steroid 1,3-dione + AH2"],["RHEA%3A65852","a 3-oxo-Delta(1)-steroid + H2O = a 1-hydroxy-3-oxo steroid"],["RHEA%3A13329","a 3-oxosteroid + A = a 3-oxo-Delta(1)-steroid + AH2"]],"b":[["antibacterial/6%CE%B2-16%CE%B2-diacetoxy-25-hydroxy-3-7-dioxy-29-nordammara-1-17-20-dien-21-oi.html","6β,16β-diacetoxy-25-hydroxy-3,7-dioxy-29-nordammara-1,17(20)-dien-21-oic acid"],["antibacterial/helvolic-acid-methyl-ester.html","helvolic acid methyl ester"],["antibacterial/helvolic-acid.html","helvolic acid"]]},{"id":"CHEBI:25697","l":"","na":3,"nb":5,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antibacterial/chelerythrine.html","chelerythrine"],["antifungal/isavuconazonium.html","isavuconazonium"],["antiprotozoal/nostocarboline.html","nostocarboline"],["antiprotozoal/quinine-1.html","quinine(1+)"],["antiviral/meso-tetrakis-n-methyl-4-pyridyl-porphine-4.html","meso-tetrakis(N-methyl-4-pyridyl)porphine(4+)"]]},{"id":"CHEBI:38083","l":"","na":5,"nb":3,"a":[["TCDB%3A2.A.69","The Auxin Efflux Carrier (AEC) Family"],["TCDB%3A2.A.70","The Malonate:Na+ Symporter (MSS) Family"],["TCDB%3A2.A.101","The Malonate Uptake (MatC) Family (Formerly UIT1)"],["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["TCDB%3A2.A.56","The Tripartite ATP-independent Periplasmic Transporter (TRAP-T) Family"]],"b":[["antibacterial/6%CE%B1-malonyloxymanoyl-oxide.html","6α-malonyloxymanoyl oxide"],["antifungal/brasilinolide-a.html","brasilinolide A"],["antifungal/isoprothiolane.html","isoprothiolane"]]},{"id":"ARO:3000391","l":"norA","na":4,"nb":3,"a":[["ARO%3A3000838","arlR"],["ARO%3A3000547","arlRS"],["ARO%3A3000839","arlS"],["ARO%3A3000391","norA"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"],["biocide/acriflavine.html","acriflavine"]]},{"id":"NCBITaxon:1213859","l":"Colletotrichum fructicola (strain Nara gc5)","na":4,"nb":3,"a":[["TED%3AAF-A0A7J6IJ15-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7J6IJ15-F1-model_v4_TED03"],["TED%3AAF-A0A7J6IKD8-F1-model_v4_TED01","TED novel fold AF-A0A7J6IKD8-F1-model_v4_TED01"],["TED%3AAF-L2G012-F1-model_v4_TED02","TED novel fold AF-L2G012-F1-model_v4_TED02"],["TED%3AAF-L2G364-F1-model_v4_TED02","TED novel fold AF-L2G364-F1-model_v4_TED02"]],"b":[["antifungal/difenoconazole.html","difenoconazole"],["antifungal/prochloraz.html","prochloraz"],["antifungal/propiconazole.html","propiconazole"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":3,"nb":4,"a":[["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF08130","Type A lantibiotic family"],["Pfam%3APF04738","Lantibiotic dehydratase, N terminus"]],"b":[["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/oxacillin.html","oxacillin"]]},{"id":"CHEBI:3638","l":"chloroquine","na":3,"nb":3,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antiprotozoal/chloroquine.html","chloroquine"],["antiprotozoal/r-chloroquine.html","(R)-chloroquine"],["antiprotozoal/s-chloroquine.html","(S)-chloroquine"]]},{"id":"CHEBI:75568","l":"1-monolinolein","na":3,"nb":3,"a":[["RHEA%3A38131","1-(9Z,12Z-octadecadienoyl)-glycerol + (9Z)-octadecenoyl-CoA = 1-(9Z,12Z-octadecadienoyl)-2-(9Z-octadecenoyl)-glycerol + CoA"],["RHEA%3A77591","1-(9Z,12Z-octadecadienoyl)-glycerol + (9Z)-octadecenoyl-CoA = 1-(9Z-octadecenoyl)-3-(9Z,12Z-octadecadienoyl)-glycerol + CoA"],["RHEA%3A48428","1-(9Z,12Z-octadecadienoyl)-glycerol + H2O = (9Z,12Z)-octadecadienoate + glycerol + H(+)"]],"b":[["antiviral/1-linoleoyl-sn-glycerol.html","1-linoleoyl-sn-glycerol"],["antiviral/1-monolinolein.html","1-monolinolein"],["antiviral/3-linoleoyl-sn-glycerol.html","3-linoleoyl-sn-glycerol"]]},{"id":"NCBITaxon:274","l":"Thermus thermophilus","na":3,"nb":3,"a":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF01861","Branched-chain polyamine synthase A C-terminal domain"],["Pfam%3APF07736","Chorismate mutase type I"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"],["antibacterial/streptomycin.html","streptomycin"],["unspecified/streptolydigin.html","streptolydigin"]]},{"id":"NCBITaxon:665079","l":"Sclerotinia sclerotiorum (strain ATCC 18683 / 1980 / Ss-1)","na":3,"nb":3,"a":[["TED%3AAF-A0A1D9PSD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1D9PSD6-F1-model_v4_TED01"],["TED%3AAF-A7EZS3-F1-model_v4_TED02","TED highly-symmetric fold AF-A7EZS3-F1-model_v4_TED02"],["TED%3AAF-A0A1D9QKV1-F1-model_v4_TED02","TED novel fold AF-A0A1D9QKV1-F1-model_v4_TED02"]],"b":[["antifungal/carboxin.html","carboxin"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/iprodione.html","iprodione"]]},{"id":"UniProt:P04585","l":"","na":3,"nb":3,"a":[["MCSA%3A175","HIV-1 retropepsin"],["proteintraitsmech%3ABIOLIP_E9B","E9B-binding site"],["proteintraitsmech%3ABIOLIP_TNF","TNF-binding site"]],"b":[["antiviral/delavirdine.html","delavirdine"],["antiviral/emivirine.html","emivirine"],["antiviral/nevirapine.html","nevirapine"]]},{"id":"CHEBI:35718","l":"","na":2,"nb":514,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/1-2-dodecanediol.html","1,2-dodecanediol"],["antibacterial/1-dodecylguanidine-acetate.html","1-dodecylguanidine acetate"],["antibacterial/1-dodecylguanidine.html","1-dodecylguanidine"],["antibacterial/5-bromo-8-methoxy-1-methyl-%CE%B2-carboline.html","5-bromo-8-methoxy-1-methyl-β-carboline"],["antibacterial/5-chloro-7-iodoquinolin-8-ol.html","5-chloro-7-iodoquinolin-8-ol"],["antibacterial/6-methoxy-2-benzoxazolinone.html","6-methoxy-2-benzoxazolinone"]]},{"id":"CHEBI:24127","l":"","na":2,"nb":155,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/allyl-alcohol.html","allyl alcohol"],["antibacterial/dehydroacetic-acid.html","dehydroacetic acid"],["antibacterial/hexachlorophene.html","hexachlorophene"],["antibacterial/methylene-bis-thiocyanate.html","methylene bis(thiocyanate)"],["antibacterial/streptomycin.html","streptomycin"],["antibacterial/tecloftalam.html","tecloftalam"]]},{"id":"CHEBI:22587","l":"","na":2,"nb":149,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/6-diazo-5-oxo-l-norleucine.html","6-diazo-5-oxo-L-norleucine"],["antibacterial/benzethonium-chloride.html","benzethonium chloride"],["antibacterial/gramine.html","gramine"],["antibacterial/hypothiocyanous-acid.html","hypothiocyanous acid"],["antibacterial/mi-1148.html","MI-1148"],["antibacterial/phenethyl-caffeate.html","phenethyl caffeate"]]},{"id":"ARO:3004268","l":"MCR phosphoethanolamine transferase","na":106,"nb":2,"a":[["ARO%3A3003689","MCR-1.1"],["ARO%3A3004506","MCR-1.10"],["ARO%3A3004688","MCR-1.11"],["ARO%3A3004689","MCR-1.12"],["ARO%3A3004690","MCR-1.13"],["ARO%3A3007246","MCR-1.14"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"CHEBI:23066","l":"","na":2,"nb":66,"a":[["TCDB%3A8.A.212","The d-Amino Acid Peptidase (dAAP) Family"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]],"b":[["antibacterial/cefacetrile.html","cefacetrile"],["antibacterial/cefaclor.html","cefaclor"],["antibacterial/cefadroxil.html","cefadroxil"],["antibacterial/cefaloram.html","cefaloram"],["antibacterial/cefaloridine.html","cefaloridine"],["antibacterial/cefalotin.html","cefalotin"]]},{"id":"ARO:3007149","l":"","na":53,"nb":2,"a":[["ARO%3A3004251","antibiotic-resistant cya adenylate cyclase"],["ARO%3A3004247","antibiotic-resistant GlpT"],["ARO%3A3002811","antibiotic-resistant murA transferase"],["ARO%3A3004250","antibiotic-resistant ptsI phosphotransferase"],["ARO%3A3004248","antibiotic-resistant UhpT"],["ARO%3A3003777","Borreliella burgdorferi murA with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"],["antibacterial/fosmidomycin.html","fosmidomycin"]]},{"id":"CHEBI:32955","l":"","na":2,"nb":52,"a":[["EC%3A3.3.2.10","soluble epoxide hydrolase"],["RHEA%3A19037","an epoxide + H2O = an ethanediol"]],"b":[["antibacterial/ambiguine-i.html","ambiguine I"],["antibacterial/asperlactone.html","asperlactone"],["antibacterial/aspyrone.html","aspyrone"],["antibacterial/asukamycin.html","asukamycin"],["antibacterial/ei-1511-3.html","EI-1511-3"],["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"CHEBI:26188","l":"","na":2,"nb":41,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["antibacterial/2-4-dihydroxy-3-methyl-6-2-oxopropyl-benzaldehyde.html","2,4-dihydroxy-3-methyl-6-(2-oxopropyl)benzaldehyde"],["antibacterial/asperlactone.html","asperlactone"],["antibacterial/aspyrone.html","aspyrone"],["antibacterial/asukamycin.html","asukamycin"],["antibacterial/bacillaene.html","bacillaene"],["antibacterial/butremycin.html","butremycin"]]},{"id":"CHEBI:37581","l":"","na":2,"nb":39,"a":[["EC%3A3.1.1.25","1,4-lactonase"],["RHEA%3A12745","a 1,4-lactone + H2O = a 4-hydroxyacid + H(+)"]],"b":[["antibacterial/1-hydroxycrisamicin-a.html","1-hydroxycrisamicin A"],["antibacterial/decatromicin-a.html","decatromicin A"],["antibacterial/decatromicin-b.html","decatromicin B"],["antibacterial/fumimycin.html","fumimycin"],["antibacterial/isopatulin.html","isopatulin"],["antibacterial/lactonamycin.html","lactonamycin"]]},{"id":"CHEBI:48219","l":"","na":2,"nb":26,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"],["antibacterial/benzethonium-chloride.html","benzethonium chloride"],["antibacterial/quaternium-15.html","quaternium-15"],["antifungal/2-4-xylenol.html","2,4-xylenol"],["antifungal/thimerosal.html","thimerosal"],["biocide/1-3-6-8-tetraazatricyclo-4-4-1-13-8-dodecane.html","1,3,6,8-tetraazatricyclo[4,4,1,13,8]dodecane"]]},{"id":"ARO:3007156","l":"","na":20,"nb":2,"a":[["ARO%3A3003457","ethionamide resistant ethA"],["ARO%3A3004888","ethionamide resistant fabG1"],["ARO%3A3004890","ethionamide resistant mshC"],["ARO%3A3004892","ethionamide resistant nudC"],["ARO%3A3004954","Ethionamide resistant Rv0565c"],["ARO%3A3004875","inhA with mutations with conferring resistance to ethionamide"]],"b":[["antibacterial/prothionamide.html","prothionamide"],["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"CHEBI:17176","l":"","na":17,"nb":2,"a":[["EC%3A1.1.3.20","long-chain-alcohol oxidase"],["EC%3A1.14.14.3","bacterial luciferase"],["EC%3A1.2.1.48","long-chain-aldehyde dehydrogenase"],["EC%3A1.2.1.50","long-chain-fatty-acyl-CoA reductase"],["EC%3A1.2.1.80","long-chain acyl-[acyl-carrier-protein] reductase"],["EC%3A4.1.99.5","aldehyde oxygenase (deformylating)"]],"b":[["antibacterial/e-dodec-2-enal.html","(E)-dodec-2-enal"],["unspecified/pentadecanal.html","pentadecanal"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":16,"nb":2,"a":[["Pfam%3APF16822","SGNH hydrolase-like domain, acetyltransferase AlgX"],["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"],["Pfam%3APF11182","Alginate O-acetyl transferase AlgF"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF27129","Functional amyloid protein FapB/FapC family"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]],"b":[["antibacterial/mupirocin.html","mupirocin"],["antifungal/2-4-diacetylphloroglucinol.html","2,4-diacetylphloroglucinol"]]},{"id":"UniProt:Q45066","l":"","na":16,"nb":2,"a":[["GO%3A0009330","DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) complex"],["GO%3A0034335","DNA negative supercoiling activity"],["NCBIfam%3ANF004044","DNA topoisomerase (ATP-hydrolyzing)"],["NCBIfam%3ATIGR01063","DNA topoisomerase (ATP-hydrolyzing) subunit A"],["NCBIfam%3ATIGR01061","DNA topoisomerase IV subunit A"],["CDD%3Acd00187","TOP4c"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"CHEBI:33566","l":"","na":2,"nb":15,"a":[["EC%3A2.1.1.6","catechol O-methyltransferase"],["RHEA%3A17877","a catechol + S-adenosyl-L-methionine = a guaiacol + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/acteoside.html","acteoside"],["antibacterial/brazilin.html","brazilin"],["antibacterial/comazaphilone-c.html","comazaphilone C"],["antibacterial/comazaphilone-e.html","comazaphilone E"],["antibacterial/ethyl-3-4-dihydroxybenzoate.html","ethyl 3,4-dihydroxybenzoate"],["antifungal/altenusin.html","altenusin"]]},{"id":"GO:0003964","l":"RNA-directed DNA polymerase activity","na":13,"nb":2,"a":[["EC%3A2.7.7.49","RNA-directed DNA polymerase"],["GO%3A0003964","RNA-directed DNA polymerase activity"],["GO%3A0003720","telomerase activity"],["NCBIfam%3ATIGR04416","group II intron reverse transcriptase/maturase"],["InterPro%3AIPR010659","Reverse transcriptase connection"],["InterPro%3AIPR010661","Reverse transcriptase thumb"]],"b":[["antiviral/delavirdine.html","delavirdine"],["antiviral/nevirapine.html","nevirapine"]]},{"id":"CHEBI:140331","l":"","na":2,"nb":11,"a":[["EC%3A2.1.1.231","flavonoid 4'-O-methyltransferase"],["RHEA%3A31743","a 4'-hydroxyflavanone + S-adenosyl-L-methionine = a 4'-methoxyflavanone + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/6-8-diprenylnaringenin.html","6,8-diprenylnaringenin"],["antibacterial/naringenin-7-o-%CE%B2-d-glucoside.html","naringenin 7-O-β-D-glucoside"],["antibacterial/remangiflavanone-a.html","remangiflavanone A"],["antibacterial/remangiflavanone-b.html","remangiflavanone B"],["antibacterial/sigmoidin-a.html","sigmoidin A"],["antibacterial/sigmoidin-b.html","sigmoidin B"]]},{"id":"CHEBI:77396","l":"","na":11,"nb":2,"a":[["EC%3A1.1.1.192","long-chain-alcohol dehydrogenase"],["EC%3A1.1.3.20","long-chain-alcohol oxidase"],["EC%3A1.2.1.108","alcohol-forming fatty acyl-CoA reductase (NADH)"],["EC%3A1.2.1.84","alcohol-forming fatty acyl-CoA reductase (NADPH)"],["EC%3A1.2.1.n2","fatty acyl-CoA reductase"],["RHEA%3A36303","a fatty acyl-CoA + 2 NADPH + 2 H(+) = a long-chain primary fatty alcohol + 2 NADP(+) + CoA"]],"b":[["antibacterial/9z-12z-15z-octadecatrien-1-ol.html","(9Z,12Z,15Z)-octadecatrien-1-ol"],["antiviral/docosan-1-ol.html","docosan-1-ol"]]},{"id":"ARO:3007560","l":"","na":10,"nb":2,"a":[["ARO%3A3007642","Aspergillus spp. fcyB conferring resistance to 5-flucytosine via reduced permeability"],["ARO%3A3007643","Aspergillus spp. transcription factor pacC"],["ARO%3A3007665","Candida spp. FCY2 conferring resistance to 5-flucytosine via reduced permeability"],["ARO%3A3007557","Candida spp. FUR1 with mutations conferring resistance to 5-flucytosine"],["ARO%3A3007568","Cryptococcus spp. UXS1 conferring resistance to 5-flucytosine via absence"],["ARO%3A3007641","fungal nucleobase transporters"]],"b":[["antifungal/5-fluorouracil.html","5-Fluorouracil"],["antifungal/flucytosine.html","flucytosine"]]},{"id":"NCBITaxon:242507","l":"","na":10,"nb":2,"a":[["Pfam%3APF28293","Biotrophy-associated secreted protein 2"],["Pfam%3APF28414","Biotrophy-associated secreted protein 4"],["Pfam%3APF22997","Chitin synthase 4-like domain"],["Pfam%3APF27979","CON7 transcription factor helical domain"],["Pfam%3APF26980","Dicer-like protein 2, dsRNA binding domain"],["Pfam%3APF11327","Egh16-like virulence factor"]],"b":[["antifungal/carboxin.html","carboxin"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"UniProt:Q59192","l":"","na":10,"nb":2,"a":[["GO%3A0034335","DNA negative supercoiling activity"],["NCBIfam%3ANF004189","DNA gyrase subunit B"],["NCBIfam%3ATIGR01058","DNA topoisomerase IV subunit B"],["InterPro%3AIPR018522","DNA topoisomerase, type IIA, conserved site"],["CDD%3Acd16928","HATPase_GyrB-like"],["CDD%3Acd00822","TopoII_Trans_DNA_gyrase"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"CHEBI:35489","l":"","na":2,"nb":9,"a":[["EC%3A1.8.3.7","formylglycine-generating enzyme"],["RHEA%3A51152","L-cysteinyl-[sulfatase] + 2 a thiol + O2 = an organic disulfide + 3-oxo-L-alanyl-[sulfatase] + hydrogen sulfide + H2O + H(+)"]],"b":[["antibacterial/2-methyldithio-pyridine-n-oxide.html","2-(methyldithio)pyridine-N-oxide"],["antibacterial/thiram.html","thiram"],["antibacterial/tropodithietic-acid.html","tropodithietic acid"],["antifungal/diallyl-disulfide.html","diallyl disulfide"],["antifungal/disulfiram.html","disulfiram"],["antifungal/gliotoxin.html","gliotoxin"]]},{"id":"CHEBI:13248","l":"","na":2,"nb":8,"a":[["EC%3A3.5.1.13","aryl-acylamidase"],["RHEA%3A20297","an anilide + H2O = aniline + a carboxylate + H(+)"]],"b":[["antifungal/benodanil.html","benodanil"],["antifungal/carboxin.html","carboxin"],["antifungal/cyclanilide.html","cyclanilide"],["antifungal/fenfuram.html","fenfuram"],["antifungal/methfuroxam.html","methfuroxam"],["antifungal/oxycarboxin.html","oxycarboxin"]]},{"id":"CHEBI:134251","l":"","na":2,"nb":8,"a":[["EC%3A2.1.1.6","catechol O-methyltransferase"],["RHEA%3A17877","a catechol + S-adenosyl-L-methionine = a guaiacol + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/rhapontigenin.html","rhapontigenin"],["antifungal/coniferyl-aldehyde.html","coniferyl aldehyde"],["antifungal/nk372135c.html","NK372135C"],["antimycobacterial/1-2-hydroxy-4-methoxyphenyl-3-4-hydroxy-3-methoxyphenyl-propane.html","1-(2-hydroxy-4-methoxyphenyl)-3-(4-hydroxy-3-methoxyphenyl)propane"],["antiviral/5r-5-hydroxy-7-4-hydroxy-3-methoxyphenyl-1-phenyl-3-heptanone.html","(5R)-5-hydroxy-7-(4'-hydroxy-3'-methoxyphenyl)-1-phenyl-3-heptanone"],["antiviral/isorhapontigenin.html","isorhapontigenin"]]},{"id":"CHEBI:18254","l":"","na":8,"nb":2,"a":[["EC%3A2.7.1.77","nucleoside phosphotransferase"],["EC%3A3.1.3.5","5'-nucleotidase"],["EC%3A3.1.3.6","3'-nucleotidase"],["RHEA%3A19961","a 2'-deoxyribonucleoside + a ribonucleoside 5'-phosphate = a ribonucleoside + a 2'-deoxyribonucleoside 5'-phosphate"],["RHEA%3A10144","a ribonucleoside 3'-phosphate + H2O = a ribonucleoside + phosphate"],["RHEA%3A12484","a ribonucleoside 5'-phosphate + H2O = a ribonucleoside + phosphate"]],"b":[["antifungal/toyocamycin.html","toyocamycin"],["antifungal/tubercidin.html","tubercidin"]]},{"id":"CHEBI:26191","l":"","na":2,"nb":8,"a":[["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A1.A.8","The Major Intrinsic Protein (MIP) Family"]],"b":[["antifungal/reedsmycin-a.html","reedsmycin A"],["antifungal/reedsmycin-b.html","reedsmycin B"],["antifungal/reedsmycin-c.html","reedsmycin C"],["antifungal/reedsmycin-d.html","reedsmycin D"],["antifungal/reedsmycin-e.html","reedsmycin E"],["antifungal/validamycin-a.html","validamycin A"]]},{"id":"CHEBI:59062","l":"","na":2,"nb":8,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["antibacterial/colistimethate-a.html","colistimethate A"],["antibacterial/colistimethate-b.html","colistimethate B"],["antibacterial/colistin-a-sodium-methanesulfonate.html","colistin A sodium methanesulfonate"],["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b-sodium-methanesulfonate.html","colistin B sodium methanesulfonate"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":2,"nb":8,"a":[["PROSITE%3APS00820","Glucoamylase active site region signature"],["TED%3AAF-A0A7I9G6Y3-F1-model_v4_TED02","TED novel fold AF-A0A7I9G6Y3-F1-model_v4_TED02"]],"b":[["antifungal/anidulafungin.html","anidulafungin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/caspofungin.html","caspofungin"],["antifungal/cycloheximide.html","cycloheximide"],["antifungal/micafungin.html","micafungin"],["antifungal/oligomycin-a.html","oligomycin A"]]},{"id":"ARO:3000798","l":"MexEF-OprN","na":7,"nb":2,"a":[["ARO%3A3000798","MexEF-OprN"],["ARO%3A3004068","MexEF-OprN with MexS mutations conferring resistance to chloramphenicol, ciprofloxacin, and trimethoprim"],["ARO%3A3004066","MexEF-OprN with MexT mutation conferring resistance to chloramphenicol, ciprofloxacin, and trimethoprim"],["ARO%3A3004070","MexEF-OprN with MvaT deletion conferring resistance to chloramphenicol and norfloxacin"],["ARO%3A3000813","MexS"],["ARO%3A3000814","MexT"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"CHEBI:33839","l":"","na":7,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.I.3","The Bacterial (Planctomycetes) Nuclear Pore-like Complex (B-NPC) Family"],["TCDB%3A1.A.21","The Bcl-2 (Bcl-2) Family"],["TCDB%3A1.N.4","The FF Fusogen (FFF) Family"],["TCDB%3A1.Q.1","The Fungal Septal Pore (FSP) Family"],["TCDB%3A1.N.3","The Hapless2 Male Gamete Fusion Factor (Fusexin) Family"]],"b":[["antifungal/propineb.html","propineb"],["antifungal/zineb.html","zineb"]]},{"id":"ARO:3000772","l":"AdeIJK","na":2,"nb":6,"a":[["ARO%3A3000772","AdeIJK"],["ARO%3A3000559","adeN"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/imipenem.html","imipenem"],["antibacterial/tetracycline.html","tetracycline"],["antibacterial/ticarcillin.html","ticarcillin"],["antibacterial/trimethoprim.html","trimethoprim"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3007159","l":"","na":6,"nb":2,"a":[["ARO%3A3004183","aminosalicylate resistant dihydrofolate reductase"],["ARO%3A3004155","aminosalicylate resistant dihydrofolate synthase"],["ARO%3A3004152","aminosalicylate resistant thymidylate synthase"],["ARO%3A3004157","Mycobacterium tuberculosis folC with mutation conferring resistance to para-aminosalicylic acid"],["ARO%3A3004184","Mycobacterium tuberculosis ribD with mutation conferring resistance to para-aminosalicylic acid"],["ARO%3A3004153","Mycobacterium tuberculosis thyA with mutation conferring resistance to para-aminosalicylic acid"]],"b":[["antibacterial/diflunisal.html","diflunisal"],["antimycobacterial/4-aminosalicylic-acid.html","4-aminosalicylic acid"]]},{"id":"ARO:3007434","l":"almEFG","na":6,"nb":2,"a":[["ARO%3A3007430","alm glycyl carrier protein"],["ARO%3A3007432","alm glycyltransferase"],["ARO%3A3007433","almE"],["ARO%3A3007434","almEFG"],["ARO%3A3007431","almF"],["ARO%3A3004364","almG"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"CHEBI:140377","l":"","na":2,"nb":6,"a":[["EC%3A1.14.11.9","flavanone 3-dioxygenase"],["RHEA%3A18621","a (2S)-flavan-4-one + 2-oxoglutarate + O2 = a (2R,3R)-dihydroflavonol + succinate + CO2"]],"b":[["antibacterial/6-8-diprenylnaringenin.html","6,8-diprenylnaringenin"],["antibacterial/naringenin-7-o-%CE%B2-d-glucoside.html","naringenin 7-O-β-D-glucoside"],["antibacterial/sophoraflavanone-a.html","sophoraflavanone A"],["antifungal/selinone.html","selinone"],["antimycobacterial/sakuranetin.html","sakuranetin"],["antiprotozoal/sophoraflavanone-g.html","sophoraflavanone G"]]},{"id":"CHEBI:28802","l":"","na":6,"nb":2,"a":[["EC%3A1.14.20.6","flavonol synthase"],["EC%3A2.4.1.91","flavonol 3-O-glucosyltransferase"],["EC%3A3.2.1.62","glycosylceramidase"],["RHEA%3A21088","a (2R,3R)-dihydroflavonol + 2-oxoglutarate + O2 = a flavonol + succinate + CO2 + H2O"],["RHEA%3A81339","a flavonol 3-O-beta-D-glucoside + H2O = a flavonol + D-glucose"],["RHEA%3A22300","a flavonol + UDP-alpha-D-glucose = a flavonol 3-O-beta-D-glucoside + UDP + H(+)"]],"b":[["antibacterial/kaempferol.html","kaempferol"],["antiviral/quercetagetin.html","quercetagetin"]]},{"id":"CHEBI:4917","l":"eugenol","na":6,"nb":2,"a":[["EC%3A1.1.1.318","eugenol synthase"],["EC%3A2.1.1.146","(iso)eugenol O-methyltransferase"],["RHEA%3A32655","eugenol + a carboxylate + NADP(+) = a coniferyl ester + NADPH"],["RHEA%3A24690","eugenol + acetate + NADP(+) = (E)-coniferyl acetate + NADPH"],["RHEA%3A80551","eugenol + S-adenosyl-L-methionine = O-methyleugenol + S-adenosyl-L-homocysteine + H(+)"],["proteintraitsmech%3ABIOLIP_EOL","EOL-binding site"]],"b":[["antibacterial/dihydroconiferyl-alcohol.html","dihydroconiferyl alcohol"],["antibacterial/eugenol.html","eugenol"]]},{"id":"ARO:3000617","l":"mecA","na":5,"nb":2,"a":[["ARO%3A3000617","mecA"],["ARO%3A3003440","mecB"],["ARO%3A3001209","mecC"],["ARO%3A3004185","mecD"],["ARO%3A3001208","methicillin resistant PBP2"]],"b":[["antibacterial/ceftaroline.html","ceftaroline"],["antibacterial/methicillin.html","methicillin"]]},{"id":"CHEBI:28034","l":"","na":5,"nb":2,"a":[["EC%3A2.3.1.18","galactoside O-acetyltransferase"],["EC%3A2.4.3.1","beta-galactoside alpha-(2,6)-sialyltransferase"],["RHEA%3A15713","a beta-D-galactoside + acetyl-CoA = a 6-acetyl-beta-D-galactoside + CoA"],["RHEA%3A52104","a beta-D-galactoside + CMP-N-acetyl-beta-neuraminate = an N-acetyl-alpha-neuraminyl-(2->6)-beta-D-galactosyl derivative + CMP + H(+)"],["RHEA%3A85983","a beta-D-galactoside + UDP-N-acetyl-alpha-D-glucosamine = an N-acetyl-alpha-D-glucosaminyl-(1->4)-beta-D-galactosyl derivative + UDP + H(+)"]],"b":[["antifungal/kaempferol-3-o-%CE%B2-d-galactoside.html","kaempferol 3-O-β-D-galactoside"],["antiviral/acacetin-7-o-%CE%B2-d-galactopyranoside.html","acacetin-7-O-β-D-galactopyranoside"]]},{"id":"CHEBI:35748","l":"","na":2,"nb":5,"a":[["RHEA%3A59388","a fatty acid ester + H2O = an aliphatic alcohol + a fatty acid + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antiprotozoal/neurolenin-a.html","neurolenin A"],["antiprotozoal/neurolenin-b.html","neurolenin B"],["antiprotozoal/neurolenin-c.html","neurolenin C"],["antiprotozoal/neurolenin-d.html","neurolenin D"],["antiviral/interiotherin-b.html","interiotherin B"]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":2,"nb":5,"a":[["Pfam%3APF07833","Copper amine oxidase N-terminal domain"],["TED%3AAF-A0A447L715-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A447L715-F1-model_v4_TED02"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3000248","l":"DnaA","na":2,"nb":4,"a":[["ARO%3A3000248","DnaA"],["ARO%3A3004244","DnaA chromosomal replication initiation protein"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3000369","l":"MtrCDE","na":4,"nb":2,"a":[["ARO%3A3000816","mtrA"],["ARO%3A3000369","MtrCDE"],["ARO%3A3000817","mtrR"],["ARO%3A3004851","Neisseria gonorrhoeae mtrR with mutation conferring resistance"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003581","l":"Acinetobacter mutant Lpx gene conferring resistance to colistin","na":4,"nb":2,"a":[["ARO%3A3003581","Acinetobacter mutant Lpx gene conferring resistance to colistin"],["ARO%3A3003573","LpxA"],["ARO%3A3003574","LpxC"],["ARO%3A3003575","LpxD"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004063","l":"EdeQ","na":2,"nb":4,"a":[["ARO%3A3004064","Edeine acetyltransferase"],["ARO%3A3004063","EdeQ"]],"b":[["antibacterial/edeine-a.html","edeine A"],["antibacterial/edeine-b.html","edeine B"],["antibacterial/edeine-d.html","edeine D"],["antibacterial/edeine-f.html","edeine F"]]},{"id":"ARO:3004287","l":"lipid A phosphatase","na":2,"nb":4,"a":[["ARO%3A3004287","lipid A phosphatase"],["ARO%3A3003920","pgpB"]],"b":[["antibacterial/polymyxin-b1.html","polymyxin B1"],["antibacterial/polymyxin-b2.html","polymyxin B2"],["antibacterial/polymyxin-b3.html","polymyxin B3"],["antibacterial/polymyxin-b4.html","polymyxin B4"]]},{"id":"CHEBI:12834","l":"","na":4,"nb":2,"a":[["EC%3A1.3.1.102","2-alkenal reductase (NADP(+))"],["EC%3A1.3.1.74","2-alkenal reductase [NAD(P)(+)]"],["RHEA%3A13733","an n-alkanal + NAD(+) = an alk-2-enal + NADH + H(+)"],["RHEA%3A13737","an n-alkanal + NADP(+) = an alk-2-enal + NADPH + H(+)"]],"b":[["antifungal/decanal.html","decanal"],["antimycobacterial/undecanal.html","undecanal"]]},{"id":"CHEBI:13601","l":"","na":4,"nb":2,"a":[["EC%3A1.3.1.22","3-oxo-5alpha-steroid 4-dehydrogenase (NADP(+))"],["EC%3A1.3.99.5","3-oxo-5alpha-steroid 4-dehydrogenase (acceptor)"],["RHEA%3A13805","a 3-oxo-5alpha-steroid + A = a 3-oxo-Delta(4)-steroid + AH2"],["RHEA%3A54384","a 3-oxo-5alpha-steroid + NADP(+) = a 3-oxo-Delta(4)-steroid + NADPH + H(+)"]],"b":[["antiviral/lucialdehyde-b.html","lucialdehyde B"],["antiviral/torvoside-h.html","torvoside H"]]},{"id":"CHEBI:140332","l":"","na":2,"nb":4,"a":[["EC%3A2.1.1.231","flavonoid 4'-O-methyltransferase"],["RHEA%3A31743","a 4'-hydroxyflavanone + S-adenosyl-L-methionine = a 4'-methoxyflavanone + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antifungal/chamaejasmenin-a.html","chamaejasmenin A"],["antifungal/chamaejasmenin-d.html","chamaejasmenin D"],["antifungal/isochamaejasmenin-b.html","isochamaejasmenin B"],["unspecified/erylatissin-c.html","erylatissin C"]]},{"id":"CHEBI:15904","l":"long-chain fatty acid","na":2,"nb":4,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/9z-12z-15z-octadeca-9-12-15-trien-6-ynoic-acid.html","(9Z,12Z,15Z)-octadeca-9,12,15-trien-6-ynoic acid"],["antifungal/10e-15z-9-12-13-trihydroxy-10-15-octadecadienoic-acid.html","(10E,15Z)-9,12,13-trihydroxy-10,15-octadecadienoic acid"],["antimycobacterial/scleropyric-acid.html","scleropyric acid"],["antiprotozoal/minquartynoic-acid.html","minquartynoic acid"]]},{"id":"CHEBI:35190","l":"","na":4,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.60","The Organo Anion Transporter (OAT) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antifungal/casbene.html","casbene"],["unspecified/neophytadiene.html","neophytadiene"]]},{"id":"CHEBI:35757","l":"","na":4,"nb":2,"a":[["EC%3A3.5.1.4","amidase"],["RHEA%3A12020","a monocarboxylic acid amide + H2O = a monocarboxylate + NH4(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["MCSA%3A726","peptide amidase"]],"b":[["antiviral/n-acetyl-l-cysteinate.html","N-acetyl-L-cysteinate"],["unspecified/nocardicin-e-2.html","nocardicin E(2−)"]]},{"id":"CHEBI:52267","l":"","na":2,"nb":4,"a":[["EC%3A2.4.1.237","flavonol 7-O-beta-glucosyltransferase"],["RHEA%3A23164","a 7-O-hydroxy-flavonol + UDP-alpha-D-glucose = a flavonol 7-O-beta-D-glucoside + UDP + H(+)"]],"b":[["antibacterial/kaempferol.html","kaempferol"],["antibacterial/morin.html","morin"],["antibacterial/quercetin.html","quercetin"],["unspecified/galangin.html","galangin"]]},{"id":"CHEBI:80291","l":"","na":4,"nb":2,"a":[["EC%3A3.5.5.7","aliphatic nitrilase"],["EC%3A4.2.1.84","nitrile hydratase"],["RHEA%3A46188","an aliphatic nitrile + 2 H2O = a carboxylate + NH4(+)"],["RHEA%3A12673","an aliphatic primary amide = an aliphatic nitrile + H2O"]],"b":[["antifungal/acrylonitrile.html","acrylonitrile"],["antifungal/borrelidin.html","borrelidin"]]},{"id":"NCBITaxon:318829","l":"Magnaporthe oryzae","na":2,"nb":4,"a":[["TED%3AAF-A0A4P7NAU2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P7NAU2-F1-model_v4_TED01"],["TED%3AAF-A0A4P7MZB7-F1-model_v4_TED02","TED novel fold AF-A0A4P7MZB7-F1-model_v4_TED02"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/carboxin.html","carboxin"],["antifungal/carpropamid.html","carpropamid"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:746128","l":"Aspergillus fumigatus","na":2,"nb":4,"a":[["Pfam%3APF07335","Fungal chitosanase of glycosyl hydrolase group 75"],["Pfam%3APF12296","Hydrophobic surface binding protein A"]],"b":[["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/terbinafine.html","terbinafine"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"ARO:3000770","l":"AdeABC","na":3,"nb":2,"a":[["ARO%3A3000770","AdeABC"],["ARO%3A3000553","adeR"],["ARO%3A3000549","adeS"]],"b":[["antibacterial/tetracycline.html","tetracycline"],["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:3000773","l":"CmeABC","na":2,"nb":3,"a":[["ARO%3A3000773","CmeABC"],["ARO%3A3000526","cmeR"]],"b":[["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3000799","l":"MexGHI-OpmD","na":2,"nb":3,"a":[["ARO%3A3000806","MexG"],["ARO%3A3000799","MexGHI-OpmD"]],"b":[["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/tetracycline.html","tetracycline"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3002986","l":"bacA","na":2,"nb":3,"a":[["ARO%3A3002986","bacA"],["ARO%3A3003250","bcrC"]],"b":[["antibacterial/bacitracin-a.html","bacitracin A"],["antibacterial/bacitracin-b.html","bacitracin B"],["antibacterial/bacitracin-f.html","bacitracin F"]]},{"id":"ARO:3003250","l":"bcrC","na":2,"nb":3,"a":[["ARO%3A3002986","bacA"],["ARO%3A3003250","bcrC"]],"b":[["antibacterial/bacitracin-a.html","bacitracin A"],["antibacterial/bacitracin-b.html","bacitracin B"],["antibacterial/bacitracin-f.html","bacitracin F"]]},{"id":"ARO:3003963","l":"flo","na":3,"nb":2,"a":[["ARO%3A3003963","flo"],["ARO%3A3002705","floR"],["ARO%3A3002812","pp-flo"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"]]},{"id":"CHEBI:142621","l":"","na":3,"nb":2,"a":[["RHEA%3A69763","a medium-chain fatty aldehyde + NAD(+) + H2O = a medium-chain fatty acid + NADH + 2 H(+)"],["RHEA%3A80815","a medium-chain fatty aldehyde + NADP(+) + H2O = a medium-chain fatty acid + NADPH + 2 H(+)"],["RHEA%3A58364","a medium-chain primary fatty alcohol + NADP(+) = a medium-chain fatty aldehyde + NADPH + H(+)"]],"b":[["antifungal/decanal.html","decanal"],["antimycobacterial/undecanal.html","undecanal"]]},{"id":"CHEBI:17012","l":"N-acetylneuraminic acid","na":2,"nb":3,"a":[["MCSA%3A835","exo-alpha-sialidase (GH33 Family)"],["MCSA%3A828","exo-alpha-sialidase (GH34 Family)"]],"b":[["antiviral/n-acetyl-%CE%B1-neuraminic-acid.html","N-acetyl-α-neuraminic acid"],["antiviral/n-acetyl-%CE%B2-neuraminic-acid.html","N-acetyl-β-neuraminic acid"],["antiviral/n-acetylneuraminic-acid.html","N-acetylneuraminic acid"]]},{"id":"CHEBI:83628","l":"","na":3,"nb":2,"a":[["EC%3A3.5.1.4","amidase"],["RHEA%3A12020","a monocarboxylic acid amide + H2O = a monocarboxylate + NH4(+)"],["MCSA%3A726","peptide amidase"]],"b":[["antifungal/2-chloroacetamide.html","2-chloroacetamide"],["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"NCBITaxon:332648","l":"Botrytis cinerea B05.10","na":3,"nb":2,"a":[["Pfam%3APF01670","Glycosyl hydrolase family 12"],["PROSITE%3APS00776","Glycosyl hydrolases family 11 (GH11) active site signature 1"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"]],"b":[["antifungal/fludioxonil.html","fludioxonil"],["antifungal/iprodione.html","iprodione"]]},{"id":"ARO:3003027","l":"lmrAB Operon","na":2,"nb":2,"a":[["ARO%3A3003028","lmrA"],["ARO%3A3003027","lmrAB Operon"]],"b":[["antibacterial/lincomycin.html","lincomycin"],["antibacterial/puromycin.html","puromycin"]]},{"id":"ARO:3004101","l":"MdtNOP","na":2,"nb":2,"a":[["ARO%3A3003843","leuO"],["ARO%3A3004101","MdtNOP"]],"b":[["antibacterial/puromycin.html","puromycin"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3004141","l":"AxyXY-OprZ","na":2,"nb":2,"a":[["ARO%3A3004141","AxyXY-OprZ"],["ARO%3A3004145","AxyZ"]],"b":[["antibacterial/cefepime.html","cefepime"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004919","l":"Mycobacterium tuberculosis eccC5 conferring resistance to fluoroquinolones","na":2,"nb":2,"a":[["ARO%3A3004918","Mycobacterium tuberculosis eccB5 conferring resistance to fluoroquinolones"],["ARO%3A3004919","Mycobacterium tuberculosis eccC5 conferring resistance to fluoroquinolones"]],"b":[["antibacterial/moxifloxacin.html","moxifloxacin"],["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3004995","l":"rifampicin resistant rpoC","na":2,"nb":2,"a":[["ARO%3A3004994","Mycobacterium tuberculosis rpoC mutations confer resistance to rifampicin"],["ARO%3A3004995","rifampicin resistant rpoC"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3007161","l":"","na":2,"nb":2,"a":[["ARO%3A3005178","Mycobacterium tuberculosis ethA mutations conferring resistance to perchlozone"],["ARO%3A3005205","perchlozone resistant ethA"]],"b":[["antibacterial/perchlozone.html","perchlozone"],["antibacterial/thioacetazone.html","thioacetazone"]]},{"id":"CHEBI:133959","l":"","na":2,"nb":2,"a":[["EC%3A2.1.1.46","isoflavone 4'-O-methyltransferase"],["RHEA%3A31739","a 4'-hydroxyisoflavone + S-adenosyl-L-methionine = a 4'-methoxyisoflavone + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/licoricone.html","licoricone"],["unspecified/erylatissin-a.html","erylatissin A"]]},{"id":"CHEBI:140310","l":"","na":2,"nb":2,"a":[["EC%3A3.1.1.2","arylesterase"],["RHEA%3A17309","a phenyl acetate + H2O = a phenol + acetate + H(+)"]],"b":[["antibacterial/resorcinol-monoacetate.html","resorcinol monoacetate"],["antifungal/ncx-4040.html","NCX-4040"]]},{"id":"CHEBI:17354","l":"","na":2,"nb":2,"a":[["EC%3A5.1.99.2","16-hydroxysteroid epimerase"],["RHEA%3A15829","a 16alpha-hydroxysteroid = a 16beta-hydroxysteroid"]],"b":[["antifungal/9%CE%BE-14%CE%BE-25s-cholestane-3%CE%B2-4%CE%B2-6%CE%B2-7%CE%B1-8-15%CE%B1-16%CE%B2-26-octol.html","(9ξ,14ξ,25S)-cholestane-3β,4β,6β,7α,8,15α,16β,26-octol"],["antiviral/clathsterol-disulfonic-acid.html","clathsterol disulfonic acid"]]},{"id":"CHEBI:28163","l":"","na":2,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/albomycin-%CE%B42.html","albomycin δ2"],["antibacterial/albomycin-%CE%B5.html","albomycin ε"]]},{"id":"CHEBI:4986","l":"","na":2,"nb":2,"a":[["EC%3A2.1.1.15","fatty-acid O-methyltransferase"],["RHEA%3A23012","a fatty acid + S-adenosyl-L-methionine = a fatty acid methyl ester + S-adenosyl-L-homocysteine"]],"b":[["antibacterial/methyl-%CE%B3-linolenate.html","methyl γ-linolenate"],["antifungal/methyl-nonanoate.html","methyl nonanoate"]]},{"id":"CHEBI:64627","l":"","na":2,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.A.18","The Peptide Uptake Permease (PUP) Family"]],"b":[["unspecified/microcin-b17.html","microcin B17"],["unspecified/microcin-c.html","microcin c"]]},{"id":"CHEBI:86315","l":"","na":2,"nb":2,"a":[["EC%3A2.1.1.9","thiol S-methyltransferase"],["RHEA%3A18277","a thiol + S-adenosyl-L-methionine = a methyl thioether + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antifungal/maremycin-g.html","maremycin G"],["antifungal/neticonazole.html","neticonazole"]]},{"id":"NCBITaxon:5482","l":"Candida tropicalis","na":2,"nb":2,"a":[["Pfam%3APF05203","Hom_end-associated Hint"],["Pfam%3APF05204","Homing endonuclease"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"CHEBI:33281","l":"","na":1,"nb":910,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/1-carbapenem-3-carboxylic-acid.html","1-carbapenem-3-carboxylic acid"],["antibacterial/1%CE%B2-methylcarbapenem.html","1β-methylcarbapenem"],["antibacterial/3-6-9-trihydroxypterocarpan.html","3,6,9-trihydroxypterocarpan"],["antibacterial/3z-ravenic-acid.html","(3Z)-ravenic acid"],["antibacterial/5-chloro-7-iodoquinolin-8-ol.html","5-chloro-7-iodoquinolin-8-ol"],["antibacterial/5-o-mycaminosyltylonolide.html","5-O-mycaminosyltylonolide"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":680,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16240","requires hydrogen peroxide"],["EC%3A1.1.3.10","pyranose oxidase"],["EC%3A1.1.3.11","L-sorbose oxidase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.3.13","alcohol oxidase"],["EC%3A1.1.3.15","(S)-2-hydroxy-acid oxidase"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":297,"nb":1,"a":[["IDPO%3A0000002","disorder"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000045","phosphorylation display site"],["IDPO%3A0000059","self-inhibition"],["Pfam%3APF17837","4'-phosphopantetheinyl transferase N-terminal domain"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"ARO:3000014","l":"TEM beta-lactamase","na":251,"nb":1,"a":[["ARO%3A3000873","TEM-1"],["ARO%3A3000882","TEM-10"],["ARO%3A3001366","TEM-100"],["ARO%3A3000964","TEM-101"],["ARO%3A3000965","TEM-102"],["ARO%3A3000966","TEM-103"]],"b":[["antibacterial/ampicillin.html","ampicillin"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":212,"nb":1,"a":[["EC%3A1.1.1.244","methanol dehydrogenase"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.99.37","methanol dehydrogenase (nicotinoprotein)"],["EC%3A1.13.11.94","4-vinylguaiacol dioxygenase"],["EC%3A1.14.11.27","[histone H3]-dimethyl-L-lysine(36) demethylase"]],"b":[["biocide/formaldehyde.html","formaldehyde"]]},{"id":"ARO:3000017","l":"OXA beta-lactamase","na":158,"nb":1,"a":[["ARO%3A3007696","OXA-1-like beta-lactamase"],["ARO%3A3007697","OXA-10-like beta-lactamase"],["ARO%3A3008427","OXA-1006"],["ARO%3A3008432","OXA-1011"],["ARO%3A3001706","OXA-102"],["ARO%3A3008457","OXA-1036"]],"b":[["antibacterial/oxacillin.html","oxacillin"]]},{"id":"GO:0004146","l":"dihydrofolate reductase activity","na":125,"nb":1,"a":[["EC%3A1.5.1.3","dihydrofolate reductase"],["RHEA%3A15009","(6S)-5,6,7,8-tetrahydrofolate + NADP(+) = 7,8-dihydrofolate + NADPH + H(+)"],["GO%3A0004146","dihydrofolate reductase activity"],["NCBIfam%3ANF012208","bifunctional dihydropteridine reductase/dihydrofolate reductase TmpR"],["NCBIfam%3ANF000055","DfrA12/DfrA21 family trimethoprim-resistant dihydrofolate reductase"],["NCBIfam%3ANF000332","DfrD/DfrG/DfrK family trimethoprim-resistant dihydrofolate reductase"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"CHEBI:25384","l":"","na":1,"nb":79,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/3-4-secoisopimara-4-18-7-15-triene-3-oic-acid.html","3,4-secoisopimara-4(18),7,15-triene-3-oic acid"],["antibacterial/3-phenylbutyric-acid.html","3-phenylbutyric acid"],["antibacterial/7-3-aminopyrrolidin-1-yl-1-2-4-difluorophenyl-6-fluoro-4-oxo-1-4-dihyd.html","7-(3-aminopyrrolidin-1-yl)-1-(2,4-difluorophenyl)-6-fluoro-4-oxo-1,4-dihydro-1,8-naphthyridine-3-carboxylic"],["antibacterial/chuangxinmycin.html","(−)-chuangxinmycin"],["antibacterial/cremeomycin.html","cremeomycin"],["antibacterial/decatromicin-a.html","decatromicin A"]]},{"id":"ARO:3001218","l":"trimethoprim resistant dihydrofolate reductase dfr","na":60,"nb":1,"a":[["ARO%3A3005354","dfr22"],["ARO%3A3002854","dfrA1"],["ARO%3A3003011","dfrA10"],["ARO%3A3002858","dfrA12"],["ARO%3A3003012","dfrA13"],["ARO%3A3002859","dfrA14"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"CHEBI:25105","l":"","na":1,"nb":58,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antibacterial/5-o-mycaminosyltylonolide.html","5-O-mycaminosyltylonolide"],["antibacterial/aplasmomycin.html","(+)-aplasmomycin"],["antibacterial/azithromycin.html","azithromycin"],["antibacterial/boromycin.html","boromycin"],["antibacterial/brefeldin-a.html","brefeldin A"],["antibacterial/cethromycin.html","cethromycin"]]},{"id":"NCBITaxon:227321","l":"Emericella nidulans (strain FGSC A4 / ATCC 38163 / CBS 112.46 / NRRL 194 / M139)","na":44,"nb":1,"a":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF05270","Alpha-L-arabinofuranosidase B (ABFB) domain"],["Pfam%3APF07792","Docking domain of Afi1 for Arf3 in vesicle trafficking"],["Pfam%3APF09206","Alpha-L-arabinofuranosidase B, catalytic"],["Pfam%3APF27751","ATEG_07667 C-terminal domain"],["Pfam%3APF20238","Copper acquisition factor BIM1-like"]],"b":[["antifungal/thiabendazole.html","thiabendazole"]]},{"id":"ARO:3007152","l":"","na":40,"nb":1,"a":[["ARO%3A3004270","antibiotic resistant fabI"],["ARO%3A3003462","antibiotic resistant kasA"],["ARO%3A3003460","antibiotic resistant ndh"],["ARO%3A3004045","Escherichia coli fabI mutations conferring resistance to isoniazid and triclosan"],["ARO%3A3004894","Isoniazid resistant ahpC"],["ARO%3A3005103","isoniazid resistant ethA"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"NCBITaxon:367110","l":"Neurospora crassa (strain ATCC 24698 / 74-OR23-1A / CBS 708.71 / DSM 1257 / FGSC 987)","na":40,"nb":1,"a":[["Pfam%3APF08509","Adenylate cyclase G-alpha binding domain"],["Pfam%3APF25026","Asd-4-like domain"],["Pfam%3APF21334","Fungal epsilon subunit of F1F0-ATP synthase C-terminal domain"],["Pfam%3APF20238","Copper acquisition factor BIM1-like"],["Pfam%3APF21492","Ribosomal protein L31p, N-terminal"],["Pfam%3APF00734","Fungal cellulose binding domain"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"CHEBI:17855","l":"triglyceride","na":34,"nb":1,"a":[["EC%3A2.3.1.158","phospholipid:diacylglycerol acyltransferase"],["EC%3A2.3.1.77","triacylglycerol--sterol O-acyltransferase"],["EC%3A3.1.1.3","triacylglycerol lipase"],["EC%3A3.1.1.34","lipoprotein lipase"],["EC%3A3.1.1.79","hormone-sensitive lipase"],["RHEA%3A77987","9-hydroxy-octadecanoate + a triacylglycerol = 9-(acyloxy)-octadecanoate + a 1,3-diacylglycerol"]],"b":[["antifungal/triacetin.html","triacetin"]]},{"id":"CHEBI:35358","l":"","na":1,"nb":33,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/prontosil.html","prontosil"],["antibacterial/sulfabenzamide.html","sulfabenzamide"],["antibacterial/sulfabromomethazine.html","sulfabromomethazine"],["antibacterial/sulfachloropyridazine.html","sulfachloropyridazine"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfaethoxypyridazine.html","sulfaethoxypyridazine"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":32,"nb":1,"a":[["Pfam%3APF25848","Rodlin protein"],["Pfam%3APF13420","Acetyltransferase (GNAT) domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF26381","BREX System ATPase PglY protein 5th domain"],["Pfam%3APF26382","BREX System ATPase PglY protein 6th domain"]],"b":[["antibacterial/nocardamine.html","nocardamine"]]},{"id":"ARO:3007155","l":"","na":31,"nb":1,"a":[["ARO%3A3005002","antibiotic resistant polyketide synthase genes"],["ARO%3A3004972","antibiotic resistant ppsA"],["ARO%3A3004883","antibiotic resistant ppsC"],["ARO%3A3004885","antibiotic resistant ppsD"],["ARO%3A3007184","multidrug resistant Rv1258c"],["ARO%3A3004957","Mycobacterium tuberculosis clpC1 with mutation conferring resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"CHEBI:15882","l":"phenol","na":31,"nb":1,"a":[["EC%3A1.14.13.244","phenol 2-monooxygenase (NADH)"],["EC%3A1.14.13.7","phenol 2-monooxygenase (NADPH)"],["EC%3A1.14.14.20","phenol 2-monooxygenase (FADH2)"],["EC%3A2.1.1.25","phenol O-methyltransferase"],["EC%3A2.4.2.55","nicotinate D-ribonucleotide:phenol phospho-D-ribosyltransferase"],["EC%3A2.7.1.238","phenol phosphorylase"]],"b":[["biocide/phenol.html","phenol"]]},{"id":"CHEBI:16236","l":"ethanol","na":31,"nb":1,"a":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.5.5","alcohol dehydrogenase (quinone)"],["EC%3A1.1.99.36","alcohol dehydrogenase (nicotinoprotein)"],["EC%3A2.3.1.268","ethanol O-acetyltransferase"],["EC%3A3.1.1.113","ethyl acetate hydrolase"],["EC%3A3.1.1.67","fatty-acyl-ethyl-ester synthase"]],"b":[["biocide/ethanol.html","ethanol"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae (strain ATCC 42149 / RIB 40)","na":27,"nb":1,"a":[["Pfam%3APF09260","Alpha-amylase, domain C"],["Pfam%3APF28338","AclK C-terminal domain"],["Pfam%3APF09206","Alpha-L-arabinofuranosidase B, catalytic"],["Pfam%3APF28380","Sesquiterpene cyclase astC-like C-terminal domain"],["Pfam%3APF13364","Beta-galactosidase second all-beta domain"],["Pfam%3APF10435","Beta-galactosidase, domain 2"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"ARO:3000527","l":"","na":25,"nb":1,"a":[["ARO%3A3003668","16s rRNA with mutation conferring resistance to polyamine antibiotics"],["ARO%3A3004064","Edeine acetyltransferase"],["ARO%3A3004063","EdeQ"],["ARO%3A3002876","ethambutol resistant aftA"],["ARO%3A3003452","ethambutol resistant embA"],["ARO%3A3000235","ethambutol resistant embB"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003292","l":"fluoroquinolone resistant gyrA","na":25,"nb":1,"a":[["ARO%3A3003817","Acinetobacter baumannii gyrA conferring resistance to fluoroquinolones"],["ARO%3A3003297","Bartonella bacilliformis gyrA conferring resistance to fluoroquinolones"],["ARO%3A3004860","Burkholderia dolosa gyrA conferring resistance to fluoroquinolones"],["ARO%3A3003789","Campylobacter jejuni gyrA conferring resistance to fluoroquinolones"],["ARO%3A3003931","Capnocytophaga gingivalis gyrA conferring resistance to fluoroquinolones"],["ARO%3A3003995","Clostridioides difficile gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/nybomycin.html","nybomycin"]]},{"id":"CHEBI:64683","l":"","na":25,"nb":1,"a":[["EC%3A2.3.1.73","diacylglycerol--sterol O-acyltransferase"],["EC%3A3.1.3.106","2-lysophosphatidate phosphatase"],["RHEA%3A39851","2 a 1-acyl-sn-glycerol = glycerol + a 1,2-diacyl-sn-glycerol"],["RHEA%3A77991","9-hydroxy-octadecanoate + a 1,2-diacyl-sn-glycerol = 9-(acyloxy)-octadecanoate + a 1-acyl-sn-glycerol"],["RHEA%3A35663","a 1,2-diacyl-sn-glycerol + H2O = a 1-acyl-sn-glycerol + a fatty acid + H(+)"],["RHEA%3A39859","a 1,3-diacyl-sn-glycerol + a 1-acyl-sn-glycerol = a triacyl-sn-glycerol + glycerol"]],"b":[["antiviral/1-linoleoyl-sn-glycerol.html","1-linoleoyl-sn-glycerol"]]},{"id":"ARO:3000250","l":"ErmC","na":1,"nb":24,"a":[["ARO%3A3000250","ErmC"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000326","l":"ErmE","na":1,"nb":24,"a":[["ARO%3A3000326","ErmE"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000347","l":"ErmA","na":1,"nb":24,"a":[["ARO%3A3000347","ErmA"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000375","l":"ErmB","na":1,"nb":24,"a":[["ARO%3A3000375","ErmB"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000392","l":"Erm(37)","na":1,"nb":24,"a":[["ARO%3A3000392","Erm(37)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000495","l":"ErmD","na":1,"nb":24,"a":[["ARO%3A3000495","ErmD"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000498","l":"ErmF","na":1,"nb":24,"a":[["ARO%3A3000498","ErmF"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000522","l":"ErmG","na":1,"nb":24,"a":[["ARO%3A3000522","ErmG"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000592","l":"ErmN","na":1,"nb":24,"a":[["ARO%3A3000592","ErmN"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000593","l":"ErmQ","na":1,"nb":24,"a":[["ARO%3A3000593","ErmQ"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000594","l":"ErmR","na":1,"nb":24,"a":[["ARO%3A3000594","ErmR"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000595","l":"ErmT","na":1,"nb":24,"a":[["ARO%3A3000595","ErmT"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000596","l":"ErmX","na":1,"nb":24,"a":[["ARO%3A3000596","ErmX"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000599","l":"Erm(33)","na":1,"nb":24,"a":[["ARO%3A3000599","Erm(33)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000600","l":"Erm(34)","na":1,"nb":24,"a":[["ARO%3A3000600","Erm(34)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000601","l":"Erm(38)","na":1,"nb":24,"a":[["ARO%3A3000601","Erm(38)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000602","l":"Erm(39)","na":1,"nb":24,"a":[["ARO%3A3000602","Erm(39)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000603","l":"Erm(41)","na":1,"nb":24,"a":[["ARO%3A3000603","Erm(41)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000604","l":"Erm(35)","na":1,"nb":24,"a":[["ARO%3A3000604","Erm(35)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000605","l":"Erm(36)","na":1,"nb":24,"a":[["ARO%3A3000605","Erm(36)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"CHEBI:62733","l":"","na":1,"nb":24,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_62733","requires methanophenazine"]],"b":[["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/platencin.html","platencin"],["antibacterial/platensimycin.html","platensimycin"],["antifungal/benomyl.html","benomyl"],["antifungal/bixafen.html","bixafen"],["antifungal/fenhexamid.html","fenhexamid"]]},{"id":"CHEBI:140324","l":"","na":1,"nb":23,"a":[["RHEA%3A85699","an amide = a nitrile + H2O"]],"b":[["antibacterial/cefsulodin.html","cefsulodin"],["antibacterial/cellocidin.html","cellocidin"],["antibacterial/durlobactam.html","durlobactam"],["antibacterial/methacycline.html","methacycline"],["antibacterial/pantocin-a.html","pantocin A"],["antibacterial/promysalin.html","promysalin"]]},{"id":"CHEBI:26658","l":"","na":1,"nb":23,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antibacterial/laurinterol.html","laurinterol"],["antibacterial/suaveolindole.html","suaveolindole"],["antifungal/albicanol.html","(+)-albicanol"],["antifungal/ascochlorin.html","ascochlorin"],["antifungal/caf-603.html","CAF-603"],["antifungal/cj-01.html","CJ-01"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":23,"nb":1,"a":[["Pfam%3APF09255","Caf1 Capsule antigen"],["Pfam%3APF02611","CDP-diacylglycerol pyrophosphatase"],["Pfam%3APF07411","Domain of unknown function (DUF1508)"],["Pfam%3APF05171","Haemin-degrading HemS.ChuX domain"],["Pfam%3APF21500","DNA polymerase III subunit delta', AAA+ ATPase lid domain"],["Pfam%3APF11004","3-deoxy-D-manno-oct-2-ulosonic acid (Kdo) hydroxylase"]],"b":[["unspecified/%CE%B1-mangostin.html","α-mangostin"]]},{"id":"CHEBI:48132","l":"","na":1,"nb":22,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/minocycline.html","minocycline"],["antibacterial/tetracenomycin-a2.html","tetracenomycin A2"],["antibacterial/tetracenomycin-c.html","tetracenomycin C"],["antibacterial/tetracenomycin-x.html","tetracenomycin X"],["unspecified/8-demethyl-8-2-3-o-dimethyl-%CE%B1-l-rhamnosyl-tetracenomycin-c.html","8-demethyl-8-(2,3-O-dimethyl-α-L-rhamnosyl)tetracenomycin C"],["unspecified/8-demethyl-8-2-o-methyl-%CE%B1-l-rhamnosyl-tetracenomycin-c.html","8-demethyl-8-(2-O-methyl-α-L-rhamnosyl)tetracenomycin C"]]},{"id":"NCBITaxon:284593","l":"Candida glabrata (strain ATCC 2001 / BCRC 20586 / JCM 3761 / NBRC 0622 / NRRL Y-65 / CBS 138)","na":22,"nb":1,"a":[["Pfam%3APF08647","BRE1 E3 ubiquitin ligase"],["Pfam%3APF00649","Copper fist DNA binding domain"],["Pfam%3APF18499","Ubc7p-binding region of Cue1"],["Pfam%3APF18535","Gal11 activator-binding domain (ABD1)"],["Pfam%3APF05390","Yeast cell wall synthesis protein KRE9/KNH1 C-terminal"],["Pfam%3APF09451","Autophagy-related protein 27"]],"b":[["antifungal/fluconazole.html","fluconazole"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":21,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29108","requires calcium(2+)"],["EC%3A1.13.12.24","calcium-regulated photoprotein"],["EC%3A7.2.2.10","P-type Ca(2+) transporter"],["RHEA%3A72631","3 Li(+)(out) + Ca(2+)(in) = 3 Li(+)(in) + Ca(2+)(out)"],["RHEA%3A55884","[aequorin] + 3 Ca(2+) = [aequorin]--dioxetanone"],["RHEA%3A55888","[aequorin]--dioxetanone = excited state-[aequorin] + CO2"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"CHEBI:16016","l":"dihydroxyacetone","na":20,"nb":1,"a":[["EC%3A1.1.1.156","glycerol 2-dehydrogenase (NADP(+))"],["EC%3A1.1.1.6","glycerol dehydrogenase"],["EC%3A1.1.99.22","glycerol dehydrogenase (acceptor)"],["EC%3A2.2.1.3","formaldehyde transketolase"],["EC%3A2.7.1.121","phosphoenolpyruvate--glycerone phosphotransferase"],["EC%3A2.7.1.29","glycerone kinase"]],"b":[["antifungal/dihydroxyacetone.html","dihydroxyacetone"]]},{"id":"CHEBI:24400","l":"","na":1,"nb":17,"a":[["TCDB%3A3.A.3","The P-type ATPase (P-ATPase) Superfamily"]],"b":[["antibacterial/acteoside.html","acteoside"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/fidaxomicin.html","fidaxomicin"],["antibacterial/jadomycin-b.html","jadomycin B"],["antibacterial/josamycin.html","josamycin"],["antibacterial/polyketomycin.html","polyketomycin"]]},{"id":"CHEBI:16247","l":"","na":16,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.A.79","The Autophagosomal Phospholipid Transmembrane Translocase (Atg9) Family"],["TCDB%3A9.A.36","The Ca2+-dependent Phospholipid Scramblase (Scramblase) Family"],["TCDB%3A1.A.17","The Calcium-dependent Chloride Channel (Ca-ClC) Family"],["TCDB%3A9.B.27","The Death Effector Domain A (DedA) Family"],["TCDB%3A8.A.97","The EPG-3/VMP1 (EPG/VPM) Scramblase Family"]],"b":[["antifungal/miltefosine.html","miltefosine"]]},{"id":"CHEBI:16933","l":"","na":16,"nb":1,"a":[["EC%3A1.3.1.71","Delta(24(24(1)))-sterol reductase"],["EC%3A2.3.2.37","ergosteryl-3beta-O-L-aspartate synthase"],["EC%3A3.1.1.121","ergosteryl-3beta-O-L-aspartate hydrolase"],["EC%3A4.2.1.62","5alpha-hydroxysteroid dehydratase"],["RHEA%3A76559","1-(ergostan-3beta-yl)-L-aspartate + H2O = ergosterol + L-aspartate + H(+)"],["RHEA%3A22064","5alpha-ergosta-7,22-diene-3beta,5-diol = ergosterol + H2O"]],"b":[["antifungal/natamycin.html","natamycin"]]},{"id":"NCBITaxon:498257","l":"Verticillium dahliae (strain VdLs.17 / ATCC MYA-4575 / FGSC 10137)","na":16,"nb":1,"a":[["Pfam%3APF11787","Aft1 HRR domain"],["Pfam%3APF16541","Alternaria alternata allergen 1"],["Pfam%3APF09792","Ubiquitin 3 binding protein But2 C-terminal domain"],["Pfam%3APF28223","CAP22"],["Pfam%3APF05730","CFEM domain"],["Pfam%3APF27979","CON7 transcription factor helical domain"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":16,"nb":1,"a":[["Pfam%3APF05932","Tir chaperone protein (CesT) family"],["Pfam%3APF17656","FlgA N-terminal domain"],["Pfam%3APF22200","ExsA N-terminal regulatory domain"],["Pfam%3APF05171","Haemin-degrading HemS.ChuX domain"],["Pfam%3APF07201","HrpJ-like domain"],["Pfam%3APF04391","Protein of unknown function (DUF533)"]],"b":[["unspecified/chir-090.html","CHIR-090"]]},{"id":"CHEBI:16619","l":"(2-trans,6-trans)-farnesol","na":14,"nb":1,"a":[["EC%3A1.1.1.216","farnesol dehydrogenase"],["EC%3A1.1.1.354","farnesol dehydrogenase (NAD(+))"],["EC%3A2.7.1.216","farnesol kinase"],["EC%3A3.1.7.6","farnesyl diphosphatase"],["EC%3A5.2.1.9","farnesol 2-isomerase"],["RHEA%3A13401","(2E,6E)-farnesol = (2Z,6E)-farnesol"]],"b":[["unspecified/2-trans-6-trans-farnesol.html","(2-trans,6-trans)-farnesol"]]},{"id":"CHEBI:60783","l":"","na":1,"nb":14,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antibacterial/oxetanocin-a.html","oxetanocin A"],["antifungal/flucytosine.html","flucytosine"],["antifungal/jawsamycin.html","jawsamycin"],["antiviral/6-azathymidine.html","6-azathymidine"],["antiviral/emtricitabine.html","emtricitabine"],["antiviral/favipiravir-rtp.html","favipiravir-RTP"]]},{"id":"ARO:3003294","l":"Escherichia coli gyrA conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003294","Escherichia coli gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003295","l":"Mycobacterium tuberculosis gyrA conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003295","Mycobacterium tuberculosis gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003296","l":"Staphylococcus aureus gyrA conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003296","Staphylococcus aureus gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003297","l":"Bartonella bacilliformis gyrA conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003297","Bartonella bacilliformis gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003298","l":"Mycobacterium leprae gyrA conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003298","Mycobacterium leprae gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003304","l":"Mycobacterium leprae gyrB conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003304","Mycobacterium leprae gyrB conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003305","l":"Ureaplasma urealyticum gyrB conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003305","Ureaplasma urealyticum gyrB conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003306","l":"Morganella morganii gyrB conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003306","Morganella morganii gyrB conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003307","l":"Salmonella serovars gyrB conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003307","Salmonella serovars gyrB conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003308","l":"Escherichia coli parC conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003308","Escherichia coli parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003309","l":"Ureaplasma urealyticum parC conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003309","Ureaplasma urealyticum parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003310","l":"Mycoplasma hominis parC conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003310","Mycoplasma hominis parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003311","l":"Streptococcus pneumoniae parC conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003311","Streptococcus pneumoniae parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003312","l":"Staphylococcus aureus parC conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003312","Staphylococcus aureus parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003315","l":"Staphylococcus aureus parE conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003315","Staphylococcus aureus parE conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003316","l":"Escherichia coli parE conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003316","Escherichia coli parE conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003317","l":"Salmonella serovars parE conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003317","Salmonella serovars parE conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003817","l":"Acinetobacter baumannii gyrA conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003817","Acinetobacter baumannii gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003818","l":"Acinetobacter baumannii parC conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003818","Acinetobacter baumannii parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":13,"nb":1,"a":[["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF03173","Putative carbohydrate binding domain"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"],["Pfam%3APF06438","Heme-binding protein A (HasA)"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF05247","Flagellar transcriptional activator (FlhD)"]],"b":[["antibacterial/althiomycin.html","althiomycin"]]},{"id":"ARO:3003459","l":"Mycobacterium tuberculosis gyrB mutant conferring resistance to fluoroquinolones","na":1,"nb":12,"a":[["ARO%3A3003459","Mycobacterium tuberculosis gyrB mutant conferring resistance to fluoroquinolones"]],"b":[["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"CHEBI:16188","l":"octan-1-ol","na":12,"nb":1,"a":[["EC%3A1.1.1.73","octanol dehydrogenase"],["EC%3A1.14.15.3","alkane 1-monooxygenase"],["RHEA%3A79323","octan-1-ol + 2 Fe(III)-[cytochrome c] = octanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A64628","octan-1-ol + acetyl-CoA = octyl acetate + CoA"],["RHEA%3A64852","octan-1-ol + benzoyl-CoA = octyl benzoate + CoA"],["RHEA%3A44064","octan-1-ol + hexadecanoyl-CoA = octyl hexadecanoate + CoA"]],"b":[["antifungal/octan-1-ol.html","octan-1-ol"]]},{"id":"CHEBI:22479","l":"","na":1,"nb":12,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/astromicin.html","astromicin"],["antibacterial/etimicin.html","etimicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"CHEBI:28077","l":"rifampicin","na":12,"nb":1,"a":[["ARO%3A3007073","Bacillus subtilis rpoB mutants conferring resistance to rifampin"],["ARO%3A3004480","Bifidobacterium adolescentis rpoB mutants conferring resistance to rifampicin"],["ARO%3A3004563","Clostridioides difficile rpoB with mutation conferring resistance to rifampicin"],["ARO%3A3003288","Escherichia coli rpoB mutants conferring resistance to rifampicin"],["ARO%3A3007051","Helicobacter pylori rpoB mutation conferring resistance to rifampicin"],["ARO%3A3003284","Mycobacterium leprae rpoB mutations conferring resistance to rifampicin"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3000858","l":"armA","na":1,"nb":11,"a":[["ARO%3A3000858","armA"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/g418.html","G418"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3000859","l":"rmtA","na":1,"nb":11,"a":[["ARO%3A3000859","rmtA"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/g418.html","G418"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3000860","l":"rmtB","na":1,"nb":11,"a":[["ARO%3A3000860","rmtB"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/g418.html","G418"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3000861","l":"rmtC","na":1,"nb":11,"a":[["ARO%3A3000861","rmtC"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/g418.html","G418"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3000862","l":"sgm","na":1,"nb":11,"a":[["ARO%3A3000862","sgm"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/g418.html","G418"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3007153","l":"","na":11,"nb":1,"a":[["ARO%3A3003734","antibiotic resistant fusA"],["ARO%3A3003736","antibiotic resistant fusE"],["ARO%3A3003552","fusB"],["ARO%3A3003733","fusC"],["ARO%3A3003731","fusD"],["ARO%3A3004663","FusF"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"CHEBI:17847","l":"p-cresol","na":11,"nb":1,"a":[["EC%3A1.14.13.236","toluene 4-monooxygenase"],["EC%3A1.17.9.1","4-methylphenol dehydrogenase (hydroxylating)"],["EC%3A4.1.1.83","4-hydroxyphenylacetate decarboxylase"],["EC%3A4.1.99.19","2-iminoacetate synthase"],["RHEA%3A22732","4-hydroxyphenylacetate + H(+) = 4-methylphenol + CO2"],["RHEA%3A56976","4-methylphenol + 2 oxidized [azurin] + H2O = 4-hydroxybenzyl alcohol + 2 reduced [azurin] + 2 H(+)"]],"b":[["antifungal/p-cresol.html","p-cresol"]]},{"id":"CHEBI:24396","l":"","na":1,"nb":11,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/chloroeremomycin.html","chloroeremomycin"],["antibacterial/dalbavancin.html","dalbavancin"],["antibacterial/oritavancin.html","oritavancin"],["antibacterial/phleomycin-d1.html","phleomycin D1"],["antibacterial/ristocetin.html","ristocetin"],["antibacterial/telavancin.html","telavancin"]]},{"id":"CHEBI:24869","l":"ionophore","na":1,"nb":11,"a":[["TCDB%3A2.A.74","The 4 TMS Multidrug Endosomal Transporter (MET) Family"]],"b":[["antibacterial/cccp.html","CCCP"],["antibacterial/indanomycin.html","indanomycin"],["antifungal/beauvericin.html","beauvericin"],["antifungal/monensin-a.html","monensin A"],["antiprotozoal/lasalocid-sodium.html","lasalocid sodium"],["antiprotozoal/lasalocid.html","lasalocid"]]},{"id":"CHEBI:28591","l":"guaiacol","na":11,"nb":1,"a":[["EC%3A1.11.1.14","lignin peroxidase"],["EC%3A1.11.1.16","versatile peroxidase"],["RHEA%3A48004","1-(3,4-dimethoxyphenyl)-2-(2-methoxyphenoxy)propane-1,3-diol + H2O2 = 3,4-dimethoxybenzaldehyde + guaiacol + glycolaldehyde + H2O"],["RHEA%3A22396","1-(4-hydroxy-3-methoxyphenyl)-2-(2-methoxyphenoxy)propane-1,3-diol + H2O2 = guaiacol + vanillin + glycolaldehyde + H2O"],["RHEA%3A72243","catechol + S-adenosyl-L-methionine = guaiacol + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A72339","guaiacol + Co(I)-[methoxylated-aromatic-compound-specific corrinoid protein] + H(+) = methyl-Co(III)-[methoxylated-aromatic-compound-specific corrinoid protein] + catechol"]],"b":[["biocide/guaiacol.html","guaiacol"]]},{"id":"CHEBI:29256","l":"","na":11,"nb":1,"a":[["EC%3A1.8.3.7","formylglycine-generating enzyme"],["EC%3A2.1.1.9","thiol S-methyltransferase"],["EC%3A2.8.2.16","thiol sulfotransferase"],["EC%3A4.4.1.13","cysteine-S-conjugate beta-lyase"],["RHEA%3A82919","a thioester + H2O = a thiol + a carboxylate + H(+)"],["RHEA%3A14637","a thiol + 3'-phosphoadenylyl sulfate = S-alkyl thiosulfate + adenosine 3',5'-bisphosphate + H(+)"]],"b":[["antifungal/fusarithioamide-a.html","fusarithioamide A"]]},{"id":"CHEBI:46762","l":"(E,E,E)-geranylgeraniol","na":11,"nb":1,"a":[["EC%3A1.14.14.146","geranylgeraniol 18-hydroxylase"],["EC%3A3.1.7.5","geranylgeranyl diphosphate diphosphatase"],["RHEA%3A46108","(2E,6E,10E)-geranylgeraniol + 2 NADPH + 2 O2 + H(+) = (2E,6E,10E)-geranylgeranate + 2 NADP(+) + 3 H2O"],["RHEA%3A61664","(2E,6E,10E)-geranylgeraniol + ATP = (2E,6E,10E)-geranylgeranyl phosphate + ADP + H(+)"],["RHEA%3A63456","(2E,6E,10E)-geranylgeraniol + CTP = (2E,6E,10E)-geranylgeranyl phosphate + CDP + H(+)"],["RHEA%3A63460","(2E,6E,10E)-geranylgeraniol + GTP = (2E,6E,10E)-geranylgeranyl phosphate + GDP + H(+)"]],"b":[["antiprotozoal/e-e-e-geranylgeraniol.html","(E,E,E)-geranylgeraniol"]]},{"id":"CHEBI:50744","l":"","na":11,"nb":1,"a":[["TCDB%3A2.A.24","The 2-Hydroxycarboxylate Transporter (2-HCT) Family"],["TCDB%3A1.A.46","The Anion Channel-forming Bestrophin (Bestrophin) Family"],["TCDB%3A2.A.45","The Arsenite-Antimonite (ArsB) Efflux Family"],["TCDB%3A2.A.11","The Citrate-Mg2+:H+ (CitM) Citrate-Ca2+:H+ (CitH) Symporter (CitMHS) Family"],["TCDB%3A2.A.47","The Divalent Anion:Na+ Symporter (DASS) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antiviral/tamoxifen-citrate.html","tamoxifen citrate"]]},{"id":"NCBITaxon:341663","l":"","na":11,"nb":1,"a":[["Pfam%3APF27751","ATEG_07667 C-terminal domain"],["Pfam%3APF28386","BfoA family C-terminal domain"],["Pfam%3APF03879","Cgr1 family"],["Pfam%3APF22621","CurL-like, PKS C-terminal"],["Pfam%3APF18558","Methyltransferase, Helix-turn-helix domain"],["Pfam%3APF06355","Aegerolysin"]],"b":[["antiviral/aspulvinone-e.html","aspulvinone E"]]},{"id":"ARO:3002814","l":"clbA","na":1,"nb":10,"a":[["ARO%3A3002814","clbA"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002815","l":"clbB","na":1,"nb":10,"a":[["ARO%3A3002815","clbB"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002816","l":"clbC","na":1,"nb":10,"a":[["ARO%3A3002816","clbC"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3003038","l":"MexXY-OprA","na":1,"nb":10,"a":[["ARO%3A3003038","MexXY-OprA"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/gentamicin-c.html","gentamicin C"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3003441","l":"cfrA","na":1,"nb":10,"a":[["ARO%3A3003441","cfrA"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3003578","l":"PmrF","na":10,"nb":1,"a":[["ARO%3A3002985","arnA"],["ARO%3A3005053","ArnT"],["ARO%3A3005063","cprR"],["ARO%3A3005065","cprRS"],["ARO%3A3005064","cprS"],["ARO%3A3005068","ParR"]],"b":[["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3003907","l":"cipA","na":1,"nb":10,"a":[["ARO%3A3003907","cipA"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3003966","l":"Klebsiella pneumoniae OmpK35","na":1,"nb":10,"a":[["ARO%3A3003966","Klebsiella pneumoniae OmpK35"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefamandole.html","cefamandole"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"ARO:3003969","l":"lmrP","na":1,"nb":10,"a":[["ARO%3A3003969","lmrP"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"CHEBI:16547","l":"coniferyl aldehyde","na":10,"nb":1,"a":[["EC%3A1.1.1.194","coniferyl-alcohol dehydrogenase"],["EC%3A1.1.1.195","cinnamyl-alcohol dehydrogenase"],["EC%3A1.2.1.44","cinnamoyl-CoA reductase"],["EC%3A1.2.1.68","coniferyl-aldehyde dehydrogenase"],["RHEA%3A23968","(E)-coniferaldehyde + NAD(+) + H2O = (E)-ferulate + NADH + 2 H(+)"],["RHEA%3A64648","(E)-coniferaldehyde + NADP(+) + CoA = (E)-feruloyl-CoA + NADPH + H(+)"]],"b":[["antifungal/coniferyl-aldehyde.html","coniferyl aldehyde"]]},{"id":"CHEBI:17698","l":"chloramphenicol","na":10,"nb":1,"a":[["EC%3A1.14.99.67","alpha-N-dichloroacetyl-p-aminophenylserinol N-oxygenase"],["EC%3A2.3.1.28","chloramphenicol O-acetyltransferase"],["RHEA%3A58884","alpha-N-dichloroacetyl-p-aminophenylserinol + AH2 + 2 O2 = chloramphenicol + A + 2 H2O"],["RHEA%3A18421","chloramphenicol + acetyl-CoA = chloramphenicol 3-acetate + CoA"],["RHEA%3A35287","chloramphenicol(in) + ATP + H2O = chloramphenicol(out) + ADP + phosphate + H(+)"],["RHEA%3A35059","chloramphenicol(in) + H(+)(out) = chloramphenicol(out) + H(+)(in)"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"CHEBI:48120","l":"","na":1,"nb":10,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["unspecified/13-deoxydaunorubicin.html","13-deoxydaunorubicin"],["unspecified/13-dihydrodaunorubicin.html","13-dihydrodaunorubicin"],["unspecified/4-epidoxorubicin.html","4'-epidoxorubicin"],["unspecified/aclacinomycin-a.html","aclacinomycin A"],["unspecified/aclacinomycin-n.html","aclacinomycin N"],["unspecified/aclacinomycin-s.html","aclacinomycin S"]]},{"id":"CHEBI:4885","l":"ethionamide","na":10,"nb":1,"a":[["RHEA%3A47616","ethionamide + NADPH + O2 + H(+) = ethionamide S-oxide + NADP(+) + H2O"],["ARO%3A3003456","antibiotic resistant ethA"],["ARO%3A3003457","ethionamide resistant ethA"],["ARO%3A3005103","isoniazid resistant ethA"],["ARO%3A3005105","Mycobacterium tuberculosis ethA mutations conferring resistance to isoniazid"],["ARO%3A3005178","Mycobacterium tuberculosis ethA mutations conferring resistance to perchlozone"]],"b":[["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"CHEBI:64760","l":"","na":10,"nb":1,"a":[["RHEA%3A44876","a 1,3-diacylglycerol + H2O = a 3-acyl-sn-glycerol + a fatty acid + H(+)"],["RHEA%3A44176","a 2,3-diacyl-sn-glycerol + H2O = a 3-acyl-sn-glycerol + a fatty acid + H(+)"],["RHEA%3A39659","a 3-acyl-sn-glycerol + a 1,2-diacyl-sn-glycero-3-phosphocholine = a 1,3-diacyl-sn-glycerol + a 1-acyl-sn-glycero-3-phosphocholine"],["RHEA%3A78035","a 3-acyl-sn-glycerol + a 1,2-diacyl-sn-glycero-3-phosphocholine = a 1,3-diacyl-sn-glycerol + a 2-acyl-sn-glycero-3-phosphocholine"],["RHEA%3A78131","a 3-acyl-sn-glycerol + a 1,2-diacyl-sn-glycero-3-phosphocholine = a 1,3-diacylglycerol + a 1-acyl-sn-glycero-3-phosphocholine"],["RHEA%3A78135","a 3-acyl-sn-glycerol + a 1,2-diacyl-sn-glycero-3-phosphocholine = a 1,3-diacylglycerol + a 2-acyl-sn-glycero-3-phosphocholine"]],"b":[["antiviral/3-linoleoyl-sn-glycerol.html","3-linoleoyl-sn-glycerol"]]},{"id":"CHEBI:78236","l":"N-acetyl-L-cysteinate","na":10,"nb":1,"a":[["EC%3A1.10.3.15","grixazone synthase"],["RHEA%3A41424","2 3-amino-4-hydroxybenzaldehyde + N-acetyl-L-cysteine + 2 O2 = grixazone A + formate + 3 H2O + H(+)"],["RHEA%3A41420","2 3-amino-4-hydroxybenzoate + N-acetyl-L-cysteine + 2 O2 + H(+) = grixazone B + CO2 + 4 H2O"],["RHEA%3A75515","N-acetyl-L-cysteine + H2O = L-cysteine + acetate"],["RHEA%3A74567","N-acetyl-L-cysteine(out) + L-glutamate(in) = N-acetyl-L-cysteine(in) + L-glutamate(out)"],["RHEA%3A76543","N-acetyl-S-(2-succino)-L-cysteine = N-acetyl-L-cysteine + fumarate"]],"b":[["antiviral/n-acetyl-l-cysteinate.html","N-acetyl-L-cysteinate"]]},{"id":"NCBITaxon:1496","l":"Clostridioides difficile","na":10,"nb":1,"a":[["Pfam%3APF18671","4-Hydroxyphenylacetate decarboxylase subunit gamma N-terminal"],["Pfam%3APF00302","Chloramphenicol acetyltransferase"],["Pfam%3APF18524","High potential iron-sulfur protein like"],["Pfam%3APF06050","2-hydroxyglutaryl-CoA dehydratase, D-component"],["PROSITE%3APS00100","Chloramphenicol acetyltransferase active site"],["Pfam%3APF01473","Putative cell wall binding repeat"]],"b":[["antibacterial/fidaxomicin.html","fidaxomicin"]]},{"id":"ARO:3000318","l":"mphB","na":1,"nb":9,"a":[["ARO%3A3000318","mphB"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/oleandomycin.html","oleandomycin"],["antibacterial/roxithromycin.html","roxithromycin"]]},{"id":"ARO:3000319","l":"mphC","na":1,"nb":9,"a":[["ARO%3A3000319","mphC"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/oleandomycin.html","oleandomycin"],["antibacterial/roxithromycin.html","roxithromycin"]]},{"id":"ARO:3000410","l":"sul1","na":1,"nb":9,"a":[["ARO%3A3000410","sul1"]],"b":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfacetamide.html","sulfacetamide"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfamethazine.html","sulfamethazine"],["antibacterial/sulfamethizole.html","sulfamethizole"],["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3000412","l":"sul2","na":1,"nb":9,"a":[["ARO%3A3000412","sul2"]],"b":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfacetamide.html","sulfacetamide"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfamethazine.html","sulfamethazine"],["antibacterial/sulfamethizole.html","sulfamethizole"],["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3000413","l":"sul3","na":1,"nb":9,"a":[["ARO%3A3000413","sul3"]],"b":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfacetamide.html","sulfacetamide"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfamethazine.html","sulfamethazine"],["antibacterial/sulfamethizole.html","sulfamethizole"],["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3001307","l":"vgbA","na":1,"nb":9,"a":[["ARO%3A3001307","vgbA"]],"b":[["antibacterial/ostreogrycin-b3.html","ostreogrycin B3"],["antibacterial/patricin-a.html","patricin A"],["antibacterial/patricin-b.html","patricin B"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"],["antibacterial/pristinamycin-ib.html","pristinamycin IB"],["antibacterial/pristinamycin-ic.html","pristinamycin IC"]]},{"id":"ARO:3001308","l":"vgbB","na":1,"nb":9,"a":[["ARO%3A3001308","vgbB"]],"b":[["antibacterial/ostreogrycin-b3.html","ostreogrycin B3"],["antibacterial/patricin-a.html","patricin A"],["antibacterial/patricin-b.html","patricin B"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"],["antibacterial/pristinamycin-ib.html","pristinamycin IB"],["antibacterial/pristinamycin-ic.html","pristinamycin IC"]]},{"id":"ARO:3002536","l":"AAC(3)-IIIa","na":1,"nb":9,"a":[["ARO%3A3002536","AAC(3)-IIIa"]],"b":[["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"]]},{"id":"ARO:3002537","l":"AAC(3)-IIIb","na":1,"nb":9,"a":[["ARO%3A3002537","AAC(3)-IIIb"]],"b":[["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"]]},{"id":"ARO:3002597","l":"AAC(6')-Ie-APH(2')-Ia bifunctional protein","na":1,"nb":9,"a":[["ARO%3A3002597","AAC(6')-Ie-APH(2')-Ia bifunctional protein"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3002598","l":"ANT(3')-II-AAC(6')-IId bifunctional protein","na":1,"nb":9,"a":[["ARO%3A3002598","ANT(3')-II-AAC(6')-IId bifunctional protein"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002647","l":"","na":1,"nb":9,"a":[["ARO%3A3002647","APH(3')-IIIa"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/butirosin.html","butirosin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003386","l":"Escherichia coli folP with mutation conferring resistance to sulfonamides","na":1,"nb":9,"a":[["ARO%3A3003386","Escherichia coli folP with mutation conferring resistance to sulfonamides"]],"b":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfacetamide.html","sulfacetamide"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfamethazine.html","sulfamethazine"],["antibacterial/sulfamethizole.html","sulfamethizole"],["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3003387","l":"Streptococcus pyogenes folP with mutation conferring resistance to sulfonamides","na":1,"nb":9,"a":[["ARO%3A3003387","Streptococcus pyogenes folP with mutation conferring resistance to sulfonamides"]],"b":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfacetamide.html","sulfacetamide"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfamethazine.html","sulfamethazine"],["antibacterial/sulfamethizole.html","sulfamethizole"],["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3003697","l":"MexPQ-OpmE","na":1,"nb":9,"a":[["ARO%3A3003697","MexPQ-OpmE"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/imipenem.html","imipenem"],["antibacterial/josamycin.html","josamycin"],["antibacterial/rokitamycin.html","rokitamycin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003990","l":"vgbC","na":1,"nb":9,"a":[["ARO%3A3003990","vgbC"]],"b":[["antibacterial/ostreogrycin-b3.html","ostreogrycin B3"],["antibacterial/patricin-a.html","patricin A"],["antibacterial/patricin-b.html","patricin B"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"],["antibacterial/pristinamycin-ib.html","pristinamycin IB"],["antibacterial/pristinamycin-ic.html","pristinamycin IC"]]},{"id":"CHEBI:35627","l":"","na":9,"nb":1,"a":[["EC%3A3.5.2.6","beta-lactamase"],["RHEA%3A20401","a beta-lactam + H2O = a substituted beta-amino acid"],["TCDB%3A2.C.1","The TonB-ExbB-ExbD/TolA-TolQ-TolR Outer Membrane Receptor Energizers and Stabilizers (TonB/TolA) Family"],["MCSA%3A2","beta-lactamase (Class A)"],["MCSA%3A15","beta-lactamase (Class B1)"],["MCSA%3A16","beta-lactamase (Class B1)"]],"b":[["unspecified/azetidin-2-one.html","azetidin-2-one"]]},{"id":"CHEBI:78274","l":"ferruginol","na":9,"nb":1,"a":[["EC%3A1.14.14.175","ferruginol synthase"],["EC%3A1.14.14.60","ferruginol monooxygenase"],["EC%3A1.14.14.62","salviol synthase"],["EC%3A1.14.14.65","sugiol synthase"],["RHEA%3A48080","abieta-8,11,13-triene + reduced [NADPH--hemoprotein reductase] + O2 = ferruginol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A55456","ferruginol + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = sugiol + 2 oxidized [NADPH--hemoprotein reductase] + 3 H2O + 2 H(+)"]],"b":[["antibacterial/ferruginol.html","ferruginol"]]},{"id":"CHEBI:83563","l":"","na":9,"nb":1,"a":[["EC%3A1.14.14.28","long-chain alkane monooxygenase"],["EC%3A4.1.1.106","fatty acid photodecarboxylase"],["EC%3A4.1.99.5","aldehyde oxygenase (deformylating)"],["RHEA%3A49060","a long-chain alkane + FMNH2 + O2 = a long chain fatty alcohol + FMN + H2O + H(+)"],["RHEA%3A18969","a long-chain fatty acid + hnu + H(+) = a long-chain alkane + CO2"],["RHEA%3A21440","a long-chain fatty aldehyde + 2 NADPH + O2 + H(+) = a long-chain alkane + formate + 2 NADP(+) + H2O"]],"b":[["antimycobacterial/hentriacontane.html","hentriacontane"]]},{"id":"CHEBI:87393","l":"hexan-1-ol","na":9,"nb":1,"a":[["RHEA%3A65480","2-methylbutanoyl-CoA + hexan-1-ol = hexyl 2-methylbutanoate + CoA"],["RHEA%3A79331","hexan-1-ol + 2 Fe(III)-[cytochrome c] = hexanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A65460","hexan-1-ol + acetyl-CoA = hexyl acetate + CoA"],["RHEA%3A65444","hexan-1-ol + butanoyl-CoA = hexyl butanoate + CoA"],["RHEA%3A65484","hexan-1-ol + hexanoyl-CoA = hexyl hexanoate + CoA"],["RHEA%3A60972","hexan-1-ol + NAD(+) = hexanal + NADH + H(+)"]],"b":[["antibacterial/hexan-1-ol.html","hexan-1-ol"]]},{"id":"UniProt:P06633","l":"","na":9,"nb":1,"a":[["GO%3A0004424","imidazoleglycerol-phosphate dehydratase activity"],["NCBIfam%3ANF002114","imidazoleglycerol-phosphate dehydratase HisB"],["InterPro%3AIPR020565","Imidazoleglycerol-phosphate dehydratase, conserved site"],["CDD%3Acd07914","IGPD"],["InterPro%3AIPR038494","Imidazole glycerol phosphate dehydratase domain superfamily"],["PROSITE%3APS00954","Imidazoleglycerol-phosphate dehydratase signature 1"]],"b":[["antiviral/nevirapine.html","nevirapine"]]},{"id":"ARO:3002013","l":"CMY-2","na":1,"nb":8,"a":[["ARO%3A3002013","CMY-2"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002539","l":"AAC(3)-IVa","na":1,"nb":8,"a":[["ARO%3A3002539","AAC(3)-IVa"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/apramycin.html","apramycin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"]]},{"id":"ARO:3002585","l":"","na":1,"nb":8,"a":[["ARO%3A3002585","AAC(6')-31"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/netilmycin.html","netilmycin"]]},{"id":"ARO:3002652","l":"","na":1,"nb":8,"a":[["ARO%3A3002652","APH(3')-VIa"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/butirosin.html","butirosin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3002653","l":"","na":1,"nb":8,"a":[["ARO%3A3002653","APH(3')-VIb"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/butirosin.html","butirosin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004476","l":"vmlR","na":1,"nb":8,"a":[["ARO%3A3004476","vmlR"]],"b":[["antibacterial/a201a.html","A201A"],["antibacterial/hygromycin-a.html","hygromycin A"],["antibacterial/iboxamycin.html","iboxamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"]]},{"id":"ARO:3004578","l":"Acinetobacter baumannii AbuO","na":1,"nb":8,"a":[["ARO%3A3004578","Acinetobacter baumannii AbuO"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"],["antibacterial/carbenicillin.html","carbenicillin"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3004856","l":"SCO-1","na":1,"nb":8,"a":[["ARO%3A3004856","SCO-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/cefuroxime.html","cefuroxime"]]},{"id":"ARO:3005111","l":"blaS1","na":1,"nb":8,"a":[["ARO%3A3005111","blaS1"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/carbenicillin.html","carbenicillin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/mezlocillin.html","mezlocillin"]]},{"id":"ARO:3005511","l":"VIM-63","na":1,"nb":8,"a":[["ARO%3A3005511","VIM-63"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/faropenem.html","faropenem"]]},{"id":"CHEBI:27949","l":"(E)-sinapaldehyde","na":8,"nb":1,"a":[["EC%3A1.1.1.195","cinnamyl-alcohol dehydrogenase"],["RHEA%3A72027","(E)-sinapaldehyde + L-proline = (E)-nesocodin (alcohol-form) + H2O"],["RHEA%3A64656","(E)-sinapaldehyde + NADP(+) + CoA = (E)-sinapoyl-CoA + NADPH + H(+)"],["RHEA%3A57712","(E)-sinapaldehyde + UDP-alpha-D-glucose = 4-O-(beta-D-glucosyl)-4-trans-sinapoyl aldehyde + UDP + H(+)"],["RHEA%3A76459","(E)-sinapyl alcohol + A = (E)-sinapaldehyde + AH2"],["RHEA%3A45704","(E)-sinapyl alcohol + NADP(+) = (E)-sinapaldehyde + NADPH + H(+)"]],"b":[["antifungal/e-sinapaldehyde.html","(E)-sinapaldehyde"]]},{"id":"CHEBI:383703","l":"3,6-diamino-10-methylacridinium chloride","na":8,"nb":1,"a":[["TCDB%3A2.A.85","The Aromatic Acid Exporter (ArAE) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.117","The Chlorhexadine Exporter (CHX) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antibacterial/3-6-diamino-10-methylacridinium-chloride.html","3,6-diamino-10-methylacridinium chloride"]]},{"id":"CHEBI:6030","l":"isoniazide","na":8,"nb":1,"a":[["ARO%3A3004266","antibiotic resistant katG"],["ARO%3A3003416","isoniazid resistant katG"],["ARO%3A3003392","Mycobacterium tuberculosis katG mutations conferring resistance to isoniazid"],["ARO%3A3005102","Mycobacterium tuberculosis katG mutations conferring resistance to prothionamide"],["ARO%3A3005101","prothionamide resistant katG"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"CHEBI:77932","l":"tetracycline zwitterion","na":8,"nb":1,"a":[["EC%3A1.14.13.231","tetracycline 11a-monooxygenase"],["EC%3A1.14.19.49","tetracycline 7-halogenase"],["EC%3A1.3.98.4","5a,11a-dehydrotetracycline reductase"],["RHEA%3A50712","tetracycline + FADH2 + chloride + O2 = 7-chlorotetracycline + FAD + 2 H2O + H(+)"],["RHEA%3A35235","tetracycline(in) + H(+)(out) = tetracycline(out) + H(+)(in)"],["RHEA%3A35239","tetracycline(in) = tetracycline(out)"]],"b":[["antibacterial/tetracycline-zwitterion.html","tetracycline zwitterion"]]},{"id":"ARO:3000205","l":"tet(X)","na":1,"nb":7,"a":[["ARO%3A3000205","tet(X)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000316","l":"mphA","na":1,"nb":7,"a":[["ARO%3A3000316","mphA"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/oleandomycin.html","oleandomycin"],["antibacterial/roxithromycin.html","roxithromycin"]]},{"id":"ARO:3000497","l":"ethambutol","na":7,"nb":1,"a":[["ARO%3A3003447","ethambutol resistant iniA"],["ARO%3A3004136","Ethambutol resistant iniB"],["ARO%3A3003450","Ethambutol resistant iniC"],["ARO%3A3003448","Mycobacterium tuberculosis iniA mutant conferring resistance to ethambutol"],["ARO%3A3004135","Mycobacterium tuberculosis iniB with mutation conferring resistance to ethambutol"],["ARO%3A3003451","Mycobacterium tuberculosis iniC mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3000520","l":"isoniazid","na":7,"nb":1,"a":[["ARO%3A3004921","Mycobacterium tuberculosis ahpC mutations confer resistance to isoniazid"],["ARO%3A3004924","Mycobacterium tuberculosis inbR mutations conferring resistance to isoniazid"],["ARO%3A3007798","Mycobacterium tuberculosis iniA mutations conferring resistance to isoniazid"],["ARO%3A3003463","Mycobacterium tuberculosis kasA mutant conferring resistance to isoniazid"],["ARO%3A3004929","Mycobacterium tuberculosis mmaA3 mutations conferring resistance to isoniazid"],["ARO%3A3004928","Mycobacterium tuberculosis mymA mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3001866","l":"CTX-M-3","na":1,"nb":7,"a":[["ARO%3A3001866","CTX-M-3"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002500","l":"PDC-3","na":1,"nb":7,"a":[["ARO%3A3002500","PDC-3"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002502","l":"PDC-5","na":1,"nb":7,"a":[["ARO%3A3002502","PDC-5"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002533","l":"AAC(3)-IIa","na":1,"nb":7,"a":[["ARO%3A3002533","AAC(3)-IIa"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002534","l":"AAC(3)-IIb","na":1,"nb":7,"a":[["ARO%3A3002534","AAC(3)-IIb"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002535","l":"AAC(3)-IIc","na":1,"nb":7,"a":[["ARO%3A3002535","AAC(3)-IIc"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002545","l":"","na":1,"nb":7,"a":[["ARO%3A3002545","AAC(6')-Ia"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002549","l":"","na":1,"nb":7,"a":[["ARO%3A3002549","AAC(6')-Ic"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002553","l":"","na":1,"nb":7,"a":[["ARO%3A3002553","AAC(6')-If"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002554","l":"","na":1,"nb":7,"a":[["ARO%3A3002554","AAC(6')-Ig"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002555","l":"","na":1,"nb":7,"a":[["ARO%3A3002555","AAC(6')-Ih"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002556","l":"","na":1,"nb":7,"a":[["ARO%3A3002556","AAC(6')-Ii"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002557","l":"","na":1,"nb":7,"a":[["ARO%3A3002557","AAC(6')-Ij"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002558","l":"","na":1,"nb":7,"a":[["ARO%3A3002558","AAC(6')-Ik"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002559","l":"","na":1,"nb":7,"a":[["ARO%3A3002559","AAC(6')-Ip"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002560","l":"","na":1,"nb":7,"a":[["ARO%3A3002560","AAC(6')-Iq"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002561","l":"","na":1,"nb":7,"a":[["ARO%3A3002561","AAC(6')-Ir"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002562","l":"","na":1,"nb":7,"a":[["ARO%3A3002562","AAC(6')-Is"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002563","l":"","na":1,"nb":7,"a":[["ARO%3A3002563","AAC(6')-Isa"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002564","l":"","na":1,"nb":7,"a":[["ARO%3A3002564","AAC(6')-It"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002565","l":"","na":1,"nb":7,"a":[["ARO%3A3002565","AAC(6')-Iu"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002566","l":"","na":1,"nb":7,"a":[["ARO%3A3002566","AAC(6')-Iv"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002567","l":"","na":1,"nb":7,"a":[["ARO%3A3002567","AAC(6')-Iw"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002568","l":"","na":1,"nb":7,"a":[["ARO%3A3002568","AAC(6')-Ix"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002569","l":"","na":1,"nb":7,"a":[["ARO%3A3002569","AAC(6')-Iy"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002570","l":"","na":1,"nb":7,"a":[["ARO%3A3002570","AAC(6')-Iz"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002571","l":"","na":1,"nb":7,"a":[["ARO%3A3002571","AAC(6')-Iaa"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002572","l":"","na":1,"nb":7,"a":[["ARO%3A3002572","AAC(6')-Iad"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002573","l":"","na":1,"nb":7,"a":[["ARO%3A3002573","AAC(6')-Iae"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002574","l":"","na":1,"nb":7,"a":[["ARO%3A3002574","AAC(6')-Iaf"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002575","l":"","na":1,"nb":7,"a":[["ARO%3A3002575","AAC(6')-Iai"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002588","l":"","na":1,"nb":7,"a":[["ARO%3A3002588","AAC(6')-I30"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002589","l":"","na":1,"nb":7,"a":[["ARO%3A3002589","AAC(6')-Iid"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002590","l":"","na":1,"nb":7,"a":[["ARO%3A3002590","AAC(6')-Iih"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002594","l":"","na":1,"nb":7,"a":[["ARO%3A3002594","AAC(6')-IIa"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002595","l":"","na":1,"nb":7,"a":[["ARO%3A3002595","AAC(6')-IIb"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002596","l":"","na":1,"nb":7,"a":[["ARO%3A3002596","AAC(6')-IIc"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002824","l":"ErmV","na":1,"nb":7,"a":[["ARO%3A3002824","ErmV"]],"b":[["antibacterial/carbomycin.html","carbomycin"],["antibacterial/celesticetin.html","celesticetin"],["antibacterial/chalcomycin.html","chalcomycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/josamycin.html","josamycin"],["antibacterial/oleandomycin.html","oleandomycin"]]},{"id":"ARO:3003199","l":"","na":1,"nb":7,"a":[["ARO%3A3003199","AAC(6')-Iak"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3003200","l":"","na":1,"nb":7,"a":[["ARO%3A3003200","AAC(6')-Ian"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3003677","l":"","na":1,"nb":7,"a":[["ARO%3A3003677","AAC(6')-Iaj"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3004128","l":"Serratia marcescens Omp1","na":1,"nb":7,"a":[["ARO%3A3004128","Serratia marcescens Omp1"]],"b":[["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/moxalactam.html","moxalactam"]]},{"id":"ARO:3004491","l":"","na":7,"nb":1,"a":[["ARO%3A3007477","antibiotic resistant ATP synthase"],["ARO%3A3007673","bedaquiline resistant Rv0678"],["ARO%3A3007691","bedaquiline resistant Rv2535c"],["ARO%3A3007476","Mycobacterium abscessus atpE with mutation conferring resistance to bedaquiline"],["ARO%3A3007854","Mycobacterium tuberculosis atpE with mutation conferring resistance to bedaquiline"],["ARO%3A3007674","Mycobacterium tuberculosis Rv0678 with mutation conferring resistance to bedaquiline"]],"b":[["antimycobacterial/bedaquiline.html","bedaquiline"]]},{"id":"ARO:3004559","l":"CAM-1","na":1,"nb":7,"a":[["ARO%3A3004559","CAM-1"]],"b":[["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftolozane.html","ceftolozane"],["antibacterial/doripenem.html","doripenem"],["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3004572","l":"Staphylococcus aureus LmrS","na":1,"nb":7,"a":[["ARO%3A3004572","Staphylococcus aureus LmrS"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/florfenicol.html","florfenicol"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/linezolid.html","linezolid"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004621","l":"AAC(3)-IIe","na":1,"nb":7,"a":[["ARO%3A3004621","AAC(3)-IIe"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3004623","l":"AAC(3)-IId","na":1,"nb":7,"a":[["ARO%3A3004623","AAC(3)-IId"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3004629","l":"","na":1,"nb":7,"a":[["ARO%3A3004629","AAC(6')-Im"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3004635","l":"","na":1,"nb":7,"a":[["ARO%3A3004635","AAC(6')-Il"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3004638","l":"","na":1,"nb":7,"a":[["ARO%3A3004638","AAC(6')-I-48"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3004825","l":"LAP-1","na":1,"nb":7,"a":[["ARO%3A3004825","LAP-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefuroxime.html","cefuroxime"],["antibacterial/piperacillin.html","piperacillin"]]},{"id":"ARO:3004826","l":"LAP-2","na":1,"nb":7,"a":[["ARO%3A3004826","LAP-2"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefuroxime.html","cefuroxime"],["antibacterial/piperacillin.html","piperacillin"]]},{"id":"ARO:3005085","l":"AAC(3)-IIg","na":1,"nb":7,"a":[["ARO%3A3005085","AAC(3)-IIg"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3007011","l":"mdeA","na":1,"nb":7,"a":[["ARO%3A3007011","mdeA"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/nalidixic-acid.html","nalidixic acid"],["antibacterial/oxacillin.html","oxacillin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007204","l":"","na":1,"nb":7,"a":[["ARO%3A3007204","AAC(6')-Iap"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"CHEBI:15722","l":"","na":1,"nb":7,"a":[["MCSA%3A744","GyrA intein (Class 1 intein)"]],"b":[["antibacterial/mastoparan-a.html","mastoparan-A"],["antibacterial/mastoparan-af.html","mastoparan-AF"],["antibacterial/mastoparan-b.html","mastoparan-B"],["antibacterial/mastoparan-d.html","mastoparan-D"],["antibacterial/mastoparan-m.html","mastoparan-M"],["antibacterial/mastoparan-v.html","mastoparan-V"]]},{"id":"CHEBI:15837","l":"isoamylol","na":7,"nb":1,"a":[["EC%3A1.1.1.265","3-methylbutanal reductase"],["EC%3A3.1.1.112","isoamyl acetate esterase"],["RHEA%3A65236","3-methylbutan-1-ol + acetyl-CoA = 3-methylbutyl acetate + CoA"],["RHEA%3A85967","3-methylbutan-1-ol + hexadecanoyl-CoA = 3-methylbutyl hexadecanoate + CoA"],["RHEA%3A18529","3-methylbutan-1-ol + NAD(+) = 3-methylbutanal + NADH + H(+)"],["RHEA%3A18525","3-methylbutan-1-ol + NADP(+) = 3-methylbutanal + NADPH + H(+)"]],"b":[["antifungal/isoamylol.html","isoamylol"]]},{"id":"CHEBI:16118","l":"berberine","na":7,"nb":1,"a":[["EC%3A1.21.3.2","columbamine oxidase"],["EC%3A1.3.3.8","tetrahydroberberine oxidase"],["EC%3A1.5.1.31","berberine reductase"],["RHEA%3A23564","2 columbamine + O2 = 2 berberine + 2 H2O"],["RHEA%3A21268","(R)-canadine + 2 NADP(+) = berberine + 2 NADPH + H(+)"],["RHEA%3A13489","(S)-canadine + 2 O2 + H(+) = berberine + 2 H2O2"]],"b":[["antifungal/berberine.html","berberine"]]},{"id":"CHEBI:16731","l":"(E)-cinnamaldehyde","na":7,"nb":1,"a":[["EC%3A1.1.1.195","cinnamyl-alcohol dehydrogenase"],["EC%3A1.2.1.44","cinnamoyl-CoA reductase"],["RHEA%3A77507","(E)-cinnamaldehyde + hydrogen cyanide = (2S,3E)-2-hydroxy-4-phenylbut-3-enenitrile"],["RHEA%3A10620","(E)-cinnamaldehyde + NADP(+) + CoA = (E)-cinnamoyl-CoA + NADPH + H(+)"],["RHEA%3A58992","(E)-cinnamaldehyde + O2 + H2O = (E)-cinnamate + H2O2 + H(+)"],["RHEA%3A68872","(E)-cinnamate + ATP + NADPH + H(+) = (E)-cinnamaldehyde + AMP + diphosphate + NADP(+)"]],"b":[["antifungal/e-cinnamaldehyde.html","(E)-cinnamaldehyde"]]},{"id":"CHEBI:17209","l":"dihydrosanguinarine","na":7,"nb":1,"a":[["EC%3A1.14.14.100","dihydrosanguinarine 10-monooxygenase"],["EC%3A1.3.1.107","sanguinarine reductase"],["EC%3A1.5.3.12","dihydrobenzophenanthridine oxidase"],["RHEA%3A41660","dihydrosanguinarine + NAD(+) = sanguinarine + NADH"],["RHEA%3A41656","dihydrosanguinarine + NADP(+) = sanguinarine + NADPH"],["RHEA%3A16621","dihydrosanguinarine + O2 + H(+) = sanguinarine + H2O2"]],"b":[["antifungal/dihydrosanguinarine.html","dihydrosanguinarine"]]},{"id":"CHEBI:28831","l":"","na":7,"nb":1,"a":[["RHEA%3A62204","1-propanol + 2 Fe(III)-[cytochrome c] = propanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A65468","1-propanol + acetyl-CoA = propyl acetate + CoA"],["RHEA%3A65476","1-propanol + butanoyl-CoA = propyl butanoate + CoA"],["RHEA%3A50704","1-propanol + NAD(+) = propanal + NADH + H(+)"],["RHEA%3A64712","1-propanol + NADP(+) = propanal + NADPH + H(+)"],["MCSA%3A407","carboxylesterase"]],"b":[["antifungal/4-5-6-7-tetrachloro-2-benzofuran-1-3h-one.html","4,5,6,7-tetrachloro-2-benzofuran-1(3H)-one"]]},{"id":"CHEBI:83264","l":"","na":7,"nb":1,"a":[["RHEA%3A48056","a beta-D-galactosyl-(1->4)-beta-D-glucosyl-(1<->1)-ceramide + H2O = a beta-D-glucosylceramide + D-galactose"],["RHEA%3A85943","a beta-D-glucosylceramide + GDP-alpha-D-mannose = beta-D-Man-(1->4)-beta-D-Glc-(1<->1)-ceramide + GDP + H(+)"],["RHEA%3A78531","a beta-D-glucosylceramide + H2O = a beta-D-glucosyll-(1<->1')-sphingoid base + a fatty acid"],["RHEA%3A81447","a beta-D-glucosylceramide + H2O = an N-acyl-sphingoid base + D-glucose"],["RHEA%3A77255","a beta-D-glucosylceramide(in) = a beta-D-glucosylceramide(out)"],["RHEA%3A66660","a beta-D-glucosylceramide(in) + ATP + H2O = a beta-D-glucosylceramide(out) + ADP + phosphate + H(+)"]],"b":[["unspecified/chrysogeside-b.html","chrysogeside B"]]},{"id":"ARO:3000186","l":"tet(M)","na":1,"nb":6,"a":[["ARO%3A3000186","tet(M)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000190","l":"tet(O)","na":1,"nb":6,"a":[["ARO%3A3000190","tet(O)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000191","l":"tet(Q)","na":1,"nb":6,"a":[["ARO%3A3000191","tet(Q)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000192","l":"tet(S)","na":1,"nb":6,"a":[["ARO%3A3000192","tet(S)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000193","l":"tet(T)","na":1,"nb":6,"a":[["ARO%3A3000193","tet(T)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000194","l":"tet(W)","na":1,"nb":6,"a":[["ARO%3A3000194","tet(W)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000195","l":"tetB(P)","na":1,"nb":6,"a":[["ARO%3A3000195","tetB(P)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000196","l":"tet(32)","na":1,"nb":6,"a":[["ARO%3A3000196","tet(32)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000197","l":"tet(36)","na":1,"nb":6,"a":[["ARO%3A3000197","tet(36)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000556","l":"tet(44)","na":1,"nb":6,"a":[["ARO%3A3000556","tet(44)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000787","l":"MdtABC-TolC","na":6,"nb":1,"a":[["ARO%3A3000828","baeR"],["ARO%3A3000829","baeS"],["ARO%3A3000531","baeSR"],["ARO%3A3000830","cpxA"],["ARO%3A3000524","cpxAR"],["ARO%3A3000787","MdtABC-TolC"]],"b":[["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3001889","l":"CTX-M-27","na":1,"nb":6,"a":[["ARO%3A3001889","CTX-M-27"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ertapenem.html","ertapenem"]]},{"id":"ARO:3002600","l":"","na":1,"nb":6,"a":[["ARO%3A3002600","AAC(3)-Ib/AAC(6')-Ib3 bifunctional protein"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/astromicin.html","astromicin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/sisomycin.html","sisomycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002641","l":"","na":1,"nb":6,"a":[["ARO%3A3002641","APH(3')-Ia"]],"b":[["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"],["antimycobacterial/lividomycin-a.html","lividomycin A"]]},{"id":"ARO:3002642","l":"","na":1,"nb":6,"a":[["ARO%3A3002642","APH(3')-Ib"]],"b":[["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"],["antimycobacterial/lividomycin-a.html","lividomycin A"]]},{"id":"ARO:3002644","l":"","na":1,"nb":6,"a":[["ARO%3A3002644","APH(3')-IIa"]],"b":[["antibacterial/butirosin.html","butirosin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3002645","l":"","na":1,"nb":6,"a":[["ARO%3A3002645","APH(3')-IIb"]],"b":[["antibacterial/butirosin.html","butirosin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3002646","l":"","na":1,"nb":6,"a":[["ARO%3A3002646","APH(3')-IIc"]],"b":[["antibacterial/butirosin.html","butirosin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3003684","l":"Pseudomonas aeruginosa gyrA conferring resistance to fluoroquinolones","na":1,"nb":6,"a":[["ARO%3A3003684","Pseudomonas aeruginosa gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/ofloxacin.html","ofloxacin"],["antibacterial/pefloxacin.html","pefloxacin"],["antibacterial/sitafloxacin.html","Sitafloxacin"],["antibacterial/sparfloxacin.html","sparfloxacin"]]},{"id":"ARO:3003688","l":"PvrR","na":1,"nb":6,"a":[["ARO%3A3003688","PvrR"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/carbenicillin.html","carbenicillin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tetracycline.html","tetracycline"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3003908","l":"Erm(47)","na":1,"nb":6,"a":[["ARO%3A3003908","Erm(47)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/quinupristin.html","quinupristin"],["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3004076","l":"MuxABC-OpmB","na":1,"nb":6,"a":[["ARO%3A3004076","MuxABC-OpmB"]],"b":[["antibacterial/aztreonam.html","aztreonam"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/josamycin.html","josamycin"],["antibacterial/novobiocin.html","novobiocin"],["antibacterial/rokitamycin.html","rokitamycin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004176","l":"Mycoplasma hominis 23S rRNA with mutation conferring resistance to macrolide antibiotics","na":1,"nb":6,"a":[["ARO%3A3004176","Mycoplasma hominis 23S rRNA with mutation conferring resistance to macrolide antibiotics"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/spiramycin-i.html","spiramycin I"],["antibacterial/telithromycin.html","telithromycin"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3004446","l":"Haemophilus influenzae PBP3 conferring resistance to beta-lactam antibiotics","na":1,"nb":6,"a":[["ARO%3A3004446","Haemophilus influenzae PBP3 conferring resistance to beta-lactam antibiotics"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefaclor.html","cefaclor"],["antibacterial/cefdinir.html","cefdinir"],["antibacterial/cefditoren.html","cefditoren"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3004715","l":"vga(E) Staphylococcus cohnii","na":1,"nb":6,"a":[["ARO%3A3004715","vga(E) Staphylococcus cohnii"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/valnemulin.html","valnemulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3005015","l":"VMB-1","na":1,"nb":6,"a":[["ARO%3A3005015","VMB-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3007085","l":"PRC-1","na":1,"nb":6,"a":[["ARO%3A3007085","PRC-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3007154","l":"","na":6,"nb":1,"a":[["ARO%3A3004943","cycloserine resistant ald"],["ARO%3A3004946","cycloserine resistant alr"],["ARO%3A3004939","cycloserine resistant ddlA"],["ARO%3A3004945","Mycobacterium tuberculosis ald mutations confer resistance to cycloserine"],["ARO%3A3004947","Mycobacterium tuberculosis alr with mutation conferring resistance to cycloserine"],["ARO%3A3004941","Mycobacterium tuberculosis ddlA mutations confer resistance to cycloserine"]],"b":[["antimycobacterial/d-cycloserine.html","D-cycloserine"]]},{"id":"ARO:3007437","l":"EBR-5","na":1,"nb":6,"a":[["ARO%3A3007437","EBR-5"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftiofur.html","ceftiofur"],["antibacterial/cefuroxime.html","cefuroxime"],["antibacterial/piperacillin.html","piperacillin"]]},{"id":"ARO:3007646","l":"Neobacillus vireti vmlR2","na":1,"nb":6,"a":[["ARO%3A3007646","Neobacillus vireti vmlR2"]],"b":[["antibacterial/a201a.html","A201A"],["antibacterial/hygromycin-a.html","hygromycin A"],["antibacterial/iboxamycin.html","iboxamycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3007648","l":"PSZ-1","na":1,"nb":6,"a":[["ARO%3A3007648","PSZ-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"ARO:3007659","l":"putative nickel/cobalt transporter","na":1,"nb":6,"a":[["ARO%3A3007659","putative nickel/cobalt transporter"]],"b":[["antibacterial/gentamicin.html","gentamicin"],["antibacterial/nalidixic-acid.html","nalidixic acid"],["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/ofloxacin.html","ofloxacin"],["antibacterial/sparfloxacin.html","sparfloxacin"],["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"CHEBI:134179","l":"","na":1,"nb":6,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antibacterial/3-phenethylamino-butan-2-one.html","3-(phenethylamino)-butan-2-one"],["antifungal/acrylonitrile.html","acrylonitrile"],["antifungal/isoamylol.html","isoamylol"],["antifungal/nerolidol.html","nerolidol"],["antifungal/prop-2-yn-1-ol.html","prop-2-yn-1-ol"],["biocide/ethanol.html","ethanol"]]},{"id":"CHEBI:15399","l":"(+)-carvone","na":6,"nb":1,"a":[["EC%3A1.1.1.275","(+)-trans-carveol dehydrogenase"],["EC%3A1.1.1.n4","(-)-trans-carveol dehydrogenase"],["EC%3A1.3.99.25","carvone reductase"],["RHEA%3A32427","(1R,4S)-isodihydrocarvone + A = (S)-carvone + AH2"],["RHEA%3A14825","(1R,5S)-carveol + NAD(+) = (S)-carvone + NADH + H(+)"],["RHEA%3A25848","(1S,5S)-carveol + NAD(+) = (S)-carvone + NADH + H(+)"]],"b":[["antifungal/carvone.html","(+)-carvone"]]},{"id":"CHEBI:15400","l":"(−)-carvone","na":6,"nb":1,"a":[["EC%3A1.1.1.243","carveol dehydrogenase"],["EC%3A1.1.1.n4","(-)-trans-carveol dehydrogenase"],["EC%3A1.3.99.25","carvone reductase"],["RHEA%3A32423","(1R,4R)-dihydrocarvone + A = (R)-carvone + AH2"],["RHEA%3A25844","(1S,5R)-carveol + NAD(+) = (R)-carvone + NADH + H(+)"],["RHEA%3A13629","(1S,5R)-carveol + NADP(+) = (R)-carvone + NADPH + H(+)"]],"b":[["antifungal/carvone-15400.html","(−)-carvone"]]},{"id":"CHEBI:16664","l":"albendazole","na":6,"nb":1,"a":[["EC%3A1.14.13.32","albendazole monooxygenase"],["EC%3A1.14.14.73","albendazole monooxygenase (sufoxide-forming)"],["EC%3A1.14.14.74","albendazole monooxygenase (hydroxylating)"],["RHEA%3A10796","albendazole + NADPH + O2 + H(+) = albendazole S-oxide + NADP(+) + H2O"],["RHEA%3A55924","albendazole + reduced [NADPH--hemoprotein reductase] + O2 = albendazole S-oxide + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A56288","albendazole + reduced [NADPH--hemoprotein reductase] + O2 = hydroxyalbendazole + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["antifungal/albendazole.html","albendazole"]]},{"id":"CHEBI:20702","l":"","na":1,"nb":6,"a":[["TCDB%3A2.A.40","The Nucleobase/Ascorbate Transporter (NAT) or Nucleobase:Cation Symporter-2 (NCS2) Family"]],"b":[["antiviral/acyclovir.html","acyclovir"],["antiviral/entecavir-anhydrous.html","entecavir (anhydrous)"],["antiviral/famciclovir.html","famciclovir"],["antiviral/ganciclovir.html","ganciclovir"],["antiviral/penciclovir.html","penciclovir"],["antiviral/tioguanine.html","tioguanine"]]},{"id":"CHEBI:25696","l":"","na":6,"nb":1,"a":[["TCDB%3A2.A.31","The Anion Exchanger (AE) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.28","The Bile Acid:Na+ Symporter (BASS) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.60","The Organo Anion Transporter (OAT) Family"],["TCDB%3A1.C.103","The Pore-forming Toxin, TisB (TisB) Family"]],"b":[["antibacterial/trichosetin-1.html","trichosetin(1−)"]]},{"id":"CHEBI:28054","l":"o-cresol","na":6,"nb":1,"a":[["EC%3A1.14.13.243","toluene 2-monooxygenase"],["RHEA%3A57948","2-hydroxytoluene + NADH + O2 + H(+) = 3-methylcatechol + NAD(+) + H2O"],["RHEA%3A57440","2-methylanisole + reduced [NADH--hemoprotein reductase] + O2 = 2-hydroxytoluene + oxidized [NADH--hemoprotein reductase] + formaldehyde + H2O + H(+)"],["RHEA%3A80607","(2-methylphenoxy)acetate + 2-oxoglutarate + O2 = 2-hydroxytoluene + glyoxylate + succinate + CO2"],["RHEA%3A20349","toluene + NADH + O2 + H(+) = 2-hydroxytoluene + NAD(+) + H2O"],["proteintraitsmech%3ABIOLIP_JZ0","JZ0-binding site"]],"b":[["antifungal/o-cresol.html","o-cresol"]]},{"id":"CHEBI:3020","l":"","na":6,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.117","The Chlorhexadine Exporter (CHX) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"]]},{"id":"CHEBI:31457","l":"decanal","na":6,"nb":1,"a":[["RHEA%3A58376","decan-1-ol + NADP(+) = decanal + NADPH + H(+)"],["RHEA%3A69496","decan-1-ol + O2 = decanal + H2O2"],["RHEA%3A44104","decanal + NAD(+) + H2O = decanoate + NADH + 2 H(+)"],["RHEA%3A50612","decanal + NADP(+) = (2E)-decenal + NADPH + H(+)"],["RHEA%3A65744","decyl sulfate + 2-oxoglutarate + O2 = decanal + sulfate + succinate + CO2 + H(+)"],["proteintraitsmech%3ABIOLIP_8YP","8YP-binding site"]],"b":[["antifungal/decanal.html","decanal"]]},{"id":"CHEBI:35915","l":"","na":6,"nb":1,"a":[["EC%3A2.3.1.43","phosphatidylcholine--sterol O-acyltransferase"],["EC%3A2.3.1.73","diacylglycerol--sterol O-acyltransferase"],["EC%3A3.1.1.13","sterol esterase"],["RHEA%3A21204","a sterol + a 1,2-diacyl-sn-glycero-3-phosphocholine = a sterol ester + a 1-acyl-sn-glycero-3-phosphocholine"],["RHEA%3A13301","a sterol + a 1,2-diacyl-sn-glycerol = a sterol ester + a 1-acyl-sn-glycerol"],["RHEA%3A10100","a sterol ester + H2O = a sterol + a fatty acid + H(+)"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"CHEBI:4883","l":"ethidium bromide","na":6,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.A.7","The ATP-gated P2X Receptor Cation Channel (P2X Receptor) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antiprotozoal/ethidium-bromide.html","ethidium bromide"]]},{"id":"CHEBI:50667","l":"mercaptopurine","na":6,"nb":1,"a":[["EC%3A2.1.1.67","thiopurine S-methyltransferase"],["RHEA%3A12609","mercaptopurine + S-adenosyl-L-methionine = 6-methylthiopurine + S-adenosyl-L-homocysteine + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.40","The Nucleobase/Ascorbate Transporter (NAT) or Nucleobase:Cation Symporter-2 (NCS2) Family"]],"b":[["antiviral/mercaptopurine.html","mercaptopurine"]]},{"id":"CHEBI:61748","l":"(E)-oct-2-enal","na":6,"nb":1,"a":[["EC%3A2.2.1.12","3-acetyloctanal synthase"],["RHEA%3A59920","(2E)-octenal + NAD(+) + H2O = (2E)-octenoate + NADH + 2 H(+)"],["RHEA%3A59916","(2E)-octenal + NADP(+) + H2O = (2E)-octenoate + NADPH + 2 H(+)"],["RHEA%3A42832","(2E)-octenal + pyruvate + H(+) = (S)-3-acetyloctanal + CO2"],["RHEA%3A58372","(E)-oct-2-en-1-ol + NADP(+) = (2E)-octenal + NADPH + H(+)"],["RHEA%3A50780","octanal + NADP(+) = (2E)-octenal + NADPH + H(+)"]],"b":[["antifungal/e-oct-2-enal.html","(E)-oct-2-enal"]]},{"id":"CHEBI:77722","l":"apigenin 7-O-β-D-glucoside(1−)","na":6,"nb":1,"a":[["EC%3A2.4.1.81","flavone 7-O-beta-glucosyltransferase"],["EC%3A2.4.2.25","flavone apiosyltransferase"],["RHEA%3A69679","apigenin 7-O-beta-D-glucoside + H2O = apigenin + beta-D-glucose"],["RHEA%3A67348","apigenin 7-O-beta-D-glucoside + malonyl-CoA = apigenin 7-O-(6-O-malonyl-beta-D-glucoside) + CoA"],["RHEA%3A59760","apigenin + UDP-alpha-D-glucose = apigenin 7-O-beta-D-glucoside + UDP + H(+)"],["RHEA%3A19153","UDP-alpha-D-apiose + apigenin 7-O-beta-D-glucoside = 7-O-(beta-D-apiofuranosyl-1,2-beta-D-glucosyl)-5,7,4'-trihydroxyflavone + UDP + H(+)"]],"b":[["antibacterial/apigenin-7-o-%CE%B2-d-glucoside-1.html","apigenin 7-O-β-D-glucoside(1−)"]]},{"id":"CHEBI:77979","l":"aclacinomycin T zwitterion","na":6,"nb":1,"a":[["EC%3A2.4.1.326","aklavinone 7-L-rhodosaminyltransferase"],["EC%3A2.4.1.327","aclacinomycin-T 2-deoxy-L-fucose transferase"],["EC%3A3.1.1.95","aclacinomycin methylesterase"],["RHEA%3A37891","aclacinomycin T + H2O = 15-demethylaclacinomycin T + methanol"],["RHEA%3A41568","dTDP-2-deoxy-beta-L-fucose + aclacinomycin T = aclacinomycin S + dTDP + H(+)"],["RHEA%3A41564","dTDP-beta-L-rhodosamine + aklavinone = aclacinomycin T + dTDP + 2 H(+)"]],"b":[["unspecified/aclacinomycin-t-zwitterion.html","aclacinomycin T zwitterion"]]},{"id":"CHEBI:86494","l":"","na":1,"nb":6,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/allicin.html","allicin"],["antifungal/berberine.html","berberine"],["antifungal/carvacrol.html","carvacrol"],["antifungal/carvone-38265.html","carvone"],["antifungal/sanguinarine.html","sanguinarine"],["antifungal/%CE%B1-santonin.html","α-santonin"]]},{"id":"CHEBI:98","l":"(S)-linalool","na":6,"nb":1,"a":[["EC%3A4.2.1.127","linalool dehydratase"],["EC%3A4.2.3.25","S-linalool synthase"],["EC%3A5.4.4.4","geraniol isomerase"],["RHEA%3A30715","(2E)-geraniol = (S)-linalool"],["RHEA%3A24116","(2E)-geranyl diphosphate + H2O = (S)-linalool + diphosphate"],["RHEA%3A30711","(S)-linalool = beta-myrcene + H2O"]],"b":[["unspecified/s-linalool.html","(S)-linalool"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":6,"nb":1,"a":[["IDPO%3A0000037","molecular recognition display site"],["Pfam%3APF05403","Plasmodium histidine-rich protein (HRPII/III)"],["Pfam%3APF17986","EMP3-KAHRP-like N-terminal domain"],["Pfam%3APF03805","Cytoadherence-linked asexual protein"],["Pfam%3APF06589","Circumsporozoite-related antigen (CRA)"],["TED%3AAF-Q9U431-F1-model_v4_TED01","TED novel fold AF-Q9U431-F1-model_v4_TED01"]],"b":[["antiprotozoal/emetine.html","emetine"]]},{"id":"ARO:3000230","l":"","na":1,"nb":5,"a":[["ARO%3A3000230","ANT(2')-Ia"]],"b":[["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/sisomycin.html","sisomycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3000753","l":"abeM","na":1,"nb":5,"a":[["ARO%3A3000753","abeM"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/ofloxacin.html","ofloxacin"],["antibacterial/triclosan.html","triclosan"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3001214","l":"mdtM","na":1,"nb":5,"a":[["ARO%3A3001214","mdtM"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/puromycin.html","puromycin"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3001304","l":"ErmS","na":1,"nb":5,"a":[["ARO%3A3001304","ErmS"]],"b":[["antibacterial/carbomycin.html","carbomycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/niddamycin.html","niddamycin"],["antibacterial/pristinamycin-ic.html","pristinamycin IC"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3001878","l":"CTX-M-15","na":1,"nb":5,"a":[["ARO%3A3001878","CTX-M-15"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3002523","l":"","na":1,"nb":5,"a":[["ARO%3A3002523","AAC(2')-Ia"]],"b":[["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002524","l":"","na":1,"nb":5,"a":[["ARO%3A3002524","AAC(2')-Ib"]],"b":[["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002525","l":"","na":1,"nb":5,"a":[["ARO%3A3002525","AAC(2')-Ic"]],"b":[["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002526","l":"","na":1,"nb":5,"a":[["ARO%3A3002526","AAC(2')-Id"]],"b":[["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002527","l":"","na":1,"nb":5,"a":[["ARO%3A3002527","AAC(2')-Ie"]],"b":[["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002583","l":"","na":1,"nb":5,"a":[["ARO%3A3002583","AAC(6')-29a"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002584","l":"","na":1,"nb":5,"a":[["ARO%3A3002584","AAC(6')-29b"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002648","l":"","na":1,"nb":5,"a":[["ARO%3A3002648","APH(3')-IVa"]],"b":[["antibacterial/butirosin.html","butirosin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3002823","l":"ErmH","na":1,"nb":5,"a":[["ARO%3A3002823","ErmH"]],"b":[["antibacterial/carbomycin.html","carbomycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/oleandomycin.html","oleandomycin"],["antibacterial/pristinamycin-ic.html","pristinamycin IC"]]},{"id":"ARO:3002831","l":"vgaC","na":1,"nb":5,"a":[["ARO%3A3002831","vgaC"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/valnemulin.html","valnemulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3003071","l":"mphF","na":1,"nb":5,"a":[["ARO%3A3003071","mphF"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/roxithromycin.html","roxithromycin"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3003374","l":"Enterobacter aerogenes acrR with mutation conferring multidrug antibiotic resistance","na":1,"nb":5,"a":[["ARO%3A3003374","Enterobacter aerogenes acrR with mutation conferring multidrug antibiotic resistance"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/tetracycline.html","tetracycline"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3003561","l":"SED-1","na":1,"nb":5,"a":[["ARO%3A3003561","SED-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefuroxime.html","cefuroxime"],["antibacterial/piperacillin.html","piperacillin"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3003713","l":"VCC-1","na":1,"nb":5,"a":[["ARO%3A3003713","VCC-1"]],"b":[["antibacterial/aztreonam.html","aztreonam"],["antibacterial/doripenem.html","doripenem"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3003749","l":"salA","na":1,"nb":5,"a":[["ARO%3A3003749","salA"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3003995","l":"Clostridioides difficile gyrA conferring resistance to fluoroquinolones","na":1,"nb":5,"a":[["ARO%3A3003995","Clostridioides difficile gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"],["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3004082","l":"AcrAD-TolC","na":1,"nb":5,"a":[["ARO%3A3004082","AcrAD-TolC"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3004191","l":"","na":1,"nb":5,"a":[["ARO%3A3004191","APH(2')-If"]],"b":[["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/sisomycin.html","sisomycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3004470","l":"poxtA","na":1,"nb":5,"a":[["ARO%3A3004470","poxtA"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/florfenicol.html","florfenicol"],["antibacterial/linezolid.html","linezolid"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004675","l":"aphA15","na":1,"nb":5,"a":[["ARO%3A3004675","aphA15"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004677","l":"rmtD2","na":1,"nb":5,"a":[["ARO%3A3004677","rmtD2"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005035","l":"YRC-1","na":1,"nb":5,"a":[["ARO%3A3005035","YRC-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/cefuroxime.html","cefuroxime"]]},{"id":"ARO:3007026","l":"salB","na":1,"nb":5,"a":[["ARO%3A3007026","salB"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3007027","l":"salC","na":1,"nb":5,"a":[["ARO%3A3007027","salC"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3007033","l":"Erm(51)","na":1,"nb":5,"a":[["ARO%3A3007033","Erm(51)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/pristinamycin-ib.html","pristinamycin IB"]]},{"id":"ARO:3007151","l":"","na":5,"nb":1,"a":[["ARO%3A3000446","antibiotic-resistant isoleucyl-tRNA synthetase (ileS)"],["ARO%3A3003730","Bifidobacterium bifidum ileS conferring resistance to mupirocin"],["ARO%3A3003729","Staphylococcus aureus ileS with mutation conferring resistance to mupirocin"],["ARO%3A3000521","Staphylococcus aureus mupA conferring resistance to mupirocin"],["ARO%3A3000510","Staphylococcus aureus mupB conferring resistance to mupirocin"]],"b":[["antibacterial/mupirocin.html","mupirocin"]]},{"id":"ARO:3007180","l":"MAB","na":1,"nb":5,"a":[["ARO%3A3007180","MAB"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/cefuroxime.html","cefuroxime"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3007182","l":"blaC","na":1,"nb":5,"a":[["ARO%3A3007182","blaC"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/temocillin.html","temocillin"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3007374","l":"PJM-1","na":1,"nb":5,"a":[["ARO%3A3007374","PJM-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3007438","l":"LAQ-1","na":1,"nb":5,"a":[["ARO%3A3007438","LAQ-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"ARO:3007635","l":"CAE-1","na":1,"nb":5,"a":[["ARO%3A3007635","CAE-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/cefuroxime.html","cefuroxime"],["antibacterial/piperacillin.html","piperacillin"]]},{"id":"ARO:3007637","l":"Clostridioides difficile cplR","na":1,"nb":5,"a":[["ARO%3A3007637","Clostridioides difficile cplR"]],"b":[["antibacterial/a201a.html","A201A"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/iboxamycin.html","iboxamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3007644","l":"Clostridium perfringes cplR","na":1,"nb":5,"a":[["ARO%3A3007644","Clostridium perfringes cplR"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/iboxamycin.html","iboxamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3007694","l":"AMZ-1","na":1,"nb":5,"a":[["ARO%3A3007694","AMZ-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"ARO:3009134","l":"antifungal resistance-associated MSH2","na":1,"nb":5,"a":[["ARO%3A3009134","antifungal resistance-associated MSH2"]],"b":[["antifungal/amphotericin-b.html","amphotericin B"],["antifungal/caspofungin.html","caspofungin"],["antifungal/fluconazole.html","fluconazole"],["antifungal/micafungin.html","micafungin"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"CHEBI:15649","l":"3,6,9-trihydroxypterocarpan","na":5,"nb":1,"a":[["EC%3A1.14.14.93","3,9-dihydroxypterocarpan 6a-monooxygenase"],["EC%3A2.5.1.36","trihydroxypterocarpan dimethylallyltransferase"],["RHEA%3A15321","(6aR,11aR)-3,9-dihydroxypterocarpan + reduced [NADPH--hemoprotein reductase] + O2 = (6aS,11aS)-3,6a,9-trihydroxypterocarpan + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A19345","(6aS,11aS)-3,6a,9-trihydroxypterocarpan + dimethylallyl diphosphate = (6aS,11aS)-2-dimethylallyl-3,6a,9-trihydroxypterocarpan + diphosphate"],["RHEA%3A23184","(6aS,11aS)-3,6a,9-trihydroxypterocarpan + dimethylallyl diphosphate = (6aS,11aS)-4-dimethylallyl-3,6a,9-trihydroxypterocarpan + diphosphate"]],"b":[["antibacterial/3-6-9-trihydroxypterocarpan.html","3,6,9-trihydroxypterocarpan"]]},{"id":"CHEBI:16670","l":"peptide","na":5,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A9.B.46","The Staphylococcus aureus Putative Quorum Sensing Peptide Exporter, AgrB (AgrB) Family"],["TCDB%3A3.A.25","The Symbiont-specific ERAD-like Machinery (SELMA) Family"],["proteintraitsmech%3ABIOLIP_PEPTIDE","peptide-binding site"]],"b":[["antibacterial/cefbuperazone.html","cefbuperazone"]]},{"id":"CHEBI:17043","l":"biphenyl-2-ol","na":5,"nb":1,"a":[["EC%3A1.14.13.44","2-hydroxybiphenyl 3-monooxygenase"],["EC%3A3.13.1.3","2'-hydroxybiphenyl-2-sulfinate desulfinase"],["RHEA%3A12945","2'-hydroxybiphenyl-2-sulfinate + H2O = biphenyl-2-ol + sulfite + H(+)"],["RHEA%3A11996","biphenyl-2-ol + NADH + O2 + H(+) = biphenyl-2,3-diol + NAD(+) + H2O"],["MCSA%3A971","2'-hydroxybiphenyl-2-sulfinate desulfinase"]],"b":[["antifungal/biphenyl-2-ol.html","biphenyl-2-ol"]]},{"id":"CHEBI:17183","l":"sanguinarine","na":5,"nb":1,"a":[["EC%3A1.3.1.107","sanguinarine reductase"],["EC%3A1.5.3.12","dihydrobenzophenanthridine oxidase"],["RHEA%3A41660","dihydrosanguinarine + NAD(+) = sanguinarine + NADH"],["RHEA%3A41656","dihydrosanguinarine + NADP(+) = sanguinarine + NADPH"],["RHEA%3A16621","dihydrosanguinarine + O2 + H(+) = sanguinarine + H2O2"]],"b":[["antifungal/sanguinarine.html","sanguinarine"]]},{"id":"CHEBI:18145","l":"(R,R,R)-α-tocopherol","na":5,"nb":1,"a":[["EC%3A2.1.1.95","tocopherol C-methyltransferase"],["RHEA%3A71507","(+)-alpha-tocopherol(out) = (+)-alpha-tocopherol(in)"],["RHEA%3A45108","(+)-alpha-tocopherol + reduced [NADPH--hemoprotein reductase] + O2 = 13-hydroxy-alpha-tocopherol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A24012","gamma-tocopherol + S-adenosyl-L-methionine = (+)-alpha-tocopherol + S-adenosyl-L-homocysteine + H(+)"],["proteintraitsmech%3ABIOLIP_VIV","VIV-binding site"]],"b":[["antiviral/r-r-r-%CE%B1-tocopherol.html","(R,R,R)-α-tocopherol"]]},{"id":"CHEBI:23403","l":"","na":1,"nb":5,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antibacterial/5-6-7-trimethoxycoumarin.html","5,6,7-trimethoxycoumarin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/glycyrin.html","glycyrin"],["antifungal/coumoxystrobin.html","coumoxystrobin"],["antiviral/soulattrolide.html","soulattrolide"]]},{"id":"CHEBI:28600","l":"farnesol","na":1,"nb":5,"a":[["RHEA%3A79359","farnesol + 2 Fe(III)-[cytochrome c] = farnesal + 2 Fe(II)-[cytochrome c] + 2 H(+)"]],"b":[["unspecified/2-cis-6-cis-farnesol.html","(2-cis,6-cis)-farnesol"],["unspecified/2-cis-6-trans-farnesol.html","(2-cis,6-trans)-farnesol"],["unspecified/2-trans-6-cis-farnesol.html","(2-trans,6-cis)-farnesol"],["unspecified/2-trans-6-trans-farnesol.html","(2-trans,6-trans)-farnesol"],["unspecified/farnesol.html","farnesol"]]},{"id":"CHEBI:33704","l":"","na":5,"nb":1,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["MCSA%3A396","aspartic peptidase"],["MCSA%3A169","dipeptidyl-peptidase IV"],["MCSA%3A425","plasmin"],["MCSA%3A412","prolyl aminopeptidase"]],"b":[["antiprotozoal/eflornithine.html","eflornithine"]]},{"id":"CHEBI:34994","l":"","na":1,"nb":5,"a":[["TCDB%3A2.A.128","The Multidrug Resistance Exporter VanZ (VanZ) Family"]],"b":[["unspecified/teicoplanin-a2-1.html","teicoplanin A2-1"],["unspecified/teicoplanin-a2-2.html","teicoplanin A2-2"],["unspecified/teicoplanin-a2-3.html","teicoplanin A2-3"],["unspecified/teicoplanin-a2-4.html","teicoplanin A2-4"],["unspecified/teicoplanin-a2-5.html","teicoplanin A2-5"]]},{"id":"CHEBI:36835","l":"","na":5,"nb":1,"a":[["EC%3A1.1.1.213","3alpha-hydroxysteroid dehydrogenase (Re-specific)"],["EC%3A1.1.1.357","3alpha-hydroxysteroid 3-dehydrogenase"],["EC%3A1.1.1.50","3alpha-hydroxysteroid 3-dehydrogenase (Si-specific)"],["RHEA%3A34779","a 3alpha-hydroxysteroid + NAD(+) = a 3-oxosteroid + NADH + H(+)"],["RHEA%3A34783","a 3alpha-hydroxysteroid + NADP(+) = a 3-oxosteroid + NADPH + H(+)"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"CHEBI:3900","l":"costunolide","na":5,"nb":1,"a":[["EC%3A1.14.14.150","costunolide synthase"],["RHEA%3A56992","6alpha-hydroxygermacra-1(10),4,11(13)-trien-12-oate + H(+) = (+)-costunolide + H2O"],["RHEA%3A61324","(+)-costunolide + reduced [NADPH--hemoprotein reductase] + O2 = 3beta-hydroxycostunolide + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A61320","(+)-costunolide + reduced [NADPH--hemoprotein reductase] + O2 = parthenolide + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A28230","germacra-1(10),4,11(13)-trien-12-oate + reduced [NADPH--hemoprotein reductase] + O2 = (+)-costunolide + oxidized [NADPH--hemoprotein reductase] + 2 H2O"]],"b":[["antiviral/costunolide.html","costunolide"]]},{"id":"CHEBI:3962","l":"curcumin","na":5,"nb":1,"a":[["EC%3A1.3.1.n3","curcumin reductase"],["EC%3A2.3.1.217","curcumin synthase"],["RHEA%3A34819","dihydrocurcumin + NADP(+) = curcumin + NADPH + H(+)"],["RHEA%3A34823","(E)-feruloylacetyl-CoA + (E)-feruloyl-CoA + H2O = curcumin + CO2 + 2 CoA"],["RHEA%3A34815","tetrahydrocurcumin + 2 NADP(+) = curcumin + 2 NADPH + 2 H(+)"]],"b":[["antifungal/curcumin.html","curcumin"]]},{"id":"CHEBI:5100","l":"flucytosine","na":5,"nb":1,"a":[["ARO%3A3007642","Aspergillus spp. fcyB conferring resistance to 5-flucytosine via reduced permeability"],["ARO%3A3007665","Candida spp. FCY2 conferring resistance to 5-flucytosine via reduced permeability"],["ARO%3A3007641","fungal nucleobase transporters"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.39","The Nucleobase:Cation Symporter-1 (NCS1) Family"]],"b":[["antifungal/flucytosine.html","flucytosine"]]},{"id":"CHEBI:58001","l":"","na":5,"nb":1,"a":[["EC%3A1.5.3.25","fructosyl amine oxidase (glucosone-forming)"],["RHEA%3A21916","2 Fe(III)-[cytochrome c550] + an aliphatic amine + H2O = 2 Fe(II)-[cytochrome c550] + an aldehyde + NH4(+) + 2 H(+)"],["RHEA%3A51128","an aliphatic amine + A + H2O = an aldehyde + AH2 + NH4(+)"],["RHEA%3A77795","an (E)-{[(2R,3S,4R,5R)-2,3,4,5-tetrahydroxyoxan-2-yl]methylidene}amine + H2O + H(+) = an aliphatic amine + 2-dehydro-D-glucose"],["RHEA%3A77787","an N-(1-deoxy-beta-D-fructopyranos-1-yl)amine + O2 + H2O = an aliphatic amine + 2-dehydro-D-glucose + H2O2"]],"b":[["unspecified/streptothricin-f-3.html","streptothricin F(3+)"]]},{"id":"CHEBI:62219","l":"2-heptyl-4-quinolone","na":5,"nb":1,"a":[["EC%3A1.14.13.182","2-heptyl-3-hydroxy-4(1H)-quinolone synthase"],["EC%3A2.3.1.230","2-heptyl-4(1H)-quinolone synthase"],["RHEA%3A50408","1-(2-aminophenyl)decane-1,3-dione = 2-heptyl-4(1H)-quinolone + H2O"],["RHEA%3A50396","(2-aminobenzoyl)acetate + octanoyl-CoA + H(+) = 2-heptyl-4(1H)-quinolone + CO2 + CoA + H2O"],["RHEA%3A37871","2-heptyl-4(1H)-quinolone + NADH + O2 + H(+) = 2-heptyl-3-hydroxy-4(1H)-quinolone + NAD(+) + H2O"]],"b":[["antibacterial/2-heptyl-4-quinolone.html","2-heptyl-4-quinolone"]]},{"id":"CHEBI:90888","l":"aurachin C","na":5,"nb":1,"a":[["EC%3A1.14.13.222","aurachin C monooxygenase/isomerase"],["RHEA%3A49000","aurachin C + NADH + O2 + H(+) = 4-hydroxy-2-methyl-3-oxo-4-[(2E,6E)-farnesyl]-3,4-dihydroquinoline 1-oxide + NAD(+) + H2O"],["RHEA%3A49012","aurachin C + NADH + O2 + H(+) = aurachin C epoxide + NAD(+) + H2O"],["RHEA%3A49004","aurachin C + NADPH + O2 + H(+) = 4-hydroxy-2-methyl-3-oxo-4-[(2E,6E)-farnesyl]-3,4-dihydroquinoline 1-oxide + NADP(+) + H2O"],["RHEA%3A49008","aurachin C + NADPH + O2 + H(+) = aurachin C epoxide + NADP(+) + H2O"]],"b":[["antibacterial/aurachin-c.html","aurachin C"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":5,"nb":1,"a":[["TED%3AAF-A0A4Y6CF56-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y6CF56-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6CNZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Y6CNZ1-F1-model_v4_TED02"],["TED%3AAF-A0A7Y4IIX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4IIX4-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6B7F9-F1-model_v4_TED01","TED novel fold AF-A0A4Y6B7F9-F1-model_v4_TED01"],["TED%3AAF-A0A7Y4IR70-F1-model_v4_TED01","TED novel fold AF-A0A7Y4IR70-F1-model_v4_TED01"]],"b":[["antibacterial/althiomycin.html","althiomycin"]]},{"id":"NCBITaxon:43658","l":"Pseudoalteromonas rubra","na":5,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_Orn_monoox","Metallophore-associated ornithine N5-monooxygenase family"],["TED%3AAF-A0A0F4QZE1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0F4QZE1-F1-model_v4_TED02"],["TED%3AAF-A0A0U3GWJ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0U3GWJ2-F1-model_v4_TED01"],["TED%3AAF-A0A0F4QSG0-F1-model_v4_TED02","TED novel fold AF-A0A0F4QSG0-F1-model_v4_TED02"],["TED%3AAF-A0A0L0EPH9-F1-model_v4_TED03","TED novel fold AF-A0A0L0EPH9-F1-model_v4_TED03"]],"b":[["unspecified/prodigiosin.html","prodigiosin"]]},{"id":"UniProt:P03366","l":"","na":5,"nb":1,"a":[["MCSA%3A1000","HIV-1 reverse transcriptase"],["proteintraitsmech%3ABIOLIP_7N1","7N1-binding site"],["proteintraitsmech%3ABIOLIP_VTN","VTN-binding site"],["proteintraitsmech%3ABIOLIP_ZP4","ZP4-binding site"],["proteintraitsmech%3AMETALPDB_Y_DINUCLEAR","dinuclear yttrium site"]],"b":[["antiviral/nevirapine.html","nevirapine"]]},{"id":"ARO:3000245","l":"RbpA","na":1,"nb":4,"a":[["ARO%3A3000245","RbpA"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3000261","l":"sigma factor conferring resistance to rifampin","na":1,"nb":4,"a":[["ARO%3A3000261","sigma factor conferring resistance to rifampin"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3000300","l":"lsaA","na":1,"nb":4,"a":[["ARO%3A3000300","lsaA"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/pleuromutilin.html","pleuromutilin"],["antibacterial/quinupristin.html","quinupristin"]]},{"id":"ARO:3000363","l":"EreB","na":1,"nb":4,"a":[["ARO%3A3000363","EreB"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/roxithromycin.html","roxithromycin"]]},{"id":"ARO:3000421","l":"norB","na":1,"nb":4,"a":[["ARO%3A3000421","norB"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"],["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/sparfloxacin.html","sparfloxacin"]]},{"id":"ARO:3000444","l":"rphA","na":1,"nb":4,"a":[["ARO%3A3000444","rphA"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3000462","l":"mgtA","na":1,"nb":4,"a":[["ARO%3A3000462","mgtA"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/methymycin.html","methymycin"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3000463","l":"gimA","na":1,"nb":4,"a":[["ARO%3A3000463","gimA"]],"b":[["antibacterial/chalcomycin.html","chalcomycin"],["antibacterial/methymycin.html","methymycin"],["antibacterial/oleandomycin.html","oleandomycin"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3000501","l":"rpoB2","na":1,"nb":4,"a":[["ARO%3A3000501","rpoB2"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3000873","l":"TEM-1","na":1,"nb":4,"a":[["ARO%3A3000873","TEM-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"]]},{"id":"ARO:3001328","l":"Escherichia coli mdfA","na":1,"nb":4,"a":[["ARO%3A3001328","Escherichia coli mdfA"]],"b":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/tetracycline.html","tetracycline"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3001396","l":"OXA-1","na":1,"nb":4,"a":[["ARO%3A3001396","OXA-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/piperacillin.html","piperacillin"]]},{"id":"ARO:3001818","l":"ACC-4","na":1,"nb":4,"a":[["ARO%3A3001818","ACC-4"]],"b":[["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/cefuroxime.html","cefuroxime"]]},{"id":"ARO:3002547","l":"","na":1,"nb":4,"a":[["ARO%3A3002547","AAC(6')-Ib-cr1"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002623","l":"","na":1,"nb":4,"a":[["ARO%3A3002623","ANT(4')-Ia"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002634","l":"","na":1,"nb":4,"a":[["ARO%3A3002634","APH(2')-Ie"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002636","l":"","na":1,"nb":4,"a":[["ARO%3A3002636","APH(2')-IIIa"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002637","l":"","na":1,"nb":4,"a":[["ARO%3A3002637","APH(2')-IVa"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002665","l":"npmA","na":1,"nb":4,"a":[["ARO%3A3002665","npmA"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3002667","l":"rmtD","na":1,"nb":4,"a":[["ARO%3A3002667","rmtD"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002668","l":"rmtG","na":1,"nb":4,"a":[["ARO%3A3002668","rmtG"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002669","l":"","na":1,"nb":4,"a":[["ARO%3A3002669","APH(2')-Ig"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002883","l":"rgt1438","na":1,"nb":4,"a":[["ARO%3A3002883","rgt1438"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3002884","l":"iri","na":1,"nb":4,"a":[["ARO%3A3002884","iri"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3002985","l":"arnA","na":4,"nb":1,"a":[["ARO%3A3002985","arnA"],["ARO%3A3005053","ArnT"],["ARO%3A3003578","PmrF"],["ARO%3A3003577","ugd"]],"b":[["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3003001","l":"CfxA","na":1,"nb":4,"a":[["ARO%3A3003001","CfxA"]],"b":[["antibacterial/cefmetazole.html","cefmetazole"],["antibacterial/cefotetan.html","cefotetan"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/flomoxef.html","flomoxef"]]},{"id":"ARO:3003029","l":"MexVW-OprM","na":1,"nb":4,"a":[["ARO%3A3003029","MexVW-OprM"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/tetracycline.html","tetracycline"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3003198","l":"rmtH","na":1,"nb":4,"a":[["ARO%3A3003198","rmtH"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3003223","l":"Escherichia coli 16S rRNA mutation conferring resistance to edeine","na":1,"nb":4,"a":[["ARO%3A3003223","Escherichia coli 16S rRNA mutation conferring resistance to edeine"]],"b":[["antibacterial/edeine-a.html","edeine A"],["antibacterial/edeine-b.html","edeine B"],["antibacterial/edeine-d.html","edeine D"],["antibacterial/edeine-f.html","edeine F"]]},{"id":"ARO:3003272","l":"daptomycin resistant cls","na":4,"nb":1,"a":[["ARO%3A3003272","daptomycin resistant cls"],["ARO%3A3003760","Enterococcus faecalis cls with mutation conferring resistance to daptomycin"],["ARO%3A3003092","Enterococcus faecium cls conferring resistance to daptomycin"],["ARO%3A3003074","Staphylococcus aureus cls conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003283","l":"Mycobacterium tuberculosis rpoB with mutations conferring resistance to rifampicin","na":1,"nb":4,"a":[["ARO%3A3003283","Mycobacterium tuberculosis rpoB with mutations conferring resistance to rifampicin"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3003284","l":"Mycobacterium leprae rpoB mutations conferring resistance to rifampicin","na":1,"nb":4,"a":[["ARO%3A3003284","Mycobacterium leprae rpoB mutations conferring resistance to rifampicin"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3003285","l":"Staphylococcus aureus rpoB mutants conferring resistance to rifampicin","na":1,"nb":4,"a":[["ARO%3A3003285","Staphylococcus aureus rpoB mutants conferring resistance to rifampicin"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3003288","l":"Escherichia coli rpoB mutants conferring resistance to rifampicin","na":1,"nb":4,"a":[["ARO%3A3003288","Escherichia coli rpoB mutants conferring resistance to rifampicin"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3003395","l":"Mycobacterium tuberculosis rpsL mutations conferring resistance to Streptomycin","na":4,"nb":1,"a":[["ARO%3A3003419","antibiotic-resistant rpsL"],["ARO%3A3003395","Mycobacterium tuberculosis rpsL mutations conferring resistance to Streptomycin"],["ARO%3A3005082","Ribosomal protein mutation conferring resistance to pleuromutilin antibiotics"],["ARO%3A3005081","Thermus thermophilus uL3 mutations conferring resistance to pleuromutilin antibiotics"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003686","l":"Pseudomonas aeruginosa oprD with mutation conferring resistance to imipenem","na":4,"nb":1,"a":[["ARO%3A3005068","ParR"],["ARO%3A3005066","parRS"],["ARO%3A3005067","ParS"],["ARO%3A3003686","Pseudomonas aeruginosa oprD with mutation conferring resistance to imipenem"]],"b":[["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3003746","l":"optrA","na":1,"nb":4,"a":[["ARO%3A3003746","optrA"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"],["antibacterial/linezolid.html","linezolid"],["antibacterial/tedizolid.html","tedizolid"]]},{"id":"ARO:3003905","l":"","na":1,"nb":4,"a":[["ARO%3A3003905","ANT(4')-Ib"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3003921","l":"oqxAB","na":1,"nb":4,"a":[["ARO%3A3003921","oqxAB"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nitrofurantoin.html","nitrofurantoin"],["antibacterial/tigecycline.html","tigecycline"],["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003942","l":"abcA","na":1,"nb":4,"a":[["ARO%3A3003942","abcA"]],"b":[["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/methicillin.html","methicillin"],["antibacterial/moenomycin-a1.html","moenomycin A1"]]},{"id":"ARO:3003965","l":"hp1184","na":1,"nb":4,"a":[["ARO%3A3003965","hp1184"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/metronidazole.html","metronidazole"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003992","l":"rphB","na":1,"nb":4,"a":[["ARO%3A3003992","rphB"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3004030","l":"RosAB","na":1,"nb":4,"a":[["ARO%3A3004030","RosAB"]],"b":[["antibacterial/polymyxin-b1.html","polymyxin B1"],["antibacterial/polymyxin-b2.html","polymyxin B2"],["antibacterial/polymyxin-b3.html","polymyxin B3"],["antibacterial/polymyxin-b4.html","polymyxin B4"]]},{"id":"ARO:3004123","l":"Burkholderia pseudomallei Omp38","na":1,"nb":4,"a":[["ARO%3A3004123","Burkholderia pseudomallei Omp38"]],"b":[["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3004126","l":"Escherichia coli LamB","na":1,"nb":4,"a":[["ARO%3A3004126","Escherichia coli LamB"]],"b":[["antibacterial/balofloxacin.html","Balofloxacin"],["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3004181","l":"Streptococcus pneumoniae 23S rRNA mutation conferring resistance to macrolides and streptogramins antibiotics","na":1,"nb":4,"a":[["ARO%3A3004181","Streptococcus pneumoniae 23S rRNA mutation conferring resistance to macrolides and streptogramins antibiotics"]],"b":[["antibacterial/josamycin.html","josamycin"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"],["antibacterial/tylosin.html","tylosin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3004359","l":"ACI-1","na":1,"nb":4,"a":[["ARO%3A3004359","ACI-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3004562","l":"Clostridioides difficile gyrB conferring resistance to fluoroquinolones","na":1,"nb":4,"a":[["ARO%3A3004562","Clostridioides difficile gyrB conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/gemifloxacin.html","gemifloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3004599","l":"clcD","na":1,"nb":4,"a":[["ARO%3A3004599","clcD"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/florfenicol.html","florfenicol"],["antibacterial/linezolid.html","linezolid"],["antibacterial/tiamulin.html","tiamulin"]]},{"id":"ARO:3004606","l":"erm(40)","na":1,"nb":4,"a":[["ARO%3A3004606","erm(40)"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3004667","l":"Staphylococcus aureus norA","na":1,"nb":4,"a":[["ARO%3A3004667","Staphylococcus aureus norA"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3005059","l":"LptD","na":1,"nb":4,"a":[["ARO%3A3005059","LptD"]],"b":[["antibacterial/imipenem.html","imipenem"],["antibacterial/novobiocin.html","novobiocin"],["antibacterial/polymyxin-b2.html","polymyxin B2"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3005112","l":"","na":1,"nb":4,"a":[["ARO%3A3005112","AAC(6')-Ib-cr3"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005114","l":"","na":1,"nb":4,"a":[["ARO%3A3005114","AAC(6')-Ib-cr4"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005115","l":"","na":1,"nb":4,"a":[["ARO%3A3005115","AAC(6')-Ib-cr5"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005116","l":"","na":1,"nb":4,"a":[["ARO%3A3005116","AAC(6')-Ib-cr6"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005117","l":"","na":1,"nb":4,"a":[["ARO%3A3005117","AAC(6')-Ib-cr7"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005118","l":"","na":1,"nb":4,"a":[["ARO%3A3005118","AAC(6')-Ib-cr8"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005119","l":"","na":1,"nb":4,"a":[["ARO%3A3005119","AAC(6')-Ib-cr9"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005121","l":"lsaD","na":1,"nb":4,"a":[["ARO%3A3005121","lsaD"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3007028","l":"salD","na":1,"nb":4,"a":[["ARO%3A3007028","salD"]],"b":[["antibacterial/lincomycin.html","lincomycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3007206","l":"KBL-1","na":1,"nb":4,"a":[["ARO%3A3007206","KBL-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/piperacillin.html","piperacillin"]]},{"id":"ARO:3007442","l":"SSA","na":1,"nb":4,"a":[["ARO%3A3007442","SSA"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007456","l":"dfrL","na":1,"nb":4,"a":[["ARO%3A3007456","dfrL"]],"b":[["antibacterial/streptomycin.html","streptomycin"],["antibacterial/tetracycline.html","tetracycline"],["antibacterial/tobramycin.html","tobramycin"],["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3007645","l":"Clostridium sporogenes cplR","na":1,"nb":4,"a":[["ARO%3A3007645","Clostridium sporogenes cplR"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/hygromycin-a.html","hygromycin A"],["antibacterial/iboxamycin.html","iboxamycin"],["antibacterial/retapamulin.html","retapamulin"]]},{"id":"ARO:3007650","l":"CDA-1","na":1,"nb":4,"a":[["ARO%3A3007650","CDA-1"]],"b":[["antibacterial/cefaloridine.html","cefaloridine"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3007670","l":"Aspergillus spp. Hmg1 with mutations conferring resistance to triazoles antibiotics","na":1,"nb":4,"a":[["ARO%3A3007670","Aspergillus spp. Hmg1 with mutations conferring resistance to triazoles antibiotics"]],"b":[["antifungal/isavuconazole.html","isavuconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"ARO:3007770","l":"","na":1,"nb":4,"a":[["ARO%3A3007770","aac(6')-Ib-cr10"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3007771","l":"","na":1,"nb":4,"a":[["ARO%3A3007771","aac(6')-Ib-cr11"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"CHEBI:140434","l":"3-[(Z)-2-isocyanovinyl]indole","na":4,"nb":1,"a":[["EC%3A1.14.20.11","3-[(Z)-2-isocyanoethenyl]-1H-indole synthase"],["EC%3A2.5.1.146","3-geranyl-3-[(Z)-2-isocyanoethenyl]indole synthase"],["RHEA%3A56700","(2S)-3-(1H-indol-3-yl)-2-isocyanopropanoate + 2-oxoglutarate + O2 + H(+) = 3-[(Z)-2-isocyanoethenyl]-1H-indole + succinate + 2 CO2 + H2O"],["RHEA%3A17349","3-[(Z)-2-isocyanoethenyl]-1H-indole + (2E)-geranyl diphosphate = 3-geranyl-3-[(Z)-2-isocyanoethenyl]-1H-indole + diphosphate"]],"b":[["antibacterial/3-z-2-isocyanovinyl-indole.html","3-[(Z)-2-isocyanovinyl]indole"]]},{"id":"CHEBI:140662","l":"2,4-diacetylphloroglucinol(1−)","na":4,"nb":1,"a":[["EC%3A2.3.1.272","2-acetylphloroglucinol acetyltransferase"],["EC%3A3.7.1.24","2,4-diacetylphloroglucinol hydrolase"],["RHEA%3A48236","2 2-acetylphloroglucinol = 2,4-diacetylphloroglucinol + 1,3,5-trihydroxybenzene + H(+)"],["RHEA%3A59184","2,4-diacetylphloroglucinol + H2O = 2-acetylphloroglucinol + acetate"]],"b":[["antifungal/2-4-diacetylphloroglucinol-1.html","2,4-diacetylphloroglucinol(1−)"]]},{"id":"CHEBI:16786","l":"vestitone","na":4,"nb":1,"a":[["EC%3A1.1.1.348","(3R)-2'-hydroxyisoflavanone reductase"],["EC%3A1.3.1.45","2'-hydroxyisoflavone reductase"],["RHEA%3A35403","(3R,4R)-7,2'-dihydroxy-4'-methoxyisoflavanol + NADP(+) = (3R)-vestitone + NADPH + H(+)"],["RHEA%3A22560","(3R)-vestitone + NADP(+) = 2'-hydroxyformononetin + NADPH + 2 H(+)"]],"b":[["antibacterial/vestitone.html","vestitone"]]},{"id":"CHEBI:17302","l":"pentadecanal","na":4,"nb":1,"a":[["EC%3A1.11.1.3","fatty-acid peroxidase"],["RHEA%3A68480","(2R)-2-hydroperoxyhexadecanoate + H(+) = pentadecanal + CO2 + H2O"],["RHEA%3A55212","(2R)-hydroxyhexadecanoyl-CoA = pentadecanal + formyl-CoA"],["RHEA%3A23960","hexadecanoate + 2 H2O2 + H(+) = pentadecanal + CO2 + 3 H2O"]],"b":[["unspecified/pentadecanal.html","pentadecanal"]]},{"id":"CHEBI:192702","l":"ladanein","na":4,"nb":1,"a":[["RHEA%3A73435","apigenin 4',7-dimethyl ether + reduced [NADPH--hemoprotein reductase] + O2 = ladanein + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A73247","ladanein + S-adenosyl-L-methionine = salvigenin + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A73111","scutellarein 4'-methyl ether + S-adenosyl-L-methionine = ladanein + S-adenosyl-L-homocysteine"],["RHEA%3A73239","scutellarein 7-methyl ether + S-adenosyl-L-methionine = ladanein + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antiviral/ladanein.html","ladanein"]]},{"id":"CHEBI:24043","l":"","na":4,"nb":1,"a":[["EC%3A1.14.19.76","flavone synthase II"],["EC%3A1.14.20.5","flavone synthase I"],["RHEA%3A10448","a flavanone + 2-oxoglutarate + O2 = a flavone + succinate + CO2 + H2O"],["RHEA%3A57680","a flavanone + reduced [NADPH--hemoprotein reductase] + O2 = a flavone + oxidized [NADPH--hemoprotein reductase] + 2 H2O + H(+)"]],"b":[["antibacterial/flavocillin.html","flavocillin"]]},{"id":"CHEBI:2448","l":"actinorhodin","na":4,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["proteintraitsmech%3ABIOLIP_ZCT","ZCT-binding site"]],"b":[["unspecified/actinorhodin.html","actinorhodin"]]},{"id":"CHEBI:25675","l":"","na":1,"nb":4,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/oligomycin-a.html","oligomycin A"],["antifungal/oligomycin-d.html","oligomycin D"],["unspecified/oligomycin-b.html","oligomycin B"],["unspecified/oligomycin-c.html","oligomycin C"]]},{"id":"CHEBI:26580","l":"","na":1,"nb":4,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifamycin-sv.html","rifamycin SV"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"CHEBI:27659","l":"","na":4,"nb":1,"a":[["EC%3A1.2.1.23","2-oxoaldehyde dehydrogenase (NAD(+))"],["EC%3A1.2.1.49","2-oxoaldehyde dehydrogenase (NADP(+))"],["RHEA%3A22276","2-oxoaldehyde + NAD(+) + H2O = a 2-oxocarboxylate + NADH + 2 H(+)"],["RHEA%3A18129","2-oxoaldehyde + NADP(+) + H2O = a 2-oxocarboxylate + NADPH + 2 H(+)"]],"b":[["antibacterial/4-hydroxy-2-oxobutanal.html","4-hydroxy-2-oxobutanal"]]},{"id":"CHEBI:27856","l":"","na":4,"nb":1,"a":[["EC%3A3.5.1.4","amidase"],["RHEA%3A85603","acetamide = acetonitrile + H2O"],["RHEA%3A45048","acetamide + H2O = acetate + NH4(+)"],["RHEA%3A51648","N(6)-acetyl-L-lysyl-[protein] + O2 + H2O = acetamide + (S)-2-amino-6-oxohexanoyl-[protein] + H2O2"]],"b":[["unspecified/acetylblasticidin-s.html","acetylblasticidin S"]]},{"id":"CHEBI:28327","l":"naringenin 7-O-β-D-glucoside","na":4,"nb":1,"a":[["EC%3A2.4.1.185","flavanone 7-O-beta-glucosyltransferase"],["RHEA%3A69671","(2S)-naringenin 7-O-beta-D-glucoside + H2O = (2S)-naringenin + beta-D-glucose"],["RHEA%3A67356","(2S)-naringenin 7-O-beta-D-glucoside + malonyl-CoA = (2S)-naringenin 7-O-(6-O-malonyl-beta-D-glucoside) + CoA"],["RHEA%3A65152","(2S)-naringenin + UDP-alpha-D-glucose = (2S)-naringenin 7-O-beta-D-glucoside + UDP + H(+)"]],"b":[["antibacterial/naringenin-7-o-%CE%B2-d-glucoside.html","naringenin 7-O-β-D-glucoside"]]},{"id":"CHEBI:28913","l":"(2E)-hexenal","na":4,"nb":1,"a":[["RHEA%3A60988","(E)-hex-2-en-1-ol + NAD(+) = (E)-hex-2-enal + NADH + H(+)"],["RHEA%3A58424","(E)-hex-2-en-1-ol + NADP(+) = (E)-hex-2-enal + NADPH + H(+)"],["RHEA%3A77419","(E)-hex-2-enal + hydrogen cyanide = (2S,3E)-2-hydroxyhept-3-enenitrile"],["RHEA%3A50776","hexanal + NADP(+) = (E)-hex-2-enal + NADPH + H(+)"]],"b":[["antibacterial/2e-hexenal.html","(2E)-hexenal"]]},{"id":"CHEBI:28927","l":"sakuranetin","na":4,"nb":1,"a":[["EC%3A2.1.1.232","naringenin 7-O-methyltransferase"],["RHEA%3A31539","(2S)-naringenin + S-adenosyl-L-methionine = (2S)-sakuranetin + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A73431","(2S)-sakuranetin + reduced [NADPH--hemoprotein reductase] + O2 = (2S)-7-methylcarthamidin + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A73255","(2S)-sakuranetin + S-adenosyl-L-methionine = (2S)-naringenin 4',7-dimethyl ether + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antimycobacterial/sakuranetin.html","sakuranetin"]]},{"id":"CHEBI:31144","l":"8-demethyltetracenomycin C","na":4,"nb":1,"a":[["EC%3A1.14.13.200","tetracenomycin A2 monooxygenase-diooxygenase"],["EC%3A2.4.1.331","8-demethyltetracenomycin C L-rhamnosyltransferase"],["RHEA%3A42848","8-demethyltetracenomycin C + dTDP-beta-L-rhamnose = 8-demethyl-8-alpha-L-rhamnosyl-tetracenomycin C + dTDP + H(+)"],["RHEA%3A76467","tetracenomycin B2 + 2 NADPH + 2 O2 + 2 H(+) = 8-demethyltetracenomycin C + 2 NADP(+) + H2O"]],"b":[["unspecified/8-demethyltetracenomycin-c.html","8-demethyltetracenomycin C"]]},{"id":"CHEBI:33859","l":"","na":1,"nb":4,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/oxolinic-acid.html","oxolinic acid"],["antifungal/1-2-3-benzothiadiazole-7-carboxylic-acid.html","1,2,3-benzothiadiazole-7-carboxylic acid"],["antifungal/phenazine-1-carboxylic-acid.html","phenazine-1-carboxylic acid"],["antifungal/piperonylic-acid.html","piperonylic acid"]]},{"id":"CHEBI:34848","l":"mevastatin","na":4,"nb":1,"a":[["RHEA%3A51668","mevastatin + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = pravastatin lactone + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"],["RHEA%3A62744","mevastatin + H2O = compactin diol lactone + (S)-2-methylbutanoate + H(+)"],["RHEA%3A63044","mevastatin + H2O = mevinic carboxylate + H(+)"],["proteintraitsmech%3ABIOLIP_2UO","2UO-binding site"]],"b":[["antifungal/mevastatin.html","mevastatin"]]},{"id":"CHEBI:3508","l":"ceftazidime","na":4,"nb":1,"a":[["TCDB%3A8.A.213","The Bon Domain-containing Protein (Bon DP) Family"],["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["TCDB%3A2.C.1","The TonB-ExbB-ExbD/TolA-TolQ-TolR Outer Membrane Receptor Energizers and Stabilizers (TonB/TolA) Family"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"CHEBI:45744","l":"N-acetyl-β-neuraminic acid","na":4,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.21","The Solute:Sodium Symporter (SSS) Family"],["TCDB%3A2.A.56","The Tripartite ATP-independent Periplasmic Transporter (TRAP-T) Family"],["proteintraitsmech%3ABIOLIP_SLB","SLB-binding site"]],"b":[["antiviral/n-acetyl-%CE%B2-neuraminic-acid.html","N-acetyl-β-neuraminic acid"]]},{"id":"CHEBI:46081","l":"fluconazole","na":4,"nb":1,"a":[["RHEA%3A61916","fluconazole(in) + ATP + H2O = fluconazole(out) + ADP + phosphate + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_TPF","TPF-binding site"]],"b":[["antifungal/fluconazole.html","fluconazole"]]},{"id":"CHEBI:46634","l":"","na":1,"nb":4,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/1-carbapenem-3-carboxylic-acid.html","1-carbapenem-3-carboxylic acid"],["antibacterial/carbapenem-mm22383.html","carbapenem MM22383"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"CHEBI:50477","l":"","na":1,"nb":4,"a":[["RHEA%3A47348","a butanoate ester + H2O = an aliphatic alcohol + butanoate + H(+)"]],"b":[["antibacterial/caminoside-a.html","caminoside A"],["antimycobacterial/caseargrewiin-b.html","caseargrewiin B"],["antiviral/clathsterol-disulfonic-acid.html","clathsterol disulfonic acid"],["antiviral/clathsterol.html","clathsterol"]]},{"id":"CHEBI:51460","l":"albaflavenone","na":4,"nb":1,"a":[["EC%3A1.14.15.39","epi-isozizaene 5-monooxygenase"],["RHEA%3A25988","(5R)-albaflavenol + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = albaflavenone + 2 oxidized [2Fe-2S]-[ferredoxin] + 2 H2O"],["RHEA%3A25980","(5S)-albaflavenol + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = albaflavenone + 2 oxidized [2Fe-2S]-[ferredoxin] + 2 H2O"],["RHEA%3A32439","(+)-epi-isozizaene + 4 reduced [2Fe-2S]-[ferredoxin] + 2 O2 + 4 H(+) = albaflavenone + 4 oxidized [2Fe-2S]-[ferredoxin] + 3 H2O"]],"b":[["unspecified/albaflavenone.html","albaflavenone"]]},{"id":"CHEBI:5169","l":"fraxetin","na":4,"nb":1,"a":[["EC%3A1.14.11.60","scopoletin 8-hydroxylase"],["EC%3A1.14.14.164","fraxetin 5-hydroxylase"],["RHEA%3A57844","fraxetin + reduced [NADPH--hemoprotein reductase] + O2 = sideretin (reduced form) + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A57848","scopoletin + 2-oxoglutarate + O2 = fraxetin + succinate + CO2"]],"b":[["antibacterial/fraxetin.html","fraxetin"]]},{"id":"CHEBI:55429","l":"cephamycin","na":1,"nb":4,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/cefminox.html","cefminox"],["antibacterial/cefotetan.html","cefotetan"],["antibacterial/cefoxitin.html","cefoxitin"],["unspecified/cephamycin-c.html","cephamycin C"]]},{"id":"CHEBI:66331","l":"xanthohumol","na":4,"nb":1,"a":[["EC%3A2.1.1.338","desmethylxanthohumol 6'-O-methyltransferase"],["EC%3A2.1.1.339","xanthohumol 4-O-methyltransferase"],["RHEA%3A51696","desmethylxanthohumol + S-adenosyl-L-methionine = xanthohumol + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A51704","xanthohumol + S-adenosyl-L-methionine = 4-O-methylxanthohumol + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antiviral/xanthohumol.html","xanthohumol"]]},{"id":"CHEBI:67246","l":"(+)-lariciresinol","na":4,"nb":1,"a":[["EC%3A1.23.1.1","(+)-pinoresinol reductase"],["EC%3A1.23.1.2","(+)-lariciresinol reductase"],["RHEA%3A34419","(+)-lariciresinol + NADP(+) = (+)-pinoresinol + NADPH + H(+)"],["RHEA%3A34423","(-)-secoisolariciresinol + NADP(+) = (+)-lariciresinol + NADPH + H(+)"]],"b":[["antifungal/lariciresinol.html","(+)-lariciresinol"]]},{"id":"CHEBI:69023","l":"preaustinoid A","na":4,"nb":1,"a":[["RHEA%3A65144","berkeleyone A + 2-oxoglutarate + O2 = preaustinoid A + succinate + CO2 + H2O"],["RHEA%3A65192","preaustinoid A + 2 2-oxoglutarate + 2 O2 = berkeleytrione + 2 succinate + 2 CO2 + H2O"],["RHEA%3A65168","preaustinoid A + AH2 + O2 = preaustinoid A1 + A + H2O"],["RHEA%3A65180","protoaustinoid B + AH2 + O2 = preaustinoid A + A + H2O"]],"b":[["antibacterial/preaustinoid-a.html","preaustinoid A"]]},{"id":"CHEBI:71311","l":"pyrazine-2-carboxylic acid","na":4,"nb":1,"a":[["ARO%3A3004267","antibiotic resistant pncA"],["ARO%3A3004721","Mycobacterium tuberculosis rpsA mutations conferring resistance to pyrazinamide"],["ARO%3A3004722","pyrazinamide resistant rpsA"],["proteintraitsmech%3ABIOLIP_VGL","VGL-binding site"]],"b":[["antimycobacterial/pyrazine-2-carboxylic-acid.html","pyrazine-2-carboxylic acid"]]},{"id":"CHEBI:74023","l":"dioscin","na":4,"nb":1,"a":[["EC%3A3.2.1.189","dioscin glycosidase (diosgenin-forming)"],["EC%3A3.2.1.190","dioscin glycosidase (3-O-beta-D-Glc-diosgenin-forming)"],["RHEA%3A38939","dioscin + 2 H2O = diosgenin 3-O-beta-D-glucoside + 2 L-rhamnopyranose"],["RHEA%3A36827","dioscin + 3 H2O = diosgenin + 2 L-rhamnopyranose + D-glucose"]],"b":[["antifungal/dioscin.html","dioscin"]]},{"id":"CHEBI:77980","l":"aclacinomycin A zwitterion","na":4,"nb":1,"a":[["EC%3A1.1.3.45","aclacinomycin-N oxidase"],["EC%3A1.3.3.14","aclacinomycin-A oxidase"],["RHEA%3A37791","aclacinomycin A + O2 = aclacinomycin Y + H2O2"],["RHEA%3A37423","aclacinomycin N + O2 = aclacinomycin A + H2O2"]],"b":[["unspecified/aclacinomycin-a-zwitterion.html","aclacinomycin A zwitterion"]]},{"id":"CHEBI:78283","l":"8-demethyl-8-(α-L-rhamnosyl)tetracenomycin C","na":4,"nb":1,"a":[["EC%3A2.1.1.305","8-demethyl-8-alpha-L-rhamnosyl tetracenomycin-C 2'-O-methyltransferase"],["EC%3A2.4.1.331","8-demethyltetracenomycin C L-rhamnosyltransferase"],["RHEA%3A41540","8-demethyl-8-alpha-L-rhamnosyl-tetracenomycin C + S-adenosyl-L-methionine = 8-demethyl-8-(2-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A42848","8-demethyltetracenomycin C + dTDP-beta-L-rhamnose = 8-demethyl-8-alpha-L-rhamnosyl-tetracenomycin C + dTDP + H(+)"]],"b":[["unspecified/8-demethyl-8-%CE%B1-l-rhamnosyl-tetracenomycin-c.html","8-demethyl-8-(α-L-rhamnosyl)tetracenomycin C"]]},{"id":"CHEBI:78285","l":"8-demethyl-8-(2-O-methyl-α-L-rhamnosyl)tetracenomycin C","na":4,"nb":1,"a":[["EC%3A2.1.1.305","8-demethyl-8-alpha-L-rhamnosyl tetracenomycin-C 2'-O-methyltransferase"],["EC%3A2.1.1.306","8-demethyl-8-(2-methoxy-alpha-L-rhamnosyl)-tetracenomycin-C 3'-O- methyltransferase"],["RHEA%3A41544","8-demethyl-8-(2-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-methionine = 8-demethyl-8-(2,3-di-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A41540","8-demethyl-8-alpha-L-rhamnosyl-tetracenomycin C + S-adenosyl-L-methionine = 8-demethyl-8-(2-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-homocysteine + H(+)"]],"b":[["unspecified/8-demethyl-8-2-o-methyl-%CE%B1-l-rhamnosyl-tetracenomycin-c.html","8-demethyl-8-(2-O-methyl-α-L-rhamnosyl)tetracenomycin C"]]},{"id":"CHEBI:78286","l":"8-demethyl-8-(2,3-O-dimethyl-α-L-rhamnosyl)tetracenomycin C","na":4,"nb":1,"a":[["EC%3A2.1.1.306","8-demethyl-8-(2-methoxy-alpha-L-rhamnosyl)-tetracenomycin-C 3'-O- methyltransferase"],["EC%3A2.1.1.307","8-demethyl-8-(2,3-dimethoxy-alpha-L-rhamnosyl)-tetracenomycin-C 4'-O- methyltransferase"],["RHEA%3A41548","8-demethyl-8-(2,3-di-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-methionine = 8-demethyl-8-(2,3,4-tri-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A41544","8-demethyl-8-(2-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-methionine = 8-demethyl-8-(2,3-di-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-homocysteine + H(+)"]],"b":[["unspecified/8-demethyl-8-2-3-o-dimethyl-%CE%B1-l-rhamnosyl-tetracenomycin-c.html","8-demethyl-8-(2,3-O-dimethyl-α-L-rhamnosyl)tetracenomycin C"]]},{"id":"CHEBI:84310","l":"anticapsin zwitterion","na":4,"nb":1,"a":[["EC%3A1.1.1.385","dihydroanticapsin 7-dehydrogenase"],["EC%3A6.3.2.49","L-alanine--L-anticapsin ligase"],["RHEA%3A44332","L-anticapsin + L-alanine + ATP = bacilysin + ADP + phosphate + H(+)"],["RHEA%3A44628","L-dihydroanticapsin + NAD(+) = L-anticapsin + NADH + H(+)"]],"b":[["unspecified/anticapsin-zwitterion.html","anticapsin zwitterion"]]},{"id":"CHEBI:90869","l":"validamycin A(1+)","na":4,"nb":1,"a":[["EC%3A1.14.11.52","validamycin A dioxygenase"],["EC%3A2.4.1.338","validoxylamine A glucosyltransferase"],["RHEA%3A48752","validamycin A + 2-oxoglutarate + O2 = validamycin B + succinate + CO2 + H(+)"],["RHEA%3A49388","validoxylamine A + UDP-alpha-D-glucose = validamycin A + UDP + H(+)"]],"b":[["antifungal/validamycin-a-1.html","validamycin A(1+)"]]},{"id":"CHEBI:9555","l":"tioguanine","na":4,"nb":1,"a":[["EC%3A2.1.1.67","thiopurine S-methyltransferase"],["RHEA%3A56580","6-thioguanine + S-adenosyl-L-methionine = 6-methylthioguanine + S-adenosyl-L-homocysteine + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.40","The Nucleobase/Ascorbate Transporter (NAT) or Nucleobase:Cation Symporter-2 (NCS2) Family"]],"b":[["antiviral/tioguanine.html","tioguanine"]]},{"id":"NCBITaxon:11676","l":"Human immunodeficiency virus 1","na":1,"nb":4,"a":[["IDPO%3A0000039","acetylation display site"]],"b":[["antiviral/delavirdine.html","delavirdine"],["antiviral/emivirine.html","emivirine"],["antiviral/etravirine.html","etravirine"],["antiviral/nevirapine.html","nevirapine"]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":4,"nb":1,"a":[["Pfam%3APF16861","Carbamoyltransferase C-terminus"],["Pfam%3APF02543","Carbamoyltransferase N-terminus"],["Pfam%3APF01960","ArgJ family"],["Pfam%3APF07467","Beta-lactamase inhibitor (BLIP)"]],"b":[["antibacterial/clavulanic-acid.html","clavulanic acid"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":4,"nb":1,"a":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"],["TED%3AAF-A0A085UKV7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085UKV7-F1-model_v4_TED01"],["TED%3AAF-A0A4R6IU28-F1-model_v4_TED02","TED novel fold AF-A0A4R6IU28-F1-model_v4_TED02"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"NCBITaxon:40559","l":"Botrytis cinerea","na":1,"nb":4,"a":[["Pfam%3APF08883","Dopa 4,5-dioxygenase family"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/iprodione.html","iprodione"],["antifungal/pyrisoxazole.html","pyrisoxazole"]]},{"id":"NCBITaxon:405948","l":"","na":1,"nb":4,"a":[["Pfam%3APF21036","Erythromycin biosynthesis protein CIII-like, N-terminal domain"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["unspecified/erythromycin-b.html","erythromycin B"],["unspecified/erythromycin-c.html","erythromycin C"],["unspecified/erythromycin-d.html","erythromycin D"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":4,"nb":1,"a":[["Pfam%3APF11720","Peptidase inhibitor I78 family"],["Pfam%3APF12296","Hydrophobic surface binding protein A"],["TED%3AAF-A0A3M7JGA1-F1-model_v4_TED02","TED novel fold AF-A0A3M7JGA1-F1-model_v4_TED02"],["TED%3AAF-A0A7G5JNS3-F1-model_v4_TED03","TED novel fold AF-A0A7G5JNS3-F1-model_v4_TED03"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:5076","l":"Penicillium chrysogenum","na":4,"nb":1,"a":[["Pfam%3APF03417","Acyl-coenzyme A:6-aminopenicillanic acid acyl-transferase"],["Pfam%3APF11402","Antifungal protein"],["PROSITE%3APS00185","Isopenicillin N synthase signature 1"],["PROSITE%3APS00186","Isopenicillin N synthase signature 2"]],"b":[["unspecified/isopenicillin-n.html","isopenicillin N"]]},{"id":"NCBITaxon:5270","l":"","na":4,"nb":1,"a":[["Pfam%3APF17445","Mating factor A1"],["Pfam%3APF24563","Mug60/KHD4 KH type I domain"],["Pfam%3APF01185","Fungal hydrophobin"],["Pfam%3APF07460","NUMOD3 motif"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"UniProt:P38637","l":"","na":4,"nb":1,"a":[["GO%3A0031144","proteasome localization"],["Pfam%3APF08559","Cut8, nuclear proteasome tether protein"],["InterPro%3AIPR038422","Cut8/Sts1 superfamily"],["CATH%3A1.20.58.1590","Tethering factor for nuclear proteasome Cut8/Sts1"]],"b":[["antifungal/cycloheximide.html","cycloheximide"]]},{"id":"ARO:3000235","l":"ethambutol resistant embB","na":3,"nb":1,"a":[["ARO%3A3000235","ethambutol resistant embB"],["ARO%3A3003326","Mycobacterium tuberculosis embB mutant conferring resistance to ethambutol"],["ARO%3A3003325","Mycobacterium tuberculosis variant bovis embB with mutation conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3000361","l":"EreA","na":1,"nb":3,"a":[["ARO%3A3000361","EreA"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/roxithromycin.html","roxithromycin"]]},{"id":"ARO:3000373","l":"EmrKY-TolC","na":3,"nb":1,"a":[["ARO%3A3000373","EmrKY-TolC"],["ARO%3A3000832","evgA"],["ARO%3A3000515","evgSA"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000467","l":"NDM-5","na":1,"nb":3,"a":[["ARO%3A3000467","NDM-5"]],"b":[["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ertapenem.html","ertapenem"]]},{"id":"ARO:3000589","l":"NDM-1","na":1,"nb":3,"a":[["ARO%3A3000589","NDM-1"]],"b":[["antibacterial/ertapenem.html","ertapenem"],["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3000598","l":"Erm(31)","na":1,"nb":3,"a":[["ARO%3A3000598","Erm(31)"]],"b":[["antibacterial/methymycin.html","methymycin"],["antibacterial/narbomycin.html","narbomycin"],["antibacterial/pikromycin.html","pikromycin"]]},{"id":"ARO:3000843","l":"MUS-1","na":1,"nb":3,"a":[["ARO%3A3000843","MUS-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/piperacillin.html","piperacillin"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3000844","l":"TUS-1","na":1,"nb":3,"a":[["ARO%3A3000844","TUS-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/piperacillin.html","piperacillin"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3000900","l":"TEM-30","na":1,"nb":3,"a":[["ARO%3A3000900","TEM-30"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"]]},{"id":"ARO:3000930","l":"TEM-61","na":1,"nb":3,"a":[["ARO%3A3000930","TEM-61"]],"b":[["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001071","l":"SHV-12","na":1,"nb":3,"a":[["ARO%3A3001071","SHV-12"]],"b":[["antibacterial/cefalotin.html","cefalotin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3001205","l":"BRP(MBL)","na":1,"nb":3,"a":[["ARO%3A3001205","BRP(MBL)"]],"b":[["antibacterial/bleomycin-a2.html","bleomycin A2"],["antibacterial/bleomycin-b2.html","bleomycin B2"],["antibacterial/bleomycinic-acid.html","bleomycinic acid"]]},{"id":"ARO:3001265","l":"Erm(30)","na":1,"nb":3,"a":[["ARO%3A3001265","Erm(30)"]],"b":[["antibacterial/methymycin.html","methymycin"],["antibacterial/narbomycin.html","narbomycin"],["antibacterial/pikromycin.html","pikromycin"]]},{"id":"ARO:3001302","l":"chrB","na":1,"nb":3,"a":[["ARO%3A3001302","chrB"]],"b":[["antibacterial/chalcomycin.html","chalcomycin"],["antibacterial/mycinamicin-iv.html","mycinamicin IV"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3001303","l":"ErmO-srmA","na":1,"nb":3,"a":[["ARO%3A3001303","ErmO-srmA"]],"b":[["antibacterial/carbomycin.html","carbomycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3001397","l":"OXA-2","na":1,"nb":3,"a":[["ARO%3A3001397","OXA-2"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002528","l":"AAC(3)-Ia","na":1,"nb":3,"a":[["ARO%3A3002528","AAC(3)-Ia"]],"b":[["antibacterial/astromicin.html","astromicin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002529","l":"AAC(3)-Id","na":1,"nb":3,"a":[["ARO%3A3002529","AAC(3)-Id"]],"b":[["antibacterial/astromicin.html","astromicin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002530","l":"AAC(3)-Ib","na":1,"nb":3,"a":[["ARO%3A3002530","AAC(3)-Ib"]],"b":[["antibacterial/astromicin.html","astromicin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002531","l":"AAC(3)-Ic","na":1,"nb":3,"a":[["ARO%3A3002531","AAC(3)-Ic"]],"b":[["antibacterial/astromicin.html","astromicin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002540","l":"AAC(3)-VIa","na":1,"nb":3,"a":[["ARO%3A3002540","AAC(3)-VIa"]],"b":[["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002546","l":"","na":1,"nb":3,"a":[["ARO%3A3002546","AAC(6')-Ib"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002576","l":"","na":1,"nb":3,"a":[["ARO%3A3002576","AAC(6')-Ib3"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002577","l":"","na":1,"nb":3,"a":[["ARO%3A3002577","AAC(6')-Ib4"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002578","l":"","na":1,"nb":3,"a":[["ARO%3A3002578","AAC(6')-Ib7"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002579","l":"","na":1,"nb":3,"a":[["ARO%3A3002579","AAC(6')-Ib8"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002580","l":"","na":1,"nb":3,"a":[["ARO%3A3002580","AAC(6')-Ib9"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002581","l":"","na":1,"nb":3,"a":[["ARO%3A3002581","AAC(6')-Ib10"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002582","l":"","na":1,"nb":3,"a":[["ARO%3A3002582","AAC(6')-Ib11"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002586","l":"","na":1,"nb":3,"a":[["ARO%3A3002586","AAC(6')-32"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002591","l":"","na":1,"nb":3,"a":[["ARO%3A3002591","AAC(6')-Ib-Suzhou"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002592","l":"","na":1,"nb":3,"a":[["ARO%3A3002592","AAC(6')-Ib-Hangzhou"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002593","l":"","na":1,"nb":3,"a":[["ARO%3A3002593","AAC(6')-Ib-SK"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002624","l":"","na":1,"nb":3,"a":[["ARO%3A3002624","ANT(4')-IIa"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002625","l":"","na":1,"nb":3,"a":[["ARO%3A3002625","ANT(4')-IIb"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002649","l":"","na":1,"nb":3,"a":[["ARO%3A3002649","APH(3')-Va"]],"b":[["antibacterial/framycetin.html","framycetin"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3002650","l":"","na":1,"nb":3,"a":[["ARO%3A3002650","APH(3')-Vb"]],"b":[["antibacterial/framycetin.html","framycetin"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3002651","l":"","na":1,"nb":3,"a":[["ARO%3A3002651","APH(3')-Vc"]],"b":[["antibacterial/framycetin.html","framycetin"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3002666","l":"rmtF","na":1,"nb":3,"a":[["ARO%3A3002666","rmtF"]],"b":[["antibacterial/astromicin.html","astromicin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3002671","l":"Limosilactobacillus reuteri cat-TC","na":1,"nb":3,"a":[["ARO%3A3002671","Limosilactobacillus reuteri cat-TC"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002672","l":"Bacillus pumilus cat86","na":1,"nb":3,"a":[["ARO%3A3002672","Bacillus pumilus cat86"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002674","l":"Clostridium butyricum catB","na":1,"nb":3,"a":[["ARO%3A3002674","Clostridium butyricum catB"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002675","l":"catB2","na":1,"nb":3,"a":[["ARO%3A3002675","catB2"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002676","l":"catB3","na":1,"nb":3,"a":[["ARO%3A3002676","catB3"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002678","l":"Pseudomonas aeruginosa catB6","na":1,"nb":3,"a":[["ARO%3A3002678","Pseudomonas aeruginosa catB6"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002679","l":"Pseudomonas aeruginosa catB7","na":1,"nb":3,"a":[["ARO%3A3002679","Pseudomonas aeruginosa catB7"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002680","l":"catB8","na":1,"nb":3,"a":[["ARO%3A3002680","catB8"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002681","l":"catB9","na":1,"nb":3,"a":[["ARO%3A3002681","catB9"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002682","l":"catD","na":1,"nb":3,"a":[["ARO%3A3002682","catD"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002683","l":"catA1","na":1,"nb":3,"a":[["ARO%3A3002683","catA1"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002684","l":"catII","na":1,"nb":3,"a":[["ARO%3A3002684","catII"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002685","l":"catIII","na":1,"nb":3,"a":[["ARO%3A3002685","catIII"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002686","l":"catP","na":1,"nb":3,"a":[["ARO%3A3002686","catP"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002687","l":"catQ","na":1,"nb":3,"a":[["ARO%3A3002687","catQ"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002688","l":"catS","na":1,"nb":3,"a":[["ARO%3A3002688","catS"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002689","l":"Plasmid-encoded cat (pp-cat)","na":1,"nb":3,"a":[["ARO%3A3002689","Plasmid-encoded cat (pp-cat)"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002825","l":"ErmY","na":1,"nb":3,"a":[["ARO%3A3002825","ErmY"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/oleandomycin.html","oleandomycin"]]},{"id":"ARO:3002827","l":"tlrC","na":1,"nb":3,"a":[["ARO%3A3002827","tlrC"]],"b":[["antibacterial/lincomycin.html","lincomycin"],["antibacterial/mycinamicin-iv.html","mycinamicin IV"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3002830","l":"vgaALC","na":1,"nb":3,"a":[["ARO%3A3002830","vgaALC"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002833","l":"vgaE","na":1,"nb":3,"a":[["ARO%3A3002833","vgaE"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002881","l":"lmrC","na":1,"nb":3,"a":[["ARO%3A3002881","lmrC"]],"b":[["antibacterial/celesticetin.html","celesticetin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002987","l":"bcrA","na":1,"nb":3,"a":[["ARO%3A3002987","bcrA"]],"b":[["antibacterial/bacitracin-a.html","bacitracin A"],["antibacterial/bacitracin-b.html","bacitracin B"],["antibacterial/bacitracin-f.html","bacitracin F"]]},{"id":"ARO:3002988","l":"bcrB","na":1,"nb":3,"a":[["ARO%3A3002988","bcrB"]],"b":[["antibacterial/bacitracin-a.html","bacitracin A"],["antibacterial/bacitracin-b.html","bacitracin B"],["antibacterial/bacitracin-f.html","bacitracin F"]]},{"id":"ARO:3003007","l":"bmr","na":1,"nb":3,"a":[["ARO%3A3003007","bmr"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/puromycin.html","puromycin"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3003062","l":"ykkCD","na":1,"nb":3,"a":[["ARO%3A3003062","ykkCD"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/streptomycin.html","streptomycin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003072","l":"mphL","na":1,"nb":3,"a":[["ARO%3A3003072","mphL"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003080","l":"daptomycin resistant pgsA","na":3,"nb":1,"a":[["ARO%3A3003788","Bacillus subtilis pgsA with mutation conferring resistance to daptomycin"],["ARO%3A3003080","daptomycin resistant pgsA"],["ARO%3A3003323","Staphylococcus aureus pgsA mutations conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003110","l":"catB10","na":1,"nb":3,"a":[["ARO%3A3003110","catB10"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3003112","l":"lsaC","na":1,"nb":3,"a":[["ARO%3A3003112","lsaC"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"ARO:3003205","l":"Erm(43)","na":1,"nb":3,"a":[["ARO%3A3003205","Erm(43)"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"]]},{"id":"ARO:3003301","l":"Staphylococcus aureus gyrB conferring resistance to aminocoumarin","na":1,"nb":3,"a":[["ARO%3A3003301","Staphylococcus aureus gyrB conferring resistance to aminocoumarin"]],"b":[["antibacterial/clorobiocin.html","clorobiocin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3003302","l":"Bartonella bacilliformis gyrB conferring resistance to aminocoumarin","na":1,"nb":3,"a":[["ARO%3A3003302","Bartonella bacilliformis gyrB conferring resistance to aminocoumarin"]],"b":[["antibacterial/clorobiocin.html","clorobiocin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3003303","l":"Escherichia coli gyrB conferring resistance to aminocoumarin","na":1,"nb":3,"a":[["ARO%3A3003303","Escherichia coli gyrB conferring resistance to aminocoumarin"]],"b":[["antibacterial/clorobiocin.html","clorobiocin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3003314","l":"Staphylococcus aureus parE conferring resistance to aminocoumarin","na":1,"nb":3,"a":[["ARO%3A3003314","Staphylococcus aureus parE conferring resistance to aminocoumarin"]],"b":[["antibacterial/clorobiocin.html","clorobiocin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3003318","l":"Streptomyces rishiriensis parY mutant conferring resistance to aminocoumarin","na":1,"nb":3,"a":[["ARO%3A3003318","Streptomyces rishiriensis parY mutant conferring resistance to aminocoumarin"]],"b":[["antibacterial/clorobiocin.html","clorobiocin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3003381","l":"Escherichia coli soxR with mutation conferring antibiotic resistance","na":1,"nb":3,"a":[["ARO%3A3003381","Escherichia coli soxR with mutation conferring antibiotic resistance"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3003385","l":"Klebsiella aerogenes Omp36","na":1,"nb":3,"a":[["ARO%3A3003385","Klebsiella aerogenes Omp36"]],"b":[["antibacterial/cefepime.html","cefepime"],["antibacterial/cefpirome.html","cefpirome"],["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3003394","l":"Mycobacterium tuberculosis pncA mutations conferring resistance to pyrazinamide","na":3,"nb":1,"a":[["ARO%3A3004267","antibiotic resistant pncA"],["ARO%3A3003394","Mycobacterium tuberculosis pncA mutations conferring resistance to pyrazinamide"],["ARO%3A3003418","Pyrazinamide resistant pncA"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3003511","l":"Escherichia coli soxS with mutation conferring antibiotic resistance","na":1,"nb":3,"a":[["ARO%3A3003511","Escherichia coli soxS with mutation conferring antibiotic resistance"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enrofloxacin.html","enrofloxacin"]]},{"id":"ARO:3003589","l":"NmcA","na":1,"nb":3,"a":[["ARO%3A3003589","NmcA"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"ARO:3003702","l":"Pseudomonas aeruginosa gyrA and parC conferring resistance to fluoroquinolones","na":1,"nb":3,"a":[["ARO%3A3003702","Pseudomonas aeruginosa gyrA and parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/ofloxacin.html","ofloxacin"],["antibacterial/pefloxacin.html","pefloxacin"]]},{"id":"ARO:3003742","l":"mphG","na":1,"nb":3,"a":[["ARO%3A3003742","mphG"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003807","l":"Escherichia coli AcrAB-TolC with AcrR mutation conferring resistance to ciprofloxacin, tetracycline, and ceftazidime","na":1,"nb":3,"a":[["ARO%3A3003807","Escherichia coli AcrAB-TolC with AcrR mutation conferring resistance to ciprofloxacin, tetracycline, and ceftazidime"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003839","l":"Mrx","na":1,"nb":3,"a":[["ARO%3A3003839","Mrx"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3003842","l":"MUS-2","na":1,"nb":3,"a":[["ARO%3A3003842","MUS-2"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/piperacillin.html","piperacillin"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3003931","l":"Capnocytophaga gingivalis gyrA conferring resistance to fluoroquinolones","na":1,"nb":3,"a":[["ARO%3A3003931","Capnocytophaga gingivalis gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3003947","l":"EfrAB","na":1,"nb":3,"a":[["ARO%3A3003947","EfrAB"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3003960","l":"farAB","na":1,"nb":3,"a":[["ARO%3A3003960","farAB"]],"b":[["antibacterial/linoleic-acid.html","linoleic acid"],["antibacterial/oleic-acid.html","oleic acid"],["antibacterial/palmitic-acid.html","palmitic acid"]]},{"id":"ARO:3003964","l":"hp1181","na":1,"nb":3,"a":[["ARO%3A3003964","hp1181"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/metronidazole.html","metronidazole"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003983","l":"CatU","na":1,"nb":3,"a":[["ARO%3A3003983","CatU"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3003991","l":"mphI","na":1,"nb":3,"a":[["ARO%3A3003991","mphI"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/telithromycin.html","telithromycin"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3004066","l":"MexEF-OprN with MexT mutation conferring resistance to chloramphenicol, ciprofloxacin, and trimethoprim","na":1,"nb":3,"a":[["ARO%3A3004066","MexEF-OprN with MexT mutation conferring resistance to chloramphenicol, ciprofloxacin, and trimethoprim"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004068","l":"MexEF-OprN with MexS mutations conferring resistance to chloramphenicol, ciprofloxacin, and trimethoprim","na":1,"nb":3,"a":[["ARO%3A3004068","MexEF-OprN with MexS mutations conferring resistance to chloramphenicol, ciprofloxacin, and trimethoprim"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004077","l":"PmpM","na":1,"nb":3,"a":[["ARO%3A3004077","PmpM"]],"b":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"],["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3004094","l":"Erm(48)","na":1,"nb":3,"a":[["ARO%3A3004094","Erm(48)"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"]]},{"id":"ARO:3004098","l":"LpeAB","na":1,"nb":3,"a":[["ARO%3A3004098","LpeAB"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3004102","l":"kamB","na":1,"nb":3,"a":[["ARO%3A3004102","kamB"]],"b":[["antibacterial/apramycin.html","apramycin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004103","l":"QepA2","na":1,"nb":3,"a":[["ARO%3A3004103","QepA2"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3004108","l":"Enterobacter cloacae rob","na":1,"nb":3,"a":[["ARO%3A3004108","Enterobacter cloacae rob"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/telithromycin.html","telithromycin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004127","l":"Escherichia coli mipA","na":1,"nb":3,"a":[["ARO%3A3004127","Escherichia coli mipA"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/nalidixic-acid.html","nalidixic acid"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004174","l":"Chlamydia trachomatis 23S rRNA with mutation conferring resistance to macrolide antibiotics","na":1,"nb":3,"a":[["ARO%3A3004174","Chlamydia trachomatis 23S rRNA with mutation conferring resistance to macrolide antibiotics"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/josamycin.html","josamycin"]]},{"id":"ARO:3004378","l":"QepA3","na":1,"nb":3,"a":[["ARO%3A3004378","QepA3"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3004379","l":"QepA4","na":1,"nb":3,"a":[["ARO%3A3004379","QepA4"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3004441","l":"tet(59)","na":1,"nb":3,"a":[["ARO%3A3004441","tet(59)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004442","l":"tet(W/N/W)","na":1,"nb":3,"a":[["ARO%3A3004442","tet(W/N/W)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004544","l":"mphJ","na":1,"nb":3,"a":[["ARO%3A3004544","mphJ"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/telithromycin.html","telithromycin"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3004576","l":"tet(61)","na":1,"nb":3,"a":[["ARO%3A3004576","tet(61)"]],"b":[["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004589","l":"tet(53)","na":1,"nb":3,"a":[["ARO%3A3004589","tet(53)"]],"b":[["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004591","l":"tet(55)","na":1,"nb":3,"a":[["ARO%3A3004591","tet(55)"]],"b":[["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004592","l":"erm(32)","na":1,"nb":3,"a":[["ARO%3A3004592","erm(32)"]],"b":[["antibacterial/methymycin.html","methymycin"],["antibacterial/narbomycin.html","narbomycin"],["antibacterial/pikromycin.html","pikromycin"]]},{"id":"ARO:3004595","l":"erm(45)","na":1,"nb":3,"a":[["ARO%3A3004595","erm(45)"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"]]},{"id":"ARO:3004596","l":"erm(46)","na":1,"nb":3,"a":[["ARO%3A3004596","erm(46)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004639","l":"Corynebacterium striatum tetA","na":1,"nb":3,"a":[["ARO%3A3004639","Corynebacterium striatum tetA"]],"b":[["antibacterial/oxacillin.html","oxacillin"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004649","l":"cfr(B)","na":1,"nb":3,"a":[["ARO%3A3004649","cfr(B)"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/linezolid.html","linezolid"]]},{"id":"ARO:3004652","l":"Erm(O)-lrm","na":1,"nb":3,"a":[["ARO%3A3004652","Erm(O)-lrm"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3004679","l":"rmtE2","na":1,"nb":3,"a":[["ARO%3A3004679","rmtE2"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004854","l":"CMY-136","na":1,"nb":3,"a":[["ARO%3A3004854","CMY-136"]],"b":[["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftolozane.html","ceftolozane"],["antibacterial/cefuroxime.html","cefuroxime"]]},{"id":"ARO:3005021","l":"cfr(D)","na":1,"nb":3,"a":[["ARO%3A3005021","cfr(D)"]],"b":[["antibacterial/linezolid.html","linezolid"],["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3005047","l":"eptB","na":1,"nb":3,"a":[["ARO%3A3005047","eptB"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"],["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3005051","l":"LpsB","na":1,"nb":3,"a":[["ARO%3A3005051","LpsB"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"],["antibacterial/defensin.html","defensin"]]},{"id":"ARO:3005056","l":"tet(X6)","na":1,"nb":3,"a":[["ARO%3A3005056","tet(X6)"]],"b":[["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3005057","l":"tet(X5)","na":1,"nb":3,"a":[["ARO%3A3005057","tet(X5)"]],"b":[["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3005166","l":"tet(X1)","na":1,"nb":3,"a":[["ARO%3A3005166","tet(X1)"]],"b":[["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007032","l":"Erm(50)","na":1,"nb":3,"a":[["ARO%3A3007032","Erm(50)"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/roxithromycin.html","roxithromycin"]]},{"id":"ARO:3007050","l":"mreA","na":1,"nb":3,"a":[["ARO%3A3007050","mreA"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3007056","l":"Antibiotic resistant Helicobacter pylori nitroreductase","na":3,"nb":1,"a":[["ARO%3A3007056","Antibiotic resistant Helicobacter pylori nitroreductase"],["ARO%3A3007059","Helicobacter pylori frxA mutation conferring resistance to metronidazole"],["ARO%3A3007055","Helicobacter pylori rdxA mutation conferring resistance to metronidazole"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007062","l":"VAM-1","na":1,"nb":3,"a":[["ARO%3A3007062","VAM-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3007186","l":"Mycobacterium tuberculosis Rv1258c mutations confer resistance to pyrazinamide, isoniazid, and streptomycin","na":1,"nb":3,"a":[["ARO%3A3007186","Mycobacterium tuberculosis Rv1258c mutations confer resistance to pyrazinamide, isoniazid, and streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"],["antimycobacterial/isoniazide.html","isoniazide"],["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3007196","l":"KPC-123","na":1,"nb":3,"a":[["ARO%3A3007196","KPC-123"]],"b":[["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007208","l":"HelR","na":1,"nb":3,"a":[["ARO%3A3007208","HelR"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3007209","l":"Streptomyces venezuelae rox","na":1,"nb":3,"a":[["ARO%3A3007209","Streptomyces venezuelae rox"]],"b":[["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3007435","l":"WUS-1","na":1,"nb":3,"a":[["ARO%3A3007435","WUS-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/carbenicillin.html","carbenicillin"],["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3007473","l":"Mycobacterium avium gyrA with mutation conferring resistance to fluoroquinolone","na":1,"nb":3,"a":[["ARO%3A3007473","Mycobacterium avium gyrA with mutation conferring resistance to fluoroquinolone"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3007524","l":"Candida spp. ERG11 with mutations conferring resistance to azole antibiotics","na":1,"nb":3,"a":[["ARO%3A3007524","Candida spp. ERG11 with mutations conferring resistance to azole antibiotics"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"ARO:3007531","l":"Streptococcus pyogenes PBP2x conferring resistance to beta-lactam antibiotics","na":1,"nb":3,"a":[["ARO%3A3007531","Streptococcus pyogenes PBP2x conferring resistance to beta-lactam antibiotics"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefotaxime.html","cefotaxime"]]},{"id":"ARO:3007565","l":"Aspergillus spp. cyp51A with mutations conferring resistance to triazoles antibiotics","na":1,"nb":3,"a":[["ARO%3A3007565","Aspergillus spp. cyp51A with mutations conferring resistance to triazoles antibiotics"]],"b":[["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"ARO:3007632","l":"FRI-11","na":1,"nb":3,"a":[["ARO%3A3007632","FRI-11"]],"b":[["antibacterial/ertapenem.html","ertapenem"],["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3007654","l":"erm(56)","na":1,"nb":3,"a":[["ARO%3A3007654","erm(56)"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"]]},{"id":"ARO:3007666","l":"Candida spp. cyp51A1 with mutations conferring resistance to triazoles and imidazole antibiotics","na":1,"nb":3,"a":[["ARO%3A3007666","Candida spp. cyp51A1 with mutations conferring resistance to triazoles and imidazole antibiotics"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/ketoconazole.html","ketoconazole"]]},{"id":"ARO:3007669","l":"aadT","na":1,"nb":3,"a":[["ARO%3A3007669","aadT"]],"b":[["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"CHEBI:121196","l":"reumycin","na":3,"nb":1,"a":[["EC%3A2.1.1.349","toxoflavin synthase"],["RHEA%3A56848","1,6-didemethyltoxoflavin + S-adenosyl-L-methionine = reumycin + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A56852","reumycin + S-adenosyl-L-methionine = toxoflavin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["unspecified/reumycin.html","reumycin"]]},{"id":"CHEBI:131914","l":"violacein","na":3,"nb":1,"a":[["RHEA%3A49720","protoviolaceinate + NADH + 2 O2 + 2 H(+) = violacein + CO2 + NAD(+) + 2 H2O"],["RHEA%3A49728","protoviolaceinate + NADPH + 2 O2 + 2 H(+) = violacein + CO2 + NADP(+) + 2 H2O"],["RHEA%3A49732","violaceinate + O2 + H(+) = violacein + CO2 + H2O"]],"b":[["antibacterial/violacein.html","violacein"]]},{"id":"CHEBI:131915","l":"deoxyviolacein","na":3,"nb":1,"a":[["RHEA%3A49744","deoxyviolaceinate + O2 + H(+) = deoxyviolacein + CO2 + H2O"],["RHEA%3A49736","protodeoxyviolaceinate + NADH + 2 O2 + 2 H(+) = deoxyviolacein + CO2 + NAD(+) + 2 H2O"],["RHEA%3A49740","protodeoxyviolaceinate + NADPH + 2 O2 + 2 H(+) = deoxyviolacein + CO2 + NADP(+) + 2 H2O"]],"b":[["antibacterial/deoxyviolacein.html","deoxyviolacein"]]},{"id":"CHEBI:138730","l":"","na":3,"nb":1,"a":[["EC%3A2.1.1.267","flavonoid 3',5'-methyltransferase"],["EC%3A2.1.1.42","flavone 3'-O-methyltransferase"],["RHEA%3A55332","a 3'-hydroxyflavone + S-adenosyl-L-methionine = a 3'-methoxyflavone + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/3-3-dimethylquercetin.html","3,3'-dimethylquercetin"]]},{"id":"CHEBI:142605","l":"","na":3,"nb":1,"a":[["EC%3A2.3.1.332","medium-chain-alcohol O-fatty-acyltransferase"],["RHEA%3A85935","a medium-chain primary fatty alcohol + a fatty acyl-CoA = a medium-chain alcohol wax ester + CoA"],["RHEA%3A58364","a medium-chain primary fatty alcohol + NADP(+) = a medium-chain fatty aldehyde + NADPH + H(+)"]],"b":[["antibacterial/1-2-dodecanediol.html","1,2-dodecanediol"]]},{"id":"CHEBI:16363","l":"α-santonin","na":3,"nb":1,"a":[["EC%3A1.3.1.47","alpha-santonin 1,2-reductase"],["RHEA%3A23612","1,2-dihydro-alpha-santonin + NAD(+) = alpha-santonin + NADH + H(+)"],["RHEA%3A23616","1,2-dihydro-alpha-santonin + NADP(+) = alpha-santonin + NADPH + H(+)"]],"b":[["antifungal/%CE%B1-santonin.html","α-santonin"]]},{"id":"CHEBI:17097","l":"biphenyl","na":3,"nb":1,"a":[["EC%3A1.14.12.18","biphenyl 2,3-dioxygenase"],["RHEA%3A18165","biphenyl + NADH + O2 + H(+) = (2R,3S)-3-phenylcyclohexa-3,5-diene-1,2-diol + NAD(+)"],["proteintraitsmech%3ABIOLIP_BNL","BNL-binding site"]],"b":[["antifungal/biphenyl.html","biphenyl"]]},{"id":"CHEBI:1722","l":"","na":3,"nb":1,"a":[["EC%3A1.1.1.145","3beta-hydroxy-Delta(5)-steroid dehydrogenase"],["RHEA%3A24076","a 3beta-hydroxy-Delta(5)-steroid + NAD(+) = a 3-oxo-Delta(5)-steroid + NADH + H(+)"],["RHEA%3A56880","a 3beta-hydroxy-Delta(5)-steroid + NADP(+) = a 3-oxo-Delta(5)-steroid + NADPH + H(+)"]],"b":[["antibacterial/7-aminocholesterol.html","7-aminocholesterol"]]},{"id":"CHEBI:17231","l":"m-cresol","na":3,"nb":1,"a":[["EC%3A4.1.1.52","6-methylsalicylate decarboxylase"],["RHEA%3A62208","3-methylphenol + reduced [NADPH--hemoprotein reductase] + O2 = 3-hydroxybenzyl alcohol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A23112","6-methylsalicylate + H(+) = 3-methylphenol + CO2"]],"b":[["antifungal/m-cresol.html","m-cresol"]]},{"id":"CHEBI:173119","l":"(6Z)-nerolidol","na":1,"nb":3,"a":[["RHEA%3A68832","(2Z,6Z)-farnesyl diphosphate + H2O = (6Z)-nerolidol + diphosphate"]],"b":[["antifungal/3r-6z-nerolidol.html","(3R,6Z)-nerolidol"],["antifungal/3s-6z-nerolidol.html","(3S,6Z)-nerolidol"],["antifungal/6z-nerolidol.html","(6Z)-nerolidol"]]},{"id":"CHEBI:17484","l":"benzyl isothiocyanate","na":3,"nb":1,"a":[["EC%3A5.99.1.1","thiocyanate isomerase"],["RHEA%3A10004","benzyl isothiocyanate = benzyl thiocyanate"],["RHEA%3A69300","(Z)-phenyl-N-(sulfonatooxy)methanimidothioate = benzyl isothiocyanate + sulfate"]],"b":[["antibacterial/benzyl-isothiocyanate.html","benzyl isothiocyanate"]]},{"id":"CHEBI:195253","l":"5-hydroxy-3-methylfuran-2(5H)-one","na":3,"nb":1,"a":[["RHEA%3A76507","(-)-2'-epi-GR24 + H2O = (-)-2'-epi-GR24 ABC-rings + 5-hydroxy-3-methylfuran-2(5H)-one"],["RHEA%3A76511","5-deoxystrigol + H2O = 5-deoxystrigol ABC-rings + 5-hydroxy-3-methylfuran-2(5H)-one"],["RHEA%3A76515","orobanchol + H2O = orobanchol ABC-rings + 5-hydroxy-3-methylfuran-2(5H)-one"]],"b":[["antiviral/5-hydroxy-3-methylfuran-2-5h-one.html","5-hydroxy-3-methylfuran-2(5H)-one"]]},{"id":"CHEBI:2453","l":"acyclovir","na":3,"nb":1,"a":[["RHEA%3A83871","valacyclovir + H2O = acyclovir + L-valine + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antiviral/acyclovir.html","acyclovir"]]},{"id":"CHEBI:24838","l":"","na":3,"nb":1,"a":[["TCDB%3A2.A.30","The Cation-Chloride Cotransporter (CCC) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.58","The Phosphate:Na+ Symporter (PNaS) Family"]],"b":[["antibacterial/sodium-fluorophosphate.html","sodium fluorophosphate"]]},{"id":"CHEBI:26267","l":"","na":1,"nb":3,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antiviral/epigallocatechin-4%CE%B28-2%CE%B2o-7-epicatechin.html","epigallocatechin-(4β→8,2β→O-7)-epicatechin"],["antiviral/proanthocyanidin-a2.html","proanthocyanidin A2"],["antiviral/theasinensin-a.html","theasinensin A"]]},{"id":"CHEBI:28915","l":"fosfomycin","na":3,"nb":1,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.5","The Pseudomonas OprP Porin (POP) Family"],["proteintraitsmech%3ABIOLIP_FCN","FCN-binding site"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"CHEBI:3139","l":"bleomycin A2","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A9.A.18","The Peptide Uptake Permease (PUP) Family"]],"b":[["antibacterial/bleomycin-a2.html","bleomycin A2"]]},{"id":"CHEBI:32197","l":"tetracenomycin A2","na":3,"nb":1,"a":[["EC%3A1.14.13.200","tetracenomycin A2 monooxygenase-diooxygenase"],["RHEA%3A42824","tetracenomycin A2 + 2 NADH + 2 O2 + 2 H(+) = tetracenomycin C + 2 NAD(+) + H2O"],["RHEA%3A42820","tetracenomycin A2 + 2 NADPH + 2 O2 + 2 H(+) = tetracenomycin C + 2 NADP(+) + H2O"]],"b":[["antibacterial/tetracenomycin-a2.html","tetracenomycin A2"]]},{"id":"CHEBI:324935","l":"fumagillol","na":3,"nb":1,"a":[["EC%3A1.1.1.437","5-dehydrofumagillol 5-reductase"],["RHEA%3A74751","fumagillol + dodecapentaneoyl-[polyketide synthase] = prefumagillin + holo-[polyketide synthase]"],["RHEA%3A74707","fumagillol + NADP(+) = 5-dehydrofumagillol + NADPH + H(+)"]],"b":[["unspecified/fumagillol.html","fumagillol"]]},{"id":"CHEBI:3392","l":"carbendazim","na":3,"nb":1,"a":[["EC%3A3.1.1.122","carbendazim hydrolysing esterase"],["RHEA%3A78411","carbendazim + H2O = 2-aminobenzimidazole + methanol + CO2"],["RHEA%3A78415","carbendazim + H2O = N-(1H-1,3-benzodiazol-2-yl)carbamate + methanol + H(+)"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"CHEBI:35996","l":"","na":1,"nb":3,"a":[["TCDB%3A1.B.25","The Outer Membrane Porin (Opr) Family"]],"b":[["antibacterial/faropenem.html","faropenem"],["unspecified/faropenem-1.html","faropenem(1−)"],["unspecified/penem.html","penem"]]},{"id":"CHEBI:43968","l":"meropenem","na":3,"nb":1,"a":[["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"],["TCDB%3A1.B.25","The Outer Membrane Porin (Opr) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/meropenem.html","meropenem"]]},{"id":"CHEBI:44485","l":"N-ethylmaleimide","na":3,"nb":1,"a":[["RHEA%3A35527","N-ethylmaleimide + NADH + H(+) = N-ethylsuccinimide + NAD(+)"],["RHEA%3A35523","N-ethylmaleimide + NADPH + H(+) = N-ethylsuccinimide + NADP(+)"],["proteintraitsmech%3ABIOLIP_NEQ","NEQ-binding site"]],"b":[["antiviral/n-ethylmaleimide.html","N-ethylmaleimide"]]},{"id":"CHEBI:45453","l":"sinefungin","na":3,"nb":1,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A2.A.71","The Folate-Biopterin Transporter (FBT) Family"],["proteintraitsmech%3ABIOLIP_SFG","SFG-binding site"]],"b":[["antifungal/sinefungin.html","sinefungin"]]},{"id":"CHEBI:4629","l":"diosgenin","na":3,"nb":1,"a":[["EC%3A3.2.1.189","dioscin glycosidase (diosgenin-forming)"],["RHEA%3A36827","dioscin + 3 H2O = diosgenin + 2 L-rhamnopyranose + D-glucose"],["RHEA%3A61888","diosgenin + UDP-alpha-D-glucose = diosgenin 3-O-beta-D-glucoside + UDP + H(+)"]],"b":[["antiviral/diosgenin.html","diosgenin"]]},{"id":"CHEBI:47789","l":"","na":3,"nb":1,"a":[["EC%3A1.1.1.201","7beta-hydroxysteroid dehydrogenase (NADP(+))"],["RHEA%3A82271","7alpha-hydroxy steroid + NADP(+) = a 7-oxosteroid + NADPH + H(+)"],["RHEA%3A20233","a 7beta-hydroxysteroid + NADP(+) = a 7-oxosteroid + NADPH + H(+)"]],"b":[["antiviral/lucialdehyde-b.html","lucialdehyde B"]]},{"id":"CHEBI:51277","l":"","na":1,"nb":3,"a":[["RHEA%3A82919","a thioester + H2O = a thiol + a carboxylate + H(+)"]],"b":[["antifungal/acibenzolar-s-methyl.html","acibenzolar-S-methyl"],["antifungal/fenpyrazamine.html","fenpyrazamine"],["antiprotozoal/sid-26681509.html","SID 26681509"]]},{"id":"CHEBI:6076","l":"itraconazole","na":3,"nb":1,"a":[["RHEA%3A33503","itraconazole(in) + ATP + H2O = itraconazole(out) + ADP + phosphate + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/itraconazole.html","itraconazole"]]},{"id":"CHEBI:60822","l":"streptothricin F(3+)","na":3,"nb":1,"a":[["EC%3A3.5.2.19","streptothricin hydrolase"],["RHEA%3A57000","streptothricin F + acetyl-CoA = N(beta)-acetylstreptothricin F + CoA + H(+)"],["RHEA%3A28138","streptothricin F + H2O = streptothricin F acid"]],"b":[["unspecified/streptothricin-f-3.html","streptothricin F(3+)"]]},{"id":"CHEBI:6472","l":"lincomycin","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_3QB","3QB-binding site"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"CHEBI:67135","l":"2-nitroimidazole","na":3,"nb":1,"a":[["EC%3A3.5.99.9","2-nitroimidazole nitrohydrolase"],["RHEA%3A34271","2-nitroimidazole + H2O = 1,3-dihydro-2H-imidazol-2-one + nitrite + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antimycobacterial/2-nitroimidazole.html","2-nitroimidazole"]]},{"id":"CHEBI:75291","l":"ε-rhodomycinone","na":3,"nb":1,"a":[["EC%3A1.14.13.180","aklavinone 12-hydroxylase"],["RHEA%3A37835","aklavinone + NADPH + O2 + H(+) = epsilon-rhodomycinone + NADP(+) + H2O"],["RHEA%3A45760","dTDP-beta-L-daunosamine + epsilon-rhodomycinone = rhodomycin D + dTDP + H(+)"]],"b":[["unspecified/%CE%B5-rhodomycinone.html","ε-rhodomycinone"]]},{"id":"CHEBI:77879","l":"elaiophylin","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["proteintraitsmech%3ABIOLIP_ELO","ELO-binding site"]],"b":[["antifungal/elaiophylin.html","elaiophylin"]]},{"id":"CHEBI:78303","l":"aclacinomycin S zwitterion","na":3,"nb":1,"a":[["EC%3A2.4.1.327","aclacinomycin-T 2-deoxy-L-fucose transferase"],["RHEA%3A41652","dTDP-2-deoxy-beta-L-fucose + aclacinomycin S = 2-deoxy-alpha-L-fucosylaclacinomycin S + dTDP + H(+)"],["RHEA%3A41568","dTDP-2-deoxy-beta-L-fucose + aclacinomycin T = aclacinomycin S + dTDP + H(+)"]],"b":[["unspecified/aclacinomycin-s-zwitterion.html","aclacinomycin S zwitterion"]]},{"id":"CHEBI:80729","l":"toxoflavin","na":3,"nb":1,"a":[["EC%3A2.1.1.349","toxoflavin synthase"],["RHEA%3A56852","reumycin + S-adenosyl-L-methionine = toxoflavin + S-adenosyl-L-homocysteine + H(+)"],["proteintraitsmech%3ABIOLIP_TOF","TOF-binding site"]],"b":[["antibacterial/toxoflavin.html","toxoflavin"]]},{"id":"CHEBI:82744","l":"","na":3,"nb":1,"a":[["EC%3A4.8.1.2","aliphatic aldoxime dehydratase"],["RHEA%3A11316","an aliphatic aldoxime = a nitrile + H2O"],["MCSA%3A361","aldoxime dehydratase"]],"b":[["unspecified/ic202c.html","IC202C"]]},{"id":"CHEBI:84688","l":"","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]],"b":[["antibacterial/albomycin-%CE%B41.html","albomycin δ1"]]},{"id":"CHEBI:87208","l":"","na":1,"nb":3,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/cyprodinil.html","cyprodinil"],["antifungal/mepanipyrim.html","mepanipyrim"],["antifungal/pyrimethanil.html","pyrimethanil"]]},{"id":"CHEBI:9053","l":"sclareol","na":3,"nb":1,"a":[["EC%3A4.2.3.141","sclareol synthase"],["RHEA%3A34459","8-hydroxycopalyl diphosphate + H2O = sclareol + diphosphate"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/sclareol.html","sclareol"]]},{"id":"CHEBI:9215","l":"spectinomycin","na":3,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["proteintraitsmech%3ABIOLIP_SCM","SCM-binding site"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"CHEBI:9470","l":"tetracenomycin C","na":3,"nb":1,"a":[["EC%3A1.14.13.200","tetracenomycin A2 monooxygenase-diooxygenase"],["RHEA%3A42824","tetracenomycin A2 + 2 NADH + 2 O2 + 2 H(+) = tetracenomycin C + 2 NAD(+) + H2O"],["RHEA%3A42820","tetracenomycin A2 + 2 NADPH + 2 O2 + 2 H(+) = tetracenomycin C + 2 NADP(+) + H2O"]],"b":[["antibacterial/tetracenomycin-c.html","tetracenomycin C"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":3,"nb":1,"a":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF22041","Glutathione S-transferase, C-terminal domain"],["Pfam%3APF08493","Aflatoxin regulatory protein"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:5053","l":"Aspergillus aculeatus","na":3,"nb":1,"a":[["Pfam%3APF14683","Polysaccharide lyase family 4, domain III"],["Pfam%3APF14686","Polysaccharide lyase family 4, domain II"],["Pfam%3APF01670","Glycosyl hydrolase family 12"]],"b":[["antifungal/aculeacin-a.html","aculeacin A"]]},{"id":"NCBITaxon:54571","l":"Streptomyces venezuelae","na":3,"nb":1,"a":[["Pfam%3APF08990","Erythronolide synthase docking domain"],["TED%3AAF-A0A5P2CQV7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5P2CQV7-F1-model_v4_TED02"],["TED%3AAF-A0A5P2C5X4-F1-model_v4_TED01","TED novel fold AF-A0A5P2C5X4-F1-model_v4_TED01"]],"b":[["antibacterial/methymycin.html","methymycin"]]},{"id":"NCBITaxon:578454","l":"Candida parapsilosis (strain CDC 317 / ATCC MYA-4646)","na":1,"nb":3,"a":[["TED%3AAF-G8BAN6-F1-model_v4_TED01","TED novel fold AF-G8BAN6-F1-model_v4_TED01"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"UniProt:P10613","l":"","na":1,"nb":3,"a":[["proteintraitsmech%3ABIOLIP_1YN","1YN-binding site"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"UniProt:Q4WNT5","l":"","na":1,"nb":3,"a":[["EC%3A1.14.14.154","sterol 14alpha-demethylase"]],"b":[["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"ARO:0000040","l":"streptomycin","na":2,"nb":1,"a":[["ARO%3A3004968","Mycobacterium tuberculosis whib7 mutation conferring resistance to streptomycin"],["ARO%3A3004965","streptomycin resistant whib7"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:0000049","l":"kanamycin A","na":2,"nb":1,"a":[["ARO%3A3004966","Kanamycin resistant whib7"],["ARO%3A3004967","Mycobacterium tuberculosis whib7 mutations confer resistance to kanamycin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3000026","l":"mepA","na":2,"nb":1,"a":[["ARO%3A3000026","mepA"],["ARO%3A3000746","mepR"]],"b":[["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:3000118","l":"vgaB","na":1,"nb":2,"a":[["ARO%3A3000118","vgaB"]],"b":[["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3000165","l":"tet(A)","na":2,"nb":1,"a":[["ARO%3A3000165","tet(A)"],["ARO%3A3003479","tetR"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000236","l":"glycopeptide resistance gene cluster VanA","na":1,"nb":2,"a":[["ARO%3A3000236","glycopeptide resistance gene cluster VanA"]],"b":[["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000251","l":"msrA","na":1,"nb":2,"a":[["ARO%3A3000251","msrA"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/quinupristin.html","quinupristin"]]},{"id":"ARO:3000253","l":"glycopeptide resistance gene cluster VanD","na":1,"nb":2,"a":[["ARO%3A3000253","glycopeptide resistance gene cluster VanD"]],"b":[["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000256","l":"glycopeptide resistance gene cluster VanM","na":1,"nb":2,"a":[["ARO%3A3000256","glycopeptide resistance gene cluster VanM"]],"b":[["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000344","l":"EmrAB-TolC","na":2,"nb":1,"a":[["ARO%3A3000344","EmrAB-TolC"],["ARO%3A3000516","emrR"]],"b":[["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3000448","l":"QepA1","na":1,"nb":2,"a":[["ARO%3A3000448","QepA1"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3000545","l":"MacAB-TolC","na":2,"nb":1,"a":[["ARO%3A3000545","MacAB-TolC"],["ARO%3A3000834","phoP"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000616","l":"mel","na":1,"nb":2,"a":[["ARO%3A3000616","mel"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/telithromycin.html","telithromycin"]]},{"id":"ARO:3000768","l":"abeS","na":1,"nb":2,"a":[["ARO%3A3000768","abeS"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3000769","l":"PatA-PatB","na":1,"nb":2,"a":[["ARO%3A3000769","PatA-PatB"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3000771","l":"AdeFGH","na":2,"nb":1,"a":[["ARO%3A3000771","AdeFGH"],["ARO%3A3000620","adeL"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000786","l":"MdsABC","na":2,"nb":1,"a":[["ARO%3A3000504","golS"],["ARO%3A3000786","MdsABC"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3000822","l":"pmrA","na":1,"nb":2,"a":[["ARO%3A3000822","pmrA"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3000865","l":"oleD","na":1,"nb":2,"a":[["ARO%3A3000865","oleD"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3000966","l":"TEM-103","na":1,"nb":2,"a":[["ARO%3A3000966","TEM-103"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"]]},{"id":"ARO:3001216","l":"mdtH","na":1,"nb":2,"a":[["ARO%3A3001216","mdtH"]],"b":[["antibacterial/enoxacin.html","enoxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3001300","l":"myrA","na":1,"nb":2,"a":[["ARO%3A3001300","myrA"]],"b":[["antibacterial/mycinamicin-iv.html","mycinamicin IV"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3001301","l":"RlmA(II)","na":1,"nb":2,"a":[["ARO%3A3001301","RlmA(II)"]],"b":[["antibacterial/mycinamicin-iv.html","mycinamicin IV"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3001306","l":"ErmW","na":1,"nb":2,"a":[["ARO%3A3001306","ErmW"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/josamycin.html","josamycin"]]},{"id":"ARO:3001796","l":"OXA-50","na":1,"nb":2,"a":[["ARO%3A3001796","OXA-50"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"]]},{"id":"ARO:3001816","l":"ACC-2","na":1,"nb":2,"a":[["ARO%3A3001816","ACC-2"]],"b":[["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001917","l":"CTX-M-55","na":1,"nb":2,"a":[["ARO%3A3001917","CTX-M-55"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3002053","l":"CMY-42","na":1,"nb":2,"a":[["ARO%3A3002053","CMY-42"]],"b":[["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002587","l":"","na":1,"nb":2,"a":[["ARO%3A3002587","AAC(6')-I33"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002601","l":"aadA","na":1,"nb":2,"a":[["ARO%3A3002601","aadA"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002602","l":"aadA2","na":1,"nb":2,"a":[["ARO%3A3002602","aadA2"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002603","l":"aadA3","na":1,"nb":2,"a":[["ARO%3A3002603","aadA3"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002604","l":"aadA4","na":1,"nb":2,"a":[["ARO%3A3002604","aadA4"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002605","l":"aadA5","na":1,"nb":2,"a":[["ARO%3A3002605","aadA5"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002606","l":"aadA6","na":1,"nb":2,"a":[["ARO%3A3002606","aadA6"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002607","l":"aadA7","na":1,"nb":2,"a":[["ARO%3A3002607","aadA7"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002608","l":"aadA8","na":1,"nb":2,"a":[["ARO%3A3002608","aadA8"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002609","l":"aadA9","na":1,"nb":2,"a":[["ARO%3A3002609","aadA9"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002611","l":"aadA11","na":1,"nb":2,"a":[["ARO%3A3002611","aadA11"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002612","l":"aadA12","na":1,"nb":2,"a":[["ARO%3A3002612","aadA12"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002613","l":"aadA13","na":1,"nb":2,"a":[["ARO%3A3002613","aadA13"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002614","l":"aadA14","na":1,"nb":2,"a":[["ARO%3A3002614","aadA14"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002615","l":"aadA15","na":1,"nb":2,"a":[["ARO%3A3002615","aadA15"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002616","l":"aadA16","na":1,"nb":2,"a":[["ARO%3A3002616","aadA16"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002617","l":"aadA17","na":1,"nb":2,"a":[["ARO%3A3002617","aadA17"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002618","l":"aadA21","na":1,"nb":2,"a":[["ARO%3A3002618","aadA21"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002619","l":"aadA22","na":1,"nb":2,"a":[["ARO%3A3002619","aadA22"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002620","l":"aadA23","na":1,"nb":2,"a":[["ARO%3A3002620","aadA23"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002621","l":"aadA24","na":1,"nb":2,"a":[["ARO%3A3002621","aadA24"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002622","l":"aadA6/aadA10","na":1,"nb":2,"a":[["ARO%3A3002622","aadA6/aadA10"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002654","l":"","na":1,"nb":2,"a":[["ARO%3A3002654","APH(3')-VIIa"]],"b":[["antibacterial/framycetin.html","framycetin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3002704","l":"fexA","na":1,"nb":2,"a":[["ARO%3A3002704","fexA"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"]]},{"id":"ARO:3002705","l":"floR","na":1,"nb":2,"a":[["ARO%3A3002705","floR"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"]]},{"id":"ARO:3002706","l":"ethambutol resistant embC","na":2,"nb":1,"a":[["ARO%3A3002706","ethambutol resistant embC"],["ARO%3A3003327","Mycobacterium tuberculosis embC mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3002812","l":"pp-flo","na":1,"nb":2,"a":[["ARO%3A3002812","pp-flo"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"]]},{"id":"ARO:3002818","l":"msrB","na":1,"nb":2,"a":[["ARO%3A3002818","msrB"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/quinupristin.html","quinupristin"]]},{"id":"ARO:3002819","l":"msrC","na":1,"nb":2,"a":[["ARO%3A3002819","msrC"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/quinupristin.html","quinupristin"]]},{"id":"ARO:3002829","l":"vgaA","na":1,"nb":2,"a":[["ARO%3A3002829","vgaA"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002835","l":"lnuA","na":1,"nb":2,"a":[["ARO%3A3002835","lnuA"]],"b":[["antibacterial/lincomycin.html","lincomycin"],["antibacterial/pirlimycin.html","pirlimycin"]]},{"id":"ARO:3002836","l":"lnuB","na":1,"nb":2,"a":[["ARO%3A3002836","lnuB"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002838","l":"lnuD","na":1,"nb":2,"a":[["ARO%3A3002838","lnuD"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002839","l":"lnuF","na":1,"nb":2,"a":[["ARO%3A3002839","lnuF"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002876","l":"ethambutol resistant aftA","na":2,"nb":1,"a":[["ARO%3A3002876","ethambutol resistant aftA"],["ARO%3A3004951","Mycobacterium tuberculosis aftA mutations confer resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3002981","l":"AmrAB-OprM","na":1,"nb":2,"a":[["ARO%3A3002981","AmrAB-OprM"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002998","l":"CblA beta-lactamase","na":2,"nb":1,"a":[["ARO%3A3002999","CblA-1"],["ARO%3A3002998","CblA beta-lactamase"]],"b":[["antibacterial/cefaloridine.html","cefaloridine"]]},{"id":"ARO:3003035","l":"mfpA","na":1,"nb":2,"a":[["ARO%3A3003035","mfpA"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/sparfloxacin.html","sparfloxacin"]]},{"id":"ARO:3003054","l":"SmeDEF","na":1,"nb":2,"a":[["ARO%3A3003054","SmeDEF"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003090","l":"daptomycin-resistant beta-subunit of RNA polymerase (rpoB)","na":2,"nb":1,"a":[["ARO%3A3003090","daptomycin-resistant beta-subunit of RNA polymerase (rpoB)"],["ARO%3A3003287","Staphylococcus aureus rpoB mutants conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003091","l":"daptomycin resistant mprF","na":2,"nb":1,"a":[["ARO%3A3003091","daptomycin resistant mprF"],["ARO%3A3003319","Staphylococcus aureus mprF with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003106","l":"Erm(42)","na":1,"nb":2,"a":[["ARO%3A3003106","Erm(42)"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003107","l":"mef(B)","na":1,"nb":2,"a":[["ARO%3A3003107","mef(B)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003111","l":"lsaB","na":1,"nb":2,"a":[["ARO%3A3003111","lsaB"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"ARO:3003197","l":"aadA25","na":1,"nb":2,"a":[["ARO%3A3003197","aadA25"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003206","l":"lsaE","na":1,"nb":2,"a":[["ARO%3A3003206","lsaE"]],"b":[["antibacterial/lincomycin.html","lincomycin"],["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"ARO:3003209","l":"fosA5","na":1,"nb":2,"a":[["ARO%3A3003209","fosA5"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/gentamicin.html","gentamicin"]]},{"id":"ARO:3003290","l":"daptomycin-resistant beta prime subunit of RNA polymerase (rpoC)","na":2,"nb":1,"a":[["ARO%3A3003290","daptomycin-resistant beta prime subunit of RNA polymerase (rpoC)"],["ARO%3A3003291","Staphylococcus aureus rpoC conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003378","l":"Escherichia coli AcrAB-TolC with MarR mutations conferring resistance to ciprofloxacin and tetracycline","na":1,"nb":2,"a":[["ARO%3A3003378","Escherichia coli AcrAB-TolC with MarR mutations conferring resistance to ciprofloxacin and tetracycline"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003401","l":"","na":2,"nb":1,"a":[["ARO%3A3003388","dapsone resistant dihydropteroate synthase folP"],["ARO%3A3003389","Mycobacterium leprae folP with mutation conferring resistance to dapsone"]],"b":[["antimycobacterial/dapsone.html","dapsone"]]},{"id":"ARO:3003447","l":"ethambutol resistant iniA","na":2,"nb":1,"a":[["ARO%3A3003447","ethambutol resistant iniA"],["ARO%3A3003448","Mycobacterium tuberculosis iniA mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003450","l":"Ethambutol resistant iniC","na":2,"nb":1,"a":[["ARO%3A3003450","Ethambutol resistant iniC"],["ARO%3A3003451","Mycobacterium tuberculosis iniC mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003452","l":"ethambutol resistant embA","na":2,"nb":1,"a":[["ARO%3A3003452","ethambutol resistant embA"],["ARO%3A3003453","Mycobacterium tuberculosis embA mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003454","l":"ethambutol resistant embR","na":2,"nb":1,"a":[["ARO%3A3003454","ethambutol resistant embR"],["ARO%3A3003455","Mycobacterium tuberculosis embR mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003458","l":"Mycobacterium tuberculosis ethA with mutation conferring resistance to ethionamide","na":2,"nb":1,"a":[["ARO%3A3003457","ethionamide resistant ethA"],["ARO%3A3003458","Mycobacterium tuberculosis ethA with mutation conferring resistance to ethionamide"]],"b":[["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"ARO:3003499","l":"Cutibacterium acnes 16S rRNA mutation conferring resistance to tetracycline","na":2,"nb":1,"a":[["ARO%3A3003499","Cutibacterium acnes 16S rRNA mutation conferring resistance to tetracycline"],["ARO%3A3003977","Halobacterium salinarum 16S rRNA mutation conferring resistance to pactamycin"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003573","l":"LpxA","na":1,"nb":2,"a":[["ARO%3A3003573","LpxA"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003574","l":"LpxC","na":1,"nb":2,"a":[["ARO%3A3003574","LpxC"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003575","l":"LpxD","na":1,"nb":2,"a":[["ARO%3A3003575","LpxD"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003585","l":"Klebsiella mutant PhoP conferring antibiotic resistance to colistin","na":1,"nb":2,"a":[["ARO%3A3003585","Klebsiella mutant PhoP conferring antibiotic resistance to colistin"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003676","l":"AAC(6')-Ib'","na":1,"nb":2,"a":[["ARO%3A3003676","AAC(6')-Ib'"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3003689","l":"MCR-1.1","na":1,"nb":2,"a":[["ARO%3A3003689","MCR-1.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003694","l":"MexJK-OprM","na":1,"nb":2,"a":[["ARO%3A3003694","MexJK-OprM"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003703","l":"MexMN-OprM","na":1,"nb":2,"a":[["ARO%3A3003703","MexMN-OprM"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3003722","l":"glycopeptide resistance gene cluster VanI","na":1,"nb":2,"a":[["ARO%3A3003722","glycopeptide resistance gene cluster VanI"]],"b":[["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3003751","l":"Escherichia coli nfsA mutations conferring resistance to nitrofurantoin","na":2,"nb":1,"a":[["ARO%3A3003754","antibiotic resistant nfsA"],["ARO%3A3003751","Escherichia coli nfsA mutations conferring resistance to nitrofurantoin"]],"b":[["antibacterial/nitrofurantoin.html","nitrofurantoin"]]},{"id":"ARO:3003795","l":"daptomycin resistant walK","na":2,"nb":1,"a":[["ARO%3A3003795","daptomycin resistant walK"],["ARO%3A3003794","Staphylococcus aureus walK with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003796","l":"Acinetobacter baumannii ampC beta-lactamase","na":1,"nb":2,"a":[["ARO%3A3003796","Acinetobacter baumannii ampC beta-lactamase"]],"b":[["antibacterial/cefepime.html","cefepime"],["antibacterial/piperacillin.html","piperacillin"]]},{"id":"ARO:3003798","l":"daptomycin resistant YybT","na":2,"nb":1,"a":[["ARO%3A3003798","daptomycin resistant YybT"],["ARO%3A3003797","Enterococcus faecalis YybT with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003802","l":"daptomycin resistant gdpD","na":2,"nb":1,"a":[["ARO%3A3003802","daptomycin resistant gdpD"],["ARO%3A3003800","Enterococcus faecalis gdpD with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003804","l":"daptomycin resistant agrA","na":2,"nb":1,"a":[["ARO%3A3003804","daptomycin resistant agrA"],["ARO%3A3003803","Staphylococcus aureus agrA with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003808","l":"carO","na":1,"nb":2,"a":[["ARO%3A3003808","carO"]],"b":[["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3003814","l":"daptomycin resistant drmA","na":2,"nb":1,"a":[["ARO%3A3003814","daptomycin resistant drmA"],["ARO%3A3003813","Enterococcus faecalis drmA with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003816","l":"daptomycin resistant YvlB","na":2,"nb":1,"a":[["ARO%3A3003816","daptomycin resistant YvlB"],["ARO%3A3003815","Enterococcus faecalis YvlB with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003820","l":"mgrB","na":1,"nb":2,"a":[["ARO%3A3003820","mgrB"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003893","l":"Escherichia coli uhpA with mutation conferring resistance to fosfomycin","na":2,"nb":1,"a":[["ARO%3A3003893","Escherichia coli uhpA with mutation conferring resistance to fosfomycin"],["ARO%3A3004249","UhpA"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003895","l":"Pseudomonas mutant PhoP conferring resistance to colistin","na":1,"nb":2,"a":[["ARO%3A3003895","Pseudomonas mutant PhoP conferring resistance to colistin"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003896","l":"Pseudomonas mutant PhoQ conferring resistance to colistin","na":1,"nb":2,"a":[["ARO%3A3003896","Pseudomonas mutant PhoQ conferring resistance to colistin"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003899","l":"Escherichia coli PtsI with mutation conferring resistance to fosfomycin","na":2,"nb":1,"a":[["ARO%3A3004250","antibiotic-resistant ptsI phosphotransferase"],["ARO%3A3003899","Escherichia coli PtsI with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003926","l":"Salmonella enterica gyrA conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3003926","Salmonella enterica gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3003928","l":"Neisseria gonorrhoeae gyrA with mutations conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3003928","Neisseria gonorrhoeae gyrA with mutations conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/sitafloxacin.html","Sitafloxacin"]]},{"id":"ARO:3003929","l":"Neisseria gonorrhoeae parC conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3003929","Neisseria gonorrhoeae parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/sitafloxacin.html","Sitafloxacin"]]},{"id":"ARO:3003937","l":"Neisseria meningititis PBP2 conferring resistance to beta-lactam","na":1,"nb":2,"a":[["ARO%3A3003937","Neisseria meningititis PBP2 conferring resistance to beta-lactam"]],"b":[["antibacterial/cefixime.html","cefixime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3003939","l":"Salmonella enterica parC conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3003939","Salmonella enterica parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3003940","l":"Shigella flexneri gyrA conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3003940","Shigella flexneri gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/nalidixic-acid.html","nalidixic acid"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3003941","l":"Shigella flexneri parC conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3003941","Shigella flexneri parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/nalidixic-acid.html","nalidixic acid"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3003953","l":"hmrM","na":1,"nb":2,"a":[["ARO%3A3003953","hmrM"]],"b":[["antibacterial/norfloxacin.html","norfloxacin"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3003955","l":"efpA","na":1,"nb":2,"a":[["ARO%3A3003955","efpA"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3003967","l":"lfrA","na":1,"nb":2,"a":[["ARO%3A3003967","lfrA"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3003968","l":"Klebsiella pneumoniae OmpK36","na":1,"nb":2,"a":[["ARO%3A3003968","Klebsiella pneumoniae OmpK36"]],"b":[["antibacterial/cefalotin.html","cefalotin"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3003971","l":"Erm(44)v","na":1,"nb":2,"a":[["ARO%3A3003971","Erm(44)v"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003974","l":"Cutibacterium acnes gyrA conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3003974","Cutibacterium acnes gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"ARO:3004057","l":"23S rRNA with mutation conferring resistance to linezolid antibiotics","na":2,"nb":1,"a":[["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3004058","Staphylococcus aureus 23S rRNA with mutation conferring resistance to linezolid"]],"b":[["antibacterial/linezolid.html","linezolid"]]},{"id":"ARO:3004070","l":"MexEF-OprN with MvaT deletion conferring resistance to chloramphenicol and norfloxacin","na":1,"nb":2,"a":[["ARO%3A3004070","MexEF-OprN with MvaT deletion conferring resistance to chloramphenicol and norfloxacin"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3004086","l":"","na":1,"nb":2,"a":[["ARO%3A3004086","APH(3')-VIIIb"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004087","l":"","na":1,"nb":2,"a":[["ARO%3A3004087","APH(3')-IXa"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004089","l":"","na":1,"nb":2,"a":[["ARO%3A3004089","ANT(3')-IIa"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004090","l":"","na":1,"nb":2,"a":[["ARO%3A3004090","ANT(3')-IIb"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004091","l":"","na":1,"nb":2,"a":[["ARO%3A3004091","ANT(3')-IIc"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004096","l":"daptomycin resistant CdsA","na":2,"nb":1,"a":[["ARO%3A3004096","daptomycin resistant CdsA"],["ARO%3A3004097","Streptococcus mitis CdsA with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3004110","l":"MCR-2.1","na":1,"nb":2,"a":[["ARO%3A3004110","MCR-2.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004114","l":"porin OmpC","na":1,"nb":2,"a":[["ARO%3A3004114","porin OmpC"]],"b":[["antibacterial/cefaloridine.html","cefaloridine"],["antibacterial/cefazolin.html","cefazolin"]]},{"id":"ARO:3004122","l":"Klebsiella pneumoniae OmpK37","na":1,"nb":2,"a":[["ARO%3A3004122","Klebsiella pneumoniae OmpK37"]],"b":[["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"ARO:3004131","l":"Escherichia coli 23S rRNA with mutation conferring resistance to erythromycin and telithromycin","na":1,"nb":2,"a":[["ARO%3A3004131","Escherichia coli 23S rRNA with mutation conferring resistance to erythromycin and telithromycin"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/telithromycin.html","telithromycin"]]},{"id":"ARO:3004136","l":"Ethambutol resistant iniB","na":2,"nb":1,"a":[["ARO%3A3004136","Ethambutol resistant iniB"],["ARO%3A3004135","Mycobacterium tuberculosis iniB with mutation conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3004138","l":"Moraxella catarrhalis 23S rRNA with mutation conferring resistance to macrolide antibiotics","na":1,"nb":2,"a":[["ARO%3A3004138","Moraxella catarrhalis 23S rRNA with mutation conferring resistance to macrolide antibiotics"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004139","l":"MCR-3.1","na":1,"nb":2,"a":[["ARO%3A3004139","MCR-3.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004146","l":"cfrC","na":1,"nb":2,"a":[["ARO%3A3004146","cfrC"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"]]},{"id":"ARO:3004170","l":"Streptococcus pneumoniae 23S rRNA with mutation conferring resistance to macrolide antibiotics","na":1,"nb":2,"a":[["ARO%3A3004170","Streptococcus pneumoniae 23S rRNA with mutation conferring resistance to macrolide antibiotics"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3004177","l":"Mycoplasmopsis fermentans 23S rRNA with mutation conferring resistance to macrolide antibiotics","na":1,"nb":2,"a":[["ARO%3A3004177","Mycoplasmopsis fermentans 23S rRNA with mutation conferring resistance to macrolide antibiotics"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004194","l":"MCR-1.2","na":1,"nb":2,"a":[["ARO%3A3004194","MCR-1.2"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004285","l":"tunicamycin resistance protein","na":2,"nb":1,"a":[["ARO%3A3003059","tmrB"],["ARO%3A3004285","tunicamycin resistance protein"]],"b":[["antibacterial/tunicamycin.html","tunicamycin"]]},{"id":"ARO:3004325","l":"MCR-4.1","na":1,"nb":2,"a":[["ARO%3A3004325","MCR-4.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004332","l":"MCR-5.1","na":1,"nb":2,"a":[["ARO%3A3004332","MCR-5.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004466","l":"ICR-Mc","na":1,"nb":2,"a":[["ARO%3A3004466","ICR-Mc"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004490","l":"delamanid","na":2,"nb":1,"a":[["ARO%3A3007661","Mycobacterium tuberculosis ddn mutation conferring resistance to nitroimidazole antibiotics"],["ARO%3A3007849","Mycobacterium tuberculosis fgd1 with mutation conferring resistance to delamanid"]],"b":[["antibacterial/delamanid.html","delamanid"]]},{"id":"ARO:3004500","l":"MCR-3.11","na":1,"nb":2,"a":[["ARO%3A3004500","MCR-3.11"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004501","l":"MCR-6.1","na":1,"nb":2,"a":[["ARO%3A3004501","MCR-6.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004502","l":"MCR-2.2","na":1,"nb":2,"a":[["ARO%3A3004502","MCR-2.2"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004503","l":"MCR-3.6","na":1,"nb":2,"a":[["ARO%3A3004503","MCR-3.6"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004504","l":"MCR-3.10","na":1,"nb":2,"a":[["ARO%3A3004504","MCR-3.10"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004505","l":"MCR-3.5","na":1,"nb":2,"a":[["ARO%3A3004505","MCR-3.5"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004506","l":"MCR-1.10","na":1,"nb":2,"a":[["ARO%3A3004506","MCR-1.10"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004507","l":"MCR-1.9","na":1,"nb":2,"a":[["ARO%3A3004507","MCR-1.9"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004508","l":"MCR-3.9","na":1,"nb":2,"a":[["ARO%3A3004508","MCR-3.9"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004509","l":"MCR-3.8","na":1,"nb":2,"a":[["ARO%3A3004509","MCR-3.8"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004510","l":"MCR-3.7","na":1,"nb":2,"a":[["ARO%3A3004510","MCR-3.7"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004511","l":"MCR-3.2","na":1,"nb":2,"a":[["ARO%3A3004511","MCR-3.2"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004513","l":"MCR-1.6","na":1,"nb":2,"a":[["ARO%3A3004513","MCR-1.6"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004514","l":"MCR-1.3","na":1,"nb":2,"a":[["ARO%3A3004514","MCR-1.3"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004515","l":"MCR-1.4","na":1,"nb":2,"a":[["ARO%3A3004515","MCR-1.4"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004516","l":"MCR-8.1","na":1,"nb":2,"a":[["ARO%3A3004516","MCR-8.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004517","l":"MCR-7.1","na":1,"nb":2,"a":[["ARO%3A3004517","MCR-7.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004541","l":"mphK","na":1,"nb":2,"a":[["ARO%3A3004541","mphK"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/telithromycin.html","telithromycin"]]},{"id":"ARO:3004560","l":"murG transferase","na":2,"nb":1,"a":[["ARO%3A3004561","Clostridioides difficile murG with mutation conferring resistance to vancomycin"],["ARO%3A3004560","murG transferase"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3004563","l":"Clostridioides difficile rpoB with mutation conferring resistance to rifampicin","na":1,"nb":2,"a":[["ARO%3A3004563","Clostridioides difficile rpoB with mutation conferring resistance to rifampicin"]],"b":[["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3004569","l":"ICR-Mo","na":1,"nb":2,"a":[["ARO%3A3004569","ICR-Mo"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004574","l":"Acinetobacter baumannii AbaQ","na":1,"nb":2,"a":[["ARO%3A3004574","Acinetobacter baumannii AbaQ"]],"b":[["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3004577","l":"Acinetobacter baumannii AmvA","na":1,"nb":2,"a":[["ARO%3A3004577","Acinetobacter baumannii AmvA"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3004581","l":"tet(48)","na":1,"nb":2,"a":[["ARO%3A3004581","tet(48)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004582","l":"tet(49)","na":1,"nb":2,"a":[["ARO%3A3004582","tet(49)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004584","l":"tet(50)","na":1,"nb":2,"a":[["ARO%3A3004584","tet(50)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004586","l":"tet(51)","na":1,"nb":2,"a":[["ARO%3A3004586","tet(51)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004587","l":"tet(52)","na":1,"nb":2,"a":[["ARO%3A3004587","tet(52)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004590","l":"tet(54)","na":1,"nb":2,"a":[["ARO%3A3004590","tet(54)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004600","l":"LnuH","na":1,"nb":2,"a":[["ARO%3A3004600","LnuH"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3004603","l":"tet(56)","na":1,"nb":2,"a":[["ARO%3A3004603","tet(56)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004613","l":"tet(47)","na":1,"nb":2,"a":[["ARO%3A3004613","tet(47)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004616","l":"Mycoplasma genitalium 23S rRNA mutations confers resistance to fluoroquinolone and macrolide antibiotics","na":1,"nb":2,"a":[["ARO%3A3004616","Mycoplasma genitalium 23S rRNA mutations confers resistance to fluoroquinolone and macrolide antibiotics"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3004626","l":"Erm(49)","na":1,"nb":2,"a":[["ARO%3A3004626","Erm(49)"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004641","l":"","na":1,"nb":2,"a":[["ARO%3A3004641","AAC(6')-I-43"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3004654","l":"Clostridioides difficile 23S rRNA with mutation conferring resistance to erythromycin and clindamycin","na":1,"nb":2,"a":[["ARO%3A3004654","Clostridioides difficile 23S rRNA with mutation conferring resistance to erythromycin and clindamycin"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004662","l":"MCR-3.3","na":1,"nb":2,"a":[["ARO%3A3004662","MCR-3.3"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004666","l":"pexA","na":1,"nb":2,"a":[["ARO%3A3004666","pexA"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"]]},{"id":"ARO:3004678","l":"rmtE","na":1,"nb":2,"a":[["ARO%3A3004678","rmtE"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamycin-a.html","gentamycin A"]]},{"id":"ARO:3004680","l":"","na":1,"nb":2,"a":[["ARO%3A3004680","APH(3')-VIIIa"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004682","l":"aadA27","na":1,"nb":2,"a":[["ARO%3A3004682","aadA27"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004684","l":"MCR-9.1","na":1,"nb":2,"a":[["ARO%3A3004684","MCR-9.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004685","l":"MCR-1.5","na":1,"nb":2,"a":[["ARO%3A3004685","MCR-1.5"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004686","l":"MCR-1.7","na":1,"nb":2,"a":[["ARO%3A3004686","MCR-1.7"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004687","l":"MCR-1.8","na":1,"nb":2,"a":[["ARO%3A3004687","MCR-1.8"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004688","l":"MCR-1.11","na":1,"nb":2,"a":[["ARO%3A3004688","MCR-1.11"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004689","l":"MCR-1.12","na":1,"nb":2,"a":[["ARO%3A3004689","MCR-1.12"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004690","l":"MCR-1.13","na":1,"nb":2,"a":[["ARO%3A3004690","MCR-1.13"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004691","l":"MCR-3.4","na":1,"nb":2,"a":[["ARO%3A3004691","MCR-3.4"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004692","l":"aadA10","na":1,"nb":2,"a":[["ARO%3A3004692","aadA10"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004693","l":"MCR-3.12","na":1,"nb":2,"a":[["ARO%3A3004693","MCR-3.12"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004694","l":"MCR-4.2","na":1,"nb":2,"a":[["ARO%3A3004694","MCR-4.2"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004695","l":"MCR-4.3","na":1,"nb":2,"a":[["ARO%3A3004695","MCR-4.3"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004696","l":"MCR-4.4","na":1,"nb":2,"a":[["ARO%3A3004696","MCR-4.4"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004697","l":"MCR-4.5","na":1,"nb":2,"a":[["ARO%3A3004697","MCR-4.5"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004698","l":"MCR-5.2","na":1,"nb":2,"a":[["ARO%3A3004698","MCR-5.2"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004704","l":"aadA8b","na":1,"nb":2,"a":[["ARO%3A3004704","aadA8b"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004719","l":"tet(X3)","na":1,"nb":2,"a":[["ARO%3A3004719","tet(X3)"]],"b":[["antibacterial/tetracycline.html","tetracycline"],["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:3004720","l":"tet(X4)","na":1,"nb":2,"a":[["ARO%3A3004720","tet(X4)"]],"b":[["antibacterial/tetracycline.html","tetracycline"],["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:3004721","l":"Mycobacterium tuberculosis rpsA mutations conferring resistance to pyrazinamide","na":2,"nb":1,"a":[["ARO%3A3004721","Mycobacterium tuberculosis rpsA mutations conferring resistance to pyrazinamide"],["ARO%3A3004722","pyrazinamide resistant rpsA"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004832","l":"Neisseria gonorrhoeae PBP2 conferring resistance to beta-lactam antibiotics","na":1,"nb":2,"a":[["ARO%3A3004832","Neisseria gonorrhoeae PBP2 conferring resistance to beta-lactam antibiotics"]],"b":[["antibacterial/cefixime.html","cefixime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3004851","l":"Neisseria gonorrhoeae mtrR with mutation conferring resistance","na":1,"nb":2,"a":[["ARO%3A3004851","Neisseria gonorrhoeae mtrR with mutation conferring resistance"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004918","l":"Mycobacterium tuberculosis eccB5 conferring resistance to fluoroquinolones","na":2,"nb":1,"a":[["ARO%3A3004918","Mycobacterium tuberculosis eccB5 conferring resistance to fluoroquinolones"],["ARO%3A3004919","Mycobacterium tuberculosis eccC5 conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3004930","l":"Mycobacterium tuberculosis nat mutations conferring resistance to isoniazid","na":2,"nb":1,"a":[["ARO%3A3004910","isoniazid resistant nat"],["ARO%3A3004930","Mycobacterium tuberculosis nat mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004960","l":"Mycobacterium tuberculosis ponA1 mutations conferring resistance to rifabutin","na":1,"nb":2,"a":[["ARO%3A3004960","Mycobacterium tuberculosis ponA1 mutations conferring resistance to rifabutin"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3004965","l":"streptomycin resistant whib7","na":2,"nb":1,"a":[["ARO%3A3004968","Mycobacterium tuberculosis whib7 mutation conferring resistance to streptomycin"],["ARO%3A3004965","streptomycin resistant whib7"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004966","l":"Kanamycin resistant whib7","na":2,"nb":1,"a":[["ARO%3A3004966","Kanamycin resistant whib7"],["ARO%3A3004967","Mycobacterium tuberculosis whib7 mutations confer resistance to kanamycin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004994","l":"Mycobacterium tuberculosis rpoC mutations confer resistance to rifampicin","na":1,"nb":2,"a":[["ARO%3A3004994","Mycobacterium tuberculosis rpoC mutations confer resistance to rifampicin"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3004998","l":"rifampicin resistant rpoA","na":2,"nb":1,"a":[["ARO%3A3004999","Mycobacterium tuberculosis rpoA mutations confer resistance to rifampicin"],["ARO%3A3004998","rifampicin resistant rpoA"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3005023","l":"cfrE","na":1,"nb":2,"a":[["ARO%3A3005023","cfrE"]],"b":[["antibacterial/thiamphenicol.html","thiamphenicol"],["antibacterial/tiamulin.html","tiamulin"]]},{"id":"ARO:3005044","l":"OmpA","na":1,"nb":2,"a":[["ARO%3A3005044","OmpA"]],"b":[["antibacterial/defensin.html","defensin"],["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3005049","l":"CrcB","na":1,"nb":2,"a":[["ARO%3A3005049","CrcB"]],"b":[["antibacterial/gentamicin.html","gentamicin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005052","l":"LpsA","na":1,"nb":2,"a":[["ARO%3A3005052","LpsA"]],"b":[["antibacterial/defensin.html","defensin"],["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3005053","l":"ArnT","na":1,"nb":2,"a":[["ARO%3A3005053","ArnT"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3005061","l":"AAC(3)-IVb","na":1,"nb":2,"a":[["ARO%3A3005061","AAC(3)-IVb"]],"b":[["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005062","l":"","na":1,"nb":2,"a":[["ARO%3A3005062","ANT(3')-Ib"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3005081","l":"Thermus thermophilus uL3 mutations conferring resistance to pleuromutilin antibiotics","na":2,"nb":1,"a":[["ARO%3A3005082","Ribosomal protein mutation conferring resistance to pleuromutilin antibiotics"],["ARO%3A3005081","Thermus thermophilus uL3 mutations conferring resistance to pleuromutilin antibiotics"]],"b":[["antibacterial/tiamulin.html","tiamulin"]]},{"id":"ARO:3005221","l":"MCR-3.41","na":1,"nb":2,"a":[["ARO%3A3005221","MCR-3.41"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007023","l":"NDM-33","na":1,"nb":2,"a":[["ARO%3A3007023","NDM-33"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3007029","l":"salE","na":1,"nb":2,"a":[["ARO%3A3007029","salE"]],"b":[["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"]]},{"id":"ARO:3007042","l":"msr(G)","na":1,"nb":2,"a":[["ARO%3A3007042","msr(G)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3007044","l":"mef(F)","na":1,"nb":2,"a":[["ARO%3A3007044","mef(F)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3007051","l":"Helicobacter pylori rpoB mutation conferring resistance to rifampicin","na":1,"nb":2,"a":[["ARO%3A3007051","Helicobacter pylori rpoB mutation conferring resistance to rifampicin"]],"b":[["antibacterial/levofloxacin.html","levofloxacin"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3007053","l":"Helicobacter pylori gyrB conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3007053","Helicobacter pylori gyrB conferring resistance to fluoroquinolones"]],"b":[["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3007055","l":"Helicobacter pylori rdxA mutation conferring resistance to metronidazole","na":2,"nb":1,"a":[["ARO%3A3007056","Antibiotic resistant Helicobacter pylori nitroreductase"],["ARO%3A3007055","Helicobacter pylori rdxA mutation conferring resistance to metronidazole"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007070","l":"MCR-1.33","na":1,"nb":2,"a":[["ARO%3A3007070","MCR-1.33"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007118","l":"crxA","na":1,"nb":2,"a":[["ARO%3A3007118","crxA"]],"b":[["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3007137","l":"mcr-10.1","na":1,"nb":2,"a":[["ARO%3A3007137","mcr-10.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007158","l":"","na":2,"nb":1,"a":[["ARO%3A3003976","16S rRNA with mutation conferring resistance to pactamycin"],["ARO%3A3003977","Halobacterium salinarum 16S rRNA mutation conferring resistance to pactamycin"]],"b":[["antibacterial/pactamycin.html","pactamycin"]]},{"id":"ARO:3007160","l":"","na":2,"nb":1,"a":[["ARO%3A3004859","Neisseria gonorrhoeae gyrB conferring resistance to zoliflodacin"],["ARO%3A3005000","Zoliflodacin resistant gyrB"]],"b":[["antibacterial/zoliflodacin.html","zoliflodacin"]]},{"id":"ARO:3007187","l":"glycopeptide resistance gene cluster vanP","na":1,"nb":2,"a":[["ARO%3A3007187","glycopeptide resistance gene cluster vanP"]],"b":[["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3007199","l":"PAM-1","na":1,"nb":2,"a":[["ARO%3A3007199","PAM-1"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/doripenem.html","doripenem"]]},{"id":"ARO:3007203","l":"Klebsiella pneumoniae mutant PhoQ conferring resistance to colistin","na":1,"nb":2,"a":[["ARO%3A3007203","Klebsiella pneumoniae mutant PhoQ conferring resistance to colistin"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007227","l":"MCR-8.3","na":1,"nb":2,"a":[["ARO%3A3007227","MCR-8.3"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007228","l":"MCR-8.4","na":1,"nb":2,"a":[["ARO%3A3007228","MCR-8.4"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007229","l":"MCR-8.2","na":1,"nb":2,"a":[["ARO%3A3007229","MCR-8.2"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007230","l":"MCR-1.34","na":1,"nb":2,"a":[["ARO%3A3007230","MCR-1.34"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007231","l":"MCR-4.6","na":1,"nb":2,"a":[["ARO%3A3007231","MCR-4.6"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007232","l":"MCR-1.27","na":1,"nb":2,"a":[["ARO%3A3007232","MCR-1.27"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007233","l":"MCR-1.18","na":1,"nb":2,"a":[["ARO%3A3007233","MCR-1.18"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007234","l":"MCR-1.23","na":1,"nb":2,"a":[["ARO%3A3007234","MCR-1.23"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007235","l":"MCR-1.20","na":1,"nb":2,"a":[["ARO%3A3007235","MCR-1.20"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007236","l":"MCR-1.28","na":1,"nb":2,"a":[["ARO%3A3007236","MCR-1.28"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007237","l":"MCR-1.21","na":1,"nb":2,"a":[["ARO%3A3007237","MCR-1.21"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007238","l":"MCR-1.16","na":1,"nb":2,"a":[["ARO%3A3007238","MCR-1.16"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007239","l":"MCR-1.22","na":1,"nb":2,"a":[["ARO%3A3007239","MCR-1.22"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007240","l":"MCR-1.19","na":1,"nb":2,"a":[["ARO%3A3007240","MCR-1.19"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007241","l":"MCR-1.29","na":1,"nb":2,"a":[["ARO%3A3007241","MCR-1.29"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007242","l":"MCR-1.30","na":1,"nb":2,"a":[["ARO%3A3007242","MCR-1.30"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007243","l":"MCR-1.24","na":1,"nb":2,"a":[["ARO%3A3007243","MCR-1.24"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007244","l":"MCR-1.17","na":1,"nb":2,"a":[["ARO%3A3007244","MCR-1.17"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007245","l":"MCR-1.31","na":1,"nb":2,"a":[["ARO%3A3007245","MCR-1.31"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007246","l":"MCR-1.14","na":1,"nb":2,"a":[["ARO%3A3007246","MCR-1.14"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007247","l":"MCR-1.25","na":1,"nb":2,"a":[["ARO%3A3007247","MCR-1.25"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007248","l":"MCR-3.33","na":1,"nb":2,"a":[["ARO%3A3007248","MCR-3.33"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007249","l":"MCR-3.14","na":1,"nb":2,"a":[["ARO%3A3007249","MCR-3.14"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007250","l":"MCR-3.37","na":1,"nb":2,"a":[["ARO%3A3007250","MCR-3.37"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007251","l":"MCR-3.38","na":1,"nb":2,"a":[["ARO%3A3007251","MCR-3.38"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007252","l":"MCR-3.15","na":1,"nb":2,"a":[["ARO%3A3007252","MCR-3.15"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007253","l":"MCR-3.27","na":1,"nb":2,"a":[["ARO%3A3007253","MCR-3.27"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007254","l":"MCR-3.32","na":1,"nb":2,"a":[["ARO%3A3007254","MCR-3.32"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007255","l":"MCR-3.31","na":1,"nb":2,"a":[["ARO%3A3007255","MCR-3.31"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007256","l":"MCR-3.23","na":1,"nb":2,"a":[["ARO%3A3007256","MCR-3.23"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007257","l":"MCR-3.36","na":1,"nb":2,"a":[["ARO%3A3007257","MCR-3.36"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007258","l":"MCR-3.25","na":1,"nb":2,"a":[["ARO%3A3007258","MCR-3.25"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007259","l":"MCR-3.22","na":1,"nb":2,"a":[["ARO%3A3007259","MCR-3.22"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007260","l":"MCR-3.16","na":1,"nb":2,"a":[["ARO%3A3007260","MCR-3.16"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007261","l":"MCR-3.26","na":1,"nb":2,"a":[["ARO%3A3007261","MCR-3.26"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007262","l":"MCR-3.21","na":1,"nb":2,"a":[["ARO%3A3007262","MCR-3.21"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007263","l":"MCR-3.18","na":1,"nb":2,"a":[["ARO%3A3007263","MCR-3.18"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007264","l":"MCR-3.40","na":1,"nb":2,"a":[["ARO%3A3007264","MCR-3.40"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007265","l":"MCR-3.24","na":1,"nb":2,"a":[["ARO%3A3007265","MCR-3.24"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007266","l":"MCR-3.20","na":1,"nb":2,"a":[["ARO%3A3007266","MCR-3.20"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007267","l":"MCR-3.35","na":1,"nb":2,"a":[["ARO%3A3007267","MCR-3.35"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007268","l":"MCR-3.34","na":1,"nb":2,"a":[["ARO%3A3007268","MCR-3.34"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007269","l":"MCR-3.13","na":1,"nb":2,"a":[["ARO%3A3007269","MCR-3.13"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007270","l":"MCR-3.28","na":1,"nb":2,"a":[["ARO%3A3007270","MCR-3.28"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007271","l":"MCR-3.39","na":1,"nb":2,"a":[["ARO%3A3007271","MCR-3.39"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007272","l":"MCR-3.29","na":1,"nb":2,"a":[["ARO%3A3007272","MCR-3.29"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007273","l":"MCR-3.19","na":1,"nb":2,"a":[["ARO%3A3007273","MCR-3.19"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007274","l":"MCR-10.5","na":1,"nb":2,"a":[["ARO%3A3007274","MCR-10.5"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007275","l":"MCR-10.3","na":1,"nb":2,"a":[["ARO%3A3007275","MCR-10.3"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007276","l":"MCR-10.4","na":1,"nb":2,"a":[["ARO%3A3007276","MCR-10.4"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007277","l":"MCR-10.2","na":1,"nb":2,"a":[["ARO%3A3007277","MCR-10.2"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007278","l":"MCR-3.17","na":1,"nb":2,"a":[["ARO%3A3007278","MCR-3.17"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007279","l":"MCR-1.15","na":1,"nb":2,"a":[["ARO%3A3007279","MCR-1.15"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007280","l":"MCR-1.26","na":1,"nb":2,"a":[["ARO%3A3007280","MCR-1.26"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007281","l":"MCR-5.4","na":1,"nb":2,"a":[["ARO%3A3007281","MCR-5.4"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007282","l":"MCR-5.3","na":1,"nb":2,"a":[["ARO%3A3007282","MCR-5.3"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007283","l":"MCR-2.4","na":1,"nb":2,"a":[["ARO%3A3007283","MCR-2.4"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007284","l":"MCR-2.3","na":1,"nb":2,"a":[["ARO%3A3007284","MCR-2.3"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007285","l":"MCR-2.8","na":1,"nb":2,"a":[["ARO%3A3007285","MCR-2.8"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007286","l":"MCR-2.5","na":1,"nb":2,"a":[["ARO%3A3007286","MCR-2.5"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007287","l":"MCR-2.7","na":1,"nb":2,"a":[["ARO%3A3007287","MCR-2.7"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007288","l":"MCR-2.6","na":1,"nb":2,"a":[["ARO%3A3007288","MCR-2.6"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007289","l":"MCR-1.32","na":1,"nb":2,"a":[["ARO%3A3007289","MCR-1.32"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007375","l":"KPC-87","na":1,"nb":2,"a":[["ARO%3A3007375","KPC-87"]],"b":[["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3007402","l":"KPC-94","na":1,"nb":2,"a":[["ARO%3A3007402","KPC-94"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3007423","l":"Escherichia coli PBP3 mutants conferring resistance to beta-lactam antibiotics","na":1,"nb":2,"a":[["ARO%3A3007423","Escherichia coli PBP3 mutants conferring resistance to beta-lactam antibiotics"]],"b":[["antibacterial/ceftaroline.html","ceftaroline"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007493","l":"tet(63)","na":1,"nb":2,"a":[["ARO%3A3007493","tet(63)"]],"b":[["antibacterial/doxycycline.html","doxycycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007494","l":"tet(64)","na":1,"nb":2,"a":[["ARO%3A3007494","tet(64)"]],"b":[["antibacterial/doxycycline.html","doxycycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007498","l":"","na":1,"nb":2,"a":[["ARO%3A3007640","Candida spp. pleiotropic drug resistance factor 1"]],"b":[["antifungal/naftifine.html","naftifine"],["antifungal/terbinafine.html","terbinafine"]]},{"id":"ARO:3007533","l":"MCR-4.7","na":1,"nb":2,"a":[["ARO%3A3007533","MCR-4.7"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007553","l":"Candida spp. CDR1","na":1,"nb":2,"a":[["ARO%3A3007553","Candida spp. CDR1"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/miconazole.html","miconazole"]]},{"id":"ARO:3007554","l":"Candida spp. CDR2","na":1,"nb":2,"a":[["ARO%3A3007554","Candida spp. CDR2"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/terbinafine.html","terbinafine"]]},{"id":"ARO:3007661","l":"Mycobacterium tuberculosis ddn mutation conferring resistance to nitroimidazole antibiotics","na":1,"nb":2,"a":[["ARO%3A3007661","Mycobacterium tuberculosis ddn mutation conferring resistance to nitroimidazole antibiotics"]],"b":[["antibacterial/delamanid.html","delamanid"],["antibacterial/pretomanid.html","pretomanid"]]},{"id":"ARO:3007662","l":"Rv1877","na":1,"nb":2,"a":[["ARO%3A3007662","Rv1877"]],"b":[["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3007692","l":"Mycobacterium tuberculosis Rv2535c with mutation conferring resistance to bedaquiline","na":1,"nb":2,"a":[["ARO%3A3007692","Mycobacterium tuberculosis Rv2535c with mutation conferring resistance to bedaquiline"]],"b":[["antimycobacterial/bedaquiline.html","bedaquiline"],["antimycobacterial/clofazimine.html","clofazimine"]]},{"id":"ARO:3007751","l":"Salmonella isangi gyrA conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3007751","Salmonella isangi gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3007752","l":"Salmonella isangi gyrB conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3007752","Salmonella isangi gyrB conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3007861","l":"DYB-1","na":1,"nb":2,"a":[["ARO%3A3007861","DYB-1"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3009148","l":"MexJK","na":2,"nb":1,"a":[["ARO%3A3009148","MexJK"],["ARO%3A3003710","MexL"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3009153","l":"MexHI-OpmD","na":1,"nb":2,"a":[["ARO%3A3009153","MexHI-OpmD"]],"b":[["antibacterial/norfloxacin.html","norfloxacin"],["biocide/acriflavine.html","acriflavine"]]},{"id":"CHEBI:10023","l":"voriconazole","na":2,"nb":1,"a":[["RHEA%3A61912","voriconazole(in) + ATP + H2O = voriconazole(out) + ADP + phosphate + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"CHEBI:100246","l":"norfloxacin","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"CHEBI:10101","l":"zalcitabine","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.41","The Concentrative Nucleoside Transporter (CNT) Family"]],"b":[["antiviral/zalcitabine.html","zalcitabine"]]},{"id":"CHEBI:10110","l":"zidovudine","na":2,"nb":1,"a":[["TCDB%3A2.A.41","The Concentrative Nucleoside Transporter (CNT) Family"],["TCDB%3A2.A.60","The Organo Anion Transporter (OAT) Family"]],"b":[["antiviral/zidovudine.html","zidovudine"]]},{"id":"CHEBI:132426","l":"chondrochloren A","na":2,"nb":1,"a":[["EC%3A4.1.1.129","1'-carboxy-chondrochloren decarboxylase"],["RHEA%3A81491","1'-carboxy-chondrochloren A + FAD + 2 H(+) = chondrochloren A + FADH2 + CO2"]],"b":[["unspecified/chondrochloren-a.html","chondrochloren A"]]},{"id":"CHEBI:132442","l":"chondrochloren B","na":2,"nb":1,"a":[["EC%3A4.1.1.129","1'-carboxy-chondrochloren decarboxylase"],["RHEA%3A81495","1'-carboxy-chondrochloren B + FAD + 2 H(+) = chondrochloren B + FADH2 + CO2"]],"b":[["unspecified/chondrochloren-b.html","chondrochloren B"]]},{"id":"CHEBI:132987","l":"alliin zwitterion","na":2,"nb":1,"a":[["EC%3A4.4.1.4","alliin lyase"],["RHEA%3A54688","alliin = allylsulfenate + 2-aminoprop-2-enoate"]],"b":[["unspecified/alliin-zwitterion.html","alliin zwitterion"]]},{"id":"CHEBI:133907","l":"hypothiocyanous acid","na":2,"nb":1,"a":[["RHEA%3A69416","thiocyanate + H2O2 + H(+) = hypothiocyanous acid + H2O"],["MCSA%3A944","Lactoperoxidase"]],"b":[["antibacterial/hypothiocyanous-acid.html","hypothiocyanous acid"]]},{"id":"CHEBI:137041","l":"quinine(1+)","na":2,"nb":1,"a":[["EC%3A1.14.14.55","quinine 3-monooxygenase"],["RHEA%3A20149","quinine + reduced [NADPH--hemoprotein reductase] + O2 = 3-hydroxyquinine + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["antiprotozoal/quinine-1.html","quinine(1+)"]]},{"id":"CHEBI:137419","l":"","na":2,"nb":1,"a":[["EC%3A2.1.1.49","amine N-methyltransferase"],["RHEA%3A53924","a secondary amine + S-adenosyl-L-methionine = a methylated secondary amine + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antifungal/solasodine-1.html","solasodine(1+)"]]},{"id":"CHEBI:138224","l":"(13R)-epi-8,13-epoxylabd-14-ene","na":2,"nb":1,"a":[["EC%3A4.2.3.186","ent-13-epi-manoyl oxide synthase"],["RHEA%3A18721","ent-8alpha-hydroxylabd-13-en-15-yl diphosphate = ent-13-epi-manoyl oxide + diphosphate"]],"b":[["antibacterial/13r-epi-8-13-epoxylabd-14-ene.html","(13R)-epi-8,13-epoxylabd-14-ene"]]},{"id":"CHEBI:138945","l":"maniladiol","na":2,"nb":1,"a":[["EC%3A1.14.14.63","beta-amyrin 16beta-monooxygenase"],["RHEA%3A55440","beta-amyrin + reduced [NADPH--hemoprotein reductase] + O2 = maniladiol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["antimycobacterial/maniladiol.html","maniladiol"]]},{"id":"CHEBI:138961","l":"sugiol","na":2,"nb":1,"a":[["EC%3A1.14.14.65","sugiol synthase"],["RHEA%3A55456","ferruginol + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = sugiol + 2 oxidized [NADPH--hemoprotein reductase] + 3 H2O + 2 H(+)"]],"b":[["antiviral/sugiol.html","sugiol"]]},{"id":"CHEBI:140183","l":"","na":2,"nb":1,"a":[["EC%3A1.1.1.348","(3R)-2'-hydroxyisoflavanone reductase"],["RHEA%3A56284","a (3R,4R)-4,2'-dihydroxyisoflavan + NADP(+) = a (3R)-2'-hydroxyisoflavanone + NADPH + H(+)"]],"b":[["antibacterial/vestitone.html","vestitone"]]},{"id":"CHEBI:141992","l":"","na":2,"nb":1,"a":[["EC%3A1.14.14.162","flavanone 2-hydroxylase"],["RHEA%3A57584","a flavanone + reduced [NADPH--hemoprotein reductase] + O2 = a 2-hydroxyflavanone + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["antiviral/2s-2-7-dihydroxy-5-methoxy-6-8-dimethylflavanone.html","(2S)-2,7-dihydroxy-5-methoxy-6,8-dimethylflavanone"]]},{"id":"CHEBI:142061","l":"trichosetin(1−)","na":2,"nb":1,"a":[["RHEA%3A67328","(5S)-3-[(2E,6R,8E,10E,12E)-2,6-dimethyltetradeca-2,8,10,12-tetraenoyl]-5-(hydroxymethyl)pyrrolidine-2,4-dione = trichosetin"],["RHEA%3A57648","trichosetin + S-adenosyl-L-methionine = equisetin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/trichosetin-1.html","trichosetin(1−)"]]},{"id":"CHEBI:143285","l":"L-propargylglycine zwitterion","na":2,"nb":1,"a":[["RHEA%3A59892","L-2-amino-4-chloropent-4-enoate = L-propargylglycine + chloride + H(+)"],["RHEA%3A59896","L-propargylglycine + L-glutamate + ATP = L-gamma-glutamyl-L-propargylglycine + ADP + phosphate + H(+)"]],"b":[["unspecified/l-propargylglycine-zwitterion.html","L-propargylglycine zwitterion"]]},{"id":"CHEBI:145111","l":"isopatulin","na":2,"nb":1,"a":[["RHEA%3A62224","neopatulin + NADPH + H(+) = (E)-ascladiol + NADP(+)"],["RHEA%3A62220","phyllostine = neopatulin"]],"b":[["antibacterial/isopatulin.html","isopatulin"]]},{"id":"CHEBI:145874","l":"deoxyherqueinone(1−)","na":2,"nb":1,"a":[["RHEA%3A62664","(2'R)-atrovenetin + S-adenosyl-L-methionine = deoxyherqueinone + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A62668","deoxyherqueinone + NADPH + O2 + H(+) = herqueinone + NADP(+) + H2O"]],"b":[["antibacterial/deoxyherqueinone-1.html","deoxyherqueinone(1−)"]]},{"id":"CHEBI:146153","l":"ilicicolin B","na":2,"nb":1,"a":[["RHEA%3A63084","ilicicolin B + FADH2 + chloride + O2 = ilicicolin A + FAD + 2 H2O + H(+)"],["RHEA%3A63080","ilicicolinate B + AH2 + ATP = ilicicolin B + A + AMP + diphosphate"]],"b":[["unspecified/ilicicolin-b.html","ilicicolin B"]]},{"id":"CHEBI:15366","l":"acetic acid","na":2,"nb":1,"a":[["MCSA%3A431","acetylxylan esterase"],["MCSA%3A996","Peptidoglycan-N-acetylglucosamine deacetylase Bc1960"]],"b":[["biocide/acetic-acid.html","acetic acid"]]},{"id":"CHEBI:15390","l":"(+)-bisdechlorogeodin","na":2,"nb":1,"a":[["EC%3A1.21.3.4","sulochrin oxidase [(+)-bisdechlorogeodin-forming]"],["RHEA%3A24092","2 sulochrin + O2 + 2 H(+) = 2 (2S)-bisdechlorogeodin + 2 H2O"]],"b":[["unspecified/bisdechlorogeodin.html","(+)-bisdechlorogeodin"]]},{"id":"CHEBI:15391","l":"(−)-bisdechlorogeodin","na":2,"nb":1,"a":[["EC%3A1.21.3.5","sulochrin oxidase [(-)-bisdechlorogeodin-forming]"],["RHEA%3A22616","2 sulochrin + O2 + 2 H(+) = 2 (2R)-bisdechlorogeodin + 2 H2O"]],"b":[["unspecified/bisdechlorogeodin-15391.html","(−)-bisdechlorogeodin"]]},{"id":"CHEBI:15660","l":"(Z)-2-(2-furyl)-3-(5-nitro-2-furyl)acrylamide","na":2,"nb":1,"a":[["EC%3A5.2.1.6","furylfuramide isomerase"],["RHEA%3A21848","(E)-2-(2-furyl)-3-(5-nitro-2-furyl)acrylamide = (Z)-2-(2-furyl)-3-(5-nitro-2-furyl)acrylamide"]],"b":[["unspecified/z-2-2-furyl-3-5-nitro-2-furyl-acrylamide.html","(Z)-2-(2-furyl)-3-(5-nitro-2-furyl)acrylamide"]]},{"id":"CHEBI:15712","l":"2,3-dihydrobiochanin A","na":2,"nb":1,"a":[["EC%3A1.3.1.46","biochanin-A reductase"],["RHEA%3A12817","2,3-dihydrobiochanin A + NADP(+) = biochanin A + NADPH + 2 H(+)"]],"b":[["antifungal/2-3-dihydrobiochanin-a.html","2,3-dihydrobiochanin A"]]},{"id":"CHEBI:16196","l":"oleic acid","na":2,"nb":1,"a":[["TCDB%3A9.A.76","The Omega3 Fatty Acid Desaturase 3/Putative Transporter (FAD3) Family"],["proteintraitsmech%3ABIOLIP_OLA","OLA-binding site"]],"b":[["antibacterial/oleic-acid.html","oleic acid"]]},{"id":"CHEBI:16605","l":"allyl alcohol","na":2,"nb":1,"a":[["EC%3A1.1.1.54","allyl-alcohol dehydrogenase"],["RHEA%3A12168","allyl alcohol + NADP(+) = acrolein + NADPH + H(+)"]],"b":[["antibacterial/allyl-alcohol.html","allyl alcohol"]]},{"id":"CHEBI:16648","l":"","na":1,"nb":2,"a":[["MCSA%3A159","aryldialkylphosphatase"]],"b":[["antibacterial/dichlorvos.html","dichlorvos"],["antibacterial/naled.html","naled"]]},{"id":"CHEBI:16705","l":"6-aminopenicillanic acid","na":2,"nb":1,"a":[["MCSA%3A241","penicillin amidase (peptidase C59 family)"],["proteintraitsmech%3ABIOLIP_X1E","X1E-binding site"]],"b":[["unspecified/6-aminopenicillanic-acid.html","6-aminopenicillanic acid"]]},{"id":"CHEBI:16774","l":"(2-cis,6-trans)-farnesol","na":2,"nb":1,"a":[["EC%3A5.2.1.9","farnesol 2-isomerase"],["RHEA%3A13401","(2E,6E)-farnesol = (2Z,6E)-farnesol"]],"b":[["unspecified/2-cis-6-trans-farnesol.html","(2-cis,6-trans)-farnesol"]]},{"id":"CHEBI:167830","l":"isorhapontigenin","na":2,"nb":1,"a":[["EC%3A2.1.1.399","resveratrol 4'-O-methyltransferase"],["RHEA%3A82215","isorhapontigenin + S-adenosyl-L-methionine = 4'-O-methylisorhapontigenin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antiviral/isorhapontigenin.html","isorhapontigenin"]]},{"id":"CHEBI:17098","l":"veratraldehyde","na":2,"nb":1,"a":[["EC%3A1.11.1.14","lignin peroxidase"],["RHEA%3A48004","1-(3,4-dimethoxyphenyl)-2-(2-methoxyphenoxy)propane-1,3-diol + H2O2 = 3,4-dimethoxybenzaldehyde + guaiacol + glycolaldehyde + H2O"]],"b":[["antifungal/veratraldehyde.html","veratraldehyde"]]},{"id":"CHEBI:174376","l":"rhapontigenin","na":2,"nb":1,"a":[["EC%3A2.1.1.399","resveratrol 4'-O-methyltransferase"],["RHEA%3A82191","piceatannol + S-adenosyl-L-methionine = rhapontigenin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/rhapontigenin.html","rhapontigenin"]]},{"id":"CHEBI:17630","l":"kanamycin A","na":2,"nb":1,"a":[["MCSA%3A647","kanamycin nucleotidyltransferase"],["proteintraitsmech%3ABIOLIP_KAN","KAN-binding site"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"CHEBI:17695","l":"casbene","na":2,"nb":1,"a":[["EC%3A4.2.3.8","casbene synthase"],["RHEA%3A14901","(2E,6E,10E)-geranylgeranyl diphosphate = casbene + diphosphate"]],"b":[["antifungal/casbene.html","casbene"]]},{"id":"CHEBI:17909","l":"polysulfur","na":2,"nb":1,"a":[["EC%3A1.8.5.4","bacterial sulfide:quinone reductase"],["RHEA%3A30239","n a quinone + n hydrogen sulfide + n H(+) = polysulfur(n-2) + n a quinol"]],"b":[["antifungal/polysulfur.html","polysulfur"]]},{"id":"CHEBI:17939","l":"puromycin","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_PUY","PUY-binding site"]],"b":[["antibacterial/puromycin.html","puromycin"]]},{"id":"CHEBI:19129","l":"","na":1,"nb":2,"a":[["RHEA%3A86087","a steroid + reduced [NADPH--hemoprotein reductase] + O2 = a 11alpha-hydroxy steroid + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"],["antifungal/fr171456.html","FR171456"]]},{"id":"CHEBI:201384","l":"sartorypyrone D","na":2,"nb":1,"a":[["RHEA%3A80875","(S)-(2E,6E,10E)-epoxygeranylgeranyl-triacetate lactone = sartorypyrone D"],["RHEA%3A80883","sartorypyrone D + acetyl-CoA = sartorypyrone A + CoA"]],"b":[["antibacterial/sartorypyrone-d.html","sartorypyrone D"]]},{"id":"CHEBI:2469","l":"adefovir","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antiviral/adefovir.html","adefovir"]]},{"id":"CHEBI:26004","l":"","na":1,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antibacterial/eugenol.html","eugenol"],["antifungal/coniferyl-aldehyde.html","coniferyl aldehyde"]]},{"id":"CHEBI:26401","l":"purines","na":1,"nb":2,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antiviral/mercaptopurine.html","mercaptopurine"],["antiviral/valganciclovir.html","valganciclovir"]]},{"id":"CHEBI:26666","l":"","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.73","The Short Chain Fatty Acid Uptake (AtoE) Family"]],"b":[["antifungal/propionic-acid.html","propionic acid"]]},{"id":"CHEBI:26789","l":"","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_OI9","OI9-binding site"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"],["unspecified/streptothricin-d.html","streptothricin D"]]},{"id":"CHEBI:27446","l":"phenoxymethylpenicillin","na":2,"nb":1,"a":[["MCSA%3A241","penicillin amidase (peptidase C59 family)"],["proteintraitsmech%3ABIOLIP_PNV","PNV-binding site"]],"b":[["antibacterial/phenoxymethylpenicillin.html","phenoxymethylpenicillin"]]},{"id":"CHEBI:27641","l":"cycloheximide","na":2,"nb":1,"a":[["RHEA%3A61936","cycloheximide(in) + ATP + H2O = cycloheximide(out) + ADP + phosphate + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/cycloheximide.html","cycloheximide"]]},{"id":"CHEBI:27902","l":"tetracycline","na":2,"nb":1,"a":[["ARO%3A3000186","tet(M)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"CHEBI:28","l":"(R)-linalool","na":2,"nb":1,"a":[["EC%3A4.2.3.26","R-linalool synthase"],["RHEA%3A15809","(2E)-geranyl diphosphate + H2O = (R)-linalool + diphosphate"]],"b":[["unspecified/r-linalool.html","(R)-linalool"]]},{"id":"CHEBI:28283","l":"capsidiol","na":2,"nb":1,"a":[["EC%3A1.14.14.149","5-epiaristolochene 1,3-dihydroxylase"],["RHEA%3A28226","(+)-5-epi-aristolochene + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = capsidiol + 2 oxidized [NADPH--hemoprotein reductase] + 2 H2O + 2 H(+)"]],"b":[["antifungal/capsidiol.html","capsidiol"]]},{"id":"CHEBI:29007","l":"ceftriaxone","na":2,"nb":1,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"]],"b":[["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"CHEBI:2955","l":"azithromycin","na":2,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["proteintraitsmech%3ABIOLIP_ZIT","ZIT-binding site"]],"b":[["antibacterial/azithromycin.html","azithromycin"]]},{"id":"CHEBI:29673","l":"rifamycin SV","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]],"b":[["antimycobacterial/rifamycin-sv.html","rifamycin SV"]]},{"id":"CHEBI:29702","l":"undecylprodigiosin","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.B.102","The YedE/YeeE (YedE/YeeE) Family"]],"b":[["antibacterial/undecylprodigiosin.html","undecylprodigiosin"]]},{"id":"CHEBI:30746","l":"benzoic acid","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_BEZ","BEZ-binding site"]],"b":[["biocide/benzoic-acid.html","benzoic acid"],["biocide/carboxy-ptio.html","carboxy-PTIO"]]},{"id":"CHEBI:30751","l":"formic acid","na":2,"nb":1,"a":[["MCSA%3A38","GTP cyclohydrolase I"],["proteintraitsmech%3ABIOLIP_FMT","FMT-binding site"]],"b":[["antibacterial/formic-acid.html","formic acid"]]},{"id":"CHEBI:31000","l":"docosan-1-ol","na":2,"nb":1,"a":[["RHEA%3A81783","docosan-1-ol + (9Z)-octadecenoyl-CoA = 1-O-docosyl (9Z)-octadecenoate + CoA"],["RHEA%3A81731","docosanoyl-CoA + 2 NADPH + 2 H(+) = docosan-1-ol + 2 NADP(+) + CoA"]],"b":[["antiviral/docosan-1-ol.html","docosan-1-ol"]]},{"id":"CHEBI:31466","l":"dequalinium chloride","na":2,"nb":1,"a":[["TCDB%3A2.A.117","The Chlorhexadine Exporter (CHX) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antifungal/dequalinium-chloride.html","dequalinium chloride"]]},{"id":"CHEBI:32023","l":"plaunotol","na":2,"nb":1,"a":[["EC%3A1.14.14.146","geranylgeraniol 18-hydroxylase"],["RHEA%3A26233","(2E,6E,10E)-geranylgeraniol + reduced [NADPH--hemoprotein reductase] + O2 = plaunotol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["antibacterial/plaunotol.html","plaunotol"]]},{"id":"CHEBI:32199","l":"tetracenomycin B2","na":2,"nb":1,"a":[["EC%3A1.14.13.200","tetracenomycin A2 monooxygenase-diooxygenase"],["RHEA%3A76467","tetracenomycin B2 + 2 NADPH + 2 O2 + 2 H(+) = 8-demethyltetracenomycin C + 2 NADP(+) + H2O"]],"b":[["unspecified/tetracenomycin-b2.html","tetracenomycin B2"]]},{"id":"CHEBI:32215","l":"thiamphenicol","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_TH8","TH8-binding site"]],"b":[["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"CHEBI:3393","l":"carbenicillin","na":2,"nb":1,"a":[["TCDB%3A1.B.25","The Outer Membrane Porin (Opr) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/carbenicillin.html","carbenicillin"]]},{"id":"CHEBI:3440","l":"carvacrol","na":2,"nb":1,"a":[["RHEA%3A67412","alpha-terpinene + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = carvacrol + 2 oxidized [NADPH--hemoprotein reductase] + 3 H2O + 2 H(+)"],["RHEA%3A67404","gamma-terpinene + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = carvacrol + 2 oxidized [NADPH--hemoprotein reductase] + 3 H2O + 2 H(+)"]],"b":[["antifungal/carvacrol.html","carvacrol"]]},{"id":"CHEBI:35267","l":"","na":2,"nb":1,"a":[["EC%3A7.6.2.9","ABC-type quaternary amine transporter"],["RHEA%3A11036","a quaternary ammonium(out) + ATP + H2O = a quaternary ammonium(in) + ADP + phosphate + H(+)"]],"b":[["antifungal/rezafungin.html","rezafungin"]]},{"id":"CHEBI:35274","l":"","na":2,"nb":1,"a":[["TCDB%3A1.A.11","The Ammonium Transporter Channel (Amt) Family"],["TCDB%3A1.B.6","The OmpA-OmpF Porin (OOP) Family"]],"b":[["antifungal/validamycin-a-1.html","validamycin A(1+)"]]},{"id":"CHEBI:35986","l":"nonan-1-ol","na":2,"nb":1,"a":[["RHEA%3A44112","nonan-1-ol + hexadecanoyl-CoA = nonyl hexadecanoate + CoA"],["RHEA%3A58380","nonan-1-ol + NADP(+) = nonanal + NADPH + H(+)"]],"b":[["antifungal/nonan-1-ol.html","nonan-1-ol"]]},{"id":"CHEBI:3614","l":"chlorhexidine","na":2,"nb":1,"a":[["TCDB%3A2.A.117","The Chlorhexadine Exporter (CHX) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/chlorhexidine.html","chlorhexidine"]]},{"id":"CHEBI:368","l":"(S)-(−)-citronellal","na":2,"nb":1,"a":[["RHEA%3A60740","(S)-(-)-citronellal + NADP(+) + H2O = (S)-(-)-citronellate + NADPH + 2 H(+)"],["RHEA%3A60676","(S)-(-)-citronellol + NAD(+) = (S)-(-)-citronellal + NADH + H(+)"]],"b":[["antifungal/s-citronellal.html","(S)-(−)-citronellal"]]},{"id":"CHEBI:3732","l":"clarithromycin","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"CHEBI:37424","l":"","na":2,"nb":1,"a":[["EC%3A2.4.1.173","sterol 3beta-glucosyltransferase"],["RHEA%3A22724","a sterol + UDP-alpha-D-glucose = a sterol 3-beta-D-glucoside + UDP + H(+)"]],"b":[["antifungal/solasodine-3-%CE%B2-d-glucoside.html","solasodine 3-β-D-glucoside"]]},{"id":"CHEBI:3764","l":"clotrimazole","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antifungal/clotrimazole.html","clotrimazole"]]},{"id":"CHEBI:42452","l":"formycin A","na":2,"nb":1,"a":[["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"],["proteintraitsmech%3ABIOLIP_FMC","FMC-binding site"]],"b":[["unspecified/formycin-a.html","formycin A"]]},{"id":"CHEBI:42530","l":"peracetic acid","na":2,"nb":1,"a":[["RHEA%3A68392","peracetic acid + H2O = acetate + H2O2 + H(+)"],["proteintraitsmech%3ABIOLIP_F50","F50-binding site"]],"b":[["biocide/peracetic-acid.html","peracetic acid"]]},{"id":"CHEBI:44107","l":"malachite green cation","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_MGR","MGR-binding site"]],"b":[["antibacterial/malachite-green-cation.html","malachite green cation"]]},{"id":"CHEBI:443725","l":"fosmidomycin","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_FOM","FOM-binding site"]],"b":[["antibacterial/fosmidomycin.html","fosmidomycin"]]},{"id":"CHEBI:45081","l":"pentamidine","na":2,"nb":1,"a":[["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"],["TCDB%3A1.A.8","The Major Intrinsic Protein (MIP) Family"]],"b":[["antifungal/pentamidine.html","pentamidine"]]},{"id":"CHEBI:45285","l":"pyrazinecarboxamide","na":1,"nb":2,"a":[["RHEA%3A35063","pyrazinamide + H2O = pyrazine-2-carboxylate + NH4(+)"]],"b":[["antimycobacterial/n-butyl-5-4-hydroxyphenyl-6-oxo-1-6-dihydropyrazine-2-carboxamide.html","N-butyl-5-(4-hydroxyphenyl)-6-oxo-1,6-dihydropyrazine-2-carboxamide"],["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"CHEBI:45373","l":"sulfanilamide","na":2,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["proteintraitsmech%3ABIOLIP_SAN","SAN-binding site"]],"b":[["antibacterial/sulfanilamide.html","sulfanilamide"]]},{"id":"CHEBI:46202","l":"undecanal","na":2,"nb":1,"a":[["RHEA%3A68484","(2R)-2-hydroperoxydodecanoate + H(+) = undecanal + CO2 + H2O"],["RHEA%3A58408","undecan-1-ol + NADP(+) = undecanal + NADPH + H(+)"]],"b":[["antimycobacterial/undecanal.html","undecanal"]]},{"id":"CHEBI:48080","l":"brefeldin A","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["MCSA%3A453","Brefeldin A esterase"]],"b":[["antibacterial/brefeldin-a.html","brefeldin A"]]},{"id":"CHEBI:4877","l":"ethambutol","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_95E","95E-binding site"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"CHEBI:48981","l":"quinolin-8-ol","na":2,"nb":1,"a":[["RHEA%3A25924","quinolin-8-ol + A + H2O = 8-hydroxyquinolin-2(1H)-one + AH2"],["RHEA%3A72659","quinolin-8-ol + NADPH + O2 = 8-hydroxyquinoline N-oxide + NADP(+) + H2O"]],"b":[["antibacterial/quinolin-8-ol.html","quinolin-8-ol"]]},{"id":"CHEBI:50209","l":"sophoraflavanone G","na":2,"nb":1,"a":[["EC%3A2.5.1.71","leachianone-G 2'-dimethylallyltransferase"],["RHEA%3A10852","leachianone G + dimethylallyl diphosphate = sophoraflavanone G + diphosphate"]],"b":[["antiprotozoal/sophoraflavanone-g.html","sophoraflavanone G"]]},{"id":"CHEBI:50471","l":"","na":2,"nb":1,"a":[["EC%3A2.3.1.5","arylamine N-acetyltransferase"],["RHEA%3A16613","an arylamine + acetyl-CoA = an N-acetylarylamine + CoA"]],"b":[["antifungal/ferrostatin-1.html","ferrostatin-1"]]},{"id":"CHEBI:52086","l":"glyceollin III","na":2,"nb":1,"a":[["EC%3A1.14.14.135","glyceollin synthase"],["RHEA%3A26051","(6aS,11aS)-2-dimethylallyl-3,6a,9-trihydroxypterocarpan + reduced [NADPH--hemoprotein reductase] + O2 = glyceollin III + oxidized [NADPH--hemoprotein reductase] + 2 H2O + H(+)"]],"b":[["antifungal/glyceollin-iii.html","glyceollin III"]]},{"id":"CHEBI:52221","l":"","na":1,"nb":2,"a":[["RHEA%3A69264","a (Z)-N-(sulfonatooxy)alkanimidothioate = an isothiocyanate + sulfate"]],"b":[["antibacterial/benzyl-isothiocyanate.html","benzyl isothiocyanate"],["unspecified/allyl-isothiocyanate.html","allyl isothiocyanate"]]},{"id":"CHEBI:55517","l":"","na":1,"nb":2,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/trichothecin.html","trichothecin"],["unspecified/verrucarin-a.html","verrucarin A"]]},{"id":"CHEBI:57289","l":"blasticidin S(1+)","na":2,"nb":1,"a":[["EC%3A3.5.4.23","blasticidin-S deaminase"],["RHEA%3A10148","blasticidin S + H2O + H(+) = deaminohydroxyblasticidin S + NH4(+)"]],"b":[["antifungal/blasticidin-s-1.html","blasticidin S(1+)"]]},{"id":"CHEBI:61699","l":"(−)-α-gurjunene","na":2,"nb":1,"a":[["EC%3A4.2.3.72","alpha-gurjunene synthase"],["RHEA%3A29507","(2E,6E)-farnesyl diphosphate = (-)-alpha-gurjunene + diphosphate"]],"b":[["antibacterial/%CE%B1-gurjunene.html","(−)-α-gurjunene"]]},{"id":"CHEBI:62247","l":"(1R,2S)-epoxypropylphosphonate(1−)","na":2,"nb":1,"a":[["EC%3A1.11.1.23","(S)-2-hydroxypropylphosphonic acid epoxidase"],["RHEA%3A10808","(S)-2-hydroxypropylphosphonate + H2O2 = (1R,2S)-epoxypropylphosphonate + 2 H2O"]],"b":[["unspecified/1r-2s-epoxypropylphosphonate-1.html","(1R,2S)-epoxypropylphosphonate(1−)"]]},{"id":"CHEBI:64090","l":"tert-butyl hydroperoxide","na":2,"nb":1,"a":[["RHEA%3A69412","tert-butyl hydroperoxide + 2 glutathione = tert-butanol + glutathione disulfide + H2O"],["RHEA%3A63840","tert-butyl hydroperoxide + [thioredoxin]-dithiol = tert-butanol + [thioredoxin]-disulfide + H2O"]],"b":[["antibacterial/tert-butyl-hydroperoxide.html","tert-butyl hydroperoxide"]]},{"id":"CHEBI:67153","l":"(+)-larreatricin","na":2,"nb":1,"a":[["EC%3A1.14.99.47","(+)-larreatricin hydroxylase"],["RHEA%3A34259","(+)-larreatricin + AH2 + O2 = (+)-3'-hydroxylarreatricin + A + H2O"]],"b":[["antiviral/larreatricin.html","(+)-larreatricin"]]},{"id":"CHEBI:7518","l":"cis-trans-nepetalactone","na":2,"nb":1,"a":[["EC%3A1.1.1.419","nepetalactol dehydrogenase"],["RHEA%3A61428","cis-trans-nepetalactol + NAD(+) = cis-trans-nepetalactone + NADH + H(+)"]],"b":[["antibacterial/cis-trans-nepetalactone.html","cis-trans-nepetalactone"]]},{"id":"CHEBI:75561","l":"1-linoleoyl-sn-glycerol","na":2,"nb":1,"a":[["RHEA%3A41115","1-(9Z,12Z)-octadecadienoyl-sn-glycero-3-phosphocholine + H2O = 1-(9Z,12Z-octadecadienoyl)-sn-glycerol + phosphocholine + H(+)"],["RHEA%3A40603","1-(9Z,12Z-octadecadienoyl)-sn-glycerol + H2O = (9Z,12Z)-octadecadienoate + glycerol + H(+)"]],"b":[["antiviral/1-linoleoyl-sn-glycerol.html","1-linoleoyl-sn-glycerol"]]},{"id":"CHEBI:75616","l":"","na":2,"nb":1,"a":[["EC%3A2.3.1.60","gentamicin 3-N-acetyltransferase"],["RHEA%3A14441","gentamicin C + acetyl-CoA = N(3)-acetylgentamycin C + CoA + H(+)"]],"b":[["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"CHEBI:77152","l":"ginsenoside Rb2","na":2,"nb":1,"a":[["EC%3A3.2.1.191","ginsenosidase type III"],["RHEA%3A40739","(20S)-ginsenoside Rb2 + 2 H2O = (20S)-ginsenoside C-Y + 2 D-glucose"]],"b":[["antiviral/ginsenoside-rb2.html","ginsenoside Rb2"]]},{"id":"CHEBI:7731","l":"","na":2,"nb":1,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"CHEBI:77772","l":"ilicicolin H","na":2,"nb":1,"a":[["RHEA%3A64568","3-[(2E,4E,8S,10E,12Z)-4,8-dimethyltetradeca-2,4,10,12-tetraenoyl]-4-hydroxy-5-(4-hydroxyphenyl)-1,2-dihydropyridin-2-one = ilicicolin H"],["RHEA%3A64564","8-epi-ilicicolin H = ilicicolin H"]],"b":[["unspecified/ilicicolin-h.html","ilicicolin H"]]},{"id":"CHEBI:77885","l":"nocardicin E(2−)","na":2,"nb":1,"a":[["EC%3A2.5.1.38","isonocardicin synthase"],["RHEA%3A19845","nocardicin E + S-adenosyl-L-methionine = isonocardicin A + S-methyl-5'-thioadenosine + H(+)"]],"b":[["unspecified/nocardicin-e-2.html","nocardicin E(2−)"]]},{"id":"CHEBI:77985","l":"aclacinomycin Y zwitterion","na":2,"nb":1,"a":[["EC%3A1.3.3.14","aclacinomycin-A oxidase"],["RHEA%3A37791","aclacinomycin A + O2 = aclacinomycin Y + H2O2"]],"b":[["unspecified/aclacinomycin-y-zwitterion.html","aclacinomycin Y zwitterion"]]},{"id":"CHEBI:7809","l":"oxacillin","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/oxacillin.html","oxacillin"]]},{"id":"CHEBI:78327","l":"pseudobaptigenin(1−)","na":2,"nb":1,"a":[["EC%3A1.14.19.63","pseudobaptigenin synthase"],["RHEA%3A28238","calycosin + reduced [NADPH--hemoprotein reductase] + O2 = pseudobaptigenin + oxidized [NADPH--hemoprotein reductase] + 2 H2O + H(+)"]],"b":[["antiprotozoal/pseudobaptigenin-1.html","pseudobaptigenin(1−)"]]},{"id":"CHEBI:78884","l":"4-terpineol","na":2,"nb":1,"a":[["RHEA%3A60028","(2E)-geranyl diphosphate + H2O = 4-terpineol + diphosphate"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/4-terpineol.html","4-terpineol"]]},{"id":"CHEBI:80024","l":"aureothin","na":2,"nb":1,"a":[["EC%3A1.14.15.37","luteothin monooxygenase"],["RHEA%3A58824","luteothin + 4 reduced [2Fe-2S]-[ferredoxin] + 2 O2 + 4 H(+) = aureothin + 4 oxidized [2Fe-2S]-[ferredoxin] + 3 H2O"]],"b":[["antibacterial/aureothin.html","aureothin"]]},{"id":"CHEBI:81485","l":"osthenol","na":2,"nb":1,"a":[["EC%3A2.5.1.139","umbelliferone 6-dimethylallyltransferase"],["RHEA%3A51872","umbelliferone + dimethylallyl diphosphate = osthenol + diphosphate"]],"b":[["antifungal/osthenol.html","osthenol"]]},{"id":"CHEBI:82751","l":"cholesteryl arachidonate","na":2,"nb":1,"a":[["RHEA%3A53448","1-hexadecanoyl-2-(5Z,8Z,11Z,14Z-eicosatetraenoyl)-sn-glycero-3-phosphocholine + cholesterol = cholesteryl (5Z,8Z,11Z,14Z)-eicosatetraenoate + 1-hexadecanoyl-sn-glycero-3-phosphocholine"],["RHEA%3A42816","(5Z,8Z,11Z,14Z)-eicosatetraenoyl-CoA + cholesterol = cholesteryl (5Z,8Z,11Z,14Z)-eicosatetraenoate + CoA"]],"b":[["antibacterial/cholesteryl-arachidonate.html","cholesteryl arachidonate"]]},{"id":"CHEBI:8309","l":"polymyxin B1","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antibacterial/polymyxin-b1.html","polymyxin B1"]]},{"id":"CHEBI:8452","l":"3,6-diaminoacridine","na":2,"nb":1,"a":[["TCDB%3A2.A.117","The Chlorhexadine Exporter (CHX) Family"],["proteintraitsmech%3ABIOLIP_PRL","PRL-binding site"]],"b":[["antibacterial/3-6-diaminoacridine.html","3,6-diaminoacridine"]]},{"id":"CHEBI:86012","l":"oxetanocin A","na":2,"nb":1,"a":[["EC%3A3.1.3.112","4'-phosphooxetanocin A phosphatase"],["RHEA%3A81367","4'-phosphooxetanocin A + H2O = oxetanocin A + phosphate"]],"b":[["antibacterial/oxetanocin-a.html","oxetanocin A"]]},{"id":"CHEBI:87123","l":"tulipalin B","na":2,"nb":1,"a":[["EC%3A4.2.99.23","tuliposide B-converting enzyme"],["RHEA%3A38655","6-tuliposide B = tulipalin B + D-glucose"]],"b":[["antibacterial/tulipalin-b.html","tulipalin B"]]},{"id":"CHEBI:87124","l":"6-tuliposide B","na":2,"nb":1,"a":[["EC%3A4.2.99.23","tuliposide B-converting enzyme"],["RHEA%3A38655","6-tuliposide B = tulipalin B + D-glucose"]],"b":[["antibacterial/6-tuliposide-b.html","6-tuliposide B"]]},{"id":"CHEBI:90868","l":"validamycin B","na":2,"nb":1,"a":[["EC%3A1.14.11.52","validamycin A dioxygenase"],["RHEA%3A48752","validamycin A + 2-oxoglutarate + O2 = validamycin B + succinate + CO2 + H(+)"]],"b":[["antifungal/validamycin-b.html","validamycin B"]]},{"id":"CHEBI:9332","l":"sulfamethoxazole","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"CHEBI:9997","l":"pristinamycin IIA","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_VIR","VIR-binding site"]],"b":[["antibacterial/pristinamycin-iia.html","pristinamycin IIA"]]},{"id":"NCBITaxon:1159556","l":"Ustilaginoidea virens","na":2,"nb":1,"a":[["Pfam%3APF06966","Protein of unknown function (DUF1295)"],["TED%3AAF-A0A1B5L5W2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1B5L5W2-F1-model_v4_TED03"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"]]},{"id":"NCBITaxon:1654360","l":"Photobacterium galatheae","na":2,"nb":1,"a":[["TED%3AAF-A0A066RSN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A066RSN6-F1-model_v4_TED01"],["TED%3AAF-A0A066RLQ8-F1-model_v4_TED01","TED novel fold AF-A0A066RLQ8-F1-model_v4_TED01"]],"b":[["antibacterial/holomycin.html","holomycin"]]},{"id":"NCBITaxon:1907","l":"Streptomyces glaucescens","na":2,"nb":1,"a":[["Pfam%3APF04673","Polyketide synthesis cyclase"],["Pfam%3APF04655","Aminoglycoside/hydroxyurea antibiotic resistance kinase"]],"b":[["antibacterial/tetracenomycin-c.html","tetracenomycin C"]]},{"id":"NCBITaxon:5074","l":"Penicillium brevicompactum","na":2,"nb":1,"a":[["Pfam%3APF09227","Bubble protein"],["Pfam%3APF18558","Methyltransferase, Helix-turn-helix domain"]],"b":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]]},{"id":"NCBITaxon:52","l":"Chondromyces crocatus","na":2,"nb":1,"a":[["TED%3AAF-A0A0K1ER44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0K1ER44-F1-model_v4_TED01"],["TED%3AAF-A0A0K1E854-F1-model_v4_TED01","TED novel fold AF-A0A0K1E854-F1-model_v4_TED01"]],"b":[["unspecified/chondrochloren-a.html","chondrochloren A"]]},{"id":"NCBITaxon:536","l":"Chromobacterium violaceum","na":2,"nb":1,"a":[["TED%3AAF-A0A381EUD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A381EUD6-F1-model_v4_TED01"],["TED%3AAF-A0A447THJ9-F1-model_v4_TED01","TED novel fold AF-A0A447THJ9-F1-model_v4_TED01"]],"b":[["unspecified/romidepsin.html","romidepsin"]]},{"id":"NCBITaxon:5478","l":"Candida glabrata","na":2,"nb":1,"a":[["TED%3AAF-A0A0W0D8W7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0W0D8W7-F1-model_v4_TED02"],["TED%3AAF-A0A0W0D4K9-F1-model_v4_TED02","TED novel fold AF-A0A0W0D4K9-F1-model_v4_TED02"]],"b":[["antifungal/fluconazole.html","fluconazole"]]},{"id":"NCBITaxon:5661","l":"Leishmania donovani","na":2,"nb":1,"a":[["Pfam%3APF03037","Kinetoplastid membrane protein 11"],["Pfam%3APF03130","PBS lyase HEAT-like repeat"]],"b":[["antiprotozoal/dihydrobetulinic-acid.html","dihydrobetulinic acid"]]},{"id":"NCBITaxon:58346","l":"Streptomyces platensis","na":1,"nb":2,"a":[["PROSITE%3APS00999","Streptomyces subtilisin-type inhibitors signature"]],"b":[["antibacterial/platencin.html","platencin"],["antibacterial/platensimycin.html","platensimycin"]]},{"id":"UniProt:P02557","l":"","na":2,"nb":1,"a":[["ComplexPortal%3ACPX-1424","Tubulin alpha-beta heterodimeric complex, TUB1 variant"],["ComplexPortal%3ACPX-1425","Tubulin alpha-beta heterodimeric complex, TUB3 variant"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"UniProt:P0C6U8","l":"","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_TTT","TTT-binding site"]],"b":[["antibacterial/hexachlorophene.html","hexachlorophene"],["antifungal/bithionol.html","bithionol"]]},{"id":"ARO:0000042","l":"","na":1,"nb":1,"a":[["ARO%3A3000026","mepA"]],"b":[["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:0000062","l":"ceftriaxone","na":1,"nb":1,"a":[["ARO%3A3004835","Neisseria gonorrhoeae pilQ gene conferring resistance to beta-lactam"]],"b":[["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3000149","l":"FosA","na":1,"nb":1,"a":[["ARO%3A3000149","FosA"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3000166","l":"tet(B)","na":1,"nb":1,"a":[["ARO%3A3000166","tet(B)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000167","l":"tet(C)","na":1,"nb":1,"a":[["ARO%3A3000167","tet(C)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000168","l":"tet(D)","na":1,"nb":1,"a":[["ARO%3A3000168","tet(D)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000169","l":"rifampin","na":1,"nb":1,"a":[["ARO%3A3004960","Mycobacterium tuberculosis ponA1 mutations conferring resistance to rifabutin"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3000172","l":"FosB","na":1,"nb":1,"a":[["ARO%3A3000172","FosB"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3000173","l":"tet(E)","na":1,"nb":1,"a":[["ARO%3A3000173","tet(E)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000174","l":"tet(G)","na":1,"nb":1,"a":[["ARO%3A3000174","tet(G)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000175","l":"tet(H)","na":1,"nb":1,"a":[["ARO%3A3000175","tet(H)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000177","l":"tet(J)","na":1,"nb":1,"a":[["ARO%3A3000177","tet(J)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000178","l":"tet(K)","na":1,"nb":1,"a":[["ARO%3A3000178","tet(K)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000179","l":"tet(L)","na":1,"nb":1,"a":[["ARO%3A3000179","tet(L)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000180","l":"tetA(P)","na":1,"nb":1,"a":[["ARO%3A3000180","tetA(P)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000181","l":"tet(V)","na":1,"nb":1,"a":[["ARO%3A3000181","tet(V)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000182","l":"tet(Y)","na":1,"nb":1,"a":[["ARO%3A3000182","tet(Y)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000183","l":"tet(Z)","na":1,"nb":1,"a":[["ARO%3A3000183","tet(Z)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000198","l":"FosX","na":1,"nb":1,"a":[["ARO%3A3000198","FosX"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3000216","l":"acrB","na":1,"nb":1,"a":[["ARO%3A3000216","acrB"]],"b":[["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3000238","l":"glycopeptide resistance gene cluster VanB","na":1,"nb":1,"a":[["ARO%3A3000238","glycopeptide resistance gene cluster VanB"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000246","l":"glycopeptide resistance gene cluster VanC","na":1,"nb":1,"a":[["ARO%3A3000246","glycopeptide resistance gene cluster VanC"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000255","l":"glycopeptide resistance gene cluster VanF","na":1,"nb":1,"a":[["ARO%3A3000255","glycopeptide resistance gene cluster VanF"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000257","l":"glycopeptide resistance gene cluster VanG","na":1,"nb":1,"a":[["ARO%3A3000257","glycopeptide resistance gene cluster VanG"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000259","l":"glycopeptide resistance gene cluster VanE","na":1,"nb":1,"a":[["ARO%3A3000259","glycopeptide resistance gene cluster VanE"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000260","l":"glycopeptide resistance gene cluster VanL","na":1,"nb":1,"a":[["ARO%3A3000260","glycopeptide resistance gene cluster VanL"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000309","l":"emrD","na":1,"nb":1,"a":[["ARO%3A3000309","emrD"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3000343","l":"tap","na":1,"nb":1,"a":[["ARO%3A3000343","tap"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000380","l":"FosC","na":1,"nb":1,"a":[["ARO%3A3000380","FosC"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3000423","l":"FomA","na":1,"nb":1,"a":[["ARO%3A3000423","FomA"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3000449","l":"FomB","na":1,"nb":1,"a":[["ARO%3A3000449","FomB"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3000464","l":"Neisseria gonorrhoeae porin PIB (por)","na":1,"nb":1,"a":[["ARO%3A3000464","Neisseria gonorrhoeae porin PIB (por)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000476","l":"tet(31)","na":1,"nb":1,"a":[["ARO%3A3000476","tet(31)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000478","l":"tet(33)","na":1,"nb":1,"a":[["ARO%3A3000478","tet(33)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000481","l":"tet(35)","na":1,"nb":1,"a":[["ARO%3A3000481","tet(35)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000510","l":"Staphylococcus aureus mupB conferring resistance to mupirocin","na":1,"nb":1,"a":[["ARO%3A3000510","Staphylococcus aureus mupB conferring resistance to mupirocin"]],"b":[["antibacterial/mupirocin.html","mupirocin"]]},{"id":"ARO:3000521","l":"Staphylococcus aureus mupA conferring resistance to mupirocin","na":1,"nb":1,"a":[["ARO%3A3000521","Staphylococcus aureus mupA conferring resistance to mupirocin"]],"b":[["antibacterial/mupirocin.html","mupirocin"]]},{"id":"ARO:3000561","l":"tet(30)","na":1,"nb":1,"a":[["ARO%3A3000561","tet(30)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000565","l":"tet(38)","na":1,"nb":1,"a":[["ARO%3A3000565","tet(38)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000566","l":"tet(39)","na":1,"nb":1,"a":[["ARO%3A3000566","tet(39)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000567","l":"tet(40)","na":1,"nb":1,"a":[["ARO%3A3000567","tet(40)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000569","l":"tet(41)","na":1,"nb":1,"a":[["ARO%3A3000569","tet(41)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000572","l":"tet(42)","na":1,"nb":1,"a":[["ARO%3A3000572","tet(42)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000573","l":"tet(43)","na":1,"nb":1,"a":[["ARO%3A3000573","tet(43)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000614","l":"mef(E)","na":1,"nb":1,"a":[["ARO%3A3000614","mef(E)"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000866","l":"oleI","na":1,"nb":1,"a":[["ARO%3A3000866","oleI"]],"b":[["antibacterial/oleandomycin.html","oleandomycin"]]},{"id":"ARO:3000874","l":"TEM-2","na":1,"nb":1,"a":[["ARO%3A3000874","TEM-2"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000875","l":"TEM-3","na":1,"nb":1,"a":[["ARO%3A3000875","TEM-3"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000876","l":"TEM-4","na":1,"nb":1,"a":[["ARO%3A3000876","TEM-4"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000877","l":"TEM-5","na":1,"nb":1,"a":[["ARO%3A3000877","TEM-5"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000878","l":"TEM-6","na":1,"nb":1,"a":[["ARO%3A3000878","TEM-6"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000879","l":"TEM-7","na":1,"nb":1,"a":[["ARO%3A3000879","TEM-7"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000880","l":"TEM-8","na":1,"nb":1,"a":[["ARO%3A3000880","TEM-8"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000881","l":"TEM-9","na":1,"nb":1,"a":[["ARO%3A3000881","TEM-9"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000882","l":"TEM-10","na":1,"nb":1,"a":[["ARO%3A3000882","TEM-10"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000883","l":"TEM-11","na":1,"nb":1,"a":[["ARO%3A3000883","TEM-11"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000884","l":"TEM-12","na":1,"nb":1,"a":[["ARO%3A3000884","TEM-12"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000886","l":"TEM-15","na":1,"nb":1,"a":[["ARO%3A3000886","TEM-15"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000887","l":"TEM-16","na":1,"nb":1,"a":[["ARO%3A3000887","TEM-16"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000888","l":"TEM-17","na":1,"nb":1,"a":[["ARO%3A3000888","TEM-17"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000890","l":"TEM-19","na":1,"nb":1,"a":[["ARO%3A3000890","TEM-19"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000891","l":"TEM-20","na":1,"nb":1,"a":[["ARO%3A3000891","TEM-20"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000892","l":"TEM-21","na":1,"nb":1,"a":[["ARO%3A3000892","TEM-21"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000893","l":"TEM-22","na":1,"nb":1,"a":[["ARO%3A3000893","TEM-22"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000894","l":"TEM-24","na":1,"nb":1,"a":[["ARO%3A3000894","TEM-24"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000896","l":"TEM-26","na":1,"nb":1,"a":[["ARO%3A3000896","TEM-26"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000898","l":"TEM-28","na":1,"nb":1,"a":[["ARO%3A3000898","TEM-28"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000899","l":"TEM-29","na":1,"nb":1,"a":[["ARO%3A3000899","TEM-29"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000901","l":"TEM-31","na":1,"nb":1,"a":[["ARO%3A3000901","TEM-31"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000902","l":"TEM-32","na":1,"nb":1,"a":[["ARO%3A3000902","TEM-32"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000903","l":"TEM-33","na":1,"nb":1,"a":[["ARO%3A3000903","TEM-33"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000904","l":"TEM-34","na":1,"nb":1,"a":[["ARO%3A3000904","TEM-34"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000905","l":"TEM-35","na":1,"nb":1,"a":[["ARO%3A3000905","TEM-35"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000906","l":"TEM-36","na":1,"nb":1,"a":[["ARO%3A3000906","TEM-36"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000907","l":"TEM-37","na":1,"nb":1,"a":[["ARO%3A3000907","TEM-37"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000909","l":"TEM-39","na":1,"nb":1,"a":[["ARO%3A3000909","TEM-39"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000910","l":"TEM-40","na":1,"nb":1,"a":[["ARO%3A3000910","TEM-40"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000911","l":"TEM-42","na":1,"nb":1,"a":[["ARO%3A3000911","TEM-42"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000912","l":"TEM-43","na":1,"nb":1,"a":[["ARO%3A3000912","TEM-43"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000914","l":"TEM-45","na":1,"nb":1,"a":[["ARO%3A3000914","TEM-45"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000916","l":"TEM-47","na":1,"nb":1,"a":[["ARO%3A3000916","TEM-47"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000917","l":"TEM-48","na":1,"nb":1,"a":[["ARO%3A3000917","TEM-48"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000918","l":"TEM-49","na":1,"nb":1,"a":[["ARO%3A3000918","TEM-49"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000921","l":"TEM-52","na":1,"nb":1,"a":[["ARO%3A3000921","TEM-52"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000922","l":"TEM-53","na":1,"nb":1,"a":[["ARO%3A3000922","TEM-53"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000923","l":"TEM-54","na":1,"nb":1,"a":[["ARO%3A3000923","TEM-54"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000924","l":"TEM-55","na":1,"nb":1,"a":[["ARO%3A3000924","TEM-55"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000926","l":"TEM-57","na":1,"nb":1,"a":[["ARO%3A3000926","TEM-57"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000927","l":"TEM-58","na":1,"nb":1,"a":[["ARO%3A3000927","TEM-58"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000928","l":"TEM-59","na":1,"nb":1,"a":[["ARO%3A3000928","TEM-59"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000929","l":"TEM-60","na":1,"nb":1,"a":[["ARO%3A3000929","TEM-60"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000931","l":"TEM-63","na":1,"nb":1,"a":[["ARO%3A3000931","TEM-63"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000934","l":"TEM-67","na":1,"nb":1,"a":[["ARO%3A3000934","TEM-67"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000935","l":"TEM-68","na":1,"nb":1,"a":[["ARO%3A3000935","TEM-68"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000936","l":"TEM-70","na":1,"nb":1,"a":[["ARO%3A3000936","TEM-70"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000937","l":"TEM-71","na":1,"nb":1,"a":[["ARO%3A3000937","TEM-71"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000938","l":"TEM-72","na":1,"nb":1,"a":[["ARO%3A3000938","TEM-72"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000939","l":"TEM-73","na":1,"nb":1,"a":[["ARO%3A3000939","TEM-73"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000941","l":"TEM-75","na":1,"nb":1,"a":[["ARO%3A3000941","TEM-75"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000942","l":"TEM-76","na":1,"nb":1,"a":[["ARO%3A3000942","TEM-76"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000944","l":"TEM-78","na":1,"nb":1,"a":[["ARO%3A3000944","TEM-78"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000946","l":"TEM-79","na":1,"nb":1,"a":[["ARO%3A3000946","TEM-79"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000947","l":"TEM-80","na":1,"nb":1,"a":[["ARO%3A3000947","TEM-80"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000948","l":"TEM-81","na":1,"nb":1,"a":[["ARO%3A3000948","TEM-81"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000949","l":"TEM-82","na":1,"nb":1,"a":[["ARO%3A3000949","TEM-82"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000950","l":"TEM-83","na":1,"nb":1,"a":[["ARO%3A3000950","TEM-83"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000951","l":"TEM-84","na":1,"nb":1,"a":[["ARO%3A3000951","TEM-84"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000952","l":"TEM-85","na":1,"nb":1,"a":[["ARO%3A3000952","TEM-85"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000953","l":"TEM-86","na":1,"nb":1,"a":[["ARO%3A3000953","TEM-86"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000954","l":"TEM-87","na":1,"nb":1,"a":[["ARO%3A3000954","TEM-87"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000955","l":"TEM-88","na":1,"nb":1,"a":[["ARO%3A3000955","TEM-88"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000956","l":"TEM-89","na":1,"nb":1,"a":[["ARO%3A3000956","TEM-89"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000957","l":"TEM-90","na":1,"nb":1,"a":[["ARO%3A3000957","TEM-90"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000958","l":"TEM-91","na":1,"nb":1,"a":[["ARO%3A3000958","TEM-91"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000959","l":"TEM-92","na":1,"nb":1,"a":[["ARO%3A3000959","TEM-92"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000960","l":"TEM-93","na":1,"nb":1,"a":[["ARO%3A3000960","TEM-93"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000961","l":"TEM-94","na":1,"nb":1,"a":[["ARO%3A3000961","TEM-94"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000962","l":"TEM-95","na":1,"nb":1,"a":[["ARO%3A3000962","TEM-95"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000963","l":"TEM-96","na":1,"nb":1,"a":[["ARO%3A3000963","TEM-96"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000964","l":"TEM-101","na":1,"nb":1,"a":[["ARO%3A3000964","TEM-101"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000965","l":"TEM-102","na":1,"nb":1,"a":[["ARO%3A3000965","TEM-102"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000967","l":"TEM-104","na":1,"nb":1,"a":[["ARO%3A3000967","TEM-104"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000968","l":"TEM-105","na":1,"nb":1,"a":[["ARO%3A3000968","TEM-105"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000969","l":"TEM-106","na":1,"nb":1,"a":[["ARO%3A3000969","TEM-106"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000970","l":"TEM-107","na":1,"nb":1,"a":[["ARO%3A3000970","TEM-107"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000971","l":"TEM-108","na":1,"nb":1,"a":[["ARO%3A3000971","TEM-108"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000972","l":"TEM-109","na":1,"nb":1,"a":[["ARO%3A3000972","TEM-109"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000973","l":"TEM-110","na":1,"nb":1,"a":[["ARO%3A3000973","TEM-110"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000974","l":"TEM-111","na":1,"nb":1,"a":[["ARO%3A3000974","TEM-111"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000975","l":"TEM-112","na":1,"nb":1,"a":[["ARO%3A3000975","TEM-112"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000976","l":"TEM-113","na":1,"nb":1,"a":[["ARO%3A3000976","TEM-113"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000977","l":"TEM-114","na":1,"nb":1,"a":[["ARO%3A3000977","TEM-114"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000978","l":"TEM-115","na":1,"nb":1,"a":[["ARO%3A3000978","TEM-115"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000979","l":"TEM-116","na":1,"nb":1,"a":[["ARO%3A3000979","TEM-116"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000980","l":"TEM-117","na":1,"nb":1,"a":[["ARO%3A3000980","TEM-117"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000981","l":"TEM-118","na":1,"nb":1,"a":[["ARO%3A3000981","TEM-118"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000982","l":"TEM-120","na":1,"nb":1,"a":[["ARO%3A3000982","TEM-120"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000983","l":"TEM-121","na":1,"nb":1,"a":[["ARO%3A3000983","TEM-121"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000984","l":"TEM-122","na":1,"nb":1,"a":[["ARO%3A3000984","TEM-122"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000985","l":"TEM-123","na":1,"nb":1,"a":[["ARO%3A3000985","TEM-123"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000986","l":"TEM-124","na":1,"nb":1,"a":[["ARO%3A3000986","TEM-124"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000987","l":"TEM-125","na":1,"nb":1,"a":[["ARO%3A3000987","TEM-125"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000988","l":"TEM-126","na":1,"nb":1,"a":[["ARO%3A3000988","TEM-126"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000989","l":"TEM-127","na":1,"nb":1,"a":[["ARO%3A3000989","TEM-127"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000990","l":"TEM-128","na":1,"nb":1,"a":[["ARO%3A3000990","TEM-128"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000993","l":"TEM-129","na":1,"nb":1,"a":[["ARO%3A3000993","TEM-129"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000994","l":"TEM-130","na":1,"nb":1,"a":[["ARO%3A3000994","TEM-130"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000995","l":"TEM-131","na":1,"nb":1,"a":[["ARO%3A3000995","TEM-131"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000996","l":"TEM-132","na":1,"nb":1,"a":[["ARO%3A3000996","TEM-132"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000997","l":"TEM-133","na":1,"nb":1,"a":[["ARO%3A3000997","TEM-133"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000998","l":"TEM-134","na":1,"nb":1,"a":[["ARO%3A3000998","TEM-134"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001000","l":"TEM-136","na":1,"nb":1,"a":[["ARO%3A3001000","TEM-136"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001001","l":"TEM-137","na":1,"nb":1,"a":[["ARO%3A3001001","TEM-137"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001002","l":"TEM-138","na":1,"nb":1,"a":[["ARO%3A3001002","TEM-138"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001003","l":"TEM-139","na":1,"nb":1,"a":[["ARO%3A3001003","TEM-139"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001004","l":"TEM-141","na":1,"nb":1,"a":[["ARO%3A3001004","TEM-141"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001005","l":"TEM-142","na":1,"nb":1,"a":[["ARO%3A3001005","TEM-142"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001006","l":"TEM-143","na":1,"nb":1,"a":[["ARO%3A3001006","TEM-143"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001007","l":"TEM-144","na":1,"nb":1,"a":[["ARO%3A3001007","TEM-144"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001012","l":"TEM-145","na":1,"nb":1,"a":[["ARO%3A3001012","TEM-145"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001013","l":"TEM-146","na":1,"nb":1,"a":[["ARO%3A3001013","TEM-146"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001014","l":"TEM-147","na":1,"nb":1,"a":[["ARO%3A3001014","TEM-147"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001015","l":"TEM-148","na":1,"nb":1,"a":[["ARO%3A3001015","TEM-148"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001016","l":"TEM-149","na":1,"nb":1,"a":[["ARO%3A3001016","TEM-149"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001017","l":"TEM-150","na":1,"nb":1,"a":[["ARO%3A3001017","TEM-150"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001018","l":"TEM-151","na":1,"nb":1,"a":[["ARO%3A3001018","TEM-151"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001019","l":"TEM-152","na":1,"nb":1,"a":[["ARO%3A3001019","TEM-152"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001020","l":"TEM-154","na":1,"nb":1,"a":[["ARO%3A3001020","TEM-154"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001021","l":"TEM-155","na":1,"nb":1,"a":[["ARO%3A3001021","TEM-155"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001022","l":"TEM-156","na":1,"nb":1,"a":[["ARO%3A3001022","TEM-156"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001023","l":"TEM-157","na":1,"nb":1,"a":[["ARO%3A3001023","TEM-157"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001024","l":"TEM-158","na":1,"nb":1,"a":[["ARO%3A3001024","TEM-158"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001025","l":"TEM-159","na":1,"nb":1,"a":[["ARO%3A3001025","TEM-159"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001026","l":"TEM-160","na":1,"nb":1,"a":[["ARO%3A3001026","TEM-160"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001028","l":"TEM-162","na":1,"nb":1,"a":[["ARO%3A3001028","TEM-162"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001029","l":"TEM-163","na":1,"nb":1,"a":[["ARO%3A3001029","TEM-163"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001030","l":"TEM-164","na":1,"nb":1,"a":[["ARO%3A3001030","TEM-164"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001032","l":"TEM-166","na":1,"nb":1,"a":[["ARO%3A3001032","TEM-166"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001033","l":"TEM-167","na":1,"nb":1,"a":[["ARO%3A3001033","TEM-167"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001034","l":"TEM-168","na":1,"nb":1,"a":[["ARO%3A3001034","TEM-168"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001035","l":"TEM-169","na":1,"nb":1,"a":[["ARO%3A3001035","TEM-169"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001037","l":"TEM-171","na":1,"nb":1,"a":[["ARO%3A3001037","TEM-171"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001041","l":"TEM-176","na":1,"nb":1,"a":[["ARO%3A3001041","TEM-176"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001042","l":"TEM-177","na":1,"nb":1,"a":[["ARO%3A3001042","TEM-177"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001043","l":"TEM-178","na":1,"nb":1,"a":[["ARO%3A3001043","TEM-178"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001044","l":"TEM-181","na":1,"nb":1,"a":[["ARO%3A3001044","TEM-181"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001045","l":"TEM-183","na":1,"nb":1,"a":[["ARO%3A3001045","TEM-183"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001046","l":"TEM-186","na":1,"nb":1,"a":[["ARO%3A3001046","TEM-186"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001047","l":"TEM-187","na":1,"nb":1,"a":[["ARO%3A3001047","TEM-187"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001048","l":"TEM-188","na":1,"nb":1,"a":[["ARO%3A3001048","TEM-188"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001049","l":"TEM-189","na":1,"nb":1,"a":[["ARO%3A3001049","TEM-189"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001050","l":"TEM-190","na":1,"nb":1,"a":[["ARO%3A3001050","TEM-190"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001051","l":"TEM-191","na":1,"nb":1,"a":[["ARO%3A3001051","TEM-191"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001052","l":"TEM-192","na":1,"nb":1,"a":[["ARO%3A3001052","TEM-192"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001053","l":"TEM-193","na":1,"nb":1,"a":[["ARO%3A3001053","TEM-193"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001054","l":"TEM-194","na":1,"nb":1,"a":[["ARO%3A3001054","TEM-194"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001055","l":"TEM-195","na":1,"nb":1,"a":[["ARO%3A3001055","TEM-195"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001056","l":"TEM-197","na":1,"nb":1,"a":[["ARO%3A3001056","TEM-197"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001057","l":"TEM-198","na":1,"nb":1,"a":[["ARO%3A3001057","TEM-198"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001058","l":"TEM-199","na":1,"nb":1,"a":[["ARO%3A3001058","TEM-199"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001059","l":"SHV-1","na":1,"nb":1,"a":[["ARO%3A3001059","SHV-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"]]},{"id":"ARO:3001209","l":"mecC","na":1,"nb":1,"a":[["ARO%3A3001209","mecC"]],"b":[["antibacterial/methicillin.html","methicillin"]]},{"id":"ARO:3001299","l":"tlrB conferring tylosin resistance","na":1,"nb":1,"a":[["ARO%3A3001299","tlrB conferring tylosin resistance"]],"b":[["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3001305","l":"ErmU","na":1,"nb":1,"a":[["ARO%3A3001305","ErmU"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3001313","l":"facT","na":1,"nb":1,"a":[["ARO%3A3001313","facT"]],"b":[["antibacterial/factumycin.html","factumycin"]]},{"id":"ARO:3001327","l":"MdtK","na":1,"nb":1,"a":[["ARO%3A3001327","MdtK"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3001329","l":"mdtG","na":1,"nb":1,"a":[["ARO%3A3001329","mdtG"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3001369","l":"TEM-153","na":1,"nb":1,"a":[["ARO%3A3001369","TEM-153"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001373","l":"TEM-182","na":1,"nb":1,"a":[["ARO%3A3001373","TEM-182"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001374","l":"TEM-185","na":1,"nb":1,"a":[["ARO%3A3001374","TEM-185"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001375","l":"TEM-184","na":1,"nb":1,"a":[["ARO%3A3001375","TEM-184"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001376","l":"TEM-196","na":1,"nb":1,"a":[["ARO%3A3001376","TEM-196"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001378","l":"TEM-201","na":1,"nb":1,"a":[["ARO%3A3001378","TEM-201"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001382","l":"TEM-205","na":1,"nb":1,"a":[["ARO%3A3001382","TEM-205"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001383","l":"TEM-206","na":1,"nb":1,"a":[["ARO%3A3001383","TEM-206"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001384","l":"TEM-207","na":1,"nb":1,"a":[["ARO%3A3001384","TEM-207"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001385","l":"TEM-208","na":1,"nb":1,"a":[["ARO%3A3001385","TEM-208"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001386","l":"TEM-209","na":1,"nb":1,"a":[["ARO%3A3001386","TEM-209"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001387","l":"TEM-210","na":1,"nb":1,"a":[["ARO%3A3001387","TEM-210"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001388","l":"TEM-211","na":1,"nb":1,"a":[["ARO%3A3001388","TEM-211"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001389","l":"TEM-212","na":1,"nb":1,"a":[["ARO%3A3001389","TEM-212"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001390","l":"TEM-213","na":1,"nb":1,"a":[["ARO%3A3001390","TEM-213"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001391","l":"TEM-214","na":1,"nb":1,"a":[["ARO%3A3001391","TEM-214"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001392","l":"TEM-215","na":1,"nb":1,"a":[["ARO%3A3001392","TEM-215"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001393","l":"TEM-216","na":1,"nb":1,"a":[["ARO%3A3001393","TEM-216"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001394","l":"TEM-217","na":1,"nb":1,"a":[["ARO%3A3001394","TEM-217"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001419","l":"OXA-24","na":1,"nb":1,"a":[["ARO%3A3001419","OXA-24"]],"b":[["antibacterial/bal30072.html","BAL30072"]]},{"id":"ARO:3001612","l":"OXA-51","na":1,"nb":1,"a":[["ARO%3A3001612","OXA-51"]],"b":[["antibacterial/bal30072.html","BAL30072"]]},{"id":"ARO:3001782","l":"OXA-48","na":1,"nb":1,"a":[["ARO%3A3001782","OXA-48"]],"b":[["antibacterial/temocillin.html","temocillin"]]},{"id":"ARO:3001817","l":"ACC-3","na":1,"nb":1,"a":[["ARO%3A3001817","ACC-3"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001819","l":"ACC-5","na":1,"nb":1,"a":[["ARO%3A3001819","ACC-5"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002355","l":"NDM-4","na":1,"nb":1,"a":[["ARO%3A3002355","NDM-4"]],"b":[["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3002508","l":"PDC-9","na":1,"nb":1,"a":[["ARO%3A3002508","PDC-9"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002509","l":"PDC-10","na":1,"nb":1,"a":[["ARO%3A3002509","PDC-10"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002522","l":"novA","na":1,"nb":1,"a":[["ARO%3A3002522","novA"]],"b":[["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3002538","l":"AAC(3)-IIIc","na":1,"nb":1,"a":[["ARO%3A3002538","AAC(3)-IIIc"]],"b":[["antibacterial/gentamycin-a.html","gentamycin A"]]},{"id":"ARO:3002541","l":"AAC(3)-VIIa","na":1,"nb":1,"a":[["ARO%3A3002541","AAC(3)-VIIa"]],"b":[["antibacterial/paromomycin.html","paromomycin"]]},{"id":"ARO:3002542","l":"AAC(3)-VIIIa","na":1,"nb":1,"a":[["ARO%3A3002542","AAC(3)-VIIIa"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3002543","l":"AAC(3)-IXa","na":1,"nb":1,"a":[["ARO%3A3002543","AAC(3)-IXa"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3002544","l":"AAC(3)-Xa","na":1,"nb":1,"a":[["ARO%3A3002544","AAC(3)-Xa"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3002599","l":"","na":1,"nb":1,"a":[["ARO%3A3002599","AAC(6')-30/AAC(6')-Ib' bifunctional protein"]],"b":[["antibacterial/gentamycin-a.html","gentamycin A"]]},{"id":"ARO:3002626","l":"ANT(6)-Ia","na":1,"nb":1,"a":[["ARO%3A3002626","ANT(6)-Ia"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002627","l":"aadK","na":1,"nb":1,"a":[["ARO%3A3002627","aadK"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002628","l":"aad(6)","na":1,"nb":1,"a":[["ARO%3A3002628","aad(6)"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002629","l":"ANT(6)-Ib","na":1,"nb":1,"a":[["ARO%3A3002629","ANT(6)-Ib"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002630","l":"ANT(9)-Ia","na":1,"nb":1,"a":[["ARO%3A3002630","ANT(9)-Ia"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3002631","l":"spd","na":1,"nb":1,"a":[["ARO%3A3002631","spd"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3002635","l":"","na":1,"nb":1,"a":[["ARO%3A3002635","APH(2')-IIa"]],"b":[["antibacterial/plazomicin.html","plazomicin"]]},{"id":"ARO:3002638","l":"","na":1,"nb":1,"a":[["ARO%3A3002638","APH(3')-Ia"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002639","l":"","na":1,"nb":1,"a":[["ARO%3A3002639","APH(3')-Ib"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002640","l":"","na":1,"nb":1,"a":[["ARO%3A3002640","APH(3')-Ic"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002655","l":"APH(4)-Ia","na":1,"nb":1,"a":[["ARO%3A3002655","APH(4)-Ia"]],"b":[["antibacterial/hygromycin-b.html","hygromycin B"]]},{"id":"ARO:3002656","l":"APH(4)-Ib","na":1,"nb":1,"a":[["ARO%3A3002656","APH(4)-Ib"]],"b":[["antibacterial/hygromycin-b.html","hygromycin B"]]},{"id":"ARO:3002657","l":"APH(6)-Ia","na":1,"nb":1,"a":[["ARO%3A3002657","APH(6)-Ia"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002658","l":"APH(6)-Ib","na":1,"nb":1,"a":[["ARO%3A3002658","APH(6)-Ib"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002659","l":"APH(6)-Ic","na":1,"nb":1,"a":[["ARO%3A3002659","APH(6)-Ic"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002660","l":"APH(6)-Id","na":1,"nb":1,"a":[["ARO%3A3002660","APH(6)-Id"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002661","l":"","na":1,"nb":1,"a":[["ARO%3A3002661","APH(7')-Ia"]],"b":[["antibacterial/hygromycin-b.html","hygromycin B"]]},{"id":"ARO:3002662","l":"APH(9)-Ia","na":1,"nb":1,"a":[["ARO%3A3002662","APH(9)-Ia"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3002663","l":"APH(9)-Ib","na":1,"nb":1,"a":[["ARO%3A3002663","APH(9)-Ib"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3002670","l":"cat","na":1,"nb":1,"a":[["ARO%3A3002670","cat"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002690","l":"Streptomyces lividans cmlR","na":1,"nb":1,"a":[["ARO%3A3002690","Streptomyces lividans cmlR"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002691","l":"Salmonella enterica cmlA","na":1,"nb":1,"a":[["ARO%3A3002691","Salmonella enterica cmlA"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002693","l":"cmlA1","na":1,"nb":1,"a":[["ARO%3A3002693","cmlA1"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002694","l":"cmlA4","na":1,"nb":1,"a":[["ARO%3A3002694","cmlA4"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002695","l":"cmlA5","na":1,"nb":1,"a":[["ARO%3A3002695","cmlA5"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002696","l":"cmlA6","na":1,"nb":1,"a":[["ARO%3A3002696","cmlA6"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002698","l":"cmlB","na":1,"nb":1,"a":[["ARO%3A3002698","cmlB"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002699","l":"cmlB1","na":1,"nb":1,"a":[["ARO%3A3002699","cmlB1"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002700","l":"cmlv","na":1,"nb":1,"a":[["ARO%3A3002700","cmlv"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002701","l":"Rhodococcus fascians cmr","na":1,"nb":1,"a":[["ARO%3A3002701","Rhodococcus fascians cmr"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002702","l":"cmrA","na":1,"nb":1,"a":[["ARO%3A3002702","cmrA"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002703","l":"cmx","na":1,"nb":1,"a":[["ARO%3A3002703","cmx"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002707","l":"QnrA1","na":1,"nb":1,"a":[["ARO%3A3002707","QnrA1"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002708","l":"QnrA2","na":1,"nb":1,"a":[["ARO%3A3002708","QnrA2"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002709","l":"QnrA3","na":1,"nb":1,"a":[["ARO%3A3002709","QnrA3"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002710","l":"QnrA4","na":1,"nb":1,"a":[["ARO%3A3002710","QnrA4"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002711","l":"QnrA5","na":1,"nb":1,"a":[["ARO%3A3002711","QnrA5"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002712","l":"QnrA6","na":1,"nb":1,"a":[["ARO%3A3002712","QnrA6"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002713","l":"QnrA7","na":1,"nb":1,"a":[["ARO%3A3002713","QnrA7"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002714","l":"QnrB1","na":1,"nb":1,"a":[["ARO%3A3002714","QnrB1"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002715","l":"QnrB2","na":1,"nb":1,"a":[["ARO%3A3002715","QnrB2"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002716","l":"QnrB3","na":1,"nb":1,"a":[["ARO%3A3002716","QnrB3"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002718","l":"QnrB4","na":1,"nb":1,"a":[["ARO%3A3002718","QnrB4"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002719","l":"QnrB5","na":1,"nb":1,"a":[["ARO%3A3002719","QnrB5"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002720","l":"QnrB6","na":1,"nb":1,"a":[["ARO%3A3002720","QnrB6"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002721","l":"QnrB7","na":1,"nb":1,"a":[["ARO%3A3002721","QnrB7"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002722","l":"QnrB8","na":1,"nb":1,"a":[["ARO%3A3002722","QnrB8"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002723","l":"QnrB9","na":1,"nb":1,"a":[["ARO%3A3002723","QnrB9"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002724","l":"QnrB10","na":1,"nb":1,"a":[["ARO%3A3002724","QnrB10"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002725","l":"QnrB11","na":1,"nb":1,"a":[["ARO%3A3002725","QnrB11"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002726","l":"QnrB12","na":1,"nb":1,"a":[["ARO%3A3002726","QnrB12"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002727","l":"QnrB13","na":1,"nb":1,"a":[["ARO%3A3002727","QnrB13"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002728","l":"QnrB14","na":1,"nb":1,"a":[["ARO%3A3002728","QnrB14"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002730","l":"QnrB15","na":1,"nb":1,"a":[["ARO%3A3002730","QnrB15"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002731","l":"QnrB16","na":1,"nb":1,"a":[["ARO%3A3002731","QnrB16"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002732","l":"QnrB17","na":1,"nb":1,"a":[["ARO%3A3002732","QnrB17"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002733","l":"QnrB18","na":1,"nb":1,"a":[["ARO%3A3002733","QnrB18"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002734","l":"QnrB19","na":1,"nb":1,"a":[["ARO%3A3002734","QnrB19"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002735","l":"QnrB20","na":1,"nb":1,"a":[["ARO%3A3002735","QnrB20"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002736","l":"QnrB21","na":1,"nb":1,"a":[["ARO%3A3002736","QnrB21"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002737","l":"QnrB22","na":1,"nb":1,"a":[["ARO%3A3002737","QnrB22"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002738","l":"QnrB23","na":1,"nb":1,"a":[["ARO%3A3002738","QnrB23"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002739","l":"QnrB24","na":1,"nb":1,"a":[["ARO%3A3002739","QnrB24"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002740","l":"QnrB25","na":1,"nb":1,"a":[["ARO%3A3002740","QnrB25"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002741","l":"QnrB26","na":1,"nb":1,"a":[["ARO%3A3002741","QnrB26"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002742","l":"QnrB27","na":1,"nb":1,"a":[["ARO%3A3002742","QnrB27"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002743","l":"QnrB28","na":1,"nb":1,"a":[["ARO%3A3002743","QnrB28"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002744","l":"QnrB29","na":1,"nb":1,"a":[["ARO%3A3002744","QnrB29"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002745","l":"QnrB30","na":1,"nb":1,"a":[["ARO%3A3002745","QnrB30"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002746","l":"QnrB31","na":1,"nb":1,"a":[["ARO%3A3002746","QnrB31"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002747","l":"QnrB32","na":1,"nb":1,"a":[["ARO%3A3002747","QnrB32"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002748","l":"QnrB33","na":1,"nb":1,"a":[["ARO%3A3002748","QnrB33"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002749","l":"QnrB34","na":1,"nb":1,"a":[["ARO%3A3002749","QnrB34"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002750","l":"QnrB35","na":1,"nb":1,"a":[["ARO%3A3002750","QnrB35"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002751","l":"QnrB36","na":1,"nb":1,"a":[["ARO%3A3002751","QnrB36"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002752","l":"QnrB37","na":1,"nb":1,"a":[["ARO%3A3002752","QnrB37"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002753","l":"QnrB38","na":1,"nb":1,"a":[["ARO%3A3002753","QnrB38"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002755","l":"QnrB40","na":1,"nb":1,"a":[["ARO%3A3002755","QnrB40"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002756","l":"QnrB41","na":1,"nb":1,"a":[["ARO%3A3002756","QnrB41"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002757","l":"QnrB42","na":1,"nb":1,"a":[["ARO%3A3002757","QnrB42"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002758","l":"QnrB43","na":1,"nb":1,"a":[["ARO%3A3002758","QnrB43"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002759","l":"QnrB44","na":1,"nb":1,"a":[["ARO%3A3002759","QnrB44"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002760","l":"QnrB45","na":1,"nb":1,"a":[["ARO%3A3002760","QnrB45"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002761","l":"QnrB46","na":1,"nb":1,"a":[["ARO%3A3002761","QnrB46"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002762","l":"QnrB47","na":1,"nb":1,"a":[["ARO%3A3002762","QnrB47"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002763","l":"QnrB48","na":1,"nb":1,"a":[["ARO%3A3002763","QnrB48"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002764","l":"QnrB49","na":1,"nb":1,"a":[["ARO%3A3002764","QnrB49"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002765","l":"QnrB50","na":1,"nb":1,"a":[["ARO%3A3002765","QnrB50"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002767","l":"QnrB54","na":1,"nb":1,"a":[["ARO%3A3002767","QnrB54"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002768","l":"QnrB55","na":1,"nb":1,"a":[["ARO%3A3002768","QnrB55"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002769","l":"QnrB56","na":1,"nb":1,"a":[["ARO%3A3002769","QnrB56"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002770","l":"QnrB57","na":1,"nb":1,"a":[["ARO%3A3002770","QnrB57"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002771","l":"QnrB58","na":1,"nb":1,"a":[["ARO%3A3002771","QnrB58"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002772","l":"QnrB59","na":1,"nb":1,"a":[["ARO%3A3002772","QnrB59"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002773","l":"QnrB60","na":1,"nb":1,"a":[["ARO%3A3002773","QnrB60"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002774","l":"QnrB61","na":1,"nb":1,"a":[["ARO%3A3002774","QnrB61"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002775","l":"QnrB62","na":1,"nb":1,"a":[["ARO%3A3002775","QnrB62"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002776","l":"QnrB64","na":1,"nb":1,"a":[["ARO%3A3002776","QnrB64"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002777","l":"QnrB65","na":1,"nb":1,"a":[["ARO%3A3002777","QnrB65"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002778","l":"QnrB66","na":1,"nb":1,"a":[["ARO%3A3002778","QnrB66"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002779","l":"QnrB67","na":1,"nb":1,"a":[["ARO%3A3002779","QnrB67"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002780","l":"QnrB68","na":1,"nb":1,"a":[["ARO%3A3002780","QnrB68"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002781","l":"QnrB69","na":1,"nb":1,"a":[["ARO%3A3002781","QnrB69"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002782","l":"QnrB70","na":1,"nb":1,"a":[["ARO%3A3002782","QnrB70"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002783","l":"QnrB71","na":1,"nb":1,"a":[["ARO%3A3002783","QnrB71"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002784","l":"QnrB72","na":1,"nb":1,"a":[["ARO%3A3002784","QnrB72"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002785","l":"QnrB73","na":1,"nb":1,"a":[["ARO%3A3002785","QnrB73"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002786","l":"QnrB74","na":1,"nb":1,"a":[["ARO%3A3002786","QnrB74"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002787","l":"QnrC","na":1,"nb":1,"a":[["ARO%3A3002787","QnrC"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002788","l":"QnrD1","na":1,"nb":1,"a":[["ARO%3A3002788","QnrD1"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002789","l":"QnrD2","na":1,"nb":1,"a":[["ARO%3A3002789","QnrD2"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002790","l":"QnrS1","na":1,"nb":1,"a":[["ARO%3A3002790","QnrS1"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002791","l":"QnrS2","na":1,"nb":1,"a":[["ARO%3A3002791","QnrS2"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002792","l":"QnrS3","na":1,"nb":1,"a":[["ARO%3A3002792","QnrS3"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002793","l":"QnrS4","na":1,"nb":1,"a":[["ARO%3A3002793","QnrS4"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002794","l":"QnrS5","na":1,"nb":1,"a":[["ARO%3A3002794","QnrS5"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002795","l":"QnrS6","na":1,"nb":1,"a":[["ARO%3A3002795","QnrS6"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002796","l":"QnrS7","na":1,"nb":1,"a":[["ARO%3A3002796","QnrS7"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002797","l":"QnrS8","na":1,"nb":1,"a":[["ARO%3A3002797","QnrS8"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002798","l":"QnrS9","na":1,"nb":1,"a":[["ARO%3A3002798","QnrS9"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002799","l":"QnrVC1","na":1,"nb":1,"a":[["ARO%3A3002799","QnrVC1"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002800","l":"QnrVC3","na":1,"nb":1,"a":[["ARO%3A3002800","QnrVC3"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002801","l":"QnrVC4","na":1,"nb":1,"a":[["ARO%3A3002801","QnrVC4"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002802","l":"QnrVC5","na":1,"nb":1,"a":[["ARO%3A3002802","QnrVC5"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002803","l":"QnrVC6","na":1,"nb":1,"a":[["ARO%3A3002803","QnrVC6"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002804","l":"FosA2","na":1,"nb":1,"a":[["ARO%3A3002804","FosA2"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3002817","l":"carA","na":1,"nb":1,"a":[["ARO%3A3002817","carA"]],"b":[["antibacterial/carbomycin.html","carbomycin"]]},{"id":"ARO:3002826","l":"EreA2","na":1,"nb":1,"a":[["ARO%3A3002826","EreA2"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3002828","l":"srmB","na":1,"nb":1,"a":[["ARO%3A3002828","srmB"]],"b":[["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3002832","l":"vgaD","na":1,"nb":1,"a":[["ARO%3A3002832","vgaD"]],"b":[["antibacterial/dalfopristin.html","dalfopristin"]]},{"id":"ARO:3002837","l":"lnuC","na":1,"nb":1,"a":[["ARO%3A3002837","lnuC"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002840","l":"vatA","na":1,"nb":1,"a":[["ARO%3A3002840","vatA"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002841","l":"vatB","na":1,"nb":1,"a":[["ARO%3A3002841","vatB"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002842","l":"vatC","na":1,"nb":1,"a":[["ARO%3A3002842","vatC"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002843","l":"vatD","na":1,"nb":1,"a":[["ARO%3A3002843","vatD"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002844","l":"vatE","na":1,"nb":1,"a":[["ARO%3A3002844","vatE"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002845","l":"vatH","na":1,"nb":1,"a":[["ARO%3A3002845","vatH"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002846","l":"arr-1","na":1,"nb":1,"a":[["ARO%3A3002846","arr-1"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3002847","l":"arr-2","na":1,"nb":1,"a":[["ARO%3A3002847","arr-2"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3002848","l":"arr-3","na":1,"nb":1,"a":[["ARO%3A3002848","arr-3"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3002849","l":"arr-4","na":1,"nb":1,"a":[["ARO%3A3002849","arr-4"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3002850","l":"arr-5","na":1,"nb":1,"a":[["ARO%3A3002850","arr-5"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3002852","l":"arr-7","na":1,"nb":1,"a":[["ARO%3A3002852","arr-7"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3002853","l":"arr-8","na":1,"nb":1,"a":[["ARO%3A3002853","arr-8"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3002854","l":"dfrA1","na":1,"nb":1,"a":[["ARO%3A3002854","dfrA1"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002856","l":"dfrA24","na":1,"nb":1,"a":[["ARO%3A3002856","dfrA24"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002857","l":"dfrA26","na":1,"nb":1,"a":[["ARO%3A3002857","dfrA26"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002858","l":"dfrA12","na":1,"nb":1,"a":[["ARO%3A3002858","dfrA12"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002859","l":"dfrA14","na":1,"nb":1,"a":[["ARO%3A3002859","dfrA14"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002860","l":"dfrA17","na":1,"nb":1,"a":[["ARO%3A3002860","dfrA17"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002861","l":"dfrA5","na":1,"nb":1,"a":[["ARO%3A3002861","dfrA5"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002862","l":"dfrA7","na":1,"nb":1,"a":[["ARO%3A3002862","dfrA7"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002863","l":"dfrA8","na":1,"nb":1,"a":[["ARO%3A3002863","dfrA8"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002864","l":"dfrB1","na":1,"nb":1,"a":[["ARO%3A3002864","dfrB1"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002865","l":"dfrC","na":1,"nb":1,"a":[["ARO%3A3002865","dfrC"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002866","l":"dfrD","na":1,"nb":1,"a":[["ARO%3A3002866","dfrD"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002867","l":"dfrF","na":1,"nb":1,"a":[["ARO%3A3002867","dfrF"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002868","l":"dfrG","na":1,"nb":1,"a":[["ARO%3A3002868","dfrG"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002869","l":"dfrK","na":1,"nb":1,"a":[["ARO%3A3002869","dfrK"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002870","l":"tet(34)","na":1,"nb":1,"a":[["ARO%3A3002870","tet(34)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3002871","l":"tet(37)","na":1,"nb":1,"a":[["ARO%3A3002871","tet(37)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3002872","l":"FosA3","na":1,"nb":1,"a":[["ARO%3A3002872","FosA3"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3002873","l":"FosB3","na":1,"nb":1,"a":[["ARO%3A3002873","FosB3"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3002874","l":"FosC2","na":1,"nb":1,"a":[["ARO%3A3002874","FosC2"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3002875","l":"dfrE","na":1,"nb":1,"a":[["ARO%3A3002875","dfrE"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002879","l":"linG","na":1,"nb":1,"a":[["ARO%3A3002879","linG"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002891","l":"Streptomyces rimosus otr(A)","na":1,"nb":1,"a":[["ARO%3A3002891","Streptomyces rimosus otr(A)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"]]},{"id":"ARO:3002892","l":"otr(B)","na":1,"nb":1,"a":[["ARO%3A3002892","otr(B)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3002893","l":"tcr3","na":1,"nb":1,"a":[["ARO%3A3002893","tcr3"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3002894","l":"otr(C)","na":1,"nb":1,"a":[["ARO%3A3002894","otr(C)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3002895","l":"SAT-2","na":1,"nb":1,"a":[["ARO%3A3002895","SAT-2"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"]]},{"id":"ARO:3002897","l":"SAT-4","na":1,"nb":1,"a":[["ARO%3A3002897","SAT-4"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"]]},{"id":"ARO:3002898","l":"SAT-3","na":1,"nb":1,"a":[["ARO%3A3002898","SAT-3"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"]]},{"id":"ARO:3002914","l":"vanJ","na":1,"nb":1,"a":[["ARO%3A3002914","vanJ"]],"b":[["antibacterial/teicoplanin.html","teicoplanin"]]},{"id":"ARO:3002917","l":"glycopeptide resistance gene cluster VanN","na":1,"nb":1,"a":[["ARO%3A3002917","glycopeptide resistance gene cluster VanN"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3002918","l":"glycopeptide resistance gene cluster VanO","na":1,"nb":1,"a":[["ARO%3A3002918","glycopeptide resistance gene cluster VanO"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3002999","l":"CblA-1","na":1,"nb":1,"a":[["ARO%3A3002999","CblA-1"]],"b":[["antibacterial/cefaloridine.html","cefaloridine"]]},{"id":"ARO:3003006","l":"blt","na":1,"nb":1,"a":[["ARO%3A3003006","blt"]],"b":[["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3003011","l":"dfrA10","na":1,"nb":1,"a":[["ARO%3A3003011","dfrA10"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003012","l":"dfrA13","na":1,"nb":1,"a":[["ARO%3A3003012","dfrA13"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003013","l":"dfrA15","na":1,"nb":1,"a":[["ARO%3A3003013","dfrA15"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003014","l":"dfrA16","na":1,"nb":1,"a":[["ARO%3A3003014","dfrA16"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003015","l":"dfrA19","na":1,"nb":1,"a":[["ARO%3A3003015","dfrA19"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003016","l":"dfrA20","na":1,"nb":1,"a":[["ARO%3A3003016","dfrA20"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003017","l":"dfrA21","na":1,"nb":1,"a":[["ARO%3A3003017","dfrA21"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003018","l":"dfrA22","na":1,"nb":1,"a":[["ARO%3A3003018","dfrA22"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003019","l":"dfrA23","na":1,"nb":1,"a":[["ARO%3A3003019","dfrA23"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003020","l":"dfrA25","na":1,"nb":1,"a":[["ARO%3A3003020","dfrA25"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003021","l":"dfrB2","na":1,"nb":1,"a":[["ARO%3A3003021","dfrB2"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003022","l":"dfrB3","na":1,"nb":1,"a":[["ARO%3A3003022","dfrB3"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003023","l":"dfrB6","na":1,"nb":1,"a":[["ARO%3A3003023","dfrB6"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003026","l":"fusH","na":1,"nb":1,"a":[["ARO%3A3003026","fusH"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3003036","l":"oleB","na":1,"nb":1,"a":[["ARO%3A3003036","oleB"]],"b":[["antibacterial/oleandomycin.html","oleandomycin"]]},{"id":"ARO:3003041","l":"Streptococcus pneumoniae PBP1a conferring resistance to amoxicillin","na":1,"nb":1,"a":[["ARO%3A3003041","Streptococcus pneumoniae PBP1a conferring resistance to amoxicillin"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3003042","l":"Streptococcus pneumoniae PBP2b conferring resistance to amoxicillin","na":1,"nb":1,"a":[["ARO%3A3003042","Streptococcus pneumoniae PBP2b conferring resistance to amoxicillin"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3003043","l":"Streptococcus pneumoniae PBP2x conferring resistance to amoxicillin","na":1,"nb":1,"a":[["ARO%3A3003043","Streptococcus pneumoniae PBP2x conferring resistance to amoxicillin"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3003059","l":"tmrB","na":1,"nb":1,"a":[["ARO%3A3003059","tmrB"]],"b":[["antibacterial/tunicamycin.html","tunicamycin"]]},{"id":"ARO:3003060","l":"tsnR","na":1,"nb":1,"a":[["ARO%3A3003060","tsnR"]],"b":[["antibacterial/thiostrepton.html","thiostrepton"]]},{"id":"ARO:3003061","l":"vph","na":1,"nb":1,"a":[["ARO%3A3003061","vph"]],"b":[["antimycobacterial/viomycin.html","viomycin"]]},{"id":"ARO:3003074","l":"Staphylococcus aureus cls conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003074","Staphylococcus aureus cls conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003077","l":"Enterococcus faecalis liaF mutant conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003077","Enterococcus faecalis liaF mutant conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003078","l":"Enterococcus faecium liaR mutant conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003078","Enterococcus faecium liaR mutant conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003079","l":"Enterococcus faecium liaS mutant conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003079","Enterococcus faecium liaS mutant conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003092","l":"Enterococcus faecium cls conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003092","Enterococcus faecium cls conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003105","l":"dfrA3","na":1,"nb":1,"a":[["ARO%3A3003105","dfrA3"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003109","l":"msrE","na":1,"nb":1,"a":[["ARO%3A3003109","msrE"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003157","l":"TEM-219","na":1,"nb":1,"a":[["ARO%3A3003157","TEM-219"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3003158","l":"TEM-220","na":1,"nb":1,"a":[["ARO%3A3003158","TEM-220"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3003193","l":"QnrVC7","na":1,"nb":1,"a":[["ARO%3A3003193","QnrVC7"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003196","l":"tet(45)","na":1,"nb":1,"a":[["ARO%3A3003196","tet(45)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003207","l":"FosK","na":1,"nb":1,"a":[["ARO%3A3003207","FosK"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003208","l":"FosXCC","na":1,"nb":1,"a":[["ARO%3A3003208","FosXCC"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003210","l":"FosA4","na":1,"nb":1,"a":[["ARO%3A3003210","FosA4"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003236","l":"Mycobacteroides abscessus 16S rRNA mutation conferring resistance to kanamycin","na":1,"nb":1,"a":[["ARO%3A3003236","Mycobacteroides abscessus 16S rRNA mutation conferring resistance to kanamycin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003237","l":"Mycobacteroides abscessus 16S rRNA mutation conferring resistance to tobramycin","na":1,"nb":1,"a":[["ARO%3A3003237","Mycobacteroides abscessus 16S rRNA mutation conferring resistance to tobramycin"]],"b":[["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3003238","l":"Mycobacteroides abscessus 16S rRNA mutation conferring resistance to neomycin","na":1,"nb":1,"a":[["ARO%3A3003238","Mycobacteroides abscessus 16S rRNA mutation conferring resistance to neomycin"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3003239","l":"Mycobacteroides abscessus 16S rRNA mutation conferring resistance to amikacin","na":1,"nb":1,"a":[["ARO%3A3003239","Mycobacteroides abscessus 16S rRNA mutation conferring resistance to amikacin"]],"b":[["antibacterial/amikacin.html","amikacin"]]},{"id":"ARO:3003240","l":"Mycobacteroides abscessus 16S rRNA mutation conferring resistance to gentamicin","na":1,"nb":1,"a":[["ARO%3A3003240","Mycobacteroides abscessus 16S rRNA mutation conferring resistance to gentamicin"]],"b":[["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3003287","l":"Staphylococcus aureus rpoB mutants conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003287","Staphylococcus aureus rpoB mutants conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003291","l":"Staphylococcus aureus rpoC conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003291","Staphylococcus aureus rpoC conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003319","l":"Staphylococcus aureus mprF with mutation conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003319","Staphylococcus aureus mprF with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003323","l":"Staphylococcus aureus pgsA mutations conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003323","Staphylococcus aureus pgsA mutations conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003324","l":"Bacillus subtilis mprF","na":1,"nb":1,"a":[["ARO%3A3003324","Bacillus subtilis mprF"]],"b":[["antibacterial/defensin.html","defensin"]]},{"id":"ARO:3003325","l":"Mycobacterium tuberculosis variant bovis embB with mutation conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3003325","Mycobacterium tuberculosis variant bovis embB with mutation conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003326","l":"Mycobacterium tuberculosis embB mutant conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3003326","Mycobacterium tuberculosis embB mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003327","l":"Mycobacterium tuberculosis embC mutant conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3003327","Mycobacterium tuberculosis embC mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003333","l":"Escherichia coli 16S rRNA (rrsC) mutation conferring resistance to kasugamicin","na":1,"nb":1,"a":[["ARO%3A3003333","Escherichia coli 16S rRNA (rrsC) mutation conferring resistance to kasugamicin"]],"b":[["antifungal/kasugamycin.html","kasugamycin"]]},{"id":"ARO:3003357","l":"Clostridioides difficile EF-Tu mutants conferring resistance to elfamycin","na":1,"nb":1,"a":[["ARO%3A3003357","Clostridioides difficile EF-Tu mutants conferring resistance to elfamycin"]],"b":[["antibacterial/lff571.html","LFF571"]]},{"id":"ARO:3003359","l":"Streptomyces cinnamoneus EF-Tu mutants conferring resistance to elfamycin","na":1,"nb":1,"a":[["ARO%3A3003359","Streptomyces cinnamoneus EF-Tu mutants conferring resistance to elfamycin"]],"b":[["antibacterial/kirromycin.html","kirromycin"]]},{"id":"ARO:3003361","l":"Planobispora rosea EF-Tu mutants conferring resistance to inhibitor GE2270A","na":1,"nb":1,"a":[["ARO%3A3003361","Planobispora rosea EF-Tu mutants conferring resistance to inhibitor GE2270A"]],"b":[["antibacterial/ge2270a.html","GE2270A"]]},{"id":"ARO:3003368","l":"Escherichia coli EF-Tu mutants conferring resistance to kirromycin","na":1,"nb":1,"a":[["ARO%3A3003368","Escherichia coli EF-Tu mutants conferring resistance to kirromycin"]],"b":[["antibacterial/kirromycin.html","kirromycin"]]},{"id":"ARO:3003369","l":"Escherichia coli EF-Tu mutants conferring resistance to Pulvomycin","na":1,"nb":1,"a":[["ARO%3A3003369","Escherichia coli EF-Tu mutants conferring resistance to Pulvomycin"]],"b":[["antibacterial/pulvomycin.html","pulvomycin"]]},{"id":"ARO:3003370","l":"Escherichia coli EF-Tu mutants conferring resistance to Enacyloxin IIa","na":1,"nb":1,"a":[["ARO%3A3003370","Escherichia coli EF-Tu mutants conferring resistance to Enacyloxin IIa"]],"b":[["antibacterial/enacyloxin-iia.html","enacyloxin IIa"]]},{"id":"ARO:3003372","l":"Escherichia coli 16S rRNA (rrsH) mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003372","Escherichia coli 16S rRNA (rrsH) mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003373","l":"Klebsiella pneumoniae acrR with mutation conferring multidrug antibiotic resistance","na":1,"nb":1,"a":[["ARO%3A3003373","Klebsiella pneumoniae acrR with mutation conferring multidrug antibiotic resistance"]],"b":[["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:3003376","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003376","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003377","l":"Escherichia coli 16S rRNA (rrnB) mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003377","Escherichia coli 16S rRNA (rrnB) mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003379","l":"Salmonella enterica ramR mutants","na":1,"nb":1,"a":[["ARO%3A3003379","Salmonella enterica ramR mutants"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003380","l":"Klebsiella pneumoniae ramR mutants","na":1,"nb":1,"a":[["ARO%3A3003380","Klebsiella pneumoniae ramR mutants"]],"b":[["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:3003382","l":"Salmonella enterica soxR with mutation conferring antibiotic resistance","na":1,"nb":1,"a":[["ARO%3A3003382","Salmonella enterica soxR with mutation conferring antibiotic resistance"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003383","l":"Salmonella serovars soxS with mutation conferring antibiotic resistance","na":1,"nb":1,"a":[["ARO%3A3003383","Salmonella serovars soxS with mutation conferring antibiotic resistance"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003389","l":"Mycobacterium leprae folP with mutation conferring resistance to dapsone","na":1,"nb":1,"a":[["ARO%3A3003389","Mycobacterium leprae folP with mutation conferring resistance to dapsone"]],"b":[["antimycobacterial/dapsone.html","dapsone"]]},{"id":"ARO:3003390","l":"Escherichia coli ompF with mutation conferring resistance to beta-lactam antibiotics","na":1,"nb":1,"a":[["ARO%3A3003390","Escherichia coli ompF with mutation conferring resistance to beta-lactam antibiotics"]],"b":[["antibacterial/cefepime.html","cefepime"]]},{"id":"ARO:3003392","l":"Mycobacterium tuberculosis katG mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3003392","Mycobacterium tuberculosis katG mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3003393","l":"Mycobacterium tuberculosis inhA mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3003393","Mycobacterium tuberculosis inhA mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3003396","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to gentamicin C","na":1,"nb":1,"a":[["ARO%3A3003396","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to gentamicin C"]],"b":[["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3003397","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to G418","na":1,"nb":1,"a":[["ARO%3A3003397","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to G418"]],"b":[["antibacterial/g418.html","G418"]]},{"id":"ARO:3003399","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to kanamycin A","na":1,"nb":1,"a":[["ARO%3A3003399","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to kanamycin A"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003402","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to neomycin","na":1,"nb":1,"a":[["ARO%3A3003402","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to neomycin"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3003403","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to paromomycin","na":1,"nb":1,"a":[["ARO%3A3003403","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to paromomycin"]],"b":[["antibacterial/paromomycin.html","paromomycin"]]},{"id":"ARO:3003405","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3003405","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003406","l":"Escherichia coli 16S rRNA (rrnB) mutation conferring resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3003406","Escherichia coli 16S rRNA (rrnB) mutation conferring resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003408","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to tobramycin","na":1,"nb":1,"a":[["ARO%3A3003408","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to tobramycin"]],"b":[["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3003410","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to tetracycline","na":1,"nb":1,"a":[["ARO%3A3003410","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to tetracycline"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003411","l":"Escherichia coli 16S rRNA (rrnB) mutation conferring resistance to tetracycline","na":1,"nb":1,"a":[["ARO%3A3003411","Escherichia coli 16S rRNA (rrnB) mutation conferring resistance to tetracycline"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003413","l":"pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004977","Mycobacterium tuberculosis gpsI with mutations conferring resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3003436","l":"Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to kanamycin","na":1,"nb":1,"a":[["ARO%3A3003436","Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to kanamycin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003437","l":"Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to viomycin","na":1,"nb":1,"a":[["ARO%3A3003437","Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to viomycin"]],"b":[["antimycobacterial/viomycin.html","viomycin"]]},{"id":"ARO:3003438","l":"Enterococcus faecium EF-Tu mutants conferring resistance to GE2270A","na":1,"nb":1,"a":[["ARO%3A3003438","Enterococcus faecium EF-Tu mutants conferring resistance to GE2270A"]],"b":[["antibacterial/ge2270a.html","GE2270A"]]},{"id":"ARO:3003440","l":"mecB","na":1,"nb":1,"a":[["ARO%3A3003440","mecB"]],"b":[["antibacterial/methicillin.html","methicillin"]]},{"id":"ARO:3003445","l":"Mycobacterium tuberculosis tlyA mutations conferring resistance to aminoglycosides","na":1,"nb":1,"a":[["ARO%3A3003445","Mycobacterium tuberculosis tlyA mutations conferring resistance to aminoglycosides"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003448","l":"Mycobacterium tuberculosis iniA mutant conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3003448","Mycobacterium tuberculosis iniA mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003451","l":"Mycobacterium tuberculosis iniC mutant conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3003451","Mycobacterium tuberculosis iniC mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003453","l":"Mycobacterium tuberculosis embA mutant conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3003453","Mycobacterium tuberculosis embA mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003455","l":"Mycobacterium tuberculosis embR mutant conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3003455","Mycobacterium tuberculosis embR mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003461","l":"Mycobacterium tuberculosis ndh with mutation conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3003461","Mycobacterium tuberculosis ndh with mutation conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3003463","l":"Mycobacterium tuberculosis kasA mutant conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3003463","Mycobacterium tuberculosis kasA mutant conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3003465","l":"Mycobacterium tuberculosis embB with mutation conferring resistance to rifampicin","na":1,"nb":1,"a":[["ARO%3A3003465","Mycobacterium tuberculosis embB with mutation conferring resistance to rifampicin"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3003470","l":"Mycobacterium tuberculosis gidB mutation conferring resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3003470","Mycobacterium tuberculosis gidB mutation conferring resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003480","l":"Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3003480","Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003481","l":"Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to amikacin","na":1,"nb":1,"a":[["ARO%3A3003481","Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to amikacin"]],"b":[["antibacterial/amikacin.html","amikacin"]]},{"id":"ARO:3003485","l":"Chlamydophila psittaci 16S rRNA mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003485","Chlamydophila psittaci 16S rRNA mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003493","l":"Pasteurella multocida 16S rRNA mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003493","Pasteurella multocida 16S rRNA mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003495","l":"Neisseria gonorrhoeae 16S rRNA mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003495","Neisseria gonorrhoeae 16S rRNA mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003497","l":"Neisseria meningitidis 16S rRNA mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003497","Neisseria meningitidis 16S rRNA mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003502","l":"Borreliella burgdorferi 16S rRNA mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003502","Borreliella burgdorferi 16S rRNA mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003503","l":"Borreliella burgdorferi 16S rRNA mutation conferring resistance to kanamycin","na":1,"nb":1,"a":[["ARO%3A3003503","Borreliella burgdorferi 16S rRNA mutation conferring resistance to kanamycin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003504","l":"Borreliella burgdorferi 16S rRNA mutation conferring resistance to gentamicin","na":1,"nb":1,"a":[["ARO%3A3003504","Borreliella burgdorferi 16S rRNA mutation conferring resistance to gentamicin"]],"b":[["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3003510","l":"Helicobacter pylori 16S rRNA mutation conferring resistance to tetracycline","na":1,"nb":1,"a":[["ARO%3A3003510","Helicobacter pylori 16S rRNA mutation conferring resistance to tetracycline"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003512","l":"Salmonella enterica 16S rRNA (rrsD) mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003512","Salmonella enterica 16S rRNA (rrsD) mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003514","l":"Mycobacteroides chelonae 16S rRNA mutation conferring resistance to amikacin","na":1,"nb":1,"a":[["ARO%3A3003514","Mycobacteroides chelonae 16S rRNA mutation conferring resistance to amikacin"]],"b":[["antibacterial/amikacin.html","amikacin"]]},{"id":"ARO:3003515","l":"Mycobacteroides chelonae 16S rRNA mutation conferring resistance to kanamycin A","na":1,"nb":1,"a":[["ARO%3A3003515","Mycobacteroides chelonae 16S rRNA mutation conferring resistance to kanamycin A"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003516","l":"Mycobacteroides chelonae 16S rRNA mutation conferring resistance to tobramycin","na":1,"nb":1,"a":[["ARO%3A3003516","Mycobacteroides chelonae 16S rRNA mutation conferring resistance to tobramycin"]],"b":[["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3003517","l":"Mycobacteroides chelonae 16S rRNA mutation conferring resistance to gentamicin C","na":1,"nb":1,"a":[["ARO%3A3003517","Mycobacteroides chelonae 16S rRNA mutation conferring resistance to gentamicin C"]],"b":[["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3003518","l":"Mycobacteroides chelonae 16S rRNA mutation conferring resistance to neomycin","na":1,"nb":1,"a":[["ARO%3A3003518","Mycobacteroides chelonae 16S rRNA mutation conferring resistance to neomycin"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3003539","l":"Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to hygromycin B","na":1,"nb":1,"a":[["ARO%3A3003539","Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to hygromycin B"]],"b":[["antibacterial/hygromycin-b.html","hygromycin B"]]},{"id":"ARO:3003540","l":"Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to hygromycin B","na":1,"nb":1,"a":[["ARO%3A3003540","Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to hygromycin B"]],"b":[["antibacterial/hygromycin-b.html","hygromycin B"]]},{"id":"ARO:3003541","l":"Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3003541","Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003542","l":"Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to kanamycin A","na":1,"nb":1,"a":[["ARO%3A3003542","Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to kanamycin A"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003543","l":"Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to kanamycin A","na":1,"nb":1,"a":[["ARO%3A3003543","Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to kanamycin A"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003544","l":"Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to neomycin","na":1,"nb":1,"a":[["ARO%3A3003544","Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to neomycin"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3003545","l":"Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to neomycin","na":1,"nb":1,"a":[["ARO%3A3003545","Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to neomycin"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3003546","l":"Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to viomycin","na":1,"nb":1,"a":[["ARO%3A3003546","Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to viomycin"]],"b":[["antimycobacterial/viomycin.html","viomycin"]]},{"id":"ARO:3003547","l":"Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to viomycin","na":1,"nb":1,"a":[["ARO%3A3003547","Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to viomycin"]],"b":[["antimycobacterial/viomycin.html","viomycin"]]},{"id":"ARO:3003551","l":"emeA","na":1,"nb":1,"a":[["ARO%3A3003551","emeA"]],"b":[["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3003552","l":"fusB","na":1,"nb":1,"a":[["ARO%3A3003552","fusB"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3003554","l":"tcmA","na":1,"nb":1,"a":[["ARO%3A3003554","tcmA"]],"b":[["antibacterial/tetracenomycin-c.html","tetracenomycin C"]]},{"id":"ARO:3003558","l":"y56 beta-lactamase","na":1,"nb":1,"a":[["ARO%3A3003558","y56 beta-lactamase"]],"b":[["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3003562","l":"blaF","na":1,"nb":1,"a":[["ARO%3A3003562","blaF"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3003576","l":"eptA","na":1,"nb":1,"a":[["ARO%3A3003576","eptA"]],"b":[["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3003577","l":"ugd","na":1,"nb":1,"a":[["ARO%3A3003577","ugd"]],"b":[["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3003678","l":"TriABC-OpmH","na":1,"nb":1,"a":[["ARO%3A3003678","TriABC-OpmH"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3003685","l":"Pseudomonas aeruginosa parE conferring resistance to fluoroquinolones","na":1,"nb":1,"a":[["ARO%3A3003685","Pseudomonas aeruginosa parE conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003691","l":"MexJK-OpmH","na":1,"nb":1,"a":[["ARO%3A3003691","MexJK-OpmH"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3003729","l":"Staphylococcus aureus ileS with mutation conferring resistance to mupirocin","na":1,"nb":1,"a":[["ARO%3A3003729","Staphylococcus aureus ileS with mutation conferring resistance to mupirocin"]],"b":[["antibacterial/mupirocin.html","mupirocin"]]},{"id":"ARO:3003730","l":"Bifidobacterium bifidum ileS conferring resistance to mupirocin","na":1,"nb":1,"a":[["ARO%3A3003730","Bifidobacterium bifidum ileS conferring resistance to mupirocin"]],"b":[["antibacterial/mupirocin.html","mupirocin"]]},{"id":"ARO:3003731","l":"fusD","na":1,"nb":1,"a":[["ARO%3A3003731","fusD"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3003733","l":"fusC","na":1,"nb":1,"a":[["ARO%3A3003733","fusC"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3003735","l":"Staphylococcus aureus fusA with mutation conferring resistance to fusidic acid","na":1,"nb":1,"a":[["ARO%3A3003735","Staphylococcus aureus fusA with mutation conferring resistance to fusidic acid"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3003737","l":"Staphylococcus aureus fusE with mutation conferring resistance to fusidic acid","na":1,"nb":1,"a":[["ARO%3A3003737","Staphylococcus aureus fusE with mutation conferring resistance to fusidic acid"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3003741","l":"mphE","na":1,"nb":1,"a":[["ARO%3A3003741","mphE"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003744","l":"vatF","na":1,"nb":1,"a":[["ARO%3A3003744","vatF"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3003745","l":"mef(C)","na":1,"nb":1,"a":[["ARO%3A3003745","mef(C)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"]]},{"id":"ARO:3003748","l":"oleC","na":1,"nb":1,"a":[["ARO%3A3003748","oleC"]],"b":[["antibacterial/oleandomycin.html","oleandomycin"]]},{"id":"ARO:3003756","l":"Escherichia coli nfsB with mutation conferring resistance to nitrofurantoin","na":1,"nb":1,"a":[["ARO%3A3003756","Escherichia coli nfsB with mutation conferring resistance to nitrofurantoin"]],"b":[["antibacterial/nitrofurantoin.html","nitrofurantoin"]]},{"id":"ARO:3003760","l":"Enterococcus faecalis cls with mutation conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003760","Enterococcus faecalis cls with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003761","l":"eatAv","na":1,"nb":1,"a":[["ARO%3A3003761","eatAv"]],"b":[["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"ARO:3003762","l":"lnuE","na":1,"nb":1,"a":[["ARO%3A3003762","lnuE"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3003767","l":"mphM","na":1,"nb":1,"a":[["ARO%3A3003767","mphM"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003769","l":"Staphylococcus aureus mprF","na":1,"nb":1,"a":[["ARO%3A3003769","Staphylococcus aureus mprF"]],"b":[["antibacterial/defensin.html","defensin"]]},{"id":"ARO:3003770","l":"Listeria monocytogenes mprF","na":1,"nb":1,"a":[["ARO%3A3003770","Listeria monocytogenes mprF"]],"b":[["antibacterial/defensin.html","defensin"]]},{"id":"ARO:3003772","l":"Brucella suis mprF","na":1,"nb":1,"a":[["ARO%3A3003772","Brucella suis mprF"]],"b":[["antibacterial/defensin.html","defensin"]]},{"id":"ARO:3003773","l":"Clostridium perfringens mprF","na":1,"nb":1,"a":[["ARO%3A3003773","Clostridium perfringens mprF"]],"b":[["antibacterial/defensin.html","defensin"]]},{"id":"ARO:3003774","l":"Streptococcus agalactiae mprF","na":1,"nb":1,"a":[["ARO%3A3003774","Streptococcus agalactiae mprF"]],"b":[["antibacterial/defensin.html","defensin"]]},{"id":"ARO:3003775","l":"Escherichia coli murA with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003775","Escherichia coli murA with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003776","l":"Staphylococcus aureus murA with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003776","Staphylococcus aureus murA with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003777","l":"Borreliella burgdorferi murA with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003777","Borreliella burgdorferi murA with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003778","l":"Mycolicibacterium smegmatis ndh with mutation conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3003778","Mycolicibacterium smegmatis ndh with mutation conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3003779","l":"Mycobacterium tuberculosis variant bovis ndh with mutation conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3003779","Mycobacterium tuberculosis variant bovis ndh with mutation conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3003784","l":"Mycobacterium tuberculosis intrinsic murA conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003784","Mycobacterium tuberculosis intrinsic murA conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003785","l":"Chlamydia trachomatis intrinsic murA conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003785","Chlamydia trachomatis intrinsic murA conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003788","l":"Bacillus subtilis pgsA with mutation conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003788","Bacillus subtilis pgsA with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003789","l":"Campylobacter jejuni gyrA conferring resistance to fluoroquinolones","na":1,"nb":1,"a":[["ARO%3A3003789","Campylobacter jejuni gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003790","l":"Enterococcus faecium liaF mutant conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003790","Enterococcus faecium liaF mutant conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003791","l":"Enterococcus faecalis liaS mutant conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003791","Enterococcus faecalis liaS mutant conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003792","l":"Enterococcus faecalis liaR mutant conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003792","Enterococcus faecalis liaR mutant conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003794","l":"Staphylococcus aureus walK with mutation conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003794","Staphylococcus aureus walK with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003797","l":"Enterococcus faecalis YybT with mutation conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003797","Enterococcus faecalis YybT with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003800","l":"Enterococcus faecalis gdpD with mutation conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003800","Enterococcus faecalis gdpD with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003801","l":"bcr-1","na":1,"nb":1,"a":[["ARO%3A3003801","bcr-1"]],"b":[["antibacterial/bicozamycin.html","bicozamycin"]]},{"id":"ARO:3003803","l":"Staphylococcus aureus agrA with mutation conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003803","Staphylococcus aureus agrA with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003805","l":"Enterococcus faecalis gshF with mutation conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003805","Enterococcus faecalis gshF with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003809","l":"Acinetobacter baumannii OprD conferring resistance to imipenem","na":1,"nb":1,"a":[["ARO%3A3003809","Acinetobacter baumannii OprD conferring resistance to imipenem"]],"b":[["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3003813","l":"Enterococcus faecalis drmA with mutation conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003813","Enterococcus faecalis drmA with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003815","l":"Enterococcus faecalis YvlB with mutation conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003815","Enterococcus faecalis YvlB with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003830","l":"Aminocoumarin resistant alaS","na":1,"nb":1,"a":[["ARO%3A3003830","Aminocoumarin resistant alaS"]],"b":[["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3003835","l":"cdeA","na":1,"nb":1,"a":[["ARO%3A3003835","cdeA"]],"b":[["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3003840","l":"aminocoumarin resistant cysB","na":1,"nb":1,"a":[["ARO%3A3003840","aminocoumarin resistant cysB"]],"b":[["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3003844","l":"mfd","na":1,"nb":1,"a":[["ARO%3A3003844","mfd"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003889","l":"Escherichia coli GlpT with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003889","Escherichia coli GlpT with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003890","l":"Escherichia coli UhpT with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003890","Escherichia coli UhpT with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003900","l":"Escherichia coli cyaA with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003900","Escherichia coli cyaA with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003901","l":"Staphylococcus aureus GlpT with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003901","Staphylococcus aureus GlpT with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003902","l":"Staphylococcus aureus UhpT with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003902","Staphylococcus aureus UhpT with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003917","l":"Staphylococcus aureus menA with mutation conferring resistance to lysocin","na":1,"nb":1,"a":[["ARO%3A3003917","Staphylococcus aureus menA with mutation conferring resistance to lysocin"]],"b":[["antibacterial/lysocin-e.html","lysocin E"]]},{"id":"ARO:3003918","l":"apmA","na":1,"nb":1,"a":[["ARO%3A3003918","apmA"]],"b":[["antibacterial/apramycin.html","apramycin"]]},{"id":"ARO:3003920","l":"pgpB","na":1,"nb":1,"a":[["ARO%3A3003920","pgpB"]],"b":[["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3003924","l":"Haemophilus parainfluenzae gyrA conferring resistance to fluoroquinolones","na":1,"nb":1,"a":[["ARO%3A3003924","Haemophilus parainfluenzae gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003925","l":"Haemophilus parainfluenzae parC conferring resistance to fluoroquinolones","na":1,"nb":1,"a":[["ARO%3A3003925","Haemophilus parainfluenzae parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003930","l":"rpsJ","na":1,"nb":1,"a":[["ARO%3A3003930","rpsJ"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003950","l":"msbA","na":1,"nb":1,"a":[["ARO%3A3003950","msbA"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3003952","l":"YojI","na":1,"nb":1,"a":[["ARO%3A3003952","YojI"]],"b":[["antibacterial/microcin-j25.html","microcin J25"]]},{"id":"ARO:3003954","l":"efmA","na":1,"nb":1,"a":[["ARO%3A3003954","efmA"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003970","l":"D-Ala-D-Ala ligase","na":1,"nb":1,"a":[["ARO%3A3003970","D-Ala-D-Ala ligase"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3003977","l":"Halobacterium salinarum 16S rRNA mutation conferring resistance to pactamycin","na":1,"nb":1,"a":[["ARO%3A3003977","Halobacterium salinarum 16S rRNA mutation conferring resistance to pactamycin"]],"b":[["antibacterial/pactamycin.html","pactamycin"]]},{"id":"ARO:3003978","l":"Chlamydomonas reinhardtii 16S rRNA (rrnS) mutation conferring resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3003978","Chlamydomonas reinhardtii 16S rRNA (rrnS) mutation conferring resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003980","l":"tetA(58)","na":1,"nb":1,"a":[["ARO%3A3003980","tetA(58)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003981","l":"tetB(58)","na":1,"nb":1,"a":[["ARO%3A3003981","tetB(58)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003982","l":"LlmA 23S ribosomal RNA methyltransferase","na":1,"nb":1,"a":[["ARO%3A3003982","LlmA 23S ribosomal RNA methyltransferase"]],"b":[["antibacterial/clindamycin.html","clindamycin"]]},{"id":"ARO:3003984","l":"BahA","na":1,"nb":1,"a":[["ARO%3A3003984","BahA"]],"b":[["antibacterial/bacitracin.html","bacitracin"]]},{"id":"ARO:3003986","l":"TaeA","na":1,"nb":1,"a":[["ARO%3A3003986","TaeA"]],"b":[["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"ARO:3003987","l":"VatI","na":1,"nb":1,"a":[["ARO%3A3003987","VatI"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3003988","l":"","na":1,"nb":1,"a":[["ARO%3A3003988","AAC(2')-IIb"]],"b":[["antifungal/kasugamycin.html","kasugamycin"]]},{"id":"ARO:3003989","l":"","na":1,"nb":1,"a":[["ARO%3A3003989","AAC(6')-34"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004031","l":"tetAB(46)","na":1,"nb":1,"a":[["ARO%3A3004031","tetAB(46)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004034","l":"tetAB(60)","na":1,"nb":1,"a":[["ARO%3A3004034","tetAB(60)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004038","l":"Pseudomonas aeruginosa emrE","na":1,"nb":1,"a":[["ARO%3A3004038","Pseudomonas aeruginosa emrE"]],"b":[["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3004039","l":"Escherichia coli emrE","na":1,"nb":1,"a":[["ARO%3A3004039","Escherichia coli emrE"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004041","l":"Klebsiella pneumoniae acrA","na":1,"nb":1,"a":[["ARO%3A3004041","Klebsiella pneumoniae acrA"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004042","l":"Enterobacter cloacae acrA","na":1,"nb":1,"a":[["ARO%3A3004042","Enterobacter cloacae acrA"]],"b":[["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:3004045","l":"Escherichia coli fabI mutations conferring resistance to isoniazid and triclosan","na":1,"nb":1,"a":[["ARO%3A3004045","Escherichia coli fabI mutations conferring resistance to isoniazid and triclosan"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3004046","l":"kdpDE","na":1,"nb":1,"a":[["ARO%3A3004046","kdpDE"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004049","l":"Escherichia coli fabG mutations conferring resistance to triclosan","na":1,"nb":1,"a":[["ARO%3A3004049","Escherichia coli fabG mutations conferring resistance to triclosan"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3004058","l":"Staphylococcus aureus 23S rRNA with mutation conferring resistance to linezolid","na":1,"nb":1,"a":[["ARO%3A3004058","Staphylococcus aureus 23S rRNA with mutation conferring resistance to linezolid"]],"b":[["antibacterial/linezolid.html","linezolid"]]},{"id":"ARO:3004083","l":"AcrEF-TolC confers resistance to ciprofloxacin","na":1,"nb":1,"a":[["ARO%3A3004083","AcrEF-TolC confers resistance to ciprofloxacin"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004085","l":"lnuG","na":1,"nb":1,"a":[["ARO%3A3004085","lnuG"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3004097","l":"Streptococcus mitis CdsA with mutation conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3004097","Streptococcus mitis CdsA with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3004105","l":"TMB-1","na":1,"nb":1,"a":[["ARO%3A3004105","TMB-1"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3004106","l":"TMB-2","na":1,"nb":1,"a":[["ARO%3A3004106","TMB-2"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3004111","l":"FosA6","na":1,"nb":1,"a":[["ARO%3A3004111","FosA6"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004113","l":"FosA7","na":1,"nb":1,"a":[["ARO%3A3004113","FosA7"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004124","l":"Moraxella catarrhalis M35","na":1,"nb":1,"a":[["ARO%3A3004124","Moraxella catarrhalis M35"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3004132","l":"Chlamydomonas reinhardtii 23S rRNA with mutation conferring resistance to erythromycin","na":1,"nb":1,"a":[["ARO%3A3004132","Chlamydomonas reinhardtii 23S rRNA with mutation conferring resistance to erythromycin"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004133","l":"Brachyspira hyodysenteriae 23S rRNA with mutation conferring resistance to tylosin","na":1,"nb":1,"a":[["ARO%3A3004133","Brachyspira hyodysenteriae 23S rRNA with mutation conferring resistance to tylosin"]],"b":[["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3004134","l":"Helicobacter pylori 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004134","Helicobacter pylori 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004135","l":"Mycobacterium tuberculosis iniB with mutation conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3004135","Mycobacterium tuberculosis iniB with mutation conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3004149","l":"Escherichia coli 23S rRNA with mutation conferring resistance to clindamycin","na":1,"nb":1,"a":[["ARO%3A3004149","Escherichia coli 23S rRNA with mutation conferring resistance to clindamycin"]],"b":[["antibacterial/clindamycin.html","clindamycin"]]},{"id":"ARO:3004150","l":"Escherichia coli 23S rRNA with mutation conferring resistance to chloramphenicol","na":1,"nb":1,"a":[["ARO%3A3004150","Escherichia coli 23S rRNA with mutation conferring resistance to chloramphenicol"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004153","l":"Mycobacterium tuberculosis thyA with mutation conferring resistance to para-aminosalicylic acid","na":1,"nb":1,"a":[["ARO%3A3004153","Mycobacterium tuberculosis thyA with mutation conferring resistance to para-aminosalicylic acid"]],"b":[["antimycobacterial/4-aminosalicylic-acid.html","4-aminosalicylic acid"]]},{"id":"ARO:3004157","l":"Mycobacterium tuberculosis folC with mutation conferring resistance to para-aminosalicylic acid","na":1,"nb":1,"a":[["ARO%3A3004157","Mycobacterium tuberculosis folC with mutation conferring resistance to para-aminosalicylic acid"]],"b":[["antimycobacterial/4-aminosalicylic-acid.html","4-aminosalicylic acid"]]},{"id":"ARO:3004159","l":"Mycoplasma gallisepticum 23S rRNA mutation conferring resistance to pleuromutilin antibiotics","na":1,"nb":1,"a":[["ARO%3A3004159","Mycoplasma gallisepticum 23S rRNA mutation conferring resistance to pleuromutilin antibiotics"]],"b":[["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"ARO:3004160","l":"Escherichia coli 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004160","Escherichia coli 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004161","l":"Propionibacteria 23S rRNA with mutation conferring resistance to macrolide antibiotics","na":1,"nb":1,"a":[["ARO%3A3004161","Propionibacteria 23S rRNA with mutation conferring resistance to macrolide antibiotics"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004163","l":"Mycobacteroides abscessus 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004163","Mycobacteroides abscessus 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004164","l":"Mycobacterium avium 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004164","Mycobacterium avium 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004165","l":"Mycobacteroides chelonae 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004165","Mycobacteroides chelonae 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004166","l":"Mycobacterium intracellulare 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004166","Mycobacterium intracellulare 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004167","l":"Mycobacterium intracellulare 23S rRNA with mutation conferring resistance to azithromycin","na":1,"nb":1,"a":[["ARO%3A3004167","Mycobacterium intracellulare 23S rRNA with mutation conferring resistance to azithromycin"]],"b":[["antibacterial/azithromycin.html","azithromycin"]]},{"id":"ARO:3004168","l":"Mycobacterium kansasii 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004168","Mycobacterium kansasii 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004169","l":"Mycolicibacterium smegmatis 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004169","Mycolicibacterium smegmatis 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004171","l":"Streptomyces ambofaciens 23S rRNA with mutation conferring resistance to macrolide antibiotics","na":1,"nb":1,"a":[["ARO%3A3004171","Streptomyces ambofaciens 23S rRNA with mutation conferring resistance to macrolide antibiotics"]],"b":[["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3004173","l":"Escherichia coli 23S rRNA with mutation conferring resistance to oxazolidinone antibiotics","na":1,"nb":1,"a":[["ARO%3A3004173","Escherichia coli 23S rRNA with mutation conferring resistance to oxazolidinone antibiotics"]],"b":[["antibacterial/linezolid.html","linezolid"]]},{"id":"ARO:3004179","l":"Mycoplasma pneumoniae 23S rRNA mutation conferring resistance to erythromycin","na":1,"nb":1,"a":[["ARO%3A3004179","Mycoplasma pneumoniae 23S rRNA mutation conferring resistance to erythromycin"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004180","l":"Halobacterium halobium 23S rRNA mutation conferring resistance to chloramphenicol","na":1,"nb":1,"a":[["ARO%3A3004180","Halobacterium halobium 23S rRNA mutation conferring resistance to chloramphenicol"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004184","l":"Mycobacterium tuberculosis ribD with mutation conferring resistance to para-aminosalicylic acid","na":1,"nb":1,"a":[["ARO%3A3004184","Mycobacterium tuberculosis ribD with mutation conferring resistance to para-aminosalicylic acid"]],"b":[["antimycobacterial/4-aminosalicylic-acid.html","4-aminosalicylic acid"]]},{"id":"ARO:3004185","l":"mecD","na":1,"nb":1,"a":[["ARO%3A3004185","mecD"]],"b":[["antibacterial/methicillin.html","methicillin"]]},{"id":"ARO:3004289","l":"Vibrio cholerae varG","na":1,"nb":1,"a":[["ARO%3A3004289","Vibrio cholerae varG"]],"b":[["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3004291","l":"Rhodobacter sphaeroides ampC beta-lactamase","na":1,"nb":1,"a":[["ARO%3A3004291","Rhodobacter sphaeroides ampC beta-lactamase"]],"b":[["antibacterial/benzylpenicillin.html","benzylpenicillin"]]},{"id":"ARO:3004334","l":"Salmonella enterica gyrA with mutation conferring resistance to triclosan","na":1,"nb":1,"a":[["ARO%3A3004334","Salmonella enterica gyrA with mutation conferring resistance to triclosan"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3004335","l":"Escherichia coli gyrA with mutation conferring resistance to triclosan","na":1,"nb":1,"a":[["ARO%3A3004335","Escherichia coli gyrA with mutation conferring resistance to triclosan"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3004357","l":"catV","na":1,"nb":1,"a":[["ARO%3A3004357","catV"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004361","l":"sul4","na":1,"nb":1,"a":[["ARO%3A3004361","sul4"]],"b":[["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3004450","l":"TRU-1","na":1,"nb":1,"a":[["ARO%3A3004450","TRU-1"]],"b":[["antibacterial/cefalotin.html","cefalotin"]]},{"id":"ARO:3004451","l":"Agrobacterium fabrum chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004451","Agrobacterium fabrum chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004452","l":"Alkalihalobacillus clausii chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004452","Alkalihalobacillus clausii chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004454","l":"Campylobacter coli chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004454","Campylobacter coli chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004455","l":"Streptococcus suis chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004455","Streptococcus suis chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004456","l":"Enterococcus faecium chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004456","Enterococcus faecium chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004457","l":"Staphylococcus intermedius chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004457","Staphylococcus intermedius chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004458","l":"Enterococcus faecalis chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004458","Enterococcus faecalis chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004460","l":"Vibrio anguillarum chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004460","Vibrio anguillarum chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004480","l":"Bifidobacterium adolescentis rpoB mutants conferring resistance to rifampicin","na":1,"nb":1,"a":[["ARO%3A3004480","Bifidobacterium adolescentis rpoB mutants conferring resistance to rifampicin"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3004498","l":"dfrB4","na":1,"nb":1,"a":[["ARO%3A3004498","dfrB4"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004539","l":"mphH","na":1,"nb":1,"a":[["ARO%3A3004539","mphH"]],"b":[["antibacterial/azithromycin.html","azithromycin"]]},{"id":"ARO:3004542","l":"mphN","na":1,"nb":1,"a":[["ARO%3A3004542","mphN"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004543","l":"mphO","na":1,"nb":1,"a":[["ARO%3A3004543","mphO"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004546","l":"Campylobacter jejuni 23S rRNA with mutation conferring resistance to erythromycin","na":1,"nb":1,"a":[["ARO%3A3004546","Campylobacter jejuni 23S rRNA with mutation conferring resistance to erythromycin"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004547","l":"dfrA6","na":1,"nb":1,"a":[["ARO%3A3004547","dfrA6"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004548","l":"dfrA9","na":1,"nb":1,"a":[["ARO%3A3004548","dfrA9"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004549","l":"dfrB5","na":1,"nb":1,"a":[["ARO%3A3004549","dfrB5"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004550","l":"dfrA27","na":1,"nb":1,"a":[["ARO%3A3004550","dfrA27"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004551","l":"dfrA28","na":1,"nb":1,"a":[["ARO%3A3004551","dfrA28"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004552","l":"dfrA30","na":1,"nb":1,"a":[["ARO%3A3004552","dfrA30"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004554","l":"dfrA29","na":1,"nb":1,"a":[["ARO%3A3004554","dfrA29"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004555","l":"dfrA32","na":1,"nb":1,"a":[["ARO%3A3004555","dfrA32"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004556","l":"dfrB7","na":1,"nb":1,"a":[["ARO%3A3004556","dfrB7"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004561","l":"Clostridioides difficile murG with mutation conferring resistance to vancomycin","na":1,"nb":1,"a":[["ARO%3A3004561","Clostridioides difficile murG with mutation conferring resistance to vancomycin"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3004568","l":"dfrA18","na":1,"nb":1,"a":[["ARO%3A3004568","dfrA18"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004573","l":"Acinetobacter baumannii AbaF","na":1,"nb":1,"a":[["ARO%3A3004573","Acinetobacter baumannii AbaF"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004601","l":"LnuP","na":1,"nb":1,"a":[["ARO%3A3004601","LnuP"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3004605","l":"ermZ","na":1,"nb":1,"a":[["ARO%3A3004605","ermZ"]],"b":[["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3004608","l":"EreD","na":1,"nb":1,"a":[["ARO%3A3004608","EreD"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004622","l":"QnrS10","na":1,"nb":1,"a":[["ARO%3A3004622","QnrS10"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004624","l":"QnrS11","na":1,"nb":1,"a":[["ARO%3A3004624","QnrS11"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004625","l":"QnrS12","na":1,"nb":1,"a":[["ARO%3A3004625","QnrS12"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004627","l":"QnrS15","na":1,"nb":1,"a":[["ARO%3A3004627","QnrS15"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004628","l":"","na":1,"nb":1,"a":[["ARO%3A3004628","AAC(2')-IIa"]],"b":[["antifungal/kasugamycin.html","kasugamycin"]]},{"id":"ARO:3004630","l":"Mycoplasma genitalium parC mutations confers resistance to Moxifloxacin","na":1,"nb":1,"a":[["ARO%3A3004630","Mycoplasma genitalium parC mutations confers resistance to Moxifloxacin"]],"b":[["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3004631","l":"Mycoplasma genitalium gyrA mutation confers resistance to fluoroquinolones","na":1,"nb":1,"a":[["ARO%3A3004631","Mycoplasma genitalium gyrA mutation confers resistance to fluoroquinolones"]],"b":[["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3004636","l":"qnrE1","na":1,"nb":1,"a":[["ARO%3A3004636","qnrE1"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004637","l":"qnrE2","na":1,"nb":1,"a":[["ARO%3A3004637","qnrE2"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004640","l":"dfrA15b","na":1,"nb":1,"a":[["ARO%3A3004640","dfrA15b"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004642","l":"dfrA3b","na":1,"nb":1,"a":[["ARO%3A3004642","dfrA3b"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004643","l":"Erm(K)","na":1,"nb":1,"a":[["ARO%3A3004643","Erm(K)"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004644","l":"dfrA6 from Proteus mirabilis","na":1,"nb":1,"a":[["ARO%3A3004644","dfrA6 from Proteus mirabilis"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004645","l":"dfrI","na":1,"nb":1,"a":[["ARO%3A3004645","dfrI"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004651","l":"lin","na":1,"nb":1,"a":[["ARO%3A3004651","lin"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3004653","l":"tetR(G)","na":1,"nb":1,"a":[["ARO%3A3004653","tetR(G)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004655","l":"nimB","na":1,"nb":1,"a":[["ARO%3A3004655","nimB"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3004656","l":"catII from Escherichia coli K-12","na":1,"nb":1,"a":[["ARO%3A3004656","catII from Escherichia coli K-12"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004657","l":"catA4","na":1,"nb":1,"a":[["ARO%3A3004657","catA4"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004658","l":"catA8","na":1,"nb":1,"a":[["ARO%3A3004658","catA8"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004659","l":"Mef(En2)","na":1,"nb":1,"a":[["ARO%3A3004659","Mef(En2)"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3004660","l":"catB11","na":1,"nb":1,"a":[["ARO%3A3004660","catB11"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004661","l":"Staphylococcus aureus FosB","na":1,"nb":1,"a":[["ARO%3A3004661","Staphylococcus aureus FosB"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004663","l":"FusF","na":1,"nb":1,"a":[["ARO%3A3004663","FusF"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3004665","l":"cmlA8","na":1,"nb":1,"a":[["ARO%3A3004665","cmlA8"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004669","l":"emtA","na":1,"nb":1,"a":[["ARO%3A3004669","emtA"]],"b":[["antibacterial/evernimicin.html","evernimicin"]]},{"id":"ARO:3004670","l":"FosB1","na":1,"nb":1,"a":[["ARO%3A3004670","FosB1"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004671","l":"FosB4","na":1,"nb":1,"a":[["ARO%3A3004671","FosB4"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004672","l":"FosB5","na":1,"nb":1,"a":[["ARO%3A3004672","FosB5"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004673","l":"FosB6","na":1,"nb":1,"a":[["ARO%3A3004673","FosB6"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004674","l":"FosD","na":1,"nb":1,"a":[["ARO%3A3004674","FosD"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004681","l":"Clostridioides difficile rpoC with mutation conferring resistance to vancomycin","na":1,"nb":1,"a":[["ARO%3A3004681","Clostridioides difficile rpoC with mutation conferring resistance to vancomycin"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3004683","l":"aadS","na":1,"nb":1,"a":[["ARO%3A3004683","aadS"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004699","l":"sta","na":1,"nb":1,"a":[["ARO%3A3004699","sta"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"]]},{"id":"ARO:3004730","l":"tva(A)","na":1,"nb":1,"a":[["ARO%3A3004730","tva(A)"]],"b":[["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"ARO:3004835","l":"Neisseria gonorrhoeae pilQ gene conferring resistance to beta-lactam","na":1,"nb":1,"a":[["ARO%3A3004835","Neisseria gonorrhoeae pilQ gene conferring resistance to beta-lactam"]],"b":[["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3004836","l":"Neisseria gonorrhoeae 23S rRNA with mutation conferring resistance to azithromycin","na":1,"nb":1,"a":[["ARO%3A3004836","Neisseria gonorrhoeae 23S rRNA with mutation conferring resistance to azithromycin"]],"b":[["antibacterial/azithromycin.html","azithromycin"]]},{"id":"ARO:3004859","l":"Neisseria gonorrhoeae gyrB conferring resistance to zoliflodacin","na":1,"nb":1,"a":[["ARO%3A3004859","Neisseria gonorrhoeae gyrB conferring resistance to zoliflodacin"]],"b":[["antibacterial/zoliflodacin.html","zoliflodacin"]]},{"id":"ARO:3004860","l":"Burkholderia dolosa gyrA conferring resistance to fluoroquinolones","na":1,"nb":1,"a":[["ARO%3A3004860","Burkholderia dolosa gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004873","l":"Neisseria gonorrhoeae folP with mutation conferring resistance to sulfonamides","na":1,"nb":1,"a":[["ARO%3A3004873","Neisseria gonorrhoeae folP with mutation conferring resistance to sulfonamides"]],"b":[["antibacterial/sulfisoxazole.html","sulfisoxazole"]]},{"id":"ARO:3004876","l":"Mycobacterium tuberculosis inhA mutations conferring resistance to ethionamide","na":1,"nb":1,"a":[["ARO%3A3004876","Mycobacterium tuberculosis inhA mutations conferring resistance to ethionamide"]],"b":[["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"ARO:3004921","l":"Mycobacterium tuberculosis ahpC mutations confer resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004921","Mycobacterium tuberculosis ahpC mutations confer resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004922","l":"Mycobacterium tuberculosis fabG1 mutations confer resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004922","Mycobacterium tuberculosis fabG1 mutations confer resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004923","l":"Mycobacterium tuberculosis furA mutations confer resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004923","Mycobacterium tuberculosis furA mutations confer resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004924","l":"Mycobacterium tuberculosis inbR mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004924","Mycobacterium tuberculosis inbR mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004925","l":"Mycobacterium tuberculosis mshA mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004925","Mycobacterium tuberculosis mshA mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004927","l":"Mycobacterium tuberculosis mshC mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004927","Mycobacterium tuberculosis mshC mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004928","l":"Mycobacterium tuberculosis mymA mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004928","Mycobacterium tuberculosis mymA mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004929","l":"Mycobacterium tuberculosis mmaA3 mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004929","Mycobacterium tuberculosis mmaA3 mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004931","l":"Mycobacterium tuberculosis nudC mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004931","Mycobacterium tuberculosis nudC mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004932","l":"Mycobacterium tuberculosis sigI mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004932","Mycobacterium tuberculosis sigI mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004933","l":"Mycobacterium tuberculosis fabG1 mutation conferring resistance to ethionamide","na":1,"nb":1,"a":[["ARO%3A3004933","Mycobacterium tuberculosis fabG1 mutation conferring resistance to ethionamide"]],"b":[["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"ARO:3004934","l":"Mycobacterium tuberculosis mshC mutations conferring resistance to ethionamide","na":1,"nb":1,"a":[["ARO%3A3004934","Mycobacterium tuberculosis mshC mutations conferring resistance to ethionamide"]],"b":[["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"ARO:3004935","l":"Mycobacterium tuberculosis nudC mutations conferring resistance to ethionamide","na":1,"nb":1,"a":[["ARO%3A3004935","Mycobacterium tuberculosis nudC mutations conferring resistance to ethionamide"]],"b":[["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"ARO:3004941","l":"Mycobacterium tuberculosis ddlA mutations confer resistance to cycloserine","na":1,"nb":1,"a":[["ARO%3A3004941","Mycobacterium tuberculosis ddlA mutations confer resistance to cycloserine"]],"b":[["antimycobacterial/d-cycloserine.html","D-cycloserine"]]},{"id":"ARO:3004945","l":"Mycobacterium tuberculosis ald mutations confer resistance to cycloserine","na":1,"nb":1,"a":[["ARO%3A3004945","Mycobacterium tuberculosis ald mutations confer resistance to cycloserine"]],"b":[["antimycobacterial/d-cycloserine.html","D-cycloserine"]]},{"id":"ARO:3004947","l":"Mycobacterium tuberculosis alr with mutation conferring resistance to cycloserine","na":1,"nb":1,"a":[["ARO%3A3004947","Mycobacterium tuberculosis alr with mutation conferring resistance to cycloserine"]],"b":[["antimycobacterial/d-cycloserine.html","D-cycloserine"]]},{"id":"ARO:3004950","l":"Mycobacterium tuberculosis ubiA mutations confer resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3004950","Mycobacterium tuberculosis ubiA mutations confer resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3004951","l":"Mycobacterium tuberculosis aftA mutations confer resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3004951","Mycobacterium tuberculosis aftA mutations confer resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3004955","l":"Mycobacterium tuberculosis Rv0565c mutation conferring resistance to ethionamide","na":1,"nb":1,"a":[["ARO%3A3004955","Mycobacterium tuberculosis Rv0565c mutation conferring resistance to ethionamide"]],"b":[["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"ARO:3004956","l":"Neisseria gonorrhoeae rpld","na":1,"nb":1,"a":[["ARO%3A3004956","Neisseria gonorrhoeae rpld"]],"b":[["antibacterial/azithromycin.html","azithromycin"]]},{"id":"ARO:3004957","l":"Mycobacterium tuberculosis clpC1 with mutation conferring resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004957","Mycobacterium tuberculosis clpC1 with mutation conferring resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004963","l":"Mycobacterium tuberculosis eis mutations confer resistance to kanamycin","na":1,"nb":1,"a":[["ARO%3A3004963","Mycobacterium tuberculosis eis mutations confer resistance to kanamycin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004967","l":"Mycobacterium tuberculosis whib7 mutations confer resistance to kanamycin","na":1,"nb":1,"a":[["ARO%3A3004967","Mycobacterium tuberculosis whib7 mutations confer resistance to kanamycin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004968","l":"Mycobacterium tuberculosis whib7 mutation conferring resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3004968","Mycobacterium tuberculosis whib7 mutation conferring resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004971","l":"Mycobacterium tuberculosis Rv1258c mutations confer resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3004971","Mycobacterium tuberculosis Rv1258c mutations confer resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004975","l":"Mycobacterium tuberculosis ppsC mutations confer resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004975","Mycobacterium tuberculosis ppsC mutations confer resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004976","l":"Mycobacterium tuberculosis ppsD mutations confer resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004976","Mycobacterium tuberculosis ppsD mutations confer resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004977","l":"Mycobacterium tuberculosis gpsI with mutations conferring resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004977","Mycobacterium tuberculosis gpsI with mutations conferring resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004978","l":"Mycobacterium tuberculosis mas mutations confer resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004978","Mycobacterium tuberculosis mas mutations confer resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004981","l":"Mycobacterium tuberculosis Rv0191 mutations confer resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004981","Mycobacterium tuberculosis Rv0191 mutations confer resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004984","l":"Mycobacterium tuberculosis Rv1667 mutations confer resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004984","Mycobacterium tuberculosis Rv1667 mutations confer resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004987","l":"Mycobacterium tuberculosis Rv2731 mutations confer resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004987","Mycobacterium tuberculosis Rv2731 mutations confer resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004993","l":"Mycobacterium tuberculosis Rv3169 mutations confer resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004993","Mycobacterium tuberculosis Rv3169 mutations confer resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004999","l":"Mycobacterium tuberculosis rpoA mutations confer resistance to rifampicin","na":1,"nb":1,"a":[["ARO%3A3004999","Mycobacterium tuberculosis rpoA mutations confer resistance to rifampicin"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3005006","l":"tet(57)","na":1,"nb":1,"a":[["ARO%3A3005006","tet(57)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3005007","l":"QnrVC2","na":1,"nb":1,"a":[["ARO%3A3005007","QnrVC2"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3005024","l":"FosL1","na":1,"nb":1,"a":[["ARO%3A3005024","FosL1"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3005036","l":"BLMT","na":1,"nb":1,"a":[["ARO%3A3005036","BLMT"]],"b":[["antibacterial/bleomycin.html","bleomycin"]]},{"id":"ARO:3005043","l":"cmlA9","na":1,"nb":1,"a":[["ARO%3A3005043","cmlA9"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3005045","l":"SatA","na":1,"nb":1,"a":[["ARO%3A3005045","SatA"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"]]},{"id":"ARO:3005058","l":"mlaFEDB","na":1,"nb":1,"a":[["ARO%3A3005058","mlaFEDB"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3005083","l":"Thermus thermophilus 23s rRNA conferring resistance to pleuromutilin antibiotics","na":1,"nb":1,"a":[["ARO%3A3005083","Thermus thermophilus 23s rRNA conferring resistance to pleuromutilin antibiotics"]],"b":[["antibacterial/tiamulin.html","tiamulin"]]},{"id":"ARO:3005084","l":"dfrA31","na":1,"nb":1,"a":[["ARO%3A3005084","dfrA31"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005087","l":"msrF","na":1,"nb":1,"a":[["ARO%3A3005087","msrF"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3005088","l":"msrH","na":1,"nb":1,"a":[["ARO%3A3005088","msrH"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3005089","l":"mef(D)","na":1,"nb":1,"a":[["ARO%3A3005089","mef(D)"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3005099","l":"23S rRNA (adenine(2058)-N(6))-methyltransferase Erm(A)","na":1,"nb":1,"a":[["ARO%3A3005099","23S rRNA (adenine(2058)-N(6))-methyltransferase Erm(A)"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3005100","l":"FosB2","na":1,"nb":1,"a":[["ARO%3A3005100","FosB2"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3005102","l":"Mycobacterium tuberculosis katG mutations conferring resistance to prothionamide","na":1,"nb":1,"a":[["ARO%3A3005102","Mycobacterium tuberculosis katG mutations conferring resistance to prothionamide"]],"b":[["antibacterial/prothionamide.html","prothionamide"]]},{"id":"ARO:3005105","l":"Mycobacterium tuberculosis ethA mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3005105","Mycobacterium tuberculosis ethA mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3005106","l":"Mycobacterium tuberculosis ethA mutations conferring resistance to prothionamide","na":1,"nb":1,"a":[["ARO%3A3005106","Mycobacterium tuberculosis ethA mutations conferring resistance to prothionamide"]],"b":[["antibacterial/prothionamide.html","prothionamide"]]},{"id":"ARO:3005108","l":"Mycobacterium tuberculosis mshA mutations conferring resistance to prothionamide","na":1,"nb":1,"a":[["ARO%3A3005108","Mycobacterium tuberculosis mshA mutations conferring resistance to prothionamide"]],"b":[["antibacterial/prothionamide.html","prothionamide"]]},{"id":"ARO:3005162","l":"FosA7.5","na":1,"nb":1,"a":[["ARO%3A3005162","FosA7.5"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3005164","l":"dfrA35","na":1,"nb":1,"a":[["ARO%3A3005164","dfrA35"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005178","l":"Mycobacterium tuberculosis ethA mutations conferring resistance to perchlozone","na":1,"nb":1,"a":[["ARO%3A3005178","Mycobacterium tuberculosis ethA mutations conferring resistance to perchlozone"]],"b":[["antibacterial/perchlozone.html","perchlozone"]]},{"id":"ARO:3005255","l":"TEM-224","na":1,"nb":1,"a":[["ARO%3A3005255","TEM-224"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005256","l":"TEM-225","na":1,"nb":1,"a":[["ARO%3A3005256","TEM-225"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005257","l":"TEM-226","na":1,"nb":1,"a":[["ARO%3A3005257","TEM-226"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005258","l":"TEM-227","na":1,"nb":1,"a":[["ARO%3A3005258","TEM-227"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005259","l":"TEM-228","na":1,"nb":1,"a":[["ARO%3A3005259","TEM-228"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005260","l":"TEM-229","na":1,"nb":1,"a":[["ARO%3A3005260","TEM-229"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005261","l":"TEM-230","na":1,"nb":1,"a":[["ARO%3A3005261","TEM-230"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005262","l":"TEM-231","na":1,"nb":1,"a":[["ARO%3A3005262","TEM-231"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005263","l":"TEM-232","na":1,"nb":1,"a":[["ARO%3A3005263","TEM-232"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005264","l":"TEM-233","na":1,"nb":1,"a":[["ARO%3A3005264","TEM-233"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005265","l":"TEM-234","na":1,"nb":1,"a":[["ARO%3A3005265","TEM-234"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005266","l":"TEM-235","na":1,"nb":1,"a":[["ARO%3A3005266","TEM-235"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005267","l":"TEM-236","na":1,"nb":1,"a":[["ARO%3A3005267","TEM-236"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005268","l":"TEM-237","na":1,"nb":1,"a":[["ARO%3A3005268","TEM-237"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005269","l":"TEM-238","na":1,"nb":1,"a":[["ARO%3A3005269","TEM-238"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005270","l":"TEM-240","na":1,"nb":1,"a":[["ARO%3A3005270","TEM-240"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005271","l":"TEM-241","na":1,"nb":1,"a":[["ARO%3A3005271","TEM-241"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005272","l":"TEM-242","na":1,"nb":1,"a":[["ARO%3A3005272","TEM-242"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005273","l":"TEM-243","na":1,"nb":1,"a":[["ARO%3A3005273","TEM-243"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005334","l":"Trimethoprim-resistant dihydrofolate reductase DfrA42","na":1,"nb":1,"a":[["ARO%3A3005334","Trimethoprim-resistant dihydrofolate reductase DfrA42"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005345","l":"Trimethoprim-resistant dihydrofolate reductase DfrA43","na":1,"nb":1,"a":[["ARO%3A3005345","Trimethoprim-resistant dihydrofolate reductase DfrA43"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005346","l":"DfrA34","na":1,"nb":1,"a":[["ARO%3A3005346","DfrA34"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005347","l":"DfrA37","na":1,"nb":1,"a":[["ARO%3A3005347","DfrA37"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005348","l":"DfrA36","na":1,"nb":1,"a":[["ARO%3A3005348","DfrA36"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005349","l":"DfrA38","na":1,"nb":1,"a":[["ARO%3A3005349","DfrA38"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005350","l":"DfrB9","na":1,"nb":1,"a":[["ARO%3A3005350","DfrB9"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005351","l":"DfrA39","na":1,"nb":1,"a":[["ARO%3A3005351","DfrA39"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005354","l":"dfr22","na":1,"nb":1,"a":[["ARO%3A3005354","dfr22"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3006139","l":"TEM-98","na":1,"nb":1,"a":[["ARO%3A3006139","TEM-98"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3006140","l":"TEM-99","na":1,"nb":1,"a":[["ARO%3A3006140","TEM-99"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3006228","l":"ACC-1a","na":1,"nb":1,"a":[["ARO%3A3006228","ACC-1a"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3006229","l":"ACC-1b","na":1,"nb":1,"a":[["ARO%3A3006229","ACC-1b"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3006230","l":"ACC-1c","na":1,"nb":1,"a":[["ARO%3A3006230","ACC-1c"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3006231","l":"ACC-1d","na":1,"nb":1,"a":[["ARO%3A3006231","ACC-1d"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3006232","l":"ACC-7","na":1,"nb":1,"a":[["ARO%3A3006232","ACC-7"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3006233","l":"ACC-8","na":1,"nb":1,"a":[["ARO%3A3006233","ACC-8"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007003","l":"VHH-1","na":1,"nb":1,"a":[["ARO%3A3007003","VHH-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"]]},{"id":"ARO:3007004","l":"VHW-1","na":1,"nb":1,"a":[["ARO%3A3007004","VHW-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"]]},{"id":"ARO:3007005","l":"YEM-1","na":1,"nb":1,"a":[["ARO%3A3007005","YEM-1"]],"b":[["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3007012","l":"sepA","na":1,"nb":1,"a":[["ARO%3A3007012","sepA"]],"b":[["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3007013","l":"sdrM","na":1,"nb":1,"a":[["ARO%3A3007013","sdrM"]],"b":[["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3007014","l":"qacJ","na":1,"nb":1,"a":[["ARO%3A3007014","qacJ"]],"b":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"]]},{"id":"ARO:3007015","l":"qacG","na":1,"nb":1,"a":[["ARO%3A3007015","qacG"]],"b":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"]]},{"id":"ARO:3007019","l":"fexB","na":1,"nb":1,"a":[["ARO%3A3007019","fexB"]],"b":[["antibacterial/florfenicol.html","florfenicol"]]},{"id":"ARO:3007041","l":"Erm(52)","na":1,"nb":1,"a":[["ARO%3A3007041","Erm(52)"]],"b":[["antibacterial/clindamycin.html","clindamycin"]]},{"id":"ARO:3007043","l":"msr(I)","na":1,"nb":1,"a":[["ARO%3A3007043","msr(I)"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007052","l":"Helicobacter pylori gyrA conferring resistance to fluoroquinolones","na":1,"nb":1,"a":[["ARO%3A3007052","Helicobacter pylori gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"ARO:3007057","l":"Helicobacter pylori pbp3 conferring resistance to amoxicillin","na":1,"nb":1,"a":[["ARO%3A3007057","Helicobacter pylori pbp3 conferring resistance to amoxicillin"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3007058","l":"Helicobacter pylori pbp2 mutants conferring resistance to amoxicillin","na":1,"nb":1,"a":[["ARO%3A3007058","Helicobacter pylori pbp2 mutants conferring resistance to amoxicillin"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3007059","l":"Helicobacter pylori frxA mutation conferring resistance to metronidazole","na":1,"nb":1,"a":[["ARO%3A3007059","Helicobacter pylori frxA mutation conferring resistance to metronidazole"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007060","l":"Helicobacter pylori pbp1 mutants conferring resistance to amoxicillin","na":1,"nb":1,"a":[["ARO%3A3007060","Helicobacter pylori pbp1 mutants conferring resistance to amoxicillin"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3007061","l":"hp1165","na":1,"nb":1,"a":[["ARO%3A3007061","hp1165"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007069","l":"FosY","na":1,"nb":1,"a":[["ARO%3A3007069","FosY"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007073","l":"Bacillus subtilis rpoB mutants conferring resistance to rifampin","na":1,"nb":1,"a":[["ARO%3A3007073","Bacillus subtilis rpoB mutants conferring resistance to rifampin"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3007097","l":"FosM1","na":1,"nb":1,"a":[["ARO%3A3007097","FosM1"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007098","l":"FosM2","na":1,"nb":1,"a":[["ARO%3A3007098","FosM2"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007099","l":"FosM3","na":1,"nb":1,"a":[["ARO%3A3007099","FosM3"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007104","l":"nimA","na":1,"nb":1,"a":[["ARO%3A3007104","nimA"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007105","l":"nimC","na":1,"nb":1,"a":[["ARO%3A3007105","nimC"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007106","l":"nimD","na":1,"nb":1,"a":[["ARO%3A3007106","nimD"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007107","l":"nimE","na":1,"nb":1,"a":[["ARO%3A3007107","nimE"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007108","l":"nimF","na":1,"nb":1,"a":[["ARO%3A3007108","nimF"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007109","l":"nimG","na":1,"nb":1,"a":[["ARO%3A3007109","nimG"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007110","l":"nimH","na":1,"nb":1,"a":[["ARO%3A3007110","nimH"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007111","l":"nimI","na":1,"nb":1,"a":[["ARO%3A3007111","nimI"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007112","l":"nimJ","na":1,"nb":1,"a":[["ARO%3A3007112","nimJ"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007113","l":"nimK","na":1,"nb":1,"a":[["ARO%3A3007113","nimK"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007119","l":"tet(O/32/O)","na":1,"nb":1,"a":[["ARO%3A3007119","tet(O/32/O)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007120","l":"tet(O/M/O)","na":1,"nb":1,"a":[["ARO%3A3007120","tet(O/M/O)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007121","l":"tet(O/W)","na":1,"nb":1,"a":[["ARO%3A3007121","tet(O/W)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007122","l":"tet(O/W/32/O)","na":1,"nb":1,"a":[["ARO%3A3007122","tet(O/W/32/O)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007123","l":"tet(O/W/O)","na":1,"nb":1,"a":[["ARO%3A3007123","tet(O/W/O)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007124","l":"tet(W/32/O)","na":1,"nb":1,"a":[["ARO%3A3007124","tet(W/32/O)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007127","l":"Streptomyces lividans otr(A)","na":1,"nb":1,"a":[["ARO%3A3007127","Streptomyces lividans otr(A)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007185","l":"Mycobacterium tuberculosis Rv1258c mutations confer resistance to ethambutol and capreomycin","na":1,"nb":1,"a":[["ARO%3A3007185","Mycobacterium tuberculosis Rv1258c mutations confer resistance to ethambutol and capreomycin"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3007200","l":"PAM-2","na":1,"nb":1,"a":[["ARO%3A3007200","PAM-2"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007210","l":"Nocardia farcinica rox","na":1,"nb":1,"a":[["ARO%3A3007210","Nocardia farcinica rox"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3007368","l":"FosG","na":1,"nb":1,"a":[["ARO%3A3007368","FosG"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007369","l":"FosH","na":1,"nb":1,"a":[["ARO%3A3007369","FosH"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007370","l":"FosI","na":1,"nb":1,"a":[["ARO%3A3007370","FosI"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007371","l":"FosA8","na":1,"nb":1,"a":[["ARO%3A3007371","FosA8"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007372","l":"FosBx1","na":1,"nb":1,"a":[["ARO%3A3007372","FosBx1"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007381","l":"KPC-86","na":1,"nb":1,"a":[["ARO%3A3007381","KPC-86"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007383","l":"KPC-95","na":1,"nb":1,"a":[["ARO%3A3007383","KPC-95"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007401","l":"ANT(9)-Ib","na":1,"nb":1,"a":[["ARO%3A3007401","ANT(9)-Ib"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3007420","l":"Klebsiella pneumoniae lamB with mutations conferring resistance to ceftazidime-avibactam","na":1,"nb":1,"a":[["ARO%3A3007420","Klebsiella pneumoniae lamB with mutations conferring resistance to ceftazidime-avibactam"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007421","l":"Klebsiella pneumoniae PBP3 mutants conferring resistance to ceftazidime-avibactam","na":1,"nb":1,"a":[["ARO%3A3007421","Klebsiella pneumoniae PBP3 mutants conferring resistance to ceftazidime-avibactam"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007427","l":"ThfT","na":1,"nb":1,"a":[["ARO%3A3007427","ThfT"]],"b":[["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3007436","l":"KPC-96","na":1,"nb":1,"a":[["ARO%3A3007436","KPC-96"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007446","l":"KPC-100","na":1,"nb":1,"a":[["ARO%3A3007446","KPC-100"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007448","l":"TEM-246","na":1,"nb":1,"a":[["ARO%3A3007448","TEM-246"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007449","l":"KPC-97","na":1,"nb":1,"a":[["ARO%3A3007449","KPC-97"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007450","l":"KPC-98","na":1,"nb":1,"a":[["ARO%3A3007450","KPC-98"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007451","l":"TEM-247","na":1,"nb":1,"a":[["ARO%3A3007451","TEM-247"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007452","l":"KPC-99","na":1,"nb":1,"a":[["ARO%3A3007452","KPC-99"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007453","l":"TEM-244","na":1,"nb":1,"a":[["ARO%3A3007453","TEM-244"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007454","l":"TEM-245","na":1,"nb":1,"a":[["ARO%3A3007454","TEM-245"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007459","l":"EstT","na":1,"nb":1,"a":[["ARO%3A3007459","EstT"]],"b":[["antibacterial/tilmicosin.html","tilmicosin"]]},{"id":"ARO:3007476","l":"Mycobacterium abscessus atpE with mutation conferring resistance to bedaquiline","na":1,"nb":1,"a":[["ARO%3A3007476","Mycobacterium abscessus atpE with mutation conferring resistance to bedaquiline"]],"b":[["antimycobacterial/bedaquiline.html","bedaquiline"]]},{"id":"ARO:3007489","l":"dfrB10","na":1,"nb":1,"a":[["ARO%3A3007489","dfrB10"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3007490","l":"dfrB11","na":1,"nb":1,"a":[["ARO%3A3007490","dfrB11"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3007491","l":"Pseudomonas aeruginosa ampR with mutation conferring resistance to aztreonam","na":1,"nb":1,"a":[["ARO%3A3007491","Pseudomonas aeruginosa ampR with mutation conferring resistance to aztreonam"]],"b":[["antibacterial/aztreonam.html","aztreonam"]]},{"id":"ARO:3007492","l":"tet(62)","na":1,"nb":1,"a":[["ARO%3A3007492","tet(62)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007509","l":"Shigella flexneri acrA","na":1,"nb":1,"a":[["ARO%3A3007509","Shigella flexneri acrA"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3007515","l":"ANT(9)-Ic","na":1,"nb":1,"a":[["ARO%3A3007515","ANT(9)-Ic"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3007527","l":"Bacillus subtilis rpsE mutations conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3007527","Bacillus subtilis rpsE mutations conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3007536","l":"Mycobacterium tuberculosis 16S rRNA (rrnS) mutation conferring resistance to amikacin","na":1,"nb":1,"a":[["ARO%3A3007536","Mycobacterium tuberculosis 16S rRNA (rrnS) mutation conferring resistance to amikacin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3007537","l":"Mycobacterium tuberculosis 16S rRNA (rrnS) mutation conferring resistance to kanamycin","na":1,"nb":1,"a":[["ARO%3A3007537","Mycobacterium tuberculosis 16S rRNA (rrnS) mutation conferring resistance to kanamycin"]],"b":[["antibacterial/amikacin.html","amikacin"]]},{"id":"ARO:3007539","l":"APH(9)-Ic","na":1,"nb":1,"a":[["ARO%3A3007539","APH(9)-Ic"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3007544","l":"Erysipelothrix rhusiopathiae gyrA with mutation conferring resistance to enrofloxacin","na":1,"nb":1,"a":[["ARO%3A3007544","Erysipelothrix rhusiopathiae gyrA with mutation conferring resistance to enrofloxacin"]],"b":[["antibacterial/enrofloxacin.html","enrofloxacin"]]},{"id":"ARO:3007548","l":"Candida spp. FKS2 with mutations conferring resistance to echinocandin antibiotics","na":1,"nb":1,"a":[["ARO%3A3007548","Candida spp. FKS2 with mutations conferring resistance to echinocandin antibiotics"]],"b":[["antifungal/micafungin.html","micafungin"]]},{"id":"ARO:3007551","l":"Candida spp. Upc2 with mutations conferring resistance to azole antibiotics","na":1,"nb":1,"a":[["ARO%3A3007551","Candida spp. Upc2 with mutations conferring resistance to azole antibiotics"]],"b":[["antifungal/fluconazole.html","fluconazole"]]},{"id":"ARO:3007557","l":"Candida spp. FUR1 with mutations conferring resistance to 5-flucytosine","na":1,"nb":1,"a":[["ARO%3A3007557","Candida spp. FUR1 with mutations conferring resistance to 5-flucytosine"]],"b":[["antifungal/flucytosine.html","flucytosine"]]},{"id":"ARO:3007559","l":"Saccharomyces spp. FUR1 with mutations conferring resistance to 5-flucytosine","na":1,"nb":1,"a":[["ARO%3A3007559","Saccharomyces spp. FUR1 with mutations conferring resistance to 5-flucytosine"]],"b":[["antifungal/flucytosine.html","flucytosine"]]},{"id":"ARO:3007561","l":"OXA-1038","na":1,"nb":1,"a":[["ARO%3A3007561","OXA-1038"]],"b":[["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3007562","l":"OXA-1039","na":1,"nb":1,"a":[["ARO%3A3007562","OXA-1039"]],"b":[["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3007566","l":"Cryptococcus spp. AFR1","na":1,"nb":1,"a":[["ARO%3A3007566","Cryptococcus spp. AFR1"]],"b":[["antifungal/fluconazole.html","fluconazole"]]},{"id":"ARO:3007568","l":"Cryptococcus spp. UXS1 conferring resistance to 5-flucytosine via absence","na":1,"nb":1,"a":[["ARO%3A3007568","Cryptococcus spp. UXS1 conferring resistance to 5-flucytosine via absence"]],"b":[["antifungal/flucytosine.html","flucytosine"]]},{"id":"ARO:3007642","l":"Aspergillus spp. fcyB conferring resistance to 5-flucytosine via reduced permeability","na":1,"nb":1,"a":[["ARO%3A3007642","Aspergillus spp. fcyB conferring resistance to 5-flucytosine via reduced permeability"]],"b":[["antifungal/flucytosine.html","flucytosine"]]},{"id":"ARO:3007664","l":"Candida spp. High Osmolarity Glycerol 1 conferring resistance to caspofungin via absence","na":1,"nb":1,"a":[["ARO%3A3007664","Candida spp. High Osmolarity Glycerol 1 conferring resistance to caspofungin via absence"]],"b":[["antifungal/caspofungin.html","caspofungin"]]},{"id":"ARO:3007665","l":"Candida spp. FCY2 conferring resistance to 5-flucytosine via reduced permeability","na":1,"nb":1,"a":[["ARO%3A3007665","Candida spp. FCY2 conferring resistance to 5-flucytosine via reduced permeability"]],"b":[["antifungal/flucytosine.html","flucytosine"]]},{"id":"ARO:3007671","l":"Clostridioides difficile nimB","na":1,"nb":1,"a":[["ARO%3A3007671","Clostridioides difficile nimB"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007674","l":"Mycobacterium tuberculosis Rv0678 with mutation conferring resistance to bedaquiline","na":1,"nb":1,"a":[["ARO%3A3007674","Mycobacterium tuberculosis Rv0678 with mutation conferring resistance to bedaquiline"]],"b":[["antimycobacterial/bedaquiline.html","bedaquiline"]]},{"id":"ARO:3007678","l":"IreK","na":1,"nb":1,"a":[["ARO%3A3007678","IreK"]],"b":[["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3007749","l":"Salmonella gallinarum folP with mutation conferring resistance to sulfonamides","na":1,"nb":1,"a":[["ARO%3A3007749","Salmonella gallinarum folP with mutation conferring resistance to sulfonamides"]],"b":[["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3007759","l":"Treponema pallidum 23S rRNA with mutation conferring resistance to erythromycin","na":1,"nb":1,"a":[["ARO%3A3007759","Treponema pallidum 23S rRNA with mutation conferring resistance to erythromycin"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3007794","l":"Vibrio vulnificus rpoB mutants conferring resistance to rifampin","na":1,"nb":1,"a":[["ARO%3A3007794","Vibrio vulnificus rpoB mutants conferring resistance to rifampin"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3007798","l":"Mycobacterium tuberculosis iniA mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3007798","Mycobacterium tuberculosis iniA mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3007806","l":"Mycobacterium tuberculosis gyrA mutations conferring resistance to moxifloxacin","na":1,"nb":1,"a":[["ARO%3A3007806","Mycobacterium tuberculosis gyrA mutations conferring resistance to moxifloxacin"]],"b":[["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3007807","l":"Mycobacterium tuberculosis gyrA mutations conferring resistance to ofloxacin","na":1,"nb":1,"a":[["ARO%3A3007807","Mycobacterium tuberculosis gyrA mutations conferring resistance to ofloxacin"]],"b":[["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3007808","l":"Mycobacterium tuberculosis gyrB mutations conferring resistance to ofloxacin","na":1,"nb":1,"a":[["ARO%3A3007808","Mycobacterium tuberculosis gyrB mutations conferring resistance to ofloxacin"]],"b":[["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3007809","l":"Mycobacterium tuberculosis gyrA mutations conferring resistance to levofloxacin","na":1,"nb":1,"a":[["ARO%3A3007809","Mycobacterium tuberculosis gyrA mutations conferring resistance to levofloxacin"]],"b":[["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"ARO:3007810","l":"Mycobacterium tuberculosis gyrB mutations conferring resistance to levofloxacin","na":1,"nb":1,"a":[["ARO%3A3007810","Mycobacterium tuberculosis gyrB mutations conferring resistance to levofloxacin"]],"b":[["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"ARO:3007811","l":"Mycobacterium tuberculosis fabG1 with mutations conferring resistance to prothionamide","na":1,"nb":1,"a":[["ARO%3A3007811","Mycobacterium tuberculosis fabG1 with mutations conferring resistance to prothionamide"]],"b":[["antibacterial/prothionamide.html","prothionamide"]]},{"id":"ARO:3007838","l":"tet(65)","na":1,"nb":1,"a":[["ARO%3A3007838","tet(65)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007843","l":"VRA-F","na":1,"nb":1,"a":[["ARO%3A3007843","VRA-F"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3007849","l":"Mycobacterium tuberculosis fgd1 with mutation conferring resistance to delamanid","na":1,"nb":1,"a":[["ARO%3A3007849","Mycobacterium tuberculosis fgd1 with mutation conferring resistance to delamanid"]],"b":[["antibacterial/delamanid.html","delamanid"]]},{"id":"ARO:3007852","l":"Mycobacterium tuberculosis Rv0678 with mutation conferring resistance to clofazimine","na":1,"nb":1,"a":[["ARO%3A3007852","Mycobacterium tuberculosis Rv0678 with mutation conferring resistance to clofazimine"]],"b":[["antimycobacterial/clofazimine.html","clofazimine"]]},{"id":"ARO:3007854","l":"Mycobacterium tuberculosis atpE with mutation conferring resistance to bedaquiline","na":1,"nb":1,"a":[["ARO%3A3007854","Mycobacterium tuberculosis atpE with mutation conferring resistance to bedaquiline"]],"b":[["antimycobacterial/bedaquiline.html","bedaquiline"]]},{"id":"ARO:3007857","l":"KPC-134","na":1,"nb":1,"a":[["ARO%3A3007857","KPC-134"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"CHEBI:10015","l":"vobasine","na":1,"nb":1,"a":[["RHEA%3A76147","perivine + S-adenosyl-L-methionine = vobasine + S-adenosyl-L-homocysteine + 2 H(+)"]],"b":[["antiviral/vobasine.html","vobasine"]]},{"id":"CHEBI:100241","l":"ciprofloxacin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CPF","CPF-binding site"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"CHEBI:127780","l":"phosphonoformic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PPF","PPF-binding site"]],"b":[["antiviral/phosphonoformic-acid.html","phosphonoformic acid"]]},{"id":"CHEBI:133741","l":"(E)-dodec-2-enal","na":1,"nb":1,"a":[["RHEA%3A50784","dodecanal + NADP(+) = (2E)-dodecenal + NADPH + H(+)"]],"b":[["antibacterial/e-dodec-2-enal.html","(E)-dodec-2-enal"]]},{"id":"CHEBI:134347","l":"glandicoline B","na":1,"nb":1,"a":[["RHEA%3A51732","glandicoline B + S-adenosyl-L-methionine = meleagrin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/glandicoline-b.html","glandicoline B"]]},{"id":"CHEBI:135029","l":"cycloguanil","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_1CY","1CY-binding site"]],"b":[["antiprotozoal/cycloguanil.html","cycloguanil"]]},{"id":"CHEBI:137236","l":"ilomastat","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_GM6","GM6-binding site"]],"b":[["antibacterial/ilomastat.html","ilomastat"]]},{"id":"CHEBI:138511","l":"piericidin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HQH","HQH-binding site"]],"b":[["unspecified/piericidin-a.html","piericidin A"]]},{"id":"CHEBI:140376","l":"cefiderocol","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_140376","requires cefiderocol"]],"b":[["antibacterial/cefiderocol.html","cefiderocol"]]},{"id":"CHEBI:142921","l":"","na":1,"nb":1,"a":[["RHEA%3A79335","cinnamyl alcohol + 2 Fe(III)-[cytochrome c] = cinnamaldehyde + 2 Fe(II)-[cytochrome c] + 2 H(+)"]],"b":[["antifungal/e-cinnamaldehyde.html","(E)-cinnamaldehyde"]]},{"id":"CHEBI:144586","l":"4-hydroxy-2-oxobutanal","na":1,"nb":1,"a":[["RHEA%3A21212","N(6)-(3-O-phospho-D-erythrulosyl)-L-lysyl-[protein] + H2O = 4-hydroxy-2-oxobutanal + L-lysyl-[protein] + phosphate"]],"b":[["antibacterial/4-hydroxy-2-oxobutanal.html","4-hydroxy-2-oxobutanal"]]},{"id":"CHEBI:145026","l":"L-psicose","na":1,"nb":1,"a":[["RHEA%3A61784","L-allulose = keto-L-fructose"]],"b":[["antiviral/l-psicose.html","L-psicose"]]},{"id":"CHEBI:145043","l":"solasodine(1+)","na":1,"nb":1,"a":[["RHEA%3A61844","solasodine + UDP-alpha-D-glucose = solasodine 3-beta-D-glucoside + UDP + H(+)"]],"b":[["antifungal/solasodine-1.html","solasodine(1+)"]]},{"id":"CHEBI:145950","l":"nigerone","na":1,"nb":1,"a":[["RHEA%3A62792","2 rubrofusarin B + NADPH + O2 + 3 H(+) = nigerone + NADP(+) + 2 H2O"]],"b":[["antifungal/nigerone.html","nigerone"]]},{"id":"CHEBI:146007","l":"(M)-viriditoxin","na":1,"nb":1,"a":[["RHEA%3A62884","4 semiviriditoxin + O2 = 2 (M)-viriditoxin + 2 H2O"]],"b":[["antibacterial/m-viriditoxin.html","(M)-viriditoxin"]]},{"id":"CHEBI:15353","l":"blasticidin S","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BLS","BLS-binding site"]],"b":[["antifungal/blasticidin-s.html","blasticidin S"]]},{"id":"CHEBI:155860","l":"2,4-dihydroxy-3-methyl-6-(2-oxopropyl)benzaldehyde","na":1,"nb":1,"a":[["RHEA%3A64508","4 malonyl-CoA + acetyl-CoA + AH2 + S-adenosyl-L-methionine + 3 H(+) = 2,4-dihydroxy-3-methyl-6-(2-oxopropyl)benzaldehyde + A + S-adenosyl-L-homocysteine + 4 CO2 + 5 CoA + H2O"]],"b":[["antibacterial/2-4-dihydroxy-3-methyl-6-2-oxopropyl-benzaldehyde.html","2,4-dihydroxy-3-methyl-6-(2-oxopropyl)benzaldehyde"]]},{"id":"CHEBI:156070","l":"butyl benzoate","na":1,"nb":1,"a":[["RHEA%3A64636","butan-1-ol + benzoyl-CoA = butyl benzoate + CoA"]],"b":[["biocide/butyl-benzoate.html","butyl benzoate"]]},{"id":"CHEBI:156511","l":"poacic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_V5M","V5M-binding site"]],"b":[["antifungal/poacic-acid.html","poacic acid"]]},{"id":"CHEBI:15732","l":"phosphonoacetic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PAE","PAE-binding site"]],"b":[["antiviral/phosphonoacetic-acid.html","phosphonoacetic acid"]]},{"id":"CHEBI:15756","l":"palmitic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PLM","PLM-binding site"]],"b":[["antibacterial/palmitic-acid.html","palmitic acid"]]},{"id":"CHEBI:16243","l":"quercetin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_QUE","QUE-binding site"]],"b":[["antibacterial/quercetin.html","quercetin"]]},{"id":"CHEBI:16348","l":"3-nitropropanoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_3NP","3NP-binding site"]],"b":[["antimycobacterial/3-nitropropanoic-acid.html","3-nitropropanoic acid"]]},{"id":"CHEBI:164200","l":"triclosan","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TCL","TCL-binding site"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"CHEBI:167176","l":"GRL-0617","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TTT","TTT-binding site"]],"b":[["antiviral/grl-0617.html","GRL-0617"]]},{"id":"CHEBI:168396","l":"mycophenolic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MOA","MOA-binding site"]],"b":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]]},{"id":"CHEBI:16914","l":"salicylic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SAL","SAL-binding site"]],"b":[["antifungal/salicylic-acid.html","salicylic acid"]]},{"id":"CHEBI:16961","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"]],"b":[["antibacterial/bacilysocin.html","bacilysocin"]]},{"id":"CHEBI:17351","l":"linoleic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_EIC","EIC-binding site"]],"b":[["antibacterial/linoleic-acid.html","linoleic acid"]]},{"id":"CHEBI:17558","l":"quercitrin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_QCT","QCT-binding site"]],"b":[["antiprotozoal/quercitrin.html","quercitrin"]]},{"id":"CHEBI:175901","l":"gemcitabine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_GEO","GEO-binding site"]],"b":[["antiviral/gemcitabine.html","gemcitabine"]]},{"id":"CHEBI:17642","l":"pentachlorophenol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PCI","PCI-binding site"]],"b":[["antifungal/pentachlorophenol.html","pentachlorophenol"]]},{"id":"CHEBI:17656","l":"(R)-mandelic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RMN","RMN-binding site"]],"b":[["antibacterial/r-mandelic-acid.html","(R)-mandelic acid"]]},{"id":"CHEBI:17658","l":"tylosin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TYK","TYK-binding site"]],"b":[["antibacterial/tylosin.html","tylosin"]]},{"id":"CHEBI:177047","l":"velutin","na":1,"nb":1,"a":[["RHEA%3A73083","chrysoeriol + S-adenosyl-L-methionine = velutin + S-adenosyl-L-homocysteine"]],"b":[["antibacterial/velutin.html","velutin"]]},{"id":"CHEBI:177878","l":"","na":1,"nb":1,"a":[["RHEA%3A68396","a percarboxylic acid + H2O = a carboxylate + H2O2 + H(+)"]],"b":[["biocide/peracetic-acid.html","peracetic acid"]]},{"id":"CHEBI:18203","l":"penicillin N","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["unspecified/penicillin-n.html","penicillin N"]]},{"id":"CHEBI:18208","l":"benzylpenicillin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PNN","PNN-binding site"]],"b":[["antibacterial/benzylpenicillin.html","benzylpenicillin"]]},{"id":"CHEBI:190786","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_KIR","KIR-binding site"]],"b":[["antibacterial/kirromycin.html","kirromycin"]]},{"id":"CHEBI:194138","l":"methyl trans-cinnamate","na":1,"nb":1,"a":[["RHEA%3A74871","(E)-cinnamate + S-adenosyl-L-methionine = (E)-cinnamic acid methyl ester + S-adenosyl-L-homocysteine"]],"b":[["antibacterial/methyl-trans-cinnamate.html","methyl trans-cinnamate"]]},{"id":"CHEBI:220158","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BLJ","BLJ-binding site"]],"b":[["antibacterial/arsinothricin.html","arsinothricin"]]},{"id":"CHEBI:22632","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.59","The Arsenical Resistance-3 (ACR3) Family"]],"b":[["antibacterial/sodium-arsenite.html","sodium arsenite"]]},{"id":"CHEBI:231919","l":"fluopsin","na":1,"nb":1,"a":[["RHEA%3A82395","thiohydroxamate + S-adenosyl-L-methionine = fluopsin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/fluopsin.html","fluopsin"]]},{"id":"CHEBI:233443","l":"","na":1,"nb":1,"a":[["RHEA%3A83863","an L-alpha-amino acid + acetyl-CoA = an N-acetyl-L-alpha-amino acid + CoA + H(+)"]],"b":[["antiviral/n-acetyl-l-cysteinate.html","N-acetyl-L-cysteinate"]]},{"id":"CHEBI:234507","l":"2-chloroacetamide","na":1,"nb":1,"a":[["RHEA%3A85695","chloroacetamide = chloroacetonitrile + H2O"]],"b":[["antifungal/2-chloroacetamide.html","2-chloroacetamide"]]},{"id":"CHEBI:23981","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"CHEBI:24402","l":"","na":1,"nb":1,"a":[["TCDB%3A3.A.3","The P-type ATPase (P-ATPase) Superfamily"]],"b":[["antifungal/oceanalin-a.html","oceanalin A"]]},{"id":"CHEBI:2637","l":"amikacin","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/amikacin.html","amikacin"]]},{"id":"CHEBI:2674","l":"amodiaquine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CQA","CQA-binding site"]],"b":[["antiprotozoal/amodiaquine.html","amodiaquine"]]},{"id":"CHEBI:2682","l":"amphotericin B","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_4UH","4UH-binding site"]],"b":[["antifungal/amphotericin-b.html","amphotericin B"]]},{"id":"CHEBI:27093","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.54","The Sideroflexin (SFXN) Family (formerly the Mitochondrial Tricarboxylate Carrier (MTC) Family)"]],"b":[["unspecified/citric-acid.html","citric acid"]]},{"id":"CHEBI:27779","l":"griseofulvin","na":1,"nb":1,"a":[["RHEA%3A73943","dehydrogriseofulvin + NADPH + H(+) = griseofulvin + NADP(+)"]],"b":[["antibacterial/griseofulvin.html","griseofulvin"]]},{"id":"CHEBI:27784","l":"gentamycin C1a","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_LLL","LLL-binding site"]],"b":[["unspecified/gentamycin-c1a.html","gentamycin C1a"]]},{"id":"CHEBI:27834","l":"pentostatin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DCF","DCF-binding site"]],"b":[["unspecified/pentostatin.html","pentostatin"]]},{"id":"CHEBI:27860","l":"castanospermine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CTS","CTS-binding site"]],"b":[["antiviral/castanospermine.html","castanospermine"]]},{"id":"CHEBI:28098","l":"kanamycin B","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9CS","9CS-binding site"]],"b":[["unspecified/kanamycin-b.html","kanamycin B"]]},{"id":"CHEBI:28121","l":"harmine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HRM","HRM-binding site"]],"b":[["antiviral/harmine.html","harmine"]]},{"id":"CHEBI:28147","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_8MM","8MM-binding site"]],"b":[["unspecified/n2-acetylgentamycin-c1a.html","N2'-acetylgentamycin C1a"]]},{"id":"CHEBI:28148","l":"sodium stibogluconate","na":1,"nb":1,"a":[["TCDB%3A1.A.8","The Major Intrinsic Protein (MIP) Family"]],"b":[["antiprotozoal/sodium-stibogluconate.html","sodium stibogluconate"]]},{"id":"CHEBI:28217","l":"acrylonitrile","na":1,"nb":1,"a":[["RHEA%3A85611","acrylamide = acrylonitrile + H2O"]],"b":[["antifungal/acrylonitrile.html","acrylonitrile"]]},{"id":"CHEBI:28285","l":"oligomycin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_EFO","EFO-binding site"]],"b":[["antifungal/oligomycin-a.html","oligomycin A"]]},{"id":"CHEBI:28368","l":"novobiocin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NOV","NOV-binding site"]],"b":[["antibacterial/novobiocin.html","novobiocin"]]},{"id":"CHEBI:28499","l":"kaempferol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_KMP","KMP-binding site"]],"b":[["antibacterial/kaempferol.html","kaempferol"]]},{"id":"CHEBI:28631","l":"3-phenylpropionic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HCI","HCI-binding site"]],"b":[["antifungal/3-phenylpropionic-acid.html","3-phenylpropionic acid"]]},{"id":"CHEBI:28748","l":"doxorubicin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DM2","DM2-binding site"]],"b":[["unspecified/doxorubicin.html","doxorubicin"]]},{"id":"CHEBI:28837","l":"octanoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_OCA","OCA-binding site"]],"b":[["antibacterial/octanoic-acid.html","octanoic acid"]]},{"id":"CHEBI:28864","l":"tobramycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TOY","TOY-binding site"]],"b":[["antibacterial/tobramycin.html","tobramycin"]]},{"id":"CHEBI:28905","l":"prop-2-yn-1-ol","na":1,"nb":1,"a":[["RHEA%3A31247","prop-2-ynal + pyrroloquinoline quinol + H(+) = prop-2-yn-1-ol + pyrroloquinoline quinone"]],"b":[["antifungal/prop-2-yn-1-ol.html","prop-2-yn-1-ol"]]},{"id":"CHEBI:28939","l":"N-acetyl-L-cysteine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SC2","SC2-binding site"]],"b":[["antiviral/n-acetyl-l-cysteine.html","N-acetyl-L-cysteine"]]},{"id":"CHEBI:2896","l":"astemizole","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_XB7","XB7-binding site"]],"b":[["antiviral/astemizole.html","astemizole"]]},{"id":"CHEBI:28971","l":"ampicillin","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/ampicillin.html","ampicillin"]]},{"id":"CHEBI:29013","l":"fusidic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_FUA","FUA-binding site"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"CHEBI:29014","l":"cordycepin","na":1,"nb":1,"a":[["RHEA%3A79047","cordycepin + H2O + H(+) = 3'-deoxyinosine + NH4(+)"]],"b":[["antibacterial/cordycepin.html","cordycepin"]]},{"id":"CHEBI:29582","l":"ascomycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_KXX","KXX-binding site"]],"b":[["antifungal/ascomycin.html","ascomycin"]]},{"id":"CHEBI:29699","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"]],"b":[["antibacterial/tunicamycin.html","tunicamycin"]]},{"id":"CHEBI:29703","l":"validamycin A","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/validamycin-a.html","validamycin A"]]},{"id":"CHEBI:3000","l":"beauvericin","na":1,"nb":1,"a":[["RHEA%3A62276","3 (R)-2-hydroxy-3-methylbutanoate + 3 L-phenylalanine + 3 S-adenosyl-L-methionine + 6 ATP = beauvericin + 6 AMP + 3 S-adenosyl-L-homocysteine + 6 diphosphate + 6 H(+)"]],"b":[["antifungal/beauvericin.html","beauvericin"]]},{"id":"CHEBI:3015","l":"benomyl","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/benomyl.html","benomyl"]]},{"id":"CHEBI:30769","l":"citric acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CIT","CIT-binding site"]],"b":[["unspecified/citric-acid.html","citric acid"]]},{"id":"CHEBI:30813","l":"decanoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DKA","DKA-binding site"]],"b":[["antibacterial/decanoic-acid.html","decanoic acid"]]},{"id":"CHEBI:3087","l":"betulinic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_06L","06L-binding site"]],"b":[["antiprotozoal/betulinic-acid.html","betulinic acid"]]},{"id":"CHEBI:315019","l":"cilofungin","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/cilofungin.html","cilofungin"]]},{"id":"CHEBI:31781","l":"lopinavir","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antiviral/lopinavir.html","lopinavir"]]},{"id":"CHEBI:31856","l":"mithramycin","na":1,"nb":1,"a":[["RHEA%3A85455","iso-mithramycin = mithramycin"]],"b":[["unspecified/mithramycin.html","mithramycin"]]},{"id":"CHEBI:32079","l":"pyrrolnitrin","na":1,"nb":1,"a":[["RHEA%3A46136","aminopyrrolnitrin + NADPH + 2 O2 + H(+) = pyrrolnitrin + NADP(+) + 2 H2O"]],"b":[["antifungal/pyrrolnitrin.html","pyrrolnitrin"]]},{"id":"CHEBI:32174","l":"","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/syringomycin-e.html","syringomycin E"]]},{"id":"CHEBI:32368","l":"undecanoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_11A","11A-binding site"]],"b":[["antifungal/undecanoic-acid.html","undecanoic acid"]]},{"id":"CHEBI:3259","l":"CCCP","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/cccp.html","CCCP"]]},{"id":"CHEBI:32800","l":"(S)-mandelic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SMN","SMN-binding site"]],"b":[["antibacterial/s-mandelic-acid.html","(S)-mandelic acid"]]},{"id":"CHEBI:32888","l":"γ-hexachlorocyclohexane","na":1,"nb":1,"a":[["RHEA%3A45480","gamma-hexachlorocyclohexane = (3R,4S,5S,6R)-pentachlorocyclohexene + chloride + H(+)"]],"b":[["antibacterial/%CE%B3-hexachlorocyclohexane.html","γ-hexachlorocyclohexane"]]},{"id":"CHEBI:3405","l":"carboxin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CBE","CBE-binding site"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"CHEBI:34652","l":"compactin diol lactone","na":1,"nb":1,"a":[["RHEA%3A62744","mevastatin + H2O = compactin diol lactone + (S)-2-methylbutanoate + H(+)"]],"b":[["unspecified/compactin-diol-lactone.html","compactin diol lactone"]]},{"id":"CHEBI:34908","l":"pentachloronitrobenzene","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/pentachloronitrobenzene.html","pentachloronitrobenzene"]]},{"id":"CHEBI:3493","l":"cefoperazone","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/cefoperazone.html","cefoperazone"]]},{"id":"CHEBI:3503","l":"cefpirome","na":1,"nb":1,"a":[["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"]],"b":[["antibacterial/cefpirome.html","cefpirome"]]},{"id":"CHEBI:35356","l":"","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/cycloheximide.html","cycloheximide"]]},{"id":"CHEBI:3537","l":"cefaloridine","na":1,"nb":1,"a":[["TCDB%3A1.B.6","The OmpA-OmpF Porin (OOP) Family"]],"b":[["antibacterial/cefaloridine.html","cefaloridine"]]},{"id":"CHEBI:3547","l":"cephradine","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/cephradine.html","cephradine"]]},{"id":"CHEBI:35817","l":"roxarsone","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/roxarsone.html","roxarsone"]]},{"id":"CHEBI:36243","l":"","na":1,"nb":1,"a":[["RHEA%3A48484","a propanoate ester + H2O = an aliphatic alcohol + propanoate + H(+)"]],"b":[["antifungal/metarylpicoxamid.html","metarylpicoxamid"]]},{"id":"CHEBI:3639","l":"chlorothalonil","na":1,"nb":1,"a":[["RHEA%3A65016","chlorothalonil + H2O = 4-hydroxychlorothalonil + chloride + 2 H(+)"]],"b":[["antifungal/chlorothalonil.html","chlorothalonil"]]},{"id":"CHEBI:3647","l":"chlorpromazine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_Z80","Z80-binding site"]],"b":[["antiviral/chlorpromazine.html","chlorpromazine"]]},{"id":"CHEBI:367163","l":"darunavir","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_017","017-binding site"]],"b":[["antiviral/darunavir.html","darunavir"]]},{"id":"CHEBI:36843","l":"","na":1,"nb":1,"a":[["RHEA%3A82271","7alpha-hydroxy steroid + NADP(+) = a 7-oxosteroid + NADPH + H(+)"]],"b":[["antifungal/9%CE%BE-14%CE%BE-25s-cholestane-3%CE%B2-4%CE%B2-6%CE%B2-7%CE%B1-8-15%CE%B1-16%CE%B2-26-octol.html","(9ξ,14ξ,25S)-cholestane-3β,4β,6β,7α,8,15α,16β,26-octol"]]},{"id":"CHEBI:3687","l":"chrysophanol","na":1,"nb":1,"a":[["RHEA%3A64276","chrysophanol-9-anthrone + O2 = chrysophanol + H2O"]],"b":[["antiviral/chrysophanol.html","chrysophanol"]]},{"id":"CHEBI:3745","l":"clindamycin","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/clindamycin.html","clindamycin"]]},{"id":"CHEBI:3749","l":"clofazimine","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antimycobacterial/clofazimine.html","clofazimine"]]},{"id":"CHEBI:37924","l":"atazanavir","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DR7","DR7-binding site"]],"b":[["antiviral/atazanavir.html","atazanavir"]]},{"id":"CHEBI:38167","l":"physcion","na":1,"nb":1,"a":[["RHEA%3A76767","emodin + S-adenosyl-L-methionine = physcion + S-adenosyl-L-homocysteine"]],"b":[["antibacterial/physcion.html","physcion"]]},{"id":"CHEBI:38291","l":"dihydrostreptomycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_71R","71R-binding site"]],"b":[["unspecified/dihydrostreptomycin.html","dihydrostreptomycin"]]},{"id":"CHEBI:38320","l":"(+)-usnic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_AIY","AIY-binding site"]],"b":[["antifungal/usnic-acid-38320.html","(+)-usnic acid"]]},{"id":"CHEBI:39352","l":"","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["unspecified/nifursol.html","nifursol"]]},{"id":"CHEBI:39932","l":"(R)-oct-1-en-3-ol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_3OL","3OL-binding site"]],"b":[["unspecified/r-oct-1-en-3-ol.html","(R)-oct-1-en-3-ol"]]},{"id":"CHEBI:40009","l":"D-cycloserine","na":1,"nb":1,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"]],"b":[["antimycobacterial/d-cycloserine.html","D-cycloserine"]]},{"id":"CHEBI:40021","l":"tiratricol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_4HY","4HY-binding site"]],"b":[["antiviral/tiratricol.html","tiratricol"]]},{"id":"CHEBI:404903","l":"ertapenem","na":1,"nb":1,"a":[["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"]],"b":[["antibacterial/ertapenem.html","ertapenem"]]},{"id":"CHEBI:41425","l":"(7R)-7-(4-carboxybutanamido)cephalosporanic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CEN","CEN-binding site"]],"b":[["unspecified/7r-7-4-carboxybutanamido-cephalosporanic-acid.html","(7R)-7-(4-carboxybutanamido)cephalosporanic acid"]]},{"id":"CHEBI:41688","l":"crystal violet","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/crystal-violet.html","crystal violet"]]},{"id":"CHEBI:41872","l":"dequalinium","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/dequalinium.html","dequalinium"]]},{"id":"CHEBI:41977","l":"daunorubicin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DM1","DM1-binding site"]],"b":[["unspecified/daunorubicin.html","daunorubicin"]]},{"id":"CHEBI:42068","l":"idarubicin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DM5","DM5-binding site"]],"b":[["unspecified/idarubicin.html","idarubicin"]]},{"id":"CHEBI:42355","l":"erythromycin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ERY","ERY-binding site"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"CHEBI:42471","l":"forskolin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_FOK","FOK-binding site"]],"b":[["antiviral/forskolin.html","forskolin"]]},{"id":"CHEBI:42600","l":"L-fucitol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_FOC","FOC-binding site"]],"b":[["antibacterial/l-fucitol.html","L-fucitol"]]},{"id":"CHEBI:42680","l":"(2-cis,6-cis)-farnesol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_FOH","FOH-binding site"]],"b":[["unspecified/2-cis-6-cis-farnesol.html","(2-cis,6-cis)-farnesol"]]},{"id":"CHEBI:43040","l":"hadacidin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HDA","HDA-binding site"]],"b":[["unspecified/hadacidin.html","hadacidin"]]},{"id":"CHEBI:4309","l":"dalfopristin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DOL","DOL-binding site"]],"b":[["antibacterial/dalfopristin.html","dalfopristin"]]},{"id":"CHEBI:43616","l":"K-252a","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_KSA","KSA-binding site"]],"b":[["unspecified/k-252a.html","K-252a"]]},{"id":"CHEBI:44032","l":"indinavir","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MK1","MK1-binding site"]],"b":[["antiviral/indinavir.html","indinavir"]]},{"id":"CHEBI:44369","l":"duvoglustat","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NOJ","NOJ-binding site"]],"b":[["antiviral/duvoglustat.html","duvoglustat"]]},{"id":"CHEBI:44499","l":"methyl nonanoate","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NON","NON-binding site"]],"b":[["antifungal/methyl-nonanoate.html","methyl nonanoate"]]},{"id":"CHEBI:45141","l":"pyroquilon","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PYQ","PYQ-binding site"]],"b":[["antifungal/pyroquilon.html","pyroquilon"]]},{"id":"CHEBI:45257","l":"ribostamycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RIO","RIO-binding site"]],"b":[["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"CHEBI:45304","l":"rifapentine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RPT","RPT-binding site"]],"b":[["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"CHEBI:45307","l":"seliciclib","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RRC","RRC-binding site"]],"b":[["antiviral/seliciclib.html","seliciclib"]]},{"id":"CHEBI:45367","l":"rifabutin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RBT","RBT-binding site"]],"b":[["antibacterial/rifabutin.html","rifabutin"]]},{"id":"CHEBI:45395","l":"pyrithiamine pyrophosphate","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PYI","PYI-binding site"]],"b":[["unspecified/pyrithiamine-pyrophosphate.html","pyrithiamine pyrophosphate"]]},{"id":"CHEBI:45409","l":"ritonavir","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RIT","RIT-binding site"]],"b":[["antiviral/ritonavir.html","ritonavir"]]},{"id":"CHEBI:45490","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RVP","RVP-binding site"]],"b":[["antiviral/ribavirin-5-monophosphate.html","ribavirin 5'-monophosphate"]]},{"id":"CHEBI:45906","l":"suramin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SVR","SVR-binding site"]],"b":[["antiprotozoal/suramin.html","suramin"]]},{"id":"CHEBI:45924","l":"trimethoprim","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TOP","TOP-binding site"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"CHEBI:45979","l":"thiabendazole","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TMG","TMG-binding site"]],"b":[["antifungal/thiabendazole.html","thiabendazole"]]},{"id":"CHEBI:46024","l":"trichostatin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TSN","TSN-binding site"]],"b":[["antifungal/trichostatin-a.html","trichostatin A"]]},{"id":"CHEBI:46345","l":"5-fluorouracil","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_URF","URF-binding site"]],"b":[["antifungal/5-fluorouracil.html","5-Fluorouracil"]]},{"id":"CHEBI:4640","l":"diphenylamine","na":1,"nb":1,"a":[["TCDB%3A9.A.11","The Dipicolinic Acid Transporter (DPA-T) Family"]],"b":[["antifungal/diphenylamine.html","diphenylamine"]]},{"id":"CHEBI:4672","l":"docetaxel anhydrous","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antiprotozoal/docetaxel-anhydrous.html","docetaxel anhydrous"]]},{"id":"CHEBI:46953","l":"","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["unspecified/adxanthromycin-a.html","adxanthromycin A"]]},{"id":"CHEBI:473992","l":"nystatin A1","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_A1AZ7","A1AZ7-binding site"]],"b":[["antifungal/nystatin-a1.html","nystatin A1"]]},{"id":"CHEBI:47780","l":"clomipramine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CXX","CXX-binding site"]],"b":[["antiviral/clomipramine.html","clomipramine"]]},{"id":"CHEBI:48131","l":"nonanedioic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_AZ1","AZ1-binding site"]],"b":[["antibacterial/nonanedioic-acid.html","nonanedioic acid"]]},{"id":"CHEBI:48267","l":"tubercidin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TBN","TBN-binding site"]],"b":[["antifungal/tubercidin.html","tubercidin"]]},{"id":"CHEBI:48545","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.67","The Oligopeptide Transporter (OPT) Family"]],"b":[["unspecified/n-palmitoyl-s-2-3-bis-palmitoyloxy-propyl-cys-ser-lys-lys-lys-lys.html","N-palmitoyl-S-[2,3-bis(palmitoyloxy)propyl]-Cys-Ser-Lys-Lys-Lys-Lys"]]},{"id":"CHEBI:48811","l":"(R)-chloroquine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CLQ","CLQ-binding site"]],"b":[["antiprotozoal/r-chloroquine.html","(R)-chloroquine"]]},{"id":"CHEBI:4893","l":"ethyl acetoacetate","na":1,"nb":1,"a":[["RHEA%3A68144","ethyl 3-oxobutanoate + NADPH + H(+) = ethyl (R)-3-hydroxybutanoate + NADP(+)"]],"b":[["antibacterial/ethyl-acetoacetate.html","ethyl acetoacetate"]]},{"id":"CHEBI:48947","l":"clavulanic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_J01","J01-binding site"]],"b":[["antibacterial/clavulanic-acid.html","clavulanic acid"]]},{"id":"CHEBI:48958","l":"diamide","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["unspecified/diamide.html","diamide"]]},{"id":"CHEBI:49026","l":"N-acetyl-α-neuraminic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SIA","SIA-binding site"]],"b":[["antiviral/n-acetyl-%CE%B1-neuraminic-acid.html","N-acetyl-α-neuraminic acid"]]},{"id":"CHEBI:49375","l":"dasatinib (anhydrous)","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_1N1","1N1-binding site"]],"b":[["antiviral/dasatinib-anhydrous.html","dasatinib (anhydrous)"]]},{"id":"CHEBI:50381","l":"miglustat","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NBV","NBV-binding site"]],"b":[["antiviral/miglustat.html","miglustat"]]},{"id":"CHEBI:50437","l":"nocardamine","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_50437","requires desferrioxamine E"]],"b":[["antibacterial/nocardamine.html","nocardamine"]]},{"id":"CHEBI:50663","l":"zanamivir","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ZMR","ZMR-binding site"]],"b":[["antiviral/zanamivir.html","zanamivir"]]},{"id":"CHEBI:50694","l":"minocycline","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MIY","MIY-binding site"]],"b":[["antibacterial/minocycline.html","minocycline"]]},{"id":"CHEBI:52172","l":"nilotinib","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NIL","NIL-binding site"]],"b":[["antiviral/nilotinib.html","nilotinib"]]},{"id":"CHEBI:52289","l":"wortmannin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_KWT","KWT-binding site"]],"b":[["antiviral/wortmannin.html","wortmannin"]]},{"id":"CHEBI:52316","l":"cordycepin triphosphate","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_3AT","3AT-binding site"]],"b":[["antifungal/cordycepin-triphosphate.html","cordycepin triphosphate"]]},{"id":"CHEBI:52646","l":"leptomycin B","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/leptomycin-b.html","leptomycin B"]]},{"id":"CHEBI:52717","l":"bortezomib","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BO2","BO2-binding site"]],"b":[["antiprotozoal/bortezomib.html","bortezomib"]]},{"id":"CHEBI:556075","l":"radicicol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RDC","RDC-binding site"]],"b":[["antifungal/radicicol.html","radicicol"]]},{"id":"CHEBI:575568","l":"atovaquone","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_AOQ","AOQ-binding site"]],"b":[["antifungal/atovaquone.html","atovaquone"]]},{"id":"CHEBI:59349","l":"cefepime(1+)","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9WT","9WT-binding site"]],"b":[["unspecified/cefepime-1.html","cefepime(1+)"]]},{"id":"CHEBI:60761","l":"floxuridine","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antiviral/floxuridine.html","floxuridine"]]},{"id":"CHEBI:623918","l":"nikkomycin Z","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BGI","BGI-binding site"]],"b":[["antifungal/nikkomycin-z.html","nikkomycin Z"]]},{"id":"CHEBI:63207","l":"mycinamicin III","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ZM3","ZM3-binding site"]],"b":[["unspecified/mycinamicin-iii.html","mycinamicin III"]]},{"id":"CHEBI:63285","l":"mycinamicin VI","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MVI","MVI-binding site"]],"b":[["unspecified/mycinamicin-vi.html","mycinamicin VI"]]},{"id":"CHEBI:63580","l":"ribavirin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RBV","RBV-binding site"]],"b":[["antiviral/ribavirin.html","ribavirin"]]},{"id":"CHEBI:63599","l":"fludarabine phosphate","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antiviral/fludarabine-phosphate.html","fludarabine phosphate"]]},{"id":"CHEBI:63611","l":"moxifloxacin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MFX","MFX-binding site"]],"b":[["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"CHEBI:63624","l":"telbivudine","na":1,"nb":1,"a":[["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"]],"b":[["antiviral/telbivudine.html","telbivudine"]]},{"id":"CHEBI:63684","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_YMZ","YMZ-binding site"]],"b":[["antiprotozoal/11r-2-s-erythro-mefloquine.html","(+)-(11R,2'S)-erythro-mefloquine"]]},{"id":"CHEBI:64250","l":"tunicamycin B2","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9LH","9LH-binding site"]],"b":[["unspecified/tunicamycin-b2.html","tunicamycin B2"]]},{"id":"CHEBI:64355","l":"posaconazole","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_X2N","X2N-binding site"]],"b":[["antifungal/posaconazole.html","posaconazole"]]},{"id":"CHEBI:66065","l":"IC202A","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_66065","requires IC202A"]],"b":[["unspecified/ic202a.html","IC202A"]]},{"id":"CHEBI:66067","l":"IC202C","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_66067","requires IC202C"]],"b":[["unspecified/ic202c.html","IC202C"]]},{"id":"CHEBI:66104","l":"jaspamide","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9UE","9UE-binding site"]],"b":[["antifungal/jaspamide.html","jaspamide"]]},{"id":"CHEBI:66222","l":"thiomarinol C","na":1,"nb":1,"a":[["RHEA%3A75895","marinoloyl-CoA C + holothin = thiomarinol C + CoA"]],"b":[["antibacterial/thiomarinol-c.html","thiomarinol C"]]},{"id":"CHEBI:67121","l":"nitroxoline","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HNQ","HNQ-binding site"]],"b":[["antifungal/nitroxoline.html","nitroxoline"]]},{"id":"CHEBI:67559","l":"5Z-7-oxozeaenol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_1FM","1FM-binding site"]],"b":[["antibacterial/5z-7-oxozeaenol.html","5Z-7-oxozeaenol"]]},{"id":"CHEBI:67811","l":"zorbamycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_52G","52G-binding site"]],"b":[["unspecified/zorbamycin.html","zorbamycin"]]},{"id":"CHEBI:68241","l":"platencin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_N32","N32-binding site"]],"b":[["antibacterial/platencin.html","platencin"]]},{"id":"CHEBI:6827","l":"methicillin","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/methicillin.html","methicillin"]]},{"id":"CHEBI:6909","l":"metronidazole","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"CHEBI:6923","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/miconazole.html","miconazole"]]},{"id":"CHEBI:7025","l":"mupirocin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MRC","MRC-binding site"]],"b":[["antibacterial/mupirocin.html","mupirocin"]]},{"id":"CHEBI:70508","l":"(16R,19E)-isositsirikine","na":1,"nb":1,"a":[["RHEA%3A83839","(19E)-geissoschizine + NADPH + H(+) = (16R,19E)-isositsirikine + NADP(+)"]],"b":[["antifungal/16r-19e-isositsirikine.html","(16R,19E)-isositsirikine"]]},{"id":"CHEBI:72292","l":"bedaquiline","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BQ1","BQ1-binding site"]],"b":[["antimycobacterial/bedaquiline.html","bedaquiline"]]},{"id":"CHEBI:72687","l":"bacilysin","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["unspecified/bacilysin.html","bacilysin"]]},{"id":"CHEBI:73079","l":"kanamycin D","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CJX","CJX-binding site"]],"b":[["unspecified/kanamycin-d.html","kanamycin D"]]},{"id":"CHEBI:73139","l":"oseltamivir acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_G39","G39-binding site"]],"b":[["antiviral/oseltamivir-acid.html","oseltamivir acid"]]},{"id":"CHEBI:73224","l":"allyl isothiocyanate","na":1,"nb":1,"a":[["RHEA%3A69272","(Z)-N-(sulfonatooxy)prop-2-enimidothioate = allyl isothiocyanate + sulfate"]],"b":[["unspecified/allyl-isothiocyanate.html","allyl isothiocyanate"]]},{"id":"CHEBI:73481","l":"asukamycin","na":1,"nb":1,"a":[["RHEA%3A75139","4-hydroxyprotoasukamycin + NADH + O2 + H(+) = asukamycin + NAD(+) + H2O"]],"b":[["antibacterial/asukamycin.html","asukamycin"]]},{"id":"CHEBI:74846","l":"azaserine","na":1,"nb":1,"a":[["TCDB%3A2.A.76","The Resistance to Homoserine/Threonine (RhtB) Family"]],"b":[["antifungal/azaserine.html","azaserine"]]},{"id":"CHEBI:7489","l":"neamine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_XXX","XXX-binding site"]],"b":[["antibacterial/neamine.html","neamine"]]},{"id":"CHEBI:74926","l":"patulin","na":1,"nb":1,"a":[["RHEA%3A62228","(E)-ascladiol + A = patulin + AH2"]],"b":[["unspecified/patulin.html","patulin"]]},{"id":"CHEBI:7508","l":"framycetin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NMY","NMY-binding site"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"CHEBI:75092","l":"morin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MRI","MRI-binding site"]],"b":[["antibacterial/morin.html","morin"]]},{"id":"CHEBI:75283","l":"miltefosine","na":1,"nb":1,"a":[["TCDB%3A3.A.3","The P-type ATPase (P-ATPase) Superfamily"]],"b":[["antifungal/miltefosine.html","miltefosine"]]},{"id":"CHEBI:75998","l":"trametinib","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_QOM","QOM-binding site"]],"b":[["antiviral/trametinib.html","trametinib"]]},{"id":"CHEBI:76010","l":"dolutegravir","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DLU","DLU-binding site"]],"b":[["antiviral/dolutegravir.html","dolutegravir"]]},{"id":"CHEBI:76244","l":"sapienic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_8Z9","8Z9-binding site"]],"b":[["antibacterial/sapienic-acid.html","sapienic acid"]]},{"id":"CHEBI:76293","l":"azadirone","na":1,"nb":1,"a":[["RHEA%3A80387","(1S,3bR,4R,5aR,9aR,9bR,11aS)-1-(1-hydroxy-4-oxobutan-2-yl)-3b,6,6,9a,11a-pentamethyl-7-oxo-1H,2H,3bH,4H,5H,5aH,6H,7H,9aH,9bH,10H,11H,11aH-cyclopenta[a]phenanthren-4-yl acetate + 2-oxoglutarate + O2 = azadirone + succinate + CO2 + 2 H2O"]],"b":[["antiprotozoal/azadirone.html","azadirone"]]},{"id":"CHEBI:76944","l":"13-epi-manool","na":1,"nb":1,"a":[["RHEA%3A40015","(+)-copalyl diphosphate + H2O = 13-epi-manool + diphosphate"]],"b":[["antifungal/13-epi-manool.html","13-epi-manool"]]},{"id":"CHEBI:76945","l":"manool","na":1,"nb":1,"a":[["RHEA%3A40011","(+)-copalyl diphosphate + H2O = manool + diphosphate"]],"b":[["antibacterial/manool.html","manool"]]},{"id":"CHEBI:77009","l":"5-O-β-D-mycaminosyl-20-oxotylonolide","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CGM","CGM-binding site"]],"b":[["unspecified/5-o-%CE%B2-d-mycaminosyl-20-oxotylonolide.html","5-O-β-D-mycaminosyl-20-oxotylonolide"]]},{"id":"CHEBI:77181","l":"crystal violet cation","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CVI","CVI-binding site"]],"b":[["antibacterial/crystal-violet-cation.html","crystal violet cation"]]},{"id":"CHEBI:77474","l":"(9Z,12Z,15Z)-octadecatrien-1-ol","na":1,"nb":1,"a":[["RHEA%3A40707","(9Z,12Z,15Z)-octadecatrien-1-ol + 1-hexadecanoylglycerone 3-phosphate = 1-O-(9Z,12Z,15Z)-octadecatrienylglycerone 3-phosphate + hexadecanoate + H(+)"]],"b":[["antibacterial/9z-12z-15z-octadecatrien-1-ol.html","(9Z,12Z,15Z)-octadecatrien-1-ol"]]},{"id":"CHEBI:77845","l":"7-aminocholesterol","na":1,"nb":1,"a":[["TCDB%3A9.A.26","The Lipid-translocating Exporter (LTE) Family"]],"b":[["antibacterial/7-aminocholesterol.html","7-aminocholesterol"]]},{"id":"CHEBI:79034","l":"monacolin J","na":1,"nb":1,"a":[["RHEA%3A62748","lovastatin + H2O = monacolin J + (S)-2-methylbutanoate + H(+)"]],"b":[["unspecified/monacolin-j.html","monacolin J"]]},{"id":"CHEBI:7934","l":"paromomycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PAR","PAR-binding site"]],"b":[["antibacterial/paromomycin.html","paromomycin"]]},{"id":"CHEBI:79391","l":"(−)-chuangxinmycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9E0","9E0-binding site"]],"b":[["antibacterial/chuangxinmycin.html","(−)-chuangxinmycin"]]},{"id":"CHEBI:79394","l":"indolmycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_5BX","5BX-binding site"]],"b":[["antibacterial/indolmycin.html","indolmycin"]]},{"id":"CHEBI:8062","l":"phenethyl caffeate","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_QAP","QAP-binding site"]],"b":[["antibacterial/phenethyl-caffeate.html","phenethyl caffeate"]]},{"id":"CHEBI:80751","l":"(S)-goitrin","na":1,"nb":1,"a":[["RHEA%3A69292","(Z)-(2R)-2-hydroxy-3-butenyl-N-(sulfonatooxy)methanimidothioate = goitrin + sulfate"]],"b":[["antiviral/s-goitrin.html","(S)-goitrin"]]},{"id":"CHEBI:81724","l":"diminazene","na":1,"nb":1,"a":[["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"]],"b":[["antiprotozoal/diminazene.html","diminazene"]]},{"id":"CHEBI:81761","l":"etridiazole","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/etridiazole.html","etridiazole"]]},{"id":"CHEBI:8232","l":"piperacillin","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/piperacillin.html","piperacillin"]]},{"id":"CHEBI:82754","l":"microcin c","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["unspecified/microcin-c.html","microcin c"]]},{"id":"CHEBI:82809","l":"agrocin 84","na":1,"nb":1,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["unspecified/agrocin-84.html","agrocin 84"]]},{"id":"CHEBI:83147","l":"","na":1,"nb":1,"a":[["RHEA%3A83179","a steroid + reduced [NADPH--hemoprotein reductase] + O2 = a 15alpha-hydroxy steroid + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["antifungal/9%CE%BE-14%CE%BE-25s-cholestane-3%CE%B2-4%CE%B2-6%CE%B2-7%CE%B1-8-15%CE%B1-16%CE%B2-26-octol.html","(9ξ,14ξ,25S)-cholestane-3β,4β,6β,7α,8,15α,16β,26-octol"]]},{"id":"CHEBI:8417","l":"pristinamycin IA","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/pristinamycin-ia.html","pristinamycin IA"]]},{"id":"CHEBI:84587","l":"","na":1,"nb":1,"a":[["RHEA%3A44724","2,3-saturated fatty aldehyde + NADP(+) = (2E)-fatty aldehyde + NADPH + H(+)"]],"b":[["unspecified/pentadecanal.html","pentadecanal"]]},{"id":"CHEBI:84588","l":"","na":1,"nb":1,"a":[["RHEA%3A44724","2,3-saturated fatty aldehyde + NADP(+) = (2E)-fatty aldehyde + NADPH + H(+)"]],"b":[["antibacterial/e-dodec-2-enal.html","(E)-dodec-2-enal"]]},{"id":"CHEBI:85083","l":"sofosbuvir","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_WG6","WG6-binding site"]],"b":[["antiviral/sofosbuvir.html","sofosbuvir"]]},{"id":"CHEBI:85273","l":"(R)-flumequine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_7X9","7X9-binding site"]],"b":[["unspecified/r-flumequine.html","(R)-flumequine"]]},{"id":"CHEBI:85412","l":"mitomycin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MQA","MQA-binding site"]],"b":[["unspecified/mitomycin-a.html","mitomycin A"]]},{"id":"CHEBI:8673","l":"pyrimethamine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CP6","CP6-binding site"]],"b":[["antiprotozoal/pyrimethamine.html","pyrimethamine"]]},{"id":"CHEBI:87185","l":"florfenicol","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/florfenicol.html","florfenicol"]]},{"id":"CHEBI:87805","l":"ethionamide S-oxide","na":1,"nb":1,"a":[["RHEA%3A47616","ethionamide + NADPH + O2 + H(+) = ethionamide S-oxide + NADP(+) + H2O"]],"b":[["antimycobacterial/ethionamide-s-oxide.html","ethionamide S-oxide"]]},{"id":"CHEBI:90531","l":"sotrastaurin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_LW4","LW4-binding site"]],"b":[["antiviral/sotrastaurin.html","sotrastaurin"]]},{"id":"CHEBI:9168","l":"sirolimus","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RAP","RAP-binding site"]],"b":[["antibacterial/sirolimus.html","sirolimus"]]},{"id":"CHEBI:9212","l":"sparfloxacin","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/sparfloxacin.html","sparfloxacin"]]},{"id":"CHEBI:92181","l":"lasalocid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_LSD","LSD-binding site"]],"b":[["antiprotozoal/lasalocid.html","lasalocid"]]},{"id":"CHEBI:92257","l":"IKK16","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_V17","V17-binding site"]],"b":[["antiprotozoal/ikk16.html","IKK16"]]},{"id":"CHEBI:9328","l":"sulfadiazine","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antiprotozoal/sulfadiazine.html","sulfadiazine"]]},{"id":"CHEBI:9337","l":"sulfathiazole","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["unspecified/sulfathiazole.html","sulfathiazole"]]},{"id":"CHEBI:9448","l":"terbinafine","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/terbinafine.html","terbinafine"]]},{"id":"CHEBI:9661","l":"triacetin","na":1,"nb":1,"a":[["RHEA%3A48028","triacetin + H2O = diacetylglycerol + acetate + H(+)"]],"b":[["antifungal/triacetin.html","triacetin"]]},{"id":"CHEBI:9688","l":"trichodermin","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/trichodermin.html","trichodermin"]]},{"id":"CHEBI:9691","l":"piperyline","na":1,"nb":1,"a":[["RHEA%3A73663","pyrrolidine + (E,E)-piperoyl-CoA = piperyline + CoA + H(+)"]],"b":[["antifungal/piperyline.html","piperyline"]]},{"id":"NCBITaxon:1764","l":"Mycobacterium avium","na":1,"nb":1,"a":[["Pfam%3APF01882","Protein of unknown function DUF58"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":1,"nb":1,"a":[["Pfam%3APF26312","Domain of unknown function (DUF8083)"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"NCBITaxon:263","l":"Francisella tularensis","na":1,"nb":1,"a":[["TED%3AAF-A0A6I4RUC7-F1-model_v4_TED02","TED novel fold AF-A0A6I4RUC7-F1-model_v4_TED02"]],"b":[["unspecified/%CE%B1-mangostin.html","α-mangostin"]]},{"id":"NCBITaxon:271","l":"Thermus aquaticus","na":1,"nb":1,"a":[["Pfam%3APF07669","Eco57I restriction-modification methylase"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":1,"nb":1,"a":[["Pfam%3APF07335","Fungal chitosanase of glycosyl hydrolase group 75"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"NCBITaxon:5082","l":"Penicillium roqueforti","na":1,"nb":1,"a":[["Pfam%3APF07573","Nitrogen regulatory protein AreA N terminus"]],"b":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]]},{"id":"NCBITaxon:5127","l":"Fusarium fujikuroi","na":1,"nb":1,"a":[["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"NCBITaxon:5141","l":"Neurospora crassa","na":1,"nb":1,"a":[["TED%3AAF-A0A0B0E1R4-F1-model_v4_TED01","TED novel fold AF-A0A0B0E1R4-F1-model_v4_TED01"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"NCBITaxon:53446","l":"Streptomyces cinnamoneus","na":1,"nb":1,"a":[["TED%3AAF-A0A2S6XSK0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S6XSK0-F1-model_v4_TED01"]],"b":[["antibacterial/bicozamycin.html","bicozamycin"]]},{"id":"NCBITaxon:68280","l":"Streptomyces violaceusniger","na":1,"nb":1,"a":[["TED%3AAF-A0A0X3VKA0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0X3VKA0-F1-model_v4_TED01"]],"b":[["antibacterial/nigericin.html","nigericin"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A5C7XIK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7XIK2-F1-model_v4_TED01"]],"b":[["antibacterial/lysocin-e.html","lysocin E"]]},{"id":"UniProt:B8N2C8","l":"","na":1,"nb":1,"a":[["EC%3A1.14.14.154","sterol 14alpha-demethylase"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"UniProt:O30463","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TOP","TOP-binding site"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"UniProt:P0A017","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_0U5","0U5-binding site"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"UniProt:P13955","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TOP","TOP-binding site"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"UniProt:P42535","l":"","na":1,"nb":1,"a":[["EC%3A1.14.13.50","pentachlorophenol monooxygenase"]],"b":[["antifungal/pentachlorophenol.html","pentachlorophenol"]]},{"id":"UniProt:P50859","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_1YN","1YN-binding site"]],"b":[["antifungal/fluconazole.html","fluconazole"]]},{"id":"UniProt:Q5ALV2","l":"","na":1,"nb":1,"a":[["Pfam%3APF08226","Domain of unknown function (DUF1720)"]],"b":[["antifungal/fluconazole.html","fluconazole"]]},{"id":"UniProt:Q81R22","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_N22","N22-binding site"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]}]} \ No newline at end of file +{"a":"ProteinTraitsMech","b":"AntibioticMech","base":{"ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record=","AntibioticMech":"https://culturebotai.github.io/AntibioticMech/pages/"},"n":2435,"by":{"ARO":1740,"CHEBI":594,"NCBITaxon":79,"UniProt":20,"GO":2},"terms":[{"id":"ARO:0000032","l":"","na":3352,"nb":55,"a":[["ARO%3A3001815","ACC-1"],["ARO%3A3006228","ACC-1a"],["ARO%3A3006229","ACC-1b"],["ARO%3A3006230","ACC-1c"],["ARO%3A3006231","ACC-1d"],["ARO%3A3001816","ACC-2"]],"b":[["antibacterial/cefacetrile.html","cefacetrile"],["antibacterial/cefaclor.html","cefaclor"],["antibacterial/cefadroxil.html","cefadroxil"],["antibacterial/cefaloridine.html","cefaloridine"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefamandole.html","cefamandole"]]},{"id":"ARO:0000000","l":"","na":143,"nb":45,"a":[["ARO%3A3005099","23S rRNA (adenine(2058)-N(6))-methyltransferase Erm(A)"],["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3004125","23S rRNA with mutation conferring resistance to macrolide antibiotics"],["ARO%3A3005001","50S rRNA with mutation conferring resistance to macrolide antibiotics"],["ARO%3A3000772","AdeIJK"],["ARO%3A3004133","Brachyspira hyodysenteriae 23S rRNA with mutation conferring resistance to tylosin"]],"b":[["antibacterial/5-o-mycaminosyltylonolide.html","5-O-mycaminosyltylonolide"],["antibacterial/aplasmomycin.html","(+)-aplasmomycin"],["antibacterial/azalomycin-f.html","azalomycin F"],["antibacterial/azithromycin.html","azithromycin"],["antibacterial/boromycin.html","boromycin"],["antibacterial/brefeldin-a.html","brefeldin A"]]},{"id":"CHEBI:17478","l":"","na":62,"nb":33,"a":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.1.2","alcohol dehydrogenase (NADP(+))"],["EC%3A1.1.1.71","alcohol dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.2.8","alcohol dehydrogenase (cytochrome c)"],["EC%3A1.1.3.13","alcohol oxidase"]],"b":[["antibacterial/5-o-mycaminosyltylonolide.html","5-O-mycaminosyltylonolide"],["antibacterial/fatsicarpain-c.html","fatsicarpain C"],["antibacterial/josamycin.html","josamycin"],["antibacterial/rosaramicin.html","rosaramicin"],["antibacterial/spiramycin-i.html","spiramycin I"],["antibacterial/spiramycin-ii.html","spiramycin II"]]},{"id":"ARO:0000016","l":"","na":331,"nb":32,"a":[["ARO%3A3004272","16S rRNA methyltransferase (A1408)"],["ARO%3A3004271","16S rRNA methyltransferase (G1405)"],["ARO%3A3003666","16s rRNA with mutation conferring resistance to aminoglycoside antibiotics"],["ARO%3A3004936","23s rRNA with mutation conferring resistance to aminoglycoside antibiotics"],["ARO%3A3000341","AAC(2')"],["ARO%3A3007393","AAC(2')-I"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/apramycin.html","apramycin"],["antibacterial/arbekacin.html","arbekacin"]]},{"id":"ARO:0000001","l":"","na":223,"nb":31,"a":[["ARO%3A3005113","AAC(6')-Ib-cr"],["ARO%3A3002547","AAC(6')-Ib-cr1"],["ARO%3A3007770","aac(6')-Ib-cr10"],["ARO%3A3007771","aac(6')-Ib-cr11"],["ARO%3A3005112","AAC(6')-Ib-cr3"],["ARO%3A3005114","AAC(6')-Ib-cr4"]],"b":[["antibacterial/7-3-aminopyrrolidin-1-yl-1-2-4-difluorophenyl-6-fluoro-4-oxo-1-4-dihyd.html","7-(3-aminopyrrolidin-1-yl)-1-(2,4-difluorophenyl)-6-fluoro-4-oxo-1,4-dihydro-1,8-naphthyridine-3-carboxylic"],["antibacterial/9-fluoro-5-methyl-1-oxo-6-7-dihydro-1h-5h-pyrido-3-2-1-ij-quinoline-2-.html","9-fluoro-5-methyl-1-oxo-6,7-dihydro-1H,5H-pyrido[3,2,1-ij]quinoline-2-carboxylic"],["antibacterial/balofloxacin.html","Balofloxacin"],["antibacterial/cinoxacin.html","cinoxacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/clinafloxacin.html","clinafloxacin"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":145,"nb":30,"a":[["IDPO%3A0000033","flexible linker"],["IDPO%3A0000014","order to disorder"],["IDPO%3A0000004","pre-molten globule"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"]]},{"id":"CHEBI:15734","l":"","na":29,"nb":59,"a":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.1.2","alcohol dehydrogenase (NADP(+))"],["EC%3A1.1.1.71","alcohol dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.2.8","alcohol dehydrogenase (cytochrome c)"],["EC%3A1.1.3.13","alcohol oxidase"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/dihydroconiferyl-alcohol.html","dihydroconiferyl alcohol"],["antibacterial/equisetin.html","equisetin"],["antibacterial/hexan-1-ol.html","hexan-1-ol"],["antibacterial/lyoniresinol-3-%CE%B1-o-%CE%B2-d-glucopyranoside.html","(+)-lyoniresinol-3-α-O-β-D-glucopyranoside"],["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3000008","l":"","na":3168,"nb":27,"a":[["ARO%3A3001815","ACC-1"],["ARO%3A3006228","ACC-1a"],["ARO%3A3006229","ACC-1b"],["ARO%3A3006230","ACC-1c"],["ARO%3A3006231","ACC-1d"],["ARO%3A3001816","ACC-2"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aspoxicillin.html","aspoxicillin"],["antibacterial/azidocillin.html","azidocillin"],["antibacterial/azlocillin.html","azlocillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":30,"nb":22,"a":[["Pfam%3APF08787","Alginate lyase"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF08218","Citrate lyase ligase C-terminal domain"],["Pfam%3APF13727","CoA-binding domain"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["Pfam%3APF20714","DpiA-like helix-turn-helix domain"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"]]},{"id":"ARO:3000081","l":"","na":120,"nb":18,"a":[["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3004256","Bleomycin resistant protein"],["ARO%3A3005036","BLMT"],["ARO%3A3001205","BRP(MBL)"],["ARO%3A3004561","Clostridioides difficile murG with mutation conferring resistance to vancomycin"],["ARO%3A3004681","Clostridioides difficile rpoC with mutation conferring resistance to vancomycin"]],"b":[["antibacterial/a47934.html","A47934"],["antibacterial/antibiotic-a40926.html","antibiotic A40926"],["antibacterial/avoparcin.html","avoparcin"],["antibacterial/balhimycin.html","balhimycin"],["antibacterial/bleomycin-a2.html","bleomycin A2"],["antibacterial/bleomycin-b2.html","bleomycin B2"]]},{"id":"ARO:0000026","l":"","na":98,"nb":13,"a":[["ARO%3A3005099","23S rRNA (adenine(2058)-N(6))-methyltransferase Erm(A)"],["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3004182","23S rRNA with mutation conferring resistance to streptogramins antibiotics"],["ARO%3A3000202","Cfr 23S ribosomal RNA methyltransferase"],["ARO%3A3004649","cfr(B)"],["ARO%3A3004609","cfr(B) Group"]],"b":[["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/madumycin-ii.html","madumycin II"],["antibacterial/ostreogrycin-b3.html","ostreogrycin B3"],["antibacterial/patricin-a.html","patricin A"],["antibacterial/patricin-b.html","patricin B"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":46,"nb":13,"a":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF13166","AAA domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF27533","CapK C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/bromodeoxytopsentin.html","bromodeoxytopsentin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"ARO:3000053","l":"","na":203,"nb":12,"a":[["ARO%3A3003667","16s rRNA with mutation conferring resistance to peptide antibiotics"],["ARO%3A3003581","Acinetobacter mutant Lpx gene conferring resistance to colistin"],["ARO%3A3007430","alm glycyl carrier protein"],["ARO%3A3007432","alm glycyltransferase"],["ARO%3A3007433","almE"],["ARO%3A3007434","almEFG"]],"b":[["antibacterial/defensin.html","defensin"],["antibacterial/epinecidin-1.html","epinecidin-1"],["antibacterial/magainin-1.html","magainin 1"],["antibacterial/magainin-2.html","magainin 2"],["antibacterial/magainin-a.html","magainin A"],["antibacterial/magainin-b.html","magainin B"]]},{"id":"ARO:3001219","l":"","na":12,"nb":25,"a":[["ARO%3A3003357","Clostridioides difficile EF-Tu mutants conferring resistance to elfamycin"],["ARO%3A3001312","elfamycin resistant EF-Tu"],["ARO%3A3003875","Enterococcus faecium EF-Tu mutants conferring resistance to elfamycin"],["ARO%3A3003438","Enterococcus faecium EF-Tu mutants conferring resistance to GE2270A"],["ARO%3A3003358","Escherichia coli EF-Tu mutants conferring resistance to elfamycin"],["ARO%3A3003370","Escherichia coli EF-Tu mutants conferring resistance to Enacyloxin IIa"]],"b":[["antibacterial/amythiamicin-a.html","amythiamicin A"],["antibacterial/aurodox.html","aurodox"],["antibacterial/dihydromocimycin.html","dihydromocimycin"],["antibacterial/efrotomycin.html","efrotomycin"],["antibacterial/enacyloxin-iia.html","enacyloxin IIa"],["antibacterial/factumycin.html","factumycin"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":19,"nb":12,"a":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"],["Pfam%3APF18173","Bacterial HORMA domain 2"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["Pfam%3APF27322","Cap8 HORMA domain"],["Pfam%3APF01526","Tn3 transposase DDE domain"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3007499","l":"","na":11,"nb":18,"a":[["ARO%3A3007549","antibiotic resistant ergosterol biosynthesis pathway transcription factor"],["ARO%3A3007565","Aspergillus spp. cyp51A with mutations conferring resistance to triazoles antibiotics"],["ARO%3A3007670","Aspergillus spp. Hmg1 with mutations conferring resistance to triazoles antibiotics"],["ARO%3A3007666","Candida spp. cyp51A1 with mutations conferring resistance to triazoles and imidazole antibiotics"],["ARO%3A3007524","Candida spp. ERG11 with mutations conferring resistance to azole antibiotics"],["ARO%3A3007640","Candida spp. pleiotropic drug resistance factor 1"]],"b":[["antifungal/bromuconazole.html","bromuconazole"],["antifungal/cyproconazole.html","cyproconazole"],["antifungal/difenoconazole.html","difenoconazole"],["antifungal/epoxiconazole.html","epoxiconazole"],["antifungal/fenbuconazole.html","fenbuconazole"],["antifungal/fluconazole.html","fluconazole"]]},{"id":"CHEBI:17087","l":"","na":17,"nb":11,"a":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.1.184","carbonyl reductase (NADPH)"],["EC%3A1.1.1.2","alcohol dehydrogenase (NADP(+))"],["EC%3A1.1.3.18","secondary-alcohol oxidase"],["EC%3A1.1.98.5","secondary-alcohol dehydrogenase (coenzyme-F420)"],["EC%3A1.4.1.28","secondary-alkyl amine dehydrogenase [NAD(P)(+)]"]],"b":[["antibacterial/6-diazo-5-oxo-l-norleucine.html","6-diazo-5-oxo-L-norleucine"],["antibacterial/dehydroacetic-acid.html","dehydroacetic acid"],["antibacterial/ucs1025-a.html","UCS1025 A"],["antifungal/1-2-3-dihydro-1h-pyrrol-1-yl-2-methyldecane-1-3-dione.html","1-(2,3-dihydro-1H-pyrrol-1-yl)-2-methyldecane-1,3-dione"],["antifungal/e-1-2-3-dihydro-1h-pyrrol-1-yl-2-methyldec-8-ene-1-3-dione.html","(E)-1-(2,3-dihydro-1H-pyrrol-1-yl)-2-methyldec-8-ene-1,3-dione"],["antiprotozoal/ct3.html","CT3"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":11,"nb":15,"a":[["Pfam%3APF22829","HphA C-terminal domain"],["Pfam%3APF22828","HphA N-terminal heme-binding domain"],["Pfam%3APF28205","Ciprofloxacin tolerance protein"],["Pfam%3APF19582","Solute-binding protein AdeT 1/2"],["PROSITE%3APS00337","Beta-lactamase class-D active site"],["Pfam%3APF24575","Surface lipoprotein assembly modifier, N-terminal TPR repeats"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3000282","l":"","na":13,"nb":11,"a":[["ARO%3A3007426","ECF transporter S component"],["ARO%3A3003386","Escherichia coli folP with mutation conferring resistance to sulfonamides"],["ARO%3A3000386","MexAB-OprM"],["ARO%3A3004873","Neisseria gonorrhoeae folP with mutation conferring resistance to sulfonamides"],["ARO%3A3007749","Salmonella gallinarum folP with mutation conferring resistance to sulfonamides"],["ARO%3A3003387","Streptococcus pyogenes folP with mutation conferring resistance to sulfonamides"]],"b":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfacetamide.html","sulfacetamide"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfamerazine.html","sulfamerazine"],["antibacterial/sulfamethazine.html","sulfamethazine"],["antibacterial/sulfamethizole.html","sulfamethizole"]]},{"id":"CHEBI:33853","l":"","na":10,"nb":185,"a":[["EC%3A2.1.1.382","methoxylated aromatic compound--corrinoid protein Co-methyltransferase"],["EC%3A2.8.2.1","aryl sulfotransferase"],["EC%3A2.8.2.22","aryl-sulfate sulfotransferase"],["EC%3A3.1.1.2","arylesterase"],["EC%3A3.1.6.1","arylsulfatase (type I)"],["RHEA%3A72283","a methoxylated aromatic compound + Co(I)-[methoxylated-aromatic-compound-specific corrinoid protein] + H(+) = a phenol + methyl-Co(III)-[methoxylated-aromatic-compound-specific corrinoid protein]"]],"b":[["antibacterial/2e-6z-13-hydroxy-1-2-hydroxy-5-methoxy-3-methylphenyl-3-7-11-15-tetram.html","(2E,6Z)-13-hydroxy-1-(2-hydroxy-5-methoxy-3-methylphenyl)-3,7,11,15-tetramethylhexadeca-2,6,14-triene-5,12-dione"],["antibacterial/5e-7-oxozeaenol.html","5E-7-oxozeaenol"],["antibacterial/5z-7-oxozeaenol.html","5Z-7-oxozeaenol"],["antibacterial/7-hydroxy-5-hydroxymethyl-2h-benzo-1-4-thiazin-3-one.html","7-hydroxy-5-hydroxymethyl-2H-benzo[1,4]thiazin-3-one"],["antibacterial/actinodaphnine.html","actinodaphnine"],["antibacterial/anthramycin.html","anthramycin"]]},{"id":"CHEBI:35681","l":"","na":10,"nb":139,"a":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.1.184","carbonyl reductase (NADPH)"],["EC%3A1.1.1.2","alcohol dehydrogenase (NADP(+))"],["EC%3A1.1.3.18","secondary-alcohol oxidase"],["EC%3A1.1.98.5","secondary-alcohol dehydrogenase (coenzyme-F420)"],["RHEA%3A10740","a secondary alcohol + NAD(+) = a ketone + NADH + H(+)"]],"b":[["antibacterial/14-norpseurotin-a.html","14-norpseurotin A"],["antibacterial/2e-6z-13-hydroxy-1-2-hydroxy-5-methoxy-3-methylphenyl-3-7-11-15-tetram.html","(2E,6Z)-13-hydroxy-1-(2-hydroxy-5-methoxy-3-methylphenyl)-3,7,11,15-tetramethylhexadeca-2,6,14-triene-5,12-dione"],["antibacterial/5e-7-oxozeaenol.html","5E-7-oxozeaenol"],["antibacterial/5z-7-oxozeaenol.html","5Z-7-oxozeaenol"],["antibacterial/asperlactone.html","asperlactone"],["antibacterial/aspyrone.html","aspyrone"]]},{"id":"ARO:3000050","l":"","na":50,"nb":9,"a":[["ARO%3A3003669","16S rRNA with mutation conferring resistance to tetracycline derivatives"],["ARO%3A3003499","Cutibacterium acnes 16S rRNA mutation conferring resistance to tetracycline"],["ARO%3A3003411","Escherichia coli 16S rRNA (rrnB) mutation conferring resistance to tetracycline"],["ARO%3A3003410","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to tetracycline"],["ARO%3A3004126","Escherichia coli LamB"],["ARO%3A3003510","Helicobacter pylori 16S rRNA mutation conferring resistance to tetracycline"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/eravacycline.html","eravacycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/omadacycline.html","omadacycline"]]},{"id":"CHEBI:18379","l":"","na":9,"nb":21,"a":[["EC%3A3.5.5.1","nitrilase"],["EC%3A4.8.1.2","aliphatic aldoxime dehydratase"],["EC%3A4.8.1.5","thiohydroximate-O-sulfate sulfate/sulfur-lyase (nitrile-forming)"],["RHEA%3A21724","a nitrile + 2 H2O = a carboxylate + NH4(+)"],["RHEA%3A59956","a (Z)-N-(sulfonatooxy)alkanimidothioate = a nitrile + sulfur + sulfate"],["RHEA%3A11316","an aliphatic aldoxime = a nitrile + H2O"]],"b":[["antibacterial/bay11-7085.html","BAY11-7085"],["antibacterial/cccp.html","CCCP"],["antibacterial/finafloxacin.html","finafloxacin"],["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/cyazofamid.html","cyazofamid"],["antifungal/cymoxanil.html","cymoxanil"]]},{"id":"ARO:0000020","l":"","na":2703,"nb":8,"a":[["ARO%3A3006863","AAK-1"],["ARO%3A3005387","AAK beta-lactamase"],["ARO%3A3003809","Acinetobacter baumannii OprD conferring resistance to imipenem"],["ARO%3A3001821","ACT-1"],["ARO%3A3001832","ACT-10"],["ARO%3A3007883","ACT-100"]],"b":[["antibacterial/biapenem.html","biapenem"],["antibacterial/doripenem.html","doripenem"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"],["antibacterial/panipenem.html","panipenem"]]},{"id":"NCBITaxon:2697049","l":"Severe acute respiratory syndrome coronavirus 2","na":18,"nb":8,"a":[["IDPO%3A0000002","disorder"],["IDPO%3A0000033","flexible linker"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000041","glycosylation display site"],["IDPO%3A0000048","limited proteolysis display site"],["IDPO%3A0000037","molecular recognition display site"]],"b":[["antibacterial/3-6-diaminoacridine.html","3,6-diaminoacridine"],["antibacterial/anacardic-acid.html","anacardic acid"],["antibacterial/baicalein.html","baicalein"],["antibacterial/ebselen.html","ebselen"],["antibacterial/hexachlorophene.html","hexachlorophene"],["antifungal/disulfiram.html","disulfiram"]]},{"id":"ARO:3000034","l":"","na":8,"nb":9,"a":[["ARO%3A3002895","SAT-2"],["ARO%3A3002898","SAT-3"],["ARO%3A3002897","SAT-4"],["ARO%3A3005045","SatA"],["ARO%3A3004699","sta"],["ARO%3A3000869","streptothricin acetyltransferase (SAT)"]],"b":[["antibacterial/a201a.html","A201A"],["antibacterial/caprazamycin.html","caprazamycin"],["antibacterial/cordycepin.html","cordycepin"],["antibacterial/pseudouridimycin.html","pseudouridimycin"],["antibacterial/puromycin.html","puromycin"],["antibacterial/streptothricin-f.html","streptothricin F"]]},{"id":"CHEBI:33709","l":"amino acid","na":8,"nb":8,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.23","The Dicarboxylate/Amino Acid:Cation (Na+ or H+) Symporter (DAACS) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A1.V.1","The Filamentous Cyanobacterial Septal Pore (Septum) Family"],["TCDB%3A1.A.24","The Gap Junction-forming Connexin (Connexin) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/7-3-aminopyrrolidin-1-yl-1-2-4-difluorophenyl-6-fluoro-4-oxo-1-4-dihyd.html","7-(3-aminopyrrolidin-1-yl)-1-(2,4-difluorophenyl)-6-fluoro-4-oxo-1,4-dihydro-1,8-naphthyridine-3-carboxylic"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/pipemidic-acid.html","pipemidic acid"],["antibacterial/trovafloxacin.html","trovafloxacin"],["antifungal/mediomycin-a.html","mediomycin A"],["antifungal/mediomycin-b.html","mediomycin B"]]},{"id":"ARO:3000419","l":"quinolone resistance protein (qnr)","na":111,"nb":7,"a":[["ARO%3A3003844","mfd"],["ARO%3A3003035","mfpA"],["ARO%3A3002707","QnrA1"],["ARO%3A3002708","QnrA2"],["ARO%3A3002709","QnrA3"],["ARO%3A3002710","QnrA4"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"NCBITaxon:237561","l":"Candida albicans (strain SC5314 / ATCC MYA-2876)","na":46,"nb":7,"a":[["Pfam%3APF26023","Alanine--tRNA ligase domain"],["Pfam%3APF09757","Arb2-like domain"],["Pfam%3APF25026","Asd-4-like domain"],["Pfam%3APF07741","Brf1-like TBP-binding domain"],["Pfam%3APF11766","Agglutinin-like protein, N-terminal domain"],["Pfam%3APF16892","Chitin biosynthesis protein CHS5 N-terminus"]],"b":[["antibacterial/brefeldin-a.html","brefeldin A"],["antifungal/anidulafungin.html","anidulafungin"],["antifungal/caspofungin.html","caspofungin"],["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/micafungin.html","micafungin"]]},{"id":"CHEBI:87211","l":"","na":7,"nb":18,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.24","The Mycobacterial Porin (MBP) Family"],["TCDB%3A9.B.325","The Putative ABC4 (ABC4) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/dextrofloxacin.html","dextrofloxacin"],["antibacterial/difloxacin.html","difloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/fleroxacin.html","fleroxacin"],["antibacterial/gemifloxacin.html","gemifloxacin"]]},{"id":"ARO:3000384","l":"AcrAB-TolC","na":16,"nb":7,"a":[["ARO%3A3000384","AcrAB-TolC"],["ARO%3A3000702","acrR"],["ARO%3A3003374","Enterobacter aerogenes acrR with mutation conferring multidrug antibiotic resistance"],["ARO%3A3004108","Enterobacter cloacae rob"],["ARO%3A3003807","Escherichia coli AcrAB-TolC with AcrR mutation conferring resistance to ciprofloxacin, tetracycline, and ceftazidime"],["ARO%3A3003378","Escherichia coli AcrAB-TolC with MarR mutations conferring resistance to ciprofloxacin and tetracycline"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/tetracycline.html","tetracycline"],["antibacterial/tigecycline.html","tigecycline"],["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3000386","l":"MexAB-OprM","na":7,"nb":15,"a":[["ARO%3A3000831","CpxR"],["ARO%3A3000377","MexA"],["ARO%3A3000386","MexAB-OprM"],["ARO%3A3000378","MexB"],["ARO%3A3000506","MexR"],["ARO%3A3000819","nalD"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/azithromycin.html","azithromycin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3000103","l":"","na":12,"nb":7,"a":[["ARO%3A3003830","Aminocoumarin resistant alaS"],["ARO%3A3003840","aminocoumarin resistant cysB"],["ARO%3A3000479","aminocoumarin resistant gyrB"],["ARO%3A3000457","aminocoumarin resistant parE"],["ARO%3A3000480","aminocoumarin resistant parY"],["ARO%3A3003787","aminocoumarin self resistant parY"]],"b":[["antibacterial/chrysomycin-a.html","chrysomycin A"],["antibacterial/clorobiocin.html","clorobiocin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/declovanillobiocin.html","declovanillobiocin"],["antibacterial/isovanillobiocin.html","isovanillobiocin"],["antibacterial/novobiocin.html","novobiocin"]]},{"id":"UniProt:P0DTD1","l":"","na":11,"nb":7,"a":[["EC%3A3.4.22.69","SARS coronavirus main proteinase"],["IDPO%3A0000002","disorder"],["Pfam%3APF12379","Betacoronavirus replicase NSP3, N-terminal"],["ELM%3AELME000557","DEG_Cend_TRIM7_1"],["proteintraitsmech%3ABIOLIP_A1IB6","A1IB6-binding site"],["proteintraitsmech%3ABIOLIP_BJ6","BJ6-binding site"]],"b":[["antibacterial/3-6-diaminoacridine.html","3,6-diaminoacridine"],["antibacterial/anacardic-acid.html","anacardic acid"],["antibacterial/baicalein.html","baicalein"],["antibacterial/ebselen.html","ebselen"],["antibacterial/hexachlorophene.html","hexachlorophene"],["antifungal/disulfiram.html","disulfiram"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":9,"nb":7,"a":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF25954","CusB-like, beta-barrel domain"],["Pfam%3APF13438","Domain of unknown function (DUF4113)"],["Pfam%3APF03767","HAD superfamily, subfamily IIIB (Acid phosphatase)"],["Pfam%3APF03496","ADP-ribosyltransferase exoenzyme"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":8,"nb":7,"a":[["Pfam%3APF01721","Class II bacteriocin"],["Pfam%3APF13700","Domain of unknown function (DUF4158)"],["Pfam%3APF07478","D-ala D-ala ligase C-terminus"],["Pfam%3APF01820","D-ala D-ala ligase N-terminus"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"],["PROSITE%3APS00843","D-alanine--D-alanine ligase signature 1"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":7,"nb":7,"a":[["Pfam%3APF11766","Agglutinin-like protein, N-terminal domain"],["Pfam%3APF16856","Cell division control protein 4 dimerisation domain"],["Pfam%3APF18325","Fatty acid synthase subunit alpha Acyl carrier domain"],["Pfam%3APF18314","Fatty acid synthase type I helical domain"],["Pfam%3APF17828","N-terminal domain in fatty acid synthase subunit beta"],["Pfam%3APF05388","Carboxypeptidase Y pro-peptide"]],"b":[["antibacterial/brefeldin-a.html","brefeldin A"],["antifungal/anidulafungin.html","anidulafungin"],["antifungal/caspofungin.html","caspofungin"],["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/micafungin.html","micafungin"]]},{"id":"CHEBI:132124","l":"","na":91,"nb":6,"a":[["EC%3A1.1.5.10","D-2-hydroxyacid dehydrogenase (quinone)"],["EC%3A1.1.5.11","1-butanol dehydrogenase (quinone)"],["EC%3A1.1.5.12","D-lactate dehydrogenase (quinone)"],["EC%3A1.1.5.13","(S)-2-hydroxyglutarate dehydrogenase"],["EC%3A1.1.5.3","glycerol-3-phosphate dehydrogenase"],["EC%3A1.1.5.4","malate dehydrogenase (quinone)"]],"b":[["antiprotozoal/r-4-methoxydalbergione.html","(R)-4'-methoxydalbergione"],["antiviral/geldanamycin.html","geldanamycin"],["unspecified/auricin.html","auricin"],["unspecified/dutomycin.html","dutomycin"],["unspecified/herbimycin.html","herbimycin"],["unspecified/primin.html","primin"]]},{"id":"ARO:3000670","l":"","na":27,"nb":6,"a":[["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3004178","23S rRNA with mutation conferring resistance to pleuromutilin antibiotics"],["ARO%3A3004472","lsa-type ABC-F protein"],["ARO%3A3000300","lsaA"],["ARO%3A3003111","lsaB"],["ARO%3A3003112","lsaC"]],"b":[["antibacterial/azamulin.html","azamulin"],["antibacterial/lefamulin.html","lefamulin"],["antibacterial/pleuromutilin.html","pleuromutilin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/valnemulin.html","valnemulin"]]},{"id":"ARO:3005386","l":"","na":15,"nb":6,"a":[["ARO%3A3004284","antibiotic resistant fabG"],["ARO%3A3004270","antibiotic resistant fabI"],["ARO%3A3000309","emrD"],["ARO%3A3004049","Escherichia coli fabG mutations conferring resistance to triclosan"],["ARO%3A3004045","Escherichia coli fabI mutations conferring resistance to isoniazid and triclosan"],["ARO%3A3004335","Escherichia coli gyrA with mutation conferring resistance to triclosan"]],"b":[["antibacterial/3-6-diaminoacridine.html","3,6-diaminoacridine"],["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"],["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/triclosan.html","triclosan"],["biocide/acriflavine.html","acriflavine"],["biocide/thiacalixarene-derivatives.html","thiacalixarene derivatives"]]},{"id":"ARO:3000797","l":"MexCD-OprJ","na":6,"nb":7,"a":[["ARO%3A3000797","MexCD-OprJ"],["ARO%3A3004061","MexCD-OprJ with type A NfxB mutation"],["ARO%3A3004062","MexCD-OprJ with type B NfxB mutation"],["ARO%3A3000820","NfxB"],["ARO%3A3004059","Type A NfxB"],["ARO%3A3004060","Type B NfxB"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/gentamicin-c.html","gentamicin C"],["antibacterial/novobiocin.html","novobiocin"],["antibacterial/ofloxacin.html","ofloxacin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"CHEBI:36836","l":"","na":7,"nb":6,"a":[["EC%3A1.1.1.270","3beta-hydroxysteroid 3-dehydrogenase"],["EC%3A2.3.1.77","triacylglycerol--sterol O-acyltransferase"],["RHEA%3A16897","a 3beta-hydroxysteroid + a triacylglycerol = a 3beta-hydroxysteroid ester + a diacylglycerol"],["RHEA%3A78195","a 3beta-hydroxysteroid + a triacylglycerol = a 3beta-hydroxysteroid ester + a 1,2-diacylglycerol"],["RHEA%3A78199","a 3beta-hydroxysteroid + a triacylglycerol = a 3beta-hydroxysteroid ester + a 1,3-diacylglycerol"],["RHEA%3A81603","a 3beta-hydroxysteroid + NAD(+) = a 3-oxosteroid + NADH + H(+)"]],"b":[["antibacterial/5%CE%B1-cholesta-24-en-3%CE%B2-20%CE%B2-diol-23-one.html","5α-cholesta-24-en-3β,20β-diol-23-one"],["antibacterial/5%CE%B1-cholesta-9-11-en-3%CE%B2-20%CE%B2-diol.html","5α-cholesta-9(11)-en-3β, 20β-diol"],["antifungal/9%CE%BE-14%CE%BE-25s-cholestane-3%CE%B2-4%CE%B2-6%CE%B2-7%CE%B1-8-15%CE%B1-16%CE%B2-26-octol.html","(9ξ,14ξ,25S)-cholestane-3β,4β,6β,7α,8,15α,16β,26-octol"],["antifungal/fr171456.html","FR171456"],["antifungal/sclerodol-b.html","sclerodol B"],["antiprotozoal/hellebrigenin.html","hellebrigenin"]]},{"id":"NCBITaxon:559292","l":"Saccharomyces cerevisiae (strain ATCC 204508 / S288c)","na":14483,"nb":5,"a":[["EC%3A1.14.18.-","With another compound as one donor, and incorporation of one atom of oxygen"],["EC%3A1.16.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.18.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.5.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.8.-.-","Acting on a sulfur group of donors"]],"b":[["antifungal/anidulafungin.html","anidulafungin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/caspofungin.html","caspofungin"],["antifungal/cycloheximide.html","cycloheximide"],["antifungal/micafungin.html","micafungin"]]},{"id":"ARO:0000017","l":"","na":104,"nb":5,"a":[["ARO%3A3005099","23S rRNA (adenine(2058)-N(6))-methyltransferase Erm(A)"],["ARO%3A3004187","23S rRNA with mutation conferring resistance to lincosamide antibiotics"],["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3000772","AdeIJK"],["ARO%3A3000202","Cfr 23S ribosomal RNA methyltransferase"],["ARO%3A3004649","cfr(B)"]],"b":[["antibacterial/celesticetin.html","celesticetin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/iboxamycin.html","iboxamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/pirlimycin.html","pirlimycin"]]},{"id":"ARO:3000157","l":"","na":45,"nb":5,"a":[["ARO%3A3002846","arr-1"],["ARO%3A3002847","arr-2"],["ARO%3A3002848","arr-3"],["ARO%3A3002849","arr-4"],["ARO%3A3002850","arr-5"],["ARO%3A3002852","arr-7"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifalazil.html","rifalazil"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"NCBITaxon:330879","l":"Aspergillus fumigatus (strain ATCC MYA-4609 / CBS 101355 / FGSC A1100 / Af293)","na":34,"nb":5,"a":[["Pfam%3APF22624","4'-phosphopantetheinyl transferase, N-terminal"],["Pfam%3APF13523","Acetyltransferase (GNAT) domain"],["Pfam%3APF28338","AclK C-terminal domain"],["Pfam%3APF23297","Highly reducing polyketide synthase sdgA, C-terminal ACP domain"],["Pfam%3APF11001","YDR124W-like, helical bundle domain"],["Pfam%3APF25312","Allergen Asp f 4-like domain"]],"b":[["antibacterial/fumagillin.html","fumagillin"],["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/terbinafine.html","terbinafine"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"ARO:3004115","l":"","na":20,"nb":5,"a":[["ARO%3A3007056","Antibiotic resistant Helicobacter pylori nitroreductase"],["ARO%3A3007656","antibiotic resistant Mycobacterium tuberculosis nitroreductase"],["ARO%3A3007671","Clostridioides difficile nimB"],["ARO%3A3007851","delamanid-resistant fgd1"],["ARO%3A3007059","Helicobacter pylori frxA mutation conferring resistance to metronidazole"],["ARO%3A3007055","Helicobacter pylori rdxA mutation conferring resistance to metronidazole"]],"b":[["antibacterial/delamanid.html","delamanid"],["antibacterial/metronidazole.html","metronidazole"],["antibacterial/ornidazole.html","ornidazole"],["antibacterial/pretomanid.html","pretomanid"],["antibacterial/tinidazole.html","tinidazole"]]},{"id":"CHEBI:46761","l":"","na":12,"nb":5,"a":[["MCSA%3A396","aspartic peptidase"],["MCSA%3A815","caspase-3"],["MCSA%3A818","caspase-8"],["MCSA%3A816","caspase-9"],["MCSA%3A814","cathepsin S"],["MCSA%3A912","endopeptidase Clp"]],"b":[["antifungal/gliotoxin.html","gliotoxin"],["antiprotozoal/wll-vs.html","WLL-vs"],["antiviral/ombitasvir.html","ombitasvir"],["unspecified/bacilysin.html","bacilysin"],["unspecified/tabtoxin.html","tabtoxin"]]},{"id":"NCBITaxon:485","l":"Neisseria gonorrhoeae","na":12,"nb":5,"a":[["Pfam%3APF25860","Cryptic plasmid protein A"],["Pfam%3APF12852","Cupin"],["Pfam%3APF17845","FbpC C-terminal regulatory nucleotide binding domain"],["Pfam%3APF22443","FbpC-like, regulatory domain"],["Pfam%3APF18053","DNA gyrase B subunit insert domain"],["Pfam%3APF25885","EMRA, alpha-helical hairpin domain"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007500","l":"","na":5,"nb":11,"a":[["ARO%3A3007666","Candida spp. cyp51A1 with mutations conferring resistance to triazoles and imidazole antibiotics"],["ARO%3A3007640","Candida spp. pleiotropic drug resistance factor 1"],["ARO%3A3007563","Candida spp. TAC1 with mutations conferring resistance to azole antibiotics"],["ARO%3A3007667","imidazole-resistant fungal cytochrome P450 enzyme"],["ARO%3A3007555","Zn2Cys6 transcription factors"]],"b":[["antibacterial/imazalil.html","imazalil"],["antifungal/bifonazole.html","bifonazole"],["antifungal/clotrimazole.html","clotrimazole"],["antifungal/econazole.html","econazole"],["antifungal/hexaconazole.html","hexaconazole"],["antifungal/ketoconazole.html","ketoconazole"]]},{"id":"ARO:3001815","l":"ACC-1","na":5,"nb":9,"a":[["ARO%3A3001815","ACC-1"],["ARO%3A3006228","ACC-1a"],["ARO%3A3006229","ACC-1b"],["ARO%3A3006230","ACC-1c"],["ARO%3A3006231","ACC-1d"]],"b":[["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/cefotetan.html","cefotetan"],["antibacterial/cefpirome.html","cefpirome"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"NCBITaxon:229533","l":"Fusarium graminearum PH-1","na":8,"nb":5,"a":[["Pfam%3APF18388","Atg29 N-terminal domain"],["Pfam%3APF27599","CcsR C-terminal domain"],["Pfam%3APF07110","EthD domain"],["Pfam%3APF11700","Vacuole effluxer Atg22 like"],["Pfam%3APF28504","Gramillins biosynthetic cluster protein GRA5"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"]],"b":[["antifungal/carbendazim.html","carbendazim"],["antifungal/difenoconazole.html","difenoconazole"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/prochloraz.html","prochloraz"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"ARO:3000491","l":"acrD","na":7,"nb":5,"a":[["ARO%3A3000491","acrD"],["ARO%3A3000828","baeR"],["ARO%3A3000829","baeS"],["ARO%3A3000531","baeSR"],["ARO%3A3000830","cpxA"],["ARO%3A3000524","cpxAR"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:0000004","l":"","na":1345,"nb":4,"a":[["ARO%3A3001815","ACC-1"],["ARO%3A3006228","ACC-1a"],["ARO%3A3006229","ACC-1b"],["ARO%3A3006230","ACC-1c"],["ARO%3A3006231","ACC-1d"],["ARO%3A3001816","ACC-2"]],"b":[["antibacterial/aztreonam.html","aztreonam"],["antibacterial/bal30072.html","BAL30072"],["antibacterial/carumonam.html","carumonam"],["antibacterial/lys228.html","LYS228"]]},{"id":"CHEBI:24646","l":"","na":88,"nb":4,"a":[["EC%3A1.1.5.10","D-2-hydroxyacid dehydrogenase (quinone)"],["EC%3A1.1.5.11","1-butanol dehydrogenase (quinone)"],["EC%3A1.1.5.12","D-lactate dehydrogenase (quinone)"],["EC%3A1.1.5.13","(S)-2-hydroxyglutarate dehydrogenase"],["EC%3A1.1.5.3","glycerol-3-phosphate dehydrogenase"],["EC%3A1.1.5.4","malate dehydrogenase (quinone)"]],"b":[["antibacterial/2-5-dihydroxy-3-methanesulfinylbenzyl-alcohol.html","2,5-dihydroxy-3-methanesulfinylbenzyl alcohol"],["antibacterial/cytotrienin-a.html","cytotrienin A"],["antibacterial/mygalin.html","mygalin"],["unspecified/trierixin.html","trierixin"]]},{"id":"CHEBI:47622","l":"","na":4,"nb":84,"a":[["EC%3A2.3.1.84","alcohol O-acetyltransferase"],["EC%3A3.1.1.6","acetylesterase"],["RHEA%3A12957","an acetyl ester + H2O = an aliphatic alcohol + acetate + H(+)"],["RHEA%3A17229","an aliphatic alcohol + acetyl-CoA = an acetyl ester + CoA"]],"b":[["antibacterial/3-5-di-o-acetyl-1-o-5%CE%B2-8%CE%B1-9%CE%B2-10%CE%B1-18-oxokaur-16-en-18-yl-%CE%B2-l-arabinofur.html","3,5-di-O-acetyl-1-O-[(5β,8α,9β,10α)-18-oxokaur-16-en-18-yl]-β-L-arabinofuranose"],["antibacterial/6%CE%B2-16%CE%B2-diacetoxy-25-hydroxy-3-7-dioxy-29-nordammara-1-17-20-dien-21-oi.html","6β,16β-diacetoxy-25-hydroxy-3,7-dioxy-29-nordammara-1,17(20)-dien-21-oic acid"],["antibacterial/caminoside-a.html","caminoside A"],["antibacterial/geranylgeranyl-acetate.html","geranylgeranyl acetate"],["antibacterial/helvolic-acid-methyl-ester.html","helvolic acid methyl ester"],["antibacterial/helvolic-acid.html","helvolic acid"]]},{"id":"CHEBI:59869","l":"","na":68,"nb":4,"a":[["EC%3A1.4.1.5","L-amino-acid dehydrogenase"],["EC%3A1.4.3.2","L-amino-acid oxidase"],["EC%3A1.5.3.2","N-methyl-L-amino-acid oxidase"],["EC%3A2.6.1.12","alanine--oxo-acid transaminase"],["EC%3A2.6.1.13","ornithine aminotransferase"],["EC%3A2.6.1.14","asparagine--oxo-acid transaminase"]],"b":[["antibacterial/l-%CE%B2-ethynylserine-zwitterion.html","L-β-ethynylserine zwitterion"],["unspecified/alliin-zwitterion.html","alliin zwitterion"],["unspecified/anticapsin-zwitterion.html","anticapsin zwitterion"],["unspecified/l-propargylglycine-zwitterion.html","L-propargylglycine zwitterion"]]},{"id":"ARO:3000387","l":"","na":58,"nb":4,"a":[["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3004188","23S rRNA with mutation conferring resistance to phenicol antibiotics"],["ARO%3A3004451","Agrobacterium fabrum chloramphenicol acetyltransferase"],["ARO%3A3004452","Alkalihalobacillus clausii chloramphenicol acetyltransferase"],["ARO%3A3002672","Bacillus pumilus cat86"],["ARO%3A3004454","Campylobacter coli chloramphenicol acetyltransferase"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"CHEBI:33308","l":"","na":4,"nb":43,"a":[["EC%3A3.1.1.1","carboxylesterase"],["RHEA%3A21164","a carboxylic ester + H2O = an alcohol + a carboxylate + H(+)"],["MCSA%3A631","cutinase"],["MCSA%3A556","esterase (estA)"]],"b":[["antibacterial/bacilysocin.html","bacilysocin"],["antibacterial/cefpodoxime-proxetil.html","cefpodoxime proxetil"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/fidaxomicin.html","fidaxomicin"],["antibacterial/fluquinometoate.html","fluquinometoate"],["antibacterial/fumagillin.html","fumagillin"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":29,"nb":4,"a":[["Pfam%3APF09156","Anthrax toxin lethal factor, middle domain"],["Pfam%3APF08401","N-terminal domain of anti-restriction factor ArdC"],["Pfam%3APF07737","Anthrax toxin lethal factor, N- and C-terminal domain"],["Pfam%3APF27053","Bacillus anthracis plasmid pXO2 protein 26"],["Pfam%3APF13205","Bacterial Ig-like domain"],["Pfam%3APF17475","Clostridial binary toxin B/anthrax toxin PA domain 2"]],"b":[["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/trimethoprim.html","trimethoprim"],["antiprotozoal/suramin.html","suramin"],["antiviral/tilorone.html","tilorone"]]},{"id":"ARO:3000079","l":"","na":21,"nb":4,"a":[["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3004172","23S rRNA with mutation conferring resistance to oxazolidinone antibiotics"],["ARO%3A3000202","Cfr 23S ribosomal RNA methyltransferase"],["ARO%3A3004649","cfr(B)"],["ARO%3A3004609","cfr(B) Group"],["ARO%3A3004610","cfr(C) Group"]],"b":[["antibacterial/contezolid.html","contezolid"],["antibacterial/linezolid.html","linezolid"],["antibacterial/tbi-223.html","TBI-223"],["antibacterial/tedizolid.html","tedizolid"]]},{"id":"CHEBI:22315","l":"alkaloid","na":4,"nb":21,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antibacterial/14-norpseurotin-a.html","14-norpseurotin A"],["antibacterial/5-bromo-8-methoxy-1-methyl-%CE%B2-carboline.html","5-bromo-8-methoxy-1-methyl-β-carboline"],["antibacterial/undecylprodigiosin.html","undecylprodigiosin"],["antifungal/feruloylagmatine.html","feruloylagmatine"],["antifungal/pyrrolnitrin.html","pyrrolnitrin"],["antifungal/sampangine.html","sampangine"]]},{"id":"CHEBI:23765","l":"","na":4,"nb":19,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.60","The Organo Anion Transporter (OAT) Family"]],"b":[["antibacterial/2-heptyl-4-quinolone.html","2-heptyl-4-quinolone"],["antibacterial/aurachin-c.html","aurachin C"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/difloxacin.html","difloxacin"],["antibacterial/e-1-hydroxy-2-non-1-en-1-yl-quinolin-4-one.html","(E)-1-hydroxy-2-(non-1-en-1-yl)quinolin-4-one"],["antibacterial/enrofloxacin.html","enrofloxacin"]]},{"id":"CHEBI:25106","l":"","na":4,"nb":18,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.28","The Bile Acid:Na+ Symporter (BASS) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/5e-7-oxozeaenol.html","5E-7-oxozeaenol"],["antibacterial/5z-7-oxozeaenol.html","5Z-7-oxozeaenol"],["antibacterial/bromophycolide-a.html","bromophycolide A"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/pristinamycin-iia.html","pristinamycin IIA"]]},{"id":"ARO:3003032","l":"MexXY-OprM","na":4,"nb":11,"a":[["ARO%3A3003032","MexXY-OprM"],["ARO%3A3005068","ParR"],["ARO%3A3005066","parRS"],["ARO%3A3005067","ParS"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/gentamicin-c.html","gentamicin C"],["antibacterial/meropenem.html","meropenem"]]},{"id":"CHEBI:33575","l":"carboxylic acid","na":4,"nb":11,"a":[["MCSA%3A105","aldehyde dehydrogenase (FAD-independent)"],["MCSA%3A803","aldehyde dehydrogenase (NAD+) (class 2)"],["MCSA%3A556","esterase (estA)"],["MCSA%3A755","lysophospholipase"]],"b":[["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefatrizine.html","cefatrizine"],["antibacterial/cefazedone.html","cefazedone"],["antibacterial/cefcapene.html","cefcapene"],["antibacterial/cefditoren.html","cefditoren"],["antibacterial/cefiderocol.html","cefiderocol"]]},{"id":"ARO:3000453","l":"streptogramin vat acetyltransferase","na":9,"nb":4,"a":[["ARO%3A3000453","streptogramin vat acetyltransferase"],["ARO%3A3002840","vatA"],["ARO%3A3002841","vatB"],["ARO%3A3002842","vatC"],["ARO%3A3002843","vatD"],["ARO%3A3002844","vatE"]],"b":[["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/madumycin-ii.html","madumycin II"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3000390","l":"rifampin ADP-ribosyltransferase (Arr)","na":8,"nb":4,"a":[["ARO%3A3002846","arr-1"],["ARO%3A3002847","arr-2"],["ARO%3A3002848","arr-3"],["ARO%3A3002849","arr-4"],["ARO%3A3002850","arr-5"],["ARO%3A3002852","arr-7"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3000788","l":"MdtEF-TolC","na":6,"nb":4,"a":[["ARO%3A3000518","CRP"],["ARO%3A3000832","evgA"],["ARO%3A3000515","evgSA"],["ARO%3A3003838","gadW"],["ARO%3A3000508","gadX"],["ARO%3A3000788","MdtEF-TolC"]],"b":[["antibacterial/cloxacillin.html","cloxacillin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/oxacillin.html","oxacillin"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":4,"nb":6,"a":[["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF09711","CRISPR-associated protein (Cas_Csn2)"],["Pfam%3APF06308","23S rRNA methylastransferase leader peptide (ErmCL)"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3004116","l":"","na":4,"nb":5,"a":[["ARO%3A3003754","antibiotic resistant nfsA"],["ARO%3A3003755","Antibiotic resistant nfsB"],["ARO%3A3003751","Escherichia coli nfsA mutations conferring resistance to nitrofurantoin"],["ARO%3A3003756","Escherichia coli nfsB with mutation conferring resistance to nitrofurantoin"]],"b":[["antibacterial/furagin.html","furagin"],["antibacterial/furazolidone.html","furazolidone"],["antibacterial/nifuratel.html","nifuratel"],["antibacterial/nifuroxazide.html","nifuroxazide"],["antibacterial/nitrofurantoin.html","nitrofurantoin"]]},{"id":"NCBITaxon:5518","l":"Fusarium graminearum","na":4,"nb":5,"a":[["Pfam%3APF09118","Galactose oxidase-like, Early set domain"],["Pfam%3APF07250","Glyoxal oxidase N-terminus"],["TED%3AAF-A0A2H3FY84-F1-model_v4_TED03","TED novel fold AF-A0A2H3FY84-F1-model_v4_TED03"],["TED%3AAF-A0A2H3G191-F1-model_v4_TED01","TED novel fold AF-A0A2H3G191-F1-model_v4_TED01"]],"b":[["antifungal/carbendazim.html","carbendazim"],["antifungal/difenoconazole.html","difenoconazole"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/prochloraz.html","prochloraz"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"ARO:3007496","l":"","na":4,"nb":4,"a":[["ARO%3A3007548","Candida spp. FKS2 with mutations conferring resistance to echinocandin antibiotics"],["ARO%3A3007664","Candida spp. High Osmolarity Glycerol 1 conferring resistance to caspofungin via absence"],["ARO%3A3007546","echinocandin antibiotic-resistant beta-1,3-D-glucan synthase"],["ARO%3A3007663","stress-activated protein kinases"]],"b":[["antibacterial/arborcandin-c.html","arborcandin C"],["antifungal/anidulafungin.html","anidulafungin"],["antifungal/caspofungin.html","caspofungin"],["antifungal/micafungin.html","micafungin"]]},{"id":"ARO:3000171","l":"","na":60,"nb":3,"a":[["ARO%3A3005354","dfr22"],["ARO%3A3002854","dfrA1"],["ARO%3A3003011","dfrA10"],["ARO%3A3002858","dfrA12"],["ARO%3A3003012","dfrA13"],["ARO%3A3002859","dfrA14"]],"b":[["antibacterial/brodimoprim.html","brodimoprim"],["antibacterial/tetroxoprim.html","tetroxoprim"],["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004598","l":"Klebsiella pneumoniae KpnGH-TolC","na":3,"nb":17,"a":[["ARO%3A3004588","Klebsiella pneumoniae KpnG"],["ARO%3A3004598","Klebsiella pneumoniae KpnGH-TolC"],["ARO%3A3004597","Klebsiella pneumoniae KpnH"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":3,"a":[["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["Pfam%3APF14562","Restriction endonuclease BglI"],["Pfam%3APF09195","Restriction endonuclease BglII/BglIII"],["Pfam%3APF09208","Restriction endonuclease MspI"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"CHEBI:35924","l":"","na":14,"nb":3,"a":[["EC%3A1.11.1.24","thioredoxin-dependent peroxiredoxin"],["EC%3A1.11.1.25","glutaredoxin-dependent peroxiredoxin"],["EC%3A1.11.1.26","NADH-dependent peroxiredoxin"],["EC%3A1.11.1.27","glutathione-dependent peroxiredoxin"],["EC%3A1.11.1.28","lipoyl-dependent peroxiredoxin"],["EC%3A1.11.1.29","mycoredoxin-dependent peroxiredoxin"]],"b":[["antiprotozoal/10%CE%B1-hydroperoxy-guaia-1-11-diene.html","10α-hydroperoxy-guaia-1,11-diene"],["antiprotozoal/1r-4s-1-hydroperoxy-p-menth-2-en-8-ol-acetate.html","(1R,4S)-1-hydroperoxy-p-menth-2-en-8-ol acetate"],["antiprotozoal/1%CE%B1-hydroperoxy-guaia-10-15-11-diene.html","1α-hydroperoxy-guaia-10(15),11-diene"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":13,"nb":3,"a":[["Pfam%3APF07832","Cfr10I/Bse634I restriction endonuclease"],["Pfam%3APF22348","Colicin-A N-terminal domain"],["Pfam%3APF01024","Colicin pore forming domain"],["Pfam%3APF18427","DD-reactivating factor swiveling domain"],["Pfam%3APF02286","Dehydratase large subunit"],["Pfam%3APF02288","Dehydratase medium subunit"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"UniProt:P38631","l":"","na":13,"nb":3,"a":[["ComplexPortal%3ACPX-1812","1,3-beta-D-glucan synthase complex, FKS1-RHO1 variant"],["GO%3A0000148","1,3-beta-D-glucan synthase complex"],["GO%3A0030479","actin cortical patch"],["GO%3A0003843","1,3-beta-D-glucan synthase activity"],["GO%3A0006075","(1->3)-beta-D-glucan biosynthetic process"],["GO%3A0030476","ascospore wall assembly"]],"b":[["antifungal/anidulafungin.html","anidulafungin"],["antifungal/caspofungin.html","caspofungin"],["antifungal/micafungin.html","micafungin"]]},{"id":"ARO:3004585","l":"Klebsiella pneumoniae KpnEF","na":3,"nb":11,"a":[["ARO%3A3004580","Klebsiella pneumoniae KpnE"],["ARO%3A3004585","Klebsiella pneumoniae KpnEF"],["ARO%3A3004583","Klebsiella pneumoniae KpnF"]],"b":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"],["antibacterial/cefepime.html","cefepime"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"NCBITaxon:451804","l":"Aspergillus fumigatus (strain CBS 144.89 / FGSC A1163 / CEA10)","na":11,"nb":3,"a":[["Pfam%3APF28347","ACE1 small beta sheet domain"],["Pfam%3APF28329","Zinc finger transcription factor ace1 N-terminal domain"],["Pfam%3APF11001","YDR124W-like, helical bundle domain"],["Pfam%3APF28457","Probable beta-glucosidase btgE N-terminal domain"],["Pfam%3APF13373","DSC E3 ubiquitin ligase complex subunit 3, C-terminal domain"],["Pfam%3APF10302","DSC E3 ubiquitin ligase complex subunit 3, ubiquitin-like domain"]],"b":[["antifungal/itraconazole.html","itraconazole"],["antifungal/terbinafine.html","terbinafine"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"CHEBI:33838","l":"","na":3,"nb":10,"a":[["RHEA%3A22140","a nucleoside 5'-phosphate + H2O = a nucleoside + phosphate"],["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"],["TCDB%3A9.A.72","The Putative Nucleoside Efflux Transporter (NET) Family"]],"b":[["unspecified/tunicamycin-a0.html","tunicamycin A0"],["unspecified/tunicamycin-a1.html","tunicamycin A1"],["unspecified/tunicamycin-a2.html","tunicamycin A2"],["unspecified/tunicamycin-b1.html","tunicamycin B1"],["unspecified/tunicamycin-b2.html","tunicamycin B2"],["unspecified/tunicamycin-b3.html","tunicamycin B3"]]},{"id":"CHEBI:55465","l":"","na":3,"nb":8,"a":[["EC%3A2.1.1.150","isoflavone 7-O-methyltransferase"],["RHEA%3A17933","a 7-hydroxyisoflavone + S-adenosyl-L-methionine = a 7-methoxyisoflavone + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A56344","a 7-hydroxyisoflavone + UDP-alpha-D-glucose = a 7-hydroxyisoflavone 7-O-beta-D-glucoside + UDP + H(+)"]],"b":[["antibacterial/5-7-4-trihydroxy-6-8-diprenylisoflavone.html","5,7,4'-trihydroxy-6,8-diprenylisoflavone"],["antibacterial/dihydrolicoisoflavone-a.html","dihydrolicoisoflavone A"],["antifungal/wighteone.html","wighteone"],["antiprotozoal/5-7-3-4-tetrahydroxy-2-3-3-dimethylallyl-isoflavone.html","5,7,3',4'-tetrahydroxy-2'-(3,3-dimethylallyl)isoflavone"],["antiprotozoal/7-4-dihydroxy-3-methoxyisoflavone.html","7,4'-dihydroxy-3'-methoxyisoflavone"],["antiprotozoal/pseudobaptigenin.html","pseudobaptigenin"]]},{"id":"CHEBI:17580","l":"linalool","na":6,"nb":3,"a":[["EC%3A1.14.14.84","linalool 8-monooxygenase"],["EC%3A5.4.4.8","linalool isomerase"],["RHEA%3A68708","(2E)-geranyl diphosphate + H2O = linalool + diphosphate"],["RHEA%3A32635","linalool + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = (6E)-8-oxolinalool + 2 oxidized [NADPH--hemoprotein reductase] + 3 H2O + 2 H(+)"],["RHEA%3A54656","linalool = (2E)-geraniol"],["RHEA%3A32503","linalool + reduced [NADPH--hemoprotein reductase] + O2 = (6E)-8-hydroxylinalool + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["unspecified/linalool.html","linalool"],["unspecified/r-linalool.html","(R)-linalool"],["unspecified/s-linalool.html","(S)-linalool"]]},{"id":"CHEBI:20156","l":"","na":5,"nb":3,"a":[["EC%3A1.17.99.11","3-oxo-Delta(1)-steroid hydratase/dehydrogenase"],["EC%3A1.3.99.4","3-oxosteroid 1-dehydrogenase"],["RHEA%3A65848","a 3-oxo-Delta(1)-steroid + A + H2O = a steroid 1,3-dione + AH2"],["RHEA%3A65852","a 3-oxo-Delta(1)-steroid + H2O = a 1-hydroxy-3-oxo steroid"],["RHEA%3A13329","a 3-oxosteroid + A = a 3-oxo-Delta(1)-steroid + AH2"]],"b":[["antibacterial/6%CE%B2-16%CE%B2-diacetoxy-25-hydroxy-3-7-dioxy-29-nordammara-1-17-20-dien-21-oi.html","6β,16β-diacetoxy-25-hydroxy-3,7-dioxy-29-nordammara-1,17(20)-dien-21-oic acid"],["antibacterial/helvolic-acid-methyl-ester.html","helvolic acid methyl ester"],["antibacterial/helvolic-acid.html","helvolic acid"]]},{"id":"CHEBI:25697","l":"","na":3,"nb":5,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antibacterial/chelerythrine.html","chelerythrine"],["antifungal/isavuconazonium.html","isavuconazonium"],["antiprotozoal/nostocarboline.html","nostocarboline"],["antiprotozoal/quinine-1.html","quinine(1+)"],["antiviral/meso-tetrakis-n-methyl-4-pyridyl-porphine-4.html","meso-tetrakis(N-methyl-4-pyridyl)porphine(4+)"]]},{"id":"CHEBI:38083","l":"","na":5,"nb":3,"a":[["TCDB%3A2.A.69","The Auxin Efflux Carrier (AEC) Family"],["TCDB%3A2.A.70","The Malonate:Na+ Symporter (MSS) Family"],["TCDB%3A2.A.101","The Malonate Uptake (MatC) Family (Formerly UIT1)"],["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["TCDB%3A2.A.56","The Tripartite ATP-independent Periplasmic Transporter (TRAP-T) Family"]],"b":[["antibacterial/6%CE%B1-malonyloxymanoyl-oxide.html","6α-malonyloxymanoyl oxide"],["antifungal/brasilinolide-a.html","brasilinolide A"],["antifungal/isoprothiolane.html","isoprothiolane"]]},{"id":"ARO:3000391","l":"norA","na":4,"nb":3,"a":[["ARO%3A3000838","arlR"],["ARO%3A3000547","arlRS"],["ARO%3A3000839","arlS"],["ARO%3A3000391","norA"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"],["biocide/acriflavine.html","acriflavine"]]},{"id":"NCBITaxon:1213859","l":"Colletotrichum fructicola (strain Nara gc5)","na":4,"nb":3,"a":[["TED%3AAF-A0A7J6IJ15-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7J6IJ15-F1-model_v4_TED03"],["TED%3AAF-A0A7J6IKD8-F1-model_v4_TED01","TED novel fold AF-A0A7J6IKD8-F1-model_v4_TED01"],["TED%3AAF-L2G012-F1-model_v4_TED02","TED novel fold AF-L2G012-F1-model_v4_TED02"],["TED%3AAF-L2G364-F1-model_v4_TED02","TED novel fold AF-L2G364-F1-model_v4_TED02"]],"b":[["antifungal/difenoconazole.html","difenoconazole"],["antifungal/prochloraz.html","prochloraz"],["antifungal/propiconazole.html","propiconazole"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":3,"nb":4,"a":[["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF08130","Type A lantibiotic family"],["Pfam%3APF04738","Lantibiotic dehydratase, N terminus"]],"b":[["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/oxacillin.html","oxacillin"]]},{"id":"CHEBI:3638","l":"chloroquine","na":3,"nb":3,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antiprotozoal/chloroquine.html","chloroquine"],["antiprotozoal/r-chloroquine.html","(R)-chloroquine"],["antiprotozoal/s-chloroquine.html","(S)-chloroquine"]]},{"id":"CHEBI:75568","l":"1-monolinolein","na":3,"nb":3,"a":[["RHEA%3A38131","1-(9Z,12Z-octadecadienoyl)-glycerol + (9Z)-octadecenoyl-CoA = 1-(9Z,12Z-octadecadienoyl)-2-(9Z-octadecenoyl)-glycerol + CoA"],["RHEA%3A77591","1-(9Z,12Z-octadecadienoyl)-glycerol + (9Z)-octadecenoyl-CoA = 1-(9Z-octadecenoyl)-3-(9Z,12Z-octadecadienoyl)-glycerol + CoA"],["RHEA%3A48428","1-(9Z,12Z-octadecadienoyl)-glycerol + H2O = (9Z,12Z)-octadecadienoate + glycerol + H(+)"]],"b":[["antiviral/1-linoleoyl-sn-glycerol.html","1-linoleoyl-sn-glycerol"],["antiviral/1-monolinolein.html","1-monolinolein"],["antiviral/3-linoleoyl-sn-glycerol.html","3-linoleoyl-sn-glycerol"]]},{"id":"NCBITaxon:274","l":"Thermus thermophilus","na":3,"nb":3,"a":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF01861","Branched-chain polyamine synthase A C-terminal domain"],["Pfam%3APF07736","Chorismate mutase type I"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"],["antibacterial/streptomycin.html","streptomycin"],["unspecified/streptolydigin.html","streptolydigin"]]},{"id":"NCBITaxon:665079","l":"Sclerotinia sclerotiorum (strain ATCC 18683 / 1980 / Ss-1)","na":3,"nb":3,"a":[["TED%3AAF-A0A1D9PSD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1D9PSD6-F1-model_v4_TED01"],["TED%3AAF-A7EZS3-F1-model_v4_TED02","TED highly-symmetric fold AF-A7EZS3-F1-model_v4_TED02"],["TED%3AAF-A0A1D9QKV1-F1-model_v4_TED02","TED novel fold AF-A0A1D9QKV1-F1-model_v4_TED02"]],"b":[["antifungal/carboxin.html","carboxin"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/iprodione.html","iprodione"]]},{"id":"UniProt:P04585","l":"","na":3,"nb":3,"a":[["MCSA%3A175","HIV-1 retropepsin"],["proteintraitsmech%3ABIOLIP_E9B","E9B-binding site"],["proteintraitsmech%3ABIOLIP_TNF","TNF-binding site"]],"b":[["antiviral/delavirdine.html","delavirdine"],["antiviral/emivirine.html","emivirine"],["antiviral/nevirapine.html","nevirapine"]]},{"id":"CHEBI:35718","l":"","na":2,"nb":514,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/1-2-dodecanediol.html","1,2-dodecanediol"],["antibacterial/1-dodecylguanidine-acetate.html","1-dodecylguanidine acetate"],["antibacterial/1-dodecylguanidine.html","1-dodecylguanidine"],["antibacterial/5-bromo-8-methoxy-1-methyl-%CE%B2-carboline.html","5-bromo-8-methoxy-1-methyl-β-carboline"],["antibacterial/5-chloro-7-iodoquinolin-8-ol.html","5-chloro-7-iodoquinolin-8-ol"],["antibacterial/6-methoxy-2-benzoxazolinone.html","6-methoxy-2-benzoxazolinone"]]},{"id":"CHEBI:24127","l":"","na":2,"nb":155,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/allyl-alcohol.html","allyl alcohol"],["antibacterial/dehydroacetic-acid.html","dehydroacetic acid"],["antibacterial/hexachlorophene.html","hexachlorophene"],["antibacterial/methylene-bis-thiocyanate.html","methylene bis(thiocyanate)"],["antibacterial/streptomycin.html","streptomycin"],["antibacterial/tecloftalam.html","tecloftalam"]]},{"id":"CHEBI:22587","l":"","na":2,"nb":149,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/6-diazo-5-oxo-l-norleucine.html","6-diazo-5-oxo-L-norleucine"],["antibacterial/benzethonium-chloride.html","benzethonium chloride"],["antibacterial/gramine.html","gramine"],["antibacterial/hypothiocyanous-acid.html","hypothiocyanous acid"],["antibacterial/mi-1148.html","MI-1148"],["antibacterial/phenethyl-caffeate.html","phenethyl caffeate"]]},{"id":"ARO:3004268","l":"MCR phosphoethanolamine transferase","na":106,"nb":2,"a":[["ARO%3A3003689","MCR-1.1"],["ARO%3A3004506","MCR-1.10"],["ARO%3A3004688","MCR-1.11"],["ARO%3A3004689","MCR-1.12"],["ARO%3A3004690","MCR-1.13"],["ARO%3A3007246","MCR-1.14"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"CHEBI:23066","l":"","na":2,"nb":66,"a":[["TCDB%3A8.A.212","The d-Amino Acid Peptidase (dAAP) Family"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]],"b":[["antibacterial/cefacetrile.html","cefacetrile"],["antibacterial/cefaclor.html","cefaclor"],["antibacterial/cefadroxil.html","cefadroxil"],["antibacterial/cefaloram.html","cefaloram"],["antibacterial/cefaloridine.html","cefaloridine"],["antibacterial/cefalotin.html","cefalotin"]]},{"id":"ARO:3007149","l":"","na":53,"nb":2,"a":[["ARO%3A3004251","antibiotic-resistant cya adenylate cyclase"],["ARO%3A3004247","antibiotic-resistant GlpT"],["ARO%3A3002811","antibiotic-resistant murA transferase"],["ARO%3A3004250","antibiotic-resistant ptsI phosphotransferase"],["ARO%3A3004248","antibiotic-resistant UhpT"],["ARO%3A3003777","Borreliella burgdorferi murA with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"],["antibacterial/fosmidomycin.html","fosmidomycin"]]},{"id":"CHEBI:32955","l":"","na":2,"nb":52,"a":[["EC%3A3.3.2.10","soluble epoxide hydrolase"],["RHEA%3A19037","an epoxide + H2O = an ethanediol"]],"b":[["antibacterial/ambiguine-i.html","ambiguine I"],["antibacterial/asperlactone.html","asperlactone"],["antibacterial/aspyrone.html","aspyrone"],["antibacterial/asukamycin.html","asukamycin"],["antibacterial/ei-1511-3.html","EI-1511-3"],["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"CHEBI:26188","l":"","na":2,"nb":41,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["antibacterial/2-4-dihydroxy-3-methyl-6-2-oxopropyl-benzaldehyde.html","2,4-dihydroxy-3-methyl-6-(2-oxopropyl)benzaldehyde"],["antibacterial/asperlactone.html","asperlactone"],["antibacterial/aspyrone.html","aspyrone"],["antibacterial/asukamycin.html","asukamycin"],["antibacterial/bacillaene.html","bacillaene"],["antibacterial/butremycin.html","butremycin"]]},{"id":"CHEBI:37581","l":"","na":2,"nb":39,"a":[["EC%3A3.1.1.25","1,4-lactonase"],["RHEA%3A12745","a 1,4-lactone + H2O = a 4-hydroxyacid + H(+)"]],"b":[["antibacterial/1-hydroxycrisamicin-a.html","1-hydroxycrisamicin A"],["antibacterial/decatromicin-a.html","decatromicin A"],["antibacterial/decatromicin-b.html","decatromicin B"],["antibacterial/fumimycin.html","fumimycin"],["antibacterial/isopatulin.html","isopatulin"],["antibacterial/lactonamycin.html","lactonamycin"]]},{"id":"CHEBI:48219","l":"","na":2,"nb":26,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"],["antibacterial/benzethonium-chloride.html","benzethonium chloride"],["antibacterial/quaternium-15.html","quaternium-15"],["antifungal/2-4-xylenol.html","2,4-xylenol"],["antifungal/thimerosal.html","thimerosal"],["biocide/1-3-6-8-tetraazatricyclo-4-4-1-13-8-dodecane.html","1,3,6,8-tetraazatricyclo[4,4,1,13,8]dodecane"]]},{"id":"ARO:3007156","l":"","na":20,"nb":2,"a":[["ARO%3A3003457","ethionamide resistant ethA"],["ARO%3A3004888","ethionamide resistant fabG1"],["ARO%3A3004890","ethionamide resistant mshC"],["ARO%3A3004892","ethionamide resistant nudC"],["ARO%3A3004954","Ethionamide resistant Rv0565c"],["ARO%3A3004875","inhA with mutations with conferring resistance to ethionamide"]],"b":[["antibacterial/prothionamide.html","prothionamide"],["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"CHEBI:17176","l":"","na":17,"nb":2,"a":[["EC%3A1.1.3.20","long-chain-alcohol oxidase"],["EC%3A1.14.14.3","bacterial luciferase"],["EC%3A1.2.1.48","long-chain-aldehyde dehydrogenase"],["EC%3A1.2.1.50","long-chain-fatty-acyl-CoA reductase"],["EC%3A1.2.1.80","long-chain acyl-[acyl-carrier-protein] reductase"],["EC%3A4.1.99.5","aldehyde oxygenase (deformylating)"]],"b":[["antibacterial/e-dodec-2-enal.html","(E)-dodec-2-enal"],["unspecified/pentadecanal.html","pentadecanal"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":16,"nb":2,"a":[["Pfam%3APF16822","SGNH hydrolase-like domain, acetyltransferase AlgX"],["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"],["Pfam%3APF11182","Alginate O-acetyl transferase AlgF"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF27129","Functional amyloid protein FapB/FapC family"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]],"b":[["antibacterial/mupirocin.html","mupirocin"],["antifungal/2-4-diacetylphloroglucinol.html","2,4-diacetylphloroglucinol"]]},{"id":"UniProt:Q45066","l":"","na":16,"nb":2,"a":[["GO%3A0009330","DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) complex"],["GO%3A0034335","DNA negative supercoiling activity"],["NCBIfam%3ANF004044","DNA topoisomerase (ATP-hydrolyzing)"],["NCBIfam%3ATIGR01063","DNA topoisomerase (ATP-hydrolyzing) subunit A"],["NCBIfam%3ATIGR01061","DNA topoisomerase IV subunit A"],["CDD%3Acd00187","TOP4c"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"CHEBI:33566","l":"","na":2,"nb":15,"a":[["EC%3A2.1.1.6","catechol O-methyltransferase"],["RHEA%3A17877","a catechol + S-adenosyl-L-methionine = a guaiacol + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/acteoside.html","acteoside"],["antibacterial/brazilin.html","brazilin"],["antibacterial/comazaphilone-c.html","comazaphilone C"],["antibacterial/comazaphilone-e.html","comazaphilone E"],["antibacterial/ethyl-3-4-dihydroxybenzoate.html","ethyl 3,4-dihydroxybenzoate"],["antifungal/altenusin.html","altenusin"]]},{"id":"GO:0003964","l":"RNA-directed DNA polymerase activity","na":13,"nb":2,"a":[["EC%3A2.7.7.49","RNA-directed DNA polymerase"],["GO%3A0003964","RNA-directed DNA polymerase activity"],["GO%3A0003720","telomerase activity"],["NCBIfam%3ATIGR04416","group II intron reverse transcriptase/maturase"],["InterPro%3AIPR010659","Reverse transcriptase connection"],["InterPro%3AIPR010661","Reverse transcriptase thumb"]],"b":[["antiviral/delavirdine.html","delavirdine"],["antiviral/nevirapine.html","nevirapine"]]},{"id":"CHEBI:140331","l":"","na":2,"nb":11,"a":[["EC%3A2.1.1.231","flavonoid 4'-O-methyltransferase"],["RHEA%3A31743","a 4'-hydroxyflavanone + S-adenosyl-L-methionine = a 4'-methoxyflavanone + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/6-8-diprenylnaringenin.html","6,8-diprenylnaringenin"],["antibacterial/naringenin-7-o-%CE%B2-d-glucoside.html","naringenin 7-O-β-D-glucoside"],["antibacterial/remangiflavanone-a.html","remangiflavanone A"],["antibacterial/remangiflavanone-b.html","remangiflavanone B"],["antibacterial/sigmoidin-a.html","sigmoidin A"],["antibacterial/sigmoidin-b.html","sigmoidin B"]]},{"id":"CHEBI:77396","l":"","na":11,"nb":2,"a":[["EC%3A1.1.1.192","long-chain-alcohol dehydrogenase"],["EC%3A1.1.3.20","long-chain-alcohol oxidase"],["EC%3A1.2.1.108","alcohol-forming fatty acyl-CoA reductase (NADH)"],["EC%3A1.2.1.84","alcohol-forming fatty acyl-CoA reductase (NADPH)"],["EC%3A1.2.1.n2","fatty acyl-CoA reductase"],["RHEA%3A36303","a fatty acyl-CoA + 2 NADPH + 2 H(+) = a long-chain primary fatty alcohol + 2 NADP(+) + CoA"]],"b":[["antibacterial/9z-12z-15z-octadecatrien-1-ol.html","(9Z,12Z,15Z)-octadecatrien-1-ol"],["antiviral/docosan-1-ol.html","docosan-1-ol"]]},{"id":"ARO:3007560","l":"","na":10,"nb":2,"a":[["ARO%3A3007642","Aspergillus spp. fcyB conferring resistance to 5-flucytosine via reduced permeability"],["ARO%3A3007643","Aspergillus spp. transcription factor pacC"],["ARO%3A3007665","Candida spp. FCY2 conferring resistance to 5-flucytosine via reduced permeability"],["ARO%3A3007557","Candida spp. FUR1 with mutations conferring resistance to 5-flucytosine"],["ARO%3A3007568","Cryptococcus spp. UXS1 conferring resistance to 5-flucytosine via absence"],["ARO%3A3007641","fungal nucleobase transporters"]],"b":[["antifungal/5-fluorouracil.html","5-Fluorouracil"],["antifungal/flucytosine.html","flucytosine"]]},{"id":"NCBITaxon:242507","l":"","na":10,"nb":2,"a":[["Pfam%3APF28293","Biotrophy-associated secreted protein 2"],["Pfam%3APF28414","Biotrophy-associated secreted protein 4"],["Pfam%3APF22997","Chitin synthase 4-like domain"],["Pfam%3APF27979","CON7 transcription factor helical domain"],["Pfam%3APF26980","Dicer-like protein 2, dsRNA binding domain"],["Pfam%3APF11327","Egh16-like virulence factor"]],"b":[["antifungal/carboxin.html","carboxin"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"UniProt:Q59192","l":"","na":10,"nb":2,"a":[["GO%3A0034335","DNA negative supercoiling activity"],["NCBIfam%3ANF004189","DNA gyrase subunit B"],["NCBIfam%3ATIGR01058","DNA topoisomerase IV subunit B"],["InterPro%3AIPR018522","DNA topoisomerase, type IIA, conserved site"],["CDD%3Acd16928","HATPase_GyrB-like"],["CDD%3Acd00822","TopoII_Trans_DNA_gyrase"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"CHEBI:35489","l":"","na":2,"nb":9,"a":[["EC%3A1.8.3.7","formylglycine-generating enzyme"],["RHEA%3A51152","L-cysteinyl-[sulfatase] + 2 a thiol + O2 = an organic disulfide + 3-oxo-L-alanyl-[sulfatase] + hydrogen sulfide + H2O + H(+)"]],"b":[["antibacterial/2-methyldithio-pyridine-n-oxide.html","2-(methyldithio)pyridine-N-oxide"],["antibacterial/thiram.html","thiram"],["antibacterial/tropodithietic-acid.html","tropodithietic acid"],["antifungal/diallyl-disulfide.html","diallyl disulfide"],["antifungal/disulfiram.html","disulfiram"],["antifungal/gliotoxin.html","gliotoxin"]]},{"id":"CHEBI:13248","l":"","na":2,"nb":8,"a":[["EC%3A3.5.1.13","aryl-acylamidase"],["RHEA%3A20297","an anilide + H2O = aniline + a carboxylate + H(+)"]],"b":[["antifungal/benodanil.html","benodanil"],["antifungal/carboxin.html","carboxin"],["antifungal/cyclanilide.html","cyclanilide"],["antifungal/fenfuram.html","fenfuram"],["antifungal/methfuroxam.html","methfuroxam"],["antifungal/oxycarboxin.html","oxycarboxin"]]},{"id":"CHEBI:134251","l":"","na":2,"nb":8,"a":[["EC%3A2.1.1.6","catechol O-methyltransferase"],["RHEA%3A17877","a catechol + S-adenosyl-L-methionine = a guaiacol + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/rhapontigenin.html","rhapontigenin"],["antifungal/coniferyl-aldehyde.html","coniferyl aldehyde"],["antifungal/nk372135c.html","NK372135C"],["antimycobacterial/1-2-hydroxy-4-methoxyphenyl-3-4-hydroxy-3-methoxyphenyl-propane.html","1-(2-hydroxy-4-methoxyphenyl)-3-(4-hydroxy-3-methoxyphenyl)propane"],["antiviral/5r-5-hydroxy-7-4-hydroxy-3-methoxyphenyl-1-phenyl-3-heptanone.html","(5R)-5-hydroxy-7-(4'-hydroxy-3'-methoxyphenyl)-1-phenyl-3-heptanone"],["antiviral/isorhapontigenin.html","isorhapontigenin"]]},{"id":"CHEBI:18254","l":"","na":8,"nb":2,"a":[["EC%3A2.7.1.77","nucleoside phosphotransferase"],["EC%3A3.1.3.5","5'-nucleotidase"],["EC%3A3.1.3.6","3'-nucleotidase"],["RHEA%3A19961","a 2'-deoxyribonucleoside + a ribonucleoside 5'-phosphate = a ribonucleoside + a 2'-deoxyribonucleoside 5'-phosphate"],["RHEA%3A10144","a ribonucleoside 3'-phosphate + H2O = a ribonucleoside + phosphate"],["RHEA%3A12484","a ribonucleoside 5'-phosphate + H2O = a ribonucleoside + phosphate"]],"b":[["antifungal/toyocamycin.html","toyocamycin"],["antifungal/tubercidin.html","tubercidin"]]},{"id":"CHEBI:26191","l":"","na":2,"nb":8,"a":[["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A1.A.8","The Major Intrinsic Protein (MIP) Family"]],"b":[["antifungal/reedsmycin-a.html","reedsmycin A"],["antifungal/reedsmycin-b.html","reedsmycin B"],["antifungal/reedsmycin-c.html","reedsmycin C"],["antifungal/reedsmycin-d.html","reedsmycin D"],["antifungal/reedsmycin-e.html","reedsmycin E"],["antifungal/validamycin-a.html","validamycin A"]]},{"id":"CHEBI:59062","l":"","na":2,"nb":8,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["antibacterial/colistimethate-a.html","colistimethate A"],["antibacterial/colistimethate-b.html","colistimethate B"],["antibacterial/colistin-a-sodium-methanesulfonate.html","colistin A sodium methanesulfonate"],["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b-sodium-methanesulfonate.html","colistin B sodium methanesulfonate"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":2,"nb":8,"a":[["PROSITE%3APS00820","Glucoamylase active site region signature"],["TED%3AAF-A0A7I9G6Y3-F1-model_v4_TED02","TED novel fold AF-A0A7I9G6Y3-F1-model_v4_TED02"]],"b":[["antifungal/anidulafungin.html","anidulafungin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/caspofungin.html","caspofungin"],["antifungal/cycloheximide.html","cycloheximide"],["antifungal/micafungin.html","micafungin"],["antifungal/oligomycin-a.html","oligomycin A"]]},{"id":"ARO:3000798","l":"MexEF-OprN","na":7,"nb":2,"a":[["ARO%3A3000798","MexEF-OprN"],["ARO%3A3004068","MexEF-OprN with MexS mutations conferring resistance to chloramphenicol, ciprofloxacin, and trimethoprim"],["ARO%3A3004066","MexEF-OprN with MexT mutation conferring resistance to chloramphenicol, ciprofloxacin, and trimethoprim"],["ARO%3A3004070","MexEF-OprN with MvaT deletion conferring resistance to chloramphenicol and norfloxacin"],["ARO%3A3000813","MexS"],["ARO%3A3000814","MexT"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"CHEBI:33839","l":"","na":7,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.I.3","The Bacterial (Planctomycetes) Nuclear Pore-like Complex (B-NPC) Family"],["TCDB%3A1.A.21","The Bcl-2 (Bcl-2) Family"],["TCDB%3A1.N.4","The FF Fusogen (FFF) Family"],["TCDB%3A1.Q.1","The Fungal Septal Pore (FSP) Family"],["TCDB%3A1.N.3","The Hapless2 Male Gamete Fusion Factor (Fusexin) Family"]],"b":[["antifungal/propineb.html","propineb"],["antifungal/zineb.html","zineb"]]},{"id":"ARO:3000772","l":"AdeIJK","na":2,"nb":6,"a":[["ARO%3A3000772","AdeIJK"],["ARO%3A3000559","adeN"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/imipenem.html","imipenem"],["antibacterial/tetracycline.html","tetracycline"],["antibacterial/ticarcillin.html","ticarcillin"],["antibacterial/trimethoprim.html","trimethoprim"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3007159","l":"","na":6,"nb":2,"a":[["ARO%3A3004183","aminosalicylate resistant dihydrofolate reductase"],["ARO%3A3004155","aminosalicylate resistant dihydrofolate synthase"],["ARO%3A3004152","aminosalicylate resistant thymidylate synthase"],["ARO%3A3004157","Mycobacterium tuberculosis folC with mutation conferring resistance to para-aminosalicylic acid"],["ARO%3A3004184","Mycobacterium tuberculosis ribD with mutation conferring resistance to para-aminosalicylic acid"],["ARO%3A3004153","Mycobacterium tuberculosis thyA with mutation conferring resistance to para-aminosalicylic acid"]],"b":[["antibacterial/diflunisal.html","diflunisal"],["antimycobacterial/4-aminosalicylic-acid.html","4-aminosalicylic acid"]]},{"id":"ARO:3007434","l":"almEFG","na":6,"nb":2,"a":[["ARO%3A3007430","alm glycyl carrier protein"],["ARO%3A3007432","alm glycyltransferase"],["ARO%3A3007433","almE"],["ARO%3A3007434","almEFG"],["ARO%3A3007431","almF"],["ARO%3A3004364","almG"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"CHEBI:140377","l":"","na":2,"nb":6,"a":[["EC%3A1.14.11.9","flavanone 3-dioxygenase"],["RHEA%3A18621","a (2S)-flavan-4-one + 2-oxoglutarate + O2 = a (2R,3R)-dihydroflavonol + succinate + CO2"]],"b":[["antibacterial/6-8-diprenylnaringenin.html","6,8-diprenylnaringenin"],["antibacterial/naringenin-7-o-%CE%B2-d-glucoside.html","naringenin 7-O-β-D-glucoside"],["antibacterial/sophoraflavanone-a.html","sophoraflavanone A"],["antifungal/selinone.html","selinone"],["antimycobacterial/sakuranetin.html","sakuranetin"],["antiprotozoal/sophoraflavanone-g.html","sophoraflavanone G"]]},{"id":"CHEBI:28802","l":"","na":6,"nb":2,"a":[["EC%3A1.14.20.6","flavonol synthase"],["EC%3A2.4.1.91","flavonol 3-O-glucosyltransferase"],["EC%3A3.2.1.62","glycosylceramidase"],["RHEA%3A21088","a (2R,3R)-dihydroflavonol + 2-oxoglutarate + O2 = a flavonol + succinate + CO2 + H2O"],["RHEA%3A81339","a flavonol 3-O-beta-D-glucoside + H2O = a flavonol + D-glucose"],["RHEA%3A22300","a flavonol + UDP-alpha-D-glucose = a flavonol 3-O-beta-D-glucoside + UDP + H(+)"]],"b":[["antibacterial/kaempferol.html","kaempferol"],["antiviral/quercetagetin.html","quercetagetin"]]},{"id":"CHEBI:4917","l":"eugenol","na":6,"nb":2,"a":[["EC%3A1.1.1.318","eugenol synthase"],["EC%3A2.1.1.146","(iso)eugenol O-methyltransferase"],["RHEA%3A32655","eugenol + a carboxylate + NADP(+) = a coniferyl ester + NADPH"],["RHEA%3A24690","eugenol + acetate + NADP(+) = (E)-coniferyl acetate + NADPH"],["RHEA%3A80551","eugenol + S-adenosyl-L-methionine = O-methyleugenol + S-adenosyl-L-homocysteine + H(+)"],["proteintraitsmech%3ABIOLIP_EOL","EOL-binding site"]],"b":[["antibacterial/dihydroconiferyl-alcohol.html","dihydroconiferyl alcohol"],["antibacterial/eugenol.html","eugenol"]]},{"id":"ARO:3000617","l":"mecA","na":5,"nb":2,"a":[["ARO%3A3000617","mecA"],["ARO%3A3003440","mecB"],["ARO%3A3001209","mecC"],["ARO%3A3004185","mecD"],["ARO%3A3001208","methicillin resistant PBP2"]],"b":[["antibacterial/ceftaroline.html","ceftaroline"],["antibacterial/methicillin.html","methicillin"]]},{"id":"CHEBI:28034","l":"","na":5,"nb":2,"a":[["EC%3A2.3.1.18","galactoside O-acetyltransferase"],["EC%3A2.4.3.1","beta-galactoside alpha-(2,6)-sialyltransferase"],["RHEA%3A15713","a beta-D-galactoside + acetyl-CoA = a 6-acetyl-beta-D-galactoside + CoA"],["RHEA%3A52104","a beta-D-galactoside + CMP-N-acetyl-beta-neuraminate = an N-acetyl-alpha-neuraminyl-(2->6)-beta-D-galactosyl derivative + CMP + H(+)"],["RHEA%3A85983","a beta-D-galactoside + UDP-N-acetyl-alpha-D-glucosamine = an N-acetyl-alpha-D-glucosaminyl-(1->4)-beta-D-galactosyl derivative + UDP + H(+)"]],"b":[["antifungal/kaempferol-3-o-%CE%B2-d-galactoside.html","kaempferol 3-O-β-D-galactoside"],["antiviral/acacetin-7-o-%CE%B2-d-galactopyranoside.html","acacetin-7-O-β-D-galactopyranoside"]]},{"id":"CHEBI:35748","l":"","na":2,"nb":5,"a":[["RHEA%3A59388","a fatty acid ester + H2O = an aliphatic alcohol + a fatty acid + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antiprotozoal/neurolenin-a.html","neurolenin A"],["antiprotozoal/neurolenin-b.html","neurolenin B"],["antiprotozoal/neurolenin-c.html","neurolenin C"],["antiprotozoal/neurolenin-d.html","neurolenin D"],["antiviral/interiotherin-b.html","interiotherin B"]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":2,"nb":5,"a":[["Pfam%3APF07833","Copper amine oxidase N-terminal domain"],["TED%3AAF-A0A447L715-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A447L715-F1-model_v4_TED02"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3000248","l":"DnaA","na":2,"nb":4,"a":[["ARO%3A3000248","DnaA"],["ARO%3A3004244","DnaA chromosomal replication initiation protein"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3000369","l":"MtrCDE","na":4,"nb":2,"a":[["ARO%3A3000816","mtrA"],["ARO%3A3000369","MtrCDE"],["ARO%3A3000817","mtrR"],["ARO%3A3004851","Neisseria gonorrhoeae mtrR with mutation conferring resistance"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003581","l":"Acinetobacter mutant Lpx gene conferring resistance to colistin","na":4,"nb":2,"a":[["ARO%3A3003581","Acinetobacter mutant Lpx gene conferring resistance to colistin"],["ARO%3A3003573","LpxA"],["ARO%3A3003574","LpxC"],["ARO%3A3003575","LpxD"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004063","l":"EdeQ","na":2,"nb":4,"a":[["ARO%3A3004064","Edeine acetyltransferase"],["ARO%3A3004063","EdeQ"]],"b":[["antibacterial/edeine-a.html","edeine A"],["antibacterial/edeine-b.html","edeine B"],["antibacterial/edeine-d.html","edeine D"],["antibacterial/edeine-f.html","edeine F"]]},{"id":"ARO:3004287","l":"lipid A phosphatase","na":2,"nb":4,"a":[["ARO%3A3004287","lipid A phosphatase"],["ARO%3A3003920","pgpB"]],"b":[["antibacterial/polymyxin-b1.html","polymyxin B1"],["antibacterial/polymyxin-b2.html","polymyxin B2"],["antibacterial/polymyxin-b3.html","polymyxin B3"],["antibacterial/polymyxin-b4.html","polymyxin B4"]]},{"id":"CHEBI:12834","l":"","na":4,"nb":2,"a":[["EC%3A1.3.1.102","2-alkenal reductase (NADP(+))"],["EC%3A1.3.1.74","2-alkenal reductase [NAD(P)(+)]"],["RHEA%3A13733","an n-alkanal + NAD(+) = an alk-2-enal + NADH + H(+)"],["RHEA%3A13737","an n-alkanal + NADP(+) = an alk-2-enal + NADPH + H(+)"]],"b":[["antifungal/decanal.html","decanal"],["antimycobacterial/undecanal.html","undecanal"]]},{"id":"CHEBI:13601","l":"","na":4,"nb":2,"a":[["EC%3A1.3.1.22","3-oxo-5alpha-steroid 4-dehydrogenase (NADP(+))"],["EC%3A1.3.99.5","3-oxo-5alpha-steroid 4-dehydrogenase (acceptor)"],["RHEA%3A13805","a 3-oxo-5alpha-steroid + A = a 3-oxo-Delta(4)-steroid + AH2"],["RHEA%3A54384","a 3-oxo-5alpha-steroid + NADP(+) = a 3-oxo-Delta(4)-steroid + NADPH + H(+)"]],"b":[["antiviral/lucialdehyde-b.html","lucialdehyde B"],["antiviral/torvoside-h.html","torvoside H"]]},{"id":"CHEBI:140332","l":"","na":2,"nb":4,"a":[["EC%3A2.1.1.231","flavonoid 4'-O-methyltransferase"],["RHEA%3A31743","a 4'-hydroxyflavanone + S-adenosyl-L-methionine = a 4'-methoxyflavanone + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antifungal/chamaejasmenin-a.html","chamaejasmenin A"],["antifungal/chamaejasmenin-d.html","chamaejasmenin D"],["antifungal/isochamaejasmenin-b.html","isochamaejasmenin B"],["unspecified/erylatissin-c.html","erylatissin C"]]},{"id":"CHEBI:15904","l":"long-chain fatty acid","na":2,"nb":4,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/9z-12z-15z-octadeca-9-12-15-trien-6-ynoic-acid.html","(9Z,12Z,15Z)-octadeca-9,12,15-trien-6-ynoic acid"],["antifungal/10e-15z-9-12-13-trihydroxy-10-15-octadecadienoic-acid.html","(10E,15Z)-9,12,13-trihydroxy-10,15-octadecadienoic acid"],["antimycobacterial/scleropyric-acid.html","scleropyric acid"],["antiprotozoal/minquartynoic-acid.html","minquartynoic acid"]]},{"id":"CHEBI:35190","l":"","na":4,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.60","The Organo Anion Transporter (OAT) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antifungal/casbene.html","casbene"],["unspecified/neophytadiene.html","neophytadiene"]]},{"id":"CHEBI:35757","l":"","na":4,"nb":2,"a":[["EC%3A3.5.1.4","amidase"],["RHEA%3A12020","a monocarboxylic acid amide + H2O = a monocarboxylate + NH4(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["MCSA%3A726","peptide amidase"]],"b":[["antiviral/n-acetyl-l-cysteinate.html","N-acetyl-L-cysteinate"],["unspecified/nocardicin-e-2.html","nocardicin E(2−)"]]},{"id":"CHEBI:52267","l":"","na":2,"nb":4,"a":[["EC%3A2.4.1.237","flavonol 7-O-beta-glucosyltransferase"],["RHEA%3A23164","a 7-O-hydroxy-flavonol + UDP-alpha-D-glucose = a flavonol 7-O-beta-D-glucoside + UDP + H(+)"]],"b":[["antibacterial/kaempferol.html","kaempferol"],["antibacterial/morin.html","morin"],["antibacterial/quercetin.html","quercetin"],["unspecified/galangin.html","galangin"]]},{"id":"CHEBI:80291","l":"","na":4,"nb":2,"a":[["EC%3A3.5.5.7","aliphatic nitrilase"],["EC%3A4.2.1.84","nitrile hydratase"],["RHEA%3A46188","an aliphatic nitrile + 2 H2O = a carboxylate + NH4(+)"],["RHEA%3A12673","an aliphatic primary amide = an aliphatic nitrile + H2O"]],"b":[["antifungal/acrylonitrile.html","acrylonitrile"],["antifungal/borrelidin.html","borrelidin"]]},{"id":"NCBITaxon:318829","l":"Magnaporthe oryzae","na":2,"nb":4,"a":[["TED%3AAF-A0A4P7NAU2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P7NAU2-F1-model_v4_TED01"],["TED%3AAF-A0A4P7MZB7-F1-model_v4_TED02","TED novel fold AF-A0A4P7MZB7-F1-model_v4_TED02"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/carboxin.html","carboxin"],["antifungal/carpropamid.html","carpropamid"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:746128","l":"Aspergillus fumigatus","na":2,"nb":4,"a":[["Pfam%3APF07335","Fungal chitosanase of glycosyl hydrolase group 75"],["Pfam%3APF12296","Hydrophobic surface binding protein A"]],"b":[["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/terbinafine.html","terbinafine"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"ARO:3000770","l":"AdeABC","na":3,"nb":2,"a":[["ARO%3A3000770","AdeABC"],["ARO%3A3000553","adeR"],["ARO%3A3000549","adeS"]],"b":[["antibacterial/tetracycline.html","tetracycline"],["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:3000773","l":"CmeABC","na":2,"nb":3,"a":[["ARO%3A3000773","CmeABC"],["ARO%3A3000526","cmeR"]],"b":[["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3000799","l":"MexGHI-OpmD","na":2,"nb":3,"a":[["ARO%3A3000806","MexG"],["ARO%3A3000799","MexGHI-OpmD"]],"b":[["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/tetracycline.html","tetracycline"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3002986","l":"bacA","na":2,"nb":3,"a":[["ARO%3A3002986","bacA"],["ARO%3A3003250","bcrC"]],"b":[["antibacterial/bacitracin-a.html","bacitracin A"],["antibacterial/bacitracin-b.html","bacitracin B"],["antibacterial/bacitracin-f.html","bacitracin F"]]},{"id":"ARO:3003250","l":"bcrC","na":2,"nb":3,"a":[["ARO%3A3002986","bacA"],["ARO%3A3003250","bcrC"]],"b":[["antibacterial/bacitracin-a.html","bacitracin A"],["antibacterial/bacitracin-b.html","bacitracin B"],["antibacterial/bacitracin-f.html","bacitracin F"]]},{"id":"ARO:3003963","l":"flo","na":3,"nb":2,"a":[["ARO%3A3003963","flo"],["ARO%3A3002705","floR"],["ARO%3A3002812","pp-flo"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"]]},{"id":"CHEBI:142621","l":"","na":3,"nb":2,"a":[["RHEA%3A69763","a medium-chain fatty aldehyde + NAD(+) + H2O = a medium-chain fatty acid + NADH + 2 H(+)"],["RHEA%3A80815","a medium-chain fatty aldehyde + NADP(+) + H2O = a medium-chain fatty acid + NADPH + 2 H(+)"],["RHEA%3A58364","a medium-chain primary fatty alcohol + NADP(+) = a medium-chain fatty aldehyde + NADPH + H(+)"]],"b":[["antifungal/decanal.html","decanal"],["antimycobacterial/undecanal.html","undecanal"]]},{"id":"CHEBI:17012","l":"N-acetylneuraminic acid","na":2,"nb":3,"a":[["MCSA%3A835","exo-alpha-sialidase (GH33 Family)"],["MCSA%3A828","exo-alpha-sialidase (GH34 Family)"]],"b":[["antiviral/n-acetyl-%CE%B1-neuraminic-acid.html","N-acetyl-α-neuraminic acid"],["antiviral/n-acetyl-%CE%B2-neuraminic-acid.html","N-acetyl-β-neuraminic acid"],["antiviral/n-acetylneuraminic-acid.html","N-acetylneuraminic acid"]]},{"id":"CHEBI:83628","l":"","na":3,"nb":2,"a":[["EC%3A3.5.1.4","amidase"],["RHEA%3A12020","a monocarboxylic acid amide + H2O = a monocarboxylate + NH4(+)"],["MCSA%3A726","peptide amidase"]],"b":[["antifungal/2-chloroacetamide.html","2-chloroacetamide"],["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"NCBITaxon:332648","l":"Botrytis cinerea B05.10","na":3,"nb":2,"a":[["Pfam%3APF01670","Glycosyl hydrolase family 12"],["PROSITE%3APS00776","Glycosyl hydrolases family 11 (GH11) active site signature 1"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"]],"b":[["antifungal/fludioxonil.html","fludioxonil"],["antifungal/iprodione.html","iprodione"]]},{"id":"ARO:3003027","l":"lmrAB Operon","na":2,"nb":2,"a":[["ARO%3A3003028","lmrA"],["ARO%3A3003027","lmrAB Operon"]],"b":[["antibacterial/lincomycin.html","lincomycin"],["antibacterial/puromycin.html","puromycin"]]},{"id":"ARO:3004101","l":"MdtNOP","na":2,"nb":2,"a":[["ARO%3A3003843","leuO"],["ARO%3A3004101","MdtNOP"]],"b":[["antibacterial/puromycin.html","puromycin"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3004141","l":"AxyXY-OprZ","na":2,"nb":2,"a":[["ARO%3A3004141","AxyXY-OprZ"],["ARO%3A3004145","AxyZ"]],"b":[["antibacterial/cefepime.html","cefepime"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004919","l":"Mycobacterium tuberculosis eccC5 conferring resistance to fluoroquinolones","na":2,"nb":2,"a":[["ARO%3A3004918","Mycobacterium tuberculosis eccB5 conferring resistance to fluoroquinolones"],["ARO%3A3004919","Mycobacterium tuberculosis eccC5 conferring resistance to fluoroquinolones"]],"b":[["antibacterial/moxifloxacin.html","moxifloxacin"],["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3004995","l":"rifampicin resistant rpoC","na":2,"nb":2,"a":[["ARO%3A3004994","Mycobacterium tuberculosis rpoC mutations confer resistance to rifampicin"],["ARO%3A3004995","rifampicin resistant rpoC"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3007161","l":"","na":2,"nb":2,"a":[["ARO%3A3005178","Mycobacterium tuberculosis ethA mutations conferring resistance to perchlozone"],["ARO%3A3005205","perchlozone resistant ethA"]],"b":[["antibacterial/perchlozone.html","perchlozone"],["antibacterial/thioacetazone.html","thioacetazone"]]},{"id":"CHEBI:133959","l":"","na":2,"nb":2,"a":[["EC%3A2.1.1.46","isoflavone 4'-O-methyltransferase"],["RHEA%3A31739","a 4'-hydroxyisoflavone + S-adenosyl-L-methionine = a 4'-methoxyisoflavone + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/licoricone.html","licoricone"],["unspecified/erylatissin-a.html","erylatissin A"]]},{"id":"CHEBI:140310","l":"","na":2,"nb":2,"a":[["EC%3A3.1.1.2","arylesterase"],["RHEA%3A17309","a phenyl acetate + H2O = a phenol + acetate + H(+)"]],"b":[["antibacterial/resorcinol-monoacetate.html","resorcinol monoacetate"],["antifungal/ncx-4040.html","NCX-4040"]]},{"id":"CHEBI:17354","l":"","na":2,"nb":2,"a":[["EC%3A5.1.99.2","16-hydroxysteroid epimerase"],["RHEA%3A15829","a 16alpha-hydroxysteroid = a 16beta-hydroxysteroid"]],"b":[["antifungal/9%CE%BE-14%CE%BE-25s-cholestane-3%CE%B2-4%CE%B2-6%CE%B2-7%CE%B1-8-15%CE%B1-16%CE%B2-26-octol.html","(9ξ,14ξ,25S)-cholestane-3β,4β,6β,7α,8,15α,16β,26-octol"],["antiviral/clathsterol-disulfonic-acid.html","clathsterol disulfonic acid"]]},{"id":"CHEBI:28163","l":"","na":2,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/albomycin-%CE%B42.html","albomycin δ2"],["antibacterial/albomycin-%CE%B5.html","albomycin ε"]]},{"id":"CHEBI:4986","l":"","na":2,"nb":2,"a":[["EC%3A2.1.1.15","fatty-acid O-methyltransferase"],["RHEA%3A23012","a fatty acid + S-adenosyl-L-methionine = a fatty acid methyl ester + S-adenosyl-L-homocysteine"]],"b":[["antibacterial/methyl-%CE%B3-linolenate.html","methyl γ-linolenate"],["antifungal/methyl-nonanoate.html","methyl nonanoate"]]},{"id":"CHEBI:64627","l":"","na":2,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.A.18","The Peptide Uptake Permease (PUP) Family"]],"b":[["unspecified/microcin-b17.html","microcin B17"],["unspecified/microcin-c.html","microcin c"]]},{"id":"CHEBI:86315","l":"","na":2,"nb":2,"a":[["EC%3A2.1.1.9","thiol S-methyltransferase"],["RHEA%3A18277","a thiol + S-adenosyl-L-methionine = a methyl thioether + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antifungal/maremycin-g.html","maremycin G"],["antifungal/neticonazole.html","neticonazole"]]},{"id":"NCBITaxon:5482","l":"Candida tropicalis","na":2,"nb":2,"a":[["Pfam%3APF05203","Hom_end-associated Hint"],["Pfam%3APF05204","Homing endonuclease"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"CHEBI:33281","l":"","na":1,"nb":910,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/1-carbapenem-3-carboxylic-acid.html","1-carbapenem-3-carboxylic acid"],["antibacterial/1%CE%B2-methylcarbapenem.html","1β-methylcarbapenem"],["antibacterial/3-6-9-trihydroxypterocarpan.html","3,6,9-trihydroxypterocarpan"],["antibacterial/3z-ravenic-acid.html","(3Z)-ravenic acid"],["antibacterial/5-chloro-7-iodoquinolin-8-ol.html","5-chloro-7-iodoquinolin-8-ol"],["antibacterial/5-o-mycaminosyltylonolide.html","5-O-mycaminosyltylonolide"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":680,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16240","requires hydrogen peroxide"],["EC%3A1.1.3.10","pyranose oxidase"],["EC%3A1.1.3.11","L-sorbose oxidase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.3.13","alcohol oxidase"],["EC%3A1.1.3.15","(S)-2-hydroxy-acid oxidase"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":297,"nb":1,"a":[["IDPO%3A0000002","disorder"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000045","phosphorylation display site"],["IDPO%3A0000059","self-inhibition"],["Pfam%3APF17837","4'-phosphopantetheinyl transferase N-terminal domain"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"ARO:3000014","l":"TEM beta-lactamase","na":251,"nb":1,"a":[["ARO%3A3000873","TEM-1"],["ARO%3A3000882","TEM-10"],["ARO%3A3001366","TEM-100"],["ARO%3A3000964","TEM-101"],["ARO%3A3000965","TEM-102"],["ARO%3A3000966","TEM-103"]],"b":[["antibacterial/ampicillin.html","ampicillin"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":212,"nb":1,"a":[["EC%3A1.1.1.244","methanol dehydrogenase"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.99.37","methanol dehydrogenase (nicotinoprotein)"],["EC%3A1.13.11.94","4-vinylguaiacol dioxygenase"],["EC%3A1.14.11.27","[histone H3]-dimethyl-L-lysine(36) demethylase"]],"b":[["biocide/formaldehyde.html","formaldehyde"]]},{"id":"ARO:3000017","l":"OXA beta-lactamase","na":158,"nb":1,"a":[["ARO%3A3007696","OXA-1-like beta-lactamase"],["ARO%3A3007697","OXA-10-like beta-lactamase"],["ARO%3A3008427","OXA-1006"],["ARO%3A3008432","OXA-1011"],["ARO%3A3001706","OXA-102"],["ARO%3A3008457","OXA-1036"]],"b":[["antibacterial/oxacillin.html","oxacillin"]]},{"id":"GO:0004146","l":"dihydrofolate reductase activity","na":125,"nb":1,"a":[["EC%3A1.5.1.3","dihydrofolate reductase"],["RHEA%3A15009","(6S)-5,6,7,8-tetrahydrofolate + NADP(+) = 7,8-dihydrofolate + NADPH + H(+)"],["GO%3A0004146","dihydrofolate reductase activity"],["NCBIfam%3ANF012208","bifunctional dihydropteridine reductase/dihydrofolate reductase TmpR"],["NCBIfam%3ANF000055","DfrA12/DfrA21 family trimethoprim-resistant dihydrofolate reductase"],["NCBIfam%3ANF000332","DfrD/DfrG/DfrK family trimethoprim-resistant dihydrofolate reductase"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"CHEBI:25384","l":"","na":1,"nb":79,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/3-4-secoisopimara-4-18-7-15-triene-3-oic-acid.html","3,4-secoisopimara-4(18),7,15-triene-3-oic acid"],["antibacterial/3-phenylbutyric-acid.html","3-phenylbutyric acid"],["antibacterial/7-3-aminopyrrolidin-1-yl-1-2-4-difluorophenyl-6-fluoro-4-oxo-1-4-dihyd.html","7-(3-aminopyrrolidin-1-yl)-1-(2,4-difluorophenyl)-6-fluoro-4-oxo-1,4-dihydro-1,8-naphthyridine-3-carboxylic"],["antibacterial/chuangxinmycin.html","(−)-chuangxinmycin"],["antibacterial/cremeomycin.html","cremeomycin"],["antibacterial/decatromicin-a.html","decatromicin A"]]},{"id":"ARO:3001218","l":"trimethoprim resistant dihydrofolate reductase dfr","na":60,"nb":1,"a":[["ARO%3A3005354","dfr22"],["ARO%3A3002854","dfrA1"],["ARO%3A3003011","dfrA10"],["ARO%3A3002858","dfrA12"],["ARO%3A3003012","dfrA13"],["ARO%3A3002859","dfrA14"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"CHEBI:25105","l":"","na":1,"nb":58,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antibacterial/5-o-mycaminosyltylonolide.html","5-O-mycaminosyltylonolide"],["antibacterial/aplasmomycin.html","(+)-aplasmomycin"],["antibacterial/azithromycin.html","azithromycin"],["antibacterial/boromycin.html","boromycin"],["antibacterial/brefeldin-a.html","brefeldin A"],["antibacterial/cethromycin.html","cethromycin"]]},{"id":"NCBITaxon:227321","l":"Emericella nidulans (strain FGSC A4 / ATCC 38163 / CBS 112.46 / NRRL 194 / M139)","na":44,"nb":1,"a":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF05270","Alpha-L-arabinofuranosidase B (ABFB) domain"],["Pfam%3APF07792","Docking domain of Afi1 for Arf3 in vesicle trafficking"],["Pfam%3APF09206","Alpha-L-arabinofuranosidase B, catalytic"],["Pfam%3APF27751","ATEG_07667 C-terminal domain"],["Pfam%3APF20238","Copper acquisition factor BIM1-like"]],"b":[["antifungal/thiabendazole.html","thiabendazole"]]},{"id":"ARO:3007152","l":"","na":40,"nb":1,"a":[["ARO%3A3004270","antibiotic resistant fabI"],["ARO%3A3003462","antibiotic resistant kasA"],["ARO%3A3003460","antibiotic resistant ndh"],["ARO%3A3004045","Escherichia coli fabI mutations conferring resistance to isoniazid and triclosan"],["ARO%3A3004894","Isoniazid resistant ahpC"],["ARO%3A3005103","isoniazid resistant ethA"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"NCBITaxon:367110","l":"Neurospora crassa (strain ATCC 24698 / 74-OR23-1A / CBS 708.71 / DSM 1257 / FGSC 987)","na":40,"nb":1,"a":[["Pfam%3APF08509","Adenylate cyclase G-alpha binding domain"],["Pfam%3APF25026","Asd-4-like domain"],["Pfam%3APF21334","Fungal epsilon subunit of F1F0-ATP synthase C-terminal domain"],["Pfam%3APF20238","Copper acquisition factor BIM1-like"],["Pfam%3APF21492","Ribosomal protein L31p, N-terminal"],["Pfam%3APF00734","Fungal cellulose binding domain"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"CHEBI:17855","l":"triglyceride","na":34,"nb":1,"a":[["EC%3A2.3.1.158","phospholipid:diacylglycerol acyltransferase"],["EC%3A2.3.1.77","triacylglycerol--sterol O-acyltransferase"],["EC%3A3.1.1.3","triacylglycerol lipase"],["EC%3A3.1.1.34","lipoprotein lipase"],["EC%3A3.1.1.79","hormone-sensitive lipase"],["RHEA%3A77987","9-hydroxy-octadecanoate + a triacylglycerol = 9-(acyloxy)-octadecanoate + a 1,3-diacylglycerol"]],"b":[["antifungal/triacetin.html","triacetin"]]},{"id":"CHEBI:35358","l":"","na":1,"nb":33,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/prontosil.html","prontosil"],["antibacterial/sulfabenzamide.html","sulfabenzamide"],["antibacterial/sulfabromomethazine.html","sulfabromomethazine"],["antibacterial/sulfachloropyridazine.html","sulfachloropyridazine"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfaethoxypyridazine.html","sulfaethoxypyridazine"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":32,"nb":1,"a":[["Pfam%3APF25848","Rodlin protein"],["Pfam%3APF13420","Acetyltransferase (GNAT) domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF26381","BREX System ATPase PglY protein 5th domain"],["Pfam%3APF26382","BREX System ATPase PglY protein 6th domain"]],"b":[["antibacterial/nocardamine.html","nocardamine"]]},{"id":"ARO:3007155","l":"","na":31,"nb":1,"a":[["ARO%3A3005002","antibiotic resistant polyketide synthase genes"],["ARO%3A3004972","antibiotic resistant ppsA"],["ARO%3A3004883","antibiotic resistant ppsC"],["ARO%3A3004885","antibiotic resistant ppsD"],["ARO%3A3007184","multidrug resistant Rv1258c"],["ARO%3A3004957","Mycobacterium tuberculosis clpC1 with mutation conferring resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"CHEBI:15882","l":"phenol","na":31,"nb":1,"a":[["EC%3A1.14.13.244","phenol 2-monooxygenase (NADH)"],["EC%3A1.14.13.7","phenol 2-monooxygenase (NADPH)"],["EC%3A1.14.14.20","phenol 2-monooxygenase (FADH2)"],["EC%3A2.1.1.25","phenol O-methyltransferase"],["EC%3A2.4.2.55","nicotinate D-ribonucleotide:phenol phospho-D-ribosyltransferase"],["EC%3A2.7.1.238","phenol phosphorylase"]],"b":[["biocide/phenol.html","phenol"]]},{"id":"CHEBI:16236","l":"ethanol","na":31,"nb":1,"a":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.5.5","alcohol dehydrogenase (quinone)"],["EC%3A1.1.99.36","alcohol dehydrogenase (nicotinoprotein)"],["EC%3A2.3.1.268","ethanol O-acetyltransferase"],["EC%3A3.1.1.113","ethyl acetate hydrolase"],["EC%3A3.1.1.67","fatty-acyl-ethyl-ester synthase"]],"b":[["biocide/ethanol.html","ethanol"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae (strain ATCC 42149 / RIB 40)","na":27,"nb":1,"a":[["Pfam%3APF09260","Alpha-amylase, domain C"],["Pfam%3APF28338","AclK C-terminal domain"],["Pfam%3APF09206","Alpha-L-arabinofuranosidase B, catalytic"],["Pfam%3APF28380","Sesquiterpene cyclase astC-like C-terminal domain"],["Pfam%3APF13364","Beta-galactosidase second all-beta domain"],["Pfam%3APF10435","Beta-galactosidase, domain 2"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"ARO:3000527","l":"","na":25,"nb":1,"a":[["ARO%3A3003668","16s rRNA with mutation conferring resistance to polyamine antibiotics"],["ARO%3A3004064","Edeine acetyltransferase"],["ARO%3A3004063","EdeQ"],["ARO%3A3002876","ethambutol resistant aftA"],["ARO%3A3003452","ethambutol resistant embA"],["ARO%3A3000235","ethambutol resistant embB"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003292","l":"fluoroquinolone resistant gyrA","na":25,"nb":1,"a":[["ARO%3A3003817","Acinetobacter baumannii gyrA conferring resistance to fluoroquinolones"],["ARO%3A3003297","Bartonella bacilliformis gyrA conferring resistance to fluoroquinolones"],["ARO%3A3004860","Burkholderia dolosa gyrA conferring resistance to fluoroquinolones"],["ARO%3A3003789","Campylobacter jejuni gyrA conferring resistance to fluoroquinolones"],["ARO%3A3003931","Capnocytophaga gingivalis gyrA conferring resistance to fluoroquinolones"],["ARO%3A3003995","Clostridioides difficile gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/nybomycin.html","nybomycin"]]},{"id":"CHEBI:64683","l":"","na":25,"nb":1,"a":[["EC%3A2.3.1.73","diacylglycerol--sterol O-acyltransferase"],["EC%3A3.1.3.106","2-lysophosphatidate phosphatase"],["RHEA%3A39851","2 a 1-acyl-sn-glycerol = glycerol + a 1,2-diacyl-sn-glycerol"],["RHEA%3A77991","9-hydroxy-octadecanoate + a 1,2-diacyl-sn-glycerol = 9-(acyloxy)-octadecanoate + a 1-acyl-sn-glycerol"],["RHEA%3A35663","a 1,2-diacyl-sn-glycerol + H2O = a 1-acyl-sn-glycerol + a fatty acid + H(+)"],["RHEA%3A39859","a 1,3-diacyl-sn-glycerol + a 1-acyl-sn-glycerol = a triacyl-sn-glycerol + glycerol"]],"b":[["antiviral/1-linoleoyl-sn-glycerol.html","1-linoleoyl-sn-glycerol"]]},{"id":"ARO:3000250","l":"ErmC","na":1,"nb":24,"a":[["ARO%3A3000250","ErmC"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000326","l":"ErmE","na":1,"nb":24,"a":[["ARO%3A3000326","ErmE"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000347","l":"ErmA","na":1,"nb":24,"a":[["ARO%3A3000347","ErmA"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000375","l":"ErmB","na":1,"nb":24,"a":[["ARO%3A3000375","ErmB"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000392","l":"Erm(37)","na":1,"nb":24,"a":[["ARO%3A3000392","Erm(37)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000495","l":"ErmD","na":1,"nb":24,"a":[["ARO%3A3000495","ErmD"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000498","l":"ErmF","na":1,"nb":24,"a":[["ARO%3A3000498","ErmF"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000522","l":"ErmG","na":1,"nb":24,"a":[["ARO%3A3000522","ErmG"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000592","l":"ErmN","na":1,"nb":24,"a":[["ARO%3A3000592","ErmN"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000593","l":"ErmQ","na":1,"nb":24,"a":[["ARO%3A3000593","ErmQ"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000594","l":"ErmR","na":1,"nb":24,"a":[["ARO%3A3000594","ErmR"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000595","l":"ErmT","na":1,"nb":24,"a":[["ARO%3A3000595","ErmT"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000596","l":"ErmX","na":1,"nb":24,"a":[["ARO%3A3000596","ErmX"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000599","l":"Erm(33)","na":1,"nb":24,"a":[["ARO%3A3000599","Erm(33)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000600","l":"Erm(34)","na":1,"nb":24,"a":[["ARO%3A3000600","Erm(34)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000601","l":"Erm(38)","na":1,"nb":24,"a":[["ARO%3A3000601","Erm(38)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000602","l":"Erm(39)","na":1,"nb":24,"a":[["ARO%3A3000602","Erm(39)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000603","l":"Erm(41)","na":1,"nb":24,"a":[["ARO%3A3000603","Erm(41)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000604","l":"Erm(35)","na":1,"nb":24,"a":[["ARO%3A3000604","Erm(35)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000605","l":"Erm(36)","na":1,"nb":24,"a":[["ARO%3A3000605","Erm(36)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"CHEBI:62733","l":"","na":1,"nb":24,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_62733","requires methanophenazine"]],"b":[["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/platencin.html","platencin"],["antibacterial/platensimycin.html","platensimycin"],["antifungal/benomyl.html","benomyl"],["antifungal/bixafen.html","bixafen"],["antifungal/fenhexamid.html","fenhexamid"]]},{"id":"CHEBI:140324","l":"","na":1,"nb":23,"a":[["RHEA%3A85699","an amide = a nitrile + H2O"]],"b":[["antibacterial/cefsulodin.html","cefsulodin"],["antibacterial/cellocidin.html","cellocidin"],["antibacterial/durlobactam.html","durlobactam"],["antibacterial/methacycline.html","methacycline"],["antibacterial/pantocin-a.html","pantocin A"],["antibacterial/promysalin.html","promysalin"]]},{"id":"CHEBI:26658","l":"","na":1,"nb":23,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antibacterial/laurinterol.html","laurinterol"],["antibacterial/suaveolindole.html","suaveolindole"],["antifungal/albicanol.html","(+)-albicanol"],["antifungal/ascochlorin.html","ascochlorin"],["antifungal/caf-603.html","CAF-603"],["antifungal/cj-01.html","CJ-01"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":23,"nb":1,"a":[["Pfam%3APF09255","Caf1 Capsule antigen"],["Pfam%3APF02611","CDP-diacylglycerol pyrophosphatase"],["Pfam%3APF07411","Domain of unknown function (DUF1508)"],["Pfam%3APF05171","Haemin-degrading HemS.ChuX domain"],["Pfam%3APF21500","DNA polymerase III subunit delta', AAA+ ATPase lid domain"],["Pfam%3APF11004","3-deoxy-D-manno-oct-2-ulosonic acid (Kdo) hydroxylase"]],"b":[["unspecified/%CE%B1-mangostin.html","α-mangostin"]]},{"id":"CHEBI:48132","l":"","na":1,"nb":22,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/minocycline.html","minocycline"],["antibacterial/tetracenomycin-a2.html","tetracenomycin A2"],["antibacterial/tetracenomycin-c.html","tetracenomycin C"],["antibacterial/tetracenomycin-x.html","tetracenomycin X"],["unspecified/8-demethyl-8-2-3-o-dimethyl-%CE%B1-l-rhamnosyl-tetracenomycin-c.html","8-demethyl-8-(2,3-O-dimethyl-α-L-rhamnosyl)tetracenomycin C"],["unspecified/8-demethyl-8-2-o-methyl-%CE%B1-l-rhamnosyl-tetracenomycin-c.html","8-demethyl-8-(2-O-methyl-α-L-rhamnosyl)tetracenomycin C"]]},{"id":"NCBITaxon:284593","l":"Candida glabrata (strain ATCC 2001 / BCRC 20586 / JCM 3761 / NBRC 0622 / NRRL Y-65 / CBS 138)","na":22,"nb":1,"a":[["Pfam%3APF08647","BRE1 E3 ubiquitin ligase"],["Pfam%3APF00649","Copper fist DNA binding domain"],["Pfam%3APF18499","Ubc7p-binding region of Cue1"],["Pfam%3APF18535","Gal11 activator-binding domain (ABD1)"],["Pfam%3APF05390","Yeast cell wall synthesis protein KRE9/KNH1 C-terminal"],["Pfam%3APF09451","Autophagy-related protein 27"]],"b":[["antifungal/fluconazole.html","fluconazole"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":21,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29108","requires calcium(2+)"],["EC%3A1.13.12.24","calcium-regulated photoprotein"],["EC%3A7.2.2.10","P-type Ca(2+) transporter"],["RHEA%3A72631","3 Li(+)(out) + Ca(2+)(in) = 3 Li(+)(in) + Ca(2+)(out)"],["RHEA%3A55884","[aequorin] + 3 Ca(2+) = [aequorin]--dioxetanone"],["RHEA%3A55888","[aequorin]--dioxetanone = excited state-[aequorin] + CO2"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"CHEBI:16016","l":"dihydroxyacetone","na":20,"nb":1,"a":[["EC%3A1.1.1.156","glycerol 2-dehydrogenase (NADP(+))"],["EC%3A1.1.1.6","glycerol dehydrogenase"],["EC%3A1.1.99.22","glycerol dehydrogenase (acceptor)"],["EC%3A2.2.1.3","formaldehyde transketolase"],["EC%3A2.7.1.121","phosphoenolpyruvate--glycerone phosphotransferase"],["EC%3A2.7.1.29","glycerone kinase"]],"b":[["antifungal/dihydroxyacetone.html","dihydroxyacetone"]]},{"id":"CHEBI:24400","l":"","na":1,"nb":17,"a":[["TCDB%3A3.A.3","The P-type ATPase (P-ATPase) Superfamily"]],"b":[["antibacterial/acteoside.html","acteoside"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/fidaxomicin.html","fidaxomicin"],["antibacterial/jadomycin-b.html","jadomycin B"],["antibacterial/josamycin.html","josamycin"],["antibacterial/polyketomycin.html","polyketomycin"]]},{"id":"CHEBI:16247","l":"","na":16,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.A.79","The Autophagosomal Phospholipid Transmembrane Translocase (Atg9) Family"],["TCDB%3A9.A.36","The Ca2+-dependent Phospholipid Scramblase (Scramblase) Family"],["TCDB%3A1.A.17","The Calcium-dependent Chloride Channel (Ca-ClC) Family"],["TCDB%3A9.B.27","The Death Effector Domain A (DedA) Family"],["TCDB%3A8.A.97","The EPG-3/VMP1 (EPG/VPM) Scramblase Family"]],"b":[["antifungal/miltefosine.html","miltefosine"]]},{"id":"CHEBI:16933","l":"","na":16,"nb":1,"a":[["EC%3A1.3.1.71","Delta(24(24(1)))-sterol reductase"],["EC%3A2.3.2.37","ergosteryl-3beta-O-L-aspartate synthase"],["EC%3A3.1.1.121","ergosteryl-3beta-O-L-aspartate hydrolase"],["EC%3A4.2.1.62","5alpha-hydroxysteroid dehydratase"],["RHEA%3A76559","1-(ergostan-3beta-yl)-L-aspartate + H2O = ergosterol + L-aspartate + H(+)"],["RHEA%3A22064","5alpha-ergosta-7,22-diene-3beta,5-diol = ergosterol + H2O"]],"b":[["antifungal/natamycin.html","natamycin"]]},{"id":"NCBITaxon:498257","l":"Verticillium dahliae (strain VdLs.17 / ATCC MYA-4575 / FGSC 10137)","na":16,"nb":1,"a":[["Pfam%3APF11787","Aft1 HRR domain"],["Pfam%3APF16541","Alternaria alternata allergen 1"],["Pfam%3APF09792","Ubiquitin 3 binding protein But2 C-terminal domain"],["Pfam%3APF28223","CAP22"],["Pfam%3APF05730","CFEM domain"],["Pfam%3APF27979","CON7 transcription factor helical domain"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":16,"nb":1,"a":[["Pfam%3APF05932","Tir chaperone protein (CesT) family"],["Pfam%3APF17656","FlgA N-terminal domain"],["Pfam%3APF22200","ExsA N-terminal regulatory domain"],["Pfam%3APF05171","Haemin-degrading HemS.ChuX domain"],["Pfam%3APF07201","HrpJ-like domain"],["Pfam%3APF04391","Protein of unknown function (DUF533)"]],"b":[["unspecified/chir-090.html","CHIR-090"]]},{"id":"CHEBI:16619","l":"(2-trans,6-trans)-farnesol","na":14,"nb":1,"a":[["EC%3A1.1.1.216","farnesol dehydrogenase"],["EC%3A1.1.1.354","farnesol dehydrogenase (NAD(+))"],["EC%3A2.7.1.216","farnesol kinase"],["EC%3A3.1.7.6","farnesyl diphosphatase"],["EC%3A5.2.1.9","farnesol 2-isomerase"],["RHEA%3A13401","(2E,6E)-farnesol = (2Z,6E)-farnesol"]],"b":[["unspecified/2-trans-6-trans-farnesol.html","(2-trans,6-trans)-farnesol"]]},{"id":"CHEBI:60783","l":"","na":1,"nb":14,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antibacterial/oxetanocin-a.html","oxetanocin A"],["antifungal/flucytosine.html","flucytosine"],["antifungal/jawsamycin.html","jawsamycin"],["antiviral/6-azathymidine.html","6-azathymidine"],["antiviral/emtricitabine.html","emtricitabine"],["antiviral/favipiravir-rtp.html","favipiravir-RTP"]]},{"id":"ARO:3003294","l":"Escherichia coli gyrA conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003294","Escherichia coli gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003295","l":"Mycobacterium tuberculosis gyrA conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003295","Mycobacterium tuberculosis gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003296","l":"Staphylococcus aureus gyrA conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003296","Staphylococcus aureus gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003297","l":"Bartonella bacilliformis gyrA conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003297","Bartonella bacilliformis gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003298","l":"Mycobacterium leprae gyrA conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003298","Mycobacterium leprae gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003304","l":"Mycobacterium leprae gyrB conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003304","Mycobacterium leprae gyrB conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003305","l":"Ureaplasma urealyticum gyrB conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003305","Ureaplasma urealyticum gyrB conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003306","l":"Morganella morganii gyrB conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003306","Morganella morganii gyrB conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003307","l":"Salmonella serovars gyrB conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003307","Salmonella serovars gyrB conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003308","l":"Escherichia coli parC conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003308","Escherichia coli parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003309","l":"Ureaplasma urealyticum parC conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003309","Ureaplasma urealyticum parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003310","l":"Mycoplasma hominis parC conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003310","Mycoplasma hominis parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003311","l":"Streptococcus pneumoniae parC conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003311","Streptococcus pneumoniae parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003312","l":"Staphylococcus aureus parC conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003312","Staphylococcus aureus parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003315","l":"Staphylococcus aureus parE conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003315","Staphylococcus aureus parE conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003316","l":"Escherichia coli parE conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003316","Escherichia coli parE conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003317","l":"Salmonella serovars parE conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003317","Salmonella serovars parE conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003817","l":"Acinetobacter baumannii gyrA conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003817","Acinetobacter baumannii gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003818","l":"Acinetobacter baumannii parC conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003818","Acinetobacter baumannii parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":13,"nb":1,"a":[["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF03173","Putative carbohydrate binding domain"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"],["Pfam%3APF06438","Heme-binding protein A (HasA)"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF05247","Flagellar transcriptional activator (FlhD)"]],"b":[["antibacterial/althiomycin.html","althiomycin"]]},{"id":"ARO:3003459","l":"Mycobacterium tuberculosis gyrB mutant conferring resistance to fluoroquinolones","na":1,"nb":12,"a":[["ARO%3A3003459","Mycobacterium tuberculosis gyrB mutant conferring resistance to fluoroquinolones"]],"b":[["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"CHEBI:16188","l":"octan-1-ol","na":12,"nb":1,"a":[["EC%3A1.1.1.73","octanol dehydrogenase"],["EC%3A1.14.15.3","alkane 1-monooxygenase"],["RHEA%3A79323","octan-1-ol + 2 Fe(III)-[cytochrome c] = octanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A64628","octan-1-ol + acetyl-CoA = octyl acetate + CoA"],["RHEA%3A64852","octan-1-ol + benzoyl-CoA = octyl benzoate + CoA"],["RHEA%3A44064","octan-1-ol + hexadecanoyl-CoA = octyl hexadecanoate + CoA"]],"b":[["antifungal/octan-1-ol.html","octan-1-ol"]]},{"id":"CHEBI:22479","l":"","na":1,"nb":12,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/astromicin.html","astromicin"],["antibacterial/etimicin.html","etimicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"CHEBI:28077","l":"rifampicin","na":12,"nb":1,"a":[["ARO%3A3007073","Bacillus subtilis rpoB mutants conferring resistance to rifampin"],["ARO%3A3004480","Bifidobacterium adolescentis rpoB mutants conferring resistance to rifampicin"],["ARO%3A3004563","Clostridioides difficile rpoB with mutation conferring resistance to rifampicin"],["ARO%3A3003288","Escherichia coli rpoB mutants conferring resistance to rifampicin"],["ARO%3A3007051","Helicobacter pylori rpoB mutation conferring resistance to rifampicin"],["ARO%3A3003284","Mycobacterium leprae rpoB mutations conferring resistance to rifampicin"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3000858","l":"armA","na":1,"nb":11,"a":[["ARO%3A3000858","armA"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/g418.html","G418"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3000859","l":"rmtA","na":1,"nb":11,"a":[["ARO%3A3000859","rmtA"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/g418.html","G418"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3000860","l":"rmtB","na":1,"nb":11,"a":[["ARO%3A3000860","rmtB"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/g418.html","G418"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3000861","l":"rmtC","na":1,"nb":11,"a":[["ARO%3A3000861","rmtC"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/g418.html","G418"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3000862","l":"sgm","na":1,"nb":11,"a":[["ARO%3A3000862","sgm"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/g418.html","G418"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3007153","l":"","na":11,"nb":1,"a":[["ARO%3A3003734","antibiotic resistant fusA"],["ARO%3A3003736","antibiotic resistant fusE"],["ARO%3A3003552","fusB"],["ARO%3A3003733","fusC"],["ARO%3A3003731","fusD"],["ARO%3A3004663","FusF"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"CHEBI:17847","l":"p-cresol","na":11,"nb":1,"a":[["EC%3A1.14.13.236","toluene 4-monooxygenase"],["EC%3A1.17.9.1","4-methylphenol dehydrogenase (hydroxylating)"],["EC%3A4.1.1.83","4-hydroxyphenylacetate decarboxylase"],["EC%3A4.1.99.19","2-iminoacetate synthase"],["RHEA%3A22732","4-hydroxyphenylacetate + H(+) = 4-methylphenol + CO2"],["RHEA%3A56976","4-methylphenol + 2 oxidized [azurin] + H2O = 4-hydroxybenzyl alcohol + 2 reduced [azurin] + 2 H(+)"]],"b":[["antifungal/p-cresol.html","p-cresol"]]},{"id":"CHEBI:24396","l":"","na":1,"nb":11,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/chloroeremomycin.html","chloroeremomycin"],["antibacterial/dalbavancin.html","dalbavancin"],["antibacterial/oritavancin.html","oritavancin"],["antibacterial/phleomycin-d1.html","phleomycin D1"],["antibacterial/ristocetin.html","ristocetin"],["antibacterial/telavancin.html","telavancin"]]},{"id":"CHEBI:24869","l":"ionophore","na":1,"nb":11,"a":[["TCDB%3A2.A.74","The 4 TMS Multidrug Endosomal Transporter (MET) Family"]],"b":[["antibacterial/cccp.html","CCCP"],["antibacterial/indanomycin.html","indanomycin"],["antifungal/beauvericin.html","beauvericin"],["antifungal/monensin-a.html","monensin A"],["antiprotozoal/lasalocid-sodium.html","lasalocid sodium"],["antiprotozoal/lasalocid.html","lasalocid"]]},{"id":"CHEBI:28591","l":"guaiacol","na":11,"nb":1,"a":[["EC%3A1.11.1.14","lignin peroxidase"],["EC%3A1.11.1.16","versatile peroxidase"],["RHEA%3A48004","1-(3,4-dimethoxyphenyl)-2-(2-methoxyphenoxy)propane-1,3-diol + H2O2 = 3,4-dimethoxybenzaldehyde + guaiacol + glycolaldehyde + H2O"],["RHEA%3A22396","1-(4-hydroxy-3-methoxyphenyl)-2-(2-methoxyphenoxy)propane-1,3-diol + H2O2 = guaiacol + vanillin + glycolaldehyde + H2O"],["RHEA%3A72243","catechol + S-adenosyl-L-methionine = guaiacol + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A72339","guaiacol + Co(I)-[methoxylated-aromatic-compound-specific corrinoid protein] + H(+) = methyl-Co(III)-[methoxylated-aromatic-compound-specific corrinoid protein] + catechol"]],"b":[["biocide/guaiacol.html","guaiacol"]]},{"id":"CHEBI:29256","l":"","na":11,"nb":1,"a":[["EC%3A1.8.3.7","formylglycine-generating enzyme"],["EC%3A2.1.1.9","thiol S-methyltransferase"],["EC%3A2.8.2.16","thiol sulfotransferase"],["EC%3A4.4.1.13","cysteine-S-conjugate beta-lyase"],["RHEA%3A82919","a thioester + H2O = a thiol + a carboxylate + H(+)"],["RHEA%3A14637","a thiol + 3'-phosphoadenylyl sulfate = S-alkyl thiosulfate + adenosine 3',5'-bisphosphate + H(+)"]],"b":[["antifungal/fusarithioamide-a.html","fusarithioamide A"]]},{"id":"CHEBI:46762","l":"(E,E,E)-geranylgeraniol","na":11,"nb":1,"a":[["EC%3A1.14.14.146","geranylgeraniol 18-hydroxylase"],["EC%3A3.1.7.5","geranylgeranyl diphosphate diphosphatase"],["RHEA%3A46108","(2E,6E,10E)-geranylgeraniol + 2 NADPH + 2 O2 + H(+) = (2E,6E,10E)-geranylgeranate + 2 NADP(+) + 3 H2O"],["RHEA%3A61664","(2E,6E,10E)-geranylgeraniol + ATP = (2E,6E,10E)-geranylgeranyl phosphate + ADP + H(+)"],["RHEA%3A63456","(2E,6E,10E)-geranylgeraniol + CTP = (2E,6E,10E)-geranylgeranyl phosphate + CDP + H(+)"],["RHEA%3A63460","(2E,6E,10E)-geranylgeraniol + GTP = (2E,6E,10E)-geranylgeranyl phosphate + GDP + H(+)"]],"b":[["antiprotozoal/e-e-e-geranylgeraniol.html","(E,E,E)-geranylgeraniol"]]},{"id":"CHEBI:50744","l":"","na":11,"nb":1,"a":[["TCDB%3A2.A.24","The 2-Hydroxycarboxylate Transporter (2-HCT) Family"],["TCDB%3A1.A.46","The Anion Channel-forming Bestrophin (Bestrophin) Family"],["TCDB%3A2.A.45","The Arsenite-Antimonite (ArsB) Efflux Family"],["TCDB%3A2.A.11","The Citrate-Mg2+:H+ (CitM) Citrate-Ca2+:H+ (CitH) Symporter (CitMHS) Family"],["TCDB%3A2.A.47","The Divalent Anion:Na+ Symporter (DASS) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antiviral/tamoxifen-citrate.html","tamoxifen citrate"]]},{"id":"NCBITaxon:341663","l":"","na":11,"nb":1,"a":[["Pfam%3APF27751","ATEG_07667 C-terminal domain"],["Pfam%3APF28386","BfoA family C-terminal domain"],["Pfam%3APF03879","Cgr1 family"],["Pfam%3APF22621","CurL-like, PKS C-terminal"],["Pfam%3APF18558","Methyltransferase, Helix-turn-helix domain"],["Pfam%3APF06355","Aegerolysin"]],"b":[["antiviral/aspulvinone-e.html","aspulvinone E"]]},{"id":"ARO:3002814","l":"clbA","na":1,"nb":10,"a":[["ARO%3A3002814","clbA"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002815","l":"clbB","na":1,"nb":10,"a":[["ARO%3A3002815","clbB"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002816","l":"clbC","na":1,"nb":10,"a":[["ARO%3A3002816","clbC"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3003038","l":"MexXY-OprA","na":1,"nb":10,"a":[["ARO%3A3003038","MexXY-OprA"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/gentamicin-c.html","gentamicin C"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3003441","l":"cfrA","na":1,"nb":10,"a":[["ARO%3A3003441","cfrA"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3003578","l":"PmrF","na":10,"nb":1,"a":[["ARO%3A3002985","arnA"],["ARO%3A3005053","ArnT"],["ARO%3A3005063","cprR"],["ARO%3A3005065","cprRS"],["ARO%3A3005064","cprS"],["ARO%3A3005068","ParR"]],"b":[["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3003907","l":"cipA","na":1,"nb":10,"a":[["ARO%3A3003907","cipA"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3003966","l":"Klebsiella pneumoniae OmpK35","na":1,"nb":10,"a":[["ARO%3A3003966","Klebsiella pneumoniae OmpK35"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefamandole.html","cefamandole"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"ARO:3003969","l":"lmrP","na":1,"nb":10,"a":[["ARO%3A3003969","lmrP"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"CHEBI:16547","l":"coniferyl aldehyde","na":10,"nb":1,"a":[["EC%3A1.1.1.194","coniferyl-alcohol dehydrogenase"],["EC%3A1.1.1.195","cinnamyl-alcohol dehydrogenase"],["EC%3A1.2.1.44","cinnamoyl-CoA reductase"],["EC%3A1.2.1.68","coniferyl-aldehyde dehydrogenase"],["RHEA%3A23968","(E)-coniferaldehyde + NAD(+) + H2O = (E)-ferulate + NADH + 2 H(+)"],["RHEA%3A64648","(E)-coniferaldehyde + NADP(+) + CoA = (E)-feruloyl-CoA + NADPH + H(+)"]],"b":[["antifungal/coniferyl-aldehyde.html","coniferyl aldehyde"]]},{"id":"CHEBI:17698","l":"chloramphenicol","na":10,"nb":1,"a":[["EC%3A1.14.99.67","alpha-N-dichloroacetyl-p-aminophenylserinol N-oxygenase"],["EC%3A2.3.1.28","chloramphenicol O-acetyltransferase"],["RHEA%3A58884","alpha-N-dichloroacetyl-p-aminophenylserinol + AH2 + 2 O2 = chloramphenicol + A + 2 H2O"],["RHEA%3A18421","chloramphenicol + acetyl-CoA = chloramphenicol 3-acetate + CoA"],["RHEA%3A35287","chloramphenicol(in) + ATP + H2O = chloramphenicol(out) + ADP + phosphate + H(+)"],["RHEA%3A35059","chloramphenicol(in) + H(+)(out) = chloramphenicol(out) + H(+)(in)"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"CHEBI:48120","l":"","na":1,"nb":10,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["unspecified/13-deoxydaunorubicin.html","13-deoxydaunorubicin"],["unspecified/13-dihydrodaunorubicin.html","13-dihydrodaunorubicin"],["unspecified/4-epidoxorubicin.html","4'-epidoxorubicin"],["unspecified/aclacinomycin-a.html","aclacinomycin A"],["unspecified/aclacinomycin-n.html","aclacinomycin N"],["unspecified/aclacinomycin-s.html","aclacinomycin S"]]},{"id":"CHEBI:4885","l":"ethionamide","na":10,"nb":1,"a":[["RHEA%3A47616","ethionamide + NADPH + O2 + H(+) = ethionamide S-oxide + NADP(+) + H2O"],["ARO%3A3003456","antibiotic resistant ethA"],["ARO%3A3003457","ethionamide resistant ethA"],["ARO%3A3005103","isoniazid resistant ethA"],["ARO%3A3005105","Mycobacterium tuberculosis ethA mutations conferring resistance to isoniazid"],["ARO%3A3005178","Mycobacterium tuberculosis ethA mutations conferring resistance to perchlozone"]],"b":[["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"CHEBI:64760","l":"","na":10,"nb":1,"a":[["RHEA%3A44876","a 1,3-diacylglycerol + H2O = a 3-acyl-sn-glycerol + a fatty acid + H(+)"],["RHEA%3A44176","a 2,3-diacyl-sn-glycerol + H2O = a 3-acyl-sn-glycerol + a fatty acid + H(+)"],["RHEA%3A39659","a 3-acyl-sn-glycerol + a 1,2-diacyl-sn-glycero-3-phosphocholine = a 1,3-diacyl-sn-glycerol + a 1-acyl-sn-glycero-3-phosphocholine"],["RHEA%3A78035","a 3-acyl-sn-glycerol + a 1,2-diacyl-sn-glycero-3-phosphocholine = a 1,3-diacyl-sn-glycerol + a 2-acyl-sn-glycero-3-phosphocholine"],["RHEA%3A78131","a 3-acyl-sn-glycerol + a 1,2-diacyl-sn-glycero-3-phosphocholine = a 1,3-diacylglycerol + a 1-acyl-sn-glycero-3-phosphocholine"],["RHEA%3A78135","a 3-acyl-sn-glycerol + a 1,2-diacyl-sn-glycero-3-phosphocholine = a 1,3-diacylglycerol + a 2-acyl-sn-glycero-3-phosphocholine"]],"b":[["antiviral/3-linoleoyl-sn-glycerol.html","3-linoleoyl-sn-glycerol"]]},{"id":"CHEBI:78236","l":"N-acetyl-L-cysteinate","na":10,"nb":1,"a":[["EC%3A1.10.3.15","grixazone synthase"],["RHEA%3A41424","2 3-amino-4-hydroxybenzaldehyde + N-acetyl-L-cysteine + 2 O2 = grixazone A + formate + 3 H2O + H(+)"],["RHEA%3A41420","2 3-amino-4-hydroxybenzoate + N-acetyl-L-cysteine + 2 O2 + H(+) = grixazone B + CO2 + 4 H2O"],["RHEA%3A75515","N-acetyl-L-cysteine + H2O = L-cysteine + acetate"],["RHEA%3A74567","N-acetyl-L-cysteine(out) + L-glutamate(in) = N-acetyl-L-cysteine(in) + L-glutamate(out)"],["RHEA%3A76543","N-acetyl-S-(2-succino)-L-cysteine = N-acetyl-L-cysteine + fumarate"]],"b":[["antiviral/n-acetyl-l-cysteinate.html","N-acetyl-L-cysteinate"]]},{"id":"NCBITaxon:1496","l":"Clostridioides difficile","na":10,"nb":1,"a":[["Pfam%3APF18671","4-Hydroxyphenylacetate decarboxylase subunit gamma N-terminal"],["Pfam%3APF00302","Chloramphenicol acetyltransferase"],["Pfam%3APF18524","High potential iron-sulfur protein like"],["Pfam%3APF06050","2-hydroxyglutaryl-CoA dehydratase, D-component"],["PROSITE%3APS00100","Chloramphenicol acetyltransferase active site"],["Pfam%3APF01473","Putative cell wall binding repeat"]],"b":[["antibacterial/fidaxomicin.html","fidaxomicin"]]},{"id":"ARO:3000318","l":"mphB","na":1,"nb":9,"a":[["ARO%3A3000318","mphB"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/oleandomycin.html","oleandomycin"],["antibacterial/roxithromycin.html","roxithromycin"]]},{"id":"ARO:3000319","l":"mphC","na":1,"nb":9,"a":[["ARO%3A3000319","mphC"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/oleandomycin.html","oleandomycin"],["antibacterial/roxithromycin.html","roxithromycin"]]},{"id":"ARO:3000410","l":"sul1","na":1,"nb":9,"a":[["ARO%3A3000410","sul1"]],"b":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfacetamide.html","sulfacetamide"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfamethazine.html","sulfamethazine"],["antibacterial/sulfamethizole.html","sulfamethizole"],["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3000412","l":"sul2","na":1,"nb":9,"a":[["ARO%3A3000412","sul2"]],"b":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfacetamide.html","sulfacetamide"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfamethazine.html","sulfamethazine"],["antibacterial/sulfamethizole.html","sulfamethizole"],["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3000413","l":"sul3","na":1,"nb":9,"a":[["ARO%3A3000413","sul3"]],"b":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfacetamide.html","sulfacetamide"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfamethazine.html","sulfamethazine"],["antibacterial/sulfamethizole.html","sulfamethizole"],["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3001307","l":"vgbA","na":1,"nb":9,"a":[["ARO%3A3001307","vgbA"]],"b":[["antibacterial/ostreogrycin-b3.html","ostreogrycin B3"],["antibacterial/patricin-a.html","patricin A"],["antibacterial/patricin-b.html","patricin B"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"],["antibacterial/pristinamycin-ib.html","pristinamycin IB"],["antibacterial/pristinamycin-ic.html","pristinamycin IC"]]},{"id":"ARO:3001308","l":"vgbB","na":1,"nb":9,"a":[["ARO%3A3001308","vgbB"]],"b":[["antibacterial/ostreogrycin-b3.html","ostreogrycin B3"],["antibacterial/patricin-a.html","patricin A"],["antibacterial/patricin-b.html","patricin B"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"],["antibacterial/pristinamycin-ib.html","pristinamycin IB"],["antibacterial/pristinamycin-ic.html","pristinamycin IC"]]},{"id":"ARO:3002536","l":"AAC(3)-IIIa","na":1,"nb":9,"a":[["ARO%3A3002536","AAC(3)-IIIa"]],"b":[["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"]]},{"id":"ARO:3002537","l":"AAC(3)-IIIb","na":1,"nb":9,"a":[["ARO%3A3002537","AAC(3)-IIIb"]],"b":[["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"]]},{"id":"ARO:3002597","l":"AAC(6')-Ie-APH(2')-Ia bifunctional protein","na":1,"nb":9,"a":[["ARO%3A3002597","AAC(6')-Ie-APH(2')-Ia bifunctional protein"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3002598","l":"ANT(3')-II-AAC(6')-IId bifunctional protein","na":1,"nb":9,"a":[["ARO%3A3002598","ANT(3')-II-AAC(6')-IId bifunctional protein"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002647","l":"","na":1,"nb":9,"a":[["ARO%3A3002647","APH(3')-IIIa"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/butirosin.html","butirosin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003386","l":"Escherichia coli folP with mutation conferring resistance to sulfonamides","na":1,"nb":9,"a":[["ARO%3A3003386","Escherichia coli folP with mutation conferring resistance to sulfonamides"]],"b":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfacetamide.html","sulfacetamide"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfamethazine.html","sulfamethazine"],["antibacterial/sulfamethizole.html","sulfamethizole"],["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3003387","l":"Streptococcus pyogenes folP with mutation conferring resistance to sulfonamides","na":1,"nb":9,"a":[["ARO%3A3003387","Streptococcus pyogenes folP with mutation conferring resistance to sulfonamides"]],"b":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfacetamide.html","sulfacetamide"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfamethazine.html","sulfamethazine"],["antibacterial/sulfamethizole.html","sulfamethizole"],["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3003697","l":"MexPQ-OpmE","na":1,"nb":9,"a":[["ARO%3A3003697","MexPQ-OpmE"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/imipenem.html","imipenem"],["antibacterial/josamycin.html","josamycin"],["antibacterial/rokitamycin.html","rokitamycin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003990","l":"vgbC","na":1,"nb":9,"a":[["ARO%3A3003990","vgbC"]],"b":[["antibacterial/ostreogrycin-b3.html","ostreogrycin B3"],["antibacterial/patricin-a.html","patricin A"],["antibacterial/patricin-b.html","patricin B"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"],["antibacterial/pristinamycin-ib.html","pristinamycin IB"],["antibacterial/pristinamycin-ic.html","pristinamycin IC"]]},{"id":"CHEBI:35627","l":"","na":9,"nb":1,"a":[["EC%3A3.5.2.6","beta-lactamase"],["RHEA%3A20401","a beta-lactam + H2O = a substituted beta-amino acid"],["TCDB%3A2.C.1","The TonB-ExbB-ExbD/TolA-TolQ-TolR Outer Membrane Receptor Energizers and Stabilizers (TonB/TolA) Family"],["MCSA%3A2","beta-lactamase (Class A)"],["MCSA%3A15","beta-lactamase (Class B1)"],["MCSA%3A16","beta-lactamase (Class B1)"]],"b":[["unspecified/azetidin-2-one.html","azetidin-2-one"]]},{"id":"CHEBI:78274","l":"ferruginol","na":9,"nb":1,"a":[["EC%3A1.14.14.175","ferruginol synthase"],["EC%3A1.14.14.60","ferruginol monooxygenase"],["EC%3A1.14.14.62","salviol synthase"],["EC%3A1.14.14.65","sugiol synthase"],["RHEA%3A48080","abieta-8,11,13-triene + reduced [NADPH--hemoprotein reductase] + O2 = ferruginol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A55456","ferruginol + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = sugiol + 2 oxidized [NADPH--hemoprotein reductase] + 3 H2O + 2 H(+)"]],"b":[["antibacterial/ferruginol.html","ferruginol"]]},{"id":"CHEBI:83563","l":"","na":9,"nb":1,"a":[["EC%3A1.14.14.28","long-chain alkane monooxygenase"],["EC%3A4.1.1.106","fatty acid photodecarboxylase"],["EC%3A4.1.99.5","aldehyde oxygenase (deformylating)"],["RHEA%3A49060","a long-chain alkane + FMNH2 + O2 = a long chain fatty alcohol + FMN + H2O + H(+)"],["RHEA%3A18969","a long-chain fatty acid + hnu + H(+) = a long-chain alkane + CO2"],["RHEA%3A21440","a long-chain fatty aldehyde + 2 NADPH + O2 + H(+) = a long-chain alkane + formate + 2 NADP(+) + H2O"]],"b":[["antimycobacterial/hentriacontane.html","hentriacontane"]]},{"id":"CHEBI:87393","l":"hexan-1-ol","na":9,"nb":1,"a":[["RHEA%3A65480","2-methylbutanoyl-CoA + hexan-1-ol = hexyl 2-methylbutanoate + CoA"],["RHEA%3A79331","hexan-1-ol + 2 Fe(III)-[cytochrome c] = hexanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A65460","hexan-1-ol + acetyl-CoA = hexyl acetate + CoA"],["RHEA%3A65444","hexan-1-ol + butanoyl-CoA = hexyl butanoate + CoA"],["RHEA%3A65484","hexan-1-ol + hexanoyl-CoA = hexyl hexanoate + CoA"],["RHEA%3A60972","hexan-1-ol + NAD(+) = hexanal + NADH + H(+)"]],"b":[["antibacterial/hexan-1-ol.html","hexan-1-ol"]]},{"id":"UniProt:P06633","l":"","na":9,"nb":1,"a":[["GO%3A0004424","imidazoleglycerol-phosphate dehydratase activity"],["NCBIfam%3ANF002114","imidazoleglycerol-phosphate dehydratase HisB"],["InterPro%3AIPR020565","Imidazoleglycerol-phosphate dehydratase, conserved site"],["CDD%3Acd07914","IGPD"],["InterPro%3AIPR038494","Imidazole glycerol phosphate dehydratase domain superfamily"],["PROSITE%3APS00954","Imidazoleglycerol-phosphate dehydratase signature 1"]],"b":[["antiviral/nevirapine.html","nevirapine"]]},{"id":"ARO:3002013","l":"CMY-2","na":1,"nb":8,"a":[["ARO%3A3002013","CMY-2"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002539","l":"AAC(3)-IVa","na":1,"nb":8,"a":[["ARO%3A3002539","AAC(3)-IVa"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/apramycin.html","apramycin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"]]},{"id":"ARO:3002585","l":"","na":1,"nb":8,"a":[["ARO%3A3002585","AAC(6')-31"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/netilmycin.html","netilmycin"]]},{"id":"ARO:3002652","l":"","na":1,"nb":8,"a":[["ARO%3A3002652","APH(3')-VIa"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/butirosin.html","butirosin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3002653","l":"","na":1,"nb":8,"a":[["ARO%3A3002653","APH(3')-VIb"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/butirosin.html","butirosin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004476","l":"vmlR","na":1,"nb":8,"a":[["ARO%3A3004476","vmlR"]],"b":[["antibacterial/a201a.html","A201A"],["antibacterial/hygromycin-a.html","hygromycin A"],["antibacterial/iboxamycin.html","iboxamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"]]},{"id":"ARO:3004578","l":"Acinetobacter baumannii AbuO","na":1,"nb":8,"a":[["ARO%3A3004578","Acinetobacter baumannii AbuO"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"],["antibacterial/carbenicillin.html","carbenicillin"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3004856","l":"SCO-1","na":1,"nb":8,"a":[["ARO%3A3004856","SCO-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/cefuroxime.html","cefuroxime"]]},{"id":"ARO:3005111","l":"blaS1","na":1,"nb":8,"a":[["ARO%3A3005111","blaS1"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/carbenicillin.html","carbenicillin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/mezlocillin.html","mezlocillin"]]},{"id":"ARO:3005511","l":"VIM-63","na":1,"nb":8,"a":[["ARO%3A3005511","VIM-63"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/faropenem.html","faropenem"]]},{"id":"CHEBI:27949","l":"(E)-sinapaldehyde","na":8,"nb":1,"a":[["EC%3A1.1.1.195","cinnamyl-alcohol dehydrogenase"],["RHEA%3A72027","(E)-sinapaldehyde + L-proline = (E)-nesocodin (alcohol-form) + H2O"],["RHEA%3A64656","(E)-sinapaldehyde + NADP(+) + CoA = (E)-sinapoyl-CoA + NADPH + H(+)"],["RHEA%3A57712","(E)-sinapaldehyde + UDP-alpha-D-glucose = 4-O-(beta-D-glucosyl)-4-trans-sinapoyl aldehyde + UDP + H(+)"],["RHEA%3A76459","(E)-sinapyl alcohol + A = (E)-sinapaldehyde + AH2"],["RHEA%3A45704","(E)-sinapyl alcohol + NADP(+) = (E)-sinapaldehyde + NADPH + H(+)"]],"b":[["antifungal/e-sinapaldehyde.html","(E)-sinapaldehyde"]]},{"id":"CHEBI:383703","l":"3,6-diamino-10-methylacridinium chloride","na":8,"nb":1,"a":[["TCDB%3A2.A.85","The Aromatic Acid Exporter (ArAE) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.117","The Chlorhexadine Exporter (CHX) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antibacterial/3-6-diamino-10-methylacridinium-chloride.html","3,6-diamino-10-methylacridinium chloride"]]},{"id":"CHEBI:6030","l":"isoniazide","na":8,"nb":1,"a":[["ARO%3A3004266","antibiotic resistant katG"],["ARO%3A3003416","isoniazid resistant katG"],["ARO%3A3003392","Mycobacterium tuberculosis katG mutations conferring resistance to isoniazid"],["ARO%3A3005102","Mycobacterium tuberculosis katG mutations conferring resistance to prothionamide"],["ARO%3A3005101","prothionamide resistant katG"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"CHEBI:77932","l":"tetracycline zwitterion","na":8,"nb":1,"a":[["EC%3A1.14.13.231","tetracycline 11a-monooxygenase"],["EC%3A1.14.19.49","tetracycline 7-halogenase"],["EC%3A1.3.98.4","5a,11a-dehydrotetracycline reductase"],["RHEA%3A50712","tetracycline + FADH2 + chloride + O2 = 7-chlorotetracycline + FAD + 2 H2O + H(+)"],["RHEA%3A35235","tetracycline(in) + H(+)(out) = tetracycline(out) + H(+)(in)"],["RHEA%3A35239","tetracycline(in) = tetracycline(out)"]],"b":[["antibacterial/tetracycline-zwitterion.html","tetracycline zwitterion"]]},{"id":"ARO:3000205","l":"tet(X)","na":1,"nb":7,"a":[["ARO%3A3000205","tet(X)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000316","l":"mphA","na":1,"nb":7,"a":[["ARO%3A3000316","mphA"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/oleandomycin.html","oleandomycin"],["antibacterial/roxithromycin.html","roxithromycin"]]},{"id":"ARO:3000497","l":"ethambutol","na":7,"nb":1,"a":[["ARO%3A3003447","ethambutol resistant iniA"],["ARO%3A3004136","Ethambutol resistant iniB"],["ARO%3A3003450","Ethambutol resistant iniC"],["ARO%3A3003448","Mycobacterium tuberculosis iniA mutant conferring resistance to ethambutol"],["ARO%3A3004135","Mycobacterium tuberculosis iniB with mutation conferring resistance to ethambutol"],["ARO%3A3003451","Mycobacterium tuberculosis iniC mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3000520","l":"isoniazid","na":7,"nb":1,"a":[["ARO%3A3004921","Mycobacterium tuberculosis ahpC mutations confer resistance to isoniazid"],["ARO%3A3004924","Mycobacterium tuberculosis inbR mutations conferring resistance to isoniazid"],["ARO%3A3007798","Mycobacterium tuberculosis iniA mutations conferring resistance to isoniazid"],["ARO%3A3003463","Mycobacterium tuberculosis kasA mutant conferring resistance to isoniazid"],["ARO%3A3004929","Mycobacterium tuberculosis mmaA3 mutations conferring resistance to isoniazid"],["ARO%3A3004928","Mycobacterium tuberculosis mymA mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3001866","l":"CTX-M-3","na":1,"nb":7,"a":[["ARO%3A3001866","CTX-M-3"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002500","l":"PDC-3","na":1,"nb":7,"a":[["ARO%3A3002500","PDC-3"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002502","l":"PDC-5","na":1,"nb":7,"a":[["ARO%3A3002502","PDC-5"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002533","l":"AAC(3)-IIa","na":1,"nb":7,"a":[["ARO%3A3002533","AAC(3)-IIa"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002534","l":"AAC(3)-IIb","na":1,"nb":7,"a":[["ARO%3A3002534","AAC(3)-IIb"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002535","l":"AAC(3)-IIc","na":1,"nb":7,"a":[["ARO%3A3002535","AAC(3)-IIc"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002545","l":"","na":1,"nb":7,"a":[["ARO%3A3002545","AAC(6')-Ia"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002549","l":"","na":1,"nb":7,"a":[["ARO%3A3002549","AAC(6')-Ic"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002553","l":"","na":1,"nb":7,"a":[["ARO%3A3002553","AAC(6')-If"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002554","l":"","na":1,"nb":7,"a":[["ARO%3A3002554","AAC(6')-Ig"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002555","l":"","na":1,"nb":7,"a":[["ARO%3A3002555","AAC(6')-Ih"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002556","l":"","na":1,"nb":7,"a":[["ARO%3A3002556","AAC(6')-Ii"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002557","l":"","na":1,"nb":7,"a":[["ARO%3A3002557","AAC(6')-Ij"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002558","l":"","na":1,"nb":7,"a":[["ARO%3A3002558","AAC(6')-Ik"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002559","l":"","na":1,"nb":7,"a":[["ARO%3A3002559","AAC(6')-Ip"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002560","l":"","na":1,"nb":7,"a":[["ARO%3A3002560","AAC(6')-Iq"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002561","l":"","na":1,"nb":7,"a":[["ARO%3A3002561","AAC(6')-Ir"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002562","l":"","na":1,"nb":7,"a":[["ARO%3A3002562","AAC(6')-Is"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002563","l":"","na":1,"nb":7,"a":[["ARO%3A3002563","AAC(6')-Isa"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002564","l":"","na":1,"nb":7,"a":[["ARO%3A3002564","AAC(6')-It"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002565","l":"","na":1,"nb":7,"a":[["ARO%3A3002565","AAC(6')-Iu"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002566","l":"","na":1,"nb":7,"a":[["ARO%3A3002566","AAC(6')-Iv"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002567","l":"","na":1,"nb":7,"a":[["ARO%3A3002567","AAC(6')-Iw"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002568","l":"","na":1,"nb":7,"a":[["ARO%3A3002568","AAC(6')-Ix"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002569","l":"","na":1,"nb":7,"a":[["ARO%3A3002569","AAC(6')-Iy"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002570","l":"","na":1,"nb":7,"a":[["ARO%3A3002570","AAC(6')-Iz"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002571","l":"","na":1,"nb":7,"a":[["ARO%3A3002571","AAC(6')-Iaa"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002572","l":"","na":1,"nb":7,"a":[["ARO%3A3002572","AAC(6')-Iad"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002573","l":"","na":1,"nb":7,"a":[["ARO%3A3002573","AAC(6')-Iae"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002574","l":"","na":1,"nb":7,"a":[["ARO%3A3002574","AAC(6')-Iaf"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002575","l":"","na":1,"nb":7,"a":[["ARO%3A3002575","AAC(6')-Iai"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002588","l":"","na":1,"nb":7,"a":[["ARO%3A3002588","AAC(6')-I30"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002589","l":"","na":1,"nb":7,"a":[["ARO%3A3002589","AAC(6')-Iid"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002590","l":"","na":1,"nb":7,"a":[["ARO%3A3002590","AAC(6')-Iih"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002594","l":"","na":1,"nb":7,"a":[["ARO%3A3002594","AAC(6')-IIa"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002595","l":"","na":1,"nb":7,"a":[["ARO%3A3002595","AAC(6')-IIb"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002596","l":"","na":1,"nb":7,"a":[["ARO%3A3002596","AAC(6')-IIc"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002824","l":"ErmV","na":1,"nb":7,"a":[["ARO%3A3002824","ErmV"]],"b":[["antibacterial/carbomycin.html","carbomycin"],["antibacterial/celesticetin.html","celesticetin"],["antibacterial/chalcomycin.html","chalcomycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/josamycin.html","josamycin"],["antibacterial/oleandomycin.html","oleandomycin"]]},{"id":"ARO:3003199","l":"","na":1,"nb":7,"a":[["ARO%3A3003199","AAC(6')-Iak"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3003200","l":"","na":1,"nb":7,"a":[["ARO%3A3003200","AAC(6')-Ian"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3003677","l":"","na":1,"nb":7,"a":[["ARO%3A3003677","AAC(6')-Iaj"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3004128","l":"Serratia marcescens Omp1","na":1,"nb":7,"a":[["ARO%3A3004128","Serratia marcescens Omp1"]],"b":[["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/moxalactam.html","moxalactam"]]},{"id":"ARO:3004491","l":"","na":7,"nb":1,"a":[["ARO%3A3007477","antibiotic resistant ATP synthase"],["ARO%3A3007673","bedaquiline resistant Rv0678"],["ARO%3A3007691","bedaquiline resistant Rv2535c"],["ARO%3A3007476","Mycobacterium abscessus atpE with mutation conferring resistance to bedaquiline"],["ARO%3A3007854","Mycobacterium tuberculosis atpE with mutation conferring resistance to bedaquiline"],["ARO%3A3007674","Mycobacterium tuberculosis Rv0678 with mutation conferring resistance to bedaquiline"]],"b":[["antimycobacterial/bedaquiline.html","bedaquiline"]]},{"id":"ARO:3004559","l":"CAM-1","na":1,"nb":7,"a":[["ARO%3A3004559","CAM-1"]],"b":[["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftolozane.html","ceftolozane"],["antibacterial/doripenem.html","doripenem"],["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3004572","l":"Staphylococcus aureus LmrS","na":1,"nb":7,"a":[["ARO%3A3004572","Staphylococcus aureus LmrS"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/florfenicol.html","florfenicol"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/linezolid.html","linezolid"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004621","l":"AAC(3)-IIe","na":1,"nb":7,"a":[["ARO%3A3004621","AAC(3)-IIe"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3004623","l":"AAC(3)-IId","na":1,"nb":7,"a":[["ARO%3A3004623","AAC(3)-IId"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3004629","l":"","na":1,"nb":7,"a":[["ARO%3A3004629","AAC(6')-Im"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3004635","l":"","na":1,"nb":7,"a":[["ARO%3A3004635","AAC(6')-Il"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3004638","l":"","na":1,"nb":7,"a":[["ARO%3A3004638","AAC(6')-I-48"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3004825","l":"LAP-1","na":1,"nb":7,"a":[["ARO%3A3004825","LAP-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefuroxime.html","cefuroxime"],["antibacterial/piperacillin.html","piperacillin"]]},{"id":"ARO:3004826","l":"LAP-2","na":1,"nb":7,"a":[["ARO%3A3004826","LAP-2"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefuroxime.html","cefuroxime"],["antibacterial/piperacillin.html","piperacillin"]]},{"id":"ARO:3005085","l":"AAC(3)-IIg","na":1,"nb":7,"a":[["ARO%3A3005085","AAC(3)-IIg"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3007011","l":"mdeA","na":1,"nb":7,"a":[["ARO%3A3007011","mdeA"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/nalidixic-acid.html","nalidixic acid"],["antibacterial/oxacillin.html","oxacillin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007204","l":"","na":1,"nb":7,"a":[["ARO%3A3007204","AAC(6')-Iap"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"CHEBI:15722","l":"","na":1,"nb":7,"a":[["MCSA%3A744","GyrA intein (Class 1 intein)"]],"b":[["antibacterial/mastoparan-a.html","mastoparan-A"],["antibacterial/mastoparan-af.html","mastoparan-AF"],["antibacterial/mastoparan-b.html","mastoparan-B"],["antibacterial/mastoparan-d.html","mastoparan-D"],["antibacterial/mastoparan-m.html","mastoparan-M"],["antibacterial/mastoparan-v.html","mastoparan-V"]]},{"id":"CHEBI:15837","l":"isoamylol","na":7,"nb":1,"a":[["EC%3A1.1.1.265","3-methylbutanal reductase"],["EC%3A3.1.1.112","isoamyl acetate esterase"],["RHEA%3A65236","3-methylbutan-1-ol + acetyl-CoA = 3-methylbutyl acetate + CoA"],["RHEA%3A85967","3-methylbutan-1-ol + hexadecanoyl-CoA = 3-methylbutyl hexadecanoate + CoA"],["RHEA%3A18529","3-methylbutan-1-ol + NAD(+) = 3-methylbutanal + NADH + H(+)"],["RHEA%3A18525","3-methylbutan-1-ol + NADP(+) = 3-methylbutanal + NADPH + H(+)"]],"b":[["antifungal/isoamylol.html","isoamylol"]]},{"id":"CHEBI:16118","l":"berberine","na":7,"nb":1,"a":[["EC%3A1.21.3.2","columbamine oxidase"],["EC%3A1.3.3.8","tetrahydroberberine oxidase"],["EC%3A1.5.1.31","berberine reductase"],["RHEA%3A23564","2 columbamine + O2 = 2 berberine + 2 H2O"],["RHEA%3A21268","(R)-canadine + 2 NADP(+) = berberine + 2 NADPH + H(+)"],["RHEA%3A13489","(S)-canadine + 2 O2 + H(+) = berberine + 2 H2O2"]],"b":[["antifungal/berberine.html","berberine"]]},{"id":"CHEBI:16731","l":"(E)-cinnamaldehyde","na":7,"nb":1,"a":[["EC%3A1.1.1.195","cinnamyl-alcohol dehydrogenase"],["EC%3A1.2.1.44","cinnamoyl-CoA reductase"],["RHEA%3A77507","(E)-cinnamaldehyde + hydrogen cyanide = (2S,3E)-2-hydroxy-4-phenylbut-3-enenitrile"],["RHEA%3A10620","(E)-cinnamaldehyde + NADP(+) + CoA = (E)-cinnamoyl-CoA + NADPH + H(+)"],["RHEA%3A58992","(E)-cinnamaldehyde + O2 + H2O = (E)-cinnamate + H2O2 + H(+)"],["RHEA%3A68872","(E)-cinnamate + ATP + NADPH + H(+) = (E)-cinnamaldehyde + AMP + diphosphate + NADP(+)"]],"b":[["antifungal/e-cinnamaldehyde.html","(E)-cinnamaldehyde"]]},{"id":"CHEBI:17209","l":"dihydrosanguinarine","na":7,"nb":1,"a":[["EC%3A1.14.14.100","dihydrosanguinarine 10-monooxygenase"],["EC%3A1.3.1.107","sanguinarine reductase"],["EC%3A1.5.3.12","dihydrobenzophenanthridine oxidase"],["RHEA%3A41660","dihydrosanguinarine + NAD(+) = sanguinarine + NADH"],["RHEA%3A41656","dihydrosanguinarine + NADP(+) = sanguinarine + NADPH"],["RHEA%3A16621","dihydrosanguinarine + O2 + H(+) = sanguinarine + H2O2"]],"b":[["antifungal/dihydrosanguinarine.html","dihydrosanguinarine"]]},{"id":"CHEBI:28831","l":"","na":7,"nb":1,"a":[["RHEA%3A62204","1-propanol + 2 Fe(III)-[cytochrome c] = propanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A65468","1-propanol + acetyl-CoA = propyl acetate + CoA"],["RHEA%3A65476","1-propanol + butanoyl-CoA = propyl butanoate + CoA"],["RHEA%3A50704","1-propanol + NAD(+) = propanal + NADH + H(+)"],["RHEA%3A64712","1-propanol + NADP(+) = propanal + NADPH + H(+)"],["MCSA%3A407","carboxylesterase"]],"b":[["antifungal/4-5-6-7-tetrachloro-2-benzofuran-1-3h-one.html","4,5,6,7-tetrachloro-2-benzofuran-1(3H)-one"]]},{"id":"CHEBI:83264","l":"","na":7,"nb":1,"a":[["RHEA%3A48056","a beta-D-galactosyl-(1->4)-beta-D-glucosyl-(1<->1)-ceramide + H2O = a beta-D-glucosylceramide + D-galactose"],["RHEA%3A85943","a beta-D-glucosylceramide + GDP-alpha-D-mannose = beta-D-Man-(1->4)-beta-D-Glc-(1<->1)-ceramide + GDP + H(+)"],["RHEA%3A78531","a beta-D-glucosylceramide + H2O = a beta-D-glucosyll-(1<->1')-sphingoid base + a fatty acid"],["RHEA%3A81447","a beta-D-glucosylceramide + H2O = an N-acyl-sphingoid base + D-glucose"],["RHEA%3A77255","a beta-D-glucosylceramide(in) = a beta-D-glucosylceramide(out)"],["RHEA%3A66660","a beta-D-glucosylceramide(in) + ATP + H2O = a beta-D-glucosylceramide(out) + ADP + phosphate + H(+)"]],"b":[["unspecified/chrysogeside-b.html","chrysogeside B"]]},{"id":"ARO:3000186","l":"tet(M)","na":1,"nb":6,"a":[["ARO%3A3000186","tet(M)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000190","l":"tet(O)","na":1,"nb":6,"a":[["ARO%3A3000190","tet(O)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000191","l":"tet(Q)","na":1,"nb":6,"a":[["ARO%3A3000191","tet(Q)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000192","l":"tet(S)","na":1,"nb":6,"a":[["ARO%3A3000192","tet(S)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000193","l":"tet(T)","na":1,"nb":6,"a":[["ARO%3A3000193","tet(T)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000194","l":"tet(W)","na":1,"nb":6,"a":[["ARO%3A3000194","tet(W)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000195","l":"tetB(P)","na":1,"nb":6,"a":[["ARO%3A3000195","tetB(P)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000196","l":"tet(32)","na":1,"nb":6,"a":[["ARO%3A3000196","tet(32)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000197","l":"tet(36)","na":1,"nb":6,"a":[["ARO%3A3000197","tet(36)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000556","l":"tet(44)","na":1,"nb":6,"a":[["ARO%3A3000556","tet(44)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000787","l":"MdtABC-TolC","na":6,"nb":1,"a":[["ARO%3A3000828","baeR"],["ARO%3A3000829","baeS"],["ARO%3A3000531","baeSR"],["ARO%3A3000830","cpxA"],["ARO%3A3000524","cpxAR"],["ARO%3A3000787","MdtABC-TolC"]],"b":[["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3001889","l":"CTX-M-27","na":1,"nb":6,"a":[["ARO%3A3001889","CTX-M-27"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ertapenem.html","ertapenem"]]},{"id":"ARO:3002600","l":"","na":1,"nb":6,"a":[["ARO%3A3002600","AAC(3)-Ib/AAC(6')-Ib3 bifunctional protein"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/astromicin.html","astromicin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/sisomycin.html","sisomycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002641","l":"","na":1,"nb":6,"a":[["ARO%3A3002641","APH(3')-Ia"]],"b":[["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"],["antimycobacterial/lividomycin-a.html","lividomycin A"]]},{"id":"ARO:3002642","l":"","na":1,"nb":6,"a":[["ARO%3A3002642","APH(3')-Ib"]],"b":[["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"],["antimycobacterial/lividomycin-a.html","lividomycin A"]]},{"id":"ARO:3002644","l":"","na":1,"nb":6,"a":[["ARO%3A3002644","APH(3')-IIa"]],"b":[["antibacterial/butirosin.html","butirosin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3002645","l":"","na":1,"nb":6,"a":[["ARO%3A3002645","APH(3')-IIb"]],"b":[["antibacterial/butirosin.html","butirosin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3002646","l":"","na":1,"nb":6,"a":[["ARO%3A3002646","APH(3')-IIc"]],"b":[["antibacterial/butirosin.html","butirosin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3003684","l":"Pseudomonas aeruginosa gyrA conferring resistance to fluoroquinolones","na":1,"nb":6,"a":[["ARO%3A3003684","Pseudomonas aeruginosa gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/ofloxacin.html","ofloxacin"],["antibacterial/pefloxacin.html","pefloxacin"],["antibacterial/sitafloxacin.html","Sitafloxacin"],["antibacterial/sparfloxacin.html","sparfloxacin"]]},{"id":"ARO:3003688","l":"PvrR","na":1,"nb":6,"a":[["ARO%3A3003688","PvrR"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/carbenicillin.html","carbenicillin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tetracycline.html","tetracycline"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3003908","l":"Erm(47)","na":1,"nb":6,"a":[["ARO%3A3003908","Erm(47)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/quinupristin.html","quinupristin"],["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3004076","l":"MuxABC-OpmB","na":1,"nb":6,"a":[["ARO%3A3004076","MuxABC-OpmB"]],"b":[["antibacterial/aztreonam.html","aztreonam"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/josamycin.html","josamycin"],["antibacterial/novobiocin.html","novobiocin"],["antibacterial/rokitamycin.html","rokitamycin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004176","l":"Mycoplasma hominis 23S rRNA with mutation conferring resistance to macrolide antibiotics","na":1,"nb":6,"a":[["ARO%3A3004176","Mycoplasma hominis 23S rRNA with mutation conferring resistance to macrolide antibiotics"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/spiramycin-i.html","spiramycin I"],["antibacterial/telithromycin.html","telithromycin"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3004446","l":"Haemophilus influenzae PBP3 conferring resistance to beta-lactam antibiotics","na":1,"nb":6,"a":[["ARO%3A3004446","Haemophilus influenzae PBP3 conferring resistance to beta-lactam antibiotics"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefaclor.html","cefaclor"],["antibacterial/cefdinir.html","cefdinir"],["antibacterial/cefditoren.html","cefditoren"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3004715","l":"vga(E) Staphylococcus cohnii","na":1,"nb":6,"a":[["ARO%3A3004715","vga(E) Staphylococcus cohnii"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/valnemulin.html","valnemulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3005015","l":"VMB-1","na":1,"nb":6,"a":[["ARO%3A3005015","VMB-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3007085","l":"PRC-1","na":1,"nb":6,"a":[["ARO%3A3007085","PRC-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3007154","l":"","na":6,"nb":1,"a":[["ARO%3A3004943","cycloserine resistant ald"],["ARO%3A3004946","cycloserine resistant alr"],["ARO%3A3004939","cycloserine resistant ddlA"],["ARO%3A3004945","Mycobacterium tuberculosis ald mutations confer resistance to cycloserine"],["ARO%3A3004947","Mycobacterium tuberculosis alr with mutation conferring resistance to cycloserine"],["ARO%3A3004941","Mycobacterium tuberculosis ddlA mutations confer resistance to cycloserine"]],"b":[["antimycobacterial/d-cycloserine.html","D-cycloserine"]]},{"id":"ARO:3007437","l":"EBR-5","na":1,"nb":6,"a":[["ARO%3A3007437","EBR-5"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftiofur.html","ceftiofur"],["antibacterial/cefuroxime.html","cefuroxime"],["antibacterial/piperacillin.html","piperacillin"]]},{"id":"ARO:3007646","l":"Neobacillus vireti vmlR2","na":1,"nb":6,"a":[["ARO%3A3007646","Neobacillus vireti vmlR2"]],"b":[["antibacterial/a201a.html","A201A"],["antibacterial/hygromycin-a.html","hygromycin A"],["antibacterial/iboxamycin.html","iboxamycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3007648","l":"PSZ-1","na":1,"nb":6,"a":[["ARO%3A3007648","PSZ-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"ARO:3007659","l":"putative nickel/cobalt transporter","na":1,"nb":6,"a":[["ARO%3A3007659","putative nickel/cobalt transporter"]],"b":[["antibacterial/gentamicin.html","gentamicin"],["antibacterial/nalidixic-acid.html","nalidixic acid"],["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/ofloxacin.html","ofloxacin"],["antibacterial/sparfloxacin.html","sparfloxacin"],["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"CHEBI:134179","l":"","na":1,"nb":6,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antibacterial/3-phenethylamino-butan-2-one.html","3-(phenethylamino)-butan-2-one"],["antifungal/acrylonitrile.html","acrylonitrile"],["antifungal/isoamylol.html","isoamylol"],["antifungal/nerolidol.html","nerolidol"],["antifungal/prop-2-yn-1-ol.html","prop-2-yn-1-ol"],["biocide/ethanol.html","ethanol"]]},{"id":"CHEBI:15399","l":"(+)-carvone","na":6,"nb":1,"a":[["EC%3A1.1.1.275","(+)-trans-carveol dehydrogenase"],["EC%3A1.1.1.n4","(-)-trans-carveol dehydrogenase"],["EC%3A1.3.99.25","carvone reductase"],["RHEA%3A32427","(1R,4S)-isodihydrocarvone + A = (S)-carvone + AH2"],["RHEA%3A14825","(1R,5S)-carveol + NAD(+) = (S)-carvone + NADH + H(+)"],["RHEA%3A25848","(1S,5S)-carveol + NAD(+) = (S)-carvone + NADH + H(+)"]],"b":[["antifungal/carvone.html","(+)-carvone"]]},{"id":"CHEBI:15400","l":"(−)-carvone","na":6,"nb":1,"a":[["EC%3A1.1.1.243","carveol dehydrogenase"],["EC%3A1.1.1.n4","(-)-trans-carveol dehydrogenase"],["EC%3A1.3.99.25","carvone reductase"],["RHEA%3A32423","(1R,4R)-dihydrocarvone + A = (R)-carvone + AH2"],["RHEA%3A25844","(1S,5R)-carveol + NAD(+) = (R)-carvone + NADH + H(+)"],["RHEA%3A13629","(1S,5R)-carveol + NADP(+) = (R)-carvone + NADPH + H(+)"]],"b":[["antifungal/carvone-15400.html","(−)-carvone"]]},{"id":"CHEBI:16664","l":"albendazole","na":6,"nb":1,"a":[["EC%3A1.14.13.32","albendazole monooxygenase"],["EC%3A1.14.14.73","albendazole monooxygenase (sufoxide-forming)"],["EC%3A1.14.14.74","albendazole monooxygenase (hydroxylating)"],["RHEA%3A10796","albendazole + NADPH + O2 + H(+) = albendazole S-oxide + NADP(+) + H2O"],["RHEA%3A55924","albendazole + reduced [NADPH--hemoprotein reductase] + O2 = albendazole S-oxide + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A56288","albendazole + reduced [NADPH--hemoprotein reductase] + O2 = hydroxyalbendazole + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["antifungal/albendazole.html","albendazole"]]},{"id":"CHEBI:20702","l":"","na":1,"nb":6,"a":[["TCDB%3A2.A.40","The Nucleobase/Ascorbate Transporter (NAT) or Nucleobase:Cation Symporter-2 (NCS2) Family"]],"b":[["antiviral/acyclovir.html","acyclovir"],["antiviral/entecavir-anhydrous.html","entecavir (anhydrous)"],["antiviral/famciclovir.html","famciclovir"],["antiviral/ganciclovir.html","ganciclovir"],["antiviral/penciclovir.html","penciclovir"],["antiviral/tioguanine.html","tioguanine"]]},{"id":"CHEBI:25696","l":"","na":6,"nb":1,"a":[["TCDB%3A2.A.31","The Anion Exchanger (AE) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.28","The Bile Acid:Na+ Symporter (BASS) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.60","The Organo Anion Transporter (OAT) Family"],["TCDB%3A1.C.103","The Pore-forming Toxin, TisB (TisB) Family"]],"b":[["antibacterial/trichosetin-1.html","trichosetin(1−)"]]},{"id":"CHEBI:28054","l":"o-cresol","na":6,"nb":1,"a":[["EC%3A1.14.13.243","toluene 2-monooxygenase"],["RHEA%3A57948","2-hydroxytoluene + NADH + O2 + H(+) = 3-methylcatechol + NAD(+) + H2O"],["RHEA%3A57440","2-methylanisole + reduced [NADH--hemoprotein reductase] + O2 = 2-hydroxytoluene + oxidized [NADH--hemoprotein reductase] + formaldehyde + H2O + H(+)"],["RHEA%3A80607","(2-methylphenoxy)acetate + 2-oxoglutarate + O2 = 2-hydroxytoluene + glyoxylate + succinate + CO2"],["RHEA%3A20349","toluene + NADH + O2 + H(+) = 2-hydroxytoluene + NAD(+) + H2O"],["proteintraitsmech%3ABIOLIP_JZ0","JZ0-binding site"]],"b":[["antifungal/o-cresol.html","o-cresol"]]},{"id":"CHEBI:3020","l":"","na":6,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.117","The Chlorhexadine Exporter (CHX) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"]]},{"id":"CHEBI:31457","l":"decanal","na":6,"nb":1,"a":[["RHEA%3A58376","decan-1-ol + NADP(+) = decanal + NADPH + H(+)"],["RHEA%3A69496","decan-1-ol + O2 = decanal + H2O2"],["RHEA%3A44104","decanal + NAD(+) + H2O = decanoate + NADH + 2 H(+)"],["RHEA%3A50612","decanal + NADP(+) = (2E)-decenal + NADPH + H(+)"],["RHEA%3A65744","decyl sulfate + 2-oxoglutarate + O2 = decanal + sulfate + succinate + CO2 + H(+)"],["proteintraitsmech%3ABIOLIP_8YP","8YP-binding site"]],"b":[["antifungal/decanal.html","decanal"]]},{"id":"CHEBI:35915","l":"","na":6,"nb":1,"a":[["EC%3A2.3.1.43","phosphatidylcholine--sterol O-acyltransferase"],["EC%3A2.3.1.73","diacylglycerol--sterol O-acyltransferase"],["EC%3A3.1.1.13","sterol esterase"],["RHEA%3A21204","a sterol + a 1,2-diacyl-sn-glycero-3-phosphocholine = a sterol ester + a 1-acyl-sn-glycero-3-phosphocholine"],["RHEA%3A13301","a sterol + a 1,2-diacyl-sn-glycerol = a sterol ester + a 1-acyl-sn-glycerol"],["RHEA%3A10100","a sterol ester + H2O = a sterol + a fatty acid + H(+)"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"CHEBI:4883","l":"ethidium bromide","na":6,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.A.7","The ATP-gated P2X Receptor Cation Channel (P2X Receptor) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antiprotozoal/ethidium-bromide.html","ethidium bromide"]]},{"id":"CHEBI:50667","l":"mercaptopurine","na":6,"nb":1,"a":[["EC%3A2.1.1.67","thiopurine S-methyltransferase"],["RHEA%3A12609","mercaptopurine + S-adenosyl-L-methionine = 6-methylthiopurine + S-adenosyl-L-homocysteine + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.40","The Nucleobase/Ascorbate Transporter (NAT) or Nucleobase:Cation Symporter-2 (NCS2) Family"]],"b":[["antiviral/mercaptopurine.html","mercaptopurine"]]},{"id":"CHEBI:61748","l":"(E)-oct-2-enal","na":6,"nb":1,"a":[["EC%3A2.2.1.12","3-acetyloctanal synthase"],["RHEA%3A59920","(2E)-octenal + NAD(+) + H2O = (2E)-octenoate + NADH + 2 H(+)"],["RHEA%3A59916","(2E)-octenal + NADP(+) + H2O = (2E)-octenoate + NADPH + 2 H(+)"],["RHEA%3A42832","(2E)-octenal + pyruvate + H(+) = (S)-3-acetyloctanal + CO2"],["RHEA%3A58372","(E)-oct-2-en-1-ol + NADP(+) = (2E)-octenal + NADPH + H(+)"],["RHEA%3A50780","octanal + NADP(+) = (2E)-octenal + NADPH + H(+)"]],"b":[["antifungal/e-oct-2-enal.html","(E)-oct-2-enal"]]},{"id":"CHEBI:77722","l":"apigenin 7-O-β-D-glucoside(1−)","na":6,"nb":1,"a":[["EC%3A2.4.1.81","flavone 7-O-beta-glucosyltransferase"],["EC%3A2.4.2.25","flavone apiosyltransferase"],["RHEA%3A69679","apigenin 7-O-beta-D-glucoside + H2O = apigenin + beta-D-glucose"],["RHEA%3A67348","apigenin 7-O-beta-D-glucoside + malonyl-CoA = apigenin 7-O-(6-O-malonyl-beta-D-glucoside) + CoA"],["RHEA%3A59760","apigenin + UDP-alpha-D-glucose = apigenin 7-O-beta-D-glucoside + UDP + H(+)"],["RHEA%3A19153","UDP-alpha-D-apiose + apigenin 7-O-beta-D-glucoside = 7-O-(beta-D-apiofuranosyl-1,2-beta-D-glucosyl)-5,7,4'-trihydroxyflavone + UDP + H(+)"]],"b":[["antibacterial/apigenin-7-o-%CE%B2-d-glucoside-1.html","apigenin 7-O-β-D-glucoside(1−)"]]},{"id":"CHEBI:77979","l":"aclacinomycin T zwitterion","na":6,"nb":1,"a":[["EC%3A2.4.1.326","aklavinone 7-L-rhodosaminyltransferase"],["EC%3A2.4.1.327","aclacinomycin-T 2-deoxy-L-fucose transferase"],["EC%3A3.1.1.95","aclacinomycin methylesterase"],["RHEA%3A37891","aclacinomycin T + H2O = 15-demethylaclacinomycin T + methanol"],["RHEA%3A41568","dTDP-2-deoxy-beta-L-fucose + aclacinomycin T = aclacinomycin S + dTDP + H(+)"],["RHEA%3A41564","dTDP-beta-L-rhodosamine + aklavinone = aclacinomycin T + dTDP + 2 H(+)"]],"b":[["unspecified/aclacinomycin-t-zwitterion.html","aclacinomycin T zwitterion"]]},{"id":"CHEBI:86494","l":"","na":1,"nb":6,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/allicin.html","allicin"],["antifungal/berberine.html","berberine"],["antifungal/carvacrol.html","carvacrol"],["antifungal/carvone-38265.html","carvone"],["antifungal/sanguinarine.html","sanguinarine"],["antifungal/%CE%B1-santonin.html","α-santonin"]]},{"id":"CHEBI:98","l":"(S)-linalool","na":6,"nb":1,"a":[["EC%3A4.2.1.127","linalool dehydratase"],["EC%3A4.2.3.25","S-linalool synthase"],["EC%3A5.4.4.4","geraniol isomerase"],["RHEA%3A30715","(2E)-geraniol = (S)-linalool"],["RHEA%3A24116","(2E)-geranyl diphosphate + H2O = (S)-linalool + diphosphate"],["RHEA%3A30711","(S)-linalool = beta-myrcene + H2O"]],"b":[["unspecified/s-linalool.html","(S)-linalool"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":6,"nb":1,"a":[["IDPO%3A0000037","molecular recognition display site"],["Pfam%3APF05403","Plasmodium histidine-rich protein (HRPII/III)"],["Pfam%3APF17986","EMP3-KAHRP-like N-terminal domain"],["Pfam%3APF03805","Cytoadherence-linked asexual protein"],["Pfam%3APF06589","Circumsporozoite-related antigen (CRA)"],["TED%3AAF-Q9U431-F1-model_v4_TED01","TED novel fold AF-Q9U431-F1-model_v4_TED01"]],"b":[["antiprotozoal/emetine.html","emetine"]]},{"id":"ARO:3000230","l":"","na":1,"nb":5,"a":[["ARO%3A3000230","ANT(2')-Ia"]],"b":[["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/sisomycin.html","sisomycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3000753","l":"abeM","na":1,"nb":5,"a":[["ARO%3A3000753","abeM"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/ofloxacin.html","ofloxacin"],["antibacterial/triclosan.html","triclosan"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3001214","l":"mdtM","na":1,"nb":5,"a":[["ARO%3A3001214","mdtM"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/puromycin.html","puromycin"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3001304","l":"ErmS","na":1,"nb":5,"a":[["ARO%3A3001304","ErmS"]],"b":[["antibacterial/carbomycin.html","carbomycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/niddamycin.html","niddamycin"],["antibacterial/pristinamycin-ic.html","pristinamycin IC"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3001878","l":"CTX-M-15","na":1,"nb":5,"a":[["ARO%3A3001878","CTX-M-15"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3002523","l":"","na":1,"nb":5,"a":[["ARO%3A3002523","AAC(2')-Ia"]],"b":[["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002524","l":"","na":1,"nb":5,"a":[["ARO%3A3002524","AAC(2')-Ib"]],"b":[["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002525","l":"","na":1,"nb":5,"a":[["ARO%3A3002525","AAC(2')-Ic"]],"b":[["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002526","l":"","na":1,"nb":5,"a":[["ARO%3A3002526","AAC(2')-Id"]],"b":[["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002527","l":"","na":1,"nb":5,"a":[["ARO%3A3002527","AAC(2')-Ie"]],"b":[["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002583","l":"","na":1,"nb":5,"a":[["ARO%3A3002583","AAC(6')-29a"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002584","l":"","na":1,"nb":5,"a":[["ARO%3A3002584","AAC(6')-29b"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002648","l":"","na":1,"nb":5,"a":[["ARO%3A3002648","APH(3')-IVa"]],"b":[["antibacterial/butirosin.html","butirosin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3002823","l":"ErmH","na":1,"nb":5,"a":[["ARO%3A3002823","ErmH"]],"b":[["antibacterial/carbomycin.html","carbomycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/oleandomycin.html","oleandomycin"],["antibacterial/pristinamycin-ic.html","pristinamycin IC"]]},{"id":"ARO:3002831","l":"vgaC","na":1,"nb":5,"a":[["ARO%3A3002831","vgaC"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/valnemulin.html","valnemulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3003071","l":"mphF","na":1,"nb":5,"a":[["ARO%3A3003071","mphF"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/roxithromycin.html","roxithromycin"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3003374","l":"Enterobacter aerogenes acrR with mutation conferring multidrug antibiotic resistance","na":1,"nb":5,"a":[["ARO%3A3003374","Enterobacter aerogenes acrR with mutation conferring multidrug antibiotic resistance"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/tetracycline.html","tetracycline"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3003561","l":"SED-1","na":1,"nb":5,"a":[["ARO%3A3003561","SED-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefuroxime.html","cefuroxime"],["antibacterial/piperacillin.html","piperacillin"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3003713","l":"VCC-1","na":1,"nb":5,"a":[["ARO%3A3003713","VCC-1"]],"b":[["antibacterial/aztreonam.html","aztreonam"],["antibacterial/doripenem.html","doripenem"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3003749","l":"salA","na":1,"nb":5,"a":[["ARO%3A3003749","salA"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3003995","l":"Clostridioides difficile gyrA conferring resistance to fluoroquinolones","na":1,"nb":5,"a":[["ARO%3A3003995","Clostridioides difficile gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"],["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3004082","l":"AcrAD-TolC","na":1,"nb":5,"a":[["ARO%3A3004082","AcrAD-TolC"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3004191","l":"","na":1,"nb":5,"a":[["ARO%3A3004191","APH(2')-If"]],"b":[["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/sisomycin.html","sisomycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3004470","l":"poxtA","na":1,"nb":5,"a":[["ARO%3A3004470","poxtA"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/florfenicol.html","florfenicol"],["antibacterial/linezolid.html","linezolid"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004675","l":"aphA15","na":1,"nb":5,"a":[["ARO%3A3004675","aphA15"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004677","l":"rmtD2","na":1,"nb":5,"a":[["ARO%3A3004677","rmtD2"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005035","l":"YRC-1","na":1,"nb":5,"a":[["ARO%3A3005035","YRC-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/cefuroxime.html","cefuroxime"]]},{"id":"ARO:3007026","l":"salB","na":1,"nb":5,"a":[["ARO%3A3007026","salB"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3007027","l":"salC","na":1,"nb":5,"a":[["ARO%3A3007027","salC"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3007033","l":"Erm(51)","na":1,"nb":5,"a":[["ARO%3A3007033","Erm(51)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/pristinamycin-ib.html","pristinamycin IB"]]},{"id":"ARO:3007151","l":"","na":5,"nb":1,"a":[["ARO%3A3000446","antibiotic-resistant isoleucyl-tRNA synthetase (ileS)"],["ARO%3A3003730","Bifidobacterium bifidum ileS conferring resistance to mupirocin"],["ARO%3A3003729","Staphylococcus aureus ileS with mutation conferring resistance to mupirocin"],["ARO%3A3000521","Staphylococcus aureus mupA conferring resistance to mupirocin"],["ARO%3A3000510","Staphylococcus aureus mupB conferring resistance to mupirocin"]],"b":[["antibacterial/mupirocin.html","mupirocin"]]},{"id":"ARO:3007180","l":"MAB","na":1,"nb":5,"a":[["ARO%3A3007180","MAB"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/cefuroxime.html","cefuroxime"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3007182","l":"blaC","na":1,"nb":5,"a":[["ARO%3A3007182","blaC"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/temocillin.html","temocillin"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3007374","l":"PJM-1","na":1,"nb":5,"a":[["ARO%3A3007374","PJM-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3007438","l":"LAQ-1","na":1,"nb":5,"a":[["ARO%3A3007438","LAQ-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"ARO:3007635","l":"CAE-1","na":1,"nb":5,"a":[["ARO%3A3007635","CAE-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/cefuroxime.html","cefuroxime"],["antibacterial/piperacillin.html","piperacillin"]]},{"id":"ARO:3007637","l":"Clostridioides difficile cplR","na":1,"nb":5,"a":[["ARO%3A3007637","Clostridioides difficile cplR"]],"b":[["antibacterial/a201a.html","A201A"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/iboxamycin.html","iboxamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3007644","l":"Clostridium perfringes cplR","na":1,"nb":5,"a":[["ARO%3A3007644","Clostridium perfringes cplR"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/iboxamycin.html","iboxamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3007694","l":"AMZ-1","na":1,"nb":5,"a":[["ARO%3A3007694","AMZ-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"ARO:3009134","l":"antifungal resistance-associated MSH2","na":1,"nb":5,"a":[["ARO%3A3009134","antifungal resistance-associated MSH2"]],"b":[["antifungal/amphotericin-b.html","amphotericin B"],["antifungal/caspofungin.html","caspofungin"],["antifungal/fluconazole.html","fluconazole"],["antifungal/micafungin.html","micafungin"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"CHEBI:15649","l":"3,6,9-trihydroxypterocarpan","na":5,"nb":1,"a":[["EC%3A1.14.14.93","3,9-dihydroxypterocarpan 6a-monooxygenase"],["EC%3A2.5.1.36","trihydroxypterocarpan dimethylallyltransferase"],["RHEA%3A15321","(6aR,11aR)-3,9-dihydroxypterocarpan + reduced [NADPH--hemoprotein reductase] + O2 = (6aS,11aS)-3,6a,9-trihydroxypterocarpan + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A19345","(6aS,11aS)-3,6a,9-trihydroxypterocarpan + dimethylallyl diphosphate = (6aS,11aS)-2-dimethylallyl-3,6a,9-trihydroxypterocarpan + diphosphate"],["RHEA%3A23184","(6aS,11aS)-3,6a,9-trihydroxypterocarpan + dimethylallyl diphosphate = (6aS,11aS)-4-dimethylallyl-3,6a,9-trihydroxypterocarpan + diphosphate"]],"b":[["antibacterial/3-6-9-trihydroxypterocarpan.html","3,6,9-trihydroxypterocarpan"]]},{"id":"CHEBI:16670","l":"peptide","na":5,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A9.B.46","The Staphylococcus aureus Putative Quorum Sensing Peptide Exporter, AgrB (AgrB) Family"],["TCDB%3A3.A.25","The Symbiont-specific ERAD-like Machinery (SELMA) Family"],["proteintraitsmech%3ABIOLIP_PEPTIDE","peptide-binding site"]],"b":[["antibacterial/cefbuperazone.html","cefbuperazone"]]},{"id":"CHEBI:17043","l":"biphenyl-2-ol","na":5,"nb":1,"a":[["EC%3A1.14.13.44","2-hydroxybiphenyl 3-monooxygenase"],["EC%3A3.13.1.3","2'-hydroxybiphenyl-2-sulfinate desulfinase"],["RHEA%3A12945","2'-hydroxybiphenyl-2-sulfinate + H2O = biphenyl-2-ol + sulfite + H(+)"],["RHEA%3A11996","biphenyl-2-ol + NADH + O2 + H(+) = biphenyl-2,3-diol + NAD(+) + H2O"],["MCSA%3A971","2'-hydroxybiphenyl-2-sulfinate desulfinase"]],"b":[["antifungal/biphenyl-2-ol.html","biphenyl-2-ol"]]},{"id":"CHEBI:17183","l":"sanguinarine","na":5,"nb":1,"a":[["EC%3A1.3.1.107","sanguinarine reductase"],["EC%3A1.5.3.12","dihydrobenzophenanthridine oxidase"],["RHEA%3A41660","dihydrosanguinarine + NAD(+) = sanguinarine + NADH"],["RHEA%3A41656","dihydrosanguinarine + NADP(+) = sanguinarine + NADPH"],["RHEA%3A16621","dihydrosanguinarine + O2 + H(+) = sanguinarine + H2O2"]],"b":[["antifungal/sanguinarine.html","sanguinarine"]]},{"id":"CHEBI:18145","l":"(R,R,R)-α-tocopherol","na":5,"nb":1,"a":[["EC%3A2.1.1.95","tocopherol C-methyltransferase"],["RHEA%3A71507","(+)-alpha-tocopherol(out) = (+)-alpha-tocopherol(in)"],["RHEA%3A45108","(+)-alpha-tocopherol + reduced [NADPH--hemoprotein reductase] + O2 = 13-hydroxy-alpha-tocopherol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A24012","gamma-tocopherol + S-adenosyl-L-methionine = (+)-alpha-tocopherol + S-adenosyl-L-homocysteine + H(+)"],["proteintraitsmech%3ABIOLIP_VIV","VIV-binding site"]],"b":[["antiviral/r-r-r-%CE%B1-tocopherol.html","(R,R,R)-α-tocopherol"]]},{"id":"CHEBI:23403","l":"","na":1,"nb":5,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antibacterial/5-6-7-trimethoxycoumarin.html","5,6,7-trimethoxycoumarin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/glycyrin.html","glycyrin"],["antifungal/coumoxystrobin.html","coumoxystrobin"],["antiviral/soulattrolide.html","soulattrolide"]]},{"id":"CHEBI:28600","l":"farnesol","na":1,"nb":5,"a":[["RHEA%3A79359","farnesol + 2 Fe(III)-[cytochrome c] = farnesal + 2 Fe(II)-[cytochrome c] + 2 H(+)"]],"b":[["unspecified/2-cis-6-cis-farnesol.html","(2-cis,6-cis)-farnesol"],["unspecified/2-cis-6-trans-farnesol.html","(2-cis,6-trans)-farnesol"],["unspecified/2-trans-6-cis-farnesol.html","(2-trans,6-cis)-farnesol"],["unspecified/2-trans-6-trans-farnesol.html","(2-trans,6-trans)-farnesol"],["unspecified/farnesol.html","farnesol"]]},{"id":"CHEBI:33704","l":"","na":5,"nb":1,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["MCSA%3A396","aspartic peptidase"],["MCSA%3A169","dipeptidyl-peptidase IV"],["MCSA%3A425","plasmin"],["MCSA%3A412","prolyl aminopeptidase"]],"b":[["antiprotozoal/eflornithine.html","eflornithine"]]},{"id":"CHEBI:34994","l":"","na":1,"nb":5,"a":[["TCDB%3A2.A.128","The Multidrug Resistance Exporter VanZ (VanZ) Family"]],"b":[["unspecified/teicoplanin-a2-1.html","teicoplanin A2-1"],["unspecified/teicoplanin-a2-2.html","teicoplanin A2-2"],["unspecified/teicoplanin-a2-3.html","teicoplanin A2-3"],["unspecified/teicoplanin-a2-4.html","teicoplanin A2-4"],["unspecified/teicoplanin-a2-5.html","teicoplanin A2-5"]]},{"id":"CHEBI:36835","l":"","na":5,"nb":1,"a":[["EC%3A1.1.1.213","3alpha-hydroxysteroid dehydrogenase (Re-specific)"],["EC%3A1.1.1.357","3alpha-hydroxysteroid 3-dehydrogenase"],["EC%3A1.1.1.50","3alpha-hydroxysteroid 3-dehydrogenase (Si-specific)"],["RHEA%3A34779","a 3alpha-hydroxysteroid + NAD(+) = a 3-oxosteroid + NADH + H(+)"],["RHEA%3A34783","a 3alpha-hydroxysteroid + NADP(+) = a 3-oxosteroid + NADPH + H(+)"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"CHEBI:3900","l":"costunolide","na":5,"nb":1,"a":[["EC%3A1.14.14.150","costunolide synthase"],["RHEA%3A56992","6alpha-hydroxygermacra-1(10),4,11(13)-trien-12-oate + H(+) = (+)-costunolide + H2O"],["RHEA%3A61324","(+)-costunolide + reduced [NADPH--hemoprotein reductase] + O2 = 3beta-hydroxycostunolide + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A61320","(+)-costunolide + reduced [NADPH--hemoprotein reductase] + O2 = parthenolide + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A28230","germacra-1(10),4,11(13)-trien-12-oate + reduced [NADPH--hemoprotein reductase] + O2 = (+)-costunolide + oxidized [NADPH--hemoprotein reductase] + 2 H2O"]],"b":[["antiviral/costunolide.html","costunolide"]]},{"id":"CHEBI:3962","l":"curcumin","na":5,"nb":1,"a":[["EC%3A1.3.1.n3","curcumin reductase"],["EC%3A2.3.1.217","curcumin synthase"],["RHEA%3A34819","dihydrocurcumin + NADP(+) = curcumin + NADPH + H(+)"],["RHEA%3A34823","(E)-feruloylacetyl-CoA + (E)-feruloyl-CoA + H2O = curcumin + CO2 + 2 CoA"],["RHEA%3A34815","tetrahydrocurcumin + 2 NADP(+) = curcumin + 2 NADPH + 2 H(+)"]],"b":[["antifungal/curcumin.html","curcumin"]]},{"id":"CHEBI:5100","l":"flucytosine","na":5,"nb":1,"a":[["ARO%3A3007642","Aspergillus spp. fcyB conferring resistance to 5-flucytosine via reduced permeability"],["ARO%3A3007665","Candida spp. FCY2 conferring resistance to 5-flucytosine via reduced permeability"],["ARO%3A3007641","fungal nucleobase transporters"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.39","The Nucleobase:Cation Symporter-1 (NCS1) Family"]],"b":[["antifungal/flucytosine.html","flucytosine"]]},{"id":"CHEBI:58001","l":"","na":5,"nb":1,"a":[["EC%3A1.5.3.25","fructosyl amine oxidase (glucosone-forming)"],["RHEA%3A21916","2 Fe(III)-[cytochrome c550] + an aliphatic amine + H2O = 2 Fe(II)-[cytochrome c550] + an aldehyde + NH4(+) + 2 H(+)"],["RHEA%3A51128","an aliphatic amine + A + H2O = an aldehyde + AH2 + NH4(+)"],["RHEA%3A77795","an (E)-{[(2R,3S,4R,5R)-2,3,4,5-tetrahydroxyoxan-2-yl]methylidene}amine + H2O + H(+) = an aliphatic amine + 2-dehydro-D-glucose"],["RHEA%3A77787","an N-(1-deoxy-beta-D-fructopyranos-1-yl)amine + O2 + H2O = an aliphatic amine + 2-dehydro-D-glucose + H2O2"]],"b":[["unspecified/streptothricin-f-3.html","streptothricin F(3+)"]]},{"id":"CHEBI:62219","l":"2-heptyl-4-quinolone","na":5,"nb":1,"a":[["EC%3A1.14.13.182","2-heptyl-3-hydroxy-4(1H)-quinolone synthase"],["EC%3A2.3.1.230","2-heptyl-4(1H)-quinolone synthase"],["RHEA%3A50408","1-(2-aminophenyl)decane-1,3-dione = 2-heptyl-4(1H)-quinolone + H2O"],["RHEA%3A50396","(2-aminobenzoyl)acetate + octanoyl-CoA + H(+) = 2-heptyl-4(1H)-quinolone + CO2 + CoA + H2O"],["RHEA%3A37871","2-heptyl-4(1H)-quinolone + NADH + O2 + H(+) = 2-heptyl-3-hydroxy-4(1H)-quinolone + NAD(+) + H2O"]],"b":[["antibacterial/2-heptyl-4-quinolone.html","2-heptyl-4-quinolone"]]},{"id":"CHEBI:90888","l":"aurachin C","na":5,"nb":1,"a":[["EC%3A1.14.13.222","aurachin C monooxygenase/isomerase"],["RHEA%3A49000","aurachin C + NADH + O2 + H(+) = 4-hydroxy-2-methyl-3-oxo-4-[(2E,6E)-farnesyl]-3,4-dihydroquinoline 1-oxide + NAD(+) + H2O"],["RHEA%3A49012","aurachin C + NADH + O2 + H(+) = aurachin C epoxide + NAD(+) + H2O"],["RHEA%3A49004","aurachin C + NADPH + O2 + H(+) = 4-hydroxy-2-methyl-3-oxo-4-[(2E,6E)-farnesyl]-3,4-dihydroquinoline 1-oxide + NADP(+) + H2O"],["RHEA%3A49008","aurachin C + NADPH + O2 + H(+) = aurachin C epoxide + NADP(+) + H2O"]],"b":[["antibacterial/aurachin-c.html","aurachin C"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":5,"nb":1,"a":[["TED%3AAF-A0A4Y6CF56-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y6CF56-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6CNZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Y6CNZ1-F1-model_v4_TED02"],["TED%3AAF-A0A7Y4IIX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4IIX4-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6B7F9-F1-model_v4_TED01","TED novel fold AF-A0A4Y6B7F9-F1-model_v4_TED01"],["TED%3AAF-A0A7Y4IR70-F1-model_v4_TED01","TED novel fold AF-A0A7Y4IR70-F1-model_v4_TED01"]],"b":[["antibacterial/althiomycin.html","althiomycin"]]},{"id":"NCBITaxon:43658","l":"Pseudoalteromonas rubra","na":5,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_Orn_monoox","Metallophore-associated ornithine N5-monooxygenase family"],["TED%3AAF-A0A0F4QZE1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0F4QZE1-F1-model_v4_TED02"],["TED%3AAF-A0A0U3GWJ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0U3GWJ2-F1-model_v4_TED01"],["TED%3AAF-A0A0F4QSG0-F1-model_v4_TED02","TED novel fold AF-A0A0F4QSG0-F1-model_v4_TED02"],["TED%3AAF-A0A0L0EPH9-F1-model_v4_TED03","TED novel fold AF-A0A0L0EPH9-F1-model_v4_TED03"]],"b":[["unspecified/prodigiosin.html","prodigiosin"]]},{"id":"UniProt:P03366","l":"","na":5,"nb":1,"a":[["MCSA%3A1000","HIV-1 reverse transcriptase"],["proteintraitsmech%3ABIOLIP_7N1","7N1-binding site"],["proteintraitsmech%3ABIOLIP_VTN","VTN-binding site"],["proteintraitsmech%3ABIOLIP_ZP4","ZP4-binding site"],["proteintraitsmech%3AMETALPDB_Y_DINUCLEAR","dinuclear yttrium site"]],"b":[["antiviral/nevirapine.html","nevirapine"]]},{"id":"ARO:3000245","l":"RbpA","na":1,"nb":4,"a":[["ARO%3A3000245","RbpA"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3000261","l":"sigma factor conferring resistance to rifampin","na":1,"nb":4,"a":[["ARO%3A3000261","sigma factor conferring resistance to rifampin"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3000300","l":"lsaA","na":1,"nb":4,"a":[["ARO%3A3000300","lsaA"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/pleuromutilin.html","pleuromutilin"],["antibacterial/quinupristin.html","quinupristin"]]},{"id":"ARO:3000363","l":"EreB","na":1,"nb":4,"a":[["ARO%3A3000363","EreB"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/roxithromycin.html","roxithromycin"]]},{"id":"ARO:3000421","l":"norB","na":1,"nb":4,"a":[["ARO%3A3000421","norB"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"],["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/sparfloxacin.html","sparfloxacin"]]},{"id":"ARO:3000444","l":"rphA","na":1,"nb":4,"a":[["ARO%3A3000444","rphA"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3000462","l":"mgtA","na":1,"nb":4,"a":[["ARO%3A3000462","mgtA"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/methymycin.html","methymycin"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3000463","l":"gimA","na":1,"nb":4,"a":[["ARO%3A3000463","gimA"]],"b":[["antibacterial/chalcomycin.html","chalcomycin"],["antibacterial/methymycin.html","methymycin"],["antibacterial/oleandomycin.html","oleandomycin"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3000501","l":"rpoB2","na":1,"nb":4,"a":[["ARO%3A3000501","rpoB2"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3000873","l":"TEM-1","na":1,"nb":4,"a":[["ARO%3A3000873","TEM-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"]]},{"id":"ARO:3001328","l":"Escherichia coli mdfA","na":1,"nb":4,"a":[["ARO%3A3001328","Escherichia coli mdfA"]],"b":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/tetracycline.html","tetracycline"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3001396","l":"OXA-1","na":1,"nb":4,"a":[["ARO%3A3001396","OXA-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/piperacillin.html","piperacillin"]]},{"id":"ARO:3001818","l":"ACC-4","na":1,"nb":4,"a":[["ARO%3A3001818","ACC-4"]],"b":[["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/cefuroxime.html","cefuroxime"]]},{"id":"ARO:3002547","l":"","na":1,"nb":4,"a":[["ARO%3A3002547","AAC(6')-Ib-cr1"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002623","l":"","na":1,"nb":4,"a":[["ARO%3A3002623","ANT(4')-Ia"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002634","l":"","na":1,"nb":4,"a":[["ARO%3A3002634","APH(2')-Ie"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002636","l":"","na":1,"nb":4,"a":[["ARO%3A3002636","APH(2')-IIIa"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002637","l":"","na":1,"nb":4,"a":[["ARO%3A3002637","APH(2')-IVa"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002665","l":"npmA","na":1,"nb":4,"a":[["ARO%3A3002665","npmA"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3002667","l":"rmtD","na":1,"nb":4,"a":[["ARO%3A3002667","rmtD"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002668","l":"rmtG","na":1,"nb":4,"a":[["ARO%3A3002668","rmtG"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002669","l":"","na":1,"nb":4,"a":[["ARO%3A3002669","APH(2')-Ig"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002883","l":"rgt1438","na":1,"nb":4,"a":[["ARO%3A3002883","rgt1438"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3002884","l":"iri","na":1,"nb":4,"a":[["ARO%3A3002884","iri"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3002985","l":"arnA","na":4,"nb":1,"a":[["ARO%3A3002985","arnA"],["ARO%3A3005053","ArnT"],["ARO%3A3003578","PmrF"],["ARO%3A3003577","ugd"]],"b":[["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3003001","l":"CfxA","na":1,"nb":4,"a":[["ARO%3A3003001","CfxA"]],"b":[["antibacterial/cefmetazole.html","cefmetazole"],["antibacterial/cefotetan.html","cefotetan"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/flomoxef.html","flomoxef"]]},{"id":"ARO:3003029","l":"MexVW-OprM","na":1,"nb":4,"a":[["ARO%3A3003029","MexVW-OprM"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/tetracycline.html","tetracycline"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3003198","l":"rmtH","na":1,"nb":4,"a":[["ARO%3A3003198","rmtH"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3003223","l":"Escherichia coli 16S rRNA mutation conferring resistance to edeine","na":1,"nb":4,"a":[["ARO%3A3003223","Escherichia coli 16S rRNA mutation conferring resistance to edeine"]],"b":[["antibacterial/edeine-a.html","edeine A"],["antibacterial/edeine-b.html","edeine B"],["antibacterial/edeine-d.html","edeine D"],["antibacterial/edeine-f.html","edeine F"]]},{"id":"ARO:3003272","l":"daptomycin resistant cls","na":4,"nb":1,"a":[["ARO%3A3003272","daptomycin resistant cls"],["ARO%3A3003760","Enterococcus faecalis cls with mutation conferring resistance to daptomycin"],["ARO%3A3003092","Enterococcus faecium cls conferring resistance to daptomycin"],["ARO%3A3003074","Staphylococcus aureus cls conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003283","l":"Mycobacterium tuberculosis rpoB with mutations conferring resistance to rifampicin","na":1,"nb":4,"a":[["ARO%3A3003283","Mycobacterium tuberculosis rpoB with mutations conferring resistance to rifampicin"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3003284","l":"Mycobacterium leprae rpoB mutations conferring resistance to rifampicin","na":1,"nb":4,"a":[["ARO%3A3003284","Mycobacterium leprae rpoB mutations conferring resistance to rifampicin"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3003285","l":"Staphylococcus aureus rpoB mutants conferring resistance to rifampicin","na":1,"nb":4,"a":[["ARO%3A3003285","Staphylococcus aureus rpoB mutants conferring resistance to rifampicin"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3003288","l":"Escherichia coli rpoB mutants conferring resistance to rifampicin","na":1,"nb":4,"a":[["ARO%3A3003288","Escherichia coli rpoB mutants conferring resistance to rifampicin"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3003395","l":"Mycobacterium tuberculosis rpsL mutations conferring resistance to Streptomycin","na":4,"nb":1,"a":[["ARO%3A3003419","antibiotic-resistant rpsL"],["ARO%3A3003395","Mycobacterium tuberculosis rpsL mutations conferring resistance to Streptomycin"],["ARO%3A3005082","Ribosomal protein mutation conferring resistance to pleuromutilin antibiotics"],["ARO%3A3005081","Thermus thermophilus uL3 mutations conferring resistance to pleuromutilin antibiotics"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003686","l":"Pseudomonas aeruginosa oprD with mutation conferring resistance to imipenem","na":4,"nb":1,"a":[["ARO%3A3005068","ParR"],["ARO%3A3005066","parRS"],["ARO%3A3005067","ParS"],["ARO%3A3003686","Pseudomonas aeruginosa oprD with mutation conferring resistance to imipenem"]],"b":[["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3003746","l":"optrA","na":1,"nb":4,"a":[["ARO%3A3003746","optrA"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"],["antibacterial/linezolid.html","linezolid"],["antibacterial/tedizolid.html","tedizolid"]]},{"id":"ARO:3003905","l":"","na":1,"nb":4,"a":[["ARO%3A3003905","ANT(4')-Ib"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3003921","l":"oqxAB","na":1,"nb":4,"a":[["ARO%3A3003921","oqxAB"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nitrofurantoin.html","nitrofurantoin"],["antibacterial/tigecycline.html","tigecycline"],["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003942","l":"abcA","na":1,"nb":4,"a":[["ARO%3A3003942","abcA"]],"b":[["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/methicillin.html","methicillin"],["antibacterial/moenomycin-a1.html","moenomycin A1"]]},{"id":"ARO:3003965","l":"hp1184","na":1,"nb":4,"a":[["ARO%3A3003965","hp1184"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/metronidazole.html","metronidazole"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003992","l":"rphB","na":1,"nb":4,"a":[["ARO%3A3003992","rphB"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3004030","l":"RosAB","na":1,"nb":4,"a":[["ARO%3A3004030","RosAB"]],"b":[["antibacterial/polymyxin-b1.html","polymyxin B1"],["antibacterial/polymyxin-b2.html","polymyxin B2"],["antibacterial/polymyxin-b3.html","polymyxin B3"],["antibacterial/polymyxin-b4.html","polymyxin B4"]]},{"id":"ARO:3004123","l":"Burkholderia pseudomallei Omp38","na":1,"nb":4,"a":[["ARO%3A3004123","Burkholderia pseudomallei Omp38"]],"b":[["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3004126","l":"Escherichia coli LamB","na":1,"nb":4,"a":[["ARO%3A3004126","Escherichia coli LamB"]],"b":[["antibacterial/balofloxacin.html","Balofloxacin"],["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3004181","l":"Streptococcus pneumoniae 23S rRNA mutation conferring resistance to macrolides and streptogramins antibiotics","na":1,"nb":4,"a":[["ARO%3A3004181","Streptococcus pneumoniae 23S rRNA mutation conferring resistance to macrolides and streptogramins antibiotics"]],"b":[["antibacterial/josamycin.html","josamycin"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"],["antibacterial/tylosin.html","tylosin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3004359","l":"ACI-1","na":1,"nb":4,"a":[["ARO%3A3004359","ACI-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3004562","l":"Clostridioides difficile gyrB conferring resistance to fluoroquinolones","na":1,"nb":4,"a":[["ARO%3A3004562","Clostridioides difficile gyrB conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/gemifloxacin.html","gemifloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3004599","l":"clcD","na":1,"nb":4,"a":[["ARO%3A3004599","clcD"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/florfenicol.html","florfenicol"],["antibacterial/linezolid.html","linezolid"],["antibacterial/tiamulin.html","tiamulin"]]},{"id":"ARO:3004606","l":"erm(40)","na":1,"nb":4,"a":[["ARO%3A3004606","erm(40)"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3004667","l":"Staphylococcus aureus norA","na":1,"nb":4,"a":[["ARO%3A3004667","Staphylococcus aureus norA"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3005059","l":"LptD","na":1,"nb":4,"a":[["ARO%3A3005059","LptD"]],"b":[["antibacterial/imipenem.html","imipenem"],["antibacterial/novobiocin.html","novobiocin"],["antibacterial/polymyxin-b2.html","polymyxin B2"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3005112","l":"","na":1,"nb":4,"a":[["ARO%3A3005112","AAC(6')-Ib-cr3"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005114","l":"","na":1,"nb":4,"a":[["ARO%3A3005114","AAC(6')-Ib-cr4"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005115","l":"","na":1,"nb":4,"a":[["ARO%3A3005115","AAC(6')-Ib-cr5"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005116","l":"","na":1,"nb":4,"a":[["ARO%3A3005116","AAC(6')-Ib-cr6"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005117","l":"","na":1,"nb":4,"a":[["ARO%3A3005117","AAC(6')-Ib-cr7"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005118","l":"","na":1,"nb":4,"a":[["ARO%3A3005118","AAC(6')-Ib-cr8"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005119","l":"","na":1,"nb":4,"a":[["ARO%3A3005119","AAC(6')-Ib-cr9"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005121","l":"lsaD","na":1,"nb":4,"a":[["ARO%3A3005121","lsaD"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3007028","l":"salD","na":1,"nb":4,"a":[["ARO%3A3007028","salD"]],"b":[["antibacterial/lincomycin.html","lincomycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3007206","l":"KBL-1","na":1,"nb":4,"a":[["ARO%3A3007206","KBL-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/piperacillin.html","piperacillin"]]},{"id":"ARO:3007442","l":"SSA","na":1,"nb":4,"a":[["ARO%3A3007442","SSA"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007456","l":"dfrL","na":1,"nb":4,"a":[["ARO%3A3007456","dfrL"]],"b":[["antibacterial/streptomycin.html","streptomycin"],["antibacterial/tetracycline.html","tetracycline"],["antibacterial/tobramycin.html","tobramycin"],["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3007645","l":"Clostridium sporogenes cplR","na":1,"nb":4,"a":[["ARO%3A3007645","Clostridium sporogenes cplR"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/hygromycin-a.html","hygromycin A"],["antibacterial/iboxamycin.html","iboxamycin"],["antibacterial/retapamulin.html","retapamulin"]]},{"id":"ARO:3007650","l":"CDA-1","na":1,"nb":4,"a":[["ARO%3A3007650","CDA-1"]],"b":[["antibacterial/cefaloridine.html","cefaloridine"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3007670","l":"Aspergillus spp. Hmg1 with mutations conferring resistance to triazoles antibiotics","na":1,"nb":4,"a":[["ARO%3A3007670","Aspergillus spp. Hmg1 with mutations conferring resistance to triazoles antibiotics"]],"b":[["antifungal/isavuconazole.html","isavuconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"ARO:3007770","l":"","na":1,"nb":4,"a":[["ARO%3A3007770","aac(6')-Ib-cr10"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3007771","l":"","na":1,"nb":4,"a":[["ARO%3A3007771","aac(6')-Ib-cr11"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"CHEBI:140434","l":"3-[(Z)-2-isocyanovinyl]indole","na":4,"nb":1,"a":[["EC%3A1.14.20.11","3-[(Z)-2-isocyanoethenyl]-1H-indole synthase"],["EC%3A2.5.1.146","3-geranyl-3-[(Z)-2-isocyanoethenyl]indole synthase"],["RHEA%3A56700","(2S)-3-(1H-indol-3-yl)-2-isocyanopropanoate + 2-oxoglutarate + O2 + H(+) = 3-[(Z)-2-isocyanoethenyl]-1H-indole + succinate + 2 CO2 + H2O"],["RHEA%3A17349","3-[(Z)-2-isocyanoethenyl]-1H-indole + (2E)-geranyl diphosphate = 3-geranyl-3-[(Z)-2-isocyanoethenyl]-1H-indole + diphosphate"]],"b":[["antibacterial/3-z-2-isocyanovinyl-indole.html","3-[(Z)-2-isocyanovinyl]indole"]]},{"id":"CHEBI:140662","l":"2,4-diacetylphloroglucinol(1−)","na":4,"nb":1,"a":[["EC%3A2.3.1.272","2-acetylphloroglucinol acetyltransferase"],["EC%3A3.7.1.24","2,4-diacetylphloroglucinol hydrolase"],["RHEA%3A48236","2 2-acetylphloroglucinol = 2,4-diacetylphloroglucinol + 1,3,5-trihydroxybenzene + H(+)"],["RHEA%3A59184","2,4-diacetylphloroglucinol + H2O = 2-acetylphloroglucinol + acetate"]],"b":[["antifungal/2-4-diacetylphloroglucinol-1.html","2,4-diacetylphloroglucinol(1−)"]]},{"id":"CHEBI:16786","l":"vestitone","na":4,"nb":1,"a":[["EC%3A1.1.1.348","(3R)-2'-hydroxyisoflavanone reductase"],["EC%3A1.3.1.45","2'-hydroxyisoflavone reductase"],["RHEA%3A35403","(3R,4R)-7,2'-dihydroxy-4'-methoxyisoflavanol + NADP(+) = (3R)-vestitone + NADPH + H(+)"],["RHEA%3A22560","(3R)-vestitone + NADP(+) = 2'-hydroxyformononetin + NADPH + 2 H(+)"]],"b":[["antibacterial/vestitone.html","vestitone"]]},{"id":"CHEBI:17302","l":"pentadecanal","na":4,"nb":1,"a":[["EC%3A1.11.1.3","fatty-acid peroxidase"],["RHEA%3A68480","(2R)-2-hydroperoxyhexadecanoate + H(+) = pentadecanal + CO2 + H2O"],["RHEA%3A55212","(2R)-hydroxyhexadecanoyl-CoA = pentadecanal + formyl-CoA"],["RHEA%3A23960","hexadecanoate + 2 H2O2 + H(+) = pentadecanal + CO2 + 3 H2O"]],"b":[["unspecified/pentadecanal.html","pentadecanal"]]},{"id":"CHEBI:192702","l":"ladanein","na":4,"nb":1,"a":[["RHEA%3A73435","apigenin 4',7-dimethyl ether + reduced [NADPH--hemoprotein reductase] + O2 = ladanein + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A73247","ladanein + S-adenosyl-L-methionine = salvigenin + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A73111","scutellarein 4'-methyl ether + S-adenosyl-L-methionine = ladanein + S-adenosyl-L-homocysteine"],["RHEA%3A73239","scutellarein 7-methyl ether + S-adenosyl-L-methionine = ladanein + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antiviral/ladanein.html","ladanein"]]},{"id":"CHEBI:24043","l":"","na":4,"nb":1,"a":[["EC%3A1.14.19.76","flavone synthase II"],["EC%3A1.14.20.5","flavone synthase I"],["RHEA%3A10448","a flavanone + 2-oxoglutarate + O2 = a flavone + succinate + CO2 + H2O"],["RHEA%3A57680","a flavanone + reduced [NADPH--hemoprotein reductase] + O2 = a flavone + oxidized [NADPH--hemoprotein reductase] + 2 H2O + H(+)"]],"b":[["antibacterial/flavocillin.html","flavocillin"]]},{"id":"CHEBI:2448","l":"actinorhodin","na":4,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["proteintraitsmech%3ABIOLIP_ZCT","ZCT-binding site"]],"b":[["unspecified/actinorhodin.html","actinorhodin"]]},{"id":"CHEBI:25675","l":"","na":1,"nb":4,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/oligomycin-a.html","oligomycin A"],["antifungal/oligomycin-d.html","oligomycin D"],["unspecified/oligomycin-b.html","oligomycin B"],["unspecified/oligomycin-c.html","oligomycin C"]]},{"id":"CHEBI:26580","l":"","na":1,"nb":4,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifamycin-sv.html","rifamycin SV"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"CHEBI:27659","l":"","na":4,"nb":1,"a":[["EC%3A1.2.1.23","2-oxoaldehyde dehydrogenase (NAD(+))"],["EC%3A1.2.1.49","2-oxoaldehyde dehydrogenase (NADP(+))"],["RHEA%3A22276","2-oxoaldehyde + NAD(+) + H2O = a 2-oxocarboxylate + NADH + 2 H(+)"],["RHEA%3A18129","2-oxoaldehyde + NADP(+) + H2O = a 2-oxocarboxylate + NADPH + 2 H(+)"]],"b":[["antibacterial/4-hydroxy-2-oxobutanal.html","4-hydroxy-2-oxobutanal"]]},{"id":"CHEBI:27856","l":"","na":4,"nb":1,"a":[["EC%3A3.5.1.4","amidase"],["RHEA%3A85603","acetamide = acetonitrile + H2O"],["RHEA%3A45048","acetamide + H2O = acetate + NH4(+)"],["RHEA%3A51648","N(6)-acetyl-L-lysyl-[protein] + O2 + H2O = acetamide + (S)-2-amino-6-oxohexanoyl-[protein] + H2O2"]],"b":[["unspecified/acetylblasticidin-s.html","acetylblasticidin S"]]},{"id":"CHEBI:28327","l":"naringenin 7-O-β-D-glucoside","na":4,"nb":1,"a":[["EC%3A2.4.1.185","flavanone 7-O-beta-glucosyltransferase"],["RHEA%3A69671","(2S)-naringenin 7-O-beta-D-glucoside + H2O = (2S)-naringenin + beta-D-glucose"],["RHEA%3A67356","(2S)-naringenin 7-O-beta-D-glucoside + malonyl-CoA = (2S)-naringenin 7-O-(6-O-malonyl-beta-D-glucoside) + CoA"],["RHEA%3A65152","(2S)-naringenin + UDP-alpha-D-glucose = (2S)-naringenin 7-O-beta-D-glucoside + UDP + H(+)"]],"b":[["antibacterial/naringenin-7-o-%CE%B2-d-glucoside.html","naringenin 7-O-β-D-glucoside"]]},{"id":"CHEBI:28913","l":"(2E)-hexenal","na":4,"nb":1,"a":[["RHEA%3A60988","(E)-hex-2-en-1-ol + NAD(+) = (E)-hex-2-enal + NADH + H(+)"],["RHEA%3A58424","(E)-hex-2-en-1-ol + NADP(+) = (E)-hex-2-enal + NADPH + H(+)"],["RHEA%3A77419","(E)-hex-2-enal + hydrogen cyanide = (2S,3E)-2-hydroxyhept-3-enenitrile"],["RHEA%3A50776","hexanal + NADP(+) = (E)-hex-2-enal + NADPH + H(+)"]],"b":[["antibacterial/2e-hexenal.html","(2E)-hexenal"]]},{"id":"CHEBI:28927","l":"sakuranetin","na":4,"nb":1,"a":[["EC%3A2.1.1.232","naringenin 7-O-methyltransferase"],["RHEA%3A31539","(2S)-naringenin + S-adenosyl-L-methionine = (2S)-sakuranetin + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A73431","(2S)-sakuranetin + reduced [NADPH--hemoprotein reductase] + O2 = (2S)-7-methylcarthamidin + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A73255","(2S)-sakuranetin + S-adenosyl-L-methionine = (2S)-naringenin 4',7-dimethyl ether + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antimycobacterial/sakuranetin.html","sakuranetin"]]},{"id":"CHEBI:31144","l":"8-demethyltetracenomycin C","na":4,"nb":1,"a":[["EC%3A1.14.13.200","tetracenomycin A2 monooxygenase-diooxygenase"],["EC%3A2.4.1.331","8-demethyltetracenomycin C L-rhamnosyltransferase"],["RHEA%3A42848","8-demethyltetracenomycin C + dTDP-beta-L-rhamnose = 8-demethyl-8-alpha-L-rhamnosyl-tetracenomycin C + dTDP + H(+)"],["RHEA%3A76467","tetracenomycin B2 + 2 NADPH + 2 O2 + 2 H(+) = 8-demethyltetracenomycin C + 2 NADP(+) + H2O"]],"b":[["unspecified/8-demethyltetracenomycin-c.html","8-demethyltetracenomycin C"]]},{"id":"CHEBI:33859","l":"","na":1,"nb":4,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/oxolinic-acid.html","oxolinic acid"],["antifungal/1-2-3-benzothiadiazole-7-carboxylic-acid.html","1,2,3-benzothiadiazole-7-carboxylic acid"],["antifungal/phenazine-1-carboxylic-acid.html","phenazine-1-carboxylic acid"],["antifungal/piperonylic-acid.html","piperonylic acid"]]},{"id":"CHEBI:34848","l":"mevastatin","na":4,"nb":1,"a":[["RHEA%3A51668","mevastatin + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = pravastatin lactone + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"],["RHEA%3A62744","mevastatin + H2O = compactin diol lactone + (S)-2-methylbutanoate + H(+)"],["RHEA%3A63044","mevastatin + H2O = mevinic carboxylate + H(+)"],["proteintraitsmech%3ABIOLIP_2UO","2UO-binding site"]],"b":[["antifungal/mevastatin.html","mevastatin"]]},{"id":"CHEBI:3508","l":"ceftazidime","na":4,"nb":1,"a":[["TCDB%3A8.A.213","The Bon Domain-containing Protein (Bon DP) Family"],["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["TCDB%3A2.C.1","The TonB-ExbB-ExbD/TolA-TolQ-TolR Outer Membrane Receptor Energizers and Stabilizers (TonB/TolA) Family"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"CHEBI:45744","l":"N-acetyl-β-neuraminic acid","na":4,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.21","The Solute:Sodium Symporter (SSS) Family"],["TCDB%3A2.A.56","The Tripartite ATP-independent Periplasmic Transporter (TRAP-T) Family"],["proteintraitsmech%3ABIOLIP_SLB","SLB-binding site"]],"b":[["antiviral/n-acetyl-%CE%B2-neuraminic-acid.html","N-acetyl-β-neuraminic acid"]]},{"id":"CHEBI:46081","l":"fluconazole","na":4,"nb":1,"a":[["RHEA%3A61916","fluconazole(in) + ATP + H2O = fluconazole(out) + ADP + phosphate + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_TPF","TPF-binding site"]],"b":[["antifungal/fluconazole.html","fluconazole"]]},{"id":"CHEBI:46634","l":"","na":1,"nb":4,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/1-carbapenem-3-carboxylic-acid.html","1-carbapenem-3-carboxylic acid"],["antibacterial/carbapenem-mm22383.html","carbapenem MM22383"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"CHEBI:50477","l":"","na":1,"nb":4,"a":[["RHEA%3A47348","a butanoate ester + H2O = an aliphatic alcohol + butanoate + H(+)"]],"b":[["antibacterial/caminoside-a.html","caminoside A"],["antimycobacterial/caseargrewiin-b.html","caseargrewiin B"],["antiviral/clathsterol-disulfonic-acid.html","clathsterol disulfonic acid"],["antiviral/clathsterol.html","clathsterol"]]},{"id":"CHEBI:51460","l":"albaflavenone","na":4,"nb":1,"a":[["EC%3A1.14.15.39","epi-isozizaene 5-monooxygenase"],["RHEA%3A25988","(5R)-albaflavenol + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = albaflavenone + 2 oxidized [2Fe-2S]-[ferredoxin] + 2 H2O"],["RHEA%3A25980","(5S)-albaflavenol + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = albaflavenone + 2 oxidized [2Fe-2S]-[ferredoxin] + 2 H2O"],["RHEA%3A32439","(+)-epi-isozizaene + 4 reduced [2Fe-2S]-[ferredoxin] + 2 O2 + 4 H(+) = albaflavenone + 4 oxidized [2Fe-2S]-[ferredoxin] + 3 H2O"]],"b":[["unspecified/albaflavenone.html","albaflavenone"]]},{"id":"CHEBI:5169","l":"fraxetin","na":4,"nb":1,"a":[["EC%3A1.14.11.60","scopoletin 8-hydroxylase"],["EC%3A1.14.14.164","fraxetin 5-hydroxylase"],["RHEA%3A57844","fraxetin + reduced [NADPH--hemoprotein reductase] + O2 = sideretin (reduced form) + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A57848","scopoletin + 2-oxoglutarate + O2 = fraxetin + succinate + CO2"]],"b":[["antibacterial/fraxetin.html","fraxetin"]]},{"id":"CHEBI:55429","l":"cephamycin","na":1,"nb":4,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/cefminox.html","cefminox"],["antibacterial/cefotetan.html","cefotetan"],["antibacterial/cefoxitin.html","cefoxitin"],["unspecified/cephamycin-c.html","cephamycin C"]]},{"id":"CHEBI:66331","l":"xanthohumol","na":4,"nb":1,"a":[["EC%3A2.1.1.338","desmethylxanthohumol 6'-O-methyltransferase"],["EC%3A2.1.1.339","xanthohumol 4-O-methyltransferase"],["RHEA%3A51696","desmethylxanthohumol + S-adenosyl-L-methionine = xanthohumol + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A51704","xanthohumol + S-adenosyl-L-methionine = 4-O-methylxanthohumol + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antiviral/xanthohumol.html","xanthohumol"]]},{"id":"CHEBI:67246","l":"(+)-lariciresinol","na":4,"nb":1,"a":[["EC%3A1.23.1.1","(+)-pinoresinol reductase"],["EC%3A1.23.1.2","(+)-lariciresinol reductase"],["RHEA%3A34419","(+)-lariciresinol + NADP(+) = (+)-pinoresinol + NADPH + H(+)"],["RHEA%3A34423","(-)-secoisolariciresinol + NADP(+) = (+)-lariciresinol + NADPH + H(+)"]],"b":[["antifungal/lariciresinol.html","(+)-lariciresinol"]]},{"id":"CHEBI:69023","l":"preaustinoid A","na":4,"nb":1,"a":[["RHEA%3A65144","berkeleyone A + 2-oxoglutarate + O2 = preaustinoid A + succinate + CO2 + H2O"],["RHEA%3A65192","preaustinoid A + 2 2-oxoglutarate + 2 O2 = berkeleytrione + 2 succinate + 2 CO2 + H2O"],["RHEA%3A65168","preaustinoid A + AH2 + O2 = preaustinoid A1 + A + H2O"],["RHEA%3A65180","protoaustinoid B + AH2 + O2 = preaustinoid A + A + H2O"]],"b":[["antibacterial/preaustinoid-a.html","preaustinoid A"]]},{"id":"CHEBI:71311","l":"pyrazine-2-carboxylic acid","na":4,"nb":1,"a":[["ARO%3A3004267","antibiotic resistant pncA"],["ARO%3A3004721","Mycobacterium tuberculosis rpsA mutations conferring resistance to pyrazinamide"],["ARO%3A3004722","pyrazinamide resistant rpsA"],["proteintraitsmech%3ABIOLIP_VGL","VGL-binding site"]],"b":[["antimycobacterial/pyrazine-2-carboxylic-acid.html","pyrazine-2-carboxylic acid"]]},{"id":"CHEBI:74023","l":"dioscin","na":4,"nb":1,"a":[["EC%3A3.2.1.189","dioscin glycosidase (diosgenin-forming)"],["EC%3A3.2.1.190","dioscin glycosidase (3-O-beta-D-Glc-diosgenin-forming)"],["RHEA%3A38939","dioscin + 2 H2O = diosgenin 3-O-beta-D-glucoside + 2 L-rhamnopyranose"],["RHEA%3A36827","dioscin + 3 H2O = diosgenin + 2 L-rhamnopyranose + D-glucose"]],"b":[["antifungal/dioscin.html","dioscin"]]},{"id":"CHEBI:77980","l":"aclacinomycin A zwitterion","na":4,"nb":1,"a":[["EC%3A1.1.3.45","aclacinomycin-N oxidase"],["EC%3A1.3.3.14","aclacinomycin-A oxidase"],["RHEA%3A37791","aclacinomycin A + O2 = aclacinomycin Y + H2O2"],["RHEA%3A37423","aclacinomycin N + O2 = aclacinomycin A + H2O2"]],"b":[["unspecified/aclacinomycin-a-zwitterion.html","aclacinomycin A zwitterion"]]},{"id":"CHEBI:78283","l":"8-demethyl-8-(α-L-rhamnosyl)tetracenomycin C","na":4,"nb":1,"a":[["EC%3A2.1.1.305","8-demethyl-8-alpha-L-rhamnosyl tetracenomycin-C 2'-O-methyltransferase"],["EC%3A2.4.1.331","8-demethyltetracenomycin C L-rhamnosyltransferase"],["RHEA%3A41540","8-demethyl-8-alpha-L-rhamnosyl-tetracenomycin C + S-adenosyl-L-methionine = 8-demethyl-8-(2-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A42848","8-demethyltetracenomycin C + dTDP-beta-L-rhamnose = 8-demethyl-8-alpha-L-rhamnosyl-tetracenomycin C + dTDP + H(+)"]],"b":[["unspecified/8-demethyl-8-%CE%B1-l-rhamnosyl-tetracenomycin-c.html","8-demethyl-8-(α-L-rhamnosyl)tetracenomycin C"]]},{"id":"CHEBI:78285","l":"8-demethyl-8-(2-O-methyl-α-L-rhamnosyl)tetracenomycin C","na":4,"nb":1,"a":[["EC%3A2.1.1.305","8-demethyl-8-alpha-L-rhamnosyl tetracenomycin-C 2'-O-methyltransferase"],["EC%3A2.1.1.306","8-demethyl-8-(2-methoxy-alpha-L-rhamnosyl)-tetracenomycin-C 3'-O- methyltransferase"],["RHEA%3A41544","8-demethyl-8-(2-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-methionine = 8-demethyl-8-(2,3-di-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A41540","8-demethyl-8-alpha-L-rhamnosyl-tetracenomycin C + S-adenosyl-L-methionine = 8-demethyl-8-(2-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-homocysteine + H(+)"]],"b":[["unspecified/8-demethyl-8-2-o-methyl-%CE%B1-l-rhamnosyl-tetracenomycin-c.html","8-demethyl-8-(2-O-methyl-α-L-rhamnosyl)tetracenomycin C"]]},{"id":"CHEBI:78286","l":"8-demethyl-8-(2,3-O-dimethyl-α-L-rhamnosyl)tetracenomycin C","na":4,"nb":1,"a":[["EC%3A2.1.1.306","8-demethyl-8-(2-methoxy-alpha-L-rhamnosyl)-tetracenomycin-C 3'-O- methyltransferase"],["EC%3A2.1.1.307","8-demethyl-8-(2,3-dimethoxy-alpha-L-rhamnosyl)-tetracenomycin-C 4'-O- methyltransferase"],["RHEA%3A41548","8-demethyl-8-(2,3-di-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-methionine = 8-demethyl-8-(2,3,4-tri-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A41544","8-demethyl-8-(2-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-methionine = 8-demethyl-8-(2,3-di-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-homocysteine + H(+)"]],"b":[["unspecified/8-demethyl-8-2-3-o-dimethyl-%CE%B1-l-rhamnosyl-tetracenomycin-c.html","8-demethyl-8-(2,3-O-dimethyl-α-L-rhamnosyl)tetracenomycin C"]]},{"id":"CHEBI:84310","l":"anticapsin zwitterion","na":4,"nb":1,"a":[["EC%3A1.1.1.385","dihydroanticapsin 7-dehydrogenase"],["EC%3A6.3.2.49","L-alanine--L-anticapsin ligase"],["RHEA%3A44332","L-anticapsin + L-alanine + ATP = bacilysin + ADP + phosphate + H(+)"],["RHEA%3A44628","L-dihydroanticapsin + NAD(+) = L-anticapsin + NADH + H(+)"]],"b":[["unspecified/anticapsin-zwitterion.html","anticapsin zwitterion"]]},{"id":"CHEBI:90869","l":"validamycin A(1+)","na":4,"nb":1,"a":[["EC%3A1.14.11.52","validamycin A dioxygenase"],["EC%3A2.4.1.338","validoxylamine A glucosyltransferase"],["RHEA%3A48752","validamycin A + 2-oxoglutarate + O2 = validamycin B + succinate + CO2 + H(+)"],["RHEA%3A49388","validoxylamine A + UDP-alpha-D-glucose = validamycin A + UDP + H(+)"]],"b":[["antifungal/validamycin-a-1.html","validamycin A(1+)"]]},{"id":"CHEBI:9555","l":"tioguanine","na":4,"nb":1,"a":[["EC%3A2.1.1.67","thiopurine S-methyltransferase"],["RHEA%3A56580","6-thioguanine + S-adenosyl-L-methionine = 6-methylthioguanine + S-adenosyl-L-homocysteine + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.40","The Nucleobase/Ascorbate Transporter (NAT) or Nucleobase:Cation Symporter-2 (NCS2) Family"]],"b":[["antiviral/tioguanine.html","tioguanine"]]},{"id":"NCBITaxon:11676","l":"Human immunodeficiency virus 1","na":1,"nb":4,"a":[["IDPO%3A0000039","acetylation display site"]],"b":[["antiviral/delavirdine.html","delavirdine"],["antiviral/emivirine.html","emivirine"],["antiviral/etravirine.html","etravirine"],["antiviral/nevirapine.html","nevirapine"]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":4,"nb":1,"a":[["Pfam%3APF16861","Carbamoyltransferase C-terminus"],["Pfam%3APF02543","Carbamoyltransferase N-terminus"],["Pfam%3APF01960","ArgJ family"],["Pfam%3APF07467","Beta-lactamase inhibitor (BLIP)"]],"b":[["antibacterial/clavulanic-acid.html","clavulanic acid"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":4,"nb":1,"a":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"],["TED%3AAF-A0A085UKV7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085UKV7-F1-model_v4_TED01"],["TED%3AAF-A0A4R6IU28-F1-model_v4_TED02","TED novel fold AF-A0A4R6IU28-F1-model_v4_TED02"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"NCBITaxon:40559","l":"Botrytis cinerea","na":1,"nb":4,"a":[["Pfam%3APF08883","Dopa 4,5-dioxygenase family"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/iprodione.html","iprodione"],["antifungal/pyrisoxazole.html","pyrisoxazole"]]},{"id":"NCBITaxon:405948","l":"Saccharopolyspora erythraea NRRL 2338","na":1,"nb":4,"a":[["Pfam%3APF21036","Erythromycin biosynthesis protein CIII-like, N-terminal domain"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["unspecified/erythromycin-b.html","erythromycin B"],["unspecified/erythromycin-c.html","erythromycin C"],["unspecified/erythromycin-d.html","erythromycin D"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":4,"nb":1,"a":[["Pfam%3APF11720","Peptidase inhibitor I78 family"],["Pfam%3APF12296","Hydrophobic surface binding protein A"],["TED%3AAF-A0A3M7JGA1-F1-model_v4_TED02","TED novel fold AF-A0A3M7JGA1-F1-model_v4_TED02"],["TED%3AAF-A0A7G5JNS3-F1-model_v4_TED03","TED novel fold AF-A0A7G5JNS3-F1-model_v4_TED03"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:5076","l":"Penicillium chrysogenum","na":4,"nb":1,"a":[["Pfam%3APF03417","Acyl-coenzyme A:6-aminopenicillanic acid acyl-transferase"],["Pfam%3APF11402","Antifungal protein"],["PROSITE%3APS00185","Isopenicillin N synthase signature 1"],["PROSITE%3APS00186","Isopenicillin N synthase signature 2"]],"b":[["unspecified/isopenicillin-n.html","isopenicillin N"]]},{"id":"NCBITaxon:5270","l":"","na":4,"nb":1,"a":[["Pfam%3APF17445","Mating factor A1"],["Pfam%3APF24563","Mug60/KHD4 KH type I domain"],["Pfam%3APF01185","Fungal hydrophobin"],["Pfam%3APF07460","NUMOD3 motif"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"UniProt:P38637","l":"","na":4,"nb":1,"a":[["GO%3A0031144","proteasome localization"],["Pfam%3APF08559","Cut8, nuclear proteasome tether protein"],["InterPro%3AIPR038422","Cut8/Sts1 superfamily"],["CATH%3A1.20.58.1590","Tethering factor for nuclear proteasome Cut8/Sts1"]],"b":[["antifungal/cycloheximide.html","cycloheximide"]]},{"id":"ARO:3000235","l":"ethambutol resistant embB","na":3,"nb":1,"a":[["ARO%3A3000235","ethambutol resistant embB"],["ARO%3A3003326","Mycobacterium tuberculosis embB mutant conferring resistance to ethambutol"],["ARO%3A3003325","Mycobacterium tuberculosis variant bovis embB with mutation conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3000361","l":"EreA","na":1,"nb":3,"a":[["ARO%3A3000361","EreA"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/roxithromycin.html","roxithromycin"]]},{"id":"ARO:3000373","l":"EmrKY-TolC","na":3,"nb":1,"a":[["ARO%3A3000373","EmrKY-TolC"],["ARO%3A3000832","evgA"],["ARO%3A3000515","evgSA"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000467","l":"NDM-5","na":1,"nb":3,"a":[["ARO%3A3000467","NDM-5"]],"b":[["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ertapenem.html","ertapenem"]]},{"id":"ARO:3000589","l":"NDM-1","na":1,"nb":3,"a":[["ARO%3A3000589","NDM-1"]],"b":[["antibacterial/ertapenem.html","ertapenem"],["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3000598","l":"Erm(31)","na":1,"nb":3,"a":[["ARO%3A3000598","Erm(31)"]],"b":[["antibacterial/methymycin.html","methymycin"],["antibacterial/narbomycin.html","narbomycin"],["antibacterial/pikromycin.html","pikromycin"]]},{"id":"ARO:3000843","l":"MUS-1","na":1,"nb":3,"a":[["ARO%3A3000843","MUS-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/piperacillin.html","piperacillin"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3000844","l":"TUS-1","na":1,"nb":3,"a":[["ARO%3A3000844","TUS-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/piperacillin.html","piperacillin"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3000900","l":"TEM-30","na":1,"nb":3,"a":[["ARO%3A3000900","TEM-30"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"]]},{"id":"ARO:3000930","l":"TEM-61","na":1,"nb":3,"a":[["ARO%3A3000930","TEM-61"]],"b":[["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001071","l":"SHV-12","na":1,"nb":3,"a":[["ARO%3A3001071","SHV-12"]],"b":[["antibacterial/cefalotin.html","cefalotin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3001205","l":"BRP(MBL)","na":1,"nb":3,"a":[["ARO%3A3001205","BRP(MBL)"]],"b":[["antibacterial/bleomycin-a2.html","bleomycin A2"],["antibacterial/bleomycin-b2.html","bleomycin B2"],["antibacterial/bleomycinic-acid.html","bleomycinic acid"]]},{"id":"ARO:3001265","l":"Erm(30)","na":1,"nb":3,"a":[["ARO%3A3001265","Erm(30)"]],"b":[["antibacterial/methymycin.html","methymycin"],["antibacterial/narbomycin.html","narbomycin"],["antibacterial/pikromycin.html","pikromycin"]]},{"id":"ARO:3001302","l":"chrB","na":1,"nb":3,"a":[["ARO%3A3001302","chrB"]],"b":[["antibacterial/chalcomycin.html","chalcomycin"],["antibacterial/mycinamicin-iv.html","mycinamicin IV"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3001303","l":"ErmO-srmA","na":1,"nb":3,"a":[["ARO%3A3001303","ErmO-srmA"]],"b":[["antibacterial/carbomycin.html","carbomycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3001397","l":"OXA-2","na":1,"nb":3,"a":[["ARO%3A3001397","OXA-2"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002528","l":"AAC(3)-Ia","na":1,"nb":3,"a":[["ARO%3A3002528","AAC(3)-Ia"]],"b":[["antibacterial/astromicin.html","astromicin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002529","l":"AAC(3)-Id","na":1,"nb":3,"a":[["ARO%3A3002529","AAC(3)-Id"]],"b":[["antibacterial/astromicin.html","astromicin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002530","l":"AAC(3)-Ib","na":1,"nb":3,"a":[["ARO%3A3002530","AAC(3)-Ib"]],"b":[["antibacterial/astromicin.html","astromicin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002531","l":"AAC(3)-Ic","na":1,"nb":3,"a":[["ARO%3A3002531","AAC(3)-Ic"]],"b":[["antibacterial/astromicin.html","astromicin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002540","l":"AAC(3)-VIa","na":1,"nb":3,"a":[["ARO%3A3002540","AAC(3)-VIa"]],"b":[["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002546","l":"","na":1,"nb":3,"a":[["ARO%3A3002546","AAC(6')-Ib"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002576","l":"","na":1,"nb":3,"a":[["ARO%3A3002576","AAC(6')-Ib3"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002577","l":"","na":1,"nb":3,"a":[["ARO%3A3002577","AAC(6')-Ib4"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002578","l":"","na":1,"nb":3,"a":[["ARO%3A3002578","AAC(6')-Ib7"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002579","l":"","na":1,"nb":3,"a":[["ARO%3A3002579","AAC(6')-Ib8"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002580","l":"","na":1,"nb":3,"a":[["ARO%3A3002580","AAC(6')-Ib9"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002581","l":"","na":1,"nb":3,"a":[["ARO%3A3002581","AAC(6')-Ib10"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002582","l":"","na":1,"nb":3,"a":[["ARO%3A3002582","AAC(6')-Ib11"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002586","l":"","na":1,"nb":3,"a":[["ARO%3A3002586","AAC(6')-32"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002591","l":"","na":1,"nb":3,"a":[["ARO%3A3002591","AAC(6')-Ib-Suzhou"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002592","l":"","na":1,"nb":3,"a":[["ARO%3A3002592","AAC(6')-Ib-Hangzhou"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002593","l":"","na":1,"nb":3,"a":[["ARO%3A3002593","AAC(6')-Ib-SK"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002624","l":"","na":1,"nb":3,"a":[["ARO%3A3002624","ANT(4')-IIa"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002625","l":"","na":1,"nb":3,"a":[["ARO%3A3002625","ANT(4')-IIb"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002649","l":"","na":1,"nb":3,"a":[["ARO%3A3002649","APH(3')-Va"]],"b":[["antibacterial/framycetin.html","framycetin"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3002650","l":"","na":1,"nb":3,"a":[["ARO%3A3002650","APH(3')-Vb"]],"b":[["antibacterial/framycetin.html","framycetin"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3002651","l":"","na":1,"nb":3,"a":[["ARO%3A3002651","APH(3')-Vc"]],"b":[["antibacterial/framycetin.html","framycetin"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3002666","l":"rmtF","na":1,"nb":3,"a":[["ARO%3A3002666","rmtF"]],"b":[["antibacterial/astromicin.html","astromicin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3002671","l":"Limosilactobacillus reuteri cat-TC","na":1,"nb":3,"a":[["ARO%3A3002671","Limosilactobacillus reuteri cat-TC"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002672","l":"Bacillus pumilus cat86","na":1,"nb":3,"a":[["ARO%3A3002672","Bacillus pumilus cat86"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002674","l":"Clostridium butyricum catB","na":1,"nb":3,"a":[["ARO%3A3002674","Clostridium butyricum catB"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002675","l":"catB2","na":1,"nb":3,"a":[["ARO%3A3002675","catB2"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002676","l":"catB3","na":1,"nb":3,"a":[["ARO%3A3002676","catB3"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002678","l":"Pseudomonas aeruginosa catB6","na":1,"nb":3,"a":[["ARO%3A3002678","Pseudomonas aeruginosa catB6"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002679","l":"Pseudomonas aeruginosa catB7","na":1,"nb":3,"a":[["ARO%3A3002679","Pseudomonas aeruginosa catB7"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002680","l":"catB8","na":1,"nb":3,"a":[["ARO%3A3002680","catB8"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002681","l":"catB9","na":1,"nb":3,"a":[["ARO%3A3002681","catB9"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002682","l":"catD","na":1,"nb":3,"a":[["ARO%3A3002682","catD"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002683","l":"catA1","na":1,"nb":3,"a":[["ARO%3A3002683","catA1"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002684","l":"catII","na":1,"nb":3,"a":[["ARO%3A3002684","catII"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002685","l":"catIII","na":1,"nb":3,"a":[["ARO%3A3002685","catIII"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002686","l":"catP","na":1,"nb":3,"a":[["ARO%3A3002686","catP"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002687","l":"catQ","na":1,"nb":3,"a":[["ARO%3A3002687","catQ"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002688","l":"catS","na":1,"nb":3,"a":[["ARO%3A3002688","catS"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002689","l":"Plasmid-encoded cat (pp-cat)","na":1,"nb":3,"a":[["ARO%3A3002689","Plasmid-encoded cat (pp-cat)"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002825","l":"ErmY","na":1,"nb":3,"a":[["ARO%3A3002825","ErmY"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/oleandomycin.html","oleandomycin"]]},{"id":"ARO:3002827","l":"tlrC","na":1,"nb":3,"a":[["ARO%3A3002827","tlrC"]],"b":[["antibacterial/lincomycin.html","lincomycin"],["antibacterial/mycinamicin-iv.html","mycinamicin IV"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3002830","l":"vgaALC","na":1,"nb":3,"a":[["ARO%3A3002830","vgaALC"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002833","l":"vgaE","na":1,"nb":3,"a":[["ARO%3A3002833","vgaE"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002881","l":"lmrC","na":1,"nb":3,"a":[["ARO%3A3002881","lmrC"]],"b":[["antibacterial/celesticetin.html","celesticetin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002987","l":"bcrA","na":1,"nb":3,"a":[["ARO%3A3002987","bcrA"]],"b":[["antibacterial/bacitracin-a.html","bacitracin A"],["antibacterial/bacitracin-b.html","bacitracin B"],["antibacterial/bacitracin-f.html","bacitracin F"]]},{"id":"ARO:3002988","l":"bcrB","na":1,"nb":3,"a":[["ARO%3A3002988","bcrB"]],"b":[["antibacterial/bacitracin-a.html","bacitracin A"],["antibacterial/bacitracin-b.html","bacitracin B"],["antibacterial/bacitracin-f.html","bacitracin F"]]},{"id":"ARO:3003007","l":"bmr","na":1,"nb":3,"a":[["ARO%3A3003007","bmr"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/puromycin.html","puromycin"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3003062","l":"ykkCD","na":1,"nb":3,"a":[["ARO%3A3003062","ykkCD"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/streptomycin.html","streptomycin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003072","l":"mphL","na":1,"nb":3,"a":[["ARO%3A3003072","mphL"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003080","l":"daptomycin resistant pgsA","na":3,"nb":1,"a":[["ARO%3A3003788","Bacillus subtilis pgsA with mutation conferring resistance to daptomycin"],["ARO%3A3003080","daptomycin resistant pgsA"],["ARO%3A3003323","Staphylococcus aureus pgsA mutations conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003110","l":"catB10","na":1,"nb":3,"a":[["ARO%3A3003110","catB10"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3003112","l":"lsaC","na":1,"nb":3,"a":[["ARO%3A3003112","lsaC"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"ARO:3003205","l":"Erm(43)","na":1,"nb":3,"a":[["ARO%3A3003205","Erm(43)"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"]]},{"id":"ARO:3003301","l":"Staphylococcus aureus gyrB conferring resistance to aminocoumarin","na":1,"nb":3,"a":[["ARO%3A3003301","Staphylococcus aureus gyrB conferring resistance to aminocoumarin"]],"b":[["antibacterial/clorobiocin.html","clorobiocin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3003302","l":"Bartonella bacilliformis gyrB conferring resistance to aminocoumarin","na":1,"nb":3,"a":[["ARO%3A3003302","Bartonella bacilliformis gyrB conferring resistance to aminocoumarin"]],"b":[["antibacterial/clorobiocin.html","clorobiocin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3003303","l":"Escherichia coli gyrB conferring resistance to aminocoumarin","na":1,"nb":3,"a":[["ARO%3A3003303","Escherichia coli gyrB conferring resistance to aminocoumarin"]],"b":[["antibacterial/clorobiocin.html","clorobiocin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3003314","l":"Staphylococcus aureus parE conferring resistance to aminocoumarin","na":1,"nb":3,"a":[["ARO%3A3003314","Staphylococcus aureus parE conferring resistance to aminocoumarin"]],"b":[["antibacterial/clorobiocin.html","clorobiocin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3003318","l":"Streptomyces rishiriensis parY mutant conferring resistance to aminocoumarin","na":1,"nb":3,"a":[["ARO%3A3003318","Streptomyces rishiriensis parY mutant conferring resistance to aminocoumarin"]],"b":[["antibacterial/clorobiocin.html","clorobiocin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3003381","l":"Escherichia coli soxR with mutation conferring antibiotic resistance","na":1,"nb":3,"a":[["ARO%3A3003381","Escherichia coli soxR with mutation conferring antibiotic resistance"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3003385","l":"Klebsiella aerogenes Omp36","na":1,"nb":3,"a":[["ARO%3A3003385","Klebsiella aerogenes Omp36"]],"b":[["antibacterial/cefepime.html","cefepime"],["antibacterial/cefpirome.html","cefpirome"],["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3003394","l":"Mycobacterium tuberculosis pncA mutations conferring resistance to pyrazinamide","na":3,"nb":1,"a":[["ARO%3A3004267","antibiotic resistant pncA"],["ARO%3A3003394","Mycobacterium tuberculosis pncA mutations conferring resistance to pyrazinamide"],["ARO%3A3003418","Pyrazinamide resistant pncA"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3003511","l":"Escherichia coli soxS with mutation conferring antibiotic resistance","na":1,"nb":3,"a":[["ARO%3A3003511","Escherichia coli soxS with mutation conferring antibiotic resistance"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enrofloxacin.html","enrofloxacin"]]},{"id":"ARO:3003589","l":"NmcA","na":1,"nb":3,"a":[["ARO%3A3003589","NmcA"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"ARO:3003702","l":"Pseudomonas aeruginosa gyrA and parC conferring resistance to fluoroquinolones","na":1,"nb":3,"a":[["ARO%3A3003702","Pseudomonas aeruginosa gyrA and parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/ofloxacin.html","ofloxacin"],["antibacterial/pefloxacin.html","pefloxacin"]]},{"id":"ARO:3003742","l":"mphG","na":1,"nb":3,"a":[["ARO%3A3003742","mphG"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003807","l":"Escherichia coli AcrAB-TolC with AcrR mutation conferring resistance to ciprofloxacin, tetracycline, and ceftazidime","na":1,"nb":3,"a":[["ARO%3A3003807","Escherichia coli AcrAB-TolC with AcrR mutation conferring resistance to ciprofloxacin, tetracycline, and ceftazidime"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003839","l":"Mrx","na":1,"nb":3,"a":[["ARO%3A3003839","Mrx"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3003842","l":"MUS-2","na":1,"nb":3,"a":[["ARO%3A3003842","MUS-2"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/piperacillin.html","piperacillin"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3003931","l":"Capnocytophaga gingivalis gyrA conferring resistance to fluoroquinolones","na":1,"nb":3,"a":[["ARO%3A3003931","Capnocytophaga gingivalis gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3003947","l":"EfrAB","na":1,"nb":3,"a":[["ARO%3A3003947","EfrAB"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3003960","l":"farAB","na":1,"nb":3,"a":[["ARO%3A3003960","farAB"]],"b":[["antibacterial/linoleic-acid.html","linoleic acid"],["antibacterial/oleic-acid.html","oleic acid"],["antibacterial/palmitic-acid.html","palmitic acid"]]},{"id":"ARO:3003964","l":"hp1181","na":1,"nb":3,"a":[["ARO%3A3003964","hp1181"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/metronidazole.html","metronidazole"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003983","l":"CatU","na":1,"nb":3,"a":[["ARO%3A3003983","CatU"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3003991","l":"mphI","na":1,"nb":3,"a":[["ARO%3A3003991","mphI"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/telithromycin.html","telithromycin"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3004066","l":"MexEF-OprN with MexT mutation conferring resistance to chloramphenicol, ciprofloxacin, and trimethoprim","na":1,"nb":3,"a":[["ARO%3A3004066","MexEF-OprN with MexT mutation conferring resistance to chloramphenicol, ciprofloxacin, and trimethoprim"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004068","l":"MexEF-OprN with MexS mutations conferring resistance to chloramphenicol, ciprofloxacin, and trimethoprim","na":1,"nb":3,"a":[["ARO%3A3004068","MexEF-OprN with MexS mutations conferring resistance to chloramphenicol, ciprofloxacin, and trimethoprim"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004077","l":"PmpM","na":1,"nb":3,"a":[["ARO%3A3004077","PmpM"]],"b":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"],["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3004094","l":"Erm(48)","na":1,"nb":3,"a":[["ARO%3A3004094","Erm(48)"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"]]},{"id":"ARO:3004098","l":"LpeAB","na":1,"nb":3,"a":[["ARO%3A3004098","LpeAB"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3004102","l":"kamB","na":1,"nb":3,"a":[["ARO%3A3004102","kamB"]],"b":[["antibacterial/apramycin.html","apramycin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004103","l":"QepA2","na":1,"nb":3,"a":[["ARO%3A3004103","QepA2"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3004108","l":"Enterobacter cloacae rob","na":1,"nb":3,"a":[["ARO%3A3004108","Enterobacter cloacae rob"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/telithromycin.html","telithromycin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004127","l":"Escherichia coli mipA","na":1,"nb":3,"a":[["ARO%3A3004127","Escherichia coli mipA"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/nalidixic-acid.html","nalidixic acid"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004174","l":"Chlamydia trachomatis 23S rRNA with mutation conferring resistance to macrolide antibiotics","na":1,"nb":3,"a":[["ARO%3A3004174","Chlamydia trachomatis 23S rRNA with mutation conferring resistance to macrolide antibiotics"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/josamycin.html","josamycin"]]},{"id":"ARO:3004378","l":"QepA3","na":1,"nb":3,"a":[["ARO%3A3004378","QepA3"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3004379","l":"QepA4","na":1,"nb":3,"a":[["ARO%3A3004379","QepA4"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3004441","l":"tet(59)","na":1,"nb":3,"a":[["ARO%3A3004441","tet(59)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004442","l":"tet(W/N/W)","na":1,"nb":3,"a":[["ARO%3A3004442","tet(W/N/W)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004544","l":"mphJ","na":1,"nb":3,"a":[["ARO%3A3004544","mphJ"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/telithromycin.html","telithromycin"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3004576","l":"tet(61)","na":1,"nb":3,"a":[["ARO%3A3004576","tet(61)"]],"b":[["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004589","l":"tet(53)","na":1,"nb":3,"a":[["ARO%3A3004589","tet(53)"]],"b":[["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004591","l":"tet(55)","na":1,"nb":3,"a":[["ARO%3A3004591","tet(55)"]],"b":[["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004592","l":"erm(32)","na":1,"nb":3,"a":[["ARO%3A3004592","erm(32)"]],"b":[["antibacterial/methymycin.html","methymycin"],["antibacterial/narbomycin.html","narbomycin"],["antibacterial/pikromycin.html","pikromycin"]]},{"id":"ARO:3004595","l":"erm(45)","na":1,"nb":3,"a":[["ARO%3A3004595","erm(45)"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"]]},{"id":"ARO:3004596","l":"erm(46)","na":1,"nb":3,"a":[["ARO%3A3004596","erm(46)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004639","l":"Corynebacterium striatum tetA","na":1,"nb":3,"a":[["ARO%3A3004639","Corynebacterium striatum tetA"]],"b":[["antibacterial/oxacillin.html","oxacillin"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004649","l":"cfr(B)","na":1,"nb":3,"a":[["ARO%3A3004649","cfr(B)"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/linezolid.html","linezolid"]]},{"id":"ARO:3004652","l":"Erm(O)-lrm","na":1,"nb":3,"a":[["ARO%3A3004652","Erm(O)-lrm"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3004679","l":"rmtE2","na":1,"nb":3,"a":[["ARO%3A3004679","rmtE2"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004854","l":"CMY-136","na":1,"nb":3,"a":[["ARO%3A3004854","CMY-136"]],"b":[["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftolozane.html","ceftolozane"],["antibacterial/cefuroxime.html","cefuroxime"]]},{"id":"ARO:3005021","l":"cfr(D)","na":1,"nb":3,"a":[["ARO%3A3005021","cfr(D)"]],"b":[["antibacterial/linezolid.html","linezolid"],["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3005047","l":"eptB","na":1,"nb":3,"a":[["ARO%3A3005047","eptB"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"],["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3005051","l":"LpsB","na":1,"nb":3,"a":[["ARO%3A3005051","LpsB"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"],["antibacterial/defensin.html","defensin"]]},{"id":"ARO:3005056","l":"tet(X6)","na":1,"nb":3,"a":[["ARO%3A3005056","tet(X6)"]],"b":[["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3005057","l":"tet(X5)","na":1,"nb":3,"a":[["ARO%3A3005057","tet(X5)"]],"b":[["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3005166","l":"tet(X1)","na":1,"nb":3,"a":[["ARO%3A3005166","tet(X1)"]],"b":[["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007032","l":"Erm(50)","na":1,"nb":3,"a":[["ARO%3A3007032","Erm(50)"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/roxithromycin.html","roxithromycin"]]},{"id":"ARO:3007050","l":"mreA","na":1,"nb":3,"a":[["ARO%3A3007050","mreA"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3007056","l":"Antibiotic resistant Helicobacter pylori nitroreductase","na":3,"nb":1,"a":[["ARO%3A3007056","Antibiotic resistant Helicobacter pylori nitroreductase"],["ARO%3A3007059","Helicobacter pylori frxA mutation conferring resistance to metronidazole"],["ARO%3A3007055","Helicobacter pylori rdxA mutation conferring resistance to metronidazole"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007062","l":"VAM-1","na":1,"nb":3,"a":[["ARO%3A3007062","VAM-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3007186","l":"Mycobacterium tuberculosis Rv1258c mutations confer resistance to pyrazinamide, isoniazid, and streptomycin","na":1,"nb":3,"a":[["ARO%3A3007186","Mycobacterium tuberculosis Rv1258c mutations confer resistance to pyrazinamide, isoniazid, and streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"],["antimycobacterial/isoniazide.html","isoniazide"],["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3007196","l":"KPC-123","na":1,"nb":3,"a":[["ARO%3A3007196","KPC-123"]],"b":[["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007208","l":"HelR","na":1,"nb":3,"a":[["ARO%3A3007208","HelR"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3007209","l":"Streptomyces venezuelae rox","na":1,"nb":3,"a":[["ARO%3A3007209","Streptomyces venezuelae rox"]],"b":[["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3007435","l":"WUS-1","na":1,"nb":3,"a":[["ARO%3A3007435","WUS-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/carbenicillin.html","carbenicillin"],["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3007473","l":"Mycobacterium avium gyrA with mutation conferring resistance to fluoroquinolone","na":1,"nb":3,"a":[["ARO%3A3007473","Mycobacterium avium gyrA with mutation conferring resistance to fluoroquinolone"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3007524","l":"Candida spp. ERG11 with mutations conferring resistance to azole antibiotics","na":1,"nb":3,"a":[["ARO%3A3007524","Candida spp. ERG11 with mutations conferring resistance to azole antibiotics"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"ARO:3007531","l":"Streptococcus pyogenes PBP2x conferring resistance to beta-lactam antibiotics","na":1,"nb":3,"a":[["ARO%3A3007531","Streptococcus pyogenes PBP2x conferring resistance to beta-lactam antibiotics"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefotaxime.html","cefotaxime"]]},{"id":"ARO:3007565","l":"Aspergillus spp. cyp51A with mutations conferring resistance to triazoles antibiotics","na":1,"nb":3,"a":[["ARO%3A3007565","Aspergillus spp. cyp51A with mutations conferring resistance to triazoles antibiotics"]],"b":[["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"ARO:3007632","l":"FRI-11","na":1,"nb":3,"a":[["ARO%3A3007632","FRI-11"]],"b":[["antibacterial/ertapenem.html","ertapenem"],["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3007654","l":"erm(56)","na":1,"nb":3,"a":[["ARO%3A3007654","erm(56)"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"]]},{"id":"ARO:3007666","l":"Candida spp. cyp51A1 with mutations conferring resistance to triazoles and imidazole antibiotics","na":1,"nb":3,"a":[["ARO%3A3007666","Candida spp. cyp51A1 with mutations conferring resistance to triazoles and imidazole antibiotics"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/ketoconazole.html","ketoconazole"]]},{"id":"ARO:3007669","l":"aadT","na":1,"nb":3,"a":[["ARO%3A3007669","aadT"]],"b":[["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"CHEBI:121196","l":"reumycin","na":3,"nb":1,"a":[["EC%3A2.1.1.349","toxoflavin synthase"],["RHEA%3A56848","1,6-didemethyltoxoflavin + S-adenosyl-L-methionine = reumycin + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A56852","reumycin + S-adenosyl-L-methionine = toxoflavin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["unspecified/reumycin.html","reumycin"]]},{"id":"CHEBI:131914","l":"violacein","na":3,"nb":1,"a":[["RHEA%3A49720","protoviolaceinate + NADH + 2 O2 + 2 H(+) = violacein + CO2 + NAD(+) + 2 H2O"],["RHEA%3A49728","protoviolaceinate + NADPH + 2 O2 + 2 H(+) = violacein + CO2 + NADP(+) + 2 H2O"],["RHEA%3A49732","violaceinate + O2 + H(+) = violacein + CO2 + H2O"]],"b":[["antibacterial/violacein.html","violacein"]]},{"id":"CHEBI:131915","l":"deoxyviolacein","na":3,"nb":1,"a":[["RHEA%3A49744","deoxyviolaceinate + O2 + H(+) = deoxyviolacein + CO2 + H2O"],["RHEA%3A49736","protodeoxyviolaceinate + NADH + 2 O2 + 2 H(+) = deoxyviolacein + CO2 + NAD(+) + 2 H2O"],["RHEA%3A49740","protodeoxyviolaceinate + NADPH + 2 O2 + 2 H(+) = deoxyviolacein + CO2 + NADP(+) + 2 H2O"]],"b":[["antibacterial/deoxyviolacein.html","deoxyviolacein"]]},{"id":"CHEBI:138730","l":"","na":3,"nb":1,"a":[["EC%3A2.1.1.267","flavonoid 3',5'-methyltransferase"],["EC%3A2.1.1.42","flavone 3'-O-methyltransferase"],["RHEA%3A55332","a 3'-hydroxyflavone + S-adenosyl-L-methionine = a 3'-methoxyflavone + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/3-3-dimethylquercetin.html","3,3'-dimethylquercetin"]]},{"id":"CHEBI:142605","l":"","na":3,"nb":1,"a":[["EC%3A2.3.1.332","medium-chain-alcohol O-fatty-acyltransferase"],["RHEA%3A85935","a medium-chain primary fatty alcohol + a fatty acyl-CoA = a medium-chain alcohol wax ester + CoA"],["RHEA%3A58364","a medium-chain primary fatty alcohol + NADP(+) = a medium-chain fatty aldehyde + NADPH + H(+)"]],"b":[["antibacterial/1-2-dodecanediol.html","1,2-dodecanediol"]]},{"id":"CHEBI:16363","l":"α-santonin","na":3,"nb":1,"a":[["EC%3A1.3.1.47","alpha-santonin 1,2-reductase"],["RHEA%3A23612","1,2-dihydro-alpha-santonin + NAD(+) = alpha-santonin + NADH + H(+)"],["RHEA%3A23616","1,2-dihydro-alpha-santonin + NADP(+) = alpha-santonin + NADPH + H(+)"]],"b":[["antifungal/%CE%B1-santonin.html","α-santonin"]]},{"id":"CHEBI:17097","l":"biphenyl","na":3,"nb":1,"a":[["EC%3A1.14.12.18","biphenyl 2,3-dioxygenase"],["RHEA%3A18165","biphenyl + NADH + O2 + H(+) = (2R,3S)-3-phenylcyclohexa-3,5-diene-1,2-diol + NAD(+)"],["proteintraitsmech%3ABIOLIP_BNL","BNL-binding site"]],"b":[["antifungal/biphenyl.html","biphenyl"]]},{"id":"CHEBI:1722","l":"","na":3,"nb":1,"a":[["EC%3A1.1.1.145","3beta-hydroxy-Delta(5)-steroid dehydrogenase"],["RHEA%3A24076","a 3beta-hydroxy-Delta(5)-steroid + NAD(+) = a 3-oxo-Delta(5)-steroid + NADH + H(+)"],["RHEA%3A56880","a 3beta-hydroxy-Delta(5)-steroid + NADP(+) = a 3-oxo-Delta(5)-steroid + NADPH + H(+)"]],"b":[["antibacterial/7-aminocholesterol.html","7-aminocholesterol"]]},{"id":"CHEBI:17231","l":"m-cresol","na":3,"nb":1,"a":[["EC%3A4.1.1.52","6-methylsalicylate decarboxylase"],["RHEA%3A62208","3-methylphenol + reduced [NADPH--hemoprotein reductase] + O2 = 3-hydroxybenzyl alcohol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A23112","6-methylsalicylate + H(+) = 3-methylphenol + CO2"]],"b":[["antifungal/m-cresol.html","m-cresol"]]},{"id":"CHEBI:173119","l":"(6Z)-nerolidol","na":1,"nb":3,"a":[["RHEA%3A68832","(2Z,6Z)-farnesyl diphosphate + H2O = (6Z)-nerolidol + diphosphate"]],"b":[["antifungal/3r-6z-nerolidol.html","(3R,6Z)-nerolidol"],["antifungal/3s-6z-nerolidol.html","(3S,6Z)-nerolidol"],["antifungal/6z-nerolidol.html","(6Z)-nerolidol"]]},{"id":"CHEBI:17484","l":"benzyl isothiocyanate","na":3,"nb":1,"a":[["EC%3A5.99.1.1","thiocyanate isomerase"],["RHEA%3A10004","benzyl isothiocyanate = benzyl thiocyanate"],["RHEA%3A69300","(Z)-phenyl-N-(sulfonatooxy)methanimidothioate = benzyl isothiocyanate + sulfate"]],"b":[["antibacterial/benzyl-isothiocyanate.html","benzyl isothiocyanate"]]},{"id":"CHEBI:195253","l":"5-hydroxy-3-methylfuran-2(5H)-one","na":3,"nb":1,"a":[["RHEA%3A76507","(-)-2'-epi-GR24 + H2O = (-)-2'-epi-GR24 ABC-rings + 5-hydroxy-3-methylfuran-2(5H)-one"],["RHEA%3A76511","5-deoxystrigol + H2O = 5-deoxystrigol ABC-rings + 5-hydroxy-3-methylfuran-2(5H)-one"],["RHEA%3A76515","orobanchol + H2O = orobanchol ABC-rings + 5-hydroxy-3-methylfuran-2(5H)-one"]],"b":[["antiviral/5-hydroxy-3-methylfuran-2-5h-one.html","5-hydroxy-3-methylfuran-2(5H)-one"]]},{"id":"CHEBI:2453","l":"acyclovir","na":3,"nb":1,"a":[["RHEA%3A83871","valacyclovir + H2O = acyclovir + L-valine + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antiviral/acyclovir.html","acyclovir"]]},{"id":"CHEBI:24838","l":"","na":3,"nb":1,"a":[["TCDB%3A2.A.30","The Cation-Chloride Cotransporter (CCC) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.58","The Phosphate:Na+ Symporter (PNaS) Family"]],"b":[["antibacterial/sodium-fluorophosphate.html","sodium fluorophosphate"]]},{"id":"CHEBI:26267","l":"","na":1,"nb":3,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antiviral/epigallocatechin-4%CE%B28-2%CE%B2o-7-epicatechin.html","epigallocatechin-(4β→8,2β→O-7)-epicatechin"],["antiviral/proanthocyanidin-a2.html","proanthocyanidin A2"],["antiviral/theasinensin-a.html","theasinensin A"]]},{"id":"CHEBI:28915","l":"fosfomycin","na":3,"nb":1,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.5","The Pseudomonas OprP Porin (POP) Family"],["proteintraitsmech%3ABIOLIP_FCN","FCN-binding site"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"CHEBI:3139","l":"bleomycin A2","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A9.A.18","The Peptide Uptake Permease (PUP) Family"]],"b":[["antibacterial/bleomycin-a2.html","bleomycin A2"]]},{"id":"CHEBI:32197","l":"tetracenomycin A2","na":3,"nb":1,"a":[["EC%3A1.14.13.200","tetracenomycin A2 monooxygenase-diooxygenase"],["RHEA%3A42824","tetracenomycin A2 + 2 NADH + 2 O2 + 2 H(+) = tetracenomycin C + 2 NAD(+) + H2O"],["RHEA%3A42820","tetracenomycin A2 + 2 NADPH + 2 O2 + 2 H(+) = tetracenomycin C + 2 NADP(+) + H2O"]],"b":[["antibacterial/tetracenomycin-a2.html","tetracenomycin A2"]]},{"id":"CHEBI:324935","l":"fumagillol","na":3,"nb":1,"a":[["EC%3A1.1.1.437","5-dehydrofumagillol 5-reductase"],["RHEA%3A74751","fumagillol + dodecapentaneoyl-[polyketide synthase] = prefumagillin + holo-[polyketide synthase]"],["RHEA%3A74707","fumagillol + NADP(+) = 5-dehydrofumagillol + NADPH + H(+)"]],"b":[["unspecified/fumagillol.html","fumagillol"]]},{"id":"CHEBI:3392","l":"carbendazim","na":3,"nb":1,"a":[["EC%3A3.1.1.122","carbendazim hydrolysing esterase"],["RHEA%3A78411","carbendazim + H2O = 2-aminobenzimidazole + methanol + CO2"],["RHEA%3A78415","carbendazim + H2O = N-(1H-1,3-benzodiazol-2-yl)carbamate + methanol + H(+)"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"CHEBI:35996","l":"","na":1,"nb":3,"a":[["TCDB%3A1.B.25","The Outer Membrane Porin (Opr) Family"]],"b":[["antibacterial/faropenem.html","faropenem"],["unspecified/faropenem-1.html","faropenem(1−)"],["unspecified/penem.html","penem"]]},{"id":"CHEBI:43968","l":"meropenem","na":3,"nb":1,"a":[["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"],["TCDB%3A1.B.25","The Outer Membrane Porin (Opr) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/meropenem.html","meropenem"]]},{"id":"CHEBI:44485","l":"N-ethylmaleimide","na":3,"nb":1,"a":[["RHEA%3A35527","N-ethylmaleimide + NADH + H(+) = N-ethylsuccinimide + NAD(+)"],["RHEA%3A35523","N-ethylmaleimide + NADPH + H(+) = N-ethylsuccinimide + NADP(+)"],["proteintraitsmech%3ABIOLIP_NEQ","NEQ-binding site"]],"b":[["antiviral/n-ethylmaleimide.html","N-ethylmaleimide"]]},{"id":"CHEBI:45453","l":"sinefungin","na":3,"nb":1,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A2.A.71","The Folate-Biopterin Transporter (FBT) Family"],["proteintraitsmech%3ABIOLIP_SFG","SFG-binding site"]],"b":[["antifungal/sinefungin.html","sinefungin"]]},{"id":"CHEBI:4629","l":"diosgenin","na":3,"nb":1,"a":[["EC%3A3.2.1.189","dioscin glycosidase (diosgenin-forming)"],["RHEA%3A36827","dioscin + 3 H2O = diosgenin + 2 L-rhamnopyranose + D-glucose"],["RHEA%3A61888","diosgenin + UDP-alpha-D-glucose = diosgenin 3-O-beta-D-glucoside + UDP + H(+)"]],"b":[["antiviral/diosgenin.html","diosgenin"]]},{"id":"CHEBI:47789","l":"","na":3,"nb":1,"a":[["EC%3A1.1.1.201","7beta-hydroxysteroid dehydrogenase (NADP(+))"],["RHEA%3A82271","7alpha-hydroxy steroid + NADP(+) = a 7-oxosteroid + NADPH + H(+)"],["RHEA%3A20233","a 7beta-hydroxysteroid + NADP(+) = a 7-oxosteroid + NADPH + H(+)"]],"b":[["antiviral/lucialdehyde-b.html","lucialdehyde B"]]},{"id":"CHEBI:51277","l":"","na":1,"nb":3,"a":[["RHEA%3A82919","a thioester + H2O = a thiol + a carboxylate + H(+)"]],"b":[["antifungal/acibenzolar-s-methyl.html","acibenzolar-S-methyl"],["antifungal/fenpyrazamine.html","fenpyrazamine"],["antiprotozoal/sid-26681509.html","SID 26681509"]]},{"id":"CHEBI:6076","l":"itraconazole","na":3,"nb":1,"a":[["RHEA%3A33503","itraconazole(in) + ATP + H2O = itraconazole(out) + ADP + phosphate + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/itraconazole.html","itraconazole"]]},{"id":"CHEBI:60822","l":"streptothricin F(3+)","na":3,"nb":1,"a":[["EC%3A3.5.2.19","streptothricin hydrolase"],["RHEA%3A57000","streptothricin F + acetyl-CoA = N(beta)-acetylstreptothricin F + CoA + H(+)"],["RHEA%3A28138","streptothricin F + H2O = streptothricin F acid"]],"b":[["unspecified/streptothricin-f-3.html","streptothricin F(3+)"]]},{"id":"CHEBI:6472","l":"lincomycin","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_3QB","3QB-binding site"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"CHEBI:67135","l":"2-nitroimidazole","na":3,"nb":1,"a":[["EC%3A3.5.99.9","2-nitroimidazole nitrohydrolase"],["RHEA%3A34271","2-nitroimidazole + H2O = 1,3-dihydro-2H-imidazol-2-one + nitrite + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antimycobacterial/2-nitroimidazole.html","2-nitroimidazole"]]},{"id":"CHEBI:75291","l":"ε-rhodomycinone","na":3,"nb":1,"a":[["EC%3A1.14.13.180","aklavinone 12-hydroxylase"],["RHEA%3A37835","aklavinone + NADPH + O2 + H(+) = epsilon-rhodomycinone + NADP(+) + H2O"],["RHEA%3A45760","dTDP-beta-L-daunosamine + epsilon-rhodomycinone = rhodomycin D + dTDP + H(+)"]],"b":[["unspecified/%CE%B5-rhodomycinone.html","ε-rhodomycinone"]]},{"id":"CHEBI:77879","l":"elaiophylin","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["proteintraitsmech%3ABIOLIP_ELO","ELO-binding site"]],"b":[["antifungal/elaiophylin.html","elaiophylin"]]},{"id":"CHEBI:78303","l":"aclacinomycin S zwitterion","na":3,"nb":1,"a":[["EC%3A2.4.1.327","aclacinomycin-T 2-deoxy-L-fucose transferase"],["RHEA%3A41652","dTDP-2-deoxy-beta-L-fucose + aclacinomycin S = 2-deoxy-alpha-L-fucosylaclacinomycin S + dTDP + H(+)"],["RHEA%3A41568","dTDP-2-deoxy-beta-L-fucose + aclacinomycin T = aclacinomycin S + dTDP + H(+)"]],"b":[["unspecified/aclacinomycin-s-zwitterion.html","aclacinomycin S zwitterion"]]},{"id":"CHEBI:80729","l":"toxoflavin","na":3,"nb":1,"a":[["EC%3A2.1.1.349","toxoflavin synthase"],["RHEA%3A56852","reumycin + S-adenosyl-L-methionine = toxoflavin + S-adenosyl-L-homocysteine + H(+)"],["proteintraitsmech%3ABIOLIP_TOF","TOF-binding site"]],"b":[["antibacterial/toxoflavin.html","toxoflavin"]]},{"id":"CHEBI:82744","l":"","na":3,"nb":1,"a":[["EC%3A4.8.1.2","aliphatic aldoxime dehydratase"],["RHEA%3A11316","an aliphatic aldoxime = a nitrile + H2O"],["MCSA%3A361","aldoxime dehydratase"]],"b":[["unspecified/ic202c.html","IC202C"]]},{"id":"CHEBI:84688","l":"","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]],"b":[["antibacterial/albomycin-%CE%B41.html","albomycin δ1"]]},{"id":"CHEBI:87208","l":"","na":1,"nb":3,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/cyprodinil.html","cyprodinil"],["antifungal/mepanipyrim.html","mepanipyrim"],["antifungal/pyrimethanil.html","pyrimethanil"]]},{"id":"CHEBI:9053","l":"sclareol","na":3,"nb":1,"a":[["EC%3A4.2.3.141","sclareol synthase"],["RHEA%3A34459","8-hydroxycopalyl diphosphate + H2O = sclareol + diphosphate"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/sclareol.html","sclareol"]]},{"id":"CHEBI:9215","l":"spectinomycin","na":3,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["proteintraitsmech%3ABIOLIP_SCM","SCM-binding site"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"CHEBI:9470","l":"tetracenomycin C","na":3,"nb":1,"a":[["EC%3A1.14.13.200","tetracenomycin A2 monooxygenase-diooxygenase"],["RHEA%3A42824","tetracenomycin A2 + 2 NADH + 2 O2 + 2 H(+) = tetracenomycin C + 2 NAD(+) + H2O"],["RHEA%3A42820","tetracenomycin A2 + 2 NADPH + 2 O2 + 2 H(+) = tetracenomycin C + 2 NADP(+) + H2O"]],"b":[["antibacterial/tetracenomycin-c.html","tetracenomycin C"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":3,"nb":1,"a":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF22041","Glutathione S-transferase, C-terminal domain"],["Pfam%3APF08493","Aflatoxin regulatory protein"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:5053","l":"Aspergillus aculeatus","na":3,"nb":1,"a":[["Pfam%3APF14683","Polysaccharide lyase family 4, domain III"],["Pfam%3APF14686","Polysaccharide lyase family 4, domain II"],["Pfam%3APF01670","Glycosyl hydrolase family 12"]],"b":[["antifungal/aculeacin-a.html","aculeacin A"]]},{"id":"NCBITaxon:54571","l":"Streptomyces venezuelae","na":3,"nb":1,"a":[["Pfam%3APF08990","Erythronolide synthase docking domain"],["TED%3AAF-A0A5P2CQV7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5P2CQV7-F1-model_v4_TED02"],["TED%3AAF-A0A5P2C5X4-F1-model_v4_TED01","TED novel fold AF-A0A5P2C5X4-F1-model_v4_TED01"]],"b":[["antibacterial/methymycin.html","methymycin"]]},{"id":"NCBITaxon:578454","l":"","na":1,"nb":3,"a":[["TED%3AAF-G8BAN6-F1-model_v4_TED01","TED novel fold AF-G8BAN6-F1-model_v4_TED01"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"UniProt:P10613","l":"","na":1,"nb":3,"a":[["proteintraitsmech%3ABIOLIP_1YN","1YN-binding site"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"UniProt:Q4WNT5","l":"","na":1,"nb":3,"a":[["EC%3A1.14.14.154","sterol 14alpha-demethylase"]],"b":[["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"ARO:0000040","l":"streptomycin","na":2,"nb":1,"a":[["ARO%3A3004968","Mycobacterium tuberculosis whib7 mutation conferring resistance to streptomycin"],["ARO%3A3004965","streptomycin resistant whib7"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:0000049","l":"kanamycin A","na":2,"nb":1,"a":[["ARO%3A3004966","Kanamycin resistant whib7"],["ARO%3A3004967","Mycobacterium tuberculosis whib7 mutations confer resistance to kanamycin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3000026","l":"mepA","na":2,"nb":1,"a":[["ARO%3A3000026","mepA"],["ARO%3A3000746","mepR"]],"b":[["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:3000118","l":"vgaB","na":1,"nb":2,"a":[["ARO%3A3000118","vgaB"]],"b":[["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3000165","l":"tet(A)","na":2,"nb":1,"a":[["ARO%3A3000165","tet(A)"],["ARO%3A3003479","tetR"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000236","l":"glycopeptide resistance gene cluster VanA","na":1,"nb":2,"a":[["ARO%3A3000236","glycopeptide resistance gene cluster VanA"]],"b":[["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000251","l":"msrA","na":1,"nb":2,"a":[["ARO%3A3000251","msrA"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/quinupristin.html","quinupristin"]]},{"id":"ARO:3000253","l":"glycopeptide resistance gene cluster VanD","na":1,"nb":2,"a":[["ARO%3A3000253","glycopeptide resistance gene cluster VanD"]],"b":[["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000256","l":"glycopeptide resistance gene cluster VanM","na":1,"nb":2,"a":[["ARO%3A3000256","glycopeptide resistance gene cluster VanM"]],"b":[["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000344","l":"EmrAB-TolC","na":2,"nb":1,"a":[["ARO%3A3000344","EmrAB-TolC"],["ARO%3A3000516","emrR"]],"b":[["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3000448","l":"QepA1","na":1,"nb":2,"a":[["ARO%3A3000448","QepA1"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3000545","l":"MacAB-TolC","na":2,"nb":1,"a":[["ARO%3A3000545","MacAB-TolC"],["ARO%3A3000834","phoP"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000616","l":"mel","na":1,"nb":2,"a":[["ARO%3A3000616","mel"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/telithromycin.html","telithromycin"]]},{"id":"ARO:3000768","l":"abeS","na":1,"nb":2,"a":[["ARO%3A3000768","abeS"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3000769","l":"PatA-PatB","na":1,"nb":2,"a":[["ARO%3A3000769","PatA-PatB"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3000771","l":"AdeFGH","na":2,"nb":1,"a":[["ARO%3A3000771","AdeFGH"],["ARO%3A3000620","adeL"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000786","l":"MdsABC","na":2,"nb":1,"a":[["ARO%3A3000504","golS"],["ARO%3A3000786","MdsABC"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3000822","l":"pmrA","na":1,"nb":2,"a":[["ARO%3A3000822","pmrA"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3000865","l":"oleD","na":1,"nb":2,"a":[["ARO%3A3000865","oleD"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3000966","l":"TEM-103","na":1,"nb":2,"a":[["ARO%3A3000966","TEM-103"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"]]},{"id":"ARO:3001216","l":"mdtH","na":1,"nb":2,"a":[["ARO%3A3001216","mdtH"]],"b":[["antibacterial/enoxacin.html","enoxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3001300","l":"myrA","na":1,"nb":2,"a":[["ARO%3A3001300","myrA"]],"b":[["antibacterial/mycinamicin-iv.html","mycinamicin IV"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3001301","l":"RlmA(II)","na":1,"nb":2,"a":[["ARO%3A3001301","RlmA(II)"]],"b":[["antibacterial/mycinamicin-iv.html","mycinamicin IV"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3001306","l":"ErmW","na":1,"nb":2,"a":[["ARO%3A3001306","ErmW"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/josamycin.html","josamycin"]]},{"id":"ARO:3001796","l":"OXA-50","na":1,"nb":2,"a":[["ARO%3A3001796","OXA-50"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"]]},{"id":"ARO:3001816","l":"ACC-2","na":1,"nb":2,"a":[["ARO%3A3001816","ACC-2"]],"b":[["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001917","l":"CTX-M-55","na":1,"nb":2,"a":[["ARO%3A3001917","CTX-M-55"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3002053","l":"CMY-42","na":1,"nb":2,"a":[["ARO%3A3002053","CMY-42"]],"b":[["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002587","l":"","na":1,"nb":2,"a":[["ARO%3A3002587","AAC(6')-I33"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002601","l":"aadA","na":1,"nb":2,"a":[["ARO%3A3002601","aadA"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002602","l":"aadA2","na":1,"nb":2,"a":[["ARO%3A3002602","aadA2"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002603","l":"aadA3","na":1,"nb":2,"a":[["ARO%3A3002603","aadA3"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002604","l":"aadA4","na":1,"nb":2,"a":[["ARO%3A3002604","aadA4"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002605","l":"aadA5","na":1,"nb":2,"a":[["ARO%3A3002605","aadA5"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002606","l":"aadA6","na":1,"nb":2,"a":[["ARO%3A3002606","aadA6"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002607","l":"aadA7","na":1,"nb":2,"a":[["ARO%3A3002607","aadA7"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002608","l":"aadA8","na":1,"nb":2,"a":[["ARO%3A3002608","aadA8"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002609","l":"aadA9","na":1,"nb":2,"a":[["ARO%3A3002609","aadA9"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002611","l":"aadA11","na":1,"nb":2,"a":[["ARO%3A3002611","aadA11"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002612","l":"aadA12","na":1,"nb":2,"a":[["ARO%3A3002612","aadA12"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002613","l":"aadA13","na":1,"nb":2,"a":[["ARO%3A3002613","aadA13"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002614","l":"aadA14","na":1,"nb":2,"a":[["ARO%3A3002614","aadA14"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002615","l":"aadA15","na":1,"nb":2,"a":[["ARO%3A3002615","aadA15"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002616","l":"aadA16","na":1,"nb":2,"a":[["ARO%3A3002616","aadA16"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002617","l":"aadA17","na":1,"nb":2,"a":[["ARO%3A3002617","aadA17"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002618","l":"aadA21","na":1,"nb":2,"a":[["ARO%3A3002618","aadA21"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002619","l":"aadA22","na":1,"nb":2,"a":[["ARO%3A3002619","aadA22"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002620","l":"aadA23","na":1,"nb":2,"a":[["ARO%3A3002620","aadA23"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002621","l":"aadA24","na":1,"nb":2,"a":[["ARO%3A3002621","aadA24"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002622","l":"aadA6/aadA10","na":1,"nb":2,"a":[["ARO%3A3002622","aadA6/aadA10"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002654","l":"","na":1,"nb":2,"a":[["ARO%3A3002654","APH(3')-VIIa"]],"b":[["antibacterial/framycetin.html","framycetin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3002704","l":"fexA","na":1,"nb":2,"a":[["ARO%3A3002704","fexA"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"]]},{"id":"ARO:3002705","l":"floR","na":1,"nb":2,"a":[["ARO%3A3002705","floR"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"]]},{"id":"ARO:3002706","l":"ethambutol resistant embC","na":2,"nb":1,"a":[["ARO%3A3002706","ethambutol resistant embC"],["ARO%3A3003327","Mycobacterium tuberculosis embC mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3002812","l":"pp-flo","na":1,"nb":2,"a":[["ARO%3A3002812","pp-flo"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"]]},{"id":"ARO:3002818","l":"msrB","na":1,"nb":2,"a":[["ARO%3A3002818","msrB"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/quinupristin.html","quinupristin"]]},{"id":"ARO:3002819","l":"msrC","na":1,"nb":2,"a":[["ARO%3A3002819","msrC"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/quinupristin.html","quinupristin"]]},{"id":"ARO:3002829","l":"vgaA","na":1,"nb":2,"a":[["ARO%3A3002829","vgaA"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002835","l":"lnuA","na":1,"nb":2,"a":[["ARO%3A3002835","lnuA"]],"b":[["antibacterial/lincomycin.html","lincomycin"],["antibacterial/pirlimycin.html","pirlimycin"]]},{"id":"ARO:3002836","l":"lnuB","na":1,"nb":2,"a":[["ARO%3A3002836","lnuB"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002838","l":"lnuD","na":1,"nb":2,"a":[["ARO%3A3002838","lnuD"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002839","l":"lnuF","na":1,"nb":2,"a":[["ARO%3A3002839","lnuF"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002876","l":"ethambutol resistant aftA","na":2,"nb":1,"a":[["ARO%3A3002876","ethambutol resistant aftA"],["ARO%3A3004951","Mycobacterium tuberculosis aftA mutations confer resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3002981","l":"AmrAB-OprM","na":1,"nb":2,"a":[["ARO%3A3002981","AmrAB-OprM"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002998","l":"CblA beta-lactamase","na":2,"nb":1,"a":[["ARO%3A3002999","CblA-1"],["ARO%3A3002998","CblA beta-lactamase"]],"b":[["antibacterial/cefaloridine.html","cefaloridine"]]},{"id":"ARO:3003035","l":"mfpA","na":1,"nb":2,"a":[["ARO%3A3003035","mfpA"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/sparfloxacin.html","sparfloxacin"]]},{"id":"ARO:3003054","l":"SmeDEF","na":1,"nb":2,"a":[["ARO%3A3003054","SmeDEF"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003090","l":"daptomycin-resistant beta-subunit of RNA polymerase (rpoB)","na":2,"nb":1,"a":[["ARO%3A3003090","daptomycin-resistant beta-subunit of RNA polymerase (rpoB)"],["ARO%3A3003287","Staphylococcus aureus rpoB mutants conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003091","l":"daptomycin resistant mprF","na":2,"nb":1,"a":[["ARO%3A3003091","daptomycin resistant mprF"],["ARO%3A3003319","Staphylococcus aureus mprF with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003106","l":"Erm(42)","na":1,"nb":2,"a":[["ARO%3A3003106","Erm(42)"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003107","l":"mef(B)","na":1,"nb":2,"a":[["ARO%3A3003107","mef(B)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003111","l":"lsaB","na":1,"nb":2,"a":[["ARO%3A3003111","lsaB"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"ARO:3003197","l":"aadA25","na":1,"nb":2,"a":[["ARO%3A3003197","aadA25"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003206","l":"lsaE","na":1,"nb":2,"a":[["ARO%3A3003206","lsaE"]],"b":[["antibacterial/lincomycin.html","lincomycin"],["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"ARO:3003209","l":"fosA5","na":1,"nb":2,"a":[["ARO%3A3003209","fosA5"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/gentamicin.html","gentamicin"]]},{"id":"ARO:3003290","l":"daptomycin-resistant beta prime subunit of RNA polymerase (rpoC)","na":2,"nb":1,"a":[["ARO%3A3003290","daptomycin-resistant beta prime subunit of RNA polymerase (rpoC)"],["ARO%3A3003291","Staphylococcus aureus rpoC conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003378","l":"Escherichia coli AcrAB-TolC with MarR mutations conferring resistance to ciprofloxacin and tetracycline","na":1,"nb":2,"a":[["ARO%3A3003378","Escherichia coli AcrAB-TolC with MarR mutations conferring resistance to ciprofloxacin and tetracycline"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003401","l":"","na":2,"nb":1,"a":[["ARO%3A3003388","dapsone resistant dihydropteroate synthase folP"],["ARO%3A3003389","Mycobacterium leprae folP with mutation conferring resistance to dapsone"]],"b":[["antimycobacterial/dapsone.html","dapsone"]]},{"id":"ARO:3003447","l":"ethambutol resistant iniA","na":2,"nb":1,"a":[["ARO%3A3003447","ethambutol resistant iniA"],["ARO%3A3003448","Mycobacterium tuberculosis iniA mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003450","l":"Ethambutol resistant iniC","na":2,"nb":1,"a":[["ARO%3A3003450","Ethambutol resistant iniC"],["ARO%3A3003451","Mycobacterium tuberculosis iniC mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003452","l":"ethambutol resistant embA","na":2,"nb":1,"a":[["ARO%3A3003452","ethambutol resistant embA"],["ARO%3A3003453","Mycobacterium tuberculosis embA mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003454","l":"ethambutol resistant embR","na":2,"nb":1,"a":[["ARO%3A3003454","ethambutol resistant embR"],["ARO%3A3003455","Mycobacterium tuberculosis embR mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003458","l":"Mycobacterium tuberculosis ethA with mutation conferring resistance to ethionamide","na":2,"nb":1,"a":[["ARO%3A3003457","ethionamide resistant ethA"],["ARO%3A3003458","Mycobacterium tuberculosis ethA with mutation conferring resistance to ethionamide"]],"b":[["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"ARO:3003499","l":"Cutibacterium acnes 16S rRNA mutation conferring resistance to tetracycline","na":2,"nb":1,"a":[["ARO%3A3003499","Cutibacterium acnes 16S rRNA mutation conferring resistance to tetracycline"],["ARO%3A3003977","Halobacterium salinarum 16S rRNA mutation conferring resistance to pactamycin"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003573","l":"LpxA","na":1,"nb":2,"a":[["ARO%3A3003573","LpxA"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003574","l":"LpxC","na":1,"nb":2,"a":[["ARO%3A3003574","LpxC"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003575","l":"LpxD","na":1,"nb":2,"a":[["ARO%3A3003575","LpxD"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003585","l":"Klebsiella mutant PhoP conferring antibiotic resistance to colistin","na":1,"nb":2,"a":[["ARO%3A3003585","Klebsiella mutant PhoP conferring antibiotic resistance to colistin"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003676","l":"AAC(6')-Ib'","na":1,"nb":2,"a":[["ARO%3A3003676","AAC(6')-Ib'"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3003689","l":"MCR-1.1","na":1,"nb":2,"a":[["ARO%3A3003689","MCR-1.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003694","l":"MexJK-OprM","na":1,"nb":2,"a":[["ARO%3A3003694","MexJK-OprM"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003703","l":"MexMN-OprM","na":1,"nb":2,"a":[["ARO%3A3003703","MexMN-OprM"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3003722","l":"glycopeptide resistance gene cluster VanI","na":1,"nb":2,"a":[["ARO%3A3003722","glycopeptide resistance gene cluster VanI"]],"b":[["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3003751","l":"Escherichia coli nfsA mutations conferring resistance to nitrofurantoin","na":2,"nb":1,"a":[["ARO%3A3003754","antibiotic resistant nfsA"],["ARO%3A3003751","Escherichia coli nfsA mutations conferring resistance to nitrofurantoin"]],"b":[["antibacterial/nitrofurantoin.html","nitrofurantoin"]]},{"id":"ARO:3003795","l":"daptomycin resistant walK","na":2,"nb":1,"a":[["ARO%3A3003795","daptomycin resistant walK"],["ARO%3A3003794","Staphylococcus aureus walK with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003796","l":"Acinetobacter baumannii ampC beta-lactamase","na":1,"nb":2,"a":[["ARO%3A3003796","Acinetobacter baumannii ampC beta-lactamase"]],"b":[["antibacterial/cefepime.html","cefepime"],["antibacterial/piperacillin.html","piperacillin"]]},{"id":"ARO:3003798","l":"daptomycin resistant YybT","na":2,"nb":1,"a":[["ARO%3A3003798","daptomycin resistant YybT"],["ARO%3A3003797","Enterococcus faecalis YybT with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003802","l":"daptomycin resistant gdpD","na":2,"nb":1,"a":[["ARO%3A3003802","daptomycin resistant gdpD"],["ARO%3A3003800","Enterococcus faecalis gdpD with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003804","l":"daptomycin resistant agrA","na":2,"nb":1,"a":[["ARO%3A3003804","daptomycin resistant agrA"],["ARO%3A3003803","Staphylococcus aureus agrA with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003808","l":"carO","na":1,"nb":2,"a":[["ARO%3A3003808","carO"]],"b":[["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3003814","l":"daptomycin resistant drmA","na":2,"nb":1,"a":[["ARO%3A3003814","daptomycin resistant drmA"],["ARO%3A3003813","Enterococcus faecalis drmA with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003816","l":"daptomycin resistant YvlB","na":2,"nb":1,"a":[["ARO%3A3003816","daptomycin resistant YvlB"],["ARO%3A3003815","Enterococcus faecalis YvlB with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003820","l":"mgrB","na":1,"nb":2,"a":[["ARO%3A3003820","mgrB"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003893","l":"Escherichia coli uhpA with mutation conferring resistance to fosfomycin","na":2,"nb":1,"a":[["ARO%3A3003893","Escherichia coli uhpA with mutation conferring resistance to fosfomycin"],["ARO%3A3004249","UhpA"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003895","l":"Pseudomonas mutant PhoP conferring resistance to colistin","na":1,"nb":2,"a":[["ARO%3A3003895","Pseudomonas mutant PhoP conferring resistance to colistin"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003896","l":"Pseudomonas mutant PhoQ conferring resistance to colistin","na":1,"nb":2,"a":[["ARO%3A3003896","Pseudomonas mutant PhoQ conferring resistance to colistin"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003899","l":"Escherichia coli PtsI with mutation conferring resistance to fosfomycin","na":2,"nb":1,"a":[["ARO%3A3004250","antibiotic-resistant ptsI phosphotransferase"],["ARO%3A3003899","Escherichia coli PtsI with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003926","l":"Salmonella enterica gyrA conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3003926","Salmonella enterica gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3003928","l":"Neisseria gonorrhoeae gyrA with mutations conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3003928","Neisseria gonorrhoeae gyrA with mutations conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/sitafloxacin.html","Sitafloxacin"]]},{"id":"ARO:3003929","l":"Neisseria gonorrhoeae parC conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3003929","Neisseria gonorrhoeae parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/sitafloxacin.html","Sitafloxacin"]]},{"id":"ARO:3003937","l":"Neisseria meningititis PBP2 conferring resistance to beta-lactam","na":1,"nb":2,"a":[["ARO%3A3003937","Neisseria meningititis PBP2 conferring resistance to beta-lactam"]],"b":[["antibacterial/cefixime.html","cefixime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3003939","l":"Salmonella enterica parC conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3003939","Salmonella enterica parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3003940","l":"Shigella flexneri gyrA conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3003940","Shigella flexneri gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/nalidixic-acid.html","nalidixic acid"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3003941","l":"Shigella flexneri parC conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3003941","Shigella flexneri parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/nalidixic-acid.html","nalidixic acid"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3003953","l":"hmrM","na":1,"nb":2,"a":[["ARO%3A3003953","hmrM"]],"b":[["antibacterial/norfloxacin.html","norfloxacin"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3003955","l":"efpA","na":1,"nb":2,"a":[["ARO%3A3003955","efpA"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3003967","l":"lfrA","na":1,"nb":2,"a":[["ARO%3A3003967","lfrA"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3003968","l":"Klebsiella pneumoniae OmpK36","na":1,"nb":2,"a":[["ARO%3A3003968","Klebsiella pneumoniae OmpK36"]],"b":[["antibacterial/cefalotin.html","cefalotin"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3003971","l":"Erm(44)v","na":1,"nb":2,"a":[["ARO%3A3003971","Erm(44)v"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003974","l":"Cutibacterium acnes gyrA conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3003974","Cutibacterium acnes gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"ARO:3004057","l":"23S rRNA with mutation conferring resistance to linezolid antibiotics","na":2,"nb":1,"a":[["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3004058","Staphylococcus aureus 23S rRNA with mutation conferring resistance to linezolid"]],"b":[["antibacterial/linezolid.html","linezolid"]]},{"id":"ARO:3004070","l":"MexEF-OprN with MvaT deletion conferring resistance to chloramphenicol and norfloxacin","na":1,"nb":2,"a":[["ARO%3A3004070","MexEF-OprN with MvaT deletion conferring resistance to chloramphenicol and norfloxacin"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3004086","l":"","na":1,"nb":2,"a":[["ARO%3A3004086","APH(3')-VIIIb"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004087","l":"","na":1,"nb":2,"a":[["ARO%3A3004087","APH(3')-IXa"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004089","l":"","na":1,"nb":2,"a":[["ARO%3A3004089","ANT(3')-IIa"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004090","l":"","na":1,"nb":2,"a":[["ARO%3A3004090","ANT(3')-IIb"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004091","l":"","na":1,"nb":2,"a":[["ARO%3A3004091","ANT(3')-IIc"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004096","l":"daptomycin resistant CdsA","na":2,"nb":1,"a":[["ARO%3A3004096","daptomycin resistant CdsA"],["ARO%3A3004097","Streptococcus mitis CdsA with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3004110","l":"MCR-2.1","na":1,"nb":2,"a":[["ARO%3A3004110","MCR-2.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004114","l":"porin OmpC","na":1,"nb":2,"a":[["ARO%3A3004114","porin OmpC"]],"b":[["antibacterial/cefaloridine.html","cefaloridine"],["antibacterial/cefazolin.html","cefazolin"]]},{"id":"ARO:3004122","l":"Klebsiella pneumoniae OmpK37","na":1,"nb":2,"a":[["ARO%3A3004122","Klebsiella pneumoniae OmpK37"]],"b":[["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"ARO:3004131","l":"Escherichia coli 23S rRNA with mutation conferring resistance to erythromycin and telithromycin","na":1,"nb":2,"a":[["ARO%3A3004131","Escherichia coli 23S rRNA with mutation conferring resistance to erythromycin and telithromycin"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/telithromycin.html","telithromycin"]]},{"id":"ARO:3004136","l":"Ethambutol resistant iniB","na":2,"nb":1,"a":[["ARO%3A3004136","Ethambutol resistant iniB"],["ARO%3A3004135","Mycobacterium tuberculosis iniB with mutation conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3004138","l":"Moraxella catarrhalis 23S rRNA with mutation conferring resistance to macrolide antibiotics","na":1,"nb":2,"a":[["ARO%3A3004138","Moraxella catarrhalis 23S rRNA with mutation conferring resistance to macrolide antibiotics"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004139","l":"MCR-3.1","na":1,"nb":2,"a":[["ARO%3A3004139","MCR-3.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004146","l":"cfrC","na":1,"nb":2,"a":[["ARO%3A3004146","cfrC"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"]]},{"id":"ARO:3004170","l":"Streptococcus pneumoniae 23S rRNA with mutation conferring resistance to macrolide antibiotics","na":1,"nb":2,"a":[["ARO%3A3004170","Streptococcus pneumoniae 23S rRNA with mutation conferring resistance to macrolide antibiotics"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3004177","l":"Mycoplasmopsis fermentans 23S rRNA with mutation conferring resistance to macrolide antibiotics","na":1,"nb":2,"a":[["ARO%3A3004177","Mycoplasmopsis fermentans 23S rRNA with mutation conferring resistance to macrolide antibiotics"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004194","l":"MCR-1.2","na":1,"nb":2,"a":[["ARO%3A3004194","MCR-1.2"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004285","l":"tunicamycin resistance protein","na":2,"nb":1,"a":[["ARO%3A3003059","tmrB"],["ARO%3A3004285","tunicamycin resistance protein"]],"b":[["antibacterial/tunicamycin.html","tunicamycin"]]},{"id":"ARO:3004325","l":"MCR-4.1","na":1,"nb":2,"a":[["ARO%3A3004325","MCR-4.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004332","l":"MCR-5.1","na":1,"nb":2,"a":[["ARO%3A3004332","MCR-5.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004466","l":"ICR-Mc","na":1,"nb":2,"a":[["ARO%3A3004466","ICR-Mc"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004490","l":"delamanid","na":2,"nb":1,"a":[["ARO%3A3007661","Mycobacterium tuberculosis ddn mutation conferring resistance to nitroimidazole antibiotics"],["ARO%3A3007849","Mycobacterium tuberculosis fgd1 with mutation conferring resistance to delamanid"]],"b":[["antibacterial/delamanid.html","delamanid"]]},{"id":"ARO:3004500","l":"MCR-3.11","na":1,"nb":2,"a":[["ARO%3A3004500","MCR-3.11"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004501","l":"MCR-6.1","na":1,"nb":2,"a":[["ARO%3A3004501","MCR-6.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004502","l":"MCR-2.2","na":1,"nb":2,"a":[["ARO%3A3004502","MCR-2.2"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004503","l":"MCR-3.6","na":1,"nb":2,"a":[["ARO%3A3004503","MCR-3.6"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004504","l":"MCR-3.10","na":1,"nb":2,"a":[["ARO%3A3004504","MCR-3.10"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004505","l":"MCR-3.5","na":1,"nb":2,"a":[["ARO%3A3004505","MCR-3.5"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004506","l":"MCR-1.10","na":1,"nb":2,"a":[["ARO%3A3004506","MCR-1.10"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004507","l":"MCR-1.9","na":1,"nb":2,"a":[["ARO%3A3004507","MCR-1.9"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004508","l":"MCR-3.9","na":1,"nb":2,"a":[["ARO%3A3004508","MCR-3.9"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004509","l":"MCR-3.8","na":1,"nb":2,"a":[["ARO%3A3004509","MCR-3.8"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004510","l":"MCR-3.7","na":1,"nb":2,"a":[["ARO%3A3004510","MCR-3.7"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004511","l":"MCR-3.2","na":1,"nb":2,"a":[["ARO%3A3004511","MCR-3.2"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004513","l":"MCR-1.6","na":1,"nb":2,"a":[["ARO%3A3004513","MCR-1.6"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004514","l":"MCR-1.3","na":1,"nb":2,"a":[["ARO%3A3004514","MCR-1.3"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004515","l":"MCR-1.4","na":1,"nb":2,"a":[["ARO%3A3004515","MCR-1.4"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004516","l":"MCR-8.1","na":1,"nb":2,"a":[["ARO%3A3004516","MCR-8.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004517","l":"MCR-7.1","na":1,"nb":2,"a":[["ARO%3A3004517","MCR-7.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004541","l":"mphK","na":1,"nb":2,"a":[["ARO%3A3004541","mphK"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/telithromycin.html","telithromycin"]]},{"id":"ARO:3004560","l":"murG transferase","na":2,"nb":1,"a":[["ARO%3A3004561","Clostridioides difficile murG with mutation conferring resistance to vancomycin"],["ARO%3A3004560","murG transferase"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3004563","l":"Clostridioides difficile rpoB with mutation conferring resistance to rifampicin","na":1,"nb":2,"a":[["ARO%3A3004563","Clostridioides difficile rpoB with mutation conferring resistance to rifampicin"]],"b":[["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3004569","l":"ICR-Mo","na":1,"nb":2,"a":[["ARO%3A3004569","ICR-Mo"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004574","l":"Acinetobacter baumannii AbaQ","na":1,"nb":2,"a":[["ARO%3A3004574","Acinetobacter baumannii AbaQ"]],"b":[["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3004577","l":"Acinetobacter baumannii AmvA","na":1,"nb":2,"a":[["ARO%3A3004577","Acinetobacter baumannii AmvA"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3004581","l":"tet(48)","na":1,"nb":2,"a":[["ARO%3A3004581","tet(48)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004582","l":"tet(49)","na":1,"nb":2,"a":[["ARO%3A3004582","tet(49)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004584","l":"tet(50)","na":1,"nb":2,"a":[["ARO%3A3004584","tet(50)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004586","l":"tet(51)","na":1,"nb":2,"a":[["ARO%3A3004586","tet(51)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004587","l":"tet(52)","na":1,"nb":2,"a":[["ARO%3A3004587","tet(52)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004590","l":"tet(54)","na":1,"nb":2,"a":[["ARO%3A3004590","tet(54)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004600","l":"LnuH","na":1,"nb":2,"a":[["ARO%3A3004600","LnuH"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3004603","l":"tet(56)","na":1,"nb":2,"a":[["ARO%3A3004603","tet(56)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004613","l":"tet(47)","na":1,"nb":2,"a":[["ARO%3A3004613","tet(47)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004616","l":"Mycoplasma genitalium 23S rRNA mutations confers resistance to fluoroquinolone and macrolide antibiotics","na":1,"nb":2,"a":[["ARO%3A3004616","Mycoplasma genitalium 23S rRNA mutations confers resistance to fluoroquinolone and macrolide antibiotics"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3004626","l":"Erm(49)","na":1,"nb":2,"a":[["ARO%3A3004626","Erm(49)"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004641","l":"","na":1,"nb":2,"a":[["ARO%3A3004641","AAC(6')-I-43"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3004654","l":"Clostridioides difficile 23S rRNA with mutation conferring resistance to erythromycin and clindamycin","na":1,"nb":2,"a":[["ARO%3A3004654","Clostridioides difficile 23S rRNA with mutation conferring resistance to erythromycin and clindamycin"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004662","l":"MCR-3.3","na":1,"nb":2,"a":[["ARO%3A3004662","MCR-3.3"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004666","l":"pexA","na":1,"nb":2,"a":[["ARO%3A3004666","pexA"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"]]},{"id":"ARO:3004678","l":"rmtE","na":1,"nb":2,"a":[["ARO%3A3004678","rmtE"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamycin-a.html","gentamycin A"]]},{"id":"ARO:3004680","l":"","na":1,"nb":2,"a":[["ARO%3A3004680","APH(3')-VIIIa"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004682","l":"aadA27","na":1,"nb":2,"a":[["ARO%3A3004682","aadA27"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004684","l":"MCR-9.1","na":1,"nb":2,"a":[["ARO%3A3004684","MCR-9.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004685","l":"MCR-1.5","na":1,"nb":2,"a":[["ARO%3A3004685","MCR-1.5"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004686","l":"MCR-1.7","na":1,"nb":2,"a":[["ARO%3A3004686","MCR-1.7"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004687","l":"MCR-1.8","na":1,"nb":2,"a":[["ARO%3A3004687","MCR-1.8"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004688","l":"MCR-1.11","na":1,"nb":2,"a":[["ARO%3A3004688","MCR-1.11"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004689","l":"MCR-1.12","na":1,"nb":2,"a":[["ARO%3A3004689","MCR-1.12"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004690","l":"MCR-1.13","na":1,"nb":2,"a":[["ARO%3A3004690","MCR-1.13"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004691","l":"MCR-3.4","na":1,"nb":2,"a":[["ARO%3A3004691","MCR-3.4"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004692","l":"aadA10","na":1,"nb":2,"a":[["ARO%3A3004692","aadA10"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004693","l":"MCR-3.12","na":1,"nb":2,"a":[["ARO%3A3004693","MCR-3.12"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004694","l":"MCR-4.2","na":1,"nb":2,"a":[["ARO%3A3004694","MCR-4.2"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004695","l":"MCR-4.3","na":1,"nb":2,"a":[["ARO%3A3004695","MCR-4.3"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004696","l":"MCR-4.4","na":1,"nb":2,"a":[["ARO%3A3004696","MCR-4.4"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004697","l":"MCR-4.5","na":1,"nb":2,"a":[["ARO%3A3004697","MCR-4.5"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004698","l":"MCR-5.2","na":1,"nb":2,"a":[["ARO%3A3004698","MCR-5.2"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004704","l":"aadA8b","na":1,"nb":2,"a":[["ARO%3A3004704","aadA8b"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004719","l":"tet(X3)","na":1,"nb":2,"a":[["ARO%3A3004719","tet(X3)"]],"b":[["antibacterial/tetracycline.html","tetracycline"],["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:3004720","l":"tet(X4)","na":1,"nb":2,"a":[["ARO%3A3004720","tet(X4)"]],"b":[["antibacterial/tetracycline.html","tetracycline"],["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:3004721","l":"Mycobacterium tuberculosis rpsA mutations conferring resistance to pyrazinamide","na":2,"nb":1,"a":[["ARO%3A3004721","Mycobacterium tuberculosis rpsA mutations conferring resistance to pyrazinamide"],["ARO%3A3004722","pyrazinamide resistant rpsA"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004832","l":"Neisseria gonorrhoeae PBP2 conferring resistance to beta-lactam antibiotics","na":1,"nb":2,"a":[["ARO%3A3004832","Neisseria gonorrhoeae PBP2 conferring resistance to beta-lactam antibiotics"]],"b":[["antibacterial/cefixime.html","cefixime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3004851","l":"Neisseria gonorrhoeae mtrR with mutation conferring resistance","na":1,"nb":2,"a":[["ARO%3A3004851","Neisseria gonorrhoeae mtrR with mutation conferring resistance"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004918","l":"Mycobacterium tuberculosis eccB5 conferring resistance to fluoroquinolones","na":2,"nb":1,"a":[["ARO%3A3004918","Mycobacterium tuberculosis eccB5 conferring resistance to fluoroquinolones"],["ARO%3A3004919","Mycobacterium tuberculosis eccC5 conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3004930","l":"Mycobacterium tuberculosis nat mutations conferring resistance to isoniazid","na":2,"nb":1,"a":[["ARO%3A3004910","isoniazid resistant nat"],["ARO%3A3004930","Mycobacterium tuberculosis nat mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004960","l":"Mycobacterium tuberculosis ponA1 mutations conferring resistance to rifabutin","na":1,"nb":2,"a":[["ARO%3A3004960","Mycobacterium tuberculosis ponA1 mutations conferring resistance to rifabutin"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3004965","l":"streptomycin resistant whib7","na":2,"nb":1,"a":[["ARO%3A3004968","Mycobacterium tuberculosis whib7 mutation conferring resistance to streptomycin"],["ARO%3A3004965","streptomycin resistant whib7"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004966","l":"Kanamycin resistant whib7","na":2,"nb":1,"a":[["ARO%3A3004966","Kanamycin resistant whib7"],["ARO%3A3004967","Mycobacterium tuberculosis whib7 mutations confer resistance to kanamycin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004994","l":"Mycobacterium tuberculosis rpoC mutations confer resistance to rifampicin","na":1,"nb":2,"a":[["ARO%3A3004994","Mycobacterium tuberculosis rpoC mutations confer resistance to rifampicin"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3004998","l":"rifampicin resistant rpoA","na":2,"nb":1,"a":[["ARO%3A3004999","Mycobacterium tuberculosis rpoA mutations confer resistance to rifampicin"],["ARO%3A3004998","rifampicin resistant rpoA"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3005023","l":"cfrE","na":1,"nb":2,"a":[["ARO%3A3005023","cfrE"]],"b":[["antibacterial/thiamphenicol.html","thiamphenicol"],["antibacterial/tiamulin.html","tiamulin"]]},{"id":"ARO:3005044","l":"OmpA","na":1,"nb":2,"a":[["ARO%3A3005044","OmpA"]],"b":[["antibacterial/defensin.html","defensin"],["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3005049","l":"CrcB","na":1,"nb":2,"a":[["ARO%3A3005049","CrcB"]],"b":[["antibacterial/gentamicin.html","gentamicin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005052","l":"LpsA","na":1,"nb":2,"a":[["ARO%3A3005052","LpsA"]],"b":[["antibacterial/defensin.html","defensin"],["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3005053","l":"ArnT","na":1,"nb":2,"a":[["ARO%3A3005053","ArnT"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3005061","l":"AAC(3)-IVb","na":1,"nb":2,"a":[["ARO%3A3005061","AAC(3)-IVb"]],"b":[["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005062","l":"","na":1,"nb":2,"a":[["ARO%3A3005062","ANT(3')-Ib"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3005081","l":"Thermus thermophilus uL3 mutations conferring resistance to pleuromutilin antibiotics","na":2,"nb":1,"a":[["ARO%3A3005082","Ribosomal protein mutation conferring resistance to pleuromutilin antibiotics"],["ARO%3A3005081","Thermus thermophilus uL3 mutations conferring resistance to pleuromutilin antibiotics"]],"b":[["antibacterial/tiamulin.html","tiamulin"]]},{"id":"ARO:3005221","l":"MCR-3.41","na":1,"nb":2,"a":[["ARO%3A3005221","MCR-3.41"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007023","l":"NDM-33","na":1,"nb":2,"a":[["ARO%3A3007023","NDM-33"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3007029","l":"salE","na":1,"nb":2,"a":[["ARO%3A3007029","salE"]],"b":[["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"]]},{"id":"ARO:3007042","l":"msr(G)","na":1,"nb":2,"a":[["ARO%3A3007042","msr(G)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3007044","l":"mef(F)","na":1,"nb":2,"a":[["ARO%3A3007044","mef(F)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3007051","l":"Helicobacter pylori rpoB mutation conferring resistance to rifampicin","na":1,"nb":2,"a":[["ARO%3A3007051","Helicobacter pylori rpoB mutation conferring resistance to rifampicin"]],"b":[["antibacterial/levofloxacin.html","levofloxacin"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3007053","l":"Helicobacter pylori gyrB conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3007053","Helicobacter pylori gyrB conferring resistance to fluoroquinolones"]],"b":[["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3007055","l":"Helicobacter pylori rdxA mutation conferring resistance to metronidazole","na":2,"nb":1,"a":[["ARO%3A3007056","Antibiotic resistant Helicobacter pylori nitroreductase"],["ARO%3A3007055","Helicobacter pylori rdxA mutation conferring resistance to metronidazole"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007070","l":"MCR-1.33","na":1,"nb":2,"a":[["ARO%3A3007070","MCR-1.33"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007118","l":"crxA","na":1,"nb":2,"a":[["ARO%3A3007118","crxA"]],"b":[["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3007137","l":"mcr-10.1","na":1,"nb":2,"a":[["ARO%3A3007137","mcr-10.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007158","l":"","na":2,"nb":1,"a":[["ARO%3A3003976","16S rRNA with mutation conferring resistance to pactamycin"],["ARO%3A3003977","Halobacterium salinarum 16S rRNA mutation conferring resistance to pactamycin"]],"b":[["antibacterial/pactamycin.html","pactamycin"]]},{"id":"ARO:3007160","l":"","na":2,"nb":1,"a":[["ARO%3A3004859","Neisseria gonorrhoeae gyrB conferring resistance to zoliflodacin"],["ARO%3A3005000","Zoliflodacin resistant gyrB"]],"b":[["antibacterial/zoliflodacin.html","zoliflodacin"]]},{"id":"ARO:3007187","l":"glycopeptide resistance gene cluster vanP","na":1,"nb":2,"a":[["ARO%3A3007187","glycopeptide resistance gene cluster vanP"]],"b":[["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3007199","l":"PAM-1","na":1,"nb":2,"a":[["ARO%3A3007199","PAM-1"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/doripenem.html","doripenem"]]},{"id":"ARO:3007203","l":"Klebsiella pneumoniae mutant PhoQ conferring resistance to colistin","na":1,"nb":2,"a":[["ARO%3A3007203","Klebsiella pneumoniae mutant PhoQ conferring resistance to colistin"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007227","l":"MCR-8.3","na":1,"nb":2,"a":[["ARO%3A3007227","MCR-8.3"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007228","l":"MCR-8.4","na":1,"nb":2,"a":[["ARO%3A3007228","MCR-8.4"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007229","l":"MCR-8.2","na":1,"nb":2,"a":[["ARO%3A3007229","MCR-8.2"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007230","l":"MCR-1.34","na":1,"nb":2,"a":[["ARO%3A3007230","MCR-1.34"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007231","l":"MCR-4.6","na":1,"nb":2,"a":[["ARO%3A3007231","MCR-4.6"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007232","l":"MCR-1.27","na":1,"nb":2,"a":[["ARO%3A3007232","MCR-1.27"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007233","l":"MCR-1.18","na":1,"nb":2,"a":[["ARO%3A3007233","MCR-1.18"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007234","l":"MCR-1.23","na":1,"nb":2,"a":[["ARO%3A3007234","MCR-1.23"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007235","l":"MCR-1.20","na":1,"nb":2,"a":[["ARO%3A3007235","MCR-1.20"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007236","l":"MCR-1.28","na":1,"nb":2,"a":[["ARO%3A3007236","MCR-1.28"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007237","l":"MCR-1.21","na":1,"nb":2,"a":[["ARO%3A3007237","MCR-1.21"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007238","l":"MCR-1.16","na":1,"nb":2,"a":[["ARO%3A3007238","MCR-1.16"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007239","l":"MCR-1.22","na":1,"nb":2,"a":[["ARO%3A3007239","MCR-1.22"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007240","l":"MCR-1.19","na":1,"nb":2,"a":[["ARO%3A3007240","MCR-1.19"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007241","l":"MCR-1.29","na":1,"nb":2,"a":[["ARO%3A3007241","MCR-1.29"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007242","l":"MCR-1.30","na":1,"nb":2,"a":[["ARO%3A3007242","MCR-1.30"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007243","l":"MCR-1.24","na":1,"nb":2,"a":[["ARO%3A3007243","MCR-1.24"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007244","l":"MCR-1.17","na":1,"nb":2,"a":[["ARO%3A3007244","MCR-1.17"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007245","l":"MCR-1.31","na":1,"nb":2,"a":[["ARO%3A3007245","MCR-1.31"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007246","l":"MCR-1.14","na":1,"nb":2,"a":[["ARO%3A3007246","MCR-1.14"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007247","l":"MCR-1.25","na":1,"nb":2,"a":[["ARO%3A3007247","MCR-1.25"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007248","l":"MCR-3.33","na":1,"nb":2,"a":[["ARO%3A3007248","MCR-3.33"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007249","l":"MCR-3.14","na":1,"nb":2,"a":[["ARO%3A3007249","MCR-3.14"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007250","l":"MCR-3.37","na":1,"nb":2,"a":[["ARO%3A3007250","MCR-3.37"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007251","l":"MCR-3.38","na":1,"nb":2,"a":[["ARO%3A3007251","MCR-3.38"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007252","l":"MCR-3.15","na":1,"nb":2,"a":[["ARO%3A3007252","MCR-3.15"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007253","l":"MCR-3.27","na":1,"nb":2,"a":[["ARO%3A3007253","MCR-3.27"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007254","l":"MCR-3.32","na":1,"nb":2,"a":[["ARO%3A3007254","MCR-3.32"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007255","l":"MCR-3.31","na":1,"nb":2,"a":[["ARO%3A3007255","MCR-3.31"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007256","l":"MCR-3.23","na":1,"nb":2,"a":[["ARO%3A3007256","MCR-3.23"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007257","l":"MCR-3.36","na":1,"nb":2,"a":[["ARO%3A3007257","MCR-3.36"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007258","l":"MCR-3.25","na":1,"nb":2,"a":[["ARO%3A3007258","MCR-3.25"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007259","l":"MCR-3.22","na":1,"nb":2,"a":[["ARO%3A3007259","MCR-3.22"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007260","l":"MCR-3.16","na":1,"nb":2,"a":[["ARO%3A3007260","MCR-3.16"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007261","l":"MCR-3.26","na":1,"nb":2,"a":[["ARO%3A3007261","MCR-3.26"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007262","l":"MCR-3.21","na":1,"nb":2,"a":[["ARO%3A3007262","MCR-3.21"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007263","l":"MCR-3.18","na":1,"nb":2,"a":[["ARO%3A3007263","MCR-3.18"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007264","l":"MCR-3.40","na":1,"nb":2,"a":[["ARO%3A3007264","MCR-3.40"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007265","l":"MCR-3.24","na":1,"nb":2,"a":[["ARO%3A3007265","MCR-3.24"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007266","l":"MCR-3.20","na":1,"nb":2,"a":[["ARO%3A3007266","MCR-3.20"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007267","l":"MCR-3.35","na":1,"nb":2,"a":[["ARO%3A3007267","MCR-3.35"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007268","l":"MCR-3.34","na":1,"nb":2,"a":[["ARO%3A3007268","MCR-3.34"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007269","l":"MCR-3.13","na":1,"nb":2,"a":[["ARO%3A3007269","MCR-3.13"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007270","l":"MCR-3.28","na":1,"nb":2,"a":[["ARO%3A3007270","MCR-3.28"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007271","l":"MCR-3.39","na":1,"nb":2,"a":[["ARO%3A3007271","MCR-3.39"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007272","l":"MCR-3.29","na":1,"nb":2,"a":[["ARO%3A3007272","MCR-3.29"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007273","l":"MCR-3.19","na":1,"nb":2,"a":[["ARO%3A3007273","MCR-3.19"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007274","l":"MCR-10.5","na":1,"nb":2,"a":[["ARO%3A3007274","MCR-10.5"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007275","l":"MCR-10.3","na":1,"nb":2,"a":[["ARO%3A3007275","MCR-10.3"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007276","l":"MCR-10.4","na":1,"nb":2,"a":[["ARO%3A3007276","MCR-10.4"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007277","l":"MCR-10.2","na":1,"nb":2,"a":[["ARO%3A3007277","MCR-10.2"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007278","l":"MCR-3.17","na":1,"nb":2,"a":[["ARO%3A3007278","MCR-3.17"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007279","l":"MCR-1.15","na":1,"nb":2,"a":[["ARO%3A3007279","MCR-1.15"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007280","l":"MCR-1.26","na":1,"nb":2,"a":[["ARO%3A3007280","MCR-1.26"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007281","l":"MCR-5.4","na":1,"nb":2,"a":[["ARO%3A3007281","MCR-5.4"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007282","l":"MCR-5.3","na":1,"nb":2,"a":[["ARO%3A3007282","MCR-5.3"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007283","l":"MCR-2.4","na":1,"nb":2,"a":[["ARO%3A3007283","MCR-2.4"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007284","l":"MCR-2.3","na":1,"nb":2,"a":[["ARO%3A3007284","MCR-2.3"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007285","l":"MCR-2.8","na":1,"nb":2,"a":[["ARO%3A3007285","MCR-2.8"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007286","l":"MCR-2.5","na":1,"nb":2,"a":[["ARO%3A3007286","MCR-2.5"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007287","l":"MCR-2.7","na":1,"nb":2,"a":[["ARO%3A3007287","MCR-2.7"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007288","l":"MCR-2.6","na":1,"nb":2,"a":[["ARO%3A3007288","MCR-2.6"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007289","l":"MCR-1.32","na":1,"nb":2,"a":[["ARO%3A3007289","MCR-1.32"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007375","l":"KPC-87","na":1,"nb":2,"a":[["ARO%3A3007375","KPC-87"]],"b":[["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3007402","l":"KPC-94","na":1,"nb":2,"a":[["ARO%3A3007402","KPC-94"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3007423","l":"Escherichia coli PBP3 mutants conferring resistance to beta-lactam antibiotics","na":1,"nb":2,"a":[["ARO%3A3007423","Escherichia coli PBP3 mutants conferring resistance to beta-lactam antibiotics"]],"b":[["antibacterial/ceftaroline.html","ceftaroline"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007493","l":"tet(63)","na":1,"nb":2,"a":[["ARO%3A3007493","tet(63)"]],"b":[["antibacterial/doxycycline.html","doxycycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007494","l":"tet(64)","na":1,"nb":2,"a":[["ARO%3A3007494","tet(64)"]],"b":[["antibacterial/doxycycline.html","doxycycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007498","l":"","na":1,"nb":2,"a":[["ARO%3A3007640","Candida spp. pleiotropic drug resistance factor 1"]],"b":[["antifungal/naftifine.html","naftifine"],["antifungal/terbinafine.html","terbinafine"]]},{"id":"ARO:3007533","l":"MCR-4.7","na":1,"nb":2,"a":[["ARO%3A3007533","MCR-4.7"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007553","l":"Candida spp. CDR1","na":1,"nb":2,"a":[["ARO%3A3007553","Candida spp. CDR1"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/miconazole.html","miconazole"]]},{"id":"ARO:3007554","l":"Candida spp. CDR2","na":1,"nb":2,"a":[["ARO%3A3007554","Candida spp. CDR2"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/terbinafine.html","terbinafine"]]},{"id":"ARO:3007661","l":"Mycobacterium tuberculosis ddn mutation conferring resistance to nitroimidazole antibiotics","na":1,"nb":2,"a":[["ARO%3A3007661","Mycobacterium tuberculosis ddn mutation conferring resistance to nitroimidazole antibiotics"]],"b":[["antibacterial/delamanid.html","delamanid"],["antibacterial/pretomanid.html","pretomanid"]]},{"id":"ARO:3007662","l":"Rv1877","na":1,"nb":2,"a":[["ARO%3A3007662","Rv1877"]],"b":[["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3007692","l":"Mycobacterium tuberculosis Rv2535c with mutation conferring resistance to bedaquiline","na":1,"nb":2,"a":[["ARO%3A3007692","Mycobacterium tuberculosis Rv2535c with mutation conferring resistance to bedaquiline"]],"b":[["antimycobacterial/bedaquiline.html","bedaquiline"],["antimycobacterial/clofazimine.html","clofazimine"]]},{"id":"ARO:3007751","l":"Salmonella isangi gyrA conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3007751","Salmonella isangi gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3007752","l":"Salmonella isangi gyrB conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3007752","Salmonella isangi gyrB conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3007861","l":"DYB-1","na":1,"nb":2,"a":[["ARO%3A3007861","DYB-1"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3009148","l":"MexJK","na":2,"nb":1,"a":[["ARO%3A3009148","MexJK"],["ARO%3A3003710","MexL"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3009153","l":"MexHI-OpmD","na":1,"nb":2,"a":[["ARO%3A3009153","MexHI-OpmD"]],"b":[["antibacterial/norfloxacin.html","norfloxacin"],["biocide/acriflavine.html","acriflavine"]]},{"id":"CHEBI:10023","l":"voriconazole","na":2,"nb":1,"a":[["RHEA%3A61912","voriconazole(in) + ATP + H2O = voriconazole(out) + ADP + phosphate + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"CHEBI:100246","l":"norfloxacin","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"CHEBI:10101","l":"zalcitabine","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.41","The Concentrative Nucleoside Transporter (CNT) Family"]],"b":[["antiviral/zalcitabine.html","zalcitabine"]]},{"id":"CHEBI:10110","l":"zidovudine","na":2,"nb":1,"a":[["TCDB%3A2.A.41","The Concentrative Nucleoside Transporter (CNT) Family"],["TCDB%3A2.A.60","The Organo Anion Transporter (OAT) Family"]],"b":[["antiviral/zidovudine.html","zidovudine"]]},{"id":"CHEBI:132426","l":"chondrochloren A","na":2,"nb":1,"a":[["EC%3A4.1.1.129","1'-carboxy-chondrochloren decarboxylase"],["RHEA%3A81491","1'-carboxy-chondrochloren A + FAD + 2 H(+) = chondrochloren A + FADH2 + CO2"]],"b":[["unspecified/chondrochloren-a.html","chondrochloren A"]]},{"id":"CHEBI:132442","l":"chondrochloren B","na":2,"nb":1,"a":[["EC%3A4.1.1.129","1'-carboxy-chondrochloren decarboxylase"],["RHEA%3A81495","1'-carboxy-chondrochloren B + FAD + 2 H(+) = chondrochloren B + FADH2 + CO2"]],"b":[["unspecified/chondrochloren-b.html","chondrochloren B"]]},{"id":"CHEBI:132987","l":"alliin zwitterion","na":2,"nb":1,"a":[["EC%3A4.4.1.4","alliin lyase"],["RHEA%3A54688","alliin = allylsulfenate + 2-aminoprop-2-enoate"]],"b":[["unspecified/alliin-zwitterion.html","alliin zwitterion"]]},{"id":"CHEBI:133907","l":"hypothiocyanous acid","na":2,"nb":1,"a":[["RHEA%3A69416","thiocyanate + H2O2 + H(+) = hypothiocyanous acid + H2O"],["MCSA%3A944","Lactoperoxidase"]],"b":[["antibacterial/hypothiocyanous-acid.html","hypothiocyanous acid"]]},{"id":"CHEBI:137041","l":"quinine(1+)","na":2,"nb":1,"a":[["EC%3A1.14.14.55","quinine 3-monooxygenase"],["RHEA%3A20149","quinine + reduced [NADPH--hemoprotein reductase] + O2 = 3-hydroxyquinine + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["antiprotozoal/quinine-1.html","quinine(1+)"]]},{"id":"CHEBI:137419","l":"","na":2,"nb":1,"a":[["EC%3A2.1.1.49","amine N-methyltransferase"],["RHEA%3A53924","a secondary amine + S-adenosyl-L-methionine = a methylated secondary amine + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antifungal/solasodine-1.html","solasodine(1+)"]]},{"id":"CHEBI:138224","l":"(13R)-epi-8,13-epoxylabd-14-ene","na":2,"nb":1,"a":[["EC%3A4.2.3.186","ent-13-epi-manoyl oxide synthase"],["RHEA%3A18721","ent-8alpha-hydroxylabd-13-en-15-yl diphosphate = ent-13-epi-manoyl oxide + diphosphate"]],"b":[["antibacterial/13r-epi-8-13-epoxylabd-14-ene.html","(13R)-epi-8,13-epoxylabd-14-ene"]]},{"id":"CHEBI:138945","l":"maniladiol","na":2,"nb":1,"a":[["EC%3A1.14.14.63","beta-amyrin 16beta-monooxygenase"],["RHEA%3A55440","beta-amyrin + reduced [NADPH--hemoprotein reductase] + O2 = maniladiol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["antimycobacterial/maniladiol.html","maniladiol"]]},{"id":"CHEBI:138961","l":"sugiol","na":2,"nb":1,"a":[["EC%3A1.14.14.65","sugiol synthase"],["RHEA%3A55456","ferruginol + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = sugiol + 2 oxidized [NADPH--hemoprotein reductase] + 3 H2O + 2 H(+)"]],"b":[["antiviral/sugiol.html","sugiol"]]},{"id":"CHEBI:140183","l":"","na":2,"nb":1,"a":[["EC%3A1.1.1.348","(3R)-2'-hydroxyisoflavanone reductase"],["RHEA%3A56284","a (3R,4R)-4,2'-dihydroxyisoflavan + NADP(+) = a (3R)-2'-hydroxyisoflavanone + NADPH + H(+)"]],"b":[["antibacterial/vestitone.html","vestitone"]]},{"id":"CHEBI:141992","l":"","na":2,"nb":1,"a":[["EC%3A1.14.14.162","flavanone 2-hydroxylase"],["RHEA%3A57584","a flavanone + reduced [NADPH--hemoprotein reductase] + O2 = a 2-hydroxyflavanone + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["antiviral/2s-2-7-dihydroxy-5-methoxy-6-8-dimethylflavanone.html","(2S)-2,7-dihydroxy-5-methoxy-6,8-dimethylflavanone"]]},{"id":"CHEBI:142061","l":"trichosetin(1−)","na":2,"nb":1,"a":[["RHEA%3A67328","(5S)-3-[(2E,6R,8E,10E,12E)-2,6-dimethyltetradeca-2,8,10,12-tetraenoyl]-5-(hydroxymethyl)pyrrolidine-2,4-dione = trichosetin"],["RHEA%3A57648","trichosetin + S-adenosyl-L-methionine = equisetin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/trichosetin-1.html","trichosetin(1−)"]]},{"id":"CHEBI:143285","l":"L-propargylglycine zwitterion","na":2,"nb":1,"a":[["RHEA%3A59892","L-2-amino-4-chloropent-4-enoate = L-propargylglycine + chloride + H(+)"],["RHEA%3A59896","L-propargylglycine + L-glutamate + ATP = L-gamma-glutamyl-L-propargylglycine + ADP + phosphate + H(+)"]],"b":[["unspecified/l-propargylglycine-zwitterion.html","L-propargylglycine zwitterion"]]},{"id":"CHEBI:145111","l":"isopatulin","na":2,"nb":1,"a":[["RHEA%3A62224","neopatulin + NADPH + H(+) = (E)-ascladiol + NADP(+)"],["RHEA%3A62220","phyllostine = neopatulin"]],"b":[["antibacterial/isopatulin.html","isopatulin"]]},{"id":"CHEBI:145874","l":"deoxyherqueinone(1−)","na":2,"nb":1,"a":[["RHEA%3A62664","(2'R)-atrovenetin + S-adenosyl-L-methionine = deoxyherqueinone + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A62668","deoxyherqueinone + NADPH + O2 + H(+) = herqueinone + NADP(+) + H2O"]],"b":[["antibacterial/deoxyherqueinone-1.html","deoxyherqueinone(1−)"]]},{"id":"CHEBI:146153","l":"ilicicolin B","na":2,"nb":1,"a":[["RHEA%3A63084","ilicicolin B + FADH2 + chloride + O2 = ilicicolin A + FAD + 2 H2O + H(+)"],["RHEA%3A63080","ilicicolinate B + AH2 + ATP = ilicicolin B + A + AMP + diphosphate"]],"b":[["unspecified/ilicicolin-b.html","ilicicolin B"]]},{"id":"CHEBI:15366","l":"acetic acid","na":2,"nb":1,"a":[["MCSA%3A431","acetylxylan esterase"],["MCSA%3A996","Peptidoglycan-N-acetylglucosamine deacetylase Bc1960"]],"b":[["biocide/acetic-acid.html","acetic acid"]]},{"id":"CHEBI:15390","l":"(+)-bisdechlorogeodin","na":2,"nb":1,"a":[["EC%3A1.21.3.4","sulochrin oxidase [(+)-bisdechlorogeodin-forming]"],["RHEA%3A24092","2 sulochrin + O2 + 2 H(+) = 2 (2S)-bisdechlorogeodin + 2 H2O"]],"b":[["unspecified/bisdechlorogeodin.html","(+)-bisdechlorogeodin"]]},{"id":"CHEBI:15391","l":"(−)-bisdechlorogeodin","na":2,"nb":1,"a":[["EC%3A1.21.3.5","sulochrin oxidase [(-)-bisdechlorogeodin-forming]"],["RHEA%3A22616","2 sulochrin + O2 + 2 H(+) = 2 (2R)-bisdechlorogeodin + 2 H2O"]],"b":[["unspecified/bisdechlorogeodin-15391.html","(−)-bisdechlorogeodin"]]},{"id":"CHEBI:15660","l":"(Z)-2-(2-furyl)-3-(5-nitro-2-furyl)acrylamide","na":2,"nb":1,"a":[["EC%3A5.2.1.6","furylfuramide isomerase"],["RHEA%3A21848","(E)-2-(2-furyl)-3-(5-nitro-2-furyl)acrylamide = (Z)-2-(2-furyl)-3-(5-nitro-2-furyl)acrylamide"]],"b":[["unspecified/z-2-2-furyl-3-5-nitro-2-furyl-acrylamide.html","(Z)-2-(2-furyl)-3-(5-nitro-2-furyl)acrylamide"]]},{"id":"CHEBI:15712","l":"2,3-dihydrobiochanin A","na":2,"nb":1,"a":[["EC%3A1.3.1.46","biochanin-A reductase"],["RHEA%3A12817","2,3-dihydrobiochanin A + NADP(+) = biochanin A + NADPH + 2 H(+)"]],"b":[["antifungal/2-3-dihydrobiochanin-a.html","2,3-dihydrobiochanin A"]]},{"id":"CHEBI:16196","l":"oleic acid","na":2,"nb":1,"a":[["TCDB%3A9.A.76","The Omega3 Fatty Acid Desaturase 3/Putative Transporter (FAD3) Family"],["proteintraitsmech%3ABIOLIP_OLA","OLA-binding site"]],"b":[["antibacterial/oleic-acid.html","oleic acid"]]},{"id":"CHEBI:16605","l":"allyl alcohol","na":2,"nb":1,"a":[["EC%3A1.1.1.54","allyl-alcohol dehydrogenase"],["RHEA%3A12168","allyl alcohol + NADP(+) = acrolein + NADPH + H(+)"]],"b":[["antibacterial/allyl-alcohol.html","allyl alcohol"]]},{"id":"CHEBI:16648","l":"","na":1,"nb":2,"a":[["MCSA%3A159","aryldialkylphosphatase"]],"b":[["antibacterial/dichlorvos.html","dichlorvos"],["antibacterial/naled.html","naled"]]},{"id":"CHEBI:16705","l":"6-aminopenicillanic acid","na":2,"nb":1,"a":[["MCSA%3A241","penicillin amidase (peptidase C59 family)"],["proteintraitsmech%3ABIOLIP_X1E","X1E-binding site"]],"b":[["unspecified/6-aminopenicillanic-acid.html","6-aminopenicillanic acid"]]},{"id":"CHEBI:16774","l":"(2-cis,6-trans)-farnesol","na":2,"nb":1,"a":[["EC%3A5.2.1.9","farnesol 2-isomerase"],["RHEA%3A13401","(2E,6E)-farnesol = (2Z,6E)-farnesol"]],"b":[["unspecified/2-cis-6-trans-farnesol.html","(2-cis,6-trans)-farnesol"]]},{"id":"CHEBI:167830","l":"isorhapontigenin","na":2,"nb":1,"a":[["EC%3A2.1.1.399","resveratrol 4'-O-methyltransferase"],["RHEA%3A82215","isorhapontigenin + S-adenosyl-L-methionine = 4'-O-methylisorhapontigenin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antiviral/isorhapontigenin.html","isorhapontigenin"]]},{"id":"CHEBI:17098","l":"veratraldehyde","na":2,"nb":1,"a":[["EC%3A1.11.1.14","lignin peroxidase"],["RHEA%3A48004","1-(3,4-dimethoxyphenyl)-2-(2-methoxyphenoxy)propane-1,3-diol + H2O2 = 3,4-dimethoxybenzaldehyde + guaiacol + glycolaldehyde + H2O"]],"b":[["antifungal/veratraldehyde.html","veratraldehyde"]]},{"id":"CHEBI:174376","l":"rhapontigenin","na":2,"nb":1,"a":[["EC%3A2.1.1.399","resveratrol 4'-O-methyltransferase"],["RHEA%3A82191","piceatannol + S-adenosyl-L-methionine = rhapontigenin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/rhapontigenin.html","rhapontigenin"]]},{"id":"CHEBI:17630","l":"kanamycin A","na":2,"nb":1,"a":[["MCSA%3A647","kanamycin nucleotidyltransferase"],["proteintraitsmech%3ABIOLIP_KAN","KAN-binding site"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"CHEBI:17695","l":"casbene","na":2,"nb":1,"a":[["EC%3A4.2.3.8","casbene synthase"],["RHEA%3A14901","(2E,6E,10E)-geranylgeranyl diphosphate = casbene + diphosphate"]],"b":[["antifungal/casbene.html","casbene"]]},{"id":"CHEBI:17909","l":"polysulfur","na":2,"nb":1,"a":[["EC%3A1.8.5.4","bacterial sulfide:quinone reductase"],["RHEA%3A30239","n a quinone + n hydrogen sulfide + n H(+) = polysulfur(n-2) + n a quinol"]],"b":[["antifungal/polysulfur.html","polysulfur"]]},{"id":"CHEBI:17939","l":"puromycin","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_PUY","PUY-binding site"]],"b":[["antibacterial/puromycin.html","puromycin"]]},{"id":"CHEBI:19129","l":"","na":1,"nb":2,"a":[["RHEA%3A86087","a steroid + reduced [NADPH--hemoprotein reductase] + O2 = a 11alpha-hydroxy steroid + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"],["antifungal/fr171456.html","FR171456"]]},{"id":"CHEBI:201384","l":"sartorypyrone D","na":2,"nb":1,"a":[["RHEA%3A80875","(S)-(2E,6E,10E)-epoxygeranylgeranyl-triacetate lactone = sartorypyrone D"],["RHEA%3A80883","sartorypyrone D + acetyl-CoA = sartorypyrone A + CoA"]],"b":[["antibacterial/sartorypyrone-d.html","sartorypyrone D"]]},{"id":"CHEBI:2469","l":"adefovir","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antiviral/adefovir.html","adefovir"]]},{"id":"CHEBI:26004","l":"","na":1,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antibacterial/eugenol.html","eugenol"],["antifungal/coniferyl-aldehyde.html","coniferyl aldehyde"]]},{"id":"CHEBI:26401","l":"purines","na":1,"nb":2,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antiviral/mercaptopurine.html","mercaptopurine"],["antiviral/valganciclovir.html","valganciclovir"]]},{"id":"CHEBI:26666","l":"","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.73","The Short Chain Fatty Acid Uptake (AtoE) Family"]],"b":[["antifungal/propionic-acid.html","propionic acid"]]},{"id":"CHEBI:26789","l":"","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_OI9","OI9-binding site"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"],["unspecified/streptothricin-d.html","streptothricin D"]]},{"id":"CHEBI:27446","l":"phenoxymethylpenicillin","na":2,"nb":1,"a":[["MCSA%3A241","penicillin amidase (peptidase C59 family)"],["proteintraitsmech%3ABIOLIP_PNV","PNV-binding site"]],"b":[["antibacterial/phenoxymethylpenicillin.html","phenoxymethylpenicillin"]]},{"id":"CHEBI:27641","l":"cycloheximide","na":2,"nb":1,"a":[["RHEA%3A61936","cycloheximide(in) + ATP + H2O = cycloheximide(out) + ADP + phosphate + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/cycloheximide.html","cycloheximide"]]},{"id":"CHEBI:27902","l":"tetracycline","na":2,"nb":1,"a":[["ARO%3A3000186","tet(M)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"CHEBI:28","l":"(R)-linalool","na":2,"nb":1,"a":[["EC%3A4.2.3.26","R-linalool synthase"],["RHEA%3A15809","(2E)-geranyl diphosphate + H2O = (R)-linalool + diphosphate"]],"b":[["unspecified/r-linalool.html","(R)-linalool"]]},{"id":"CHEBI:28283","l":"capsidiol","na":2,"nb":1,"a":[["EC%3A1.14.14.149","5-epiaristolochene 1,3-dihydroxylase"],["RHEA%3A28226","(+)-5-epi-aristolochene + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = capsidiol + 2 oxidized [NADPH--hemoprotein reductase] + 2 H2O + 2 H(+)"]],"b":[["antifungal/capsidiol.html","capsidiol"]]},{"id":"CHEBI:29007","l":"ceftriaxone","na":2,"nb":1,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"]],"b":[["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"CHEBI:2955","l":"azithromycin","na":2,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["proteintraitsmech%3ABIOLIP_ZIT","ZIT-binding site"]],"b":[["antibacterial/azithromycin.html","azithromycin"]]},{"id":"CHEBI:29673","l":"rifamycin SV","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]],"b":[["antimycobacterial/rifamycin-sv.html","rifamycin SV"]]},{"id":"CHEBI:29702","l":"undecylprodigiosin","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.B.102","The YedE/YeeE (YedE/YeeE) Family"]],"b":[["antibacterial/undecylprodigiosin.html","undecylprodigiosin"]]},{"id":"CHEBI:30746","l":"benzoic acid","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_BEZ","BEZ-binding site"]],"b":[["biocide/benzoic-acid.html","benzoic acid"],["biocide/carboxy-ptio.html","carboxy-PTIO"]]},{"id":"CHEBI:30751","l":"formic acid","na":2,"nb":1,"a":[["MCSA%3A38","GTP cyclohydrolase I"],["proteintraitsmech%3ABIOLIP_FMT","FMT-binding site"]],"b":[["antibacterial/formic-acid.html","formic acid"]]},{"id":"CHEBI:31000","l":"docosan-1-ol","na":2,"nb":1,"a":[["RHEA%3A81783","docosan-1-ol + (9Z)-octadecenoyl-CoA = 1-O-docosyl (9Z)-octadecenoate + CoA"],["RHEA%3A81731","docosanoyl-CoA + 2 NADPH + 2 H(+) = docosan-1-ol + 2 NADP(+) + CoA"]],"b":[["antiviral/docosan-1-ol.html","docosan-1-ol"]]},{"id":"CHEBI:31466","l":"dequalinium chloride","na":2,"nb":1,"a":[["TCDB%3A2.A.117","The Chlorhexadine Exporter (CHX) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antifungal/dequalinium-chloride.html","dequalinium chloride"]]},{"id":"CHEBI:32023","l":"plaunotol","na":2,"nb":1,"a":[["EC%3A1.14.14.146","geranylgeraniol 18-hydroxylase"],["RHEA%3A26233","(2E,6E,10E)-geranylgeraniol + reduced [NADPH--hemoprotein reductase] + O2 = plaunotol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["antibacterial/plaunotol.html","plaunotol"]]},{"id":"CHEBI:32199","l":"tetracenomycin B2","na":2,"nb":1,"a":[["EC%3A1.14.13.200","tetracenomycin A2 monooxygenase-diooxygenase"],["RHEA%3A76467","tetracenomycin B2 + 2 NADPH + 2 O2 + 2 H(+) = 8-demethyltetracenomycin C + 2 NADP(+) + H2O"]],"b":[["unspecified/tetracenomycin-b2.html","tetracenomycin B2"]]},{"id":"CHEBI:32215","l":"thiamphenicol","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_TH8","TH8-binding site"]],"b":[["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"CHEBI:3393","l":"carbenicillin","na":2,"nb":1,"a":[["TCDB%3A1.B.25","The Outer Membrane Porin (Opr) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/carbenicillin.html","carbenicillin"]]},{"id":"CHEBI:3440","l":"carvacrol","na":2,"nb":1,"a":[["RHEA%3A67412","alpha-terpinene + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = carvacrol + 2 oxidized [NADPH--hemoprotein reductase] + 3 H2O + 2 H(+)"],["RHEA%3A67404","gamma-terpinene + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = carvacrol + 2 oxidized [NADPH--hemoprotein reductase] + 3 H2O + 2 H(+)"]],"b":[["antifungal/carvacrol.html","carvacrol"]]},{"id":"CHEBI:35267","l":"","na":2,"nb":1,"a":[["EC%3A7.6.2.9","ABC-type quaternary amine transporter"],["RHEA%3A11036","a quaternary ammonium(out) + ATP + H2O = a quaternary ammonium(in) + ADP + phosphate + H(+)"]],"b":[["antifungal/rezafungin.html","rezafungin"]]},{"id":"CHEBI:35274","l":"","na":2,"nb":1,"a":[["TCDB%3A1.A.11","The Ammonium Transporter Channel (Amt) Family"],["TCDB%3A1.B.6","The OmpA-OmpF Porin (OOP) Family"]],"b":[["antifungal/validamycin-a-1.html","validamycin A(1+)"]]},{"id":"CHEBI:35986","l":"nonan-1-ol","na":2,"nb":1,"a":[["RHEA%3A44112","nonan-1-ol + hexadecanoyl-CoA = nonyl hexadecanoate + CoA"],["RHEA%3A58380","nonan-1-ol + NADP(+) = nonanal + NADPH + H(+)"]],"b":[["antifungal/nonan-1-ol.html","nonan-1-ol"]]},{"id":"CHEBI:3614","l":"chlorhexidine","na":2,"nb":1,"a":[["TCDB%3A2.A.117","The Chlorhexadine Exporter (CHX) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/chlorhexidine.html","chlorhexidine"]]},{"id":"CHEBI:368","l":"(S)-(−)-citronellal","na":2,"nb":1,"a":[["RHEA%3A60740","(S)-(-)-citronellal + NADP(+) + H2O = (S)-(-)-citronellate + NADPH + 2 H(+)"],["RHEA%3A60676","(S)-(-)-citronellol + NAD(+) = (S)-(-)-citronellal + NADH + H(+)"]],"b":[["antifungal/s-citronellal.html","(S)-(−)-citronellal"]]},{"id":"CHEBI:3732","l":"clarithromycin","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"CHEBI:37424","l":"","na":2,"nb":1,"a":[["EC%3A2.4.1.173","sterol 3beta-glucosyltransferase"],["RHEA%3A22724","a sterol + UDP-alpha-D-glucose = a sterol 3-beta-D-glucoside + UDP + H(+)"]],"b":[["antifungal/solasodine-3-%CE%B2-d-glucoside.html","solasodine 3-β-D-glucoside"]]},{"id":"CHEBI:3764","l":"clotrimazole","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antifungal/clotrimazole.html","clotrimazole"]]},{"id":"CHEBI:42452","l":"formycin A","na":2,"nb":1,"a":[["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"],["proteintraitsmech%3ABIOLIP_FMC","FMC-binding site"]],"b":[["unspecified/formycin-a.html","formycin A"]]},{"id":"CHEBI:42530","l":"peracetic acid","na":2,"nb":1,"a":[["RHEA%3A68392","peracetic acid + H2O = acetate + H2O2 + H(+)"],["proteintraitsmech%3ABIOLIP_F50","F50-binding site"]],"b":[["biocide/peracetic-acid.html","peracetic acid"]]},{"id":"CHEBI:44107","l":"malachite green cation","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_MGR","MGR-binding site"]],"b":[["antibacterial/malachite-green-cation.html","malachite green cation"]]},{"id":"CHEBI:443725","l":"fosmidomycin","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_FOM","FOM-binding site"]],"b":[["antibacterial/fosmidomycin.html","fosmidomycin"]]},{"id":"CHEBI:45081","l":"pentamidine","na":2,"nb":1,"a":[["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"],["TCDB%3A1.A.8","The Major Intrinsic Protein (MIP) Family"]],"b":[["antifungal/pentamidine.html","pentamidine"]]},{"id":"CHEBI:45285","l":"pyrazinecarboxamide","na":1,"nb":2,"a":[["RHEA%3A35063","pyrazinamide + H2O = pyrazine-2-carboxylate + NH4(+)"]],"b":[["antimycobacterial/n-butyl-5-4-hydroxyphenyl-6-oxo-1-6-dihydropyrazine-2-carboxamide.html","N-butyl-5-(4-hydroxyphenyl)-6-oxo-1,6-dihydropyrazine-2-carboxamide"],["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"CHEBI:45373","l":"sulfanilamide","na":2,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["proteintraitsmech%3ABIOLIP_SAN","SAN-binding site"]],"b":[["antibacterial/sulfanilamide.html","sulfanilamide"]]},{"id":"CHEBI:46202","l":"undecanal","na":2,"nb":1,"a":[["RHEA%3A68484","(2R)-2-hydroperoxydodecanoate + H(+) = undecanal + CO2 + H2O"],["RHEA%3A58408","undecan-1-ol + NADP(+) = undecanal + NADPH + H(+)"]],"b":[["antimycobacterial/undecanal.html","undecanal"]]},{"id":"CHEBI:48080","l":"brefeldin A","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["MCSA%3A453","Brefeldin A esterase"]],"b":[["antibacterial/brefeldin-a.html","brefeldin A"]]},{"id":"CHEBI:4877","l":"ethambutol","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_95E","95E-binding site"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"CHEBI:48981","l":"quinolin-8-ol","na":2,"nb":1,"a":[["RHEA%3A25924","quinolin-8-ol + A + H2O = 8-hydroxyquinolin-2(1H)-one + AH2"],["RHEA%3A72659","quinolin-8-ol + NADPH + O2 = 8-hydroxyquinoline N-oxide + NADP(+) + H2O"]],"b":[["antibacterial/quinolin-8-ol.html","quinolin-8-ol"]]},{"id":"CHEBI:50209","l":"sophoraflavanone G","na":2,"nb":1,"a":[["EC%3A2.5.1.71","leachianone-G 2'-dimethylallyltransferase"],["RHEA%3A10852","leachianone G + dimethylallyl diphosphate = sophoraflavanone G + diphosphate"]],"b":[["antiprotozoal/sophoraflavanone-g.html","sophoraflavanone G"]]},{"id":"CHEBI:50471","l":"","na":2,"nb":1,"a":[["EC%3A2.3.1.5","arylamine N-acetyltransferase"],["RHEA%3A16613","an arylamine + acetyl-CoA = an N-acetylarylamine + CoA"]],"b":[["antifungal/ferrostatin-1.html","ferrostatin-1"]]},{"id":"CHEBI:52086","l":"glyceollin III","na":2,"nb":1,"a":[["EC%3A1.14.14.135","glyceollin synthase"],["RHEA%3A26051","(6aS,11aS)-2-dimethylallyl-3,6a,9-trihydroxypterocarpan + reduced [NADPH--hemoprotein reductase] + O2 = glyceollin III + oxidized [NADPH--hemoprotein reductase] + 2 H2O + H(+)"]],"b":[["antifungal/glyceollin-iii.html","glyceollin III"]]},{"id":"CHEBI:52221","l":"","na":1,"nb":2,"a":[["RHEA%3A69264","a (Z)-N-(sulfonatooxy)alkanimidothioate = an isothiocyanate + sulfate"]],"b":[["antibacterial/benzyl-isothiocyanate.html","benzyl isothiocyanate"],["unspecified/allyl-isothiocyanate.html","allyl isothiocyanate"]]},{"id":"CHEBI:55517","l":"","na":1,"nb":2,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/trichothecin.html","trichothecin"],["unspecified/verrucarin-a.html","verrucarin A"]]},{"id":"CHEBI:57289","l":"blasticidin S(1+)","na":2,"nb":1,"a":[["EC%3A3.5.4.23","blasticidin-S deaminase"],["RHEA%3A10148","blasticidin S + H2O + H(+) = deaminohydroxyblasticidin S + NH4(+)"]],"b":[["antifungal/blasticidin-s-1.html","blasticidin S(1+)"]]},{"id":"CHEBI:61699","l":"(−)-α-gurjunene","na":2,"nb":1,"a":[["EC%3A4.2.3.72","alpha-gurjunene synthase"],["RHEA%3A29507","(2E,6E)-farnesyl diphosphate = (-)-alpha-gurjunene + diphosphate"]],"b":[["antibacterial/%CE%B1-gurjunene.html","(−)-α-gurjunene"]]},{"id":"CHEBI:62247","l":"(1R,2S)-epoxypropylphosphonate(1−)","na":2,"nb":1,"a":[["EC%3A1.11.1.23","(S)-2-hydroxypropylphosphonic acid epoxidase"],["RHEA%3A10808","(S)-2-hydroxypropylphosphonate + H2O2 = (1R,2S)-epoxypropylphosphonate + 2 H2O"]],"b":[["unspecified/1r-2s-epoxypropylphosphonate-1.html","(1R,2S)-epoxypropylphosphonate(1−)"]]},{"id":"CHEBI:64090","l":"tert-butyl hydroperoxide","na":2,"nb":1,"a":[["RHEA%3A69412","tert-butyl hydroperoxide + 2 glutathione = tert-butanol + glutathione disulfide + H2O"],["RHEA%3A63840","tert-butyl hydroperoxide + [thioredoxin]-dithiol = tert-butanol + [thioredoxin]-disulfide + H2O"]],"b":[["antibacterial/tert-butyl-hydroperoxide.html","tert-butyl hydroperoxide"]]},{"id":"CHEBI:67153","l":"(+)-larreatricin","na":2,"nb":1,"a":[["EC%3A1.14.99.47","(+)-larreatricin hydroxylase"],["RHEA%3A34259","(+)-larreatricin + AH2 + O2 = (+)-3'-hydroxylarreatricin + A + H2O"]],"b":[["antiviral/larreatricin.html","(+)-larreatricin"]]},{"id":"CHEBI:7518","l":"cis-trans-nepetalactone","na":2,"nb":1,"a":[["EC%3A1.1.1.419","nepetalactol dehydrogenase"],["RHEA%3A61428","cis-trans-nepetalactol + NAD(+) = cis-trans-nepetalactone + NADH + H(+)"]],"b":[["antibacterial/cis-trans-nepetalactone.html","cis-trans-nepetalactone"]]},{"id":"CHEBI:75561","l":"1-linoleoyl-sn-glycerol","na":2,"nb":1,"a":[["RHEA%3A41115","1-(9Z,12Z)-octadecadienoyl-sn-glycero-3-phosphocholine + H2O = 1-(9Z,12Z-octadecadienoyl)-sn-glycerol + phosphocholine + H(+)"],["RHEA%3A40603","1-(9Z,12Z-octadecadienoyl)-sn-glycerol + H2O = (9Z,12Z)-octadecadienoate + glycerol + H(+)"]],"b":[["antiviral/1-linoleoyl-sn-glycerol.html","1-linoleoyl-sn-glycerol"]]},{"id":"CHEBI:75616","l":"","na":2,"nb":1,"a":[["EC%3A2.3.1.60","gentamicin 3-N-acetyltransferase"],["RHEA%3A14441","gentamicin C + acetyl-CoA = N(3)-acetylgentamycin C + CoA + H(+)"]],"b":[["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"CHEBI:77152","l":"ginsenoside Rb2","na":2,"nb":1,"a":[["EC%3A3.2.1.191","ginsenosidase type III"],["RHEA%3A40739","(20S)-ginsenoside Rb2 + 2 H2O = (20S)-ginsenoside C-Y + 2 D-glucose"]],"b":[["antiviral/ginsenoside-rb2.html","ginsenoside Rb2"]]},{"id":"CHEBI:7731","l":"","na":2,"nb":1,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"CHEBI:77772","l":"ilicicolin H","na":2,"nb":1,"a":[["RHEA%3A64568","3-[(2E,4E,8S,10E,12Z)-4,8-dimethyltetradeca-2,4,10,12-tetraenoyl]-4-hydroxy-5-(4-hydroxyphenyl)-1,2-dihydropyridin-2-one = ilicicolin H"],["RHEA%3A64564","8-epi-ilicicolin H = ilicicolin H"]],"b":[["unspecified/ilicicolin-h.html","ilicicolin H"]]},{"id":"CHEBI:77885","l":"nocardicin E(2−)","na":2,"nb":1,"a":[["EC%3A2.5.1.38","isonocardicin synthase"],["RHEA%3A19845","nocardicin E + S-adenosyl-L-methionine = isonocardicin A + S-methyl-5'-thioadenosine + H(+)"]],"b":[["unspecified/nocardicin-e-2.html","nocardicin E(2−)"]]},{"id":"CHEBI:77985","l":"aclacinomycin Y zwitterion","na":2,"nb":1,"a":[["EC%3A1.3.3.14","aclacinomycin-A oxidase"],["RHEA%3A37791","aclacinomycin A + O2 = aclacinomycin Y + H2O2"]],"b":[["unspecified/aclacinomycin-y-zwitterion.html","aclacinomycin Y zwitterion"]]},{"id":"CHEBI:7809","l":"oxacillin","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/oxacillin.html","oxacillin"]]},{"id":"CHEBI:78327","l":"pseudobaptigenin(1−)","na":2,"nb":1,"a":[["EC%3A1.14.19.63","pseudobaptigenin synthase"],["RHEA%3A28238","calycosin + reduced [NADPH--hemoprotein reductase] + O2 = pseudobaptigenin + oxidized [NADPH--hemoprotein reductase] + 2 H2O + H(+)"]],"b":[["antiprotozoal/pseudobaptigenin-1.html","pseudobaptigenin(1−)"]]},{"id":"CHEBI:78884","l":"4-terpineol","na":2,"nb":1,"a":[["RHEA%3A60028","(2E)-geranyl diphosphate + H2O = 4-terpineol + diphosphate"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/4-terpineol.html","4-terpineol"]]},{"id":"CHEBI:80024","l":"aureothin","na":2,"nb":1,"a":[["EC%3A1.14.15.37","luteothin monooxygenase"],["RHEA%3A58824","luteothin + 4 reduced [2Fe-2S]-[ferredoxin] + 2 O2 + 4 H(+) = aureothin + 4 oxidized [2Fe-2S]-[ferredoxin] + 3 H2O"]],"b":[["antibacterial/aureothin.html","aureothin"]]},{"id":"CHEBI:81485","l":"osthenol","na":2,"nb":1,"a":[["EC%3A2.5.1.139","umbelliferone 6-dimethylallyltransferase"],["RHEA%3A51872","umbelliferone + dimethylallyl diphosphate = osthenol + diphosphate"]],"b":[["antifungal/osthenol.html","osthenol"]]},{"id":"CHEBI:82751","l":"cholesteryl arachidonate","na":2,"nb":1,"a":[["RHEA%3A53448","1-hexadecanoyl-2-(5Z,8Z,11Z,14Z-eicosatetraenoyl)-sn-glycero-3-phosphocholine + cholesterol = cholesteryl (5Z,8Z,11Z,14Z)-eicosatetraenoate + 1-hexadecanoyl-sn-glycero-3-phosphocholine"],["RHEA%3A42816","(5Z,8Z,11Z,14Z)-eicosatetraenoyl-CoA + cholesterol = cholesteryl (5Z,8Z,11Z,14Z)-eicosatetraenoate + CoA"]],"b":[["antibacterial/cholesteryl-arachidonate.html","cholesteryl arachidonate"]]},{"id":"CHEBI:8309","l":"polymyxin B1","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antibacterial/polymyxin-b1.html","polymyxin B1"]]},{"id":"CHEBI:8452","l":"3,6-diaminoacridine","na":2,"nb":1,"a":[["TCDB%3A2.A.117","The Chlorhexadine Exporter (CHX) Family"],["proteintraitsmech%3ABIOLIP_PRL","PRL-binding site"]],"b":[["antibacterial/3-6-diaminoacridine.html","3,6-diaminoacridine"]]},{"id":"CHEBI:86012","l":"oxetanocin A","na":2,"nb":1,"a":[["EC%3A3.1.3.112","4'-phosphooxetanocin A phosphatase"],["RHEA%3A81367","4'-phosphooxetanocin A + H2O = oxetanocin A + phosphate"]],"b":[["antibacterial/oxetanocin-a.html","oxetanocin A"]]},{"id":"CHEBI:87123","l":"tulipalin B","na":2,"nb":1,"a":[["EC%3A4.2.99.23","tuliposide B-converting enzyme"],["RHEA%3A38655","6-tuliposide B = tulipalin B + D-glucose"]],"b":[["antibacterial/tulipalin-b.html","tulipalin B"]]},{"id":"CHEBI:87124","l":"6-tuliposide B","na":2,"nb":1,"a":[["EC%3A4.2.99.23","tuliposide B-converting enzyme"],["RHEA%3A38655","6-tuliposide B = tulipalin B + D-glucose"]],"b":[["antibacterial/6-tuliposide-b.html","6-tuliposide B"]]},{"id":"CHEBI:90868","l":"validamycin B","na":2,"nb":1,"a":[["EC%3A1.14.11.52","validamycin A dioxygenase"],["RHEA%3A48752","validamycin A + 2-oxoglutarate + O2 = validamycin B + succinate + CO2 + H(+)"]],"b":[["antifungal/validamycin-b.html","validamycin B"]]},{"id":"CHEBI:9332","l":"sulfamethoxazole","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"CHEBI:9997","l":"pristinamycin IIA","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_VIR","VIR-binding site"]],"b":[["antibacterial/pristinamycin-iia.html","pristinamycin IIA"]]},{"id":"NCBITaxon:1159556","l":"Ustilaginoidea virens","na":2,"nb":1,"a":[["Pfam%3APF06966","Protein of unknown function (DUF1295)"],["TED%3AAF-A0A1B5L5W2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1B5L5W2-F1-model_v4_TED03"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"]]},{"id":"NCBITaxon:1654360","l":"Photobacterium galatheae","na":2,"nb":1,"a":[["TED%3AAF-A0A066RSN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A066RSN6-F1-model_v4_TED01"],["TED%3AAF-A0A066RLQ8-F1-model_v4_TED01","TED novel fold AF-A0A066RLQ8-F1-model_v4_TED01"]],"b":[["antibacterial/holomycin.html","holomycin"]]},{"id":"NCBITaxon:1907","l":"Streptomyces glaucescens","na":2,"nb":1,"a":[["Pfam%3APF04673","Polyketide synthesis cyclase"],["Pfam%3APF04655","Aminoglycoside/hydroxyurea antibiotic resistance kinase"]],"b":[["antibacterial/tetracenomycin-c.html","tetracenomycin C"]]},{"id":"NCBITaxon:5074","l":"Penicillium brevicompactum","na":2,"nb":1,"a":[["Pfam%3APF09227","Bubble protein"],["Pfam%3APF18558","Methyltransferase, Helix-turn-helix domain"]],"b":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]]},{"id":"NCBITaxon:52","l":"Chondromyces crocatus","na":2,"nb":1,"a":[["TED%3AAF-A0A0K1ER44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0K1ER44-F1-model_v4_TED01"],["TED%3AAF-A0A0K1E854-F1-model_v4_TED01","TED novel fold AF-A0A0K1E854-F1-model_v4_TED01"]],"b":[["unspecified/chondrochloren-a.html","chondrochloren A"]]},{"id":"NCBITaxon:536","l":"Chromobacterium violaceum","na":2,"nb":1,"a":[["TED%3AAF-A0A381EUD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A381EUD6-F1-model_v4_TED01"],["TED%3AAF-A0A447THJ9-F1-model_v4_TED01","TED novel fold AF-A0A447THJ9-F1-model_v4_TED01"]],"b":[["unspecified/romidepsin.html","romidepsin"]]},{"id":"NCBITaxon:5478","l":"Nakaseomyces glabratus","na":2,"nb":1,"a":[["TED%3AAF-A0A0W0D8W7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0W0D8W7-F1-model_v4_TED02"],["TED%3AAF-A0A0W0D4K9-F1-model_v4_TED02","TED novel fold AF-A0A0W0D4K9-F1-model_v4_TED02"]],"b":[["antifungal/fluconazole.html","fluconazole"]]},{"id":"NCBITaxon:5661","l":"Leishmania donovani","na":2,"nb":1,"a":[["Pfam%3APF03037","Kinetoplastid membrane protein 11"],["Pfam%3APF03130","PBS lyase HEAT-like repeat"]],"b":[["antiprotozoal/dihydrobetulinic-acid.html","dihydrobetulinic acid"]]},{"id":"NCBITaxon:58346","l":"Streptomyces platensis","na":1,"nb":2,"a":[["PROSITE%3APS00999","Streptomyces subtilisin-type inhibitors signature"]],"b":[["antibacterial/platencin.html","platencin"],["antibacterial/platensimycin.html","platensimycin"]]},{"id":"UniProt:P02557","l":"","na":2,"nb":1,"a":[["ComplexPortal%3ACPX-1424","Tubulin alpha-beta heterodimeric complex, TUB1 variant"],["ComplexPortal%3ACPX-1425","Tubulin alpha-beta heterodimeric complex, TUB3 variant"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"UniProt:P0C6U8","l":"","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_TTT","TTT-binding site"]],"b":[["antibacterial/hexachlorophene.html","hexachlorophene"],["antifungal/bithionol.html","bithionol"]]},{"id":"ARO:0000042","l":"","na":1,"nb":1,"a":[["ARO%3A3000026","mepA"]],"b":[["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:0000062","l":"ceftriaxone","na":1,"nb":1,"a":[["ARO%3A3004835","Neisseria gonorrhoeae pilQ gene conferring resistance to beta-lactam"]],"b":[["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3000149","l":"FosA","na":1,"nb":1,"a":[["ARO%3A3000149","FosA"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3000166","l":"tet(B)","na":1,"nb":1,"a":[["ARO%3A3000166","tet(B)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000167","l":"tet(C)","na":1,"nb":1,"a":[["ARO%3A3000167","tet(C)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000168","l":"tet(D)","na":1,"nb":1,"a":[["ARO%3A3000168","tet(D)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000169","l":"rifampin","na":1,"nb":1,"a":[["ARO%3A3004960","Mycobacterium tuberculosis ponA1 mutations conferring resistance to rifabutin"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3000172","l":"FosB","na":1,"nb":1,"a":[["ARO%3A3000172","FosB"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3000173","l":"tet(E)","na":1,"nb":1,"a":[["ARO%3A3000173","tet(E)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000174","l":"tet(G)","na":1,"nb":1,"a":[["ARO%3A3000174","tet(G)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000175","l":"tet(H)","na":1,"nb":1,"a":[["ARO%3A3000175","tet(H)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000177","l":"tet(J)","na":1,"nb":1,"a":[["ARO%3A3000177","tet(J)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000178","l":"tet(K)","na":1,"nb":1,"a":[["ARO%3A3000178","tet(K)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000179","l":"tet(L)","na":1,"nb":1,"a":[["ARO%3A3000179","tet(L)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000180","l":"tetA(P)","na":1,"nb":1,"a":[["ARO%3A3000180","tetA(P)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000181","l":"tet(V)","na":1,"nb":1,"a":[["ARO%3A3000181","tet(V)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000182","l":"tet(Y)","na":1,"nb":1,"a":[["ARO%3A3000182","tet(Y)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000183","l":"tet(Z)","na":1,"nb":1,"a":[["ARO%3A3000183","tet(Z)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000198","l":"FosX","na":1,"nb":1,"a":[["ARO%3A3000198","FosX"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3000216","l":"acrB","na":1,"nb":1,"a":[["ARO%3A3000216","acrB"]],"b":[["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3000238","l":"glycopeptide resistance gene cluster VanB","na":1,"nb":1,"a":[["ARO%3A3000238","glycopeptide resistance gene cluster VanB"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000246","l":"glycopeptide resistance gene cluster VanC","na":1,"nb":1,"a":[["ARO%3A3000246","glycopeptide resistance gene cluster VanC"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000255","l":"glycopeptide resistance gene cluster VanF","na":1,"nb":1,"a":[["ARO%3A3000255","glycopeptide resistance gene cluster VanF"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000257","l":"glycopeptide resistance gene cluster VanG","na":1,"nb":1,"a":[["ARO%3A3000257","glycopeptide resistance gene cluster VanG"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000259","l":"glycopeptide resistance gene cluster VanE","na":1,"nb":1,"a":[["ARO%3A3000259","glycopeptide resistance gene cluster VanE"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000260","l":"glycopeptide resistance gene cluster VanL","na":1,"nb":1,"a":[["ARO%3A3000260","glycopeptide resistance gene cluster VanL"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000309","l":"emrD","na":1,"nb":1,"a":[["ARO%3A3000309","emrD"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3000343","l":"tap","na":1,"nb":1,"a":[["ARO%3A3000343","tap"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000380","l":"FosC","na":1,"nb":1,"a":[["ARO%3A3000380","FosC"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3000423","l":"FomA","na":1,"nb":1,"a":[["ARO%3A3000423","FomA"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3000449","l":"FomB","na":1,"nb":1,"a":[["ARO%3A3000449","FomB"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3000464","l":"Neisseria gonorrhoeae porin PIB (por)","na":1,"nb":1,"a":[["ARO%3A3000464","Neisseria gonorrhoeae porin PIB (por)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000476","l":"tet(31)","na":1,"nb":1,"a":[["ARO%3A3000476","tet(31)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000478","l":"tet(33)","na":1,"nb":1,"a":[["ARO%3A3000478","tet(33)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000481","l":"tet(35)","na":1,"nb":1,"a":[["ARO%3A3000481","tet(35)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000510","l":"Staphylococcus aureus mupB conferring resistance to mupirocin","na":1,"nb":1,"a":[["ARO%3A3000510","Staphylococcus aureus mupB conferring resistance to mupirocin"]],"b":[["antibacterial/mupirocin.html","mupirocin"]]},{"id":"ARO:3000521","l":"Staphylococcus aureus mupA conferring resistance to mupirocin","na":1,"nb":1,"a":[["ARO%3A3000521","Staphylococcus aureus mupA conferring resistance to mupirocin"]],"b":[["antibacterial/mupirocin.html","mupirocin"]]},{"id":"ARO:3000561","l":"tet(30)","na":1,"nb":1,"a":[["ARO%3A3000561","tet(30)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000565","l":"tet(38)","na":1,"nb":1,"a":[["ARO%3A3000565","tet(38)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000566","l":"tet(39)","na":1,"nb":1,"a":[["ARO%3A3000566","tet(39)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000567","l":"tet(40)","na":1,"nb":1,"a":[["ARO%3A3000567","tet(40)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000569","l":"tet(41)","na":1,"nb":1,"a":[["ARO%3A3000569","tet(41)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000572","l":"tet(42)","na":1,"nb":1,"a":[["ARO%3A3000572","tet(42)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000573","l":"tet(43)","na":1,"nb":1,"a":[["ARO%3A3000573","tet(43)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000614","l":"mef(E)","na":1,"nb":1,"a":[["ARO%3A3000614","mef(E)"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000866","l":"oleI","na":1,"nb":1,"a":[["ARO%3A3000866","oleI"]],"b":[["antibacterial/oleandomycin.html","oleandomycin"]]},{"id":"ARO:3000874","l":"TEM-2","na":1,"nb":1,"a":[["ARO%3A3000874","TEM-2"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000875","l":"TEM-3","na":1,"nb":1,"a":[["ARO%3A3000875","TEM-3"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000876","l":"TEM-4","na":1,"nb":1,"a":[["ARO%3A3000876","TEM-4"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000877","l":"TEM-5","na":1,"nb":1,"a":[["ARO%3A3000877","TEM-5"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000878","l":"TEM-6","na":1,"nb":1,"a":[["ARO%3A3000878","TEM-6"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000879","l":"TEM-7","na":1,"nb":1,"a":[["ARO%3A3000879","TEM-7"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000880","l":"TEM-8","na":1,"nb":1,"a":[["ARO%3A3000880","TEM-8"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000881","l":"TEM-9","na":1,"nb":1,"a":[["ARO%3A3000881","TEM-9"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000882","l":"TEM-10","na":1,"nb":1,"a":[["ARO%3A3000882","TEM-10"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000883","l":"TEM-11","na":1,"nb":1,"a":[["ARO%3A3000883","TEM-11"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000884","l":"TEM-12","na":1,"nb":1,"a":[["ARO%3A3000884","TEM-12"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000886","l":"TEM-15","na":1,"nb":1,"a":[["ARO%3A3000886","TEM-15"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000887","l":"TEM-16","na":1,"nb":1,"a":[["ARO%3A3000887","TEM-16"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000888","l":"TEM-17","na":1,"nb":1,"a":[["ARO%3A3000888","TEM-17"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000890","l":"TEM-19","na":1,"nb":1,"a":[["ARO%3A3000890","TEM-19"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000891","l":"TEM-20","na":1,"nb":1,"a":[["ARO%3A3000891","TEM-20"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000892","l":"TEM-21","na":1,"nb":1,"a":[["ARO%3A3000892","TEM-21"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000893","l":"TEM-22","na":1,"nb":1,"a":[["ARO%3A3000893","TEM-22"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000894","l":"TEM-24","na":1,"nb":1,"a":[["ARO%3A3000894","TEM-24"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000896","l":"TEM-26","na":1,"nb":1,"a":[["ARO%3A3000896","TEM-26"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000898","l":"TEM-28","na":1,"nb":1,"a":[["ARO%3A3000898","TEM-28"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000899","l":"TEM-29","na":1,"nb":1,"a":[["ARO%3A3000899","TEM-29"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000901","l":"TEM-31","na":1,"nb":1,"a":[["ARO%3A3000901","TEM-31"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000902","l":"TEM-32","na":1,"nb":1,"a":[["ARO%3A3000902","TEM-32"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000903","l":"TEM-33","na":1,"nb":1,"a":[["ARO%3A3000903","TEM-33"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000904","l":"TEM-34","na":1,"nb":1,"a":[["ARO%3A3000904","TEM-34"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000905","l":"TEM-35","na":1,"nb":1,"a":[["ARO%3A3000905","TEM-35"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000906","l":"TEM-36","na":1,"nb":1,"a":[["ARO%3A3000906","TEM-36"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000907","l":"TEM-37","na":1,"nb":1,"a":[["ARO%3A3000907","TEM-37"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000909","l":"TEM-39","na":1,"nb":1,"a":[["ARO%3A3000909","TEM-39"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000910","l":"TEM-40","na":1,"nb":1,"a":[["ARO%3A3000910","TEM-40"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000911","l":"TEM-42","na":1,"nb":1,"a":[["ARO%3A3000911","TEM-42"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000912","l":"TEM-43","na":1,"nb":1,"a":[["ARO%3A3000912","TEM-43"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000914","l":"TEM-45","na":1,"nb":1,"a":[["ARO%3A3000914","TEM-45"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000916","l":"TEM-47","na":1,"nb":1,"a":[["ARO%3A3000916","TEM-47"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000917","l":"TEM-48","na":1,"nb":1,"a":[["ARO%3A3000917","TEM-48"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000918","l":"TEM-49","na":1,"nb":1,"a":[["ARO%3A3000918","TEM-49"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000921","l":"TEM-52","na":1,"nb":1,"a":[["ARO%3A3000921","TEM-52"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000922","l":"TEM-53","na":1,"nb":1,"a":[["ARO%3A3000922","TEM-53"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000923","l":"TEM-54","na":1,"nb":1,"a":[["ARO%3A3000923","TEM-54"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000924","l":"TEM-55","na":1,"nb":1,"a":[["ARO%3A3000924","TEM-55"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000926","l":"TEM-57","na":1,"nb":1,"a":[["ARO%3A3000926","TEM-57"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000927","l":"TEM-58","na":1,"nb":1,"a":[["ARO%3A3000927","TEM-58"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000928","l":"TEM-59","na":1,"nb":1,"a":[["ARO%3A3000928","TEM-59"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000929","l":"TEM-60","na":1,"nb":1,"a":[["ARO%3A3000929","TEM-60"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000931","l":"TEM-63","na":1,"nb":1,"a":[["ARO%3A3000931","TEM-63"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000934","l":"TEM-67","na":1,"nb":1,"a":[["ARO%3A3000934","TEM-67"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000935","l":"TEM-68","na":1,"nb":1,"a":[["ARO%3A3000935","TEM-68"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000936","l":"TEM-70","na":1,"nb":1,"a":[["ARO%3A3000936","TEM-70"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000937","l":"TEM-71","na":1,"nb":1,"a":[["ARO%3A3000937","TEM-71"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000938","l":"TEM-72","na":1,"nb":1,"a":[["ARO%3A3000938","TEM-72"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000939","l":"TEM-73","na":1,"nb":1,"a":[["ARO%3A3000939","TEM-73"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000941","l":"TEM-75","na":1,"nb":1,"a":[["ARO%3A3000941","TEM-75"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000942","l":"TEM-76","na":1,"nb":1,"a":[["ARO%3A3000942","TEM-76"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000944","l":"TEM-78","na":1,"nb":1,"a":[["ARO%3A3000944","TEM-78"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000946","l":"TEM-79","na":1,"nb":1,"a":[["ARO%3A3000946","TEM-79"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000947","l":"TEM-80","na":1,"nb":1,"a":[["ARO%3A3000947","TEM-80"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000948","l":"TEM-81","na":1,"nb":1,"a":[["ARO%3A3000948","TEM-81"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000949","l":"TEM-82","na":1,"nb":1,"a":[["ARO%3A3000949","TEM-82"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000950","l":"TEM-83","na":1,"nb":1,"a":[["ARO%3A3000950","TEM-83"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000951","l":"TEM-84","na":1,"nb":1,"a":[["ARO%3A3000951","TEM-84"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000952","l":"TEM-85","na":1,"nb":1,"a":[["ARO%3A3000952","TEM-85"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000953","l":"TEM-86","na":1,"nb":1,"a":[["ARO%3A3000953","TEM-86"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000954","l":"TEM-87","na":1,"nb":1,"a":[["ARO%3A3000954","TEM-87"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000955","l":"TEM-88","na":1,"nb":1,"a":[["ARO%3A3000955","TEM-88"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000956","l":"TEM-89","na":1,"nb":1,"a":[["ARO%3A3000956","TEM-89"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000957","l":"TEM-90","na":1,"nb":1,"a":[["ARO%3A3000957","TEM-90"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000958","l":"TEM-91","na":1,"nb":1,"a":[["ARO%3A3000958","TEM-91"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000959","l":"TEM-92","na":1,"nb":1,"a":[["ARO%3A3000959","TEM-92"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000960","l":"TEM-93","na":1,"nb":1,"a":[["ARO%3A3000960","TEM-93"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000961","l":"TEM-94","na":1,"nb":1,"a":[["ARO%3A3000961","TEM-94"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000962","l":"TEM-95","na":1,"nb":1,"a":[["ARO%3A3000962","TEM-95"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000963","l":"TEM-96","na":1,"nb":1,"a":[["ARO%3A3000963","TEM-96"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000964","l":"TEM-101","na":1,"nb":1,"a":[["ARO%3A3000964","TEM-101"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000965","l":"TEM-102","na":1,"nb":1,"a":[["ARO%3A3000965","TEM-102"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000967","l":"TEM-104","na":1,"nb":1,"a":[["ARO%3A3000967","TEM-104"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000968","l":"TEM-105","na":1,"nb":1,"a":[["ARO%3A3000968","TEM-105"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000969","l":"TEM-106","na":1,"nb":1,"a":[["ARO%3A3000969","TEM-106"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000970","l":"TEM-107","na":1,"nb":1,"a":[["ARO%3A3000970","TEM-107"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000971","l":"TEM-108","na":1,"nb":1,"a":[["ARO%3A3000971","TEM-108"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000972","l":"TEM-109","na":1,"nb":1,"a":[["ARO%3A3000972","TEM-109"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000973","l":"TEM-110","na":1,"nb":1,"a":[["ARO%3A3000973","TEM-110"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000974","l":"TEM-111","na":1,"nb":1,"a":[["ARO%3A3000974","TEM-111"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000975","l":"TEM-112","na":1,"nb":1,"a":[["ARO%3A3000975","TEM-112"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000976","l":"TEM-113","na":1,"nb":1,"a":[["ARO%3A3000976","TEM-113"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000977","l":"TEM-114","na":1,"nb":1,"a":[["ARO%3A3000977","TEM-114"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000978","l":"TEM-115","na":1,"nb":1,"a":[["ARO%3A3000978","TEM-115"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000979","l":"TEM-116","na":1,"nb":1,"a":[["ARO%3A3000979","TEM-116"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000980","l":"TEM-117","na":1,"nb":1,"a":[["ARO%3A3000980","TEM-117"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000981","l":"TEM-118","na":1,"nb":1,"a":[["ARO%3A3000981","TEM-118"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000982","l":"TEM-120","na":1,"nb":1,"a":[["ARO%3A3000982","TEM-120"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000983","l":"TEM-121","na":1,"nb":1,"a":[["ARO%3A3000983","TEM-121"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000984","l":"TEM-122","na":1,"nb":1,"a":[["ARO%3A3000984","TEM-122"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000985","l":"TEM-123","na":1,"nb":1,"a":[["ARO%3A3000985","TEM-123"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000986","l":"TEM-124","na":1,"nb":1,"a":[["ARO%3A3000986","TEM-124"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000987","l":"TEM-125","na":1,"nb":1,"a":[["ARO%3A3000987","TEM-125"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000988","l":"TEM-126","na":1,"nb":1,"a":[["ARO%3A3000988","TEM-126"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000989","l":"TEM-127","na":1,"nb":1,"a":[["ARO%3A3000989","TEM-127"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000990","l":"TEM-128","na":1,"nb":1,"a":[["ARO%3A3000990","TEM-128"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000993","l":"TEM-129","na":1,"nb":1,"a":[["ARO%3A3000993","TEM-129"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000994","l":"TEM-130","na":1,"nb":1,"a":[["ARO%3A3000994","TEM-130"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000995","l":"TEM-131","na":1,"nb":1,"a":[["ARO%3A3000995","TEM-131"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000996","l":"TEM-132","na":1,"nb":1,"a":[["ARO%3A3000996","TEM-132"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000997","l":"TEM-133","na":1,"nb":1,"a":[["ARO%3A3000997","TEM-133"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000998","l":"TEM-134","na":1,"nb":1,"a":[["ARO%3A3000998","TEM-134"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001000","l":"TEM-136","na":1,"nb":1,"a":[["ARO%3A3001000","TEM-136"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001001","l":"TEM-137","na":1,"nb":1,"a":[["ARO%3A3001001","TEM-137"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001002","l":"TEM-138","na":1,"nb":1,"a":[["ARO%3A3001002","TEM-138"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001003","l":"TEM-139","na":1,"nb":1,"a":[["ARO%3A3001003","TEM-139"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001004","l":"TEM-141","na":1,"nb":1,"a":[["ARO%3A3001004","TEM-141"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001005","l":"TEM-142","na":1,"nb":1,"a":[["ARO%3A3001005","TEM-142"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001006","l":"TEM-143","na":1,"nb":1,"a":[["ARO%3A3001006","TEM-143"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001007","l":"TEM-144","na":1,"nb":1,"a":[["ARO%3A3001007","TEM-144"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001012","l":"TEM-145","na":1,"nb":1,"a":[["ARO%3A3001012","TEM-145"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001013","l":"TEM-146","na":1,"nb":1,"a":[["ARO%3A3001013","TEM-146"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001014","l":"TEM-147","na":1,"nb":1,"a":[["ARO%3A3001014","TEM-147"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001015","l":"TEM-148","na":1,"nb":1,"a":[["ARO%3A3001015","TEM-148"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001016","l":"TEM-149","na":1,"nb":1,"a":[["ARO%3A3001016","TEM-149"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001017","l":"TEM-150","na":1,"nb":1,"a":[["ARO%3A3001017","TEM-150"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001018","l":"TEM-151","na":1,"nb":1,"a":[["ARO%3A3001018","TEM-151"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001019","l":"TEM-152","na":1,"nb":1,"a":[["ARO%3A3001019","TEM-152"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001020","l":"TEM-154","na":1,"nb":1,"a":[["ARO%3A3001020","TEM-154"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001021","l":"TEM-155","na":1,"nb":1,"a":[["ARO%3A3001021","TEM-155"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001022","l":"TEM-156","na":1,"nb":1,"a":[["ARO%3A3001022","TEM-156"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001023","l":"TEM-157","na":1,"nb":1,"a":[["ARO%3A3001023","TEM-157"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001024","l":"TEM-158","na":1,"nb":1,"a":[["ARO%3A3001024","TEM-158"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001025","l":"TEM-159","na":1,"nb":1,"a":[["ARO%3A3001025","TEM-159"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001026","l":"TEM-160","na":1,"nb":1,"a":[["ARO%3A3001026","TEM-160"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001028","l":"TEM-162","na":1,"nb":1,"a":[["ARO%3A3001028","TEM-162"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001029","l":"TEM-163","na":1,"nb":1,"a":[["ARO%3A3001029","TEM-163"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001030","l":"TEM-164","na":1,"nb":1,"a":[["ARO%3A3001030","TEM-164"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001032","l":"TEM-166","na":1,"nb":1,"a":[["ARO%3A3001032","TEM-166"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001033","l":"TEM-167","na":1,"nb":1,"a":[["ARO%3A3001033","TEM-167"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001034","l":"TEM-168","na":1,"nb":1,"a":[["ARO%3A3001034","TEM-168"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001035","l":"TEM-169","na":1,"nb":1,"a":[["ARO%3A3001035","TEM-169"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001037","l":"TEM-171","na":1,"nb":1,"a":[["ARO%3A3001037","TEM-171"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001041","l":"TEM-176","na":1,"nb":1,"a":[["ARO%3A3001041","TEM-176"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001042","l":"TEM-177","na":1,"nb":1,"a":[["ARO%3A3001042","TEM-177"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001043","l":"TEM-178","na":1,"nb":1,"a":[["ARO%3A3001043","TEM-178"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001044","l":"TEM-181","na":1,"nb":1,"a":[["ARO%3A3001044","TEM-181"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001045","l":"TEM-183","na":1,"nb":1,"a":[["ARO%3A3001045","TEM-183"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001046","l":"TEM-186","na":1,"nb":1,"a":[["ARO%3A3001046","TEM-186"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001047","l":"TEM-187","na":1,"nb":1,"a":[["ARO%3A3001047","TEM-187"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001048","l":"TEM-188","na":1,"nb":1,"a":[["ARO%3A3001048","TEM-188"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001049","l":"TEM-189","na":1,"nb":1,"a":[["ARO%3A3001049","TEM-189"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001050","l":"TEM-190","na":1,"nb":1,"a":[["ARO%3A3001050","TEM-190"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001051","l":"TEM-191","na":1,"nb":1,"a":[["ARO%3A3001051","TEM-191"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001052","l":"TEM-192","na":1,"nb":1,"a":[["ARO%3A3001052","TEM-192"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001053","l":"TEM-193","na":1,"nb":1,"a":[["ARO%3A3001053","TEM-193"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001054","l":"TEM-194","na":1,"nb":1,"a":[["ARO%3A3001054","TEM-194"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001055","l":"TEM-195","na":1,"nb":1,"a":[["ARO%3A3001055","TEM-195"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001056","l":"TEM-197","na":1,"nb":1,"a":[["ARO%3A3001056","TEM-197"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001057","l":"TEM-198","na":1,"nb":1,"a":[["ARO%3A3001057","TEM-198"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001058","l":"TEM-199","na":1,"nb":1,"a":[["ARO%3A3001058","TEM-199"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001059","l":"SHV-1","na":1,"nb":1,"a":[["ARO%3A3001059","SHV-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"]]},{"id":"ARO:3001209","l":"mecC","na":1,"nb":1,"a":[["ARO%3A3001209","mecC"]],"b":[["antibacterial/methicillin.html","methicillin"]]},{"id":"ARO:3001299","l":"tlrB conferring tylosin resistance","na":1,"nb":1,"a":[["ARO%3A3001299","tlrB conferring tylosin resistance"]],"b":[["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3001305","l":"ErmU","na":1,"nb":1,"a":[["ARO%3A3001305","ErmU"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3001313","l":"facT","na":1,"nb":1,"a":[["ARO%3A3001313","facT"]],"b":[["antibacterial/factumycin.html","factumycin"]]},{"id":"ARO:3001327","l":"MdtK","na":1,"nb":1,"a":[["ARO%3A3001327","MdtK"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3001329","l":"mdtG","na":1,"nb":1,"a":[["ARO%3A3001329","mdtG"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3001369","l":"TEM-153","na":1,"nb":1,"a":[["ARO%3A3001369","TEM-153"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001373","l":"TEM-182","na":1,"nb":1,"a":[["ARO%3A3001373","TEM-182"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001374","l":"TEM-185","na":1,"nb":1,"a":[["ARO%3A3001374","TEM-185"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001375","l":"TEM-184","na":1,"nb":1,"a":[["ARO%3A3001375","TEM-184"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001376","l":"TEM-196","na":1,"nb":1,"a":[["ARO%3A3001376","TEM-196"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001378","l":"TEM-201","na":1,"nb":1,"a":[["ARO%3A3001378","TEM-201"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001382","l":"TEM-205","na":1,"nb":1,"a":[["ARO%3A3001382","TEM-205"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001383","l":"TEM-206","na":1,"nb":1,"a":[["ARO%3A3001383","TEM-206"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001384","l":"TEM-207","na":1,"nb":1,"a":[["ARO%3A3001384","TEM-207"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001385","l":"TEM-208","na":1,"nb":1,"a":[["ARO%3A3001385","TEM-208"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001386","l":"TEM-209","na":1,"nb":1,"a":[["ARO%3A3001386","TEM-209"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001387","l":"TEM-210","na":1,"nb":1,"a":[["ARO%3A3001387","TEM-210"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001388","l":"TEM-211","na":1,"nb":1,"a":[["ARO%3A3001388","TEM-211"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001389","l":"TEM-212","na":1,"nb":1,"a":[["ARO%3A3001389","TEM-212"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001390","l":"TEM-213","na":1,"nb":1,"a":[["ARO%3A3001390","TEM-213"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001391","l":"TEM-214","na":1,"nb":1,"a":[["ARO%3A3001391","TEM-214"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001392","l":"TEM-215","na":1,"nb":1,"a":[["ARO%3A3001392","TEM-215"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001393","l":"TEM-216","na":1,"nb":1,"a":[["ARO%3A3001393","TEM-216"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001394","l":"TEM-217","na":1,"nb":1,"a":[["ARO%3A3001394","TEM-217"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001419","l":"OXA-24","na":1,"nb":1,"a":[["ARO%3A3001419","OXA-24"]],"b":[["antibacterial/bal30072.html","BAL30072"]]},{"id":"ARO:3001612","l":"OXA-51","na":1,"nb":1,"a":[["ARO%3A3001612","OXA-51"]],"b":[["antibacterial/bal30072.html","BAL30072"]]},{"id":"ARO:3001782","l":"OXA-48","na":1,"nb":1,"a":[["ARO%3A3001782","OXA-48"]],"b":[["antibacterial/temocillin.html","temocillin"]]},{"id":"ARO:3001817","l":"ACC-3","na":1,"nb":1,"a":[["ARO%3A3001817","ACC-3"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001819","l":"ACC-5","na":1,"nb":1,"a":[["ARO%3A3001819","ACC-5"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002355","l":"NDM-4","na":1,"nb":1,"a":[["ARO%3A3002355","NDM-4"]],"b":[["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3002508","l":"PDC-9","na":1,"nb":1,"a":[["ARO%3A3002508","PDC-9"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002509","l":"PDC-10","na":1,"nb":1,"a":[["ARO%3A3002509","PDC-10"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002522","l":"novA","na":1,"nb":1,"a":[["ARO%3A3002522","novA"]],"b":[["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3002538","l":"AAC(3)-IIIc","na":1,"nb":1,"a":[["ARO%3A3002538","AAC(3)-IIIc"]],"b":[["antibacterial/gentamycin-a.html","gentamycin A"]]},{"id":"ARO:3002541","l":"AAC(3)-VIIa","na":1,"nb":1,"a":[["ARO%3A3002541","AAC(3)-VIIa"]],"b":[["antibacterial/paromomycin.html","paromomycin"]]},{"id":"ARO:3002542","l":"AAC(3)-VIIIa","na":1,"nb":1,"a":[["ARO%3A3002542","AAC(3)-VIIIa"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3002543","l":"AAC(3)-IXa","na":1,"nb":1,"a":[["ARO%3A3002543","AAC(3)-IXa"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3002544","l":"AAC(3)-Xa","na":1,"nb":1,"a":[["ARO%3A3002544","AAC(3)-Xa"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3002599","l":"","na":1,"nb":1,"a":[["ARO%3A3002599","AAC(6')-30/AAC(6')-Ib' bifunctional protein"]],"b":[["antibacterial/gentamycin-a.html","gentamycin A"]]},{"id":"ARO:3002626","l":"ANT(6)-Ia","na":1,"nb":1,"a":[["ARO%3A3002626","ANT(6)-Ia"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002627","l":"aadK","na":1,"nb":1,"a":[["ARO%3A3002627","aadK"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002628","l":"aad(6)","na":1,"nb":1,"a":[["ARO%3A3002628","aad(6)"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002629","l":"ANT(6)-Ib","na":1,"nb":1,"a":[["ARO%3A3002629","ANT(6)-Ib"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002630","l":"ANT(9)-Ia","na":1,"nb":1,"a":[["ARO%3A3002630","ANT(9)-Ia"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3002631","l":"spd","na":1,"nb":1,"a":[["ARO%3A3002631","spd"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3002635","l":"","na":1,"nb":1,"a":[["ARO%3A3002635","APH(2')-IIa"]],"b":[["antibacterial/plazomicin.html","plazomicin"]]},{"id":"ARO:3002638","l":"","na":1,"nb":1,"a":[["ARO%3A3002638","APH(3')-Ia"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002639","l":"","na":1,"nb":1,"a":[["ARO%3A3002639","APH(3')-Ib"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002640","l":"","na":1,"nb":1,"a":[["ARO%3A3002640","APH(3')-Ic"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002655","l":"APH(4)-Ia","na":1,"nb":1,"a":[["ARO%3A3002655","APH(4)-Ia"]],"b":[["antibacterial/hygromycin-b.html","hygromycin B"]]},{"id":"ARO:3002656","l":"APH(4)-Ib","na":1,"nb":1,"a":[["ARO%3A3002656","APH(4)-Ib"]],"b":[["antibacterial/hygromycin-b.html","hygromycin B"]]},{"id":"ARO:3002657","l":"APH(6)-Ia","na":1,"nb":1,"a":[["ARO%3A3002657","APH(6)-Ia"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002658","l":"APH(6)-Ib","na":1,"nb":1,"a":[["ARO%3A3002658","APH(6)-Ib"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002659","l":"APH(6)-Ic","na":1,"nb":1,"a":[["ARO%3A3002659","APH(6)-Ic"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002660","l":"APH(6)-Id","na":1,"nb":1,"a":[["ARO%3A3002660","APH(6)-Id"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002661","l":"","na":1,"nb":1,"a":[["ARO%3A3002661","APH(7')-Ia"]],"b":[["antibacterial/hygromycin-b.html","hygromycin B"]]},{"id":"ARO:3002662","l":"APH(9)-Ia","na":1,"nb":1,"a":[["ARO%3A3002662","APH(9)-Ia"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3002663","l":"APH(9)-Ib","na":1,"nb":1,"a":[["ARO%3A3002663","APH(9)-Ib"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3002670","l":"cat","na":1,"nb":1,"a":[["ARO%3A3002670","cat"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002690","l":"Streptomyces lividans cmlR","na":1,"nb":1,"a":[["ARO%3A3002690","Streptomyces lividans cmlR"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002691","l":"Salmonella enterica cmlA","na":1,"nb":1,"a":[["ARO%3A3002691","Salmonella enterica cmlA"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002693","l":"cmlA1","na":1,"nb":1,"a":[["ARO%3A3002693","cmlA1"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002694","l":"cmlA4","na":1,"nb":1,"a":[["ARO%3A3002694","cmlA4"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002695","l":"cmlA5","na":1,"nb":1,"a":[["ARO%3A3002695","cmlA5"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002696","l":"cmlA6","na":1,"nb":1,"a":[["ARO%3A3002696","cmlA6"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002698","l":"cmlB","na":1,"nb":1,"a":[["ARO%3A3002698","cmlB"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002699","l":"cmlB1","na":1,"nb":1,"a":[["ARO%3A3002699","cmlB1"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002700","l":"cmlv","na":1,"nb":1,"a":[["ARO%3A3002700","cmlv"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002701","l":"Rhodococcus fascians cmr","na":1,"nb":1,"a":[["ARO%3A3002701","Rhodococcus fascians cmr"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002702","l":"cmrA","na":1,"nb":1,"a":[["ARO%3A3002702","cmrA"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002703","l":"cmx","na":1,"nb":1,"a":[["ARO%3A3002703","cmx"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002707","l":"QnrA1","na":1,"nb":1,"a":[["ARO%3A3002707","QnrA1"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002708","l":"QnrA2","na":1,"nb":1,"a":[["ARO%3A3002708","QnrA2"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002709","l":"QnrA3","na":1,"nb":1,"a":[["ARO%3A3002709","QnrA3"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002710","l":"QnrA4","na":1,"nb":1,"a":[["ARO%3A3002710","QnrA4"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002711","l":"QnrA5","na":1,"nb":1,"a":[["ARO%3A3002711","QnrA5"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002712","l":"QnrA6","na":1,"nb":1,"a":[["ARO%3A3002712","QnrA6"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002713","l":"QnrA7","na":1,"nb":1,"a":[["ARO%3A3002713","QnrA7"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002714","l":"QnrB1","na":1,"nb":1,"a":[["ARO%3A3002714","QnrB1"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002715","l":"QnrB2","na":1,"nb":1,"a":[["ARO%3A3002715","QnrB2"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002716","l":"QnrB3","na":1,"nb":1,"a":[["ARO%3A3002716","QnrB3"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002718","l":"QnrB4","na":1,"nb":1,"a":[["ARO%3A3002718","QnrB4"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002719","l":"QnrB5","na":1,"nb":1,"a":[["ARO%3A3002719","QnrB5"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002720","l":"QnrB6","na":1,"nb":1,"a":[["ARO%3A3002720","QnrB6"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002721","l":"QnrB7","na":1,"nb":1,"a":[["ARO%3A3002721","QnrB7"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002722","l":"QnrB8","na":1,"nb":1,"a":[["ARO%3A3002722","QnrB8"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002723","l":"QnrB9","na":1,"nb":1,"a":[["ARO%3A3002723","QnrB9"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002724","l":"QnrB10","na":1,"nb":1,"a":[["ARO%3A3002724","QnrB10"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002725","l":"QnrB11","na":1,"nb":1,"a":[["ARO%3A3002725","QnrB11"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002726","l":"QnrB12","na":1,"nb":1,"a":[["ARO%3A3002726","QnrB12"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002727","l":"QnrB13","na":1,"nb":1,"a":[["ARO%3A3002727","QnrB13"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002728","l":"QnrB14","na":1,"nb":1,"a":[["ARO%3A3002728","QnrB14"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002730","l":"QnrB15","na":1,"nb":1,"a":[["ARO%3A3002730","QnrB15"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002731","l":"QnrB16","na":1,"nb":1,"a":[["ARO%3A3002731","QnrB16"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002732","l":"QnrB17","na":1,"nb":1,"a":[["ARO%3A3002732","QnrB17"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002733","l":"QnrB18","na":1,"nb":1,"a":[["ARO%3A3002733","QnrB18"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002734","l":"QnrB19","na":1,"nb":1,"a":[["ARO%3A3002734","QnrB19"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002735","l":"QnrB20","na":1,"nb":1,"a":[["ARO%3A3002735","QnrB20"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002736","l":"QnrB21","na":1,"nb":1,"a":[["ARO%3A3002736","QnrB21"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002737","l":"QnrB22","na":1,"nb":1,"a":[["ARO%3A3002737","QnrB22"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002738","l":"QnrB23","na":1,"nb":1,"a":[["ARO%3A3002738","QnrB23"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002739","l":"QnrB24","na":1,"nb":1,"a":[["ARO%3A3002739","QnrB24"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002740","l":"QnrB25","na":1,"nb":1,"a":[["ARO%3A3002740","QnrB25"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002741","l":"QnrB26","na":1,"nb":1,"a":[["ARO%3A3002741","QnrB26"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002742","l":"QnrB27","na":1,"nb":1,"a":[["ARO%3A3002742","QnrB27"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002743","l":"QnrB28","na":1,"nb":1,"a":[["ARO%3A3002743","QnrB28"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002744","l":"QnrB29","na":1,"nb":1,"a":[["ARO%3A3002744","QnrB29"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002745","l":"QnrB30","na":1,"nb":1,"a":[["ARO%3A3002745","QnrB30"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002746","l":"QnrB31","na":1,"nb":1,"a":[["ARO%3A3002746","QnrB31"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002747","l":"QnrB32","na":1,"nb":1,"a":[["ARO%3A3002747","QnrB32"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002748","l":"QnrB33","na":1,"nb":1,"a":[["ARO%3A3002748","QnrB33"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002749","l":"QnrB34","na":1,"nb":1,"a":[["ARO%3A3002749","QnrB34"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002750","l":"QnrB35","na":1,"nb":1,"a":[["ARO%3A3002750","QnrB35"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002751","l":"QnrB36","na":1,"nb":1,"a":[["ARO%3A3002751","QnrB36"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002752","l":"QnrB37","na":1,"nb":1,"a":[["ARO%3A3002752","QnrB37"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002753","l":"QnrB38","na":1,"nb":1,"a":[["ARO%3A3002753","QnrB38"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002755","l":"QnrB40","na":1,"nb":1,"a":[["ARO%3A3002755","QnrB40"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002756","l":"QnrB41","na":1,"nb":1,"a":[["ARO%3A3002756","QnrB41"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002757","l":"QnrB42","na":1,"nb":1,"a":[["ARO%3A3002757","QnrB42"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002758","l":"QnrB43","na":1,"nb":1,"a":[["ARO%3A3002758","QnrB43"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002759","l":"QnrB44","na":1,"nb":1,"a":[["ARO%3A3002759","QnrB44"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002760","l":"QnrB45","na":1,"nb":1,"a":[["ARO%3A3002760","QnrB45"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002761","l":"QnrB46","na":1,"nb":1,"a":[["ARO%3A3002761","QnrB46"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002762","l":"QnrB47","na":1,"nb":1,"a":[["ARO%3A3002762","QnrB47"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002763","l":"QnrB48","na":1,"nb":1,"a":[["ARO%3A3002763","QnrB48"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002764","l":"QnrB49","na":1,"nb":1,"a":[["ARO%3A3002764","QnrB49"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002765","l":"QnrB50","na":1,"nb":1,"a":[["ARO%3A3002765","QnrB50"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002767","l":"QnrB54","na":1,"nb":1,"a":[["ARO%3A3002767","QnrB54"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002768","l":"QnrB55","na":1,"nb":1,"a":[["ARO%3A3002768","QnrB55"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002769","l":"QnrB56","na":1,"nb":1,"a":[["ARO%3A3002769","QnrB56"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002770","l":"QnrB57","na":1,"nb":1,"a":[["ARO%3A3002770","QnrB57"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002771","l":"QnrB58","na":1,"nb":1,"a":[["ARO%3A3002771","QnrB58"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002772","l":"QnrB59","na":1,"nb":1,"a":[["ARO%3A3002772","QnrB59"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002773","l":"QnrB60","na":1,"nb":1,"a":[["ARO%3A3002773","QnrB60"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002774","l":"QnrB61","na":1,"nb":1,"a":[["ARO%3A3002774","QnrB61"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002775","l":"QnrB62","na":1,"nb":1,"a":[["ARO%3A3002775","QnrB62"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002776","l":"QnrB64","na":1,"nb":1,"a":[["ARO%3A3002776","QnrB64"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002777","l":"QnrB65","na":1,"nb":1,"a":[["ARO%3A3002777","QnrB65"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002778","l":"QnrB66","na":1,"nb":1,"a":[["ARO%3A3002778","QnrB66"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002779","l":"QnrB67","na":1,"nb":1,"a":[["ARO%3A3002779","QnrB67"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002780","l":"QnrB68","na":1,"nb":1,"a":[["ARO%3A3002780","QnrB68"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002781","l":"QnrB69","na":1,"nb":1,"a":[["ARO%3A3002781","QnrB69"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002782","l":"QnrB70","na":1,"nb":1,"a":[["ARO%3A3002782","QnrB70"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002783","l":"QnrB71","na":1,"nb":1,"a":[["ARO%3A3002783","QnrB71"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002784","l":"QnrB72","na":1,"nb":1,"a":[["ARO%3A3002784","QnrB72"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002785","l":"QnrB73","na":1,"nb":1,"a":[["ARO%3A3002785","QnrB73"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002786","l":"QnrB74","na":1,"nb":1,"a":[["ARO%3A3002786","QnrB74"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002787","l":"QnrC","na":1,"nb":1,"a":[["ARO%3A3002787","QnrC"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002788","l":"QnrD1","na":1,"nb":1,"a":[["ARO%3A3002788","QnrD1"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002789","l":"QnrD2","na":1,"nb":1,"a":[["ARO%3A3002789","QnrD2"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002790","l":"QnrS1","na":1,"nb":1,"a":[["ARO%3A3002790","QnrS1"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002791","l":"QnrS2","na":1,"nb":1,"a":[["ARO%3A3002791","QnrS2"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002792","l":"QnrS3","na":1,"nb":1,"a":[["ARO%3A3002792","QnrS3"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002793","l":"QnrS4","na":1,"nb":1,"a":[["ARO%3A3002793","QnrS4"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002794","l":"QnrS5","na":1,"nb":1,"a":[["ARO%3A3002794","QnrS5"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002795","l":"QnrS6","na":1,"nb":1,"a":[["ARO%3A3002795","QnrS6"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002796","l":"QnrS7","na":1,"nb":1,"a":[["ARO%3A3002796","QnrS7"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002797","l":"QnrS8","na":1,"nb":1,"a":[["ARO%3A3002797","QnrS8"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002798","l":"QnrS9","na":1,"nb":1,"a":[["ARO%3A3002798","QnrS9"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002799","l":"QnrVC1","na":1,"nb":1,"a":[["ARO%3A3002799","QnrVC1"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002800","l":"QnrVC3","na":1,"nb":1,"a":[["ARO%3A3002800","QnrVC3"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002801","l":"QnrVC4","na":1,"nb":1,"a":[["ARO%3A3002801","QnrVC4"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002802","l":"QnrVC5","na":1,"nb":1,"a":[["ARO%3A3002802","QnrVC5"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002803","l":"QnrVC6","na":1,"nb":1,"a":[["ARO%3A3002803","QnrVC6"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002804","l":"FosA2","na":1,"nb":1,"a":[["ARO%3A3002804","FosA2"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3002817","l":"carA","na":1,"nb":1,"a":[["ARO%3A3002817","carA"]],"b":[["antibacterial/carbomycin.html","carbomycin"]]},{"id":"ARO:3002826","l":"EreA2","na":1,"nb":1,"a":[["ARO%3A3002826","EreA2"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3002828","l":"srmB","na":1,"nb":1,"a":[["ARO%3A3002828","srmB"]],"b":[["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3002832","l":"vgaD","na":1,"nb":1,"a":[["ARO%3A3002832","vgaD"]],"b":[["antibacterial/dalfopristin.html","dalfopristin"]]},{"id":"ARO:3002837","l":"lnuC","na":1,"nb":1,"a":[["ARO%3A3002837","lnuC"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002840","l":"vatA","na":1,"nb":1,"a":[["ARO%3A3002840","vatA"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002841","l":"vatB","na":1,"nb":1,"a":[["ARO%3A3002841","vatB"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002842","l":"vatC","na":1,"nb":1,"a":[["ARO%3A3002842","vatC"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002843","l":"vatD","na":1,"nb":1,"a":[["ARO%3A3002843","vatD"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002844","l":"vatE","na":1,"nb":1,"a":[["ARO%3A3002844","vatE"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002845","l":"vatH","na":1,"nb":1,"a":[["ARO%3A3002845","vatH"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002846","l":"arr-1","na":1,"nb":1,"a":[["ARO%3A3002846","arr-1"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3002847","l":"arr-2","na":1,"nb":1,"a":[["ARO%3A3002847","arr-2"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3002848","l":"arr-3","na":1,"nb":1,"a":[["ARO%3A3002848","arr-3"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3002849","l":"arr-4","na":1,"nb":1,"a":[["ARO%3A3002849","arr-4"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3002850","l":"arr-5","na":1,"nb":1,"a":[["ARO%3A3002850","arr-5"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3002852","l":"arr-7","na":1,"nb":1,"a":[["ARO%3A3002852","arr-7"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3002853","l":"arr-8","na":1,"nb":1,"a":[["ARO%3A3002853","arr-8"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3002854","l":"dfrA1","na":1,"nb":1,"a":[["ARO%3A3002854","dfrA1"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002856","l":"dfrA24","na":1,"nb":1,"a":[["ARO%3A3002856","dfrA24"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002857","l":"dfrA26","na":1,"nb":1,"a":[["ARO%3A3002857","dfrA26"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002858","l":"dfrA12","na":1,"nb":1,"a":[["ARO%3A3002858","dfrA12"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002859","l":"dfrA14","na":1,"nb":1,"a":[["ARO%3A3002859","dfrA14"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002860","l":"dfrA17","na":1,"nb":1,"a":[["ARO%3A3002860","dfrA17"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002861","l":"dfrA5","na":1,"nb":1,"a":[["ARO%3A3002861","dfrA5"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002862","l":"dfrA7","na":1,"nb":1,"a":[["ARO%3A3002862","dfrA7"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002863","l":"dfrA8","na":1,"nb":1,"a":[["ARO%3A3002863","dfrA8"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002864","l":"dfrB1","na":1,"nb":1,"a":[["ARO%3A3002864","dfrB1"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002865","l":"dfrC","na":1,"nb":1,"a":[["ARO%3A3002865","dfrC"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002866","l":"dfrD","na":1,"nb":1,"a":[["ARO%3A3002866","dfrD"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002867","l":"dfrF","na":1,"nb":1,"a":[["ARO%3A3002867","dfrF"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002868","l":"dfrG","na":1,"nb":1,"a":[["ARO%3A3002868","dfrG"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002869","l":"dfrK","na":1,"nb":1,"a":[["ARO%3A3002869","dfrK"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002870","l":"tet(34)","na":1,"nb":1,"a":[["ARO%3A3002870","tet(34)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3002871","l":"tet(37)","na":1,"nb":1,"a":[["ARO%3A3002871","tet(37)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3002872","l":"FosA3","na":1,"nb":1,"a":[["ARO%3A3002872","FosA3"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3002873","l":"FosB3","na":1,"nb":1,"a":[["ARO%3A3002873","FosB3"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3002874","l":"FosC2","na":1,"nb":1,"a":[["ARO%3A3002874","FosC2"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3002875","l":"dfrE","na":1,"nb":1,"a":[["ARO%3A3002875","dfrE"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002879","l":"linG","na":1,"nb":1,"a":[["ARO%3A3002879","linG"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002891","l":"Streptomyces rimosus otr(A)","na":1,"nb":1,"a":[["ARO%3A3002891","Streptomyces rimosus otr(A)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"]]},{"id":"ARO:3002892","l":"otr(B)","na":1,"nb":1,"a":[["ARO%3A3002892","otr(B)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3002893","l":"tcr3","na":1,"nb":1,"a":[["ARO%3A3002893","tcr3"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3002894","l":"otr(C)","na":1,"nb":1,"a":[["ARO%3A3002894","otr(C)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3002895","l":"SAT-2","na":1,"nb":1,"a":[["ARO%3A3002895","SAT-2"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"]]},{"id":"ARO:3002897","l":"SAT-4","na":1,"nb":1,"a":[["ARO%3A3002897","SAT-4"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"]]},{"id":"ARO:3002898","l":"SAT-3","na":1,"nb":1,"a":[["ARO%3A3002898","SAT-3"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"]]},{"id":"ARO:3002914","l":"vanJ","na":1,"nb":1,"a":[["ARO%3A3002914","vanJ"]],"b":[["antibacterial/teicoplanin.html","teicoplanin"]]},{"id":"ARO:3002917","l":"glycopeptide resistance gene cluster VanN","na":1,"nb":1,"a":[["ARO%3A3002917","glycopeptide resistance gene cluster VanN"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3002918","l":"glycopeptide resistance gene cluster VanO","na":1,"nb":1,"a":[["ARO%3A3002918","glycopeptide resistance gene cluster VanO"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3002999","l":"CblA-1","na":1,"nb":1,"a":[["ARO%3A3002999","CblA-1"]],"b":[["antibacterial/cefaloridine.html","cefaloridine"]]},{"id":"ARO:3003006","l":"blt","na":1,"nb":1,"a":[["ARO%3A3003006","blt"]],"b":[["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3003011","l":"dfrA10","na":1,"nb":1,"a":[["ARO%3A3003011","dfrA10"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003012","l":"dfrA13","na":1,"nb":1,"a":[["ARO%3A3003012","dfrA13"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003013","l":"dfrA15","na":1,"nb":1,"a":[["ARO%3A3003013","dfrA15"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003014","l":"dfrA16","na":1,"nb":1,"a":[["ARO%3A3003014","dfrA16"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003015","l":"dfrA19","na":1,"nb":1,"a":[["ARO%3A3003015","dfrA19"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003016","l":"dfrA20","na":1,"nb":1,"a":[["ARO%3A3003016","dfrA20"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003017","l":"dfrA21","na":1,"nb":1,"a":[["ARO%3A3003017","dfrA21"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003018","l":"dfrA22","na":1,"nb":1,"a":[["ARO%3A3003018","dfrA22"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003019","l":"dfrA23","na":1,"nb":1,"a":[["ARO%3A3003019","dfrA23"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003020","l":"dfrA25","na":1,"nb":1,"a":[["ARO%3A3003020","dfrA25"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003021","l":"dfrB2","na":1,"nb":1,"a":[["ARO%3A3003021","dfrB2"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003022","l":"dfrB3","na":1,"nb":1,"a":[["ARO%3A3003022","dfrB3"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003023","l":"dfrB6","na":1,"nb":1,"a":[["ARO%3A3003023","dfrB6"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003026","l":"fusH","na":1,"nb":1,"a":[["ARO%3A3003026","fusH"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3003036","l":"oleB","na":1,"nb":1,"a":[["ARO%3A3003036","oleB"]],"b":[["antibacterial/oleandomycin.html","oleandomycin"]]},{"id":"ARO:3003041","l":"Streptococcus pneumoniae PBP1a conferring resistance to amoxicillin","na":1,"nb":1,"a":[["ARO%3A3003041","Streptococcus pneumoniae PBP1a conferring resistance to amoxicillin"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3003042","l":"Streptococcus pneumoniae PBP2b conferring resistance to amoxicillin","na":1,"nb":1,"a":[["ARO%3A3003042","Streptococcus pneumoniae PBP2b conferring resistance to amoxicillin"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3003043","l":"Streptococcus pneumoniae PBP2x conferring resistance to amoxicillin","na":1,"nb":1,"a":[["ARO%3A3003043","Streptococcus pneumoniae PBP2x conferring resistance to amoxicillin"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3003059","l":"tmrB","na":1,"nb":1,"a":[["ARO%3A3003059","tmrB"]],"b":[["antibacterial/tunicamycin.html","tunicamycin"]]},{"id":"ARO:3003060","l":"tsnR","na":1,"nb":1,"a":[["ARO%3A3003060","tsnR"]],"b":[["antibacterial/thiostrepton.html","thiostrepton"]]},{"id":"ARO:3003061","l":"vph","na":1,"nb":1,"a":[["ARO%3A3003061","vph"]],"b":[["antimycobacterial/viomycin.html","viomycin"]]},{"id":"ARO:3003074","l":"Staphylococcus aureus cls conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003074","Staphylococcus aureus cls conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003077","l":"Enterococcus faecalis liaF mutant conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003077","Enterococcus faecalis liaF mutant conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003078","l":"Enterococcus faecium liaR mutant conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003078","Enterococcus faecium liaR mutant conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003079","l":"Enterococcus faecium liaS mutant conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003079","Enterococcus faecium liaS mutant conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003092","l":"Enterococcus faecium cls conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003092","Enterococcus faecium cls conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003105","l":"dfrA3","na":1,"nb":1,"a":[["ARO%3A3003105","dfrA3"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003109","l":"msrE","na":1,"nb":1,"a":[["ARO%3A3003109","msrE"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003157","l":"TEM-219","na":1,"nb":1,"a":[["ARO%3A3003157","TEM-219"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3003158","l":"TEM-220","na":1,"nb":1,"a":[["ARO%3A3003158","TEM-220"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3003193","l":"QnrVC7","na":1,"nb":1,"a":[["ARO%3A3003193","QnrVC7"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003196","l":"tet(45)","na":1,"nb":1,"a":[["ARO%3A3003196","tet(45)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003207","l":"FosK","na":1,"nb":1,"a":[["ARO%3A3003207","FosK"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003208","l":"FosXCC","na":1,"nb":1,"a":[["ARO%3A3003208","FosXCC"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003210","l":"FosA4","na":1,"nb":1,"a":[["ARO%3A3003210","FosA4"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003236","l":"Mycobacteroides abscessus 16S rRNA mutation conferring resistance to kanamycin","na":1,"nb":1,"a":[["ARO%3A3003236","Mycobacteroides abscessus 16S rRNA mutation conferring resistance to kanamycin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003237","l":"Mycobacteroides abscessus 16S rRNA mutation conferring resistance to tobramycin","na":1,"nb":1,"a":[["ARO%3A3003237","Mycobacteroides abscessus 16S rRNA mutation conferring resistance to tobramycin"]],"b":[["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3003238","l":"Mycobacteroides abscessus 16S rRNA mutation conferring resistance to neomycin","na":1,"nb":1,"a":[["ARO%3A3003238","Mycobacteroides abscessus 16S rRNA mutation conferring resistance to neomycin"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3003239","l":"Mycobacteroides abscessus 16S rRNA mutation conferring resistance to amikacin","na":1,"nb":1,"a":[["ARO%3A3003239","Mycobacteroides abscessus 16S rRNA mutation conferring resistance to amikacin"]],"b":[["antibacterial/amikacin.html","amikacin"]]},{"id":"ARO:3003240","l":"Mycobacteroides abscessus 16S rRNA mutation conferring resistance to gentamicin","na":1,"nb":1,"a":[["ARO%3A3003240","Mycobacteroides abscessus 16S rRNA mutation conferring resistance to gentamicin"]],"b":[["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3003287","l":"Staphylococcus aureus rpoB mutants conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003287","Staphylococcus aureus rpoB mutants conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003291","l":"Staphylococcus aureus rpoC conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003291","Staphylococcus aureus rpoC conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003319","l":"Staphylococcus aureus mprF with mutation conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003319","Staphylococcus aureus mprF with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003323","l":"Staphylococcus aureus pgsA mutations conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003323","Staphylococcus aureus pgsA mutations conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003324","l":"Bacillus subtilis mprF","na":1,"nb":1,"a":[["ARO%3A3003324","Bacillus subtilis mprF"]],"b":[["antibacterial/defensin.html","defensin"]]},{"id":"ARO:3003325","l":"Mycobacterium tuberculosis variant bovis embB with mutation conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3003325","Mycobacterium tuberculosis variant bovis embB with mutation conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003326","l":"Mycobacterium tuberculosis embB mutant conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3003326","Mycobacterium tuberculosis embB mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003327","l":"Mycobacterium tuberculosis embC mutant conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3003327","Mycobacterium tuberculosis embC mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003333","l":"Escherichia coli 16S rRNA (rrsC) mutation conferring resistance to kasugamicin","na":1,"nb":1,"a":[["ARO%3A3003333","Escherichia coli 16S rRNA (rrsC) mutation conferring resistance to kasugamicin"]],"b":[["antifungal/kasugamycin.html","kasugamycin"]]},{"id":"ARO:3003357","l":"Clostridioides difficile EF-Tu mutants conferring resistance to elfamycin","na":1,"nb":1,"a":[["ARO%3A3003357","Clostridioides difficile EF-Tu mutants conferring resistance to elfamycin"]],"b":[["antibacterial/lff571.html","LFF571"]]},{"id":"ARO:3003359","l":"Streptomyces cinnamoneus EF-Tu mutants conferring resistance to elfamycin","na":1,"nb":1,"a":[["ARO%3A3003359","Streptomyces cinnamoneus EF-Tu mutants conferring resistance to elfamycin"]],"b":[["antibacterial/kirromycin.html","kirromycin"]]},{"id":"ARO:3003361","l":"Planobispora rosea EF-Tu mutants conferring resistance to inhibitor GE2270A","na":1,"nb":1,"a":[["ARO%3A3003361","Planobispora rosea EF-Tu mutants conferring resistance to inhibitor GE2270A"]],"b":[["antibacterial/ge2270a.html","GE2270A"]]},{"id":"ARO:3003368","l":"Escherichia coli EF-Tu mutants conferring resistance to kirromycin","na":1,"nb":1,"a":[["ARO%3A3003368","Escherichia coli EF-Tu mutants conferring resistance to kirromycin"]],"b":[["antibacterial/kirromycin.html","kirromycin"]]},{"id":"ARO:3003369","l":"Escherichia coli EF-Tu mutants conferring resistance to Pulvomycin","na":1,"nb":1,"a":[["ARO%3A3003369","Escherichia coli EF-Tu mutants conferring resistance to Pulvomycin"]],"b":[["antibacterial/pulvomycin.html","pulvomycin"]]},{"id":"ARO:3003370","l":"Escherichia coli EF-Tu mutants conferring resistance to Enacyloxin IIa","na":1,"nb":1,"a":[["ARO%3A3003370","Escherichia coli EF-Tu mutants conferring resistance to Enacyloxin IIa"]],"b":[["antibacterial/enacyloxin-iia.html","enacyloxin IIa"]]},{"id":"ARO:3003372","l":"Escherichia coli 16S rRNA (rrsH) mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003372","Escherichia coli 16S rRNA (rrsH) mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003373","l":"Klebsiella pneumoniae acrR with mutation conferring multidrug antibiotic resistance","na":1,"nb":1,"a":[["ARO%3A3003373","Klebsiella pneumoniae acrR with mutation conferring multidrug antibiotic resistance"]],"b":[["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:3003376","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003376","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003377","l":"Escherichia coli 16S rRNA (rrnB) mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003377","Escherichia coli 16S rRNA (rrnB) mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003379","l":"Salmonella enterica ramR mutants","na":1,"nb":1,"a":[["ARO%3A3003379","Salmonella enterica ramR mutants"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003380","l":"Klebsiella pneumoniae ramR mutants","na":1,"nb":1,"a":[["ARO%3A3003380","Klebsiella pneumoniae ramR mutants"]],"b":[["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:3003382","l":"Salmonella enterica soxR with mutation conferring antibiotic resistance","na":1,"nb":1,"a":[["ARO%3A3003382","Salmonella enterica soxR with mutation conferring antibiotic resistance"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003383","l":"Salmonella serovars soxS with mutation conferring antibiotic resistance","na":1,"nb":1,"a":[["ARO%3A3003383","Salmonella serovars soxS with mutation conferring antibiotic resistance"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003389","l":"Mycobacterium leprae folP with mutation conferring resistance to dapsone","na":1,"nb":1,"a":[["ARO%3A3003389","Mycobacterium leprae folP with mutation conferring resistance to dapsone"]],"b":[["antimycobacterial/dapsone.html","dapsone"]]},{"id":"ARO:3003390","l":"Escherichia coli ompF with mutation conferring resistance to beta-lactam antibiotics","na":1,"nb":1,"a":[["ARO%3A3003390","Escherichia coli ompF with mutation conferring resistance to beta-lactam antibiotics"]],"b":[["antibacterial/cefepime.html","cefepime"]]},{"id":"ARO:3003392","l":"Mycobacterium tuberculosis katG mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3003392","Mycobacterium tuberculosis katG mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3003393","l":"Mycobacterium tuberculosis inhA mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3003393","Mycobacterium tuberculosis inhA mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3003396","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to gentamicin C","na":1,"nb":1,"a":[["ARO%3A3003396","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to gentamicin C"]],"b":[["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3003397","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to G418","na":1,"nb":1,"a":[["ARO%3A3003397","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to G418"]],"b":[["antibacterial/g418.html","G418"]]},{"id":"ARO:3003399","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to kanamycin A","na":1,"nb":1,"a":[["ARO%3A3003399","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to kanamycin A"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003402","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to neomycin","na":1,"nb":1,"a":[["ARO%3A3003402","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to neomycin"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3003403","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to paromomycin","na":1,"nb":1,"a":[["ARO%3A3003403","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to paromomycin"]],"b":[["antibacterial/paromomycin.html","paromomycin"]]},{"id":"ARO:3003405","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3003405","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003406","l":"Escherichia coli 16S rRNA (rrnB) mutation conferring resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3003406","Escherichia coli 16S rRNA (rrnB) mutation conferring resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003408","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to tobramycin","na":1,"nb":1,"a":[["ARO%3A3003408","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to tobramycin"]],"b":[["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3003410","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to tetracycline","na":1,"nb":1,"a":[["ARO%3A3003410","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to tetracycline"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003411","l":"Escherichia coli 16S rRNA (rrnB) mutation conferring resistance to tetracycline","na":1,"nb":1,"a":[["ARO%3A3003411","Escherichia coli 16S rRNA (rrnB) mutation conferring resistance to tetracycline"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003413","l":"pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004977","Mycobacterium tuberculosis gpsI with mutations conferring resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3003436","l":"Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to kanamycin","na":1,"nb":1,"a":[["ARO%3A3003436","Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to kanamycin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003437","l":"Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to viomycin","na":1,"nb":1,"a":[["ARO%3A3003437","Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to viomycin"]],"b":[["antimycobacterial/viomycin.html","viomycin"]]},{"id":"ARO:3003438","l":"Enterococcus faecium EF-Tu mutants conferring resistance to GE2270A","na":1,"nb":1,"a":[["ARO%3A3003438","Enterococcus faecium EF-Tu mutants conferring resistance to GE2270A"]],"b":[["antibacterial/ge2270a.html","GE2270A"]]},{"id":"ARO:3003440","l":"mecB","na":1,"nb":1,"a":[["ARO%3A3003440","mecB"]],"b":[["antibacterial/methicillin.html","methicillin"]]},{"id":"ARO:3003445","l":"Mycobacterium tuberculosis tlyA mutations conferring resistance to aminoglycosides","na":1,"nb":1,"a":[["ARO%3A3003445","Mycobacterium tuberculosis tlyA mutations conferring resistance to aminoglycosides"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003448","l":"Mycobacterium tuberculosis iniA mutant conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3003448","Mycobacterium tuberculosis iniA mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003451","l":"Mycobacterium tuberculosis iniC mutant conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3003451","Mycobacterium tuberculosis iniC mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003453","l":"Mycobacterium tuberculosis embA mutant conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3003453","Mycobacterium tuberculosis embA mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003455","l":"Mycobacterium tuberculosis embR mutant conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3003455","Mycobacterium tuberculosis embR mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003461","l":"Mycobacterium tuberculosis ndh with mutation conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3003461","Mycobacterium tuberculosis ndh with mutation conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3003463","l":"Mycobacterium tuberculosis kasA mutant conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3003463","Mycobacterium tuberculosis kasA mutant conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3003465","l":"Mycobacterium tuberculosis embB with mutation conferring resistance to rifampicin","na":1,"nb":1,"a":[["ARO%3A3003465","Mycobacterium tuberculosis embB with mutation conferring resistance to rifampicin"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3003470","l":"Mycobacterium tuberculosis gidB mutation conferring resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3003470","Mycobacterium tuberculosis gidB mutation conferring resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003480","l":"Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3003480","Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003481","l":"Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to amikacin","na":1,"nb":1,"a":[["ARO%3A3003481","Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to amikacin"]],"b":[["antibacterial/amikacin.html","amikacin"]]},{"id":"ARO:3003485","l":"Chlamydophila psittaci 16S rRNA mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003485","Chlamydophila psittaci 16S rRNA mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003493","l":"Pasteurella multocida 16S rRNA mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003493","Pasteurella multocida 16S rRNA mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003495","l":"Neisseria gonorrhoeae 16S rRNA mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003495","Neisseria gonorrhoeae 16S rRNA mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003497","l":"Neisseria meningitidis 16S rRNA mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003497","Neisseria meningitidis 16S rRNA mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003502","l":"Borreliella burgdorferi 16S rRNA mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003502","Borreliella burgdorferi 16S rRNA mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003503","l":"Borreliella burgdorferi 16S rRNA mutation conferring resistance to kanamycin","na":1,"nb":1,"a":[["ARO%3A3003503","Borreliella burgdorferi 16S rRNA mutation conferring resistance to kanamycin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003504","l":"Borreliella burgdorferi 16S rRNA mutation conferring resistance to gentamicin","na":1,"nb":1,"a":[["ARO%3A3003504","Borreliella burgdorferi 16S rRNA mutation conferring resistance to gentamicin"]],"b":[["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3003510","l":"Helicobacter pylori 16S rRNA mutation conferring resistance to tetracycline","na":1,"nb":1,"a":[["ARO%3A3003510","Helicobacter pylori 16S rRNA mutation conferring resistance to tetracycline"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003512","l":"Salmonella enterica 16S rRNA (rrsD) mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003512","Salmonella enterica 16S rRNA (rrsD) mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003514","l":"Mycobacteroides chelonae 16S rRNA mutation conferring resistance to amikacin","na":1,"nb":1,"a":[["ARO%3A3003514","Mycobacteroides chelonae 16S rRNA mutation conferring resistance to amikacin"]],"b":[["antibacterial/amikacin.html","amikacin"]]},{"id":"ARO:3003515","l":"Mycobacteroides chelonae 16S rRNA mutation conferring resistance to kanamycin A","na":1,"nb":1,"a":[["ARO%3A3003515","Mycobacteroides chelonae 16S rRNA mutation conferring resistance to kanamycin A"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003516","l":"Mycobacteroides chelonae 16S rRNA mutation conferring resistance to tobramycin","na":1,"nb":1,"a":[["ARO%3A3003516","Mycobacteroides chelonae 16S rRNA mutation conferring resistance to tobramycin"]],"b":[["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3003517","l":"Mycobacteroides chelonae 16S rRNA mutation conferring resistance to gentamicin C","na":1,"nb":1,"a":[["ARO%3A3003517","Mycobacteroides chelonae 16S rRNA mutation conferring resistance to gentamicin C"]],"b":[["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3003518","l":"Mycobacteroides chelonae 16S rRNA mutation conferring resistance to neomycin","na":1,"nb":1,"a":[["ARO%3A3003518","Mycobacteroides chelonae 16S rRNA mutation conferring resistance to neomycin"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3003539","l":"Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to hygromycin B","na":1,"nb":1,"a":[["ARO%3A3003539","Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to hygromycin B"]],"b":[["antibacterial/hygromycin-b.html","hygromycin B"]]},{"id":"ARO:3003540","l":"Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to hygromycin B","na":1,"nb":1,"a":[["ARO%3A3003540","Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to hygromycin B"]],"b":[["antibacterial/hygromycin-b.html","hygromycin B"]]},{"id":"ARO:3003541","l":"Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3003541","Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003542","l":"Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to kanamycin A","na":1,"nb":1,"a":[["ARO%3A3003542","Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to kanamycin A"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003543","l":"Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to kanamycin A","na":1,"nb":1,"a":[["ARO%3A3003543","Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to kanamycin A"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003544","l":"Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to neomycin","na":1,"nb":1,"a":[["ARO%3A3003544","Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to neomycin"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3003545","l":"Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to neomycin","na":1,"nb":1,"a":[["ARO%3A3003545","Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to neomycin"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3003546","l":"Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to viomycin","na":1,"nb":1,"a":[["ARO%3A3003546","Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to viomycin"]],"b":[["antimycobacterial/viomycin.html","viomycin"]]},{"id":"ARO:3003547","l":"Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to viomycin","na":1,"nb":1,"a":[["ARO%3A3003547","Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to viomycin"]],"b":[["antimycobacterial/viomycin.html","viomycin"]]},{"id":"ARO:3003551","l":"emeA","na":1,"nb":1,"a":[["ARO%3A3003551","emeA"]],"b":[["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3003552","l":"fusB","na":1,"nb":1,"a":[["ARO%3A3003552","fusB"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3003554","l":"tcmA","na":1,"nb":1,"a":[["ARO%3A3003554","tcmA"]],"b":[["antibacterial/tetracenomycin-c.html","tetracenomycin C"]]},{"id":"ARO:3003558","l":"y56 beta-lactamase","na":1,"nb":1,"a":[["ARO%3A3003558","y56 beta-lactamase"]],"b":[["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3003562","l":"blaF","na":1,"nb":1,"a":[["ARO%3A3003562","blaF"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3003576","l":"eptA","na":1,"nb":1,"a":[["ARO%3A3003576","eptA"]],"b":[["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3003577","l":"ugd","na":1,"nb":1,"a":[["ARO%3A3003577","ugd"]],"b":[["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3003678","l":"TriABC-OpmH","na":1,"nb":1,"a":[["ARO%3A3003678","TriABC-OpmH"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3003685","l":"Pseudomonas aeruginosa parE conferring resistance to fluoroquinolones","na":1,"nb":1,"a":[["ARO%3A3003685","Pseudomonas aeruginosa parE conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003691","l":"MexJK-OpmH","na":1,"nb":1,"a":[["ARO%3A3003691","MexJK-OpmH"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3003729","l":"Staphylococcus aureus ileS with mutation conferring resistance to mupirocin","na":1,"nb":1,"a":[["ARO%3A3003729","Staphylococcus aureus ileS with mutation conferring resistance to mupirocin"]],"b":[["antibacterial/mupirocin.html","mupirocin"]]},{"id":"ARO:3003730","l":"Bifidobacterium bifidum ileS conferring resistance to mupirocin","na":1,"nb":1,"a":[["ARO%3A3003730","Bifidobacterium bifidum ileS conferring resistance to mupirocin"]],"b":[["antibacterial/mupirocin.html","mupirocin"]]},{"id":"ARO:3003731","l":"fusD","na":1,"nb":1,"a":[["ARO%3A3003731","fusD"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3003733","l":"fusC","na":1,"nb":1,"a":[["ARO%3A3003733","fusC"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3003735","l":"Staphylococcus aureus fusA with mutation conferring resistance to fusidic acid","na":1,"nb":1,"a":[["ARO%3A3003735","Staphylococcus aureus fusA with mutation conferring resistance to fusidic acid"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3003737","l":"Staphylococcus aureus fusE with mutation conferring resistance to fusidic acid","na":1,"nb":1,"a":[["ARO%3A3003737","Staphylococcus aureus fusE with mutation conferring resistance to fusidic acid"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3003741","l":"mphE","na":1,"nb":1,"a":[["ARO%3A3003741","mphE"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003744","l":"vatF","na":1,"nb":1,"a":[["ARO%3A3003744","vatF"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3003745","l":"mef(C)","na":1,"nb":1,"a":[["ARO%3A3003745","mef(C)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"]]},{"id":"ARO:3003748","l":"oleC","na":1,"nb":1,"a":[["ARO%3A3003748","oleC"]],"b":[["antibacterial/oleandomycin.html","oleandomycin"]]},{"id":"ARO:3003756","l":"Escherichia coli nfsB with mutation conferring resistance to nitrofurantoin","na":1,"nb":1,"a":[["ARO%3A3003756","Escherichia coli nfsB with mutation conferring resistance to nitrofurantoin"]],"b":[["antibacterial/nitrofurantoin.html","nitrofurantoin"]]},{"id":"ARO:3003760","l":"Enterococcus faecalis cls with mutation conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003760","Enterococcus faecalis cls with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003761","l":"eatAv","na":1,"nb":1,"a":[["ARO%3A3003761","eatAv"]],"b":[["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"ARO:3003762","l":"lnuE","na":1,"nb":1,"a":[["ARO%3A3003762","lnuE"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3003767","l":"mphM","na":1,"nb":1,"a":[["ARO%3A3003767","mphM"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003769","l":"Staphylococcus aureus mprF","na":1,"nb":1,"a":[["ARO%3A3003769","Staphylococcus aureus mprF"]],"b":[["antibacterial/defensin.html","defensin"]]},{"id":"ARO:3003770","l":"Listeria monocytogenes mprF","na":1,"nb":1,"a":[["ARO%3A3003770","Listeria monocytogenes mprF"]],"b":[["antibacterial/defensin.html","defensin"]]},{"id":"ARO:3003772","l":"Brucella suis mprF","na":1,"nb":1,"a":[["ARO%3A3003772","Brucella suis mprF"]],"b":[["antibacterial/defensin.html","defensin"]]},{"id":"ARO:3003773","l":"Clostridium perfringens mprF","na":1,"nb":1,"a":[["ARO%3A3003773","Clostridium perfringens mprF"]],"b":[["antibacterial/defensin.html","defensin"]]},{"id":"ARO:3003774","l":"Streptococcus agalactiae mprF","na":1,"nb":1,"a":[["ARO%3A3003774","Streptococcus agalactiae mprF"]],"b":[["antibacterial/defensin.html","defensin"]]},{"id":"ARO:3003775","l":"Escherichia coli murA with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003775","Escherichia coli murA with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003776","l":"Staphylococcus aureus murA with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003776","Staphylococcus aureus murA with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003777","l":"Borreliella burgdorferi murA with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003777","Borreliella burgdorferi murA with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003778","l":"Mycolicibacterium smegmatis ndh with mutation conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3003778","Mycolicibacterium smegmatis ndh with mutation conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3003779","l":"Mycobacterium tuberculosis variant bovis ndh with mutation conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3003779","Mycobacterium tuberculosis variant bovis ndh with mutation conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3003784","l":"Mycobacterium tuberculosis intrinsic murA conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003784","Mycobacterium tuberculosis intrinsic murA conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003785","l":"Chlamydia trachomatis intrinsic murA conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003785","Chlamydia trachomatis intrinsic murA conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003788","l":"Bacillus subtilis pgsA with mutation conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003788","Bacillus subtilis pgsA with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003789","l":"Campylobacter jejuni gyrA conferring resistance to fluoroquinolones","na":1,"nb":1,"a":[["ARO%3A3003789","Campylobacter jejuni gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003790","l":"Enterococcus faecium liaF mutant conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003790","Enterococcus faecium liaF mutant conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003791","l":"Enterococcus faecalis liaS mutant conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003791","Enterococcus faecalis liaS mutant conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003792","l":"Enterococcus faecalis liaR mutant conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003792","Enterococcus faecalis liaR mutant conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003794","l":"Staphylococcus aureus walK with mutation conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003794","Staphylococcus aureus walK with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003797","l":"Enterococcus faecalis YybT with mutation conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003797","Enterococcus faecalis YybT with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003800","l":"Enterococcus faecalis gdpD with mutation conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003800","Enterococcus faecalis gdpD with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003801","l":"bcr-1","na":1,"nb":1,"a":[["ARO%3A3003801","bcr-1"]],"b":[["antibacterial/bicozamycin.html","bicozamycin"]]},{"id":"ARO:3003803","l":"Staphylococcus aureus agrA with mutation conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003803","Staphylococcus aureus agrA with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003805","l":"Enterococcus faecalis gshF with mutation conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003805","Enterococcus faecalis gshF with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003809","l":"Acinetobacter baumannii OprD conferring resistance to imipenem","na":1,"nb":1,"a":[["ARO%3A3003809","Acinetobacter baumannii OprD conferring resistance to imipenem"]],"b":[["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3003813","l":"Enterococcus faecalis drmA with mutation conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003813","Enterococcus faecalis drmA with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003815","l":"Enterococcus faecalis YvlB with mutation conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003815","Enterococcus faecalis YvlB with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003830","l":"Aminocoumarin resistant alaS","na":1,"nb":1,"a":[["ARO%3A3003830","Aminocoumarin resistant alaS"]],"b":[["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3003835","l":"cdeA","na":1,"nb":1,"a":[["ARO%3A3003835","cdeA"]],"b":[["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3003840","l":"aminocoumarin resistant cysB","na":1,"nb":1,"a":[["ARO%3A3003840","aminocoumarin resistant cysB"]],"b":[["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3003844","l":"mfd","na":1,"nb":1,"a":[["ARO%3A3003844","mfd"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003889","l":"Escherichia coli GlpT with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003889","Escherichia coli GlpT with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003890","l":"Escherichia coli UhpT with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003890","Escherichia coli UhpT with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003900","l":"Escherichia coli cyaA with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003900","Escherichia coli cyaA with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003901","l":"Staphylococcus aureus GlpT with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003901","Staphylococcus aureus GlpT with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003902","l":"Staphylococcus aureus UhpT with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003902","Staphylococcus aureus UhpT with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003917","l":"Staphylococcus aureus menA with mutation conferring resistance to lysocin","na":1,"nb":1,"a":[["ARO%3A3003917","Staphylococcus aureus menA with mutation conferring resistance to lysocin"]],"b":[["antibacterial/lysocin-e.html","lysocin E"]]},{"id":"ARO:3003918","l":"apmA","na":1,"nb":1,"a":[["ARO%3A3003918","apmA"]],"b":[["antibacterial/apramycin.html","apramycin"]]},{"id":"ARO:3003920","l":"pgpB","na":1,"nb":1,"a":[["ARO%3A3003920","pgpB"]],"b":[["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3003924","l":"Haemophilus parainfluenzae gyrA conferring resistance to fluoroquinolones","na":1,"nb":1,"a":[["ARO%3A3003924","Haemophilus parainfluenzae gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003925","l":"Haemophilus parainfluenzae parC conferring resistance to fluoroquinolones","na":1,"nb":1,"a":[["ARO%3A3003925","Haemophilus parainfluenzae parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003930","l":"rpsJ","na":1,"nb":1,"a":[["ARO%3A3003930","rpsJ"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003950","l":"msbA","na":1,"nb":1,"a":[["ARO%3A3003950","msbA"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3003952","l":"YojI","na":1,"nb":1,"a":[["ARO%3A3003952","YojI"]],"b":[["antibacterial/microcin-j25.html","microcin J25"]]},{"id":"ARO:3003954","l":"efmA","na":1,"nb":1,"a":[["ARO%3A3003954","efmA"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003970","l":"D-Ala-D-Ala ligase","na":1,"nb":1,"a":[["ARO%3A3003970","D-Ala-D-Ala ligase"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3003977","l":"Halobacterium salinarum 16S rRNA mutation conferring resistance to pactamycin","na":1,"nb":1,"a":[["ARO%3A3003977","Halobacterium salinarum 16S rRNA mutation conferring resistance to pactamycin"]],"b":[["antibacterial/pactamycin.html","pactamycin"]]},{"id":"ARO:3003978","l":"Chlamydomonas reinhardtii 16S rRNA (rrnS) mutation conferring resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3003978","Chlamydomonas reinhardtii 16S rRNA (rrnS) mutation conferring resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003980","l":"tetA(58)","na":1,"nb":1,"a":[["ARO%3A3003980","tetA(58)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003981","l":"tetB(58)","na":1,"nb":1,"a":[["ARO%3A3003981","tetB(58)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003982","l":"LlmA 23S ribosomal RNA methyltransferase","na":1,"nb":1,"a":[["ARO%3A3003982","LlmA 23S ribosomal RNA methyltransferase"]],"b":[["antibacterial/clindamycin.html","clindamycin"]]},{"id":"ARO:3003984","l":"BahA","na":1,"nb":1,"a":[["ARO%3A3003984","BahA"]],"b":[["antibacterial/bacitracin.html","bacitracin"]]},{"id":"ARO:3003986","l":"TaeA","na":1,"nb":1,"a":[["ARO%3A3003986","TaeA"]],"b":[["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"ARO:3003987","l":"VatI","na":1,"nb":1,"a":[["ARO%3A3003987","VatI"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3003988","l":"","na":1,"nb":1,"a":[["ARO%3A3003988","AAC(2')-IIb"]],"b":[["antifungal/kasugamycin.html","kasugamycin"]]},{"id":"ARO:3003989","l":"","na":1,"nb":1,"a":[["ARO%3A3003989","AAC(6')-34"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004031","l":"tetAB(46)","na":1,"nb":1,"a":[["ARO%3A3004031","tetAB(46)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004034","l":"tetAB(60)","na":1,"nb":1,"a":[["ARO%3A3004034","tetAB(60)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004038","l":"Pseudomonas aeruginosa emrE","na":1,"nb":1,"a":[["ARO%3A3004038","Pseudomonas aeruginosa emrE"]],"b":[["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3004039","l":"Escherichia coli emrE","na":1,"nb":1,"a":[["ARO%3A3004039","Escherichia coli emrE"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004041","l":"Klebsiella pneumoniae acrA","na":1,"nb":1,"a":[["ARO%3A3004041","Klebsiella pneumoniae acrA"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004042","l":"Enterobacter cloacae acrA","na":1,"nb":1,"a":[["ARO%3A3004042","Enterobacter cloacae acrA"]],"b":[["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:3004045","l":"Escherichia coli fabI mutations conferring resistance to isoniazid and triclosan","na":1,"nb":1,"a":[["ARO%3A3004045","Escherichia coli fabI mutations conferring resistance to isoniazid and triclosan"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3004046","l":"kdpDE","na":1,"nb":1,"a":[["ARO%3A3004046","kdpDE"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004049","l":"Escherichia coli fabG mutations conferring resistance to triclosan","na":1,"nb":1,"a":[["ARO%3A3004049","Escherichia coli fabG mutations conferring resistance to triclosan"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3004058","l":"Staphylococcus aureus 23S rRNA with mutation conferring resistance to linezolid","na":1,"nb":1,"a":[["ARO%3A3004058","Staphylococcus aureus 23S rRNA with mutation conferring resistance to linezolid"]],"b":[["antibacterial/linezolid.html","linezolid"]]},{"id":"ARO:3004083","l":"AcrEF-TolC confers resistance to ciprofloxacin","na":1,"nb":1,"a":[["ARO%3A3004083","AcrEF-TolC confers resistance to ciprofloxacin"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004085","l":"lnuG","na":1,"nb":1,"a":[["ARO%3A3004085","lnuG"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3004097","l":"Streptococcus mitis CdsA with mutation conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3004097","Streptococcus mitis CdsA with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3004105","l":"TMB-1","na":1,"nb":1,"a":[["ARO%3A3004105","TMB-1"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3004106","l":"TMB-2","na":1,"nb":1,"a":[["ARO%3A3004106","TMB-2"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3004111","l":"FosA6","na":1,"nb":1,"a":[["ARO%3A3004111","FosA6"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004113","l":"FosA7","na":1,"nb":1,"a":[["ARO%3A3004113","FosA7"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004124","l":"Moraxella catarrhalis M35","na":1,"nb":1,"a":[["ARO%3A3004124","Moraxella catarrhalis M35"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3004132","l":"Chlamydomonas reinhardtii 23S rRNA with mutation conferring resistance to erythromycin","na":1,"nb":1,"a":[["ARO%3A3004132","Chlamydomonas reinhardtii 23S rRNA with mutation conferring resistance to erythromycin"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004133","l":"Brachyspira hyodysenteriae 23S rRNA with mutation conferring resistance to tylosin","na":1,"nb":1,"a":[["ARO%3A3004133","Brachyspira hyodysenteriae 23S rRNA with mutation conferring resistance to tylosin"]],"b":[["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3004134","l":"Helicobacter pylori 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004134","Helicobacter pylori 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004135","l":"Mycobacterium tuberculosis iniB with mutation conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3004135","Mycobacterium tuberculosis iniB with mutation conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3004149","l":"Escherichia coli 23S rRNA with mutation conferring resistance to clindamycin","na":1,"nb":1,"a":[["ARO%3A3004149","Escherichia coli 23S rRNA with mutation conferring resistance to clindamycin"]],"b":[["antibacterial/clindamycin.html","clindamycin"]]},{"id":"ARO:3004150","l":"Escherichia coli 23S rRNA with mutation conferring resistance to chloramphenicol","na":1,"nb":1,"a":[["ARO%3A3004150","Escherichia coli 23S rRNA with mutation conferring resistance to chloramphenicol"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004153","l":"Mycobacterium tuberculosis thyA with mutation conferring resistance to para-aminosalicylic acid","na":1,"nb":1,"a":[["ARO%3A3004153","Mycobacterium tuberculosis thyA with mutation conferring resistance to para-aminosalicylic acid"]],"b":[["antimycobacterial/4-aminosalicylic-acid.html","4-aminosalicylic acid"]]},{"id":"ARO:3004157","l":"Mycobacterium tuberculosis folC with mutation conferring resistance to para-aminosalicylic acid","na":1,"nb":1,"a":[["ARO%3A3004157","Mycobacterium tuberculosis folC with mutation conferring resistance to para-aminosalicylic acid"]],"b":[["antimycobacterial/4-aminosalicylic-acid.html","4-aminosalicylic acid"]]},{"id":"ARO:3004159","l":"Mycoplasma gallisepticum 23S rRNA mutation conferring resistance to pleuromutilin antibiotics","na":1,"nb":1,"a":[["ARO%3A3004159","Mycoplasma gallisepticum 23S rRNA mutation conferring resistance to pleuromutilin antibiotics"]],"b":[["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"ARO:3004160","l":"Escherichia coli 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004160","Escherichia coli 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004161","l":"Propionibacteria 23S rRNA with mutation conferring resistance to macrolide antibiotics","na":1,"nb":1,"a":[["ARO%3A3004161","Propionibacteria 23S rRNA with mutation conferring resistance to macrolide antibiotics"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004163","l":"Mycobacteroides abscessus 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004163","Mycobacteroides abscessus 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004164","l":"Mycobacterium avium 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004164","Mycobacterium avium 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004165","l":"Mycobacteroides chelonae 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004165","Mycobacteroides chelonae 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004166","l":"Mycobacterium intracellulare 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004166","Mycobacterium intracellulare 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004167","l":"Mycobacterium intracellulare 23S rRNA with mutation conferring resistance to azithromycin","na":1,"nb":1,"a":[["ARO%3A3004167","Mycobacterium intracellulare 23S rRNA with mutation conferring resistance to azithromycin"]],"b":[["antibacterial/azithromycin.html","azithromycin"]]},{"id":"ARO:3004168","l":"Mycobacterium kansasii 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004168","Mycobacterium kansasii 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004169","l":"Mycolicibacterium smegmatis 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004169","Mycolicibacterium smegmatis 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004171","l":"Streptomyces ambofaciens 23S rRNA with mutation conferring resistance to macrolide antibiotics","na":1,"nb":1,"a":[["ARO%3A3004171","Streptomyces ambofaciens 23S rRNA with mutation conferring resistance to macrolide antibiotics"]],"b":[["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3004173","l":"Escherichia coli 23S rRNA with mutation conferring resistance to oxazolidinone antibiotics","na":1,"nb":1,"a":[["ARO%3A3004173","Escherichia coli 23S rRNA with mutation conferring resistance to oxazolidinone antibiotics"]],"b":[["antibacterial/linezolid.html","linezolid"]]},{"id":"ARO:3004179","l":"Mycoplasma pneumoniae 23S rRNA mutation conferring resistance to erythromycin","na":1,"nb":1,"a":[["ARO%3A3004179","Mycoplasma pneumoniae 23S rRNA mutation conferring resistance to erythromycin"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004180","l":"Halobacterium halobium 23S rRNA mutation conferring resistance to chloramphenicol","na":1,"nb":1,"a":[["ARO%3A3004180","Halobacterium halobium 23S rRNA mutation conferring resistance to chloramphenicol"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004184","l":"Mycobacterium tuberculosis ribD with mutation conferring resistance to para-aminosalicylic acid","na":1,"nb":1,"a":[["ARO%3A3004184","Mycobacterium tuberculosis ribD with mutation conferring resistance to para-aminosalicylic acid"]],"b":[["antimycobacterial/4-aminosalicylic-acid.html","4-aminosalicylic acid"]]},{"id":"ARO:3004185","l":"mecD","na":1,"nb":1,"a":[["ARO%3A3004185","mecD"]],"b":[["antibacterial/methicillin.html","methicillin"]]},{"id":"ARO:3004289","l":"Vibrio cholerae varG","na":1,"nb":1,"a":[["ARO%3A3004289","Vibrio cholerae varG"]],"b":[["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3004291","l":"Rhodobacter sphaeroides ampC beta-lactamase","na":1,"nb":1,"a":[["ARO%3A3004291","Rhodobacter sphaeroides ampC beta-lactamase"]],"b":[["antibacterial/benzylpenicillin.html","benzylpenicillin"]]},{"id":"ARO:3004334","l":"Salmonella enterica gyrA with mutation conferring resistance to triclosan","na":1,"nb":1,"a":[["ARO%3A3004334","Salmonella enterica gyrA with mutation conferring resistance to triclosan"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3004335","l":"Escherichia coli gyrA with mutation conferring resistance to triclosan","na":1,"nb":1,"a":[["ARO%3A3004335","Escherichia coli gyrA with mutation conferring resistance to triclosan"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3004357","l":"catV","na":1,"nb":1,"a":[["ARO%3A3004357","catV"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004361","l":"sul4","na":1,"nb":1,"a":[["ARO%3A3004361","sul4"]],"b":[["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3004450","l":"TRU-1","na":1,"nb":1,"a":[["ARO%3A3004450","TRU-1"]],"b":[["antibacterial/cefalotin.html","cefalotin"]]},{"id":"ARO:3004451","l":"Agrobacterium fabrum chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004451","Agrobacterium fabrum chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004452","l":"Alkalihalobacillus clausii chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004452","Alkalihalobacillus clausii chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004454","l":"Campylobacter coli chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004454","Campylobacter coli chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004455","l":"Streptococcus suis chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004455","Streptococcus suis chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004456","l":"Enterococcus faecium chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004456","Enterococcus faecium chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004457","l":"Staphylococcus intermedius chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004457","Staphylococcus intermedius chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004458","l":"Enterococcus faecalis chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004458","Enterococcus faecalis chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004460","l":"Vibrio anguillarum chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004460","Vibrio anguillarum chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004480","l":"Bifidobacterium adolescentis rpoB mutants conferring resistance to rifampicin","na":1,"nb":1,"a":[["ARO%3A3004480","Bifidobacterium adolescentis rpoB mutants conferring resistance to rifampicin"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3004498","l":"dfrB4","na":1,"nb":1,"a":[["ARO%3A3004498","dfrB4"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004539","l":"mphH","na":1,"nb":1,"a":[["ARO%3A3004539","mphH"]],"b":[["antibacterial/azithromycin.html","azithromycin"]]},{"id":"ARO:3004542","l":"mphN","na":1,"nb":1,"a":[["ARO%3A3004542","mphN"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004543","l":"mphO","na":1,"nb":1,"a":[["ARO%3A3004543","mphO"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004546","l":"Campylobacter jejuni 23S rRNA with mutation conferring resistance to erythromycin","na":1,"nb":1,"a":[["ARO%3A3004546","Campylobacter jejuni 23S rRNA with mutation conferring resistance to erythromycin"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004547","l":"dfrA6","na":1,"nb":1,"a":[["ARO%3A3004547","dfrA6"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004548","l":"dfrA9","na":1,"nb":1,"a":[["ARO%3A3004548","dfrA9"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004549","l":"dfrB5","na":1,"nb":1,"a":[["ARO%3A3004549","dfrB5"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004550","l":"dfrA27","na":1,"nb":1,"a":[["ARO%3A3004550","dfrA27"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004551","l":"dfrA28","na":1,"nb":1,"a":[["ARO%3A3004551","dfrA28"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004552","l":"dfrA30","na":1,"nb":1,"a":[["ARO%3A3004552","dfrA30"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004554","l":"dfrA29","na":1,"nb":1,"a":[["ARO%3A3004554","dfrA29"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004555","l":"dfrA32","na":1,"nb":1,"a":[["ARO%3A3004555","dfrA32"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004556","l":"dfrB7","na":1,"nb":1,"a":[["ARO%3A3004556","dfrB7"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004561","l":"Clostridioides difficile murG with mutation conferring resistance to vancomycin","na":1,"nb":1,"a":[["ARO%3A3004561","Clostridioides difficile murG with mutation conferring resistance to vancomycin"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3004568","l":"dfrA18","na":1,"nb":1,"a":[["ARO%3A3004568","dfrA18"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004573","l":"Acinetobacter baumannii AbaF","na":1,"nb":1,"a":[["ARO%3A3004573","Acinetobacter baumannii AbaF"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004601","l":"LnuP","na":1,"nb":1,"a":[["ARO%3A3004601","LnuP"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3004605","l":"ermZ","na":1,"nb":1,"a":[["ARO%3A3004605","ermZ"]],"b":[["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3004608","l":"EreD","na":1,"nb":1,"a":[["ARO%3A3004608","EreD"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004622","l":"QnrS10","na":1,"nb":1,"a":[["ARO%3A3004622","QnrS10"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004624","l":"QnrS11","na":1,"nb":1,"a":[["ARO%3A3004624","QnrS11"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004625","l":"QnrS12","na":1,"nb":1,"a":[["ARO%3A3004625","QnrS12"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004627","l":"QnrS15","na":1,"nb":1,"a":[["ARO%3A3004627","QnrS15"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004628","l":"","na":1,"nb":1,"a":[["ARO%3A3004628","AAC(2')-IIa"]],"b":[["antifungal/kasugamycin.html","kasugamycin"]]},{"id":"ARO:3004630","l":"Mycoplasma genitalium parC mutations confers resistance to Moxifloxacin","na":1,"nb":1,"a":[["ARO%3A3004630","Mycoplasma genitalium parC mutations confers resistance to Moxifloxacin"]],"b":[["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3004631","l":"Mycoplasma genitalium gyrA mutation confers resistance to fluoroquinolones","na":1,"nb":1,"a":[["ARO%3A3004631","Mycoplasma genitalium gyrA mutation confers resistance to fluoroquinolones"]],"b":[["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3004636","l":"qnrE1","na":1,"nb":1,"a":[["ARO%3A3004636","qnrE1"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004637","l":"qnrE2","na":1,"nb":1,"a":[["ARO%3A3004637","qnrE2"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004640","l":"dfrA15b","na":1,"nb":1,"a":[["ARO%3A3004640","dfrA15b"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004642","l":"dfrA3b","na":1,"nb":1,"a":[["ARO%3A3004642","dfrA3b"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004643","l":"Erm(K)","na":1,"nb":1,"a":[["ARO%3A3004643","Erm(K)"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004644","l":"dfrA6 from Proteus mirabilis","na":1,"nb":1,"a":[["ARO%3A3004644","dfrA6 from Proteus mirabilis"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004645","l":"dfrI","na":1,"nb":1,"a":[["ARO%3A3004645","dfrI"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004651","l":"lin","na":1,"nb":1,"a":[["ARO%3A3004651","lin"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3004653","l":"tetR(G)","na":1,"nb":1,"a":[["ARO%3A3004653","tetR(G)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004655","l":"nimB","na":1,"nb":1,"a":[["ARO%3A3004655","nimB"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3004656","l":"catII from Escherichia coli K-12","na":1,"nb":1,"a":[["ARO%3A3004656","catII from Escherichia coli K-12"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004657","l":"catA4","na":1,"nb":1,"a":[["ARO%3A3004657","catA4"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004658","l":"catA8","na":1,"nb":1,"a":[["ARO%3A3004658","catA8"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004659","l":"Mef(En2)","na":1,"nb":1,"a":[["ARO%3A3004659","Mef(En2)"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3004660","l":"catB11","na":1,"nb":1,"a":[["ARO%3A3004660","catB11"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004661","l":"Staphylococcus aureus FosB","na":1,"nb":1,"a":[["ARO%3A3004661","Staphylococcus aureus FosB"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004663","l":"FusF","na":1,"nb":1,"a":[["ARO%3A3004663","FusF"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3004665","l":"cmlA8","na":1,"nb":1,"a":[["ARO%3A3004665","cmlA8"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004669","l":"emtA","na":1,"nb":1,"a":[["ARO%3A3004669","emtA"]],"b":[["antibacterial/evernimicin.html","evernimicin"]]},{"id":"ARO:3004670","l":"FosB1","na":1,"nb":1,"a":[["ARO%3A3004670","FosB1"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004671","l":"FosB4","na":1,"nb":1,"a":[["ARO%3A3004671","FosB4"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004672","l":"FosB5","na":1,"nb":1,"a":[["ARO%3A3004672","FosB5"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004673","l":"FosB6","na":1,"nb":1,"a":[["ARO%3A3004673","FosB6"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004674","l":"FosD","na":1,"nb":1,"a":[["ARO%3A3004674","FosD"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004681","l":"Clostridioides difficile rpoC with mutation conferring resistance to vancomycin","na":1,"nb":1,"a":[["ARO%3A3004681","Clostridioides difficile rpoC with mutation conferring resistance to vancomycin"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3004683","l":"aadS","na":1,"nb":1,"a":[["ARO%3A3004683","aadS"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004699","l":"sta","na":1,"nb":1,"a":[["ARO%3A3004699","sta"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"]]},{"id":"ARO:3004730","l":"tva(A)","na":1,"nb":1,"a":[["ARO%3A3004730","tva(A)"]],"b":[["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"ARO:3004835","l":"Neisseria gonorrhoeae pilQ gene conferring resistance to beta-lactam","na":1,"nb":1,"a":[["ARO%3A3004835","Neisseria gonorrhoeae pilQ gene conferring resistance to beta-lactam"]],"b":[["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3004836","l":"Neisseria gonorrhoeae 23S rRNA with mutation conferring resistance to azithromycin","na":1,"nb":1,"a":[["ARO%3A3004836","Neisseria gonorrhoeae 23S rRNA with mutation conferring resistance to azithromycin"]],"b":[["antibacterial/azithromycin.html","azithromycin"]]},{"id":"ARO:3004859","l":"Neisseria gonorrhoeae gyrB conferring resistance to zoliflodacin","na":1,"nb":1,"a":[["ARO%3A3004859","Neisseria gonorrhoeae gyrB conferring resistance to zoliflodacin"]],"b":[["antibacterial/zoliflodacin.html","zoliflodacin"]]},{"id":"ARO:3004860","l":"Burkholderia dolosa gyrA conferring resistance to fluoroquinolones","na":1,"nb":1,"a":[["ARO%3A3004860","Burkholderia dolosa gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004873","l":"Neisseria gonorrhoeae folP with mutation conferring resistance to sulfonamides","na":1,"nb":1,"a":[["ARO%3A3004873","Neisseria gonorrhoeae folP with mutation conferring resistance to sulfonamides"]],"b":[["antibacterial/sulfisoxazole.html","sulfisoxazole"]]},{"id":"ARO:3004876","l":"Mycobacterium tuberculosis inhA mutations conferring resistance to ethionamide","na":1,"nb":1,"a":[["ARO%3A3004876","Mycobacterium tuberculosis inhA mutations conferring resistance to ethionamide"]],"b":[["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"ARO:3004921","l":"Mycobacterium tuberculosis ahpC mutations confer resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004921","Mycobacterium tuberculosis ahpC mutations confer resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004922","l":"Mycobacterium tuberculosis fabG1 mutations confer resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004922","Mycobacterium tuberculosis fabG1 mutations confer resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004923","l":"Mycobacterium tuberculosis furA mutations confer resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004923","Mycobacterium tuberculosis furA mutations confer resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004924","l":"Mycobacterium tuberculosis inbR mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004924","Mycobacterium tuberculosis inbR mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004925","l":"Mycobacterium tuberculosis mshA mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004925","Mycobacterium tuberculosis mshA mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004927","l":"Mycobacterium tuberculosis mshC mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004927","Mycobacterium tuberculosis mshC mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004928","l":"Mycobacterium tuberculosis mymA mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004928","Mycobacterium tuberculosis mymA mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004929","l":"Mycobacterium tuberculosis mmaA3 mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004929","Mycobacterium tuberculosis mmaA3 mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004931","l":"Mycobacterium tuberculosis nudC mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004931","Mycobacterium tuberculosis nudC mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004932","l":"Mycobacterium tuberculosis sigI mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004932","Mycobacterium tuberculosis sigI mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004933","l":"Mycobacterium tuberculosis fabG1 mutation conferring resistance to ethionamide","na":1,"nb":1,"a":[["ARO%3A3004933","Mycobacterium tuberculosis fabG1 mutation conferring resistance to ethionamide"]],"b":[["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"ARO:3004934","l":"Mycobacterium tuberculosis mshC mutations conferring resistance to ethionamide","na":1,"nb":1,"a":[["ARO%3A3004934","Mycobacterium tuberculosis mshC mutations conferring resistance to ethionamide"]],"b":[["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"ARO:3004935","l":"Mycobacterium tuberculosis nudC mutations conferring resistance to ethionamide","na":1,"nb":1,"a":[["ARO%3A3004935","Mycobacterium tuberculosis nudC mutations conferring resistance to ethionamide"]],"b":[["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"ARO:3004941","l":"Mycobacterium tuberculosis ddlA mutations confer resistance to cycloserine","na":1,"nb":1,"a":[["ARO%3A3004941","Mycobacterium tuberculosis ddlA mutations confer resistance to cycloserine"]],"b":[["antimycobacterial/d-cycloserine.html","D-cycloserine"]]},{"id":"ARO:3004945","l":"Mycobacterium tuberculosis ald mutations confer resistance to cycloserine","na":1,"nb":1,"a":[["ARO%3A3004945","Mycobacterium tuberculosis ald mutations confer resistance to cycloserine"]],"b":[["antimycobacterial/d-cycloserine.html","D-cycloserine"]]},{"id":"ARO:3004947","l":"Mycobacterium tuberculosis alr with mutation conferring resistance to cycloserine","na":1,"nb":1,"a":[["ARO%3A3004947","Mycobacterium tuberculosis alr with mutation conferring resistance to cycloserine"]],"b":[["antimycobacterial/d-cycloserine.html","D-cycloserine"]]},{"id":"ARO:3004950","l":"Mycobacterium tuberculosis ubiA mutations confer resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3004950","Mycobacterium tuberculosis ubiA mutations confer resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3004951","l":"Mycobacterium tuberculosis aftA mutations confer resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3004951","Mycobacterium tuberculosis aftA mutations confer resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3004955","l":"Mycobacterium tuberculosis Rv0565c mutation conferring resistance to ethionamide","na":1,"nb":1,"a":[["ARO%3A3004955","Mycobacterium tuberculosis Rv0565c mutation conferring resistance to ethionamide"]],"b":[["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"ARO:3004956","l":"Neisseria gonorrhoeae rpld","na":1,"nb":1,"a":[["ARO%3A3004956","Neisseria gonorrhoeae rpld"]],"b":[["antibacterial/azithromycin.html","azithromycin"]]},{"id":"ARO:3004957","l":"Mycobacterium tuberculosis clpC1 with mutation conferring resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004957","Mycobacterium tuberculosis clpC1 with mutation conferring resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004963","l":"Mycobacterium tuberculosis eis mutations confer resistance to kanamycin","na":1,"nb":1,"a":[["ARO%3A3004963","Mycobacterium tuberculosis eis mutations confer resistance to kanamycin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004967","l":"Mycobacterium tuberculosis whib7 mutations confer resistance to kanamycin","na":1,"nb":1,"a":[["ARO%3A3004967","Mycobacterium tuberculosis whib7 mutations confer resistance to kanamycin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004968","l":"Mycobacterium tuberculosis whib7 mutation conferring resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3004968","Mycobacterium tuberculosis whib7 mutation conferring resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004971","l":"Mycobacterium tuberculosis Rv1258c mutations confer resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3004971","Mycobacterium tuberculosis Rv1258c mutations confer resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004975","l":"Mycobacterium tuberculosis ppsC mutations confer resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004975","Mycobacterium tuberculosis ppsC mutations confer resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004976","l":"Mycobacterium tuberculosis ppsD mutations confer resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004976","Mycobacterium tuberculosis ppsD mutations confer resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004977","l":"Mycobacterium tuberculosis gpsI with mutations conferring resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004977","Mycobacterium tuberculosis gpsI with mutations conferring resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004978","l":"Mycobacterium tuberculosis mas mutations confer resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004978","Mycobacterium tuberculosis mas mutations confer resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004981","l":"Mycobacterium tuberculosis Rv0191 mutations confer resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004981","Mycobacterium tuberculosis Rv0191 mutations confer resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004984","l":"Mycobacterium tuberculosis Rv1667 mutations confer resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004984","Mycobacterium tuberculosis Rv1667 mutations confer resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004987","l":"Mycobacterium tuberculosis Rv2731 mutations confer resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004987","Mycobacterium tuberculosis Rv2731 mutations confer resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004993","l":"Mycobacterium tuberculosis Rv3169 mutations confer resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004993","Mycobacterium tuberculosis Rv3169 mutations confer resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004999","l":"Mycobacterium tuberculosis rpoA mutations confer resistance to rifampicin","na":1,"nb":1,"a":[["ARO%3A3004999","Mycobacterium tuberculosis rpoA mutations confer resistance to rifampicin"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3005006","l":"tet(57)","na":1,"nb":1,"a":[["ARO%3A3005006","tet(57)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3005007","l":"QnrVC2","na":1,"nb":1,"a":[["ARO%3A3005007","QnrVC2"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3005024","l":"FosL1","na":1,"nb":1,"a":[["ARO%3A3005024","FosL1"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3005036","l":"BLMT","na":1,"nb":1,"a":[["ARO%3A3005036","BLMT"]],"b":[["antibacterial/bleomycin.html","bleomycin"]]},{"id":"ARO:3005043","l":"cmlA9","na":1,"nb":1,"a":[["ARO%3A3005043","cmlA9"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3005045","l":"SatA","na":1,"nb":1,"a":[["ARO%3A3005045","SatA"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"]]},{"id":"ARO:3005058","l":"mlaFEDB","na":1,"nb":1,"a":[["ARO%3A3005058","mlaFEDB"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3005083","l":"Thermus thermophilus 23s rRNA conferring resistance to pleuromutilin antibiotics","na":1,"nb":1,"a":[["ARO%3A3005083","Thermus thermophilus 23s rRNA conferring resistance to pleuromutilin antibiotics"]],"b":[["antibacterial/tiamulin.html","tiamulin"]]},{"id":"ARO:3005084","l":"dfrA31","na":1,"nb":1,"a":[["ARO%3A3005084","dfrA31"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005087","l":"msrF","na":1,"nb":1,"a":[["ARO%3A3005087","msrF"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3005088","l":"msrH","na":1,"nb":1,"a":[["ARO%3A3005088","msrH"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3005089","l":"mef(D)","na":1,"nb":1,"a":[["ARO%3A3005089","mef(D)"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3005099","l":"23S rRNA (adenine(2058)-N(6))-methyltransferase Erm(A)","na":1,"nb":1,"a":[["ARO%3A3005099","23S rRNA (adenine(2058)-N(6))-methyltransferase Erm(A)"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3005100","l":"FosB2","na":1,"nb":1,"a":[["ARO%3A3005100","FosB2"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3005102","l":"Mycobacterium tuberculosis katG mutations conferring resistance to prothionamide","na":1,"nb":1,"a":[["ARO%3A3005102","Mycobacterium tuberculosis katG mutations conferring resistance to prothionamide"]],"b":[["antibacterial/prothionamide.html","prothionamide"]]},{"id":"ARO:3005105","l":"Mycobacterium tuberculosis ethA mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3005105","Mycobacterium tuberculosis ethA mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3005106","l":"Mycobacterium tuberculosis ethA mutations conferring resistance to prothionamide","na":1,"nb":1,"a":[["ARO%3A3005106","Mycobacterium tuberculosis ethA mutations conferring resistance to prothionamide"]],"b":[["antibacterial/prothionamide.html","prothionamide"]]},{"id":"ARO:3005108","l":"Mycobacterium tuberculosis mshA mutations conferring resistance to prothionamide","na":1,"nb":1,"a":[["ARO%3A3005108","Mycobacterium tuberculosis mshA mutations conferring resistance to prothionamide"]],"b":[["antibacterial/prothionamide.html","prothionamide"]]},{"id":"ARO:3005162","l":"FosA7.5","na":1,"nb":1,"a":[["ARO%3A3005162","FosA7.5"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3005164","l":"dfrA35","na":1,"nb":1,"a":[["ARO%3A3005164","dfrA35"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005178","l":"Mycobacterium tuberculosis ethA mutations conferring resistance to perchlozone","na":1,"nb":1,"a":[["ARO%3A3005178","Mycobacterium tuberculosis ethA mutations conferring resistance to perchlozone"]],"b":[["antibacterial/perchlozone.html","perchlozone"]]},{"id":"ARO:3005255","l":"TEM-224","na":1,"nb":1,"a":[["ARO%3A3005255","TEM-224"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005256","l":"TEM-225","na":1,"nb":1,"a":[["ARO%3A3005256","TEM-225"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005257","l":"TEM-226","na":1,"nb":1,"a":[["ARO%3A3005257","TEM-226"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005258","l":"TEM-227","na":1,"nb":1,"a":[["ARO%3A3005258","TEM-227"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005259","l":"TEM-228","na":1,"nb":1,"a":[["ARO%3A3005259","TEM-228"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005260","l":"TEM-229","na":1,"nb":1,"a":[["ARO%3A3005260","TEM-229"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005261","l":"TEM-230","na":1,"nb":1,"a":[["ARO%3A3005261","TEM-230"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005262","l":"TEM-231","na":1,"nb":1,"a":[["ARO%3A3005262","TEM-231"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005263","l":"TEM-232","na":1,"nb":1,"a":[["ARO%3A3005263","TEM-232"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005264","l":"TEM-233","na":1,"nb":1,"a":[["ARO%3A3005264","TEM-233"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005265","l":"TEM-234","na":1,"nb":1,"a":[["ARO%3A3005265","TEM-234"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005266","l":"TEM-235","na":1,"nb":1,"a":[["ARO%3A3005266","TEM-235"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005267","l":"TEM-236","na":1,"nb":1,"a":[["ARO%3A3005267","TEM-236"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005268","l":"TEM-237","na":1,"nb":1,"a":[["ARO%3A3005268","TEM-237"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005269","l":"TEM-238","na":1,"nb":1,"a":[["ARO%3A3005269","TEM-238"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005270","l":"TEM-240","na":1,"nb":1,"a":[["ARO%3A3005270","TEM-240"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005271","l":"TEM-241","na":1,"nb":1,"a":[["ARO%3A3005271","TEM-241"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005272","l":"TEM-242","na":1,"nb":1,"a":[["ARO%3A3005272","TEM-242"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005273","l":"TEM-243","na":1,"nb":1,"a":[["ARO%3A3005273","TEM-243"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005334","l":"Trimethoprim-resistant dihydrofolate reductase DfrA42","na":1,"nb":1,"a":[["ARO%3A3005334","Trimethoprim-resistant dihydrofolate reductase DfrA42"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005345","l":"Trimethoprim-resistant dihydrofolate reductase DfrA43","na":1,"nb":1,"a":[["ARO%3A3005345","Trimethoprim-resistant dihydrofolate reductase DfrA43"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005346","l":"DfrA34","na":1,"nb":1,"a":[["ARO%3A3005346","DfrA34"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005347","l":"DfrA37","na":1,"nb":1,"a":[["ARO%3A3005347","DfrA37"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005348","l":"DfrA36","na":1,"nb":1,"a":[["ARO%3A3005348","DfrA36"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005349","l":"DfrA38","na":1,"nb":1,"a":[["ARO%3A3005349","DfrA38"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005350","l":"DfrB9","na":1,"nb":1,"a":[["ARO%3A3005350","DfrB9"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005351","l":"DfrA39","na":1,"nb":1,"a":[["ARO%3A3005351","DfrA39"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005354","l":"dfr22","na":1,"nb":1,"a":[["ARO%3A3005354","dfr22"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3006139","l":"TEM-98","na":1,"nb":1,"a":[["ARO%3A3006139","TEM-98"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3006140","l":"TEM-99","na":1,"nb":1,"a":[["ARO%3A3006140","TEM-99"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3006228","l":"ACC-1a","na":1,"nb":1,"a":[["ARO%3A3006228","ACC-1a"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3006229","l":"ACC-1b","na":1,"nb":1,"a":[["ARO%3A3006229","ACC-1b"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3006230","l":"ACC-1c","na":1,"nb":1,"a":[["ARO%3A3006230","ACC-1c"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3006231","l":"ACC-1d","na":1,"nb":1,"a":[["ARO%3A3006231","ACC-1d"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3006232","l":"ACC-7","na":1,"nb":1,"a":[["ARO%3A3006232","ACC-7"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3006233","l":"ACC-8","na":1,"nb":1,"a":[["ARO%3A3006233","ACC-8"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007003","l":"VHH-1","na":1,"nb":1,"a":[["ARO%3A3007003","VHH-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"]]},{"id":"ARO:3007004","l":"VHW-1","na":1,"nb":1,"a":[["ARO%3A3007004","VHW-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"]]},{"id":"ARO:3007005","l":"YEM-1","na":1,"nb":1,"a":[["ARO%3A3007005","YEM-1"]],"b":[["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3007012","l":"sepA","na":1,"nb":1,"a":[["ARO%3A3007012","sepA"]],"b":[["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3007013","l":"sdrM","na":1,"nb":1,"a":[["ARO%3A3007013","sdrM"]],"b":[["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3007014","l":"qacJ","na":1,"nb":1,"a":[["ARO%3A3007014","qacJ"]],"b":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"]]},{"id":"ARO:3007015","l":"qacG","na":1,"nb":1,"a":[["ARO%3A3007015","qacG"]],"b":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"]]},{"id":"ARO:3007019","l":"fexB","na":1,"nb":1,"a":[["ARO%3A3007019","fexB"]],"b":[["antibacterial/florfenicol.html","florfenicol"]]},{"id":"ARO:3007041","l":"Erm(52)","na":1,"nb":1,"a":[["ARO%3A3007041","Erm(52)"]],"b":[["antibacterial/clindamycin.html","clindamycin"]]},{"id":"ARO:3007043","l":"msr(I)","na":1,"nb":1,"a":[["ARO%3A3007043","msr(I)"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007052","l":"Helicobacter pylori gyrA conferring resistance to fluoroquinolones","na":1,"nb":1,"a":[["ARO%3A3007052","Helicobacter pylori gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"ARO:3007057","l":"Helicobacter pylori pbp3 conferring resistance to amoxicillin","na":1,"nb":1,"a":[["ARO%3A3007057","Helicobacter pylori pbp3 conferring resistance to amoxicillin"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3007058","l":"Helicobacter pylori pbp2 mutants conferring resistance to amoxicillin","na":1,"nb":1,"a":[["ARO%3A3007058","Helicobacter pylori pbp2 mutants conferring resistance to amoxicillin"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3007059","l":"Helicobacter pylori frxA mutation conferring resistance to metronidazole","na":1,"nb":1,"a":[["ARO%3A3007059","Helicobacter pylori frxA mutation conferring resistance to metronidazole"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007060","l":"Helicobacter pylori pbp1 mutants conferring resistance to amoxicillin","na":1,"nb":1,"a":[["ARO%3A3007060","Helicobacter pylori pbp1 mutants conferring resistance to amoxicillin"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3007061","l":"hp1165","na":1,"nb":1,"a":[["ARO%3A3007061","hp1165"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007069","l":"FosY","na":1,"nb":1,"a":[["ARO%3A3007069","FosY"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007073","l":"Bacillus subtilis rpoB mutants conferring resistance to rifampin","na":1,"nb":1,"a":[["ARO%3A3007073","Bacillus subtilis rpoB mutants conferring resistance to rifampin"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3007097","l":"FosM1","na":1,"nb":1,"a":[["ARO%3A3007097","FosM1"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007098","l":"FosM2","na":1,"nb":1,"a":[["ARO%3A3007098","FosM2"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007099","l":"FosM3","na":1,"nb":1,"a":[["ARO%3A3007099","FosM3"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007104","l":"nimA","na":1,"nb":1,"a":[["ARO%3A3007104","nimA"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007105","l":"nimC","na":1,"nb":1,"a":[["ARO%3A3007105","nimC"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007106","l":"nimD","na":1,"nb":1,"a":[["ARO%3A3007106","nimD"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007107","l":"nimE","na":1,"nb":1,"a":[["ARO%3A3007107","nimE"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007108","l":"nimF","na":1,"nb":1,"a":[["ARO%3A3007108","nimF"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007109","l":"nimG","na":1,"nb":1,"a":[["ARO%3A3007109","nimG"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007110","l":"nimH","na":1,"nb":1,"a":[["ARO%3A3007110","nimH"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007111","l":"nimI","na":1,"nb":1,"a":[["ARO%3A3007111","nimI"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007112","l":"nimJ","na":1,"nb":1,"a":[["ARO%3A3007112","nimJ"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007113","l":"nimK","na":1,"nb":1,"a":[["ARO%3A3007113","nimK"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007119","l":"tet(O/32/O)","na":1,"nb":1,"a":[["ARO%3A3007119","tet(O/32/O)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007120","l":"tet(O/M/O)","na":1,"nb":1,"a":[["ARO%3A3007120","tet(O/M/O)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007121","l":"tet(O/W)","na":1,"nb":1,"a":[["ARO%3A3007121","tet(O/W)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007122","l":"tet(O/W/32/O)","na":1,"nb":1,"a":[["ARO%3A3007122","tet(O/W/32/O)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007123","l":"tet(O/W/O)","na":1,"nb":1,"a":[["ARO%3A3007123","tet(O/W/O)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007124","l":"tet(W/32/O)","na":1,"nb":1,"a":[["ARO%3A3007124","tet(W/32/O)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007127","l":"Streptomyces lividans otr(A)","na":1,"nb":1,"a":[["ARO%3A3007127","Streptomyces lividans otr(A)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007185","l":"Mycobacterium tuberculosis Rv1258c mutations confer resistance to ethambutol and capreomycin","na":1,"nb":1,"a":[["ARO%3A3007185","Mycobacterium tuberculosis Rv1258c mutations confer resistance to ethambutol and capreomycin"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3007200","l":"PAM-2","na":1,"nb":1,"a":[["ARO%3A3007200","PAM-2"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007210","l":"Nocardia farcinica rox","na":1,"nb":1,"a":[["ARO%3A3007210","Nocardia farcinica rox"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3007368","l":"FosG","na":1,"nb":1,"a":[["ARO%3A3007368","FosG"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007369","l":"FosH","na":1,"nb":1,"a":[["ARO%3A3007369","FosH"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007370","l":"FosI","na":1,"nb":1,"a":[["ARO%3A3007370","FosI"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007371","l":"FosA8","na":1,"nb":1,"a":[["ARO%3A3007371","FosA8"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007372","l":"FosBx1","na":1,"nb":1,"a":[["ARO%3A3007372","FosBx1"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007381","l":"KPC-86","na":1,"nb":1,"a":[["ARO%3A3007381","KPC-86"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007383","l":"KPC-95","na":1,"nb":1,"a":[["ARO%3A3007383","KPC-95"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007401","l":"ANT(9)-Ib","na":1,"nb":1,"a":[["ARO%3A3007401","ANT(9)-Ib"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3007420","l":"Klebsiella pneumoniae lamB with mutations conferring resistance to ceftazidime-avibactam","na":1,"nb":1,"a":[["ARO%3A3007420","Klebsiella pneumoniae lamB with mutations conferring resistance to ceftazidime-avibactam"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007421","l":"Klebsiella pneumoniae PBP3 mutants conferring resistance to ceftazidime-avibactam","na":1,"nb":1,"a":[["ARO%3A3007421","Klebsiella pneumoniae PBP3 mutants conferring resistance to ceftazidime-avibactam"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007427","l":"ThfT","na":1,"nb":1,"a":[["ARO%3A3007427","ThfT"]],"b":[["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3007436","l":"KPC-96","na":1,"nb":1,"a":[["ARO%3A3007436","KPC-96"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007446","l":"KPC-100","na":1,"nb":1,"a":[["ARO%3A3007446","KPC-100"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007448","l":"TEM-246","na":1,"nb":1,"a":[["ARO%3A3007448","TEM-246"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007449","l":"KPC-97","na":1,"nb":1,"a":[["ARO%3A3007449","KPC-97"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007450","l":"KPC-98","na":1,"nb":1,"a":[["ARO%3A3007450","KPC-98"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007451","l":"TEM-247","na":1,"nb":1,"a":[["ARO%3A3007451","TEM-247"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007452","l":"KPC-99","na":1,"nb":1,"a":[["ARO%3A3007452","KPC-99"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007453","l":"TEM-244","na":1,"nb":1,"a":[["ARO%3A3007453","TEM-244"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007454","l":"TEM-245","na":1,"nb":1,"a":[["ARO%3A3007454","TEM-245"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007459","l":"EstT","na":1,"nb":1,"a":[["ARO%3A3007459","EstT"]],"b":[["antibacterial/tilmicosin.html","tilmicosin"]]},{"id":"ARO:3007476","l":"Mycobacterium abscessus atpE with mutation conferring resistance to bedaquiline","na":1,"nb":1,"a":[["ARO%3A3007476","Mycobacterium abscessus atpE with mutation conferring resistance to bedaquiline"]],"b":[["antimycobacterial/bedaquiline.html","bedaquiline"]]},{"id":"ARO:3007489","l":"dfrB10","na":1,"nb":1,"a":[["ARO%3A3007489","dfrB10"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3007490","l":"dfrB11","na":1,"nb":1,"a":[["ARO%3A3007490","dfrB11"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3007491","l":"Pseudomonas aeruginosa ampR with mutation conferring resistance to aztreonam","na":1,"nb":1,"a":[["ARO%3A3007491","Pseudomonas aeruginosa ampR with mutation conferring resistance to aztreonam"]],"b":[["antibacterial/aztreonam.html","aztreonam"]]},{"id":"ARO:3007492","l":"tet(62)","na":1,"nb":1,"a":[["ARO%3A3007492","tet(62)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007509","l":"Shigella flexneri acrA","na":1,"nb":1,"a":[["ARO%3A3007509","Shigella flexneri acrA"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3007515","l":"ANT(9)-Ic","na":1,"nb":1,"a":[["ARO%3A3007515","ANT(9)-Ic"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3007527","l":"Bacillus subtilis rpsE mutations conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3007527","Bacillus subtilis rpsE mutations conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3007536","l":"Mycobacterium tuberculosis 16S rRNA (rrnS) mutation conferring resistance to amikacin","na":1,"nb":1,"a":[["ARO%3A3007536","Mycobacterium tuberculosis 16S rRNA (rrnS) mutation conferring resistance to amikacin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3007537","l":"Mycobacterium tuberculosis 16S rRNA (rrnS) mutation conferring resistance to kanamycin","na":1,"nb":1,"a":[["ARO%3A3007537","Mycobacterium tuberculosis 16S rRNA (rrnS) mutation conferring resistance to kanamycin"]],"b":[["antibacterial/amikacin.html","amikacin"]]},{"id":"ARO:3007539","l":"APH(9)-Ic","na":1,"nb":1,"a":[["ARO%3A3007539","APH(9)-Ic"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3007544","l":"Erysipelothrix rhusiopathiae gyrA with mutation conferring resistance to enrofloxacin","na":1,"nb":1,"a":[["ARO%3A3007544","Erysipelothrix rhusiopathiae gyrA with mutation conferring resistance to enrofloxacin"]],"b":[["antibacterial/enrofloxacin.html","enrofloxacin"]]},{"id":"ARO:3007548","l":"Candida spp. FKS2 with mutations conferring resistance to echinocandin antibiotics","na":1,"nb":1,"a":[["ARO%3A3007548","Candida spp. FKS2 with mutations conferring resistance to echinocandin antibiotics"]],"b":[["antifungal/micafungin.html","micafungin"]]},{"id":"ARO:3007551","l":"Candida spp. Upc2 with mutations conferring resistance to azole antibiotics","na":1,"nb":1,"a":[["ARO%3A3007551","Candida spp. Upc2 with mutations conferring resistance to azole antibiotics"]],"b":[["antifungal/fluconazole.html","fluconazole"]]},{"id":"ARO:3007557","l":"Candida spp. FUR1 with mutations conferring resistance to 5-flucytosine","na":1,"nb":1,"a":[["ARO%3A3007557","Candida spp. FUR1 with mutations conferring resistance to 5-flucytosine"]],"b":[["antifungal/flucytosine.html","flucytosine"]]},{"id":"ARO:3007559","l":"Saccharomyces spp. FUR1 with mutations conferring resistance to 5-flucytosine","na":1,"nb":1,"a":[["ARO%3A3007559","Saccharomyces spp. FUR1 with mutations conferring resistance to 5-flucytosine"]],"b":[["antifungal/flucytosine.html","flucytosine"]]},{"id":"ARO:3007561","l":"OXA-1038","na":1,"nb":1,"a":[["ARO%3A3007561","OXA-1038"]],"b":[["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3007562","l":"OXA-1039","na":1,"nb":1,"a":[["ARO%3A3007562","OXA-1039"]],"b":[["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3007566","l":"Cryptococcus spp. AFR1","na":1,"nb":1,"a":[["ARO%3A3007566","Cryptococcus spp. AFR1"]],"b":[["antifungal/fluconazole.html","fluconazole"]]},{"id":"ARO:3007568","l":"Cryptococcus spp. UXS1 conferring resistance to 5-flucytosine via absence","na":1,"nb":1,"a":[["ARO%3A3007568","Cryptococcus spp. UXS1 conferring resistance to 5-flucytosine via absence"]],"b":[["antifungal/flucytosine.html","flucytosine"]]},{"id":"ARO:3007642","l":"Aspergillus spp. fcyB conferring resistance to 5-flucytosine via reduced permeability","na":1,"nb":1,"a":[["ARO%3A3007642","Aspergillus spp. fcyB conferring resistance to 5-flucytosine via reduced permeability"]],"b":[["antifungal/flucytosine.html","flucytosine"]]},{"id":"ARO:3007664","l":"Candida spp. High Osmolarity Glycerol 1 conferring resistance to caspofungin via absence","na":1,"nb":1,"a":[["ARO%3A3007664","Candida spp. High Osmolarity Glycerol 1 conferring resistance to caspofungin via absence"]],"b":[["antifungal/caspofungin.html","caspofungin"]]},{"id":"ARO:3007665","l":"Candida spp. FCY2 conferring resistance to 5-flucytosine via reduced permeability","na":1,"nb":1,"a":[["ARO%3A3007665","Candida spp. FCY2 conferring resistance to 5-flucytosine via reduced permeability"]],"b":[["antifungal/flucytosine.html","flucytosine"]]},{"id":"ARO:3007671","l":"Clostridioides difficile nimB","na":1,"nb":1,"a":[["ARO%3A3007671","Clostridioides difficile nimB"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007674","l":"Mycobacterium tuberculosis Rv0678 with mutation conferring resistance to bedaquiline","na":1,"nb":1,"a":[["ARO%3A3007674","Mycobacterium tuberculosis Rv0678 with mutation conferring resistance to bedaquiline"]],"b":[["antimycobacterial/bedaquiline.html","bedaquiline"]]},{"id":"ARO:3007678","l":"IreK","na":1,"nb":1,"a":[["ARO%3A3007678","IreK"]],"b":[["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3007749","l":"Salmonella gallinarum folP with mutation conferring resistance to sulfonamides","na":1,"nb":1,"a":[["ARO%3A3007749","Salmonella gallinarum folP with mutation conferring resistance to sulfonamides"]],"b":[["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3007759","l":"Treponema pallidum 23S rRNA with mutation conferring resistance to erythromycin","na":1,"nb":1,"a":[["ARO%3A3007759","Treponema pallidum 23S rRNA with mutation conferring resistance to erythromycin"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3007794","l":"Vibrio vulnificus rpoB mutants conferring resistance to rifampin","na":1,"nb":1,"a":[["ARO%3A3007794","Vibrio vulnificus rpoB mutants conferring resistance to rifampin"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3007798","l":"Mycobacterium tuberculosis iniA mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3007798","Mycobacterium tuberculosis iniA mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3007806","l":"Mycobacterium tuberculosis gyrA mutations conferring resistance to moxifloxacin","na":1,"nb":1,"a":[["ARO%3A3007806","Mycobacterium tuberculosis gyrA mutations conferring resistance to moxifloxacin"]],"b":[["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3007807","l":"Mycobacterium tuberculosis gyrA mutations conferring resistance to ofloxacin","na":1,"nb":1,"a":[["ARO%3A3007807","Mycobacterium tuberculosis gyrA mutations conferring resistance to ofloxacin"]],"b":[["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3007808","l":"Mycobacterium tuberculosis gyrB mutations conferring resistance to ofloxacin","na":1,"nb":1,"a":[["ARO%3A3007808","Mycobacterium tuberculosis gyrB mutations conferring resistance to ofloxacin"]],"b":[["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3007809","l":"Mycobacterium tuberculosis gyrA mutations conferring resistance to levofloxacin","na":1,"nb":1,"a":[["ARO%3A3007809","Mycobacterium tuberculosis gyrA mutations conferring resistance to levofloxacin"]],"b":[["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"ARO:3007810","l":"Mycobacterium tuberculosis gyrB mutations conferring resistance to levofloxacin","na":1,"nb":1,"a":[["ARO%3A3007810","Mycobacterium tuberculosis gyrB mutations conferring resistance to levofloxacin"]],"b":[["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"ARO:3007811","l":"Mycobacterium tuberculosis fabG1 with mutations conferring resistance to prothionamide","na":1,"nb":1,"a":[["ARO%3A3007811","Mycobacterium tuberculosis fabG1 with mutations conferring resistance to prothionamide"]],"b":[["antibacterial/prothionamide.html","prothionamide"]]},{"id":"ARO:3007838","l":"tet(65)","na":1,"nb":1,"a":[["ARO%3A3007838","tet(65)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007843","l":"VRA-F","na":1,"nb":1,"a":[["ARO%3A3007843","VRA-F"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3007849","l":"Mycobacterium tuberculosis fgd1 with mutation conferring resistance to delamanid","na":1,"nb":1,"a":[["ARO%3A3007849","Mycobacterium tuberculosis fgd1 with mutation conferring resistance to delamanid"]],"b":[["antibacterial/delamanid.html","delamanid"]]},{"id":"ARO:3007852","l":"Mycobacterium tuberculosis Rv0678 with mutation conferring resistance to clofazimine","na":1,"nb":1,"a":[["ARO%3A3007852","Mycobacterium tuberculosis Rv0678 with mutation conferring resistance to clofazimine"]],"b":[["antimycobacterial/clofazimine.html","clofazimine"]]},{"id":"ARO:3007854","l":"Mycobacterium tuberculosis atpE with mutation conferring resistance to bedaquiline","na":1,"nb":1,"a":[["ARO%3A3007854","Mycobacterium tuberculosis atpE with mutation conferring resistance to bedaquiline"]],"b":[["antimycobacterial/bedaquiline.html","bedaquiline"]]},{"id":"ARO:3007857","l":"KPC-134","na":1,"nb":1,"a":[["ARO%3A3007857","KPC-134"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"CHEBI:10015","l":"vobasine","na":1,"nb":1,"a":[["RHEA%3A76147","perivine + S-adenosyl-L-methionine = vobasine + S-adenosyl-L-homocysteine + 2 H(+)"]],"b":[["antiviral/vobasine.html","vobasine"]]},{"id":"CHEBI:100241","l":"ciprofloxacin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CPF","CPF-binding site"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"CHEBI:127780","l":"phosphonoformic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PPF","PPF-binding site"]],"b":[["antiviral/phosphonoformic-acid.html","phosphonoformic acid"]]},{"id":"CHEBI:133741","l":"(E)-dodec-2-enal","na":1,"nb":1,"a":[["RHEA%3A50784","dodecanal + NADP(+) = (2E)-dodecenal + NADPH + H(+)"]],"b":[["antibacterial/e-dodec-2-enal.html","(E)-dodec-2-enal"]]},{"id":"CHEBI:134347","l":"glandicoline B","na":1,"nb":1,"a":[["RHEA%3A51732","glandicoline B + S-adenosyl-L-methionine = meleagrin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/glandicoline-b.html","glandicoline B"]]},{"id":"CHEBI:135029","l":"cycloguanil","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_1CY","1CY-binding site"]],"b":[["antiprotozoal/cycloguanil.html","cycloguanil"]]},{"id":"CHEBI:137236","l":"ilomastat","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_GM6","GM6-binding site"]],"b":[["antibacterial/ilomastat.html","ilomastat"]]},{"id":"CHEBI:138511","l":"piericidin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HQH","HQH-binding site"]],"b":[["unspecified/piericidin-a.html","piericidin A"]]},{"id":"CHEBI:140376","l":"cefiderocol","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_140376","requires cefiderocol"]],"b":[["antibacterial/cefiderocol.html","cefiderocol"]]},{"id":"CHEBI:142921","l":"","na":1,"nb":1,"a":[["RHEA%3A79335","cinnamyl alcohol + 2 Fe(III)-[cytochrome c] = cinnamaldehyde + 2 Fe(II)-[cytochrome c] + 2 H(+)"]],"b":[["antifungal/e-cinnamaldehyde.html","(E)-cinnamaldehyde"]]},{"id":"CHEBI:144586","l":"4-hydroxy-2-oxobutanal","na":1,"nb":1,"a":[["RHEA%3A21212","N(6)-(3-O-phospho-D-erythrulosyl)-L-lysyl-[protein] + H2O = 4-hydroxy-2-oxobutanal + L-lysyl-[protein] + phosphate"]],"b":[["antibacterial/4-hydroxy-2-oxobutanal.html","4-hydroxy-2-oxobutanal"]]},{"id":"CHEBI:145026","l":"L-psicose","na":1,"nb":1,"a":[["RHEA%3A61784","L-allulose = keto-L-fructose"]],"b":[["antiviral/l-psicose.html","L-psicose"]]},{"id":"CHEBI:145043","l":"solasodine(1+)","na":1,"nb":1,"a":[["RHEA%3A61844","solasodine + UDP-alpha-D-glucose = solasodine 3-beta-D-glucoside + UDP + H(+)"]],"b":[["antifungal/solasodine-1.html","solasodine(1+)"]]},{"id":"CHEBI:145950","l":"nigerone","na":1,"nb":1,"a":[["RHEA%3A62792","2 rubrofusarin B + NADPH + O2 + 3 H(+) = nigerone + NADP(+) + 2 H2O"]],"b":[["antifungal/nigerone.html","nigerone"]]},{"id":"CHEBI:146007","l":"(M)-viriditoxin","na":1,"nb":1,"a":[["RHEA%3A62884","4 semiviriditoxin + O2 = 2 (M)-viriditoxin + 2 H2O"]],"b":[["antibacterial/m-viriditoxin.html","(M)-viriditoxin"]]},{"id":"CHEBI:15353","l":"blasticidin S","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BLS","BLS-binding site"]],"b":[["antifungal/blasticidin-s.html","blasticidin S"]]},{"id":"CHEBI:155860","l":"2,4-dihydroxy-3-methyl-6-(2-oxopropyl)benzaldehyde","na":1,"nb":1,"a":[["RHEA%3A64508","4 malonyl-CoA + acetyl-CoA + AH2 + S-adenosyl-L-methionine + 3 H(+) = 2,4-dihydroxy-3-methyl-6-(2-oxopropyl)benzaldehyde + A + S-adenosyl-L-homocysteine + 4 CO2 + 5 CoA + H2O"]],"b":[["antibacterial/2-4-dihydroxy-3-methyl-6-2-oxopropyl-benzaldehyde.html","2,4-dihydroxy-3-methyl-6-(2-oxopropyl)benzaldehyde"]]},{"id":"CHEBI:156070","l":"butyl benzoate","na":1,"nb":1,"a":[["RHEA%3A64636","butan-1-ol + benzoyl-CoA = butyl benzoate + CoA"]],"b":[["biocide/butyl-benzoate.html","butyl benzoate"]]},{"id":"CHEBI:156511","l":"poacic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_V5M","V5M-binding site"]],"b":[["antifungal/poacic-acid.html","poacic acid"]]},{"id":"CHEBI:15732","l":"phosphonoacetic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PAE","PAE-binding site"]],"b":[["antiviral/phosphonoacetic-acid.html","phosphonoacetic acid"]]},{"id":"CHEBI:15756","l":"palmitic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PLM","PLM-binding site"]],"b":[["antibacterial/palmitic-acid.html","palmitic acid"]]},{"id":"CHEBI:16243","l":"quercetin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_QUE","QUE-binding site"]],"b":[["antibacterial/quercetin.html","quercetin"]]},{"id":"CHEBI:16348","l":"3-nitropropanoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_3NP","3NP-binding site"]],"b":[["antimycobacterial/3-nitropropanoic-acid.html","3-nitropropanoic acid"]]},{"id":"CHEBI:164200","l":"triclosan","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TCL","TCL-binding site"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"CHEBI:167176","l":"GRL-0617","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TTT","TTT-binding site"]],"b":[["antiviral/grl-0617.html","GRL-0617"]]},{"id":"CHEBI:168396","l":"mycophenolic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MOA","MOA-binding site"]],"b":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]]},{"id":"CHEBI:16914","l":"salicylic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SAL","SAL-binding site"]],"b":[["antifungal/salicylic-acid.html","salicylic acid"]]},{"id":"CHEBI:16961","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"]],"b":[["antibacterial/bacilysocin.html","bacilysocin"]]},{"id":"CHEBI:17351","l":"linoleic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_EIC","EIC-binding site"]],"b":[["antibacterial/linoleic-acid.html","linoleic acid"]]},{"id":"CHEBI:17558","l":"quercitrin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_QCT","QCT-binding site"]],"b":[["antiprotozoal/quercitrin.html","quercitrin"]]},{"id":"CHEBI:175901","l":"gemcitabine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_GEO","GEO-binding site"]],"b":[["antiviral/gemcitabine.html","gemcitabine"]]},{"id":"CHEBI:17642","l":"pentachlorophenol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PCI","PCI-binding site"]],"b":[["antifungal/pentachlorophenol.html","pentachlorophenol"]]},{"id":"CHEBI:17656","l":"(R)-mandelic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RMN","RMN-binding site"]],"b":[["antibacterial/r-mandelic-acid.html","(R)-mandelic acid"]]},{"id":"CHEBI:17658","l":"tylosin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TYK","TYK-binding site"]],"b":[["antibacterial/tylosin.html","tylosin"]]},{"id":"CHEBI:177047","l":"velutin","na":1,"nb":1,"a":[["RHEA%3A73083","chrysoeriol + S-adenosyl-L-methionine = velutin + S-adenosyl-L-homocysteine"]],"b":[["antibacterial/velutin.html","velutin"]]},{"id":"CHEBI:177878","l":"","na":1,"nb":1,"a":[["RHEA%3A68396","a percarboxylic acid + H2O = a carboxylate + H2O2 + H(+)"]],"b":[["biocide/peracetic-acid.html","peracetic acid"]]},{"id":"CHEBI:18203","l":"penicillin N","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["unspecified/penicillin-n.html","penicillin N"]]},{"id":"CHEBI:18208","l":"benzylpenicillin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PNN","PNN-binding site"]],"b":[["antibacterial/benzylpenicillin.html","benzylpenicillin"]]},{"id":"CHEBI:190786","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_KIR","KIR-binding site"]],"b":[["antibacterial/kirromycin.html","kirromycin"]]},{"id":"CHEBI:194138","l":"methyl trans-cinnamate","na":1,"nb":1,"a":[["RHEA%3A74871","(E)-cinnamate + S-adenosyl-L-methionine = (E)-cinnamic acid methyl ester + S-adenosyl-L-homocysteine"]],"b":[["antibacterial/methyl-trans-cinnamate.html","methyl trans-cinnamate"]]},{"id":"CHEBI:220158","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BLJ","BLJ-binding site"]],"b":[["antibacterial/arsinothricin.html","arsinothricin"]]},{"id":"CHEBI:22632","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.59","The Arsenical Resistance-3 (ACR3) Family"]],"b":[["antibacterial/sodium-arsenite.html","sodium arsenite"]]},{"id":"CHEBI:231919","l":"fluopsin","na":1,"nb":1,"a":[["RHEA%3A82395","thiohydroxamate + S-adenosyl-L-methionine = fluopsin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/fluopsin.html","fluopsin"]]},{"id":"CHEBI:233443","l":"","na":1,"nb":1,"a":[["RHEA%3A83863","an L-alpha-amino acid + acetyl-CoA = an N-acetyl-L-alpha-amino acid + CoA + H(+)"]],"b":[["antiviral/n-acetyl-l-cysteinate.html","N-acetyl-L-cysteinate"]]},{"id":"CHEBI:234507","l":"2-chloroacetamide","na":1,"nb":1,"a":[["RHEA%3A85695","chloroacetamide = chloroacetonitrile + H2O"]],"b":[["antifungal/2-chloroacetamide.html","2-chloroacetamide"]]},{"id":"CHEBI:23981","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"CHEBI:24402","l":"","na":1,"nb":1,"a":[["TCDB%3A3.A.3","The P-type ATPase (P-ATPase) Superfamily"]],"b":[["antifungal/oceanalin-a.html","oceanalin A"]]},{"id":"CHEBI:2637","l":"amikacin","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/amikacin.html","amikacin"]]},{"id":"CHEBI:2674","l":"amodiaquine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CQA","CQA-binding site"]],"b":[["antiprotozoal/amodiaquine.html","amodiaquine"]]},{"id":"CHEBI:2682","l":"amphotericin B","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_4UH","4UH-binding site"]],"b":[["antifungal/amphotericin-b.html","amphotericin B"]]},{"id":"CHEBI:27093","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.54","The Sideroflexin (SFXN) Family (formerly the Mitochondrial Tricarboxylate Carrier (MTC) Family)"]],"b":[["unspecified/citric-acid.html","citric acid"]]},{"id":"CHEBI:27779","l":"griseofulvin","na":1,"nb":1,"a":[["RHEA%3A73943","dehydrogriseofulvin + NADPH + H(+) = griseofulvin + NADP(+)"]],"b":[["antibacterial/griseofulvin.html","griseofulvin"]]},{"id":"CHEBI:27784","l":"gentamycin C1a","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_LLL","LLL-binding site"]],"b":[["unspecified/gentamycin-c1a.html","gentamycin C1a"]]},{"id":"CHEBI:27834","l":"pentostatin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DCF","DCF-binding site"]],"b":[["unspecified/pentostatin.html","pentostatin"]]},{"id":"CHEBI:27860","l":"castanospermine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CTS","CTS-binding site"]],"b":[["antiviral/castanospermine.html","castanospermine"]]},{"id":"CHEBI:28098","l":"kanamycin B","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9CS","9CS-binding site"]],"b":[["unspecified/kanamycin-b.html","kanamycin B"]]},{"id":"CHEBI:28121","l":"harmine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HRM","HRM-binding site"]],"b":[["antiviral/harmine.html","harmine"]]},{"id":"CHEBI:28147","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_8MM","8MM-binding site"]],"b":[["unspecified/n2-acetylgentamycin-c1a.html","N2'-acetylgentamycin C1a"]]},{"id":"CHEBI:28148","l":"sodium stibogluconate","na":1,"nb":1,"a":[["TCDB%3A1.A.8","The Major Intrinsic Protein (MIP) Family"]],"b":[["antiprotozoal/sodium-stibogluconate.html","sodium stibogluconate"]]},{"id":"CHEBI:28217","l":"acrylonitrile","na":1,"nb":1,"a":[["RHEA%3A85611","acrylamide = acrylonitrile + H2O"]],"b":[["antifungal/acrylonitrile.html","acrylonitrile"]]},{"id":"CHEBI:28285","l":"oligomycin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_EFO","EFO-binding site"]],"b":[["antifungal/oligomycin-a.html","oligomycin A"]]},{"id":"CHEBI:28368","l":"novobiocin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NOV","NOV-binding site"]],"b":[["antibacterial/novobiocin.html","novobiocin"]]},{"id":"CHEBI:28499","l":"kaempferol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_KMP","KMP-binding site"]],"b":[["antibacterial/kaempferol.html","kaempferol"]]},{"id":"CHEBI:28631","l":"3-phenylpropionic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HCI","HCI-binding site"]],"b":[["antifungal/3-phenylpropionic-acid.html","3-phenylpropionic acid"]]},{"id":"CHEBI:28748","l":"doxorubicin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DM2","DM2-binding site"]],"b":[["unspecified/doxorubicin.html","doxorubicin"]]},{"id":"CHEBI:28837","l":"octanoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_OCA","OCA-binding site"]],"b":[["antibacterial/octanoic-acid.html","octanoic acid"]]},{"id":"CHEBI:28864","l":"tobramycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TOY","TOY-binding site"]],"b":[["antibacterial/tobramycin.html","tobramycin"]]},{"id":"CHEBI:28905","l":"prop-2-yn-1-ol","na":1,"nb":1,"a":[["RHEA%3A31247","prop-2-ynal + pyrroloquinoline quinol + H(+) = prop-2-yn-1-ol + pyrroloquinoline quinone"]],"b":[["antifungal/prop-2-yn-1-ol.html","prop-2-yn-1-ol"]]},{"id":"CHEBI:28939","l":"N-acetyl-L-cysteine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SC2","SC2-binding site"]],"b":[["antiviral/n-acetyl-l-cysteine.html","N-acetyl-L-cysteine"]]},{"id":"CHEBI:2896","l":"astemizole","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_XB7","XB7-binding site"]],"b":[["antiviral/astemizole.html","astemizole"]]},{"id":"CHEBI:28971","l":"ampicillin","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/ampicillin.html","ampicillin"]]},{"id":"CHEBI:29013","l":"fusidic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_FUA","FUA-binding site"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"CHEBI:29014","l":"cordycepin","na":1,"nb":1,"a":[["RHEA%3A79047","cordycepin + H2O + H(+) = 3'-deoxyinosine + NH4(+)"]],"b":[["antibacterial/cordycepin.html","cordycepin"]]},{"id":"CHEBI:29582","l":"ascomycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_KXX","KXX-binding site"]],"b":[["antifungal/ascomycin.html","ascomycin"]]},{"id":"CHEBI:29699","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"]],"b":[["antibacterial/tunicamycin.html","tunicamycin"]]},{"id":"CHEBI:29703","l":"validamycin A","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/validamycin-a.html","validamycin A"]]},{"id":"CHEBI:3000","l":"beauvericin","na":1,"nb":1,"a":[["RHEA%3A62276","3 (R)-2-hydroxy-3-methylbutanoate + 3 L-phenylalanine + 3 S-adenosyl-L-methionine + 6 ATP = beauvericin + 6 AMP + 3 S-adenosyl-L-homocysteine + 6 diphosphate + 6 H(+)"]],"b":[["antifungal/beauvericin.html","beauvericin"]]},{"id":"CHEBI:3015","l":"benomyl","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/benomyl.html","benomyl"]]},{"id":"CHEBI:30769","l":"citric acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CIT","CIT-binding site"]],"b":[["unspecified/citric-acid.html","citric acid"]]},{"id":"CHEBI:30813","l":"decanoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DKA","DKA-binding site"]],"b":[["antibacterial/decanoic-acid.html","decanoic acid"]]},{"id":"CHEBI:3087","l":"betulinic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_06L","06L-binding site"]],"b":[["antiprotozoal/betulinic-acid.html","betulinic acid"]]},{"id":"CHEBI:315019","l":"cilofungin","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/cilofungin.html","cilofungin"]]},{"id":"CHEBI:31781","l":"lopinavir","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antiviral/lopinavir.html","lopinavir"]]},{"id":"CHEBI:31856","l":"mithramycin","na":1,"nb":1,"a":[["RHEA%3A85455","iso-mithramycin = mithramycin"]],"b":[["unspecified/mithramycin.html","mithramycin"]]},{"id":"CHEBI:32079","l":"pyrrolnitrin","na":1,"nb":1,"a":[["RHEA%3A46136","aminopyrrolnitrin + NADPH + 2 O2 + H(+) = pyrrolnitrin + NADP(+) + 2 H2O"]],"b":[["antifungal/pyrrolnitrin.html","pyrrolnitrin"]]},{"id":"CHEBI:32174","l":"","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/syringomycin-e.html","syringomycin E"]]},{"id":"CHEBI:32368","l":"undecanoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_11A","11A-binding site"]],"b":[["antifungal/undecanoic-acid.html","undecanoic acid"]]},{"id":"CHEBI:3259","l":"CCCP","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/cccp.html","CCCP"]]},{"id":"CHEBI:32800","l":"(S)-mandelic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SMN","SMN-binding site"]],"b":[["antibacterial/s-mandelic-acid.html","(S)-mandelic acid"]]},{"id":"CHEBI:32888","l":"γ-hexachlorocyclohexane","na":1,"nb":1,"a":[["RHEA%3A45480","gamma-hexachlorocyclohexane = (3R,4S,5S,6R)-pentachlorocyclohexene + chloride + H(+)"]],"b":[["antibacterial/%CE%B3-hexachlorocyclohexane.html","γ-hexachlorocyclohexane"]]},{"id":"CHEBI:3405","l":"carboxin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CBE","CBE-binding site"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"CHEBI:34652","l":"compactin diol lactone","na":1,"nb":1,"a":[["RHEA%3A62744","mevastatin + H2O = compactin diol lactone + (S)-2-methylbutanoate + H(+)"]],"b":[["unspecified/compactin-diol-lactone.html","compactin diol lactone"]]},{"id":"CHEBI:34908","l":"pentachloronitrobenzene","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/pentachloronitrobenzene.html","pentachloronitrobenzene"]]},{"id":"CHEBI:3493","l":"cefoperazone","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/cefoperazone.html","cefoperazone"]]},{"id":"CHEBI:3503","l":"cefpirome","na":1,"nb":1,"a":[["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"]],"b":[["antibacterial/cefpirome.html","cefpirome"]]},{"id":"CHEBI:35356","l":"","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/cycloheximide.html","cycloheximide"]]},{"id":"CHEBI:3537","l":"cefaloridine","na":1,"nb":1,"a":[["TCDB%3A1.B.6","The OmpA-OmpF Porin (OOP) Family"]],"b":[["antibacterial/cefaloridine.html","cefaloridine"]]},{"id":"CHEBI:3547","l":"cephradine","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/cephradine.html","cephradine"]]},{"id":"CHEBI:35817","l":"roxarsone","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/roxarsone.html","roxarsone"]]},{"id":"CHEBI:36243","l":"","na":1,"nb":1,"a":[["RHEA%3A48484","a propanoate ester + H2O = an aliphatic alcohol + propanoate + H(+)"]],"b":[["antifungal/metarylpicoxamid.html","metarylpicoxamid"]]},{"id":"CHEBI:3639","l":"chlorothalonil","na":1,"nb":1,"a":[["RHEA%3A65016","chlorothalonil + H2O = 4-hydroxychlorothalonil + chloride + 2 H(+)"]],"b":[["antifungal/chlorothalonil.html","chlorothalonil"]]},{"id":"CHEBI:3647","l":"chlorpromazine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_Z80","Z80-binding site"]],"b":[["antiviral/chlorpromazine.html","chlorpromazine"]]},{"id":"CHEBI:367163","l":"darunavir","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_017","017-binding site"]],"b":[["antiviral/darunavir.html","darunavir"]]},{"id":"CHEBI:36843","l":"","na":1,"nb":1,"a":[["RHEA%3A82271","7alpha-hydroxy steroid + NADP(+) = a 7-oxosteroid + NADPH + H(+)"]],"b":[["antifungal/9%CE%BE-14%CE%BE-25s-cholestane-3%CE%B2-4%CE%B2-6%CE%B2-7%CE%B1-8-15%CE%B1-16%CE%B2-26-octol.html","(9ξ,14ξ,25S)-cholestane-3β,4β,6β,7α,8,15α,16β,26-octol"]]},{"id":"CHEBI:3687","l":"chrysophanol","na":1,"nb":1,"a":[["RHEA%3A64276","chrysophanol-9-anthrone + O2 = chrysophanol + H2O"]],"b":[["antiviral/chrysophanol.html","chrysophanol"]]},{"id":"CHEBI:3745","l":"clindamycin","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/clindamycin.html","clindamycin"]]},{"id":"CHEBI:3749","l":"clofazimine","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antimycobacterial/clofazimine.html","clofazimine"]]},{"id":"CHEBI:37924","l":"atazanavir","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DR7","DR7-binding site"]],"b":[["antiviral/atazanavir.html","atazanavir"]]},{"id":"CHEBI:38167","l":"physcion","na":1,"nb":1,"a":[["RHEA%3A76767","emodin + S-adenosyl-L-methionine = physcion + S-adenosyl-L-homocysteine"]],"b":[["antibacterial/physcion.html","physcion"]]},{"id":"CHEBI:38291","l":"dihydrostreptomycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_71R","71R-binding site"]],"b":[["unspecified/dihydrostreptomycin.html","dihydrostreptomycin"]]},{"id":"CHEBI:38320","l":"(+)-usnic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_AIY","AIY-binding site"]],"b":[["antifungal/usnic-acid-38320.html","(+)-usnic acid"]]},{"id":"CHEBI:39352","l":"","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["unspecified/nifursol.html","nifursol"]]},{"id":"CHEBI:39932","l":"(R)-oct-1-en-3-ol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_3OL","3OL-binding site"]],"b":[["unspecified/r-oct-1-en-3-ol.html","(R)-oct-1-en-3-ol"]]},{"id":"CHEBI:40009","l":"D-cycloserine","na":1,"nb":1,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"]],"b":[["antimycobacterial/d-cycloserine.html","D-cycloserine"]]},{"id":"CHEBI:40021","l":"tiratricol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_4HY","4HY-binding site"]],"b":[["antiviral/tiratricol.html","tiratricol"]]},{"id":"CHEBI:404903","l":"ertapenem","na":1,"nb":1,"a":[["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"]],"b":[["antibacterial/ertapenem.html","ertapenem"]]},{"id":"CHEBI:41425","l":"(7R)-7-(4-carboxybutanamido)cephalosporanic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CEN","CEN-binding site"]],"b":[["unspecified/7r-7-4-carboxybutanamido-cephalosporanic-acid.html","(7R)-7-(4-carboxybutanamido)cephalosporanic acid"]]},{"id":"CHEBI:41688","l":"crystal violet","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/crystal-violet.html","crystal violet"]]},{"id":"CHEBI:41872","l":"dequalinium","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/dequalinium.html","dequalinium"]]},{"id":"CHEBI:41977","l":"daunorubicin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DM1","DM1-binding site"]],"b":[["unspecified/daunorubicin.html","daunorubicin"]]},{"id":"CHEBI:42068","l":"idarubicin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DM5","DM5-binding site"]],"b":[["unspecified/idarubicin.html","idarubicin"]]},{"id":"CHEBI:42355","l":"erythromycin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ERY","ERY-binding site"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"CHEBI:42471","l":"forskolin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_FOK","FOK-binding site"]],"b":[["antiviral/forskolin.html","forskolin"]]},{"id":"CHEBI:42600","l":"L-fucitol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_FOC","FOC-binding site"]],"b":[["antibacterial/l-fucitol.html","L-fucitol"]]},{"id":"CHEBI:42680","l":"(2-cis,6-cis)-farnesol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_FOH","FOH-binding site"]],"b":[["unspecified/2-cis-6-cis-farnesol.html","(2-cis,6-cis)-farnesol"]]},{"id":"CHEBI:43040","l":"hadacidin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HDA","HDA-binding site"]],"b":[["unspecified/hadacidin.html","hadacidin"]]},{"id":"CHEBI:4309","l":"dalfopristin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DOL","DOL-binding site"]],"b":[["antibacterial/dalfopristin.html","dalfopristin"]]},{"id":"CHEBI:43616","l":"K-252a","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_KSA","KSA-binding site"]],"b":[["unspecified/k-252a.html","K-252a"]]},{"id":"CHEBI:44032","l":"indinavir","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MK1","MK1-binding site"]],"b":[["antiviral/indinavir.html","indinavir"]]},{"id":"CHEBI:44369","l":"duvoglustat","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NOJ","NOJ-binding site"]],"b":[["antiviral/duvoglustat.html","duvoglustat"]]},{"id":"CHEBI:44499","l":"methyl nonanoate","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NON","NON-binding site"]],"b":[["antifungal/methyl-nonanoate.html","methyl nonanoate"]]},{"id":"CHEBI:45141","l":"pyroquilon","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PYQ","PYQ-binding site"]],"b":[["antifungal/pyroquilon.html","pyroquilon"]]},{"id":"CHEBI:45257","l":"ribostamycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RIO","RIO-binding site"]],"b":[["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"CHEBI:45304","l":"rifapentine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RPT","RPT-binding site"]],"b":[["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"CHEBI:45307","l":"seliciclib","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RRC","RRC-binding site"]],"b":[["antiviral/seliciclib.html","seliciclib"]]},{"id":"CHEBI:45367","l":"rifabutin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RBT","RBT-binding site"]],"b":[["antibacterial/rifabutin.html","rifabutin"]]},{"id":"CHEBI:45395","l":"pyrithiamine pyrophosphate","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PYI","PYI-binding site"]],"b":[["unspecified/pyrithiamine-pyrophosphate.html","pyrithiamine pyrophosphate"]]},{"id":"CHEBI:45409","l":"ritonavir","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RIT","RIT-binding site"]],"b":[["antiviral/ritonavir.html","ritonavir"]]},{"id":"CHEBI:45490","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RVP","RVP-binding site"]],"b":[["antiviral/ribavirin-5-monophosphate.html","ribavirin 5'-monophosphate"]]},{"id":"CHEBI:45906","l":"suramin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SVR","SVR-binding site"]],"b":[["antiprotozoal/suramin.html","suramin"]]},{"id":"CHEBI:45924","l":"trimethoprim","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TOP","TOP-binding site"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"CHEBI:45979","l":"thiabendazole","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TMG","TMG-binding site"]],"b":[["antifungal/thiabendazole.html","thiabendazole"]]},{"id":"CHEBI:46024","l":"trichostatin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TSN","TSN-binding site"]],"b":[["antifungal/trichostatin-a.html","trichostatin A"]]},{"id":"CHEBI:46345","l":"5-fluorouracil","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_URF","URF-binding site"]],"b":[["antifungal/5-fluorouracil.html","5-Fluorouracil"]]},{"id":"CHEBI:4640","l":"diphenylamine","na":1,"nb":1,"a":[["TCDB%3A9.A.11","The Dipicolinic Acid Transporter (DPA-T) Family"]],"b":[["antifungal/diphenylamine.html","diphenylamine"]]},{"id":"CHEBI:4672","l":"docetaxel anhydrous","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antiprotozoal/docetaxel-anhydrous.html","docetaxel anhydrous"]]},{"id":"CHEBI:46953","l":"","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["unspecified/adxanthromycin-a.html","adxanthromycin A"]]},{"id":"CHEBI:473992","l":"nystatin A1","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_A1AZ7","A1AZ7-binding site"]],"b":[["antifungal/nystatin-a1.html","nystatin A1"]]},{"id":"CHEBI:47780","l":"clomipramine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CXX","CXX-binding site"]],"b":[["antiviral/clomipramine.html","clomipramine"]]},{"id":"CHEBI:48131","l":"nonanedioic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_AZ1","AZ1-binding site"]],"b":[["antibacterial/nonanedioic-acid.html","nonanedioic acid"]]},{"id":"CHEBI:48267","l":"tubercidin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TBN","TBN-binding site"]],"b":[["antifungal/tubercidin.html","tubercidin"]]},{"id":"CHEBI:48545","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.67","The Oligopeptide Transporter (OPT) Family"]],"b":[["unspecified/n-palmitoyl-s-2-3-bis-palmitoyloxy-propyl-cys-ser-lys-lys-lys-lys.html","N-palmitoyl-S-[2,3-bis(palmitoyloxy)propyl]-Cys-Ser-Lys-Lys-Lys-Lys"]]},{"id":"CHEBI:48811","l":"(R)-chloroquine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CLQ","CLQ-binding site"]],"b":[["antiprotozoal/r-chloroquine.html","(R)-chloroquine"]]},{"id":"CHEBI:4893","l":"ethyl acetoacetate","na":1,"nb":1,"a":[["RHEA%3A68144","ethyl 3-oxobutanoate + NADPH + H(+) = ethyl (R)-3-hydroxybutanoate + NADP(+)"]],"b":[["antibacterial/ethyl-acetoacetate.html","ethyl acetoacetate"]]},{"id":"CHEBI:48947","l":"clavulanic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_J01","J01-binding site"]],"b":[["antibacterial/clavulanic-acid.html","clavulanic acid"]]},{"id":"CHEBI:48958","l":"diamide","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["unspecified/diamide.html","diamide"]]},{"id":"CHEBI:49026","l":"N-acetyl-α-neuraminic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SIA","SIA-binding site"]],"b":[["antiviral/n-acetyl-%CE%B1-neuraminic-acid.html","N-acetyl-α-neuraminic acid"]]},{"id":"CHEBI:49375","l":"dasatinib (anhydrous)","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_1N1","1N1-binding site"]],"b":[["antiviral/dasatinib-anhydrous.html","dasatinib (anhydrous)"]]},{"id":"CHEBI:50381","l":"miglustat","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NBV","NBV-binding site"]],"b":[["antiviral/miglustat.html","miglustat"]]},{"id":"CHEBI:50437","l":"nocardamine","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_50437","requires desferrioxamine E"]],"b":[["antibacterial/nocardamine.html","nocardamine"]]},{"id":"CHEBI:50663","l":"zanamivir","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ZMR","ZMR-binding site"]],"b":[["antiviral/zanamivir.html","zanamivir"]]},{"id":"CHEBI:50694","l":"minocycline","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MIY","MIY-binding site"]],"b":[["antibacterial/minocycline.html","minocycline"]]},{"id":"CHEBI:52172","l":"nilotinib","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NIL","NIL-binding site"]],"b":[["antiviral/nilotinib.html","nilotinib"]]},{"id":"CHEBI:52289","l":"wortmannin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_KWT","KWT-binding site"]],"b":[["antiviral/wortmannin.html","wortmannin"]]},{"id":"CHEBI:52316","l":"cordycepin triphosphate","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_3AT","3AT-binding site"]],"b":[["antifungal/cordycepin-triphosphate.html","cordycepin triphosphate"]]},{"id":"CHEBI:52646","l":"leptomycin B","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/leptomycin-b.html","leptomycin B"]]},{"id":"CHEBI:52717","l":"bortezomib","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BO2","BO2-binding site"]],"b":[["antiprotozoal/bortezomib.html","bortezomib"]]},{"id":"CHEBI:556075","l":"radicicol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RDC","RDC-binding site"]],"b":[["antifungal/radicicol.html","radicicol"]]},{"id":"CHEBI:575568","l":"atovaquone","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_AOQ","AOQ-binding site"]],"b":[["antifungal/atovaquone.html","atovaquone"]]},{"id":"CHEBI:59349","l":"cefepime(1+)","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9WT","9WT-binding site"]],"b":[["unspecified/cefepime-1.html","cefepime(1+)"]]},{"id":"CHEBI:60761","l":"floxuridine","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antiviral/floxuridine.html","floxuridine"]]},{"id":"CHEBI:623918","l":"nikkomycin Z","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BGI","BGI-binding site"]],"b":[["antifungal/nikkomycin-z.html","nikkomycin Z"]]},{"id":"CHEBI:63207","l":"mycinamicin III","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ZM3","ZM3-binding site"]],"b":[["unspecified/mycinamicin-iii.html","mycinamicin III"]]},{"id":"CHEBI:63285","l":"mycinamicin VI","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MVI","MVI-binding site"]],"b":[["unspecified/mycinamicin-vi.html","mycinamicin VI"]]},{"id":"CHEBI:63580","l":"ribavirin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RBV","RBV-binding site"]],"b":[["antiviral/ribavirin.html","ribavirin"]]},{"id":"CHEBI:63599","l":"fludarabine phosphate","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antiviral/fludarabine-phosphate.html","fludarabine phosphate"]]},{"id":"CHEBI:63611","l":"moxifloxacin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MFX","MFX-binding site"]],"b":[["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"CHEBI:63624","l":"telbivudine","na":1,"nb":1,"a":[["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"]],"b":[["antiviral/telbivudine.html","telbivudine"]]},{"id":"CHEBI:63684","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_YMZ","YMZ-binding site"]],"b":[["antiprotozoal/11r-2-s-erythro-mefloquine.html","(+)-(11R,2'S)-erythro-mefloquine"]]},{"id":"CHEBI:64250","l":"tunicamycin B2","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9LH","9LH-binding site"]],"b":[["unspecified/tunicamycin-b2.html","tunicamycin B2"]]},{"id":"CHEBI:64355","l":"posaconazole","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_X2N","X2N-binding site"]],"b":[["antifungal/posaconazole.html","posaconazole"]]},{"id":"CHEBI:66065","l":"IC202A","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_66065","requires IC202A"]],"b":[["unspecified/ic202a.html","IC202A"]]},{"id":"CHEBI:66067","l":"IC202C","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_66067","requires IC202C"]],"b":[["unspecified/ic202c.html","IC202C"]]},{"id":"CHEBI:66104","l":"jaspamide","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9UE","9UE-binding site"]],"b":[["antifungal/jaspamide.html","jaspamide"]]},{"id":"CHEBI:66222","l":"thiomarinol C","na":1,"nb":1,"a":[["RHEA%3A75895","marinoloyl-CoA C + holothin = thiomarinol C + CoA"]],"b":[["antibacterial/thiomarinol-c.html","thiomarinol C"]]},{"id":"CHEBI:67121","l":"nitroxoline","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HNQ","HNQ-binding site"]],"b":[["antifungal/nitroxoline.html","nitroxoline"]]},{"id":"CHEBI:67559","l":"5Z-7-oxozeaenol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_1FM","1FM-binding site"]],"b":[["antibacterial/5z-7-oxozeaenol.html","5Z-7-oxozeaenol"]]},{"id":"CHEBI:67811","l":"zorbamycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_52G","52G-binding site"]],"b":[["unspecified/zorbamycin.html","zorbamycin"]]},{"id":"CHEBI:68241","l":"platencin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_N32","N32-binding site"]],"b":[["antibacterial/platencin.html","platencin"]]},{"id":"CHEBI:6827","l":"methicillin","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/methicillin.html","methicillin"]]},{"id":"CHEBI:6909","l":"metronidazole","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"CHEBI:6923","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/miconazole.html","miconazole"]]},{"id":"CHEBI:7025","l":"mupirocin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MRC","MRC-binding site"]],"b":[["antibacterial/mupirocin.html","mupirocin"]]},{"id":"CHEBI:70508","l":"(16R,19E)-isositsirikine","na":1,"nb":1,"a":[["RHEA%3A83839","(19E)-geissoschizine + NADPH + H(+) = (16R,19E)-isositsirikine + NADP(+)"]],"b":[["antifungal/16r-19e-isositsirikine.html","(16R,19E)-isositsirikine"]]},{"id":"CHEBI:72292","l":"bedaquiline","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BQ1","BQ1-binding site"]],"b":[["antimycobacterial/bedaquiline.html","bedaquiline"]]},{"id":"CHEBI:72687","l":"bacilysin","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["unspecified/bacilysin.html","bacilysin"]]},{"id":"CHEBI:73079","l":"kanamycin D","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CJX","CJX-binding site"]],"b":[["unspecified/kanamycin-d.html","kanamycin D"]]},{"id":"CHEBI:73139","l":"oseltamivir acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_G39","G39-binding site"]],"b":[["antiviral/oseltamivir-acid.html","oseltamivir acid"]]},{"id":"CHEBI:73224","l":"allyl isothiocyanate","na":1,"nb":1,"a":[["RHEA%3A69272","(Z)-N-(sulfonatooxy)prop-2-enimidothioate = allyl isothiocyanate + sulfate"]],"b":[["unspecified/allyl-isothiocyanate.html","allyl isothiocyanate"]]},{"id":"CHEBI:73481","l":"asukamycin","na":1,"nb":1,"a":[["RHEA%3A75139","4-hydroxyprotoasukamycin + NADH + O2 + H(+) = asukamycin + NAD(+) + H2O"]],"b":[["antibacterial/asukamycin.html","asukamycin"]]},{"id":"CHEBI:74846","l":"azaserine","na":1,"nb":1,"a":[["TCDB%3A2.A.76","The Resistance to Homoserine/Threonine (RhtB) Family"]],"b":[["antifungal/azaserine.html","azaserine"]]},{"id":"CHEBI:7489","l":"neamine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_XXX","XXX-binding site"]],"b":[["antibacterial/neamine.html","neamine"]]},{"id":"CHEBI:74926","l":"patulin","na":1,"nb":1,"a":[["RHEA%3A62228","(E)-ascladiol + A = patulin + AH2"]],"b":[["unspecified/patulin.html","patulin"]]},{"id":"CHEBI:7508","l":"framycetin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NMY","NMY-binding site"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"CHEBI:75092","l":"morin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MRI","MRI-binding site"]],"b":[["antibacterial/morin.html","morin"]]},{"id":"CHEBI:75283","l":"miltefosine","na":1,"nb":1,"a":[["TCDB%3A3.A.3","The P-type ATPase (P-ATPase) Superfamily"]],"b":[["antifungal/miltefosine.html","miltefosine"]]},{"id":"CHEBI:75998","l":"trametinib","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_QOM","QOM-binding site"]],"b":[["antiviral/trametinib.html","trametinib"]]},{"id":"CHEBI:76010","l":"dolutegravir","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DLU","DLU-binding site"]],"b":[["antiviral/dolutegravir.html","dolutegravir"]]},{"id":"CHEBI:76244","l":"sapienic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_8Z9","8Z9-binding site"]],"b":[["antibacterial/sapienic-acid.html","sapienic acid"]]},{"id":"CHEBI:76293","l":"azadirone","na":1,"nb":1,"a":[["RHEA%3A80387","(1S,3bR,4R,5aR,9aR,9bR,11aS)-1-(1-hydroxy-4-oxobutan-2-yl)-3b,6,6,9a,11a-pentamethyl-7-oxo-1H,2H,3bH,4H,5H,5aH,6H,7H,9aH,9bH,10H,11H,11aH-cyclopenta[a]phenanthren-4-yl acetate + 2-oxoglutarate + O2 = azadirone + succinate + CO2 + 2 H2O"]],"b":[["antiprotozoal/azadirone.html","azadirone"]]},{"id":"CHEBI:76944","l":"13-epi-manool","na":1,"nb":1,"a":[["RHEA%3A40015","(+)-copalyl diphosphate + H2O = 13-epi-manool + diphosphate"]],"b":[["antifungal/13-epi-manool.html","13-epi-manool"]]},{"id":"CHEBI:76945","l":"manool","na":1,"nb":1,"a":[["RHEA%3A40011","(+)-copalyl diphosphate + H2O = manool + diphosphate"]],"b":[["antibacterial/manool.html","manool"]]},{"id":"CHEBI:77009","l":"5-O-β-D-mycaminosyl-20-oxotylonolide","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CGM","CGM-binding site"]],"b":[["unspecified/5-o-%CE%B2-d-mycaminosyl-20-oxotylonolide.html","5-O-β-D-mycaminosyl-20-oxotylonolide"]]},{"id":"CHEBI:77181","l":"crystal violet cation","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CVI","CVI-binding site"]],"b":[["antibacterial/crystal-violet-cation.html","crystal violet cation"]]},{"id":"CHEBI:77474","l":"(9Z,12Z,15Z)-octadecatrien-1-ol","na":1,"nb":1,"a":[["RHEA%3A40707","(9Z,12Z,15Z)-octadecatrien-1-ol + 1-hexadecanoylglycerone 3-phosphate = 1-O-(9Z,12Z,15Z)-octadecatrienylglycerone 3-phosphate + hexadecanoate + H(+)"]],"b":[["antibacterial/9z-12z-15z-octadecatrien-1-ol.html","(9Z,12Z,15Z)-octadecatrien-1-ol"]]},{"id":"CHEBI:77845","l":"7-aminocholesterol","na":1,"nb":1,"a":[["TCDB%3A9.A.26","The Lipid-translocating Exporter (LTE) Family"]],"b":[["antibacterial/7-aminocholesterol.html","7-aminocholesterol"]]},{"id":"CHEBI:79034","l":"monacolin J","na":1,"nb":1,"a":[["RHEA%3A62748","lovastatin + H2O = monacolin J + (S)-2-methylbutanoate + H(+)"]],"b":[["unspecified/monacolin-j.html","monacolin J"]]},{"id":"CHEBI:7934","l":"paromomycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PAR","PAR-binding site"]],"b":[["antibacterial/paromomycin.html","paromomycin"]]},{"id":"CHEBI:79391","l":"(−)-chuangxinmycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9E0","9E0-binding site"]],"b":[["antibacterial/chuangxinmycin.html","(−)-chuangxinmycin"]]},{"id":"CHEBI:79394","l":"indolmycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_5BX","5BX-binding site"]],"b":[["antibacterial/indolmycin.html","indolmycin"]]},{"id":"CHEBI:8062","l":"phenethyl caffeate","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_QAP","QAP-binding site"]],"b":[["antibacterial/phenethyl-caffeate.html","phenethyl caffeate"]]},{"id":"CHEBI:80751","l":"(S)-goitrin","na":1,"nb":1,"a":[["RHEA%3A69292","(Z)-(2R)-2-hydroxy-3-butenyl-N-(sulfonatooxy)methanimidothioate = goitrin + sulfate"]],"b":[["antiviral/s-goitrin.html","(S)-goitrin"]]},{"id":"CHEBI:81724","l":"diminazene","na":1,"nb":1,"a":[["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"]],"b":[["antiprotozoal/diminazene.html","diminazene"]]},{"id":"CHEBI:81761","l":"etridiazole","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/etridiazole.html","etridiazole"]]},{"id":"CHEBI:8232","l":"piperacillin","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/piperacillin.html","piperacillin"]]},{"id":"CHEBI:82754","l":"microcin c","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["unspecified/microcin-c.html","microcin c"]]},{"id":"CHEBI:82809","l":"agrocin 84","na":1,"nb":1,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["unspecified/agrocin-84.html","agrocin 84"]]},{"id":"CHEBI:83147","l":"","na":1,"nb":1,"a":[["RHEA%3A83179","a steroid + reduced [NADPH--hemoprotein reductase] + O2 = a 15alpha-hydroxy steroid + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["antifungal/9%CE%BE-14%CE%BE-25s-cholestane-3%CE%B2-4%CE%B2-6%CE%B2-7%CE%B1-8-15%CE%B1-16%CE%B2-26-octol.html","(9ξ,14ξ,25S)-cholestane-3β,4β,6β,7α,8,15α,16β,26-octol"]]},{"id":"CHEBI:8417","l":"pristinamycin IA","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/pristinamycin-ia.html","pristinamycin IA"]]},{"id":"CHEBI:84587","l":"","na":1,"nb":1,"a":[["RHEA%3A44724","2,3-saturated fatty aldehyde + NADP(+) = (2E)-fatty aldehyde + NADPH + H(+)"]],"b":[["unspecified/pentadecanal.html","pentadecanal"]]},{"id":"CHEBI:84588","l":"","na":1,"nb":1,"a":[["RHEA%3A44724","2,3-saturated fatty aldehyde + NADP(+) = (2E)-fatty aldehyde + NADPH + H(+)"]],"b":[["antibacterial/e-dodec-2-enal.html","(E)-dodec-2-enal"]]},{"id":"CHEBI:85083","l":"sofosbuvir","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_WG6","WG6-binding site"]],"b":[["antiviral/sofosbuvir.html","sofosbuvir"]]},{"id":"CHEBI:85273","l":"(R)-flumequine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_7X9","7X9-binding site"]],"b":[["unspecified/r-flumequine.html","(R)-flumequine"]]},{"id":"CHEBI:85412","l":"mitomycin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MQA","MQA-binding site"]],"b":[["unspecified/mitomycin-a.html","mitomycin A"]]},{"id":"CHEBI:8673","l":"pyrimethamine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CP6","CP6-binding site"]],"b":[["antiprotozoal/pyrimethamine.html","pyrimethamine"]]},{"id":"CHEBI:87185","l":"florfenicol","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/florfenicol.html","florfenicol"]]},{"id":"CHEBI:87805","l":"ethionamide S-oxide","na":1,"nb":1,"a":[["RHEA%3A47616","ethionamide + NADPH + O2 + H(+) = ethionamide S-oxide + NADP(+) + H2O"]],"b":[["antimycobacterial/ethionamide-s-oxide.html","ethionamide S-oxide"]]},{"id":"CHEBI:90531","l":"sotrastaurin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_LW4","LW4-binding site"]],"b":[["antiviral/sotrastaurin.html","sotrastaurin"]]},{"id":"CHEBI:9168","l":"sirolimus","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RAP","RAP-binding site"]],"b":[["antibacterial/sirolimus.html","sirolimus"]]},{"id":"CHEBI:9212","l":"sparfloxacin","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/sparfloxacin.html","sparfloxacin"]]},{"id":"CHEBI:92181","l":"lasalocid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_LSD","LSD-binding site"]],"b":[["antiprotozoal/lasalocid.html","lasalocid"]]},{"id":"CHEBI:92257","l":"IKK16","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_V17","V17-binding site"]],"b":[["antiprotozoal/ikk16.html","IKK16"]]},{"id":"CHEBI:9328","l":"sulfadiazine","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antiprotozoal/sulfadiazine.html","sulfadiazine"]]},{"id":"CHEBI:9337","l":"sulfathiazole","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["unspecified/sulfathiazole.html","sulfathiazole"]]},{"id":"CHEBI:9448","l":"terbinafine","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/terbinafine.html","terbinafine"]]},{"id":"CHEBI:9661","l":"triacetin","na":1,"nb":1,"a":[["RHEA%3A48028","triacetin + H2O = diacetylglycerol + acetate + H(+)"]],"b":[["antifungal/triacetin.html","triacetin"]]},{"id":"CHEBI:9688","l":"trichodermin","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/trichodermin.html","trichodermin"]]},{"id":"CHEBI:9691","l":"piperyline","na":1,"nb":1,"a":[["RHEA%3A73663","pyrrolidine + (E,E)-piperoyl-CoA = piperyline + CoA + H(+)"]],"b":[["antifungal/piperyline.html","piperyline"]]},{"id":"NCBITaxon:1764","l":"Mycobacterium avium","na":1,"nb":1,"a":[["Pfam%3APF01882","Protein of unknown function DUF58"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":1,"nb":1,"a":[["Pfam%3APF26312","Domain of unknown function (DUF8083)"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"NCBITaxon:263","l":"Francisella tularensis","na":1,"nb":1,"a":[["TED%3AAF-A0A6I4RUC7-F1-model_v4_TED02","TED novel fold AF-A0A6I4RUC7-F1-model_v4_TED02"]],"b":[["unspecified/%CE%B1-mangostin.html","α-mangostin"]]},{"id":"NCBITaxon:271","l":"Thermus aquaticus","na":1,"nb":1,"a":[["Pfam%3APF07669","Eco57I restriction-modification methylase"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":1,"nb":1,"a":[["Pfam%3APF07335","Fungal chitosanase of glycosyl hydrolase group 75"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"NCBITaxon:5082","l":"Penicillium roqueforti","na":1,"nb":1,"a":[["Pfam%3APF07573","Nitrogen regulatory protein AreA N terminus"]],"b":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]]},{"id":"NCBITaxon:5127","l":"Fusarium fujikuroi","na":1,"nb":1,"a":[["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"NCBITaxon:5141","l":"Neurospora crassa","na":1,"nb":1,"a":[["TED%3AAF-A0A0B0E1R4-F1-model_v4_TED01","TED novel fold AF-A0A0B0E1R4-F1-model_v4_TED01"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"NCBITaxon:53446","l":"Streptomyces cinnamoneus","na":1,"nb":1,"a":[["TED%3AAF-A0A2S6XSK0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S6XSK0-F1-model_v4_TED01"]],"b":[["antibacterial/bicozamycin.html","bicozamycin"]]},{"id":"NCBITaxon:68280","l":"Streptomyces violaceusniger","na":1,"nb":1,"a":[["TED%3AAF-A0A0X3VKA0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0X3VKA0-F1-model_v4_TED01"]],"b":[["antibacterial/nigericin.html","nigericin"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A5C7XIK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7XIK2-F1-model_v4_TED01"]],"b":[["antibacterial/lysocin-e.html","lysocin E"]]},{"id":"UniProt:B8N2C8","l":"","na":1,"nb":1,"a":[["EC%3A1.14.14.154","sterol 14alpha-demethylase"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"UniProt:O30463","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TOP","TOP-binding site"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"UniProt:P0A017","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_0U5","0U5-binding site"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"UniProt:P13955","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TOP","TOP-binding site"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"UniProt:P42535","l":"","na":1,"nb":1,"a":[["EC%3A1.14.13.50","pentachlorophenol monooxygenase"]],"b":[["antifungal/pentachlorophenol.html","pentachlorophenol"]]},{"id":"UniProt:P50859","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_1YN","1YN-binding site"]],"b":[["antifungal/fluconazole.html","fluconazole"]]},{"id":"UniProt:Q5ALV2","l":"","na":1,"nb":1,"a":[["Pfam%3APF08226","Domain of unknown function (DUF1720)"]],"b":[["antifungal/fluconazole.html","fluconazole"]]},{"id":"UniProt:Q81R22","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_N22","N22-binding site"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/ProteinTraitsMech--NaturalProductMech.json b/assets/fleet/edges/ProteinTraitsMech--NaturalProductMech.json index f537abb..dd14b9b 100644 --- a/assets/fleet/edges/ProteinTraitsMech--NaturalProductMech.json +++ b/assets/fleet/edges/ProteinTraitsMech--NaturalProductMech.json @@ -1 +1 @@ -{"a":"ProteinTraitsMech","b":"NaturalProductMech","base":{"ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record=","NaturalProductMech":"https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/natural_products/"},"n":794,"by":{"NCBITaxon":487,"UniProt":156,"CHEBI":148,"RHEA":3},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":145,"nb":24,"a":[["IDPO%3A0000033","flexible linker"],["IDPO%3A0000014","order to disorder"],["IDPO%3A0000004","pre-molten globule"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":32,"nb":23,"a":[["Pfam%3APF25848","Rodlin protein"],["Pfam%3APF13420","Acetyltransferase (GNAT) domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF26381","BREX System ATPase PglY protein 5th domain"],["Pfam%3APF26382","BREX System ATPase PglY protein 6th domain"]],"b":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/melanin.yaml","melanin"],["alkaloids/undecylprodigiosin.yaml","undecylprodigiosin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/sapb.yaml","SapB"]]},{"id":"NCBITaxon:227321","l":"Emericella nidulans (strain FGSC A4 / ATCC 38163 / CBS 112.46 / NRRL 194 / M139)","na":44,"nb":22,"a":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF05270","Alpha-L-arabinofuranosidase B (ABFB) domain"],["Pfam%3APF07792","Docking domain of Afi1 for Arf3 in vesicle trafficking"],["Pfam%3APF09206","Alpha-L-arabinofuranosidase B, catalytic"],["Pfam%3APF27751","ATEG_07667 C-terminal domain"],["Pfam%3APF20238","Copper acquisition factor BIM1-like"]],"b":[["alkaloids/aspernidine-a.yaml","aspernidine A"],["alkaloids/aspyridone-a.yaml","aspyridone A"],["alkaloids/aspyridone-b.yaml","aspyridone B"],["alkaloids/cichorine.yaml","cichorine"],["alkaloids/terrequinone-a.yaml","terrequinone A"],["amino_acids_and_peptides/fellutamide-b.yaml","fellutamide B"]]},{"id":"NCBITaxon:77133","l":"uncultured bacterium","na":22,"nb":34,"a":[["TED%3AAF-A0A059X489-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A059X489-F1-model_v4_TED02"],["TED%3AAF-A0A059X769-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A059X769-F1-model_v4_TED01"],["TED%3AAF-K1YCK5-F1-model_v4_TED02","TED highly-symmetric fold AF-K1YCK5-F1-model_v4_TED02"],["TED%3AAF-K1Z363-F1-model_v4_TED05","TED highly-symmetric fold AF-K1Z363-F1-model_v4_TED05"],["TED%3AAF-K1ZVQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-K1ZVQ3-F1-model_v4_TED01"],["TED%3AAF-K2AKZ9-F1-model_v4_TED01","TED highly-symmetric fold AF-K2AKZ9-F1-model_v4_TED01"]],"b":[["alkaloids/borregomycin-a.yaml","borregomycin A"],["alkaloids/borregomycin-b.yaml","borregomycin B"],["alkaloids/borregomycin-c.yaml","borregomycin C"],["alkaloids/borregomycin-d.yaml","borregomycin D"],["alkaloids/erdasporine-a.yaml","erdasporine A"],["alkaloids/erdasporine-b.yaml","erdasporine B"]]},{"id":"UniProt:P43405","l":"","na":32,"nb":17,"a":[["GO%3A0019815","B cell receptor complex"],["GO%3A0042101","T cell receptor complex"],["GO%3A0016170","interleukin-15 receptor binding"],["GO%3A0004715","non-membrane spanning protein tyrosine kinase activity"],["GO%3A0035325","Toll-like receptor binding"],["GO%3A0002752","cell surface pattern recognition receptor signaling pathway"]],"b":[["alkaloids/cytochalasin-e.yaml","cytochalasin E"],["alkaloids/fumiquinazoline-a.yaml","fumiquinazoline A"],["alkaloids/fumiquinazoline-d.yaml","fumiquinazoline D"],["alkaloids/psilocybin.yaml","psilocybin"],["amino_acids_and_peptides/epoxomicin.yaml","epoxomicin"],["amino_acids_and_peptides/tubulysin-a.yaml","tubulysin A"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":16,"nb":27,"a":[["Pfam%3APF16822","SGNH hydrolase-like domain, acetyltransferase AlgX"],["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"],["Pfam%3APF11182","Alginate O-acetyl transferase AlgF"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF27129","Functional amyloid protein FapB/FapC family"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]],"b":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["alkaloids/pseudomonine.yaml","pseudomonine"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyreudione-c.yaml","pyreudione C"],["alkaloids/quinolobactin.yaml","quinolobactin"]]},{"id":"UniProt:O96028","l":"","na":27,"nb":16,"a":[["ComplexPortal%3ACPX-16414","-"],["CDD%3Acd20162","PWWP_NSD2_rpt1"],["CDD%3Acd21991","HMG-box_NSD2"],["CDD%3Acd15648","PHD1_NSD1_2"],["CDD%3Acd15651","PHD2_NSD2"],["CDD%3Acd15654","PHD3_NSD2"]],"b":[["alkaloids/cytochalasin-e.yaml","cytochalasin E"],["alkaloids/fumiquinazoline-d.yaml","fumiquinazoline D"],["amino_acids_and_peptides/epoxomicin.yaml","epoxomicin"],["amino_acids_and_peptides/tubulysin-a.yaml","tubulysin A"],["carbohydrates/puromycin.yaml","puromycin"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":16,"a":[["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["Pfam%3APF14562","Restriction endonuclease BglI"],["Pfam%3APF09195","Restriction endonuclease BglII/BglIII"],["Pfam%3APF09208","Restriction endonuclease MspI"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["amino_acids_and_peptides/ericin-s.yaml","ericin S"],["amino_acids_and_peptides/iturin.yaml","iturin"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"]]},{"id":"NCBITaxon:330879","l":"Aspergillus fumigatus (strain ATCC MYA-4609 / CBS 101355 / FGSC A1100 / Af293)","na":34,"nb":14,"a":[["Pfam%3APF22624","4'-phosphopantetheinyl transferase, N-terminal"],["Pfam%3APF13523","Acetyltransferase (GNAT) domain"],["Pfam%3APF28338","AclK C-terminal domain"],["Pfam%3APF23297","Highly reducing polyketide synthase sdgA, C-terminal ACP domain"],["Pfam%3APF11001","YDR124W-like, helical bundle domain"],["Pfam%3APF25312","Allergen Asp f 4-like domain"]],"b":[["alkaloids/fumigaclavine-c.yaml","fumigaclavine C"],["alkaloids/fumiquinazoline-a.yaml","fumiquinazoline A"],["alkaloids/fumiquinazoline-c.yaml","fumiquinazoline C"],["alkaloids/fumiquinazoline-d.yaml","fumiquinazoline D"],["alkaloids/hexadehydroastechrome.yaml","hexadehydroastechrome"],["polyketides/endocrocin.yaml","endocrocin"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":49554,"nb":13,"a":[["EC%3A1.1.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.1.98.-","With other, known, acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/congocidine.yaml","congocidine"],["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]]},{"id":"NCBITaxon:56","l":"Sorangium cellulosum","na":13,"nb":25,"a":[["TED%3AAF-A0A150SQB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A150SQB4-F1-model_v4_TED01"],["TED%3AAF-A0A2L0EP96-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0EP96-F1-model_v4_TED01"],["TED%3AAF-A0A2L0F1G5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0F1G5-F1-model_v4_TED01"],["TED%3AAF-A0A2L0F230-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0F230-F1-model_v4_TED01"],["TED%3AAF-A0A4P2R1W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P2R1W3-F1-model_v4_TED01"],["TED%3AAF-A0A150P579-F1-model_v4_TED02","TED novel fold AF-A0A150P579-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/microsclerodermin-m.yaml","microsclerodermin M"],["polyketides/ambruticin.yaml","ambruticin"],["polyketides/chivosazol.yaml","chivosazol"],["polyketides/chlorotonil-a.yaml","chlorotonil A"],["polyketides/disorazol-a.yaml","disorazol A"],["polyketides/etnangien.yaml","etnangien"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":19,"nb":12,"a":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"],["Pfam%3APF18173","Bacterial HORMA domain 2"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["Pfam%3APF27322","Cap8 HORMA domain"],["Pfam%3APF01526","Tn3 transposase DDE domain"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:341663","l":"","na":11,"nb":17,"a":[["Pfam%3APF27751","ATEG_07667 C-terminal domain"],["Pfam%3APF28386","BfoA family C-terminal domain"],["Pfam%3APF03879","Cgr1 family"],["Pfam%3APF22621","CurL-like, PKS C-terminal"],["Pfam%3APF18558","Methyltransferase, Helix-turn-helix domain"],["Pfam%3APF06355","Aegerolysin"]],"b":[["alkaloids/asterriquinone-ct5.yaml","asterriquinone CT5"],["alkaloids/dihydroisoflavipucine.yaml","dihydroisoflavipucine"],["alkaloids/isoflavipucine.yaml","isoflavipucine"],["polyketides/citreoviridin.yaml","citreoviridin"],["polyketides/geodin.yaml","geodin"],["polyketides/terreic-acid.yaml","terreic acid"]]},{"id":"NCBITaxon:3702","l":"Arabidopsis thaliana","na":18772,"nb":10,"a":[["EC%3A1.1.99.-","With other acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.14.11.-","With 2-oxoglutarate as one donor, and incorporation of one atom each of oxygen into both donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.14.-","With reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/itaconic-acid.yaml","itaconic acid"],["terpenoids/ent-quiannulatene.yaml","(-)-ent-quiannulatene"],["terpenoids/euphol.yaml","euphol"],["terpenoids/marneral.yaml","marneral"],["terpenoids/thaliandiol.yaml","thaliandiol"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa (strain ATCC 15692 / DSM 22644 / CIP 104116 / JCM 14847 / LMG 12228 / 1C / PRS 101 / PAO1)","na":162,"nb":10,"a":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF06750","Bacterial Peptidase A24 N-terminal domain"],["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF28403","Aconitase X second domain"],["Pfam%3APF28406","Aconitase X third domain"],["Pfam%3APF04412","Aconitase X first domain"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae (strain ATCC 42149 / RIB 40)","na":27,"nb":10,"a":[["Pfam%3APF09260","Alpha-amylase, domain C"],["Pfam%3APF28338","AclK C-terminal domain"],["Pfam%3APF09206","Alpha-L-arabinofuranosidase B, catalytic"],["Pfam%3APF28380","Sesquiterpene cyclase astC-like C-terminal domain"],["Pfam%3APF13364","Beta-galactosidase second all-beta domain"],["Pfam%3APF10435","Beta-galactosidase, domain 2"]],"b":[["fatty_acids/oryzine-a.yaml","oryzine A"],["polyketides/kojic-acid.yaml","kojic acid"],["polyketides/oryzine-b.yaml","oryzine B"],["polyketides/ywa1.yaml","YWA1"],["shikimates_and_phenylpropanoids/2-4-dihydroxy-3-methoxypropiophenone.yaml","2,4'-dihydroxy-3'-methoxypropiophenone"],["shikimates_and_phenylpropanoids/8-methyldiaporthin.yaml","8-methyldiaporthin"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":10,"nb":11,"a":[["Pfam%3APF17433","Glycosyl hydrolase family 49 N-terminal Ig-like domain"],["PROSITE%3APS00820","Glucoamylase active site region signature"],["PROSITE%3APS00920","Nitrilases / cyanide hydratase signature 1"],["PROSITE%3APS00502","Polygalacturonase active site"],["Pfam%3APF18841","Beta solenoid repeat from Dextranase"],["Pfam%3APF03718","Glycosyl hydrolase family 49"]],"b":[["amino_acids_and_peptides/ferrichrome.yaml","ferrichrome"],["polyketides/1-2-3-5-10-tetrahydroxy-7-methoxy-4-oxo-1-2-3-4-tetrahydroanthracen-2-yl-pentane.yaml","1-(2,3,5,10-tetrahydroxy-7-methoxy-4-oxo-1,2,3,4-tetrahydroanthracen-2-yl)pentane-2,4-dione"],["polyketides/azanigerone-a.yaml","azanigerone A"],["polyketides/campyrone-b.yaml","campyrone B"],["polyketides/desmethyl-tan-1612.yaml","desmethyl TAN-1612"],["polyketides/fumonisin-b2.yaml","fumonisin B2"]]},{"id":"NCBITaxon:242507","l":"","na":10,"nb":10,"a":[["Pfam%3APF28293","Biotrophy-associated secreted protein 2"],["Pfam%3APF28414","Biotrophy-associated secreted protein 4"],["Pfam%3APF22997","Chitin synthase 4-like domain"],["Pfam%3APF27979","CON7 transcription factor helical domain"],["Pfam%3APF26980","Dicer-like protein 2, dsRNA binding domain"],["Pfam%3APF11327","Egh16-like virulence factor"]],"b":[["polyketides/1-alpha-l-2-o-methyl-6-deoxymannopyranosyloxy-3-6-8-trimethoxynaphthalene.yaml","1-(alpha-l-(2-O-methyl)-6-deoxymannopyranosyloxy)-3,6,8-trimethoxynaphthalene"],["polyketides/10-11-dihydroxymagnaporthepyrone.yaml","10,11-dihydroxymagnaporthepyrone"],["polyketides/12-13-dihydroxymagnaporthepyrone.yaml","12,13-dihydroxymagnaporthepyrone"],["polyketides/epipyriculol.yaml","epipyriculol"],["polyketides/naphthalene-1-3-6-8-tetrol.yaml","naphthalene-1,3,6,8-tetrol"],["polyketides/nectriapyrone-c.yaml","nectriapyrone C"]]},{"id":"UniProt:P18054","l":"","na":25,"nb":9,"a":[["EC%3A1.13.11.31","arachidonate 12-lipoxygenase"],["EC%3A1.13.11.33","arachidonate 15-lipoxygenase"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"],["RHEA%3A10428","(5Z,8Z,11Z,14Z)-eicosatetraenoate + O2 = (12S)-hydroperoxy-(5Z,8Z,10E,14Z)-eicosatetraenoate"],["RHEA%3A16869","(5Z,8Z,11Z,14Z)-eicosatetraenoate + O2 = (15S)-hydroperoxy-(5Z,8Z,11Z,13E)-eicosatetraenoate"],["GO%3A0004052","arachidonate 12(S)-lipoxygenase activity"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/actinonin.yaml","actinonin"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"],["fatty_acids/triacsin-c.yaml","triacsin C"],["polyketides/terreic-acid.yaml","terreic acid"],["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:Q96RU2","l":"","na":14,"nb":9,"a":[["ComplexPortal%3ACPX-15530","-"],["ComplexPortal%3ACPX-15595","-"],["ComplexPortal%3ACPX-15768","-"],["ComplexPortal%3ACPX-24431","-"],["InterPro%3AIPR054108","Ubiquitin carboxyl-terminal hydrolase 25/28, UIM"],["CDD%3Acd02665","Peptidase_C19I"]],"b":[["alkaloids/esmeraldin.yaml","esmeraldin"],["alkaloids/fervenulin.yaml","fervenulin"],["alkaloids/neocarazostatin-a.yaml","neocarazostatin A"],["alkaloids/nybomycin.yaml","nybomycin"],["amino_acids_and_peptides/tyrocidine-a.yaml","tyrocidine A"],["polyketides/asukamycin.yaml","asukamycin"]]},{"id":"UniProt:O95398","l":"","na":20,"nb":8,"a":[["ComplexPortal%3ACPX-10829","-"],["ComplexPortal%3ACPX-12123","-"],["ComplexPortal%3ACPX-12892","-"],["ComplexPortal%3ACPX-13579","-"],["ComplexPortal%3ACPX-13585","-"],["ComplexPortal%3ACPX-14152","-"]],"b":[["alkaloids/8-azaguanine.yaml","8-azaguanine"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/thiostrepton.yaml","thiostrepton"],["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"],["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK1622","na":8,"nb":12,"a":[["Pfam%3APF27281","DevT C-terminal domain"],["Pfam%3APF27372","DevT N-terminal domain"],["Pfam%3APF17762","ParB HTH domain"],["Pfam%3APF01930","Domain of unknown function DUF83"],["Pfam%3APF09559","Cas6 Crispr"],["Pfam%3APF01905","CRISPR-associated negative auto-regulator DevR/Csa2"]],"b":[["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"],["amino_acids_and_peptides/myxochromide-a.yaml","myxochromide A"],["amino_acids_and_peptides/myxoprincomide-c506.yaml","myxoprincomide-c506"]]},{"id":"NCBITaxon:229533","l":"Fusarium graminearum PH-1","na":8,"nb":11,"a":[["Pfam%3APF18388","Atg29 N-terminal domain"],["Pfam%3APF27599","CcsR C-terminal domain"],["Pfam%3APF07110","EthD domain"],["Pfam%3APF11700","Vacuole effluxer Atg22 like"],["Pfam%3APF28504","Gramillins biosynthetic cluster protein GRA5"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"]],"b":[["alkaloids/chrysogine.yaml","chrysogine"],["amino_acids_and_peptides/fusaoctaxin-a.yaml","fusaoctaxin A"],["polyketides/aurofusarin.yaml","aurofusarin"],["polyketides/prolipyrone-b.yaml","prolipyrone B"],["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"],["terpenoids/15-acetyldeoxynivalenol.yaml","15-acetyldeoxynivalenol"]]},{"id":"NCBITaxon:1911","l":"Streptomyces griseus","na":7,"nb":32,"a":[["Pfam%3APF13207","AAA domain"],["Pfam%3APF27054","Beta-methylindole-3-pyruvate reductase C-terminal domain"],["Pfam%3APF26558","3-dehydroquinate synthase II C-terminal domain"],["Pfam%3APF01959","3-dehydroquinate synthase II N-terminal domain"],["Pfam%3APF13459","4Fe-4S single cluster domain"],["Pfam%3APF04655","Aminoglycoside/hydroxyurea antibiotic resistance kinase"]],"b":[["alkaloids/cycloheximide.yaml","cycloheximide"],["alkaloids/grixazone-a.yaml","grixazone A"],["alkaloids/iminimycin-a.yaml","iminimycin A"],["alkaloids/iminimycin-b.yaml","iminimycin B"],["alkaloids/indolmycin.yaml","indolmycin"],["alkaloids/melanin.yaml","melanin"]]},{"id":"NCBITaxon:223283","l":"Pseudomonas syringae pv. tomato (strain ATCC BAA-871 / DC3000)","na":14,"nb":7,"a":[["IDPO%3A0000030","entropic chain"],["IDPO%3A0000037","molecular recognition display site"],["Pfam%3APF16847","Avirulence AvrPtoB, BAK1-binding domain"],["Pfam%3APF09046","AvrPtoB E3 ubiquitin ligase"],["Pfam%3APF25965","ALG44 beta-barrel domain"],["Pfam%3APF25964","ALG44, barrel-sandwich hybrid domain"]],"b":[["alkaloids/yersiniabactin.yaml","yersiniabactin"],["amino_acids_and_peptides/syringafactin-a.yaml","syringafactin A"],["amino_acids_and_peptides/syringafactin-b.yaml","syringafactin B"],["amino_acids_and_peptides/syringafactin-c.yaml","syringafactin C"],["amino_acids_and_peptides/syringafactin-d.yaml","syringafactin D"],["amino_acids_and_peptides/syringafactin-e.yaml","syringafactin E"]]},{"id":"NCBITaxon:27334","l":"Penicillium expansum","na":7,"nb":10,"a":[["Pfam%3APF11786","Aft1 HRA domain"],["Pfam%3APF11787","Aft1 HRR domain"],["Pfam%3APF11785","Aft1 osmotic stress response (OSM) domain"],["Pfam%3APF14856","Pathogen effector; putative necrosis-inducing factor"],["PROSITE%3APS00624","GMC oxidoreductases signature 2"],["TED%3AAF-A0A0A2ILJ4-F1-model_v4_TED03","TED novel fold AF-A0A0A2ILJ4-F1-model_v4_TED03"]],"b":[["alkaloids/chaetoglobosin-a.yaml","chaetoglobosin A"],["alkaloids/chaetoglobosin-c.yaml","chaetoglobosin C"],["alkaloids/communesin-a.yaml","communesin A"],["alkaloids/communesin-b.yaml","communesin B"],["alkaloids/communesin-c.yaml","communesin C"],["alkaloids/communesin-d.yaml","communesin D"]]},{"id":"NCBITaxon:2024858","l":"","na":7,"nb":7,"a":[["TED%3AAF-A0A2D9T9L6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9T9L6-F1-model_v4_TED01"],["TED%3AAF-A0A2E0T9R7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0T9R7-F1-model_v4_TED01"],["TED%3AAF-A0A891ZV95-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A891ZV95-F1-model_v4_TED01"],["TED%3AAF-A0A2D9SYS7-F1-model_v4_TED02","TED novel fold AF-A0A2D9SYS7-F1-model_v4_TED02"],["TED%3AAF-A0A2D9TFN8-F1-model_v4_TED02","TED novel fold AF-A0A2D9TFN8-F1-model_v4_TED02"],["TED%3AAF-A0A2E0TMV1-F1-model_v4_TED03","TED novel fold AF-A0A2E0TMV1-F1-model_v4_TED03"]],"b":[["amino_acids_and_peptides/sandarazol-a.yaml","sandarazol A"],["amino_acids_and_peptides/sandarazol-c.yaml","sandarazol C"],["amino_acids_and_peptides/sandarazol-d.yaml","sandarazol D"],["amino_acids_and_peptides/sandarazol-f.yaml","sandarazol F"],["amino_acids_and_peptides/sandarazol-g.yaml","sandarazol G"],["unclassified/sandarazol-b.yaml","sandarazol B"]]},{"id":"UniProt:Q14694","l":"","na":27,"nb":6,"a":[["ComplexPortal%3ACPX-11609","-"],["ComplexPortal%3ACPX-11855","-"],["ComplexPortal%3ACPX-12223","-"],["ComplexPortal%3ACPX-12431","-"],["ComplexPortal%3ACPX-12812","-"],["ComplexPortal%3ACPX-13824","-"]],"b":[["alkaloids/esmeraldin.yaml","esmeraldin"],["alkaloids/fervenulin.yaml","fervenulin"],["alkaloids/nybomycin.yaml","nybomycin"],["polyketides/asukamycin.yaml","asukamycin"],["polyketides/dehydrorabelomycin.yaml","dehydrorabelomycin"],["polyketides/flaviolin.yaml","flaviolin"]]},{"id":"UniProt:Q99700","l":"","na":20,"nb":6,"a":[["ComplexPortal%3ACPX-12180","-"],["ComplexPortal%3ACPX-12321","-"],["ComplexPortal%3ACPX-12947","-"],["ComplexPortal%3ACPX-13401","-"],["ComplexPortal%3ACPX-15183","-"],["ComplexPortal%3ACPX-17860","-"]],"b":[["alkaloids/8-azaguanine.yaml","8-azaguanine"],["alkaloids/cycloheximide.yaml","cycloheximide"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"],["unclassified/antimycin-a.yaml","antimycin A"],["unclassified/echinomycin.yaml","echinomycin"]]},{"id":"NCBITaxon:1916","l":"Streptomyces lividans","na":6,"nb":18,"a":[["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["Pfam%3APF27079","SpdB plasmid transfer protein, C-terminal HTH domain"],["Pfam%3APF27072","KilB plasmid transfer protein"],["Pfam%3APF08386","TAP-like protein"],["PROSITE%3APS00999","Streptomyces subtilisin-type inhibitors signature"],["Pfam%3APF03664","Glycosyl hydrolase family 62"]],"b":[["alkaloids/rebeccamycin.yaml","rebeccamycin"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["amino_acids_and_peptides/dehydroxynocardamine.yaml","dehydroxynocardamine"],["amino_acids_and_peptides/goadsporin.yaml","goadsporin"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"]]},{"id":"NCBITaxon:4577","l":"Zea mays","na":18,"nb":6,"a":[["IDPO%3A0000002","disorder"],["Pfam%3APF14861","Plant antimicrobial peptide"],["Pfam%3APF02041","Auxin binding protein"],["Pfam%3APF25436","BSD2 cysteine rich domain"],["Pfam%3APF23493","Cysteinyl-tRNA ligase anticodon binding domain"],["Pfam%3APF03330","Lytic transglycolase"]],"b":[["alkaloids/dimboa.yaml","DIMBOA"],["polyketides/emodin.yaml","emodin"],["terpenoids/zealexin-a1.yaml","zealexin A1"],["terpenoids/zealexin-b3.yaml","zealexin B3"],["terpenoids/zealexin-c2.yaml","zealexin C2"],["unclassified/aflatoxin.yaml","aflatoxin"]]},{"id":"UniProt:P40818","l":"","na":16,"nb":6,"a":[["ComplexPortal%3ACPX-13765","-"],["ComplexPortal%3ACPX-16972","-"],["ComplexPortal%3ACPX-18301","-"],["ComplexPortal%3ACPX-19098","-"],["ComplexPortal%3ACPX-24015","-"],["GO%3A0004843","cysteine-type deubiquitinase activity"]],"b":[["alkaloids/esmeraldin.yaml","esmeraldin"],["alkaloids/fervenulin.yaml","fervenulin"],["alkaloids/neocarazostatin-a.yaml","neocarazostatin A"],["alkaloids/nybomycin.yaml","nybomycin"],["polyketides/dehydrorabelomycin.yaml","dehydrorabelomycin"],["polyketides/flaviolin.yaml","flaviolin"]]},{"id":"NCBITaxon:321614","l":"","na":6,"nb":12,"a":[["Pfam%3APF11786","Aft1 HRA domain"],["Pfam%3APF11787","Aft1 HRR domain"],["Pfam%3APF26980","Dicer-like protein 2, dsRNA binding domain"],["Pfam%3APF18973","Putative Chitin binding like"],["Pfam%3APF25326","SRB8 ARM-like domain"],["TED%3AAF-A0A7U2I0S3-F1-model_v4_TED02","TED novel fold AF-A0A7U2I0S3-F1-model_v4_TED02"]],"b":[["alkaloids/phomacin-d.yaml","phomacin D"],["alkaloids/phomacin-e.yaml","phomacin E"],["polyketides/betaenone-b.yaml","betaenone B"],["polyketides/betaenone-c.yaml","betaenone C"],["polyketides/compound-3-2.yaml","compound 3"],["polyketides/compound-5-2.yaml","compound 5"]]},{"id":"UniProt:Q70CQ3","l":"","na":11,"nb":6,"a":[["ComplexPortal%3ACPX-14824","-"],["ComplexPortal%3ACPX-15800","-"],["ComplexPortal%3ACPX-20518","-"],["ComplexPortal%3ACPX-22415","-"],["ComplexPortal%3ACPX-22784","-"],["GO%3A0035871","protein K11-linked deubiquitination"]],"b":[["alkaloids/esmeraldin.yaml","esmeraldin"],["alkaloids/fervenulin.yaml","fervenulin"],["alkaloids/holomycin.yaml","holomycin"],["alkaloids/neocarazostatin-a.yaml","neocarazostatin A"],["polyketides/flaviolin.yaml","flaviolin"],["polyketides/nigericin.yaml","nigericin"]]},{"id":"UniProt:P09936","l":"","na":10,"nb":6,"a":[["GO%3A0031694","alpha-2A adrenergic receptor binding"],["GO%3A0008242","omega peptidase activity"],["InterPro%3AIPR057254","Ubiquitin carboxyl-terminal hydrolase family 1, cysteine active-site"],["CDD%3Acd09616","Peptidase_C12_UCH_L1_L3"],["InterPro%3AIPR001578","Peptidase C12, ubiquitin carboxyl-terminal hydrolase"],["Pfam%3APF01088","Ubiquitin carboxyl-terminal hydrolase, family 1"]],"b":[["alkaloids/esmeraldin.yaml","esmeraldin"],["alkaloids/fervenulin.yaml","fervenulin"],["polyketides/asukamycin.yaml","asukamycin"],["polyketides/chelocardin.yaml","chelocardin"],["polyketides/dehydrorabelomycin.yaml","dehydrorabelomycin"],["polyketides/flaviolin.yaml","flaviolin"]]},{"id":"NCBITaxon:10090","l":"Mus musculus","na":45870,"nb":5,"a":[["EC%3A1.1.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.1.98.-","With other, known, acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"],["terpenoids/carotene.yaml","β-carotene"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":46,"nb":5,"a":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF13166","AAA domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF27533","CapK C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"],["unclassified/leuvalin.yaml","leuvalin"],["unclassified/phevalin.yaml","phevalin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":5,"nb":31,"a":[["TED%3AAF-A0A4Y6CF56-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y6CF56-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6CNZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Y6CNZ1-F1-model_v4_TED02"],["TED%3AAF-A0A7Y4IIX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4IIX4-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6B7F9-F1-model_v4_TED01","TED novel fold AF-A0A4Y6B7F9-F1-model_v4_TED01"],["TED%3AAF-A0A7Y4IR70-F1-model_v4_TED01","TED novel fold AF-A0A7Y4IR70-F1-model_v4_TED01"]],"b":[["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["alkaloids/myxofacycline-e.yaml","myxofacycline E"],["alkaloids/myxofacycline-f.yaml","myxofacycline F"],["alkaloids/myxofacycline-g.yaml","myxofacycline G"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":25,"nb":5,"a":[["Pfam%3APF13372","Alginate export"],["Pfam%3APF25965","ALG44 beta-barrel domain"],["Pfam%3APF25964","ALG44, barrel-sandwich hybrid domain"],["Pfam%3APF16844","Dinitrogenase iron-molybdenum cofactor, N-terminal"],["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"]],"b":[["alkaloids/aminochelin.yaml","aminochelin"],["alkaloids/azotochelin.yaml","azotochelin"],["alkaloids/protochelin.yaml","protochelin"],["amino_acids_and_peptides/azotobactin-d.yaml","azotobactin D"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"UniProt:O14656","l":"","na":21,"nb":5,"a":[["ComplexPortal%3ACPX-21660","-"],["ComplexPortal%3ACPX-26140","-"],["ComplexPortal%3ACPX-26338","Cytoplasmic organelles"],["ComplexPortal%3ACPX-26301","Secretory organelles"],["GO%3A0008092","cytoskeletal protein binding"],["GO%3A0019894","kinesin binding"]],"b":[["alkaloids/chloramphenicol.yaml","chloramphenicol"],["alkaloids/cycloheximide.yaml","cycloheximide"],["alkaloids/tioguanine.yaml","tioguanine"],["amino_acids_and_peptides/cyclosporin-a.yaml","cyclosporin A"],["polyketides/daunorubicin.yaml","daunorubicin"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":20,"nb":5,"a":[["Pfam%3APF14535","AMP-binding enzyme C-terminal domain"],["Pfam%3APF13442","Cytochrome C oxidase, cbb3-type, subunit III"],["Pfam%3APF22247","Catechol 2,3-dioxygenase-like N-terminal domain"],["Pfam%3APF25371","Domain of unknown function (DUF7884)"],["Pfam%3APF19301","LigXa C-terminal domain like"],["Pfam%3APF12729","Four helix bundle sensory module for signal transduction"]],"b":[["alkaloids/promysalin.yaml","promysalin"],["polyketides/pseudopyronine-a.yaml","pseudopyronine A"],["polyketides/pseudopyronine-b.yaml","pseudopyronine B"],["unclassified/putisolvin-iii.yaml","putisolvin III"],["unclassified/putisolvin-v.yaml","putisolvin V"]]},{"id":"NCBITaxon:3562","l":"Spinacia oleracea","na":13,"nb":5,"a":[["Pfam%3APF21329","Peptidyl-prolyl cis-trans isomerase CYP38-like, PsbQ-like domain"],["Pfam%3APF02941","Ferredoxin thioredoxin reductase variable alpha chain"],["Pfam%3APF02943","Ferredoxin thioredoxin reductase catalytic beta chain"],["Pfam%3APF17257","Family of unknown function (DUF5323)"],["PROSITE%3APS00567","Phosphoribulokinase signature"],["PROSITE%3APS01026","Photosystem I psaG and psaK proteins signature"]],"b":[["terpenoids/yossoside-i.yaml","Yossoside I"],["terpenoids/yossoside-ii.yaml","Yossoside II"],["terpenoids/yossoside-iii.yaml","Yossoside III"],["terpenoids/yossoside-iv.yaml","Yossoside IV"],["terpenoids/yossoside-v.yaml","Yossoside V"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":13,"nb":5,"a":[["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF03173","Putative carbohydrate binding domain"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"],["Pfam%3APF06438","Heme-binding protein A (HasA)"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF05247","Flagellar transcriptional activator (FlhD)"]],"b":[["alkaloids/prodigiosin-2.yaml","prodigiosin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/serratiochelin-a.yaml","serratiochelin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["polyketides/oocydin-a.yaml","oocydin A"]]},{"id":"UniProt:P36969","l":"","na":12,"nb":5,"a":[["ComplexPortal%3ACPX-18066","-"],["GO%3A0047066","phospholipid-hydroperoxide glutathione peroxidase activity"],["GO%3A0008430","selenium binding"],["GO%3A0034599","cellular response to oxidative stress"],["InterPro%3AIPR029759","Glutathione peroxidase active site"],["InterPro%3AIPR029760","Glutathione peroxidase conserved site"]],"b":[["alkaloids/ergotamine.yaml","ergotamine"],["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"],["polyketides/pentamycin.yaml","pentamycin"],["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"],["unclassified/antimycin-a.yaml","antimycin A"]]},{"id":"NCBITaxon:5507","l":"Fusarium oxysporum","na":5,"nb":11,"a":[["Pfam%3APF02015","Glycosyl hydrolase family 45"],["PROSITE%3APS01140","Glycosyl hydrolases family 45 active site"],["TED%3AAF-A0A2H3TJY2-F1-model_v4_TED01","TED novel fold AF-A0A2H3TJY2-F1-model_v4_TED01"],["TED%3AAF-A0A420N954-F1-model_v4_TED01","TED novel fold AF-A0A420N954-F1-model_v4_TED01"],["TED%3AAF-A0A420P6J4-F1-model_v4_TED01","TED novel fold AF-A0A420P6J4-F1-model_v4_TED01"]],"b":[["alkaloids/fusaric-acid.yaml","fusaric acid"],["polyketides/bikaverin.yaml","bikaverin"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"],["polyketides/fumonisin-c1.yaml","Fumonisin C1"],["polyketides/fumonisin-c2.yaml","Fumonisin C2"],["polyketides/fumonisin-c3.yaml","Fumonisin C3"]]},{"id":"NCBITaxon:953739","l":"Streptomyces venezuelae ATCC 10712","na":5,"nb":10,"a":[["Pfam%3APF11583","P-aminobenzoate N-oxygenase AurF"],["Pfam%3APF18456","Diiron non-heme beta-hydroxylase N-terminal domain"],["Pfam%3APF07931","Chloramphenicol phosphotransferase-like protein"],["Pfam%3APF02650","WhiA C-terminal HTH domain"],["Pfam%3APF14527","WhiA LAGLIDADG-like domain"]],"b":[["alkaloids/chloramphenicol.yaml","chloramphenicol"],["alkaloids/gaburedin-d.yaml","gaburedin D"],["alkaloids/watasemycin-a.yaml","watasemycin A"],["alkaloids/watasemycin-b.yaml","watasemycin B"],["amino_acids_and_peptides/gaburedin-a.yaml","gaburedin A"],["amino_acids_and_peptides/gaburedin-b.yaml","gaburedin B"]]},{"id":"NCBITaxon:63737","l":"Nostoc punctiforme PCC 73102","na":5,"nb":7,"a":[["Pfam%3APF11266","Long-chain fatty aldehyde decarbonylase"],["Pfam%3APF21808","Bacterial dynamin-like protein, helical domain"],["Pfam%3APF18460","Heterocyst differentiation regulator C-terminal Hood domain"],["Pfam%3APF13619","KTSC domain"],["PROSITE%3APS01026","Photosystem I psaG and psaK proteins signature"]],"b":[["amino_acids_and_peptides/microviridin-n3.yaml","microviridin N3"],["amino_acids_and_peptides/microviridin-n4.yaml","microviridin N4"],["amino_acids_and_peptides/microviridin-n6.yaml","microviridin N6"],["amino_acids_and_peptides/microviridin-n7.yaml","microviridin N7"],["amino_acids_and_peptides/microviridin-n8.yaml","microviridin N8"],["amino_acids_and_peptides/microviridin-n9.yaml","microviridin N9"]]},{"id":"NCBITaxon:5081","l":"","na":5,"nb":6,"a":[["Pfam%3APF13364","Beta-galactosidase second all-beta domain"],["Pfam%3APF10435","Beta-galactosidase, domain 2"],["Pfam%3APF13363","Beta-galactosidase, domain 3"],["Pfam%3APF01301","Glycosyl hydrolases family 35"],["PROSITE%3APS01182","Glycosyl hydrolases family 35 putative active site"]],"b":[["alkaloids/citridone-a.yaml","citridone A"],["alkaloids/citridone-b-2.yaml","citridone B'"],["alkaloids/citridone-b.yaml","citridone B"],["alkaloids/cj-15-696.yaml","CJ-15,696"],["alkaloids/cj-16-173.yaml","CJ-16,173"],["polyketides/gregatin-a.yaml","gregatin A"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":6,"nb":5,"a":[["Pfam%3APF02929","Beta galactosidase small chain"],["Pfam%3APF27279","Fumarate--diaminopropanoate ligase C-terminal domain"],["Pfam%3APF18024","Helix-turn-helix domain"],["Pfam%3APF16353","Beta-galactosidase, domain 4"],["PROSITE%3APS00594","Aromatic amino acids permeases signature"],["PROSITE%3APS00853","Beta-eliminating lyases pyridoxal-phosphate attachment site"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/andrimid.yaml","andrimid"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/pantocin-a.yaml","pantocin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:43658","l":"Pseudoalteromonas rubra","na":5,"nb":5,"a":[["proteintraitsmech%3AELIFE109154_Orn_monoox","Metallophore-associated ornithine N5-monooxygenase family"],["TED%3AAF-A0A0F4QZE1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0F4QZE1-F1-model_v4_TED02"],["TED%3AAF-A0A0U3GWJ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0U3GWJ2-F1-model_v4_TED01"],["TED%3AAF-A0A0F4QSG0-F1-model_v4_TED02","TED novel fold AF-A0A0F4QSG0-F1-model_v4_TED02"],["TED%3AAF-A0A0L0EPH9-F1-model_v4_TED03","TED novel fold AF-A0A0L0EPH9-F1-model_v4_TED03"]],"b":[["alkaloids/prodigiosin.yaml","prodigiosin"],["polyketides/nonyltyrazolone.yaml","nonyltyrazolone"],["polyketides/undecyltyrazolone.yaml","undecyltyrazolone"],["shikimates_and_phenylpropanoids/z-6-undecenyltyrazolone.yaml","(Z)-ω-6-undecenyltyrazolone"],["unclassified/heptyltyrazolone.yaml","heptyltyrazolone"]]},{"id":"NCBITaxon:6239","l":"Caenorhabditis elegans","na":9682,"nb":4,"a":[["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.14.14.-","With reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.17.-","With reduced ascorbate as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.19.-","With oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water"],["EC%3A1.14.99.-","Miscellaneous"]],"b":[["alkaloids/biotin.yaml","biotin"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/itaconic-acid.yaml","itaconic acid"],["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"]]},{"id":"NCBITaxon:10116","l":"Rattus norvegicus","na":1002,"nb":4,"a":[["IDPO%3A0000011","disorder to order"],["IDPO%3A0000030","entropic chain"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000033","flexible linker"],["IDPO%3A0000041","glycosylation display site"],["IDPO%3A0000003","molten globule"]],"b":[["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/methylarcyriarubin.yaml","methylarcyriarubin"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]]},{"id":"NCBITaxon:39947","l":"Oryza sativa subsp. japonica","na":158,"nb":4,"a":[["Pfam%3APF03157","High molecular weight glutenin subunit"],["Pfam%3APF26249","RdRP3/4/5, N-terminal four helical bundle domain"],["Pfam%3APF23242","TRIP13-like, AAA+ ATPase lid C-terminal domain"],["Pfam%3APF26791","AAPxQ domain"],["Pfam%3APF24922","Acyl-CoA-binding domain-containing protein 4-6, C-terminal"],["Pfam%3APF04864","Allinase"]],"b":[["terpenoids/10-oxodepressin.yaml","10-Oxodepressin"],["terpenoids/momilactone-b.yaml","momilactone B"],["terpenoids/oryzalides.yaml","oryzalides"],["terpenoids/phytocassane.yaml","phytocassane"]]},{"id":"UniProt:P04637","l":"","na":55,"nb":4,"a":[["ComplexPortal%3ACPX-12293","-"],["ComplexPortal%3ACPX-12528","-"],["ComplexPortal%3ACPX-13029","-"],["ComplexPortal%3ACPX-14009","-"],["ComplexPortal%3ACPX-16240","-"],["ComplexPortal%3ACPX-21406","-"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["polyketides/herboxidiene.yaml","herboxidiene"],["terpenoids/zeaxanthin.yaml","zeaxanthin"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":4,"nb":30,"a":[["Pfam%3APF11720","Peptidase inhibitor I78 family"],["Pfam%3APF12296","Hydrophobic surface binding protein A"],["TED%3AAF-A0A3M7JGA1-F1-model_v4_TED02","TED novel fold AF-A0A3M7JGA1-F1-model_v4_TED02"],["TED%3AAF-A0A7G5JNS3-F1-model_v4_TED03","TED novel fold AF-A0A7G5JNS3-F1-model_v4_TED03"]],"b":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["amino_acids_and_peptides/ditryptophenaline.yaml","(-)-ditryptophenaline"],["amino_acids_and_peptides/imizoquin-a.yaml","imizoquin A"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":30,"nb":4,"a":[["Pfam%3APF08787","Alginate lyase"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF08218","Citrate lyase ligase C-terminal domain"],["Pfam%3APF13727","CoA-binding domain"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["Pfam%3APF20714","DpiA-like helix-turn-helix domain"]],"b":[["alkaloids/tilivalline.yaml","tilivalline"],["amino_acids_and_peptides/colibactin.yaml","colibactin"],["amino_acids_and_peptides/klebsidin.yaml","klebsidin"],["carbohydrates/capsular-polysaccharide-2.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":23,"nb":4,"a":[["Pfam%3APF08878","HamA"],["Pfam%3APF05791","Bacillus haemolytic enterotoxin (HBL)"],["Pfam%3APF10803","Spore germination GerPB"],["Pfam%3APF10737","Spore germination protein GerPC"],["Pfam%3APF10970","Spore germination protein GerPE"],["Pfam%3APF07486","Cell Wall Hydrolase"]],"b":[["alkaloids/zwittermicin-a.yaml","zwittermicin A"],["amino_acids_and_peptides/livipeptin.yaml","Livipeptin"],["carbohydrates/tunicamycin.yaml","tunicamycin"],["unclassified/cereulide.yaml","cereulide"]]},{"id":"NCBITaxon:378806","l":"Stigmatella aurantiaca DW4/3-1","na":4,"nb":17,"a":[["TED%3AAF-Q098I8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q098I8-F1-model_v4_TED01"],["TED%3AAF-E3FRW3-F1-model_v4_TED01","TED novel fold AF-E3FRW3-F1-model_v4_TED01"],["TED%3AAF-E3G0M4-F1-model_v4_TED01","TED novel fold AF-E3G0M4-F1-model_v4_TED01"],["TED%3AAF-Q08VS7-F1-model_v4_TED01","TED novel fold AF-Q08VS7-F1-model_v4_TED01"]],"b":[["polyketides/aurafuron-a.yaml","aurafuron A"],["polyketides/dawenol.yaml","dawenol"],["unclassified/dkxanthene-504.yaml","dkxanthene 504"],["unclassified/dkxanthene-508.yaml","dkxanthene 508"],["unclassified/dkxanthene-518.yaml","dkxanthene 518"],["unclassified/dkxanthene-520.yaml","dkxanthene 520"]]},{"id":"NCBITaxon:5518","l":"Fusarium graminearum","na":4,"nb":14,"a":[["Pfam%3APF09118","Galactose oxidase-like, Early set domain"],["Pfam%3APF07250","Glyoxal oxidase N-terminus"],["TED%3AAF-A0A2H3FY84-F1-model_v4_TED03","TED novel fold AF-A0A2H3FY84-F1-model_v4_TED03"],["TED%3AAF-A0A2H3G191-F1-model_v4_TED01","TED novel fold AF-A0A2H3G191-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/fusaoctaxin-a.yaml","fusaoctaxin A"],["polyketides/aurofusarin.yaml","aurofusarin"],["polyketides/fusarielin-h.yaml","fusarielin H"],["polyketides/gibepyrone-a.yaml","gibepyrone A"],["polyketides/prolipyrone-b.yaml","prolipyrone B"],["polyketides/zearalenone.yaml","zearalenone"]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":4,"nb":13,"a":[["Pfam%3APF16861","Carbamoyltransferase C-terminus"],["Pfam%3APF02543","Carbamoyltransferase N-terminus"],["Pfam%3APF01960","ArgJ family"],["Pfam%3APF07467","Beta-lactamase inhibitor (BLIP)"]],"b":[["alkaloids/holomycin.yaml","holomycin"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/2-formyloxymethylclavam.yaml","2-formyloxymethylclavam"],["amino_acids_and_peptides/2-hydroxymethylclavam.yaml","2-hydroxymethylclavam"],["amino_acids_and_peptides/alanylclavam.yaml","alanylclavam"],["amino_acids_and_peptides/cephamycin-c.yaml","cephamycin C"]]},{"id":"NCBITaxon:1914","l":"Streptomyces lavendulae","na":4,"nb":12,"a":[["Pfam%3APF01678","Diaminopimelate epimerase"],["Pfam%3APF27100","D-cycloserine synthetase DcsG, N-terminal domain"],["Pfam%3APF20240","Domain of unknown function (DUF6597)"],["Pfam%3APF11731","Pathogenicity locus"]],"b":[["alkaloids/indigoidine.yaml","indigoidine"],["alkaloids/saframycin-a.yaml","saframycin A"],["alkaloids/saframycin-b.yaml","saframycin B"],["amino_acids_and_peptides/cycloserine.yaml","cycloserine"],["amino_acids_and_peptides/isocomplestatin.yaml","isocomplestatin"],["carbohydrates/showdomycin.yaml","showdomycin"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":4,"nb":10,"a":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"],["TED%3AAF-A0A085UKV7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085UKV7-F1-model_v4_TED01"],["TED%3AAF-A0A4R6IU28-F1-model_v4_TED02","TED novel fold AF-A0A4R6IU28-F1-model_v4_TED02"]],"b":[["alkaloids/labradorin-1.yaml","labradorin 1"],["alkaloids/labradorin-2.yaml","labradorin 2"],["alkaloids/secimide.yaml","secimide"],["amino_acids_and_peptides/phaseolotoxin.yaml","phaseolotoxin"],["amino_acids_and_peptides/syringolin-a.yaml","syringolin A"],["amino_acids_and_peptides/tabtoxin.yaml","tabtoxin"]]},{"id":"NCBITaxon:500485","l":"Penicillium rubens Wisconsin 54-1255","na":4,"nb":9,"a":[["Pfam%3APF03417","Acyl-coenzyme A:6-aminopenicillanic acid acyl-transferase"],["Pfam%3APF03659","Glycosyl hydrolase family 71"],["PROSITE%3APS00185","Isopenicillin N synthase signature 1"],["PROSITE%3APS00186","Isopenicillin N synthase signature 2"]],"b":[["alkaloids/dehydrohistidyltryptophanyldiketopiperazine.yaml","dehydrohistidyltryptophanyldiketopiperazine"],["alkaloids/glandicoline-a.yaml","glandicoline A"],["alkaloids/glandicoline-b.yaml","glandicoline B"],["alkaloids/meleagrine.yaml","meleagrine"],["polyketides/sorbicillin.yaml","sorbicillin"],["terpenoids/conidiogenone.yaml","conidiogenone"]]},{"id":"NCBITaxon:5076","l":"Penicillium chrysogenum","na":4,"nb":9,"a":[["Pfam%3APF03417","Acyl-coenzyme A:6-aminopenicillanic acid acyl-transferase"],["Pfam%3APF11402","Antifungal protein"],["PROSITE%3APS00185","Isopenicillin N synthase signature 1"],["PROSITE%3APS00186","Isopenicillin N synthase signature 2"]],"b":[["alkaloids/chrysogine.yaml","chrysogine"],["amino_acids_and_peptides/benzylpenicillin-sodium.yaml","benzylpenicillin sodium"],["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"],["amino_acids_and_peptides/n-5s-5-ammonio-5-carboxylatopentanoyl-l-cysteinyl-d-valinate.yaml","N-[(5S)-5-ammonio-5-carboxylatopentanoyl]-L-cysteinyl-D-valinate"],["polyketides/2-3-dihydrosorbicillin.yaml","2'3'-dihydrosorbicillin"],["polyketides/bisorbicillinol.yaml","bisorbicillinol"]]},{"id":"NCBITaxon:1836","l":"Saccharopolyspora erythraea","na":4,"nb":8,"a":[["Pfam%3APF08990","Erythronolide synthase docking domain"],["Pfam%3APF09277","Erythronolide synthase, docking"],["Pfam%3APF12728","Helix-turn-helix domain"],["Pfam%3APF12307","Protein of unknown function (DUF3631)"]],"b":[["amino_acids_and_peptides/erythrochelin.yaml","erythrochelin"],["polyketides/3-3-diflaviolin.yaml","3,3'-diflaviolin"],["polyketides/erythromycin-a.yaml","erythromycin A"],["polyketides/erythromycin-b.yaml","erythromycin B"],["polyketides/flaviolin-rhamnoside.yaml","flaviolin rhamnoside"],["polyketides/flaviolin.yaml","flaviolin"]]},{"id":"NCBITaxon:227882","l":"Streptomyces avermitilis (strain ATCC 31267 / DSM 46492 / JCM 5070 / NBRC 14893 / NCIMB 12804 / NRRL 8165 / MA-4680)","na":8,"nb":4,"a":[["Pfam%3APF17390","Bacterial alpha-L-rhamnosidase C-terminal domain"],["Pfam%3APF08531","Alpha-L-rhamnosidase N-terminal domain"],["Pfam%3APF05592","Bacterial alpha-L-rhamnosidase concanavalin-like domain"],["Pfam%3APF26366","Domain of unknown function (DUF8094)"],["Pfam%3APF25788","Rha78A-like, N-terminal immunoglobulin domain"],["Pfam%3APF06781","Cell division protein CrgA"]],"b":[["amino_acids_and_peptides/edha.yaml","EDHA"],["polyketides/filipin-iii.yaml","filipin III"],["terpenoids/avermitilol.yaml","avermitilol"],["terpenoids/pentalenolactone.yaml","pentalenolactone"]]},{"id":"NCBITaxon:326423","l":"Bacillus velezensis FZB42","na":4,"nb":8,"a":[["Pfam%3APF21607","[Acyl-carrier-protein] S-malonyltransferase, inserted helical domain"],["Pfam%3APF21996","Histidyl-tRNA synthetase HisZ, C-terminal domain"],["Pfam%3APF07293","Protein of unknown function (DUF1450)"],["Pfam%3APF12227","Protein of unknown function (DUF3603)"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["polyketides/bacillaene.yaml","bacillaene"],["polyketides/difficidin.yaml","difficidin"],["polyketides/macrolactin-h.yaml","macrolactin H"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:1397","l":"Niallia circulans","na":6,"nb":4,"a":[["Pfam%3APF03423","Carbohydrate binding domain (family 25)"],["Pfam%3APF13199","Glycosyl hydrolase family 66"],["Pfam%3APF14399","Butirosin biosynthesis protein H, N-terminal"],["Pfam%3APF19634","Family of unknown function (DUF6137)"],["PROSITE%3APS60000","Chitosanases families 46 and 80 active sites signature"],["TED%3AAF-A0A0J1IR10-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0J1IR10-F1-model_v4_TED01"]],"b":[["carbohydrates/butirosin-a.yaml","butirosin A"],["carbohydrates/butirosin-b.yaml","butirosin B"],["carbohydrates/butirosin.yaml","butirosin"],["unclassified/pelgipeptin-b.yaml","Pelgipeptin B"]]},{"id":"NCBITaxon:32049","l":"Picosynechococcus sp. PCC 7002","na":6,"nb":4,"a":[["Pfam%3APF09367","CpeS-like protein"],["Pfam%3APF06206","CpeT/CpcT family (DUF1001)"],["Pfam%3APF12965","Domain of unknown function (DUF3854)"],["Pfam%3APF19928","Domain of unknown function (DUF6391)"],["Pfam%3APF09366","Protein of unknown function (DUF1997)"],["Pfam%3APF14870","Photosynthesis system II assembly factor YCF48"]],"b":[["alkaloids/synechobactin-a.yaml","synechobactin A"],["alkaloids/synechobactin-b.yaml","synechobactin B"],["alkaloids/synechobactin-c.yaml","synechobactin C"],["fatty_acids/nonadec-1-ene.yaml","nonadec-1-ene"]]},{"id":"NCBITaxon:1393","l":"Brevibacillus brevis","na":5,"nb":4,"a":[["Pfam%3APF03306","Alpha-acetolactate decarboxylase"],["Pfam%3APF05384","Sensor protein DegS"],["TED%3AAF-A0A2Z4MK38-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z4MK38-F1-model_v4_TED01"],["TED%3AAF-A0A2Z4MPQ6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2Z4MPQ6-F1-model_v4_TED02"],["TED%3AAF-A0A517IGN3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A517IGN3-F1-model_v4_TED03"]],"b":[["alkaloids/ulbactin-f.yaml","ulbactin F"],["alkaloids/ulbactin-g.yaml","ulbactin G"],["amino_acids_and_peptides/gramicidin.yaml","gramicidin"],["amino_acids_and_peptides/tyrocidine-a.yaml","tyrocidine A"]]},{"id":"NCBITaxon:31958","l":"Amycolatopsis orientalis","na":5,"nb":4,"a":[["Pfam%3APF16990","Carbohydrate binding module (family 35)"],["Pfam%3APF14696","Hydroxyphenylpyruvate dioxygenase, HPPD, N-terminal"],["Pfam%3APF03559","NDP-hexose 2,3-dehydratase"],["Pfam%3APF18368","Exo-beta-D-glucosaminidase Ig-fold domain"],["TED%3AAF-K4FDK5-F1-model_v4_TED01","TED highly-symmetric fold AF-K4FDK5-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/chloroeremomycin.yaml","chloroeremomycin"],["amino_acids_and_peptides/vancomycin.yaml","vancomycin"],["polyketides/eco-0501.yaml","ECO-0501"],["polyketides/quartromicin-a1.yaml","quartromicin A1"]]},{"id":"NCBITaxon:43","l":"Cystobacter fuscus","na":4,"nb":5,"a":[["TED%3AAF-A0A250J1A4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J1A4-F1-model_v4_TED01"],["TED%3AAF-A0A250J4G5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J4G5-F1-model_v4_TED01"],["TED%3AAF-A0A250J8W0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J8W0-F1-model_v4_TED01"],["TED%3AAF-A0A250J3K5-F1-model_v4_TED03","TED novel fold AF-A0A250J3K5-F1-model_v4_TED03"]],"b":[["amino_acids_and_peptides/cystomanamide-a.yaml","cystomanamide A"],["amino_acids_and_peptides/cystomanamide-b.yaml","cystomanamide B"],["amino_acids_and_peptides/cystomanamide-c.yaml","cystomanamide C"],["amino_acids_and_peptides/cystomanamide-d.yaml","cystomanamide D"],["unclassified/cystothiazole-a.yaml","cystothiazole A"]]},{"id":"NCBITaxon:48","l":"Archangium gephyra","na":4,"nb":4,"a":[["TED%3AAF-A0A0G2ZQX3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G2ZQX3-F1-model_v4_TED01"],["TED%3AAF-A0A0G3A8M9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G3A8M9-F1-model_v4_TED01"],["TED%3AAF-A0A2W5T6H4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2W5T6H4-F1-model_v4_TED03"],["TED%3AAF-A0A0G2ZR59-F1-model_v4_TED01","TED novel fold AF-A0A0G2ZR59-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/tubulysin-f.yaml","tubulysin F"],["amino_acids_and_peptides/tubulysin-g.yaml","tubulysin G"],["amino_acids_and_peptides/tubulysin-i.yaml","tubulysin I"],["polyketides/aurafuron-a.yaml","aurafuron A"]]},{"id":"UniProt:P00784","l":"","na":4,"nb":4,"a":[["EC%3A3.4.22.2","papain"],["MCSA%3A174","papain"],["proteintraitsmech%3ABIOLIP_ALD","ALD-binding site"],["proteintraitsmech%3AMETALPDB_RU_DINUCLEAR","dinuclear ruthenium site"]],"b":[["alkaloids/ergotamine.yaml","ergotamine"],["amino_acids_and_peptides/leupeptin-a.yaml","leupeptin A"],["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"],["terpenoids/carotene.yaml","β-carotene"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":17470,"nb":3,"a":[["EC%3A1.1.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.16.-.-","Oxidizing metal ions"],["EC%3A1.18.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.7.-","With an iron-sulfur protein as acceptor"]],"b":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"],["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"],["unclassified/telomestatin.yaml","telomestatin"]]},{"id":"NCBITaxon:9913","l":"Bos taurus","na":435,"nb":3,"a":[["IDPO%3A0000018","disorder to molten globule"],["IDPO%3A0000011","disorder to order"],["IDPO%3A0000019","disorder to pre-molten globule"],["IDPO%3A0000030","entropic chain"],["IDPO%3A0000003","molten globule"],["IDPO%3A0000014","order to disorder"]],"b":[["alkaloids/methylarcyriarubin.yaml","methylarcyriarubin"],["alkaloids/staurosporine-2.yaml","staurosporine"],["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"NCBITaxon:33178","l":"Aspergillus terreus","na":3,"nb":22,"a":[["Pfam%3APF28386","BfoA family C-terminal domain"],["Pfam%3APF28387","BfoA N-terminal domain"],["Pfam%3APF12351","Ca2+ regulator and membrane fusion protein Fig1"]],"b":[["alkaloids/asterriquinone-ct5.yaml","asterriquinone CT5"],["alkaloids/cytochalasin-e.yaml","cytochalasin E"],["alkaloids/dihydroisoflavipucine.yaml","dihydroisoflavipucine"],["alkaloids/terrequinone-a.yaml","terrequinone A"],["amino_acids_and_peptides/valactamide-a.yaml","valactamide A"],["polyketides/citreoviridin.yaml","citreoviridin"]]},{"id":"NCBITaxon:332648","l":"Botrytis cinerea B05.10","na":3,"nb":21,"a":[["Pfam%3APF01670","Glycosyl hydrolase family 12"],["PROSITE%3APS00776","Glycosyl hydrolases family 11 (GH11) active site signature 1"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"]],"b":[["terpenoids/1-epibotrydial.yaml","1-epibotrydial"],["terpenoids/10-dehydroxy-dihydrobotrydialone.yaml","10-dehydroxy dihydrobotrydialone"],["terpenoids/10-epi-dihydrobotrydial.yaml","10-epi-dihydrobotrydial"],["terpenoids/10-oxo-dihydrobotrydial.yaml","10-Oxo-dihydrobotrydial"],["terpenoids/10-oxodehydrodihydrobotrydial.yaml","10-Oxodehydrodihydrobotrydial"],["terpenoids/10-oxodihydrobotry-1-9-4-5-diendial.yaml","10-Oxodihydrobotry-1(9),4(5)-diendial"]]},{"id":"NCBITaxon:54571","l":"Streptomyces venezuelae","na":3,"nb":21,"a":[["Pfam%3APF08990","Erythronolide synthase docking domain"],["TED%3AAF-A0A5P2CQV7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5P2CQV7-F1-model_v4_TED02"],["TED%3AAF-A0A5P2C5X4-F1-model_v4_TED01","TED novel fold AF-A0A5P2C5X4-F1-model_v4_TED01"]],"b":[["alkaloids/anthelvencin-a.yaml","anthelvencin A"],["alkaloids/anthelvencin-b.yaml","anthelvencin B"],["alkaloids/anthelvencin-c.yaml","anthelvencin C"],["alkaloids/chloramphenicol.yaml","chloramphenicol"],["alkaloids/corynecin-ii.yaml","corynecin II"],["alkaloids/gaburedin-d.yaml","gaburedin D"]]},{"id":"UniProt:P22303","l":"","na":21,"nb":3,"a":[["ComplexPortal%3ACPX-10631","-"],["ComplexPortal%3ACPX-11637","-"],["ComplexPortal%3ACPX-12676","-"],["ComplexPortal%3ACPX-14124","-"],["ComplexPortal%3ACPX-18577","-"],["ComplexPortal%3ACPX-24024","-"]],"b":[["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/physostigmine.yaml","physostigmine"],["unclassified/aflatoxin-b1.yaml","aflatoxin B1"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":3,"nb":20,"a":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF22041","Glutathione S-transferase, C-terminal domain"],["Pfam%3APF08493","Aflatoxin regulatory protein"]],"b":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/c-3-sulfonylated-derivative.yaml","C-3 sulfonylated derivative"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["alkaloids/n-n-dioxide-containing-derivate.yaml","N,N-dioxide containing derivate"]]},{"id":"NCBITaxon:3847","l":"Glycine max","na":16,"nb":3,"a":[["Pfam%3APF02095","Extensin-like protein"],["Pfam%3APF00477","Small hydrophilic plant seed protein"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF08027","Albumin I chain b"],["Pfam%3APF10539","Development and cell death domain"],["Pfam%3APF03386","Early nodulin 93 ENOD93 protein"]],"b":[["alkaloids/biotin.yaml","biotin"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":3,"nb":13,"a":[["Pfam%3APF14864","Alkyl sulfatase C-terminal"],["Pfam%3APF13816","Haem-containing dehydratase"],["Pfam%3APF14863","Alkyl sulfatase dimerisation"]],"b":[["unclassified/bananamide-d.yaml","bananamide D"],["unclassified/bananamide-e.yaml","bananamide E"],["unclassified/bananamide-f.yaml","bananamide F"],["unclassified/bananamide-g.yaml","bananamide G"],["unclassified/lokisin.yaml","lokisin"],["unclassified/pseudodesmin-a.yaml","pseudodesmin A"]]},{"id":"NCBITaxon:54","l":"Nannocystis exedens","na":13,"nb":3,"a":[["TED%3AAF-A0A1I2A5Z6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2A5Z6-F1-model_v4_TED01"],["TED%3AAF-A0A1I2FM38-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I2FM38-F1-model_v4_TED02"],["TED%3AAF-A0A1I2H0F9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2H0F9-F1-model_v4_TED01"],["TED%3AAF-A0A831ZMD9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A831ZMD9-F1-model_v4_TED01"],["TED%3AAF-A0A1I1T6U3-F1-model_v4_TED01","TED novel fold AF-A0A1I1T6U3-F1-model_v4_TED01"],["TED%3AAF-A0A1I1XLT5-F1-model_v4_TED02","TED novel fold AF-A0A1I1XLT5-F1-model_v4_TED02"]],"b":[["polyketides/phenylnannolone-a.yaml","phenylnannolone A"],["polyketides/phenylnannolone-b.yaml","phenylnannolone B"],["polyketides/phenylnannolone-c.yaml","phenylnannolone C"]]},{"id":"NCBITaxon:451804","l":"Aspergillus fumigatus (strain CBS 144.89 / FGSC A1163 / CEA10)","na":11,"nb":3,"a":[["Pfam%3APF28347","ACE1 small beta sheet domain"],["Pfam%3APF28329","Zinc finger transcription factor ace1 N-terminal domain"],["Pfam%3APF11001","YDR124W-like, helical bundle domain"],["Pfam%3APF28457","Probable beta-glucosidase btgE N-terminal domain"],["Pfam%3APF13373","DSC E3 ubiquitin ligase complex subunit 3, C-terminal domain"],["Pfam%3APF10302","DSC E3 ubiquitin ligase complex subunit 3, ubiquitin-like domain"]],"b":[["terpenoids/21-h-hopane-3beta-22-diol.yaml","21-β-H-hopane-3beta, 22-diol"],["terpenoids/compound-3-3.yaml","compound 3"],["terpenoids/fumihopaside-a.yaml","fumihopaside A"]]},{"id":"NCBITaxon:5053","l":"Aspergillus aculeatus","na":3,"nb":11,"a":[["Pfam%3APF14683","Polysaccharide lyase family 4, domain III"],["Pfam%3APF14686","Polysaccharide lyase family 4, domain II"],["Pfam%3APF01670","Glycosyl hydrolase family 12"]],"b":[["alkaloids/acurin-a.yaml","acurin A"],["polyketides/secalonic-acid-a.yaml","Secalonic acid A"],["terpenoids/aculene-a.yaml","aculene A"],["terpenoids/aculene-b.yaml","aculene B"],["terpenoids/aculene-c.yaml","aculene C"],["terpenoids/aculene-d.yaml","aculene D"]]},{"id":"UniProt:Q8WZA2","l":"","na":3,"nb":10,"a":[["ComplexPortal%3ACPX-12363","-"],["CDD%3Acd04437","DEP_Epac"],["CATH%3A1.10.8.1240","CATH homologous superfamily 1.10.8.1240"]],"b":[["alkaloids/8-azaguanine.yaml","8-azaguanine"],["alkaloids/psilocybin.yaml","psilocybin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/actinonin.yaml","actinonin"],["amino_acids_and_peptides/thiostrepton.yaml","thiostrepton"],["carbohydrates/tobramycin.yaml","tobramycin"]]},{"id":"UniProt:Q9BV86","l":"","na":10,"nb":3,"a":[["ComplexPortal%3ACPX-14881","-"],["ComplexPortal%3ACPX-15959","-"],["ComplexPortal%3ACPX-20462","-"],["ComplexPortal%3ACPX-23498","-"],["GO%3A0071885","N-terminal protein N-methyltransferase activity"],["GO%3A0018013","N-terminal peptidyl-glycine methylation"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["polyketides/chlortetracycline.yaml","chlortetracycline"],["polyketides/kojic-acid.yaml","kojic acid"]]},{"id":"NCBITaxon:1971","l":"Streptomyces noursei","na":3,"nb":8,"a":[["Pfam%3APF16715","Cyclodipeptide synthase"],["Pfam%3APF19585","Family of unknown function (DUF6092)"],["TED%3AAF-A0A2N8PAT0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N8PAT0-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/curacomycin.yaml","curacomycin"],["amino_acids_and_peptides/dechlorocuracomycin.yaml","dechlorocuracomycin"],["amino_acids_and_peptides/deimino-antipain.yaml","deimino-antipain"],["carbohydrates/streptothricin-f.yaml","streptothricin F"],["polyketides/nystatin-a1.yaml","nystatin A1"],["polyketides/nystatin.yaml","nystatin"]]},{"id":"NCBITaxon:4081","l":"Solanum lycopersicum","na":8,"nb":3,"a":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF02977","Carboxypeptidase A inhibitor"],["Pfam%3APF26410","GH family 5 beta-mannosidase-like"],["Pfam%3APF02496","ABA/WDS induced protein"],["Pfam%3APF17302","Family of unknown function (DUF5351)"],["PROSITE%3APS00502","Polygalacturonase active site"]],"b":[["fatty_acids/falcarindiol.yaml","falcarindiol"],["terpenoids/lycosantalonol.yaml","lycosantalonol"],["terpenoids/phellandrene.yaml","β-phellandrene"]]},{"id":"NCBITaxon:331117","l":"Aspergillus fischeri NRRL 181","na":3,"nb":7,"a":[["Pfam%3APF23681","ATP-dependent rRNA helicase SPB4-like, C-terminal tail"],["Pfam%3APF16803","Fe-S cluster assembly protein DRE2 N-terminus"],["Pfam%3APF02012","BNR/Asp-box repeat"]],"b":[["terpenoids/compound-5.yaml","compound 5"],["terpenoids/compound-6-2.yaml","compound 6"],["terpenoids/compound-7a.yaml","compound 7a"],["terpenoids/compound-8-2.yaml","compound 8"],["terpenoids/sesterfisheric-acid.yaml","sesterfisheric acid"],["terpenoids/sesterfisherol.yaml","sesterfisherol"]]},{"id":"NCBITaxon:1028729","l":"Fusarium pseudograminearum CS3096","na":3,"nb":6,"a":[["Pfam%3APF26087","Domain of unknown function (DUF8032)"],["Pfam%3APF05704","Capsular polysaccharide synthesis protein"],["TED%3AAF-K3V788-F1-model_v4_TED02","TED novel fold AF-K3V788-F1-model_v4_TED02"]],"b":[["alkaloids/8-oxo-fusatin.yaml","8-oxo-fusatin"],["alkaloids/8-oxo-isopentenyladenine.yaml","8-oxo-isopentenyladenine"],["alkaloids/fusatin.yaml","fusatin"],["alkaloids/fusatinic-acid.yaml","fusatinic acid"],["unclassified/w493-a.yaml","W493 A"],["unclassified/w493-b.yaml","W493 B"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":6,"nb":3,"a":[["Pfam%3APF14525","AraC-binding-like domain"],["Pfam%3APF06139","BphX-like"],["Pfam%3APF13340","Putative transposase of IS4/5 family (DUF4096)"],["Pfam%3APF11794","4-hydroxyphenylacetate 3-hydroxylase N terminal"],["Pfam%3APF03241","4-hydroxyphenylacetate 3-hydroxylase C terminal"],["TED%3AAF-A0A4S3H3T1-F1-model_v4_TED02","TED novel fold AF-A0A4S3H3T1-F1-model_v4_TED02"]],"b":[["alkaloids/cepaciachelin.yaml","cepaciachelin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["terpenoids/hopene.yaml","hopene"]]},{"id":"NCBITaxon:1833","l":"Rhodococcus erythropolis","na":5,"nb":3,"a":[["Pfam%3APF08028","Acyl-CoA dehydrogenase, C-terminal domain"],["Pfam%3APF13816","Haem-containing dehydratase"],["Pfam%3APF07858","Limonene-1,2-epoxide hydrolase catalytic domain"],["Pfam%3APF09663","Amidohydrolase ring-opening protein (Amido_AtzD_TrzD)"],["TED%3AAF-A0A401N7F7-F1-model_v4_TED02","TED novel fold AF-A0A401N7F7-F1-model_v4_TED02"]],"b":[["alkaloids/aurachin-re.yaml","aurachin RE"],["amino_acids_and_peptides/heterobactin-a.yaml","heterobactin A"],["amino_acids_and_peptides/heterobactin-s2.yaml","heterobactin S2"]]},{"id":"NCBITaxon:2021","l":"Thermobifida fusca","na":5,"nb":3,"a":[["Pfam%3APF00553","Cellulose binding domain"],["Pfam%3APF01341","Glycosyl hydrolases family 6"],["PROSITE%3APS00561","CBM2a (carbohydrate-binding type-2) domain signature"],["PROSITE%3APS00655","Glycosyl hydrolases family 6 signature 1"],["PROSITE%3APS00656","Glycosyl hydrolases family 6 signature 2"]],"b":[["amino_acids_and_peptides/fuscachelin-a.yaml","Fuscachelin A"],["amino_acids_and_peptides/fuscachelin-b.yaml","Fuscachelin B"],["amino_acids_and_peptides/fuscachelin-c.yaml","Fuscachelin C"]]},{"id":"NCBITaxon:3885","l":"Phaseolus vulgaris","na":3,"nb":5,"a":[["Pfam%3APF14829","Glycerol-3-phosphate acyltransferase N-terminal"],["PROSITE%3APS00281","Bowman-Birk serine protease inhibitors family signature"],["PROSITE%3APS00308","Legume lectins alpha-chain signature"]],"b":[["alkaloids/biotin.yaml","biotin"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/ectoine.yaml","ectoine"],["fatty_acids/itaconic-acid.yaml","itaconic acid"],["unclassified/orcinol.yaml","orcinol"]]},{"id":"NCBITaxon:556","l":"Dickeya chrysanthemi","na":5,"nb":3,"a":[["Pfam%3APF18390","Glycogen debranching enzyme C-terminal domain"],["Pfam%3APF25994","AprE, long alpha-helical hairpin"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF03812","2-keto-3-deoxygluconate permease"],["Pfam%3APF09589","HrpA pilus formation protein"]],"b":[["amino_acids_and_peptides/chrysobactin.yaml","chrysobactin"],["amino_acids_and_peptides/dichrysobactin.yaml","dichrysobactin"],["unclassified/cyclic-trichrysobactin.yaml","cyclic trichrysobactin"]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":3,"nb":5,"a":[["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"],["PROSITE%3APS00896","LacY family proton/sugar symporters signature 1"],["PROSITE%3APS00897","LacY family proton/sugar symporters signature 2"]],"b":[["alkaloids/9-deoxy-tilivalline.yaml","9-deoxy tilivalline"],["alkaloids/dehydro-tilivalline.yaml","dehydro tilivalline"],["alkaloids/dihydroxy-dehydro-tilivalline.yaml","dihydroxy-dehydro tilivalline"],["alkaloids/dihydroxy-tilivalline.yaml","dihydroxy tilivalline"],["alkaloids/tilivalline.yaml","tilivalline"]]},{"id":"NCBITaxon:269800","l":"","na":4,"nb":3,"a":[["Pfam%3APF20628","Dyp-type peroxidase, C-terminal"],["Pfam%3APF04261","Dyp-type peroxidase, N-terminal"],["Pfam%3APF18374","Enolase N-terminal domain-like"],["PROSITE%3APS00909","Mandelate racemase / muconate lactonizing enzyme family signature 2"]],"b":[["amino_acids_and_peptides/fuscachelin-a.yaml","Fuscachelin A"],["amino_acids_and_peptides/fuscachelin-b.yaml","Fuscachelin B"],["amino_acids_and_peptides/fuscachelin-c.yaml","Fuscachelin C"]]},{"id":"NCBITaxon:306901","l":"","na":4,"nb":3,"a":[["Pfam%3APF07960","CBP4"],["TED%3AAF-Q2GNU1-F1-model_v4_TED01","TED highly-symmetric fold AF-Q2GNU1-F1-model_v4_TED01"],["TED%3AAF-Q2GZS7-F1-model_v4_TED01","TED novel fold AF-Q2GZS7-F1-model_v4_TED01"],["TED%3AAF-Q2H4N9-F1-model_v4_TED02","TED novel fold AF-Q2H4N9-F1-model_v4_TED02"]],"b":[["polyketides/11-epichaetomugilin-a.yaml","11-epichaetomugilin A"],["polyketides/chaetoviridin-e.yaml","chaetoviridin E"],["polyketides/shanorellin.yaml","shanorellin"]]},{"id":"NCBITaxon:33","l":"Myxococcus fulvus","na":4,"nb":3,"a":[["TED%3AAF-A0A511SVC1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A511SVC1-F1-model_v4_TED01"],["TED%3AAF-A0A511SU64-F1-model_v4_TED01","TED novel fold AF-A0A511SU64-F1-model_v4_TED01"],["TED%3AAF-A0A511T2U3-F1-model_v4_TED02","TED novel fold AF-A0A511T2U3-F1-model_v4_TED02"],["TED%3AAF-A0A511T9F8-F1-model_v4_TED05","TED novel fold AF-A0A511T9F8-F1-model_v4_TED05"]],"b":[["unclassified/fulvuthiacene-a.yaml","Fulvuthiacene A"],["unclassified/fulvuthiacene-b.yaml","Fulvuthiacene B"],["unclassified/myxothiazol.yaml","myxothiazol"]]},{"id":"NCBITaxon:34305","l":"Lotus japonicus","na":4,"nb":3,"a":[["Pfam%3APF06241","Castor and Pollux, part of voltage-gated ion channel"],["Pfam%3APF23654","E3 ubiquitin-protein ligase LIN-like, ARM repeat"],["Pfam%3APF23628","Putative E3 ubiquitin-protein ligase LIN, ARM-like domain"],["Pfam%3APF23568","E3 ubiquitin-protein ligase LIN-like, ARM repeat"]],"b":[["amino_acids_and_peptides/linamarin.yaml","linamarin"],["amino_acids_and_peptides/lotaustralin.yaml","lotaustralin"],["terpenoids/lupeol.yaml","lupeol"]]},{"id":"NCBITaxon:392500","l":"","na":3,"nb":4,"a":[["Pfam%3APF23763","GLAA-B beta-barrel domain I"],["TED%3AAF-B1KH33-F1-model_v4_TED01","TED novel fold AF-B1KH33-F1-model_v4_TED01"],["TED%3AAF-B1KQT1-F1-model_v4_TED01","TED novel fold AF-B1KQT1-F1-model_v4_TED01"]],"b":[["fatty_acids/woodybactin-d.yaml","woodybactin D"],["unclassified/woodybactin-a.yaml","woodybactin A"],["unclassified/woodybactin-b.yaml","woodybactin B"],["unclassified/woodybactin-c.yaml","woodybactin C"]]},{"id":"NCBITaxon:5544","l":"Trichoderma harzianum","na":4,"nb":3,"a":[["Pfam%3APF00840","Glycosyl hydrolase family 7"],["Pfam%3APF12708","Rhamnogalacturonase A/epimerase, pectate lyase-like"],["TED%3AAF-A0A0F9XDU3-F1-model_v4_TED01","TED novel fold AF-A0A0F9XDU3-F1-model_v4_TED01"],["TED%3AAF-A0A0G0ASL4-F1-model_v4_TED01","TED novel fold AF-A0A0G0ASL4-F1-model_v4_TED01"]],"b":[["polyketides/1-2-dehydropenicillide.yaml","1,2-dehydropenicillide"],["polyketides/harziphilone.yaml","harziphilone"],["unclassified/harzianopyridone.yaml","harzianopyridone"]]},{"id":"NCBITaxon:655844","l":"","na":3,"nb":4,"a":[["Pfam%3APF07110","EthD domain"],["Pfam%3APF09421","Frequency clock protein"],["TED%3AAF-A0A0B2XHY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0B2XHY6-F1-model_v4_TED01"]],"b":[["alkaloids/swainsonine.yaml","swainsonine"],["unclassified/destruxin-a.yaml","destruxin A"],["unclassified/subglutinol-a.yaml","subglutinol A"],["unclassified/subglutinol-b.yaml","subglutinol B"]]},{"id":"NCBITaxon:1003195","l":"","na":3,"nb":3,"a":[["Pfam%3APF23169","Halogenase D"],["Pfam%3APF02655","ATP-grasp domain"],["Pfam%3APF14518","Iron-containing redox enzyme"]],"b":[["amino_acids_and_peptides/cattlecin.yaml","cattlecin"],["amino_acids_and_peptides/ethynylserine.yaml","β-ethynylserine"],["terpenoids/cattleyene.yaml","cattleyene"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":3,"nb":3,"a":[["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF08130","Type A lantibiotic family"],["Pfam%3APF04738","Lantibiotic dehydratase, N terminus"]],"b":[["amino_acids_and_peptides/epidermin.yaml","epidermin"],["amino_acids_and_peptides/epilancin-15x.yaml","epilancin 15x"],["amino_acids_and_peptides/pep5.yaml","pep5"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":3,"nb":3,"a":[["Pfam%3APF03423","Carbohydrate binding domain (family 25)"],["Pfam%3APF03422","Carbohydrate binding module (family 6)"],["TED%3AAF-A0A7X5SGP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X5SGP7-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/polymyxin-b.yaml","polymyxin B"],["amino_acids_and_peptides/polymyxin.yaml","polymyxin"],["unclassified/fusaricidin-b.yaml","fusaricidin B"]]},{"id":"NCBITaxon:1961","l":"Streptomyces virginiae","na":3,"nb":3,"a":[["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF19328","2,4-diaminopentanoate dehydrogenase C-terminal domain"],["PROSITE%3APS01014","Transcription termination factor nusG signature"]],"b":[["alkaloids/endophenazine-a.yaml","endophenazine A"],["polyketides/monensin.yaml","monensin"],["unclassified/virginiamycin-s1.yaml","virginiamycin S1"]]},{"id":"NCBITaxon:384676","l":"","na":3,"nb":3,"a":[["Pfam%3APF18063","Beta barrel Pore-forming domain"],["Pfam%3APF08548","Peptidase M10 serralysin C terminal"],["TED%3AAF-Q1I2P2-F1-model_v4_TED01","TED novel fold AF-Q1I2P2-F1-model_v4_TED01"]],"b":[["alkaloids/labradorin-1.yaml","labradorin 1"],["alkaloids/labradorin-2.yaml","labradorin 2"],["alkaloids/pimprinine.yaml","pimprinine"]]},{"id":"NCBITaxon:448385","l":"","na":3,"nb":3,"a":[["TED%3AAF-A9FYP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A9FYP8-F1-model_v4_TED01"],["TED%3AAF-A9G932-F1-model_v4_TED01","TED highly-symmetric fold AF-A9G932-F1-model_v4_TED01"],["TED%3AAF-A9F9E5-F1-model_v4_TED01","TED novel fold AF-A9F9E5-F1-model_v4_TED01"]],"b":[["polyketides/etnangien.yaml","etnangien"],["polyketides/soraphen-a.yaml","soraphen A"],["terpenoids/eremophilene.yaml","(+)-eremophilene"]]},{"id":"NCBITaxon:45133","l":"Lasiodiplodia theobromae","na":3,"nb":3,"a":[["TED%3AAF-A0A5N5DCC3-F1-model_v4_TED01","TED novel fold AF-A0A5N5DCC3-F1-model_v4_TED01"],["TED%3AAF-A0A5N5DDT9-F1-model_v4_TED01","TED novel fold AF-A0A5N5DDT9-F1-model_v4_TED01"],["TED%3AAF-A0A5N5DLG2-F1-model_v4_TED02","TED novel fold AF-A0A5N5DLG2-F1-model_v4_TED02"]],"b":[["polyketides/lasiodiplodin.yaml","lasiodiplodin"],["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"],["shikimates_and_phenylpropanoids/mellein.yaml","(-)-Mellein"]]},{"id":"NCBITaxon:454130","l":"Aspergillus calidoustus","na":3,"nb":3,"a":[["Pfam%3APF28380","Sesquiterpene cyclase astC-like C-terminal domain"],["TED%3AAF-A0A0U5FXA2-F1-model_v4_TED01","TED novel fold AF-A0A0U5FXA2-F1-model_v4_TED01"],["TED%3AAF-A0A0U5GJ59-F1-model_v4_TED01","TED novel fold AF-A0A0U5GJ59-F1-model_v4_TED01"]],"b":[["terpenoids/calidoustene-a.yaml","calidoustene A"],["terpenoids/calidoustene-b.yaml","calidoustene B"],["terpenoids/calidoustene-c.yaml","calidoustene C"]]},{"id":"UniProt:P59594","l":"","na":3,"nb":3,"a":[["ComplexPortal%3ACPX-7088","SARS-CoV uncleaved Spike protein complex"],["proteintraitsmech%3AMEROPS_CLEAVAGE_S01_247","epitheliasin cleavage specificity"],["IDPO%3A0000048","limited proteolysis display site"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/linaclotide.yaml","linaclotide"],["carbohydrates/kanamycin-a.yaml","kanamycin A"]]},{"id":"NCBITaxon:559292","l":"Saccharomyces cerevisiae (strain ATCC 204508 / S288c)","na":14483,"nb":2,"a":[["EC%3A1.14.18.-","With another compound as one donor, and incorporation of one atom of oxygen"],["EC%3A1.16.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.18.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.5.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.8.-.-","Acting on a sulfur group of donors"]],"b":[["polyketides/kojic-acid.yaml","kojic acid"],["polyketides/radicicol.yaml","radicicol"]]},{"id":"NCBITaxon:224308","l":"Bacillus subtilis (strain 168)","na":11310,"nb":2,"a":[["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.10.3.-","With oxygen as acceptor"],["EC%3A1.13.12.-","With incorporation of one atom of oxygen (internal monooxygenases or internal mixed function oxidases)"],["EC%3A1.14.19.-","With oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water"],["EC%3A1.17.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.21.98.-","With other, known acceptors"]],"b":[["unclassified/corynebactin.yaml","corynebactin"],["unclassified/pulcherriminic-acid.yaml","pulcherriminic acid"]]},{"id":"UniProt:P37840","l":"","na":102,"nb":2,"a":[["ComplexPortal%3ACPX-22614","-"],["ComplexPortal%3ACPX-25548","-"],["GO%3A0030424","axon"],["GO%3A0043679","axon terminus"],["GO%3A0005938","cell cortex"],["GO%3A0030426","growth cone"]],"b":[["amino_acids_and_peptides/actinonin.yaml","actinonin"],["polyketides/sirolimus.yaml","sirolimus"]]},{"id":"NCBITaxon:93061","l":"Staphylococcus aureus (strain NCTC 8325 / PS 47)","na":47,"nb":2,"a":[["IDPO%3A0000033","flexible linker"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF07694","5TMR of 5TMR-LYT"],["Pfam%3APF01757","Acyltransferase domain"],["Pfam%3APF18719","ArlS sensor domain"],["Pfam%3APF02216","B domain"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["unclassified/staphyloferrin-a.yaml","staphyloferrin A"]]},{"id":"UniProt:P00519","l":"","na":42,"nb":2,"a":[["EC%3A2.7.10.2","non-specific protein-tyrosine kinase"],["ComplexPortal%3ACPX-20158","-"],["ComplexPortal%3ACPX-24443","-"],["ComplexPortal%3ACPX-24492","-"],["ComplexPortal%3ACPX-25676","-"],["GO%3A0000405","bubble DNA binding"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"],["polyketides/emodin.yaml","emodin"]]},{"id":"UniProt:P24941","l":"","na":34,"nb":2,"a":[["ComplexPortal%3ACPX-10673","-"],["ComplexPortal%3ACPX-11851","-"],["ComplexPortal%3ACPX-13027","-"],["ComplexPortal%3ACPX-15343","-"],["ComplexPortal%3ACPX-19796","-"],["ComplexPortal%3ACPX-21602","-"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"],["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:1912","l":"Streptomyces hygroscopicus","na":2,"nb":29,"a":[["Pfam%3APF21168","Chorismatase FkbO/Hyg5-like, N-terminal"],["TED%3AAF-A0A1S6RUT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S6RUT8-F1-model_v4_TED01"]],"b":[["alkaloids/9-methylstreptimidone.yaml","9-methylstreptimidone"],["alkaloids/indigoidine-2.yaml","indigoidine"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/cyclothiazomycin.yaml","cyclothiazomycin"],["amino_acids_and_peptides/eponemycin.yaml","eponemycin"],["amino_acids_and_peptides/himastatin.yaml","himastatin"]]},{"id":"UniProt:O15296","l":"","na":26,"nb":2,"a":[["ComplexPortal%3ACPX-11775","-"],["ComplexPortal%3ACPX-23490","-"],["ComplexPortal%3ACPX-25286","-"],["GO%3A0050473","arachidonate 15-lipoxygenase activity"],["GO%3A0036403","arachidonate 8(S)-lipoxygenase activity"],["GO%3A0016165","linoleate 13S-lipoxygenase activity"]],"b":[["amino_acids_and_peptides/polymyxin.yaml","polymyxin"],["polyketides/tautomycetin.yaml","tautomycetin"]]},{"id":"UniProt:P62937","l":"","na":26,"nb":2,"a":[["ComplexPortal%3ACPX-16615","-"],["ComplexPortal%3ACPX-25278","-"],["GO%3A1904813","ficolin-1-rich granule lumen"],["GO%3A0016018","cyclosporin A binding"],["GO%3A1904399","heparan sulfate binding"],["GO%3A0003755","peptidyl-prolyl cis-trans isomerase activity"]],"b":[["amino_acids_and_peptides/cyclosporin-a.yaml","cyclosporin A"],["amino_acids_and_peptides/sanglifehrin-a.yaml","sanglifehrin A"]]},{"id":"UniProt:P06276","l":"","na":23,"nb":2,"a":[["ComplexPortal%3ACPX-12760","-"],["ComplexPortal%3ACPX-18032","-"],["ComplexPortal%3ACPX-20651","-"],["ComplexPortal%3ACPX-21068","-"],["ComplexPortal%3ACPX-21174","-"],["ComplexPortal%3ACPX-21255","-"]],"b":[["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/physostigmine.yaml","physostigmine"]]},{"id":"UniProt:P07203","l":"","na":21,"nb":2,"a":[["ComplexPortal%3ACPX-13707","-"],["ComplexPortal%3ACPX-15014","-"],["ComplexPortal%3ACPX-20814","-"],["ComplexPortal%3ACPX-20823","-"],["ComplexPortal%3ACPX-23329","-"],["ComplexPortal%3ACPX-23744","-"]],"b":[["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"],["unclassified/beauvericin.yaml","beauvericin"]]},{"id":"UniProt:P63092","l":"","na":21,"nb":2,"a":[["GO%3A0005834","heterotrimeric G-protein complex"],["GO%3A0010856","adenylate cyclase activator activity"],["GO%3A0031748","D1 dopamine receptor binding"],["GO%3A0031683","G-protein beta/gamma-subunit complex binding"],["GO%3A0007190","activation of adenylate cyclase activity"],["GO%3A0038184","adenylate cyclase-activating G protein-coupled bile acid receptor signaling pathway"]],"b":[["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"]]},{"id":"NCBITaxon:746128","l":"Aspergillus fumigatus","na":2,"nb":20,"a":[["Pfam%3APF07335","Fungal chitosanase of glycosyl hydrolase group 75"],["Pfam%3APF12296","Hydrophobic surface binding protein A"]],"b":[["alkaloids/fumigaclavine-c.yaml","fumigaclavine C"],["alkaloids/fumiquinazoline-a.yaml","fumiquinazoline A"],["alkaloids/fumiquinazoline-c.yaml","fumiquinazoline C"],["alkaloids/fumiquinazoline-d.yaml","fumiquinazoline D"],["alkaloids/hexadehydroastechrome.yaml","hexadehydroastechrome"],["carbohydrates/tobramycin.yaml","tobramycin"]]},{"id":"NCBITaxon:176299","l":"Agrobacterium fabrum (strain C58 / ATCC 33970)","na":17,"nb":2,"a":[["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF28403","Aconitase X second domain"],["Pfam%3APF28406","Aconitase X third domain"],["Pfam%3APF04412","Aconitase X first domain"],["Pfam%3APF01989","Aconitase X swivel domain"]],"b":[["amino_acids_and_peptides/fabrubactin-a.yaml","fabrubactin A"],["amino_acids_and_peptides/fabrubactin-b.yaml","fabrubactin B"]]},{"id":"NCBITaxon:455632","l":"Streptomyces griseus subsp. griseus NBRC 13350","na":2,"nb":17,"a":[["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["PROSITE%3APS01311","Prolipoprotein diacylglyceryl transferase signature"]],"b":[["alkaloids/grixazone-a.yaml","grixazone A"],["alkaloids/iminimycin-a.yaml","iminimycin A"],["alkaloids/iminimycin-b.yaml","iminimycin B"],["alkaloids/melanin.yaml","melanin"],["carbohydrates/streptomycin.yaml","streptomycin"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":16,"nb":2,"a":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF28265","Lipoprotein N-acylation protein LnsA-like"],["Pfam%3APF16403","Bacterial surface protein, Ig-like domain"],["Pfam%3APF03944","delta endotoxin"],["Pfam%3APF03945","delta endotoxin, N-terminal domain"],["Pfam%3APF06355","Aegerolysin"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["unclassified/andalusicin-a.yaml","andalusicin A"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":16,"nb":2,"a":[["Pfam%3APF05932","Tir chaperone protein (CesT) family"],["Pfam%3APF17656","FlgA N-terminal domain"],["Pfam%3APF22200","ExsA N-terminal regulatory domain"],["Pfam%3APF05171","Haemin-degrading HemS.ChuX domain"],["Pfam%3APF07201","HrpJ-like domain"],["Pfam%3APF04391","Protein of unknown function (DUF533)"]],"b":[["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["alkaloids/yersiniabactin.yaml","yersiniabactin"]]},{"id":"NCBITaxon:1360","l":"Lactococcus lactis subsp. lactis","na":14,"nb":2,"a":[["Pfam%3APF08951","Bacteriocin immunity protein family"],["Pfam%3APF08998","Bacterial epsilon antitoxin"],["Pfam%3APF25887","LcnD-like, long helical bundle domain"],["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF25940","LcnD-like, C-terminal domain"],["Pfam%3APF08129","Alpha/beta enterocin family"]],"b":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"],["amino_acids_and_peptides/nisin-a.yaml","nisin A"]]},{"id":"NCBITaxon:29488","l":"Photorhabdus luminescens","na":2,"nb":14,"a":[["Pfam%3APF02273","Acyl transferase"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"]],"b":[["alkaloids/photobactin.yaml","photobactin"],["alkaloids/pzn5.yaml","PZN5"],["amino_acids_and_peptides/gamexpeptide-c.yaml","gamexpeptide C"],["amino_acids_and_peptides/glidobactin.yaml","glidobactin"],["amino_acids_and_peptides/luminmycin-a.yaml","luminmycin A"],["polyketides/photopyrone-a.yaml","photopyrone A"]]},{"id":"NCBITaxon:759273","l":"Colletotrichum higginsianum IMI 349063","na":2,"nb":14,"a":[["TED%3AAF-A0A1B7Y9H0-F1-model_v4_TED01","TED novel fold AF-A0A1B7Y9H0-F1-model_v4_TED01"],["TED%3AAF-H1V1S2-F1-model_v4_TED01","TED novel fold AF-H1V1S2-F1-model_v4_TED01"]],"b":[["shikimates_and_phenylpropanoids/colletorin-d-acid.yaml","Colletorin D acid"],["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"],["unclassified/13-epi-higginsianin-c.yaml","13-epi-higginsianin C"],["unclassified/colletochlorin-a.yaml","Colletochlorin A"],["unclassified/colletochlorin-b.yaml","Colletochlorin B"],["unclassified/colletochlorin-d.yaml","Colletochlorin D"]]},{"id":"NCBITaxon:271848","l":"Burkholderia thailandensis E264","na":2,"nb":12,"a":[["Pfam%3APF12091","Protein of unknown function (DUF3567)"],["Pfam%3APF01075","Glycosyltransferase family 9 (heptosyltransferase)"]],"b":[["alkaloids/malleobactin-b.yaml","malleobactin B"],["alkaloids/malleobactin-d.yaml","malleobactin D"],["polyketides/malleicyprol.yaml","malleicyprol"],["polyketides/malleilactone.yaml","malleilactone"],["polyketides/thailandamide-lactone.yaml","thailandamide lactone"],["polyketides/thailandamide.yaml","thailandamide"]]},{"id":"NCBITaxon:1111077","l":"Claviceps purpurea 20.1","na":2,"nb":11,"a":[["Pfam%3APF28338","AclK C-terminal domain"],["TED%3AAF-M1W301-F1-model_v4_TED01","TED highly-symmetric fold AF-M1W301-F1-model_v4_TED01"]],"b":[["alkaloids/ergotamine.yaml","ergotamine"],["polyketides/clavorubin.yaml","Clavorubin"],["polyketides/endocrocin.yaml","endocrocin"],["polyketides/o-orsellinate-depside.yaml","o-orsellinate depside"],["polyketides/secalonic-acid-a.yaml","Secalonic acid A"],["polyketides/secalonic-acid-b.yaml","Secalonic acid B"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":11,"nb":2,"a":[["Pfam%3APF22829","HphA C-terminal domain"],["Pfam%3APF22828","HphA N-terminal heme-binding domain"],["Pfam%3APF28205","Ciprofloxacin tolerance protein"],["Pfam%3APF19582","Solute-binding protein AdeT 1/2"],["PROSITE%3APS00337","Beta-lactamase class-D active site"],["Pfam%3APF24575","Surface lipoprotein assembly modifier, N-terminal TPR repeats"]],"b":[["alkaloids/acinetobactin.yaml","acinetobactin"],["amino_acids_and_peptides/fimsbactin-a.yaml","fimsbactin A"]]},{"id":"UniProt:P11802","l":"","na":11,"nb":2,"a":[["ComplexPortal%3ACPX-10673","-"],["ComplexPortal%3ACPX-18434","-"],["ComplexPortal%3ACPX-20361","-"],["ComplexPortal%3ACPX-21602","-"],["ComplexPortal%3ACPX-26168","-"],["ComplexPortal%3ACPX-2010","Cyclin D1-CDK4 complex"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"],["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:455432","l":"Nocardia terpenica","na":2,"nb":10,"a":[["TED%3AAF-A0A6G9ZDY9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6G9ZDY9-F1-model_v4_TED01"],["TED%3AAF-A0A164L9V7-F1-model_v4_TED03","TED novel fold AF-A0A164L9V7-F1-model_v4_TED03"]],"b":[["amino_acids_and_peptides/nocapeptin-a.yaml","nocapeptin A"],["amino_acids_and_peptides/nocathioamide-a.yaml","nocathioamide A"],["polyketides/brasilinolide-a.yaml","brasilinolide A"],["polyketides/brasilinolide-b.yaml","brasilinolide B"],["polyketides/brasilinolide-c.yaml","brasilinolide C"],["polyketides/terpenomycin.yaml","terpenomycin"]]},{"id":"NCBITaxon:1159556","l":"Ustilaginoidea virens","na":2,"nb":9,"a":[["Pfam%3APF06966","Protein of unknown function (DUF1295)"],["TED%3AAF-A0A1B5L5W2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1B5L5W2-F1-model_v4_TED03"]],"b":[["amino_acids_and_peptides/ustiloxin-b.yaml","ustiloxin B"],["polyketides/ustilaginoidin-a.yaml","ustilaginoidin A"],["polyketides/ustilaginoidin-d.yaml","ustilaginoidin D"],["polyketides/ustilaginoidin-e.yaml","ustilaginoidin E"],["polyketides/ustilaginoidin-f.yaml","ustilaginoidin F"],["polyketides/ustilaginoidin-g.yaml","ustilaginoidin G"]]},{"id":"NCBITaxon:158878","l":"Staphylococcus aureus (strain Mu50 / ATCC 700699)","na":9,"nb":2,"a":[["Pfam%3APF26317","Histidine racemase CntK N-terminal domain"],["Pfam%3APF13610","DDE domain"],["Pfam%3APF12199","Extracellular fibrinogen binding protein C terminal"],["Pfam%3APF26323","Staphylococcus aureus type VII secretion system substrate EsxC"],["Pfam%3APF19776","Family of unknown function (DUF6262)"],["Pfam%3APF27790","Poly-beta-1,6-N-acetyl-D-glucosamine synthesis protein IcaD"]],"b":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"]]},{"id":"NCBITaxon:57975","l":"Burkholderia thailandensis","na":2,"nb":9,"a":[["TED%3AAF-A0A7Z8HH79-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Z8HH79-F1-model_v4_TED01"],["TED%3AAF-A0A7Z8HK43-F1-model_v4_TED01","TED novel fold AF-A0A7Z8HK43-F1-model_v4_TED01"]],"b":[["fatty_acids/fr901464.yaml","FR901464"],["polyketides/malleicyprol.yaml","malleicyprol"],["polyketides/thailandamide-lactone.yaml","thailandamide lactone"],["polyketides/thailandamide.yaml","thailandamide"],["polyketides/thailanstatin-a.yaml","thailanstatin A"],["shikimates_and_phenylpropanoids/bactobolin.yaml","bactobolin"]]},{"id":"UniProt:P11309","l":"","na":9,"nb":2,"a":[["ComplexPortal%3ACPX-11827","-"],["ComplexPortal%3ACPX-16792","-"],["ComplexPortal%3ACPX-21719","-"],["ComplexPortal%3ACPX-26168","-"],["GO%3A1905062","positive regulation of cardioblast proliferation"],["GO%3A1905701","positive regulation of xenobiotic detoxification by transmembrane export across the plasma membrane"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"],["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":8,"nb":2,"a":[["Pfam%3APF01890","Cobalamin synthesis G C-terminus"],["Pfam%3APF11761","Cobalamin biosynthesis central region"],["Pfam%3APF11760","Cobalamin synthesis G N-terminal"],["Pfam%3APF02570","Precorrin-8X methylmutase"],["PROSITE%3APS00304","Small, acid-soluble spore proteins, alpha/beta type, signature 1"],["PROSITE%3APS00684","Small, acid-soluble spore proteins, alpha/beta type, signature 2"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"],["carbohydrates/oxetanocin-a.yaml","oxetanocin A"]]},{"id":"NCBITaxon:303698","l":"Penicillium steckii","na":2,"nb":8,"a":[["TED%3AAF-A0A1V6TCF9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1V6TCF9-F1-model_v4_TED03"],["TED%3AAF-A0A1V6U0I0-F1-model_v4_TED02","TED novel fold AF-A0A1V6U0I0-F1-model_v4_TED02"]],"b":[["unclassified/adametizine-a.yaml","adametizine A"],["unclassified/fa2097.yaml","FA2097"],["unclassified/outovirin-a.yaml","outovirin A"],["unclassified/outovirin-c.yaml","outovirin C"],["unclassified/penigainamide-a.yaml","penigainamide A"],["unclassified/penigainamide-b.yaml","penigainamide B"]]},{"id":"NCBITaxon:119927","l":"Alternaria tenuissima","na":7,"nb":2,"a":[["TED%3AAF-A0A4Q4MR18-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q4MR18-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4M1N1-F1-model_v4_TED01","TED novel fold AF-A0A4Q4M1N1-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4M2G6-F1-model_v4_TED01","TED novel fold AF-A0A4Q4M2G6-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4MJL0-F1-model_v4_TED01","TED novel fold AF-A0A4Q4MJL0-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4PGY1-F1-model_v4_TED01","TED novel fold AF-A0A4Q4PGY1-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4RTT0-F1-model_v4_TED01","TED novel fold AF-A0A4Q4RTT0-F1-model_v4_TED01"]],"b":[["polyketides/patulin.yaml","patulin"],["polyketides/solanapyrone-a.yaml","solanapyrone A"]]},{"id":"NCBITaxon:1279085","l":"Fusarium fujikuroi IMI 58289","na":2,"nb":7,"a":[["Pfam%3APF12585","Virulence factor CipC-like"],["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"]],"b":[["polyketides/bikaverin.yaml","bikaverin"],["polyketides/fujikurin-c.yaml","fujikurin C"],["polyketides/fujikurin-d.yaml","fujikurin D"],["polyketides/gibepyrone-a.yaml","gibepyrone A"],["terpenoids/acorenol.yaml","α-acorenol"],["terpenoids/koraiol.yaml","koraiol"]]},{"id":"NCBITaxon:1380566","l":"Pochonia chlamydosporia 170","na":2,"nb":7,"a":[["TED%3AAF-A0A179FUG8-F1-model_v4_TED01","TED novel fold AF-A0A179FUG8-F1-model_v4_TED01"],["TED%3AAF-A0A179FWH3-F1-model_v4_TED01","TED novel fold AF-A0A179FWH3-F1-model_v4_TED01"]],"b":[["polyketides/monocillin-ii.yaml","monocillin II"],["polyketides/monocillin-iv.yaml","monocillin IV"],["polyketides/monocillin-v.yaml","monocillin V"],["polyketides/monocillin-vi.yaml","monocillin VI"],["polyketides/monocillin-vii.yaml","monocillin VII"],["polyketides/monorden-d.yaml","monorden D"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":7,"nb":2,"a":[["Pfam%3APF19443","DAHL domain"],["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"],["Pfam%3APF03524","Conjugal transfer protein"],["Pfam%3APF27439","Chaperone protein DnaJ C-terminal region"],["Pfam%3APF10907","Protein of unknown function (DUF2749)"],["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]],"b":[["alkaloids/agrobactin.yaml","agrobactin"],["amino_acids_and_peptides/aztreonam.yaml","aztreonam"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":6,"nb":2,"a":[["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF03744","6-carboxyhexanoate--CoA ligase"],["PROSITE%3APS00836","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 1"],["PROSITE%3APS00837","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 2"],["TED%3AAF-A0A2S5D092-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5D092-F1-model_v4_TED01"],["TED%3AAF-A0A2S0JW09-F1-model_v4_TED01","TED novel fold AF-A0A2S0JW09-F1-model_v4_TED01"]],"b":[["alkaloids/biotin.yaml","biotin"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:1894","l":"Kitasatospora aureofaciens","na":2,"nb":6,"a":[["Pfam%3APF01933","2-phospho-L-lactate transferase CofD"],["TED%3AAF-A0A1E7NF13-F1-model_v4_TED01","TED novel fold AF-A0A1E7NF13-F1-model_v4_TED01"]],"b":[["fatty_acids/triacsin-c.yaml","triacsin C"],["polyketides/auricin.yaml","auricin"],["polyketides/chlortetracycline.yaml","chlortetracycline"],["polyketides/lipomycin.yaml","α-lipomycin"],["polyketides/oxytetracycline.yaml","oxytetracycline"],["polyketides/venturicidin-a.yaml","venturicidin A"]]},{"id":"NCBITaxon:321","l":"Pseudomonas syringae pv. syringae","na":6,"nb":2,"a":[["Pfam%3APF03421","YopJ Serine/Threonine acetyltransferase"],["Pfam%3APF17914","HopA1 effector protein family"],["Pfam%3APF27361","HrcQa N-terminal domain"],["Pfam%3APF04877","HrpZ"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]],"b":[["amino_acids_and_peptides/3-methylarginine.yaml","3-methylarginine"],["unclassified/syringopeptin-25a.yaml","syringopeptin 25A"]]},{"id":"NCBITaxon:52","l":"Chondromyces crocatus","na":2,"nb":6,"a":[["TED%3AAF-A0A0K1ER44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0K1ER44-F1-model_v4_TED01"],["TED%3AAF-A0A0K1E854-F1-model_v4_TED01","TED novel fold AF-A0A0K1E854-F1-model_v4_TED01"]],"b":[["polyketides/chondrochloren-a.yaml","chondrochloren A"],["polyketides/cmc-thuggacin-a.yaml","Cmc-thuggacin A"],["polyketides/crocacin.yaml","crocacin"],["shikimates_and_phenylpropanoids/ajudazol-a.yaml","ajudazol A"],["unclassified/chondramide-a.yaml","chondramide A"],["unclassified/cmc-thuggacin-b.yaml","Cmc-thuggacin B"]]},{"id":"NCBITaxon:2795974","l":"Stieleria maiorica","na":2,"nb":5,"a":[["TED%3AAF-A0A5B9MHL4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5B9MHL4-F1-model_v4_TED02"],["TED%3AAF-A0A5B9MK37-F1-model_v4_TED03","TED novel fold AF-A0A5B9MK37-F1-model_v4_TED03"]],"b":[["alkaloids/stieleriacine-a1.yaml","stieleriacine A1"],["alkaloids/stieleriacine-a2.yaml","stieleriacine A2"],["fatty_acids/stieleriacine-c.yaml","stieleriacine C"],["unclassified/stieleriacine-b1.yaml","stieleriacine B1"],["unclassified/stieleriacine-b2.yaml","stieleriacine B2"]]},{"id":"NCBITaxon:305","l":"Ralstonia solanacearum","na":5,"nb":2,"a":[["Pfam%3APF14897","EpsG family"],["TED%3AAF-A0A7I8FQZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7I8FQZ6-F1-model_v4_TED01"],["TED%3AAF-A0A7H1MI34-F1-model_v4_TED01","TED novel fold AF-A0A7H1MI34-F1-model_v4_TED01"],["TED%3AAF-A0A7I8FKL4-F1-model_v4_TED01","TED novel fold AF-A0A7I8FKL4-F1-model_v4_TED01"],["TED%3AAF-A0A850FKB0-F1-model_v4_TED01","TED novel fold AF-A0A850FKB0-F1-model_v4_TED01"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"],["unclassified/micacocidin.yaml","micacocidin"]]},{"id":"NCBITaxon:394096","l":"Hyalangium minutum","na":5,"nb":2,"a":[["TED%3AAF-A0A085W4M3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085W4M3-F1-model_v4_TED01"],["TED%3AAF-A0A085WRA7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085WRA7-F1-model_v4_TED01"],["TED%3AAF-A0A085WWM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085WWM4-F1-model_v4_TED01"],["TED%3AAF-A0A085W7S5-F1-model_v4_TED03","TED novel fold AF-A0A085W7S5-F1-model_v4_TED03"],["TED%3AAF-A0A085WH04-F1-model_v4_TED01","TED novel fold AF-A0A085WH04-F1-model_v4_TED01"]],"b":[["polyketides/nystatin-a1.yaml","nystatin A1"],["unclassified/myxochromide-d-2.yaml","myxochromide D"]]},{"id":"NCBITaxon:193462","l":"Streptomyces niveus","na":2,"nb":4,"a":[["Pfam%3APF16861","Carbamoyltransferase C-terminus"],["Pfam%3APF02543","Carbamoyltransferase N-terminus"]],"b":[["alkaloids/phenaziterpene-a.yaml","phenaziterpene A"],["carbohydrates/kanamycin-a.yaml","kanamycin A"],["shikimates_and_phenylpropanoids/cathomycin.yaml","cathomycin"],["unclassified/be-14106.yaml","BE-14106"]]},{"id":"NCBITaxon:394095","l":"Pyxidicoccus fallax","na":4,"nb":2,"a":[["TED%3AAF-A0A848LUK3-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A848LUK3-F1-model_v4_TED04"],["TED%3AAF-A0A848LF16-F1-model_v4_TED01","TED novel fold AF-A0A848LF16-F1-model_v4_TED01"],["TED%3AAF-A0A848LFV1-F1-model_v4_TED03","TED novel fold AF-A0A848LFV1-F1-model_v4_TED03"],["TED%3AAF-A0A848LG55-F1-model_v4_TED01","TED novel fold AF-A0A848LG55-F1-model_v4_TED01"]],"b":[["polyketides/gulmirecin-a.yaml","gulmirecin A"],["unclassified/myxarylin.yaml","Myxarylin"]]},{"id":"NCBITaxon:426418","l":"Pyrenophora tritici-repentis Pt-1C-BFP","na":2,"nb":4,"a":[["TED%3AAF-B2VYP9-F1-model_v4_TED01","TED novel fold AF-B2VYP9-F1-model_v4_TED01"],["TED%3AAF-B2VZ40-F1-model_v4_TED02","TED novel fold AF-B2VZ40-F1-model_v4_TED02"]],"b":[["unclassified/triticone-a.yaml","triticone A"],["unclassified/triticone-b.yaml","triticone B"],["unclassified/triticone-c.yaml","triticone C"],["unclassified/triticone-f.yaml","triticone F"]]},{"id":"NCBITaxon:5270","l":"","na":4,"nb":2,"a":[["Pfam%3APF17445","Mating factor A1"],["Pfam%3APF24563","Mug60/KHD4 KH type I domain"],["Pfam%3APF01185","Fungal hydrophobin"],["Pfam%3APF07460","NUMOD3 motif"]],"b":[["fatty_acids/itaconic-acid.yaml","itaconic acid"],["fatty_acids/ustilagic-acid.yaml","ustilagic acid"]]},{"id":"NCBITaxon:55601","l":"Vibrio anguillarum","na":4,"nb":2,"a":[["Pfam%3APF17327","Acyl homoserine lactone synthase"],["PROSITE%3APS00949","Autoinducer synthase family signature"],["TED%3AAF-A0A241NLV5-F1-model_v4_TED03","TED novel fold AF-A0A241NLV5-F1-model_v4_TED03"],["TED%3AAF-A0A290PUC4-F1-model_v4_TED02","TED novel fold AF-A0A290PUC4-F1-model_v4_TED02"]],"b":[["alkaloids/anguibactin.yaml","anguibactin"],["amino_acids_and_peptides/vanchrobactin.yaml","vanchrobactin"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":4,"nb":2,"a":[["Pfam%3APF01375","Heat-labile enterotoxin alpha chain"],["Pfam%3APF09101","Exotoxin A binding"],["Pfam%3APF09009","Exotoxin A catalytic"],["Pfam%3APF09102","Exotoxin A, targeting"]],"b":[["alkaloids/vibriobactin-2.yaml","vibriobactin"],["alkaloids/vibriobactin.yaml","vibriobactin"]]},{"id":"UniProt:P02829","l":"","na":4,"nb":2,"a":[["ComplexPortal%3ACPX-1276","HMC complex"],["GO%3A0006458","'de novo' protein folding"],["GO%3A0043248","proteasome assembly"],["GO%3A0070482","response to oxygen levels"]],"b":[["polyketides/monocillin-iv.yaml","monocillin IV"],["polyketides/radicicol.yaml","radicicol"]]},{"id":"NCBITaxon:1120925","l":"Acinetobacter bouvetii DSM 14964 = CIP 107468","na":2,"nb":3,"a":[["proteintraitsmech%3AELIFE109154_VibH_like","VibH-like metallophore standalone condensation enzyme family"],["TED%3AAF-N9C7M4-F1-model_v4_TED02","TED novel fold AF-N9C7M4-F1-model_v4_TED02"]],"b":[["alkaloids/butanochelin.yaml","butanochelin"],["alkaloids/pentanochelin.yaml","pentanochelin"],["alkaloids/propanochelin.yaml","propanochelin"]]},{"id":"NCBITaxon:1229662","l":"Pestalotiopsis fici (strain W106-1 / CGMCC3.15140)","na":3,"nb":2,"a":[["Pfam%3APF26087","Domain of unknown function (DUF8032)"],["Pfam%3APF07110","EthD domain"],["TED%3AAF-W3WKJ8-F1-model_v4_TED01","TED novel fold AF-W3WKJ8-F1-model_v4_TED01"]],"b":[["polyketides/naphthalene-1-3-8-triol.yaml","naphthalene-1,3,8-triol"],["polyketides/scytalone.yaml","scytalone"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":2,"nb":3,"a":[["Pfam%3APF02052","Gallidermin"],["Pfam%3APF04604","Type-A lantibiotic"]],"b":[["unclassified/leuvalin.yaml","leuvalin"],["unclassified/mutanocyclin.yaml","mutanocyclin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":2,"a":[["TED%3AAF-A0A142EAM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142EAM9-F1-model_v4_TED03"],["TED%3AAF-A0A1Q3DTY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3DTY6-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3DNE3-F1-model_v4_TED01","TED novel fold AF-A0A1Q3DNE3-F1-model_v4_TED01"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:1907","l":"Streptomyces glaucescens","na":2,"nb":3,"a":[["Pfam%3APF04673","Polyketide synthesis cyclase"],["Pfam%3APF04655","Aminoglycoside/hydroxyurea antibiotic resistance kinase"]],"b":[["carbohydrates/5-hydroxystreptomycin.yaml","5'-hydroxystreptomycin"],["carbohydrates/streptomycin.yaml","streptomycin"],["polyketides/tetracenomycin-c.yaml","tetracenomycin C"]]},{"id":"NCBITaxon:1940","l":"Streptomyces albireticuli NRRL B-1670","na":2,"nb":3,"a":[["TED%3AAF-A0A1Z2LD39-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z2LD39-F1-model_v4_TED01"],["TED%3AAF-A0A1Z2LBV3-F1-model_v4_TED01","TED novel fold AF-A0A1Z2LBV3-F1-model_v4_TED01"]],"b":[["fatty_acids/fuelimicin-b.yaml","fuelimicin B"],["fatty_acids/fuelimicin-c.yaml","fuelimicin C"],["fatty_acids/fuelimycin-a.yaml","fuelimycin A"]]},{"id":"NCBITaxon:240292","l":"Trichormus variabilis ATCC 29413","na":2,"nb":3,"a":[["Pfam%3APF18921","Cyanophycin synthase-like N-terminal domain"],["Pfam%3APF13619","KTSC domain"]],"b":[["unclassified/4-deoxygadusol.yaml","4-deoxygadusol"],["unclassified/mycosporine-glycine.yaml","mycosporine glycine"],["unclassified/shinorine.yaml","shinorine"]]},{"id":"NCBITaxon:344612","l":"Aspergillus clavatus (strain ATCC 1007 / CBS 513.65 / DSM 816 / NCTC 3887 / NRRL 1 / QM 1276 / 107)","na":3,"nb":2,"a":[["Pfam%3APF28457","Probable beta-glucosidase btgE N-terminal domain"],["Pfam%3APF24438","IML1, N-terminal, fungi"],["Pfam%3APF25326","SRB8 ARM-like domain"]],"b":[["alkaloids/cytochalasin-e.yaml","cytochalasin E"],["alkaloids/cytochalasin-k.yaml","cytochalasin K"]]},{"id":"NCBITaxon:3635","l":"Gossypium hirsutum","na":3,"nb":2,"a":[["Pfam%3APF20452","Calmodulin binding protein C-terminal domain"],["Pfam%3APF20451","Calmodulin binding protein central domain"],["Pfam%3APF07887","Calmodulin binding protein-like N-terminal domain"]],"b":[["fatty_acids/butyrolactone.yaml","γ-butyrolactone"],["terpenoids/cadinene.yaml","(−)-δ-cadinene"]]},{"id":"NCBITaxon:394503","l":"","na":3,"nb":2,"a":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["PROSITE%3APS00812","Glycosyl hydrolases family 8 signature"],["Pfam%3APF01270","Glycosyl hydrolases family 8"]],"b":[["alkaloids/closthioamide.yaml","closthioamide"],["amino_acids_and_peptides/rc-aip1.yaml","Rc-AIP1"]]},{"id":"NCBITaxon:42236","l":"Streptomyces diastatochromogenes","na":2,"nb":3,"a":[["TED%3AAF-A0A233S9R2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A233S9R2-F1-model_v4_TED01"],["TED%3AAF-A0A233SM76-F1-model_v4_TED01","TED novel fold AF-A0A233SM76-F1-model_v4_TED01"]],"b":[["carbohydrates/toyocamycin.yaml","toyocamycin"],["polyketides/concanamycin-a.yaml","concanamycin A"],["polyketides/polyketomycin.yaml","polyketomycin"]]},{"id":"NCBITaxon:44250","l":"Paenibacillus alvei","na":3,"nb":2,"a":[["PROSITE%3APS00481","Thiol-activated cytolysins signature"],["TED%3AAF-A0A383R9F4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A383R9F4-F1-model_v4_TED01"],["TED%3AAF-A0A7Y4MLP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4MLP7-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/colistin-a.yaml","colistin A"],["amino_acids_and_peptides/colistin-b.yaml","colistin B"]]},{"id":"NCBITaxon:4530","l":"Oryza sativa","na":2,"nb":3,"a":[["Pfam%3APF10839","Protein of unknown function (DUF2647)"],["PROSITE%3APS00937","Ribosomal protein L20 signature"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/nonadec-1-ene.yaml","nonadec-1-ene"],["terpenoids/phytocassane.yaml","phytocassane"]]},{"id":"NCBITaxon:474922","l":"Colletotrichum gloeosporioides","na":2,"nb":3,"a":[["Pfam%3APF28223","CAP22"],["PROSITE%3APS00155","Cutinase, serine active site"]],"b":[["unclassified/colletochlorin-a.yaml","Colletochlorin A"],["unclassified/colletotrichin.yaml","colletotrichin"],["unclassified/orcinol.yaml","orcinol"]]},{"id":"NCBITaxon:51201","l":"Streptomyces griseocarneus","na":3,"nb":2,"a":[["TED%3AAF-A0A3L8IG13-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3L8IG13-F1-model_v4_TED01"],["TED%3AAF-A0A3L8KW22-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3L8KW22-F1-model_v4_TED02"],["TED%3AAF-A0A8A3HJQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8A3HJQ3-F1-model_v4_TED01"]],"b":[["alkaloids/pimprinine.yaml","pimprinine"],["carbohydrates/5-hydroxystreptomycin.yaml","5'-hydroxystreptomycin"]]},{"id":"NCBITaxon:536","l":"Chromobacterium violaceum","na":2,"nb":3,"a":[["TED%3AAF-A0A381EUD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A381EUD6-F1-model_v4_TED01"],["TED%3AAF-A0A447THJ9-F1-model_v4_TED01","TED novel fold AF-A0A447THJ9-F1-model_v4_TED01"]],"b":[["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["unclassified/romidepsin.yaml","romidepsin"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":3,"nb":2,"a":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"],["TED%3AAF-A0A7H8I034-F1-model_v4_TED01","TED novel fold AF-A0A7H8I034-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/aerobactin.yaml","aerobactin"],["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":3,"nb":2,"a":[["Pfam%3APF04205","FMN-binding domain"],["Pfam%3APF10795","Protein of unknown function (DUF2607)"],["TED%3AAF-A0A1W6U0N2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W6U0N2-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/vibrioferrin-2.yaml","vibrioferrin"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:67267","l":"Streptomyces alboflavus","na":3,"nb":2,"a":[["TED%3AAF-A0A1Z1WH37-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z1WH37-F1-model_v4_TED01"],["TED%3AAF-A0A291W4F3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A291W4F3-F1-model_v4_TED01"],["TED%3AAF-A0A291W5G3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A291W5G3-F1-model_v4_TED01"]],"b":[["alkaloids/thienodolin.yaml","thienodolin"],["terpenoids/2-methylisoborneol.yaml","2-methylisoborneol"]]},{"id":"NCBITaxon:1116229","l":"","na":2,"nb":2,"a":[["Pfam%3APF28402","Pneumocandin biosynthesis cluster protein B C-terminal domain"],["TED%3AAF-S3CJ96-F1-model_v4_TED01","TED novel fold AF-S3CJ96-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/pneumocandin-a0.yaml","pneumocandin A0"],["amino_acids_and_peptides/pneumocandin-b0.yaml","pneumocandin B0"]]},{"id":"NCBITaxon:1284","l":"Staphylococcus hyicus","na":2,"nb":2,"a":[["Pfam%3APF04650","YSIRK type signal peptide"],["PROSITE%3APS01123","Thermonuclease family signature 1"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["unclassified/staphyloferrin-a.yaml","staphyloferrin A"]]},{"id":"NCBITaxon:1365484","l":"","na":2,"nb":2,"a":[["Pfam%3APF11578","Protein of unknown function (DUF3237)"],["Pfam%3APF14269","Arylsulfotransferase (ASST)"]],"b":[["alkaloids/mycophenolic-acid-2.yaml","mycophenolic acid"],["terpenoids/pr-toxin.yaml","PR-toxin"]]},{"id":"NCBITaxon:1392255","l":"","na":2,"nb":2,"a":[["Pfam%3APF08592","Anthrone oxygenase"],["TED%3AAF-A0A2I1CES2-F1-model_v4_TED03","TED novel fold AF-A0A2I1CES2-F1-model_v4_TED03"]],"b":[["polyketides/neosartorin.yaml","neosartorin"],["unclassified/novofumigatonin.yaml","novofumigatonin"]]},{"id":"NCBITaxon:247156","l":"","na":2,"nb":2,"a":[["Pfam%3APF19288","CofH/MqnC C-terminal region"],["Pfam%3APF17645","Arylmalonate decarboxylase"]],"b":[["amino_acids_and_peptides/nocobactin-na.yaml","nocobactin NA"],["unclassified/nocobactin-na-10152b.yaml","nocobactin NA 10152B"]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":2,"nb":2,"a":[["Pfam%3APF21252","Glycosyl hydrolase 109, C-terminal domain"],["TED%3AAF-A0A3P1YJQ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3P1YJQ6-F1-model_v4_TED01"]],"b":[["carbohydrates/legionaminic-acid.yaml","legionaminic acid"],["carbohydrates/pseudaminate.yaml","pseudaminate"]]},{"id":"NCBITaxon:285532","l":"Streptomyces achromogenes subsp. streptozoticus","na":2,"nb":2,"a":[["Pfam%3APF07883","Cupin domain"],["Pfam%3APF14518","Iron-containing redox enzyme"]],"b":[["carbohydrates/streptozotocin.yaml","streptozotocin"],["unclassified/enteromycin.yaml","enteromycin"]]},{"id":"NCBITaxon:29430","l":"Acinetobacter haemolyticus","na":2,"nb":2,"a":[["TED%3AAF-A0A845PGH5-F1-model_v4_TED01","TED novel fold AF-A0A845PGH5-F1-model_v4_TED01"],["TED%3AAF-A0A857IU13-F1-model_v4_TED06","TED novel fold AF-A0A857IU13-F1-model_v4_TED06"]],"b":[["alkaloids/acinetoferrin.yaml","acinetoferrin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":2,"nb":2,"a":[["TED%3AAF-A0A6N3WS12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N3WS12-F1-model_v4_TED01"],["TED%3AAF-A0A3R7GIU2-F1-model_v4_TED02","TED novel fold AF-A0A3R7GIU2-F1-model_v4_TED02"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["terpenoids/xanthan.yaml","xanthan"]]},{"id":"NCBITaxon:3469","l":"Papaver somniferum","na":2,"nb":2,"a":[["Pfam%3APF00407","Pathogenesis-related protein Bet v 1 family"],["TED%3AAF-A0A4Y7LH48-F1-model_v4_TED01","TED novel fold AF-A0A4Y7LH48-F1-model_v4_TED01"]],"b":[["alkaloids/noscapine.yaml","(−)-noscapine"],["alkaloids/thebaine.yaml","thebaine"]]},{"id":"NCBITaxon:5044","l":"","na":2,"nb":2,"a":[["PROSITE%3APS00185","Isopenicillin N synthase signature 1"],["PROSITE%3APS00186","Isopenicillin N synthase signature 2"]],"b":[["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"],["polyketides/sorbicillin.yaml","sorbicillin"]]},{"id":"NCBITaxon:5074","l":"Penicillium brevicompactum","na":2,"nb":2,"a":[["Pfam%3APF09227","Bubble protein"],["Pfam%3APF18558","Methyltransferase, Helix-turn-helix domain"]],"b":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"],["unclassified/asperphenamate.yaml","asperphenamate"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":2,"nb":2,"a":[["PROSITE%3APS00336","Beta-lactamase class-C active site"],["TED%3AAF-A0A155XQ59-F1-model_v4_TED02","TED novel fold AF-A0A155XQ59-F1-model_v4_TED02"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["terpenoids/mk-8.yaml","MK-8"]]},{"id":"NCBITaxon:5514","l":"Fusarium sporotrichioides","na":2,"nb":2,"a":[["Pfam%3APF22701","Mal s 1 allergenic protein-like"],["TED%3AAF-A0A395RG49-F1-model_v4_TED02","TED novel fold AF-A0A395RG49-F1-model_v4_TED02"]],"b":[["terpenoids/t-2-toxin.yaml","T-2 toxin"],["unclassified/beauvericin.yaml","beauvericin"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":2,"nb":2,"a":[["TED%3AAF-B5UAE0-F1-model_v4_TED01","TED highly-symmetric fold AF-B5UAE0-F1-model_v4_TED01"],["TED%3AAF-A0A3E1IF45-F1-model_v4_TED01","TED novel fold AF-A0A3E1IF45-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/vibrioferrin-2.yaml","vibrioferrin"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:68170","l":"Lechevalieria aerocolonigenes","na":2,"nb":2,"a":[["Pfam%3APF12902","Ferritin-like"],["TED%3AAF-A0A0F0GZM7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0F0GZM7-F1-model_v4_TED03"]],"b":[["alkaloids/rebeccamycin.yaml","rebeccamycin"],["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:69","l":"Lysobacter enzymogenes","na":2,"nb":2,"a":[["TED%3AAF-A0A1J1E6A8-F1-model_v4_TED02","TED novel fold AF-A0A1J1E6A8-F1-model_v4_TED02"],["TED%3AAF-A0A7T8MLU2-F1-model_v4_TED03","TED novel fold AF-A0A7T8MLU2-F1-model_v4_TED03"]],"b":[["unclassified/heat-stable-antifungal-factor.yaml","heat-stable antifungal factor"],["unclassified/wap-8294a2.yaml","WAP-8294A2"]]},{"id":"NCBITaxon:983644","l":"","na":2,"nb":2,"a":[["TED%3AAF-G3J617-F1-model_v4_TED01","TED highly-symmetric fold AF-G3J617-F1-model_v4_TED01"],["TED%3AAF-G3JAX2-F1-model_v4_TED03","TED novel fold AF-G3JAX2-F1-model_v4_TED03"]],"b":[["unclassified/beauveriolide-i.yaml","beauveriolide I"],["unclassified/beauveriolide-iii.yaml","beauveriolide III"]]},{"id":"UniProt:P04058","l":"","na":2,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_03S","03S-binding site"],["proteintraitsmech%3ABIOLIP_AA7","AA7-binding site"]],"b":[["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/physostigmine.yaml","physostigmine"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":297,"nb":1,"a":[["IDPO%3A0000002","disorder"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000045","phosphorylation display site"],["IDPO%3A0000059","self-inhibition"],["Pfam%3APF17837","4'-phosphopantetheinyl transferase N-terminal domain"]],"b":[["unclassified/mycobactin.yaml","mycobactin"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":1,"nb":116,"a":[["Pfam%3APF03437","BtpA family"]],"b":[["alkaloids/altemicidin.yaml","altemicidin"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"],["alkaloids/aurachin-ss.yaml","aurachin SS"],["alkaloids/berninamycin-j.yaml","berninamycin J"],["alkaloids/berninamycin-k.yaml","berninamycin K"]]},{"id":"UniProt:P35222","l":"","na":91,"nb":1,"a":[["ComplexPortal%3ACPX-316","beta1-catenin - LEF1 complex"],["ComplexPortal%3ACPX-12016","-"],["ComplexPortal%3ACPX-14403","-"],["ComplexPortal%3ACPX-16015","-"],["ComplexPortal%3ACPX-16618","-"],["ComplexPortal%3ACPX-17387","-"]],"b":[["alkaloids/toxoflavin.yaml","toxoflavin"]]},{"id":"NCBITaxon:199310","l":"Escherichia coli O6:H1 (strain CFT073 / ATCC 700928 / UPEC)","na":89,"nb":1,"a":[["Pfam%3APF12343","DeaD helicase C-terminal disordered region"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF08298","PrkA AAA domain"],["Pfam%3APF17425","Arylsulfotransferase Ig-like domain"],["Pfam%3APF02611","CDP-diacylglycerol pyrophosphatase"],["Pfam%3APF10729","Cell division activator CedA"]],"b":[["unclassified/ape-ec.yaml","APE Ec"]]},{"id":"NCBITaxon:1883427","l":"Actinomycetia bacterium","na":78,"nb":1,"a":[["TED%3AAF-A0A2E4AXX0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2E4AXX0-F1-model_v4_TED04"],["TED%3AAF-A0A2W4J8T7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W4J8T7-F1-model_v4_TED01"],["TED%3AAF-A0A350SGF5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A350SGF5-F1-model_v4_TED03"],["TED%3AAF-A0A350XSJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A350XSJ9-F1-model_v4_TED01"],["TED%3AAF-A0A3A4PC78-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A4PC78-F1-model_v4_TED01"],["TED%3AAF-A0A3A4PG42-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A4PG42-F1-model_v4_TED01"]],"b":[["polyketides/anthrabenzoxocinone.yaml","anthrabenzoxocinone"]]},{"id":"UniProt:Q13547","l":"","na":66,"nb":1,"a":[["ComplexPortal%3ACPX-12294","-"],["ComplexPortal%3ACPX-13515","-"],["ComplexPortal%3ACPX-14890","-"],["ComplexPortal%3ACPX-15325","-"],["ComplexPortal%3ACPX-18342","-"],["ComplexPortal%3ACPX-20908","-"]],"b":[["amino_acids_and_peptides/apicidin.yaml","apicidin"]]},{"id":"UniProt:P42345","l":"","na":62,"nb":1,"a":[["ComplexPortal%3ACPX-11469","-"],["ComplexPortal%3ACPX-12119","-"],["ComplexPortal%3ACPX-12694","-"],["ComplexPortal%3ACPX-13423","-"],["ComplexPortal%3ACPX-15386","-"],["ComplexPortal%3ACPX-15693","-"]],"b":[["polyketides/sirolimus.yaml","sirolimus"]]},{"id":"UniProt:P21802","l":"","na":52,"nb":1,"a":[["ComplexPortal%3ACPX-11311","-"],["ComplexPortal%3ACPX-13057","-"],["ComplexPortal%3ACPX-19802","-"],["ComplexPortal%3ACPX-20298","-"],["ComplexPortal%3ACPX-21995","-"],["ComplexPortal%3ACPX-24266","-"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:2026763","l":"Myxococcales bacterium","na":51,"nb":1,"a":[["TED%3AAF-A0A2E5HQQ8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E5HQQ8-F1-model_v4_TED02"],["TED%3AAF-A0A2E6VRH0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E6VRH0-F1-model_v4_TED01"],["TED%3AAF-A0A2E6VU88-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E6VU88-F1-model_v4_TED01"],["TED%3AAF-A0A2F0AQB0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2F0AQB0-F1-model_v4_TED03"],["TED%3AAF-A0A2F0AS25-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2F0AS25-F1-model_v4_TED01"],["TED%3AAF-A0A356T3G6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A356T3G6-F1-model_v4_TED01"]],"b":[["polyketides/sorangipyranone.yaml","Sorangipyranone"]]},{"id":"UniProt:O15379","l":"","na":49,"nb":1,"a":[["ComplexPortal%3ACPX-11143","-"],["ComplexPortal%3ACPX-11157","-"],["ComplexPortal%3ACPX-15289","-"],["ComplexPortal%3ACPX-16349","-"],["ComplexPortal%3ACPX-18525","-"],["ComplexPortal%3ACPX-22988","-"]],"b":[["amino_acids_and_peptides/apicidin.yaml","apicidin"]]},{"id":"UniProt:P49841","l":"","na":49,"nb":1,"a":[["ComplexPortal%3ACPX-109","Beta-catenin destruction core complex, APC-AXIN1-GSK3B variant"],["ComplexPortal%3ACPX-439","Beta-catenin destruction core complex, APC-AXIN2-GSK3B variant"],["ComplexPortal%3ACPX-99","Beta-catenin destruction core complex, APC2-AXIN1-GSK3B variant"],["ComplexPortal%3ACPX-440","Beta-catenin destruction core complex, APC2-AXIN2-GSK3B variant"],["ComplexPortal%3ACPX-14345","-"],["ComplexPortal%3ACPX-16629","-"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:9031","l":"Gallus gallus","na":48,"nb":1,"a":[["Pfam%3APF16620","Unstructured linker between I-set domains 2 and 3 on MYLCK"],["Pfam%3APF15512","Chromatin assembly factor complex 1 subunit p60, C-terminal"],["Pfam%3APF18130","ATP-grasp N-terminal domain"],["Pfam%3APF15632","ATP-grasp in the biosynthetic pathway with Ter operon"],["Pfam%3APF01382","Avidin family"],["Pfam%3APF08072","BDHCT (NUC031) domain"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P08684","l":"","na":47,"nb":1,"a":[["EC%3A1.14.14.55","quinine 3-monooxygenase"],["EC%3A1.14.14.56","1,8-cineole 2-exo-monooxygenase"],["EC%3A1.14.14.73","albendazole monooxygenase (sufoxide-forming)"],["RHEA%3A32895","1,8-cineole + reduced [NADPH--hemoprotein reductase] + O2 = 2-exo-hydroxy-1,8-cineole + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A20149","quinine + reduced [NADPH--hemoprotein reductase] + O2 = 3-hydroxyquinine + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["ComplexPortal%3ACPX-11243","-"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"UniProt:P0A8V2","l":"","na":47,"nb":1,"a":[["ComplexPortal%3ACPX-4888","DNA-directed RNA polymerase holoenzyme complex, Sigma fecI variant"],["ComplexPortal%3ACPX-4884","DNA-directed RNA polymerase holoenzyme complex, Sigma54 variant"],["ComplexPortal%3ACPX-4881","DNA-directed RNA polymerase holoenzyme complex, Sigma70 variant"],["ComplexPortal%3ACPX-4885","DNA-directed RNA polymerase holoenzyme complex, SigmaE variant"],["ComplexPortal%3ACPX-4886","DNA-directed RNA polymerase holoenzyme complex, SigmaF variant"],["ComplexPortal%3ACPX-4887","DNA-directed RNA polymerase holoenzyme complex, SigmaH variant"]],"b":[["polyketides/rifamycin-sv.yaml","rifamycin SV"]]},{"id":"UniProt:P31749","l":"","na":46,"nb":1,"a":[["ComplexPortal%3ACPX-22352","-"],["ComplexPortal%3ACPX-24286","-"],["GO%3A0099104","potassium channel activator activity"],["GO%3A1904841","TORC2 complex binding"],["GO%3A0006924","activation-induced cell death of T cells"],["GO%3A0043276","anoikis"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P07900","l":"","na":45,"nb":1,"a":[["ComplexPortal%3ACPX-12937","-"],["ComplexPortal%3ACPX-14751","-"],["ComplexPortal%3ACPX-15245","-"],["ComplexPortal%3ACPX-17900","-"],["ComplexPortal%3ACPX-18328","-"],["ComplexPortal%3ACPX-19396","-"]],"b":[["polyketides/radicicol.yaml","radicicol"]]},{"id":"NCBITaxon:243277","l":"Vibrio cholerae serotype O1 (strain ATCC 39315 / El Tor Inaba N16961)","na":44,"nb":1,"a":[["IDPO%3A0000011","disorder to order"],["IDPO%3A0000014","order to disorder"],["Pfam%3APF16671","Actin cross-linking domain"],["Pfam%3APF00842","Alanine racemase, C-terminal domain"],["Pfam%3APF06228","Haem utilisation ChuX/HutX"],["Pfam%3APF19425","Csd3 second domain"]],"b":[["alkaloids/vibriobactin-2.yaml","vibriobactin"]]},{"id":"UniProt:P25054","l":"","na":44,"nb":1,"a":[["ComplexPortal%3ACPX-107","Beta-catenin destruction core complex, APC-AXIN1-GSK3A variant"],["ComplexPortal%3ACPX-109","Beta-catenin destruction core complex, APC-AXIN1-GSK3B variant"],["ComplexPortal%3ACPX-441","Beta-catenin destruction core complex, APC-AXIN2-GSK3A variant"],["ComplexPortal%3ACPX-439","Beta-catenin destruction core complex, APC-AXIN2-GSK3B variant"],["ComplexPortal%3ACPX-12016","-"],["ComplexPortal%3ACPX-14403","-"]],"b":[["alkaloids/toxoflavin.yaml","toxoflavin"]]},{"id":"UniProt:P09917","l":"","na":42,"nb":1,"a":[["EC%3A1.13.11.34","arachidonate 5-lipoxygenase"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"],["RHEA%3A32307","(5Z,8Z,11Z,14Z)-eicosatetraenoate + O2 = leukotriene A4 + H2O"],["ComplexPortal%3ACPX-15832","-"],["ComplexPortal%3ACPX-18202","-"],["ComplexPortal%3ACPX-20365","-"]],"b":[["alkaloids/myxochelin-a.yaml","myxochelin A"]]},{"id":"UniProt:Q9UBN7","l":"","na":38,"nb":1,"a":[["EC%3A3.5.1.-","In linear amides"],["ComplexPortal%3ACPX-11040","-"],["ComplexPortal%3ACPX-17348","-"],["ComplexPortal%3ACPX-19115","-"],["ComplexPortal%3ACPX-25368","-"],["ComplexPortal%3ACPX-25485","-"]],"b":[["amino_acids_and_peptides/apicidin.yaml","apicidin"]]},{"id":"UniProt:Q04771","l":"","na":37,"nb":1,"a":[["ComplexPortal%3ACPX-11394","-"],["ComplexPortal%3ACPX-11893","-"],["ComplexPortal%3ACPX-14842","-"],["ComplexPortal%3ACPX-15036","-"],["ComplexPortal%3ACPX-17430","-"],["ComplexPortal%3ACPX-18135","-"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P06493","l":"","na":36,"nb":1,"a":[["ComplexPortal%3ACPX-10673","-"],["ComplexPortal%3ACPX-11851","-"],["ComplexPortal%3ACPX-13027","-"],["ComplexPortal%3ACPX-15730","-"],["ComplexPortal%3ACPX-19796","-"],["ComplexPortal%3ACPX-21602","-"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P18031","l":"","na":35,"nb":1,"a":[["ComplexPortal%3ACPX-26130","-"],["GO%3A0098554","cytoplasmic side of endoplasmic reticulum membrane"],["GO%3A0031904","endosome lumen"],["GO%3A0030061","mitochondrial crista"],["GO%3A0097443","sorting endosome"],["GO%3A0046875","ephrin receptor binding"]],"b":[["terpenoids/lupeol.yaml","lupeol"]]},{"id":"UniProt:P09619","l":"","na":34,"nb":1,"a":[["ComplexPortal%3ACPX-11721","-"],["ComplexPortal%3ACPX-18342","-"],["ComplexPortal%3ACPX-18512","-"],["ComplexPortal%3ACPX-22260","-"],["ComplexPortal%3ACPX-25686","-"],["ComplexPortal%3ACPX-2892","PDGF receptor alpha-beta - PDGF-AB complex"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P62942","l":"","na":33,"nb":1,"a":[["ComplexPortal%3ACPX-15625","-"],["ComplexPortal%3ACPX-17368","-"],["GO%3A0098562","cytoplasmic side of membrane"],["GO%3A1990425","ryanodine receptor complex"],["GO%3A0016529","sarcoplasmic reticulum"],["GO%3A0033017","sarcoplasmic reticulum membrane"]],"b":[["polyketides/sirolimus.yaml","sirolimus"]]},{"id":"UniProt:P07711","l":"","na":31,"nb":1,"a":[["ComplexPortal%3ACPX-10815","-"],["ComplexPortal%3ACPX-12146","-"],["ComplexPortal%3ACPX-12243","-"],["ComplexPortal%3ACPX-18379","-"],["ComplexPortal%3ACPX-23732","-"],["ComplexPortal%3ACPX-23795","-"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"UniProt:P08238","l":"","na":31,"nb":1,"a":[["ComplexPortal%3ACPX-12937","-"],["ComplexPortal%3ACPX-15245","-"],["ComplexPortal%3ACPX-17900","-"],["ComplexPortal%3ACPX-18328","-"],["ComplexPortal%3ACPX-19396","-"],["ComplexPortal%3ACPX-23773","-"]],"b":[["polyketides/radicicol.yaml","radicicol"]]},{"id":"UniProt:P16234","l":"","na":30,"nb":1,"a":[["ComplexPortal%3ACPX-11080","-"],["ComplexPortal%3ACPX-11911","-"],["ComplexPortal%3ACPX-21238","-"],["ComplexPortal%3ACPX-23986","-"],["ComplexPortal%3ACPX-25630","-"],["ComplexPortal%3ACPX-2892","PDGF receptor alpha-beta - PDGF-AB complex"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"]]},{"id":"UniProt:P36897","l":"","na":30,"nb":1,"a":[["ComplexPortal%3ACPX-529","TGF-beta-1-TGFR complex"],["ComplexPortal%3ACPX-834","TGF-beta-2-TGFR complex"],["ComplexPortal%3ACPX-2544","TGF-beta-3-TGFR complex"],["GO%3A0048179","activin receptor complex"],["GO%3A0048185","activin binding"],["GO%3A0016361","activin receptor activity, type I"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":29,"nb":1,"a":[["Pfam%3APF09156","Anthrax toxin lethal factor, middle domain"],["Pfam%3APF08401","N-terminal domain of anti-restriction factor ArdC"],["Pfam%3APF07737","Anthrax toxin lethal factor, N- and C-terminal domain"],["Pfam%3APF27053","Bacillus anthracis plasmid pXO2 protein 26"],["Pfam%3APF13205","Bacterial Ig-like domain"],["Pfam%3APF17475","Clostridial binary toxin B/anthrax toxin PA domain 2"]],"b":[["alkaloids/petrobactin.yaml","petrobactin"]]},{"id":"UniProt:P00747","l":"","na":29,"nb":1,"a":[["ComplexPortal%3ACPX-11986","-"],["ComplexPortal%3ACPX-14765","-"],["ComplexPortal%3ACPX-15280","-"],["ComplexPortal%3ACPX-16758","-"],["ComplexPortal%3ACPX-17221","-"],["ComplexPortal%3ACPX-19201","-"]],"b":[["alkaloids/congocidine.yaml","congocidine"]]},{"id":"CHEBI:57743","l":"","na":28,"nb":1,"a":[["EC%3A1.14.13.39","nitric-oxide synthase (NADPH)"],["EC%3A1.14.14.47","nitric-oxide synthase (flavodoxin)"],["EC%3A2.1.3.3","ornithine carbamoyltransferase"],["EC%3A3.5.1.20","citrullinase"],["EC%3A3.5.3.18","dimethylargininase"],["EC%3A3.5.3.6","arginine deiminase"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"UniProt:P00156","l":"","na":27,"nb":1,"a":[["ComplexPortal%3ACPX-13288","-"],["ComplexPortal%3ACPX-13705","-"],["ComplexPortal%3ACPX-14252","-"],["ComplexPortal%3ACPX-15275","-"],["ComplexPortal%3ACPX-15481","-"],["ComplexPortal%3ACPX-19909","-"]],"b":[["unclassified/antimycin-a1b.yaml","antimycin A1B"]]},{"id":"UniProt:P56524","l":"","na":27,"nb":1,"a":[["ComplexPortal%3ACPX-10863","-"],["ComplexPortal%3ACPX-10978","-"],["ComplexPortal%3ACPX-11176","-"],["ComplexPortal%3ACPX-11281","-"],["ComplexPortal%3ACPX-12671","-"],["ComplexPortal%3ACPX-12759","-"]],"b":[["amino_acids_and_peptides/apicidin.yaml","apicidin"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":26,"nb":1,"a":[["Pfam%3APF27270","Alr1449"],["Pfam%3APF27301","Alr2735 N-terminal domain"],["Pfam%3APF27288","Alr2735"],["Pfam%3APF21571","Arginine dihydrolase ArgZ-like, C-terminal, first region"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF13205","Bacterial Ig-like domain"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"]]},{"id":"UniProt:P48736","l":"","na":26,"nb":1,"a":[["ComplexPortal%3ACPX-5986","Phosphatidylinositol 3-kinase complex class IB, p110gamma/p101"],["ComplexPortal%3ACPX-5987","Phosphatidylinositol 3-kinase complex class IB, p110gamma/p87"],["GO%3A0005943","phosphatidylinositol 3-kinase complex, class IA"],["GO%3A0005944","phosphatidylinositol 3-kinase complex, class IB"],["GO%3A0046934","1-phosphatidylinositol-4,5-bisphosphate 3-kinase activity"],["GO%3A0035005","1-phosphatidylinositol-4-phosphate 3-kinase activity"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P53350","l":"","na":26,"nb":1,"a":[["ComplexPortal%3ACPX-14028","-"],["ComplexPortal%3ACPX-17085","-"],["ComplexPortal%3ACPX-19451","-"],["GO%3A0010997","anaphase-promoting complex binding"],["GO%3A0097681","double-strand break repair via alternative nonhomologous end joining"],["GO%3A0048313","Golgi inheritance"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P29466","l":"","na":25,"nb":1,"a":[["ComplexPortal%3ACPX-4142","AIM2 inflammasome"],["ComplexPortal%3ACPX-10594","-"],["ComplexPortal%3ACPX-13219","-"],["ComplexPortal%3ACPX-13566","-"],["ComplexPortal%3ACPX-21295","-"],["ComplexPortal%3ACPX-21498","-"]],"b":[["alkaloids/toxoflavin.yaml","toxoflavin"]]},{"id":"UniProt:Q03181","l":"","na":25,"nb":1,"a":[["ComplexPortal%3ACPX-12990","-"],["ComplexPortal%3ACPX-17750","-"],["ComplexPortal%3ACPX-18139","-"],["ComplexPortal%3ACPX-19679","-"],["ComplexPortal%3ACPX-24893","-"],["GO%3A0070539","linoleic acid binding"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"NCBITaxon:2925","l":"Alexandrium catenella","na":24,"nb":1,"a":[["TED%3AAF-A0A7S1KY03-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1KY03-F1-model_v4_TED01"],["TED%3AAF-A0A7S1L1S9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S1L1S9-F1-model_v4_TED02"],["TED%3AAF-A0A7S1ML43-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1ML43-F1-model_v4_TED01"],["TED%3AAF-A0A7S1PQ85-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1PQ85-F1-model_v4_TED01"],["TED%3AAF-A0A7S1QA17-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A7S1QA17-F1-model_v4_TED05"],["TED%3AAF-A0A7S1QL55-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S1QL55-F1-model_v4_TED03"]],"b":[["alkaloids/saxitoxin.yaml","saxitoxin"]]},{"id":"NCBITaxon:73915","l":"Pyrodinium bahamense","na":24,"nb":1,"a":[["TED%3AAF-A0A7S0A4R5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0A4R5-F1-model_v4_TED01"],["TED%3AAF-A0A7S0AC67-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0AC67-F1-model_v4_TED01"],["TED%3AAF-A0A7S0APM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0APM3-F1-model_v4_TED01"],["TED%3AAF-A0A7S0AQ53-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0AQ53-F1-model_v4_TED01"],["TED%3AAF-A0A7S0AX35-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0AX35-F1-model_v4_TED01"],["TED%3AAF-A0A7S0B705-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S0B705-F1-model_v4_TED02"]],"b":[["alkaloids/saxitoxin.yaml","saxitoxin"]]},{"id":"UniProt:O00444","l":"","na":24,"nb":1,"a":[["ComplexPortal%3ACPX-1299","CEP152-PLK4 complex"],["ComplexPortal%3ACPX-1161","CEP192-PLK4 complex"],["GO%3A0098536","deuterosome"],["GO%3A0120098","procentriole"],["GO%3A0098535","de novo centriole assembly involved in multi-ciliated epithelial cell differentiation"],["GO%3A0046601","positive regulation of centriole replication"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P23284","l":"","na":24,"nb":1,"a":[["ComplexPortal%3ACPX-11676","-"],["ComplexPortal%3ACPX-12341","-"],["ComplexPortal%3ACPX-12626","-"],["ComplexPortal%3ACPX-13324","-"],["ComplexPortal%3ACPX-14387","-"],["ComplexPortal%3ACPX-17992","-"]],"b":[["amino_acids_and_peptides/cyclosporin-a.yaml","cyclosporin A"]]},{"id":"NCBITaxon:40559","l":"Botrytis cinerea","na":1,"nb":23,"a":[["Pfam%3APF08883","Dopa 4,5-dioxygenase family"]],"b":[["terpenoids/1-epibotrydial.yaml","1-epibotrydial"],["terpenoids/10-dehydroxy-dihydrobotrydialone.yaml","10-dehydroxy dihydrobotrydialone"],["terpenoids/10-epi-dihydrobotrydial.yaml","10-epi-dihydrobotrydial"],["terpenoids/10-oxo-dihydrobotrydial.yaml","10-Oxo-dihydrobotrydial"],["terpenoids/10-oxodehydrodihydrobotrydial.yaml","10-Oxodehydrodihydrobotrydial"],["terpenoids/10-oxodihydrobotry-1-9-4-5-diendial.yaml","10-Oxodihydrobotry-1(9),4(5)-diendial"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":23,"nb":1,"a":[["Pfam%3APF09255","Caf1 Capsule antigen"],["Pfam%3APF02611","CDP-diacylglycerol pyrophosphatase"],["Pfam%3APF07411","Domain of unknown function (DUF1508)"],["Pfam%3APF05171","Haemin-degrading HemS.ChuX domain"],["Pfam%3APF21500","DNA polymerase III subunit delta', AAA+ ATPase lid domain"],["Pfam%3APF11004","3-deoxy-D-manno-oct-2-ulosonic acid (Kdo) hydroxylase"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"UniProt:O00763","l":"","na":23,"nb":1,"a":[["ComplexPortal%3ACPX-12392","-"],["ComplexPortal%3ACPX-13685","-"],["ComplexPortal%3ACPX-15849","-"],["ComplexPortal%3ACPX-19952","-"],["ComplexPortal%3ACPX-20498","-"],["ComplexPortal%3ACPX-20638","-"]],"b":[["polyketides/soraphen-a.yaml","soraphen A"]]},{"id":"UniProt:P12830","l":"","na":23,"nb":1,"a":[["ComplexPortal%3ACPX-12016","-"],["ComplexPortal%3ACPX-14403","-"],["ComplexPortal%3ACPX-16015","-"],["ComplexPortal%3ACPX-16575","-"],["ComplexPortal%3ACPX-17484","-"],["ComplexPortal%3ACPX-23131","-"]],"b":[["alkaloids/toxoflavin.yaml","toxoflavin"]]},{"id":"UniProt:P24385","l":"","na":23,"nb":1,"a":[["ComplexPortal%3ACPX-10673","-"],["ComplexPortal%3ACPX-18871","-"],["ComplexPortal%3ACPX-20404","-"],["ComplexPortal%3ACPX-21602","-"],["ComplexPortal%3ACPX-26221","-"],["ComplexPortal%3ACPX-26273","-"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"]]},{"id":"UniProt:Q15119","l":"","na":23,"nb":1,"a":[["ComplexPortal%3ACPX-11733","-"],["ComplexPortal%3ACPX-12952","-"],["ComplexPortal%3ACPX-15696","-"],["ComplexPortal%3ACPX-16639","-"],["ComplexPortal%3ACPX-16656","-"],["ComplexPortal%3ACPX-17227","-"]],"b":[["polyketides/radicicol.yaml","radicicol"]]},{"id":"CHEBI:27547","l":"zeaxanthin","na":22,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_27547","requires zeaxanthin"],["EC%3A1.13.11.65","carotenoid isomerooxygenase"],["EC%3A1.13.11.84","crocetin dialdehyde synthase"],["EC%3A1.14.15.21","zeaxanthin epoxidase"],["EC%3A1.14.15.24","beta-carotene 3-hydroxylase"],["EC%3A1.14.99.64","zeaxanthin 4-ketolase"]],"b":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]]},{"id":"NCBITaxon:394","l":"Sinorhizobium fredii (strain NBRC 101917 / NGR234)","na":22,"nb":1,"a":[["Pfam%3APF17841","BID domain of Bartonella effector protein (Bep)"],["Pfam%3APF04255","Protein of unknown function (DUF433)"],["Pfam%3APF18480","Domain of unknown function (DUF5615)"],["Pfam%3APF20008","Domain of unknown function (DUF6429)"],["Pfam%3APF24134","Domain of unknown function (DUF7401)"],["Pfam%3APF18728","AbiV"]],"b":[["terpenoids/gibberellin.yaml","gibberellin"]]},{"id":"UniProt:P42858","l":"","na":22,"nb":1,"a":[["ComplexPortal%3ACPX-25173","-"],["ComplexPortal%3ACPX-11549","Huntingtin-HAP40 endosomal complex"],["GO%3A0005522","profilin binding"],["GO%3A1905337","positive regulation of aggrephagy"],["GO%3A1905291","positive regulation of CAMKK-AMPK signaling cascade"],["GO%3A1904504","positive regulation of lipophagy"]],"b":[["unclassified/antimycin-a.yaml","antimycin A"]]},{"id":"UniProt:P68400","l":"","na":22,"nb":1,"a":[["ComplexPortal%3ACPX-2437","Casein kinase II complex, CSNK2A1-CNSK2A2 variant"],["ComplexPortal%3ACPX-914","Casein kinase II complex, CSNK2A1 variant"],["ComplexPortal%3ACPX-11941","-"],["ComplexPortal%3ACPX-12009","-"],["ComplexPortal%3ACPX-12888","-"],["ComplexPortal%3ACPX-14603","-"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"UniProt:Q24451","l":"","na":22,"nb":1,"a":[["GO%3A0015923","mannosidase activity"],["GO%3A0004572","mannosyl-oligosaccharide 1,3-1,6-alpha-mannosidase activity"],["GO%3A0035010","encapsulation of foreign target"],["GO%3A1904381","Golgi apparatus N-glycan mannose trimming"],["GO%3A0016063","rhodopsin biosynthetic process"],["CDD%3Acd10809","GH38N_AMII_GMII_SfManIII_like"]],"b":[["alkaloids/swainsonine.yaml","swainsonine"]]},{"id":"NCBITaxon:243265","l":"Photorhabdus laumondii subsp. laumondii TTO1","na":1,"nb":21,"a":[["Pfam%3APF07927","HicA toxin of bacterial toxin-antitoxin,"]],"b":[["amino_acids_and_peptides/gamexpeptide-c.yaml","gamexpeptide C"],["amino_acids_and_peptides/luminmycin-a.yaml","luminmycin A"],["amino_acids_and_peptides/ririwpeptide-a.yaml","ririwpeptide A"],["amino_acids_and_peptides/ririwpeptide-b.yaml","ririwpeptide B"],["carbohydrates/oligosaccharide-1-glcnac-1-4-1-6-anhydro-glcnac.yaml","oligosaccharide 1 (GlcNAc-β(1-4)-1,6-anhydro-β-GlcNAc)"],["carbohydrates/oligosaccharide-2-glcnac-1-4-glcnac-1-4-1-6-anhydro-glcnac.yaml","oligosaccharide 2 (GlcNAc-β(1-4)-GlcNAc-β(1-4)-1,6-anhydro-β-GlcNAc)"]]},{"id":"UniProt:O14757","l":"","na":21,"nb":1,"a":[["ComplexPortal%3ACPX-26328","Chromatin regulation assembly"],["ComplexPortal%3ACPX-10797","-"],["ComplexPortal%3ACPX-11546","-"],["ComplexPortal%3ACPX-14608","-"],["ComplexPortal%3ACPX-15285","-"],["ComplexPortal%3ACPX-15872","-"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P00749","l":"","na":21,"nb":1,"a":[["EC%3A3.4.21.73","u-plasminogen activator"],["ComplexPortal%3ACPX-483","uPA-PAI-1 complex"],["ComplexPortal%3ACPX-487","uPA-uPAR complex"],["ComplexPortal%3ACPX-501","uPA-uPAR-vitronectin complex"],["GO%3A1905370","serine-type endopeptidase complex"],["GO%3A0010757","negative regulation of plasminogen activation"]],"b":[["alkaloids/congocidine.yaml","congocidine"]]},{"id":"UniProt:P12268","l":"","na":21,"nb":1,"a":[["ComplexPortal%3ACPX-10668","-"],["ComplexPortal%3ACPX-16204","-"],["ComplexPortal%3ACPX-19278","-"],["ComplexPortal%3ACPX-20073","-"],["ComplexPortal%3ACPX-23201","-"],["ComplexPortal%3ACPX-24150","-"]],"b":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"]]},{"id":"UniProt:P20839","l":"","na":21,"nb":1,"a":[["ComplexPortal%3ACPX-11065","-"],["ComplexPortal%3ACPX-13142","-"],["ComplexPortal%3ACPX-14906","-"],["ComplexPortal%3ACPX-14944","-"],["ComplexPortal%3ACPX-18455","-"],["ComplexPortal%3ACPX-19278","-"]],"b":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"]]},{"id":"UniProt:P49760","l":"","na":21,"nb":1,"a":[["ComplexPortal%3ACPX-11057","-"],["ComplexPortal%3ACPX-12352","-"],["ComplexPortal%3ACPX-13888","-"],["ComplexPortal%3ACPX-15887","-"],["ComplexPortal%3ACPX-18111","-"],["ComplexPortal%3ACPX-18764","-"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P00918","l":"","na":20,"nb":1,"a":[["RHEA%3A10748","hydrogencarbonate + H(+) = CO2 + H2O"],["ComplexPortal%3ACPX-14819","-"],["ComplexPortal%3ACPX-22076","-"],["ComplexPortal%3ACPX-23290","-"],["ComplexPortal%3ACPX-24928","-"],["GO%3A0004089","carbonate dehydratase activity"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:P03372","l":"","na":20,"nb":1,"a":[["ComplexPortal%3ACPX-19787","-"],["ComplexPortal%3ACPX-21796","-"],["ComplexPortal%3ACPX-5156","ERalpha-NCOA2 activated estrogen receptor complex"],["GO%3A0034056","estrogen response element binding"],["GO%3A0030284","nuclear estrogen receptor activity"],["GO%3A0030520","estrogen receptor signaling pathway"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:P11362","l":"","na":20,"nb":1,"a":[["ComplexPortal%3ACPX-13057","-"],["ComplexPortal%3ACPX-18540","-"],["ComplexPortal%3ACPX-19802","-"],["ComplexPortal%3ACPX-21241","-"],["ComplexPortal%3ACPX-21995","-"],["GO%3A0005007","fibroblast growth factor receptor activity"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:Q16706","l":"","na":20,"nb":1,"a":[["EC%3A3.2.1.114","mannosyl-oligosaccharide 1,3-1,6-alpha-mannosidase"],["RHEA%3A56052","N(4)-{beta-D-GlcNAc-(1->2)-alpha-D-Man-(1->3)-[alpha-D-Man-(1->3)-[alpha-D-Man-(1->6)]-alpha-D-Man-(1->6)]-beta-D-Man-(1->4)-beta-D-GlcNAc-(1->4)-beta-D-GlcNAc}-L-asparaginyl-[protein] + 2 H2O = 2 alpha-D-mannopyranose + an N(4)-{beta-D-GlcNAc-(1->2)-alpha-D-Man-(1->3)-[alpha-D-Man-(1->6)]-beta-D-Man-(1->4)-beta-D-GlcNAc-(1->4)-beta-D-GlcNAc}-L-asparaginyl-[protein]"],["ComplexPortal%3ACPX-12202","-"],["ComplexPortal%3ACPX-15107","-"],["ComplexPortal%3ACPX-22647","-"],["GO%3A0016799","hydrolase activity, hydrolyzing N-glycosyl compounds"]],"b":[["alkaloids/swainsonine.yaml","swainsonine"]]},{"id":"UniProt:P07333","l":"","na":19,"nb":1,"a":[["ComplexPortal%3ACPX-22260","-"],["ComplexPortal%3ACPX-10333","IL34-CSF1R complex"],["ComplexPortal%3ACPX-25717","Macrophage colony-stimulating factor-1 receptor-ligand complex"],["GO%3A1990682","CSF1-CSF1R complex"],["GO%3A0005011","macrophage colony-stimulating factor receptor activity"],["GO%3A0036006","cellular response to macrophage colony-stimulating factor stimulus"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P35968","l":"","na":19,"nb":1,"a":[["GO%3A0097443","sorting endosome"],["GO%3A0038085","vascular endothelial growth factor binding"],["GO%3A0005021","vascular endothelial growth factor receptor activity"],["GO%3A1904881","cellular response to hydrogen sulfide"],["GO%3A0003157","endocardium development"],["GO%3A0141150","positive regulation of nitric oxide-cGMP mediated signal transduction"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:Q96QE3","l":"","na":19,"nb":1,"a":[["ComplexPortal%3ACPX-11703","-"],["ComplexPortal%3ACPX-13085","-"],["ComplexPortal%3ACPX-14089","-"],["ComplexPortal%3ACPX-14271","-"],["ComplexPortal%3ACPX-16564","-"],["ComplexPortal%3ACPX-17722","-"]],"b":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]]},{"id":"UniProt:Q05513","l":"","na":18,"nb":1,"a":[["ComplexPortal%3ACPX-10855","-"],["ComplexPortal%3ACPX-16356","-"],["ComplexPortal%3ACPX-18654","-"],["ComplexPortal%3ACPX-18746","-"],["ComplexPortal%3ACPX-22762","-"],["ComplexPortal%3ACPX-23337","-"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:Q12809","l":"","na":18,"nb":1,"a":[["ComplexPortal%3ACPX-12423","-"],["ComplexPortal%3ACPX-16470","-"],["ComplexPortal%3ACPX-16985","-"],["ComplexPortal%3ACPX-21446","-"],["ComplexPortal%3ACPX-22668","-"],["ComplexPortal%3ACPX-3072","Voltage-gated potassium channel complex variant 1"]],"b":[["unclassified/teixobactin.yaml","teixobactin"]]},{"id":"UniProt:O94760","l":"","na":17,"nb":1,"a":[["EC%3A3.5.3.18","dimethylargininase"],["ComplexPortal%3ACPX-11521","-"],["ComplexPortal%3ACPX-12381","-"],["ComplexPortal%3ACPX-13858","-"],["ComplexPortal%3ACPX-15777","-"],["ComplexPortal%3ACPX-18623","-"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"UniProt:P24864","l":"","na":17,"nb":1,"a":[["ComplexPortal%3ACPX-10673","-"],["ComplexPortal%3ACPX-11851","-"],["ComplexPortal%3ACPX-13027","-"],["ComplexPortal%3ACPX-19796","-"],["ComplexPortal%3ACPX-20481","-"],["ComplexPortal%3ACPX-21602","-"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"]]},{"id":"CHEBI:17579","l":"β-carotene","na":16,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17579","requires β-carotene"],["EC%3A1.13.11.63","beta-carotene 15,15'-dioxygenase"],["EC%3A1.13.11.71","carotenoid-9',10'-cleaving dioxygenase"],["EC%3A1.14.15.24","beta-carotene 3-hydroxylase"],["EC%3A1.14.99.63","beta-carotene 4-ketolase"],["EC%3A5.2.1.14","beta-carotene isomerase"]],"b":[["terpenoids/carotene.yaml","β-carotene"]]},{"id":"UniProt:P01215","l":"","na":16,"nb":1,"a":[["ComplexPortal%3ACPX-748","Chorionic gonadotropin hormone complex"],["ComplexPortal%3ACPX-14986","-"],["ComplexPortal%3ACPX-16532","-"],["ComplexPortal%3ACPX-19116","-"],["ComplexPortal%3ACPX-23467","-"],["ComplexPortal%3ACPX-665","Follicle-stimulating hormone complex"]],"b":[["amino_acids_and_peptides/ditryptophenaline.yaml","(-)-ditryptophenaline"]]},{"id":"UniProt:P11086","l":"","na":16,"nb":1,"a":[["EC%3A2.1.1.28","phenylethanolamine N-methyltransferase"],["RHEA%3A25269","(R)-noradrenaline + S-adenosyl-L-methionine = (R)-adrenaline + S-adenosyl-L-homocysteine + H(+)"],["ComplexPortal%3ACPX-11076","-"],["ComplexPortal%3ACPX-14242","-"],["ComplexPortal%3ACPX-17963","-"],["ComplexPortal%3ACPX-21796","-"]],"b":[["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"UniProt:Q9H4B4","l":"","na":16,"nb":1,"a":[["GO%3A0007113","endomitotic cell cycle"],["GO%3A0090166","Golgi disassembly"],["GO%3A0044819","mitotic G1/S transition checkpoint signaling"],["GO%3A1904716","positive regulation of chaperone-mediated autophagy"],["CDD%3Acd14189","STKc_PLK3"],["CDD%3Acd13118","POLO_box_1"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:5127","l":"Fusarium fujikuroi","na":1,"nb":15,"a":[["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"]],"b":[["alkaloids/fusaric-acid.yaml","fusaric acid"],["alkaloids/fusarin-c.yaml","fusarin C"],["polyketides/bikaverin.yaml","bikaverin"],["polyketides/fujikurin-c.yaml","fujikurin C"],["polyketides/fujikurin-d.yaml","fujikurin D"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"]]},{"id":"UniProt:P11511","l":"","na":15,"nb":1,"a":[["ComplexPortal%3ACPX-11590","-"],["ComplexPortal%3ACPX-12153","-"],["ComplexPortal%3ACPX-14456","-"],["ComplexPortal%3ACPX-20752","-"],["ComplexPortal%3ACPX-20895","-"],["ComplexPortal%3ACPX-20967","-"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:P21964","l":"","na":15,"nb":1,"a":[["ComplexPortal%3ACPX-13290","-"],["ComplexPortal%3ACPX-13949","-"],["ComplexPortal%3ACPX-14233","-"],["ComplexPortal%3ACPX-14264","-"],["ComplexPortal%3ACPX-19464","-"],["ComplexPortal%3ACPX-26179","-"]],"b":[["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"UniProt:P22748","l":"","na":15,"nb":1,"a":[["ComplexPortal%3ACPX-17339","-"],["ComplexPortal%3ACPX-17919","-"],["ComplexPortal%3ACPX-18486","-"],["ComplexPortal%3ACPX-19014","-"],["ComplexPortal%3ACPX-23066","-"],["ComplexPortal%3ACPX-23243","-"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:Q02779","l":"","na":15,"nb":1,"a":[["ComplexPortal%3ACPX-10957","-"],["ComplexPortal%3ACPX-11452","-"],["ComplexPortal%3ACPX-11502","-"],["ComplexPortal%3ACPX-11859","-"],["ComplexPortal%3ACPX-13254","-"],["ComplexPortal%3ACPX-13493","-"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":14,"nb":1,"a":[["Pfam%3APF03703","Bacterial PH domain"],["Pfam%3APF01322","Cytochrome C'"],["Pfam%3APF03139","Vanadium/alternative nitrogenase delta subunit"],["Pfam%3APF09527","Putative F0F1-ATPase subunit Ca2+/Mg2+ transporter"],["Pfam%3APF03270","Protein of unknown function, DUF269"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"]],"b":[["alkaloids/molybdenum-cofactor.yaml","molybdenum cofactor"]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":1,"nb":14,"a":[["Pfam%3APF26312","Domain of unknown function (DUF8083)"]],"b":[["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/framycetin.yaml","framycetin"],["carbohydrates/neomycin-c.yaml","neomycin C"],["carbohydrates/paromomycin.yaml","paromomycin"]]},{"id":"NCBITaxon:58346","l":"Streptomyces platensis","na":1,"nb":14,"a":[["PROSITE%3APS00999","Streptomyces subtilisin-type inhibitors signature"]],"b":[["alkaloids/13-epi-dorrigocin-a.yaml","13-epi-dorrigocin A"],["alkaloids/17-hydroxy-8-desmethoxy-isomigrastatin.yaml","17-hydroxy-8-desmethoxy-isomigrastatin"],["alkaloids/dorrigocin-a.yaml","dorrigocin A"],["alkaloids/dorrigocin-b.yaml","dorrigocin B"],["alkaloids/iso-migrastatin.yaml","iso-migrastatin"],["alkaloids/staurosporine.yaml","staurosporine"]]},{"id":"NCBITaxon:9986","l":"Oryctolagus cuniculus","na":14,"nb":1,"a":[["IDPO%3A0000018","disorder to molten globule"],["IDPO%3A0000023","pre-molten globule to molten globule"],["Pfam%3APF27603","AKAP9-like coiled-coil region"],["Pfam%3APF17860","RK-1-like defensin"],["Pfam%3APF14965","Negative regulator of p53/TP53"],["PROSITE%3APS00328","HCP repeats signature"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P27169","l":"","na":14,"nb":1,"a":[["ComplexPortal%3ACPX-10649","-"],["ComplexPortal%3ACPX-12297","-"],["ComplexPortal%3ACPX-16876","-"],["ComplexPortal%3ACPX-25382","-"],["GO%3A0102007","acyl-L-homoserine-lactone lactonohydrolase activity"],["GO%3A0004063","aryldialkylphosphatase activity"]],"b":[["carbohydrates/lincomycin.yaml","lincomycin"]]},{"id":"UniProt:P80192","l":"","na":14,"nb":1,"a":[["ComplexPortal%3ACPX-10957","-"],["ComplexPortal%3ACPX-11452","-"],["ComplexPortal%3ACPX-11502","-"],["ComplexPortal%3ACPX-13254","-"],["ComplexPortal%3ACPX-13493","-"],["ComplexPortal%3ACPX-14473","-"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"]]},{"id":"UniProt:Q9NYY3","l":"","na":14,"nb":1,"a":[["ComplexPortal%3ACPX-18657","-"],["GO%3A0071866","negative regulation of apoptotic process in bone marrow cell"],["CDD%3Acd14188","STKc_PLK2"],["CDD%3Acd13118","POLO_box_1"],["CDD%3Acd13117","POLO_box_2"],["InterPro%3AIPR033701","First polo-box domain"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":13,"nb":1,"a":[["Pfam%3APF07832","Cfr10I/Bse634I restriction endonuclease"],["Pfam%3APF22348","Colicin-A N-terminal domain"],["Pfam%3APF01024","Colicin pore forming domain"],["Pfam%3APF18427","DD-reactivating factor swiveling domain"],["Pfam%3APF02286","Dehydratase large subunit"],["Pfam%3APF02288","Dehydratase medium subunit"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:644","l":"Aeromonas hydrophila","na":13,"nb":1,"a":[["Pfam%3APF01117","Aerolysin toxin"],["Pfam%3APF03440","Aerolysin/Pertussis toxin (APT) domain"],["Pfam%3APF21327","GspA, peptidase C39-like domain"],["Pfam%3APF04231","Endonuclease I"],["PROSITE%3APS01092","Adenylate cyclase class-I signature 1"],["PROSITE%3APS01093","Adenylate cyclase class-I signature 2"]],"b":[["amino_acids_and_peptides/amonabactin-p-750.yaml","amonabactin P 750"]]},{"id":"UniProt:O00754","l":"","na":13,"nb":1,"a":[["ComplexPortal%3ACPX-15965","-"],["ComplexPortal%3ACPX-19551","-"],["ComplexPortal%3ACPX-20291","-"],["ComplexPortal%3ACPX-26077","-"],["ComplexPortal%3ACPX-26144","-"],["CDD%3Acd10810","GH38N_AMII_LAM_like"]],"b":[["alkaloids/swainsonine.yaml","swainsonine"]]},{"id":"UniProt:O15530","l":"","na":13,"nb":1,"a":[["ComplexPortal%3ACPX-13979","-"],["ComplexPortal%3ACPX-20891","-"],["ComplexPortal%3ACPX-24544","-"],["GO%3A0004676","3-phosphoinositide-dependent protein kinase activity"],["GO%3A0141124","intracellular signaling cassette"],["GO%3A0043304","regulation of mast cell degranulation"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:Q14749","l":"","na":13,"nb":1,"a":[["EC%3A2.1.1.20","glycine N-methyltransferase"],["RHEA%3A19937","glycine + S-adenosyl-L-methionine = sarcosine + S-adenosyl-L-homocysteine + H(+)"],["ComplexPortal%3ACPX-10845","-"],["ComplexPortal%3ACPX-14981","-"],["ComplexPortal%3ACPX-21780","-"],["ComplexPortal%3ACPX-22832","-"]],"b":[["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"NCBITaxon:60172","l":"Penicillium solitum","na":1,"nb":12,"a":[["TED%3AAF-A0A1V6R6Y6-F1-model_v4_TED01","TED novel fold AF-A0A1V6R6Y6-F1-model_v4_TED01"]],"b":[["polyketides/dihydrobisvertinolone.yaml","dihydrobisvertinolone"],["polyketides/sorbicillin.yaml","sorbicillin"],["polyketides/terrestric-acid.yaml","terrestric acid"],["polyketides/tetrahydrobisvertinolone.yaml","tetrahydrobisvertinolone"],["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"],["unclassified/penitrem-a.yaml","penitrem A"]]},{"id":"UniProt:P05129","l":"","na":12,"nb":1,"a":[["ComplexPortal%3ACPX-12748","-"],["ComplexPortal%3ACPX-19449","-"],["ComplexPortal%3ACPX-19476","-"],["ComplexPortal%3ACPX-24173","-"],["GO%3A0004698","calcium,diacylglycerol-dependent serine/threonine kinase activity"],["GO%3A0032425","positive regulation of mismatch repair"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P0A853","l":"","na":12,"nb":1,"a":[["GO%3A0060187","cell pole"],["GO%3A0080146","L-cysteine desulfhydrase activity"],["GO%3A0016829","lyase activity"],["GO%3A0030955","potassium ion binding"],["GO%3A0009034","tryptophanase activity"],["GO%3A0042431","indole metabolic process"]],"b":[["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]]},{"id":"UniProt:P31751","l":"","na":12,"nb":1,"a":[["ComplexPortal%3ACPX-10780","-"],["ComplexPortal%3ACPX-16948","-"],["ComplexPortal%3ACPX-22352","-"],["GO%3A0010748","negative regulation of long-chain fatty acid import across plasma membrane"],["GO%3A1903676","positive regulation of cap-dependent translational initiation"],["CDD%3Acd05595","STKc_PKB_beta"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P40261","l":"","na":12,"nb":1,"a":[["EC%3A2.1.1.1","nicotinamide N-methyltransferase"],["RHEA%3A23884","nicotinamide + S-adenosyl-L-methionine = 1-methylnicotinamide + S-adenosyl-L-homocysteine"],["GO%3A0008112","nicotinamide N-methyltransferase activity"],["GO%3A0030760","pyridine N-methyltransferase activity"],["GO%3A0006769","nicotinamide metabolic process"],["GO%3A0090312","positive regulation of protein deacetylation"]],"b":[["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"UniProt:P48454","l":"","na":12,"nb":1,"a":[["ComplexPortal%3ACPX-1112","Calcineurin-Calmodulin-AKAP5 complex, gamma-R1 variant"],["ComplexPortal%3ACPX-1118","Calcineurin-Calmodulin-AKAP5 complex, gamma-R2 variant"],["ComplexPortal%3ACPX-1001","Calcineurin-Calmodulin complex, gamma-R1 variant"],["ComplexPortal%3ACPX-1050","Calcineurin-Calmodulin complex, gamma-R2 variant"],["ComplexPortal%3ACPX-17012","-"],["ComplexPortal%3ACPX-17541","-"]],"b":[["amino_acids_and_peptides/cyclosporin-a.yaml","cyclosporin A"]]},{"id":"UniProt:Q08881","l":"","na":12,"nb":1,"a":[["GO%3A0046629","gamma-delta T cell activation"],["GO%3A0001865","NK T cell differentiation"],["InterPro%3AIPR001562","Zinc finger, Btk motif"],["CDD%3Acd01238","PH_Btk"],["CDD%3Acd05112","PTKc_Itk"],["CDD%3Acd10396","SH2_Tec_Itk"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:4113","l":"Solanum tuberosum","na":11,"nb":1,"a":[["Pfam%3APF02977","Carboxypeptidase A inhibitor"],["Pfam%3APF01474","Class-II DAHP synthetase family"],["Pfam%3APF23229","Alpha-glucan water dikinase, DUF7067"],["Pfam%3APF02446","4-alpha-glucanotransferase"],["Pfam%3APF22973","Alpha-glucan water dikinase, phosphohistidine-like domain"],["Pfam%3APF23166","Alpha-glucan water dikinase 1 Ig-like N-terminal domain"]],"b":[["fatty_acids/itaconic-acid.yaml","itaconic acid"]]},{"id":"UniProt:O60503","l":"","na":11,"nb":1,"a":[["ComplexPortal%3ACPX-10819","-"],["ComplexPortal%3ACPX-10882","-"],["ComplexPortal%3ACPX-14634","-"],["ComplexPortal%3ACPX-14903","-"],["ComplexPortal%3ACPX-17315","-"],["ComplexPortal%3ACPX-18747","-"]],"b":[["polyketides/chlortetracycline.yaml","chlortetracycline"]]},{"id":"UniProt:P00915","l":"","na":11,"nb":1,"a":[["ComplexPortal%3ACPX-11364","-"],["ComplexPortal%3ACPX-12060","-"],["ComplexPortal%3ACPX-14728","-"],["ComplexPortal%3ACPX-15000","-"],["ComplexPortal%3ACPX-25381","-"],["GO%3A0018820","cyanamide hydratase activity"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:Q9BX63","l":"","na":11,"nb":1,"a":[["ComplexPortal%3ACPX-4426","BRCA1-B complex"],["ComplexPortal%3ACPX-17429","-"],["ComplexPortal%3ACPX-26140","-"],["CDD%3Acd18788","SF2_C_XPD"],["CDD%3Acd17970","DEAHc_FancJ"],["InterPro%3AIPR006554","Helicase-like, DEXD box c2 type"]],"b":[["unclassified/telomestatin.yaml","telomestatin"]]},{"id":"NCBITaxon:116188","l":"Streptomyces coeruleorubidus","na":1,"nb":10,"a":[["Pfam%3APF13732","ATP-binding protein DrrA1-3-like, C-terminal domain"]],"b":[["amino_acids_and_peptides/pacidamycin-1.yaml","pacidamycin 1"],["amino_acids_and_peptides/pacidamycin-2.yaml","pacidamycin 2"],["amino_acids_and_peptides/pacidamycin-3.yaml","pacidamycin 3"],["amino_acids_and_peptides/pacidamycin-4.yaml","pacidamycin 4"],["amino_acids_and_peptides/pacidamycin-5.yaml","pacidamycin 5"],["amino_acids_and_peptides/pacidamycin-6.yaml","pacidamycin 6"]]},{"id":"NCBITaxon:257313","l":"Bordetella pertussis (strain Tohama I / ATCC BAA-589 / NCTC 13251)","na":10,"nb":1,"a":[["Pfam%3APF03440","Aerolysin/Pertussis toxin (APT) domain"],["Pfam%3APF07411","Domain of unknown function (DUF1508)"],["Pfam%3APF25988","CyaD, alpha-helical hairpin domain"],["Pfam%3APF03497","Anthrax toxin LF subunit"],["Pfam%3APF02537","CrcB-like protein, Camphor Resistance (CrcB)"],["Pfam%3APF16970","Type-1 fimbrial protein, A"]],"b":[["amino_acids_and_peptides/alcaligin.yaml","alcaligin"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":10,"nb":1,"a":[["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF09081","Glucan 1,4-alpha-maltotetraohydrolase, domain C"],["Pfam%3APF09459","Ethylbenzene dehydrogenase"],["Pfam%3APF08406","CbbQ/NirQ/NorQ C-terminal"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"],["Pfam%3APF18793","Nitrous oxide reductase propeller repeat 2"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"UniProt:P0A749","l":"","na":10,"nb":1,"a":[["GO%3A0008760","UDP-N-acetylglucosamine 1-carboxyvinyltransferase activity"],["GO%3A0019277","UDP-N-acetylgalactosamine biosynthetic process"],["NCBIfam%3ANF006873","UDP-N-acetylglucosamine 1-carboxyvinyltransferase"],["NCBIfam%3ATIGR01072","UDP-N-acetylglucosamine 1-carboxyvinyltransferase"],["CDD%3Acd01555","UdpNAET"],["InterPro%3AIPR001986","Enolpyruvate transferase domain"]],"b":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"]]},{"id":"UniProt:P14679","l":"","na":10,"nb":1,"a":[["GO%3A0004503","tyrosinase activity"],["GO%3A0006726","eye pigment biosynthetic process"],["GO%3A0006583","melanin biosynthetic process from tyrosine"],["GO%3A0042438","melanin biosynthetic process"],["InterPro%3AIPR002227","Tyrosinase copper-binding domain"],["Pfam%3APF00264","Common central domain of tyrosinase"]],"b":[["polyketides/kojic-acid.yaml","kojic acid"]]},{"id":"UniProt:P15884","l":"","na":10,"nb":1,"a":[["ComplexPortal%3ACPX-11961","-"],["ComplexPortal%3ACPX-14266","-"],["ComplexPortal%3ACPX-14268","-"],["ComplexPortal%3ACPX-14282","-"],["ComplexPortal%3ACPX-21052","-"],["ComplexPortal%3ACPX-26210","-"]],"b":[["alkaloids/toxoflavin.yaml","toxoflavin"]]},{"id":"UniProt:P41240","l":"","na":10,"nb":1,"a":[["EC%3A2.7.10.4","[Src-family] C-terminal protein kinase"],["ComplexPortal%3ACPX-11775","-"],["ComplexPortal%3ACPX-18631","-"],["ComplexPortal%3ACPX-19439","-"],["GO%3A0042997","negative regulation of Golgi to plasma membrane protein transport"],["GO%3A0060368","regulation of Fc receptor mediated stimulatory signaling pathway"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":9,"nb":1,"a":[["Pfam%3APF07835","Bacterial aa3 type cytochrome c oxidase subunit IV"],["Pfam%3APF04828","Glutathione-dependent formaldehyde-activating enzyme"],["Pfam%3APF16448","LapD/MoxY periplasmic domain"],["Pfam%3APF17267","Family of unknown function (DUF5333)"],["Pfam%3APF17272","Family of unknown function (DUF5337)"],["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"]],"b":[["alkaloids/parabactin.yaml","parabactin"]]},{"id":"UniProt:P00811","l":"","na":9,"nb":1,"a":[["EC%3A3.5.2.6","beta-lactamase"],["RHEA%3A20401","a beta-lactam + H2O = a substituted beta-amino acid"],["GO%3A0017001","antibiotic catabolic process"],["NCBIfam%3ANF000185","BlaEC family class C beta-lactamase"],["NCBIfam%3ANF033085","class C beta-lactamase"],["NCBIfam%3ANF012173","CMY2/MIR/ACT/EC family class C beta-lactamase"]],"b":[["amino_acids_and_peptides/clavulanic-acid-2.yaml","clavulanic acid"]]},{"id":"UniProt:P23280","l":"","na":9,"nb":1,"a":[["ComplexPortal%3ACPX-11709","-"],["ComplexPortal%3ACPX-12376","-"],["ComplexPortal%3ACPX-12422","-"],["ComplexPortal%3ACPX-12445","-"],["ComplexPortal%3ACPX-13747","-"],["ComplexPortal%3ACPX-17694","-"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:P24666","l":"","na":9,"nb":1,"a":[["ComplexPortal%3ACPX-17111","-"],["ComplexPortal%3ACPX-18047","-"],["ComplexPortal%3ACPX-19744","-"],["ComplexPortal%3ACPX-26078","-"],["CDD%3Acd16343","LMWPTP"],["InterPro%3AIPR023485","Phosphotyrosine protein phosphatase I"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"UniProt:P43250","l":"","na":9,"nb":1,"a":[["ComplexPortal%3ACPX-15339","-"],["ComplexPortal%3ACPX-18479","-"],["ComplexPortal%3ACPX-21827","-"],["ComplexPortal%3ACPX-23485","-"],["ComplexPortal%3ACPX-26222","-"],["GO%3A0047696","beta-adrenergic receptor kinase activity"]],"b":[["carbohydrates/sangivamycin.yaml","sangivamycin"]]},{"id":"UniProt:Q14353","l":"","na":9,"nb":1,"a":[["ComplexPortal%3ACPX-17611","-"],["ComplexPortal%3ACPX-22207","-"],["ComplexPortal%3ACPX-25132","-"],["GO%3A0030731","guanidinoacetate N-methyltransferase activity"],["GO%3A0006601","creatine biosynthetic process"],["GO%3A0006600","creatine metabolic process"]],"b":[["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"UniProt:Q8JUX6","l":"","na":1,"nb":9,"a":[["proteintraitsmech%3ABIOLIP_LFO","LFO-binding site"]],"b":[["alkaloids/ergotamine.yaml","ergotamine"],["amino_acids_and_peptides/leupeptin-a.yaml","leupeptin A"],["amino_acids_and_peptides/linaclotide.yaml","linaclotide"],["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"],["polyketides/kojic-acid.yaml","kojic acid"],["polyketides/monactin.yaml","monactin"]]},{"id":"CHEBI:58515","l":"","na":8,"nb":1,"a":[["EC%3A1.14.11.55","ectoine hydroxylase"],["EC%3A3.5.4.44","ectoine hydrolase"],["EC%3A4.2.1.108","ectoine synthase"],["RHEA%3A17281","(2S)-4-acetamido-2-aminobutanoate = L-ectoine + H2O"],["RHEA%3A45740","L-ectoine + 2-oxoglutarate + O2 = 5-hydroxyectoine + succinate + CO2"],["RHEA%3A52304","L-ectoine + H2O = (2S)-2-acetamido-4-aminobutanoate"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":8,"nb":1,"a":[["Pfam%3APF01721","Class II bacteriocin"],["Pfam%3APF13700","Domain of unknown function (DUF4158)"],["Pfam%3APF07478","D-ala D-ala ligase C-terminus"],["Pfam%3APF01820","D-ala D-ala ligase N-terminus"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"],["PROSITE%3APS00843","D-alanine--D-alanine ligase signature 1"]],"b":[["amino_acids_and_peptides/enterocin-a.yaml","enterocin A"]]},{"id":"NCBITaxon:1703937","l":"Streptomyces sp. CB03234","na":1,"nb":8,"a":[["TED%3AAF-A0A1Q5LKM4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q5LKM4-F1-model_v4_TED02"]],"b":[["terpenoids/tiancilactone-a.yaml","tiancilactone A"],["terpenoids/tiancilactone-b.yaml","tiancilactone B"],["terpenoids/tiancilactone-c.yaml","tiancilactone C"],["terpenoids/tiancilactone-d.yaml","tiancilactone D"],["terpenoids/tiancilactone-e.yaml","tiancilactone E"],["terpenoids/tiancilactone-f.yaml","tiancilactone F"]]},{"id":"NCBITaxon:1908","l":"Streptomyces globisporus","na":1,"nb":8,"a":[["PROSITE%3APS00953","Glycosyl hydrolases family 25 active site signature"]],"b":[["polyketides/c-1027-chromophore.yaml","C-1027 chromophore"],["polyketides/c-1027.yaml","C-1027"],["polyketides/landomycin-a.yaml","landomycin A"],["polyketides/nonactin.yaml","nonactin"],["polyketides/prejadomycin.yaml","prejadomycin"],["polyketides/tetranactin.yaml","tetranactin"]]},{"id":"NCBITaxon:345341","l":"Kutzneria sp. 744","na":1,"nb":8,"a":[["TED%3AAF-W7SU68-F1-model_v4_TED01","TED novel fold AF-W7SU68-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/kutzneride-6.yaml","Kutzneride 6"],["unclassified/kutzneride-1.yaml","Kutzneride 1"],["unclassified/kutzneride-2.yaml","Kutzneride 2"],["unclassified/kutzneride-3.yaml","Kutzneride 3"],["unclassified/kutzneride-4.yaml","Kutzneride 4"],["unclassified/kutzneride-5.yaml","Kutzneride 5"]]},{"id":"NCBITaxon:380703","l":"Aeromonas hydrophila subsp. hydrophila (strain ATCC 7966 / DSM 30187 / BCRC 13018 / CCUG 14551 / JCM 1027 / KCTC 2358 / NCIMB 9240 / NCTC 8049)","na":8,"nb":1,"a":[["Pfam%3APF26341","tRNA 2-selenouridine synthase AAA domain"],["Pfam%3APF11890","Domain of unknown function (DUF3410)"],["Pfam%3APF11944","Protein of unknown function (DUF3461)"],["Pfam%3APF04356","Protein of unknown function (DUF489)"],["Pfam%3APF12563","Hemolytic toxin N terminal"],["Pfam%3APF04362","Bacterial Fe(2+) trafficking"]],"b":[["amino_acids_and_peptides/amonabactin-p-750.yaml","amonabactin P 750"]]},{"id":"NCBITaxon:40318","l":"Streptomyces nodosus","na":1,"nb":8,"a":[["TED%3AAF-A0A0B5DA96-F1-model_v4_TED01","TED novel fold AF-A0A0B5DA96-F1-model_v4_TED01"]],"b":[["alkaloids/melanin.yaml","melanin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/ectoine.yaml","ectoine"],["amino_acids_and_peptides/siamycin-i.yaml","siamycin I"],["fatty_acids/butyrolactone.yaml","γ-butyrolactone"]]},{"id":"NCBITaxon:420953","l":"Paraburkholderia megapolitana","na":1,"nb":8,"a":[["proteintraitsmech%3AELIFE109154_GrbD","GrbD-type graminine biosynthesis protein family"]],"b":[["amino_acids_and_peptides/megapolibactin-a.yaml","megapolibactin A"],["amino_acids_and_peptides/megapolibactin-acyc.yaml","megapolibactin Acyc"],["amino_acids_and_peptides/megapolibactin-b.yaml","megapolibactin B"],["amino_acids_and_peptides/megapolibactin-c.yaml","megapolibactin C"],["amino_acids_and_peptides/megapolibactin-d.yaml","megapolibactin D"],["amino_acids_and_peptides/megapolibactin-e.yaml","megapolibactin E"]]},{"id":"NCBITaxon:492670","l":"Bacillus velezensis","na":1,"nb":8,"a":[["TED%3AAF-A0A7S9EWF1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S9EWF1-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["polyketides/bacillaene.yaml","bacillaene"],["polyketides/difficidin.yaml","difficidin"],["polyketides/macrolactin-h.yaml","macrolactin H"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":1,"nb":8,"a":[["Pfam%3APF07335","Fungal chitosanase of glycosyl hydrolase group 75"]],"b":[["amino_acids_and_peptides/ferrichrome-2.yaml","ferrichrome"],["polyketides/2-acetyl-1-3-6-8-tetrahydroxynaphthalene.yaml","2-acetyl-1,3,6,8-tetrahydroxynaphthalene"],["polyketides/kojic-acid.yaml","kojic acid"],["terpenoids/aphidicolin.yaml","aphidicolin"],["unclassified/2-oxocyclopiazonic-acid.yaml","2-oxocyclopiazonic acid"],["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"UniProt:O96017","l":"","na":8,"nb":1,"a":[["ComplexPortal%3ACPX-16839","-"],["ComplexPortal%3ACPX-21166","-"],["GO%3A0044773","mitotic DNA damage checkpoint signaling"],["CDD%3Acd14084","STKc_Chk2"],["CDD%3Acd22666","FHA_CHK2"],["ELM%3AELME000425","DOC_PP2A_B56_1"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:Q8TD30","l":"","na":8,"nb":1,"a":[["ComplexPortal%3ACPX-11669","-"],["ComplexPortal%3ACPX-11684","-"],["ComplexPortal%3ACPX-18140","-"],["ComplexPortal%3ACPX-18547","-"],["ComplexPortal%3ACPX-25098","-"],["ComplexPortal%3ACPX-26258","-"]],"b":[["polyketides/monactin.yaml","monactin"]]},{"id":"CHEBI:16089","l":"","na":7,"nb":1,"a":[["EC%3A1.14.15.35","6-deoxyerythronolide B hydroxylase"],["EC%3A2.3.1.94","6-deoxyerythronolide-B synthase"],["RHEA%3A40299","6-deoxyerythronolide B + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = erythronolide B + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"],["RHEA%3A23068","6 (S)-methylmalonyl-CoA + propanoyl-CoA + 6 NADPH + 12 H(+) = 6-deoxyerythronolide B + 6 CO2 + 6 NADP(+) + 7 CoA + H2O"],["MCSA%3A694","6-deoxyerythronolide B hydroxylase"],["MCSA%3A602","6-deoxyerythronolide-B synthase"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"NCBITaxon:1314807","l":"Dendrothele bispora (strain CBS 962.96)","na":7,"nb":1,"a":[["TED%3AAF-A0A4S8L719-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S8L719-F1-model_v4_TED01"],["TED%3AAF-A0A4S8LBA1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4S8LBA1-F1-model_v4_TED02"],["TED%3AAF-A0A4S8KM73-F1-model_v4_TED02","TED novel fold AF-A0A4S8KM73-F1-model_v4_TED02"],["TED%3AAF-A0A4S8KTD4-F1-model_v4_TED01","TED novel fold AF-A0A4S8KTD4-F1-model_v4_TED01"],["TED%3AAF-A0A4S8LE48-F1-model_v4_TED01","TED novel fold AF-A0A4S8LE48-F1-model_v4_TED01"],["TED%3AAF-A0A4S8MMV1-F1-model_v4_TED02","TED novel fold AF-A0A4S8MMV1-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/dendrothelin-a.yaml","dendrothelin A"]]},{"id":"NCBITaxon:391037","l":"Salinispora arenicola CNS-205","na":1,"nb":7,"a":[["Pfam%3APF12072","RNase Y N-terminal region"]],"b":[["alkaloids/lymphostin.yaml","lymphostin"],["alkaloids/lymphostinol.yaml","lymphostinol"],["alkaloids/neolymphostin-b.yaml","neolymphostin b"],["alkaloids/neolymphostinol-b.yaml","neolymphostinol B"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/cyclomarin-d.yaml","cyclomarin D"]]},{"id":"NCBITaxon:405948","l":"","na":1,"nb":7,"a":[["Pfam%3APF21036","Erythromycin biosynthesis protein CIII-like, N-terminal domain"]],"b":[["amino_acids_and_peptides/erythrochelin.yaml","erythrochelin"],["polyketides/erythromycin-a.yaml","erythromycin A"],["polyketides/erythromycin-b.yaml","erythromycin B"],["polyketides/erythromycin-c.yaml","erythromycin C"],["polyketides/erythromycin-d.yaml","erythromycin D"],["polyketides/flaviolin.yaml","flaviolin"]]},{"id":"NCBITaxon:5077","l":"Penicillium citrinum","na":1,"nb":7,"a":[["PROSITE%3APS00876","Indoleamine 2,3-dioxygenase signature 1"]],"b":[["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["polyketides/citrinin.yaml","(+)-citrinin"],["polyketides/mevinic-acid.yaml","mevinic acid"],["unclassified/orcinol.yaml","orcinol"],["unclassified/penigainamide-a.yaml","penigainamide A"],["unclassified/penigainamide-b.yaml","penigainamide B"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":7,"nb":1,"a":[["Pfam%3APF11766","Agglutinin-like protein, N-terminal domain"],["Pfam%3APF16856","Cell division control protein 4 dimerisation domain"],["Pfam%3APF18325","Fatty acid synthase subunit alpha Acyl carrier domain"],["Pfam%3APF18314","Fatty acid synthase type I helical domain"],["Pfam%3APF17828","N-terminal domain in fatty acid synthase subunit beta"],["Pfam%3APF05388","Carboxypeptidase Y pro-peptide"]],"b":[["unclassified/antimycin-a1b.yaml","antimycin A1B"]]},{"id":"NCBITaxon:5580","l":"Aureobasidium pullulans","na":7,"nb":1,"a":[["TED%3AAF-A0A4S8XR15-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S8XR15-F1-model_v4_TED01"],["TED%3AAF-A0A4S8YVB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S8YVB9-F1-model_v4_TED01"],["TED%3AAF-A0A4S9KUA9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S9KUA9-F1-model_v4_TED01"],["TED%3AAF-A0A4T0BHY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4T0BHY6-F1-model_v4_TED01"],["TED%3AAF-A0A4S9MB45-F1-model_v4_TED01","TED novel fold AF-A0A4S9MB45-F1-model_v4_TED01"],["TED%3AAF-A0A4S9RE93-F1-model_v4_TED01","TED novel fold AF-A0A4S9RE93-F1-model_v4_TED01"]],"b":[["unclassified/abt1.yaml","AbT1"]]},{"id":"NCBITaxon:5599","l":"Alternaria alternata","na":1,"nb":7,"a":[["Pfam%3APF16541","Alternaria alternata allergen 1"]],"b":[["alkaloids/ak-toxin-i.yaml","AK-toxin I"],["alkaloids/dimethylcoprogen.yaml","dimethylcoprogen"],["amino_acids_and_peptides/am-toxin.yaml","AM-toxin"],["polyketides/act-toxin-ii.yaml","ACT-Toxin II"],["polyketides/unii-yc2q1o94pt.yaml","UNII-YC2Q1O94PT"],["unclassified/af-toxin.yaml","AF-toxin"]]},{"id":"NCBITaxon:672","l":"Vibrio vulnificus","na":7,"nb":1,"a":[["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF08021","Siderophore-interacting FAD-binding domain"],["Pfam%3APF11575","FhuF 2Fe-2S C-terminal domain"],["Pfam%3APF27349","IcsB middle domain"],["Pfam%3APF21735","C-terminal repeat from RTX toxins"],["Pfam%3APF07634","RtxA repeat"]],"b":[["alkaloids/vulnibactin.yaml","vulnibactin"]]},{"id":"NCBITaxon:67339","l":"Streptomyces orinoci","na":1,"nb":7,"a":[["Pfam%3APF09277","Erythronolide synthase, docking"]],"b":[["polyketides/aureothin.yaml","aureothin"],["polyketides/orinocin.yaml","orinocin"],["polyketides/spectinabilin.yaml","spectinabilin"],["terpenoids/snf4435c.yaml","SNF4435C"],["terpenoids/snf4435d.yaml","SNF4435D"],["unclassified/neoantimycin-2.yaml","neoantimycin"]]},{"id":"NCBITaxon:68280","l":"Streptomyces violaceusniger","na":1,"nb":7,"a":[["TED%3AAF-A0A0X3VKA0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0X3VKA0-F1-model_v4_TED01"]],"b":[["fatty_acids/desulfoclethramycin.yaml","desulfoclethramycin"],["polyketides/be-24566b.yaml","BE-24566B"],["polyketides/elaiophylin.yaml","elaiophylin"],["polyketides/meridamycin-2.yaml","meridamycin"],["polyketides/nigericin.yaml","nigericin"],["terpenoids/2-methylisoborneol.yaml","2-methylisoborneol"]]},{"id":"UniProt:P27296","l":"","na":7,"nb":1,"a":[["GO%3A0033677","DNA/RNA helicase activity"],["NCBIfam%3ANF008729","ATP-dependent DNA helicase DinG"],["InterPro%3AIPR006555","ATP-dependent helicase, C-terminal"],["InterPro%3AIPR006554","Helicase-like, DEXD box c2 type"],["InterPro%3AIPR014013","Helicase superfamily 1/2, ATP-binding domain, DinG/Rad3-type"],["InterPro%3AIPR010614","RAD3-like helicase, DEAD"]],"b":[["unclassified/telomestatin.yaml","telomestatin"]]},{"id":"UniProt:P50135","l":"","na":7,"nb":1,"a":[["GO%3A0046539","histamine N-methyltransferase activity"],["GO%3A0001695","histamine catabolic process"],["GO%3A0001692","histamine metabolic process"],["GO%3A0006548","L-histidine catabolic process"],["Pfam%3APF13489","Methyltransferase domain"],["PROSITE%3APS51597","Histamine N-methyltransferase (EC 2.1.1.8) family profile"]],"b":[["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"UniProt:Q8IZQ5","l":"","na":7,"nb":1,"a":[["ComplexPortal%3ACPX-14418","-"],["ComplexPortal%3ACPX-17411","-"],["ComplexPortal%3ACPX-17423","-"],["ComplexPortal%3ACPX-17969","-"],["ComplexPortal%3ACPX-19650","-"],["ComplexPortal%3ACPX-22629","-"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"UniProt:Q92731","l":"","na":7,"nb":1,"a":[["GO%3A0030284","nuclear estrogen receptor activity"],["CDD%3Acd07171","NR_DBD_ER"],["CDD%3Acd06949","NR_LBD_ER"],["InterPro%3AIPR021064","Estrogen receptor beta-like, N-terminal"],["Pfam%3APF12497","Estrogen receptor beta"],["ELM%3AELME000053","MOD_GSK3_1"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:Q96LB1","l":"","na":7,"nb":1,"a":[["GO%3A0004985","G protein-coupled opioid receptor activity"],["GO%3A1990595","mast cell secretagogue receptor activity"],["GO%3A0045576","mast cell activation"],["CDD%3Acd15106","7tmA_MrgprX-like"],["InterPro%3AIPR017452","GPCR, rhodopsin-like, 7TM"],["PROSITE%3APS50262","G-protein coupled receptors family 1 profile"]],"b":[["alkaloids/thebaine.yaml","thebaine"]]},{"id":"UniProt:Q9FUZ2","l":"","na":7,"nb":1,"a":[["GO%3A0042586","peptide deformylase activity"],["NCBIfam%3ANF001159","peptide deformylase"],["NCBIfam%3ATIGR00079","peptide deformylase"],["CDD%3Acd00487","Pep_deformylase"],["Pfam%3APF01327","Polypeptide deformylase"],["InterPro%3AIPR036821","Peptide deformylase superfamily"]],"b":[["amino_acids_and_peptides/actinonin.yaml","actinonin"]]},{"id":"CHEBI:16536","l":"orcinol","na":6,"nb":1,"a":[["EC%3A1.14.13.6","orcinol 2-monooxygenase"],["EC%3A4.1.1.58","orsellinate decarboxylase"],["RHEA%3A63072","3 malonyl-CoA + acetyl-CoA + 3 H(+) = orcinol + 4 CO2 + 4 CoA"],["RHEA%3A19601","orcinol + NADH + O2 + H(+) = 2,3,5-trihydroxytoluene + NAD(+) + H2O"],["RHEA%3A80563","orcinol + S-adenosyl-L-methionine = 3-methoxy-5-methylphenol + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A16733","orsellinate + H(+) = orcinol + CO2"]],"b":[["unclassified/orcinol.yaml","orcinol"]]},{"id":"CHEBI:18365","l":"naphthalene-1,3,6,8-tetrol","na":6,"nb":1,"a":[["EC%3A1.1.1.252","tetrahydroxynaphthalene reductase"],["EC%3A2.3.1.233","1,3,6,8-tetrahydroxynaphthalene synthase"],["RHEA%3A41524","5 malonyl-CoA + 5 H(+) = naphthalene-1,3,6,8-tetrol + 5 CO2 + 5 CoA + H2O"],["RHEA%3A62700","naphtopyrone YWA1 + H2O = naphthalene-1,3,6,8-tetrol + acetoacetate + H(+)"],["RHEA%3A21908","scytalone + NADP(+) = naphthalene-1,3,6,8-tetrol + NADPH + H(+)"],["MCSA%3A891","Tetrahydroxynaphthalene reductase"]],"b":[["polyketides/naphthalene-1-3-6-8-tetrol.yaml","naphthalene-1,3,6,8-tetrol"]]},{"id":"CHEBI:63677","l":"","na":6,"nb":1,"a":[["EC%3A1.14.13.154","erythromycin 12 hydroxylase"],["EC%3A2.1.1.254","erythromycin 3'-O-methyltransferase"],["EC%3A2.4.1.278","3-alpha-mycarosylerythronolide B desosaminyl transferase"],["RHEA%3A32091","3-O-alpha-L-mycarosylerythronolide B + dTDP-alpha-D-desosamine = erythromycin D + dTDP + H(+)"],["RHEA%3A32631","erythromycin D + NADPH + O2 + H(+) = erythromycin C + NADP(+) + H2O"],["RHEA%3A32651","erythromycin D + S-adenosyl-L-methionine = erythromycin B + S-adenosyl-L-homocysteine + H(+)"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"NCBITaxon:128403","l":"Scytonema hofmannii PCC 7110","na":1,"nb":6,"a":[["TED%3AAF-A0A139X3P3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A139X3P3-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/scytocyclamide-a.yaml","scytocyclamide A"],["amino_acids_and_peptides/scytocyclamide-a2.yaml","scytocyclamide A2"],["amino_acids_and_peptides/scytocyclamide-b.yaml","scytocyclamide B"],["amino_acids_and_peptides/scytocyclamide-b2.yaml","scytocyclamide B2"],["amino_acids_and_peptides/scytocyclamide-b3.yaml","scytocyclamide B3"],["amino_acids_and_peptides/scytocyclamide-c.yaml","scytocyclamide C"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":6,"nb":1,"a":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF10779","Haemolysin XhlA"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF08181","DegQ (SacQ) family"],["Pfam%3APF08057","Erythromycin resistance leader peptide"],["Pfam%3APF14867","Lantibiotic alpha"]],"b":[["amino_acids_and_peptides/bacitracin.yaml","bacitracin"]]},{"id":"NCBITaxon:1877","l":"Micromonospora echinospora","na":1,"nb":6,"a":[["Pfam%3APF07091","Ribosomal RNA methyltransferase (FmrO)"]],"b":[["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/gentamicin-2.yaml","gentamicin"],["carbohydrates/gentamicin.yaml","gentamicin"],["polyketides/1-6-dihydro-8-propylanthraquinone.yaml","1,6-dihydro-8-propylanthraquinone"],["polyketides/calicheamicin.yaml","calicheamicin"],["polyketides/tiacumicin-b.yaml","tiacumicin B"]]},{"id":"NCBITaxon:1920","l":"Streptomyces nigrescens","na":1,"nb":6,"a":[["Pfam%3APF03995","Peptidase inhibitor family I36"]],"b":[["alkaloids/5athq-10a.yaml","5aTHQ-10a"],["alkaloids/5athq-9i.yaml","5aTHQ-9i"],["alkaloids/5athq-9n.yaml","5aTHQ-9n"],["alkaloids/stams-9i.yaml","STAMs-9i"],["alkaloids/stams-9n.yaml","STAMs-9n"],["polyketides/phoslactomycin-b.yaml","phoslactomycin B"]]},{"id":"NCBITaxon:1930","l":"Streptomyces scabiei","na":1,"nb":6,"a":[["TED%3AAF-A0A086GLG9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A086GLG9-F1-model_v4_TED01"]],"b":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"],["amino_acids_and_peptides/thaxtomin-c.yaml","thaxtomin C"],["polyketides/oronofacic-acid.yaml","oronofacic acid"],["unclassified/n-coronafacoyl-l-isoleucine.yaml","N-coronafacoyl-L-isoleucine"],["unclassified/thaxtomin-a.yaml","thaxtomin A"],["unclassified/thaxtomin-b.yaml","thaxtomin B"]]},{"id":"NCBITaxon:278992","l":"Streptomyces ambofaciens ATCC 23877","na":1,"nb":6,"a":[["Pfam%3APF00553","Cellulose binding domain"]],"b":[["alkaloids/congocidine.yaml","congocidine"],["polyketides/spiramycin.yaml","spiramycin"],["polyketides/stambomycin-a.yaml","stambomycin A"],["polyketides/stambomycin-b.yaml","stambomycin B"],["polyketides/stambomycin-c.yaml","stambomycin C"],["polyketides/stambomycin-d.yaml","stambomycin D"]]},{"id":"NCBITaxon:4097","l":"Nicotiana tabacum","na":6,"nb":1,"a":[["Pfam%3APF02041","Auxin binding protein"],["Pfam%3APF12481","Aluminium induced protein"],["Pfam%3APF11995","Domain of unknown function (DUF3490)"],["Pfam%3APF07172","Glycine rich protein family"],["PROSITE%3APS00157","Ribulose bisphosphate carboxylase large chain active site"],["TED%3AAF-A0A1S4A696-F1-model_v4_TED01","TED novel fold AF-A0A1S4A696-F1-model_v4_TED01"]],"b":[["terpenoids/capsidiol.yaml","capsidiol"]]},{"id":"NCBITaxon:46472","l":"Aspergillus versicolor","na":1,"nb":6,"a":[["Pfam%3APF13810","Domain of unknown function (DUF4185)"]],"b":[["alkaloids/psychrophilin-f.yaml","psychrophilin F"],["alkaloids/psychrophilin-g.yaml","psychrophilin G"],["polyketides/sterigmatocystin.yaml","sterigmatocystin"],["unclassified/chevalone-e.yaml","chevalone E"],["unclassified/notoamide-a.yaml","notoamide A"],["unclassified/psychrophilin-h.yaml","psychrophilin H"]]},{"id":"NCBITaxon:5082","l":"Penicillium roqueforti","na":1,"nb":6,"a":[["Pfam%3APF07573","Nitrogen regulatory protein AreA N terminus"]],"b":[["alkaloids/mycophenolic-acid-2.yaml","mycophenolic acid"],["polyketides/mycophenolic-acid.yaml","mycophenolic acid"],["terpenoids/pr-toxin.yaml","PR-toxin"],["unclassified/andrastin-a.yaml","andrastin A"],["unclassified/roquefortine-c.yaml","roquefortine C"],["unclassified/roquefortine-d.yaml","roquefortine D"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":6,"nb":1,"a":[["IDPO%3A0000037","molecular recognition display site"],["Pfam%3APF05403","Plasmodium histidine-rich protein (HRPII/III)"],["Pfam%3APF17986","EMP3-KAHRP-like N-terminal domain"],["Pfam%3APF03805","Cytoadherence-linked asexual protein"],["Pfam%3APF06589","Circumsporozoite-related antigen (CRA)"],["TED%3AAF-Q9U431-F1-model_v4_TED01","TED novel fold AF-Q9U431-F1-model_v4_TED01"]],"b":[["alkaloids/congocidine.yaml","congocidine"]]},{"id":"NCBITaxon:62977","l":"Acinetobacter baylyi (strain ATCC 33305 / BD413 / ADP1)","na":6,"nb":1,"a":[["Pfam%3APF03594","Benzoate membrane transport protein"],["Pfam%3APF27541","Citrate utilization protein B"],["Pfam%3APF05232","Chlorhexidine efflux transporter"],["PROSITE%3APS00083","Intradiol ring-cleavage dioxygenases signature"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"],["Pfam%3APF11846","Virulence factor membrane-bound polymerase, C-terminal"]],"b":[["amino_acids_and_peptides/fimsbactin-a.yaml","fimsbactin A"]]},{"id":"NCBITaxon:78245","l":"Xanthobacter autotrophicus (strain ATCC BAA-1158 / Py2)","na":6,"nb":1,"a":[["Pfam%3APF08882","Acetone carboxylase gamma subunit"],["Pfam%3APF19278","Hydantoinase/oxoprolinase C-terminal domain"],["Pfam%3APF05378","Hydantoinase/oxoprolinase N-terminal region"],["Pfam%3APF01968","Hydantoinase/oxoprolinase"],["Pfam%3APF02538","Hydantoinase B/oxoprolinase"],["TED%3AAF-A7IL68-F1-model_v4_TED01","TED highly-symmetric fold AF-A7IL68-F1-model_v4_TED01"]],"b":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":6,"nb":1,"a":[["Pfam%3APF16376","N-terminal domain of fragilysin"],["TED%3AAF-A0A412XR06-F1-model_v4_TED03","TED novel fold AF-A0A412XR06-F1-model_v4_TED03"],["TED%3AAF-A0A4V1EUI2-F1-model_v4_TED02","TED novel fold AF-A0A4V1EUI2-F1-model_v4_TED02"],["TED%3AAF-A0A5C6IXH5-F1-model_v4_TED01","TED novel fold AF-A0A5C6IXH5-F1-model_v4_TED01"],["TED%3AAF-A0A5C6L6G9-F1-model_v4_TED02","TED novel fold AF-A0A5C6L6G9-F1-model_v4_TED02"],["TED%3AAF-A0A642KY52-F1-model_v4_TED01","TED novel fold AF-A0A642KY52-F1-model_v4_TED01"]],"b":[["fatty_acids/galactosylceramide.yaml","α-galactosylceramide"]]},{"id":"NCBITaxon:882378","l":"","na":1,"nb":6,"a":[["Pfam%3APF01983","Guanylyl transferase CofC like"]],"b":[["amino_acids_and_peptides/endopyrrole-b.yaml","endopyrrole B"],["amino_acids_and_peptides/holrhizin-a.yaml","holrhizin A"],["amino_acids_and_peptides/holrhizin-b.yaml","holrhizin B"],["amino_acids_and_peptides/holrhizin-c.yaml","holrhizin C"],["amino_acids_and_peptides/holrhizin-d.yaml","holrhizin D"],["unclassified/endopyrrole-a.yaml","endopyrrole A"]]},{"id":"UniProt:Q9XUB2","l":"","na":6,"nb":1,"a":[["GO%3A0008187","poly-pyrimidine tract binding"],["InterPro%3AIPR000571","Zinc finger, CCCH-type"],["Pfam%3APF00642","Zinc finger C-x8-C-x5-C-x3-H type (and similar)"],["InterPro%3AIPR036855","Zinc finger, CCCH-type superfamily"],["PROSITE%3APS50103","Zinc finger C3H1-type profile"],["CATH%3A4.10.1000.10","Zinc finger, CCCH-type"]],"b":[["polyketides/pyrophen.yaml","pyrophen"]]},{"id":"CHEBI:27977","l":"","na":5,"nb":1,"a":[["EC%3A1.14.15.35","6-deoxyerythronolide B hydroxylase"],["EC%3A2.4.1.328","erythronolide mycarosyltransferase"],["RHEA%3A40299","6-deoxyerythronolide B + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = erythronolide B + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"],["RHEA%3A41576","dTDP-beta-L-mycarose + erythronolide B = 3-O-alpha-L-mycarosylerythronolide B + dTDP + H(+)"],["MCSA%3A694","6-deoxyerythronolide B hydroxylase"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"CHEBI:58572","l":"N-[(5S)-5-ammonio-5-carboxylatopentanoyl]-L-cysteinyl-D-valinate","na":5,"nb":1,"a":[["EC%3A1.21.3.1","isopenicillin-N synthase"],["EC%3A6.3.2.26","N-(5-amino-5-carboxypentanoyl)-L-cysteinyl-D-valine synthase"],["RHEA%3A23196","L-2-aminoadipate + L-valine + L-cysteine + 3 ATP + H2O = N-[(5S)-5-amino-5-carboxypentanoyl]-L-cysteinyl-D-valine + 3 AMP + 3 diphosphate + 3 H(+)"],["RHEA%3A22428","N-[(5S)-5-amino-5-carboxypentanoyl]-L-cysteinyl-D-valine + O2 = isopenicillin N + 2 H2O"],["MCSA%3A145","isopenicillin-N synthase"]],"b":[["amino_acids_and_peptides/n-5s-5-ammonio-5-carboxylatopentanoyl-l-cysteinyl-d-valinate.yaml","N-[(5S)-5-ammonio-5-carboxylatopentanoyl]-L-cysteinyl-D-valinate"]]},{"id":"CHEBI:62219","l":"2-heptyl-4-quinolone","na":5,"nb":1,"a":[["EC%3A1.14.13.182","2-heptyl-3-hydroxy-4(1H)-quinolone synthase"],["EC%3A2.3.1.230","2-heptyl-4(1H)-quinolone synthase"],["RHEA%3A50408","1-(2-aminophenyl)decane-1,3-dione = 2-heptyl-4(1H)-quinolone + H2O"],["RHEA%3A50396","(2-aminobenzoyl)acetate + octanoyl-CoA + H(+) = 2-heptyl-4(1H)-quinolone + CO2 + CoA + H2O"],["RHEA%3A37871","2-heptyl-4(1H)-quinolone + NADH + O2 + H(+) = 2-heptyl-3-hydroxy-4(1H)-quinolone + NAD(+) + H2O"]],"b":[["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"]]},{"id":"CHEBI:90888","l":"aurachin C","na":5,"nb":1,"a":[["EC%3A1.14.13.222","aurachin C monooxygenase/isomerase"],["RHEA%3A49000","aurachin C + NADH + O2 + H(+) = 4-hydroxy-2-methyl-3-oxo-4-[(2E,6E)-farnesyl]-3,4-dihydroquinoline 1-oxide + NAD(+) + H2O"],["RHEA%3A49012","aurachin C + NADH + O2 + H(+) = aurachin C epoxide + NAD(+) + H2O"],["RHEA%3A49004","aurachin C + NADPH + O2 + H(+) = 4-hydroxy-2-methyl-3-oxo-4-[(2E,6E)-farnesyl]-3,4-dihydroquinoline 1-oxide + NADP(+) + H2O"],["RHEA%3A49008","aurachin C + NADPH + O2 + H(+) = aurachin C epoxide + NADP(+) + H2O"]],"b":[["alkaloids/aurachin-c.yaml","aurachin C"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":5,"nb":1,"a":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF02963","Restriction endonuclease EcoRI"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["PROSITE%3APS00974","Mannitol dehydrogenases signature"],["PROSITE%3APS00567","Phosphoribulokinase signature"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:1110502","l":"Tistrella mobilis KA081020-065","na":1,"nb":5,"a":[["TED%3AAF-I3TTD1-F1-model_v4_TED03","TED novel fold AF-I3TTD1-F1-model_v4_TED03"]],"b":[["unclassified/dehydrodidemnin-b-aplidine.yaml","dehydrodidemnin B (aplidine)"],["unclassified/didemnin-b.yaml","didemnin B"],["unclassified/didemnin-x.yaml","didemnin X"],["unclassified/didemnin-y.yaml","didemnin Y"],["unclassified/nordidemnin-b.yaml","nordidemnin B"]]},{"id":"NCBITaxon:1437453","l":"Streptomyces leeuwenhoekii","na":1,"nb":5,"a":[["TED%3AAF-A0A0F7VQ57-F1-model_v4_TED03","TED novel fold AF-A0A0F7VQ57-F1-model_v4_TED03"]],"b":[["amino_acids_and_peptides/leepeptin.yaml","Leepeptin"],["polyketides/chaxamycin-a.yaml","chaxamycin A"],["polyketides/chaxamycin-b.yaml","chaxamycin B"],["polyketides/chaxamycin-c.yaml","chaxamycin C"],["polyketides/chaxamycin-d.yaml","chaxamycin D"]]},{"id":"NCBITaxon:1465","l":"Brevibacillus laterosporus","na":1,"nb":5,"a":[["TED%3AAF-A0A0F7BZ24-F1-model_v4_TED01","TED novel fold AF-A0A0F7BZ24-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/bogorol-a.yaml","bogorol A"],["amino_acids_and_peptides/tauramamide.yaml","tauramamide"],["shikimates_and_phenylpropanoids/basiliskamide-a.yaml","Basiliskamide A"],["unclassified/basiliskamide-b.yaml","Basiliskamide B"],["unclassified/laterocidine.yaml","laterocidine"]]},{"id":"NCBITaxon:176275","l":"Beauveria bassiana","na":1,"nb":5,"a":[["TED%3AAF-A0A2S7Y157-F1-model_v4_TED02","TED novel fold AF-A0A2S7Y157-F1-model_v4_TED02"]],"b":[["alkaloids/desmethylbassianin.yaml","desmethylbassianin"],["alkaloids/tenellin.yaml","tenellin"],["polyketides/oosporein.yaml","oosporein"],["unclassified/bassianolide.yaml","bassianolide"],["unclassified/beauvericin.yaml","beauvericin"]]},{"id":"NCBITaxon:220664","l":"Pseudomonas protegens Pf-5","na":1,"nb":5,"a":[["Pfam%3APF18089","DAPG hydrolase PhiG domain"]],"b":[["alkaloids/pyoluteorin.yaml","pyoluteorin"],["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"],["unclassified/orfamide-a.yaml","orfamide A"],["unclassified/orfamide-c.yaml","orfamide C"],["unclassified/pf-5-pyoverdine.yaml","Pf-5 pyoverdine"]]},{"id":"NCBITaxon:29303","l":"Streptomyces cattleya","na":1,"nb":5,"a":[["Pfam%3APF22636","Fluoroacetyl-CoA-specific thioesterase"]],"b":[["amino_acids_and_peptides/cattlecin.yaml","cattlecin"],["amino_acids_and_peptides/clavulanic-acid.yaml","clavulanic acid"],["amino_acids_and_peptides/ethynylserine.yaml","β-ethynylserine"],["amino_acids_and_peptides/thienamycin.yaml","thienamycin"],["terpenoids/cattleyene.yaml","cattleyene"]]},{"id":"NCBITaxon:380704","l":"Aspergillus niger ATCC 1015","na":1,"nb":5,"a":[["Pfam%3APF28387","BfoA N-terminal domain"]],"b":[["polyketides/azanigerone-a.yaml","azanigerone A"],["polyketides/campyrone-b.yaml","campyrone B"],["polyketides/pyranonigrin-e.yaml","pyranonigrin E"],["polyketides/pyrophen.yaml","pyrophen"],["terpenoids/yanuthone-d.yaml","yanuthone D"]]},{"id":"NCBITaxon:384","l":"Rhizobium leguminosarum","na":5,"nb":1,"a":[["Pfam%3APF10931","Protein of unknown function (DUF2735)"],["TED%3AAF-A0A1B1C3F3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1B1C3F3-F1-model_v4_TED02"],["TED%3AAF-A0A4Q8XNE1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q8XNE1-F1-model_v4_TED01"],["TED%3AAF-A0A6P0B3F8-F1-model_v4_TED02","TED novel fold AF-A0A6P0B3F8-F1-model_v4_TED02"],["TED%3AAF-A0A6P0DM15-F1-model_v4_TED01","TED novel fold AF-A0A6P0DM15-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/vicibactin.yaml","vicibactin"]]},{"id":"NCBITaxon:4513","l":"Hordeum vulgare","na":5,"nb":1,"a":[["Pfam%3APF20241","Domain of unknown function (DUF6598)"],["PROSITE%3APS00771","Barwin domain signature 1"],["PROSITE%3APS00426","Cereal trypsin/alpha-amylase inhibitors family signature"],["PROSITE%3APS00725","Germin family signature"],["PROSITE%3APS00431","Small hydrophilic plant seed proteins signature"]],"b":[["unclassified/roquefortine-c.yaml","roquefortine C"]]},{"id":"NCBITaxon:47427","l":"Armillaria gallica","na":5,"nb":1,"a":[["TED%3AAF-A0A2H3CFH3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H3CFH3-F1-model_v4_TED02"],["TED%3AAF-A0A2H3DFZ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H3DFZ3-F1-model_v4_TED01"],["TED%3AAF-A0A2H3DTE1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H3DTE1-F1-model_v4_TED02"],["TED%3AAF-A0A2H3E1R0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H3E1R0-F1-model_v4_TED02"],["TED%3AAF-A0A2H3CX67-F1-model_v4_TED02","TED novel fold AF-A0A2H3CX67-F1-model_v4_TED02"]],"b":[["terpenoids/8-hydroxy-6-protoilludene.yaml","8α-hydroxy-6-protoilludene"]]},{"id":"NCBITaxon:5454","l":"","na":5,"nb":1,"a":[["TED%3AAF-A0A162YC52-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A162YC52-F1-model_v4_TED01"],["TED%3AAF-A0A163JCD7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A163JCD7-F1-model_v4_TED01"],["TED%3AAF-A0A163LJZ7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A163LJZ7-F1-model_v4_TED02"],["TED%3AAF-A0A163LQ36-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A163LQ36-F1-model_v4_TED01"],["TED%3AAF-A0A163M9G4-F1-model_v4_TED01","TED novel fold AF-A0A163M9G4-F1-model_v4_TED01"]],"b":[["polyketides/solanapyrone-a.yaml","solanapyrone A"]]},{"id":"UniProt:P22629","l":"","na":5,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_4IR","4IR-binding site"],["proteintraitsmech%3ABIOLIP_HL9","HL9-binding site"],["proteintraitsmech%3ABIOLIP_ZOE","ZOE-binding site"],["proteintraitsmech%3AMETALPDB_RH_DINUCLEAR","dinuclear rhodium site"],["proteintraitsmech%3AMETALPDB_CO_TETRANUCLEAR","tetranuclear cobalt site"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"CHEBI:140434","l":"3-[(Z)-2-isocyanovinyl]indole","na":4,"nb":1,"a":[["EC%3A1.14.20.11","3-[(Z)-2-isocyanoethenyl]-1H-indole synthase"],["EC%3A2.5.1.146","3-geranyl-3-[(Z)-2-isocyanoethenyl]indole synthase"],["RHEA%3A56700","(2S)-3-(1H-indol-3-yl)-2-isocyanopropanoate + 2-oxoglutarate + O2 + H(+) = 3-[(Z)-2-isocyanoethenyl]-1H-indole + succinate + 2 CO2 + H2O"],["RHEA%3A17349","3-[(Z)-2-isocyanoethenyl]-1H-indole + (2E)-geranyl diphosphate = 3-geranyl-3-[(Z)-2-isocyanoethenyl]-1H-indole + diphosphate"]],"b":[["alkaloids/3-z-2-isocyanovinyl-indole.yaml","3-[(Z)-2-isocyanovinyl]indole"]]},{"id":"CHEBI:140442","l":"12-epi-fischerindole U isonitrile","na":4,"nb":1,"a":[["EC%3A1.14.20.14","hapalindole-type alkaloid chlorinase"],["EC%3A5.5.1.33","12-epi-fischerindole U synthase"],["RHEA%3A56764","12-epi-fischerindole U + chloride + 2-oxoglutarate + O2 + H(+) = 12-epi-fischerindole G + succinate + CO2 + H2O"],["RHEA%3A56456","3-geranyl-3-[(Z)-2-isocyanoethenyl]-1H-indole = 12-epi-fischerindole U"]],"b":[["alkaloids/12-epi-fischerindole-u-isonitrile.yaml","12-epi-fischerindole U isonitrile"]]},{"id":"CHEBI:155910","l":"aculene D","na":4,"nb":1,"a":[["RHEA%3A65112","aculene D + 2-oxoglutarate + O2 = aculene C + succinate + CO2 + H2O"],["RHEA%3A65104","aculene D + L-prolyl-[peptidyl-carrier protein] = aculene B + holo-[peptidyl-carrier protein]"],["RHEA%3A65084","asperaculane E + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = aculene D + 2 oxidized [NADPH--hemoprotein reductase] + CO2 + 3 H2O + H(+)"],["RHEA%3A65092","asperaculane G + reduced [NADPH--hemoprotein reductase] + O2 = aculene D + oxidized [NADPH--hemoprotein reductase] + CO2 + 2 H2O"]],"b":[["terpenoids/aculene-d.yaml","aculene D"]]},{"id":"CHEBI:16368","l":"6-hydroxymellein","na":4,"nb":1,"a":[["EC%3A2.1.1.108","6-hydroxymellein O-methyltransferase"],["RHEA%3A65248","5 malonyl-CoA + AH2 + 5 H(+) = 6-hydroxymellein + A + 5 CO2 + 5 CoA + H2O"],["RHEA%3A65252","6-hydroxymellein + (2E,6E)-farnesyl diphosphate = verruculide C + diphosphate"],["RHEA%3A15201","6-hydroxymellein + S-adenosyl-L-methionine = 6-methoxymellein + S-adenosyl-L-homocysteine + H(+)"]],"b":[["shikimates_and_phenylpropanoids/6-hydroxymellein.yaml","6-hydroxymellein"]]},{"id":"CHEBI:18048","l":"DIMBOA","na":4,"nb":1,"a":[["EC%3A2.4.1.202","2,4-dihydroxy-7-methoxy-2H-1,4-benzoxazin-3(4H)-one 2-D- glucosyltransferase"],["EC%3A3.2.1.182","4-hydroxy-7-methoxy-3-oxo-3,4-dihydro-2H-1,4-benzoxazin-2-yl glucoside beta-D-glucosidase"],["RHEA%3A33975","DIMBOA beta-D-glucoside + H2O = DIMBOA + D-glucose"],["RHEA%3A15541","DIMBOA + UDP-alpha-D-glucose = DIMBOA beta-D-glucoside + UDP + H(+)"]],"b":[["alkaloids/dimboa.yaml","DIMBOA"]]},{"id":"CHEBI:18227","l":"sterigmatocystin","na":4,"nb":1,"a":[["EC%3A2.1.1.109","demethylsterigmatocystin 6-O-methyltransferase"],["EC%3A2.1.1.110","sterigmatocystin 8-O-methyltransferase"],["RHEA%3A11504","6-demethylsterigmatocystin + S-adenosyl-L-methionine = sterigmatocystin + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A15561","sterigmatocystin + S-adenosyl-L-methionine = 8-O-methylsterigmatocystin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["polyketides/sterigmatocystin.yaml","sterigmatocystin"]]},{"id":"CHEBI:2448","l":"actinorhodin","na":4,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["proteintraitsmech%3ABIOLIP_ZCT","ZCT-binding site"]],"b":[["polyketides/actinorhodin.yaml","actinorhodin"]]},{"id":"CHEBI:4356","l":"desferrioxamine B","na":4,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_4356","requires desferrioxamine B"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["proteintraitsmech%3ABIOLIP_KTY","KTY-binding site"]],"b":[["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"]]},{"id":"CHEBI:51460","l":"albaflavenone","na":4,"nb":1,"a":[["EC%3A1.14.15.39","epi-isozizaene 5-monooxygenase"],["RHEA%3A25988","(5R)-albaflavenol + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = albaflavenone + 2 oxidized [2Fe-2S]-[ferredoxin] + 2 H2O"],["RHEA%3A25980","(5S)-albaflavenol + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = albaflavenone + 2 oxidized [2Fe-2S]-[ferredoxin] + 2 H2O"],["RHEA%3A32439","(+)-epi-isozizaene + 4 reduced [2Fe-2S]-[ferredoxin] + 2 O2 + 4 H(+) = albaflavenone + 4 oxidized [2Fe-2S]-[ferredoxin] + 3 H2O"]],"b":[["terpenoids/albaflavenone.yaml","albaflavenone"]]},{"id":"CHEBI:63282","l":"pseudaminate","na":4,"nb":1,"a":[["EC%3A2.5.1.97","pseudaminic acid synthase"],["EC%3A2.7.7.81","pseudaminic acid cytidylyltransferase"],["RHEA%3A31631","2,4-diacetamido-2,4,6-trideoxy-beta-L-altrose + phosphoenolpyruvate + H2O = pseudaminate + phosphate"],["RHEA%3A32083","pseudaminate + CTP = CMP-pseudaminate + diphosphate"]],"b":[["carbohydrates/pseudaminate.yaml","pseudaminate"]]},{"id":"CHEBI:64258","l":"","na":4,"nb":1,"a":[["EC%3A1.14.13.154","erythromycin 12 hydroxylase"],["EC%3A2.1.1.254","erythromycin 3'-O-methyltransferase"],["RHEA%3A32647","erythromycin C + S-adenosyl-L-methionine = erythromycin A + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A32631","erythromycin D + NADPH + O2 + H(+) = erythromycin C + NADP(+) + H2O"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"CHEBI:79296","l":"indigoidine","na":4,"nb":1,"a":[["EC%3A4.3.3.9","indigoidine synthase"],["RHEA%3A81507","2 3-amino-1,5-dihydropyridine-2,6-dione + O2 = indigoidine + 2 H2O"],["RHEA%3A81499","2 FMN + 2 L-glutamine + 2 ATP + O2 = indigoidine + 2 FMNH2 + 2 AMP + 2 diphosphate + 2 H2O"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["alkaloids/indigoidine.yaml","indigoidine"]]},{"id":"CHEBI:9555","l":"tioguanine","na":4,"nb":1,"a":[["EC%3A2.1.1.67","thiopurine S-methyltransferase"],["RHEA%3A56580","6-thioguanine + S-adenosyl-L-methionine = 6-methylthioguanine + S-adenosyl-L-homocysteine + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.40","The Nucleobase/Ascorbate Transporter (NAT) or Nucleobase:Cation Symporter-2 (NCS2) Family"]],"b":[["alkaloids/tioguanine.yaml","tioguanine"]]},{"id":"NCBITaxon:101028","l":"Fusarium pseudograminearum","na":1,"nb":4,"a":[["TED%3AAF-A0A7S8DXW2-F1-model_v4_TED02","TED novel fold AF-A0A7S8DXW2-F1-model_v4_TED02"]],"b":[["alkaloids/8-oxo-fusatin.yaml","8-oxo-fusatin"],["alkaloids/8-oxo-isopentenyladenine.yaml","8-oxo-isopentenyladenine"],["alkaloids/fusatin.yaml","fusatin"],["alkaloids/fusatinic-acid.yaml","fusatinic acid"]]},{"id":"NCBITaxon:1038928","l":"Streptomyces xinghaiensis","na":1,"nb":4,"a":[["TED%3AAF-A0A3R7FP99-F1-model_v4_TED01","TED novel fold AF-A0A3R7FP99-F1-model_v4_TED01"]],"b":[["alkaloids/dixiamycin-a.yaml","dixiamycin A"],["alkaloids/xiamycin-a.yaml","xiamycin A"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"],["polyketides/oligomycin.yaml","oligomycin"]]},{"id":"NCBITaxon:112509","l":"Hordeum vulgare subsp. vulgare","na":1,"nb":4,"a":[["IDPO%3A0000004","pre-molten globule"]],"b":[["fatty_acids/diketones.yaml","β-Diketones"],["terpenoids/11-hydroxy-hordetriene.yaml","11-hydroxy-hordetriene"],["terpenoids/hordediene.yaml","hordediene"],["terpenoids/hordetriene.yaml","hordetriene"]]},{"id":"NCBITaxon:1311","l":"Streptococcus agalactiae","na":4,"nb":1,"a":[["Pfam%3APF19567","Capsular polysaccharide synthesis, CpsB/CapC"],["Pfam%3APF16828","GAG-binding domain on surface antigen"],["Pfam%3APF27244","GtfB middle domain"],["Pfam%3APF07373","CAMP factor (Cfa)"]],"b":[["carbohydrates/capsular-polysaccharide-3.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:1813822","l":"Xylariales sp. No.14919","na":4,"nb":1,"a":[["TED%3AAF-A0A1V1SW90-F1-model_v4_TED01","TED novel fold AF-A0A1V1SW90-F1-model_v4_TED01"],["TED%3AAF-A0A1V1T5K0-F1-model_v4_TED01","TED novel fold AF-A0A1V1T5K0-F1-model_v4_TED01"],["TED%3AAF-A0A1V1TFW0-F1-model_v4_TED03","TED novel fold AF-A0A1V1TFW0-F1-model_v4_TED03"],["TED%3AAF-A0A1V1THH5-F1-model_v4_TED03","TED novel fold AF-A0A1V1THH5-F1-model_v4_TED03"]],"b":[["polyketides/fr901512.yaml","FR901512"]]},{"id":"NCBITaxon:1944","l":"Streptomyces halstedii","na":1,"nb":4,"a":[["Pfam%3APF09277","Erythronolide synthase, docking"]],"b":[["alkaloids/rotihibin-a.yaml","rotihibin A"],["polyketides/halstoctacosanolide-a.yaml","halstoctacosanolide A"],["terpenoids/geosmin.yaml","(−)-geosmin"],["unclassified/vicenistatin.yaml","vicenistatin"]]},{"id":"NCBITaxon:1967","l":"Streptomyces kanamyceticus","na":1,"nb":4,"a":[["Pfam%3APF13579","Glycosyl transferase 4-like domain"]],"b":[["amino_acids_and_peptides/gausemycin-a.yaml","gausemycin A"],["amino_acids_and_peptides/gausemycin-b.yaml","gausemycin B"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/kanamycin-a.yaml","kanamycin A"]]},{"id":"NCBITaxon:2017","l":"Streptoalloteichus hindustanus","na":1,"nb":4,"a":[["Pfam%3APF19581","Glyoxalase superfamily protein"]],"b":[["amino_acids_and_peptides/tallysomycin-a.yaml","tallysomycin A"],["amino_acids_and_peptides/tallysomycin-b.yaml","tallysomycin B"],["carbohydrates/apramycin.yaml","apramycin"],["carbohydrates/tobramycin.yaml","tobramycin"]]},{"id":"NCBITaxon:2045","l":"Nocardioides simplex","na":4,"nb":1,"a":[["Pfam%3APF00775","Dioxygenase"],["Pfam%3APF04444","Catechol dioxygenase N terminus"],["PROSITE%3APS00083","Intradiol ring-cleavage dioxygenases signature"],["TED%3AAF-A0A4Y3NBY1-F1-model_v4_TED01","TED novel fold AF-A0A4Y3NBY1-F1-model_v4_TED01"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:226900","l":"Bacillus cereus (strain ATCC 14579 / DSM 31 / CCUG 7414 / JCM 2152 / NBRC 15305 / NCIMB 9373 / NCTC 2599 / NRRL B-3711)","na":4,"nb":1,"a":[["IDPO%3A0000060","self-assembly"],["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF14436","Bacterial EndoU nuclease"],["Pfam%3APF10803","Spore germination GerPB"]],"b":[["amino_acids_and_peptides/thiocillin-i.yaml","thiocillin I"]]},{"id":"NCBITaxon:267608","l":"Ralstonia nicotianae (strain ATCC BAA-1114 / GMI1000)","na":4,"nb":1,"a":[["Pfam%3APF13473","Cupredoxin-like domain"],["Pfam%3APF09483","Type III secretion protein (HpaP)"],["Pfam%3APF14897","EpsG family"],["Pfam%3APF03377","TAL effector repeat"]],"b":[["unclassified/micacocidin.yaml","micacocidin"]]},{"id":"NCBITaxon:269797","l":"Methanosarcina barkeri str. Fusaro","na":4,"nb":1,"a":[["Pfam%3APF27274","Coenzyme F430 synthetase CfbE, C-terminal domain"],["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"],["Pfam%3APF09505","Dimethylamine methyltransferase (Dimeth_PyL)"],["PROSITE%3APS00507","Nickel-dependent hydrogenases large subunit signature 1"]],"b":[["alkaloids/coenzyme-f430.yaml","coenzyme F430"]]},{"id":"NCBITaxon:28447","l":"Clavibacter michiganensis","na":4,"nb":1,"a":[["TED%3AAF-A0A251YC11-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A251YC11-F1-model_v4_TED02"],["TED%3AAF-A0A2S5VA57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5VA57-F1-model_v4_TED01"],["TED%3AAF-A0A2S5VJK2-F1-model_v4_TED01","TED novel fold AF-A0A2S5VJK2-F1-model_v4_TED01"],["TED%3AAF-A0A399NHQ8-F1-model_v4_TED01","TED novel fold AF-A0A399NHQ8-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/michiganin-a.yaml","michiganin A"]]},{"id":"NCBITaxon:28450","l":"Burkholderia pseudomallei","na":4,"nb":1,"a":[["Pfam%3APF18664","CdiA C-terminal tRNase domain"],["Pfam%3APF12106","Colicin E5 ribonuclease domain"],["Pfam%3APF11480","Colicin-E5 Imm protein"],["Pfam%3APF13332","Hemagglutinin repeat"]],"b":[["polyketides/malleilactone.yaml","malleilactone"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans Pd1222","na":4,"nb":1,"a":[["Pfam%3APF27518","Heme exporter protein C"],["Pfam%3APF22039","Imidazolonepropionase-like composite domain, bacteria"],["PROSITE%3APS01181","Ribosomal protein S21 signature"],["Pfam%3APF02239","Cytochrome D1 heme domain"]],"b":[["alkaloids/parabactin.yaml","parabactin"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":1,"nb":4,"a":[["TED%3AAF-A0A679J1E9-F1-model_v4_TED01","TED novel fold AF-A0A679J1E9-F1-model_v4_TED01"]],"b":[["unclassified/vacidobactin-a.yaml","vacidobactin A"],["unclassified/vacidobactin-b.yaml","vacidobactin B"],["unclassified/variobactin-a.yaml","variobactin A"],["unclassified/variobactin-b.yaml","variobactin B"]]},{"id":"NCBITaxon:40602","l":"Claviceps fusiformis","na":1,"nb":4,"a":[["Pfam%3APF06766","Fungal hydrophobin"]],"b":[["alkaloids/agroclavine-i.yaml","Agroclavine I"],["alkaloids/elymoclavine.yaml","elymoclavine"],["alkaloids/ergocryptine.yaml","α-ergocryptine"],["alkaloids/ergotamine.yaml","ergotamine"]]},{"id":"NCBITaxon:43662","l":"Pseudoalteromonas piscicida","na":1,"nb":4,"a":[["Pfam%3APF08329","Chitinase A, N-terminal domain"]],"b":[["alkaloids/2-3-4-5-tetrabromopyrrole.yaml","2,3,4,5-tetrabromopyrrole"],["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["alkaloids/pseudochelin-a.yaml","pseudochelin A"]]},{"id":"NCBITaxon:497965","l":"","na":4,"nb":1,"a":[["TED%3AAF-E0UJA0-F1-model_v4_TED01","TED highly-symmetric fold AF-E0UJA0-F1-model_v4_TED01"],["TED%3AAF-E0U6M3-F1-model_v4_TED03","TED novel fold AF-E0U6M3-F1-model_v4_TED03"],["TED%3AAF-E0UE39-F1-model_v4_TED02","TED novel fold AF-E0UE39-F1-model_v4_TED02"],["TED%3AAF-E0UM93-F1-model_v4_TED01","TED novel fold AF-E0UM93-F1-model_v4_TED01"]],"b":[["fatty_acids/1-heptadecene.yaml","1-heptadecene"]]},{"id":"NCBITaxon:5083","l":"Penicillium canescens","na":1,"nb":4,"a":[["Pfam%3APF09206","Alpha-L-arabinofuranosidase B, catalytic"]],"b":[["alkaloids/agroclavine-i.yaml","Agroclavine I"],["unclassified/outovirin-a.yaml","outovirin A"],["unclassified/outovirin-c.yaml","outovirin C"],["unclassified/penitrem-a.yaml","penitrem A"]]},{"id":"NCBITaxon:512","l":"Alcaligenes sp","na":4,"nb":1,"a":[["Pfam%3APF26354","N,N-dimethylformamidase alpha subunit"],["Pfam%3APF20254","N,N-dimethylformamidase beta subunit-like, C-terminal"],["Pfam%3APF11606","Family 31 carbohydrate binding protein"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"]],"b":[["polyketides/kalimantacin-a.yaml","kalimantacin A"]]},{"id":"NCBITaxon:5353","l":"Lentinula edodes","na":4,"nb":1,"a":[["Pfam%3APF21671","Protein CPL1-like"],["Pfam%3APF16850","Peptidase inhibitor I66"],["TED%3AAF-A0A1Q3EBL0-F1-model_v4_TED01","TED novel fold AF-A0A1Q3EBL0-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3ENK4-F1-model_v4_TED01","TED novel fold AF-A0A1Q3ENK4-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/lentinulin-a.yaml","lentinulin A"]]},{"id":"NCBITaxon:5516","l":"Fusarium culmorum","na":1,"nb":4,"a":[["TED%3AAF-A0A2T4GUL3-F1-model_v4_TED01","TED novel fold AF-A0A2T4GUL3-F1-model_v4_TED01"]],"b":[["polyketides/zearalenone.yaml","zearalenone"],["terpenoids/15-acetyldeoxynivalenol.yaml","15-acetyldeoxynivalenol"],["terpenoids/culmorin.yaml","culmorin"],["terpenoids/nivalenol.yaml","nivalenol"]]},{"id":"NCBITaxon:655819","l":"Beauveria bassiana ARSEF 2860","na":1,"nb":4,"a":[["Pfam%3APF22354","Hydrophobin"]],"b":[["polyketides/oosporein.yaml","oosporein"],["unclassified/beauverolide-ba.yaml","beauverolide Ba"],["unclassified/beauverolide-ca.yaml","beauverolide Ca"],["unclassified/beauverolide-ka.yaml","beauverolide Ka"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":4,"nb":1,"a":[["PROSITE%3APS00949","Autoinducer synthase family signature"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"],["PROSITE%3APS00607","cAMP phosphodiesterases class-II signature"],["TED%3AAF-A0A844NWZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A844NWZ1-F1-model_v4_TED02"]],"b":[["unclassified/ape-vf.yaml","APE Vf"]]},{"id":"NCBITaxon:76728","l":"Streptomyces vitaminophilus","na":1,"nb":4,"a":[["TED%3AAF-A0A0T6LRN4-F1-model_v4_TED01","TED novel fold AF-A0A0T6LRN4-F1-model_v4_TED01"]],"b":[["alkaloids/pyrrolomycin-a.yaml","pyrrolomycin A"],["alkaloids/pyrrolomycin-b.yaml","pyrrolomycin B"],["alkaloids/pyrrolomycin-c.yaml","pyrrolomycin C"],["alkaloids/pyrrolomycin-d.yaml","pyrrolomycin D"]]},{"id":"NCBITaxon:85698","l":"","na":4,"nb":1,"a":[["Pfam%3APF25975","CzcB C-terminal circularly permuted SH3-like domain"],["Pfam%3APF17524","Anti-sigma factor CnrY"],["Pfam%3APF10778","Halocarboxylic acid dehydrogenase DehI"],["TED%3AAF-A0A1R1JVF9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1R1JVF9-F1-model_v4_TED03"]],"b":[["amino_acids_and_peptides/alcaligin.yaml","alcaligin"]]},{"id":"NCBITaxon:933388","l":"Penicillium oxalicum (strain 114-2 / CGMCC 5302)","na":4,"nb":1,"a":[["Pfam%3APF27751","ATEG_07667 C-terminal domain"],["Pfam%3APF11402","Antifungal protein"],["Pfam%3APF12311","Protein of unknown function (DUF3632)"],["TED%3AAF-S8ATN5-F1-model_v4_TED01","TED highly-symmetric fold AF-S8ATN5-F1-model_v4_TED01"]],"b":[["unclassified/atpenin-b.yaml","atpenin B"]]},{"id":"NCBITaxon:93625","l":"Psilocybe cyanescens","na":4,"nb":1,"a":[["Pfam%3APF02958","Ecdysteroid kinase-like family"],["TED%3AAF-A0A409XLW7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A409XLW7-F1-model_v4_TED01"],["TED%3AAF-A0A409XPY8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A409XPY8-F1-model_v4_TED01"],["TED%3AAF-A0A409XED8-F1-model_v4_TED01","TED novel fold AF-A0A409XED8-F1-model_v4_TED01"]],"b":[["alkaloids/psilocybin.yaml","psilocybin"]]},{"id":"UniProt:P02701","l":"","na":4,"nb":1,"a":[["Pfam%3APF01382","Avidin family"],["PROSITE%3APS00577","Avidin-like domain signature"],["proteintraitsmech%3ABIOLIP_B1R","B1R-binding site"],["proteintraitsmech%3ABIOLIP_BTN","BTN-binding site"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"UniProt:P62593","l":"","na":4,"nb":1,"a":[["proteintraitsmech%3AMEROPS_CLEAVAGE_M50_004","RseP peptidase cleavage specificity"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["PROSITE%3APS00146","Beta-lactamase class-A active site"],["MCSA%3A2","beta-lactamase (Class A)"]],"b":[["amino_acids_and_peptides/clavulanic-acid-2.yaml","clavulanic acid"]]},{"id":"UniProt:Q00441","l":"","na":4,"nb":1,"a":[["EC%3A1.14.15.35","6-deoxyerythronolide B hydroxylase"],["RHEA%3A40299","6-deoxyerythronolide B + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = erythronolide B + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"],["MCSA%3A694","6-deoxyerythronolide B hydroxylase"],["proteintraitsmech%3ABIOLIP_9AP","9AP-binding site"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"UniProt:Q8TDV0","l":"","na":4,"nb":1,"a":[["ComplexPortal%3ACPX-16132","-"],["ComplexPortal%3ACPX-17565","-"],["ComplexPortal%3ACPX-24374","-"],["CDD%3Acd15002","7tmA_GPR151"]],"b":[["carbohydrates/tobramycin.yaml","tobramycin"]]},{"id":"UniProt:Q9Y243","l":"","na":4,"nb":1,"a":[["ComplexPortal%3ACPX-22352","-"],["ComplexPortal%3ACPX-24286","-"],["CDD%3Acd05593","STKc_PKB_gamma"],["InterPro%3AIPR034675","Protein kinase B gamma, catalytic domain"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"CHEBI:131914","l":"violacein","na":3,"nb":1,"a":[["RHEA%3A49720","protoviolaceinate + NADH + 2 O2 + 2 H(+) = violacein + CO2 + NAD(+) + 2 H2O"],["RHEA%3A49728","protoviolaceinate + NADPH + 2 O2 + 2 H(+) = violacein + CO2 + NADP(+) + 2 H2O"],["RHEA%3A49732","violaceinate + O2 + H(+) = violacein + CO2 + H2O"]],"b":[["alkaloids/violacein.yaml","violacein"]]},{"id":"CHEBI:133763","l":"YWA1","na":3,"nb":1,"a":[["RHEA%3A62652","6 malonyl-CoA + acetyl-CoA + 6 H(+) = naphtopyrone YWA1 + 6 CO2 + 7 CoA + H2O"],["RHEA%3A62700","naphtopyrone YWA1 + H2O = naphthalene-1,3,6,8-tetrol + acetoacetate + H(+)"],["RHEA%3A62680","naphtopyrone YWA1 = norrubrofusarin + H2O + H(+)"]],"b":[["polyketides/ywa1.yaml","YWA1"]]},{"id":"CHEBI:138046","l":"sesterfisherol","na":3,"nb":1,"a":[["EC%3A4.2.3.176","sesterfisherol synthase"],["RHEA%3A54068","(2E,6E,10E,14E)-geranylfarnesyl diphosphate + H2O = sesterfisherol + diphosphate"],["RHEA%3A78407","sesterfisherol + 3 reduced [NADPH--hemoprotein reductase] + 3 O2 = sesterfisherate + 3 oxidized [NADPH--hemoprotein reductase] + 4 H2O + 4 H(+)"]],"b":[["terpenoids/sesterfisherol.yaml","sesterfisherol"]]},{"id":"CHEBI:18393","l":"naphthalene-1,3,8-triol","na":3,"nb":1,"a":[["EC%3A4.2.1.94","scytalone dehydratase"],["RHEA%3A24396","scytalone = 1,3,8-trihydroxynaphthalene + H2O"],["MCSA%3A910","scytalone dehydratase"]],"b":[["polyketides/naphthalene-1-3-8-triol.yaml","naphthalene-1,3,8-triol"]]},{"id":"CHEBI:28915","l":"fosfomycin","na":3,"nb":1,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.5","The Pseudomonas OprP Porin (POP) Family"],["proteintraitsmech%3ABIOLIP_FCN","FCN-binding site"]],"b":[["unclassified/fosfomycin.yaml","fosfomycin"]]},{"id":"CHEBI:29472","l":"2-heptyl-3-hydroxy-4-quinolone","na":3,"nb":1,"a":[["EC%3A1.14.13.182","2-heptyl-3-hydroxy-4(1H)-quinolone synthase"],["RHEA%3A60352","2-heptyl-3-hydroxy-4(1H)-quinolone + O2 = N-octanoylanthranilate + CO + H(+)"],["RHEA%3A37871","2-heptyl-4(1H)-quinolone + NADH + O2 + H(+) = 2-heptyl-3-hydroxy-4(1H)-quinolone + NAD(+) + H2O"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"]]},{"id":"CHEBI:3139","l":"bleomycin A2","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A9.A.18","The Peptide Uptake Permease (PUP) Family"]],"b":[["amino_acids_and_peptides/bleomycin-a2.yaml","bleomycin A2"]]},{"id":"CHEBI:31432","l":"corynebactin","na":3,"nb":1,"a":[["RHEA%3A33811","3 2,3-dihydroxybenzoate + 3 L-threonine + 3 glycine + 6 ATP = corynebactin + 6 AMP + 6 diphosphate + 3 H2O + 3 H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"CHEBI:31550","l":"epothilone B","na":3,"nb":1,"a":[["RHEA%3A47808","epothilone D + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = epothilone B + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["proteintraitsmech%3ABIOLIP_EPB","EPB-binding site"]],"b":[["unclassified/epothilone-b.yaml","epothilone B"]]},{"id":"CHEBI:40968","l":"astaxanthin","na":3,"nb":1,"a":[["EC%3A1.14.99.64","zeaxanthin 4-ketolase"],["RHEA%3A56772","all-trans-adonixanthin + 2 AH2 + 2 O2 = all-trans-(3S,3'S)-astaxanthin + 2 A + 3 H2O"],["proteintraitsmech%3ABIOLIP_AXT","AXT-binding site"]],"b":[["terpenoids/astaxanthin.yaml","astaxanthin"]]},{"id":"CHEBI:46702","l":"(−)-geosmin","na":3,"nb":1,"a":[["EC%3A4.1.99.16","geosmin synthase"],["RHEA%3A30371","(1E,4S,5E,7R)-germacra-1(10),5-dien-11-ol + H2O = (-)-geosmin + acetone"],["RHEA%3A30455","(1S,4aS)-1,4a-dimethyl-1,2,3,4,4a,5,6,8a-octahydronaphthalene + H2O = (-)-geosmin"]],"b":[["terpenoids/geosmin.yaml","(−)-geosmin"]]},{"id":"CHEBI:48741","l":"β-phellandrene","na":3,"nb":1,"a":[["EC%3A4.2.3.51","beta-phellandrene synthase (neryl-diphosphate-cyclizing)"],["RHEA%3A25504","(2E)-geranyl diphosphate = beta-phellandrene + diphosphate"],["RHEA%3A27830","neryl diphosphate = beta-phellandrene + diphosphate"]],"b":[["terpenoids/phellandrene.yaml","β-phellandrene"]]},{"id":"CHEBI:50432","l":"putrebactin","na":3,"nb":1,"a":[["EC%3A6.3.2.63","putrebactin synthase"],["RHEA%3A79279","2 N-(3-carboxypropanoyl)-N-hydroxyputrescine + 2 ATP = putrebactin + 2 AMP + 2 diphosphate + 2 H(+)"],["RHEA%3A79287","pre-putrebactin + ATP = putrebactin + AMP + diphosphate + H(+)"]],"b":[["amino_acids_and_peptides/putrebactin.yaml","putrebactin"]]},{"id":"CHEBI:63468","l":"tirucalla-7,24-dien-3β-ol","na":3,"nb":1,"a":[["EC%3A5.4.99.56","tirucalladienol synthase"],["RHEA%3A31887","(S)-2,3-epoxysqualene = tirucalla-7,24-dien-3beta-ol"],["RHEA%3A80279","tirucalla-7,24-dien-3beta-ol + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = dihydroniloticin + 2 oxidized [NADPH--hemoprotein reductase] + 2 H2O + 2 H(+)"]],"b":[["terpenoids/tirucalla-7-24-dien-3-ol.yaml","tirucalla-7,24-dien-3β-ol"]]},{"id":"CHEBI:6472","l":"lincomycin","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_3QB","3QB-binding site"]],"b":[["carbohydrates/lincomycin.yaml","lincomycin"]]},{"id":"CHEBI:71609","l":"albonoursin","na":3,"nb":1,"a":[["EC%3A1.3.3.13","albonoursin synthase"],["RHEA%3A35531","cyclo(L-phenylalanyl-L-leucyl) + 2 O2 = albonoursin + 2 H2O2"],["RHEA%3A35539","cyclo[(Z)-alpha,beta-didehydrophenylalanyl-L-leucyl] + O2 = albonoursin + H2O2"]],"b":[["unclassified/albonoursin.yaml","albonoursin"]]},{"id":"CHEBI:7719","l":"ochratoxin A","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.60","The Organo Anion Transporter (OAT) Family"]],"b":[["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"]]},{"id":"CHEBI:77879","l":"elaiophylin","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["proteintraitsmech%3ABIOLIP_ELO","ELO-binding site"]],"b":[["polyketides/elaiophylin.yaml","elaiophylin"]]},{"id":"CHEBI:80729","l":"toxoflavin","na":3,"nb":1,"a":[["EC%3A2.1.1.349","toxoflavin synthase"],["RHEA%3A56852","reumycin + S-adenosyl-L-methionine = toxoflavin + S-adenosyl-L-homocysteine + H(+)"],["proteintraitsmech%3ABIOLIP_TOF","TOF-binding site"]],"b":[["alkaloids/toxoflavin.yaml","toxoflavin"]]},{"id":"CHEBI:9215","l":"spectinomycin","na":3,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["proteintraitsmech%3ABIOLIP_SCM","SCM-binding site"]],"b":[["carbohydrates/spectinomycin.yaml","spectinomycin"]]},{"id":"CHEBI:9470","l":"tetracenomycin C","na":3,"nb":1,"a":[["EC%3A1.14.13.200","tetracenomycin A2 monooxygenase-diooxygenase"],["RHEA%3A42824","tetracenomycin A2 + 2 NADH + 2 O2 + 2 H(+) = tetracenomycin C + 2 NAD(+) + H2O"],["RHEA%3A42820","tetracenomycin A2 + 2 NADPH + 2 O2 + 2 H(+) = tetracenomycin C + 2 NADP(+) + H2O"]],"b":[["polyketides/tetracenomycin-c.yaml","tetracenomycin C"]]},{"id":"NCBITaxon:10141","l":"Cavia porcellus","na":3,"nb":1,"a":[["IDPO%3A0000048","limited proteolysis display site"],["Pfam%3APF16681","Ig-like domain on T-cell surface glycoprotein CD3 epsilon chain"],["PROSITE%3APS00799","Granulins signature"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":3,"nb":1,"a":[["Pfam%3APF05258","Dna[CI] antecedent, DciA"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"],["TED%3AAF-Q0RZW9-F1-model_v4_TED03","TED highly-symmetric fold AF-Q0RZW9-F1-model_v4_TED03"]],"b":[["unclassified/rhodochelin.yaml","rhodochelin"]]},{"id":"NCBITaxon:1125972","l":"Amycolatopsis alba DSM 44262","na":3,"nb":1,"a":[["TED%3AAF-A0A229R958-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A229R958-F1-model_v4_TED01"],["TED%3AAF-A0A229REG9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A229REG9-F1-model_v4_TED01"],["TED%3AAF-A0A229RFD1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A229RFD1-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/albachelin.yaml","albachelin"]]},{"id":"NCBITaxon:1381753","l":"Moniliophthora roreri (strain MCA 2997)","na":3,"nb":1,"a":[["TED%3AAF-V2WPW3-F1-model_v4_TED02","TED highly-symmetric fold AF-V2WPW3-F1-model_v4_TED02"],["TED%3AAF-V2WSW5-F1-model_v4_TED05","TED highly-symmetric fold AF-V2WSW5-F1-model_v4_TED05"],["TED%3AAF-V2XCP9-F1-model_v4_TED03","TED highly-symmetric fold AF-V2XCP9-F1-model_v4_TED03"]],"b":[["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"]]},{"id":"NCBITaxon:1392250","l":"Aspergillus steynii IBT 23096","na":3,"nb":1,"a":[["TED%3AAF-A0A2I2FXR6-F1-model_v4_TED02","TED novel fold AF-A0A2I2FXR6-F1-model_v4_TED02"],["TED%3AAF-A0A2I2GJL8-F1-model_v4_TED01","TED novel fold AF-A0A2I2GJL8-F1-model_v4_TED01"],["TED%3AAF-A0A2I2GP63-F1-model_v4_TED02","TED novel fold AF-A0A2I2GP63-F1-model_v4_TED02"]],"b":[["alkaloids/ochrindole-a.yaml","ochrindole A"]]},{"id":"NCBITaxon:1406225","l":"Archangium violaceum Cb vi76","na":3,"nb":1,"a":[["TED%3AAF-A0A084STC5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A084STC5-F1-model_v4_TED01"],["TED%3AAF-A0A084SQF5-F1-model_v4_TED01","TED novel fold AF-A0A084SQF5-F1-model_v4_TED01"],["TED%3AAF-A0A084SQH8-F1-model_v4_TED01","TED novel fold AF-A0A084SQH8-F1-model_v4_TED01"]],"b":[["polyketides/gephyronic-acid.yaml","gephyronic acid"]]},{"id":"NCBITaxon:1756125","l":"Pyrenochaetopsis sp.","na":1,"nb":3,"a":[["Pfam%3APF22903","Diels-Alderase-like"]],"b":[["polyketides/wakodecalines-a.yaml","wakodecalines A"],["polyketides/wakodecalines-b.yaml","wakodecalines B"],["unclassified/phomasetin.yaml","phomasetin"]]},{"id":"NCBITaxon:1810919","l":"Aspergillus mulundensis","na":3,"nb":1,"a":[["TED%3AAF-A0A3D8QN50-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D8QN50-F1-model_v4_TED01"],["TED%3AAF-A0A3D8RF64-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D8RF64-F1-model_v4_TED01"],["TED%3AAF-A0A3D8R479-F1-model_v4_TED02","TED novel fold AF-A0A3D8R479-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/mulundocandin.yaml","mulundocandin"]]},{"id":"NCBITaxon:1857892","l":"Streptomyces sp. MP131-18","na":1,"nb":3,"a":[["TED%3AAF-A0A1V2RLA5-F1-model_v4_TED02","TED novel fold AF-A0A1V2RLA5-F1-model_v4_TED02"]],"b":[["polyketides/lagunapyrone-a.yaml","lagunapyrone A"],["polyketides/lagunapyrone-b.yaml","lagunapyrone B"],["polyketides/lagunapyrone-c.yaml","lagunapyrone C"]]},{"id":"NCBITaxon:1885","l":"Streptomyces actuosus","na":1,"nb":3,"a":[["Pfam%3APF17258","Family of unknown function (DUF5324)"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/nosiheptide-2.yaml","nosiheptide"]]},{"id":"NCBITaxon:1904","l":"Streptomyces cyaneus","na":1,"nb":3,"a":[["Pfam%3APF04673","Polyketide synthesis cyclase"]],"b":[["carbohydrates/curamycin.yaml","curamycin"],["polyketides/cardol.yaml","cardol"],["polyketides/cosmomycin-d.yaml","cosmomycin D"]]},{"id":"NCBITaxon:1932","l":"Streptomyces tendae","na":1,"nb":3,"a":[["Pfam%3APF01356","Alpha amylase inhibitor"]],"b":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"],["polyketides/lysolipin-i.yaml","lysolipin I"],["terpenoids/geosmin.yaml","(−)-geosmin"]]},{"id":"NCBITaxon:1935","l":"Streptomyces violaceoruber","na":1,"nb":3,"a":[["Pfam%3APF03559","NDP-hexose 2,3-dehydratase"]],"b":[["polyketides/granaticin.yaml","granaticin"],["polyketides/kendomycin.yaml","kendomycin"],["terpenoids/methylenomycin-a.yaml","methylenomycin A"]]},{"id":"NCBITaxon:1938","l":"Streptomyces viridochromogenes","na":1,"nb":3,"a":[["Pfam%3APF11599","RRNA methyltransferase AviRa"]],"b":[["amino_acids_and_peptides/glycinocin-a.yaml","glycinocin A"],["carbohydrates/avilamycin-a.yaml","avilamycin A"],["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"]]},{"id":"NCBITaxon:1950","l":"Streptomyces peucetius","na":1,"nb":3,"a":[["Pfam%3APF13732","ATP-binding protein DrrA1-3-like, C-terminal domain"]],"b":[["amino_acids_and_peptides/peucechelin.yaml","peucechelin"],["polyketides/daunorubicin.yaml","daunorubicin"],["polyketides/doxorubicin.yaml","doxorubicin"]]},{"id":"NCBITaxon:1956","l":"Streptomyces diastaticus","na":1,"nb":3,"a":[["TED%3AAF-A0A7K3Q596-F1-model_v4_TED01","TED novel fold AF-A0A7K3Q596-F1-model_v4_TED01"]],"b":[["alkaloids/diastaphenazine.yaml","diastaphenazine"],["alkaloids/izumiphenazine-c.yaml","izumiphenazine C"],["polyketides/rimocidin.yaml","rimocidin"]]},{"id":"NCBITaxon:216591","l":"Burkholderia cenocepacia J2315","na":1,"nb":3,"a":[["Pfam%3APF04199","Putative cyclase"]],"b":[["unclassified/ornibactin-c4.yaml","ornibactin C4"],["unclassified/ornibactin-c6.yaml","ornibactin C6"],["unclassified/ornibactin-c8.yaml","ornibactin C8"]]},{"id":"NCBITaxon:2572248","l":"Cryptosporiopsis sp. 8999","na":1,"nb":3,"a":[["Pfam%3APF08592","Anthrone oxygenase"]],"b":[["polyketides/cryptosporioptide-a.yaml","cryptosporioptide A"],["polyketides/cryptosporioptide-b.yaml","cryptosporioptide B"],["polyketides/cryptosporioptide-c.yaml","cryptosporioptide C"]]},{"id":"NCBITaxon:2747968","l":"Fusarium vanettenii","na":3,"nb":1,"a":[["Pfam%3APF01083","Cutinase"],["PROSITE%3APS00155","Cutinase, serine active site"],["PROSITE%3APS00931","Cutinase, aspartate and histidine active sites"]],"b":[["polyketides/bikaverin.yaml","bikaverin"]]},{"id":"NCBITaxon:312309","l":"Aliivibrio fischeri (strain ATCC 700601 / ES114)","na":3,"nb":1,"a":[["Pfam%3APF06610","L-alanine exporter"],["Pfam%3APF00765","Autoinducer synthase"],["PROSITE%3APS00949","Autoinducer synthase family signature"]],"b":[["unclassified/ape-vf.yaml","APE Vf"]]},{"id":"NCBITaxon:322159","l":"Streptococcus thermophilus (strain ATCC BAA-491 / LMD-9)","na":3,"nb":1,"a":[["Pfam%3APF18470","Cas9 alpha-helical lobe domain"],["Pfam%3APF18070","CRISPR-Cas9 PI domain"],["Pfam%3APF18061","CRISPR-Cas9 WED domain"]],"b":[["amino_acids_and_peptides/streptide.yaml","streptide"]]},{"id":"NCBITaxon:324833","l":"Streptomyces lasaliensis","na":1,"nb":3,"a":[["TED%3AAF-A0A4U5W597-F1-model_v4_TED01","TED novel fold AF-A0A4U5W597-F1-model_v4_TED01"]],"b":[["polyketides/lasalocid-2.yaml","lasalocid"],["polyketides/lasalocid.yaml","lasalocid"],["unclassified/echinomycin.yaml","echinomycin"]]},{"id":"NCBITaxon:33203","l":"Purpureocillium lilacinum","na":1,"nb":3,"a":[["TED%3AAF-A0A2U3ENJ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U3ENJ6-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/leucinostatin-a.yaml","leucinostatin A"],["amino_acids_and_peptides/leucinostatin-b.yaml","leucinostatin B"],["polyketides/patulin.yaml","patulin"]]},{"id":"NCBITaxon:347834","l":"Rhizobium etli (strain ATCC 51251 / DSM 11541 / JCM 21823 / NBRC 15573 / CFN 42)","na":3,"nb":1,"a":[["Pfam%3APF02632","BioY family"],["proteintraitsmech%3AELIFE109154_VbsL","Vicibactin acyl-hydroxyornithine epimerase family"],["PROSITE%3APS01349","Nodulation protein nodA signature"]],"b":[["amino_acids_and_peptides/vicibactin.yaml","vicibactin"]]},{"id":"NCBITaxon:362242","l":"","na":3,"nb":1,"a":[["Pfam%3APF02654","Cobalamin-5-phosphate synthase"],["Pfam%3APF02622","AlgH-like"],["Pfam%3APF01628","HrcA protein C terminal domain"]],"b":[["polyketides/mycolactone-b.yaml","mycolactone B"]]},{"id":"NCBITaxon:376686","l":"Flavobacterium johnsoniae (strain ATCC 17061 / DSM 2064 / JCM 8514 / BCRC 14874 / CCUG 350202 / NBRC 14942 / NCIMB 11054 / UW101)","na":3,"nb":1,"a":[["Pfam%3APF17957","Bacterial Ig domain"],["Pfam%3APF24850","Bacillithiol biosynthesis BshC, C-terminal coiled-coil domain"],["Pfam%3APF14109","GldH lipoprotein"]],"b":[["polyketides/flexirubin.yaml","flexirubin"]]},{"id":"NCBITaxon:381666","l":"Cupriavidus necator H16","na":3,"nb":1,"a":[["Pfam%3APF13473","Cupredoxin-like domain"],["Pfam%3APF10605","3HB-oligomer hydrolase (3HBOH)"],["Pfam%3APF21783","YNCE-like beta-propeller"]],"b":[["amino_acids_and_peptides/cupriachelin.yaml","cupriachelin"]]},{"id":"NCBITaxon:3879","l":"Medicago sativa","na":3,"nb":1,"a":[["Pfam%3APF02095","Extensin-like protein"],["Pfam%3APF02431","Chalcone-flavanone isomerase"],["PROSITE%3APS00441","Chalcone and stilbene synthases active site"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:393595","l":"Alcanivorax borkumensis SK2","na":1,"nb":3,"a":[["TED%3AAF-Q0VNH7-F1-model_v4_TED01","TED highly-symmetric fold AF-Q0VNH7-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/amphibactin-e.yaml","amphibactin E"],["amino_acids_and_peptides/amphibactin-h.yaml","amphibactin H"],["fatty_acids/amphibactin-i.yaml","amphibactin I"]]},{"id":"NCBITaxon:3988","l":"Ricinus communis","na":3,"nb":1,"a":[["Pfam%3APF10998","Protein of unknown function (DUF2838)"],["PROSITE%3APS00574","Fatty acid desaturases family 2 signature"],["PROSITE%3APS00275","Shiga/ricin ribosomal inactivating toxins active site signature"]],"b":[["terpenoids/casbene.yaml","casbene"]]},{"id":"NCBITaxon:4039","l":"Daucus carota","na":3,"nb":1,"a":[["PROSITE%3APS00451","Pathogenesis-related proteins Bet v I family signature"],["PROSITE%3APS00431","Small hydrophilic plant seed proteins signature"],["Pfam%3APF02987","Late embryogenesis abundant protein"]],"b":[["carbohydrates/adenine-arabinoside.yaml","adenine arabinoside"]]},{"id":"NCBITaxon:41067","l":"Aspergillus candidus","na":1,"nb":3,"a":[["TED%3AAF-A0A2I2EZ62-F1-model_v4_TED02","TED novel fold AF-A0A2I2EZ62-F1-model_v4_TED02"]],"b":[["alkaloids/aspcandine.yaml","aspcandine"],["polyketides/kojic-acid.yaml","kojic acid"],["shikimates_and_phenylpropanoids/chlorflavonin.yaml","chlorflavonin"]]},{"id":"NCBITaxon:41899","l":"Burkholderia plantarii","na":3,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_GrbD","GrbD-type graminine biosynthesis protein family"],["proteintraitsmech%3AELIFE109154_GrbE","GrbE-type graminine biosynthesis protein family"],["TED%3AAF-A0A0B6RMB1-F1-model_v4_TED01","TED novel fold AF-A0A0B6RMB1-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/plantaribactin.yaml","plantaribactin"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":3,"nb":1,"a":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF22277","EncFtn-like"],["TED%3AAF-D0LJ11-F1-model_v4_TED04","TED highly-symmetric fold AF-D0LJ11-F1-model_v4_TED04"]],"b":[["polyketides/haliamide.yaml","haliamide"]]},{"id":"NCBITaxon:53446","l":"Streptomyces cinnamoneus","na":1,"nb":3,"a":[["TED%3AAF-A0A2S6XSK0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S6XSK0-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/cinnamycin.yaml","cinnamycin"],["amino_acids_and_peptides/duramycin.yaml","duramycin"],["unclassified/bicozamycin.yaml","bicozamycin"]]},{"id":"NCBITaxon:645","l":"Aeromonas salmonicida","na":3,"nb":1,"a":[["Pfam%3APF28601","Heat shock protein 15, C-terminal region"],["Pfam%3APF12563","Hemolytic toxin N terminal"],["Pfam%3APF01203","Type II secretion system (T2SS), protein N"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:659352","l":"Streptomyces sp. SN-593","na":1,"nb":3,"a":[["TED%3AAF-A0A7U3V0R8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7U3V0R8-F1-model_v4_TED02"]],"b":[["polyketides/kinanthraquinone-b.yaml","kinanthraquinone B"],["polyketides/kinanthraquinone.yaml","kinanthraquinone"],["polyketides/reveromycin-a.yaml","reveromycin A"]]},{"id":"NCBITaxon:660122","l":"Fusarium vanettenii (strain ATCC MYA-4622 / CBS 123669 / FGSC 9596 / NRRL 45880 / 77-13-4)","na":3,"nb":1,"a":[["Pfam%3APF17660","Polyglycine hydrolase-like, structural repeat"],["Pfam%3APF26719","ATPase synthesis protein 25, C-terminal TPR repeats"],["TED%3AAF-C7YNY6-F1-model_v4_TED02","TED highly-symmetric fold AF-C7YNY6-F1-model_v4_TED02"]],"b":[["unclassified/sansalvamide.yaml","sansalvamide"]]},{"id":"NCBITaxon:66374","l":"Streptomyces nojiriensis","na":1,"nb":3,"a":[["TED%3AAF-A0A8A6HBY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8A6HBY6-F1-model_v4_TED01"]],"b":[["carbohydrates/streptothricin-d.yaml","streptothricin D"],["carbohydrates/streptothricin-e.yaml","streptothricin E"],["carbohydrates/streptothricin-f.yaml","streptothricin F"]]},{"id":"NCBITaxon:68239","l":"Streptomyces mirabilis strain P8-A","na":1,"nb":3,"a":[["TED%3AAF-A0A1I2Y4U7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2Y4U7-F1-model_v4_TED01"]],"b":[["alkaloids/azodyrecin-a.yaml","Azodyrecin A"],["alkaloids/azodyrecin-b.yaml","Azodyrecin B"],["alkaloids/azodyrecin-c.yaml","Azodyrecin C"]]},{"id":"NCBITaxon:715","l":"Actinobacillus pleuropneumoniae","na":3,"nb":1,"a":[["Pfam%3APF26002","AprE-like, beta-barrel domain"],["Pfam%3APF02794","RTX toxin acyltransferase family"],["PROSITE%3APS00543","HlyD family secretion proteins signature"]],"b":[["unclassified/capsular-polysaccharide.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:717774","l":"Marinomonas mediterranea MMB-1","na":1,"nb":3,"a":[["TED%3AAF-F2K4E6-F1-model_v4_TED01","TED novel fold AF-F2K4E6-F1-model_v4_TED01"]],"b":[["alkaloids/bistribromopyrrole.yaml","bistribromopyrrole"],["shikimates_and_phenylpropanoids/bromophene.yaml","bromophene"],["shikimates_and_phenylpropanoids/pentabromopseudilin.yaml","pentabromopseudilin"]]},{"id":"NCBITaxon:749414","l":"","na":3,"nb":1,"a":[["Pfam%3APF14509","Glycosyl-hydrolase 97 C-terminal, oligomerisation"],["Pfam%3APF14508","Glycosyl-hydrolase 97 N-terminal"],["Pfam%3APF10566","Glycoside hydrolase 97"]],"b":[["polyketides/nanchangmycin.yaml","nanchangmycin"]]},{"id":"NCBITaxon:889282","l":"Polyangium spumosum","na":3,"nb":1,"a":[["TED%3AAF-A0A6N7PQI9-F1-model_v4_TED01","TED novel fold AF-A0A6N7PQI9-F1-model_v4_TED01"],["TED%3AAF-A0A6N7PTT9-F1-model_v4_TED02","TED novel fold AF-A0A6N7PTT9-F1-model_v4_TED02"],["TED%3AAF-A0A6N7Q2E0-F1-model_v4_TED01","TED novel fold AF-A0A6N7Q2E0-F1-model_v4_TED01"]],"b":[["unclassified/antalid.yaml","antalid"]]},{"id":"NCBITaxon:95486","l":"Burkholderia cenocepacia","na":3,"nb":1,"a":[["TED%3AAF-A0A109EHZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A109EHZ6-F1-model_v4_TED01"],["TED%3AAF-A0A071M3L2-F1-model_v4_TED01","TED novel fold AF-A0A071M3L2-F1-model_v4_TED01"],["TED%3AAF-A0A088UYL8-F1-model_v4_TED01","TED novel fold AF-A0A088UYL8-F1-model_v4_TED01"]],"b":[["unclassified/ornibactin-c8.yaml","ornibactin C8"]]},{"id":"RHEA:32647","l":"","na":3,"nb":1,"a":[["EC%3A2.1.1.254","erythromycin 3'-O-methyltransferase"],["RHEA%3A32647","erythromycin C + S-adenosyl-L-methionine = erythromycin A + S-adenosyl-L-homocysteine + H(+)"],["GO%3A0102307","erythromycin 3'-o-methyltransferase activity"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"UniProt:P22629.","l":"","na":3,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_4IR","4IR-binding site"],["proteintraitsmech%3ABIOLIP_HL9","HL9-binding site"],["proteintraitsmech%3ABIOLIP_ZOE","ZOE-binding site"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"UniProt:P48635","l":"","na":3,"nb":1,"a":[["EC%3A1.14.13.154","erythromycin 12 hydroxylase"],["RHEA%3A32631","erythromycin D + NADPH + O2 + H(+) = erythromycin C + NADP(+) + H2O"],["proteintraitsmech%3ABIOLIP_KLN","KLN-binding site"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"UniProt:Q00975","l":"","na":3,"nb":1,"a":[["GO%3A1903235","positive regulation of calcium ion-dependent exocytosis of neurotransmitter"],["ELM%3AELME000451","LIG_PDZ_Wminus1_1"],["proteintraitsmech%3ABIOLIP_PT5","PT5-binding site"]],"b":[["alkaloids/odilorhabdin-noso-95c.yaml","odilorhabdin NOSO-95C"]]},{"id":"UniProt:Q16584","l":"","na":3,"nb":1,"a":[["CDD%3Acd14147","STKc_MLK3"],["CDD%3Acd12059","SH3_MLK1-3"],["InterPro%3AIPR035779","MLK1-3, SH3 domain"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"]]},{"id":"CHEBI:10106","l":"zearalenone","na":2,"nb":1,"a":[["RHEA%3A79255","zearalenone + H2O = hydrolyzed zearalenone + H(+)"],["proteintraitsmech%3ABIOLIP_ZER","ZER-binding site"]],"b":[["polyketides/zearalenone.yaml","zearalenone"]]},{"id":"CHEBI:132426","l":"chondrochloren A","na":2,"nb":1,"a":[["EC%3A4.1.1.129","1'-carboxy-chondrochloren decarboxylase"],["RHEA%3A81491","1'-carboxy-chondrochloren A + FAD + 2 H(+) = chondrochloren A + FADH2 + CO2"]],"b":[["polyketides/chondrochloren-a.yaml","chondrochloren A"]]},{"id":"CHEBI:134612","l":"staphyloferrin B","na":2,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_134612","requires staphyloferrin B"],["proteintraitsmech%3ABIOLIP_SE8","SE8-binding site"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"]]},{"id":"CHEBI:135511","l":"rebeccamycin","na":2,"nb":1,"a":[["EC%3A2.1.1.164","demethylrebeccamycin-D-glucose O-methyltransferase"],["RHEA%3A27353","4'-demethylrebeccamycin + S-adenosyl-L-methionine = rebeccamycin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["alkaloids/rebeccamycin.yaml","rebeccamycin"]]},{"id":"CHEBI:137562","l":"(+)-eremophilene","na":2,"nb":1,"a":[["EC%3A4.2.3.164","(+)-eremophilene synthase"],["RHEA%3A52804","(2E,6E)-farnesyl diphosphate = (+)-eremophilene + diphosphate"]],"b":[["terpenoids/eremophilene.yaml","(+)-eremophilene"]]},{"id":"CHEBI:138165","l":"(+)-(2S,3R,9R)-pristinol","na":2,"nb":1,"a":[["EC%3A4.2.3.182","pristinol synthase"],["RHEA%3A54372","(2E,6E)-farnesyl diphosphate + H2O = (+)-(2S,3R,9R)-pristinol + diphosphate"]],"b":[["terpenoids/2s-3r-9r-pristinol.yaml","(+)-(2S,3R,9R)-pristinol"]]},{"id":"CHEBI:139480","l":"(+)-O-methylkolavelool","na":2,"nb":1,"a":[["EC%3A2.1.1.347","(+)-O-methylkolavelool synthase"],["RHEA%3A55968","(+)-kolavelool + S-adenosyl-L-methionine = (+)-O-methylkolavelool + S-adenosyl-L-homocysteine + H(+)"]],"b":[["terpenoids/o-methylkolavelool.yaml","(+)-O-methylkolavelool"]]},{"id":"CHEBI:145066","l":"stemphyloxin II","na":2,"nb":1,"a":[["RHEA%3A61904","betaenone A + NADPH + O2 + H(+) = stemphyloxin II + NADP(+) + H2O"],["RHEA%3A62716","stemphyloxin I = stemphyloxin II"]],"b":[["polyketides/stemphyloxin-ii.yaml","stemphyloxin II"]]},{"id":"CHEBI:145070","l":"stemphyloxin I","na":2,"nb":1,"a":[["RHEA%3A62712","betaenone C + NADPH + O2 + H(+) = stemphyloxin I + NADP(+) + H2O"],["RHEA%3A62716","stemphyloxin I = stemphyloxin II"]],"b":[["polyketides/stemphyloxin-i.yaml","stemphyloxin I"]]},{"id":"CHEBI:146153","l":"ilicicolin B","na":2,"nb":1,"a":[["RHEA%3A63084","ilicicolin B + FADH2 + chloride + O2 = ilicicolin A + FAD + 2 H2O + H(+)"],["RHEA%3A63080","ilicicolinate B + AH2 + ATP = ilicicolin B + A + AMP + diphosphate"]],"b":[["unclassified/ilicicolin-b.yaml","ilicicolin B"]]},{"id":"CHEBI:155912","l":"aculene C","na":2,"nb":1,"a":[["RHEA%3A65108","aculene C + L-prolyl-[peptidyl-carrier protein] = aculene A + holo-[peptidyl-carrier protein]"],["RHEA%3A65112","aculene D + 2-oxoglutarate + O2 = aculene C + succinate + CO2 + H2O"]],"b":[["terpenoids/aculene-c.yaml","aculene C"]]},{"id":"CHEBI:15956","l":"biotin","na":2,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15956","requires biotin"],["proteintraitsmech%3ABIOLIP_BTN","BTN-binding site"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"CHEBI:16441","l":"linamarin","na":2,"nb":1,"a":[["EC%3A2.4.1.63","linamarin synthase"],["RHEA%3A20009","2-hydroxy-2-methylpropanenitrile + UDP-alpha-D-glucose = linamarin + UDP + H(+)"]],"b":[["amino_acids_and_peptides/linamarin.yaml","linamarin"]]},{"id":"CHEBI:17630","l":"kanamycin A","na":2,"nb":1,"a":[["MCSA%3A647","kanamycin nucleotidyltransferase"],["proteintraitsmech%3ABIOLIP_KAN","KAN-binding site"]],"b":[["carbohydrates/kanamycin-a.yaml","kanamycin A"]]},{"id":"CHEBI:17695","l":"casbene","na":2,"nb":1,"a":[["EC%3A4.2.3.8","casbene synthase"],["RHEA%3A14901","(2E,6E,10E)-geranylgeranyl diphosphate = casbene + diphosphate"]],"b":[["terpenoids/casbene.yaml","casbene"]]},{"id":"CHEBI:17939","l":"puromycin","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_PUY","PUY-binding site"]],"b":[["carbohydrates/puromycin.yaml","puromycin"]]},{"id":"CHEBI:2504","l":"aflatoxin B1","na":2,"nb":1,"a":[["EC%3A1.14.14.117","aflatoxin B synthase"],["RHEA%3A35759","8-O-methylsterigmatocystin + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = aflatoxin B1 + methanol + 2 oxidized [NADPH--hemoprotein reductase] + CO2 + H2O + 2 H(+)"]],"b":[["unclassified/aflatoxin-b1.yaml","aflatoxin B1"]]},{"id":"CHEBI:27826","l":"(S)-4-hydroxymandelonitrile β-D-glucoside","na":2,"nb":1,"a":[["EC%3A2.4.1.85","cyanohydrin beta-glucosyltransferase"],["RHEA%3A12853","(S)-4-hydroxymandelonitrile + UDP-alpha-D-glucose = dhurrin + UDP + H(+)"]],"b":[["amino_acids_and_peptides/s-4-hydroxymandelonitrile-d-glucoside.yaml","(S)-4-hydroxymandelonitrile β-D-glucoside"]]},{"id":"CHEBI:28283","l":"capsidiol","na":2,"nb":1,"a":[["EC%3A1.14.14.149","5-epiaristolochene 1,3-dihydroxylase"],["RHEA%3A28226","(+)-5-epi-aristolochene + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = capsidiol + 2 oxidized [NADPH--hemoprotein reductase] + 2 H2O + 2 H(+)"]],"b":[["terpenoids/capsidiol.yaml","capsidiol"]]},{"id":"CHEBI:29519","l":"","na":2,"nb":1,"a":[["EC%3A4.2.3.42","aphidicolan-16beta-ol synthase"],["RHEA%3A26213","9alpha-copalyl diphosphate + H2O = aphidicolan-16beta-ol + diphosphate"]],"b":[["terpenoids/aphidicolan-16-ol.yaml","aphidicolan-16β-ol"]]},{"id":"CHEBI:29673","l":"rifamycin SV","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]],"b":[["polyketides/rifamycin-sv.yaml","rifamycin SV"]]},{"id":"CHEBI:38229","l":"solanapyrone A","na":2,"nb":1,"a":[["EC%3A5.5.1.20","prosolanapyrone-III cycloisomerase"],["RHEA%3A31683","prosolanapyrone III = (-)-solanapyrone A"]],"b":[["polyketides/solanapyrone-a.yaml","solanapyrone A"]]},{"id":"CHEBI:42452","l":"formycin A","na":2,"nb":1,"a":[["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"],["proteintraitsmech%3ABIOLIP_FMC","FMC-binding site"]],"b":[["alkaloids/formycin-a.yaml","formycin A"]]},{"id":"CHEBI:48209","l":"aflatoxin B2","na":2,"nb":1,"a":[["EC%3A1.14.14.117","aflatoxin B synthase"],["RHEA%3A35763","8-O-methyldihydrosterigmatocystin + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = aflatoxin B2 + methanol + 2 oxidized [NADPH--hemoprotein reductase] + CO2 + H2O + 2 H(+)"]],"b":[["polyketides/aflatoxin-b2.yaml","aflatoxin B2"]]},{"id":"CHEBI:52317","l":"thalianol","na":2,"nb":1,"a":[["EC%3A5.4.99.31","thalianol synthase"],["RHEA%3A26160","(S)-2,3-epoxysqualene = thalianol"]],"b":[["terpenoids/thalianol.yaml","thalianol"]]},{"id":"CHEBI:61345","l":"chrysobactin","na":2,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_61345","requires chrysobactin"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["amino_acids_and_peptides/chrysobactin.yaml","chrysobactin"]]},{"id":"CHEBI:63465","l":"marneral","na":2,"nb":1,"a":[["EC%3A5.4.99.53","marneral synthase"],["RHEA%3A31875","(S)-2,3-epoxysqualene = marneral"]],"b":[["terpenoids/marneral.yaml","marneral"]]},{"id":"CHEBI:63702","l":"avermitilol","na":2,"nb":1,"a":[["EC%3A4.2.3.96","avermitilol synthase"],["RHEA%3A32023","(2E,6E)-farnesyl diphosphate + H2O = avermitilol + diphosphate"]],"b":[["terpenoids/avermitilol.yaml","avermitilol"]]},{"id":"CHEBI:63703","l":"(−)-δ-cadinene","na":2,"nb":1,"a":[["EC%3A4.2.3.97","(-)-delta-cadinene synthase"],["RHEA%3A32015","(2E,6E)-farnesyl diphosphate = (-)-delta-cadinene + diphosphate"]],"b":[["terpenoids/cadinene.yaml","(−)-δ-cadinene"]]},{"id":"CHEBI:63704","l":"(+)-Τ-muurolol","na":2,"nb":1,"a":[["EC%3A4.2.3.98","(+)-T-muurolol synthase"],["RHEA%3A32011","(2E,6E)-farnesyl diphosphate + H2O = (+)-T-muurolol + diphosphate"]],"b":[["terpenoids/muurolol.yaml","(+)-Τ-muurolol"]]},{"id":"CHEBI:64268","l":"","na":2,"nb":1,"a":[["EC%3A2.1.1.254","erythromycin 3'-O-methyltransferase"],["RHEA%3A32647","erythromycin C + S-adenosyl-L-methionine = erythromycin A + S-adenosyl-L-homocysteine + H(+)"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"CHEBI:6570","l":"lupeol","na":2,"nb":1,"a":[["EC%3A5.4.99.41","lupeol synthase"],["RHEA%3A31383","(S)-2,3-epoxysqualene = lupeol"]],"b":[["terpenoids/lupeol.yaml","lupeol"]]},{"id":"CHEBI:73237","l":"(−)-noscapine","na":2,"nb":1,"a":[["EC%3A1.1.1.415","noscapine synthase"],["RHEA%3A57404","narcotine hemiacetal + NAD(+) = noscapine + NADH + H(+)"]],"b":[["alkaloids/noscapine.yaml","(−)-noscapine"]]},{"id":"CHEBI:77772","l":"ilicicolin H","na":2,"nb":1,"a":[["RHEA%3A64568","3-[(2E,4E,8S,10E,12Z)-4,8-dimethyltetradeca-2,4,10,12-tetraenoyl]-4-hydroxy-5-(4-hydroxyphenyl)-1,2-dihydropyridin-2-one = ilicicolin H"],["RHEA%3A64564","8-epi-ilicicolin H = ilicicolin H"]],"b":[["alkaloids/ilicicolin-h.yaml","ilicicolin H"]]},{"id":"CHEBI:80049","l":"coelichelin","na":2,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_80049","requires coelichelin"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["amino_acids_and_peptides/coelichelin.yaml","coelichelin"]]},{"id":"CHEBI:82799","l":"(R)-nephthenol","na":2,"nb":1,"a":[["EC%3A4.2.3.149","nephthenol synthase"],["RHEA%3A42992","(2E,6E,10E)-geranylgeranyl diphosphate + H2O = (R)-nephthenol + diphosphate"]],"b":[["terpenoids/r-nephthenol.yaml","(R)-nephthenol"]]},{"id":"CHEBI:84711","l":"staphyloferrin A","na":2,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_84711","requires staphyloferrin A"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["unclassified/staphyloferrin-a.yaml","staphyloferrin A"]]},{"id":"CHEBI:86012","l":"oxetanocin A","na":2,"nb":1,"a":[["EC%3A3.1.3.112","4'-phosphooxetanocin A phosphatase"],["RHEA%3A81367","4'-phosphooxetanocin A + H2O = oxetanocin A + phosphate"]],"b":[["carbohydrates/oxetanocin-a.yaml","oxetanocin A"]]},{"id":"NCBITaxon:105351","l":"Aspergillus awamori","na":2,"nb":1,"a":[["PROSITE%3APS00820","Glucoamylase active site region signature"],["TED%3AAF-A0A401KM36-F1-model_v4_TED03","TED novel fold AF-A0A401KM36-F1-model_v4_TED03"]],"b":[["alkaloids/aspergillin-pz.yaml","aspergillin PZ"]]},{"id":"NCBITaxon:105696","l":"Epicoccum nigrum","na":1,"nb":2,"a":[["TED%3AAF-A0A1Y2LQ80-F1-model_v4_TED02","TED novel fold AF-A0A1Y2LQ80-F1-model_v4_TED02"]],"b":[["polyketides/epipyrone-a.yaml","epipyrone A"],["terpenoids/carotene.yaml","β-carotene"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":1,"nb":2,"a":[["TED%3AAF-A0A367PA30-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A367PA30-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/cupriachelin.yaml","cupriachelin"],["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"]]},{"id":"NCBITaxon:1214568","l":"Diaporthe amygdali","na":1,"nb":2,"a":[["Pfam%3APF05704","Capsular polysaccharide synthesis protein"]],"b":[["terpenoids/5-9-10-labda-8-20-13-dien-15-yl-diphosphate.yaml","5α,9α,10β-labda-8(20),13-dien-15-yl diphosphate"],["terpenoids/phyllocladan-16-ol.yaml","phyllocladan-16α-ol"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":2,"nb":1,"a":[["Pfam%3APF22538","Hexaprenyl diphosphate synthase, small subunit"],["PROSITE%3APS01066","Undecaprenyl pyrophosphate synthase family signature"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:1278073","l":"Myxococcus stipitatus (strain DSM 14675 / JCM 12634 / Mx s8)","na":2,"nb":1,"a":[["TED%3AAF-L7U5Z3-F1-model_v4_TED02","TED novel fold AF-L7U5Z3-F1-model_v4_TED02"],["TED%3AAF-L7UEI7-F1-model_v4_TED03","TED novel fold AF-L7UEI7-F1-model_v4_TED03"]],"b":[["polyketides/phenalamide-a2.yaml","phenalamide A2"]]},{"id":"NCBITaxon:1288362","l":"Actinoplanes sp. ATCC 53533","na":2,"nb":1,"a":[["TED%3AAF-A0A428XH31-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A428XH31-F1-model_v4_TED01"],["TED%3AAF-A0A428XQY1-F1-model_v4_TED01","TED novel fold AF-A0A428XQY1-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/uk-68-597.yaml","UK-68,597"]]},{"id":"NCBITaxon:1353533","l":"Pseudoalteromonas luteoviolacea 2ta16","na":2,"nb":1,"a":[["TED%3AAF-V4HNX8-F1-model_v4_TED01","TED novel fold AF-V4HNX8-F1-model_v4_TED01"],["TED%3AAF-V4JDU9-F1-model_v4_TED01","TED novel fold AF-V4JDU9-F1-model_v4_TED01"]],"b":[["shikimates_and_phenylpropanoids/pentabromopseudilin.yaml","pentabromopseudilin"]]},{"id":"NCBITaxon:1392248","l":"Aspergillus campestris (strain IBT 28561)","na":2,"nb":1,"a":[["Pfam%3APF11954","Domain of unknown function (DUF3471)"],["TED%3AAF-A0A2I1D498-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I1D498-F1-model_v4_TED01"]],"b":[["shikimates_and_phenylpropanoids/chlorflavonin.yaml","chlorflavonin"]]},{"id":"NCBITaxon:1449976","l":"Kutzneria albida DSM 43870","na":1,"nb":2,"a":[["TED%3AAF-W5WK35-F1-model_v4_TED01","TED novel fold AF-W5WK35-F1-model_v4_TED01"]],"b":[["carbohydrates/huimycin.yaml","huimycin"],["unclassified/aculeximycin.yaml","aculeximycin"]]},{"id":"NCBITaxon:1450533","l":"Aspergillus niger CBS 101883","na":1,"nb":2,"a":[["TED%3AAF-A0A319AKL5-F1-model_v4_TED01","TED novel fold AF-A0A319AKL5-F1-model_v4_TED01"]],"b":[["polyketides/campyrone-b.yaml","campyrone B"],["polyketides/pyrophen.yaml","pyrophen"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":2,"nb":1,"a":[["PROSITE%3APS01120","Urease nickel ligands signature"],["PROSITE%3APS00145","Urease active site"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:148305","l":"Pyricularia grisea","na":1,"nb":2,"a":[["TED%3AAF-A0A6P8AZV3-F1-model_v4_TED01","TED novel fold AF-A0A6P8AZV3-F1-model_v4_TED01"]],"b":[["alkaloids/pyrichalasin-h.yaml","pyrichalasin H"],["polyketides/terrestric-acid.yaml","terrestric acid"]]},{"id":"NCBITaxon:1519471","l":"Streptomyces sp. NRRL S-4","na":1,"nb":2,"a":[["TED%3AAF-A0A0N0YGV9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0N0YGV9-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/thiostreptamide-s4.yaml","thiostreptamide S4"],["polyketides/venturicidin-a.yaml","venturicidin A"]]},{"id":"NCBITaxon:161398","l":"Pseudoalteromonas phenolica","na":2,"nb":1,"a":[["TED%3AAF-A0A4Q7IPD1-F1-model_v4_TED01","TED novel fold AF-A0A4Q7IPD1-F1-model_v4_TED01"],["TED%3AAF-A0A4Q7IRU1-F1-model_v4_TED01","TED novel fold AF-A0A4Q7IRU1-F1-model_v4_TED01"]],"b":[["shikimates_and_phenylpropanoids/bromophene.yaml","bromophene"]]},{"id":"NCBITaxon:164546","l":"Cupriavidus taiwanensis","na":2,"nb":1,"a":[["TED%3AAF-A0A375CFL3-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A375CFL3-F1-model_v4_TED04"],["TED%3AAF-A0A375EJW3-F1-model_v4_TED03","TED novel fold AF-A0A375EJW3-F1-model_v4_TED03"]],"b":[["amino_acids_and_peptides/taiwachelin.yaml","taiwachelin"]]},{"id":"NCBITaxon:1654360","l":"Photobacterium galatheae","na":2,"nb":1,"a":[["TED%3AAF-A0A066RSN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A066RSN6-F1-model_v4_TED01"],["TED%3AAF-A0A066RLQ8-F1-model_v4_TED01","TED novel fold AF-A0A066RLQ8-F1-model_v4_TED01"]],"b":[["alkaloids/holomycin.yaml","holomycin"]]},{"id":"NCBITaxon:179408","l":"Oscillatoria nigro-viridis PCC 7112","na":2,"nb":1,"a":[["TED%3AAF-K9VAQ4-F1-model_v4_TED02","TED highly-symmetric fold AF-K9VAQ4-F1-model_v4_TED02"],["TED%3AAF-K9VBA8-F1-model_v4_TED02","TED novel fold AF-K9VBA8-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/viridisamide-a.yaml","viridisamide A"]]},{"id":"NCBITaxon:182096","l":"Aspergillus chevalieri","na":1,"nb":2,"a":[["TED%3AAF-A0A7R7VIB2-F1-model_v4_TED01","TED novel fold AF-A0A7R7VIB2-F1-model_v4_TED01"]],"b":[["polyketides/flavoglaucin.yaml","flavoglaucin"],["polyketides/sterigmatocystin.yaml","sterigmatocystin"]]},{"id":"NCBITaxon:1883078","l":"Dentipellis sp. KUC8613","na":2,"nb":1,"a":[["TED%3AAF-A0A5B1QTZ2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A5B1QTZ2-F1-model_v4_TED03"],["TED%3AAF-A0A5B1QFU0-F1-model_v4_TED02","TED novel fold AF-A0A5B1QFU0-F1-model_v4_TED02"]],"b":[["terpenoids/cyatha-3-12-diene.yaml","(-)-Cyatha-3,12-diene"]]},{"id":"NCBITaxon:1896","l":"Streptomyces bikiniensis","na":1,"nb":2,"a":[["Pfam%3APF00908","dTDP-4-dehydrorhamnose 3,5-epimerase"]],"b":[["carbohydrates/streptomycin.yaml","streptomycin"],["polyketides/chalcomycin-a.yaml","chalcomycin A"]]},{"id":"NCBITaxon:1921","l":"Streptomyces olivaceoviridis","na":1,"nb":2,"a":[["Pfam%3APF01356","Alpha amylase inhibitor"]],"b":[["polyketides/resistoflavine.yaml","resistoflavine"],["polyketides/resistomycin.yaml","resistomycin"]]},{"id":"NCBITaxon:1933","l":"","na":2,"nb":1,"a":[["Pfam%3APF16861","Carbamoyltransferase C-terminus"],["Pfam%3APF02543","Carbamoyltransferase N-terminus"]],"b":[["carbohydrates/tobramycin.yaml","tobramycin"]]},{"id":"NCBITaxon:205918","l":"Pseudomonas syringae pv. syringae B728a","na":1,"nb":2,"a":[["Pfam%3APF15457","Type III T3SS secreted effector HopW1-1/HopPmaA"]],"b":[["alkaloids/secimide.yaml","secimide"],["unclassified/syringomycin.yaml","syringomycin"]]},{"id":"NCBITaxon:216595","l":"","na":2,"nb":1,"a":[["Pfam%3APF04996","Succinylarginine dihydrolase"],["TED%3AAF-A0A0G4E5V4-F1-model_v4_TED01","TED novel fold AF-A0A0G4E5V4-F1-model_v4_TED01"]],"b":[["unclassified/viscosin.yaml","viscosin"]]},{"id":"NCBITaxon:229535","l":"Penicillium nordicum","na":2,"nb":1,"a":[["TED%3AAF-A0A0M8NW73-F1-model_v4_TED02","TED novel fold AF-A0A0M8NW73-F1-model_v4_TED02"],["TED%3AAF-A0A0N0RXF0-F1-model_v4_TED02","TED novel fold AF-A0A0N0RXF0-F1-model_v4_TED02"]],"b":[["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"]]},{"id":"NCBITaxon:230091","l":"Micromonospora endolithica","na":1,"nb":2,"a":[["TED%3AAF-A0A3A9ZCA3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3A9ZCA3-F1-model_v4_TED02"]],"b":[["polyketides/loseolamycin-a1.yaml","loseolamycin A1"],["polyketides/loseolamycin-a2.yaml","loseolamycin A2"]]},{"id":"NCBITaxon:234621","l":"Rhodococcus erythropolis PR4","na":1,"nb":2,"a":[["TED%3AAF-C0ZLI2-F1-model_v4_TED01","TED novel fold AF-C0ZLI2-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/heterobactin-a.yaml","heterobactin A"],["amino_acids_and_peptides/heterobactin-s2.yaml","heterobactin S2"]]},{"id":"NCBITaxon:237631","l":"Ustilago maydis (strain 521 / FGSC 9021)","na":2,"nb":1,"a":[["TED%3AAF-A0A0D1E1G8-F1-model_v4_TED01","TED novel fold AF-A0A0D1E1G8-F1-model_v4_TED01"],["TED%3AAF-A0A0D1E4C0-F1-model_v4_TED02","TED novel fold AF-A0A0D1E4C0-F1-model_v4_TED02"]],"b":[["fatty_acids/ustilagic-acid.yaml","ustilagic acid"]]},{"id":"NCBITaxon:2607326","l":"Streptomonospora sp. PA3","na":2,"nb":1,"a":[["TED%3AAF-A0A6N8GAL7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8GAL7-F1-model_v4_TED01"],["TED%3AAF-A0A6N8GG78-F1-model_v4_TED01","TED novel fold AF-A0A6N8GG78-F1-model_v4_TED01"]],"b":[["polyketides/persiamycin-a.yaml","persiamycin A"]]},{"id":"NCBITaxon:264445","l":"Streptomyces hygroscopicus subsp. limoneus","na":1,"nb":2,"a":[["TED%3AAF-A0A0S2PAJ8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0S2PAJ8-F1-model_v4_TED03"]],"b":[["carbohydrates/validamycin-a-2.yaml","validamycin A"],["carbohydrates/validamycin-a.yaml","validamycin A"]]},{"id":"NCBITaxon:272123","l":"Anabaena cylindrica (strain ATCC 27899 / PCC 7122)","na":2,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_FbnM","FbnM-type Dmaq biosynthesis peroxidase subunit family"],["TED%3AAF-K9ZFU9-F1-model_v4_TED01","TED highly-symmetric fold AF-K9ZFU9-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/anachelin.yaml","anachelin"]]},{"id":"NCBITaxon:272559","l":"Bacteroides fragilis (strain ATCC 25285 / DSM 2151 / CCUG 4856 / JCM 11019 / LMG 10263 / NCTC 9343 / Onslow / VPI 2553 / EN-2)","na":2,"nb":1,"a":[["Pfam%3APF16355","Domain of unknown function (DUF4982)"],["Pfam%3APF14229","Domain of unknown function (DUF4332)"]],"b":[["fatty_acids/galactosylceramide.yaml","α-galactosylceramide"]]},{"id":"NCBITaxon:316274","l":"Herpetosiphon aurantiacus DSM 785","na":1,"nb":2,"a":[["TED%3AAF-A9AZN6-F1-model_v4_TED02","TED highly-symmetric fold AF-A9AZN6-F1-model_v4_TED02"]],"b":[["alkaloids/auriculamide.yaml","auriculamide"],["terpenoids/o-methylkolavelool.yaml","(+)-O-methylkolavelool"]]},{"id":"NCBITaxon:318","l":"Pseudomonas savastanoi pv. glycinea","na":2,"nb":1,"a":[["Pfam%3APF05394","Avirulence protein"],["TED%3AAF-A0A3M5VJX5-F1-model_v4_TED01","TED novel fold AF-A0A3M5VJX5-F1-model_v4_TED01"]],"b":[["polyketides/coronatine.yaml","coronatine"]]},{"id":"NCBITaxon:318829","l":"Magnaporthe oryzae","na":2,"nb":1,"a":[["TED%3AAF-A0A4P7NAU2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P7NAU2-F1-model_v4_TED01"],["TED%3AAF-A0A4P7MZB7-F1-model_v4_TED02","TED novel fold AF-A0A4P7MZB7-F1-model_v4_TED02"]],"b":[["polyketides/nectriapyrone.yaml","nectriapyrone"]]},{"id":"NCBITaxon:322710","l":"","na":2,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_Orn_monoox","Metallophore-associated ornithine N5-monooxygenase family"],["proteintraitsmech%3AELIFE109154_PvdP","Pyoverdine chromophore maturation tyrosinase family"]],"b":[["amino_acids_and_peptides/azotobactin-d.yaml","azotobactin D"]]},{"id":"NCBITaxon:333849","l":"Enterococcus faecium (strain ATCC BAA-472 / TX0016 / DO)","na":2,"nb":1,"a":[["Pfam%3APF08546","Ketopantoate reductase PanE/ApbA C terminal"],["Pfam%3APF02558","Ketopantoate reductase PanE/ApbA"]],"b":[["amino_acids_and_peptides/enterocin-a.yaml","enterocin A"]]},{"id":"NCBITaxon:338584","l":"Polymorphospora rubra","na":2,"nb":1,"a":[["TED%3AAF-A0A810NDK9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A810NDK9-F1-model_v4_TED01"],["TED%3AAF-A0A810N2K6-F1-model_v4_TED01","TED novel fold AF-A0A810N2K6-F1-model_v4_TED01"]],"b":[["terpenoids/trehangelin.yaml","trehangelin"]]},{"id":"NCBITaxon:33899","l":"Streptomyces galilaeus","na":1,"nb":2,"a":[["Pfam%3APF21036","Erythromycin biosynthesis protein CIII-like, N-terminal domain"]],"b":[["polyketides/aclacinomycin.yaml","aclacinomycin"],["polyketides/cinerubin-b.yaml","cinerubin B"]]},{"id":"NCBITaxon:339670","l":"Burkholderia ambifaria AMMD","na":1,"nb":2,"a":[["Pfam%3APF11004","3-deoxy-D-manno-oct-2-ulosonic acid (Kdo) hydroxylase"]],"b":[["alkaloids/cepaciachelin.yaml","cepaciachelin"],["polyketides/enacyloxin-iia.yaml","enacyloxin IIa"]]},{"id":"NCBITaxon:348901","l":"Cercospora zeina","na":2,"nb":1,"a":[["TED%3AAF-A0A2I0RIM7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I0RIM7-F1-model_v4_TED01"],["TED%3AAF-A0A2I0RWG4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I0RWG4-F1-model_v4_TED01"]],"b":[["polyketides/cercosporin-2.yaml","cercosporin"]]},{"id":"NCBITaxon:349521","l":"","na":2,"nb":1,"a":[["TED%3AAF-Q2SFS2-F1-model_v4_TED01","TED novel fold AF-Q2SFS2-F1-model_v4_TED01"],["TED%3AAF-Q2SI43-F1-model_v4_TED03","TED novel fold AF-Q2SI43-F1-model_v4_TED03"]],"b":[["alkaloids/prodigiosin-2.yaml","prodigiosin"]]},{"id":"NCBITaxon:36746","l":"Pseudomonas cichorii","na":1,"nb":2,"a":[["TED%3AAF-A0A3M4VH83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M4VH83-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/cichofactin-a.yaml","cichofactin A"],["amino_acids_and_peptides/cichofactin-b.yaml","cichofactin B"]]},{"id":"NCBITaxon:3755","l":"Prunus dulcis","na":2,"nb":1,"a":[["PROSITE%3APS00305","11-S plant seed storage proteins signature"],["TED%3AAF-A0A5E4FP94-F1-model_v4_TED01","TED novel fold AF-A0A5E4FP94-F1-model_v4_TED01"]],"b":[["shikimates_and_phenylpropanoids/4-hydroxy-3-prenylbenzoic-acid.yaml","4-hydroxy-3-prenylbenzoic acid"]]},{"id":"NCBITaxon:377629","l":"Teredinibacter turnerae T7901","na":1,"nb":2,"a":[["TED%3AAF-C5BKS7-F1-model_v4_TED02","TED novel fold AF-C5BKS7-F1-model_v4_TED02"]],"b":[["polyketides/tartrolon-d.yaml","tartrolon D"],["polyketides/tartrolon-e.yaml","tartrolon E"]]},{"id":"NCBITaxon:38300","l":"Streptomyces pristinaespiralis","na":1,"nb":2,"a":[["Pfam%3APF12323","Helix-turn-helix domain"]],"b":[["amino_acids_and_peptides/pristinin-a3.yaml","pristinin A3"],["terpenoids/2s-3r-9r-pristinol.yaml","(+)-(2S,3R,9R)-pristinol"]]},{"id":"NCBITaxon:38313","l":"Shewanella algae","na":2,"nb":1,"a":[["TED%3AAF-A0A1S2T8W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S2T8W3-F1-model_v4_TED01"],["TED%3AAF-A0A8A5EFG1-F1-model_v4_TED02","TED novel fold AF-A0A8A5EFG1-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/avaroferrin.yaml","avaroferrin"]]},{"id":"NCBITaxon:413071","l":"Trichoderma virens Gv29-8","na":1,"nb":2,"a":[["Pfam%3APF07249","Cerato-platanin"]],"b":[["polyketides/trichoxide.yaml","trichoxide"],["unclassified/gliovirin.yaml","gliovirin"]]},{"id":"NCBITaxon:42881","l":"Streptomyces chromofuscus","na":1,"nb":2,"a":[["TED%3AAF-A0A7M2T2Z7-F1-model_v4_TED01","TED novel fold AF-A0A7M2T2Z7-F1-model_v4_TED01"]],"b":[["alkaloids/indigoidine.yaml","indigoidine"],["polyketides/herboxidiene.yaml","herboxidiene"]]},{"id":"NCBITaxon:436515","l":"Variovorax boronicumulans","na":1,"nb":2,"a":[["TED%3AAF-A0A250DMB0-F1-model_v4_TED01","TED novel fold AF-A0A250DMB0-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/variochelin-a.yaml","variochelin A"],["amino_acids_and_peptides/variochelin-b.yaml","variochelin B"]]},{"id":"NCBITaxon:441959","l":"Talaromyces stipitatus ATCC 10500","na":1,"nb":2,"a":[["Pfam%3APF26719","ATPase synthesis protein 25, C-terminal TPR repeats"]],"b":[["polyketides/duclauxin.yaml","duclauxin"],["shikimates_and_phenylpropanoids/stipitatic-acid.yaml","stipitatic acid"]]},{"id":"NCBITaxon:446","l":"Legionella pneumophila","na":2,"nb":1,"a":[["Pfam%3APF14860","DrrA phosphatidylinositol 4-phosphate binding domain"],["TED%3AAF-A0A822WCM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A822WCM6-F1-model_v4_TED01"]],"b":[["fatty_acids/lipopolysaccharide.yaml","lipopolysaccharide"]]},{"id":"NCBITaxon:45151","l":"Pyrenophora tritici-repentis","na":2,"nb":1,"a":[["TED%3AAF-A0A2W1ECP7-F1-model_v4_TED01","TED novel fold AF-A0A2W1ECP7-F1-model_v4_TED01"],["TED%3AAF-A0A834SF78-F1-model_v4_TED01","TED novel fold AF-A0A834SF78-F1-model_v4_TED01"]],"b":[["unclassified/triticone-b.yaml","triticone B"]]},{"id":"NCBITaxon:4558","l":"Sorghum bicolor","na":1,"nb":2,"a":[["TED%3AAF-A0A1W0W5T3-F1-model_v4_TED02","TED novel fold AF-A0A1W0W5T3-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/s-4-hydroxymandelonitrile-d-glucoside.yaml","(S)-4-hydroxymandelonitrile β-D-glucoside"],["shikimates_and_phenylpropanoids/alternariol.yaml","alternariol"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":2,"nb":1,"a":[["PROSITE%3APS00820","Glucoamylase active site region signature"],["TED%3AAF-A0A7I9G6Y3-F1-model_v4_TED02","TED novel fold AF-A0A7I9G6Y3-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":2,"nb":1,"a":[["Pfam%3APF07833","Copper amine oxidase N-terminal domain"],["TED%3AAF-A0A447L715-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A447L715-F1-model_v4_TED02"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:578457","l":"Serpula lacrymans var. lacrymans (strain S7.9)","na":2,"nb":1,"a":[["TED%3AAF-F8NT94-F1-model_v4_TED01","TED highly-symmetric fold AF-F8NT94-F1-model_v4_TED01"],["TED%3AAF-F8NMD8-F1-model_v4_TED01","TED novel fold AF-F8NMD8-F1-model_v4_TED01"]],"b":[["terpenoids/ent-kauren-16alpha-ol.yaml","ent-kauren-16alpha-ol"]]},{"id":"NCBITaxon:58291","l":"Rhizopus microsporus","na":2,"nb":1,"a":[["TED%3AAF-A0A1X0RNA5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1X0RNA5-F1-model_v4_TED03"],["TED%3AAF-A0A1X0S5N4-F1-model_v4_TED01","TED novel fold AF-A0A1X0S5N4-F1-model_v4_TED01"]],"b":[["unclassified/rhizoxin-a.yaml","rhizoxin A"]]},{"id":"NCBITaxon:587753","l":"Pseudomonas chlororaphis","na":2,"nb":1,"a":[["TED%3AAF-A0A8A9Z2C4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A8A9Z2C4-F1-model_v4_TED03"],["TED%3AAF-A0A0A6DEM6-F1-model_v4_TED01","TED novel fold AF-A0A0A6DEM6-F1-model_v4_TED01"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"NCBITaxon:60894","l":"Saccharopolyspora spinosa","na":1,"nb":2,"a":[["Pfam%3APF03559","NDP-hexose 2,3-dehydratase"]],"b":[["polyketides/a83543a.yaml","A83543A"],["polyketides/spinosyn-d.yaml","spinosyn D"]]},{"id":"NCBITaxon:62101","l":"Candidatus Endobugula sertula","na":1,"nb":2,"a":[["TED%3AAF-A0A1D2QPY2-F1-model_v4_TED01","TED novel fold AF-A0A1D2QPY2-F1-model_v4_TED01"]],"b":[["polyketides/bryostatin-2.yaml","bryostatin"],["polyketides/bryostatin.yaml","bryostatin"]]},{"id":"NCBITaxon:634771","l":"Chitinophaga eiseniae","na":1,"nb":2,"a":[["TED%3AAF-A0A847SE20-F1-model_v4_TED01","TED novel fold AF-A0A847SE20-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/pentacitidin-a.yaml","pentacitidin A"],["amino_acids_and_peptides/pentacitidin-b.yaml","pentacitidin B"]]},{"id":"NCBITaxon:643403","l":"Streptomyces sp. MK730-62F2","na":1,"nb":2,"a":[["Pfam%3APF14269","Arylsulfotransferase (ASST)"]],"b":[["carbohydrates/caprazamycin-aglycon.yaml","caprazamycin aglycon"],["carbohydrates/caprazamycin.yaml","caprazamycin"]]},{"id":"NCBITaxon:65","l":"Herpetosiphon aurantiacus","na":1,"nb":2,"a":[["Pfam%3APF09520","Type II restriction endonuclease, HinfI"]],"b":[["alkaloids/auriculamide.yaml","auriculamide"],["terpenoids/o-methylkolavelool.yaml","(+)-O-methylkolavelool"]]},{"id":"NCBITaxon:6573","l":"Mizuhopecten yessoensis","na":2,"nb":1,"a":[["TED%3AAF-A0A210PVN9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A210PVN9-F1-model_v4_TED02"],["TED%3AAF-A0A210PMU5-F1-model_v4_TED01","TED novel fold AF-A0A210PMU5-F1-model_v4_TED01"]],"b":[["alkaloids/gonyautoxin-2.yaml","gonyautoxin 2"]]},{"id":"NCBITaxon:66431","l":"Streptomyces thioluteus","na":1,"nb":2,"a":[["Pfam%3APF11583","P-aminobenzoate N-oxygenase AurF"]],"b":[["alkaloids/sf2768.yaml","SF2768"],["polyketides/aureothin.yaml","aureothin"]]},{"id":"NCBITaxon:6848","l":"Carcinoscorpius rotundicauda","na":1,"nb":2,"a":[["Pfam%3APF02035","Coagulin"]],"b":[["alkaloids/neosaxitoxin.yaml","neosaxitoxin"],["alkaloids/saxitoxin.yaml","saxitoxin"]]},{"id":"NCBITaxon:7787","l":"Tetronarce californica","na":2,"nb":1,"a":[["PROSITE%3APS00405","43 Kd postsynaptic protein signature"],["Pfam%3APF10579","Rapsyn N-terminal myristoylation and linker region"]],"b":[["alkaloids/huperzine-a.yaml","huperzine A"]]},{"id":"NCBITaxon:78410","l":"Neonectria ditissima","na":1,"nb":2,"a":[["TED%3AAF-A0A0P7AKS8-F1-model_v4_TED02","TED novel fold AF-A0A0P7AKS8-F1-model_v4_TED02"]],"b":[["unclassified/colletochlorin-b.yaml","Colletochlorin B"],["unclassified/colletorin-b.yaml","Colletorin B"]]},{"id":"NCBITaxon:79329","l":"Chitinophaga pinensis","na":2,"nb":1,"a":[["TED%3AAF-A0A5C6LK20-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C6LK20-F1-model_v4_TED01"],["TED%3AAF-A0A5C6LKB6-F1-model_v4_TED01","TED novel fold AF-A0A5C6LKB6-F1-model_v4_TED01"]],"b":[["polyketides/flexirubin.yaml","flexirubin"]]},{"id":"NCBITaxon:945553","l":"Hypholoma sublateritium (strain FD-334 SS-4)","na":2,"nb":1,"a":[["TED%3AAF-A0A0D2NQE0-F1-model_v4_TED01","TED novel fold AF-A0A0D2NQE0-F1-model_v4_TED01"],["TED%3AAF-A0A0D2PBZ7-F1-model_v4_TED01","TED novel fold AF-A0A0D2PBZ7-F1-model_v4_TED01"]],"b":[["terpenoids/naematolin.yaml","naematolin"]]},{"id":"NCBITaxon:985895","l":"Leptosphaeria maculans (strain JN3 / isolate v23.1.3 / race Av1-4-5-6-7-8)","na":2,"nb":1,"a":[["TED%3AAF-E5A7U7-F1-model_v4_TED01","TED novel fold AF-E5A7U7-F1-model_v4_TED01"],["TED%3AAF-E5A9E1-F1-model_v4_TED03","TED novel fold AF-E5A9E1-F1-model_v4_TED03"]],"b":[["terpenoids/2-cis-abscisic-acid.yaml","2-cis-abscisic acid"]]},{"id":"RHEA:32631","l":"","na":2,"nb":1,"a":[["EC%3A1.14.13.154","erythromycin 12 hydroxylase"],["RHEA%3A32631","erythromycin D + NADPH + O2 + H(+) = erythromycin C + NADP(+) + H2O"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"RHEA:40299","l":"","na":2,"nb":1,"a":[["EC%3A1.14.15.35","6-deoxyerythronolide B hydroxylase"],["RHEA%3A40299","6-deoxyerythronolide B + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = erythronolide B + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"UniProt:O00763.","l":"","na":2,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RCP","RCP-binding site"],["proteintraitsmech%3ABIOLIP_S1A","S1A-binding site"]],"b":[["polyketides/soraphen-a.yaml","soraphen A"]]},{"id":"UniProt:P00516","l":"","na":2,"nb":1,"a":[["EC%3A2.7.11.12","cGMP-dependent protein kinase"],["Pfam%3APF16808","Coiled-coil N-terminus of cGMP-dependent protein kinase"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P00517","l":"","na":1,"nb":2,"a":[["MCSA%3A757","cAMP-dependent protein kinase"]],"b":[["alkaloids/methylarcyriarubin.yaml","methylarcyriarubin"],["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P04058.","l":"","na":2,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_03S","03S-binding site"],["proteintraitsmech%3ABIOLIP_AA7","AA7-binding site"]],"b":[["alkaloids/physostigmine.yaml","physostigmine"]]},{"id":"UniProt:P0AD64","l":"","na":2,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MA4","MA4-binding site"],["proteintraitsmech%3ABIOLIP_TSL","TSL-binding site"]],"b":[["amino_acids_and_peptides/clavulanic-acid-2.yaml","clavulanic acid"]]},{"id":"CHEBI:133919","l":"decarbamoylsaxitoxin","na":1,"nb":1,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"]]},{"id":"CHEBI:138511","l":"piericidin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HQH","HQH-binding site"]],"b":[["polyketides/piericidin-a.yaml","piericidin A"]]},{"id":"CHEBI:142639","l":"nectriapyrone","na":1,"nb":1,"a":[["RHEA%3A58748","desmethylnectriapyrone + S-adenosyl-L-methionine = nectriapyrone + S-adenosyl-L-homocysteine + H(+)"]],"b":[["polyketides/nectriapyrone.yaml","nectriapyrone"]]},{"id":"CHEBI:145105","l":"asperphenamate","na":1,"nb":1,"a":[["RHEA%3A61908","N-benzoyl-L-phenylalaninol + benzoate + L-phenylalanine + 2 ATP = asperphenamate + 2 AMP + 2 diphosphate + H(+)"]],"b":[["unclassified/asperphenamate.yaml","asperphenamate"]]},{"id":"CHEBI:146007","l":"(M)-viriditoxin","na":1,"nb":1,"a":[["RHEA%3A62884","4 semiviriditoxin + O2 = 2 (M)-viriditoxin + 2 H2O"]],"b":[["polyketides/viriditoxin.yaml","viriditoxin"]]},{"id":"CHEBI:15353","l":"blasticidin S","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BLS","BLS-binding site"]],"b":[["carbohydrates/blasticidin-s.yaml","blasticidin S"]]},{"id":"CHEBI:15732","l":"phosphonoacetic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PAE","PAE-binding site"]],"b":[["unclassified/phosphonoacetic-acid.yaml","phosphonoacetic acid"]]},{"id":"CHEBI:15738","l":"staurosporine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_STU","STU-binding site"]],"b":[["alkaloids/staurosporine.yaml","staurosporine"]]},{"id":"CHEBI:157682","l":"vanchrobactin","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_157682","requires vanchrobactin"]],"b":[["amino_acids_and_peptides/vanchrobactin.yaml","vanchrobactin"]]},{"id":"CHEBI:16349","l":"L-citrulline","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CIR","CIR-binding site"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"CHEBI:167379","l":"trichobrasilenol","na":1,"nb":1,"a":[["RHEA%3A66644","(2E,6E)-farnesyl diphosphate + H2O = trichobrasilenol + diphosphate"]],"b":[["terpenoids/trichobrasilenol.yaml","trichobrasilenol"]]},{"id":"CHEBI:167886","l":"aetokthonotoxin","na":1,"nb":1,"a":[["RHEA%3A82519","5,7-dibromo-indole-3-carbonitrile + 2,3,5-tribromoindole + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = aetokthonotoxin + 2 oxidized [2Fe-2S]-[ferredoxin] + 2 H2O"]],"b":[["alkaloids/aetokthonotoxin.yaml","aetokthonotoxin"]]},{"id":"CHEBI:168396","l":"mycophenolic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MOA","MOA-binding site"]],"b":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"]]},{"id":"CHEBI:171659","l":"quinolobactin","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_171659","requires quinolobactin"]],"b":[["alkaloids/quinolobactin.yaml","quinolobactin"]]},{"id":"CHEBI:18157","l":"aerobactin","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18157","requires aerobactin"]],"b":[["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]]},{"id":"CHEBI:219836","l":"anditomin","na":1,"nb":1,"a":[["RHEA%3A82659","andilesin C + 2-oxoglutarate + O2 = anditomin + succinate + CO2 + H2O"]],"b":[["unclassified/anditomin.yaml","anditomin"]]},{"id":"CHEBI:22152","l":"2-cis-abscisic acid","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["terpenoids/2-cis-abscisic-acid.yaml","2-cis-abscisic acid"]]},{"id":"CHEBI:26789","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_OI9","OI9-binding site"]],"b":[["carbohydrates/streptothricin-f.yaml","streptothricin F"]]},{"id":"CHEBI:27592","l":"ectoine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_4CS","4CS-binding site"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"CHEBI:27834","l":"pentostatin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DCF","DCF-binding site"]],"b":[["alkaloids/pentostatin.yaml","pentostatin"]]},{"id":"CHEBI:28364","l":"all-cis-5,8,11,14,17-icosapentaenoic acid","na":1,"nb":1,"a":[["TCDB%3A4.C.1","The Fatty Acid Group Translocation (FAT) Family"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"CHEBI:28748","l":"doxorubicin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DM2","DM2-binding site"]],"b":[["polyketides/doxorubicin.yaml","doxorubicin"]]},{"id":"CHEBI:28864","l":"tobramycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TOY","TOY-binding site"]],"b":[["carbohydrates/tobramycin.yaml","tobramycin"]]},{"id":"CHEBI:29703","l":"validamycin A","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["carbohydrates/validamycin-a.yaml","validamycin A"]]},{"id":"CHEBI:30838","l":"itaconic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ITN","ITN-binding site"]],"b":[["fatty_acids/itaconic-acid.yaml","itaconic acid"]]},{"id":"CHEBI:31856","l":"mithramycin","na":1,"nb":1,"a":[["RHEA%3A85455","iso-mithramycin = mithramycin"]],"b":[["polyketides/mithramycin.yaml","mithramycin"]]},{"id":"CHEBI:32079","l":"pyrrolnitrin","na":1,"nb":1,"a":[["RHEA%3A46136","aminopyrrolnitrin + NADPH + 2 O2 + H(+) = pyrrolnitrin + NADP(+) + 2 H2O"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"CHEBI:34970","l":"saxitoxin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9SL","9SL-binding site"]],"b":[["alkaloids/saxitoxin.yaml","saxitoxin"]]},{"id":"CHEBI:38240","l":"solanapyrone D","na":1,"nb":1,"a":[["RHEA%3A75143","prosolanapyrone III = solanapyrone D"]],"b":[["polyketides/solanapyrone-d.yaml","solanapyrone D"]]},{"id":"CHEBI:40009","l":"D-cycloserine","na":1,"nb":1,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"]],"b":[["amino_acids_and_peptides/cycloserine.yaml","cycloserine"]]},{"id":"CHEBI:41977","l":"daunorubicin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DM1","DM1-binding site"]],"b":[["polyketides/daunorubicin.yaml","daunorubicin"]]},{"id":"CHEBI:42223","l":"emodin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_EMO","EMO-binding site"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"CHEBI:42355","l":"erythromycin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ERY","ERY-binding site"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"CHEBI:42639","l":"γ-butyrolactone","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_GBL","GBL-binding site"]],"b":[["fatty_acids/butyrolactone.yaml","γ-butyrolactone"]]},{"id":"CHEBI:43616","l":"K-252a","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_KSA","KSA-binding site"]],"b":[["alkaloids/k-252a.yaml","K-252a"]]},{"id":"CHEBI:45257","l":"ribostamycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RIO","RIO-binding site"]],"b":[["carbohydrates/ribostamycin.yaml","ribostamycin"]]},{"id":"CHEBI:473992","l":"nystatin A1","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_A1AZ7","A1AZ7-binding site"]],"b":[["polyketides/nystatin-a1.yaml","nystatin A1"]]},{"id":"CHEBI:48267","l":"tubercidin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TBN","TBN-binding site"]],"b":[["carbohydrates/tubercidin.yaml","tubercidin"]]},{"id":"CHEBI:48947","l":"clavulanic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_J01","J01-binding site"]],"b":[["amino_acids_and_peptides/clavulanic-acid.yaml","clavulanic acid"]]},{"id":"CHEBI:50437","l":"nocardamine","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_50437","requires desferrioxamine E"]],"b":[["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"]]},{"id":"CHEBI:623918","l":"nikkomycin Z","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BGI","BGI-binding site"]],"b":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"]]},{"id":"CHEBI:64318","l":"ergotamine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ERM","ERM-binding site"]],"b":[["alkaloids/ergotamine.yaml","ergotamine"]]},{"id":"CHEBI:64695","l":"pyripyropene A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_7T8","7T8-binding site"]],"b":[["unclassified/pyripyropene-a.yaml","pyripyropene A"]]},{"id":"CHEBI:67811","l":"zorbamycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_52G","52G-binding site"]],"b":[["amino_acids_and_peptides/zorbamycin.yaml","zorbamycin"]]},{"id":"CHEBI:68241","l":"platencin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_N32","N32-binding site"]],"b":[["terpenoids/platencin.yaml","platencin"]]},{"id":"CHEBI:70064","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["polyketides/landomycin-a.yaml","landomycin A"]]},{"id":"CHEBI:7025","l":"mupirocin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MRC","MRC-binding site"]],"b":[["polyketides/mupirocin.yaml","mupirocin"]]},{"id":"CHEBI:70399","l":"meleagrine","na":1,"nb":1,"a":[["RHEA%3A51732","glandicoline B + S-adenosyl-L-methionine = meleagrin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["alkaloids/meleagrine.yaml","meleagrine"]]},{"id":"CHEBI:7061","l":"myxochelin B","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_7061","requires myxochelin B"]],"b":[["alkaloids/myxochelin-b.yaml","myxochelin B"]]},{"id":"CHEBI:74926","l":"patulin","na":1,"nb":1,"a":[["RHEA%3A62228","(E)-ascladiol + A = patulin + AH2"]],"b":[["polyketides/patulin.yaml","patulin"]]},{"id":"CHEBI:7508","l":"framycetin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NMY","NMY-binding site"]],"b":[["carbohydrates/framycetin.yaml","framycetin"]]},{"id":"CHEBI:77742","l":"bongkrekic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BKC","BKC-binding site"]],"b":[["fatty_acids/bongkrekic-acid.yaml","bongkrekic acid"]]},{"id":"CHEBI:79391","l":"(−)-chuangxinmycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9E0","9E0-binding site"]],"b":[["alkaloids/chuangxinmycin.yaml","(−)-chuangxinmycin"]]},{"id":"CHEBI:84168","l":"4-hydroxy-6-pentadecylpyran-2-one","na":1,"nb":1,"a":[["RHEA%3A44260","hexadecanoyl-CoA + 2 malonyl-CoA + 2 H(+) = 4-hydroxy-6-pentadecylpyran-2-one + 2 CO2 + 3 CoA"]],"b":[["polyketides/4-hydroxy-6-pentadecylpyran-2-one.yaml","4-hydroxy-6-pentadecylpyran-2-one"]]},{"id":"CHEBI:84171","l":"4-hydroxy-6-(2-oxoheptadecyl)pyran-2-one","na":1,"nb":1,"a":[["RHEA%3A44268","hexadecanoyl-CoA + 3 malonyl-CoA + 3 H(+) = 4-hydroxy-6-(2-oxoheptadecyl)pyran-2-one + 3 CO2 + 4 CoA"]],"b":[["polyketides/4-hydroxy-6-2-oxoheptadecyl-pyran-2-one.yaml","4-hydroxy-6-(2-oxoheptadecyl)pyran-2-one"]]},{"id":"CHEBI:84582","l":"schizokinen","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_84582","requires schizokinen"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"]]},{"id":"CHEBI:84585","l":"vibrioferrin","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_84585","requires vibrioferrin"]],"b":[["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"CHEBI:85997","l":"sangivamycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SGV","SGV-binding site"]],"b":[["carbohydrates/sangivamycin.yaml","sangivamycin"]]},{"id":"CHEBI:9168","l":"sirolimus","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RAP","RAP-binding site"]],"b":[["polyketides/sirolimus.yaml","sirolimus"]]},{"id":"CHEBI:9200","l":"soraphen A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_S1A","S1A-binding site"]],"b":[["polyketides/soraphen-a.yaml","soraphen A"]]},{"id":"CHEBI:92181","l":"lasalocid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_LSD","LSD-binding site"]],"b":[["polyketides/lasalocid.yaml","lasalocid"]]},{"id":"CHEBI:9367","l":"swainsonine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SWA","SWA-binding site"]],"b":[["alkaloids/swainsonine.yaml","swainsonine"]]},{"id":"CHEBI:9519","l":"thebaine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_D4R","D4R-binding site"]],"b":[["alkaloids/thebaine.yaml","thebaine"]]},{"id":"CHEBI:9973","l":"vibriobactin","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_9973","requires vibriobactin"]],"b":[["alkaloids/vibriobactin.yaml","vibriobactin"]]},{"id":"NCBITaxon:103733","l":"Saccharothrix syringae","na":1,"nb":1,"a":[["TED%3AAF-A0A5Q0GZB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Q0GZB9-F1-model_v4_TED01"]],"b":[["polyketides/nocamycin.yaml","nocamycin"]]},{"id":"NCBITaxon:104268","l":"Tenacibaculum mesophilum","na":1,"nb":1,"a":[["TED%3AAF-A0A1M5HMT5-F1-model_v4_TED01","TED novel fold AF-A0A1M5HMT5-F1-model_v4_TED01"]],"b":[["fatty_acids/bisucaberin-b.yaml","bisucaberin B"]]},{"id":"NCBITaxon:1081091","l":"Amycolatopsis balhimycina DSM 5908","na":1,"nb":1,"a":[["TED%3AAF-A0A428WRS4-F1-model_v4_TED02","TED novel fold AF-A0A428WRS4-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/balhimycin.yaml","balhimycin"]]},{"id":"NCBITaxon:1108595","l":"Chromobacterium vaccinii","na":1,"nb":1,"a":[["TED%3AAF-A0A2L2B8V3-F1-model_v4_TED02","TED novel fold AF-A0A2L2B8V3-F1-model_v4_TED02"]],"b":[["unclassified/fr900359-2.yaml","FR900359"]]},{"id":"NCBITaxon:1124983","l":"","na":1,"nb":1,"a":[["Pfam%3APF18089","DAPG hydrolase PhiG domain"]],"b":[["fatty_acids/protegencin.yaml","protegencin"]]},{"id":"NCBITaxon:1165","l":"Anabaena cylindrica","na":1,"nb":1,"a":[["Pfam%3APF17275","Family of unknown function (DUF5340)"]],"b":[["amino_acids_and_peptides/anachelin.yaml","anachelin"]]},{"id":"NCBITaxon:1214242","l":"","na":1,"nb":1,"a":[["TED%3AAF-S5VBX8-F1-model_v4_TED03","TED novel fold AF-S5VBX8-F1-model_v4_TED03"]],"b":[["unclassified/kirromycin.yaml","kirromycin"]]},{"id":"NCBITaxon:122368","l":"Cercospora beticola","na":1,"nb":1,"a":[["TED%3AAF-A0A2G5HT37-F1-model_v4_TED02","TED novel fold AF-A0A2G5HT37-F1-model_v4_TED02"]],"b":[["polyketides/cercosporin.yaml","cercosporin"]]},{"id":"NCBITaxon:1254432","l":"Sorangium cellulosum So0157-2","na":1,"nb":1,"a":[["TED%3AAF-S4XT05-F1-model_v4_TED01","TED novel fold AF-S4XT05-F1-model_v4_TED01"]],"b":[["unclassified/epothilone-b.yaml","epothilone B"]]},{"id":"NCBITaxon:1266744","l":"Talaromyces purpureogenus","na":1,"nb":1,"a":[["Pfam%3APF10503","Esterase PHB depolymerase"]],"b":[["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"]]},{"id":"NCBITaxon:1283841","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A084QGW0-F1-model_v4_TED01","TED novel fold AF-A0A084QGW0-F1-model_v4_TED01"]],"b":[["alkaloids/isoindolin-1-one.yaml","isoindolin-1-one"]]},{"id":"NCBITaxon:1297742","l":"Myxococcus hansupus","na":1,"nb":1,"a":[["TED%3AAF-A0A0H4X3W5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0H4X3W5-F1-model_v4_TED02"]],"b":[["unclassified/myxochromide-c.yaml","myxochromide C"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":1,"nb":1,"a":[["PROSITE%3APS01043","Transposases, IS30 family, signature"]],"b":[["amino_acids_and_peptides/salivaricin-d.yaml","salivaricin D"]]},{"id":"NCBITaxon:1341132","l":"Aspergillus welwitschiae","na":1,"nb":1,"a":[["TED%3AAF-A0A3F3Q9J6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3F3Q9J6-F1-model_v4_TED02"]],"b":[["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"]]},{"id":"NCBITaxon:1343740","l":"","na":1,"nb":1,"a":[["Pfam%3APF21168","Chorismatase FkbO/Hyg5-like, N-terminal"]],"b":[["polyketides/sirolimus.yaml","sirolimus"]]},{"id":"NCBITaxon:13689","l":"Sphingomonas paucimobilis","na":1,"nb":1,"a":[["PROSITE%3APS00082","Extradiol ring-cleavage dioxygenases signature"]],"b":[["unclassified/minimycin.yaml","minimycin"]]},{"id":"NCBITaxon:1408161","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A6A7APH0-F1-model_v4_TED02","TED novel fold AF-A0A6A7APH0-F1-model_v4_TED02"]],"b":[["shikimates_and_phenylpropanoids/mellein.yaml","(-)-Mellein"]]},{"id":"NCBITaxon:150374","l":"Escovopsis weberi","na":1,"nb":1,"a":[["TED%3AAF-A0A0M8MSE0-F1-model_v4_TED01","TED novel fold AF-A0A0M8MSE0-F1-model_v4_TED01"]],"b":[["unclassified/melinacidin-iv.yaml","melinacidin IV"]]},{"id":"NCBITaxon:1563222","l":"Citrobacter pasteurii","na":1,"nb":1,"a":[["TED%3AAF-A0A6N6K4M5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N6K4M5-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/citrocin.yaml","citrocin"]]},{"id":"NCBITaxon:1593482","l":"Massilia sp. YMA4","na":1,"nb":1,"a":[["TED%3AAF-A0A7U5XZA1-F1-model_v4_TED02","TED novel fold AF-A0A7U5XZA1-F1-model_v4_TED02"]],"b":[["unclassified/empedopeptin.yaml","empedopeptin"]]},{"id":"NCBITaxon:159449","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1T3P567-F1-model_v4_TED01","TED novel fold AF-A0A1T3P567-F1-model_v4_TED01"]],"b":[["unclassified/hitachimycin.yaml","hitachimycin"]]},{"id":"NCBITaxon:173365","l":"Methylobacter tundripaludum","na":1,"nb":1,"a":[["TED%3AAF-A0A2S6HGL6-F1-model_v4_TED02","TED novel fold AF-A0A2S6HGL6-F1-model_v4_TED02"]],"b":[["unclassified/tundrenone.yaml","tundrenone"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":1,"nb":1,"a":[["Pfam%3APF08124","Polysaccharide lyase family 8, N terminal alpha-helical domain"]],"b":[["amino_acids_and_peptides/cutimycin.yaml","cutimycin"]]},{"id":"NCBITaxon:1764","l":"Mycobacterium avium","na":1,"nb":1,"a":[["Pfam%3APF01882","Protein of unknown function DUF58"]],"b":[["fatty_acids/gpl-21.yaml","GPL-21"]]},{"id":"NCBITaxon:180498","l":"Jatropha curcas","na":1,"nb":1,"a":[["TED%3AAF-A0A067KNY2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A067KNY2-F1-model_v4_TED01"]],"b":[["terpenoids/casbene.yaml","casbene"]]},{"id":"NCBITaxon:1828523","l":"","na":1,"nb":1,"a":[["Pfam%3APF26335","Beta-lactamase-like ARB_00930-like, C-terminal domain"]],"b":[["polyketides/squalestatin-s1.yaml","squalestatin S1"]]},{"id":"NCBITaxon:1869241","l":"Nostoc sp. CENA543","na":1,"nb":1,"a":[["TED%3AAF-A0A2I8A446-F1-model_v4_TED01","TED novel fold AF-A0A2I8A446-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/nodularin-2.yaml","nodularin"]]},{"id":"NCBITaxon:1874","l":"Micromonospora chalcea","na":1,"nb":1,"a":[["TED%3AAF-A0A365UW89-F1-model_v4_TED01","TED novel fold AF-A0A365UW89-F1-model_v4_TED01"]],"b":[["polyketides/tetrocarcin-a.yaml","tetrocarcin A"]]},{"id":"NCBITaxon:1887","l":"Streptomyces albogriseolus","na":1,"nb":1,"a":[["PROSITE%3APS00999","Streptomyces subtilisin-type inhibitors signature"]],"b":[["alkaloids/thienodolin.yaml","thienodolin"]]},{"id":"NCBITaxon:1918945","l":"Vibrio spartinae","na":1,"nb":1,"a":[["TED%3AAF-A0A7D8BB99-F1-model_v4_TED01","TED novel fold AF-A0A7D8BB99-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/vancomycin.yaml","vancomycin"]]},{"id":"NCBITaxon:1948","l":"Streptomyces longisporus","na":1,"nb":1,"a":[["PROSITE%3APS00999","Streptomyces subtilisin-type inhibitors signature"]],"b":[["alkaloids/undecylprodigiosin-2.yaml","undecylprodigiosin"]]},{"id":"NCBITaxon:1970","l":"Streptomyces morookaense","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y7E7U7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y7E7U7-F1-model_v4_TED01"]],"b":[["carbohydrates/blasticidin-s.yaml","blasticidin S"]]},{"id":"NCBITaxon:205922","l":"Pseudomonas fluorescens Pf0-1","na":1,"nb":1,"a":[["Pfam%3APF07927","HicA toxin of bacterial toxin-antitoxin,"]],"b":[["unclassified/gacamide-a.yaml","gacamide A"]]},{"id":"NCBITaxon:216895","l":"Vibrio vulnificus CMCP6","na":1,"nb":1,"a":[["Pfam%3APF18416","N-acetylglucosamine binding protein domain 2"]],"b":[["alkaloids/vulnibactin.yaml","vulnibactin"]]},{"id":"NCBITaxon:2203296","l":"","na":1,"nb":1,"a":[["Pfam%3APF18558","Methyltransferase, Helix-turn-helix domain"]],"b":[["unclassified/xenovulene-a.yaml","xenovulene A"]]},{"id":"NCBITaxon:240499","l":"Calcarisporium arbuscula","na":1,"nb":1,"a":[["Pfam%3APF28402","Pneumocandin biosynthesis cluster protein B C-terminal domain"]],"b":[["polyketides/patulin.yaml","patulin"]]},{"id":"NCBITaxon:2480843","l":"","na":1,"nb":1,"a":[["Pfam%3APF22903","Diels-Alderase-like"]],"b":[["unclassified/xenoacremone-a.yaml","xenoacremone A"]]},{"id":"NCBITaxon:249581","l":"Streptomyces ossamyceticus","na":1,"nb":1,"a":[["TED%3AAF-A0A3N1M1Z0-F1-model_v4_TED02","TED novel fold AF-A0A3N1M1Z0-F1-model_v4_TED02"]],"b":[["polyketides/ossamycin.yaml","ossamycin"]]},{"id":"NCBITaxon:2545265","l":"Streptomyces sp. AJS327","na":1,"nb":1,"a":[["TED%3AAF-A0A7V8NJX1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V8NJX1-F1-model_v4_TED01"]],"b":[["alkaloids/tetrachlorizine.yaml","tetrachlorizine"]]},{"id":"NCBITaxon:263","l":"Francisella tularensis","na":1,"nb":1,"a":[["TED%3AAF-A0A6I4RUC7-F1-model_v4_TED02","TED novel fold AF-A0A6I4RUC7-F1-model_v4_TED02"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"NCBITaxon:264691","l":"Anabaena variabilis","na":1,"nb":1,"a":[["Pfam%3APF09194","Restriction endonuclease BsobI"]],"b":[["unclassified/shinorine.yaml","shinorine"]]},{"id":"NCBITaxon:267747","l":"Cutibacterium acnes KPA171202","na":1,"nb":1,"a":[["Pfam%3APF27542","ArfC"]],"b":[["amino_acids_and_peptides/cutimycin.yaml","cutimycin"]]},{"id":"NCBITaxon:269709","l":"Methylomicrobium kenyense","na":1,"nb":1,"a":[["TED%3AAF-A0A543V9Z8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A543V9Z8-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:2743","l":"Marinobacter hydrocarbonoclasticus","na":1,"nb":1,"a":[["TED%3AAF-A0A368Y858-F1-model_v4_TED02","TED novel fold AF-A0A368Y858-F1-model_v4_TED02"]],"b":[["alkaloids/petrobactin.yaml","petrobactin"]]},{"id":"NCBITaxon:279113","l":"Collimonas pratensis","na":1,"nb":1,"a":[["TED%3AAF-A0A127Q9K0-F1-model_v4_TED02","TED novel fold AF-A0A127Q9K0-F1-model_v4_TED02"]],"b":[["unclassified/malleobactin-x.yaml","malleobactin X"]]},{"id":"NCBITaxon:285525","l":"Streptomyces sahachiroi","na":1,"nb":1,"a":[["Pfam%3APF06224","DNA glycosylase AlkZ-like"]],"b":[["unclassified/azinomycin-b.yaml","azinomycin B"]]},{"id":"NCBITaxon:28985","l":"Kluyveromyces lactis","na":1,"nb":1,"a":[["Pfam%3APF03930","Recombinase Flp protein N-terminus"]],"b":[["alkaloids/pulcherrimin.yaml","pulcherrimin"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":1,"nb":1,"a":[["PROSITE%3APS01322","Phosphotriesterase family signature 1"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:29447","l":"Xanthomonas albilineans","na":1,"nb":1,"a":[["TED%3AAF-A0A6P1SIK7-F1-model_v4_TED02","TED novel fold AF-A0A6P1SIK7-F1-model_v4_TED02"]],"b":[["alkaloids/albicidin.yaml","albicidin"]]},{"id":"NCBITaxon:29456","l":"","na":1,"nb":1,"a":[["Pfam%3APF12559","Serine endopeptidase inhibitors"]],"b":[["unclassified/marinostatin.yaml","marinostatin"]]},{"id":"NCBITaxon:29829","l":"Lipomyces starkeyi","na":1,"nb":1,"a":[["Pfam%3APF03702","Anhydro-N-acetylmuramic acid kinase"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"NCBITaxon:298386","l":"Photobacterium profundum SS9","na":1,"nb":1,"a":[["Pfam%3APF12558","ATP-binding cassette cobalt transporter"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"NCBITaxon:337","l":"Burkholderia glumae","na":1,"nb":1,"a":[["TED%3AAF-A0A8A8MA15-F1-model_v4_TED01","TED novel fold AF-A0A8A8MA15-F1-model_v4_TED01"]],"b":[["alkaloids/toxoflavin.yaml","toxoflavin"]]},{"id":"NCBITaxon:359131","l":"","na":1,"nb":1,"a":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"]],"b":[["unclassified/fr-900098.yaml","FR-900098"]]},{"id":"NCBITaxon:362","l":"Agrobacterium radiobacter","na":1,"nb":1,"a":[["Pfam%3APF04909","Amidohydrolase"]],"b":[["alkaloids/agrobactin.yaml","agrobactin"]]},{"id":"NCBITaxon:37329","l":"Nocardia farcinica","na":1,"nb":1,"a":[["TED%3AAF-A0A449G5H5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A449G5H5-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/nocobactin-na.yaml","nocobactin NA"]]},{"id":"NCBITaxon:37727","l":"Talaromyces marneffei","na":1,"nb":1,"a":[["Pfam%3APF12296","Hydrophobic surface binding protein A"]],"b":[["polyketides/monascorubrin.yaml","monascorubrin"]]},{"id":"NCBITaxon:38945","l":"Flammulina velutipes","na":1,"nb":1,"a":[["Pfam%3APF09259","Fungal immunomodulatory protein Fve"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:391936","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0B4XPB7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0B4XPB7-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/pacifibactin.yaml","pacifibactin"]]},{"id":"NCBITaxon:396598","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_GrbE","GrbE-type graminine biosynthesis protein family"]],"b":[["unclassified/gramibactin.yaml","gramibactin"]]},{"id":"NCBITaxon:4100","l":"Nicotiana benthamiana","na":1,"nb":1,"a":[["Pfam%3APF11833","Protein CHAPERONE-LIKE PROTEIN OF POR1-like"]],"b":[["terpenoids/capsidiol.yaml","capsidiol"]]},{"id":"NCBITaxon:41047","l":"","na":1,"nb":1,"a":[["Pfam%3APF28486","AnkG N-terminal domain"]],"b":[["unclassified/pyripyropene-a.yaml","pyripyropene A"]]},{"id":"NCBITaxon:43657","l":"Pseudoalteromonas luteoviolacea","na":1,"nb":1,"a":[["TED%3AAF-A0A1C0TIS0-F1-model_v4_TED02","TED novel fold AF-A0A1C0TIS0-F1-model_v4_TED02"]],"b":[["shikimates_and_phenylpropanoids/pentabromopseudilin.yaml","pentabromopseudilin"]]},{"id":"NCBITaxon:43759","l":"Streptomyces wedmorensis","na":1,"nb":1,"a":[["Pfam%3APF04167","Protein of unknown function (DUF402)"]],"b":[["unclassified/fosfomycin.yaml","fosfomycin"]]},{"id":"NCBITaxon:463","l":"Fluoribacter dumoffii","na":1,"nb":1,"a":[["TED%3AAF-A0A377G6U6-F1-model_v4_TED01","TED novel fold AF-A0A377G6U6-F1-model_v4_TED01"]],"b":[["shikimates_and_phenylpropanoids/legioliulin.yaml","legioliulin"]]},{"id":"NCBITaxon:4679","l":"Allium cepa","na":1,"nb":1,"a":[["Pfam%3APF04863","Alliinase EGF-like domain"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:4682","l":"Allium sativum","na":1,"nb":1,"a":[["Pfam%3APF04863","Alliinase EGF-like domain"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:469371","l":"Thermobispora bispora DSM 43833","na":1,"nb":1,"a":[["TED%3AAF-D6Y8C2-F1-model_v4_TED02","TED novel fold AF-D6Y8C2-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/thiomuracin.yaml","thiomuracin"]]},{"id":"NCBITaxon:47759","l":"Streptomyces tubercidicus","na":1,"nb":1,"a":[["TED%3AAF-A0A640UN74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A640UN74-F1-model_v4_TED01"]],"b":[["carbohydrates/tubercidin.yaml","tubercidin"]]},{"id":"NCBITaxon:47850","l":"Micromonospora aurantiaca","na":1,"nb":1,"a":[["TED%3AAF-A0A1C6SK92-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C6SK92-F1-model_v4_TED01"]],"b":[["polyketides/dynemicin-a.yaml","dynemicin A"]]},{"id":"NCBITaxon:47886","l":"Pseudomonas luteola","na":1,"nb":1,"a":[["TED%3AAF-A0A2X2CC74-F1-model_v4_TED02","TED novel fold AF-A0A2X2CC74-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/chrysobactin.yaml","chrysobactin"]]},{"id":"NCBITaxon:483219","l":"","na":1,"nb":1,"a":[["TED%3AAF-F8C8K4-F1-model_v4_TED01","TED highly-symmetric fold AF-F8C8K4-F1-model_v4_TED01"]],"b":[["unclassified/myxochromide-a-2.yaml","myxochromide A"]]},{"id":"NCBITaxon:488447","l":"Burkholderia contaminans","na":1,"nb":1,"a":[["TED%3AAF-A0A3N8RI51-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N8RI51-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/occidiofungin-a.yaml","occidiofungin A"]]},{"id":"NCBITaxon:528191","l":"Paenibacillus xylanexedens","na":1,"nb":1,"a":[["TED%3AAF-A0A3N6BL17-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N6BL17-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/macolacin.yaml","macolacin"]]},{"id":"NCBITaxon:5341","l":"Agaricus bisporus","na":1,"nb":1,"a":[["Pfam%3APF07367","Fungal fruit body lectin"]],"b":[["polyketides/kojic-acid.yaml","kojic acid"]]},{"id":"NCBITaxon:573841","l":"Sordaria araneosa","na":1,"nb":1,"a":[["Pfam%3APF26335","Beta-lactamase-like ARB_00930-like, C-terminal domain"]],"b":[["terpenoids/sordarin.yaml","sordarin"]]},{"id":"NCBITaxon:5839","l":"Plasmodium falciparum (isolate K1 / Thailand)","na":1,"nb":1,"a":[["Pfam%3APF12946","MSP1 EGF domain 1"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:6192","l":"Fasciola hepatica","na":1,"nb":1,"a":[["TED%3AAF-A0A4E0R9C7-F1-model_v4_TED02","TED novel fold AF-A0A4E0R9C7-F1-model_v4_TED02"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"]]},{"id":"NCBITaxon:66425","l":"Streptomyces luteoverticillatus","na":1,"nb":1,"a":[["TED%3AAF-A0A3S9PBS5-F1-model_v4_TED01","TED novel fold AF-A0A3S9PBS5-F1-model_v4_TED01"]],"b":[["alkaloids/carbazomycin-b.yaml","carbazomycin B"]]},{"id":"NCBITaxon:68197","l":"Streptomyces fimbriatus","na":1,"nb":1,"a":[["PROSITE%3APS00093","N-4 cytosine-specific DNA methylases signature"]],"b":[["alkaloids/spicamycin.yaml","spicamycin"]]},{"id":"NCBITaxon:69771","l":"Penicillium decumbens","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6PJ92-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V6PJ92-F1-model_v4_TED01"]],"b":[["polyketides/decumbenone-a.yaml","decumbenone a"]]},{"id":"NCBITaxon:698760","l":"Streptomyces turgidiscabies Car8","na":1,"nb":1,"a":[["TED%3AAF-L7F7V3-F1-model_v4_TED02","TED highly-symmetric fold AF-L7F7V3-F1-model_v4_TED02"]],"b":[["unclassified/thaxtomin-a.yaml","thaxtomin A"]]},{"id":"NCBITaxon:713604","l":"","na":1,"nb":1,"a":[["TED%3AAF-G0FSL6-F1-model_v4_TED01","TED novel fold AF-G0FSL6-F1-model_v4_TED01"]],"b":[["polyketides/rifamycin-sv.yaml","rifamycin SV"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A5C7XIK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7XIK2-F1-model_v4_TED01"]],"b":[["unclassified/lysocin-e.yaml","lysocin E"]]},{"id":"NCBITaxon:741275","l":"","na":1,"nb":1,"a":[["TED%3AAF-R7S2Z2-F1-model_v4_TED02","TED novel fold AF-R7S2Z2-F1-model_v4_TED02"]],"b":[["terpenoids/ent-kauren-16alpha-ol-2.yaml","Ent-kauren-16alpha-ol"]]},{"id":"NCBITaxon:747457","l":"","na":1,"nb":1,"a":[["Pfam%3APF18014","Acetyltransferase (GNAT) domain"]],"b":[["polyketides/thiomarinol.yaml","thiomarinol"]]},{"id":"NCBITaxon:749593","l":"Epicoccum sorghinum","na":1,"nb":1,"a":[["Pfam%3APF17660","Polyglycine hydrolase-like, structural repeat"]],"b":[["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"]]},{"id":"NCBITaxon:75695","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A654SF36-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A654SF36-F1-model_v4_TED02"]],"b":[["alkaloids/7-epi-cylindrospermopsin.yaml","7-epi-cylindrospermopsin"]]},{"id":"NCBITaxon:85336","l":"Rothia nasimurium","na":1,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_EntC","EntC-type catechol biosynthesis isochorismate synthase family"]],"b":[["unclassified/valinomycin-2.yaml","valinomycin"]]},{"id":"NCBITaxon:866895","l":"","na":1,"nb":1,"a":[["TED%3AAF-I0JI49-F1-model_v4_TED03","TED highly-symmetric fold AF-I0JI49-F1-model_v4_TED03"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:877550","l":"","na":1,"nb":1,"a":[["Pfam%3APF13810","Domain of unknown function (DUF4185)"]],"b":[["unclassified/notoamide-a.yaml","notoamide A"]]},{"id":"NCBITaxon:89489","l":"Monascus ruber","na":1,"nb":1,"a":[["Pfam%3APF17828","N-terminal domain in fatty acid synthase subunit beta"]],"b":[["polyketides/citrinin.yaml","(+)-citrinin"]]},{"id":"NCBITaxon:948311","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A420SS57-F1-model_v4_TED01","TED novel fold AF-A0A420SS57-F1-model_v4_TED01"]],"b":[["polyketides/prolipyrone-b.yaml","prolipyrone B"]]},{"id":"NCBITaxon:96241","l":"Bacillus spizizenii","na":1,"nb":1,"a":[["Pfam%3APF05952","Bacillus competence pheromone ComX"]],"b":[["amino_acids_and_peptides/entianin.yaml","entianin"]]},{"id":"NCBITaxon:986","l":"Flavobacterium johnsoniae","na":1,"nb":1,"a":[["TED%3AAF-A0A1J7BWE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1J7BWE6-F1-model_v4_TED01"]],"b":[["polyketides/flexirubin.yaml","flexirubin"]]},{"id":"NCBITaxon:994086","l":"Hydnomerulius pinastri MD-312","na":1,"nb":1,"a":[["TED%3AAF-A0A0C9W3H2-F1-model_v4_TED01","TED novel fold AF-A0A0C9W3H2-F1-model_v4_TED01"]],"b":[["fatty_acids/methyl-2s-4-methyl-2-octanoylamino-pentanoate.yaml","methyl (2S)-4-methyl-2-(octanoylamino)pentanoate"]]},{"id":"UniProt:A4F7P5","l":"","na":1,"nb":1,"a":[["EC%3A2.1.1.254","erythromycin 3'-O-methyltransferase"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"UniProt:O05207","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RDC","RDC-binding site"]],"b":[["polyketides/radicicol.yaml","radicicol"]]},{"id":"UniProt:O42713","l":"","na":1,"nb":1,"a":[["EC%3A1.14.18.1","tyrosinase"]],"b":[["polyketides/kojic-acid.yaml","kojic acid"]]},{"id":"UniProt:P00523","l":"","na":1,"nb":1,"a":[["ELM%3AELME000013","MOD_TYR_CSK"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P02701.","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_B1R","B1R-binding site"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"UniProt:P09917.","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_AF7","AF7-binding site"]],"b":[["alkaloids/myxochelin-a.yaml","myxochelin A"]]},{"id":"UniProt:P0C8L0","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ZL5","ZL5-binding site"]],"b":[["unclassified/antimycin-a1b.yaml","antimycin A1B"]]},{"id":"UniProt:P11799","l":"","na":1,"nb":1,"a":[["Pfam%3APF16620","Unstructured linker between I-set domains 2 and 3 on MYLCK"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P28523","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_7M0","7M0-binding site"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"UniProt:P43250.","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SGV","SGV-binding site"]],"b":[["carbohydrates/sangivamycin.yaml","sangivamycin"]]},{"id":"UniProt:Q00024","l":"","na":1,"nb":1,"a":[["EC%3A1.14.18.1","tyrosinase"]],"b":[["polyketides/kojic-acid.yaml","kojic acid"]]},{"id":"UniProt:Q03181.","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_433","433-binding site"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"UniProt:Q13451","l":"","na":1,"nb":1,"a":[["ComplexPortal%3ACPX-13334","-"]],"b":[["polyketides/sirolimus.yaml","sirolimus"]]},{"id":"UniProt:Q28021","l":"","na":1,"nb":1,"a":[["Pfam%3APF08912","Rho Binding"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:Q5G940","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_JUG","JUG-binding site"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"UniProt:Q5G940.","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_JUG","JUG-binding site"]],"b":[["polyketides/emodin.yaml","emodin"]]}]} \ No newline at end of file +{"a":"ProteinTraitsMech","b":"NaturalProductMech","base":{"ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record=","NaturalProductMech":"https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/natural_products/"},"n":794,"by":{"NCBITaxon":487,"UniProt":156,"CHEBI":148,"RHEA":3},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":145,"nb":24,"a":[["IDPO%3A0000033","flexible linker"],["IDPO%3A0000014","order to disorder"],["IDPO%3A0000004","pre-molten globule"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":32,"nb":23,"a":[["Pfam%3APF25848","Rodlin protein"],["Pfam%3APF13420","Acetyltransferase (GNAT) domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF26381","BREX System ATPase PglY protein 5th domain"],["Pfam%3APF26382","BREX System ATPase PglY protein 6th domain"]],"b":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/melanin.yaml","melanin"],["alkaloids/undecylprodigiosin.yaml","undecylprodigiosin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/sapb.yaml","SapB"]]},{"id":"NCBITaxon:227321","l":"Emericella nidulans (strain FGSC A4 / ATCC 38163 / CBS 112.46 / NRRL 194 / M139)","na":44,"nb":22,"a":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF05270","Alpha-L-arabinofuranosidase B (ABFB) domain"],["Pfam%3APF07792","Docking domain of Afi1 for Arf3 in vesicle trafficking"],["Pfam%3APF09206","Alpha-L-arabinofuranosidase B, catalytic"],["Pfam%3APF27751","ATEG_07667 C-terminal domain"],["Pfam%3APF20238","Copper acquisition factor BIM1-like"]],"b":[["alkaloids/aspernidine-a.yaml","aspernidine A"],["alkaloids/aspyridone-a.yaml","aspyridone A"],["alkaloids/aspyridone-b.yaml","aspyridone B"],["alkaloids/cichorine.yaml","cichorine"],["alkaloids/terrequinone-a.yaml","terrequinone A"],["amino_acids_and_peptides/fellutamide-b.yaml","fellutamide B"]]},{"id":"NCBITaxon:77133","l":"uncultured bacterium","na":22,"nb":34,"a":[["TED%3AAF-A0A059X489-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A059X489-F1-model_v4_TED02"],["TED%3AAF-A0A059X769-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A059X769-F1-model_v4_TED01"],["TED%3AAF-K1YCK5-F1-model_v4_TED02","TED highly-symmetric fold AF-K1YCK5-F1-model_v4_TED02"],["TED%3AAF-K1Z363-F1-model_v4_TED05","TED highly-symmetric fold AF-K1Z363-F1-model_v4_TED05"],["TED%3AAF-K1ZVQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-K1ZVQ3-F1-model_v4_TED01"],["TED%3AAF-K2AKZ9-F1-model_v4_TED01","TED highly-symmetric fold AF-K2AKZ9-F1-model_v4_TED01"]],"b":[["alkaloids/borregomycin-a.yaml","borregomycin A"],["alkaloids/borregomycin-b.yaml","borregomycin B"],["alkaloids/borregomycin-c.yaml","borregomycin C"],["alkaloids/borregomycin-d.yaml","borregomycin D"],["alkaloids/erdasporine-a.yaml","erdasporine A"],["alkaloids/erdasporine-b.yaml","erdasporine B"]]},{"id":"UniProt:P43405","l":"","na":32,"nb":17,"a":[["GO%3A0019815","B cell receptor complex"],["GO%3A0042101","T cell receptor complex"],["GO%3A0016170","interleukin-15 receptor binding"],["GO%3A0004715","non-membrane spanning protein tyrosine kinase activity"],["GO%3A0035325","Toll-like receptor binding"],["GO%3A0002752","cell surface pattern recognition receptor signaling pathway"]],"b":[["alkaloids/cytochalasin-e.yaml","cytochalasin E"],["alkaloids/fumiquinazoline-a.yaml","fumiquinazoline A"],["alkaloids/fumiquinazoline-d.yaml","fumiquinazoline D"],["alkaloids/psilocybin.yaml","psilocybin"],["amino_acids_and_peptides/epoxomicin.yaml","epoxomicin"],["amino_acids_and_peptides/tubulysin-a.yaml","tubulysin A"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":16,"nb":27,"a":[["Pfam%3APF16822","SGNH hydrolase-like domain, acetyltransferase AlgX"],["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"],["Pfam%3APF11182","Alginate O-acetyl transferase AlgF"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF27129","Functional amyloid protein FapB/FapC family"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]],"b":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["alkaloids/pseudomonine.yaml","pseudomonine"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyreudione-c.yaml","pyreudione C"],["alkaloids/quinolobactin.yaml","quinolobactin"]]},{"id":"UniProt:O96028","l":"","na":27,"nb":16,"a":[["ComplexPortal%3ACPX-16414","-"],["CDD%3Acd20162","PWWP_NSD2_rpt1"],["CDD%3Acd21991","HMG-box_NSD2"],["CDD%3Acd15648","PHD1_NSD1_2"],["CDD%3Acd15651","PHD2_NSD2"],["CDD%3Acd15654","PHD3_NSD2"]],"b":[["alkaloids/cytochalasin-e.yaml","cytochalasin E"],["alkaloids/fumiquinazoline-d.yaml","fumiquinazoline D"],["amino_acids_and_peptides/epoxomicin.yaml","epoxomicin"],["amino_acids_and_peptides/tubulysin-a.yaml","tubulysin A"],["carbohydrates/puromycin.yaml","puromycin"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":16,"a":[["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["Pfam%3APF14562","Restriction endonuclease BglI"],["Pfam%3APF09195","Restriction endonuclease BglII/BglIII"],["Pfam%3APF09208","Restriction endonuclease MspI"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["amino_acids_and_peptides/ericin-s.yaml","ericin S"],["amino_acids_and_peptides/iturin.yaml","iturin"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"]]},{"id":"NCBITaxon:330879","l":"Aspergillus fumigatus (strain ATCC MYA-4609 / CBS 101355 / FGSC A1100 / Af293)","na":34,"nb":14,"a":[["Pfam%3APF22624","4'-phosphopantetheinyl transferase, N-terminal"],["Pfam%3APF13523","Acetyltransferase (GNAT) domain"],["Pfam%3APF28338","AclK C-terminal domain"],["Pfam%3APF23297","Highly reducing polyketide synthase sdgA, C-terminal ACP domain"],["Pfam%3APF11001","YDR124W-like, helical bundle domain"],["Pfam%3APF25312","Allergen Asp f 4-like domain"]],"b":[["alkaloids/fumigaclavine-c.yaml","fumigaclavine C"],["alkaloids/fumiquinazoline-a.yaml","fumiquinazoline A"],["alkaloids/fumiquinazoline-c.yaml","fumiquinazoline C"],["alkaloids/fumiquinazoline-d.yaml","fumiquinazoline D"],["alkaloids/hexadehydroastechrome.yaml","hexadehydroastechrome"],["polyketides/endocrocin.yaml","endocrocin"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":49554,"nb":13,"a":[["EC%3A1.1.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.1.98.-","With other, known, acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/congocidine.yaml","congocidine"],["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]]},{"id":"NCBITaxon:56","l":"Sorangium cellulosum","na":13,"nb":25,"a":[["TED%3AAF-A0A150SQB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A150SQB4-F1-model_v4_TED01"],["TED%3AAF-A0A2L0EP96-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0EP96-F1-model_v4_TED01"],["TED%3AAF-A0A2L0F1G5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0F1G5-F1-model_v4_TED01"],["TED%3AAF-A0A2L0F230-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0F230-F1-model_v4_TED01"],["TED%3AAF-A0A4P2R1W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P2R1W3-F1-model_v4_TED01"],["TED%3AAF-A0A150P579-F1-model_v4_TED02","TED novel fold AF-A0A150P579-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/microsclerodermin-m.yaml","microsclerodermin M"],["polyketides/ambruticin.yaml","ambruticin"],["polyketides/chivosazol.yaml","chivosazol"],["polyketides/chlorotonil-a.yaml","chlorotonil A"],["polyketides/disorazol-a.yaml","disorazol A"],["polyketides/etnangien.yaml","etnangien"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":19,"nb":12,"a":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"],["Pfam%3APF18173","Bacterial HORMA domain 2"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["Pfam%3APF27322","Cap8 HORMA domain"],["Pfam%3APF01526","Tn3 transposase DDE domain"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:341663","l":"","na":11,"nb":17,"a":[["Pfam%3APF27751","ATEG_07667 C-terminal domain"],["Pfam%3APF28386","BfoA family C-terminal domain"],["Pfam%3APF03879","Cgr1 family"],["Pfam%3APF22621","CurL-like, PKS C-terminal"],["Pfam%3APF18558","Methyltransferase, Helix-turn-helix domain"],["Pfam%3APF06355","Aegerolysin"]],"b":[["alkaloids/asterriquinone-ct5.yaml","asterriquinone CT5"],["alkaloids/dihydroisoflavipucine.yaml","dihydroisoflavipucine"],["alkaloids/isoflavipucine.yaml","isoflavipucine"],["polyketides/citreoviridin.yaml","citreoviridin"],["polyketides/geodin.yaml","geodin"],["polyketides/terreic-acid.yaml","terreic acid"]]},{"id":"NCBITaxon:3702","l":"Arabidopsis thaliana","na":18772,"nb":10,"a":[["EC%3A1.1.99.-","With other acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.14.11.-","With 2-oxoglutarate as one donor, and incorporation of one atom each of oxygen into both donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.14.-","With reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/itaconic-acid.yaml","itaconic acid"],["terpenoids/ent-quiannulatene.yaml","(-)-ent-quiannulatene"],["terpenoids/euphol.yaml","euphol"],["terpenoids/marneral.yaml","marneral"],["terpenoids/thaliandiol.yaml","thaliandiol"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa (strain ATCC 15692 / DSM 22644 / CIP 104116 / JCM 14847 / LMG 12228 / 1C / PRS 101 / PAO1)","na":162,"nb":10,"a":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF06750","Bacterial Peptidase A24 N-terminal domain"],["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF28403","Aconitase X second domain"],["Pfam%3APF28406","Aconitase X third domain"],["Pfam%3APF04412","Aconitase X first domain"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae (strain ATCC 42149 / RIB 40)","na":27,"nb":10,"a":[["Pfam%3APF09260","Alpha-amylase, domain C"],["Pfam%3APF28338","AclK C-terminal domain"],["Pfam%3APF09206","Alpha-L-arabinofuranosidase B, catalytic"],["Pfam%3APF28380","Sesquiterpene cyclase astC-like C-terminal domain"],["Pfam%3APF13364","Beta-galactosidase second all-beta domain"],["Pfam%3APF10435","Beta-galactosidase, domain 2"]],"b":[["fatty_acids/oryzine-a.yaml","oryzine A"],["polyketides/kojic-acid.yaml","kojic acid"],["polyketides/oryzine-b.yaml","oryzine B"],["polyketides/ywa1.yaml","YWA1"],["shikimates_and_phenylpropanoids/2-4-dihydroxy-3-methoxypropiophenone.yaml","2,4'-dihydroxy-3'-methoxypropiophenone"],["shikimates_and_phenylpropanoids/8-methyldiaporthin.yaml","8-methyldiaporthin"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":10,"nb":11,"a":[["Pfam%3APF17433","Glycosyl hydrolase family 49 N-terminal Ig-like domain"],["PROSITE%3APS00820","Glucoamylase active site region signature"],["PROSITE%3APS00920","Nitrilases / cyanide hydratase signature 1"],["PROSITE%3APS00502","Polygalacturonase active site"],["Pfam%3APF18841","Beta solenoid repeat from Dextranase"],["Pfam%3APF03718","Glycosyl hydrolase family 49"]],"b":[["amino_acids_and_peptides/ferrichrome.yaml","ferrichrome"],["polyketides/1-2-3-5-10-tetrahydroxy-7-methoxy-4-oxo-1-2-3-4-tetrahydroanthracen-2-yl-pentane.yaml","1-(2,3,5,10-tetrahydroxy-7-methoxy-4-oxo-1,2,3,4-tetrahydroanthracen-2-yl)pentane-2,4-dione"],["polyketides/azanigerone-a.yaml","azanigerone A"],["polyketides/campyrone-b.yaml","campyrone B"],["polyketides/desmethyl-tan-1612.yaml","desmethyl TAN-1612"],["polyketides/fumonisin-b2.yaml","fumonisin B2"]]},{"id":"NCBITaxon:242507","l":"","na":10,"nb":10,"a":[["Pfam%3APF28293","Biotrophy-associated secreted protein 2"],["Pfam%3APF28414","Biotrophy-associated secreted protein 4"],["Pfam%3APF22997","Chitin synthase 4-like domain"],["Pfam%3APF27979","CON7 transcription factor helical domain"],["Pfam%3APF26980","Dicer-like protein 2, dsRNA binding domain"],["Pfam%3APF11327","Egh16-like virulence factor"]],"b":[["polyketides/1-alpha-l-2-o-methyl-6-deoxymannopyranosyloxy-3-6-8-trimethoxynaphthalene.yaml","1-(alpha-l-(2-O-methyl)-6-deoxymannopyranosyloxy)-3,6,8-trimethoxynaphthalene"],["polyketides/10-11-dihydroxymagnaporthepyrone.yaml","10,11-dihydroxymagnaporthepyrone"],["polyketides/12-13-dihydroxymagnaporthepyrone.yaml","12,13-dihydroxymagnaporthepyrone"],["polyketides/epipyriculol.yaml","epipyriculol"],["polyketides/naphthalene-1-3-6-8-tetrol.yaml","naphthalene-1,3,6,8-tetrol"],["polyketides/nectriapyrone-c.yaml","nectriapyrone C"]]},{"id":"UniProt:P18054","l":"","na":25,"nb":9,"a":[["EC%3A1.13.11.31","arachidonate 12-lipoxygenase"],["EC%3A1.13.11.33","arachidonate 15-lipoxygenase"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"],["RHEA%3A10428","(5Z,8Z,11Z,14Z)-eicosatetraenoate + O2 = (12S)-hydroperoxy-(5Z,8Z,10E,14Z)-eicosatetraenoate"],["RHEA%3A16869","(5Z,8Z,11Z,14Z)-eicosatetraenoate + O2 = (15S)-hydroperoxy-(5Z,8Z,11Z,13E)-eicosatetraenoate"],["GO%3A0004052","arachidonate 12(S)-lipoxygenase activity"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/actinonin.yaml","actinonin"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"],["fatty_acids/triacsin-c.yaml","triacsin C"],["polyketides/terreic-acid.yaml","terreic acid"],["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:Q96RU2","l":"","na":14,"nb":9,"a":[["ComplexPortal%3ACPX-15530","-"],["ComplexPortal%3ACPX-15595","-"],["ComplexPortal%3ACPX-15768","-"],["ComplexPortal%3ACPX-24431","-"],["InterPro%3AIPR054108","Ubiquitin carboxyl-terminal hydrolase 25/28, UIM"],["CDD%3Acd02665","Peptidase_C19I"]],"b":[["alkaloids/esmeraldin.yaml","esmeraldin"],["alkaloids/fervenulin.yaml","fervenulin"],["alkaloids/neocarazostatin-a.yaml","neocarazostatin A"],["alkaloids/nybomycin.yaml","nybomycin"],["amino_acids_and_peptides/tyrocidine-a.yaml","tyrocidine A"],["polyketides/asukamycin.yaml","asukamycin"]]},{"id":"UniProt:O95398","l":"","na":20,"nb":8,"a":[["ComplexPortal%3ACPX-10829","-"],["ComplexPortal%3ACPX-12123","-"],["ComplexPortal%3ACPX-12892","-"],["ComplexPortal%3ACPX-13579","-"],["ComplexPortal%3ACPX-13585","-"],["ComplexPortal%3ACPX-14152","-"]],"b":[["alkaloids/8-azaguanine.yaml","8-azaguanine"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/thiostrepton.yaml","thiostrepton"],["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"],["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK1622","na":8,"nb":12,"a":[["Pfam%3APF27281","DevT C-terminal domain"],["Pfam%3APF27372","DevT N-terminal domain"],["Pfam%3APF17762","ParB HTH domain"],["Pfam%3APF01930","Domain of unknown function DUF83"],["Pfam%3APF09559","Cas6 Crispr"],["Pfam%3APF01905","CRISPR-associated negative auto-regulator DevR/Csa2"]],"b":[["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"],["amino_acids_and_peptides/myxochromide-a.yaml","myxochromide A"],["amino_acids_and_peptides/myxoprincomide-c506.yaml","myxoprincomide-c506"]]},{"id":"NCBITaxon:229533","l":"Fusarium graminearum PH-1","na":8,"nb":11,"a":[["Pfam%3APF18388","Atg29 N-terminal domain"],["Pfam%3APF27599","CcsR C-terminal domain"],["Pfam%3APF07110","EthD domain"],["Pfam%3APF11700","Vacuole effluxer Atg22 like"],["Pfam%3APF28504","Gramillins biosynthetic cluster protein GRA5"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"]],"b":[["alkaloids/chrysogine.yaml","chrysogine"],["amino_acids_and_peptides/fusaoctaxin-a.yaml","fusaoctaxin A"],["polyketides/aurofusarin.yaml","aurofusarin"],["polyketides/prolipyrone-b.yaml","prolipyrone B"],["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"],["terpenoids/15-acetyldeoxynivalenol.yaml","15-acetyldeoxynivalenol"]]},{"id":"NCBITaxon:1911","l":"Streptomyces griseus","na":7,"nb":32,"a":[["Pfam%3APF13207","AAA domain"],["Pfam%3APF27054","Beta-methylindole-3-pyruvate reductase C-terminal domain"],["Pfam%3APF26558","3-dehydroquinate synthase II C-terminal domain"],["Pfam%3APF01959","3-dehydroquinate synthase II N-terminal domain"],["Pfam%3APF13459","4Fe-4S single cluster domain"],["Pfam%3APF04655","Aminoglycoside/hydroxyurea antibiotic resistance kinase"]],"b":[["alkaloids/cycloheximide.yaml","cycloheximide"],["alkaloids/grixazone-a.yaml","grixazone A"],["alkaloids/iminimycin-a.yaml","iminimycin A"],["alkaloids/iminimycin-b.yaml","iminimycin B"],["alkaloids/indolmycin.yaml","indolmycin"],["alkaloids/melanin.yaml","melanin"]]},{"id":"NCBITaxon:223283","l":"Pseudomonas syringae pv. tomato (strain ATCC BAA-871 / DC3000)","na":14,"nb":7,"a":[["IDPO%3A0000030","entropic chain"],["IDPO%3A0000037","molecular recognition display site"],["Pfam%3APF16847","Avirulence AvrPtoB, BAK1-binding domain"],["Pfam%3APF09046","AvrPtoB E3 ubiquitin ligase"],["Pfam%3APF25965","ALG44 beta-barrel domain"],["Pfam%3APF25964","ALG44, barrel-sandwich hybrid domain"]],"b":[["alkaloids/yersiniabactin.yaml","yersiniabactin"],["amino_acids_and_peptides/syringafactin-a.yaml","syringafactin A"],["amino_acids_and_peptides/syringafactin-b.yaml","syringafactin B"],["amino_acids_and_peptides/syringafactin-c.yaml","syringafactin C"],["amino_acids_and_peptides/syringafactin-d.yaml","syringafactin D"],["amino_acids_and_peptides/syringafactin-e.yaml","syringafactin E"]]},{"id":"NCBITaxon:27334","l":"Penicillium expansum","na":7,"nb":10,"a":[["Pfam%3APF11786","Aft1 HRA domain"],["Pfam%3APF11787","Aft1 HRR domain"],["Pfam%3APF11785","Aft1 osmotic stress response (OSM) domain"],["Pfam%3APF14856","Pathogen effector; putative necrosis-inducing factor"],["PROSITE%3APS00624","GMC oxidoreductases signature 2"],["TED%3AAF-A0A0A2ILJ4-F1-model_v4_TED03","TED novel fold AF-A0A0A2ILJ4-F1-model_v4_TED03"]],"b":[["alkaloids/chaetoglobosin-a.yaml","chaetoglobosin A"],["alkaloids/chaetoglobosin-c.yaml","chaetoglobosin C"],["alkaloids/communesin-a.yaml","communesin A"],["alkaloids/communesin-b.yaml","communesin B"],["alkaloids/communesin-c.yaml","communesin C"],["alkaloids/communesin-d.yaml","communesin D"]]},{"id":"NCBITaxon:2024858","l":"","na":7,"nb":7,"a":[["TED%3AAF-A0A2D9T9L6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9T9L6-F1-model_v4_TED01"],["TED%3AAF-A0A2E0T9R7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0T9R7-F1-model_v4_TED01"],["TED%3AAF-A0A891ZV95-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A891ZV95-F1-model_v4_TED01"],["TED%3AAF-A0A2D9SYS7-F1-model_v4_TED02","TED novel fold AF-A0A2D9SYS7-F1-model_v4_TED02"],["TED%3AAF-A0A2D9TFN8-F1-model_v4_TED02","TED novel fold AF-A0A2D9TFN8-F1-model_v4_TED02"],["TED%3AAF-A0A2E0TMV1-F1-model_v4_TED03","TED novel fold AF-A0A2E0TMV1-F1-model_v4_TED03"]],"b":[["amino_acids_and_peptides/sandarazol-a.yaml","sandarazol A"],["amino_acids_and_peptides/sandarazol-c.yaml","sandarazol C"],["amino_acids_and_peptides/sandarazol-d.yaml","sandarazol D"],["amino_acids_and_peptides/sandarazol-f.yaml","sandarazol F"],["amino_acids_and_peptides/sandarazol-g.yaml","sandarazol G"],["unclassified/sandarazol-b.yaml","sandarazol B"]]},{"id":"UniProt:Q14694","l":"","na":27,"nb":6,"a":[["ComplexPortal%3ACPX-11609","-"],["ComplexPortal%3ACPX-11855","-"],["ComplexPortal%3ACPX-12223","-"],["ComplexPortal%3ACPX-12431","-"],["ComplexPortal%3ACPX-12812","-"],["ComplexPortal%3ACPX-13824","-"]],"b":[["alkaloids/esmeraldin.yaml","esmeraldin"],["alkaloids/fervenulin.yaml","fervenulin"],["alkaloids/nybomycin.yaml","nybomycin"],["polyketides/asukamycin.yaml","asukamycin"],["polyketides/dehydrorabelomycin.yaml","dehydrorabelomycin"],["polyketides/flaviolin.yaml","flaviolin"]]},{"id":"UniProt:Q99700","l":"","na":20,"nb":6,"a":[["ComplexPortal%3ACPX-12180","-"],["ComplexPortal%3ACPX-12321","-"],["ComplexPortal%3ACPX-12947","-"],["ComplexPortal%3ACPX-13401","-"],["ComplexPortal%3ACPX-15183","-"],["ComplexPortal%3ACPX-17860","-"]],"b":[["alkaloids/8-azaguanine.yaml","8-azaguanine"],["alkaloids/cycloheximide.yaml","cycloheximide"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"],["unclassified/antimycin-a.yaml","antimycin A"],["unclassified/echinomycin.yaml","echinomycin"]]},{"id":"NCBITaxon:1916","l":"Streptomyces lividans","na":6,"nb":18,"a":[["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["Pfam%3APF27079","SpdB plasmid transfer protein, C-terminal HTH domain"],["Pfam%3APF27072","KilB plasmid transfer protein"],["Pfam%3APF08386","TAP-like protein"],["PROSITE%3APS00999","Streptomyces subtilisin-type inhibitors signature"],["Pfam%3APF03664","Glycosyl hydrolase family 62"]],"b":[["alkaloids/rebeccamycin.yaml","rebeccamycin"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["amino_acids_and_peptides/dehydroxynocardamine.yaml","dehydroxynocardamine"],["amino_acids_and_peptides/goadsporin.yaml","goadsporin"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"]]},{"id":"NCBITaxon:4577","l":"Zea mays","na":18,"nb":6,"a":[["IDPO%3A0000002","disorder"],["Pfam%3APF14861","Plant antimicrobial peptide"],["Pfam%3APF02041","Auxin binding protein"],["Pfam%3APF25436","BSD2 cysteine rich domain"],["Pfam%3APF23493","Cysteinyl-tRNA ligase anticodon binding domain"],["Pfam%3APF03330","Lytic transglycolase"]],"b":[["alkaloids/dimboa.yaml","DIMBOA"],["polyketides/emodin.yaml","emodin"],["terpenoids/zealexin-a1.yaml","zealexin A1"],["terpenoids/zealexin-b3.yaml","zealexin B3"],["terpenoids/zealexin-c2.yaml","zealexin C2"],["unclassified/aflatoxin.yaml","aflatoxin"]]},{"id":"UniProt:P40818","l":"","na":16,"nb":6,"a":[["ComplexPortal%3ACPX-13765","-"],["ComplexPortal%3ACPX-16972","-"],["ComplexPortal%3ACPX-18301","-"],["ComplexPortal%3ACPX-19098","-"],["ComplexPortal%3ACPX-24015","-"],["GO%3A0004843","cysteine-type deubiquitinase activity"]],"b":[["alkaloids/esmeraldin.yaml","esmeraldin"],["alkaloids/fervenulin.yaml","fervenulin"],["alkaloids/neocarazostatin-a.yaml","neocarazostatin A"],["alkaloids/nybomycin.yaml","nybomycin"],["polyketides/dehydrorabelomycin.yaml","dehydrorabelomycin"],["polyketides/flaviolin.yaml","flaviolin"]]},{"id":"NCBITaxon:321614","l":"","na":6,"nb":12,"a":[["Pfam%3APF11786","Aft1 HRA domain"],["Pfam%3APF11787","Aft1 HRR domain"],["Pfam%3APF26980","Dicer-like protein 2, dsRNA binding domain"],["Pfam%3APF18973","Putative Chitin binding like"],["Pfam%3APF25326","SRB8 ARM-like domain"],["TED%3AAF-A0A7U2I0S3-F1-model_v4_TED02","TED novel fold AF-A0A7U2I0S3-F1-model_v4_TED02"]],"b":[["alkaloids/phomacin-d.yaml","phomacin D"],["alkaloids/phomacin-e.yaml","phomacin E"],["polyketides/betaenone-b.yaml","betaenone B"],["polyketides/betaenone-c.yaml","betaenone C"],["polyketides/compound-3-2.yaml","compound 3"],["polyketides/compound-5-2.yaml","compound 5"]]},{"id":"UniProt:Q70CQ3","l":"","na":11,"nb":6,"a":[["ComplexPortal%3ACPX-14824","-"],["ComplexPortal%3ACPX-15800","-"],["ComplexPortal%3ACPX-20518","-"],["ComplexPortal%3ACPX-22415","-"],["ComplexPortal%3ACPX-22784","-"],["GO%3A0035871","protein K11-linked deubiquitination"]],"b":[["alkaloids/esmeraldin.yaml","esmeraldin"],["alkaloids/fervenulin.yaml","fervenulin"],["alkaloids/holomycin.yaml","holomycin"],["alkaloids/neocarazostatin-a.yaml","neocarazostatin A"],["polyketides/flaviolin.yaml","flaviolin"],["polyketides/nigericin.yaml","nigericin"]]},{"id":"UniProt:P09936","l":"","na":10,"nb":6,"a":[["GO%3A0031694","alpha-2A adrenergic receptor binding"],["GO%3A0008242","omega peptidase activity"],["InterPro%3AIPR057254","Ubiquitin carboxyl-terminal hydrolase family 1, cysteine active-site"],["CDD%3Acd09616","Peptidase_C12_UCH_L1_L3"],["InterPro%3AIPR001578","Peptidase C12, ubiquitin carboxyl-terminal hydrolase"],["Pfam%3APF01088","Ubiquitin carboxyl-terminal hydrolase, family 1"]],"b":[["alkaloids/esmeraldin.yaml","esmeraldin"],["alkaloids/fervenulin.yaml","fervenulin"],["polyketides/asukamycin.yaml","asukamycin"],["polyketides/chelocardin.yaml","chelocardin"],["polyketides/dehydrorabelomycin.yaml","dehydrorabelomycin"],["polyketides/flaviolin.yaml","flaviolin"]]},{"id":"NCBITaxon:10090","l":"Mus musculus","na":45870,"nb":5,"a":[["EC%3A1.1.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.1.98.-","With other, known, acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"],["terpenoids/carotene.yaml","β-carotene"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":46,"nb":5,"a":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF13166","AAA domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF27533","CapK C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"],["unclassified/leuvalin.yaml","leuvalin"],["unclassified/phevalin.yaml","phevalin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":5,"nb":31,"a":[["TED%3AAF-A0A4Y6CF56-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y6CF56-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6CNZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Y6CNZ1-F1-model_v4_TED02"],["TED%3AAF-A0A7Y4IIX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4IIX4-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6B7F9-F1-model_v4_TED01","TED novel fold AF-A0A4Y6B7F9-F1-model_v4_TED01"],["TED%3AAF-A0A7Y4IR70-F1-model_v4_TED01","TED novel fold AF-A0A7Y4IR70-F1-model_v4_TED01"]],"b":[["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["alkaloids/myxofacycline-e.yaml","myxofacycline E"],["alkaloids/myxofacycline-f.yaml","myxofacycline F"],["alkaloids/myxofacycline-g.yaml","myxofacycline G"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":25,"nb":5,"a":[["Pfam%3APF13372","Alginate export"],["Pfam%3APF25965","ALG44 beta-barrel domain"],["Pfam%3APF25964","ALG44, barrel-sandwich hybrid domain"],["Pfam%3APF16844","Dinitrogenase iron-molybdenum cofactor, N-terminal"],["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"]],"b":[["alkaloids/aminochelin.yaml","aminochelin"],["alkaloids/azotochelin.yaml","azotochelin"],["alkaloids/protochelin.yaml","protochelin"],["amino_acids_and_peptides/azotobactin-d.yaml","azotobactin D"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"UniProt:O14656","l":"","na":21,"nb":5,"a":[["ComplexPortal%3ACPX-21660","-"],["ComplexPortal%3ACPX-26140","-"],["ComplexPortal%3ACPX-26338","Cytoplasmic organelles"],["ComplexPortal%3ACPX-26301","Secretory organelles"],["GO%3A0008092","cytoskeletal protein binding"],["GO%3A0019894","kinesin binding"]],"b":[["alkaloids/chloramphenicol.yaml","chloramphenicol"],["alkaloids/cycloheximide.yaml","cycloheximide"],["alkaloids/tioguanine.yaml","tioguanine"],["amino_acids_and_peptides/cyclosporin-a.yaml","cyclosporin A"],["polyketides/daunorubicin.yaml","daunorubicin"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":20,"nb":5,"a":[["Pfam%3APF14535","AMP-binding enzyme C-terminal domain"],["Pfam%3APF13442","Cytochrome C oxidase, cbb3-type, subunit III"],["Pfam%3APF22247","Catechol 2,3-dioxygenase-like N-terminal domain"],["Pfam%3APF25371","Domain of unknown function (DUF7884)"],["Pfam%3APF19301","LigXa C-terminal domain like"],["Pfam%3APF12729","Four helix bundle sensory module for signal transduction"]],"b":[["alkaloids/promysalin.yaml","promysalin"],["polyketides/pseudopyronine-a.yaml","pseudopyronine A"],["polyketides/pseudopyronine-b.yaml","pseudopyronine B"],["unclassified/putisolvin-iii.yaml","putisolvin III"],["unclassified/putisolvin-v.yaml","putisolvin V"]]},{"id":"NCBITaxon:3562","l":"Spinacia oleracea","na":13,"nb":5,"a":[["Pfam%3APF21329","Peptidyl-prolyl cis-trans isomerase CYP38-like, PsbQ-like domain"],["Pfam%3APF02941","Ferredoxin thioredoxin reductase variable alpha chain"],["Pfam%3APF02943","Ferredoxin thioredoxin reductase catalytic beta chain"],["Pfam%3APF17257","Family of unknown function (DUF5323)"],["PROSITE%3APS00567","Phosphoribulokinase signature"],["PROSITE%3APS01026","Photosystem I psaG and psaK proteins signature"]],"b":[["terpenoids/yossoside-i.yaml","Yossoside I"],["terpenoids/yossoside-ii.yaml","Yossoside II"],["terpenoids/yossoside-iii.yaml","Yossoside III"],["terpenoids/yossoside-iv.yaml","Yossoside IV"],["terpenoids/yossoside-v.yaml","Yossoside V"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":13,"nb":5,"a":[["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF03173","Putative carbohydrate binding domain"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"],["Pfam%3APF06438","Heme-binding protein A (HasA)"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF05247","Flagellar transcriptional activator (FlhD)"]],"b":[["alkaloids/prodigiosin-2.yaml","prodigiosin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/serratiochelin-a.yaml","serratiochelin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["polyketides/oocydin-a.yaml","oocydin A"]]},{"id":"UniProt:P36969","l":"","na":12,"nb":5,"a":[["ComplexPortal%3ACPX-18066","-"],["GO%3A0047066","phospholipid-hydroperoxide glutathione peroxidase activity"],["GO%3A0008430","selenium binding"],["GO%3A0034599","cellular response to oxidative stress"],["InterPro%3AIPR029759","Glutathione peroxidase active site"],["InterPro%3AIPR029760","Glutathione peroxidase conserved site"]],"b":[["alkaloids/ergotamine.yaml","ergotamine"],["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"],["polyketides/pentamycin.yaml","pentamycin"],["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"],["unclassified/antimycin-a.yaml","antimycin A"]]},{"id":"NCBITaxon:5507","l":"Fusarium oxysporum","na":5,"nb":11,"a":[["Pfam%3APF02015","Glycosyl hydrolase family 45"],["PROSITE%3APS01140","Glycosyl hydrolases family 45 active site"],["TED%3AAF-A0A2H3TJY2-F1-model_v4_TED01","TED novel fold AF-A0A2H3TJY2-F1-model_v4_TED01"],["TED%3AAF-A0A420N954-F1-model_v4_TED01","TED novel fold AF-A0A420N954-F1-model_v4_TED01"],["TED%3AAF-A0A420P6J4-F1-model_v4_TED01","TED novel fold AF-A0A420P6J4-F1-model_v4_TED01"]],"b":[["alkaloids/fusaric-acid.yaml","fusaric acid"],["polyketides/bikaverin.yaml","bikaverin"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"],["polyketides/fumonisin-c1.yaml","Fumonisin C1"],["polyketides/fumonisin-c2.yaml","Fumonisin C2"],["polyketides/fumonisin-c3.yaml","Fumonisin C3"]]},{"id":"NCBITaxon:953739","l":"Streptomyces venezuelae ATCC 10712","na":5,"nb":10,"a":[["Pfam%3APF11583","P-aminobenzoate N-oxygenase AurF"],["Pfam%3APF18456","Diiron non-heme beta-hydroxylase N-terminal domain"],["Pfam%3APF07931","Chloramphenicol phosphotransferase-like protein"],["Pfam%3APF02650","WhiA C-terminal HTH domain"],["Pfam%3APF14527","WhiA LAGLIDADG-like domain"]],"b":[["alkaloids/chloramphenicol.yaml","chloramphenicol"],["alkaloids/gaburedin-d.yaml","gaburedin D"],["alkaloids/watasemycin-a.yaml","watasemycin A"],["alkaloids/watasemycin-b.yaml","watasemycin B"],["amino_acids_and_peptides/gaburedin-a.yaml","gaburedin A"],["amino_acids_and_peptides/gaburedin-b.yaml","gaburedin B"]]},{"id":"NCBITaxon:63737","l":"Nostoc punctiforme PCC 73102","na":5,"nb":7,"a":[["Pfam%3APF11266","Long-chain fatty aldehyde decarbonylase"],["Pfam%3APF21808","Bacterial dynamin-like protein, helical domain"],["Pfam%3APF18460","Heterocyst differentiation regulator C-terminal Hood domain"],["Pfam%3APF13619","KTSC domain"],["PROSITE%3APS01026","Photosystem I psaG and psaK proteins signature"]],"b":[["amino_acids_and_peptides/microviridin-n3.yaml","microviridin N3"],["amino_acids_and_peptides/microviridin-n4.yaml","microviridin N4"],["amino_acids_and_peptides/microviridin-n6.yaml","microviridin N6"],["amino_acids_and_peptides/microviridin-n7.yaml","microviridin N7"],["amino_acids_and_peptides/microviridin-n8.yaml","microviridin N8"],["amino_acids_and_peptides/microviridin-n9.yaml","microviridin N9"]]},{"id":"NCBITaxon:5081","l":"","na":5,"nb":6,"a":[["Pfam%3APF13364","Beta-galactosidase second all-beta domain"],["Pfam%3APF10435","Beta-galactosidase, domain 2"],["Pfam%3APF13363","Beta-galactosidase, domain 3"],["Pfam%3APF01301","Glycosyl hydrolases family 35"],["PROSITE%3APS01182","Glycosyl hydrolases family 35 putative active site"]],"b":[["alkaloids/citridone-a.yaml","citridone A"],["alkaloids/citridone-b-2.yaml","citridone B'"],["alkaloids/citridone-b.yaml","citridone B"],["alkaloids/cj-15-696.yaml","CJ-15,696"],["alkaloids/cj-16-173.yaml","CJ-16,173"],["polyketides/gregatin-a.yaml","gregatin A"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":6,"nb":5,"a":[["Pfam%3APF02929","Beta galactosidase small chain"],["Pfam%3APF27279","Fumarate--diaminopropanoate ligase C-terminal domain"],["Pfam%3APF18024","Helix-turn-helix domain"],["Pfam%3APF16353","Beta-galactosidase, domain 4"],["PROSITE%3APS00594","Aromatic amino acids permeases signature"],["PROSITE%3APS00853","Beta-eliminating lyases pyridoxal-phosphate attachment site"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/andrimid.yaml","andrimid"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/pantocin-a.yaml","pantocin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:43658","l":"Pseudoalteromonas rubra","na":5,"nb":5,"a":[["proteintraitsmech%3AELIFE109154_Orn_monoox","Metallophore-associated ornithine N5-monooxygenase family"],["TED%3AAF-A0A0F4QZE1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0F4QZE1-F1-model_v4_TED02"],["TED%3AAF-A0A0U3GWJ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0U3GWJ2-F1-model_v4_TED01"],["TED%3AAF-A0A0F4QSG0-F1-model_v4_TED02","TED novel fold AF-A0A0F4QSG0-F1-model_v4_TED02"],["TED%3AAF-A0A0L0EPH9-F1-model_v4_TED03","TED novel fold AF-A0A0L0EPH9-F1-model_v4_TED03"]],"b":[["alkaloids/prodigiosin.yaml","prodigiosin"],["polyketides/nonyltyrazolone.yaml","nonyltyrazolone"],["polyketides/undecyltyrazolone.yaml","undecyltyrazolone"],["shikimates_and_phenylpropanoids/z-6-undecenyltyrazolone.yaml","(Z)-ω-6-undecenyltyrazolone"],["unclassified/heptyltyrazolone.yaml","heptyltyrazolone"]]},{"id":"NCBITaxon:6239","l":"Caenorhabditis elegans","na":9682,"nb":4,"a":[["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.14.14.-","With reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.17.-","With reduced ascorbate as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.19.-","With oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water"],["EC%3A1.14.99.-","Miscellaneous"]],"b":[["alkaloids/biotin.yaml","biotin"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/itaconic-acid.yaml","itaconic acid"],["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"]]},{"id":"NCBITaxon:10116","l":"Rattus norvegicus","na":1002,"nb":4,"a":[["IDPO%3A0000011","disorder to order"],["IDPO%3A0000030","entropic chain"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000033","flexible linker"],["IDPO%3A0000041","glycosylation display site"],["IDPO%3A0000003","molten globule"]],"b":[["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/methylarcyriarubin.yaml","methylarcyriarubin"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]]},{"id":"NCBITaxon:39947","l":"Oryza sativa subsp. japonica","na":158,"nb":4,"a":[["Pfam%3APF03157","High molecular weight glutenin subunit"],["Pfam%3APF26249","RdRP3/4/5, N-terminal four helical bundle domain"],["Pfam%3APF23242","TRIP13-like, AAA+ ATPase lid C-terminal domain"],["Pfam%3APF26791","AAPxQ domain"],["Pfam%3APF24922","Acyl-CoA-binding domain-containing protein 4-6, C-terminal"],["Pfam%3APF04864","Allinase"]],"b":[["terpenoids/10-oxodepressin.yaml","10-Oxodepressin"],["terpenoids/momilactone-b.yaml","momilactone B"],["terpenoids/oryzalides.yaml","oryzalides"],["terpenoids/phytocassane.yaml","phytocassane"]]},{"id":"UniProt:P04637","l":"","na":55,"nb":4,"a":[["ComplexPortal%3ACPX-12293","-"],["ComplexPortal%3ACPX-12528","-"],["ComplexPortal%3ACPX-13029","-"],["ComplexPortal%3ACPX-14009","-"],["ComplexPortal%3ACPX-16240","-"],["ComplexPortal%3ACPX-21406","-"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["polyketides/herboxidiene.yaml","herboxidiene"],["terpenoids/zeaxanthin.yaml","zeaxanthin"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":4,"nb":30,"a":[["Pfam%3APF11720","Peptidase inhibitor I78 family"],["Pfam%3APF12296","Hydrophobic surface binding protein A"],["TED%3AAF-A0A3M7JGA1-F1-model_v4_TED02","TED novel fold AF-A0A3M7JGA1-F1-model_v4_TED02"],["TED%3AAF-A0A7G5JNS3-F1-model_v4_TED03","TED novel fold AF-A0A7G5JNS3-F1-model_v4_TED03"]],"b":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["amino_acids_and_peptides/ditryptophenaline.yaml","(-)-ditryptophenaline"],["amino_acids_and_peptides/imizoquin-a.yaml","imizoquin A"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":30,"nb":4,"a":[["Pfam%3APF08787","Alginate lyase"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF08218","Citrate lyase ligase C-terminal domain"],["Pfam%3APF13727","CoA-binding domain"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["Pfam%3APF20714","DpiA-like helix-turn-helix domain"]],"b":[["alkaloids/tilivalline.yaml","tilivalline"],["amino_acids_and_peptides/colibactin.yaml","colibactin"],["amino_acids_and_peptides/klebsidin.yaml","klebsidin"],["carbohydrates/capsular-polysaccharide-2.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":23,"nb":4,"a":[["Pfam%3APF08878","HamA"],["Pfam%3APF05791","Bacillus haemolytic enterotoxin (HBL)"],["Pfam%3APF10803","Spore germination GerPB"],["Pfam%3APF10737","Spore germination protein GerPC"],["Pfam%3APF10970","Spore germination protein GerPE"],["Pfam%3APF07486","Cell Wall Hydrolase"]],"b":[["alkaloids/zwittermicin-a.yaml","zwittermicin A"],["amino_acids_and_peptides/livipeptin.yaml","Livipeptin"],["carbohydrates/tunicamycin.yaml","tunicamycin"],["unclassified/cereulide.yaml","cereulide"]]},{"id":"NCBITaxon:378806","l":"Stigmatella aurantiaca DW4/3-1","na":4,"nb":17,"a":[["TED%3AAF-Q098I8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q098I8-F1-model_v4_TED01"],["TED%3AAF-E3FRW3-F1-model_v4_TED01","TED novel fold AF-E3FRW3-F1-model_v4_TED01"],["TED%3AAF-E3G0M4-F1-model_v4_TED01","TED novel fold AF-E3G0M4-F1-model_v4_TED01"],["TED%3AAF-Q08VS7-F1-model_v4_TED01","TED novel fold AF-Q08VS7-F1-model_v4_TED01"]],"b":[["polyketides/aurafuron-a.yaml","aurafuron A"],["polyketides/dawenol.yaml","dawenol"],["unclassified/dkxanthene-504.yaml","dkxanthene 504"],["unclassified/dkxanthene-508.yaml","dkxanthene 508"],["unclassified/dkxanthene-518.yaml","dkxanthene 518"],["unclassified/dkxanthene-520.yaml","dkxanthene 520"]]},{"id":"NCBITaxon:5518","l":"Fusarium graminearum","na":4,"nb":14,"a":[["Pfam%3APF09118","Galactose oxidase-like, Early set domain"],["Pfam%3APF07250","Glyoxal oxidase N-terminus"],["TED%3AAF-A0A2H3FY84-F1-model_v4_TED03","TED novel fold AF-A0A2H3FY84-F1-model_v4_TED03"],["TED%3AAF-A0A2H3G191-F1-model_v4_TED01","TED novel fold AF-A0A2H3G191-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/fusaoctaxin-a.yaml","fusaoctaxin A"],["polyketides/aurofusarin.yaml","aurofusarin"],["polyketides/fusarielin-h.yaml","fusarielin H"],["polyketides/gibepyrone-a.yaml","gibepyrone A"],["polyketides/prolipyrone-b.yaml","prolipyrone B"],["polyketides/zearalenone.yaml","zearalenone"]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":4,"nb":13,"a":[["Pfam%3APF16861","Carbamoyltransferase C-terminus"],["Pfam%3APF02543","Carbamoyltransferase N-terminus"],["Pfam%3APF01960","ArgJ family"],["Pfam%3APF07467","Beta-lactamase inhibitor (BLIP)"]],"b":[["alkaloids/holomycin.yaml","holomycin"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/2-formyloxymethylclavam.yaml","2-formyloxymethylclavam"],["amino_acids_and_peptides/2-hydroxymethylclavam.yaml","2-hydroxymethylclavam"],["amino_acids_and_peptides/alanylclavam.yaml","alanylclavam"],["amino_acids_and_peptides/cephamycin-c.yaml","cephamycin C"]]},{"id":"NCBITaxon:1914","l":"Streptomyces lavendulae","na":4,"nb":12,"a":[["Pfam%3APF01678","Diaminopimelate epimerase"],["Pfam%3APF27100","D-cycloserine synthetase DcsG, N-terminal domain"],["Pfam%3APF20240","Domain of unknown function (DUF6597)"],["Pfam%3APF11731","Pathogenicity locus"]],"b":[["alkaloids/indigoidine.yaml","indigoidine"],["alkaloids/saframycin-a.yaml","saframycin A"],["alkaloids/saframycin-b.yaml","saframycin B"],["amino_acids_and_peptides/cycloserine.yaml","cycloserine"],["amino_acids_and_peptides/isocomplestatin.yaml","isocomplestatin"],["carbohydrates/showdomycin.yaml","showdomycin"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":4,"nb":10,"a":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"],["TED%3AAF-A0A085UKV7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085UKV7-F1-model_v4_TED01"],["TED%3AAF-A0A4R6IU28-F1-model_v4_TED02","TED novel fold AF-A0A4R6IU28-F1-model_v4_TED02"]],"b":[["alkaloids/labradorin-1.yaml","labradorin 1"],["alkaloids/labradorin-2.yaml","labradorin 2"],["alkaloids/secimide.yaml","secimide"],["amino_acids_and_peptides/phaseolotoxin.yaml","phaseolotoxin"],["amino_acids_and_peptides/syringolin-a.yaml","syringolin A"],["amino_acids_and_peptides/tabtoxin.yaml","tabtoxin"]]},{"id":"NCBITaxon:500485","l":"Penicillium rubens Wisconsin 54-1255","na":4,"nb":9,"a":[["Pfam%3APF03417","Acyl-coenzyme A:6-aminopenicillanic acid acyl-transferase"],["Pfam%3APF03659","Glycosyl hydrolase family 71"],["PROSITE%3APS00185","Isopenicillin N synthase signature 1"],["PROSITE%3APS00186","Isopenicillin N synthase signature 2"]],"b":[["alkaloids/dehydrohistidyltryptophanyldiketopiperazine.yaml","dehydrohistidyltryptophanyldiketopiperazine"],["alkaloids/glandicoline-a.yaml","glandicoline A"],["alkaloids/glandicoline-b.yaml","glandicoline B"],["alkaloids/meleagrine.yaml","meleagrine"],["polyketides/sorbicillin.yaml","sorbicillin"],["terpenoids/conidiogenone.yaml","conidiogenone"]]},{"id":"NCBITaxon:5076","l":"Penicillium chrysogenum","na":4,"nb":9,"a":[["Pfam%3APF03417","Acyl-coenzyme A:6-aminopenicillanic acid acyl-transferase"],["Pfam%3APF11402","Antifungal protein"],["PROSITE%3APS00185","Isopenicillin N synthase signature 1"],["PROSITE%3APS00186","Isopenicillin N synthase signature 2"]],"b":[["alkaloids/chrysogine.yaml","chrysogine"],["amino_acids_and_peptides/benzylpenicillin-sodium.yaml","benzylpenicillin sodium"],["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"],["amino_acids_and_peptides/n-5s-5-ammonio-5-carboxylatopentanoyl-l-cysteinyl-d-valinate.yaml","N-[(5S)-5-ammonio-5-carboxylatopentanoyl]-L-cysteinyl-D-valinate"],["polyketides/2-3-dihydrosorbicillin.yaml","2'3'-dihydrosorbicillin"],["polyketides/bisorbicillinol.yaml","bisorbicillinol"]]},{"id":"NCBITaxon:1836","l":"Saccharopolyspora erythraea","na":4,"nb":8,"a":[["Pfam%3APF08990","Erythronolide synthase docking domain"],["Pfam%3APF09277","Erythronolide synthase, docking"],["Pfam%3APF12728","Helix-turn-helix domain"],["Pfam%3APF12307","Protein of unknown function (DUF3631)"]],"b":[["amino_acids_and_peptides/erythrochelin.yaml","erythrochelin"],["polyketides/3-3-diflaviolin.yaml","3,3'-diflaviolin"],["polyketides/erythromycin-a.yaml","erythromycin A"],["polyketides/erythromycin-b.yaml","erythromycin B"],["polyketides/flaviolin-rhamnoside.yaml","flaviolin rhamnoside"],["polyketides/flaviolin.yaml","flaviolin"]]},{"id":"NCBITaxon:227882","l":"","na":8,"nb":4,"a":[["Pfam%3APF17390","Bacterial alpha-L-rhamnosidase C-terminal domain"],["Pfam%3APF08531","Alpha-L-rhamnosidase N-terminal domain"],["Pfam%3APF05592","Bacterial alpha-L-rhamnosidase concanavalin-like domain"],["Pfam%3APF26366","Domain of unknown function (DUF8094)"],["Pfam%3APF25788","Rha78A-like, N-terminal immunoglobulin domain"],["Pfam%3APF06781","Cell division protein CrgA"]],"b":[["amino_acids_and_peptides/edha.yaml","EDHA"],["polyketides/filipin-iii.yaml","filipin III"],["terpenoids/avermitilol.yaml","avermitilol"],["terpenoids/pentalenolactone.yaml","pentalenolactone"]]},{"id":"NCBITaxon:326423","l":"Bacillus velezensis FZB42","na":4,"nb":8,"a":[["Pfam%3APF21607","[Acyl-carrier-protein] S-malonyltransferase, inserted helical domain"],["Pfam%3APF21996","Histidyl-tRNA synthetase HisZ, C-terminal domain"],["Pfam%3APF07293","Protein of unknown function (DUF1450)"],["Pfam%3APF12227","Protein of unknown function (DUF3603)"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["polyketides/bacillaene.yaml","bacillaene"],["polyketides/difficidin.yaml","difficidin"],["polyketides/macrolactin-h.yaml","macrolactin H"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:1397","l":"Niallia circulans","na":6,"nb":4,"a":[["Pfam%3APF03423","Carbohydrate binding domain (family 25)"],["Pfam%3APF13199","Glycosyl hydrolase family 66"],["Pfam%3APF14399","Butirosin biosynthesis protein H, N-terminal"],["Pfam%3APF19634","Family of unknown function (DUF6137)"],["PROSITE%3APS60000","Chitosanases families 46 and 80 active sites signature"],["TED%3AAF-A0A0J1IR10-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0J1IR10-F1-model_v4_TED01"]],"b":[["carbohydrates/butirosin-a.yaml","butirosin A"],["carbohydrates/butirosin-b.yaml","butirosin B"],["carbohydrates/butirosin.yaml","butirosin"],["unclassified/pelgipeptin-b.yaml","Pelgipeptin B"]]},{"id":"NCBITaxon:32049","l":"Picosynechococcus sp. PCC 7002","na":6,"nb":4,"a":[["Pfam%3APF09367","CpeS-like protein"],["Pfam%3APF06206","CpeT/CpcT family (DUF1001)"],["Pfam%3APF12965","Domain of unknown function (DUF3854)"],["Pfam%3APF19928","Domain of unknown function (DUF6391)"],["Pfam%3APF09366","Protein of unknown function (DUF1997)"],["Pfam%3APF14870","Photosynthesis system II assembly factor YCF48"]],"b":[["alkaloids/synechobactin-a.yaml","synechobactin A"],["alkaloids/synechobactin-b.yaml","synechobactin B"],["alkaloids/synechobactin-c.yaml","synechobactin C"],["fatty_acids/nonadec-1-ene.yaml","nonadec-1-ene"]]},{"id":"NCBITaxon:1393","l":"Brevibacillus brevis","na":5,"nb":4,"a":[["Pfam%3APF03306","Alpha-acetolactate decarboxylase"],["Pfam%3APF05384","Sensor protein DegS"],["TED%3AAF-A0A2Z4MK38-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z4MK38-F1-model_v4_TED01"],["TED%3AAF-A0A2Z4MPQ6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2Z4MPQ6-F1-model_v4_TED02"],["TED%3AAF-A0A517IGN3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A517IGN3-F1-model_v4_TED03"]],"b":[["alkaloids/ulbactin-f.yaml","ulbactin F"],["alkaloids/ulbactin-g.yaml","ulbactin G"],["amino_acids_and_peptides/gramicidin.yaml","gramicidin"],["amino_acids_and_peptides/tyrocidine-a.yaml","tyrocidine A"]]},{"id":"NCBITaxon:31958","l":"Amycolatopsis orientalis","na":5,"nb":4,"a":[["Pfam%3APF16990","Carbohydrate binding module (family 35)"],["Pfam%3APF14696","Hydroxyphenylpyruvate dioxygenase, HPPD, N-terminal"],["Pfam%3APF03559","NDP-hexose 2,3-dehydratase"],["Pfam%3APF18368","Exo-beta-D-glucosaminidase Ig-fold domain"],["TED%3AAF-K4FDK5-F1-model_v4_TED01","TED highly-symmetric fold AF-K4FDK5-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/chloroeremomycin.yaml","chloroeremomycin"],["amino_acids_and_peptides/vancomycin.yaml","vancomycin"],["polyketides/eco-0501.yaml","ECO-0501"],["polyketides/quartromicin-a1.yaml","quartromicin A1"]]},{"id":"NCBITaxon:43","l":"Cystobacter fuscus","na":4,"nb":5,"a":[["TED%3AAF-A0A250J1A4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J1A4-F1-model_v4_TED01"],["TED%3AAF-A0A250J4G5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J4G5-F1-model_v4_TED01"],["TED%3AAF-A0A250J8W0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J8W0-F1-model_v4_TED01"],["TED%3AAF-A0A250J3K5-F1-model_v4_TED03","TED novel fold AF-A0A250J3K5-F1-model_v4_TED03"]],"b":[["amino_acids_and_peptides/cystomanamide-a.yaml","cystomanamide A"],["amino_acids_and_peptides/cystomanamide-b.yaml","cystomanamide B"],["amino_acids_and_peptides/cystomanamide-c.yaml","cystomanamide C"],["amino_acids_and_peptides/cystomanamide-d.yaml","cystomanamide D"],["unclassified/cystothiazole-a.yaml","cystothiazole A"]]},{"id":"NCBITaxon:48","l":"Archangium gephyra","na":4,"nb":4,"a":[["TED%3AAF-A0A0G2ZQX3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G2ZQX3-F1-model_v4_TED01"],["TED%3AAF-A0A0G3A8M9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G3A8M9-F1-model_v4_TED01"],["TED%3AAF-A0A2W5T6H4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2W5T6H4-F1-model_v4_TED03"],["TED%3AAF-A0A0G2ZR59-F1-model_v4_TED01","TED novel fold AF-A0A0G2ZR59-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/tubulysin-f.yaml","tubulysin F"],["amino_acids_and_peptides/tubulysin-g.yaml","tubulysin G"],["amino_acids_and_peptides/tubulysin-i.yaml","tubulysin I"],["polyketides/aurafuron-a.yaml","aurafuron A"]]},{"id":"UniProt:P00784","l":"","na":4,"nb":4,"a":[["EC%3A3.4.22.2","papain"],["MCSA%3A174","papain"],["proteintraitsmech%3ABIOLIP_ALD","ALD-binding site"],["proteintraitsmech%3AMETALPDB_RU_DINUCLEAR","dinuclear ruthenium site"]],"b":[["alkaloids/ergotamine.yaml","ergotamine"],["amino_acids_and_peptides/leupeptin-a.yaml","leupeptin A"],["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"],["terpenoids/carotene.yaml","β-carotene"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":17470,"nb":3,"a":[["EC%3A1.1.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.16.-.-","Oxidizing metal ions"],["EC%3A1.18.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.7.-","With an iron-sulfur protein as acceptor"]],"b":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"],["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"],["unclassified/telomestatin.yaml","telomestatin"]]},{"id":"NCBITaxon:9913","l":"Bos taurus","na":435,"nb":3,"a":[["IDPO%3A0000018","disorder to molten globule"],["IDPO%3A0000011","disorder to order"],["IDPO%3A0000019","disorder to pre-molten globule"],["IDPO%3A0000030","entropic chain"],["IDPO%3A0000003","molten globule"],["IDPO%3A0000014","order to disorder"]],"b":[["alkaloids/methylarcyriarubin.yaml","methylarcyriarubin"],["alkaloids/staurosporine-2.yaml","staurosporine"],["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"NCBITaxon:33178","l":"Aspergillus terreus","na":3,"nb":22,"a":[["Pfam%3APF28386","BfoA family C-terminal domain"],["Pfam%3APF28387","BfoA N-terminal domain"],["Pfam%3APF12351","Ca2+ regulator and membrane fusion protein Fig1"]],"b":[["alkaloids/asterriquinone-ct5.yaml","asterriquinone CT5"],["alkaloids/cytochalasin-e.yaml","cytochalasin E"],["alkaloids/dihydroisoflavipucine.yaml","dihydroisoflavipucine"],["alkaloids/terrequinone-a.yaml","terrequinone A"],["amino_acids_and_peptides/valactamide-a.yaml","valactamide A"],["polyketides/citreoviridin.yaml","citreoviridin"]]},{"id":"NCBITaxon:332648","l":"Botrytis cinerea B05.10","na":3,"nb":21,"a":[["Pfam%3APF01670","Glycosyl hydrolase family 12"],["PROSITE%3APS00776","Glycosyl hydrolases family 11 (GH11) active site signature 1"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"]],"b":[["terpenoids/1-epibotrydial.yaml","1-epibotrydial"],["terpenoids/10-dehydroxy-dihydrobotrydialone.yaml","10-dehydroxy dihydrobotrydialone"],["terpenoids/10-epi-dihydrobotrydial.yaml","10-epi-dihydrobotrydial"],["terpenoids/10-oxo-dihydrobotrydial.yaml","10-Oxo-dihydrobotrydial"],["terpenoids/10-oxodehydrodihydrobotrydial.yaml","10-Oxodehydrodihydrobotrydial"],["terpenoids/10-oxodihydrobotry-1-9-4-5-diendial.yaml","10-Oxodihydrobotry-1(9),4(5)-diendial"]]},{"id":"NCBITaxon:54571","l":"Streptomyces venezuelae","na":3,"nb":21,"a":[["Pfam%3APF08990","Erythronolide synthase docking domain"],["TED%3AAF-A0A5P2CQV7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5P2CQV7-F1-model_v4_TED02"],["TED%3AAF-A0A5P2C5X4-F1-model_v4_TED01","TED novel fold AF-A0A5P2C5X4-F1-model_v4_TED01"]],"b":[["alkaloids/anthelvencin-a.yaml","anthelvencin A"],["alkaloids/anthelvencin-b.yaml","anthelvencin B"],["alkaloids/anthelvencin-c.yaml","anthelvencin C"],["alkaloids/chloramphenicol.yaml","chloramphenicol"],["alkaloids/corynecin-ii.yaml","corynecin II"],["alkaloids/gaburedin-d.yaml","gaburedin D"]]},{"id":"UniProt:P22303","l":"","na":21,"nb":3,"a":[["ComplexPortal%3ACPX-10631","-"],["ComplexPortal%3ACPX-11637","-"],["ComplexPortal%3ACPX-12676","-"],["ComplexPortal%3ACPX-14124","-"],["ComplexPortal%3ACPX-18577","-"],["ComplexPortal%3ACPX-24024","-"]],"b":[["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/physostigmine.yaml","physostigmine"],["unclassified/aflatoxin-b1.yaml","aflatoxin B1"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":3,"nb":20,"a":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF22041","Glutathione S-transferase, C-terminal domain"],["Pfam%3APF08493","Aflatoxin regulatory protein"]],"b":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/c-3-sulfonylated-derivative.yaml","C-3 sulfonylated derivative"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["alkaloids/n-n-dioxide-containing-derivate.yaml","N,N-dioxide containing derivate"]]},{"id":"NCBITaxon:3847","l":"Glycine max","na":16,"nb":3,"a":[["Pfam%3APF02095","Extensin-like protein"],["Pfam%3APF00477","Small hydrophilic plant seed protein"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF08027","Albumin I chain b"],["Pfam%3APF10539","Development and cell death domain"],["Pfam%3APF03386","Early nodulin 93 ENOD93 protein"]],"b":[["alkaloids/biotin.yaml","biotin"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":3,"nb":13,"a":[["Pfam%3APF14864","Alkyl sulfatase C-terminal"],["Pfam%3APF13816","Haem-containing dehydratase"],["Pfam%3APF14863","Alkyl sulfatase dimerisation"]],"b":[["unclassified/bananamide-d.yaml","bananamide D"],["unclassified/bananamide-e.yaml","bananamide E"],["unclassified/bananamide-f.yaml","bananamide F"],["unclassified/bananamide-g.yaml","bananamide G"],["unclassified/lokisin.yaml","lokisin"],["unclassified/pseudodesmin-a.yaml","pseudodesmin A"]]},{"id":"NCBITaxon:54","l":"Nannocystis exedens","na":13,"nb":3,"a":[["TED%3AAF-A0A1I2A5Z6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2A5Z6-F1-model_v4_TED01"],["TED%3AAF-A0A1I2FM38-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I2FM38-F1-model_v4_TED02"],["TED%3AAF-A0A1I2H0F9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2H0F9-F1-model_v4_TED01"],["TED%3AAF-A0A831ZMD9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A831ZMD9-F1-model_v4_TED01"],["TED%3AAF-A0A1I1T6U3-F1-model_v4_TED01","TED novel fold AF-A0A1I1T6U3-F1-model_v4_TED01"],["TED%3AAF-A0A1I1XLT5-F1-model_v4_TED02","TED novel fold AF-A0A1I1XLT5-F1-model_v4_TED02"]],"b":[["polyketides/phenylnannolone-a.yaml","phenylnannolone A"],["polyketides/phenylnannolone-b.yaml","phenylnannolone B"],["polyketides/phenylnannolone-c.yaml","phenylnannolone C"]]},{"id":"NCBITaxon:451804","l":"Aspergillus fumigatus (strain CBS 144.89 / FGSC A1163 / CEA10)","na":11,"nb":3,"a":[["Pfam%3APF28347","ACE1 small beta sheet domain"],["Pfam%3APF28329","Zinc finger transcription factor ace1 N-terminal domain"],["Pfam%3APF11001","YDR124W-like, helical bundle domain"],["Pfam%3APF28457","Probable beta-glucosidase btgE N-terminal domain"],["Pfam%3APF13373","DSC E3 ubiquitin ligase complex subunit 3, C-terminal domain"],["Pfam%3APF10302","DSC E3 ubiquitin ligase complex subunit 3, ubiquitin-like domain"]],"b":[["terpenoids/21-h-hopane-3beta-22-diol.yaml","21-β-H-hopane-3beta, 22-diol"],["terpenoids/compound-3-3.yaml","compound 3"],["terpenoids/fumihopaside-a.yaml","fumihopaside A"]]},{"id":"NCBITaxon:5053","l":"Aspergillus aculeatus","na":3,"nb":11,"a":[["Pfam%3APF14683","Polysaccharide lyase family 4, domain III"],["Pfam%3APF14686","Polysaccharide lyase family 4, domain II"],["Pfam%3APF01670","Glycosyl hydrolase family 12"]],"b":[["alkaloids/acurin-a.yaml","acurin A"],["polyketides/secalonic-acid-a.yaml","Secalonic acid A"],["terpenoids/aculene-a.yaml","aculene A"],["terpenoids/aculene-b.yaml","aculene B"],["terpenoids/aculene-c.yaml","aculene C"],["terpenoids/aculene-d.yaml","aculene D"]]},{"id":"UniProt:Q8WZA2","l":"","na":3,"nb":10,"a":[["ComplexPortal%3ACPX-12363","-"],["CDD%3Acd04437","DEP_Epac"],["CATH%3A1.10.8.1240","CATH homologous superfamily 1.10.8.1240"]],"b":[["alkaloids/8-azaguanine.yaml","8-azaguanine"],["alkaloids/psilocybin.yaml","psilocybin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/actinonin.yaml","actinonin"],["amino_acids_and_peptides/thiostrepton.yaml","thiostrepton"],["carbohydrates/tobramycin.yaml","tobramycin"]]},{"id":"UniProt:Q9BV86","l":"","na":10,"nb":3,"a":[["ComplexPortal%3ACPX-14881","-"],["ComplexPortal%3ACPX-15959","-"],["ComplexPortal%3ACPX-20462","-"],["ComplexPortal%3ACPX-23498","-"],["GO%3A0071885","N-terminal protein N-methyltransferase activity"],["GO%3A0018013","N-terminal peptidyl-glycine methylation"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["polyketides/chlortetracycline.yaml","chlortetracycline"],["polyketides/kojic-acid.yaml","kojic acid"]]},{"id":"NCBITaxon:1971","l":"Streptomyces noursei","na":3,"nb":8,"a":[["Pfam%3APF16715","Cyclodipeptide synthase"],["Pfam%3APF19585","Family of unknown function (DUF6092)"],["TED%3AAF-A0A2N8PAT0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N8PAT0-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/curacomycin.yaml","curacomycin"],["amino_acids_and_peptides/dechlorocuracomycin.yaml","dechlorocuracomycin"],["amino_acids_and_peptides/deimino-antipain.yaml","deimino-antipain"],["carbohydrates/streptothricin-f.yaml","streptothricin F"],["polyketides/nystatin-a1.yaml","nystatin A1"],["polyketides/nystatin.yaml","nystatin"]]},{"id":"NCBITaxon:4081","l":"Solanum lycopersicum","na":8,"nb":3,"a":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF02977","Carboxypeptidase A inhibitor"],["Pfam%3APF26410","GH family 5 beta-mannosidase-like"],["Pfam%3APF02496","ABA/WDS induced protein"],["Pfam%3APF17302","Family of unknown function (DUF5351)"],["PROSITE%3APS00502","Polygalacturonase active site"]],"b":[["fatty_acids/falcarindiol.yaml","falcarindiol"],["terpenoids/lycosantalonol.yaml","lycosantalonol"],["terpenoids/phellandrene.yaml","β-phellandrene"]]},{"id":"NCBITaxon:331117","l":"Aspergillus fischeri NRRL 181","na":3,"nb":7,"a":[["Pfam%3APF23681","ATP-dependent rRNA helicase SPB4-like, C-terminal tail"],["Pfam%3APF16803","Fe-S cluster assembly protein DRE2 N-terminus"],["Pfam%3APF02012","BNR/Asp-box repeat"]],"b":[["terpenoids/compound-5.yaml","compound 5"],["terpenoids/compound-6-2.yaml","compound 6"],["terpenoids/compound-7a.yaml","compound 7a"],["terpenoids/compound-8-2.yaml","compound 8"],["terpenoids/sesterfisheric-acid.yaml","sesterfisheric acid"],["terpenoids/sesterfisherol.yaml","sesterfisherol"]]},{"id":"NCBITaxon:1028729","l":"Fusarium pseudograminearum CS3096","na":3,"nb":6,"a":[["Pfam%3APF26087","Domain of unknown function (DUF8032)"],["Pfam%3APF05704","Capsular polysaccharide synthesis protein"],["TED%3AAF-K3V788-F1-model_v4_TED02","TED novel fold AF-K3V788-F1-model_v4_TED02"]],"b":[["alkaloids/8-oxo-fusatin.yaml","8-oxo-fusatin"],["alkaloids/8-oxo-isopentenyladenine.yaml","8-oxo-isopentenyladenine"],["alkaloids/fusatin.yaml","fusatin"],["alkaloids/fusatinic-acid.yaml","fusatinic acid"],["unclassified/w493-a.yaml","W493 A"],["unclassified/w493-b.yaml","W493 B"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":6,"nb":3,"a":[["Pfam%3APF14525","AraC-binding-like domain"],["Pfam%3APF06139","BphX-like"],["Pfam%3APF13340","Putative transposase of IS4/5 family (DUF4096)"],["Pfam%3APF11794","4-hydroxyphenylacetate 3-hydroxylase N terminal"],["Pfam%3APF03241","4-hydroxyphenylacetate 3-hydroxylase C terminal"],["TED%3AAF-A0A4S3H3T1-F1-model_v4_TED02","TED novel fold AF-A0A4S3H3T1-F1-model_v4_TED02"]],"b":[["alkaloids/cepaciachelin.yaml","cepaciachelin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["terpenoids/hopene.yaml","hopene"]]},{"id":"NCBITaxon:1833","l":"Rhodococcus erythropolis","na":5,"nb":3,"a":[["Pfam%3APF08028","Acyl-CoA dehydrogenase, C-terminal domain"],["Pfam%3APF13816","Haem-containing dehydratase"],["Pfam%3APF07858","Limonene-1,2-epoxide hydrolase catalytic domain"],["Pfam%3APF09663","Amidohydrolase ring-opening protein (Amido_AtzD_TrzD)"],["TED%3AAF-A0A401N7F7-F1-model_v4_TED02","TED novel fold AF-A0A401N7F7-F1-model_v4_TED02"]],"b":[["alkaloids/aurachin-re.yaml","aurachin RE"],["amino_acids_and_peptides/heterobactin-a.yaml","heterobactin A"],["amino_acids_and_peptides/heterobactin-s2.yaml","heterobactin S2"]]},{"id":"NCBITaxon:2021","l":"Thermobifida fusca","na":5,"nb":3,"a":[["Pfam%3APF00553","Cellulose binding domain"],["Pfam%3APF01341","Glycosyl hydrolases family 6"],["PROSITE%3APS00561","CBM2a (carbohydrate-binding type-2) domain signature"],["PROSITE%3APS00655","Glycosyl hydrolases family 6 signature 1"],["PROSITE%3APS00656","Glycosyl hydrolases family 6 signature 2"]],"b":[["amino_acids_and_peptides/fuscachelin-a.yaml","Fuscachelin A"],["amino_acids_and_peptides/fuscachelin-b.yaml","Fuscachelin B"],["amino_acids_and_peptides/fuscachelin-c.yaml","Fuscachelin C"]]},{"id":"NCBITaxon:3885","l":"Phaseolus vulgaris","na":3,"nb":5,"a":[["Pfam%3APF14829","Glycerol-3-phosphate acyltransferase N-terminal"],["PROSITE%3APS00281","Bowman-Birk serine protease inhibitors family signature"],["PROSITE%3APS00308","Legume lectins alpha-chain signature"]],"b":[["alkaloids/biotin.yaml","biotin"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/ectoine.yaml","ectoine"],["fatty_acids/itaconic-acid.yaml","itaconic acid"],["unclassified/orcinol.yaml","orcinol"]]},{"id":"NCBITaxon:556","l":"Dickeya chrysanthemi","na":5,"nb":3,"a":[["Pfam%3APF18390","Glycogen debranching enzyme C-terminal domain"],["Pfam%3APF25994","AprE, long alpha-helical hairpin"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF03812","2-keto-3-deoxygluconate permease"],["Pfam%3APF09589","HrpA pilus formation protein"]],"b":[["amino_acids_and_peptides/chrysobactin.yaml","chrysobactin"],["amino_acids_and_peptides/dichrysobactin.yaml","dichrysobactin"],["unclassified/cyclic-trichrysobactin.yaml","cyclic trichrysobactin"]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":3,"nb":5,"a":[["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"],["PROSITE%3APS00896","LacY family proton/sugar symporters signature 1"],["PROSITE%3APS00897","LacY family proton/sugar symporters signature 2"]],"b":[["alkaloids/9-deoxy-tilivalline.yaml","9-deoxy tilivalline"],["alkaloids/dehydro-tilivalline.yaml","dehydro tilivalline"],["alkaloids/dihydroxy-dehydro-tilivalline.yaml","dihydroxy-dehydro tilivalline"],["alkaloids/dihydroxy-tilivalline.yaml","dihydroxy tilivalline"],["alkaloids/tilivalline.yaml","tilivalline"]]},{"id":"NCBITaxon:269800","l":"Thermobifida fusca YX","na":4,"nb":3,"a":[["Pfam%3APF20628","Dyp-type peroxidase, C-terminal"],["Pfam%3APF04261","Dyp-type peroxidase, N-terminal"],["Pfam%3APF18374","Enolase N-terminal domain-like"],["PROSITE%3APS00909","Mandelate racemase / muconate lactonizing enzyme family signature 2"]],"b":[["amino_acids_and_peptides/fuscachelin-a.yaml","Fuscachelin A"],["amino_acids_and_peptides/fuscachelin-b.yaml","Fuscachelin B"],["amino_acids_and_peptides/fuscachelin-c.yaml","Fuscachelin C"]]},{"id":"NCBITaxon:306901","l":"","na":4,"nb":3,"a":[["Pfam%3APF07960","CBP4"],["TED%3AAF-Q2GNU1-F1-model_v4_TED01","TED highly-symmetric fold AF-Q2GNU1-F1-model_v4_TED01"],["TED%3AAF-Q2GZS7-F1-model_v4_TED01","TED novel fold AF-Q2GZS7-F1-model_v4_TED01"],["TED%3AAF-Q2H4N9-F1-model_v4_TED02","TED novel fold AF-Q2H4N9-F1-model_v4_TED02"]],"b":[["polyketides/11-epichaetomugilin-a.yaml","11-epichaetomugilin A"],["polyketides/chaetoviridin-e.yaml","chaetoviridin E"],["polyketides/shanorellin.yaml","shanorellin"]]},{"id":"NCBITaxon:33","l":"Myxococcus fulvus","na":4,"nb":3,"a":[["TED%3AAF-A0A511SVC1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A511SVC1-F1-model_v4_TED01"],["TED%3AAF-A0A511SU64-F1-model_v4_TED01","TED novel fold AF-A0A511SU64-F1-model_v4_TED01"],["TED%3AAF-A0A511T2U3-F1-model_v4_TED02","TED novel fold AF-A0A511T2U3-F1-model_v4_TED02"],["TED%3AAF-A0A511T9F8-F1-model_v4_TED05","TED novel fold AF-A0A511T9F8-F1-model_v4_TED05"]],"b":[["unclassified/fulvuthiacene-a.yaml","Fulvuthiacene A"],["unclassified/fulvuthiacene-b.yaml","Fulvuthiacene B"],["unclassified/myxothiazol.yaml","myxothiazol"]]},{"id":"NCBITaxon:34305","l":"Lotus japonicus","na":4,"nb":3,"a":[["Pfam%3APF06241","Castor and Pollux, part of voltage-gated ion channel"],["Pfam%3APF23654","E3 ubiquitin-protein ligase LIN-like, ARM repeat"],["Pfam%3APF23628","Putative E3 ubiquitin-protein ligase LIN, ARM-like domain"],["Pfam%3APF23568","E3 ubiquitin-protein ligase LIN-like, ARM repeat"]],"b":[["amino_acids_and_peptides/linamarin.yaml","linamarin"],["amino_acids_and_peptides/lotaustralin.yaml","lotaustralin"],["terpenoids/lupeol.yaml","lupeol"]]},{"id":"NCBITaxon:392500","l":"Shewanella woodyi ATCC 51908","na":3,"nb":4,"a":[["Pfam%3APF23763","GLAA-B beta-barrel domain I"],["TED%3AAF-B1KH33-F1-model_v4_TED01","TED novel fold AF-B1KH33-F1-model_v4_TED01"],["TED%3AAF-B1KQT1-F1-model_v4_TED01","TED novel fold AF-B1KQT1-F1-model_v4_TED01"]],"b":[["fatty_acids/woodybactin-d.yaml","woodybactin D"],["unclassified/woodybactin-a.yaml","woodybactin A"],["unclassified/woodybactin-b.yaml","woodybactin B"],["unclassified/woodybactin-c.yaml","woodybactin C"]]},{"id":"NCBITaxon:5544","l":"Trichoderma harzianum","na":4,"nb":3,"a":[["Pfam%3APF00840","Glycosyl hydrolase family 7"],["Pfam%3APF12708","Rhamnogalacturonase A/epimerase, pectate lyase-like"],["TED%3AAF-A0A0F9XDU3-F1-model_v4_TED01","TED novel fold AF-A0A0F9XDU3-F1-model_v4_TED01"],["TED%3AAF-A0A0G0ASL4-F1-model_v4_TED01","TED novel fold AF-A0A0G0ASL4-F1-model_v4_TED01"]],"b":[["polyketides/1-2-dehydropenicillide.yaml","1,2-dehydropenicillide"],["polyketides/harziphilone.yaml","harziphilone"],["unclassified/harzianopyridone.yaml","harzianopyridone"]]},{"id":"NCBITaxon:655844","l":"Metarhizium robertsii ARSEF 23","na":3,"nb":4,"a":[["Pfam%3APF07110","EthD domain"],["Pfam%3APF09421","Frequency clock protein"],["TED%3AAF-A0A0B2XHY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0B2XHY6-F1-model_v4_TED01"]],"b":[["alkaloids/swainsonine.yaml","swainsonine"],["unclassified/destruxin-a.yaml","destruxin A"],["unclassified/subglutinol-a.yaml","subglutinol A"],["unclassified/subglutinol-b.yaml","subglutinol B"]]},{"id":"NCBITaxon:1003195","l":"","na":3,"nb":3,"a":[["Pfam%3APF23169","Halogenase D"],["Pfam%3APF02655","ATP-grasp domain"],["Pfam%3APF14518","Iron-containing redox enzyme"]],"b":[["amino_acids_and_peptides/cattlecin.yaml","cattlecin"],["amino_acids_and_peptides/ethynylserine.yaml","β-ethynylserine"],["terpenoids/cattleyene.yaml","cattleyene"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":3,"nb":3,"a":[["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF08130","Type A lantibiotic family"],["Pfam%3APF04738","Lantibiotic dehydratase, N terminus"]],"b":[["amino_acids_and_peptides/epidermin.yaml","epidermin"],["amino_acids_and_peptides/epilancin-15x.yaml","epilancin 15x"],["amino_acids_and_peptides/pep5.yaml","pep5"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":3,"nb":3,"a":[["Pfam%3APF03423","Carbohydrate binding domain (family 25)"],["Pfam%3APF03422","Carbohydrate binding module (family 6)"],["TED%3AAF-A0A7X5SGP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X5SGP7-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/polymyxin-b.yaml","polymyxin B"],["amino_acids_and_peptides/polymyxin.yaml","polymyxin"],["unclassified/fusaricidin-b.yaml","fusaricidin B"]]},{"id":"NCBITaxon:1961","l":"Streptomyces virginiae","na":3,"nb":3,"a":[["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF19328","2,4-diaminopentanoate dehydrogenase C-terminal domain"],["PROSITE%3APS01014","Transcription termination factor nusG signature"]],"b":[["alkaloids/endophenazine-a.yaml","endophenazine A"],["polyketides/monensin.yaml","monensin"],["unclassified/virginiamycin-s1.yaml","virginiamycin S1"]]},{"id":"NCBITaxon:384676","l":"Pseudomonas entomophila L48","na":3,"nb":3,"a":[["Pfam%3APF18063","Beta barrel Pore-forming domain"],["Pfam%3APF08548","Peptidase M10 serralysin C terminal"],["TED%3AAF-Q1I2P2-F1-model_v4_TED01","TED novel fold AF-Q1I2P2-F1-model_v4_TED01"]],"b":[["alkaloids/labradorin-1.yaml","labradorin 1"],["alkaloids/labradorin-2.yaml","labradorin 2"],["alkaloids/pimprinine.yaml","pimprinine"]]},{"id":"NCBITaxon:448385","l":"","na":3,"nb":3,"a":[["TED%3AAF-A9FYP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A9FYP8-F1-model_v4_TED01"],["TED%3AAF-A9G932-F1-model_v4_TED01","TED highly-symmetric fold AF-A9G932-F1-model_v4_TED01"],["TED%3AAF-A9F9E5-F1-model_v4_TED01","TED novel fold AF-A9F9E5-F1-model_v4_TED01"]],"b":[["polyketides/etnangien.yaml","etnangien"],["polyketides/soraphen-a.yaml","soraphen A"],["terpenoids/eremophilene.yaml","(+)-eremophilene"]]},{"id":"NCBITaxon:45133","l":"Lasiodiplodia theobromae","na":3,"nb":3,"a":[["TED%3AAF-A0A5N5DCC3-F1-model_v4_TED01","TED novel fold AF-A0A5N5DCC3-F1-model_v4_TED01"],["TED%3AAF-A0A5N5DDT9-F1-model_v4_TED01","TED novel fold AF-A0A5N5DDT9-F1-model_v4_TED01"],["TED%3AAF-A0A5N5DLG2-F1-model_v4_TED02","TED novel fold AF-A0A5N5DLG2-F1-model_v4_TED02"]],"b":[["polyketides/lasiodiplodin.yaml","lasiodiplodin"],["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"],["shikimates_and_phenylpropanoids/mellein.yaml","(-)-Mellein"]]},{"id":"NCBITaxon:454130","l":"Aspergillus calidoustus","na":3,"nb":3,"a":[["Pfam%3APF28380","Sesquiterpene cyclase astC-like C-terminal domain"],["TED%3AAF-A0A0U5FXA2-F1-model_v4_TED01","TED novel fold AF-A0A0U5FXA2-F1-model_v4_TED01"],["TED%3AAF-A0A0U5GJ59-F1-model_v4_TED01","TED novel fold AF-A0A0U5GJ59-F1-model_v4_TED01"]],"b":[["terpenoids/calidoustene-a.yaml","calidoustene A"],["terpenoids/calidoustene-b.yaml","calidoustene B"],["terpenoids/calidoustene-c.yaml","calidoustene C"]]},{"id":"UniProt:P59594","l":"","na":3,"nb":3,"a":[["ComplexPortal%3ACPX-7088","SARS-CoV uncleaved Spike protein complex"],["proteintraitsmech%3AMEROPS_CLEAVAGE_S01_247","epitheliasin cleavage specificity"],["IDPO%3A0000048","limited proteolysis display site"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/linaclotide.yaml","linaclotide"],["carbohydrates/kanamycin-a.yaml","kanamycin A"]]},{"id":"NCBITaxon:559292","l":"Saccharomyces cerevisiae (strain ATCC 204508 / S288c)","na":14483,"nb":2,"a":[["EC%3A1.14.18.-","With another compound as one donor, and incorporation of one atom of oxygen"],["EC%3A1.16.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.18.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.5.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.8.-.-","Acting on a sulfur group of donors"]],"b":[["polyketides/kojic-acid.yaml","kojic acid"],["polyketides/radicicol.yaml","radicicol"]]},{"id":"NCBITaxon:224308","l":"Bacillus subtilis (strain 168)","na":11310,"nb":2,"a":[["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.10.3.-","With oxygen as acceptor"],["EC%3A1.13.12.-","With incorporation of one atom of oxygen (internal monooxygenases or internal mixed function oxidases)"],["EC%3A1.14.19.-","With oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water"],["EC%3A1.17.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.21.98.-","With other, known acceptors"]],"b":[["unclassified/corynebactin.yaml","corynebactin"],["unclassified/pulcherriminic-acid.yaml","pulcherriminic acid"]]},{"id":"UniProt:P37840","l":"","na":102,"nb":2,"a":[["ComplexPortal%3ACPX-22614","-"],["ComplexPortal%3ACPX-25548","-"],["GO%3A0030424","axon"],["GO%3A0043679","axon terminus"],["GO%3A0005938","cell cortex"],["GO%3A0030426","growth cone"]],"b":[["amino_acids_and_peptides/actinonin.yaml","actinonin"],["polyketides/sirolimus.yaml","sirolimus"]]},{"id":"NCBITaxon:93061","l":"Staphylococcus aureus (strain NCTC 8325 / PS 47)","na":47,"nb":2,"a":[["IDPO%3A0000033","flexible linker"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF07694","5TMR of 5TMR-LYT"],["Pfam%3APF01757","Acyltransferase domain"],["Pfam%3APF18719","ArlS sensor domain"],["Pfam%3APF02216","B domain"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["unclassified/staphyloferrin-a.yaml","staphyloferrin A"]]},{"id":"UniProt:P00519","l":"","na":42,"nb":2,"a":[["EC%3A2.7.10.2","non-specific protein-tyrosine kinase"],["ComplexPortal%3ACPX-20158","-"],["ComplexPortal%3ACPX-24443","-"],["ComplexPortal%3ACPX-24492","-"],["ComplexPortal%3ACPX-25676","-"],["GO%3A0000405","bubble DNA binding"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"],["polyketides/emodin.yaml","emodin"]]},{"id":"UniProt:P24941","l":"","na":34,"nb":2,"a":[["ComplexPortal%3ACPX-10673","-"],["ComplexPortal%3ACPX-11851","-"],["ComplexPortal%3ACPX-13027","-"],["ComplexPortal%3ACPX-15343","-"],["ComplexPortal%3ACPX-19796","-"],["ComplexPortal%3ACPX-21602","-"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"],["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:1912","l":"Streptomyces hygroscopicus","na":2,"nb":29,"a":[["Pfam%3APF21168","Chorismatase FkbO/Hyg5-like, N-terminal"],["TED%3AAF-A0A1S6RUT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S6RUT8-F1-model_v4_TED01"]],"b":[["alkaloids/9-methylstreptimidone.yaml","9-methylstreptimidone"],["alkaloids/indigoidine-2.yaml","indigoidine"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/cyclothiazomycin.yaml","cyclothiazomycin"],["amino_acids_and_peptides/eponemycin.yaml","eponemycin"],["amino_acids_and_peptides/himastatin.yaml","himastatin"]]},{"id":"UniProt:O15296","l":"","na":26,"nb":2,"a":[["ComplexPortal%3ACPX-11775","-"],["ComplexPortal%3ACPX-23490","-"],["ComplexPortal%3ACPX-25286","-"],["GO%3A0050473","arachidonate 15-lipoxygenase activity"],["GO%3A0036403","arachidonate 8(S)-lipoxygenase activity"],["GO%3A0016165","linoleate 13S-lipoxygenase activity"]],"b":[["amino_acids_and_peptides/polymyxin.yaml","polymyxin"],["polyketides/tautomycetin.yaml","tautomycetin"]]},{"id":"UniProt:P62937","l":"","na":26,"nb":2,"a":[["ComplexPortal%3ACPX-16615","-"],["ComplexPortal%3ACPX-25278","-"],["GO%3A1904813","ficolin-1-rich granule lumen"],["GO%3A0016018","cyclosporin A binding"],["GO%3A1904399","heparan sulfate binding"],["GO%3A0003755","peptidyl-prolyl cis-trans isomerase activity"]],"b":[["amino_acids_and_peptides/cyclosporin-a.yaml","cyclosporin A"],["amino_acids_and_peptides/sanglifehrin-a.yaml","sanglifehrin A"]]},{"id":"UniProt:P06276","l":"","na":23,"nb":2,"a":[["ComplexPortal%3ACPX-12760","-"],["ComplexPortal%3ACPX-18032","-"],["ComplexPortal%3ACPX-20651","-"],["ComplexPortal%3ACPX-21068","-"],["ComplexPortal%3ACPX-21174","-"],["ComplexPortal%3ACPX-21255","-"]],"b":[["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/physostigmine.yaml","physostigmine"]]},{"id":"UniProt:P07203","l":"","na":21,"nb":2,"a":[["ComplexPortal%3ACPX-13707","-"],["ComplexPortal%3ACPX-15014","-"],["ComplexPortal%3ACPX-20814","-"],["ComplexPortal%3ACPX-20823","-"],["ComplexPortal%3ACPX-23329","-"],["ComplexPortal%3ACPX-23744","-"]],"b":[["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"],["unclassified/beauvericin.yaml","beauvericin"]]},{"id":"UniProt:P63092","l":"","na":21,"nb":2,"a":[["GO%3A0005834","heterotrimeric G-protein complex"],["GO%3A0010856","adenylate cyclase activator activity"],["GO%3A0031748","D1 dopamine receptor binding"],["GO%3A0031683","G-protein beta/gamma-subunit complex binding"],["GO%3A0007190","activation of adenylate cyclase activity"],["GO%3A0038184","adenylate cyclase-activating G protein-coupled bile acid receptor signaling pathway"]],"b":[["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"]]},{"id":"NCBITaxon:746128","l":"Aspergillus fumigatus","na":2,"nb":20,"a":[["Pfam%3APF07335","Fungal chitosanase of glycosyl hydrolase group 75"],["Pfam%3APF12296","Hydrophobic surface binding protein A"]],"b":[["alkaloids/fumigaclavine-c.yaml","fumigaclavine C"],["alkaloids/fumiquinazoline-a.yaml","fumiquinazoline A"],["alkaloids/fumiquinazoline-c.yaml","fumiquinazoline C"],["alkaloids/fumiquinazoline-d.yaml","fumiquinazoline D"],["alkaloids/hexadehydroastechrome.yaml","hexadehydroastechrome"],["carbohydrates/tobramycin.yaml","tobramycin"]]},{"id":"NCBITaxon:176299","l":"Agrobacterium fabrum (strain C58 / ATCC 33970)","na":17,"nb":2,"a":[["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF28403","Aconitase X second domain"],["Pfam%3APF28406","Aconitase X third domain"],["Pfam%3APF04412","Aconitase X first domain"],["Pfam%3APF01989","Aconitase X swivel domain"]],"b":[["amino_acids_and_peptides/fabrubactin-a.yaml","fabrubactin A"],["amino_acids_and_peptides/fabrubactin-b.yaml","fabrubactin B"]]},{"id":"NCBITaxon:455632","l":"Streptomyces griseus subsp. griseus NBRC 13350","na":2,"nb":17,"a":[["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["PROSITE%3APS01311","Prolipoprotein diacylglyceryl transferase signature"]],"b":[["alkaloids/grixazone-a.yaml","grixazone A"],["alkaloids/iminimycin-a.yaml","iminimycin A"],["alkaloids/iminimycin-b.yaml","iminimycin B"],["alkaloids/melanin.yaml","melanin"],["carbohydrates/streptomycin.yaml","streptomycin"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":16,"nb":2,"a":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF28265","Lipoprotein N-acylation protein LnsA-like"],["Pfam%3APF16403","Bacterial surface protein, Ig-like domain"],["Pfam%3APF03944","delta endotoxin"],["Pfam%3APF03945","delta endotoxin, N-terminal domain"],["Pfam%3APF06355","Aegerolysin"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["unclassified/andalusicin-a.yaml","andalusicin A"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":16,"nb":2,"a":[["Pfam%3APF05932","Tir chaperone protein (CesT) family"],["Pfam%3APF17656","FlgA N-terminal domain"],["Pfam%3APF22200","ExsA N-terminal regulatory domain"],["Pfam%3APF05171","Haemin-degrading HemS.ChuX domain"],["Pfam%3APF07201","HrpJ-like domain"],["Pfam%3APF04391","Protein of unknown function (DUF533)"]],"b":[["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["alkaloids/yersiniabactin.yaml","yersiniabactin"]]},{"id":"NCBITaxon:1360","l":"Lactococcus lactis subsp. lactis","na":14,"nb":2,"a":[["Pfam%3APF08951","Bacteriocin immunity protein family"],["Pfam%3APF08998","Bacterial epsilon antitoxin"],["Pfam%3APF25887","LcnD-like, long helical bundle domain"],["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF25940","LcnD-like, C-terminal domain"],["Pfam%3APF08129","Alpha/beta enterocin family"]],"b":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"],["amino_acids_and_peptides/nisin-a.yaml","nisin A"]]},{"id":"NCBITaxon:29488","l":"Photorhabdus luminescens","na":2,"nb":14,"a":[["Pfam%3APF02273","Acyl transferase"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"]],"b":[["alkaloids/photobactin.yaml","photobactin"],["alkaloids/pzn5.yaml","PZN5"],["amino_acids_and_peptides/gamexpeptide-c.yaml","gamexpeptide C"],["amino_acids_and_peptides/glidobactin.yaml","glidobactin"],["amino_acids_and_peptides/luminmycin-a.yaml","luminmycin A"],["polyketides/photopyrone-a.yaml","photopyrone A"]]},{"id":"NCBITaxon:759273","l":"Colletotrichum higginsianum IMI 349063","na":2,"nb":14,"a":[["TED%3AAF-A0A1B7Y9H0-F1-model_v4_TED01","TED novel fold AF-A0A1B7Y9H0-F1-model_v4_TED01"],["TED%3AAF-H1V1S2-F1-model_v4_TED01","TED novel fold AF-H1V1S2-F1-model_v4_TED01"]],"b":[["shikimates_and_phenylpropanoids/colletorin-d-acid.yaml","Colletorin D acid"],["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"],["unclassified/13-epi-higginsianin-c.yaml","13-epi-higginsianin C"],["unclassified/colletochlorin-a.yaml","Colletochlorin A"],["unclassified/colletochlorin-b.yaml","Colletochlorin B"],["unclassified/colletochlorin-d.yaml","Colletochlorin D"]]},{"id":"NCBITaxon:271848","l":"Burkholderia thailandensis E264","na":2,"nb":12,"a":[["Pfam%3APF12091","Protein of unknown function (DUF3567)"],["Pfam%3APF01075","Glycosyltransferase family 9 (heptosyltransferase)"]],"b":[["alkaloids/malleobactin-b.yaml","malleobactin B"],["alkaloids/malleobactin-d.yaml","malleobactin D"],["polyketides/malleicyprol.yaml","malleicyprol"],["polyketides/malleilactone.yaml","malleilactone"],["polyketides/thailandamide-lactone.yaml","thailandamide lactone"],["polyketides/thailandamide.yaml","thailandamide"]]},{"id":"NCBITaxon:1111077","l":"Claviceps purpurea 20.1","na":2,"nb":11,"a":[["Pfam%3APF28338","AclK C-terminal domain"],["TED%3AAF-M1W301-F1-model_v4_TED01","TED highly-symmetric fold AF-M1W301-F1-model_v4_TED01"]],"b":[["alkaloids/ergotamine.yaml","ergotamine"],["polyketides/clavorubin.yaml","Clavorubin"],["polyketides/endocrocin.yaml","endocrocin"],["polyketides/o-orsellinate-depside.yaml","o-orsellinate depside"],["polyketides/secalonic-acid-a.yaml","Secalonic acid A"],["polyketides/secalonic-acid-b.yaml","Secalonic acid B"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":11,"nb":2,"a":[["Pfam%3APF22829","HphA C-terminal domain"],["Pfam%3APF22828","HphA N-terminal heme-binding domain"],["Pfam%3APF28205","Ciprofloxacin tolerance protein"],["Pfam%3APF19582","Solute-binding protein AdeT 1/2"],["PROSITE%3APS00337","Beta-lactamase class-D active site"],["Pfam%3APF24575","Surface lipoprotein assembly modifier, N-terminal TPR repeats"]],"b":[["alkaloids/acinetobactin.yaml","acinetobactin"],["amino_acids_and_peptides/fimsbactin-a.yaml","fimsbactin A"]]},{"id":"UniProt:P11802","l":"","na":11,"nb":2,"a":[["ComplexPortal%3ACPX-10673","-"],["ComplexPortal%3ACPX-18434","-"],["ComplexPortal%3ACPX-20361","-"],["ComplexPortal%3ACPX-21602","-"],["ComplexPortal%3ACPX-26168","-"],["ComplexPortal%3ACPX-2010","Cyclin D1-CDK4 complex"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"],["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:455432","l":"Nocardia terpenica","na":2,"nb":10,"a":[["TED%3AAF-A0A6G9ZDY9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6G9ZDY9-F1-model_v4_TED01"],["TED%3AAF-A0A164L9V7-F1-model_v4_TED03","TED novel fold AF-A0A164L9V7-F1-model_v4_TED03"]],"b":[["amino_acids_and_peptides/nocapeptin-a.yaml","nocapeptin A"],["amino_acids_and_peptides/nocathioamide-a.yaml","nocathioamide A"],["polyketides/brasilinolide-a.yaml","brasilinolide A"],["polyketides/brasilinolide-b.yaml","brasilinolide B"],["polyketides/brasilinolide-c.yaml","brasilinolide C"],["polyketides/terpenomycin.yaml","terpenomycin"]]},{"id":"NCBITaxon:1159556","l":"Ustilaginoidea virens","na":2,"nb":9,"a":[["Pfam%3APF06966","Protein of unknown function (DUF1295)"],["TED%3AAF-A0A1B5L5W2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1B5L5W2-F1-model_v4_TED03"]],"b":[["amino_acids_and_peptides/ustiloxin-b.yaml","ustiloxin B"],["polyketides/ustilaginoidin-a.yaml","ustilaginoidin A"],["polyketides/ustilaginoidin-d.yaml","ustilaginoidin D"],["polyketides/ustilaginoidin-e.yaml","ustilaginoidin E"],["polyketides/ustilaginoidin-f.yaml","ustilaginoidin F"],["polyketides/ustilaginoidin-g.yaml","ustilaginoidin G"]]},{"id":"NCBITaxon:158878","l":"Staphylococcus aureus (strain Mu50 / ATCC 700699)","na":9,"nb":2,"a":[["Pfam%3APF26317","Histidine racemase CntK N-terminal domain"],["Pfam%3APF13610","DDE domain"],["Pfam%3APF12199","Extracellular fibrinogen binding protein C terminal"],["Pfam%3APF26323","Staphylococcus aureus type VII secretion system substrate EsxC"],["Pfam%3APF19776","Family of unknown function (DUF6262)"],["Pfam%3APF27790","Poly-beta-1,6-N-acetyl-D-glucosamine synthesis protein IcaD"]],"b":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"]]},{"id":"NCBITaxon:57975","l":"Burkholderia thailandensis","na":2,"nb":9,"a":[["TED%3AAF-A0A7Z8HH79-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Z8HH79-F1-model_v4_TED01"],["TED%3AAF-A0A7Z8HK43-F1-model_v4_TED01","TED novel fold AF-A0A7Z8HK43-F1-model_v4_TED01"]],"b":[["fatty_acids/fr901464.yaml","FR901464"],["polyketides/malleicyprol.yaml","malleicyprol"],["polyketides/thailandamide-lactone.yaml","thailandamide lactone"],["polyketides/thailandamide.yaml","thailandamide"],["polyketides/thailanstatin-a.yaml","thailanstatin A"],["shikimates_and_phenylpropanoids/bactobolin.yaml","bactobolin"]]},{"id":"UniProt:P11309","l":"","na":9,"nb":2,"a":[["ComplexPortal%3ACPX-11827","-"],["ComplexPortal%3ACPX-16792","-"],["ComplexPortal%3ACPX-21719","-"],["ComplexPortal%3ACPX-26168","-"],["GO%3A1905062","positive regulation of cardioblast proliferation"],["GO%3A1905701","positive regulation of xenobiotic detoxification by transmembrane export across the plasma membrane"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"],["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":8,"nb":2,"a":[["Pfam%3APF01890","Cobalamin synthesis G C-terminus"],["Pfam%3APF11761","Cobalamin biosynthesis central region"],["Pfam%3APF11760","Cobalamin synthesis G N-terminal"],["Pfam%3APF02570","Precorrin-8X methylmutase"],["PROSITE%3APS00304","Small, acid-soluble spore proteins, alpha/beta type, signature 1"],["PROSITE%3APS00684","Small, acid-soluble spore proteins, alpha/beta type, signature 2"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"],["carbohydrates/oxetanocin-a.yaml","oxetanocin A"]]},{"id":"NCBITaxon:303698","l":"Penicillium steckii","na":2,"nb":8,"a":[["TED%3AAF-A0A1V6TCF9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1V6TCF9-F1-model_v4_TED03"],["TED%3AAF-A0A1V6U0I0-F1-model_v4_TED02","TED novel fold AF-A0A1V6U0I0-F1-model_v4_TED02"]],"b":[["unclassified/adametizine-a.yaml","adametizine A"],["unclassified/fa2097.yaml","FA2097"],["unclassified/outovirin-a.yaml","outovirin A"],["unclassified/outovirin-c.yaml","outovirin C"],["unclassified/penigainamide-a.yaml","penigainamide A"],["unclassified/penigainamide-b.yaml","penigainamide B"]]},{"id":"NCBITaxon:119927","l":"Alternaria tenuissima","na":7,"nb":2,"a":[["TED%3AAF-A0A4Q4MR18-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q4MR18-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4M1N1-F1-model_v4_TED01","TED novel fold AF-A0A4Q4M1N1-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4M2G6-F1-model_v4_TED01","TED novel fold AF-A0A4Q4M2G6-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4MJL0-F1-model_v4_TED01","TED novel fold AF-A0A4Q4MJL0-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4PGY1-F1-model_v4_TED01","TED novel fold AF-A0A4Q4PGY1-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4RTT0-F1-model_v4_TED01","TED novel fold AF-A0A4Q4RTT0-F1-model_v4_TED01"]],"b":[["polyketides/patulin.yaml","patulin"],["polyketides/solanapyrone-a.yaml","solanapyrone A"]]},{"id":"NCBITaxon:1279085","l":"Fusarium fujikuroi IMI 58289","na":2,"nb":7,"a":[["Pfam%3APF12585","Virulence factor CipC-like"],["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"]],"b":[["polyketides/bikaverin.yaml","bikaverin"],["polyketides/fujikurin-c.yaml","fujikurin C"],["polyketides/fujikurin-d.yaml","fujikurin D"],["polyketides/gibepyrone-a.yaml","gibepyrone A"],["terpenoids/acorenol.yaml","α-acorenol"],["terpenoids/koraiol.yaml","koraiol"]]},{"id":"NCBITaxon:1380566","l":"Pochonia chlamydosporia 170","na":2,"nb":7,"a":[["TED%3AAF-A0A179FUG8-F1-model_v4_TED01","TED novel fold AF-A0A179FUG8-F1-model_v4_TED01"],["TED%3AAF-A0A179FWH3-F1-model_v4_TED01","TED novel fold AF-A0A179FWH3-F1-model_v4_TED01"]],"b":[["polyketides/monocillin-ii.yaml","monocillin II"],["polyketides/monocillin-iv.yaml","monocillin IV"],["polyketides/monocillin-v.yaml","monocillin V"],["polyketides/monocillin-vi.yaml","monocillin VI"],["polyketides/monocillin-vii.yaml","monocillin VII"],["polyketides/monorden-d.yaml","monorden D"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":7,"nb":2,"a":[["Pfam%3APF19443","DAHL domain"],["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"],["Pfam%3APF03524","Conjugal transfer protein"],["Pfam%3APF27439","Chaperone protein DnaJ C-terminal region"],["Pfam%3APF10907","Protein of unknown function (DUF2749)"],["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]],"b":[["alkaloids/agrobactin.yaml","agrobactin"],["amino_acids_and_peptides/aztreonam.yaml","aztreonam"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":6,"nb":2,"a":[["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF03744","6-carboxyhexanoate--CoA ligase"],["PROSITE%3APS00836","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 1"],["PROSITE%3APS00837","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 2"],["TED%3AAF-A0A2S5D092-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5D092-F1-model_v4_TED01"],["TED%3AAF-A0A2S0JW09-F1-model_v4_TED01","TED novel fold AF-A0A2S0JW09-F1-model_v4_TED01"]],"b":[["alkaloids/biotin.yaml","biotin"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:1894","l":"Kitasatospora aureofaciens","na":2,"nb":6,"a":[["Pfam%3APF01933","2-phospho-L-lactate transferase CofD"],["TED%3AAF-A0A1E7NF13-F1-model_v4_TED01","TED novel fold AF-A0A1E7NF13-F1-model_v4_TED01"]],"b":[["fatty_acids/triacsin-c.yaml","triacsin C"],["polyketides/auricin.yaml","auricin"],["polyketides/chlortetracycline.yaml","chlortetracycline"],["polyketides/lipomycin.yaml","α-lipomycin"],["polyketides/oxytetracycline.yaml","oxytetracycline"],["polyketides/venturicidin-a.yaml","venturicidin A"]]},{"id":"NCBITaxon:321","l":"Pseudomonas syringae pv. syringae","na":6,"nb":2,"a":[["Pfam%3APF03421","YopJ Serine/Threonine acetyltransferase"],["Pfam%3APF17914","HopA1 effector protein family"],["Pfam%3APF27361","HrcQa N-terminal domain"],["Pfam%3APF04877","HrpZ"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]],"b":[["amino_acids_and_peptides/3-methylarginine.yaml","3-methylarginine"],["unclassified/syringopeptin-25a.yaml","syringopeptin 25A"]]},{"id":"NCBITaxon:52","l":"Chondromyces crocatus","na":2,"nb":6,"a":[["TED%3AAF-A0A0K1ER44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0K1ER44-F1-model_v4_TED01"],["TED%3AAF-A0A0K1E854-F1-model_v4_TED01","TED novel fold AF-A0A0K1E854-F1-model_v4_TED01"]],"b":[["polyketides/chondrochloren-a.yaml","chondrochloren A"],["polyketides/cmc-thuggacin-a.yaml","Cmc-thuggacin A"],["polyketides/crocacin.yaml","crocacin"],["shikimates_and_phenylpropanoids/ajudazol-a.yaml","ajudazol A"],["unclassified/chondramide-a.yaml","chondramide A"],["unclassified/cmc-thuggacin-b.yaml","Cmc-thuggacin B"]]},{"id":"NCBITaxon:2795974","l":"Stieleria maiorica","na":2,"nb":5,"a":[["TED%3AAF-A0A5B9MHL4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5B9MHL4-F1-model_v4_TED02"],["TED%3AAF-A0A5B9MK37-F1-model_v4_TED03","TED novel fold AF-A0A5B9MK37-F1-model_v4_TED03"]],"b":[["alkaloids/stieleriacine-a1.yaml","stieleriacine A1"],["alkaloids/stieleriacine-a2.yaml","stieleriacine A2"],["fatty_acids/stieleriacine-c.yaml","stieleriacine C"],["unclassified/stieleriacine-b1.yaml","stieleriacine B1"],["unclassified/stieleriacine-b2.yaml","stieleriacine B2"]]},{"id":"NCBITaxon:305","l":"Ralstonia solanacearum","na":5,"nb":2,"a":[["Pfam%3APF14897","EpsG family"],["TED%3AAF-A0A7I8FQZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7I8FQZ6-F1-model_v4_TED01"],["TED%3AAF-A0A7H1MI34-F1-model_v4_TED01","TED novel fold AF-A0A7H1MI34-F1-model_v4_TED01"],["TED%3AAF-A0A7I8FKL4-F1-model_v4_TED01","TED novel fold AF-A0A7I8FKL4-F1-model_v4_TED01"],["TED%3AAF-A0A850FKB0-F1-model_v4_TED01","TED novel fold AF-A0A850FKB0-F1-model_v4_TED01"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"],["unclassified/micacocidin.yaml","micacocidin"]]},{"id":"NCBITaxon:394096","l":"Hyalangium minutum","na":5,"nb":2,"a":[["TED%3AAF-A0A085W4M3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085W4M3-F1-model_v4_TED01"],["TED%3AAF-A0A085WRA7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085WRA7-F1-model_v4_TED01"],["TED%3AAF-A0A085WWM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085WWM4-F1-model_v4_TED01"],["TED%3AAF-A0A085W7S5-F1-model_v4_TED03","TED novel fold AF-A0A085W7S5-F1-model_v4_TED03"],["TED%3AAF-A0A085WH04-F1-model_v4_TED01","TED novel fold AF-A0A085WH04-F1-model_v4_TED01"]],"b":[["polyketides/nystatin-a1.yaml","nystatin A1"],["unclassified/myxochromide-d-2.yaml","myxochromide D"]]},{"id":"NCBITaxon:193462","l":"Streptomyces niveus","na":2,"nb":4,"a":[["Pfam%3APF16861","Carbamoyltransferase C-terminus"],["Pfam%3APF02543","Carbamoyltransferase N-terminus"]],"b":[["alkaloids/phenaziterpene-a.yaml","phenaziterpene A"],["carbohydrates/kanamycin-a.yaml","kanamycin A"],["shikimates_and_phenylpropanoids/cathomycin.yaml","cathomycin"],["unclassified/be-14106.yaml","BE-14106"]]},{"id":"NCBITaxon:394095","l":"Pyxidicoccus fallax","na":4,"nb":2,"a":[["TED%3AAF-A0A848LUK3-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A848LUK3-F1-model_v4_TED04"],["TED%3AAF-A0A848LF16-F1-model_v4_TED01","TED novel fold AF-A0A848LF16-F1-model_v4_TED01"],["TED%3AAF-A0A848LFV1-F1-model_v4_TED03","TED novel fold AF-A0A848LFV1-F1-model_v4_TED03"],["TED%3AAF-A0A848LG55-F1-model_v4_TED01","TED novel fold AF-A0A848LG55-F1-model_v4_TED01"]],"b":[["polyketides/gulmirecin-a.yaml","gulmirecin A"],["unclassified/myxarylin.yaml","Myxarylin"]]},{"id":"NCBITaxon:426418","l":"Pyrenophora tritici-repentis Pt-1C-BFP","na":2,"nb":4,"a":[["TED%3AAF-B2VYP9-F1-model_v4_TED01","TED novel fold AF-B2VYP9-F1-model_v4_TED01"],["TED%3AAF-B2VZ40-F1-model_v4_TED02","TED novel fold AF-B2VZ40-F1-model_v4_TED02"]],"b":[["unclassified/triticone-a.yaml","triticone A"],["unclassified/triticone-b.yaml","triticone B"],["unclassified/triticone-c.yaml","triticone C"],["unclassified/triticone-f.yaml","triticone F"]]},{"id":"NCBITaxon:5270","l":"","na":4,"nb":2,"a":[["Pfam%3APF17445","Mating factor A1"],["Pfam%3APF24563","Mug60/KHD4 KH type I domain"],["Pfam%3APF01185","Fungal hydrophobin"],["Pfam%3APF07460","NUMOD3 motif"]],"b":[["fatty_acids/itaconic-acid.yaml","itaconic acid"],["fatty_acids/ustilagic-acid.yaml","ustilagic acid"]]},{"id":"NCBITaxon:55601","l":"Vibrio anguillarum","na":4,"nb":2,"a":[["Pfam%3APF17327","Acyl homoserine lactone synthase"],["PROSITE%3APS00949","Autoinducer synthase family signature"],["TED%3AAF-A0A241NLV5-F1-model_v4_TED03","TED novel fold AF-A0A241NLV5-F1-model_v4_TED03"],["TED%3AAF-A0A290PUC4-F1-model_v4_TED02","TED novel fold AF-A0A290PUC4-F1-model_v4_TED02"]],"b":[["alkaloids/anguibactin.yaml","anguibactin"],["amino_acids_and_peptides/vanchrobactin.yaml","vanchrobactin"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":4,"nb":2,"a":[["Pfam%3APF01375","Heat-labile enterotoxin alpha chain"],["Pfam%3APF09101","Exotoxin A binding"],["Pfam%3APF09009","Exotoxin A catalytic"],["Pfam%3APF09102","Exotoxin A, targeting"]],"b":[["alkaloids/vibriobactin-2.yaml","vibriobactin"],["alkaloids/vibriobactin.yaml","vibriobactin"]]},{"id":"UniProt:P02829","l":"","na":4,"nb":2,"a":[["ComplexPortal%3ACPX-1276","HMC complex"],["GO%3A0006458","'de novo' protein folding"],["GO%3A0043248","proteasome assembly"],["GO%3A0070482","response to oxygen levels"]],"b":[["polyketides/monocillin-iv.yaml","monocillin IV"],["polyketides/radicicol.yaml","radicicol"]]},{"id":"NCBITaxon:1120925","l":"Acinetobacter bouvetii DSM 14964 = CIP 107468","na":2,"nb":3,"a":[["proteintraitsmech%3AELIFE109154_VibH_like","VibH-like metallophore standalone condensation enzyme family"],["TED%3AAF-N9C7M4-F1-model_v4_TED02","TED novel fold AF-N9C7M4-F1-model_v4_TED02"]],"b":[["alkaloids/butanochelin.yaml","butanochelin"],["alkaloids/pentanochelin.yaml","pentanochelin"],["alkaloids/propanochelin.yaml","propanochelin"]]},{"id":"NCBITaxon:1229662","l":"Pestalotiopsis fici (strain W106-1 / CGMCC3.15140)","na":3,"nb":2,"a":[["Pfam%3APF26087","Domain of unknown function (DUF8032)"],["Pfam%3APF07110","EthD domain"],["TED%3AAF-W3WKJ8-F1-model_v4_TED01","TED novel fold AF-W3WKJ8-F1-model_v4_TED01"]],"b":[["polyketides/naphthalene-1-3-8-triol.yaml","naphthalene-1,3,8-triol"],["polyketides/scytalone.yaml","scytalone"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":2,"nb":3,"a":[["Pfam%3APF02052","Gallidermin"],["Pfam%3APF04604","Type-A lantibiotic"]],"b":[["unclassified/leuvalin.yaml","leuvalin"],["unclassified/mutanocyclin.yaml","mutanocyclin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":2,"a":[["TED%3AAF-A0A142EAM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142EAM9-F1-model_v4_TED03"],["TED%3AAF-A0A1Q3DTY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3DTY6-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3DNE3-F1-model_v4_TED01","TED novel fold AF-A0A1Q3DNE3-F1-model_v4_TED01"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:1907","l":"Streptomyces glaucescens","na":2,"nb":3,"a":[["Pfam%3APF04673","Polyketide synthesis cyclase"],["Pfam%3APF04655","Aminoglycoside/hydroxyurea antibiotic resistance kinase"]],"b":[["carbohydrates/5-hydroxystreptomycin.yaml","5'-hydroxystreptomycin"],["carbohydrates/streptomycin.yaml","streptomycin"],["polyketides/tetracenomycin-c.yaml","tetracenomycin C"]]},{"id":"NCBITaxon:1940","l":"","na":2,"nb":3,"a":[["TED%3AAF-A0A1Z2LD39-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z2LD39-F1-model_v4_TED01"],["TED%3AAF-A0A1Z2LBV3-F1-model_v4_TED01","TED novel fold AF-A0A1Z2LBV3-F1-model_v4_TED01"]],"b":[["fatty_acids/fuelimicin-b.yaml","fuelimicin B"],["fatty_acids/fuelimicin-c.yaml","fuelimicin C"],["fatty_acids/fuelimycin-a.yaml","fuelimycin A"]]},{"id":"NCBITaxon:240292","l":"Trichormus variabilis ATCC 29413","na":2,"nb":3,"a":[["Pfam%3APF18921","Cyanophycin synthase-like N-terminal domain"],["Pfam%3APF13619","KTSC domain"]],"b":[["unclassified/4-deoxygadusol.yaml","4-deoxygadusol"],["unclassified/mycosporine-glycine.yaml","mycosporine glycine"],["unclassified/shinorine.yaml","shinorine"]]},{"id":"NCBITaxon:344612","l":"Aspergillus clavatus (strain ATCC 1007 / CBS 513.65 / DSM 816 / NCTC 3887 / NRRL 1 / QM 1276 / 107)","na":3,"nb":2,"a":[["Pfam%3APF28457","Probable beta-glucosidase btgE N-terminal domain"],["Pfam%3APF24438","IML1, N-terminal, fungi"],["Pfam%3APF25326","SRB8 ARM-like domain"]],"b":[["alkaloids/cytochalasin-e.yaml","cytochalasin E"],["alkaloids/cytochalasin-k.yaml","cytochalasin K"]]},{"id":"NCBITaxon:3635","l":"Gossypium hirsutum","na":3,"nb":2,"a":[["Pfam%3APF20452","Calmodulin binding protein C-terminal domain"],["Pfam%3APF20451","Calmodulin binding protein central domain"],["Pfam%3APF07887","Calmodulin binding protein-like N-terminal domain"]],"b":[["fatty_acids/butyrolactone.yaml","γ-butyrolactone"],["terpenoids/cadinene.yaml","(−)-δ-cadinene"]]},{"id":"NCBITaxon:394503","l":"Ruminiclostridium cellulolyticum H10","na":3,"nb":2,"a":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["PROSITE%3APS00812","Glycosyl hydrolases family 8 signature"],["Pfam%3APF01270","Glycosyl hydrolases family 8"]],"b":[["alkaloids/closthioamide.yaml","closthioamide"],["amino_acids_and_peptides/rc-aip1.yaml","Rc-AIP1"]]},{"id":"NCBITaxon:42236","l":"Streptomyces diastatochromogenes","na":2,"nb":3,"a":[["TED%3AAF-A0A233S9R2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A233S9R2-F1-model_v4_TED01"],["TED%3AAF-A0A233SM76-F1-model_v4_TED01","TED novel fold AF-A0A233SM76-F1-model_v4_TED01"]],"b":[["carbohydrates/toyocamycin.yaml","toyocamycin"],["polyketides/concanamycin-a.yaml","concanamycin A"],["polyketides/polyketomycin.yaml","polyketomycin"]]},{"id":"NCBITaxon:44250","l":"Paenibacillus alvei","na":3,"nb":2,"a":[["PROSITE%3APS00481","Thiol-activated cytolysins signature"],["TED%3AAF-A0A383R9F4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A383R9F4-F1-model_v4_TED01"],["TED%3AAF-A0A7Y4MLP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4MLP7-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/colistin-a.yaml","colistin A"],["amino_acids_and_peptides/colistin-b.yaml","colistin B"]]},{"id":"NCBITaxon:4530","l":"Oryza sativa","na":2,"nb":3,"a":[["Pfam%3APF10839","Protein of unknown function (DUF2647)"],["PROSITE%3APS00937","Ribosomal protein L20 signature"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/nonadec-1-ene.yaml","nonadec-1-ene"],["terpenoids/phytocassane.yaml","phytocassane"]]},{"id":"NCBITaxon:474922","l":"Colletotrichum gloeosporioides","na":2,"nb":3,"a":[["Pfam%3APF28223","CAP22"],["PROSITE%3APS00155","Cutinase, serine active site"]],"b":[["unclassified/colletochlorin-a.yaml","Colletochlorin A"],["unclassified/colletotrichin.yaml","colletotrichin"],["unclassified/orcinol.yaml","orcinol"]]},{"id":"NCBITaxon:51201","l":"Streptomyces griseocarneus","na":3,"nb":2,"a":[["TED%3AAF-A0A3L8IG13-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3L8IG13-F1-model_v4_TED01"],["TED%3AAF-A0A3L8KW22-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3L8KW22-F1-model_v4_TED02"],["TED%3AAF-A0A8A3HJQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8A3HJQ3-F1-model_v4_TED01"]],"b":[["alkaloids/pimprinine.yaml","pimprinine"],["carbohydrates/5-hydroxystreptomycin.yaml","5'-hydroxystreptomycin"]]},{"id":"NCBITaxon:536","l":"Chromobacterium violaceum","na":2,"nb":3,"a":[["TED%3AAF-A0A381EUD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A381EUD6-F1-model_v4_TED01"],["TED%3AAF-A0A447THJ9-F1-model_v4_TED01","TED novel fold AF-A0A447THJ9-F1-model_v4_TED01"]],"b":[["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["unclassified/romidepsin.yaml","romidepsin"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":3,"nb":2,"a":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"],["TED%3AAF-A0A7H8I034-F1-model_v4_TED01","TED novel fold AF-A0A7H8I034-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/aerobactin.yaml","aerobactin"],["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":3,"nb":2,"a":[["Pfam%3APF04205","FMN-binding domain"],["Pfam%3APF10795","Protein of unknown function (DUF2607)"],["TED%3AAF-A0A1W6U0N2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W6U0N2-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/vibrioferrin-2.yaml","vibrioferrin"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:67267","l":"Streptomyces alboflavus","na":3,"nb":2,"a":[["TED%3AAF-A0A1Z1WH37-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z1WH37-F1-model_v4_TED01"],["TED%3AAF-A0A291W4F3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A291W4F3-F1-model_v4_TED01"],["TED%3AAF-A0A291W5G3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A291W5G3-F1-model_v4_TED01"]],"b":[["alkaloids/thienodolin.yaml","thienodolin"],["terpenoids/2-methylisoborneol.yaml","2-methylisoborneol"]]},{"id":"NCBITaxon:1116229","l":"","na":2,"nb":2,"a":[["Pfam%3APF28402","Pneumocandin biosynthesis cluster protein B C-terminal domain"],["TED%3AAF-S3CJ96-F1-model_v4_TED01","TED novel fold AF-S3CJ96-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/pneumocandin-a0.yaml","pneumocandin A0"],["amino_acids_and_peptides/pneumocandin-b0.yaml","pneumocandin B0"]]},{"id":"NCBITaxon:1284","l":"Staphylococcus hyicus","na":2,"nb":2,"a":[["Pfam%3APF04650","YSIRK type signal peptide"],["PROSITE%3APS01123","Thermonuclease family signature 1"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["unclassified/staphyloferrin-a.yaml","staphyloferrin A"]]},{"id":"NCBITaxon:1365484","l":"","na":2,"nb":2,"a":[["Pfam%3APF11578","Protein of unknown function (DUF3237)"],["Pfam%3APF14269","Arylsulfotransferase (ASST)"]],"b":[["alkaloids/mycophenolic-acid-2.yaml","mycophenolic acid"],["terpenoids/pr-toxin.yaml","PR-toxin"]]},{"id":"NCBITaxon:1392255","l":"","na":2,"nb":2,"a":[["Pfam%3APF08592","Anthrone oxygenase"],["TED%3AAF-A0A2I1CES2-F1-model_v4_TED03","TED novel fold AF-A0A2I1CES2-F1-model_v4_TED03"]],"b":[["polyketides/neosartorin.yaml","neosartorin"],["unclassified/novofumigatonin.yaml","novofumigatonin"]]},{"id":"NCBITaxon:247156","l":"Nocardia farcinica IFM 10152","na":2,"nb":2,"a":[["Pfam%3APF19288","CofH/MqnC C-terminal region"],["Pfam%3APF17645","Arylmalonate decarboxylase"]],"b":[["amino_acids_and_peptides/nocobactin-na.yaml","nocobactin NA"],["unclassified/nocobactin-na-10152b.yaml","nocobactin NA 10152B"]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":2,"nb":2,"a":[["Pfam%3APF21252","Glycosyl hydrolase 109, C-terminal domain"],["TED%3AAF-A0A3P1YJQ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3P1YJQ6-F1-model_v4_TED01"]],"b":[["carbohydrates/legionaminic-acid.yaml","legionaminic acid"],["carbohydrates/pseudaminate.yaml","pseudaminate"]]},{"id":"NCBITaxon:285532","l":"Streptomyces achromogenes subsp. streptozoticus","na":2,"nb":2,"a":[["Pfam%3APF07883","Cupin domain"],["Pfam%3APF14518","Iron-containing redox enzyme"]],"b":[["carbohydrates/streptozotocin.yaml","streptozotocin"],["unclassified/enteromycin.yaml","enteromycin"]]},{"id":"NCBITaxon:29430","l":"Acinetobacter haemolyticus","na":2,"nb":2,"a":[["TED%3AAF-A0A845PGH5-F1-model_v4_TED01","TED novel fold AF-A0A845PGH5-F1-model_v4_TED01"],["TED%3AAF-A0A857IU13-F1-model_v4_TED06","TED novel fold AF-A0A857IU13-F1-model_v4_TED06"]],"b":[["alkaloids/acinetoferrin.yaml","acinetoferrin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":2,"nb":2,"a":[["TED%3AAF-A0A6N3WS12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N3WS12-F1-model_v4_TED01"],["TED%3AAF-A0A3R7GIU2-F1-model_v4_TED02","TED novel fold AF-A0A3R7GIU2-F1-model_v4_TED02"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["terpenoids/xanthan.yaml","xanthan"]]},{"id":"NCBITaxon:3469","l":"Papaver somniferum","na":2,"nb":2,"a":[["Pfam%3APF00407","Pathogenesis-related protein Bet v 1 family"],["TED%3AAF-A0A4Y7LH48-F1-model_v4_TED01","TED novel fold AF-A0A4Y7LH48-F1-model_v4_TED01"]],"b":[["alkaloids/noscapine.yaml","(−)-noscapine"],["alkaloids/thebaine.yaml","thebaine"]]},{"id":"NCBITaxon:5044","l":"","na":2,"nb":2,"a":[["PROSITE%3APS00185","Isopenicillin N synthase signature 1"],["PROSITE%3APS00186","Isopenicillin N synthase signature 2"]],"b":[["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"],["polyketides/sorbicillin.yaml","sorbicillin"]]},{"id":"NCBITaxon:5074","l":"Penicillium brevicompactum","na":2,"nb":2,"a":[["Pfam%3APF09227","Bubble protein"],["Pfam%3APF18558","Methyltransferase, Helix-turn-helix domain"]],"b":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"],["unclassified/asperphenamate.yaml","asperphenamate"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":2,"nb":2,"a":[["PROSITE%3APS00336","Beta-lactamase class-C active site"],["TED%3AAF-A0A155XQ59-F1-model_v4_TED02","TED novel fold AF-A0A155XQ59-F1-model_v4_TED02"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["terpenoids/mk-8.yaml","MK-8"]]},{"id":"NCBITaxon:5514","l":"Fusarium sporotrichioides","na":2,"nb":2,"a":[["Pfam%3APF22701","Mal s 1 allergenic protein-like"],["TED%3AAF-A0A395RG49-F1-model_v4_TED02","TED novel fold AF-A0A395RG49-F1-model_v4_TED02"]],"b":[["terpenoids/t-2-toxin.yaml","T-2 toxin"],["unclassified/beauvericin.yaml","beauvericin"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":2,"nb":2,"a":[["TED%3AAF-B5UAE0-F1-model_v4_TED01","TED highly-symmetric fold AF-B5UAE0-F1-model_v4_TED01"],["TED%3AAF-A0A3E1IF45-F1-model_v4_TED01","TED novel fold AF-A0A3E1IF45-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/vibrioferrin-2.yaml","vibrioferrin"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:68170","l":"","na":2,"nb":2,"a":[["Pfam%3APF12902","Ferritin-like"],["TED%3AAF-A0A0F0GZM7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0F0GZM7-F1-model_v4_TED03"]],"b":[["alkaloids/rebeccamycin.yaml","rebeccamycin"],["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:69","l":"Lysobacter enzymogenes","na":2,"nb":2,"a":[["TED%3AAF-A0A1J1E6A8-F1-model_v4_TED02","TED novel fold AF-A0A1J1E6A8-F1-model_v4_TED02"],["TED%3AAF-A0A7T8MLU2-F1-model_v4_TED03","TED novel fold AF-A0A7T8MLU2-F1-model_v4_TED03"]],"b":[["unclassified/heat-stable-antifungal-factor.yaml","heat-stable antifungal factor"],["unclassified/wap-8294a2.yaml","WAP-8294A2"]]},{"id":"NCBITaxon:983644","l":"","na":2,"nb":2,"a":[["TED%3AAF-G3J617-F1-model_v4_TED01","TED highly-symmetric fold AF-G3J617-F1-model_v4_TED01"],["TED%3AAF-G3JAX2-F1-model_v4_TED03","TED novel fold AF-G3JAX2-F1-model_v4_TED03"]],"b":[["unclassified/beauveriolide-i.yaml","beauveriolide I"],["unclassified/beauveriolide-iii.yaml","beauveriolide III"]]},{"id":"UniProt:P04058","l":"","na":2,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_03S","03S-binding site"],["proteintraitsmech%3ABIOLIP_AA7","AA7-binding site"]],"b":[["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/physostigmine.yaml","physostigmine"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":297,"nb":1,"a":[["IDPO%3A0000002","disorder"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000045","phosphorylation display site"],["IDPO%3A0000059","self-inhibition"],["Pfam%3APF17837","4'-phosphopantetheinyl transferase N-terminal domain"]],"b":[["unclassified/mycobactin.yaml","mycobactin"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":1,"nb":116,"a":[["Pfam%3APF03437","BtpA family"]],"b":[["alkaloids/altemicidin.yaml","altemicidin"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"],["alkaloids/aurachin-ss.yaml","aurachin SS"],["alkaloids/berninamycin-j.yaml","berninamycin J"],["alkaloids/berninamycin-k.yaml","berninamycin K"]]},{"id":"UniProt:P35222","l":"","na":91,"nb":1,"a":[["ComplexPortal%3ACPX-316","beta1-catenin - LEF1 complex"],["ComplexPortal%3ACPX-12016","-"],["ComplexPortal%3ACPX-14403","-"],["ComplexPortal%3ACPX-16015","-"],["ComplexPortal%3ACPX-16618","-"],["ComplexPortal%3ACPX-17387","-"]],"b":[["alkaloids/toxoflavin.yaml","toxoflavin"]]},{"id":"NCBITaxon:199310","l":"Escherichia coli O6:H1 (strain CFT073 / ATCC 700928 / UPEC)","na":89,"nb":1,"a":[["Pfam%3APF12343","DeaD helicase C-terminal disordered region"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF08298","PrkA AAA domain"],["Pfam%3APF17425","Arylsulfotransferase Ig-like domain"],["Pfam%3APF02611","CDP-diacylglycerol pyrophosphatase"],["Pfam%3APF10729","Cell division activator CedA"]],"b":[["unclassified/ape-ec.yaml","APE Ec"]]},{"id":"NCBITaxon:1883427","l":"Actinomycetia bacterium","na":78,"nb":1,"a":[["TED%3AAF-A0A2E4AXX0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2E4AXX0-F1-model_v4_TED04"],["TED%3AAF-A0A2W4J8T7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W4J8T7-F1-model_v4_TED01"],["TED%3AAF-A0A350SGF5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A350SGF5-F1-model_v4_TED03"],["TED%3AAF-A0A350XSJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A350XSJ9-F1-model_v4_TED01"],["TED%3AAF-A0A3A4PC78-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A4PC78-F1-model_v4_TED01"],["TED%3AAF-A0A3A4PG42-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A4PG42-F1-model_v4_TED01"]],"b":[["polyketides/anthrabenzoxocinone.yaml","anthrabenzoxocinone"]]},{"id":"UniProt:Q13547","l":"","na":66,"nb":1,"a":[["ComplexPortal%3ACPX-12294","-"],["ComplexPortal%3ACPX-13515","-"],["ComplexPortal%3ACPX-14890","-"],["ComplexPortal%3ACPX-15325","-"],["ComplexPortal%3ACPX-18342","-"],["ComplexPortal%3ACPX-20908","-"]],"b":[["amino_acids_and_peptides/apicidin.yaml","apicidin"]]},{"id":"UniProt:P42345","l":"","na":62,"nb":1,"a":[["ComplexPortal%3ACPX-11469","-"],["ComplexPortal%3ACPX-12119","-"],["ComplexPortal%3ACPX-12694","-"],["ComplexPortal%3ACPX-13423","-"],["ComplexPortal%3ACPX-15386","-"],["ComplexPortal%3ACPX-15693","-"]],"b":[["polyketides/sirolimus.yaml","sirolimus"]]},{"id":"UniProt:P21802","l":"","na":52,"nb":1,"a":[["ComplexPortal%3ACPX-11311","-"],["ComplexPortal%3ACPX-13057","-"],["ComplexPortal%3ACPX-19802","-"],["ComplexPortal%3ACPX-20298","-"],["ComplexPortal%3ACPX-21995","-"],["ComplexPortal%3ACPX-24266","-"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:2026763","l":"Myxococcales bacterium","na":51,"nb":1,"a":[["TED%3AAF-A0A2E5HQQ8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E5HQQ8-F1-model_v4_TED02"],["TED%3AAF-A0A2E6VRH0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E6VRH0-F1-model_v4_TED01"],["TED%3AAF-A0A2E6VU88-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E6VU88-F1-model_v4_TED01"],["TED%3AAF-A0A2F0AQB0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2F0AQB0-F1-model_v4_TED03"],["TED%3AAF-A0A2F0AS25-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2F0AS25-F1-model_v4_TED01"],["TED%3AAF-A0A356T3G6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A356T3G6-F1-model_v4_TED01"]],"b":[["polyketides/sorangipyranone.yaml","Sorangipyranone"]]},{"id":"UniProt:O15379","l":"","na":49,"nb":1,"a":[["ComplexPortal%3ACPX-11143","-"],["ComplexPortal%3ACPX-11157","-"],["ComplexPortal%3ACPX-15289","-"],["ComplexPortal%3ACPX-16349","-"],["ComplexPortal%3ACPX-18525","-"],["ComplexPortal%3ACPX-22988","-"]],"b":[["amino_acids_and_peptides/apicidin.yaml","apicidin"]]},{"id":"UniProt:P49841","l":"","na":49,"nb":1,"a":[["ComplexPortal%3ACPX-109","Beta-catenin destruction core complex, APC-AXIN1-GSK3B variant"],["ComplexPortal%3ACPX-439","Beta-catenin destruction core complex, APC-AXIN2-GSK3B variant"],["ComplexPortal%3ACPX-99","Beta-catenin destruction core complex, APC2-AXIN1-GSK3B variant"],["ComplexPortal%3ACPX-440","Beta-catenin destruction core complex, APC2-AXIN2-GSK3B variant"],["ComplexPortal%3ACPX-14345","-"],["ComplexPortal%3ACPX-16629","-"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:9031","l":"Gallus gallus","na":48,"nb":1,"a":[["Pfam%3APF16620","Unstructured linker between I-set domains 2 and 3 on MYLCK"],["Pfam%3APF15512","Chromatin assembly factor complex 1 subunit p60, C-terminal"],["Pfam%3APF18130","ATP-grasp N-terminal domain"],["Pfam%3APF15632","ATP-grasp in the biosynthetic pathway with Ter operon"],["Pfam%3APF01382","Avidin family"],["Pfam%3APF08072","BDHCT (NUC031) domain"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P08684","l":"","na":47,"nb":1,"a":[["EC%3A1.14.14.55","quinine 3-monooxygenase"],["EC%3A1.14.14.56","1,8-cineole 2-exo-monooxygenase"],["EC%3A1.14.14.73","albendazole monooxygenase (sufoxide-forming)"],["RHEA%3A32895","1,8-cineole + reduced [NADPH--hemoprotein reductase] + O2 = 2-exo-hydroxy-1,8-cineole + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A20149","quinine + reduced [NADPH--hemoprotein reductase] + O2 = 3-hydroxyquinine + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["ComplexPortal%3ACPX-11243","-"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"UniProt:P0A8V2","l":"","na":47,"nb":1,"a":[["ComplexPortal%3ACPX-4888","DNA-directed RNA polymerase holoenzyme complex, Sigma fecI variant"],["ComplexPortal%3ACPX-4884","DNA-directed RNA polymerase holoenzyme complex, Sigma54 variant"],["ComplexPortal%3ACPX-4881","DNA-directed RNA polymerase holoenzyme complex, Sigma70 variant"],["ComplexPortal%3ACPX-4885","DNA-directed RNA polymerase holoenzyme complex, SigmaE variant"],["ComplexPortal%3ACPX-4886","DNA-directed RNA polymerase holoenzyme complex, SigmaF variant"],["ComplexPortal%3ACPX-4887","DNA-directed RNA polymerase holoenzyme complex, SigmaH variant"]],"b":[["polyketides/rifamycin-sv.yaml","rifamycin SV"]]},{"id":"UniProt:P31749","l":"","na":46,"nb":1,"a":[["ComplexPortal%3ACPX-22352","-"],["ComplexPortal%3ACPX-24286","-"],["GO%3A0099104","potassium channel activator activity"],["GO%3A1904841","TORC2 complex binding"],["GO%3A0006924","activation-induced cell death of T cells"],["GO%3A0043276","anoikis"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P07900","l":"","na":45,"nb":1,"a":[["ComplexPortal%3ACPX-12937","-"],["ComplexPortal%3ACPX-14751","-"],["ComplexPortal%3ACPX-15245","-"],["ComplexPortal%3ACPX-17900","-"],["ComplexPortal%3ACPX-18328","-"],["ComplexPortal%3ACPX-19396","-"]],"b":[["polyketides/radicicol.yaml","radicicol"]]},{"id":"NCBITaxon:243277","l":"Vibrio cholerae serotype O1 (strain ATCC 39315 / El Tor Inaba N16961)","na":44,"nb":1,"a":[["IDPO%3A0000011","disorder to order"],["IDPO%3A0000014","order to disorder"],["Pfam%3APF16671","Actin cross-linking domain"],["Pfam%3APF00842","Alanine racemase, C-terminal domain"],["Pfam%3APF06228","Haem utilisation ChuX/HutX"],["Pfam%3APF19425","Csd3 second domain"]],"b":[["alkaloids/vibriobactin-2.yaml","vibriobactin"]]},{"id":"UniProt:P25054","l":"","na":44,"nb":1,"a":[["ComplexPortal%3ACPX-107","Beta-catenin destruction core complex, APC-AXIN1-GSK3A variant"],["ComplexPortal%3ACPX-109","Beta-catenin destruction core complex, APC-AXIN1-GSK3B variant"],["ComplexPortal%3ACPX-441","Beta-catenin destruction core complex, APC-AXIN2-GSK3A variant"],["ComplexPortal%3ACPX-439","Beta-catenin destruction core complex, APC-AXIN2-GSK3B variant"],["ComplexPortal%3ACPX-12016","-"],["ComplexPortal%3ACPX-14403","-"]],"b":[["alkaloids/toxoflavin.yaml","toxoflavin"]]},{"id":"UniProt:P09917","l":"","na":42,"nb":1,"a":[["EC%3A1.13.11.34","arachidonate 5-lipoxygenase"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"],["RHEA%3A32307","(5Z,8Z,11Z,14Z)-eicosatetraenoate + O2 = leukotriene A4 + H2O"],["ComplexPortal%3ACPX-15832","-"],["ComplexPortal%3ACPX-18202","-"],["ComplexPortal%3ACPX-20365","-"]],"b":[["alkaloids/myxochelin-a.yaml","myxochelin A"]]},{"id":"UniProt:Q9UBN7","l":"","na":38,"nb":1,"a":[["EC%3A3.5.1.-","In linear amides"],["ComplexPortal%3ACPX-11040","-"],["ComplexPortal%3ACPX-17348","-"],["ComplexPortal%3ACPX-19115","-"],["ComplexPortal%3ACPX-25368","-"],["ComplexPortal%3ACPX-25485","-"]],"b":[["amino_acids_and_peptides/apicidin.yaml","apicidin"]]},{"id":"UniProt:Q04771","l":"","na":37,"nb":1,"a":[["ComplexPortal%3ACPX-11394","-"],["ComplexPortal%3ACPX-11893","-"],["ComplexPortal%3ACPX-14842","-"],["ComplexPortal%3ACPX-15036","-"],["ComplexPortal%3ACPX-17430","-"],["ComplexPortal%3ACPX-18135","-"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P06493","l":"","na":36,"nb":1,"a":[["ComplexPortal%3ACPX-10673","-"],["ComplexPortal%3ACPX-11851","-"],["ComplexPortal%3ACPX-13027","-"],["ComplexPortal%3ACPX-15730","-"],["ComplexPortal%3ACPX-19796","-"],["ComplexPortal%3ACPX-21602","-"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P18031","l":"","na":35,"nb":1,"a":[["ComplexPortal%3ACPX-26130","-"],["GO%3A0098554","cytoplasmic side of endoplasmic reticulum membrane"],["GO%3A0031904","endosome lumen"],["GO%3A0030061","mitochondrial crista"],["GO%3A0097443","sorting endosome"],["GO%3A0046875","ephrin receptor binding"]],"b":[["terpenoids/lupeol.yaml","lupeol"]]},{"id":"UniProt:P09619","l":"","na":34,"nb":1,"a":[["ComplexPortal%3ACPX-11721","-"],["ComplexPortal%3ACPX-18342","-"],["ComplexPortal%3ACPX-18512","-"],["ComplexPortal%3ACPX-22260","-"],["ComplexPortal%3ACPX-25686","-"],["ComplexPortal%3ACPX-2892","PDGF receptor alpha-beta - PDGF-AB complex"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P62942","l":"","na":33,"nb":1,"a":[["ComplexPortal%3ACPX-15625","-"],["ComplexPortal%3ACPX-17368","-"],["GO%3A0098562","cytoplasmic side of membrane"],["GO%3A1990425","ryanodine receptor complex"],["GO%3A0016529","sarcoplasmic reticulum"],["GO%3A0033017","sarcoplasmic reticulum membrane"]],"b":[["polyketides/sirolimus.yaml","sirolimus"]]},{"id":"UniProt:P07711","l":"","na":31,"nb":1,"a":[["ComplexPortal%3ACPX-10815","-"],["ComplexPortal%3ACPX-12146","-"],["ComplexPortal%3ACPX-12243","-"],["ComplexPortal%3ACPX-18379","-"],["ComplexPortal%3ACPX-23732","-"],["ComplexPortal%3ACPX-23795","-"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"UniProt:P08238","l":"","na":31,"nb":1,"a":[["ComplexPortal%3ACPX-12937","-"],["ComplexPortal%3ACPX-15245","-"],["ComplexPortal%3ACPX-17900","-"],["ComplexPortal%3ACPX-18328","-"],["ComplexPortal%3ACPX-19396","-"],["ComplexPortal%3ACPX-23773","-"]],"b":[["polyketides/radicicol.yaml","radicicol"]]},{"id":"UniProt:P16234","l":"","na":30,"nb":1,"a":[["ComplexPortal%3ACPX-11080","-"],["ComplexPortal%3ACPX-11911","-"],["ComplexPortal%3ACPX-21238","-"],["ComplexPortal%3ACPX-23986","-"],["ComplexPortal%3ACPX-25630","-"],["ComplexPortal%3ACPX-2892","PDGF receptor alpha-beta - PDGF-AB complex"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"]]},{"id":"UniProt:P36897","l":"","na":30,"nb":1,"a":[["ComplexPortal%3ACPX-529","TGF-beta-1-TGFR complex"],["ComplexPortal%3ACPX-834","TGF-beta-2-TGFR complex"],["ComplexPortal%3ACPX-2544","TGF-beta-3-TGFR complex"],["GO%3A0048179","activin receptor complex"],["GO%3A0048185","activin binding"],["GO%3A0016361","activin receptor activity, type I"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":29,"nb":1,"a":[["Pfam%3APF09156","Anthrax toxin lethal factor, middle domain"],["Pfam%3APF08401","N-terminal domain of anti-restriction factor ArdC"],["Pfam%3APF07737","Anthrax toxin lethal factor, N- and C-terminal domain"],["Pfam%3APF27053","Bacillus anthracis plasmid pXO2 protein 26"],["Pfam%3APF13205","Bacterial Ig-like domain"],["Pfam%3APF17475","Clostridial binary toxin B/anthrax toxin PA domain 2"]],"b":[["alkaloids/petrobactin.yaml","petrobactin"]]},{"id":"UniProt:P00747","l":"","na":29,"nb":1,"a":[["ComplexPortal%3ACPX-11986","-"],["ComplexPortal%3ACPX-14765","-"],["ComplexPortal%3ACPX-15280","-"],["ComplexPortal%3ACPX-16758","-"],["ComplexPortal%3ACPX-17221","-"],["ComplexPortal%3ACPX-19201","-"]],"b":[["alkaloids/congocidine.yaml","congocidine"]]},{"id":"CHEBI:57743","l":"","na":28,"nb":1,"a":[["EC%3A1.14.13.39","nitric-oxide synthase (NADPH)"],["EC%3A1.14.14.47","nitric-oxide synthase (flavodoxin)"],["EC%3A2.1.3.3","ornithine carbamoyltransferase"],["EC%3A3.5.1.20","citrullinase"],["EC%3A3.5.3.18","dimethylargininase"],["EC%3A3.5.3.6","arginine deiminase"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"UniProt:P00156","l":"","na":27,"nb":1,"a":[["ComplexPortal%3ACPX-13288","-"],["ComplexPortal%3ACPX-13705","-"],["ComplexPortal%3ACPX-14252","-"],["ComplexPortal%3ACPX-15275","-"],["ComplexPortal%3ACPX-15481","-"],["ComplexPortal%3ACPX-19909","-"]],"b":[["unclassified/antimycin-a1b.yaml","antimycin A1B"]]},{"id":"UniProt:P56524","l":"","na":27,"nb":1,"a":[["ComplexPortal%3ACPX-10863","-"],["ComplexPortal%3ACPX-10978","-"],["ComplexPortal%3ACPX-11176","-"],["ComplexPortal%3ACPX-11281","-"],["ComplexPortal%3ACPX-12671","-"],["ComplexPortal%3ACPX-12759","-"]],"b":[["amino_acids_and_peptides/apicidin.yaml","apicidin"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":26,"nb":1,"a":[["Pfam%3APF27270","Alr1449"],["Pfam%3APF27301","Alr2735 N-terminal domain"],["Pfam%3APF27288","Alr2735"],["Pfam%3APF21571","Arginine dihydrolase ArgZ-like, C-terminal, first region"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF13205","Bacterial Ig-like domain"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"]]},{"id":"UniProt:P48736","l":"","na":26,"nb":1,"a":[["ComplexPortal%3ACPX-5986","Phosphatidylinositol 3-kinase complex class IB, p110gamma/p101"],["ComplexPortal%3ACPX-5987","Phosphatidylinositol 3-kinase complex class IB, p110gamma/p87"],["GO%3A0005943","phosphatidylinositol 3-kinase complex, class IA"],["GO%3A0005944","phosphatidylinositol 3-kinase complex, class IB"],["GO%3A0046934","1-phosphatidylinositol-4,5-bisphosphate 3-kinase activity"],["GO%3A0035005","1-phosphatidylinositol-4-phosphate 3-kinase activity"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P53350","l":"","na":26,"nb":1,"a":[["ComplexPortal%3ACPX-14028","-"],["ComplexPortal%3ACPX-17085","-"],["ComplexPortal%3ACPX-19451","-"],["GO%3A0010997","anaphase-promoting complex binding"],["GO%3A0097681","double-strand break repair via alternative nonhomologous end joining"],["GO%3A0048313","Golgi inheritance"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P29466","l":"","na":25,"nb":1,"a":[["ComplexPortal%3ACPX-4142","AIM2 inflammasome"],["ComplexPortal%3ACPX-10594","-"],["ComplexPortal%3ACPX-13219","-"],["ComplexPortal%3ACPX-13566","-"],["ComplexPortal%3ACPX-21295","-"],["ComplexPortal%3ACPX-21498","-"]],"b":[["alkaloids/toxoflavin.yaml","toxoflavin"]]},{"id":"UniProt:Q03181","l":"","na":25,"nb":1,"a":[["ComplexPortal%3ACPX-12990","-"],["ComplexPortal%3ACPX-17750","-"],["ComplexPortal%3ACPX-18139","-"],["ComplexPortal%3ACPX-19679","-"],["ComplexPortal%3ACPX-24893","-"],["GO%3A0070539","linoleic acid binding"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"NCBITaxon:2925","l":"Alexandrium catenella","na":24,"nb":1,"a":[["TED%3AAF-A0A7S1KY03-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1KY03-F1-model_v4_TED01"],["TED%3AAF-A0A7S1L1S9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S1L1S9-F1-model_v4_TED02"],["TED%3AAF-A0A7S1ML43-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1ML43-F1-model_v4_TED01"],["TED%3AAF-A0A7S1PQ85-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1PQ85-F1-model_v4_TED01"],["TED%3AAF-A0A7S1QA17-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A7S1QA17-F1-model_v4_TED05"],["TED%3AAF-A0A7S1QL55-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S1QL55-F1-model_v4_TED03"]],"b":[["alkaloids/saxitoxin.yaml","saxitoxin"]]},{"id":"NCBITaxon:73915","l":"Pyrodinium bahamense","na":24,"nb":1,"a":[["TED%3AAF-A0A7S0A4R5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0A4R5-F1-model_v4_TED01"],["TED%3AAF-A0A7S0AC67-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0AC67-F1-model_v4_TED01"],["TED%3AAF-A0A7S0APM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0APM3-F1-model_v4_TED01"],["TED%3AAF-A0A7S0AQ53-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0AQ53-F1-model_v4_TED01"],["TED%3AAF-A0A7S0AX35-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0AX35-F1-model_v4_TED01"],["TED%3AAF-A0A7S0B705-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S0B705-F1-model_v4_TED02"]],"b":[["alkaloids/saxitoxin.yaml","saxitoxin"]]},{"id":"UniProt:O00444","l":"","na":24,"nb":1,"a":[["ComplexPortal%3ACPX-1299","CEP152-PLK4 complex"],["ComplexPortal%3ACPX-1161","CEP192-PLK4 complex"],["GO%3A0098536","deuterosome"],["GO%3A0120098","procentriole"],["GO%3A0098535","de novo centriole assembly involved in multi-ciliated epithelial cell differentiation"],["GO%3A0046601","positive regulation of centriole replication"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P23284","l":"","na":24,"nb":1,"a":[["ComplexPortal%3ACPX-11676","-"],["ComplexPortal%3ACPX-12341","-"],["ComplexPortal%3ACPX-12626","-"],["ComplexPortal%3ACPX-13324","-"],["ComplexPortal%3ACPX-14387","-"],["ComplexPortal%3ACPX-17992","-"]],"b":[["amino_acids_and_peptides/cyclosporin-a.yaml","cyclosporin A"]]},{"id":"NCBITaxon:40559","l":"Botrytis cinerea","na":1,"nb":23,"a":[["Pfam%3APF08883","Dopa 4,5-dioxygenase family"]],"b":[["terpenoids/1-epibotrydial.yaml","1-epibotrydial"],["terpenoids/10-dehydroxy-dihydrobotrydialone.yaml","10-dehydroxy dihydrobotrydialone"],["terpenoids/10-epi-dihydrobotrydial.yaml","10-epi-dihydrobotrydial"],["terpenoids/10-oxo-dihydrobotrydial.yaml","10-Oxo-dihydrobotrydial"],["terpenoids/10-oxodehydrodihydrobotrydial.yaml","10-Oxodehydrodihydrobotrydial"],["terpenoids/10-oxodihydrobotry-1-9-4-5-diendial.yaml","10-Oxodihydrobotry-1(9),4(5)-diendial"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":23,"nb":1,"a":[["Pfam%3APF09255","Caf1 Capsule antigen"],["Pfam%3APF02611","CDP-diacylglycerol pyrophosphatase"],["Pfam%3APF07411","Domain of unknown function (DUF1508)"],["Pfam%3APF05171","Haemin-degrading HemS.ChuX domain"],["Pfam%3APF21500","DNA polymerase III subunit delta', AAA+ ATPase lid domain"],["Pfam%3APF11004","3-deoxy-D-manno-oct-2-ulosonic acid (Kdo) hydroxylase"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"UniProt:O00763","l":"","na":23,"nb":1,"a":[["ComplexPortal%3ACPX-12392","-"],["ComplexPortal%3ACPX-13685","-"],["ComplexPortal%3ACPX-15849","-"],["ComplexPortal%3ACPX-19952","-"],["ComplexPortal%3ACPX-20498","-"],["ComplexPortal%3ACPX-20638","-"]],"b":[["polyketides/soraphen-a.yaml","soraphen A"]]},{"id":"UniProt:P12830","l":"","na":23,"nb":1,"a":[["ComplexPortal%3ACPX-12016","-"],["ComplexPortal%3ACPX-14403","-"],["ComplexPortal%3ACPX-16015","-"],["ComplexPortal%3ACPX-16575","-"],["ComplexPortal%3ACPX-17484","-"],["ComplexPortal%3ACPX-23131","-"]],"b":[["alkaloids/toxoflavin.yaml","toxoflavin"]]},{"id":"UniProt:P24385","l":"","na":23,"nb":1,"a":[["ComplexPortal%3ACPX-10673","-"],["ComplexPortal%3ACPX-18871","-"],["ComplexPortal%3ACPX-20404","-"],["ComplexPortal%3ACPX-21602","-"],["ComplexPortal%3ACPX-26221","-"],["ComplexPortal%3ACPX-26273","-"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"]]},{"id":"UniProt:Q15119","l":"","na":23,"nb":1,"a":[["ComplexPortal%3ACPX-11733","-"],["ComplexPortal%3ACPX-12952","-"],["ComplexPortal%3ACPX-15696","-"],["ComplexPortal%3ACPX-16639","-"],["ComplexPortal%3ACPX-16656","-"],["ComplexPortal%3ACPX-17227","-"]],"b":[["polyketides/radicicol.yaml","radicicol"]]},{"id":"CHEBI:27547","l":"zeaxanthin","na":22,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_27547","requires zeaxanthin"],["EC%3A1.13.11.65","carotenoid isomerooxygenase"],["EC%3A1.13.11.84","crocetin dialdehyde synthase"],["EC%3A1.14.15.21","zeaxanthin epoxidase"],["EC%3A1.14.15.24","beta-carotene 3-hydroxylase"],["EC%3A1.14.99.64","zeaxanthin 4-ketolase"]],"b":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]]},{"id":"NCBITaxon:394","l":"Sinorhizobium fredii (strain NBRC 101917 / NGR234)","na":22,"nb":1,"a":[["Pfam%3APF17841","BID domain of Bartonella effector protein (Bep)"],["Pfam%3APF04255","Protein of unknown function (DUF433)"],["Pfam%3APF18480","Domain of unknown function (DUF5615)"],["Pfam%3APF20008","Domain of unknown function (DUF6429)"],["Pfam%3APF24134","Domain of unknown function (DUF7401)"],["Pfam%3APF18728","AbiV"]],"b":[["terpenoids/gibberellin.yaml","gibberellin"]]},{"id":"UniProt:P42858","l":"","na":22,"nb":1,"a":[["ComplexPortal%3ACPX-25173","-"],["ComplexPortal%3ACPX-11549","Huntingtin-HAP40 endosomal complex"],["GO%3A0005522","profilin binding"],["GO%3A1905337","positive regulation of aggrephagy"],["GO%3A1905291","positive regulation of CAMKK-AMPK signaling cascade"],["GO%3A1904504","positive regulation of lipophagy"]],"b":[["unclassified/antimycin-a.yaml","antimycin A"]]},{"id":"UniProt:P68400","l":"","na":22,"nb":1,"a":[["ComplexPortal%3ACPX-2437","Casein kinase II complex, CSNK2A1-CNSK2A2 variant"],["ComplexPortal%3ACPX-914","Casein kinase II complex, CSNK2A1 variant"],["ComplexPortal%3ACPX-11941","-"],["ComplexPortal%3ACPX-12009","-"],["ComplexPortal%3ACPX-12888","-"],["ComplexPortal%3ACPX-14603","-"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"UniProt:Q24451","l":"","na":22,"nb":1,"a":[["GO%3A0015923","mannosidase activity"],["GO%3A0004572","mannosyl-oligosaccharide 1,3-1,6-alpha-mannosidase activity"],["GO%3A0035010","encapsulation of foreign target"],["GO%3A1904381","Golgi apparatus N-glycan mannose trimming"],["GO%3A0016063","rhodopsin biosynthetic process"],["CDD%3Acd10809","GH38N_AMII_GMII_SfManIII_like"]],"b":[["alkaloids/swainsonine.yaml","swainsonine"]]},{"id":"NCBITaxon:243265","l":"Photorhabdus laumondii subsp. laumondii TTO1","na":1,"nb":21,"a":[["Pfam%3APF07927","HicA toxin of bacterial toxin-antitoxin,"]],"b":[["amino_acids_and_peptides/gamexpeptide-c.yaml","gamexpeptide C"],["amino_acids_and_peptides/luminmycin-a.yaml","luminmycin A"],["amino_acids_and_peptides/ririwpeptide-a.yaml","ririwpeptide A"],["amino_acids_and_peptides/ririwpeptide-b.yaml","ririwpeptide B"],["carbohydrates/oligosaccharide-1-glcnac-1-4-1-6-anhydro-glcnac.yaml","oligosaccharide 1 (GlcNAc-β(1-4)-1,6-anhydro-β-GlcNAc)"],["carbohydrates/oligosaccharide-2-glcnac-1-4-glcnac-1-4-1-6-anhydro-glcnac.yaml","oligosaccharide 2 (GlcNAc-β(1-4)-GlcNAc-β(1-4)-1,6-anhydro-β-GlcNAc)"]]},{"id":"UniProt:O14757","l":"","na":21,"nb":1,"a":[["ComplexPortal%3ACPX-26328","Chromatin regulation assembly"],["ComplexPortal%3ACPX-10797","-"],["ComplexPortal%3ACPX-11546","-"],["ComplexPortal%3ACPX-14608","-"],["ComplexPortal%3ACPX-15285","-"],["ComplexPortal%3ACPX-15872","-"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P00749","l":"","na":21,"nb":1,"a":[["EC%3A3.4.21.73","u-plasminogen activator"],["ComplexPortal%3ACPX-483","uPA-PAI-1 complex"],["ComplexPortal%3ACPX-487","uPA-uPAR complex"],["ComplexPortal%3ACPX-501","uPA-uPAR-vitronectin complex"],["GO%3A1905370","serine-type endopeptidase complex"],["GO%3A0010757","negative regulation of plasminogen activation"]],"b":[["alkaloids/congocidine.yaml","congocidine"]]},{"id":"UniProt:P12268","l":"","na":21,"nb":1,"a":[["ComplexPortal%3ACPX-10668","-"],["ComplexPortal%3ACPX-16204","-"],["ComplexPortal%3ACPX-19278","-"],["ComplexPortal%3ACPX-20073","-"],["ComplexPortal%3ACPX-23201","-"],["ComplexPortal%3ACPX-24150","-"]],"b":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"]]},{"id":"UniProt:P20839","l":"","na":21,"nb":1,"a":[["ComplexPortal%3ACPX-11065","-"],["ComplexPortal%3ACPX-13142","-"],["ComplexPortal%3ACPX-14906","-"],["ComplexPortal%3ACPX-14944","-"],["ComplexPortal%3ACPX-18455","-"],["ComplexPortal%3ACPX-19278","-"]],"b":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"]]},{"id":"UniProt:P49760","l":"","na":21,"nb":1,"a":[["ComplexPortal%3ACPX-11057","-"],["ComplexPortal%3ACPX-12352","-"],["ComplexPortal%3ACPX-13888","-"],["ComplexPortal%3ACPX-15887","-"],["ComplexPortal%3ACPX-18111","-"],["ComplexPortal%3ACPX-18764","-"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P00918","l":"","na":20,"nb":1,"a":[["RHEA%3A10748","hydrogencarbonate + H(+) = CO2 + H2O"],["ComplexPortal%3ACPX-14819","-"],["ComplexPortal%3ACPX-22076","-"],["ComplexPortal%3ACPX-23290","-"],["ComplexPortal%3ACPX-24928","-"],["GO%3A0004089","carbonate dehydratase activity"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:P03372","l":"","na":20,"nb":1,"a":[["ComplexPortal%3ACPX-19787","-"],["ComplexPortal%3ACPX-21796","-"],["ComplexPortal%3ACPX-5156","ERalpha-NCOA2 activated estrogen receptor complex"],["GO%3A0034056","estrogen response element binding"],["GO%3A0030284","nuclear estrogen receptor activity"],["GO%3A0030520","estrogen receptor signaling pathway"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:P11362","l":"","na":20,"nb":1,"a":[["ComplexPortal%3ACPX-13057","-"],["ComplexPortal%3ACPX-18540","-"],["ComplexPortal%3ACPX-19802","-"],["ComplexPortal%3ACPX-21241","-"],["ComplexPortal%3ACPX-21995","-"],["GO%3A0005007","fibroblast growth factor receptor activity"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:Q16706","l":"","na":20,"nb":1,"a":[["EC%3A3.2.1.114","mannosyl-oligosaccharide 1,3-1,6-alpha-mannosidase"],["RHEA%3A56052","N(4)-{beta-D-GlcNAc-(1->2)-alpha-D-Man-(1->3)-[alpha-D-Man-(1->3)-[alpha-D-Man-(1->6)]-alpha-D-Man-(1->6)]-beta-D-Man-(1->4)-beta-D-GlcNAc-(1->4)-beta-D-GlcNAc}-L-asparaginyl-[protein] + 2 H2O = 2 alpha-D-mannopyranose + an N(4)-{beta-D-GlcNAc-(1->2)-alpha-D-Man-(1->3)-[alpha-D-Man-(1->6)]-beta-D-Man-(1->4)-beta-D-GlcNAc-(1->4)-beta-D-GlcNAc}-L-asparaginyl-[protein]"],["ComplexPortal%3ACPX-12202","-"],["ComplexPortal%3ACPX-15107","-"],["ComplexPortal%3ACPX-22647","-"],["GO%3A0016799","hydrolase activity, hydrolyzing N-glycosyl compounds"]],"b":[["alkaloids/swainsonine.yaml","swainsonine"]]},{"id":"UniProt:P07333","l":"","na":19,"nb":1,"a":[["ComplexPortal%3ACPX-22260","-"],["ComplexPortal%3ACPX-10333","IL34-CSF1R complex"],["ComplexPortal%3ACPX-25717","Macrophage colony-stimulating factor-1 receptor-ligand complex"],["GO%3A1990682","CSF1-CSF1R complex"],["GO%3A0005011","macrophage colony-stimulating factor receptor activity"],["GO%3A0036006","cellular response to macrophage colony-stimulating factor stimulus"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P35968","l":"","na":19,"nb":1,"a":[["GO%3A0097443","sorting endosome"],["GO%3A0038085","vascular endothelial growth factor binding"],["GO%3A0005021","vascular endothelial growth factor receptor activity"],["GO%3A1904881","cellular response to hydrogen sulfide"],["GO%3A0003157","endocardium development"],["GO%3A0141150","positive regulation of nitric oxide-cGMP mediated signal transduction"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:Q96QE3","l":"","na":19,"nb":1,"a":[["ComplexPortal%3ACPX-11703","-"],["ComplexPortal%3ACPX-13085","-"],["ComplexPortal%3ACPX-14089","-"],["ComplexPortal%3ACPX-14271","-"],["ComplexPortal%3ACPX-16564","-"],["ComplexPortal%3ACPX-17722","-"]],"b":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]]},{"id":"UniProt:Q05513","l":"","na":18,"nb":1,"a":[["ComplexPortal%3ACPX-10855","-"],["ComplexPortal%3ACPX-16356","-"],["ComplexPortal%3ACPX-18654","-"],["ComplexPortal%3ACPX-18746","-"],["ComplexPortal%3ACPX-22762","-"],["ComplexPortal%3ACPX-23337","-"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:Q12809","l":"","na":18,"nb":1,"a":[["ComplexPortal%3ACPX-12423","-"],["ComplexPortal%3ACPX-16470","-"],["ComplexPortal%3ACPX-16985","-"],["ComplexPortal%3ACPX-21446","-"],["ComplexPortal%3ACPX-22668","-"],["ComplexPortal%3ACPX-3072","Voltage-gated potassium channel complex variant 1"]],"b":[["unclassified/teixobactin.yaml","teixobactin"]]},{"id":"UniProt:O94760","l":"","na":17,"nb":1,"a":[["EC%3A3.5.3.18","dimethylargininase"],["ComplexPortal%3ACPX-11521","-"],["ComplexPortal%3ACPX-12381","-"],["ComplexPortal%3ACPX-13858","-"],["ComplexPortal%3ACPX-15777","-"],["ComplexPortal%3ACPX-18623","-"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"UniProt:P24864","l":"","na":17,"nb":1,"a":[["ComplexPortal%3ACPX-10673","-"],["ComplexPortal%3ACPX-11851","-"],["ComplexPortal%3ACPX-13027","-"],["ComplexPortal%3ACPX-19796","-"],["ComplexPortal%3ACPX-20481","-"],["ComplexPortal%3ACPX-21602","-"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"]]},{"id":"CHEBI:17579","l":"β-carotene","na":16,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17579","requires β-carotene"],["EC%3A1.13.11.63","beta-carotene 15,15'-dioxygenase"],["EC%3A1.13.11.71","carotenoid-9',10'-cleaving dioxygenase"],["EC%3A1.14.15.24","beta-carotene 3-hydroxylase"],["EC%3A1.14.99.63","beta-carotene 4-ketolase"],["EC%3A5.2.1.14","beta-carotene isomerase"]],"b":[["terpenoids/carotene.yaml","β-carotene"]]},{"id":"UniProt:P01215","l":"","na":16,"nb":1,"a":[["ComplexPortal%3ACPX-748","Chorionic gonadotropin hormone complex"],["ComplexPortal%3ACPX-14986","-"],["ComplexPortal%3ACPX-16532","-"],["ComplexPortal%3ACPX-19116","-"],["ComplexPortal%3ACPX-23467","-"],["ComplexPortal%3ACPX-665","Follicle-stimulating hormone complex"]],"b":[["amino_acids_and_peptides/ditryptophenaline.yaml","(-)-ditryptophenaline"]]},{"id":"UniProt:P11086","l":"","na":16,"nb":1,"a":[["EC%3A2.1.1.28","phenylethanolamine N-methyltransferase"],["RHEA%3A25269","(R)-noradrenaline + S-adenosyl-L-methionine = (R)-adrenaline + S-adenosyl-L-homocysteine + H(+)"],["ComplexPortal%3ACPX-11076","-"],["ComplexPortal%3ACPX-14242","-"],["ComplexPortal%3ACPX-17963","-"],["ComplexPortal%3ACPX-21796","-"]],"b":[["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"UniProt:Q9H4B4","l":"","na":16,"nb":1,"a":[["GO%3A0007113","endomitotic cell cycle"],["GO%3A0090166","Golgi disassembly"],["GO%3A0044819","mitotic G1/S transition checkpoint signaling"],["GO%3A1904716","positive regulation of chaperone-mediated autophagy"],["CDD%3Acd14189","STKc_PLK3"],["CDD%3Acd13118","POLO_box_1"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:5127","l":"Fusarium fujikuroi","na":1,"nb":15,"a":[["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"]],"b":[["alkaloids/fusaric-acid.yaml","fusaric acid"],["alkaloids/fusarin-c.yaml","fusarin C"],["polyketides/bikaverin.yaml","bikaverin"],["polyketides/fujikurin-c.yaml","fujikurin C"],["polyketides/fujikurin-d.yaml","fujikurin D"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"]]},{"id":"UniProt:P11511","l":"","na":15,"nb":1,"a":[["ComplexPortal%3ACPX-11590","-"],["ComplexPortal%3ACPX-12153","-"],["ComplexPortal%3ACPX-14456","-"],["ComplexPortal%3ACPX-20752","-"],["ComplexPortal%3ACPX-20895","-"],["ComplexPortal%3ACPX-20967","-"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:P21964","l":"","na":15,"nb":1,"a":[["ComplexPortal%3ACPX-13290","-"],["ComplexPortal%3ACPX-13949","-"],["ComplexPortal%3ACPX-14233","-"],["ComplexPortal%3ACPX-14264","-"],["ComplexPortal%3ACPX-19464","-"],["ComplexPortal%3ACPX-26179","-"]],"b":[["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"UniProt:P22748","l":"","na":15,"nb":1,"a":[["ComplexPortal%3ACPX-17339","-"],["ComplexPortal%3ACPX-17919","-"],["ComplexPortal%3ACPX-18486","-"],["ComplexPortal%3ACPX-19014","-"],["ComplexPortal%3ACPX-23066","-"],["ComplexPortal%3ACPX-23243","-"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:Q02779","l":"","na":15,"nb":1,"a":[["ComplexPortal%3ACPX-10957","-"],["ComplexPortal%3ACPX-11452","-"],["ComplexPortal%3ACPX-11502","-"],["ComplexPortal%3ACPX-11859","-"],["ComplexPortal%3ACPX-13254","-"],["ComplexPortal%3ACPX-13493","-"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":14,"nb":1,"a":[["Pfam%3APF03703","Bacterial PH domain"],["Pfam%3APF01322","Cytochrome C'"],["Pfam%3APF03139","Vanadium/alternative nitrogenase delta subunit"],["Pfam%3APF09527","Putative F0F1-ATPase subunit Ca2+/Mg2+ transporter"],["Pfam%3APF03270","Protein of unknown function, DUF269"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"]],"b":[["alkaloids/molybdenum-cofactor.yaml","molybdenum cofactor"]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":1,"nb":14,"a":[["Pfam%3APF26312","Domain of unknown function (DUF8083)"]],"b":[["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/framycetin.yaml","framycetin"],["carbohydrates/neomycin-c.yaml","neomycin C"],["carbohydrates/paromomycin.yaml","paromomycin"]]},{"id":"NCBITaxon:58346","l":"Streptomyces platensis","na":1,"nb":14,"a":[["PROSITE%3APS00999","Streptomyces subtilisin-type inhibitors signature"]],"b":[["alkaloids/13-epi-dorrigocin-a.yaml","13-epi-dorrigocin A"],["alkaloids/17-hydroxy-8-desmethoxy-isomigrastatin.yaml","17-hydroxy-8-desmethoxy-isomigrastatin"],["alkaloids/dorrigocin-a.yaml","dorrigocin A"],["alkaloids/dorrigocin-b.yaml","dorrigocin B"],["alkaloids/iso-migrastatin.yaml","iso-migrastatin"],["alkaloids/staurosporine.yaml","staurosporine"]]},{"id":"NCBITaxon:9986","l":"Oryctolagus cuniculus","na":14,"nb":1,"a":[["IDPO%3A0000018","disorder to molten globule"],["IDPO%3A0000023","pre-molten globule to molten globule"],["Pfam%3APF27603","AKAP9-like coiled-coil region"],["Pfam%3APF17860","RK-1-like defensin"],["Pfam%3APF14965","Negative regulator of p53/TP53"],["PROSITE%3APS00328","HCP repeats signature"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P27169","l":"","na":14,"nb":1,"a":[["ComplexPortal%3ACPX-10649","-"],["ComplexPortal%3ACPX-12297","-"],["ComplexPortal%3ACPX-16876","-"],["ComplexPortal%3ACPX-25382","-"],["GO%3A0102007","acyl-L-homoserine-lactone lactonohydrolase activity"],["GO%3A0004063","aryldialkylphosphatase activity"]],"b":[["carbohydrates/lincomycin.yaml","lincomycin"]]},{"id":"UniProt:P80192","l":"","na":14,"nb":1,"a":[["ComplexPortal%3ACPX-10957","-"],["ComplexPortal%3ACPX-11452","-"],["ComplexPortal%3ACPX-11502","-"],["ComplexPortal%3ACPX-13254","-"],["ComplexPortal%3ACPX-13493","-"],["ComplexPortal%3ACPX-14473","-"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"]]},{"id":"UniProt:Q9NYY3","l":"","na":14,"nb":1,"a":[["ComplexPortal%3ACPX-18657","-"],["GO%3A0071866","negative regulation of apoptotic process in bone marrow cell"],["CDD%3Acd14188","STKc_PLK2"],["CDD%3Acd13118","POLO_box_1"],["CDD%3Acd13117","POLO_box_2"],["InterPro%3AIPR033701","First polo-box domain"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":13,"nb":1,"a":[["Pfam%3APF07832","Cfr10I/Bse634I restriction endonuclease"],["Pfam%3APF22348","Colicin-A N-terminal domain"],["Pfam%3APF01024","Colicin pore forming domain"],["Pfam%3APF18427","DD-reactivating factor swiveling domain"],["Pfam%3APF02286","Dehydratase large subunit"],["Pfam%3APF02288","Dehydratase medium subunit"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:644","l":"Aeromonas hydrophila","na":13,"nb":1,"a":[["Pfam%3APF01117","Aerolysin toxin"],["Pfam%3APF03440","Aerolysin/Pertussis toxin (APT) domain"],["Pfam%3APF21327","GspA, peptidase C39-like domain"],["Pfam%3APF04231","Endonuclease I"],["PROSITE%3APS01092","Adenylate cyclase class-I signature 1"],["PROSITE%3APS01093","Adenylate cyclase class-I signature 2"]],"b":[["amino_acids_and_peptides/amonabactin-p-750.yaml","amonabactin P 750"]]},{"id":"UniProt:O00754","l":"","na":13,"nb":1,"a":[["ComplexPortal%3ACPX-15965","-"],["ComplexPortal%3ACPX-19551","-"],["ComplexPortal%3ACPX-20291","-"],["ComplexPortal%3ACPX-26077","-"],["ComplexPortal%3ACPX-26144","-"],["CDD%3Acd10810","GH38N_AMII_LAM_like"]],"b":[["alkaloids/swainsonine.yaml","swainsonine"]]},{"id":"UniProt:O15530","l":"","na":13,"nb":1,"a":[["ComplexPortal%3ACPX-13979","-"],["ComplexPortal%3ACPX-20891","-"],["ComplexPortal%3ACPX-24544","-"],["GO%3A0004676","3-phosphoinositide-dependent protein kinase activity"],["GO%3A0141124","intracellular signaling cassette"],["GO%3A0043304","regulation of mast cell degranulation"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:Q14749","l":"","na":13,"nb":1,"a":[["EC%3A2.1.1.20","glycine N-methyltransferase"],["RHEA%3A19937","glycine + S-adenosyl-L-methionine = sarcosine + S-adenosyl-L-homocysteine + H(+)"],["ComplexPortal%3ACPX-10845","-"],["ComplexPortal%3ACPX-14981","-"],["ComplexPortal%3ACPX-21780","-"],["ComplexPortal%3ACPX-22832","-"]],"b":[["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"NCBITaxon:60172","l":"Penicillium solitum","na":1,"nb":12,"a":[["TED%3AAF-A0A1V6R6Y6-F1-model_v4_TED01","TED novel fold AF-A0A1V6R6Y6-F1-model_v4_TED01"]],"b":[["polyketides/dihydrobisvertinolone.yaml","dihydrobisvertinolone"],["polyketides/sorbicillin.yaml","sorbicillin"],["polyketides/terrestric-acid.yaml","terrestric acid"],["polyketides/tetrahydrobisvertinolone.yaml","tetrahydrobisvertinolone"],["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"],["unclassified/penitrem-a.yaml","penitrem A"]]},{"id":"UniProt:P05129","l":"","na":12,"nb":1,"a":[["ComplexPortal%3ACPX-12748","-"],["ComplexPortal%3ACPX-19449","-"],["ComplexPortal%3ACPX-19476","-"],["ComplexPortal%3ACPX-24173","-"],["GO%3A0004698","calcium,diacylglycerol-dependent serine/threonine kinase activity"],["GO%3A0032425","positive regulation of mismatch repair"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P0A853","l":"","na":12,"nb":1,"a":[["GO%3A0060187","cell pole"],["GO%3A0080146","L-cysteine desulfhydrase activity"],["GO%3A0016829","lyase activity"],["GO%3A0030955","potassium ion binding"],["GO%3A0009034","tryptophanase activity"],["GO%3A0042431","indole metabolic process"]],"b":[["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]]},{"id":"UniProt:P31751","l":"","na":12,"nb":1,"a":[["ComplexPortal%3ACPX-10780","-"],["ComplexPortal%3ACPX-16948","-"],["ComplexPortal%3ACPX-22352","-"],["GO%3A0010748","negative regulation of long-chain fatty acid import across plasma membrane"],["GO%3A1903676","positive regulation of cap-dependent translational initiation"],["CDD%3Acd05595","STKc_PKB_beta"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P40261","l":"","na":12,"nb":1,"a":[["EC%3A2.1.1.1","nicotinamide N-methyltransferase"],["RHEA%3A23884","nicotinamide + S-adenosyl-L-methionine = 1-methylnicotinamide + S-adenosyl-L-homocysteine"],["GO%3A0008112","nicotinamide N-methyltransferase activity"],["GO%3A0030760","pyridine N-methyltransferase activity"],["GO%3A0006769","nicotinamide metabolic process"],["GO%3A0090312","positive regulation of protein deacetylation"]],"b":[["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"UniProt:P48454","l":"","na":12,"nb":1,"a":[["ComplexPortal%3ACPX-1112","Calcineurin-Calmodulin-AKAP5 complex, gamma-R1 variant"],["ComplexPortal%3ACPX-1118","Calcineurin-Calmodulin-AKAP5 complex, gamma-R2 variant"],["ComplexPortal%3ACPX-1001","Calcineurin-Calmodulin complex, gamma-R1 variant"],["ComplexPortal%3ACPX-1050","Calcineurin-Calmodulin complex, gamma-R2 variant"],["ComplexPortal%3ACPX-17012","-"],["ComplexPortal%3ACPX-17541","-"]],"b":[["amino_acids_and_peptides/cyclosporin-a.yaml","cyclosporin A"]]},{"id":"UniProt:Q08881","l":"","na":12,"nb":1,"a":[["GO%3A0046629","gamma-delta T cell activation"],["GO%3A0001865","NK T cell differentiation"],["InterPro%3AIPR001562","Zinc finger, Btk motif"],["CDD%3Acd01238","PH_Btk"],["CDD%3Acd05112","PTKc_Itk"],["CDD%3Acd10396","SH2_Tec_Itk"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:4113","l":"Solanum tuberosum","na":11,"nb":1,"a":[["Pfam%3APF02977","Carboxypeptidase A inhibitor"],["Pfam%3APF01474","Class-II DAHP synthetase family"],["Pfam%3APF23229","Alpha-glucan water dikinase, DUF7067"],["Pfam%3APF02446","4-alpha-glucanotransferase"],["Pfam%3APF22973","Alpha-glucan water dikinase, phosphohistidine-like domain"],["Pfam%3APF23166","Alpha-glucan water dikinase 1 Ig-like N-terminal domain"]],"b":[["fatty_acids/itaconic-acid.yaml","itaconic acid"]]},{"id":"UniProt:O60503","l":"","na":11,"nb":1,"a":[["ComplexPortal%3ACPX-10819","-"],["ComplexPortal%3ACPX-10882","-"],["ComplexPortal%3ACPX-14634","-"],["ComplexPortal%3ACPX-14903","-"],["ComplexPortal%3ACPX-17315","-"],["ComplexPortal%3ACPX-18747","-"]],"b":[["polyketides/chlortetracycline.yaml","chlortetracycline"]]},{"id":"UniProt:P00915","l":"","na":11,"nb":1,"a":[["ComplexPortal%3ACPX-11364","-"],["ComplexPortal%3ACPX-12060","-"],["ComplexPortal%3ACPX-14728","-"],["ComplexPortal%3ACPX-15000","-"],["ComplexPortal%3ACPX-25381","-"],["GO%3A0018820","cyanamide hydratase activity"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:Q9BX63","l":"","na":11,"nb":1,"a":[["ComplexPortal%3ACPX-4426","BRCA1-B complex"],["ComplexPortal%3ACPX-17429","-"],["ComplexPortal%3ACPX-26140","-"],["CDD%3Acd18788","SF2_C_XPD"],["CDD%3Acd17970","DEAHc_FancJ"],["InterPro%3AIPR006554","Helicase-like, DEXD box c2 type"]],"b":[["unclassified/telomestatin.yaml","telomestatin"]]},{"id":"NCBITaxon:116188","l":"Streptomyces coeruleorubidus","na":1,"nb":10,"a":[["Pfam%3APF13732","ATP-binding protein DrrA1-3-like, C-terminal domain"]],"b":[["amino_acids_and_peptides/pacidamycin-1.yaml","pacidamycin 1"],["amino_acids_and_peptides/pacidamycin-2.yaml","pacidamycin 2"],["amino_acids_and_peptides/pacidamycin-3.yaml","pacidamycin 3"],["amino_acids_and_peptides/pacidamycin-4.yaml","pacidamycin 4"],["amino_acids_and_peptides/pacidamycin-5.yaml","pacidamycin 5"],["amino_acids_and_peptides/pacidamycin-6.yaml","pacidamycin 6"]]},{"id":"NCBITaxon:257313","l":"Bordetella pertussis (strain Tohama I / ATCC BAA-589 / NCTC 13251)","na":10,"nb":1,"a":[["Pfam%3APF03440","Aerolysin/Pertussis toxin (APT) domain"],["Pfam%3APF07411","Domain of unknown function (DUF1508)"],["Pfam%3APF25988","CyaD, alpha-helical hairpin domain"],["Pfam%3APF03497","Anthrax toxin LF subunit"],["Pfam%3APF02537","CrcB-like protein, Camphor Resistance (CrcB)"],["Pfam%3APF16970","Type-1 fimbrial protein, A"]],"b":[["amino_acids_and_peptides/alcaligin.yaml","alcaligin"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":10,"nb":1,"a":[["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF09081","Glucan 1,4-alpha-maltotetraohydrolase, domain C"],["Pfam%3APF09459","Ethylbenzene dehydrogenase"],["Pfam%3APF08406","CbbQ/NirQ/NorQ C-terminal"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"],["Pfam%3APF18793","Nitrous oxide reductase propeller repeat 2"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"UniProt:P0A749","l":"","na":10,"nb":1,"a":[["GO%3A0008760","UDP-N-acetylglucosamine 1-carboxyvinyltransferase activity"],["GO%3A0019277","UDP-N-acetylgalactosamine biosynthetic process"],["NCBIfam%3ANF006873","UDP-N-acetylglucosamine 1-carboxyvinyltransferase"],["NCBIfam%3ATIGR01072","UDP-N-acetylglucosamine 1-carboxyvinyltransferase"],["CDD%3Acd01555","UdpNAET"],["InterPro%3AIPR001986","Enolpyruvate transferase domain"]],"b":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"]]},{"id":"UniProt:P14679","l":"","na":10,"nb":1,"a":[["GO%3A0004503","tyrosinase activity"],["GO%3A0006726","eye pigment biosynthetic process"],["GO%3A0006583","melanin biosynthetic process from tyrosine"],["GO%3A0042438","melanin biosynthetic process"],["InterPro%3AIPR002227","Tyrosinase copper-binding domain"],["Pfam%3APF00264","Common central domain of tyrosinase"]],"b":[["polyketides/kojic-acid.yaml","kojic acid"]]},{"id":"UniProt:P15884","l":"","na":10,"nb":1,"a":[["ComplexPortal%3ACPX-11961","-"],["ComplexPortal%3ACPX-14266","-"],["ComplexPortal%3ACPX-14268","-"],["ComplexPortal%3ACPX-14282","-"],["ComplexPortal%3ACPX-21052","-"],["ComplexPortal%3ACPX-26210","-"]],"b":[["alkaloids/toxoflavin.yaml","toxoflavin"]]},{"id":"UniProt:P41240","l":"","na":10,"nb":1,"a":[["EC%3A2.7.10.4","[Src-family] C-terminal protein kinase"],["ComplexPortal%3ACPX-11775","-"],["ComplexPortal%3ACPX-18631","-"],["ComplexPortal%3ACPX-19439","-"],["GO%3A0042997","negative regulation of Golgi to plasma membrane protein transport"],["GO%3A0060368","regulation of Fc receptor mediated stimulatory signaling pathway"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":9,"nb":1,"a":[["Pfam%3APF07835","Bacterial aa3 type cytochrome c oxidase subunit IV"],["Pfam%3APF04828","Glutathione-dependent formaldehyde-activating enzyme"],["Pfam%3APF16448","LapD/MoxY periplasmic domain"],["Pfam%3APF17267","Family of unknown function (DUF5333)"],["Pfam%3APF17272","Family of unknown function (DUF5337)"],["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"]],"b":[["alkaloids/parabactin.yaml","parabactin"]]},{"id":"UniProt:P00811","l":"","na":9,"nb":1,"a":[["EC%3A3.5.2.6","beta-lactamase"],["RHEA%3A20401","a beta-lactam + H2O = a substituted beta-amino acid"],["GO%3A0017001","antibiotic catabolic process"],["NCBIfam%3ANF000185","BlaEC family class C beta-lactamase"],["NCBIfam%3ANF033085","class C beta-lactamase"],["NCBIfam%3ANF012173","CMY2/MIR/ACT/EC family class C beta-lactamase"]],"b":[["amino_acids_and_peptides/clavulanic-acid-2.yaml","clavulanic acid"]]},{"id":"UniProt:P23280","l":"","na":9,"nb":1,"a":[["ComplexPortal%3ACPX-11709","-"],["ComplexPortal%3ACPX-12376","-"],["ComplexPortal%3ACPX-12422","-"],["ComplexPortal%3ACPX-12445","-"],["ComplexPortal%3ACPX-13747","-"],["ComplexPortal%3ACPX-17694","-"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:P24666","l":"","na":9,"nb":1,"a":[["ComplexPortal%3ACPX-17111","-"],["ComplexPortal%3ACPX-18047","-"],["ComplexPortal%3ACPX-19744","-"],["ComplexPortal%3ACPX-26078","-"],["CDD%3Acd16343","LMWPTP"],["InterPro%3AIPR023485","Phosphotyrosine protein phosphatase I"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"UniProt:P43250","l":"","na":9,"nb":1,"a":[["ComplexPortal%3ACPX-15339","-"],["ComplexPortal%3ACPX-18479","-"],["ComplexPortal%3ACPX-21827","-"],["ComplexPortal%3ACPX-23485","-"],["ComplexPortal%3ACPX-26222","-"],["GO%3A0047696","beta-adrenergic receptor kinase activity"]],"b":[["carbohydrates/sangivamycin.yaml","sangivamycin"]]},{"id":"UniProt:Q14353","l":"","na":9,"nb":1,"a":[["ComplexPortal%3ACPX-17611","-"],["ComplexPortal%3ACPX-22207","-"],["ComplexPortal%3ACPX-25132","-"],["GO%3A0030731","guanidinoacetate N-methyltransferase activity"],["GO%3A0006601","creatine biosynthetic process"],["GO%3A0006600","creatine metabolic process"]],"b":[["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"UniProt:Q8JUX6","l":"","na":1,"nb":9,"a":[["proteintraitsmech%3ABIOLIP_LFO","LFO-binding site"]],"b":[["alkaloids/ergotamine.yaml","ergotamine"],["amino_acids_and_peptides/leupeptin-a.yaml","leupeptin A"],["amino_acids_and_peptides/linaclotide.yaml","linaclotide"],["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"],["polyketides/kojic-acid.yaml","kojic acid"],["polyketides/monactin.yaml","monactin"]]},{"id":"CHEBI:58515","l":"","na":8,"nb":1,"a":[["EC%3A1.14.11.55","ectoine hydroxylase"],["EC%3A3.5.4.44","ectoine hydrolase"],["EC%3A4.2.1.108","ectoine synthase"],["RHEA%3A17281","(2S)-4-acetamido-2-aminobutanoate = L-ectoine + H2O"],["RHEA%3A45740","L-ectoine + 2-oxoglutarate + O2 = 5-hydroxyectoine + succinate + CO2"],["RHEA%3A52304","L-ectoine + H2O = (2S)-2-acetamido-4-aminobutanoate"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":8,"nb":1,"a":[["Pfam%3APF01721","Class II bacteriocin"],["Pfam%3APF13700","Domain of unknown function (DUF4158)"],["Pfam%3APF07478","D-ala D-ala ligase C-terminus"],["Pfam%3APF01820","D-ala D-ala ligase N-terminus"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"],["PROSITE%3APS00843","D-alanine--D-alanine ligase signature 1"]],"b":[["amino_acids_and_peptides/enterocin-a.yaml","enterocin A"]]},{"id":"NCBITaxon:1703937","l":"Streptomyces sp. CB03234","na":1,"nb":8,"a":[["TED%3AAF-A0A1Q5LKM4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q5LKM4-F1-model_v4_TED02"]],"b":[["terpenoids/tiancilactone-a.yaml","tiancilactone A"],["terpenoids/tiancilactone-b.yaml","tiancilactone B"],["terpenoids/tiancilactone-c.yaml","tiancilactone C"],["terpenoids/tiancilactone-d.yaml","tiancilactone D"],["terpenoids/tiancilactone-e.yaml","tiancilactone E"],["terpenoids/tiancilactone-f.yaml","tiancilactone F"]]},{"id":"NCBITaxon:1908","l":"Streptomyces globisporus","na":1,"nb":8,"a":[["PROSITE%3APS00953","Glycosyl hydrolases family 25 active site signature"]],"b":[["polyketides/c-1027-chromophore.yaml","C-1027 chromophore"],["polyketides/c-1027.yaml","C-1027"],["polyketides/landomycin-a.yaml","landomycin A"],["polyketides/nonactin.yaml","nonactin"],["polyketides/prejadomycin.yaml","prejadomycin"],["polyketides/tetranactin.yaml","tetranactin"]]},{"id":"NCBITaxon:345341","l":"Kutzneria sp. 744","na":1,"nb":8,"a":[["TED%3AAF-W7SU68-F1-model_v4_TED01","TED novel fold AF-W7SU68-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/kutzneride-6.yaml","Kutzneride 6"],["unclassified/kutzneride-1.yaml","Kutzneride 1"],["unclassified/kutzneride-2.yaml","Kutzneride 2"],["unclassified/kutzneride-3.yaml","Kutzneride 3"],["unclassified/kutzneride-4.yaml","Kutzneride 4"],["unclassified/kutzneride-5.yaml","Kutzneride 5"]]},{"id":"NCBITaxon:380703","l":"Aeromonas hydrophila subsp. hydrophila (strain ATCC 7966 / DSM 30187 / BCRC 13018 / CCUG 14551 / JCM 1027 / KCTC 2358 / NCIMB 9240 / NCTC 8049)","na":8,"nb":1,"a":[["Pfam%3APF26341","tRNA 2-selenouridine synthase AAA domain"],["Pfam%3APF11890","Domain of unknown function (DUF3410)"],["Pfam%3APF11944","Protein of unknown function (DUF3461)"],["Pfam%3APF04356","Protein of unknown function (DUF489)"],["Pfam%3APF12563","Hemolytic toxin N terminal"],["Pfam%3APF04362","Bacterial Fe(2+) trafficking"]],"b":[["amino_acids_and_peptides/amonabactin-p-750.yaml","amonabactin P 750"]]},{"id":"NCBITaxon:40318","l":"Streptomyces nodosus","na":1,"nb":8,"a":[["TED%3AAF-A0A0B5DA96-F1-model_v4_TED01","TED novel fold AF-A0A0B5DA96-F1-model_v4_TED01"]],"b":[["alkaloids/melanin.yaml","melanin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/ectoine.yaml","ectoine"],["amino_acids_and_peptides/siamycin-i.yaml","siamycin I"],["fatty_acids/butyrolactone.yaml","γ-butyrolactone"]]},{"id":"NCBITaxon:420953","l":"Paraburkholderia megapolitana","na":1,"nb":8,"a":[["proteintraitsmech%3AELIFE109154_GrbD","GrbD-type graminine biosynthesis protein family"]],"b":[["amino_acids_and_peptides/megapolibactin-a.yaml","megapolibactin A"],["amino_acids_and_peptides/megapolibactin-acyc.yaml","megapolibactin Acyc"],["amino_acids_and_peptides/megapolibactin-b.yaml","megapolibactin B"],["amino_acids_and_peptides/megapolibactin-c.yaml","megapolibactin C"],["amino_acids_and_peptides/megapolibactin-d.yaml","megapolibactin D"],["amino_acids_and_peptides/megapolibactin-e.yaml","megapolibactin E"]]},{"id":"NCBITaxon:492670","l":"Bacillus velezensis","na":1,"nb":8,"a":[["TED%3AAF-A0A7S9EWF1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S9EWF1-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["polyketides/bacillaene.yaml","bacillaene"],["polyketides/difficidin.yaml","difficidin"],["polyketides/macrolactin-h.yaml","macrolactin H"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":1,"nb":8,"a":[["Pfam%3APF07335","Fungal chitosanase of glycosyl hydrolase group 75"]],"b":[["amino_acids_and_peptides/ferrichrome-2.yaml","ferrichrome"],["polyketides/2-acetyl-1-3-6-8-tetrahydroxynaphthalene.yaml","2-acetyl-1,3,6,8-tetrahydroxynaphthalene"],["polyketides/kojic-acid.yaml","kojic acid"],["terpenoids/aphidicolin.yaml","aphidicolin"],["unclassified/2-oxocyclopiazonic-acid.yaml","2-oxocyclopiazonic acid"],["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"UniProt:O96017","l":"","na":8,"nb":1,"a":[["ComplexPortal%3ACPX-16839","-"],["ComplexPortal%3ACPX-21166","-"],["GO%3A0044773","mitotic DNA damage checkpoint signaling"],["CDD%3Acd14084","STKc_Chk2"],["CDD%3Acd22666","FHA_CHK2"],["ELM%3AELME000425","DOC_PP2A_B56_1"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:Q8TD30","l":"","na":8,"nb":1,"a":[["ComplexPortal%3ACPX-11669","-"],["ComplexPortal%3ACPX-11684","-"],["ComplexPortal%3ACPX-18140","-"],["ComplexPortal%3ACPX-18547","-"],["ComplexPortal%3ACPX-25098","-"],["ComplexPortal%3ACPX-26258","-"]],"b":[["polyketides/monactin.yaml","monactin"]]},{"id":"CHEBI:16089","l":"","na":7,"nb":1,"a":[["EC%3A1.14.15.35","6-deoxyerythronolide B hydroxylase"],["EC%3A2.3.1.94","6-deoxyerythronolide-B synthase"],["RHEA%3A40299","6-deoxyerythronolide B + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = erythronolide B + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"],["RHEA%3A23068","6 (S)-methylmalonyl-CoA + propanoyl-CoA + 6 NADPH + 12 H(+) = 6-deoxyerythronolide B + 6 CO2 + 6 NADP(+) + 7 CoA + H2O"],["MCSA%3A694","6-deoxyerythronolide B hydroxylase"],["MCSA%3A602","6-deoxyerythronolide-B synthase"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"NCBITaxon:1314807","l":"Dendrothele bispora (strain CBS 962.96)","na":7,"nb":1,"a":[["TED%3AAF-A0A4S8L719-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S8L719-F1-model_v4_TED01"],["TED%3AAF-A0A4S8LBA1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4S8LBA1-F1-model_v4_TED02"],["TED%3AAF-A0A4S8KM73-F1-model_v4_TED02","TED novel fold AF-A0A4S8KM73-F1-model_v4_TED02"],["TED%3AAF-A0A4S8KTD4-F1-model_v4_TED01","TED novel fold AF-A0A4S8KTD4-F1-model_v4_TED01"],["TED%3AAF-A0A4S8LE48-F1-model_v4_TED01","TED novel fold AF-A0A4S8LE48-F1-model_v4_TED01"],["TED%3AAF-A0A4S8MMV1-F1-model_v4_TED02","TED novel fold AF-A0A4S8MMV1-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/dendrothelin-a.yaml","dendrothelin A"]]},{"id":"NCBITaxon:391037","l":"Salinispora arenicola CNS-205","na":1,"nb":7,"a":[["Pfam%3APF12072","RNase Y N-terminal region"]],"b":[["alkaloids/lymphostin.yaml","lymphostin"],["alkaloids/lymphostinol.yaml","lymphostinol"],["alkaloids/neolymphostin-b.yaml","neolymphostin b"],["alkaloids/neolymphostinol-b.yaml","neolymphostinol B"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/cyclomarin-d.yaml","cyclomarin D"]]},{"id":"NCBITaxon:405948","l":"Saccharopolyspora erythraea NRRL 2338","na":1,"nb":7,"a":[["Pfam%3APF21036","Erythromycin biosynthesis protein CIII-like, N-terminal domain"]],"b":[["amino_acids_and_peptides/erythrochelin.yaml","erythrochelin"],["polyketides/erythromycin-a.yaml","erythromycin A"],["polyketides/erythromycin-b.yaml","erythromycin B"],["polyketides/erythromycin-c.yaml","erythromycin C"],["polyketides/erythromycin-d.yaml","erythromycin D"],["polyketides/flaviolin.yaml","flaviolin"]]},{"id":"NCBITaxon:5077","l":"Penicillium citrinum","na":1,"nb":7,"a":[["PROSITE%3APS00876","Indoleamine 2,3-dioxygenase signature 1"]],"b":[["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["polyketides/citrinin.yaml","(+)-citrinin"],["polyketides/mevinic-acid.yaml","mevinic acid"],["unclassified/orcinol.yaml","orcinol"],["unclassified/penigainamide-a.yaml","penigainamide A"],["unclassified/penigainamide-b.yaml","penigainamide B"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":7,"nb":1,"a":[["Pfam%3APF11766","Agglutinin-like protein, N-terminal domain"],["Pfam%3APF16856","Cell division control protein 4 dimerisation domain"],["Pfam%3APF18325","Fatty acid synthase subunit alpha Acyl carrier domain"],["Pfam%3APF18314","Fatty acid synthase type I helical domain"],["Pfam%3APF17828","N-terminal domain in fatty acid synthase subunit beta"],["Pfam%3APF05388","Carboxypeptidase Y pro-peptide"]],"b":[["unclassified/antimycin-a1b.yaml","antimycin A1B"]]},{"id":"NCBITaxon:5580","l":"Aureobasidium pullulans","na":7,"nb":1,"a":[["TED%3AAF-A0A4S8XR15-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S8XR15-F1-model_v4_TED01"],["TED%3AAF-A0A4S8YVB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S8YVB9-F1-model_v4_TED01"],["TED%3AAF-A0A4S9KUA9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S9KUA9-F1-model_v4_TED01"],["TED%3AAF-A0A4T0BHY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4T0BHY6-F1-model_v4_TED01"],["TED%3AAF-A0A4S9MB45-F1-model_v4_TED01","TED novel fold AF-A0A4S9MB45-F1-model_v4_TED01"],["TED%3AAF-A0A4S9RE93-F1-model_v4_TED01","TED novel fold AF-A0A4S9RE93-F1-model_v4_TED01"]],"b":[["unclassified/abt1.yaml","AbT1"]]},{"id":"NCBITaxon:5599","l":"Alternaria alternata","na":1,"nb":7,"a":[["Pfam%3APF16541","Alternaria alternata allergen 1"]],"b":[["alkaloids/ak-toxin-i.yaml","AK-toxin I"],["alkaloids/dimethylcoprogen.yaml","dimethylcoprogen"],["amino_acids_and_peptides/am-toxin.yaml","AM-toxin"],["polyketides/act-toxin-ii.yaml","ACT-Toxin II"],["polyketides/unii-yc2q1o94pt.yaml","UNII-YC2Q1O94PT"],["unclassified/af-toxin.yaml","AF-toxin"]]},{"id":"NCBITaxon:672","l":"Vibrio vulnificus","na":7,"nb":1,"a":[["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF08021","Siderophore-interacting FAD-binding domain"],["Pfam%3APF11575","FhuF 2Fe-2S C-terminal domain"],["Pfam%3APF27349","IcsB middle domain"],["Pfam%3APF21735","C-terminal repeat from RTX toxins"],["Pfam%3APF07634","RtxA repeat"]],"b":[["alkaloids/vulnibactin.yaml","vulnibactin"]]},{"id":"NCBITaxon:67339","l":"Streptomyces orinoci","na":1,"nb":7,"a":[["Pfam%3APF09277","Erythronolide synthase, docking"]],"b":[["polyketides/aureothin.yaml","aureothin"],["polyketides/orinocin.yaml","orinocin"],["polyketides/spectinabilin.yaml","spectinabilin"],["terpenoids/snf4435c.yaml","SNF4435C"],["terpenoids/snf4435d.yaml","SNF4435D"],["unclassified/neoantimycin-2.yaml","neoantimycin"]]},{"id":"NCBITaxon:68280","l":"Streptomyces violaceusniger","na":1,"nb":7,"a":[["TED%3AAF-A0A0X3VKA0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0X3VKA0-F1-model_v4_TED01"]],"b":[["fatty_acids/desulfoclethramycin.yaml","desulfoclethramycin"],["polyketides/be-24566b.yaml","BE-24566B"],["polyketides/elaiophylin.yaml","elaiophylin"],["polyketides/meridamycin-2.yaml","meridamycin"],["polyketides/nigericin.yaml","nigericin"],["terpenoids/2-methylisoborneol.yaml","2-methylisoborneol"]]},{"id":"UniProt:P27296","l":"","na":7,"nb":1,"a":[["GO%3A0033677","DNA/RNA helicase activity"],["NCBIfam%3ANF008729","ATP-dependent DNA helicase DinG"],["InterPro%3AIPR006555","ATP-dependent helicase, C-terminal"],["InterPro%3AIPR006554","Helicase-like, DEXD box c2 type"],["InterPro%3AIPR014013","Helicase superfamily 1/2, ATP-binding domain, DinG/Rad3-type"],["InterPro%3AIPR010614","RAD3-like helicase, DEAD"]],"b":[["unclassified/telomestatin.yaml","telomestatin"]]},{"id":"UniProt:P50135","l":"","na":7,"nb":1,"a":[["GO%3A0046539","histamine N-methyltransferase activity"],["GO%3A0001695","histamine catabolic process"],["GO%3A0001692","histamine metabolic process"],["GO%3A0006548","L-histidine catabolic process"],["Pfam%3APF13489","Methyltransferase domain"],["PROSITE%3APS51597","Histamine N-methyltransferase (EC 2.1.1.8) family profile"]],"b":[["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"UniProt:Q8IZQ5","l":"","na":7,"nb":1,"a":[["ComplexPortal%3ACPX-14418","-"],["ComplexPortal%3ACPX-17411","-"],["ComplexPortal%3ACPX-17423","-"],["ComplexPortal%3ACPX-17969","-"],["ComplexPortal%3ACPX-19650","-"],["ComplexPortal%3ACPX-22629","-"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"UniProt:Q92731","l":"","na":7,"nb":1,"a":[["GO%3A0030284","nuclear estrogen receptor activity"],["CDD%3Acd07171","NR_DBD_ER"],["CDD%3Acd06949","NR_LBD_ER"],["InterPro%3AIPR021064","Estrogen receptor beta-like, N-terminal"],["Pfam%3APF12497","Estrogen receptor beta"],["ELM%3AELME000053","MOD_GSK3_1"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:Q96LB1","l":"","na":7,"nb":1,"a":[["GO%3A0004985","G protein-coupled opioid receptor activity"],["GO%3A1990595","mast cell secretagogue receptor activity"],["GO%3A0045576","mast cell activation"],["CDD%3Acd15106","7tmA_MrgprX-like"],["InterPro%3AIPR017452","GPCR, rhodopsin-like, 7TM"],["PROSITE%3APS50262","G-protein coupled receptors family 1 profile"]],"b":[["alkaloids/thebaine.yaml","thebaine"]]},{"id":"UniProt:Q9FUZ2","l":"","na":7,"nb":1,"a":[["GO%3A0042586","peptide deformylase activity"],["NCBIfam%3ANF001159","peptide deformylase"],["NCBIfam%3ATIGR00079","peptide deformylase"],["CDD%3Acd00487","Pep_deformylase"],["Pfam%3APF01327","Polypeptide deformylase"],["InterPro%3AIPR036821","Peptide deformylase superfamily"]],"b":[["amino_acids_and_peptides/actinonin.yaml","actinonin"]]},{"id":"CHEBI:16536","l":"orcinol","na":6,"nb":1,"a":[["EC%3A1.14.13.6","orcinol 2-monooxygenase"],["EC%3A4.1.1.58","orsellinate decarboxylase"],["RHEA%3A63072","3 malonyl-CoA + acetyl-CoA + 3 H(+) = orcinol + 4 CO2 + 4 CoA"],["RHEA%3A19601","orcinol + NADH + O2 + H(+) = 2,3,5-trihydroxytoluene + NAD(+) + H2O"],["RHEA%3A80563","orcinol + S-adenosyl-L-methionine = 3-methoxy-5-methylphenol + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A16733","orsellinate + H(+) = orcinol + CO2"]],"b":[["unclassified/orcinol.yaml","orcinol"]]},{"id":"CHEBI:18365","l":"naphthalene-1,3,6,8-tetrol","na":6,"nb":1,"a":[["EC%3A1.1.1.252","tetrahydroxynaphthalene reductase"],["EC%3A2.3.1.233","1,3,6,8-tetrahydroxynaphthalene synthase"],["RHEA%3A41524","5 malonyl-CoA + 5 H(+) = naphthalene-1,3,6,8-tetrol + 5 CO2 + 5 CoA + H2O"],["RHEA%3A62700","naphtopyrone YWA1 + H2O = naphthalene-1,3,6,8-tetrol + acetoacetate + H(+)"],["RHEA%3A21908","scytalone + NADP(+) = naphthalene-1,3,6,8-tetrol + NADPH + H(+)"],["MCSA%3A891","Tetrahydroxynaphthalene reductase"]],"b":[["polyketides/naphthalene-1-3-6-8-tetrol.yaml","naphthalene-1,3,6,8-tetrol"]]},{"id":"CHEBI:63677","l":"","na":6,"nb":1,"a":[["EC%3A1.14.13.154","erythromycin 12 hydroxylase"],["EC%3A2.1.1.254","erythromycin 3'-O-methyltransferase"],["EC%3A2.4.1.278","3-alpha-mycarosylerythronolide B desosaminyl transferase"],["RHEA%3A32091","3-O-alpha-L-mycarosylerythronolide B + dTDP-alpha-D-desosamine = erythromycin D + dTDP + H(+)"],["RHEA%3A32631","erythromycin D + NADPH + O2 + H(+) = erythromycin C + NADP(+) + H2O"],["RHEA%3A32651","erythromycin D + S-adenosyl-L-methionine = erythromycin B + S-adenosyl-L-homocysteine + H(+)"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"NCBITaxon:128403","l":"Scytonema hofmannii PCC 7110","na":1,"nb":6,"a":[["TED%3AAF-A0A139X3P3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A139X3P3-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/scytocyclamide-a.yaml","scytocyclamide A"],["amino_acids_and_peptides/scytocyclamide-a2.yaml","scytocyclamide A2"],["amino_acids_and_peptides/scytocyclamide-b.yaml","scytocyclamide B"],["amino_acids_and_peptides/scytocyclamide-b2.yaml","scytocyclamide B2"],["amino_acids_and_peptides/scytocyclamide-b3.yaml","scytocyclamide B3"],["amino_acids_and_peptides/scytocyclamide-c.yaml","scytocyclamide C"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":6,"nb":1,"a":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF10779","Haemolysin XhlA"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF08181","DegQ (SacQ) family"],["Pfam%3APF08057","Erythromycin resistance leader peptide"],["Pfam%3APF14867","Lantibiotic alpha"]],"b":[["amino_acids_and_peptides/bacitracin.yaml","bacitracin"]]},{"id":"NCBITaxon:1877","l":"Micromonospora echinospora","na":1,"nb":6,"a":[["Pfam%3APF07091","Ribosomal RNA methyltransferase (FmrO)"]],"b":[["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/gentamicin-2.yaml","gentamicin"],["carbohydrates/gentamicin.yaml","gentamicin"],["polyketides/1-6-dihydro-8-propylanthraquinone.yaml","1,6-dihydro-8-propylanthraquinone"],["polyketides/calicheamicin.yaml","calicheamicin"],["polyketides/tiacumicin-b.yaml","tiacumicin B"]]},{"id":"NCBITaxon:1920","l":"Streptomyces nigrescens","na":1,"nb":6,"a":[["Pfam%3APF03995","Peptidase inhibitor family I36"]],"b":[["alkaloids/5athq-10a.yaml","5aTHQ-10a"],["alkaloids/5athq-9i.yaml","5aTHQ-9i"],["alkaloids/5athq-9n.yaml","5aTHQ-9n"],["alkaloids/stams-9i.yaml","STAMs-9i"],["alkaloids/stams-9n.yaml","STAMs-9n"],["polyketides/phoslactomycin-b.yaml","phoslactomycin B"]]},{"id":"NCBITaxon:1930","l":"Streptomyces scabiei","na":1,"nb":6,"a":[["TED%3AAF-A0A086GLG9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A086GLG9-F1-model_v4_TED01"]],"b":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"],["amino_acids_and_peptides/thaxtomin-c.yaml","thaxtomin C"],["polyketides/oronofacic-acid.yaml","oronofacic acid"],["unclassified/n-coronafacoyl-l-isoleucine.yaml","N-coronafacoyl-L-isoleucine"],["unclassified/thaxtomin-a.yaml","thaxtomin A"],["unclassified/thaxtomin-b.yaml","thaxtomin B"]]},{"id":"NCBITaxon:278992","l":"Streptomyces ambofaciens ATCC 23877","na":1,"nb":6,"a":[["Pfam%3APF00553","Cellulose binding domain"]],"b":[["alkaloids/congocidine.yaml","congocidine"],["polyketides/spiramycin.yaml","spiramycin"],["polyketides/stambomycin-a.yaml","stambomycin A"],["polyketides/stambomycin-b.yaml","stambomycin B"],["polyketides/stambomycin-c.yaml","stambomycin C"],["polyketides/stambomycin-d.yaml","stambomycin D"]]},{"id":"NCBITaxon:4097","l":"Nicotiana tabacum","na":6,"nb":1,"a":[["Pfam%3APF02041","Auxin binding protein"],["Pfam%3APF12481","Aluminium induced protein"],["Pfam%3APF11995","Domain of unknown function (DUF3490)"],["Pfam%3APF07172","Glycine rich protein family"],["PROSITE%3APS00157","Ribulose bisphosphate carboxylase large chain active site"],["TED%3AAF-A0A1S4A696-F1-model_v4_TED01","TED novel fold AF-A0A1S4A696-F1-model_v4_TED01"]],"b":[["terpenoids/capsidiol.yaml","capsidiol"]]},{"id":"NCBITaxon:46472","l":"Aspergillus versicolor","na":1,"nb":6,"a":[["Pfam%3APF13810","Domain of unknown function (DUF4185)"]],"b":[["alkaloids/psychrophilin-f.yaml","psychrophilin F"],["alkaloids/psychrophilin-g.yaml","psychrophilin G"],["polyketides/sterigmatocystin.yaml","sterigmatocystin"],["unclassified/chevalone-e.yaml","chevalone E"],["unclassified/notoamide-a.yaml","notoamide A"],["unclassified/psychrophilin-h.yaml","psychrophilin H"]]},{"id":"NCBITaxon:5082","l":"Penicillium roqueforti","na":1,"nb":6,"a":[["Pfam%3APF07573","Nitrogen regulatory protein AreA N terminus"]],"b":[["alkaloids/mycophenolic-acid-2.yaml","mycophenolic acid"],["polyketides/mycophenolic-acid.yaml","mycophenolic acid"],["terpenoids/pr-toxin.yaml","PR-toxin"],["unclassified/andrastin-a.yaml","andrastin A"],["unclassified/roquefortine-c.yaml","roquefortine C"],["unclassified/roquefortine-d.yaml","roquefortine D"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":6,"nb":1,"a":[["IDPO%3A0000037","molecular recognition display site"],["Pfam%3APF05403","Plasmodium histidine-rich protein (HRPII/III)"],["Pfam%3APF17986","EMP3-KAHRP-like N-terminal domain"],["Pfam%3APF03805","Cytoadherence-linked asexual protein"],["Pfam%3APF06589","Circumsporozoite-related antigen (CRA)"],["TED%3AAF-Q9U431-F1-model_v4_TED01","TED novel fold AF-Q9U431-F1-model_v4_TED01"]],"b":[["alkaloids/congocidine.yaml","congocidine"]]},{"id":"NCBITaxon:62977","l":"Acinetobacter baylyi (strain ATCC 33305 / BD413 / ADP1)","na":6,"nb":1,"a":[["Pfam%3APF03594","Benzoate membrane transport protein"],["Pfam%3APF27541","Citrate utilization protein B"],["Pfam%3APF05232","Chlorhexidine efflux transporter"],["PROSITE%3APS00083","Intradiol ring-cleavage dioxygenases signature"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"],["Pfam%3APF11846","Virulence factor membrane-bound polymerase, C-terminal"]],"b":[["amino_acids_and_peptides/fimsbactin-a.yaml","fimsbactin A"]]},{"id":"NCBITaxon:78245","l":"Xanthobacter autotrophicus (strain ATCC BAA-1158 / Py2)","na":6,"nb":1,"a":[["Pfam%3APF08882","Acetone carboxylase gamma subunit"],["Pfam%3APF19278","Hydantoinase/oxoprolinase C-terminal domain"],["Pfam%3APF05378","Hydantoinase/oxoprolinase N-terminal region"],["Pfam%3APF01968","Hydantoinase/oxoprolinase"],["Pfam%3APF02538","Hydantoinase B/oxoprolinase"],["TED%3AAF-A7IL68-F1-model_v4_TED01","TED highly-symmetric fold AF-A7IL68-F1-model_v4_TED01"]],"b":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":6,"nb":1,"a":[["Pfam%3APF16376","N-terminal domain of fragilysin"],["TED%3AAF-A0A412XR06-F1-model_v4_TED03","TED novel fold AF-A0A412XR06-F1-model_v4_TED03"],["TED%3AAF-A0A4V1EUI2-F1-model_v4_TED02","TED novel fold AF-A0A4V1EUI2-F1-model_v4_TED02"],["TED%3AAF-A0A5C6IXH5-F1-model_v4_TED01","TED novel fold AF-A0A5C6IXH5-F1-model_v4_TED01"],["TED%3AAF-A0A5C6L6G9-F1-model_v4_TED02","TED novel fold AF-A0A5C6L6G9-F1-model_v4_TED02"],["TED%3AAF-A0A642KY52-F1-model_v4_TED01","TED novel fold AF-A0A642KY52-F1-model_v4_TED01"]],"b":[["fatty_acids/galactosylceramide.yaml","α-galactosylceramide"]]},{"id":"NCBITaxon:882378","l":"","na":1,"nb":6,"a":[["Pfam%3APF01983","Guanylyl transferase CofC like"]],"b":[["amino_acids_and_peptides/endopyrrole-b.yaml","endopyrrole B"],["amino_acids_and_peptides/holrhizin-a.yaml","holrhizin A"],["amino_acids_and_peptides/holrhizin-b.yaml","holrhizin B"],["amino_acids_and_peptides/holrhizin-c.yaml","holrhizin C"],["amino_acids_and_peptides/holrhizin-d.yaml","holrhizin D"],["unclassified/endopyrrole-a.yaml","endopyrrole A"]]},{"id":"UniProt:Q9XUB2","l":"","na":6,"nb":1,"a":[["GO%3A0008187","poly-pyrimidine tract binding"],["InterPro%3AIPR000571","Zinc finger, CCCH-type"],["Pfam%3APF00642","Zinc finger C-x8-C-x5-C-x3-H type (and similar)"],["InterPro%3AIPR036855","Zinc finger, CCCH-type superfamily"],["PROSITE%3APS50103","Zinc finger C3H1-type profile"],["CATH%3A4.10.1000.10","Zinc finger, CCCH-type"]],"b":[["polyketides/pyrophen.yaml","pyrophen"]]},{"id":"CHEBI:27977","l":"","na":5,"nb":1,"a":[["EC%3A1.14.15.35","6-deoxyerythronolide B hydroxylase"],["EC%3A2.4.1.328","erythronolide mycarosyltransferase"],["RHEA%3A40299","6-deoxyerythronolide B + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = erythronolide B + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"],["RHEA%3A41576","dTDP-beta-L-mycarose + erythronolide B = 3-O-alpha-L-mycarosylerythronolide B + dTDP + H(+)"],["MCSA%3A694","6-deoxyerythronolide B hydroxylase"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"CHEBI:58572","l":"N-[(5S)-5-ammonio-5-carboxylatopentanoyl]-L-cysteinyl-D-valinate","na":5,"nb":1,"a":[["EC%3A1.21.3.1","isopenicillin-N synthase"],["EC%3A6.3.2.26","N-(5-amino-5-carboxypentanoyl)-L-cysteinyl-D-valine synthase"],["RHEA%3A23196","L-2-aminoadipate + L-valine + L-cysteine + 3 ATP + H2O = N-[(5S)-5-amino-5-carboxypentanoyl]-L-cysteinyl-D-valine + 3 AMP + 3 diphosphate + 3 H(+)"],["RHEA%3A22428","N-[(5S)-5-amino-5-carboxypentanoyl]-L-cysteinyl-D-valine + O2 = isopenicillin N + 2 H2O"],["MCSA%3A145","isopenicillin-N synthase"]],"b":[["amino_acids_and_peptides/n-5s-5-ammonio-5-carboxylatopentanoyl-l-cysteinyl-d-valinate.yaml","N-[(5S)-5-ammonio-5-carboxylatopentanoyl]-L-cysteinyl-D-valinate"]]},{"id":"CHEBI:62219","l":"2-heptyl-4-quinolone","na":5,"nb":1,"a":[["EC%3A1.14.13.182","2-heptyl-3-hydroxy-4(1H)-quinolone synthase"],["EC%3A2.3.1.230","2-heptyl-4(1H)-quinolone synthase"],["RHEA%3A50408","1-(2-aminophenyl)decane-1,3-dione = 2-heptyl-4(1H)-quinolone + H2O"],["RHEA%3A50396","(2-aminobenzoyl)acetate + octanoyl-CoA + H(+) = 2-heptyl-4(1H)-quinolone + CO2 + CoA + H2O"],["RHEA%3A37871","2-heptyl-4(1H)-quinolone + NADH + O2 + H(+) = 2-heptyl-3-hydroxy-4(1H)-quinolone + NAD(+) + H2O"]],"b":[["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"]]},{"id":"CHEBI:90888","l":"aurachin C","na":5,"nb":1,"a":[["EC%3A1.14.13.222","aurachin C monooxygenase/isomerase"],["RHEA%3A49000","aurachin C + NADH + O2 + H(+) = 4-hydroxy-2-methyl-3-oxo-4-[(2E,6E)-farnesyl]-3,4-dihydroquinoline 1-oxide + NAD(+) + H2O"],["RHEA%3A49012","aurachin C + NADH + O2 + H(+) = aurachin C epoxide + NAD(+) + H2O"],["RHEA%3A49004","aurachin C + NADPH + O2 + H(+) = 4-hydroxy-2-methyl-3-oxo-4-[(2E,6E)-farnesyl]-3,4-dihydroquinoline 1-oxide + NADP(+) + H2O"],["RHEA%3A49008","aurachin C + NADPH + O2 + H(+) = aurachin C epoxide + NADP(+) + H2O"]],"b":[["alkaloids/aurachin-c.yaml","aurachin C"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":5,"nb":1,"a":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF02963","Restriction endonuclease EcoRI"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["PROSITE%3APS00974","Mannitol dehydrogenases signature"],["PROSITE%3APS00567","Phosphoribulokinase signature"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:1110502","l":"Tistrella mobilis KA081020-065","na":1,"nb":5,"a":[["TED%3AAF-I3TTD1-F1-model_v4_TED03","TED novel fold AF-I3TTD1-F1-model_v4_TED03"]],"b":[["unclassified/dehydrodidemnin-b-aplidine.yaml","dehydrodidemnin B (aplidine)"],["unclassified/didemnin-b.yaml","didemnin B"],["unclassified/didemnin-x.yaml","didemnin X"],["unclassified/didemnin-y.yaml","didemnin Y"],["unclassified/nordidemnin-b.yaml","nordidemnin B"]]},{"id":"NCBITaxon:1437453","l":"Streptomyces leeuwenhoekii","na":1,"nb":5,"a":[["TED%3AAF-A0A0F7VQ57-F1-model_v4_TED03","TED novel fold AF-A0A0F7VQ57-F1-model_v4_TED03"]],"b":[["amino_acids_and_peptides/leepeptin.yaml","Leepeptin"],["polyketides/chaxamycin-a.yaml","chaxamycin A"],["polyketides/chaxamycin-b.yaml","chaxamycin B"],["polyketides/chaxamycin-c.yaml","chaxamycin C"],["polyketides/chaxamycin-d.yaml","chaxamycin D"]]},{"id":"NCBITaxon:1465","l":"Brevibacillus laterosporus","na":1,"nb":5,"a":[["TED%3AAF-A0A0F7BZ24-F1-model_v4_TED01","TED novel fold AF-A0A0F7BZ24-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/bogorol-a.yaml","bogorol A"],["amino_acids_and_peptides/tauramamide.yaml","tauramamide"],["shikimates_and_phenylpropanoids/basiliskamide-a.yaml","Basiliskamide A"],["unclassified/basiliskamide-b.yaml","Basiliskamide B"],["unclassified/laterocidine.yaml","laterocidine"]]},{"id":"NCBITaxon:176275","l":"Beauveria bassiana","na":1,"nb":5,"a":[["TED%3AAF-A0A2S7Y157-F1-model_v4_TED02","TED novel fold AF-A0A2S7Y157-F1-model_v4_TED02"]],"b":[["alkaloids/desmethylbassianin.yaml","desmethylbassianin"],["alkaloids/tenellin.yaml","tenellin"],["polyketides/oosporein.yaml","oosporein"],["unclassified/bassianolide.yaml","bassianolide"],["unclassified/beauvericin.yaml","beauvericin"]]},{"id":"NCBITaxon:220664","l":"Pseudomonas protegens Pf-5","na":1,"nb":5,"a":[["Pfam%3APF18089","DAPG hydrolase PhiG domain"]],"b":[["alkaloids/pyoluteorin.yaml","pyoluteorin"],["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"],["unclassified/orfamide-a.yaml","orfamide A"],["unclassified/orfamide-c.yaml","orfamide C"],["unclassified/pf-5-pyoverdine.yaml","Pf-5 pyoverdine"]]},{"id":"NCBITaxon:29303","l":"Streptomyces cattleya","na":1,"nb":5,"a":[["Pfam%3APF22636","Fluoroacetyl-CoA-specific thioesterase"]],"b":[["amino_acids_and_peptides/cattlecin.yaml","cattlecin"],["amino_acids_and_peptides/clavulanic-acid.yaml","clavulanic acid"],["amino_acids_and_peptides/ethynylserine.yaml","β-ethynylserine"],["amino_acids_and_peptides/thienamycin.yaml","thienamycin"],["terpenoids/cattleyene.yaml","cattleyene"]]},{"id":"NCBITaxon:380704","l":"Aspergillus niger ATCC 1015","na":1,"nb":5,"a":[["Pfam%3APF28387","BfoA N-terminal domain"]],"b":[["polyketides/azanigerone-a.yaml","azanigerone A"],["polyketides/campyrone-b.yaml","campyrone B"],["polyketides/pyranonigrin-e.yaml","pyranonigrin E"],["polyketides/pyrophen.yaml","pyrophen"],["terpenoids/yanuthone-d.yaml","yanuthone D"]]},{"id":"NCBITaxon:384","l":"Rhizobium leguminosarum","na":5,"nb":1,"a":[["Pfam%3APF10931","Protein of unknown function (DUF2735)"],["TED%3AAF-A0A1B1C3F3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1B1C3F3-F1-model_v4_TED02"],["TED%3AAF-A0A4Q8XNE1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q8XNE1-F1-model_v4_TED01"],["TED%3AAF-A0A6P0B3F8-F1-model_v4_TED02","TED novel fold AF-A0A6P0B3F8-F1-model_v4_TED02"],["TED%3AAF-A0A6P0DM15-F1-model_v4_TED01","TED novel fold AF-A0A6P0DM15-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/vicibactin.yaml","vicibactin"]]},{"id":"NCBITaxon:4513","l":"Hordeum vulgare","na":5,"nb":1,"a":[["Pfam%3APF20241","Domain of unknown function (DUF6598)"],["PROSITE%3APS00771","Barwin domain signature 1"],["PROSITE%3APS00426","Cereal trypsin/alpha-amylase inhibitors family signature"],["PROSITE%3APS00725","Germin family signature"],["PROSITE%3APS00431","Small hydrophilic plant seed proteins signature"]],"b":[["unclassified/roquefortine-c.yaml","roquefortine C"]]},{"id":"NCBITaxon:47427","l":"Armillaria gallica","na":5,"nb":1,"a":[["TED%3AAF-A0A2H3CFH3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H3CFH3-F1-model_v4_TED02"],["TED%3AAF-A0A2H3DFZ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H3DFZ3-F1-model_v4_TED01"],["TED%3AAF-A0A2H3DTE1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H3DTE1-F1-model_v4_TED02"],["TED%3AAF-A0A2H3E1R0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H3E1R0-F1-model_v4_TED02"],["TED%3AAF-A0A2H3CX67-F1-model_v4_TED02","TED novel fold AF-A0A2H3CX67-F1-model_v4_TED02"]],"b":[["terpenoids/8-hydroxy-6-protoilludene.yaml","8α-hydroxy-6-protoilludene"]]},{"id":"NCBITaxon:5454","l":"","na":5,"nb":1,"a":[["TED%3AAF-A0A162YC52-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A162YC52-F1-model_v4_TED01"],["TED%3AAF-A0A163JCD7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A163JCD7-F1-model_v4_TED01"],["TED%3AAF-A0A163LJZ7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A163LJZ7-F1-model_v4_TED02"],["TED%3AAF-A0A163LQ36-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A163LQ36-F1-model_v4_TED01"],["TED%3AAF-A0A163M9G4-F1-model_v4_TED01","TED novel fold AF-A0A163M9G4-F1-model_v4_TED01"]],"b":[["polyketides/solanapyrone-a.yaml","solanapyrone A"]]},{"id":"UniProt:P22629","l":"","na":5,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_4IR","4IR-binding site"],["proteintraitsmech%3ABIOLIP_HL9","HL9-binding site"],["proteintraitsmech%3ABIOLIP_ZOE","ZOE-binding site"],["proteintraitsmech%3AMETALPDB_RH_DINUCLEAR","dinuclear rhodium site"],["proteintraitsmech%3AMETALPDB_CO_TETRANUCLEAR","tetranuclear cobalt site"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"CHEBI:140434","l":"3-[(Z)-2-isocyanovinyl]indole","na":4,"nb":1,"a":[["EC%3A1.14.20.11","3-[(Z)-2-isocyanoethenyl]-1H-indole synthase"],["EC%3A2.5.1.146","3-geranyl-3-[(Z)-2-isocyanoethenyl]indole synthase"],["RHEA%3A56700","(2S)-3-(1H-indol-3-yl)-2-isocyanopropanoate + 2-oxoglutarate + O2 + H(+) = 3-[(Z)-2-isocyanoethenyl]-1H-indole + succinate + 2 CO2 + H2O"],["RHEA%3A17349","3-[(Z)-2-isocyanoethenyl]-1H-indole + (2E)-geranyl diphosphate = 3-geranyl-3-[(Z)-2-isocyanoethenyl]-1H-indole + diphosphate"]],"b":[["alkaloids/3-z-2-isocyanovinyl-indole.yaml","3-[(Z)-2-isocyanovinyl]indole"]]},{"id":"CHEBI:140442","l":"12-epi-fischerindole U isonitrile","na":4,"nb":1,"a":[["EC%3A1.14.20.14","hapalindole-type alkaloid chlorinase"],["EC%3A5.5.1.33","12-epi-fischerindole U synthase"],["RHEA%3A56764","12-epi-fischerindole U + chloride + 2-oxoglutarate + O2 + H(+) = 12-epi-fischerindole G + succinate + CO2 + H2O"],["RHEA%3A56456","3-geranyl-3-[(Z)-2-isocyanoethenyl]-1H-indole = 12-epi-fischerindole U"]],"b":[["alkaloids/12-epi-fischerindole-u-isonitrile.yaml","12-epi-fischerindole U isonitrile"]]},{"id":"CHEBI:155910","l":"aculene D","na":4,"nb":1,"a":[["RHEA%3A65112","aculene D + 2-oxoglutarate + O2 = aculene C + succinate + CO2 + H2O"],["RHEA%3A65104","aculene D + L-prolyl-[peptidyl-carrier protein] = aculene B + holo-[peptidyl-carrier protein]"],["RHEA%3A65084","asperaculane E + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = aculene D + 2 oxidized [NADPH--hemoprotein reductase] + CO2 + 3 H2O + H(+)"],["RHEA%3A65092","asperaculane G + reduced [NADPH--hemoprotein reductase] + O2 = aculene D + oxidized [NADPH--hemoprotein reductase] + CO2 + 2 H2O"]],"b":[["terpenoids/aculene-d.yaml","aculene D"]]},{"id":"CHEBI:16368","l":"6-hydroxymellein","na":4,"nb":1,"a":[["EC%3A2.1.1.108","6-hydroxymellein O-methyltransferase"],["RHEA%3A65248","5 malonyl-CoA + AH2 + 5 H(+) = 6-hydroxymellein + A + 5 CO2 + 5 CoA + H2O"],["RHEA%3A65252","6-hydroxymellein + (2E,6E)-farnesyl diphosphate = verruculide C + diphosphate"],["RHEA%3A15201","6-hydroxymellein + S-adenosyl-L-methionine = 6-methoxymellein + S-adenosyl-L-homocysteine + H(+)"]],"b":[["shikimates_and_phenylpropanoids/6-hydroxymellein.yaml","6-hydroxymellein"]]},{"id":"CHEBI:18048","l":"DIMBOA","na":4,"nb":1,"a":[["EC%3A2.4.1.202","2,4-dihydroxy-7-methoxy-2H-1,4-benzoxazin-3(4H)-one 2-D- glucosyltransferase"],["EC%3A3.2.1.182","4-hydroxy-7-methoxy-3-oxo-3,4-dihydro-2H-1,4-benzoxazin-2-yl glucoside beta-D-glucosidase"],["RHEA%3A33975","DIMBOA beta-D-glucoside + H2O = DIMBOA + D-glucose"],["RHEA%3A15541","DIMBOA + UDP-alpha-D-glucose = DIMBOA beta-D-glucoside + UDP + H(+)"]],"b":[["alkaloids/dimboa.yaml","DIMBOA"]]},{"id":"CHEBI:18227","l":"sterigmatocystin","na":4,"nb":1,"a":[["EC%3A2.1.1.109","demethylsterigmatocystin 6-O-methyltransferase"],["EC%3A2.1.1.110","sterigmatocystin 8-O-methyltransferase"],["RHEA%3A11504","6-demethylsterigmatocystin + S-adenosyl-L-methionine = sterigmatocystin + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A15561","sterigmatocystin + S-adenosyl-L-methionine = 8-O-methylsterigmatocystin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["polyketides/sterigmatocystin.yaml","sterigmatocystin"]]},{"id":"CHEBI:2448","l":"actinorhodin","na":4,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["proteintraitsmech%3ABIOLIP_ZCT","ZCT-binding site"]],"b":[["polyketides/actinorhodin.yaml","actinorhodin"]]},{"id":"CHEBI:4356","l":"desferrioxamine B","na":4,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_4356","requires desferrioxamine B"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["proteintraitsmech%3ABIOLIP_KTY","KTY-binding site"]],"b":[["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"]]},{"id":"CHEBI:51460","l":"albaflavenone","na":4,"nb":1,"a":[["EC%3A1.14.15.39","epi-isozizaene 5-monooxygenase"],["RHEA%3A25988","(5R)-albaflavenol + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = albaflavenone + 2 oxidized [2Fe-2S]-[ferredoxin] + 2 H2O"],["RHEA%3A25980","(5S)-albaflavenol + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = albaflavenone + 2 oxidized [2Fe-2S]-[ferredoxin] + 2 H2O"],["RHEA%3A32439","(+)-epi-isozizaene + 4 reduced [2Fe-2S]-[ferredoxin] + 2 O2 + 4 H(+) = albaflavenone + 4 oxidized [2Fe-2S]-[ferredoxin] + 3 H2O"]],"b":[["terpenoids/albaflavenone.yaml","albaflavenone"]]},{"id":"CHEBI:63282","l":"pseudaminate","na":4,"nb":1,"a":[["EC%3A2.5.1.97","pseudaminic acid synthase"],["EC%3A2.7.7.81","pseudaminic acid cytidylyltransferase"],["RHEA%3A31631","2,4-diacetamido-2,4,6-trideoxy-beta-L-altrose + phosphoenolpyruvate + H2O = pseudaminate + phosphate"],["RHEA%3A32083","pseudaminate + CTP = CMP-pseudaminate + diphosphate"]],"b":[["carbohydrates/pseudaminate.yaml","pseudaminate"]]},{"id":"CHEBI:64258","l":"","na":4,"nb":1,"a":[["EC%3A1.14.13.154","erythromycin 12 hydroxylase"],["EC%3A2.1.1.254","erythromycin 3'-O-methyltransferase"],["RHEA%3A32647","erythromycin C + S-adenosyl-L-methionine = erythromycin A + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A32631","erythromycin D + NADPH + O2 + H(+) = erythromycin C + NADP(+) + H2O"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"CHEBI:79296","l":"indigoidine","na":4,"nb":1,"a":[["EC%3A4.3.3.9","indigoidine synthase"],["RHEA%3A81507","2 3-amino-1,5-dihydropyridine-2,6-dione + O2 = indigoidine + 2 H2O"],["RHEA%3A81499","2 FMN + 2 L-glutamine + 2 ATP + O2 = indigoidine + 2 FMNH2 + 2 AMP + 2 diphosphate + 2 H2O"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["alkaloids/indigoidine.yaml","indigoidine"]]},{"id":"CHEBI:9555","l":"tioguanine","na":4,"nb":1,"a":[["EC%3A2.1.1.67","thiopurine S-methyltransferase"],["RHEA%3A56580","6-thioguanine + S-adenosyl-L-methionine = 6-methylthioguanine + S-adenosyl-L-homocysteine + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.40","The Nucleobase/Ascorbate Transporter (NAT) or Nucleobase:Cation Symporter-2 (NCS2) Family"]],"b":[["alkaloids/tioguanine.yaml","tioguanine"]]},{"id":"NCBITaxon:101028","l":"Fusarium pseudograminearum","na":1,"nb":4,"a":[["TED%3AAF-A0A7S8DXW2-F1-model_v4_TED02","TED novel fold AF-A0A7S8DXW2-F1-model_v4_TED02"]],"b":[["alkaloids/8-oxo-fusatin.yaml","8-oxo-fusatin"],["alkaloids/8-oxo-isopentenyladenine.yaml","8-oxo-isopentenyladenine"],["alkaloids/fusatin.yaml","fusatin"],["alkaloids/fusatinic-acid.yaml","fusatinic acid"]]},{"id":"NCBITaxon:1038928","l":"Streptomyces xinghaiensis","na":1,"nb":4,"a":[["TED%3AAF-A0A3R7FP99-F1-model_v4_TED01","TED novel fold AF-A0A3R7FP99-F1-model_v4_TED01"]],"b":[["alkaloids/dixiamycin-a.yaml","dixiamycin A"],["alkaloids/xiamycin-a.yaml","xiamycin A"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"],["polyketides/oligomycin.yaml","oligomycin"]]},{"id":"NCBITaxon:112509","l":"Hordeum vulgare subsp. vulgare","na":1,"nb":4,"a":[["IDPO%3A0000004","pre-molten globule"]],"b":[["fatty_acids/diketones.yaml","β-Diketones"],["terpenoids/11-hydroxy-hordetriene.yaml","11-hydroxy-hordetriene"],["terpenoids/hordediene.yaml","hordediene"],["terpenoids/hordetriene.yaml","hordetriene"]]},{"id":"NCBITaxon:1311","l":"Streptococcus agalactiae","na":4,"nb":1,"a":[["Pfam%3APF19567","Capsular polysaccharide synthesis, CpsB/CapC"],["Pfam%3APF16828","GAG-binding domain on surface antigen"],["Pfam%3APF27244","GtfB middle domain"],["Pfam%3APF07373","CAMP factor (Cfa)"]],"b":[["carbohydrates/capsular-polysaccharide-3.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:1813822","l":"Xylariales sp. No.14919","na":4,"nb":1,"a":[["TED%3AAF-A0A1V1SW90-F1-model_v4_TED01","TED novel fold AF-A0A1V1SW90-F1-model_v4_TED01"],["TED%3AAF-A0A1V1T5K0-F1-model_v4_TED01","TED novel fold AF-A0A1V1T5K0-F1-model_v4_TED01"],["TED%3AAF-A0A1V1TFW0-F1-model_v4_TED03","TED novel fold AF-A0A1V1TFW0-F1-model_v4_TED03"],["TED%3AAF-A0A1V1THH5-F1-model_v4_TED03","TED novel fold AF-A0A1V1THH5-F1-model_v4_TED03"]],"b":[["polyketides/fr901512.yaml","FR901512"]]},{"id":"NCBITaxon:1944","l":"Streptomyces halstedii","na":1,"nb":4,"a":[["Pfam%3APF09277","Erythronolide synthase, docking"]],"b":[["alkaloids/rotihibin-a.yaml","rotihibin A"],["polyketides/halstoctacosanolide-a.yaml","halstoctacosanolide A"],["terpenoids/geosmin.yaml","(−)-geosmin"],["unclassified/vicenistatin.yaml","vicenistatin"]]},{"id":"NCBITaxon:1967","l":"Streptomyces kanamyceticus","na":1,"nb":4,"a":[["Pfam%3APF13579","Glycosyl transferase 4-like domain"]],"b":[["amino_acids_and_peptides/gausemycin-a.yaml","gausemycin A"],["amino_acids_and_peptides/gausemycin-b.yaml","gausemycin B"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/kanamycin-a.yaml","kanamycin A"]]},{"id":"NCBITaxon:2017","l":"Streptoalloteichus hindustanus","na":1,"nb":4,"a":[["Pfam%3APF19581","Glyoxalase superfamily protein"]],"b":[["amino_acids_and_peptides/tallysomycin-a.yaml","tallysomycin A"],["amino_acids_and_peptides/tallysomycin-b.yaml","tallysomycin B"],["carbohydrates/apramycin.yaml","apramycin"],["carbohydrates/tobramycin.yaml","tobramycin"]]},{"id":"NCBITaxon:2045","l":"Nocardioides simplex","na":4,"nb":1,"a":[["Pfam%3APF00775","Dioxygenase"],["Pfam%3APF04444","Catechol dioxygenase N terminus"],["PROSITE%3APS00083","Intradiol ring-cleavage dioxygenases signature"],["TED%3AAF-A0A4Y3NBY1-F1-model_v4_TED01","TED novel fold AF-A0A4Y3NBY1-F1-model_v4_TED01"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:226900","l":"","na":4,"nb":1,"a":[["IDPO%3A0000060","self-assembly"],["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF14436","Bacterial EndoU nuclease"],["Pfam%3APF10803","Spore germination GerPB"]],"b":[["amino_acids_and_peptides/thiocillin-i.yaml","thiocillin I"]]},{"id":"NCBITaxon:267608","l":"Ralstonia nicotianae (strain ATCC BAA-1114 / GMI1000)","na":4,"nb":1,"a":[["Pfam%3APF13473","Cupredoxin-like domain"],["Pfam%3APF09483","Type III secretion protein (HpaP)"],["Pfam%3APF14897","EpsG family"],["Pfam%3APF03377","TAL effector repeat"]],"b":[["unclassified/micacocidin.yaml","micacocidin"]]},{"id":"NCBITaxon:269797","l":"Methanosarcina barkeri str. Fusaro","na":4,"nb":1,"a":[["Pfam%3APF27274","Coenzyme F430 synthetase CfbE, C-terminal domain"],["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"],["Pfam%3APF09505","Dimethylamine methyltransferase (Dimeth_PyL)"],["PROSITE%3APS00507","Nickel-dependent hydrogenases large subunit signature 1"]],"b":[["alkaloids/coenzyme-f430.yaml","coenzyme F430"]]},{"id":"NCBITaxon:28447","l":"Clavibacter michiganensis","na":4,"nb":1,"a":[["TED%3AAF-A0A251YC11-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A251YC11-F1-model_v4_TED02"],["TED%3AAF-A0A2S5VA57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5VA57-F1-model_v4_TED01"],["TED%3AAF-A0A2S5VJK2-F1-model_v4_TED01","TED novel fold AF-A0A2S5VJK2-F1-model_v4_TED01"],["TED%3AAF-A0A399NHQ8-F1-model_v4_TED01","TED novel fold AF-A0A399NHQ8-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/michiganin-a.yaml","michiganin A"]]},{"id":"NCBITaxon:28450","l":"Burkholderia pseudomallei","na":4,"nb":1,"a":[["Pfam%3APF18664","CdiA C-terminal tRNase domain"],["Pfam%3APF12106","Colicin E5 ribonuclease domain"],["Pfam%3APF11480","Colicin-E5 Imm protein"],["Pfam%3APF13332","Hemagglutinin repeat"]],"b":[["polyketides/malleilactone.yaml","malleilactone"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans Pd1222","na":4,"nb":1,"a":[["Pfam%3APF27518","Heme exporter protein C"],["Pfam%3APF22039","Imidazolonepropionase-like composite domain, bacteria"],["PROSITE%3APS01181","Ribosomal protein S21 signature"],["Pfam%3APF02239","Cytochrome D1 heme domain"]],"b":[["alkaloids/parabactin.yaml","parabactin"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":1,"nb":4,"a":[["TED%3AAF-A0A679J1E9-F1-model_v4_TED01","TED novel fold AF-A0A679J1E9-F1-model_v4_TED01"]],"b":[["unclassified/vacidobactin-a.yaml","vacidobactin A"],["unclassified/vacidobactin-b.yaml","vacidobactin B"],["unclassified/variobactin-a.yaml","variobactin A"],["unclassified/variobactin-b.yaml","variobactin B"]]},{"id":"NCBITaxon:40602","l":"Claviceps fusiformis","na":1,"nb":4,"a":[["Pfam%3APF06766","Fungal hydrophobin"]],"b":[["alkaloids/agroclavine-i.yaml","Agroclavine I"],["alkaloids/elymoclavine.yaml","elymoclavine"],["alkaloids/ergocryptine.yaml","α-ergocryptine"],["alkaloids/ergotamine.yaml","ergotamine"]]},{"id":"NCBITaxon:43662","l":"Pseudoalteromonas piscicida","na":1,"nb":4,"a":[["Pfam%3APF08329","Chitinase A, N-terminal domain"]],"b":[["alkaloids/2-3-4-5-tetrabromopyrrole.yaml","2,3,4,5-tetrabromopyrrole"],["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["alkaloids/pseudochelin-a.yaml","pseudochelin A"]]},{"id":"NCBITaxon:497965","l":"","na":4,"nb":1,"a":[["TED%3AAF-E0UJA0-F1-model_v4_TED01","TED highly-symmetric fold AF-E0UJA0-F1-model_v4_TED01"],["TED%3AAF-E0U6M3-F1-model_v4_TED03","TED novel fold AF-E0U6M3-F1-model_v4_TED03"],["TED%3AAF-E0UE39-F1-model_v4_TED02","TED novel fold AF-E0UE39-F1-model_v4_TED02"],["TED%3AAF-E0UM93-F1-model_v4_TED01","TED novel fold AF-E0UM93-F1-model_v4_TED01"]],"b":[["fatty_acids/1-heptadecene.yaml","1-heptadecene"]]},{"id":"NCBITaxon:5083","l":"Penicillium canescens","na":1,"nb":4,"a":[["Pfam%3APF09206","Alpha-L-arabinofuranosidase B, catalytic"]],"b":[["alkaloids/agroclavine-i.yaml","Agroclavine I"],["unclassified/outovirin-a.yaml","outovirin A"],["unclassified/outovirin-c.yaml","outovirin C"],["unclassified/penitrem-a.yaml","penitrem A"]]},{"id":"NCBITaxon:512","l":"Alcaligenes sp","na":4,"nb":1,"a":[["Pfam%3APF26354","N,N-dimethylformamidase alpha subunit"],["Pfam%3APF20254","N,N-dimethylformamidase beta subunit-like, C-terminal"],["Pfam%3APF11606","Family 31 carbohydrate binding protein"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"]],"b":[["polyketides/kalimantacin-a.yaml","kalimantacin A"]]},{"id":"NCBITaxon:5353","l":"Lentinula edodes","na":4,"nb":1,"a":[["Pfam%3APF21671","Protein CPL1-like"],["Pfam%3APF16850","Peptidase inhibitor I66"],["TED%3AAF-A0A1Q3EBL0-F1-model_v4_TED01","TED novel fold AF-A0A1Q3EBL0-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3ENK4-F1-model_v4_TED01","TED novel fold AF-A0A1Q3ENK4-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/lentinulin-a.yaml","lentinulin A"]]},{"id":"NCBITaxon:5516","l":"Fusarium culmorum","na":1,"nb":4,"a":[["TED%3AAF-A0A2T4GUL3-F1-model_v4_TED01","TED novel fold AF-A0A2T4GUL3-F1-model_v4_TED01"]],"b":[["polyketides/zearalenone.yaml","zearalenone"],["terpenoids/15-acetyldeoxynivalenol.yaml","15-acetyldeoxynivalenol"],["terpenoids/culmorin.yaml","culmorin"],["terpenoids/nivalenol.yaml","nivalenol"]]},{"id":"NCBITaxon:655819","l":"Beauveria bassiana ARSEF 2860","na":1,"nb":4,"a":[["Pfam%3APF22354","Hydrophobin"]],"b":[["polyketides/oosporein.yaml","oosporein"],["unclassified/beauverolide-ba.yaml","beauverolide Ba"],["unclassified/beauverolide-ca.yaml","beauverolide Ca"],["unclassified/beauverolide-ka.yaml","beauverolide Ka"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":4,"nb":1,"a":[["PROSITE%3APS00949","Autoinducer synthase family signature"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"],["PROSITE%3APS00607","cAMP phosphodiesterases class-II signature"],["TED%3AAF-A0A844NWZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A844NWZ1-F1-model_v4_TED02"]],"b":[["unclassified/ape-vf.yaml","APE Vf"]]},{"id":"NCBITaxon:76728","l":"Streptomyces vitaminophilus","na":1,"nb":4,"a":[["TED%3AAF-A0A0T6LRN4-F1-model_v4_TED01","TED novel fold AF-A0A0T6LRN4-F1-model_v4_TED01"]],"b":[["alkaloids/pyrrolomycin-a.yaml","pyrrolomycin A"],["alkaloids/pyrrolomycin-b.yaml","pyrrolomycin B"],["alkaloids/pyrrolomycin-c.yaml","pyrrolomycin C"],["alkaloids/pyrrolomycin-d.yaml","pyrrolomycin D"]]},{"id":"NCBITaxon:85698","l":"Achromobacter xylosoxidans","na":4,"nb":1,"a":[["Pfam%3APF25975","CzcB C-terminal circularly permuted SH3-like domain"],["Pfam%3APF17524","Anti-sigma factor CnrY"],["Pfam%3APF10778","Halocarboxylic acid dehydrogenase DehI"],["TED%3AAF-A0A1R1JVF9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1R1JVF9-F1-model_v4_TED03"]],"b":[["amino_acids_and_peptides/alcaligin.yaml","alcaligin"]]},{"id":"NCBITaxon:933388","l":"Penicillium oxalicum (strain 114-2 / CGMCC 5302)","na":4,"nb":1,"a":[["Pfam%3APF27751","ATEG_07667 C-terminal domain"],["Pfam%3APF11402","Antifungal protein"],["Pfam%3APF12311","Protein of unknown function (DUF3632)"],["TED%3AAF-S8ATN5-F1-model_v4_TED01","TED highly-symmetric fold AF-S8ATN5-F1-model_v4_TED01"]],"b":[["unclassified/atpenin-b.yaml","atpenin B"]]},{"id":"NCBITaxon:93625","l":"Psilocybe cyanescens","na":4,"nb":1,"a":[["Pfam%3APF02958","Ecdysteroid kinase-like family"],["TED%3AAF-A0A409XLW7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A409XLW7-F1-model_v4_TED01"],["TED%3AAF-A0A409XPY8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A409XPY8-F1-model_v4_TED01"],["TED%3AAF-A0A409XED8-F1-model_v4_TED01","TED novel fold AF-A0A409XED8-F1-model_v4_TED01"]],"b":[["alkaloids/psilocybin.yaml","psilocybin"]]},{"id":"UniProt:P02701","l":"","na":4,"nb":1,"a":[["Pfam%3APF01382","Avidin family"],["PROSITE%3APS00577","Avidin-like domain signature"],["proteintraitsmech%3ABIOLIP_B1R","B1R-binding site"],["proteintraitsmech%3ABIOLIP_BTN","BTN-binding site"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"UniProt:P62593","l":"","na":4,"nb":1,"a":[["proteintraitsmech%3AMEROPS_CLEAVAGE_M50_004","RseP peptidase cleavage specificity"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["PROSITE%3APS00146","Beta-lactamase class-A active site"],["MCSA%3A2","beta-lactamase (Class A)"]],"b":[["amino_acids_and_peptides/clavulanic-acid-2.yaml","clavulanic acid"]]},{"id":"UniProt:Q00441","l":"","na":4,"nb":1,"a":[["EC%3A1.14.15.35","6-deoxyerythronolide B hydroxylase"],["RHEA%3A40299","6-deoxyerythronolide B + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = erythronolide B + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"],["MCSA%3A694","6-deoxyerythronolide B hydroxylase"],["proteintraitsmech%3ABIOLIP_9AP","9AP-binding site"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"UniProt:Q8TDV0","l":"","na":4,"nb":1,"a":[["ComplexPortal%3ACPX-16132","-"],["ComplexPortal%3ACPX-17565","-"],["ComplexPortal%3ACPX-24374","-"],["CDD%3Acd15002","7tmA_GPR151"]],"b":[["carbohydrates/tobramycin.yaml","tobramycin"]]},{"id":"UniProt:Q9Y243","l":"","na":4,"nb":1,"a":[["ComplexPortal%3ACPX-22352","-"],["ComplexPortal%3ACPX-24286","-"],["CDD%3Acd05593","STKc_PKB_gamma"],["InterPro%3AIPR034675","Protein kinase B gamma, catalytic domain"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"CHEBI:131914","l":"violacein","na":3,"nb":1,"a":[["RHEA%3A49720","protoviolaceinate + NADH + 2 O2 + 2 H(+) = violacein + CO2 + NAD(+) + 2 H2O"],["RHEA%3A49728","protoviolaceinate + NADPH + 2 O2 + 2 H(+) = violacein + CO2 + NADP(+) + 2 H2O"],["RHEA%3A49732","violaceinate + O2 + H(+) = violacein + CO2 + H2O"]],"b":[["alkaloids/violacein.yaml","violacein"]]},{"id":"CHEBI:133763","l":"YWA1","na":3,"nb":1,"a":[["RHEA%3A62652","6 malonyl-CoA + acetyl-CoA + 6 H(+) = naphtopyrone YWA1 + 6 CO2 + 7 CoA + H2O"],["RHEA%3A62700","naphtopyrone YWA1 + H2O = naphthalene-1,3,6,8-tetrol + acetoacetate + H(+)"],["RHEA%3A62680","naphtopyrone YWA1 = norrubrofusarin + H2O + H(+)"]],"b":[["polyketides/ywa1.yaml","YWA1"]]},{"id":"CHEBI:138046","l":"sesterfisherol","na":3,"nb":1,"a":[["EC%3A4.2.3.176","sesterfisherol synthase"],["RHEA%3A54068","(2E,6E,10E,14E)-geranylfarnesyl diphosphate + H2O = sesterfisherol + diphosphate"],["RHEA%3A78407","sesterfisherol + 3 reduced [NADPH--hemoprotein reductase] + 3 O2 = sesterfisherate + 3 oxidized [NADPH--hemoprotein reductase] + 4 H2O + 4 H(+)"]],"b":[["terpenoids/sesterfisherol.yaml","sesterfisherol"]]},{"id":"CHEBI:18393","l":"naphthalene-1,3,8-triol","na":3,"nb":1,"a":[["EC%3A4.2.1.94","scytalone dehydratase"],["RHEA%3A24396","scytalone = 1,3,8-trihydroxynaphthalene + H2O"],["MCSA%3A910","scytalone dehydratase"]],"b":[["polyketides/naphthalene-1-3-8-triol.yaml","naphthalene-1,3,8-triol"]]},{"id":"CHEBI:28915","l":"fosfomycin","na":3,"nb":1,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.5","The Pseudomonas OprP Porin (POP) Family"],["proteintraitsmech%3ABIOLIP_FCN","FCN-binding site"]],"b":[["unclassified/fosfomycin.yaml","fosfomycin"]]},{"id":"CHEBI:29472","l":"2-heptyl-3-hydroxy-4-quinolone","na":3,"nb":1,"a":[["EC%3A1.14.13.182","2-heptyl-3-hydroxy-4(1H)-quinolone synthase"],["RHEA%3A60352","2-heptyl-3-hydroxy-4(1H)-quinolone + O2 = N-octanoylanthranilate + CO + H(+)"],["RHEA%3A37871","2-heptyl-4(1H)-quinolone + NADH + O2 + H(+) = 2-heptyl-3-hydroxy-4(1H)-quinolone + NAD(+) + H2O"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"]]},{"id":"CHEBI:3139","l":"bleomycin A2","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A9.A.18","The Peptide Uptake Permease (PUP) Family"]],"b":[["amino_acids_and_peptides/bleomycin-a2.yaml","bleomycin A2"]]},{"id":"CHEBI:31432","l":"corynebactin","na":3,"nb":1,"a":[["RHEA%3A33811","3 2,3-dihydroxybenzoate + 3 L-threonine + 3 glycine + 6 ATP = corynebactin + 6 AMP + 6 diphosphate + 3 H2O + 3 H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"CHEBI:31550","l":"epothilone B","na":3,"nb":1,"a":[["RHEA%3A47808","epothilone D + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = epothilone B + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["proteintraitsmech%3ABIOLIP_EPB","EPB-binding site"]],"b":[["unclassified/epothilone-b.yaml","epothilone B"]]},{"id":"CHEBI:40968","l":"astaxanthin","na":3,"nb":1,"a":[["EC%3A1.14.99.64","zeaxanthin 4-ketolase"],["RHEA%3A56772","all-trans-adonixanthin + 2 AH2 + 2 O2 = all-trans-(3S,3'S)-astaxanthin + 2 A + 3 H2O"],["proteintraitsmech%3ABIOLIP_AXT","AXT-binding site"]],"b":[["terpenoids/astaxanthin.yaml","astaxanthin"]]},{"id":"CHEBI:46702","l":"(−)-geosmin","na":3,"nb":1,"a":[["EC%3A4.1.99.16","geosmin synthase"],["RHEA%3A30371","(1E,4S,5E,7R)-germacra-1(10),5-dien-11-ol + H2O = (-)-geosmin + acetone"],["RHEA%3A30455","(1S,4aS)-1,4a-dimethyl-1,2,3,4,4a,5,6,8a-octahydronaphthalene + H2O = (-)-geosmin"]],"b":[["terpenoids/geosmin.yaml","(−)-geosmin"]]},{"id":"CHEBI:48741","l":"β-phellandrene","na":3,"nb":1,"a":[["EC%3A4.2.3.51","beta-phellandrene synthase (neryl-diphosphate-cyclizing)"],["RHEA%3A25504","(2E)-geranyl diphosphate = beta-phellandrene + diphosphate"],["RHEA%3A27830","neryl diphosphate = beta-phellandrene + diphosphate"]],"b":[["terpenoids/phellandrene.yaml","β-phellandrene"]]},{"id":"CHEBI:50432","l":"putrebactin","na":3,"nb":1,"a":[["EC%3A6.3.2.63","putrebactin synthase"],["RHEA%3A79279","2 N-(3-carboxypropanoyl)-N-hydroxyputrescine + 2 ATP = putrebactin + 2 AMP + 2 diphosphate + 2 H(+)"],["RHEA%3A79287","pre-putrebactin + ATP = putrebactin + AMP + diphosphate + H(+)"]],"b":[["amino_acids_and_peptides/putrebactin.yaml","putrebactin"]]},{"id":"CHEBI:63468","l":"tirucalla-7,24-dien-3β-ol","na":3,"nb":1,"a":[["EC%3A5.4.99.56","tirucalladienol synthase"],["RHEA%3A31887","(S)-2,3-epoxysqualene = tirucalla-7,24-dien-3beta-ol"],["RHEA%3A80279","tirucalla-7,24-dien-3beta-ol + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = dihydroniloticin + 2 oxidized [NADPH--hemoprotein reductase] + 2 H2O + 2 H(+)"]],"b":[["terpenoids/tirucalla-7-24-dien-3-ol.yaml","tirucalla-7,24-dien-3β-ol"]]},{"id":"CHEBI:6472","l":"lincomycin","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_3QB","3QB-binding site"]],"b":[["carbohydrates/lincomycin.yaml","lincomycin"]]},{"id":"CHEBI:71609","l":"albonoursin","na":3,"nb":1,"a":[["EC%3A1.3.3.13","albonoursin synthase"],["RHEA%3A35531","cyclo(L-phenylalanyl-L-leucyl) + 2 O2 = albonoursin + 2 H2O2"],["RHEA%3A35539","cyclo[(Z)-alpha,beta-didehydrophenylalanyl-L-leucyl] + O2 = albonoursin + H2O2"]],"b":[["unclassified/albonoursin.yaml","albonoursin"]]},{"id":"CHEBI:7719","l":"ochratoxin A","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.60","The Organo Anion Transporter (OAT) Family"]],"b":[["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"]]},{"id":"CHEBI:77879","l":"elaiophylin","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["proteintraitsmech%3ABIOLIP_ELO","ELO-binding site"]],"b":[["polyketides/elaiophylin.yaml","elaiophylin"]]},{"id":"CHEBI:80729","l":"toxoflavin","na":3,"nb":1,"a":[["EC%3A2.1.1.349","toxoflavin synthase"],["RHEA%3A56852","reumycin + S-adenosyl-L-methionine = toxoflavin + S-adenosyl-L-homocysteine + H(+)"],["proteintraitsmech%3ABIOLIP_TOF","TOF-binding site"]],"b":[["alkaloids/toxoflavin.yaml","toxoflavin"]]},{"id":"CHEBI:9215","l":"spectinomycin","na":3,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["proteintraitsmech%3ABIOLIP_SCM","SCM-binding site"]],"b":[["carbohydrates/spectinomycin.yaml","spectinomycin"]]},{"id":"CHEBI:9470","l":"tetracenomycin C","na":3,"nb":1,"a":[["EC%3A1.14.13.200","tetracenomycin A2 monooxygenase-diooxygenase"],["RHEA%3A42824","tetracenomycin A2 + 2 NADH + 2 O2 + 2 H(+) = tetracenomycin C + 2 NAD(+) + H2O"],["RHEA%3A42820","tetracenomycin A2 + 2 NADPH + 2 O2 + 2 H(+) = tetracenomycin C + 2 NADP(+) + H2O"]],"b":[["polyketides/tetracenomycin-c.yaml","tetracenomycin C"]]},{"id":"NCBITaxon:10141","l":"Cavia porcellus","na":3,"nb":1,"a":[["IDPO%3A0000048","limited proteolysis display site"],["Pfam%3APF16681","Ig-like domain on T-cell surface glycoprotein CD3 epsilon chain"],["PROSITE%3APS00799","Granulins signature"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":3,"nb":1,"a":[["Pfam%3APF05258","Dna[CI] antecedent, DciA"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"],["TED%3AAF-Q0RZW9-F1-model_v4_TED03","TED highly-symmetric fold AF-Q0RZW9-F1-model_v4_TED03"]],"b":[["unclassified/rhodochelin.yaml","rhodochelin"]]},{"id":"NCBITaxon:1125972","l":"Amycolatopsis alba DSM 44262","na":3,"nb":1,"a":[["TED%3AAF-A0A229R958-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A229R958-F1-model_v4_TED01"],["TED%3AAF-A0A229REG9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A229REG9-F1-model_v4_TED01"],["TED%3AAF-A0A229RFD1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A229RFD1-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/albachelin.yaml","albachelin"]]},{"id":"NCBITaxon:1381753","l":"Moniliophthora roreri (strain MCA 2997)","na":3,"nb":1,"a":[["TED%3AAF-V2WPW3-F1-model_v4_TED02","TED highly-symmetric fold AF-V2WPW3-F1-model_v4_TED02"],["TED%3AAF-V2WSW5-F1-model_v4_TED05","TED highly-symmetric fold AF-V2WSW5-F1-model_v4_TED05"],["TED%3AAF-V2XCP9-F1-model_v4_TED03","TED highly-symmetric fold AF-V2XCP9-F1-model_v4_TED03"]],"b":[["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"]]},{"id":"NCBITaxon:1392250","l":"Aspergillus steynii IBT 23096","na":3,"nb":1,"a":[["TED%3AAF-A0A2I2FXR6-F1-model_v4_TED02","TED novel fold AF-A0A2I2FXR6-F1-model_v4_TED02"],["TED%3AAF-A0A2I2GJL8-F1-model_v4_TED01","TED novel fold AF-A0A2I2GJL8-F1-model_v4_TED01"],["TED%3AAF-A0A2I2GP63-F1-model_v4_TED02","TED novel fold AF-A0A2I2GP63-F1-model_v4_TED02"]],"b":[["alkaloids/ochrindole-a.yaml","ochrindole A"]]},{"id":"NCBITaxon:1406225","l":"Archangium violaceum Cb vi76","na":3,"nb":1,"a":[["TED%3AAF-A0A084STC5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A084STC5-F1-model_v4_TED01"],["TED%3AAF-A0A084SQF5-F1-model_v4_TED01","TED novel fold AF-A0A084SQF5-F1-model_v4_TED01"],["TED%3AAF-A0A084SQH8-F1-model_v4_TED01","TED novel fold AF-A0A084SQH8-F1-model_v4_TED01"]],"b":[["polyketides/gephyronic-acid.yaml","gephyronic acid"]]},{"id":"NCBITaxon:1756125","l":"Pyrenochaetopsis sp.","na":1,"nb":3,"a":[["Pfam%3APF22903","Diels-Alderase-like"]],"b":[["polyketides/wakodecalines-a.yaml","wakodecalines A"],["polyketides/wakodecalines-b.yaml","wakodecalines B"],["unclassified/phomasetin.yaml","phomasetin"]]},{"id":"NCBITaxon:1810919","l":"Aspergillus mulundensis","na":3,"nb":1,"a":[["TED%3AAF-A0A3D8QN50-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D8QN50-F1-model_v4_TED01"],["TED%3AAF-A0A3D8RF64-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D8RF64-F1-model_v4_TED01"],["TED%3AAF-A0A3D8R479-F1-model_v4_TED02","TED novel fold AF-A0A3D8R479-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/mulundocandin.yaml","mulundocandin"]]},{"id":"NCBITaxon:1857892","l":"Streptomyces sp. MP131-18","na":1,"nb":3,"a":[["TED%3AAF-A0A1V2RLA5-F1-model_v4_TED02","TED novel fold AF-A0A1V2RLA5-F1-model_v4_TED02"]],"b":[["polyketides/lagunapyrone-a.yaml","lagunapyrone A"],["polyketides/lagunapyrone-b.yaml","lagunapyrone B"],["polyketides/lagunapyrone-c.yaml","lagunapyrone C"]]},{"id":"NCBITaxon:1885","l":"Streptomyces actuosus","na":1,"nb":3,"a":[["Pfam%3APF17258","Family of unknown function (DUF5324)"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/nosiheptide-2.yaml","nosiheptide"]]},{"id":"NCBITaxon:1904","l":"Streptomyces cyaneus","na":1,"nb":3,"a":[["Pfam%3APF04673","Polyketide synthesis cyclase"]],"b":[["carbohydrates/curamycin.yaml","curamycin"],["polyketides/cardol.yaml","cardol"],["polyketides/cosmomycin-d.yaml","cosmomycin D"]]},{"id":"NCBITaxon:1932","l":"Streptomyces tendae","na":1,"nb":3,"a":[["Pfam%3APF01356","Alpha amylase inhibitor"]],"b":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"],["polyketides/lysolipin-i.yaml","lysolipin I"],["terpenoids/geosmin.yaml","(−)-geosmin"]]},{"id":"NCBITaxon:1935","l":"Streptomyces violaceoruber","na":1,"nb":3,"a":[["Pfam%3APF03559","NDP-hexose 2,3-dehydratase"]],"b":[["polyketides/granaticin.yaml","granaticin"],["polyketides/kendomycin.yaml","kendomycin"],["terpenoids/methylenomycin-a.yaml","methylenomycin A"]]},{"id":"NCBITaxon:1938","l":"Streptomyces viridochromogenes","na":1,"nb":3,"a":[["Pfam%3APF11599","RRNA methyltransferase AviRa"]],"b":[["amino_acids_and_peptides/glycinocin-a.yaml","glycinocin A"],["carbohydrates/avilamycin-a.yaml","avilamycin A"],["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"]]},{"id":"NCBITaxon:1950","l":"Streptomyces peucetius","na":1,"nb":3,"a":[["Pfam%3APF13732","ATP-binding protein DrrA1-3-like, C-terminal domain"]],"b":[["amino_acids_and_peptides/peucechelin.yaml","peucechelin"],["polyketides/daunorubicin.yaml","daunorubicin"],["polyketides/doxorubicin.yaml","doxorubicin"]]},{"id":"NCBITaxon:1956","l":"Streptomyces diastaticus","na":1,"nb":3,"a":[["TED%3AAF-A0A7K3Q596-F1-model_v4_TED01","TED novel fold AF-A0A7K3Q596-F1-model_v4_TED01"]],"b":[["alkaloids/diastaphenazine.yaml","diastaphenazine"],["alkaloids/izumiphenazine-c.yaml","izumiphenazine C"],["polyketides/rimocidin.yaml","rimocidin"]]},{"id":"NCBITaxon:216591","l":"Burkholderia cenocepacia J2315","na":1,"nb":3,"a":[["Pfam%3APF04199","Putative cyclase"]],"b":[["unclassified/ornibactin-c4.yaml","ornibactin C4"],["unclassified/ornibactin-c6.yaml","ornibactin C6"],["unclassified/ornibactin-c8.yaml","ornibactin C8"]]},{"id":"NCBITaxon:2572248","l":"Cryptosporiopsis sp. 8999","na":1,"nb":3,"a":[["Pfam%3APF08592","Anthrone oxygenase"]],"b":[["polyketides/cryptosporioptide-a.yaml","cryptosporioptide A"],["polyketides/cryptosporioptide-b.yaml","cryptosporioptide B"],["polyketides/cryptosporioptide-c.yaml","cryptosporioptide C"]]},{"id":"NCBITaxon:2747968","l":"Fusarium vanettenii","na":3,"nb":1,"a":[["Pfam%3APF01083","Cutinase"],["PROSITE%3APS00155","Cutinase, serine active site"],["PROSITE%3APS00931","Cutinase, aspartate and histidine active sites"]],"b":[["polyketides/bikaverin.yaml","bikaverin"]]},{"id":"NCBITaxon:312309","l":"","na":3,"nb":1,"a":[["Pfam%3APF06610","L-alanine exporter"],["Pfam%3APF00765","Autoinducer synthase"],["PROSITE%3APS00949","Autoinducer synthase family signature"]],"b":[["unclassified/ape-vf.yaml","APE Vf"]]},{"id":"NCBITaxon:322159","l":"Streptococcus thermophilus (strain ATCC BAA-491 / LMD-9)","na":3,"nb":1,"a":[["Pfam%3APF18470","Cas9 alpha-helical lobe domain"],["Pfam%3APF18070","CRISPR-Cas9 PI domain"],["Pfam%3APF18061","CRISPR-Cas9 WED domain"]],"b":[["amino_acids_and_peptides/streptide.yaml","streptide"]]},{"id":"NCBITaxon:324833","l":"Streptomyces lasaliensis","na":1,"nb":3,"a":[["TED%3AAF-A0A4U5W597-F1-model_v4_TED01","TED novel fold AF-A0A4U5W597-F1-model_v4_TED01"]],"b":[["polyketides/lasalocid-2.yaml","lasalocid"],["polyketides/lasalocid.yaml","lasalocid"],["unclassified/echinomycin.yaml","echinomycin"]]},{"id":"NCBITaxon:33203","l":"Purpureocillium lilacinum","na":1,"nb":3,"a":[["TED%3AAF-A0A2U3ENJ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U3ENJ6-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/leucinostatin-a.yaml","leucinostatin A"],["amino_acids_and_peptides/leucinostatin-b.yaml","leucinostatin B"],["polyketides/patulin.yaml","patulin"]]},{"id":"NCBITaxon:347834","l":"Rhizobium etli (strain ATCC 51251 / DSM 11541 / JCM 21823 / NBRC 15573 / CFN 42)","na":3,"nb":1,"a":[["Pfam%3APF02632","BioY family"],["proteintraitsmech%3AELIFE109154_VbsL","Vicibactin acyl-hydroxyornithine epimerase family"],["PROSITE%3APS01349","Nodulation protein nodA signature"]],"b":[["amino_acids_and_peptides/vicibactin.yaml","vicibactin"]]},{"id":"NCBITaxon:362242","l":"","na":3,"nb":1,"a":[["Pfam%3APF02654","Cobalamin-5-phosphate synthase"],["Pfam%3APF02622","AlgH-like"],["Pfam%3APF01628","HrcA protein C terminal domain"]],"b":[["polyketides/mycolactone-b.yaml","mycolactone B"]]},{"id":"NCBITaxon:376686","l":"","na":3,"nb":1,"a":[["Pfam%3APF17957","Bacterial Ig domain"],["Pfam%3APF24850","Bacillithiol biosynthesis BshC, C-terminal coiled-coil domain"],["Pfam%3APF14109","GldH lipoprotein"]],"b":[["polyketides/flexirubin.yaml","flexirubin"]]},{"id":"NCBITaxon:381666","l":"Cupriavidus necator H16","na":3,"nb":1,"a":[["Pfam%3APF13473","Cupredoxin-like domain"],["Pfam%3APF10605","3HB-oligomer hydrolase (3HBOH)"],["Pfam%3APF21783","YNCE-like beta-propeller"]],"b":[["amino_acids_and_peptides/cupriachelin.yaml","cupriachelin"]]},{"id":"NCBITaxon:3879","l":"Medicago sativa","na":3,"nb":1,"a":[["Pfam%3APF02095","Extensin-like protein"],["Pfam%3APF02431","Chalcone-flavanone isomerase"],["PROSITE%3APS00441","Chalcone and stilbene synthases active site"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:393595","l":"Alcanivorax borkumensis SK2","na":1,"nb":3,"a":[["TED%3AAF-Q0VNH7-F1-model_v4_TED01","TED highly-symmetric fold AF-Q0VNH7-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/amphibactin-e.yaml","amphibactin E"],["amino_acids_and_peptides/amphibactin-h.yaml","amphibactin H"],["fatty_acids/amphibactin-i.yaml","amphibactin I"]]},{"id":"NCBITaxon:3988","l":"Ricinus communis","na":3,"nb":1,"a":[["Pfam%3APF10998","Protein of unknown function (DUF2838)"],["PROSITE%3APS00574","Fatty acid desaturases family 2 signature"],["PROSITE%3APS00275","Shiga/ricin ribosomal inactivating toxins active site signature"]],"b":[["terpenoids/casbene.yaml","casbene"]]},{"id":"NCBITaxon:4039","l":"Daucus carota","na":3,"nb":1,"a":[["PROSITE%3APS00451","Pathogenesis-related proteins Bet v I family signature"],["PROSITE%3APS00431","Small hydrophilic plant seed proteins signature"],["Pfam%3APF02987","Late embryogenesis abundant protein"]],"b":[["carbohydrates/adenine-arabinoside.yaml","adenine arabinoside"]]},{"id":"NCBITaxon:41067","l":"Aspergillus candidus","na":1,"nb":3,"a":[["TED%3AAF-A0A2I2EZ62-F1-model_v4_TED02","TED novel fold AF-A0A2I2EZ62-F1-model_v4_TED02"]],"b":[["alkaloids/aspcandine.yaml","aspcandine"],["polyketides/kojic-acid.yaml","kojic acid"],["shikimates_and_phenylpropanoids/chlorflavonin.yaml","chlorflavonin"]]},{"id":"NCBITaxon:41899","l":"Burkholderia plantarii","na":3,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_GrbD","GrbD-type graminine biosynthesis protein family"],["proteintraitsmech%3AELIFE109154_GrbE","GrbE-type graminine biosynthesis protein family"],["TED%3AAF-A0A0B6RMB1-F1-model_v4_TED01","TED novel fold AF-A0A0B6RMB1-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/plantaribactin.yaml","plantaribactin"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":3,"nb":1,"a":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF22277","EncFtn-like"],["TED%3AAF-D0LJ11-F1-model_v4_TED04","TED highly-symmetric fold AF-D0LJ11-F1-model_v4_TED04"]],"b":[["polyketides/haliamide.yaml","haliamide"]]},{"id":"NCBITaxon:53446","l":"Streptomyces cinnamoneus","na":1,"nb":3,"a":[["TED%3AAF-A0A2S6XSK0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S6XSK0-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/cinnamycin.yaml","cinnamycin"],["amino_acids_and_peptides/duramycin.yaml","duramycin"],["unclassified/bicozamycin.yaml","bicozamycin"]]},{"id":"NCBITaxon:645","l":"Aeromonas salmonicida","na":3,"nb":1,"a":[["Pfam%3APF28601","Heat shock protein 15, C-terminal region"],["Pfam%3APF12563","Hemolytic toxin N terminal"],["Pfam%3APF01203","Type II secretion system (T2SS), protein N"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:659352","l":"Streptomyces sp. SN-593","na":1,"nb":3,"a":[["TED%3AAF-A0A7U3V0R8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7U3V0R8-F1-model_v4_TED02"]],"b":[["polyketides/kinanthraquinone-b.yaml","kinanthraquinone B"],["polyketides/kinanthraquinone.yaml","kinanthraquinone"],["polyketides/reveromycin-a.yaml","reveromycin A"]]},{"id":"NCBITaxon:660122","l":"Fusarium vanettenii (strain ATCC MYA-4622 / CBS 123669 / FGSC 9596 / NRRL 45880 / 77-13-4)","na":3,"nb":1,"a":[["Pfam%3APF17660","Polyglycine hydrolase-like, structural repeat"],["Pfam%3APF26719","ATPase synthesis protein 25, C-terminal TPR repeats"],["TED%3AAF-C7YNY6-F1-model_v4_TED02","TED highly-symmetric fold AF-C7YNY6-F1-model_v4_TED02"]],"b":[["unclassified/sansalvamide.yaml","sansalvamide"]]},{"id":"NCBITaxon:66374","l":"Streptomyces nojiriensis","na":1,"nb":3,"a":[["TED%3AAF-A0A8A6HBY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8A6HBY6-F1-model_v4_TED01"]],"b":[["carbohydrates/streptothricin-d.yaml","streptothricin D"],["carbohydrates/streptothricin-e.yaml","streptothricin E"],["carbohydrates/streptothricin-f.yaml","streptothricin F"]]},{"id":"NCBITaxon:68239","l":"Streptomyces mirabilis","na":1,"nb":3,"a":[["TED%3AAF-A0A1I2Y4U7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2Y4U7-F1-model_v4_TED01"]],"b":[["alkaloids/azodyrecin-a.yaml","Azodyrecin A"],["alkaloids/azodyrecin-b.yaml","Azodyrecin B"],["alkaloids/azodyrecin-c.yaml","Azodyrecin C"]]},{"id":"NCBITaxon:715","l":"Actinobacillus pleuropneumoniae","na":3,"nb":1,"a":[["Pfam%3APF26002","AprE-like, beta-barrel domain"],["Pfam%3APF02794","RTX toxin acyltransferase family"],["PROSITE%3APS00543","HlyD family secretion proteins signature"]],"b":[["unclassified/capsular-polysaccharide.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:717774","l":"Marinomonas mediterranea MMB-1","na":1,"nb":3,"a":[["TED%3AAF-F2K4E6-F1-model_v4_TED01","TED novel fold AF-F2K4E6-F1-model_v4_TED01"]],"b":[["alkaloids/bistribromopyrrole.yaml","bistribromopyrrole"],["shikimates_and_phenylpropanoids/bromophene.yaml","bromophene"],["shikimates_and_phenylpropanoids/pentabromopseudilin.yaml","pentabromopseudilin"]]},{"id":"NCBITaxon:749414","l":"","na":3,"nb":1,"a":[["Pfam%3APF14509","Glycosyl-hydrolase 97 C-terminal, oligomerisation"],["Pfam%3APF14508","Glycosyl-hydrolase 97 N-terminal"],["Pfam%3APF10566","Glycoside hydrolase 97"]],"b":[["polyketides/nanchangmycin.yaml","nanchangmycin"]]},{"id":"NCBITaxon:889282","l":"Polyangium spumosum","na":3,"nb":1,"a":[["TED%3AAF-A0A6N7PQI9-F1-model_v4_TED01","TED novel fold AF-A0A6N7PQI9-F1-model_v4_TED01"],["TED%3AAF-A0A6N7PTT9-F1-model_v4_TED02","TED novel fold AF-A0A6N7PTT9-F1-model_v4_TED02"],["TED%3AAF-A0A6N7Q2E0-F1-model_v4_TED01","TED novel fold AF-A0A6N7Q2E0-F1-model_v4_TED01"]],"b":[["unclassified/antalid.yaml","antalid"]]},{"id":"NCBITaxon:95486","l":"Burkholderia cenocepacia","na":3,"nb":1,"a":[["TED%3AAF-A0A109EHZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A109EHZ6-F1-model_v4_TED01"],["TED%3AAF-A0A071M3L2-F1-model_v4_TED01","TED novel fold AF-A0A071M3L2-F1-model_v4_TED01"],["TED%3AAF-A0A088UYL8-F1-model_v4_TED01","TED novel fold AF-A0A088UYL8-F1-model_v4_TED01"]],"b":[["unclassified/ornibactin-c8.yaml","ornibactin C8"]]},{"id":"RHEA:32647","l":"","na":3,"nb":1,"a":[["EC%3A2.1.1.254","erythromycin 3'-O-methyltransferase"],["RHEA%3A32647","erythromycin C + S-adenosyl-L-methionine = erythromycin A + S-adenosyl-L-homocysteine + H(+)"],["GO%3A0102307","erythromycin 3'-o-methyltransferase activity"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"UniProt:P22629.","l":"","na":3,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_4IR","4IR-binding site"],["proteintraitsmech%3ABIOLIP_HL9","HL9-binding site"],["proteintraitsmech%3ABIOLIP_ZOE","ZOE-binding site"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"UniProt:P48635","l":"","na":3,"nb":1,"a":[["EC%3A1.14.13.154","erythromycin 12 hydroxylase"],["RHEA%3A32631","erythromycin D + NADPH + O2 + H(+) = erythromycin C + NADP(+) + H2O"],["proteintraitsmech%3ABIOLIP_KLN","KLN-binding site"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"UniProt:Q00975","l":"","na":3,"nb":1,"a":[["GO%3A1903235","positive regulation of calcium ion-dependent exocytosis of neurotransmitter"],["ELM%3AELME000451","LIG_PDZ_Wminus1_1"],["proteintraitsmech%3ABIOLIP_PT5","PT5-binding site"]],"b":[["alkaloids/odilorhabdin-noso-95c.yaml","odilorhabdin NOSO-95C"]]},{"id":"UniProt:Q16584","l":"","na":3,"nb":1,"a":[["CDD%3Acd14147","STKc_MLK3"],["CDD%3Acd12059","SH3_MLK1-3"],["InterPro%3AIPR035779","MLK1-3, SH3 domain"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"]]},{"id":"CHEBI:10106","l":"zearalenone","na":2,"nb":1,"a":[["RHEA%3A79255","zearalenone + H2O = hydrolyzed zearalenone + H(+)"],["proteintraitsmech%3ABIOLIP_ZER","ZER-binding site"]],"b":[["polyketides/zearalenone.yaml","zearalenone"]]},{"id":"CHEBI:132426","l":"chondrochloren A","na":2,"nb":1,"a":[["EC%3A4.1.1.129","1'-carboxy-chondrochloren decarboxylase"],["RHEA%3A81491","1'-carboxy-chondrochloren A + FAD + 2 H(+) = chondrochloren A + FADH2 + CO2"]],"b":[["polyketides/chondrochloren-a.yaml","chondrochloren A"]]},{"id":"CHEBI:134612","l":"staphyloferrin B","na":2,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_134612","requires staphyloferrin B"],["proteintraitsmech%3ABIOLIP_SE8","SE8-binding site"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"]]},{"id":"CHEBI:135511","l":"rebeccamycin","na":2,"nb":1,"a":[["EC%3A2.1.1.164","demethylrebeccamycin-D-glucose O-methyltransferase"],["RHEA%3A27353","4'-demethylrebeccamycin + S-adenosyl-L-methionine = rebeccamycin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["alkaloids/rebeccamycin.yaml","rebeccamycin"]]},{"id":"CHEBI:137562","l":"(+)-eremophilene","na":2,"nb":1,"a":[["EC%3A4.2.3.164","(+)-eremophilene synthase"],["RHEA%3A52804","(2E,6E)-farnesyl diphosphate = (+)-eremophilene + diphosphate"]],"b":[["terpenoids/eremophilene.yaml","(+)-eremophilene"]]},{"id":"CHEBI:138165","l":"(+)-(2S,3R,9R)-pristinol","na":2,"nb":1,"a":[["EC%3A4.2.3.182","pristinol synthase"],["RHEA%3A54372","(2E,6E)-farnesyl diphosphate + H2O = (+)-(2S,3R,9R)-pristinol + diphosphate"]],"b":[["terpenoids/2s-3r-9r-pristinol.yaml","(+)-(2S,3R,9R)-pristinol"]]},{"id":"CHEBI:139480","l":"(+)-O-methylkolavelool","na":2,"nb":1,"a":[["EC%3A2.1.1.347","(+)-O-methylkolavelool synthase"],["RHEA%3A55968","(+)-kolavelool + S-adenosyl-L-methionine = (+)-O-methylkolavelool + S-adenosyl-L-homocysteine + H(+)"]],"b":[["terpenoids/o-methylkolavelool.yaml","(+)-O-methylkolavelool"]]},{"id":"CHEBI:145066","l":"stemphyloxin II","na":2,"nb":1,"a":[["RHEA%3A61904","betaenone A + NADPH + O2 + H(+) = stemphyloxin II + NADP(+) + H2O"],["RHEA%3A62716","stemphyloxin I = stemphyloxin II"]],"b":[["polyketides/stemphyloxin-ii.yaml","stemphyloxin II"]]},{"id":"CHEBI:145070","l":"stemphyloxin I","na":2,"nb":1,"a":[["RHEA%3A62712","betaenone C + NADPH + O2 + H(+) = stemphyloxin I + NADP(+) + H2O"],["RHEA%3A62716","stemphyloxin I = stemphyloxin II"]],"b":[["polyketides/stemphyloxin-i.yaml","stemphyloxin I"]]},{"id":"CHEBI:146153","l":"ilicicolin B","na":2,"nb":1,"a":[["RHEA%3A63084","ilicicolin B + FADH2 + chloride + O2 = ilicicolin A + FAD + 2 H2O + H(+)"],["RHEA%3A63080","ilicicolinate B + AH2 + ATP = ilicicolin B + A + AMP + diphosphate"]],"b":[["unclassified/ilicicolin-b.yaml","ilicicolin B"]]},{"id":"CHEBI:155912","l":"aculene C","na":2,"nb":1,"a":[["RHEA%3A65108","aculene C + L-prolyl-[peptidyl-carrier protein] = aculene A + holo-[peptidyl-carrier protein]"],["RHEA%3A65112","aculene D + 2-oxoglutarate + O2 = aculene C + succinate + CO2 + H2O"]],"b":[["terpenoids/aculene-c.yaml","aculene C"]]},{"id":"CHEBI:15956","l":"biotin","na":2,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15956","requires biotin"],["proteintraitsmech%3ABIOLIP_BTN","BTN-binding site"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"CHEBI:16441","l":"linamarin","na":2,"nb":1,"a":[["EC%3A2.4.1.63","linamarin synthase"],["RHEA%3A20009","2-hydroxy-2-methylpropanenitrile + UDP-alpha-D-glucose = linamarin + UDP + H(+)"]],"b":[["amino_acids_and_peptides/linamarin.yaml","linamarin"]]},{"id":"CHEBI:17630","l":"kanamycin A","na":2,"nb":1,"a":[["MCSA%3A647","kanamycin nucleotidyltransferase"],["proteintraitsmech%3ABIOLIP_KAN","KAN-binding site"]],"b":[["carbohydrates/kanamycin-a.yaml","kanamycin A"]]},{"id":"CHEBI:17695","l":"casbene","na":2,"nb":1,"a":[["EC%3A4.2.3.8","casbene synthase"],["RHEA%3A14901","(2E,6E,10E)-geranylgeranyl diphosphate = casbene + diphosphate"]],"b":[["terpenoids/casbene.yaml","casbene"]]},{"id":"CHEBI:17939","l":"puromycin","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_PUY","PUY-binding site"]],"b":[["carbohydrates/puromycin.yaml","puromycin"]]},{"id":"CHEBI:2504","l":"aflatoxin B1","na":2,"nb":1,"a":[["EC%3A1.14.14.117","aflatoxin B synthase"],["RHEA%3A35759","8-O-methylsterigmatocystin + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = aflatoxin B1 + methanol + 2 oxidized [NADPH--hemoprotein reductase] + CO2 + H2O + 2 H(+)"]],"b":[["unclassified/aflatoxin-b1.yaml","aflatoxin B1"]]},{"id":"CHEBI:27826","l":"(S)-4-hydroxymandelonitrile β-D-glucoside","na":2,"nb":1,"a":[["EC%3A2.4.1.85","cyanohydrin beta-glucosyltransferase"],["RHEA%3A12853","(S)-4-hydroxymandelonitrile + UDP-alpha-D-glucose = dhurrin + UDP + H(+)"]],"b":[["amino_acids_and_peptides/s-4-hydroxymandelonitrile-d-glucoside.yaml","(S)-4-hydroxymandelonitrile β-D-glucoside"]]},{"id":"CHEBI:28283","l":"capsidiol","na":2,"nb":1,"a":[["EC%3A1.14.14.149","5-epiaristolochene 1,3-dihydroxylase"],["RHEA%3A28226","(+)-5-epi-aristolochene + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = capsidiol + 2 oxidized [NADPH--hemoprotein reductase] + 2 H2O + 2 H(+)"]],"b":[["terpenoids/capsidiol.yaml","capsidiol"]]},{"id":"CHEBI:29519","l":"","na":2,"nb":1,"a":[["EC%3A4.2.3.42","aphidicolan-16beta-ol synthase"],["RHEA%3A26213","9alpha-copalyl diphosphate + H2O = aphidicolan-16beta-ol + diphosphate"]],"b":[["terpenoids/aphidicolan-16-ol.yaml","aphidicolan-16β-ol"]]},{"id":"CHEBI:29673","l":"rifamycin SV","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]],"b":[["polyketides/rifamycin-sv.yaml","rifamycin SV"]]},{"id":"CHEBI:38229","l":"solanapyrone A","na":2,"nb":1,"a":[["EC%3A5.5.1.20","prosolanapyrone-III cycloisomerase"],["RHEA%3A31683","prosolanapyrone III = (-)-solanapyrone A"]],"b":[["polyketides/solanapyrone-a.yaml","solanapyrone A"]]},{"id":"CHEBI:42452","l":"formycin A","na":2,"nb":1,"a":[["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"],["proteintraitsmech%3ABIOLIP_FMC","FMC-binding site"]],"b":[["alkaloids/formycin-a.yaml","formycin A"]]},{"id":"CHEBI:48209","l":"aflatoxin B2","na":2,"nb":1,"a":[["EC%3A1.14.14.117","aflatoxin B synthase"],["RHEA%3A35763","8-O-methyldihydrosterigmatocystin + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = aflatoxin B2 + methanol + 2 oxidized [NADPH--hemoprotein reductase] + CO2 + H2O + 2 H(+)"]],"b":[["polyketides/aflatoxin-b2.yaml","aflatoxin B2"]]},{"id":"CHEBI:52317","l":"thalianol","na":2,"nb":1,"a":[["EC%3A5.4.99.31","thalianol synthase"],["RHEA%3A26160","(S)-2,3-epoxysqualene = thalianol"]],"b":[["terpenoids/thalianol.yaml","thalianol"]]},{"id":"CHEBI:61345","l":"chrysobactin","na":2,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_61345","requires chrysobactin"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["amino_acids_and_peptides/chrysobactin.yaml","chrysobactin"]]},{"id":"CHEBI:63465","l":"marneral","na":2,"nb":1,"a":[["EC%3A5.4.99.53","marneral synthase"],["RHEA%3A31875","(S)-2,3-epoxysqualene = marneral"]],"b":[["terpenoids/marneral.yaml","marneral"]]},{"id":"CHEBI:63702","l":"avermitilol","na":2,"nb":1,"a":[["EC%3A4.2.3.96","avermitilol synthase"],["RHEA%3A32023","(2E,6E)-farnesyl diphosphate + H2O = avermitilol + diphosphate"]],"b":[["terpenoids/avermitilol.yaml","avermitilol"]]},{"id":"CHEBI:63703","l":"(−)-δ-cadinene","na":2,"nb":1,"a":[["EC%3A4.2.3.97","(-)-delta-cadinene synthase"],["RHEA%3A32015","(2E,6E)-farnesyl diphosphate = (-)-delta-cadinene + diphosphate"]],"b":[["terpenoids/cadinene.yaml","(−)-δ-cadinene"]]},{"id":"CHEBI:63704","l":"(+)-Τ-muurolol","na":2,"nb":1,"a":[["EC%3A4.2.3.98","(+)-T-muurolol synthase"],["RHEA%3A32011","(2E,6E)-farnesyl diphosphate + H2O = (+)-T-muurolol + diphosphate"]],"b":[["terpenoids/muurolol.yaml","(+)-Τ-muurolol"]]},{"id":"CHEBI:64268","l":"","na":2,"nb":1,"a":[["EC%3A2.1.1.254","erythromycin 3'-O-methyltransferase"],["RHEA%3A32647","erythromycin C + S-adenosyl-L-methionine = erythromycin A + S-adenosyl-L-homocysteine + H(+)"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"CHEBI:6570","l":"lupeol","na":2,"nb":1,"a":[["EC%3A5.4.99.41","lupeol synthase"],["RHEA%3A31383","(S)-2,3-epoxysqualene = lupeol"]],"b":[["terpenoids/lupeol.yaml","lupeol"]]},{"id":"CHEBI:73237","l":"(−)-noscapine","na":2,"nb":1,"a":[["EC%3A1.1.1.415","noscapine synthase"],["RHEA%3A57404","narcotine hemiacetal + NAD(+) = noscapine + NADH + H(+)"]],"b":[["alkaloids/noscapine.yaml","(−)-noscapine"]]},{"id":"CHEBI:77772","l":"ilicicolin H","na":2,"nb":1,"a":[["RHEA%3A64568","3-[(2E,4E,8S,10E,12Z)-4,8-dimethyltetradeca-2,4,10,12-tetraenoyl]-4-hydroxy-5-(4-hydroxyphenyl)-1,2-dihydropyridin-2-one = ilicicolin H"],["RHEA%3A64564","8-epi-ilicicolin H = ilicicolin H"]],"b":[["alkaloids/ilicicolin-h.yaml","ilicicolin H"]]},{"id":"CHEBI:80049","l":"coelichelin","na":2,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_80049","requires coelichelin"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["amino_acids_and_peptides/coelichelin.yaml","coelichelin"]]},{"id":"CHEBI:82799","l":"(R)-nephthenol","na":2,"nb":1,"a":[["EC%3A4.2.3.149","nephthenol synthase"],["RHEA%3A42992","(2E,6E,10E)-geranylgeranyl diphosphate + H2O = (R)-nephthenol + diphosphate"]],"b":[["terpenoids/r-nephthenol.yaml","(R)-nephthenol"]]},{"id":"CHEBI:84711","l":"staphyloferrin A","na":2,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_84711","requires staphyloferrin A"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["unclassified/staphyloferrin-a.yaml","staphyloferrin A"]]},{"id":"CHEBI:86012","l":"oxetanocin A","na":2,"nb":1,"a":[["EC%3A3.1.3.112","4'-phosphooxetanocin A phosphatase"],["RHEA%3A81367","4'-phosphooxetanocin A + H2O = oxetanocin A + phosphate"]],"b":[["carbohydrates/oxetanocin-a.yaml","oxetanocin A"]]},{"id":"NCBITaxon:105351","l":"Aspergillus awamori","na":2,"nb":1,"a":[["PROSITE%3APS00820","Glucoamylase active site region signature"],["TED%3AAF-A0A401KM36-F1-model_v4_TED03","TED novel fold AF-A0A401KM36-F1-model_v4_TED03"]],"b":[["alkaloids/aspergillin-pz.yaml","aspergillin PZ"]]},{"id":"NCBITaxon:105696","l":"Epicoccum nigrum","na":1,"nb":2,"a":[["TED%3AAF-A0A1Y2LQ80-F1-model_v4_TED02","TED novel fold AF-A0A1Y2LQ80-F1-model_v4_TED02"]],"b":[["polyketides/epipyrone-a.yaml","epipyrone A"],["terpenoids/carotene.yaml","β-carotene"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":1,"nb":2,"a":[["TED%3AAF-A0A367PA30-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A367PA30-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/cupriachelin.yaml","cupriachelin"],["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"]]},{"id":"NCBITaxon:1214568","l":"Diaporthe amygdali","na":1,"nb":2,"a":[["Pfam%3APF05704","Capsular polysaccharide synthesis protein"]],"b":[["terpenoids/5-9-10-labda-8-20-13-dien-15-yl-diphosphate.yaml","5α,9α,10β-labda-8(20),13-dien-15-yl diphosphate"],["terpenoids/phyllocladan-16-ol.yaml","phyllocladan-16α-ol"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":2,"nb":1,"a":[["Pfam%3APF22538","Hexaprenyl diphosphate synthase, small subunit"],["PROSITE%3APS01066","Undecaprenyl pyrophosphate synthase family signature"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:1278073","l":"","na":2,"nb":1,"a":[["TED%3AAF-L7U5Z3-F1-model_v4_TED02","TED novel fold AF-L7U5Z3-F1-model_v4_TED02"],["TED%3AAF-L7UEI7-F1-model_v4_TED03","TED novel fold AF-L7UEI7-F1-model_v4_TED03"]],"b":[["polyketides/phenalamide-a2.yaml","phenalamide A2"]]},{"id":"NCBITaxon:1288362","l":"Actinoplanes sp. ATCC 53533","na":2,"nb":1,"a":[["TED%3AAF-A0A428XH31-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A428XH31-F1-model_v4_TED01"],["TED%3AAF-A0A428XQY1-F1-model_v4_TED01","TED novel fold AF-A0A428XQY1-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/uk-68-597.yaml","UK-68,597"]]},{"id":"NCBITaxon:1353533","l":"Pseudoalteromonas luteoviolacea 2ta16","na":2,"nb":1,"a":[["TED%3AAF-V4HNX8-F1-model_v4_TED01","TED novel fold AF-V4HNX8-F1-model_v4_TED01"],["TED%3AAF-V4JDU9-F1-model_v4_TED01","TED novel fold AF-V4JDU9-F1-model_v4_TED01"]],"b":[["shikimates_and_phenylpropanoids/pentabromopseudilin.yaml","pentabromopseudilin"]]},{"id":"NCBITaxon:1392248","l":"Aspergillus campestris (strain IBT 28561)","na":2,"nb":1,"a":[["Pfam%3APF11954","Domain of unknown function (DUF3471)"],["TED%3AAF-A0A2I1D498-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I1D498-F1-model_v4_TED01"]],"b":[["shikimates_and_phenylpropanoids/chlorflavonin.yaml","chlorflavonin"]]},{"id":"NCBITaxon:1449976","l":"Kutzneria albida DSM 43870","na":1,"nb":2,"a":[["TED%3AAF-W5WK35-F1-model_v4_TED01","TED novel fold AF-W5WK35-F1-model_v4_TED01"]],"b":[["carbohydrates/huimycin.yaml","huimycin"],["unclassified/aculeximycin.yaml","aculeximycin"]]},{"id":"NCBITaxon:1450533","l":"Aspergillus niger CBS 101883","na":1,"nb":2,"a":[["TED%3AAF-A0A319AKL5-F1-model_v4_TED01","TED novel fold AF-A0A319AKL5-F1-model_v4_TED01"]],"b":[["polyketides/campyrone-b.yaml","campyrone B"],["polyketides/pyrophen.yaml","pyrophen"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":2,"nb":1,"a":[["PROSITE%3APS01120","Urease nickel ligands signature"],["PROSITE%3APS00145","Urease active site"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:148305","l":"Pyricularia grisea","na":1,"nb":2,"a":[["TED%3AAF-A0A6P8AZV3-F1-model_v4_TED01","TED novel fold AF-A0A6P8AZV3-F1-model_v4_TED01"]],"b":[["alkaloids/pyrichalasin-h.yaml","pyrichalasin H"],["polyketides/terrestric-acid.yaml","terrestric acid"]]},{"id":"NCBITaxon:1519471","l":"Streptomyces sp. NRRL S-4","na":1,"nb":2,"a":[["TED%3AAF-A0A0N0YGV9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0N0YGV9-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/thiostreptamide-s4.yaml","thiostreptamide S4"],["polyketides/venturicidin-a.yaml","venturicidin A"]]},{"id":"NCBITaxon:161398","l":"Pseudoalteromonas phenolica","na":2,"nb":1,"a":[["TED%3AAF-A0A4Q7IPD1-F1-model_v4_TED01","TED novel fold AF-A0A4Q7IPD1-F1-model_v4_TED01"],["TED%3AAF-A0A4Q7IRU1-F1-model_v4_TED01","TED novel fold AF-A0A4Q7IRU1-F1-model_v4_TED01"]],"b":[["shikimates_and_phenylpropanoids/bromophene.yaml","bromophene"]]},{"id":"NCBITaxon:164546","l":"Cupriavidus taiwanensis","na":2,"nb":1,"a":[["TED%3AAF-A0A375CFL3-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A375CFL3-F1-model_v4_TED04"],["TED%3AAF-A0A375EJW3-F1-model_v4_TED03","TED novel fold AF-A0A375EJW3-F1-model_v4_TED03"]],"b":[["amino_acids_and_peptides/taiwachelin.yaml","taiwachelin"]]},{"id":"NCBITaxon:1654360","l":"Photobacterium galatheae","na":2,"nb":1,"a":[["TED%3AAF-A0A066RSN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A066RSN6-F1-model_v4_TED01"],["TED%3AAF-A0A066RLQ8-F1-model_v4_TED01","TED novel fold AF-A0A066RLQ8-F1-model_v4_TED01"]],"b":[["alkaloids/holomycin.yaml","holomycin"]]},{"id":"NCBITaxon:179408","l":"Oscillatoria nigro-viridis PCC 7112","na":2,"nb":1,"a":[["TED%3AAF-K9VAQ4-F1-model_v4_TED02","TED highly-symmetric fold AF-K9VAQ4-F1-model_v4_TED02"],["TED%3AAF-K9VBA8-F1-model_v4_TED02","TED novel fold AF-K9VBA8-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/viridisamide-a.yaml","viridisamide A"]]},{"id":"NCBITaxon:182096","l":"Aspergillus chevalieri","na":1,"nb":2,"a":[["TED%3AAF-A0A7R7VIB2-F1-model_v4_TED01","TED novel fold AF-A0A7R7VIB2-F1-model_v4_TED01"]],"b":[["polyketides/flavoglaucin.yaml","flavoglaucin"],["polyketides/sterigmatocystin.yaml","sterigmatocystin"]]},{"id":"NCBITaxon:1883078","l":"Dentipellis sp. KUC8613","na":2,"nb":1,"a":[["TED%3AAF-A0A5B1QTZ2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A5B1QTZ2-F1-model_v4_TED03"],["TED%3AAF-A0A5B1QFU0-F1-model_v4_TED02","TED novel fold AF-A0A5B1QFU0-F1-model_v4_TED02"]],"b":[["terpenoids/cyatha-3-12-diene.yaml","(-)-Cyatha-3,12-diene"]]},{"id":"NCBITaxon:1896","l":"Streptomyces bikiniensis","na":1,"nb":2,"a":[["Pfam%3APF00908","dTDP-4-dehydrorhamnose 3,5-epimerase"]],"b":[["carbohydrates/streptomycin.yaml","streptomycin"],["polyketides/chalcomycin-a.yaml","chalcomycin A"]]},{"id":"NCBITaxon:1921","l":"Streptomyces olivaceoviridis","na":1,"nb":2,"a":[["Pfam%3APF01356","Alpha amylase inhibitor"]],"b":[["polyketides/resistoflavine.yaml","resistoflavine"],["polyketides/resistomycin.yaml","resistomycin"]]},{"id":"NCBITaxon:1933","l":"Streptoalloteichus tenebrarius","na":2,"nb":1,"a":[["Pfam%3APF16861","Carbamoyltransferase C-terminus"],["Pfam%3APF02543","Carbamoyltransferase N-terminus"]],"b":[["carbohydrates/tobramycin.yaml","tobramycin"]]},{"id":"NCBITaxon:205918","l":"Pseudomonas syringae pv. syringae B728a","na":1,"nb":2,"a":[["Pfam%3APF15457","Type III T3SS secreted effector HopW1-1/HopPmaA"]],"b":[["alkaloids/secimide.yaml","secimide"],["unclassified/syringomycin.yaml","syringomycin"]]},{"id":"NCBITaxon:216595","l":"","na":2,"nb":1,"a":[["Pfam%3APF04996","Succinylarginine dihydrolase"],["TED%3AAF-A0A0G4E5V4-F1-model_v4_TED01","TED novel fold AF-A0A0G4E5V4-F1-model_v4_TED01"]],"b":[["unclassified/viscosin.yaml","viscosin"]]},{"id":"NCBITaxon:229535","l":"Penicillium nordicum","na":2,"nb":1,"a":[["TED%3AAF-A0A0M8NW73-F1-model_v4_TED02","TED novel fold AF-A0A0M8NW73-F1-model_v4_TED02"],["TED%3AAF-A0A0N0RXF0-F1-model_v4_TED02","TED novel fold AF-A0A0N0RXF0-F1-model_v4_TED02"]],"b":[["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"]]},{"id":"NCBITaxon:230091","l":"Micromonospora endolithica","na":1,"nb":2,"a":[["TED%3AAF-A0A3A9ZCA3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3A9ZCA3-F1-model_v4_TED02"]],"b":[["polyketides/loseolamycin-a1.yaml","loseolamycin A1"],["polyketides/loseolamycin-a2.yaml","loseolamycin A2"]]},{"id":"NCBITaxon:234621","l":"Rhodococcus erythropolis PR4","na":1,"nb":2,"a":[["TED%3AAF-C0ZLI2-F1-model_v4_TED01","TED novel fold AF-C0ZLI2-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/heterobactin-a.yaml","heterobactin A"],["amino_acids_and_peptides/heterobactin-s2.yaml","heterobactin S2"]]},{"id":"NCBITaxon:237631","l":"Ustilago maydis (strain 521 / FGSC 9021)","na":2,"nb":1,"a":[["TED%3AAF-A0A0D1E1G8-F1-model_v4_TED01","TED novel fold AF-A0A0D1E1G8-F1-model_v4_TED01"],["TED%3AAF-A0A0D1E4C0-F1-model_v4_TED02","TED novel fold AF-A0A0D1E4C0-F1-model_v4_TED02"]],"b":[["fatty_acids/ustilagic-acid.yaml","ustilagic acid"]]},{"id":"NCBITaxon:2607326","l":"Streptomonospora sp. PA3","na":2,"nb":1,"a":[["TED%3AAF-A0A6N8GAL7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8GAL7-F1-model_v4_TED01"],["TED%3AAF-A0A6N8GG78-F1-model_v4_TED01","TED novel fold AF-A0A6N8GG78-F1-model_v4_TED01"]],"b":[["polyketides/persiamycin-a.yaml","persiamycin A"]]},{"id":"NCBITaxon:264445","l":"Streptomyces hygroscopicus subsp. limoneus","na":1,"nb":2,"a":[["TED%3AAF-A0A0S2PAJ8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0S2PAJ8-F1-model_v4_TED03"]],"b":[["carbohydrates/validamycin-a-2.yaml","validamycin A"],["carbohydrates/validamycin-a.yaml","validamycin A"]]},{"id":"NCBITaxon:272123","l":"","na":2,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_FbnM","FbnM-type Dmaq biosynthesis peroxidase subunit family"],["TED%3AAF-K9ZFU9-F1-model_v4_TED01","TED highly-symmetric fold AF-K9ZFU9-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/anachelin.yaml","anachelin"]]},{"id":"NCBITaxon:272559","l":"","na":2,"nb":1,"a":[["Pfam%3APF16355","Domain of unknown function (DUF4982)"],["Pfam%3APF14229","Domain of unknown function (DUF4332)"]],"b":[["fatty_acids/galactosylceramide.yaml","α-galactosylceramide"]]},{"id":"NCBITaxon:316274","l":"Herpetosiphon aurantiacus DSM 785","na":1,"nb":2,"a":[["TED%3AAF-A9AZN6-F1-model_v4_TED02","TED highly-symmetric fold AF-A9AZN6-F1-model_v4_TED02"]],"b":[["alkaloids/auriculamide.yaml","auriculamide"],["terpenoids/o-methylkolavelool.yaml","(+)-O-methylkolavelool"]]},{"id":"NCBITaxon:318","l":"Pseudomonas savastanoi pv. glycinea","na":2,"nb":1,"a":[["Pfam%3APF05394","Avirulence protein"],["TED%3AAF-A0A3M5VJX5-F1-model_v4_TED01","TED novel fold AF-A0A3M5VJX5-F1-model_v4_TED01"]],"b":[["polyketides/coronatine.yaml","coronatine"]]},{"id":"NCBITaxon:318829","l":"Magnaporthe oryzae","na":2,"nb":1,"a":[["TED%3AAF-A0A4P7NAU2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P7NAU2-F1-model_v4_TED01"],["TED%3AAF-A0A4P7MZB7-F1-model_v4_TED02","TED novel fold AF-A0A4P7MZB7-F1-model_v4_TED02"]],"b":[["polyketides/nectriapyrone.yaml","nectriapyrone"]]},{"id":"NCBITaxon:322710","l":"Azotobacter vinelandii DJ","na":2,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_Orn_monoox","Metallophore-associated ornithine N5-monooxygenase family"],["proteintraitsmech%3AELIFE109154_PvdP","Pyoverdine chromophore maturation tyrosinase family"]],"b":[["amino_acids_and_peptides/azotobactin-d.yaml","azotobactin D"]]},{"id":"NCBITaxon:333849","l":"","na":2,"nb":1,"a":[["Pfam%3APF08546","Ketopantoate reductase PanE/ApbA C terminal"],["Pfam%3APF02558","Ketopantoate reductase PanE/ApbA"]],"b":[["amino_acids_and_peptides/enterocin-a.yaml","enterocin A"]]},{"id":"NCBITaxon:338584","l":"Polymorphospora rubra","na":2,"nb":1,"a":[["TED%3AAF-A0A810NDK9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A810NDK9-F1-model_v4_TED01"],["TED%3AAF-A0A810N2K6-F1-model_v4_TED01","TED novel fold AF-A0A810N2K6-F1-model_v4_TED01"]],"b":[["terpenoids/trehangelin.yaml","trehangelin"]]},{"id":"NCBITaxon:33899","l":"Streptomyces galilaeus","na":1,"nb":2,"a":[["Pfam%3APF21036","Erythromycin biosynthesis protein CIII-like, N-terminal domain"]],"b":[["polyketides/aclacinomycin.yaml","aclacinomycin"],["polyketides/cinerubin-b.yaml","cinerubin B"]]},{"id":"NCBITaxon:339670","l":"Burkholderia ambifaria AMMD","na":1,"nb":2,"a":[["Pfam%3APF11004","3-deoxy-D-manno-oct-2-ulosonic acid (Kdo) hydroxylase"]],"b":[["alkaloids/cepaciachelin.yaml","cepaciachelin"],["polyketides/enacyloxin-iia.yaml","enacyloxin IIa"]]},{"id":"NCBITaxon:348901","l":"Cercospora zeina","na":2,"nb":1,"a":[["TED%3AAF-A0A2I0RIM7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I0RIM7-F1-model_v4_TED01"],["TED%3AAF-A0A2I0RWG4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I0RWG4-F1-model_v4_TED01"]],"b":[["polyketides/cercosporin-2.yaml","cercosporin"]]},{"id":"NCBITaxon:349521","l":"Hahella chejuensis KCTC 2396","na":2,"nb":1,"a":[["TED%3AAF-Q2SFS2-F1-model_v4_TED01","TED novel fold AF-Q2SFS2-F1-model_v4_TED01"],["TED%3AAF-Q2SI43-F1-model_v4_TED03","TED novel fold AF-Q2SI43-F1-model_v4_TED03"]],"b":[["alkaloids/prodigiosin-2.yaml","prodigiosin"]]},{"id":"NCBITaxon:36746","l":"Pseudomonas cichorii","na":1,"nb":2,"a":[["TED%3AAF-A0A3M4VH83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M4VH83-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/cichofactin-a.yaml","cichofactin A"],["amino_acids_and_peptides/cichofactin-b.yaml","cichofactin B"]]},{"id":"NCBITaxon:3755","l":"Prunus dulcis","na":2,"nb":1,"a":[["PROSITE%3APS00305","11-S plant seed storage proteins signature"],["TED%3AAF-A0A5E4FP94-F1-model_v4_TED01","TED novel fold AF-A0A5E4FP94-F1-model_v4_TED01"]],"b":[["shikimates_and_phenylpropanoids/4-hydroxy-3-prenylbenzoic-acid.yaml","4-hydroxy-3-prenylbenzoic acid"]]},{"id":"NCBITaxon:377629","l":"Teredinibacter turnerae T7901","na":1,"nb":2,"a":[["TED%3AAF-C5BKS7-F1-model_v4_TED02","TED novel fold AF-C5BKS7-F1-model_v4_TED02"]],"b":[["polyketides/tartrolon-d.yaml","tartrolon D"],["polyketides/tartrolon-e.yaml","tartrolon E"]]},{"id":"NCBITaxon:38300","l":"Streptomyces pristinaespiralis","na":1,"nb":2,"a":[["Pfam%3APF12323","Helix-turn-helix domain"]],"b":[["amino_acids_and_peptides/pristinin-a3.yaml","pristinin A3"],["terpenoids/2s-3r-9r-pristinol.yaml","(+)-(2S,3R,9R)-pristinol"]]},{"id":"NCBITaxon:38313","l":"Shewanella algae","na":2,"nb":1,"a":[["TED%3AAF-A0A1S2T8W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S2T8W3-F1-model_v4_TED01"],["TED%3AAF-A0A8A5EFG1-F1-model_v4_TED02","TED novel fold AF-A0A8A5EFG1-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/avaroferrin.yaml","avaroferrin"]]},{"id":"NCBITaxon:413071","l":"Trichoderma virens Gv29-8","na":1,"nb":2,"a":[["Pfam%3APF07249","Cerato-platanin"]],"b":[["polyketides/trichoxide.yaml","trichoxide"],["unclassified/gliovirin.yaml","gliovirin"]]},{"id":"NCBITaxon:42881","l":"Streptomyces chromofuscus","na":1,"nb":2,"a":[["TED%3AAF-A0A7M2T2Z7-F1-model_v4_TED01","TED novel fold AF-A0A7M2T2Z7-F1-model_v4_TED01"]],"b":[["alkaloids/indigoidine.yaml","indigoidine"],["polyketides/herboxidiene.yaml","herboxidiene"]]},{"id":"NCBITaxon:436515","l":"Variovorax boronicumulans","na":1,"nb":2,"a":[["TED%3AAF-A0A250DMB0-F1-model_v4_TED01","TED novel fold AF-A0A250DMB0-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/variochelin-a.yaml","variochelin A"],["amino_acids_and_peptides/variochelin-b.yaml","variochelin B"]]},{"id":"NCBITaxon:441959","l":"Talaromyces stipitatus ATCC 10500","na":1,"nb":2,"a":[["Pfam%3APF26719","ATPase synthesis protein 25, C-terminal TPR repeats"]],"b":[["polyketides/duclauxin.yaml","duclauxin"],["shikimates_and_phenylpropanoids/stipitatic-acid.yaml","stipitatic acid"]]},{"id":"NCBITaxon:446","l":"Legionella pneumophila","na":2,"nb":1,"a":[["Pfam%3APF14860","DrrA phosphatidylinositol 4-phosphate binding domain"],["TED%3AAF-A0A822WCM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A822WCM6-F1-model_v4_TED01"]],"b":[["fatty_acids/lipopolysaccharide.yaml","lipopolysaccharide"]]},{"id":"NCBITaxon:45151","l":"Pyrenophora tritici-repentis","na":2,"nb":1,"a":[["TED%3AAF-A0A2W1ECP7-F1-model_v4_TED01","TED novel fold AF-A0A2W1ECP7-F1-model_v4_TED01"],["TED%3AAF-A0A834SF78-F1-model_v4_TED01","TED novel fold AF-A0A834SF78-F1-model_v4_TED01"]],"b":[["unclassified/triticone-b.yaml","triticone B"]]},{"id":"NCBITaxon:4558","l":"Sorghum bicolor","na":1,"nb":2,"a":[["TED%3AAF-A0A1W0W5T3-F1-model_v4_TED02","TED novel fold AF-A0A1W0W5T3-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/s-4-hydroxymandelonitrile-d-glucoside.yaml","(S)-4-hydroxymandelonitrile β-D-glucoside"],["shikimates_and_phenylpropanoids/alternariol.yaml","alternariol"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":2,"nb":1,"a":[["PROSITE%3APS00820","Glucoamylase active site region signature"],["TED%3AAF-A0A7I9G6Y3-F1-model_v4_TED02","TED novel fold AF-A0A7I9G6Y3-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":2,"nb":1,"a":[["Pfam%3APF07833","Copper amine oxidase N-terminal domain"],["TED%3AAF-A0A447L715-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A447L715-F1-model_v4_TED02"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:578457","l":"","na":2,"nb":1,"a":[["TED%3AAF-F8NT94-F1-model_v4_TED01","TED highly-symmetric fold AF-F8NT94-F1-model_v4_TED01"],["TED%3AAF-F8NMD8-F1-model_v4_TED01","TED novel fold AF-F8NMD8-F1-model_v4_TED01"]],"b":[["terpenoids/ent-kauren-16alpha-ol.yaml","ent-kauren-16alpha-ol"]]},{"id":"NCBITaxon:58291","l":"Rhizopus microsporus","na":2,"nb":1,"a":[["TED%3AAF-A0A1X0RNA5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1X0RNA5-F1-model_v4_TED03"],["TED%3AAF-A0A1X0S5N4-F1-model_v4_TED01","TED novel fold AF-A0A1X0S5N4-F1-model_v4_TED01"]],"b":[["unclassified/rhizoxin-a.yaml","rhizoxin A"]]},{"id":"NCBITaxon:587753","l":"Pseudomonas chlororaphis","na":2,"nb":1,"a":[["TED%3AAF-A0A8A9Z2C4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A8A9Z2C4-F1-model_v4_TED03"],["TED%3AAF-A0A0A6DEM6-F1-model_v4_TED01","TED novel fold AF-A0A0A6DEM6-F1-model_v4_TED01"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"NCBITaxon:60894","l":"Saccharopolyspora spinosa","na":1,"nb":2,"a":[["Pfam%3APF03559","NDP-hexose 2,3-dehydratase"]],"b":[["polyketides/a83543a.yaml","A83543A"],["polyketides/spinosyn-d.yaml","spinosyn D"]]},{"id":"NCBITaxon:62101","l":"Candidatus Endobugula sertula","na":1,"nb":2,"a":[["TED%3AAF-A0A1D2QPY2-F1-model_v4_TED01","TED novel fold AF-A0A1D2QPY2-F1-model_v4_TED01"]],"b":[["polyketides/bryostatin-2.yaml","bryostatin"],["polyketides/bryostatin.yaml","bryostatin"]]},{"id":"NCBITaxon:634771","l":"Chitinophaga eiseniae","na":1,"nb":2,"a":[["TED%3AAF-A0A847SE20-F1-model_v4_TED01","TED novel fold AF-A0A847SE20-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/pentacitidin-a.yaml","pentacitidin A"],["amino_acids_and_peptides/pentacitidin-b.yaml","pentacitidin B"]]},{"id":"NCBITaxon:643403","l":"Streptomyces sp. MK730-62F2","na":1,"nb":2,"a":[["Pfam%3APF14269","Arylsulfotransferase (ASST)"]],"b":[["carbohydrates/caprazamycin-aglycon.yaml","caprazamycin aglycon"],["carbohydrates/caprazamycin.yaml","caprazamycin"]]},{"id":"NCBITaxon:65","l":"Herpetosiphon aurantiacus","na":1,"nb":2,"a":[["Pfam%3APF09520","Type II restriction endonuclease, HinfI"]],"b":[["alkaloids/auriculamide.yaml","auriculamide"],["terpenoids/o-methylkolavelool.yaml","(+)-O-methylkolavelool"]]},{"id":"NCBITaxon:6573","l":"Mizuhopecten yessoensis","na":2,"nb":1,"a":[["TED%3AAF-A0A210PVN9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A210PVN9-F1-model_v4_TED02"],["TED%3AAF-A0A210PMU5-F1-model_v4_TED01","TED novel fold AF-A0A210PMU5-F1-model_v4_TED01"]],"b":[["alkaloids/gonyautoxin-2.yaml","gonyautoxin 2"]]},{"id":"NCBITaxon:66431","l":"Streptomyces thioluteus","na":1,"nb":2,"a":[["Pfam%3APF11583","P-aminobenzoate N-oxygenase AurF"]],"b":[["alkaloids/sf2768.yaml","SF2768"],["polyketides/aureothin.yaml","aureothin"]]},{"id":"NCBITaxon:6848","l":"Carcinoscorpius rotundicauda","na":1,"nb":2,"a":[["Pfam%3APF02035","Coagulin"]],"b":[["alkaloids/neosaxitoxin.yaml","neosaxitoxin"],["alkaloids/saxitoxin.yaml","saxitoxin"]]},{"id":"NCBITaxon:7787","l":"Tetronarce californica","na":2,"nb":1,"a":[["PROSITE%3APS00405","43 Kd postsynaptic protein signature"],["Pfam%3APF10579","Rapsyn N-terminal myristoylation and linker region"]],"b":[["alkaloids/huperzine-a.yaml","huperzine A"]]},{"id":"NCBITaxon:78410","l":"Neonectria ditissima","na":1,"nb":2,"a":[["TED%3AAF-A0A0P7AKS8-F1-model_v4_TED02","TED novel fold AF-A0A0P7AKS8-F1-model_v4_TED02"]],"b":[["unclassified/colletochlorin-b.yaml","Colletochlorin B"],["unclassified/colletorin-b.yaml","Colletorin B"]]},{"id":"NCBITaxon:79329","l":"Chitinophaga pinensis","na":2,"nb":1,"a":[["TED%3AAF-A0A5C6LK20-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C6LK20-F1-model_v4_TED01"],["TED%3AAF-A0A5C6LKB6-F1-model_v4_TED01","TED novel fold AF-A0A5C6LKB6-F1-model_v4_TED01"]],"b":[["polyketides/flexirubin.yaml","flexirubin"]]},{"id":"NCBITaxon:945553","l":"","na":2,"nb":1,"a":[["TED%3AAF-A0A0D2NQE0-F1-model_v4_TED01","TED novel fold AF-A0A0D2NQE0-F1-model_v4_TED01"],["TED%3AAF-A0A0D2PBZ7-F1-model_v4_TED01","TED novel fold AF-A0A0D2PBZ7-F1-model_v4_TED01"]],"b":[["terpenoids/naematolin.yaml","naematolin"]]},{"id":"NCBITaxon:985895","l":"","na":2,"nb":1,"a":[["TED%3AAF-E5A7U7-F1-model_v4_TED01","TED novel fold AF-E5A7U7-F1-model_v4_TED01"],["TED%3AAF-E5A9E1-F1-model_v4_TED03","TED novel fold AF-E5A9E1-F1-model_v4_TED03"]],"b":[["terpenoids/2-cis-abscisic-acid.yaml","2-cis-abscisic acid"]]},{"id":"RHEA:32631","l":"","na":2,"nb":1,"a":[["EC%3A1.14.13.154","erythromycin 12 hydroxylase"],["RHEA%3A32631","erythromycin D + NADPH + O2 + H(+) = erythromycin C + NADP(+) + H2O"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"RHEA:40299","l":"","na":2,"nb":1,"a":[["EC%3A1.14.15.35","6-deoxyerythronolide B hydroxylase"],["RHEA%3A40299","6-deoxyerythronolide B + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = erythronolide B + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"UniProt:O00763.","l":"","na":2,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RCP","RCP-binding site"],["proteintraitsmech%3ABIOLIP_S1A","S1A-binding site"]],"b":[["polyketides/soraphen-a.yaml","soraphen A"]]},{"id":"UniProt:P00516","l":"","na":2,"nb":1,"a":[["EC%3A2.7.11.12","cGMP-dependent protein kinase"],["Pfam%3APF16808","Coiled-coil N-terminus of cGMP-dependent protein kinase"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P00517","l":"","na":1,"nb":2,"a":[["MCSA%3A757","cAMP-dependent protein kinase"]],"b":[["alkaloids/methylarcyriarubin.yaml","methylarcyriarubin"],["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P04058.","l":"","na":2,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_03S","03S-binding site"],["proteintraitsmech%3ABIOLIP_AA7","AA7-binding site"]],"b":[["alkaloids/physostigmine.yaml","physostigmine"]]},{"id":"UniProt:P0AD64","l":"","na":2,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MA4","MA4-binding site"],["proteintraitsmech%3ABIOLIP_TSL","TSL-binding site"]],"b":[["amino_acids_and_peptides/clavulanic-acid-2.yaml","clavulanic acid"]]},{"id":"CHEBI:133919","l":"decarbamoylsaxitoxin","na":1,"nb":1,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"]]},{"id":"CHEBI:138511","l":"piericidin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HQH","HQH-binding site"]],"b":[["polyketides/piericidin-a.yaml","piericidin A"]]},{"id":"CHEBI:142639","l":"nectriapyrone","na":1,"nb":1,"a":[["RHEA%3A58748","desmethylnectriapyrone + S-adenosyl-L-methionine = nectriapyrone + S-adenosyl-L-homocysteine + H(+)"]],"b":[["polyketides/nectriapyrone.yaml","nectriapyrone"]]},{"id":"CHEBI:145105","l":"asperphenamate","na":1,"nb":1,"a":[["RHEA%3A61908","N-benzoyl-L-phenylalaninol + benzoate + L-phenylalanine + 2 ATP = asperphenamate + 2 AMP + 2 diphosphate + H(+)"]],"b":[["unclassified/asperphenamate.yaml","asperphenamate"]]},{"id":"CHEBI:146007","l":"(M)-viriditoxin","na":1,"nb":1,"a":[["RHEA%3A62884","4 semiviriditoxin + O2 = 2 (M)-viriditoxin + 2 H2O"]],"b":[["polyketides/viriditoxin.yaml","viriditoxin"]]},{"id":"CHEBI:15353","l":"blasticidin S","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BLS","BLS-binding site"]],"b":[["carbohydrates/blasticidin-s.yaml","blasticidin S"]]},{"id":"CHEBI:15732","l":"phosphonoacetic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PAE","PAE-binding site"]],"b":[["unclassified/phosphonoacetic-acid.yaml","phosphonoacetic acid"]]},{"id":"CHEBI:15738","l":"staurosporine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_STU","STU-binding site"]],"b":[["alkaloids/staurosporine.yaml","staurosporine"]]},{"id":"CHEBI:157682","l":"vanchrobactin","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_157682","requires vanchrobactin"]],"b":[["amino_acids_and_peptides/vanchrobactin.yaml","vanchrobactin"]]},{"id":"CHEBI:16349","l":"L-citrulline","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CIR","CIR-binding site"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"CHEBI:167379","l":"trichobrasilenol","na":1,"nb":1,"a":[["RHEA%3A66644","(2E,6E)-farnesyl diphosphate + H2O = trichobrasilenol + diphosphate"]],"b":[["terpenoids/trichobrasilenol.yaml","trichobrasilenol"]]},{"id":"CHEBI:167886","l":"aetokthonotoxin","na":1,"nb":1,"a":[["RHEA%3A82519","5,7-dibromo-indole-3-carbonitrile + 2,3,5-tribromoindole + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = aetokthonotoxin + 2 oxidized [2Fe-2S]-[ferredoxin] + 2 H2O"]],"b":[["alkaloids/aetokthonotoxin.yaml","aetokthonotoxin"]]},{"id":"CHEBI:168396","l":"mycophenolic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MOA","MOA-binding site"]],"b":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"]]},{"id":"CHEBI:171659","l":"quinolobactin","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_171659","requires quinolobactin"]],"b":[["alkaloids/quinolobactin.yaml","quinolobactin"]]},{"id":"CHEBI:18157","l":"aerobactin","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18157","requires aerobactin"]],"b":[["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]]},{"id":"CHEBI:219836","l":"anditomin","na":1,"nb":1,"a":[["RHEA%3A82659","andilesin C + 2-oxoglutarate + O2 = anditomin + succinate + CO2 + H2O"]],"b":[["unclassified/anditomin.yaml","anditomin"]]},{"id":"CHEBI:22152","l":"2-cis-abscisic acid","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["terpenoids/2-cis-abscisic-acid.yaml","2-cis-abscisic acid"]]},{"id":"CHEBI:26789","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_OI9","OI9-binding site"]],"b":[["carbohydrates/streptothricin-f.yaml","streptothricin F"]]},{"id":"CHEBI:27592","l":"ectoine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_4CS","4CS-binding site"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"CHEBI:27834","l":"pentostatin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DCF","DCF-binding site"]],"b":[["alkaloids/pentostatin.yaml","pentostatin"]]},{"id":"CHEBI:28364","l":"all-cis-5,8,11,14,17-icosapentaenoic acid","na":1,"nb":1,"a":[["TCDB%3A4.C.1","The Fatty Acid Group Translocation (FAT) Family"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"CHEBI:28748","l":"doxorubicin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DM2","DM2-binding site"]],"b":[["polyketides/doxorubicin.yaml","doxorubicin"]]},{"id":"CHEBI:28864","l":"tobramycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TOY","TOY-binding site"]],"b":[["carbohydrates/tobramycin.yaml","tobramycin"]]},{"id":"CHEBI:29703","l":"validamycin A","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["carbohydrates/validamycin-a.yaml","validamycin A"]]},{"id":"CHEBI:30838","l":"itaconic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ITN","ITN-binding site"]],"b":[["fatty_acids/itaconic-acid.yaml","itaconic acid"]]},{"id":"CHEBI:31856","l":"mithramycin","na":1,"nb":1,"a":[["RHEA%3A85455","iso-mithramycin = mithramycin"]],"b":[["polyketides/mithramycin.yaml","mithramycin"]]},{"id":"CHEBI:32079","l":"pyrrolnitrin","na":1,"nb":1,"a":[["RHEA%3A46136","aminopyrrolnitrin + NADPH + 2 O2 + H(+) = pyrrolnitrin + NADP(+) + 2 H2O"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"CHEBI:34970","l":"saxitoxin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9SL","9SL-binding site"]],"b":[["alkaloids/saxitoxin.yaml","saxitoxin"]]},{"id":"CHEBI:38240","l":"solanapyrone D","na":1,"nb":1,"a":[["RHEA%3A75143","prosolanapyrone III = solanapyrone D"]],"b":[["polyketides/solanapyrone-d.yaml","solanapyrone D"]]},{"id":"CHEBI:40009","l":"D-cycloserine","na":1,"nb":1,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"]],"b":[["amino_acids_and_peptides/cycloserine.yaml","cycloserine"]]},{"id":"CHEBI:41977","l":"daunorubicin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DM1","DM1-binding site"]],"b":[["polyketides/daunorubicin.yaml","daunorubicin"]]},{"id":"CHEBI:42223","l":"emodin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_EMO","EMO-binding site"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"CHEBI:42355","l":"erythromycin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ERY","ERY-binding site"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"CHEBI:42639","l":"γ-butyrolactone","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_GBL","GBL-binding site"]],"b":[["fatty_acids/butyrolactone.yaml","γ-butyrolactone"]]},{"id":"CHEBI:43616","l":"K-252a","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_KSA","KSA-binding site"]],"b":[["alkaloids/k-252a.yaml","K-252a"]]},{"id":"CHEBI:45257","l":"ribostamycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RIO","RIO-binding site"]],"b":[["carbohydrates/ribostamycin.yaml","ribostamycin"]]},{"id":"CHEBI:473992","l":"nystatin A1","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_A1AZ7","A1AZ7-binding site"]],"b":[["polyketides/nystatin-a1.yaml","nystatin A1"]]},{"id":"CHEBI:48267","l":"tubercidin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TBN","TBN-binding site"]],"b":[["carbohydrates/tubercidin.yaml","tubercidin"]]},{"id":"CHEBI:48947","l":"clavulanic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_J01","J01-binding site"]],"b":[["amino_acids_and_peptides/clavulanic-acid.yaml","clavulanic acid"]]},{"id":"CHEBI:50437","l":"nocardamine","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_50437","requires desferrioxamine E"]],"b":[["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"]]},{"id":"CHEBI:623918","l":"nikkomycin Z","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BGI","BGI-binding site"]],"b":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"]]},{"id":"CHEBI:64318","l":"ergotamine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ERM","ERM-binding site"]],"b":[["alkaloids/ergotamine.yaml","ergotamine"]]},{"id":"CHEBI:64695","l":"pyripyropene A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_7T8","7T8-binding site"]],"b":[["unclassified/pyripyropene-a.yaml","pyripyropene A"]]},{"id":"CHEBI:67811","l":"zorbamycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_52G","52G-binding site"]],"b":[["amino_acids_and_peptides/zorbamycin.yaml","zorbamycin"]]},{"id":"CHEBI:68241","l":"platencin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_N32","N32-binding site"]],"b":[["terpenoids/platencin.yaml","platencin"]]},{"id":"CHEBI:70064","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["polyketides/landomycin-a.yaml","landomycin A"]]},{"id":"CHEBI:7025","l":"mupirocin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MRC","MRC-binding site"]],"b":[["polyketides/mupirocin.yaml","mupirocin"]]},{"id":"CHEBI:70399","l":"meleagrine","na":1,"nb":1,"a":[["RHEA%3A51732","glandicoline B + S-adenosyl-L-methionine = meleagrin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["alkaloids/meleagrine.yaml","meleagrine"]]},{"id":"CHEBI:7061","l":"myxochelin B","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_7061","requires myxochelin B"]],"b":[["alkaloids/myxochelin-b.yaml","myxochelin B"]]},{"id":"CHEBI:74926","l":"patulin","na":1,"nb":1,"a":[["RHEA%3A62228","(E)-ascladiol + A = patulin + AH2"]],"b":[["polyketides/patulin.yaml","patulin"]]},{"id":"CHEBI:7508","l":"framycetin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NMY","NMY-binding site"]],"b":[["carbohydrates/framycetin.yaml","framycetin"]]},{"id":"CHEBI:77742","l":"bongkrekic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BKC","BKC-binding site"]],"b":[["fatty_acids/bongkrekic-acid.yaml","bongkrekic acid"]]},{"id":"CHEBI:79391","l":"(−)-chuangxinmycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9E0","9E0-binding site"]],"b":[["alkaloids/chuangxinmycin.yaml","(−)-chuangxinmycin"]]},{"id":"CHEBI:84168","l":"4-hydroxy-6-pentadecylpyran-2-one","na":1,"nb":1,"a":[["RHEA%3A44260","hexadecanoyl-CoA + 2 malonyl-CoA + 2 H(+) = 4-hydroxy-6-pentadecylpyran-2-one + 2 CO2 + 3 CoA"]],"b":[["polyketides/4-hydroxy-6-pentadecylpyran-2-one.yaml","4-hydroxy-6-pentadecylpyran-2-one"]]},{"id":"CHEBI:84171","l":"4-hydroxy-6-(2-oxoheptadecyl)pyran-2-one","na":1,"nb":1,"a":[["RHEA%3A44268","hexadecanoyl-CoA + 3 malonyl-CoA + 3 H(+) = 4-hydroxy-6-(2-oxoheptadecyl)pyran-2-one + 3 CO2 + 4 CoA"]],"b":[["polyketides/4-hydroxy-6-2-oxoheptadecyl-pyran-2-one.yaml","4-hydroxy-6-(2-oxoheptadecyl)pyran-2-one"]]},{"id":"CHEBI:84582","l":"schizokinen","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_84582","requires schizokinen"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"]]},{"id":"CHEBI:84585","l":"vibrioferrin","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_84585","requires vibrioferrin"]],"b":[["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"CHEBI:85997","l":"sangivamycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SGV","SGV-binding site"]],"b":[["carbohydrates/sangivamycin.yaml","sangivamycin"]]},{"id":"CHEBI:9168","l":"sirolimus","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RAP","RAP-binding site"]],"b":[["polyketides/sirolimus.yaml","sirolimus"]]},{"id":"CHEBI:9200","l":"soraphen A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_S1A","S1A-binding site"]],"b":[["polyketides/soraphen-a.yaml","soraphen A"]]},{"id":"CHEBI:92181","l":"lasalocid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_LSD","LSD-binding site"]],"b":[["polyketides/lasalocid.yaml","lasalocid"]]},{"id":"CHEBI:9367","l":"swainsonine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SWA","SWA-binding site"]],"b":[["alkaloids/swainsonine.yaml","swainsonine"]]},{"id":"CHEBI:9519","l":"thebaine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_D4R","D4R-binding site"]],"b":[["alkaloids/thebaine.yaml","thebaine"]]},{"id":"CHEBI:9973","l":"vibriobactin","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_9973","requires vibriobactin"]],"b":[["alkaloids/vibriobactin.yaml","vibriobactin"]]},{"id":"NCBITaxon:103733","l":"Saccharothrix syringae","na":1,"nb":1,"a":[["TED%3AAF-A0A5Q0GZB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Q0GZB9-F1-model_v4_TED01"]],"b":[["polyketides/nocamycin.yaml","nocamycin"]]},{"id":"NCBITaxon:104268","l":"Tenacibaculum mesophilum","na":1,"nb":1,"a":[["TED%3AAF-A0A1M5HMT5-F1-model_v4_TED01","TED novel fold AF-A0A1M5HMT5-F1-model_v4_TED01"]],"b":[["fatty_acids/bisucaberin-b.yaml","bisucaberin B"]]},{"id":"NCBITaxon:1081091","l":"Amycolatopsis balhimycina DSM 5908","na":1,"nb":1,"a":[["TED%3AAF-A0A428WRS4-F1-model_v4_TED02","TED novel fold AF-A0A428WRS4-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/balhimycin.yaml","balhimycin"]]},{"id":"NCBITaxon:1108595","l":"Chromobacterium vaccinii","na":1,"nb":1,"a":[["TED%3AAF-A0A2L2B8V3-F1-model_v4_TED02","TED novel fold AF-A0A2L2B8V3-F1-model_v4_TED02"]],"b":[["unclassified/fr900359-2.yaml","FR900359"]]},{"id":"NCBITaxon:1124983","l":"Pseudomonas protegens CHA0","na":1,"nb":1,"a":[["Pfam%3APF18089","DAPG hydrolase PhiG domain"]],"b":[["fatty_acids/protegencin.yaml","protegencin"]]},{"id":"NCBITaxon:1165","l":"Anabaena cylindrica","na":1,"nb":1,"a":[["Pfam%3APF17275","Family of unknown function (DUF5340)"]],"b":[["amino_acids_and_peptides/anachelin.yaml","anachelin"]]},{"id":"NCBITaxon:1214242","l":"Streptomyces collinus Tu 365","na":1,"nb":1,"a":[["TED%3AAF-S5VBX8-F1-model_v4_TED03","TED novel fold AF-S5VBX8-F1-model_v4_TED03"]],"b":[["unclassified/kirromycin.yaml","kirromycin"]]},{"id":"NCBITaxon:122368","l":"Cercospora beticola","na":1,"nb":1,"a":[["TED%3AAF-A0A2G5HT37-F1-model_v4_TED02","TED novel fold AF-A0A2G5HT37-F1-model_v4_TED02"]],"b":[["polyketides/cercosporin.yaml","cercosporin"]]},{"id":"NCBITaxon:1254432","l":"Sorangium cellulosum So0157-2","na":1,"nb":1,"a":[["TED%3AAF-S4XT05-F1-model_v4_TED01","TED novel fold AF-S4XT05-F1-model_v4_TED01"]],"b":[["unclassified/epothilone-b.yaml","epothilone B"]]},{"id":"NCBITaxon:1266744","l":"Talaromyces purpureogenus","na":1,"nb":1,"a":[["Pfam%3APF10503","Esterase PHB depolymerase"]],"b":[["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"]]},{"id":"NCBITaxon:1283841","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A084QGW0-F1-model_v4_TED01","TED novel fold AF-A0A084QGW0-F1-model_v4_TED01"]],"b":[["alkaloids/isoindolin-1-one.yaml","isoindolin-1-one"]]},{"id":"NCBITaxon:1297742","l":"Myxococcus hansupus","na":1,"nb":1,"a":[["TED%3AAF-A0A0H4X3W5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0H4X3W5-F1-model_v4_TED02"]],"b":[["unclassified/myxochromide-c.yaml","myxochromide C"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":1,"nb":1,"a":[["PROSITE%3APS01043","Transposases, IS30 family, signature"]],"b":[["amino_acids_and_peptides/salivaricin-d.yaml","salivaricin D"]]},{"id":"NCBITaxon:1341132","l":"Aspergillus welwitschiae","na":1,"nb":1,"a":[["TED%3AAF-A0A3F3Q9J6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3F3Q9J6-F1-model_v4_TED02"]],"b":[["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"]]},{"id":"NCBITaxon:1343740","l":"Streptomyces rapamycinicus NRRL 5491","na":1,"nb":1,"a":[["Pfam%3APF21168","Chorismatase FkbO/Hyg5-like, N-terminal"]],"b":[["polyketides/sirolimus.yaml","sirolimus"]]},{"id":"NCBITaxon:13689","l":"Sphingomonas paucimobilis","na":1,"nb":1,"a":[["PROSITE%3APS00082","Extradiol ring-cleavage dioxygenases signature"]],"b":[["unclassified/minimycin.yaml","minimycin"]]},{"id":"NCBITaxon:1408161","l":"Plenodomus tracheiphilus IPT5","na":1,"nb":1,"a":[["TED%3AAF-A0A6A7APH0-F1-model_v4_TED02","TED novel fold AF-A0A6A7APH0-F1-model_v4_TED02"]],"b":[["shikimates_and_phenylpropanoids/mellein.yaml","(-)-Mellein"]]},{"id":"NCBITaxon:150374","l":"Escovopsis weberi","na":1,"nb":1,"a":[["TED%3AAF-A0A0M8MSE0-F1-model_v4_TED01","TED novel fold AF-A0A0M8MSE0-F1-model_v4_TED01"]],"b":[["unclassified/melinacidin-iv.yaml","melinacidin IV"]]},{"id":"NCBITaxon:1563222","l":"Citrobacter pasteurii","na":1,"nb":1,"a":[["TED%3AAF-A0A6N6K4M5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N6K4M5-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/citrocin.yaml","citrocin"]]},{"id":"NCBITaxon:1593482","l":"Massilia sp. YMA4","na":1,"nb":1,"a":[["TED%3AAF-A0A7U5XZA1-F1-model_v4_TED02","TED novel fold AF-A0A7U5XZA1-F1-model_v4_TED02"]],"b":[["unclassified/empedopeptin.yaml","empedopeptin"]]},{"id":"NCBITaxon:159449","l":"Embleya scabrispora","na":1,"nb":1,"a":[["TED%3AAF-A0A1T3P567-F1-model_v4_TED01","TED novel fold AF-A0A1T3P567-F1-model_v4_TED01"]],"b":[["unclassified/hitachimycin.yaml","hitachimycin"]]},{"id":"NCBITaxon:173365","l":"Methylobacter tundripaludum","na":1,"nb":1,"a":[["TED%3AAF-A0A2S6HGL6-F1-model_v4_TED02","TED novel fold AF-A0A2S6HGL6-F1-model_v4_TED02"]],"b":[["unclassified/tundrenone.yaml","tundrenone"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":1,"nb":1,"a":[["Pfam%3APF08124","Polysaccharide lyase family 8, N terminal alpha-helical domain"]],"b":[["amino_acids_and_peptides/cutimycin.yaml","cutimycin"]]},{"id":"NCBITaxon:1764","l":"Mycobacterium avium","na":1,"nb":1,"a":[["Pfam%3APF01882","Protein of unknown function DUF58"]],"b":[["fatty_acids/gpl-21.yaml","GPL-21"]]},{"id":"NCBITaxon:180498","l":"Jatropha curcas","na":1,"nb":1,"a":[["TED%3AAF-A0A067KNY2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A067KNY2-F1-model_v4_TED01"]],"b":[["terpenoids/casbene.yaml","casbene"]]},{"id":"NCBITaxon:1828523","l":"","na":1,"nb":1,"a":[["Pfam%3APF26335","Beta-lactamase-like ARB_00930-like, C-terminal domain"]],"b":[["polyketides/squalestatin-s1.yaml","squalestatin S1"]]},{"id":"NCBITaxon:1869241","l":"Nostoc sp. CENA543","na":1,"nb":1,"a":[["TED%3AAF-A0A2I8A446-F1-model_v4_TED01","TED novel fold AF-A0A2I8A446-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/nodularin-2.yaml","nodularin"]]},{"id":"NCBITaxon:1874","l":"Micromonospora chalcea","na":1,"nb":1,"a":[["TED%3AAF-A0A365UW89-F1-model_v4_TED01","TED novel fold AF-A0A365UW89-F1-model_v4_TED01"]],"b":[["polyketides/tetrocarcin-a.yaml","tetrocarcin A"]]},{"id":"NCBITaxon:1887","l":"Streptomyces albogriseolus","na":1,"nb":1,"a":[["PROSITE%3APS00999","Streptomyces subtilisin-type inhibitors signature"]],"b":[["alkaloids/thienodolin.yaml","thienodolin"]]},{"id":"NCBITaxon:1918945","l":"Vibrio spartinae","na":1,"nb":1,"a":[["TED%3AAF-A0A7D8BB99-F1-model_v4_TED01","TED novel fold AF-A0A7D8BB99-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/vancomycin.yaml","vancomycin"]]},{"id":"NCBITaxon:1948","l":"Streptomyces longisporus","na":1,"nb":1,"a":[["PROSITE%3APS00999","Streptomyces subtilisin-type inhibitors signature"]],"b":[["alkaloids/undecylprodigiosin-2.yaml","undecylprodigiosin"]]},{"id":"NCBITaxon:1970","l":"Streptomyces morookaense","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y7E7U7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y7E7U7-F1-model_v4_TED01"]],"b":[["carbohydrates/blasticidin-s.yaml","blasticidin S"]]},{"id":"NCBITaxon:205922","l":"Pseudomonas fluorescens Pf0-1","na":1,"nb":1,"a":[["Pfam%3APF07927","HicA toxin of bacterial toxin-antitoxin,"]],"b":[["unclassified/gacamide-a.yaml","gacamide A"]]},{"id":"NCBITaxon:216895","l":"Vibrio vulnificus CMCP6","na":1,"nb":1,"a":[["Pfam%3APF18416","N-acetylglucosamine binding protein domain 2"]],"b":[["alkaloids/vulnibactin.yaml","vulnibactin"]]},{"id":"NCBITaxon:2203296","l":"","na":1,"nb":1,"a":[["Pfam%3APF18558","Methyltransferase, Helix-turn-helix domain"]],"b":[["unclassified/xenovulene-a.yaml","xenovulene A"]]},{"id":"NCBITaxon:240499","l":"Calcarisporium arbuscula","na":1,"nb":1,"a":[["Pfam%3APF28402","Pneumocandin biosynthesis cluster protein B C-terminal domain"]],"b":[["polyketides/patulin.yaml","patulin"]]},{"id":"NCBITaxon:2480843","l":"","na":1,"nb":1,"a":[["Pfam%3APF22903","Diels-Alderase-like"]],"b":[["unclassified/xenoacremone-a.yaml","xenoacremone A"]]},{"id":"NCBITaxon:249581","l":"Streptomyces ossamyceticus","na":1,"nb":1,"a":[["TED%3AAF-A0A3N1M1Z0-F1-model_v4_TED02","TED novel fold AF-A0A3N1M1Z0-F1-model_v4_TED02"]],"b":[["polyketides/ossamycin.yaml","ossamycin"]]},{"id":"NCBITaxon:2545265","l":"Streptomyces sp. AJS327","na":1,"nb":1,"a":[["TED%3AAF-A0A7V8NJX1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V8NJX1-F1-model_v4_TED01"]],"b":[["alkaloids/tetrachlorizine.yaml","tetrachlorizine"]]},{"id":"NCBITaxon:263","l":"Francisella tularensis","na":1,"nb":1,"a":[["TED%3AAF-A0A6I4RUC7-F1-model_v4_TED02","TED novel fold AF-A0A6I4RUC7-F1-model_v4_TED02"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"NCBITaxon:264691","l":"Trichormus variabilis","na":1,"nb":1,"a":[["Pfam%3APF09194","Restriction endonuclease BsobI"]],"b":[["unclassified/shinorine.yaml","shinorine"]]},{"id":"NCBITaxon:267747","l":"Cutibacterium acnes KPA171202","na":1,"nb":1,"a":[["Pfam%3APF27542","ArfC"]],"b":[["amino_acids_and_peptides/cutimycin.yaml","cutimycin"]]},{"id":"NCBITaxon:269709","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A543V9Z8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A543V9Z8-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:2743","l":"Marinobacter nauticus","na":1,"nb":1,"a":[["TED%3AAF-A0A368Y858-F1-model_v4_TED02","TED novel fold AF-A0A368Y858-F1-model_v4_TED02"]],"b":[["alkaloids/petrobactin.yaml","petrobactin"]]},{"id":"NCBITaxon:279113","l":"Collimonas pratensis","na":1,"nb":1,"a":[["TED%3AAF-A0A127Q9K0-F1-model_v4_TED02","TED novel fold AF-A0A127Q9K0-F1-model_v4_TED02"]],"b":[["unclassified/malleobactin-x.yaml","malleobactin X"]]},{"id":"NCBITaxon:285525","l":"Streptomyces sahachiroi","na":1,"nb":1,"a":[["Pfam%3APF06224","DNA glycosylase AlkZ-like"]],"b":[["unclassified/azinomycin-b.yaml","azinomycin B"]]},{"id":"NCBITaxon:28985","l":"Kluyveromyces lactis","na":1,"nb":1,"a":[["Pfam%3APF03930","Recombinase Flp protein N-terminus"]],"b":[["alkaloids/pulcherrimin.yaml","pulcherrimin"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":1,"nb":1,"a":[["PROSITE%3APS01322","Phosphotriesterase family signature 1"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:29447","l":"Xanthomonas albilineans","na":1,"nb":1,"a":[["TED%3AAF-A0A6P1SIK7-F1-model_v4_TED02","TED novel fold AF-A0A6P1SIK7-F1-model_v4_TED02"]],"b":[["alkaloids/albicidin.yaml","albicidin"]]},{"id":"NCBITaxon:29456","l":"Alteromonas sp. B-10-31","na":1,"nb":1,"a":[["Pfam%3APF12559","Serine endopeptidase inhibitors"]],"b":[["unclassified/marinostatin.yaml","marinostatin"]]},{"id":"NCBITaxon:29829","l":"Lipomyces starkeyi","na":1,"nb":1,"a":[["Pfam%3APF03702","Anhydro-N-acetylmuramic acid kinase"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"NCBITaxon:298386","l":"Photobacterium profundum SS9","na":1,"nb":1,"a":[["Pfam%3APF12558","ATP-binding cassette cobalt transporter"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"NCBITaxon:337","l":"Burkholderia glumae","na":1,"nb":1,"a":[["TED%3AAF-A0A8A8MA15-F1-model_v4_TED01","TED novel fold AF-A0A8A8MA15-F1-model_v4_TED01"]],"b":[["alkaloids/toxoflavin.yaml","toxoflavin"]]},{"id":"NCBITaxon:359131","l":"Streptomyces rubellomurinus","na":1,"nb":1,"a":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"]],"b":[["unclassified/fr-900098.yaml","FR-900098"]]},{"id":"NCBITaxon:362","l":"Agrobacterium radiobacter","na":1,"nb":1,"a":[["Pfam%3APF04909","Amidohydrolase"]],"b":[["alkaloids/agrobactin.yaml","agrobactin"]]},{"id":"NCBITaxon:37329","l":"Nocardia farcinica","na":1,"nb":1,"a":[["TED%3AAF-A0A449G5H5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A449G5H5-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/nocobactin-na.yaml","nocobactin NA"]]},{"id":"NCBITaxon:37727","l":"Talaromyces marneffei","na":1,"nb":1,"a":[["Pfam%3APF12296","Hydrophobic surface binding protein A"]],"b":[["polyketides/monascorubrin.yaml","monascorubrin"]]},{"id":"NCBITaxon:38945","l":"Flammulina velutipes","na":1,"nb":1,"a":[["Pfam%3APF09259","Fungal immunomodulatory protein Fve"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:391936","l":"Isoalcanivorax pacificus W11-5","na":1,"nb":1,"a":[["TED%3AAF-A0A0B4XPB7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0B4XPB7-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/pacifibactin.yaml","pacifibactin"]]},{"id":"NCBITaxon:396598","l":"Paraburkholderia graminis C4D1M","na":1,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_GrbE","GrbE-type graminine biosynthesis protein family"]],"b":[["unclassified/gramibactin.yaml","gramibactin"]]},{"id":"NCBITaxon:4100","l":"Nicotiana benthamiana","na":1,"nb":1,"a":[["Pfam%3APF11833","Protein CHAPERONE-LIKE PROTEIN OF POR1-like"]],"b":[["terpenoids/capsidiol.yaml","capsidiol"]]},{"id":"NCBITaxon:41047","l":"Aspergillus thermomutatus","na":1,"nb":1,"a":[["Pfam%3APF28486","AnkG N-terminal domain"]],"b":[["unclassified/pyripyropene-a.yaml","pyripyropene A"]]},{"id":"NCBITaxon:43657","l":"Pseudoalteromonas luteoviolacea","na":1,"nb":1,"a":[["TED%3AAF-A0A1C0TIS0-F1-model_v4_TED02","TED novel fold AF-A0A1C0TIS0-F1-model_v4_TED02"]],"b":[["shikimates_and_phenylpropanoids/pentabromopseudilin.yaml","pentabromopseudilin"]]},{"id":"NCBITaxon:43759","l":"Streptomyces wedmorensis","na":1,"nb":1,"a":[["Pfam%3APF04167","Protein of unknown function (DUF402)"]],"b":[["unclassified/fosfomycin.yaml","fosfomycin"]]},{"id":"NCBITaxon:463","l":"Fluoribacter dumoffii","na":1,"nb":1,"a":[["TED%3AAF-A0A377G6U6-F1-model_v4_TED01","TED novel fold AF-A0A377G6U6-F1-model_v4_TED01"]],"b":[["shikimates_and_phenylpropanoids/legioliulin.yaml","legioliulin"]]},{"id":"NCBITaxon:4679","l":"Allium cepa","na":1,"nb":1,"a":[["Pfam%3APF04863","Alliinase EGF-like domain"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:4682","l":"Allium sativum","na":1,"nb":1,"a":[["Pfam%3APF04863","Alliinase EGF-like domain"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:469371","l":"Thermobispora bispora DSM 43833","na":1,"nb":1,"a":[["TED%3AAF-D6Y8C2-F1-model_v4_TED02","TED novel fold AF-D6Y8C2-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/thiomuracin.yaml","thiomuracin"]]},{"id":"NCBITaxon:47759","l":"Streptomyces tubercidicus","na":1,"nb":1,"a":[["TED%3AAF-A0A640UN74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A640UN74-F1-model_v4_TED01"]],"b":[["carbohydrates/tubercidin.yaml","tubercidin"]]},{"id":"NCBITaxon:47850","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1C6SK92-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C6SK92-F1-model_v4_TED01"]],"b":[["polyketides/dynemicin-a.yaml","dynemicin A"]]},{"id":"NCBITaxon:47886","l":"Pseudomonas luteola","na":1,"nb":1,"a":[["TED%3AAF-A0A2X2CC74-F1-model_v4_TED02","TED novel fold AF-A0A2X2CC74-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/chrysobactin.yaml","chrysobactin"]]},{"id":"NCBITaxon:483219","l":"Myxococcus fulvus HW-1","na":1,"nb":1,"a":[["TED%3AAF-F8C8K4-F1-model_v4_TED01","TED highly-symmetric fold AF-F8C8K4-F1-model_v4_TED01"]],"b":[["unclassified/myxochromide-a-2.yaml","myxochromide A"]]},{"id":"NCBITaxon:488447","l":"Burkholderia contaminans","na":1,"nb":1,"a":[["TED%3AAF-A0A3N8RI51-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N8RI51-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/occidiofungin-a.yaml","occidiofungin A"]]},{"id":"NCBITaxon:528191","l":"Paenibacillus xylanexedens","na":1,"nb":1,"a":[["TED%3AAF-A0A3N6BL17-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N6BL17-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/macolacin.yaml","macolacin"]]},{"id":"NCBITaxon:5341","l":"Agaricus bisporus","na":1,"nb":1,"a":[["Pfam%3APF07367","Fungal fruit body lectin"]],"b":[["polyketides/kojic-acid.yaml","kojic acid"]]},{"id":"NCBITaxon:573841","l":"Sordaria araneosa","na":1,"nb":1,"a":[["Pfam%3APF26335","Beta-lactamase-like ARB_00930-like, C-terminal domain"]],"b":[["terpenoids/sordarin.yaml","sordarin"]]},{"id":"NCBITaxon:5839","l":"Plasmodium falciparum (isolate K1 / Thailand)","na":1,"nb":1,"a":[["Pfam%3APF12946","MSP1 EGF domain 1"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:6192","l":"Fasciola hepatica","na":1,"nb":1,"a":[["TED%3AAF-A0A4E0R9C7-F1-model_v4_TED02","TED novel fold AF-A0A4E0R9C7-F1-model_v4_TED02"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"]]},{"id":"NCBITaxon:66425","l":"Streptomyces luteoverticillatus","na":1,"nb":1,"a":[["TED%3AAF-A0A3S9PBS5-F1-model_v4_TED01","TED novel fold AF-A0A3S9PBS5-F1-model_v4_TED01"]],"b":[["alkaloids/carbazomycin-b.yaml","carbazomycin B"]]},{"id":"NCBITaxon:68197","l":"Streptomyces fimbriatus","na":1,"nb":1,"a":[["PROSITE%3APS00093","N-4 cytosine-specific DNA methylases signature"]],"b":[["alkaloids/spicamycin.yaml","spicamycin"]]},{"id":"NCBITaxon:69771","l":"Penicillium decumbens","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6PJ92-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V6PJ92-F1-model_v4_TED01"]],"b":[["polyketides/decumbenone-a.yaml","decumbenone a"]]},{"id":"NCBITaxon:698760","l":"Streptomyces turgidiscabies Car8","na":1,"nb":1,"a":[["TED%3AAF-L7F7V3-F1-model_v4_TED02","TED highly-symmetric fold AF-L7F7V3-F1-model_v4_TED02"]],"b":[["unclassified/thaxtomin-a.yaml","thaxtomin A"]]},{"id":"NCBITaxon:713604","l":"Amycolatopsis mediterranei S699","na":1,"nb":1,"a":[["TED%3AAF-G0FSL6-F1-model_v4_TED01","TED novel fold AF-G0FSL6-F1-model_v4_TED01"]],"b":[["polyketides/rifamycin-sv.yaml","rifamycin SV"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A5C7XIK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7XIK2-F1-model_v4_TED01"]],"b":[["unclassified/lysocin-e.yaml","lysocin E"]]},{"id":"NCBITaxon:741275","l":"","na":1,"nb":1,"a":[["TED%3AAF-R7S2Z2-F1-model_v4_TED02","TED novel fold AF-R7S2Z2-F1-model_v4_TED02"]],"b":[["terpenoids/ent-kauren-16alpha-ol-2.yaml","Ent-kauren-16alpha-ol"]]},{"id":"NCBITaxon:747457","l":"Pseudoalteromonas sp. SANK 73390","na":1,"nb":1,"a":[["Pfam%3APF18014","Acetyltransferase (GNAT) domain"]],"b":[["polyketides/thiomarinol.yaml","thiomarinol"]]},{"id":"NCBITaxon:749593","l":"Epicoccum sorghinum","na":1,"nb":1,"a":[["Pfam%3APF17660","Polyglycine hydrolase-like, structural repeat"]],"b":[["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"]]},{"id":"NCBITaxon:75695","l":"Umezakia ovalisporum","na":1,"nb":1,"a":[["TED%3AAF-A0A654SF36-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A654SF36-F1-model_v4_TED02"]],"b":[["alkaloids/7-epi-cylindrospermopsin.yaml","7-epi-cylindrospermopsin"]]},{"id":"NCBITaxon:85336","l":"Rothia nasimurium","na":1,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_EntC","EntC-type catechol biosynthesis isochorismate synthase family"]],"b":[["unclassified/valinomycin-2.yaml","valinomycin"]]},{"id":"NCBITaxon:866895","l":"Halobacillus halophilus DSM 2266","na":1,"nb":1,"a":[["TED%3AAF-I0JI49-F1-model_v4_TED03","TED highly-symmetric fold AF-I0JI49-F1-model_v4_TED03"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:877550","l":"","na":1,"nb":1,"a":[["Pfam%3APF13810","Domain of unknown function (DUF4185)"]],"b":[["unclassified/notoamide-a.yaml","notoamide A"]]},{"id":"NCBITaxon:89489","l":"Monascus ruber","na":1,"nb":1,"a":[["Pfam%3APF17828","N-terminal domain in fatty acid synthase subunit beta"]],"b":[["polyketides/citrinin.yaml","(+)-citrinin"]]},{"id":"NCBITaxon:948311","l":"Fusarium proliferatum","na":1,"nb":1,"a":[["TED%3AAF-A0A420SS57-F1-model_v4_TED01","TED novel fold AF-A0A420SS57-F1-model_v4_TED01"]],"b":[["polyketides/prolipyrone-b.yaml","prolipyrone B"]]},{"id":"NCBITaxon:96241","l":"Bacillus spizizenii","na":1,"nb":1,"a":[["Pfam%3APF05952","Bacillus competence pheromone ComX"]],"b":[["amino_acids_and_peptides/entianin.yaml","entianin"]]},{"id":"NCBITaxon:986","l":"Flavobacterium johnsoniae","na":1,"nb":1,"a":[["TED%3AAF-A0A1J7BWE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1J7BWE6-F1-model_v4_TED01"]],"b":[["polyketides/flexirubin.yaml","flexirubin"]]},{"id":"NCBITaxon:994086","l":"Hydnomerulius pinastri MD-312","na":1,"nb":1,"a":[["TED%3AAF-A0A0C9W3H2-F1-model_v4_TED01","TED novel fold AF-A0A0C9W3H2-F1-model_v4_TED01"]],"b":[["fatty_acids/methyl-2s-4-methyl-2-octanoylamino-pentanoate.yaml","methyl (2S)-4-methyl-2-(octanoylamino)pentanoate"]]},{"id":"UniProt:A4F7P5","l":"","na":1,"nb":1,"a":[["EC%3A2.1.1.254","erythromycin 3'-O-methyltransferase"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"UniProt:O05207","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RDC","RDC-binding site"]],"b":[["polyketides/radicicol.yaml","radicicol"]]},{"id":"UniProt:O42713","l":"","na":1,"nb":1,"a":[["EC%3A1.14.18.1","tyrosinase"]],"b":[["polyketides/kojic-acid.yaml","kojic acid"]]},{"id":"UniProt:P00523","l":"","na":1,"nb":1,"a":[["ELM%3AELME000013","MOD_TYR_CSK"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P02701.","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_B1R","B1R-binding site"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"UniProt:P09917.","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_AF7","AF7-binding site"]],"b":[["alkaloids/myxochelin-a.yaml","myxochelin A"]]},{"id":"UniProt:P0C8L0","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ZL5","ZL5-binding site"]],"b":[["unclassified/antimycin-a1b.yaml","antimycin A1B"]]},{"id":"UniProt:P11799","l":"","na":1,"nb":1,"a":[["Pfam%3APF16620","Unstructured linker between I-set domains 2 and 3 on MYLCK"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P28523","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_7M0","7M0-binding site"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"UniProt:P43250.","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SGV","SGV-binding site"]],"b":[["carbohydrates/sangivamycin.yaml","sangivamycin"]]},{"id":"UniProt:Q00024","l":"","na":1,"nb":1,"a":[["EC%3A1.14.18.1","tyrosinase"]],"b":[["polyketides/kojic-acid.yaml","kojic acid"]]},{"id":"UniProt:Q03181.","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_433","433-binding site"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"UniProt:Q13451","l":"","na":1,"nb":1,"a":[["ComplexPortal%3ACPX-13334","-"]],"b":[["polyketides/sirolimus.yaml","sirolimus"]]},{"id":"UniProt:Q28021","l":"","na":1,"nb":1,"a":[["Pfam%3APF08912","Rho Binding"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:Q5G940","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_JUG","JUG-binding site"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"UniProt:Q5G940.","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_JUG","JUG-binding site"]],"b":[["polyketides/emodin.yaml","emodin"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/ProteinTraitsMech--TaxonMech.json b/assets/fleet/edges/ProteinTraitsMech--TaxonMech.json new file mode 100644 index 0000000..f26a228 --- /dev/null +++ b/assets/fleet/edges/ProteinTraitsMech--TaxonMech.json @@ -0,0 +1 @@ +{"a":"ProteinTraitsMech","b":"TaxonMech","base":{"ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record=","TaxonMech":"https://culturebotai.github.io/TaxonMech/pages/taxon.html?id="},"n":7444,"by":{"NCBITaxon":7444},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":145,"nb":3868,"a":[["IDPO%3A0000033","flexible linker"],["IDPO%3A0000014","order to disorder"],["IDPO%3A0000004","pre-molten globule"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A196023","Aeromonas hydrophila subsp. hydrophila"],["NCBITaxon%3A380703","Aeromonas hydrophila subsp. hydrophila ATCC 7966"],["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A35703","Citrobacter amalonaticus"],["NCBITaxon%3A163202","Corynebacterium appendicis"]]},{"id":"NCBITaxon:83334","l":"Escherichia coli O157:H7","na":130,"nb":140,"a":[["IDPO%3A0000011","disorder to order"],["IDPO%3A0000014","order to disorder"],["Pfam%3APF12343","DeaD helicase C-terminal disordered region"],["Pfam%3APF26539","YhiD C-terminal ACT domain"],["Pfam%3APF01081","KDPG and KHG aldolase"],["Pfam%3APF10423","Bacterial AMP nucleoside phosphorylase N-terminus"]],"b":[["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1389955","Escherichia coli ATCC 35150"],["NCBITaxon%3A83334","Escherichia coli O157:H7"],["NCBITaxon%3A1446609","Escherichia coli O157:H7 str. 06-3745"],["NCBITaxon%3A1446610","Escherichia coli O157:H7 str. 06-4039"],["NCBITaxon%3A1446611","Escherichia coli O157:H7 str. 07-3091"]]},{"id":"NCBITaxon:623","l":"Shigella flexneri","na":94,"nb":120,"a":[["Pfam%3APF13710","ACT domain"],["Pfam%3APF12633","Adenylate cyclase NT domain"],["Pfam%3APF26690","Adenylate cyclase, class-I, third domain"],["Pfam%3APF26691","Adenylate cyclase, class-I, fourth domain"],["Pfam%3APF26693","Adenylate cyclase, class-I, C-terminal"],["Pfam%3APF01295","Adenylate cyclase, class-I, second domain"]],"b":[["NCBITaxon%3A236","Brucella ovis"],["NCBITaxon%3A444178","Brucella ovis ATCC 25840"],["NCBITaxon%3A623","Shigella flexneri"],["NCBITaxon%3A766154","Shigella flexneri 1235-66"],["NCBITaxon%3A766155","Shigella flexneri 1485-80"],["NCBITaxon%3A766156","Shigella flexneri 1676-NY"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":46,"nb":4740,"a":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF13166","AAA domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF27533","CapK C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"]],"b":[["NCBITaxon%3A475088","Methanosphaerula palustris"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1389955","Escherichia coli ATCC 35150"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A574","Klebsiella pneumoniae subsp. ozaenae"],["NCBITaxon%3A1218098","Klebsiella pneumoniae subsp. ozaenae NBRC 105683"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":17470,"nb":39,"a":[["EC%3A1.1.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.16.-.-","Oxidizing metal ions"],["EC%3A1.18.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.7.-","With an iron-sulfur protein as acceptor"]],"b":[["NCBITaxon%3A679895","Escherichia coli BW25113"],["NCBITaxon%3A595496","Escherichia coli BW2952"],["NCBITaxon%3A1318715","Escherichia coli BW38028"],["NCBITaxon%3A1245474","Escherichia coli ER2796"],["NCBITaxon%3A83333","Escherichia coli K-12"],["NCBITaxon%3A527799","Escherichia coli LW1655F+"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":30,"nb":422,"a":[["Pfam%3APF08787","Alginate lyase"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF08218","Citrate lyase ligase C-terminal domain"],["Pfam%3APF13727","CoA-binding domain"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["Pfam%3APF20714","DpiA-like helix-turn-helix domain"]],"b":[["NCBITaxon%3A1653844","Erwinia carnegieana"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A2058152","Klebsiella grimontii"],["NCBITaxon%3A54291","Klebsiella ornithinolytica"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A1443592","Klebsiella pneumoniae 07A044"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":29,"nb":51,"a":[["Pfam%3APF09156","Anthrax toxin lethal factor, middle domain"],["Pfam%3APF08401","N-terminal domain of anti-restriction factor ArdC"],["Pfam%3APF07737","Anthrax toxin lethal factor, N- and C-terminal domain"],["Pfam%3APF27053","Bacillus anthracis plasmid pXO2 protein 26"],["Pfam%3APF13205","Bacterial Ig-like domain"],["Pfam%3APF17475","Clostridial binary toxin B/anthrax toxin PA domain 2"]],"b":[["NCBITaxon%3A1392","Bacillus anthracis"],["NCBITaxon%3A1412844","Bacillus anthracis 52-G"],["NCBITaxon%3A1412843","Bacillus anthracis 8903-G"],["NCBITaxon%3A1412842","Bacillus anthracis 9080-G"],["NCBITaxon%3A1420588","Bacillus anthracis CVCC 40048"],["NCBITaxon%3A1439874","Bacillus anthracis CZC5"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":23,"nb":287,"a":[["Pfam%3APF09255","Caf1 Capsule antigen"],["Pfam%3APF02611","CDP-diacylglycerol pyrophosphatase"],["Pfam%3APF07411","Domain of unknown function (DUF1508)"],["Pfam%3APF05171","Haemin-degrading HemS.ChuX domain"],["Pfam%3APF21500","DNA polymerase III subunit delta', AAA+ ATPase lid domain"],["Pfam%3APF11004","3-deoxy-D-manno-oct-2-ulosonic acid (Kdo) hydroxylase"]],"b":[["NCBITaxon%3A632","Yersinia pestis"],["NCBITaxon%3A1345710","Yersinia pestis 1045"],["NCBITaxon%3A1330535","Yersinia pestis 113"],["NCBITaxon%3A755859","Yersinia pestis 12"],["NCBITaxon%3A1345703","Yersinia pestis 1412"],["NCBITaxon%3A1345704","Yersinia pestis 1413"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":23,"nb":168,"a":[["Pfam%3APF08878","HamA"],["Pfam%3APF05791","Bacillus haemolytic enterotoxin (HBL)"],["Pfam%3APF10803","Spore germination GerPB"],["Pfam%3APF10737","Spore germination protein GerPC"],["Pfam%3APF10970","Spore germination protein GerPE"],["Pfam%3APF07486","Cell Wall Hydrolase"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A572264","Bacillus cereus 03BB102"],["NCBITaxon%3A451709","Bacillus cereus 03BB108"],["NCBITaxon%3A526967","Bacillus cereus 172560W"],["NCBITaxon%3A363751","Bacillus cereus 31673"],["NCBITaxon%3A526979","Bacillus cereus 95/8201"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa (strain ATCC 15692 / DSM 22644 / CIP 104116 / JCM 14847 / LMG 12228 / 1C / PRS 101 / PAO1)","na":162,"nb":23,"a":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF06750","Bacterial Peptidase A24 N-terminal domain"],["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF28403","Aconitase X second domain"],["Pfam%3APF28406","Aconitase X third domain"],["Pfam%3APF04412","Aconitase X first domain"]],"b":[["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1453991","Pseudomonas aeruginosa BK1"],["NCBITaxon%3A1236530","Pseudomonas aeruginosa JCM 14847"],["NCBITaxon%3A1131757","Pseudomonas aeruginosa MPAO1/P1"],["NCBITaxon%3A1131758","Pseudomonas aeruginosa MPAO1/P2"],["NCBITaxon%3A208964","Pseudomonas aeruginosa PAO1"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":20,"nb":53,"a":[["Pfam%3APF14535","AMP-binding enzyme C-terminal domain"],["Pfam%3APF13442","Cytochrome C oxidase, cbb3-type, subunit III"],["Pfam%3APF22247","Catechol 2,3-dioxygenase-like N-terminal domain"],["Pfam%3APF25371","Domain of unknown function (DUF7884)"],["Pfam%3APF19301","LigXa C-terminal domain like"],["Pfam%3APF12729","Four helix bundle sensory module for signal transduction"]],"b":[["NCBITaxon%3A47920","Acidovorax delafieldii"],["NCBITaxon%3A301","Ectopseudomonas oleovorans"],["NCBITaxon%3A29581","Janthinobacterium lividum"],["NCBITaxon%3A294","Pseudomonas fluorescens"],["NCBITaxon%3A77298","Pseudomonas jessenii"],["NCBITaxon%3A1968891","Pseudomonas jessenii subsp. pseudoputida"]]},{"id":"NCBITaxon:90370","l":"","na":20,"nb":27,"a":[["Pfam%3APF09317","Acyl-CoA dehydrogenase, C-terminal, bacterial type"],["Pfam%3APF04958","Arginine N-succinyltransferase beta subunit"],["Pfam%3APF06564","Cellulose biosynthesis protein BcsQ"],["Pfam%3APF21157","DnaK suppressor protein DksA, N-terminal domain"],["Pfam%3APF22102","ElaD/SseL-like C-terminal"],["Pfam%3APF13861","FlgD Tudor-like domain"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A90370","Salmonella enterica subsp. enterica serovar Typhi"],["NCBITaxon%3A497977","Salmonella enterica subsp. enterica serovar Typhi str. 404ty"],["NCBITaxon%3A496065","Salmonella enterica subsp. enterica serovar Typhi str. AG3"],["NCBITaxon%3A1156917","Salmonella enterica subsp. enterica serovar Typhi str. BL196"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":19,"nb":557,"a":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"],["Pfam%3APF18173","Bacterial HORMA domain 2"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["Pfam%3APF27322","Cap8 HORMA domain"],["Pfam%3APF01526","Tn3 transposase DDE domain"]],"b":[["NCBITaxon%3A2073169","Chromobacterium alticapitis"],["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1454219","Pseudomonas aeruginosa 059A"],["NCBITaxon%3A1421538","Pseudomonas aeruginosa 0812"],["NCBITaxon%3A1421545","Pseudomonas aeruginosa 0822"],["NCBITaxon%3A1421531","Pseudomonas aeruginosa 0C2E"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":19,"nb":25,"a":[["Pfam%3APF03306","Alpha-acetolactate decarboxylase"],["Pfam%3APF22208","Cas_Csm6 CARF domain"],["Pfam%3APF09659","Cas_Csm6 HEPN domain"],["Pfam%3APF22335","Cas10/Cmr2, second palm domain"],["Pfam%3APF18395","Cas3 C-terminal domain"],["Pfam%3APF18019","Cas3, HD domain"]],"b":[["NCBITaxon%3A35783","Enterococcus sp."],["NCBITaxon%3A1308","Streptococcus thermophilus"],["NCBITaxon%3A1435981","Streptococcus thermophilus 1F8CT"],["NCBITaxon%3A1408178","Streptococcus thermophilus ASCC 1275"],["NCBITaxon%3A1263110","Streptococcus thermophilus CAG:236"],["NCBITaxon%3A1042404","Streptococcus thermophilus CNCM I-1630"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":16,"nb":156,"a":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF28265","Lipoprotein N-acylation protein LnsA-like"],["Pfam%3APF16403","Bacterial surface protein, Ig-like domain"],["Pfam%3APF03944","delta endotoxin"],["Pfam%3APF03945","delta endotoxin, N-terminal domain"],["Pfam%3APF06355","Aegerolysin"]],"b":[["NCBITaxon%3A1428","Bacillus thuringiensis"],["NCBITaxon%3A1340496","Bacillus thuringiensis AKS-7"],["NCBITaxon%3A714359","Bacillus thuringiensis BMB171"],["NCBITaxon%3A1423143","Bacillus thuringiensis Bt18247"],["NCBITaxon%3A1423142","Bacillus thuringiensis Bt18679"],["NCBITaxon%3A527021","Bacillus thuringiensis Bt407"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":16,"nb":79,"a":[["Pfam%3APF16822","SGNH hydrolase-like domain, acetyltransferase AlgX"],["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"],["Pfam%3APF11182","Alginate O-acetyl transferase AlgF"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF27129","Functional amyloid protein FapB/FapC family"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]],"b":[["NCBITaxon%3A1931223","Caballeronia sp."],["NCBITaxon%3A89065","Pseudomonas abietaniphila"],["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1123912","Pseudomonas auricularis"],["NCBITaxon%3A930166","Pseudomonas brassicacearum"],["NCBITaxon%3A129817","Pseudomonas brenneri"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":16,"nb":47,"a":[["Pfam%3APF05932","Tir chaperone protein (CesT) family"],["Pfam%3APF17656","FlgA N-terminal domain"],["Pfam%3APF22200","ExsA N-terminal regulatory domain"],["Pfam%3APF05171","Haemin-degrading HemS.ChuX domain"],["Pfam%3APF07201","HrpJ-like domain"],["Pfam%3APF04391","Protein of unknown function (DUF533)"]],"b":[["NCBITaxon%3A630","Yersinia enterocolitica"],["NCBITaxon%3A947561","Yersinia enterocolitica IP2222"],["NCBITaxon%3A1243181","Yersinia enterocolitica IP 10393"],["NCBITaxon%3A1443113","Yersinia enterocolitica LC20"],["NCBITaxon%3A947557","Yersinia enterocolitica NFO"],["NCBITaxon%3A150052","Yersinia enterocolitica subsp. enterocolitica"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":82,"a":[["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["Pfam%3APF14562","Restriction endonuclease BglI"],["Pfam%3APF09195","Restriction endonuclease BglII/BglIII"],["Pfam%3APF09208","Restriction endonuclease MspI"]],"b":[["NCBITaxon%3A1390","Bacillus amyloliquefaciens"],["NCBITaxon%3A1452","Bacillus atrophaeus"],["NCBITaxon%3A640707","Bacillus atrophaeus ATCC 9372"],["NCBITaxon%3A483913","Bacillus inaquosorum"],["NCBITaxon%3A1236548","Bacillus inaquosorum KCTC 13429"],["NCBITaxon%3A1402","Bacillus licheniformis"]]},{"id":"NCBITaxon:1360","l":"Lactococcus lactis subsp. lactis","na":14,"nb":25,"a":[["Pfam%3APF08951","Bacteriocin immunity protein family"],["Pfam%3APF08998","Bacterial epsilon antitoxin"],["Pfam%3APF25887","LcnD-like, long helical bundle domain"],["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF25940","LcnD-like, C-terminal domain"],["Pfam%3APF08129","Alpha/beta enterocin family"]],"b":[["NCBITaxon%3A1358","Lactococcus lactis"],["NCBITaxon%3A203404","Lactococcus lactis subsp. hordniae"],["NCBITaxon%3A1348656","Lactococcus lactis subsp. hordniae NBRC 100931"],["NCBITaxon%3A1360","Lactococcus lactis subsp. lactis"],["NCBITaxon%3A1379274","Lactococcus lactis subsp. lactis 1AA59"],["NCBITaxon%3A1137134","Lactococcus lactis subsp. lactis A12"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":297,"nb":13,"a":[["IDPO%3A0000002","disorder"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000045","phosphorylation display site"],["IDPO%3A0000059","self-inhibition"],["Pfam%3APF17837","4'-phosphopantetheinyl transferase N-terminal domain"]],"b":[["NCBITaxon%3A1773","Mycobacterium tuberculosis"],["NCBITaxon%3A83332","Mycobacterium tuberculosis H37Rv"],["NCBITaxon%3A747078","Mycobacterium tuberculosis H37Rv_2009"],["NCBITaxon%3A928249","Mycobacterium tuberculosis H37Rv_ideR_mutant_ST22"],["NCBITaxon%3A757417","Mycobacterium tuberculosis H37RvAE"],["NCBITaxon%3A757419","Mycobacterium tuberculosis H37RvCO"]]},{"id":"NCBITaxon:644","l":"Aeromonas hydrophila","na":13,"nb":44,"a":[["Pfam%3APF01117","Aerolysin toxin"],["Pfam%3APF03440","Aerolysin/Pertussis toxin (APT) domain"],["Pfam%3APF21327","GspA, peptidase C39-like domain"],["Pfam%3APF04231","Endonuclease I"],["PROSITE%3APS01092","Adenylate cyclase class-I signature 1"],["PROSITE%3APS01093","Adenylate cyclase class-I signature 2"]],"b":[["NCBITaxon%3A105751","Aeromonas bestiarum"],["NCBITaxon%3A648","Aeromonas caviae"],["NCBITaxon%3A196024","Aeromonas dhakensis"],["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A1073378","Aeromonas hydrophila 07-345-3437"],["NCBITaxon%3A1268075","Aeromonas hydrophila 116"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":13,"nb":32,"a":[["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF03173","Putative carbohydrate binding domain"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"],["Pfam%3APF06438","Heme-binding protein A (HasA)"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF05247","Flagellar transcriptional activator (FlhD)"]],"b":[["NCBITaxon%3A2703793","Serratia bockelmannii"],["NCBITaxon%3A615","Serratia marcescens"],["NCBITaxon%3A1257036","Serratia marcescens 12"],["NCBITaxon%3A1255611","Serratia marcescens 448"],["NCBITaxon%3A1333586","Serratia marcescens AB42556419-isolate1"],["NCBITaxon%3A1400186","Serratia marcescens BIDMC 44"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":13,"nb":27,"a":[["Pfam%3APF07832","Cfr10I/Bse634I restriction endonuclease"],["Pfam%3APF22348","Colicin-A N-terminal domain"],["Pfam%3APF01024","Colicin pore forming domain"],["Pfam%3APF18427","DD-reactivating factor swiveling domain"],["Pfam%3APF02286","Dehydratase large subunit"],["Pfam%3APF02288","Dehydratase medium subunit"]],"b":[["NCBITaxon%3A57706","Citrobacter braakii"],["NCBITaxon%3A1914243","Citrobacter europaeus"],["NCBITaxon%3A546","Citrobacter freundii"],["NCBITaxon%3A1173724","Citrobacter freundii 47N"],["NCBITaxon%3A742730","Citrobacter freundii 4_7_47CFAA"],["NCBITaxon%3A1444046","Citrobacter freundii 5-172-05_S1_C1"]]},{"id":"NCBITaxon:485","l":"Neisseria gonorrhoeae","na":12,"nb":90,"a":[["Pfam%3APF25860","Cryptic plasmid protein A"],["Pfam%3APF12852","Cupin"],["Pfam%3APF17845","FbpC C-terminal regulatory nucleotide binding domain"],["Pfam%3APF22443","FbpC-like, regulatory domain"],["Pfam%3APF18053","DNA gyrase B subunit insert domain"],["Pfam%3APF25885","EMRA, alpha-helical hairpin domain"]],"b":[["NCBITaxon%3A485","Neisseria gonorrhoeae"],["NCBITaxon%3A528345","Neisseria gonorrhoeae 1291"],["NCBITaxon%3A1193404","Neisseria gonorrhoeae 3502"],["NCBITaxon%3A528346","Neisseria gonorrhoeae 35/02"],["NCBITaxon%3A1352347","Neisseria gonorrhoeae ALB_2011_01-02"],["NCBITaxon%3A1351778","Neisseria gonorrhoeae ALB_2011_03_03"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":11,"nb":1075,"a":[["Pfam%3APF22829","HphA C-terminal domain"],["Pfam%3APF22828","HphA N-terminal heme-binding domain"],["Pfam%3APF28205","Ciprofloxacin tolerance protein"],["Pfam%3APF19582","Solute-binding protein AdeT 1/2"],["PROSITE%3APS00337","Beta-lactamase class-D active site"],["Pfam%3APF24575","Surface lipoprotein assembly modifier, N-terminal TPR repeats"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A1311139","Acinetobacter baumannii 016901DP_1"],["NCBITaxon%3A1311140","Acinetobacter baumannii 016901DP_2"],["NCBITaxon%3A1310784","Acinetobacter baumannii 1007214"],["NCBITaxon%3A1310751","Acinetobacter baumannii 1022959"],["NCBITaxon%3A1310586","Acinetobacter baumannii 1031433"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":10,"nb":5776,"a":[["TED%3AAF-A0A5T2E4X7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5T2E4X7-F1-model_v4_TED01"],["TED%3AAF-A0A5Y4BP44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Y4BP44-F1-model_v4_TED01"],["TED%3AAF-A0A623P6F3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A623P6F3-F1-model_v4_TED02"],["TED%3AAF-A0A721BDS7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A721BDS7-F1-model_v4_TED02"],["TED%3AAF-A0A743P324-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A743P324-F1-model_v4_TED01"],["TED%3AAF-A0A757VWR3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A757VWR3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A54736","Salmonella bongori"],["NCBITaxon%3A218493","Salmonella bongori NCTC 12419"],["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59203","Salmonella enterica subsp. arizonae"],["NCBITaxon%3A2577126","Salmonella enterica subsp. arizonae serovar 11:z4,z23:-"],["NCBITaxon%3A2577127","Salmonella enterica subsp. arizonae serovar 13,22:z4,z23:-"]]},{"id":"NCBITaxon:1496","l":"Clostridioides difficile","na":10,"nb":296,"a":[["Pfam%3APF18671","4-Hydroxyphenylacetate decarboxylase subunit gamma N-terminal"],["Pfam%3APF00302","Chloramphenicol acetyltransferase"],["Pfam%3APF18524","High potential iron-sulfur protein like"],["Pfam%3APF06050","2-hydroxyglutaryl-CoA dehydratase, D-component"],["PROSITE%3APS00100","Chloramphenicol acetyltransferase active site"],["Pfam%3APF01473","Putative cell wall binding repeat"]],"b":[["NCBITaxon%3A1496","Clostridioides difficile"],["NCBITaxon%3A997827","Clostridioides difficile 002-P50-2011"],["NCBITaxon%3A997828","Clostridioides difficile 050-P50-2011"],["NCBITaxon%3A699033","Clostridioides difficile 2007855"],["NCBITaxon%3A1151306","Clostridioides difficile 342"],["NCBITaxon%3A1151307","Clostridioides difficile 360"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":10,"nb":28,"a":[["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF09081","Glucan 1,4-alpha-maltotetraohydrolase, domain C"],["Pfam%3APF09459","Ethylbenzene dehydrogenase"],["Pfam%3APF08406","CbbQ/NirQ/NorQ C-terminal"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"],["Pfam%3APF18793","Nitrous oxide reductase propeller repeat 2"]],"b":[["NCBITaxon%3A729","Haemophilus parainfluenzae"],["NCBITaxon%3A43306","Pseudomonas denitrificans (nom. rej.)"],["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A203192","Stutzerimonas chloritidismutans"],["NCBITaxon%3A3022791","Stutzerimonas decontaminans"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":20,"nb":10,"a":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF27529","AMPT"],["Pfam%3APF24856","L-arabinose isomerase central domain"],["Pfam%3APF02610","L-arabinose isomerase N-terminal domain"],["Pfam%3APF11762","L-arabinose isomerase C-terminal domain"],["Pfam%3APF17727","CtsR C-terminal dimerization domain"]],"b":[["NCBITaxon%3A1891658","Geobacillus sp."],["NCBITaxon%3A1422","Geobacillus stearothermophilus"],["NCBITaxon%3A272567","Geobacillus stearothermophilus 10"],["NCBITaxon%3A1366047","Geobacillus stearothermophilus ATCC 12980"],["NCBITaxon%3A937593","Geobacillus stearothermophilus ATCC 7953"],["NCBITaxon%3A664733","Geobacillus stearothermophilus C56-N21"]]},{"id":"NCBITaxon:387","l":"Rhizobium leguminosarum bv. viciae","na":10,"nb":15,"a":[["Pfam%3APF27444","Uridylyltransferase GlnD third domain"],["Pfam%3APF08335","GlnD PII-uridylyltransferase"],["Pfam%3APF19335","Heavy metal binding domain"],["Pfam%3APF22521","Carbamoyltransferase, Kae1-like Domain, second subdomain"],["Pfam%3APF17788","HypF Kae1-like domain"],["Pfam%3APF04955","HupE / UreJ protein"]],"b":[["NCBITaxon%3A387","Rhizobium leguminosarum bv. viciae"],["NCBITaxon%3A1041141","Rhizobium leguminosarum bv. viciae 128C53"],["NCBITaxon%3A936136","Rhizobium leguminosarum bv. viciae 248"],["NCBITaxon%3A1041142","Rhizobium leguminosarum bv. viciae GB30"],["NCBITaxon%3A1079454","Rhizobium leguminosarum bv. viciae Ps8"],["NCBITaxon%3A935553","Rhizobium leguminosarum bv. viciae TOM"]]},{"id":"NCBITaxon:210","l":"Helicobacter pylori","na":9,"nb":631,"a":[["Pfam%3APF18025","Alpha-(1,3)-fucosyltransferase FucT N-terminal domain"],["Pfam%3APF18971","CagA protein"],["Pfam%3APF03507","CagA exotoxin phosphopeptide substrate mimic region"],["Pfam%3APF02691","Vacuolating cyotoxin beta-helical domain"],["TED%3AAF-A0A2T6UWI4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T6UWI4-F1-model_v4_TED01"],["TED%3AAF-A0A1Q9JB12-F1-model_v4_TED01","TED novel fold AF-A0A1Q9JB12-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A210","Helicobacter pylori"],["NCBITaxon%3A1028810","Helicobacter pylori 10700"],["NCBITaxon%3A585532","Helicobacter pylori 118"],["NCBITaxon%3A102610","Helicobacter pylori #12"],["NCBITaxon%3A585533","Helicobacter pylori 120"],["NCBITaxon%3A103187","Helicobacter pylori 15818"]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":9,"nb":389,"a":[["Pfam%3APF19567","Capsular polysaccharide synthesis, CpsB/CapC"],["Pfam%3APF07501","G5 domain"],["Pfam%3APF13551","Winged helix-turn helix"],["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF03047","COMC family"],["Pfam%3APF04556","DpnII restriction endonuclease"]],"b":[["NCBITaxon%3A1503055","Burkholderia territorii"],["NCBITaxon%3A1270","Micrococcus luteus"],["NCBITaxon%3A465515","Micrococcus luteus NCTC 2665"],["NCBITaxon%3A33051","Sphingomonas sanguinis"],["NCBITaxon%3A1219054","Sphingomonas sanguinis NBRC 13937"],["NCBITaxon%3A1313","Streptococcus pneumoniae"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":9,"nb":176,"a":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF25954","CusB-like, beta-barrel domain"],["Pfam%3APF13438","Domain of unknown function (DUF4113)"],["Pfam%3APF03767","HAD superfamily, subfamily IIIB (Acid phosphatase)"],["Pfam%3APF03496","ADP-ribosyltransferase exoenzyme"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A90371","Salmonella enterica subsp. enterica serovar Typhimurium"],["NCBITaxon%3A1173928","Salmonella enterica subsp. enterica serovar Typhimurium str. 0052"],["NCBITaxon%3A1114946","Salmonella enterica subsp. enterica serovar Typhimurium str. 00-01036"],["NCBITaxon%3A1173930","Salmonella enterica subsp. enterica serovar Typhimurium str. 0364"]]},{"id":"NCBITaxon:1898207","l":"Clostridiales bacterium","na":63,"nb":9,"a":[["TED%3AAF-A0A239QGX8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A239QGX8-F1-model_v4_TED02"],["TED%3AAF-A0A2V2DI93-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V2DI93-F1-model_v4_TED02"],["TED%3AAF-A0A2V2EHK5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V2EHK5-F1-model_v4_TED02"],["TED%3AAF-A0A2V2G296-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2V2G296-F1-model_v4_TED03"],["TED%3AAF-A0A316P962-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A316P962-F1-model_v4_TED03"],["TED%3AAF-A0A316PDC9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A316PDC9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1898207","Clostridiales bacterium"],["NCBITaxon%3A3070003","Clostridiales bacterium T6-6.105"],["NCBITaxon%3A3070004","Clostridiales bacterium T6-6.35"],["NCBITaxon%3A3070005","Clostridiales bacterium T6-6.39"],["NCBITaxon%3A3070006","Clostridiales bacterium T6-7.35"],["NCBITaxon%3A3070007","Clostridiales bacterium T6-7.60"]]},{"id":"NCBITaxon:818","l":"Bacteroides thetaiotaomicron","na":9,"nb":32,"a":[["Pfam%3APF09093","Lyase, catalytic"],["TED%3AAF-A0A174W9M0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A174W9M0-F1-model_v4_TED01"],["TED%3AAF-A0A679HCU6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A679HCU6-F1-model_v4_TED01"],["TED%3AAF-A0A139L295-F1-model_v4_TED04","TED novel fold AF-A0A139L295-F1-model_v4_TED04"],["TED%3AAF-A0A174QBB7-F1-model_v4_TED02","TED novel fold AF-A0A174QBB7-F1-model_v4_TED02"],["TED%3AAF-A0A679H9T4-F1-model_v4_TED03","TED novel fold AF-A0A679H9T4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A47678","Bacteroides caccae"],["NCBITaxon%3A411901","Bacteroides caccae ATCC 43185"],["NCBITaxon%3A29523","Bacteroides sp."],["NCBITaxon%3A818","Bacteroides thetaiotaomicron"],["NCBITaxon%3A1263054","Bacteroides thetaiotaomicron CAG:40"],["NCBITaxon%3A1235785","Bacteroides thetaiotaomicron dnLKV9"]]},{"id":"NCBITaxon:192222","l":"Campylobacter jejuni subsp. jejuni NCTC 11168 = ATCC 700819","na":10,"nb":9,"a":[["Pfam%3APF26365","Apolipoprotein N-acyltransferase integral membrane domain"],["Pfam%3APF22131","CRISPR-associated endonuclease CjCas9 PI-CTD domain"],["Pfam%3APF22129","CRISPR-associated endonuclease CjCas9 wedge domain"],["Pfam%3APF02554","Carbon starvation protein CstA"],["Pfam%3APF27310","HrcA C-terminal domain"],["Pfam%3APF05538","Campylobacter major outer membrane protein"]],"b":[["NCBITaxon%3A197","Campylobacter jejuni"],["NCBITaxon%3A192222","Campylobacter jejuni subsp. jejuni NCTC 11168 = ATCC 700819"],["NCBITaxon%3A1211776","Campylobacter jejuni subsp. jejuni NCTC 11168-BN148"],["NCBITaxon%3A1385724","Campylobacter jejuni subsp. jejuni NCTC 11168-GSv"],["NCBITaxon%3A1385720","Campylobacter jejuni subsp. jejuni NCTC 11168-K12E5"],["NCBITaxon%3A1385723","Campylobacter jejuni subsp. jejuni NCTC 11168-Kf1"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":8,"nb":375,"a":[["Pfam%3APF01721","Class II bacteriocin"],["Pfam%3APF13700","Domain of unknown function (DUF4158)"],["Pfam%3APF07478","D-ala D-ala ligase C-terminus"],["Pfam%3APF01820","D-ala D-ala ligase N-terminus"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"],["PROSITE%3APS00843","D-alanine--D-alanine ligase signature 1"]],"b":[["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A1352","Enterococcus faecium"],["NCBITaxon%3A1391465","Enterococcus faecium 10/96A"],["NCBITaxon%3A1259824","Enterococcus faecium 13.SD.W.09"],["NCBITaxon%3A1429401","Enterococcus faecium 17282"],["NCBITaxon%3A565659","Enterococcus faecium 1,141,733"]]},{"id":"NCBITaxon:99287","l":"Salmonella typhimurium (strain LT2 / SGSC1412 / ATCC 700720)","na":167,"nb":8,"a":[["Pfam%3APF16031","TonB polyproline region"],["Pfam%3APF13521","AAA domain"],["Pfam%3APF26341","tRNA 2-selenouridine synthase AAA domain"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"],["Pfam%3APF09317","Acyl-CoA dehydrogenase, C-terminal, bacterial type"],["Pfam%3APF06315","Isocitrate dehydrogenase kinase/phosphatase (AceK) kinase domain"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A588858","Salmonella enterica subsp. enterica serovar Typhimurium str. 14028S"],["NCBITaxon%3A1094461","Salmonella enterica subsp. enterica serovar Typhimurium str. G455"],["NCBITaxon%3A99287","Salmonella enterica subsp. enterica serovar Typhimurium str. LT2"],["NCBITaxon%3A1159899","Salmonella enterica subsp. enterica serovar Typhimurium str. LT2-4"]]},{"id":"NCBITaxon:1359","l":"Lactococcus cremoris","na":8,"nb":24,"a":[["Pfam%3APF16873","Putative abortive phage resistance protein AbiGii toxin"],["Pfam%3APF21368","AI2M/AI1M-like, HNH endonuclease"],["Pfam%3APF09136","Glucodextranase, domain B"],["Pfam%3APF10899","Putative abortive phage resistance protein AbiGi, antitoxin"],["Pfam%3APF04556","DpnII restriction endonuclease"],["Pfam%3APF04369","Lactococcin-like family"]],"b":[["NCBITaxon%3A1359","Lactococcus cremoris"],["NCBITaxon%3A1286879","Lactococcus cremoris HB61"],["NCBITaxon%3A1286880","Lactococcus cremoris HB63"],["NCBITaxon%3A2816960","Lactococcus cremoris subsp. cremoris"],["NCBITaxon%3A1104322","Lactococcus cremoris subsp. cremoris A76"],["NCBITaxon%3A1415168","Lactococcus cremoris subsp. cremoris GE214"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":14,"nb":8,"a":[["Pfam%3APF03703","Bacterial PH domain"],["Pfam%3APF01322","Cytochrome C'"],["Pfam%3APF03139","Vanadium/alternative nitrogenase delta subunit"],["Pfam%3APF09527","Putative F0F1-ATPase subunit Ca2+/Mg2+ transporter"],["Pfam%3APF03270","Protein of unknown function, DUF269"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"]],"b":[["NCBITaxon%3A1061","Rhodobacter capsulatus"],["NCBITaxon%3A1415162","Rhodobacter capsulatus B6"],["NCBITaxon%3A1415160","Rhodobacter capsulatus DE442"],["NCBITaxon%3A1415163","Rhodobacter capsulatus R121"],["NCBITaxon%3A272942","Rhodobacter capsulatus SB 1003"],["NCBITaxon%3A1415161","Rhodobacter capsulatus Y262"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":8,"nb":14,"a":[["Pfam%3APF01890","Cobalamin synthesis G C-terminus"],["Pfam%3APF11761","Cobalamin biosynthesis central region"],["Pfam%3APF11760","Cobalamin synthesis G N-terminal"],["Pfam%3APF02570","Precorrin-8X methylmutase"],["PROSITE%3APS00304","Small, acid-soluble spore proteins, alpha/beta type, signature 1"],["PROSITE%3APS00684","Small, acid-soluble spore proteins, alpha/beta type, signature 2"]],"b":[["NCBITaxon%3A72360","Bacillus mojavensis"],["NCBITaxon%3A1051501","Bacillus mojavensis RO-H-1 = KCTC 3706"],["NCBITaxon%3A1478","Peribacillus simplex"],["NCBITaxon%3A86664","Priestia flexa"],["NCBITaxon%3A1404","Priestia megaterium"],["NCBITaxon%3A592022","Priestia megaterium DSM 319"]]},{"id":"NCBITaxon:555","l":"Pectobacterium carotovorum subsp. carotovorum","na":8,"nb":12,"a":[["Pfam%3APF09147","Carbapenam-3-carboxylate synthase, N-terminal"],["Pfam%3APF00942","Cellulose binding domain"],["Pfam%3APF04287","tRNA pseudouridine synthase C"],["Pfam%3APF04347","Flagellar biosynthesis protein, FliO"],["PROSITE%3APS01061","Flagella transport protein fliP family signature 2"],["PROSITE%3APS00874","Bacterial type II secretion system protein F signature"]],"b":[["NCBITaxon%3A46161","Actinomadura kijaniata"],["NCBITaxon%3A1220561","Actinomadura kijaniata NBRC 14229"],["NCBITaxon%3A1201031","Pectobacterium aroidearum"],["NCBITaxon%3A554","Pectobacterium carotovorum"],["NCBITaxon%3A555","Pectobacterium carotovorum subsp. carotovorum"],["NCBITaxon%3A1267545","Pectobacterium carotovorum subsp. carotovorum ICMP 5702"]]},{"id":"NCBITaxon:1265","l":"Ruminococcus flavefaciens","na":8,"nb":9,"a":[["TED%3AAF-A0A1H6I5C3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1H6I5C3-F1-model_v4_TED03"],["TED%3AAF-A0A1K2AQV3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1K2AQV3-F1-model_v4_TED01"],["TED%3AAF-A0A1M7IZN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M7IZN6-F1-model_v4_TED01"],["TED%3AAF-A0A1H6IY18-F1-model_v4_TED01","TED novel fold AF-A0A1H6IY18-F1-model_v4_TED01"],["TED%3AAF-A0A1K1WYY5-F1-model_v4_TED01","TED novel fold AF-A0A1K1WYY5-F1-model_v4_TED01"],["TED%3AAF-A0A1K2C3A7-F1-model_v4_TED01","TED novel fold AF-A0A1K2C3A7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1265","Ruminococcus flavefaciens"],["NCBITaxon%3A1341157","Ruminococcus flavefaciens 007c"],["NCBITaxon%3A1030842","Ruminococcus flavefaciens 17"],["NCBITaxon%3A1384066","Ruminococcus flavefaciens AE3010"],["NCBITaxon%3A1336236","Ruminococcus flavefaciens ATCC 19208"],["NCBITaxon%3A1313302","Ruminococcus flavefaciens B34b"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":8,"nb":8,"a":[["Pfam%3APF02927","Cellulase N-terminal ig-like domain"],["Pfam%3APF00404","Dockerin type I domain"],["PROSITE%3APS00448","Clostridium cellulosome enzymes repeated domain signature"],["PROSITE%3APS60032","Glycosyl hydrolases family 9 (GH9) active site signature 1"],["PROSITE%3APS00592","Glycosyl hydrolases family 9 (GH9) active site signature 2"],["PROSITE%3APS00698","Glycosyl hydrolases family 9 (GH9) active site signature 3"]],"b":[["NCBITaxon%3A1515","Acetivibrio thermocellus"],["NCBITaxon%3A1138384","Acetivibrio thermocellus AD2"],["NCBITaxon%3A203119","Acetivibrio thermocellus ATCC 27405"],["NCBITaxon%3A1349417","Acetivibrio thermocellus BC1"],["NCBITaxon%3A637887","Acetivibrio thermocellus DSM 1313"],["NCBITaxon%3A572545","Acetivibrio thermocellus DSM 2360"]]},{"id":"NCBITaxon:1314","l":"Streptococcus pyogenes","na":7,"nb":839,"a":[["Pfam%3APF13585","CHU_C Type IX secretion signal domain"],["Pfam%3APF24547","Domain of unknown function (DUF7601)"],["Pfam%3APF08998","Bacterial epsilon antitoxin"],["Pfam%3APF06280","Fn3-like domain"],["Pfam%3APF02274","Arginine deiminase"],["Pfam%3APF13734","Spi protease inhibitor"]],"b":[["NCBITaxon%3A45634","Streptococcus cristatus"],["NCBITaxon%3A1314","Streptococcus pyogenes"],["NCBITaxon%3A1050217","Streptococcus pyogenes 005-D5"],["NCBITaxon%3A1210041","Streptococcus pyogenes 06BA18369"],["NCBITaxon%3A1235829","Streptococcus pyogenes A20"],["NCBITaxon%3A562016","Streptococcus pyogenes AA216"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":7,"nb":216,"a":[["Pfam%3APF04439","Streptomycin adenylyltransferase"],["TED%3AAF-A0A696J2C3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A696J2C3-F1-model_v4_TED01"],["TED%3AAF-A0A825M6H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A825M6H4-F1-model_v4_TED01"],["TED%3AAF-A0A5T0SBG5-F1-model_v4_TED01","TED novel fold AF-A0A5T0SBG5-F1-model_v4_TED01"],["TED%3AAF-A0A698JVM3-F1-model_v4_TED03","TED novel fold AF-A0A698JVM3-F1-model_v4_TED03"],["TED%3AAF-A0A824N1N8-F1-model_v4_TED01","TED novel fold AF-A0A824N1N8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A863522","Bryocella elongata"],["NCBITaxon%3A195","Campylobacter coli"],["NCBITaxon%3A197","Campylobacter jejuni"],["NCBITaxon%3A1365653","Campylobacter jejuni 10186"],["NCBITaxon%3A1365189","Campylobacter jejuni 10187"],["NCBITaxon%3A1327986","Campylobacter jejuni 10227"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":7,"nb":35,"a":[["Pfam%3APF19443","DAHL domain"],["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"],["Pfam%3APF03524","Conjugal transfer protein"],["Pfam%3APF27439","Chaperone protein DnaJ C-terminal region"],["Pfam%3APF10907","Protein of unknown function (DUF2749)"],["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]],"b":[["NCBITaxon%3A1183421","Agrobacterium fabacearum CFBP 5771"],["NCBITaxon%3A1300224","Agrobacterium fabacearum P4"],["NCBITaxon%3A1183429","Agrobacterium fabacearum S56"],["NCBITaxon%3A1368455","Agrobacterium fabacearum str. Foundi"],["NCBITaxon%3A1183430","Agrobacterium fabacearum TT111"],["NCBITaxon%3A1176649","Agrobacterium fabrum"]]},{"id":"NCBITaxon:28116","l":"Bacteroides ovatus","na":7,"nb":33,"a":[["TED%3AAF-A0A515J030-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A515J030-F1-model_v4_TED01"],["TED%3AAF-A0A5M5C3M7-F1-model_v4_TED01","TED novel fold AF-A0A5M5C3M7-F1-model_v4_TED01"],["TED%3AAF-A0A641PL20-F1-model_v4_TED01","TED novel fold AF-A0A641PL20-F1-model_v4_TED01"],["TED%3AAF-A0A641V3P9-F1-model_v4_TED03","TED novel fold AF-A0A641V3P9-F1-model_v4_TED03"],["TED%3AAF-A0A641VT79-F1-model_v4_TED01","TED novel fold AF-A0A641VT79-F1-model_v4_TED01"],["TED%3AAF-A0A642C648-F1-model_v4_TED01","TED novel fold AF-A0A642C648-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28116","Bacteroides ovatus"],["NCBITaxon%3A665954","Bacteroides ovatus 3_8_47FAA"],["NCBITaxon%3A411476","Bacteroides ovatus ATCC 8483"],["NCBITaxon%3A1263050","Bacteroides ovatus CAG:22"],["NCBITaxon%3A997885","Bacteroides ovatus CL02T12C04"],["NCBITaxon%3A997886","Bacteroides ovatus CL03T12C18"]]},{"id":"NCBITaxon:1305","l":"Streptococcus sanguinis","na":7,"nb":27,"a":[["Pfam%3APF09254","FokI, cleavage domain"],["Pfam%3APF02981","FokI, recognition domain, subdomain 1"],["Pfam%3APF02980","FokI, recognition domain, subdomain 2"],["Pfam%3APF07501","G5 domain"],["Pfam%3APF07581","The GLUG motif"],["TED%3AAF-A0A7H8V358-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H8V358-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1302","Streptococcus gordonii"],["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1305","Streptococcus sanguinis"],["NCBITaxon%3A1247655","Streptococcus sanguinis ATCC 15914"],["NCBITaxon%3A997356","Streptococcus sanguinis ATCC 29667"],["NCBITaxon%3A1073373","Streptococcus sanguinis CC94A"]]},{"id":"NCBITaxon:83558","l":"Chlamydia pneumoniae","na":22,"nb":7,"a":[["Pfam%3APF01308","Chlamydia major outer membrane protein"],["Pfam%3APF27167","GRAD helix-turn-helix domain"],["Pfam%3APF03503","Chlamydia cysteine-rich outer membrane protein 3"],["Pfam%3APF03504","Chlamydia cysteine-rich outer membrane protein 6"],["Pfam%3APF07548","Chlamydia polymorphic membrane protein middle domain"],["Pfam%3APF28261","Uncharacterized protein CT_504-like"]],"b":[["NCBITaxon%3A83558","Chlamydia pneumoniae"],["NCBITaxon%3A115711","Chlamydia pneumoniae AR39"],["NCBITaxon%3A1430897","Chlamydia pneumoniae B21"],["NCBITaxon%3A115713","Chlamydia pneumoniae CWL029"],["NCBITaxon%3A138677","Chlamydia pneumoniae J138"],["NCBITaxon%3A406984","Chlamydia pneumoniae LPCoLN"]]},{"id":"NCBITaxon:837","l":"Porphyromonas gingivalis","na":7,"nb":22,"a":[["Pfam%3APF07675","Cleaved Adhesin Domain"],["Pfam%3APF22492","FimA4 pilin C-terminal domain"],["Pfam%3APF15495","Major fimbrial subunit protein type IV, Fimbrillin, C-terminal"],["Pfam%3APF26306","FimD protein third domain"],["Pfam%3APF27397","FimE C-terminal domain"],["Pfam%3APF10365","Domain of unknown function (DUF2436)"]],"b":[["NCBITaxon%3A837","Porphyromonas gingivalis"],["NCBITaxon%3A1403335","Porphyromonas gingivalis 381"],["NCBITaxon%3A1403337","Porphyromonas gingivalis A7436"],["NCBITaxon%3A1403338","Porphyromonas gingivalis A7A1-28"],["NCBITaxon%3A1403336","Porphyromonas gingivalis AJW4"],["NCBITaxon%3A431947","Porphyromonas gingivalis ATCC 33277"]]},{"id":"NCBITaxon:1911","l":"Streptomyces griseus","na":7,"nb":20,"a":[["Pfam%3APF13207","AAA domain"],["Pfam%3APF27054","Beta-methylindole-3-pyruvate reductase C-terminal domain"],["Pfam%3APF26558","3-dehydroquinate synthase II C-terminal domain"],["Pfam%3APF01959","3-dehydroquinate synthase II N-terminal domain"],["Pfam%3APF13459","4Fe-4S single cluster domain"],["Pfam%3APF04655","Aminoglycoside/hydroxyurea antibiotic resistance kinase"]],"b":[["NCBITaxon%3A1884","Streptomyces acrimycini"],["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A67274","Streptomyces argenteolus"],["NCBITaxon%3A1896","Streptomyces bikiniensis"],["NCBITaxon%3A90079","Streptomyces caviscabies"],["NCBITaxon%3A66883","Streptomyces cyaneofuscatus"]]},{"id":"NCBITaxon:672","l":"Vibrio vulnificus","na":7,"nb":19,"a":[["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF08021","Siderophore-interacting FAD-binding domain"],["Pfam%3APF11575","FhuF 2Fe-2S C-terminal domain"],["Pfam%3APF27349","IcsB middle domain"],["Pfam%3APF21735","C-terminal repeat from RTX toxins"],["Pfam%3APF07634","RtxA repeat"]],"b":[["NCBITaxon%3A678","Vibrio sp."],["NCBITaxon%3A672","Vibrio vulnificus"],["NCBITaxon%3A701179","Vibrio vulnificus 06-2450"],["NCBITaxon%3A1246308","Vibrio vulnificus 96-11-17M"],["NCBITaxon%3A1246309","Vibrio vulnificus A1402"],["NCBITaxon%3A1229202","Vibrio vulnificus B2"]]},{"id":"NCBITaxon:624","l":"Shigella sonnei","na":7,"nb":15,"a":[["Pfam%3APF01024","Colicin pore forming domain"],["Pfam%3APF09019","EcoRII C terminal"],["Pfam%3APF26304","FliM/N C-terminal related"],["Pfam%3APF13384","Homeodomain-like domain"],["Pfam%3APF02090","Salmonella surface presentation of antigen gene type M protein"],["Pfam%3APF03519","Invasion protein B family"]],"b":[["NCBITaxon%3A624","Shigella sonnei"],["NCBITaxon%3A1212580","Shigella sonnei 08-7761"],["NCBITaxon%3A1212581","Shigella sonnei 08-7765"],["NCBITaxon%3A1212582","Shigella sonnei 09-1032"],["NCBITaxon%3A1212583","Shigella sonnei 09-2245"],["NCBITaxon%3A1212584","Shigella sonnei 09-4962"]]},{"id":"NCBITaxon:1510","l":"Thermoclostridium stercorarium","na":7,"nb":8,"a":[["Pfam%3APF07523","Bacterial Ig-like domain (group 3)"],["Pfam%3APF03442","Carbohydrate binding domain X2"],["Pfam%3APF00457","Glycosyl hydrolases family 11"],["Pfam%3APF03422","Carbohydrate binding module (family 6)"],["PROSITE%3APS00776","Glycosyl hydrolases family 11 (GH11) active site signature 1"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"]],"b":[["NCBITaxon%3A1510","Thermoclostridium stercorarium"],["NCBITaxon%3A160385","Thermoclostridium stercorarium subsp. leptospartum"],["NCBITaxon%3A1346611","Thermoclostridium stercorarium subsp. leptospartum DSM 9219"],["NCBITaxon%3A160845","Thermoclostridium stercorarium subsp. stercorarium"],["NCBITaxon%3A1121335","Thermoclostridium stercorarium subsp. stercorarium DSM 8532"],["NCBITaxon%3A29351","Thermoclostridium stercorarium subsp. thermolacticum"]]},{"id":"NCBITaxon:37734","l":"Enterococcus casseliflavus","na":7,"nb":8,"a":[["PROSITE%3APS00843","D-alanine--D-alanine ligase signature 1"],["PROSITE%3APS00844","D-alanine--D-alanine ligase signature 2"],["TED%3AAF-A0A1V3NEA6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1V3NEA6-F1-model_v4_TED03"],["TED%3AAF-A0A377MP00-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A377MP00-F1-model_v4_TED01"],["TED%3AAF-A0A377KTN3-F1-model_v4_TED02","TED novel fold AF-A0A377KTN3-F1-model_v4_TED02"],["TED%3AAF-A0A377MJ12-F1-model_v4_TED01","TED novel fold AF-A0A377MJ12-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A37734","Enterococcus casseliflavus"],["NCBITaxon%3A1259825","Enterococcus casseliflavus 14-MB-W-14"],["NCBITaxon%3A888066","Enterococcus casseliflavus ATCC 12755"],["NCBITaxon%3A1158603","Enterococcus casseliflavus ATCC 49996"],["NCBITaxon%3A565654","Enterococcus casseliflavus EC10"],["NCBITaxon%3A565655","Enterococcus casseliflavus EC20"]]},{"id":"NCBITaxon:1307","l":"Streptococcus suis","na":6,"nb":145,"a":[["TED%3AAF-A0A0Z8XA17-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0Z8XA17-F1-model_v4_TED02"],["TED%3AAF-A0A116R309-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A116R309-F1-model_v4_TED02"],["TED%3AAF-A0A3R8SIF2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R8SIF2-F1-model_v4_TED01"],["TED%3AAF-A0A0Z8H9E5-F1-model_v4_TED02","TED novel fold AF-A0A0Z8H9E5-F1-model_v4_TED02"],["TED%3AAF-A0A4T2GPV6-F1-model_v4_TED02","TED novel fold AF-A0A4T2GPV6-F1-model_v4_TED02"],["TED%3AAF-A0A7G1JVZ6-F1-model_v4_TED02","TED novel fold AF-A0A7G1JVZ6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A229549","Streptococcus minor"],["NCBITaxon%3A82806","Streptococcus ovis"],["NCBITaxon%3A1307","Streptococcus suis"],["NCBITaxon%3A672190","Streptococcus suis 05HAS68"],["NCBITaxon%3A391295","Streptococcus suis 05ZYH33"],["NCBITaxon%3A1214149","Streptococcus suis 07SC3"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":6,"nb":101,"a":[["Pfam%3APF16376","N-terminal domain of fragilysin"],["TED%3AAF-A0A412XR06-F1-model_v4_TED03","TED novel fold AF-A0A412XR06-F1-model_v4_TED03"],["TED%3AAF-A0A4V1EUI2-F1-model_v4_TED02","TED novel fold AF-A0A4V1EUI2-F1-model_v4_TED02"],["TED%3AAF-A0A5C6IXH5-F1-model_v4_TED01","TED novel fold AF-A0A5C6IXH5-F1-model_v4_TED01"],["TED%3AAF-A0A5C6L6G9-F1-model_v4_TED02","TED novel fold AF-A0A5C6L6G9-F1-model_v4_TED02"],["TED%3AAF-A0A642KY52-F1-model_v4_TED01","TED novel fold AF-A0A642KY52-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A817","Bacteroides fragilis"],["NCBITaxon%3A457424","Bacteroides fragilis 3_1_12"],["NCBITaxon%3A862962","Bacteroides fragilis 638R"],["NCBITaxon%3A1308728","Bacteroides fragilis ADL-402"],["NCBITaxon%3A1263046","Bacteroides fragilis CAG:47"],["NCBITaxon%3A1263047","Bacteroides fragilis CAG:558"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":6,"nb":66,"a":[["Pfam%3APF01177","Asp/Glu/Hydantoin racemase"],["Pfam%3APF11339","Protein of unknown function (DUF3141)"],["PROSITE%3APS01303","BCCT family of transporters signature"],["PROSITE%3APS00665","Dihydrodipicolinate synthase signature 1"],["TED%3AAF-A0A2J0YSD4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J0YSD4-F1-model_v4_TED01"],["TED%3AAF-A0A843ZNG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843ZNG8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A382","Sinorhizobium meliloti"],["NCBITaxon%3A266834","Sinorhizobium meliloti 1021"],["NCBITaxon%3A1194706","Sinorhizobium meliloti 1A42"],["NCBITaxon%3A1286640","Sinorhizobium meliloti 2011"],["NCBITaxon%3A1041151","Sinorhizobium meliloti 4H41"],["NCBITaxon%3A1194707","Sinorhizobium meliloti 5A14"]]},{"id":"NCBITaxon:40324","l":"Stenotrophomonas maltophilia","na":6,"nb":44,"a":[["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["TED%3AAF-A0A2U4H7T5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2U4H7T5-F1-model_v4_TED02"],["TED%3AAF-A0A2W6G5X3-F1-model_v4_TED01","TED novel fold AF-A0A2W6G5X3-F1-model_v4_TED01"],["TED%3AAF-A0A2W6IKS3-F1-model_v4_TED02","TED novel fold AF-A0A2W6IKS3-F1-model_v4_TED02"],["TED%3AAF-A0A7D0KRT5-F1-model_v4_TED03","TED novel fold AF-A0A7D0KRT5-F1-model_v4_TED03"],["TED%3AAF-A0A7T8PWR1-F1-model_v4_TED05","TED novel fold AF-A0A7T8PWR1-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A13689","Sphingomonas paucimobilis"],["NCBITaxon%3A1292134","Stenotrophomonas africana"],["NCBITaxon%3A3384461","Stenotrophomonas beteli"],["NCBITaxon%3A86189","Stenotrophomonas hibiscicola"],["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A1288954","Stenotrophomonas maltophilia 503"]]},{"id":"NCBITaxon:727","l":"Haemophilus influenzae","na":6,"nb":43,"a":[["Pfam%3APF06808","Tripartite ATP-independent periplasmic transporter, DctM component"],["Pfam%3APF04290","Tripartite ATP-independent periplasmic transporters, DctQ component"],["Pfam%3APF09226","Restriction endonuclease HincII"],["Pfam%3APF09520","Type II restriction endonuclease, HinfI"],["Pfam%3APF24077","Immunoglobulin A1 protease autotransporter domain 2"],["PROSITE%3APS01068","OmpA-like domain"]],"b":[["NCBITaxon%3A727","Haemophilus influenzae"],["NCBITaxon%3A862964","Haemophilus influenzae 10810"],["NCBITaxon%3A1232659","Haemophilus influenzae 2019"],["NCBITaxon%3A374927","Haemophilus influenzae 22.1-21"],["NCBITaxon%3A520729","Haemophilus influenzae 22.1-24"],["NCBITaxon%3A375063","Haemophilus influenzae 22.4-21"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":6,"nb":33,"a":[["Pfam%3APF14525","AraC-binding-like domain"],["Pfam%3APF06139","BphX-like"],["Pfam%3APF13340","Putative transposase of IS4/5 family (DUF4096)"],["Pfam%3APF11794","4-hydroxyphenylacetate 3-hydroxylase N terminal"],["Pfam%3APF03241","4-hydroxyphenylacetate 3-hydroxylase C terminal"],["TED%3AAF-A0A4S3H3T1-F1-model_v4_TED02","TED novel fold AF-A0A4S3H3T1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A85698","Achromobacter xylosoxidans"],["NCBITaxon%3A152480","Burkholderia ambifaria"],["NCBITaxon%3A179879","Burkholderia anthina"],["NCBITaxon%3A488730","Burkholderia arboris"],["NCBITaxon%3A95486","Burkholderia cenocepacia"],["NCBITaxon%3A292","Burkholderia cepacia"]]},{"id":"NCBITaxon:1390","l":"Bacillus amyloliquefaciens","na":6,"nb":29,"a":[["Pfam%3APF02923","Restriction endonuclease BamHI"],["Pfam%3APF01337","Barstar (barnase inhibitor)"],["Pfam%3APF22148","Fervidolysin N-terminal prodomain"],["PROSITE%3APS00093","N-4 cytosine-specific DNA methylases signature"],["PROSITE%3APS01334","Pyrrolidone-carboxylate peptidase cysteine active site"],["PROSITE%3APS01333","Pyrrolidone-carboxylate peptidase glutamic acid active site"]],"b":[["NCBITaxon%3A1390","Bacillus amyloliquefaciens"],["NCBITaxon%3A1421566","Bacillus amyloliquefaciens AB01"],["NCBITaxon%3A1421569","Bacillus amyloliquefaciens AP143"],["NCBITaxon%3A1421570","Bacillus amyloliquefaciens AP193"],["NCBITaxon%3A1421567","Bacillus amyloliquefaciens AP71"],["NCBITaxon%3A1421568","Bacillus amyloliquefaciens AP79"]]},{"id":"NCBITaxon:1502","l":"Clostridium perfringens","na":6,"nb":24,"a":[["Pfam%3APF08307","Glycosyl hydrolase family 98 C-terminal domain"],["Pfam%3APF08306","Glycosyl hydrolase family 98"],["Pfam%3APF12645","Helix-turn-helix domain"],["Pfam%3APF03505","Clostridium enterotoxin"],["Pfam%3APF10960","BhlA holin family"],["TED%3AAF-A0A140GRT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A140GRT8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1502","Clostridium perfringens"],["NCBITaxon%3A753641","Clostridium perfringens 310"],["NCBITaxon%3A753640","Clostridium perfringens 3100"],["NCBITaxon%3A37763","Clostridium perfringens A"],["NCBITaxon%3A195103","Clostridium perfringens ATCC 13124"],["NCBITaxon%3A451751","Clostridium perfringens B"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":6,"nb":22,"a":[["Pfam%3APF02929","Beta galactosidase small chain"],["Pfam%3APF27279","Fumarate--diaminopropanoate ligase C-terminal domain"],["Pfam%3APF18024","Helix-turn-helix domain"],["Pfam%3APF16353","Beta-galactosidase, domain 4"],["PROSITE%3APS00594","Aromatic amino acids permeases signature"],["PROSITE%3APS00853","Beta-eliminating lyases pyridoxal-phosphate attachment site"]],"b":[["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A221276","[Curtobacterium] plantarum"],["NCBITaxon%3A558","Erwinia sp."],["NCBITaxon%3A83655","Leclercia adecarboxylata"],["NCBITaxon%3A549","Pantoea agglomerans"],["NCBITaxon%3A1261128","Pantoea agglomerans 299R"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":6,"nb":19,"a":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF10779","Haemolysin XhlA"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF08181","DegQ (SacQ) family"],["Pfam%3APF08057","Erythromycin resistance leader peptide"],["Pfam%3APF14867","Lantibiotic alpha"]],"b":[["NCBITaxon%3A1402","Bacillus licheniformis"],["NCBITaxon%3A1169411","Bacillus licheniformis 10-1-A"],["NCBITaxon%3A44097","Bacillus licheniformis 2709"],["NCBITaxon%3A1169412","Bacillus licheniformis 5-2-D"],["NCBITaxon%3A1368424","Bacillus licheniformis CG-B52"],["NCBITaxon%3A1232672","Bacillus licheniformis CGMCC 3963"]]},{"id":"NCBITaxon:321","l":"Pseudomonas syringae pv. syringae","na":6,"nb":18,"a":[["Pfam%3APF03421","YopJ Serine/Threonine acetyltransferase"],["Pfam%3APF17914","HopA1 effector protein family"],["Pfam%3APF27361","HrcQa N-terminal domain"],["Pfam%3APF04877","HrpZ"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]],"b":[["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A1449349","Pseudomonas syringae DSM 10604"],["NCBITaxon%3A1154761","Pseudomonas syringae pv. avellanae str. ISPaVe013"],["NCBITaxon%3A1154762","Pseudomonas syringae pv. avellanae str. ISPaVe037"],["NCBITaxon%3A321","Pseudomonas syringae pv. syringae"],["NCBITaxon%3A1357293","Pseudomonas syringae pv. syringae 1212"]]},{"id":"NCBITaxon:1349","l":"Streptococcus uberis","na":6,"nb":14,"a":[["Pfam%3APF01721","Class II bacteriocin"],["Pfam%3APF09221","Bacteriocin class IId cyclical uberolysin-like"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"],["TED%3AAF-A0A7X2UJT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X2UJT8-F1-model_v4_TED01"],["TED%3AAF-A0A7X2UQ98-F1-model_v4_TED02","TED novel fold AF-A0A7X2UQ98-F1-model_v4_TED02"],["TED%3AAF-A0A8B4IQV9-F1-model_v4_TED03","TED novel fold AF-A0A8B4IQV9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1349","Streptococcus uberis"],["NCBITaxon%3A218495","Streptococcus uberis 0140J"],["NCBITaxon%3A1450192","Streptococcus uberis 6736"],["NCBITaxon%3A1450190","Streptococcus uberis 6780"],["NCBITaxon%3A1450186","Streptococcus uberis Ab71"],["NCBITaxon%3A1450189","Streptococcus uberis B190"]]},{"id":"NCBITaxon:56","l":"Sorangium cellulosum","na":13,"nb":6,"a":[["TED%3AAF-A0A150SQB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A150SQB4-F1-model_v4_TED01"],["TED%3AAF-A0A2L0EP96-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0EP96-F1-model_v4_TED01"],["TED%3AAF-A0A2L0F1G5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0F1G5-F1-model_v4_TED01"],["TED%3AAF-A0A2L0F230-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0F230-F1-model_v4_TED01"],["TED%3AAF-A0A4P2R1W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P2R1W3-F1-model_v4_TED01"],["TED%3AAF-A0A150P579-F1-model_v4_TED02","TED novel fold AF-A0A150P579-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2093422","Sorangium ambruticinum"],["NCBITaxon%3A2093423","Sorangium bulgaricum"],["NCBITaxon%3A56","Sorangium cellulosum"],["NCBITaxon%3A1254432","Sorangium cellulosum So0157-2"],["NCBITaxon%3A448385","Sorangium cellulosum So ce56"],["NCBITaxon%3A2093377","Sorangium sp."]]},{"id":"NCBITaxon:669","l":"Vibrio harveyi","na":6,"nb":13,"a":[["Pfam%3APF02273","Acyl transferase"],["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF03173","Putative carbohydrate binding domain"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"],["TED%3AAF-A0A454D440-F1-model_v4_TED02","TED novel fold AF-A0A454D440-F1-model_v4_TED02"],["TED%3AAF-A0A8B3DE42-F1-model_v4_TED03","TED novel fold AF-A0A8B3DE42-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A342113","Burkholderia oklahomensis"],["NCBITaxon%3A669","Vibrio harveyi"],["NCBITaxon%3A673519","Vibrio harveyi 1DA3"],["NCBITaxon%3A1287887","Vibrio harveyi AOD131"],["NCBITaxon%3A1125980","Vibrio harveyi CAIM 1792"],["NCBITaxon%3A1352943","Vibrio harveyi E385"]]},{"id":"NCBITaxon:1397","l":"Niallia circulans","na":6,"nb":10,"a":[["Pfam%3APF03423","Carbohydrate binding domain (family 25)"],["Pfam%3APF13199","Glycosyl hydrolase family 66"],["Pfam%3APF14399","Butirosin biosynthesis protein H, N-terminal"],["Pfam%3APF19634","Family of unknown function (DUF6137)"],["PROSITE%3APS60000","Chitosanases families 46 and 80 active sites signature"],["TED%3AAF-A0A0J1IR10-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0J1IR10-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1393","Brevibacillus brevis"],["NCBITaxon%3A1397","Niallia circulans"],["NCBITaxon%3A1348626","Niallia circulans NBRC 13626"],["NCBITaxon%3A44160","Niallia circulans subsp. alkalophilus"],["NCBITaxon%3A74308","Niallia circulans subsp. circulans"],["NCBITaxon%3A59846","Paenibacillus chibensis"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":10,"nb":6,"a":[["Pfam%3APF17433","Glycosyl hydrolase family 49 N-terminal Ig-like domain"],["PROSITE%3APS00820","Glucoamylase active site region signature"],["PROSITE%3APS00920","Nitrilases / cyanide hydratase signature 1"],["PROSITE%3APS00502","Polygalacturonase active site"],["Pfam%3APF18841","Beta solenoid repeat from Dextranase"],["Pfam%3APF03718","Glycosyl hydrolase family 49"]],"b":[["NCBITaxon%3A547018","Zhihengliuella alba"],["NCBITaxon%3A5061","Aspergillus niger"],["NCBITaxon%3A380704","Aspergillus niger ATCC 1015"],["NCBITaxon%3A1353008","Aspergillus niger ATCC 13496"],["NCBITaxon%3A1450533","Aspergillus niger CBS 101883"],["NCBITaxon%3A425011","Aspergillus niger CBS 513.88"]]},{"id":"NCBITaxon:853","l":"Faecalibacterium prausnitzii","na":10,"nb":6,"a":[["TED%3AAF-A0A2A7AJ69-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A7AJ69-F1-model_v4_TED01"],["TED%3AAF-A0A329UNG0-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A329UNG0-F1-model_v4_TED05"],["TED%3AAF-A0A3F3JVN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3F3JVN3-F1-model_v4_TED01"],["TED%3AAF-A0A564SWB8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A564SWB8-F1-model_v4_TED02"],["TED%3AAF-A0A173SIF7-F1-model_v4_TED01","TED novel fold AF-A0A173SIF7-F1-model_v4_TED01"],["TED%3AAF-A0A173WYP6-F1-model_v4_TED01","TED novel fold AF-A0A173WYP6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A748224","Faecalibacterium cf. prausnitzii KLE1255"],["NCBITaxon%3A411483","Faecalibacterium duncaniae"],["NCBITaxon%3A853","Faecalibacterium prausnitzii"],["NCBITaxon%3A718252","Faecalibacterium prausnitzii L2-6"],["NCBITaxon%3A411485","Faecalibacterium prausnitzii M21/2"],["NCBITaxon%3A657322","Faecalibacterium prausnitzii SL3/3"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":6,"nb":9,"a":[["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF03744","6-carboxyhexanoate--CoA ligase"],["PROSITE%3APS00836","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 1"],["PROSITE%3APS00837","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 2"],["TED%3AAF-A0A2S5D092-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5D092-F1-model_v4_TED01"],["TED%3AAF-A0A2S0JW09-F1-model_v4_TED01","TED novel fold AF-A0A2S0JW09-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28031","Lysinibacillus fusiformis"],["NCBITaxon%3A1130819","Lysinibacillus mangiferihumi"],["NCBITaxon%3A1421","Lysinibacillus sphaericus"],["NCBITaxon%3A444177","Lysinibacillus sphaericus C3-41"],["NCBITaxon%3A1400869","Lysinibacillus sphaericus CBAM5"],["NCBITaxon%3A1354027","Lysinibacillus sphaericus KCTC 3346"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":9,"nb":6,"a":[["Pfam%3APF07835","Bacterial aa3 type cytochrome c oxidase subunit IV"],["Pfam%3APF04828","Glutathione-dependent formaldehyde-activating enzyme"],["Pfam%3APF16448","LapD/MoxY periplasmic domain"],["Pfam%3APF17267","Family of unknown function (DUF5333)"],["Pfam%3APF17272","Family of unknown function (DUF5337)"],["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"]],"b":[["NCBITaxon%3A266","Paracoccus denitrificans"],["NCBITaxon%3A1302247","Paracoccus denitrificans JCM 21484"],["NCBITaxon%3A318586","Paracoccus denitrificans PD1222"],["NCBITaxon%3A1051075","Paracoccus denitrificans SD1"],["NCBITaxon%3A82367","Paracoccus pantotrophus"],["NCBITaxon%3A189685","uncultured Paracoccus sp."]]},{"id":"NCBITaxon:323","l":"Pseudomonas syringae pv. tomato","na":6,"nb":8,"a":[["Pfam%3APF16847","Avirulence AvrPtoB, BAK1-binding domain"],["Pfam%3APF09046","AvrPtoB E3 ubiquitin ligase"],["Pfam%3APF04234","CopC domain"],["Pfam%3APF21085","CusS sensor domain"],["Pfam%3APF05275","Copper resistance protein B precursor (CopB)"],["TED%3AAF-A0A5E9N4C0-F1-model_v4_TED01","TED novel fold AF-A0A5E9N4C0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A323","Pseudomonas syringae pv. tomato"],["NCBITaxon%3A1324324","Pseudomonas syringae pv. tomato C3"],["NCBITaxon%3A673189","Pseudomonas syringae pv. tomato K40"],["NCBITaxon%3A673198","Pseudomonas syringae pv. tomato Max13"],["NCBITaxon%3A673265","Pseudomonas syringae pv. tomato NCPPB 1108"],["NCBITaxon%3A223283","Pseudomonas syringae pv. tomato str. DC3000"]]},{"id":"NCBITaxon:101571","l":"Burkholderia ubonensis","na":6,"nb":6,"a":[["TED%3AAF-A0A118H7W5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A118H7W5-F1-model_v4_TED01"],["TED%3AAF-A0A853WTK8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A853WTK8-F1-model_v4_TED01"],["TED%3AAF-A0A104J6D5-F1-model_v4_TED03","TED novel fold AF-A0A104J6D5-F1-model_v4_TED03"],["TED%3AAF-A0A104Z719-F1-model_v4_TED01","TED novel fold AF-A0A104Z719-F1-model_v4_TED01"],["TED%3AAF-A0A106QCV3-F1-model_v4_TED01","TED novel fold AF-A0A106QCV3-F1-model_v4_TED01"],["TED%3AAF-A0A124U5S7-F1-model_v4_TED02","TED novel fold AF-A0A124U5S7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A101571","Burkholderia ubonensis"],["NCBITaxon%3A441166","Burkholderia ubonensis Bu"],["NCBITaxon%3A1436049","Burkholderia ubonensis MSMB153"],["NCBITaxon%3A1249668","Burkholderia ubonensis MSMB22"],["NCBITaxon%3A1436063","Burkholderia ubonensis MSMB57"],["NCBITaxon%3A265293","Burkholderia ubonensis subsp. mesacidophila"]]},{"id":"NCBITaxon:224308","l":"Bacillus subtilis (strain 168)","na":11310,"nb":5,"a":[["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.10.3.-","With oxygen as acceptor"],["EC%3A1.13.12.-","With incorporation of one atom of oxygen (internal monooxygenases or internal mixed function oxidases)"],["EC%3A1.14.19.-","With oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water"],["EC%3A1.17.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.21.98.-","With other, known acceptors"]],"b":[["NCBITaxon%3A1423","Bacillus subtilis"],["NCBITaxon%3A135461","Bacillus subtilis subsp. subtilis"],["NCBITaxon%3A224308","Bacillus subtilis subsp. subtilis str. 168"],["NCBITaxon%3A536088","Bacillus subtilis subsp. subtilis str. L170"],["NCBITaxon%3A536089","Bacillus subtilis subsp. subtilis str. N170"]]},{"id":"NCBITaxon:1491","l":"Clostridium botulinum","na":5,"nb":284,"a":[["Pfam%3APF24729","Acb2/Tad1, hairpin domain"],["TED%3AAF-A0A2I4NFI4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2I4NFI4-F1-model_v4_TED02"],["TED%3AAF-A0A6B4TC92-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6B4TC92-F1-model_v4_TED01"],["TED%3AAF-A0A6B4E2T6-F1-model_v4_TED01","TED novel fold AF-A0A6B4E2T6-F1-model_v4_TED01"],["TED%3AAF-A0A6G4HNV8-F1-model_v4_TED01","TED novel fold AF-A0A6G4HNV8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1491","Clostridium botulinum"],["NCBITaxon%3A696040","Clostridium botulinum 14860"],["NCBITaxon%3A1415774","Clostridium botulinum 202F"],["NCBITaxon%3A696053","Clostridium botulinum 213B"],["NCBITaxon%3A696051","Clostridium botulinum 32B"],["NCBITaxon%3A696049","Clostridium botulinum 399A"]]},{"id":"NCBITaxon:195","l":"Campylobacter coli","na":5,"nb":122,"a":[["PROSITE%3APS00100","Chloramphenicol acetyltransferase active site"],["TED%3AAF-A0A697DVN1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A697DVN1-F1-model_v4_TED01"],["TED%3AAF-A0A5T0YXG5-F1-model_v4_TED02","TED novel fold AF-A0A5T0YXG5-F1-model_v4_TED02"],["TED%3AAF-A0A825MHY8-F1-model_v4_TED03","TED novel fold AF-A0A825MHY8-F1-model_v4_TED03"],["TED%3AAF-A0A828DMV9-F1-model_v4_TED01","TED novel fold AF-A0A828DMV9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A195","Campylobacter coli"],["NCBITaxon%3A887290","Campylobacter coli 1091"],["NCBITaxon%3A887291","Campylobacter coli 1098"],["NCBITaxon%3A887280","Campylobacter coli 111-3"],["NCBITaxon%3A887292","Campylobacter coli 1148"],["NCBITaxon%3A887282","Campylobacter coli 132-6"]]},{"id":"NCBITaxon:813","l":"Chlamydia trachomatis","na":5,"nb":100,"a":[["Pfam%3APF07382","Histone H1-like nucleoprotein HC2"],["Pfam%3APF01308","Chlamydia major outer membrane protein"],["Pfam%3APF05475","Pgp3 C-terminal domain"],["Pfam%3APF03504","Chlamydia cysteine-rich outer membrane protein 6"],["TED%3AAF-C7DZ76-F1-model_v4_TED01","TED novel fold AF-C7DZ76-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A813","Chlamydia trachomatis"],["NCBITaxon%3A564416","Chlamydia trachomatis 6276"],["NCBITaxon%3A564417","Chlamydia trachomatis 6276s"],["NCBITaxon%3A564418","Chlamydia trachomatis 70"],["NCBITaxon%3A564419","Chlamydia trachomatis 70s"],["NCBITaxon%3A580047","Chlamydia trachomatis A2497"]]},{"id":"NCBITaxon:384","l":"Rhizobium leguminosarum","na":5,"nb":39,"a":[["Pfam%3APF10931","Protein of unknown function (DUF2735)"],["TED%3AAF-A0A1B1C3F3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1B1C3F3-F1-model_v4_TED02"],["TED%3AAF-A0A4Q8XNE1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q8XNE1-F1-model_v4_TED01"],["TED%3AAF-A0A6P0B3F8-F1-model_v4_TED02","TED novel fold AF-A0A6P0B3F8-F1-model_v4_TED02"],["TED%3AAF-A0A6P0DM15-F1-model_v4_TED01","TED novel fold AF-A0A6P0DM15-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A3019932","Rhizobium brockwellii"],["NCBITaxon%3A384","Rhizobium leguminosarum"],["NCBITaxon%3A385","Rhizobium leguminosarum bv. phaseoli"],["NCBITaxon%3A936350","Rhizobium leguminosarum bv. phaseoli 4292"],["NCBITaxon%3A1408223","Rhizobium leguminosarum bv. phaseoli CCGM1"],["NCBITaxon%3A1041140","Rhizobium leguminosarum bv. phaseoli FA23"]]},{"id":"NCBITaxon:5507","l":"Fusarium oxysporum","na":5,"nb":27,"a":[["Pfam%3APF02015","Glycosyl hydrolase family 45"],["PROSITE%3APS01140","Glycosyl hydrolases family 45 active site"],["TED%3AAF-A0A2H3TJY2-F1-model_v4_TED01","TED novel fold AF-A0A2H3TJY2-F1-model_v4_TED01"],["TED%3AAF-A0A420N954-F1-model_v4_TED01","TED novel fold AF-A0A420N954-F1-model_v4_TED01"],["TED%3AAF-A0A420P6J4-F1-model_v4_TED01","TED novel fold AF-A0A420P6J4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5507","Fusarium oxysporum"],["NCBITaxon%3A72712","Fusarium oxysporum f. sp. albedinis"],["NCBITaxon%3A396571","Fusarium oxysporum f. sp. cepae"],["NCBITaxon%3A62683","Fusarium oxysporum f. sp. ciceris"],["NCBITaxon%3A100902","Fusarium oxysporum f. sp. conglutinans"],["NCBITaxon%3A660025","Fusarium oxysporum f. sp. conglutinans Fo5176"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":25,"nb":5,"a":[["Pfam%3APF13372","Alginate export"],["Pfam%3APF25965","ALG44 beta-barrel domain"],["Pfam%3APF25964","ALG44, barrel-sandwich hybrid domain"],["Pfam%3APF16844","Dinitrogenase iron-molybdenum cofactor, N-terminal"],["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"]],"b":[["NCBITaxon%3A354","Azotobacter vinelandii"],["NCBITaxon%3A1283330","Azotobacter vinelandii CA"],["NCBITaxon%3A1283331","Azotobacter vinelandii CA6"],["NCBITaxon%3A322710","Azotobacter vinelandii DJ"],["NCBITaxon%3A1314750","Azotobacter vinelandii NBRC 13581"]]},{"id":"NCBITaxon:1598","l":"Limosilactobacillus reuteri","na":5,"nb":23,"a":[["TED%3AAF-A0A6N1EMN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N1EMN7-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2V3C3-F1-model_v4_TED01","TED novel fold AF-A0A1Y2V3C3-F1-model_v4_TED01"],["TED%3AAF-A0A848BUA9-F1-model_v4_TED01","TED novel fold AF-A0A848BUA9-F1-model_v4_TED01"],["TED%3AAF-A0A855XJ18-F1-model_v4_TED01","TED novel fold AF-A0A855XJ18-F1-model_v4_TED01"],["TED%3AAF-Q6WUB1-F1-model_v4_TED03","TED novel fold AF-Q6WUB1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1581","Lentilactobacillus buchneri"],["NCBITaxon%3A2767931","Lentilactobacillus sp."],["NCBITaxon%3A1613","Limosilactobacillus fermentum"],["NCBITaxon%3A1598","Limosilactobacillus reuteri"],["NCBITaxon%3A1273150","Limosilactobacillus reuteri 1063"],["NCBITaxon%3A525341","Limosilactobacillus reuteri CF48-3A"]]},{"id":"NCBITaxon:1833","l":"Rhodococcus erythropolis","na":5,"nb":19,"a":[["Pfam%3APF08028","Acyl-CoA dehydrogenase, C-terminal domain"],["Pfam%3APF13816","Haem-containing dehydratase"],["Pfam%3APF07858","Limonene-1,2-epoxide hydrolase catalytic domain"],["Pfam%3APF09663","Amidohydrolase ring-opening protein (Amido_AtzD_TrzD)"],["TED%3AAF-A0A401N7F7-F1-model_v4_TED02","TED novel fold AF-A0A401N7F7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1818","Nocardia globerula"],["NCBITaxon%3A1821","Nocardia sp."],["NCBITaxon%3A53432","Nocardia uniformis"],["NCBITaxon%3A1210100","Nocardia uniformis NBRC 13702"],["NCBITaxon%3A1833","Rhodococcus erythropolis"],["NCBITaxon%3A1136179","Rhodococcus erythropolis CCM2595"]]},{"id":"NCBITaxon:305","l":"Ralstonia solanacearum","na":5,"nb":19,"a":[["Pfam%3APF14897","EpsG family"],["TED%3AAF-A0A7I8FQZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7I8FQZ6-F1-model_v4_TED01"],["TED%3AAF-A0A7H1MI34-F1-model_v4_TED01","TED novel fold AF-A0A7H1MI34-F1-model_v4_TED01"],["TED%3AAF-A0A7I8FKL4-F1-model_v4_TED01","TED novel fold AF-A0A7I8FKL4-F1-model_v4_TED01"],["TED%3AAF-A0A850FKB0-F1-model_v4_TED01","TED novel fold AF-A0A850FKB0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1310165","Ralstonia pseudosolanacearum"],["NCBITaxon%3A305","Ralstonia solanacearum"],["NCBITaxon%3A859656","Ralstonia solanacearum CFBP2957"],["NCBITaxon%3A859655","Ralstonia solanacearum CMR15"],["NCBITaxon%3A1130828","Ralstonia solanacearum FJAT-1458"],["NCBITaxon%3A1130829","Ralstonia solanacearum FJAT-91"]]},{"id":"NCBITaxon:552","l":"Erwinia amylovora","na":5,"nb":17,"a":[["Pfam%3APF09008","Head binding"],["Pfam%3APF11725","AvrE-family Type-III effector proteins (T3Es)"],["Pfam%3APF03608","PTS system enzyme II sorbitol-specific factor"],["Pfam%3APF07663","Sorbitol phosphotransferase enzyme II C-terminus"],["Pfam%3APF03612","Sorbitol phosphotransferase enzyme II N-terminus"]],"b":[["NCBITaxon%3A552","Erwinia amylovora"],["NCBITaxon%3A1255306","Erwinia amylovora 01SFR-BO"],["NCBITaxon%3A1427519","Erwinia amylovora 692"],["NCBITaxon%3A1027397","Erwinia amylovora ACW56400"],["NCBITaxon%3A716540","Erwinia amylovora ATCC 49946"],["NCBITaxon%3A889211","Erwinia amylovora ATCC BAA-2158"]]},{"id":"NCBITaxon:511","l":"Alcaligenes faecalis","na":5,"nb":14,"a":[["Pfam%3APF16867","Dimethlysulfonioproprionate lyase"],["Pfam%3APF17645","Arylmalonate decarboxylase"],["Pfam%3APF06433","Methylamine dehydrogenase heavy chain (MADH)"],["TED%3AAF-A0A1Z3MKY1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z3MKY1-F1-model_v4_TED01"],["TED%3AAF-A0A2U2BPX7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2U2BPX7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A134375","Achromobacter sp."],["NCBITaxon%3A511","Alcaligenes faecalis"],["NCBITaxon%3A1255592","Alcaligenes faecalis 2L10"],["NCBITaxon%3A32001","Alcaligenes faecalis subsp. faecalis"],["NCBITaxon%3A1218102","Alcaligenes faecalis subsp. faecalis NBRC 13111"],["NCBITaxon%3A1156918","Alcaligenes faecalis subsp. faecalis NCIB 8687"]]},{"id":"NCBITaxon:1302","l":"Streptococcus gordonii","na":13,"nb":5,"a":[["Pfam%3APF18652","Adhesin P1 N-terminal domain"],["Pfam%3APF17998","Cell surface antigen I/II C2 terminal domain"],["Pfam%3APF16364","Cell surface antigen C-terminus"],["Pfam%3APF18938","Atypical Rib domain"],["Pfam%3APF08759","Glycosyltransferase GT-D fold"],["Pfam%3APF22145","GtfA extended beta-sheet domain"]],"b":[["NCBITaxon%3A1302","Streptococcus gordonii"],["NCBITaxon%3A1308737","Streptococcus gordonii ADL-228"],["NCBITaxon%3A29390","Streptococcus gordonii str. Challis"],["NCBITaxon%3A467705","Streptococcus gordonii str. Challis substr. CH1"],["NCBITaxon%3A1339616","Streptococcus gordonii TSDC19.2-1.1"]]},{"id":"NCBITaxon:31958","l":"Amycolatopsis orientalis","na":5,"nb":13,"a":[["Pfam%3APF16990","Carbohydrate binding module (family 35)"],["Pfam%3APF14696","Hydroxyphenylpyruvate dioxygenase, HPPD, N-terminal"],["Pfam%3APF03559","NDP-hexose 2,3-dehydratase"],["Pfam%3APF18368","Exo-beta-D-glucosaminidase Ig-fold domain"],["TED%3AAF-K4FDK5-F1-model_v4_TED01","TED highly-symmetric fold AF-K4FDK5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A346045","Amycolatopsis benzoatilytica"],["NCBITaxon%3A1089544","Amycolatopsis benzoatilytica AK 16/65"],["NCBITaxon%3A31959","Amycolatopsis lurida"],["NCBITaxon%3A1460371","Amycolatopsis lurida NRRL 2430"],["NCBITaxon%3A31958","Amycolatopsis orientalis"],["NCBITaxon%3A1125971","Amycolatopsis orientalis DSM 40040 = KCTC 9412"]]},{"id":"NCBITaxon:367830","l":"Staphylococcus aureus (strain USA300)","na":13,"nb":5,"a":[["Pfam%3APF13930","DNA/RNA non-specific endonuclease"],["Pfam%3APF27280","EsaA helical domain"],["Pfam%3APF26323","Staphylococcus aureus type VII secretion system substrate EsxC"],["Pfam%3APF27443","Immunodominant staphylococcal antigen B"],["Pfam%3APF20861","Iron-regulated surface determinant protein H/B, linker domain"],["Pfam%3APF11434","Chemotaxis-inhibiting protein CHIPS"]],"b":[["NCBITaxon%3A367830","Staphylococcus aureus subsp. aureus USA300"],["NCBITaxon%3A451515","Staphylococcus aureus subsp. aureus USA300_FPR3757"],["NCBITaxon%3A451516","Staphylococcus aureus subsp. aureus USA300_TCH1516"],["NCBITaxon%3A566454","Staphylococcus aureus subsp. aureus USA300_TCH1959"],["NCBITaxon%3A450394","Staphylococcus aureus subsp. aureus USA300_TCH959"]]},{"id":"NCBITaxon:1318","l":"Streptococcus parasanguinis","na":5,"nb":12,"a":[["Pfam%3APF26337","Glucosyltransferase 3-like, C-terminal domain"],["Pfam%3APF26334","Glucosyltransferase 3-like, N-terminal domain"],["Pfam%3APF22145","GtfA extended beta-sheet domain"],["Pfam%3APF27244","GtfB middle domain"],["Pfam%3APF04286","Protein of unknown function (DUF445)"]],"b":[["NCBITaxon%3A45634","Streptococcus cristatus"],["NCBITaxon%3A1318","Streptococcus parasanguinis"],["NCBITaxon%3A760570","Streptococcus parasanguinis ATCC 15912"],["NCBITaxon%3A888048","Streptococcus parasanguinis ATCC 903"],["NCBITaxon%3A1073372","Streptococcus parasanguinis CC87K"],["NCBITaxon%3A1403947","Streptococcus parasanguinis DORA_23_24"]]},{"id":"NCBITaxon:1393","l":"Brevibacillus brevis","na":5,"nb":12,"a":[["Pfam%3APF03306","Alpha-acetolactate decarboxylase"],["Pfam%3APF05384","Sensor protein DegS"],["TED%3AAF-A0A2Z4MK38-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z4MK38-F1-model_v4_TED01"],["TED%3AAF-A0A2Z4MPQ6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2Z4MPQ6-F1-model_v4_TED02"],["TED%3AAF-A0A517IGN3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A517IGN3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1391","Aneurinibacillus aneurinilyticus"],["NCBITaxon%3A267746","Aneurinibacillus danicus"],["NCBITaxon%3A47500","Aneurinibacillus migulanus"],["NCBITaxon%3A45462","Brevibacillus borstelensis"],["NCBITaxon%3A1393","Brevibacillus brevis"],["NCBITaxon%3A1129895","Brevibacillus brevis FJAT-0809-GLX"]]},{"id":"NCBITaxon:435","l":"Acetobacter aceti","na":5,"nb":12,"a":[["Pfam%3APF13336","Acetyl-CoA hydrolase/transferase C-terminal domain"],["Pfam%3APF02550","Acetyl-CoA hydrolase/transferase N-terminal domain"],["Pfam%3APF13442","Cytochrome C oxidase, cbb3-type, subunit III"],["Pfam%3APF06481","COX Aromatic Rich Motif"],["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"]],"b":[["NCBITaxon%3A435","Acetobacter aceti"],["NCBITaxon%3A1457393","Acetobacter aceti 1023"],["NCBITaxon%3A663932","Acetobacter aceti ATCC 23746"],["NCBITaxon%3A887700","Acetobacter aceti NBRC 14818"],["NCBITaxon%3A1206747","Acetobacter aceti NRIC 0242"],["NCBITaxon%3A178900","Acetobacter cerevisiae"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":5,"nb":11,"a":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF02963","Restriction endonuclease EcoRI"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["PROSITE%3APS00974","Mannitol dehydrogenases signature"],["PROSITE%3APS00567","Phosphoribulokinase signature"]],"b":[["NCBITaxon%3A1063","Cereibacter sphaeroides"],["NCBITaxon%3A272943","Cereibacter sphaeroides 2.4.1"],["NCBITaxon%3A349102","Cereibacter sphaeroides ATCC 17025"],["NCBITaxon%3A349101","Cereibacter sphaeroides ATCC 17029"],["NCBITaxon%3A39723","Cereibacter sphaeroides f. sp. denitrificans"],["NCBITaxon%3A633146","Cereibacter sphaeroides GA"]]},{"id":"NCBITaxon:556","l":"Dickeya chrysanthemi","na":5,"nb":9,"a":[["Pfam%3APF18390","Glycogen debranching enzyme C-terminal domain"],["Pfam%3APF25994","AprE, long alpha-helical hairpin"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF03812","2-keto-3-deoxygluconate permease"],["Pfam%3APF09589","HrpA pilus formation protein"]],"b":[["NCBITaxon%3A556","Dickeya chrysanthemi"],["NCBITaxon%3A561229","Dickeya chrysanthemi Ech1591"],["NCBITaxon%3A1224148","Dickeya chrysanthemi NCPPB 3533"],["NCBITaxon%3A1223569","Dickeya chrysanthemi NCPPB 402"],["NCBITaxon%3A3474837","Dickeya chrysanthemi pv. chrysanthemi"],["NCBITaxon%3A3474953","Dickeya chrysanthemi pv. parthenii"]]},{"id":"NCBITaxon:292800","l":"Flavonifractor plautii","na":8,"nb":5,"a":[["TED%3AAF-A0A6I2QXD7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I2QXD7-F1-model_v4_TED01"],["TED%3AAF-A0A6I2R9U0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I2R9U0-F1-model_v4_TED01"],["TED%3AAF-A0A6I7GJ83-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6I7GJ83-F1-model_v4_TED02"],["TED%3AAF-A0A174L5D2-F1-model_v4_TED02","TED novel fold AF-A0A174L5D2-F1-model_v4_TED02"],["TED%3AAF-A0A6I2R566-F1-model_v4_TED01","TED novel fold AF-A0A6I2R566-F1-model_v4_TED01"],["TED%3AAF-A0A6I2R5K9-F1-model_v4_TED01","TED novel fold AF-A0A6I2R5K9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A292800","Flavonifractor plautii"],["NCBITaxon%3A742738","Flavonifractor plautii 1_3_50AFAA"],["NCBITaxon%3A411475","Flavonifractor plautii ATCC 29863"],["NCBITaxon%3A1073358","Flavonifractor plautii CC43_001K"],["NCBITaxon%3A649753","Flavonifractor plautii DSM 6740"]]},{"id":"NCBITaxon:28448","l":"Komagataeibacter xylinus","na":5,"nb":7,"a":[["Pfam%3APF03170","Cellulose synthase BcsB, first CBM domain"],["Pfam%3APF03500","Cellulose synthase subunit D"],["Pfam%3APF05420","Cellulose synthase operon protein C C-terminus (BCSC_C)"],["Pfam%3APF17040","Cellulose-complementing protein A"],["Pfam%3APF07721","Tetratricopeptide repeat"]],"b":[["NCBITaxon%3A435","Acetobacter aceti"],["NCBITaxon%3A1053551","Komagataeibacter sucrofermentans"],["NCBITaxon%3A1307942","Komagataeibacter sucrofermentans DSM 15973"],["NCBITaxon%3A28448","Komagataeibacter xylinus"],["NCBITaxon%3A1296990","Komagataeibacter xylinus E25"],["NCBITaxon%3A1234668","Komagataeibacter xylinus NBRC 13693"]]},{"id":"NCBITaxon:1916","l":"Streptomyces lividans","na":6,"nb":5,"a":[["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["Pfam%3APF27079","SpdB plasmid transfer protein, C-terminal HTH domain"],["Pfam%3APF27072","KilB plasmid transfer protein"],["Pfam%3APF08386","TAP-like protein"],["PROSITE%3APS00999","Streptomyces subtilisin-type inhibitors signature"],["Pfam%3APF03664","Glycosyl hydrolase family 62"]],"b":[["NCBITaxon%3A1894","Kitasatospora aureofaciens"],["NCBITaxon%3A1916","Streptomyces lividans"],["NCBITaxon%3A1200984","Streptomyces lividans 1326"],["NCBITaxon%3A457428","Streptomyces lividans TK24"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:2210","l":"Methanosarcina thermophila","na":6,"nb":5,"a":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF19436","ACS/CODH beta subunit C-terminal"],["Pfam%3APF03598","CO dehydrogenase/acetyl-CoA synthase complex beta subunit"],["Pfam%3APF00871","Acetokinase family"],["PROSITE%3APS01075","Acetate and butyrate kinases family signature 1"],["PROSITE%3APS01076","Acetate and butyrate kinases family signature 2"]],"b":[["NCBITaxon%3A1520800","Methanosarcina sp. DSM 11855"],["NCBITaxon%3A2210","Methanosarcina thermophila"],["NCBITaxon%3A1434121","Methanosarcina thermophila CHTI-55"],["NCBITaxon%3A1434122","Methanosarcina thermophila MST-A1"],["NCBITaxon%3A523844","Methanosarcina thermophila TM-1"]]},{"id":"NCBITaxon:1197","l":"Microchaete diplosiphon","na":5,"nb":5,"a":[["Pfam%3APF13546","DDE superfamily endonuclease"],["Pfam%3APF05996","Ferredoxin-dependent bilin reductase"],["Pfam%3APF13613","Helix-turn-helix of DDE superfamily endonuclease"],["PROSITE%3APS00235","Gas vesicles protein GVPc repeated domain signature"],["Pfam%3APF01304","Gas vesicles protein GVPc repeated domain"]],"b":[["NCBITaxon%3A1197","Microchaete diplosiphon"],["NCBITaxon%3A571433","Microchaete diplosiphon B590"],["NCBITaxon%3A1168853","Microchaete diplosiphon CCALA 811"],["NCBITaxon%3A1776041","Microchaete diplosiphon KSU-AQIQ-10"],["NCBITaxon%3A1973485","Microchaete diplosiphon NIES-3275"]]},{"id":"NCBITaxon:319","l":"Pseudomonas savastanoi pv. phaseolicola","na":5,"nb":5,"a":[["Pfam%3APF16847","Avirulence AvrPtoB, BAK1-binding domain"],["Pfam%3APF09046","AvrPtoB E3 ubiquitin ligase"],["Pfam%3APF01052","Type III flagellar switch regulator (C-ring) FliN C-term"],["Pfam%3APF27361","HrcQa N-terminal domain"],["Pfam%3APF04877","HrpZ"]],"b":[["NCBITaxon%3A29438","Pseudomonas savastanoi"],["NCBITaxon%3A319","Pseudomonas savastanoi pv. phaseolicola"],["NCBITaxon%3A264730","Pseudomonas savastanoi pv. phaseolicola 1448A"],["NCBITaxon%3A1079060","Pseudomonas savastanoi pv. phaseolicola 1644R"],["NCBITaxon%3A317","Pseudomonas syringae"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":5,"nb":5,"a":[["TED%3AAF-A0A4Y6CF56-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y6CF56-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6CNZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Y6CNZ1-F1-model_v4_TED02"],["TED%3AAF-A0A7Y4IIX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4IIX4-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6B7F9-F1-model_v4_TED01","TED novel fold AF-A0A4Y6B7F9-F1-model_v4_TED01"],["TED%3AAF-A0A7Y4IR70-F1-model_v4_TED01","TED novel fold AF-A0A7Y4IR70-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A34","Myxococcus xanthus"],["NCBITaxon%3A246197","Myxococcus xanthus DK 1622"],["NCBITaxon%3A1198133","Myxococcus xanthus DZ2"],["NCBITaxon%3A1198538","Myxococcus xanthus DZF1"],["NCBITaxon%3A675543","Myxococcus xanthus NewJersey2"]]},{"id":"NCBITaxon:93466","l":"Fervidobacterium pennivorans","na":5,"nb":5,"a":[["Pfam%3APF22148","Fervidolysin N-terminal prodomain"],["Pfam%3APF22349","Fervidolysin, second beta-sandwich domain"],["Pfam%3APF24025","DR_A0283-like, Ig-like domain"],["TED%3AAF-A0A7V4NEA3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7V4NEA3-F1-model_v4_TED03"],["TED%3AAF-A0A7V4KDB4-F1-model_v4_TED01","TED novel fold AF-A0A7V4KDB4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A93466","Fervidobacterium pennivorans"],["NCBITaxon%3A771875","Fervidobacterium pennivorans DSM 9078"],["NCBITaxon%3A3389976","Fervidobacterium pennivorans subsp. carthaginiensis"],["NCBITaxon%3A3022686","Fervidobacterium pennivorans subsp. keratinolyticus"],["NCBITaxon%3A3389975","Fervidobacterium pennivorans subsp. shakshaketiis"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":4,"nb":391,"a":[["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF09711","CRISPR-associated protein (Cas_Csn2)"],["Pfam%3APF06308","23S rRNA methylastransferase leader peptide (ErmCL)"]],"b":[["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A1260363","Enterococcus faecalis 02-MB-BW-10"],["NCBITaxon%3A1260365","Enterococcus faecalis 02-MB-P-10"],["NCBITaxon%3A1260358","Enterococcus faecalis 06-MB-DW-09"],["NCBITaxon%3A1260359","Enterococcus faecalis 06-MB-S-04"],["NCBITaxon%3A1260360","Enterococcus faecalis 06-MB-S-10"]]},{"id":"NCBITaxon:1311","l":"Streptococcus agalactiae","na":4,"nb":332,"a":[["Pfam%3APF19567","Capsular polysaccharide synthesis, CpsB/CapC"],["Pfam%3APF16828","GAG-binding domain on surface antigen"],["Pfam%3APF27244","GtfB middle domain"],["Pfam%3APF07373","CAMP factor (Cfa)"]],"b":[["NCBITaxon%3A536","Chromobacterium violaceum"],["NCBITaxon%3A2896850","Phocaeicola oris"],["NCBITaxon%3A1311","Streptococcus agalactiae"],["NCBITaxon%3A997295","Streptococcus agalactiae 072.21"],["NCBITaxon%3A1309806","Streptococcus agalactiae 09mas018883"],["NCBITaxon%3A1333579","Streptococcus agalactiae 112469214-isolate1"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":4,"nb":287,"a":[["Pfam%3APF01375","Heat-labile enterotoxin alpha chain"],["Pfam%3APF09101","Exotoxin A binding"],["Pfam%3APF09009","Exotoxin A catalytic"],["Pfam%3APF09102","Exotoxin A, targeting"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A666","Vibrio cholerae"],["NCBITaxon%3A693741","Vibrio cholerae 0139-ARG"],["NCBITaxon%3A1294144","Vibrio cholerae 01-1751"],["NCBITaxon%3A592313","Vibrio cholerae 12129(1)"],["NCBITaxon%3A412966","Vibrio cholerae 1587"]]},{"id":"NCBITaxon:28450","l":"Burkholderia pseudomallei","na":4,"nb":214,"a":[["Pfam%3APF18664","CdiA C-terminal tRNase domain"],["Pfam%3APF12106","Colicin E5 ribonuclease domain"],["Pfam%3APF11480","Colicin-E5 Imm protein"],["Pfam%3APF13332","Hemagglutinin repeat"]],"b":[["NCBITaxon%3A28450","Burkholderia pseudomallei"],["NCBITaxon%3A1085027","Burkholderia pseudomallei 1026a"],["NCBITaxon%3A884204","Burkholderia pseudomallei 1026b"],["NCBITaxon%3A1310219","Burkholderia pseudomallei 104(1990)"],["NCBITaxon%3A357348","Burkholderia pseudomallei 1106a"],["NCBITaxon%3A357347","Burkholderia pseudomallei 1106b"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":4,"nb":183,"a":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"],["TED%3AAF-A0A085UKV7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085UKV7-F1-model_v4_TED01"],["TED%3AAF-A0A4R6IU28-F1-model_v4_TED02","TED novel fold AF-A0A4R6IU28-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A86840","Pseudomonas cannabina"],["NCBITaxon%3A53409","Pseudomonas coronafaciens"],["NCBITaxon%3A29438","Pseudomonas savastanoi"],["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A1204471","Pseudomonas syringae BRIP34876"]]},{"id":"NCBITaxon:28037","l":"Streptococcus mitis","na":4,"nb":38,"a":[["Pfam%3APF03047","COMC family"],["TED%3AAF-A0A1X1L9U5-F1-model_v4_TED02","TED novel fold AF-A0A1X1L9U5-F1-model_v4_TED02"],["TED%3AAF-A0A428B8X0-F1-model_v4_TED01","TED novel fold AF-A0A428B8X0-F1-model_v4_TED01"],["TED%3AAF-A0A6L5H4V3-F1-model_v4_TED03","TED novel fold AF-A0A6L5H4V3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1660","Schaalia odontolytica"],["NCBITaxon%3A45634","Streptococcus cristatus"],["NCBITaxon%3A1302863","Streptococcus cristatus AS 1.3089"],["NCBITaxon%3A1302","Streptococcus gordonii"],["NCBITaxon%3A28037","Streptococcus mitis"],["NCBITaxon%3A1239792","Streptococcus mitis 11/5"]]},{"id":"NCBITaxon:85698","l":"Achromobacter xylosoxidans","na":4,"nb":21,"a":[["Pfam%3APF25975","CzcB C-terminal circularly permuted SH3-like domain"],["Pfam%3APF17524","Anti-sigma factor CnrY"],["Pfam%3APF10778","Halocarboxylic acid dehydrogenase DehI"],["TED%3AAF-A0A1R1JVF9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1R1JVF9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1389935","Achromobacter animicus"],["NCBITaxon%3A1353891","Achromobacter deleyi"],["NCBITaxon%3A32002","Achromobacter denitrificans"],["NCBITaxon%3A217204","Achromobacter insolitus"],["NCBITaxon%3A1287735","Achromobacter insuavis"],["NCBITaxon%3A470868","Achromobacter marplatensis"]]},{"id":"NCBITaxon:1914","l":"Streptomyces lavendulae","na":4,"nb":17,"a":[["Pfam%3APF01678","Diaminopimelate epimerase"],["Pfam%3APF27100","D-cycloserine synthetase DcsG, N-terminal domain"],["Pfam%3APF20240","Domain of unknown function (DUF6597)"],["Pfam%3APF11731","Pathogenicity locus"]],"b":[["NCBITaxon%3A1914","Streptomyces lavendulae"],["NCBITaxon%3A1522107","Streptomyces lavendulae subsp. avirens"],["NCBITaxon%3A1522108","Streptomyces lavendulae subsp. brasilicus"],["NCBITaxon%3A68190","Streptomyces lavendulae subsp. colombiensis"],["NCBITaxon%3A516458","Streptomyces lavendulae subsp. fuscus"],["NCBITaxon%3A66421","Streptomyces lavendulae subsp. grasserius"]]},{"id":"NCBITaxon:285","l":"Comamonas testosteroni","na":4,"nb":16,"a":[["Pfam%3APF02900","Catalytic LigB subunit of aromatic ring-opening dioxygenase"],["Pfam%3APF19301","LigXa C-terminal domain like"],["TED%3AAF-A0A096HND0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A096HND0-F1-model_v4_TED01"],["TED%3AAF-A0A1Y1JCM1-F1-model_v4_TED01","TED novel fold AF-A0A1Y1JCM1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1775535","Acidovorax sp. JCM 10065"],["NCBITaxon%3A285","Comamonas testosteroni"],["NCBITaxon%3A1009852","Comamonas testosteroni ATCC 11996"],["NCBITaxon%3A543891","Comamonas testosteroni CNB-1"],["NCBITaxon%3A688245","Comamonas testosteroni CNB-2"],["NCBITaxon%3A1440775","Comamonas testosteroni I2"]]},{"id":"NCBITaxon:301","l":"Ectopseudomonas oleovorans","na":4,"nb":15,"a":[["PROSITE%3APS00202","Rubredoxin signature"],["TED%3AAF-A0A2W5VSG0-F1-model_v4_TED02","TED novel fold AF-A0A2W5VSG0-F1-model_v4_TED02"],["TED%3AAF-A0A379JMN0-F1-model_v4_TED01","TED novel fold AF-A0A379JMN0-F1-model_v4_TED01"],["TED%3AAF-A0A379PLI0-F1-model_v4_TED03","TED novel fold AF-A0A379PLI0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A43263","Aquipseudomonas alcaligenes"],["NCBITaxon%3A301","Ectopseudomonas oleovorans"],["NCBITaxon%3A1453503","Ectopseudomonas oleovorans AD6"],["NCBITaxon%3A1182590","Ectopseudomonas oleovorans CECT 5344"],["NCBITaxon%3A1033992","Ectopseudomonas oleovorans MOIL14HWK12"],["NCBITaxon%3A468557","Ectopseudomonas oleovorans MTCC 5210"]]},{"id":"NCBITaxon:55601","l":"Vibrio anguillarum","na":4,"nb":15,"a":[["Pfam%3APF17327","Acyl homoserine lactone synthase"],["PROSITE%3APS00949","Autoinducer synthase family signature"],["TED%3AAF-A0A241NLV5-F1-model_v4_TED03","TED novel fold AF-A0A241NLV5-F1-model_v4_TED03"],["TED%3AAF-A0A290PUC4-F1-model_v4_TED02","TED novel fold AF-A0A290PUC4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1056982","Gordonia phosphorivorans"],["NCBITaxon%3A55601","Vibrio anguillarum"],["NCBITaxon%3A1161910","Vibrio anguillarum 13YK-003"],["NCBITaxon%3A882102","Vibrio anguillarum 775"],["NCBITaxon%3A990314","Vibrio anguillarum 96F"],["NCBITaxon%3A882846","Vibrio anguillarum ATCC 43308"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":4,"nb":15,"a":[["PROSITE%3APS00949","Autoinducer synthase family signature"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"],["PROSITE%3APS00607","cAMP phosphodiesterases class-II signature"],["TED%3AAF-A0A844NWZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A844NWZ1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A668","Aliivibrio fischeri"],["NCBITaxon%3A617136","Aliivibrio fischeri 1-C10"],["NCBITaxon%3A617138","Aliivibrio fischeri 9ZB36"],["NCBITaxon%3A1298605","Aliivibrio fischeri ATCC 7744 = JCM 18803 = DSM 507"],["NCBITaxon%3A1367486","Aliivibrio fischeri CB37"],["NCBITaxon%3A1367487","Aliivibrio fischeri EM17"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":4,"nb":14,"a":[["TED%3AAF-A0A7W3UB61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W3UB61-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F4B3-F1-model_v4_TED01","TED novel fold AF-A0A0D7F4B3-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F6R4-F1-model_v4_TED01","TED novel fold AF-A0A0D7F6R4-F1-model_v4_TED01"],["TED%3AAF-A0A7W3YI15-F1-model_v4_TED02","TED novel fold AF-A0A7W3YI15-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1076","Rhodopseudomonas palustris"],["NCBITaxon%3A74570","Rhodopseudomonas palustris ATCC 17001"],["NCBITaxon%3A74573","Rhodopseudomonas palustris ATCC 17007"],["NCBITaxon%3A316055","Rhodopseudomonas palustris BisA53"],["NCBITaxon%3A316056","Rhodopseudomonas palustris BisB18"],["NCBITaxon%3A316057","Rhodopseudomonas palustris BisB5"]]},{"id":"NCBITaxon:56615","l":"Puccinia graminis f. sp. tritici","na":4,"nb":13,"a":[["TED%3AAF-A0A5B0PWH9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B0PWH9-F1-model_v4_TED01"],["TED%3AAF-A0A5B0SKS6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5B0SKS6-F1-model_v4_TED02"],["TED%3AAF-A0A5B0NZU9-F1-model_v4_TED01","TED novel fold AF-A0A5B0NZU9-F1-model_v4_TED01"],["TED%3AAF-A0A5B0QTE7-F1-model_v4_TED03","TED novel fold AF-A0A5B0QTE7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A56615","Puccinia graminis f. sp. tritici"],["NCBITaxon%3A626359","Puccinia graminis f. sp. tritici 05KEN156/04"],["NCBITaxon%3A626360","Puccinia graminis f. sp. tritici 06KEN-19-V-3"],["NCBITaxon%3A626362","Puccinia graminis f. sp. tritici 06YEM 34-1"],["NCBITaxon%3A626361","Puccinia graminis f. sp. tritici 07KEN 24-4"],["NCBITaxon%3A645092","Puccinia graminis f. sp. tritici 126-6711"]]},{"id":"NCBITaxon:28447","l":"Clavibacter michiganensis","na":4,"nb":12,"a":[["TED%3AAF-A0A251YC11-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A251YC11-F1-model_v4_TED02"],["TED%3AAF-A0A2S5VA57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5VA57-F1-model_v4_TED01"],["TED%3AAF-A0A2S5VJK2-F1-model_v4_TED01","TED novel fold AF-A0A2S5VJK2-F1-model_v4_TED01"],["TED%3AAF-A0A399NHQ8-F1-model_v4_TED01","TED novel fold AF-A0A399NHQ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1874630","Clavibacter capsici"],["NCBITaxon%3A2301718","Clavibacter lycopersici"],["NCBITaxon%3A28447","Clavibacter michiganensis"],["NCBITaxon%3A33014","Clavibacter michiganensis subsp. insidiosus"],["NCBITaxon%3A33013","Clavibacter michiganensis subsp. michiganensis"],["NCBITaxon%3A443906","Clavibacter michiganensis subsp. michiganensis NCPPB 382"]]},{"id":"NCBITaxon:301447","l":"Streptococcus pyogenes serotype M1","na":12,"nb":4,"a":[["Pfam%3APF16595","PAM-interacting domain of CRISPR-associated endonuclease Cas9"],["Pfam%3APF22702","Cas9 RuvC domain"],["Pfam%3APF24547","Domain of unknown function (DUF7601)"],["Pfam%3APF22382","Endo-beta-N-acetylglucosaminidase, helical bundle"],["Pfam%3APF20746","Endo-beta-N-acetylglucosaminidase F2, Ig-like domain"],["Pfam%3APF12892","Spy0128-like isopeptide containing domain"]],"b":[["NCBITaxon%3A1207470","Streptococcus pyogenes M1 476"],["NCBITaxon%3A160490","Streptococcus pyogenes M1 GAS"],["NCBITaxon%3A293653","Streptococcus pyogenes MGAS5005"],["NCBITaxon%3A301447","Streptococcus pyogenes serotype M1"]]},{"id":"NCBITaxon:272624","l":"Legionella pneumophila subsp. pneumophila (strain Philadelphia 1 / ATCC 33152 / DSM 7513)","na":9,"nb":4,"a":[["Pfam%3APF22170","Phosphocholine transferase AnkX insertion domain"],["Pfam%3APF23127","DotM, C-terminal cytoplasmic domain"],["Pfam%3APF14860","DrrA phosphatidylinositol 4-phosphate binding domain"],["Pfam%3APF01346","Domain amino terminal to FKBP-type peptidyl-prolyl isomerase"],["Pfam%3APF19335","Heavy metal binding domain"],["Pfam%3APF26393","Lart1 ADP-ribosyltransferase family"]],"b":[["NCBITaxon%3A446","Legionella pneumophila"],["NCBITaxon%3A91891","Legionella pneumophila subsp. pneumophila"],["NCBITaxon%3A1236535","Legionella pneumophila subsp. pneumophila JCM 7571"],["NCBITaxon%3A272624","Legionella pneumophila subsp. pneumophila str. Philadelphia 1"]]},{"id":"NCBITaxon:40520","l":"Blautia obeum","na":4,"nb":7,"a":[["TED%3AAF-A0A174PFW9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A174PFW9-F1-model_v4_TED01"],["TED%3AAF-A0A174PHS9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A174PHS9-F1-model_v4_TED02"],["TED%3AAF-A0A415LGR0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A415LGR0-F1-model_v4_TED01"],["TED%3AAF-A0A414KHY7-F1-model_v4_TED02","TED novel fold AF-A0A414KHY7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A40520","Blautia obeum"],["NCBITaxon%3A657314","Blautia obeum A2-162"],["NCBITaxon%3A411459","Blautia obeum ATCC 29174"],["NCBITaxon%3A1263107","Blautia obeum CAG:39"],["NCBITaxon%3A1339609","Blautia obeum TS7.1-1.1"],["NCBITaxon%3A1339610","Blautia obeum TS7.3-1.1"]]},{"id":"NCBITaxon:238","l":"Elizabethkingia meningoseptica","na":4,"nb":6,"a":[["Pfam%3APF21252","Glycosyl hydrolase 109, C-terminal domain"],["Pfam%3APF26305","cGAS/DncV-like nucleotidyltransferase C-terminal helical domain"],["PROSITE%3APS00743","Beta-lactamases class B signature 1"],["PROSITE%3APS00744","Beta-lactamases class B signature 2"]],"b":[["NCBITaxon%3A1453492","Chryseobacterium hispalense"],["NCBITaxon%3A238","Elizabethkingia meningoseptica"],["NCBITaxon%3A1216967","Elizabethkingia meningoseptica ATCC 13253 = NBRC 12535"],["NCBITaxon%3A1379264","Elizabethkingia meningoseptica KuYH"],["NCBITaxon%3A247","Empedobacter brevis"],["NCBITaxon%3A343874","Empedobacter falsenii"]]},{"id":"NCBITaxon:5693","l":"Trypanosoma cruzi","na":6,"nb":4,"a":[["Pfam%3APF22592","FCaBP EF-hand domain"],["Pfam%3APF09394","Chagasin family peptidase inhibitor I42"],["Pfam%3APF12131","Protein of unknown function (DUF3586)"],["Pfam%3APF11052","Trans-sialidase of Trypanosoma hydrophobic C-terminal"],["Pfam%3APF13859","BNR repeat-like domain"],["TED%3AAF-A0A2V2XJY2-F1-model_v4_TED02","TED novel fold AF-A0A2V2XJY2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A5693","Trypanosoma cruzi"],["NCBITaxon%3A85057","Trypanosoma cruzi cruzi"],["NCBITaxon%3A353153","Trypanosoma cruzi strain CL Brener"],["NCBITaxon%3A366581","Trypanosoma cruzi strain Esmeraldo"]]},{"id":"NCBITaxon:585","l":"Proteus vulgaris","na":4,"nb":6,"a":[["Pfam%3APF05015","RelE-like toxin of type II toxin-antitoxin system HigB"],["PROSITE%3APS00594","Aromatic amino acids permeases signature"],["PROSITE%3APS00853","Beta-eliminating lyases pyridoxal-phosphate attachment site"],["Pfam%3APF09093","Lyase, catalytic"]],"b":[["NCBITaxon%3A183417","Proteus hauseri"],["NCBITaxon%3A585","Proteus vulgaris"],["NCBITaxon%3A1255590","Proteus vulgaris 1M25"],["NCBITaxon%3A1173773","Proteus vulgaris 66N"],["NCBITaxon%3A1403541","Proteus vulgaris AI05"],["NCBITaxon%3A368002","uncultured Proteus sp."]]},{"id":"NCBITaxon:1366","l":"Pseudolactococcus raffinolactis","na":5,"nb":4,"a":[["TED%3AAF-A0A5R9CHM3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5R9CHM3-F1-model_v4_TED02"],["TED%3AAF-A0A6H0UIE5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6H0UIE5-F1-model_v4_TED01"],["TED%3AAF-A0A6H0UK30-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6H0UK30-F1-model_v4_TED01"],["TED%3AAF-A0A6H0URM1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6H0URM1-F1-model_v4_TED02"],["TED%3AAF-A0A6H0UGG1-F1-model_v4_TED06","TED novel fold AF-A0A6H0UGG1-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A1366","Pseudolactococcus raffinolactis"],["NCBITaxon%3A1215915","Pseudolactococcus raffinolactis 4877"],["NCBITaxon%3A1255675","Pseudolactococcus raffinolactis JIM2957"],["NCBITaxon%3A1348633","Pseudolactococcus raffinolactis NBRC 100932"]]},{"id":"NCBITaxon:1501","l":"Clostridium pasteurianum","na":4,"nb":5,"a":[["Pfam%3APF22609","Iron hydrogenase 1-like, iron-sulfur centre-binding domain"],["Pfam%3APF09582","Iron only nitrogenase protein AnfO (AnfO_nitrog)"],["PROSITE%3APS00746","NifH/frxC family signature 1"],["PROSITE%3APS00699","Nitrogenases component 1 alpha and beta subunits signature 1"]],"b":[["NCBITaxon%3A1501","Clostridium pasteurianum"],["NCBITaxon%3A86416","Clostridium pasteurianum BC1"],["NCBITaxon%3A1262449","Clostridium pasteurianum DSM 525 = ATCC 6013"],["NCBITaxon%3A1341159","Clostridium pasteurianum TK"],["NCBITaxon%3A1506","Clostridium sp."]]},{"id":"NCBITaxon:1505","l":"Paraclostridium sordellii","na":4,"nb":5,"a":[["Pfam%3APF13859","BNR repeat-like domain"],["Pfam%3APF01473","Putative cell wall binding repeat"],["Pfam%3APF19127","Choline-binding repeat"],["TED%3AAF-A0A822PVZ2-F1-model_v4_TED01","TED novel fold AF-A0A822PVZ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1490","Paraclostridium bifermentans"],["NCBITaxon%3A1505","Paraclostridium sordellii"],["NCBITaxon%3A1172204","Paraclostridium sordellii 8483"],["NCBITaxon%3A1292036","Paraclostridium sordellii ATCC 9714"],["NCBITaxon%3A1292035","Paraclostridium sordellii VPI 9048"]]},{"id":"NCBITaxon:1525","l":"Neomoorella thermoacetica","na":4,"nb":5,"a":[["Pfam%3APF25461","Selenocysteine-specific elongation factor, beta-barrel domain"],["Pfam%3APF18537","Carbon monoxide dehydrogenase subunit alpha N-terminal domain"],["Pfam%3APF04060","Putative Fe-S cluster"],["Pfam%3APF03599","CO dehydrogenase/acetyl-CoA synthase delta subunit"]],"b":[["NCBITaxon%3A264732","Moorella thermoacetica ATCC 39073"],["NCBITaxon%3A1122242","Moorella thermoacetica DSM 1974"],["NCBITaxon%3A1325331","Moorella thermoacetica Y72"],["NCBITaxon%3A3051332","Neomoorella caeni"],["NCBITaxon%3A1525","Neomoorella thermoacetica"]]},{"id":"NCBITaxon:2021","l":"Thermobifida fusca","na":5,"nb":4,"a":[["Pfam%3APF00553","Cellulose binding domain"],["Pfam%3APF01341","Glycosyl hydrolases family 6"],["PROSITE%3APS00561","CBM2a (carbohydrate-binding type-2) domain signature"],["PROSITE%3APS00655","Glycosyl hydrolases family 6 signature 1"],["PROSITE%3APS00656","Glycosyl hydrolases family 6 signature 2"]],"b":[["NCBITaxon%3A2021","Thermobifida fusca"],["NCBITaxon%3A1223522","Thermobifida fusca NBRC 14071 = JCM 3263"],["NCBITaxon%3A1169414","Thermobifida fusca TM51"],["NCBITaxon%3A269800","Thermobifida fusca YX"]]},{"id":"NCBITaxon:224914","l":"","na":4,"nb":5,"a":[["Pfam%3APF03625","Domain of unknown function DUF302"],["Pfam%3APF07559","Flagellar basal body protein FlaE D2 domain"],["Pfam%3APF07536","HWE histidine kinase"],["Pfam%3APF06776","Invasion associated locus B (IalB) protein"]],"b":[["NCBITaxon%3A29459","Brucella melitensis"],["NCBITaxon%3A1143191","Brucella melitensis 16M13W"],["NCBITaxon%3A1143190","Brucella melitensis 16M1W"],["NCBITaxon%3A644337","Brucella melitensis bv. 1"],["NCBITaxon%3A224914","Brucella melitensis bv. 1 str. 16M"]]},{"id":"NCBITaxon:28068","l":"Rubrivivax gelatinosus","na":5,"nb":4,"a":[["Pfam%3APF27123","Carotenoid hydratase CrtC"],["Pfam%3APF01355","High potential iron-sulfur protein"],["Pfam%3APF00556","Antenna complex alpha/beta subunit"],["PROSITE%3APS00969","Antenna complexes beta subunits signature"],["TED%3AAF-A0A4R2M4B0-F1-model_v4_TED02","TED novel fold AF-A0A4R2M4B0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A28068","Rubrivivax gelatinosus"],["NCBITaxon%3A1154769","Rubrivivax gelatinosus CBS"],["NCBITaxon%3A983917","Rubrivivax gelatinosus IL144"],["NCBITaxon%3A1138313","Rubrivivax gelatinosus S1"]]},{"id":"NCBITaxon:29494","l":"Vibrio furnissii","na":4,"nb":5,"a":[["Pfam%3APF17957","Bacterial Ig domain"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"],["Pfam%3APF02839","Carbohydrate-binding module family 5/12"],["Pfam%3APF06483","Chitinase C"]],"b":[["NCBITaxon%3A676","Vibrio fluvialis"],["NCBITaxon%3A29494","Vibrio furnissii"],["NCBITaxon%3A675811","Vibrio furnissii CIP 102972"],["NCBITaxon%3A903510","Vibrio furnissii NCTC 11218"],["NCBITaxon%3A1339240","Vibrio furnissii ZOR0035"]]},{"id":"NCBITaxon:32053","l":"Thermostichus vulcanus","na":4,"nb":5,"a":[["Pfam%3APF14495","Cytochrome c-550 domain"],["Pfam%3APF00283","Cytochrome b559, alpha (gene psbE) and beta (gene psbF)subunits"],["Pfam%3APF00284","Lumenal portion of Cytochrome b559, alpha (gene psbE) subunit"],["PROSITE%3APS00537","Cytochrome b559 subunits heme-binding site signature"]],"b":[["NCBITaxon%3A32053","Thermostichus vulcanus"],["NCBITaxon%3A2005468","Thermostichus vulcanus NIES-2134"],["NCBITaxon%3A1048443","Thermostichus vulcanus RKN"],["NCBITaxon%3A455064","Thermostichus vulcanus str. Copeland"],["NCBITaxon%3A2813851","Thermostichus vulcanus str. 'Rupite'"]]},{"id":"NCBITaxon:4792","l":"","na":4,"nb":5,"a":[["TED%3AAF-W2KKX9-F1-model_v4_TED01","TED highly-symmetric fold AF-W2KKX9-F1-model_v4_TED01"],["TED%3AAF-W2KMG1-F1-model_v4_TED01","TED novel fold AF-W2KMG1-F1-model_v4_TED01"],["TED%3AAF-W2LDM9-F1-model_v4_TED01","TED novel fold AF-W2LDM9-F1-model_v4_TED01"],["TED%3AAF-W2MCU3-F1-model_v4_TED03","TED novel fold AF-W2MCU3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A4792","Phytophthora nicotianae"],["NCBITaxon%3A761204","Phytophthora nicotianae INRA-310"],["NCBITaxon%3A1317064","Phytophthora nicotianae P10297"],["NCBITaxon%3A1317065","Phytophthora nicotianae P1569"],["NCBITaxon%3A1317066","Phytophthora nicotianae P1976"]]},{"id":"NCBITaxon:5811","l":"Toxoplasma gondii","na":5,"nb":4,"a":[["Pfam%3APF24633","Domain of unknown function (DUF7630)"],["Pfam%3APF24634","Domain of unknown function (DUF7631)"],["Pfam%3APF05084","Granule antigen protein (GRA6)"],["Pfam%3APF14531","Kinase-like"],["Pfam%3APF10564","Sialic-acid binding micronemal adhesive repeat"]],"b":[["NCBITaxon%3A5811","Toxoplasma gondii"],["NCBITaxon%3A1073826","Toxoplasma gondii GUY-DOS"],["NCBITaxon%3A1073827","Toxoplasma gondii GUY-MAT"],["NCBITaxon%3A1073830","Toxoplasma gondii TgCkGy2"]]},{"id":"NCBITaxon:959","l":"Bdellovibrio bacteriovorus","na":5,"nb":4,"a":[["TED%3AAF-A0A150WJL7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A150WJL7-F1-model_v4_TED01"],["TED%3AAF-A0A150WK21-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A150WK21-F1-model_v4_TED01"],["TED%3AAF-A0A1Z3N7G2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Z3N7G2-F1-model_v4_TED02"],["TED%3AAF-A0A150WR18-F1-model_v4_TED04","TED novel fold AF-A0A150WR18-F1-model_v4_TED04"],["TED%3AAF-A0A162GEG0-F1-model_v4_TED02","TED novel fold AF-A0A162GEG0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A959","Bdellovibrio bacteriovorus"],["NCBITaxon%3A264462","Bdellovibrio bacteriovorus HD100"],["NCBITaxon%3A1069642","Bdellovibrio bacteriovorus str. Tiberius"],["NCBITaxon%3A765869","Bdellovibrio bacteriovorus W"]]},{"id":"NCBITaxon:33","l":"Myxococcus fulvus","na":4,"nb":4,"a":[["TED%3AAF-A0A511SVC1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A511SVC1-F1-model_v4_TED01"],["TED%3AAF-A0A511SU64-F1-model_v4_TED01","TED novel fold AF-A0A511SU64-F1-model_v4_TED01"],["TED%3AAF-A0A511T2U3-F1-model_v4_TED02","TED novel fold AF-A0A511T2U3-F1-model_v4_TED02"],["TED%3AAF-A0A511T9F8-F1-model_v4_TED05","TED novel fold AF-A0A511T9F8-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A33","Myxococcus fulvus"],["NCBITaxon%3A1334629","Myxococcus fulvus 124B02"],["NCBITaxon%3A483219","Myxococcus fulvus HW-1"],["NCBITaxon%3A675525","Myxococcus fulvus Mx f65"]]},{"id":"NCBITaxon:689","l":"Vibrio mediterranei","na":4,"nb":4,"a":[["TED%3AAF-A0A3G4VCH4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3G4VCH4-F1-model_v4_TED01"],["TED%3AAF-A0A7Y3YAY8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y3YAY8-F1-model_v4_TED01"],["TED%3AAF-A0A855TK19-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A855TK19-F1-model_v4_TED01"],["TED%3AAF-A0A3G4V5D8-F1-model_v4_TED03","TED novel fold AF-A0A3G4V5D8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A689","Vibrio mediterranei"],["NCBITaxon%3A1224139","Vibrio mediterranei A203"],["NCBITaxon%3A391591","Vibrio mediterranei AK1"],["NCBITaxon%3A1219069","Vibrio mediterranei NBRC 15635"]]},{"id":"NCBITaxon:149539","l":"Salmonella enterica subsp. enterica serovar Enteritidis","na":3,"nb":619,"a":[["Pfam%3APF13508","Acetyltransferase (GNAT) domain"],["Pfam%3APF26304","FliM/N C-terminal related"],["Pfam%3APF07012","Curlin associated repeat"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A149539","Salmonella enterica subsp. enterica serovar Enteritidis"],["NCBITaxon%3A1192642","Salmonella enterica subsp. enterica serovar Enteritidis str. 02-2966"],["NCBITaxon%3A1192608","Salmonella enterica subsp. enterica serovar Enteritidis str. 04-0307"],["NCBITaxon%3A1192643","Salmonella enterica subsp. enterica serovar Enteritidis str. 0502571"]]},{"id":"NCBITaxon:1639","l":"Listeria monocytogenes","na":3,"nb":478,"a":[["TED%3AAF-A0A6Z1JB74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6Z1JB74-F1-model_v4_TED01"],["TED%3AAF-A0A5Z1VYX2-F1-model_v4_TED01","TED novel fold AF-A0A5Z1VYX2-F1-model_v4_TED01"],["TED%3AAF-A0A823IT06-F1-model_v4_TED02","TED novel fold AF-A0A823IT06-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1639","Listeria monocytogenes"],["NCBITaxon%3A1126011","Listeria monocytogenes 07PF0776"],["NCBITaxon%3A653938","Listeria monocytogenes 08-5578"],["NCBITaxon%3A637381","Listeria monocytogenes 08-5923"],["NCBITaxon%3A393133","Listeria monocytogenes 10403S"],["NCBITaxon%3A1380708","Listeria monocytogenes 36-25-1"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":3,"nb":118,"a":[["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF08130","Type A lantibiotic family"],["Pfam%3APF04738","Lantibiotic dehydratase, N terminus"]],"b":[["NCBITaxon%3A69966","Macrococcoides caseolyticum"],["NCBITaxon%3A1822","Nocardia vaccinii"],["NCBITaxon%3A1210098","Nocardia vaccinii NBRC 15922"],["NCBITaxon%3A1282","Staphylococcus epidermidis"],["NCBITaxon%3A1235440","Staphylococcus epidermidis 12142587"],["NCBITaxon%3A1000590","Staphylococcus epidermidis 14.1.R1.SE"]]},{"id":"NCBITaxon:1166","l":"Dolichospermum flos-aquae","na":3,"nb":107,"a":[["PROSITE%3APS00669","Gas vesicles protein GVPa signature 2"],["PROSITE%3APS00235","Gas vesicles protein GVPc repeated domain signature"],["Pfam%3APF01304","Gas vesicles protein GVPc repeated domain"]],"b":[["NCBITaxon%3A1166","Dolichospermum flos-aquae"],["NCBITaxon%3A749200","Dolichospermum flos-aquae 04-10"],["NCBITaxon%3A1335026","Dolichospermum flos-aquae 04-37"],["NCBITaxon%3A575786","Dolichospermum flos-aquae 04-40"],["NCBITaxon%3A575787","Dolichospermum flos-aquae 04-53"],["NCBITaxon%3A749201","Dolichospermum flos-aquae 04-57"]]},{"id":"NCBITaxon:103796","l":"Pseudomonas syringae pv. actinidiae","na":3,"nb":65,"a":[["Pfam%3APF05425","Copper resistance protein D"],["TED%3AAF-J7I956-F1-model_v4_TED01","TED highly-symmetric fold AF-J7I956-F1-model_v4_TED01"],["TED%3AAF-J7IG33-F1-model_v4_TED01","TED highly-symmetric fold AF-J7IG33-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A103796","Pseudomonas syringae pv. actinidiae"],["NCBITaxon%3A1094176","Pseudomonas syringae pv. actinidiae CFBP 7286"],["NCBITaxon%3A1108967","Pseudomonas syringae pv. actinidiae CH2010-5"],["NCBITaxon%3A1108968","Pseudomonas syringae pv. actinidiae CH2010-6"],["NCBITaxon%3A1343752","Pseudomonas syringae pv. actinidiae CH2010-7"],["NCBITaxon%3A1343741","Pseudomonas syringae pv. actinidiae Haxa4"]]},{"id":"NCBITaxon:93061","l":"Staphylococcus aureus (strain NCTC 8325 / PS 47)","na":47,"nb":3,"a":[["IDPO%3A0000033","flexible linker"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF07694","5TMR of 5TMR-LYT"],["Pfam%3APF01757","Acyltransferase domain"],["Pfam%3APF18719","ArlS sensor domain"],["Pfam%3APF02216","B domain"]],"b":[["NCBITaxon%3A1280","Staphylococcus aureus"],["NCBITaxon%3A93061","Staphylococcus aureus subsp. aureus NCTC 8325"],["NCBITaxon%3A561307","Staphylococcus aureus subsp. aureus RN4220"]]},{"id":"NCBITaxon:823","l":"Parabacteroides distasonis","na":3,"nb":45,"a":[["TED%3AAF-A0A412R0B2-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A412R0B2-F1-model_v4_TED05"],["TED%3AAF-A0A4S2EEJ9-F1-model_v4_TED01","TED novel fold AF-A0A4S2EEJ9-F1-model_v4_TED01"],["TED%3AAF-A0A5C6KM13-F1-model_v4_TED03","TED novel fold AF-A0A5C6KM13-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A823","Parabacteroides distasonis"],["NCBITaxon%3A435591","Parabacteroides distasonis ATCC 8503"],["NCBITaxon%3A999416","Parabacteroides distasonis CL03T12C09"],["NCBITaxon%3A999417","Parabacteroides distasonis CL09T03C24"],["NCBITaxon%3A1339342","Parabacteroides distasonis str. 3776 D15 i"],["NCBITaxon%3A1339343","Parabacteroides distasonis str. 3776 D15 iv"]]},{"id":"NCBITaxon:714","l":"Aggregatibacter actinomycetemcomitans","na":3,"nb":35,"a":[["Pfam%3APF10137","CAP12/Pycsar effector protein, TIR domain"],["Pfam%3APF25988","CyaD, alpha-helical hairpin domain"],["PROSITE%3APS00543","HlyD family secretion proteins signature"]],"b":[["NCBITaxon%3A714","Aggregatibacter actinomycetemcomitans"],["NCBITaxon%3A754507","Aggregatibacter actinomycetemcomitans ANH9381"],["NCBITaxon%3A668336","Aggregatibacter actinomycetemcomitans D11S-1"],["NCBITaxon%3A754505","Aggregatibacter actinomycetemcomitans D17P-3"],["NCBITaxon%3A694569","Aggregatibacter actinomycetemcomitans D7S-1"],["NCBITaxon%3A1120957","Aggregatibacter actinomycetemcomitans DSM 8324"]]},{"id":"NCBITaxon:715","l":"Actinobacillus pleuropneumoniae","na":3,"nb":35,"a":[["Pfam%3APF26002","AprE-like, beta-barrel domain"],["Pfam%3APF02794","RTX toxin acyltransferase family"],["PROSITE%3APS00543","HlyD family secretion proteins signature"]],"b":[["NCBITaxon%3A44930","Natronobacterium gregoryi"],["NCBITaxon%3A797304","Natronobacterium gregoryi SP2"],["NCBITaxon%3A715","Actinobacillus pleuropneumoniae"],["NCBITaxon%3A1224142","Actinobacillus pleuropneumoniae S8"],["NCBITaxon%3A40325","Actinobacillus pleuropneumoniae serovar 1"],["NCBITaxon%3A754347","Actinobacillus pleuropneumoniae serovar 10"]]},{"id":"NCBITaxon:820","l":"Bacteroides uniformis","na":3,"nb":34,"a":[["TED%3AAF-A0A412XCH6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A412XCH6-F1-model_v4_TED03"],["TED%3AAF-A0A1Q6HVQ2-F1-model_v4_TED02","TED novel fold AF-A0A1Q6HVQ2-F1-model_v4_TED02"],["TED%3AAF-A0A6N2VYJ0-F1-model_v4_TED03","TED novel fold AF-A0A6N2VYJ0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A28116","Bacteroides ovatus"],["NCBITaxon%3A820","Bacteroides uniformis"],["NCBITaxon%3A411479","Bacteroides uniformis ATCC 8492"],["NCBITaxon%3A1263055","Bacteroides uniformis CAG:3"],["NCBITaxon%3A997889","Bacteroides uniformis CL03T00C23"],["NCBITaxon%3A997890","Bacteroides uniformis CL03T12C37"]]},{"id":"NCBITaxon:75985","l":"Mannheimia haemolytica","na":3,"nb":32,"a":[["Pfam%3APF04224","Protein of unknown function, DUF417"],["Pfam%3APF04393","Protein of unknown function (DUF535)"],["TED%3AAF-A0A378MS69-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A378MS69-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A47735","Bibersteinia trehalosi"],["NCBITaxon%3A85401","Mannheimia glucosida"],["NCBITaxon%3A75985","Mannheimia haemolytica"],["NCBITaxon%3A1261126","Mannheimia haemolytica D153"],["NCBITaxon%3A1311759","Mannheimia haemolytica D171"],["NCBITaxon%3A1311760","Mannheimia haemolytica D174"]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":3,"nb":31,"a":[["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"],["PROSITE%3APS00896","LacY family proton/sugar symporters signature 1"],["PROSITE%3APS00897","LacY family proton/sugar symporters signature 2"]],"b":[["NCBITaxon%3A571","Klebsiella oxytoca"],["NCBITaxon%3A883116","Klebsiella oxytoca 09-7231"],["NCBITaxon%3A883117","Klebsiella oxytoca 10-5242"],["NCBITaxon%3A883118","Klebsiella oxytoca 10-5243"],["NCBITaxon%3A883119","Klebsiella oxytoca 10-5244"],["NCBITaxon%3A883120","Klebsiella oxytoca 10-5245"]]},{"id":"NCBITaxon:1717","l":"Corynebacterium diphtheriae","na":3,"nb":28,"a":[["Pfam%3APF08051","Erythromycin resistance leader peptide"],["PROSITE%3APS01007","Transposases, Mutator family, signature"],["TED%3AAF-A0A811G0F8-F1-model_v4_TED05","TED novel fold AF-A0A811G0F8-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1717","Corynebacterium diphtheriae"],["NCBITaxon%3A698966","Corynebacterium diphtheriae 241"],["NCBITaxon%3A698962","Corynebacterium diphtheriae 31A"],["NCBITaxon%3A698973","Corynebacterium diphtheriae BH8"],["NCBITaxon%3A1720349","Corynebacterium diphtheriae bv. gravis"],["NCBITaxon%3A1450521","Corynebacterium diphtheriae bv. gravis str. ISS 4060"]]},{"id":"NCBITaxon:1680","l":"Bifidobacterium adolescentis","na":3,"nb":27,"a":[["TED%3AAF-A0A1X2Z2R7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1X2Z2R7-F1-model_v4_TED02"],["TED%3AAF-A0A1X2Z7X6-F1-model_v4_TED02","TED novel fold AF-A0A1X2Z7X6-F1-model_v4_TED02"],["TED%3AAF-A0A1X2ZNR8-F1-model_v4_TED04","TED novel fold AF-A0A1X2ZNR8-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1680","Bifidobacterium adolescentis"],["NCBITaxon%3A367928","Bifidobacterium adolescentis ATCC 15703"],["NCBITaxon%3A1263057","Bifidobacterium adolescentis CAG:119"],["NCBITaxon%3A1410644","Bifidobacterium adolescentis DSM 20087"],["NCBITaxon%3A1437612","Bifidobacterium adolescentis JCM 15918"],["NCBITaxon%3A411481","Bifidobacterium adolescentis L2-32"]]},{"id":"NCBITaxon:329854","l":"Bacteroides intestinalis","na":3,"nb":20,"a":[["TED%3AAF-A0A414LEH4-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A414LEH4-F1-model_v4_TED06"],["TED%3AAF-A0A415N9R3-F1-model_v4_TED02","TED novel fold AF-A0A415N9R3-F1-model_v4_TED02"],["TED%3AAF-A0A4Q5H9L0-F1-model_v4_TED03","TED novel fold AF-A0A4Q5H9L0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A329854","Bacteroides intestinalis"],["NCBITaxon%3A1263048","Bacteroides intestinalis CAG:315"],["NCBITaxon%3A1263049","Bacteroides intestinalis CAG:564"],["NCBITaxon%3A471870","Bacteroides intestinalis DSM 17393"],["NCBITaxon%3A702442","Bacteroides intestinalis EK2"],["NCBITaxon%3A1338866","Bacteroides intestinalis TSDA1.8-1.1"]]},{"id":"NCBITaxon:98360","l":"Salmonella enterica subsp. enterica serovar Dublin","na":3,"nb":20,"a":[["Pfam%3APF07824","Type III secretion chaperone domain"],["Pfam%3APF22370","Flagellin, beta sheet domain"],["Pfam%3APF05925","Enterobacterial virulence protein IpgD"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A98360","Salmonella enterica subsp. enterica serovar Dublin"],["NCBITaxon%3A1173809","Salmonella enterica subsp. enterica serovar Dublin str. 0432"],["NCBITaxon%3A1173810","Salmonella enterica subsp. enterica serovar Dublin str. 0637"],["NCBITaxon%3A1173811","Salmonella enterica subsp. enterica serovar Dublin str. 0773"]]},{"id":"NCBITaxon:85963","l":"Helicobacter pylori (strain J99 / ATCC 700824)","na":18,"nb":3,"a":[["Pfam%3APF15437","Plasminogen-binding protein pgbA C-terminal"],["Pfam%3APF02293","AmiS/UreI family transporter"],["Pfam%3APF26365","Apolipoprotein N-acyltransferase integral membrane domain"],["Pfam%3APF16730","DnaG-primase C-terminal, helicase-binding domain"],["Pfam%3APF10398","Protein of unknown function (DUF2443)"],["Pfam%3APF13099","Domain of unknown function (DUF3944)"]],"b":[["NCBITaxon%3A141390","Chromohalobacter israelensis"],["NCBITaxon%3A210","Helicobacter pylori"],["NCBITaxon%3A85963","Helicobacter pylori J99"]]},{"id":"NCBITaxon:95486","l":"Burkholderia cenocepacia","na":3,"nb":18,"a":[["TED%3AAF-A0A109EHZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A109EHZ6-F1-model_v4_TED01"],["TED%3AAF-A0A071M3L2-F1-model_v4_TED01","TED novel fold AF-A0A071M3L2-F1-model_v4_TED01"],["TED%3AAF-A0A088UYL8-F1-model_v4_TED01","TED novel fold AF-A0A088UYL8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A95486","Burkholderia cenocepacia"],["NCBITaxon%3A1110700","Burkholderia cenocepacia AU16956"],["NCBITaxon%3A1110701","Burkholderia cenocepacia AU16958"],["NCBITaxon%3A985077","Burkholderia cenocepacia BC7"],["NCBITaxon%3A1165869","Burkholderia cenocepacia D2AES"],["NCBITaxon%3A1055524","Burkholderia cenocepacia H111"]]},{"id":"NCBITaxon:176299","l":"Agrobacterium fabrum (strain C58 / ATCC 33970)","na":17,"nb":3,"a":[["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF28403","Aconitase X second domain"],["Pfam%3APF28406","Aconitase X third domain"],["Pfam%3APF04412","Aconitase X first domain"],["Pfam%3APF01989","Aconitase X swivel domain"]],"b":[["NCBITaxon%3A1176649","Agrobacterium fabrum"],["NCBITaxon%3A176299","Agrobacterium fabrum str. C58"],["NCBITaxon%3A362","Agrobacterium radiobacter"]]},{"id":"NCBITaxon:5888","l":"Paramecium tetraurelia","na":17,"nb":3,"a":[["Pfam%3APF14926","Cilia- and flagella-associated protein 300"],["TED%3AAF-A0C038-F1-model_v4_TED07","TED highly-symmetric fold AF-A0C038-F1-model_v4_TED07"],["TED%3AAF-A0CFS1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0CFS1-F1-model_v4_TED02"],["TED%3AAF-A0CHQ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0CHQ8-F1-model_v4_TED01"],["TED%3AAF-A0CHQ8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0CHQ8-F1-model_v4_TED02"],["TED%3AAF-A0CHR9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0CHR9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A28907","Caedibacter taeniospiralis"],["NCBITaxon%3A5888","Paramecium tetraurelia"],["NCBITaxon%3A412030","Paramecium tetraurelia strain d4-2"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":3,"nb":16,"a":[["Pfam%3APF03423","Carbohydrate binding domain (family 25)"],["Pfam%3APF03422","Carbohydrate binding module (family 6)"],["TED%3AAF-A0A7X5SGP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X5SGP7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A114136","Paenibacillus jamilae"],["NCBITaxon%3A225917","Paenibacillus massiliensis"],["NCBITaxon%3A1406","Paenibacillus polymyxa"],["NCBITaxon%3A1333863","Paenibacillus polymyxa 1-43"],["NCBITaxon%3A1414587","Paenibacillus polymyxa A18"],["NCBITaxon%3A1206104","Paenibacillus polymyxa ATCC 12321"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":3,"nb":16,"a":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"],["TED%3AAF-A0A7H8I034-F1-model_v4_TED01","TED novel fold AF-A0A7H8I034-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1114880","Aeromonas australiensis"],["NCBITaxon%3A1264931","Flavobacterium acidificum"],["NCBITaxon%3A553","Pantoea ananatis"],["NCBITaxon%3A1419326","Pantoea ananatis 15320"],["NCBITaxon%3A932677","Pantoea ananatis AJ13355"],["NCBITaxon%3A1048262","Pantoea ananatis B1-9"]]},{"id":"NCBITaxon:1492","l":"Clostridium butyricum","na":3,"nb":15,"a":[["Pfam%3APF00302","Chloramphenicol acetyltransferase"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["PROSITE%3APS00100","Chloramphenicol acetyltransferase active site"]],"b":[["NCBITaxon%3A1520","Clostridium beijerinckii"],["NCBITaxon%3A1492","Clostridium butyricum"],["NCBITaxon%3A634501","Clostridium butyricum 2CR37"],["NCBITaxon%3A447214","Clostridium butyricum 5521"],["NCBITaxon%3A997898","Clostridium butyricum 60E.3"],["NCBITaxon%3A1280693","Clostridium butyricum AGR2140"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":15,"a":[["TED%3AAF-A0A142EAM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142EAM9-F1-model_v4_TED03"],["TED%3AAF-A0A1Q3DTY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3DTY6-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3DNE3-F1-model_v4_TED01","TED novel fold AF-A0A1Q3DNE3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A38285","Corynebacterium acetoacidophilum"],["NCBITaxon%3A1718","Corynebacterium glutamicum"],["NCBITaxon%3A196627","Corynebacterium glutamicum ATCC 13032"],["NCBITaxon%3A1079988","Corynebacterium glutamicum ATCC 14067"],["NCBITaxon%3A1204414","Corynebacterium glutamicum K051"],["NCBITaxon%3A1310161","Corynebacterium glutamicum MB001"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":3,"nb":15,"a":[["Pfam%3APF03069","Acetamidase/Formamidase family"],["PROSITE%3APS00818","Dps protein family signature 1"],["Pfam%3APF13810","Domain of unknown function (DUF4185)"]],"b":[["NCBITaxon%3A175628","Gordonia paraffinivorans"],["NCBITaxon%3A1785","Mycobacterium sp."],["NCBITaxon%3A1772","Mycolicibacterium smegmatis"],["NCBITaxon%3A1455235","Mycolicibacterium smegmatis 30-MsmegS_ND_60_A"],["NCBITaxon%3A1455243","Mycolicibacterium smegmatis 31-MsmegS_CIP_60_A"],["NCBITaxon%3A1455251","Mycolicibacterium smegmatis 32-MsmegS_CIP_30_A"]]},{"id":"NCBITaxon:272943","l":"Cereibacter sphaeroides (strain ATCC 17023 / DSM 158 / JCM 6121 / CCUG 31486 / LMG 2827 / NBRC 12203 / NCIMB 8253 / ATH 2.4.1.)","na":15,"nb":3,"a":[["IDPO%3A0000059","self-inhibition"],["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF12973","ChrR Cupin-like domain"],["Pfam%3APF07930","D-aminopeptidase, domain B"],["Pfam%3APF09086","Domain of unknown function (DUF1924)"],["Pfam%3APF13746","4Fe-4S dicluster domain"]],"b":[["NCBITaxon%3A1063","Cereibacter sphaeroides"],["NCBITaxon%3A272943","Cereibacter sphaeroides 2.4.1"],["NCBITaxon%3A2813818","[Luteovulum] sphaeroides subsp. sphaeroides"]]},{"id":"NCBITaxon:39486","l":"Dorea formicigenerans","na":3,"nb":15,"a":[["TED%3AAF-A0A3E5ESC3-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A3E5ESC3-F1-model_v4_TED05"],["TED%3AAF-A0A412MBB7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A412MBB7-F1-model_v4_TED01"],["TED%3AAF-A0A412MF47-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A412MF47-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A39486","Dorea formicigenerans"],["NCBITaxon%3A742765","Dorea formicigenerans 4_6_53AFAA"],["NCBITaxon%3A411461","Dorea formicigenerans ATCC 27755"],["NCBITaxon%3A1263073","Dorea formicigenerans CAG:28"],["NCBITaxon%3A1339457","Dorea formicigenerans TSDA1.2-1.1"],["NCBITaxon%3A1339458","Dorea formicigenerans TSDA1.2-1.2"]]},{"id":"NCBITaxon:645","l":"Aeromonas salmonicida","na":3,"nb":15,"a":[["Pfam%3APF28601","Heat shock protein 15, C-terminal region"],["Pfam%3APF12563","Hemolytic toxin N terminal"],["Pfam%3APF01203","Type II secretion system (T2SS), protein N"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A645","Aeromonas salmonicida"],["NCBITaxon%3A113288","Aeromonas salmonicida subsp. achromogenes"],["NCBITaxon%3A1233098","Aeromonas salmonicida subsp. achromogenes AS03"],["NCBITaxon%3A316054","Aeromonas salmonicida subsp. flounderacida"],["NCBITaxon%3A197700","Aeromonas salmonicida subsp. masoucida"]]},{"id":"NCBITaxon:1587","l":"Lactobacillus helveticus","na":3,"nb":14,"a":[["Pfam%3APF18008","Replication initiator protein A C-terminal domain"],["Pfam%3APF20956","Domain of unknown function (DUF4931) C-terminal domain"],["Pfam%3APF17312","Bacteriocin helveticin-J"]],"b":[["NCBITaxon%3A1587","Lactobacillus helveticus"],["NCBITaxon%3A1226336","Lactobacillus helveticus CIRM-BIA 101"],["NCBITaxon%3A1226332","Lactobacillus helveticus CIRM-BIA 103"],["NCBITaxon%3A1226333","Lactobacillus helveticus CIRM-BIA 104"],["NCBITaxon%3A1226334","Lactobacillus helveticus CIRM-BIA 951"],["NCBITaxon%3A1226335","Lactobacillus helveticus CIRM-BIA 953"]]},{"id":"NCBITaxon:582","l":"Morganella morganii","na":3,"nb":14,"a":[["PROSITE%3APS01157","Class A bacterial acid phosphatases signature"],["TED%3AAF-A0A2C5TPE5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2C5TPE5-F1-model_v4_TED01"],["TED%3AAF-A0A0A2RJY1-F1-model_v4_TED02","TED novel fold AF-A0A0A2RJY1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A582","Morganella morganii"],["NCBITaxon%3A1365974","Morganella morganii AC2_8_11_AN_D6_FAA_4"],["NCBITaxon%3A1428452","Morganella morganii F675"],["NCBITaxon%3A1416758","Morganella morganii H1r"],["NCBITaxon%3A1411647","Morganella morganii IS15"],["NCBITaxon%3A1239989","Morganella morganii SC01"]]},{"id":"NCBITaxon:1624","l":"Ligilactobacillus salivarius","na":3,"nb":13,"a":[["TED%3AAF-A0A7X2SS58-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X2SS58-F1-model_v4_TED01"],["TED%3AAF-A0A089QBS8-F1-model_v4_TED02","TED novel fold AF-A0A089QBS8-F1-model_v4_TED02"],["TED%3AAF-A0A2A2XCA8-F1-model_v4_TED01","TED novel fold AF-A0A2A2XCA8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1624","Ligilactobacillus salivarius"],["NCBITaxon%3A768728","Ligilactobacillus salivarius ACS-116-V-Col5a"],["NCBITaxon%3A1195377","Ligilactobacillus salivarius B-30514"],["NCBITaxon%3A712961","Ligilactobacillus salivarius CECT 5713"],["NCBITaxon%3A1036738","Ligilactobacillus salivarius CELA2"],["NCBITaxon%3A1273133","Ligilactobacillus salivarius cp400"]]},{"id":"NCBITaxon:165179","l":"Segatella copri","na":13,"nb":3,"a":[["TED%3AAF-A0A3R6DW71-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3R6DW71-F1-model_v4_TED02"],["TED%3AAF-A0A3R6EGS2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R6EGS2-F1-model_v4_TED01"],["TED%3AAF-A0A5Q5FTM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Q5FTM4-F1-model_v4_TED01"],["TED%3AAF-A0A3R5WNG5-F1-model_v4_TED02","TED novel fold AF-A0A3R5WNG5-F1-model_v4_TED02"],["TED%3AAF-A0A3R5YKW9-F1-model_v4_TED01","TED novel fold AF-A0A3R5YKW9-F1-model_v4_TED01"],["TED%3AAF-A0A3R6FRY2-F1-model_v4_TED01","TED novel fold AF-A0A3R6FRY2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A165179","Segatella copri"],["NCBITaxon%3A1263102","Segatella copri CAG:164"],["NCBITaxon%3A537011","Segatella copri DSM 18205"]]},{"id":"NCBITaxon:33038","l":"Mediterraneibacter gnavus","na":3,"nb":13,"a":[["Pfam%3APF16874","Glycosyl hydrolase family 36 C-terminal domain"],["Pfam%3APF16875","Glycosyl hydrolase family 36 N-terminal domain"],["Pfam%3APF04604","Type-A lantibiotic"]],"b":[["NCBITaxon%3A33038","Mediterraneibacter gnavus"],["NCBITaxon%3A1384063","Mediterraneibacter gnavus AGR2154"],["NCBITaxon%3A411470","Mediterraneibacter gnavus ATCC 29149"],["NCBITaxon%3A1263106","Mediterraneibacter gnavus CAG:126"],["NCBITaxon%3A1073375","Mediterraneibacter gnavus CC55_001C"],["NCBITaxon%3A935582","Mediterraneibacter gnavus E1"]]},{"id":"NCBITaxon:574521","l":"Escherichia coli O127:H6 (strain E2348/69 / EPEC)","na":13,"nb":3,"a":[["IDPO%3A0000006","order"],["IDPO%3A0000045","phosphorylation display site"],["Pfam%3APF02369","Bacterial Ig-like domain (group 1)"],["Pfam%3APF05307","Bundlin"],["Pfam%3APF27328","EcpD C-terminal domain"],["Pfam%3APF11924","Inverse autotransporter, beta-domain"]],"b":[["NCBITaxon%3A574521","Escherichia coli O127:H6 str. E2348/69"],["NCBITaxon%3A1336205","Escherichia coli O127:H6 str. E2348/69 substr. CVDNalr"],["NCBITaxon%3A1336206","Escherichia coli O127:H6 str. E2348/69 substr. UMD753"]]},{"id":"NCBITaxon:471472","l":"Chlamydia trachomatis serovar L2 (strain ATCC VR-902B / DSM 19102 / 434/Bu)","na":12,"nb":3,"a":[["Pfam%3APF07382","Histone H1-like nucleoprotein HC2"],["Pfam%3APF05475","Pgp3 C-terminal domain"],["Pfam%3APF22368","Response regulator protein ChxR, N-terminal domain"],["Pfam%3APF01345","CLIPPER domain"],["Pfam%3APF07577","Domain of Unknown Function (DUF1547)"],["Pfam%3APF03503","Chlamydia cysteine-rich outer membrane protein 3"]],"b":[["NCBITaxon%3A471472","Chlamydia trachomatis L2/434/Bu"],["NCBITaxon%3A1262673","Chlamydia trachomatis L2/434/Bu(f)"],["NCBITaxon%3A1263406","Chlamydia trachomatis L2/434/Bu(i)"]]},{"id":"NCBITaxon:584","l":"Proteus mirabilis","na":3,"nb":12,"a":[["Pfam%3APF05280","Flagellar transcriptional activator (FlhC)"],["TED%3AAF-A0A1Z1SXV6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z1SXV6-F1-model_v4_TED01"],["TED%3AAF-A0A7U1CMJ9-F1-model_v4_TED01","TED novel fold AF-A0A7U1CMJ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A584","Proteus mirabilis"],["NCBITaxon%3A1285374","Proteus mirabilis 1014"],["NCBITaxon%3A1308721","Proteus mirabilis ADL-319"],["NCBITaxon%3A1308722","Proteus mirabilis ADL-321"],["NCBITaxon%3A1308723","Proteus mirabilis ADL-401"],["NCBITaxon%3A525369","Proteus mirabilis ATCC 29906"]]},{"id":"NCBITaxon:831","l":"Butyrivibrio fibrisolvens","na":3,"nb":12,"a":[["Pfam%3APF16738","Starch-binding module 26"],["Pfam%3APF18318","Glutamine synthetase C-terminal domain"],["Pfam%3APF12437","Glutamine synthetase type III N terminal"]],"b":[["NCBITaxon%3A831","Butyrivibrio fibrisolvens"],["NCBITaxon%3A657324","Butyrivibrio fibrisolvens 16/4"],["NCBITaxon%3A1280697","Butyrivibrio fibrisolvens AB2020"],["NCBITaxon%3A1121131","Butyrivibrio fibrisolvens DSM 3071"],["NCBITaxon%3A1280700","Butyrivibrio fibrisolvens FE2007"],["NCBITaxon%3A1280703","Butyrivibrio fibrisolvens MD2001"]]},{"id":"NCBITaxon:565042","l":"Bifidobacterium longum subsp. longum (strain ATCC 15707 / DSM 20219 / JCM 1217 / NCTC 11818 / E194b)","na":11,"nb":3,"a":[["Pfam%3APF20578","Atrophied bacterial Ig domain"],["Pfam%3APF07523","Bacterial Ig-like domain (group 3)"],["Pfam%3APF07532","Bacterial Ig-like domain (group 4)"],["Pfam%3APF12733","Cadherin-like beta sandwich domain"],["Pfam%3APF07554","FIVAR domain"],["Pfam%3APF20737","Glycoside hydrolase family 127 C-terminal domain"]],"b":[["NCBITaxon%3A216816","Bifidobacterium longum"],["NCBITaxon%3A1679","Bifidobacterium longum subsp. longum"],["NCBITaxon%3A565042","Bifidobacterium longum subsp. longum JCM 1217"]]},{"id":"NCBITaxon:1260","l":"Finegoldia magna","na":3,"nb":10,"a":[["Pfam%3APF17573","GA-like domain"],["Pfam%3APF18656","Family of unknown function (DUF5633)"],["TED%3AAF-A0A233W4R0-F1-model_v4_TED01","TED novel fold AF-A0A233W4R0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1260","Finegoldia magna"],["NCBITaxon%3A768713","Finegoldia magna ACS-171-V-Col3"],["NCBITaxon%3A1459804","Finegoldia magna ALB8"],["NCBITaxon%3A334413","Finegoldia magna ATCC 29328"],["NCBITaxon%3A525282","Finegoldia magna ATCC 53516"],["NCBITaxon%3A866773","Finegoldia magna BVS033A4"]]},{"id":"NCBITaxon:314275","l":"Alteromonas mediterranea","na":3,"nb":10,"a":[["TED%3AAF-A0A1J0SAZ8-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1J0SAZ8-F1-model_v4_TED04"],["TED%3AAF-A0A1J0SA48-F1-model_v4_TED01","TED novel fold AF-A0A1J0SA48-F1-model_v4_TED01"],["TED%3AAF-A0A1J0SX60-F1-model_v4_TED02","TED novel fold AF-A0A1J0SX60-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A314275","Alteromonas mediterranea"],["NCBITaxon%3A1300253","Alteromonas mediterranea 615"],["NCBITaxon%3A1774373","Alteromonas mediterranea DE"],["NCBITaxon%3A1004786","Alteromonas mediterranea DE1"],["NCBITaxon%3A1300254","Alteromonas mediterranea MED64"],["NCBITaxon%3A1300255","Alteromonas mediterranea U4"]]},{"id":"NCBITaxon:561879","l":"Bacillus safensis","na":3,"nb":10,"a":[["Pfam%3APF09221","Bacteriocin class IId cyclical uberolysin-like"],["TED%3AAF-A0A1L6ZPA6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6ZPA6-F1-model_v4_TED01"],["TED%3AAF-A0A1L6ZPC9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6ZPC9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1408","Bacillus pumilus"],["NCBITaxon%3A561879","Bacillus safensis"],["NCBITaxon%3A1326975","Bacillus safensis B204-B1-5"],["NCBITaxon%3A1326976","Bacillus safensis D95"],["NCBITaxon%3A1178541","Bacillus safensis FO-36b"],["NCBITaxon%3A1326974","Bacillus safensis NH21E_2"]]},{"id":"NCBITaxon:199","l":"Campylobacter concisus","na":3,"nb":9,"a":[["TED%3AAF-A0A7S9RBE4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S9RBE4-F1-model_v4_TED03"],["TED%3AAF-A0A1Y5MKZ8-F1-model_v4_TED01","TED novel fold AF-A0A1Y5MKZ8-F1-model_v4_TED01"],["TED%3AAF-A0A7S9X6B9-F1-model_v4_TED01","TED novel fold AF-A0A7S9X6B9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A199","Campylobacter concisus"],["NCBITaxon%3A360104","Campylobacter concisus 13826"],["NCBITaxon%3A1243032","Campylobacter concisus ATCC 51561"],["NCBITaxon%3A1242969","Campylobacter concisus ATCC 51562"],["NCBITaxon%3A1242967","Campylobacter concisus UNSW1"],["NCBITaxon%3A1242965","Campylobacter concisus UNSW2"]]},{"id":"NCBITaxon:274","l":"Thermus thermophilus","na":3,"nb":8,"a":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF01861","Branched-chain polyamine synthase A C-terminal domain"],["Pfam%3APF07736","Chorismate mutase type I"]],"b":[["NCBITaxon%3A274","Thermus thermophilus"],["NCBITaxon%3A1316935","Thermus thermophilus ATCC 33923"],["NCBITaxon%3A262724","Thermus thermophilus HB27"],["NCBITaxon%3A300852","Thermus thermophilus HB8"],["NCBITaxon%3A798128","Thermus thermophilus JL-18"],["NCBITaxon%3A762633","Thermus thermophilus SG0.5JP17-16"]]},{"id":"NCBITaxon:380703","l":"Aeromonas hydrophila subsp. hydrophila (strain ATCC 7966 / DSM 30187 / BCRC 13018 / CCUG 14551 / JCM 1027 / KCTC 2358 / NCIMB 9240 / NCTC 8049)","na":8,"nb":3,"a":[["Pfam%3APF26341","tRNA 2-selenouridine synthase AAA domain"],["Pfam%3APF11890","Domain of unknown function (DUF3410)"],["Pfam%3APF11944","Protein of unknown function (DUF3461)"],["Pfam%3APF04356","Protein of unknown function (DUF489)"],["Pfam%3APF12563","Hemolytic toxin N terminal"],["Pfam%3APF04362","Bacterial Fe(2+) trafficking"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A196023","Aeromonas hydrophila subsp. hydrophila"],["NCBITaxon%3A380703","Aeromonas hydrophila subsp. hydrophila ATCC 7966"]]},{"id":"NCBITaxon:159","l":"Brachyspira hyodysenteriae","na":3,"nb":7,"a":[["Pfam%3APF04620","Flagellar filament outer layer protein Flaa"],["TED%3AAF-A0A8A7L2A3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8A7L2A3-F1-model_v4_TED01"],["TED%3AAF-A0A8A7LC03-F1-model_v4_TED02","TED novel fold AF-A0A8A7LC03-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A159","Brachyspira hyodysenteriae"],["NCBITaxon%3A1266923","Brachyspira hyodysenteriae ATCC 27164"],["NCBITaxon%3A398523","Brachyspira hyodysenteriae ATCC 31212"],["NCBITaxon%3A398522","Brachyspira hyodysenteriae ATCC 49887"],["NCBITaxon%3A1232412","Brachyspira hyodysenteriae P7455"],["NCBITaxon%3A1232411","Brachyspira hyodysenteriae P8544"]]},{"id":"NCBITaxon:28108","l":"Alteromonas macleodii","na":3,"nb":7,"a":[["TED%3AAF-A0A6C5N007-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6C5N007-F1-model_v4_TED01"],["TED%3AAF-A0A126Q0V0-F1-model_v4_TED01","TED novel fold AF-A0A126Q0V0-F1-model_v4_TED01"],["TED%3AAF-A0A6T9Y0H6-F1-model_v4_TED01","TED novel fold AF-A0A6T9Y0H6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28108","Alteromonas macleodii"],["NCBITaxon%3A529120","Alteromonas macleodii ATCC 27126"],["NCBITaxon%3A1004787","Alteromonas macleodii str. 'Balearic Sea AD45'"],["NCBITaxon%3A1004785","Alteromonas macleodii str. 'Black Sea 11'"],["NCBITaxon%3A1004788","Alteromonas macleodii str. 'English Channel 673'"],["NCBITaxon%3A160763","Alteromonas macleodii subsp. abyssi"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":3,"nb":7,"a":[["Pfam%3APF04205","FMN-binding domain"],["Pfam%3APF10795","Protein of unknown function (DUF2607)"],["TED%3AAF-A0A1W6U0N2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W6U0N2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A663","Vibrio alginolyticus"],["NCBITaxon%3A314288","Vibrio alginolyticus 12G01"],["NCBITaxon%3A674977","Vibrio alginolyticus 40B"],["NCBITaxon%3A664","Vibrio alginolyticus chemovar iophagus"],["NCBITaxon%3A1219076","Vibrio alginolyticus NBRC 15630 = ATCC 17749"],["NCBITaxon%3A669","Vibrio harveyi"]]},{"id":"NCBITaxon:1971","l":"Streptomyces noursei","na":3,"nb":6,"a":[["Pfam%3APF16715","Cyclodipeptide synthase"],["Pfam%3APF19585","Family of unknown function (DUF6092)"],["TED%3AAF-A0A2N8PAT0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N8PAT0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1971","Streptomyces noursei"],["NCBITaxon%3A316284","Streptomyces noursei ATCC 11455"],["NCBITaxon%3A1316445","Streptomyces noursei CCRC 11814"],["NCBITaxon%3A1395573","Streptomyces noursei KC-01"],["NCBITaxon%3A1395572","Streptomyces noursei PD-1"],["NCBITaxon%3A1434306","Streptomyces noursei ZPM"]]},{"id":"NCBITaxon:290402","l":"Clostridium beijerinckii (strain ATCC 51743 / NCIMB 8052)","na":6,"nb":3,"a":[["Pfam%3APF28550","Domain of unknown function (DUF8436)"],["Pfam%3APF21688","FAD-dependent protein, C-terminal domain-like"],["Pfam%3APF02001","Protein of unknown function DUF134"],["Pfam%3APF03608","PTS system enzyme II sorbitol-specific factor"],["Pfam%3APF07663","Sorbitol phosphotransferase enzyme II C-terminus"],["Pfam%3APF03612","Sorbitol phosphotransferase enzyme II N-terminus"]],"b":[["NCBITaxon%3A1488","Clostridium acetobutylicum"],["NCBITaxon%3A272562","Clostridium acetobutylicum ATCC 824"],["NCBITaxon%3A290402","Clostridium beijerinckii NCIMB 8052"]]},{"id":"NCBITaxon:316401","l":"Escherichia coli O78:H11 (strain H10407 / ETEC)","na":6,"nb":3,"a":[["Pfam%3APF26759","AcfD helical domain"],["Pfam%3APF04449","CS1 type fimbrial major subunit"],["Pfam%3APF13322","Domain of unknown function (DUF4092)"],["PROSITE%3APS01141","Bacterial type II secretion system protein C signature"],["Pfam%3APF16168","Adhesin of bacterial autotransporter system, probable stalk"],["Pfam%3APF24078","PIC/HAP1/IgA0 second beta-solenoid repeat region"]],"b":[["NCBITaxon%3A316401","Escherichia coli ETEC H10407"],["NCBITaxon%3A1213735","Escherichia coli H10407_1968"],["NCBITaxon%3A1213736","Escherichia coli H10407_1970"]]},{"id":"NCBITaxon:33039","l":"Mediterraneibacter torques","na":3,"nb":6,"a":[["TED%3AAF-A0A174ZX33-F1-model_v4_TED01","TED novel fold AF-A0A174ZX33-F1-model_v4_TED01"],["TED%3AAF-A0A6N3EHF6-F1-model_v4_TED02","TED novel fold AF-A0A6N3EHF6-F1-model_v4_TED02"],["TED%3AAF-A0A6N3EHH7-F1-model_v4_TED01","TED novel fold AF-A0A6N3EHH7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A33039","Mediterraneibacter torques"],["NCBITaxon%3A411460","[Ruminococcus] torques ATCC 27756"],["NCBITaxon%3A1263108","[Ruminococcus] torques CAG:61"],["NCBITaxon%3A1422833","[Ruminococcus] torques IX-70"],["NCBITaxon%3A657313","[Ruminococcus] torques L2-14"],["NCBITaxon%3A1422834","[Ruminococcus] torques VIII-239"]]},{"id":"NCBITaxon:44250","l":"Paenibacillus alvei","na":3,"nb":6,"a":[["PROSITE%3APS00481","Thiol-activated cytolysins signature"],["TED%3AAF-A0A383R9F4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A383R9F4-F1-model_v4_TED01"],["TED%3AAF-A0A7Y4MLP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4MLP7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A44250","Paenibacillus alvei"],["NCBITaxon%3A1117109","Paenibacillus alvei A6-6i-x"],["NCBITaxon%3A1206781","Paenibacillus alvei DSM 29"],["NCBITaxon%3A707255","Paenibacillus alvei NAS6G-6"],["NCBITaxon%3A1117108","Paenibacillus alvei TS-15"],["NCBITaxon%3A49283","Paenibacillus thiaminolyticus"]]},{"id":"NCBITaxon:5664","l":"Leishmania major","na":6,"nb":3,"a":[["Pfam%3APF12724","Flavodoxin domain"],["Pfam%3APF05683","Fumarase C-terminus"],["Pfam%3APF05681","Fumarate hydratase (Fumerase)"],["PROSITE%3APS01247","Inosine-uridine preferring nucleoside hydrolase family signature"],["TED%3AAF-Q4Q3E3-F1-model_v4_TED01","TED novel fold AF-Q4Q3E3-F1-model_v4_TED01"],["TED%3AAF-Q4Q6G3-F1-model_v4_TED01","TED novel fold AF-Q4Q6G3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A347515","Leishmania major strain Friedlin"],["NCBITaxon%3A860569","Leishmania major strain LV39c5"],["NCBITaxon%3A860570","Leishmania major strain SD 75.1"]]},{"id":"NCBITaxon:106648","l":"Acinetobacter bereziniae","na":3,"nb":5,"a":[["TED%3AAF-A0A833PGQ7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A833PGQ7-F1-model_v4_TED03"],["TED%3AAF-A0A3S0AB11-F1-model_v4_TED01","TED novel fold AF-A0A3S0AB11-F1-model_v4_TED01"],["TED%3AAF-A0A833UDR7-F1-model_v4_TED01","TED novel fold AF-A0A833UDR7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A106648","Acinetobacter bereziniae"],["NCBITaxon%3A981324","Acinetobacter bereziniae LMG 1003 = CIP 70.12"],["NCBITaxon%3A1217651","Acinetobacter bereziniae NIPH 3"],["NCBITaxon%3A1311817","Acinetobacter genomosp. 10 str. ATCC 51550"],["NCBITaxon%3A106649","Acinetobacter guillouiae"]]},{"id":"NCBITaxon:1589","l":"Lactiplantibacillus pentosus","na":3,"nb":5,"a":[["PROSITE%3APS60002","Phosphoketolase signature 1"],["PROSITE%3APS60003","Phosphoketolase signature 2"],["TED%3AAF-A0A2K9I3V8-F1-model_v4_TED01","TED novel fold AF-A0A2K9I3V8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1589","Lactiplantibacillus pentosus"],["NCBITaxon%3A1423791","Lactiplantibacillus pentosus DSM 20314"],["NCBITaxon%3A1042160","Lactiplantibacillus pentosus IG1"],["NCBITaxon%3A1136177","Lactiplantibacillus pentosus KCA1"],["NCBITaxon%3A1028490","Lactiplantibacillus pentosus MP-10"]]},{"id":"NCBITaxon:1665","l":"Arthrobacter globiformis","na":3,"nb":5,"a":[["Pfam%3APF21994","AGAO-like N2 domain"],["Pfam%3APF18835","Beta helix repeat of Inulin fructotransferase"],["TED%3AAF-A0A328HCX7-F1-model_v4_TED02","TED novel fold AF-A0A328HCX7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1665","Arthrobacter globiformis"],["NCBITaxon%3A1077972","Arthrobacter globiformis NBRC 12137"],["NCBITaxon%3A1667","Arthrobacter sp."],["NCBITaxon%3A169875","Arthrobacter sp. JCM 1339"],["NCBITaxon%3A1701","Brevibacterium sp."]]},{"id":"NCBITaxon:183","l":"Leptonema illini","na":5,"nb":3,"a":[["TED%3AAF-A0A833GYM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A833GYM6-F1-model_v4_TED01"],["TED%3AAF-A0A833GZG7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A833GZG7-F1-model_v4_TED01"],["TED%3AAF-A0A833H0U1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A833H0U1-F1-model_v4_TED01"],["TED%3AAF-A0A833H0U1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A833H0U1-F1-model_v4_TED02"],["TED%3AAF-A0A833LYP2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A833LYP2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A183","Leptonema illini"],["NCBITaxon%3A929563","Leptonema illini DSM 21528"],["NCBITaxon%3A330706","Leptonema illini serovar Habaki"]]},{"id":"NCBITaxon:216597","l":"Salmonella typhimurium (strain SL1344)","na":5,"nb":3,"a":[["Pfam%3APF08943","CsiD"],["Pfam%3APF07095","Intracellular growth attenuator protein IgaA"],["Pfam%3APF04741","InvH outer membrane lipoprotein"],["Pfam%3APF09599","Salmonella-Shigella invasin protein C (IpaC_SipC)"],["Pfam%3APF27051","TamB, N-terminal domain"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A216597","Salmonella enterica subsp. enterica serovar Typhimurium str. SL1344"]]},{"id":"NCBITaxon:2902295","l":"Vibrio campbellii (strain ATCC BAA-1116)","na":5,"nb":3,"a":[["Pfam%3APF02300","Fumarate reductase subunit C"],["Pfam%3APF18416","N-acetylglucosamine binding protein domain 2"],["Pfam%3APF21868","GlcNAc-binding protein A, third domain"],["Pfam%3APF17327","Acyl homoserine lactone synthase"],["Pfam%3APF06339","Ectoine synthase"]],"b":[["NCBITaxon%3A680","Vibrio campbellii"],["NCBITaxon%3A2902295","Vibrio campbellii ATCC BAA-1116"],["NCBITaxon%3A1224742","Vibrio campbellii CAIM 519 = NBRC 15631 = ATCC 25920"]]},{"id":"NCBITaxon:310297","l":"Phocaeicola plebeius","na":5,"nb":3,"a":[["TED%3AAF-A0A3E4Z795-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3E4Z795-F1-model_v4_TED01"],["TED%3AAF-A0A3E4Z7C6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3E4Z7C6-F1-model_v4_TED02"],["TED%3AAF-A0A3E4Z740-F1-model_v4_TED02","TED novel fold AF-A0A3E4Z740-F1-model_v4_TED02"],["TED%3AAF-A0A3E4Z9K1-F1-model_v4_TED01","TED novel fold AF-A0A3E4Z9K1-F1-model_v4_TED01"],["TED%3AAF-A0A415T3X6-F1-model_v4_TED01","TED novel fold AF-A0A415T3X6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A310297","Phocaeicola plebeius"],["NCBITaxon%3A1263052","Phocaeicola plebeius CAG:211"],["NCBITaxon%3A484018","Phocaeicola plebeius DSM 17135"]]},{"id":"NCBITaxon:33965","l":"Leuconostoc mesenteroides subsp. cremoris","na":3,"nb":5,"a":[["Pfam%3APF08218","Citrate lyase ligase C-terminal domain"],["Pfam%3APF04223","Citrate lyase, alpha subunit (CitF)"],["Pfam%3APF03802","Apo-citrate lyase phosphoribosyl-dephospho-CoA transferase"]],"b":[["NCBITaxon%3A1245","Leuconostoc mesenteroides"],["NCBITaxon%3A33965","Leuconostoc mesenteroides subsp. cremoris"],["NCBITaxon%3A586220","Leuconostoc mesenteroides subsp. cremoris ATCC 19254"],["NCBITaxon%3A1339224","Leuconostoc mesenteroides subsp. cremoris T26"],["NCBITaxon%3A1234889","Leuconostoc mesenteroides subsp. cremoris TIFN8"]]},{"id":"NCBITaxon:39491","l":"Agathobacter rectalis","na":3,"nb":5,"a":[["TED%3AAF-A0A395UXQ4-F1-model_v4_TED01","TED novel fold AF-A0A395UXQ4-F1-model_v4_TED01"],["TED%3AAF-A0A3E4Y626-F1-model_v4_TED03","TED novel fold AF-A0A3E4Y626-F1-model_v4_TED03"],["TED%3AAF-A0A413Q2Y5-F1-model_v4_TED01","TED novel fold AF-A0A413Q2Y5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39491","Agathobacter rectalis"],["NCBITaxon%3A515619","Agathobacter rectalis ATCC 33656"],["NCBITaxon%3A1263079","Agathobacter rectalis CAG:36"],["NCBITaxon%3A657318","Agathobacter rectalis DSM 17629"],["NCBITaxon%3A657317","Agathobacter rectalis M104/1"]]},{"id":"NCBITaxon:477","l":"Moraxella lacunata","na":3,"nb":5,"a":[["Pfam%3APF01548","Transposase"],["TED%3AAF-A0A1B8Q7V0-F1-model_v4_TED03","TED novel fold AF-A0A1B8Q7V0-F1-model_v4_TED03"],["TED%3AAF-A0A378QLT3-F1-model_v4_TED02","TED novel fold AF-A0A378QLT3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A34059","Faucicola atlantae"],["NCBITaxon%3A477","Moraxella lacunata"],["NCBITaxon%3A1223506","Moraxella lacunata NBRC 102154"],["NCBITaxon%3A184756","Nocardia caishijiensis"],["NCBITaxon%3A1210070","Nocardia caishijiensis NBRC 108228"]]},{"id":"NCBITaxon:674529","l":"Bacteroides faecis","na":5,"nb":3,"a":[["TED%3AAF-A0A174UNF9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A174UNF9-F1-model_v4_TED01"],["TED%3AAF-A0A6N2V213-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A6N2V213-F1-model_v4_TED04"],["TED%3AAF-A0A642MMT0-F1-model_v4_TED02","TED novel fold AF-A0A642MMT0-F1-model_v4_TED02"],["TED%3AAF-A0A642MUV2-F1-model_v4_TED02","TED novel fold AF-A0A642MUV2-F1-model_v4_TED02"],["TED%3AAF-A0A6N2V5R3-F1-model_v4_TED01","TED novel fold AF-A0A6N2V5R3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A674529","Bacteroides faecis"],["NCBITaxon%3A1263044","Bacteroides faecis CAG:32"],["NCBITaxon%3A1077285","Bacteroides faecis MAJ27"]]},{"id":"NCBITaxon:716541","l":"Enterobacter cloacae subsp. cloacae (strain ATCC 13047 / DSM 30054 / NBRC 13535 / NCTC 10005 / WDCM 00083 / NCDC 279-56)","na":5,"nb":3,"a":[["Pfam%3APF18228","CdiI N-terminal domain"],["PROSITE%3APS00896","LacY family proton/sugar symporters signature 1"],["PROSITE%3APS00897","LacY family proton/sugar symporters signature 2"],["Pfam%3APF13332","Hemagglutinin repeat"],["Pfam%3APF05860","TPS secretion domain"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A336306","Enterobacter cloacae subsp. cloacae"],["NCBITaxon%3A716541","Enterobacter cloacae subsp. cloacae ATCC 13047"]]},{"id":"NCBITaxon:1085","l":"Rhodospirillum rubrum","na":4,"nb":3,"a":[["Pfam%3APF00556","Antenna complex alpha/beta subunit"],["Pfam%3APF09527","Putative F0F1-ATPase subunit Ca2+/Mg2+ transporter"],["Pfam%3APF07357","Dinitrogenase reductase ADP-ribosyltransferase (DRAT)"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"]],"b":[["NCBITaxon%3A1085","Rhodospirillum rubrum"],["NCBITaxon%3A269796","Rhodospirillum rubrum ATCC 11170"],["NCBITaxon%3A1036743","Rhodospirillum rubrum F11"]]},{"id":"NCBITaxon:1355477","l":"Bradyrhizobium diazoefficiens","na":3,"nb":4,"a":[["TED%3AAF-A0A0E4FY11-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0E4FY11-F1-model_v4_TED02"],["TED%3AAF-A0A7T8A127-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7T8A127-F1-model_v4_TED04"],["TED%3AAF-A0A7T7V5A8-F1-model_v4_TED04","TED novel fold AF-A0A7T7V5A8-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1355477","Bradyrhizobium diazoefficiens"],["NCBITaxon%3A754504","Bradyrhizobium diazoefficiens SEMIA 5080"],["NCBITaxon%3A224911","Bradyrhizobium diazoefficiens USDA 110"],["NCBITaxon%3A375","Bradyrhizobium japonicum"]]},{"id":"NCBITaxon:1433","l":"","na":4,"nb":3,"a":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF17997","Insecticidal delta-endotoxin CryIA(c) domain 5"],["Pfam%3APF21463","Cry1Ac, domain VII"],["Pfam%3APF18449","Pesticidal crystal protein Cry1Aa, domain IV"]],"b":[["NCBITaxon%3A1433","Bacillus thuringiensis serovar aizawai"],["NCBITaxon%3A1238885","Bacillus thuringiensis serovar aizawai str. Hu4-2"],["NCBITaxon%3A1232203","Bacillus thuringiensis serovar aizawai str. Leapi01"]]},{"id":"NCBITaxon:162","l":"Treponema phagedenis","na":3,"nb":4,"a":[["PROSITE%3APS01307","Flagellar motor protein motA family signature"],["TED%3AAF-A0A0B7GT70-F1-model_v4_TED01","TED novel fold AF-A0A0B7GT70-F1-model_v4_TED01"],["TED%3AAF-A0A0B7GWA6-F1-model_v4_TED04","TED novel fold AF-A0A0B7GWA6-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A162","Treponema phagedenis"],["NCBITaxon%3A1306407","Treponema phagedenis 4A"],["NCBITaxon%3A754027","Treponema phagedenis F0421"],["NCBITaxon%3A409321","Treponema phagedenis subsp. vaccae"]]},{"id":"NCBITaxon:17","l":"Methylophilus methylotrophus","na":3,"nb":4,"a":[["Pfam%3APF09086","Domain of unknown function (DUF1924)"],["Pfam%3APF03069","Acetamidase/Formamidase family"],["PROSITE%3APS00696","Electron transfer flavoprotein alpha-subunit signature"]],"b":[["NCBITaxon%3A406","Methylobacillus glycogenes"],["NCBITaxon%3A17","Methylophilus methylotrophus"],["NCBITaxon%3A1122236","Methylophilus methylotrophus DSM 46235 = ATCC 53528"],["NCBITaxon%3A2327","Methylophilus methylotrophus W3A1"]]},{"id":"NCBITaxon:174633","l":"","na":3,"nb":4,"a":[["Pfam%3APF22142","Hydroxylamine oxidoreductase, C-terminal domain"],["Pfam%3APF18582","Hydrazine synthase alpha subunit middle domain"],["Pfam%3APF21783","YNCE-like beta-propeller"]],"b":[["NCBITaxon%3A174633","Candidatus Kuenenia stuttgartensis"],["NCBITaxon%3A1230344","Candidatus Kuenenia stuttgartiensis enrichment culture clone CH1"],["NCBITaxon%3A1230345","Candidatus Kuenenia stuttgartiensis enrichment culture clone RU1"],["NCBITaxon%3A1230346","environmental samples"]]},{"id":"NCBITaxon:1836","l":"Saccharopolyspora erythraea","na":4,"nb":3,"a":[["Pfam%3APF08990","Erythronolide synthase docking domain"],["Pfam%3APF09277","Erythronolide synthase, docking"],["Pfam%3APF12728","Helix-turn-helix domain"],["Pfam%3APF12307","Protein of unknown function (DUF3631)"]],"b":[["NCBITaxon%3A1836","Saccharopolyspora erythraea"],["NCBITaxon%3A1382595","Saccharopolyspora erythraea D"],["NCBITaxon%3A405948","Saccharopolyspora erythraea NRRL 2338"]]},{"id":"NCBITaxon:192","l":"Azospirillum brasilense","na":3,"nb":4,"a":[["Pfam%3APF24931","ACR9-like, ACT-like domain"],["Pfam%3APF27444","Uridylyltransferase GlnD third domain"],["TED%3AAF-A0A235H319-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A235H319-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1064539","Azospirillum baldaniorum"],["NCBITaxon%3A192","Azospirillum brasilense"],["NCBITaxon%3A1117321","Azospirillum brasilense CBG497"],["NCBITaxon%3A1262469","Azospirillum brasilense FP2"]]},{"id":"NCBITaxon:1961","l":"Streptomyces virginiae","na":3,"nb":4,"a":[["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF19328","2,4-diaminopentanoate dehydrogenase C-terminal domain"],["PROSITE%3APS01014","Transcription termination factor nusG signature"]],"b":[["NCBITaxon%3A1535204","Metabacillus endolithicus"],["NCBITaxon%3A67381","Streptomyces violascens"],["NCBITaxon%3A1961","Streptomyces virginiae"],["NCBITaxon%3A3478784","Streptomyces virginiae subsp. lipoxae (nom. nud.)"]]},{"id":"NCBITaxon:227","l":"Pseudoalteromonas carrageenovora","na":3,"nb":4,"a":[["Pfam%3APF25291","Lambda-carrageenase C-terminal domain"],["Pfam%3APF25290","Lambda-carrageenase middle domain"],["Pfam%3APF25292","Lambda-carrageenase beta-propeller domain"]],"b":[["NCBITaxon%3A1511","Acetoanaerobium sticklandii"],["NCBITaxon%3A499177","Acetoanaerobium sticklandii DSM 519"],["NCBITaxon%3A227","Pseudoalteromonas carrageenovora"],["NCBITaxon%3A1314868","Pseudoalteromonas carrageenovora IAM 12662"]]},{"id":"NCBITaxon:253","l":"Chryseobacterium indologenes","na":3,"nb":4,"a":[["PROSITE%3APS00744","Beta-lactamases class B signature 2"],["TED%3AAF-A0A7T8U7T3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T8U7T3-F1-model_v4_TED01"],["TED%3AAF-A0A0N0ZUI2-F1-model_v4_TED01","TED novel fold AF-A0A0N0ZUI2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A246","Chryseobacterium balustinum"],["NCBITaxon%3A253","Chryseobacterium indologenes"],["NCBITaxon%3A1218103","Chryseobacterium indologenes NBRC 14944"],["NCBITaxon%3A239","Flavobacterium sp."]]},{"id":"NCBITaxon:28111","l":"Bacteroides eggerthii","na":3,"nb":4,"a":[["TED%3AAF-A0A380YHG6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A380YHG6-F1-model_v4_TED01"],["TED%3AAF-A0A380YP67-F1-model_v4_TED01","TED novel fold AF-A0A380YP67-F1-model_v4_TED01"],["TED%3AAF-A0A414M8K0-F1-model_v4_TED04","TED novel fold AF-A0A414M8K0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A28111","Bacteroides eggerthii"],["NCBITaxon%3A665953","Bacteroides eggerthii 1_2_48FAA"],["NCBITaxon%3A1263043","Bacteroides eggerthii CAG:109"],["NCBITaxon%3A483216","Bacteroides eggerthii DSM 20697"]]},{"id":"NCBITaxon:28896","l":"Thermoanaerobacterium saccharolyticum","na":3,"nb":4,"a":[["Pfam%3APF06452","Carbohydrate family 9 binding domain-like"],["PROSITE%3APS01027","Glycosyl hydrolases family 39 active site"],["Pfam%3APF00395","S-layer homology domain"]],"b":[["NCBITaxon%3A28896","Thermoanaerobacterium saccharolyticum"],["NCBITaxon%3A1313300","Thermoanaerobacterium saccharolyticum B6A"],["NCBITaxon%3A1123370","Thermoanaerobacterium saccharolyticum DSM 7060"],["NCBITaxon%3A1094508","Thermoanaerobacterium saccharolyticum JW/SL-YS485"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans Pd1222","na":4,"nb":3,"a":[["Pfam%3APF27518","Heme exporter protein C"],["Pfam%3APF22039","Imidazolonepropionase-like composite domain, bacteria"],["PROSITE%3APS01181","Ribosomal protein S21 signature"],["Pfam%3APF02239","Cytochrome D1 heme domain"]],"b":[["NCBITaxon%3A266","Paracoccus denitrificans"],["NCBITaxon%3A1302247","Paracoccus denitrificans JCM 21484"],["NCBITaxon%3A318586","Paracoccus denitrificans PD1222"]]},{"id":"NCBITaxon:37636","l":"Thermus scotoductus","na":3,"nb":4,"a":[["TED%3AAF-A0A430RNB2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A430RNB2-F1-model_v4_TED02"],["TED%3AAF-A0A430UKG8-F1-model_v4_TED01","TED novel fold AF-A0A430UKG8-F1-model_v4_TED01"],["TED%3AAF-A0A430VPL1-F1-model_v4_TED01","TED novel fold AF-A0A430VPL1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A37636","Thermus scotoductus"],["NCBITaxon%3A1123391","Thermus scotoductus DSM 8553"],["NCBITaxon%3A1382313","Thermus scotoductus KI2"],["NCBITaxon%3A743525","Thermus scotoductus SA-01"]]},{"id":"NCBITaxon:45634","l":"Streptococcus cristatus","na":3,"nb":4,"a":[["Pfam%3APF03486","HI0933-like protein Rossmann domain"],["Pfam%3APF22780","HI0933-like protein barrel and H2TH domain"],["TED%3AAF-A0A139N090-F1-model_v4_TED01","TED novel fold AF-A0A139N090-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A45634","Streptococcus cristatus"],["NCBITaxon%3A1302863","Streptococcus cristatus AS 1.3089"],["NCBITaxon%3A889201","Streptococcus cristatus ATCC 51100"],["NCBITaxon%3A1305","Streptococcus sanguinis"]]},{"id":"NCBITaxon:46506","l":"Bacteroides stercoris","na":3,"nb":4,"a":[["Pfam%3APF16889","Heparinase II/III N-terminus"],["TED%3AAF-A0A3E4UKZ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3E4UKZ4-F1-model_v4_TED01"],["TED%3AAF-A0A413B3W6-F1-model_v4_TED03","TED novel fold AF-A0A413B3W6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A46506","Bacteroides stercoris"],["NCBITaxon%3A449673","Bacteroides stercoris ATCC 43183"],["NCBITaxon%3A1263053","Bacteroides stercoris CAG:120"],["NCBITaxon%3A1073351","Bacteroides stercoris CC31F"]]},{"id":"NCBITaxon:51201","l":"Streptomyces griseocarneus","na":3,"nb":4,"a":[["TED%3AAF-A0A3L8IG13-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3L8IG13-F1-model_v4_TED01"],["TED%3AAF-A0A3L8KW22-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3L8KW22-F1-model_v4_TED02"],["TED%3AAF-A0A8A3HJQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8A3HJQ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A173770","Streptomyces alboverticillatus"],["NCBITaxon%3A51201","Streptomyces griseocarneus"],["NCBITaxon%3A156648","Streptomyces septatus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:83552","l":"Parachlamydia acanthamoebae","na":4,"nb":3,"a":[["TED%3AAF-A0A0C1C0X3-F1-model_v4_TED01","TED novel fold AF-A0A0C1C0X3-F1-model_v4_TED01"],["TED%3AAF-A0A0C1C9D0-F1-model_v4_TED03","TED novel fold AF-A0A0C1C9D0-F1-model_v4_TED03"],["TED%3AAF-A0A0C1CAV8-F1-model_v4_TED03","TED novel fold AF-A0A0C1CAV8-F1-model_v4_TED03"],["TED%3AAF-A0A0C1ECC2-F1-model_v4_TED03","TED novel fold AF-A0A0C1ECC2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A83552","Parachlamydia acanthamoebae"],["NCBITaxon%3A159254","Parachlamydia acanthamoebae str. Hall's coccus"],["NCBITaxon%3A765952","Parachlamydia acanthamoebae UV-7"]]},{"id":"NCBITaxon:135487","l":"Nocardia cyriacigeorgica","na":3,"nb":3,"a":[["TED%3AAF-A0A5R8NG95-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5R8NG95-F1-model_v4_TED01"],["TED%3AAF-A0A5R8PHP8-F1-model_v4_TED01","TED novel fold AF-A0A5R8PHP8-F1-model_v4_TED01"],["TED%3AAF-A0A6P1CWQ9-F1-model_v4_TED01","TED novel fold AF-A0A6P1CWQ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A135487","Nocardia cyriacigeorgica"],["NCBITaxon%3A1127134","Nocardia cyriacigeorgica GUH-2"],["NCBITaxon%3A1206728","Nocardia cyriacigeorgica NBRC 100375"]]},{"id":"NCBITaxon:190304","l":"","na":3,"nb":3,"a":[["Pfam%3APF05853","beta-keto acid cleavage enzyme"],["Pfam%3APF26317","Histidine racemase CntK N-terminal domain"],["Pfam%3APF26370","L-erythro-3,5-diaminohexanoate dehydrogenase N-terminal domain"]],"b":[["NCBITaxon%3A851","Fusobacterium nucleatum"],["NCBITaxon%3A76856","Fusobacterium nucleatum subsp. nucleatum"],["NCBITaxon%3A190304","Fusobacterium nucleatum subsp. nucleatum ATCC 25586"]]},{"id":"NCBITaxon:2188","l":"Methanococcus voltae","na":3,"nb":3,"a":[["Pfam%3APF05377","Flagella accessory protein C (FlaC)"],["Pfam%3APF04659","Archaeal flagella protein"],["Pfam%3APF01917","Archaeal-type flagellin"]],"b":[["NCBITaxon%3A2188","Methanococcus voltae"],["NCBITaxon%3A456320","Methanococcus voltae A3"],["NCBITaxon%3A523842","Methanococcus voltae PS"]]},{"id":"NCBITaxon:301452","l":"Streptococcus pyogenes serotype M49","na":3,"nb":3,"a":[["Pfam%3APF20746","Endo-beta-N-acetylglucosaminidase F2, Ig-like domain"],["Pfam%3APF23952","Endo-beta-N-acetylglucosaminidase EndoS LRR domain"],["Pfam%3APF02370","M protein repeat"]],"b":[["NCBITaxon%3A294934","Streptococcus pyogenes M49 591"],["NCBITaxon%3A471876","Streptococcus pyogenes NZ131"],["NCBITaxon%3A301452","Streptococcus pyogenes serotype M49"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":3,"nb":3,"a":[["Pfam%3APF14864","Alkyl sulfatase C-terminal"],["Pfam%3APF13816","Haem-containing dehydratase"],["Pfam%3APF14863","Alkyl sulfatase dimerisation"]],"b":[["NCBITaxon%3A2219225","Pseudomonas asiatica"],["NCBITaxon%3A1628086","Pseudomonas kribbensis"],["NCBITaxon%3A306","Pseudomonas sp."]]},{"id":"NCBITaxon:349221","l":"Micavibrio aeruginosavorus","na":3,"nb":3,"a":[["TED%3AAF-A0A2W5N6B0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W5N6B0-F1-model_v4_TED01"],["TED%3AAF-A0A2W5FID9-F1-model_v4_TED01","TED novel fold AF-A0A2W5FID9-F1-model_v4_TED01"],["TED%3AAF-A0A7T5R250-F1-model_v4_TED01","TED novel fold AF-A0A7T5R250-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A349221","Micavibrio aeruginosavorus"],["NCBITaxon%3A856793","Micavibrio aeruginosavorus ARL-13"],["NCBITaxon%3A349215","Micavibrio aeruginosavorus EPB"]]},{"id":"NCBITaxon:358742","l":"Enterocloster aldenensis","na":3,"nb":3,"a":[["TED%3AAF-A0A413W8D2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A413W8D2-F1-model_v4_TED02"],["TED%3AAF-A0A413W7F7-F1-model_v4_TED01","TED novel fold AF-A0A413W7F7-F1-model_v4_TED01"],["TED%3AAF-A0A413WID6-F1-model_v4_TED03","TED novel fold AF-A0A413WID6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1121294","[Clostridium] aldenense DSM 19262"],["NCBITaxon%3A742731","[Clostridium] aldenense WAL-18727"],["NCBITaxon%3A358742","Enterocloster aldenensis"]]},{"id":"NCBITaxon:39485","l":"Lachnospira eligens","na":3,"nb":3,"a":[["TED%3AAF-A0A413Z2M9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A413Z2M9-F1-model_v4_TED01"],["TED%3AAF-A0A414DG84-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A414DG84-F1-model_v4_TED02"],["TED%3AAF-A0A415MEX8-F1-model_v4_TED01","TED novel fold AF-A0A415MEX8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39485","Lachnospira eligens"],["NCBITaxon%3A515620","Lachnospira eligens ATCC 27750"],["NCBITaxon%3A1263077","Lachnospira eligens CAG:72"]]},{"id":"NCBITaxon:431944","l":"Magnetospirillum gryphiswaldense MSR-1","na":3,"nb":3,"a":[["Pfam%3APF12728","Helix-turn-helix domain"],["Pfam%3APF04011","LemA family"],["Pfam%3APF07219","HemY protein N-terminus"]],"b":[["NCBITaxon%3A55518","Magnetospirillum gryphiswaldense"],["NCBITaxon%3A431944","Magnetospirillum gryphiswaldense MSR-1"],["NCBITaxon%3A1430440","Magnetospirillum gryphiswaldense MSR-1 v2"]]},{"id":"NCBITaxon:53462","l":"Mycolicibacterium mageritense","na":3,"nb":3,"a":[["TED%3AAF-A0A5C7XVY5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7XVY5-F1-model_v4_TED01"],["TED%3AAF-A0A5C7XY26-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7XY26-F1-model_v4_TED01"],["TED%3AAF-A0A5C7XYF8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7XYF8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A53462","Mycolicibacterium mageritense"],["NCBITaxon%3A1209984","Mycolicibacterium mageritense DSM 44476 = CIP 104973"],["NCBITaxon%3A1087053","Mycolicibacterium mageritense JR2009"]]},{"id":"NCBITaxon:54571","l":"Streptomyces venezuelae","na":3,"nb":3,"a":[["Pfam%3APF08990","Erythronolide synthase docking domain"],["TED%3AAF-A0A5P2CQV7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5P2CQV7-F1-model_v4_TED02"],["TED%3AAF-A0A5P2C5X4-F1-model_v4_TED01","TED novel fold AF-A0A5P2C5X4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A54571","Streptomyces venezuelae"],["NCBITaxon%3A953739","Streptomyces venezuelae ATCC 10712"]]},{"id":"NCBITaxon:588","l":"Providencia stuartii","na":3,"nb":3,"a":[["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["PROSITE%3APS01157","Class A bacterial acid phosphatases signature"]],"b":[["NCBITaxon%3A588","Providencia stuartii"],["NCBITaxon%3A471874","Providencia stuartii ATCC 25827"],["NCBITaxon%3A1157951","Providencia stuartii MRSN 2154"]]},{"id":"NCBITaxon:73230","l":"Emmonsia crescens","na":3,"nb":3,"a":[["TED%3AAF-A0A2B7ZD89-F1-model_v4_TED01","TED novel fold AF-A0A2B7ZD89-F1-model_v4_TED01"],["TED%3AAF-A0A2B7ZII7-F1-model_v4_TED01","TED novel fold AF-A0A2B7ZII7-F1-model_v4_TED01"],["TED%3AAF-A0A2B7ZNT7-F1-model_v4_TED02","TED novel fold AF-A0A2B7ZNT7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A68989","Acinetobacter sp. ATCC 17979"],["NCBITaxon%3A40373","Acinetobacter sp. CIP-A165"],["NCBITaxon%3A73230","[Emmonsia] crescens"]]},{"id":"NCBITaxon:76857","l":"","na":3,"nb":3,"a":[["TED%3AAF-A0A2C6BKL5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2C6BKL5-F1-model_v4_TED01"],["TED%3AAF-A0A0S2ZS50-F1-model_v4_TED01","TED novel fold AF-A0A0S2ZS50-F1-model_v4_TED01"],["TED%3AAF-A0A2B7YED0-F1-model_v4_TED02","TED novel fold AF-A0A2B7YED0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A76857","Fusobacterium polymorphum"],["NCBITaxon%3A393480","Fusobacterium polymorphum ATCC 10953"],["NCBITaxon%3A693991","Fusobacterium polymorphum F0401"]]},{"id":"NCBITaxon:79880","l":"Shouchella clausii","na":3,"nb":3,"a":[["Pfam%3APF13536","Putative multidrug resistance efflux transporter"],["Pfam%3APF10776","Protein of unknown function (DUF2600)"],["TED%3AAF-A0A268NXB1-F1-model_v4_TED01","TED novel fold AF-A0A268NXB1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A79880","Shouchella clausii"],["NCBITaxon%3A66692","Shouchella clausii KSM-K16"],["NCBITaxon%3A83428","uncultured Bacillus sp."]]},{"id":"NCBITaxon:996","l":"Flavobacterium columnare","na":3,"nb":3,"a":[["TED%3AAF-A0A4Z0FEB3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Z0FEB3-F1-model_v4_TED02"],["TED%3AAF-A0A2N9P872-F1-model_v4_TED02","TED novel fold AF-A0A2N9P872-F1-model_v4_TED02"],["TED%3AAF-A0A2T4HIF9-F1-model_v4_TED03","TED novel fold AF-A0A2T4HIF9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A996","Flavobacterium columnare"],["NCBITaxon%3A1041826","Flavobacterium columnare ATCC 49512"],["NCBITaxon%3A1218111","Flavobacterium columnare NBRC 100251 = ATCC 23463"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii (strain ATCC 43067 / DSM 2661 / JAL-1 / JCM 10045 / NBRC 100440)","na":5181,"nb":2,"a":[["EC%3A1.12.99.-","With other acceptors"],["EC%3A1.3.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.3.-.-","Acting on the CH-CH group of donors"],["EC%3A1.8.98.-","With other, known, acceptors"],["EC%3A1.97.1.-","Other oxidoreductases"],["EC%3A2.1.2.-","Hydroxymethyl-, formyl- and related transferases"]],"b":[["NCBITaxon%3A2190","Methanocaldococcus jannaschii"],["NCBITaxon%3A243232","Methanocaldococcus jannaschii DSM 2661"]]},{"id":"NCBITaxon:59201","l":"Salmonella enterica subsp. enterica","na":2,"nb":4549,"a":[["TED%3AAF-A0A711ED47-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A711ED47-F1-model_v4_TED01"],["TED%3AAF-A0A5U3EZQ4-F1-model_v4_TED01","TED novel fold AF-A0A5U3EZQ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A486987","Salmonella enterica subsp. enterica serovar '02-6026 18:1 v-z-Arizona'"],["NCBITaxon%3A2978376","Salmonella enterica subsp. enterica serovar 11:b:1,7"],["NCBITaxon%3A2808980","Salmonella enterica subsp. enterica serovar 11:r:-"],["NCBITaxon%3A3367019","Salmonella enterica subsp. enterica serovar 13,22:y:-"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":2,"nb":264,"a":[["TED%3AAF-B5UAE0-F1-model_v4_TED01","TED highly-symmetric fold AF-B5UAE0-F1-model_v4_TED01"],["TED%3AAF-A0A3E1IF45-F1-model_v4_TED01","TED novel fold AF-A0A3E1IF45-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A663","Vibrio alginolyticus"],["NCBITaxon%3A29494","Vibrio furnissii"],["NCBITaxon%3A675811","Vibrio furnissii CIP 102972"],["NCBITaxon%3A670","Vibrio parahaemolyticus"],["NCBITaxon%3A1238231","Vibrio parahaemolyticus 10290"],["NCBITaxon%3A1238195","Vibrio parahaemolyticus 10296"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":2,"nb":178,"a":[["Pfam%3APF02052","Gallidermin"],["Pfam%3APF04604","Type-A lantibiotic"]],"b":[["NCBITaxon%3A150055","Streptococcus lutetiensis"],["NCBITaxon%3A1309","Streptococcus mutans"],["NCBITaxon%3A857155","Streptococcus mutans 11A1"],["NCBITaxon%3A857147","Streptococcus mutans 11SSST2"],["NCBITaxon%3A857143","Streptococcus mutans 11VS1"],["NCBITaxon%3A857113","Streptococcus mutans 14D"]]},{"id":"NCBITaxon:224325","l":"Archaeoglobus fulgidus (strain ATCC 49558 / DSM 4304 / JCM 9628 / NBRC 100126 / VC-16)","na":102,"nb":2,"a":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF19436","ACS/CODH beta subunit C-terminal"],["Pfam%3APF27352","AF_0059 family"],["Pfam%3APF27313","AF_0136 family C-terminal domain"],["Pfam%3APF27315","AF_0136 family N-terminal domain"],["Pfam%3APF27217","AF_0155 Rossmann-like domain"]],"b":[["NCBITaxon%3A2234","Archaeoglobus fulgidus"],["NCBITaxon%3A224325","Archaeoglobus fulgidus DSM 4304"]]},{"id":"NCBITaxon:199310","l":"Escherichia coli O6:H1 (strain CFT073 / ATCC 700928 / UPEC)","na":89,"nb":2,"a":[["Pfam%3APF12343","DeaD helicase C-terminal disordered region"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF08298","PrkA AAA domain"],["Pfam%3APF17425","Arylsulfotransferase Ig-like domain"],["Pfam%3APF02611","CDP-diacylglycerol pyrophosphatase"],["Pfam%3APF10729","Cell division activator CedA"]],"b":[["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A199310","Escherichia coli CFT073"]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":2,"nb":88,"a":[["TED%3AAF-A0A6N3WS12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N3WS12-F1-model_v4_TED01"],["TED%3AAF-A0A3R7GIU2-F1-model_v4_TED02","TED novel fold AF-A0A3R7GIU2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A298","Pseudomonas marginalis"],["NCBITaxon%3A56448","Xanthomonas arboricola"],["NCBITaxon%3A339","Xanthomonas campestris"],["NCBITaxon%3A1281290","Xanthomonas campestris CFBP 5824"],["NCBITaxon%3A1281289","Xanthomonas campestris CFBP 5825"],["NCBITaxon%3A1182783","Xanthomonas campestris JX"]]},{"id":"NCBITaxon:1597","l":"Lacticaseibacillus paracasei","na":2,"nb":56,"a":[["Pfam%3APF09136","Glucodextranase, domain B"],["Pfam%3APF08109","Lactocin 705 family"]],"b":[["NCBITaxon%3A1582","Lacticaseibacillus casei"],["NCBITaxon%3A1597","Lacticaseibacillus paracasei"],["NCBITaxon%3A321967","Lacticaseibacillus paracasei ATCC 334"],["NCBITaxon%3A1226299","Lacticaseibacillus paracasei COM0101"],["NCBITaxon%3A1446494","Lacticaseibacillus paracasei N1115"],["NCBITaxon%3A1435038","Lacticaseibacillus paracasei NRIC 0644"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":2,"nb":56,"a":[["PROSITE%3APS00336","Beta-lactamase class-C active site"],["TED%3AAF-A0A155XQ59-F1-model_v4_TED02","TED novel fold AF-A0A155XQ59-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A61645","Enterobacter asburiae"],["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A1328422","Enterobacter cloacae BIDMC 33A"],["NCBITaxon%3A1439324","Enterobacter cloacae BIDMC 66"],["NCBITaxon%3A1439325","Enterobacter cloacae BIDMC 67"],["NCBITaxon%3A1329846","Enterobacter cloacae BIDMC 8"]]},{"id":"NCBITaxon:446","l":"Legionella pneumophila","na":2,"nb":47,"a":[["Pfam%3APF14860","DrrA phosphatidylinositol 4-phosphate binding domain"],["TED%3AAF-A0A822WCM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A822WCM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A446","Legionella pneumophila"],["NCBITaxon%3A866628","Legionella pneumophila 130b"],["NCBITaxon%3A423212","Legionella pneumophila 2300/99 Alcoy"],["NCBITaxon%3A1370127","Legionella pneumophila Leg01/16"],["NCBITaxon%3A66976","Legionella pneumophila serogroup 1"],["NCBITaxon%3A66985","Legionella pneumophila serogroup 10"]]},{"id":"NCBITaxon:85962","l":"Helicobacter pylori (strain ATCC 700392 / 26695)","na":45,"nb":2,"a":[["IDPO%3A0000002","disorder"],["IDPO%3A0000006","order"],["IDPO%3A0000014","order to disorder"],["Pfam%3APF15437","Plasminogen-binding protein pgbA C-terminal"],["Pfam%3APF02293","AmiS/UreI family transporter"],["Pfam%3APF00772","DnaB-like helicase N terminal domain"]],"b":[["NCBITaxon%3A210","Helicobacter pylori"],["NCBITaxon%3A85962","Helicobacter pylori 26695"]]},{"id":"NCBITaxon:243277","l":"Vibrio cholerae serotype O1 (strain ATCC 39315 / El Tor Inaba N16961)","na":44,"nb":2,"a":[["IDPO%3A0000011","disorder to order"],["IDPO%3A0000014","order to disorder"],["Pfam%3APF16671","Actin cross-linking domain"],["Pfam%3APF00842","Alanine racemase, C-terminal domain"],["Pfam%3APF06228","Haem utilisation ChuX/HutX"],["Pfam%3APF19425","Csd3 second domain"]],"b":[["NCBITaxon%3A666","Vibrio cholerae"],["NCBITaxon%3A243277","Vibrio cholerae O1 biovar El Tor str. N16961"]]},{"id":"NCBITaxon:186497","l":"Pyrococcus furiosus (strain ATCC 43587 / DSM 3638 / JCM 8422 / Vc1)","na":41,"nb":2,"a":[["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF01314","Aldehyde ferredoxin oxidoreductase, domains 2 & 3"],["Pfam%3APF02730","Aldehyde ferredoxin oxidoreductase, N-terminal domain"],["Pfam%3APF22476","Argonaute, N-terminal domain"],["Pfam%3APF09094","Alpha-amylase/4-alpha-glucanotransferase, middle domain"],["Pfam%3APF09095","Alpha-amylase/4-alpha-glucanotransferase, C-terminal"]],"b":[["NCBITaxon%3A2261","Pyrococcus furiosus"],["NCBITaxon%3A186497","Pyrococcus furiosus DSM 3638"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima (strain ATCC 43589 / DSM 3109 / JCM 10099 / NBRC 100826 / MSB8)","na":39,"nb":2,"a":[["Pfam%3APF02829","3H domain"],["Pfam%3APF13175","AAA ATPase domain"],["Pfam%3APF01958","Aspartate dehydrogenase, C-terminal"],["Pfam%3APF05448","Acetyl xylan esterase (AXE1)"],["Pfam%3APF04509","CheC-like family"],["Pfam%3APF13690","Chemotaxis phosphatase CheX"]],"b":[["NCBITaxon%3A2336","Thermotoga maritima"],["NCBITaxon%3A243274","Thermotoga maritima MSB8"]]},{"id":"NCBITaxon:187420","l":"Methanothermobacter thermautotrophicus (strain ATCC 29096 / DSM 1053 / JCM 10044 / NBRC 100330 / Delta H)","na":38,"nb":2,"a":[["Pfam%3APF23902","PRS2 AAA+ lid C-terminal domain"],["Pfam%3APF06819","Archaeal Peptidase A24 C-terminal Domain"],["Pfam%3APF01903","CbiX"],["Pfam%3APF17244","Cell division control protein 24, OB domain 3"],["Pfam%3APF22703","Cdc6 AAA+ ATPase-type lid domain"],["Pfam%3APF27272","Cyclic 2,3-diphosphoglycerate synthetase, N-terminal domain"]],"b":[["NCBITaxon%3A145262","Methanothermobacter thermautotrophicus"],["NCBITaxon%3A187420","Methanothermobacter thermautotrophicus str. Delta H"]]},{"id":"NCBITaxon:272634","l":"Mycoplasmoides pneumoniae (strain ATCC 29342 / M129 / Subtype 1)","na":38,"nb":2,"a":[["Pfam%3APF01812","5-formyltetrahydrofolate cyclo-ligase family"],["Pfam%3APF03257","Mycoplasma adhesin P1, C-terminal"],["Pfam%3APF22509","CARDS D2, beta trefoil domain"],["Pfam%3APF22346","ADP-ribosylating toxin CARDS, C-terminal beta-trefoil domain"],["Pfam%3APF21694","DNA polymerase III delta subunit, C-terminal domain"],["Pfam%3APF01519","Protein of unknown function DUF16"]],"b":[["NCBITaxon%3A2104","Mycoplasmoides pneumoniae"],["NCBITaxon%3A272634","Mycoplasmoides pneumoniae M129"]]},{"id":"NCBITaxon:273057","l":"Saccharolobus solfataricus (strain ATCC 35092 / DSM 1617 / JCM 11322 / P2)","na":37,"nb":2,"a":[["Pfam%3APF02294","7kD DNA-binding domain"],["Pfam%3APF02675","S-adenosylmethionine decarboxylase"],["Pfam%3APF09071","Alpha-amylase, C terminal"],["Pfam%3APF17952","Cas6 N-terminal domain"],["Pfam%3APF27338","Cytochrome b558/566 subunit B"],["Pfam%3APF22703","Cdc6 AAA+ ATPase-type lid domain"]],"b":[["NCBITaxon%3A2287","Saccharolobus solfataricus"],["NCBITaxon%3A273057","Saccharolobus solfataricus P2"]]},{"id":"NCBITaxon:410072","l":"Allocoprococcus comes","na":2,"nb":36,"a":[["TED%3AAF-A0A3R6EK28-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R6EK28-F1-model_v4_TED01"],["TED%3AAF-A0A173UHG4-F1-model_v4_TED01","TED novel fold AF-A0A173UHG4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A410072","Allocoprococcus comes"],["NCBITaxon%3A470146","Coprococcus comes ATCC 27758"],["NCBITaxon%3A1263070","Coprococcus comes CAG:19"],["NCBITaxon%3A717958","Coprococcus comes SL7/1"],["NCBITaxon%3A1339425","Coprococcus comes TS7.1-1.1"],["NCBITaxon%3A1339426","Coprococcus comes TS7.1-1.2"]]},{"id":"NCBITaxon:1303","l":"Streptococcus oralis","na":2,"nb":35,"a":[["Pfam%3APF03047","COMC family"],["TED%3AAF-A0A139PPG4-F1-model_v4_TED02","TED novel fold AF-A0A139PPG4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A68892","Streptococcus infantis"],["NCBITaxon%3A768726","Streptococcus mitis bv. 2 str. F0392"],["NCBITaxon%3A1000588","Streptococcus mitis bv. 2 str. SK95"],["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A655813","Streptococcus oralis ATCC 35037"],["NCBITaxon%3A888049","Streptococcus oralis ATCC 49296"]]},{"id":"NCBITaxon:1912","l":"Streptomyces hygroscopicus","na":2,"nb":35,"a":[["Pfam%3APF21168","Chorismatase FkbO/Hyg5-like, N-terminal"],["TED%3AAF-A0A1S6RUT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S6RUT8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A285578","Streptomyces angustmyceticus"],["NCBITaxon%3A68175","Streptomyces antimycoticus"],["NCBITaxon%3A1226758","Streptomyces antimycoticus subsp. mordarskii"],["NCBITaxon%3A476551","Streptomyces ascomycinicus"],["NCBITaxon%3A114699","Streptomyces asiaticus"],["NCBITaxon%3A3098222","Streptomyces asiaticus subsp. ignotus"]]},{"id":"NCBITaxon:2702","l":"Gardnerella vaginalis","na":2,"nb":35,"a":[["TED%3AAF-A0A133NUL7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A133NUL7-F1-model_v4_TED01"],["TED%3AAF-A0A3E2C3X9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3E2C3X9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2702","Gardnerella vaginalis"],["NCBITaxon%3A698952","Gardnerella vaginalis 0288E"],["NCBITaxon%3A698957","Gardnerella vaginalis 1500E"],["NCBITaxon%3A698950","Gardnerella vaginalis 284V"],["NCBITaxon%3A879307","Gardnerella vaginalis 315-A"],["NCBITaxon%3A553190","Gardnerella vaginalis 409-05"]]},{"id":"NCBITaxon:1582","l":"Lacticaseibacillus casei","na":2,"nb":32,"a":[["Pfam%3APF07475","HPr Serine kinase C-terminal domain"],["PROSITE%3APS01163","Galactose-1-phosphate uridyl transferase family 2 signature"]],"b":[["NCBITaxon%3A1582","Lacticaseibacillus casei"],["NCBITaxon%3A1051650","Lacticaseibacillus casei 12A"],["NCBITaxon%3A1051651","Lacticaseibacillus casei 21/1"],["NCBITaxon%3A1051652","Lacticaseibacillus casei 32G"],["NCBITaxon%3A1378069","Lacticaseibacillus casei 5b"],["NCBITaxon%3A1051653","Lacticaseibacillus casei A2-362"]]},{"id":"NCBITaxon:300852","l":"Thermus thermophilus (strain ATCC 27634 / DSM 579 / HB8)","na":32,"nb":2,"a":[["Pfam%3APF17864","RuvB AAA lid domain"],["Pfam%3APF09210","1,4-alpha-glucan branching enzyme, C-terminal"],["Pfam%3APF09670","Csm6 HEPN domain"],["Pfam%3APF18395","Cas3 C-terminal domain"],["Pfam%3APF18019","Cas3, HD domain"],["Pfam%3APF22590","CRISPR-associated nuclease/helicase Cas3, C-terminal"]],"b":[["NCBITaxon%3A274","Thermus thermophilus"],["NCBITaxon%3A300852","Thermus thermophilus HB8"]]},{"id":"NCBITaxon:171101","l":"Streptococcus pneumoniae (strain ATCC BAA-255 / R6)","na":31,"nb":2,"a":[["Pfam%3APF03590","Aspartate-ammonia ligase"],["Pfam%3APF25935","LcnD-like, barrel-sandwich hybrid domain"],["Pfam%3APF24568","Peptidoglycan hydrolase PcsB, coiled-coil domain"],["Pfam%3APF05257","CHAP domain"],["Pfam%3APF27342","ComB N-terminal domain"],["Pfam%3APF26697","Competence protein ComGC, C-terminal domain"]],"b":[["NCBITaxon%3A1165093","Streptococcus pneumoniae CCCB"],["NCBITaxon%3A171101","Streptococcus pneumoniae R6"]]},{"id":"NCBITaxon:243273","l":"Mycoplasmoides genitalium (strain ATCC 33530 / DSM 19775 / NCTC 10195 / G37)","na":31,"nb":2,"a":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF03257","Mycoplasma adhesin P1, C-terminal"],["Pfam%3APF09185","Domain of unknown function (DUF1948)"],["Pfam%3APF09188","Domain of unknown function (DUF1951)"],["Pfam%3APF03072","Domain of unknown function (DUF237)"],["Pfam%3APF03086","Domain of unknown function (DUF240)"]],"b":[["NCBITaxon%3A2097","Mycoplasmoides genitalium"],["NCBITaxon%3A243273","Mycoplasmoides genitalium G37"]]},{"id":"NCBITaxon:28141","l":"Cronobacter sakazakii","na":2,"nb":28,"a":[["TED%3AAF-A0A855WTZ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A855WTZ2-F1-model_v4_TED01"],["TED%3AAF-A0A855WPZ3-F1-model_v4_TED01","TED novel fold AF-A0A855WPZ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A413497","Cronobacter dublinensis"],["NCBITaxon%3A413501","Cronobacter muytjensii"],["NCBITaxon%3A1159613","Cronobacter muytjensii ATCC 51329"],["NCBITaxon%3A28141","Cronobacter sakazakii"],["NCBITaxon%3A1159489","Cronobacter sakazakii 2151"],["NCBITaxon%3A1208592","Cronobacter sakazakii 680"]]},{"id":"NCBITaxon:226186","l":"Bacteroides thetaiotaomicron (strain ATCC 29148 / DSM 2079 / JCM 5827 / CCUG 10774 / NCTC 10582 / VPI-5482 / E50)","na":25,"nb":2,"a":[["Pfam%3APF06439","3-keto-alpha-glucoside-1,2-lyase-like domain"],["Pfam%3APF13444","Acetyltransferase (GNAT) domain"],["Pfam%3APF19576","Acyltransferase"],["Pfam%3APF23764","GLAA-B beta-barrel domain II"],["Pfam%3APF13715","CarboxypepD_reg-like domain"],["Pfam%3APF26120","SusF, first starch specific CBM"]],"b":[["NCBITaxon%3A818","Bacteroides thetaiotaomicron"],["NCBITaxon%3A226186","Bacteroides thetaiotaomicron VPI-5482"]]},{"id":"NCBITaxon:309800","l":"Haloferax volcanii (strain ATCC 29605 / DSM 3757 / JCM 8879 / NBRC 14742 / NCIMB 2012 / VKM B-1768 / DS2)","na":25,"nb":2,"a":[["Pfam%3APF18079","Archaeal glycosylation protein B long peripheral domain"],["Pfam%3APF15915","GAF and HTH_10 associated domain"],["Pfam%3APF01881","CRISPR associated protein Cas6, C-terminal"],["Pfam%3APF09484","CRISPR-associated protein TM1802 (cas_TM1802) N-terminal domain"],["Pfam%3APF21011","Tubulin-like CetZ, C-terminal domain"],["Pfam%3APF19294","Diadenylate cyclase, N-terminal"]],"b":[["NCBITaxon%3A2246","Haloferax volcanii"],["NCBITaxon%3A309800","Haloferax volcanii DS2"]]},{"id":"NCBITaxon:160488","l":"Pseudomonas putida (strain ATCC 47054 / DSM 6125 / CFBP 8728 / NCIMB 11950 / KT2440)","na":24,"nb":2,"a":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF00842","Alanine racemase, C-terminal domain"],["Pfam%3APF01168","Alanine racemase, N-terminal domain"],["Pfam%3APF13372","Alginate export"],["Pfam%3APF03705","CheR methyltransferase, all-alpha domain"],["Pfam%3APF01739","CheR methyltransferase, SAM binding domain"]],"b":[["NCBITaxon%3A303","Pseudomonas putida"],["NCBITaxon%3A160488","Pseudomonas putida KT2440"]]},{"id":"NCBITaxon:596","l":"Salmonella enterica subsp. enterica serovar Muenchen","na":2,"nb":24,"a":[["Pfam%3APF27117","FliB lysine N-methylase C-terminal domain"],["TED%3AAF-A0A5U8XTE1-F1-model_v4_TED01","TED novel fold AF-A0A5U8XTE1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A596","Salmonella enterica subsp. enterica serovar Muenchen"],["NCBITaxon%3A1173881","Salmonella enterica subsp. enterica serovar Muenchen str. 0424"],["NCBITaxon%3A1328334","Salmonella enterica subsp. enterica serovar Muenchen str. 08-1125"],["NCBITaxon%3A1328333","Salmonella enterica subsp. enterica serovar Muenchen str. 2009K-0951"],["NCBITaxon%3A1192571","Salmonella enterica subsp. enterica serovar Muenchen str. 97016"],["NCBITaxon%3A930770","Salmonella enterica subsp. enterica serovar Muenchen str. ATCC 8388"]]},{"id":"NCBITaxon:157687","l":"Leptotrichia wadei","na":2,"nb":23,"a":[["TED%3AAF-A0A510KFE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A510KFE6-F1-model_v4_TED01"],["TED%3AAF-A0A510KJX4-F1-model_v4_TED02","TED novel fold AF-A0A510KJX4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A157687","Leptotrichia wadei"],["NCBITaxon%3A1122174","Leptotrichia wadei DSM 19758"],["NCBITaxon%3A888055","Leptotrichia wadei F0279"],["NCBITaxon%3A1409967","Leptotrichia wadei HMP_JCVI_SC0129"],["NCBITaxon%3A1409968","Leptotrichia wadei HMP_JCVI_SC0130"],["NCBITaxon%3A1409969","Leptotrichia wadei HMP_JCVI_SC0192"]]},{"id":"NCBITaxon:159749","l":"Thalassiosira oceanica","na":21,"nb":2,"a":[["TED%3AAF-K0QYM2-F1-model_v4_TED01","TED highly-symmetric fold AF-K0QYM2-F1-model_v4_TED01"],["TED%3AAF-K0R5V5-F1-model_v4_TED01","TED highly-symmetric fold AF-K0R5V5-F1-model_v4_TED01"],["TED%3AAF-K0R8R9-F1-model_v4_TED01","TED highly-symmetric fold AF-K0R8R9-F1-model_v4_TED01"],["TED%3AAF-K0R935-F1-model_v4_TED01","TED highly-symmetric fold AF-K0R935-F1-model_v4_TED01"],["TED%3AAF-K0RLI6-F1-model_v4_TED02","TED highly-symmetric fold AF-K0RLI6-F1-model_v4_TED02"],["TED%3AAF-K0SQP1-F1-model_v4_TED01","TED highly-symmetric fold AF-K0SQP1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A159749","Thalassiosira oceanica"],["NCBITaxon%3A637379","Thalassiosira oceanica CCMP1005"]]},{"id":"NCBITaxon:243230","l":"Deinococcus radiodurans (strain ATCC 13939 / DSM 20539 / JCM 16871 / CCUG 27074 / LMG 4051 / NBRC 15346 / NCIMB 9279 / VKM B-1422 / R1)","na":21,"nb":2,"a":[["Pfam%3APF07282","Cas12f1-like, TNB domain"],["Pfam%3APF26517","DNA damage response protein D family"],["Pfam%3APF07733","Bacterial DNA polymerase III alpha NTPase domain"],["Pfam%3APF17657","Bacterial DNA polymerase III alpha subunit finger domain"],["Pfam%3APF11638","DnaA N-terminal domain"],["Pfam%3APF09348","Domain of unknown function (DUF1990)"]],"b":[["NCBITaxon%3A1299","Deinococcus radiodurans"],["NCBITaxon%3A243230","Deinococcus radiodurans R1 = ATCC 13939 = DSM 20539"]]},{"id":"NCBITaxon:64091","l":"Halobacterium salinarum (strain ATCC 700922 / JCM 11081 / NRC-1)","na":21,"nb":2,"a":[["Pfam%3APF06953","Arsenical resistance operon protein ArsD"],["Pfam%3APF01036","Bacteriorhodopsin-like protein"],["Pfam%3APF15915","GAF and HTH_10 associated domain"],["Pfam%3APF01955","Adenosylcobinamide amidohydrolase"],["Pfam%3APF12762","ISXO2-like transposase domain"],["Pfam%3APF24277","DmsR, N-terminal domain-like"]],"b":[["NCBITaxon%3A64091","Halobacterium salinarum NRC-1"],["NCBITaxon%3A2243","Halobacterium sp."]]},{"id":"NCBITaxon:1245","l":"Leuconostoc mesenteroides","na":2,"nb":20,"a":[["Pfam%3APF08951","Bacteriocin immunity protein family"],["TED%3AAF-A0A8B5R1X5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B5R1X5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A33964","Leuconostoc citreum"],["NCBITaxon%3A1245","Leuconostoc mesenteroides"],["NCBITaxon%3A1357402","Leuconostoc mesenteroides A16_17"],["NCBITaxon%3A427140","Leuconostoc mesenteroides KFRI-MG"],["NCBITaxon%3A1429888","Leuconostoc mesenteroides P45"],["NCBITaxon%3A33965","Leuconostoc mesenteroides subsp. cremoris"]]},{"id":"NCBITaxon:1871037","l":"Flavobacteriaceae bacterium","na":20,"nb":2,"a":[["TED%3AAF-A0A2D8LJQ5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D8LJQ5-F1-model_v4_TED01"],["TED%3AAF-A0A2E2EWF0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E2EWF0-F1-model_v4_TED01"],["TED%3AAF-A0A2E2IY52-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E2IY52-F1-model_v4_TED01"],["TED%3AAF-A0A2E2WBT5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2E2WBT5-F1-model_v4_TED03"],["TED%3AAF-A0A2E3BY40-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E3BY40-F1-model_v4_TED01"],["TED%3AAF-A0A2E8VF02-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E8VF02-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1871037","Flavobacteriaceae bacterium"],["NCBITaxon%3A2687242","Mesonia oceanica"]]},{"id":"NCBITaxon:29488","l":"Photorhabdus luminescens","na":2,"nb":20,"a":[["Pfam%3APF02273","Acyl transferase"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"]],"b":[["NCBITaxon%3A171438","Photorhabdus akhurstii"],["NCBITaxon%3A2934395","Photorhabdus akhurstii subsp. akhurstii"],["NCBITaxon%3A1004165","Photorhabdus caribbeanensis"],["NCBITaxon%3A1004166","Photorhabdus hainanensis"],["NCBITaxon%3A230088","Photorhabdus kayaii"],["NCBITaxon%3A768034","Photorhabdus kleinii"]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":2,"nb":20,"a":[["Pfam%3APF07833","Copper amine oxidase N-terminal domain"],["TED%3AAF-A0A447L715-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A447L715-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A548","Klebsiella aerogenes"],["NCBITaxon%3A1308731","Klebsiella aerogenes ADL-323"],["NCBITaxon%3A935296","Klebsiella aerogenes EA1509E"],["NCBITaxon%3A685445","Klebsiella aerogenes FGI35"],["NCBITaxon%3A1028307","Klebsiella aerogenes KCTC 2190"],["NCBITaxon%3A1439320","Klebsiella aerogenes MGH 61"]]},{"id":"NCBITaxon:633","l":"Yersinia pseudotuberculosis","na":2,"nb":20,"a":[["Pfam%3APF03421","YopJ Serine/Threonine acetyltransferase"],["Pfam%3APF01041","DegT/DnrJ/EryC1/StrS aminotransferase family"]],"b":[["NCBITaxon%3A633","Yersinia pseudotuberculosis"],["NCBITaxon%3A1286084","Yersinia pseudotuberculosis B-6796"],["NCBITaxon%3A1286085","Yersinia pseudotuberculosis B-6862"],["NCBITaxon%3A1286086","Yersinia pseudotuberculosis B-6863"],["NCBITaxon%3A1286087","Yersinia pseudotuberculosis B-6864"],["NCBITaxon%3A1286088","Yersinia pseudotuberculosis B-6865"]]},{"id":"NCBITaxon:2026760","l":"Marinimicrobia bacterium","na":19,"nb":2,"a":[["TED%3AAF-A0A2D7MEH7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2D7MEH7-F1-model_v4_TED03"],["TED%3AAF-A0A2E7MXE5-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2E7MXE5-F1-model_v4_TED04"],["TED%3AAF-A0A3D2FQ14-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D2FQ14-F1-model_v4_TED01"],["TED%3AAF-A0A660XAY5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A660XAY5-F1-model_v4_TED01"],["TED%3AAF-A0A7C7JC12-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C7JC12-F1-model_v4_TED02"],["TED%3AAF-A0A7C7MW15-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C7MW15-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A3377529","Fidelibacter multiformis"],["NCBITaxon%3A2026760","Fidelibacterota bacterium"]]},{"id":"NCBITaxon:330779","l":"Sulfolobus acidocaldarius (strain ATCC 33909 / DSM 639 / JCM 8929 / NBRC 15157 / NCIMB 11770)","na":19,"nb":2,"a":[["Pfam%3APF12846","AAA-like domain"],["Pfam%3APF27338","Cytochrome b558/566 subunit B"],["Pfam%3APF18822","CdvA-like coiled-coil domain"],["Pfam%3APF27303","Cell division protein CdvB, C-terminal HTH domain"],["Pfam%3APF27251","DNA import protein CedA1"],["Pfam%3APF18533","Domain of unknown function (DUF5622)"]],"b":[["NCBITaxon%3A2285","Sulfolobus acidocaldarius"],["NCBITaxon%3A330779","Sulfolobus acidocaldarius DSM 639"]]},{"id":"NCBITaxon:375","l":"Bradyrhizobium japonicum","na":2,"nb":19,"a":[["TED%3AAF-A0A1L3FD53-F1-model_v4_TED02","TED novel fold AF-A0A1L3FD53-F1-model_v4_TED02"],["TED%3AAF-A0A1L3FDV4-F1-model_v4_TED02","TED novel fold AF-A0A1L3FDV4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1355477","Bradyrhizobium diazoefficiens"],["NCBITaxon%3A224911","Bradyrhizobium diazoefficiens USDA 110"],["NCBITaxon%3A375","Bradyrhizobium japonicum"],["NCBITaxon%3A306164","Bradyrhizobium japonicum bv. genistearum"],["NCBITaxon%3A305581","Bradyrhizobium japonicum bv. glycinearum"],["NCBITaxon%3A1128253","Bradyrhizobium japonicum CCBAU 15354"]]},{"id":"NCBITaxon:48296","l":"Acinetobacter pittii","na":2,"nb":19,"a":[["TED%3AAF-A0A3R9S6D0-F1-model_v4_TED03","TED novel fold AF-A0A3R9S6D0-F1-model_v4_TED03"],["TED%3AAF-A0A6P1SKX2-F1-model_v4_TED04","TED novel fold AF-A0A6P1SKX2-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A106654","Acinetobacter nosocomialis"],["NCBITaxon%3A1217670","Acinetobacter nosocomialis NIPH 2119"],["NCBITaxon%3A48296","Acinetobacter pittii"],["NCBITaxon%3A1147132","Acinetobacter pittii 42F"],["NCBITaxon%3A1217673","Acinetobacter pittii ANC 3678"]]},{"id":"NCBITaxon:158836","l":"Enterobacter hormaechei","na":2,"nb":18,"a":[["TED%3AAF-A0A431SE22-F1-model_v4_TED01","TED novel fold AF-A0A431SE22-F1-model_v4_TED01"],["TED%3AAF-A0A8B5ZRS3-F1-model_v4_TED01","TED novel fold AF-A0A8B5ZRS3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A3461408","Enterobacter hoffmannii subsp. nototheniae"],["NCBITaxon%3A158836","Enterobacter hormaechei"],["NCBITaxon%3A888063","Enterobacter hormaechei ATCC 49162"],["NCBITaxon%3A1812934","Enterobacter hormaechei subsp. hoffmannii"],["NCBITaxon%3A1333851","Enterobacter hormaechei subsp. hoffmannii ECNIH3"]]},{"id":"NCBITaxon:1580","l":"Levilactobacillus brevis","na":2,"nb":17,"a":[["TED%3AAF-A0A2A3TVW3-F1-model_v4_TED01","TED novel fold AF-A0A2A3TVW3-F1-model_v4_TED01"],["TED%3AAF-A0A7Z6MPZ0-F1-model_v4_TED02","TED novel fold AF-A0A7Z6MPZ0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1590","Lactiplantibacillus plantarum"],["NCBITaxon%3A2767846","Lactiplantibacillus sp."],["NCBITaxon%3A1591","Lactobacillus sp."],["NCBITaxon%3A1581","Lentilactobacillus buchneri"],["NCBITaxon%3A1580","Levilactobacillus brevis"],["NCBITaxon%3A1384064","Levilactobacillus brevis AG48"]]},{"id":"NCBITaxon:57975","l":"Burkholderia thailandensis","na":2,"nb":17,"a":[["TED%3AAF-A0A7Z8HH79-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Z8HH79-F1-model_v4_TED01"],["TED%3AAF-A0A7Z8HK43-F1-model_v4_TED01","TED novel fold AF-A0A7Z8HK43-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A57975","Burkholderia thailandensis"],["NCBITaxon%3A1249660","Burkholderia thailandensis 2002721643"],["NCBITaxon%3A1241582","Burkholderia thailandensis 2002721723"],["NCBITaxon%3A1249664","Burkholderia thailandensis 34"],["NCBITaxon%3A441164","Burkholderia thailandensis Bt4"],["NCBITaxon%3A1436064","Burkholderia thailandensis E0444"]]},{"id":"NCBITaxon:621","l":"Shigella boydii","na":2,"nb":17,"a":[["Pfam%3APF03808","Glycosyl transferase WecG/TagA/CpsF family"],["TED%3AAF-A0A1S9JL82-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S9JL82-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A621","Shigella boydii"],["NCBITaxon%3A1118236","Shigella boydii 08-0009"],["NCBITaxon%3A1212573","Shigella boydii 08-0280"],["NCBITaxon%3A1212574","Shigella boydii 08-2671"],["NCBITaxon%3A1212575","Shigella boydii 08-2675"]]},{"id":"NCBITaxon:69014","l":"Thermococcus kodakarensis (strain ATCC BAA-918 / JCM 12380 / KOD1)","na":17,"nb":2,"a":[["Pfam%3APF08546","Ketopantoate reductase PanE/ApbA C terminal"],["Pfam%3APF02558","Ketopantoate reductase PanE/ApbA"],["Pfam%3APF09210","1,4-alpha-glucan branching enzyme, C-terminal"],["Pfam%3APF01861","Branched-chain polyamine synthase A C-terminal domain"],["Pfam%3APF27272","Cyclic 2,3-diphosphoglycerate synthetase, N-terminal domain"],["Pfam%3APF17884","Domain of unknown function (DUF5591)"]],"b":[["NCBITaxon%3A311400","Thermococcus kodakarensis"],["NCBITaxon%3A69014","Thermococcus kodakarensis KOD1"]]},{"id":"NCBITaxon:243161","l":"Chlamydia muridarum (strain MoPn / Nigg)","na":16,"nb":2,"a":[["Pfam%3APF07382","Histone H1-like nucleoprotein HC2"],["Pfam%3APF05475","Pgp3 C-terminal domain"],["Pfam%3APF07577","Domain of Unknown Function (DUF1547)"],["Pfam%3APF05745","Chlamydia 15 kDa cysteine-rich outer membrane protein (CRPA)"],["Pfam%3APF28261","Uncharacterized protein CT_504-like"],["Pfam%3APF17435","CT_584-like"]],"b":[["NCBITaxon%3A243161","Chlamydia muridarum str. Nigg"],["NCBITaxon%3A1434773","Chlamydia muridarum str. Nigg CM972"]]},{"id":"NCBITaxon:587753","l":"Pseudomonas chlororaphis","na":2,"nb":16,"a":[["TED%3AAF-A0A8A9Z2C4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A8A9Z2C4-F1-model_v4_TED03"],["TED%3AAF-A0A0A6DEM6-F1-model_v4_TED01","TED novel fold AF-A0A0A6DEM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A587753","Pseudomonas chlororaphis"],["NCBITaxon%3A1343078","Pseudomonas chlororaphis HT66"],["NCBITaxon%3A1037915","Pseudomonas chlororaphis O6"],["NCBITaxon%3A1400530","Pseudomonas chlororaphis PCYL_1"],["NCBITaxon%3A86192","Pseudomonas chlororaphis subsp. aurantiaca"],["NCBITaxon%3A1415170","Pseudomonas chlororaphis subsp. aurantiaca PB-St2"]]},{"id":"NCBITaxon:622","l":"Shigella dysenteriae","na":2,"nb":16,"a":[["Pfam%3APF03278","IpaB/EvcA family"],["PROSITE%3APS00275","Shiga/ricin ribosomal inactivating toxins active site signature"]],"b":[["NCBITaxon%3A622","Shigella dysenteriae"],["NCBITaxon%3A984897","Shigella dysenteriae 1"],["NCBITaxon%3A766142","Shigella dysenteriae 155-74"],["NCBITaxon%3A754093","Shigella dysenteriae 1617"],["NCBITaxon%3A766143","Shigella dysenteriae 225-75"],["NCBITaxon%3A984895","Shigella dysenteriae 2a"]]},{"id":"NCBITaxon:1334","l":"Streptococcus dysgalactiae","na":2,"nb":15,"a":[["Pfam%3APF20746","Endo-beta-N-acetylglucosaminidase F2, Ig-like domain"],["Pfam%3APF23952","Endo-beta-N-acetylglucosaminidase EndoS LRR domain"]],"b":[["NCBITaxon%3A1334","Streptococcus dysgalactiae"],["NCBITaxon%3A99822","Streptococcus dysgalactiae subsp. dysgalactiae"],["NCBITaxon%3A663952","Streptococcus dysgalactiae subsp. dysgalactiae ATCC 27957"],["NCBITaxon%3A119602","Streptococcus dysgalactiae subsp. equisimilis"],["NCBITaxon%3A1247189","Streptococcus dysgalactiae subsp. equisimilis 167"],["NCBITaxon%3A759913","Streptococcus dysgalactiae subsp. equisimilis AC-2713"]]},{"id":"NCBITaxon:654","l":"Aeromonas veronii","na":2,"nb":15,"a":[["TED%3AAF-A0A2S3XR57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S3XR57-F1-model_v4_TED01"],["TED%3AAF-A0A1Q8F226-F1-model_v4_TED01","TED novel fold AF-A0A1Q8F226-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A646","Aeromonas sobria"],["NCBITaxon%3A647","Aeromonas sp."],["NCBITaxon%3A654","Aeromonas veronii"],["NCBITaxon%3A1073382","Aeromonas veronii AER39"],["NCBITaxon%3A1073384","Aeromonas veronii AER397"],["NCBITaxon%3A1125687","Aeromonas veronii AMC24"]]},{"id":"NCBITaxon:1347342","l":"Formosa agariphila (strain DSM 15362 / KCTC 12365 / LMG 23005 / KMM 3901 / M-2Alg 35-1)","na":14,"nb":2,"a":[["Pfam%3APF17390","Bacterial alpha-L-rhamnosidase C-terminal domain"],["Pfam%3APF08531","Alpha-L-rhamnosidase N-terminal domain"],["Pfam%3APF05592","Bacterial alpha-L-rhamnosidase concanavalin-like domain"],["Pfam%3APF24208","Endo-acting ulvan lyase beta-trefoil domain"],["Pfam%3APF16355","Domain of unknown function (DUF4982)"],["Pfam%3APF18565","Glycoside hydrolase family 2 C-terminal domain 5"]],"b":[["NCBITaxon%3A320324","Formosa agariphila"],["NCBITaxon%3A1347342","Formosa agariphila KMM 3901"]]},{"id":"NCBITaxon:196627","l":"Corynebacterium glutamicum (strain ATCC 13032 / DSM 20300 / JCM 1318 / BCRC 11384 / CCUG 27702 / LMG 3730 / NBRC 12168 / NCIMB 10025 / NRRL B-2784 / 534)","na":14,"nb":2,"a":[["Pfam%3APF26371","AftB family C-terminal domain"],["Pfam%3APF12897","Aspartate amino-transferase"],["Pfam%3APF02028","BCCT, betaine/carnitine/choline family transporter"],["Pfam%3APF27333","Cgl2226"],["Pfam%3APF13631","Cytochrome b(N-terminal)/b6/petB"],["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"]],"b":[["NCBITaxon%3A1718","Corynebacterium glutamicum"],["NCBITaxon%3A196627","Corynebacterium glutamicum ATCC 13032"]]},{"id":"NCBITaxon:28132","l":"Prevotella melaninogenica","na":2,"nb":14,"a":[["TED%3AAF-A0A8B2A6Y8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B2A6Y8-F1-model_v4_TED01"],["TED%3AAF-A0A250KF16-F1-model_v4_TED03","TED novel fold AF-A0A250KF16-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A840","Hoylesella loescheii"],["NCBITaxon%3A1122985","Hoylesella loescheii DSM 19665 = JCM 12249 = ATCC 15930"],["NCBITaxon%3A28123","Porphyromonas asaccharolytica"],["NCBITaxon%3A837","Porphyromonas gingivalis"],["NCBITaxon%3A28114","Porphyromonas levii"],["NCBITaxon%3A1122973","Porphyromonas levii DSM 23370"]]},{"id":"NCBITaxon:267377","l":"Methanococcus maripaludis (strain DSM 14266 / JCM 13030 / NBRC 101832 / S2 / LL)","na":13,"nb":2,"a":[["Pfam%3APF09171","N-glycosylase/DNA lyase"],["Pfam%3APF06847","Archaeal Peptidase A24 C-terminus Type II"],["Pfam%3APF06819","Archaeal Peptidase A24 C-terminal Domain"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF26558","3-dehydroquinate synthase II C-terminal domain"],["Pfam%3APF01959","3-dehydroquinate synthase II N-terminal domain"]],"b":[["NCBITaxon%3A39152","Methanococcus maripaludis"],["NCBITaxon%3A267377","Methanococcus maripaludis S2"]]},{"id":"NCBITaxon:272562","l":"Clostridium acetobutylicum (strain ATCC 824 / DSM 792 / JCM 1419 / IAM 19013 / LMG 5710 / NBRC 13948 / NRRL B-527 / VKM B-1787 / 2291 / W)","na":13,"nb":2,"a":[["Pfam%3APF10882","Bacterial PH domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["Pfam%3APF09940","Domain of unknown function (DUF2172)"],["Pfam%3APF16254","Domain of unknown function (DUF4910)"],["Pfam%3APF01183","Glycosyl hydrolases family 25"],["Pfam%3APF16221","winged helix-turn-helix"]],"b":[["NCBITaxon%3A1488","Clostridium acetobutylicum"],["NCBITaxon%3A272562","Clostridium acetobutylicum ATCC 824"]]},{"id":"NCBITaxon:272844","l":"Pyrococcus abyssi (strain GE5 / Orsay)","na":13,"nb":2,"a":[["Pfam%3APF27302","AF_2407 family"],["Pfam%3APF22482","PF0864 C-terminal dimeric alpha+beta barrel domain"],["Pfam%3APF21133","CCA-adding enzyme, C-terminal domain"],["Pfam%3APF02641","Uncharacterized ACR, COG1993"],["Pfam%3APF02643","Uncharacterized ACR, COG1430"],["Pfam%3APF24034","Domain of unknown function (DUF7343)"]],"b":[["NCBITaxon%3A29292","Pyrococcus abyssi"],["NCBITaxon%3A272844","Pyrococcus abyssi GE5"]]},{"id":"NCBITaxon:529","l":"Brucella anthropi","na":2,"nb":13,"a":[["Pfam%3APF07930","D-aminopeptidase, domain B"],["TED%3AAF-A0A7T4IBJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T4IBJ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1775538","Acidovorax sp. JCM 10070"],["NCBITaxon%3A1775539","Acidovorax sp. JCM 10072"],["NCBITaxon%3A529","Brucella anthropi"],["NCBITaxon%3A1201037","Brucella anthropi 60a"],["NCBITaxon%3A439375","Brucella anthropi ATCC 49188"],["NCBITaxon%3A1151114","Brucella anthropi CTS-325"]]},{"id":"NCBITaxon:54","l":"Nannocystis exedens","na":13,"nb":2,"a":[["TED%3AAF-A0A1I2A5Z6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2A5Z6-F1-model_v4_TED01"],["TED%3AAF-A0A1I2FM38-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I2FM38-F1-model_v4_TED02"],["TED%3AAF-A0A1I2H0F9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2H0F9-F1-model_v4_TED01"],["TED%3AAF-A0A831ZMD9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A831ZMD9-F1-model_v4_TED01"],["TED%3AAF-A0A1I1T6U3-F1-model_v4_TED01","TED novel fold AF-A0A1I1T6U3-F1-model_v4_TED01"],["TED%3AAF-A0A1I1XLT5-F1-model_v4_TED02","TED novel fold AF-A0A1I1XLT5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A54","Nannocystis exedens"],["NCBITaxon%3A1366054","Nannocystis exedens subsp. cinnabaria"]]},{"id":"NCBITaxon:70601","l":"Pyrococcus horikoshii (strain ATCC 700860 / DSM 12428 / JCM 9974 / NBRC 100139 / OT-3)","na":13,"nb":2,"a":[["Pfam%3APF22482","PF0864 C-terminal dimeric alpha+beta barrel domain"],["Pfam%3APF21350","CRISPR-associated protein Cas6, N-terminal"],["Pfam%3APF04122","Cell wall binding domain 2 (CWB2)"],["Pfam%3APF13660","Domain of unknown function (DUF4147)"],["Pfam%3APF04473","Transglutaminase-like domain"],["Pfam%3APF24034","Domain of unknown function (DUF7343)"]],"b":[["NCBITaxon%3A53953","Pyrococcus horikoshii"],["NCBITaxon%3A70601","Pyrococcus horikoshii OT3"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":2,"nb":12,"a":[["Pfam%3APF22538","Hexaprenyl diphosphate synthase, small subunit"],["PROSITE%3APS01066","Undecaprenyl pyrophosphate synthase family signature"]],"b":[["NCBITaxon%3A72000","Kocuria rhizophila"],["NCBITaxon%3A378753","Kocuria rhizophila DC2201"],["NCBITaxon%3A1272","Kocuria varians"],["NCBITaxon%3A1270","Micrococcus luteus"],["NCBITaxon%3A1357403","Micrococcus luteus CD1_FAA_NB_1"],["NCBITaxon%3A935864","Micrococcus luteus J28"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus ATCC 27405","na":12,"nb":2,"a":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["Pfam%3APF00942","Cellulose binding domain"],["Pfam%3APF17996","Carbohydrate esterase 2 N-terminal"],["Pfam%3APF00963","Cohesin domain"],["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF00404","Dockerin type I domain"]],"b":[["NCBITaxon%3A1515","Acetivibrio thermocellus"],["NCBITaxon%3A203119","Acetivibrio thermocellus ATCC 27405"]]},{"id":"NCBITaxon:224326","l":"Borreliella burgdorferi (strain ATCC 35210 / DSM 4680 / CIP 102532 / B31)","na":12,"nb":2,"a":[["Pfam%3APF09822","ABC-type uncharacterized transport system"],["Pfam%3APF02352","Decorin binding protein"],["Pfam%3APF23357","Domain of unknown function (DUF7088)"],["Pfam%3APF27167","GRAD helix-turn-helix domain"],["Pfam%3APF28090","BB0208-like"],["Pfam%3APF02999","Borrelia orf-D family"]],"b":[["NCBITaxon%3A139","Borreliella burgdorferi"],["NCBITaxon%3A224326","Borreliella burgdorferi B31"]]},{"id":"NCBITaxon:273123","l":"Yersinia pseudotuberculosis serotype I (strain IP32953)","na":12,"nb":2,"a":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF07201","HrpJ-like domain"],["Pfam%3APF09134","Invasin, domain 3"],["Pfam%3APF21764","Invasin, domain 4"],["Pfam%3APF07321","Type III secretion protein YscO"],["Pfam%3APF06932","Protein of unknown function (DUF1283)"]],"b":[["NCBITaxon%3A633","Yersinia pseudotuberculosis"],["NCBITaxon%3A273123","Yersinia pseudotuberculosis IP 32953"]]},{"id":"NCBITaxon:373153","l":"Streptococcus pneumoniae serotype 2 (strain D39 / NCTC 7466)","na":12,"nb":2,"a":[["Pfam%3APF24568","Peptidoglycan hydrolase PcsB, coiled-coil domain"],["Pfam%3APF05257","CHAP domain"],["Pfam%3APF22610","Histidine kinase, HAMP domain"],["Pfam%3APF18075","FtsX extracellular domain"],["Pfam%3APF02687","FtsX-like permease C-terminal"],["Pfam%3APF14804","Jag N-terminus"]],"b":[["NCBITaxon%3A1313","Streptococcus pneumoniae"],["NCBITaxon%3A373153","Streptococcus pneumoniae D39"]]},{"id":"NCBITaxon:431947","l":"Porphyromonas gingivalis (strain ATCC 33277 / DSM 20709 / CIP 103683 / JCM 12257 / NCTC 11834 / 2561)","na":12,"nb":2,"a":[["Pfam%3APF07675","Cleaved Adhesin Domain"],["Pfam%3APF19755","Domain of unknown function (DUF6242) N-terminal domain"],["Pfam%3APF22492","FimA4 pilin C-terminal domain"],["Pfam%3APF15495","Major fimbrial subunit protein type IV, Fimbrillin, C-terminal"],["Pfam%3APF26306","FimD protein third domain"],["Pfam%3APF27397","FimE C-terminal domain"]],"b":[["NCBITaxon%3A837","Porphyromonas gingivalis"],["NCBITaxon%3A431947","Porphyromonas gingivalis ATCC 33277"]]},{"id":"NCBITaxon:523841","l":"Haloferax mediterranei (strain ATCC 33500 / DSM 1411 / JCM 8866 / NBRC 14739 / NCIMB 2177 / R-4)","na":12,"nb":2,"a":[["Pfam%3APF01881","CRISPR associated protein Cas6, C-terminal"],["Pfam%3APF16952","Glutamine synthetase N-terminal domain"],["Pfam%3APF20440","GvpD basic region 2"],["Pfam%3APF07088","GvpD gas vesicle protein, P-loop domain"],["Pfam%3APF05120","Gas vesicle protein G"],["Pfam%3APF16912","Glucose dehydrogenase C-terminus"]],"b":[["NCBITaxon%3A2252","Haloferax mediterranei"],["NCBITaxon%3A523841","Haloferax mediterranei ATCC 33500"]]},{"id":"NCBITaxon:5702","l":"Trypanosoma brucei brucei","na":12,"nb":2,"a":[["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF05887","Procyclic acidic repetitive protein (PARP)"],["Pfam%3APF18526","Thymine dioxygenase JBP1 DNA-binding domain"],["Pfam%3APF22592","FCaBP EF-hand domain"],["Pfam%3APF12131","Protein of unknown function (DUF3586)"]],"b":[["NCBITaxon%3A5702","Trypanosoma brucei brucei"],["NCBITaxon%3A185431","Trypanosoma brucei brucei TREU927"]]},{"id":"NCBITaxon:1254","l":"Pediococcus acidilactici","na":2,"nb":11,"a":[["Pfam%3APF01721","Class II bacteriocin"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"]],"b":[["NCBITaxon%3A1245","Leuconostoc mesenteroides"],["NCBITaxon%3A1254","Pediococcus acidilactici"],["NCBITaxon%3A563194","Pediococcus acidilactici 7_4"],["NCBITaxon%3A1384067","Pediococcus acidilactici AGR20"],["NCBITaxon%3A1306952","Pediococcus acidilactici D3"],["NCBITaxon%3A862514","Pediococcus acidilactici DSM 20284"]]},{"id":"NCBITaxon:192952","l":"Methanosarcina mazei (strain ATCC BAA-159 / DSM 3647 / Goe1 / Go1 / JCM 11833 / OCM 88)","na":11,"nb":2,"a":[["Pfam%3APF01955","Adenosylcobinamide amidohydrolase"],["Pfam%3APF13189","Cytidylate kinase-like family"],["Pfam%3APF04432","Coenzyme F420 hydrogenase/dehydrogenase, beta subunit C terminus"],["Pfam%3APF13528","Glycosyl transferase family 1"],["Pfam%3APF19769","CPxCG-related zinc finger"],["Pfam%3APF10049","Protein of unknown function (DUF2283)"]],"b":[["NCBITaxon%3A2209","Methanosarcina mazei"],["NCBITaxon%3A192952","Methanosarcina mazei Go1"]]},{"id":"NCBITaxon:208962","l":"Escherichia albertii","na":2,"nb":11,"a":[["Pfam%3APF18134","Adenylyl/Guanylyl and SMODS C-terminal sensor domain"],["Pfam%3APF18153","Cap15, cyclic dinucleotide receptor domain"]],"b":[["NCBITaxon%3A208962","Escherichia albertii"],["NCBITaxon%3A550692","Escherichia albertii B090"],["NCBITaxon%3A550693","Escherichia albertii B156"],["NCBITaxon%3A1440052","Escherichia albertii KF1"],["NCBITaxon%3A1115511","Escherichia albertii NBRC 107761 = DSM 17582"],["NCBITaxon%3A502347","Escherichia albertii TW07627"]]},{"id":"NCBITaxon:46503","l":"Parabacteroides merdae","na":2,"nb":11,"a":[["TED%3AAF-A0A3R6EXH1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R6EXH1-F1-model_v4_TED01"],["TED%3AAF-A0A7K1HWR2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K1HWR2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A46503","Parabacteroides merdae"],["NCBITaxon%3A411477","Parabacteroides merdae ATCC 43184"],["NCBITaxon%3A1263094","Parabacteroides merdae CAG:48"],["NCBITaxon%3A999420","Parabacteroides merdae CL03T12C32"],["NCBITaxon%3A999421","Parabacteroides merdae CL09T00C40"],["NCBITaxon%3A1339583","Parabacteroides merdae TSDC10.1-1.1"]]},{"id":"NCBITaxon:498211","l":"Cellvibrio japonicus (strain Ueda107)","na":11,"nb":2,"a":[["Pfam%3APF17996","Carbohydrate esterase 2 N-terminal"],["Pfam%3APF02156","Glycosyl hydrolase family 26"],["Pfam%3APF02015","Glycosyl hydrolase family 45"],["Pfam%3APF07477","Glycosyl hydrolase family 67 C-terminus"],["Pfam%3APF07488","Glycosyl hydrolase family 67 middle domain"],["Pfam%3APF03648","Glycosyl hydrolase family 67 N-terminus"]],"b":[["NCBITaxon%3A155077","Cellvibrio japonicus"],["NCBITaxon%3A498211","Cellvibrio japonicus Ueda107"]]},{"id":"NCBITaxon:588596","l":"Rhizophagus irregularis","na":11,"nb":2,"a":[["TED%3AAF-A0A2I1G4L7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I1G4L7-F1-model_v4_TED01"],["TED%3AAF-A0A2N0R6X3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N0R6X3-F1-model_v4_TED01"],["TED%3AAF-A0A2N0RUV7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N0RUV7-F1-model_v4_TED01"],["TED%3AAF-A0A2I1FP07-F1-model_v4_TED02","TED novel fold AF-A0A2I1FP07-F1-model_v4_TED02"],["TED%3AAF-A0A2I1G2C0-F1-model_v4_TED01","TED novel fold AF-A0A2I1G2C0-F1-model_v4_TED01"],["TED%3AAF-A0A2I1GB98-F1-model_v4_TED02","TED novel fold AF-A0A2I1GB98-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A588596","Rhizophagus irregularis"],["NCBITaxon%3A747089","Rhizophagus irregularis DAOM 181602=DAOM 197198"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":11,"nb":2,"a":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF02085","Class III cytochrome C family"],["Pfam%3APF06397","Desulfoferrodoxin, N-terminal domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["Pfam%3APF12797","4Fe-4S binding domain"],["Pfam%3APF06180","Cobalt chelatase (CbiK)"]],"b":[["NCBITaxon%3A881","Nitratidesulfovibrio vulgaris"],["NCBITaxon%3A882","Nitratidesulfovibrio vulgaris str. Hildenborough"]]},{"id":"NCBITaxon:190192","l":"Methanopyrus kandleri (strain AV19 / DSM 6324 / JCM 9639 / NBRC 100938)","na":10,"nb":2,"a":[["Pfam%3APF26548","Putative peptidyl-prolyl cis-trans isomerase domain"],["Pfam%3APF02741","FTR, proximal lobe"],["Pfam%3APF01913","Formylmethanofuran-tetrahydromethanopterin formyltransferase"],["Pfam%3APF22616","HMD N-terminal domain"],["Pfam%3APF04038","Dihydroneopterin aldolase"],["Pfam%3APF07318","Protein of unknown function (DUF1464)"]],"b":[["NCBITaxon%3A2320","Methanopyrus kandleri"],["NCBITaxon%3A190192","Methanopyrus kandleri AV19"]]},{"id":"NCBITaxon:190650","l":"Caulobacter vibrioides (strain ATCC 19089 / CIP 103742 / CB 15)","na":10,"nb":2,"a":[["IDPO%3A0000060","self-assembly"],["Pfam%3APF27198","FlaEY third domain"],["Pfam%3APF22367","Flagellar hook protein FlgE, third domain"],["Pfam%3APF03799","Cell division protein FtsQ/DivIB, C-terminal"],["Pfam%3APF27294","HfaA"],["Pfam%3APF27277","Holdfast attachment protein D"]],"b":[["NCBITaxon%3A155892","Caulobacter vibrioides"],["NCBITaxon%3A190650","Caulobacter vibrioides CB15"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":10,"nb":2,"a":[["Pfam%3APF27445","Adaptation to cold protein A"],["Pfam%3APF27450","AtcB C-terminal domain"],["Pfam%3APF27486","AtcB N-terminal domain"],["Pfam%3APF02464","CinA C-terminal domain"],["Pfam%3APF13657","HipA N-terminal domain"],["Pfam%3APF01934","Ribonuclease HepT-like"]],"b":[["NCBITaxon%3A70863","Shewanella oneidensis"],["NCBITaxon%3A211586","Shewanella oneidensis MR-1"]]},{"id":"NCBITaxon:224911","l":"Bradyrhizobium diazoefficiens USDA 110","na":10,"nb":2,"a":[["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["Pfam%3APF14715","N-terminal domain of cytochrome oxidase-cbb3, FixP"],["Pfam%3APF03886","ABC-type transport auxiliary lipoprotein component"],["Pfam%3APF10649","Protein of unknown function (DUF2478)"],["Pfam%3APF01924","Hydrogenase formation hypA family"],["PROSITE%3APS00882","Nickel-dependent hydrogenases b-type cytochrome subunit signature 1"]],"b":[["NCBITaxon%3A1355477","Bradyrhizobium diazoefficiens"],["NCBITaxon%3A224911","Bradyrhizobium diazoefficiens USDA 110"]]},{"id":"NCBITaxon:266264","l":"Cupriavidus metallidurans CH34","na":10,"nb":2,"a":[["Pfam%3APF25973","CzcB-like, barrel-sandwich hybrid domain"],["Pfam%3APF09828","ChrB, C-terminal domain"],["Pfam%3APF20229","Protein ChrB, N-terminal"],["Pfam%3APF01923","Cobalamin adenosyltransferase"],["Pfam%3APF25975","CzcB C-terminal circularly permuted SH3-like domain"],["Pfam%3APF25971","CzcB, N-terminal domain"]],"b":[["NCBITaxon%3A119219","Cupriavidus metallidurans"],["NCBITaxon%3A266264","Cupriavidus metallidurans CH34"]]},{"id":"NCBITaxon:279010","l":"Bacillus licheniformis (strain ATCC 14580 / DSM 13 / JCM 2505 / CCUG 7422 / NBRC 12200 / NCIMB 9375 / NCTC 10341 / NRRL NRS-1264 / Gibson 46)","na":10,"nb":2,"a":[["Pfam%3APF02863","Arginine repressor, C-terminal domain"],["Pfam%3APF01316","Arginine repressor, DNA binding domain"],["Pfam%3APF16715","Cyclodipeptide synthase"],["Pfam%3APF27491","GerT N-terminal domain"],["Pfam%3APF07745","Glycosyl hydrolase family 53"],["Pfam%3APF21996","Histidyl-tRNA synthetase HisZ, C-terminal domain"]],"b":[["NCBITaxon%3A1402","Bacillus licheniformis"],["NCBITaxon%3A279010","Bacillus licheniformis DSM 13 = ATCC 14580"]]},{"id":"NCBITaxon:40214","l":"Acinetobacter johnsonii","na":2,"nb":10,"a":[["Pfam%3APF12973","ChrR Cupin-like domain"],["Pfam%3APF13807","G-rich domain on putative tyrosine kinase"]],"b":[["NCBITaxon%3A40214","Acinetobacter johnsonii"],["NCBITaxon%3A1255605","Acinetobacter johnsonii 3M05"],["NCBITaxon%3A1217662","Acinetobacter johnsonii ANC 3681"],["NCBITaxon%3A1217663","Acinetobacter johnsonii CIP 64.6"],["NCBITaxon%3A1160709","Acinetobacter johnsonii L18"],["NCBITaxon%3A701047","Acinetobacter johnsonii SE1"]]},{"id":"NCBITaxon:920","l":"Acidithiobacillus ferrooxidans","na":2,"nb":10,"a":[["Pfam%3APF20538","Family of unknown function (DUF6753)"],["PROSITE%3APS01007","Transposases, Mutator family, signature"]],"b":[["NCBITaxon%3A163359","Acidiferrobacter thiooxydans"],["NCBITaxon%3A1232575","Acidithiobacillus ferridurans"],["NCBITaxon%3A920","Acidithiobacillus ferrooxidans"],["NCBITaxon%3A243159","Acidithiobacillus ferrooxidans ATCC 23270"],["NCBITaxon%3A380394","Acidithiobacillus ferrooxidans ATCC 53993"],["NCBITaxon%3A1433292","Acidithiobacillus ferrooxidans BY-3"]]},{"id":"NCBITaxon:1238","l":"Piscirickettsia salmonis","na":2,"nb":9,"a":[["TED%3AAF-A0A0K2DZD9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0K2DZD9-F1-model_v4_TED01"],["TED%3AAF-A0A1L6TBT4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6TBT4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1238","Piscirickettsia salmonis"],["NCBITaxon%3A1269812","Piscirickettsia salmonis Al10015"],["NCBITaxon%3A1398558","Piscirickettsia salmonis AUSTRAL-005"],["NCBITaxon%3A1441380","Piscirickettsia salmonis CGA/3731"],["NCBITaxon%3A1435375","Piscirickettsia salmonis EM-90"],["NCBITaxon%3A1435376","Piscirickettsia salmonis ES-3"]]},{"id":"NCBITaxon:158878","l":"Staphylococcus aureus (strain Mu50 / ATCC 700699)","na":9,"nb":2,"a":[["Pfam%3APF26317","Histidine racemase CntK N-terminal domain"],["Pfam%3APF13610","DDE domain"],["Pfam%3APF12199","Extracellular fibrinogen binding protein C terminal"],["Pfam%3APF26323","Staphylococcus aureus type VII secretion system substrate EsxC"],["Pfam%3APF19776","Family of unknown function (DUF6262)"],["Pfam%3APF27790","Poly-beta-1,6-N-acetyl-D-glucosamine synthesis protein IcaD"]],"b":[["NCBITaxon%3A1280","Staphylococcus aureus"],["NCBITaxon%3A158878","Staphylococcus aureus subsp. aureus Mu50"]]},{"id":"NCBITaxon:188937","l":"Methanosarcina acetivorans (strain ATCC 35395 / DSM 2834 / JCM 12185 / C2A)","na":9,"nb":2,"a":[["Pfam%3APF01903","CbiX"],["Pfam%3APF27274","Coenzyme F430 synthetase CfbE, C-terminal domain"],["Pfam%3APF04060","Putative Fe-S cluster"],["Pfam%3APF13528","Glycosyl transferase family 1"],["Pfam%3APF01837","Homocysteine biosynthesis enzyme, sulfur-incorporation"],["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"]],"b":[["NCBITaxon%3A2214","Methanosarcina acetivorans"],["NCBITaxon%3A188937","Methanosarcina acetivorans C2A"]]},{"id":"NCBITaxon:1904441","l":"Paracoccaceae bacterium","na":9,"nb":2,"a":[["TED%3AAF-A0A2E3PFF7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E3PFF7-F1-model_v4_TED02"],["TED%3AAF-A0A357LNH5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A357LNH5-F1-model_v4_TED01"],["TED%3AAF-A0A3D4DSL4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D4DSL4-F1-model_v4_TED01"],["TED%3AAF-A0A6L8C0Y8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L8C0Y8-F1-model_v4_TED01"],["TED%3AAF-A0A7Y2J0I6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y2J0I6-F1-model_v4_TED01"],["TED%3AAF-A0A2E0BJC7-F1-model_v4_TED02","TED novel fold AF-A0A2E0BJC7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2301217","Marinibacterium anthonyi"],["NCBITaxon%3A1904441","Paracoccaceae bacterium"]]},{"id":"NCBITaxon:190485","l":"Xanthomonas campestris pv. campestris (strain ATCC 33913 / DSM 3586 / NCPPB 528 / LMG 568 / P 25)","na":9,"nb":2,"a":[["Pfam%3APF28546","TonB transmembrane helix"],["Pfam%3APF00325","Bacterial regulatory proteins, crp family"],["Pfam%3APF06165","Glycosyl hydrolase 94, supersandwich domain"],["Pfam%3APF12019","Type II transport protein GspH"],["Pfam%3APF22059","Glucuronosyltransferase GumK, N-terminal domain"],["Pfam%3APF14307","Glycosyltransferase WbsX"]],"b":[["NCBITaxon%3A339","Xanthomonas campestris"],["NCBITaxon%3A190485","Xanthomonas campestris pv. campestris str. ATCC 33913"]]},{"id":"NCBITaxon:226185","l":"Enterococcus faecalis (strain ATCC 700802 / V583)","na":9,"nb":2,"a":[["Pfam%3APF13523","Acetyltransferase (GNAT) domain"],["Pfam%3APF17255","EbsA-like protein"],["Pfam%3APF22647","Deacetylase EF_0837-like composite domain"],["Pfam%3APF08858","IDEAL domain"],["Pfam%3APF02655","ATP-grasp domain"],["Pfam%3APF17400","Family of unknown function (DUF5406)"]],"b":[["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A226185","Enterococcus faecalis V583"]]},{"id":"NCBITaxon:29430","l":"Acinetobacter haemolyticus","na":2,"nb":9,"a":[["TED%3AAF-A0A845PGH5-F1-model_v4_TED01","TED novel fold AF-A0A845PGH5-F1-model_v4_TED01"],["TED%3AAF-A0A857IU13-F1-model_v4_TED06","TED novel fold AF-A0A857IU13-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A29430","Acinetobacter haemolyticus"],["NCBITaxon%3A707232","Acinetobacter haemolyticus ATCC 19194"],["NCBITaxon%3A1217659","Acinetobacter haemolyticus CIP 64.3 = MTCC 9819"],["NCBITaxon%3A1217986","Acinetobacter haemolyticus NIPH 261"],["NCBITaxon%3A1221297","Acinetobacter haemolyticus TG19599"],["NCBITaxon%3A1221298","Acinetobacter haemolyticus TG19602"]]},{"id":"NCBITaxon:37919","l":"Rhodococcus opacus","na":2,"nb":9,"a":[["Pfam%3APF11794","4-hydroxyphenylacetate 3-hydroxylase N terminal"],["Pfam%3APF03241","4-hydroxyphenylacetate 3-hydroxylase C terminal"]],"b":[["NCBITaxon%3A1833","Rhodococcus erythropolis"],["NCBITaxon%3A37919","Rhodococcus opacus"],["NCBITaxon%3A632772","Rhodococcus opacus B4"],["NCBITaxon%3A1129896","Rhodococcus opacus M213"],["NCBITaxon%3A1219021","Rhodococcus opacus NBRC 100626"],["NCBITaxon%3A543736","Rhodococcus opacus PD630"]]},{"id":"NCBITaxon:38323","l":"Bartonella henselae","na":2,"nb":9,"a":[["Pfam%3APF05662","Coiled stalk of trimeric autotransporter adhesin"],["Pfam%3APF05658","YadA head domain repeat (2 copies)"]],"b":[["NCBITaxon%3A38323","Bartonella henselae"],["NCBITaxon%3A1402979","Bartonella henselae JK 41"],["NCBITaxon%3A1402980","Bartonella henselae JK 42"],["NCBITaxon%3A1402981","Bartonella henselae JK 50"],["NCBITaxon%3A1402982","Bartonella henselae JK 51"],["NCBITaxon%3A1134508","Bartonella henselae JK 53"]]},{"id":"NCBITaxon:39152","l":"Methanococcus maripaludis","na":2,"nb":9,"a":[["Pfam%3APF02571","Precorrin-6x reductase CbiJ/CobK"],["TED%3AAF-A0A7J9PSA9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J9PSA9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39152","Methanococcus maripaludis"],["NCBITaxon%3A402880","Methanococcus maripaludis C5"],["NCBITaxon%3A444158","Methanococcus maripaludis C6"],["NCBITaxon%3A426368","Methanococcus maripaludis C7"],["NCBITaxon%3A637914","Methanococcus maripaludis KA1"],["NCBITaxon%3A637915","Methanococcus maripaludis OS7"]]},{"id":"NCBITaxon:411476","l":"Bacteroides ovatus (strain ATCC 8483 / DSM 1896 / JCM 5824 / BCRC 10623 / CCUG 4943 / NCTC 11153)","na":9,"nb":2,"a":[["Pfam%3APF13004","Putative binding domain, N-terminal"],["Pfam%3APF02927","Cellulase N-terminal ig-like domain"],["Pfam%3APF16355","Domain of unknown function (DUF4982)"],["Pfam%3APF17851","Beta xylosidase C-terminal Concanavalin A-like domain"],["Pfam%3APF18565","Glycoside hydrolase family 2 C-terminal domain 5"],["Pfam%3APF17137","Domain of unknown function (DUF5110)"]],"b":[["NCBITaxon%3A28116","Bacteroides ovatus"],["NCBITaxon%3A411476","Bacteroides ovatus ATCC 8483"]]},{"id":"NCBITaxon:79929","l":"Methanothermobacter marburgensis (strain ATCC BAA-927 / DSM 2133 / JCM 14651 / NBRC 100331 / OCM 82 / Marburg)","na":9,"nb":2,"a":[["Pfam%3APF23902","PRS2 AAA+ lid C-terminal domain"],["Pfam%3APF02754","Cysteine-rich domain"],["Pfam%3APF12798","4Fe-4S binding domain"],["Pfam%3APF13183","4Fe-4S dicluster domain"],["Pfam%3APF22616","HMD N-terminal domain"],["Pfam%3APF03201","H2-forming N5,N10-methylene-tetrahydromethanopterin dehydrogenase"]],"b":[["NCBITaxon%3A145263","Methanothermobacter marburgensis"],["NCBITaxon%3A79929","Methanothermobacter marburgensis str. Marburg"]]},{"id":"NCBITaxon:1655","l":"Actinomyces naeslundii","na":2,"nb":8,"a":[["Pfam%3APF16555","Gram-positive pilin subunit D1, N-terminal domain"],["TED%3AAF-A0A2Z5QNH6-F1-model_v4_TED02","TED novel fold AF-A0A2Z5QNH6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A3050225","Actinomyces acetigenes"],["NCBITaxon%3A544581","Actinomyces johnsonii"],["NCBITaxon%3A1655","Actinomyces naeslundii"],["NCBITaxon%3A240017","Actinomyces naeslundii MG1"],["NCBITaxon%3A1115803","Actinomyces naeslundii str. Howell 279"],["NCBITaxon%3A544580","Actinomyces oris"]]},{"id":"NCBITaxon:1909294","l":"Hyphomicrobiales bacterium","na":8,"nb":2,"a":[["TED%3AAF-A0A2D8YNS6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D8YNS6-F1-model_v4_TED01"],["TED%3AAF-A0A2N6AYA1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N6AYA1-F1-model_v4_TED01"],["TED%3AAF-A0A3C1NDV6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C1NDV6-F1-model_v4_TED01"],["TED%3AAF-A0A431NIF5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A431NIF5-F1-model_v4_TED01"],["TED%3AAF-A0A4Q3HF49-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q3HF49-F1-model_v4_TED01"],["TED%3AAF-A0A2W6AY92-F1-model_v4_TED01","TED novel fold AF-A0A2W6AY92-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1909294","Hyphomicrobiales bacterium"],["NCBITaxon%3A3349849","Hyphomicrobiales bacterium G4i25"]]},{"id":"NCBITaxon:227882","l":"","na":8,"nb":2,"a":[["Pfam%3APF17390","Bacterial alpha-L-rhamnosidase C-terminal domain"],["Pfam%3APF08531","Alpha-L-rhamnosidase N-terminal domain"],["Pfam%3APF05592","Bacterial alpha-L-rhamnosidase concanavalin-like domain"],["Pfam%3APF26366","Domain of unknown function (DUF8094)"],["Pfam%3APF25788","Rha78A-like, N-terminal immunoglobulin domain"],["Pfam%3APF06781","Cell division protein CrgA"]],"b":[["NCBITaxon%3A33903","Streptomyces avermitilis"],["NCBITaxon%3A227882","Streptomyces avermitilis MA-4680 = NBRC 14893"]]},{"id":"NCBITaxon:272557","l":"Aeropyrum pernix (strain ATCC 700893 / DSM 11879 / JCM 9820 / NBRC 100138 / K1)","na":8,"nb":2,"a":[["Pfam%3APF28403","Aconitase X second domain"],["Pfam%3APF28406","Aconitase X third domain"],["Pfam%3APF04412","Aconitase X first domain"],["Pfam%3APF09171","N-glycosylase/DNA lyase"],["Pfam%3APF10432","Bacterial phospho-glucose isomerase C-terminal SIS domain"],["Pfam%3APF09895","RecB-family nuclease (DUF2122)"]],"b":[["NCBITaxon%3A56636","Aeropyrum pernix"],["NCBITaxon%3A272557","Aeropyrum pernix K1"]]},{"id":"NCBITaxon:481805","l":"Escherichia coli (strain ATCC 8739 / DSM 1576 / NBRC 3972 / NCIMB 8545 / WDCM 00012 / Crooks)","na":8,"nb":2,"a":[["Pfam%3APF06392","Acid shock protein"],["Pfam%3APF10807","Domain of unknown function (DUF2541)"],["Pfam%3APF26739","Domain of unknown function (DUF8245)"],["Pfam%3APF18649","EcpB C-terminal domain"],["Pfam%3APF25878","pHBA AAEA subunit, alpha-helical hairpin domain"],["Pfam%3APF02685","Glucokinase"]],"b":[["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A481805","Escherichia coli ATCC 8739"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":2,"nb":8,"a":[["PROSITE%3APS00820","Glucoamylase active site region signature"],["TED%3AAF-A0A7I9G6Y3-F1-model_v4_TED02","TED novel fold AF-A0A7I9G6Y3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A4932","Saccharomyces cerevisiae"],["NCBITaxon%3A1266529","Saccharomyces cerevisiae BY4743"],["NCBITaxon%3A1218710","Saccharomyces cerevisiae CBS 1585"],["NCBITaxon%3A764102","Saccharomyces cerevisiae FostersB"],["NCBITaxon%3A764101","Saccharomyces cerevisiae FostersO"],["NCBITaxon%3A1220494","Saccharomyces cerevisiae PE-2"]]},{"id":"NCBITaxon:572477","l":"Allochromatium vinosum (strain ATCC 17899 / DSM 180 / NBRC 103801 / NCIMB 10441 / D)","na":8,"nb":2,"a":[["Pfam%3APF01322","Cytochrome C'"],["Pfam%3APF02635","DsrE/DsrF-like family"],["Pfam%3APF21706","Sulfide dehydrogenase [flavocytochrome c] flavoprotein chain, central"],["Pfam%3APF09242","Flavocytochrome c sulphide dehydrogenase, flavin-binding"],["Pfam%3APF01355","High potential iron-sulfur protein"],["Pfam%3APF13686","DsrE/DsrF/DrsH-like family"]],"b":[["NCBITaxon%3A1049","Allochromatium vinosum"],["NCBITaxon%3A572477","Allochromatium vinosum DSM 180"]]},{"id":"NCBITaxon:154046","l":"Hungatella hathewayi","na":2,"nb":7,"a":[["TED%3AAF-A0A3E3DRT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3E3DRT8-F1-model_v4_TED01"],["TED%3AAF-A0A174BLS4-F1-model_v4_TED01","TED novel fold AF-A0A174BLS4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A154046","Hungatella hathewayi"],["NCBITaxon%3A999412","Hungatella hathewayi 12489931"],["NCBITaxon%3A1263067","Hungatella hathewayi CAG:224"],["NCBITaxon%3A566550","Hungatella hathewayi DSM 13479"],["NCBITaxon%3A1232440","Hungatella hathewayi VE202-04"],["NCBITaxon%3A1232451","Hungatella hathewayi VE202-11"]]},{"id":"NCBITaxon:1871047","l":"Chryseobacterium sp.","na":7,"nb":2,"a":[["TED%3AAF-A0A2W6XQ62-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W6XQ62-F1-model_v4_TED01"],["TED%3AAF-A0A2W6YLD3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2W6YLD3-F1-model_v4_TED02"],["TED%3AAF-A0A5N7U1L3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5N7U1L3-F1-model_v4_TED01"],["TED%3AAF-A0A3D4JZX5-F1-model_v4_TED04","TED novel fold AF-A0A3D4JZX5-F1-model_v4_TED04"],["TED%3AAF-A0A3N7GZ20-F1-model_v4_TED01","TED novel fold AF-A0A3N7GZ20-F1-model_v4_TED01"],["TED%3AAF-A0A5N7YYR2-F1-model_v4_TED01","TED novel fold AF-A0A5N7YYR2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A651561","Chryseobacterium arthrosphaerae"],["NCBITaxon%3A1871047","Chryseobacterium sp."]]},{"id":"NCBITaxon:262724","l":"Thermus thermophilus (strain ATCC BAA-163 / DSM 7039 / HB27)","na":7,"nb":2,"a":[["Pfam%3APF22474","Argonaute, middle domain"],["Pfam%3APF22472","Argonaute, N-terminal domain"],["Pfam%3APF03449","Transcription elongation factor, N-terminal"],["Pfam%3APF01272","Transcription elongation factor, GreA/GreB, C-term"],["Pfam%3APF09704","CRISPR-associated protein (Cas_Cas5)"],["PROSITE%3APS01224","N-acetyl-gamma-glutamyl-phosphate reductase active site"]],"b":[["NCBITaxon%3A274","Thermus thermophilus"],["NCBITaxon%3A262724","Thermus thermophilus HB27"]]},{"id":"NCBITaxon:273075","l":"Thermoplasma acidophilum (strain ATCC 25905 / DSM 1728 / JCM 9062 / NBRC 15155 / AMRC-C165)","na":7,"nb":2,"a":[["Pfam%3APF17989","Actin like proteins N terminal domain"],["Pfam%3APF10432","Bacterial phospho-glucose isomerase C-terminal SIS domain"],["Pfam%3APF22490","tRNA-splicing endonuclease, linker domain"],["Pfam%3APF22578","Geranylgeranyl reductase catalytic domain"],["Pfam%3APF12831","FAD dependent oxidoreductase"],["Pfam%3APF26550","Tricorn protease second beta propeller domain"]],"b":[["NCBITaxon%3A2303","Thermoplasma acidophilum"],["NCBITaxon%3A273075","Thermoplasma acidophilum DSM 1728"]]},{"id":"NCBITaxon:27334","l":"Penicillium expansum","na":7,"nb":2,"a":[["Pfam%3APF11786","Aft1 HRA domain"],["Pfam%3APF11787","Aft1 HRR domain"],["Pfam%3APF11785","Aft1 osmotic stress response (OSM) domain"],["Pfam%3APF14856","Pathogen effector; putative necrosis-inducing factor"],["PROSITE%3APS00624","GMC oxidoreductases signature 2"],["TED%3AAF-A0A0A2ILJ4-F1-model_v4_TED03","TED novel fold AF-A0A0A2ILJ4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A27334","Penicillium expansum"],["NCBITaxon%3A1208580","Penicillium expansum NRRL 62431"]]},{"id":"NCBITaxon:291644","l":"Bacteroides salyersiae","na":2,"nb":7,"a":[["TED%3AAF-A0A641MFK5-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A641MFK5-F1-model_v4_TED04"],["TED%3AAF-A0A7J4XH39-F1-model_v4_TED02","TED novel fold AF-A0A7J4XH39-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A291644","Bacteroides salyersiae"],["NCBITaxon%3A997887","Bacteroides salyersiae CL02T12C01"],["NCBITaxon%3A1338913","Bacteroides salyersiae TS7.3-1.1"],["NCBITaxon%3A1338914","Bacteroides salyersiae TSDA1.8-1.1"],["NCBITaxon%3A1338915","Bacteroides salyersiae TSDA1.8-1.2"],["NCBITaxon%3A1338916","Bacteroides salyersiae TSDA1.8-1.3"]]},{"id":"NCBITaxon:334771","l":"Ignisphaera aggregans","na":7,"nb":2,"a":[["TED%3AAF-A0A7J2U2H6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J2U2H6-F1-model_v4_TED01"],["TED%3AAF-A0A7J3JN22-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7J3JN22-F1-model_v4_TED02"],["TED%3AAF-A0A7C4D126-F1-model_v4_TED02","TED novel fold AF-A0A7C4D126-F1-model_v4_TED02"],["TED%3AAF-A0A7C4FEF1-F1-model_v4_TED01","TED novel fold AF-A0A7C4FEF1-F1-model_v4_TED01"],["TED%3AAF-A0A7C4JKV5-F1-model_v4_TED02","TED novel fold AF-A0A7C4JKV5-F1-model_v4_TED02"],["TED%3AAF-A0A7J3Z8K0-F1-model_v4_TED01","TED novel fold AF-A0A7J3Z8K0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A334771","Ignisphaera aggregans"],["NCBITaxon%3A583356","Ignisphaera aggregans DSM 17230"]]},{"id":"NCBITaxon:41514","l":"Salmonella arizonae (strain ATCC BAA-731 / CDC346-86 / RSK2980)","na":7,"nb":2,"a":[["Pfam%3APF22102","ElaD/SseL-like C-terminal"],["Pfam%3APF02952","L-fucose isomerase, C-terminal domain"],["Pfam%3APF07881","L-fucose isomerase, first N-terminal domain"],["Pfam%3APF07882","L-fucose isomerase, second N-terminal domain"],["Pfam%3APF25881","YBHG alpha-helical hairpin domain"],["Pfam%3APF10781","Dextransucrase DSRB"]],"b":[["NCBITaxon%3A41514","Salmonella enterica subsp. arizonae serovar 62:z4,z23:-"],["NCBITaxon%3A882884","Salmonella enterica subsp. arizonae serovar 62:z4,z23:- str. RSK2980"]]},{"id":"NCBITaxon:478009","l":"Halobacterium salinarum (strain ATCC 29341 / DSM 671 / R1)","na":7,"nb":2,"a":[["Pfam%3APF01036","Bacteriorhodopsin-like protein"],["Pfam%3APF02895","Signal transducing histidine kinase, homodimeric domain"],["Pfam%3APF04283","Archaeal Chemotaxis signal transduction system protein F"],["Pfam%3APF07311","Dodecin"],["Pfam%3APF03814","Potassium-transporting ATPase A subunit"],["Pfam%3APF18204","PGF-CTERM motif"]],"b":[["NCBITaxon%3A2242","Halobacterium salinarum"],["NCBITaxon%3A478009","Halobacterium salinarum R1"]]},{"id":"NCBITaxon:49338","l":"Desulfitobacterium hafniense","na":2,"nb":7,"a":[["Pfam%3APF13484","4Fe-4S double cluster binding domain"],["Pfam%3APF10518","TAT (twin-arginine translocation) pathway signal sequence"]],"b":[["NCBITaxon%3A49338","Desulfitobacterium hafniense"],["NCBITaxon%3A272564","Desulfitobacterium hafniense DCB-2"],["NCBITaxon%3A537010","Desulfitobacterium hafniense DP7"],["NCBITaxon%3A1090321","Desulfitobacterium hafniense PCP-1"],["NCBITaxon%3A884048","Desulfitobacterium hafniense TCE1"],["NCBITaxon%3A872024","Desulfitobacterium hafniense TCP-A"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":7,"nb":2,"a":[["Pfam%3APF11766","Agglutinin-like protein, N-terminal domain"],["Pfam%3APF16856","Cell division control protein 4 dimerisation domain"],["Pfam%3APF18325","Fatty acid synthase subunit alpha Acyl carrier domain"],["Pfam%3APF18314","Fatty acid synthase type I helical domain"],["Pfam%3APF17828","N-terminal domain in fatty acid synthase subunit beta"],["Pfam%3APF05388","Carboxypeptidase Y pro-peptide"]],"b":[["NCBITaxon%3A5476","Candida albicans"],["NCBITaxon%3A1182531","Candida albicans 3153A"]]},{"id":"NCBITaxon:555778","l":"","na":7,"nb":2,"a":[["Pfam%3APF08936","Carboxysome Shell Carbonic Anhydrase, C-terminal"],["Pfam%3APF20686","Carboxysome Shell Carbonic Anhydrase, catalytic domain"],["Pfam%3APF20687","Carboxysome Shell Carbonic Anhydrase, N-terminal"],["Pfam%3APF12288","Carboxysome shell peptide mid-region"],["Pfam%3APF10070","Probable inorganic carbon transporter subunit DabA"],["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]],"b":[["NCBITaxon%3A927","Halothiobacillus neapolitanus"],["NCBITaxon%3A555778","Halothiobacillus neapolitanus c2"]]},{"id":"NCBITaxon:5580","l":"Aureobasidium pullulans","na":7,"nb":2,"a":[["TED%3AAF-A0A4S8XR15-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S8XR15-F1-model_v4_TED01"],["TED%3AAF-A0A4S8YVB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S8YVB9-F1-model_v4_TED01"],["TED%3AAF-A0A4S9KUA9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S9KUA9-F1-model_v4_TED01"],["TED%3AAF-A0A4T0BHY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4T0BHY6-F1-model_v4_TED01"],["TED%3AAF-A0A4S9MB45-F1-model_v4_TED01","TED novel fold AF-A0A4S9MB45-F1-model_v4_TED01"],["TED%3AAF-A0A4S9RE93-F1-model_v4_TED01","TED novel fold AF-A0A4S9RE93-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5580","Aureobasidium pullulans"],["NCBITaxon%3A1043002","Aureobasidium pullulans EXF-150"]]},{"id":"NCBITaxon:60552","l":"Burkholderia vietnamiensis","na":2,"nb":7,"a":[["TED%3AAF-A0A1G5M5D3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G5M5D3-F1-model_v4_TED02"],["TED%3AAF-A0A2Z6TW79-F1-model_v4_TED01","TED novel fold AF-A0A2Z6TW79-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A292","Burkholderia cepacia"],["NCBITaxon%3A36773","Burkholderia sp."],["NCBITaxon%3A60552","Burkholderia vietnamiensis"],["NCBITaxon%3A269482","Burkholderia vietnamiensis G4"],["NCBITaxon%3A1449978","Burkholderia vietnamiensis LMG 10929"],["NCBITaxon%3A1254","Pediococcus acidilactici"]]},{"id":"NCBITaxon:768679","l":"Thermoproteus tenax (strain ATCC 35583 / DSM 2078 / JCM 9277 / NBRC 100435 / Kra 1)","na":7,"nb":2,"a":[["Pfam%3APF22662","Csa3 CRISPR-associated Rossmann-like domain"],["Pfam%3APF25212","HVO_A0114"],["Pfam%3APF01867","CRISPR associated protein Cas1"],["Pfam%3APF09703","CRISPR-associated protein (Cas_Csa4)"],["Pfam%3APF09827","CRISPR associated protein Cas2"],["Pfam%3APF06023","CRISPR-associated exonuclease Csa1"]],"b":[["NCBITaxon%3A2271","Thermoproteus tenax"],["NCBITaxon%3A768679","Thermoproteus tenax Kra 1"]]},{"id":"NCBITaxon:124","l":"Blastopirellula marina","na":6,"nb":2,"a":[["TED%3AAF-A0A2S8GNX8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S8GNX8-F1-model_v4_TED01"],["TED%3AAF-A0A2S8F9J3-F1-model_v4_TED04","TED novel fold AF-A0A2S8F9J3-F1-model_v4_TED04"],["TED%3AAF-A0A2S8FMN6-F1-model_v4_TED01","TED novel fold AF-A0A2S8FMN6-F1-model_v4_TED01"],["TED%3AAF-A0A2S8GCT5-F1-model_v4_TED02","TED novel fold AF-A0A2S8GCT5-F1-model_v4_TED02"],["TED%3AAF-A0A2S8GL91-F1-model_v4_TED01","TED novel fold AF-A0A2S8GL91-F1-model_v4_TED01"],["TED%3AAF-A0A2S8GLG3-F1-model_v4_TED01","TED novel fold AF-A0A2S8GLG3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A124","Blastopirellula marina"],["NCBITaxon%3A314230","Blastopirellula marina DSM 3645"]]},{"id":"NCBITaxon:1306","l":"Streptococcus sp.","na":6,"nb":2,"a":[["TED%3AAF-A0A496KVG3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A496KVG3-F1-model_v4_TED02"],["TED%3AAF-A0A496KCG7-F1-model_v4_TED01","TED novel fold AF-A0A496KCG7-F1-model_v4_TED01"],["TED%3AAF-A0A496L3I5-F1-model_v4_TED01","TED novel fold AF-A0A496L3I5-F1-model_v4_TED01"],["TED%3AAF-A0A496LB14-F1-model_v4_TED02","TED novel fold AF-A0A496LB14-F1-model_v4_TED02"],["TED%3AAF-A0A496M1E6-F1-model_v4_TED02","TED novel fold AF-A0A496M1E6-F1-model_v4_TED02"],["TED%3AAF-A0A496M2R1-F1-model_v4_TED06","TED novel fold AF-A0A496M2R1-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1306","Streptococcus sp."]]},{"id":"NCBITaxon:135720","l":"Neisseria meningitidis serogroup C","na":2,"nb":6,"a":[["IDPO%3A0000048","limited proteolysis display site"],["Pfam%3APF04480","Protein of unknown function (DUF559)"]],"b":[["NCBITaxon%3A374833","Neisseria meningitidis 053442"],["NCBITaxon%3A604162","Neisseria meningitidis 8013"],["NCBITaxon%3A272831","Neisseria meningitidis FAM18"],["NCBITaxon%3A768485","Neisseria meningitidis K1207"],["NCBITaxon%3A768484","Neisseria meningitidis S0108"],["NCBITaxon%3A135720","Neisseria meningitidis serogroup C"]]},{"id":"NCBITaxon:1430","l":"Bacillus thuringiensis subsp. israelensis","na":6,"nb":2,"a":[["Pfam%3APF01338","Bacillus thuringiensis toxin"],["Pfam%3APF17997","Insecticidal delta-endotoxin CryIA(c) domain 5"],["Pfam%3APF21463","Cry1Ac, domain VII"],["Pfam%3APF03944","delta endotoxin"],["Pfam%3APF03945","delta endotoxin, N-terminal domain"],["Pfam%3APF00555","delta endotoxin"]],"b":[["NCBITaxon%3A1430","Bacillus thuringiensis serovar israelensis"],["NCBITaxon%3A339854","Bacillus thuringiensis serovar israelensis ATCC 35646"]]},{"id":"NCBITaxon:166486","l":"Roseburia intestinalis","na":2,"nb":6,"a":[["TED%3AAF-A0A3R6HE72-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R6HE72-F1-model_v4_TED01"],["TED%3AAF-A0A6L6XJA4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L6XJA4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A166486","Roseburia intestinalis"],["NCBITaxon%3A1263104","Roseburia intestinalis CAG:13"],["NCBITaxon%3A536231","Roseburia intestinalis L1-82"],["NCBITaxon%3A657315","Roseburia intestinalis M50/1"],["NCBITaxon%3A1339593","Roseburia intestinalis TSDC19.2-1.1"],["NCBITaxon%3A718255","Roseburia intestinalis XB6B4"]]},{"id":"NCBITaxon:194439","l":"Chlorobaculum tepidum TLS","na":6,"nb":2,"a":[["Pfam%3APF02327","Bacteriochlorophyll A protein"],["Pfam%3APF27499","CsmB chlorosome envelope protein"],["Pfam%3APF28537","Probable trigger factor, FKBP-like domain"],["Pfam%3APF02043","Bacteriochlorophyll C binding protein"],["Pfam%3APF11098","Chlorosome envelope protein C"],["Pfam%3APF10643","Photosystem P840 reaction-centre cytochrome c-551"]],"b":[["NCBITaxon%3A1097","Chlorobaculum tepidum"],["NCBITaxon%3A194439","Chlorobaculum tepidum TLS"]]},{"id":"NCBITaxon:246787","l":"Bacteroides cellulosilyticus","na":2,"nb":6,"a":[["TED%3AAF-A0A6H9Q0G2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A6H9Q0G2-F1-model_v4_TED03"],["TED%3AAF-A0A642PT16-F1-model_v4_TED01","TED novel fold AF-A0A642PT16-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A246787","Bacteroides cellulosilyticus"],["NCBITaxon%3A1263038","Bacteroides cellulosilyticus CAG:158"],["NCBITaxon%3A997874","Bacteroides cellulosilyticus CL02T12C19"],["NCBITaxon%3A537012","Bacteroides cellulosilyticus DSM 14838"],["NCBITaxon%3A1357381","Bacteroides cellulosilyticus UC1_FAA_J"],["NCBITaxon%3A1268240","Bacteroides cellulosilyticus WH2"]]},{"id":"NCBITaxon:272569","l":"Haloarcula marismortui (strain ATCC 43049 / DSM 3752 / JCM 8966 / VKM B-1809)","na":6,"nb":2,"a":[["Pfam%3APF06847","Archaeal Peptidase A24 C-terminus Type II"],["Pfam%3APF12840","Helix-turn-helix domain"],["PROSITE%3APS01171","Ribosomal protein L21e signature"],["PROSITE%3APS01144","Ribosomal protein L31e signature"],["PROSITE%3APS00580","Ribosomal protein L32e signature"],["PROSITE%3APS01172","Ribosomal protein L44e signature"]],"b":[["NCBITaxon%3A2238","Haloarcula marismortui"],["NCBITaxon%3A272569","Haloarcula marismortui ATCC 43049"]]},{"id":"NCBITaxon:272630","l":"Methylorubrum extorquens (strain ATCC 14718 / DSM 1338 / JCM 2805 / NCIMB 9133 / AM1)","na":6,"nb":2,"a":[["Pfam%3APF07726","ATPase family associated with various cellular activities (AAA)"],["Pfam%3APF02741","FTR, proximal lobe"],["Pfam%3APF01913","Formylmethanofuran-tetrahydromethanopterin formyltransferase"],["Pfam%3APF10677","Protein of unknown function (DUF2490)"],["Pfam%3APF08714","Formaldehyde-activating enzyme (Fae)"],["PROSITE%3APS00363","Bacterial quinoprotein dehydrogenases signature 1"]],"b":[["NCBITaxon%3A408","Methylorubrum extorquens"],["NCBITaxon%3A272630","Methylorubrum extorquens AM1"]]},{"id":"NCBITaxon:273063","l":"Sulfurisphaera tokodaii (strain DSM 16993 / JCM 10545 / NBRC 100140 / 7)","na":6,"nb":2,"a":[["Pfam%3APF01935","Helicase HerA, central domain"],["Pfam%3APF09378","HAS barrel domain"],["Pfam%3APF05872","Helicase HerA-like C-terminal"],["Pfam%3APF08112","ATP synthase epsilon subunit"],["Pfam%3APF05626","Protein of unknown function (DUF790)"],["Pfam%3APF01950","Fructose-1,6-bisphosphatase"]],"b":[["NCBITaxon%3A111955","Sulfurisphaera tokodaii"],["NCBITaxon%3A273063","Sulfurisphaera tokodaii str. 7"]]},{"id":"NCBITaxon:371601","l":"Bacteroides xylanisolvens","na":2,"nb":6,"a":[["TED%3AAF-A0A1H4FUH8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H4FUH8-F1-model_v4_TED02"],["TED%3AAF-A0A415K7P7-F1-model_v4_TED02","TED novel fold AF-A0A415K7P7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A371601","Bacteroides xylanisolvens"],["NCBITaxon%3A997892","Bacteroides xylanisolvens CL03T12C04"],["NCBITaxon%3A702447","Bacteroides xylanisolvens SD CC 1b"],["NCBITaxon%3A702444","Bacteroides xylanisolvens SD CC 2a"],["NCBITaxon%3A1422842","Bacteroides xylanisolvens VIII-271A"],["NCBITaxon%3A657309","Bacteroides xylanisolvens XB1A"]]},{"id":"NCBITaxon:391625","l":"Plesiocystis pacifica SIR-1","na":6,"nb":2,"a":[["TED%3AAF-A6FXI2-F1-model_v4_TED01","TED highly-symmetric fold AF-A6FXI2-F1-model_v4_TED01"],["TED%3AAF-A6G0J0-F1-model_v4_TED01","TED highly-symmetric fold AF-A6G0J0-F1-model_v4_TED01"],["TED%3AAF-A6G9Q2-F1-model_v4_TED01","TED highly-symmetric fold AF-A6G9Q2-F1-model_v4_TED01"],["TED%3AAF-A6G861-F1-model_v4_TED02","TED novel fold AF-A6G861-F1-model_v4_TED02"],["TED%3AAF-A6GGD7-F1-model_v4_TED01","TED novel fold AF-A6GGD7-F1-model_v4_TED01"],["TED%3AAF-A6GI73-F1-model_v4_TED02","TED novel fold AF-A6GI73-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A191768","Plesiocystis pacifica"],["NCBITaxon%3A391625","Plesiocystis pacifica SIR-1"]]},{"id":"NCBITaxon:407148","l":"Campylobacter jejuni subsp. jejuni serotype O:6 (strain 81116 / NCTC 11828)","na":6,"nb":2,"a":[["Pfam%3APF00700","Bacterial flagellin C-terminal helical region"],["Pfam%3APF02561","Flagellar protein FliS"],["Pfam%3APF02623","FliW protein"],["Pfam%3APF00669","Bacterial flagellin N-terminal helical region"],["Pfam%3APF07196","Flagellin hook IN motif"],["PROSITE%3APS00550","Hemerythrin family signature"]],"b":[["NCBITaxon%3A197","Campylobacter jejuni"],["NCBITaxon%3A407148","Campylobacter jejuni subsp. jejuni 81116"]]},{"id":"NCBITaxon:523849","l":"Thermococcus litoralis (strain ATCC 51850 / DSM 5473 / JCM 8560 / NS-C)","na":6,"nb":2,"a":[["Pfam%3APF09094","Alpha-amylase/4-alpha-glucanotransferase, middle domain"],["Pfam%3APF09095","Alpha-amylase/4-alpha-glucanotransferase, C-terminal"],["Pfam%3APF28476","Glycogen phosphorylase C-terminal domain"],["Pfam%3APF11897","Protein of unknown function (DUF3417)"],["PROSITE%3APS01334","Pyrrolidone-carboxylate peptidase cysteine active site"],["PROSITE%3APS01333","Pyrrolidone-carboxylate peptidase glutamic acid active site"]],"b":[["NCBITaxon%3A2265","Thermococcus litoralis"],["NCBITaxon%3A523849","Thermococcus litoralis DSM 5473"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":6,"nb":2,"a":[["IDPO%3A0000037","molecular recognition display site"],["Pfam%3APF05403","Plasmodium histidine-rich protein (HRPII/III)"],["Pfam%3APF17986","EMP3-KAHRP-like N-terminal domain"],["Pfam%3APF03805","Cytoadherence-linked asexual protein"],["Pfam%3APF06589","Circumsporozoite-related antigen (CRA)"],["TED%3AAF-Q9U431-F1-model_v4_TED01","TED novel fold AF-Q9U431-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5833","Plasmodium falciparum"],["NCBITaxon%3A5843","Plasmodium falciparum NF54"]]},{"id":"NCBITaxon:62977","l":"Acinetobacter baylyi (strain ATCC 33305 / BD413 / ADP1)","na":6,"nb":2,"a":[["Pfam%3APF03594","Benzoate membrane transport protein"],["Pfam%3APF27541","Citrate utilization protein B"],["Pfam%3APF05232","Chlorhexidine efflux transporter"],["PROSITE%3APS00083","Intradiol ring-cleavage dioxygenases signature"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"],["Pfam%3APF11846","Virulence factor membrane-bound polymerase, C-terminal"]],"b":[["NCBITaxon%3A202950","Acinetobacter baylyi"],["NCBITaxon%3A62977","Acinetobacter baylyi ADP1"]]},{"id":"NCBITaxon:873","l":"Desulfocurvibacter africanus","na":2,"nb":6,"a":[["Pfam%3APF02085","Class III cytochrome C family"],["Pfam%3APF10371","Domain of unknown function"]],"b":[["NCBITaxon%3A873","Desulfocurvibacter africanus"],["NCBITaxon%3A1262666","Desulfocurvibacter africanus PCS"],["NCBITaxon%3A1511600","Desulfocurvibacter africanus subsp. africanus"],["NCBITaxon%3A1121435","Desulfocurvibacter africanus subsp. africanus DSM 2603"],["NCBITaxon%3A690850","Desulfocurvibacter africanus subsp. africanus str. Walvis Bay"],["NCBITaxon%3A1511599","Desulfocurvibacter africanus subsp. uniflagellum"]]},{"id":"NCBITaxon:888064","l":"Enterococcus italicus (strain DSM 15952 / CCUG 50447 / LMG 22039 / TP 1.5)","na":6,"nb":2,"a":[["Pfam%3APF22206","CRISPR-associated protein Csm6 6H domain"],["Pfam%3APF22208","Cas_Csm6 CARF domain"],["Pfam%3APF09659","Cas_Csm6 HEPN domain"],["Pfam%3APF18211","Csm1 subunit domain B"],["Pfam%3APF17953","CRISPR Csm4 C-terminal domain"],["Pfam%3APF03750","Csm2 Type III-A"]],"b":[["NCBITaxon%3A246144","Enterococcus italicus"],["NCBITaxon%3A888064","Enterococcus italicus DSM 15952"]]},{"id":"NCBITaxon:1356854","l":"Alicyclobacillus acidoterrestris (strain ATCC 49025 / DSM 3922 / CIP 106132 / NCIMB 13137 / GD3B)","na":5,"nb":2,"a":[["Pfam%3APF22202","CRISPR-associated endonuclease C2c1 first helical domain"],["Pfam%3APF22172","CRISPR-associated endonuclease C2c1 second helical domain"],["Pfam%3APF22077","CRISPR-associated endonuclease C2c1 Nuc-II domain"],["Pfam%3APF22126","C2c1 CRISPR-Cas endonuclease, RuvC-like domain"],["Pfam%3APF22204","CRISPR-associated endonuclease C2c1, wedge domain, second region"]],"b":[["NCBITaxon%3A1450","Alicyclobacillus acidoterrestris"],["NCBITaxon%3A1356854","Alicyclobacillus acidoterrestris ATCC 49025"]]},{"id":"NCBITaxon:155077","l":"Cellvibrio japonicus","na":5,"nb":2,"a":[["Pfam%3APF02013","Cellulose or protein binding domain"],["Pfam%3APF03426","Carbohydrate binding domain (family 15)"],["Pfam%3APF16841","Ca-dependent carbohydrate-binding module xylan-binding"],["Pfam%3APF00331","Glycosyl hydrolase family 10"],["PROSITE%3APS00591","Glycosyl hydrolases family 10 (GH10) active site"]],"b":[["NCBITaxon%3A155077","Cellvibrio japonicus"],["NCBITaxon%3A498211","Cellvibrio japonicus Ueda107"]]},{"id":"NCBITaxon:169435","l":"Anaerotruncus colihominis","na":5,"nb":2,"a":[["TED%3AAF-A0A174TWH9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A174TWH9-F1-model_v4_TED03"],["TED%3AAF-A0A174V310-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A174V310-F1-model_v4_TED01"],["TED%3AAF-A0A174PYH3-F1-model_v4_TED02","TED novel fold AF-A0A174PYH3-F1-model_v4_TED02"],["TED%3AAF-A0A845QNC0-F1-model_v4_TED01","TED novel fold AF-A0A845QNC0-F1-model_v4_TED01"],["TED%3AAF-A0A845SWY0-F1-model_v4_TED01","TED novel fold AF-A0A845SWY0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A169435","Anaerotruncus colihominis"],["NCBITaxon%3A445972","Anaerotruncus colihominis DSM 17241"]]},{"id":"NCBITaxon:1731","l":"Peptoclostridium acidaminophilum","na":5,"nb":2,"a":[["Pfam%3APF07355","Glycine/sarcosine/betaine reductase selenoprotein B (GRDB)"],["Pfam%3APF19364","Family of unknown function (DUF5940)"],["Pfam%3APF02504","Fatty acid synthesis protein"],["Pfam%3APF09338","Glycine/sarcosine/betaine reductase component B subunits"],["Pfam%3APF04723","Glycine reductase complex selenoprotein A"]],"b":[["NCBITaxon%3A1731","Peptoclostridium acidaminophilum"],["NCBITaxon%3A1286171","Peptoclostridium acidaminophilum DSM 3953"]]},{"id":"NCBITaxon:1736314","l":"Leifsonia sp. Leaf264","na":5,"nb":2,"a":[["TED%3AAF-A0A0S9KEE9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S9KEE9-F1-model_v4_TED01"],["TED%3AAF-A0A0S9KEK1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S9KEK1-F1-model_v4_TED01"],["TED%3AAF-A0A0S9KEW3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S9KEW3-F1-model_v4_TED01"],["TED%3AAF-A0A0S9KDG5-F1-model_v4_TED01","TED novel fold AF-A0A0S9KDG5-F1-model_v4_TED01"],["TED%3AAF-A0A0S9KNQ4-F1-model_v4_TED01","TED novel fold AF-A0A0S9KNQ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1870902","Leifsonia sp."],["NCBITaxon%3A1736314","Leifsonia sp. Leaf264"]]},{"id":"NCBITaxon:176279","l":"Staphylococcus epidermidis (strain ATCC 35984 / DSM 28319 / BCRC 17069 / CCUG 31568 / BM 3577 / RP62A)","na":5,"nb":2,"a":[["Pfam%3APF07564","Domain of Unknown Function (DUF1542)"],["Pfam%3APF12008","Type I restriction and modification enzyme - subunit R C terminal"],["Pfam%3APF28494","Glycyl-tRNA synthetase insertion domain 1"],["Pfam%3APF04464","CDP-Glycerol:Poly(glycerophosphate) glycerophosphotransferase"],["Pfam%3APF27790","Poly-beta-1,6-N-acetyl-D-glucosamine synthesis protein IcaD"]],"b":[["NCBITaxon%3A1282","Staphylococcus epidermidis"],["NCBITaxon%3A176279","Staphylococcus epidermidis RP62A"]]},{"id":"NCBITaxon:2026792","l":"Spirochaetales bacterium","na":5,"nb":2,"a":[["TED%3AAF-A0A7X6TBI9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X6TBI9-F1-model_v4_TED01"],["TED%3AAF-A0A7X8XJX1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X8XJX1-F1-model_v4_TED01"],["TED%3AAF-A0A7Y3J1T5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y3J1T5-F1-model_v4_TED01"],["TED%3AAF-A0A7C1T0J9-F1-model_v4_TED03","TED novel fold AF-A0A7C1T0J9-F1-model_v4_TED03"],["TED%3AAF-A0A7V5DXE1-F1-model_v4_TED01","TED novel fold AF-A0A7V5DXE1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026792","Spirochaetales bacterium"],["NCBITaxon%3A2828656","Thermospira aquatica"]]},{"id":"NCBITaxon:2718","l":"Cardiobacterium hominis","na":2,"nb":5,"a":[["TED%3AAF-A0A1C3H4F2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C3H4F2-F1-model_v4_TED01"],["TED%3AAF-A0A1C3H5Q4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C3H5Q4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A35814","Bordetella holmesii"],["NCBITaxon%3A1247649","Bordetella holmesii ATCC 51541"],["NCBITaxon%3A2718","Cardiobacterium hominis"],["NCBITaxon%3A638300","Cardiobacterium hominis ATCC 15826"],["NCBITaxon%3A194702","Cardiobacterium valvarum"]]},{"id":"NCBITaxon:272558","l":"Halalkalibacterium halodurans (strain ATCC BAA-125 / DSM 18197 / FERM 7344 / JCM 9153 / C-125)","na":5,"nb":2,"a":[["Pfam%3APF22184","Carbohydrate binding module family 56"],["Pfam%3APF22769","dCTP deaminase-like"],["Pfam%3APF18438","Glycosyl hydrolases family 38 C-terminal domain 1"],["Pfam%3APF09827","CRISPR associated protein Cas2"],["Pfam%3APF01270","Glycosyl hydrolases family 8"]],"b":[["NCBITaxon%3A86665","Halalkalibacterium halodurans"],["NCBITaxon%3A272558","Halalkalibacterium halodurans C-125"]]},{"id":"NCBITaxon:2751","l":"Carnobacterium maltaromaticum","na":2,"nb":5,"a":[["Pfam%3APF09221","Bacteriocin class IId cyclical uberolysin-like"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"]],"b":[["NCBITaxon%3A2751","Carnobacterium maltaromaticum"],["NCBITaxon%3A1255596","Carnobacterium maltaromaticum 38b"],["NCBITaxon%3A1087479","Carnobacterium maltaromaticum ATCC 35586"],["NCBITaxon%3A1449341","Carnobacterium maltaromaticum DSM 20342"],["NCBITaxon%3A1234679","Carnobacterium maltaromaticum LMA28"]]},{"id":"NCBITaxon:288705","l":"Renibacterium salmoninarum (strain ATCC 33209 / DSM 20767 / JCM 11484 / NBRC 15589 / NCIMB 2235)","na":5,"nb":2,"a":[["Pfam%3APF18080","Galactose mutarotase-like fold domain"],["Pfam%3APF17974","Galactose-binding domain-like"],["Pfam%3APF21466","Endo-alpha-N-acetylgalactosaminidase, domain 5"],["Pfam%3APF17451","Glycosyl hydrolase 101 beta sandwich domain"],["Pfam%3APF12905","Endo-alpha-N-acetylgalactosaminidase"]],"b":[["NCBITaxon%3A1646","Renibacterium salmoninarum"],["NCBITaxon%3A288705","Renibacterium salmoninarum ATCC 33209"]]},{"id":"NCBITaxon:3039","l":"Euglena gracilis","na":5,"nb":2,"a":[["Pfam%3APF01333","Apocytochrome F, C-terminal"],["Pfam%3APF16639","Apocytochrome F, N-terminal"],["Pfam%3APF04940","Sensors of blue-light using FAD"],["Pfam%3APF10371","Domain of unknown function"],["PROSITE%3APS00938","Initiation factor 3 signature"]],"b":[["NCBITaxon%3A3039","Euglena gracilis"],["NCBITaxon%3A158060","Euglena gracilis var. bacillaris"]]},{"id":"NCBITaxon:317025","l":"Hydrogenovibrio crunogenus (strain DSM 25203 / XCL-2)","na":5,"nb":2,"a":[["Pfam%3APF08936","Carboxysome Shell Carbonic Anhydrase, C-terminal"],["Pfam%3APF20686","Carboxysome Shell Carbonic Anhydrase, catalytic domain"],["Pfam%3APF20687","Carboxysome Shell Carbonic Anhydrase, N-terminal"],["Pfam%3APF12288","Carboxysome shell peptide mid-region"],["Pfam%3APF10070","Probable inorganic carbon transporter subunit DabA"]],"b":[["NCBITaxon%3A39765","Hydrogenovibrio crunogenus"],["NCBITaxon%3A317025","Hydrogenovibrio crunogenus XCL-2"]]},{"id":"NCBITaxon:318","l":"Pseudomonas savastanoi pv. glycinea","na":2,"nb":5,"a":[["Pfam%3APF05394","Avirulence protein"],["TED%3AAF-A0A3M5VJX5-F1-model_v4_TED01","TED novel fold AF-A0A3M5VJX5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29438","Pseudomonas savastanoi"],["NCBITaxon%3A318","Pseudomonas savastanoi pv. glycinea"],["NCBITaxon%3A875329","Pseudomonas savastanoi pv. glycinea str. B076"],["NCBITaxon%3A875330","Pseudomonas savastanoi pv. glycinea str. race 4"],["NCBITaxon%3A317","Pseudomonas syringae"]]},{"id":"NCBITaxon:324602","l":"Chloroflexus aurantiacus (strain ATCC 29366 / DSM 635 / J-10-fl)","na":5,"nb":2,"a":[["Pfam%3APF00127","Copper binding proteins, plastocyanin/azurin family"],["Pfam%3APF02276","Photosynthetic reaction centre cytochrome C subunit"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["PROSITE%3APS00196","Type-1 copper (blue) proteins signature"],["PROSITE%3APS00648","Bacterial ribonuclease P protein component signature"]],"b":[["NCBITaxon%3A1108","Chloroflexus aurantiacus"],["NCBITaxon%3A324602","Chloroflexus aurantiacus J-10-fl"]]},{"id":"NCBITaxon:349747","l":"Yersinia pseudotuberculosis serotype O:1b (strain IP 31758)","na":5,"nb":2,"a":[["Pfam%3APF09012","FeoC like transcriptional regulator"],["Pfam%3APF13413","Helix-turn-helix domain"],["Pfam%3APF07429","4-alpha-L-fucosyltransferase glycosyl transferase group 56"],["Pfam%3APF24996","N-acetylneuraminate epimerase"],["Pfam%3APF17874","MalT-like TPR region"]],"b":[["NCBITaxon%3A633","Yersinia pseudotuberculosis"],["NCBITaxon%3A349747","Yersinia pseudotuberculosis IP 31758"]]},{"id":"NCBITaxon:38313","l":"Shewanella algae","na":2,"nb":5,"a":[["TED%3AAF-A0A1S2T8W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S2T8W3-F1-model_v4_TED01"],["TED%3AAF-A0A8A5EFG1-F1-model_v4_TED02","TED novel fold AF-A0A8A5EFG1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A38313","Shewanella algae"],["NCBITaxon%3A1331670","Shewanella algae ACDC"],["NCBITaxon%3A1236541","Shewanella algae JCM 14758"],["NCBITaxon%3A1236544","Shewanella algae JCM 21037 = NBRC 103173"],["NCBITaxon%3A24","Shewanella putrefaciens"]]},{"id":"NCBITaxon:410359","l":"Pyrobaculum calidifontis (strain DSM 21063 / JCM 11548 / VA1)","na":5,"nb":2,"a":[["Pfam%3APF18653","Arcadin 1"],["Pfam%3APF01930","Domain of unknown function DUF83"],["PROSITE%3APS00895","3-hydroxyisobutyrate dehydrogenase signature"],["TED%3AAF-A3MU28-F1-model_v4_TED02","TED highly-symmetric fold AF-A3MU28-F1-model_v4_TED02"],["TED%3AAF-A3MXY3-F1-model_v4_TED01","TED highly-symmetric fold AF-A3MXY3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A181486","Pyrobaculum calidifontis"],["NCBITaxon%3A410359","Pyrobaculum calidifontis JCM 11548"]]},{"id":"NCBITaxon:436","l":"Novacetimonas hansenii","na":2,"nb":5,"a":[["Pfam%3APF03170","Cellulose synthase BcsB, first CBM domain"],["Pfam%3APF17040","Cellulose-complementing protein A"]],"b":[["NCBITaxon%3A28448","Komagataeibacter xylinus"],["NCBITaxon%3A436","Novacetimonas hansenii"],["NCBITaxon%3A714995","Novacetimonas hansenii ATCC 23769"],["NCBITaxon%3A1231352","Novacetimonas hansenii JCM 7643"],["NCBITaxon%3A1307933","Novacetimonas hansenii NRIC 0243"]]},{"id":"NCBITaxon:43658","l":"Pseudoalteromonas rubra","na":5,"nb":2,"a":[["proteintraitsmech%3AELIFE109154_Orn_monoox","Metallophore-associated ornithine N5-monooxygenase family"],["TED%3AAF-A0A0F4QZE1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0F4QZE1-F1-model_v4_TED02"],["TED%3AAF-A0A0U3GWJ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0U3GWJ2-F1-model_v4_TED01"],["TED%3AAF-A0A0F4QSG0-F1-model_v4_TED02","TED novel fold AF-A0A0F4QSG0-F1-model_v4_TED02"],["TED%3AAF-A0A0L0EPH9-F1-model_v4_TED03","TED novel fold AF-A0A0L0EPH9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A43658","Pseudoalteromonas rubra"],["NCBITaxon%3A1117318","Pseudoalteromonas rubra DSM 6842"]]},{"id":"NCBITaxon:439481","l":"Aciduliprofundum boonei (strain DSM 19572 / T469)","na":5,"nb":2,"a":[["Pfam%3APF12671","Putative amidase domain"],["PROSITE%3APS00953","Glycosyl hydrolases family 25 active site signature"],["TED%3AAF-D3TBP7-F1-model_v4_TED01","TED highly-symmetric fold AF-D3TBP7-F1-model_v4_TED01"],["TED%3AAF-B5IH98-F1-model_v4_TED01","TED novel fold AF-B5IH98-F1-model_v4_TED01"],["TED%3AAF-B5IHB9-F1-model_v4_TED01","TED novel fold AF-B5IHB9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A439481","Aciduliprofundum boonei T469"],["NCBITaxon%3A379547","Candidatus Aciduliprofundum boonei"]]},{"id":"NCBITaxon:525146","l":"Desulfovibrio desulfuricans (strain ATCC 27774 / DSM 6949 / MB)","na":5,"nb":2,"a":[["Pfam%3APF06397","Desulfoferrodoxin, N-terminal domain"],["Pfam%3APF09719","Putative redox-active protein (C_GCAxxG_C_C)"],["PROSITE%3APS00202","Rubredoxin signature"],["TED%3AAF-B8J1U9-F1-model_v4_TED02","TED highly-symmetric fold AF-B8J1U9-F1-model_v4_TED02"],["TED%3AAF-B8J2X7-F1-model_v4_TED01","TED novel fold AF-B8J2X7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A876","Desulfovibrio desulfuricans"],["NCBITaxon%3A525146","Desulfovibrio desulfuricans ATCC 27774"]]},{"id":"NCBITaxon:536","l":"Chromobacterium violaceum","na":2,"nb":5,"a":[["TED%3AAF-A0A381EUD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A381EUD6-F1-model_v4_TED01"],["TED%3AAF-A0A447THJ9-F1-model_v4_TED01","TED novel fold AF-A0A447THJ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1382803","Chromobacterium amazonense"],["NCBITaxon%3A686831","Chromobacterium piscinae"],["NCBITaxon%3A3055134","Chromobacterium sp. CCUG 30098"],["NCBITaxon%3A536","Chromobacterium violaceum"],["NCBITaxon%3A243365","Chromobacterium violaceum ATCC 12472"]]},{"id":"NCBITaxon:5478","l":"Nakaseomyces glabratus","na":2,"nb":5,"a":[["TED%3AAF-A0A0W0D8W7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0W0D8W7-F1-model_v4_TED02"],["TED%3AAF-A0A0W0D4K9-F1-model_v4_TED02","TED novel fold AF-A0A0W0D4K9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A5478","Nakaseomyces glabratus"],["NCBITaxon%3A1231519","Nakaseomyces glabratus CAB52-4041"],["NCBITaxon%3A1406948","Nakaseomyces glabratus CCTCC M202019"],["NCBITaxon%3A1398155","Nakaseomyces glabratus M202019"],["NCBITaxon%3A1403403","Nakaseomyces glabratus UOB301"]]},{"id":"NCBITaxon:553611","l":"Photobacterium leiognathi","na":2,"nb":5,"a":[["TED%3AAF-A0A2G4WQ25-F1-model_v4_TED01","TED novel fold AF-A0A2G4WQ25-F1-model_v4_TED01"],["TED%3AAF-A0A2G4WRI7-F1-model_v4_TED01","TED novel fold AF-A0A2G4WRI7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A553611","Photobacterium leiognathi"],["NCBITaxon%3A1248232","Photobacterium leiognathi lrivu.4.1"],["NCBITaxon%3A658","Photobacterium leiognathi subsp. leiognathi"],["NCBITaxon%3A48408","Photobacterium leiognathi subsp. mandapamensis"],["NCBITaxon%3A1001530","Photobacterium leiognathi subsp. mandapamensis svers.1.1."]]},{"id":"NCBITaxon:627192","l":"Sphingobium sp. (strain NBRC 103272 / SYK-6)","na":5,"nb":2,"a":[["Pfam%3APF04909","Amidohydrolase"],["Pfam%3APF22041","Glutathione S-transferase, C-terminal domain"],["Pfam%3APF19301","LigXa C-terminal domain like"],["Pfam%3APF07746","Aromatic-ring-opening dioxygenase LigAB, LigA subunit"],["TED%3AAF-G2IS43-F1-model_v4_TED01","TED highly-symmetric fold AF-G2IS43-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1113922","Sphingobium sp. NBRC 103272"],["NCBITaxon%3A627192","Sphingobium sp. SYK-6"]]},{"id":"NCBITaxon:76114","l":"Aromatoleum aromaticum (strain DSM 19018 / LMG 30748 / EbN1)","na":5,"nb":2,"a":[["Pfam%3APF08882","Acetone carboxylase gamma subunit"],["Pfam%3APF19278","Hydantoinase/oxoprolinase C-terminal domain"],["Pfam%3APF05378","Hydantoinase/oxoprolinase N-terminal region"],["Pfam%3APF01968","Hydantoinase/oxoprolinase"],["Pfam%3APF02538","Hydantoinase B/oxoprolinase"]],"b":[["NCBITaxon%3A551760","Aromatoleum aromaticum"],["NCBITaxon%3A76114","Aromatoleum aromaticum EbN1"]]},{"id":"NCBITaxon:953739","l":"Streptomyces venezuelae ATCC 10712","na":5,"nb":2,"a":[["Pfam%3APF11583","P-aminobenzoate N-oxygenase AurF"],["Pfam%3APF18456","Diiron non-heme beta-hydroxylase N-terminal domain"],["Pfam%3APF07931","Chloramphenicol phosphotransferase-like protein"],["Pfam%3APF02650","WhiA C-terminal HTH domain"],["Pfam%3APF14527","WhiA LAGLIDADG-like domain"]],"b":[["NCBITaxon%3A54571","Streptomyces venezuelae"],["NCBITaxon%3A953739","Streptomyces venezuelae ATCC 10712"]]},{"id":"NCBITaxon:1079","l":"Blastochloris viridis","na":4,"nb":2,"a":[["Pfam%3APF00556","Antenna complex alpha/beta subunit"],["Pfam%3APF02276","Photosynthetic reaction centre cytochrome C subunit"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["TED%3AAF-A0A0H5BDG4-F1-model_v4_TED01","TED novel fold AF-A0A0H5BDG4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A50712","Blastochloris sulfoviridis"],["NCBITaxon%3A1079","Blastochloris viridis"]]},{"id":"NCBITaxon:1098","l":"Prosthecochloris vibrioformis","na":4,"nb":2,"a":[["Pfam%3APF17886","HSP20-like domain found in ArsA"],["Pfam%3APF27499","CsmB chlorosome envelope protein"],["Pfam%3APF11098","Chlorosome envelope protein C"],["Pfam%3APF10643","Photosystem P840 reaction-centre cytochrome c-551"]],"b":[["NCBITaxon%3A1098","Prosthecochloris vibrioformis"],["NCBITaxon%3A115853","Prosthecochloris vibrioformis f. thiosulfatophilum"]]},{"id":"NCBITaxon:1115803","l":"Actinomyces naeslundii (strain ATCC 12104 / DSM 43013 / CCUG 2238 / JCM 8349 / NCTC 10301 / Howell 279)","na":4,"nb":2,"a":[["Pfam%3APF18470","Cas9 alpha-helical lobe domain"],["Pfam%3APF17893","CRISPR-associated endonuclease Cas9 beta-hairpin domain"],["Pfam%3APF18525","Cas9 C-terminal domain"],["Pfam%3APF17894","Topo homolgy domain in CRISPR-associated endonuclease Cas9"]],"b":[["NCBITaxon%3A1655","Actinomyces naeslundii"],["NCBITaxon%3A1115803","Actinomyces naeslundii str. Howell 279"]]},{"id":"NCBITaxon:122587","l":"Neisseria meningitidis serogroup A / serotype 4A (strain DSM 15465 / Z2491)","na":4,"nb":2,"a":[["Pfam%3APF17850","CysA C-terminal regulatory domain"],["Pfam%3APF22443","FbpC-like, regulatory domain"],["Pfam%3APF05159","Capsule polysaccharide biosynthesis protein"],["Pfam%3APF10077","Uncharacterized protein conserved in bacteria (DUF2314)"]],"b":[["NCBITaxon%3A487","Neisseria meningitidis"],["NCBITaxon%3A122587","Neisseria meningitidis Z2491"]]},{"id":"NCBITaxon:1249","l":"Weissella paramesenteroides","na":2,"nb":4,"a":[["Pfam%3APF01874","ATP:dephospho-CoA triphosphoribosyl transferase"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"]],"b":[["NCBITaxon%3A1930076","Leuconostoc sp."],["NCBITaxon%3A46256","Weissella hellenica"],["NCBITaxon%3A1249","Weissella paramesenteroides"],["NCBITaxon%3A585506","Weissella paramesenteroides ATCC 33313"]]},{"id":"NCBITaxon:1343","l":"Streptococcus vestibularis","na":2,"nb":4,"a":[["TED%3AAF-A0A448A888-F1-model_v4_TED01","TED novel fold AF-A0A448A888-F1-model_v4_TED01"],["TED%3AAF-A0A564T3Y1-F1-model_v4_TED01","TED novel fold AF-A0A564T3Y1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1304","Streptococcus salivarius"],["NCBITaxon%3A1343","Streptococcus vestibularis"],["NCBITaxon%3A889206","Streptococcus vestibularis ATCC 49124"],["NCBITaxon%3A904306","Streptococcus vestibularis F0396"]]},{"id":"NCBITaxon:1401","l":"Paenibacillus lautus","na":4,"nb":2,"a":[["Pfam%3APF18448","Carbohydrate binding domain"],["Pfam%3APF12891","Glycoside hydrolase family 44"],["TED%3AAF-A0A328VZ83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A328VZ83-F1-model_v4_TED01"],["TED%3AAF-A0A385TU82-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A385TU82-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1401","Paenibacillus lautus"],["NCBITaxon%3A1349780","Paenibacillus lautus NBRC 15380"]]},{"id":"NCBITaxon:1451","l":"Paenibacillus amylolyticus","na":4,"nb":2,"a":[["Pfam%3APF03211","Pectate lyase"],["TED%3AAF-A0A117I1X0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A117I1X0-F1-model_v4_TED01"],["TED%3AAF-A0A1R1DDF3-F1-model_v4_TED01","TED novel fold AF-A0A1R1DDF3-F1-model_v4_TED01"],["TED%3AAF-A0A4V3B7H8-F1-model_v4_TED01","TED novel fold AF-A0A4V3B7H8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1451","Paenibacillus amylolyticus"],["NCBITaxon%3A59846","Paenibacillus chibensis"]]},{"id":"NCBITaxon:164546","l":"Cupriavidus taiwanensis","na":2,"nb":4,"a":[["TED%3AAF-A0A375CFL3-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A375CFL3-F1-model_v4_TED04"],["TED%3AAF-A0A375EJW3-F1-model_v4_TED03","TED novel fold AF-A0A375EJW3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A164546","Cupriavidus taiwanensis"],["NCBITaxon%3A977880","Cupriavidus taiwanensis LMG 19424"],["NCBITaxon%3A1040978","Cupriavidus taiwanensis STM 6018"],["NCBITaxon%3A129578","Oceanimonas baumannii"]]},{"id":"NCBITaxon:183417","l":"Proteus hauseri","na":2,"nb":4,"a":[["Pfam%3APF09225","Restriction endonuclease PvuII"],["PROSITE%3APS00093","N-4 cytosine-specific DNA methylases signature"]],"b":[["NCBITaxon%3A183417","Proteus hauseri"],["NCBITaxon%3A1255589","Proteus hauseri 1M10"],["NCBITaxon%3A1354271","Proteus hauseri ATCC 700826"],["NCBITaxon%3A1312367","Proteus hauseri ZMd44"]]},{"id":"NCBITaxon:187145","l":"Caldithrix abyssi","na":4,"nb":2,"a":[["TED%3AAF-A0A7V4WUZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V4WUZ6-F1-model_v4_TED01"],["TED%3AAF-A0A7V5UE99-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V5UE99-F1-model_v4_TED01"],["TED%3AAF-A0A7V5PPC6-F1-model_v4_TED04","TED novel fold AF-A0A7V5PPC6-F1-model_v4_TED04"],["TED%3AAF-A0A7V5RQL1-F1-model_v4_TED02","TED novel fold AF-A0A7V5RQL1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A187145","Caldithrix abyssi"],["NCBITaxon%3A880073","Caldithrix abyssi DSM 13497"]]},{"id":"NCBITaxon:207559","l":"Oleidesulfovibrio alaskensis (strain ATCC BAA-1058 / DSM 17464 / G20)","na":4,"nb":2,"a":[["Pfam%3APF13353","4Fe-4S single cluster domain"],["Pfam%3APF01228","Glycine radical"],["PROSITE%3APS00850","Glycine radical domain signature"],["PROSITE%3APS01087","Radical activating enzymes signature"]],"b":[["NCBITaxon%3A58180","Oleidesulfovibrio alaskensis"],["NCBITaxon%3A207559","Oleidesulfovibrio alaskensis G20"]]},{"id":"NCBITaxon:2094","l":"Mycoplasmopsis arginini","na":2,"nb":4,"a":[["TED%3AAF-A0A0C6G6F9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0C6G6F9-F1-model_v4_TED01"],["TED%3AAF-A0A449BG36-F1-model_v4_TED02","TED novel fold AF-A0A449BG36-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2094","Mycoplasmopsis arginini"],["NCBITaxon%3A1188236","Mycoplasmopsis arginini 7264"],["NCBITaxon%3A1266999","Mycoplasmopsis arginini ATCC 23838"],["NCBITaxon%3A2899417","Mycoplasmopsis arginini QMP CG1-2758"]]},{"id":"NCBITaxon:2186","l":"Methanothermococcus thermolithotrophicus","na":2,"nb":4,"a":[["Pfam%3APF22616","HMD N-terminal domain"],["Pfam%3APF03201","H2-forming N5,N10-methylene-tetrahydromethanopterin dehydrogenase"]],"b":[["NCBITaxon%3A2186","Methanothermococcus thermolithotrophicus"],["NCBITaxon%3A523845","Methanothermococcus thermolithotrophicus DSM 2095"],["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A316","Stutzerimonas stutzeri"]]},{"id":"NCBITaxon:223926","l":"Vibrio parahaemolyticus serotype O3:K6 (strain RIMD 2210633)","na":4,"nb":2,"a":[["Pfam%3APF05232","Chlorhexidine efflux transporter"],["Pfam%3APF12221","Bacterial membrane protein N terminal"],["PROSITE%3APS01307","Flagellar motor protein motA family signature"],["Pfam%3APF10952","Protein of unknown function (DUF2753)"]],"b":[["NCBITaxon%3A670","Vibrio parahaemolyticus"],["NCBITaxon%3A223926","Vibrio parahaemolyticus RIMD 2210633"]]},{"id":"NCBITaxon:226900","l":"","na":4,"nb":2,"a":[["IDPO%3A0000060","self-assembly"],["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF14436","Bacterial EndoU nuclease"],["Pfam%3APF10803","Spore germination GerPB"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A226900","Bacillus cereus ATCC 14579"]]},{"id":"NCBITaxon:252970","l":"Paraburkholderia phenoliruptrix","na":2,"nb":4,"a":[["TED%3AAF-A0A6J5BF93-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6J5BF93-F1-model_v4_TED01"],["TED%3AAF-A0A6J5BWX8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6J5BWX8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A252970","Paraburkholderia phenoliruptrix"],["NCBITaxon%3A1337996","Paraburkholderia phenoliruptrix AC1100"],["NCBITaxon%3A1229205","Paraburkholderia phenoliruptrix BR3459a"],["NCBITaxon%3A1926495","Paraburkholderia sp."]]},{"id":"NCBITaxon:266265","l":"","na":4,"nb":2,"a":[["Pfam%3APF09290","Prokaryotic acetaldehyde dehydrogenase, dimerisation"],["Pfam%3APF04345","Chorismate lyase"],["Pfam%3APF07836","DmpG-like communication domain"],["Pfam%3APF06139","BphX-like"]],"b":[["NCBITaxon%3A36873","Paraburkholderia xenovorans"],["NCBITaxon%3A266265","Paraburkholderia xenovorans LB400"]]},{"id":"NCBITaxon:269796","l":"Rhodospirillum rubrum (strain ATCC 11170 / ATH 1.1.1 / DSM 467 / LMG 4362 / NCIMB 8255 / S1)","na":4,"nb":2,"a":[["Pfam%3APF24931","ACR9-like, ACT-like domain"],["Pfam%3APF20543","N2-fixation sustaining protein CowN"],["Pfam%3APF22277","EncFtn-like"],["TED%3AAF-Q2RML2-F1-model_v4_TED01","TED highly-symmetric fold AF-Q2RML2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1085","Rhodospirillum rubrum"],["NCBITaxon%3A269796","Rhodospirillum rubrum ATCC 11170"]]},{"id":"NCBITaxon:272563","l":"Clostridioides difficile (strain 630)","na":4,"nb":2,"a":[["Pfam%3APF07737","Anthrax toxin lethal factor, N- and C-terminal domain"],["Pfam%3APF11155","Domain of unknown function (DUF2935)"],["Pfam%3APF06249","Ethanolamine utilisation protein EutQ"],["Pfam%3APF12544","Lysine-2,3-aminomutase"]],"b":[["NCBITaxon%3A1496","Clostridioides difficile"],["NCBITaxon%3A272563","Clostridioides difficile 630"]]},{"id":"NCBITaxon:2748","l":"Carnobacterium divergens","na":2,"nb":4,"a":[["TED%3AAF-A0A7Z8CZ16-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Z8CZ16-F1-model_v4_TED02"],["TED%3AAF-A0A5F0MGI8-F1-model_v4_TED01","TED novel fold AF-A0A5F0MGI8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2748","Carnobacterium divergens"],["NCBITaxon%3A1449336","Carnobacterium divergens DSM 20623"],["NCBITaxon%3A2751","Carnobacterium maltaromaticum"],["NCBITaxon%3A1579","Lactobacillus acidophilus"]]},{"id":"NCBITaxon:28087","l":"Legionella sainthelensi","na":2,"nb":4,"a":[["TED%3AAF-A0A3S4I5M7-F1-model_v4_TED01","TED novel fold AF-A0A3S4I5M7-F1-model_v4_TED01"],["TED%3AAF-A0A447STS7-F1-model_v4_TED04","TED novel fold AF-A0A447STS7-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A28087","Legionella sainthelensi"],["NCBITaxon%3A1408445","Legionella sainthelensi ATCC 35248 = DSM 19231"],["NCBITaxon%3A3413801","Legionella sainthelensi serogroup 1"],["NCBITaxon%3A66962","Legionella sainthelensi serogroup 2"]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":2,"nb":4,"a":[["Pfam%3APF21252","Glycosyl hydrolase 109, C-terminal domain"],["TED%3AAF-A0A3P1YJQ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3P1YJQ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28112","Tannerella forsythia"],["NCBITaxon%3A1307832","Tannerella forsythia 3313"],["NCBITaxon%3A203275","Tannerella forsythia 92A2"],["NCBITaxon%3A1307833","Tannerella forsythia KS16"]]},{"id":"NCBITaxon:28130","l":"Prevotella disiens","na":2,"nb":4,"a":[["TED%3AAF-A0A379E001-F1-model_v4_TED01","TED novel fold AF-A0A379E001-F1-model_v4_TED01"],["TED%3AAF-A0A3E4QAE1-F1-model_v4_TED01","TED novel fold AF-A0A3E4QAE1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28130","Prevotella disiens"],["NCBITaxon%3A1401075","Prevotella disiens DNF00882"],["NCBITaxon%3A866771","Prevotella disiens FB035-09AN"],["NCBITaxon%3A1235811","Prevotella disiens JCM 6334 = ATCC 29426"]]},{"id":"NCBITaxon:28214","l":"Sphingomonas sp.","na":4,"nb":2,"a":[["Pfam%3APF11723","Homotrimeric ring hydroxylase"],["Pfam%3APF07364","Metallopeptidase family M81"],["TED%3AAF-A0A525HJK0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A525HJK0-F1-model_v4_TED02"],["TED%3AAF-A0A520ITV0-F1-model_v4_TED02","TED novel fold AF-A0A520ITV0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A28214","Sphingomonas sp."],["NCBITaxon%3A1888892","Sphingomonas turrisvirgatae"]]},{"id":"NCBITaxon:290398","l":"","na":4,"nb":2,"a":[["Pfam%3APF20629","D-galactarate/Altronate dehydratase, C-terminal"],["Pfam%3APF04295","D-galactarate dehydratase/Altronate hydrolase, second domain"],["Pfam%3APF11982","Domain of unknown function (DUF3483)"],["PROSITE%3APS00908","Mandelate racemase / muconate lactonizing enzyme family signature 1"]],"b":[["NCBITaxon%3A141390","Chromohalobacter israelensis"],["NCBITaxon%3A290398","Chromohalobacter israelensis DSM 3043"]]},{"id":"NCBITaxon:29491","l":"Aeromonas salmonicida subsp. salmonicida","na":2,"nb":4,"a":[["TED%3AAF-A0A189PGR3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A189PGR3-F1-model_v4_TED01"],["TED%3AAF-A0A0F6QDS7-F1-model_v4_TED02","TED novel fold AF-A0A0F6QDS7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A645","Aeromonas salmonicida"],["NCBITaxon%3A29491","Aeromonas salmonicida subsp. salmonicida"],["NCBITaxon%3A1076135","Aeromonas salmonicida subsp. salmonicida 01-B526"],["NCBITaxon%3A382245","Aeromonas salmonicida subsp. salmonicida A449"]]},{"id":"NCBITaxon:326423","l":"Bacillus velezensis FZB42","na":4,"nb":2,"a":[["Pfam%3APF21607","[Acyl-carrier-protein] S-malonyltransferase, inserted helical domain"],["Pfam%3APF21996","Histidyl-tRNA synthetase HisZ, C-terminal domain"],["Pfam%3APF07293","Protein of unknown function (DUF1450)"],["Pfam%3APF12227","Protein of unknown function (DUF3603)"]],"b":[["NCBITaxon%3A492670","Bacillus velezensis"],["NCBITaxon%3A326423","Bacillus velezensis FZB42"]]},{"id":"NCBITaxon:33025","l":"Phascolarctobacterium faecium","na":2,"nb":4,"a":[["TED%3AAF-A0A7X2XEV4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X2XEV4-F1-model_v4_TED01"],["TED%3AAF-A0A7X2XFG3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7X2XFG3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A33025","Phascolarctobacterium faecium"],["NCBITaxon%3A1357408","Phascolarctobacterium faecium 4_1_13G"],["NCBITaxon%3A1122957","Phascolarctobacterium faecium DSM 14760"],["NCBITaxon%3A1357409","Phascolarctobacterium faecium UC1_BHI_D"]]},{"id":"NCBITaxon:334542","l":"Rhodococcus qingshengii","na":2,"nb":4,"a":[["Pfam%3APF08028","Acyl-CoA dehydrogenase, C-terminal domain"],["TED%3AAF-A0A069J8A7-F1-model_v4_TED01","TED novel fold AF-A0A069J8A7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1833","Rhodococcus erythropolis"],["NCBITaxon%3A334542","Rhodococcus qingshengii"],["NCBITaxon%3A1278077","Rhodococcus qingshengii BKS 20-40"],["NCBITaxon%3A1303681","Rhodococcus qingshengii JCM 15477"]]},{"id":"NCBITaxon:342451","l":"Staphylococcus saprophyticus subsp. saprophyticus (strain ATCC 15305 / DSM 20229 / NCIMB 8711 / NCTC 7292 / S-41)","na":4,"nb":2,"a":[["Pfam%3APF18719","ArlS sensor domain"],["Pfam%3APF08406","CbbQ/NirQ/NorQ C-terminal"],["Pfam%3APF06103","Bacterial protein of unknown function (DUF948)"],["Pfam%3APF04313","Type I restriction enzyme R protein N terminus (HSDR_N)"]],"b":[["NCBITaxon%3A29385","Staphylococcus saprophyticus"],["NCBITaxon%3A342451","Staphylococcus saprophyticus subsp. saprophyticus ATCC 15305 = NCTC 7292"]]},{"id":"NCBITaxon:349307","l":"","na":4,"nb":2,"a":[["Pfam%3APF06973","Domain of unknown function (DUF1297)"],["Pfam%3APF07826","IMP cyclohydrolase-like protein"],["Pfam%3APF06849","Protein of unknown function (DUF1246)"],["Pfam%3APF08714","Formaldehyde-activating enzyme (Fae)"]],"b":[["NCBITaxon%3A2224","Methanothrix thermoacetophila"],["NCBITaxon%3A349307","Methanothrix thermoacetophila PT"]]},{"id":"NCBITaxon:351160","l":"Methanocella arvoryzae (strain DSM 22066 / NBRC 105507 / MRE50)","na":4,"nb":2,"a":[["Pfam%3APF11842","Domain of unknown function (DUF3362)"],["Pfam%3APF04475","Protein of unknown function (DUF555)"],["Pfam%3APF08714","Formaldehyde-activating enzyme (Fae)"],["TED%3AAF-Q0W3F7-F1-model_v4_TED01","TED highly-symmetric fold AF-Q0W3F7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1175445","Methanocella arvoryzae"],["NCBITaxon%3A351160","Methanocella arvoryzae MRE50"]]},{"id":"NCBITaxon:386043","l":"Listeria welshimeri serovar 6b (strain ATCC 35897 / DSM 20650 / CCUG 15529 / CIP 8149 / NCTC 11857 / SLCC 5334 / V8)","na":4,"nb":2,"a":[["Pfam%3APF27467","ATP-dependent helicase/deoxyribonuclease AddB fifth domain"],["Pfam%3APF06569","Protein of unknown function (DUF1128)"],["Pfam%3APF05636","HIGH Nucleotidyl Transferase"],["Pfam%3APF01430","Hsp33 protein"]],"b":[["NCBITaxon%3A1643","Listeria welshimeri"],["NCBITaxon%3A386043","Listeria welshimeri serovar 6b str. SLCC5334"]]},{"id":"NCBITaxon:398","l":"","na":2,"nb":4,"a":[["Pfam%3APF26956","ACR family N-terminal ACT domain"],["TED%3AAF-A0A329Y2T7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A329Y2T7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29450","Martinezella leucaenae"],["NCBITaxon%3A398","Martinezella tropici"],["NCBITaxon%3A1041147","Rhizobium leucaenae USDA 9039"],["NCBITaxon%3A698761","Rhizobium tropici CIAT 899"]]},{"id":"NCBITaxon:398512","l":"Pseudobacteroides cellulosolvens ATCC 35603 = DSM 2933","na":4,"nb":2,"a":[["TED%3AAF-A0A0L6JH99-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0L6JH99-F1-model_v4_TED01"],["TED%3AAF-A0A0L6JIG6-F1-model_v4_TED01","TED novel fold AF-A0A0L6JIG6-F1-model_v4_TED01"],["TED%3AAF-A0A0L6JK72-F1-model_v4_TED01","TED novel fold AF-A0A0L6JK72-F1-model_v4_TED01"],["TED%3AAF-A0A0L6JU00-F1-model_v4_TED01","TED novel fold AF-A0A0L6JU00-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A35825","Pseudobacteroides cellulosolvens"],["NCBITaxon%3A398512","Pseudobacteroides cellulosolvens ATCC 35603 = DSM 2933"]]},{"id":"NCBITaxon:400946","l":"Wohlfahrtiimonas chitiniclastica","na":2,"nb":4,"a":[["TED%3AAF-A0A256BUL6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A256BUL6-F1-model_v4_TED01"],["TED%3AAF-A0A256BUL6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A256BUL6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A472","Acinetobacter sp."],["NCBITaxon%3A400946","Wohlfahrtiimonas chitiniclastica"],["NCBITaxon%3A1123502","Wohlfahrtiimonas chitiniclastica DSM 18708"],["NCBITaxon%3A1261130","Wohlfahrtiimonas chitiniclastica SH04"]]},{"id":"NCBITaxon:406327","l":"","na":4,"nb":2,"a":[["Pfam%3APF06787","FeGP cofactor biosynthesis protein HcgF"],["Pfam%3APF04476","4-HFC-P synthase"],["Pfam%3APF27030","AbpE bacteria"],["Pfam%3APF09840","Uncharacterized protein conserved in archaea (DUF2067)"]],"b":[["NCBITaxon%3A2187","Methanococcus vannielii"],["NCBITaxon%3A406327","Methanococcus vannielii SB"]]},{"id":"NCBITaxon:410358","l":"Methanocorpusculum labreanum (strain ATCC 43576 / DSM 4855 / Z)","na":4,"nb":2,"a":[["Pfam%3APF27030","AbpE bacteria"],["Pfam%3APF01864","CDP-archaeol synthase"],["Pfam%3APF01891","Cobalt uptake substrate-specific transmembrane region"],["TED%3AAF-A2SPH3-F1-model_v4_TED02","TED highly-symmetric fold AF-A2SPH3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A83984","Methanocorpusculum labreanum"],["NCBITaxon%3A410358","Methanocorpusculum labreanum Z"]]},{"id":"NCBITaxon:418127","l":"Staphylococcus aureus (strain Mu3 / ATCC 700698)","na":4,"nb":2,"a":[["Pfam%3APF07564","Domain of Unknown Function (DUF1542)"],["Pfam%3APF01468","GA module"],["Pfam%3APF04647","Accessory gene regulator B"],["Pfam%3APF11858","Domain of unknown function (DUF3378)"]],"b":[["NCBITaxon%3A1280","Staphylococcus aureus"],["NCBITaxon%3A418127","Staphylococcus aureus subsp. aureus Mu3"]]},{"id":"NCBITaxon:43","l":"Cystobacter fuscus","na":4,"nb":2,"a":[["TED%3AAF-A0A250J1A4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J1A4-F1-model_v4_TED01"],["TED%3AAF-A0A250J4G5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J4G5-F1-model_v4_TED01"],["TED%3AAF-A0A250J8W0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J8W0-F1-model_v4_TED01"],["TED%3AAF-A0A250J3K5-F1-model_v4_TED03","TED novel fold AF-A0A250J3K5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A43","Cystobacter fuscus"],["NCBITaxon%3A1242864","Cystobacter fuscus DSM 2262"]]},{"id":"NCBITaxon:435591","l":"Parabacteroides distasonis (strain ATCC 8503 / DSM 20701 / CIP 104284 / JCM 5825 / NCTC 11152)","na":4,"nb":2,"a":[["Pfam%3APF21489","Fimbrium tip subunit Fim1C-like, C-terminal domain"],["Pfam%3APF22449","Fim1F, C-terminal domain"],["Pfam%3APF14229","Domain of unknown function (DUF4332)"],["Pfam%3APF10091","Putative glucoamylase"]],"b":[["NCBITaxon%3A823","Parabacteroides distasonis"],["NCBITaxon%3A435591","Parabacteroides distasonis ATCC 8503"]]},{"id":"NCBITaxon:438753","l":"Azorhizobium caulinodans ORS 571","na":4,"nb":2,"a":[["Pfam%3APF27389","AZC_3924"],["Pfam%3APF09663","Amidohydrolase ring-opening protein (Amido_AtzD_TrzD)"],["PROSITE%3APS01349","Nodulation protein nodA signature"],["PROSITE%3APS00647","Thymidine and pyrimidine-nucleoside phosphorylases signature"]],"b":[["NCBITaxon%3A7","Azorhizobium caulinodans"],["NCBITaxon%3A438753","Azorhizobium caulinodans ORS 571"]]},{"id":"NCBITaxon:439375","l":"Brucella anthropi (strain ATCC 49188 / DSM 6882 / CCUG 24695 / JCM 21032 / LMG 3331 / NBRC 15819 / NCTC 12168 / Alc 37)","na":4,"nb":2,"a":[["Pfam%3APF25839","D-apionate lactonase, C-terminal immunoglobulin-like domain"],["Pfam%3APF25838","D-apionate lactonase, TIM barrel domain"],["Pfam%3APF25837","D-apionate lactonase, N-terminal domain"],["Pfam%3APF10073","GapR-like, DNA-binding domain"]],"b":[["NCBITaxon%3A529","Brucella anthropi"],["NCBITaxon%3A439375","Brucella anthropi ATCC 49188"]]},{"id":"NCBITaxon:452863","l":"Pseudarthrobacter chlorophenolicus (strain ATCC 700700 / DSM 12829 / CIP 107037 / JCM 12360 / KCTC 9906 / NCIMB 13794 / A6)","na":4,"nb":2,"a":[["TED%3AAF-B8HI43-F1-model_v4_TED02","TED highly-symmetric fold AF-B8HI43-F1-model_v4_TED02"],["TED%3AAF-B8HIA6-F1-model_v4_TED01","TED highly-symmetric fold AF-B8HIA6-F1-model_v4_TED01"],["TED%3AAF-B8HIQ6-F1-model_v4_TED02","TED highly-symmetric fold AF-B8HIQ6-F1-model_v4_TED02"],["TED%3AAF-B8HHK3-F1-model_v4_TED01","TED novel fold AF-B8HHK3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A85085","Pseudarthrobacter chlorophenolicus"],["NCBITaxon%3A452863","Pseudarthrobacter chlorophenolicus A6"]]},{"id":"NCBITaxon:476","l":"Moraxella bovis","na":2,"nb":4,"a":[["Pfam%3APF04556","DpnII restriction endonuclease"],["TED%3AAF-A0A1S9ZVN5-F1-model_v4_TED01","TED novel fold AF-A0A1S9ZVN5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A476","Moraxella bovis"],["NCBITaxon%3A387425","Moraxella bovis Epp63"],["NCBITaxon%3A386891","Moraxella bovoculi"],["NCBITaxon%3A60442","Moraxella equi"]]},{"id":"NCBITaxon:485913","l":"Ktedonobacter racemifer DSM 44963","na":4,"nb":2,"a":[["TED%3AAF-D6U145-F1-model_v4_TED01","TED highly-symmetric fold AF-D6U145-F1-model_v4_TED01"],["TED%3AAF-D6U380-F1-model_v4_TED01","TED highly-symmetric fold AF-D6U380-F1-model_v4_TED01"],["TED%3AAF-D6TNQ7-F1-model_v4_TED02","TED novel fold AF-D6TNQ7-F1-model_v4_TED02"],["TED%3AAF-D6U8N4-F1-model_v4_TED02","TED novel fold AF-D6U8N4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A363277","Ktedonobacter racemifer"],["NCBITaxon%3A485913","Ktedonobacter racemifer DSM 44963"]]},{"id":"NCBITaxon:485917","l":"Pedobacter heparinus (strain ATCC 13125 / DSM 2366 / CIP 104194 / JCM 7457 / NBRC 12017 / NCIMB 9290 / NRRL B-14731 / HIM 762-3)","na":4,"nb":2,"a":[["Pfam%3APF07940","Heparinase II/III-like, C-terminal"],["Pfam%3APF18675","Heparinase II C-terminal domain"],["Pfam%3APF14592","Chondroitinase B"],["Pfam%3APF16889","Heparinase II/III N-terminus"]],"b":[["NCBITaxon%3A984","Pedobacter heparinus"],["NCBITaxon%3A485917","Pedobacter heparinus DSM 2366"]]},{"id":"NCBITaxon:499177","l":"Acetoanaerobium sticklandii (strain ATCC 12662 / DSM 519 / JCM 1433 / CCUG 9281 / NCIMB 10654 / HF)","na":4,"nb":2,"a":[["Pfam%3APF26370","L-erythro-3,5-diaminohexanoate dehydrogenase N-terminal domain"],["Pfam%3APF09338","Glycine/sarcosine/betaine reductase component B subunits"],["Pfam%3APF04723","Glycine reductase complex selenoprotein A"],["TED%3AAF-E3PW30-F1-model_v4_TED02","TED highly-symmetric fold AF-E3PW30-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1511","Acetoanaerobium sticklandii"],["NCBITaxon%3A499177","Acetoanaerobium sticklandii DSM 519"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":4,"nb":2,"a":[["Pfam%3APF11720","Peptidase inhibitor I78 family"],["Pfam%3APF12296","Hydrophobic surface binding protein A"],["TED%3AAF-A0A3M7JGA1-F1-model_v4_TED02","TED novel fold AF-A0A3M7JGA1-F1-model_v4_TED02"],["TED%3AAF-A0A7G5JNS3-F1-model_v4_TED03","TED novel fold AF-A0A7G5JNS3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A5059","Aspergillus flavus"],["NCBITaxon%3A332952","Aspergillus flavus NRRL3357"]]},{"id":"NCBITaxon:523848","l":"Saccharolobus shibatae (strain ATCC 51178 / DSM 5389 / JCM 8931 / NBRC 15437 / B12)","na":4,"nb":2,"a":[["IDPO%3A0000003","molten globule"],["Pfam%3APF02294","7kD DNA-binding domain"],["Pfam%3APF21133","CCA-adding enzyme, C-terminal domain"],["Pfam%3APF11520","Chromatin protein Cren7"]],"b":[["NCBITaxon%3A2286","Saccharolobus shibatae"],["NCBITaxon%3A523848","Saccharolobus shibatae B12"]]},{"id":"NCBITaxon:5671","l":"Leishmania infantum","na":4,"nb":2,"a":[["Pfam%3APF03037","Kinetoplastid membrane protein 11"],["TED%3AAF-A0A6L0XLP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L0XLP7-F1-model_v4_TED01"],["TED%3AAF-A4HWI8-F1-model_v4_TED01","TED novel fold AF-A4HWI8-F1-model_v4_TED01"],["TED%3AAF-A4HWZ8-F1-model_v4_TED01","TED novel fold AF-A4HWZ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5671","Leishmania infantum"],["NCBITaxon%3A435258","Leishmania infantum JPCM5"]]},{"id":"NCBITaxon:5741","l":"Giardia intestinalis","na":4,"nb":2,"a":[["Pfam%3APF22293","Annexin E1, fourth repeat"],["Pfam%3APF17529","Family of unknown function (DUF5450)"],["TED%3AAF-V6TFM4-F1-model_v4_TED01","TED novel fold AF-V6TFM4-F1-model_v4_TED01"],["TED%3AAF-V6TNW5-F1-model_v4_TED02","TED novel fold AF-V6TNW5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A5741","Giardia duodenalis"],["NCBITaxon%3A598745","Giardia duodenalis ATCC 50581"]]},{"id":"NCBITaxon:577","l":"Klebsiella terrigena","na":2,"nb":4,"a":[["TED%3AAF-A0A485AWY7-F1-model_v4_TED01","TED novel fold AF-A0A485AWY7-F1-model_v4_TED01"],["TED%3AAF-A0A4U9DC68-F1-model_v4_TED02","TED novel fold AF-A0A4U9DC68-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A577","Klebsiella terrigena"],["NCBITaxon%3A1354274","Klebsiella terrigena ATCC 33257"],["NCBITaxon%3A1255696","Klebsiella terrigena Pi19"]]},{"id":"NCBITaxon:5802","l":"Eimeria tenella","na":4,"nb":2,"a":[["TED%3AAF-U6KRF5-F1-model_v4_TED01","TED highly-symmetric fold AF-U6KRF5-F1-model_v4_TED01"],["TED%3AAF-H9BA61-F1-model_v4_TED01","TED novel fold AF-H9BA61-F1-model_v4_TED01"],["TED%3AAF-H9BA71-F1-model_v4_TED01","TED novel fold AF-H9BA71-F1-model_v4_TED01"],["TED%3AAF-U6KGN9-F1-model_v4_TED03","TED novel fold AF-U6KGN9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A5802","Eimeria tenella"],["NCBITaxon%3A413949","Eimeria tenella strain Houghton"]]},{"id":"NCBITaxon:58291","l":"Rhizopus microsporus","na":2,"nb":4,"a":[["TED%3AAF-A0A1X0RNA5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1X0RNA5-F1-model_v4_TED03"],["TED%3AAF-A0A1X0S5N4-F1-model_v4_TED01","TED novel fold AF-A0A1X0S5N4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A58291","Rhizopus microsporus"],["NCBITaxon%3A4843","Rhizopus microsporus var. chinensis"],["NCBITaxon%3A86635","Rhizopus microsporus var. microsporus"],["NCBITaxon%3A4847","Rhizopus microsporus var. oligosporus"]]},{"id":"NCBITaxon:5850","l":"Plasmodium knowlesi","na":4,"nb":2,"a":[["Pfam%3APF12361","Duffy-antigen binding protein"],["Pfam%3APF05424","Duffy binding domain"],["Pfam%3APF12377","Duffy binding protein N terminal"],["Pfam%3APF11556","Erythrocyte binding antigen 175"]],"b":[["NCBITaxon%3A5850","Plasmodium knowlesi"],["NCBITaxon%3A5851","Plasmodium knowlesi strain H"]]},{"id":"NCBITaxon:61646","l":"Lelliottia amnigena","na":2,"nb":4,"a":[["Pfam%3APF17425","Arylsulfotransferase Ig-like domain"],["Pfam%3APF05935","Arylsulfotransferase (ASST)"]],"b":[["NCBITaxon%3A61646","Lelliottia amnigena"],["NCBITaxon%3A1439331","Lelliottia amnigena CHS 78"],["NCBITaxon%3A1255644","Lelliottia amnigena CV9"],["NCBITaxon%3A1219085","Lelliottia amnigena NBRC 105700"]]},{"id":"NCBITaxon:66219","l":"Lachnoclostridium phytofermentans","na":2,"nb":4,"a":[["TED%3AAF-A0A3D2X3U8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D2X3U8-F1-model_v4_TED01"],["TED%3AAF-A0A3D2X6Y1-F1-model_v4_TED04","TED novel fold AF-A0A3D2X6Y1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A66219","Lachnoclostridium phytofermentans"],["NCBITaxon%3A357809","Lachnoclostridium phytofermentans ISDg"],["NCBITaxon%3A1458471","Lachnoclostridium phytofermentans KNHs212"],["NCBITaxon%3A1458468","Lachnoclostridium phytofermentans KNHs2132"]]},{"id":"NCBITaxon:702114","l":"Methylomonas koyamae","na":4,"nb":2,"a":[["TED%3AAF-A0A291IJ28-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A291IJ28-F1-model_v4_TED01"],["TED%3AAF-A0A177N3K8-F1-model_v4_TED02","TED novel fold AF-A0A177N3K8-F1-model_v4_TED02"],["TED%3AAF-A0A177N3P2-F1-model_v4_TED04","TED novel fold AF-A0A177N3P2-F1-model_v4_TED04"],["TED%3AAF-A0A177NN90-F1-model_v4_TED01","TED novel fold AF-A0A177NN90-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A702114","Methylomonas koyamae"],["NCBITaxon%3A1294261","Methylomonas koyamae JCM 16701"]]},{"id":"NCBITaxon:80876","l":"Insolitispirillum peregrinum","na":2,"nb":4,"a":[["TED%3AAF-A0A1N7NQ08-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1N7NQ08-F1-model_v4_TED01"],["TED%3AAF-A0A1N7PDB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1N7PDB9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A80876","Insolitispirillum peregrinum"],["NCBITaxon%3A180200","Insolitispirillum peregrinum subsp. integrum"],["NCBITaxon%3A1122127","Insolitispirillum peregrinum subsp. integrum DSM 11589"],["NCBITaxon%3A180201","Insolitispirillum peregrinum subsp. peregrinum"]]},{"id":"NCBITaxon:971","l":"Pseudoselenomonas ruminantium","na":2,"nb":4,"a":[["TED%3AAF-A0A1H0QI16-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H0QI16-F1-model_v4_TED02"],["TED%3AAF-A0A1I6XHL5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I6XHL5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A971","Pseudoselenomonas ruminantium"],["NCBITaxon%3A1392501","Selenomonas ruminantium AC2024"],["NCBITaxon%3A114196","Selenomonas ruminantium subsp. ruminantium"],["NCBITaxon%3A1280706","Selenomonas ruminantium subsp. ruminantium ATCC 12561"]]},{"id":"NCBITaxon:1003195","l":"","na":3,"nb":2,"a":[["Pfam%3APF23169","Halogenase D"],["Pfam%3APF02655","ATP-grasp domain"],["Pfam%3APF14518","Iron-containing redox enzyme"]],"b":[["NCBITaxon%3A29303","Streptantibioticus cattleyicolor"],["NCBITaxon%3A1003195","Streptantibioticus cattleyicolor NRRL 8057 = DSM 46488"]]},{"id":"NCBITaxon:1019","l":"Capnocytophaga sputigena","na":2,"nb":3,"a":[["TED%3AAF-A0A3S4WAY3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S4WAY3-F1-model_v4_TED01"],["TED%3AAF-A0A2A3N675-F1-model_v4_TED02","TED novel fold AF-A0A2A3N675-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1019","Capnocytophaga sputigena"],["NCBITaxon%3A553177","Capnocytophaga sputigena ATCC 33612"],["NCBITaxon%3A1073354","Capnocytophaga sputigena CC21_001D"]]},{"id":"NCBITaxon:1069201","l":"Aspergillus luchuensis","na":2,"nb":3,"a":[["PROSITE%3APS00820","Glucoamylase active site region signature"],["TED%3AAF-A0A7R7WRP2-F1-model_v4_TED01","TED novel fold AF-A0A7R7WRP2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1069201","Aspergillus luchuensis"],["NCBITaxon%3A1137211","Aspergillus luchuensis CBS 106.47"],["NCBITaxon%3A1033177","Aspergillus luchuensis IFO 4308"]]},{"id":"NCBITaxon:1078020","l":"Mycolicibacterium thermoresistibile (strain ATCC 19527 / DSM 44167 / CIP 105390 / JCM 6362 / NCTC 10409 / 316)","na":3,"nb":2,"a":[["Pfam%3APF12867","DinB superfamily"],["TED%3AAF-G7CBF7-F1-model_v4_TED02","TED novel fold AF-G7CBF7-F1-model_v4_TED02"],["TED%3AAF-G7CLC7-F1-model_v4_TED01","TED novel fold AF-G7CLC7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797","Mycolicibacterium thermoresistibile"],["NCBITaxon%3A1078020","Mycolicibacterium thermoresistibile ATCC 19527"]]},{"id":"NCBITaxon:1090322","l":"Methanolobus tindarius DSM 2278","na":3,"nb":2,"a":[["TED%3AAF-W9DQM0-F1-model_v4_TED03","TED highly-symmetric fold AF-W9DQM0-F1-model_v4_TED03"],["TED%3AAF-W9DMY0-F1-model_v4_TED01","TED novel fold AF-W9DMY0-F1-model_v4_TED01"],["TED%3AAF-W9DNB8-F1-model_v4_TED01","TED novel fold AF-W9DNB8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2221","Methanolobus tindarius"],["NCBITaxon%3A1090322","Methanolobus tindarius DSM 2278"]]},{"id":"NCBITaxon:1121335","l":"Thermoclostridium stercorarium (strain ATCC 35414 / DSM 8532 / NCIMB 11754)","na":2,"nb":3,"a":[["Pfam%3APF03442","Carbohydrate binding domain X2"],["TED%3AAF-L7VJJ5-F1-model_v4_TED02","TED highly-symmetric fold AF-L7VJJ5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1510","Thermoclostridium stercorarium"],["NCBITaxon%3A160845","Thermoclostridium stercorarium subsp. stercorarium"],["NCBITaxon%3A1121335","Thermoclostridium stercorarium subsp. stercorarium DSM 8532"]]},{"id":"NCBITaxon:1122961","l":"","na":3,"nb":2,"a":[["Pfam%3APF22578","Geranylgeranyl reductase catalytic domain"],["Pfam%3APF04038","Dihydroneopterin aldolase"],["Pfam%3APF16912","Glucose dehydrogenase C-terminus"]],"b":[["NCBITaxon%3A46632","Picrophilus oshimae"],["NCBITaxon%3A1122961","Picrophilus oshimae DSM 9789"]]},{"id":"NCBITaxon:1125972","l":"Amycolatopsis alba DSM 44262","na":3,"nb":2,"a":[["TED%3AAF-A0A229R958-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A229R958-F1-model_v4_TED01"],["TED%3AAF-A0A229REG9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A229REG9-F1-model_v4_TED01"],["TED%3AAF-A0A229RFD1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A229RFD1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A76020","Amycolatopsis alba"],["NCBITaxon%3A1125972","Amycolatopsis alba DSM 44262"]]},{"id":"NCBITaxon:114","l":"Gemmata obscuriglobus","na":3,"nb":2,"a":[["TED%3AAF-A0A2Z3H719-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z3H719-F1-model_v4_TED01"],["TED%3AAF-A0A2Z3H7W0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z3H7W0-F1-model_v4_TED01"],["TED%3AAF-A0A2Z3GTM0-F1-model_v4_TED04","TED novel fold AF-A0A2Z3GTM0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A114","Gemmata obscuriglobus"],["NCBITaxon%3A214688","Gemmata obscuriglobus UQM 2246"]]},{"id":"NCBITaxon:1166950","l":"Candidatus Thiodictyon syntrophicum","na":3,"nb":2,"a":[["TED%3AAF-A0A2K8UAD6-F1-model_v4_TED03","TED novel fold AF-A0A2K8UAD6-F1-model_v4_TED03"],["TED%3AAF-A0A2K8UBL3-F1-model_v4_TED02","TED novel fold AF-A0A2K8UBL3-F1-model_v4_TED02"],["TED%3AAF-A0A2K8UHY2-F1-model_v4_TED01","TED novel fold AF-A0A2K8UHY2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1166950","Candidatus Thiodictyon syntrophicum"],["NCBITaxon%3A572262","Candidatus Thiodictyon syntrophicum str. Cad16"]]},{"id":"NCBITaxon:1192034","l":"Chondromyces apiculatus DSM 436","na":3,"nb":2,"a":[["TED%3AAF-A0A017T755-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A017T755-F1-model_v4_TED01"],["TED%3AAF-A0A017SVV4-F1-model_v4_TED01","TED novel fold AF-A0A017SVV4-F1-model_v4_TED01"],["TED%3AAF-A0A017T5R3-F1-model_v4_TED03","TED novel fold AF-A0A017T5R3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A51","Chondromyces apiculatus"],["NCBITaxon%3A1192034","Chondromyces apiculatus DSM 436"]]},{"id":"NCBITaxon:1203610","l":"Parabacteroides gordonii MS-1 = DSM 23371","na":3,"nb":2,"a":[["TED%3AAF-A0A0F5JCJ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F5JCJ0-F1-model_v4_TED01"],["TED%3AAF-A0A0F5JIU1-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A0F5JIU1-F1-model_v4_TED05"],["TED%3AAF-A0A0F5JIU1-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A0F5JIU1-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A574930","Parabacteroides gordonii"],["NCBITaxon%3A1203610","Parabacteroides gordonii MS-1 = DSM 23371"]]},{"id":"NCBITaxon:1219077","l":"Vibrio azureus NBRC 104587","na":3,"nb":2,"a":[["TED%3AAF-U3ANH8-F1-model_v4_TED01","TED highly-symmetric fold AF-U3ANH8-F1-model_v4_TED01"],["TED%3AAF-U3CG72-F1-model_v4_TED04","TED highly-symmetric fold AF-U3CG72-F1-model_v4_TED04"],["TED%3AAF-U3AN91-F1-model_v4_TED01","TED novel fold AF-U3AN91-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A512649","Vibrio azureus"],["NCBITaxon%3A1219077","Vibrio azureus NBRC 104587"]]},{"id":"NCBITaxon:1265738","l":"Rhodopirellula maiorica SM1","na":2,"nb":3,"a":[["TED%3AAF-M5RME8-F1-model_v4_TED01","TED novel fold AF-M5RME8-F1-model_v4_TED01"],["TED%3AAF-M5RML1-F1-model_v4_TED01","TED novel fold AF-M5RML1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1265734","Novipirellula maiorica"],["NCBITaxon%3A1265738","Rhodopirellula maiorica SM1"],["NCBITaxon%3A2024855","Rhodopirellula sp."]]},{"id":"NCBITaxon:129394","l":"Xanthomonas oryzae pv. oryzicola","na":2,"nb":3,"a":[["Pfam%3APF27358","Type III secretion system regulatory protein HrpD6"],["TED%3AAF-A0A5C2EW55-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C2EW55-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A129394","Xanthomonas oryzae pv. oryzicola"],["NCBITaxon%3A383407","Xanthomonas oryzae pv. oryzicola BLS256"],["NCBITaxon%3A1423890","Xanthomonas oryzae pv. oryzicola MAI10"]]},{"id":"NCBITaxon:1295","l":"Staphylococcus schleiferi","na":2,"nb":3,"a":[["Pfam%3APF18153","Cap15, cyclic dinucleotide receptor domain"],["Pfam%3APF26305","cGAS/DncV-like nucleotidyltransferase C-terminal helical domain"]],"b":[["NCBITaxon%3A74706","Staphylococcus coagulans"],["NCBITaxon%3A1295","Staphylococcus schleiferi"],["NCBITaxon%3A74707","Staphylococcus schleiferi subsp. schleiferi"]]},{"id":"NCBITaxon:134537","l":"Paraburkholderia fungorum","na":2,"nb":3,"a":[["TED%3AAF-A0A1H1IH55-F1-model_v4_TED01","TED novel fold AF-A0A1H1IH55-F1-model_v4_TED01"],["TED%3AAF-A0A2N8QLD6-F1-model_v4_TED03","TED novel fold AF-A0A2N8QLD6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A36773","Burkholderia sp."],["NCBITaxon%3A134537","Paraburkholderia fungorum"],["NCBITaxon%3A1218077","Paraburkholderia fungorum NBRC 102489"]]},{"id":"NCBITaxon:135735","l":"Priestia endophytica","na":2,"nb":3,"a":[["TED%3AAF-A0A3N6AMS3-F1-model_v4_TED04","TED novel fold AF-A0A3N6AMS3-F1-model_v4_TED04"],["TED%3AAF-A0A6I0BVE8-F1-model_v4_TED01","TED novel fold AF-A0A6I0BVE8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A135735","Priestia endophytica"],["NCBITaxon%3A1196029","Priestia endophytica 2102"],["NCBITaxon%3A1121089","Priestia endophytica DSM 13796"]]},{"id":"NCBITaxon:1406225","l":"Archangium violaceum Cb vi76","na":3,"nb":2,"a":[["TED%3AAF-A0A084STC5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A084STC5-F1-model_v4_TED01"],["TED%3AAF-A0A084SQF5-F1-model_v4_TED01","TED novel fold AF-A0A084SQF5-F1-model_v4_TED01"],["TED%3AAF-A0A084SQH8-F1-model_v4_TED01","TED novel fold AF-A0A084SQH8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A83451","Archangium violaceum"],["NCBITaxon%3A1406225","Archangium violaceum Cb vi76"]]},{"id":"NCBITaxon:145262","l":"Methanothermobacter thermautotrophicus","na":2,"nb":3,"a":[["Pfam%3APF12686","Protein of unknown function (DUF3800)"],["PROSITE%3APS00093","N-4 cytosine-specific DNA methylases signature"]],"b":[["NCBITaxon%3A145262","Methanothermobacter thermautotrophicus"],["NCBITaxon%3A187420","Methanothermobacter thermautotrophicus str. Delta H"],["NCBITaxon%3A79930","Methanothermobacter thermautotrophicus str. Winter"]]},{"id":"NCBITaxon:149386","l":"Salmonella enterica subsp. enterica serovar Chester","na":3,"nb":2,"a":[["TED%3AAF-A0A3Z4X662-F1-model_v4_TED02","TED novel fold AF-A0A3Z4X662-F1-model_v4_TED02"],["TED%3AAF-A0A635R8B2-F1-model_v4_TED01","TED novel fold AF-A0A635R8B2-F1-model_v4_TED01"],["TED%3AAF-A0A635RC84-F1-model_v4_TED01","TED novel fold AF-A0A635RC84-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A149386","Salmonella enterica subsp. enterica serovar Chester"],["NCBITaxon%3A941190","Salmonella enterica subsp. enterica serovar Chester str. ATCC 11997"]]},{"id":"NCBITaxon:158500","l":"Novosphingobium resinovorum","na":2,"nb":3,"a":[["TED%3AAF-A0A031JQ90-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A031JQ90-F1-model_v4_TED01"],["TED%3AAF-A0A031JQV5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A031JQV5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1495645","Xanthomarina arctica"],["NCBITaxon%3A158500","Novosphingobium resinovorum"],["NCBITaxon%3A284035","Streptomyces lienomycini"]]},{"id":"NCBITaxon:168927","l":"Escherichia coli O111:H-","na":3,"nb":2,"a":[["Pfam%3APF05307","Bundlin"],["Pfam%3APF26918","Intimin, immunoglobulin-like domain"],["Pfam%3APF07979","Intimin C-type lectin domain"]],"b":[["NCBITaxon%3A168927","Escherichia coli O111:H-"],["NCBITaxon%3A585396","Escherichia coli O111:H- str. 11128"]]},{"id":"NCBITaxon:1708","l":"Cellulomonas fimi","na":3,"nb":2,"a":[["Pfam%3APF00553","Cellulose binding domain"],["PROSITE%3APS00561","CBM2a (carbohydrate-binding type-2) domain signature"],["PROSITE%3APS00591","Glycosyl hydrolases family 10 (GH10) active site"]],"b":[["NCBITaxon%3A1708","Cellulomonas fimi"],["NCBITaxon%3A590998","Cellulomonas fimi ATCC 484"]]},{"id":"NCBITaxon:1736552","l":"Paenibacillus sp. Root52","na":3,"nb":2,"a":[["TED%3AAF-A0A0Q7SKA9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0Q7SKA9-F1-model_v4_TED03"],["TED%3AAF-A0A0Q7T2A7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q7T2A7-F1-model_v4_TED01"],["TED%3AAF-A0A0Q7STD2-F1-model_v4_TED01","TED novel fold AF-A0A0Q7STD2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A58172","Paenibacillus sp."],["NCBITaxon%3A1736552","Paenibacillus sp. Root52"]]},{"id":"NCBITaxon:178306","l":"Pyrobaculum aerophilum (strain ATCC 51768 / DSM 7523 / JCM 9630 / CIP 104966 / NBRC 100827 / IM2)","na":3,"nb":2,"a":[["Pfam%3APF09171","N-glycosylase/DNA lyase"],["Pfam%3APF10432","Bacterial phospho-glucose isomerase C-terminal SIS domain"],["TED%3AAF-Q8ZWY1-F1-model_v4_TED04","TED novel fold AF-Q8ZWY1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A13773","Pyrobaculum aerophilum"],["NCBITaxon%3A178306","Pyrobaculum aerophilum str. IM2"]]},{"id":"NCBITaxon:178900","l":"Acetobacter cerevisiae","na":2,"nb":3,"a":[["TED%3AAF-A0A149VCN2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A149VCN2-F1-model_v4_TED01"],["TED%3AAF-A0A149VES1-F1-model_v4_TED01","TED novel fold AF-A0A149VES1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A178900","Acetobacter cerevisiae"],["NCBITaxon%3A1307903","Acetobacter cerevisiae DSM 14362"],["NCBITaxon%3A438","Acetobacter pasteurianus"]]},{"id":"NCBITaxon:180282","l":"Delftia tsuruhatensis","na":2,"nb":3,"a":[["TED%3AAF-A0A1D8JBF2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1D8JBF2-F1-model_v4_TED01"],["TED%3AAF-A0A5P8XEZ5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5P8XEZ5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A180282","Delftia tsuruhatensis"],["NCBITaxon%3A1280939","Delftia tsuruhatensis ARB"],["NCBITaxon%3A1220577","Delftia tsuruhatensis NBRC 16741"]]},{"id":"NCBITaxon:1871071","l":"Comamonadaceae bacterium","na":3,"nb":2,"a":[["TED%3AAF-A0A4Q3MGW3-F1-model_v4_TED02","TED novel fold AF-A0A4Q3MGW3-F1-model_v4_TED02"],["TED%3AAF-A0A4Q3MH32-F1-model_v4_TED02","TED novel fold AF-A0A4Q3MH32-F1-model_v4_TED02"],["TED%3AAF-A0A4Q5ULA3-F1-model_v4_TED01","TED novel fold AF-A0A4Q5ULA3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1871071","Comamonadaceae bacterium"],["NCBITaxon%3A3043857","Comamonadaceae bacterium OTU2469"]]},{"id":"NCBITaxon:1890302","l":"Bacillus wiedmannii","na":3,"nb":2,"a":[["TED%3AAF-A0A2B5XSY7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2B5XSY7-F1-model_v4_TED01"],["TED%3AAF-A0A4U3BAX3-F1-model_v4_TED01","TED novel fold AF-A0A4U3BAX3-F1-model_v4_TED01"],["TED%3AAF-A0A4V5TSE9-F1-model_v4_TED01","TED novel fold AF-A0A4V5TSE9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1890302","Bacillus wiedmannii"],["NCBITaxon%3A2494319","Bacillus wiedmannii bv. thuringiensis"]]},{"id":"NCBITaxon:1909293","l":"Acetobacteraceae bacterium","na":3,"nb":2,"a":[["TED%3AAF-A0A4P7WA61-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A4P7WA61-F1-model_v4_TED03"],["TED%3AAF-A0A4Q4CZF9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q4CZF9-F1-model_v4_TED01"],["TED%3AAF-A0A354V6Y2-F1-model_v4_TED01","TED novel fold AF-A0A354V6Y2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1909293","Acetobacteraceae bacterium"],["NCBITaxon%3A1484109","Lichenicola cladoniae"]]},{"id":"NCBITaxon:203122","l":"Saccharophagus degradans 2-40","na":3,"nb":2,"a":[["Pfam%3APF22686","Exo-oligoalginate lyase-like, C-terminal domain"],["Pfam%3APF07940","Heparinase II/III-like, C-terminal"],["Pfam%3APF05426","Alginate lyase"]],"b":[["NCBITaxon%3A86304","Saccharophagus degradans"],["NCBITaxon%3A203122","Saccharophagus degradans 2-40"]]},{"id":"NCBITaxon:208435","l":"Streptococcus agalactiae serotype V (strain ATCC BAA-611 / 2603 V/R)","na":3,"nb":2,"a":[["Pfam%3APF18419","ATP-grasp-like domain"],["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF04262","Glutamate-cysteine ligase"]],"b":[["NCBITaxon%3A1311","Streptococcus agalactiae"],["NCBITaxon%3A208435","Streptococcus agalactiae 2603V/R"]]},{"id":"NCBITaxon:2151","l":"Mesoplasma florum","na":2,"nb":3,"a":[["TED%3AAF-A0A2R3NYP5-F1-model_v4_TED02","TED novel fold AF-A0A2R3NYP5-F1-model_v4_TED02"],["TED%3AAF-A0A2R3P753-F1-model_v4_TED02","TED novel fold AF-A0A2R3P753-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2151","Mesoplasma florum"],["NCBITaxon%3A265311","Mesoplasma florum L1"],["NCBITaxon%3A1406864","Mesoplasma florum W37"]]},{"id":"NCBITaxon:2162","l":"Methanobacterium formicicum","na":2,"nb":3,"a":[["Pfam%3APF04432","Coenzyme F420 hydrogenase/dehydrogenase, beta subunit C terminus"],["Pfam%3APF04422","Coenzyme F420 hydrogenase/dehydrogenase, beta subunit N-term"]],"b":[["NCBITaxon%3A2162","Methanobacterium formicicum"],["NCBITaxon%3A1204725","Methanobacterium formicicum DSM 3637"],["NCBITaxon%3A1300163","Methanobacterium formicicum JCM 10132"]]},{"id":"NCBITaxon:2257","l":"Natronomonas pharaonis","na":3,"nb":2,"a":[["Pfam%3APF17909","Htr2 transmembrane domain"],["PROSITE%3APS00950","Bacterial rhodopsins signature 1"],["PROSITE%3APS00327","Bacterial rhodopsins retinal binding site"]],"b":[["NCBITaxon%3A2257","Natronomonas pharaonis"],["NCBITaxon%3A348780","Natronomonas pharaonis DSM 2160"]]},{"id":"NCBITaxon:235279","l":"Helicobacter hepaticus (strain ATCC 51449 / 3B1)","na":3,"nb":2,"a":[["Pfam%3APF13673","Acetyltransferase (GNAT) domain"],["Pfam%3APF03498","Cytolethal distending toxin A/C domain"],["Pfam%3APF03352","Methyladenine glycosylase"]],"b":[["NCBITaxon%3A32025","Helicobacter hepaticus"],["NCBITaxon%3A235279","Helicobacter hepaticus ATCC 51449"]]},{"id":"NCBITaxon:239935","l":"Akkermansia muciniphila","na":2,"nb":3,"a":[["TED%3AAF-A0A2N8IJN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N8IJN7-F1-model_v4_TED01"],["TED%3AAF-A0A6N2UM07-F1-model_v4_TED01","TED novel fold AF-A0A6N2UM07-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A239935","Akkermansia muciniphila"],["NCBITaxon%3A349741","Akkermansia muciniphila ATCC BAA-835"],["NCBITaxon%3A1263034","Akkermansia muciniphila CAG:154"]]},{"id":"NCBITaxon:243090","l":"Rhodopirellula baltica SH 1","na":3,"nb":2,"a":[["Pfam%3APF02601","Exonuclease VII, large subunit"],["TED%3AAF-Q7UU79-F1-model_v4_TED04","TED highly-symmetric fold AF-Q7UU79-F1-model_v4_TED04"],["TED%3AAF-Q7USE8-F1-model_v4_TED02","TED novel fold AF-Q7USE8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A265606","Rhodopirellula baltica"],["NCBITaxon%3A243090","Rhodopirellula baltica SH 1"]]},{"id":"NCBITaxon:243231","l":"Geobacter sulfurreducens PCA","na":2,"nb":3,"a":[["Pfam%3APF01930","Domain of unknown function DUF83"],["Pfam%3APF13435","Cytochrome c554 and c-prime"]],"b":[["NCBITaxon%3A35554","Geobacter sulfurreducens"],["NCBITaxon%3A243231","Geobacter sulfurreducens PCA"],["NCBITaxon%3A1649546","Geobacter sulfurreducens subsp. sulfurreducens"]]},{"id":"NCBITaxon:243365","l":"Chromobacterium violaceum ATCC 12472","na":3,"nb":2,"a":[["Pfam%3APF17074","Darcynin, domain of unknown function"],["Pfam%3APF12902","Ferritin-like"],["Pfam%3APF06314","Acetoacetate decarboxylase (ADC)"]],"b":[["NCBITaxon%3A536","Chromobacterium violaceum"],["NCBITaxon%3A243365","Chromobacterium violaceum ATCC 12472"]]},{"id":"NCBITaxon:246","l":"Chryseobacterium balustinum","na":2,"nb":3,"a":[["TED%3AAF-A0A3G6TGN0-F1-model_v4_TED05","TED novel fold AF-A0A3G6TGN0-F1-model_v4_TED05"],["TED%3AAF-A0A3G6TJP7-F1-model_v4_TED01","TED novel fold AF-A0A3G6TJP7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A246","Chryseobacterium balustinum"],["NCBITaxon%3A1349755","Chryseobacterium balustinum NBRC 15053"],["NCBITaxon%3A1241981","Chryseobacterium lactis"]]},{"id":"NCBITaxon:2600065","l":"Pseudomonas haemolytica","na":2,"nb":3,"a":[["TED%3AAF-A0A5P1D772-F1-model_v4_TED02","TED novel fold AF-A0A5P1D772-F1-model_v4_TED02"],["TED%3AAF-A0A646P5P3-F1-model_v4_TED01","TED novel fold AF-A0A646P5P3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2219658","Promicromonospora panici"],["NCBITaxon%3A2600065","Pseudomonas haemolytica"],["NCBITaxon%3A306","Pseudomonas sp."]]},{"id":"NCBITaxon:269084","l":"Synechococcus sp. (strain ATCC 27144 / PCC 6301 / SAUG 1402/1)","na":3,"nb":2,"a":[["Pfam%3APF24763","CGL160, C-terminal"],["Pfam%3APF11805","Protein of unknown function (DUF3326)"],["PROSITE%3APS00157","Ribulose bisphosphate carboxylase large chain active site"]],"b":[["NCBITaxon%3A269084","Synechococcus elongatus PCC 6301"],["NCBITaxon%3A1350461","Synechococcus elongatus UTEX 2973"]]},{"id":"NCBITaxon:272564","l":"Desulfitobacterium hafniense (strain DSM 10664 / DCB-2)","na":3,"nb":2,"a":[["Pfam%3APF17425","Arylsulfotransferase Ig-like domain"],["Pfam%3APF10087","Uncharacterized protein conserved in bacteria (DUF2325)"],["Pfam%3APF05935","Arylsulfotransferase (ASST)"]],"b":[["NCBITaxon%3A49338","Desulfitobacterium hafniense"],["NCBITaxon%3A272564","Desulfitobacterium hafniense DCB-2"]]},{"id":"NCBITaxon:273121","l":"Wolinella succinogenes ATCC 29543","na":3,"nb":2,"a":[["Pfam%3APF26365","Apolipoprotein N-acyltransferase integral membrane domain"],["Pfam%3APF02335","Cytochrome c552"],["PROSITE%3APS00883","Nickel-dependent hydrogenases b-type cytochrome subunit signature 2"]],"b":[["NCBITaxon%3A844","Wolinella succinogenes"],["NCBITaxon%3A273121","Wolinella succinogenes DSM 1740"]]},{"id":"NCBITaxon:2747968","l":"Fusarium vanettenii","na":3,"nb":2,"a":[["Pfam%3APF01083","Cutinase"],["PROSITE%3APS00155","Cutinase, serine active site"],["PROSITE%3APS00931","Cutinase, aspartate and histidine active sites"]],"b":[["NCBITaxon%3A2747968","Fusarium vanettenii"],["NCBITaxon%3A660122","Fusarium vanettenii 77-13-4"]]},{"id":"NCBITaxon:2765360","l":"Massilia antarctica","na":3,"nb":2,"a":[["TED%3AAF-A0A7S9UFA6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S9UFA6-F1-model_v4_TED01"],["TED%3AAF-A0A7S9UI56-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S9UI56-F1-model_v4_TED01"],["TED%3AAF-A0A7S9Y9R6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7S9Y9R6-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2765360","Massilia antarctica"],["NCBITaxon%3A2996459","Massilia antarctica subsp. insulae"]]},{"id":"NCBITaxon:28077","l":"Nitrospirillum amazonense","na":3,"nb":2,"a":[["TED%3AAF-A0A560EXE1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A560EXE1-F1-model_v4_TED01"],["TED%3AAF-A0A560KI49-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A560KI49-F1-model_v4_TED01"],["TED%3AAF-A0A560FRY1-F1-model_v4_TED02","TED novel fold AF-A0A560FRY1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A28077","Nitrospirillum amazonense"],["NCBITaxon%3A3144925","Nitrospirillum viridazoti"]]},{"id":"NCBITaxon:28115","l":"Porphyromonas macacae","na":2,"nb":3,"a":[["TED%3AAF-A0A379E7L0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A379E7L0-F1-model_v4_TED01"],["TED%3AAF-A0A379E9C9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A379E9C9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28115","Porphyromonas macacae"],["NCBITaxon%3A1122974","Porphyromonas macacae DSM 20710 = JCM 13914"],["NCBITaxon%3A1236521","Porphyromonas macacae JCM 15984"]]},{"id":"NCBITaxon:284016","l":"Phenylobacterium zucineum","na":3,"nb":2,"a":[["TED%3AAF-A0A2W5PXN0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2W5PXN0-F1-model_v4_TED03"],["TED%3AAF-A0A227JQY1-F1-model_v4_TED01","TED novel fold AF-A0A227JQY1-F1-model_v4_TED01"],["TED%3AAF-A0A2W5RE76-F1-model_v4_TED01","TED novel fold AF-A0A2W5RE76-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A284016","Phenylobacterium zucineum"],["NCBITaxon%3A450851","Phenylobacterium zucineum HLK1"]]},{"id":"NCBITaxon:29320","l":"Paenarthrobacter nicotinovorans","na":2,"nb":3,"a":[["Pfam%3APF22607","FAD binding domain-like"],["Pfam%3APF06500","Esterase FrsA-like"]],"b":[["NCBITaxon%3A29320","Paenarthrobacter nicotinovorans"],["NCBITaxon%3A1304876","Paenarthrobacter nicotinovorans 231Sha2.1M6"],["NCBITaxon%3A1292042","Paenarthrobacter nicotinovorans 26Cvi1.1E"]]},{"id":"NCBITaxon:29361","l":"Faecalimonas nexilis","na":2,"nb":3,"a":[["TED%3AAF-A0A6N2UJS6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N2UJS6-F1-model_v4_TED01"],["TED%3AAF-A0A413JDE0-F1-model_v4_TED02","TED novel fold AF-A0A413JDE0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1263069","[Clostridium] nexile CAG:348"],["NCBITaxon%3A500632","[Clostridium] nexile DSM 1787"],["NCBITaxon%3A29361","Faecalimonas nexilis"]]},{"id":"NCBITaxon:305900","l":"Endozoicomonas elysicola","na":2,"nb":3,"a":[["TED%3AAF-A0A081K9I3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A081K9I3-F1-model_v4_TED01"],["TED%3AAF-A0A081KBA1-F1-model_v4_TED01","TED novel fold AF-A0A081KBA1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A305900","Endozoicomonas elysicola"],["NCBITaxon%3A1121862","Endozoicomonas elysicola DSM 22380"],["NCBITaxon%3A1091502","Endozoicomonas elysicola MKT110"]]},{"id":"NCBITaxon:309799","l":"Dictyoglomus thermophilum (strain ATCC 35947 / DSM 3960 / H-6-12)","na":3,"nb":2,"a":[["Pfam%3APF09094","Alpha-amylase/4-alpha-glucanotransferase, middle domain"],["Pfam%3APF09095","Alpha-amylase/4-alpha-glucanotransferase, C-terminal"],["TED%3AAF-B5YB33-F1-model_v4_TED01","TED highly-symmetric fold AF-B5YB33-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A14","Dictyoglomus thermophilum"],["NCBITaxon%3A309799","Dictyoglomus thermophilum H-6-12"]]},{"id":"NCBITaxon:321967","l":"Lacticaseibacillus paracasei (strain ATCC 334 / BCRC 17002 / CCUG 31169 / CIP 107868 / KCTC 3260 / NRRL B-441)","na":3,"nb":2,"a":[["Pfam%3APF11975","Family 4 glycosyl hydrolase C-terminal domain"],["Pfam%3APF02056","Family 4 glycosyl hydrolase"],["PROSITE%3APS01324","Glycosyl hydrolases family 4 signature"]],"b":[["NCBITaxon%3A1597","Lacticaseibacillus paracasei"],["NCBITaxon%3A321967","Lacticaseibacillus paracasei ATCC 334"]]},{"id":"NCBITaxon:331636","l":"Chlamydophila psittaci (strain ATCC VR-125 / 6BC)","na":3,"nb":2,"a":[["Pfam%3APF01345","CLIPPER domain"],["Pfam%3APF04413","3-Deoxy-D-manno-octulosonic-acid transferase (kdotransferase)"],["Pfam%3APF03503","Chlamydia cysteine-rich outer membrane protein 3"]],"b":[["NCBITaxon%3A83554","Chlamydia psittaci"],["NCBITaxon%3A331636","Chlamydia psittaci 6BC"]]},{"id":"NCBITaxon:335543","l":"","na":3,"nb":2,"a":[["Pfam%3APF03746","LamB/YcsF family"],["Pfam%3APF03588","Leucyl/phenylalanyl-tRNA protein transferase"],["Pfam%3APF05167","Uncharacterised ACR (DUF711)"]],"b":[["NCBITaxon%3A119484","Syntrophobacter fumaroxidans"],["NCBITaxon%3A335543","Syntrophobacter fumaroxidans MPOB"]]},{"id":"NCBITaxon:340102","l":"","na":3,"nb":2,"a":[["Pfam%3APF22039","Imidazolonepropionase-like composite domain, bacteria"],["Pfam%3APF01949","Endonuclease dU"],["TED%3AAF-A4WK08-F1-model_v4_TED01","TED novel fold AF-A4WK08-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A121277","Pyrobaculum arsenaticum"],["NCBITaxon%3A340102","Pyrobaculum arsenaticum DSM 13514"]]},{"id":"NCBITaxon:347834","l":"Rhizobium etli (strain ATCC 51251 / DSM 11541 / JCM 21823 / NBRC 15573 / CFN 42)","na":3,"nb":2,"a":[["Pfam%3APF02632","BioY family"],["proteintraitsmech%3AELIFE109154_VbsL","Vicibactin acyl-hydroxyornithine epimerase family"],["PROSITE%3APS01349","Nodulation protein nodA signature"]],"b":[["NCBITaxon%3A29449","Rhizobium etli"],["NCBITaxon%3A347834","Rhizobium etli CFN 42"]]},{"id":"NCBITaxon:349124","l":"Halorhodospira halophila (strain DSM 244 / SL1)","na":3,"nb":2,"a":[["Pfam%3APF02639","Uncharacterized BCR, YaiI/YqxD family COG1671"],["Pfam%3APF20543","N2-fixation sustaining protein CowN"],["Pfam%3APF07311","Dodecin"]],"b":[["NCBITaxon%3A1053","Halorhodospira halophila"],["NCBITaxon%3A349124","Halorhodospira halophila SL1"]]},{"id":"NCBITaxon:349741","l":"Akkermansia muciniphila (strain ATCC BAA-835 / DSM 22959 / JCM 33894 / BCRC 81048 / CCUG 64013 / CIP 107961 / Muc)","na":3,"nb":2,"a":[["Pfam%3APF23763","GLAA-B beta-barrel domain I"],["Pfam%3APF23764","GLAA-B beta-barrel domain II"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"]],"b":[["NCBITaxon%3A239935","Akkermansia muciniphila"],["NCBITaxon%3A349741","Akkermansia muciniphila ATCC BAA-835"]]},{"id":"NCBITaxon:357804","l":"Psychromonas ingrahamii (strain DSM 17664 / CCUG 51855 / 37)","na":3,"nb":2,"a":[["Pfam%3APF27465","DNA-binding protein Fis N-terminal domain"],["Pfam%3APF04363","Protein of unknown function (DUF496)"],["Pfam%3APF18955","Domain of unknown function (DUF5698)"]],"b":[["NCBITaxon%3A357794","Psychromonas ingrahamii"],["NCBITaxon%3A357804","Psychromonas ingrahamii 37"]]},{"id":"NCBITaxon:357809","l":"Lachnoclostridium phytofermentans ISDg","na":3,"nb":2,"a":[["Pfam%3APF09508","Lacto-N-biose phosphorylase N-terminal TIM barrel domain"],["Pfam%3APF17386","Lacto-N-biose phosphorylase C-terminal domain"],["Pfam%3APF17385","Lacto-N-biose phosphorylase central domain"]],"b":[["NCBITaxon%3A66219","Lachnoclostridium phytofermentans"],["NCBITaxon%3A357809","Lachnoclostridium phytofermentans ISDg"]]},{"id":"NCBITaxon:362976","l":"Haloquadratum walsbyi (strain DSM 16790 / HBSQ001)","na":3,"nb":2,"a":[["Pfam%3APF01986","Domain of unknown function DUF123"],["PROSITE%3APS00950","Bacterial rhodopsins signature 1"],["PROSITE%3APS00327","Bacterial rhodopsins retinal binding site"]],"b":[["NCBITaxon%3A293091","Haloquadratum walsbyi"],["NCBITaxon%3A362976","Haloquadratum walsbyi DSM 16790"]]},{"id":"NCBITaxon:363265","l":"Leyella stercorea","na":2,"nb":3,"a":[["TED%3AAF-A0A415GCN6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A415GCN6-F1-model_v4_TED04"],["TED%3AAF-A0A3R6FHW9-F1-model_v4_TED01","TED novel fold AF-A0A3R6FHW9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A363265","Leyella stercorea"],["NCBITaxon%3A1263103","Leyella stercorea CAG:629"],["NCBITaxon%3A1002367","Leyella stercorea DSM 18206"]]},{"id":"NCBITaxon:367928","l":"Bifidobacterium adolescentis (strain ATCC 15703 / DSM 20083 / NCTC 11814 / E194a)","na":3,"nb":2,"a":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["Pfam%3APF02156","Glycosyl hydrolase family 26"],["Pfam%3APF27512","LeuD_N"]],"b":[["NCBITaxon%3A1680","Bifidobacterium adolescentis"],["NCBITaxon%3A367928","Bifidobacterium adolescentis ATCC 15703"]]},{"id":"NCBITaxon:376686","l":"","na":3,"nb":2,"a":[["Pfam%3APF17957","Bacterial Ig domain"],["Pfam%3APF24850","Bacillithiol biosynthesis BshC, C-terminal coiled-coil domain"],["Pfam%3APF14109","GldH lipoprotein"]],"b":[["NCBITaxon%3A986","Flavobacterium johnsoniae"],["NCBITaxon%3A376686","Flavobacterium johnsoniae UW101"]]},{"id":"NCBITaxon:381666","l":"Cupriavidus necator H16","na":3,"nb":2,"a":[["Pfam%3APF13473","Cupredoxin-like domain"],["Pfam%3APF10605","3HB-oligomer hydrolase (3HBOH)"],["Pfam%3APF21783","YNCE-like beta-propeller"]],"b":[["NCBITaxon%3A106590","Cupriavidus necator"],["NCBITaxon%3A381666","Cupriavidus necator H16"]]},{"id":"NCBITaxon:384616","l":"Pyrobaculum islandicum (strain DSM 4184 / JCM 9189 / GEO3)","na":3,"nb":2,"a":[["Pfam%3APF01941","S-adenosylmethionine synthetase (AdoMet synthetase)"],["Pfam%3APF11520","Chromatin protein Cren7"],["Pfam%3APF05167","Uncharacterised ACR (DUF711)"]],"b":[["NCBITaxon%3A2277","Pyrobaculum islandicum"],["NCBITaxon%3A384616","Pyrobaculum islandicum DSM 4184"]]},{"id":"NCBITaxon:384676","l":"Pseudomonas entomophila L48","na":3,"nb":2,"a":[["Pfam%3APF18063","Beta barrel Pore-forming domain"],["Pfam%3APF08548","Peptidase M10 serralysin C terminal"],["TED%3AAF-Q1I2P2-F1-model_v4_TED01","TED novel fold AF-Q1I2P2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A312306","Pseudomonas entomophila"],["NCBITaxon%3A384676","Pseudomonas entomophila L48"]]},{"id":"NCBITaxon:391587","l":"Kordia algicida OT-1","na":3,"nb":2,"a":[["TED%3AAF-A9DJI5-F1-model_v4_TED02","TED highly-symmetric fold AF-A9DJI5-F1-model_v4_TED02"],["TED%3AAF-A9E7Y3-F1-model_v4_TED02","TED highly-symmetric fold AF-A9E7Y3-F1-model_v4_TED02"],["TED%3AAF-A9E6S0-F1-model_v4_TED02","TED novel fold AF-A9E6S0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A221066","Kordia algicida"],["NCBITaxon%3A391587","Kordia algicida OT-1"]]},{"id":"NCBITaxon:392500","l":"Shewanella woodyi ATCC 51908","na":3,"nb":2,"a":[["Pfam%3APF23763","GLAA-B beta-barrel domain I"],["TED%3AAF-B1KH33-F1-model_v4_TED01","TED novel fold AF-B1KH33-F1-model_v4_TED01"],["TED%3AAF-B1KQT1-F1-model_v4_TED01","TED novel fold AF-B1KQT1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A60961","Shewanella woodyi"],["NCBITaxon%3A392500","Shewanella woodyi ATCC 51908"]]},{"id":"NCBITaxon:394503","l":"Ruminiclostridium cellulolyticum H10","na":3,"nb":2,"a":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["PROSITE%3APS00812","Glycosyl hydrolases family 8 signature"],["Pfam%3APF01270","Glycosyl hydrolases family 8"]],"b":[["NCBITaxon%3A1521","Ruminiclostridium cellulolyticum"],["NCBITaxon%3A394503","Ruminiclostridium cellulolyticum H10"]]},{"id":"NCBITaxon:39488","l":"Anaerobutyricum hallii","na":2,"nb":3,"a":[["TED%3AAF-A0A414B1Y3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A414B1Y3-F1-model_v4_TED01"],["TED%3AAF-A0A415G3S7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A415G3S7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A39488","Anaerobutyricum hallii"],["NCBITaxon%3A1263078","Anaerobutyricum hallii CAG:12"],["NCBITaxon%3A411469","Anaerobutyricum hallii DSM 3353"]]},{"id":"NCBITaxon:400667","l":"","na":3,"nb":2,"a":[["Pfam%3APF17074","Darcynin, domain of unknown function"],["Pfam%3APF05232","Chlorhexidine efflux transporter"],["Pfam%3APF05662","Coiled stalk of trimeric autotransporter adhesin"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A400667","Acinetobacter baumannii ATCC 17978"]]},{"id":"NCBITaxon:418240","l":"Blautia wexlerae","na":2,"nb":3,"a":[["TED%3AAF-A0A174M0A4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A174M0A4-F1-model_v4_TED02"],["TED%3AAF-A0A6L8T7F6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L8T7F6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A418240","Blautia wexlerae"],["NCBITaxon%3A1280691","Blautia wexlerae AGR2146"],["NCBITaxon%3A1121115","Blautia wexlerae DSM 19850"]]},{"id":"NCBITaxon:418699","l":"","na":3,"nb":2,"a":[["Pfam%3APF27460","ATP phosphoribosyltransferase subunit HisZ C-terminal domain"],["Pfam%3APF20543","N2-fixation sustaining protein CowN"],["PROSITE%3APS00855","Signal peptidases II signature"]],"b":[["NCBITaxon%3A418699","Azoarcus olearius"],["NCBITaxon%3A29544","Azoarcus sp."]]},{"id":"NCBITaxon:41899","l":"Burkholderia plantarii","na":3,"nb":2,"a":[["proteintraitsmech%3AELIFE109154_GrbD","GrbD-type graminine biosynthesis protein family"],["proteintraitsmech%3AELIFE109154_GrbE","GrbE-type graminine biosynthesis protein family"],["TED%3AAF-A0A0B6RMB1-F1-model_v4_TED01","TED novel fold AF-A0A0B6RMB1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A41899","Burkholderia plantarii"],["NCBITaxon%3A796107","Burkholderia plantarii MAFF 301723"]]},{"id":"NCBITaxon:419665","l":"Methanococcus aeolicus (strain ATCC BAA-1280 / DSM 17508 / OCM 812 / Nankai-3)","na":3,"nb":2,"a":[["Pfam%3APF26548","Putative peptidyl-prolyl cis-trans isomerase domain"],["Pfam%3APF06787","FeGP cofactor biosynthesis protein HcgF"],["Pfam%3APF01941","S-adenosylmethionine synthetase (AdoMet synthetase)"]],"b":[["NCBITaxon%3A42879","Methanococcus aeolicus"],["NCBITaxon%3A419665","Methanococcus aeolicus Nankai-3"]]},{"id":"NCBITaxon:439292","l":"Bacillus selenitireducens (strain ATCC 700615 / DSM 15326 / MLS10)","na":3,"nb":2,"a":[["Pfam%3APF03633","Glycosyl hydrolase family 65, C-terminal domain"],["Pfam%3APF03636","Glycosyl hydrolase family 65, N-terminal domain"],["Pfam%3APF03632","Glycosyl hydrolase family 65 central catalytic domain"]],"b":[["NCBITaxon%3A439292","[Bacillus] selenitireducens MLS10"],["NCBITaxon%3A85683","Salisediminibacterium selenitireducens"]]},{"id":"NCBITaxon:44001","l":"Caldicellulosiruptor saccharolyticus","na":3,"nb":2,"a":[["Pfam%3APF12891","Glycoside hydrolase family 44"],["PROSITE%3APS01027","Glycosyl hydrolases family 39 active site"],["Pfam%3APF02011","Glycosyl hydrolase family 48"]],"b":[["NCBITaxon%3A44001","Caldicellulosiruptor saccharolyticus"],["NCBITaxon%3A351627","Caldicellulosiruptor saccharolyticus DSM 8903"]]},{"id":"NCBITaxon:444178","l":"Brucella ovis (strain ATCC 25840 / 63/290 / NCTC 10512)","na":3,"nb":2,"a":[["Pfam%3APF05128","Domain of unknown function (DUF697)"],["Pfam%3APF06411","HdeA/HdeB family"],["Pfam%3APF07886","BA14K-like protein"]],"b":[["NCBITaxon%3A236","Brucella ovis"],["NCBITaxon%3A444178","Brucella ovis ATCC 25840"]]},{"id":"NCBITaxon:447","l":"Legionella bozemanae","na":2,"nb":3,"a":[["TED%3AAF-A0A0W0RGI2-F1-model_v4_TED01","TED novel fold AF-A0A0W0RGI2-F1-model_v4_TED01"],["TED%3AAF-A0A0W0RQT5-F1-model_v4_TED01","TED novel fold AF-A0A0W0RQT5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A447","Legionella bozemanae"],["NCBITaxon%3A66973","Legionella bozemanae serogroup 1"],["NCBITaxon%3A66974","Legionella bozemanae serogroup 2"]]},{"id":"NCBITaxon:448385","l":"","na":3,"nb":2,"a":[["TED%3AAF-A9FYP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A9FYP8-F1-model_v4_TED01"],["TED%3AAF-A9G932-F1-model_v4_TED01","TED highly-symmetric fold AF-A9G932-F1-model_v4_TED01"],["TED%3AAF-A9F9E5-F1-model_v4_TED01","TED novel fold AF-A9F9E5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A56","Sorangium cellulosum"],["NCBITaxon%3A448385","Sorangium cellulosum So ce56"]]},{"id":"NCBITaxon:45658","l":"Vibrio scophthalmi","na":2,"nb":3,"a":[["TED%3AAF-A0A1B1NNY0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B1NNY0-F1-model_v4_TED01"],["TED%3AAF-A0A1C7FC26-F1-model_v4_TED03","TED novel fold AF-A0A1C7FC26-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2946866","Vibrio methylphosphonaticus"],["NCBITaxon%3A45658","Vibrio scophthalmi"],["NCBITaxon%3A870967","Vibrio scophthalmi LMG 19158"]]},{"id":"NCBITaxon:456999","l":"Rhizoctonia solani","na":2,"nb":3,"a":[["TED%3AAF-A0A0K6FTW9-F1-model_v4_TED04","TED novel fold AF-A0A0K6FTW9-F1-model_v4_TED04"],["TED%3AAF-A0A0K6GEX0-F1-model_v4_TED01","TED novel fold AF-A0A0K6GEX0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A456999","Rhizoctonia solani"],["NCBITaxon%3A983506","Rhizoctonia solani AG-1 IA"],["NCBITaxon%3A1086053","Rhizoctonia solani AG-3"]]},{"id":"NCBITaxon:4922","l":"Komagataella pastoris","na":3,"nb":2,"a":[["Pfam%3APF26001","Peroxin 8 protein-like, N-terminal domain"],["Pfam%3APF27812","PEX8 central TPR-like domain"],["TED%3AAF-A0A1B2J8F2-F1-model_v4_TED02","TED novel fold AF-A0A1B2J8F2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A4922","Komagataella pastoris"],["NCBITaxon%3A638632","Komagataella pastoris DSMZ 70382"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":3,"nb":2,"a":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF22277","EncFtn-like"],["TED%3AAF-D0LJ11-F1-model_v4_TED04","TED highly-symmetric fold AF-D0LJ11-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A80816","Haliangium ochraceum"],["NCBITaxon%3A502025","Haliangium ochraceum DSM 14365"]]},{"id":"NCBITaxon:5334","l":"Schizophyllum commune","na":3,"nb":2,"a":[["Pfam%3APF04611","Mating type protein A alpha Y mating type dependent binding region"],["Pfam%3APF01185","Fungal hydrophobin"],["PROSITE%3APS00956","Fungal hydrophobins signature"]],"b":[["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A5334","Schizophyllum commune"]]},{"id":"NCBITaxon:555970","l":"","na":2,"nb":3,"a":[["PROSITE%3APS60002","Phosphoketolase signature 1"],["PROSITE%3APS60003","Phosphoketolase signature 2"]],"b":[["NCBITaxon%3A28025","Bifidobacterium animalis"],["NCBITaxon%3A302911","Bifidobacterium animalis subsp. lactis"],["NCBITaxon%3A555970","Bifidobacterium animalis subsp. lactis DSM 10140"]]},{"id":"NCBITaxon:561007","l":"Mycobacteroides abscessus (strain ATCC 19977 / DSM 44196 / CCUG 20993 / CIP 104536 / JCM 13569 / NCTC 13031 / TMC 1543 / L948)","na":2,"nb":3,"a":[["Pfam%3APF18089","DAPG hydrolase PhiG domain"],["Pfam%3APF13492","GAF domain"]],"b":[["NCBITaxon%3A36809","Mycobacteroides abscessus"],["NCBITaxon%3A561007","Mycobacteroides abscessus ATCC 19977"],["NCBITaxon%3A1185650","Mycobacteroides abscessus subsp. abscessus"]]},{"id":"NCBITaxon:568706","l":"","na":3,"nb":2,"a":[["IDPO%3A0000011","disorder to order"],["PROSITE%3APS00330","Hemolysin-type calcium-binding region signature"],["Pfam%3APF06594","Haemolysin-type calcium binding protein related domain"]],"b":[["NCBITaxon%3A520","Bordetella pertussis"],["NCBITaxon%3A568706","Bordetella pertussis 18323"]]},{"id":"NCBITaxon:585503","l":"Selenomonas noxia ATCC 43541","na":3,"nb":2,"a":[["TED%3AAF-D4S4I0-F1-model_v4_TED02","TED highly-symmetric fold AF-D4S4I0-F1-model_v4_TED02"],["TED%3AAF-D4S4I0-F1-model_v4_TED03","TED highly-symmetric fold AF-D4S4I0-F1-model_v4_TED03"],["TED%3AAF-D4S5Z2-F1-model_v4_TED05","TED novel fold AF-D4S5Z2-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A135083","Centipeda noxia"],["NCBITaxon%3A585503","Centipeda noxia ATCC 43541"]]},{"id":"NCBITaxon:59405","l":"Thauera aromatica","na":2,"nb":3,"a":[["Pfam%3APF18512","Benzylsuccinate synthase beta subunit"],["Pfam%3APF08201","BssC/TutF protein"]],"b":[["NCBITaxon%3A59405","Thauera aromatica"],["NCBITaxon%3A859322","Thauera aromatica 3CB2"],["NCBITaxon%3A44139","Thauera aromatica K172"]]},{"id":"NCBITaxon:634497","l":"Haloarcula hispanica (strain ATCC 33960 / DSM 4426 / JCM 8911 / NBRC 102182 / NCIMB 2187 / VKM B-1755)","na":3,"nb":2,"a":[["Pfam%3APF23951","Domain of unknown function (DUF7282)"],["Pfam%3APF25162","Domain of unknown function (DUF7827)"],["Pfam%3APF18204","PGF-CTERM motif"]],"b":[["NCBITaxon%3A51589","Haloarcula hispanica"],["NCBITaxon%3A634497","Haloarcula hispanica ATCC 33960"]]},{"id":"NCBITaxon:644282","l":"Desulfarculus baarsii (strain ATCC 33931 / DSM 2075 / LMG 7858 / VKM B-1802 / 2st14)","na":3,"nb":2,"a":[["Pfam%3APF06397","Desulfoferrodoxin, N-terminal domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["TED%3AAF-E1QLH8-F1-model_v4_TED02","TED novel fold AF-E1QLH8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A453230","Desulfarculus baarsii"],["NCBITaxon%3A644282","Desulfarculus baarsii DSM 2075"]]},{"id":"NCBITaxon:645462","l":"Clostridioides difficile (strain CD196)","na":2,"nb":3,"a":[["Pfam%3APF18671","4-Hydroxyphenylacetate decarboxylase subunit gamma N-terminal"],["Pfam%3APF18524","High potential iron-sulfur protein like"]],"b":[["NCBITaxon%3A1496","Clostridioides difficile"],["NCBITaxon%3A645462","Clostridioides difficile CD196"],["NCBITaxon%3A499176","Clostridioides difficile CIP 107932"]]},{"id":"NCBITaxon:646","l":"Aeromonas sobria","na":3,"nb":2,"a":[["Pfam%3APF01117","Aerolysin toxin"],["Pfam%3APF03440","Aerolysin/Pertussis toxin (APT) domain"],["PROSITE%3APS00274","Aerolysin type toxins signature"]],"b":[["NCBITaxon%3A646","Aeromonas sobria"],["NCBITaxon%3A654","Aeromonas veronii"]]},{"id":"NCBITaxon:647720","l":"Shimia isoporae","na":2,"nb":3,"a":[["TED%3AAF-A0A4R1NAD6-F1-model_v4_TED01","TED novel fold AF-A0A4R1NAD6-F1-model_v4_TED01"],["TED%3AAF-A0A4R1NBY7-F1-model_v4_TED03","TED novel fold AF-A0A4R1NBY7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A487319","Shewanella marina"],["NCBITaxon%3A1236542","Shewanella marina JCM 15074"],["NCBITaxon%3A647720","Shimia isoporae"]]},{"id":"NCBITaxon:661478","l":"Fimbriimonas ginsengisoli Gsoil 348","na":3,"nb":2,"a":[["TED%3AAF-A0A068NS74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A068NS74-F1-model_v4_TED01"],["TED%3AAF-A0A068NSB0-F1-model_v4_TED02","TED novel fold AF-A0A068NSB0-F1-model_v4_TED02"],["TED%3AAF-A0A068NX35-F1-model_v4_TED03","TED novel fold AF-A0A068NX35-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1005039","Fimbriimonas ginsengisoli"],["NCBITaxon%3A661478","Fimbriimonas ginsengisoli Gsoil 348"]]},{"id":"NCBITaxon:678","l":"Vibrio sp.","na":2,"nb":3,"a":[["Pfam%3APF17851","Beta xylosidase C-terminal Concanavalin A-like domain"],["Pfam%3APF11606","Family 31 carbohydrate binding protein"]],"b":[["NCBITaxon%3A2077090","Vibrio gangliei"],["NCBITaxon%3A678","Vibrio sp."],["NCBITaxon%3A1046128","Vibrio zhanjiangensis"]]},{"id":"NCBITaxon:688270","l":"Cellulophaga algicola (strain DSM 14237 / IC166 / ACAM 630)","na":3,"nb":2,"a":[["TED%3AAF-E6XBJ1-F1-model_v4_TED01","TED highly-symmetric fold AF-E6XBJ1-F1-model_v4_TED01"],["TED%3AAF-E6X960-F1-model_v4_TED02","TED novel fold AF-E6X960-F1-model_v4_TED02"],["TED%3AAF-E6XEV2-F1-model_v4_TED02","TED novel fold AF-E6XEV2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A59600","Cellulophaga algicola"],["NCBITaxon%3A688270","Cellulophaga algicola DSM 14237"]]},{"id":"NCBITaxon:746128","l":"Aspergillus fumigatus","na":2,"nb":3,"a":[["Pfam%3APF07335","Fungal chitosanase of glycosyl hydrolase group 75"],["Pfam%3APF12296","Hydrophobic surface binding protein A"]],"b":[["NCBITaxon%3A746128","Aspergillus fumigatus"],["NCBITaxon%3A451804","Aspergillus fumigatus A1163"],["NCBITaxon%3A41122","Aspergillus fumigatus var. fumigatus"]]},{"id":"NCBITaxon:82979","l":"Budvicia aquatica","na":2,"nb":3,"a":[["TED%3AAF-A0A2C6DMW2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2C6DMW2-F1-model_v4_TED01"],["TED%3AAF-A0A484ZI63-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A484ZI63-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A82979","Budvicia aquatica"],["NCBITaxon%3A1111728","Budvicia aquatica DSM 5075 = ATCC 35567"],["NCBITaxon%3A2304490","Pragia sp."]]},{"id":"NCBITaxon:83167","l":"Pseudomonas syringae pv. aptata","na":2,"nb":3,"a":[["Pfam%3APF22079","Type III effector protein HopBA1"],["Pfam%3APF04877","HrpZ"]],"b":[["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A83167","Pseudomonas syringae pv. aptata"],["NCBITaxon%3A629268","Pseudomonas syringae pv. aptata str. DSM 50252"]]},{"id":"NCBITaxon:83771","l":"Succinivibrio dextrinosolvens","na":2,"nb":3,"a":[["TED%3AAF-A0A662ZAL8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A662ZAL8-F1-model_v4_TED01"],["TED%3AAF-A0A662ZAR2-F1-model_v4_TED01","TED novel fold AF-A0A662ZAR2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A83771","Succinivibrio dextrinosolvens"],["NCBITaxon%3A1123324","Succinivibrio dextrinosolvens DSM 3072"],["NCBITaxon%3A1410676","Succinivibrio dextrinosolvens H5"]]},{"id":"NCBITaxon:85995","l":"Humicola insolens","na":3,"nb":2,"a":[["Pfam%3APF17851","Beta xylosidase C-terminal Concanavalin A-like domain"],["PROSITE%3APS00655","Glycosyl hydrolases family 6 signature 1"],["PROSITE%3APS00656","Glycosyl hydrolases family 6 signature 2"]],"b":[["NCBITaxon%3A85995","Mycothermus thermophilus"],["NCBITaxon%3A686564","Mycothermus thermophilus ATCC 16453"]]},{"id":"NCBITaxon:878","l":"Solidesulfovibrio fructosivorans","na":3,"nb":2,"a":[["Pfam%3APF27537","HoxL-like"],["PROSITE%3APS00507","Nickel-dependent hydrogenases large subunit signature 1"],["PROSITE%3APS00508","Nickel-dependent hydrogenases large subunit signature 2"]],"b":[["NCBITaxon%3A878","Solidesulfovibrio fructosivorans"],["NCBITaxon%3A596151","Solidesulfovibrio fructosivorans JJ]"]]},{"id":"NCBITaxon:879","l":"Megalodesulfovibrio gigas","na":2,"nb":3,"a":[["Pfam%3APF13370","4Fe-4S single cluster domain of Ferredoxin I"],["PROSITE%3APS00202","Rubredoxin signature"]],"b":[["NCBITaxon%3A885","Desulfovibrio sp."],["NCBITaxon%3A879","Megalodesulfovibrio gigas"],["NCBITaxon%3A1121448","Megalodesulfovibrio gigas DSM 1382 = ATCC 19364"]]},{"id":"NCBITaxon:88274","l":"delta proteobacterium NaphS2","na":3,"nb":2,"a":[["TED%3AAF-D8EY11-F1-model_v4_TED01","TED highly-symmetric fold AF-D8EY11-F1-model_v4_TED01"],["TED%3AAF-D8F978-F1-model_v4_TED02","TED highly-symmetric fold AF-D8F978-F1-model_v4_TED02"],["TED%3AAF-D8F8A3-F1-model_v4_TED01","TED novel fold AF-D8F8A3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A88274","delta proteobacterium NaphS2"]]},{"id":"NCBITaxon:885957","l":"Desulfosarcina ovata subsp. sediminis","na":3,"nb":2,"a":[["TED%3AAF-A0A5K7ZII7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5K7ZII7-F1-model_v4_TED01"],["TED%3AAF-A0A5K7ZKN4-F1-model_v4_TED02","TED novel fold AF-A0A5K7ZKN4-F1-model_v4_TED02"],["TED%3AAF-A0A5K8A0E3-F1-model_v4_TED03","TED novel fold AF-A0A5K8A0E3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A83564","Desulfosarcina ovata"],["NCBITaxon%3A885957","Desulfosarcina ovata subsp. sediminis"]]},{"id":"NCBITaxon:886293","l":"Singulisphaera acidiphila (strain ATCC BAA-1392 / DSM 18658 / VKM B-2454 / MOB10)","na":3,"nb":2,"a":[["TED%3AAF-L0DF60-F1-model_v4_TED01","TED highly-symmetric fold AF-L0DF60-F1-model_v4_TED01"],["TED%3AAF-L0DFV3-F1-model_v4_TED01","TED highly-symmetric fold AF-L0DFV3-F1-model_v4_TED01"],["TED%3AAF-L0DBJ5-F1-model_v4_TED02","TED novel fold AF-L0DBJ5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A466153","Singulisphaera acidiphila"],["NCBITaxon%3A886293","Singulisphaera acidiphila DSM 18658"]]},{"id":"NCBITaxon:97084","l":"Halobacteriovorax marinus","na":3,"nb":2,"a":[["TED%3AAF-A0A1Y5FAL2-F1-model_v4_TED01","TED novel fold AF-A0A1Y5FAL2-F1-model_v4_TED01"],["TED%3AAF-A0A1Y5FC91-F1-model_v4_TED01","TED novel fold AF-A0A1Y5FC91-F1-model_v4_TED01"],["TED%3AAF-A0A1Y5FCF4-F1-model_v4_TED02","TED novel fold AF-A0A1Y5FCF4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A97084","Halobacteriovorax marinus"],["NCBITaxon%3A862908","Halobacteriovorax marinus SJ"]]},{"id":"NCBITaxon:100884","l":"Coprobacillus cateniformis","na":2,"nb":2,"a":[["TED%3AAF-E7G7Y6-F1-model_v4_TED01","TED highly-symmetric fold AF-E7G7Y6-F1-model_v4_TED01"],["TED%3AAF-E7G976-F1-model_v4_TED02","TED highly-symmetric fold AF-E7G976-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A100884","Coprobacillus cateniformis"],["NCBITaxon%3A1297794","Coprobacillus cateniformis JCM 10604"]]},{"id":"NCBITaxon:1028307","l":"","na":2,"nb":2,"a":[["Pfam%3APF16031","TonB polyproline region"],["Pfam%3APF09078","CheY binding"]],"b":[["NCBITaxon%3A548","Klebsiella aerogenes"],["NCBITaxon%3A1028307","Klebsiella aerogenes KCTC 2190"]]},{"id":"NCBITaxon:1032480","l":"Microlunatus phosphovorus NM-1","na":2,"nb":2,"a":[["TED%3AAF-F5XIG6-F1-model_v4_TED02","TED novel fold AF-F5XIG6-F1-model_v4_TED02"],["TED%3AAF-F5XQ24-F1-model_v4_TED04","TED novel fold AF-F5XQ24-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A29405","Microlunatus phosphovorus"],["NCBITaxon%3A1032480","Microlunatus phosphovorus NM-1"]]},{"id":"NCBITaxon:1033810","l":"Haloplasma contractile SSD-17B","na":2,"nb":2,"a":[["TED%3AAF-F7PZK9-F1-model_v4_TED01","TED highly-symmetric fold AF-F7PZK9-F1-model_v4_TED01"],["TED%3AAF-U2EDU2-F1-model_v4_TED03","TED novel fold AF-U2EDU2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A471825","Haloplasma contractile"],["NCBITaxon%3A1033810","Haloplasma contractile SSD-17B"]]},{"id":"NCBITaxon:1051646","l":"Vibrio tubiashii ATCC 19109","na":2,"nb":2,"a":[["TED%3AAF-F9T5D9-F1-model_v4_TED01","TED highly-symmetric fold AF-F9T5D9-F1-model_v4_TED01"],["TED%3AAF-F9T6Q9-F1-model_v4_TED01","TED highly-symmetric fold AF-F9T6Q9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29498","Vibrio tubiashii"],["NCBITaxon%3A1051646","Vibrio tubiashii ATCC 19109"]]},{"id":"NCBITaxon:105351","l":"Aspergillus awamori","na":2,"nb":2,"a":[["PROSITE%3APS00820","Glucoamylase active site region signature"],["TED%3AAF-A0A401KM36-F1-model_v4_TED03","TED novel fold AF-A0A401KM36-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A105351","Aspergillus awamori"],["NCBITaxon%3A309746","Aspergillus awamori var. piceus"]]},{"id":"NCBITaxon:1071","l":"Rhodopila globiformis","na":2,"nb":2,"a":[["TED%3AAF-A0A2S6NEC8-F1-model_v4_TED01","TED novel fold AF-A0A2S6NEC8-F1-model_v4_TED01"],["TED%3AAF-A0A2S6NJW5-F1-model_v4_TED01","TED novel fold AF-A0A2S6NJW5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A563170","Ferruginibacter alkalilentus"],["NCBITaxon%3A1071","Rhodopila globiformis"]]},{"id":"NCBITaxon:1073999","l":"Cronobacter condimenti 1330","na":2,"nb":2,"a":[["TED%3AAF-K8A163-F1-model_v4_TED01","TED highly-symmetric fold AF-K8A163-F1-model_v4_TED01"],["TED%3AAF-K8A2Z7-F1-model_v4_TED01","TED highly-symmetric fold AF-K8A2Z7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1163710","Cronobacter condimenti"],["NCBITaxon%3A1073999","Cronobacter condimenti 1330"]]},{"id":"NCBITaxon:1108045","l":"Gordonia rhizosphera NBRC 16068","na":2,"nb":2,"a":[["TED%3AAF-K6W7E5-F1-model_v4_TED03","TED highly-symmetric fold AF-K6W7E5-F1-model_v4_TED03"],["TED%3AAF-K6V733-F1-model_v4_TED02","TED novel fold AF-K6V733-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A83341","Gordonia rhizosphera"],["NCBITaxon%3A1108045","Gordonia rhizosphera NBRC 16068"]]},{"id":"NCBITaxon:1115515","l":"Pseudescherichia vulneris NBRC 102420","na":2,"nb":2,"a":[["TED%3AAF-A0A090UX33-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A090UX33-F1-model_v4_TED05"],["TED%3AAF-A0A090V6A2-F1-model_v4_TED01","TED novel fold AF-A0A090V6A2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A566","Pseudescherichia vulneris"],["NCBITaxon%3A1115515","Pseudescherichia vulneris NBRC 102420"]]},{"id":"NCBITaxon:1116389","l":"Devosia insulae DS-56","na":2,"nb":2,"a":[["TED%3AAF-A0A1E5XN43-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1E5XN43-F1-model_v4_TED02"],["TED%3AAF-A0A1E5XX71-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1E5XX71-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A408174","Devosia insulae"],["NCBITaxon%3A1116389","Devosia insulae DS-56"]]},{"id":"NCBITaxon:1120925","l":"Acinetobacter bouvetii DSM 14964 = CIP 107468","na":2,"nb":2,"a":[["proteintraitsmech%3AELIFE109154_VibH_like","VibH-like metallophore standalone condensation enzyme family"],["TED%3AAF-N9C7M4-F1-model_v4_TED02","TED novel fold AF-N9C7M4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A202951","Acinetobacter bouvetii"],["NCBITaxon%3A1120925","Acinetobacter bouvetii DSM 14964 = CIP 107468"]]},{"id":"NCBITaxon:1121264","l":"Caloranaerobacter azorensis DSM 13643","na":2,"nb":2,"a":[["TED%3AAF-A0A1M5V0T2-F1-model_v4_TED02","TED novel fold AF-A0A1M5V0T2-F1-model_v4_TED02"],["TED%3AAF-A0A1M5V0T2-F1-model_v4_TED03","TED novel fold AF-A0A1M5V0T2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A116090","Caloranaerobacter azorensis"],["NCBITaxon%3A1121264","Caloranaerobacter azorensis DSM 13643"]]},{"id":"NCBITaxon:1121279","l":"Chitinimonas taiwanensis DSM 18899","na":2,"nb":2,"a":[["TED%3AAF-A0A1K2HNH6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1K2HNH6-F1-model_v4_TED02"],["TED%3AAF-A0A1K2HS13-F1-model_v4_TED04","TED novel fold AF-A0A1K2HS13-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A240412","Chitinimonas taiwanensis"],["NCBITaxon%3A1121279","Chitinimonas taiwanensis DSM 18899"]]},{"id":"NCBITaxon:1121395","l":"Desulfitobacterium chlororespirans DSM 11544","na":2,"nb":2,"a":[["TED%3AAF-A0A1M7UUA6-F1-model_v4_TED02","TED novel fold AF-A0A1M7UUA6-F1-model_v4_TED02"],["TED%3AAF-A0A1M7UUA6-F1-model_v4_TED03","TED novel fold AF-A0A1M7UUA6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A51616","Desulfitobacterium chlororespirans"],["NCBITaxon%3A1121395","Desulfitobacterium chlororespirans DSM 11544"]]},{"id":"NCBITaxon:1121419","l":"Desulfosporosinus hippei DSM 8344","na":2,"nb":2,"a":[["TED%3AAF-A0A1G8D348-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G8D348-F1-model_v4_TED01"],["TED%3AAF-A0A1G8CVS7-F1-model_v4_TED01","TED novel fold AF-A0A1G8CVS7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A569859","Desulfosporosinus hippei"],["NCBITaxon%3A1121419","Desulfosporosinus hippei DSM 8344"]]},{"id":"NCBITaxon:1121868","l":"Enterovibrio nigricans DSM 22720","na":2,"nb":2,"a":[["TED%3AAF-A0A1T4UXP3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1T4UXP3-F1-model_v4_TED01"],["TED%3AAF-A0A1T4VT23-F1-model_v4_TED01","TED novel fold AF-A0A1T4VT23-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A504469","Enterovibrio nigricans"],["NCBITaxon%3A1121868","Enterovibrio nigricans DSM 22720"]]},{"id":"NCBITaxon:1121886","l":"Flavobacterium croceum DSM 17960","na":2,"nb":2,"a":[["TED%3AAF-A0A2S4N5H0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2S4N5H0-F1-model_v4_TED03"],["TED%3AAF-A0A2S4N9Y2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2S4N9Y2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A370975","Flavobacterium croceum"],["NCBITaxon%3A1121886","Flavobacterium croceum DSM 17960"]]},{"id":"NCBITaxon:1121955","l":"Hymenobacter daecheongensis DSM 21074","na":2,"nb":2,"a":[["TED%3AAF-A0A1M6EGP6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M6EGP6-F1-model_v4_TED02"],["TED%3AAF-A0A1M6M5E1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M6M5E1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A496053","Hymenobacter daecheongensis"],["NCBITaxon%3A1121955","Hymenobacter daecheongensis DSM 21074"]]},{"id":"NCBITaxon:1122192","l":"Marinactinospora thermotolerans DSM 45154","na":2,"nb":2,"a":[["TED%3AAF-A0A1T4KF05-F1-model_v4_TED04","TED novel fold AF-A0A1T4KF05-F1-model_v4_TED04"],["TED%3AAF-A0A1T4TG93-F1-model_v4_TED01","TED novel fold AF-A0A1T4TG93-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A531310","Marinactinospora thermotolerans"],["NCBITaxon%3A1122192","Marinactinospora thermotolerans DSM 45154"]]},{"id":"NCBITaxon:1123404","l":"Tissierella praeacuta DSM 18095","na":2,"nb":2,"a":[["TED%3AAF-A0A1M4YWW1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M4YWW1-F1-model_v4_TED01"],["TED%3AAF-A0A1M4X8A7-F1-model_v4_TED01","TED novel fold AF-A0A1M4X8A7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A43131","Tissierella praeacuta"],["NCBITaxon%3A1123404","Tissierella praeacuta DSM 18095"]]},{"id":"NCBITaxon:11247","l":"Bovine respiratory syncytial virus (strain A51908)","na":2,"nb":2,"a":[["Pfam%3APF00523","Fusion glycoprotein F0"],["Pfam%3APF00802","Pneumovirus attachment glycoprotein G"]],"b":[["NCBITaxon%3A60961","Shewanella woodyi"],["NCBITaxon%3A392500","Shewanella woodyi ATCC 51908"]]},{"id":"NCBITaxon:1177179","l":"Alcanivorax hongdengensis A-11-3","na":2,"nb":2,"a":[["TED%3AAF-L0WEI9-F1-model_v4_TED02","TED highly-symmetric fold AF-L0WEI9-F1-model_v4_TED02"],["TED%3AAF-L0WAP4-F1-model_v4_TED02","TED novel fold AF-L0WAP4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A519051","Alcanivorax hongdengensis"],["NCBITaxon%3A1177179","Alcanivorax hongdengensis A-11-3"]]},{"id":"NCBITaxon:1184267","l":"Pseudobdellovibrio exovorus JSS","na":2,"nb":2,"a":[["TED%3AAF-M4VA20-F1-model_v4_TED02","TED highly-symmetric fold AF-M4VA20-F1-model_v4_TED02"],["TED%3AAF-M4VEE5-F1-model_v4_TED01","TED highly-symmetric fold AF-M4VEE5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A453816","Pseudobdellovibrio exovorus"],["NCBITaxon%3A1184267","Pseudobdellovibrio exovorus JSS"]]},{"id":"NCBITaxon:1185650","l":"Mycobacteroides abscessus subsp. abscessus","na":2,"nb":2,"a":[["TED%3AAF-A0A8B4EU15-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B4EU15-F1-model_v4_TED01"],["TED%3AAF-A0A8B4ERD5-F1-model_v4_TED01","TED novel fold AF-A0A8B4ERD5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A36809","Mycobacteroides abscessus"],["NCBITaxon%3A1185650","Mycobacteroides abscessus subsp. abscessus"]]},{"id":"NCBITaxon:1189310","l":"Corallococcus macrosporus DSM 14697","na":2,"nb":2,"a":[["TED%3AAF-A0A250JQZ3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A250JQZ3-F1-model_v4_TED02"],["TED%3AAF-A0A250K364-F1-model_v4_TED01","TED novel fold AF-A0A250K364-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A35","Corallococcus macrosporus"],["NCBITaxon%3A1189310","Corallococcus macrosporus DSM 14697"]]},{"id":"NCBITaxon:1192854","l":"Granulosicoccus antarcticus IMCC3135","na":2,"nb":2,"a":[["TED%3AAF-A0A2Z2NPF3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2Z2NPF3-F1-model_v4_TED03"],["TED%3AAF-A0A2Z2P0Z5-F1-model_v4_TED01","TED novel fold AF-A0A2Z2P0Z5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A437505","Granulosicoccus antarcticus"],["NCBITaxon%3A1192854","Granulosicoccus antarcticus IMCC3135"]]},{"id":"NCBITaxon:119641","l":"Clostridium uliginosum","na":2,"nb":2,"a":[["TED%3AAF-A0A1I1R8X9-F1-model_v4_TED03","TED novel fold AF-A0A1I1R8X9-F1-model_v4_TED03"],["TED%3AAF-A0A1I1S8C7-F1-model_v4_TED03","TED novel fold AF-A0A1I1S8C7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A119641","Clostridium uliginosum"],["NCBITaxon%3A1121343","Clostridium uliginosum DSM 12992"]]},{"id":"NCBITaxon:1223802","l":"Sulfuritalea hydrogenivorans sk43H","na":2,"nb":2,"a":[["TED%3AAF-W0SFR7-F1-model_v4_TED01","TED highly-symmetric fold AF-W0SFR7-F1-model_v4_TED01"],["TED%3AAF-W0SGJ9-F1-model_v4_TED03","TED novel fold AF-W0SGJ9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A748811","Sulfuritalea hydrogenivorans"],["NCBITaxon%3A1223802","Sulfuritalea hydrogenivorans sk43H"]]},{"id":"NCBITaxon:1227453","l":"Haloarcula japonica (strain ATCC 49778 / DSM 6131 / JCM 7785 / NBRC 101032 / NCIMB 13157 / TR-1)","na":2,"nb":2,"a":[["Pfam%3APF04240","Carotenoid biosynthesis protein"],["TED%3AAF-M0LHX3-F1-model_v4_TED01","TED highly-symmetric fold AF-M0LHX3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29282","Haloarcula japonica"],["NCBITaxon%3A1227453","Haloarcula japonica DSM 6131"]]},{"id":"NCBITaxon:1227494","l":"Natrinema altunense (strain JCM 12890 / CGMCC 1.3731 / AJ2)","na":2,"nb":2,"a":[["Pfam%3APF28161","Fusexin 1"],["TED%3AAF-L9ZJ05-F1-model_v4_TED02","TED highly-symmetric fold AF-L9ZJ05-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A222984","Natrinema altunense"],["NCBITaxon%3A1227494","Natrinema altunense JCM 12890"]]},{"id":"NCBITaxon:1231","l":"Nitrosospira multiformis","na":2,"nb":2,"a":[["TED%3AAF-A0A1I0DRD9-F1-model_v4_TED01","TED novel fold AF-A0A1I0DRD9-F1-model_v4_TED01"],["TED%3AAF-A0A2T5IBV5-F1-model_v4_TED01","TED novel fold AF-A0A2T5IBV5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1231","Nitrosospira multiformis"],["NCBITaxon%3A323848","Nitrosospira multiformis ATCC 25196"]]},{"id":"NCBITaxon:123214","l":"Persephonella marina (strain DSM 14350 / EX-H1)","na":2,"nb":2,"a":[["PROSITE%3APS01228","Hypothetical cof family signature 1"],["TED%3AAF-C0QUQ0-F1-model_v4_TED01","TED highly-symmetric fold AF-C0QUQ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A309805","Persephonella marina"],["NCBITaxon%3A123214","Persephonella marina EX-H1"]]},{"id":"NCBITaxon:1236504","l":"Prevotella histicola JCM 15637 = DNF00424","na":2,"nb":2,"a":[["TED%3AAF-A0A095Z5H5-F1-model_v4_TED02","TED novel fold AF-A0A095Z5H5-F1-model_v4_TED02"],["TED%3AAF-A0A096B9P0-F1-model_v4_TED01","TED novel fold AF-A0A096B9P0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A470565","Prevotella histicola"],["NCBITaxon%3A1236504","Prevotella histicola JCM 15637 = DNF00424"]]},{"id":"NCBITaxon:1278073","l":"","na":2,"nb":2,"a":[["TED%3AAF-L7U5Z3-F1-model_v4_TED02","TED novel fold AF-L7U5Z3-F1-model_v4_TED02"],["TED%3AAF-L7UEI7-F1-model_v4_TED03","TED novel fold AF-L7UEI7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A83455","Myxococcus stipitatus"],["NCBITaxon%3A1278073","Myxococcus stipitatus DSM 14675"]]},{"id":"NCBITaxon:1283301","l":"Streptomyces afghaniensis 772","na":2,"nb":2,"a":[["TED%3AAF-S4MYJ0-F1-model_v4_TED01","TED highly-symmetric fold AF-S4MYJ0-F1-model_v4_TED01"],["TED%3AAF-S4N3X6-F1-model_v4_TED01","TED novel fold AF-S4N3X6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A66865","Streptomyces afghaniensis"],["NCBITaxon%3A1283301","Streptomyces afghaniensis 772"]]},{"id":"NCBITaxon:1284","l":"Staphylococcus hyicus","na":2,"nb":2,"a":[["Pfam%3APF04650","YSIRK type signal peptide"],["PROSITE%3APS01123","Thermonuclease family signature 1"]],"b":[["NCBITaxon%3A1284","Staphylococcus hyicus"],["NCBITaxon%3A29387","Staphylococcus sp."]]},{"id":"NCBITaxon:1286635","l":"Desulfotignum phosphitoxidans DSM 13687","na":2,"nb":2,"a":[["TED%3AAF-S0G346-F1-model_v4_TED01","TED highly-symmetric fold AF-S0G346-F1-model_v4_TED01"],["TED%3AAF-S0G0I7-F1-model_v4_TED02","TED novel fold AF-S0G0I7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A190898","Desulfotignum phosphitoxidans"],["NCBITaxon%3A1286635","Desulfotignum phosphitoxidans DSM 13687"]]},{"id":"NCBITaxon:1293036","l":"Metallosphaera hakonensis JCM 8857 = DSM 7519","na":2,"nb":2,"a":[["TED%3AAF-A0A2U9IR82-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2U9IR82-F1-model_v4_TED02"],["TED%3AAF-A0A2U9IUQ0-F1-model_v4_TED02","TED novel fold AF-A0A2U9IUQ0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A79601","Metallosphaera hakonensis"],["NCBITaxon%3A1293036","Metallosphaera hakonensis JCM 8857 = DSM 7519"]]},{"id":"NCBITaxon:1293045","l":"Limnohabitans planktonicus II-D5","na":2,"nb":2,"a":[["TED%3AAF-A0A2T7UA66-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2T7UA66-F1-model_v4_TED04"],["TED%3AAF-A0A2T7ST92-F1-model_v4_TED03","TED novel fold AF-A0A2T7ST92-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A540060","Limnohabitans planktonicus"],["NCBITaxon%3A1293045","Limnohabitans planktonicus II-D5"]]},{"id":"NCBITaxon:1294264","l":"Lysinibacillus boronitolerans JCM 21713 = 10a = NBRC 103108","na":2,"nb":2,"a":[["TED%3AAF-A0A0A3ILB0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A3ILB0-F1-model_v4_TED01"],["TED%3AAF-A0A0A3IJV1-F1-model_v4_TED01","TED novel fold AF-A0A0A3IJV1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A309788","Lysinibacillus boronitolerans"],["NCBITaxon%3A1294264","Lysinibacillus boronitolerans JCM 21713 = 10a = NBRC 103108"]]},{"id":"NCBITaxon:1294270","l":"Melittangium boletus DSM 14713","na":2,"nb":2,"a":[["TED%3AAF-A0A250IC43-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A250IC43-F1-model_v4_TED02"],["TED%3AAF-A0A250IHT1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250IHT1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A83453","Melittangium boletus"],["NCBITaxon%3A1294270","Melittangium boletus DSM 14713"]]},{"id":"NCBITaxon:1303518","l":"Chthonomonas calidirosea (strain DSM 23976 / ICMP 18418 / T49)","na":2,"nb":2,"a":[["TED%3AAF-S0EWH8-F1-model_v4_TED01","TED highly-symmetric fold AF-S0EWH8-F1-model_v4_TED01"],["TED%3AAF-S0EW19-F1-model_v4_TED01","TED novel fold AF-S0EW19-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A454171","Chthonomonas calidirosea"],["NCBITaxon%3A1303518","Chthonomonas calidirosea T49"]]},{"id":"NCBITaxon:1305617","l":"Porphyromonas crevioricanis JCM 15906","na":2,"nb":2,"a":[["TED%3AAF-T1DS86-F1-model_v4_TED01","TED highly-symmetric fold AF-T1DS86-F1-model_v4_TED01"],["TED%3AAF-T1DTH4-F1-model_v4_TED03","TED highly-symmetric fold AF-T1DTH4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A393921","Porphyromonas crevioricanis"],["NCBITaxon%3A1305617","Porphyromonas crevioricanis JCM 15906"]]},{"id":"NCBITaxon:1341154","l":"Flavobacterium cauense R2A-7","na":2,"nb":2,"a":[["TED%3AAF-V6RYF5-F1-model_v4_TED01","TED novel fold AF-V6RYF5-F1-model_v4_TED01"],["TED%3AAF-V6S0E8-F1-model_v4_TED02","TED novel fold AF-V6S0E8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A510946","Flavobacterium cauense"],["NCBITaxon%3A1341154","Flavobacterium cauense R2A-7"]]},{"id":"NCBITaxon:1344584","l":"Archaeoglobus fulgidus DSM 8774","na":2,"nb":2,"a":[["TED%3AAF-A0A075WBT5-F1-model_v4_TED01","TED novel fold AF-A0A075WBT5-F1-model_v4_TED01"],["TED%3AAF-A0A075WIA8-F1-model_v4_TED01","TED novel fold AF-A0A075WIA8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2234","Archaeoglobus fulgidus"],["NCBITaxon%3A1344584","Archaeoglobus fulgidus DSM 8774"]]},{"id":"NCBITaxon:135947","l":"Actinoplanes awajinensis subsp. mycoplanecinus","na":2,"nb":2,"a":[["TED%3AAF-A0A101JCS8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A101JCS8-F1-model_v4_TED01"],["TED%3AAF-A0A101JE48-F1-model_v4_TED01","TED novel fold AF-A0A101JE48-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A135946","Actinoplanes awajinensis"],["NCBITaxon%3A135947","Actinoplanes awajinensis subsp. mycoplanecinus"]]},{"id":"NCBITaxon:1365250","l":"Pseudoalteromonas luteoviolacea DSM 6061","na":2,"nb":2,"a":[["TED%3AAF-A0A166UDI2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A166UDI2-F1-model_v4_TED01"],["TED%3AAF-A0A166WU22-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A166WU22-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A43657","Pseudoalteromonas luteoviolacea"],["NCBITaxon%3A1365250","Pseudoalteromonas luteoviolacea DSM 6061"]]},{"id":"NCBITaxon:1386089","l":"Intrasporangium oryzae NRRL B-24470","na":2,"nb":2,"a":[["TED%3AAF-W9G9T8-F1-model_v4_TED01","TED highly-symmetric fold AF-W9G9T8-F1-model_v4_TED01"],["TED%3AAF-W9GBB2-F1-model_v4_TED02","TED novel fold AF-W9GBB2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A412687","Intrasporangium oryzae"],["NCBITaxon%3A1386089","Intrasporangium oryzae NRRL B-24470"]]},{"id":"NCBITaxon:1420917","l":"Marinobacter salarius","na":2,"nb":2,"a":[["TED%3AAF-W5YQE2-F1-model_v4_TED01","TED highly-symmetric fold AF-W5YQE2-F1-model_v4_TED01"],["TED%3AAF-A0A1W6KFK7-F1-model_v4_TED01","TED novel fold AF-A0A1W6KFK7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1420917","Marinobacter salarius"],["NCBITaxon%3A1761792","Marinobacter sp. DSM 26291"]]},{"id":"NCBITaxon:1434","l":"","na":2,"nb":2,"a":[["Pfam%3APF17997","Insecticidal delta-endotoxin CryIA(c) domain 5"],["Pfam%3APF21463","Cry1Ac, domain VII"]],"b":[["NCBITaxon%3A1434","Bacillus thuringiensis serovar berliner"],["NCBITaxon%3A527031","Bacillus thuringiensis serovar berliner ATCC 10792"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":2,"nb":2,"a":[["PROSITE%3APS01120","Urease nickel ligands signature"],["PROSITE%3APS00145","Urease active site"]],"b":[["NCBITaxon%3A1474","Sporosarcina pasteurii"],["NCBITaxon%3A1415631","Sporosarcina pasteurii NCIM 2477"]]},{"id":"NCBITaxon:151781","l":"Lactobacillus intestinalis","na":2,"nb":2,"a":[["TED%3AAF-A0A4S2BPB9-F1-model_v4_TED01","TED novel fold AF-A0A4S2BPB9-F1-model_v4_TED01"],["TED%3AAF-A0A4S2BRX7-F1-model_v4_TED01","TED novel fold AF-A0A4S2BRX7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A151781","Lactobacillus intestinalis"],["NCBITaxon%3A1423761","Lactobacillus intestinalis DSM 6629"]]},{"id":"NCBITaxon:1527","l":"Anaerocolumna aminovalerica","na":2,"nb":2,"a":[["TED%3AAF-A0A1I5I955-F1-model_v4_TED02","TED novel fold AF-A0A1I5I955-F1-model_v4_TED02"],["TED%3AAF-A0A1I5ILH1-F1-model_v4_TED04","TED novel fold AF-A0A1I5ILH1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1527","Anaerocolumna aminovalerica"],["NCBITaxon%3A1121297","Anaerocolumna aminovalerica DSM 1283"]]},{"id":"NCBITaxon:1532905","l":"Paenibacillus sp. CAA11","na":2,"nb":2,"a":[["TED%3AAF-A0A2S0U7C4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S0U7C4-F1-model_v4_TED01"],["TED%3AAF-A0A2S0U9Q8-F1-model_v4_TED03","TED novel fold AF-A0A2S0U9Q8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A58172","Paenibacillus sp."],["NCBITaxon%3A1532905","Paenibacillus sp. CAA11"]]},{"id":"NCBITaxon:1533","l":"Clostridium fallax","na":2,"nb":2,"a":[["TED%3AAF-A0A1M4V1D2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M4V1D2-F1-model_v4_TED02"],["TED%3AAF-A0A1M4U9I6-F1-model_v4_TED01","TED novel fold AF-A0A1M4U9I6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1533","Clostridium fallax"],["NCBITaxon%3A1121309","Clostridium fallax DSM 2631"]]},{"id":"NCBITaxon:1557","l":"Peptoclostridium litorale","na":2,"nb":2,"a":[["Pfam%3APF07355","Glycine/sarcosine/betaine reductase selenoprotein B (GRDB)"],["Pfam%3APF04723","Glycine reductase complex selenoprotein A"]],"b":[["NCBITaxon%3A1557","Peptoclostridium litorale"],["NCBITaxon%3A1121324","Peptoclostridium litorale DSM 5388"]]},{"id":"NCBITaxon:155863","l":"Methanothermococcus okinawensis","na":2,"nb":2,"a":[["TED%3AAF-A0A832YR66-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A832YR66-F1-model_v4_TED02"],["TED%3AAF-A0A832ZXX8-F1-model_v4_TED01","TED novel fold AF-A0A832ZXX8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A155863","Methanothermococcus okinawensis"],["NCBITaxon%3A647113","Methanothermococcus okinawensis IH1"]]},{"id":"NCBITaxon:156889","l":"Magnetococcus marinus MC-1","na":2,"nb":2,"a":[["Pfam%3APF02622","AlgH-like"],["Pfam%3APF04279","Intracellular septation protein A"]],"b":[["NCBITaxon%3A1124597","Magnetococcus marinus"],["NCBITaxon%3A156889","Magnetococcus marinus MC-1"]]},{"id":"NCBITaxon:1608996","l":"Pseudomonas helleri","na":2,"nb":2,"a":[["TED%3AAF-A0A7X1XEY7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X1XEY7-F1-model_v4_TED01"],["TED%3AAF-A0A7X1WZY1-F1-model_v4_TED01","TED novel fold AF-A0A7X1WZY1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1460875","Bisgaardia miroungae"],["NCBITaxon%3A1608996","Pseudomonas helleri"]]},{"id":"NCBITaxon:161398","l":"Pseudoalteromonas phenolica","na":2,"nb":2,"a":[["TED%3AAF-A0A4Q7IPD1-F1-model_v4_TED01","TED novel fold AF-A0A4Q7IPD1-F1-model_v4_TED01"],["TED%3AAF-A0A4Q7IRU1-F1-model_v4_TED01","TED novel fold AF-A0A4Q7IRU1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A161398","Pseudoalteromonas phenolica"],["NCBITaxon%3A1315281","Pseudoalteromonas phenolica O-BC30"]]},{"id":"NCBITaxon:1629","l":"Weissella viridescens","na":2,"nb":2,"a":[["Pfam%3APF02388","FemAB family"],["TED%3AAF-A0A3P2RFX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3P2RFX7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1896315","Weissella sp."],["NCBITaxon%3A1629","Weissella viridescens"]]},{"id":"NCBITaxon:173480","l":"Gemmatimonas aurantiaca","na":2,"nb":2,"a":[["TED%3AAF-A0A3D4VAD6-F1-model_v4_TED03","TED novel fold AF-A0A3D4VAD6-F1-model_v4_TED03"],["TED%3AAF-A0A3D4VE85-F1-model_v4_TED02","TED novel fold AF-A0A3D4VE85-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A173480","Gemmatimonas aurantiaca"],["NCBITaxon%3A379066","Gemmatimonas aurantiaca T-27"]]},{"id":"NCBITaxon:1736367","l":"Chryseobacterium sp. Leaf405","na":2,"nb":2,"a":[["TED%3AAF-A0A0Q6A750-F1-model_v4_TED01","TED novel fold AF-A0A0Q6A750-F1-model_v4_TED01"],["TED%3AAF-A0A0Q6AVC3-F1-model_v4_TED02","TED novel fold AF-A0A0Q6AVC3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1871047","Chryseobacterium sp."],["NCBITaxon%3A1736367","Chryseobacterium sp. Leaf405"]]},{"id":"NCBITaxon:176280","l":"Staphylococcus epidermidis (strain ATCC 12228 / FDA PCI 1200)","na":2,"nb":2,"a":[["Pfam%3APF23846","WalK sensor protein kinase Chache domain"],["Pfam%3APF21650","DNA primase DnaG, catalytic core, helical bundle"]],"b":[["NCBITaxon%3A1282","Staphylococcus epidermidis"],["NCBITaxon%3A176280","Staphylococcus epidermidis ATCC 12228"]]},{"id":"NCBITaxon:177439","l":"Desulfotalea psychrophila (strain LSv54 / DSM 12343)","na":2,"nb":2,"a":[["Pfam%3APF18419","ATP-grasp-like domain"],["Pfam%3APF04262","Glutamate-cysteine ligase"]],"b":[["NCBITaxon%3A84980","Desulfotalea psychrophila"],["NCBITaxon%3A177439","Desulfotalea psychrophila LSv54"]]},{"id":"NCBITaxon:182270","l":"Aurantimonas coralicida","na":2,"nb":2,"a":[["TED%3AAF-A0A7C1MD78-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C1MD78-F1-model_v4_TED01"],["TED%3AAF-A0A7C1RGX2-F1-model_v4_TED02","TED novel fold AF-A0A7C1RGX2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A182270","Aurantimonas coralicida"],["NCBITaxon%3A1121027","Aurantimonas coralicida DSM 14790"]]},{"id":"NCBITaxon:186479","l":"Kouleothrix aurantiaca","na":2,"nb":2,"a":[["TED%3AAF-A0A0N8PR83-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0N8PR83-F1-model_v4_TED02"],["TED%3AAF-A0A0P9DLJ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0P9DLJ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A181207","Eikelboom Type 1851 Ben52"],["NCBITaxon%3A186479","Kouleothrix aurantiaca"]]},{"id":"NCBITaxon:190974","l":"Methanobrevibacter gottschalkii","na":2,"nb":2,"a":[["TED%3AAF-A0A1H7GZV1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1H7GZV1-F1-model_v4_TED03"],["TED%3AAF-A0A1H7PF58-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H7PF58-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A190974","Methanobrevibacter gottschalkii"],["NCBITaxon%3A1122229","Methanobrevibacter gottschalkii DSM 11977"]]},{"id":"NCBITaxon:193462","l":"Streptomyces niveus","na":2,"nb":2,"a":[["Pfam%3APF16861","Carbamoyltransferase C-terminus"],["Pfam%3APF02543","Carbamoyltransferase N-terminus"]],"b":[["NCBITaxon%3A193462","Streptomyces niveus"],["NCBITaxon%3A1352941","Streptomyces niveus NCIMB 11891"]]},{"id":"NCBITaxon:194963","l":"Sinorhizobium americanum","na":2,"nb":2,"a":[["TED%3AAF-A0A2S3YNG1-F1-model_v4_TED01","TED novel fold AF-A0A2S3YNG1-F1-model_v4_TED01"],["TED%3AAF-A0A4R2AWY1-F1-model_v4_TED01","TED novel fold AF-A0A4R2AWY1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A194963","Sinorhizobium americanum"],["NCBITaxon%3A1408224","Sinorhizobium americanum CCGM7"]]},{"id":"NCBITaxon:195103","l":"Clostridium perfringens (strain ATCC 13124 / DSM 756 / JCM 1290 / NCIMB 6125 / NCTC 8237 / Type A)","na":2,"nb":2,"a":[["Pfam%3APF00963","Cohesin domain"],["PROSITE%3APS00384","Prokaryotic zinc-dependent phospholipase C signature"]],"b":[["NCBITaxon%3A1502","Clostridium perfringens"],["NCBITaxon%3A195103","Clostridium perfringens ATCC 13124"]]},{"id":"NCBITaxon:196164","l":"Corynebacterium efficiens (strain DSM 44549 / YS-314 / AJ 12310 / JCM 11189 / NBRC 100395)","na":2,"nb":2,"a":[["Pfam%3APF13631","Cytochrome b(N-terminal)/b6/petB"],["Pfam%3APF12270","Cytochrome c oxidase subunit IV"]],"b":[["NCBITaxon%3A152794","Corynebacterium efficiens"],["NCBITaxon%3A196164","Corynebacterium efficiens YS-314"]]},{"id":"NCBITaxon:2024855","l":"Rhodopirellula sp.","na":2,"nb":2,"a":[["TED%3AAF-A0A2E0S8K6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0S8K6-F1-model_v4_TED01"],["TED%3AAF-A0A358MZ88-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A358MZ88-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1263866","Rhodopirellula europaea"],["NCBITaxon%3A2024855","Rhodopirellula sp."]]},{"id":"NCBITaxon:202772","l":"Zooshikella ganghwensis","na":2,"nb":2,"a":[["TED%3AAF-A0A4P9VE42-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P9VE42-F1-model_v4_TED01"],["TED%3AAF-A0A4P9VMX2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4P9VMX2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A202772","Zooshikella ganghwensis"],["NCBITaxon%3A1123509","Zooshikella ganghwensis DSM 15267"]]},{"id":"NCBITaxon:2053594","l":"Prolixibacteraceae bacterium","na":2,"nb":2,"a":[["TED%3AAF-A0A350Z0D2-F1-model_v4_TED02","TED novel fold AF-A0A350Z0D2-F1-model_v4_TED02"],["TED%3AAF-A0A3D5Z2L5-F1-model_v4_TED01","TED novel fold AF-A0A3D5Z2L5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A3374600","Halosquirtibacter laminarini"],["NCBITaxon%3A2053594","Prolixibacteraceae bacterium"]]},{"id":"NCBITaxon:213810","l":"Ruminococcus champanellensis 18P13 = JCM 17042","na":2,"nb":2,"a":[["TED%3AAF-D4LAY2-F1-model_v4_TED01","TED novel fold AF-D4LAY2-F1-model_v4_TED01"],["TED%3AAF-D4LBV4-F1-model_v4_TED01","TED novel fold AF-D4LBV4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1161942","Ruminococcus champanellensis"],["NCBITaxon%3A213810","Ruminococcus champanellensis 18P13 = JCM 17042"]]},{"id":"NCBITaxon:215578","l":"Williamsoniiplasma somnilux","na":2,"nb":2,"a":[["TED%3AAF-A0A2K8NY68-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2K8NY68-F1-model_v4_TED01"],["TED%3AAF-A0A2K8P0R0-F1-model_v4_TED01","TED novel fold AF-A0A2K8P0R0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A215578","Williamsoniiplasma somnilux"],["NCBITaxon%3A1399795","Williamsoniiplasma somnilux ATCC 49194"]]},{"id":"NCBITaxon:2223","l":"Methanothrix soehngenii","na":2,"nb":2,"a":[["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"],["TED%3AAF-A0A7K4AJW5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K4AJW5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2223","Methanothrix soehngenii"],["NCBITaxon%3A990316","Methanothrix soehngenii GP6"]]},{"id":"NCBITaxon:225999","l":"Mesoplasma syrphidae","na":2,"nb":2,"a":[["TED%3AAF-A0A2K9BQL1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2K9BQL1-F1-model_v4_TED01"],["TED%3AAF-A0A2K9BRS8-F1-model_v4_TED02","TED novel fold AF-A0A2K9BRS8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A225999","Mesoplasma syrphidae"],["NCBITaxon%3A1408449","Mesoplasma syrphidae ATCC 51578"]]},{"id":"NCBITaxon:2265","l":"Thermococcus litoralis","na":2,"nb":2,"a":[["Pfam%3APF13459","4Fe-4S single cluster domain"],["Pfam%3APF06560","Glucose-6-phosphate isomerase (GPI)"]],"b":[["NCBITaxon%3A2265","Thermococcus litoralis"],["NCBITaxon%3A523849","Thermococcus litoralis DSM 5473"]]},{"id":"NCBITaxon:227941","l":"Chlamydia caviae (strain ATCC VR-813 / DSM 19441 / 03DC25 / GPIC)","na":2,"nb":2,"a":[["Pfam%3APF06188","HrpE/YscL/FliH and V-type ATPase subunit E"],["Pfam%3APF07578","Lipid A Biosynthesis N-terminal domain"]],"b":[["NCBITaxon%3A83557","Chlamydia caviae"],["NCBITaxon%3A227941","Chlamydia caviae GPIC"]]},{"id":"NCBITaxon:246200","l":"Ruegeria pomeroyi DSS-3","na":2,"nb":2,"a":[["Pfam%3APF16867","Dimethlysulfonioproprionate lyase"],["Pfam%3APF09347","Domain of unknown function (DUF1989)"]],"b":[["NCBITaxon%3A89184","Ruegeria pomeroyi"],["NCBITaxon%3A246200","Ruegeria pomeroyi DSS-3"]]},{"id":"NCBITaxon:2564099","l":"Ruminococcus bovis","na":2,"nb":2,"a":[["TED%3AAF-A0A4P8XXI7-F1-model_v4_TED01","TED novel fold AF-A0A4P8XXI7-F1-model_v4_TED01"],["TED%3AAF-A0A4P8XXY0-F1-model_v4_TED02","TED novel fold AF-A0A4P8XXY0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2564099","Ruminococcus bovis"],["NCBITaxon%3A2486417","Streptomyces botrytidirepellens"]]},{"id":"NCBITaxon:2585117","l":"Alistipes onderdonkii subsp. vulgaris","na":2,"nb":2,"a":[["TED%3AAF-A0A4Y1WGW4-F1-model_v4_TED01","TED novel fold AF-A0A4Y1WGW4-F1-model_v4_TED01"],["TED%3AAF-A0A4Y1X8F5-F1-model_v4_TED01","TED novel fold AF-A0A4Y1X8F5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A328813","Alistipes onderdonkii"],["NCBITaxon%3A2585117","Alistipes onderdonkii subsp. vulgaris"]]},{"id":"NCBITaxon:2606634","l":"Velocimicrobium porci","na":2,"nb":2,"a":[["TED%3AAF-A0A6L5XWX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L5XWX7-F1-model_v4_TED01"],["TED%3AAF-A0A6L5XZP1-F1-model_v4_TED05","TED novel fold AF-A0A6L5XZP1-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2049040","Roseburia sp."],["NCBITaxon%3A2606634","Velocimicrobium porci"]]},{"id":"NCBITaxon:262543","l":"","na":2,"nb":2,"a":[["Pfam%3APF06335","Domain of unknown function (DUF1054)"],["Pfam%3APF11023","Zinc-ribbon containing domain"]],"b":[["NCBITaxon%3A340145","Exiguobacterium artemiae"],["NCBITaxon%3A262543","Exiguobacterium artemiae 255-15"]]},{"id":"NCBITaxon:264462","l":"Bdellovibrio bacteriovorus HD100","na":2,"nb":2,"a":[["TED%3AAF-Q6MMM6-F1-model_v4_TED01","TED novel fold AF-Q6MMM6-F1-model_v4_TED01"],["TED%3AAF-Q6MPT8-F1-model_v4_TED01","TED novel fold AF-Q6MPT8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A959","Bdellovibrio bacteriovorus"],["NCBITaxon%3A264462","Bdellovibrio bacteriovorus HD100"]]},{"id":"NCBITaxon:264732","l":"Moorella thermoacetica (strain ATCC 39073 / JCM 9320)","na":2,"nb":2,"a":[["Pfam%3APF10371","Domain of unknown function"],["PROSITE%3APS00202","Rubredoxin signature"]],"b":[["NCBITaxon%3A264732","Moorella thermoacetica ATCC 39073"],["NCBITaxon%3A1525","Neomoorella thermoacetica"]]},{"id":"NCBITaxon:2664442","l":"Fundicoccus ignavus","na":2,"nb":2,"a":[["TED%3AAF-A0A6I2GCU7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I2GCU7-F1-model_v4_TED01"],["TED%3AAF-A0A844CGI6-F1-model_v4_TED01","TED novel fold AF-A0A844CGI6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2664442","Fundicoccus ignavus"],["NCBITaxon%3A1907779","Pediococcus sp."]]},{"id":"NCBITaxon:266940","l":"Kineococcus radiotolerans SRS30216 = ATCC BAA-149","na":2,"nb":2,"a":[["Pfam%3APF01083","Cutinase"],["TED%3AAF-A6WE06-F1-model_v4_TED06","TED novel fold AF-A6WE06-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A131568","Kineococcus radiotolerans"],["NCBITaxon%3A266940","Kineococcus radiotolerans SRS30216 = ATCC BAA-149"]]},{"id":"NCBITaxon:271848","l":"Burkholderia thailandensis E264","na":2,"nb":2,"a":[["Pfam%3APF12091","Protein of unknown function (DUF3567)"],["Pfam%3APF01075","Glycosyltransferase family 9 (heptosyltransferase)"]],"b":[["NCBITaxon%3A57975","Burkholderia thailandensis"],["NCBITaxon%3A271848","Burkholderia thailandensis E264"]]},{"id":"NCBITaxon:2721544","l":"Actinoplanes sp. NBRC 14428","na":2,"nb":2,"a":[["TED%3AAF-A0A810M2Y5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A810M2Y5-F1-model_v4_TED02"],["TED%3AAF-A0A810MBC3-F1-model_v4_TED01","TED novel fold AF-A0A810MBC3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A136271","Actinoplanes sp. IFO 14428"],["NCBITaxon%3A2721544","Actinoplanes sp. NBRC 14428"]]},{"id":"NCBITaxon:272559","l":"","na":2,"nb":2,"a":[["Pfam%3APF16355","Domain of unknown function (DUF4982)"],["Pfam%3APF14229","Domain of unknown function (DUF4332)"]],"b":[["NCBITaxon%3A817","Bacteroides fragilis"],["NCBITaxon%3A272559","Bacteroides fragilis NCTC 9343"]]},{"id":"NCBITaxon:27291","l":"Saccharomyces paradoxus","na":2,"nb":2,"a":[["Pfam%3APF27692","Cytochrome B pre-mRNA-processing protein 2"],["Pfam%3APF08643","Fungal family of unknown function (DUF1776)"]],"b":[["NCBITaxon%3A27291","Saccharomyces paradoxus"],["NCBITaxon%3A226125","Saccharomyces paradoxus NRRL Y-17217"]]},{"id":"NCBITaxon:273116","l":"Thermoplasma volcanium (strain ATCC 51530 / DSM 4299 / JCM 9571 / NBRC 15438 / GSS1)","na":2,"nb":2,"a":[["Pfam%3APF17989","Actin like proteins N terminal domain"],["Pfam%3APF26550","Tricorn protease second beta propeller domain"]],"b":[["NCBITaxon%3A50339","Thermoplasma volcanium"],["NCBITaxon%3A273116","Thermoplasma volcanium GSS1"]]},{"id":"NCBITaxon:2752305","l":"Desulfosarcina ovata subsp. ovata","na":2,"nb":2,"a":[["TED%3AAF-A0A5K8AAG7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A5K8AAG7-F1-model_v4_TED03"],["TED%3AAF-A0A5K8AJH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5K8AJH3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A83564","Desulfosarcina ovata"],["NCBITaxon%3A2752305","Desulfosarcina ovata subsp. ovata"]]},{"id":"NCBITaxon:283166","l":"Bartonella henselae str. Houston-1","na":2,"nb":2,"a":[["Pfam%3APF18543","Intracellular delivery domain"],["Pfam%3APF03524","Conjugal transfer protein"]],"b":[["NCBITaxon%3A38323","Bartonella henselae"],["NCBITaxon%3A283166","Bartonella henselae str. Houston-1"]]},{"id":"NCBITaxon:28454","l":"Sphingobacterium multivorum","na":2,"nb":2,"a":[["TED%3AAF-A0A7T9NU88-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T9NU88-F1-model_v4_TED01"],["TED%3AAF-A0A7T9PGY4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T9PGY4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28454","Sphingobacterium multivorum"],["NCBITaxon%3A1123264","Sphingobacterium multivorum DSM 11691"]]},{"id":"NCBITaxon:285532","l":"Streptomyces achromogenes subsp. streptozoticus","na":2,"nb":2,"a":[["Pfam%3APF07883","Cupin domain"],["Pfam%3APF14518","Iron-containing redox enzyme"]],"b":[["NCBITaxon%3A67255","Streptomyces achromogenes"],["NCBITaxon%3A285532","Streptomyces achromogenes subsp. streptozoticus"]]},{"id":"NCBITaxon:290633","l":"Gluconobacter oxydans (strain 621H)","na":2,"nb":2,"a":[["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"],["Pfam%3APF01011","Glucose/ethanol/alcohol dehydrogenase, beta-propeller domain"]],"b":[["NCBITaxon%3A442","Gluconobacter oxydans"],["NCBITaxon%3A290633","Gluconobacter oxydans 621H"]]},{"id":"NCBITaxon:292459","l":"","na":2,"nb":2,"a":[["PROSITE%3APS00853","Beta-eliminating lyases pyridoxal-phosphate attachment site"],["TED%3AAF-Q67TA8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q67TA8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2734","Symbiobacterium thermophilum"],["NCBITaxon%3A292459","Symbiobacterium thermophilum IAM 14863"]]},{"id":"NCBITaxon:29495","l":"Vibrio navarrensis","na":2,"nb":2,"a":[["TED%3AAF-A0A099LRS8-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A099LRS8-F1-model_v4_TED05"],["TED%3AAF-A0A7T0RRB9-F1-model_v4_TED02","TED novel fold AF-A0A7T0RRB9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29495","Vibrio navarrensis"],["NCBITaxon%3A706139","Vibrio navarrensis 08-2462"]]},{"id":"NCBITaxon:307480","l":"Chryseobacterium vrystaatense","na":2,"nb":2,"a":[["TED%3AAF-A0A1M5B1Q6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1M5B1Q6-F1-model_v4_TED03"],["TED%3AAF-A0A1M5MNX0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M5MNX0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A307480","Chryseobacterium vrystaatense"],["NCBITaxon%3A1256510","Chryseobacterium vrystaatense PCAI F2.7"]]},{"id":"NCBITaxon:313606","l":"Microscilla marina ATCC 23134","na":2,"nb":2,"a":[["TED%3AAF-A1ZH11-F1-model_v4_TED02","TED novel fold AF-A1ZH11-F1-model_v4_TED02"],["TED%3AAF-A1ZSU9-F1-model_v4_TED01","TED novel fold AF-A1ZSU9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1027","Microscilla marina"],["NCBITaxon%3A313606","Microscilla marina ATCC 23134"]]},{"id":"NCBITaxon:313612","l":"Lyngbya sp. (strain PCC 8106)","na":2,"nb":2,"a":[["TED%3AAF-A0YRM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0YRM4-F1-model_v4_TED01"],["TED%3AAF-A0Z017-F1-model_v4_TED04","TED highly-symmetric fold AF-A0Z017-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A118322","Lyngbya aestuarii"],["NCBITaxon%3A313612","Lyngbya sp. PCC 8106"]]},{"id":"NCBITaxon:33035","l":"Blautia producta","na":2,"nb":2,"a":[["TED%3AAF-A0A2S4GEH6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S4GEH6-F1-model_v4_TED01"],["TED%3AAF-A0A7G5MNY0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G5MNY0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A33035","Blautia producta"],["NCBITaxon%3A1121114","Blautia producta ATCC 27340 = DSM 2950"]]},{"id":"NCBITaxon:33058","l":"Thauera selenatis","na":2,"nb":2,"a":[["Pfam%3APF09459","Ethylbenzene dehydrogenase"],["Pfam%3APF12797","4Fe-4S binding domain"]],"b":[["NCBITaxon%3A33058","Thauera selenatis"],["NCBITaxon%3A905052","Thauera selenatis AX"]]},{"id":"NCBITaxon:34003","l":"Paracoccus aminophilus","na":2,"nb":2,"a":[["Pfam%3APF26354","N,N-dimethylformamidase alpha subunit"],["Pfam%3APF20254","N,N-dimethylformamidase beta subunit-like, C-terminal"]],"b":[["NCBITaxon%3A34003","Paracoccus aminophilus"],["NCBITaxon%3A1367847","Paracoccus aminophilus JCM 7686"]]},{"id":"NCBITaxon:348780","l":"Natronomonas pharaonis (strain ATCC 35678 / DSM 2160 / CIP 103997 / JCM 8858 / NBRC 14720 / NCIMB 2260 / Gabara)","na":2,"nb":2,"a":[["Pfam%3APF12840","Helix-turn-helix domain"],["Pfam%3APF26067","Family of unknown function (DUF8024)"]],"b":[["NCBITaxon%3A2257","Natronomonas pharaonis"],["NCBITaxon%3A348780","Natronomonas pharaonis DSM 2160"]]},{"id":"NCBITaxon:349521","l":"Hahella chejuensis KCTC 2396","na":2,"nb":2,"a":[["TED%3AAF-Q2SFS2-F1-model_v4_TED01","TED novel fold AF-Q2SFS2-F1-model_v4_TED01"],["TED%3AAF-Q2SI43-F1-model_v4_TED03","TED novel fold AF-Q2SI43-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A158327","Hahella chejuensis"],["NCBITaxon%3A349521","Hahella chejuensis KCTC 2396"]]},{"id":"NCBITaxon:349967","l":"Yersinia mollaretii (strain ATCC 43969 / DSM 18520 / CIP 103324 / CNY 7263 / WAIP 204)","na":2,"nb":2,"a":[["Pfam%3APF18624","CDI immunity protein"],["Pfam%3APF14436","Bacterial EndoU nuclease"]],"b":[["NCBITaxon%3A33060","Yersinia mollaretii"],["NCBITaxon%3A349967","Yersinia mollaretii ATCC 43969"]]},{"id":"NCBITaxon:35746","l":"Haloferax gibbonsii","na":2,"nb":2,"a":[["Pfam%3APF25162","Domain of unknown function (DUF7827)"],["Pfam%3APF20009","GEVED domain"]],"b":[["NCBITaxon%3A35746","Haloferax gibbonsii"],["NCBITaxon%3A1227459","Haloferax gibbonsii ATCC 33959"]]},{"id":"NCBITaxon:365044","l":"Polaromonas naphthalenivorans CJ2","na":2,"nb":2,"a":[["Pfam%3APF01888","CbiD"],["Pfam%3APF02609","Exonuclease VII small subunit"]],"b":[["NCBITaxon%3A216465","Polaromonas naphthalenivorans"],["NCBITaxon%3A365044","Polaromonas naphthalenivorans CJ2"]]},{"id":"NCBITaxon:368407","l":"","na":2,"nb":2,"a":[["Pfam%3APF27030","AbpE bacteria"],["Pfam%3APF04019","Protein of unknown function (DUF359)"]],"b":[["NCBITaxon%3A2198","Methanoculleus marisnigri"],["NCBITaxon%3A368407","Methanoculleus marisnigri JR1"]]},{"id":"NCBITaxon:379547","l":"Candidatus Aciduliprofundum boonei","na":2,"nb":2,"a":[["TED%3AAF-A0A7J3T8Z3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7J3T8Z3-F1-model_v4_TED02"],["TED%3AAF-A0A7J3T9E7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J3T9E7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A439481","Aciduliprofundum boonei T469"],["NCBITaxon%3A379547","Candidatus Aciduliprofundum boonei"]]},{"id":"NCBITaxon:381306","l":"Thiohalorhabdus denitrificans","na":2,"nb":2,"a":[["TED%3AAF-A0A1G5AS59-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G5AS59-F1-model_v4_TED01"],["TED%3AAF-A0A1G5CMD7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G5CMD7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A381306","Thiohalorhabdus denitrificans"],["NCBITaxon%3A1123396","Thiohalorhabdus denitrificans DSM 15699"]]},{"id":"NCBITaxon:391592","l":"Caminibacter mediatlanticus TB-2","na":2,"nb":2,"a":[["TED%3AAF-A0A4P9DRC2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A4P9DRC2-F1-model_v4_TED03"],["TED%3AAF-A0A4P9DXX3-F1-model_v4_TED03","TED novel fold AF-A0A4P9DXX3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A291048","Caminibacter mediatlanticus"],["NCBITaxon%3A391592","Caminibacter mediatlanticus TB-2"]]},{"id":"NCBITaxon:393310","l":"Skermanella aerolata","na":2,"nb":2,"a":[["TED%3AAF-A0A512DYI2-F1-model_v4_TED01","TED novel fold AF-A0A512DYI2-F1-model_v4_TED01"],["TED%3AAF-A0A512E076-F1-model_v4_TED01","TED novel fold AF-A0A512E076-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A393310","Skermanella aerolata"],["NCBITaxon%3A1385368","Skermanella aerolata KACC 11604"]]},{"id":"NCBITaxon:393664","l":"","na":2,"nb":2,"a":[["TED%3AAF-A0A7W4XHJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W4XHJ9-F1-model_v4_TED01"],["TED%3AAF-A0A7W4SSW3-F1-model_v4_TED01","TED novel fold AF-A0A7W4SSW3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A393664","Aliirhizobium cellulosilyticum"],["NCBITaxon%3A1368426","Aliirhizobium cellulosilyticum ALA10B2"]]},{"id":"NCBITaxon:39490","l":"Eubacterium ramulus","na":2,"nb":2,"a":[["TED%3AAF-A0A173V5Z6-F1-model_v4_TED02","TED novel fold AF-A0A173V5Z6-F1-model_v4_TED02"],["TED%3AAF-A0A2V1JWA1-F1-model_v4_TED05","TED novel fold AF-A0A2V1JWA1-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A39490","Eubacterium ramulus"],["NCBITaxon%3A1256908","Eubacterium ramulus ATCC 29099"]]},{"id":"NCBITaxon:398511","l":"Alkalihalophilus pseudofirmus (strain ATCC BAA-2126 / JCM 17055 / OF4)","na":2,"nb":2,"a":[["Pfam%3APF25991","K(+)/H(+) antiporter subunit KhtT, N-terminal domain"],["Pfam%3APF04238","Protein of unknown function (DUF420)"]],"b":[["NCBITaxon%3A79885","Alkalihalophilus pseudofirmus"],["NCBITaxon%3A398511","Alkalihalophilus pseudofirmus OF4"]]},{"id":"NCBITaxon:411468","l":"Clostridium scindens (strain ATCC 35704 / DSM 5676 / VPI 13733 / 19)","na":2,"nb":2,"a":[["Pfam%3APF03486","HI0933-like protein Rossmann domain"],["Pfam%3APF22780","HI0933-like protein barrel and H2TH domain"]],"b":[["NCBITaxon%3A29347","[Clostridium] scindens"],["NCBITaxon%3A411468","[Clostridium] scindens ATCC 35704"]]},{"id":"NCBITaxon:411473","l":"Ruminococcus callidus ATCC 27760","na":2,"nb":2,"a":[["TED%3AAF-U2KYE7-F1-model_v4_TED02","TED novel fold AF-U2KYE7-F1-model_v4_TED02"],["TED%3AAF-U2KYU1-F1-model_v4_TED02","TED novel fold AF-U2KYU1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A40519","Ruminococcus callidus"],["NCBITaxon%3A411473","Ruminococcus callidus ATCC 27760"]]},{"id":"NCBITaxon:418719","l":"Marinobacter salsuginis","na":2,"nb":2,"a":[["TED%3AAF-A0A5M3Q1Q7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5M3Q1Q7-F1-model_v4_TED01"],["TED%3AAF-A0A5M3Q638-F1-model_v4_TED02","TED novel fold AF-A0A5M3Q638-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A418719","Marinobacter salsuginis"],["NCBITaxon%3A1260625","Marinobacter salsuginis SD-14B"]]},{"id":"NCBITaxon:420247","l":"","na":2,"nb":2,"a":[["Pfam%3APF17884","Domain of unknown function (DUF5591)"],["Pfam%3APF18195","GatD N-terminal domain"]],"b":[["NCBITaxon%3A2173","Methanobrevibacter smithii"],["NCBITaxon%3A420247","Methanobrevibacter smithii ATCC 35061"]]},{"id":"NCBITaxon:42236","l":"Streptomyces diastatochromogenes","na":2,"nb":2,"a":[["TED%3AAF-A0A233S9R2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A233S9R2-F1-model_v4_TED01"],["TED%3AAF-A0A233SM76-F1-model_v4_TED01","TED novel fold AF-A0A233SM76-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A42236","Streptomyces diastatochromogenes"],["NCBITaxon%3A285494","Streptomyces diastatochromogenes subsp. luteus"]]},{"id":"NCBITaxon:425104","l":"","na":2,"nb":2,"a":[["Pfam%3APF13286","Phosphohydrolase-associated domain"],["TED%3AAF-A8FZD8-F1-model_v4_TED01","TED novel fold AF-A8FZD8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A271097","Shewanella sediminis"],["NCBITaxon%3A425104","Shewanella sediminis HAW-EB3"]]},{"id":"NCBITaxon:426128","l":"Natronincola peptidivorans","na":2,"nb":2,"a":[["TED%3AAF-A0A1I0EK12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I0EK12-F1-model_v4_TED01"],["TED%3AAF-A0A1I0H2J6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I0H2J6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A426128","Natronincola peptidivorans"],["NCBITaxon%3A1122597","Natronincola peptidivorans DSM 18979"]]},{"id":"NCBITaxon:435590","l":"Phocaeicola vulgatus ATCC 8482","na":2,"nb":2,"a":[["Pfam%3APF13444","Acetyltransferase (GNAT) domain"],["Pfam%3APF19576","Acyltransferase"]],"b":[["NCBITaxon%3A821","Phocaeicola vulgatus"],["NCBITaxon%3A435590","Phocaeicola vulgatus ATCC 8482"]]},{"id":"NCBITaxon:452637","l":"","na":2,"nb":2,"a":[["TED%3AAF-B1ZX41-F1-model_v4_TED02","TED novel fold AF-B1ZX41-F1-model_v4_TED02"],["TED%3AAF-B1ZYN8-F1-model_v4_TED02","TED novel fold AF-B1ZYN8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A107709","Opitutus terrae"],["NCBITaxon%3A452637","Opitutus terrae PB90-1"]]},{"id":"NCBITaxon:45361","l":"Mesomycoplasma conjunctivae","na":2,"nb":2,"a":[["TED%3AAF-A0A449AKT0-F1-model_v4_TED02","TED novel fold AF-A0A449AKT0-F1-model_v4_TED02"],["TED%3AAF-A0A449AL49-F1-model_v4_TED04","TED novel fold AF-A0A449AL49-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A45361","Mesomycoplasma conjunctivae"],["NCBITaxon%3A572263","Mesomycoplasma conjunctivae HRC/581"]]},{"id":"NCBITaxon:455432","l":"Nocardia terpenica","na":2,"nb":2,"a":[["TED%3AAF-A0A6G9ZDY9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6G9ZDY9-F1-model_v4_TED01"],["TED%3AAF-A0A164L9V7-F1-model_v4_TED03","TED novel fold AF-A0A164L9V7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A455432","Nocardia terpenica"],["NCBITaxon%3A1206738","Nocardia terpenica NBRC 100888"]]},{"id":"NCBITaxon:455632","l":"Streptomyces griseus subsp. griseus NBRC 13350","na":2,"nb":2,"a":[["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["PROSITE%3APS01311","Prolipoprotein diacylglyceryl transferase signature"]],"b":[["NCBITaxon%3A1896","Streptomyces bikiniensis"],["NCBITaxon%3A455632","Streptomyces griseus subsp. griseus NBRC 13350"]]},{"id":"NCBITaxon:467091","l":"Ilumatobacter fluminis","na":2,"nb":2,"a":[["TED%3AAF-A0A4R7I1A9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A4R7I1A9-F1-model_v4_TED03"],["TED%3AAF-A0A4R7HV94-F1-model_v4_TED01","TED novel fold AF-A0A4R7HV94-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A467091","Ilumatobacter fluminis"],["NCBITaxon%3A1331058","Ilumatobacter fluminis YM22-133"]]},{"id":"NCBITaxon:47884","l":"Pseudomonas taetrolens","na":2,"nb":2,"a":[["PROSITE%3APS00395","Alanine racemase pyridoxal-phosphate attachment site"],["PROSITE%3APS00182","Glutamine synthetase class-I adenylation site"]],"b":[["NCBITaxon%3A1128622","Pseudomonas sp. JCM 5493"],["NCBITaxon%3A47884","Pseudomonas taetrolens"]]},{"id":"NCBITaxon:479434","l":"Sphaerobacter thermophilus DSM 20745","na":2,"nb":2,"a":[["TED%3AAF-D1C926-F1-model_v4_TED01","TED highly-symmetric fold AF-D1C926-F1-model_v4_TED01"],["TED%3AAF-D1C9G8-F1-model_v4_TED01","TED highly-symmetric fold AF-D1C9G8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2057","Sphaerobacter thermophilus"],["NCBITaxon%3A479434","Sphaerobacter thermophilus DSM 20745"]]},{"id":"NCBITaxon:484019","l":"","na":2,"nb":2,"a":[["TED%3AAF-B7IGW9-F1-model_v4_TED05","TED highly-symmetric fold AF-B7IGW9-F1-model_v4_TED05"],["TED%3AAF-B7IEF5-F1-model_v4_TED01","TED novel fold AF-B7IEF5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2421","Thermosipho africanus"],["NCBITaxon%3A484019","Thermosipho africanus TCF52B"]]},{"id":"NCBITaxon:49283","l":"Paenibacillus thiaminolyticus","na":2,"nb":2,"a":[["TED%3AAF-A0A378XAJ0-F1-model_v4_TED02","TED novel fold AF-A0A378XAJ0-F1-model_v4_TED02"],["TED%3AAF-A0A7G3DXQ4-F1-model_v4_TED01","TED novel fold AF-A0A7G3DXQ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A49283","Paenibacillus thiaminolyticus"],["NCBITaxon%3A1349794","Paenibacillus thiaminolyticus NBRC 15656 = DSM 7262"]]},{"id":"NCBITaxon:497964","l":"Chthoniobacter flavus Ellin428","na":2,"nb":2,"a":[["TED%3AAF-B4CWB8-F1-model_v4_TED01","TED highly-symmetric fold AF-B4CWB8-F1-model_v4_TED01"],["TED%3AAF-B4D4Q6-F1-model_v4_TED01","TED highly-symmetric fold AF-B4D4Q6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A191863","Chthoniobacter flavus"],["NCBITaxon%3A497964","Chthoniobacter flavus Ellin428"]]},{"id":"NCBITaxon:505345","l":"Gallibacterium genomosp. 3","na":2,"nb":2,"a":[["TED%3AAF-A0A1A7NMW7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1A7NMW7-F1-model_v4_TED01"],["TED%3AAF-A0A1A7PT98-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1A7PT98-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A505345","Gallibacterium genomosp. 3"],["NCBITaxon%3A2517781","Gallibacterium sp."]]},{"id":"NCBITaxon:5074","l":"Penicillium brevicompactum","na":2,"nb":2,"a":[["Pfam%3APF09227","Bubble protein"],["Pfam%3APF18558","Methyltransferase, Helix-turn-helix domain"]],"b":[["NCBITaxon%3A1337893","Streptomyces bernensis"],["NCBITaxon%3A5074","Penicillium brevicompactum"]]},{"id":"NCBITaxon:508451","l":"Lactobacillus taiwanensis","na":2,"nb":2,"a":[["TED%3AAF-A0A256LG95-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A256LG95-F1-model_v4_TED04"],["TED%3AAF-A0A8A8VQ16-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8A8VQ16-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A508451","Lactobacillus taiwanensis"],["NCBITaxon%3A1423809","Lactobacillus taiwanensis DSM 21401"]]},{"id":"NCBITaxon:517417","l":"","na":2,"nb":2,"a":[["Pfam%3APF28537","Probable trigger factor, FKBP-like domain"],["Pfam%3APF10643","Photosystem P840 reaction-centre cytochrome c-551"]],"b":[["NCBITaxon%3A274539","Chlorobaculum parvum"],["NCBITaxon%3A517417","Chlorobaculum parvum NCIB 8327"]]},{"id":"NCBITaxon:523794","l":"Leptotrichia buccalis (strain ATCC 14201 / DSM 1135 / JCM 12969 / NCTC 10249 / C-1013-b)","na":2,"nb":2,"a":[["Pfam%3APF28350","Cas13a C-terminal HEPN-like domain"],["Pfam%3APF28192","CRISPR-associated endoribonuclease Cas13a"]],"b":[["NCBITaxon%3A40542","Leptotrichia buccalis"],["NCBITaxon%3A523794","Leptotrichia buccalis C-1013-b"]]},{"id":"NCBITaxon:523846","l":"Methanothermus fervidus DSM 2088","na":2,"nb":2,"a":[["Pfam%3APF02829","3H domain"],["Pfam%3APF27272","Cyclic 2,3-diphosphoglycerate synthetase, N-terminal domain"]],"b":[["NCBITaxon%3A2180","Methanothermus fervidus"],["NCBITaxon%3A523846","Methanothermus fervidus DSM 2088"]]},{"id":"NCBITaxon:5322","l":"Pleurotus ostreatus","na":2,"nb":2,"a":[["Pfam%3APF14521","Lysine-specific metallo-endopeptidase"],["Pfam%3APF06355","Aegerolysin"]],"b":[["NCBITaxon%3A5322","Pleurotus ostreatus"],["NCBITaxon%3A1137138","Pleurotus ostreatus PC15"]]},{"id":"NCBITaxon:53429","l":"Nocardia flavorosea","na":2,"nb":2,"a":[["TED%3AAF-A0A846YCZ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A846YCZ8-F1-model_v4_TED01"],["TED%3AAF-A0A846YMF9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A846YMF9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A53429","Nocardia flavorosea"],["NCBITaxon%3A1220553","Nocardia flavorosea NBRC 108225"]]},{"id":"NCBITaxon:5482","l":"Candida tropicalis","na":2,"nb":2,"a":[["Pfam%3APF05203","Hom_end-associated Hint"],["Pfam%3APF05204","Homing endonuclease"]],"b":[["NCBITaxon%3A5482","Candida tropicalis"],["NCBITaxon%3A1312901","Candida tropicalis ATCC 200956"]]},{"id":"NCBITaxon:560819","l":"Tistlia consotensis USBA 355","na":2,"nb":2,"a":[["TED%3AAF-A0A1Y6BHA7-F1-model_v4_TED02","TED novel fold AF-A0A1Y6BHA7-F1-model_v4_TED02"],["TED%3AAF-A0A1Y6CS94-F1-model_v4_TED02","TED novel fold AF-A0A1Y6CS94-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1321365","Tistlia consotensis"],["NCBITaxon%3A560819","Tistlia consotensis USBA 355"]]},{"id":"NCBITaxon:5684","l":"Leptomonas seymouri","na":2,"nb":2,"a":[["TED%3AAF-A0A0N0P8Q7-F1-model_v4_TED02","TED novel fold AF-A0A0N0P8Q7-F1-model_v4_TED02"],["TED%3AAF-A0A0N1I6S9-F1-model_v4_TED03","TED novel fold AF-A0A0N1I6S9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A5684","Leptomonas seymouri"],["NCBITaxon%3A1263718","Leptomonas seymouri BHU1095"]]},{"id":"NCBITaxon:572546","l":"Archaeoglobus profundus DSM 5631","na":2,"nb":2,"a":[["TED%3AAF-D2RFB5-F1-model_v4_TED02","TED highly-symmetric fold AF-D2RFB5-F1-model_v4_TED02"],["TED%3AAF-D2RE38-F1-model_v4_TED02","TED novel fold AF-D2RE38-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A84156","Archaeoglobus profundus"],["NCBITaxon%3A572546","Archaeoglobus profundus DSM 5631"]]},{"id":"NCBITaxon:575788","l":"Vibrio atlanticus (strain LGP32)","na":2,"nb":2,"a":[["Pfam%3APF17327","Acyl homoserine lactone synthase"],["Pfam%3APF09829","Uncharacterized protein conserved in bacteria (DUF2057)"]],"b":[["NCBITaxon%3A575788","Vibrio atlanticus LGP32"],["NCBITaxon%3A29497","Vibrio splendidus"]]},{"id":"NCBITaxon:580327","l":"Thermoanaerobacterium thermosaccharolyticum (strain ATCC 7956 / DSM 571 / NCIMB 9385 / NCA 3814 / NCTC 13789 / WDCM 00135 / 2032)","na":2,"nb":2,"a":[["Pfam%3APF09861","Lactate racemase N-terminal domain"],["Pfam%3APF21113","Lactate racemase C-terminal domain"]],"b":[["NCBITaxon%3A1517","Thermoanaerobacterium thermosaccharolyticum"],["NCBITaxon%3A580327","Thermoanaerobacterium thermosaccharolyticum DSM 571"]]},{"id":"NCBITaxon:585394","l":"Roseburia hominis (strain DSM 16839 / JCM 17582 / NCIMB 14029 / A2-183)","na":2,"nb":2,"a":[["Pfam%3APF13336","Acetyl-CoA hydrolase/transferase C-terminal domain"],["Pfam%3APF02550","Acetyl-CoA hydrolase/transferase N-terminal domain"]],"b":[["NCBITaxon%3A301301","Roseburia hominis"],["NCBITaxon%3A585394","Roseburia hominis A2-183"]]},{"id":"NCBITaxon:591197","l":"Ignavibacterium album","na":2,"nb":2,"a":[["TED%3AAF-A0A7V3E6U4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7V3E6U4-F1-model_v4_TED03"],["TED%3AAF-A0A7V2ZKR1-F1-model_v4_TED02","TED novel fold AF-A0A7V2ZKR1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A591197","Ignavibacterium album"],["NCBITaxon%3A945713","Ignavibacterium album JCM 16511"]]},{"id":"NCBITaxon:59893","l":"Paenibacillus peoriae","na":2,"nb":2,"a":[["TED%3AAF-A0A0S3KGK3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S3KGK3-F1-model_v4_TED01"],["TED%3AAF-A0A7H0Y2B5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H0Y2B5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A59893","Paenibacillus peoriae"],["NCBITaxon%3A1087481","Paenibacillus peoriae KCTC 3763"]]},{"id":"NCBITaxon:61647","l":"Pluralibacter gergoviae","na":2,"nb":2,"a":[["TED%3AAF-A0A379CWN8-F1-model_v4_TED02","TED novel fold AF-A0A379CWN8-F1-model_v4_TED02"],["TED%3AAF-A0A806NV12-F1-model_v4_TED02","TED novel fold AF-A0A806NV12-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A61647","Pluralibacter gergoviae"],["NCBITaxon%3A1354260","Pluralibacter gergoviae ATCC 33028 = NBRC 105706"]]},{"id":"NCBITaxon:63363","l":"Aquifex aeolicus","na":2,"nb":2,"a":[["TED%3AAF-A0A7C5L434-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C5L434-F1-model_v4_TED01"],["TED%3AAF-A0A7C5L9T1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C5L9T1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A63363","Aquifex aeolicus"],["NCBITaxon%3A224324","Aquifex aeolicus VF5"]]},{"id":"NCBITaxon:64104","l":"Bacillus pseudomycoides","na":2,"nb":2,"a":[["TED%3AAF-A0A1Y3MB62-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y3MB62-F1-model_v4_TED01"],["TED%3AAF-A0A2C4USY5-F1-model_v4_TED01","TED novel fold AF-A0A2C4USY5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A64104","Bacillus pseudomycoides"],["NCBITaxon%3A527000","Bacillus pseudomycoides DSM 12442"]]},{"id":"NCBITaxon:642492","l":"","na":2,"nb":2,"a":[["TED%3AAF-F2JHU0-F1-model_v4_TED01","TED highly-symmetric fold AF-F2JHU0-F1-model_v4_TED01"],["TED%3AAF-F2JQ83-F1-model_v4_TED01","TED highly-symmetric fold AF-F2JQ83-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29360","Cellulosilyticum lentocellum"],["NCBITaxon%3A642492","Cellulosilyticum lentocellum DSM 5427"]]},{"id":"NCBITaxon:644107","l":"","na":2,"nb":2,"a":[["Pfam%3APF16867","Dimethlysulfonioproprionate lyase"],["TED%3AAF-D0CYX0-F1-model_v4_TED01","TED novel fold AF-D0CYX0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A55218","Ruegeria lacuscaerulensis"],["NCBITaxon%3A644107","Ruegeria lacuscaerulensis ITI-1157"]]},{"id":"NCBITaxon:647113","l":"Methanothermococcus okinawensis IH1","na":2,"nb":2,"a":[["TED%3AAF-F8ANV0-F1-model_v4_TED01","TED highly-symmetric fold AF-F8ANV0-F1-model_v4_TED01"],["TED%3AAF-F8AK92-F1-model_v4_TED02","TED novel fold AF-F8AK92-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A155863","Methanothermococcus okinawensis"],["NCBITaxon%3A647113","Methanothermococcus okinawensis IH1"]]},{"id":"NCBITaxon:658187","l":"Legionella drancourtii LLAP12","na":2,"nb":2,"a":[["TED%3AAF-G9EK81-F1-model_v4_TED02","TED highly-symmetric fold AF-G9EK81-F1-model_v4_TED02"],["TED%3AAF-G9ERF4-F1-model_v4_TED01","TED novel fold AF-G9ERF4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A168933","Legionella drancourtii"],["NCBITaxon%3A658187","Legionella drancourtii LLAP12"]]},{"id":"NCBITaxon:661367","l":"Legionella longbeachae serogroup 1 (strain NSW150)","na":2,"nb":2,"a":[["TED%3AAF-D3HM90-F1-model_v4_TED01","TED novel fold AF-D3HM90-F1-model_v4_TED01"],["TED%3AAF-D3HMM1-F1-model_v4_TED01","TED novel fold AF-D3HMM1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A450","Legionella longbeachae"],["NCBITaxon%3A661367","Legionella longbeachae NSW150"]]},{"id":"NCBITaxon:665126","l":"Prosthecomicrobium hirschii","na":2,"nb":2,"a":[["TED%3AAF-A0A0P6VIT9-F1-model_v4_TED02","TED novel fold AF-A0A0P6VIT9-F1-model_v4_TED02"],["TED%3AAF-A0A0P6WHU2-F1-model_v4_TED01","TED novel fold AF-A0A0P6WHU2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A665126","Prosthecodimorpha hirschii"],["NCBITaxon%3A2212461","Prosthecomicrobium sp."]]},{"id":"NCBITaxon:671","l":"Vibrio proteolyticus","na":2,"nb":2,"a":[["Pfam%3APF06165","Glycosyl hydrolase 94, supersandwich domain"],["Pfam%3APF17167","Glycosyl hydrolase 94 superfamily, catalytic domain"]],"b":[["NCBITaxon%3A671","Vibrio proteolyticus"],["NCBITaxon%3A1219065","Vibrio proteolyticus NBRC 13287"]]},{"id":"NCBITaxon:683837","l":"Listeria seeligeri serovar 1/2b (strain ATCC 35967 / DSM 20751 / CCM 3970 / CCUG 15530 / CIP 100100 / LMG 11386 / NCTC 11856 / SLCC 3954 / 1120)","na":2,"nb":2,"a":[["Pfam%3APF28350","Cas13a C-terminal HEPN-like domain"],["Pfam%3APF28192","CRISPR-associated endoribonuclease Cas13a"]],"b":[["NCBITaxon%3A1640","Listeria seeligeri"],["NCBITaxon%3A683837","Listeria seeligeri serovar 1/2b str. SLCC3954"]]},{"id":"NCBITaxon:685727","l":"Rhodococcus equi (strain 103S)","na":2,"nb":2,"a":[["Pfam%3APF00150","Cellulase (glycosyl hydrolase family 5)"],["Pfam%3APF18564","Glycoside hydrolase family 5 C-terminal domain"]],"b":[["NCBITaxon%3A43767","Prescottella equi"],["NCBITaxon%3A685727","Prescottella equi 103S"]]},{"id":"NCBITaxon:688246","l":"Hallella multisaccharivorax DSM 17128","na":2,"nb":2,"a":[["TED%3AAF-F8N9C0-F1-model_v4_TED03","TED novel fold AF-F8N9C0-F1-model_v4_TED03"],["TED%3AAF-F8N9F2-F1-model_v4_TED01","TED novel fold AF-F8N9F2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A310514","Hallella multisaccharivorax"],["NCBITaxon%3A688246","Hallella multisaccharivorax DSM 17128"]]},{"id":"NCBITaxon:69","l":"Lysobacter enzymogenes","na":2,"nb":2,"a":[["TED%3AAF-A0A1J1E6A8-F1-model_v4_TED02","TED novel fold AF-A0A1J1E6A8-F1-model_v4_TED02"],["TED%3AAF-A0A7T8MLU2-F1-model_v4_TED03","TED novel fold AF-A0A7T8MLU2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A69","Lysobacter enzymogenes"],["NCBITaxon%3A262324","Lysobacter gummosus"]]},{"id":"NCBITaxon:693979","l":"Bacteroides helcogenes (strain ATCC 35417 / DSM 20613 / JCM 6297 / CCUG 15421 / P 36-108)","na":2,"nb":2,"a":[["TED%3AAF-E6SVP5-F1-model_v4_TED02","TED highly-symmetric fold AF-E6SVP5-F1-model_v4_TED02"],["TED%3AAF-E6SMX4-F1-model_v4_TED02","TED novel fold AF-E6SMX4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A290053","Bacteroides helcogenes"],["NCBITaxon%3A693979","Bacteroides helcogenes P 36-108"]]},{"id":"NCBITaxon:697329","l":"Ruminococcus albus (strain ATCC 27210 / DSM 20455 / JCM 14654 / NCDO 2250 / 7)","na":2,"nb":2,"a":[["Pfam%3APF04041","beta-1,4-mannooligosaccharide phosphorylase"],["TED%3AAF-E6UGN9-F1-model_v4_TED01","TED highly-symmetric fold AF-E6UGN9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1264","Hominimerdicola alba"],["NCBITaxon%3A697329","Hominimerdicola alba 7 = DSM 20455"]]},{"id":"NCBITaxon:700598","l":"Niastella koreensis (strain DSM 17620 / KACC 11465 / NBRC 106392 / GR20-10)","na":2,"nb":2,"a":[["TED%3AAF-G8T8R6-F1-model_v4_TED01","TED highly-symmetric fold AF-G8T8R6-F1-model_v4_TED01"],["TED%3AAF-G8TCY2-F1-model_v4_TED03","TED novel fold AF-G8TCY2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A354356","Niastella koreensis"],["NCBITaxon%3A700598","Niastella koreensis GR20-10"]]},{"id":"NCBITaxon:709032","l":"Sulfuricurvum kujiense (strain ATCC BAA-921 / DSM 16994 / JCM 11577 / YK-1)","na":2,"nb":2,"a":[["TED%3AAF-E4TWD5-F1-model_v4_TED02","TED highly-symmetric fold AF-E4TWD5-F1-model_v4_TED02"],["TED%3AAF-E4TYW6-F1-model_v4_TED01","TED highly-symmetric fold AF-E4TYW6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A148813","Sulfuricurvum kujiense"],["NCBITaxon%3A709032","Sulfuricurvum kujiense DSM 16994"]]},{"id":"NCBITaxon:74318","l":"Maricaulis maris","na":2,"nb":2,"a":[["TED%3AAF-A0A495D3Q7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A495D3Q7-F1-model_v4_TED02"],["TED%3AAF-A0A495DKG6-F1-model_v4_TED01","TED novel fold AF-A0A495DKG6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A74318","Maricaulis maris"],["NCBITaxon%3A394221","Maricaulis maris MCS10"]]},{"id":"NCBITaxon:746697","l":"Aequorivita sublithincola DSM 14238","na":2,"nb":2,"a":[["TED%3AAF-I3YW66-F1-model_v4_TED01","TED highly-symmetric fold AF-I3YW66-F1-model_v4_TED01"],["TED%3AAF-I3YWC3-F1-model_v4_TED01","TED highly-symmetric fold AF-I3YWC3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A101385","Aequorivita sublithincola"],["NCBITaxon%3A746697","Aequorivita sublithincola DSM 14238"]]},{"id":"NCBITaxon:755732","l":"Fluviicola taffensis (strain DSM 16823 / NCIMB 13979 / RW262)","na":2,"nb":2,"a":[["TED%3AAF-F2IER5-F1-model_v4_TED02","TED highly-symmetric fold AF-F2IER5-F1-model_v4_TED02"],["TED%3AAF-F2IDG5-F1-model_v4_TED01","TED novel fold AF-F2IDG5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A191579","Fluviicola taffensis"],["NCBITaxon%3A755732","Fluviicola taffensis DSM 16823"]]},{"id":"NCBITaxon:765913","l":"Thiorhodococcus drewsii AZ1","na":2,"nb":2,"a":[["TED%3AAF-G2E6U1-F1-model_v4_TED01","TED highly-symmetric fold AF-G2E6U1-F1-model_v4_TED01"],["TED%3AAF-G2E738-F1-model_v4_TED01","TED novel fold AF-G2E738-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A210408","Thiorhodococcus drewsii"],["NCBITaxon%3A765913","Thiorhodococcus drewsii AZ1"]]},{"id":"NCBITaxon:79329","l":"Chitinophaga pinensis","na":2,"nb":2,"a":[["TED%3AAF-A0A5C6LK20-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C6LK20-F1-model_v4_TED01"],["TED%3AAF-A0A5C6LKB6-F1-model_v4_TED01","TED novel fold AF-A0A5C6LKB6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A79329","Chitinophaga pinensis"],["NCBITaxon%3A485918","Chitinophaga pinensis DSM 2588"]]},{"id":"NCBITaxon:86049","l":"Cladophialophora carrionii","na":2,"nb":2,"a":[["TED%3AAF-A0A1C1CA15-F1-model_v4_TED03","TED novel fold AF-A0A1C1CA15-F1-model_v4_TED03"],["TED%3AAF-A0A1C1CZQ0-F1-model_v4_TED04","TED novel fold AF-A0A1C1CZQ0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A67367","Streptomyces tanashiensis"],["NCBITaxon%3A86049","Cladophialophora carrionii"]]},{"id":"NCBITaxon:869209","l":"Treponema succinifaciens (strain ATCC 33096 / DSM 2489 / 6091)","na":2,"nb":2,"a":[["TED%3AAF-F2NRP2-F1-model_v4_TED01","TED highly-symmetric fold AF-F2NRP2-F1-model_v4_TED01"],["TED%3AAF-F2NT59-F1-model_v4_TED02","TED highly-symmetric fold AF-F2NT59-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A167","Treponema succinifaciens"],["NCBITaxon%3A869209","Treponema succinifaciens DSM 2489"]]},{"id":"NCBITaxon:869212","l":"Turneriella parva (strain ATCC BAA-1111 / DSM 21527 / NCTC 11395 / H)","na":2,"nb":2,"a":[["TED%3AAF-I4B6F4-F1-model_v4_TED01","TED highly-symmetric fold AF-I4B6F4-F1-model_v4_TED01"],["TED%3AAF-I4B9D1-F1-model_v4_TED01","TED highly-symmetric fold AF-I4B9D1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29510","Turneriella parva"],["NCBITaxon%3A869212","Turneriella parva DSM 21527"]]},{"id":"NCBITaxon:876364","l":"Cupriavidus sp. USMAA2-4","na":2,"nb":2,"a":[["TED%3AAF-A0A1D9GSB5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1D9GSB5-F1-model_v4_TED01"],["TED%3AAF-A0A1D9H8X5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1D9H8X5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1873897","Cupriavidus sp."],["NCBITaxon%3A876364","Cupriavidus sp. USMAA2-4"]]},{"id":"NCBITaxon:88382","l":"Promicromonospora sukumoe","na":2,"nb":2,"a":[["TED%3AAF-A0A7W3J7T7-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7W3J7T7-F1-model_v4_TED04"],["TED%3AAF-A0A7W3JDT4-F1-model_v4_TED01","TED novel fold AF-A0A7W3JDT4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A88382","Promicromonospora sukumoe"],["NCBITaxon%3A1172178","Promicromonospora sukumoe 327MFSha3.1"]]},{"id":"NCBITaxon:888832","l":"Prevotella salivae DSM 15606","na":2,"nb":2,"a":[["TED%3AAF-E6MT40-F1-model_v4_TED02","TED highly-symmetric fold AF-E6MT40-F1-model_v4_TED02"],["TED%3AAF-E6MS53-F1-model_v4_TED02","TED novel fold AF-E6MS53-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A228604","Segatella salivae"],["NCBITaxon%3A888832","Segatella salivae DSM 15606"]]},{"id":"NCBITaxon:889378","l":"Spirochaeta africana DSM 8902","na":2,"nb":2,"a":[["TED%3AAF-H9UHS0-F1-model_v4_TED01","TED highly-symmetric fold AF-H9UHS0-F1-model_v4_TED01"],["TED%3AAF-H9UIK6-F1-model_v4_TED01","TED novel fold AF-H9UIK6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A46355","Spirochaeta africana"],["NCBITaxon%3A889378","Spirochaeta africana DSM 8902"]]},{"id":"NCBITaxon:912594","l":"Mycolicibacterium iranicum","na":2,"nb":2,"a":[["TED%3AAF-A0A178LVR2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A178LVR2-F1-model_v4_TED02"],["TED%3AAF-A0A178M0U6-F1-model_v4_TED01","TED novel fold AF-A0A178M0U6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A912594","Mycolicibacterium iranicum"],["NCBITaxon%3A1370125","Mycolicibacterium iranicum UM_TJL"]]},{"id":"NCBITaxon:95641","l":"Methylotuvimicrobium buryatense","na":2,"nb":2,"a":[["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"],["Pfam%3APF01011","Glucose/ethanol/alcohol dehydrogenase, beta-propeller domain"]],"b":[["NCBITaxon%3A95641","Methylotuvimicrobium buryatense"],["NCBITaxon%3A675511","Methylotuvimicrobium buryatense 5G"]]},{"id":"NCBITaxon:981334","l":"Acinetobacter radioresistens DSM 6976 = NBRC 102413 = CIP 103788","na":2,"nb":2,"a":[["TED%3AAF-A0A7U9KBJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7U9KBJ8-F1-model_v4_TED01"],["TED%3AAF-A0A7U9KCJ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7U9KCJ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A40216","Acinetobacter radioresistens"],["NCBITaxon%3A981334","Acinetobacter radioresistens DSM 6976 = NBRC 102413 = CIP 103788"]]},{"id":"NCBITaxon:99656","l":"[Clostridium] fimetarium","na":2,"nb":2,"a":[["TED%3AAF-A0A1I0N088-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I0N088-F1-model_v4_TED02"],["TED%3AAF-A0A1I0QS44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I0QS44-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A99656","[Clostridium] fimetarium"],["NCBITaxon%3A1121311","[Clostridium] fimetarium DSM 9179"]]},{"id":"NCBITaxon:997347","l":"Fusobacterium animalis ATCC 51191","na":2,"nb":2,"a":[["TED%3AAF-F9ENM2-F1-model_v4_TED01","TED highly-symmetric fold AF-F9ENM2-F1-model_v4_TED01"],["TED%3AAF-F9ERA5-F1-model_v4_TED03","TED highly-symmetric fold AF-F9ERA5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A76859","Fusobacterium animalis"],["NCBITaxon%3A997347","Fusobacterium animalis ATCC 51191"]]},{"id":"NCBITaxon:2","l":"Bacteria","na":1,"nb":605695,"a":[["proteintraitsmech%3AORTHODB_LEVEL_2","Bacteria orthologous groups (OrthoDB)"]],"b":[["NCBITaxon%3A119160","2,3-D degrading bacterium NHC2"],["NCBITaxon%3A119159","2,3-D degrading bacterium NHG3"],["NCBITaxon%3A103498","2,4-D-degrading bacterium 001"],["NCBITaxon%3A103499","2,4-D-degrading bacterium 007"],["NCBITaxon%3A103492","2,4-D-degrading bacterium 010"],["NCBITaxon%3A103495","2,4-D-degrading bacterium 012"]]},{"id":"NCBITaxon:2157","l":"Archaea","na":1,"nb":14013,"a":[["proteintraitsmech%3AORTHODB_LEVEL_2157","Archaea orthologous groups (OrthoDB)"]],"b":[["NCBITaxon%3A3879924","Abyssiniarchaeum dallolvicinus (SeqCode)"],["NCBITaxon%3A3693715","Acidarchaeum fankouense (SeqCode)"],["NCBITaxon%3A2283","Acidianus ambivalens"],["NCBITaxon%3A41673","Acidianus brierleyi"],["NCBITaxon%3A269667","Acidianus convivator"],["NCBITaxon%3A563177","Acidianus hospitalis"]]},{"id":"NCBITaxon:2759","l":"Eukaryota","na":1,"nb":6243,"a":[["proteintraitsmech%3AORTHODB_LEVEL_2759","Eukaryota orthologous groups (OrthoDB)"]],"b":[["NCBITaxon%3A1450171","Aaosphaeria arxii"],["NCBITaxon%3A749232","Abeoforma whisleri"],["NCBITaxon%3A137743","Abortiporus biennis"],["NCBITaxon%3A420591","Absidia anomala"],["NCBITaxon%3A90261","Absidia caerulea"],["NCBITaxon%3A327741","Absidia californica"]]},{"id":"NCBITaxon:487","l":"Neisseria meningitidis","na":1,"nb":232,"a":[["Pfam%3APF22582","Amylosucrase, C-terminal domain"]],"b":[["NCBITaxon%3A487","Neisseria meningitidis"],["NCBITaxon%3A374833","Neisseria meningitidis 053442"],["NCBITaxon%3A926508","Neisseria meningitidis 1076"],["NCBITaxon%3A926533","Neisseria meningitidis 1101"],["NCBITaxon%3A926506","Neisseria meningitidis 1102"],["NCBITaxon%3A926507","Neisseria meningitidis 115 CB V1"]]},{"id":"NCBITaxon:1978231","l":"Acidobacteriota bacterium","na":186,"nb":1,"a":[["TED%3AAF-A0A2E4W649-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4W649-F1-model_v4_TED01"],["TED%3AAF-A0A2P6WIX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P6WIX4-F1-model_v4_TED01"],["TED%3AAF-A0A2V2RP64-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V2RP64-F1-model_v4_TED01"],["TED%3AAF-A0A2V7TZP2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V7TZP2-F1-model_v4_TED01"],["TED%3AAF-A0A2V7USQ3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V7USQ3-F1-model_v4_TED02"],["TED%3AAF-A0A2V7V8X8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V7V8X8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1978231","Acidobacteriota bacterium"]]},{"id":"NCBITaxon:44689","l":"Dictyostelium discoideum","na":151,"nb":1,"a":[["IDPO%3A0000002","disorder"],["IDPO%3A0000030","entropic chain"],["IDPO%3A0000006","order"],["IDPO%3A0000058","self-activation"],["Pfam%3APF23297","Highly reducing polyketide synthase sdgA, C-terminal ACP domain"],["Pfam%3APF09192","Actin-fragmin kinase, catalytic"]],"b":[["NCBITaxon%3A44689","Dictyostelium discoideum"]]},{"id":"NCBITaxon:59203","l":"Salmonella enterica subsp. arizonae","na":1,"nb":151,"a":[["TED%3AAF-A0A3S4K1T2-F1-model_v4_TED01","TED novel fold AF-A0A3S4K1T2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59203","Salmonella enterica subsp. arizonae"],["NCBITaxon%3A2577126","Salmonella enterica subsp. arizonae serovar 11:z4,z23:-"],["NCBITaxon%3A2577127","Salmonella enterica subsp. arizonae serovar 13,22:z4,z23:-"],["NCBITaxon%3A2691147","Salmonella enterica subsp. arizonae serovar 13,23:g,z51:-"],["NCBITaxon%3A2577128","Salmonella enterica subsp. arizonae serovar 13,23:z4,z23,[z32]:-"]]},{"id":"NCBITaxon:58095","l":"Salmonella enterica subsp. enterica serovar Agona","na":1,"nb":145,"a":[["TED%3AAF-A0A752MZK0-F1-model_v4_TED01","TED novel fold AF-A0A752MZK0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A58095","Salmonella enterica subsp. enterica serovar Agona"],["NCBITaxon%3A1265673","Salmonella enterica subsp. enterica serovar Agona str. 01.O.05"],["NCBITaxon%3A1029989","Salmonella enterica subsp. enterica serovar Agona str. 0292"],["NCBITaxon%3A1265665","Salmonella enterica subsp. enterica serovar Agona str. 02.O.05"],["NCBITaxon%3A1029990","Salmonella enterica subsp. enterica serovar Agona str. 0322"],["NCBITaxon%3A1265636","Salmonella enterica subsp. enterica serovar Agona str. 03.O.05"]]},{"id":"NCBITaxon:2026735","l":"Deltaproteobacteria bacterium","na":134,"nb":1,"a":[["TED%3AAF-A0A2D5SEF5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D5SEF5-F1-model_v4_TED01"],["TED%3AAF-A0A2D5ST50-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D5ST50-F1-model_v4_TED01"],["TED%3AAF-A0A2D7NP73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D7NP73-F1-model_v4_TED01"],["TED%3AAF-A0A2E7MB46-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2E7MB46-F1-model_v4_TED03"],["TED%3AAF-A0A2E9GNR1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E9GNR1-F1-model_v4_TED02"],["TED%3AAF-A0A2E9GV09-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E9GV09-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026735","Deltaproteobacteria bacterium"]]},{"id":"NCBITaxon:71421","l":"Haemophilus influenzae (strain ATCC 51907 / DSM 11121 / KW20 / Rd)","na":133,"nb":1,"a":[["Pfam%3APF13521","AAA domain"],["Pfam%3APF13654","LonB-like, AAA domain"],["Pfam%3APF16326","ABC transporter C-terminal domain"],["Pfam%3APF13710","ACT domain"],["Pfam%3APF12633","Adenylate cyclase NT domain"],["Pfam%3APF26690","Adenylate cyclase, class-I, third domain"]],"b":[["NCBITaxon%3A71421","Haemophilus influenzae Rd KW20"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":1,"nb":124,"a":[["Pfam%3APF08124","Polysaccharide lyase family 8, N terminal alpha-helical domain"]],"b":[["NCBITaxon%3A1748","Acidipropionibacterium acidipropionici"],["NCBITaxon%3A1171373","Acidipropionibacterium acidipropionici ATCC 4875"],["NCBITaxon%3A1750","Arachnia propionica"],["NCBITaxon%3A38288","Corynebacterium genitalium"],["NCBITaxon%3A585529","Corynebacterium genitalium ATCC 33030"],["NCBITaxon%3A1747","Cutibacterium acnes"]]},{"id":"NCBITaxon:264691","l":"Trichormus variabilis","na":1,"nb":120,"a":[["Pfam%3APF09194","Restriction endonuclease BsobI"]],"b":[["NCBITaxon%3A264691","Trichormus variabilis"],["NCBITaxon%3A375899","Trichormus variabilis 0441"],["NCBITaxon%3A358556","Trichormus variabilis 9CH37S2"],["NCBITaxon%3A2681313","Trichormus variabilis 9RC"],["NCBITaxon%3A1392459","Trichormus variabilis A1"],["NCBITaxon%3A2799915","Trichormus variabilis A2"]]},{"id":"NCBITaxon:2026780","l":"Planctomycetota bacterium","na":119,"nb":1,"a":[["TED%3AAF-A0A2A5DKK7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A5DKK7-F1-model_v4_TED01"],["TED%3AAF-A0A2A5DYX6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A5DYX6-F1-model_v4_TED01"],["TED%3AAF-A0A2D5ATW0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D5ATW0-F1-model_v4_TED01"],["TED%3AAF-A0A2D5AYR3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D5AYR3-F1-model_v4_TED01"],["TED%3AAF-A0A2D5NH55-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D5NH55-F1-model_v4_TED01"],["TED%3AAF-A0A2D5NKW7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D5NKW7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026780","Planctomycetota bacterium"]]},{"id":"NCBITaxon:263","l":"Francisella tularensis","na":1,"nb":117,"a":[["TED%3AAF-A0A6I4RUC7-F1-model_v4_TED02","TED novel fold AF-A0A6I4RUC7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A984129","Francisella cf. novicida Fx1"],["NCBITaxon%3A676032","Francisella cf. tularensis subsp. novicida 3523"],["NCBITaxon%3A263","Francisella tularensis"],["NCBITaxon%3A1367846","Francisella tularensis 99A-2628"],["NCBITaxon%3A545771","Francisella tularensis B-SA"],["NCBITaxon%3A1410527","Francisella tularensis FSC069"]]},{"id":"NCBITaxon:2026724","l":"Chloroflexota bacterium","na":108,"nb":1,"a":[["TED%3AAF-A0A2D9WK23-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9WK23-F1-model_v4_TED01"],["TED%3AAF-A0A2E4F1D3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4F1D3-F1-model_v4_TED01"],["TED%3AAF-A0A2E5E7P4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E5E7P4-F1-model_v4_TED02"],["TED%3AAF-A0A2E5F270-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E5F270-F1-model_v4_TED02"],["TED%3AAF-A0A2E5NZE5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E5NZE5-F1-model_v4_TED01"],["TED%3AAF-A0A2E6WIS4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E6WIS4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026724","Chloroflexota bacterium"]]},{"id":"NCBITaxon:83331","l":"Mycobacterium tuberculosis (strain CDC 1551 / Oshkosh)","na":99,"nb":1,"a":[["Pfam%3APF09407","AbiEi antitoxin C-terminal domain"],["Pfam%3APF17668","Acetyltransferase (GNAT) domain"],["Pfam%3APF13480","Acetyltransferase (GNAT) domain"],["Pfam%3APF13527","Acetyltransferase (GNAT) domain"],["Pfam%3APF16701","Adenylate cyclase regulatory domain"],["Pfam%3APF06029","AlkA N-terminal domain"]],"b":[["NCBITaxon%3A83331","Mycobacterium tuberculosis CDC1551"]]},{"id":"NCBITaxon:1883427","l":"Actinomycetia bacterium","na":78,"nb":1,"a":[["TED%3AAF-A0A2E4AXX0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2E4AXX0-F1-model_v4_TED04"],["TED%3AAF-A0A2W4J8T7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W4J8T7-F1-model_v4_TED01"],["TED%3AAF-A0A350SGF5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A350SGF5-F1-model_v4_TED03"],["TED%3AAF-A0A350XSJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A350XSJ9-F1-model_v4_TED01"],["TED%3AAF-A0A3A4PC78-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A4PC78-F1-model_v4_TED01"],["TED%3AAF-A0A3A4PG42-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A4PG42-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1883427","Actinomycetes bacterium"]]},{"id":"NCBITaxon:1764","l":"Mycobacterium avium","na":1,"nb":76,"a":[["Pfam%3APF01882","Protein of unknown function DUF58"]],"b":[["NCBITaxon%3A1764","Mycobacterium avium"],["NCBITaxon%3A1392002","Mycobacterium avium 05-4293"],["NCBITaxon%3A1392001","Mycobacterium avium 09-5983"],["NCBITaxon%3A1235987","Mycobacterium avium 100"],["NCBITaxon%3A1235988","Mycobacterium avium 101"],["NCBITaxon%3A243243","Mycobacterium avium 104"]]},{"id":"NCBITaxon:1898104","l":"Bacteroidota bacterium","na":72,"nb":1,"a":[["TED%3AAF-A0A2A4Q994-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2A4Q994-F1-model_v4_TED03"],["TED%3AAF-A0A2G6GVF6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2G6GVF6-F1-model_v4_TED03"],["TED%3AAF-A0A2T4XGN9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T4XGN9-F1-model_v4_TED01"],["TED%3AAF-A0A317HCP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A317HCP7-F1-model_v4_TED01"],["TED%3AAF-A0A350BLG6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A350BLG6-F1-model_v4_TED01"],["TED%3AAF-A0A350IIQ5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A350IIQ5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1898104","Bacteroidota bacterium"]]},{"id":"NCBITaxon:28183","l":"Leptospira santarosai","na":1,"nb":72,"a":[["TED%3AAF-A0A2P1QYQ7-F1-model_v4_TED01","TED novel fold AF-A0A2P1QYQ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28183","Leptospira santarosai"],["NCBITaxon%3A312171","Leptospira santarosai serovar Alexi"],["NCBITaxon%3A407851","Leptospira santarosai serovar Alice"],["NCBITaxon%3A1049975","Leptospira santarosai serovar Arenal"],["NCBITaxon%3A1085549","Leptospira santarosai serovar Arenal str. 11"],["NCBITaxon%3A1085550","Leptospira santarosai serovar Arenal str. 7"]]},{"id":"NCBITaxon:216816","l":"Bifidobacterium longum","na":1,"nb":69,"a":[["TED%3AAF-A0A413ACI9-F1-model_v4_TED01","TED novel fold AF-A0A413ACI9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1680","Bifidobacterium adolescentis"],["NCBITaxon%3A216816","Bifidobacterium longum"],["NCBITaxon%3A1000567","Bifidobacterium longum 3_1_37DFAAB"],["NCBITaxon%3A1280702","Bifidobacterium longum AGR2137"],["NCBITaxon%3A478445","Bifidobacterium longum BORI"],["NCBITaxon%3A1263059","Bifidobacterium longum CAG:69"]]},{"id":"NCBITaxon:83554","l":"Chlamydia psittaci","na":1,"nb":69,"a":[["Pfam%3APF01345","CLIPPER domain"]],"b":[["NCBITaxon%3A83554","Chlamydia psittaci"],["NCBITaxon%3A1112252","Chlamydia psittaci 01DC11"],["NCBITaxon%3A1221877","Chlamydia psittaci 01DC12"],["NCBITaxon%3A1112253","Chlamydia psittaci 02DC14"],["NCBITaxon%3A1112254","Chlamydia psittaci 02DC15"],["NCBITaxon%3A1112255","Chlamydia psittaci 02DC16"]]},{"id":"NCBITaxon:1913989","l":"Gammaproteobacteria bacterium","na":68,"nb":1,"a":[["TED%3AAF-A0A2D7BTI7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2D7BTI7-F1-model_v4_TED03"],["TED%3AAF-A0A2E0GQK5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E0GQK5-F1-model_v4_TED02"],["TED%3AAF-A0A2E1MNN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E1MNN3-F1-model_v4_TED01"],["TED%3AAF-A0A2E4G9I4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E4G9I4-F1-model_v4_TED02"],["TED%3AAF-A0A2E9KQ70-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E9KQ70-F1-model_v4_TED02"],["TED%3AAF-A0A2G6L7M2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2G6L7M2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1913989","Gammaproteobacteria bacterium"]]},{"id":"NCBITaxon:2026779","l":"Planctomycetaceae bacterium","na":66,"nb":1,"a":[["TED%3AAF-A0A2D4WNH1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D4WNH1-F1-model_v4_TED01"],["TED%3AAF-A0A2D4WRD3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D4WRD3-F1-model_v4_TED01"],["TED%3AAF-A0A2D5S4B7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2D5S4B7-F1-model_v4_TED03"],["TED%3AAF-A0A2D5S7C0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D5S7C0-F1-model_v4_TED01"],["TED%3AAF-A0A2D5YVT9-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A2D5YVT9-F1-model_v4_TED05"],["TED%3AAF-A0A2E0X0G9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E0X0G9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026779","Planctomycetaceae bacterium"]]},{"id":"NCBITaxon:246196","l":"Mycolicibacterium smegmatis (strain ATCC 700084 / mc(2)155)","na":66,"nb":1,"a":[["Pfam%3APF12806","Acetyl-CoA dehydrogenase C-terminal like"],["Pfam%3APF12897","Aspartate amino-transferase"],["Pfam%3APF05088","Bacterial NAD-glutamate dehydrogenase, catalytic domain"],["Pfam%3APF26519","Biotin synthase auxiliary protein family"],["Pfam%3APF21095","CarD, C-terminal domain"],["Pfam%3APF24607","Arabinofuranosyltransferase D, third carbohydrate binding module"]],"b":[["NCBITaxon%3A246196","Mycolicibacterium smegmatis MC2 155"]]},{"id":"NCBITaxon:1111708","l":"Synechocystis sp. (strain ATCC 27184 / PCC 6803 / Kazusa)","na":61,"nb":1,"a":[["Pfam%3APF07698","7TM receptor with intracellular HD hydrolase"],["Pfam%3APF07697","7TM-HD extracellular"],["Pfam%3APF11266","Long-chain fatty aldehyde decarbonylase"],["Pfam%3APF21571","Arginine dihydrolase ArgZ-like, C-terminal, first region"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF17886","HSP20-like domain found in ArsA"]],"b":[["NCBITaxon%3A1111708","Synechocystis sp. PCC 6803 substr. Kazusa"]]},{"id":"NCBITaxon:174","l":"Leptospira borgpetersenii","na":1,"nb":61,"a":[["Pfam%3APF01548","Transposase"]],"b":[["NCBITaxon%3A174","Leptospira borgpetersenii"],["NCBITaxon%3A652580","Leptospira borgpetersenii serovar Arborea"],["NCBITaxon%3A1218566","Leptospira borgpetersenii serovar Arborea str. LT2208"],["NCBITaxon%3A508535","Leptospira borgpetersenii serovar Balcanica"],["NCBITaxon%3A280505","Leptospira borgpetersenii serovar Ballum"],["NCBITaxon%3A376921","Leptospira borgpetersenii serovar Castellonis"]]},{"id":"NCBITaxon:2026799","l":"Verrucomicrobiota bacterium","na":59,"nb":1,"a":[["TED%3AAF-A0A2E4G0Z6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E4G0Z6-F1-model_v4_TED02"],["TED%3AAF-A0A2N9NMU0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N9NMU0-F1-model_v4_TED01"],["TED%3AAF-A0A2N9NPU2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N9NPU2-F1-model_v4_TED01"],["TED%3AAF-A0A2V2BWA1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V2BWA1-F1-model_v4_TED02"],["TED%3AAF-A0A2V2C310-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V2C310-F1-model_v4_TED01"],["TED%3AAF-A0A2V2DHS2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V2DHS2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026799","Verrucomicrobiota bacterium"]]},{"id":"NCBITaxon:1869227","l":"bacterium","na":57,"nb":1,"a":[["TED%3AAF-A0A2D6E3L3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D6E3L3-F1-model_v4_TED02"],["TED%3AAF-A0A2D6IMF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D6IMF4-F1-model_v4_TED01"],["TED%3AAF-A0A3N5GA95-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3N5GA95-F1-model_v4_TED02"],["TED%3AAF-A0A3N5I065-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N5I065-F1-model_v4_TED01"],["TED%3AAF-A0A496UYV5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A496UYV5-F1-model_v4_TED02"],["TED%3AAF-A0A4Q3U385-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q3U385-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1869227","bacterium"]]},{"id":"NCBITaxon:233413","l":"Mycobacterium bovis (strain ATCC BAA-935 / AF2122/97)","na":52,"nb":1,"a":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF12625","Arabinose-binding domain of AraC transcription regulator, N-term"],["Pfam%3APF21139","Methylcrotonyl-CoA carboxylase, alpha-subunit, BT domain"],["Pfam%3APF09167","Domain of unknown function (DUF1942)"],["Pfam%3APF09438","Domain of unknown function (DUF2017)"],["Pfam%3APF12823","Domain of unknown function (DUF3817)"]],"b":[["NCBITaxon%3A233413","Mycobacterium tuberculosis variant bovis AF2122/97"]]},{"id":"NCBITaxon:1165","l":"Anabaena cylindrica","na":1,"nb":51,"a":[["Pfam%3APF17275","Family of unknown function (DUF5340)"]],"b":[["NCBITaxon%3A136078","Anabaena cf. cylindrica 133"],["NCBITaxon%3A2716356","Anabaena cf. cylindrica BACA0067"],["NCBITaxon%3A136079","Anabaena cf. cylindrica PMC9705"],["NCBITaxon%3A264675","Anabaena cf. cylindrica XP6B"],["NCBITaxon%3A1165","Anabaena cylindrica"],["NCBITaxon%3A425377","Anabaena cylindrica A621"]]},{"id":"NCBITaxon:1184","l":"Leptolyngbya boryana","na":1,"nb":51,"a":[["Pfam%3APF17265","Family of unknown function (DUF5331)"]],"b":[["NCBITaxon%3A1184","Leptolyngbya boryana"],["NCBITaxon%3A2745129","Leptolyngbya boryana ampf9"],["NCBITaxon%3A2048973","Leptolyngbya boryana AV12"],["NCBITaxon%3A3013905","Leptolyngbya boryana BACA0330"],["NCBITaxon%3A3384761","Leptolyngbya boryana BEA 1476B"],["NCBITaxon%3A3024996","Leptolyngbya boryana C132"]]},{"id":"NCBITaxon:2026763","l":"Myxococcales bacterium","na":51,"nb":1,"a":[["TED%3AAF-A0A2E5HQQ8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E5HQQ8-F1-model_v4_TED02"],["TED%3AAF-A0A2E6VRH0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E6VRH0-F1-model_v4_TED01"],["TED%3AAF-A0A2E6VU88-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E6VU88-F1-model_v4_TED01"],["TED%3AAF-A0A2F0AQB0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2F0AQB0-F1-model_v4_TED03"],["TED%3AAF-A0A2F0AS25-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2F0AS25-F1-model_v4_TED01"],["TED%3AAF-A0A356T3G6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A356T3G6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026763","Myxococcales bacterium"]]},{"id":"NCBITaxon:2026742","l":"Gemmatimonadota bacterium","na":49,"nb":1,"a":[["TED%3AAF-A0A2D8UDK3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D8UDK3-F1-model_v4_TED02"],["TED%3AAF-A0A2E8HI53-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E8HI53-F1-model_v4_TED02"],["TED%3AAF-A0A2V7GTY6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2V7GTY6-F1-model_v4_TED03"],["TED%3AAF-A0A2V7KRA4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V7KRA4-F1-model_v4_TED01"],["TED%3AAF-A0A2V7S355-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V7S355-F1-model_v4_TED01"],["TED%3AAF-A0A3M2BQU6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M2BQU6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026742","Gemmatimonadota bacterium"]]},{"id":"NCBITaxon:2026714","l":"Candidatus Bathyarchaeota archaeon","na":48,"nb":1,"a":[["TED%3AAF-A0A2U0S3C7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U0S3C7-F1-model_v4_TED01"],["TED%3AAF-A0A3R7FRL7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R7FRL7-F1-model_v4_TED01"],["TED%3AAF-A0A419JY39-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A419JY39-F1-model_v4_TED02"],["TED%3AAF-A0A497K2R1-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A497K2R1-F1-model_v4_TED04"],["TED%3AAF-A0A497M2J4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A497M2J4-F1-model_v4_TED02"],["TED%3AAF-A0A537DTR3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A537DTR3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026714","Candidatus Bathyarchaeota archaeon"]]},{"id":"NCBITaxon:75695","l":"Umezakia ovalisporum","na":1,"nb":48,"a":[["TED%3AAF-A0A654SF36-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A654SF36-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A75695","Umezakia ovalisporum"],["NCBITaxon%3A543814","Umezakia ovalisporum 1LT27S04"],["NCBITaxon%3A543812","Umezakia ovalisporum 2LT27S02"],["NCBITaxon%3A543813","Umezakia ovalisporum 2LT27S12"],["NCBITaxon%3A2290998","Umezakia ovalisporum A1"],["NCBITaxon%3A985844","Umezakia ovalisporum AB2010/05"]]},{"id":"NCBITaxon:1977087","l":"Pseudomonadota bacterium","na":46,"nb":1,"a":[["TED%3AAF-A0A2E7CHS1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E7CHS1-F1-model_v4_TED02"],["TED%3AAF-A0A2E7CJB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E7CJB9-F1-model_v4_TED01"],["TED%3AAF-A0A2E7CKH3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E7CKH3-F1-model_v4_TED02"],["TED%3AAF-A0A2E7CLD6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2E7CLD6-F1-model_v4_TED04"],["TED%3AAF-A0A2G6CNE9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G6CNE9-F1-model_v4_TED01"],["TED%3AAF-A0A2W4LDI3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W4LDI3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1977087","Pseudomonadota bacterium"]]},{"id":"NCBITaxon:224324","l":"Aquifex aeolicus (strain VF5)","na":46,"nb":1,"a":[["IDPO%3A0000018","disorder to molten globule"],["IDPO%3A0000003","molten globule"],["IDPO%3A0000014","order to disorder"],["Pfam%3APF22430","Ago, N-terminal domain"],["Pfam%3APF08843","Nucleotidyl transferase AbiEii toxin, Type IV TA system"],["Pfam%3APF27187","aq_097 APC superfamily transporter"]],"b":[["NCBITaxon%3A224324","Aquifex aeolicus VF5"]]},{"id":"NCBITaxon:2026739","l":"Euryarchaeota archaeon","na":44,"nb":1,"a":[["TED%3AAF-A0A2D6U3C6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D6U3C6-F1-model_v4_TED01"],["TED%3AAF-A0A2D6UU17-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D6UU17-F1-model_v4_TED02"],["TED%3AAF-A0A2E1YFF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E1YFF4-F1-model_v4_TED01"],["TED%3AAF-A0A2E2S7P6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E2S7P6-F1-model_v4_TED02"],["TED%3AAF-A0A2E2TTK1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E2TTK1-F1-model_v4_TED02"],["TED%3AAF-A0A2E3C8C1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2E3C8C1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2026739","Methanobacteriota archaeon"]]},{"id":"NCBITaxon:149391","l":"Salmonella enterica subsp. enterica serovar Braenderup","na":1,"nb":43,"a":[["TED%3AAF-A0A5X8MTY2-F1-model_v4_TED01","TED novel fold AF-A0A5X8MTY2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A149391","Salmonella enterica subsp. enterica serovar Braenderup"],["NCBITaxon%3A1173803","Salmonella enterica subsp. enterica serovar Braenderup str. 0823"],["NCBITaxon%3A1124927","Salmonella enterica subsp. enterica serovar Braenderup str. 700136"],["NCBITaxon%3A1192707","Salmonella enterica subsp. enterica serovar Braenderup str. 85239"]]},{"id":"NCBITaxon:268141","l":"Phormidesmis priestleyi","na":1,"nb":43,"a":[["TED%3AAF-A0A2W4ZQA1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W4ZQA1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A268141","Phormidesmis priestleyi"],["NCBITaxon%3A3051850","Phormidesmis priestleyi 101"],["NCBITaxon%3A3051851","Phormidesmis priestleyi 102"],["NCBITaxon%3A3051852","Phormidesmis priestleyi 103"],["NCBITaxon%3A3438410","Phormidesmis priestleyi 3-1-A_LPP2"],["NCBITaxon%3A1844210","Phormidesmis priestleyi AB 10-10"]]},{"id":"NCBITaxon:456327","l":"Xanthomonas euvesicatoria","na":1,"nb":42,"a":[["Pfam%3APF03377","TAL effector repeat"]],"b":[["NCBITaxon%3A487855","Xanthomonas campestris pv. blepharidis"],["NCBITaxon%3A487857","Xanthomonas campestris pv. carissae"],["NCBITaxon%3A487859","Xanthomonas campestris pv. clerodendri"],["NCBITaxon%3A487860","Xanthomonas campestris pv. convolvuli"],["NCBITaxon%3A279089","Xanthomonas campestris pv. coriandri"],["NCBITaxon%3A487861","Xanthomonas campestris pv. daturae"]]},{"id":"NCBITaxon:340","l":"Xanthomonas campestris pv. campestris","na":1,"nb":41,"a":[["Pfam%3APF22059","Glucuronosyltransferase GumK, N-terminal domain"]],"b":[["NCBITaxon%3A339","Xanthomonas campestris"],["NCBITaxon%3A340","Xanthomonas campestris pv. campestris"],["NCBITaxon%3A1357995","Xanthomonas campestris pv. campestris str. 147"],["NCBITaxon%3A314565","Xanthomonas campestris pv. campestris str. 8004"],["NCBITaxon%3A190485","Xanthomonas campestris pv. campestris str. ATCC 33913"],["NCBITaxon%3A509169","Xanthomonas campestris pv. campestris str. B100"]]},{"id":"NCBITaxon:2052180","l":"Phycisphaerales bacterium","na":40,"nb":1,"a":[["TED%3AAF-A0A349UME3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A349UME3-F1-model_v4_TED02"],["TED%3AAF-A0A349UPM2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A349UPM2-F1-model_v4_TED02"],["TED%3AAF-A0A349UQM8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A349UQM8-F1-model_v4_TED02"],["TED%3AAF-A0A357C0B5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A357C0B5-F1-model_v4_TED01"],["TED%3AAF-A0A3D0JYL5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D0JYL5-F1-model_v4_TED01"],["TED%3AAF-A0A6P2AJ98-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6P2AJ98-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052180","Phycisphaerales bacterium"]]},{"id":"NCBITaxon:367110","l":"Neurospora crassa (strain ATCC 24698 / 74-OR23-1A / CBS 708.71 / DSM 1257 / FGSC 987)","na":40,"nb":1,"a":[["Pfam%3APF08509","Adenylate cyclase G-alpha binding domain"],["Pfam%3APF25026","Asd-4-like domain"],["Pfam%3APF21334","Fungal epsilon subunit of F1F0-ATP synthase C-terminal domain"],["Pfam%3APF20238","Copper acquisition factor BIM1-like"],["Pfam%3APF21492","Ribosomal protein L31p, N-terminal"],["Pfam%3APF00734","Fungal cellulose binding domain"]],"b":[["NCBITaxon%3A367110","Neurospora crassa OR74A"]]},{"id":"NCBITaxon:595","l":"Salmonella enterica subsp. enterica serovar Infantis","na":1,"nb":40,"a":[["Pfam%3APF12728","Helix-turn-helix domain"]],"b":[["NCBITaxon%3A595","Salmonella enterica subsp. enterica serovar Infantis"],["NCBITaxon%3A1173851","Salmonella enterica subsp. enterica serovar Infantis str. 0662"],["NCBITaxon%3A1329901","Salmonella enterica subsp. enterica serovar Infantis str. 119944"],["NCBITaxon%3A1347789","Salmonella enterica subsp. enterica serovar Infantis str. 335-3"],["NCBITaxon%3A1192724","Salmonella enterica subsp. enterica serovar Infantis str. 79108"],["NCBITaxon%3A1192725","Salmonella enterica subsp. enterica serovar Infantis str. 81164"]]},{"id":"NCBITaxon:1879010","l":"Bacillota bacterium","na":39,"nb":1,"a":[["TED%3AAF-A0A2V2EW79-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V2EW79-F1-model_v4_TED02"],["TED%3AAF-A0A2V2GI07-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V2GI07-F1-model_v4_TED01"],["TED%3AAF-A0A316N6L2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A316N6L2-F1-model_v4_TED01"],["TED%3AAF-A0A348VYN1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A348VYN1-F1-model_v4_TED01"],["TED%3AAF-A0A350BI57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A350BI57-F1-model_v4_TED01"],["TED%3AAF-A0A351SP42-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A351SP42-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1879010","Bacillota bacterium"]]},{"id":"NCBITaxon:1913988","l":"Alphaproteobacteria bacterium","na":38,"nb":1,"a":[["TED%3AAF-A0A2A4UMX6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A4UMX6-F1-model_v4_TED01"],["TED%3AAF-A0A2A4YY25-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2A4YY25-F1-model_v4_TED02"],["TED%3AAF-A0A2D6WF12-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D6WF12-F1-model_v4_TED02"],["TED%3AAF-A0A349MJ15-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349MJ15-F1-model_v4_TED01"],["TED%3AAF-A0A349MKS3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349MKS3-F1-model_v4_TED01"],["TED%3AAF-A0A356FV58-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A356FV58-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1913988","Alphaproteobacteria bacterium"]]},{"id":"NCBITaxon:47715","l":"Lacticaseibacillus rhamnosus","na":1,"nb":38,"a":[["Pfam%3APF04914","DltD protein"]],"b":[["NCBITaxon%3A1597","Lacticaseibacillus paracasei"],["NCBITaxon%3A47715","Lacticaseibacillus rhamnosus"],["NCBITaxon%3A1381116","Lacticaseibacillus rhamnosus 2166"],["NCBITaxon%3A1408180","Lacticaseibacillus rhamnosus 51B"],["NCBITaxon%3A1002365","Lacticaseibacillus rhamnosus ATCC 21052"],["NCBITaxon%3A1088720","Lacticaseibacillus rhamnosus ATCC 8530"]]},{"id":"NCBITaxon:747","l":"Pasteurella multocida","na":1,"nb":38,"a":[["TED%3AAF-A0A8A8HHD5-F1-model_v4_TED02","TED novel fold AF-A0A8A8HHD5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A714","Aggregatibacter actinomycetemcomitans"],["NCBITaxon%3A747","Pasteurella multocida"],["NCBITaxon%3A1298929","Pasteurella multocida 1500C"],["NCBITaxon%3A1298924","Pasteurella multocida 1500E"],["NCBITaxon%3A1298925","Pasteurella multocida 2000"],["NCBITaxon%3A1075089","Pasteurella multocida 36950"]]},{"id":"NCBITaxon:1590","l":"Lactiplantibacillus plantarum","na":1,"nb":36,"a":[["Pfam%3APF06314","Acetoacetate decarboxylase (ADC)"]],"b":[["NCBITaxon%3A271881","Lactiplantibacillus argentoratensis"],["NCBITaxon%3A1423831","Lactiplantibacillus argentoratensis DSM 16365"],["NCBITaxon%3A60520","Lactiplantibacillus paraplantarum"],["NCBITaxon%3A1590","Lactiplantibacillus plantarum"],["NCBITaxon%3A1327988","Lactiplantibacillus plantarum 16"],["NCBITaxon%3A1399793","Lactiplantibacillus plantarum 19L3"]]},{"id":"NCBITaxon:54736","l":"Salmonella bongori","na":1,"nb":36,"a":[["TED%3AAF-A0A698W123-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A698W123-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A54736","Salmonella bongori"],["NCBITaxon%3A1299281","Salmonella bongori CFSAN000509"],["NCBITaxon%3A1299282","Salmonella bongori CFSAN000510"],["NCBITaxon%3A1197719","Salmonella bongori N268-08"],["NCBITaxon%3A218493","Salmonella bongori NCTC 12419"],["NCBITaxon%3A2577113","Salmonella bongori serovar 13,22:r:-"]]},{"id":"NCBITaxon:1898203","l":"Lachnospiraceae bacterium","na":35,"nb":1,"a":[["TED%3AAF-A0A2G3Q064-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G3Q064-F1-model_v4_TED01"],["TED%3AAF-A0A316PVU3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A316PVU3-F1-model_v4_TED02"],["TED%3AAF-A0A349YHB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349YHB4-F1-model_v4_TED01"],["TED%3AAF-A0A349ZVK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349ZVK2-F1-model_v4_TED01"],["TED%3AAF-A0A354ID29-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A354ID29-F1-model_v4_TED04"],["TED%3AAF-A0A355NJL5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A355NJL5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1898203","Lachnospiraceae bacterium"]]},{"id":"NCBITaxon:268115","l":"Shackletoniella antarctica","na":1,"nb":34,"a":[["TED%3AAF-A0A2W4VQ15-F1-model_v4_TED03","TED novel fold AF-A0A2W4VQ15-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2153382","Leptolyngbya cf. antarctica ULC090"],["NCBITaxon%3A268115","Shackletoniella antarctica"],["NCBITaxon%3A3065884","Shackletoniella antarctica ACKU671"],["NCBITaxon%3A3065885","Shackletoniella antarctica ACKU672"],["NCBITaxon%3A268119","Shackletoniella antarctica ANT.BFI.1"],["NCBITaxon%3A268126","Shackletoniella antarctica ANT.L18.1"]]},{"id":"NCBITaxon:438","l":"Acetobacter pasteurianus","na":1,"nb":34,"a":[["TED%3AAF-A0A1A0CE09-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1A0CE09-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A435","Acetobacter aceti"],["NCBITaxon%3A178900","Acetobacter cerevisiae"],["NCBITaxon%3A1307903","Acetobacter cerevisiae DSM 14362"],["NCBITaxon%3A1737472","Acetobacter conturbans"],["NCBITaxon%3A104097","Acetobacter estunensis"],["NCBITaxon%3A104101","Acetobacter indonesiensis"]]},{"id":"NCBITaxon:2026778","l":"Phycisphaerae bacterium","na":33,"nb":1,"a":[["TED%3AAF-A0A2D6LLD2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D6LLD2-F1-model_v4_TED01"],["TED%3AAF-A0A2D9C3W2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2D9C3W2-F1-model_v4_TED03"],["TED%3AAF-A0A2D9CC21-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9CC21-F1-model_v4_TED01"],["TED%3AAF-A0A2D9CGW5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9CGW5-F1-model_v4_TED01"],["TED%3AAF-A0A2E0XWN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0XWN7-F1-model_v4_TED01"],["TED%3AAF-A0A2E3Q3Y9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2E3Q3Y9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2026778","Phycisphaerae bacterium"]]},{"id":"NCBITaxon:2026801","l":"Verrucomicrobiales bacterium","na":33,"nb":1,"a":[["TED%3AAF-A0A2D5AKS0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D5AKS0-F1-model_v4_TED01"],["TED%3AAF-A0A2D9K0M4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9K0M4-F1-model_v4_TED01"],["TED%3AAF-A0A2E0QW10-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0QW10-F1-model_v4_TED01"],["TED%3AAF-A0A2E5EQN4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E5EQN4-F1-model_v4_TED02"],["TED%3AAF-A0A2E5WTV4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E5WTV4-F1-model_v4_TED01"],["TED%3AAF-A0A350EXF0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A350EXF0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026801","Verrucomicrobiales bacterium"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":32,"nb":1,"a":[["Pfam%3APF25848","Rodlin protein"],["Pfam%3APF13420","Acetyltransferase (GNAT) domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF26381","BREX System ATPase PglY protein 5th domain"],["Pfam%3APF26382","BREX System ATPase PglY protein 6th domain"]],"b":[["NCBITaxon%3A100226","Streptomyces coelicolor A3(2)"]]},{"id":"NCBITaxon:170187","l":"Streptococcus pneumoniae serotype 4 (strain ATCC BAA-334 / TIGR4)","na":32,"nb":1,"a":[["Pfam%3APF25935","LcnD-like, barrel-sandwich hybrid domain"],["Pfam%3APF22637","BppA domain 1"],["Pfam%3APF18146","Damage-inducible protein CinA KH domain"],["Pfam%3APF27342","ComB N-terminal domain"],["Pfam%3APF26697","Competence protein ComGC, C-terminal domain"],["Pfam%3APF23117","DpnD N-terminal domain"]],"b":[["NCBITaxon%3A170187","Streptococcus pneumoniae TIGR4"]]},{"id":"NCBITaxon:196","l":"Campylobacter fetus","na":1,"nb":32,"a":[["TED%3AAF-A0A7D7Q980-F1-model_v4_TED02","TED novel fold AF-A0A7D7Q980-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A196","Campylobacter fetus"],["NCBITaxon%3A32019","Campylobacter fetus subsp. fetus"],["NCBITaxon%3A1240980","Campylobacter fetus subsp. fetus 04/554"],["NCBITaxon%3A360106","Campylobacter fetus subsp. fetus 82-40"],["NCBITaxon%3A1273268","Campylobacter fetus subsp. fetus BT 10/98"],["NCBITaxon%3A1273130","Campylobacter fetus subsp. fetus cff110800-21-2"]]},{"id":"NCBITaxon:89957","l":"Polarella glacialis","na":31,"nb":1,"a":[["TED%3AAF-A0A813DR61-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A813DR61-F1-model_v4_TED02"],["TED%3AAF-A0A813EZ41-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A813EZ41-F1-model_v4_TED01"],["TED%3AAF-A0A813F2F6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A813F2F6-F1-model_v4_TED02"],["TED%3AAF-A0A813FUK9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A813FUK9-F1-model_v4_TED01"],["TED%3AAF-A0A813FWP3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A813FWP3-F1-model_v4_TED03"],["TED%3AAF-A0A813FX44-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A813FX44-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A89957","Polarella glacialis"]]},{"id":"NCBITaxon:2021391","l":"Flavobacteriales bacterium","na":30,"nb":1,"a":[["TED%3AAF-A0A2A4YEP9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A4YEP9-F1-model_v4_TED01"],["TED%3AAF-A0A2A5AVN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A5AVN3-F1-model_v4_TED01"],["TED%3AAF-A0A2A5G2T9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2A5G2T9-F1-model_v4_TED02"],["TED%3AAF-A0A2D8WDN1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D8WDN1-F1-model_v4_TED02"],["TED%3AAF-A0A2E6QTX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E6QTX7-F1-model_v4_TED01"],["TED%3AAF-A0A2E6SXH5-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2E6SXH5-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2021391","Flavobacteriales bacterium"]]},{"id":"NCBITaxon:2030927","l":"Bacteroidales bacterium","na":30,"nb":1,"a":[["TED%3AAF-A0A352Z0C5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A352Z0C5-F1-model_v4_TED01"],["TED%3AAF-A0A353YZA1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A353YZA1-F1-model_v4_TED02"],["TED%3AAF-A0A3D2HK01-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3D2HK01-F1-model_v4_TED03"],["TED%3AAF-A0A3N5EPM0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3N5EPM0-F1-model_v4_TED03"],["TED%3AAF-A0A4U1GQT3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U1GQT3-F1-model_v4_TED01"],["TED%3AAF-A0A6I0E1S9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I0E1S9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2030927","Bacteroidales bacterium"]]},{"id":"NCBITaxon:2052143","l":"Anaerolineae bacterium","na":30,"nb":1,"a":[["TED%3AAF-A0A521T0W4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A521T0W4-F1-model_v4_TED02"],["TED%3AAF-A0A7C3CL15-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C3CL15-F1-model_v4_TED02"],["TED%3AAF-A0A7C3W5I8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C3W5I8-F1-model_v4_TED01"],["TED%3AAF-A0A7C3YC23-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C3YC23-F1-model_v4_TED01"],["TED%3AAF-A0A7C5UU49-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A7C5UU49-F1-model_v4_TED05"],["TED%3AAF-A0A7C5YS47-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C5YS47-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2052143","Anaerolineae bacterium"]]},{"id":"NCBITaxon:272947","l":"Rickettsia prowazekii (strain Madrid E)","na":30,"nb":1,"a":[["Pfam%3APF16998","17 kDa outer membrane surface antigen"],["Pfam%3APF11020","Domain of unknown function (DUF2610)"],["Pfam%3APF13441","YMGG-like Gly-zipper"],["Pfam%3APF18324","Bacterial isocitrate dehydrogenase, C-terminal domain"],["Pfam%3APF18640","LepB N-terminal domain"],["Pfam%3APF04392","ABC transporter substrate binding protein"]],"b":[["NCBITaxon%3A272947","Rickettsia prowazekii str. Madrid E"]]},{"id":"NCBITaxon:129910","l":"Limnospira maxima","na":1,"nb":29,"a":[["Pfam%3APF09150","Orange carotenoid protein, N-terminal"]],"b":[["NCBITaxon%3A129910","Limnospira maxima"],["NCBITaxon%3A652024","Limnospira maxima BJ 2000"],["NCBITaxon%3A1193116","Limnospira maxima CCC481"],["NCBITaxon%3A293862","Limnospira maxima CONC-040"],["NCBITaxon%3A513049","Limnospira maxima CS-328"],["NCBITaxon%3A1346522","Limnospira maxima CY-023"]]},{"id":"NCBITaxon:1596","l":"Lactobacillus gasseri","na":1,"nb":29,"a":[["TED%3AAF-A0A845FIT3-F1-model_v4_TED02","TED novel fold AF-A0A845FIT3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A305793","Companilactobacillus nantensis"],["NCBITaxon%3A1596","Lactobacillus gasseri"],["NCBITaxon%3A440498","Lactobacillus gasseri 1151"],["NCBITaxon%3A1403312","Lactobacillus gasseri 130918"],["NCBITaxon%3A1346615","Lactobacillus gasseri 2016"],["NCBITaxon%3A630527","Lactobacillus gasseri 202-4"]]},{"id":"NCBITaxon:1898204","l":"Clostridiaceae bacterium","na":29,"nb":1,"a":[["TED%3AAF-A0A7C6HD61-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C6HD61-F1-model_v4_TED02"],["TED%3AAF-A0A7C6HNV7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C6HNV7-F1-model_v4_TED01"],["TED%3AAF-A0A7V6L6S6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7V6L6S6-F1-model_v4_TED02"],["TED%3AAF-A0A7V6W7J0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7V6W7J0-F1-model_v4_TED03"],["TED%3AAF-A0A7X4ZH89-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X4ZH89-F1-model_v4_TED01"],["TED%3AAF-A0A7X6VJ94-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7X6VJ94-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1898204","Clostridiaceae bacterium"]]},{"id":"NCBITaxon:1932692","l":"Lentisphaerota bacterium","na":29,"nb":1,"a":[["TED%3AAF-A0A2V2GUJ0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2V2GUJ0-F1-model_v4_TED03"],["TED%3AAF-A0A7C5AIX1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C5AIX1-F1-model_v4_TED02"],["TED%3AAF-A0A7C5EJG1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C5EJG1-F1-model_v4_TED01"],["TED%3AAF-A0A7V6HEL0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7V6HEL0-F1-model_v4_TED02"],["TED%3AAF-A0A7V6HGC0-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A7V6HGC0-F1-model_v4_TED06"],["TED%3AAF-A0A7V6LFG8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7V6LFG8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1932692","Lentisphaerota bacterium"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":1,"nb":29,"a":[["TED%3AAF-A0A4R6CRR7-F1-model_v4_TED01","TED novel fold AF-A0A4R6CRR7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1579","Lactobacillus acidophilus"],["NCBITaxon%3A47770","Lactobacillus crispatus"],["NCBITaxon%3A575595","Lactobacillus crispatus 125-2-CHN"],["NCBITaxon%3A1381118","Lactobacillus crispatus 2029"],["NCBITaxon%3A679188","Lactobacillus crispatus 214-1"],["NCBITaxon%3A440496","Lactobacillus crispatus CTV-05"]]},{"id":"NCBITaxon:1335","l":"Streptococcus equinus","na":1,"nb":27,"a":[["TED%3AAF-A0A1V0GLT7-F1-model_v4_TED01","TED novel fold AF-A0A1V0GLT7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1335","Streptococcus equinus"],["NCBITaxon%3A1410675","Streptococcus equinus 2B"],["NCBITaxon%3A1210006","Streptococcus equinus ATCC 33317"],["NCBITaxon%3A864569","Streptococcus equinus ATCC 700338"],["NCBITaxon%3A525379","Streptococcus equinus ATCC 9812"],["NCBITaxon%3A1280690","Streptococcus equinus B315"]]},{"id":"NCBITaxon:319705","l":"Mycobacteroides abscessus subsp. bolletii","na":1,"nb":27,"a":[["TED%3AAF-A0A8B4E570-F1-model_v4_TED01","TED novel fold AF-A0A8B4E570-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A36809","Mycobacteroides abscessus"],["NCBITaxon%3A1185650","Mycobacteroides abscessus subsp. abscessus"],["NCBITaxon%3A319705","Mycobacteroides abscessus subsp. bolletii"],["NCBITaxon%3A1299325","Mycobacteroides abscessus subsp. bolletii 103"],["NCBITaxon%3A1299321","Mycobacteroides abscessus subsp. bolletii 1513"],["NCBITaxon%3A1001704","Mycobacteroides abscessus subsp. bolletii 1S-151-0930"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae (strain ATCC 42149 / RIB 40)","na":27,"nb":1,"a":[["Pfam%3APF09260","Alpha-amylase, domain C"],["Pfam%3APF28338","AclK C-terminal domain"],["Pfam%3APF09206","Alpha-L-arabinofuranosidase B, catalytic"],["Pfam%3APF28380","Sesquiterpene cyclase astC-like C-terminal domain"],["Pfam%3APF13364","Beta-galactosidase second all-beta domain"],["Pfam%3APF10435","Beta-galactosidase, domain 2"]],"b":[["NCBITaxon%3A510516","Aspergillus oryzae RIB40"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":26,"nb":1,"a":[["Pfam%3APF27270","Alr1449"],["Pfam%3APF27301","Alr2735 N-terminal domain"],["Pfam%3APF27288","Alr2735"],["Pfam%3APF21571","Arginine dihydrolase ArgZ-like, C-terminal, first region"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF13205","Bacterial Ig-like domain"]],"b":[["NCBITaxon%3A103690","Nostoc sp. PCC 7120 = FACHB-418"]]},{"id":"NCBITaxon:2026800","l":"Verrucomicrobiaceae bacterium","na":26,"nb":1,"a":[["TED%3AAF-A0A2E4GNC6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4GNC6-F1-model_v4_TED01"],["TED%3AAF-A0A2E5XI32-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E5XI32-F1-model_v4_TED01"],["TED%3AAF-A0A4Q2XDM6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Q2XDM6-F1-model_v4_TED02"],["TED%3AAF-A0A4Q2YNJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q2YNJ9-F1-model_v4_TED01"],["TED%3AAF-A0A4Q2Z5Y8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Q2Z5Y8-F1-model_v4_TED02"],["TED%3AAF-A0A4Q2ZFM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q2ZFM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026800","Verrucomicrobiaceae bacterium"]]},{"id":"NCBITaxon:2371","l":"Xylella fastidiosa","na":1,"nb":26,"a":[["TED%3AAF-A0A1L2B4G6-F1-model_v4_TED02","TED novel fold AF-A0A1L2B4G6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A329529","environmental samples"],["NCBITaxon%3A329530","uncultured Xylella fastidiosa"],["NCBITaxon%3A2371","Xylella fastidiosa"],["NCBITaxon%3A1214121","Xylella fastidiosa 32"],["NCBITaxon%3A1211847","Xylella fastidiosa 6c"],["NCBITaxon%3A160492","Xylella fastidiosa 9a5c"]]},{"id":"NCBITaxon:272561","l":"Chlamydia trachomatis serovar D (strain ATCC VR-885 / DSM 19411 / UW-3/Cx)","na":26,"nb":1,"a":[["Pfam%3APF09825","Biotin-protein ligase, N terminal"],["Pfam%3APF01308","Chlamydia major outer membrane protein"],["Pfam%3APF07577","Domain of Unknown Function (DUF1547)"],["Pfam%3APF27167","GRAD helix-turn-helix domain"],["Pfam%3APF00950","ABC 3 transport family"],["Pfam%3APF07548","Chlamydia polymorphic membrane protein middle domain"]],"b":[["NCBITaxon%3A272561","Chlamydia trachomatis D/UW-3/CX"]]},{"id":"NCBITaxon:28182","l":"Leptospira noguchii","na":1,"nb":26,"a":[["TED%3AAF-A0A540THB7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A540THB7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28182","Leptospira noguchii"],["NCBITaxon%3A508575","Leptospira noguchii serovar Argentiniensis"],["NCBITaxon%3A2608988","Leptospira noguchii serovar Australis"],["NCBITaxon%3A1085539","Leptospira noguchii serovar Autumnalis"],["NCBITaxon%3A1085540","Leptospira noguchii serovar Autumnalis str. ZUN142"],["NCBITaxon%3A508576","Leptospira noguchii serovar Carimagua"]]},{"id":"NCBITaxon:45916","l":"Nostoc ellipsosporum","na":1,"nb":25,"a":[["Pfam%3APF08881","CVNH domain"]],"b":[["NCBITaxon%3A45916","Nostoc ellipsosporum"],["NCBITaxon%3A1565566","Nostoc ellipsosporum AUS-JR/BS/MS/NT-049"],["NCBITaxon%3A1565585","Nostoc ellipsosporum AUS-JR/MT/NT-043"],["NCBITaxon%3A1887373","Nostoc ellipsosporum AUS-JR/MT/NT-102"],["NCBITaxon%3A1887374","Nostoc ellipsosporum AUS-JR/MT/NT-129"],["NCBITaxon%3A1510454","Nostoc ellipsosporum BTA 1075"]]},{"id":"NCBITaxon:2033014","l":"Armatimonadota bacterium","na":24,"nb":1,"a":[["TED%3AAF-A0A351MPS6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A351MPS6-F1-model_v4_TED01"],["TED%3AAF-A0A3D4ZVL2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D4ZVL2-F1-model_v4_TED02"],["TED%3AAF-A0A3D5A2W0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D5A2W0-F1-model_v4_TED01"],["TED%3AAF-A0A5M4DGB7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5M4DGB7-F1-model_v4_TED01"],["TED%3AAF-A0A7C2QLV6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7C2QLV6-F1-model_v4_TED03"],["TED%3AAF-A0A7C2VIR9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C2VIR9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2033014","Armatimonadota bacterium"]]},{"id":"NCBITaxon:2053489","l":"Candidatus Lokiarchaeota archaeon","na":24,"nb":1,"a":[["TED%3AAF-A0A497QJ17-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A497QJ17-F1-model_v4_TED02"],["TED%3AAF-A0A523RAE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A523RAE6-F1-model_v4_TED01"],["TED%3AAF-A0A524CXP6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A524CXP6-F1-model_v4_TED02"],["TED%3AAF-A0A524DLR2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A524DLR2-F1-model_v4_TED01"],["TED%3AAF-A0A524EDL8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A524EDL8-F1-model_v4_TED01"],["TED%3AAF-A0A524EZ17-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A524EZ17-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053489","Promethearchaeota archaeon"]]},{"id":"NCBITaxon:2925","l":"Alexandrium catenella","na":24,"nb":1,"a":[["TED%3AAF-A0A7S1KY03-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1KY03-F1-model_v4_TED01"],["TED%3AAF-A0A7S1L1S9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S1L1S9-F1-model_v4_TED02"],["TED%3AAF-A0A7S1ML43-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1ML43-F1-model_v4_TED01"],["TED%3AAF-A0A7S1PQ85-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1PQ85-F1-model_v4_TED01"],["TED%3AAF-A0A7S1QA17-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A7S1QA17-F1-model_v4_TED05"],["TED%3AAF-A0A7S1QL55-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S1QL55-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2925","Alexandrium catenella"]]},{"id":"NCBITaxon:2951","l":"Symbiodinium microadriaticum","na":24,"nb":1,"a":[["TED%3AAF-A0A1Q9CNX9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1Q9CNX9-F1-model_v4_TED03"],["TED%3AAF-A0A1Q9CU81-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q9CU81-F1-model_v4_TED01"],["TED%3AAF-A0A1Q9D1A1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q9D1A1-F1-model_v4_TED01"],["TED%3AAF-A0A1Q9DLT2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q9DLT2-F1-model_v4_TED01"],["TED%3AAF-A0A812J082-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A812J082-F1-model_v4_TED04"],["TED%3AAF-A0A812LXI9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812LXI9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2951","Symbiodinium microadriaticum"]]},{"id":"NCBITaxon:471","l":"Acinetobacter calcoaceticus","na":1,"nb":24,"a":[["TED%3AAF-A0A1A0GJD3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1A0GJD3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A471","Acinetobacter calcoaceticus"],["NCBITaxon%3A1295710","Acinetobacter calcoaceticus 639"],["NCBITaxon%3A1295711","Acinetobacter calcoaceticus 642"],["NCBITaxon%3A1295712","Acinetobacter calcoaceticus 648"],["NCBITaxon%3A1295713","Acinetobacter calcoaceticus 665"]]},{"id":"NCBITaxon:73915","l":"Pyrodinium bahamense","na":24,"nb":1,"a":[["TED%3AAF-A0A7S0A4R5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0A4R5-F1-model_v4_TED01"],["TED%3AAF-A0A7S0AC67-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0AC67-F1-model_v4_TED01"],["TED%3AAF-A0A7S0APM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0APM3-F1-model_v4_TED01"],["TED%3AAF-A0A7S0AQ53-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0AQ53-F1-model_v4_TED01"],["TED%3AAF-A0A7S0AX35-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0AX35-F1-model_v4_TED01"],["TED%3AAF-A0A7S0B705-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S0B705-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A73915","Pyrodinium bahamense"]]},{"id":"NCBITaxon:243276","l":"Treponema pallidum (strain DSM 117211 / Nichols)","na":23,"nb":1,"a":[["Pfam%3APF02424","ApbE family"],["Pfam%3APF27473","Cytoplasmic filament protein A C-terminal domain"],["Pfam%3APF13189","Cytidylate kinase-like family"],["Pfam%3APF10895","Domain of unknown function (DUF2715)"],["Pfam%3APF25843","Domain of unknown function (DUF7954)"],["Pfam%3APF25844","Domain of unknown function (DUF7955)"]],"b":[["NCBITaxon%3A243276","Treponema pallidum subsp. pallidum str. Nichols"]]},{"id":"NCBITaxon:266834","l":"Rhizobium meliloti (strain 1021)","na":23,"nb":1,"a":[["Pfam%3APF13279","Thioesterase-like superfamily"],["Pfam%3APF26956","ACR family N-terminal ACT domain"],["Pfam%3APF27143","Atu0565 family"],["Pfam%3APF27488","BioS helical-like domain"],["Pfam%3APF05853","beta-keto acid cleavage enzyme"],["Pfam%3APF13746","4Fe-4S dicluster domain"]],"b":[["NCBITaxon%3A266834","Sinorhizobium meliloti 1021"]]},{"id":"NCBITaxon:29497","l":"Vibrio splendidus","na":1,"nb":23,"a":[["TED%3AAF-A0A2N7ELI8-F1-model_v4_TED01","TED novel fold AF-A0A2N7ELI8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A693153","Vibrio atlanticus"],["NCBITaxon%3A29497","Vibrio splendidus"],["NCBITaxon%3A1191312","Vibrio splendidus 0407ZC148"],["NCBITaxon%3A314291","Vibrio splendidus 12B01"],["NCBITaxon%3A1191305","Vibrio splendidus 12E03"],["NCBITaxon%3A530557","Vibrio splendidus 12F01"]]},{"id":"NCBITaxon:59207","l":"Salmonella enterica subsp. indica","na":1,"nb":23,"a":[["TED%3AAF-A0A379YMR2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A379YMR2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59207","Salmonella enterica subsp. indica"],["NCBITaxon%3A3462441","Salmonella enterica subsp. indica 6,14:a:e,n,x"],["NCBITaxon%3A2577555","Salmonella enterica subsp. indica serovar 11:a:1,5"],["NCBITaxon%3A1160774","Salmonella enterica subsp. indica serovar 11:b:1,7"],["NCBITaxon%3A1307499","Salmonella enterica subsp. indica serovar 11:b:e,n,x"]]},{"id":"NCBITaxon:948","l":"Anaplasma phagocytophilum","na":1,"nb":23,"a":[["TED%3AAF-A0A181ZJH2-F1-model_v4_TED02","TED novel fold AF-A0A181ZJH2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A948","Anaplasma phagocytophilum"],["NCBITaxon%3A1359151","Anaplasma phagocytophilum str. Annie"],["NCBITaxon%3A1359152","Anaplasma phagocytophilum str. ApMUC09"],["NCBITaxon%3A1359153","Anaplasma phagocytophilum str. ApNP"],["NCBITaxon%3A1359154","Anaplasma phagocytophilum str. ApNYW"],["NCBITaxon%3A1359155","Anaplasma phagocytophilum str. ApWI1"]]},{"id":"NCBITaxon:119857","l":"Francisella tularensis subsp. holarctica","na":1,"nb":22,"a":[["TED%3AAF-A0A0B3VVZ9-F1-model_v4_TED01","TED novel fold AF-A0A0B3VVZ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A263","Francisella tularensis"],["NCBITaxon%3A119857","Francisella tularensis subsp. holarctica"],["NCBITaxon%3A412422","Francisella tularensis subsp. holarctica 257"],["NCBITaxon%3A1244086","Francisella tularensis subsp. holarctica BD11-00177"],["NCBITaxon%3A1232394","Francisella tularensis subsp. holarctica F92"],["NCBITaxon%3A1088870","Francisella tularensis subsp. holarctica FSC021"]]},{"id":"NCBITaxon:1869212","l":"Chitinophagaceae bacterium","na":22,"nb":1,"a":[["TED%3AAF-A0A357ZBL9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A357ZBL9-F1-model_v4_TED01"],["TED%3AAF-A0A3C1LFZ1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C1LFZ1-F1-model_v4_TED01"],["TED%3AAF-A0A3D2XD43-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D2XD43-F1-model_v4_TED02"],["TED%3AAF-A0A4Q3VIN8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q3VIN8-F1-model_v4_TED01"],["TED%3AAF-A0A4Q5SZ31-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q5SZ31-F1-model_v4_TED01"],["TED%3AAF-A0A4Q5TQZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q5TQZ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1869212","Chitinophagaceae bacterium"]]},{"id":"NCBITaxon:2026803","l":"Candidatus Woesearchaeota archaeon","na":22,"nb":1,"a":[["TED%3AAF-A0A2D6KW09-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D6KW09-F1-model_v4_TED01"],["TED%3AAF-A0A2D6P7P8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D6P7P8-F1-model_v4_TED01"],["TED%3AAF-A0A3M1JJU7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M1JJU7-F1-model_v4_TED01"],["TED%3AAF-A0A662EYR7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A662EYR7-F1-model_v4_TED01"],["TED%3AAF-A0A662F004-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A662F004-F1-model_v4_TED02"],["TED%3AAF-A0A662F4Y7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A662F4Y7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026803","Candidatus Woesearchaeota archaeon"]]},{"id":"NCBITaxon:2250277","l":"Thermoprotei archaeon","na":22,"nb":1,"a":[["TED%3AAF-A0A497FVH5-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A497FVH5-F1-model_v4_TED04"],["TED%3AAF-A0A497FWJ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A497FWJ0-F1-model_v4_TED01"],["TED%3AAF-A0A662GB86-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A662GB86-F1-model_v4_TED01"],["TED%3AAF-A0A662GMH9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A662GMH9-F1-model_v4_TED03"],["TED%3AAF-A0A662HGF0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A662HGF0-F1-model_v4_TED02"],["TED%3AAF-A0A662HZW1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A662HZW1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2250277","Thermoprotei archaeon"]]},{"id":"NCBITaxon:2952","l":"Symbiodinium pilosum","na":22,"nb":1,"a":[["TED%3AAF-A0A812IPQ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812IPQ7-F1-model_v4_TED01"],["TED%3AAF-A0A812IT96-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A812IT96-F1-model_v4_TED02"],["TED%3AAF-A0A812SR62-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812SR62-F1-model_v4_TED01"],["TED%3AAF-A0A812VKC8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812VKC8-F1-model_v4_TED01"],["TED%3AAF-A0A812XN12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812XN12-F1-model_v4_TED01"],["TED%3AAF-A0A812Y1P6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812Y1P6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2952","Symbiodinium pilosum"]]},{"id":"NCBITaxon:394","l":"Sinorhizobium fredii (strain NBRC 101917 / NGR234)","na":22,"nb":1,"a":[["Pfam%3APF17841","BID domain of Bartonella effector protein (Bep)"],["Pfam%3APF04255","Protein of unknown function (DUF433)"],["Pfam%3APF18480","Domain of unknown function (DUF5615)"],["Pfam%3APF20008","Domain of unknown function (DUF6429)"],["Pfam%3APF24134","Domain of unknown function (DUF7401)"],["Pfam%3APF18728","AbiV"]],"b":[["NCBITaxon%3A394","Sinorhizobium fredii NGR234"]]},{"id":"NCBITaxon:77133","l":"uncultured bacterium","na":22,"nb":1,"a":[["TED%3AAF-A0A059X489-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A059X489-F1-model_v4_TED02"],["TED%3AAF-A0A059X769-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A059X769-F1-model_v4_TED01"],["TED%3AAF-K1YCK5-F1-model_v4_TED02","TED highly-symmetric fold AF-K1YCK5-F1-model_v4_TED02"],["TED%3AAF-K1Z363-F1-model_v4_TED05","TED highly-symmetric fold AF-K1Z363-F1-model_v4_TED05"],["TED%3AAF-K1ZVQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-K1ZVQ3-F1-model_v4_TED01"],["TED%3AAF-K2AKZ9-F1-model_v4_TED01","TED highly-symmetric fold AF-K2AKZ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A77133","uncultured bacterium"]]},{"id":"NCBITaxon:784","l":"Orientia tsutsugamushi","na":1,"nb":22,"a":[["TED%3AAF-A0A2U3QXG5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U3QXG5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A784","Orientia tsutsugamushi"],["NCBITaxon%3A1359169","Orientia tsutsugamushi str. AFSC7"],["NCBITaxon%3A357244","Orientia tsutsugamushi str. Boryong"],["NCBITaxon%3A1359170","Orientia tsutsugamushi str. Darnley"],["NCBITaxon%3A1359184","Orientia tsutsugamushi str. Gilliam"],["NCBITaxon%3A334380","Orientia tsutsugamushi str. Ikeda"]]},{"id":"NCBITaxon:2053491","l":"Thorarchaeota archaeon (strain OWC)","na":21,"nb":1,"a":[["TED%3AAF-A0A3L6JIS9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3L6JIS9-F1-model_v4_TED02"],["TED%3AAF-A0A497PT19-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A497PT19-F1-model_v4_TED01"],["TED%3AAF-A0A497Q075-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A497Q075-F1-model_v4_TED01"],["TED%3AAF-A0A497QEX2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A497QEX2-F1-model_v4_TED02"],["TED%3AAF-A0A523S0A4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A523S0A4-F1-model_v4_TED02"],["TED%3AAF-A0A524DRR9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A524DRR9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2053491","Candidatus Thorarchaeota archaeon"]]},{"id":"NCBITaxon:49249","l":"Ditylum brightwellii","na":21,"nb":1,"a":[["TED%3AAF-A0A7S1ZRE5-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7S1ZRE5-F1-model_v4_TED04"],["TED%3AAF-A0A7S4QX91-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S4QX91-F1-model_v4_TED02"],["TED%3AAF-A0A7S4RZD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4RZD6-F1-model_v4_TED01"],["TED%3AAF-A0A6U3S3W6-F1-model_v4_TED02","TED novel fold AF-A0A6U3S3W6-F1-model_v4_TED02"],["TED%3AAF-A0A6U3SMK8-F1-model_v4_TED01","TED novel fold AF-A0A6U3SMK8-F1-model_v4_TED01"],["TED%3AAF-A0A6V2HP17-F1-model_v4_TED02","TED novel fold AF-A0A6V2HP17-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A49249","Ditylum brightwellii"]]},{"id":"NCBITaxon:1333877","l":"Zooxanthella nutricula","na":20,"nb":1,"a":[["TED%3AAF-A0A7S2I7M8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2I7M8-F1-model_v4_TED01"],["TED%3AAF-A0A7S2KGI9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2KGI9-F1-model_v4_TED01"],["TED%3AAF-A0A7S2QN22-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2QN22-F1-model_v4_TED01"],["TED%3AAF-A0A6U6QYV6-F1-model_v4_TED02","TED novel fold AF-A0A6U6QYV6-F1-model_v4_TED02"],["TED%3AAF-A0A6U8X411-F1-model_v4_TED02","TED novel fold AF-A0A6U8X411-F1-model_v4_TED02"],["TED%3AAF-A0A7S2J1W7-F1-model_v4_TED01","TED novel fold AF-A0A7S2J1W7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1333877","Zooxanthella nutricula"]]},{"id":"NCBITaxon:2026773","l":"Candidatus Pacearchaeota archaeon","na":20,"nb":1,"a":[["TED%3AAF-A0A2D6L4C8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D6L4C8-F1-model_v4_TED01"],["TED%3AAF-A0A2D6MBC0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D6MBC0-F1-model_v4_TED01"],["TED%3AAF-A0A2D6NGF5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D6NGF5-F1-model_v4_TED01"],["TED%3AAF-A0A2D6X056-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D6X056-F1-model_v4_TED01"],["TED%3AAF-A0A2D6X943-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D6X943-F1-model_v4_TED01"],["TED%3AAF-A0A7J2RVY7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7J2RVY7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026773","Candidatus Pacearchaeota archaeon"]]},{"id":"NCBITaxon:2202144","l":"Spirochaetota bacterium","na":20,"nb":1,"a":[["TED%3AAF-A0A496RBW7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A496RBW7-F1-model_v4_TED01"],["TED%3AAF-A0A5C7LFX3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7LFX3-F1-model_v4_TED01"],["TED%3AAF-A0A660U2K3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A660U2K3-F1-model_v4_TED01"],["TED%3AAF-A0A7C2KGS7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C2KGS7-F1-model_v4_TED01"],["TED%3AAF-A0A496REE7-F1-model_v4_TED03","TED novel fold AF-A0A496REE7-F1-model_v4_TED03"],["TED%3AAF-A0A5C7JKW4-F1-model_v4_TED01","TED novel fold AF-A0A5C7JKW4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2202144","Spirochaetota bacterium"]]},{"id":"NCBITaxon:158","l":"Treponema denticola","na":1,"nb":19,"a":[["TED%3AAF-A0A125RME2-F1-model_v4_TED02","TED novel fold AF-A0A125RME2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A158","Treponema denticola"],["NCBITaxon%3A999426","Treponema denticola AL-2"],["NCBITaxon%3A999427","Treponema denticola ASLM"],["NCBITaxon%3A999428","Treponema denticola ATCC 33520"],["NCBITaxon%3A999429","Treponema denticola ATCC 33521"],["NCBITaxon%3A999430","Treponema denticola ATCC 35404"]]},{"id":"NCBITaxon:40041","l":"Streptococcus equi subsp. zooepidemicus","na":1,"nb":19,"a":[["Pfam%3APF02388","FemAB family"]],"b":[["NCBITaxon%3A1336","Streptococcus equi"],["NCBITaxon%3A40041","Streptococcus equi subsp. zooepidemicus"],["NCBITaxon%3A1051072","Streptococcus equi subsp. zooepidemicus ATCC 35246"],["NCBITaxon%3A681573","Streptococcus equi subsp. zooepidemicus BHS5"],["NCBITaxon%3A1403449","Streptococcus equi subsp. zooepidemicus CY"],["NCBITaxon%3A553483","Streptococcus equi subsp. zooepidemicus H70"]]},{"id":"NCBITaxon:122586","l":"Neisseria meningitidis serogroup B (strain ATCC BAA-335 / MC58)","na":18,"nb":1,"a":[["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000057","self-regulatory activity"],["Pfam%3APF03797","Autotransporter beta-domain"],["Pfam%3APF16779","DNA-mimic protein"],["Pfam%3APF14300","DMP19-like protein"],["Pfam%3APF17845","FbpC C-terminal regulatory nucleotide binding domain"]],"b":[["NCBITaxon%3A122586","Neisseria meningitidis MC58"]]},{"id":"NCBITaxon:169963","l":"Listeria monocytogenes serovar 1/2a (strain ATCC BAA-679 / EGD-e)","na":18,"nb":1,"a":[["Pfam%3APF17936","Bacterial Ig domain"],["Pfam%3APF06778","Chlorite dismutase"],["Pfam%3APF05737","Collagen binding domain"],["Pfam%3APF09479","Listeria-Bacteroides repeat domain (List_Bact_rpt)"],["Pfam%3APF13457","GW (Gly-Tryp) dipeptide domain"],["Pfam%3APF08858","IDEAL domain"]],"b":[["NCBITaxon%3A169963","Listeria monocytogenes EGD-e"]]},{"id":"NCBITaxon:1871066","l":"Mesorhizobium sp.","na":18,"nb":1,"a":[["TED%3AAF-A0A3S3GQ11-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S3GQ11-F1-model_v4_TED01"],["TED%3AAF-A0A439J515-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A439J515-F1-model_v4_TED03"],["TED%3AAF-A0A439JC49-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A439JC49-F1-model_v4_TED01"],["TED%3AAF-A0A439N076-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A439N076-F1-model_v4_TED01"],["TED%3AAF-A0A442WFH9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A442WFH9-F1-model_v4_TED03"],["TED%3AAF-A0A529PFR3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A529PFR3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1871066","Mesorhizobium sp."]]},{"id":"NCBITaxon:2026728","l":"Crocinitomicaceae bacterium","na":18,"nb":1,"a":[["TED%3AAF-A0A2D7DFU8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D7DFU8-F1-model_v4_TED02"],["TED%3AAF-A0A2D7KAN1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D7KAN1-F1-model_v4_TED01"],["TED%3AAF-A0A2E3XYM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E3XYM3-F1-model_v4_TED01"],["TED%3AAF-A0A2E4EBK4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4EBK4-F1-model_v4_TED01"],["TED%3AAF-A0A2E4EDE8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4EDE8-F1-model_v4_TED01"],["TED%3AAF-A0A2E4EDG6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4EDG6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026728","Crocinitomicaceae bacterium"]]},{"id":"NCBITaxon:2052186","l":"Limisphaerales bacterium","na":18,"nb":1,"a":[["TED%3AAF-A0A520QMV5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A520QMV5-F1-model_v4_TED01"],["TED%3AAF-A0A6I1K0E9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I1K0E9-F1-model_v4_TED01"],["TED%3AAF-A0A6I1KAG9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I1KAG9-F1-model_v4_TED01"],["TED%3AAF-A0A7C3MCF9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C3MCF9-F1-model_v4_TED02"],["TED%3AAF-A0A7C4QME7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C4QME7-F1-model_v4_TED01"],["TED%3AAF-A0A7V3QEN6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7V3QEN6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2052186","Limisphaerales bacterium"]]},{"id":"NCBITaxon:272843","l":"Pasteurella multocida (strain Pm70)","na":18,"nb":1,"a":[["Pfam%3APF18419","ATP-grasp-like domain"],["Pfam%3APF11974","Bacterial alpha-2-macroglobulin MG3 domain"],["Pfam%3APF17972","Bacterial Alpha-2-macroglobulin MG5 domain"],["Pfam%3APF17962","Bacterial macroglobulin domain 6"],["Pfam%3APF18470","Cas9 alpha-helical lobe domain"],["Pfam%3APF12441","CopG antitoxin of type II toxin-antitoxin system"]],"b":[["NCBITaxon%3A272843","Pasteurella multocida subsp. multocida str. Pm70"]]},{"id":"NCBITaxon:492670","l":"Bacillus velezensis","na":1,"nb":18,"a":[["TED%3AAF-A0A7S9EWF1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S9EWF1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A492670","Bacillus velezensis"],["NCBITaxon%3A2517241","Bacillus velezensis A3"],["NCBITaxon%3A1225788","Bacillus velezensis AS43.3"],["NCBITaxon%3A1239834","Bacillus velezensis At1"],["NCBITaxon%3A1114958","Bacillus velezensis CAU B946"],["NCBITaxon%3A2853458","Bacillus velezensis EYE_388"]]},{"id":"NCBITaxon:759272","l":"Thermochaetoides thermophila (strain DSM 1495 / CBS 144.50 / DAOM 24625 / IMI 039719)","na":18,"nb":1,"a":[["Pfam%3APF21509","Fungal polycomb repressive complex 2, Ezh2-like, preSET CXC domain"],["Pfam%3APF18600","Fungal MCSS domain"],["Pfam%3APF18601","EZH2 N-terminal domain"],["Pfam%3APF24519","Nucleoporin pom152-like, first immunoglobulin-like domain"],["Pfam%3APF24527","Nucleoporin pom152-like, ninth immunoglobulin-like domain"],["Pfam%3APF24312","Nucleoporin POM152, Ig-like domain"]],"b":[["NCBITaxon%3A759272","Thermochaetoides thermophila DSM 1495"]]},{"id":"NCBITaxon:1767","l":"Mycobacterium intracellulare","na":1,"nb":17,"a":[["Pfam%3APF18914","Domain of unknown function (DUF5666)"]],"b":[["NCBITaxon%3A1764","Mycobacterium avium"],["NCBITaxon%3A1767","Mycobacterium intracellulare"],["NCBITaxon%3A1299331","Mycobacterium intracellulare 1956"],["NCBITaxon%3A1160713","Mycobacterium intracellulare 3387"],["NCBITaxon%3A487521","Mycobacterium intracellulare ATCC 13950"],["NCBITaxon%3A1134473","Mycobacterium intracellulare H2"]]},{"id":"NCBITaxon:1829","l":"Rhodococcus rhodochrous","na":1,"nb":17,"a":[["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"]],"b":[["NCBITaxon%3A1872672","Azotobacter sp."],["NCBITaxon%3A36822","Gordonia rubripertincta"],["NCBITaxon%3A1824","Nocardia asteroides"],["NCBITaxon%3A37329","Nocardia farcinica"],["NCBITaxon%3A1833","Rhodococcus erythropolis"],["NCBITaxon%3A33008","Rhodococcus globerulus"]]},{"id":"NCBITaxon:2052166","l":"Candidatus Melainabacteria bacterium","na":17,"nb":1,"a":[["TED%3AAF-A0A2W4I3U7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W4I3U7-F1-model_v4_TED01"],["TED%3AAF-A0A2W4IPF7-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2W4IPF7-F1-model_v4_TED04"],["TED%3AAF-A0A2W4KA26-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W4KA26-F1-model_v4_TED01"],["TED%3AAF-A0A317ILL7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A317ILL7-F1-model_v4_TED01"],["TED%3AAF-A0A431KZA4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A431KZA4-F1-model_v4_TED01"],["TED%3AAF-A0A7T9H5Y2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T9H5Y2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052166","Candidatus Melainabacteria bacterium"]]},{"id":"NCBITaxon:208963","l":"Pseudomonas aeruginosa (strain UCBPP-PA14)","na":17,"nb":1,"a":[["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF21384","CRISPR-associated nuclease/helicase Cas3, I-F/YPEST, Cas2 domain"],["Pfam%3APF21802","CRISPR-associated Cas3 subtype I-F/YPEST-like, C-terminal domain"],["Pfam%3APF20975","DGC-associated coil"],["Pfam%3APF19502","Nucleotidyltransferase of unknown function (DUF6036)"]],"b":[["NCBITaxon%3A208963","Pseudomonas aeruginosa UCBPP-PA14"]]},{"id":"NCBITaxon:210007","l":"Streptococcus mutans serotype c (strain ATCC 700610 / UA159)","na":17,"nb":1,"a":[["Pfam%3APF18652","Adhesin P1 N-terminal domain"],["Pfam%3APF17998","Cell surface antigen I/II C2 terminal domain"],["Pfam%3APF16364","Cell surface antigen C-terminus"],["Pfam%3APF12733","Cadherin-like beta sandwich domain"],["Pfam%3APF05737","Collagen binding domain"],["Pfam%3APF21537","DUF1980 C-terminal domain"]],"b":[["NCBITaxon%3A210007","Streptococcus mutans UA159"]]},{"id":"NCBITaxon:2268199","l":"Polyangiaceae bacterium","na":17,"nb":1,"a":[["TED%3AAF-A0A7C5J3Y7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C5J3Y7-F1-model_v4_TED01"],["TED%3AAF-A0A7Y5E0R3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y5E0R3-F1-model_v4_TED01"],["TED%3AAF-A0A7Y5L0J9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y5L0J9-F1-model_v4_TED01"],["TED%3AAF-A0A7Y5NNJ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y5NNJ7-F1-model_v4_TED01"],["TED%3AAF-A0A849Z2I2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A849Z2I2-F1-model_v4_TED01"],["TED%3AAF-A0A849ZAK7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A849ZAK7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2268199","Polyangiaceae bacterium"]]},{"id":"NCBITaxon:311494","l":"Alexandrium monilatum","na":17,"nb":1,"a":[["TED%3AAF-A0A7S4Q8A6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4Q8A6-F1-model_v4_TED01"],["TED%3AAF-A0A7S4QTT6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S4QTT6-F1-model_v4_TED02"],["TED%3AAF-A0A7S4QWV2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4QWV2-F1-model_v4_TED01"],["TED%3AAF-A0A7S4RKI0-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A7S4RKI0-F1-model_v4_TED05"],["TED%3AAF-A0A7S4SUG3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S4SUG3-F1-model_v4_TED02"],["TED%3AAF-A0A7S4VCD8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S4VCD8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A311494","Alexandrium monilatum"]]},{"id":"NCBITaxon:1363","l":"Lactococcus garvieae","na":1,"nb":16,"a":[["TED%3AAF-A0A6L2ZWS4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L2ZWS4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1363","Lactococcus garvieae"],["NCBITaxon%3A998087","Lactococcus garvieae 21881"],["NCBITaxon%3A913847","Lactococcus garvieae 8831"],["NCBITaxon%3A420889","Lactococcus garvieae ATCC 49156"],["NCBITaxon%3A1231377","Lactococcus garvieae DCC43"],["NCBITaxon%3A1229517","Lactococcus garvieae I113"]]},{"id":"NCBITaxon:2026734","l":"Dehalococcoidia bacterium","na":16,"nb":1,"a":[["TED%3AAF-A0A521XC61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521XC61-F1-model_v4_TED01"],["TED%3AAF-A0A523UGM8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A523UGM8-F1-model_v4_TED01"],["TED%3AAF-A0A7C5HK83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C5HK83-F1-model_v4_TED01"],["TED%3AAF-A0A7C7CQR7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C7CQR7-F1-model_v4_TED01"],["TED%3AAF-A0A7C7TSB3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C7TSB3-F1-model_v4_TED01"],["TED%3AAF-A0A7V1QTX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V1QTX7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026734","Dehalococcoidia bacterium"]]},{"id":"NCBITaxon:2026745","l":"Halobacteriovoraceae bacterium","na":16,"nb":1,"a":[["TED%3AAF-A0A2E1RGY7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E1RGY7-F1-model_v4_TED01"],["TED%3AAF-A0A2E3XRC3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E3XRC3-F1-model_v4_TED01"],["TED%3AAF-A0A2E4D7J8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E4D7J8-F1-model_v4_TED02"],["TED%3AAF-A0A2E4DD71-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4DD71-F1-model_v4_TED01"],["TED%3AAF-A0A2E1REY1-F1-model_v4_TED01","TED novel fold AF-A0A2E1REY1-F1-model_v4_TED01"],["TED%3AAF-A0A2E2EEJ1-F1-model_v4_TED04","TED novel fold AF-A0A2E2EEJ1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2026745","Halobacteriovoraceae bacterium"]]},{"id":"NCBITaxon:244366","l":"Klebsiella variicola","na":1,"nb":16,"a":[["TED%3AAF-A0A2N4Z4E2-F1-model_v4_TED01","TED novel fold AF-A0A2N4Z4E2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A576","Klebsiella sp."],["NCBITaxon%3A244366","Klebsiella variicola"],["NCBITaxon%3A507522","Klebsiella variicola 342"],["NCBITaxon%3A640131","Klebsiella variicola At-22"],["NCBITaxon%3A1438700","Klebsiella variicola BIDMC 61"]]},{"id":"NCBITaxon:272631","l":"Mycobacterium leprae (strain TN)","na":16,"nb":1,"a":[["Pfam%3APF26519","Biotin synthase auxiliary protein family"],["Pfam%3APF24481","CT398-like coiled coil hairpin domain"],["Pfam%3APF09438","Domain of unknown function (DUF2017)"],["Pfam%3APF12089","Transmembrane domain of unknown function (DUF3566)"],["Pfam%3APF12823","Domain of unknown function (DUF3817)"],["Pfam%3APF19187","PafC helix-turn-helix domain"]],"b":[["NCBITaxon%3A272631","Mycobacterium leprae TN"]]},{"id":"NCBITaxon:380","l":"Sinorhizobium fredii","na":1,"nb":16,"a":[["TED%3AAF-A0A2A6LXQ6-F1-model_v4_TED04","TED novel fold AF-A0A2A6LXQ6-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A380","Sinorhizobium fredii"],["NCBITaxon%3A418669","Sinorhizobium fredii bv. mediterranense"],["NCBITaxon%3A1128329","Sinorhizobium fredii CCBAU 05557"],["NCBITaxon%3A1128330","Sinorhizobium fredii CCBAU 25509"],["NCBITaxon%3A1128331","Sinorhizobium fredii CCBAU 45436"],["NCBITaxon%3A1128332","Sinorhizobium fredii CCBAU 83622"]]},{"id":"NCBITaxon:636","l":"Edwardsiella tarda","na":1,"nb":16,"a":[["Pfam%3APF05791","Bacillus haemolytic enterotoxin (HBL)"]],"b":[["NCBITaxon%3A1896336","Citrobacter sp."],["NCBITaxon%3A636","Edwardsiella tarda"],["NCBITaxon%3A1418112","Edwardsiella tarda 3-novo"],["NCBITaxon%3A1418111","Edwardsiella tarda 3P"],["NCBITaxon%3A667121","Edwardsiella tarda ATCC 15947 = NBRC 105688"],["NCBITaxon%3A500638","Edwardsiella tarda ATCC 23685"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":1,"nb":15,"a":[["PROSITE%3APS01043","Transposases, IS30 family, signature"]],"b":[["NCBITaxon%3A1304","Streptococcus salivarius"],["NCBITaxon%3A1046629","Streptococcus salivarius 57.I"],["NCBITaxon%3A1420586","Streptococcus salivarius ATCC 25975"],["NCBITaxon%3A1263109","Streptococcus salivarius CAG:79"],["NCBITaxon%3A1048332","Streptococcus salivarius CCHSS3"],["NCBITaxon%3A1255635","Streptococcus salivarius CJ181"]]},{"id":"NCBITaxon:1585","l":"Lactobacillus delbrueckii subsp. bulgaricus","na":1,"nb":15,"a":[["TED%3AAF-A0A809EIY6-F1-model_v4_TED02","TED novel fold AF-A0A809EIY6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2775876","Lacticaseibacillus sp."],["NCBITaxon%3A1584","Lactobacillus delbrueckii"],["NCBITaxon%3A1585","Lactobacillus delbrueckii subsp. bulgaricus"],["NCBITaxon%3A353496","Lactobacillus delbrueckii subsp. bulgaricus 2038"],["NCBITaxon%3A390333","Lactobacillus delbrueckii subsp. bulgaricus ATCC 11842 = JCM 1002"],["NCBITaxon%3A321956","Lactobacillus delbrueckii subsp. bulgaricus ATCC BAA-365"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":1,"nb":15,"a":[["TED%3AAF-A0A415C3I8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A415C3I8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1681","Bifidobacterium bifidum"],["NCBITaxon%3A500634","Bifidobacterium bifidum ATCC 29521 = JCM 1255 = DSM 20456"],["NCBITaxon%3A484020","Bifidobacterium bifidum BGN4"],["NCBITaxon%3A1263058","Bifidobacterium bifidum CAG:234"],["NCBITaxon%3A1173065","Bifidobacterium bifidum CECT 7366"],["NCBITaxon%3A398515","Bifidobacterium bifidum DSM 20215"]]},{"id":"NCBITaxon:2052146","l":"Blastocatellia bacterium","na":15,"nb":1,"a":[["TED%3AAF-A0A352EXE7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A352EXE7-F1-model_v4_TED01"],["TED%3AAF-A0A357F5W7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A357F5W7-F1-model_v4_TED01"],["TED%3AAF-A0A3B9MP35-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B9MP35-F1-model_v4_TED01"],["TED%3AAF-A0A3D0P0V8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3D0P0V8-F1-model_v4_TED03"],["TED%3AAF-A0A7C5ZUX8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C5ZUX8-F1-model_v4_TED01"],["TED%3AAF-A0A7V9ZCI5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V9ZCI5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052146","Blastocatellia bacterium"]]},{"id":"NCBITaxon:2096","l":"Mycoplasmoides gallisepticum","na":1,"nb":15,"a":[["TED%3AAF-A0A5P3I5B9-F1-model_v4_TED02","TED novel fold AF-A0A5P3I5B9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2096","Mycoplasmoides gallisepticum"],["NCBITaxon%3A1267002","Mycoplasmoides gallisepticum ATCC 19610"],["NCBITaxon%3A1159203","Mycoplasmoides gallisepticum CA06_2006.052-5-2P"],["NCBITaxon%3A1159202","Mycoplasmoides gallisepticum NC06_2006.080-5-2P"],["NCBITaxon%3A1159204","Mycoplasmoides gallisepticum NC08_2008.031-4-3P"],["NCBITaxon%3A1159198","Mycoplasmoides gallisepticum NC95_13295-2-2P"]]},{"id":"NCBITaxon:2507553","l":"Aphanocapsa feldmannii 277cV","na":1,"nb":15,"a":[["TED%3AAF-A0A524RKM2-F1-model_v4_TED01","TED novel fold AF-A0A524RKM2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2507553","Aphanocapsa feldmannii 277cV"],["NCBITaxon%3A2569818","Aphanocapsa feldmannii 277cV_00123"],["NCBITaxon%3A2569819","Aphanocapsa feldmannii 277cV_00124"],["NCBITaxon%3A2569824","Aphanocapsa feldmannii 277cV_00125"],["NCBITaxon%3A2569820","Aphanocapsa feldmannii 277cV_00126"],["NCBITaxon%3A2569825","Aphanocapsa feldmannii 277cV_00403"]]},{"id":"NCBITaxon:312017","l":"Tetrahymena thermophila (strain SB210)","na":15,"nb":1,"a":[["Pfam%3APF23448","CFAP184 CAP-like domain"],["Pfam%3APF23449","CFAP184 CBM-like domain"],["Pfam%3APF13870","CCDC113/CCDC96, coiled-coil"],["Pfam%3APF23150","CFAP61 dimerisation domain"],["Pfam%3APF16092","Cilia- and flagella-associated protein 61, N-terminal domain"],["Pfam%3APF23119","Telomerase reverse transcriptase, CTE domain"]],"b":[["NCBITaxon%3A312017","Tetrahymena thermophila SB210"]]},{"id":"NCBITaxon:347","l":"Xanthomonas oryzae","na":1,"nb":15,"a":[["TED%3AAF-A0A856CQL9-F1-model_v4_TED01","TED novel fold AF-A0A856CQL9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A134375","Achromobacter sp."],["NCBITaxon%3A347","Xanthomonas oryzae"],["NCBITaxon%3A1313303","Xanthomonas oryzae ATCC 35933"],["NCBITaxon%3A3112258","Xanthomonas oryzae pv. leersiae"],["NCBITaxon%3A64187","Xanthomonas oryzae pv. oryzae"],["NCBITaxon%3A291331","Xanthomonas oryzae pv. oryzae KACC 10331"]]},{"id":"NCBITaxon:425011","l":"Aspergillus niger (strain ATCC MYA-4892 / CBS 513.88 / FGSC A1513)","na":15,"nb":1,"a":[["Pfam%3APF09260","Alpha-amylase, domain C"],["Pfam%3APF13364","Beta-galactosidase second all-beta domain"],["Pfam%3APF10435","Beta-galactosidase, domain 2"],["Pfam%3APF13363","Beta-galactosidase, domain 3"],["Pfam%3APF28386","BfoA family C-terminal domain"],["Pfam%3APF28387","BfoA N-terminal domain"]],"b":[["NCBITaxon%3A425011","Aspergillus niger CBS 513.88"]]},{"id":"NCBITaxon:43657","l":"Pseudoalteromonas luteoviolacea","na":1,"nb":15,"a":[["TED%3AAF-A0A1C0TIS0-F1-model_v4_TED02","TED novel fold AF-A0A1C0TIS0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A43657","Pseudoalteromonas luteoviolacea"],["NCBITaxon%3A1353533","Pseudoalteromonas luteoviolacea 2ta16"],["NCBITaxon%3A1268239","Pseudoalteromonas luteoviolacea B = ATCC 29581"],["NCBITaxon%3A1365248","Pseudoalteromonas luteoviolacea CPMOR-1"],["NCBITaxon%3A1365249","Pseudoalteromonas luteoviolacea CPMOR-2"],["NCBITaxon%3A1365250","Pseudoalteromonas luteoviolacea DSM 6061"]]},{"id":"NCBITaxon:61435","l":"Dehalococcoides mccartyi","na":1,"nb":15,"a":[["TED%3AAF-A0A2J1E0L6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J1E0L6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A61435","Dehalococcoides mccartyi"],["NCBITaxon%3A243164","Dehalococcoides mccartyi 195"],["NCBITaxon%3A216389","Dehalococcoides mccartyi BAV1"],["NCBITaxon%3A1193806","Dehalococcoides mccartyi BTF08"],["NCBITaxon%3A255470","Dehalococcoides mccartyi CBDB1"],["NCBITaxon%3A1432059","Dehalococcoides mccartyi CG1"]]},{"id":"NCBITaxon:878477","l":"Symbiodinium natans","na":15,"nb":1,"a":[["TED%3AAF-A0A812I205-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812I205-F1-model_v4_TED01"],["TED%3AAF-A0A812J3S0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A812J3S0-F1-model_v4_TED02"],["TED%3AAF-A0A812JCI6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A812JCI6-F1-model_v4_TED02"],["TED%3AAF-A0A812LE22-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812LE22-F1-model_v4_TED01"],["TED%3AAF-A0A812MQ26-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812MQ26-F1-model_v4_TED01"],["TED%3AAF-A0A812QZV2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812QZV2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A878477","Symbiodinium natans"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":14,"nb":1,"a":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF02224","Cytidylate kinase"],["Pfam%3APF03319","Ethanolamine utilisation protein EutN/carboxysome"],["Pfam%3APF22019","alpha-1,4-glucan branching enzyme GlgB, N-terminal domain"],["Pfam%3APF21714","Circadian clock protein KaiA, N-terminal domain"],["Pfam%3APF07688","KaiA C-terminal domain"]],"b":[["NCBITaxon%3A1140","Synechococcus elongatus PCC 7942 = FACHB-805"]]},{"id":"NCBITaxon:138074","l":"Serratia symbiotica","na":1,"nb":14,"a":[["TED%3AAF-A0A068YYP3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A068YYP3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A655401","Serratia symbiont of Stomaphis sp."],["NCBITaxon%3A138074","Serratia symbiotica"],["NCBITaxon%3A1592400","Serratia symbiotica AfA2.1"],["NCBITaxon%3A1592401","Serratia symbiotica AfA3.1"],["NCBITaxon%3A2856988","Serratia symbiotica (Cacopsylla coccinea)"],["NCBITaxon%3A1339251","Serratia symbiotica CWBI2.3"]]},{"id":"NCBITaxon:2049433","l":"Desulfobacteraceae bacterium","na":14,"nb":1,"a":[["TED%3AAF-A0A2N6CCF5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N6CCF5-F1-model_v4_TED01"],["TED%3AAF-A0A355W8I2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A355W8I2-F1-model_v4_TED02"],["TED%3AAF-A0A3A4S7V6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A4S7V6-F1-model_v4_TED01"],["TED%3AAF-A0A3D6C2L3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D6C2L3-F1-model_v4_TED01"],["TED%3AAF-A0A3N5ZFV9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N5ZFV9-F1-model_v4_TED01"],["TED%3AAF-A0A3N6A7C3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3N6A7C3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2049433","Desulfobacteraceae bacterium"]]},{"id":"NCBITaxon:2163009","l":"Candidatus Poseidoniales archaeon","na":14,"nb":1,"a":[["TED%3AAF-A0A3A5VXE3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A5VXE3-F1-model_v4_TED01"],["TED%3AAF-A0A6V8CWM4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6V8CWM4-F1-model_v4_TED02"],["TED%3AAF-A0A6V8DK59-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6V8DK59-F1-model_v4_TED02"],["TED%3AAF-A0A7J4DCA9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7J4DCA9-F1-model_v4_TED02"],["TED%3AAF-A0A7M3SGG1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7M3SGG1-F1-model_v4_TED01"],["TED%3AAF-A0A7M3ZNW9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7M3ZNW9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2163009","Candidatus Poseidoniales archaeon"]]},{"id":"NCBITaxon:223283","l":"Pseudomonas syringae pv. tomato (strain ATCC BAA-871 / DC3000)","na":14,"nb":1,"a":[["IDPO%3A0000030","entropic chain"],["IDPO%3A0000037","molecular recognition display site"],["Pfam%3APF16847","Avirulence AvrPtoB, BAK1-binding domain"],["Pfam%3APF09046","AvrPtoB E3 ubiquitin ligase"],["Pfam%3APF25965","ALG44 beta-barrel domain"],["Pfam%3APF25964","ALG44, barrel-sandwich hybrid domain"]],"b":[["NCBITaxon%3A223283","Pseudomonas syringae pv. tomato str. DC3000"]]},{"id":"NCBITaxon:2242","l":"Halobacterium salinarum","na":1,"nb":14,"a":[["Pfam%3APF07232","Putative rep protein (DUF1424)"]],"b":[["NCBITaxon%3A2242","Halobacterium salinarum"],["NCBITaxon%3A2597657","Halobacterium salinarum DSM 3754"],["NCBITaxon%3A64091","Halobacterium salinarum NRC-1"],["NCBITaxon%3A2886895","Halobacterium salinarum NRC-34001"],["NCBITaxon%3A478009","Halobacterium salinarum R1"],["NCBITaxon%3A2109941","Halobacterium salinarum str. WSR1 (ex H. Halobium)"]]},{"id":"NCBITaxon:29466","l":"Veillonella parvula","na":1,"nb":14,"a":[["TED%3AAF-A0A134BYG5-F1-model_v4_TED01","TED novel fold AF-A0A134BYG5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39777","Veillonella atypica"],["NCBITaxon%3A29466","Veillonella parvula"],["NCBITaxon%3A1357417","Veillonella parvula AC2_8_11_AN_NA_2"],["NCBITaxon%3A768727","Veillonella parvula ACS-068-V-Sch12"],["NCBITaxon%3A686660","Veillonella parvula ATCC 17745"],["NCBITaxon%3A479436","Veillonella parvula DSM 2008"]]},{"id":"NCBITaxon:329","l":"Ralstonia pickettii","na":1,"nb":14,"a":[["Pfam%3APF10605","3HB-oligomer hydrolase (3HBOH)"]],"b":[["NCBITaxon%3A80878","Acidovorax temperans"],["NCBITaxon%3A3058600","Ralstonia condita"],["NCBITaxon%3A3058599","Ralstonia edaphi"],["NCBITaxon%3A190721","Ralstonia insidiosa"],["NCBITaxon%3A105219","Ralstonia mannitolilytica"],["NCBITaxon%3A329","Ralstonia pickettii"]]},{"id":"NCBITaxon:42445","l":"Sinorhizobium sp","na":14,"nb":1,"a":[["Pfam%3APF01656","CobQ/CobB/MinD/ParA nucleotide binding domain"],["Pfam%3APF02572","ATP:corrinoid adenosyltransferase BtuR/CobO/CobP"],["Pfam%3APF02654","Cobalamin-5-phosphate synthase"],["Pfam%3APF11775","Cobalamin biosynthesis protein CobT VWA domain"],["Pfam%3APF02283","Cobinamide kinase / cobinamide phosphate guanyltransferase"],["Pfam%3APF02277","Phosphoribosyltransferase"]],"b":[["NCBITaxon%3A42445","Sinorhizobium sp."]]},{"id":"NCBITaxon:426430","l":"Staphylococcus aureus (strain Newman)","na":14,"nb":1,"a":[["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF18938","Atypical Rib domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF17961","Bacterial Ig domain"],["Pfam%3APF06778","Chlorite dismutase"],["Pfam%3APF12199","Extracellular fibrinogen binding protein C terminal"]],"b":[["NCBITaxon%3A426430","Staphylococcus aureus subsp. aureus str. Newman"]]},{"id":"NCBITaxon:93062","l":"Staphylococcus aureus (strain COL)","na":14,"nb":1,"a":[["Pfam%3APF18927","Glycosyl-4,4'-diaponeurosporenoate acyltransferase"],["Pfam%3APF13684","Fatty acid kinase subunit A-like, C-terminal"],["Pfam%3APF21645","Fatty acid kinase subunit A-like, middle domain"],["Pfam%3APF07685","CobB/CobQ-like glutamine amidotransferase domain"],["Pfam%3APF28494","Glycyl-tRNA synthetase insertion domain 1"],["Pfam%3APF18698","Histidine kinase sensor domain"]],"b":[["NCBITaxon%3A93062","Staphylococcus aureus subsp. aureus COL"]]},{"id":"NCBITaxon:1144522","l":"Tritrichomonas foetus","na":13,"nb":1,"a":[["TED%3AAF-A0A1J4JPA9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1J4JPA9-F1-model_v4_TED02"],["TED%3AAF-A0A1J4K6U7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1J4K6U7-F1-model_v4_TED02"],["TED%3AAF-A0A1J4KYY8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1J4KYY8-F1-model_v4_TED03"],["TED%3AAF-A0A1J4KZM1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1J4KZM1-F1-model_v4_TED02"],["TED%3AAF-A0A1J4KZM1-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1J4KZM1-F1-model_v4_TED04"],["TED%3AAF-A0A1J4L5V9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1J4L5V9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1144522","Tritrichomonas foetus"]]},{"id":"NCBITaxon:115547","l":"Uncultured archaeon","na":13,"nb":1,"a":[["Pfam%3APF07282","Cas12f1-like, TNB domain"],["Pfam%3APF28161","Fusexin 1"],["TED%3AAF-A0A5E4HKS5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5E4HKS5-F1-model_v4_TED01"],["TED%3AAF-A0A5E4HZH8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5E4HZH8-F1-model_v4_TED01"],["TED%3AAF-A0A5E4J2V3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5E4J2V3-F1-model_v4_TED01"],["TED%3AAF-A0A5E4JWA9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5E4JWA9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A115547","uncultured archaeon"]]},{"id":"NCBITaxon:150053","l":"Yersinia enterocolitica subsp. palearctica","na":1,"nb":13,"a":[["TED%3AAF-A0A6M1Q6Y0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6M1Q6Y0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A630","Yersinia enterocolitica"],["NCBITaxon%3A150052","Yersinia enterocolitica subsp. enterocolitica"],["NCBITaxon%3A150053","Yersinia enterocolitica subsp. palearctica"],["NCBITaxon%3A994476","Yersinia enterocolitica subsp. palearctica 105.5R(r)"],["NCBITaxon%3A940287","Yersinia enterocolitica subsp. palearctica 556/8265"],["NCBITaxon%3A940288","Yersinia enterocolitica subsp. palearctica 647/5307"]]},{"id":"NCBITaxon:1520","l":"Clostridium beijerinckii","na":1,"nb":13,"a":[["TED%3AAF-A0A0B5QQV4-F1-model_v4_TED02","TED novel fold AF-A0A0B5QQV4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1488","Clostridium acetobutylicum"],["NCBITaxon%3A272562","Clostridium acetobutylicum ATCC 824"],["NCBITaxon%3A1520","Clostridium beijerinckii"],["NCBITaxon%3A1202535","Clostridium beijerinckii AAU1"],["NCBITaxon%3A864803","Clostridium beijerinckii ATCC 35702"],["NCBITaxon%3A1200349","Clostridium beijerinckii G117"]]},{"id":"NCBITaxon:1542","l":"Clostridium novyi","na":1,"nb":13,"a":[["PROSITE%3APS00384","Prokaryotic zinc-dependent phospholipase C signature"]],"b":[["NCBITaxon%3A84025","Clostridium haemolyticum"],["NCBITaxon%3A1542","Clostridium novyi"],["NCBITaxon%3A1809276","Clostridium novyi A"],["NCBITaxon%3A1443121","Clostridium novyi A str. 4540"],["NCBITaxon%3A1444289","Clostridium novyi A str. 4552"],["NCBITaxon%3A1444290","Clostridium novyi A str. 4570"]]},{"id":"NCBITaxon:1754190","l":"Neocallimastix californiae","na":13,"nb":1,"a":[["TED%3AAF-A0A1Y1XC87-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y1XC87-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2ADM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y2ADM3-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2AH60-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y2AH60-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2BB05-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Y2BB05-F1-model_v4_TED02"],["TED%3AAF-A0A1Y2CV21-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1Y2CV21-F1-model_v4_TED04"],["TED%3AAF-A0A1Y2ECT1-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1Y2ECT1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1754190","Neocallimastix californiae"]]},{"id":"NCBITaxon:1906665","l":"archaeon","na":13,"nb":1,"a":[["TED%3AAF-A0A2D6R7R0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D6R7R0-F1-model_v4_TED02"],["TED%3AAF-A0A2D6RMA6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D6RMA6-F1-model_v4_TED02"],["TED%3AAF-A0A482UEK7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A482UEK7-F1-model_v4_TED01"],["TED%3AAF-A0A7T5UTQ0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7T5UTQ0-F1-model_v4_TED02"],["TED%3AAF-A0A482RZA5-F1-model_v4_TED01","TED novel fold AF-A0A482RZA5-F1-model_v4_TED01"],["TED%3AAF-A0A482SIC6-F1-model_v4_TED03","TED novel fold AF-A0A482SIC6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1906665","archaeon"]]},{"id":"NCBITaxon:2024894","l":"Acidimicrobiaceae bacterium","na":13,"nb":1,"a":[["TED%3AAF-A0A2D8LQD2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D8LQD2-F1-model_v4_TED01"],["TED%3AAF-A0A2E0RXG4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0RXG4-F1-model_v4_TED01"],["TED%3AAF-A0A2E4RLD1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4RLD1-F1-model_v4_TED01"],["TED%3AAF-A0A351EQ15-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A351EQ15-F1-model_v4_TED01"],["TED%3AAF-A0A3B8M7L9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B8M7L9-F1-model_v4_TED01"],["TED%3AAF-A0A3C2B035-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3C2B035-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2024894","Acidimicrobiaceae bacterium"]]},{"id":"NCBITaxon:2026781","l":"Poribacteria bacterium","na":13,"nb":1,"a":[["TED%3AAF-A0A2D5VJS7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D5VJS7-F1-model_v4_TED02"],["TED%3AAF-A0A2E4DW61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4DW61-F1-model_v4_TED01"],["TED%3AAF-A0A496B2L5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A496B2L5-F1-model_v4_TED02"],["TED%3AAF-A0A7V0YVG4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V0YVG4-F1-model_v4_TED01"],["TED%3AAF-A0A7X3T5F6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7X3T5F6-F1-model_v4_TED02"],["TED%3AAF-A0A800AEN1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A800AEN1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026781","Candidatus Poribacteria bacterium"]]},{"id":"NCBITaxon:239","l":"Flavobacterium sp.","na":13,"nb":1,"a":[["Pfam%3APF21331","Isoamylase, C-terminal"],["TED%3AAF-A0A2E4PC55-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E4PC55-F1-model_v4_TED02"],["TED%3AAF-A0A2E4PGC5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4PGC5-F1-model_v4_TED01"],["TED%3AAF-A0A2E4PMB7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E4PMB7-F1-model_v4_TED02"],["TED%3AAF-A0A355BEV2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A355BEV2-F1-model_v4_TED02"],["TED%3AAF-A0A519QLA6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A519QLA6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A239","Flavobacterium sp."]]},{"id":"NCBITaxon:2485925","l":"Oscillospiraceae bacterium","na":13,"nb":1,"a":[["TED%3AAF-A0A2V2FDS6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V2FDS6-F1-model_v4_TED01"],["TED%3AAF-A0A354HDZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A354HDZ1-F1-model_v4_TED02"],["TED%3AAF-A0A358X4Y1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A358X4Y1-F1-model_v4_TED03"],["TED%3AAF-A0A3D2AE20-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D2AE20-F1-model_v4_TED02"],["TED%3AAF-A0A3D4T7L7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D4T7L7-F1-model_v4_TED02"],["TED%3AAF-A0A847PNE5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A847PNE5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2485925","Oscillospiraceae bacterium"]]},{"id":"NCBITaxon:28090","l":"Acinetobacter lwoffii","na":1,"nb":13,"a":[["TED%3AAF-A0A7S9AAV2-F1-model_v4_TED01","TED novel fold AF-A0A7S9AAV2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1311822","Acinetobacter genomosp. 9 str. ATCC 17910"],["NCBITaxon%3A40215","Acinetobacter junii"],["NCBITaxon%3A28090","Acinetobacter lwoffii"],["NCBITaxon%3A1311804","Acinetobacter lwoffii ATCC 9957 = CIP 70.31"],["NCBITaxon%3A54394","Acinetobacter lwoffii K24"],["NCBITaxon%3A981327","Acinetobacter lwoffii NCTC 5866 = CIP 64.10 = NIPH 512"]]},{"id":"NCBITaxon:327968","l":"Alexandrium andersonii","na":13,"nb":1,"a":[["TED%3AAF-A0A7S2AKY4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2AKY4-F1-model_v4_TED01"],["TED%3AAF-A0A7S2AN30-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2AN30-F1-model_v4_TED01"],["TED%3AAF-A0A7S2DXA2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S2DXA2-F1-model_v4_TED03"],["TED%3AAF-A0A7S2FIF3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2FIF3-F1-model_v4_TED01"],["TED%3AAF-A0A7S2FTB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2FTB9-F1-model_v4_TED01"],["TED%3AAF-A0A7S2J1J3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2J1J3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A327968","Alexandrium andersonii"]]},{"id":"NCBITaxon:66852","l":"Methanobrevibacter sp.","na":13,"nb":1,"a":[["TED%3AAF-A0A843EVZ3-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A843EVZ3-F1-model_v4_TED04"],["TED%3AAF-A0A843FCF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843FCF4-F1-model_v4_TED01"],["TED%3AAF-A0A843FFG9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A843FFG9-F1-model_v4_TED03"],["TED%3AAF-A0A843G9S4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843G9S4-F1-model_v4_TED01"],["TED%3AAF-A0A843GSU1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843GSU1-F1-model_v4_TED01"],["TED%3AAF-A0A843HRZ5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A843HRZ5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A66852","Methanobrevibacter sp."]]},{"id":"NCBITaxon:750","l":"Gallibacterium anatis","na":1,"nb":13,"a":[["TED%3AAF-A0A0A2XNX9-F1-model_v4_TED01","TED novel fold AF-A0A0A2XNX9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A750","Gallibacterium anatis"],["NCBITaxon%3A1396515","Gallibacterium anatis 10672-6"],["NCBITaxon%3A1195244","Gallibacterium anatis 12656/12"],["NCBITaxon%3A1396510","Gallibacterium anatis 4895"],["NCBITaxon%3A1396511","Gallibacterium anatis 7990"],["NCBITaxon%3A1380411","Gallibacterium anatis biovar haemolytica"]]},{"id":"NCBITaxon:119602","l":"Streptococcus dysgalactiae subsp. equisimilis","na":1,"nb":12,"a":[["TED%3AAF-A0A5M4CWR2-F1-model_v4_TED02","TED novel fold AF-A0A5M4CWR2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1334","Streptococcus dysgalactiae"],["NCBITaxon%3A119602","Streptococcus dysgalactiae subsp. equisimilis"],["NCBITaxon%3A1247189","Streptococcus dysgalactiae subsp. equisimilis 167"],["NCBITaxon%3A759913","Streptococcus dysgalactiae subsp. equisimilis AC-2713"],["NCBITaxon%3A452436","Streptococcus dysgalactiae subsp. equisimilis AKSDE4288"],["NCBITaxon%3A663954","Streptococcus dysgalactiae subsp. equisimilis ATCC 12394"]]},{"id":"NCBITaxon:1897614","l":"Maribacter sp.","na":12,"nb":1,"a":[["TED%3AAF-A0A3C0GJN2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C0GJN2-F1-model_v4_TED01"],["TED%3AAF-A0A3B9R709-F1-model_v4_TED02","TED novel fold AF-A0A3B9R709-F1-model_v4_TED02"],["TED%3AAF-A0A3B9R7Z4-F1-model_v4_TED01","TED novel fold AF-A0A3B9R7Z4-F1-model_v4_TED01"],["TED%3AAF-A0A3B9RA49-F1-model_v4_TED02","TED novel fold AF-A0A3B9RA49-F1-model_v4_TED02"],["TED%3AAF-A0A3C0FZ60-F1-model_v4_TED02","TED novel fold AF-A0A3C0FZ60-F1-model_v4_TED02"],["TED%3AAF-A0A3C0G1Z3-F1-model_v4_TED03","TED novel fold AF-A0A3C0G1Z3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1897614","Maribacter sp."]]},{"id":"NCBITaxon:201","l":"Campylobacter lari","na":1,"nb":12,"a":[["TED%3AAF-A0A5M0YYW6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5M0YYW6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A198","Campylobacter hyointestinalis"],["NCBITaxon%3A201","Campylobacter lari"],["NCBITaxon%3A1388750","Campylobacter lari CCUG 22395"],["NCBITaxon%3A1388749","Campylobacter lari NCTC 11845"],["NCBITaxon%3A1453989","Campylobacter lari RM16701"],["NCBITaxon%3A1453988","Campylobacter lari RM16712"]]},{"id":"NCBITaxon:2024896","l":"Anaerolineaceae bacterium","na":12,"nb":1,"a":[["TED%3AAF-A0A2E0L407-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2E0L407-F1-model_v4_TED03"],["TED%3AAF-A0A2E0V255-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0V255-F1-model_v4_TED01"],["TED%3AAF-A0A2E1AAR7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E1AAR7-F1-model_v4_TED01"],["TED%3AAF-A0A3A4VPM9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3A4VPM9-F1-model_v4_TED02"],["TED%3AAF-A0A3B9A2N8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B9A2N8-F1-model_v4_TED01"],["TED%3AAF-A0A7X9PDU0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X9PDU0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024896","Anaerolineaceae bacterium"]]},{"id":"NCBITaxon:2049431","l":"Tissierellia bacterium","na":12,"nb":1,"a":[["TED%3AAF-A0A7C7AGH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C7AGH3-F1-model_v4_TED01"],["TED%3AAF-A0A7X8D040-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A7X8D040-F1-model_v4_TED05"],["TED%3AAF-A0A7X8FRG7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X8FRG7-F1-model_v4_TED01"],["TED%3AAF-A0A7X8G0K6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X8G0K6-F1-model_v4_TED01"],["TED%3AAF-A0A847AW67-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A847AW67-F1-model_v4_TED01"],["TED%3AAF-A0A847NG83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A847NG83-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2049431","Tissierellia bacterium"]]},{"id":"NCBITaxon:2052164","l":"Gemmataceae bacterium","na":12,"nb":1,"a":[["TED%3AAF-A0A4V0I0C1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4V0I0C1-F1-model_v4_TED02"],["TED%3AAF-A0A7C4UC94-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7C4UC94-F1-model_v4_TED03"],["TED%3AAF-A0A7C4UDY7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C4UDY7-F1-model_v4_TED01"],["TED%3AAF-A0A7V3VYA3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7V3VYA3-F1-model_v4_TED03"],["TED%3AAF-A0A4V0I7D3-F1-model_v4_TED01","TED novel fold AF-A0A4V0I7D3-F1-model_v4_TED01"],["TED%3AAF-A0A7C4UB88-F1-model_v4_TED04","TED novel fold AF-A0A7C4UB88-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2052164","Gemmataceae bacterium"]]},{"id":"NCBITaxon:2053306","l":"Ignavibacteria bacterium","na":12,"nb":1,"a":[["TED%3AAF-A0A533YHW3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A533YHW3-F1-model_v4_TED02"],["TED%3AAF-A0A7C2AFB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C2AFB4-F1-model_v4_TED01"],["TED%3AAF-A0A7S6MWR5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S6MWR5-F1-model_v4_TED01"],["TED%3AAF-A0A7V4LVX5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V4LVX5-F1-model_v4_TED01"],["TED%3AAF-A0A2N6A028-F1-model_v4_TED01","TED novel fold AF-A0A2N6A028-F1-model_v4_TED01"],["TED%3AAF-A0A7C3EXK1-F1-model_v4_TED03","TED novel fold AF-A0A7C3EXK1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2053306","Ignavibacteria bacterium"]]},{"id":"NCBITaxon:231916","l":"Gymnopilus dilepis","na":12,"nb":1,"a":[["TED%3AAF-A0A409W679-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A409W679-F1-model_v4_TED01"],["TED%3AAF-A0A409XZH6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A409XZH6-F1-model_v4_TED02"],["TED%3AAF-A0A409Y3U6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A409Y3U6-F1-model_v4_TED01"],["TED%3AAF-A0A409Y4E4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A409Y4E4-F1-model_v4_TED01"],["TED%3AAF-A0A409VY99-F1-model_v4_TED01","TED novel fold AF-A0A409VY99-F1-model_v4_TED01"],["TED%3AAF-A0A409W9H6-F1-model_v4_TED01","TED novel fold AF-A0A409W9H6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A231916","Gymnopilus dilepis"]]},{"id":"NCBITaxon:267567","l":"Skeletonema marinoi","na":12,"nb":1,"a":[["TED%3AAF-A0A7S2L0Q3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2L0Q3-F1-model_v4_TED01"],["TED%3AAF-A0A7S2L7Y0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2L7Y0-F1-model_v4_TED01"],["TED%3AAF-A0A7S2LFD5-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7S2LFD5-F1-model_v4_TED04"],["TED%3AAF-A0A7S2M7J6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2M7J6-F1-model_v4_TED01"],["TED%3AAF-A0A7S2PGZ4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S2PGZ4-F1-model_v4_TED02"],["TED%3AAF-A0A7S2Q0A5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2Q0A5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A267567","Skeletonema marinoi"]]},{"id":"NCBITaxon:272942","l":"Rhodobacter capsulatus (strain ATCC BAA-309 / NBRC 16581 / SB1003)","na":12,"nb":1,"a":[["Pfam%3APF02553","Cobalt transport protein component CbiN"],["Pfam%3APF03379","CcmB protein"],["Pfam%3APF27123","Carotenoid hydratase CrtC"],["Pfam%3APF14715","N-terminal domain of cytochrome oxidase-cbb3, FixP"],["Pfam%3APF07284","2-vinyl bacteriochlorophyllide hydratase (BCHF)"],["Pfam%3APF02571","Precorrin-6x reductase CbiJ/CobK"]],"b":[["NCBITaxon%3A272942","Rhodobacter capsulatus SB 1003"]]},{"id":"NCBITaxon:51453","l":"Trichoderma reesei","na":12,"nb":1,"a":[["Pfam%3APF28347","ACE1 small beta sheet domain"],["Pfam%3APF28329","Zinc finger transcription factor ace1 N-terminal domain"],["Pfam%3APF00150","Cellulase (glycosyl hydrolase family 5)"],["Pfam%3APF22514","EXPB1-like domain 1"],["Pfam%3APF01341","Glycosyl hydrolases family 6"],["Pfam%3APF00840","Glycosyl hydrolase family 7"]],"b":[["NCBITaxon%3A51453","Trichoderma reesei"]]},{"id":"NCBITaxon:544645","l":"Butyricimonas virosa","na":1,"nb":12,"a":[["TED%3AAF-A0A413ITS3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A413ITS3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A544645","Butyricimonas virosa"],["NCBITaxon%3A1121130","Butyricimonas virosa DSM 23226"],["NCBITaxon%3A1339048","Butyricimonas virosa TS7.1-1.1"],["NCBITaxon%3A1339049","Butyricimonas virosa TS7.1-1.2"],["NCBITaxon%3A1339050","Butyricimonas virosa TS7.1-2.1"],["NCBITaxon%3A1339051","Butyricimonas virosa TSDA1.2-1.1"]]},{"id":"NCBITaxon:61645","l":"Enterobacter asburiae","na":1,"nb":12,"a":[["TED%3AAF-A0A8B3U934-F1-model_v4_TED02","TED novel fold AF-A0A8B3U934-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A61645","Enterobacter asburiae"],["NCBITaxon%3A1330532","Enterobacter asburiae B1-3"],["NCBITaxon%3A1330533","Enterobacter asburiae B5-60"],["NCBITaxon%3A1442602","Enterobacter asburiae C1"],["NCBITaxon%3A1298604","Enterobacter asburiae JCM 6051"],["NCBITaxon%3A1421338","Enterobacter asburiae L1"]]},{"id":"NCBITaxon:945775","l":"Pseudanabaena frigida","na":1,"nb":12,"a":[["TED%3AAF-A0A2W4Y9W9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2W4Y9W9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A945776","Pseudanabaena cf. frigida LEGE 06144"],["NCBITaxon%3A945775","Pseudanabaena frigida"],["NCBITaxon%3A3711284","Pseudanabaena frigida D12_PA_1"],["NCBITaxon%3A2037890","Pseudanabaena frigida ISB82"],["NCBITaxon%3A1719111","Pseudanabaena frigida O-302"],["NCBITaxon%3A2739198","Pseudanabaena frigida PUPCCC 106.7/1"]]},{"id":"NCBITaxon:106654","l":"Acinetobacter nosocomialis","na":1,"nb":11,"a":[["TED%3AAF-A0A5Q0RRM8-F1-model_v4_TED01","TED novel fold AF-A0A5Q0RRM8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A981325","Acinetobacter genomosp. 13TU str. NCTC 8102"],["NCBITaxon%3A106654","Acinetobacter nosocomialis"],["NCBITaxon%3A1147131","Acinetobacter nosocomialis 28F"],["NCBITaxon%3A1183155","Acinetobacter nosocomialis Ab22222"],["NCBITaxon%3A1343071","Acinetobacter nosocomialis M2"],["NCBITaxon%3A1217670","Acinetobacter nosocomialis NIPH 2119"]]},{"id":"NCBITaxon:1214915","l":"Mycolicibacterium smegmatis (strain MKD8)","na":11,"nb":1,"a":[["Pfam%3APF18625","ESX-1 secreted protein B PE domain"],["Pfam%3APF21856","ESX-1 secretion-associated protein EspB, PPE domain"],["Pfam%3APF27215","EspK C-terminal domain"],["Pfam%3APF25832","Fibronectin type III domain SaeA second domain"],["Pfam%3APF25833","Fibronectin type III domain SaeA third domain"],["Pfam%3APF25834","Fibronectin type III domain SaeA fourth domain"]],"b":[["NCBITaxon%3A1214915","Mycolicibacterium smegmatis MKD8"]]},{"id":"NCBITaxon:1354","l":"Enterococcus hirae","na":1,"nb":11,"a":[["Pfam%3APF11983","Cell division protein FtsA, C-terminal"]],"b":[["NCBITaxon%3A1352","Enterococcus faecium"],["NCBITaxon%3A1354","Enterococcus hirae"],["NCBITaxon%3A1232728","Enterococcus hirae 57-03-H11"],["NCBITaxon%3A1232727","Enterococcus hirae 57-09-G6"],["NCBITaxon%3A1262665","Enterococcus hirae 67-03-C5"],["NCBITaxon%3A1262668","Enterococcus hirae 78-09-C1"]]},{"id":"NCBITaxon:1898209","l":"Acholeplasmataceae bacterium","na":11,"nb":1,"a":[["TED%3AAF-A0A353PIL2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A353PIL2-F1-model_v4_TED01"],["TED%3AAF-A0A7C6K3C3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C6K3C3-F1-model_v4_TED02"],["TED%3AAF-A0A7C6SBZ4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7C6SBZ4-F1-model_v4_TED03"],["TED%3AAF-A0A7V6IUB6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V6IUB6-F1-model_v4_TED01"],["TED%3AAF-A0A7X7C6M0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7X7C6M0-F1-model_v4_TED03"],["TED%3AAF-A0A7X7C6M0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7X7C6M0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1898209","Acholeplasmataceae bacterium"]]},{"id":"NCBITaxon:198628","l":"Dickeya dadantii (strain 3937)","na":11,"nb":1,"a":[["Pfam%3APF14600","Cellulose-binding domain"],["Pfam%3APF08946","Osmosensory transporter coiled coil"],["Pfam%3APF19929","Immunity protein CdiI"],["Pfam%3APF15655","NTF2 fold immunity protein"],["Pfam%3APF06178","Oligogalacturonate-specific porin protein (KdgM)"],["PROSITE%3APS00659","Glycosyl hydrolases family 5 signature"]],"b":[["NCBITaxon%3A198628","Dickeya dadantii 3937"]]},{"id":"NCBITaxon:2026741","l":"Gemmatimonadaceae bacterium","na":11,"nb":1,"a":[["TED%3AAF-A0A7W1C216-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7W1C216-F1-model_v4_TED03"],["TED%3AAF-A0A7W1E6J1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W1E6J1-F1-model_v4_TED02"],["TED%3AAF-A0A7W1E8S4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W1E8S4-F1-model_v4_TED01"],["TED%3AAF-A0A7W1EK17-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W1EK17-F1-model_v4_TED02"],["TED%3AAF-A0A2E8H9Y1-F1-model_v4_TED02","TED novel fold AF-A0A2E8H9Y1-F1-model_v4_TED02"],["TED%3AAF-A0A7V9QMW2-F1-model_v4_TED01","TED novel fold AF-A0A7V9QMW2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026741","Gemmatimonadaceae bacterium"]]},{"id":"NCBITaxon:2026887","l":"Nitrospirota bacterium","na":11,"nb":1,"a":[["TED%3AAF-A0A521SRV9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A521SRV9-F1-model_v4_TED02"],["TED%3AAF-A0A533XE66-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A533XE66-F1-model_v4_TED01"],["TED%3AAF-A0A6N7AVM2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N7AVM2-F1-model_v4_TED01"],["TED%3AAF-A0A7C0ZXT1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C0ZXT1-F1-model_v4_TED01"],["TED%3AAF-A0A7C1KT15-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C1KT15-F1-model_v4_TED02"],["TED%3AAF-A0A7C8EC21-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C8EC21-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026887","Nitrospirota bacterium"]]},{"id":"NCBITaxon:2030800","l":"Elusimicrobiota bacterium","na":11,"nb":1,"a":[["TED%3AAF-A0A3B9YFR8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B9YFR8-F1-model_v4_TED01"],["TED%3AAF-A0A3C1EKU1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C1EKU1-F1-model_v4_TED01"],["TED%3AAF-A0A3C1ENG3-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A3C1ENG3-F1-model_v4_TED04"],["TED%3AAF-A0A7C3VF23-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C3VF23-F1-model_v4_TED01"],["TED%3AAF-A0A7V3ERG8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7V3ERG8-F1-model_v4_TED02"],["TED%3AAF-A0A7X7TVI3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X7TVI3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2030800","Elusimicrobiota bacterium"]]},{"id":"NCBITaxon:2053607","l":"Candidatus Rokubacteria bacterium","na":11,"nb":1,"a":[["TED%3AAF-A0A2V2SFB4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2V2SFB4-F1-model_v4_TED03"],["TED%3AAF-A0A2V6PUY9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V6PUY9-F1-model_v4_TED01"],["TED%3AAF-A0A2V6PVL1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V6PVL1-F1-model_v4_TED01"],["TED%3AAF-A0A2V6QHW3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V6QHW3-F1-model_v4_TED01"],["TED%3AAF-A0A2V6QT53-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V6QT53-F1-model_v4_TED02"],["TED%3AAF-A0A2V6YUV3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V6YUV3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053607","Candidatus Rokuibacteriota bacterium"]]},{"id":"NCBITaxon:222440","l":"Streblomastix strix","na":11,"nb":1,"a":[["TED%3AAF-A0A5J4TUQ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5J4TUQ0-F1-model_v4_TED01"],["TED%3AAF-A0A5J4UW04-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A5J4UW04-F1-model_v4_TED04"],["TED%3AAF-A0A5J4V2A5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5J4V2A5-F1-model_v4_TED01"],["TED%3AAF-A0A5J4V9N0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A5J4V9N0-F1-model_v4_TED04"],["TED%3AAF-A0A5J4VP50-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5J4VP50-F1-model_v4_TED01"],["TED%3AAF-A0A5J4VPU9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5J4VPU9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A222440","Streblomastix strix"]]},{"id":"NCBITaxon:2250274","l":"Micrarchaeota archaeon","na":11,"nb":1,"a":[["TED%3AAF-A0A7J2Z0S6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J2Z0S6-F1-model_v4_TED01"],["TED%3AAF-A0A7J3CTW2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7J3CTW2-F1-model_v4_TED02"],["TED%3AAF-A0A7J3DKL9-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A7J3DKL9-F1-model_v4_TED05"],["TED%3AAF-A0A7L4RA83-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7L4RA83-F1-model_v4_TED03"],["TED%3AAF-A0A7L4RFJ7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7L4RFJ7-F1-model_v4_TED02"],["TED%3AAF-A0A497IDY3-F1-model_v4_TED01","TED novel fold AF-A0A497IDY3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2250274","Microcaldota archaeon"]]},{"id":"NCBITaxon:2448054","l":"Gemmatimonadales bacterium","na":11,"nb":1,"a":[["TED%3AAF-A0A524KSK4-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A524KSK4-F1-model_v4_TED04"],["TED%3AAF-A0A6L7ULV7-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A6L7ULV7-F1-model_v4_TED05"],["TED%3AAF-A0A7V8X8E7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V8X8E7-F1-model_v4_TED01"],["TED%3AAF-A0A7W1BDN8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W1BDN8-F1-model_v4_TED01"],["TED%3AAF-A0A7W1KM63-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W1KM63-F1-model_v4_TED01"],["TED%3AAF-A0A7Y2NWI3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y2NWI3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2448054","Gemmatimonadales bacterium"]]},{"id":"NCBITaxon:272626","l":"Listeria innocua serovar 6a (strain ATCC BAA-680 / CLIP 11262)","na":11,"nb":1,"a":[["Pfam%3APF16595","PAM-interacting domain of CRISPR-associated endonuclease Cas9"],["Pfam%3APF21846","Domain of unknown function (DUF6905)"],["Pfam%3APF27405","Lin0124 C-terminal coiled-coil domain"],["Pfam%3APF14297","Lin1244/Lin1753-like, N-terminal"],["Pfam%3APF16593","Bridge helix of CRISPR-associated endonuclease Cas9"],["Pfam%3APF16592","REC lobe of CRISPR-associated endonuclease Cas9"]],"b":[["NCBITaxon%3A272626","Listeria innocua Clip11262"]]},{"id":"NCBITaxon:2762014","l":"Candidatus Parcubacteria bacterium","na":11,"nb":1,"a":[["TED%3AAF-A0A2N6A8U3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N6A8U3-F1-model_v4_TED01"],["TED%3AAF-A0A3A4VEN4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A4VEN4-F1-model_v4_TED01"],["TED%3AAF-A0A3A4ZRB7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A4ZRB7-F1-model_v4_TED01"],["TED%3AAF-A0A3M1FNI3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M1FNI3-F1-model_v4_TED01"],["TED%3AAF-A0A7C5A8P4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C5A8P4-F1-model_v4_TED01"],["TED%3AAF-A0A7V3PB42-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V3PB42-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2762014","Candidatus Parcubacteria bacterium"]]},{"id":"NCBITaxon:331112","l":"Escherichia coli O9:H4 (strain HS)","na":11,"nb":1,"a":[["Pfam%3APF25796","BREX ATP-binding protein BrxC 4th domain with six-stranded beta sheet"],["Pfam%3APF25792","BREX ATP-binding protein BrxC alpha helical domain"],["Pfam%3APF08747","BREX protein BrxB"],["Pfam%3APF19557","BrxC/PglY, N-terminal domain"],["Pfam%3APF13337","Lon-like protease BrxL-like, ATPase domain"],["Pfam%3APF20442","BREX system Lon protease-like protein BrxL N-terminal"]],"b":[["NCBITaxon%3A331112","Escherichia coli HS"]]},{"id":"NCBITaxon:451804","l":"Aspergillus fumigatus (strain CBS 144.89 / FGSC A1163 / CEA10)","na":11,"nb":1,"a":[["Pfam%3APF28347","ACE1 small beta sheet domain"],["Pfam%3APF28329","Zinc finger transcription factor ace1 N-terminal domain"],["Pfam%3APF11001","YDR124W-like, helical bundle domain"],["Pfam%3APF28457","Probable beta-glucosidase btgE N-terminal domain"],["Pfam%3APF13373","DSC E3 ubiquitin ligase complex subunit 3, C-terminal domain"],["Pfam%3APF10302","DSC E3 ubiquitin ligase complex subunit 3, ubiquitin-like domain"]],"b":[["NCBITaxon%3A451804","Aspergillus fumigatus A1163"]]},{"id":"NCBITaxon:53446","l":"Streptomyces cinnamoneus","na":1,"nb":11,"a":[["TED%3AAF-A0A2S6XSK0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S6XSK0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A53446","Streptomyces cinnamoneus"],["NCBITaxon%3A173776","Streptomyces cinnamoneus subsp. albosporus"],["NCBITaxon%3A173777","Streptomyces cinnamoneus subsp. azacoluta"],["NCBITaxon%3A173778","Streptomyces cinnamoneus subsp. lanosus"],["NCBITaxon%3A1521191","Streptomyces cinnamoneus subsp. monicae"],["NCBITaxon%3A173779","Streptomyces cinnamoneus subsp. sparsus"]]},{"id":"NCBITaxon:574560","l":"Photorhabdus temperata","na":1,"nb":11,"a":[["TED%3AAF-A0A4R7P891-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R7P891-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A471575","Photorhabdus cinerea"],["NCBITaxon%3A1004150","Photorhabdus khanii"],["NCBITaxon%3A2675885","Photorhabdus khanii subsp. khanii"],["NCBITaxon%3A1004159","Photorhabdus tasmaniensis"],["NCBITaxon%3A574560","Photorhabdus temperata"],["NCBITaxon%3A1389415","Photorhabdus temperata J3"]]},{"id":"NCBITaxon:59620","l":"uncultured Clostridium sp.","na":11,"nb":1,"a":[["TED%3AAF-A0A1C5QU37-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C5QU37-F1-model_v4_TED01"],["TED%3AAF-A0A1C5UPV7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1C5UPV7-F1-model_v4_TED02"],["TED%3AAF-A0A1C5W2V9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1C5W2V9-F1-model_v4_TED02"],["TED%3AAF-A0A1C5XLL0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C5XLL0-F1-model_v4_TED01"],["TED%3AAF-A0A1C5Z394-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C5Z394-F1-model_v4_TED01"],["TED%3AAF-A0A1C5ZSK7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1C5ZSK7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A59620","uncultured Clostridium sp."]]},{"id":"NCBITaxon:76860","l":"Streptococcus constellatus","na":1,"nb":11,"a":[["TED%3AAF-A0A380JGS6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A380JGS6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1328","Streptococcus anginosus"],["NCBITaxon%3A76860","Streptococcus constellatus"],["NCBITaxon%3A184246","Streptococcus constellatus subsp. constellatus"],["NCBITaxon%3A1095730","Streptococcus constellatus subsp. constellatus SK53"],["NCBITaxon%3A184250","Streptococcus constellatus subsp. pharyngis"],["NCBITaxon%3A862969","Streptococcus constellatus subsp. pharyngis C1050"]]},{"id":"NCBITaxon:889272","l":"Polyangium fumosum","na":11,"nb":1,"a":[["TED%3AAF-A0A4U1IM92-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4U1IM92-F1-model_v4_TED02"],["TED%3AAF-A0A4U1IPC0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A4U1IPC0-F1-model_v4_TED03"],["TED%3AAF-A0A4U1IXQ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U1IXQ7-F1-model_v4_TED01"],["TED%3AAF-A0A4U1J2I8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U1J2I8-F1-model_v4_TED01"],["TED%3AAF-A0A4U1J3Y1-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A4U1J3Y1-F1-model_v4_TED04"],["TED%3AAF-A0A4U1JFX6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4U1JFX6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A889272","Polyangium fumosum"]]},{"id":"NCBITaxon:1581","l":"Lentilactobacillus buchneri","na":1,"nb":10,"a":[["Pfam%3APF02329","Histidine carboxylase PI chain"]],"b":[["NCBITaxon%3A1581","Lentilactobacillus buchneri"],["NCBITaxon%3A525318","Lentilactobacillus buchneri ATCC 11577"],["NCBITaxon%3A1423728","Lentilactobacillus buchneri DSM 20057"],["NCBITaxon%3A511437","Lentilactobacillus buchneri NRRL B-30929"],["NCBITaxon%3A2737513","Lentilactobacillus buchneri subsp. buchneri"],["NCBITaxon%3A2737512","Lentilactobacillus buchneri subsp. silagei"]]},{"id":"NCBITaxon:158879","l":"Staphylococcus aureus (strain N315)","na":10,"nb":1,"a":[["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"],["Pfam%3APF03780","Asp23 family, cell envelope-related function"],["Pfam%3APF12199","Extracellular fibrinogen binding protein C terminal"],["Pfam%3APF07685","CobB/CobQ-like glutamine amidotransferase domain"],["Pfam%3APF20861","Iron-regulated surface determinant protein H/B, linker domain"],["Pfam%3APF10804","Protein of unknown function (DUF2538)"]],"b":[["NCBITaxon%3A158879","Staphylococcus aureus subsp. aureus N315"]]},{"id":"NCBITaxon:1628268","l":"Symbiodinium necroappetens","na":10,"nb":1,"a":[["TED%3AAF-A0A812MKM8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812MKM8-F1-model_v4_TED01"],["TED%3AAF-A0A812Y428-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812Y428-F1-model_v4_TED01"],["TED%3AAF-A0A812YG85-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A812YG85-F1-model_v4_TED02"],["TED%3AAF-A0A813A6P0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A813A6P0-F1-model_v4_TED02"],["TED%3AAF-A0A813BN35-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A813BN35-F1-model_v4_TED03"],["TED%3AAF-A0A812LYB9-F1-model_v4_TED01","TED novel fold AF-A0A812LYB9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1628268","Symbiodinium necroappetens"]]},{"id":"NCBITaxon:1781","l":"Mycobacterium marinum","na":1,"nb":10,"a":[["TED%3AAF-A0A2Z5YKC9-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2Z5YKC9-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1781","Mycobacterium marinum"],["NCBITaxon%3A1348799","Mycobacterium marinum ATCC BAA-535"],["NCBITaxon%3A459420","Mycobacterium marinum DL240490"],["NCBITaxon%3A1131442","Mycobacterium marinum E11"],["NCBITaxon%3A216594","Mycobacterium marinum M"],["NCBITaxon%3A1288036","Mycobacterium marinum MB2"]]},{"id":"NCBITaxon:185431","l":"Trypanosoma brucei brucei (strain 927/4 GUTat10.1)","na":10,"nb":1,"a":[["Pfam%3APF25828","Cfap43 coiled coil"],["Pfam%3APF18526","Thymine dioxygenase JBP1 DNA-binding domain"],["Pfam%3APF01916","Deoxyhypusine synthase"],["Pfam%3APF26536","REH2 DRSM domain"],["Pfam%3APF23398","FAZ1, conserved domain"],["Pfam%3APF02689","Helicase"]],"b":[["NCBITaxon%3A185431","Trypanosoma brucei brucei TREU927"]]},{"id":"NCBITaxon:196620","l":"Staphylococcus aureus (strain MW2)","na":10,"nb":1,"a":[["Pfam%3APF03780","Asp23 family, cell envelope-related function"],["Pfam%3APF13610","DDE domain"],["Pfam%3APF21650","DNA primase DnaG, catalytic core, helical bundle"],["Pfam%3APF18698","Histidine kinase sensor domain"],["Pfam%3APF18483","Legume lectin beta-barrel domain"],["Pfam%3APF11546","Staphylococcal complement inhibitor SCIN"]],"b":[["NCBITaxon%3A196620","Staphylococcus aureus subsp. aureus MW2"]]},{"id":"NCBITaxon:197221","l":"Thermosynechococcus vestitus (strain NIES-2133 / IAM M-273 / BP-1)","na":10,"nb":1,"a":[["Pfam%3APF00430","ATP synthase B/B' CF(0)"],["Pfam%3APF14495","Cytochrome c-550 domain"],["Pfam%3APF21714","Circadian clock protein KaiA, N-terminal domain"],["Pfam%3APF07688","KaiA C-terminal domain"],["Pfam%3APF07689","KaiB domain"],["Pfam%3APF00283","Cytochrome b559, alpha (gene psbE) and beta (gene psbF)subunits"]],"b":[["NCBITaxon%3A197221","Thermosynechococcus vestitus BP-1"]]},{"id":"NCBITaxon:2026720","l":"Candidatus Saccharibacteria bacterium","na":10,"nb":1,"a":[["TED%3AAF-A0A521GQH8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521GQH8-F1-model_v4_TED01"],["TED%3AAF-A0A7T9BG81-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7T9BG81-F1-model_v4_TED04"],["TED%3AAF-A0A2G6C427-F1-model_v4_TED01","TED novel fold AF-A0A2G6C427-F1-model_v4_TED01"],["TED%3AAF-A0A3B8XDR1-F1-model_v4_TED01","TED novel fold AF-A0A3B8XDR1-F1-model_v4_TED01"],["TED%3AAF-A0A7T9EYG0-F1-model_v4_TED02","TED novel fold AF-A0A7T9EYG0-F1-model_v4_TED02"],["TED%3AAF-A0A7T9QFY5-F1-model_v4_TED01","TED novel fold AF-A0A7T9QFY5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026720","Candidatus Saccharimonadota bacterium"]]},{"id":"NCBITaxon:2026795","l":"Nitrososphaerota archaeon","na":10,"nb":1,"a":[["TED%3AAF-A0A2E0QIG3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E0QIG3-F1-model_v4_TED02"],["TED%3AAF-A0A519CY76-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A519CY76-F1-model_v4_TED02"],["TED%3AAF-A0A533VPG5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A533VPG5-F1-model_v4_TED01"],["TED%3AAF-A0A533VS28-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A533VS28-F1-model_v4_TED01"],["TED%3AAF-A0A538P7I2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A538P7I2-F1-model_v4_TED02"],["TED%3AAF-A0A662PPJ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A662PPJ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026795","Nitrososphaerota archaeon"]]},{"id":"NCBITaxon:2030809","l":"Hydrogenedentes bacterium","na":10,"nb":1,"a":[["TED%3AAF-A0A3M1IHM8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M1IHM8-F1-model_v4_TED01"],["TED%3AAF-A0A7C3ASP1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C3ASP1-F1-model_v4_TED01"],["TED%3AAF-A0A7C3SSL5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C3SSL5-F1-model_v4_TED01"],["TED%3AAF-A0A7Y5CAQ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y5CAQ0-F1-model_v4_TED01"],["TED%3AAF-A0A831UKD5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A831UKD5-F1-model_v4_TED02"],["TED%3AAF-A0A831XK46-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A831XK46-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2030809","Candidatus Hydrogenedentota bacterium"]]},{"id":"NCBITaxon:2049046","l":"Porphyromonadaceae bacterium","na":10,"nb":1,"a":[["TED%3AAF-A0A352HPZ5-F1-model_v4_TED02","TED novel fold AF-A0A352HPZ5-F1-model_v4_TED02"],["TED%3AAF-A0A352HSX3-F1-model_v4_TED01","TED novel fold AF-A0A352HSX3-F1-model_v4_TED01"],["TED%3AAF-A0A353Q9U7-F1-model_v4_TED05","TED novel fold AF-A0A353Q9U7-F1-model_v4_TED05"],["TED%3AAF-A0A353RIS8-F1-model_v4_TED01","TED novel fold AF-A0A353RIS8-F1-model_v4_TED01"],["TED%3AAF-A0A355FFT1-F1-model_v4_TED02","TED novel fold AF-A0A355FFT1-F1-model_v4_TED02"],["TED%3AAF-A0A355ZAD8-F1-model_v4_TED03","TED novel fold AF-A0A355ZAD8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2049046","Porphyromonadaceae bacterium"]]},{"id":"NCBITaxon:2080302","l":"Acidimicrobiia bacterium","na":10,"nb":1,"a":[["TED%3AAF-A0A7K2CSN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K2CSN7-F1-model_v4_TED01"],["TED%3AAF-A0A7K2EB93-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K2EB93-F1-model_v4_TED01"],["TED%3AAF-A0A7V8Z207-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7V8Z207-F1-model_v4_TED02"],["TED%3AAF-A0A7V9IJW2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V9IJW2-F1-model_v4_TED01"],["TED%3AAF-A0A7W0HBJ6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W0HBJ6-F1-model_v4_TED02"],["TED%3AAF-A0A7Y1XA56-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y1XA56-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2080302","Acidimicrobiia bacterium"]]},{"id":"NCBITaxon:215803","l":"Enhygromyxa salina","na":10,"nb":1,"a":[["TED%3AAF-A0A0C1ZPD8-F1-model_v4_TED02","TED novel fold AF-A0A0C1ZPD8-F1-model_v4_TED02"],["TED%3AAF-A0A0C2CKS6-F1-model_v4_TED03","TED novel fold AF-A0A0C2CKS6-F1-model_v4_TED03"],["TED%3AAF-A0A0C2D012-F1-model_v4_TED02","TED novel fold AF-A0A0C2D012-F1-model_v4_TED02"],["TED%3AAF-A0A2S9XAM6-F1-model_v4_TED01","TED novel fold AF-A0A2S9XAM6-F1-model_v4_TED01"],["TED%3AAF-A0A2S9XEU4-F1-model_v4_TED01","TED novel fold AF-A0A2S9XEU4-F1-model_v4_TED01"],["TED%3AAF-A0A2S9XNB5-F1-model_v4_TED01","TED novel fold AF-A0A2S9XNB5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A215803","Enhygromyxa salina"]]},{"id":"NCBITaxon:2202734","l":"Saprospiraceae bacterium","na":10,"nb":1,"a":[["TED%3AAF-A0A521UI51-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A521UI51-F1-model_v4_TED06"],["TED%3AAF-A0A7Y2BYI8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y2BYI8-F1-model_v4_TED01"],["TED%3AAF-A0A7Y3A5A8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7Y3A5A8-F1-model_v4_TED03"],["TED%3AAF-A0A7Y4T0B6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y4T0B6-F1-model_v4_TED02"],["TED%3AAF-A0A7Y5MTU2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y5MTU2-F1-model_v4_TED01"],["TED%3AAF-A0A7D5MI03-F1-model_v4_TED01","TED novel fold AF-A0A7D5MI03-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2202734","Saprospiraceae bacterium"]]},{"id":"NCBITaxon:2209","l":"Methanosarcina mazei","na":1,"nb":10,"a":[["TED%3AAF-A0A0F8CQX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F8CQX7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2209","Methanosarcina mazei"],["NCBITaxon%3A1434113","Methanosarcina mazei C16"],["NCBITaxon%3A192952","Methanosarcina mazei Go1"],["NCBITaxon%3A1293038","Methanosarcina mazei JCM 9314"],["NCBITaxon%3A1434114","Methanosarcina mazei LYC"],["NCBITaxon%3A213585","Methanosarcina mazei S-6"]]},{"id":"NCBITaxon:228","l":"Pseudoalteromonas haloplanktis","na":1,"nb":10,"a":[["Pfam%3APF07023","Protein of unknown function (DUF1315)"]],"b":[["NCBITaxon%3A228","Pseudoalteromonas haloplanktis"],["NCBITaxon%3A722419","Pseudoalteromonas haloplanktis ANT/505"],["NCBITaxon%3A1117315","Pseudoalteromonas haloplanktis ATCC 14393"],["NCBITaxon%3A540541","Pseudoalteromonas haloplanktis subsp. haloplanktis"],["NCBITaxon%3A1333511","Pseudoalteromonas haloplanktis TAB23"],["NCBITaxon%3A1333513","Pseudoalteromonas haloplanktis TAE56"]]},{"id":"NCBITaxon:257313","l":"Bordetella pertussis (strain Tohama I / ATCC BAA-589 / NCTC 13251)","na":10,"nb":1,"a":[["Pfam%3APF03440","Aerolysin/Pertussis toxin (APT) domain"],["Pfam%3APF07411","Domain of unknown function (DUF1508)"],["Pfam%3APF25988","CyaD, alpha-helical hairpin domain"],["Pfam%3APF03497","Anthrax toxin LF subunit"],["Pfam%3APF02537","CrcB-like protein, Camphor Resistance (CrcB)"],["Pfam%3APF16970","Type-1 fimbrial protein, A"]],"b":[["NCBITaxon%3A257313","Bordetella pertussis Tohama I"]]},{"id":"NCBITaxon:33959","l":"Lactobacillus johnsonii","na":1,"nb":10,"a":[["Pfam%3APF13518","Helix-turn-helix domain"]],"b":[["NCBITaxon%3A1596","Lactobacillus gasseri"],["NCBITaxon%3A33959","Lactobacillus johnsonii"],["NCBITaxon%3A572503","Lactobacillus johnsonii 135-1-CHN"],["NCBITaxon%3A1033983","Lactobacillus johnsonii 16"],["NCBITaxon%3A525330","Lactobacillus johnsonii ATCC 33200"],["NCBITaxon%3A909954","Lactobacillus johnsonii DPC 6026"]]},{"id":"NCBITaxon:345073","l":"Vibrio cholerae serotype O1 (strain ATCC 39541 / Classical Ogawa 395 / O395)","na":10,"nb":1,"a":[["IDPO%3A0000048","limited proteolysis display site"],["Pfam%3APF16671","Actin cross-linking domain"],["Pfam%3APF26759","AcfD helical domain"],["Pfam%3APF00165","Bacterial regulatory helix-turn-helix proteins, AraC family"],["Pfam%3APF08328","Adenylosuccinate lyase C-terminal"],["Pfam%3APF07208","Protein of unknown function (DUF1414)"]],"b":[["NCBITaxon%3A345073","Vibrio cholerae O395"]]},{"id":"NCBITaxon:38304","l":"Corynebacterium tuberculostearicum","na":1,"nb":10,"a":[["TED%3AAF-A0A7U0H937-F1-model_v4_TED01","TED novel fold AF-A0A7U0H937-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A38284","Corynebacterium accolens"],["NCBITaxon%3A1736004","Corynebacterium cf. tuberculostearicum 1237_CAUR"],["NCBITaxon%3A1736005","Corynebacterium cf. tuberculostearicum 620_CAUR"],["NCBITaxon%3A1736006","Corynebacterium cf. tuberculostearicum 911_CAUR"],["NCBITaxon%3A38287","Corynebacterium fastidiosum"],["NCBITaxon%3A1720","Corynebacterium sp."]]},{"id":"NCBITaxon:393305","l":"Yersinia enterocolitica serotype O:8 / biotype 1B (strain NCTC 13174 / 8081)","na":10,"nb":1,"a":[["Pfam%3APF22200","ExsA N-terminal regulatory domain"],["Pfam%3APF06826","Predicted Permease Membrane Region"],["Pfam%3APF03186","CobD/Cbib protein"],["Pfam%3APF11944","Protein of unknown function (DUF3461)"],["Pfam%3APF04363","Protein of unknown function (DUF496)"],["Pfam%3APF17551","Family of unknown function (DUF5463)"]],"b":[["NCBITaxon%3A393305","Yersinia enterocolitica subsp. enterocolitica 8081"]]},{"id":"NCBITaxon:955","l":"Wolbachia pipientis","na":1,"nb":10,"a":[["TED%3AAF-A0A6I5SYC0-F1-model_v4_TED01","TED novel fold AF-A0A6I5SYC0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A955","Wolbachia pipientis"],["NCBITaxon%3A1116230","Wolbachia pipientis wAlbB"],["NCBITaxon%3A2049495","Wolbachia pipientis wAus"],["NCBITaxon%3A1238452","Wolbachia pipientis wBol1-b"],["NCBITaxon%3A1379791","Wolbachia pipientis wMelCS"],["NCBITaxon%3A1317678","Wolbachia pipientis wMelPop"]]},{"id":"NCBITaxon:107806","l":"Buchnera aphidicola subsp. Acyrthosiphon pisum (strain APS)","na":9,"nb":1,"a":[["Pfam%3APF21157","DnaK suppressor protein DksA, N-terminal domain"],["Pfam%3APF21158","Flagellar hook-associated protein 1, D2-like domain"],["Pfam%3APF02955","Prokaryotic glutathione synthetase, ATP-grasp domain"],["Pfam%3APF02951","Prokaryotic glutathione synthetase, N-terminal domain"],["Pfam%3APF21500","DNA polymerase III subunit delta', AAA+ ATPase lid domain"],["Pfam%3APF14840","Processivity clamp loader gamma complex DNA pol III C-term"]],"b":[["NCBITaxon%3A107806","Buchnera aphidicola str. APS (Acyrthosiphon pisum)"]]},{"id":"NCBITaxon:1134687","l":"Klebsiella michiganensis","na":1,"nb":9,"a":[["TED%3AAF-A0A443W129-F1-model_v4_TED01","TED novel fold AF-A0A443W129-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1134687","Klebsiella michiganensis"],["NCBITaxon%3A1191061","Klebsiella michiganensis E718"],["NCBITaxon%3A1416754","Klebsiella michiganensis H1g"],["NCBITaxon%3A1308980","Klebsiella michiganensis HKOPL1"],["NCBITaxon%3A1006551","Klebsiella michiganensis KCTC 1686"],["NCBITaxon%3A290336","Klebsiella michiganensis M5al"]]},{"id":"NCBITaxon:1290","l":"Staphylococcus hominis","na":1,"nb":9,"a":[["TED%3AAF-A0A6N0I1N0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N0I1N0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1290","Staphylococcus hominis"],["NCBITaxon%3A629742","Staphylococcus hominis SK119"],["NCBITaxon%3A145391","Staphylococcus hominis subsp. hominis"],["NCBITaxon%3A435837","Staphylococcus hominis subsp. hominis C80"],["NCBITaxon%3A1185421","Staphylococcus hominis subsp. hominis ZBW5"],["NCBITaxon%3A145393","Staphylococcus hominis subsp. novobiosepticus"]]},{"id":"NCBITaxon:1604","l":"Lactobacillus amylovorus","na":1,"nb":9,"a":[["Pfam%3APF10439","Bacteriocin class II with double-glycine leader peptide"]],"b":[["NCBITaxon%3A1604","Lactobacillus amylovorus"],["NCBITaxon%3A1263084","Lactobacillus amylovorus CAG:719"],["NCBITaxon%3A1423723","Lactobacillus amylovorus DSM 20531"],["NCBITaxon%3A695562","Lactobacillus amylovorus GRL1118"],["NCBITaxon%3A695560","Lactobacillus amylovorus GRL 1112"],["NCBITaxon%3A695561","Lactobacillus amylovorus GRL 1115"]]},{"id":"NCBITaxon:1656","l":"Actinomyces viscosus","na":1,"nb":9,"a":[["Pfam%3APF16555","Gram-positive pilin subunit D1, N-terminal domain"]],"b":[["NCBITaxon%3A1655","Actinomyces naeslundii"],["NCBITaxon%3A544580","Actinomyces oris"],["NCBITaxon%3A29317","Actinomyces sp."],["NCBITaxon%3A3050227","Actinomyces stomatis"],["NCBITaxon%3A1656","Actinomyces viscosus"],["NCBITaxon%3A562973","Actinomyces viscosus C505"]]},{"id":"NCBITaxon:166","l":"Treponema sp.","na":9,"nb":1,"a":[["TED%3AAF-A0A351Z2H3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A351Z2H3-F1-model_v4_TED01"],["TED%3AAF-A0A356K0W2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A356K0W2-F1-model_v4_TED02"],["TED%3AAF-A0A3B8WTM6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3B8WTM6-F1-model_v4_TED02"],["TED%3AAF-A0A3C1HX51-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3C1HX51-F1-model_v4_TED03"],["TED%3AAF-A0A521IH80-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521IH80-F1-model_v4_TED01"],["TED%3AAF-A0A7X8IF67-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X8IF67-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A166","Treponema sp."]]},{"id":"NCBITaxon:1812935","l":"Enterobacter roggenkampii","na":1,"nb":9,"a":[["TED%3AAF-A0A7D6U4G9-F1-model_v4_TED01","TED novel fold AF-A0A7D6U4G9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A299767","Enterobacter ludwigii"],["NCBITaxon%3A1812935","Enterobacter roggenkampii"],["NCBITaxon%3A1439326","Enterobacter roggenkampii CHS 79"],["NCBITaxon%3A1334630","Enterobacter roggenkampii EC_38VIM1"],["NCBITaxon%3A1329832","Enterobacter roggenkampii MGH 34"]]},{"id":"NCBITaxon:1891238","l":"Burkholderiales bacterium","na":9,"nb":1,"a":[["TED%3AAF-A0A4Q3VEM9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q3VEM9-F1-model_v4_TED01"],["TED%3AAF-A0A4V1UPL0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4V1UPL0-F1-model_v4_TED01"],["TED%3AAF-A0A7X8XQ74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X8XQ74-F1-model_v4_TED01"],["TED%3AAF-A0A7X9AEE9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X9AEE9-F1-model_v4_TED01"],["TED%3AAF-A0A3N5GYF7-F1-model_v4_TED02","TED novel fold AF-A0A3N5GYF7-F1-model_v4_TED02"],["TED%3AAF-A0A417N833-F1-model_v4_TED02","TED novel fold AF-A0A417N833-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1891238","Burkholderiales bacterium"]]},{"id":"NCBITaxon:1891241","l":"Betaproteobacteria bacterium","na":9,"nb":1,"a":[["TED%3AAF-A0A2U1RVU7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U1RVU7-F1-model_v4_TED01"],["TED%3AAF-A0A536T3L4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A536T3L4-F1-model_v4_TED01"],["TED%3AAF-A0A537ATD3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A537ATD3-F1-model_v4_TED01"],["TED%3AAF-A0A3D0EVD4-F1-model_v4_TED01","TED novel fold AF-A0A3D0EVD4-F1-model_v4_TED01"],["TED%3AAF-A0A521VEK6-F1-model_v4_TED02","TED novel fold AF-A0A521VEK6-F1-model_v4_TED02"],["TED%3AAF-A0A536S5A6-F1-model_v4_TED01","TED novel fold AF-A0A536S5A6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1891241","Betaproteobacteria bacterium"]]},{"id":"NCBITaxon:1930","l":"Streptomyces scabiei","na":1,"nb":9,"a":[["TED%3AAF-A0A086GLG9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A086GLG9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2993540","Streptomyces griseiscabiei"],["NCBITaxon%3A1930","Streptomyces scabiei"],["NCBITaxon%3A680198","Streptomyces scabiei 87.22"],["NCBITaxon%3A175280","Streptomyces scabiei subsp. chosun"],["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A74595","Streptomyces sp. ATCC 10246"]]},{"id":"NCBITaxon:195102","l":"Clostridium perfringens (strain 13 / Type A)","na":9,"nb":1,"a":[["Pfam%3APF00963","Cohesin domain"],["Pfam%3APF07085","DRTGG domain"],["Pfam%3APF07554","FIVAR domain"],["Pfam%3APF02329","Histidine carboxylase PI chain"],["PROSITE%3APS00384","Prokaryotic zinc-dependent phospholipase C signature"],["PROSITE%3APS00397","Site-specific recombinases active site"]],"b":[["NCBITaxon%3A195102","Clostridium perfringens str. 13"]]},{"id":"NCBITaxon:2026771","l":"Opitutae bacterium","na":9,"nb":1,"a":[["TED%3AAF-A0A351FCU9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A351FCU9-F1-model_v4_TED02"],["TED%3AAF-A0A3B9FK87-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B9FK87-F1-model_v4_TED01"],["TED%3AAF-A0A3B9FQG1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B9FQG1-F1-model_v4_TED01"],["TED%3AAF-A0A2E7HLG5-F1-model_v4_TED01","TED novel fold AF-A0A2E7HLG5-F1-model_v4_TED01"],["TED%3AAF-A0A2E8A986-F1-model_v4_TED03","TED novel fold AF-A0A2E8A986-F1-model_v4_TED03"],["TED%3AAF-A0A388PNP3-F1-model_v4_TED01","TED novel fold AF-A0A388PNP3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026771","Opitutia bacterium"]]},{"id":"NCBITaxon:2026790","l":"Saprospirales bacterium","na":9,"nb":1,"a":[["TED%3AAF-A0A2E0VPV1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0VPV1-F1-model_v4_TED01"],["TED%3AAF-A0A350C3R5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A350C3R5-F1-model_v4_TED02"],["TED%3AAF-A0A3B9AIU7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B9AIU7-F1-model_v4_TED01"],["TED%3AAF-A0A3B9AQT4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B9AQT4-F1-model_v4_TED01"],["TED%3AAF-A0A3C2EH16-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A3C2EH16-F1-model_v4_TED06"],["TED%3AAF-A0A350I6X8-F1-model_v4_TED05","TED novel fold AF-A0A350I6X8-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2026790","Saprospirales bacterium"]]},{"id":"NCBITaxon:2035772","l":"Omnitrophica bacterium","na":9,"nb":1,"a":[["TED%3AAF-A0A357BHW2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A357BHW2-F1-model_v4_TED03"],["TED%3AAF-A0A3A4NVP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A4NVP7-F1-model_v4_TED01"],["TED%3AAF-A0A3C0MWJ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C0MWJ7-F1-model_v4_TED01"],["TED%3AAF-A0A496RGI7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A496RGI7-F1-model_v4_TED01"],["TED%3AAF-A0A496RSP3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A496RSP3-F1-model_v4_TED01"],["TED%3AAF-A0A496RUZ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A496RUZ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2035772","Candidatus Omnitrophota bacterium"]]},{"id":"NCBITaxon:2044944","l":"Sphingobacteriales bacterium","na":9,"nb":1,"a":[["TED%3AAF-A0A4Q3BJJ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q3BJJ3-F1-model_v4_TED01"],["TED%3AAF-A0A4Q3CF66-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A4Q3CF66-F1-model_v4_TED03"],["TED%3AAF-A0A4Q3D751-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Q3D751-F1-model_v4_TED02"],["TED%3AAF-A0A4Q5Y1T8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Q5Y1T8-F1-model_v4_TED02"],["TED%3AAF-A0A431MVU6-F1-model_v4_TED01","TED novel fold AF-A0A431MVU6-F1-model_v4_TED01"],["TED%3AAF-A0A4Q3CE48-F1-model_v4_TED01","TED novel fold AF-A0A4Q3CE48-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2044944","Sphingobacteriales bacterium"]]},{"id":"NCBITaxon:2052149","l":"Candidatus Aminicenantes bacterium","na":9,"nb":1,"a":[["TED%3AAF-A0A2N7QEI2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N7QEI2-F1-model_v4_TED02"],["TED%3AAF-A0A524GLZ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A524GLZ8-F1-model_v4_TED01"],["TED%3AAF-A0A7C3RQU7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C3RQU7-F1-model_v4_TED01"],["TED%3AAF-A0A7V3A5N9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V3A5N9-F1-model_v4_TED01"],["TED%3AAF-A0A523X3I9-F1-model_v4_TED02","TED novel fold AF-A0A523X3I9-F1-model_v4_TED02"],["TED%3AAF-A0A7C1LTD6-F1-model_v4_TED01","TED novel fold AF-A0A7C1LTD6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052149","Candidatus Aminicenantota bacterium"]]},{"id":"NCBITaxon:2053527","l":"candidate division Zixibacteria bacterium","na":9,"nb":1,"a":[["TED%3AAF-A0A523YRI5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A523YRI5-F1-model_v4_TED01"],["TED%3AAF-A0A660PDK1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A660PDK1-F1-model_v4_TED01"],["TED%3AAF-A0A660PEZ7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A660PEZ7-F1-model_v4_TED02"],["TED%3AAF-A0A7V2EMC0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7V2EMC0-F1-model_v4_TED02"],["TED%3AAF-A0A7X9FDL7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X9FDL7-F1-model_v4_TED01"],["TED%3AAF-A0A7C1EL72-F1-model_v4_TED01","TED novel fold AF-A0A7C1EL72-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053527","Candidatus Zixiibacteriota bacterium"]]},{"id":"NCBITaxon:2053541","l":"Cytophagales bacterium","na":9,"nb":1,"a":[["TED%3AAF-A0A3B8I2I4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B8I2I4-F1-model_v4_TED01"],["TED%3AAF-A0A3B8IB95-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B8IB95-F1-model_v4_TED01"],["TED%3AAF-A0A3D4IR98-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3D4IR98-F1-model_v4_TED03"],["TED%3AAF-A0A3D5KMW2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D5KMW2-F1-model_v4_TED01"],["TED%3AAF-A0A3B8HZ12-F1-model_v4_TED05","TED novel fold AF-A0A3B8HZ12-F1-model_v4_TED05"],["TED%3AAF-A0A3B8IGB2-F1-model_v4_TED01","TED novel fold AF-A0A3B8IGB2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053541","Cytophagales bacterium"]]},{"id":"NCBITaxon:214853","l":"Anaerofustis stercorihominis","na":1,"nb":9,"a":[["TED%3AAF-A0A3E3E141-F1-model_v4_TED03","TED novel fold AF-A0A3E3E141-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A214853","Anaerofustis stercorihominis"],["NCBITaxon%3A445971","Anaerofustis stercorihominis DSM 17244"],["NCBITaxon%3A1338830","Anaerofustis stercorihominis TSDC10.1-1.1"],["NCBITaxon%3A1338831","Anaerofustis stercorihominis TSDC19.1-1.1"],["NCBITaxon%3A1338832","Anaerofustis stercorihominis TSDC20.1-1.1"],["NCBITaxon%3A1338833","Anaerofustis stercorihominis TSDC20.2-1.1"]]},{"id":"NCBITaxon:2172550","l":"candidate division KSB1 bacterium","na":9,"nb":1,"a":[["TED%3AAF-A0A3N5JNL5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N5JNL5-F1-model_v4_TED01"],["TED%3AAF-A0A496T630-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A496T630-F1-model_v4_TED04"],["TED%3AAF-A0A496TFB5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A496TFB5-F1-model_v4_TED02"],["TED%3AAF-A0A660YQ78-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A660YQ78-F1-model_v4_TED01"],["TED%3AAF-A0A660YNR3-F1-model_v4_TED01","TED novel fold AF-A0A660YNR3-F1-model_v4_TED01"],["TED%3AAF-A0A7Y5G412-F1-model_v4_TED01","TED novel fold AF-A0A7Y5G412-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2172550","Candidatus Zhuqueibacterota bacterium"]]},{"id":"NCBITaxon:2208","l":"Methanosarcina barkeri","na":1,"nb":9,"a":[["Pfam%3APF09505","Dimethylamine methyltransferase (Dimeth_PyL)"]],"b":[["NCBITaxon%3A2208","Methanosarcina barkeri"],["NCBITaxon%3A1434106","Methanosarcina barkeri 227"],["NCBITaxon%3A1434107","Methanosarcina barkeri 3"],["NCBITaxon%3A796385","Methanosarcina barkeri CM1"],["NCBITaxon%3A1298606","Methanosarcina barkeri JCM 10043"],["NCBITaxon%3A1434108","Methanosarcina barkeri MS"]]},{"id":"NCBITaxon:235443","l":"Cryptococcus neoformans (strain H99 / ATCC 208821 / CBS 10515 / FGSC 9487)","na":9,"nb":1,"a":[["Pfam%3APF20238","Copper acquisition factor BIM1-like"],["Pfam%3APF27979","CON7 transcription factor helical domain"],["Pfam%3APF21671","Protein CPL1-like"],["Pfam%3APF06280","Fn3-like domain"],["Pfam%3APF14613","HAM1-like, C-terminal domain"],["Pfam%3APF19343","HAM1-like, N-terminal domain"]],"b":[["NCBITaxon%3A235443","Cryptococcus neoformans H99"]]},{"id":"NCBITaxon:272944","l":"Rickettsia conorii (strain ATCC VR-613 / Malish 7)","na":9,"nb":1,"a":[["Pfam%3APF11020","Domain of unknown function (DUF2610)"],["Pfam%3APF18640","LepB N-terminal domain"],["Pfam%3APF10878","Protein of unknown function (DUF2672)"],["Pfam%3APF10871","Protein of unknown function (DUF2748)"],["Pfam%3APF17372","Family of unknown function (DUF5394)"],["Pfam%3APF17462","Family of unknown function (DUF5424)"]],"b":[["NCBITaxon%3A272944","Rickettsia conorii str. Malish 7"]]},{"id":"NCBITaxon:282458","l":"Staphylococcus aureus (strain MRSA252)","na":9,"nb":1,"a":[["Pfam%3APF13166","AAA domain"],["Pfam%3APF18927","Glycosyl-4,4'-diaponeurosporenoate acyltransferase"],["Pfam%3APF22694","Activating protease CtpB N-terminal domain"],["Pfam%3APF04507","Csa1 family"],["Pfam%3APF12008","Type I restriction and modification enzyme - subunit R C terminal"],["Pfam%3APF05372","Delta lysin family"]],"b":[["NCBITaxon%3A282458","Staphylococcus aureus subsp. aureus MRSA252"]]},{"id":"NCBITaxon:2903","l":"Emiliania huxleyi","na":9,"nb":1,"a":[["TED%3AAF-A0A7S3RZJ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3RZJ4-F1-model_v4_TED01"],["TED%3AAF-A0A7S3W933-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3W933-F1-model_v4_TED01"],["TED%3AAF-A0A7S3W9Q3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3W9Q3-F1-model_v4_TED01"],["TED%3AAF-R1DPG1-F1-model_v4_TED01","TED highly-symmetric fold AF-R1DPG1-F1-model_v4_TED01"],["TED%3AAF-A0A7S3TQB6-F1-model_v4_TED02","TED novel fold AF-A0A7S3TQB6-F1-model_v4_TED02"],["TED%3AAF-R1BEB4-F1-model_v4_TED01","TED novel fold AF-R1BEB4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2903","Emiliania huxleyi"]]},{"id":"NCBITaxon:298","l":"Pseudomonas marginalis","na":1,"nb":9,"a":[["PROSITE%3APS00330","Hemolysin-type calcium-binding region signature"]],"b":[["NCBITaxon%3A129847","Pseudomonas grimontii"],["NCBITaxon%3A298","Pseudomonas marginalis"],["NCBITaxon%3A1198318","Pseudomonas marginalis ICMP 11289"],["NCBITaxon%3A1198317","Pseudomonas marginalis ICMP 9505"],["NCBITaxon%3A69646","Pseudomonas marginalis pv. alfalfae"],["NCBITaxon%3A97473","Pseudomonas marginalis pv. marginalis"]]},{"id":"NCBITaxon:32019","l":"Campylobacter fetus subsp. fetus","na":1,"nb":9,"a":[["TED%3AAF-A0A0S4SB94-F1-model_v4_TED05","TED novel fold AF-A0A0S4SB94-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A196","Campylobacter fetus"],["NCBITaxon%3A32019","Campylobacter fetus subsp. fetus"],["NCBITaxon%3A1240980","Campylobacter fetus subsp. fetus 04/554"],["NCBITaxon%3A360106","Campylobacter fetus subsp. fetus 82-40"],["NCBITaxon%3A1273268","Campylobacter fetus subsp. fetus BT 10/98"],["NCBITaxon%3A1273130","Campylobacter fetus subsp. fetus cff110800-21-2"]]},{"id":"NCBITaxon:354242","l":"Campylobacter jejuni subsp. jejuni 81-176","na":1,"nb":9,"a":[["PROSITE%3APS01300","RecR protein signature"]],"b":[["NCBITaxon%3A354242","Campylobacter jejuni subsp. jejuni 81-176"],["NCBITaxon%3A1368608","Campylobacter jejuni subsp. jejuni 81-176-55"],["NCBITaxon%3A1368609","Campylobacter jejuni subsp. jejuni 81-176-55-O1"],["NCBITaxon%3A1368610","Campylobacter jejuni subsp. jejuni 81-176-55-O3"],["NCBITaxon%3A1368611","Campylobacter jejuni subsp. jejuni 81-176-55-T1"],["NCBITaxon%3A1368612","Campylobacter jejuni subsp. jejuni 81-176-55-T3"]]},{"id":"NCBITaxon:359391","l":"Brucella abortus (strain 2308)","na":9,"nb":1,"a":[["Pfam%3APF13444","Acetyltransferase (GNAT) domain"],["Pfam%3APF10090","Histidine phosphotransferase C-terminal domain"],["Pfam%3APF07536","HWE histidine kinase"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF07886","BA14K-like protein"],["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"]],"b":[["NCBITaxon%3A359391","Brucella abortus 2308"]]},{"id":"NCBITaxon:40215","l":"Acinetobacter junii","na":1,"nb":9,"a":[["TED%3AAF-A0A8B4RWB2-F1-model_v4_TED01","TED novel fold AF-A0A8B4RWB2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A471","Acinetobacter calcoaceticus"],["NCBITaxon%3A40215","Acinetobacter junii"],["NCBITaxon%3A1217666","Acinetobacter junii CIP 107470 = MTCC 11364"],["NCBITaxon%3A1217664","Acinetobacter junii CIP 64.5"],["NCBITaxon%3A1217665","Acinetobacter junii NIPH 182"],["NCBITaxon%3A575587","Acinetobacter junii SH205"]]},{"id":"NCBITaxon:405955","l":"Escherichia coli O1:K1 / APEC","na":9,"nb":1,"a":[["Pfam%3APF07417","Sigma factor-binding transcriptional regulator Crl"],["Pfam%3APF10807","Domain of unknown function (DUF2541)"],["Pfam%3APF25878","pHBA AAEA subunit, alpha-helical hairpin domain"],["Pfam%3APF10796","Sigma-S stabilisation anti-adaptor protein"],["Pfam%3APF06693","Protein of unknown function (DUF1190)"],["Pfam%3APF06932","Protein of unknown function (DUF1283)"]],"b":[["NCBITaxon%3A405955","Escherichia coli APEC O1"]]},{"id":"NCBITaxon:451708","l":"Bacillus cereus (strain H3081.97)","na":9,"nb":1,"a":[["Pfam%3APF25796","BREX ATP-binding protein BrxC 4th domain with six-stranded beta sheet"],["Pfam%3APF25792","BREX ATP-binding protein BrxC alpha helical domain"],["Pfam%3APF08747","BREX protein BrxB"],["Pfam%3APF27212","BrxC seventh domain"],["Pfam%3APF27153","BrxC C-terminal alpha-beta domain"],["Pfam%3APF19557","BrxC/PglY, N-terminal domain"]],"b":[["NCBITaxon%3A451708","Bacillus cereus H3081.97"]]},{"id":"NCBITaxon:5963","l":"Stentor coeruleus","na":9,"nb":1,"a":[["TED%3AAF-A0A1R2B826-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1R2B826-F1-model_v4_TED03"],["TED%3AAF-A0A1R2BGQ2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1R2BGQ2-F1-model_v4_TED02"],["TED%3AAF-A0A1R2CI53-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1R2CI53-F1-model_v4_TED01"],["TED%3AAF-A0A1R2CKY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1R2CKY6-F1-model_v4_TED01"],["TED%3AAF-A0A1R2BD98-F1-model_v4_TED03","TED novel fold AF-A0A1R2BD98-F1-model_v4_TED03"],["TED%3AAF-A0A1R2BHU7-F1-model_v4_TED01","TED novel fold AF-A0A1R2BHU7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5963","Stentor coeruleus"]]},{"id":"NCBITaxon:729","l":"Haemophilus parainfluenzae","na":1,"nb":9,"a":[["Pfam%3APF04480","Protein of unknown function (DUF559)"]],"b":[["NCBITaxon%3A732","Aggregatibacter aphrophilus"],["NCBITaxon%3A726","Haemophilus haemolyticus"],["NCBITaxon%3A729","Haemophilus parainfluenzae"],["NCBITaxon%3A888828","Haemophilus parainfluenzae ATCC 33392"],["NCBITaxon%3A1095746","Haemophilus parainfluenzae HK2019"],["NCBITaxon%3A1095745","Haemophilus parainfluenzae HK262"]]},{"id":"NCBITaxon:96241","l":"Bacillus spizizenii","na":1,"nb":9,"a":[["Pfam%3APF05952","Bacillus competence pheromone ComX"]],"b":[["NCBITaxon%3A96241","Bacillus spizizenii"],["NCBITaxon%3A703612","Bacillus spizizenii ATCC 6633 = JCM 2499"],["NCBITaxon%3A1051503","Bacillus spizizenii DV1-B-1"],["NCBITaxon%3A932006","Bacillus spizizenii RFWG1A3"],["NCBITaxon%3A932005","Bacillus spizizenii RFWG1A4"],["NCBITaxon%3A932007","Bacillus spizizenii RFWG4C10"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":1,"nb":8,"a":[["TED%3AAF-A0A367PA30-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A367PA30-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A119219","Cupriavidus metallidurans"],["NCBITaxon%3A106590","Cupriavidus necator"],["NCBITaxon%3A1304882","Cupriavidus necator A5-1"],["NCBITaxon%3A381666","Cupriavidus necator H16"],["NCBITaxon%3A53482","Cupriavidus necator H850"],["NCBITaxon%3A1042878","Cupriavidus necator N-1"]]},{"id":"NCBITaxon:1261","l":"Peptostreptococcus anaerobius","na":1,"nb":8,"a":[["TED%3AAF-A0A379CE26-F1-model_v4_TED01","TED novel fold AF-A0A379CE26-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1944660","Parvimonas sp."],["NCBITaxon%3A1261","Peptostreptococcus anaerobius"],["NCBITaxon%3A596329","Peptostreptococcus anaerobius 653-L"],["NCBITaxon%3A1263100","Peptostreptococcus anaerobius CAG:621"],["NCBITaxon%3A1073365","Peptostreptococcus anaerobius CC14N"],["NCBITaxon%3A1035196","Peptostreptococcus anaerobius VPI 4330 = DSM 2949"]]},{"id":"NCBITaxon:127549","l":"Calcidiscus leptoporus","na":8,"nb":1,"a":[["TED%3AAF-A0A7S0INC1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S0INC1-F1-model_v4_TED02"],["TED%3AAF-A0A7S0IYC3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0IYC3-F1-model_v4_TED01"],["TED%3AAF-A0A7S0JEV1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0JEV1-F1-model_v4_TED01"],["TED%3AAF-A0A7S0NTQ4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S0NTQ4-F1-model_v4_TED03"],["TED%3AAF-A0A7S0ITZ3-F1-model_v4_TED01","TED novel fold AF-A0A7S0ITZ3-F1-model_v4_TED01"],["TED%3AAF-A0A7S0IVK3-F1-model_v4_TED02","TED novel fold AF-A0A7S0IVK3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A127549","Calcidiscus leptoporus"]]},{"id":"NCBITaxon:13689","l":"Sphingomonas paucimobilis","na":1,"nb":8,"a":[["PROSITE%3APS00082","Extradiol ring-cleavage dioxygenases signature"]],"b":[["NCBITaxon%3A178355","Flavobacterium omnivorum"],["NCBITaxon%3A1404341","Sphingobium scionense"],["NCBITaxon%3A13689","Sphingomonas paucimobilis"],["NCBITaxon%3A1219050","Sphingomonas paucimobilis NBRC 13935"],["NCBITaxon%3A33051","Sphingomonas sanguinis"],["NCBITaxon%3A1219054","Sphingomonas sanguinis NBRC 13937"]]},{"id":"NCBITaxon:1487602","l":"Vannella robusta","na":8,"nb":1,"a":[["TED%3AAF-A0A7S4HGW0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4HGW0-F1-model_v4_TED01"],["TED%3AAF-A0A7S4I8J6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4I8J6-F1-model_v4_TED01"],["TED%3AAF-A0A7S4M3M8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S4M3M8-F1-model_v4_TED03"],["TED%3AAF-A0A7S4MDY9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S4MDY9-F1-model_v4_TED02"],["TED%3AAF-A0A7S4HLW6-F1-model_v4_TED01","TED novel fold AF-A0A7S4HLW6-F1-model_v4_TED01"],["TED%3AAF-A0A7S4IBF0-F1-model_v4_TED02","TED novel fold AF-A0A7S4IBF0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1487602","Vannella robusta"]]},{"id":"NCBITaxon:1490","l":"Paraclostridium bifermentans","na":1,"nb":8,"a":[["TED%3AAF-A0A5P3XDT9-F1-model_v4_TED01","TED novel fold AF-A0A5P3XDT9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1490","Paraclostridium bifermentans"],["NCBITaxon%3A1233170","Paraclostridium bifermentans ATCC 19299"],["NCBITaxon%3A1233171","Paraclostridium bifermentans ATCC 638 = DSM 14991"],["NCBITaxon%3A1357385","Paraclostridium bifermentans NI48_6"],["NCBITaxon%3A2663174","Paraclostridium bifermentans subsp. bifermentans"],["NCBITaxon%3A2663173","Paraclostridium bifermentans subsp. muricolitidis"]]},{"id":"NCBITaxon:1519565","l":"Fistulifera solaris","na":8,"nb":1,"a":[["TED%3AAF-A0A1Z5KJL4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z5KJL4-F1-model_v4_TED01"],["TED%3AAF-A0A1Z5JER3-F1-model_v4_TED01","TED novel fold AF-A0A1Z5JER3-F1-model_v4_TED01"],["TED%3AAF-A0A1Z5JX70-F1-model_v4_TED01","TED novel fold AF-A0A1Z5JX70-F1-model_v4_TED01"],["TED%3AAF-A0A1Z5K129-F1-model_v4_TED03","TED novel fold AF-A0A1Z5K129-F1-model_v4_TED03"],["TED%3AAF-A0A1Z5K6R2-F1-model_v4_TED02","TED novel fold AF-A0A1Z5K6R2-F1-model_v4_TED02"],["TED%3AAF-A0A1Z5KAG5-F1-model_v4_TED02","TED novel fold AF-A0A1Z5KAG5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1519565","Fistulifera solaris"]]},{"id":"NCBITaxon:155615","l":"Fusobacterium vincentii","na":1,"nb":8,"a":[["TED%3AAF-A0A2D3JJJ5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D3JJJ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A851","Fusobacterium nucleatum"],["NCBITaxon%3A155615","Fusobacterium vincentii"],["NCBITaxon%3A469602","Fusobacterium vincentii 3_1_27"],["NCBITaxon%3A469604","Fusobacterium vincentii 3_1_36A2"],["NCBITaxon%3A469606","Fusobacterium vincentii 4_1_13"],["NCBITaxon%3A209882","Fusobacterium vincentii ATCC 49256"]]},{"id":"NCBITaxon:156174","l":"Haptolina ericina","na":8,"nb":1,"a":[["TED%3AAF-A0A6T9BHX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6T9BHX2-F1-model_v4_TED01"],["TED%3AAF-A0A7S3AM90-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S3AM90-F1-model_v4_TED02"],["TED%3AAF-A0A7S3BLC7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3BLC7-F1-model_v4_TED01"],["TED%3AAF-A0A7S3FK24-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3FK24-F1-model_v4_TED01"],["TED%3AAF-A0A7S3FK24-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S3FK24-F1-model_v4_TED02"],["TED%3AAF-A0A7S3AD30-F1-model_v4_TED01","TED novel fold AF-A0A7S3AD30-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A156174","Haptolina ericina"]]},{"id":"NCBITaxon:163516","l":"Leptocylindrus danicus","na":8,"nb":1,"a":[["TED%3AAF-A0A7S2K456-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2K456-F1-model_v4_TED01"],["TED%3AAF-A0A7S2K4C3-F1-model_v4_TED03","TED novel fold AF-A0A7S2K4C3-F1-model_v4_TED03"],["TED%3AAF-A0A7S2K9T3-F1-model_v4_TED02","TED novel fold AF-A0A7S2K9T3-F1-model_v4_TED02"],["TED%3AAF-A0A7S2KEQ3-F1-model_v4_TED02","TED novel fold AF-A0A7S2KEQ3-F1-model_v4_TED02"],["TED%3AAF-A0A7S2LA27-F1-model_v4_TED01","TED novel fold AF-A0A7S2LA27-F1-model_v4_TED01"],["TED%3AAF-A0A7S2NST6-F1-model_v4_TED02","TED novel fold AF-A0A7S2NST6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A163516","Leptocylindrus danicus"]]},{"id":"NCBITaxon:183190","l":"Xylella fastidiosa (strain Temecula1 / ATCC 700964)","na":8,"nb":1,"a":[["Pfam%3APF21142","Bacterial alpha-2 macroglobulin MG2 domain"],["Pfam%3APF04273","Beta-lactamase hydrolase-like protein, phosphatase-like domain"],["Pfam%3APF17970","Bacterial Alpha-2-macroglobulin MG1 domain"],["Pfam%3APF17973","Bacterial Alpha-2-macroglobulin MG10 domain"],["Pfam%3APF11974","Bacterial alpha-2-macroglobulin MG3 domain"],["Pfam%3APF17972","Bacterial Alpha-2-macroglobulin MG5 domain"]],"b":[["NCBITaxon%3A183190","Xylella fastidiosa Temecula1"]]},{"id":"NCBITaxon:1898112","l":"Rhodospirillaceae bacterium","na":8,"nb":1,"a":[["TED%3AAF-A0A2E2MMI2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E2MMI2-F1-model_v4_TED01"],["TED%3AAF-A0A2E7PH74-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E7PH74-F1-model_v4_TED02"],["TED%3AAF-A0A2G4IIC6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G4IIC6-F1-model_v4_TED01"],["TED%3AAF-A0A2G4IN46-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G4IN46-F1-model_v4_TED01"],["TED%3AAF-A0A353X848-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A353X848-F1-model_v4_TED03"],["TED%3AAF-A0A3D3V9F8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D3V9F8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1898112","Rhodospirillaceae bacterium"]]},{"id":"NCBITaxon:1898206","l":"Spirochaetaceae bacterium","na":8,"nb":1,"a":[["TED%3AAF-A0A2E8PS22-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E8PS22-F1-model_v4_TED01"],["TED%3AAF-A0A2E9Q6U7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2E9Q6U7-F1-model_v4_TED03"],["TED%3AAF-A0A3B9GEQ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B9GEQ8-F1-model_v4_TED01"],["TED%3AAF-A0A3B9GF21-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3B9GF21-F1-model_v4_TED02"],["TED%3AAF-A0A3N5U8M9-F1-model_v4_TED01","TED novel fold AF-A0A3N5U8M9-F1-model_v4_TED01"],["TED%3AAF-A0A525BZN2-F1-model_v4_TED01","TED novel fold AF-A0A525BZN2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1898206","Spirochaetaceae bacterium"]]},{"id":"NCBITaxon:1899355","l":"Oceanospirillaceae bacterium","na":8,"nb":1,"a":[["TED%3AAF-A0A2E2IFM2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E2IFM2-F1-model_v4_TED01"],["TED%3AAF-A0A2E7EAQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E7EAQ3-F1-model_v4_TED01"],["TED%3AAF-A0A2E7JE34-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E7JE34-F1-model_v4_TED01"],["TED%3AAF-A0A352R0R2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A352R0R2-F1-model_v4_TED01"],["TED%3AAF-A0A2D5PA45-F1-model_v4_TED01","TED novel fold AF-A0A2D5PA45-F1-model_v4_TED01"],["TED%3AAF-A0A2D5PBR3-F1-model_v4_TED05","TED novel fold AF-A0A2D5PBR3-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1899355","Oceanospirillaceae bacterium"]]},{"id":"NCBITaxon:2026777","l":"Phycisphaeraceae bacterium","na":8,"nb":1,"a":[["TED%3AAF-A0A2D5ZBA1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D5ZBA1-F1-model_v4_TED01"],["TED%3AAF-A0A2D5Z3V1-F1-model_v4_TED01","TED novel fold AF-A0A2D5Z3V1-F1-model_v4_TED01"],["TED%3AAF-A0A2E2B811-F1-model_v4_TED01","TED novel fold AF-A0A2E2B811-F1-model_v4_TED01"],["TED%3AAF-A0A2E5G3N3-F1-model_v4_TED01","TED novel fold AF-A0A2E5G3N3-F1-model_v4_TED01"],["TED%3AAF-A0A2E5G721-F1-model_v4_TED01","TED novel fold AF-A0A2E5G721-F1-model_v4_TED01"],["TED%3AAF-A0A5Q4ENV4-F1-model_v4_TED01","TED novel fold AF-A0A5Q4ENV4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026777","Phycisphaeraceae bacterium"]]},{"id":"NCBITaxon:2212470","l":"Eisenbacteria bacterium","na":8,"nb":1,"a":[["TED%3AAF-A0A538TQM9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A538TQM9-F1-model_v4_TED02"],["TED%3AAF-A0A538TUC4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A538TUC4-F1-model_v4_TED02"],["TED%3AAF-A0A538U1H5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A538U1H5-F1-model_v4_TED03"],["TED%3AAF-A0A7Y2E941-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y2E941-F1-model_v4_TED01"],["TED%3AAF-A0A7Y2EA43-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y2EA43-F1-model_v4_TED01"],["TED%3AAF-A0A7Y2EAQ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y2EAQ1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2212470","Candidatus Eiseniibacteriota bacterium"]]},{"id":"NCBITaxon:2250255","l":"Methanosarcinales archaeon","na":8,"nb":1,"a":[["TED%3AAF-A0A662QZ99-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A662QZ99-F1-model_v4_TED02"],["TED%3AAF-A0A7C0VQZ1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7C0VQZ1-F1-model_v4_TED03"],["TED%3AAF-A0A822JF34-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A822JF34-F1-model_v4_TED01"],["TED%3AAF-A0A843CE04-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843CE04-F1-model_v4_TED01"],["TED%3AAF-A0A849PQJ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A849PQJ3-F1-model_v4_TED01"],["TED%3AAF-A0A497ITN9-F1-model_v4_TED01","TED novel fold AF-A0A497ITN9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2250255","Methanosarcinales archaeon"]]},{"id":"NCBITaxon:230985","l":"Symbiodinium sp. KB8","na":8,"nb":1,"a":[["TED%3AAF-A0A812NTD9-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A812NTD9-F1-model_v4_TED04"],["TED%3AAF-A0A812VMU1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812VMU1-F1-model_v4_TED01"],["TED%3AAF-A0A813BWY4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A813BWY4-F1-model_v4_TED02"],["TED%3AAF-A0A813CFP1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A813CFP1-F1-model_v4_TED01"],["TED%3AAF-A0A813CJY8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A813CJY8-F1-model_v4_TED02"],["TED%3AAF-A0A812LNA9-F1-model_v4_TED01","TED novel fold AF-A0A812LNA9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A230985","Symbiodinium sp. KB8"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK1622","na":8,"nb":1,"a":[["Pfam%3APF27281","DevT C-terminal domain"],["Pfam%3APF27372","DevT N-terminal domain"],["Pfam%3APF17762","ParB HTH domain"],["Pfam%3APF01930","Domain of unknown function DUF83"],["Pfam%3APF09559","Cas6 Crispr"],["Pfam%3APF01905","CRISPR-associated negative auto-regulator DevR/Csa2"]],"b":[["NCBITaxon%3A246197","Myxococcus xanthus DK 1622"]]},{"id":"NCBITaxon:2482794","l":"Desulfurellales bacterium","na":8,"nb":1,"a":[["TED%3AAF-A0A5C7P4X7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7P4X7-F1-model_v4_TED01"],["TED%3AAF-A0A5C7P5L0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7P5L0-F1-model_v4_TED01"],["TED%3AAF-A0A5C7P6G5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5C7P6G5-F1-model_v4_TED02"],["TED%3AAF-A0A5C7PE00-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7PE00-F1-model_v4_TED01"],["TED%3AAF-A0A5C7PN44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7PN44-F1-model_v4_TED01"],["TED%3AAF-A0A5C7Q1Z9-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A5C7Q1Z9-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2482794","Desulfurellales bacterium"]]},{"id":"NCBITaxon:265563","l":"Odontella aurita","na":8,"nb":1,"a":[["TED%3AAF-A0A7S4IRF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4IRF4-F1-model_v4_TED01"],["TED%3AAF-A0A7S4J6G7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4J6G7-F1-model_v4_TED01"],["TED%3AAF-A0A7S4JEH1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4JEH1-F1-model_v4_TED01"],["TED%3AAF-A0A7S4K4L9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4K4L9-F1-model_v4_TED01"],["TED%3AAF-A0A7S4IH07-F1-model_v4_TED01","TED novel fold AF-A0A7S4IH07-F1-model_v4_TED01"],["TED%3AAF-A0A7S4JR13-F1-model_v4_TED02","TED novel fold AF-A0A7S4JR13-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A265563","Odontella aurita"]]},{"id":"NCBITaxon:28038","l":"Latilactobacillus curvatus","na":1,"nb":8,"a":[["TED%3AAF-A0A3R5XZN9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3R5XZN9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A418199","Lactobacillus sp. JCM 7527"],["NCBITaxon%3A28038","Latilactobacillus curvatus"],["NCBITaxon%3A1074451","Latilactobacillus curvatus CRL 705"],["NCBITaxon%3A1357401","Latilactobacillus curvatus F16_9"],["NCBITaxon%3A1293592","Latilactobacillus curvatus JCM 1096 = DSM 20019"],["NCBITaxon%3A1318630","Latilactobacillus curvatus WSU1"]]},{"id":"NCBITaxon:29508","l":"Leptospira meyeri","na":1,"nb":8,"a":[["TED%3AAF-A0A5F2D179-F1-model_v4_TED01","TED novel fold AF-A0A5F2D179-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29508","Leptospira meyeri"],["NCBITaxon%3A293077","Leptospira meyeri serovar Hardjo"],["NCBITaxon%3A1193051","Leptospira meyeri serovar Hardjo str. Went 5"],["NCBITaxon%3A293064","Leptospira meyeri serovar Ranarum"],["NCBITaxon%3A293080","Leptospira meyeri serovar Semaranga"],["NCBITaxon%3A1218585","Leptospira meyeri serovar Semaranga str. Veldrot Semarang 173"]]},{"id":"NCBITaxon:300","l":"Ectopseudomonas mendocina","na":1,"nb":8,"a":[["TED%3AAF-A0A550EU84-F1-model_v4_TED01","TED novel fold AF-A0A550EU84-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A300","Ectopseudomonas mendocina"],["NCBITaxon%3A1197721","Ectopseudomonas mendocina DLHK"],["NCBITaxon%3A1390370","Ectopseudomonas mendocina EGD-AQ5"],["NCBITaxon%3A1215108","Ectopseudomonas mendocina NBRC 14162"],["NCBITaxon%3A1001585","Ectopseudomonas mendocina NK-01"],["NCBITaxon%3A1225174","Ectopseudomonas mendocina S5.2"]]},{"id":"NCBITaxon:32597","l":"Perkinsus olseni","na":8,"nb":1,"a":[["TED%3AAF-A0A7J6LEI3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J6LEI3-F1-model_v4_TED01"],["TED%3AAF-A0A7J6P2W0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J6P2W0-F1-model_v4_TED01"],["TED%3AAF-A0A7J6L1P5-F1-model_v4_TED03","TED novel fold AF-A0A7J6L1P5-F1-model_v4_TED03"],["TED%3AAF-A0A7J6L6E8-F1-model_v4_TED01","TED novel fold AF-A0A7J6L6E8-F1-model_v4_TED01"],["TED%3AAF-A0A7J6MV19-F1-model_v4_TED02","TED novel fold AF-A0A7J6MV19-F1-model_v4_TED02"],["TED%3AAF-A0A7J6RMU5-F1-model_v4_TED03","TED novel fold AF-A0A7J6RMU5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A32597","Perkinsus olseni"]]},{"id":"NCBITaxon:33070","l":"Parathermosynechococcus lividus","na":1,"nb":8,"a":[["Pfam%3APF06745","KaiC"]],"b":[["NCBITaxon%3A33070","Parathermosynechococcus lividus"],["NCBITaxon%3A2991904","Parathermosynechococcus lividus BC1607"],["NCBITaxon%3A102118","Parathermosynechococcus lividus C1"],["NCBITaxon%3A459417","Parathermosynechococcus lividus CR_36M"],["NCBITaxon%3A459418","Parathermosynechococcus lividus CR_9M"],["NCBITaxon%3A1897098","Parathermosynechococcus lividus M6"]]},{"id":"NCBITaxon:33967","l":"Leuconostoc mesenteroides subsp. mesenteroides","na":1,"nb":8,"a":[["Pfam%3APF03390","2-hydroxycarboxylate transporter family"]],"b":[["NCBITaxon%3A33964","Leuconostoc citreum"],["NCBITaxon%3A1245","Leuconostoc mesenteroides"],["NCBITaxon%3A33967","Leuconostoc mesenteroides subsp. mesenteroides"],["NCBITaxon%3A203120","Leuconostoc mesenteroides subsp. mesenteroides ATCC 8293"],["NCBITaxon%3A1107880","Leuconostoc mesenteroides subsp. mesenteroides J18"],["NCBITaxon%3A889970","Leuconostoc mesenteroides subsp. mesenteroides Y110"]]},{"id":"NCBITaxon:35128","l":"Thalassiosira pseudonana","na":8,"nb":1,"a":[["TED%3AAF-B5YN71-F1-model_v4_TED01","TED highly-symmetric fold AF-B5YN71-F1-model_v4_TED01"],["TED%3AAF-B8C4R6-F1-model_v4_TED02","TED highly-symmetric fold AF-B8C4R6-F1-model_v4_TED02"],["TED%3AAF-B8C9A8-F1-model_v4_TED01","TED highly-symmetric fold AF-B8C9A8-F1-model_v4_TED01"],["TED%3AAF-B8BWF8-F1-model_v4_TED05","TED novel fold AF-B8BWF8-F1-model_v4_TED05"],["TED%3AAF-B8C2H1-F1-model_v4_TED03","TED novel fold AF-B8C2H1-F1-model_v4_TED03"],["TED%3AAF-B8C8D0-F1-model_v4_TED01","TED novel fold AF-B8C8D0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A35128","Thalassiosira pseudonana"]]},{"id":"NCBITaxon:39966","l":"Hypsizygus marmoreus","na":8,"nb":1,"a":[["TED%3AAF-A0A369J6K5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A369J6K5-F1-model_v4_TED01"],["TED%3AAF-A0A369JBT3-F1-model_v4_TED02","TED novel fold AF-A0A369JBT3-F1-model_v4_TED02"],["TED%3AAF-A0A369JEI9-F1-model_v4_TED02","TED novel fold AF-A0A369JEI9-F1-model_v4_TED02"],["TED%3AAF-A0A369JTQ8-F1-model_v4_TED01","TED novel fold AF-A0A369JTQ8-F1-model_v4_TED01"],["TED%3AAF-A0A369JZM3-F1-model_v4_TED01","TED novel fold AF-A0A369JZM3-F1-model_v4_TED01"],["TED%3AAF-A0A369K0Y7-F1-model_v4_TED02","TED novel fold AF-A0A369K0Y7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A39966","Hypsizygus marmoreus"]]},{"id":"NCBITaxon:40216","l":"Acinetobacter radioresistens","na":1,"nb":8,"a":[["TED%3AAF-A0A7D7YF26-F1-model_v4_TED02","TED novel fold AF-A0A7D7YF26-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A40216","Acinetobacter radioresistens"],["NCBITaxon%3A981334","Acinetobacter radioresistens DSM 6976 = NBRC 102413 = CIP 103788"],["NCBITaxon%3A1217674","Acinetobacter radioresistens NIPH 2130"],["NCBITaxon%3A575589","Acinetobacter radioresistens SH164"],["NCBITaxon%3A596318","Acinetobacter radioresistens SK82"],["NCBITaxon%3A1221310","Acinetobacter radioresistens TG02010"]]},{"id":"NCBITaxon:41978","l":"Ruminococcus sp.","na":8,"nb":1,"a":[["TED%3AAF-A0A354K7U3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A354K7U3-F1-model_v4_TED01"],["TED%3AAF-A0A354PWT2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A354PWT2-F1-model_v4_TED01"],["TED%3AAF-A0A3B9SYL6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B9SYL6-F1-model_v4_TED01"],["TED%3AAF-A0A3C0QNU7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C0QNU7-F1-model_v4_TED01"],["TED%3AAF-A0A3C0QSS9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3C0QSS9-F1-model_v4_TED02"],["TED%3AAF-A0A354PX54-F1-model_v4_TED01","TED novel fold AF-A0A354PX54-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A41978","Ruminococcus sp."]]},{"id":"NCBITaxon:419947","l":"Mycobacterium tuberculosis (strain ATCC 25177 / H37Ra)","na":8,"nb":1,"a":[["Pfam%3APF17668","Acetyltransferase (GNAT) domain"],["Pfam%3APF13527","Acetyltransferase (GNAT) domain"],["Pfam%3APF02261","Aspartate decarboxylase"],["Pfam%3APF07584","Aerotolerance regulator N-terminal"],["Pfam%3APF03993","Domain of Unknown Function (DUF349)"],["Pfam%3APF02313","Fumarate reductase subunit D"]],"b":[["NCBITaxon%3A419947","Mycobacterium tuberculosis H37Ra"]]},{"id":"NCBITaxon:467705","l":"Streptococcus gordonii (strain Challis / ATCC 35105 / BCRC 15272 / CH1 / DL1 / V288)","na":8,"nb":1,"a":[["Pfam%3APF18652","Adhesin P1 N-terminal domain"],["Pfam%3APF17998","Cell surface antigen I/II C2 terminal domain"],["Pfam%3APF16364","Cell surface antigen C-terminus"],["Pfam%3APF18938","Atypical Rib domain"],["Pfam%3APF20164","GspA/SrpA SigLec-like domain"],["Pfam%3APF08363","Glucan-binding protein C"]],"b":[["NCBITaxon%3A467705","Streptococcus gordonii str. Challis substr. CH1"]]},{"id":"NCBITaxon:565050","l":"Caulobacter vibrioides NA1000","na":8,"nb":1,"a":[["Pfam%3APF02767","DNA polymerase III beta subunit, central domain"],["Pfam%3APF02768","DNA polymerase III beta subunit, C-terminal domain"],["Pfam%3APF00712","DNA polymerase III beta subunit, N-terminal domain"],["Pfam%3APF21249","GyrB, hook"],["Pfam%3APF07378","Flagellar protein FlbT"],["Pfam%3APF03748","Flagellar basal body-associated protein FliL"]],"b":[["NCBITaxon%3A565050","Caulobacter vibrioides NA1000"]]},{"id":"NCBITaxon:58346","l":"Streptomyces platensis","na":1,"nb":8,"a":[["PROSITE%3APS00999","Streptomyces subtilisin-type inhibitors signature"]],"b":[["NCBITaxon%3A249580","Streptomyces glebosus"],["NCBITaxon%3A249582","Streptomyces libani subsp. rufus"],["NCBITaxon%3A1920","Streptomyces nigrescens"],["NCBITaxon%3A58346","Streptomyces platensis"],["NCBITaxon%3A1649334","Streptomyces platensis subsp. clarensis"],["NCBITaxon%3A285579","Streptomyces platensis subsp. malvinus"]]},{"id":"NCBITaxon:605","l":"Salmonella enterica subsp. enterica serovar Pullorum","na":1,"nb":8,"a":[["Pfam%3APF25855","Invasion plasmid antigen J, cysteine protease"]],"b":[["NCBITaxon%3A605","Salmonella enterica subsp. enterica serovar Pullorum"],["NCBITaxon%3A1079472","Salmonella enterica subsp. enterica serovar Pullorum str. 10398"],["NCBITaxon%3A1079471","Salmonella enterica subsp. enterica serovar Pullorum str. 13036"],["NCBITaxon%3A1079470","Salmonella enterica subsp. enterica serovar Pullorum str. 19945"],["NCBITaxon%3A1029979","Salmonella enterica subsp. enterica serovar Pullorum str. ATCC 9120"],["NCBITaxon%3A1299269","Salmonella enterica subsp. enterica serovar Pullorum str. CFSAN000606"]]},{"id":"NCBITaxon:726","l":"Haemophilus haemolyticus","na":1,"nb":8,"a":[["TED%3AAF-A0A1B8PEV3-F1-model_v4_TED01","TED novel fold AF-A0A1B8PEV3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A726","Haemophilus haemolyticus"],["NCBITaxon%3A1095742","Haemophilus haemolyticus HK386"],["NCBITaxon%3A1028802","Haemophilus haemolyticus M19107"],["NCBITaxon%3A1028803","Haemophilus haemolyticus M19501"],["NCBITaxon%3A1028804","Haemophilus haemolyticus M21127"],["NCBITaxon%3A1028805","Haemophilus haemolyticus M21621"]]},{"id":"NCBITaxon:86840","l":"Pseudomonas cannabina","na":1,"nb":8,"a":[["TED%3AAF-A0A3M3K1Y4-F1-model_v4_TED03","TED novel fold AF-A0A3M3K1Y4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A86840","Pseudomonas cannabina"],["NCBITaxon%3A757414","Pseudomonas cannabina pv. alisalensis"],["NCBITaxon%3A1292044","Pseudomonas cannabina pv. alisalensis str. BS91"],["NCBITaxon%3A1292357","Pseudomonas cannabina pv. alisalensis str. PSa1-3"],["NCBITaxon%3A1290997","Pseudomonas cannabina pv. alisalensis str. PSa866"],["NCBITaxon%3A1292045","Pseudomonas cannabina pv. alisalensis str. T3C"]]},{"id":"NCBITaxon:89044","l":"Spumella elongata","na":8,"nb":1,"a":[["TED%3AAF-A0A7S3GNY1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3GNY1-F1-model_v4_TED01"],["TED%3AAF-A0A7S3GPM1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3GPM1-F1-model_v4_TED01"],["TED%3AAF-A0A7S3H3K0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S3H3K0-F1-model_v4_TED02"],["TED%3AAF-A0A7S3M258-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3M258-F1-model_v4_TED01"],["TED%3AAF-A0A7S3H7J2-F1-model_v4_TED01","TED novel fold AF-A0A7S3H7J2-F1-model_v4_TED01"],["TED%3AAF-A0A7S3LZW7-F1-model_v4_TED01","TED novel fold AF-A0A7S3LZW7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A89044","Spumella elongata"]]},{"id":"NCBITaxon:927083","l":"Sandaracinus amylolyticus","na":8,"nb":1,"a":[["TED%3AAF-A0A0F6VZG6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F6VZG6-F1-model_v4_TED01"],["TED%3AAF-A0A0F6W2H9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F6W2H9-F1-model_v4_TED01"],["TED%3AAF-A0A0F6W521-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0F6W521-F1-model_v4_TED02"],["TED%3AAF-A0A0F6W9I9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F6W9I9-F1-model_v4_TED01"],["TED%3AAF-A0A0F6YGP9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F6YGP9-F1-model_v4_TED01"],["TED%3AAF-A0A0F6SDQ8-F1-model_v4_TED01","TED novel fold AF-A0A0F6SDQ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A927083","Sandaracinus amylolyticus"]]},{"id":"NCBITaxon:119927","l":"Alternaria tenuissima","na":7,"nb":1,"a":[["TED%3AAF-A0A4Q4MR18-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q4MR18-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4M1N1-F1-model_v4_TED01","TED novel fold AF-A0A4Q4M1N1-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4M2G6-F1-model_v4_TED01","TED novel fold AF-A0A4Q4M2G6-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4MJL0-F1-model_v4_TED01","TED novel fold AF-A0A4Q4MJL0-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4PGY1-F1-model_v4_TED01","TED novel fold AF-A0A4Q4PGY1-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4RTT0-F1-model_v4_TED01","TED novel fold AF-A0A4Q4RTT0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A119927","Alternaria tenuissima"]]},{"id":"NCBITaxon:1202772","l":"Achlya hypogyna","na":7,"nb":1,"a":[["TED%3AAF-A0A0A7CNN0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A7CNN0-F1-model_v4_TED01"],["TED%3AAF-A0A1V9YXU6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V9YXU6-F1-model_v4_TED01"],["TED%3AAF-A0A1V9ZTZ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V9ZTZ4-F1-model_v4_TED01"],["TED%3AAF-A0A1V9YDY2-F1-model_v4_TED01","TED novel fold AF-A0A1V9YDY2-F1-model_v4_TED01"],["TED%3AAF-A0A1V9YYN3-F1-model_v4_TED01","TED novel fold AF-A0A1V9YYN3-F1-model_v4_TED01"],["TED%3AAF-A0A1V9Z3L8-F1-model_v4_TED05","TED novel fold AF-A0A1V9Z3L8-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1202772","Achlya hypogyna"]]},{"id":"NCBITaxon:122233","l":"Chaetoceros debilis","na":7,"nb":1,"a":[["TED%3AAF-A0A7S3PXS8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3PXS8-F1-model_v4_TED01"],["TED%3AAF-A0A7S3Q425-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S3Q425-F1-model_v4_TED03"],["TED%3AAF-A0A7S3V5P7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3V5P7-F1-model_v4_TED01"],["TED%3AAF-A0A6S8XPX8-F1-model_v4_TED01","TED novel fold AF-A0A6S8XPX8-F1-model_v4_TED01"],["TED%3AAF-A0A7S3PYF0-F1-model_v4_TED01","TED novel fold AF-A0A7S3PYF0-F1-model_v4_TED01"],["TED%3AAF-A0A7S3PZM3-F1-model_v4_TED01","TED novel fold AF-A0A7S3PZM3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A122233","Chaetoceros debilis"]]},{"id":"NCBITaxon:141414","l":"Strombidinopsis acuminata","na":7,"nb":1,"a":[["TED%3AAF-A0A7S3SGM9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3SGM9-F1-model_v4_TED01"],["TED%3AAF-A0A7S3TCM1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3TCM1-F1-model_v4_TED01"],["TED%3AAF-A0A7S3TSP0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S3TSP0-F1-model_v4_TED02"],["TED%3AAF-A0A7S3RMS0-F1-model_v4_TED01","TED novel fold AF-A0A7S3RMS0-F1-model_v4_TED01"],["TED%3AAF-A0A7S3RXR2-F1-model_v4_TED01","TED novel fold AF-A0A7S3RXR2-F1-model_v4_TED01"],["TED%3AAF-A0A7S3T6A7-F1-model_v4_TED01","TED novel fold AF-A0A7S3T6A7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A141414","Strombidinopsis acuminata"]]},{"id":"NCBITaxon:1463165","l":"Klebsiella quasipneumoniae","na":1,"nb":7,"a":[["TED%3AAF-A0A6H3DTS3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A6H3DTS3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A1463165","Klebsiella quasipneumoniae"],["NCBITaxon%3A1667327","Klebsiella quasipneumoniae subsp. quasipneumoniae"],["NCBITaxon%3A1443591","Klebsiella quasipneumoniae subsp. quasipneumoniae 18A069"],["NCBITaxon%3A1328397","Klebsiella quasipneumoniae subsp. quasipneumoniae UCICRE 14"],["NCBITaxon%3A1463164","Klebsiella quasipneumoniae subsp. similipneumoniae"]]},{"id":"NCBITaxon:156173","l":"Haptolina brevifila","na":7,"nb":1,"a":[["TED%3AAF-A0A7S2IEX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2IEX7-F1-model_v4_TED01"],["TED%3AAF-A0A7S2D8H5-F1-model_v4_TED01","TED novel fold AF-A0A7S2D8H5-F1-model_v4_TED01"],["TED%3AAF-A0A7S2D8Z9-F1-model_v4_TED01","TED novel fold AF-A0A7S2D8Z9-F1-model_v4_TED01"],["TED%3AAF-A0A7S2G649-F1-model_v4_TED02","TED novel fold AF-A0A7S2G649-F1-model_v4_TED02"],["TED%3AAF-A0A7S2H406-F1-model_v4_TED01","TED novel fold AF-A0A7S2H406-F1-model_v4_TED01"],["TED%3AAF-A0A7S2ITJ3-F1-model_v4_TED02","TED novel fold AF-A0A7S2ITJ3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A156173","Haptolina brevifila"]]},{"id":"NCBITaxon:1735","l":"Holdemanella biformis","na":1,"nb":7,"a":[["TED%3AAF-A0A395W7I9-F1-model_v4_TED01","TED novel fold AF-A0A395W7I9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1735","Holdemanella biformis"],["NCBITaxon%3A518637","Holdemanella biformis DSM 3989"],["NCBITaxon%3A1339517","Holdemanella biformis TSDC10.1-1.1"],["NCBITaxon%3A1339518","Holdemanella biformis TSDC10.1-1.2"],["NCBITaxon%3A1339519","Holdemanella biformis TSDC10.1-2.1"],["NCBITaxon%3A1339520","Holdemanella biformis TSDC10.1-3.1"]]},{"id":"NCBITaxon:1774","l":"Mycobacteroides chelonae","na":1,"nb":7,"a":[["TED%3AAF-A0A4Y6IJG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y6IJG8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2038731","[Mycobacterium] chelonae subsp. bovistauri"],["NCBITaxon%3A2099321","[Mycobacterium] chelonae subsp. chelonae"],["NCBITaxon%3A2480908","[Mycobacterium] chelonae subsp. gwanakae"],["NCBITaxon%3A1785","Mycobacterium sp."],["NCBITaxon%3A1774","Mycobacteroides chelonae"],["NCBITaxon%3A1299322","Mycobacteroides chelonae 1518"]]},{"id":"NCBITaxon:1906666","l":"Thermoplasmata archaeon","na":7,"nb":1,"a":[["TED%3AAF-A0A497HVI4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A497HVI4-F1-model_v4_TED01"],["TED%3AAF-A0A497HX78-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A497HX78-F1-model_v4_TED01"],["TED%3AAF-A0A662M489-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A662M489-F1-model_v4_TED03"],["TED%3AAF-A0A662MMC3-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A662MMC3-F1-model_v4_TED06"],["TED%3AAF-A0A7J4F045-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J4F045-F1-model_v4_TED01"],["TED%3AAF-A0A5A7S0Y2-F1-model_v4_TED02","TED novel fold AF-A0A5A7S0Y2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1906666","Thermoplasmata archaeon"]]},{"id":"NCBITaxon:1908","l":"Streptomyces globisporus","na":1,"nb":7,"a":[["PROSITE%3APS00953","Glycosyl hydrolases family 25 active site signature"]],"b":[["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A332582","Streptomyces flavofuscus"],["NCBITaxon%3A1908","Streptomyces globisporus"],["NCBITaxon%3A1172567","Streptomyces globisporus C-1027"],["NCBITaxon%3A66858","Streptomyces globisporus subsp. globisporus"],["NCBITaxon%3A1522106","Streptomyces globisporus subsp. griseus"]]},{"id":"NCBITaxon:1935","l":"Streptomyces violaceoruber","na":1,"nb":7,"a":[["Pfam%3APF03559","NDP-hexose 2,3-dehydratase"]],"b":[["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A67291","Streptomyces cyanocolor"],["NCBITaxon%3A80860","Streptomyces cyanogenus"],["NCBITaxon%3A1916","Streptomyces lividans"],["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A68277","Streptomyces tricolor"]]},{"id":"NCBITaxon:1938","l":"Streptomyces viridochromogenes","na":1,"nb":7,"a":[["Pfam%3APF11599","RRNA methyltransferase AviRa"]],"b":[["NCBITaxon%3A1969","Streptomyces chartreusis"],["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A1938","Streptomyces viridochromogenes"],["NCBITaxon%3A591159","Streptomyces viridochromogenes DSM 40736"],["NCBITaxon%3A285521","Streptomyces viridochromogenes subsp. komabensis"],["NCBITaxon%3A285503","Streptomyces viridochromogenes subsp. sulfomycini"]]},{"id":"NCBITaxon:1945593","l":"Oscillibacter sp.","na":7,"nb":1,"a":[["TED%3AAF-A0A316SYU4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A316SYU4-F1-model_v4_TED02"],["TED%3AAF-A0A350TIA9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A350TIA9-F1-model_v4_TED02"],["TED%3AAF-A0A3D1X7I7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D1X7I7-F1-model_v4_TED01"],["TED%3AAF-A0A3D5TDY6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D5TDY6-F1-model_v4_TED02"],["TED%3AAF-A0A3D2IC70-F1-model_v4_TED03","TED novel fold AF-A0A3D2IC70-F1-model_v4_TED03"],["TED%3AAF-A0A3D4G4P2-F1-model_v4_TED04","TED novel fold AF-A0A3D4G4P2-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1945593","Oscillibacter sp."]]},{"id":"NCBITaxon:2006849","l":"Xanthomonadales bacterium","na":7,"nb":1,"a":[["TED%3AAF-A0A2E6REI1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E6REI1-F1-model_v4_TED01"],["TED%3AAF-A0A2E6RHE7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E6RHE7-F1-model_v4_TED02"],["TED%3AAF-A0A354Z1F6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A354Z1F6-F1-model_v4_TED01"],["TED%3AAF-A0A3S0DIN1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S0DIN1-F1-model_v4_TED01"],["TED%3AAF-A0A431HZV9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A431HZV9-F1-model_v4_TED02"],["TED%3AAF-A0A3S0DMM0-F1-model_v4_TED01","TED novel fold AF-A0A3S0DMM0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2006849","Lysobacterales bacterium"]]},{"id":"NCBITaxon:2024858","l":"","na":7,"nb":1,"a":[["TED%3AAF-A0A2D9T9L6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9T9L6-F1-model_v4_TED01"],["TED%3AAF-A0A2E0T9R7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0T9R7-F1-model_v4_TED01"],["TED%3AAF-A0A891ZV95-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A891ZV95-F1-model_v4_TED01"],["TED%3AAF-A0A2D9SYS7-F1-model_v4_TED02","TED novel fold AF-A0A2D9SYS7-F1-model_v4_TED02"],["TED%3AAF-A0A2D9TFN8-F1-model_v4_TED02","TED novel fold AF-A0A2D9TFN8-F1-model_v4_TED02"],["TED%3AAF-A0A2E0TMV1-F1-model_v4_TED03","TED novel fold AF-A0A2E0TMV1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2024858","Sandaracinus sp."]]},{"id":"NCBITaxon:2026743","l":"Halieaceae bacterium","na":7,"nb":1,"a":[["TED%3AAF-A0A7V0ZK52-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7V0ZK52-F1-model_v4_TED04"],["TED%3AAF-A0A2E6YTW5-F1-model_v4_TED04","TED novel fold AF-A0A2E6YTW5-F1-model_v4_TED04"],["TED%3AAF-A0A356SGU4-F1-model_v4_TED01","TED novel fold AF-A0A356SGU4-F1-model_v4_TED01"],["TED%3AAF-A0A356VJ87-F1-model_v4_TED01","TED novel fold AF-A0A356VJ87-F1-model_v4_TED01"],["TED%3AAF-A0A3C7W294-F1-model_v4_TED01","TED novel fold AF-A0A3C7W294-F1-model_v4_TED01"],["TED%3AAF-A0A3D1YQW8-F1-model_v4_TED02","TED novel fold AF-A0A3D1YQW8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026743","Halieaceae bacterium"]]},{"id":"NCBITaxon:2026784","l":"Puniceicoccaceae bacterium","na":7,"nb":1,"a":[["TED%3AAF-A0A2E9IMP1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E9IMP1-F1-model_v4_TED02"],["TED%3AAF-A0A6N2CS77-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N2CS77-F1-model_v4_TED02"],["TED%3AAF-A0A2E9IV22-F1-model_v4_TED01","TED novel fold AF-A0A2E9IV22-F1-model_v4_TED01"],["TED%3AAF-A0A2E9IVC4-F1-model_v4_TED02","TED novel fold AF-A0A2E9IVC4-F1-model_v4_TED02"],["TED%3AAF-A0A6N2CJU8-F1-model_v4_TED01","TED novel fold AF-A0A6N2CJU8-F1-model_v4_TED01"],["TED%3AAF-A0A6N2CN60-F1-model_v4_TED02","TED novel fold AF-A0A6N2CN60-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026784","Puniceicoccaceae bacterium"]]},{"id":"NCBITaxon:2030806","l":"Burkholderiaceae bacterium","na":7,"nb":1,"a":[["TED%3AAF-A0A5C7NHS1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7NHS1-F1-model_v4_TED01"],["TED%3AAF-A0A5C7Q2S0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A5C7Q2S0-F1-model_v4_TED04"],["TED%3AAF-A0A7L5Y4H7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7L5Y4H7-F1-model_v4_TED02"],["TED%3AAF-A0A520VNE1-F1-model_v4_TED02","TED novel fold AF-A0A520VNE1-F1-model_v4_TED02"],["TED%3AAF-A0A522SAF0-F1-model_v4_TED01","TED novel fold AF-A0A522SAF0-F1-model_v4_TED01"],["TED%3AAF-A0A5C7NTX8-F1-model_v4_TED02","TED novel fold AF-A0A5C7NTX8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2030806","Burkholderiaceae bacterium"]]},{"id":"NCBITaxon:2030827","l":"Dependentiae bacterium","na":7,"nb":1,"a":[["TED%3AAF-A0A355KRB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A355KRB9-F1-model_v4_TED01"],["TED%3AAF-A0A3S0ECE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S0ECE6-F1-model_v4_TED01"],["TED%3AAF-A0A523RJZ0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A523RJZ0-F1-model_v4_TED02"],["TED%3AAF-A0A523RL65-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A523RL65-F1-model_v4_TED01"],["TED%3AAF-A0A355KSL6-F1-model_v4_TED02","TED novel fold AF-A0A355KSL6-F1-model_v4_TED02"],["TED%3AAF-A0A3S0BNC5-F1-model_v4_TED04","TED novel fold AF-A0A3S0BNC5-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2030827","Candidatus Babelota bacterium"]]},{"id":"NCBITaxon:2044939","l":"Clostridia bacterium","na":7,"nb":1,"a":[["TED%3AAF-A0A2V2CAW9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V2CAW9-F1-model_v4_TED01"],["TED%3AAF-A0A2V2CJ24-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V2CJ24-F1-model_v4_TED02"],["TED%3AAF-A0A2V2CKI1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V2CKI1-F1-model_v4_TED01"],["TED%3AAF-A0A2V2EGZ8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V2EGZ8-F1-model_v4_TED02"],["TED%3AAF-A0A6N7M119-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N7M119-F1-model_v4_TED01"],["TED%3AAF-A0A2V2CXP7-F1-model_v4_TED01","TED novel fold AF-A0A2V2CXP7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2044939","Clostridia bacterium"]]},{"id":"NCBITaxon:2044940","l":"Desulfobacterales bacterium","na":7,"nb":1,"a":[["TED%3AAF-A0A7C0YF25-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C0YF25-F1-model_v4_TED02"],["TED%3AAF-A0A7Y3ABX0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y3ABX0-F1-model_v4_TED01"],["TED%3AAF-A0A7Y3EMB5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y3EMB5-F1-model_v4_TED01"],["TED%3AAF-A0A7Y3EVT1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y3EVT1-F1-model_v4_TED01"],["TED%3AAF-A0A7Y3GG06-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y3GG06-F1-model_v4_TED01"],["TED%3AAF-A0A7V4T5K6-F1-model_v4_TED01","TED novel fold AF-A0A7V4T5K6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2044940","Desulfobacterales bacterium"]]},{"id":"NCBITaxon:2051","l":"Mobiluncus curtisii","na":1,"nb":7,"a":[["TED%3AAF-A0A7Y0UGC2-F1-model_v4_TED01","TED novel fold AF-A0A7Y0UGC2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2051","Mobiluncus curtisii"],["NCBITaxon%3A548479","Mobiluncus curtisii ATCC 43063"],["NCBITaxon%3A887326","Mobiluncus curtisii ATCC 51333"],["NCBITaxon%3A144177","Mobiluncus curtisii subsp. curtisii"],["NCBITaxon%3A585198","Mobiluncus curtisii subsp. curtisii ATCC 35241"],["NCBITaxon%3A144178","Mobiluncus holmesii"]]},{"id":"NCBITaxon:2052176","l":"Parachlamydiaceae bacterium","na":7,"nb":1,"a":[["TED%3AAF-A0A7W0FUG8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7W0FUG8-F1-model_v4_TED03"],["TED%3AAF-A0A7W1RG26-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W1RG26-F1-model_v4_TED01"],["TED%3AAF-A0A7D5MPV0-F1-model_v4_TED01","TED novel fold AF-A0A7D5MPV0-F1-model_v4_TED01"],["TED%3AAF-A0A7V9ZKP2-F1-model_v4_TED03","TED novel fold AF-A0A7V9ZKP2-F1-model_v4_TED03"],["TED%3AAF-A0A7V9ZN19-F1-model_v4_TED01","TED novel fold AF-A0A7V9ZN19-F1-model_v4_TED01"],["TED%3AAF-A0A7W0FW10-F1-model_v4_TED01","TED novel fold AF-A0A7W0FW10-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052176","Parachlamydiaceae bacterium"]]},{"id":"NCBITaxon:2053307","l":"Desulfobulbaceae bacterium","na":7,"nb":1,"a":[["TED%3AAF-A0A353NBC5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A353NBC5-F1-model_v4_TED01"],["TED%3AAF-A0A7V5R4I6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V5R4I6-F1-model_v4_TED01"],["TED%3AAF-A0A7W0ISJ1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W0ISJ1-F1-model_v4_TED01"],["TED%3AAF-A0A7X6YUV4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X6YUV4-F1-model_v4_TED01"],["TED%3AAF-A0A6L4ARB4-F1-model_v4_TED01","TED novel fold AF-A0A6L4ARB4-F1-model_v4_TED01"],["TED%3AAF-A0A7J5VQT5-F1-model_v4_TED01","TED novel fold AF-A0A7J5VQT5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053307","Desulfobulbaceae bacterium"]]},{"id":"NCBITaxon:2053570","l":"Latescibacteria bacterium","na":7,"nb":1,"a":[["TED%3AAF-A0A3B8MFX1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B8MFX1-F1-model_v4_TED01"],["TED%3AAF-A0A3D4B8J6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D4B8J6-F1-model_v4_TED01"],["TED%3AAF-A0A7C7R9T5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C7R9T5-F1-model_v4_TED01"],["TED%3AAF-A0A846P6H1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A846P6H1-F1-model_v4_TED03"],["TED%3AAF-A0A846P818-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A846P818-F1-model_v4_TED01"],["TED%3AAF-A0A836QNS3-F1-model_v4_TED03","TED novel fold AF-A0A836QNS3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2053570","Candidatus Latescibacterota bacterium"]]},{"id":"NCBITaxon:2053581","l":"Microscillaceae bacterium","na":7,"nb":1,"a":[["TED%3AAF-A0A349E0D3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A349E0D3-F1-model_v4_TED02"],["TED%3AAF-A0A349E0M1-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A349E0M1-F1-model_v4_TED04"],["TED%3AAF-A0A349E3R7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349E3R7-F1-model_v4_TED01"],["TED%3AAF-A0A349E508-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A349E508-F1-model_v4_TED02"],["TED%3AAF-A0A349DIC5-F1-model_v4_TED02","TED novel fold AF-A0A349DIC5-F1-model_v4_TED02"],["TED%3AAF-A0A349DXN9-F1-model_v4_TED02","TED novel fold AF-A0A349DXN9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053581","Microscillaceae bacterium"]]},{"id":"NCBITaxon:2100","l":"Mesomycoplasma hyorhinis","na":1,"nb":7,"a":[["Pfam%3APF06646","Extracytoplasmic thiamine-binding lipoprotein"]],"b":[["NCBITaxon%3A2100","Mesomycoplasma hyorhinis"],["NCBITaxon%3A634996","Mesomycoplasma hyorhinis ATCC 17981"],["NCBITaxon%3A634997","Mesomycoplasma hyorhinis DBS 1050"],["NCBITaxon%3A1129369","Mesomycoplasma hyorhinis GDL-1"],["NCBITaxon%3A872331","Mesomycoplasma hyorhinis HUB-1"],["NCBITaxon%3A936139","Mesomycoplasma hyorhinis MCLD"]]},{"id":"NCBITaxon:216773","l":"Corethron hystrix","na":7,"nb":1,"a":[["TED%3AAF-A0A7S1B7I7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1B7I7-F1-model_v4_TED01"],["TED%3AAF-A0A7S1BDF8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1BDF8-F1-model_v4_TED01"],["TED%3AAF-A0A7S1BL96-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1BL96-F1-model_v4_TED01"],["TED%3AAF-A0A7S1FKX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1FKX2-F1-model_v4_TED01"],["TED%3AAF-A0A7S1BFC1-F1-model_v4_TED01","TED novel fold AF-A0A7S1BFC1-F1-model_v4_TED01"],["TED%3AAF-A0A7S1BX15-F1-model_v4_TED02","TED novel fold AF-A0A7S1BX15-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A216773","Corethron hystrix"]]},{"id":"NCBITaxon:2184738","l":"Desulfurococcaceae archaeon","na":7,"nb":1,"a":[["TED%3AAF-A0A2V2XT73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V2XT73-F1-model_v4_TED01"],["TED%3AAF-A0A7J2VAN9-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7J2VAN9-F1-model_v4_TED04"],["TED%3AAF-A0A7J3QAX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J3QAX7-F1-model_v4_TED01"],["TED%3AAF-A0A832JV08-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A832JV08-F1-model_v4_TED02"],["TED%3AAF-A0A832NJC3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A832NJC3-F1-model_v4_TED01"],["TED%3AAF-A0A7J3EMI2-F1-model_v4_TED01","TED novel fold AF-A0A7J3EMI2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2184738","Desulfurococcaceae archaeon"]]},{"id":"NCBITaxon:218491","l":"Pectobacterium atrosepticum (strain SCRI 1043 / ATCC BAA-672)","na":7,"nb":1,"a":[["Pfam%3APF21384","CRISPR-associated nuclease/helicase Cas3, I-F/YPEST, Cas2 domain"],["Pfam%3APF21802","CRISPR-associated Cas3 subtype I-F/YPEST-like, C-terminal domain"],["Pfam%3APF09611","CRISPR-associated protein (Cas_Csy1)"],["Pfam%3APF09614","CRISPR-associated protein (Cas_Csy2)"],["Pfam%3APF09615","CRISPR-associated protein (Cas_Csy3)"],["Pfam%3APF09618","CRISPR-associated protein (Cas_Csy4)"]],"b":[["NCBITaxon%3A218491","Pectobacterium atrosepticum SCRI1043"]]},{"id":"NCBITaxon:2212474","l":"Kofleriaceae bacterium","na":7,"nb":1,"a":[["TED%3AAF-A0A7J5EWQ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J5EWQ9-F1-model_v4_TED01"],["TED%3AAF-A0A7Y6UC87-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y6UC87-F1-model_v4_TED01"],["TED%3AAF-A0A7Y6UCE7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y6UCE7-F1-model_v4_TED01"],["TED%3AAF-A0A7J5EW94-F1-model_v4_TED01","TED novel fold AF-A0A7J5EW94-F1-model_v4_TED01"],["TED%3AAF-A0A7J5EZ53-F1-model_v4_TED03","TED novel fold AF-A0A7J5EZ53-F1-model_v4_TED03"],["TED%3AAF-A0A7J5EZ80-F1-model_v4_TED01","TED novel fold AF-A0A7J5EZ80-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2212474","Kofleriaceae bacterium"]]},{"id":"NCBITaxon:242619","l":"Porphyromonas gingivalis (strain ATCC BAA-308 / W83)","na":7,"nb":1,"a":[["Pfam%3APF13290","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF04023","FeoA domain"],["Pfam%3APF17910","FeoB cytosolic helical domain"],["Pfam%3APF02421","Ferrous iron transport protein B"],["Pfam%3APF22492","FimA4 pilin C-terminal domain"],["Pfam%3APF07664","Ferrous iron transport protein B C terminus"]],"b":[["NCBITaxon%3A242619","Porphyromonas gingivalis W83"]]},{"id":"NCBITaxon:246432","l":"Staphylococcus equorum","na":1,"nb":7,"a":[["TED%3AAF-A0A1B1GAW5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1B1GAW5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A246432","Staphylococcus equorum"],["NCBITaxon%3A29383","Staphylococcus equorum subsp. equorum"],["NCBITaxon%3A1159488","Staphylococcus equorum subsp. equorum Mu2"],["NCBITaxon%3A201829","Staphylococcus equorum subsp. linens"],["NCBITaxon%3A1357294","Staphylococcus equorum UMC-CNS-924"],["NCBITaxon%3A214473","Staphylococcus nepalensis"]]},{"id":"NCBITaxon:2567896","l":"Polyangium aurulentum","na":7,"nb":1,"a":[["TED%3AAF-A0A4U1GYF2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U1GYF2-F1-model_v4_TED01"],["TED%3AAF-A0A4U1H499-F1-model_v4_TED01","TED novel fold AF-A0A4U1H499-F1-model_v4_TED01"],["TED%3AAF-A0A4U1H9S4-F1-model_v4_TED01","TED novel fold AF-A0A4U1H9S4-F1-model_v4_TED01"],["TED%3AAF-A0A4U1HCT2-F1-model_v4_TED02","TED novel fold AF-A0A4U1HCT2-F1-model_v4_TED02"],["TED%3AAF-A0A4U1HEA5-F1-model_v4_TED03","TED novel fold AF-A0A4U1HEA5-F1-model_v4_TED03"],["TED%3AAF-A0A4U1HVC8-F1-model_v4_TED01","TED novel fold AF-A0A4U1HVC8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2567896","Polyangium aurulentum"]]},{"id":"NCBITaxon:264203","l":"Zymomonas mobilis subsp. mobilis (strain ATCC 31821 / ZM4 / CP4)","na":7,"nb":1,"a":[["Pfam%3APF13590","Domain of unknown function (DUF4136)"],["Pfam%3APF08436","1-deoxy-D-xylulose 5-phosphate reductoisomerase C-terminal domain"],["Pfam%3APF13288","DXP reductoisomerase C-terminal domain"],["Pfam%3APF02670","1-deoxy-D-xylulose 5-phosphate reductoisomerase"],["PROSITE%3APS01157","Class A bacterial acid phosphatases signature"],["PROSITE%3APS01320","Uncharacterized protein family UPF0067 signature"]],"b":[["NCBITaxon%3A264203","Zymomonas mobilis subsp. mobilis ZM4 = ATCC 31821"]]},{"id":"NCBITaxon:2719382","l":"Candidatus Helarchaeota archaeon","na":7,"nb":1,"a":[["TED%3AAF-A0A850LTW9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A850LTW9-F1-model_v4_TED01"],["TED%3AAF-A0A850M489-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A850M489-F1-model_v4_TED01"],["TED%3AAF-A0A850ML52-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A850ML52-F1-model_v4_TED03"],["TED%3AAF-A0A850MRJ8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A850MRJ8-F1-model_v4_TED02"],["TED%3AAF-A0A850MAC1-F1-model_v4_TED02","TED novel fold AF-A0A850MAC1-F1-model_v4_TED02"],["TED%3AAF-A0A850MD70-F1-model_v4_TED02","TED novel fold AF-A0A850MD70-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2719382","Candidatus Helarchaeota archaeon"]]},{"id":"NCBITaxon:272623","l":"Lactococcus lactis subsp. lactis (strain IL1403)","na":7,"nb":1,"a":[["Pfam%3APF25935","LcnD-like, barrel-sandwich hybrid domain"],["Pfam%3APF27342","ComB N-terminal domain"],["Pfam%3APF06993","Protein of unknown function (DUF1304)"],["Pfam%3APF25887","LcnD-like, long helical bundle domain"],["Pfam%3APF13276","HTH-like domain"],["Pfam%3APF25940","LcnD-like, C-terminal domain"]],"b":[["NCBITaxon%3A272623","Lactococcus lactis subsp. lactis Il1403"]]},{"id":"NCBITaxon:2740538","l":"Ktedonobacteraceae bacterium","na":7,"nb":1,"a":[["TED%3AAF-A0A838DTJ1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A838DTJ1-F1-model_v4_TED01"],["TED%3AAF-A0A838J990-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A838J990-F1-model_v4_TED01"],["TED%3AAF-A0A838EHB8-F1-model_v4_TED01","TED novel fold AF-A0A838EHB8-F1-model_v4_TED01"],["TED%3AAF-A0A838EI64-F1-model_v4_TED02","TED novel fold AF-A0A838EI64-F1-model_v4_TED02"],["TED%3AAF-A0A838EV93-F1-model_v4_TED03","TED novel fold AF-A0A838EV93-F1-model_v4_TED03"],["TED%3AAF-A0A838J9Z7-F1-model_v4_TED01","TED novel fold AF-A0A838J9Z7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2740538","Ktedonobacteraceae bacterium"]]},{"id":"NCBITaxon:28147","l":"Salmonella enterica subsp. enterica serovar Oranienburg","na":1,"nb":7,"a":[["TED%3AAF-A0A5W8G185-F1-model_v4_TED01","TED novel fold AF-A0A5W8G185-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28147","Salmonella enterica subsp. enterica serovar Oranienburg"],["NCBITaxon%3A997333","Salmonella enterica subsp. enterica serovar Oranienburg str. 0250"],["NCBITaxon%3A997334","Salmonella enterica subsp. enterica serovar Oranienburg str. 701"],["NCBITaxon%3A1192574","Salmonella enterica subsp. enterica serovar Oranienburg str. 91006"],["NCBITaxon%3A1124960","Salmonella enterica subsp. enterica serovar Oranienburg str. 9239"],["NCBITaxon%3A1173918","Salmonella enterica subsp. enterica serovar Oranienburg str. CC250"]]},{"id":"NCBITaxon:28198","l":"Aliarcobacter cryaerophilus","na":1,"nb":7,"a":[["TED%3AAF-A0A2S9SPY1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S9SPY1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28197","Aliarcobacter butzleri"],["NCBITaxon%3A28198","Aliarcobacter cryaerophilus"],["NCBITaxon%3A1032070","Aliarcobacter cryaerophilus ATCC 43158"],["NCBITaxon%3A1032071","Aliarcobacter cryaerophilus D2610"],["NCBITaxon%3A2933790","Arcobacter cryaerophilus gv. crypticus"],["NCBITaxon%3A2027466","Arcobacter cryaerophilus gv. occultus"]]},{"id":"NCBITaxon:284592","l":"Debaryomyces hansenii (strain ATCC 36239 / CBS 767 / BCRC 21394 / JCM 1990 / NBRC 0083 / IGC 2968)","na":7,"nb":1,"a":[["Pfam%3APF25459","AIM3/BBC1 Cysteine proteinase-fold domain"],["Pfam%3APF12015","Bud3, N-terminal"],["Pfam%3APF12709","Fungal Transforming acidic coiled-coil (TACC) proteins"],["Pfam%3APF27585","HIR3 second domain"],["Pfam%3APF24438","IML1, N-terminal, fungi"],["Pfam%3APF08738","Gon7 family"]],"b":[["NCBITaxon%3A284592","Debaryomyces hansenii CBS767"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":1,"nb":7,"a":[["PROSITE%3APS01322","Phosphotriesterase family signature 1"]],"b":[["NCBITaxon%3A293","Brevundimonas diminuta"],["NCBITaxon%3A1255603","Brevundimonas diminuta 3F5N"],["NCBITaxon%3A1035191","Brevundimonas diminuta 470-4"],["NCBITaxon%3A751586","Brevundimonas diminuta ATCC 11568"],["NCBITaxon%3A588932","Brevundimonas naejangsanensis"],["NCBITaxon%3A1325724","Brevundimonas vancanneytii"]]},{"id":"NCBITaxon:295405","l":"Bacteroides fragilis (strain YCH46)","na":7,"nb":1,"a":[["Pfam%3APF23763","GLAA-B beta-barrel domain I"],["Pfam%3APF23764","GLAA-B beta-barrel domain II"],["Pfam%3APF14873","N-terminal domain of BNR-repeat neuraminidase"],["Pfam%3APF18318","Glutamine synthetase C-terminal domain"],["Pfam%3APF12437","Glutamine synthetase type III N terminal"],["Pfam%3APF04301","Pimeloyl-ACP methyl esterase BioG"]],"b":[["NCBITaxon%3A295405","Bacteroides fragilis YCH46"]]},{"id":"NCBITaxon:299583","l":"Francisella orientalis","na":1,"nb":7,"a":[["TED%3AAF-A0A5C1SE57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C1SE57-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A299583","Francisella orientalis"],["NCBITaxon%3A1390363","Francisella orientalis FNO12"],["NCBITaxon%3A1449091","Francisella orientalis FNO24"],["NCBITaxon%3A1088881","Francisella orientalis FSC770"],["NCBITaxon%3A1089432","Francisella orientalis FSC771"],["NCBITaxon%3A1356861","Francisella orientalis LADL 07-285A"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":1,"nb":7,"a":[["TED%3AAF-A0A679J1E9-F1-model_v4_TED01","TED novel fold AF-A0A679J1E9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A34073","Variovorax paradoxus"],["NCBITaxon%3A1150395","Variovorax paradoxus 4MFCol3.1"],["NCBITaxon%3A1246301","Variovorax paradoxus B4"],["NCBITaxon%3A595537","Variovorax paradoxus EPS"],["NCBITaxon%3A1321610","Variovorax paradoxus NBRC 15149"],["NCBITaxon%3A543728","Variovorax paradoxus S110"]]},{"id":"NCBITaxon:357276","l":"Phocaeicola dorei","na":1,"nb":7,"a":[["TED%3AAF-A0A5M5ZM66-F1-model_v4_TED01","TED novel fold AF-A0A5M5ZM66-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A357276","Phocaeicola dorei"],["NCBITaxon%3A556260","Phocaeicola dorei 5_1_36/D4"],["NCBITaxon%3A1263042","Phocaeicola dorei CAG:222"],["NCBITaxon%3A997875","Phocaeicola dorei CL02T00C15"],["NCBITaxon%3A997876","Phocaeicola dorei CL02T12C06"],["NCBITaxon%3A997877","Phocaeicola dorei CL03T12C01"]]},{"id":"NCBITaxon:362","l":"Agrobacterium radiobacter","na":1,"nb":7,"a":[["Pfam%3APF04909","Amidohydrolase"]],"b":[["NCBITaxon%3A362","Agrobacterium radiobacter"],["NCBITaxon%3A1336745","Agrobacterium radiobacter DSM 30147"],["NCBITaxon%3A361","Agrobacterium sp."],["NCBITaxon%3A358","Agrobacterium tumefaciens"],["NCBITaxon%3A359","Martinezella rhizogenes"],["NCBITaxon%3A204072","Ramlibacter henchirensis"]]},{"id":"NCBITaxon:38293","l":"Photobacterium damselae","na":1,"nb":7,"a":[["TED%3AAF-A0A2T3QCV4-F1-model_v4_TED01","TED novel fold AF-A0A2T3QCV4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A38293","Photobacterium damselae"],["NCBITaxon%3A85581","Photobacterium damselae subsp. damselae"],["NCBITaxon%3A675817","Photobacterium damselae subsp. damselae CIP 102761"],["NCBITaxon%3A38294","Photobacterium damselae subsp. piscicida"],["NCBITaxon%3A1200302","Photobacterium damselae subsp. piscicida DI21"],["NCBITaxon%3A406525","Photobacterium damselae subsp. piscicida PT99-018"]]},{"id":"NCBITaxon:40518","l":"Ruminococcus bromii","na":1,"nb":7,"a":[["TED%3AAF-A0A412UMQ9-F1-model_v4_TED02","TED novel fold AF-A0A412UMQ9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A40518","Ruminococcus bromii"],["NCBITaxon%3A657321","Ruminococcus bromii L2-63"],["NCBITaxon%3A1339598","Ruminococcus bromii TSDC10.1-1.1"],["NCBITaxon%3A1339599","Ruminococcus bromii TSDC10.2-1.1"],["NCBITaxon%3A1339600","Ruminococcus bromii TSDC17.2-1.1"],["NCBITaxon%3A1339601","Ruminococcus bromii TSDC17.2-1.2"]]},{"id":"NCBITaxon:408","l":"Methylorubrum extorquens","na":1,"nb":7,"a":[["Pfam%3APF04476","4-HFC-P synthase"]],"b":[["NCBITaxon%3A408","Methylorubrum extorquens"],["NCBITaxon%3A272630","Methylorubrum extorquens AM1"],["NCBITaxon%3A440085","Methylorubrum extorquens CM4"],["NCBITaxon%3A661410","Methylorubrum extorquens DM4"],["NCBITaxon%3A882800","Methylorubrum extorquens DSM 13060"],["NCBITaxon%3A419610","Methylorubrum extorquens PA1"]]},{"id":"NCBITaxon:410289","l":"Mycobacterium bovis (strain BCG / Pasteur 1173P2)","na":7,"nb":1,"a":[["Pfam%3APF27542","ArfC"],["Pfam%3APF21923","BON-like domain"],["Pfam%3APF18374","Enolase N-terminal domain-like"],["Pfam%3APF07174","Fibronectin-attachment protein (FAP) domain"],["Pfam%3APF15598","Immunity protein 61"],["Pfam%3APF01790","Prolipoprotein diacylglyceryl transferase"]],"b":[["NCBITaxon%3A410289","Mycobacterium tuberculosis variant bovis BCG str. Pasteur 1173P2"]]},{"id":"NCBITaxon:416870","l":"Lactococcus lactis subsp. cremoris (strain MG1363)","na":7,"nb":1,"a":[["Pfam%3APF21445","ADDB, N-terminal"],["Pfam%3APF02632","BioY family"],["Pfam%3APF06018","CodY GAF-like domain"],["Pfam%3APF27471","Energy-coupling factor transporter EcfA1 C-terminal domain"],["Pfam%3APF08222","CodY helix-turn-helix domain"],["Pfam%3APF11858","Domain of unknown function (DUF3378)"]],"b":[["NCBITaxon%3A416870","Lactococcus cremoris subsp. cremoris MG1363"]]},{"id":"NCBITaxon:486","l":"Neisseria lactamica","na":1,"nb":7,"a":[["Pfam%3APF05315","ICEA Protein"]],"b":[["NCBITaxon%3A486","Neisseria lactamica"],["NCBITaxon%3A489653","Neisseria lactamica 020-06"],["NCBITaxon%3A546265","Neisseria lactamica ATCC 23970"],["NCBITaxon%3A933280","Neisseria lactamica NS19"],["NCBITaxon%3A869214","Neisseria lactamica Y92-1009"],["NCBITaxon%3A28449","Neisseria subflava"]]},{"id":"NCBITaxon:53249","l":"","na":7,"nb":1,"a":[["Pfam%3APF25291","Lambda-carrageenase C-terminal domain"],["Pfam%3APF25290","Lambda-carrageenase middle domain"],["Pfam%3APF17396","Domain of unknown function (DUF1611_N) Rossmann-like domain"],["Pfam%3APF07755","Domain of unknown function (DUF1611_C) P-loop domain"],["Pfam%3APF25292","Lambda-carrageenase beta-propeller domain"],["TED%3AAF-A0A2D5T282-F1-model_v4_TED01","TED novel fold AF-A0A2D5T282-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A53249","Pseudoalteromonas sp."]]},{"id":"NCBITaxon:53985","l":"Phytophthora fragariae","na":7,"nb":1,"a":[["TED%3AAF-A0A6A3HTP9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A3HTP9-F1-model_v4_TED01"],["TED%3AAF-A0A6A3VAY2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A3VAY2-F1-model_v4_TED01"],["TED%3AAF-A0A6A3ZRY1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A3ZRY1-F1-model_v4_TED01"],["TED%3AAF-A0A6A3VYK4-F1-model_v4_TED02","TED novel fold AF-A0A6A3VYK4-F1-model_v4_TED02"],["TED%3AAF-A0A6A3XBI8-F1-model_v4_TED02","TED novel fold AF-A0A6A3XBI8-F1-model_v4_TED02"],["TED%3AAF-A0A6G0PL32-F1-model_v4_TED01","TED novel fold AF-A0A6G0PL32-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A53985","Phytophthora fragariae"]]},{"id":"NCBITaxon:68892","l":"Streptococcus infantis","na":1,"nb":7,"a":[["TED%3AAF-A0A0F2E1C7-F1-model_v4_TED04","TED novel fold AF-A0A0F2E1C7-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A68892","Streptococcus infantis"],["NCBITaxon%3A889204","Streptococcus infantis ATCC 700779"],["NCBITaxon%3A1005705","Streptococcus infantis SK1076"],["NCBITaxon%3A871237","Streptococcus infantis SK1302"],["NCBITaxon%3A1035189","Streptococcus infantis SK970"],["NCBITaxon%3A1159208","Streptococcus infantis SPAR10"]]},{"id":"NCBITaxon:884204","l":"Burkholderia pseudomallei (strain 1026b)","na":7,"nb":1,"a":[["Pfam%3APF18451","Contact-dependent growth inhibition CdiA C-terminal domain"],["Pfam%3APF07077","Virulence factor BPSS1818"],["Pfam%3APF11958","Surface attachment protein BPSS1860"],["Pfam%3APF28203","CDI System Immunity Component"],["Pfam%3APF13018","Extended Signal Peptide of Type V secretion system"],["Pfam%3APF05594","Haemagglutinin repeat"]],"b":[["NCBITaxon%3A884204","Burkholderia pseudomallei 1026b"]]},{"id":"NCBITaxon:892","l":"Desulfuromonas sp.","na":7,"nb":1,"a":[["TED%3AAF-A0A2J6J079-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J6J079-F1-model_v4_TED01"],["TED%3AAF-A0A2N6EEP5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2N6EEP5-F1-model_v4_TED03"],["TED%3AAF-A0A2N6F027-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N6F027-F1-model_v4_TED02"],["TED%3AAF-A0A2N6FEU0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N6FEU0-F1-model_v4_TED01"],["TED%3AAF-A0A2N6FKI0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N6FKI0-F1-model_v4_TED01"],["TED%3AAF-A0A2N6DYD3-F1-model_v4_TED01","TED novel fold AF-A0A2N6DYD3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A892","Desulfuromonas sp."]]},{"id":"NCBITaxon:1018","l":"Capnocytophaga ochracea","na":1,"nb":6,"a":[["TED%3AAF-A0A2X2T3Z4-F1-model_v4_TED01","TED novel fold AF-A0A2X2T3Z4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1018","Capnocytophaga ochracea"],["NCBITaxon%3A521097","Capnocytophaga ochracea DSM 7271"],["NCBITaxon%3A873517","Capnocytophaga ochracea F0287"],["NCBITaxon%3A1410029","Capnocytophaga ochracea HMP_JCVI_SC0240"],["NCBITaxon%3A1125719","Capnocytophaga ochracea str. Holt 25"],["NCBITaxon%3A1019","Capnocytophaga sputigena"]]},{"id":"NCBITaxon:103816","l":"Rhodococcus pyridinivorans","na":1,"nb":6,"a":[["TED%3AAF-A0A419ZLU8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A419ZLU8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A103816","Rhodococcus pyridinivorans"],["NCBITaxon%3A1114960","Rhodococcus pyridinivorans AK37"],["NCBITaxon%3A1303690","Rhodococcus pyridinivorans JCM 10940 = NBRC 100608"],["NCBITaxon%3A1441730","Rhodococcus pyridinivorans KG-16"],["NCBITaxon%3A1041510","Rhodococcus pyridinivorans NAM81"],["NCBITaxon%3A1435356","Rhodococcus pyridinivorans SB3094"]]},{"id":"NCBITaxon:112090","l":"Aphanomyces astaci","na":6,"nb":1,"a":[["TED%3AAF-A0A396ZSI1-F1-model_v4_TED01","TED novel fold AF-A0A396ZSI1-F1-model_v4_TED01"],["TED%3AAF-A0A397AN04-F1-model_v4_TED03","TED novel fold AF-A0A397AN04-F1-model_v4_TED03"],["TED%3AAF-A0A3R7E1X6-F1-model_v4_TED02","TED novel fold AF-A0A3R7E1X6-F1-model_v4_TED02"],["TED%3AAF-A0A418C3Y3-F1-model_v4_TED01","TED novel fold AF-A0A418C3Y3-F1-model_v4_TED01"],["TED%3AAF-A0A6A5AJC4-F1-model_v4_TED01","TED novel fold AF-A0A6A5AJC4-F1-model_v4_TED01"],["TED%3AAF-W4FQR6-F1-model_v4_TED01","TED novel fold AF-W4FQR6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A112090","Aphanomyces astaci"]]},{"id":"NCBITaxon:1193534","l":"uncultured Flavonifractor sp.","na":6,"nb":1,"a":[["TED%3AAF-A0A1C6GG29-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C6GG29-F1-model_v4_TED01"],["TED%3AAF-A0A1C6HJ74-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A1C6HJ74-F1-model_v4_TED05"],["TED%3AAF-A0A1C6DL99-F1-model_v4_TED01","TED novel fold AF-A0A1C6DL99-F1-model_v4_TED01"],["TED%3AAF-A0A1C6GAL2-F1-model_v4_TED02","TED novel fold AF-A0A1C6GAL2-F1-model_v4_TED02"],["TED%3AAF-A0A1C6GZ65-F1-model_v4_TED01","TED novel fold AF-A0A1C6GZ65-F1-model_v4_TED01"],["TED%3AAF-A0A1C6HXH7-F1-model_v4_TED02","TED novel fold AF-A0A1C6HXH7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1193534","uncultured Flavonifractor sp."]]},{"id":"NCBITaxon:1286","l":"Staphylococcus simulans","na":1,"nb":6,"a":[["Pfam%3APF25533","Lysostaphin, N-terminal domain"]],"b":[["NCBITaxon%3A1285","Staphylococcus intermedius"],["NCBITaxon%3A1286","Staphylococcus simulans"],["NCBITaxon%3A883166","Staphylococcus simulans ACS-120-V-Sch1"],["NCBITaxon%3A1287","Staphylococcus simulans bv. staphylolyticus"],["NCBITaxon%3A1405498","Staphylococcus simulans UMC-CNS-990"],["NCBITaxon%3A29387","Staphylococcus sp."]]},{"id":"NCBITaxon:1288","l":"Staphylococcus xylosus","na":1,"nb":6,"a":[["Pfam%3APF02603","HPr Serine kinase N terminus"]],"b":[["NCBITaxon%3A246432","Staphylococcus equorum"],["NCBITaxon%3A1293","Staphylococcus gallinarum"],["NCBITaxon%3A29387","Staphylococcus sp."],["NCBITaxon%3A1288","Staphylococcus xylosus"],["NCBITaxon%3A1353979","Staphylococcus xylosus DMB3-Bh1"],["NCBITaxon%3A1262650","Staphylococcus xylosus NJ"]]},{"id":"NCBITaxon:137591","l":"Weissella cibaria","na":1,"nb":6,"a":[["TED%3AAF-A0A0D1LFQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D1LFQ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A137591","Weissella cibaria"],["NCBITaxon%3A1255594","Weissella cibaria 3385"],["NCBITaxon%3A1255595","Weissella cibaria 3386"],["NCBITaxon%3A1357418","Weissella cibaria F16_1"],["NCBITaxon%3A911104","Weissella cibaria KACC 11862"],["NCBITaxon%3A1583","Weissella confusa"]]},{"id":"NCBITaxon:1409","l":"Bacillus sp. (in: firmicutes)","na":6,"nb":1,"a":[["Pfam%3APF02903","Alpha amylase, N-terminal ig-like domain"],["Pfam%3APF12123","PlyG Cell wall binding domain"],["Pfam%3APF24517","Carbohydrate-binding module family 96"],["Pfam%3APF07827","KNTase C-terminal domain"],["TED%3AAF-A0A3D0E1V5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D0E1V5-F1-model_v4_TED01"],["TED%3AAF-A0A3D5U4K3-F1-model_v4_TED01","TED novel fold AF-A0A3D5U4K3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1409","Bacillus sp. (in: firmicutes)"]]},{"id":"NCBITaxon:1509","l":"Clostridium sporogenes","na":1,"nb":6,"a":[["Pfam%3APF06050","2-hydroxyglutaryl-CoA dehydratase, D-component"]],"b":[["NCBITaxon%3A1491","Clostridium botulinum"],["NCBITaxon%3A1506","Clostridium sp."],["NCBITaxon%3A1509","Clostridium sporogenes"],["NCBITaxon%3A471871","Clostridium sporogenes ATCC 15579"],["NCBITaxon%3A1075091","Clostridium sporogenes PA 3679"],["NCBITaxon%3A378516","Clostridium sporogenes subsp. tusciae"]]},{"id":"NCBITaxon:1710","l":"Cellulosimicrobium cellulans","na":1,"nb":6,"a":[["Pfam%3APF16483","Beta-1,3-glucanase"]],"b":[["NCBITaxon%3A1710","Cellulosimicrobium cellulans"],["NCBITaxon%3A1350482","Cellulosimicrobium cellulans F16"],["NCBITaxon%3A903523","Cellulosimicrobium cellulans J1"],["NCBITaxon%3A935838","Cellulosimicrobium cellulans J34"],["NCBITaxon%3A935839","Cellulosimicrobium cellulans J36"],["NCBITaxon%3A1242247","Cellulosimicrobium cellulans LMG 16121"]]},{"id":"NCBITaxon:1754192","l":"Anaeromyces robustus","na":6,"nb":1,"a":[["TED%3AAF-A0A1Y1WPZ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y1WPZ9-F1-model_v4_TED01"],["TED%3AAF-A0A1Y1X1Y7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Y1X1Y7-F1-model_v4_TED02"],["TED%3AAF-A0A1Y1XPC1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Y1XPC1-F1-model_v4_TED02"],["TED%3AAF-A0A1Y1VRN1-F1-model_v4_TED04","TED novel fold AF-A0A1Y1VRN1-F1-model_v4_TED04"],["TED%3AAF-A0A1Y1XNI2-F1-model_v4_TED01","TED novel fold AF-A0A1Y1XNI2-F1-model_v4_TED01"],["TED%3AAF-A0A1Y1XR04-F1-model_v4_TED01","TED novel fold AF-A0A1Y1XR04-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1754192","Anaeromyces robustus"]]},{"id":"NCBITaxon:1861","l":"Geodermatophilus obscurus","na":1,"nb":6,"a":[["TED%3AAF-A0A1M7SWB5-F1-model_v4_TED02","TED novel fold AF-A0A1M7SWB5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1296565","Geodermatophilus amargosae"],["NCBITaxon%3A1523247","Geodermatophilus dictyosporus"],["NCBITaxon%3A1861","Geodermatophilus obscurus"],["NCBITaxon%3A526225","Geodermatophilus obscurus DSM 43160"],["NCBITaxon%3A1523248","Geodermatophilus obscurus subsp. utahensis"],["NCBITaxon%3A97398","Streptomyces abikoensis"]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":1,"nb":6,"a":[["Pfam%3APF26312","Domain of unknown function (DUF8083)"]],"b":[["NCBITaxon%3A1906","Streptomyces fradiae"],["NCBITaxon%3A1319510","Streptomyces fradiae ATCC 10745 = DSM 40063"],["NCBITaxon%3A285449","Streptomyces fradiae subsp. acinicolor"],["NCBITaxon%3A2871172","Streptomyces fradiae V-1-3"],["NCBITaxon%3A66894","Streptomyces griseobrunneus"],["NCBITaxon%3A1909","Streptomyces griseolus"]]},{"id":"NCBITaxon:1908690","l":"Fimbriiglobus ruber","na":6,"nb":1,"a":[["TED%3AAF-A0A225DH96-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A225DH96-F1-model_v4_TED01"],["TED%3AAF-A0A225DLF8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A225DLF8-F1-model_v4_TED03"],["TED%3AAF-A0A225E5P1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A225E5P1-F1-model_v4_TED01"],["TED%3AAF-A0A225CYI1-F1-model_v4_TED02","TED novel fold AF-A0A225CYI1-F1-model_v4_TED02"],["TED%3AAF-A0A225CZP0-F1-model_v4_TED02","TED novel fold AF-A0A225CZP0-F1-model_v4_TED02"],["TED%3AAF-A0A225DEG1-F1-model_v4_TED02","TED novel fold AF-A0A225DEG1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1908690","Fimbriiglobus ruber"]]},{"id":"NCBITaxon:2026754","l":"Legionellales bacterium","na":6,"nb":1,"a":[["TED%3AAF-A0A2E6W6A1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E6W6A1-F1-model_v4_TED01"],["TED%3AAF-A0A2E0PUP6-F1-model_v4_TED01","TED novel fold AF-A0A2E0PUP6-F1-model_v4_TED01"],["TED%3AAF-A0A2E3MFC7-F1-model_v4_TED01","TED novel fold AF-A0A2E3MFC7-F1-model_v4_TED01"],["TED%3AAF-A0A2E6W7Z1-F1-model_v4_TED01","TED novel fold AF-A0A2E6W7Z1-F1-model_v4_TED01"],["TED%3AAF-A0A2E6W9H5-F1-model_v4_TED02","TED novel fold AF-A0A2E6W9H5-F1-model_v4_TED02"],["TED%3AAF-A0A2E6W9H5-F1-model_v4_TED03","TED novel fold AF-A0A2E6W9H5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2026754","Legionellales bacterium"]]},{"id":"NCBITaxon:2026788","l":"Rickettsiales bacterium","na":6,"nb":1,"a":[["TED%3AAF-A0A2D6ZXG0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D6ZXG0-F1-model_v4_TED01"],["TED%3AAF-A0A2D9KP70-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9KP70-F1-model_v4_TED01"],["TED%3AAF-A0A2E9XWG5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E9XWG5-F1-model_v4_TED01"],["TED%3AAF-A0A2E0EMB5-F1-model_v4_TED01","TED novel fold AF-A0A2E0EMB5-F1-model_v4_TED01"],["TED%3AAF-A0A2F0A232-F1-model_v4_TED02","TED novel fold AF-A0A2F0A232-F1-model_v4_TED02"],["TED%3AAF-A0A4V1SXV8-F1-model_v4_TED01","TED novel fold AF-A0A4V1SXV8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026788","Rickettsiales bacterium"]]},{"id":"NCBITaxon:204039","l":"Dickeya dianthicola","na":1,"nb":6,"a":[["TED%3AAF-A0A385Y0K7-F1-model_v4_TED02","TED novel fold AF-A0A385Y0K7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A204039","Dickeya dianthicola"],["NCBITaxon%3A1226343","Dickeya dianthicola GBBC 2039"],["NCBITaxon%3A1225780","Dickeya dianthicola IPO 980"],["NCBITaxon%3A1223570","Dickeya dianthicola NCPPB 3534"],["NCBITaxon%3A1223568","Dickeya dianthicola NCPPB 453"],["NCBITaxon%3A1306405","Dickeya dianthicola RNS04.9"]]},{"id":"NCBITaxon:2044936","l":"Bacteroidia bacterium","na":6,"nb":1,"a":[["TED%3AAF-A0A2G6GSB3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G6GSB3-F1-model_v4_TED01"],["TED%3AAF-A0A524QHG3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A524QHG3-F1-model_v4_TED03"],["TED%3AAF-A0A7C4Y6F0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C4Y6F0-F1-model_v4_TED02"],["TED%3AAF-A0A7Y1UBX9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y1UBX9-F1-model_v4_TED01"],["TED%3AAF-A0A7V3UD23-F1-model_v4_TED02","TED novel fold AF-A0A7V3UD23-F1-model_v4_TED02"],["TED%3AAF-A0A7Y3MKL4-F1-model_v4_TED05","TED novel fold AF-A0A7Y3MKL4-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2044936","Bacteroidia bacterium"]]},{"id":"NCBITaxon:2049044","l":"Erysipelotrichaceae bacterium","na":6,"nb":1,"a":[["TED%3AAF-A0A7C6CWM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C6CWM3-F1-model_v4_TED01"],["TED%3AAF-A0A7X8CHC5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X8CHC5-F1-model_v4_TED01"],["TED%3AAF-A0A3B9FXN9-F1-model_v4_TED02","TED novel fold AF-A0A3B9FXN9-F1-model_v4_TED02"],["TED%3AAF-A0A3C1EA06-F1-model_v4_TED03","TED novel fold AF-A0A3C1EA06-F1-model_v4_TED03"],["TED%3AAF-A0A7X8CHE4-F1-model_v4_TED02","TED novel fold AF-A0A7X8CHE4-F1-model_v4_TED02"],["TED%3AAF-A0A847LM69-F1-model_v4_TED02","TED novel fold AF-A0A847LM69-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2049044","Erysipelotrichaceae bacterium"]]},{"id":"NCBITaxon:2053569","l":"Lentisphaeria bacterium","na":6,"nb":1,"a":[["TED%3AAF-A0A348XF45-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A348XF45-F1-model_v4_TED02"],["TED%3AAF-A0A3D1V0D5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D1V0D5-F1-model_v4_TED02"],["TED%3AAF-A0A3D3JJQ2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D3JJQ2-F1-model_v4_TED02"],["TED%3AAF-A0A348XHN0-F1-model_v4_TED04","TED novel fold AF-A0A348XHN0-F1-model_v4_TED04"],["TED%3AAF-A0A348XHP1-F1-model_v4_TED01","TED novel fold AF-A0A348XHP1-F1-model_v4_TED01"],["TED%3AAF-A0A3D1UX69-F1-model_v4_TED04","TED novel fold AF-A0A3D1UX69-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2053569","Lentisphaeria bacterium"]]},{"id":"NCBITaxon:2053586","l":"Riflebacteria bacterium","na":6,"nb":1,"a":[["TED%3AAF-A0A847HK49-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A847HK49-F1-model_v4_TED02"],["TED%3AAF-A0A3B9HQS8-F1-model_v4_TED01","TED novel fold AF-A0A3B9HQS8-F1-model_v4_TED01"],["TED%3AAF-A0A3B9HWC3-F1-model_v4_TED02","TED novel fold AF-A0A3B9HWC3-F1-model_v4_TED02"],["TED%3AAF-A0A847LET6-F1-model_v4_TED03","TED novel fold AF-A0A847LET6-F1-model_v4_TED03"],["TED%3AAF-A0A847LK56-F1-model_v4_TED03","TED novel fold AF-A0A847LK56-F1-model_v4_TED03"],["TED%3AAF-A0A847LN44-F1-model_v4_TED02","TED novel fold AF-A0A847LN44-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053586","Candidatus Rifleibacteriota bacterium"]]},{"id":"NCBITaxon:2073117","l":"Anaerolineales bacterium","na":6,"nb":1,"a":[["TED%3AAF-A0A523TYN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A523TYN6-F1-model_v4_TED01"],["TED%3AAF-A0A524J9D6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A524J9D6-F1-model_v4_TED01"],["TED%3AAF-A0A7Y5BY07-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7Y5BY07-F1-model_v4_TED03"],["TED%3AAF-A0A7Y5BZ94-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y5BZ94-F1-model_v4_TED01"],["TED%3AAF-A0A363U7G5-F1-model_v4_TED06","TED novel fold AF-A0A363U7G5-F1-model_v4_TED06"],["TED%3AAF-A0A524PQP3-F1-model_v4_TED01","TED novel fold AF-A0A524PQP3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2073117","Anaerolineales bacterium"]]},{"id":"NCBITaxon:216594","l":"Mycobacterium marinum (strain ATCC BAA-535 / M)","na":6,"nb":1,"a":[["Pfam%3APF18625","ESX-1 secreted protein B PE domain"],["Pfam%3APF21856","ESX-1 secretion-associated protein EspB, PPE domain"],["Pfam%3APF10862","FcoT-like thioesterase domain"],["Pfam%3APF19053","EccD-like transmembrane domain"],["Pfam%3APF11203","Putative type VII ESX secretion system translocon, EccE"],["Pfam%3APF21545","T7SS, ESX-1 secretion system protein EccA1, N-terminal domain"]],"b":[["NCBITaxon%3A216594","Mycobacterium marinum M"]]},{"id":"NCBITaxon:2201154","l":"Chthoniobacterales bacterium","na":6,"nb":1,"a":[["TED%3AAF-A0A7V2CW09-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V2CW09-F1-model_v4_TED01"],["TED%3AAF-A0A7W1BCB1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W1BCB1-F1-model_v4_TED01"],["TED%3AAF-A0A7V9EQG7-F1-model_v4_TED02","TED novel fold AF-A0A7V9EQG7-F1-model_v4_TED02"],["TED%3AAF-A0A7W1CSQ9-F1-model_v4_TED01","TED novel fold AF-A0A7W1CSQ9-F1-model_v4_TED01"],["TED%3AAF-A0A7W1RNV9-F1-model_v4_TED02","TED novel fold AF-A0A7W1RNV9-F1-model_v4_TED02"],["TED%3AAF-A0A838DC49-F1-model_v4_TED01","TED novel fold AF-A0A838DC49-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2201154","Chthoniobacterales bacterium"]]},{"id":"NCBITaxon:2212468","l":"Bryobacteraceae bacterium","na":6,"nb":1,"a":[["TED%3AAF-A0A7C2E9E6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C2E9E6-F1-model_v4_TED02"],["TED%3AAF-A0A7Y5GEH2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y5GEH2-F1-model_v4_TED01"],["TED%3AAF-A0A7C2J7J0-F1-model_v4_TED01","TED novel fold AF-A0A7C2J7J0-F1-model_v4_TED01"],["TED%3AAF-A0A7C4FZF5-F1-model_v4_TED01","TED novel fold AF-A0A7C4FZF5-F1-model_v4_TED01"],["TED%3AAF-A0A7Y5LER7-F1-model_v4_TED01","TED novel fold AF-A0A7Y5LER7-F1-model_v4_TED01"],["TED%3AAF-A0A7Y8LIJ6-F1-model_v4_TED02","TED novel fold AF-A0A7Y8LIJ6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2212468","Bryobacteraceae bacterium"]]},{"id":"NCBITaxon:225991","l":"Comamonas aquatica","na":1,"nb":6,"a":[["TED%3AAF-A0A8B0TG78-F1-model_v4_TED02","TED novel fold AF-A0A8B0TG78-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A225991","Comamonas aquatica"],["NCBITaxon%3A1457173","Comamonas aquatica DA1877"],["NCBITaxon%3A1219031","Comamonas aquatica NBRC 14918"],["NCBITaxon%3A2708318","Comamonas aquatica subsp. aquatica"],["NCBITaxon%3A2708319","Comamonas aquatica subsp. rana"],["NCBITaxon%3A32013","Comamonas terrigena"]]},{"id":"NCBITaxon:2268204","l":"Thermoplasmatales archaeon","na":6,"nb":1,"a":[["TED%3AAF-A0A7C2AKF2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7C2AKF2-F1-model_v4_TED03"],["TED%3AAF-A0A7J2S4D8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7J2S4D8-F1-model_v4_TED03"],["TED%3AAF-A0A7J3TK18-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7J3TK18-F1-model_v4_TED02"],["TED%3AAF-A0A7C1E5G8-F1-model_v4_TED01","TED novel fold AF-A0A7C1E5G8-F1-model_v4_TED01"],["TED%3AAF-A0A842X889-F1-model_v4_TED01","TED novel fold AF-A0A842X889-F1-model_v4_TED01"],["TED%3AAF-A0A842X9F6-F1-model_v4_TED01","TED novel fold AF-A0A842X9F6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2268204","Thermoplasmatales archaeon"]]},{"id":"NCBITaxon:2484252","l":"Myxococcaceae bacterium","na":6,"nb":1,"a":[["TED%3AAF-A0A3N5HXW8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N5HXW8-F1-model_v4_TED01"],["TED%3AAF-A0A4Q5Y5E2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q5Y5E2-F1-model_v4_TED01"],["TED%3AAF-A0A4V2ATR8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4V2ATR8-F1-model_v4_TED01"],["TED%3AAF-A0A521TJ55-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521TJ55-F1-model_v4_TED01"],["TED%3AAF-A0A4Q6A6H4-F1-model_v4_TED01","TED novel fold AF-A0A4Q6A6H4-F1-model_v4_TED01"],["TED%3AAF-A0A521UGL1-F1-model_v4_TED01","TED novel fold AF-A0A521UGL1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2484252","Myxococcaceae bacterium"]]},{"id":"NCBITaxon:249188","l":"Haemophilus pittmaniae","na":1,"nb":6,"a":[["TED%3AAF-A0A377IVF0-F1-model_v4_TED01","TED novel fold AF-A0A377IVF0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A249188","Haemophilus pittmaniae"],["NCBITaxon%3A1035188","Haemophilus pittmaniae HK 85"],["NCBITaxon%3A1409957","Haemophilus pittmaniae HMP_JCVI_SC0163"],["NCBITaxon%3A1409958","Haemophilus pittmaniae HMP_JCVI_SC0173"],["NCBITaxon%3A1409959","Haemophilus pittmaniae HMP_JCVI_SC0183"],["NCBITaxon%3A1409960","Haemophilus pittmaniae HMP_JCVI_SC0190"]]},{"id":"NCBITaxon:2562705","l":"Akkermansiaceae bacterium","na":6,"nb":1,"a":[["TED%3AAF-A0A7Y1UEU6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7Y1UEU6-F1-model_v4_TED04"],["TED%3AAF-A0A7Y2U929-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y2U929-F1-model_v4_TED01"],["TED%3AAF-A0A7Y1UGE4-F1-model_v4_TED03","TED novel fold AF-A0A7Y1UGE4-F1-model_v4_TED03"],["TED%3AAF-A0A7Y1Y0C9-F1-model_v4_TED01","TED novel fold AF-A0A7Y1Y0C9-F1-model_v4_TED01"],["TED%3AAF-A0A7Y2U769-F1-model_v4_TED04","TED novel fold AF-A0A7Y2U769-F1-model_v4_TED04"],["TED%3AAF-A0A8A7W8C6-F1-model_v4_TED02","TED novel fold AF-A0A8A7W8C6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2562705","Akkermansiaceae bacterium"]]},{"id":"NCBITaxon:257309","l":"Corynebacterium diphtheriae (strain ATCC 700971 / NCTC 13129 / Biotype gravis)","na":6,"nb":1,"a":[["Pfam%3APF17893","CRISPR-associated endonuclease Cas9 beta-hairpin domain"],["Pfam%3APF18525","Cas9 C-terminal domain"],["Pfam%3APF17894","Topo homolgy domain in CRISPR-associated endonuclease Cas9"],["Pfam%3APF18357","Diphteria toxin repressor SH3 domain"],["Pfam%3APF02742","Iron dependent repressor, metal binding and dimerisation domain"],["Pfam%3APF01325","Iron dependent repressor, N-terminal DNA binding domain"]],"b":[["NCBITaxon%3A257309","Corynebacterium diphtheriae NCTC 13129"]]},{"id":"NCBITaxon:2712867","l":"Pseudenhygromyxa sp. WMMC2535","na":6,"nb":1,"a":[["TED%3AAF-A0A850GFL1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A850GFL1-F1-model_v4_TED02"],["TED%3AAF-A0A850G649-F1-model_v4_TED01","TED novel fold AF-A0A850G649-F1-model_v4_TED01"],["TED%3AAF-A0A850GCH1-F1-model_v4_TED03","TED novel fold AF-A0A850GCH1-F1-model_v4_TED03"],["TED%3AAF-A0A850GIF6-F1-model_v4_TED02","TED novel fold AF-A0A850GIF6-F1-model_v4_TED02"],["TED%3AAF-A0A850GMI1-F1-model_v4_TED01","TED novel fold AF-A0A850GMI1-F1-model_v4_TED01"],["TED%3AAF-A0A850GPM5-F1-model_v4_TED02","TED novel fold AF-A0A850GPM5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2712867","Pseudenhygromyxa sp. WMMC2535"]]},{"id":"NCBITaxon:2762","l":"Cyanophora paradoxa","na":6,"nb":1,"a":[["Pfam%3APF06799","Conserved in the green lineage and diatoms 27"],["Pfam%3APF06868","Protein of unknown function (DUF1257)"],["Pfam%3APF10693","Protein of unknown function (DUF2499)"],["Pfam%3APF10726","Protein of function (DUF2518)"],["Pfam%3APF04481","Protein of unknown function (DUF561)"],["Pfam%3APF05421","Protein of unknown function (DUF751)"]],"b":[["NCBITaxon%3A2762","Cyanophora paradoxa"]]},{"id":"NCBITaxon:284813","l":"Encephalitozoon cuniculi (strain GB-M1)","na":6,"nb":1,"a":[["Pfam%3APF17027","Histone-fold protein"],["Pfam%3APF10455","Bin/amphiphysin/Rvs domain for vesicular trafficking"],["Pfam%3APF07753","Protein of unknown function (DUF1609)"],["Pfam%3APF09591","Protein of unknown function (DUF2463)"],["Pfam%3APF12376","Protein of unknown function (DUF3654)"],["TED%3AAF-Q8SVN2-F1-model_v4_TED01","TED novel fold AF-Q8SVN2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A284813","Encephalitozoon cuniculi GB-M1"]]},{"id":"NCBITaxon:2880","l":"Ectocarpus siliculosus","na":6,"nb":1,"a":[["TED%3AAF-D7G442-F1-model_v4_TED01","TED highly-symmetric fold AF-D7G442-F1-model_v4_TED01"],["TED%3AAF-D8LQ32-F1-model_v4_TED02","TED highly-symmetric fold AF-D8LQ32-F1-model_v4_TED02"],["TED%3AAF-D7G8D2-F1-model_v4_TED01","TED novel fold AF-D7G8D2-F1-model_v4_TED01"],["TED%3AAF-D7G8R3-F1-model_v4_TED02","TED novel fold AF-D7G8R3-F1-model_v4_TED02"],["TED%3AAF-D8LC48-F1-model_v4_TED02","TED novel fold AF-D8LC48-F1-model_v4_TED02"],["TED%3AAF-D8LTU7-F1-model_v4_TED03","TED novel fold AF-D8LTU7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2880","Ectocarpus siliculosus"]]},{"id":"NCBITaxon:29339","l":"Bacillus thuringiensis serovar kurstaki","na":1,"nb":6,"a":[["Pfam%3APF07029","CryBP1 protein"]],"b":[["NCBITaxon%3A714359","Bacillus thuringiensis BMB171"],["NCBITaxon%3A29339","Bacillus thuringiensis serovar kurstaki"],["NCBITaxon%3A1279365","Bacillus thuringiensis serovar kurstaki str. HD73"],["NCBITaxon%3A1261129","Bacillus thuringiensis serovar kurstaki str. HD-1"],["NCBITaxon%3A527023","Bacillus thuringiensis serovar kurstaki str. T03a001"],["NCBITaxon%3A570416","Bacillus thuringiensis serovar kurstaki str. YBT-1520"]]},{"id":"NCBITaxon:300269","l":"Shigella sonnei (strain Ss046)","na":6,"nb":1,"a":[["Pfam%3APF17868","AAA lid domain"],["Pfam%3APF12592","ATPase, RavA, C-terminal"],["Pfam%3APF20030","MoxR domain in the MoxR-vWA-beta-propeller ternary systems"],["Pfam%3APF10729","Cell division activator CedA"],["Pfam%3APF20265","ATPase, RavA, LARA domain"],["Pfam%3APF06872","EspG protein"]],"b":[["NCBITaxon%3A300269","Shigella sonnei Ss046"]]},{"id":"NCBITaxon:32049","l":"Picosynechococcus sp. PCC 7002","na":6,"nb":1,"a":[["Pfam%3APF09367","CpeS-like protein"],["Pfam%3APF06206","CpeT/CpcT family (DUF1001)"],["Pfam%3APF12965","Domain of unknown function (DUF3854)"],["Pfam%3APF19928","Domain of unknown function (DUF6391)"],["Pfam%3APF09366","Protein of unknown function (DUF1997)"],["Pfam%3APF14870","Photosynthesis system II assembly factor YCF48"]],"b":[["NCBITaxon%3A32049","Picosynechococcus sp. PCC 7002"]]},{"id":"NCBITaxon:331111","l":"Escherichia coli O139:H28 (strain E24377A / ETEC)","na":6,"nb":1,"a":[["Pfam%3APF04336","Acyl carrier protein phosphodiesterase"],["Pfam%3APF15611","EH_Signature domain"],["Pfam%3APF24860","FdhE, C-terminal domain"],["Pfam%3APF24859","FdhE, central domain"],["Pfam%3APF04216","FdhE, N-terminal"],["Pfam%3APF03974","Ecotin"]],"b":[["NCBITaxon%3A331111","Escherichia coli O139:H28 str. E24377A"]]},{"id":"NCBITaxon:337","l":"Burkholderia glumae","na":1,"nb":6,"a":[["TED%3AAF-A0A8A8MA15-F1-model_v4_TED01","TED novel fold AF-A0A8A8MA15-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A337","Burkholderia glumae"],["NCBITaxon%3A1248414","Burkholderia glumae 3252-8"],["NCBITaxon%3A1417989","Burkholderia glumae 336gr-1"],["NCBITaxon%3A1176514","Burkholderia glumae AU6208"],["NCBITaxon%3A626418","Burkholderia glumae BGR1"],["NCBITaxon%3A1176492","Burkholderia glumae LMG 2196 = ATCC 33617"]]},{"id":"NCBITaxon:33905","l":"Bifidobacterium thermophilum","na":1,"nb":6,"a":[["TED%3AAF-A0A2N3QE79-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3QE79-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A650367","Bifidobacterium sp. JCM 7027"],["NCBITaxon%3A650368","Bifidobacterium sp. JCM 7028"],["NCBITaxon%3A33905","Bifidobacterium thermophilum"],["NCBITaxon%3A1437596","Bifidobacterium thermophilum DSM 20210"],["NCBITaxon%3A1410648","Bifidobacterium thermophilum DSM 20212"],["NCBITaxon%3A1254439","Bifidobacterium thermophilum RBL67"]]},{"id":"NCBITaxon:34062","l":"Faucicola osloensis","na":1,"nb":6,"a":[["Pfam%3APF14130","Cap4, dsDNA endonuclease domain"]],"b":[["NCBITaxon%3A34062","Faucicola osloensis"],["NCBITaxon%3A478","Moraxella nonliquefaciens"],["NCBITaxon%3A1138309","Moraxella osloensis ARD 1"],["NCBITaxon%3A1138312","Moraxella osloensis ARD 11"],["NCBITaxon%3A1138310","Moraxella osloensis ARD 2"],["NCBITaxon%3A1138311","Moraxella osloensis ARD 3"]]},{"id":"NCBITaxon:353153","l":"Trypanosoma cruzi (strain CL Brener)","na":6,"nb":1,"a":[["Pfam%3APF03738","Glutathionylspermidine synthase preATP-grasp"],["TED%3AAF-Q4D5Q0-F1-model_v4_TED01","TED highly-symmetric fold AF-Q4D5Q0-F1-model_v4_TED01"],["TED%3AAF-Q4CQE1-F1-model_v4_TED01","TED novel fold AF-Q4CQE1-F1-model_v4_TED01"],["TED%3AAF-Q4DRS0-F1-model_v4_TED01","TED novel fold AF-Q4DRS0-F1-model_v4_TED01"],["TED%3AAF-Q4DY69-F1-model_v4_TED01","TED novel fold AF-Q4DY69-F1-model_v4_TED01"],["TED%3AAF-Q4E0W9-F1-model_v4_TED01","TED novel fold AF-Q4E0W9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A353153","Trypanosoma cruzi strain CL Brener"]]},{"id":"NCBITaxon:361100","l":"Bacillus cereus (strain Q1)","na":6,"nb":1,"a":[["Pfam%3APF13555","P-loop containing region of AAA domain"],["Pfam%3APF18496","Collagenase G catalytic helper subdomain"],["Pfam%3APF09983","Wadjet protein JetD, C-terminal"],["Pfam%3APF18982","Wadjet protein JetA"],["Pfam%3APF13835","Wadjet protein JetB"],["Pfam%3APF08453","Peptidase family M9 N-terminal"]],"b":[["NCBITaxon%3A361100","Bacillus cereus Q1"]]},{"id":"NCBITaxon:364106","l":"Escherichia coli (strain UTI89 / UPEC)","na":6,"nb":1,"a":[["Pfam%3APF26516","Inner membrane protein CbrB"],["Pfam%3APF17151","Periplasmic sensor domain"],["Pfam%3APF08971","Glycogen synthesis protein"],["Pfam%3APF06005","ZapB family"],["Pfam%3APF09618","CRISPR-associated protein (Cas_Csy4)"],["Pfam%3APF28061","Type I toxin DinQ-like"]],"b":[["NCBITaxon%3A364106","Escherichia coli UTI89"]]},{"id":"NCBITaxon:373","l":"Gillisella vitis","na":1,"nb":6,"a":[["TED%3AAF-A0A368P0R2-F1-model_v4_TED01","TED novel fold AF-A0A368P0R2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A361","Agrobacterium sp."],["NCBITaxon%3A1265506","Agrobacterium vitis ATCC 49767"],["NCBITaxon%3A1385422","Agrobacterium vitis pv. musae"],["NCBITaxon%3A1384504","Agrobacterium vitis pv. vitis"],["NCBITaxon%3A373","Gillisella vitis"],["NCBITaxon%3A204072","Ramlibacter henchirensis"]]},{"id":"NCBITaxon:37372","l":"Helicobacter bilis","na":1,"nb":6,"a":[["TED%3AAF-A0A4U8UA27-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8UA27-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28447","Clavibacter michiganensis"],["NCBITaxon%3A33014","Clavibacter michiganensis subsp. insidiosus"],["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A613026","Helicobacter bilis ATCC 43879"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"],["NCBITaxon%3A1235804","Helicobacter bilis WiWa"]]},{"id":"NCBITaxon:374930","l":"Haemophilus influenzae (strain PittEE)","na":6,"nb":1,"a":[["Pfam%3APF02952","L-fucose isomerase, C-terminal domain"],["Pfam%3APF07881","L-fucose isomerase, first N-terminal domain"],["Pfam%3APF07882","L-fucose isomerase, second N-terminal domain"],["Pfam%3APF02313","Fumarate reductase subunit D"],["Pfam%3APF13286","Phosphohydrolase-associated domain"],["Pfam%3APF04751","Dual-action ribosomal maturation protein DarP"]],"b":[["NCBITaxon%3A374930","Haemophilus influenzae PittEE"]]},{"id":"NCBITaxon:388919","l":"","na":6,"nb":1,"a":[["Pfam%3APF20921","Domain of unknown function DUF1846, C-terminal"],["Pfam%3APF08903","Domain of unknown function DUF1846, N-terminal"],["Pfam%3APF03186","CobD/Cbib protein"],["Pfam%3APF08503","Tetrahydrodipicolinate succinyltransferase N-terminal"],["Pfam%3APF06949","Protein of unknown function (DUF1292)"],["Pfam%3APF06160","Septation ring formation regulator, EzrA"]],"b":[["NCBITaxon%3A388919","Streptococcus sanguinis SK36"]]},{"id":"NCBITaxon:399742","l":"Enterobacter sp. (strain 638)","na":6,"nb":1,"a":[["Pfam%3APF12404","Peptidase"],["Pfam%3APF27465","DNA-binding protein Fis N-terminal domain"],["Pfam%3APF02300","Fumarate reductase subunit C"],["Pfam%3APF04102","SlyX"],["Pfam%3APF06005","ZapB family"],["Pfam%3APF07208","Protein of unknown function (DUF1414)"]],"b":[["NCBITaxon%3A399742","Enterobacter sp. 638"]]},{"id":"NCBITaxon:401614","l":"Francisella tularensis subsp. novicida (strain ATCC 15482 / CCUG 33449 / U112)","na":6,"nb":1,"a":[["Pfam%3APF21918","CRISPR-associated endonuclease Cpf1 REC2 domain"],["Pfam%3APF22385","CRISPR-associated endonuclease Cas9, C-terminal domain"],["Pfam%3APF22222","CRISPR-associated endonuclease Cpf1 PI domain"],["Pfam%3APF21069","CRISPR-associated endonuclease Cas9 alpha-helical lobe"],["Pfam%3APF11685","Protein of unknown function (DUF3281)"],["PROSITE%3APS01300","RecR protein signature"]],"b":[["NCBITaxon%3A401614","Francisella tularensis subsp. novicida U112"]]},{"id":"NCBITaxon:420246","l":"Geobacillus thermodenitrificans (strain NG80-2)","na":6,"nb":1,"a":[["Pfam%3APF21445","ADDB, N-terminal"],["Pfam%3APF02623","FliW protein"],["Pfam%3APF24898","Cyclic-di-AMP phosphodiesterase GdpP-like, GGDEF domain"],["Pfam%3APF07457","Protein of unknown function (DUF1516)"],["Pfam%3APF12227","Protein of unknown function (DUF3603)"],["Pfam%3APF12538","DNA transporter"]],"b":[["NCBITaxon%3A420246","Geobacillus thermodenitrificans NG80-2"]]},{"id":"NCBITaxon:43675","l":"Rothia mucilaginosa","na":1,"nb":6,"a":[["TED%3AAF-A0A291DCT6-F1-model_v4_TED03","TED novel fold AF-A0A291DCT6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A43675","Rothia mucilaginosa"],["NCBITaxon%3A553201","Rothia mucilaginosa ATCC 25296"],["NCBITaxon%3A1073369","Rothia mucilaginosa CC87LB"],["NCBITaxon%3A680646","Rothia mucilaginosa DY-18"],["NCBITaxon%3A1255664","Rothia mucilaginosa M1710"],["NCBITaxon%3A563033","Rothia mucilaginosa M508"]]},{"id":"NCBITaxon:44445","l":"Pseudo-nitzschia australis","na":6,"nb":1,"a":[["TED%3AAF-A0A6V0BU40-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6V0BU40-F1-model_v4_TED02"],["TED%3AAF-A0A7S4AM56-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4AM56-F1-model_v4_TED01"],["TED%3AAF-A0A7S4EET1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4EET1-F1-model_v4_TED01"],["TED%3AAF-A0A6V0CM61-F1-model_v4_TED02","TED novel fold AF-A0A6V0CM61-F1-model_v4_TED02"],["TED%3AAF-A0A7S4ABE6-F1-model_v4_TED01","TED novel fold AF-A0A7S4ABE6-F1-model_v4_TED01"],["TED%3AAF-A0A7S4EFE9-F1-model_v4_TED01","TED novel fold AF-A0A7S4EFE9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A44445","Pseudo-nitzschia australis"]]},{"id":"NCBITaxon:464988","l":"Hemiselmis andersenii","na":6,"nb":1,"a":[["TED%3AAF-A0A7S0TL45-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0TL45-F1-model_v4_TED01"],["TED%3AAF-A0A7S1GUI2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1GUI2-F1-model_v4_TED01"],["TED%3AAF-A0A7S1DED9-F1-model_v4_TED01","TED novel fold AF-A0A7S1DED9-F1-model_v4_TED01"],["TED%3AAF-A0A7S1DF29-F1-model_v4_TED01","TED novel fold AF-A0A7S1DF29-F1-model_v4_TED01"],["TED%3AAF-A0A7S1DXR5-F1-model_v4_TED01","TED novel fold AF-A0A7S1DXR5-F1-model_v4_TED01"],["TED%3AAF-A0A7S1MTU0-F1-model_v4_TED01","TED novel fold AF-A0A7S1MTU0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A464988","Hemiselmis andersenii"]]},{"id":"NCBITaxon:489","l":"Neisseria polysaccharea","na":1,"nb":6,"a":[["Pfam%3APF22582","Amylosucrase, C-terminal domain"]],"b":[["NCBITaxon%3A483","Neisseria cinerea"],["NCBITaxon%3A489","Neisseria polysaccharea"],["NCBITaxon%3A546267","Neisseria polysaccharea ATCC 43768"],["NCBITaxon%3A933269","Neisseria polysaccharea NS342"],["NCBITaxon%3A490","Neisseria sicca"],["NCBITaxon%3A192066","Neisseria sp."]]},{"id":"NCBITaxon:4934","l":"Lachancea kluyveri","na":6,"nb":1,"a":[["Pfam%3APF21986","Allophanate hydrolase C-terminal domain"],["Pfam%3APF21187","Yeast adenylate cyclase, C-terminal"],["Pfam%3APF02626","Carboxyltransferase domain, subdomain A and B"],["Pfam%3APF02682","Carboxyltransferase domain, subdomain C and D"],["Pfam%3APF07958","Protein of unknown function (DUF1688)"],["Pfam%3APF12471","GTP cyclohydrolase N terminal"]],"b":[["NCBITaxon%3A4934","Lachancea kluyveri"]]},{"id":"NCBITaxon:544580","l":"Actinomyces oris","na":1,"nb":6,"a":[["TED%3AAF-A0A1Q8WF60-F1-model_v4_TED01","TED novel fold AF-A0A1Q8WF60-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A3050225","Actinomyces acetigenes"],["NCBITaxon%3A1655","Actinomyces naeslundii"],["NCBITaxon%3A544580","Actinomyces oris"],["NCBITaxon%3A871541","Actinomyces oris K20"],["NCBITaxon%3A29317","Actinomyces sp."],["NCBITaxon%3A1656","Actinomyces viscosus"]]},{"id":"NCBITaxon:59511","l":"Pseudomonas syringae pv. maculicola","na":1,"nb":6,"a":[["Pfam%3APF15457","Type III T3SS secreted effector HopW1-1/HopPmaA"]],"b":[["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A59511","Pseudomonas syringae pv. maculicola"],["NCBITaxon%3A629265","Pseudomonas syringae pv. maculicola str. ES4326"],["NCBITaxon%3A698748","Pseudomonas syringae pv. maculicola str. F1"],["NCBITaxon%3A698749","Pseudomonas syringae pv. maculicola str. M3"],["NCBITaxon%3A698750","Pseudomonas syringae pv. maculicola str. M6"]]},{"id":"NCBITaxon:59799","l":"Angomonas deanei","na":6,"nb":1,"a":[["TED%3AAF-A0A7G2CPC7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7G2CPC7-F1-model_v4_TED03"],["TED%3AAF-A0A7G2BZJ1-F1-model_v4_TED02","TED novel fold AF-A0A7G2BZJ1-F1-model_v4_TED02"],["TED%3AAF-A0A7G2C3S7-F1-model_v4_TED02","TED novel fold AF-A0A7G2C3S7-F1-model_v4_TED02"],["TED%3AAF-A0A7G2CRL5-F1-model_v4_TED01","TED novel fold AF-A0A7G2CRL5-F1-model_v4_TED01"],["TED%3AAF-S9VAC3-F1-model_v4_TED02","TED novel fold AF-S9VAC3-F1-model_v4_TED02"],["TED%3AAF-S9VIQ1-F1-model_v4_TED01","TED novel fold AF-S9VIQ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A59799","Angomonas deanei"]]},{"id":"NCBITaxon:59823","l":"Prevotella sp.","na":6,"nb":1,"a":[["TED%3AAF-A0A350PQL3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A350PQL3-F1-model_v4_TED03"],["TED%3AAF-A0A353E5D4-F1-model_v4_TED01","TED novel fold AF-A0A353E5D4-F1-model_v4_TED01"],["TED%3AAF-A0A353E6B1-F1-model_v4_TED02","TED novel fold AF-A0A353E6B1-F1-model_v4_TED02"],["TED%3AAF-A0A3C1E689-F1-model_v4_TED01","TED novel fold AF-A0A3C1E689-F1-model_v4_TED01"],["TED%3AAF-A0A3D1CZM6-F1-model_v4_TED01","TED novel fold AF-A0A3D1CZM6-F1-model_v4_TED01"],["TED%3AAF-A0A3D1GWB4-F1-model_v4_TED03","TED novel fold AF-A0A3D1GWB4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A59823","Prevotella sp."]]},{"id":"NCBITaxon:68280","l":"Streptomyces violaceusniger","na":1,"nb":6,"a":[["TED%3AAF-A0A0X3VKA0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0X3VKA0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1912","Streptomyces hygroscopicus"],["NCBITaxon%3A68042","Streptomyces hygroscopicus subsp. hygroscopicus"],["NCBITaxon%3A33900","Streptomyces murinus"],["NCBITaxon%3A114686","Streptomyces phaeoluteigriseus"],["NCBITaxon%3A68280","Streptomyces violaceusniger"],["NCBITaxon%3A653045","Streptomyces violaceusniger Tu 4113"]]},{"id":"NCBITaxon:690887","l":"Lophiotrema nucula","na":6,"nb":1,"a":[["TED%3AAF-A0A6A5YKY9-F1-model_v4_TED01","TED novel fold AF-A0A6A5YKY9-F1-model_v4_TED01"],["TED%3AAF-A0A6A5YT26-F1-model_v4_TED01","TED novel fold AF-A0A6A5YT26-F1-model_v4_TED01"],["TED%3AAF-A0A6A5YZE9-F1-model_v4_TED01","TED novel fold AF-A0A6A5YZE9-F1-model_v4_TED01"],["TED%3AAF-A0A6A5Z722-F1-model_v4_TED01","TED novel fold AF-A0A6A5Z722-F1-model_v4_TED01"],["TED%3AAF-A0A6A5ZAN3-F1-model_v4_TED02","TED novel fold AF-A0A6A5ZAN3-F1-model_v4_TED02"],["TED%3AAF-A0A6A5ZR44-F1-model_v4_TED01","TED novel fold AF-A0A6A5ZR44-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A690887","Lophiotrema nucula"]]},{"id":"NCBITaxon:70125","l":"Nitrospira sp.","na":6,"nb":1,"a":[["TED%3AAF-A0A3C1YZ39-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3C1YZ39-F1-model_v4_TED02"],["TED%3AAF-A0A532C4P6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A532C4P6-F1-model_v4_TED01"],["TED%3AAF-A0A532D6L6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A532D6L6-F1-model_v4_TED01"],["TED%3AAF-A0A532DGQ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A532DGQ7-F1-model_v4_TED01"],["TED%3AAF-A0A7C7WA77-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C7WA77-F1-model_v4_TED01"],["TED%3AAF-A0A533BBR6-F1-model_v4_TED01","TED novel fold AF-A0A533BBR6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A70125","Nitrospira sp."]]},{"id":"NCBITaxon:747089","l":"Rhizophagus irregularis (strain DAOM 181602 / DAOM 197198 / MUCL 43194)","na":6,"nb":1,"a":[["Pfam%3APF20147","Crinkler effector protein N-terminal domain"],["TED%3AAF-A0A2H5REZ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H5REZ7-F1-model_v4_TED01"],["TED%3AAF-A0A2P4PHF1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2P4PHF1-F1-model_v4_TED02"],["TED%3AAF-U9TZ49-F1-model_v4_TED02","TED highly-symmetric fold AF-U9TZ49-F1-model_v4_TED02"],["TED%3AAF-A0A2H5SCM8-F1-model_v4_TED02","TED novel fold AF-A0A2H5SCM8-F1-model_v4_TED02"],["TED%3AAF-A0A2H5SIW6-F1-model_v4_TED01","TED novel fold AF-A0A2H5SIW6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A747089","Rhizophagus irregularis DAOM 181602=DAOM 197198"]]},{"id":"NCBITaxon:75058","l":"Bodo saltans","na":6,"nb":1,"a":[["TED%3AAF-A0A0S4IKA4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S4IKA4-F1-model_v4_TED01"],["TED%3AAF-A0A0S4IKA4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0S4IKA4-F1-model_v4_TED02"],["TED%3AAF-A0A0S4IN57-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A0S4IN57-F1-model_v4_TED04"],["TED%3AAF-A0A0S4JT99-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S4JT99-F1-model_v4_TED01"],["TED%3AAF-A0A0S4JE73-F1-model_v4_TED02","TED novel fold AF-A0A0S4JE73-F1-model_v4_TED02"],["TED%3AAF-A0A0S4JGE0-F1-model_v4_TED01","TED novel fold AF-A0A0S4JGE0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A75058","Bodo saltans"]]},{"id":"NCBITaxon:78245","l":"Xanthobacter autotrophicus (strain ATCC BAA-1158 / Py2)","na":6,"nb":1,"a":[["Pfam%3APF08882","Acetone carboxylase gamma subunit"],["Pfam%3APF19278","Hydantoinase/oxoprolinase C-terminal domain"],["Pfam%3APF05378","Hydantoinase/oxoprolinase N-terminal region"],["Pfam%3APF01968","Hydantoinase/oxoprolinase"],["Pfam%3APF02538","Hydantoinase B/oxoprolinase"],["TED%3AAF-A7IL68-F1-model_v4_TED01","TED highly-symmetric fold AF-A7IL68-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A78245","Xanthobacter versatilis"]]},{"id":"NCBITaxon:863372","l":"Herbaspirillum huttiense","na":1,"nb":6,"a":[["TED%3AAF-A0A4P7ADR5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P7ADR5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A863372","Herbaspirillum huttiense"],["NCBITaxon%3A86172","Herbaspirillum huttiense subsp. huttiense"],["NCBITaxon%3A3074428","Herbaspirillum huttiense subsp. lycopersici"],["NCBITaxon%3A3075126","Herbaspirillum huttiense subsp. nephrolepidis"],["NCBITaxon%3A230311","Herbaspirillum huttiense subsp. putei"],["NCBITaxon%3A1235558","Herbaspirillum huttiense subsp. putei IAM 15032"]]},{"id":"NCBITaxon:1006551","l":"Klebsiella michiganensis (strain ATCC 8724 / DSM 4798 / JCM 20051 / NBRC 3318 / NRRL B-199 / KCTC 1686 / BUCSAV 143 / CCM 1901)","na":5,"nb":1,"a":[["Pfam%3APF07833","Copper amine oxidase N-terminal domain"],["Pfam%3APF18427","DD-reactivating factor swiveling domain"],["Pfam%3APF02288","Dehydratase medium subunit"],["Pfam%3APF08841","Diol dehydratase reactivase ATPase-like domain"],["TED%3AAF-A0A0H3H2M0-F1-model_v4_TED01","TED novel fold AF-A0A0H3H2M0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1006551","Klebsiella michiganensis KCTC 1686"]]},{"id":"NCBITaxon:100861","l":"Aphanomyces euteiches","na":5,"nb":1,"a":[["TED%3AAF-A0A6G0WQE8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6G0WQE8-F1-model_v4_TED02"],["TED%3AAF-A0A6G0WJG0-F1-model_v4_TED02","TED novel fold AF-A0A6G0WJG0-F1-model_v4_TED02"],["TED%3AAF-A0A6G0WL59-F1-model_v4_TED01","TED novel fold AF-A0A6G0WL59-F1-model_v4_TED01"],["TED%3AAF-A0A6G0WMX7-F1-model_v4_TED01","TED novel fold AF-A0A6G0WMX7-F1-model_v4_TED01"],["TED%3AAF-A0A6G0WTB7-F1-model_v4_TED02","TED novel fold AF-A0A6G0WTB7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A100861","Aphanomyces euteiches"]]},{"id":"NCBITaxon:1055524","l":"Burkholderia cenocepacia (strain H111)","na":5,"nb":1,"a":[["Pfam%3APF20148","Domain of unknown function (DUF6531)"],["Pfam%3APF14430","Immunity protein Imm1"],["Pfam%3APF05488","PAAR motif"],["Pfam%3APF03527","RHS protein"],["Pfam%3APF05593","RHS Repeat"]],"b":[["NCBITaxon%3A1055524","Burkholderia cenocepacia H111"]]},{"id":"NCBITaxon:1137281","l":"Xanthomarina gelatinilytica","na":5,"nb":1,"a":[["TED%3AAF-A0A3C0F097-F1-model_v4_TED01","TED novel fold AF-A0A3C0F097-F1-model_v4_TED01"],["TED%3AAF-A0A3C0F157-F1-model_v4_TED01","TED novel fold AF-A0A3C0F157-F1-model_v4_TED01"],["TED%3AAF-A0A3C0F5W9-F1-model_v4_TED01","TED novel fold AF-A0A3C0F5W9-F1-model_v4_TED01"],["TED%3AAF-A0A3C0F8S8-F1-model_v4_TED01","TED novel fold AF-A0A3C0F8S8-F1-model_v4_TED01"],["TED%3AAF-A0A3D6BP25-F1-model_v4_TED02","TED novel fold AF-A0A3D6BP25-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1137281","Xanthomarina gelatinilytica"]]},{"id":"NCBITaxon:1172189","l":"Oxytricha trifallax","na":5,"nb":1,"a":[["TED%3AAF-J9EH04-F1-model_v4_TED01","TED highly-symmetric fold AF-J9EH04-F1-model_v4_TED01"],["TED%3AAF-J9IW26-F1-model_v4_TED03","TED highly-symmetric fold AF-J9IW26-F1-model_v4_TED03"],["TED%3AAF-J9HM40-F1-model_v4_TED01","TED novel fold AF-J9HM40-F1-model_v4_TED01"],["TED%3AAF-J9IHP4-F1-model_v4_TED01","TED novel fold AF-J9IHP4-F1-model_v4_TED01"],["TED%3AAF-J9IUB6-F1-model_v4_TED02","TED novel fold AF-J9IUB6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1172189","Oxytricha trifallax"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":1,"nb":5,"a":[["TED%3AAF-A0A132HLN2-F1-model_v4_TED01","TED novel fold AF-A0A132HLN2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A119219","Cupriavidus metallidurans"],["NCBITaxon%3A266264","Cupriavidus metallidurans CH34"],["NCBITaxon%3A1395123","Cupriavidus metallidurans H1130"],["NCBITaxon%3A1218106","Cupriavidus metallidurans NBRC 101272"],["NCBITaxon%3A1873897","Cupriavidus sp."]]},{"id":"NCBITaxon:120398","l":"Aphanomyces stellatus","na":5,"nb":1,"a":[["TED%3AAF-A0A6A4YU89-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A4YU89-F1-model_v4_TED01"],["TED%3AAF-A0A485K586-F1-model_v4_TED02","TED novel fold AF-A0A485K586-F1-model_v4_TED02"],["TED%3AAF-A0A485L7W5-F1-model_v4_TED01","TED novel fold AF-A0A485L7W5-F1-model_v4_TED01"],["TED%3AAF-A0A485LNP0-F1-model_v4_TED01","TED novel fold AF-A0A485LNP0-F1-model_v4_TED01"],["TED%3AAF-A0A6A4ZLE5-F1-model_v4_TED01","TED novel fold AF-A0A6A4ZLE5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A120398","Aphanomyces stellatus"]]},{"id":"NCBITaxon:1244","l":"Leuconostoc gelidum","na":1,"nb":5,"a":[["Pfam%3APF08951","Bacteriocin immunity protein family"]],"b":[["NCBITaxon%3A1244","Leuconostoc gelidum"],["NCBITaxon%3A1229756","Leuconostoc gelidum JB7"],["NCBITaxon%3A1607837","Leuconostoc gelidum subsp. aenigmaticum"],["NCBITaxon%3A1607839","Leuconostoc gelidum subsp. gelidum"],["NCBITaxon%3A927691","Leuconostoc gelidum subsp. gelidum KCTC 3527"]]},{"id":"NCBITaxon:126793","l":"Plasmodium vivax (strain Salvador I)","na":5,"nb":1,"a":[["Pfam%3APF08627","CRT-like, chloroquine-resistance transporter-like"],["Pfam%3APF12361","Duffy-antigen binding protein"],["Pfam%3APF05424","Duffy binding domain"],["Pfam%3APF12377","Duffy binding protein N terminal"],["Pfam%3APF11556","Erythrocyte binding antigen 175"]],"b":[["NCBITaxon%3A126793","Plasmodium vivax Sal-1"]]},{"id":"NCBITaxon:1391654","l":"Labilithrix luteola","na":5,"nb":1,"a":[["TED%3AAF-A0A0K1PPH0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0K1PPH0-F1-model_v4_TED01"],["TED%3AAF-A0A0K1PQV0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0K1PQV0-F1-model_v4_TED01"],["TED%3AAF-A0A0K1PKQ0-F1-model_v4_TED02","TED novel fold AF-A0A0K1PKQ0-F1-model_v4_TED02"],["TED%3AAF-A0A0K1QB04-F1-model_v4_TED01","TED novel fold AF-A0A0K1QB04-F1-model_v4_TED01"],["TED%3AAF-A0A0K1QB59-F1-model_v4_TED04","TED novel fold AF-A0A0K1QB59-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1391654","Labilithrix luteola"]]},{"id":"NCBITaxon:1399860","l":"Ophiocordyceps australis","na":5,"nb":1,"a":[["TED%3AAF-A0A2C5XYE3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2C5XYE3-F1-model_v4_TED02"],["TED%3AAF-A0A2C5XXI9-F1-model_v4_TED01","TED novel fold AF-A0A2C5XXI9-F1-model_v4_TED01"],["TED%3AAF-A0A2C5Y9G2-F1-model_v4_TED01","TED novel fold AF-A0A2C5Y9G2-F1-model_v4_TED01"],["TED%3AAF-A0A2C5YDN9-F1-model_v4_TED01","TED novel fold AF-A0A2C5YDN9-F1-model_v4_TED01"],["TED%3AAF-A0A2C5Z5D6-F1-model_v4_TED02","TED novel fold AF-A0A2C5Z5D6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1399860","Ophiocordyceps australis"]]},{"id":"NCBITaxon:1460663","l":"Paraphaeosphaeria sporulosa","na":5,"nb":1,"a":[["TED%3AAF-A0A177BYU6-F1-model_v4_TED01","TED novel fold AF-A0A177BYU6-F1-model_v4_TED01"],["TED%3AAF-A0A177C1V7-F1-model_v4_TED01","TED novel fold AF-A0A177C1V7-F1-model_v4_TED01"],["TED%3AAF-A0A177C423-F1-model_v4_TED02","TED novel fold AF-A0A177C423-F1-model_v4_TED02"],["TED%3AAF-A0A177CFU8-F1-model_v4_TED03","TED novel fold AF-A0A177CFU8-F1-model_v4_TED03"],["TED%3AAF-A0A177CTN1-F1-model_v4_TED01","TED novel fold AF-A0A177CTN1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1460663","Paraphaeosphaeria sporulosa"]]},{"id":"NCBITaxon:1465","l":"Brevibacillus laterosporus","na":1,"nb":5,"a":[["TED%3AAF-A0A0F7BZ24-F1-model_v4_TED01","TED novel fold AF-A0A0F7BZ24-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1465","Brevibacillus laterosporus"],["NCBITaxon%3A1121121","Brevibacillus laterosporus DSM 25"],["NCBITaxon%3A1118154","Brevibacillus laterosporus GI-9"],["NCBITaxon%3A1042163","Brevibacillus laterosporus LMG 15441"],["NCBITaxon%3A1399144","Brevibacillus laterosporus PE36"]]},{"id":"NCBITaxon:1473586","l":"Roseiarcus fermentans","na":5,"nb":1,"a":[["TED%3AAF-A0A366EFE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A366EFE6-F1-model_v4_TED01"],["TED%3AAF-A0A366FNN9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A366FNN9-F1-model_v4_TED01"],["TED%3AAF-A0A366FT73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A366FT73-F1-model_v4_TED01"],["TED%3AAF-A0A366EUJ4-F1-model_v4_TED01","TED novel fold AF-A0A366EUJ4-F1-model_v4_TED01"],["TED%3AAF-A0A366FSX2-F1-model_v4_TED01","TED novel fold AF-A0A366FSX2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1473586","Roseiarcus fermentans"]]},{"id":"NCBITaxon:147558","l":"Byssothecium circinans","na":5,"nb":1,"a":[["TED%3AAF-A0A6A5TH04-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A5TH04-F1-model_v4_TED01"],["TED%3AAF-A0A6A5TN25-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A5TN25-F1-model_v4_TED01"],["TED%3AAF-A0A6A5T6G0-F1-model_v4_TED01","TED novel fold AF-A0A6A5T6G0-F1-model_v4_TED01"],["TED%3AAF-A0A6A5U5A4-F1-model_v4_TED02","TED novel fold AF-A0A6A5U5A4-F1-model_v4_TED02"],["TED%3AAF-A0A6A5UDD3-F1-model_v4_TED01","TED novel fold AF-A0A6A5UDD3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A147558","Byssothecium circinans"]]},{"id":"NCBITaxon:1514140","l":"Trieres chinensis","na":5,"nb":1,"a":[["TED%3AAF-A0A7S1YW68-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1YW68-F1-model_v4_TED01"],["TED%3AAF-A0A7S1Z4Z7-F1-model_v4_TED01","TED novel fold AF-A0A7S1Z4Z7-F1-model_v4_TED01"],["TED%3AAF-A0A7S1ZAT3-F1-model_v4_TED03","TED novel fold AF-A0A7S1ZAT3-F1-model_v4_TED03"],["TED%3AAF-A0A7S2A6A9-F1-model_v4_TED02","TED novel fold AF-A0A7S2A6A9-F1-model_v4_TED02"],["TED%3AAF-A0A7S2A7V0-F1-model_v4_TED02","TED novel fold AF-A0A7S2A7V0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1514140","Trieres chinensis"]]},{"id":"NCBITaxon:1630","l":"Kandleria vitulina","na":1,"nb":5,"a":[["TED%3AAF-A0A1H2RJ13-F1-model_v4_TED02","TED novel fold AF-A0A1H2RJ13-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1630","Kandleria vitulina"],["NCBITaxon%3A1410657","Kandleria vitulina DSM 20405"],["NCBITaxon%3A1410658","Kandleria vitulina MC3001"],["NCBITaxon%3A1410659","Kandleria vitulina WCE2011"],["NCBITaxon%3A322505","Sharpea azabuensis"]]},{"id":"NCBITaxon:1667","l":"Arthrobacter sp.","na":5,"nb":1,"a":[["Pfam%3APF14031","Putative serine dehydratase domain"],["Pfam%3APF02449","Beta-galactosidase"],["Pfam%3APF08533","Beta-galactosidase C-terminal domain"],["Pfam%3APF08532","Beta-galactosidase trimerisation domain"],["TED%3AAF-A0A3C2BWN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C2BWN3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1667","Arthrobacter sp."]]},{"id":"NCBITaxon:166793","l":"Solirubrobacter pauli","na":5,"nb":1,"a":[["TED%3AAF-A0A660KVC2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A660KVC2-F1-model_v4_TED01"],["TED%3AAF-A0A660L8K6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A660L8K6-F1-model_v4_TED03"],["TED%3AAF-A0A660L9Y2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A660L9Y2-F1-model_v4_TED02"],["TED%3AAF-A0A660L5E2-F1-model_v4_TED01","TED novel fold AF-A0A660L5E2-F1-model_v4_TED01"],["TED%3AAF-A0A660LBC0-F1-model_v4_TED02","TED novel fold AF-A0A660LBC0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A166793","Solirubrobacter pauli"]]},{"id":"NCBITaxon:1752","l":"Propionibacterium freudenreichii subsp. shermanii","na":1,"nb":5,"a":[["PROSITE%3APS00544","Methylmalonyl-CoA mutase signature"]],"b":[["NCBITaxon%3A1591","Lactobacillus sp."],["NCBITaxon%3A1744","Propionibacterium freudenreichii"],["NCBITaxon%3A1752","Propionibacterium freudenreichii subsp. shermanii"],["NCBITaxon%3A754252","Propionibacterium freudenreichii subsp. shermanii CIRM-BIA1"],["NCBITaxon%3A1445610","Propionibacterium freudenreichii subsp. shermanii SANPR8"]]},{"id":"NCBITaxon:1798206","l":"Thioclava sp. ES.032","na":5,"nb":1,"a":[["TED%3AAF-A0A4R7KQ83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R7KQ83-F1-model_v4_TED01"],["TED%3AAF-A0A4R7KH50-F1-model_v4_TED01","TED novel fold AF-A0A4R7KH50-F1-model_v4_TED01"],["TED%3AAF-A0A4R7KMZ7-F1-model_v4_TED01","TED novel fold AF-A0A4R7KMZ7-F1-model_v4_TED01"],["TED%3AAF-A0A4R7KP85-F1-model_v4_TED01","TED novel fold AF-A0A4R7KP85-F1-model_v4_TED01"],["TED%3AAF-A0A4R7KRD5-F1-model_v4_TED01","TED novel fold AF-A0A4R7KRD5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798206","Thioclava sp. ES.032"]]},{"id":"NCBITaxon:1856293","l":"Gammaproteobacteria bacterium 42 54 T18","na":5,"nb":1,"a":[["TED%3AAF-A0A1Z7YLF6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z7YLF6-F1-model_v4_TED01"],["TED%3AAF-A0A1Z7ZRW5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z7ZRW5-F1-model_v4_TED01"],["TED%3AAF-A0A1Z8A185-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z8A185-F1-model_v4_TED01"],["TED%3AAF-A0A1Z7YM22-F1-model_v4_TED01","TED novel fold AF-A0A1Z7YM22-F1-model_v4_TED01"],["TED%3AAF-A0A1Z7ZZU7-F1-model_v4_TED01","TED novel fold AF-A0A1Z7ZZU7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1856293","Gammaproteobacteria bacterium 42_54_T18"]]},{"id":"NCBITaxon:1871070","l":"Oxalobacteraceae bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A4Q3LAA3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q3LAA3-F1-model_v4_TED01"],["TED%3AAF-A0A4Q3HLQ7-F1-model_v4_TED02","TED novel fold AF-A0A4Q3HLQ7-F1-model_v4_TED02"],["TED%3AAF-A0A4Q3KLL6-F1-model_v4_TED03","TED novel fold AF-A0A4Q3KLL6-F1-model_v4_TED03"],["TED%3AAF-A0A4Q3LPB8-F1-model_v4_TED01","TED novel fold AF-A0A4Q3LPB8-F1-model_v4_TED01"],["TED%3AAF-A0A4V1TM44-F1-model_v4_TED01","TED novel fold AF-A0A4V1TM44-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1871070","Oxalobacteraceae bacterium"]]},{"id":"NCBITaxon:1872427","l":"Alcanivorax sp.","na":5,"nb":1,"a":[["TED%3AAF-A0A3C1HS87-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A3C1HS87-F1-model_v4_TED05"],["TED%3AAF-A0A2E8G0K2-F1-model_v4_TED02","TED novel fold AF-A0A2E8G0K2-F1-model_v4_TED02"],["TED%3AAF-A0A2E8G2P9-F1-model_v4_TED01","TED novel fold AF-A0A2E8G2P9-F1-model_v4_TED01"],["TED%3AAF-A0A3B8PCI6-F1-model_v4_TED01","TED novel fold AF-A0A3B8PCI6-F1-model_v4_TED01"],["TED%3AAF-A0A3C0M083-F1-model_v4_TED02","TED novel fold AF-A0A3C0M083-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1872427","Alcanivorax sp."]]},{"id":"NCBITaxon:1872629","l":"Arcobacter sp.","na":5,"nb":1,"a":[["TED%3AAF-A0A2D5P801-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D5P801-F1-model_v4_TED02"],["TED%3AAF-A0A2G6R5Z0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G6R5Z0-F1-model_v4_TED01"],["TED%3AAF-A0A7C3M446-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C3M446-F1-model_v4_TED01"],["TED%3AAF-A0A2D5P5I8-F1-model_v4_TED01","TED novel fold AF-A0A2D5P5I8-F1-model_v4_TED01"],["TED%3AAF-A0A7C3R557-F1-model_v4_TED02","TED novel fold AF-A0A7C3R557-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1872629","Arcobacter sp."]]},{"id":"NCBITaxon:1898103","l":"Rhodocyclaceae bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A5C9BV10-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C9BV10-F1-model_v4_TED01"],["TED%3AAF-A0A7C6KDT6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C6KDT6-F1-model_v4_TED01"],["TED%3AAF-A0A3S0EHT2-F1-model_v4_TED01","TED novel fold AF-A0A3S0EHT2-F1-model_v4_TED01"],["TED%3AAF-A0A431JPK4-F1-model_v4_TED02","TED novel fold AF-A0A431JPK4-F1-model_v4_TED02"],["TED%3AAF-A0A5C9BLM6-F1-model_v4_TED01","TED novel fold AF-A0A5C9BLM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1898103","Rhodocyclaceae bacterium"]]},{"id":"NCBITaxon:190893","l":"Vibrio coralliilyticus","na":1,"nb":5,"a":[["TED%3AAF-A0A7Y4BNK4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4BNK4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A190893","Vibrio coralliilyticus"],["NCBITaxon%3A675814","Vibrio coralliilyticus ATCC BAA-450"],["NCBITaxon%3A1353535","Vibrio coralliilyticus NA0301"],["NCBITaxon%3A1384040","Vibrio coralliilyticus OCN008"],["NCBITaxon%3A909421","Vibrio coralliilyticus P1"]]},{"id":"NCBITaxon:1911520","l":"Actinomycetales bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A7X7DA60-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X7DA60-F1-model_v4_TED01"],["TED%3AAF-A0A7X7NMJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X7NMJ9-F1-model_v4_TED01"],["TED%3AAF-A0A847CNG4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A847CNG4-F1-model_v4_TED01"],["TED%3AAF-A0A847KL95-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A847KL95-F1-model_v4_TED02"],["TED%3AAF-A0A847KJV2-F1-model_v4_TED01","TED novel fold AF-A0A847KJV2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1911520","Actinomycetales bacterium"]]},{"id":"NCBITaxon:1926873","l":"Xanthomonadaceae bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A3C0JAH5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C0JAH5-F1-model_v4_TED01"],["TED%3AAF-A0A7C6VXP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C6VXP7-F1-model_v4_TED01"],["TED%3AAF-A0A7X7SSY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X7SSY6-F1-model_v4_TED01"],["TED%3AAF-A0A5C7RAV8-F1-model_v4_TED01","TED novel fold AF-A0A5C7RAV8-F1-model_v4_TED01"],["TED%3AAF-A0A7C6VXF5-F1-model_v4_TED01","TED novel fold AF-A0A7C6VXF5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1926873","Lysobacteraceae bacterium"]]},{"id":"NCBITaxon:193","l":"Azospirillum lipoferum","na":1,"nb":5,"a":[["TED%3AAF-A0A1X7MZF1-F1-model_v4_TED02","TED novel fold AF-A0A1X7MZF1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A442870","Acanthopleuribacter pedis"],["NCBITaxon%3A52761","Azospirillum largimobile"],["NCBITaxon%3A193","Azospirillum lipoferum"],["NCBITaxon%3A862719","Azospirillum lipoferum 4B"],["NCBITaxon%3A34012","Azospirillum sp."]]},{"id":"NCBITaxon:1978525","l":"Sphingomonadales bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A4Q3A6F4-F1-model_v4_TED01","TED novel fold AF-A0A4Q3A6F4-F1-model_v4_TED01"],["TED%3AAF-A0A4Q3AFM2-F1-model_v4_TED02","TED novel fold AF-A0A4Q3AFM2-F1-model_v4_TED02"],["TED%3AAF-A0A4Q3AGI7-F1-model_v4_TED03","TED novel fold AF-A0A4Q3AGI7-F1-model_v4_TED03"],["TED%3AAF-A0A4Q3AGZ4-F1-model_v4_TED01","TED novel fold AF-A0A4Q3AGZ4-F1-model_v4_TED01"],["TED%3AAF-A0A4Q3ARA3-F1-model_v4_TED01","TED novel fold AF-A0A4Q3ARA3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1978525","Sphingomonadales bacterium"]]},{"id":"NCBITaxon:200324","l":"Puccinia coronata f. sp. avenae","na":5,"nb":1,"a":[["TED%3AAF-A0A2N5UHE5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N5UHE5-F1-model_v4_TED02"],["TED%3AAF-A0A2N5UTY3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N5UTY3-F1-model_v4_TED02"],["TED%3AAF-A0A2N5SHP2-F1-model_v4_TED01","TED novel fold AF-A0A2N5SHP2-F1-model_v4_TED01"],["TED%3AAF-A0A2N5TCK3-F1-model_v4_TED02","TED novel fold AF-A0A2N5TCK3-F1-model_v4_TED02"],["TED%3AAF-A0A2N5UYI1-F1-model_v4_TED01","TED novel fold AF-A0A2N5UYI1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A200324","Puccinia coronata f. sp. avenae"]]},{"id":"NCBITaxon:2024841","l":"Micavibrio sp.","na":5,"nb":1,"a":[["TED%3AAF-A0A2D8LYK6-F1-model_v4_TED01","TED novel fold AF-A0A2D8LYK6-F1-model_v4_TED01"],["TED%3AAF-A0A2D8M0X9-F1-model_v4_TED01","TED novel fold AF-A0A2D8M0X9-F1-model_v4_TED01"],["TED%3AAF-A0A651F7P0-F1-model_v4_TED01","TED novel fold AF-A0A651F7P0-F1-model_v4_TED01"],["TED%3AAF-A0A651FN22-F1-model_v4_TED01","TED novel fold AF-A0A651FN22-F1-model_v4_TED01"],["TED%3AAF-A0A7C7SSI7-F1-model_v4_TED01","TED novel fold AF-A0A7C7SSI7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024841","Micavibrio sp."]]},{"id":"NCBITaxon:2026715","l":"Pseudobdellovibrionaceae bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A2E8I2Q3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E8I2Q3-F1-model_v4_TED02"],["TED%3AAF-A0A2E8I7A7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E8I7A7-F1-model_v4_TED02"],["TED%3AAF-A0A2E1Q4H5-F1-model_v4_TED06","TED novel fold AF-A0A2E1Q4H5-F1-model_v4_TED06"],["TED%3AAF-A0A2E7GIF0-F1-model_v4_TED01","TED novel fold AF-A0A2E7GIF0-F1-model_v4_TED01"],["TED%3AAF-A0A849WIZ5-F1-model_v4_TED01","TED novel fold AF-A0A849WIZ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026715","Pseudobdellovibrionaceae bacterium"]]},{"id":"NCBITaxon:2026759","l":"Magnetococcales bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A2D7C635-F1-model_v4_TED01","TED novel fold AF-A0A2D7C635-F1-model_v4_TED01"],["TED%3AAF-A0A2D7C9W2-F1-model_v4_TED01","TED novel fold AF-A0A2D7C9W2-F1-model_v4_TED01"],["TED%3AAF-A0A2E3BZA0-F1-model_v4_TED01","TED novel fold AF-A0A2E3BZA0-F1-model_v4_TED01"],["TED%3AAF-A0A2E3BZF8-F1-model_v4_TED01","TED novel fold AF-A0A2E3BZF8-F1-model_v4_TED01"],["TED%3AAF-A0A2E3BZZ3-F1-model_v4_TED03","TED novel fold AF-A0A2E3BZZ3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2026759","Magnetococcales bacterium"]]},{"id":"NCBITaxon:2026770","l":"Nitrospiraceae bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A354A1E5-F1-model_v4_TED01","TED novel fold AF-A0A354A1E5-F1-model_v4_TED01"],["TED%3AAF-A0A3C0TQL9-F1-model_v4_TED01","TED novel fold AF-A0A3C0TQL9-F1-model_v4_TED01"],["TED%3AAF-A0A3C1FTK4-F1-model_v4_TED01","TED novel fold AF-A0A3C1FTK4-F1-model_v4_TED01"],["TED%3AAF-A0A3C1G5D1-F1-model_v4_TED02","TED novel fold AF-A0A3C1G5D1-F1-model_v4_TED02"],["TED%3AAF-A0A3N5HM95-F1-model_v4_TED03","TED novel fold AF-A0A3N5HM95-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2026770","Nitrospiraceae bacterium"]]},{"id":"NCBITaxon:2026791","l":"Bryobacterales bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A350UR89-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A350UR89-F1-model_v4_TED01"],["TED%3AAF-A0A7C3C4M2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C3C4M2-F1-model_v4_TED01"],["TED%3AAF-A0A7C3E5H8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C3E5H8-F1-model_v4_TED01"],["TED%3AAF-A0A7C3DZN5-F1-model_v4_TED02","TED novel fold AF-A0A7C3DZN5-F1-model_v4_TED02"],["TED%3AAF-A0A7X2PP26-F1-model_v4_TED01","TED novel fold AF-A0A7X2PP26-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026791","Bryobacterales bacterium"]]},{"id":"NCBITaxon:2026809","l":"Campylobacterota bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A661IE68-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A661IE68-F1-model_v4_TED02"],["TED%3AAF-A0A661ISK7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A661ISK7-F1-model_v4_TED01"],["TED%3AAF-A0A496XQ20-F1-model_v4_TED01","TED novel fold AF-A0A496XQ20-F1-model_v4_TED01"],["TED%3AAF-A0A496XVW7-F1-model_v4_TED01","TED novel fold AF-A0A496XVW7-F1-model_v4_TED01"],["TED%3AAF-A0A7C5JB24-F1-model_v4_TED01","TED novel fold AF-A0A7C5JB24-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026809","Campylobacterota bacterium"]]},{"id":"NCBITaxon:2030808","l":"Cloacimonadota bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A2A5AQC3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A5AQC3-F1-model_v4_TED01"],["TED%3AAF-A0A7C5HX70-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7C5HX70-F1-model_v4_TED03"],["TED%3AAF-A0A7X8IKA9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X8IKA9-F1-model_v4_TED01"],["TED%3AAF-A0A2A5AJ12-F1-model_v4_TED01","TED novel fold AF-A0A2A5AJ12-F1-model_v4_TED01"],["TED%3AAF-A0A7X8IJH3-F1-model_v4_TED02","TED novel fold AF-A0A7X8IJH3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2030808","Candidatus Cloacimonadota bacterium"]]},{"id":"NCBITaxon:2030829","l":"SAR202 cluster bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A5N9CY77-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5N9CY77-F1-model_v4_TED01"],["TED%3AAF-A0A5N9C391-F1-model_v4_TED01","TED novel fold AF-A0A5N9C391-F1-model_v4_TED01"],["TED%3AAF-A0A5N9CEW4-F1-model_v4_TED02","TED novel fold AF-A0A5N9CEW4-F1-model_v4_TED02"],["TED%3AAF-A0A5N9HQ74-F1-model_v4_TED01","TED novel fold AF-A0A5N9HQ74-F1-model_v4_TED01"],["TED%3AAF-A0A6L3C6H7-F1-model_v4_TED01","TED novel fold AF-A0A6L3C6H7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2030829","SAR202 cluster bacterium"]]},{"id":"NCBITaxon:2044938","l":"candidate division SR1 bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A7W4E492-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W4E492-F1-model_v4_TED01"],["TED%3AAF-A0A2W4IPX7-F1-model_v4_TED01","TED novel fold AF-A0A2W4IPX7-F1-model_v4_TED01"],["TED%3AAF-A0A7W4E3C7-F1-model_v4_TED01","TED novel fold AF-A0A7W4E3C7-F1-model_v4_TED01"],["TED%3AAF-A0A7W4HH77-F1-model_v4_TED02","TED novel fold AF-A0A7W4HH77-F1-model_v4_TED02"],["TED%3AAF-A0A7W4HH77-F1-model_v4_TED03","TED novel fold AF-A0A7W4HH77-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2044938","candidate division SR1 bacterium"]]},{"id":"NCBITaxon:2045217","l":"Candidatus Moranbacteria bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A5C7KV64-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A5C7KV64-F1-model_v4_TED05"],["TED%3AAF-A0A7T9K0N2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7T9K0N2-F1-model_v4_TED02"],["TED%3AAF-A0A7V6WJZ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V6WJZ0-F1-model_v4_TED01"],["TED%3AAF-A0A7X6WRF8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7X6WRF8-F1-model_v4_TED03"],["TED%3AAF-A0A7C0UIF6-F1-model_v4_TED01","TED novel fold AF-A0A7C0UIF6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2045217","Candidatus Moraniibacteriota bacterium"]]},{"id":"NCBITaxon:2052148","l":"candidate division WOR-3 bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A7C0VCF3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C0VCF3-F1-model_v4_TED01"],["TED%3AAF-A0A7V0XFP2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7V0XFP2-F1-model_v4_TED02"],["TED%3AAF-A0A7C4YHW3-F1-model_v4_TED02","TED novel fold AF-A0A7C4YHW3-F1-model_v4_TED02"],["TED%3AAF-A0A7V3KPS3-F1-model_v4_TED01","TED novel fold AF-A0A7V3KPS3-F1-model_v4_TED01"],["TED%3AAF-A0A7V3RFT1-F1-model_v4_TED02","TED novel fold AF-A0A7V3RFT1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2052148","Caldifarciminota bacterium"]]},{"id":"NCBITaxon:2052181","l":"Planctomycetia bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A3D3KNQ9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D3KNQ9-F1-model_v4_TED02"],["TED%3AAF-A0A7L9BX08-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7L9BX08-F1-model_v4_TED01"],["TED%3AAF-A0A7S6M8R0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S6M8R0-F1-model_v4_TED01"],["TED%3AAF-A0A4P5WR48-F1-model_v4_TED01","TED novel fold AF-A0A4P5WR48-F1-model_v4_TED01"],["TED%3AAF-A0A7L9C6V5-F1-model_v4_TED01","TED novel fold AF-A0A7L9C6V5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052181","Planctomycetia bacterium"]]},{"id":"NCBITaxon:2053627","l":"Syntrophomonas sp.","na":5,"nb":1,"a":[["TED%3AAF-A0A356U822-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A356U822-F1-model_v4_TED01"],["TED%3AAF-A0A356ZAA2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A356ZAA2-F1-model_v4_TED01"],["TED%3AAF-A0A3B8HTV0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3B8HTV0-F1-model_v4_TED02"],["TED%3AAF-A0A356UEY7-F1-model_v4_TED01","TED novel fold AF-A0A356UEY7-F1-model_v4_TED01"],["TED%3AAF-A0A356Z3H4-F1-model_v4_TED02","TED novel fold AF-A0A356Z3H4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053627","Syntrophomonas sp."]]},{"id":"NCBITaxon:2080303","l":"Dadabacteria bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A3M1VQ27-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M1VQ27-F1-model_v4_TED01"],["TED%3AAF-A0A3M1VUL2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M1VUL2-F1-model_v4_TED01"],["TED%3AAF-A0A7V1ZJV8-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A7V1ZJV8-F1-model_v4_TED05"],["TED%3AAF-A0A3M1FT61-F1-model_v4_TED01","TED novel fold AF-A0A3M1FT61-F1-model_v4_TED01"],["TED%3AAF-A0A3M1VQ71-F1-model_v4_TED01","TED novel fold AF-A0A3M1VQ71-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2080303","Candidatus Dadabacteria bacterium"]]},{"id":"NCBITaxon:2081524","l":"Chlamydiota bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A6M1ZCM9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6M1ZCM9-F1-model_v4_TED02"],["TED%3AAF-A0A7X5TAS2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7X5TAS2-F1-model_v4_TED02"],["TED%3AAF-A0A7X5TCW0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7X5TCW0-F1-model_v4_TED02"],["TED%3AAF-A0A6M1ZLH8-F1-model_v4_TED01","TED novel fold AF-A0A6M1ZLH8-F1-model_v4_TED01"],["TED%3AAF-A0A6M1ZSE1-F1-model_v4_TED02","TED novel fold AF-A0A6M1ZSE1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2081524","Chlamydiota bacterium"]]},{"id":"NCBITaxon:2110","l":"Mycoplasmopsis agalactiae","na":1,"nb":5,"a":[["TED%3AAF-D3VRI4-F1-model_v4_TED01","TED novel fold AF-D3VRI4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2110","Mycoplasmopsis agalactiae"],["NCBITaxon%3A1110504","Mycoplasmopsis agalactiae 14628"],["NCBITaxon%3A347258","Mycoplasmopsis agalactiae 5632"],["NCBITaxon%3A347257","Mycoplasmopsis agalactiae PG2"],["NCBITaxon%3A452658","Mycoplasmopsis agalactiae VP20-L15/02"]]},{"id":"NCBITaxon:2138576","l":"Vitiosangium sp. (strain GDMCC 1.1324)","na":5,"nb":1,"a":[["Pfam%3APF12770","CHAT domain"],["Pfam%3APF26164","Bacterial Gasdermin Family"],["TED%3AAF-A0A2T4VC24-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T4VC24-F1-model_v4_TED01"],["TED%3AAF-A0A2T4VJ48-F1-model_v4_TED02","TED novel fold AF-A0A2T4VJ48-F1-model_v4_TED02"],["TED%3AAF-A0A2T4VKG0-F1-model_v4_TED01","TED novel fold AF-A0A2T4VKG0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2138576","Vitiosangium sp. GDMCC 1.1324"]]},{"id":"NCBITaxon:214684","l":"Cryptococcus deneoformans (strain JEC21 / ATCC MYA-565)","na":5,"nb":1,"a":[["Pfam%3APF28371","Clampless protein 1 N-terminal domain"],["Pfam%3APF28353","Clampless protein 1 C-terminal domain"],["Pfam%3APF11735","Cryptococcal mannosyltransferase 1"],["PROSITE%3APS01103","Aspartate-semialdehyde dehydrogenase signature"],["PROSITE%3APS00614","Indole-3-glycerol phosphate synthase signature"]],"b":[["NCBITaxon%3A214684","Cryptococcus deneoformans JEC21"]]},{"id":"NCBITaxon:2201156","l":"Acidimicrobiales bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A6B1B579-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6B1B579-F1-model_v4_TED02"],["TED%3AAF-A0A7Y3LKE7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y3LKE7-F1-model_v4_TED01"],["TED%3AAF-A0A7X7D9X0-F1-model_v4_TED02","TED novel fold AF-A0A7X7D9X0-F1-model_v4_TED02"],["TED%3AAF-A0A7Y2GLL1-F1-model_v4_TED01","TED novel fold AF-A0A7Y2GLL1-F1-model_v4_TED01"],["TED%3AAF-A0A7Y3LL73-F1-model_v4_TED02","TED novel fold AF-A0A7Y3LL73-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2201156","Acidimicrobiales bacterium"]]},{"id":"NCBITaxon:220668","l":"Lactiplantibacillus plantarum (strain ATCC BAA-793 / NCIMB 8826 / WCFS1)","na":5,"nb":1,"a":[["Pfam%3APF17727","CtsR C-terminal dimerization domain"],["Pfam%3APF05848","CtsR N-terminal HTH domain"],["Pfam%3APF14804","Jag N-terminus"],["Pfam%3APF09861","Lactate racemase N-terminal domain"],["Pfam%3APF21113","Lactate racemase C-terminal domain"]],"b":[["NCBITaxon%3A220668","Lactiplantibacillus plantarum WCFS1"]]},{"id":"NCBITaxon:2212469","l":"Calditrichota bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A3M1X9B8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M1X9B8-F1-model_v4_TED01"],["TED%3AAF-A0A3M1AWL8-F1-model_v4_TED02","TED novel fold AF-A0A3M1AWL8-F1-model_v4_TED02"],["TED%3AAF-A0A6H9L0R7-F1-model_v4_TED01","TED novel fold AF-A0A6H9L0R7-F1-model_v4_TED01"],["TED%3AAF-A0A6H9L8S3-F1-model_v4_TED01","TED novel fold AF-A0A6H9L8S3-F1-model_v4_TED01"],["TED%3AAF-A0A6H9LBC1-F1-model_v4_TED02","TED novel fold AF-A0A6H9LBC1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2212469","Calditrichota bacterium"]]},{"id":"NCBITaxon:221442","l":"Coccolithus braarudii","na":5,"nb":1,"a":[["TED%3AAF-A0A7S0L0L4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0L0L4-F1-model_v4_TED01"],["TED%3AAF-A0A7S0LI79-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0LI79-F1-model_v4_TED01"],["TED%3AAF-A0A7S0Q856-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0Q856-F1-model_v4_TED01"],["TED%3AAF-A0A7S0QA11-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0QA11-F1-model_v4_TED01"],["TED%3AAF-A0A7S0Q0N5-F1-model_v4_TED02","TED novel fold AF-A0A7S0Q0N5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A221442","Coccolithus braarudii"]]},{"id":"NCBITaxon:2420332","l":"Caldilineae bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A3M1EY42-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M1EY42-F1-model_v4_TED01"],["TED%3AAF-A0A3M1G2A4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M1G2A4-F1-model_v4_TED01"],["TED%3AAF-A0A3M1E9U3-F1-model_v4_TED03","TED novel fold AF-A0A3M1E9U3-F1-model_v4_TED03"],["TED%3AAF-A0A3M1F5B3-F1-model_v4_TED02","TED novel fold AF-A0A3M1F5B3-F1-model_v4_TED02"],["TED%3AAF-A0A7V2LNF5-F1-model_v4_TED02","TED novel fold AF-A0A7V2LNF5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2420332","Caldilineae bacterium"]]},{"id":"NCBITaxon:2448782","l":"Chloroflexia bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A7V9F8Q8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V9F8Q8-F1-model_v4_TED01"],["TED%3AAF-A0A7V9SE74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V9SE74-F1-model_v4_TED01"],["TED%3AAF-A0A7W0TW73-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A7W0TW73-F1-model_v4_TED06"],["TED%3AAF-A0A7V9KJ87-F1-model_v4_TED01","TED novel fold AF-A0A7V9KJ87-F1-model_v4_TED01"],["TED%3AAF-A0A7W0QRA7-F1-model_v4_TED03","TED novel fold AF-A0A7W0QRA7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2448782","Chloroflexia bacterium"]]},{"id":"NCBITaxon:2498093","l":"Muribaculaceae bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A4S4G8A7-F1-model_v4_TED01","TED novel fold AF-A0A4S4G8A7-F1-model_v4_TED01"],["TED%3AAF-A0A7J0A8S6-F1-model_v4_TED01","TED novel fold AF-A0A7J0A8S6-F1-model_v4_TED01"],["TED%3AAF-A0A7J0AHV0-F1-model_v4_TED04","TED novel fold AF-A0A7J0AHV0-F1-model_v4_TED04"],["TED%3AAF-A0A7J0AJE8-F1-model_v4_TED01","TED novel fold AF-A0A7J0AJE8-F1-model_v4_TED01"],["TED%3AAF-A0A7J0AX19-F1-model_v4_TED02","TED novel fold AF-A0A7J0AX19-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2498093","Muribaculaceae bacterium"]]},{"id":"NCBITaxon:256","l":"Myroides odoratus","na":1,"nb":5,"a":[["TED%3AAF-A0A378RV66-F1-model_v4_TED01","TED novel fold AF-A0A378RV66-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1820002","Bartonella mastomydis"],["NCBITaxon%3A76832","Myroides odoratimimus"],["NCBITaxon%3A256","Myroides odoratus"],["NCBITaxon%3A883155","Myroides odoratus CIP 103059"],["NCBITaxon%3A929704","Myroides odoratus DSM 2801"]]},{"id":"NCBITaxon:271","l":"Thermus aquaticus","na":1,"nb":5,"a":[["Pfam%3APF07669","Eco57I restriction-modification methylase"]],"b":[["NCBITaxon%3A271","Thermus aquaticus"],["NCBITaxon%3A1123387","Thermus aquaticus DSM 625"],["NCBITaxon%3A498848","Thermus aquaticus Y51MC23"],["NCBITaxon%3A274","Thermus thermophilus"],["NCBITaxon%3A300852","Thermus thermophilus HB8"]]},{"id":"NCBITaxon:278944","l":"Botryotinia narcissicola","na":5,"nb":1,"a":[["TED%3AAF-A0A4Z1HD61-F1-model_v4_TED02","TED novel fold AF-A0A4Z1HD61-F1-model_v4_TED02"],["TED%3AAF-A0A4Z1HKJ8-F1-model_v4_TED01","TED novel fold AF-A0A4Z1HKJ8-F1-model_v4_TED01"],["TED%3AAF-A0A4Z1HSA7-F1-model_v4_TED01","TED novel fold AF-A0A4Z1HSA7-F1-model_v4_TED01"],["TED%3AAF-A0A4Z1J0L2-F1-model_v4_TED01","TED novel fold AF-A0A4Z1J0L2-F1-model_v4_TED01"],["TED%3AAF-A0A4Z1JE74-F1-model_v4_TED01","TED novel fold AF-A0A4Z1JE74-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A278944","Botryotinia narcissicola"]]},{"id":"NCBITaxon:278959","l":"Opitutaceae bacterium TAV4","na":5,"nb":1,"a":[["TED%3AAF-A0A3R8KKA4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R8KKA4-F1-model_v4_TED01"],["TED%3AAF-A0A3R8QGI6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A3R8QGI6-F1-model_v4_TED04"],["TED%3AAF-A0A426CFE3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A426CFE3-F1-model_v4_TED01"],["TED%3AAF-A0A426CJA7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A426CJA7-F1-model_v4_TED01"],["TED%3AAF-A0A426CQ29-F1-model_v4_TED01","TED novel fold AF-A0A426CQ29-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A278959","Opitutaceae bacterium TAV4"]]},{"id":"NCBITaxon:2813651","l":"Orbilia oligospora","na":5,"nb":1,"a":[["TED%3AAF-A0A7C8QX08-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C8QX08-F1-model_v4_TED01"],["TED%3AAF-A0A6G1LQE8-F1-model_v4_TED01","TED novel fold AF-A0A6G1LQE8-F1-model_v4_TED01"],["TED%3AAF-A0A7C8K8Y3-F1-model_v4_TED01","TED novel fold AF-A0A7C8K8Y3-F1-model_v4_TED01"],["TED%3AAF-A0A7C8PM63-F1-model_v4_TED01","TED novel fold AF-A0A7C8PM63-F1-model_v4_TED01"],["TED%3AAF-A0A7C8QEL3-F1-model_v4_TED01","TED novel fold AF-A0A7C8QEL3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2813651","Orbilia oligospora"]]},{"id":"NCBITaxon:28151","l":"Serratia proteamaculans","na":1,"nb":5,"a":[["TED%3AAF-A0A4Z0DTE8-F1-model_v4_TED01","TED novel fold AF-A0A4Z0DTE8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A614","Serratia liquefaciens"],["NCBITaxon%3A28151","Serratia proteamaculans"],["NCBITaxon%3A1255585","Serratia proteamaculans 1C2F"],["NCBITaxon%3A399741","Serratia proteamaculans 568"],["NCBITaxon%3A137545","Serratia quinivorans"]]},{"id":"NCBITaxon:282459","l":"Staphylococcus aureus (strain MSSA476)","na":5,"nb":1,"a":[["Pfam%3APF21650","DNA primase DnaG, catalytic core, helical bundle"],["Pfam%3APF04507","Csa1 family"],["Pfam%3APF27280","EsaA helical domain"],["Pfam%3APF10661","WXG100 protein secretion system (Wss), protein EssA"],["PROSITE%3APS01327","Large-conductance mechanosensitive channels mscL family signature"]],"b":[["NCBITaxon%3A282459","Staphylococcus aureus subsp. aureus MSSA476"]]},{"id":"NCBITaxon:29363","l":"Clostridium paraputrificum","na":1,"nb":5,"a":[["TED%3AAF-A0A6N3ESK2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N3ESK2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29363","Clostridium paraputrificum"],["NCBITaxon%3A1280689","Clostridium paraputrificum AGR2156"],["NCBITaxon%3A1357390","Clostridium paraputrificum ETR2_15"],["NCBITaxon%3A1725","Corynebacterium xerosis"],["NCBITaxon%3A1223513","Corynebacterium xerosis NBRC 16721 = ATCC 373"]]},{"id":"NCBITaxon:296","l":"Pseudomonas fragi","na":1,"nb":5,"a":[["TED%3AAF-A0A449IS41-F1-model_v4_TED01","TED novel fold AF-A0A449IS41-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A296","Pseudomonas fragi"],["NCBITaxon%3A1255586","Pseudomonas fragi 1E26"],["NCBITaxon%3A1134475","Pseudomonas fragi A22"],["NCBITaxon%3A1136138","Pseudomonas fragi B25"],["NCBITaxon%3A1215101","Pseudomonas fragi NBRC 3458"]]},{"id":"NCBITaxon:32021","l":"Campylobacter jejuni subsp. doylei","na":1,"nb":5,"a":[["TED%3AAF-A0A381D4M6-F1-model_v4_TED01","TED novel fold AF-A0A381D4M6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A197","Campylobacter jejuni"],["NCBITaxon%3A32021","Campylobacter jejuni subsp. doylei"],["NCBITaxon%3A360109","Campylobacter jejuni subsp. doylei 269.97"],["NCBITaxon%3A1408360","Campylobacter jejuni subsp. doylei ATCC 49349"],["NCBITaxon%3A1070741","Campylobacter jejuni subsp. doylei str. RM3440"]]},{"id":"NCBITaxon:321314","l":"Salmonella choleraesuis (strain SC-B67)","na":5,"nb":1,"a":[["Pfam%3APF03100","CcmE domain"],["Pfam%3APF08884","Flagellin D3 domain"],["Pfam%3APF27117","FliB lysine N-methylase C-terminal domain"],["Pfam%3APF04741","InvH outer membrane lipoprotein"],["PROSITE%3APS01148","Uncharacterized protein family UPF0033 signature"]],"b":[["NCBITaxon%3A321314","Salmonella enterica subsp. enterica serovar Choleraesuis str. SC-B67"]]},{"id":"NCBITaxon:35818","l":"Helicobacter pullorum","na":1,"nb":5,"a":[["TED%3AAF-A0A1C0W344-F1-model_v4_TED01","TED novel fold AF-A0A1C0W344-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A35818","Helicobacter pullorum"],["NCBITaxon%3A585526","Helicobacter pullorum C1a"],["NCBITaxon%3A585527","Helicobacter pullorum C2a"],["NCBITaxon%3A537972","Helicobacter pullorum MIT 98-5489"],["NCBITaxon%3A552535","Helicobacter pullorum NCTC 12824"]]},{"id":"NCBITaxon:35828","l":"Fibrobacter sp.","na":5,"nb":1,"a":[["TED%3AAF-A0A7X7E2C0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X7E2C0-F1-model_v4_TED01"],["TED%3AAF-A0A7X7NJQ3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7X7NJQ3-F1-model_v4_TED03"],["TED%3AAF-A0A7X7P5S3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7X7P5S3-F1-model_v4_TED03"],["TED%3AAF-A0A847P247-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A847P247-F1-model_v4_TED01"],["TED%3AAF-A0A847NVS0-F1-model_v4_TED03","TED novel fold AF-A0A847NVS0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A35828","Fibrobacter sp."]]},{"id":"NCBITaxon:359786","l":"Staphylococcus aureus (strain JH9)","na":5,"nb":1,"a":[["Pfam%3APF04647","Accessory gene regulator B"],["Pfam%3APF07285","Protein of unknown function (DUF1444)"],["Pfam%3APF09902","Uncharacterized protein conserved in bacteria (DUF2129)"],["Pfam%3APF06874","Firmicute fructose-1,6-bisphosphatase"],["Pfam%3APF12127","Flotillin-like protein FloA"]],"b":[["NCBITaxon%3A359786","Staphylococcus aureus subsp. aureus JH9"]]},{"id":"NCBITaxon:361077","l":"Tieghemostelium lacteum","na":5,"nb":1,"a":[["TED%3AAF-A0A151Z3L8-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A151Z3L8-F1-model_v4_TED04"],["TED%3AAF-A0A151Z3Z9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A151Z3Z9-F1-model_v4_TED01"],["TED%3AAF-A0A151Z594-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A151Z594-F1-model_v4_TED02"],["TED%3AAF-A0A152A8X6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A152A8X6-F1-model_v4_TED01"],["TED%3AAF-A0A152A6H9-F1-model_v4_TED01","TED novel fold AF-A0A152A6H9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A361077","Tieghemostelium lacteum"]]},{"id":"NCBITaxon:376620","l":"Gluconobacter japonicus","na":1,"nb":5,"a":[["Pfam%3APF12318","Membrane bound FAD containing D-sorbitol dehydrogenase"]],"b":[["NCBITaxon%3A38307","Gluconobacter cerinus"],["NCBITaxon%3A38308","Gluconobacter frateurii"],["NCBITaxon%3A376620","Gluconobacter japonicus"],["NCBITaxon%3A1307947","Gluconobacter japonicus NBRC 3271"],["NCBITaxon%3A442","Gluconobacter oxydans"]]},{"id":"NCBITaxon:38294","l":"Photobacterium damselae subsp. piscicida","na":1,"nb":5,"a":[["TED%3AAF-A0A1V1VGA1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V1VGA1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A38293","Photobacterium damselae"],["NCBITaxon%3A38294","Photobacterium damselae subsp. piscicida"],["NCBITaxon%3A1200302","Photobacterium damselae subsp. piscicida DI21"],["NCBITaxon%3A406525","Photobacterium damselae subsp. piscicida PT99-018"],["NCBITaxon%3A406524","Photobacterium damselae subsp. piscicida USA91278"]]},{"id":"NCBITaxon:38301","l":"Corynebacterium minutissimum","na":1,"nb":5,"a":[["TED%3AAF-A0A376D050-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A376D050-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A43765","Corynebacterium amycolatum"],["NCBITaxon%3A169292","Corynebacterium aurimucosum"],["NCBITaxon%3A156978","Corynebacterium imitans"],["NCBITaxon%3A38301","Corynebacterium minutissimum"],["NCBITaxon%3A1223512","Corynebacterium minutissimum NBRC 15361"]]},{"id":"NCBITaxon:393133","l":"Listeria monocytogenes serotype 1/2a (strain 10403S)","na":5,"nb":1,"a":[["Pfam%3APF07698","7TM receptor with intracellular HD hydrolase"],["Pfam%3APF07697","7TM-HD extracellular"],["Pfam%3APF24898","Cyclic-di-AMP phosphodiesterase GdpP-like, GGDEF domain"],["Pfam%3APF19293","CdaA N-terminal transmembrane domain"],["Pfam%3APF04346","Ethanolamine utilisation protein, EutH"]],"b":[["NCBITaxon%3A393133","Listeria monocytogenes 10403S"]]},{"id":"NCBITaxon:394096","l":"Hyalangium minutum","na":5,"nb":1,"a":[["TED%3AAF-A0A085W4M3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085W4M3-F1-model_v4_TED01"],["TED%3AAF-A0A085WRA7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085WRA7-F1-model_v4_TED01"],["TED%3AAF-A0A085WWM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085WWM4-F1-model_v4_TED01"],["TED%3AAF-A0A085W7S5-F1-model_v4_TED03","TED novel fold AF-A0A085W7S5-F1-model_v4_TED03"],["TED%3AAF-A0A085WH04-F1-model_v4_TED01","TED novel fold AF-A0A085WH04-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A394096","Hyalangium minutum"]]},{"id":"NCBITaxon:39492","l":"[Eubacterium] siraeum","na":1,"nb":5,"a":[["TED%3AAF-A0A175A0B4-F1-model_v4_TED03","TED novel fold AF-A0A175A0B4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A39492","[Eubacterium] siraeum"],["NCBITaxon%3A657319","[Eubacterium] siraeum 70/3"],["NCBITaxon%3A1263080","[Eubacterium] siraeum CAG:80"],["NCBITaxon%3A428128","[Eubacterium] siraeum DSM 15702"],["NCBITaxon%3A717961","[Eubacterium] siraeum V10Sc8a"]]},{"id":"NCBITaxon:39650","l":"Cellvibrio mixtus","na":1,"nb":5,"a":[["TED%3AAF-A0A266QDL6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A266QDL6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A39650","Cellvibrio mixtus"],["NCBITaxon%3A180904","Cellvibrio mixtus subsp. dextranolyticus"],["NCBITaxon%3A126346","Cellvibrio mixtus subsp. mixtus"],["NCBITaxon%3A1209072","Cellvibrio mixtus subsp. mixtus J3-8"],["NCBITaxon%3A180915","Cellvibrio vulgaris"]]},{"id":"NCBITaxon:397291","l":"Lachnospiraceae bacterium A4","na":5,"nb":1,"a":[["TED%3AAF-R9IPI4-F1-model_v4_TED03","TED highly-symmetric fold AF-R9IPI4-F1-model_v4_TED03"],["TED%3AAF-R9JGJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-R9JGJ9-F1-model_v4_TED01"],["TED%3AAF-R9J569-F1-model_v4_TED03","TED novel fold AF-R9J569-F1-model_v4_TED03"],["TED%3AAF-R9JGL1-F1-model_v4_TED01","TED novel fold AF-R9JGL1-F1-model_v4_TED01"],["TED%3AAF-R9JR00-F1-model_v4_TED01","TED novel fold AF-R9JR00-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A397291","Lachnospiraceae bacterium A4"]]},{"id":"NCBITaxon:406548","l":"Aquisphaera giovannonii","na":5,"nb":1,"a":[["TED%3AAF-A0A5B9VUK0-F1-model_v4_TED01","TED novel fold AF-A0A5B9VUK0-F1-model_v4_TED01"],["TED%3AAF-A0A5B9VZ73-F1-model_v4_TED01","TED novel fold AF-A0A5B9VZ73-F1-model_v4_TED01"],["TED%3AAF-A0A5B9VZ88-F1-model_v4_TED02","TED novel fold AF-A0A5B9VZ88-F1-model_v4_TED02"],["TED%3AAF-A0A5B9W7W9-F1-model_v4_TED01","TED novel fold AF-A0A5B9W7W9-F1-model_v4_TED01"],["TED%3AAF-A0A5B9WD91-F1-model_v4_TED02","TED novel fold AF-A0A5B9WD91-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A406548","Aquisphaera giovannonii"]]},{"id":"NCBITaxon:408170","l":"human gut metagenome","na":5,"nb":1,"a":[["TED%3AAF-K1SHE9-F1-model_v4_TED01","TED highly-symmetric fold AF-K1SHE9-F1-model_v4_TED01"],["TED%3AAF-K1U1H4-F1-model_v4_TED01","TED highly-symmetric fold AF-K1U1H4-F1-model_v4_TED01"],["TED%3AAF-K1RVA2-F1-model_v4_TED01","TED novel fold AF-K1RVA2-F1-model_v4_TED01"],["TED%3AAF-K1TLH8-F1-model_v4_TED01","TED novel fold AF-K1TLH8-F1-model_v4_TED01"],["TED%3AAF-K1TUJ9-F1-model_v4_TED01","TED novel fold AF-K1TUJ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A408170","human gut metagenome"]]},{"id":"NCBITaxon:43263","l":"Aquipseudomonas alcaligenes","na":1,"nb":5,"a":[["TED%3AAF-A0A7W7JBX8-F1-model_v4_TED01","TED novel fold AF-A0A7W7JBX8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A43263","Aquipseudomonas alcaligenes"],["NCBITaxon%3A1405803","Aquipseudomonas alcaligenes MRY13-0052"],["NCBITaxon%3A1215092","Aquipseudomonas alcaligenes NBRC 14159"],["NCBITaxon%3A1333854","Aquipseudomonas alcaligenes OT 69"],["NCBITaxon%3A28094","Trinickia caryophylli"]]},{"id":"NCBITaxon:44252","l":"Paenibacillus macerans","na":1,"nb":5,"a":[["TED%3AAF-A0A6N8EWI4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A6N8EWI4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A266009","Methylovorus glucosotrophus"],["NCBITaxon%3A343517","Paenibacillus barengoltzii"],["NCBITaxon%3A44252","Paenibacillus macerans"],["NCBITaxon%3A1349781","Paenibacillus macerans NBRC 15307"],["NCBITaxon%3A58172","Paenibacillus sp."]]},{"id":"NCBITaxon:44941","l":"Gigaspora rosea","na":5,"nb":1,"a":[["TED%3AAF-A0A397UBJ2-F1-model_v4_TED02","TED novel fold AF-A0A397UBJ2-F1-model_v4_TED02"],["TED%3AAF-A0A397UPX2-F1-model_v4_TED01","TED novel fold AF-A0A397UPX2-F1-model_v4_TED01"],["TED%3AAF-A0A397V7N4-F1-model_v4_TED01","TED novel fold AF-A0A397V7N4-F1-model_v4_TED01"],["TED%3AAF-A0A397VB64-F1-model_v4_TED01","TED novel fold AF-A0A397VB64-F1-model_v4_TED01"],["TED%3AAF-A0A397VR16-F1-model_v4_TED01","TED novel fold AF-A0A397VR16-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A44941","Gigaspora rosea"]]},{"id":"NCBITaxon:473421","l":"Xanthomonas citri pv. glycines","na":1,"nb":5,"a":[["PROSITE%3APS01060","Flagella transport protein fliP family signature 1"]],"b":[["NCBITaxon%3A473421","Xanthomonas citri pv. glycines"],["NCBITaxon%3A1365648","Xanthomonas citri pv. glycines CFBP 2526"],["NCBITaxon%3A1365649","Xanthomonas citri pv. glycines CFBP 7119"],["NCBITaxon%3A1150615","Xanthomonas citri pv. glycines str. 12-2"],["NCBITaxon%3A1401257","Xanthomonas citri pv. glycines str. 8ra"]]},{"id":"NCBITaxon:47427","l":"Armillaria gallica","na":5,"nb":1,"a":[["TED%3AAF-A0A2H3CFH3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H3CFH3-F1-model_v4_TED02"],["TED%3AAF-A0A2H3DFZ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H3DFZ3-F1-model_v4_TED01"],["TED%3AAF-A0A2H3DTE1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H3DTE1-F1-model_v4_TED02"],["TED%3AAF-A0A2H3E1R0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H3E1R0-F1-model_v4_TED02"],["TED%3AAF-A0A2H3CX67-F1-model_v4_TED02","TED novel fold AF-A0A2H3CX67-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A47427","Armillaria gallica"]]},{"id":"NCBITaxon:4846","l":"Rhizopus stolonifer","na":5,"nb":1,"a":[["TED%3AAF-A0A367KJ25-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A367KJ25-F1-model_v4_TED02"],["TED%3AAF-A0A367KTA1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A367KTA1-F1-model_v4_TED01"],["TED%3AAF-A0A367J2U8-F1-model_v4_TED03","TED novel fold AF-A0A367J2U8-F1-model_v4_TED03"],["TED%3AAF-A0A367J367-F1-model_v4_TED01","TED novel fold AF-A0A367J367-F1-model_v4_TED01"],["TED%3AAF-A0A367JRQ7-F1-model_v4_TED01","TED novel fold AF-A0A367JRQ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A4846","Rhizopus stolonifer"]]},{"id":"NCBITaxon:488447","l":"Burkholderia contaminans","na":1,"nb":5,"a":[["TED%3AAF-A0A3N8RI51-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N8RI51-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A488447","Burkholderia contaminans"],["NCBITaxon%3A1423418","Burkholderia contaminans FFH2050"],["NCBITaxon%3A1423419","Burkholderia contaminans FFH2055"],["NCBITaxon%3A1334628","Burkholderia contaminans LMG 23361"],["NCBITaxon%3A36773","Burkholderia sp."]]},{"id":"NCBITaxon:498019","l":"","na":5,"nb":1,"a":[["Pfam%3APF10182","Flo11 domain"],["Pfam%3APF15789","Hyphally regulated cell wall GPI-anchored protein 1"],["TED%3AAF-A0A0L0NR05-F1-model_v4_TED02","TED novel fold AF-A0A0L0NR05-F1-model_v4_TED02"],["TED%3AAF-A0A510NYC2-F1-model_v4_TED01","TED novel fold AF-A0A510NYC2-F1-model_v4_TED01"],["TED%3AAF-A0A5Q7YF59-F1-model_v4_TED03","TED novel fold AF-A0A5Q7YF59-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A498019","Candidozyma auris"]]},{"id":"NCBITaxon:502800","l":"Yersinia pseudotuberculosis serotype O:3 (strain YPIII)","na":5,"nb":1,"a":[["Pfam%3APF03421","YopJ Serine/Threonine acetyltransferase"],["Pfam%3APF21111","CDI toxin restriction endonuclease-like domain"],["Pfam%3APF21483","Toxin CdiA-like, helical domain"],["Pfam%3APF07262","CDI immunity protein"],["Pfam%3APF16374","Cycle inhibiting factor (CIF)"]],"b":[["NCBITaxon%3A502800","Yersinia pseudotuberculosis YPIII"]]},{"id":"NCBITaxon:5081","l":"","na":5,"nb":1,"a":[["Pfam%3APF13364","Beta-galactosidase second all-beta domain"],["Pfam%3APF10435","Beta-galactosidase, domain 2"],["Pfam%3APF13363","Beta-galactosidase, domain 3"],["Pfam%3APF01301","Glycosyl hydrolases family 35"],["PROSITE%3APS01182","Glycosyl hydrolases family 35 putative active site"]],"b":[["NCBITaxon%3A5081","Penicillium sp."]]},{"id":"NCBITaxon:5454","l":"","na":5,"nb":1,"a":[["TED%3AAF-A0A162YC52-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A162YC52-F1-model_v4_TED01"],["TED%3AAF-A0A163JCD7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A163JCD7-F1-model_v4_TED01"],["TED%3AAF-A0A163LJZ7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A163LJZ7-F1-model_v4_TED02"],["TED%3AAF-A0A163LQ36-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A163LQ36-F1-model_v4_TED01"],["TED%3AAF-A0A163M9G4-F1-model_v4_TED01","TED novel fold AF-A0A163M9G4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5454","Ascochyta rabiei"]]},{"id":"NCBITaxon:5762","l":"Naegleria gruberi","na":5,"nb":1,"a":[["TED%3AAF-D2VJ76-F1-model_v4_TED03","TED highly-symmetric fold AF-D2VJ76-F1-model_v4_TED03"],["TED%3AAF-D2VTQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-D2VTQ3-F1-model_v4_TED01"],["TED%3AAF-D2VYX3-F1-model_v4_TED01","TED highly-symmetric fold AF-D2VYX3-F1-model_v4_TED01"],["TED%3AAF-D2VGJ9-F1-model_v4_TED02","TED novel fold AF-D2VGJ9-F1-model_v4_TED02"],["TED%3AAF-D2VJ05-F1-model_v4_TED02","TED novel fold AF-D2VJ05-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A5762","Naegleria gruberi"]]},{"id":"NCBITaxon:588858","l":"Salmonella typhimurium (strain 14028s / SGSC 2262)","na":5,"nb":1,"a":[["Pfam%3APF13508","Acetyltransferase (GNAT) domain"],["Pfam%3APF10995","Cellulose biosynthesis protein BcsE, N-terminal domain"],["Pfam%3APF26769","Sensor protein PhoQ-like, HAMP domain"],["Pfam%3APF07071","KDGP aldolase"],["PROSITE%3APS01195","Peptidyl-tRNA hydrolase signature 1"]],"b":[["NCBITaxon%3A588858","Salmonella enterica subsp. enterica serovar Typhimurium str. 14028S"]]},{"id":"NCBITaxon:63737","l":"Nostoc punctiforme PCC 73102","na":5,"nb":1,"a":[["Pfam%3APF11266","Long-chain fatty aldehyde decarbonylase"],["Pfam%3APF21808","Bacterial dynamin-like protein, helical domain"],["Pfam%3APF18460","Heterocyst differentiation regulator C-terminal Hood domain"],["Pfam%3APF13619","KTSC domain"],["PROSITE%3APS01026","Photosystem I psaG and psaK proteins signature"]],"b":[["NCBITaxon%3A63737","Nostoc punctiforme PCC 73102"]]},{"id":"NCBITaxon:73025","l":"Eutreptiella gymnastica","na":5,"nb":1,"a":[["TED%3AAF-A0A7S1IWD8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S1IWD8-F1-model_v4_TED03"],["TED%3AAF-A0A7S4GLI6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S4GLI6-F1-model_v4_TED02"],["TED%3AAF-A0A7S1J4P7-F1-model_v4_TED01","TED novel fold AF-A0A7S1J4P7-F1-model_v4_TED01"],["TED%3AAF-A0A7S1NTX7-F1-model_v4_TED01","TED novel fold AF-A0A7S1NTX7-F1-model_v4_TED01"],["TED%3AAF-A0A7S4GF48-F1-model_v4_TED02","TED novel fold AF-A0A7S4GF48-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A73025","Eutreptiella gymnastica"]]},{"id":"NCBITaxon:735","l":"Haemophilus parahaemolyticus","na":1,"nb":5,"a":[["Pfam%3APF13391","HNH endonuclease"]],"b":[["NCBITaxon%3A735","Haemophilus parahaemolyticus"],["NCBITaxon%3A1430896","Haemophilus parahaemolyticus G321"],["NCBITaxon%3A1095744","Haemophilus parahaemolyticus HK385"],["NCBITaxon%3A736","Haemophilus paraphrohaemolyticus"],["NCBITaxon%3A1078480","Haemophilus sputorum"]]},{"id":"NCBITaxon:758","l":"Rodentibacter pneumotropicus","na":1,"nb":5,"a":[["TED%3AAF-A0A6L9GQA8-F1-model_v4_TED01","TED novel fold AF-A0A6L9GQA8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A301","Ectopseudomonas oleovorans"],["NCBITaxon%3A1215116","Ectopseudomonas oleovorans NBRC 14167"],["NCBITaxon%3A1796644","Rodentibacter caecimuris"],["NCBITaxon%3A758","Rodentibacter pneumotropicus"],["NCBITaxon%3A1122936","Rodentibacter pneumotropicus DSM 21403"]]},{"id":"NCBITaxon:76594","l":"Cellulophaga baltica","na":1,"nb":5,"a":[["TED%3AAF-A0A1G7LG86-F1-model_v4_TED01","TED novel fold AF-A0A1G7LG86-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A76594","Cellulophaga baltica"],["NCBITaxon%3A1348583","Cellulophaga baltica 13"],["NCBITaxon%3A1348584","Cellulophaga baltica 18"],["NCBITaxon%3A1348582","Cellulophaga baltica 4"],["NCBITaxon%3A1348585","Cellulophaga baltica NN016038"]]},{"id":"NCBITaxon:76856","l":"Fusobacterium nucleatum subsp. nucleatum","na":1,"nb":5,"a":[["TED%3AAF-A0A101K510-F1-model_v4_TED01","TED novel fold AF-A0A101K510-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A851","Fusobacterium nucleatum"],["NCBITaxon%3A76856","Fusobacterium nucleatum subsp. nucleatum"],["NCBITaxon%3A525283","Fusobacterium nucleatum subsp. nucleatum ATCC 23726"],["NCBITaxon%3A190304","Fusobacterium nucleatum subsp. nucleatum ATCC 25586"],["NCBITaxon%3A1307428","Fusobacterium nucleatum subsp. nucleatum ChDC F316"]]},{"id":"NCBITaxon:786","l":"Rickettsia akari","na":1,"nb":5,"a":[["Pfam%3APF12574","120 KDa Rickettsia surface antigen"]],"b":[["NCBITaxon%3A786","Rickettsia akari"],["NCBITaxon%3A1359190","Rickettsia akari str. AS4-1"],["NCBITaxon%3A1359191","Rickettsia akari str. Croatia"],["NCBITaxon%3A293614","Rickettsia akari str. Hartford"],["NCBITaxon%3A1359192","Rickettsia akari str. Toger"]]},{"id":"NCBITaxon:82367","l":"Paracoccus pantotrophus","na":1,"nb":5,"a":[["Pfam%3APF17805","AsnC-like ligand binding domain"]],"b":[["NCBITaxon%3A266","Paracoccus denitrificans"],["NCBITaxon%3A1302247","Paracoccus denitrificans JCM 21484"],["NCBITaxon%3A82367","Paracoccus pantotrophus"],["NCBITaxon%3A936051","Paracoccus pantotrophus J40"],["NCBITaxon%3A935565","Paracoccus pantotrophus J46"]]},{"id":"NCBITaxon:863","l":"Syntrophomonas wolfei","na":1,"nb":5,"a":[["TED%3AAF-A0A354YY78-F1-model_v4_TED03","TED novel fold AF-A0A354YY78-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A863","Syntrophomonas wolfei"],["NCBITaxon%3A378794","Syntrophomonas wolfei subsp. methylbutyratica"],["NCBITaxon%3A373074","Syntrophomonas wolfei subsp. saponavida"],["NCBITaxon%3A370885","Syntrophomonas wolfei subsp. wolfei"],["NCBITaxon%3A335541","Syntrophomonas wolfei subsp. wolfei str. Goettingen G311"]]},{"id":"NCBITaxon:97359","l":"Auriculariopsis ampla","na":5,"nb":1,"a":[["TED%3AAF-A0A550BT88-F1-model_v4_TED02","TED novel fold AF-A0A550BT88-F1-model_v4_TED02"],["TED%3AAF-A0A550C1Q6-F1-model_v4_TED01","TED novel fold AF-A0A550C1Q6-F1-model_v4_TED01"],["TED%3AAF-A0A550C8V2-F1-model_v4_TED01","TED novel fold AF-A0A550C8V2-F1-model_v4_TED01"],["TED%3AAF-A0A550CST1-F1-model_v4_TED02","TED novel fold AF-A0A550CST1-F1-model_v4_TED02"],["TED%3AAF-A0A550CVG0-F1-model_v4_TED01","TED novel fold AF-A0A550CVG0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A97359","Schizophyllum amplum"]]},{"id":"NCBITaxon:97972","l":"Periconia macrospinosa","na":5,"nb":1,"a":[["TED%3AAF-A0A2V1CWF6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V1CWF6-F1-model_v4_TED01"],["TED%3AAF-A0A2V1CWR1-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A2V1CWR1-F1-model_v4_TED05"],["TED%3AAF-A0A2V1D579-F1-model_v4_TED02","TED novel fold AF-A0A2V1D579-F1-model_v4_TED02"],["TED%3AAF-A0A2V1D6F3-F1-model_v4_TED01","TED novel fold AF-A0A2V1D6F3-F1-model_v4_TED01"],["TED%3AAF-A0A2V1DKR2-F1-model_v4_TED02","TED novel fold AF-A0A2V1DKR2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A97972","Periconia macrospinosa"]]},{"id":"NCBITaxon:986","l":"Flavobacterium johnsoniae","na":1,"nb":5,"a":[["TED%3AAF-A0A1J7BWE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1J7BWE6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2704140","Flavobacterium bizetiae"],["NCBITaxon%3A986","Flavobacterium johnsoniae"],["NCBITaxon%3A994","Flavobacterium johnsoniae subsp. aurantiacum"],["NCBITaxon%3A376686","Flavobacterium johnsoniae UW101"],["NCBITaxon%3A1337839","Flavobacterium sp. DSM 425"]]},{"id":"NCBITaxon:100816","l":"Madurella mycetomatis","na":4,"nb":1,"a":[["IDPO%3A0000033","flexible linker"],["TED%3AAF-A0A175WFF5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A175WFF5-F1-model_v4_TED02"],["TED%3AAF-A0A175VN21-F1-model_v4_TED04","TED novel fold AF-A0A175VN21-F1-model_v4_TED04"],["TED%3AAF-A0A175VW88-F1-model_v4_TED02","TED novel fold AF-A0A175VW88-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A100816","Madurella mycetomatis"]]},{"id":"NCBITaxon:108980","l":"Acinetobacter ursingii","na":1,"nb":4,"a":[["TED%3AAF-A0A3F3LBR7-F1-model_v4_TED01","TED novel fold AF-A0A3F3LBR7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A108980","Acinetobacter ursingii"],["NCBITaxon%3A1257043","Acinetobacter ursingii ANC 3649"],["NCBITaxon%3A981336","Acinetobacter ursingii DSM 16037 = CIP 107286"],["NCBITaxon%3A1217716","Acinetobacter ursingii NIPH 706"]]},{"id":"NCBITaxon:108981","l":"Acinetobacter schindleri","na":1,"nb":4,"a":[["TED%3AAF-A0A855WCB4-F1-model_v4_TED02","TED novel fold AF-A0A855WCB4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A108981","Acinetobacter schindleri"],["NCBITaxon%3A1217988","Acinetobacter schindleri CIP 107287"],["NCBITaxon%3A1217675","Acinetobacter schindleri NIPH 900"],["NCBITaxon%3A1221311","Acinetobacter schindleri TG19614"]]},{"id":"NCBITaxon:1095630","l":"Hyaloscypha bicolor E","na":4,"nb":1,"a":[["TED%3AAF-A0A2J6SZK6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2J6SZK6-F1-model_v4_TED02"],["TED%3AAF-A0A2J6TXE7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J6TXE7-F1-model_v4_TED01"],["TED%3AAF-A0A2J6TLU9-F1-model_v4_TED03","TED novel fold AF-A0A2J6TLU9-F1-model_v4_TED03"],["TED%3AAF-A0A2J6TUE6-F1-model_v4_TED02","TED novel fold AF-A0A2J6TUE6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1095630","Hyaloscypha bicolor E"]]},{"id":"NCBITaxon:1148157","l":"Acinetobacter oleivorans","na":1,"nb":4,"a":[["TED%3AAF-A0A0B2UAV2-F1-model_v4_TED02","TED novel fold AF-A0A0B2UAV2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1148157","Acinetobacter oleivorans"],["NCBITaxon%3A1391912","Acinetobacter oleivorans CIP 110421"],["NCBITaxon%3A436717","Acinetobacter oleivorans DR1"],["NCBITaxon%3A472","Acinetobacter sp."]]},{"id":"NCBITaxon:1214573","l":"Diaporthe ampelina","na":4,"nb":1,"a":[["TED%3AAF-A0A0G2HYY7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G2HYY7-F1-model_v4_TED01"],["TED%3AAF-A0A0G2FLY8-F1-model_v4_TED02","TED novel fold AF-A0A0G2FLY8-F1-model_v4_TED02"],["TED%3AAF-A0A0G2FPQ9-F1-model_v4_TED02","TED novel fold AF-A0A0G2FPQ9-F1-model_v4_TED02"],["TED%3AAF-A0A0G2HNR1-F1-model_v4_TED01","TED novel fold AF-A0A0G2HNR1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1214573","Diaporthe ampelina"]]},{"id":"NCBITaxon:121719","l":"Pannonibacter phragmitetus","na":1,"nb":4,"a":[["TED%3AAF-A0A0U3EPB7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0U3EPB7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A134375","Achromobacter sp."],["NCBITaxon%3A121719","Pannonibacter phragmitetus"],["NCBITaxon%3A1402210","Pannonibacter phragmitetus BB"],["NCBITaxon%3A1122929","Pannonibacter phragmitetus DSM 14782"]]},{"id":"NCBITaxon:1231657","l":"Clohesyomyces aquaticus","na":4,"nb":1,"a":[["TED%3AAF-A0A1Y1ZK11-F1-model_v4_TED01","TED novel fold AF-A0A1Y1ZK11-F1-model_v4_TED01"],["TED%3AAF-A0A1Y1ZYS0-F1-model_v4_TED01","TED novel fold AF-A0A1Y1ZYS0-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2A1E6-F1-model_v4_TED03","TED novel fold AF-A0A1Y2A1E6-F1-model_v4_TED03"],["TED%3AAF-A0A1Y2A232-F1-model_v4_TED01","TED novel fold AF-A0A1Y2A232-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1231657","Clohesyomyces aquaticus"]]},{"id":"NCBITaxon:1235793","l":"Lachnospiraceae bacterium MD335","na":4,"nb":1,"a":[["TED%3AAF-A0A7X5RDY3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X5RDY3-F1-model_v4_TED01"],["TED%3AAF-R9K9C1-F1-model_v4_TED01","TED highly-symmetric fold AF-R9K9C1-F1-model_v4_TED01"],["TED%3AAF-R9K5A2-F1-model_v4_TED02","TED novel fold AF-R9K5A2-F1-model_v4_TED02"],["TED%3AAF-R9KI55-F1-model_v4_TED01","TED novel fold AF-R9KI55-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1235793","Lachnospiraceae bacterium MD335"]]},{"id":"NCBITaxon:1294122","l":"Nanobsidianus stetteri","na":4,"nb":1,"a":[["TED%3AAF-R1E4D6-F1-model_v4_TED02","TED highly-symmetric fold AF-R1E4D6-F1-model_v4_TED02"],["TED%3AAF-R1GAD9-F1-model_v4_TED01","TED highly-symmetric fold AF-R1GAD9-F1-model_v4_TED01"],["TED%3AAF-A0A2T9WKI4-F1-model_v4_TED01","TED novel fold AF-A0A2T9WKI4-F1-model_v4_TED01"],["TED%3AAF-A0A2T9WL51-F1-model_v4_TED01","TED novel fold AF-A0A2T9WL51-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1294122","Candidatus Nanobsidianus stetteri"]]},{"id":"NCBITaxon:13221","l":"Chrysotila carterae","na":4,"nb":1,"a":[["TED%3AAF-A0A7S4BGL5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4BGL5-F1-model_v4_TED01"],["TED%3AAF-A0A7S4FAB1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4FAB1-F1-model_v4_TED01"],["TED%3AAF-A0A7S4BZI9-F1-model_v4_TED01","TED novel fold AF-A0A7S4BZI9-F1-model_v4_TED01"],["TED%3AAF-A0A7S4C065-F1-model_v4_TED02","TED novel fold AF-A0A7S4C065-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A13221","Chrysotila carterae"]]},{"id":"NCBITaxon:1353","l":"Enterococcus gallinarum","na":1,"nb":4,"a":[["Pfam%3APF01757","Acyltransferase domain"]],"b":[["NCBITaxon%3A1353","Enterococcus gallinarum"],["NCBITaxon%3A565653","Enterococcus gallinarum EG2"],["NCBITaxon%3A1357296","Enterococcus gallinarum EGD-AAK12"],["NCBITaxon%3A1218091","Enterococcus gallinarum NBRC 100675"]]},{"id":"NCBITaxon:1353891","l":"Achromobacter deleyi","na":1,"nb":4,"a":[["TED%3AAF-A0A7Y4KA77-F1-model_v4_TED01","TED novel fold AF-A0A7Y4KA77-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1353891","Achromobacter deleyi"],["NCBITaxon%3A32002","Achromobacter denitrificans"],["NCBITaxon%3A72556","Achromobacter piechaudii"],["NCBITaxon%3A85698","Achromobacter xylosoxidans"]]},{"id":"NCBITaxon:137584","l":"Thalassomonas viridans","na":4,"nb":1,"a":[["TED%3AAF-A0A0D8CPR2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D8CPR2-F1-model_v4_TED01"],["TED%3AAF-A0A0D8CLZ9-F1-model_v4_TED01","TED novel fold AF-A0A0D8CLZ9-F1-model_v4_TED01"],["TED%3AAF-A0A0D8D8E8-F1-model_v4_TED02","TED novel fold AF-A0A0D8D8E8-F1-model_v4_TED02"],["TED%3AAF-A0A0D8DAF2-F1-model_v4_TED01","TED novel fold AF-A0A0D8DAF2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A137584","Thalassomonas viridans"]]},{"id":"NCBITaxon:1411316","l":"Pedobacter sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A520IH20-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A520IH20-F1-model_v4_TED02"],["TED%3AAF-A0A519VYD0-F1-model_v4_TED02","TED novel fold AF-A0A519VYD0-F1-model_v4_TED02"],["TED%3AAF-A0A520CAS2-F1-model_v4_TED01","TED novel fold AF-A0A520CAS2-F1-model_v4_TED01"],["TED%3AAF-A0A520GU64-F1-model_v4_TED01","TED novel fold AF-A0A520GU64-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1411316","Pedobacter sp."]]},{"id":"NCBITaxon:1469910","l":"Ophiobolus disseminans","na":4,"nb":1,"a":[["TED%3AAF-A0A6A6ZF39-F1-model_v4_TED01","TED novel fold AF-A0A6A6ZF39-F1-model_v4_TED01"],["TED%3AAF-A0A6A6ZQ10-F1-model_v4_TED01","TED novel fold AF-A0A6A6ZQ10-F1-model_v4_TED01"],["TED%3AAF-A0A6A7A7Q3-F1-model_v4_TED02","TED novel fold AF-A0A6A7A7Q3-F1-model_v4_TED02"],["TED%3AAF-A0A6A7AM34-F1-model_v4_TED01","TED novel fold AF-A0A6A7AM34-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1469910","Ophiobolus disseminans"]]},{"id":"NCBITaxon:147","l":"Spirochaeta aurantia","na":1,"nb":4,"a":[["Pfam%3APF06226","Protein of unknown function (DUF1007)"]],"b":[["NCBITaxon%3A147","Spirochaeta aurantia"],["NCBITaxon%3A143778","Spirochaeta aurantia subsp. aurantia"],["NCBITaxon%3A555314","Spirochaeta aurantia subsp. aurantia M1"],["NCBITaxon%3A143779","Spirochaeta aurantia subsp. stricta"]]},{"id":"NCBITaxon:1486930","l":"Bicosoecida sp. CB-2014","na":4,"nb":1,"a":[["TED%3AAF-A0A7S1C883-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1C883-F1-model_v4_TED01"],["TED%3AAF-A0A7S1CQ98-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1CQ98-F1-model_v4_TED01"],["TED%3AAF-A0A7S1C3X4-F1-model_v4_TED02","TED novel fold AF-A0A7S1C3X4-F1-model_v4_TED02"],["TED%3AAF-A0A7S1CFB4-F1-model_v4_TED01","TED novel fold AF-A0A7S1CFB4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1486930","Bicosoecida sp. CB-2014"]]},{"id":"NCBITaxon:1507806","l":"Campylobacter fetus subsp. testudinum","na":1,"nb":4,"a":[["TED%3AAF-A0A2S0JEW5-F1-model_v4_TED02","TED novel fold AF-A0A2S0JEW5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A196","Campylobacter fetus"],["NCBITaxon%3A1507806","Campylobacter fetus subsp. testudinum"],["NCBITaxon%3A1244528","Campylobacter fetus subsp. testudinum 03-427"],["NCBITaxon%3A1244529","Campylobacter fetus subsp. testudinum Sp3"]]},{"id":"NCBITaxon:157692","l":"Pseudoleptotrichia goodfellowii","na":1,"nb":4,"a":[["TED%3AAF-A0A510JCV0-F1-model_v4_TED01","TED novel fold AF-A0A510JCV0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A157692","Pseudoleptotrichia goodfellowii"],["NCBITaxon%3A564663","Pseudoleptotrichia goodfellowii D28"],["NCBITaxon%3A714315","Pseudoleptotrichia goodfellowii DSM 19756"],["NCBITaxon%3A596323","Pseudoleptotrichia goodfellowii F0264"]]},{"id":"NCBITaxon:1588","l":"Lentilactobacillus hilgardii","na":1,"nb":4,"a":[["TED%3AAF-A0A6G9Q2H1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6G9Q2H1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1588","Lentilactobacillus hilgardii"],["NCBITaxon%3A525310","Lentilactobacillus hilgardii ATCC 27305"],["NCBITaxon%3A1423757","Lentilactobacillus hilgardii DSM 20176 = ATCC 8290"],["NCBITaxon%3A1580","Levilactobacillus brevis"]]},{"id":"NCBITaxon:160491","l":"Streptococcus pyogenes serotype M5 (strain Manfredo)","na":4,"nb":1,"a":[["Pfam%3APF20921","Domain of unknown function DUF1846, C-terminal"],["Pfam%3APF08903","Domain of unknown function DUF1846, N-terminal"],["Pfam%3APF05979","Bacterial protein of unknown function (DUF896)"],["Pfam%3APF02274","Arginine deiminase"]],"b":[["NCBITaxon%3A160491","Streptococcus pyogenes str. Manfredo"]]},{"id":"NCBITaxon:160492","l":"Xylella fastidiosa (strain 9a5c)","na":4,"nb":1,"a":[["Pfam%3APF21142","Bacterial alpha-2 macroglobulin MG2 domain"],["Pfam%3APF04273","Beta-lactamase hydrolase-like protein, phosphatase-like domain"],["Pfam%3APF17970","Bacterial Alpha-2-macroglobulin MG1 domain"],["Pfam%3APF20398","Family of unknown function (DUF6691)"]],"b":[["NCBITaxon%3A160492","Xylella fastidiosa 9a5c"]]},{"id":"NCBITaxon:161662","l":"Teratosphaeria nubilosa","na":4,"nb":1,"a":[["TED%3AAF-A0A6G1L6X0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6G1L6X0-F1-model_v4_TED01"],["TED%3AAF-A0A6G1L7T9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6G1L7T9-F1-model_v4_TED01"],["TED%3AAF-A0A6G1KZ67-F1-model_v4_TED02","TED novel fold AF-A0A6G1KZ67-F1-model_v4_TED02"],["TED%3AAF-A0A6G1LI25-F1-model_v4_TED04","TED novel fold AF-A0A6G1LI25-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A161662","Teratosphaeria nubilosa"]]},{"id":"NCBITaxon:1632865","l":"Pirellula sp. SH-Sr6A","na":4,"nb":1,"a":[["TED%3AAF-A0A142XYB0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A142XYB0-F1-model_v4_TED01"],["TED%3AAF-A0A142Y0N9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A142Y0N9-F1-model_v4_TED01"],["TED%3AAF-A0A142Y915-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A142Y915-F1-model_v4_TED01"],["TED%3AAF-A0A142Y424-F1-model_v4_TED02","TED novel fold AF-A0A142Y424-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1632865","Pirellula sp. SH-Sr6A"]]},{"id":"NCBITaxon:165186","l":"uncultured Ruminococcus sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A1C6BFR9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C6BFR9-F1-model_v4_TED01"],["TED%3AAF-A0A1C6EIV9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1C6EIV9-F1-model_v4_TED02"],["TED%3AAF-A0A1C6EIR5-F1-model_v4_TED03","TED novel fold AF-A0A1C6EIR5-F1-model_v4_TED03"],["TED%3AAF-A0A1C6F3V5-F1-model_v4_TED02","TED novel fold AF-A0A1C6F3V5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A165186","uncultured Ruminococcus sp."]]},{"id":"NCBITaxon:1667327","l":"Klebsiella quasipneumoniae subsp. quasipneumoniae","na":1,"nb":4,"a":[["TED%3AAF-A0A208M152-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A208M152-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1463165","Klebsiella quasipneumoniae"],["NCBITaxon%3A1667327","Klebsiella quasipneumoniae subsp. quasipneumoniae"],["NCBITaxon%3A1443591","Klebsiella quasipneumoniae subsp. quasipneumoniae 18A069"],["NCBITaxon%3A1328397","Klebsiella quasipneumoniae subsp. quasipneumoniae UCICRE 14"]]},{"id":"NCBITaxon:173365","l":"Methylobacter tundripaludum","na":1,"nb":4,"a":[["TED%3AAF-A0A2S6HGL6-F1-model_v4_TED02","TED novel fold AF-A0A2S6HGL6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A173365","Methylobacter tundripaludum"],["NCBITaxon%3A1408450","Methylobacter tundripaludum 21/22"],["NCBITaxon%3A1408451","Methylobacter tundripaludum 31/32"],["NCBITaxon%3A697282","Methylobacter tundripaludum SV96"]]},{"id":"NCBITaxon:1813822","l":"Xylariales sp. No.14919","na":4,"nb":1,"a":[["TED%3AAF-A0A1V1SW90-F1-model_v4_TED01","TED novel fold AF-A0A1V1SW90-F1-model_v4_TED01"],["TED%3AAF-A0A1V1T5K0-F1-model_v4_TED01","TED novel fold AF-A0A1V1T5K0-F1-model_v4_TED01"],["TED%3AAF-A0A1V1TFW0-F1-model_v4_TED03","TED novel fold AF-A0A1V1TFW0-F1-model_v4_TED03"],["TED%3AAF-A0A1V1THH5-F1-model_v4_TED03","TED novel fold AF-A0A1V1THH5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1813822","Xylariales sp. No.14919"]]},{"id":"NCBITaxon:1852869","l":"Deltaproteobacteria bacterium ADurb.Bin207","na":4,"nb":1,"a":[["TED%3AAF-A0A1V5X5S0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5X5S0-F1-model_v4_TED01"],["TED%3AAF-A0A1V5XCK9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5XCK9-F1-model_v4_TED01"],["TED%3AAF-A0A1V5WYL9-F1-model_v4_TED01","TED novel fold AF-A0A1V5WYL9-F1-model_v4_TED01"],["TED%3AAF-A0A1V5XM89-F1-model_v4_TED02","TED novel fold AF-A0A1V5XM89-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1852869","Deltaproteobacteria bacterium ADurb.Bin207"]]},{"id":"NCBITaxon:1871086","l":"Brevundimonas sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A2W6RYY6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2W6RYY6-F1-model_v4_TED03"],["TED%3AAF-A0A326KNM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A326KNM4-F1-model_v4_TED01"],["TED%3AAF-A0A521NPA0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521NPA0-F1-model_v4_TED01"],["TED%3AAF-A0A519PPD7-F1-model_v4_TED01","TED novel fold AF-A0A519PPD7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1871086","Brevundimonas sp."]]},{"id":"NCBITaxon:187327","l":"Acidaminococcus intestini","na":1,"nb":4,"a":[["TED%3AAF-C0WBZ8-F1-model_v4_TED01","TED highly-symmetric fold AF-C0WBZ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A187327","Acidaminococcus intestini"],["NCBITaxon%3A1263033","Acidaminococcus intestini CAG:325"],["NCBITaxon%3A1120921","Acidaminococcus intestini DSM 21505"],["NCBITaxon%3A568816","Acidaminococcus intestini RyC-MR95"]]},{"id":"NCBITaxon:1882271","l":"Geodermatophilaceae bacterium","na":4,"nb":1,"a":[["TED%3AAF-A0A7V9LZB8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V9LZB8-F1-model_v4_TED01"],["TED%3AAF-A0A7W0GCM7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W0GCM7-F1-model_v4_TED01"],["TED%3AAF-A0A7W0JMU1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W0JMU1-F1-model_v4_TED01"],["TED%3AAF-A0A7W0L938-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W0L938-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1882271","Geodermatophilaceae bacterium"]]},{"id":"NCBITaxon:1887","l":"Streptomyces albogriseolus","na":1,"nb":4,"a":[["PROSITE%3APS00999","Streptomyces subtilisin-type inhibitors signature"]],"b":[["NCBITaxon%3A1887","Streptomyces albogriseolus"],["NCBITaxon%3A1093098","Streptomyces albogriseolus 1-36"],["NCBITaxon%3A1608467","Streptomyces albogriseolus subsp. cellulolyticus"],["NCBITaxon%3A3075520","Streptomyces lancefieldiae"]]},{"id":"NCBITaxon:1891926","l":"Fuerstiella marisgermanici","na":4,"nb":1,"a":[["TED%3AAF-A0A1P8WC41-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1P8WC41-F1-model_v4_TED01"],["TED%3AAF-A0A1P8WR00-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1P8WR00-F1-model_v4_TED02"],["TED%3AAF-A0A1P8WFX6-F1-model_v4_TED01","TED novel fold AF-A0A1P8WFX6-F1-model_v4_TED01"],["TED%3AAF-A0A1P8WQN4-F1-model_v4_TED02","TED novel fold AF-A0A1P8WQN4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1891926","Fuerstiella marisgermanici"]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":4,"nb":1,"a":[["Pfam%3APF16861","Carbamoyltransferase C-terminus"],["Pfam%3APF02543","Carbamoyltransferase N-terminus"],["Pfam%3APF01960","ArgJ family"],["Pfam%3APF07467","Beta-lactamase inhibitor (BLIP)"]],"b":[["NCBITaxon%3A1901","Streptomyces clavuligerus"]]},{"id":"NCBITaxon:1906242","l":"Tenacibaculum sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A3C1S134-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3C1S134-F1-model_v4_TED03"],["TED%3AAF-A0A354GFG9-F1-model_v4_TED02","TED novel fold AF-A0A354GFG9-F1-model_v4_TED02"],["TED%3AAF-A0A354GH92-F1-model_v4_TED03","TED novel fold AF-A0A354GH92-F1-model_v4_TED03"],["TED%3AAF-A0A3C1RZP3-F1-model_v4_TED01","TED novel fold AF-A0A3C1RZP3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1906242","Tenacibaculum sp."]]},{"id":"NCBITaxon:1909295","l":"Solirubrobacterales bacterium","na":4,"nb":1,"a":[["TED%3AAF-A0A2W5YWX4-F1-model_v4_TED01","TED novel fold AF-A0A2W5YWX4-F1-model_v4_TED01"],["TED%3AAF-A0A7V9Q330-F1-model_v4_TED01","TED novel fold AF-A0A7V9Q330-F1-model_v4_TED01"],["TED%3AAF-A0A7W0TI55-F1-model_v4_TED01","TED novel fold AF-A0A7W0TI55-F1-model_v4_TED01"],["TED%3AAF-A0A7W1S1I9-F1-model_v4_TED02","TED novel fold AF-A0A7W1S1I9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1909295","Solirubrobacterales bacterium"]]},{"id":"NCBITaxon:1944","l":"Streptomyces halstedii","na":1,"nb":4,"a":[["Pfam%3APF09277","Erythronolide synthase, docking"]],"b":[["NCBITaxon%3A68212","Streptomyces graminofaciens"],["NCBITaxon%3A1909","Streptomyces griseolus"],["NCBITaxon%3A1944","Streptomyces halstedii"],["NCBITaxon%3A178788","Streptomyces halstedii subsp. scabies"]]},{"id":"NCBITaxon:1961369","l":"Thermofilum sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A7C2LAY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C2LAY6-F1-model_v4_TED01"],["TED%3AAF-A0A831U077-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A831U077-F1-model_v4_TED01"],["TED%3AAF-A0A832LZK9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A832LZK9-F1-model_v4_TED01"],["TED%3AAF-A0A832DVC5-F1-model_v4_TED02","TED novel fold AF-A0A832DVC5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1961369","Thermofilum sp."]]},{"id":"NCBITaxon:1970323","l":"Bdellovibrio sp. 28-41-41","na":4,"nb":1,"a":[["TED%3AAF-A0A258VH67-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A258VH67-F1-model_v4_TED01"],["TED%3AAF-A0A258VZ35-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A258VZ35-F1-model_v4_TED01"],["TED%3AAF-A0A258W5J6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A258W5J6-F1-model_v4_TED01"],["TED%3AAF-A0A258W0Q9-F1-model_v4_TED01","TED novel fold AF-A0A258W0Q9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970323","Bdellovibrio sp. 28-41-41"]]},{"id":"NCBITaxon:2020412","l":"Bosea sp. ANAM02","na":4,"nb":1,"a":[["TED%3AAF-A0A6F8UU50-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6F8UU50-F1-model_v4_TED01"],["TED%3AAF-A0A6F8UZT3-F1-model_v4_TED01","TED novel fold AF-A0A6F8UZT3-F1-model_v4_TED01"],["TED%3AAF-A0A6F8V204-F1-model_v4_TED02","TED novel fold AF-A0A6F8V204-F1-model_v4_TED02"],["TED%3AAF-A0A6F8V2X3-F1-model_v4_TED02","TED novel fold AF-A0A6F8V2X3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2020412","Allobosea sp. ANAM02"]]},{"id":"NCBITaxon:2020862","l":"Halobacteriovorax sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A2E6H9I1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E6H9I1-F1-model_v4_TED01"],["TED%3AAF-A0A2D5YKQ7-F1-model_v4_TED01","TED novel fold AF-A0A2D5YKQ7-F1-model_v4_TED01"],["TED%3AAF-A0A2E6H4R2-F1-model_v4_TED01","TED novel fold AF-A0A2E6H4R2-F1-model_v4_TED01"],["TED%3AAF-A0A2E6H7Z0-F1-model_v4_TED01","TED novel fold AF-A0A2E6H7Z0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2020862","Halobacteriovorax sp."]]},{"id":"NCBITaxon:2024824","l":"Balneola sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A3D4V172-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D4V172-F1-model_v4_TED01"],["TED%3AAF-A0A2E6N6U3-F1-model_v4_TED03","TED novel fold AF-A0A2E6N6U3-F1-model_v4_TED03"],["TED%3AAF-A0A3D4V1W0-F1-model_v4_TED04","TED novel fold AF-A0A3D4V1W0-F1-model_v4_TED04"],["TED%3AAF-A0A3M8G8Y9-F1-model_v4_TED02","TED novel fold AF-A0A3M8G8Y9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2024824","Balneola sp."]]},{"id":"NCBITaxon:2024843","l":"Nitrosopumilus sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A7K4F371-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K4F371-F1-model_v4_TED01"],["TED%3AAF-A0A838N9C6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A838N9C6-F1-model_v4_TED01"],["TED%3AAF-A0A836SSE3-F1-model_v4_TED01","TED novel fold AF-A0A836SSE3-F1-model_v4_TED01"],["TED%3AAF-A0A843BS33-F1-model_v4_TED01","TED novel fold AF-A0A843BS33-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024843","Candidatus Nitrosopumilus sp."]]},{"id":"NCBITaxon:2024848","l":"Parvibaculum sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A2D4VKC7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D4VKC7-F1-model_v4_TED01"],["TED%3AAF-A0A2D8XBJ5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D8XBJ5-F1-model_v4_TED02"],["TED%3AAF-A0A2D4VKJ3-F1-model_v4_TED01","TED novel fold AF-A0A2D4VKJ3-F1-model_v4_TED01"],["TED%3AAF-A0A2D8XB08-F1-model_v4_TED01","TED novel fold AF-A0A2D8XB08-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024848","Parvibaculum sp."]]},{"id":"NCBITaxon:2024849","l":"Candidatus Pelagibacter sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A2D7PDP1-F1-model_v4_TED01","TED novel fold AF-A0A2D7PDP1-F1-model_v4_TED01"],["TED%3AAF-A0A2D7PF68-F1-model_v4_TED01","TED novel fold AF-A0A2D7PF68-F1-model_v4_TED01"],["TED%3AAF-A0A2E6T7S4-F1-model_v4_TED01","TED novel fold AF-A0A2E6T7S4-F1-model_v4_TED01"],["TED%3AAF-A0A2E6TB82-F1-model_v4_TED01","TED novel fold AF-A0A2E6TB82-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024849","Candidatus Pelagibacter sp."]]},{"id":"NCBITaxon:2026740","l":"Flammeovirgaceae bacterium","na":4,"nb":1,"a":[["TED%3AAF-A0A7L9BKK8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7L9BKK8-F1-model_v4_TED02"],["TED%3AAF-A0A2D6AK53-F1-model_v4_TED03","TED novel fold AF-A0A2D6AK53-F1-model_v4_TED03"],["TED%3AAF-A0A2D6AK65-F1-model_v4_TED01","TED novel fold AF-A0A2D6AK65-F1-model_v4_TED01"],["TED%3AAF-A0A2D6B1Q0-F1-model_v4_TED03","TED novel fold AF-A0A2D6B1Q0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2026740","Flammeovirgaceae bacterium"]]},{"id":"NCBITaxon:2026764","l":"Nanoarchaeota archaeon","na":4,"nb":1,"a":[["TED%3AAF-A0A522EUE5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A522EUE5-F1-model_v4_TED02"],["TED%3AAF-A0A6B2CCZ1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6B2CCZ1-F1-model_v4_TED01"],["TED%3AAF-A0A833A267-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A833A267-F1-model_v4_TED01"],["TED%3AAF-A0A7J4KXA8-F1-model_v4_TED02","TED novel fold AF-A0A7J4KXA8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026764","Nanobdellota archaeon"]]},{"id":"NCBITaxon:2044941","l":"Flavobacteriia bacterium","na":4,"nb":1,"a":[["TED%3AAF-A0A7Y7CXE7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y7CXE7-F1-model_v4_TED01"],["TED%3AAF-A0A432IP99-F1-model_v4_TED01","TED novel fold AF-A0A432IP99-F1-model_v4_TED01"],["TED%3AAF-A0A432IYJ1-F1-model_v4_TED01","TED novel fold AF-A0A432IYJ1-F1-model_v4_TED01"],["TED%3AAF-A0A7Y6YH70-F1-model_v4_TED01","TED novel fold AF-A0A7Y6YH70-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2044941","Flavobacteriia bacterium"]]},{"id":"NCBITaxon:2045","l":"Nocardioides simplex","na":4,"nb":1,"a":[["Pfam%3APF00775","Dioxygenase"],["Pfam%3APF04444","Catechol dioxygenase N terminus"],["PROSITE%3APS00083","Intradiol ring-cleavage dioxygenases signature"],["TED%3AAF-A0A4Y3NBY1-F1-model_v4_TED01","TED novel fold AF-A0A4Y3NBY1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2045","Pimelobacter simplex"]]},{"id":"NCBITaxon:2049040","l":"Roseburia sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A351R2S0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A351R2S0-F1-model_v4_TED01"],["TED%3AAF-A0A3D2PUE7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D2PUE7-F1-model_v4_TED02"],["TED%3AAF-A0A3D5LE36-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D5LE36-F1-model_v4_TED01"],["TED%3AAF-A0A3B9D3T9-F1-model_v4_TED02","TED novel fold AF-A0A3B9D3T9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2049040","Roseburia sp."]]},{"id":"NCBITaxon:2049048","l":"Rikenellaceae bacterium","na":4,"nb":1,"a":[["TED%3AAF-A0A3D6B1M6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D6B1M6-F1-model_v4_TED02"],["TED%3AAF-A0A351AT40-F1-model_v4_TED03","TED novel fold AF-A0A351AT40-F1-model_v4_TED03"],["TED%3AAF-A0A355U3N1-F1-model_v4_TED01","TED novel fold AF-A0A355U3N1-F1-model_v4_TED01"],["TED%3AAF-A0A3D0F348-F1-model_v4_TED02","TED novel fold AF-A0A3D0F348-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2049048","Rikenellaceae bacterium"]]},{"id":"NCBITaxon:2051955","l":"Methylobacter sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A2P5LKB3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2P5LKB3-F1-model_v4_TED02"],["TED%3AAF-A0A522WVN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A522WVN3-F1-model_v4_TED01"],["TED%3AAF-A0A2P5M384-F1-model_v4_TED01","TED novel fold AF-A0A2P5M384-F1-model_v4_TED01"],["TED%3AAF-A0A2S5Q8H2-F1-model_v4_TED02","TED novel fold AF-A0A2S5Q8H2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2051955","Methylobacter sp."]]},{"id":"NCBITaxon:2051956","l":"Methylotenera sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A849UFG5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A849UFG5-F1-model_v4_TED01"],["TED%3AAF-A0A2P5LDN0-F1-model_v4_TED01","TED novel fold AF-A0A2P5LDN0-F1-model_v4_TED01"],["TED%3AAF-A0A2S5L9P9-F1-model_v4_TED02","TED novel fold AF-A0A2S5L9P9-F1-model_v4_TED02"],["TED%3AAF-A0A7Y4ZX98-F1-model_v4_TED02","TED novel fold AF-A0A7Y4ZX98-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2051956","Methylotenera sp."]]},{"id":"NCBITaxon:2052139","l":"Patescibacteria bacterium","na":4,"nb":1,"a":[["TED%3AAF-A0A522U5G3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A522U5G3-F1-model_v4_TED02"],["TED%3AAF-A0A522W7N7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A522W7N7-F1-model_v4_TED02"],["TED%3AAF-A0A521ZPU3-F1-model_v4_TED02","TED novel fold AF-A0A521ZPU3-F1-model_v4_TED02"],["TED%3AAF-A0A522E927-F1-model_v4_TED04","TED novel fold AF-A0A522E927-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2052139","Patescibacteria group bacterium"]]},{"id":"NCBITaxon:2052159","l":"Coriobacteriia bacterium","na":4,"nb":1,"a":[["TED%3AAF-A0A2V2EFX1-F1-model_v4_TED01","TED novel fold AF-A0A2V2EFX1-F1-model_v4_TED01"],["TED%3AAF-A0A316P0Z8-F1-model_v4_TED01","TED novel fold AF-A0A316P0Z8-F1-model_v4_TED01"],["TED%3AAF-A0A316RTQ8-F1-model_v4_TED02","TED novel fold AF-A0A316RTQ8-F1-model_v4_TED02"],["TED%3AAF-A0A316RU81-F1-model_v4_TED01","TED novel fold AF-A0A316RU81-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052159","Coriobacteriia bacterium"]]},{"id":"NCBITaxon:2052160","l":"Fibrobacterota bacterium","na":4,"nb":1,"a":[["TED%3AAF-A0A3C0PGL2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3C0PGL2-F1-model_v4_TED03"],["TED%3AAF-A0A7T9E906-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T9E906-F1-model_v4_TED01"],["TED%3AAF-A0A3C1WKF1-F1-model_v4_TED02","TED novel fold AF-A0A3C1WKF1-F1-model_v4_TED02"],["TED%3AAF-A0A7T9E9C4-F1-model_v4_TED01","TED novel fold AF-A0A7T9E9C4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052160","Fibrobacterota bacterium"]]},{"id":"NCBITaxon:2053493","l":"Candidatus Acetothermia bacterium","na":4,"nb":1,"a":[["TED%3AAF-A0A662EH56-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A662EH56-F1-model_v4_TED03"],["TED%3AAF-A0A662F5F1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A662F5F1-F1-model_v4_TED02"],["TED%3AAF-A0A7C5LAP1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C5LAP1-F1-model_v4_TED02"],["TED%3AAF-A0A7V5YI91-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V5YI91-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053493","Candidatus Acetothermia bacterium"]]},{"id":"NCBITaxon:2073116","l":"Holophagae bacterium","na":4,"nb":1,"a":[["TED%3AAF-A0A7Z1R0H2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Z1R0H2-F1-model_v4_TED01"],["TED%3AAF-A0A7X7YF04-F1-model_v4_TED01","TED novel fold AF-A0A7X7YF04-F1-model_v4_TED01"],["TED%3AAF-A0A7Z1R2K0-F1-model_v4_TED02","TED novel fold AF-A0A7Z1R2K0-F1-model_v4_TED02"],["TED%3AAF-A0A7Z1TS59-F1-model_v4_TED04","TED novel fold AF-A0A7Z1TS59-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2073116","Holophagae bacterium"]]},{"id":"NCBITaxon:2081706","l":"Bacteriovoracaceae bacterium","na":4,"nb":1,"a":[["TED%3AAF-A0A849T5B5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A849T5B5-F1-model_v4_TED01"],["TED%3AAF-A0A849TDV2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A849TDV2-F1-model_v4_TED01"],["TED%3AAF-A0A849SZI0-F1-model_v4_TED02","TED novel fold AF-A0A849SZI0-F1-model_v4_TED02"],["TED%3AAF-A0A849T2V8-F1-model_v4_TED01","TED novel fold AF-A0A849T2V8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2081706","Bacteriovoracaceae bacterium"]]},{"id":"NCBITaxon:2082293","l":"Hyaloscypha hepaticicola","na":4,"nb":1,"a":[["TED%3AAF-A0A2J6PIA1-F1-model_v4_TED01","TED novel fold AF-A0A2J6PIA1-F1-model_v4_TED01"],["TED%3AAF-A0A2J6PLY5-F1-model_v4_TED01","TED novel fold AF-A0A2J6PLY5-F1-model_v4_TED01"],["TED%3AAF-A0A2J6PXD2-F1-model_v4_TED02","TED novel fold AF-A0A2J6PXD2-F1-model_v4_TED02"],["TED%3AAF-A0A2J6Q0I5-F1-model_v4_TED04","TED novel fold AF-A0A2J6Q0I5-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2082293","Hyaloscypha hepaticicola"]]},{"id":"NCBITaxon:2098","l":"Metamycoplasma hominis","na":1,"nb":4,"a":[["TED%3AAF-A0A6A8Q3G2-F1-model_v4_TED02","TED novel fold AF-A0A6A8Q3G2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2098","Metamycoplasma hominis"],["NCBITaxon%3A347256","Metamycoplasma hominis ATCC 23114"],["NCBITaxon%3A1267000","Metamycoplasma hominis ATCC 27545"],["NCBITaxon%3A287","Pseudomonas aeruginosa"]]},{"id":"NCBITaxon:210454","l":"Grammatophora oceanica","na":4,"nb":1,"a":[["TED%3AAF-A0A7S1UN71-F1-model_v4_TED01","TED novel fold AF-A0A7S1UN71-F1-model_v4_TED01"],["TED%3AAF-A0A7S1UXS3-F1-model_v4_TED01","TED novel fold AF-A0A7S1UXS3-F1-model_v4_TED01"],["TED%3AAF-A0A7S1YCZ6-F1-model_v4_TED02","TED novel fold AF-A0A7S1YCZ6-F1-model_v4_TED02"],["TED%3AAF-A0A7S1YLG8-F1-model_v4_TED02","TED novel fold AF-A0A7S1YLG8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A210454","Grammatophora oceanica"]]},{"id":"NCBITaxon:2108360","l":"Microvirga tunisiensis","na":4,"nb":1,"a":[["TED%3AAF-A0A5N7MHB4-F1-model_v4_TED01","TED novel fold AF-A0A5N7MHB4-F1-model_v4_TED01"],["TED%3AAF-A0A5N7MK37-F1-model_v4_TED03","TED novel fold AF-A0A5N7MK37-F1-model_v4_TED03"],["TED%3AAF-A0A5N7MK85-F1-model_v4_TED03","TED novel fold AF-A0A5N7MK85-F1-model_v4_TED03"],["TED%3AAF-A0A5N7MTB9-F1-model_v4_TED01","TED novel fold AF-A0A5N7MTB9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2108360","Microvirga tunisiensis"]]},{"id":"NCBITaxon:2109","l":"Mycoplasmopsis synoviae","na":1,"nb":4,"a":[["TED%3AAF-A0A3B0PIE0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3B0PIE0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2109","Mycoplasmopsis synoviae"],["NCBITaxon%3A262723","Mycoplasmopsis synoviae 53"],["NCBITaxon%3A1267001","Mycoplasmopsis synoviae ATCC 25204"],["NCBITaxon%3A1148512","Mycoplasmopsis synoviae GX11-T"]]},{"id":"NCBITaxon:211110","l":"Streptococcus agalactiae serotype III (strain NEM316)","na":4,"nb":1,"a":[["Pfam%3APF22637","BppA domain 1"],["Pfam%3APF21461","Hyaluronate lyase, N-terminal beta-sheet domain"],["Pfam%3APF12558","ATP-binding cassette cobalt transporter"],["Pfam%3APF07470","Glycosyl Hydrolase Family 88"]],"b":[["NCBITaxon%3A211110","Streptococcus agalactiae NEM316"]]},{"id":"NCBITaxon:215","l":"Helicobacter fennelliae","na":1,"nb":4,"a":[["TED%3AAF-A0A2X3EJ56-F1-model_v4_TED01","TED novel fold AF-A0A2X3EJ56-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A213","Helicobacter cinaedi"],["NCBITaxon%3A537971","Helicobacter cinaedi CCUG 18818 = ATCC BAA-847"],["NCBITaxon%3A215","Helicobacter fennelliae"],["NCBITaxon%3A1325130","Helicobacter fennelliae MRY12-0050"]]},{"id":"NCBITaxon:216820","l":"Cyclophora tenuis","na":4,"nb":1,"a":[["TED%3AAF-A0A7S1GP11-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1GP11-F1-model_v4_TED01"],["TED%3AAF-A0A6U1R8I6-F1-model_v4_TED01","TED novel fold AF-A0A6U1R8I6-F1-model_v4_TED01"],["TED%3AAF-A0A7S1GLN4-F1-model_v4_TED01","TED novel fold AF-A0A7S1GLN4-F1-model_v4_TED01"],["TED%3AAF-A0A7S1GMK2-F1-model_v4_TED01","TED novel fold AF-A0A7S1GMK2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A216820","Cyclophora tenuis"]]},{"id":"NCBITaxon:218490","l":"Polaribacter butkevichii","na":4,"nb":1,"a":[["TED%3AAF-A0A2P6C707-F1-model_v4_TED02","TED novel fold AF-A0A2P6C707-F1-model_v4_TED02"],["TED%3AAF-A0A2P6CAG7-F1-model_v4_TED01","TED novel fold AF-A0A2P6CAG7-F1-model_v4_TED01"],["TED%3AAF-A0A2P6CCV8-F1-model_v4_TED01","TED novel fold AF-A0A2P6CCV8-F1-model_v4_TED01"],["TED%3AAF-A0A2P6CFF0-F1-model_v4_TED01","TED novel fold AF-A0A2P6CFF0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A218490","Polaribacter butkevichii"]]},{"id":"NCBITaxon:221103","l":"Moniliophthora roreri","na":4,"nb":1,"a":[["TED%3AAF-A0A0W0EY20-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0W0EY20-F1-model_v4_TED01"],["TED%3AAF-A0A0W0GBN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0W0GBN7-F1-model_v4_TED01"],["TED%3AAF-A0A0W0FN93-F1-model_v4_TED01","TED novel fold AF-A0A0W0FN93-F1-model_v4_TED01"],["TED%3AAF-A0A0W0G2E5-F1-model_v4_TED02","TED novel fold AF-A0A0W0G2E5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A221103","Moniliophthora roreri"]]},{"id":"NCBITaxon:224915","l":"Buchnera aphidicola subsp. Baizongia pistaciae (strain Bp)","na":4,"nb":1,"a":[["Pfam%3APF26016","Exonuclease I C-terminal domain"],["Pfam%3APF08411","Exonuclease I SH3-like domain"],["Pfam%3APF09849","Uncharacterized protein conserved in bacteria (DUF2076)"],["Pfam%3APF06481","COX Aromatic Rich Motif"]],"b":[["NCBITaxon%3A224915","Buchnera aphidicola str. Bp (Baizongia pistaciae)"]]},{"id":"NCBITaxon:2250254","l":"Thermococci archaeon","na":4,"nb":1,"a":[["TED%3AAF-A0A497HYZ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A497HYZ8-F1-model_v4_TED01"],["TED%3AAF-A0A662PGI5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A662PGI5-F1-model_v4_TED03"],["TED%3AAF-A0A662PJ18-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A662PJ18-F1-model_v4_TED01"],["TED%3AAF-A0A662P955-F1-model_v4_TED01","TED novel fold AF-A0A662P955-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2250254","Thermococci archaeon"]]},{"id":"NCBITaxon:2250256","l":"Altiarchaeales archaeon","na":4,"nb":1,"a":[["TED%3AAF-A0A497RVP9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A497RVP9-F1-model_v4_TED01"],["TED%3AAF-A0A497S7B6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A497S7B6-F1-model_v4_TED02"],["TED%3AAF-A0A7C0XRN1-F1-model_v4_TED02","TED novel fold AF-A0A7C0XRN1-F1-model_v4_TED02"],["TED%3AAF-A0A842UHS2-F1-model_v4_TED05","TED novel fold AF-A0A842UHS2-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2250256","Candidatus Altarchaeales archaeon"]]},{"id":"NCBITaxon:2250258","l":"Archaeoglobales archaeon","na":4,"nb":1,"a":[["TED%3AAF-A0A662W9Y5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A662W9Y5-F1-model_v4_TED01"],["TED%3AAF-A0A662VTF3-F1-model_v4_TED01","TED novel fold AF-A0A662VTF3-F1-model_v4_TED01"],["TED%3AAF-A0A662VW03-F1-model_v4_TED01","TED novel fold AF-A0A662VW03-F1-model_v4_TED01"],["TED%3AAF-A0A662W350-F1-model_v4_TED01","TED novel fold AF-A0A662W350-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2250258","Archaeoglobales archaeon"]]},{"id":"NCBITaxon:2250276","l":"Hadesarchaea archaeon","na":4,"nb":1,"a":[["TED%3AAF-A0A523AS63-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A523AS63-F1-model_v4_TED01"],["TED%3AAF-A0A523AZE0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A523AZE0-F1-model_v4_TED02"],["TED%3AAF-A0A7C3Y088-F1-model_v4_TED04","TED novel fold AF-A0A7C3Y088-F1-model_v4_TED04"],["TED%3AAF-A0A7J2J8X3-F1-model_v4_TED01","TED novel fold AF-A0A7J2J8X3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2250276","Hadesarchaea archaeon"]]},{"id":"NCBITaxon:2262","l":"Pyrococcus woesei","na":4,"nb":1,"a":[["Pfam%3APF01113","Dihydrodipicolinate reductase, N-terminus"],["Pfam%3APF08967","Putative type 4B encapsulin shell protein"],["Pfam%3APF01889","Archaeal lipoprotein biogenesis component AliA/AliB-like"],["Pfam%3APF11667","Putative zincin peptidase"]],"b":[["NCBITaxon%3A2262","Pyrococcus woesei"]]},{"id":"NCBITaxon:2283092","l":"Pyrinomonadaceae bacterium","na":4,"nb":1,"a":[["TED%3AAF-A0A7W0ZNM8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W0ZNM8-F1-model_v4_TED01"],["TED%3AAF-A0A838MX18-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A838MX18-F1-model_v4_TED01"],["TED%3AAF-A0A7W1JDR7-F1-model_v4_TED02","TED novel fold AF-A0A7W1JDR7-F1-model_v4_TED02"],["TED%3AAF-A0A838GSN0-F1-model_v4_TED01","TED novel fold AF-A0A838GSN0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2283092","Pyrinomonadaceae bacterium"]]},{"id":"NCBITaxon:230819","l":"Coprinopsis marcescibilis","na":4,"nb":1,"a":[["TED%3AAF-A0A5C3KJQ3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5C3KJQ3-F1-model_v4_TED02"],["TED%3AAF-A0A5C3KKH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C3KKH3-F1-model_v4_TED01"],["TED%3AAF-A0A5C3K9L8-F1-model_v4_TED01","TED novel fold AF-A0A5C3K9L8-F1-model_v4_TED01"],["TED%3AAF-A0A5C3KRI0-F1-model_v4_TED01","TED novel fold AF-A0A5C3KRI0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A230819","Coprinopsis marcescibilis"]]},{"id":"NCBITaxon:242231","l":"Neisseria gonorrhoeae (strain ATCC 700825 / FA 1090)","na":4,"nb":1,"a":[["Pfam%3APF17845","FbpC C-terminal regulatory nucleotide binding domain"],["Pfam%3APF22443","FbpC-like, regulatory domain"],["Pfam%3APF22513","Antitoxin FitA-like, ribbon-helix-helix"],["Pfam%3APF08750","CNP1-like family"]],"b":[["NCBITaxon%3A242231","Neisseria gonorrhoeae FA 1090"]]},{"id":"NCBITaxon:244","l":"Planomicrobium okeanokoites","na":4,"nb":1,"a":[["Pfam%3APF09254","FokI, cleavage domain"],["Pfam%3APF02981","FokI, recognition domain, subdomain 1"],["Pfam%3APF16902","FokI, D3 domain"],["Pfam%3APF02980","FokI, recognition domain, subdomain 2"]],"b":[["NCBITaxon%3A244","Planomicrobium okeanokoites"]]},{"id":"NCBITaxon:2510337","l":"Sandaracinaceae bacterium","na":4,"nb":1,"a":[["TED%3AAF-A0A520PSZ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A520PSZ8-F1-model_v4_TED01"],["TED%3AAF-A0A520QL44-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A520QL44-F1-model_v4_TED03"],["TED%3AAF-A0A520QBZ2-F1-model_v4_TED03","TED novel fold AF-A0A520QBZ2-F1-model_v4_TED03"],["TED%3AAF-A0A847F4I9-F1-model_v4_TED01","TED novel fold AF-A0A847F4I9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2510337","Sandaracinaceae bacterium"]]},{"id":"NCBITaxon:2527983","l":"Caulifigura coniformis","na":4,"nb":1,"a":[["TED%3AAF-A0A517S890-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A517S890-F1-model_v4_TED01"],["TED%3AAF-A0A517SC12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A517SC12-F1-model_v4_TED01"],["TED%3AAF-A0A517SC47-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A517SC47-F1-model_v4_TED02"],["TED%3AAF-A0A517SDF0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A517SDF0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2527983","Caulifigura coniformis"]]},{"id":"NCBITaxon:2529384","l":"Roseibium sp. RKSG952","na":4,"nb":1,"a":[["TED%3AAF-A0A6N7ZP27-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N7ZP27-F1-model_v4_TED01"],["TED%3AAF-A0A6N7ZQ59-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N7ZQ59-F1-model_v4_TED01"],["TED%3AAF-A0A6N7ZR90-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N7ZR90-F1-model_v4_TED01"],["TED%3AAF-A0A6N7ZZ23-F1-model_v4_TED01","TED novel fold AF-A0A6N7ZZ23-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2529384","Roseibium sp. RKSG952"]]},{"id":"NCBITaxon:258","l":"Sphingobacterium spiritivorum","na":1,"nb":4,"a":[["TED%3AAF-A0A380CHI8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A380CHI8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A649196","Sphingobacterium hotanense"],["NCBITaxon%3A258","Sphingobacterium spiritivorum"],["NCBITaxon%3A525372","Sphingobacterium spiritivorum ATCC 33300"],["NCBITaxon%3A525373","Sphingobacterium spiritivorum ATCC 33861"]]},{"id":"NCBITaxon:258594","l":"Rhodopseudomonas palustris CGA009","na":4,"nb":1,"a":[["Pfam%3APF01322","Cytochrome C'"],["PROSITE%3APS00969","Antenna complexes beta subunits signature"],["PROSITE%3APS00936","Ribosomal protein L35 signature"],["PROSITE%3APS01181","Ribosomal protein S21 signature"]],"b":[["NCBITaxon%3A258594","Rhodopseudomonas palustris CGA009"]]},{"id":"NCBITaxon:2587412","l":"Podospora anserina","na":4,"nb":1,"a":[["Pfam%3APF08509","Adenylate cyclase G-alpha binding domain"],["Pfam%3APF14479","Prion-inhibition and propagation"],["Pfam%3APF06985","Heterokaryon incompatibility protein (HET)"],["Pfam%3APF11558","Het-s 218-289"]],"b":[["NCBITaxon%3A2587412","Podospora anserina"]]},{"id":"NCBITaxon:2594798","l":"Nanohaloarchaea archaeon","na":4,"nb":1,"a":[["TED%3AAF-A0A848EKT4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A848EKT4-F1-model_v4_TED01"],["TED%3AAF-A0A849QF42-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A849QF42-F1-model_v4_TED01"],["TED%3AAF-A0A842K9G1-F1-model_v4_TED04","TED novel fold AF-A0A842K9G1-F1-model_v4_TED04"],["TED%3AAF-A0A849QBL9-F1-model_v4_TED02","TED novel fold AF-A0A849QBL9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2594798","Candidatus Nanohaloarchaea archaeon"]]},{"id":"NCBITaxon:2607767","l":"Oscillatoria sp. SIO1A7","na":4,"nb":1,"a":[["TED%3AAF-A0A7C9PR93-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C9PR93-F1-model_v4_TED01"],["TED%3AAF-A0A7C9PUP6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C9PUP6-F1-model_v4_TED02"],["TED%3AAF-A0A7C9TUK3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C9TUK3-F1-model_v4_TED01"],["TED%3AAF-A0A7C9PXN7-F1-model_v4_TED01","TED novel fold AF-A0A7C9PXN7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607767","Oscillatoria sp. SIO1A7"]]},{"id":"NCBITaxon:262316","l":"","na":4,"nb":1,"a":[["Pfam%3APF19288","CofH/MqnC C-terminal region"],["Pfam%3APF03601","Conserved hypothetical protein 698"],["PROSITE%3APS60002","Phosphoketolase signature 1"],["PROSITE%3APS60003","Phosphoketolase signature 2"]],"b":[["NCBITaxon%3A262316","Mycobacterium avium subsp. paratuberculosis K-10"]]},{"id":"NCBITaxon:265554","l":"Amphora coffeiformis","na":4,"nb":1,"a":[["TED%3AAF-A0A7S3L6U4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3L6U4-F1-model_v4_TED01"],["TED%3AAF-A0A7S3L8J1-F1-model_v4_TED01","TED novel fold AF-A0A7S3L8J1-F1-model_v4_TED01"],["TED%3AAF-A0A7S3LC07-F1-model_v4_TED02","TED novel fold AF-A0A7S3LC07-F1-model_v4_TED02"],["TED%3AAF-A0A7S3P7C7-F1-model_v4_TED01","TED novel fold AF-A0A7S3P7C7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A265554","Amphora coffeiformis"]]},{"id":"NCBITaxon:266149","l":"Pseudocohnilembus persalinus","na":4,"nb":1,"a":[["TED%3AAF-A0A0V0Q971-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0V0Q971-F1-model_v4_TED01"],["TED%3AAF-A0A0V0QFC0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0V0QFC0-F1-model_v4_TED02"],["TED%3AAF-A0A0V0QUL9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0V0QUL9-F1-model_v4_TED02"],["TED%3AAF-A0A0V0QLH5-F1-model_v4_TED02","TED novel fold AF-A0A0V0QLH5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A266149","Pseudocohnilembus persalinus"]]},{"id":"NCBITaxon:2666346","l":"Candidatus Poseidoniaceae archaeon","na":4,"nb":1,"a":[["TED%3AAF-A0A7J4QR94-F1-model_v4_TED01","TED novel fold AF-A0A7J4QR94-F1-model_v4_TED01"],["TED%3AAF-A0A7J4SJK8-F1-model_v4_TED06","TED novel fold AF-A0A7J4SJK8-F1-model_v4_TED06"],["TED%3AAF-A0A7J4T2G3-F1-model_v4_TED01","TED novel fold AF-A0A7J4T2G3-F1-model_v4_TED01"],["TED%3AAF-A0A7J4T4C8-F1-model_v4_TED01","TED novel fold AF-A0A7J4T4C8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2666346","Candidatus Poseidoniaceae archaeon"]]},{"id":"NCBITaxon:267608","l":"Ralstonia nicotianae (strain ATCC BAA-1114 / GMI1000)","na":4,"nb":1,"a":[["Pfam%3APF13473","Cupredoxin-like domain"],["Pfam%3APF09483","Type III secretion protein (HpaP)"],["Pfam%3APF14897","EpsG family"],["Pfam%3APF03377","TAL effector repeat"]],"b":[["NCBITaxon%3A267608","Ralstonia pseudosolanacearum GMI1000"]]},{"id":"NCBITaxon:2691037","l":"Candidatus Methanoperedenaceae archaeon GB37","na":4,"nb":1,"a":[["TED%3AAF-A0A812A6G3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812A6G3-F1-model_v4_TED01"],["TED%3AAF-A0A7R9N5L5-F1-model_v4_TED02","TED novel fold AF-A0A7R9N5L5-F1-model_v4_TED02"],["TED%3AAF-A0A7R9N8X7-F1-model_v4_TED02","TED novel fold AF-A0A7R9N8X7-F1-model_v4_TED02"],["TED%3AAF-A0A7R9NFN0-F1-model_v4_TED03","TED novel fold AF-A0A7R9NFN0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2691037","Candidatus Methanoperedentaceae archaeon GB37"]]},{"id":"NCBITaxon:269237","l":"uncultured Sulfurovum sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A6S6S605-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6S6S605-F1-model_v4_TED02"],["TED%3AAF-A0A6S6SGE5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6S6SGE5-F1-model_v4_TED01"],["TED%3AAF-A0A6S6TSW6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6S6TSW6-F1-model_v4_TED02"],["TED%3AAF-A0A6S6RYD3-F1-model_v4_TED01","TED novel fold AF-A0A6S6RYD3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A269237","uncultured Sulfurovum sp."]]},{"id":"NCBITaxon:269797","l":"Methanosarcina barkeri str. Fusaro","na":4,"nb":1,"a":[["Pfam%3APF27274","Coenzyme F430 synthetase CfbE, C-terminal domain"],["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"],["Pfam%3APF09505","Dimethylamine methyltransferase (Dimeth_PyL)"],["PROSITE%3APS00507","Nickel-dependent hydrogenases large subunit signature 1"]],"b":[["NCBITaxon%3A269797","Methanosarcina barkeri str. Fusaro"]]},{"id":"NCBITaxon:269800","l":"Thermobifida fusca YX","na":4,"nb":1,"a":[["Pfam%3APF20628","Dyp-type peroxidase, C-terminal"],["Pfam%3APF04261","Dyp-type peroxidase, N-terminal"],["Pfam%3APF18374","Enolase N-terminal domain-like"],["PROSITE%3APS00909","Mandelate racemase / muconate lactonizing enzyme family signature 2"]],"b":[["NCBITaxon%3A269800","Thermobifida fusca YX"]]},{"id":"NCBITaxon:2711231","l":"Roseimicrobium sp. ORNL1","na":4,"nb":1,"a":[["TED%3AAF-A0A6G6K4X0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A6G6K4X0-F1-model_v4_TED03"],["TED%3AAF-A0A6G6KCX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6G6KCX2-F1-model_v4_TED01"],["TED%3AAF-A0A6G6KEM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6G6KEM3-F1-model_v4_TED01"],["TED%3AAF-A0A6G6K9L4-F1-model_v4_TED01","TED novel fold AF-A0A6G6K9L4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2711231","Roseimicrobium sp. ORNL1"]]},{"id":"NCBITaxon:2725","l":"Unknown prokaryotic organism","na":4,"nb":1,"a":[["Pfam%3APF01036","Bacteriorhodopsin-like protein"],["Pfam%3APF19328","2,4-diaminopentanoate dehydrogenase C-terminal domain"],["PROSITE%3APS00950","Bacterial rhodopsins signature 1"],["Pfam%3APF19964","Effector-associated domain 11"]],"b":[["NCBITaxon%3A2725","unidentified prokaryotic organism"]]},{"id":"NCBITaxon:272620","l":"Klebsiella pneumoniae subsp. pneumoniae (strain ATCC 700721 / MGH 78578)","na":4,"nb":1,"a":[["Pfam%3APF04336","Acyl carrier protein phosphodiesterase"],["Pfam%3APF17948","DnaT DNA-binding domain"],["PROSITE%3APS00839","Uroporphyrin-III C-methyltransferase signature 1"],["PROSITE%3APS00840","Uroporphyrin-III C-methyltransferase signature 2"]],"b":[["NCBITaxon%3A272620","Klebsiella pneumoniae subsp. pneumoniae MGH 78578"]]},{"id":"NCBITaxon:27292","l":"Saccharomyces pastorianus","na":1,"nb":4,"a":[["TED%3AAF-A0A6C1DP73-F1-model_v4_TED02","TED novel fold AF-A0A6C1DP73-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A27292","Saccharomyces pastorianus"],["NCBITaxon%3A1429090","Saccharomyces pastorianus CBS 1503"],["NCBITaxon%3A1073566","Saccharomyces pastorianus CBS 1513"],["NCBITaxon%3A1337639","Saccharomyces pastorianus CBS 6283"]]},{"id":"NCBITaxon:27322","l":"Metschnikowia bicuspidata","na":1,"nb":4,"a":[["TED%3AAF-A0A4P9Z9E9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4P9Z9E9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A27322","Metschnikowia bicuspidata"],["NCBITaxon%3A869754","Metschnikowia bicuspidata var. bicuspidata NRRL YB-4993"],["NCBITaxon%3A278769","Metschnikowia bicuspidata var. californica"],["NCBITaxon%3A278771","Metschnikowia bicuspidata var. chathamia"]]},{"id":"NCBITaxon:27342","l":"Schizopora paradoxa","na":4,"nb":1,"a":[["TED%3AAF-A0A0H2R7N1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0H2R7N1-F1-model_v4_TED01"],["TED%3AAF-A0A0H2S876-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0H2S876-F1-model_v4_TED02"],["TED%3AAF-A0A0H2RAH4-F1-model_v4_TED03","TED novel fold AF-A0A0H2RAH4-F1-model_v4_TED03"],["TED%3AAF-A0A0H2S445-F1-model_v4_TED01","TED novel fold AF-A0A0H2S445-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A27342","Schizopora paradoxa"]]},{"id":"NCBITaxon:2743","l":"Marinobacter nauticus","na":1,"nb":4,"a":[["TED%3AAF-A0A368Y858-F1-model_v4_TED02","TED novel fold AF-A0A368Y858-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2743","Marinobacter nauticus"],["NCBITaxon%3A1163748","Marinobacter nauticus ATCC 49840"],["NCBITaxon%3A1238884","Marinobacter nauticus ES-69"],["NCBITaxon%3A351348","Marinobacter nauticus VT8"]]},{"id":"NCBITaxon:276","l":"Thermus filiformis","na":4,"nb":1,"a":[["Pfam%3APF03119","NAD-dependent DNA ligase C4 zinc finger domain"],["PROSITE%3APS01055","NAD-dependent DNA ligase signature 1"],["PROSITE%3APS01056","NAD-dependent DNA ligase signature 2"],["TED%3AAF-A0A0A2WQ65-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0A2WQ65-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A276","Thermus filiformis"]]},{"id":"NCBITaxon:28031","l":"Lysinibacillus fusiformis","na":1,"nb":4,"a":[["TED%3AAF-A0A1E4QZZ2-F1-model_v4_TED04","TED novel fold AF-A0A1E4QZZ2-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A28031","Lysinibacillus fusiformis"],["NCBITaxon%3A1416755","Lysinibacillus fusiformis H1k"],["NCBITaxon%3A1231627","Lysinibacillus fusiformis ZB2"],["NCBITaxon%3A714961","Lysinibacillus fusiformis ZC1"]]},{"id":"NCBITaxon:28201","l":"Bdellovibrio sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A3M1C7V0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3M1C7V0-F1-model_v4_TED02"],["TED%3AAF-A0A3M1CAH8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M1CAH8-F1-model_v4_TED01"],["TED%3AAF-A0A317JLD2-F1-model_v4_TED01","TED novel fold AF-A0A317JLD2-F1-model_v4_TED01"],["TED%3AAF-A0A3M1C1J4-F1-model_v4_TED01","TED novel fold AF-A0A3M1C1J4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28201","Bdellovibrio sp."]]},{"id":"NCBITaxon:2822231","l":"Phanerodontia chrysosporium","na":4,"nb":1,"a":[["Pfam%3APF18637","Aldos-2-ulose dehydratase/isomerase (AUDH) Cupin domain"],["Pfam%3APF16010","Cytochrome domain of cellobiose dehydrogenase"],["PROSITE%3APS00623","GMC oxidoreductases signature 1"],["Pfam%3APF22301","Aldos-2-ulose dehydratase, beta-propeller domain"]],"b":[["NCBITaxon%3A2822231","Phanerodontia chrysosporium"]]},{"id":"NCBITaxon:29391","l":"Gemella morbillorum","na":1,"nb":4,"a":[["TED%3AAF-A0A2X4RFS7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2X4RFS7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A59505","Actinotignum schaalii"],["NCBITaxon%3A29391","Gemella morbillorum"],["NCBITaxon%3A1073360","Gemella morbillorum CC57F"],["NCBITaxon%3A562982","Gemella morbillorum M424"]]},{"id":"NCBITaxon:293958","l":"Rhizobium lusitanum","na":4,"nb":1,"a":[["TED%3AAF-A0A1C3VR22-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C3VR22-F1-model_v4_TED01"],["TED%3AAF-A0A7G6RR69-F1-model_v4_TED01","TED novel fold AF-A0A7G6RR69-F1-model_v4_TED01"],["TED%3AAF-A0A7X0IU19-F1-model_v4_TED02","TED novel fold AF-A0A7X0IU19-F1-model_v4_TED02"],["TED%3AAF-A0A7X0MEH1-F1-model_v4_TED01","TED novel fold AF-A0A7X0MEH1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A293958","Martinezella lusitana"]]},{"id":"NCBITaxon:29581","l":"Janthinobacterium lividum","na":1,"nb":4,"a":[["TED%3AAF-A0A853SDQ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A853SDQ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29581","Janthinobacterium lividum"],["NCBITaxon%3A1112211","Janthinobacterium lividum PAMC 25724"],["NCBITaxon%3A303","Pseudomonas putida"],["NCBITaxon%3A13690","Sphingobium yanoikuyae"]]},{"id":"NCBITaxon:312471","l":"Neobodo designis","na":4,"nb":1,"a":[["TED%3AAF-A0A7S1PR96-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1PR96-F1-model_v4_TED01"],["TED%3AAF-A0A7S1QZ59-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1QZ59-F1-model_v4_TED01"],["TED%3AAF-A0A7S1MNS8-F1-model_v4_TED02","TED novel fold AF-A0A7S1MNS8-F1-model_v4_TED02"],["TED%3AAF-A0A7S1QYM9-F1-model_v4_TED02","TED novel fold AF-A0A7S1QYM9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A312471","Neobodo designis"]]},{"id":"NCBITaxon:317577","l":"Deinococcus ficus","na":1,"nb":4,"a":[["TED%3AAF-A0A221T2Q9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A221T2Q9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A317577","Deinococcus ficus"],["NCBITaxon%3A1054569","Deinococcus ficus cp02"],["NCBITaxon%3A1054570","Deinococcus ficus cp4502"],["NCBITaxon%3A1121379","Deinococcus ficus DSM 19119"]]},{"id":"NCBITaxon:322","l":"Pseudomonas amygdali pv. tabaci","na":1,"nb":4,"a":[["TED%3AAF-A0A3M6HY89-F1-model_v4_TED01","TED novel fold AF-A0A3M6HY89-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A322","Pseudomonas amygdali pv. tabaci"],["NCBITaxon%3A1189622","Pseudomonas amygdali pv. tabaci str. 6605"],["NCBITaxon%3A573066","Pseudomonas amygdali pv. tabaci str. ATCC 11528"],["NCBITaxon%3A317","Pseudomonas syringae"]]},{"id":"NCBITaxon:328517","l":"Dokdonella fugitiva","na":4,"nb":1,"a":[["TED%3AAF-A0A4R2IAV8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4R2IAV8-F1-model_v4_TED02"],["TED%3AAF-A0A839F433-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A839F433-F1-model_v4_TED01"],["TED%3AAF-A0A839FCZ1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A839FCZ1-F1-model_v4_TED01"],["TED%3AAF-A0A839F660-F1-model_v4_TED03","TED novel fold AF-A0A839F660-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A328517","Dokdonella fugitiva"]]},{"id":"NCBITaxon:329046","l":"Rhizoclosmatium globosum","na":4,"nb":1,"a":[["TED%3AAF-A0A1Y2B3S8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y2B3S8-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2BAH9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y2BAH9-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2C6M9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1Y2C6M9-F1-model_v4_TED03"],["TED%3AAF-A0A1Y2C669-F1-model_v4_TED02","TED novel fold AF-A0A1Y2C669-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A329046","Rhizoclosmatium globosum"]]},{"id":"NCBITaxon:33008","l":"Rhodococcus globerulus","na":1,"nb":4,"a":[["Pfam%3APF13816","Haem-containing dehydratase"]],"b":[["NCBITaxon%3A84096","Gordonia alkanivorans"],["NCBITaxon%3A1818","Nocardia globerula"],["NCBITaxon%3A33008","Rhodococcus globerulus"],["NCBITaxon%3A1219016","Rhodococcus globerulus NBRC 14531"]]},{"id":"NCBITaxon:33043","l":"Coprococcus eutactus","na":1,"nb":4,"a":[["TED%3AAF-A0A3R5WIV7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3R5WIV7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2981786","Coprococcus aceti"],["NCBITaxon%3A33043","Coprococcus eutactus"],["NCBITaxon%3A411474","Coprococcus eutactus ATCC 27759"],["NCBITaxon%3A1263071","Coprococcus eutactus CAG:665"]]},{"id":"NCBITaxon:33657","l":"Phaeocystis antarctica","na":4,"nb":1,"a":[["TED%3AAF-A0A7S0ERP1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0ERP1-F1-model_v4_TED01"],["TED%3AAF-A0A7S0HHT1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0HHT1-F1-model_v4_TED01"],["TED%3AAF-A0A7S0E8J9-F1-model_v4_TED01","TED novel fold AF-A0A7S0E8J9-F1-model_v4_TED01"],["TED%3AAF-A0A7S0EGP5-F1-model_v4_TED01","TED novel fold AF-A0A7S0EGP5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A33657","Phaeocystis antarctica"]]},{"id":"NCBITaxon:337243","l":"Halorubrum ezzemoulense","na":1,"nb":4,"a":[["TED%3AAF-A0A256K5A6-F1-model_v4_TED01","TED novel fold AF-A0A256K5A6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A337243","Halorubrum ezzemoulense"],["NCBITaxon%3A1121945","Halorubrum ezzemoulense DSM 17463"],["NCBITaxon%3A44930","Natronobacterium gregoryi"],["NCBITaxon%3A797304","Natronobacterium gregoryi SP2"]]},{"id":"NCBITaxon:33938","l":"Geobacillus thermocatenulatus","na":1,"nb":4,"a":[["TED%3AAF-A0A226Q9L4-F1-model_v4_TED01","TED novel fold AF-A0A226Q9L4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A33938","Geobacillus thermocatenulatus"],["NCBITaxon%3A1366049","Geobacillus thermocatenulatus BGSC 93A1"],["NCBITaxon%3A626521","Geobacillus thermocatenulatus C56 T9"],["NCBITaxon%3A1444308","Geobacillus thermocatenulatus GS-1"]]},{"id":"NCBITaxon:34059","l":"Faucicola atlantae","na":1,"nb":4,"a":[["TED%3AAF-A0A1B8QAE0-F1-model_v4_TED02","TED novel fold AF-A0A1B8QAE0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A34059","Faucicola atlantae"],["NCBITaxon%3A1223508","Moraxella atlantae NBRC 14588"],["NCBITaxon%3A495","Neisseria elongata"],["NCBITaxon%3A294","Pseudomonas fluorescens"]]},{"id":"NCBITaxon:348802","l":"Exophiala xenobiotica","na":4,"nb":1,"a":[["TED%3AAF-A0A0D2F362-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D2F362-F1-model_v4_TED01"],["TED%3AAF-A0A0D2C843-F1-model_v4_TED02","TED novel fold AF-A0A0D2C843-F1-model_v4_TED02"],["TED%3AAF-A0A0D2ESI4-F1-model_v4_TED01","TED novel fold AF-A0A0D2ESI4-F1-model_v4_TED01"],["TED%3AAF-A0A0D2EUF9-F1-model_v4_TED01","TED novel fold AF-A0A0D2EUF9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A348802","Exophiala xenobiotica"]]},{"id":"NCBITaxon:355","l":"Azotobacter chroococcum mcd 1","na":4,"nb":1,"a":[["Pfam%3APF22521","Carbamoyltransferase, Kae1-like Domain, second subdomain"],["Pfam%3APF17788","HypF Kae1-like domain"],["Pfam%3APF09820","Predicted AAA-ATPase"],["PROSITE%3APS00692","NifH/frxC family signature 2"]],"b":[["NCBITaxon%3A355","Azotobacter chroococcum (strain mcd 1)"]]},{"id":"NCBITaxon:35677","l":"Pelagomonas calceolata","na":4,"nb":1,"a":[["TED%3AAF-A0A7S4EBC1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4EBC1-F1-model_v4_TED01"],["TED%3AAF-A0A7S4E2J9-F1-model_v4_TED01","TED novel fold AF-A0A7S4E2J9-F1-model_v4_TED01"],["TED%3AAF-A0A7S4E700-F1-model_v4_TED01","TED novel fold AF-A0A7S4E700-F1-model_v4_TED01"],["TED%3AAF-A0A7S4ECA1-F1-model_v4_TED01","TED novel fold AF-A0A7S4ECA1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A35677","Pelagomonas calceolata"]]},{"id":"NCBITaxon:35703","l":"Citrobacter amalonaticus","na":1,"nb":4,"a":[["TED%3AAF-A0A376C300-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A376C300-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A35703","Citrobacter amalonaticus"],["NCBITaxon%3A1261127","Citrobacter amalonaticus Y19"],["NCBITaxon%3A67824","Citrobacter farmeri"],["NCBITaxon%3A546","Citrobacter freundii"]]},{"id":"NCBITaxon:360316","l":"Crenothrix polyspora","na":4,"nb":1,"a":[["TED%3AAF-A0A1R4HFB5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1R4HFB5-F1-model_v4_TED02"],["TED%3AAF-A0A1R4GYY9-F1-model_v4_TED02","TED novel fold AF-A0A1R4GYY9-F1-model_v4_TED02"],["TED%3AAF-A0A1R4H4I0-F1-model_v4_TED01","TED novel fold AF-A0A1R4H4I0-F1-model_v4_TED01"],["TED%3AAF-A0A1R4HE31-F1-model_v4_TED02","TED novel fold AF-A0A1R4HE31-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A360316","Crenothrix polyspora"]]},{"id":"NCBITaxon:370355","l":"Entamoeba invadens IP1","na":4,"nb":1,"a":[["TED%3AAF-A0A0A1TVI8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A1TVI8-F1-model_v4_TED01"],["TED%3AAF-A0A0A1TVN8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A1TVN8-F1-model_v4_TED01"],["TED%3AAF-A0A0A1UGU1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A1UGU1-F1-model_v4_TED01"],["TED%3AAF-L7FNI6-F1-model_v4_TED01","TED highly-symmetric fold AF-L7FNI6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A370355","Entamoeba invadens IP1"]]},{"id":"NCBITaxon:378806","l":"Stigmatella aurantiaca DW4/3-1","na":4,"nb":1,"a":[["TED%3AAF-Q098I8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q098I8-F1-model_v4_TED01"],["TED%3AAF-E3FRW3-F1-model_v4_TED01","TED novel fold AF-E3FRW3-F1-model_v4_TED01"],["TED%3AAF-E3G0M4-F1-model_v4_TED01","TED novel fold AF-E3G0M4-F1-model_v4_TED01"],["TED%3AAF-Q08VS7-F1-model_v4_TED01","TED novel fold AF-Q08VS7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A378806","Allostigmatella aurantiaca DW4/3-1"]]},{"id":"NCBITaxon:390894","l":"Lophium mytilinum","na":4,"nb":1,"a":[["TED%3AAF-A0A6A6QJJ8-F1-model_v4_TED01","TED novel fold AF-A0A6A6QJJ8-F1-model_v4_TED01"],["TED%3AAF-A0A6A6QKI0-F1-model_v4_TED02","TED novel fold AF-A0A6A6QKI0-F1-model_v4_TED02"],["TED%3AAF-A0A6A6QNR0-F1-model_v4_TED02","TED novel fold AF-A0A6A6QNR0-F1-model_v4_TED02"],["TED%3AAF-A0A6A6QWC0-F1-model_v4_TED01","TED novel fold AF-A0A6A6QWC0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A390894","Lophium mytilinum"]]},{"id":"NCBITaxon:394095","l":"Pyxidicoccus fallax","na":4,"nb":1,"a":[["TED%3AAF-A0A848LUK3-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A848LUK3-F1-model_v4_TED04"],["TED%3AAF-A0A848LF16-F1-model_v4_TED01","TED novel fold AF-A0A848LF16-F1-model_v4_TED01"],["TED%3AAF-A0A848LFV1-F1-model_v4_TED03","TED novel fold AF-A0A848LFV1-F1-model_v4_TED03"],["TED%3AAF-A0A848LG55-F1-model_v4_TED01","TED novel fold AF-A0A848LG55-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A394095","Pyxidicoccus fallax"]]},{"id":"NCBITaxon:39441","l":"Methanobrevibacter arboriphilus","na":1,"nb":4,"a":[["TED%3AAF-A0A843AID3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843AID3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39441","Methanobrevibacter arboriphilus"],["NCBITaxon%3A1401244","Methanobrevibacter arboriphilus ANOR1"],["NCBITaxon%3A1300164","Methanobrevibacter arboriphilus JCM 13429 = DSM 1125"],["NCBITaxon%3A1293039","Methanobrevibacter arboriphilus JCM 9315"]]},{"id":"NCBITaxon:39791","l":"Corynebacterium glucuronolyticum","na":1,"nb":4,"a":[["TED%3AAF-A0A1W1U9X0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W1U9X0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39791","Corynebacterium glucuronolyticum"],["NCBITaxon%3A548478","Corynebacterium glucuronolyticum ATCC 51866"],["NCBITaxon%3A548477","Corynebacterium glucuronolyticum ATCC 51867"],["NCBITaxon%3A1121361","Corynebacterium glucuronolyticum DSM 44120"]]},{"id":"NCBITaxon:404589","l":"","na":4,"nb":1,"a":[["TED%3AAF-A7H7H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A7H7H4-F1-model_v4_TED01"],["TED%3AAF-A7H7U8-F1-model_v4_TED01","TED highly-symmetric fold AF-A7H7U8-F1-model_v4_TED01"],["TED%3AAF-A7HAV5-F1-model_v4_TED01","TED novel fold AF-A7HAV5-F1-model_v4_TED01"],["TED%3AAF-A7HE89-F1-model_v4_TED01","TED novel fold AF-A7HE89-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A404589","Anaeromyxobacter sp. Fw109-5"]]},{"id":"NCBITaxon:420281","l":"Proboscia inermis","na":4,"nb":1,"a":[["TED%3AAF-A0A7S0C146-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S0C146-F1-model_v4_TED03"],["TED%3AAF-A0A7S0CII7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S0CII7-F1-model_v4_TED02"],["TED%3AAF-A0A7S0CMH6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0CMH6-F1-model_v4_TED01"],["TED%3AAF-A0A7S0C3Z8-F1-model_v4_TED01","TED novel fold AF-A0A7S0C3Z8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A420281","Proboscia inermis"]]},{"id":"NCBITaxon:43305","l":"Butyrivibrio proteoclasticus","na":1,"nb":4,"a":[["TED%3AAF-A0A1I5WKT8-F1-model_v4_TED03","TED novel fold AF-A0A1I5WKT8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A43305","Butyrivibrio proteoclasticus"],["NCBITaxon%3A515622","Butyrivibrio proteoclasticus B316"],["NCBITaxon%3A1408431","Butyrivibrio proteoclasticus FD2007"],["NCBITaxon%3A1410650","Butyrivibrio proteoclasticus P6B7"]]},{"id":"NCBITaxon:43992","l":"Bradyrhizobium liaoningense","na":1,"nb":4,"a":[["TED%3AAF-A0A151FZT9-F1-model_v4_TED04","TED novel fold AF-A0A151FZT9-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A43992","Bradyrhizobium liaoningense"],["NCBITaxon%3A306163","Bradyrhizobium liaoningense bv. glycinearum"],["NCBITaxon%3A1128287","Bradyrhizobium liaoningense CCBAU 05525"],["NCBITaxon%3A1128288","Bradyrhizobium liaoningense CCBAU 83689"]]},{"id":"NCBITaxon:44447","l":"Pseudo-nitzschia delicatissima","na":4,"nb":1,"a":[["TED%3AAF-A0A7S0UI31-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0UI31-F1-model_v4_TED01"],["TED%3AAF-A0A7S0UJS7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0UJS7-F1-model_v4_TED01"],["TED%3AAF-A0A7S0ULC9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0ULC9-F1-model_v4_TED01"],["TED%3AAF-A0A7S0Y5Z9-F1-model_v4_TED01","TED novel fold AF-A0A7S0Y5Z9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A44447","Pseudo-nitzschia delicatissima"]]},{"id":"NCBITaxon:45243","l":"Capnocytophaga haemolytica","na":1,"nb":4,"a":[["TED%3AAF-A0A0X8JC19-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0X8JC19-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A45243","Capnocytophaga haemolytica"],["NCBITaxon%3A1410026","Capnocytophaga haemolytica HMP_JCVI_SC0216"],["NCBITaxon%3A1410027","Capnocytophaga haemolytica HMP_JCVI_SC0218"],["NCBITaxon%3A1827100","Capnocytophaga sp. JCM 8568"]]},{"id":"NCBITaxon:46180","l":"Nonomuraea rubra","na":1,"nb":4,"a":[["TED%3AAF-A0A7X0TYV7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X0TYV7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1193278","Corallincola platygyrae"],["NCBITaxon%3A1505037","Emcibacter nanhaiensis"],["NCBITaxon%3A46180","Nonomuraea rubra"],["NCBITaxon%3A1141892","Sphingomonas gimensis"]]},{"id":"NCBITaxon:464990","l":"Hemiselmis tepida","na":4,"nb":1,"a":[["TED%3AAF-A0A7S0W066-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S0W066-F1-model_v4_TED03"],["TED%3AAF-A0A7S0W722-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S0W722-F1-model_v4_TED02"],["TED%3AAF-A0A7S0V8V7-F1-model_v4_TED01","TED novel fold AF-A0A7S0V8V7-F1-model_v4_TED01"],["TED%3AAF-A0A7S0W156-F1-model_v4_TED01","TED novel fold AF-A0A7S0W156-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A464990","Hemiselmis tepida"]]},{"id":"NCBITaxon:470868","l":"Achromobacter marplatensis","na":1,"nb":4,"a":[["TED%3AAF-J4YJG0-F1-model_v4_TED03","TED highly-symmetric fold AF-J4YJG0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A217204","Achromobacter insolitus"],["NCBITaxon%3A470868","Achromobacter marplatensis"],["NCBITaxon%3A72556","Achromobacter piechaudii"],["NCBITaxon%3A85698","Achromobacter xylosoxidans"]]},{"id":"NCBITaxon:4787","l":"Phytophthora infestans","na":4,"nb":1,"a":[["Pfam%3APF27643","BZIP transcription factor 1 C-terminal domain"],["Pfam%3APF20147","Crinkler effector protein N-terminal domain"],["TED%3AAF-A0A833SU74-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A833SU74-F1-model_v4_TED02"],["TED%3AAF-A0A833S5L0-F1-model_v4_TED01","TED novel fold AF-A0A833S5L0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A4787","Phytophthora infestans"]]},{"id":"NCBITaxon:48","l":"Archangium gephyra","na":4,"nb":1,"a":[["TED%3AAF-A0A0G2ZQX3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G2ZQX3-F1-model_v4_TED01"],["TED%3AAF-A0A0G3A8M9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G3A8M9-F1-model_v4_TED01"],["TED%3AAF-A0A2W5T6H4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2W5T6H4-F1-model_v4_TED03"],["TED%3AAF-A0A0G2ZR59-F1-model_v4_TED01","TED novel fold AF-A0A0G2ZR59-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A48","Archangium gephyra"]]},{"id":"NCBITaxon:48465","l":"Prosthecobacter dejongeii","na":4,"nb":1,"a":[["TED%3AAF-A0A7W7YJS7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W7YJS7-F1-model_v4_TED01"],["TED%3AAF-A0A7W7YL82-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W7YL82-F1-model_v4_TED01"],["TED%3AAF-A0A7W8DRC9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W8DRC9-F1-model_v4_TED01"],["TED%3AAF-A0A7W8DRQ8-F1-model_v4_TED01","TED novel fold AF-A0A7W8DRQ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A48465","Prosthecobacter dejongeii"]]},{"id":"NCBITaxon:487316","l":"Acinetobacter soli","na":1,"nb":4,"a":[["TED%3AAF-A0A427LG51-F1-model_v4_TED01","TED novel fold AF-A0A427LG51-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A487316","Acinetobacter soli"],["NCBITaxon%3A1217676","Acinetobacter soli CIP 110264"],["NCBITaxon%3A1217677","Acinetobacter soli NIPH 2899"],["NCBITaxon%3A1451233","Acinetobacter soli TCM341"]]},{"id":"NCBITaxon:4955","l":"Lachancea fermentati","na":4,"nb":1,"a":[["Pfam%3APF03930","Recombinase Flp protein N-terminus"],["Pfam%3APF05202","Recombinase Flp protein"],["TED%3AAF-A0A1G4MCS2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G4MCS2-F1-model_v4_TED01"],["TED%3AAF-A0A1G4MJ93-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G4MJ93-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A4955","Lachancea fermentati"]]},{"id":"NCBITaxon:497965","l":"","na":4,"nb":1,"a":[["TED%3AAF-E0UJA0-F1-model_v4_TED01","TED highly-symmetric fold AF-E0UJA0-F1-model_v4_TED01"],["TED%3AAF-E0U6M3-F1-model_v4_TED03","TED novel fold AF-E0U6M3-F1-model_v4_TED03"],["TED%3AAF-E0UE39-F1-model_v4_TED02","TED novel fold AF-E0UE39-F1-model_v4_TED02"],["TED%3AAF-E0UM93-F1-model_v4_TED01","TED novel fold AF-E0UM93-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A497965","Gloeothece verrucosa PCC 7822"]]},{"id":"NCBITaxon:500485","l":"Penicillium rubens Wisconsin 54-1255","na":4,"nb":1,"a":[["Pfam%3APF03417","Acyl-coenzyme A:6-aminopenicillanic acid acyl-transferase"],["Pfam%3APF03659","Glycosyl hydrolase family 71"],["PROSITE%3APS00185","Isopenicillin N synthase signature 1"],["PROSITE%3APS00186","Isopenicillin N synthase signature 2"]],"b":[["NCBITaxon%3A500485","Penicillium rubens Wisconsin 54-1255"]]},{"id":"NCBITaxon:50741","l":"Marinobacter sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A2D9LBV8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9LBV8-F1-model_v4_TED01"],["TED%3AAF-A0A2D7X1D2-F1-model_v4_TED01","TED novel fold AF-A0A2D7X1D2-F1-model_v4_TED01"],["TED%3AAF-A0A2E8AEX3-F1-model_v4_TED02","TED novel fold AF-A0A2E8AEX3-F1-model_v4_TED02"],["TED%3AAF-A0A3D5Q8H2-F1-model_v4_TED01","TED novel fold AF-A0A3D5Q8H2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A50741","Marinobacter sp."]]},{"id":"NCBITaxon:5076","l":"Penicillium chrysogenum","na":4,"nb":1,"a":[["Pfam%3APF03417","Acyl-coenzyme A:6-aminopenicillanic acid acyl-transferase"],["Pfam%3APF11402","Antifungal protein"],["PROSITE%3APS00185","Isopenicillin N synthase signature 1"],["PROSITE%3APS00186","Isopenicillin N synthase signature 2"]],"b":[["NCBITaxon%3A5076","Penicillium chrysogenum"]]},{"id":"NCBITaxon:50990","l":"Rickenella mellea","na":4,"nb":1,"a":[["TED%3AAF-A0A4Y7PJF9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y7PJF9-F1-model_v4_TED01"],["TED%3AAF-A0A4Y7PDJ0-F1-model_v4_TED03","TED novel fold AF-A0A4Y7PDJ0-F1-model_v4_TED03"],["TED%3AAF-A0A4Y7PG65-F1-model_v4_TED01","TED novel fold AF-A0A4Y7PG65-F1-model_v4_TED01"],["TED%3AAF-A0A4Y7PGV9-F1-model_v4_TED02","TED novel fold AF-A0A4Y7PGV9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A50990","Rickenella mellea"]]},{"id":"NCBITaxon:512","l":"Alcaligenes sp","na":4,"nb":1,"a":[["Pfam%3APF26354","N,N-dimethylformamidase alpha subunit"],["Pfam%3APF20254","N,N-dimethylformamidase beta subunit-like, C-terminal"],["Pfam%3APF11606","Family 31 carbohydrate binding protein"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"]],"b":[["NCBITaxon%3A512","Alcaligenes sp."]]},{"id":"NCBITaxon:51671","l":"Microbacterium sp.","na":4,"nb":1,"a":[["Pfam%3APF19906","C-glycoside deglycosidase beta subunit"],["TED%3AAF-A0A349CW39-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349CW39-F1-model_v4_TED01"],["TED%3AAF-A0A2W6V981-F1-model_v4_TED01","TED novel fold AF-A0A2W6V981-F1-model_v4_TED01"],["TED%3AAF-A0A3D4PQL1-F1-model_v4_TED01","TED novel fold AF-A0A3D4PQL1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A51671","Microbacterium sp."]]},{"id":"NCBITaxon:519","l":"Bordetella parapertussis","na":1,"nb":4,"a":[["Pfam%3APF13542","Helix-turn-helix domain of transposase family ISL3"]],"b":[["NCBITaxon%3A519","Bordetella parapertussis"],["NCBITaxon%3A257311","Bordetella parapertussis 12822"],["NCBITaxon%3A1208717","Bordetella parapertussis 18323"],["NCBITaxon%3A1208660","Bordetella parapertussis Bpp5"]]},{"id":"NCBITaxon:522373","l":"Stenotrophomonas maltophilia (strain K279a)","na":4,"nb":1,"a":[["Pfam%3APF07940","Heparinase II/III-like, C-terminal"],["Pfam%3APF16970","Type-1 fimbrial protein, A"],["PROSITE%3APS00550","Hemerythrin family signature"],["Pfam%3APF05426","Alginate lyase"]],"b":[["NCBITaxon%3A522373","Stenotrophomonas maltophilia K279a"]]},{"id":"NCBITaxon:5270","l":"","na":4,"nb":1,"a":[["Pfam%3APF17445","Mating factor A1"],["Pfam%3APF24563","Mug60/KHD4 KH type I domain"],["Pfam%3APF01185","Fungal hydrophobin"],["Pfam%3APF07460","NUMOD3 motif"]],"b":[["NCBITaxon%3A5270","Mycosarcoma maydis"]]},{"id":"NCBITaxon:529507","l":"","na":4,"nb":1,"a":[["Pfam%3APF02028","BCCT, betaine/carnitine/choline family transporter"],["PROSITE%3APS01303","BCCT family of transporters signature"],["PROSITE%3APS01120","Urease nickel ligands signature"],["PROSITE%3APS00145","Urease active site"]],"b":[["NCBITaxon%3A529507","Proteus mirabilis HI4320"]]},{"id":"NCBITaxon:5341","l":"Agaricus bisporus","na":1,"nb":4,"a":[["Pfam%3APF07367","Fungal fruit body lectin"]],"b":[["NCBITaxon%3A5341","Agaricus bisporus"],["NCBITaxon%3A936046","Agaricus bisporus var. bisporus H97"],["NCBITaxon%3A192524","Agaricus bisporus var. burnettii"],["NCBITaxon%3A597362","Agaricus bisporus var. burnettii JB137-S8"]]},{"id":"NCBITaxon:53432","l":"Nocardia uniformis","na":1,"nb":4,"a":[["TED%3AAF-A0A849C8L0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A849C8L0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1872144","Actinosynnema sp."],["NCBITaxon%3A53432","Nocardia uniformis"],["NCBITaxon%3A1210100","Nocardia uniformis NBRC 13702"],["NCBITaxon%3A96045","Nocardia uniformis subsp. tsuyamanensis"]]},{"id":"NCBITaxon:5353","l":"Lentinula edodes","na":4,"nb":1,"a":[["Pfam%3APF21671","Protein CPL1-like"],["Pfam%3APF16850","Peptidase inhibitor I66"],["TED%3AAF-A0A1Q3EBL0-F1-model_v4_TED01","TED novel fold AF-A0A1Q3EBL0-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3ENK4-F1-model_v4_TED01","TED novel fold AF-A0A1Q3ENK4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5353","Lentinula edodes"]]},{"id":"NCBITaxon:53707","l":"Pseudomonas amygdali pv. lachrymans","na":1,"nb":4,"a":[["TED%3AAF-A0A3M5I528-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M5I528-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A53707","Pseudomonas amygdali pv. lachrymans"],["NCBITaxon%3A629260","Pseudomonas amygdali pv. lachrymans str. M301315"],["NCBITaxon%3A629267","Pseudomonas amygdali pv. lachrymans str. M302278"],["NCBITaxon%3A317","Pseudomonas syringae"]]},{"id":"NCBITaxon:5481","l":"Diutina rugosa","na":4,"nb":1,"a":[["TED%3AAF-A0A642UM15-F1-model_v4_TED02","TED novel fold AF-A0A642UM15-F1-model_v4_TED02"],["TED%3AAF-A0A642UMZ0-F1-model_v4_TED01","TED novel fold AF-A0A642UMZ0-F1-model_v4_TED01"],["TED%3AAF-A0A642UNT8-F1-model_v4_TED02","TED novel fold AF-A0A642UNT8-F1-model_v4_TED02"],["TED%3AAF-A0A642UTN5-F1-model_v4_TED01","TED novel fold AF-A0A642UTN5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5481","Diutina rugosa"]]},{"id":"NCBITaxon:5518","l":"Fusarium graminearum","na":4,"nb":1,"a":[["Pfam%3APF09118","Galactose oxidase-like, Early set domain"],["Pfam%3APF07250","Glyoxal oxidase N-terminus"],["TED%3AAF-A0A2H3FY84-F1-model_v4_TED03","TED novel fold AF-A0A2H3FY84-F1-model_v4_TED03"],["TED%3AAF-A0A2H3G191-F1-model_v4_TED01","TED novel fold AF-A0A2H3G191-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5518","Fusarium graminearum"]]},{"id":"NCBITaxon:553239","l":"Vibrio breoganii","na":1,"nb":4,"a":[["TED%3AAF-A0A193KJE7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A193KJE7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A553239","Vibrio breoganii"],["NCBITaxon%3A1205908","Vibrio breoganii 1C10"],["NCBITaxon%3A1188257","Vibrio breoganii ZF-29"],["NCBITaxon%3A1188253","Vibrio breoganii ZF-55"]]},{"id":"NCBITaxon:5544","l":"Trichoderma harzianum","na":4,"nb":1,"a":[["Pfam%3APF00840","Glycosyl hydrolase family 7"],["Pfam%3APF12708","Rhamnogalacturonase A/epimerase, pectate lyase-like"],["TED%3AAF-A0A0F9XDU3-F1-model_v4_TED01","TED novel fold AF-A0A0F9XDU3-F1-model_v4_TED01"],["TED%3AAF-A0A0G0ASL4-F1-model_v4_TED01","TED novel fold AF-A0A0G0ASL4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5544","Trichoderma harzianum"]]},{"id":"NCBITaxon:556484","l":"","na":4,"nb":1,"a":[["TED%3AAF-B7GAJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-B7GAJ8-F1-model_v4_TED01"],["TED%3AAF-B7G520-F1-model_v4_TED02","TED novel fold AF-B7G520-F1-model_v4_TED02"],["TED%3AAF-B7G8V4-F1-model_v4_TED02","TED novel fold AF-B7G8V4-F1-model_v4_TED02"],["TED%3AAF-B7GB31-F1-model_v4_TED01","TED novel fold AF-B7GB31-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A556484","Phaeodactylum tricornutum CCAP 1055/1"]]},{"id":"NCBITaxon:561230","l":"Pectobacterium carotovorum subsp. carotovorum (strain PC1)","na":4,"nb":1,"a":[["Pfam%3APF17868","AAA lid domain"],["Pfam%3APF12592","ATPase, RavA, C-terminal"],["Pfam%3APF20030","MoxR domain in the MoxR-vWA-beta-propeller ternary systems"],["Pfam%3APF20265","ATPase, RavA, LARA domain"]],"b":[["NCBITaxon%3A561230","Pectobacterium carotovorum subsp. carotovorum PC1"]]},{"id":"NCBITaxon:564","l":"Escherichia fergusonii","na":1,"nb":4,"a":[["TED%3AAF-A0A4Y5RSR2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y5RSR2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A564","Escherichia fergusonii"],["NCBITaxon%3A585054","Escherichia fergusonii ATCC 35469"],["NCBITaxon%3A550694","Escherichia fergusonii B253"],["NCBITaxon%3A981367","Escherichia fergusonii ECD227"]]},{"id":"NCBITaxon:56646","l":"Fusarium venenatum","na":4,"nb":1,"a":[["TED%3AAF-A0A2L2T3T0-F1-model_v4_TED01","TED novel fold AF-A0A2L2T3T0-F1-model_v4_TED01"],["TED%3AAF-A0A2L2T6Y7-F1-model_v4_TED02","TED novel fold AF-A0A2L2T6Y7-F1-model_v4_TED02"],["TED%3AAF-A0A2L2TYS2-F1-model_v4_TED01","TED novel fold AF-A0A2L2TYS2-F1-model_v4_TED01"],["TED%3AAF-A0A2L2U1R1-F1-model_v4_TED03","TED novel fold AF-A0A2L2U1R1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A56646","Fusarium venenatum"]]},{"id":"NCBITaxon:5691","l":"Trypanosoma brucei","na":1,"nb":4,"a":[["TED%3AAF-A0A1J0R543-F1-model_v4_TED02","TED novel fold AF-A0A1J0R543-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A5702","Trypanosoma brucei brucei"],["NCBITaxon%3A185431","Trypanosoma brucei brucei TREU927"],["NCBITaxon%3A630700","Trypanosoma brucei equiperdum"],["NCBITaxon%3A31286","Trypanosoma brucei rhodesiense"]]},{"id":"NCBITaxon:5759","l":"Entamoeba histolytica","na":4,"nb":1,"a":[["IDPO%3A0000012","molten globule to order"],["TED%3AAF-C4LXE1-F1-model_v4_TED01","TED highly-symmetric fold AF-C4LXE1-F1-model_v4_TED01"],["TED%3AAF-C4LXH3-F1-model_v4_TED02","TED novel fold AF-C4LXH3-F1-model_v4_TED02"],["TED%3AAF-C4MBN2-F1-model_v4_TED03","TED novel fold AF-C4MBN2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A5759","Entamoeba histolytica"]]},{"id":"NCBITaxon:599839","l":"Fibroporia radiculosa","na":4,"nb":1,"a":[["TED%3AAF-J4G061-F1-model_v4_TED01","TED highly-symmetric fold AF-J4G061-F1-model_v4_TED01"],["TED%3AAF-J4HTT0-F1-model_v4_TED01","TED highly-symmetric fold AF-J4HTT0-F1-model_v4_TED01"],["TED%3AAF-J4GNK0-F1-model_v4_TED01","TED novel fold AF-J4GNK0-F1-model_v4_TED01"],["TED%3AAF-J4H469-F1-model_v4_TED01","TED novel fold AF-J4H469-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A599839","Fibroporia radiculosa"]]},{"id":"NCBITaxon:620833","l":"Fusobacterium periodonticum D10","na":4,"nb":1,"a":[["TED%3AAF-K1GSN7-F1-model_v4_TED02","TED highly-symmetric fold AF-K1GSN7-F1-model_v4_TED02"],["TED%3AAF-K1GK28-F1-model_v4_TED01","TED novel fold AF-K1GK28-F1-model_v4_TED01"],["TED%3AAF-K1GT63-F1-model_v4_TED01","TED novel fold AF-K1GT63-F1-model_v4_TED01"],["TED%3AAF-K1HFK3-F1-model_v4_TED01","TED novel fold AF-K1HFK3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A620833","Fusobacterium periodonticum D10"]]},{"id":"NCBITaxon:644352","l":"Gaeumannomyces tritici (strain R3-111a-1)","na":4,"nb":1,"a":[["TED%3AAF-J8U2T4-F1-model_v4_TED01","TED highly-symmetric fold AF-J8U2T4-F1-model_v4_TED01"],["TED%3AAF-J3NLU7-F1-model_v4_TED02","TED novel fold AF-J3NLU7-F1-model_v4_TED02"],["TED%3AAF-J3NQT0-F1-model_v4_TED01","TED novel fold AF-J3NQT0-F1-model_v4_TED01"],["TED%3AAF-J3PFR6-F1-model_v4_TED02","TED novel fold AF-J3PFR6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A644352","Gaeumannomyces tritici R3-111a-1"]]},{"id":"NCBITaxon:658196","l":"Glomus cerebriforme","na":4,"nb":1,"a":[["TED%3AAF-A0A397SM59-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A397SM59-F1-model_v4_TED01"],["TED%3AAF-A0A397T6M2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A397T6M2-F1-model_v4_TED02"],["TED%3AAF-A0A397S7Z6-F1-model_v4_TED02","TED novel fold AF-A0A397S7Z6-F1-model_v4_TED02"],["TED%3AAF-A0A397SLL5-F1-model_v4_TED02","TED novel fold AF-A0A397SLL5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A658196","Glomus cerebriforme"]]},{"id":"NCBITaxon:671267","l":"Phocaeicola sartorii","na":1,"nb":4,"a":[["TED%3AAF-A0A4S2FG02-F1-model_v4_TED02","TED novel fold AF-A0A4S2FG02-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A671267","Phocaeicola sartorii"],["NCBITaxon%3A1235788","Phocaeicola sartorii dnLKV3"],["NCBITaxon%3A1236538","Phocaeicola sartorii JCM 16497"],["NCBITaxon%3A1236515","Phocaeicola sartorii JCM 17136 = DSM 21941"]]},{"id":"NCBITaxon:68998","l":"Alcaligenes sp. (strain CT14)","na":4,"nb":1,"a":[["Pfam%3APF25973","CzcB-like, barrel-sandwich hybrid domain"],["Pfam%3APF25975","CzcB C-terminal circularly permuted SH3-like domain"],["Pfam%3APF25971","CzcB, N-terminal domain"],["Pfam%3APF25893","CzcB-like, alpha-helical hairpin domain"]],"b":[["NCBITaxon%3A68998","Alcaligenes sp. CT14"]]},{"id":"NCBITaxon:710127","l":"Mycoplasmoides gallisepticum (strain R(low / passage 15 / clone 2))","na":4,"nb":1,"a":[["Pfam%3APF27734","Cytadherence high molecular weight protein 2"],["Pfam%3APF07271","Cytadhesin P30/P32"],["Pfam%3APF06574","FAD synthetase"],["Pfam%3APF12378","Mycoplasma adhesin P1, N-terminal"]],"b":[["NCBITaxon%3A710127","Mycoplasmoides gallisepticum str. R(low)"]]},{"id":"NCBITaxon:72360","l":"Bacillus mojavensis","na":1,"nb":4,"a":[["Pfam%3APF05952","Bacillus competence pheromone ComX"]],"b":[["NCBITaxon%3A260554","Bacillus halotolerans"],["NCBITaxon%3A72360","Bacillus mojavensis"],["NCBITaxon%3A1051501","Bacillus mojavensis RO-H-1 = KCTC 3706"],["NCBITaxon%3A1329377","Bacillus mojavensis RRC 101"]]},{"id":"NCBITaxon:72548","l":"Prymnesium polylepis","na":4,"nb":1,"a":[["TED%3AAF-A0A7S4MJG5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4MJG5-F1-model_v4_TED01"],["TED%3AAF-A0A7S4HUL0-F1-model_v4_TED03","TED novel fold AF-A0A7S4HUL0-F1-model_v4_TED03"],["TED%3AAF-A0A7S4MHM1-F1-model_v4_TED01","TED novel fold AF-A0A7S4MHM1-F1-model_v4_TED01"],["TED%3AAF-A0A7S4N3G6-F1-model_v4_TED01","TED novel fold AF-A0A7S4N3G6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A72548","Prymnesium polylepis"]]},{"id":"NCBITaxon:744512","l":"Treponema rectale","na":4,"nb":1,"a":[["TED%3AAF-A0A7M1XL74-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7M1XL74-F1-model_v4_TED02"],["TED%3AAF-A0A7M1XI10-F1-model_v4_TED02","TED novel fold AF-A0A7M1XI10-F1-model_v4_TED02"],["TED%3AAF-A0A7M1XIN4-F1-model_v4_TED02","TED novel fold AF-A0A7M1XIN4-F1-model_v4_TED02"],["TED%3AAF-A0A7M1XJH8-F1-model_v4_TED03","TED novel fold AF-A0A7M1XJH8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A744512","Treponema rectale"]]},{"id":"NCBITaxon:74565","l":"Arthrobacter sp. (strain CB-8)","na":4,"nb":1,"a":[["Pfam%3APF17433","Glycosyl hydrolase family 49 N-terminal Ig-like domain"],["Pfam%3APF18841","Beta solenoid repeat from Dextranase"],["Pfam%3APF03718","Glycosyl hydrolase family 49"],["Pfam%3APF18783","Isopullulanase beta-solenoid repeat"]],"b":[["NCBITaxon%3A74565","Arthrobacter sp. CB-8"]]},{"id":"NCBITaxon:747676","l":"Melampsora larici-populina (strain 98AG31 / pathotype 3-4-7)","na":4,"nb":1,"a":[["TED%3AAF-F4R5F1-F1-model_v4_TED01","TED highly-symmetric fold AF-F4R5F1-F1-model_v4_TED01"],["TED%3AAF-F4RCW9-F1-model_v4_TED01","TED highly-symmetric fold AF-F4RCW9-F1-model_v4_TED01"],["TED%3AAF-F4RU47-F1-model_v4_TED01","TED highly-symmetric fold AF-F4RU47-F1-model_v4_TED01"],["TED%3AAF-F4SD93-F1-model_v4_TED01","TED highly-symmetric fold AF-F4SD93-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A747676","Melampsora larici-populina 98AG31"]]},{"id":"NCBITaxon:787","l":"Rickettsia australis","na":1,"nb":4,"a":[["Pfam%3APF16998","17 kDa outer membrane surface antigen"]],"b":[["NCBITaxon%3A787","Rickettsia australis"],["NCBITaxon%3A1105110","Rickettsia australis str. Cutlack"],["NCBITaxon%3A1359150","Rickettsia australis str. H2292"],["NCBITaxon%3A1196662","Rickettsia australis str. Phillips"]]},{"id":"NCBITaxon:83449","l":"Cystobacter ferrugineus","na":4,"nb":1,"a":[["TED%3AAF-A0A1L9B4M1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L9B4M1-F1-model_v4_TED01"],["TED%3AAF-A0A1L9B5W1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L9B5W1-F1-model_v4_TED01"],["TED%3AAF-A0A1L9BCS8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L9BCS8-F1-model_v4_TED01"],["TED%3AAF-A0A1L9BDA4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1L9BDA4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A83449","Cystobacter ferrugineus"]]},{"id":"NCBITaxon:839","l":"Xylanibacter ruminicola","na":1,"nb":4,"a":[["TED%3AAF-A0A1M7DCP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M7DCP8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1531","Enterocloster clostridioformis"],["NCBITaxon%3A839","Xylanibacter ruminicola"],["NCBITaxon%3A264731","Xylanibacter ruminicola 23"],["NCBITaxon%3A1410667","Xylanibacter ruminicola Ga6B6"]]},{"id":"NCBITaxon:84025","l":"Clostridium haemolyticum","na":1,"nb":4,"a":[["TED%3AAF-A0A1V2Y674-F1-model_v4_TED01","TED novel fold AF-A0A1V2Y674-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1491","Clostridium botulinum"],["NCBITaxon%3A84025","Clostridium haemolyticum"],["NCBITaxon%3A1443115","Clostridium haemolyticum NCTC 8350"],["NCBITaxon%3A1443114","Clostridium haemolyticum NCTC 9693"]]},{"id":"NCBITaxon:870","l":"Dichelobacter nodosus","na":1,"nb":4,"a":[["Pfam%3APF27166","Fimbrial assembly protein FimB"]],"b":[["NCBITaxon%3A870","Dichelobacter nodosus"],["NCBITaxon%3A35819","Dichelobacter nodosus A198"],["NCBITaxon%3A46911","Dichelobacter nodosus H1"],["NCBITaxon%3A246195","Dichelobacter nodosus VCS1703A"]]},{"id":"NCBITaxon:888845","l":"Minicystis rosea","na":4,"nb":1,"a":[["TED%3AAF-A0A1L6LHU6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6LHU6-F1-model_v4_TED01"],["TED%3AAF-A0A1L6LWQ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6LWQ0-F1-model_v4_TED01"],["TED%3AAF-A0A1L6L181-F1-model_v4_TED02","TED novel fold AF-A0A1L6L181-F1-model_v4_TED02"],["TED%3AAF-A0A1L6LWI8-F1-model_v4_TED02","TED novel fold AF-A0A1L6LWI8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A888845","Minicystis rosea"]]},{"id":"NCBITaxon:909420","l":"Neisseria meningitidis serogroup B / serotype 15 (strain H44/76)","na":4,"nb":1,"a":[["Pfam%3APF08794","Factor H binding protein, C-terminal"],["Pfam%3APF20937","Factor H binding protein, N-terminal"],["Pfam%3APF10093","Elongation-Factor P (EF-P) rhamnosyltransferase EarP"],["Pfam%3APF12951","Passenger-associated-transport-repeat"]],"b":[["NCBITaxon%3A909420","Neisseria meningitidis H44/76"]]},{"id":"NCBITaxon:914234","l":"Ceriporiopsis subvermispora (strain B)","na":4,"nb":1,"a":[["TED%3AAF-M2PE00-F1-model_v4_TED02","TED novel fold AF-M2PE00-F1-model_v4_TED02"],["TED%3AAF-M2R4A1-F1-model_v4_TED01","TED novel fold AF-M2R4A1-F1-model_v4_TED01"],["TED%3AAF-M2RBL3-F1-model_v4_TED01","TED novel fold AF-M2RBL3-F1-model_v4_TED01"],["TED%3AAF-M2RKN7-F1-model_v4_TED01","TED novel fold AF-M2RKN7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A914234","Gelatoporia subvermispora B"]]},{"id":"NCBITaxon:91943","l":"Hortaea werneckii","na":4,"nb":1,"a":[["TED%3AAF-A0A3M7FF58-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M7FF58-F1-model_v4_TED01"],["TED%3AAF-A0A3M7A540-F1-model_v4_TED02","TED novel fold AF-A0A3M7A540-F1-model_v4_TED02"],["TED%3AAF-A0A3M7EWD3-F1-model_v4_TED02","TED novel fold AF-A0A3M7EWD3-F1-model_v4_TED02"],["TED%3AAF-A0A3M7F0J9-F1-model_v4_TED01","TED novel fold AF-A0A3M7F0J9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A91943","Hortaea werneckii"]]},{"id":"NCBITaxon:933388","l":"Penicillium oxalicum (strain 114-2 / CGMCC 5302)","na":4,"nb":1,"a":[["Pfam%3APF27751","ATEG_07667 C-terminal domain"],["Pfam%3APF11402","Antifungal protein"],["Pfam%3APF12311","Protein of unknown function (DUF3632)"],["TED%3AAF-S8ATN5-F1-model_v4_TED01","TED highly-symmetric fold AF-S8ATN5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A933388","Penicillium oxalicum 114-2"]]},{"id":"NCBITaxon:935293","l":"Yersinia entomophaga","na":4,"nb":1,"a":[["Pfam%3APF05785","Rho-activating domain of cytotoxic necrotizing factor"],["Pfam%3APF20220","ABC toxin N-terminal region"],["Pfam%3APF18413","Neuraminidase-like domain"],["Pfam%3APF12256","Insecticide toxin TcdB middle/N-terminal region"]],"b":[["NCBITaxon%3A935293","Yersinia entomophaga"]]},{"id":"NCBITaxon:93625","l":"Psilocybe cyanescens","na":4,"nb":1,"a":[["Pfam%3APF02958","Ecdysteroid kinase-like family"],["TED%3AAF-A0A409XLW7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A409XLW7-F1-model_v4_TED01"],["TED%3AAF-A0A409XPY8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A409XPY8-F1-model_v4_TED01"],["TED%3AAF-A0A409XED8-F1-model_v4_TED01","TED novel fold AF-A0A409XED8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A93625","Psilocybe cyanescens"]]},{"id":"NCBITaxon:940295","l":"Ignicoccus islandicus DSM 13165","na":1,"nb":4,"a":[["TED%3AAF-A0A0U3FPM2-F1-model_v4_TED03","TED novel fold AF-A0A0U3FPM2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A54259","Ignicoccus islandicus"],["NCBITaxon%3A940295","Ignicoccus islandicus DSM 13165"],["NCBITaxon%3A114376","Ignicoccus pacificus"],["NCBITaxon%3A940294","Ignicoccus pacificus DSM 13166"]]},{"id":"NCBITaxon:960","l":"Bacteriovorax stolpii","na":4,"nb":1,"a":[["TED%3AAF-A0A2K9NQE9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2K9NQE9-F1-model_v4_TED01"],["TED%3AAF-A0A2K9NU38-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2K9NU38-F1-model_v4_TED03"],["TED%3AAF-A0A2K9NN30-F1-model_v4_TED02","TED novel fold AF-A0A2K9NN30-F1-model_v4_TED02"],["TED%3AAF-A0A2K9NUC6-F1-model_v4_TED01","TED novel fold AF-A0A2K9NUC6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A960","Bacteriovorax stolpii"]]},{"id":"NCBITaxon:1003181","l":"Candidatus Thiomargarita nelsonii","na":3,"nb":1,"a":[["TED%3AAF-A0A0A6P559-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A6P559-F1-model_v4_TED01"],["TED%3AAF-A0A176S227-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A176S227-F1-model_v4_TED01"],["TED%3AAF-A0A4E0QWU3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4E0QWU3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1003181","Candidatus Thiomargarita nelsonii"]]},{"id":"NCBITaxon:1003237","l":"Nitrospirillum amazonense Y2","na":1,"nb":3,"a":[["TED%3AAF-G1Y2J3-F1-model_v4_TED02","TED novel fold AF-G1Y2J3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A28077","Nitrospirillum amazonense"],["NCBITaxon%3A3144925","Nitrospirillum viridazoti"],["NCBITaxon%3A1003237","Nitrospirillum viridazoti Y2"]]},{"id":"NCBITaxon:101127","l":"Hesseltinella vesiculosa","na":3,"nb":1,"a":[["TED%3AAF-A0A1X2GTE9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X2GTE9-F1-model_v4_TED01"],["TED%3AAF-A0A1X2GVH9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X2GVH9-F1-model_v4_TED01"],["TED%3AAF-A0A1X2GHF0-F1-model_v4_TED03","TED novel fold AF-A0A1X2GHF0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A101127","Hesseltinella vesiculosa"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":3,"nb":1,"a":[["Pfam%3APF05258","Dna[CI] antecedent, DciA"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"],["TED%3AAF-Q0RZW9-F1-model_v4_TED03","TED highly-symmetric fold AF-Q0RZW9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A101510","Rhodococcus jostii RHA1"]]},{"id":"NCBITaxon:1017","l":"Capnocytophaga gingivalis","na":1,"nb":3,"a":[["TED%3AAF-A0A250FUG5-F1-model_v4_TED01","TED novel fold AF-A0A250FUG5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1017","Capnocytophaga gingivalis"],["NCBITaxon%3A553178","Capnocytophaga gingivalis ATCC 33624"],["NCBITaxon%3A45242","Capnocytophaga granulosa"]]},{"id":"NCBITaxon:102129","l":"Leptolyngbya sp. PCC 7375","na":3,"nb":1,"a":[["TED%3AAF-K9ELM8-F1-model_v4_TED01","TED highly-symmetric fold AF-K9ELM8-F1-model_v4_TED01"],["TED%3AAF-K9F3N8-F1-model_v4_TED02","TED highly-symmetric fold AF-K9F3N8-F1-model_v4_TED02"],["TED%3AAF-K9FA28-F1-model_v4_TED01","TED novel fold AF-K9FA28-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A102129","Leptolyngbya sp. PCC 7375"]]},{"id":"NCBITaxon:1035193","l":"Capnocytophaga sp. oral taxon 326 str. F0382","na":3,"nb":1,"a":[["TED%3AAF-L1Q2A5-F1-model_v4_TED01","TED highly-symmetric fold AF-L1Q2A5-F1-model_v4_TED01"],["TED%3AAF-L1PA32-F1-model_v4_TED01","TED novel fold AF-L1PA32-F1-model_v4_TED01"],["TED%3AAF-L1PEF0-F1-model_v4_TED01","TED novel fold AF-L1PEF0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1035193","Capnocytophaga sp. oral taxon 326 str. F0382"]]},{"id":"NCBITaxon:1038928","l":"Streptomyces xinghaiensis","na":1,"nb":3,"a":[["TED%3AAF-A0A3R7FP99-F1-model_v4_TED01","TED novel fold AF-A0A3R7FP99-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1906","Streptomyces fradiae"],["NCBITaxon%3A1038928","Streptomyces xinghaiensis"],["NCBITaxon%3A1038929","Streptomyces xinghaiensis S187"]]},{"id":"NCBITaxon:106004","l":"Leucosporidium creatinivorum","na":3,"nb":1,"a":[["TED%3AAF-A0A1Y2CPR7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y2CPR7-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2EW19-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Y2EW19-F1-model_v4_TED02"],["TED%3AAF-A0A1Y2G0B4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y2G0B4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A106004","Leucosporidium creatinivorum"]]},{"id":"NCBITaxon:1076126","l":"Phytohabitans houttuyneae","na":3,"nb":1,"a":[["TED%3AAF-A0A6V8KGS6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6V8KGS6-F1-model_v4_TED01"],["TED%3AAF-A0A6V8KHM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6V8KHM3-F1-model_v4_TED01"],["TED%3AAF-A0A6V8K7N7-F1-model_v4_TED01","TED novel fold AF-A0A6V8K7N7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1076126","Phytohabitans houttuyneae"]]},{"id":"NCBITaxon:1076256","l":"Armillaria solidipes","na":3,"nb":1,"a":[["TED%3AAF-A0A2H3BR39-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H3BR39-F1-model_v4_TED02"],["TED%3AAF-A0A2H3B8U4-F1-model_v4_TED01","TED novel fold AF-A0A2H3B8U4-F1-model_v4_TED01"],["TED%3AAF-A0A2H3BBY0-F1-model_v4_TED02","TED novel fold AF-A0A2H3BBY0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1076256","Armillaria solidipes"]]},{"id":"NCBITaxon:1121336","l":"Thermoclostridium stercorarium subsp. thermolacticum DSM 2910","na":1,"nb":3,"a":[["TED%3AAF-A0A1B1YDV6-F1-model_v4_TED02","TED novel fold AF-A0A1B1YDV6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1510","Thermoclostridium stercorarium"],["NCBITaxon%3A29351","Thermoclostridium stercorarium subsp. thermolacticum"],["NCBITaxon%3A1121336","Thermoclostridium stercorarium subsp. thermolacticum DSM 2910"]]},{"id":"NCBITaxon:1125630","l":"Klebsiella pneumoniae subsp. pneumoniae (strain HS11286)","na":3,"nb":1,"a":[["Pfam%3APF16527","Two-component sensor protein CpxA, periplasmic domain"],["Pfam%3APF03883","Peroxide stress protein YaaA"],["PROSITE%3APS01081","TetR-type HTH domain signature"]],"b":[["NCBITaxon%3A1125630","Klebsiella pneumoniae subsp. pneumoniae HS11286"]]},{"id":"NCBITaxon:114699","l":"Streptomyces asiaticus","na":1,"nb":3,"a":[["TED%3AAF-A0A6G4A920-F1-model_v4_TED03","TED novel fold AF-A0A6G4A920-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A114699","Streptomyces asiaticus"],["NCBITaxon%3A3098222","Streptomyces asiaticus subsp. ignotus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:1147111","l":"Fusarium euwallaceae","na":3,"nb":1,"a":[["TED%3AAF-A0A430KYR9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A430KYR9-F1-model_v4_TED01"],["TED%3AAF-A0A430LI96-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A430LI96-F1-model_v4_TED01"],["TED%3AAF-A0A430LBG1-F1-model_v4_TED03","TED novel fold AF-A0A430LBG1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1147111","Fusarium euwallaceae"]]},{"id":"NCBITaxon:1149755","l":"Hyaloscypha variabilis F","na":3,"nb":1,"a":[["TED%3AAF-A0A2J6S371-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2J6S371-F1-model_v4_TED03"],["TED%3AAF-A0A2J6QYZ0-F1-model_v4_TED03","TED novel fold AF-A0A2J6QYZ0-F1-model_v4_TED03"],["TED%3AAF-A0A2J6RQN3-F1-model_v4_TED02","TED novel fold AF-A0A2J6RQN3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1149755","Hyaloscypha variabilis F"]]},{"id":"NCBITaxon:115778","l":"Leuconostoc gasicomitatum","na":1,"nb":3,"a":[["TED%3AAF-A0A7H9BD19-F1-model_v4_TED01","TED novel fold AF-A0A7H9BD19-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A115778","Leuconostoc gasicomitatum"],["NCBITaxon%3A1165892","Leuconostoc gasicomitatum KG16-1"],["NCBITaxon%3A762550","Leuconostoc gasicomitatum LMG 18811"]]},{"id":"NCBITaxon:116188","l":"Streptomyces coeruleorubidus","na":1,"nb":3,"a":[["Pfam%3APF13732","ATP-binding protein DrrA1-3-like, C-terminal domain"]],"b":[["NCBITaxon%3A1521190","Streptomyces bellus subsp. cirolerosus"],["NCBITaxon%3A116188","Streptomyces coeruleorubidus"],["NCBITaxon%3A146536","Streptomyces curacoi"]]},{"id":"NCBITaxon:1169539","l":"Vitrella brassicaformis","na":3,"nb":1,"a":[["TED%3AAF-A0A7S1JS09-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S1JS09-F1-model_v4_TED02"],["TED%3AAF-A0A7S1P3H9-F1-model_v4_TED02","TED novel fold AF-A0A7S1P3H9-F1-model_v4_TED02"],["TED%3AAF-A0A7S1P6L5-F1-model_v4_TED02","TED novel fold AF-A0A7S1P6L5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1169539","Vitrella brassicaformis"]]},{"id":"NCBITaxon:1195236","l":"Ruminiclostridium cellobioparum subsp. termitidis CT1112","na":1,"nb":3,"a":[["TED%3AAF-S0FP91-F1-model_v4_TED01","TED highly-symmetric fold AF-S0FP91-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29355","Ruminiclostridium cellobioparum"],["NCBITaxon%3A29371","Ruminiclostridium cellobioparum subsp. termitidis"],["NCBITaxon%3A1195236","Ruminiclostridium cellobioparum subsp. termitidis CT1112"]]},{"id":"NCBITaxon:1196095","l":"Gilliamella apicola","na":1,"nb":3,"a":[["TED%3AAF-A0A1B9LJZ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B9LJZ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1196095","Gilliamella apicola"],["NCBITaxon%3A1445513","Gilliamella apicola SCGC AB-598-B02"],["NCBITaxon%3A1445514","Gilliamella apicola SCGC AB-598-I20"]]},{"id":"NCBITaxon:1227467","l":"Halorubrum distributum JCM 9100","na":1,"nb":3,"a":[["TED%3AAF-M0EUZ2-F1-model_v4_TED02","TED novel fold AF-M0EUZ2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29283","Halorubrum distributum"],["NCBITaxon%3A1227468","Halorubrum distributum JCM 10118"],["NCBITaxon%3A1227467","Halorubrum distributum JCM 9100"]]},{"id":"NCBITaxon:1230097","l":"Cytospora leucostoma","na":3,"nb":1,"a":[["TED%3AAF-A0A423XFD9-F1-model_v4_TED03","TED novel fold AF-A0A423XFD9-F1-model_v4_TED03"],["TED%3AAF-A0A423XFH9-F1-model_v4_TED02","TED novel fold AF-A0A423XFH9-F1-model_v4_TED02"],["TED%3AAF-A0A423XKU4-F1-model_v4_TED02","TED novel fold AF-A0A423XKU4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1230097","Cytospora leucostoma"]]},{"id":"NCBITaxon:1233171","l":"Paraclostridium bifermentans ATCC 638 = DSM 14991","na":1,"nb":3,"a":[["TED%3AAF-T4VPR8-F1-model_v4_TED01","TED novel fold AF-T4VPR8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1490","Paraclostridium bifermentans"],["NCBITaxon%3A1233171","Paraclostridium bifermentans ATCC 638 = DSM 14991"],["NCBITaxon%3A2663174","Paraclostridium bifermentans subsp. bifermentans"]]},{"id":"NCBITaxon:1235835","l":"Anaerotruncus sp. G3(2012)","na":3,"nb":1,"a":[["TED%3AAF-R9L8U2-F1-model_v4_TED01","TED novel fold AF-R9L8U2-F1-model_v4_TED01"],["TED%3AAF-R9LRP4-F1-model_v4_TED03","TED novel fold AF-R9LRP4-F1-model_v4_TED03"],["TED%3AAF-R9LW99-F1-model_v4_TED01","TED novel fold AF-R9LW99-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1235835","Anaerotruncus sp. G3(2012)"]]},{"id":"NCBITaxon:1243014","l":"Vibrio thalassae","na":1,"nb":3,"a":[["TED%3AAF-A0A240ENP9-F1-model_v4_TED01","TED novel fold AF-A0A240ENP9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1387297","Falsiporphyromonas endometrii"],["NCBITaxon%3A1268269","Geojedonia litorea"],["NCBITaxon%3A1243014","Vibrio thalassae"]]},{"id":"NCBITaxon:1252","l":"Leuconostoc carnosum","na":1,"nb":3,"a":[["TED%3AAF-A0A2U3PKG3-F1-model_v4_TED01","TED novel fold AF-A0A2U3PKG3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1252","Leuconostoc carnosum"],["NCBITaxon%3A1229758","Leuconostoc carnosum JB16"],["NCBITaxon%3A1046593","Leuconostoc carnosum KCTC 3525"]]},{"id":"NCBITaxon:1257118","l":"Acanthamoeba castellanii str. Neff","na":3,"nb":1,"a":[["TED%3AAF-L8GX64-F1-model_v4_TED01","TED highly-symmetric fold AF-L8GX64-F1-model_v4_TED01"],["TED%3AAF-L8GQY5-F1-model_v4_TED03","TED novel fold AF-L8GQY5-F1-model_v4_TED03"],["TED%3AAF-L8H6A2-F1-model_v4_TED01","TED novel fold AF-L8H6A2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1257118","Acanthamoeba castellanii str. Neff"]]},{"id":"NCBITaxon:1262753","l":"Bacteroides sp. CAG:927","na":3,"nb":1,"a":[["TED%3AAF-R5B046-F1-model_v4_TED02","TED highly-symmetric fold AF-R5B046-F1-model_v4_TED02"],["TED%3AAF-R5AYB1-F1-model_v4_TED04","TED novel fold AF-R5AYB1-F1-model_v4_TED04"],["TED%3AAF-R5B5Z5-F1-model_v4_TED01","TED novel fold AF-R5B5Z5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262753","Bacteroides sp. CAG:927"]]},{"id":"NCBITaxon:1262795","l":"Clostridium sp. CAG:307","na":3,"nb":1,"a":[["TED%3AAF-R7GGA9-F1-model_v4_TED02","TED highly-symmetric fold AF-R7GGA9-F1-model_v4_TED02"],["TED%3AAF-R7GHK2-F1-model_v4_TED02","TED highly-symmetric fold AF-R7GHK2-F1-model_v4_TED02"],["TED%3AAF-R7GB72-F1-model_v4_TED04","TED novel fold AF-R7GB72-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1262795","Clostridium sp. CAG:307"]]},{"id":"NCBITaxon:1262821","l":"Clostridium sp. CAG:568","na":3,"nb":1,"a":[["TED%3AAF-R5ZMH9-F1-model_v4_TED01","TED highly-symmetric fold AF-R5ZMH9-F1-model_v4_TED01"],["TED%3AAF-R5ZCU7-F1-model_v4_TED01","TED novel fold AF-R5ZCU7-F1-model_v4_TED01"],["TED%3AAF-R5ZER1-F1-model_v4_TED03","TED novel fold AF-R5ZER1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1262821","Clostridium sp. CAG:568"]]},{"id":"NCBITaxon:1262831","l":"Clostridium sp. CAG:678","na":3,"nb":1,"a":[["TED%3AAF-R5KLS5-F1-model_v4_TED02","TED highly-symmetric fold AF-R5KLS5-F1-model_v4_TED02"],["TED%3AAF-R5KP39-F1-model_v4_TED03","TED highly-symmetric fold AF-R5KP39-F1-model_v4_TED03"],["TED%3AAF-R5KNL4-F1-model_v4_TED01","TED novel fold AF-R5KNL4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262831","Clostridium sp. CAG:678"]]},{"id":"NCBITaxon:1263023","l":"Firmicutes bacterium CAG:449","na":3,"nb":1,"a":[["TED%3AAF-R6QYP7-F1-model_v4_TED01","TED highly-symmetric fold AF-R6QYP7-F1-model_v4_TED01"],["TED%3AAF-R6R7G3-F1-model_v4_TED01","TED highly-symmetric fold AF-R6R7G3-F1-model_v4_TED01"],["TED%3AAF-R6RCJ9-F1-model_v4_TED03","TED novel fold AF-R6RCJ9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1263023","Firmicutes bacterium CAG:449"]]},{"id":"NCBITaxon:1263870","l":"","na":1,"nb":3,"a":[["TED%3AAF-M5TT15-F1-model_v4_TED02","TED novel fold AF-M5TT15-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1263869","Aporhodopirellula sallentina"],["NCBITaxon%3A1263870","Aporhodopirellula sallentina SM41"],["NCBITaxon%3A2024855","Rhodopirellula sp."]]},{"id":"NCBITaxon:1265868","l":"","na":1,"nb":3,"a":[["TED%3AAF-L8EUT2-F1-model_v4_TED01","TED highly-symmetric fold AF-L8EUT2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1927","Streptomyces rimosus"],["NCBITaxon%3A132474","Streptomyces rimosus subsp. rimosus"],["NCBITaxon%3A1265868","Streptomyces rimosus subsp. rimosus ATCC 10970"]]},{"id":"NCBITaxon:1267423","l":"Roseivirga pacifica","na":3,"nb":1,"a":[["TED%3AAF-A0A1I0MEP5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I0MEP5-F1-model_v4_TED02"],["TED%3AAF-A0A1I0RG98-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I0RG98-F1-model_v4_TED01"],["TED%3AAF-A0A4D7JNA0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4D7JNA0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1267423","Roseivirga pacifica"]]},{"id":"NCBITaxon:129364","l":"Phytophthora rubi","na":3,"nb":1,"a":[["TED%3AAF-A0A6A3GAK5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A3GAK5-F1-model_v4_TED01"],["TED%3AAF-A0A6A3IQC8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A3IQC8-F1-model_v4_TED01"],["TED%3AAF-A0A6A3K0A8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A3K0A8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A129364","Phytophthora rubi"]]},{"id":"NCBITaxon:1295009","l":"Methanomassiliicoccus intestinalis (strain Issoire-Mx1)","na":3,"nb":1,"a":[["TED%3AAF-R9T6Q3-F1-model_v4_TED04","TED highly-symmetric fold AF-R9T6Q3-F1-model_v4_TED04"],["TED%3AAF-R9TAZ5-F1-model_v4_TED01","TED highly-symmetric fold AF-R9TAZ5-F1-model_v4_TED01"],["TED%3AAF-R9T6T6-F1-model_v4_TED01","TED novel fold AF-R9T6T6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1295009","Candidatus Methanomassiliicoccus intestinalis Issoire-Mx1"]]},{"id":"NCBITaxon:1297742","l":"Myxococcus hansupus","na":1,"nb":3,"a":[["TED%3AAF-A0A0H4X3W5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0H4X3W5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A51","Chondromyces apiculatus"],["NCBITaxon%3A1192034","Chondromyces apiculatus DSM 436"],["NCBITaxon%3A1297742","Pseudomyxococcus hansupus"]]},{"id":"NCBITaxon:130081","l":"Galdieria sulphuraria","na":3,"nb":1,"a":[["Pfam%3APF04483","Protein of unknown function (DUF565)"],["TED%3AAF-M2VTL8-F1-model_v4_TED02","TED highly-symmetric fold AF-M2VTL8-F1-model_v4_TED02"],["TED%3AAF-M2XJR4-F1-model_v4_TED04","TED highly-symmetric fold AF-M2XJR4-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A130081","Galdieria sulphuraria"]]},{"id":"NCBITaxon:131363","l":"Fusarium ambrosium","na":3,"nb":1,"a":[["TED%3AAF-A0A428RPT4-F1-model_v4_TED01","TED novel fold AF-A0A428RPT4-F1-model_v4_TED01"],["TED%3AAF-A0A428V172-F1-model_v4_TED03","TED novel fold AF-A0A428V172-F1-model_v4_TED03"],["TED%3AAF-A0A428V1N4-F1-model_v4_TED01","TED novel fold AF-A0A428V1N4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A131363","Fusarium ambrosium"]]},{"id":"NCBITaxon:1317","l":"Streptococcus downei","na":1,"nb":3,"a":[["Pfam%3APF13199","Glycosyl hydrolase family 66"]],"b":[["NCBITaxon%3A1317","Streptococcus downei"],["NCBITaxon%3A904293","Streptococcus downei F0415"],["NCBITaxon%3A764290","Streptococcus downei MFe28"]]},{"id":"NCBITaxon:1321773","l":"Atopobium sp. oral taxon 810 str. F0209","na":3,"nb":1,"a":[["TED%3AAF-U1WDF8-F1-model_v4_TED01","TED novel fold AF-U1WDF8-F1-model_v4_TED01"],["TED%3AAF-U1WME7-F1-model_v4_TED02","TED novel fold AF-U1WME7-F1-model_v4_TED02"],["TED%3AAF-U1WWD2-F1-model_v4_TED03","TED novel fold AF-U1WWD2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1321773","Atopobium sp. oral taxon 810 str. F0209"]]},{"id":"NCBITaxon:1329250","l":"Weissella oryzae (strain DSM 25784 / JCM 18191 / LMG 30913 / SG25)","na":3,"nb":1,"a":[["Pfam%3APF26322","Botulinum-like neurotoxin Wo, C-terminal beta-trefoil domain"],["Pfam%3APF26321","Botulinum-like neurotoxin Wo, concanavalin A-like domain"],["TED%3AAF-A0A069CU70-F1-model_v4_TED02","TED novel fold AF-A0A069CU70-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1329250","Weissella oryzae SG25"]]},{"id":"NCBITaxon:1331910","l":"Thermogutta terrifontis","na":3,"nb":1,"a":[["TED%3AAF-A0A286RGV2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A286RGV2-F1-model_v4_TED01"],["TED%3AAF-A0A286RH16-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A286RH16-F1-model_v4_TED02"],["TED%3AAF-A0A286RL45-F1-model_v4_TED03","TED novel fold AF-A0A286RL45-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1331910","Thermogutta terrifontis"]]},{"id":"NCBITaxon:1334565","l":"","na":3,"nb":1,"a":[["Pfam%3APF09479","Listeria-Bacteroides repeat domain (List_Bact_rpt)"],["Pfam%3APF13457","GW (Gly-Tryp) dipeptide domain"],["Pfam%3APF12354","Bacterial adhesion/invasion protein N terminal"]],"b":[["NCBITaxon%3A1334565","Listeria monocytogenes EGD"]]},{"id":"NCBITaxon:135569","l":"Helicobacter apodemus","na":1,"nb":3,"a":[["TED%3AAF-A0A4U8UFG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8UFG8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A135569","Helicobacter apodemus"],["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"]]},{"id":"NCBITaxon:1399","l":"Cytobacillus firmus","na":1,"nb":3,"a":[["TED%3AAF-A0A800NFK9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A800NFK9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1399","Cytobacillus firmus"],["NCBITaxon%3A1307436","Cytobacillus firmus DS1"],["NCBITaxon%3A1314753","Cytobacillus firmus NBRC 15306"]]},{"id":"NCBITaxon:1400387","l":"Bythopirellula goksoeyrii","na":3,"nb":1,"a":[["TED%3AAF-A0A5B9Q7V0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B9Q7V0-F1-model_v4_TED01"],["TED%3AAF-A0A5B9QF75-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A5B9QF75-F1-model_v4_TED06"],["TED%3AAF-A0A5B9QUN1-F1-model_v4_TED01","TED novel fold AF-A0A5B9QUN1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1400387","Bythopirellula goksoeyrii"]]},{"id":"NCBITaxon:1423728","l":"Lentilactobacillus buchneri DSM 20057","na":1,"nb":3,"a":[["TED%3AAF-A0A4V3A4G3-F1-model_v4_TED01","TED novel fold AF-A0A4V3A4G3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1581","Lentilactobacillus buchneri"],["NCBITaxon%3A1423728","Lentilactobacillus buchneri DSM 20057"],["NCBITaxon%3A2737513","Lentilactobacillus buchneri subsp. buchneri"]]},{"id":"NCBITaxon:1434108","l":"Methanosarcina barkeri MS","na":1,"nb":3,"a":[["TED%3AAF-A0A0E3QTL0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0E3QTL0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2208","Methanosarcina barkeri"],["NCBITaxon%3A1298606","Methanosarcina barkeri JCM 10043"],["NCBITaxon%3A1434108","Methanosarcina barkeri MS"]]},{"id":"NCBITaxon:1437360","l":"Bradyrhizobium erythrophlei","na":3,"nb":1,"a":[["TED%3AAF-A0A1H4W4K7-F1-model_v4_TED01","TED novel fold AF-A0A1H4W4K7-F1-model_v4_TED01"],["TED%3AAF-A0A1M5NBM0-F1-model_v4_TED01","TED novel fold AF-A0A1M5NBM0-F1-model_v4_TED01"],["TED%3AAF-A0A1N6HZW8-F1-model_v4_TED02","TED novel fold AF-A0A1N6HZW8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1437360","Bradyrhizobium erythrophlei"]]},{"id":"NCBITaxon:146919","l":"Salinibacter ruber","na":1,"nb":3,"a":[["TED%3AAF-A0A840D6P8-F1-model_v4_TED02","TED novel fold AF-A0A840D6P8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A146919","Salinibacter ruber"],["NCBITaxon%3A309807","Salinibacter ruber DSM 13855"],["NCBITaxon%3A761659","Salinibacter ruber M8"]]},{"id":"NCBITaxon:1485010","l":"[Pythium] brassicae (nom. inval.)","na":3,"nb":1,"a":[["TED%3AAF-A0A5D6XQI2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5D6XQI2-F1-model_v4_TED01"],["TED%3AAF-A0A5D6Y5L6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5D6Y5L6-F1-model_v4_TED01"],["TED%3AAF-A0A5D6Y7V7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5D6Y7V7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1485010","[Pythium] brassicae (nom. inval.)"]]},{"id":"NCBITaxon:148604","l":"Limosilactobacillus ingluviei","na":1,"nb":3,"a":[["TED%3AAF-A0A0R2GUF0-F1-model_v4_TED01","TED novel fold AF-A0A0R2GUF0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A148604","Limosilactobacillus ingluviei"],["NCBITaxon%3A1423760","Limosilactobacillus ingluviei DSM 15946"],["NCBITaxon%3A1203076","Limosilactobacillus ingluviei str. Autruche 4"]]},{"id":"NCBITaxon:1506","l":"Clostridium sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A3D5KI35-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D5KI35-F1-model_v4_TED01"],["TED%3AAF-A0A316SA98-F1-model_v4_TED01","TED novel fold AF-A0A316SA98-F1-model_v4_TED01"],["TED%3AAF-A0A3B9UYE3-F1-model_v4_TED01","TED novel fold AF-A0A3B9UYE3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1506","Clostridium sp."]]},{"id":"NCBITaxon:1509431","l":"Candidatus Magnetomorum sp. HK-1","na":3,"nb":1,"a":[["TED%3AAF-A0A0M9EAF7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0M9EAF7-F1-model_v4_TED02"],["TED%3AAF-A0A0M9E7D0-F1-model_v4_TED02","TED novel fold AF-A0A0M9E7D0-F1-model_v4_TED02"],["TED%3AAF-A0A0M9E7N0-F1-model_v4_TED02","TED novel fold AF-A0A0M9E7N0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1509431","Candidatus Magnetomorum sp. HK-1"]]},{"id":"NCBITaxon:1520823","l":"Lachnospiraceae bacterium NE2001","na":3,"nb":1,"a":[["TED%3AAF-A0A1H9FYV6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H9FYV6-F1-model_v4_TED02"],["TED%3AAF-A0A1H9F501-F1-model_v4_TED02","TED novel fold AF-A0A1H9F501-F1-model_v4_TED02"],["TED%3AAF-A0A1H9LDC3-F1-model_v4_TED01","TED novel fold AF-A0A1H9LDC3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1520823","Lachnospiraceae bacterium NE2001"]]},{"id":"NCBITaxon:1534","l":"Clostridium kluyveri","na":1,"nb":3,"a":[["TED%3AAF-A0A1L5FEG9-F1-model_v4_TED01","TED novel fold AF-A0A1L5FEG9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1534","Clostridium kluyveri"],["NCBITaxon%3A431943","Clostridium kluyveri DSM 555"],["NCBITaxon%3A583346","Clostridium kluyveri NBRC 12016"]]},{"id":"NCBITaxon:1537994","l":"Alteromonas sp. (strain LOR)","na":3,"nb":1,"a":[["Pfam%3APF08531","Alpha-L-rhamnosidase N-terminal domain"],["Pfam%3APF05592","Bacterial alpha-L-rhamnosidase concanavalin-like domain"],["Pfam%3APF15892","BNR repeat-containing family member"]],"b":[["NCBITaxon%3A1537994","Alteromonas sp. LOR"]]},{"id":"NCBITaxon:1552123","l":"Listeria booriae","na":3,"nb":1,"a":[["TED%3AAF-A0A7X0TLR3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X0TLR3-F1-model_v4_TED01"],["TED%3AAF-A0A841XX79-F1-model_v4_TED03","TED novel fold AF-A0A841XX79-F1-model_v4_TED03"],["TED%3AAF-A0A842AXH7-F1-model_v4_TED01","TED novel fold AF-A0A842AXH7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1552123","Listeria booriae"]]},{"id":"NCBITaxon:1560006","l":"Silvibacterium dinghuense","na":3,"nb":1,"a":[["TED%3AAF-A0A4Q1SDA6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A4Q1SDA6-F1-model_v4_TED04"],["TED%3AAF-A0A4Q1SDV9-F1-model_v4_TED03","TED novel fold AF-A0A4Q1SDV9-F1-model_v4_TED03"],["TED%3AAF-A0A4Q1SJV1-F1-model_v4_TED02","TED novel fold AF-A0A4Q1SJV1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1560006","Silvibacterium dinghuense"]]},{"id":"NCBITaxon:157072","l":"Aphanomyces invadans","na":3,"nb":1,"a":[["TED%3AAF-A0A3R6WHR1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R6WHR1-F1-model_v4_TED01"],["TED%3AAF-A0A024TYB0-F1-model_v4_TED03","TED novel fold AF-A0A024TYB0-F1-model_v4_TED03"],["TED%3AAF-A0A024U7U8-F1-model_v4_TED02","TED novel fold AF-A0A024U7U8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A157072","Aphanomyces invadans"]]},{"id":"NCBITaxon:1617433","l":"Candidatus Hinthialibacteria bacterium OLB16","na":3,"nb":1,"a":[["TED%3AAF-A0A136MB65-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A136MB65-F1-model_v4_TED01"],["TED%3AAF-A0A136MHY2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A136MHY2-F1-model_v4_TED01"],["TED%3AAF-A0A136MTX9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A136MTX9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1617433","Candidatus Hinthialibacteria bacterium OLB16"]]},{"id":"NCBITaxon:161879","l":"Corynebacterium kroppenstedtii","na":1,"nb":3,"a":[["TED%3AAF-A0A2N6TDE9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N6TDE9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A161879","Corynebacterium kroppenstedtii"],["NCBITaxon%3A645127","Corynebacterium kroppenstedtii DSM 44385"],["NCBITaxon%3A2736648","Corynebacterium kroppenstedtii subsp. demodicis"]]},{"id":"NCBITaxon:1618960","l":"Parcubacteria group bacterium GW2011 GWF2 38 76","na":3,"nb":1,"a":[["TED%3AAF-A0A0G0NWX6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G0NWX6-F1-model_v4_TED01"],["TED%3AAF-A0A0G0N710-F1-model_v4_TED01","TED novel fold AF-A0A0G0N710-F1-model_v4_TED01"],["TED%3AAF-A0A0G0NYU7-F1-model_v4_TED03","TED novel fold AF-A0A0G0NYU7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1618960","Parcubacteria group bacterium GW2011_GWF2_38_76"]]},{"id":"NCBITaxon:1622","l":"Ligilactobacillus murinus","na":1,"nb":3,"a":[["TED%3AAF-A0A4S2E8S9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4S2E8S9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1622","Ligilactobacillus murinus"],["NCBITaxon%3A1235801","Ligilactobacillus murinus ASF361"],["NCBITaxon%3A1423772","Ligilactobacillus murinus DSM 20452 = NBRC 14221"]]},{"id":"NCBITaxon:164328","l":"Phytophthora ramorum","na":3,"nb":1,"a":[["TED%3AAF-H3GJD6-F1-model_v4_TED01","TED novel fold AF-H3GJD6-F1-model_v4_TED01"],["TED%3AAF-H3GUW9-F1-model_v4_TED01","TED novel fold AF-H3GUW9-F1-model_v4_TED01"],["TED%3AAF-H3GWV4-F1-model_v4_TED01","TED novel fold AF-H3GWV4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A164328","Phytophthora ramorum"]]},{"id":"NCBITaxon:1660156","l":"bacterium SCN 62-11","na":3,"nb":1,"a":[["TED%3AAF-A0A1E4EMS3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1E4EMS3-F1-model_v4_TED03"],["TED%3AAF-A0A1E4FA37-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E4FA37-F1-model_v4_TED01"],["TED%3AAF-A0A1E4FS61-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1E4FS61-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1660156","bacterium SCN 62-11"]]},{"id":"NCBITaxon:167371","l":"Phellinidium pouzarii","na":3,"nb":1,"a":[["TED%3AAF-A0A4S4L103-F1-model_v4_TED02","TED novel fold AF-A0A4S4L103-F1-model_v4_TED02"],["TED%3AAF-A0A4S4L7F3-F1-model_v4_TED01","TED novel fold AF-A0A4S4L7F3-F1-model_v4_TED01"],["TED%3AAF-A0A4S4LHK8-F1-model_v4_TED01","TED novel fold AF-A0A4S4LHK8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A167371","Phellinidium pouzarii"]]},{"id":"NCBITaxon:168471","l":"Laribacter hongkongensis","na":1,"nb":3,"a":[["TED%3AAF-A0A248LK09-F1-model_v4_TED01","TED novel fold AF-A0A248LK09-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A168471","Laribacter hongkongensis"],["NCBITaxon%3A1122157","Laribacter hongkongensis DSM 14985"],["NCBITaxon%3A557598","Laribacter hongkongensis HLHK9"]]},{"id":"NCBITaxon:1690","l":"Bifidobacterium pseudolongum subsp. globosum","na":1,"nb":3,"a":[["TED%3AAF-A0A4Q5B3M5-F1-model_v4_TED01","TED novel fold AF-A0A4Q5B3M5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1694","Bifidobacterium pseudolongum"],["NCBITaxon%3A1690","Bifidobacterium pseudolongum subsp. globosum"],["NCBITaxon%3A1410605","Bifidobacterium pseudolongum subsp. globosum DSM 20092"]]},{"id":"NCBITaxon:169430","l":"Paraburkholderia hospita","na":1,"nb":3,"a":[["TED%3AAF-A0A244DYB0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A244DYB0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A292","Burkholderia cepacia"],["NCBITaxon%3A169430","Paraburkholderia hospita"],["NCBITaxon%3A1171375","Paraburkholderia hospita BS001"]]},{"id":"NCBITaxon:1703410","l":"Phycisphaerae bacterium SM1 79","na":3,"nb":1,"a":[["TED%3AAF-A0A0S8KRY8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S8KRY8-F1-model_v4_TED01"],["TED%3AAF-A0A0S8KIV3-F1-model_v4_TED04","TED novel fold AF-A0A0S8KIV3-F1-model_v4_TED04"],["TED%3AAF-A0A0S8KNG4-F1-model_v4_TED04","TED novel fold AF-A0A0S8KNG4-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1703410","Phycisphaerae bacterium SM1_79"]]},{"id":"NCBITaxon:1712","l":"Cellulomonas gelida","na":1,"nb":3,"a":[["TED%3AAF-A0A4Y3KKM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y3KKM3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1712","Cellulomonas gelida"],["NCBITaxon%3A475662","Halomonas beimenensis"],["NCBITaxon%3A454151","Luteolibacter algae"]]},{"id":"NCBITaxon:171674","l":"Inquilinus limosus","na":1,"nb":3,"a":[["TED%3AAF-A0A211ZKE4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A211ZKE4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A171674","Inquilinus limosus"],["NCBITaxon%3A1122125","Inquilinus limosus DSM 16000"],["NCBITaxon%3A1398085","Inquilinus limosus MP06"]]},{"id":"NCBITaxon:172671","l":"Pinguiococcus pyrenoidosus","na":3,"nb":1,"a":[["TED%3AAF-A0A7R9U927-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7R9U927-F1-model_v4_TED01"],["TED%3AAF-A0A7R9U4U2-F1-model_v4_TED01","TED novel fold AF-A0A7R9U4U2-F1-model_v4_TED01"],["TED%3AAF-A0A7R9YBD8-F1-model_v4_TED01","TED novel fold AF-A0A7R9YBD8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A172671","Pinguiococcus pyrenoidosus"]]},{"id":"NCBITaxon:1727","l":"Corynebacterium variabile","na":1,"nb":3,"a":[["TED%3AAF-A0A120N518-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A120N518-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1665","Arthrobacter globiformis"],["NCBITaxon%3A1727","Corynebacterium variabile"],["NCBITaxon%3A858619","Corynebacterium variabile DSM 44702"]]},{"id":"NCBITaxon:179636","l":"Alicycliphilus denitrificans","na":1,"nb":3,"a":[["TED%3AAF-A0A858ZP78-F1-model_v4_TED01","TED novel fold AF-A0A858ZP78-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A179636","Alicycliphilus denitrificans"],["NCBITaxon%3A596153","Alicycliphilus denitrificans BC"],["NCBITaxon%3A596154","Alicycliphilus denitrificans K601"]]},{"id":"NCBITaxon:1797346","l":"Bacteroidetes bacterium GWF2 40 13","na":3,"nb":1,"a":[["TED%3AAF-A0A1F3JPW9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F3JPW9-F1-model_v4_TED01"],["TED%3AAF-A0A1F3JPR4-F1-model_v4_TED02","TED novel fold AF-A0A1F3JPR4-F1-model_v4_TED02"],["TED%3AAF-A0A1F3JRR7-F1-model_v4_TED02","TED novel fold AF-A0A1F3JRR7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797346","Bacteroidetes bacterium GWF2_40_13"]]},{"id":"NCBITaxon:1797395","l":"Bdellovibrionales bacterium RIFOXYC1 FULL 37 79","na":3,"nb":1,"a":[["TED%3AAF-A0A1F3VGU5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F3VGU5-F1-model_v4_TED01"],["TED%3AAF-A0A1F3VHT0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1F3VHT0-F1-model_v4_TED03"],["TED%3AAF-A0A1F3VD82-F1-model_v4_TED01","TED novel fold AF-A0A1F3VD82-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797395","Bdellovibrionales bacterium RIFOXYC1_FULL_37_79"]]},{"id":"NCBITaxon:179993","l":"Fusarium langsethiae","na":3,"nb":1,"a":[["TED%3AAF-A0A0N0DC99-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0N0DC99-F1-model_v4_TED01"],["TED%3AAF-A0A0N0DHX6-F1-model_v4_TED03","TED novel fold AF-A0A0N0DHX6-F1-model_v4_TED03"],["TED%3AAF-A0A0N1J303-F1-model_v4_TED02","TED novel fold AF-A0A0N1J303-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A179993","Fusarium langsethiae"]]},{"id":"NCBITaxon:1801619","l":"Collimonas sp. (strain OK412)","na":3,"nb":1,"a":[["Pfam%3APF27055","BilA ubiquitin-like domain 2"],["Pfam%3APF24702","Bacterial E2-like ubiquitin protein BilB"],["Pfam%3APF27312","BilD N-terminal domain"]],"b":[["NCBITaxon%3A1801619","Collimonas sp. OK412"]]},{"id":"NCBITaxon:1801952","l":"Planctomycetes bacterium GWC2 45 44","na":3,"nb":1,"a":[["TED%3AAF-A0A1G2X9S1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G2X9S1-F1-model_v4_TED01"],["TED%3AAF-A0A1G2XHM0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1G2XHM0-F1-model_v4_TED03"],["TED%3AAF-A0A1G2X9X7-F1-model_v4_TED02","TED novel fold AF-A0A1G2X9X7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1801952","Planctomycetes bacterium GWC2_45_44"]]},{"id":"NCBITaxon:1801971","l":"Planctomycetes bacterium RBG 16 64 12","na":3,"nb":1,"a":[["TED%3AAF-A0A1G3AF33-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1G3AF33-F1-model_v4_TED03"],["TED%3AAF-A0A1G3AK99-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G3AK99-F1-model_v4_TED02"],["TED%3AAF-A0A1G3AR13-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G3AR13-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801971","Planctomycetes bacterium RBG_16_64_12"]]},{"id":"NCBITaxon:180227","l":"Paramoeba aestuarina","na":3,"nb":1,"a":[["TED%3AAF-A0A7S4NTH0-F1-model_v4_TED01","TED novel fold AF-A0A7S4NTH0-F1-model_v4_TED01"],["TED%3AAF-A0A7S4P3P8-F1-model_v4_TED01","TED novel fold AF-A0A7S4P3P8-F1-model_v4_TED01"],["TED%3AAF-A0A7S4PJF2-F1-model_v4_TED02","TED novel fold AF-A0A7S4PJF2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A180227","Paramoeba aestuarina"]]},{"id":"NCBITaxon:1803814","l":"Theionarchaea archaeon (strain DG-70-1)","na":3,"nb":1,"a":[["TED%3AAF-A0A151ERH4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A151ERH4-F1-model_v4_TED01"],["TED%3AAF-A0A151EY16-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A151EY16-F1-model_v4_TED01"],["TED%3AAF-A0A151F5B7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A151F5B7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1803814","Theionarchaea archaeon DG-70-1"]]},{"id":"NCBITaxon:1831","l":"","na":3,"nb":1,"a":[["Pfam%3APF14525","AraC-binding-like domain"],["Pfam%3APF01613","Flavin reductase like domain"],["TED%3AAF-A0A7X7SF64-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X7SF64-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1831","Rhodococcus sp. (in: high G+C Gram-positive bacteria)"]]},{"id":"NCBITaxon:1834193","l":"Enterococcus sp. 9E7 DIV0242","na":3,"nb":1,"a":[["TED%3AAF-A0A242JUV6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A242JUV6-F1-model_v4_TED01"],["TED%3AAF-A0A242K8V1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A242K8V1-F1-model_v4_TED01"],["TED%3AAF-A0A242KEE4-F1-model_v4_TED04","TED novel fold AF-A0A242KEE4-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1834193","Candidatus Enterococcus clewellii"]]},{"id":"NCBITaxon:183478","l":"Stemphylium lycopersici","na":3,"nb":1,"a":[["TED%3AAF-A0A364MT81-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A364MT81-F1-model_v4_TED02"],["TED%3AAF-A0A364N992-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A364N992-F1-model_v4_TED01"],["TED%3AAF-A0A364N922-F1-model_v4_TED04","TED novel fold AF-A0A364N922-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A183478","Stemphylium lycopersici"]]},{"id":"NCBITaxon:1852","l":"Saccharomonospora viridis","na":1,"nb":3,"a":[["TED%3AAF-A0A837DC99-F1-model_v4_TED01","TED novel fold AF-A0A837DC99-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A40988","Saccharomonospora azurea"],["NCBITaxon%3A1852","Saccharomonospora viridis"],["NCBITaxon%3A471857","Saccharomonospora viridis DSM 43017"]]},{"id":"NCBITaxon:1856405","l":"Alteromonas lipolytica","na":3,"nb":1,"a":[["TED%3AAF-A0A1E8FFS9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E8FFS9-F1-model_v4_TED01"],["TED%3AAF-A0A1E8FJE8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E8FJE8-F1-model_v4_TED01"],["TED%3AAF-A0A1E8FD90-F1-model_v4_TED01","TED novel fold AF-A0A1E8FD90-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1856405","Marisediminitalea lipolytica"]]},{"id":"NCBITaxon:1866936","l":"bacterium ADurb.Bin243","na":3,"nb":1,"a":[["TED%3AAF-A0A1V5UDM0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5UDM0-F1-model_v4_TED01"],["TED%3AAF-A0A1V5UJ50-F1-model_v4_TED01","TED novel fold AF-A0A1V5UJ50-F1-model_v4_TED01"],["TED%3AAF-A0A1V5UQT9-F1-model_v4_TED02","TED novel fold AF-A0A1V5UQT9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1866936","bacterium ADurb.Bin243"]]},{"id":"NCBITaxon:1869","l":"Actinoplanes utahensis","na":1,"nb":3,"a":[["TED%3AAF-A0A0A6U9K1-F1-model_v4_TED02","TED novel fold AF-A0A0A6U9K1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1871","Actinoplanes sp."],["NCBITaxon%3A1869","Actinoplanes utahensis"],["NCBITaxon%3A768533","Chelativorans composti"]]},{"id":"NCBITaxon:1872578","l":"Aquabacterium sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A521ZRM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521ZRM4-F1-model_v4_TED01"],["TED%3AAF-A0A521ZL87-F1-model_v4_TED04","TED novel fold AF-A0A521ZL87-F1-model_v4_TED04"],["TED%3AAF-A0A5C8BIL8-F1-model_v4_TED02","TED novel fold AF-A0A5C8BIL8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1872578","Aquabacterium sp."]]},{"id":"NCBITaxon:1874","l":"Micromonospora chalcea","na":1,"nb":3,"a":[["TED%3AAF-A0A365UW89-F1-model_v4_TED01","TED novel fold AF-A0A365UW89-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1874","Micromonospora chalcea"],["NCBITaxon%3A2008351","Micromonospora chalcea subsp. izumensis"],["NCBITaxon%3A1876","Micromonospora sp."]]},{"id":"NCBITaxon:1877","l":"Micromonospora echinospora","na":1,"nb":3,"a":[["Pfam%3APF07091","Ribosomal RNA methyltransferase (FmrO)"]],"b":[["NCBITaxon%3A1877","Micromonospora echinospora"],["NCBITaxon%3A704114","Micromonospora echinospora subsp. challisensis"],["NCBITaxon%3A145854","Micromonospora pallida"]]},{"id":"NCBITaxon:1882831","l":"Verrucomicrobium sp. GAS474","na":3,"nb":1,"a":[["TED%3AAF-A0A1H2GE34-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H2GE34-F1-model_v4_TED01"],["TED%3AAF-A0A1H2GVJ7-F1-model_v4_TED04","TED novel fold AF-A0A1H2GVJ7-F1-model_v4_TED04"],["TED%3AAF-A0A1H2HH15-F1-model_v4_TED02","TED novel fold AF-A0A1H2HH15-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1882831","Verrucomicrobium sp. GAS474"]]},{"id":"NCBITaxon:1885","l":"Streptomyces actuosus","na":1,"nb":3,"a":[["Pfam%3APF17258","Family of unknown function (DUF5324)"]],"b":[["NCBITaxon%3A1280","Staphylococcus aureus"],["NCBITaxon%3A1885","Streptomyces actuosus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:188932","l":"Pedobacter cryoconitis","na":3,"nb":1,"a":[["TED%3AAF-A0A127VAP9-F1-model_v4_TED01","TED novel fold AF-A0A127VAP9-F1-model_v4_TED01"],["TED%3AAF-A0A127VGI1-F1-model_v4_TED01","TED novel fold AF-A0A127VGI1-F1-model_v4_TED01"],["TED%3AAF-A0A7W8YYF4-F1-model_v4_TED01","TED novel fold AF-A0A7W8YYF4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A188932","Pedobacter cryoconitis"]]},{"id":"NCBITaxon:1889775","l":"Moraxellaceae bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A3D4UCB7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D4UCB7-F1-model_v4_TED02"],["TED%3AAF-A0A3D4UDA0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D4UDA0-F1-model_v4_TED02"],["TED%3AAF-A0A4Q6EH99-F1-model_v4_TED01","TED novel fold AF-A0A4Q6EH99-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1889775","Moraxellaceae bacterium"]]},{"id":"NCBITaxon:1890364","l":"Planoprotostelium fungivorum","na":3,"nb":1,"a":[["TED%3AAF-A0A2P6MM50-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P6MM50-F1-model_v4_TED01"],["TED%3AAF-A0A2P6NL93-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P6NL93-F1-model_v4_TED01"],["TED%3AAF-A0A2P6NDP0-F1-model_v4_TED01","TED novel fold AF-A0A2P6NDP0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1890364","Planoprotostelium fungivorum"]]},{"id":"NCBITaxon:1891229","l":"Pseudomonadales bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A2D9TPX5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9TPX5-F1-model_v4_TED01"],["TED%3AAF-A0A2E3CXD3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E3CXD3-F1-model_v4_TED01"],["TED%3AAF-A0A7Y3G4Q2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y3G4Q2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1891229","Pseudomonadales bacterium"]]},{"id":"NCBITaxon:1895795","l":"Myxococcales bacterium 68-20","na":3,"nb":1,"a":[["TED%3AAF-A0A1M3N7A3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M3N7A3-F1-model_v4_TED01"],["TED%3AAF-A0A1M3NGT7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M3NGT7-F1-model_v4_TED01"],["TED%3AAF-A0A1M3NC51-F1-model_v4_TED01","TED novel fold AF-A0A1M3NC51-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895795","Myxococcales bacterium 68-20"]]},{"id":"NCBITaxon:1898111","l":"Cryomorphaceae bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A353FDE2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A353FDE2-F1-model_v4_TED02"],["TED%3AAF-A0A3B9P638-F1-model_v4_TED01","TED novel fold AF-A0A3B9P638-F1-model_v4_TED01"],["TED%3AAF-A0A8A7WP39-F1-model_v4_TED02","TED novel fold AF-A0A8A7WP39-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1898111","Cryomorphaceae bacterium"]]},{"id":"NCBITaxon:190655","l":"Legionella busanensis","na":3,"nb":1,"a":[["TED%3AAF-A0A378JRR1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A378JRR1-F1-model_v4_TED01"],["TED%3AAF-A0A378JH21-F1-model_v4_TED02","TED novel fold AF-A0A378JH21-F1-model_v4_TED02"],["TED%3AAF-A0A378JIY5-F1-model_v4_TED01","TED novel fold AF-A0A378JIY5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A190655","Legionella busanensis"]]},{"id":"NCBITaxon:191292","l":"Rhodococcus aetherivorans","na":1,"nb":3,"a":[["TED%3AAF-N1LZY7-F1-model_v4_TED01","TED highly-symmetric fold AF-N1LZY7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A191292","Rhodococcus aetherivorans"],["NCBITaxon%3A1036179","Rhodococcus aetherivorans I24"],["NCBITaxon%3A194249","uncultured Rhodococcus sp."]]},{"id":"NCBITaxon:1916082","l":"Alteromonadaceae bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A2E5MKL5-F1-model_v4_TED03","TED novel fold AF-A0A2E5MKL5-F1-model_v4_TED03"],["TED%3AAF-A0A7Y6ZTD4-F1-model_v4_TED02","TED novel fold AF-A0A7Y6ZTD4-F1-model_v4_TED02"],["TED%3AAF-A0A7Y6ZTV9-F1-model_v4_TED01","TED novel fold AF-A0A7Y6ZTV9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1916082","Alteromonadaceae bacterium"]]},{"id":"NCBITaxon:1917697","l":"Candidatus Saccharimonas sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A660M0I9-F1-model_v4_TED02","TED novel fold AF-A0A660M0I9-F1-model_v4_TED02"],["TED%3AAF-A0A660M4I9-F1-model_v4_TED01","TED novel fold AF-A0A660M4I9-F1-model_v4_TED01"],["TED%3AAF-A0A660M7X9-F1-model_v4_TED01","TED novel fold AF-A0A660M7X9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1917697","Saccharimonas sp. (SeqCode)"]]},{"id":"NCBITaxon:1920","l":"Streptomyces nigrescens","na":1,"nb":3,"a":[["Pfam%3APF03995","Peptidase inhibitor family I36"]],"b":[["NCBITaxon%3A1128671","Microvirga arabica"],["NCBITaxon%3A249582","Streptomyces libani subsp. rufus"],["NCBITaxon%3A1920","Streptomyces nigrescens"]]},{"id":"NCBITaxon:192066","l":"Neisseria sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A496JVX2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A496JVX2-F1-model_v4_TED03"],["TED%3AAF-A0A496L0X3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A496L0X3-F1-model_v4_TED01"],["TED%3AAF-A0A496JRN7-F1-model_v4_TED02","TED novel fold AF-A0A496JRN7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A192066","Neisseria sp."]]},{"id":"NCBITaxon:192149","l":"Muricauda sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A2E1AQS9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E1AQS9-F1-model_v4_TED02"],["TED%3AAF-A0A358G5R9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A358G5R9-F1-model_v4_TED01"],["TED%3AAF-A0A2E1AXQ4-F1-model_v4_TED02","TED novel fold AF-A0A2E1AXQ4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A192149","Allomuricauda sp."]]},{"id":"NCBITaxon:1927959","l":"Dyella choica","na":3,"nb":1,"a":[["TED%3AAF-A0A3S0Q5X2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S0Q5X2-F1-model_v4_TED01"],["TED%3AAF-A0A432LZT3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A432LZT3-F1-model_v4_TED01"],["TED%3AAF-A0A432MAV7-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A432MAV7-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A1927959","Dyella choica"]]},{"id":"NCBITaxon:1934244","l":"Thiotrichaceae bacterium IS1","na":3,"nb":1,"a":[["TED%3AAF-A0A1Y1Q2V2-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1Y1Q2V2-F1-model_v4_TED04"],["TED%3AAF-A0A1Y1Q4L0-F1-model_v4_TED01","TED novel fold AF-A0A1Y1Q4L0-F1-model_v4_TED01"],["TED%3AAF-A0A1Y1Q4Z4-F1-model_v4_TED01","TED novel fold AF-A0A1Y1Q4Z4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1934244","Thiotrichaceae bacterium IS1"]]},{"id":"NCBITaxon:1934248","l":"Desulfobacteraceae bacterium IS3","na":3,"nb":1,"a":[["TED%3AAF-A0A1W9MUI9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W9MUI9-F1-model_v4_TED01"],["TED%3AAF-A0A1W9MY42-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1W9MY42-F1-model_v4_TED02"],["TED%3AAF-A0A1W9LQ90-F1-model_v4_TED03","TED novel fold AF-A0A1W9LQ90-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1934248","Desulfobacteraceae bacterium IS3"]]},{"id":"NCBITaxon:193567","l":"Streptococcus pyogenes serotype M3 (strain SSI-1)","na":3,"nb":1,"a":[["Pfam%3APF13585","CHU_C Type IX secretion signal domain"],["Pfam%3APF06280","Fn3-like domain"],["PROSITE%3APS00481","Thiol-activated cytolysins signature"]],"b":[["NCBITaxon%3A193567","Streptococcus pyogenes SSI-1"]]},{"id":"NCBITaxon:1940289","l":"Phaeodactylibacter sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A7C3CFH9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C3CFH9-F1-model_v4_TED01"],["TED%3AAF-A0A7C3G5E4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C3G5E4-F1-model_v4_TED01"],["TED%3AAF-A0A7C3G5R3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C3G5R3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1940289","Phaeodactylibacter sp."]]},{"id":"NCBITaxon:1945521","l":"Psychrobacter piechaudii","na":1,"nb":3,"a":[["TED%3AAF-A0A1R4GEU4-F1-model_v4_TED01","TED novel fold AF-A0A1R4GEU4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A90241","Lwoffella lincolnii"],["NCBITaxon%3A1945521","Psychrobacter piechaudii"],["NCBITaxon%3A56811","Psychrobacter sp."]]},{"id":"NCBITaxon:1950","l":"Streptomyces peucetius","na":1,"nb":3,"a":[["Pfam%3APF13732","ATP-binding protein DrrA1-3-like, C-terminal domain"]],"b":[["NCBITaxon%3A1950","Streptomyces peucetius"],["NCBITaxon%3A55158","Streptomyces peucetius subsp. caesius"],["NCBITaxon%3A316280","Streptomyces peucetius subsp. caesius ATCC 27952"]]},{"id":"NCBITaxon:1956","l":"Streptomyces diastaticus","na":1,"nb":3,"a":[["TED%3AAF-A0A7K3Q596-F1-model_v4_TED01","TED novel fold AF-A0A7K3Q596-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A285564","Streptomyces ardesiacus"],["NCBITaxon%3A1956","Streptomyces diastaticus"],["NCBITaxon%3A68040","Streptomyces diastaticus subsp. diastaticus"]]},{"id":"NCBITaxon:1965588","l":"Anaerofilum sp. An201","na":3,"nb":1,"a":[["TED%3AAF-A0A1Y4H1V6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y4H1V6-F1-model_v4_TED01"],["TED%3AAF-A0A1Y4H5V0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y4H5V0-F1-model_v4_TED01"],["TED%3AAF-A0A1Y4H6S0-F1-model_v4_TED02","TED novel fold AF-A0A1Y4H6S0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1965588","Anaerofilum sp. An201"]]},{"id":"NCBITaxon:1970199","l":"Sorangiineae bacterium NIC37A 2","na":3,"nb":1,"a":[["TED%3AAF-A0A1W9QHW9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W9QHW9-F1-model_v4_TED01"],["TED%3AAF-A0A1W9Q7E2-F1-model_v4_TED02","TED novel fold AF-A0A1W9Q7E2-F1-model_v4_TED02"],["TED%3AAF-A0A1W9QHC1-F1-model_v4_TED04","TED novel fold AF-A0A1W9QHC1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1970199","Sorangiineae bacterium NIC37A_2"]]},{"id":"NCBITaxon:1973475","l":"Nostoc sp. NIES-2111","na":3,"nb":1,"a":[["TED%3AAF-A0A1Z4IJ26-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z4IJ26-F1-model_v4_TED01"],["TED%3AAF-A0A1Z4I7D1-F1-model_v4_TED01","TED novel fold AF-A0A1Z4I7D1-F1-model_v4_TED01"],["TED%3AAF-A0A1Z4IJI1-F1-model_v4_TED01","TED novel fold AF-A0A1Z4IJI1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973475","Nostoc sp. NIES-2111"]]},{"id":"NCBITaxon:1975527","l":"Bdellovibrio sp. CG11 big fil rev 8 21 14 0 20 39 38","na":3,"nb":1,"a":[["TED%3AAF-A0A2H0QEJ6-F1-model_v4_TED02","TED novel fold AF-A0A2H0QEJ6-F1-model_v4_TED02"],["TED%3AAF-A0A2H0QG06-F1-model_v4_TED02","TED novel fold AF-A0A2H0QG06-F1-model_v4_TED02"],["TED%3AAF-A0A2H0QP34-F1-model_v4_TED02","TED novel fold AF-A0A2H0QP34-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1975527","Bdellovibrio sp. CG11_big_fil_rev_8_21_14_0_20_39_38"]]},{"id":"NCBITaxon:1977054","l":"Leeuwenhoekiella sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A2E5GSB9-F1-model_v4_TED01","TED novel fold AF-A0A2E5GSB9-F1-model_v4_TED01"],["TED%3AAF-A0A3D4EPK5-F1-model_v4_TED01","TED novel fold AF-A0A3D4EPK5-F1-model_v4_TED01"],["TED%3AAF-A0A3D4EPM4-F1-model_v4_TED02","TED novel fold AF-A0A3D4EPM4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1977054","Leeuwenhoekiella sp."]]},{"id":"NCBITaxon:1977903","l":"Propionibacterium sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A7X9L725-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X9L725-F1-model_v4_TED01"],["TED%3AAF-A0A7X6NWY2-F1-model_v4_TED01","TED novel fold AF-A0A7X6NWY2-F1-model_v4_TED01"],["TED%3AAF-A0A7X9QD40-F1-model_v4_TED01","TED novel fold AF-A0A7X9QD40-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1977903","Propionibacterium sp."]]},{"id":"NCBITaxon:198804","l":"Buchnera aphidicola subsp. Schizaphis graminum (strain Sg)","na":3,"nb":1,"a":[["Pfam%3APF09849","Uncharacterized protein conserved in bacteria (DUF2076)"],["Pfam%3APF09976","Tetratricopeptide repeat-like domain"],["Pfam%3APF13371","Tetratricopeptide repeat"]],"b":[["NCBITaxon%3A198804","Buchnera aphidicola str. Sg (Schizaphis graminum)"]]},{"id":"NCBITaxon:2004705","l":"Pyrobaculum sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A6B2CYC8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6B2CYC8-F1-model_v4_TED01"],["TED%3AAF-A0A831PF94-F1-model_v4_TED01","TED novel fold AF-A0A831PF94-F1-model_v4_TED01"],["TED%3AAF-A0A831YHZ8-F1-model_v4_TED03","TED novel fold AF-A0A831YHZ8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2004705","Pyrobaculum sp."]]},{"id":"NCBITaxon:2013741","l":"Deltaproteobacteria bacterium HGW-Deltaproteobacteria-14","na":3,"nb":1,"a":[["TED%3AAF-A0A2N2JHU5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N2JHU5-F1-model_v4_TED02"],["TED%3AAF-A0A2N2JK01-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N2JK01-F1-model_v4_TED02"],["TED%3AAF-A0A2N2JJI3-F1-model_v4_TED01","TED novel fold AF-A0A2N2JJI3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013741","Deltaproteobacteria bacterium HGW-Deltaproteobacteria-14"]]},{"id":"NCBITaxon:2013837","l":"Spirochaetae bacterium HGW-Spirochaetae-5","na":3,"nb":1,"a":[["TED%3AAF-A0A2N1RMK9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N1RMK9-F1-model_v4_TED02"],["TED%3AAF-A0A2N1RRW6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N1RRW6-F1-model_v4_TED01"],["TED%3AAF-A0A2N1RNH6-F1-model_v4_TED01","TED novel fold AF-A0A2N1RNH6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013837","Spirochaetae bacterium HGW-Spirochaetae-5"]]},{"id":"NCBITaxon:2015799","l":"Hyphomicrobiaceae bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A5C7LPC7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7LPC7-F1-model_v4_TED01"],["TED%3AAF-A0A5C7MAH8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5C7MAH8-F1-model_v4_TED02"],["TED%3AAF-A0A849TN71-F1-model_v4_TED01","TED novel fold AF-A0A849TN71-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2015799","Hyphomicrobiaceae bacterium"]]},{"id":"NCBITaxon:2020871","l":"Vulcanisaeta sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A7C5TCI3-F1-model_v4_TED04","TED novel fold AF-A0A7C5TCI3-F1-model_v4_TED04"],["TED%3AAF-A0A7C5TGH3-F1-model_v4_TED03","TED novel fold AF-A0A7C5TGH3-F1-model_v4_TED03"],["TED%3AAF-A0A7C5XM43-F1-model_v4_TED01","TED novel fold AF-A0A7C5XM43-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2020871","Vulcanisaeta sp."]]},{"id":"NCBITaxon:2021370","l":"Sphingobacteriaceae bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A4Q5SP92-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Q5SP92-F1-model_v4_TED02"],["TED%3AAF-A0A2A3U6E1-F1-model_v4_TED02","TED novel fold AF-A0A2A3U6E1-F1-model_v4_TED02"],["TED%3AAF-A0A4V1SZT0-F1-model_v4_TED01","TED novel fold AF-A0A4V1SZT0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2021370","Sphingobacteriaceae bacterium"]]},{"id":"NCBITaxon:2021405","l":"Variovorax sp. B4","na":3,"nb":1,"a":[["TED%3AAF-A0A2J7VAY3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J7VAY3-F1-model_v4_TED01"],["TED%3AAF-A0A2J7VHP9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J7VHP9-F1-model_v4_TED01"],["TED%3AAF-A0A2J7VJ59-F1-model_v4_TED01","TED novel fold AF-A0A2J7VJ59-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2021405","Variovorax sp. B4"]]},{"id":"NCBITaxon:2026762","l":"Micrococcales bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A2E0W944-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0W944-F1-model_v4_TED01"],["TED%3AAF-A0A2G6JW52-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G6JW52-F1-model_v4_TED01"],["TED%3AAF-A0A2E0WDK7-F1-model_v4_TED01","TED novel fold AF-A0A2E0WDK7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026762","Micrococcales bacterium"]]},{"id":"NCBITaxon:2026769","l":"Nitrospinota bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A351RUP4-F1-model_v4_TED01","TED novel fold AF-A0A351RUP4-F1-model_v4_TED01"],["TED%3AAF-A0A832U9I9-F1-model_v4_TED01","TED novel fold AF-A0A832U9I9-F1-model_v4_TED01"],["TED%3AAF-A0A845JWL7-F1-model_v4_TED03","TED novel fold AF-A0A845JWL7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2026769","Nitrospinota bacterium"]]},{"id":"NCBITaxon:2026774","l":"Parcubacteria group bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A315X0E2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A315X0E2-F1-model_v4_TED01"],["TED%3AAF-A0A2D6DPG4-F1-model_v4_TED02","TED novel fold AF-A0A2D6DPG4-F1-model_v4_TED02"],["TED%3AAF-A0A2D6FK48-F1-model_v4_TED02","TED novel fold AF-A0A2D6FK48-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026774","Parcubacteria group bacterium"]]},{"id":"NCBITaxon:2026776","l":"Pelagibacterales bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A2E6DWY1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E6DWY1-F1-model_v4_TED01"],["TED%3AAF-A0A2F0AIM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2F0AIM3-F1-model_v4_TED01"],["TED%3AAF-A0A2E4WGY3-F1-model_v4_TED01","TED novel fold AF-A0A2E4WGY3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026776","Candidatus Pelagibacterales bacterium"]]},{"id":"NCBITaxon:2026888","l":"Thermoleophilia bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A7Y5WZR7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y5WZR7-F1-model_v4_TED01"],["TED%3AAF-A0A7Y6CVK3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y6CVK3-F1-model_v4_TED01"],["TED%3AAF-A0A7Y5WWI2-F1-model_v4_TED03","TED novel fold AF-A0A7Y5WWI2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2026888","Thermoleophilia bacterium"]]},{"id":"NCBITaxon:2030","l":"Kibdelosporangium aridum","na":1,"nb":3,"a":[["TED%3AAF-A0A1W1ZQL0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W1ZQL0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2030","Kibdelosporangium aridum"],["NCBITaxon%3A145995","Kibdelosporangium aridum subsp. aridum"],["NCBITaxon%3A145996","Kibdelosporangium aridum subsp. largum"]]},{"id":"NCBITaxon:203124","l":"Trichodesmium erythraeum IMS101","na":3,"nb":1,"a":[["Pfam%3APF06206","CpeT/CpcT family (DUF1001)"],["Pfam%3APF18460","Heterocyst differentiation regulator C-terminal Hood domain"],["TED%3AAF-Q10WG6-F1-model_v4_TED05","TED highly-symmetric fold AF-Q10WG6-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A203124","Trichodesmium erythraeum IMS101"]]},{"id":"NCBITaxon:2034841","l":"Lentimicrobium sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A847IVW1-F1-model_v4_TED08","TED highly-symmetric fold AF-A0A847IVW1-F1-model_v4_TED08"],["TED%3AAF-A0A847IXU2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A847IXU2-F1-model_v4_TED01"],["TED%3AAF-A0A847IZV2-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A847IZV2-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2034841","Lentimicrobium sp."]]},{"id":"NCBITaxon:2049428","l":"Ignavibacteriales bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A3N5QV19-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N5QV19-F1-model_v4_TED01"],["TED%3AAF-A0A7T9FZU1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7T9FZU1-F1-model_v4_TED02"],["TED%3AAF-A0A3D6BA26-F1-model_v4_TED01","TED novel fold AF-A0A3D6BA26-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2049428","Ignavibacteriales bacterium"]]},{"id":"NCBITaxon:2052147","l":"Caldisericota bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A661X368-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A661X368-F1-model_v4_TED02"],["TED%3AAF-A0A661XDC9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A661XDC9-F1-model_v4_TED02"],["TED%3AAF-A0A661X1M7-F1-model_v4_TED01","TED novel fold AF-A0A661X1M7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052147","Caldisericota bacterium"]]},{"id":"NCBITaxon:2053303","l":"Marinilabiliales bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A2J6HCK7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J6HCK7-F1-model_v4_TED01"],["TED%3AAF-A0A2N5YXJ7-F1-model_v4_TED01","TED novel fold AF-A0A2N5YXJ7-F1-model_v4_TED01"],["TED%3AAF-A0A2N5ZWL4-F1-model_v4_TED03","TED novel fold AF-A0A2N5ZWL4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2053303","Marinilabiliales bacterium"]]},{"id":"NCBITaxon:2053538","l":"Candidatus Competibacteraceae bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A3D2VN95-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D2VN95-F1-model_v4_TED01"],["TED%3AAF-A0A433ID10-F1-model_v4_TED02","TED novel fold AF-A0A433ID10-F1-model_v4_TED02"],["TED%3AAF-A0A433IIV2-F1-model_v4_TED01","TED novel fold AF-A0A433IIV2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053538","Candidatus Competibacteraceae bacterium"]]},{"id":"NCBITaxon:2053582","l":"Neisseriales bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A3D5YR85-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D5YR85-F1-model_v4_TED01"],["TED%3AAF-A0A5C8BT50-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C8BT50-F1-model_v4_TED01"],["TED%3AAF-A0A5C8BPV5-F1-model_v4_TED03","TED novel fold AF-A0A5C8BPV5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2053582","Neisseriales bacterium"]]},{"id":"NCBITaxon:2053624","l":"Synergistaceae bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A3C0QE43-F1-model_v4_TED02","TED novel fold AF-A0A3C0QE43-F1-model_v4_TED02"],["TED%3AAF-A0A7X7DUQ2-F1-model_v4_TED02","TED novel fold AF-A0A7X7DUQ2-F1-model_v4_TED02"],["TED%3AAF-A0A847AA05-F1-model_v4_TED02","TED novel fold AF-A0A847AA05-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053624","Synergistaceae bacterium"]]},{"id":"NCBITaxon:2055766","l":"Cyanobacteria bacterium UBA8543","na":3,"nb":1,"a":[["TED%3AAF-A0A3C0NE74-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3C0NE74-F1-model_v4_TED02"],["TED%3AAF-A0A3C0N4S6-F1-model_v4_TED01","TED novel fold AF-A0A3C0N4S6-F1-model_v4_TED01"],["TED%3AAF-A0A3C0NB52-F1-model_v4_TED01","TED novel fold AF-A0A3C0NB52-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2055766","Cyanobacteria bacterium UBA8543"]]},{"id":"NCBITaxon:2056631","l":"Thermoproteota archaeon","na":3,"nb":1,"a":[["TED%3AAF-A0A370LUU6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A370LUU6-F1-model_v4_TED02"],["TED%3AAF-A0A370LQW0-F1-model_v4_TED01","TED novel fold AF-A0A370LQW0-F1-model_v4_TED01"],["TED%3AAF-A0A7K3ZAV1-F1-model_v4_TED01","TED novel fold AF-A0A7K3ZAV1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2056631","Thermoproteota archaeon"]]},{"id":"NCBITaxon:205917","l":"Dentipellis fragilis","na":3,"nb":1,"a":[["TED%3AAF-A0A4Y9YCY1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y9YCY1-F1-model_v4_TED01"],["TED%3AAF-A0A4Y9YWP5-F1-model_v4_TED02","TED novel fold AF-A0A4Y9YWP5-F1-model_v4_TED02"],["TED%3AAF-A0A4Y9YY98-F1-model_v4_TED02","TED novel fold AF-A0A4Y9YY98-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A205917","Dentipellis fragilis"]]},{"id":"NCBITaxon:2093811","l":"Syntrophomonadaceae bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A7X7A0H8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7X7A0H8-F1-model_v4_TED02"],["TED%3AAF-A0A7X8IKT1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7X8IKT1-F1-model_v4_TED03"],["TED%3AAF-A0A7X8LLW0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X8LLW0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2093811","Syntrophomonadaceae bacterium"]]},{"id":"NCBITaxon:2099670","l":"Candidatus Dojkabacteria bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A832QDE0-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A832QDE0-F1-model_v4_TED05"],["TED%3AAF-A0A5C7JBY6-F1-model_v4_TED04","TED novel fold AF-A0A5C7JBY6-F1-model_v4_TED04"],["TED%3AAF-A0A847ES74-F1-model_v4_TED01","TED novel fold AF-A0A847ES74-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2099670","Candidatus Dojkabacteria bacterium"]]},{"id":"NCBITaxon:2135684","l":"Niastella sp. CF465","na":3,"nb":1,"a":[["TED%3AAF-A0A4R2W5I4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R2W5I4-F1-model_v4_TED01"],["TED%3AAF-A0A4V2TB43-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4V2TB43-F1-model_v4_TED01"],["TED%3AAF-A0A4R2WDU4-F1-model_v4_TED01","TED novel fold AF-A0A4R2WDU4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2135684","Niastella sp. CF465"]]},{"id":"NCBITaxon:215587","l":"Aplanochytrium stocchinoi","na":3,"nb":1,"a":[["TED%3AAF-A0A7S3LQ34-F1-model_v4_TED01","TED novel fold AF-A0A7S3LQ34-F1-model_v4_TED01"],["TED%3AAF-A0A7S3PJ73-F1-model_v4_TED01","TED novel fold AF-A0A7S3PJ73-F1-model_v4_TED01"],["TED%3AAF-A0A7S3V330-F1-model_v4_TED01","TED novel fold AF-A0A7S3V330-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A215587","Aplanochytrium stocchinoi"]]},{"id":"NCBITaxon:216596","l":"Rhizobium johnstonii (strain DSM 114642 / LMG 32736 / 3841)","na":3,"nb":1,"a":[["Pfam%3APF17803","Bacterial cadherin-like domain"],["Pfam%3APF07536","HWE histidine kinase"],["PROSITE%3APS01039","Bacterial extracellular solute-binding proteins, family 3 signature"]],"b":[["NCBITaxon%3A216596","Rhizobium johnstonii 3841"]]},{"id":"NCBITaxon:216778","l":"Stenotrophomonas rhizophila","na":1,"nb":3,"a":[["TED%3AAF-A0A023XYG6-F1-model_v4_TED02","TED novel fold AF-A0A023XYG6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A216778","Stenotrophomonas rhizophila"],["NCBITaxon%3A1255680","Stenotrophomonas rhizophila PCA13"]]},{"id":"NCBITaxon:2169412","l":"Candidatus Angelobacter sp. Gp1-AA117","na":3,"nb":1,"a":[["TED%3AAF-A0A321L6V4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A321L6V4-F1-model_v4_TED01"],["TED%3AAF-A0A321LSL1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A321LSL1-F1-model_v4_TED01"],["TED%3AAF-A0A321LKA5-F1-model_v4_TED01","TED novel fold AF-A0A321LKA5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2169412","Candidatus Angelobacter sp. Gp1-AA117"]]},{"id":"NCBITaxon:2183553","l":"Spirosoma telluris","na":3,"nb":1,"a":[["TED%3AAF-A0A327NEY5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A327NEY5-F1-model_v4_TED01"],["TED%3AAF-A0A327NHH0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A327NHH0-F1-model_v4_TED02"],["TED%3AAF-A0A327NDZ9-F1-model_v4_TED01","TED novel fold AF-A0A327NDZ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2183553","Spirosoma telluris"]]},{"id":"NCBITaxon:2184014","l":"Erysipelotrichia bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A847B4H6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A847B4H6-F1-model_v4_TED01"],["TED%3AAF-A0A847B5R0-F1-model_v4_TED02","TED novel fold AF-A0A847B5R0-F1-model_v4_TED02"],["TED%3AAF-A0A847VSU0-F1-model_v4_TED03","TED novel fold AF-A0A847VSU0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2184014","Erysipelotrichia bacterium"]]},{"id":"NCBITaxon:2201155","l":"Pseudonocardiales bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A7V9BPH1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V9BPH1-F1-model_v4_TED01"],["TED%3AAF-A0A838S3W0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A838S3W0-F1-model_v4_TED01"],["TED%3AAF-A0A2W6C903-F1-model_v4_TED01","TED novel fold AF-A0A2W6C903-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2201155","Pseudonocardiales bacterium"]]},{"id":"NCBITaxon:220378","l":"Nocardiopsis aegyptia","na":1,"nb":3,"a":[["TED%3AAF-A0A7Z0EIT8-F1-model_v4_TED01","TED novel fold AF-A0A7Z0EIT8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A187102","Mycolicibacterium pyrenivorans"],["NCBITaxon%3A1305860","Mycolicibacterium pyrenivorans JCM 15927"],["NCBITaxon%3A220378","Nocardiopsis aegyptia"]]},{"id":"NCBITaxon:2220073","l":"Bdellovibrio sp. NC01","na":3,"nb":1,"a":[["TED%3AAF-A0A514WYU5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A514WYU5-F1-model_v4_TED01"],["TED%3AAF-A0A514WSL4-F1-model_v4_TED01","TED novel fold AF-A0A514WSL4-F1-model_v4_TED01"],["TED%3AAF-A0A514X124-F1-model_v4_TED01","TED novel fold AF-A0A514X124-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2220073","Bdellovibrio sp. NC01"]]},{"id":"NCBITaxon:222523","l":"Bacillus cereus (strain ATCC 10987 / NRS 248)","na":3,"nb":1,"a":[["Pfam%3APF17850","CysA C-terminal regulatory domain"],["Pfam%3APF04204","Homoserine O-succinyltransferase"],["Pfam%3APF09021","HutP"]],"b":[["NCBITaxon%3A222523","Bacillus cereus ATCC 10987"]]},{"id":"NCBITaxon:2231053","l":"Bdellovibrio sp. ZAP7","na":3,"nb":1,"a":[["TED%3AAF-A0A514XHL1-F1-model_v4_TED01","TED novel fold AF-A0A514XHL1-F1-model_v4_TED01"],["TED%3AAF-A0A514XIN8-F1-model_v4_TED01","TED novel fold AF-A0A514XIN8-F1-model_v4_TED01"],["TED%3AAF-A0A514XJC4-F1-model_v4_TED02","TED novel fold AF-A0A514XJC4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2231053","Bdellovibrio sp. ZAP7"]]},{"id":"NCBITaxon:2268124","l":"Candidatus Ozemobacter sibiricus","na":3,"nb":1,"a":[["TED%3AAF-A0A367ZJG5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A367ZJG5-F1-model_v4_TED01"],["TED%3AAF-A0A367ZQB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A367ZQB4-F1-model_v4_TED01"],["TED%3AAF-A0A367ZP10-F1-model_v4_TED01","TED novel fold AF-A0A367ZP10-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2268124","Candidatus Ozemibacter sibiricus"]]},{"id":"NCBITaxon:2268184","l":"Candidatus Fraserbacteria bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A7V5S831-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7V5S831-F1-model_v4_TED02"],["TED%3AAF-A0A7V5VMX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V5VMX4-F1-model_v4_TED01"],["TED%3AAF-A0A7V5S7E4-F1-model_v4_TED02","TED novel fold AF-A0A7V5S7E4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2268184","Candidatus Fraserbacteria bacterium"]]},{"id":"NCBITaxon:2268197","l":"Nitrososphaerales archaeon","na":3,"nb":1,"a":[["TED%3AAF-A0A7J2YER0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J2YER0-F1-model_v4_TED01"],["TED%3AAF-A0A7J3A8U8-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A7J3A8U8-F1-model_v4_TED05"],["TED%3AAF-A0A7C3TK66-F1-model_v4_TED02","TED novel fold AF-A0A7C3TK66-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2268197","Nitrososphaerales archaeon"]]},{"id":"NCBITaxon:2282151","l":"Chthonomonadales bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A847JW98-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A847JW98-F1-model_v4_TED01"],["TED%3AAF-A0A850B7H6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A850B7H6-F1-model_v4_TED01"],["TED%3AAF-A0A850B0F9-F1-model_v4_TED02","TED novel fold AF-A0A850B0F9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2282151","Chthonomonadales bacterium"]]},{"id":"NCBITaxon:228229","l":"Ligilactobacillus saerimneri","na":1,"nb":3,"a":[["TED%3AAF-A0A7H9EIW4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H9EIW4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A228229","Ligilactobacillus saerimneri"],["NCBITaxon%3A1227363","Ligilactobacillus saerimneri 30a"],["NCBITaxon%3A1122153","Ligilactobacillus saerimneri DSM 16049"]]},{"id":"NCBITaxon:2283","l":"Acidianus ambivalens","na":3,"nb":1,"a":[["Pfam%3APF07680","TQO small subunit DoxA"],["Pfam%3APF04173","TQO small subunit DoxD"],["TED%3AAF-O57695-F1-model_v4_TED01","TED highly-symmetric fold AF-O57695-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2283","Acidianus ambivalens"]]},{"id":"NCBITaxon:228410","l":"Nitrosomonas europaea ATCC 19718","na":3,"nb":1,"a":[["Pfam%3APF02461","Ammonia monooxygenase"],["Pfam%3APF13435","Cytochrome c554 and c-prime"],["TED%3AAF-Q82SR8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q82SR8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A228410","Nitrosomonas europaea ATCC 19718"]]},{"id":"NCBITaxon:2287","l":"Saccharolobus solfataricus","na":1,"nb":3,"a":[["Pfam%3APF09071","Alpha-amylase, C terminal"]],"b":[["NCBITaxon%3A2287","Saccharolobus solfataricus"],["NCBITaxon%3A555311","Saccharolobus solfataricus 98/2"],["NCBITaxon%3A273057","Saccharolobus solfataricus P2"]]},{"id":"NCBITaxon:2292257","l":"Sphingorhabdus pulchriflava","na":3,"nb":1,"a":[["TED%3AAF-A0A371BI53-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A371BI53-F1-model_v4_TED02"],["TED%3AAF-A0A371BEJ6-F1-model_v4_TED02","TED novel fold AF-A0A371BEJ6-F1-model_v4_TED02"],["TED%3AAF-A0A371BFK0-F1-model_v4_TED03","TED novel fold AF-A0A371BFK0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2292257","Sphingorhabdus pulchriflava"]]},{"id":"NCBITaxon:2292376","l":"Ruminococcus sp. OM08-7","na":3,"nb":1,"a":[["TED%3AAF-A0A417P6U8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A417P6U8-F1-model_v4_TED03"],["TED%3AAF-A0A417PKJ3-F1-model_v4_TED02","TED novel fold AF-A0A417PKJ3-F1-model_v4_TED02"],["TED%3AAF-A0A417PUT6-F1-model_v4_TED02","TED novel fold AF-A0A417PUT6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2292376","Ruminococcus sp. OM08-7"]]},{"id":"NCBITaxon:2292771","l":"Parvularcula marina","na":3,"nb":1,"a":[["TED%3AAF-A0A371R7U4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A371R7U4-F1-model_v4_TED01"],["TED%3AAF-A0A371R8E8-F1-model_v4_TED01","TED novel fold AF-A0A371R8E8-F1-model_v4_TED01"],["TED%3AAF-A0A371RGQ8-F1-model_v4_TED01","TED novel fold AF-A0A371RGQ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292771","Parvularcula marina"]]},{"id":"NCBITaxon:2315210","l":"Hondaea fermentalgiana","na":3,"nb":1,"a":[["TED%3AAF-A0A2R5GT68-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2R5GT68-F1-model_v4_TED01"],["TED%3AAF-A0A2R5GAK9-F1-model_v4_TED01","TED novel fold AF-A0A2R5GAK9-F1-model_v4_TED01"],["TED%3AAF-A0A2R5GSA5-F1-model_v4_TED01","TED novel fold AF-A0A2R5GSA5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2315210","Hondaea fermentalgiana"]]},{"id":"NCBITaxon:233186","l":"Cryptomonas curvata","na":3,"nb":1,"a":[["TED%3AAF-A0A7S0MXC9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0MXC9-F1-model_v4_TED01"],["TED%3AAF-A0A7S0NBD3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0NBD3-F1-model_v4_TED01"],["TED%3AAF-A0A7S0MVA1-F1-model_v4_TED02","TED novel fold AF-A0A7S0MVA1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A233186","Cryptomonas curvata"]]},{"id":"NCBITaxon:2364211","l":"Phototrophicales bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A2M8NRF1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M8NRF1-F1-model_v4_TED01"],["TED%3AAF-A0A2M8NRW1-F1-model_v4_TED02","TED novel fold AF-A0A2M8NRW1-F1-model_v4_TED02"],["TED%3AAF-A0A2M8NV39-F1-model_v4_TED01","TED novel fold AF-A0A2M8NV39-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2364211","Phototrophicales bacterium"]]},{"id":"NCBITaxon:236787","l":"Florenciella parvula","na":3,"nb":1,"a":[["TED%3AAF-A0A7S2AZ98-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S2AZ98-F1-model_v4_TED02"],["TED%3AAF-A0A7S2C9R3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2C9R3-F1-model_v4_TED01"],["TED%3AAF-A0A7S2GC10-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2GC10-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A236787","Florenciella parvula"]]},{"id":"NCBITaxon:243233","l":"Methylococcus capsulatus Bath","na":3,"nb":1,"a":[["Pfam%3APF17850","CysA C-terminal regulatory domain"],["Pfam%3APF02461","Ammonia monooxygenase"],["TED%3AAF-Q604F4-F1-model_v4_TED02","TED novel fold AF-Q604F4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A243233","Methylococcus capsulatus str. Bath"]]},{"id":"NCBITaxon:243243","l":"Mycobacterium avium (strain 104)","na":3,"nb":1,"a":[["Pfam%3APF13740","ACT domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03710","Glutamate-ammonia ligase adenylyltransferase"]],"b":[["NCBITaxon%3A243243","Mycobacterium avium 104"]]},{"id":"NCBITaxon:243265","l":"Photorhabdus laumondii subsp. laumondii TTO1","na":1,"nb":3,"a":[["Pfam%3APF07927","HicA toxin of bacterial toxin-antitoxin,"]],"b":[["NCBITaxon%3A2218628","Photorhabdus laumondii"],["NCBITaxon%3A141679","Photorhabdus laumondii subsp. laumondii"],["NCBITaxon%3A243265","Photorhabdus laumondii subsp. laumondii TTO1"]]},{"id":"NCBITaxon:245188","l":"Yoonia vestfoldensis","na":1,"nb":3,"a":[["TED%3AAF-A0A1Y0EB74-F1-model_v4_TED01","TED novel fold AF-A0A1Y0EB74-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A245188","Yoonia vestfoldensis"],["NCBITaxon%3A1122181","Yoonia vestfoldensis DSM 16212"],["NCBITaxon%3A314232","Yoonia vestfoldensis SKA53"]]},{"id":"NCBITaxon:2478486","l":"Holophagales bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A6B0W773-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6B0W773-F1-model_v4_TED01"],["TED%3AAF-A0A6N8VG55-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N8VG55-F1-model_v4_TED02"],["TED%3AAF-A0A6B1GTV8-F1-model_v4_TED02","TED novel fold AF-A0A6B1GTV8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2478486","Holophagales bacterium"]]},{"id":"NCBITaxon:2483351","l":"Actinomadura harenae","na":1,"nb":3,"a":[["TED%3AAF-A0A3M2LMA6-F1-model_v4_TED01","TED novel fold AF-A0A3M2LMA6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2483351","Actinomadura harenae"],["NCBITaxon%3A531813","Pelagibacterium halotolerans"],["NCBITaxon%3A1082931","Pelagibacterium halotolerans B2"]]},{"id":"NCBITaxon:250","l":"Chryseobacterium gleum","na":1,"nb":3,"a":[["TED%3AAF-A0A448B167-F1-model_v4_TED02","TED novel fold AF-A0A448B167-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A250","Chryseobacterium gleum"],["NCBITaxon%3A525257","Chryseobacterium gleum ATCC 35910"],["NCBITaxon%3A1871047","Chryseobacterium sp."]]},{"id":"NCBITaxon:251702","l":"Pseudomonas syringae pv. antirrhini","na":1,"nb":3,"a":[["TED%3AAF-A0A0P9JLN7-F1-model_v4_TED01","TED novel fold AF-A0A0P9JLN7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A251702","Pseudomonas syringae pv. antirrhini"],["NCBITaxon%3A698755","Pseudomonas syringae pv. antirrhini str. 126"]]},{"id":"NCBITaxon:252740","l":"","na":3,"nb":1,"a":[["Pfam%3APF03443","Auxiliary Activity family 9 (formerly GH61)"],["TED%3AAF-A0A423W5C7-F1-model_v4_TED02","TED novel fold AF-A0A423W5C7-F1-model_v4_TED02"],["TED%3AAF-A0A423WC61-F1-model_v4_TED03","TED novel fold AF-A0A423WC61-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A252740","Cytospora chrysosperma"]]},{"id":"NCBITaxon:2527978","l":"Gimesia panareensis","na":3,"nb":1,"a":[["TED%3AAF-A0A517Q1W7-F1-model_v4_TED01","TED novel fold AF-A0A517Q1W7-F1-model_v4_TED01"],["TED%3AAF-A0A517Q3S7-F1-model_v4_TED02","TED novel fold AF-A0A517Q3S7-F1-model_v4_TED02"],["TED%3AAF-A0A518FYP2-F1-model_v4_TED01","TED novel fold AF-A0A518FYP2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2527978","Gimesia panareensis"]]},{"id":"NCBITaxon:2528011","l":"Planctomycetes bacterium Pla133","na":3,"nb":1,"a":[["TED%3AAF-A0A518BEQ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A518BEQ2-F1-model_v4_TED01"],["TED%3AAF-A0A518BSG9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A518BSG9-F1-model_v4_TED02"],["TED%3AAF-A0A518BLD8-F1-model_v4_TED01","TED novel fold AF-A0A518BLD8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528011","Engelhardtia mirabilis"]]},{"id":"NCBITaxon:2528021","l":"Anatilimnocola aggregata","na":3,"nb":1,"a":[["TED%3AAF-A0A517YG31-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A517YG31-F1-model_v4_TED01"],["TED%3AAF-A0A517YEC3-F1-model_v4_TED01","TED novel fold AF-A0A517YEC3-F1-model_v4_TED01"],["TED%3AAF-A0A517YG72-F1-model_v4_TED01","TED novel fold AF-A0A517YG72-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528021","Anatilimnocola aggregata"]]},{"id":"NCBITaxon:2528023","l":"Urbifossiella limnaea","na":3,"nb":1,"a":[["TED%3AAF-A0A517Y227-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A517Y227-F1-model_v4_TED01"],["TED%3AAF-A0A517XL09-F1-model_v4_TED02","TED novel fold AF-A0A517XL09-F1-model_v4_TED02"],["TED%3AAF-A0A517XT91-F1-model_v4_TED01","TED novel fold AF-A0A517XT91-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528023","Urbifossiella limnaea"]]},{"id":"NCBITaxon:2528828","l":"Candidatus Stahlbacteria bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A523W416-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A523W416-F1-model_v4_TED01"],["TED%3AAF-A0A523Z1T4-F1-model_v4_TED01","TED novel fold AF-A0A523Z1T4-F1-model_v4_TED01"],["TED%3AAF-A0A7C7VB62-F1-model_v4_TED01","TED novel fold AF-A0A7C7VB62-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528828","Candidatus Stahliibacteriota bacterium"]]},{"id":"NCBITaxon:257310","l":"Bordetella bronchiseptica (strain ATCC BAA-588 / NCTC 13252 / RB50)","na":3,"nb":1,"a":[["Pfam%3APF03497","Anthrax toxin LF subunit"],["Pfam%3APF06594","Haemolysin-type calcium binding protein related domain"],["Pfam%3APF03212","Pertactin"]],"b":[["NCBITaxon%3A257310","Bordetella bronchiseptica RB50"]]},{"id":"NCBITaxon:2576071","l":"Phragmitibacter flavus","na":3,"nb":1,"a":[["TED%3AAF-A0A5R8KF89-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5R8KF89-F1-model_v4_TED02"],["TED%3AAF-A0A5R8KII2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5R8KII2-F1-model_v4_TED01"],["TED%3AAF-A0A5R8KJY9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5R8KJY9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2576071","Phragmitibacter flavus"]]},{"id":"NCBITaxon:2587852","l":"Roseivivax sp. THAF30","na":3,"nb":1,"a":[["TED%3AAF-A0A5P9FGS6-F1-model_v4_TED02","TED novel fold AF-A0A5P9FGS6-F1-model_v4_TED02"],["TED%3AAF-A0A5P9FI68-F1-model_v4_TED01","TED novel fold AF-A0A5P9FI68-F1-model_v4_TED01"],["TED%3AAF-A0A5P9FM36-F1-model_v4_TED01","TED novel fold AF-A0A5P9FM36-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2587852","Roseivivax sp. THAF30"]]},{"id":"NCBITaxon:2591470","l":"Lentzea tibetensis","na":3,"nb":1,"a":[["TED%3AAF-A0A563EGR8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A563EGR8-F1-model_v4_TED01"],["TED%3AAF-A0A563EKL5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A563EKL5-F1-model_v4_TED01"],["TED%3AAF-A0A563EEJ6-F1-model_v4_TED01","TED novel fold AF-A0A563EEJ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2591470","Lentzea tibetensis"]]},{"id":"NCBITaxon:2598579","l":"Limnoglobus roseus","na":3,"nb":1,"a":[["TED%3AAF-A0A5C1A5Q5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C1A5Q5-F1-model_v4_TED01"],["TED%3AAF-A0A5C1ACX4-F1-model_v4_TED01","TED novel fold AF-A0A5C1ACX4-F1-model_v4_TED01"],["TED%3AAF-A0A5C1ATB5-F1-model_v4_TED02","TED novel fold AF-A0A5C1ATB5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2598579","Limnoglobus roseus"]]},{"id":"NCBITaxon:2607790","l":"Okeania sp. SIO2F4","na":3,"nb":1,"a":[["TED%3AAF-A0A846C618-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A846C618-F1-model_v4_TED01"],["TED%3AAF-A0A846CIW5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A846CIW5-F1-model_v4_TED01"],["TED%3AAF-A0A846CB44-F1-model_v4_TED03","TED novel fold AF-A0A846CB44-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2607790","Okeania sp. SIO2F4"]]},{"id":"NCBITaxon:2607809","l":"Symploca sp. SIO2E6","na":3,"nb":1,"a":[["TED%3AAF-A0A6M0GAF0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6M0GAF0-F1-model_v4_TED01"],["TED%3AAF-A0A6M0GFI8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6M0GFI8-F1-model_v4_TED02"],["TED%3AAF-A0A6M0GG53-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6M0GG53-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607809","Symploca sp. SIO2E6"]]},{"id":"NCBITaxon:264731","l":"","na":3,"nb":1,"a":[["Pfam%3APF05448","Acetyl xylan esterase (AXE1)"],["Pfam%3APF00331","Glycosyl hydrolase family 10"],["TED%3AAF-D5EXZ1-F1-model_v4_TED03","TED novel fold AF-D5EXZ1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A264731","Xylanibacter ruminicola 23"]]},{"id":"NCBITaxon:2651163","l":"Ignavibacteriaceae bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A7Y8JA55-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y8JA55-F1-model_v4_TED01"],["TED%3AAF-A0A7Y2K4Z6-F1-model_v4_TED01","TED novel fold AF-A0A7Y2K4Z6-F1-model_v4_TED01"],["TED%3AAF-A0A7Y5L2T1-F1-model_v4_TED01","TED novel fold AF-A0A7Y5L2T1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2651163","Ignavibacteriaceae bacterium"]]},{"id":"NCBITaxon:265669","l":"Listeria monocytogenes serotype 4b (strain F2365)","na":3,"nb":1,"a":[["Pfam%3APF22508","Internalin J, Immunoglobulin-like domain"],["Pfam%3APF18981","Internalin K domain (D3/D4)"],["Pfam%3APF22350","Internalin, EF-hand domain"]],"b":[["NCBITaxon%3A265669","Listeria monocytogenes serotype 4b str. F2365"]]},{"id":"NCBITaxon:2697043","l":"Tichowtungia aerotolerans","na":3,"nb":1,"a":[["TED%3AAF-A0A6P1M8R0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6P1M8R0-F1-model_v4_TED02"],["TED%3AAF-A0A6P1M9Q5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A6P1M9Q5-F1-model_v4_TED03"],["TED%3AAF-A0A6P1M733-F1-model_v4_TED02","TED novel fold AF-A0A6P1M733-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2697043","Tichowtungia aerotolerans"]]},{"id":"NCBITaxon:2699742","l":"Candidatus Anammoximicrobium sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A847GXB5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A847GXB5-F1-model_v4_TED02"],["TED%3AAF-A0A847GSA2-F1-model_v4_TED01","TED novel fold AF-A0A847GSA2-F1-model_v4_TED01"],["TED%3AAF-A0A847H196-F1-model_v4_TED03","TED novel fold AF-A0A847H196-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2699742","Candidatus Anammoximicrobium sp."]]},{"id":"NCBITaxon:2699754","l":"Pirellulaceae bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A7X7KCT3-F1-model_v4_TED02","TED novel fold AF-A0A7X7KCT3-F1-model_v4_TED02"],["TED%3AAF-A0A7X7QG98-F1-model_v4_TED02","TED novel fold AF-A0A7X7QG98-F1-model_v4_TED02"],["TED%3AAF-A0A7Y2AM27-F1-model_v4_TED01","TED novel fold AF-A0A7Y2AM27-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2699754","Pirellulaceae bacterium"]]},{"id":"NCBITaxon:2715253","l":"Pirellulales bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A7Y5SNH7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y5SNH7-F1-model_v4_TED01"],["TED%3AAF-A0A838QX04-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A838QX04-F1-model_v4_TED02"],["TED%3AAF-A0A838RD69-F1-model_v4_TED01","TED novel fold AF-A0A838RD69-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2715253","Pirellulales bacterium"]]},{"id":"NCBITaxon:2720503","l":"Herpetosiphonaceae bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A7W1A9W6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W1A9W6-F1-model_v4_TED01"],["TED%3AAF-A0A7W1YPE0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W1YPE0-F1-model_v4_TED02"],["TED%3AAF-A0A7W1TNI0-F1-model_v4_TED01","TED novel fold AF-A0A7W1TNI0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2720503","Herpetosiphonaceae bacterium"]]},{"id":"NCBITaxon:2723095","l":"Paraburkholderia sp. HC6.4b","na":3,"nb":1,"a":[["TED%3AAF-A0A7W8PCC7-F1-model_v4_TED03","TED novel fold AF-A0A7W8PCC7-F1-model_v4_TED03"],["TED%3AAF-A0A7W8PCI5-F1-model_v4_TED02","TED novel fold AF-A0A7W8PCI5-F1-model_v4_TED02"],["TED%3AAF-A0A7W8URT5-F1-model_v4_TED01","TED novel fold AF-A0A7W8URT5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2723095","Paraburkholderia sp. HC6.4b"]]},{"id":"NCBITaxon:272560","l":"Burkholderia pseudomallei (strain K96243)","na":3,"nb":1,"a":[["Pfam%3APF07077","Virulence factor BPSS1818"],["Pfam%3APF11958","Surface attachment protein BPSS1860"],["Pfam%3APF16374","Cycle inhibiting factor (CIF)"]],"b":[["NCBITaxon%3A272560","Burkholderia pseudomallei K96243"]]},{"id":"NCBITaxon:272632","l":"","na":1,"nb":3,"a":[["TED%3AAF-Q6MU57-F1-model_v4_TED01","TED novel fold AF-Q6MU57-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2102","Mycoplasma mycoides"],["NCBITaxon%3A2103","Mycoplasma mycoides subsp. mycoides"],["NCBITaxon%3A272632","Mycoplasma mycoides subsp. mycoides SC str. PG1"]]},{"id":"NCBITaxon:272951","l":"Rickettsia sibirica 246","na":1,"nb":3,"a":[["Pfam%3APF22203","Surface cell antigen Sca2 helical repeat"]],"b":[["NCBITaxon%3A35793","Rickettsia sibirica"],["NCBITaxon%3A272951","Rickettsia sibirica 246"],["NCBITaxon%3A1144281","Rickettsia sibirica subsp. sibirica"]]},{"id":"NCBITaxon:273036","l":"Staphylococcus aureus (strain bovine RF122 / ET3-1)","na":3,"nb":1,"a":[["Pfam%3APF03780","Asp23 family, cell envelope-related function"],["Pfam%3APF18927","Glycosyl-4,4'-diaponeurosporenoate acyltransferase"],["Pfam%3APF04507","Csa1 family"]],"b":[["NCBITaxon%3A273036","Staphylococcus aureus RF122"]]},{"id":"NCBITaxon:273068","l":"","na":1,"nb":3,"a":[["Pfam%3APF24894","GlmU-like, C-terminal hexapeptide"]],"b":[["NCBITaxon%3A911092","Caldanaerobacter subterraneus"],["NCBITaxon%3A119072","Caldanaerobacter subterraneus subsp. tengcongensis"],["NCBITaxon%3A273068","Caldanaerobacter subterraneus subsp. tengcongensis MB4"]]},{"id":"NCBITaxon:27350","l":"Puccinia striiformis","na":1,"nb":3,"a":[["TED%3AAF-A0A2S4U9T6-F1-model_v4_TED01","TED novel fold AF-A0A2S4U9T6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A27350","Puccinia striiformis"],["NCBITaxon%3A168172","Puccinia striiformis f. sp. tritici"],["NCBITaxon%3A1165861","Puccinia striiformis f. sp. tritici PST-78"]]},{"id":"NCBITaxon:2749911","l":"Pseudictyota dubia","na":3,"nb":1,"a":[["TED%3AAF-A0A7R9W8L7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7R9W8L7-F1-model_v4_TED01"],["TED%3AAF-A0A7R9VQK5-F1-model_v4_TED01","TED novel fold AF-A0A7R9VQK5-F1-model_v4_TED01"],["TED%3AAF-A0A7R9Z4N2-F1-model_v4_TED03","TED novel fold AF-A0A7R9Z4N2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2749911","Pseudictyota dubia"]]},{"id":"NCBITaxon:2761452","l":"Mitsuaria sp. WAJ17","na":3,"nb":1,"a":[["TED%3AAF-A0A839LEQ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A839LEQ7-F1-model_v4_TED01"],["TED%3AAF-A0A839LJ22-F1-model_v4_TED01","TED novel fold AF-A0A839LJ22-F1-model_v4_TED01"],["TED%3AAF-A0A839LJB2-F1-model_v4_TED01","TED novel fold AF-A0A839LJB2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2761452","Mitsuaria sp. WAJ17"]]},{"id":"NCBITaxon:277","l":"Meiothermus ruber","na":1,"nb":3,"a":[["TED%3AAF-A0A7C3DF06-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C3DF06-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A277","Meiothermus ruber"],["NCBITaxon%3A504728","Meiothermus ruber DSM 1279"],["NCBITaxon%3A1297799","Meiothermus ruber H328"]]},{"id":"NCBITaxon:279808","l":"Staphylococcus haemolyticus (strain JCSC1435)","na":3,"nb":1,"a":[["Pfam%3APF18719","ArlS sensor domain"],["Pfam%3APF21191","CvfB first S1-like domain"],["Pfam%3APF21543","Virulence regulatory factor CvfB, second domain"]],"b":[["NCBITaxon%3A279808","Staphylococcus haemolyticus JCSC1435"]]},{"id":"NCBITaxon:2829","l":"Heterosigma akashiwo","na":3,"nb":1,"a":[["TED%3AAF-A0A7S4DBT0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S4DBT0-F1-model_v4_TED02"],["TED%3AAF-A0A6S9LBI5-F1-model_v4_TED01","TED novel fold AF-A0A6S9LBI5-F1-model_v4_TED01"],["TED%3AAF-A0A7S3XMU2-F1-model_v4_TED01","TED novel fold AF-A0A7S3XMU2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2829","Heterosigma akashiwo"]]},{"id":"NCBITaxon:283643","l":"","na":3,"nb":1,"a":[["Pfam%3APF28371","Clampless protein 1 N-terminal domain"],["Pfam%3APF28353","Clampless protein 1 C-terminal domain"],["TED%3AAF-Q55JJ5-F1-model_v4_TED02","TED novel fold AF-Q55JJ5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A283643","Cryptococcus deneoformans B-3501A"]]},{"id":"NCBITaxon:288000","l":"Bradyrhizobium sp. (strain BTAi1 / ATCC BAA-1182)","na":3,"nb":1,"a":[["Pfam%3APF10073","GapR-like, DNA-binding domain"],["Pfam%3APF10755","Protein of unknown function (DUF2585)"],["TED%3AAF-A5EG84-F1-model_v4_TED02","TED highly-symmetric fold AF-A5EG84-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A288000","Bradyrhizobium sp. BTAi1"]]},{"id":"NCBITaxon:290338","l":"Citrobacter koseri (strain ATCC BAA-895 / CDC 4225-83 / SGSC4696)","na":3,"nb":1,"a":[["Pfam%3APF03783","Curli production assembly/transport component CsgG"],["Pfam%3APF04269","Protein of unknown function, DUF440"],["Pfam%3APF17874","MalT-like TPR region"]],"b":[["NCBITaxon%3A290338","Citrobacter koseri ATCC BAA-895"]]},{"id":"NCBITaxon:291645","l":"Bacteroides nordii","na":1,"nb":3,"a":[["TED%3AAF-A0A413VD19-F1-model_v4_TED01","TED novel fold AF-A0A413VD19-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A291645","Bacteroides nordii"],["NCBITaxon%3A997884","Bacteroides nordii CL02T12C05"],["NCBITaxon%3A1203608","Bacteroides nordii WAL 11050 = JCM 12987"]]},{"id":"NCBITaxon:293939","l":"Aspergillus lentulus","na":3,"nb":1,"a":[["TED%3AAF-A0A0S7DQ50-F1-model_v4_TED03","TED novel fold AF-A0A0S7DQ50-F1-model_v4_TED03"],["TED%3AAF-A0A0S7DZR8-F1-model_v4_TED04","TED novel fold AF-A0A0S7DZR8-F1-model_v4_TED04"],["TED%3AAF-A0A0S7E8Y7-F1-model_v4_TED02","TED novel fold AF-A0A0S7E8Y7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A293939","Aspergillus lentulus"]]},{"id":"NCBITaxon:29523","l":"Bacteroides sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A351YFX8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A351YFX8-F1-model_v4_TED01"],["TED%3AAF-A0A7C1V1S3-F1-model_v4_TED01","TED novel fold AF-A0A7C1V1S3-F1-model_v4_TED01"],["TED%3AAF-A0A7C2R702-F1-model_v4_TED01","TED novel fold AF-A0A7C2R702-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29523","Bacteroides sp."]]},{"id":"NCBITaxon:295319","l":"Salmonella paratyphi A (strain ATCC 9150 / SARB42)","na":3,"nb":1,"a":[["Pfam%3APF07824","Type III secretion chaperone domain"],["Pfam%3APF04217","Protein of unknown function, DUF412"],["Pfam%3APF06109","Haemolysin E (HlyE)"]],"b":[["NCBITaxon%3A295319","Salmonella enterica subsp. enterica serovar Paratyphi A str. ATCC 9150"]]},{"id":"NCBITaxon:300268","l":"Shigella boydii serotype 4 (strain Sb227)","na":3,"nb":1,"a":[["Pfam%3APF21118","DosC CZB-like middle domain"],["Pfam%3APF07869","Protein of unknown function (DUF1656)"],["Pfam%3APF06977","SdiA-regulated"]],"b":[["NCBITaxon%3A300268","Shigella boydii Sb227"]]},{"id":"NCBITaxon:303371","l":"Tribonema minus","na":3,"nb":1,"a":[["TED%3AAF-A0A836CJF8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A836CJF8-F1-model_v4_TED01"],["TED%3AAF-A0A835YUR5-F1-model_v4_TED01","TED novel fold AF-A0A835YUR5-F1-model_v4_TED01"],["TED%3AAF-A0A835Z887-F1-model_v4_TED02","TED novel fold AF-A0A835Z887-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A303371","Tribonema minus"]]},{"id":"NCBITaxon:312309","l":"","na":3,"nb":1,"a":[["Pfam%3APF06610","L-alanine exporter"],["Pfam%3APF00765","Autoinducer synthase"],["PROSITE%3APS00949","Autoinducer synthase family signature"]],"b":[["NCBITaxon%3A312309","Aliivibrio fischeri ES114"]]},{"id":"NCBITaxon:313628","l":"Lentisphaera araneosa HTCC2155","na":3,"nb":1,"a":[["TED%3AAF-A6DHC8-F1-model_v4_TED01","TED novel fold AF-A6DHC8-F1-model_v4_TED01"],["TED%3AAF-A6DNV7-F1-model_v4_TED01","TED novel fold AF-A6DNV7-F1-model_v4_TED01"],["TED%3AAF-A6DRD8-F1-model_v4_TED03","TED novel fold AF-A6DRD8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A313628","Lentisphaera araneosa HTCC2155"]]},{"id":"NCBITaxon:314565","l":"Xanthomonas campestris pv. campestris (strain 8004)","na":3,"nb":1,"a":[["Pfam%3APF00325","Bacterial regulatory proteins, crp family"],["Pfam%3APF13487","HD domain"],["PROSITE%3APS00042","Crp-type HTH domain signature"]],"b":[["NCBITaxon%3A314565","Xanthomonas campestris pv. campestris str. 8004"]]},{"id":"NCBITaxon:315456","l":"Rickettsia felis (strain ATCC VR-1525 / URRWXCal2)","na":3,"nb":1,"a":[["Pfam%3APF18324","Bacterial isocitrate dehydrogenase, C-terminal domain"],["Pfam%3APF11019","Protein of unknown function (DUF2608)"],["Pfam%3APF22203","Surface cell antigen Sca2 helical repeat"]],"b":[["NCBITaxon%3A315456","Rickettsia felis Marseille-URRWFXCal2"]]},{"id":"NCBITaxon:320389","l":"Burkholderia mallei (strain NCTC 10247)","na":3,"nb":1,"a":[["Pfam%3APF06315","Isocitrate dehydrogenase kinase/phosphatase (AceK) kinase domain"],["Pfam%3APF20423","Isocitrate dehydrogenase kinase/phosphatase (AceK), regulatory domain"],["Pfam%3APF22688","Hda, lid domain"]],"b":[["NCBITaxon%3A320389","Burkholderia mallei NCTC 10247"]]},{"id":"NCBITaxon:320662","l":"Rhodovulum marinum","na":1,"nb":3,"a":[["TED%3AAF-A0A4R2PU14-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4R2PU14-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A364296","Rhodobium gokarnense"],["NCBITaxon%3A320662","Rhodovulum marinum"],["NCBITaxon%3A1188260","Rhodovulum marinum JA128"]]},{"id":"NCBITaxon:322159","l":"Streptococcus thermophilus (strain ATCC BAA-491 / LMD-9)","na":3,"nb":1,"a":[["Pfam%3APF18470","Cas9 alpha-helical lobe domain"],["Pfam%3APF18070","CRISPR-Cas9 PI domain"],["Pfam%3APF18061","CRISPR-Cas9 WED domain"]],"b":[["NCBITaxon%3A322159","Streptococcus thermophilus LMD-9"]]},{"id":"NCBITaxon:322505","l":"Sharpea azabuensis","na":1,"nb":3,"a":[["TED%3AAF-A0A1H6US53-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H6US53-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A322505","Sharpea azabuensis"],["NCBITaxon%3A1410674","Sharpea azabuensis DSM 18934"],["NCBITaxon%3A2652286","Sharpea porci"]]},{"id":"NCBITaxon:322866","l":"Leptolyngbya valderiana BDU 20041","na":3,"nb":1,"a":[["TED%3AAF-A0A166VCM9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A166VCM9-F1-model_v4_TED02"],["TED%3AAF-A0A168TVG0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A168TVG0-F1-model_v4_TED01"],["TED%3AAF-A0A166TA39-F1-model_v4_TED03","TED novel fold AF-A0A166TA39-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A322866","Leptolyngbya valderiana BDU 20041"]]},{"id":"NCBITaxon:323656","l":"Neorhizobium galegae bv. officinalis","na":1,"nb":3,"a":[["TED%3AAF-A0A0T7GYR3-F1-model_v4_TED01","TED novel fold AF-A0A0T7GYR3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A399","Neorhizobium galegae"],["NCBITaxon%3A323656","Neorhizobium galegae bv. officinalis"],["NCBITaxon%3A1028801","Neorhizobium galegae bv. officinalis bv. officinalis str. HAMBI 1141"]]},{"id":"NCBITaxon:325452","l":"Phytophthora kernoviae","na":3,"nb":1,"a":[["TED%3AAF-A0A3F2RWY7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3F2RWY7-F1-model_v4_TED01"],["TED%3AAF-A0A3F2RX54-F1-model_v4_TED01","TED novel fold AF-A0A3F2RX54-F1-model_v4_TED01"],["TED%3AAF-A0A421EY51-F1-model_v4_TED03","TED novel fold AF-A0A421EY51-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A325452","Phytophthora kernoviae"]]},{"id":"NCBITaxon:328814","l":"Alistipes shahii","na":1,"nb":3,"a":[["TED%3AAF-A0A5B3G0H9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A5B3G0H9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A328814","Alistipes shahii"],["NCBITaxon%3A1357378","Alistipes shahii ETR2_14"],["NCBITaxon%3A717959","Alistipes shahii WAL 8301"]]},{"id":"NCBITaxon:329726","l":"Acaryochloris marina (strain MBIC 11017)","na":3,"nb":1,"a":[["TED%3AAF-B0C760-F1-model_v4_TED01","TED highly-symmetric fold AF-B0C760-F1-model_v4_TED01"],["TED%3AAF-A8ZPU7-F1-model_v4_TED01","TED novel fold AF-A8ZPU7-F1-model_v4_TED01"],["TED%3AAF-B0C5H8-F1-model_v4_TED01","TED novel fold AF-B0C5H8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A329726","Acaryochloris marina MBIC11017"]]},{"id":"NCBITaxon:33178","l":"Aspergillus terreus","na":3,"nb":1,"a":[["Pfam%3APF28386","BfoA family C-terminal domain"],["Pfam%3APF28387","BfoA N-terminal domain"],["Pfam%3APF12351","Ca2+ regulator and membrane fusion protein Fig1"]],"b":[["NCBITaxon%3A33178","Aspergillus terreus"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":3,"nb":1,"a":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF22041","Glutathione S-transferase, C-terminal domain"],["Pfam%3APF08493","Aflatoxin regulatory protein"]],"b":[["NCBITaxon%3A332952","Aspergillus flavus NRRL3357"]]},{"id":"NCBITaxon:333962","l":"Providencia heimbachae","na":1,"nb":3,"a":[["TED%3AAF-A0A4D7JDZ4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4D7JDZ4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A333962","Providencia heimbachae"],["NCBITaxon%3A1354272","Providencia heimbachae ATCC 35613"],["NCBITaxon%3A1255655","Providencia heimbachae GR4"]]},{"id":"NCBITaxon:336407","l":"Rickettsia bellii (strain RML369-C)","na":3,"nb":1,"a":[["Pfam%3APF16998","17 kDa outer membrane surface antigen"],["Pfam%3APF11019","Protein of unknown function (DUF2608)"],["Pfam%3APF10399","Ubiquitinol-cytochrome C reductase Fe-S subunit TAT signal"]],"b":[["NCBITaxon%3A336407","Rickettsia bellii RML369-C"]]},{"id":"NCBITaxon:33889","l":"Brevibacterium casei","na":1,"nb":3,"a":[["TED%3AAF-A0A7T2TGM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T2TGM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A33889","Brevibacterium casei"],["NCBITaxon%3A1255625","Brevibacterium casei CIP 102111"],["NCBITaxon%3A1229781","Brevibacterium casei S18"]]},{"id":"NCBITaxon:340047","l":"Mycoplasma capricolum subsp. capricolum ATCC 27343","na":1,"nb":3,"a":[["Pfam%3APF27879","Helix-rich protein"]],"b":[["NCBITaxon%3A2095","Mycoplasma capricolum"],["NCBITaxon%3A40479","Mycoplasma capricolum subsp. capricolum"],["NCBITaxon%3A340047","Mycoplasma capricolum subsp. capricolum ATCC 27343"]]},{"id":"NCBITaxon:34068","l":"Cycloclasticus pugetii","na":1,"nb":3,"a":[["TED%3AAF-A0A1M6DAX1-F1-model_v4_TED03","TED novel fold AF-A0A1M6DAX1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A34068","Cycloclasticus pugetii"],["NCBITaxon%3A655438","Cycloclasticus pugetii PS-1"],["NCBITaxon%3A1884353","Cycloclasticus sp. DSM 27168"]]},{"id":"NCBITaxon:34087","l":"Sphingobacterium faecium","na":1,"nb":3,"a":[["TED%3AAF-A0A7K0B7N5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K0B7N5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A34087","Sphingobacterium faecium"],["NCBITaxon%3A1220575","Sphingobacterium faecium NBRC 15299"],["NCBITaxon%3A1255690","Sphingobacterium faecium PCAi_F2.5"]]},{"id":"NCBITaxon:342108","l":"","na":3,"nb":1,"a":[["Pfam%3APF08269","Cache domain"],["Pfam%3APF08849","BrxA"],["Pfam%3APF04011","LemA family"]],"b":[["NCBITaxon%3A342108","Paramagnetospirillum magneticum AMB-1"]]},{"id":"NCBITaxon:343874","l":"Empedobacter falsenii","na":1,"nb":3,"a":[["TED%3AAF-A0A376G7G3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A376G7G3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A343874","Empedobacter falsenii"],["NCBITaxon%3A343876","Empedobacter falsenii genomovar 1"],["NCBITaxon%3A343875","Empedobacter falsenii genomovar 2"]]},{"id":"NCBITaxon:351656","l":"Xenorhabdus vietnamensis","na":3,"nb":1,"a":[["TED%3AAF-A0A1Y2S714-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y2S714-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2S9F2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y2S9F2-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2S6H8-F1-model_v4_TED02","TED novel fold AF-A0A1Y2S6H8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A351656","Xenorhabdus vietnamensis"]]},{"id":"NCBITaxon:351745","l":"Shewanella sp. (strain W3-18-1)","na":3,"nb":1,"a":[["Pfam%3APF17810","Arginine decarboxylase helical bundle domain"],["Pfam%3APF17944","Arginine decarboxylase C-terminal helical extension"],["Pfam%3APF02001","Protein of unknown function DUF134"]],"b":[["NCBITaxon%3A351745","Shewanella sp. W3-18-1"]]},{"id":"NCBITaxon:35688","l":"Porphyridium purpureum","na":3,"nb":1,"a":[["TED%3AAF-A0A5J4YJT2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5J4YJT2-F1-model_v4_TED01"],["TED%3AAF-A0A5J4Z0Q3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5J4Z0Q3-F1-model_v4_TED01"],["TED%3AAF-A0A5J4YHT1-F1-model_v4_TED03","TED novel fold AF-A0A5J4YHT1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A35688","Porphyridium purpureum"]]},{"id":"NCBITaxon:35722","l":"Parasitella parasitica","na":1,"nb":3,"a":[["TED%3AAF-A0A0B7NWV4-F1-model_v4_TED02","TED novel fold AF-A0A0B7NWV4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A54571","Streptomyces venezuelae"],["NCBITaxon%3A953739","Streptomyces venezuelae ATCC 10712"],["NCBITaxon%3A35722","Parasitella parasitica"]]},{"id":"NCBITaxon:35787","l":"Limosilactobacillus pontis","na":1,"nb":3,"a":[["TED%3AAF-A0A2J6NPS8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2J6NPS8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1591","Lactobacillus sp."],["NCBITaxon%3A35787","Limosilactobacillus pontis"],["NCBITaxon%3A1423794","Limosilactobacillus pontis DSM 8475"]]},{"id":"NCBITaxon:360807","l":"Roseburia inulinivorans","na":1,"nb":3,"a":[["TED%3AAF-A0A173VWR5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A173VWR5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A360807","Roseburia inulinivorans"],["NCBITaxon%3A1263105","Roseburia inulinivorans CAG:15"],["NCBITaxon%3A622312","Roseburia inulinivorans DSM 16841"]]},{"id":"NCBITaxon:362242","l":"","na":3,"nb":1,"a":[["Pfam%3APF02654","Cobalamin-5-phosphate synthase"],["Pfam%3APF02622","AlgH-like"],["Pfam%3APF01628","HrcA protein C terminal domain"]],"b":[["NCBITaxon%3A362242","Mycobacterium ulcerans Agy99"]]},{"id":"NCBITaxon:362663","l":"Escherichia coli O6:K15:H31 (strain 536 / UPEC)","na":3,"nb":1,"a":[["Pfam%3APF18616","CDI immunity proteins"],["Pfam%3APF09160","FimH, mannose binding"],["Pfam%3APF05860","TPS secretion domain"]],"b":[["NCBITaxon%3A362663","Escherichia coli 536"]]},{"id":"NCBITaxon:36330","l":"Plasmodium ovale","na":1,"nb":3,"a":[["Pfam%3APF05424","Duffy binding domain"]],"b":[["NCBITaxon%3A36330","Plasmodium ovale"],["NCBITaxon%3A864141","Plasmodium ovale curtisi"],["NCBITaxon%3A864142","Plasmodium ovale wallikeri"]]},{"id":"NCBITaxon:36746","l":"Pseudomonas cichorii","na":1,"nb":3,"a":[["TED%3AAF-A0A3M4VH83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M4VH83-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2488639","Pectobacterium versatile"],["NCBITaxon%3A36746","Pseudomonas cichorii"],["NCBITaxon%3A1441629","Pseudomonas cichorii JBC1"]]},{"id":"NCBITaxon:36841","l":"Terrisporobacter glycolicus","na":1,"nb":3,"a":[["TED%3AAF-A0A1I3PG81-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I3PG81-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A36841","Terrisporobacter glycolicus"],["NCBITaxon%3A1121315","Terrisporobacter glycolicus ATCC 14880 = DSM 1288"],["NCBITaxon%3A1125703","Terrisporobacter glycolicus CC88H"]]},{"id":"NCBITaxon:36911","l":"Clavispora lusitaniae","na":3,"nb":1,"a":[["TED%3AAF-A0A5Q0ICH9-F1-model_v4_TED01","TED novel fold AF-A0A5Q0ICH9-F1-model_v4_TED01"],["TED%3AAF-A0A5Q0ITE0-F1-model_v4_TED01","TED novel fold AF-A0A5Q0ITE0-F1-model_v4_TED01"],["TED%3AAF-A0A5Q0JDK0-F1-model_v4_TED01","TED novel fold AF-A0A5Q0JDK0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A36911","Clavispora lusitaniae"]]},{"id":"NCBITaxon:37329","l":"Nocardia farcinica","na":1,"nb":3,"a":[["TED%3AAF-A0A449G5H5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A449G5H5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A37329","Nocardia farcinica"],["NCBITaxon%3A247156","Nocardia farcinica IFM 10152"],["NCBITaxon%3A1210076","Nocardia farcinica NBRC 15532"]]},{"id":"NCBITaxon:37332","l":"Nocardia seriolae","na":1,"nb":3,"a":[["TED%3AAF-A0A0B8NE12-F1-model_v4_TED02","TED novel fold AF-A0A0B8NE12-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A37332","Nocardia seriolae"],["NCBITaxon%3A1454200","Nocardia seriolae N-2927"],["NCBITaxon%3A1210095","Nocardia seriolae NBRC 15557"]]},{"id":"NCBITaxon:38300","l":"Streptomyces pristinaespiralis","na":1,"nb":3,"a":[["Pfam%3APF12323","Helix-turn-helix domain"]],"b":[["NCBITaxon%3A38300","Streptomyces pristinaespiralis"],["NCBITaxon%3A457429","Streptomyces pristinaespiralis ATCC 25486"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:386415","l":"","na":3,"nb":1,"a":[["Pfam%3APF27467","ATP-dependent helicase/deoxyribonuclease AddB fifth domain"],["Pfam%3APF01888","CbiD"],["Pfam%3APF18146","Damage-inducible protein CinA KH domain"]],"b":[["NCBITaxon%3A386415","Clostridium novyi NT"]]},{"id":"NCBITaxon:386656","l":"Yersinia pestis (strain Pestoides F)","na":3,"nb":1,"a":[["Pfam%3APF13413","Helix-turn-helix domain"],["Pfam%3APF04361","Protein of unknown function (DUF494)"],["Pfam%3APF04792","V antigen (LcrV) protein"]],"b":[["NCBITaxon%3A386656","Yersinia pestis Pestoides F"]]},{"id":"NCBITaxon:390896","l":"Trematosphaeria pertusa","na":3,"nb":1,"a":[["TED%3AAF-A0A6A6I275-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A6I275-F1-model_v4_TED01"],["TED%3AAF-A0A6A6HUS3-F1-model_v4_TED03","TED novel fold AF-A0A6A6HUS3-F1-model_v4_TED03"],["TED%3AAF-A0A6A6J005-F1-model_v4_TED03","TED novel fold AF-A0A6A6J005-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A390896","Trematosphaeria pertusa"]]},{"id":"NCBITaxon:391904","l":"","na":1,"nb":3,"a":[["Pfam%3APF25528","Domain of unknown function (DUF7917)"]],"b":[["NCBITaxon%3A216816","Bifidobacterium longum"],["NCBITaxon%3A1682","Bifidobacterium longum subsp. infantis"],["NCBITaxon%3A391904","Bifidobacterium longum subsp. infantis ATCC 15697 = JCM 1222 = DSM 20088"]]},{"id":"NCBITaxon:393921","l":"Porphyromonas crevioricanis","na":1,"nb":3,"a":[["TED%3AAF-A0A2X4PLZ5-F1-model_v4_TED01","TED novel fold AF-A0A2X4PLZ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A393921","Porphyromonas crevioricanis"],["NCBITaxon%3A1305618","Porphyromonas crevioricanis JCM 13913"],["NCBITaxon%3A1305617","Porphyromonas crevioricanis JCM 15906"]]},{"id":"NCBITaxon:39496","l":"Eubacterium ventriosum","na":1,"nb":3,"a":[["TED%3AAF-A0A414RCC0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A414RCC0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A39496","Eubacterium ventriosum"],["NCBITaxon%3A411463","Eubacterium ventriosum ATCC 27560"],["NCBITaxon%3A1263081","Eubacterium ventriosum MGS:89"]]},{"id":"NCBITaxon:395963","l":"Beijerinckia indica subsp. indica ATCC 9039","na":1,"nb":3,"a":[["TED%3AAF-B2IFK3-F1-model_v4_TED03","TED novel fold AF-B2IFK3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A533","Beijerinckia indica"],["NCBITaxon%3A31994","Beijerinckia indica subsp. indica"],["NCBITaxon%3A395963","Beijerinckia indica subsp. indica ATCC 9039"]]},{"id":"NCBITaxon:397290","l":"Lachnospiraceae bacterium A2","na":3,"nb":1,"a":[["TED%3AAF-R9K6E4-F1-model_v4_TED02","TED highly-symmetric fold AF-R9K6E4-F1-model_v4_TED02"],["TED%3AAF-R9KN16-F1-model_v4_TED02","TED highly-symmetric fold AF-R9KN16-F1-model_v4_TED02"],["TED%3AAF-R9KRD0-F1-model_v4_TED01","TED novel fold AF-R9KRD0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A397290","Lachnospiraceae bacterium A2"]]},{"id":"NCBITaxon:399599","l":"Shewanella baltica (strain OS195)","na":3,"nb":1,"a":[["Pfam%3APF24860","FdhE, C-terminal domain"],["Pfam%3APF24859","FdhE, central domain"],["Pfam%3APF04216","FdhE, N-terminal"]],"b":[["NCBITaxon%3A399599","Shewanella baltica OS195"]]},{"id":"NCBITaxon:399739","l":"Ectopseudomonas mendocina (strain ymp)","na":3,"nb":1,"a":[["Pfam%3APF22289","Dimethylamine monooxygenase subunit DmmA-like, C-terminal domain"],["Pfam%3APF04359","Protein of unknown function (DUF493)"],["Pfam%3APF11927","Haem-dependent oxidative N-demethylase, alpha subunit-like"]],"b":[["NCBITaxon%3A399739","Ectopseudomonas mendocina ymp"]]},{"id":"NCBITaxon:401625","l":"Ceraceosorus bombacis","na":3,"nb":1,"a":[["TED%3AAF-A0A0P1B815-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0P1B815-F1-model_v4_TED02"],["TED%3AAF-A0A0N7LAT1-F1-model_v4_TED01","TED novel fold AF-A0A0N7LAT1-F1-model_v4_TED01"],["TED%3AAF-A0A0P1BJI8-F1-model_v4_TED01","TED novel fold AF-A0A0P1BJI8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A401625","Ceraceosorus bombacis"]]},{"id":"NCBITaxon:402880","l":"","na":3,"nb":1,"a":[["Pfam%3APF02553","Cobalt transport protein component CbiN"],["Pfam%3APF18195","GatD N-terminal domain"],["Pfam%3APF01941","S-adenosylmethionine synthetase (AdoMet synthetase)"]],"b":[["NCBITaxon%3A402880","Methanococcus maripaludis C5"]]},{"id":"NCBITaxon:406547","l":"Rubripirellula obstinata","na":3,"nb":1,"a":[["TED%3AAF-A0A5B1CJC2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B1CJC2-F1-model_v4_TED01"],["TED%3AAF-A0A5B1CQ78-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B1CQ78-F1-model_v4_TED01"],["TED%3AAF-A0A5B1CIN8-F1-model_v4_TED02","TED novel fold AF-A0A5B1CIN8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A406547","Rubripirellula obstinata"]]},{"id":"NCBITaxon:408139","l":"Leptospira kmetyi","na":1,"nb":3,"a":[["TED%3AAF-A0A7I0IE69-F1-model_v4_TED02","TED novel fold AF-A0A7I0IE69-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A408139","Leptospira kmetyi"],["NCBITaxon%3A408140","Leptospira kmetyi serovar Malaysia"],["NCBITaxon%3A1049970","Leptospira kmetyi serovar Malaysia str. Bejo-Iso9"]]},{"id":"NCBITaxon:40841","l":"Succiniclasticum ruminis","na":1,"nb":3,"a":[["TED%3AAF-A0A1G6L1P5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G6L1P5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A40841","Succiniclasticum ruminis"],["NCBITaxon%3A1123323","Succiniclasticum ruminis DSM 9236"],["NCBITaxon%3A2775030","Succiniclasticum sp."]]},{"id":"NCBITaxon:40998","l":"Elsinoe australis","na":3,"nb":1,"a":[["TED%3AAF-A0A2P7YCG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P7YCG8-F1-model_v4_TED01"],["TED%3AAF-A0A4U7AWE5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4U7AWE5-F1-model_v4_TED02"],["TED%3AAF-A0A4U7AZW9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U7AZW9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A40998","Elsinoe australis"]]},{"id":"NCBITaxon:414004","l":"Cenarchaeum symbiosum (strain A)","na":3,"nb":1,"a":[["Pfam%3APF06973","Domain of unknown function (DUF1297)"],["Pfam%3APF06849","Protein of unknown function (DUF1246)"],["Pfam%3APF01950","Fructose-1,6-bisphosphatase"]],"b":[["NCBITaxon%3A414004","Cenarchaeum symbiosum A"]]},{"id":"NCBITaxon:416269","l":"Actinobacillus pleuropneumoniae serotype 5b (strain L20)","na":3,"nb":1,"a":[["Pfam%3APF11412","Thiol:disulfide interchange protein DsbD, N-terminal"],["Pfam%3APF18254","HMW1 domain 2"],["Pfam%3APF18071","HMW1C N-terminal"]],"b":[["NCBITaxon%3A416269","Actinobacillus pleuropneumoniae serovar 5b str. L20"]]},{"id":"NCBITaxon:41673","l":"Acidianus brierleyi","na":3,"nb":1,"a":[["TED%3AAF-A0A2U9IEJ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U9IEJ0-F1-model_v4_TED01"],["TED%3AAF-A0A2U9IC53-F1-model_v4_TED01","TED novel fold AF-A0A2U9IC53-F1-model_v4_TED01"],["TED%3AAF-A0A2U9ICQ8-F1-model_v4_TED02","TED novel fold AF-A0A2U9ICQ8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A41673","Acidianus brierleyi"]]},{"id":"NCBITaxon:420275","l":"Attheya septentrionalis","na":3,"nb":1,"a":[["TED%3AAF-A0A6T7ICE9-F1-model_v4_TED01","TED novel fold AF-A0A6T7ICE9-F1-model_v4_TED01"],["TED%3AAF-A0A7S2UDP5-F1-model_v4_TED02","TED novel fold AF-A0A7S2UDP5-F1-model_v4_TED02"],["TED%3AAF-A0A7S2XPC0-F1-model_v4_TED01","TED novel fold AF-A0A7S2XPC0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A420275","Attheya septentrionalis"]]},{"id":"NCBITaxon:426428","l":"Fusarium oxysporum f. sp. lycopersici (strain 4287 / CBS 123668 / FGSC 9935 / NRRL 34936)","na":3,"nb":1,"a":[["Pfam%3APF27599","CcsR C-terminal domain"],["Pfam%3APF09421","Frequency clock protein"],["Pfam%3APF09729","Gti1/Pac2 family"]],"b":[["NCBITaxon%3A426428","Fusarium oxysporum f. sp. lycopersici 4287"]]},{"id":"NCBITaxon:43049","l":"Tilletia indica","na":3,"nb":1,"a":[["TED%3AAF-A0A177T6N8-F1-model_v4_TED02","TED novel fold AF-A0A177T6N8-F1-model_v4_TED02"],["TED%3AAF-A0A177T862-F1-model_v4_TED02","TED novel fold AF-A0A177T862-F1-model_v4_TED02"],["TED%3AAF-A0A177TT98-F1-model_v4_TED04","TED novel fold AF-A0A177TT98-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A43049","Tilletia indica"]]},{"id":"NCBITaxon:436515","l":"Variovorax boronicumulans","na":1,"nb":3,"a":[["TED%3AAF-A0A250DMB0-F1-model_v4_TED01","TED novel fold AF-A0A250DMB0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A436515","Variovorax boronicumulans"],["NCBITaxon%3A1321609","Variovorax boronicumulans NBRC 103145"],["NCBITaxon%3A34073","Variovorax paradoxus"]]},{"id":"NCBITaxon:43662","l":"Pseudoalteromonas piscicida","na":1,"nb":3,"a":[["Pfam%3APF08329","Chitinase A, N-terminal domain"]],"b":[["NCBITaxon%3A43662","Pseudoalteromonas piscicida"],["NCBITaxon%3A1279016","Pseudoalteromonas piscicida ATCC 15057"],["NCBITaxon%3A53249","Pseudoalteromonas sp."]]},{"id":"NCBITaxon:43768","l":"Corynebacterium matruchotii","na":1,"nb":3,"a":[["TED%3AAF-A0A6H9XP04-F1-model_v4_TED01","TED novel fold AF-A0A6H9XP04-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A43768","Corynebacterium matruchotii"],["NCBITaxon%3A553207","Corynebacterium matruchotii ATCC 14266"],["NCBITaxon%3A566549","Corynebacterium matruchotii ATCC 33806"]]},{"id":"NCBITaxon:44008","l":"Enterococcus cecorum","na":1,"nb":3,"a":[["TED%3AAF-A0A200I1A2-F1-model_v4_TED01","TED novel fold AF-A0A200I1A2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A44008","Enterococcus cecorum"],["NCBITaxon%3A1121864","Enterococcus cecorum DSM 20682 = ATCC 43198"],["NCBITaxon%3A1352","Enterococcus faecium"]]},{"id":"NCBITaxon:444158","l":"Methanococcus maripaludis (strain C6 / ATCC BAA-1332)","na":3,"nb":1,"a":[["Pfam%3APF06847","Archaeal Peptidase A24 C-terminus Type II"],["Pfam%3APF09888","Uncharacterized protein conserved in archaea (DUF2115)"],["Pfam%3APF05165","GTP cyclohydrolase III"]],"b":[["NCBITaxon%3A444158","Methanococcus maripaludis C6"]]},{"id":"NCBITaxon:45133","l":"Lasiodiplodia theobromae","na":3,"nb":1,"a":[["TED%3AAF-A0A5N5DCC3-F1-model_v4_TED01","TED novel fold AF-A0A5N5DCC3-F1-model_v4_TED01"],["TED%3AAF-A0A5N5DDT9-F1-model_v4_TED01","TED novel fold AF-A0A5N5DDT9-F1-model_v4_TED01"],["TED%3AAF-A0A5N5DLG2-F1-model_v4_TED02","TED novel fold AF-A0A5N5DLG2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A45133","Lasiodiplodia theobromae"]]},{"id":"NCBITaxon:454130","l":"Aspergillus calidoustus","na":3,"nb":1,"a":[["Pfam%3APF28380","Sesquiterpene cyclase astC-like C-terminal domain"],["TED%3AAF-A0A0U5FXA2-F1-model_v4_TED01","TED novel fold AF-A0A0U5FXA2-F1-model_v4_TED01"],["TED%3AAF-A0A0U5GJ59-F1-model_v4_TED01","TED novel fold AF-A0A0U5GJ59-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A454130","Aspergillus calidoustus"]]},{"id":"NCBITaxon:46158","l":"Actinomadura citrea","na":1,"nb":3,"a":[["TED%3AAF-A0A7Y9GGR5-F1-model_v4_TED05","TED novel fold AF-A0A7Y9GGR5-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A46158","Actinomadura citrea"],["NCBITaxon%3A46161","Actinomadura kijaniata"],["NCBITaxon%3A1220561","Actinomadura kijaniata NBRC 14229"]]},{"id":"NCBITaxon:463","l":"Fluoribacter dumoffii","na":1,"nb":3,"a":[["TED%3AAF-A0A377G6U6-F1-model_v4_TED01","TED novel fold AF-A0A377G6U6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A463","Fluoribacter dumoffii"],["NCBITaxon%3A1094715","Fluoribacter dumoffii NY 23"],["NCBITaxon%3A1094714","Fluoribacter dumoffii Tex-KL"]]},{"id":"NCBITaxon:46610","l":"Geobacter sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A399I484-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A399I484-F1-model_v4_TED02"],["TED%3AAF-A0A3N9VD38-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3N9VD38-F1-model_v4_TED02"],["TED%3AAF-A0A3N9V9F3-F1-model_v4_TED01","TED novel fold AF-A0A3N9V9F3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A46610","Geobacter sp."]]},{"id":"NCBITaxon:470137","l":"Brucella suis (strain ATCC 23445 / NCTC 10510)","na":3,"nb":1,"a":[["Pfam%3APF07930","D-aminopeptidase, domain B"],["Pfam%3APF07378","Flagellar protein FlbT"],["PROSITE%3APS00648","Bacterial ribonuclease P protein component signature"]],"b":[["NCBITaxon%3A470137","Brucella suis ATCC 23445"]]},{"id":"NCBITaxon:471871","l":"Clostridium sporogenes (strain ATCC 15579)","na":3,"nb":1,"a":[["Pfam%3APF27077","Exosporium protein A"],["Pfam%3APF27268","Exosporium protein B"],["Pfam%3APF25250","Domain of unknown function (DUF7852)"]],"b":[["NCBITaxon%3A471871","Clostridium sporogenes ATCC 15579"]]},{"id":"NCBITaxon:47660","l":"Pseudomonas sp. (strain ADP)","na":3,"nb":1,"a":[["Pfam%3APF21986","Allophanate hydrolase C-terminal domain"],["Pfam%3APF09663","Amidohydrolase ring-opening protein (Amido_AtzD_TrzD)"],["Pfam%3APF13318","1-carboxybiuret hydrolase subunit AtzG-like"]],"b":[["NCBITaxon%3A47660","Pseudomonas sp. ADP"]]},{"id":"NCBITaxon:477690","l":"Lishizhenia tianjinensis","na":3,"nb":1,"a":[["TED%3AAF-A0A1I6Y9W8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I6Y9W8-F1-model_v4_TED01"],["TED%3AAF-A0A1I6YTM9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I6YTM9-F1-model_v4_TED02"],["TED%3AAF-A0A1I6XV16-F1-model_v4_TED01","TED novel fold AF-A0A1I6XV16-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A477690","Lishizhenia tianjinensis"]]},{"id":"NCBITaxon:478008","l":"Escherichia coli O157:H7 (strain EC869)","na":3,"nb":1,"a":[["Pfam%3APF21111","CDI toxin restriction endonuclease-like domain"],["Pfam%3APF21483","Toxin CdiA-like, helical domain"],["Pfam%3APF07262","CDI immunity protein"]],"b":[["NCBITaxon%3A478008","Escherichia coli O157:H7 str. EC869"]]},{"id":"NCBITaxon:47885","l":"Pseudomonas oryzihabitans","na":1,"nb":3,"a":[["TED%3AAF-A0A7X3T0R5-F1-model_v4_TED02","TED novel fold AF-A0A7X3T0R5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A47885","Pseudomonas oryzihabitans"],["NCBITaxon%3A1215113","Pseudomonas oryzihabitans NBRC 102199"],["NCBITaxon%3A1112217","Pseudomonas psychrotolerans L19"]]},{"id":"NCBITaxon:47886","l":"Pseudomonas luteola","na":1,"nb":3,"a":[["TED%3AAF-A0A2X2CC74-F1-model_v4_TED02","TED novel fold AF-A0A2X2CC74-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A47886","Pseudomonas luteola"],["NCBITaxon%3A1215106","Pseudomonas luteola NBRC 103146"],["NCBITaxon%3A1207076","Pseudomonas luteola XLDN4-9"]]},{"id":"NCBITaxon:482957","l":"","na":1,"nb":3,"a":[["TED%3AAF-A0A6P2XDC0-F1-model_v4_TED01","TED novel fold AF-A0A6P2XDC0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2015348","Burkholderia aenigmatica"],["NCBITaxon%3A292","Burkholderia cepacia"],["NCBITaxon%3A482957","Burkholderia lata"]]},{"id":"NCBITaxon:487821","l":"Xanthomonas arboricola pv. corylina","na":1,"nb":3,"a":[["TED%3AAF-A0A2S7CES6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S7CES6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A56448","Xanthomonas arboricola"],["NCBITaxon%3A487821","Xanthomonas arboricola pv. corylina"],["NCBITaxon%3A1306948","Xanthomonas arboricola pv. corylina str. NCCB 100457"]]},{"id":"NCBITaxon:491915","l":"","na":1,"nb":3,"a":[["TED%3AAF-B7GL61-F1-model_v4_TED01","TED highly-symmetric fold AF-B7GL61-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A33934","Anoxybacillus flavithermus"],["NCBITaxon%3A1185649","Anoxybacillus flavithermus subsp. flavithermus"],["NCBITaxon%3A491915","Anoxybacillus flavithermus WK1"]]},{"id":"NCBITaxon:5116","l":"Cryphonectria parasitica","na":1,"nb":3,"a":[["Pfam%3APF26980","Dicer-like protein 2, dsRNA binding domain"]],"b":[["NCBITaxon%3A331526","Kribbia dieselivorans"],["NCBITaxon%3A1223526","Kribbia dieselivorans NBRC 106261"],["NCBITaxon%3A5116","Cryphonectria parasitica"]]},{"id":"NCBITaxon:51663","l":"Pediococcus damnosus","na":1,"nb":3,"a":[["TED%3AAF-A0A0R2HKY5-F1-model_v4_TED01","TED novel fold AF-A0A0R2HKY5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A51663","Pediococcus damnosus"],["NCBITaxon%3A1089442","Pediococcus damnosus 9-6b"],["NCBITaxon%3A1448143","Pediococcus damnosus LMG 28219"]]},{"id":"NCBITaxon:520092","l":"Tahibacter aquaticus","na":3,"nb":1,"a":[["TED%3AAF-A0A4R6YT45-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R6YT45-F1-model_v4_TED01"],["TED%3AAF-A0A4R6Z707-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R6Z707-F1-model_v4_TED01"],["TED%3AAF-A0A4V3DLG3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A4V3DLG3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A520092","Tahibacter aquaticus"]]},{"id":"NCBITaxon:5286","l":"Rhodotorula toruloides","na":3,"nb":1,"a":[["PROSITE%3APS00488","Phenylalanine and histidine ammonia-lyases signature"],["TED%3AAF-A0A0K3C4G3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0K3C4G3-F1-model_v4_TED02"],["TED%3AAF-A0A0K3CJQ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0K3CJQ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5286","Rhodotorula toruloides"]]},{"id":"NCBITaxon:53412","l":"Metapseudomonas resinovorans","na":1,"nb":3,"a":[["Pfam%3APF11723","Homotrimeric ring hydroxylase"]],"b":[["NCBITaxon%3A53412","Metapseudomonas resinovorans"],["NCBITaxon%3A1123020","Metapseudomonas resinovorans DSM 21078"],["NCBITaxon%3A1245471","Metapseudomonas resinovorans NBRC 106553"]]},{"id":"NCBITaxon:5346","l":"Coprinopsis cinerea","na":3,"nb":1,"a":[["Pfam%3APF18251","Fungal defensin Copsin"],["Pfam%3APF16010","Cytochrome domain of cellobiose dehydrogenase"],["Pfam%3APF22807","TrAA12-like"]],"b":[["NCBITaxon%3A5346","Coprinopsis cinerea"]]},{"id":"NCBITaxon:537457","l":"Actinobacillus pleuropneumoniae serotype 7 (strain AP76)","na":3,"nb":1,"a":[["Pfam%3APF18254","HMW1 domain 2"],["Pfam%3APF18071","HMW1C N-terminal"],["TED%3AAF-B3H2V6-F1-model_v4_TED02","TED novel fold AF-B3H2V6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A537457","Actinobacillus pleuropneumoniae serovar 7 str. AP76"]]},{"id":"NCBITaxon:555217","l":"","na":1,"nb":3,"a":[["Pfam%3APF13154","Protein of unknown function (DUF3991)"]],"b":[["NCBITaxon%3A542","Zymomonas mobilis"],["NCBITaxon%3A120045","Zymomonas mobilis subsp. mobilis"],["NCBITaxon%3A555217","Zymomonas mobilis subsp. mobilis ATCC 10988"]]},{"id":"NCBITaxon:55529","l":"Guillardia theta","na":3,"nb":1,"a":[["Pfam%3APF06868","Protein of unknown function (DUF1257)"],["Pfam%3APF05421","Protein of unknown function (DUF751)"],["TED%3AAF-A0A7S4PQE0-F1-model_v4_TED01","TED novel fold AF-A0A7S4PQE0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A905079","Guillardia theta CCMP2712"]]},{"id":"NCBITaxon:559515","l":"Hyaloperonospora arabidopsidis (strain Emoy2)","na":3,"nb":1,"a":[["Pfam%3APF22223","ATR1 N-terminal domain"],["Pfam%3APF21421","Avirulence protein ATR1, WY-domain"],["Pfam%3APF16829","Avirulence protein ATR13, RxLR effector"]],"b":[["NCBITaxon%3A559515","Hyaloperonospora arabidopsidis Emoy2"]]},{"id":"NCBITaxon:5627","l":"Grifola frondosa","na":3,"nb":1,"a":[["Pfam%3APF14521","Lysine-specific metallo-endopeptidase"],["TED%3AAF-A0A1C7MDV5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1C7MDV5-F1-model_v4_TED02"],["TED%3AAF-A0A1C7MM25-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C7MM25-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5627","Grifola frondosa"]]},{"id":"NCBITaxon:56438","l":"Couchioplanes caeruleus","na":1,"nb":3,"a":[["TED%3AAF-A0A3N1FTH6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N1FTH6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A56428","Couchioplanes azureus"],["NCBITaxon%3A56438","Couchioplanes caeruleus"],["NCBITaxon%3A56427","Couchioplanes caeruleus subsp. caeruleus"]]},{"id":"NCBITaxon:5689","l":"Leishmania tarentolae","na":3,"nb":1,"a":[["Pfam%3APF18526","Thymine dioxygenase JBP1 DNA-binding domain"],["TED%3AAF-A0A640KN43-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A640KN43-F1-model_v4_TED01"],["TED%3AAF-A0A640KQE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A640KQE6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5689","Leishmania tarentolae"]]},{"id":"NCBITaxon:569365","l":"Cladophialophora immunda","na":3,"nb":1,"a":[["TED%3AAF-A0A0D2AQD9-F1-model_v4_TED02","TED novel fold AF-A0A0D2AQD9-F1-model_v4_TED02"],["TED%3AAF-A0A0D2BBC7-F1-model_v4_TED02","TED novel fold AF-A0A0D2BBC7-F1-model_v4_TED02"],["TED%3AAF-A0A0D2DH84-F1-model_v4_TED02","TED novel fold AF-A0A0D2DH84-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A569365","Cladophialophora immunda"]]},{"id":"NCBITaxon:569862","l":"Streptosporangium minutum","na":3,"nb":1,"a":[["TED%3AAF-A0A243RGM5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A243RGM5-F1-model_v4_TED01"],["TED%3AAF-A0A243RM70-F1-model_v4_TED01","TED novel fold AF-A0A243RM70-F1-model_v4_TED01"],["TED%3AAF-A0A243RXS2-F1-model_v4_TED01","TED novel fold AF-A0A243RXS2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A569862","Streptosporangium minutum"]]},{"id":"NCBITaxon:570156","l":"Pseudoalteromonas lipolytica","na":1,"nb":3,"a":[["TED%3AAF-A0A1I7CGN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I7CGN6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A570156","Pseudoalteromonas lipolytica"],["NCBITaxon%3A1315275","Pseudoalteromonas lipolytica LMEB 39"],["NCBITaxon%3A1452721","Pseudoalteromonas lipolytica SCSIO 04301"]]},{"id":"NCBITaxon:5791","l":"Badhamia polycephala","na":3,"nb":1,"a":[["Pfam%3APF09192","Actin-fragmin kinase, catalytic"],["Pfam%3APF08964","Beta/Gamma crystallin"],["Pfam%3APF03866","Hydrophobic abundant protein (HAP)"]],"b":[["NCBITaxon%3A5791","Badhamia polycephala"]]},{"id":"NCBITaxon:579112","l":"Vibrio cholerae serotype O1 (strain M66-2)","na":3,"nb":1,"a":[["Pfam%3APF21868","GlcNAc-binding protein A, third domain"],["Pfam%3APF20773","Immune inhibitor A-like, MAM domain"],["Pfam%3APF20774","Immune inhibitor A-like metallopeptidase, VEG domain"]],"b":[["NCBITaxon%3A579112","Vibrio cholerae M66-2"]]},{"id":"NCBITaxon:585056","l":"Escherichia coli O17:K52:H18 (strain UMN026 / ExPEC)","na":3,"nb":1,"a":[["Pfam%3APF27070","Rpn/YhgA-like nuclease family, C-terminal HTH domain"],["Pfam%3APF09134","Invasin, domain 3"],["Pfam%3APF21764","Invasin, domain 4"]],"b":[["NCBITaxon%3A585056","Escherichia coli UMN026"]]},{"id":"NCBITaxon:5861","l":"Plasmodium yoelii","na":1,"nb":3,"a":[["TED%3AAF-A0A078KHH8-F1-model_v4_TED01","TED novel fold AF-A0A078KHH8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5861","Plasmodium yoelii"],["NCBITaxon%3A283801","Plasmodium yoelii killicki"],["NCBITaxon%3A31274","Plasmodium yoelii nigeriensis"]]},{"id":"NCBITaxon:59374","l":"","na":1,"nb":3,"a":[["TED%3AAF-C9RP25-F1-model_v4_TED01","TED novel fold AF-C9RP25-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A833","Fibrobacter succinogenes"],["NCBITaxon%3A834","Fibrobacter succinogenes subsp. succinogenes"],["NCBITaxon%3A59374","Fibrobacter succinogenes subsp. succinogenes S85"]]},{"id":"NCBITaxon:5949","l":"Stylonychia lemnae","na":3,"nb":1,"a":[["TED%3AAF-A0A078AJL2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A078AJL2-F1-model_v4_TED01"],["TED%3AAF-A0A078B2T0-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A078B2T0-F1-model_v4_TED05"],["TED%3AAF-A0A078B0V0-F1-model_v4_TED02","TED novel fold AF-A0A078B0V0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A5949","Stylonychia lemnae"]]},{"id":"NCBITaxon:61652","l":"Serratia rubidaea","na":1,"nb":3,"a":[["TED%3AAF-A0A3S5F1U8-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A3S5F1U8-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A61652","Serratia rubidaea"],["NCBITaxon%3A1218096","Serratia rubidaea NBRC 103169"],["NCBITaxon%3A1255701","Serratia rubidaea TA_26"]]},{"id":"NCBITaxon:644223","l":"Komagataella phaffii (strain GS115 / ATCC 20864)","na":3,"nb":1,"a":[["Pfam%3APF05388","Carboxypeptidase Y pro-peptide"],["Pfam%3APF26001","Peroxin 8 protein-like, N-terminal domain"],["Pfam%3APF27812","PEX8 central TPR-like domain"]],"b":[["NCBITaxon%3A644223","Komagataella phaffii GS115"]]},{"id":"NCBITaxon:645657","l":"Bacillus subtilis subsp. natto (strain BEST195)","na":3,"nb":1,"a":[["Pfam%3APF24517","Carbohydrate-binding module family 96"],["Pfam%3APF20148","Domain of unknown function (DUF6531)"],["Pfam%3APF05593","RHS Repeat"]],"b":[["NCBITaxon%3A645657","Bacillus subtilis subsp. natto BEST195"]]},{"id":"NCBITaxon:648716","l":"Cohnella sp. AR92","na":3,"nb":1,"a":[["TED%3AAF-A0A3S0Z044-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S0Z044-F1-model_v4_TED01"],["TED%3AAF-A0A433RAW9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A433RAW9-F1-model_v4_TED01"],["TED%3AAF-A0A433RDT1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A433RDT1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A648716","Cohnella sp. AR92"]]},{"id":"NCBITaxon:65357","l":"Albugo candida","na":3,"nb":1,"a":[["TED%3AAF-A0A024G112-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A024G112-F1-model_v4_TED03"],["TED%3AAF-A0A024FUD4-F1-model_v4_TED02","TED novel fold AF-A0A024FUD4-F1-model_v4_TED02"],["TED%3AAF-A0A024GNU1-F1-model_v4_TED01","TED novel fold AF-A0A024GNU1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A65357","Albugo candida"]]},{"id":"NCBITaxon:65393","l":"","na":3,"nb":1,"a":[["Pfam%3APF13720","Udp N-acetylglucosamine O-acyltransferase; Domain 2"],["TED%3AAF-B7K6Y8-F1-model_v4_TED03","TED novel fold AF-B7K6Y8-F1-model_v4_TED03"],["TED%3AAF-B7KGW4-F1-model_v4_TED01","TED novel fold AF-B7KGW4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A65393","Gloeothece citriformis PCC 7424"]]},{"id":"NCBITaxon:65515","l":"Nonomuraea dietziae","na":1,"nb":3,"a":[["TED%3AAF-A0A7W5Y4U9-F1-model_v4_TED02","TED novel fold AF-A0A7W5Y4U9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A504797","Actinopolymorpha cephalotaxi"],["NCBITaxon%3A65515","Nonomuraea dietziae"],["NCBITaxon%3A1494959","Pseudogracilibacillus auburnensis"]]},{"id":"NCBITaxon:655844","l":"Metarhizium robertsii ARSEF 23","na":3,"nb":1,"a":[["Pfam%3APF07110","EthD domain"],["Pfam%3APF09421","Frequency clock protein"],["TED%3AAF-A0A0B2XHY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0B2XHY6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A655844","Metarhizium robertsii ARSEF 23"]]},{"id":"NCBITaxon:659","l":"Photobacterium phosphoreum","na":1,"nb":3,"a":[["Pfam%3APF02273","Acyl transferase"]],"b":[["NCBITaxon%3A318456","Photobacterium kishitanii"],["NCBITaxon%3A659","Photobacterium phosphoreum"],["NCBITaxon%3A1454202","Photobacterium phosphoreum ANT-2200"]]},{"id":"NCBITaxon:65959","l":"Acetobacter pomorum","na":1,"nb":3,"a":[["TED%3AAF-A0A2G4RD85-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G4RD85-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A65959","Acetobacter pomorum"],["NCBITaxon%3A945681","Acetobacter pomorum DM001"],["NCBITaxon%3A1307917","Acetobacter pomorum DSM 11825"]]},{"id":"NCBITaxon:660122","l":"Fusarium vanettenii (strain ATCC MYA-4622 / CBS 123669 / FGSC 9596 / NRRL 45880 / 77-13-4)","na":3,"nb":1,"a":[["Pfam%3APF17660","Polyglycine hydrolase-like, structural repeat"],["Pfam%3APF26719","ATPase synthesis protein 25, C-terminal TPR repeats"],["TED%3AAF-C7YNY6-F1-model_v4_TED02","TED highly-symmetric fold AF-C7YNY6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A660122","Fusarium vanettenii 77-13-4"]]},{"id":"NCBITaxon:660520","l":"Halogranum amylolyticum","na":3,"nb":1,"a":[["TED%3AAF-A0A1H8WPE4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H8WPE4-F1-model_v4_TED01"],["TED%3AAF-A0A1H8R6W4-F1-model_v4_TED02","TED novel fold AF-A0A1H8R6W4-F1-model_v4_TED02"],["TED%3AAF-A0A1H8T5Q7-F1-model_v4_TED02","TED novel fold AF-A0A1H8T5Q7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A660520","Halogranum amylolyticum"]]},{"id":"NCBITaxon:66271","l":"Pantoea stewartii subsp. stewartii","na":1,"nb":3,"a":[["Pfam%3APF11725","AvrE-family Type-III effector proteins (T3Es)"]],"b":[["NCBITaxon%3A66269","Pantoea stewartii"],["NCBITaxon%3A66271","Pantoea stewartii subsp. stewartii"],["NCBITaxon%3A660596","Pantoea stewartii subsp. stewartii DC283"]]},{"id":"NCBITaxon:664683","l":"Vreelandella titanicae","na":1,"nb":3,"a":[["TED%3AAF-A0A7Y6R1H5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y6R1H5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1761787","Halomonas sp. DSM 26667"],["NCBITaxon%3A664683","Vreelandella titanicae"],["NCBITaxon%3A1204738","Vreelandella titanicae BH1"]]},{"id":"NCBITaxon:67267","l":"Streptomyces alboflavus","na":3,"nb":1,"a":[["TED%3AAF-A0A1Z1WH37-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z1WH37-F1-model_v4_TED01"],["TED%3AAF-A0A291W4F3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A291W4F3-F1-model_v4_TED01"],["TED%3AAF-A0A291W5G3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A291W5G3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A67267","Streptomyces alboflavus"]]},{"id":"NCBITaxon:68040","l":"Streptomyces diastaticus subsp. diastaticus","na":1,"nb":3,"a":[["TED%3AAF-A0A6A0C936-F1-model_v4_TED02","TED novel fold AF-A0A6A0C936-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1956","Streptomyces diastaticus"],["NCBITaxon%3A68040","Streptomyces diastaticus subsp. diastaticus"],["NCBITaxon%3A53448","Streptomyces gougerotii"]]},{"id":"NCBITaxon:68197","l":"Streptomyces fimbriatus","na":1,"nb":3,"a":[["PROSITE%3APS00093","N-4 cytosine-specific DNA methylases signature"]],"b":[["NCBITaxon%3A1398493","Pseudocitrobacter faecalis"],["NCBITaxon%3A68197","Streptomyces fimbriatus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:685828","l":"Armatimonas rosea","na":3,"nb":1,"a":[["TED%3AAF-A0A7W9SS11-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7W9SS11-F1-model_v4_TED04"],["TED%3AAF-A0A7W9W617-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7W9W617-F1-model_v4_TED03"],["TED%3AAF-A0A7W9WAF2-F1-model_v4_TED04","TED novel fold AF-A0A7W9WAF2-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A685828","Armatimonas rosea"]]},{"id":"NCBITaxon:68886","l":"Theileria orientalis","na":3,"nb":1,"a":[["TED%3AAF-A0A2T7I0Y7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2T7I0Y7-F1-model_v4_TED02"],["TED%3AAF-A0A2T7ITL4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T7ITL4-F1-model_v4_TED01"],["TED%3AAF-A0A2T7IKV1-F1-model_v4_TED01","TED novel fold AF-A0A2T7IKV1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A68886","Theileria orientalis"]]},{"id":"NCBITaxon:690879","l":"Terrimicrobium sacchariphilum","na":3,"nb":1,"a":[["TED%3AAF-A0A146G6C7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A146G6C7-F1-model_v4_TED02"],["TED%3AAF-A0A146G3H0-F1-model_v4_TED03","TED novel fold AF-A0A146G3H0-F1-model_v4_TED03"],["TED%3AAF-A0A146GFR8-F1-model_v4_TED02","TED novel fold AF-A0A146GFR8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A690879","Terrimicrobium sacchariphilum"]]},{"id":"NCBITaxon:698986","l":"Olavius sp. associated proteobacterium Delta 1","na":3,"nb":1,"a":[["TED%3AAF-A0A6J4WR07-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6J4WR07-F1-model_v4_TED01"],["TED%3AAF-A0A6J4X3E0-F1-model_v4_TED01","TED novel fold AF-A0A6J4X3E0-F1-model_v4_TED01"],["TED%3AAF-A0A6J4XQQ0-F1-model_v4_TED01","TED novel fold AF-A0A6J4XQQ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A698986","Olavius sp. associated proteobacterium Delta 1"]]},{"id":"NCBITaxon:69974","l":"Mesorhizobium plurifarium","na":1,"nb":3,"a":[["PROSITE%3APS01349","Nodulation protein nodA signature"]],"b":[["NCBITaxon%3A69974","Mesorhizobium plurifarium"],["NCBITaxon%3A198626","Mesorhizobium plurifarium subsp. americum"],["NCBITaxon%3A391","Rhizobium sp."]]},{"id":"NCBITaxon:703342","l":"Myroides marinus","na":3,"nb":1,"a":[["TED%3AAF-A0A163X950-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A163X950-F1-model_v4_TED01"],["TED%3AAF-A0A1H6XJL5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1H6XJL5-F1-model_v4_TED03"],["TED%3AAF-A0A164A2Y1-F1-model_v4_TED02","TED novel fold AF-A0A164A2Y1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A703342","Myroides marinus"]]},{"id":"NCBITaxon:70996","l":"Herpetosiphon geysericola","na":3,"nb":1,"a":[["TED%3AAF-A0A0P6YGG3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0P6YGG3-F1-model_v4_TED01"],["TED%3AAF-A0A0P6XCC2-F1-model_v4_TED01","TED novel fold AF-A0A0P6XCC2-F1-model_v4_TED01"],["TED%3AAF-A0A0P6XIM9-F1-model_v4_TED03","TED novel fold AF-A0A0P6XIM9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A70996","Herpetosiphon geysericola"]]},{"id":"NCBITaxon:713059","l":"Candidatus Saccharibacteria bacterium oral taxon 488","na":3,"nb":1,"a":[["TED%3AAF-A0A6M5F8X7-F1-model_v4_TED02","TED novel fold AF-A0A6M5F8X7-F1-model_v4_TED02"],["TED%3AAF-A0A857VBF2-F1-model_v4_TED02","TED novel fold AF-A0A857VBF2-F1-model_v4_TED02"],["TED%3AAF-A0A857VF06-F1-model_v4_TED01","TED novel fold AF-A0A857VF06-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A713059","Candidatus Saccharibacteria bacterium oral taxon 488"]]},{"id":"NCBITaxon:71433","l":"Mesorhizobium amorphae","na":1,"nb":3,"a":[["TED%3AAF-A0A7Z1UR79-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Z1UR79-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A71433","Mesorhizobium amorphae"],["NCBITaxon%3A1449348","Mesorhizobium amorphae CCBAU 01583"],["NCBITaxon%3A1082933","Mesorhizobium amorphae CCNWGS0123"]]},{"id":"NCBITaxon:748857","l":"Roseimicrobium gellanilyticum","na":3,"nb":1,"a":[["TED%3AAF-A0A366H6K4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A366H6K4-F1-model_v4_TED02"],["TED%3AAF-A0A366HAW4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A366HAW4-F1-model_v4_TED02"],["TED%3AAF-A0A366HBA0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A366HBA0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A748857","Roseimicrobium gellanilyticum"]]},{"id":"NCBITaxon:749414","l":"","na":3,"nb":1,"a":[["Pfam%3APF14509","Glycosyl-hydrolase 97 C-terminal, oligomerisation"],["Pfam%3APF14508","Glycosyl-hydrolase 97 N-terminal"],["Pfam%3APF10566","Glycoside hydrolase 97"]],"b":[["NCBITaxon%3A749414","Streptomyces bingchenggensis BCW-1"]]},{"id":"NCBITaxon:754081","l":"Escherichia coli (strain STEC_O31)","na":3,"nb":1,"a":[["Pfam%3APF18624","CDI immunity protein"],["Pfam%3APF21726","Family of unknown function (DUF6862)"],["Pfam%3APF13332","Hemagglutinin repeat"]],"b":[["NCBITaxon%3A754081","Escherichia coli STEC_O31"]]},{"id":"NCBITaxon:758826","l":"Acidovorax radicis","na":1,"nb":3,"a":[["TED%3AAF-A0A561C4M3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A561C4M3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A758826","Acidovorax radicis"],["NCBITaxon%3A999386","Acidovorax radicis N35"],["NCBITaxon%3A999394","Acidovorax radicis N35v"]]},{"id":"NCBITaxon:765821","l":"uncultured Blautia sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A6N2W179-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A6N2W179-F1-model_v4_TED04"],["TED%3AAF-A0A1C5PFZ2-F1-model_v4_TED01","TED novel fold AF-A0A1C5PFZ2-F1-model_v4_TED01"],["TED%3AAF-A0A1C5UUR5-F1-model_v4_TED01","TED novel fold AF-A0A1C5UUR5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A765821","uncultured Blautia sp."]]},{"id":"NCBITaxon:78327","l":"Pseudomonas mosselii","na":1,"nb":3,"a":[["TED%3AAF-A0A2V4KNJ1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V4KNJ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A78327","Pseudomonas mosselii"],["NCBITaxon%3A1403339","Pseudomonas mosselii DSM 17497"],["NCBITaxon%3A1388763","Pseudomonas mosselii SJ10"]]},{"id":"NCBITaxon:79885","l":"Alkalihalophilus pseudofirmus","na":1,"nb":3,"a":[["TED%3AAF-A0A1Q8TV17-F1-model_v4_TED02","TED novel fold AF-A0A1Q8TV17-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A79885","Alkalihalophilus pseudofirmus"],["NCBITaxon%3A398511","Alkalihalophilus pseudofirmus OF4"],["NCBITaxon%3A83428","uncultured Bacillus sp."]]},{"id":"NCBITaxon:79967","l":"Erwinia pyrifoliae","na":1,"nb":3,"a":[["Pfam%3APF09589","HrpA pilus formation protein"]],"b":[["NCBITaxon%3A79967","Erwinia pyrifoliae"],["NCBITaxon%3A644651","Erwinia pyrifoliae DSM 12163"],["NCBITaxon%3A634499","Erwinia pyrifoliae Ep1/96"]]},{"id":"NCBITaxon:83555","l":"Chlamydia abortus","na":1,"nb":3,"a":[["TED%3AAF-A0A5C1D8N1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C1D8N1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A83555","Chlamydia abortus"],["NCBITaxon%3A1003238","Chlamydia abortus LLG"],["NCBITaxon%3A218497","Chlamydia abortus S26/3"]]},{"id":"NCBITaxon:83655","l":"Leclercia adecarboxylata","na":1,"nb":3,"a":[["TED%3AAF-A0A5B7XGB6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A5B7XGB6-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A42895","Enterobacter sp."],["NCBITaxon%3A83655","Leclercia adecarboxylata"],["NCBITaxon%3A911008","Leclercia adecarboxylata ATCC 23216 = NBRC 102595"]]},{"id":"NCBITaxon:84588","l":"Parasynechococcus marenigrum (strain WH8102)","na":3,"nb":1,"a":[["Pfam%3APF08936","Carboxysome Shell Carbonic Anhydrase, C-terminal"],["Pfam%3APF20686","Carboxysome Shell Carbonic Anhydrase, catalytic domain"],["Pfam%3APF20687","Carboxysome Shell Carbonic Anhydrase, N-terminal"]],"b":[["NCBITaxon%3A84588","Parasynechococcus marenigrum WH 8102"]]},{"id":"NCBITaxon:84635","l":"Bacillus sp. (strain GL1)","na":3,"nb":1,"a":[["Pfam%3APF25275","Golvesin C-terminal domain"],["Pfam%3APF07470","Glycosyl Hydrolase Family 88"],["Pfam%3APF08124","Polysaccharide lyase family 8, N terminal alpha-helical domain"]],"b":[["NCBITaxon%3A84635","Bacillus sp. GL1"]]},{"id":"NCBITaxon:85581","l":"Photobacterium damselae subsp. damselae","na":1,"nb":3,"a":[["TED%3AAF-A0A850QXP5-F1-model_v4_TED01","TED novel fold AF-A0A850QXP5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A38293","Photobacterium damselae"],["NCBITaxon%3A85581","Photobacterium damselae subsp. damselae"],["NCBITaxon%3A675817","Photobacterium damselae subsp. damselae CIP 102761"]]},{"id":"NCBITaxon:86029","l":"Bacillus subtilis subsp. natto","na":1,"nb":3,"a":[["Pfam%3APF13040","Fur-regulated basic protein B"]],"b":[["NCBITaxon%3A86029","Bacillus subtilis subsp. natto"],["NCBITaxon%3A645657","Bacillus subtilis subsp. natto BEST195"],["NCBITaxon%3A1248410","Bacillus subtilis subsp. natto HSF 1410"]]},{"id":"NCBITaxon:888027","l":"Lactobacillus delbrueckii subsp. lactis DSM 20072","na":1,"nb":3,"a":[["TED%3AAF-A0A0R1JCR6-F1-model_v4_TED01","TED novel fold AF-A0A0R1JCR6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1584","Lactobacillus delbrueckii"],["NCBITaxon%3A29397","Lactobacillus delbrueckii subsp. lactis"],["NCBITaxon%3A888027","Lactobacillus delbrueckii subsp. lactis DSM 20072"]]},{"id":"NCBITaxon:889282","l":"Polyangium spumosum","na":3,"nb":1,"a":[["TED%3AAF-A0A6N7PQI9-F1-model_v4_TED01","TED novel fold AF-A0A6N7PQI9-F1-model_v4_TED01"],["TED%3AAF-A0A6N7PTT9-F1-model_v4_TED02","TED novel fold AF-A0A6N7PTT9-F1-model_v4_TED02"],["TED%3AAF-A0A6N7Q2E0-F1-model_v4_TED01","TED novel fold AF-A0A6N7Q2E0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A889282","Polyangium spumosum"]]},{"id":"NCBITaxon:901","l":"Desulfovibrio piger","na":1,"nb":3,"a":[["TED%3AAF-A0A848CHH4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A848CHH4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A901","Desulfovibrio piger"],["NCBITaxon%3A411464","Desulfovibrio piger ATCC 29098"],["NCBITaxon%3A613189","Desulfovibrio piger GOR1"]]},{"id":"NCBITaxon:90262","l":"Absidia repens","na":3,"nb":1,"a":[["TED%3AAF-A0A1X2HE06-F1-model_v4_TED02","TED novel fold AF-A0A1X2HE06-F1-model_v4_TED02"],["TED%3AAF-A0A1X2I011-F1-model_v4_TED02","TED novel fold AF-A0A1X2I011-F1-model_v4_TED02"],["TED%3AAF-A0A1X2I4A9-F1-model_v4_TED01","TED novel fold AF-A0A1X2I4A9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A90262","Absidia repens"]]},{"id":"NCBITaxon:913107","l":"Pelolinea submarina","na":3,"nb":1,"a":[["TED%3AAF-A0A347ZP40-F1-model_v4_TED01","TED novel fold AF-A0A347ZP40-F1-model_v4_TED01"],["TED%3AAF-A0A347ZW01-F1-model_v4_TED02","TED novel fold AF-A0A347ZW01-F1-model_v4_TED02"],["TED%3AAF-A0A3E0AIB0-F1-model_v4_TED01","TED novel fold AF-A0A3E0AIB0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A913107","Pelolinea submarina"]]},{"id":"NCBITaxon:91324","l":"Lotharella globosa","na":3,"nb":1,"a":[["TED%3AAF-A0A7S4DGV9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S4DGV9-F1-model_v4_TED02"],["TED%3AAF-A0A7S4DM08-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4DM08-F1-model_v4_TED01"],["TED%3AAF-A0A7S4DYU3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4DYU3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A91324","Lotharella globosa"]]},{"id":"NCBITaxon:93064","l":"Sphingomonas koreensis","na":1,"nb":3,"a":[["TED%3AAF-A0A2M8WIB0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M8WIB0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A93064","Sphingomonas koreensis"],["NCBITaxon%3A1219046","Sphingomonas koreensis NBRC 16723"],["NCBITaxon%3A28214","Sphingomonas sp."]]},{"id":"NCBITaxon:94122","l":"Shewanella sp. ANA-3","na":3,"nb":1,"a":[["Pfam%3APF03883","Peroxide stress protein YaaA"],["Pfam%3APF04751","Dual-action ribosomal maturation protein DarP"],["Pfam%3APF04356","Protein of unknown function (DUF489)"]],"b":[["NCBITaxon%3A94122","Shewanella sp. ANA-3"]]},{"id":"NCBITaxon:94130","l":"Rhizophagus clarus","na":3,"nb":1,"a":[["TED%3AAF-A0A2Z6R1J4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z6R1J4-F1-model_v4_TED01"],["TED%3AAF-A0A2Z6SKM0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z6SKM0-F1-model_v4_TED01"],["TED%3AAF-A0A2Z6S4T9-F1-model_v4_TED04","TED novel fold AF-A0A2Z6S4T9-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A94130","Rhizophagus clarus"]]},{"id":"NCBITaxon:94132","l":"Ramlibacter tataouinensis","na":1,"nb":3,"a":[["TED%3AAF-A0A127JUU0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A127JUU0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1349425","Ramlibacter solisilvae"],["NCBITaxon%3A94132","Ramlibacter tataouinensis"],["NCBITaxon%3A365046","Ramlibacter tataouinensis TTB310"]]},{"id":"NCBITaxon:944289","l":"Collybiopsis luxurians FD-317 M1","na":3,"nb":1,"a":[["TED%3AAF-A0A0D0C9Q9-F1-model_v4_TED03","TED novel fold AF-A0A0D0C9Q9-F1-model_v4_TED03"],["TED%3AAF-A0A0D0CDF9-F1-model_v4_TED02","TED novel fold AF-A0A0D0CDF9-F1-model_v4_TED02"],["TED%3AAF-A0A0D0CH84-F1-model_v4_TED02","TED novel fold AF-A0A0D0CH84-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A944289","Collybiopsis luxurians FD-317 M1"]]},{"id":"NCBITaxon:946362","l":"Salpingoeca rosetta (strain ATCC 50818 / BSB-021)","na":3,"nb":1,"a":[["TED%3AAF-F2UQV7-F1-model_v4_TED02","TED highly-symmetric fold AF-F2UQV7-F1-model_v4_TED02"],["TED%3AAF-F2UA55-F1-model_v4_TED01","TED novel fold AF-F2UA55-F1-model_v4_TED01"],["TED%3AAF-F2UT64-F1-model_v4_TED02","TED novel fold AF-F2UT64-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A946362","Salpingoeca rosetta"]]},{"id":"NCBITaxon:948756","l":"Paenibacillus macquariensis","na":1,"nb":3,"a":[["TED%3AAF-A0A1N7D9D7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1N7D9D7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A948756","Paenibacillus macquariensis"],["NCBITaxon%3A467974","Paenibacillus macquariensis subsp. defensor"],["NCBITaxon%3A1468","Paenibacillus macquariensis subsp. macquariensis"]]},{"id":"NCBITaxon:97331","l":"Arthrobotrys flagrans","na":3,"nb":1,"a":[["Pfam%3APF11710","G protein-coupled glucose receptor regulating Gpa2"],["Pfam%3APF11327","Egh16-like virulence factor"],["TED%3AAF-A0A436ZMZ5-F1-model_v4_TED02","TED novel fold AF-A0A436ZMZ5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A97331","Arthrobotrys flagrans"]]},{"id":"NCBITaxon:983506","l":"Thanatephorus cucumeris (strain AG1-IA)","na":3,"nb":1,"a":[["TED%3AAF-L8WQG2-F1-model_v4_TED01","TED novel fold AF-L8WQG2-F1-model_v4_TED01"],["TED%3AAF-L8WS62-F1-model_v4_TED02","TED novel fold AF-L8WS62-F1-model_v4_TED02"],["TED%3AAF-L8WX42-F1-model_v4_TED01","TED novel fold AF-L8WX42-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A983506","Rhizoctonia solani AG-1 IA"]]},{"id":"NCBITaxon:99822","l":"Streptococcus dysgalactiae subsp. dysgalactiae","na":1,"nb":3,"a":[["TED%3AAF-A0A380JYN4-F1-model_v4_TED01","TED novel fold AF-A0A380JYN4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1334","Streptococcus dysgalactiae"],["NCBITaxon%3A99822","Streptococcus dysgalactiae subsp. dysgalactiae"],["NCBITaxon%3A663952","Streptococcus dysgalactiae subsp. dysgalactiae ATCC 27957"]]},{"id":"NCBITaxon:1004901","l":"Gordonia iterans","na":1,"nb":2,"a":[["TED%3AAF-A0A2S0KFK9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S0KFK9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1004901","Gordonia iterans"],["NCBITaxon%3A198437","uncultured Gordonia sp."]]},{"id":"NCBITaxon:1005043","l":"Candidatus Regiella insecticola 5.15","na":2,"nb":1,"a":[["TED%3AAF-G2H098-F1-model_v4_TED01","TED highly-symmetric fold AF-G2H098-F1-model_v4_TED01"],["TED%3AAF-G2H102-F1-model_v4_TED04","TED novel fold AF-G2H102-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1005043","Candidatus Regiella insecticola 5.15"]]},{"id":"NCBITaxon:1005994","l":"Trabulsiella guamensis ATCC 49490","na":1,"nb":2,"a":[["TED%3AAF-A0A084ZLG9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A084ZLG9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A158852","Trabulsiella guamensis"],["NCBITaxon%3A1005994","Trabulsiella guamensis ATCC 49490"]]},{"id":"NCBITaxon:1006155","l":"Paenilisteria weihenstephanensis","na":1,"nb":2,"a":[["TED%3AAF-A0A1S7FXD4-F1-model_v4_TED02","TED novel fold AF-A0A1S7FXD4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1006155","Paenilisteria weihenstephanensis"],["NCBITaxon%3A1265845","Paenilisteria weihenstephanensis FSL R9-0317"]]},{"id":"NCBITaxon:1007099","l":"Pseudomonas kuykendallii","na":1,"nb":2,"a":[["TED%3AAF-A0A2W5F5H8-F1-model_v4_TED05","TED novel fold AF-A0A2W5F5H8-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1007099","Pseudomonas kuykendallii"],["NCBITaxon%3A306","Pseudomonas sp."]]},{"id":"NCBITaxon:100787","l":"Verticillium longisporum","na":2,"nb":1,"a":[["TED%3AAF-A0A0G4L720-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G4L720-F1-model_v4_TED01"],["TED%3AAF-A0A0G4KSC1-F1-model_v4_TED01","TED novel fold AF-A0A0G4KSC1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A100787","Verticillium longisporum"]]},{"id":"NCBITaxon:102862","l":"Proteus penneri","na":1,"nb":2,"a":[["TED%3AAF-A0A0G4Q3D2-F1-model_v4_TED01","TED novel fold AF-A0A0G4Q3D2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A102862","Proteus penneri"],["NCBITaxon%3A471881","Proteus penneri ATCC 35198"]]},{"id":"NCBITaxon:1032476","l":"Nonomuraea soli","na":2,"nb":1,"a":[["TED%3AAF-A0A7W0HQS4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7W0HQS4-F1-model_v4_TED03"],["TED%3AAF-A0A7W0CFM2-F1-model_v4_TED01","TED novel fold AF-A0A7W0CFM2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1032476","Nonomuraea soli"]]},{"id":"NCBITaxon:1034831","l":"Rhizochromulina marina","na":2,"nb":1,"a":[["TED%3AAF-A0A7S2SVZ9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S2SVZ9-F1-model_v4_TED02"],["TED%3AAF-A0A7S2WVI7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2WVI7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1034831","Rhizochromulina marina"]]},{"id":"NCBITaxon:1034943","l":"Legionella massiliensis","na":2,"nb":1,"a":[["TED%3AAF-A0A078KZR2-F1-model_v4_TED02","TED novel fold AF-A0A078KZR2-F1-model_v4_TED02"],["TED%3AAF-A0A078L1Y9-F1-model_v4_TED02","TED novel fold AF-A0A078L1Y9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1034943","Legionella massiliensis"]]},{"id":"NCBITaxon:1036020","l":"Nocardioides soli","na":2,"nb":1,"a":[["TED%3AAF-A0A7W4VSZ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W4VSZ4-F1-model_v4_TED01"],["TED%3AAF-A0A7W4Z0C7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W4Z0C7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1036020","Nocardioides soli"]]},{"id":"NCBITaxon:1043004","l":"Aureobasidium namibiae CBS 147.97","na":2,"nb":1,"a":[["TED%3AAF-A0A074X7C9-F1-model_v4_TED05","TED novel fold AF-A0A074X7C9-F1-model_v4_TED05"],["TED%3AAF-A0A074XB98-F1-model_v4_TED02","TED novel fold AF-A0A074XB98-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1043004","Aureobasidium namibiae CBS 147.97"]]},{"id":"NCBITaxon:1045004","l":"Oenococcus kitaharae DSM 17330","na":1,"nb":2,"a":[["TED%3AAF-G9WIN5-F1-model_v4_TED02","TED highly-symmetric fold AF-G9WIN5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A336988","Oenococcus kitaharae"],["NCBITaxon%3A1045004","Oenococcus kitaharae DSM 17330"]]},{"id":"NCBITaxon:1045775","l":"Paenibacillus catalpae","na":2,"nb":1,"a":[["TED%3AAF-A0A1I2B153-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2B153-F1-model_v4_TED01"],["TED%3AAF-A0A1I2FU75-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1I2FU75-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1045775","Paenibacillus catalpae"]]},{"id":"NCBITaxon:1045858","l":"","na":1,"nb":2,"a":[["TED%3AAF-G0EQD8-F1-model_v4_TED02","TED novel fold AF-G0EQD8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A84377","Brachyspira intermedia"],["NCBITaxon%3A1045858","Brachyspira intermedia PWS/A"]]},{"id":"NCBITaxon:104623","l":"Prodigiosinella confusarubida","na":2,"nb":1,"a":[["Pfam%3APF07254","Membrane-bound toxin component of toxin-antitoxin system"],["Pfam%3APF19507","Family of unknown function (DUF6041)"]],"b":[["NCBITaxon%3A104623","Prodigiosinella confusarubida"]]},{"id":"NCBITaxon:1047168","l":"Zymoseptoria brevis","na":2,"nb":1,"a":[["TED%3AAF-A0A0F4G6M4-F1-model_v4_TED01","TED novel fold AF-A0A0F4G6M4-F1-model_v4_TED01"],["TED%3AAF-A0A0F4GF48-F1-model_v4_TED01","TED novel fold AF-A0A0F4GF48-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1047168","Zymoseptoria brevis"]]},{"id":"NCBITaxon:1048689","l":"","na":2,"nb":1,"a":[["Pfam%3APF28043","Anti-phage protein KwaA"],["Pfam%3APF16162","Kiwa protein KwaB-like"]],"b":[["NCBITaxon%3A1048689","Escherichia coli O55:H7 str. RM12579"]]},{"id":"NCBITaxon:1048830","l":"Malacoplasma iowae 695","na":1,"nb":2,"a":[["TED%3AAF-A0A6P1LDJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6P1LDJ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2116","Malacoplasma iowae"],["NCBITaxon%3A1048830","Malacoplasma iowae 695"]]},{"id":"NCBITaxon:1049789","l":"Leptospira broomii serovar Hurstbridge str. 5399","na":1,"nb":2,"a":[["TED%3AAF-T0F5H5-F1-model_v4_TED02","TED novel fold AF-T0F5H5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A301541","Leptospira broomii"],["NCBITaxon%3A1049789","Leptospira broomii serovar Hurstbridge str. 5399"]]},{"id":"NCBITaxon:1050","l":"Thermochromatium tepidum","na":1,"nb":2,"a":[["Pfam%3APF02276","Photosynthetic reaction centre cytochrome C subunit"]],"b":[["NCBITaxon%3A1050","Thermochromatium tepidum"],["NCBITaxon%3A316276","Thermochromatium tepidum ATCC 43061"]]},{"id":"NCBITaxon:1052585","l":"","na":1,"nb":2,"a":[["TED%3AAF-G4P1P4-F1-model_v4_TED01","TED highly-symmetric fold AF-G4P1P4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A96241","Bacillus spizizenii"],["NCBITaxon%3A1052585","Bacillus spizizenii TU-B-10"]]},{"id":"NCBITaxon:105612","l":"Dellaglioa algida","na":1,"nb":2,"a":[["TED%3AAF-A0A5C6M980-F1-model_v4_TED02","TED novel fold AF-A0A5C6M980-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A105612","Dellaglioa algida"],["NCBITaxon%3A1423719","Dellaglioa algida DSM 15638"]]},{"id":"NCBITaxon:105841","l":"Anaerostipes caccae","na":1,"nb":2,"a":[["TED%3AAF-A0A6N2WKG2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N2WKG2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A105841","Anaerostipes caccae"],["NCBITaxon%3A411490","Anaerostipes caccae L1-92"]]},{"id":"NCBITaxon:105984","l":"Apiotrichum porosum","na":2,"nb":1,"a":[["TED%3AAF-A0A427XIN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A427XIN3-F1-model_v4_TED01"],["TED%3AAF-A0A427XP81-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A427XP81-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A105984","Apiotrichum porosum"]]},{"id":"NCBITaxon:1070861","l":"Bailinhaonella thermotolerans","na":2,"nb":1,"a":[["TED%3AAF-A0A3A4APG1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A4APG1-F1-model_v4_TED01"],["TED%3AAF-A0A3A4AX42-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A4AX42-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1070861","Bailinhaonella thermotolerans"]]},{"id":"NCBITaxon:1072389","l":"","na":2,"nb":1,"a":[["Pfam%3APF05730","CFEM domain"],["TED%3AAF-K1WGS2-F1-model_v4_TED01","TED highly-symmetric fold AF-K1WGS2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1072389","Drepanopeziza brunnea f. sp. 'multigermtubi' MB_m1"]]},{"id":"NCBITaxon:1072583","l":"Vreelandella boliviensis LC1","na":1,"nb":2,"a":[["TED%3AAF-A0A265DTH2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A265DTH2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A223527","Vreelandella boliviensis"],["NCBITaxon%3A1072583","Vreelandella boliviensis LC1"]]},{"id":"NCBITaxon:1073090","l":"Penicilliopsis zonata CBS 506.65","na":2,"nb":1,"a":[["TED%3AAF-A0A1L9S4H1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L9S4H1-F1-model_v4_TED01"],["TED%3AAF-A0A1L9SL11-F1-model_v4_TED01","TED novel fold AF-A0A1L9SL11-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1073090","Penicilliopsis zonata CBS 506.65"]]},{"id":"NCBITaxon:107327","l":"Pseudoalteromonas ulvae","na":1,"nb":2,"a":[["TED%3AAF-A0A244CSP0-F1-model_v4_TED01","TED novel fold AF-A0A244CSP0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A107327","Pseudoalteromonas ulvae"],["NCBITaxon%3A1315306","Pseudoalteromonas ulvae UL12"]]},{"id":"NCBITaxon:1074","l":"Rhodoblastus acidophilus","na":2,"nb":1,"a":[["PROSITE%3APS00969","Antenna complexes beta subunits signature"],["TED%3AAF-A0A6N8DR15-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8DR15-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1074","Rhodoblastus acidophilus"]]},{"id":"NCBITaxon:107401","l":"Tenacibaculum maritimum","na":1,"nb":2,"a":[["TED%3AAF-A0A5S9T7W6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5S9T7W6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A107401","Tenacibaculum maritimum"],["NCBITaxon%3A1349785","Tenacibaculum maritimum NCIMB 2154"]]},{"id":"NCBITaxon:1075417","l":"Catalinimonas alkaloidigena","na":1,"nb":2,"a":[["TED%3AAF-A0A1G9GY81-F1-model_v4_TED01","TED novel fold AF-A0A1G9GY81-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1075417","Catalinimonas alkaloidigena"],["NCBITaxon%3A1075416","Mooreia alkaloidigena"]]},{"id":"NCBITaxon:1076935","l":"Pyronema omphalodes (strain CBS 100304)","na":2,"nb":1,"a":[["TED%3AAF-U4KXW2-F1-model_v4_TED01","TED highly-symmetric fold AF-U4KXW2-F1-model_v4_TED01"],["TED%3AAF-U4LQ68-F1-model_v4_TED01","TED highly-symmetric fold AF-U4LQ68-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1076935","Pyronema omphalodes CBS 100304"]]},{"id":"NCBITaxon:1077972","l":"","na":1,"nb":2,"a":[["Pfam%3APF19906","C-glycoside deglycosidase beta subunit"]],"b":[["NCBITaxon%3A1665","Arthrobacter globiformis"],["NCBITaxon%3A1077972","Arthrobacter globiformis NBRC 12137"]]},{"id":"NCBITaxon:1077974","l":"Gordonia effusa NBRC 100432","na":1,"nb":2,"a":[["TED%3AAF-H0R5B3-F1-model_v4_TED01","TED highly-symmetric fold AF-H0R5B3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A263908","Gordonia effusa"],["NCBITaxon%3A1077974","Gordonia effusa NBRC 100432"]]},{"id":"NCBITaxon:1078773","l":"Herbaspirillum rubrisubalbicans M1","na":1,"nb":2,"a":[["TED%3AAF-A0A0U3LK61-F1-model_v4_TED02","TED novel fold AF-A0A0U3LK61-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A80842","Herbaspirillum rubrisubalbicans"],["NCBITaxon%3A1078773","Herbaspirillum rubrisubalbicans M1"]]},{"id":"NCBITaxon:1079859","l":"Pseudarcicella hirudinis","na":1,"nb":2,"a":[["TED%3AAF-A0A1I5W7M0-F1-model_v4_TED03","TED novel fold AF-A0A1I5W7M0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1434730","Dactylosporangium cerinum"],["NCBITaxon%3A1079859","Pseudarcicella hirudinis"]]},{"id":"NCBITaxon:1082188","l":"Strombidium rassoulzadegani","na":2,"nb":1,"a":[["TED%3AAF-A0A7S3CNG5-F1-model_v4_TED01","TED novel fold AF-A0A7S3CNG5-F1-model_v4_TED01"],["TED%3AAF-A0A7S3FZU1-F1-model_v4_TED01","TED novel fold AF-A0A7S3FZU1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1082188","Strombidium rassoulzadegani"]]},{"id":"NCBITaxon:1083","l":"Magnetospirillum molischianum","na":1,"nb":2,"a":[["PROSITE%3APS00969","Antenna complexes beta subunits signature"]],"b":[["NCBITaxon%3A1083","Magnetospirillum molischianum"],["NCBITaxon%3A1150626","Magnetospirillum molischianum DSM 120"]]},{"id":"NCBITaxon:1084421","l":"Sinomicrobium pectinilyticum","na":2,"nb":1,"a":[["TED%3AAF-A0A3N0EA19-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N0EA19-F1-model_v4_TED01"],["TED%3AAF-A0A3N0F5C6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3N0F5C6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1084421","Sinomicrobium pectinilyticum"]]},{"id":"NCBITaxon:1085623","l":"","na":1,"nb":2,"a":[["TED%3AAF-G4QL11-F1-model_v4_TED01","TED novel fold AF-G4QL11-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A300231","Brumicola nitratireducens"],["NCBITaxon%3A1085623","Brumicola nitratireducens FR1064"]]},{"id":"NCBITaxon:1088540","l":"Leptospira weilii serovar Topaz str. LT2116","na":2,"nb":1,"a":[["TED%3AAF-M3GVT4-F1-model_v4_TED02","TED highly-symmetric fold AF-M3GVT4-F1-model_v4_TED02"],["TED%3AAF-M3FSY3-F1-model_v4_TED01","TED novel fold AF-M3FSY3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1088540","Leptospira weilii serovar Topaz str. LT2116"]]},{"id":"NCBITaxon:1088868","l":"Commensalibacter intestini A911","na":1,"nb":2,"a":[["TED%3AAF-G6EZZ4-F1-model_v4_TED03","TED highly-symmetric fold AF-G6EZZ4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A479936","Commensalibacter intestini"],["NCBITaxon%3A1088868","Commensalibacter intestini A911"]]},{"id":"NCBITaxon:1089457","l":"Fusarium oxysporum f. sp. conglutinans race 2 54008","na":2,"nb":1,"a":[["TED%3AAF-X0H3K0-F1-model_v4_TED02","TED novel fold AF-X0H3K0-F1-model_v4_TED02"],["TED%3AAF-X0I8I2-F1-model_v4_TED02","TED novel fold AF-X0I8I2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1089457","Fusarium oxysporum f. sp. conglutinans race 2 54008"]]},{"id":"NCBITaxon:1094555","l":"Bartonella elizabethae F9251 = ATCC 49927","na":1,"nb":2,"a":[["TED%3AAF-J1K501-F1-model_v4_TED02","TED highly-symmetric fold AF-J1K501-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A807","Bartonella elizabethae"],["NCBITaxon%3A1094555","Bartonella elizabethae F9251 = ATCC 49927"]]},{"id":"NCBITaxon:1100720","l":"Limnohabitans sp. Rim28","na":1,"nb":2,"a":[["TED%3AAF-A0A2T7SZL1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T7SZL1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1907725","Limnohabitans sp."],["NCBITaxon%3A1100720","Limnohabitans sp. Rim28"]]},{"id":"NCBITaxon:1100822","l":"Streptomyces sp. AmelKG-E11A","na":2,"nb":1,"a":[["TED%3AAF-A0A1C6R3A1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C6R3A1-F1-model_v4_TED01"],["TED%3AAF-A0A1C6R678-F1-model_v4_TED01","TED novel fold AF-A0A1C6R678-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1100822","Streptomyces sp. AmelKG-E11A"]]},{"id":"NCBITaxon:1102","l":"Prosthecochloris aestuarii","na":1,"nb":2,"a":[["Pfam%3APF02327","Bacteriochlorophyll A protein"]],"b":[["NCBITaxon%3A1102","Prosthecochloris aestuarii"],["NCBITaxon%3A290512","Prosthecochloris aestuarii DSM 271"]]},{"id":"NCBITaxon:110365","l":"Gregarina niphandrodes","na":2,"nb":1,"a":[["TED%3AAF-A0A023AX34-F1-model_v4_TED01","TED novel fold AF-A0A023AX34-F1-model_v4_TED01"],["TED%3AAF-A0A023AXI4-F1-model_v4_TED03","TED novel fold AF-A0A023AXI4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A110365","Gregarina niphandrodes"]]},{"id":"NCBITaxon:1107882","l":"Mesorhizobium alhagi CCNWXJ12-2","na":1,"nb":2,"a":[["TED%3AAF-H0I1K0-F1-model_v4_TED01","TED novel fold AF-H0I1K0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A475067","Allomesorhizobium alhagi"],["NCBITaxon%3A1107882","Mesorhizobium alhagi CCNWXJ12-2"]]},{"id":"NCBITaxon:1110509","l":"","na":2,"nb":1,"a":[["Pfam%3APF05228","CHASE4 domain"],["Pfam%3APF08350","Methanogenesis regulatory protein FilR1, middle domain"]],"b":[["NCBITaxon%3A1110509","Methanothrix harundinacea 6Ac"]]},{"id":"NCBITaxon:1112204","l":"Gordonia polyisoprenivorans VH2","na":1,"nb":2,"a":[["TED%3AAF-H6N0Q7-F1-model_v4_TED01","TED novel fold AF-H6N0Q7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A84595","Gordonia polyisoprenivorans"],["NCBITaxon%3A1112204","Gordonia polyisoprenivorans VH2"]]},{"id":"NCBITaxon:1114856","l":"","na":1,"nb":2,"a":[["TED%3AAF-L9VUV1-F1-model_v4_TED01","TED novel fold AF-L9VUV1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A63128","Natronorubrum tibetense"],["NCBITaxon%3A1114856","Natronorubrum tibetense GA33"]]},{"id":"NCBITaxon:1116472","l":"Methyloglobulus morosus KoM1","na":1,"nb":2,"a":[["TED%3AAF-V5BKR0-F1-model_v4_TED01","TED highly-symmetric fold AF-V5BKR0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1410681","Methyloglobulus morosus"],["NCBITaxon%3A1116472","Methyloglobulus morosus KoM1"]]},{"id":"NCBITaxon:1117313","l":"Pseudoalteromonas arctica A 37-1-2","na":1,"nb":2,"a":[["TED%3AAF-A0A290S486-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A290S486-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A394751","Pseudoalteromonas arctica"],["NCBITaxon%3A1117313","Pseudoalteromonas arctica A 37-1-2"]]},{"id":"NCBITaxon:1120918","l":"Acetitomaculum ruminis DSM 5522","na":1,"nb":2,"a":[["TED%3AAF-A0A1I1ATM7-F1-model_v4_TED01","TED novel fold AF-A0A1I1ATM7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2382","Acetitomaculum ruminis"],["NCBITaxon%3A1120918","Acetitomaculum ruminis DSM 5522"]]},{"id":"NCBITaxon:1120923","l":"Acidocella aminolytica 101 = DSM 11237","na":1,"nb":2,"a":[["TED%3AAF-A0A0D6PBP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D6PBP8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A33998","Acidocella aminolytica"],["NCBITaxon%3A1120923","Acidocella aminolytica 101 = DSM 11237"]]},{"id":"NCBITaxon:1120926","l":"Acinetobacter gerneri DSM 14967 = CIP 107464 = MTCC 9824","na":1,"nb":2,"a":[["TED%3AAF-N8ZKV3-F1-model_v4_TED01","TED highly-symmetric fold AF-N8ZKV3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A202952","Acinetobacter gerneri"],["NCBITaxon%3A1120926","Acinetobacter gerneri DSM 14967 = CIP 107464 = MTCC 9824"]]},{"id":"NCBITaxon:1120927","l":"Acinetobacter tandoii DSM 14970 = CIP 107469","na":1,"nb":2,"a":[["TED%3AAF-R9BEH0-F1-model_v4_TED04","TED highly-symmetric fold AF-R9BEH0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A202954","Acinetobacter tandoii"],["NCBITaxon%3A1120927","Acinetobacter tandoii DSM 14970 = CIP 107469"]]},{"id":"NCBITaxon:1120928","l":"Acinetobacter tjernbergiae DSM 14971 = CIP 107465","na":1,"nb":2,"a":[["TED%3AAF-V2W927-F1-model_v4_TED01","TED highly-symmetric fold AF-V2W927-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A202955","Acinetobacter tjernbergiae"],["NCBITaxon%3A1120928","Acinetobacter tjernbergiae DSM 14971 = CIP 107465"]]},{"id":"NCBITaxon:1120940","l":"Actinomadura pelletieri DSM 43383","na":1,"nb":2,"a":[["TED%3AAF-A0A495QU85-F1-model_v4_TED02","TED novel fold AF-A0A495QU85-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A111805","Actinomadura pelletieri"],["NCBITaxon%3A1120940","Actinomadura pelletieri DSM 43383"]]},{"id":"NCBITaxon:1120964","l":"Algoriphagus boritolerans DSM 17298 = JCM 18970","na":1,"nb":2,"a":[["TED%3AAF-A0A1H5ZF82-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H5ZF82-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A308111","Algoriphagus boritolerans"],["NCBITaxon%3A1120964","Algoriphagus boritolerans DSM 17298 = JCM 18970"]]},{"id":"NCBITaxon:1120981","l":"Alysiella filiformis DSM 16848","na":1,"nb":2,"a":[["TED%3AAF-A0A286E5W8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A286E5W8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A194196","Alysiella filiformis"],["NCBITaxon%3A1120981","Alysiella filiformis DSM 16848"]]},{"id":"NCBITaxon:1120996","l":"Anaerosporobacter mobilis DSM 15930","na":1,"nb":2,"a":[["TED%3AAF-A0A1M7NGC0-F1-model_v4_TED01","TED novel fold AF-A0A1M7NGC0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A264463","Anaerosporobacter mobilis"],["NCBITaxon%3A1120996","Anaerosporobacter mobilis DSM 15930"]]},{"id":"NCBITaxon:1121022","l":"Asticcacaulis benevestitus DSM 16100 = ATCC BAA-896","na":1,"nb":2,"a":[["TED%3AAF-V4PT21-F1-model_v4_TED01","TED highly-symmetric fold AF-V4PT21-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A347481","Asticcacaulis benevestitus"],["NCBITaxon%3A1121022","Asticcacaulis benevestitus DSM 16100 = ATCC BAA-896"]]},{"id":"NCBITaxon:1121098","l":"Phocaeicola massiliensis B84634 = Timone 84634 = DSM 17679 = JCM 13223","na":1,"nb":2,"a":[["TED%3AAF-U6RRG8-F1-model_v4_TED01","TED highly-symmetric fold AF-U6RRG8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A204516","Phocaeicola massiliensis"],["NCBITaxon%3A1121098","Phocaeicola massiliensis B84634 = Timone 84634 = DSM 17679 = JCM 13223"]]},{"id":"NCBITaxon:1121132","l":"Butyrivibrio hungatei DSM 14810","na":1,"nb":2,"a":[["TED%3AAF-A0A1M7SJD3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M7SJD3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A185008","Butyrivibrio hungatei"],["NCBITaxon%3A1121132","Butyrivibrio hungatei DSM 14810"]]},{"id":"NCBITaxon:1121270","l":"","na":1,"nb":2,"a":[["TED%3AAF-A0A1T4LMW3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1T4LMW3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A178899","Carboxydocella thermautotrophica"],["NCBITaxon%3A1121270","Carboxydocella thermautotrophica DSM 16521"]]},{"id":"NCBITaxon:1121284","l":"Epilithonimonas bovis DSM 19482","na":1,"nb":2,"a":[["TED%3AAF-A0A1U7PTX5-F1-model_v4_TED01","TED novel fold AF-A0A1U7PTX5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A421530","Epilithonimonas bovis"],["NCBITaxon%3A1121284","Epilithonimonas bovis DSM 19482"]]},{"id":"NCBITaxon:1121301","l":"Paramaledivibacter caminithermalis DSM 15212","na":1,"nb":2,"a":[["TED%3AAF-A0A1M6LSW1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M6LSW1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A191027","Paramaledivibacter caminithermalis"],["NCBITaxon%3A1121301","Paramaledivibacter caminithermalis DSM 15212"]]},{"id":"NCBITaxon:1121324","l":"Peptoclostridium litorale DSM 5388","na":1,"nb":2,"a":[["TED%3AAF-A0A069RDW3-F1-model_v4_TED01","TED novel fold AF-A0A069RDW3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1557","Peptoclostridium litorale"],["NCBITaxon%3A1121324","Peptoclostridium litorale DSM 5388"]]},{"id":"NCBITaxon:1121325","l":"Romboutsia lituseburensis DSM 797","na":1,"nb":2,"a":[["TED%3AAF-A0A1G9LA77-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G9LA77-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1537","Romboutsia lituseburensis"],["NCBITaxon%3A1121325","Romboutsia lituseburensis DSM 797"]]},{"id":"NCBITaxon:1121326","l":"Clostridium magnum DSM 2767","na":1,"nb":2,"a":[["TED%3AAF-A0A162T1A8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A162T1A8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A33954","Clostridium magnum"],["NCBITaxon%3A1121326","Clostridium magnum DSM 2767"]]},{"id":"NCBITaxon:1121331","l":"Hathewaya proteolytica DSM 3090","na":1,"nb":2,"a":[["TED%3AAF-A0A1M6KJK5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M6KJK5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29365","Hathewaya proteolytica"],["NCBITaxon%3A1121331","Hathewaya proteolytica DSM 3090"]]},{"id":"NCBITaxon:1121391","l":"Desulfacinum infernum DSM 9756","na":1,"nb":2,"a":[["TED%3AAF-A0A1M5CF65-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M5CF65-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A35837","Desulfacinum infernum"],["NCBITaxon%3A1121391","Desulfacinum infernum DSM 9756"]]},{"id":"NCBITaxon:1121393","l":"Desulfatibacillum alkenivorans DSM 16219","na":1,"nb":2,"a":[["TED%3AAF-A0A1M6GB75-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M6GB75-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A259354","Desulfatibacillum alkenivorans"],["NCBITaxon%3A1121393","Desulfatibacillum alkenivorans DSM 16219"]]},{"id":"NCBITaxon:1121405","l":"Desulfococcus multivorans DSM 2059","na":1,"nb":2,"a":[["TED%3AAF-S7VDW8-F1-model_v4_TED02","TED highly-symmetric fold AF-S7VDW8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A897","Desulfococcus multivorans"],["NCBITaxon%3A1121405","Desulfococcus multivorans DSM 2059"]]},{"id":"NCBITaxon:1121421","l":"Desulforamulus aeronauticus DSM 10349","na":1,"nb":2,"a":[["TED%3AAF-A0A1M6XE41-F1-model_v4_TED01","TED novel fold AF-A0A1M6XE41-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A53343","Desulforamulus aeronauticus"],["NCBITaxon%3A1121421","Desulforamulus aeronauticus DSM 10349"]]},{"id":"NCBITaxon:1121424","l":"Desulfotruncus arcticus DSM 17038","na":1,"nb":2,"a":[["TED%3AAF-A0A1I2Z3E3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I2Z3E3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A341036","Desulfotruncus arcticus"],["NCBITaxon%3A1121424","Desulfotruncus arcticus DSM 17038"]]},{"id":"NCBITaxon:1121426","l":"Desulfoscipio geothermicus DSM 3669","na":1,"nb":2,"a":[["TED%3AAF-A0A1I6DXW2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I6DXW2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39060","Desulfoscipio geothermicus"],["NCBITaxon%3A1121426","Desulfoscipio geothermicus DSM 3669"]]},{"id":"NCBITaxon:1121448","l":"","na":1,"nb":2,"a":[["Pfam%3APF12139","Adenosine-5'-phosphosulfate reductase beta subunit"]],"b":[["NCBITaxon%3A879","Megalodesulfovibrio gigas"],["NCBITaxon%3A1121448","Megalodesulfovibrio gigas DSM 1382 = ATCC 19364"]]},{"id":"NCBITaxon:1121449","l":"Paucidesulfovibrio gracilis DSM 16080","na":1,"nb":2,"a":[["TED%3AAF-A0A1T4W1V7-F1-model_v4_TED03","TED novel fold AF-A0A1T4W1V7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A47158","Paucidesulfovibrio gracilis"],["NCBITaxon%3A1121449","Paucidesulfovibrio gracilis DSM 16080"]]},{"id":"NCBITaxon:1121451","l":"Maridesulfovibrio hydrothermalis AM13 = DSM 14728","na":1,"nb":2,"a":[["TED%3AAF-L0RH10-F1-model_v4_TED01","TED novel fold AF-L0RH10-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A191026","Maridesulfovibrio hydrothermalis"],["NCBITaxon%3A1121451","Maridesulfovibrio hydrothermalis AM13 = DSM 14728"]]},{"id":"NCBITaxon:1121898","l":"Flavobacterium subsaxonicum WB 4.1-42 = DSM 21790","na":1,"nb":2,"a":[["TED%3AAF-A0A0A2M8C2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A2M8C2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A426226","Flavobacterium subsaxonicum"],["NCBITaxon%3A1121898","Flavobacterium subsaxonicum WB 4.1-42 = DSM 21790"]]},{"id":"NCBITaxon:1121915","l":"Geoalkalibacter ferrihydriticus DSM 17813","na":1,"nb":2,"a":[["TED%3AAF-A0A0C2HTA4-F1-model_v4_TED03","TED novel fold AF-A0A0C2HTA4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A392333","Geoalkalibacter ferrihydriticus"],["NCBITaxon%3A1121915","Geoalkalibacter ferrihydriticus DSM 17813"]]},{"id":"NCBITaxon:1121923","l":"Glaciecola punicea ACAM 611","na":1,"nb":2,"a":[["TED%3AAF-H5T7Y4-F1-model_v4_TED01","TED novel fold AF-H5T7Y4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A56804","Glaciecola punicea"],["NCBITaxon%3A1121923","Glaciecola punicea ACAM 611"]]},{"id":"NCBITaxon:1121927","l":"Gordonia hirsuta DSM 44140 = NBRC 16056","na":1,"nb":2,"a":[["TED%3AAF-L7L8J6-F1-model_v4_TED01","TED highly-symmetric fold AF-L7L8J6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A53427","Gordonia hirsuta"],["NCBITaxon%3A1121927","Gordonia hirsuta DSM 44140 = NBRC 16056"]]},{"id":"NCBITaxon:1121950","l":"Hespellia stercorisuis DSM 15480","na":1,"nb":2,"a":[["TED%3AAF-A0A1M6UMY1-F1-model_v4_TED01","TED novel fold AF-A0A1M6UMY1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A180311","Hespellia stercorisuis"],["NCBITaxon%3A1121950","Hespellia stercorisuis DSM 15480"]]},{"id":"NCBITaxon:1122133","l":"Kaistia soli DSM 19436","na":1,"nb":2,"a":[["TED%3AAF-A0A1M5DFE2-F1-model_v4_TED01","TED novel fold AF-A0A1M5DFE2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A446684","Kaistia soli"],["NCBITaxon%3A1122133","Kaistia soli DSM 19436"]]},{"id":"NCBITaxon:1122169","l":"Legionella shakespearei DSM 23087","na":1,"nb":2,"a":[["TED%3AAF-A0A0W0YL59-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0W0YL59-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A45075","Legionella shakespearei"],["NCBITaxon%3A1122169","Legionella shakespearei DSM 23087"]]},{"id":"NCBITaxon:1122172","l":"","na":1,"nb":2,"a":[["Pfam%3APF28192","CRISPR-associated endoribonuclease Cas13a"]],"b":[["NCBITaxon%3A157691","Leptotrichia shahii"],["NCBITaxon%3A1122172","Leptotrichia shahii DSM 19757"]]},{"id":"NCBITaxon:1122177","l":"","na":1,"nb":2,"a":[["TED%3AAF-A0A2D0NEP3-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A2D0NEP3-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A70997","Flavilitoribacter nigricans"],["NCBITaxon%3A1122177","Flavilitoribacter nigricans DSM 23189 = NBRC 102662"]]},{"id":"NCBITaxon:1122189","l":"Malonomonas rubra DSM 5091","na":1,"nb":2,"a":[["TED%3AAF-A0A1M6IYP5-F1-model_v4_TED01","TED novel fold AF-A0A1M6IYP5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A57040","Malonomonas rubra"],["NCBITaxon%3A1122189","Malonomonas rubra DSM 5091"]]},{"id":"NCBITaxon:1122195","l":"Marinitoga hydrogenitolerans DSM 16785","na":1,"nb":2,"a":[["Pfam%3APF22362","Argonaute, middle domain, bacteria"]],"b":[["NCBITaxon%3A287990","Marinitoga hydrogenitolerans"],["NCBITaxon%3A1122195","Marinitoga hydrogenitolerans DSM 16785"]]},{"id":"NCBITaxon:1122247","l":"Mycolicibacterium hassiacum DSM 44199","na":1,"nb":2,"a":[["Pfam%3APF22422","Mannosylglycerate hydrolase MGH1-like glycoside hydrolase domain"]],"b":[["NCBITaxon%3A46351","Mycolicibacterium hassiacum"],["NCBITaxon%3A1122247","Mycolicibacterium hassiacum DSM 44199"]]},{"id":"NCBITaxon:1122252","l":"Marinospirillum celere","na":1,"nb":2,"a":[["TED%3AAF-A0A1I1DUZ3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1I1DUZ3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1122252","Marinospirillum celere"],["NCBITaxon%3A497722","Marinospirillum celere DSM 18438"]]},{"id":"NCBITaxon:1122941","l":"Pedobacter glucosidilyticus","na":1,"nb":2,"a":[["TED%3AAF-A0A0B8XLS8-F1-model_v4_TED02","TED novel fold AF-A0A0B8XLS8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1122941","Pedobacter glucosidilyticus"],["NCBITaxon%3A540906","Pedobacter glucosidilyticus DSM 23534"]]},{"id":"NCBITaxon:1122991","l":"","na":1,"nb":2,"a":[["TED%3AAF-A0A318IBD7-F1-model_v4_TED01","TED novel fold AF-A0A318IBD7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A228603","Hoylesella shahii"],["NCBITaxon%3A1122991","Hoylesella shahii DSM 15611 = JCM 12083"]]},{"id":"NCBITaxon:1123010","l":"Pseudoalteromonas denitrificans DSM 6059","na":1,"nb":2,"a":[["TED%3AAF-A0A1I1HP94-F1-model_v4_TED01","TED novel fold AF-A0A1I1HP94-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A43656","Pseudoalteromonas denitrificans"],["NCBITaxon%3A1123010","Pseudoalteromonas denitrificans DSM 6059"]]},{"id":"NCBITaxon:1123012","l":"Pseudobutyrivibrio xylanivorans DSM 14809","na":1,"nb":2,"a":[["TED%3AAF-A0A1M6KN30-F1-model_v4_TED01","TED novel fold AF-A0A1M6KN30-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A185007","Pseudobutyrivibrio xylanivorans"],["NCBITaxon%3A1123012","Pseudobutyrivibrio xylanivorans DSM 14809"]]},{"id":"NCBITaxon:1123071","l":"Rubritalea squalenifaciens DSM 18772","na":1,"nb":2,"a":[["TED%3AAF-A0A1M6J7A4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M6J7A4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A407226","Rubritalea squalenifaciens"],["NCBITaxon%3A1123071","Rubritalea squalenifaciens DSM 18772"]]},{"id":"NCBITaxon:1123078","l":"Runella zeae DSM 19591","na":1,"nb":2,"a":[["Pfam%3APF26164","Bacterial Gasdermin Family"]],"b":[["NCBITaxon%3A94255","Runella zeae"],["NCBITaxon%3A1123078","Runella zeae DSM 19591"]]},{"id":"NCBITaxon:1123272","l":"Parasphingorhabdus marina DSM 22363","na":1,"nb":2,"a":[["TED%3AAF-A0A1N6G6L0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1N6G6L0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A394732","Parasphingorhabdus marina"],["NCBITaxon%3A1123272","Parasphingorhabdus marina DSM 22363"]]},{"id":"NCBITaxon:1123282","l":"Sporobacter termitidis DSM 10068","na":1,"nb":2,"a":[["TED%3AAF-A0A1M5VTW1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M5VTW1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A44749","Sporobacter termitidis"],["NCBITaxon%3A1123282","Sporobacter termitidis DSM 10068"]]},{"id":"NCBITaxon:1123291","l":"Pelosinus propionicus DSM 13327","na":1,"nb":2,"a":[["TED%3AAF-A0A1I4HT33-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I4HT33-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A380084","Pelosinus propionicus"],["NCBITaxon%3A1123291","Pelosinus propionicus DSM 13327"]]},{"id":"NCBITaxon:1123352","l":"Tepidimicrobium xylanilyticum","na":1,"nb":2,"a":[["TED%3AAF-A0A1H3C0I4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H3C0I4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1123352","Tepidimicrobium xylanilyticum"],["NCBITaxon%3A437529","Tepidimicrobium xylanilyticum DSM 23310"]]},{"id":"NCBITaxon:1123367","l":"","na":1,"nb":2,"a":[["Pfam%3APF18566","Linalool dehydratase/isomerase"]],"b":[["NCBITaxon%3A76112","Thauera linaloolentis"],["NCBITaxon%3A1123367","Thauera linaloolentis 47Lol = DSM 12138"]]},{"id":"NCBITaxon:1123397","l":"Thiohalospira halophila DSM 15071","na":1,"nb":2,"a":[["TED%3AAF-A0A1I1UA86-F1-model_v4_TED02","TED novel fold AF-A0A1I1UA86-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A381300","Thiohalospira halophila"],["NCBITaxon%3A1123397","Thiohalospira halophila DSM 15071"]]},{"id":"NCBITaxon:1123498","l":"","na":1,"nb":2,"a":[["Pfam%3APF04205","FMN-binding domain"]],"b":[["NCBITaxon%3A184755","Vibrio ruber"],["NCBITaxon%3A1123498","Vibrio ruber DSM 16370"]]},{"id":"NCBITaxon:1124983","l":"Pseudomonas protegens CHA0","na":1,"nb":2,"a":[["Pfam%3APF18089","DAPG hydrolase PhiG domain"]],"b":[["NCBITaxon%3A380021","Pseudomonas protegens"],["NCBITaxon%3A1124983","Pseudomonas protegens CHA0"]]},{"id":"NCBITaxon:1124992","l":"Mycoplasma capricolum subsp. capripneumoniae 87001","na":2,"nb":1,"a":[["TED%3AAF-A0A1D5B5D7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1D5B5D7-F1-model_v4_TED02"],["TED%3AAF-A0A1D5B5J2-F1-model_v4_TED01","TED novel fold AF-A0A1D5B5J2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1124992","Mycoplasma capricolum subsp. capripneumoniae 87001"]]},{"id":"NCBITaxon:1125699","l":"Treponema maltophilum ATCC 51939","na":1,"nb":2,"a":[["TED%3AAF-S3JYS9-F1-model_v4_TED02","TED novel fold AF-S3JYS9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A51160","Treponema maltophilum"],["NCBITaxon%3A1125699","Treponema maltophilum ATCC 51939"]]},{"id":"NCBITaxon:1128398","l":"","na":1,"nb":2,"a":[["TED%3AAF-K0AXG8-F1-model_v4_TED02","TED highly-symmetric fold AF-K0AXG8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1556","Gottschalkia acidurici"],["NCBITaxon%3A1128398","Gottschalkia acidurici 9a"]]},{"id":"NCBITaxon:112903","l":"Propionispora vibrioides","na":1,"nb":2,"a":[["TED%3AAF-A0A1H8XC57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H8XC57-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A112903","Propionispora vibrioides"],["NCBITaxon%3A1123004","Propionispora vibrioides DSM 13305"]]},{"id":"NCBITaxon:1129374","l":"Alishewanella jeotgali KCTC 22429","na":1,"nb":2,"a":[["TED%3AAF-H3ZBB0-F1-model_v4_TED01","TED highly-symmetric fold AF-H3ZBB0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A545533","Alishewanella jeotgali"],["NCBITaxon%3A1129374","Alishewanella jeotgali KCTC 22429"]]},{"id":"NCBITaxon:1129793","l":"Paraglaciecola polaris LMG 21857","na":1,"nb":2,"a":[["TED%3AAF-K7ACJ4-F1-model_v4_TED01","TED novel fold AF-K7ACJ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A222814","Paraglaciecola polaris"],["NCBITaxon%3A1129793","Paraglaciecola polaris LMG 21857"]]},{"id":"NCBITaxon:1129897","l":"Nitrolancea hollandica Lb","na":1,"nb":2,"a":[["TED%3AAF-I4EL36-F1-model_v4_TED01","TED highly-symmetric fold AF-I4EL36-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1206749","Nitrolancea hollandica"],["NCBITaxon%3A1129897","Nitrolancea hollandica Lb"]]},{"id":"NCBITaxon:113107","l":"Streptococcus australis","na":1,"nb":2,"a":[["TED%3AAF-A0A4Q1ZLA9-F1-model_v4_TED02","TED novel fold AF-A0A4Q1ZLA9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A113107","Streptococcus australis"],["NCBITaxon%3A888833","Streptococcus australis ATCC 700641"]]},{"id":"NCBITaxon:1131730","l":"Neobacillus vireti LMG 21834","na":1,"nb":2,"a":[["TED%3AAF-W1SLV2-F1-model_v4_TED01","TED highly-symmetric fold AF-W1SLV2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A220686","Neobacillus vireti"],["NCBITaxon%3A1131730","Neobacillus vireti LMG 21834"]]},{"id":"NCBITaxon:113226","l":"Pseudocercospora musae","na":2,"nb":1,"a":[["TED%3AAF-A0A139I2J8-F1-model_v4_TED01","TED novel fold AF-A0A139I2J8-F1-model_v4_TED01"],["TED%3AAF-A0A139ICL8-F1-model_v4_TED01","TED novel fold AF-A0A139ICL8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A113226","Pseudocercospora musae"]]},{"id":"NCBITaxon:1133319","l":"Bacteroides reticulotermitis","na":1,"nb":2,"a":[["TED%3AAF-A0A840CY44-F1-model_v4_TED01","TED novel fold AF-A0A840CY44-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1133319","Bacteroides reticulotermitis"],["NCBITaxon%3A1445607","Bacteroides reticulotermitis JCM 10512"]]},{"id":"NCBITaxon:113653","l":"Geoglobus ahangari","na":2,"nb":1,"a":[["TED%3AAF-A0A7J3TIF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J3TIF4-F1-model_v4_TED01"],["TED%3AAF-A0A0F7ID24-F1-model_v4_TED02","TED novel fold AF-A0A0F7ID24-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A113653","Geoglobus ahangari"]]},{"id":"NCBITaxon:1137138","l":"Pleurotus ostreatus PC15","na":2,"nb":1,"a":[["PROSITE%3APS00956","Fungal hydrophobins signature"],["TED%3AAF-A0A067NEF3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A067NEF3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1137138","Pleurotus ostreatus PC15"]]},{"id":"NCBITaxon:1140002","l":"Enterococcus avium ATCC 14025","na":1,"nb":2,"a":[["TED%3AAF-S0RUC2-F1-model_v4_TED01","TED highly-symmetric fold AF-S0RUC2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A33945","Enterococcus avium"],["NCBITaxon%3A1140002","Enterococcus avium ATCC 14025"]]},{"id":"NCBITaxon:1141098","l":"Pseudomassariella vexata","na":2,"nb":1,"a":[["TED%3AAF-A0A1Y2E1L6-F1-model_v4_TED04","TED novel fold AF-A0A1Y2E1L6-F1-model_v4_TED04"],["TED%3AAF-A0A1Y2E2L4-F1-model_v4_TED01","TED novel fold AF-A0A1Y2E2L4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1141098","Pseudomassariella vexata"]]},{"id":"NCBITaxon:1141221","l":"Chryseobacterium taihuense","na":1,"nb":2,"a":[["TED%3AAF-A0A4U8WD57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8WD57-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1871047","Chryseobacterium sp."],["NCBITaxon%3A1141221","Chryseobacterium taihuense"]]},{"id":"NCBITaxon:114155","l":"Dichomitus squalens","na":2,"nb":1,"a":[["TED%3AAF-A0A4Q9MKV3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Q9MKV3-F1-model_v4_TED02"],["TED%3AAF-A0A4Q9PEE3-F1-model_v4_TED02","TED novel fold AF-A0A4Q9PEE3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A114155","Dichomitus squalens"]]},{"id":"NCBITaxon:114885","l":"Mycoplasmopsis maculosa","na":2,"nb":1,"a":[["TED%3AAF-A0A449B3M2-F1-model_v4_TED04","TED novel fold AF-A0A449B3M2-F1-model_v4_TED04"],["TED%3AAF-A0A449B4G6-F1-model_v4_TED03","TED novel fold AF-A0A449B4G6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A114885","Mycoplasmopsis maculosa"]]},{"id":"NCBITaxon:1149133","l":"Metapseudomonas furukawaii","na":2,"nb":1,"a":[["Pfam%3APF22632","Dihydroxybiphenyl dioxygenase BphC D1"],["PROSITE%3APS00082","Extradiol ring-cleavage dioxygenases signature"]],"b":[["NCBITaxon%3A1149133","Metapseudomonas furukawaii"]]},{"id":"NCBITaxon:1150298","l":"Fusicatenibacter saccharivorans","na":2,"nb":1,"a":[["TED%3AAF-A0A174K1Z5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A174K1Z5-F1-model_v4_TED01"],["TED%3AAF-A0A174J3Q6-F1-model_v4_TED01","TED novel fold AF-A0A174J3Q6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1150298","Fusicatenibacter saccharivorans"]]},{"id":"NCBITaxon:1153","l":"Pseudanabaena sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2W6YPX5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W6YPX5-F1-model_v4_TED01"],["TED%3AAF-A0A2W7B262-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W7B262-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1153","Pseudanabaena sp."]]},{"id":"NCBITaxon:115852","l":"Chlorobaculum thiosulfatiphilum","na":2,"nb":1,"a":[["Pfam%3APF02327","Bacteriochlorophyll A protein"],["Pfam%3APF27499","CsmB chlorosome envelope protein"]],"b":[["NCBITaxon%3A115852","Chlorobaculum thiosulfatiphilum"]]},{"id":"NCBITaxon:1158602","l":"Enterococcus raffinosus ATCC 49464","na":1,"nb":2,"a":[["TED%3AAF-R2R3Z5-F1-model_v4_TED02","TED highly-symmetric fold AF-R2R3Z5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A33945","Enterococcus avium"],["NCBITaxon%3A1158602","Enterococcus raffinosus ATCC 49464"]]},{"id":"NCBITaxon:1158610","l":"Enterococcus phoeniculicola ATCC BAA-412","na":1,"nb":2,"a":[["TED%3AAF-R3WN72-F1-model_v4_TED03","TED novel fold AF-R3WN72-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A154621","Enterococcus phoeniculicola"],["NCBITaxon%3A1158610","Enterococcus phoeniculicola ATCC BAA-412"]]},{"id":"NCBITaxon:1159556","l":"Ustilaginoidea virens","na":2,"nb":1,"a":[["Pfam%3APF06966","Protein of unknown function (DUF1295)"],["TED%3AAF-A0A1B5L5W2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1B5L5W2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1159556","Ustilaginoidea virens"]]},{"id":"NCBITaxon:115979","l":"Niallia nealsonii","na":1,"nb":2,"a":[["TED%3AAF-A0A2N0Z186-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N0Z186-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A115979","Niallia nealsonii"],["NCBITaxon%3A1202533","Niallia nealsonii AAU1"]]},{"id":"NCBITaxon:1161412","l":"Prevotella sp. ICM33","na":2,"nb":1,"a":[["TED%3AAF-X6PST8-F1-model_v4_TED01","TED novel fold AF-X6PST8-F1-model_v4_TED01"],["TED%3AAF-X6Q0D4-F1-model_v4_TED01","TED novel fold AF-X6Q0D4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1161412","Prevotella sp. ICM33"]]},{"id":"NCBITaxon:1161912","l":"Thermosipho africanus (strain H17ap60334)","na":2,"nb":1,"a":[["Pfam%3APF14487","ssDNA thymidine ADP-ribosyltransferase, DarT"],["TED%3AAF-K2PFI9-F1-model_v4_TED01","TED highly-symmetric fold AF-K2PFI9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1161912","Thermosipho africanus H17ap60334"]]},{"id":"NCBITaxon:1161919","l":"Erwinia piriflorinigrans CFBP 5888","na":1,"nb":2,"a":[["TED%3AAF-V5Z5E5-F1-model_v4_TED01","TED novel fold AF-V5Z5E5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A665097","Erwinia piriflorinigrans"],["NCBITaxon%3A1161919","Erwinia piriflorinigrans CFBP 5888"]]},{"id":"NCBITaxon:1163617","l":"","na":1,"nb":2,"a":[["TED%3AAF-S6ABZ5-F1-model_v4_TED01","TED highly-symmetric fold AF-S6ABZ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A649841","Sulfuricella denitrificans"],["NCBITaxon%3A1163617","Sulfuricella denitrificans skB26"]]},{"id":"NCBITaxon:1163748","l":"","na":1,"nb":2,"a":[["Pfam%3APF13205","Bacterial Ig-like domain"]],"b":[["NCBITaxon%3A2743","Marinobacter nauticus"],["NCBITaxon%3A1163748","Marinobacter nauticus ATCC 49840"]]},{"id":"NCBITaxon:1165092","l":"Lachnospiraceae bacterium JC7","na":2,"nb":1,"a":[["TED%3AAF-W3AP45-F1-model_v4_TED03","TED highly-symmetric fold AF-W3AP45-F1-model_v4_TED03"],["TED%3AAF-W3ATW4-F1-model_v4_TED02","TED highly-symmetric fold AF-W3ATW4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1165092","Lachnospiraceae bacterium JC7"]]},{"id":"NCBITaxon:1165861","l":"Puccinia striiformis f. sp. tritici PST-78","na":2,"nb":1,"a":[["TED%3AAF-A0A0L0VM11-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0L0VM11-F1-model_v4_TED01"],["TED%3AAF-A0A0L0VHH9-F1-model_v4_TED01","TED novel fold AF-A0A0L0VHH9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1165861","Puccinia striiformis f. sp. tritici PST-78"]]},{"id":"NCBITaxon:1166018","l":"Fibrella aestuarina BUZ 2","na":1,"nb":2,"a":[["TED%3AAF-I0K3W3-F1-model_v4_TED02","TED highly-symmetric fold AF-I0K3W3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A651143","Fibrella aestuarina"],["NCBITaxon%3A1166018","Fibrella aestuarina BUZ 2"]]},{"id":"NCBITaxon:1168035","l":"Tangfeifania diversioriginum","na":2,"nb":1,"a":[["TED%3AAF-A0A1M6L916-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M6L916-F1-model_v4_TED01"],["TED%3AAF-A0A1M6CKI2-F1-model_v4_TED02","TED novel fold AF-A0A1M6CKI2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1168035","Tangfeifania diversioriginum"]]},{"id":"NCBITaxon:1172204","l":"","na":2,"nb":1,"a":[["TED%3AAF-A0A446IBF2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A446IBF2-F1-model_v4_TED01"],["TED%3AAF-A0A446ICV2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A446ICV2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1172204","Paraclostridium sordellii 8483"]]},{"id":"NCBITaxon:1176240","l":"Vreelandella zhaodongensis","na":1,"nb":2,"a":[["Pfam%3APF07556","Protein of unknown function (DUF1538)"]],"b":[["NCBITaxon%3A3042314","Sphingomonas oryzagri"],["NCBITaxon%3A1176240","Vreelandella zhaodongensis"]]},{"id":"NCBITaxon:117681","l":"Pseudomonas gingeri","na":1,"nb":2,"a":[["TED%3AAF-A0A7Y7X9U2-F1-model_v4_TED01","TED novel fold AF-A0A7Y7X9U2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A117681","Pseudomonas gingeri"],["NCBITaxon%3A707248","Pseudomonas gingeri NCPPB 3146 = LMG 5327"]]},{"id":"NCBITaxon:1181734","l":"Escherichia coli (strain KTE188)","na":2,"nb":1,"a":[["Pfam%3APF18138","Bacterial HORMA domain family 1"],["Pfam%3APF18178","ATP nucleosidase Cap17-like, N-terminal"]],"b":[["NCBITaxon%3A1181734","Escherichia coli KTE188"]]},{"id":"NCBITaxon:1184387","l":"Mesotoga prima","na":1,"nb":2,"a":[["TED%3AAF-A0A101HJI5-F1-model_v4_TED01","TED novel fold AF-A0A101HJI5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1184387","Mesotoga prima"],["NCBITaxon%3A660470","Mesotoga prima MesG1.Ag.4.2"]]},{"id":"NCBITaxon:1185767","l":"Zunongwangia atlantica 22II14-10F7","na":1,"nb":2,"a":[["TED%3AAF-A0A1Y1SXH8-F1-model_v4_TED02","TED novel fold AF-A0A1Y1SXH8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1502297","Zunongwangia atlantica"],["NCBITaxon%3A1185767","Zunongwangia atlantica 22II14-10F7"]]},{"id":"NCBITaxon:1194083","l":"","na":1,"nb":2,"a":[["TED%3AAF-A0A077LU77-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A077LU77-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A99481","Nostocoides japonicum"],["NCBITaxon%3A1194083","Nostocoides japonicum T1-X7"]]},{"id":"NCBITaxon:1194405","l":"Pseudomonas syringae pv. actinidiae ICMP 19096","na":2,"nb":1,"a":[["TED%3AAF-A0A656JJL9-F1-model_v4_TED01","TED novel fold AF-A0A656JJL9-F1-model_v4_TED01"],["TED%3AAF-A0A656JZI9-F1-model_v4_TED01","TED novel fold AF-A0A656JZI9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1194405","Pseudomonas syringae pv. actinidiae ICMP 19096"]]},{"id":"NCBITaxon:1197174","l":"Alishewanella aestuarii B11","na":1,"nb":2,"a":[["TED%3AAF-J1Q2H4-F1-model_v4_TED02","TED novel fold AF-J1Q2H4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A453835","Alishewanella aestuarii"],["NCBITaxon%3A1197174","Alishewanella aestuarii B11"]]},{"id":"NCBITaxon:1198114","l":"Granulicella tundricola MP5ACTX9","na":1,"nb":2,"a":[["TED%3AAF-E8X149-F1-model_v4_TED01","TED highly-symmetric fold AF-E8X149-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A940615","Granulicella tundricola"],["NCBITaxon%3A1198114","Granulicella tundricola MP5ACTX9"]]},{"id":"NCBITaxon:1206781","l":"","na":1,"nb":2,"a":[["Pfam%3APF07737","Anthrax toxin lethal factor, N- and C-terminal domain"]],"b":[["NCBITaxon%3A44250","Paenibacillus alvei"],["NCBITaxon%3A1206781","Paenibacillus alvei DSM 29"]]},{"id":"NCBITaxon:1209778","l":"Salinisphaera japonica YTM-1","na":1,"nb":2,"a":[["TED%3AAF-A0A423PPR3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A423PPR3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1304270","Salinisphaera japonica"],["NCBITaxon%3A1209778","Salinisphaera japonica YTM-1"]]},{"id":"NCBITaxon:1209984","l":"Mycolicibacterium mageritense DSM 44476 = CIP 104973","na":1,"nb":2,"a":[["TED%3AAF-X5KX85-F1-model_v4_TED01","TED highly-symmetric fold AF-X5KX85-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A53462","Mycolicibacterium mageritense"],["NCBITaxon%3A1209984","Mycolicibacterium mageritense DSM 44476 = CIP 104973"]]},{"id":"NCBITaxon:1210091","l":"Nocardia ninae NBRC 108245","na":1,"nb":2,"a":[["TED%3AAF-A0A511MS59-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A511MS59-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A356145","Nocardia ninae"],["NCBITaxon%3A1210091","Nocardia ninae NBRC 108245"]]},{"id":"NCBITaxon:1210884","l":"Gemmata massiliana","na":2,"nb":1,"a":[["TED%3AAF-A0A6P2D5S8-F1-model_v4_TED01","TED novel fold AF-A0A6P2D5S8-F1-model_v4_TED01"],["TED%3AAF-A0A6P2D8H0-F1-model_v4_TED01","TED novel fold AF-A0A6P2D8H0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1210884","Gemmata massiliana"]]},{"id":"NCBITaxon:1214242","l":"Streptomyces collinus Tu 365","na":1,"nb":2,"a":[["TED%3AAF-S5VBX8-F1-model_v4_TED03","TED novel fold AF-S5VBX8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1214242","Streptomyces collinus Tu 365"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:1214928","l":"Thermus tengchongensis","na":1,"nb":2,"a":[["TED%3AAF-A0A7V4ANW9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V4ANW9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1214928","Thermus tengchongensis"],["NCBITaxon%3A1449357","Thermus tengchongensis YIM 77401"]]},{"id":"NCBITaxon:1215089","l":"Planococcus halocryophilus","na":1,"nb":2,"a":[["TED%3AAF-A0A1C7DVM0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C7DVM0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1215089","Planococcus halocryophilus"],["NCBITaxon%3A1005941","Planococcus halocryophilus Or1"]]},{"id":"NCBITaxon:1216006","l":"Vibrio aerogenes CECT 7868","na":1,"nb":2,"a":[["TED%3AAF-A0A1M5VN06-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M5VN06-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A92172","Vibrio aerogenes"],["NCBITaxon%3A1216006","Vibrio aerogenes CECT 7868"]]},{"id":"NCBITaxon:121759","l":"Paracoccidioides brasiliensis","na":2,"nb":1,"a":[["TED%3AAF-A0A1D2JC16-F1-model_v4_TED01","TED novel fold AF-A0A1D2JC16-F1-model_v4_TED01"],["TED%3AAF-A0A1E2XTS3-F1-model_v4_TED02","TED novel fold AF-A0A1E2XTS3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A121759","Paracoccidioides brasiliensis"]]},{"id":"NCBITaxon:1217641","l":"Acinetobacter baumannii NIPH 615","na":1,"nb":2,"a":[["TED%3AAF-A0A5K1MMB0-F1-model_v4_TED01","TED novel fold AF-A0A5K1MMB0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A1217641","Acinetobacter baumannii NIPH 615"]]},{"id":"NCBITaxon:1218108","l":"Empedobacter brevis NBRC 14943 = ATCC 43319","na":1,"nb":2,"a":[["TED%3AAF-A0A511NGL9-F1-model_v4_TED02","TED novel fold AF-A0A511NGL9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A247","Empedobacter brevis"],["NCBITaxon%3A1218108","Empedobacter brevis NBRC 14943 = ATCC 43319"]]},{"id":"NCBITaxon:1218591","l":"Leptospira vanthielii serovar Holland str. Waz Holland = ATCC 700522","na":1,"nb":2,"a":[["TED%3AAF-N1W7L1-F1-model_v4_TED01","TED highly-symmetric fold AF-N1W7L1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A293085","Leptospira vanthielii"],["NCBITaxon%3A1218591","Leptospira vanthielii serovar Holland str. Waz Holland = ATCC 700522"]]},{"id":"NCBITaxon:1219035","l":"Caenibius tardaugens NBRC 16725","na":1,"nb":2,"a":[["TED%3AAF-U3A023-F1-model_v4_TED01","TED highly-symmetric fold AF-U3A023-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A169176","Caenibius tardaugens"],["NCBITaxon%3A1219035","Caenibius tardaugens NBRC 16725"]]},{"id":"NCBITaxon:1219043","l":"Sphingomonas changbaiensis NBRC 104936","na":1,"nb":2,"a":[["TED%3AAF-A0A0E9MQ39-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0E9MQ39-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A529705","Sphingomonas changbaiensis"],["NCBITaxon%3A1219043","Sphingomonas changbaiensis NBRC 104936"]]},{"id":"NCBITaxon:122","l":"Gimesia maris","na":1,"nb":2,"a":[["TED%3AAF-A0A3D3R686-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D3R686-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A122","Gimesia maris"],["NCBITaxon%3A344747","Gimesia maris DSM 8797"]]},{"id":"NCBITaxon:1220207","l":"Aspergillus puulaauensis","na":2,"nb":1,"a":[["TED%3AAF-A0A7R7XXX1-F1-model_v4_TED02","TED novel fold AF-A0A7R7XXX1-F1-model_v4_TED02"],["TED%3AAF-A0A7R8AJP7-F1-model_v4_TED02","TED novel fold AF-A0A7R8AJP7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1220207","Aspergillus puulaauensis"]]},{"id":"NCBITaxon:1220575","l":"","na":1,"nb":2,"a":[["Pfam%3APF10137","CAP12/Pycsar effector protein, TIR domain"]],"b":[["NCBITaxon%3A34087","Sphingobacterium faecium"],["NCBITaxon%3A1220575","Sphingobacterium faecium NBRC 15299"]]},{"id":"NCBITaxon:1220589","l":"Lysinibacillus odysseyi 34hs-1 = NBRC 100172","na":1,"nb":2,"a":[["TED%3AAF-A0A0A3J3B5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A3J3B5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A202611","Lysinibacillus odysseyi"],["NCBITaxon%3A1220589","Lysinibacillus odysseyi 34hs-1 = NBRC 100172"]]},{"id":"NCBITaxon:1221996","l":"Bacillus thermotolerans","na":2,"nb":1,"a":[["Pfam%3APF24309","IMEF cargo Flp protein"],["Pfam%3APF04454","Encapsulating protein for peroxidase"]],"b":[["NCBITaxon%3A1221996","Bacillus thermotolerans"]]},{"id":"NCBITaxon:1223518","l":"","na":1,"nb":2,"a":[["TED%3AAF-A0A511MXV2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A511MXV2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A401558","Deinococcus cellulosilyticus"],["NCBITaxon%3A1223518","Deinococcus cellulosilyticus NBRC 106333 = KACC 11606"]]},{"id":"NCBITaxon:1227452","l":"Haloarcula amylolytica JCM 13557","na":1,"nb":2,"a":[["TED%3AAF-M0KRK7-F1-model_v4_TED01","TED highly-symmetric fold AF-M0KRK7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A396317","Haloarcula amylolytica"],["NCBITaxon%3A1227452","Haloarcula amylolytica JCM 13557"]]},{"id":"NCBITaxon:1227455","l":"Halococcus saccharolyticus DSM 5350","na":1,"nb":2,"a":[["TED%3AAF-M0MGR3-F1-model_v4_TED01","TED highly-symmetric fold AF-M0MGR3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A62319","Halococcus saccharolyticus"],["NCBITaxon%3A1227455","Halococcus saccharolyticus DSM 5350"]]},{"id":"NCBITaxon:1227466","l":"Halorubrum coriense DSM 10284","na":1,"nb":2,"a":[["TED%3AAF-M0ENX3-F1-model_v4_TED01","TED highly-symmetric fold AF-M0ENX3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A64713","Halorubrum coriense"],["NCBITaxon%3A1227466","Halorubrum coriense DSM 10284"]]},{"id":"NCBITaxon:1227485","l":"Halorubrum tebenquichense DSM 14210","na":1,"nb":2,"a":[["TED%3AAF-M0DXR8-F1-model_v4_TED01","TED highly-symmetric fold AF-M0DXR8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A119434","Halorubrum tebenquichense"],["NCBITaxon%3A1227485","Halorubrum tebenquichense DSM 14210"]]},{"id":"NCBITaxon:1227489","l":"Natrinema thermotolerans DSM 11552","na":1,"nb":2,"a":[["TED%3AAF-M0BXN9-F1-model_v4_TED01","TED highly-symmetric fold AF-M0BXN9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A121872","Natrinema thermotolerans"],["NCBITaxon%3A1227489","Natrinema thermotolerans DSM 11552"]]},{"id":"NCBITaxon:1227495","l":"Natrinema pallidum DSM 3751","na":1,"nb":2,"a":[["TED%3AAF-L9ZA08-F1-model_v4_TED01","TED highly-symmetric fold AF-L9ZA08-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A69527","Natrinema pallidum"],["NCBITaxon%3A1227495","Natrinema pallidum DSM 3751"]]},{"id":"NCBITaxon:1227498","l":"Natronococcus jeotgali DSM 18795","na":1,"nb":2,"a":[["TED%3AAF-L9WM09-F1-model_v4_TED01","TED novel fold AF-L9WM09-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A413812","Natronococcus jeotgali"],["NCBITaxon%3A1227498","Natronococcus jeotgali DSM 18795"]]},{"id":"NCBITaxon:1229493","l":"Vibrio owensii CAIM 1854 = LMG 25443","na":1,"nb":2,"a":[["TED%3AAF-A0A0C1Z7S3-F1-model_v4_TED01","TED novel fold AF-A0A0C1Z7S3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A696485","Vibrio owensii"],["NCBITaxon%3A1229493","Vibrio owensii CAIM 1854 = LMG 25443"]]},{"id":"NCBITaxon:1230456","l":"Halorubrum kocurii JCM 14978","na":1,"nb":2,"a":[["TED%3AAF-M0PB06-F1-model_v4_TED02","TED highly-symmetric fold AF-M0PB06-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A478441","Halorubrum kocurii"],["NCBITaxon%3A1230456","Halorubrum kocurii JCM 14978"]]},{"id":"NCBITaxon:1231350","l":"Acidisphaera rubrifaciens HS-AP3","na":1,"nb":2,"a":[["TED%3AAF-A0A0D6PBJ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D6PBJ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A50715","Acidisphaera rubrifaciens"],["NCBITaxon%3A1231350","Acidisphaera rubrifaciens HS-AP3"]]},{"id":"NCBITaxon:1232683","l":"Marinobacterium lacunae","na":2,"nb":1,"a":[["TED%3AAF-A0A081FTJ9-F1-model_v4_TED01","TED novel fold AF-A0A081FTJ9-F1-model_v4_TED01"],["TED%3AAF-A0A081FX50-F1-model_v4_TED01","TED novel fold AF-A0A081FX50-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1232683","Marinobacterium lacunae"]]},{"id":"NCBITaxon:1233170","l":"Paraclostridium bifermentans ATCC 19299","na":1,"nb":2,"a":[["TED%3AAF-T4VCS4-F1-model_v4_TED02","TED novel fold AF-T4VCS4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1490","Paraclostridium bifermentans"],["NCBITaxon%3A1233170","Paraclostridium bifermentans ATCC 19299"]]},{"id":"NCBITaxon:1234023","l":"uncultured bacterium (gcode 4)","na":2,"nb":1,"a":[["TED%3AAF-K1XI48-F1-model_v4_TED04","TED highly-symmetric fold AF-K1XI48-F1-model_v4_TED04"],["TED%3AAF-K2BC65-F1-model_v4_TED02","TED novel fold AF-K2BC65-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1234023","uncultured bacterium (gcode 4)"]]},{"id":"NCBITaxon:1235794","l":"Adlercreutzia caecimuris B7","na":1,"nb":2,"a":[["TED%3AAF-R9KXL3-F1-model_v4_TED01","TED highly-symmetric fold AF-R9KXL3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A671266","Adlercreutzia caecimuris"],["NCBITaxon%3A1235794","Adlercreutzia caecimuris B7"]]},{"id":"NCBITaxon:1235802","l":"Eubacterium plexicaudatum ASF492","na":2,"nb":1,"a":[["TED%3AAF-N1ZVY8-F1-model_v4_TED04","TED novel fold AF-N1ZVY8-F1-model_v4_TED04"],["TED%3AAF-N2B622-F1-model_v4_TED04","TED novel fold AF-N2B622-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1235802","Eubacterium plexicaudatum ASF492"]]},{"id":"NCBITaxon:1236960","l":"Stenotrophomonas pictorum JCM 9942","na":1,"nb":2,"a":[["TED%3AAF-A0A0R0AT88-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0R0AT88-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A86184","Stenotrophomonas pictorum"],["NCBITaxon%3A1236960","Stenotrophomonas pictorum JCM 9942"]]},{"id":"NCBITaxon:1236973","l":"","na":1,"nb":2,"a":[["Pfam%3APF03424","Carbohydrate binding domain (family 17/28)"]],"b":[["NCBITaxon%3A1411","Halalkalibacter akibai"],["NCBITaxon%3A1236973","Halalkalibacter akibai JCM 9157"]]},{"id":"NCBITaxon:1236976","l":"Paenibacillus pini JCM 16418","na":1,"nb":2,"a":[["TED%3AAF-W7YJV9-F1-model_v4_TED01","TED novel fold AF-W7YJV9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A669461","Paenibacillus pini"],["NCBITaxon%3A1236976","Paenibacillus pini JCM 16418"]]},{"id":"NCBITaxon:1237149","l":"Fulvivirga imtechensis AK7","na":1,"nb":2,"a":[["TED%3AAF-L8JJE1-F1-model_v4_TED01","TED highly-symmetric fold AF-L8JJE1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A881893","Fulvivirga imtechensis"],["NCBITaxon%3A1237149","Fulvivirga imtechensis AK7"]]},{"id":"NCBITaxon:1241978","l":"Chryseobacterium bernardetii","na":1,"nb":2,"a":[["TED%3AAF-A0A3G6T371-F1-model_v4_TED04","TED novel fold AF-A0A3G6T371-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1241978","Chryseobacterium bernardetii"],["NCBITaxon%3A1137990","Geodermatophilus arenarius"]]},{"id":"NCBITaxon:1242864","l":"","na":1,"nb":2,"a":[["TED%3AAF-S9R041-F1-model_v4_TED01","TED novel fold AF-S9R041-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A43","Cystobacter fuscus"],["NCBITaxon%3A1242864","Cystobacter fuscus DSM 2262"]]},{"id":"NCBITaxon:1245469","l":"Bradyrhizobium oligotrophicum S58","na":1,"nb":2,"a":[["TED%3AAF-M4ZLP8-F1-model_v4_TED01","TED highly-symmetric fold AF-M4ZLP8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A44255","Bradyrhizobium oligotrophicum"],["NCBITaxon%3A1245469","Bradyrhizobium oligotrophicum S58"]]},{"id":"NCBITaxon:1255043","l":"","na":1,"nb":2,"a":[["Pfam%3APF02335","Cytochrome c552"]],"b":[["NCBITaxon%3A186931","Thioalkalivibrio nitratireducens"],["NCBITaxon%3A1255043","Thioalkalivibrio nitratireducens DSM 14787"]]},{"id":"NCBITaxon:1259217","l":"Cryobacterium zongtaii","na":2,"nb":1,"a":[["TED%3AAF-A0A2S3ZK52-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S3ZK52-F1-model_v4_TED01"],["TED%3AAF-A0A2S3Z5E3-F1-model_v4_TED01","TED novel fold AF-A0A2S3Z5E3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1259217","Cryobacterium zongtaii"]]},{"id":"NCBITaxon:1261634","l":"Roseburia sp. 499","na":2,"nb":1,"a":[["TED%3AAF-A0A1Q9JP08-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q9JP08-F1-model_v4_TED02"],["TED%3AAF-A0A1Q9JYK0-F1-model_v4_TED03","TED novel fold AF-A0A1Q9JYK0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1261634","Roseburia sp. 499"]]},{"id":"NCBITaxon:1262691","l":"Akkermansia sp. CAG:344","na":2,"nb":1,"a":[["TED%3AAF-R7DY31-F1-model_v4_TED02","TED highly-symmetric fold AF-R7DY31-F1-model_v4_TED02"],["TED%3AAF-R7E0J5-F1-model_v4_TED04","TED highly-symmetric fold AF-R7E0J5-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1262691","Akkermansia sp. CAG:344"]]},{"id":"NCBITaxon:1262700","l":"Anaerotruncus sp. CAG:528","na":2,"nb":1,"a":[["TED%3AAF-R5XBN3-F1-model_v4_TED03","TED highly-symmetric fold AF-R5XBN3-F1-model_v4_TED03"],["TED%3AAF-R5XDH2-F1-model_v4_TED02","TED highly-symmetric fold AF-R5XDH2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262700","Anaerotruncus sp. CAG:528"]]},{"id":"NCBITaxon:1262703","l":"Anaerotruncus sp. CAG:390","na":2,"nb":1,"a":[["TED%3AAF-R7ESX1-F1-model_v4_TED02","TED highly-symmetric fold AF-R7ESX1-F1-model_v4_TED02"],["TED%3AAF-R7EJR4-F1-model_v4_TED02","TED novel fold AF-R7EJR4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262703","Anaerotruncus sp. CAG:390"]]},{"id":"NCBITaxon:1262744","l":"Bacteroides sp. CAG:633","na":2,"nb":1,"a":[["TED%3AAF-R6FBQ9-F1-model_v4_TED02","TED novel fold AF-R6FBQ9-F1-model_v4_TED02"],["TED%3AAF-R6FFZ7-F1-model_v4_TED05","TED novel fold AF-R6FFZ7-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1262744","Bacteroides sp. CAG:633"]]},{"id":"NCBITaxon:1262751","l":"Bacteroides sp. CAG:770","na":2,"nb":1,"a":[["TED%3AAF-R6STY7-F1-model_v4_TED01","TED highly-symmetric fold AF-R6STY7-F1-model_v4_TED01"],["TED%3AAF-R6SUE1-F1-model_v4_TED03","TED novel fold AF-R6SUE1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1262751","Bacteroides sp. CAG:770"]]},{"id":"NCBITaxon:1262771","l":"Clostridium sp. CAG:1193","na":2,"nb":1,"a":[["TED%3AAF-R5ISV7-F1-model_v4_TED01","TED novel fold AF-R5ISV7-F1-model_v4_TED01"],["TED%3AAF-R5J8V2-F1-model_v4_TED01","TED novel fold AF-R5J8V2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262771","Clostridium sp. CAG:1193"]]},{"id":"NCBITaxon:1262800","l":"Clostridium sp. CAG:356","na":2,"nb":1,"a":[["TED%3AAF-R6Z6X7-F1-model_v4_TED02","TED novel fold AF-R6Z6X7-F1-model_v4_TED02"],["TED%3AAF-R7A358-F1-model_v4_TED03","TED novel fold AF-R7A358-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1262800","Clostridium sp. CAG:356"]]},{"id":"NCBITaxon:1262802","l":"Clostridium sp. CAG:411","na":2,"nb":1,"a":[["TED%3AAF-R7HU34-F1-model_v4_TED02","TED highly-symmetric fold AF-R7HU34-F1-model_v4_TED02"],["TED%3AAF-R7HXD9-F1-model_v4_TED02","TED novel fold AF-R7HXD9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262802","Clostridium sp. CAG:411"]]},{"id":"NCBITaxon:1262808","l":"Clostridium sp. CAG:448","na":2,"nb":1,"a":[["TED%3AAF-R6SK23-F1-model_v4_TED02","TED highly-symmetric fold AF-R6SK23-F1-model_v4_TED02"],["TED%3AAF-R6T3L5-F1-model_v4_TED01","TED highly-symmetric fold AF-R6T3L5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262808","Clostridium sp. CAG:448"]]},{"id":"NCBITaxon:1262812","l":"Clostridium sp. CAG:470","na":2,"nb":1,"a":[["TED%3AAF-R7FGB6-F1-model_v4_TED01","TED novel fold AF-R7FGB6-F1-model_v4_TED01"],["TED%3AAF-R7FJT9-F1-model_v4_TED02","TED novel fold AF-R7FJT9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262812","Clostridium sp. CAG:470"]]},{"id":"NCBITaxon:1262827","l":"Clostridium sp. CAG:609","na":2,"nb":1,"a":[["TED%3AAF-R7P5H2-F1-model_v4_TED01","TED highly-symmetric fold AF-R7P5H2-F1-model_v4_TED01"],["TED%3AAF-R7P882-F1-model_v4_TED02","TED highly-symmetric fold AF-R7P882-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262827","Clostridium sp. CAG:609"]]},{"id":"NCBITaxon:1262830","l":"Clostridium sp. CAG:632","na":2,"nb":1,"a":[["TED%3AAF-R5KA46-F1-model_v4_TED01","TED highly-symmetric fold AF-R5KA46-F1-model_v4_TED01"],["TED%3AAF-R5K3X5-F1-model_v4_TED02","TED novel fold AF-R5K3X5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262830","Clostridium sp. CAG:632"]]},{"id":"NCBITaxon:1262838","l":"Clostridium sp. CAG:768","na":2,"nb":1,"a":[["TED%3AAF-R7HV93-F1-model_v4_TED02","TED novel fold AF-R7HV93-F1-model_v4_TED02"],["TED%3AAF-R7HX21-F1-model_v4_TED03","TED novel fold AF-R7HX21-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1262838","Clostridium sp. CAG:768"]]},{"id":"NCBITaxon:1262845","l":"Clostridium sp. CAG:91","na":2,"nb":1,"a":[["TED%3AAF-R6W1R6-F1-model_v4_TED02","TED highly-symmetric fold AF-R6W1R6-F1-model_v4_TED02"],["TED%3AAF-R6W8U4-F1-model_v4_TED03","TED novel fold AF-R6W8U4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1262845","Clostridium sp. CAG:91"]]},{"id":"NCBITaxon:1262865","l":"Coraliomargarita sp. CAG:312","na":2,"nb":1,"a":[["TED%3AAF-R7L8G0-F1-model_v4_TED02","TED highly-symmetric fold AF-R7L8G0-F1-model_v4_TED02"],["TED%3AAF-R7LBH8-F1-model_v4_TED01","TED highly-symmetric fold AF-R7LBH8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262865","Coraliomargarita sp. CAG:312"]]},{"id":"NCBITaxon:1262867","l":"Corallococcus sp. CAG:1435","na":2,"nb":1,"a":[["TED%3AAF-R5W403-F1-model_v4_TED07","TED highly-symmetric fold AF-R5W403-F1-model_v4_TED07"],["TED%3AAF-R5W403-F1-model_v4_TED08","TED highly-symmetric fold AF-R5W403-F1-model_v4_TED08"]],"b":[["NCBITaxon%3A1262867","Corallococcus sp. CAG:1435"]]},{"id":"NCBITaxon:1262893","l":"Eubacterium sp. CAG:786","na":2,"nb":1,"a":[["TED%3AAF-R5GYM3-F1-model_v4_TED01","TED highly-symmetric fold AF-R5GYM3-F1-model_v4_TED01"],["TED%3AAF-R5GHZ1-F1-model_v4_TED01","TED novel fold AF-R5GHZ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262893","Eubacterium sp. CAG:786"]]},{"id":"NCBITaxon:1262899","l":"Fusobacterium sp. CAG:439","na":2,"nb":1,"a":[["TED%3AAF-R7J972-F1-model_v4_TED02","TED novel fold AF-R7J972-F1-model_v4_TED02"],["TED%3AAF-R7JDH5-F1-model_v4_TED01","TED novel fold AF-R7JDH5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262899","Fusobacterium sp. CAG:439"]]},{"id":"NCBITaxon:1262901","l":"Fusobacterium sp. CAG:815","na":2,"nb":1,"a":[["TED%3AAF-R7LTJ5-F1-model_v4_TED01","TED novel fold AF-R7LTJ5-F1-model_v4_TED01"],["TED%3AAF-R7M016-F1-model_v4_TED03","TED novel fold AF-R7M016-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1262901","Fusobacterium sp. CAG:815"]]},{"id":"NCBITaxon:1262906","l":"Mycoplasma sp. CAG:776","na":2,"nb":1,"a":[["TED%3AAF-R7NIP8-F1-model_v4_TED02","TED highly-symmetric fold AF-R7NIP8-F1-model_v4_TED02"],["TED%3AAF-R7NIJ0-F1-model_v4_TED01","TED novel fold AF-R7NIJ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262906","Mycoplasma sp. CAG:776"]]},{"id":"NCBITaxon:1262908","l":"Mycoplasma sp. CAG:956","na":2,"nb":1,"a":[["TED%3AAF-R5MTW9-F1-model_v4_TED02","TED novel fold AF-R5MTW9-F1-model_v4_TED02"],["TED%3AAF-R5MUD8-F1-model_v4_TED02","TED novel fold AF-R5MUD8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262908","Mycoplasma sp. CAG:956"]]},{"id":"NCBITaxon:1262913","l":"Parabacteroides sp. CAG:409","na":2,"nb":1,"a":[["TED%3AAF-R7J556-F1-model_v4_TED01","TED highly-symmetric fold AF-R7J556-F1-model_v4_TED01"],["TED%3AAF-R7JFU8-F1-model_v4_TED01","TED highly-symmetric fold AF-R7JFU8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262913","Parabacteroides sp. CAG:409"]]},{"id":"NCBITaxon:1262918","l":"Prevotella sp. CAG:1058","na":2,"nb":1,"a":[["TED%3AAF-R5CHC2-F1-model_v4_TED02","TED highly-symmetric fold AF-R5CHC2-F1-model_v4_TED02"],["TED%3AAF-R5CMC1-F1-model_v4_TED02","TED highly-symmetric fold AF-R5CMC1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262918","Prevotella sp. CAG:1058"]]},{"id":"NCBITaxon:1262919","l":"Prevotella sp. CAG:1092","na":2,"nb":1,"a":[["TED%3AAF-R5P475-F1-model_v4_TED02","TED novel fold AF-R5P475-F1-model_v4_TED02"],["TED%3AAF-R5P942-F1-model_v4_TED02","TED novel fold AF-R5P942-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262919","Prevotella sp. CAG:1092"]]},{"id":"NCBITaxon:1262955","l":"Ruminococcus sp. CAG:353","na":2,"nb":1,"a":[["TED%3AAF-R7KSA2-F1-model_v4_TED02","TED highly-symmetric fold AF-R7KSA2-F1-model_v4_TED02"],["TED%3AAF-R7L073-F1-model_v4_TED01","TED novel fold AF-R7L073-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262955","Ruminococcus sp. CAG:353"]]},{"id":"NCBITaxon:1262987","l":"Proteobacteria bacterium CAG:495","na":2,"nb":1,"a":[["TED%3AAF-R5R8H4-F1-model_v4_TED01","TED highly-symmetric fold AF-R5R8H4-F1-model_v4_TED01"],["TED%3AAF-R5QQZ0-F1-model_v4_TED02","TED novel fold AF-R5QQZ0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262987","Proteobacteria bacterium CAG:495"]]},{"id":"NCBITaxon:1262996","l":"Firmicutes bacterium CAG:631","na":2,"nb":1,"a":[["TED%3AAF-R5V429-F1-model_v4_TED01","TED highly-symmetric fold AF-R5V429-F1-model_v4_TED01"],["TED%3AAF-R5VP30-F1-model_v4_TED02","TED novel fold AF-R5VP30-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262996","Firmicutes bacterium CAG:631"]]},{"id":"NCBITaxon:1263072","l":"Dialister invisus CAG:218","na":2,"nb":1,"a":[["TED%3AAF-R5SLC0-F1-model_v4_TED01","TED highly-symmetric fold AF-R5SLC0-F1-model_v4_TED01"],["TED%3AAF-R5SJI2-F1-model_v4_TED01","TED novel fold AF-R5SJI2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1263072","Dialister invisus CAG:218"]]},{"id":"NCBITaxon:1264554","l":"Mycoplasmopsis meleagridis ATCC 25294","na":1,"nb":2,"a":[["TED%3AAF-A0A0F5H293-F1-model_v4_TED02","TED novel fold AF-A0A0F5H293-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29561","Mycoplasmopsis meleagridis"],["NCBITaxon%3A1264554","Mycoplasmopsis meleagridis ATCC 25294"]]},{"id":"NCBITaxon:1266829","l":"Kribbella albertanoniae","na":2,"nb":1,"a":[["TED%3AAF-A0A4R4Q3H2-F1-model_v4_TED01","TED novel fold AF-A0A4R4Q3H2-F1-model_v4_TED01"],["TED%3AAF-A0A4V2XRY1-F1-model_v4_TED01","TED novel fold AF-A0A4V2XRY1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1266829","Kribbella albertanoniae"]]},{"id":"NCBITaxon:1268635","l":"Legionella oakridgensis ATCC 33761 = DSM 21215","na":1,"nb":2,"a":[["TED%3AAF-W0BCQ3-F1-model_v4_TED02","TED highly-symmetric fold AF-W0BCQ3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29423","Legionella oakridgensis"],["NCBITaxon%3A1268635","Legionella oakridgensis ATCC 33761 = DSM 21215"]]},{"id":"NCBITaxon:1276218","l":"Spiroplasma platyhelix PALS-1","na":1,"nb":2,"a":[["TED%3AAF-A0A846U5R9-F1-model_v4_TED04","TED novel fold AF-A0A846U5R9-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A301585","Spiroplasma platyhelix"],["NCBITaxon%3A1276218","Spiroplasma platyhelix PALS-1"]]},{"id":"NCBITaxon:1276220","l":"Spiroplasma taiwanense CT-1","na":1,"nb":2,"a":[["TED%3AAF-S5LY17-F1-model_v4_TED02","TED novel fold AF-S5LY17-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2145","Spiroplasma taiwanense"],["NCBITaxon%3A1276220","Spiroplasma taiwanense CT-1"]]},{"id":"NCBITaxon:1276221","l":"Spiroplasma diminutum CUAS-1","na":1,"nb":2,"a":[["TED%3AAF-S5M2Q1-F1-model_v4_TED01","TED novel fold AF-S5M2Q1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A216936","Spiroplasma diminutum"],["NCBITaxon%3A1276221","Spiroplasma diminutum CUAS-1"]]},{"id":"NCBITaxon:1276257","l":"Spiroplasma sabaudiense Ar-1343","na":1,"nb":2,"a":[["TED%3AAF-W6A9B9-F1-model_v4_TED02","TED novel fold AF-W6A9B9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A216944","Spiroplasma sabaudiense"],["NCBITaxon%3A1276257","Spiroplasma sabaudiense Ar-1343"]]},{"id":"NCBITaxon:1276258","l":"Spiroplasma apis B31","na":1,"nb":2,"a":[["TED%3AAF-V5RIT7-F1-model_v4_TED01","TED novel fold AF-V5RIT7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2137","Spiroplasma apis"],["NCBITaxon%3A1276258","Spiroplasma apis B31"]]},{"id":"NCBITaxon:1280954","l":"Hyphomonas polymorpha PS728","na":1,"nb":2,"a":[["TED%3AAF-A0A062VEK9-F1-model_v4_TED02","TED novel fold AF-A0A062VEK9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A74319","Hyphomonas polymorpha"],["NCBITaxon%3A1280954","Hyphomonas polymorpha PS728"]]},{"id":"NCBITaxon:1281278","l":"Escherichia coli (strain UMEA 4076-1)","na":2,"nb":1,"a":[["Pfam%3APF25164","Competence protein CoiA, N-terminal domain"],["Pfam%3APF14236","Druantia protein DruA"]],"b":[["NCBITaxon%3A1281278","Escherichia coli UMEA 4076-1"]]},{"id":"NCBITaxon:1284222","l":"Candidatus Scalindua japonica","na":2,"nb":1,"a":[["TED%3AAF-A0A286TW35-F1-model_v4_TED01","TED novel fold AF-A0A286TW35-F1-model_v4_TED01"],["TED%3AAF-A0A286U3P4-F1-model_v4_TED02","TED novel fold AF-A0A286U3P4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1284222","Candidatus Scalindua japonica"]]},{"id":"NCBITaxon:1286171","l":"Peptoclostridium acidaminophilum DSM 3953","na":1,"nb":2,"a":[["TED%3AAF-W8TCY3-F1-model_v4_TED02","TED highly-symmetric fold AF-W8TCY3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1731","Peptoclostridium acidaminophilum"],["NCBITaxon%3A1286171","Peptoclostridium acidaminophilum DSM 3953"]]},{"id":"NCBITaxon:1287","l":"","na":1,"nb":2,"a":[["Pfam%3APF25533","Lysostaphin, N-terminal domain"]],"b":[["NCBITaxon%3A1286","Staphylococcus simulans"],["NCBITaxon%3A1287","Staphylococcus simulans bv. staphylolyticus"]]},{"id":"NCBITaxon:1287120","l":"Mesorhizobium sp. L2C089B000","na":2,"nb":1,"a":[["TED%3AAF-V7GX33-F1-model_v4_TED03","TED highly-symmetric fold AF-V7GX33-F1-model_v4_TED03"],["TED%3AAF-V7GS75-F1-model_v4_TED02","TED novel fold AF-V7GS75-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1287120","Mesorhizobium sp. L2C089B000"]]},{"id":"NCBITaxon:128803","l":"Planococcus sp. (strain 'SOS Orange')","na":2,"nb":1,"a":[["Pfam%3APF02449","Beta-galactosidase"],["Pfam%3APF08532","Beta-galactosidase trimerisation domain"]],"b":[["NCBITaxon%3A128803","Planococcus sp. 'SOS Orange'"]]},{"id":"NCBITaxon:1288313","l":"Gluconobacter oxydans DSM 3504","na":1,"nb":2,"a":[["TED%3AAF-A0A067Z3R2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A067Z3R2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1288313","Gluconobacter oxydans DSM 3504"],["NCBITaxon%3A1876758","Gluconobacter sp."]]},{"id":"NCBITaxon:1288362","l":"Actinoplanes sp. ATCC 53533","na":2,"nb":1,"a":[["TED%3AAF-A0A428XH31-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A428XH31-F1-model_v4_TED01"],["TED%3AAF-A0A428XQY1-F1-model_v4_TED01","TED novel fold AF-A0A428XQY1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1288362","Actinoplanes sp. ATCC 53533"]]},{"id":"NCBITaxon:1288385","l":"Yersinia pekkanenii","na":1,"nb":2,"a":[["TED%3AAF-A0A0T9R6K6-F1-model_v4_TED01","TED novel fold AF-A0A0T9R6K6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1288385","Yersinia pekkanenii"],["NCBITaxon%3A687899","Yersinia pekkanenii DSM 22769"]]},{"id":"NCBITaxon:1291052","l":"Lacticaseibacillus sharpeae JCM 1186 = DSM 20505","na":1,"nb":2,"a":[["TED%3AAF-A0A0R1ZZL8-F1-model_v4_TED01","TED novel fold AF-A0A0R1ZZL8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1626","Lacticaseibacillus sharpeae"],["NCBITaxon%3A1291052","Lacticaseibacillus sharpeae JCM 1186 = DSM 20505"]]},{"id":"NCBITaxon:1291742","l":"Paucilactobacillus hokkaidonensis JCM 18461","na":1,"nb":2,"a":[["TED%3AAF-A0A0A1GYI0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A1GYI0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1193095","Paucilactobacillus hokkaidonensis"],["NCBITaxon%3A1291742","Paucilactobacillus hokkaidonensis JCM 18461"]]},{"id":"NCBITaxon:1292036","l":"","na":1,"nb":2,"a":[["TED%3AAF-T0CWZ2-F1-model_v4_TED01","TED highly-symmetric fold AF-T0CWZ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1505","Paraclostridium sordellii"],["NCBITaxon%3A1292036","Paraclostridium sordellii ATCC 9714"]]},{"id":"NCBITaxon:1292037","l":"Amycolatopsis vancoresmycina DSM 44592","na":1,"nb":2,"a":[["TED%3AAF-R1ICU3-F1-model_v4_TED01","TED highly-symmetric fold AF-R1ICU3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A208444","Amycolatopsis vancoresmycina"],["NCBITaxon%3A1292037","Amycolatopsis vancoresmycina DSM 44592"]]},{"id":"NCBITaxon:1293890","l":"Thalassospira alkalitolerans","na":2,"nb":1,"a":[["TED%3AAF-A0A1Y2L7Y4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y2L7Y4-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2LDQ3-F1-model_v4_TED01","TED novel fold AF-A0A1Y2LDQ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1293890","Thalassospira alkalitolerans"]]},{"id":"NCBITaxon:1295609","l":"Thermodesulfobacterium geofontis","na":1,"nb":2,"a":[["TED%3AAF-A0A2N7PMV0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2N7PMV0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1295609","Thermodesulfobacterium geofontis"],["NCBITaxon%3A795359","Thermodesulfobacterium geofontis OPF15"]]},{"id":"NCBITaxon:1296109","l":"Cryptococcus gattii CA1280","na":2,"nb":1,"a":[["TED%3AAF-A0A0D0TFT0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D0TFT0-F1-model_v4_TED01"],["TED%3AAF-A0A0D0VLQ5-F1-model_v4_TED01","TED novel fold AF-A0A0D0VLQ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1296109","Cryptococcus bacillisporus CA1280"]]},{"id":"NCBITaxon:12968","l":"Blastocystis hominis","na":1,"nb":2,"a":[["TED%3AAF-D8LUQ2-F1-model_v4_TED02","TED novel fold AF-D8LUQ2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A12968","Blastocystis hominis"],["NCBITaxon%3A478820","Blastocystis sp. ATCC 50177/Nand II"]]},{"id":"NCBITaxon:1298595","l":"Veillonella rogosae JCM 15642","na":1,"nb":2,"a":[["TED%3AAF-A0A2S7YXG0-F1-model_v4_TED02","TED novel fold AF-A0A2S7YXG0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A423477","Veillonella rogosae"],["NCBITaxon%3A1298595","Veillonella rogosae JCM 15642"]]},{"id":"NCBITaxon:1298609","l":"Psychrobacter sp. JCM 18901","na":2,"nb":1,"a":[["TED%3AAF-X0QEB9-F1-model_v4_TED01","TED novel fold AF-X0QEB9-F1-model_v4_TED01"],["TED%3AAF-X0RVB5-F1-model_v4_TED02","TED novel fold AF-X0RVB5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1298609","Psychrobacter sp. JCM 18901"]]},{"id":"NCBITaxon:1300164","l":"Methanobrevibacter arboriphilus JCM 13429 = DSM 1125","na":1,"nb":2,"a":[["TED%3AAF-A0A1V6N2T2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V6N2T2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39441","Methanobrevibacter arboriphilus"],["NCBITaxon%3A1300164","Methanobrevibacter arboriphilus JCM 13429 = DSM 1125"]]},{"id":"NCBITaxon:1300341","l":"Croceitalea dokdonensis DOKDO 023","na":1,"nb":2,"a":[["TED%3AAF-A0A0P7AXM5-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A0P7AXM5-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A346188","Croceitalea dokdonensis"],["NCBITaxon%3A1300341","Croceitalea dokdonensis DOKDO 023"]]},{"id":"NCBITaxon:1300345","l":"Lysobacter dokdonensis DS-58","na":1,"nb":2,"a":[["TED%3AAF-A0A0A2WHH1-F1-model_v4_TED02","TED novel fold AF-A0A0A2WHH1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1300345","Lysobacter dokdonensis DS-58"],["NCBITaxon%3A414050","Noviluteimonas dokdonensis"]]},{"id":"NCBITaxon:1300350","l":"Sulfitobacter donghicola DSW-25 = KCTC 12864 = JCM 14565","na":1,"nb":2,"a":[["TED%3AAF-A0A073IE13-F1-model_v4_TED01","TED novel fold AF-A0A073IE13-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A421000","Sulfitobacter donghicola"],["NCBITaxon%3A1300350","Sulfitobacter donghicola DSW-25 = KCTC 12864 = JCM 14565"]]},{"id":"NCBITaxon:1302250","l":"Secundilactobacillus silagei JCM 19001","na":1,"nb":2,"a":[["TED%3AAF-A0A1Z5IHU1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z5IHU1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1293415","Secundilactobacillus silagei"],["NCBITaxon%3A1302250","Secundilactobacillus silagei JCM 19001"]]},{"id":"NCBITaxon:1302730","l":"Gracilimonas mengyeensis","na":2,"nb":1,"a":[["TED%3AAF-A0A521AK96-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A521AK96-F1-model_v4_TED03"],["TED%3AAF-A0A521C5Z7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521C5Z7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1302730","Gracilimonas mengyeensis"]]},{"id":"NCBITaxon:1305827","l":"Streptomyces sp. KhCrAH-43","na":2,"nb":1,"a":[["TED%3AAF-A0A327TZE8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A327TZE8-F1-model_v4_TED03"],["TED%3AAF-A0A327TZL0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A327TZL0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1305827","Streptomyces sp. KhCrAH-43"]]},{"id":"NCBITaxon:1307442","l":"Fusobacterium hwasookii ChDC F174","na":1,"nb":2,"a":[["TED%3AAF-A0A0S2ZR09-F1-model_v4_TED04","TED novel fold AF-A0A0S2ZR09-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1583098","Fusobacterium hwasookii"],["NCBITaxon%3A1307442","Fusobacterium hwasookii ChDC F174"]]},{"id":"NCBITaxon:1307942","l":"","na":1,"nb":2,"a":[["Pfam%3APF03500","Cellulose synthase subunit D"]],"b":[["NCBITaxon%3A1053551","Komagataeibacter sucrofermentans"],["NCBITaxon%3A1307942","Komagataeibacter sucrofermentans DSM 15973"]]},{"id":"NCBITaxon:1313172","l":"","na":1,"nb":2,"a":[["TED%3AAF-A0A6C7EH59-F1-model_v4_TED02","TED novel fold AF-A0A6C7EH59-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A467094","Ilumatobacter coccineus"],["NCBITaxon%3A1313172","Ilumatobacter coccineus YM16-304"]]},{"id":"NCBITaxon:1313304","l":"Chitinivibrio alkaliphilus ACht1","na":1,"nb":2,"a":[["TED%3AAF-U7D985-F1-model_v4_TED02","TED highly-symmetric fold AF-U7D985-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1505232","Chitinivibrio alkaliphilus"],["NCBITaxon%3A1313304","Chitinivibrio alkaliphilus ACht1"]]},{"id":"NCBITaxon:1320","l":"Streptococcus sp. group G","na":2,"nb":1,"a":[["Pfam%3APF17573","GA-like domain"],["Pfam%3APF01378","B domain"]],"b":[["NCBITaxon%3A1320","Streptococcus sp. 'group G'"]]},{"id":"NCBITaxon:1321815","l":"Treponema lecithinolyticum ATCC 700332","na":1,"nb":2,"a":[["TED%3AAF-U2LXC9-F1-model_v4_TED01","TED highly-symmetric fold AF-U2LXC9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A53418","Treponema lecithinolyticum"],["NCBITaxon%3A1321815","Treponema lecithinolyticum ATCC 700332"]]},{"id":"NCBITaxon:1323","l":"Faecalicoccus pleomorphus","na":1,"nb":2,"a":[["TED%3AAF-A0A3E3DXS9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3E3DXS9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1323","Faecalicoccus pleomorphus"],["NCBITaxon%3A1123313","Faecalicoccus pleomorphus DSM 20574"]]},{"id":"NCBITaxon:132476","l":"Pseudomonas kilonensis","na":1,"nb":2,"a":[["TED%3AAF-A0A1H5FUT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H5FUT8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A132476","Pseudomonas kilonensis"],["NCBITaxon%3A1173480","Pseudomonas kilonensis CBLA-66"]]},{"id":"NCBITaxon:1324956","l":"Melghiribacillus thermohalophilus","na":2,"nb":1,"a":[["TED%3AAF-A0A4R3NCD2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4R3NCD2-F1-model_v4_TED02"],["TED%3AAF-A0A4V2V194-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4V2V194-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1324956","Melghiribacillus thermohalophilus"]]},{"id":"NCBITaxon:1329909","l":"Sphingobium quisquiliarum P25","na":1,"nb":2,"a":[["TED%3AAF-T0H4F7-F1-model_v4_TED01","TED highly-symmetric fold AF-T0H4F7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A538379","Sphingobium quisquiliarum"],["NCBITaxon%3A1329909","Sphingobium quisquiliarum P25"]]},{"id":"NCBITaxon:1331007","l":"Agarivorans albus MKT 106","na":1,"nb":2,"a":[["TED%3AAF-R9PH52-F1-model_v4_TED02","TED highly-symmetric fold AF-R9PH52-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A182262","Agarivorans albus"],["NCBITaxon%3A1331007","Agarivorans albus MKT 106"]]},{"id":"NCBITaxon:1331668","l":"Streptomyces sparsogenes DSM 40356","na":1,"nb":2,"a":[["TED%3AAF-A0A1R1SPZ2-F1-model_v4_TED01","TED novel fold AF-A0A1R1SPZ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A67365","Streptomyces sparsogenes"],["NCBITaxon%3A1331668","Streptomyces sparsogenes DSM 40356"]]},{"id":"NCBITaxon:1331704","l":"uncultured Aureispira sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A6S6SCG7-F1-model_v4_TED01","TED novel fold AF-A0A6S6SCG7-F1-model_v4_TED01"],["TED%3AAF-A0A6S6THH5-F1-model_v4_TED01","TED novel fold AF-A0A6S6THH5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1331704","uncultured Aureispira sp."]]},{"id":"NCBITaxon:133190","l":"Sphingomonas sp. SRS2","na":2,"nb":1,"a":[["TED%3AAF-A0A0F5PEN9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F5PEN9-F1-model_v4_TED01"],["TED%3AAF-A0A0F5PFK4-F1-model_v4_TED02","TED novel fold AF-A0A0F5PFK4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A133190","Sphingomonas sp. SRS2"]]},{"id":"NCBITaxon:13335","l":"Anaerobiospirillum succiniciproducens","na":1,"nb":2,"a":[["PROSITE%3APS00532","Phosphoenolpyruvate carboxykinase (ATP) signature"]],"b":[["NCBITaxon%3A13335","Anaerobiospirillum succiniciproducens"],["NCBITaxon%3A1120988","Anaerobiospirillum succiniciproducens DSM 6400"]]},{"id":"NCBITaxon:1333996","l":"Variibacter gotjawalensis","na":2,"nb":1,"a":[["TED%3AAF-A0A0S3PVZ4-F1-model_v4_TED01","TED novel fold AF-A0A0S3PVZ4-F1-model_v4_TED01"],["TED%3AAF-A0A0S3PYV0-F1-model_v4_TED02","TED novel fold AF-A0A0S3PYV0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1333996","Variibacter gotjawalensis"]]},{"id":"NCBITaxon:1335613","l":"Gordonibacter urolithinfaciens","na":2,"nb":1,"a":[["TED%3AAF-A0A6N8II72-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8II72-F1-model_v4_TED01"],["TED%3AAF-A0A423UK16-F1-model_v4_TED02","TED novel fold AF-A0A423UK16-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1335613","Gordonibacter urolithinfaciens"]]},{"id":"NCBITaxon:1336748","l":"Spiroplasma monobiae MQ-1","na":1,"nb":2,"a":[["TED%3AAF-A0A2K9LUI3-F1-model_v4_TED04","TED novel fold AF-A0A2K9LUI3-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2136","Spiroplasma monobiae"],["NCBITaxon%3A1336748","Spiroplasma monobiae MQ-1"]]},{"id":"NCBITaxon:1336749","l":"Spiroplasma floricola 23-6","na":1,"nb":2,"a":[["TED%3AAF-A0A2K8SEV4-F1-model_v4_TED03","TED novel fold AF-A0A2K8SEV4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A216937","Spiroplasma floricola"],["NCBITaxon%3A1336749","Spiroplasma floricola 23-6"]]},{"id":"NCBITaxon:1337886","l":"Sporomusa sphaeroides DSM 2875","na":1,"nb":2,"a":[["TED%3AAF-A0A1U7MJ00-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1U7MJ00-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A47679","Sporomusa sphaeroides"],["NCBITaxon%3A1337886","Sporomusa sphaeroides DSM 2875"]]},{"id":"NCBITaxon:134","l":"Methylocystis parvus","na":1,"nb":2,"a":[["TED%3AAF-A0A6B8M6B0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6B8M6B0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A134","Methylocystis parvus"],["NCBITaxon%3A1134912","Methylocystis parvus OBBP"]]},{"id":"NCBITaxon:1341156","l":"Ruminococcus albus SY3","na":2,"nb":1,"a":[["TED%3AAF-A0A011VVU4-F1-model_v4_TED01","TED novel fold AF-A0A011VVU4-F1-model_v4_TED01"],["TED%3AAF-A0A011WN20-F1-model_v4_TED01","TED novel fold AF-A0A011WN20-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1341156","Hominimerdicola alba SY3"]]},{"id":"NCBITaxon:1343740","l":"Streptomyces rapamycinicus NRRL 5491","na":1,"nb":2,"a":[["Pfam%3APF21168","Chorismatase FkbO/Hyg5-like, N-terminal"]],"b":[["NCBITaxon%3A1226757","Streptomyces rapamycinicus"],["NCBITaxon%3A1343740","Streptomyces rapamycinicus NRRL 5491"]]},{"id":"NCBITaxon:1344003","l":"Williamsia sterculiae","na":2,"nb":1,"a":[["TED%3AAF-A0A1N7FTP5-F1-model_v4_TED01","TED novel fold AF-A0A1N7FTP5-F1-model_v4_TED01"],["TED%3AAF-A0A1N7H905-F1-model_v4_TED01","TED novel fold AF-A0A1N7H905-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1344003","Williamsia sterculiae"]]},{"id":"NCBITaxon:1345695","l":"Clostridium saccharobutylicum DSM 13864","na":1,"nb":2,"a":[["TED%3AAF-U5ML78-F1-model_v4_TED01","TED highly-symmetric fold AF-U5ML78-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A169679","Clostridium saccharobutylicum"],["NCBITaxon%3A1345695","Clostridium saccharobutylicum DSM 13864"]]},{"id":"NCBITaxon:1346790","l":"Sphingobium indicum IP26","na":1,"nb":2,"a":[["TED%3AAF-W1KN37-F1-model_v4_TED01","TED highly-symmetric fold AF-W1KN37-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A332055","Sphingobium indicum"],["NCBITaxon%3A1346790","Sphingobium indicum IP26"]]},{"id":"NCBITaxon:1348163","l":"Desulfocarbo indianensis","na":2,"nb":1,"a":[["TED%3AAF-A0A0K9IA67-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0K9IA67-F1-model_v4_TED01"],["TED%3AAF-A0A0K9I238-F1-model_v4_TED01","TED novel fold AF-A0A0K9I238-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1348163","Desulfocarbo indianensis"]]},{"id":"NCBITaxon:1348623","l":"","na":1,"nb":2,"a":[["TED%3AAF-A0A846AWI2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A846AWI2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1404","Priestia megaterium"],["NCBITaxon%3A1348623","Priestia megaterium NBRC 15308 = ATCC 14581"]]},{"id":"NCBITaxon:1348657","l":"Thauera terpenica 58Eu","na":1,"nb":2,"a":[["TED%3AAF-S9Z9C4-F1-model_v4_TED01","TED novel fold AF-S9Z9C4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A76113","Thauera terpenica"],["NCBITaxon%3A1348657","Thauera terpenica 58Eu"]]},{"id":"NCBITaxon:1350429","l":"Cyclobacterium qasimii","na":1,"nb":2,"a":[["TED%3AAF-A0A512CD48-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A512CD48-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1350429","Cyclobacterium qasimii"],["NCBITaxon%3A641524","Cyclobacterium qasimii M12-11B"]]},{"id":"NCBITaxon:1353533","l":"Pseudoalteromonas luteoviolacea 2ta16","na":2,"nb":1,"a":[["TED%3AAF-V4HNX8-F1-model_v4_TED01","TED novel fold AF-V4HNX8-F1-model_v4_TED01"],["TED%3AAF-V4JDU9-F1-model_v4_TED01","TED novel fold AF-V4JDU9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1353533","Pseudoalteromonas luteoviolacea 2ta16"]]},{"id":"NCBITaxon:1353889","l":"Achromobacter pestifer","na":1,"nb":2,"a":[["TED%3AAF-A0A6S6YSL4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6S6YSL4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1353889","Achromobacter pestifer"],["NCBITaxon%3A85698","Achromobacter xylosoxidans"]]},{"id":"NCBITaxon:1353890","l":"Achromobacter kerstersii","na":2,"nb":1,"a":[["TED%3AAF-A0A6S7AQP5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6S7AQP5-F1-model_v4_TED01"],["TED%3AAF-A0A6S7AZ74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6S7AZ74-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1353890","Achromobacter kerstersii"]]},{"id":"NCBITaxon:136273","l":"","na":1,"nb":2,"a":[["TED%3AAF-A0A0A6VR62-F1-model_v4_TED02","TED novel fold AF-A0A0A6VR62-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1275","Kocuria rosea"],["NCBITaxon%3A136273","Kocuria rosea subsp. polaris"]]},{"id":"NCBITaxon:136370","l":"Lasallia pustulata","na":2,"nb":1,"a":[["TED%3AAF-A0A1W5CUI7-F1-model_v4_TED02","TED novel fold AF-A0A1W5CUI7-F1-model_v4_TED02"],["TED%3AAF-A0A5M8PR11-F1-model_v4_TED02","TED novel fold AF-A0A5M8PR11-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A136370","Lasallia pustulata"]]},{"id":"NCBITaxon:1365176","l":"Thermofilum adornatum","na":1,"nb":2,"a":[["TED%3AAF-A0A7C1CCT4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C1CCT4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1365176","Thermofilum adornatum"],["NCBITaxon%3A697581","Thermofilum adornatum 1505"]]},{"id":"NCBITaxon:1365257","l":"Pseudoalteromonas luteoviolacea S4060-1","na":2,"nb":1,"a":[["TED%3AAF-A0A161YZI7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A161YZI7-F1-model_v4_TED01"],["TED%3AAF-A0A167KUY8-F1-model_v4_TED01","TED novel fold AF-A0A167KUY8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1365257","Pseudoalteromonas luteoviolacea S4060-1"]]},{"id":"NCBITaxon:137658","l":"Pseudomonas indica","na":1,"nb":2,"a":[["proteintraitsmech%3AELIFE109154_IBH_His","Interface-associated metallophore histidine beta-hydroxylase family"]],"b":[["NCBITaxon%3A137658","Pseudomonas indica"],["NCBITaxon%3A1215103","Pseudomonas indica NBRC 103045"]]},{"id":"NCBITaxon:137722","l":"Azospirillum sp. B510","na":1,"nb":2,"a":[["TED%3AAF-D3P3H1-F1-model_v4_TED02","TED highly-symmetric fold AF-D3P3H1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A34012","Azospirillum sp."],["NCBITaxon%3A137722","Azospirillum sp. B510"]]},{"id":"NCBITaxon:13773","l":"Pyrobaculum aerophilum","na":1,"nb":2,"a":[["TED%3AAF-A0A832SQL0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A832SQL0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A13773","Pyrobaculum aerophilum"],["NCBITaxon%3A178306","Pyrobaculum aerophilum str. IM2"]]},{"id":"NCBITaxon:137730","l":"Falseniella ignava","na":1,"nb":2,"a":[["TED%3AAF-A0A2I1K1R7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I1K1R7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A137730","Falseniella ignava"],["NCBITaxon%3A883112","Falseniella ignava CCUG 37419"]]},{"id":"NCBITaxon:137779","l":"Pseudoalteromonas flavipulchra","na":1,"nb":2,"a":[["TED%3AAF-A0A5S3S9K7-F1-model_v4_TED01","TED novel fold AF-A0A5S3S9K7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1315273","Pseudoalteromonas flavipulchra NCIMB 2033 = ATCC BAA-314"],["NCBITaxon%3A184924","Pseudoalteromonas maricaloris"]]},{"id":"NCBITaxon:1380357","l":"Rhodospirillales bacterium URHD0017","na":2,"nb":1,"a":[["TED%3AAF-A0A1H8SNT0-F1-model_v4_TED02","TED novel fold AF-A0A1H8SNT0-F1-model_v4_TED02"],["TED%3AAF-A0A1H8Y0S7-F1-model_v4_TED02","TED novel fold AF-A0A1H8Y0S7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1380357","Rhodospirillales bacterium URHD0017"]]},{"id":"NCBITaxon:138300","l":"Kytococcus schroeteri","na":1,"nb":2,"a":[["TED%3AAF-A0A2I1PDY3-F1-model_v4_TED01","TED novel fold AF-A0A2I1PDY3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A138300","Kytococcus schroeteri"],["NCBITaxon%3A1122141","Kytococcus schroeteri DSM 13884"]]},{"id":"NCBITaxon:1383851","l":"Halorubrum halodurans","na":2,"nb":1,"a":[["TED%3AAF-A0A256INQ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A256INQ8-F1-model_v4_TED01"],["TED%3AAF-A0A256IED1-F1-model_v4_TED04","TED novel fold AF-A0A256IED1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1383851","Halorubrum halodurans"]]},{"id":"NCBITaxon:1384057","l":"Ureibacillus sinduriensis BLB-1 = JCM 15800","na":1,"nb":2,"a":[["TED%3AAF-A0A0A3HYH1-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A0A3HYH1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A561440","Ureibacillus sinduriensis"],["NCBITaxon%3A1384057","Ureibacillus sinduriensis BLB-1 = JCM 15800"]]},{"id":"NCBITaxon:1385511","l":"Pontibacillus marinus BH030004 = DSM 16465","na":1,"nb":2,"a":[["TED%3AAF-A0A0A5GIK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A5GIK2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A273164","Pontibacillus marinus"],["NCBITaxon%3A1385511","Pontibacillus marinus BH030004 = DSM 16465"]]},{"id":"NCBITaxon:1385625","l":"Thiohalocapsa sp. PB-PSB1","na":2,"nb":1,"a":[["TED%3AAF-V4ITH6-F1-model_v4_TED04","TED novel fold AF-V4ITH6-F1-model_v4_TED04"],["TED%3AAF-V4IUM5-F1-model_v4_TED02","TED novel fold AF-V4IUM5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1385625","Thiohalocapsa sp. PB-PSB1"]]},{"id":"NCBITaxon:1385663","l":"","na":1,"nb":2,"a":[["TED%3AAF-A0A0M5K0Y8-F1-model_v4_TED01","TED novel fold AF-A0A0M5K0Y8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1385663","Hymenobacter erythromyxa"],["NCBITaxon%3A1924939","Nibribacter sp."]]},{"id":"NCBITaxon:1385935","l":"Leptolyngbya sp. Heron Island J","na":2,"nb":1,"a":[["TED%3AAF-U9VLH2-F1-model_v4_TED04","TED highly-symmetric fold AF-U9VLH2-F1-model_v4_TED04"],["TED%3AAF-U9W7G7-F1-model_v4_TED03","TED highly-symmetric fold AF-U9W7G7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1385935","Leptolyngbya sp. Heron Island J"]]},{"id":"NCBITaxon:1387353","l":"Paludisphaera borealis","na":2,"nb":1,"a":[["TED%3AAF-A0A1U7CK02-F1-model_v4_TED02","TED novel fold AF-A0A1U7CK02-F1-model_v4_TED02"],["TED%3AAF-A0A1U7CMS9-F1-model_v4_TED03","TED novel fold AF-A0A1U7CMS9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1387353","Paludisphaera borealis"]]},{"id":"NCBITaxon:1387883","l":"Halomonas heilongjiangensis","na":2,"nb":1,"a":[["TED%3AAF-A0A2N7TG04-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N7TG04-F1-model_v4_TED02"],["TED%3AAF-A0A2N7TQ20-F1-model_v4_TED01","TED novel fold AF-A0A2N7TQ20-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1387883","Halomonas heilongjiangensis"]]},{"id":"NCBITaxon:1388749","l":"Campylobacter lari NCTC 11845","na":1,"nb":2,"a":[["TED%3AAF-A0A0A8HSL3-F1-model_v4_TED03","TED novel fold AF-A0A0A8HSL3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A201","Campylobacter lari"],["NCBITaxon%3A1388749","Campylobacter lari NCTC 11845"]]},{"id":"NCBITaxon:1395125","l":"Prevotella salivae F0493","na":2,"nb":1,"a":[["TED%3AAF-U2L8Q3-F1-model_v4_TED01","TED novel fold AF-U2L8Q3-F1-model_v4_TED01"],["TED%3AAF-U2MGD9-F1-model_v4_TED01","TED novel fold AF-U2MGD9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1395125","Segatella salivae F0493"]]},{"id":"NCBITaxon:1395513","l":"Sporolactobacillus laevolacticus DSM 442","na":1,"nb":2,"a":[["TED%3AAF-V6IW76-F1-model_v4_TED02","TED highly-symmetric fold AF-V6IW76-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A33018","Sporolactobacillus laevolacticus"],["NCBITaxon%3A1395513","Sporolactobacillus laevolacticus DSM 442"]]},{"id":"NCBITaxon:1400861","l":"Candidatus Contendobacter odensis Run B J11","na":2,"nb":1,"a":[["TED%3AAF-A0A7U7GDL9-F1-model_v4_TED01","TED novel fold AF-A0A7U7GDL9-F1-model_v4_TED01"],["TED%3AAF-A0A7U7GE39-F1-model_v4_TED02","TED novel fold AF-A0A7U7GE39-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1400861","Candidatus Contendobacter odensis Run_B_J11"]]},{"id":"NCBITaxon:1402511","l":"Pseudomonas aeruginosa (strain BWHPSA011 / Pa011)","na":2,"nb":1,"a":[["Pfam%3APF21713","Cyclic GMP-AMP synthase, C-terminal domain"],["Pfam%3APF21654","Cyclic GMP-AMP synthase DncV-like, nucleotidyltransferase domain"]],"b":[["NCBITaxon%3A1402511","Pseudomonas aeruginosa BWHPSA011"]]},{"id":"NCBITaxon:1407071","l":"Acinetobacter sp. TGL-Y2","na":2,"nb":1,"a":[["TED%3AAF-A0A143G679-F1-model_v4_TED02","TED novel fold AF-A0A143G679-F1-model_v4_TED02"],["TED%3AAF-A0A145WVV8-F1-model_v4_TED01","TED novel fold AF-A0A145WVV8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1407071","Acinetobacter sp. TGL-Y2"]]},{"id":"NCBITaxon:1408250","l":"Cellulomonas cellasea DSM 20118","na":1,"nb":2,"a":[["TED%3AAF-A0A0A0BCT5-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A0A0BCT5-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A43670","Cellulomonas cellasea"],["NCBITaxon%3A1408250","Cellulomonas cellasea DSM 20118"]]},{"id":"NCBITaxon:1412874","l":"uncultured archaeon A07HR60","na":2,"nb":1,"a":[["TED%3AAF-V4XTB4-F1-model_v4_TED02","TED novel fold AF-V4XTB4-F1-model_v4_TED02"],["TED%3AAF-V4YHV6-F1-model_v4_TED01","TED novel fold AF-V4YHV6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1412874","uncultured archaeon A07HR60"]]},{"id":"NCBITaxon:1415166","l":"Nocardia nova SH22a","na":2,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_Lys_monoox","Mycobactin-type lysine N6-monooxygenase family"],["TED%3AAF-W5TML8-F1-model_v4_TED02","TED novel fold AF-W5TML8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1415166","Nocardia nova SH22a"]]},{"id":"NCBITaxon:1420591","l":"Novosphingobium barchaimii","na":1,"nb":2,"a":[["TED%3AAF-A0A561HW41-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A561HW41-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1420591","Novosphingobium barchaimii"],["NCBITaxon%3A1114963","Novosphingobium barchaimii LL02"]]},{"id":"NCBITaxon:1423734","l":"Agrilactobacillus composti DSM 18527 = JCM 14202","na":1,"nb":2,"a":[["TED%3AAF-X0PQH2-F1-model_v4_TED01","TED highly-symmetric fold AF-X0PQH2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A398555","Agrilactobacillus composti"],["NCBITaxon%3A1423734","Agrilactobacillus composti DSM 18527 = JCM 14202"]]},{"id":"NCBITaxon:1423735","l":"Lapidilactobacillus concavus DSM 17758","na":1,"nb":2,"a":[["TED%3AAF-A0A0R1VYU6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0R1VYU6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A287844","Lapidilactobacillus concavus"],["NCBITaxon%3A1423735","Lapidilactobacillus concavus DSM 17758"]]},{"id":"NCBITaxon:1423737","l":"Companilactobacillus crustorum JCM 15951","na":1,"nb":2,"a":[["TED%3AAF-A0A837RKZ0-F1-model_v4_TED01","TED novel fold AF-A0A837RKZ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A392416","Companilactobacillus crustorum"],["NCBITaxon%3A1423737","Companilactobacillus crustorum JCM 15951"]]},{"id":"NCBITaxon:1423743","l":"Lentilactobacillus farraginis DSM 18382 = JCM 14108","na":1,"nb":2,"a":[["TED%3AAF-X0PMJ3-F1-model_v4_TED01","TED highly-symmetric fold AF-X0PMJ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A390841","Lentilactobacillus farraginis"],["NCBITaxon%3A1423743","Lentilactobacillus farraginis DSM 18382 = JCM 14108"]]},{"id":"NCBITaxon:1423765","l":"Companilactobacillus kimchii DSM 13961 = JCM 10707","na":1,"nb":2,"a":[["TED%3AAF-A0A0R1I3Z1-F1-model_v4_TED01","TED novel fold AF-A0A0R1I3Z1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2801452","Companilactobacillus kimchii"],["NCBITaxon%3A1423765","Companilactobacillus kimchii DSM 13961 = JCM 10707"]]},{"id":"NCBITaxon:1423774","l":"Companilactobacillus nantensis DSM 16982","na":1,"nb":2,"a":[["TED%3AAF-A0A0R1WL06-F1-model_v4_TED01","TED novel fold AF-A0A0R1WL06-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A305793","Companilactobacillus nantensis"],["NCBITaxon%3A1423774","Companilactobacillus nantensis DSM 16982"]]},{"id":"NCBITaxon:1423792","l":"Schleiferilactobacillus perolens DSM 12744","na":1,"nb":2,"a":[["TED%3AAF-A0A0R1MPN9-F1-model_v4_TED03","TED novel fold AF-A0A0R1MPN9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A100468","Schleiferilactobacillus perolens"],["NCBITaxon%3A1423792","Schleiferilactobacillus perolens DSM 12744"]]},{"id":"NCBITaxon:1423806","l":"Liquorilactobacillus sucicola DSM 21376 = JCM 15457","na":1,"nb":2,"a":[["TED%3AAF-A0A023CYF4-F1-model_v4_TED02","TED novel fold AF-A0A023CYF4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A519050","Liquorilactobacillus sucicola"],["NCBITaxon%3A1423806","Liquorilactobacillus sucicola DSM 21376 = JCM 15457"]]},{"id":"NCBITaxon:1423810","l":"Lacticaseibacillus thailandensis DSM 22698 = JCM 13996","na":1,"nb":2,"a":[["TED%3AAF-A0A0R2C6X6-F1-model_v4_TED01","TED novel fold AF-A0A0R2C6X6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A381741","Lacticaseibacillus thailandensis"],["NCBITaxon%3A1423810","Lacticaseibacillus thailandensis DSM 22698 = JCM 13996"]]},{"id":"NCBITaxon:1431546","l":"Corynebacterium aquilae DSM 44791","na":1,"nb":2,"a":[["TED%3AAF-A0A1L7CFU4-F1-model_v4_TED03","TED novel fold AF-A0A1L7CFU4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A203263","Corynebacterium aquilae"],["NCBITaxon%3A1431546","Corynebacterium aquilae DSM 44791"]]},{"id":"NCBITaxon:1432052","l":"Eisenbergiella tayi","na":1,"nb":2,"a":[["TED%3AAF-A0A1E3UPB3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1E3UPB3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2652274","Eisenbergiella porci"],["NCBITaxon%3A1432052","Eisenbergiella tayi"]]},{"id":"NCBITaxon:1434842","l":"Sphingobacterium sp. JB170","na":2,"nb":1,"a":[["TED%3AAF-A0A1R4J3P6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1R4J3P6-F1-model_v4_TED01"],["TED%3AAF-A0A1R4KF03-F1-model_v4_TED01","TED novel fold AF-A0A1R4KF03-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1434842","Sphingobacterium sp. JB170"]]},{"id":"NCBITaxon:143495","l":"Aneurinibacillus thermoaerophilus","na":2,"nb":1,"a":[["Pfam%3APF05523","WxcM-like, C-terminal"],["TED%3AAF-A0A1G8FMF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G8FMF4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A143495","Aneurinibacillus thermoaerophilus"]]},{"id":"NCBITaxon:1435","l":"Bacillus thuringiensis subsp. san diego","na":2,"nb":1,"a":[["Pfam%3APF03944","delta endotoxin"],["Pfam%3APF00555","delta endotoxin"]],"b":[["NCBITaxon%3A1435","Bacillus thuringiensis serovar san diego"]]},{"id":"NCBITaxon:1435051","l":"Bifidobacterium moukalabense DSM 27321","na":1,"nb":2,"a":[["TED%3AAF-W4N9D3-F1-model_v4_TED03","TED novel fold AF-W4N9D3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1333651","Bifidobacterium moukalabense"],["NCBITaxon%3A1435051","Bifidobacterium moukalabense DSM 27321"]]},{"id":"NCBITaxon:1437280","l":"Sphingobacterium yanglingense","na":2,"nb":1,"a":[["TED%3AAF-A0A4R6WGK7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4R6WGK7-F1-model_v4_TED02"],["TED%3AAF-A0A4R6WPH5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R6WPH5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1437280","Sphingobacterium yanglingense"]]},{"id":"NCBITaxon:1437824","l":"","na":1,"nb":2,"a":[["Pfam%3APF18566","Linalool dehydratase/isomerase"]],"b":[["NCBITaxon%3A75697","Castellaniella defragrans"],["NCBITaxon%3A1437824","Castellaniella defragrans 65Phen"]]},{"id":"NCBITaxon:1440","l":"Bacillus thuringiensis subsp. alesti","na":2,"nb":1,"a":[["Pfam%3APF20773","Immune inhibitor A-like, MAM domain"],["Pfam%3APF20774","Immune inhibitor A-like metallopeptidase, VEG domain"]],"b":[["NCBITaxon%3A1440","Bacillus thuringiensis serovar alesti"]]},{"id":"NCBITaxon:1441714","l":"-","na":2,"nb":1,"a":[["TED%3AAF-A0A2T1AGR1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2T1AGR1-F1-model_v4_TED02"],["TED%3AAF-A0A2T1AKH5-F1-model_v4_TED03","TED novel fold AF-A0A2T1AKH5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A134537","Paraburkholderia fungorum"]]},{"id":"NCBITaxon:1441930","l":"Chania multitudinisentens RB-25","na":1,"nb":2,"a":[["TED%3AAF-W0LKM6-F1-model_v4_TED03","TED highly-symmetric fold AF-W0LKM6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1639108","Chania multitudinisentens"],["NCBITaxon%3A1441930","Chania multitudinisentens RB-25"]]},{"id":"NCBITaxon:1444","l":"Bacillus thuringiensis serovar tenebrionis","na":1,"nb":2,"a":[["Pfam%3APF03945","delta endotoxin, N-terminal domain"]],"b":[["NCBITaxon%3A1444","Bacillus thuringiensis serovar tenebrionis"],["NCBITaxon%3A529121","Bacillus thuringiensis serovar tenebrionis str. YBT-1765"]]},{"id":"NCBITaxon:1447872","l":"Emergomyces pasteurianus Ep9510","na":2,"nb":1,"a":[["TED%3AAF-A0A1J9P8J4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1J9P8J4-F1-model_v4_TED01"],["TED%3AAF-A0A1J9PF03-F1-model_v4_TED01","TED novel fold AF-A0A1J9PF03-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1447872","Emergomyces pasteurianus Ep9510"]]},{"id":"NCBITaxon:1447875","l":"Helicocarpus griseus UAMH5409","na":2,"nb":1,"a":[["TED%3AAF-A0A2B7WG23-F1-model_v4_TED02","TED novel fold AF-A0A2B7WG23-F1-model_v4_TED02"],["TED%3AAF-A0A2B7XGI3-F1-model_v4_TED02","TED novel fold AF-A0A2B7XGI3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1447875","Helicocarpus griseus UAMH5409"]]},{"id":"NCBITaxon:1447883","l":"Polytolypa hystricis UAMH7299","na":2,"nb":1,"a":[["TED%3AAF-A0A2B7XF76-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2B7XF76-F1-model_v4_TED02"],["TED%3AAF-A0A2B7XVY8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2B7XVY8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1447883","Polytolypa hystricis UAMH7299"]]},{"id":"NCBITaxon:1448857","l":"Campylobacter corcagiensis","na":2,"nb":1,"a":[["TED%3AAF-A0A7M1LDD3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7M1LDD3-F1-model_v4_TED01"],["TED%3AAF-A0A7M1LDP4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7M1LDP4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1448857","Campylobacter corcagiensis"]]},{"id":"NCBITaxon:1449976","l":"Kutzneria albida DSM 43870","na":1,"nb":2,"a":[["TED%3AAF-W5WK35-F1-model_v4_TED01","TED novel fold AF-W5WK35-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A47990","Kutzneria viridogrisea"],["NCBITaxon%3A1449976","Kutzneria viridogrisea DSM 43870"]]},{"id":"NCBITaxon:1453500","l":"Schleiferia thermophila str. Yellowstone","na":2,"nb":1,"a":[["TED%3AAF-A0A085KZN4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085KZN4-F1-model_v4_TED01"],["TED%3AAF-A0A085L5S3-F1-model_v4_TED01","TED novel fold AF-A0A085L5S3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1453500","Schleiferia thermophila str. Yellowstone"]]},{"id":"NCBITaxon:1454006","l":"Siansivirga zeaxanthinifaciens CC-SAMT-1","na":1,"nb":2,"a":[["TED%3AAF-A0A0C5WPT2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0C5WPT2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A762954","Siansivirga zeaxanthinifaciens"],["NCBITaxon%3A1454006","Siansivirga zeaxanthinifaciens CC-SAMT-1"]]},{"id":"NCBITaxon:1459","l":"Sporosarcina globispora","na":1,"nb":2,"a":[["Pfam%3APF16990","Carbohydrate binding module (family 35)"]],"b":[["NCBITaxon%3A1459","Sporosarcina globispora"],["NCBITaxon%3A83428","uncultured Bacillus sp."]]},{"id":"NCBITaxon:146475","l":"Acetobacter cibinongensis","na":1,"nb":2,"a":[["TED%3AAF-A0A0D6N7J0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D6N7J0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A146475","Acetobacter cibinongensis"],["NCBITaxon%3A1307904","Acetobacter cibinongensis NRIC 0482"]]},{"id":"NCBITaxon:147645","l":"Paracoccus yeei","na":1,"nb":2,"a":[["TED%3AAF-A0A5P2QVK1-F1-model_v4_TED01","TED novel fold AF-A0A5P2QVK1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A147645","Paracoccus yeei"],["NCBITaxon%3A1446473","Paracoccus yeei ATCC BAA-599"]]},{"id":"NCBITaxon:1478131","l":"Streptomyces sp. L-9-10","na":2,"nb":1,"a":[["TED%3AAF-A0A4Q4DC23-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A4Q4DC23-F1-model_v4_TED03"],["TED%3AAF-A0A4Q4DRF2-F1-model_v4_TED03","TED novel fold AF-A0A4Q4DRF2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1478131","Streptomyces sp. L-9-10"]]},{"id":"NCBITaxon:1478174","l":"Neochlamydia sp. TUME1","na":1,"nb":2,"a":[["TED%3AAF-A0A0C1JMX6-F1-model_v4_TED04","TED novel fold AF-A0A0C1JMX6-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A3100387","Neochlamydia sp."],["NCBITaxon%3A1478174","Neochlamydia sp. TUME1"]]},{"id":"NCBITaxon:1486917","l":"Craspedostauros australis","na":2,"nb":1,"a":[["TED%3AAF-A0A7R9WX70-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7R9WX70-F1-model_v4_TED01"],["TED%3AAF-A0A7R9WUI6-F1-model_v4_TED01","TED novel fold AF-A0A7R9WUI6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1486917","Craspedostauros australis"]]},{"id":"NCBITaxon:149040","l":"Mollisia scopiformis","na":2,"nb":1,"a":[["TED%3AAF-A0A132B1T2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A132B1T2-F1-model_v4_TED01"],["TED%3AAF-A0A132B5X2-F1-model_v4_TED02","TED novel fold AF-A0A132B5X2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A149040","Mollisia scopiformis"]]},{"id":"NCBITaxon:1498","l":"Hathewaya histolytica","na":2,"nb":1,"a":[["Pfam%3APF18496","Collagenase G catalytic helper subdomain"],["Pfam%3APF08453","Peptidase family M9 N-terminal"]],"b":[["NCBITaxon%3A1498","Hathewaya histolytica"]]},{"id":"NCBITaxon:1499","l":"Ruminiclostridium josui","na":1,"nb":2,"a":[["PROSITE%3APS00747","Glutamyl-tRNA reductase signature"]],"b":[["NCBITaxon%3A1499","Ruminiclostridium josui"],["NCBITaxon%3A1291050","Ruminiclostridium josui JCM 17888"]]},{"id":"NCBITaxon:1502850","l":"Sphingopyxis sp. LC81","na":2,"nb":1,"a":[["TED%3AAF-A0A095BVH7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A095BVH7-F1-model_v4_TED01"],["TED%3AAF-A0A095D0J2-F1-model_v4_TED01","TED novel fold AF-A0A095D0J2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1502850","Sphingopyxis sp. LC81"]]},{"id":"NCBITaxon:1505037","l":"Emcibacter nanhaiensis","na":1,"nb":2,"a":[["TED%3AAF-A0A501PJX8-F1-model_v4_TED02","TED novel fold AF-A0A501PJX8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1505037","Emcibacter nanhaiensis"],["NCBITaxon%3A630535","Gracilibacillus marinus"]]},{"id":"NCBITaxon:1510197","l":"Streptomyces sp. PT12","na":1,"nb":2,"a":[["TED%3AAF-A0A365YRR4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A365YRR4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A1510197","Streptomyces sp. PT12"]]},{"id":"NCBITaxon:151035","l":"Euplotes harpa","na":2,"nb":1,"a":[["TED%3AAF-A0A7S3J944-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3J944-F1-model_v4_TED01"],["TED%3AAF-A0A7S3J5Z8-F1-model_v4_TED01","TED novel fold AF-A0A7S3J5Z8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A151035","Euplotes harpa"]]},{"id":"NCBITaxon:1510460","l":"Ascidiaceihabitans donghaensis","na":2,"nb":1,"a":[["TED%3AAF-A0A2R8BG13-F1-model_v4_TED01","TED novel fold AF-A0A2R8BG13-F1-model_v4_TED01"],["TED%3AAF-A0A2R8BGW8-F1-model_v4_TED02","TED novel fold AF-A0A2R8BGW8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1510460","Ascidiaceihabitans donghaensis"]]},{"id":"NCBITaxon:1510841","l":"Parasaccharibacter apium","na":1,"nb":2,"a":[["TED%3AAF-A0A2C6HKU2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2C6HKU2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1785988","Bombella apis"],["NCBITaxon%3A1510841","Parasaccharibacter apium"]]},{"id":"NCBITaxon:151783","l":"Cupriavidus campinensis","na":1,"nb":2,"a":[["TED%3AAF-A0A556UPV6-F1-model_v4_TED01","TED novel fold AF-A0A556UPV6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A151783","Cupriavidus campinensis"],["NCBITaxon%3A1706855","Deinococcus malanensis"]]},{"id":"NCBITaxon:1520810","l":"Butyrivibrio sp. Su6","na":2,"nb":1,"a":[["TED%3AAF-A0A1H5SCF6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H5SCF6-F1-model_v4_TED02"],["TED%3AAF-A0A1H5RWX6-F1-model_v4_TED02","TED novel fold AF-A0A1H5RWX6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1520810","Butyrivibrio sp. Su6"]]},{"id":"NCBITaxon:152142","l":"Mycolicibacterium holsaticum","na":1,"nb":2,"a":[["TED%3AAF-A0A1E3RVW1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E3RVW1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A152142","Mycolicibacterium holsaticum"],["NCBITaxon%3A1226752","Mycolicibacterium holsaticum DSM 44478 = JCM 12374"]]},{"id":"NCBITaxon:152263","l":"","na":1,"nb":2,"a":[["TED%3AAF-A0A514EFL3-F1-model_v4_TED01","TED novel fold AF-A0A514EFL3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A3390025","Xanthomonas cerealis"],["NCBITaxon%3A152263","Xanthomonas cerealis pv. cerealis"]]},{"id":"NCBITaxon:1524254","l":"Pseudohongiella acticola","na":2,"nb":1,"a":[["TED%3AAF-A0A1E8CF60-F1-model_v4_TED04","TED novel fold AF-A0A1E8CF60-F1-model_v4_TED04"],["TED%3AAF-A0A1E8CLK0-F1-model_v4_TED02","TED novel fold AF-A0A1E8CLK0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1524254","Pseudohongiella acticola"]]},{"id":"NCBITaxon:1525360","l":"Hymenobacter wooponensis","na":2,"nb":1,"a":[["TED%3AAF-A0A4Z0MMW4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Z0MMW4-F1-model_v4_TED02"],["TED%3AAF-A0A4Z0MGV5-F1-model_v4_TED01","TED novel fold AF-A0A4Z0MGV5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1525360","Hymenobacter wooponensis"]]},{"id":"NCBITaxon:1538158","l":"Rhizobium acidisoli","na":2,"nb":1,"a":[["TED%3AAF-A0A0N1DKC6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0N1DKC6-F1-model_v4_TED01"],["TED%3AAF-A0A0N1MDV0-F1-model_v4_TED01","TED novel fold AF-A0A0N1MDV0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1538158","Rhizobium acidisoli"]]},{"id":"NCBITaxon:1540082","l":"Acidianus sp. RZ1","na":1,"nb":2,"a":[["TED%3AAF-A0A7K4FX46-F1-model_v4_TED02","TED novel fold AF-A0A7K4FX46-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1540082","Acidianus sp. RZ1"],["NCBITaxon%3A1160895","Candidatus Acidianus copahuensis"]]},{"id":"NCBITaxon:1540520","l":"Kribbella italica","na":2,"nb":1,"a":[["TED%3AAF-A0A7W9J4H4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W9J4H4-F1-model_v4_TED02"],["TED%3AAF-A0A7W9JER4-F1-model_v4_TED01","TED novel fold AF-A0A7W9JER4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1540520","Kribbella italica"]]},{"id":"NCBITaxon:1541063","l":"Prolixibacter denitrificans","na":2,"nb":1,"a":[["TED%3AAF-A0A2P8CHN5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P8CHN5-F1-model_v4_TED01"],["TED%3AAF-A0A2P8CKY9-F1-model_v4_TED01","TED novel fold AF-A0A2P8CKY9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1541063","Prolixibacter denitrificans"]]},{"id":"NCBITaxon:1541960","l":"Candidatus Izimaplasma bacterium HR2","na":2,"nb":1,"a":[["TED%3AAF-A0A094KWA0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A094KWA0-F1-model_v4_TED02"],["TED%3AAF-A0A094J3E5-F1-model_v4_TED01","TED novel fold AF-A0A094J3E5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1541960","Candidatus Izimoplasma sp. HR2"]]},{"id":"NCBITaxon:1547","l":"Thomasclavelia ramosa","na":1,"nb":2,"a":[["TED%3AAF-A0A3E3E4C4-F1-model_v4_TED02","TED novel fold AF-A0A3E3E4C4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1547","Thomasclavelia ramosa"],["NCBITaxon%3A445974","Thomasclavelia ramosa DSM 1402"]]},{"id":"NCBITaxon:1547597","l":"Sanguibacteroides justesenii","na":2,"nb":1,"a":[["TED%3AAF-A0A318NC13-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A318NC13-F1-model_v4_TED05"],["TED%3AAF-A0A318N2U5-F1-model_v4_TED04","TED novel fold AF-A0A318N2U5-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1547597","Sanguibacteroides justesenii"]]},{"id":"NCBITaxon:1548","l":"Clostridium scatologenes","na":2,"nb":1,"a":[["Pfam%3APF18671","4-Hydroxyphenylacetate decarboxylase subunit gamma N-terminal"],["Pfam%3APF18524","High potential iron-sulfur protein like"]],"b":[["NCBITaxon%3A1548","Clostridium scatologenes"]]},{"id":"NCBITaxon:1549748","l":"Kiloniella litopenaei","na":2,"nb":1,"a":[["TED%3AAF-A0A0M2R8I7-F1-model_v4_TED02","TED novel fold AF-A0A0M2R8I7-F1-model_v4_TED02"],["TED%3AAF-A0A0M2RGD3-F1-model_v4_TED01","TED novel fold AF-A0A0M2RGD3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1549748","Kiloniella litopenaei"]]},{"id":"NCBITaxon:1550024","l":"Ruthenibacterium lactatiformans","na":2,"nb":1,"a":[["TED%3AAF-A0A0D8IWE3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0D8IWE3-F1-model_v4_TED03"],["TED%3AAF-A0A0W7TUX1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0W7TUX1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1550024","Ruthenibacterium lactatiformans"]]},{"id":"NCBITaxon:1553448","l":"","na":2,"nb":1,"a":[["TED%3AAF-A0A444M931-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A444M931-F1-model_v4_TED02"],["TED%3AAF-A0A444ME17-F1-model_v4_TED01","TED novel fold AF-A0A444ME17-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1553448","Falsigemmobacter intermedius"]]},{"id":"NCBITaxon:1561963","l":"Amorphochlora amoebiformis","na":2,"nb":1,"a":[["TED%3AAF-A0A7S0DJ05-F1-model_v4_TED02","TED novel fold AF-A0A7S0DJ05-F1-model_v4_TED02"],["TED%3AAF-A0A7S0DP28-F1-model_v4_TED01","TED novel fold AF-A0A7S0DP28-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1561963","Amorphochlora amoebiformis"]]},{"id":"NCBITaxon:1564487","l":"Herbinix hemicellulosilytica","na":2,"nb":1,"a":[["Pfam%3APF28350","Cas13a C-terminal HEPN-like domain"],["TED%3AAF-A0A3R9QDU8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3R9QDU8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1564487","Herbinix hemicellulosilytica"]]},{"id":"NCBITaxon:1566026","l":"Roseivirga seohaensis subsp. aquiponti","na":1,"nb":2,"a":[["TED%3AAF-A0A0L8AL15-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0L8AL15-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1914963","Roseivirga seohaensis"],["NCBITaxon%3A1566026","Roseivirga seohaensis subsp. aquiponti"]]},{"id":"NCBITaxon:1566287","l":"","na":1,"nb":2,"a":[["TED%3AAF-A0A559RRF6-F1-model_v4_TED01","TED novel fold AF-A0A559RRF6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024995","Dokdonia sp."],["NCBITaxon%3A1566287","Dokdonia sp. Hel_I_53"]]},{"id":"NCBITaxon:1569284","l":"Bdellovibrio sp. ArHS","na":2,"nb":1,"a":[["TED%3AAF-A0A0B8WL91-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0B8WL91-F1-model_v4_TED01"],["TED%3AAF-A0A0B8WXD6-F1-model_v4_TED01","TED novel fold AF-A0A0B8WXD6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1569284","Bdellovibrio sp. ArHS"]]},{"id":"NCBITaxon:156981","l":"Cellulomonas hominis","na":1,"nb":2,"a":[["TED%3AAF-A0A7Y9R8H3-F1-model_v4_TED06","TED novel fold AF-A0A7Y9R8H3-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A156981","Cellulomonas hominis"],["NCBITaxon%3A1305868","Cellulomonas hominis JCM 12133"]]},{"id":"NCBITaxon:1571199","l":"Bradyrhizobium sp. Leo170","na":2,"nb":1,"a":[["TED%3AAF-A0A4Q8QKG2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A4Q8QKG2-F1-model_v4_TED03"],["TED%3AAF-A0A4Q8R934-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q8R934-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1571199","Bradyrhizobium sp. Leo170"]]},{"id":"NCBITaxon:157538","l":"Leptomonas pyrrhocoris","na":2,"nb":1,"a":[["TED%3AAF-A0A0M9G8S4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0M9G8S4-F1-model_v4_TED01"],["TED%3AAF-A0A0M9G713-F1-model_v4_TED03","TED novel fold AF-A0A0M9G713-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A157538","Leptomonas pyrrhocoris"]]},{"id":"NCBITaxon:1576369","l":"Planctomicrobium piriforme","na":2,"nb":1,"a":[["TED%3AAF-A0A1I3L149-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I3L149-F1-model_v4_TED01"],["TED%3AAF-A0A1I3P1K5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1I3P1K5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1576369","Planctomicrobium piriforme"]]},{"id":"NCBITaxon:157782","l":"Pseudomonas parafulva","na":1,"nb":2,"a":[["TED%3AAF-A0A147GAW8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A147GAW8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A157782","Pseudomonas parafulva"],["NCBITaxon%3A1215114","Pseudomonas parafulva NBRC 16636 = DSM 17004"]]},{"id":"NCBITaxon:1581095","l":"Sphingobacterium sp. HMSC13C05","na":2,"nb":1,"a":[["TED%3AAF-A0A1F2K807-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F2K807-F1-model_v4_TED02"],["TED%3AAF-A0A1F2KFK1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F2KFK1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1581095","Sphingobacterium sp. HMSC13C05"]]},{"id":"NCBITaxon:158189","l":"","na":1,"nb":2,"a":[["TED%3AAF-F0RW27-F1-model_v4_TED03","TED novel fold AF-F0RW27-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1131703","Sphaerochaeta globosa"],["NCBITaxon%3A158189","Sphaerochaeta globosa str. Buddy"]]},{"id":"NCBITaxon:158190","l":"","na":1,"nb":2,"a":[["TED%3AAF-G8QR79-F1-model_v4_TED02","TED novel fold AF-G8QR79-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1131707","Sphaerochaeta pleomorpha"],["NCBITaxon%3A158190","Sphaerochaeta pleomorpha str. Grapes"]]},{"id":"NCBITaxon:158607","l":"Diaporthe helianthi","na":2,"nb":1,"a":[["TED%3AAF-A0A2P5HTH0-F1-model_v4_TED03","TED novel fold AF-A0A2P5HTH0-F1-model_v4_TED03"],["TED%3AAF-A0A2P5I5U4-F1-model_v4_TED02","TED novel fold AF-A0A2P5I5U4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A158607","Diaporthe helianthi"]]},{"id":"NCBITaxon:158755","l":"uncultured Cytophagales bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A6J4ITQ0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6J4ITQ0-F1-model_v4_TED02"],["TED%3AAF-A0A6J4JM73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6J4JM73-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A158755","uncultured Cytophagales bacterium"]]},{"id":"NCBITaxon:158822","l":"Cedecea neteri","na":1,"nb":2,"a":[["TED%3AAF-A0A2X3IYC7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2X3IYC7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A158822","Cedecea neteri"],["NCBITaxon%3A1216978","Cedecea neteri NBRC 105707 = ATCC 33855"]]},{"id":"NCBITaxon:158841","l":"Leminorella richardii","na":1,"nb":2,"a":[["TED%3AAF-A0A2X4XJ45-F1-model_v4_TED01","TED novel fold AF-A0A2X4XJ45-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A158841","Leminorella richardii"],["NCBITaxon%3A1354266","Leminorella richardii ATCC 33998"]]},{"id":"NCBITaxon:1592327","l":"Actinobacteria bacterium OK074","na":2,"nb":1,"a":[["TED%3AAF-A0A0N0MT24-F1-model_v4_TED01","TED novel fold AF-A0A0N0MT24-F1-model_v4_TED01"],["TED%3AAF-A0A0N1FVZ1-F1-model_v4_TED01","TED novel fold AF-A0A0N1FVZ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1592327","Actinobacteria bacterium OK074"]]},{"id":"NCBITaxon:159449","l":"Embleya scabrispora","na":1,"nb":2,"a":[["TED%3AAF-A0A1T3P567-F1-model_v4_TED01","TED novel fold AF-A0A1T3P567-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A159449","Embleya scabrispora"],["NCBITaxon%3A1123320","Embleya scabrispora DSM 41855"]]},{"id":"NCBITaxon:159743","l":"Paenibacillus terrae","na":1,"nb":2,"a":[["TED%3AAF-A0A0D7WXS4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D7WXS4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A159743","Paenibacillus terrae"],["NCBITaxon%3A985665","Paenibacillus terrae HPL-003"]]},{"id":"NCBITaxon:1597977","l":"Spirosoma fluviale","na":2,"nb":1,"a":[["TED%3AAF-A0A286FEP1-F1-model_v4_TED03","TED novel fold AF-A0A286FEP1-F1-model_v4_TED03"],["TED%3AAF-A0A286GW32-F1-model_v4_TED01","TED novel fold AF-A0A286GW32-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1597977","Spirosoma fluviale"]]},{"id":"NCBITaxon:1603295","l":"Fungal sp. (strain No.11243)","na":2,"nb":1,"a":[["TED%3AAF-A0A0S6XE84-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S6XE84-F1-model_v4_TED01"],["TED%3AAF-A0A0S6XNK0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S6XNK0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1603295","Dothideomycetidae sp. 11243"]]},{"id":"NCBITaxon:160396","l":"Chryseobacterium defluvii","na":2,"nb":1,"a":[["TED%3AAF-A0A495S9U1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A495S9U1-F1-model_v4_TED01"],["TED%3AAF-A0A840KF89-F1-model_v4_TED02","TED novel fold AF-A0A840KF89-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A160396","Chryseobacterium defluvii"]]},{"id":"NCBITaxon:160799","l":"Paenibacillus borealis","na":2,"nb":1,"a":[["Pfam%3APF06165","Glycosyl hydrolase 94, supersandwich domain"],["Pfam%3APF17167","Glycosyl hydrolase 94 superfamily, catalytic domain"]],"b":[["NCBITaxon%3A160799","Paenibacillus borealis"]]},{"id":"NCBITaxon:160808","l":"Acidithiobacillus ferrivorans","na":1,"nb":2,"a":[["TED%3AAF-A0A060UTX4-F1-model_v4_TED01","TED novel fold AF-A0A060UTX4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A160808","Acidithiobacillus ferrivorans"],["NCBITaxon%3A743299","Acidithiobacillus ferrivorans SS3"]]},{"id":"NCBITaxon:1608400","l":"Algibacter amylolyticus","na":2,"nb":1,"a":[["TED%3AAF-A0A5M7BIX9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5M7BIX9-F1-model_v4_TED02"],["TED%3AAF-A0A5M7B9R4-F1-model_v4_TED01","TED novel fold AF-A0A5M7B9R4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1608400","Algibacter amylolyticus"]]},{"id":"NCBITaxon:1608957","l":"Euzebya pacifica","na":2,"nb":1,"a":[["TED%3AAF-A0A346Y3M1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A346Y3M1-F1-model_v4_TED02"],["TED%3AAF-A0A346Y0S8-F1-model_v4_TED01","TED novel fold AF-A0A346Y0S8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1608957","Euzebya pacifica"]]},{"id":"NCBITaxon:1612308","l":"Methylocapsa palsarum","na":2,"nb":1,"a":[["TED%3AAF-A0A1I4BSR3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I4BSR3-F1-model_v4_TED02"],["TED%3AAF-A0A1I3X4Y4-F1-model_v4_TED01","TED novel fold AF-A0A1I3X4Y4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1612308","Methylocapsa palsarum"]]},{"id":"NCBITaxon:161355","l":"","na":1,"nb":2,"a":[["TED%3AAF-A0A161LJ98-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A161LJ98-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A58119","Planomonospora parontospora"],["NCBITaxon%3A161355","Planomonospora parontospora subsp. sphaerica"]]},{"id":"NCBITaxon:1617416","l":"Chloroflexi bacterium OLB15","na":2,"nb":1,"a":[["TED%3AAF-A0A136KZS9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A136KZS9-F1-model_v4_TED02"],["TED%3AAF-A0A136KZS9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A136KZS9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1617416","Chloroflexi bacterium OLB15"]]},{"id":"NCBITaxon:1618392","l":"Candidatus Collierbacteria bacterium GW2011 GWC2 44 18","na":2,"nb":1,"a":[["TED%3AAF-A0A0G1HR75-F1-model_v4_TED02","TED novel fold AF-A0A0G1HR75-F1-model_v4_TED02"],["TED%3AAF-A0A0G1HRP8-F1-model_v4_TED02","TED novel fold AF-A0A0G1HRP8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1618392","Candidatus Collierbacteria bacterium GW2011_GWC2_44_18"]]},{"id":"NCBITaxon:1618979","l":"Candidatus Uhrbacteria bacterium GW2011 GWA2 52 8d","na":2,"nb":1,"a":[["TED%3AAF-A0A0G1XJV8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G1XJV8-F1-model_v4_TED01"],["TED%3AAF-A0A0G1XPW5-F1-model_v4_TED01","TED novel fold AF-A0A0G1XPW5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618979","Candidatus Uhrbacteria bacterium GW2011_GWA2_52_8d"]]},{"id":"NCBITaxon:1619898","l":"Chlorobi bacterium OLB7","na":2,"nb":1,"a":[["TED%3AAF-A0A136PB26-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A136PB26-F1-model_v4_TED05"],["TED%3AAF-A0A136PC65-F1-model_v4_TED03","TED novel fold AF-A0A136PC65-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1619898","Chlorobi bacterium OLB7"]]},{"id":"NCBITaxon:1621989","l":"Desulfofervidus auxilii","na":2,"nb":1,"a":[["TED%3AAF-A0A7C2A368-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C2A368-F1-model_v4_TED01"],["TED%3AAF-A0A7C0Y6H1-F1-model_v4_TED02","TED novel fold AF-A0A7C0Y6H1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1621989","Candidatus Desulfofervidus auxilii"]]},{"id":"NCBITaxon:162496","l":"Glutamicibacter creatinolyticus","na":1,"nb":2,"a":[["TED%3AAF-A0A5B7WZ71-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B7WZ71-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1701","Brevibacterium sp."],["NCBITaxon%3A162496","Glutamicibacter creatinolyticus"]]},{"id":"NCBITaxon:1628085","l":"Agathobaculum butyriciproducens","na":2,"nb":1,"a":[["TED%3AAF-A0A3E2Y033-F1-model_v4_TED01","TED novel fold AF-A0A3E2Y033-F1-model_v4_TED01"],["TED%3AAF-A0A3E2Y3F1-F1-model_v4_TED01","TED novel fold AF-A0A3E2Y3F1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1628085","Agathobaculum butyriciproducens"]]},{"id":"NCBITaxon:163","l":"Treponema bryantii","na":1,"nb":2,"a":[["TED%3AAF-A0A1I3JLL1-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A1I3JLL1-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A163","Treponema bryantii"],["NCBITaxon%3A877418","Treponema bryantii NK4A124"]]},{"id":"NCBITaxon:1630693","l":"Gemmata sp. SH-PL17","na":2,"nb":1,"a":[["TED%3AAF-A0A142XKF3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A142XKF3-F1-model_v4_TED01"],["TED%3AAF-A0A142XIQ8-F1-model_v4_TED02","TED novel fold AF-A0A142XIQ8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1630693","Gemmata sp. SH-PL17"]]},{"id":"NCBITaxon:1632859","l":"Arsukibacterium sp. MJ3","na":2,"nb":1,"a":[["TED%3AAF-A0A0M2VH42-F1-model_v4_TED02","TED novel fold AF-A0A0M2VH42-F1-model_v4_TED02"],["TED%3AAF-A0A0M2VJ55-F1-model_v4_TED01","TED novel fold AF-A0A0M2VJ55-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1632859","Arsukibacterium sp. MJ3"]]},{"id":"NCBITaxon:1632867","l":"Methylocucumis oryzae","na":2,"nb":1,"a":[["TED%3AAF-A0A0F3IKK7-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A0F3IKK7-F1-model_v4_TED04"],["TED%3AAF-A0A0F3IKK2-F1-model_v4_TED01","TED novel fold AF-A0A0F3IKK2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1632867","Methylocucumis oryzae"]]},{"id":"NCBITaxon:1639882","l":"Longimicrobium terrae","na":2,"nb":1,"a":[["TED%3AAF-A0A841GZH2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841GZH2-F1-model_v4_TED01"],["TED%3AAF-A0A841H2X8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841H2X8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1639882","Longimicrobium terrae"]]},{"id":"NCBITaxon:1640509","l":"Candidatus Rokubacteria bacterium CSP1-6","na":2,"nb":1,"a":[["TED%3AAF-A0A0T6A749-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0T6A749-F1-model_v4_TED01"],["TED%3AAF-A0A0T6AIY2-F1-model_v4_TED02","TED novel fold AF-A0A0T6AIY2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1640509","Candidatus Rokubacteria bacterium CSP1-6"]]},{"id":"NCBITaxon:1641165","l":"Halomicronema hongdechloris C2206","na":2,"nb":1,"a":[["TED%3AAF-A0A1Z3HJ02-F1-model_v4_TED01","TED novel fold AF-A0A1Z3HJ02-F1-model_v4_TED01"],["TED%3AAF-A0A1Z3HJU6-F1-model_v4_TED05","TED novel fold AF-A0A1Z3HJU6-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1641165","Halomicronema hongdechloris C2206"]]},{"id":"NCBITaxon:1654360","l":"Photobacterium galatheae","na":2,"nb":1,"a":[["TED%3AAF-A0A066RSN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A066RSN6-F1-model_v4_TED01"],["TED%3AAF-A0A066RLQ8-F1-model_v4_TED01","TED novel fold AF-A0A066RLQ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1654360","Photobacterium galatheae"]]},{"id":"NCBITaxon:1655638","l":"Peptococcaceae bacterium 1109","na":2,"nb":1,"a":[["TED%3AAF-A0A0J1DN64-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0J1DN64-F1-model_v4_TED02"],["TED%3AAF-A0A0J1DP87-F1-model_v4_TED01","TED novel fold AF-A0A0J1DP87-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1655638","Peptococcaceae bacterium 1109"]]},{"id":"NCBITaxon:1658618","l":"Rubritalea profundi","na":2,"nb":1,"a":[["TED%3AAF-A0A2S7TYC2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S7TYC2-F1-model_v4_TED01"],["TED%3AAF-A0A2S7TX30-F1-model_v4_TED01","TED novel fold AF-A0A2S7TX30-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1658618","Rubritalea profundi"]]},{"id":"NCBITaxon:1658672","l":"Ottowia sp. oral taxon 894","na":2,"nb":1,"a":[["TED%3AAF-A0A0K1NEW5-F1-model_v4_TED02","TED novel fold AF-A0A0K1NEW5-F1-model_v4_TED02"],["TED%3AAF-A0A0K1NFW6-F1-model_v4_TED03","TED novel fold AF-A0A0K1NFW6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1658672","Ottowia sp. oral taxon 894"]]},{"id":"NCBITaxon:1660102","l":"Hyphomicrobium sp. SCN 65-11","na":2,"nb":1,"a":[["TED%3AAF-A0A1E4CJA3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1E4CJA3-F1-model_v4_TED02"],["TED%3AAF-A0A1E4CUN4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1E4CUN4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1660102","Hyphomicrobium sp. SCN 65-11"]]},{"id":"NCBITaxon:1664694","l":"Phialophora attinorum","na":2,"nb":1,"a":[["TED%3AAF-A0A0N1H3E1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0N1H3E1-F1-model_v4_TED01"],["TED%3AAF-A0A0N1NVY1-F1-model_v4_TED01","TED novel fold AF-A0A0N1NVY1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1664694","Cyphellophora attinorum"]]},{"id":"NCBITaxon:1672391","l":"uncultured Chloroflexia bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A6J4I1X6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6J4I1X6-F1-model_v4_TED01"],["TED%3AAF-A0A6J4K868-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6J4K868-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1672391","uncultured Chloroflexia bacterium"]]},{"id":"NCBITaxon:1672749","l":"Xaviernesmea rhizosphaerae","na":2,"nb":1,"a":[["TED%3AAF-A0A1Q9AN22-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q9AN22-F1-model_v4_TED01"],["TED%3AAF-A0A1Q9AMN0-F1-model_v4_TED01","TED novel fold AF-A0A1Q9AMN0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1672749","Xaviernesmea rhizosphaerae"]]},{"id":"NCBITaxon:1678012","l":"Streptomyces monashensis","na":2,"nb":1,"a":[["TED%3AAF-A0A1S2QRY7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S2QRY7-F1-model_v4_TED01"],["TED%3AAF-A0A1S2PJL5-F1-model_v4_TED02","TED novel fold AF-A0A1S2PJL5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1678012","Streptomyces monashensis"]]},{"id":"NCBITaxon:167968","l":"uncultured Desulfovibrio sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A212J776-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A212J776-F1-model_v4_TED02"],["TED%3AAF-A0A212L6P7-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A212L6P7-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A167968","uncultured Desulfovibrio sp."]]},{"id":"NCBITaxon:1691940","l":"Clostridium luticellarii","na":2,"nb":1,"a":[["TED%3AAF-A0A2T0BQR6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T0BQR6-F1-model_v4_TED01"],["TED%3AAF-A0A2T0BNQ9-F1-model_v4_TED01","TED novel fold AF-A0A2T0BNQ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1691940","Clostridium luticellarii"]]},{"id":"NCBITaxon:1693","l":"Bifidobacterium minimum","na":1,"nb":2,"a":[["TED%3AAF-A0A087BMT5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A087BMT5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1693","Bifidobacterium minimum"],["NCBITaxon%3A1121109","Bifidobacterium minimum DSM 20102"]]},{"id":"NCBITaxon:169480","l":"Rothia amarae","na":1,"nb":2,"a":[["TED%3AAF-A0A7H2BI57-F1-model_v4_TED03","TED novel fold AF-A0A7H2BI57-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1207057","Ottowia beijingensis"],["NCBITaxon%3A169480","Rothia amarae"]]},{"id":"NCBITaxon:169679","l":"Clostridium saccharobutylicum","na":1,"nb":2,"a":[["Pfam%3APF13290","Chitobiase/beta-hexosaminidase C-terminal domain"]],"b":[["NCBITaxon%3A169679","Clostridium saccharobutylicum"],["NCBITaxon%3A1345695","Clostridium saccharobutylicum DSM 13864"]]},{"id":"NCBITaxon:1698277","l":"candidate division MSBL1 archaeon SCGC-AAA261O19","na":2,"nb":1,"a":[["TED%3AAF-A0A133VCK7-F1-model_v4_TED01","TED novel fold AF-A0A133VCK7-F1-model_v4_TED01"],["TED%3AAF-A0A133VCN5-F1-model_v4_TED01","TED novel fold AF-A0A133VCN5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1698277","candidate division MSBL1 archaeon SCGC-AAA261O19"]]},{"id":"NCBITaxon:1703345","l":"Niastella vici","na":2,"nb":1,"a":[["TED%3AAF-A0A1V9FWX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V9FWX7-F1-model_v4_TED01"],["TED%3AAF-A0A1V9G1L1-F1-model_v4_TED02","TED novel fold AF-A0A1V9G1L1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1703345","Niastella vici"]]},{"id":"NCBITaxon:1703397","l":"Deltaproteobacteria bacterium DG 8","na":2,"nb":1,"a":[["TED%3AAF-A0A0S7X9Q5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0S7X9Q5-F1-model_v4_TED02"],["TED%3AAF-A0A0S7X820-F1-model_v4_TED01","TED novel fold AF-A0A0S7X820-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1703397","Deltaproteobacteria bacterium DG_8"]]},{"id":"NCBITaxon:1703413","l":"Planctomycetes bacterium DG 20","na":2,"nb":1,"a":[["TED%3AAF-A0A0S7YKG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S7YKG8-F1-model_v4_TED01"],["TED%3AAF-A0A0S7YRG6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S7YRG6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1703413","Planctomycetes bacterium DG_20"]]},{"id":"NCBITaxon:1703781","l":"Latescibacteria bacterium DG 63","na":2,"nb":1,"a":[["TED%3AAF-A0A0S7XAJ5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0S7XAJ5-F1-model_v4_TED03"],["TED%3AAF-A0A0S7X9E4-F1-model_v4_TED01","TED novel fold AF-A0A0S7X9E4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1703781","Latescibacteria bacterium DG_63"]]},{"id":"NCBITaxon:1704028","l":"Planctomycetes bacterium SM23 25","na":2,"nb":1,"a":[["TED%3AAF-A0A0S8E147-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S8E147-F1-model_v4_TED01"],["TED%3AAF-A0A0S8EDG7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S8EDG7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1704028","Planctomycetes bacterium SM23_25"]]},{"id":"NCBITaxon:1704499","l":"Methylovulum psychrotolerans","na":2,"nb":1,"a":[["TED%3AAF-A0A2S5CPZ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5CPZ3-F1-model_v4_TED01"],["TED%3AAF-A0A1Z4BUX9-F1-model_v4_TED02","TED novel fold AF-A0A1Z4BUX9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1704499","Methylovulum psychrotolerans"]]},{"id":"NCBITaxon:170673","l":"Vibrio kanaloae","na":1,"nb":2,"a":[["TED%3AAF-A0A4U1Z3U9-F1-model_v4_TED01","TED novel fold AF-A0A4U1Z3U9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A170673","Vibrio kanaloae"],["NCBITaxon%3A1191299","Vibrio kanaloae 5S-149"]]},{"id":"NCBITaxon:1707093","l":"Heyndrickxia camelliae","na":2,"nb":1,"a":[["TED%3AAF-A0A2N3LKI2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3LKI2-F1-model_v4_TED01"],["TED%3AAF-A0A2N3LJD8-F1-model_v4_TED01","TED novel fold AF-A0A2N3LJD8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1707093","Heyndrickxia camelliae"]]},{"id":"NCBITaxon:171282","l":"Mycoplasmopsis columboralis","na":1,"nb":2,"a":[["TED%3AAF-A0A449B6Z6-F1-model_v4_TED01","TED novel fold AF-A0A449B6Z6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A171282","Mycoplasmopsis columboralis"],["NCBITaxon%3A1408458","Mycoplasmopsis columboralis ATCC 29258"]]},{"id":"NCBITaxon:1714254","l":"Caldivirga sp. JCHS 4","na":2,"nb":1,"a":[["TED%3AAF-A0A101XLH7-F1-model_v4_TED01","TED novel fold AF-A0A101XLH7-F1-model_v4_TED01"],["TED%3AAF-A0A124IVB1-F1-model_v4_TED02","TED novel fold AF-A0A124IVB1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1714254","Caldivirga sp. JCHS_4"]]},{"id":"NCBITaxon:1718998","l":"Streptomyces sp. TSRI0281","na":2,"nb":1,"a":[["TED%3AAF-A0A1Q4ZJ45-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q4ZJ45-F1-model_v4_TED01"],["TED%3AAF-A0A1Q4Z284-F1-model_v4_TED01","TED novel fold AF-A0A1Q4Z284-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1718998","Streptomyces sp. TSRI0281"]]},{"id":"NCBITaxon:172044","l":"Sphingomonas yabuuchiae","na":1,"nb":2,"a":[["TED%3AAF-A0A147IMF7-F1-model_v4_TED02","TED novel fold AF-A0A147IMF7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A172044","Sphingomonas yabuuchiae"],["NCBITaxon%3A1508805","Sphingorhabdus buctiana"]]},{"id":"NCBITaxon:172045","l":"Elizabethkingia miricola","na":1,"nb":2,"a":[["TED%3AAF-A0A0D5BKG2-F1-model_v4_TED01","TED novel fold AF-A0A0D5BKG2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A238","Elizabethkingia meningoseptica"],["NCBITaxon%3A172045","Elizabethkingia miricola"]]},{"id":"NCBITaxon:173366","l":"Methylocystis rosea","na":1,"nb":2,"a":[["TED%3AAF-A0A6B8LTI5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6B8LTI5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A173366","Methylocystis rosea"],["NCBITaxon%3A1132444","Methylocystis rosea SV97"]]},{"id":"NCBITaxon:1734395","l":"Desulfitibacter sp. BRH c19","na":2,"nb":1,"a":[["TED%3AAF-A0A124IG40-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A124IG40-F1-model_v4_TED01"],["TED%3AAF-A0A124IHE3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A124IHE3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1734395","Desulfitibacter sp. BRH_c19"]]},{"id":"NCBITaxon:1734398","l":"Gracilibacter sp. BRH c7a","na":2,"nb":1,"a":[["TED%3AAF-A0A101VP94-F1-model_v4_TED01","TED novel fold AF-A0A101VP94-F1-model_v4_TED01"],["TED%3AAF-A0A117SDZ2-F1-model_v4_TED01","TED novel fold AF-A0A117SDZ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1734398","Gracilibacter sp. BRH_c7a"]]},{"id":"NCBITaxon:1735676","l":"Sphingomonas sp. Leaf10","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q4DHC6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0Q4DHC6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A28214","Sphingomonas sp."],["NCBITaxon%3A1735676","Sphingomonas sp. Leaf10"]]},{"id":"NCBITaxon:1735677","l":"Microbacterium sp. Leaf203","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q4DGD5-F1-model_v4_TED02","TED novel fold AF-A0A0Q4DGD5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A51671","Microbacterium sp."],["NCBITaxon%3A1735677","Microbacterium sp. Leaf203"]]},{"id":"NCBITaxon:1735692","l":"Sphingomonas sp. Leaf25","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q4IJQ9-F1-model_v4_TED03","TED novel fold AF-A0A0Q4IJQ9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A28214","Sphingomonas sp."],["NCBITaxon%3A1735692","Sphingomonas sp. Leaf25"]]},{"id":"NCBITaxon:1736139","l":"Kocuria subflava","na":1,"nb":2,"a":[["TED%3AAF-A0A846U4G8-F1-model_v4_TED01","TED novel fold AF-A0A846U4G8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1871328","Kocuria sp."],["NCBITaxon%3A1736139","Kocuria subflava"]]},{"id":"NCBITaxon:1736213","l":"Sphingomonas sp. Leaf30","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q4JRM2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0Q4JRM2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A28214","Sphingomonas sp."],["NCBITaxon%3A1736213","Sphingomonas sp. Leaf30"]]},{"id":"NCBITaxon:1736230","l":"Sphingomonas sp. Leaf67","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q4PM00-F1-model_v4_TED01","TED novel fold AF-A0A0Q4PM00-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28214","Sphingomonas sp."],["NCBITaxon%3A1736230","Sphingomonas sp. Leaf67"]]},{"id":"NCBITaxon:1736232","l":"Arthrobacter sp. Leaf69","na":1,"nb":2,"a":[["TED%3AAF-A0A0S9BSZ3-F1-model_v4_TED01","TED novel fold AF-A0A0S9BSZ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1667","Arthrobacter sp."],["NCBITaxon%3A1736232","Arthrobacter sp. Leaf69"]]},{"id":"NCBITaxon:1736241","l":"Methylobacterium sp. Leaf85","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q4UFR1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q4UFR1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A409","Methylobacterium sp."],["NCBITaxon%3A1736241","Methylobacterium sp. Leaf85"]]},{"id":"NCBITaxon:1736267","l":"Pseudomonas sp. Leaf127","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q5FPX8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0Q5FPX8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A1736267","Pseudomonas sp. Leaf127"]]},{"id":"NCBITaxon:1736286","l":"Pedobacter sp. Leaf176","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q5NJJ8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0Q5NJJ8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1411316","Pedobacter sp."],["NCBITaxon%3A1736286","Pedobacter sp. Leaf176"]]},{"id":"NCBITaxon:1736339","l":"Cellulomonas sp. Leaf334","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q5J3M3-F1-model_v4_TED02","TED novel fold AF-A0A0Q5J3M3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A40001","Cellulomonas sp."],["NCBITaxon%3A1736339","Cellulomonas sp. Leaf334"]]},{"id":"NCBITaxon:1736351","l":"Flavobacterium sp. Leaf359","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q5UMD8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q5UMD8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A239","Flavobacterium sp."],["NCBITaxon%3A1736351","Flavobacterium sp. Leaf359"]]},{"id":"NCBITaxon:1736353","l":"Brevundimonas sp. Leaf363","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q5VGL5-F1-model_v4_TED01","TED novel fold AF-A0A0Q5VGL5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1871086","Brevundimonas sp."],["NCBITaxon%3A1736353","Brevundimonas sp. Leaf363"]]},{"id":"NCBITaxon:1736361","l":"Chryseobacterium sp. Leaf394","na":1,"nb":2,"a":[["TED%3AAF-A0A0T0M6Q0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0T0M6Q0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1871047","Chryseobacterium sp."],["NCBITaxon%3A1736361","Chryseobacterium sp. Leaf394"]]},{"id":"NCBITaxon:1736362","l":"Cellulomonas sp. Leaf395","na":1,"nb":2,"a":[["TED%3AAF-A0A0T0MKR8-F1-model_v4_TED01","TED novel fold AF-A0A0T0MKR8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A40001","Cellulomonas sp."],["NCBITaxon%3A1736362","Cellulomonas sp. Leaf395"]]},{"id":"NCBITaxon:1736378","l":"Aurantimonas sp. Leaf443","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q6EX14-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A0Q6EX14-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1872654","Aurantimonas sp."],["NCBITaxon%3A1736378","Aurantimonas sp. Leaf443"]]},{"id":"NCBITaxon:1736380","l":"Rhizobium sp. Leaf453","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q6GSI8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q6GSI8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A391","Rhizobium sp."],["NCBITaxon%3A1736380","Rhizobium sp. Leaf453"]]},{"id":"NCBITaxon:1736423","l":"Devosia sp. Root105","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q6NWX9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q6NWX9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1871048","Devosia sp."],["NCBITaxon%3A1736423","Devosia sp. Root105"]]},{"id":"NCBITaxon:1736431","l":"Nocardioides sp. Root122","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q6VQ53-F1-model_v4_TED01","TED novel fold AF-A0A0Q6VQ53-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A35761","Nocardioides sp."],["NCBITaxon%3A1736431","Nocardioides sp. Root122"]]},{"id":"NCBITaxon:1736436","l":"Afipia sp. Root123D2","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q6Z3G8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q6Z3G8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1871052","Afipia sp."],["NCBITaxon%3A1736436","Afipia sp. Root123D2"]]},{"id":"NCBITaxon:1736471","l":"Duganella sp. Root1480D1","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q7XEM4-F1-model_v4_TED01","TED novel fold AF-A0A0Q7XEM4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1904440","Duganella sp."],["NCBITaxon%3A1736471","Duganella sp. Root1480D1"]]},{"id":"NCBITaxon:1736482","l":"Rhodanobacter sp. Root179","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q8MB65-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0Q8MB65-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1883446","Rhodanobacter sp."],["NCBITaxon%3A1736482","Rhodanobacter sp. Root179"]]},{"id":"NCBITaxon:1736491","l":"Sphingopyxis sp. Root214","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q8S0P9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q8S0P9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1908224","Sphingopyxis sp."],["NCBITaxon%3A1736491","Sphingopyxis sp. Root214"]]},{"id":"NCBITaxon:1736501","l":"Sphingomonas sp. Root241","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q8XHQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q8XHQ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28214","Sphingomonas sp."],["NCBITaxon%3A1736501","Sphingomonas sp. Root241"]]},{"id":"NCBITaxon:1736511","l":"Rhizobacter sp. Root29","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q6MMM8-F1-model_v4_TED02","TED novel fold AF-A0A0Q6MMM8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1909292","Rhizobacter sp."],["NCBITaxon%3A1736511","Rhizobacter sp. Root29"]]},{"id":"NCBITaxon:1736517","l":"Massilia sp. Root335","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q6SWW0-F1-model_v4_TED03","TED novel fold AF-A0A0Q6SWW0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1882437","Massilia sp."],["NCBITaxon%3A1736517","Massilia sp. Root335"]]},{"id":"NCBITaxon:1736532","l":"Massilia sp. Root418","na":2,"nb":1,"a":[["TED%3AAF-A0A0Q7EKH3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0Q7EKH3-F1-model_v4_TED02"],["TED%3AAF-A0A0Q7ERD3-F1-model_v4_TED02","TED novel fold AF-A0A0Q7ERD3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1736532","Massilia sp. Root418"]]},{"id":"NCBITaxon:1736533","l":"Flavobacterium sp. Root420","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q7FJW1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q7FJW1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A239","Flavobacterium sp."],["NCBITaxon%3A1736533","Flavobacterium sp. Root420"]]},{"id":"NCBITaxon:1736539","l":"Angustibacter sp. Root456","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q7JT80-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q7JT80-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1871064","Angustibacter sp."],["NCBITaxon%3A1736539","Angustibacter sp. Root456"]]},{"id":"NCBITaxon:1736546","l":"Cellulomonas sp. Root485","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q7MAF1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q7MAF1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A40001","Cellulomonas sp."],["NCBITaxon%3A1736546","Cellulomonas sp. Root485"]]},{"id":"NCBITaxon:1736550","l":"Aeromicrobium sp. Root495","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q7QLK8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0Q7QLK8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1871063","Aeromicrobium sp."],["NCBITaxon%3A1736550","Aeromicrobium sp. Root495"]]},{"id":"NCBITaxon:1736604","l":"Pseudomonas sp. Root9","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q8ZAK6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A0Q8ZAK6-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A1736604","Pseudomonas sp. Root9"]]},{"id":"NCBITaxon:1736605","l":"Flavobacterium sp. Root901","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q8ZZQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q8ZZQ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A239","Flavobacterium sp."],["NCBITaxon%3A1736605","Flavobacterium sp. Root901"]]},{"id":"NCBITaxon:1742858","l":"Chryseobacterium sp. JAH","na":2,"nb":1,"a":[["TED%3AAF-A0A101C883-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A101C883-F1-model_v4_TED02"],["TED%3AAF-A0A117K7K3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A117K7K3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1742858","Chryseobacterium sp. JAH"]]},{"id":"NCBITaxon:1743174","l":"Polynucleobacter tropicus","na":1,"nb":2,"a":[["TED%3AAF-A0A6M9Q7P4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6M9Q7P4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1743163","Polynucleobacter campilacus"],["NCBITaxon%3A1743174","Polynucleobacter tropicus"]]},{"id":"NCBITaxon:1754191","l":"Piromyces finnis","na":2,"nb":1,"a":[["TED%3AAF-A0A1Y1UXN1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1Y1UXN1-F1-model_v4_TED03"],["TED%3AAF-A0A1Y1VE46-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y1VE46-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1754191","Piromyces finnis"]]},{"id":"NCBITaxon:1755241","l":"Anaerococcus nagyae","na":1,"nb":2,"a":[["TED%3AAF-A0A3E2TFG5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3E2TFG5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1755241","Anaerococcus nagyae"],["NCBITaxon%3A1872515","Anaerococcus sp."]]},{"id":"NCBITaxon:1758642","l":"Bacillus sp. V59.32b","na":2,"nb":1,"a":[["TED%3AAF-A0A3E2JA02-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3E2JA02-F1-model_v4_TED01"],["TED%3AAF-A0A3E2JWN3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3E2JWN3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1758642","Bacillus sp. V59.32b"]]},{"id":"NCBITaxon:1761874","l":"Paenibacillus sp. 453mf","na":2,"nb":1,"a":[["TED%3AAF-A0A1I6QRZ1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I6QRZ1-F1-model_v4_TED01"],["TED%3AAF-A0A1I6TGS5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I6TGS5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1761874","Paenibacillus sp. 453mf"]]},{"id":"NCBITaxon:1764569","l":"Acaryochloris thomasi RCC1774","na":2,"nb":1,"a":[["TED%3AAF-A0A2W1JLP0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2W1JLP0-F1-model_v4_TED02"],["TED%3AAF-A0A2W1K3W8-F1-model_v4_TED01","TED novel fold AF-A0A2W1K3W8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1764569","Acaryochloris thomasi RCC1774"]]},{"id":"NCBITaxon:1765049","l":"Azospira sp. I09","na":2,"nb":1,"a":[["TED%3AAF-A0A5H2YUS6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5H2YUS6-F1-model_v4_TED01"],["TED%3AAF-A0A5H2YE29-F1-model_v4_TED02","TED novel fold AF-A0A5H2YE29-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1765049","Azospira sp. I09"]]},{"id":"NCBITaxon:1768114","l":"bacterium F083","na":2,"nb":1,"a":[["TED%3AAF-A0A132HC91-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A132HC91-F1-model_v4_TED01"],["TED%3AAF-A0A132I168-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A132I168-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1768114","Candidatus Hemicellulosilyticus sp. F083"]]},{"id":"NCBITaxon:1769296","l":"Candidatus Methanomethylophilus sp. 1R26","na":2,"nb":1,"a":[["TED%3AAF-A0A0W7TGP4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0W7TGP4-F1-model_v4_TED01"],["TED%3AAF-A0A0W7TK49-F1-model_v4_TED01","TED novel fold AF-A0A0W7TK49-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1769296","Candidatus Methanomethylophilus sp. 1R26"]]},{"id":"NCBITaxon:177437","l":"Desulforapulum autotrophicum HRM2","na":1,"nb":2,"a":[["TED%3AAF-C0QA36-F1-model_v4_TED03","TED novel fold AF-C0QA36-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2296","Desulforapulum autotrophicum"],["NCBITaxon%3A177437","Desulforapulum autotrophicum HRM2"]]},{"id":"NCBITaxon:1775674","l":"Candidatus Aegiribacteria sp. MLS C","na":2,"nb":1,"a":[["TED%3AAF-A0A1V4MWG7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V4MWG7-F1-model_v4_TED02"],["TED%3AAF-A0A1V4MY69-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V4MY69-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1775674","Candidatus Aegiribacteria sp. MLS_C"]]},{"id":"NCBITaxon:1775675","l":"Firmicutes bacterium ML8 F2","na":2,"nb":1,"a":[["TED%3AAF-A0A1V4M7X3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1V4M7X3-F1-model_v4_TED03"],["TED%3AAF-A0A1V4M534-F1-model_v4_TED01","TED novel fold AF-A0A1V4M534-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1775675","Firmicutes bacterium ML8_F2"]]},{"id":"NCBITaxon:1775910","l":"Methylobacterium indicum","na":2,"nb":1,"a":[["TED%3AAF-A0A0J6R755-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0J6R755-F1-model_v4_TED02"],["TED%3AAF-A0A0J6RUM1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0J6RUM1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1775910","Methylobacterium indicum"]]},{"id":"NCBITaxon:1778672","l":"Novosphingobium flavum","na":2,"nb":1,"a":[["TED%3AAF-A0A7X1FQ38-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X1FQ38-F1-model_v4_TED01"],["TED%3AAF-A0A7X1KN98-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X1KN98-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1778672","Novosphingobium flavum"]]},{"id":"NCBITaxon:178399","l":"Marinomonas primoryensis","na":2,"nb":1,"a":[["TED%3AAF-A0A2Z4PVF9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z4PVF9-F1-model_v4_TED01"],["TED%3AAF-A0A2Z4PW34-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2Z4PW34-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A178399","Marinomonas primoryensis"]]},{"id":"NCBITaxon:179408","l":"Oscillatoria nigro-viridis PCC 7112","na":2,"nb":1,"a":[["TED%3AAF-K9VAQ4-F1-model_v4_TED02","TED highly-symmetric fold AF-K9VAQ4-F1-model_v4_TED02"],["TED%3AAF-K9VBA8-F1-model_v4_TED02","TED novel fold AF-K9VBA8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A179408","Phormidium nigroviride PCC 7112"]]},{"id":"NCBITaxon:1797182","l":"Acidobacteria bacterium RIFCSPLOWO2 02 FULL 65 29","na":2,"nb":1,"a":[["TED%3AAF-A0A1F2U0F4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F2U0F4-F1-model_v4_TED01"],["TED%3AAF-A0A1F2UBX0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F2UBX0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797182","Acidobacteria bacterium RIFCSPLOWO2_02_FULL_65_29"]]},{"id":"NCBITaxon:1797191","l":"","na":2,"nb":1,"a":[["TED%3AAF-A0A1F2TD39-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F2TD39-F1-model_v4_TED01"],["TED%3AAF-A0A1F2TJD6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F2TJD6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797191","Acidobacteria bacterium RIFCSPLOWO2_12_FULL_66_21"]]},{"id":"NCBITaxon:1797313","l":"Bacteroidetes bacterium GWA2 30 7","na":2,"nb":1,"a":[["TED%3AAF-A0A1F3DGK7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F3DGK7-F1-model_v4_TED01"],["TED%3AAF-A0A1F3E425-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F3E425-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797313","Bacteroidetes bacterium GWA2_30_7"]]},{"id":"NCBITaxon:1797364","l":"Bacteroidetes bacterium RIFCSPLOWO2 12 FULL 35 15","na":2,"nb":1,"a":[["TED%3AAF-A0A1F3PYF3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F3PYF3-F1-model_v4_TED01"],["TED%3AAF-A0A1F3Q4V2-F1-model_v4_TED03","TED novel fold AF-A0A1F3Q4V2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1797364","Bacteroidetes bacterium RIFCSPLOWO2_12_FULL_35_15"]]},{"id":"NCBITaxon:1797384","l":"Bdellovibrionales bacterium GWA2 49 15","na":2,"nb":1,"a":[["TED%3AAF-A0A1F3SPP1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F3SPP1-F1-model_v4_TED02"],["TED%3AAF-A0A1F3SSW7-F1-model_v4_TED03","TED novel fold AF-A0A1F3SSW7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1797384","Bdellovibrionales bacterium GWA2_49_15"]]},{"id":"NCBITaxon:1797396","l":"Bdellovibrionales bacterium RIFOXYC1 FULL 39 130","na":2,"nb":1,"a":[["TED%3AAF-A0A1F3V2D7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1F3V2D7-F1-model_v4_TED03"],["TED%3AAF-A0A1F3VI80-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F3VI80-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797396","Bdellovibrionales bacterium RIFOXYC1_FULL_39_130"]]},{"id":"NCBITaxon:1797403","l":"Bdellovibrionales bacterium RIFOXYD1 FULL 53 11","na":2,"nb":1,"a":[["TED%3AAF-A0A1F3XT58-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1F3XT58-F1-model_v4_TED03"],["TED%3AAF-A0A1F3Y1B7-F1-model_v4_TED01","TED novel fold AF-A0A1F3Y1B7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797403","Bdellovibrionales bacterium RIFOXYD1_FULL_53_11"]]},{"id":"NCBITaxon:1797675","l":"Chloroflexi bacterium RIFOXYD12 FULL 57 15","na":2,"nb":1,"a":[["TED%3AAF-A0A1F8TTA5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F8TTA5-F1-model_v4_TED02"],["TED%3AAF-A0A1F8U4I7-F1-model_v4_TED01","TED novel fold AF-A0A1F8U4I7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797675","Chloroflexi bacterium RIFOXYD12_FULL_57_15"]]},{"id":"NCBITaxon:1797922","l":"Elusimicrobia bacterium GWA2 56 46","na":2,"nb":1,"a":[["TED%3AAF-A0A1F9QR23-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F9QR23-F1-model_v4_TED01"],["TED%3AAF-A0A1F9QR31-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F9QR31-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797922","Elusimicrobia bacterium GWA2_56_46"]]},{"id":"NCBITaxon:1797927","l":"Elusimicrobia bacterium GWA2 69 24","na":2,"nb":1,"a":[["TED%3AAF-A0A1F9RRG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F9RRG8-F1-model_v4_TED01"],["TED%3AAF-A0A1F9S3D2-F1-model_v4_TED01","TED novel fold AF-A0A1F9S3D2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797927","Elusimicrobia bacterium GWA2_69_24"]]},{"id":"NCBITaxon:1797973","l":"Elusimicrobia bacterium RIFOXYD2 FULL 34 15","na":2,"nb":1,"a":[["TED%3AAF-A0A1F9YV72-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F9YV72-F1-model_v4_TED01"],["TED%3AAF-A0A1F9Z4J2-F1-model_v4_TED03","TED novel fold AF-A0A1F9Z4J2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1797973","Elusimicrobia bacterium RIFOXYD2_FULL_34_15"]]},{"id":"NCBITaxon:1798278","l":"Gammaproteobacteria bacterium RIFCSPHIGHO2 12 FULL 38 11","na":2,"nb":1,"a":[["TED%3AAF-A0A1G0HEL0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G0HEL0-F1-model_v4_TED01"],["TED%3AAF-A0A1G0HH18-F1-model_v4_TED01","TED novel fold AF-A0A1G0HH18-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798278","Gammaproteobacteria bacterium RIFCSPHIGHO2_12_FULL_38_11"]]},{"id":"NCBITaxon:1798415","l":"Hydrogenophilales bacterium RIFOXYD1 FULL 62 11","na":2,"nb":1,"a":[["TED%3AAF-A0A1G0NAM6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G0NAM6-F1-model_v4_TED02"],["TED%3AAF-A0A1G0NGR4-F1-model_v4_TED02","TED novel fold AF-A0A1G0NGR4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798415","Hydrogenophilales bacterium RIFOXYD1_FULL_62_11"]]},{"id":"NCBITaxon:1798571","l":"Lentisphaerae bacterium GWF2 44 16","na":2,"nb":1,"a":[["TED%3AAF-A0A1G0YJM0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1G0YJM0-F1-model_v4_TED03"],["TED%3AAF-A0A1G0Z6T1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G0Z6T1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798571","Lentisphaerae bacterium GWF2_44_16"]]},{"id":"NCBITaxon:1798574","l":"Lentisphaerae bacterium GWF2 50 93","na":2,"nb":1,"a":[["TED%3AAF-A0A1G0ZAS7-F1-model_v4_TED09","TED novel fold AF-A0A1G0ZAS7-F1-model_v4_TED09"],["TED%3AAF-A0A1G0ZHW3-F1-model_v4_TED02","TED novel fold AF-A0A1G0ZHW3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798574","Lentisphaerae bacterium GWF2_50_93"]]},{"id":"NCBITaxon:1798575","l":"Lentisphaerae bacterium GWF2 52 8","na":2,"nb":1,"a":[["TED%3AAF-A0A1G0YT11-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G0YT11-F1-model_v4_TED02"],["TED%3AAF-A0A1G0ZBK9-F1-model_v4_TED03","TED novel fold AF-A0A1G0ZBK9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1798575","Lentisphaerae bacterium GWF2_52_8"]]},{"id":"NCBITaxon:1798582","l":"Lentisphaerae bacterium RIFOXYC12 FULL 60 16","na":2,"nb":1,"a":[["TED%3AAF-A0A1G0ZUV5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1G0ZUV5-F1-model_v4_TED03"],["TED%3AAF-A0A1G0ZSX7-F1-model_v4_TED01","TED novel fold AF-A0A1G0ZSX7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798582","Lentisphaerae bacterium RIFOXYC12_FULL_60_16"]]},{"id":"NCBITaxon:1799370","l":"bacterium SCGC AG-212-C10","na":2,"nb":1,"a":[["TED%3AAF-A0A177PWS0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A177PWS0-F1-model_v4_TED01"],["TED%3AAF-A0A177Q9Q9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A177Q9Q9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1799370","bacterium SCGC AG-212-C10"]]},{"id":"NCBITaxon:1799657","l":"Planctomyces sp. SCGC AG-212-M04","na":2,"nb":1,"a":[["TED%3AAF-A0A177R1F8-F1-model_v4_TED04","TED novel fold AF-A0A177R1F8-F1-model_v4_TED04"],["TED%3AAF-A0A177R2Y2-F1-model_v4_TED02","TED novel fold AF-A0A177R2Y2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1799657","Planctomyces sp. SCGC AG-212-M04"]]},{"id":"NCBITaxon:1801658","l":"candidate division NC10 bacterium RIFCSPLOWO2 02 FULL 66 22","na":2,"nb":1,"a":[["TED%3AAF-A0A1F4QAX7-F1-model_v4_TED01","TED novel fold AF-A0A1F4QAX7-F1-model_v4_TED01"],["TED%3AAF-A0A1F4QCV8-F1-model_v4_TED01","TED novel fold AF-A0A1F4QCV8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801658","candidate division NC10 bacterium RIFCSPLOWO2_02_FULL_66_22"]]},{"id":"NCBITaxon:1801957","l":"Planctomycetes bacterium GWF2 41 51","na":2,"nb":1,"a":[["TED%3AAF-A0A1G2XX38-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G2XX38-F1-model_v4_TED01"],["TED%3AAF-A0A1G2XVX2-F1-model_v4_TED01","TED novel fold AF-A0A1G2XVX2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801957","Planctomycetes bacterium GWF2_41_51"]]},{"id":"NCBITaxon:1801968","l":"Planctomycetes bacterium RBG 16 55 9","na":2,"nb":1,"a":[["TED%3AAF-A0A1G2ZS35-F1-model_v4_TED02","TED novel fold AF-A0A1G2ZS35-F1-model_v4_TED02"],["TED%3AAF-A0A1G3A0U8-F1-model_v4_TED01","TED novel fold AF-A0A1G3A0U8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801968","Planctomycetes bacterium RBG_16_55_9"]]},{"id":"NCBITaxon:1802176","l":"Spirochaetes bacterium GWB1 59 5","na":2,"nb":1,"a":[["TED%3AAF-A0A1G3LC70-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1G3LC70-F1-model_v4_TED03"],["TED%3AAF-A0A1G3M4D2-F1-model_v4_TED01","TED novel fold AF-A0A1G3M4D2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802176","Spirochaetes bacterium GWB1_59_5"]]},{"id":"NCBITaxon:1802205","l":"Candidatus Staskawiczbacteria bacterium RIFCSPHIGHO2 02 FULL 34 10","na":2,"nb":1,"a":[["TED%3AAF-A0A1G2HYQ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G2HYQ2-F1-model_v4_TED01"],["TED%3AAF-A0A1G2HVZ8-F1-model_v4_TED01","TED novel fold AF-A0A1G2HVZ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802205","Candidatus Staskawiczbacteria bacterium RIFCSPHIGHO2_02_FULL_34_10"]]},{"id":"NCBITaxon:180344","l":"Vagococcus elongatus","na":2,"nb":1,"a":[["TED%3AAF-A0A430AW26-F1-model_v4_TED02","TED novel fold AF-A0A430AW26-F1-model_v4_TED02"],["TED%3AAF-A0A430AZH1-F1-model_v4_TED01","TED novel fold AF-A0A430AZH1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A180344","Vagococcus elongatus"]]},{"id":"NCBITaxon:1803813","l":"Theionarchaea archaeon DG-70","na":2,"nb":1,"a":[["TED%3AAF-A0A151F6X2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A151F6X2-F1-model_v4_TED02"],["TED%3AAF-A0A151FCD0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A151FCD0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1803813","Theionarchaea archaeon DG-70"]]},{"id":"NCBITaxon:1803817","l":"Thermoplasmatales archaeon SG8-52-2","na":2,"nb":1,"a":[["TED%3AAF-A0A151E1N5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A151E1N5-F1-model_v4_TED01"],["TED%3AAF-A0A151DZ19-F1-model_v4_TED01","TED novel fold AF-A0A151DZ19-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1803817","Thermoplasmatales archaeon SG8-52-2"]]},{"id":"NCBITaxon:1805055","l":"Catenulispora sp. 13 1 20CM 3 70 7","na":2,"nb":1,"a":[["TED%3AAF-A0A1Q7W9R9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q7W9R9-F1-model_v4_TED01"],["TED%3AAF-A0A1Q7WCM7-F1-model_v4_TED02","TED novel fold AF-A0A1Q7WCM7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1805055","Catenulispora sp. 13_1_20CM_3_70_7"]]},{"id":"NCBITaxon:1805249","l":"Candidatus Micrarchaeota archaeon CG1 02 51 15","na":2,"nb":1,"a":[["TED%3AAF-A0A1J4UL61-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1J4UL61-F1-model_v4_TED03"],["TED%3AAF-A0A1J4ULJ0-F1-model_v4_TED07","TED highly-symmetric fold AF-A0A1J4ULJ0-F1-model_v4_TED07"]],"b":[["NCBITaxon%3A1805249","Candidatus Micrarchaeota archaeon CG1_02_51_15"]]},{"id":"NCBITaxon:1805288","l":"Candidatus Omnitrophica bacterium CG1 02 46 14","na":2,"nb":1,"a":[["TED%3AAF-A0A1J4VL74-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1J4VL74-F1-model_v4_TED02"],["TED%3AAF-A0A1J4VTR0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1J4VTR0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1805288","Candidatus Omnitrophica bacterium CG1_02_46_14"]]},{"id":"NCBITaxon:1810840","l":"Piscirickettsiaceae bacterium NZ-RLO1","na":2,"nb":1,"a":[["TED%3AAF-A0A177W3E9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A177W3E9-F1-model_v4_TED03"],["TED%3AAF-A0A177W3K1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A177W3K1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1810840","Piscirickettsiaceae bacterium NZ-RLO1"]]},{"id":"NCBITaxon:1811677","l":"Methanocella sp. PtaU1.Bin125","na":2,"nb":1,"a":[["TED%3AAF-A0A1V4Z2A5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V4Z2A5-F1-model_v4_TED01"],["TED%3AAF-A0A1V4Z301-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V4Z301-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1811677","Methanocella sp. PtaU1.Bin125"]]},{"id":"NCBITaxon:1811688","l":"Methanosaeta sp. PtaU1.Bin060","na":2,"nb":1,"a":[["TED%3AAF-A0A1V5B5P4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5B5P4-F1-model_v4_TED01"],["TED%3AAF-A0A1V5BAI8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5BAI8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1811688","Methanosaeta sp. PtaU1.Bin060"]]},{"id":"NCBITaxon:1811693","l":"Pelotomaculum sp. PtaB.Bin104","na":2,"nb":1,"a":[["TED%3AAF-A0A1V4VN91-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V4VN91-F1-model_v4_TED02"],["TED%3AAF-A0A1V4VWP3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V4VWP3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1811693","Pelotomaculum sp. PtaB.Bin104"]]},{"id":"NCBITaxon:1811718","l":"Syntrophaceae bacterium PtaU1.Bin231","na":2,"nb":1,"a":[["TED%3AAF-A0A1V5EC01-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1V5EC01-F1-model_v4_TED03"],["TED%3AAF-A0A1V5DZZ4-F1-model_v4_TED02","TED novel fold AF-A0A1V5DZZ4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1811718","Syntrophaceae bacterium PtaU1.Bin231"]]},{"id":"NCBITaxon:1817773","l":"Candidatus Lambdaproteobacteria bacterium RIFOXYD2 FULL 56 26","na":2,"nb":1,"a":[["TED%3AAF-A0A1F6GPL7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1F6GPL7-F1-model_v4_TED03"],["TED%3AAF-A0A1F6GPV0-F1-model_v4_TED03","TED novel fold AF-A0A1F6GPV0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1817773","Candidatus Lambdaproteobacteria bacterium RIFOXYD2_FULL_56_26"]]},{"id":"NCBITaxon:1817813","l":"Candidatus Wallbacteria bacterium GWC2 49 35","na":2,"nb":1,"a":[["TED%3AAF-A0A1F7WM48-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F7WM48-F1-model_v4_TED01"],["TED%3AAF-A0A1F7X005-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F7X005-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1817813","Candidatus Wallbacteria bacterium GWC2_49_35"]]},{"id":"NCBITaxon:1817868","l":"Handelsmanbacteria sp. (strain RIFCSPLOWO2 12 FULL 64 10)","na":2,"nb":1,"a":[["TED%3AAF-A0A1F6C736-F1-model_v4_TED04","TED novel fold AF-A0A1F6C736-F1-model_v4_TED04"],["TED%3AAF-A0A1F6CTD9-F1-model_v4_TED04","TED novel fold AF-A0A1F6CTD9-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1817868","Candidatus Handelsmanbacteria bacterium RIFCSPLOWO2_12_FULL_64_10"]]},{"id":"NCBITaxon:1817874","l":"Candidatus Riflebacteria bacterium GWC2 50 8","na":2,"nb":1,"a":[["TED%3AAF-A0A1F7FYI5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F7FYI5-F1-model_v4_TED02"],["TED%3AAF-A0A1F7FJC4-F1-model_v4_TED02","TED novel fold AF-A0A1F7FJC4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1817874","Candidatus Riflebacteria bacterium GWC2_50_8"]]},{"id":"NCBITaxon:1817963","l":"","na":1,"nb":2,"a":[["TED%3AAF-A0A1V2GU95-F1-model_v4_TED02","TED novel fold AF-A0A1V2GU95-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2692566","Muricoccus harenae"],["NCBITaxon%3A1817963","Teichococcus deserti"]]},{"id":"NCBITaxon:181874","l":"Panaeolus cyanescens","na":2,"nb":1,"a":[["TED%3AAF-A0A409Y7D6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A409Y7D6-F1-model_v4_TED01"],["TED%3AAF-A0A409X270-F1-model_v4_TED01","TED novel fold AF-A0A409X270-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A181874","Panaeolus cyanescens"]]},{"id":"NCBITaxon:182087","l":"Favella ehrenbergii","na":2,"nb":1,"a":[["TED%3AAF-A0A7S3HZS1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3HZS1-F1-model_v4_TED01"],["TED%3AAF-A0A7S3MNX9-F1-model_v4_TED02","TED novel fold AF-A0A7S3MNX9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A182087","Favella ehrenbergii"]]},{"id":"NCBITaxon:1825094","l":"Amycolatopsis sp. M39","na":2,"nb":1,"a":[["TED%3AAF-A0A178XBM7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A178XBM7-F1-model_v4_TED02"],["TED%3AAF-A0A178WVL3-F1-model_v4_TED01","TED novel fold AF-A0A178WVL3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1825094","Amycolatopsis sp. M39"]]},{"id":"NCBITaxon:1825523","l":"Novimethylophilus kurashikiensis","na":2,"nb":1,"a":[["TED%3AAF-A0A2R5F8H7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2R5F8H7-F1-model_v4_TED01"],["TED%3AAF-A0A2R5FEB3-F1-model_v4_TED01","TED novel fold AF-A0A2R5FEB3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1825523","Novimethylophilus kurashikiensis"]]},{"id":"NCBITaxon:1827384","l":"Proteobacteria bacterium SG bin7","na":2,"nb":1,"a":[["TED%3AAF-A0A1W9HU97-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W9HU97-F1-model_v4_TED01"],["TED%3AAF-A0A1W9HM99-F1-model_v4_TED01","TED novel fold AF-A0A1W9HM99-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1827384","Proteobacteria bacterium SG_bin7"]]},{"id":"NCBITaxon:183589","l":"Pseudo-nitzschia multistriata","na":2,"nb":1,"a":[["TED%3AAF-A0A448Z036-F1-model_v4_TED02","TED novel fold AF-A0A448Z036-F1-model_v4_TED02"],["TED%3AAF-A0A448Z5N8-F1-model_v4_TED01","TED novel fold AF-A0A448Z5N8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A183589","Pseudo-nitzschia multistriata"]]},{"id":"NCBITaxon:1841598","l":"Candidatus Heimdallarchaeota archaeon LC 3","na":2,"nb":1,"a":[["TED%3AAF-A0A1Q9NQM7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q9NQM7-F1-model_v4_TED01"],["TED%3AAF-A0A1Q9N383-F1-model_v4_TED02","TED novel fold AF-A0A1Q9N383-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1841598","Candidatus Heimdallarchaeota archaeon LC_3"]]},{"id":"NCBITaxon:1842532","l":"Syntrophotalea acetylenivorans","na":1,"nb":2,"a":[["TED%3AAF-A0A1L3GKY2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1L3GKY2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29542","Syntrophotalea acetylenica"],["NCBITaxon%3A1842532","Syntrophotalea acetylenivorans"]]},{"id":"NCBITaxon:1849047","l":"Coleophoma cylindrospora","na":2,"nb":1,"a":[["TED%3AAF-A0A3D8QNW7-F1-model_v4_TED07","TED novel fold AF-A0A3D8QNW7-F1-model_v4_TED07"],["TED%3AAF-A0A3D8RHS1-F1-model_v4_TED01","TED novel fold AF-A0A3D8RHS1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1849047","Coleophoma cylindrospora"]]},{"id":"NCBITaxon:1849840","l":"Methylosinus sp. 3S-1","na":2,"nb":1,"a":[["TED%3AAF-A0A1A6FKT5-F1-model_v4_TED01","TED novel fold AF-A0A1A6FKT5-F1-model_v4_TED01"],["TED%3AAF-A0A1A6FNE4-F1-model_v4_TED01","TED novel fold AF-A0A1A6FNE4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1849840","Methylosinus sp. 3S-1"]]},{"id":"NCBITaxon:1850348","l":"Longibacter salinarum","na":2,"nb":1,"a":[["TED%3AAF-A0A2A8CV41-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2A8CV41-F1-model_v4_TED02"],["TED%3AAF-A0A2A8CZN2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A8CZN2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1850348","Longibacter salinarum"]]},{"id":"NCBITaxon:1852872","l":"Deltaproteobacteria bacterium ADurb.BinA179","na":2,"nb":1,"a":[["TED%3AAF-A0A1V5H945-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5H945-F1-model_v4_TED01"],["TED%3AAF-A0A1V5H9P7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5H9P7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852872","Deltaproteobacteria bacterium ADurb.BinA179"]]},{"id":"NCBITaxon:1852885","l":"Firmicutes bacterium ADurb.Bin193","na":2,"nb":1,"a":[["TED%3AAF-A0A1V5X829-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5X829-F1-model_v4_TED01"],["TED%3AAF-A0A1V5X8X8-F1-model_v4_TED02","TED novel fold AF-A0A1V5X8X8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1852885","Firmicutes bacterium ADurb.Bin193"]]},{"id":"NCBITaxon:1852892","l":"Firmicutes bacterium ADurb.Bin419","na":2,"nb":1,"a":[["TED%3AAF-A0A1V5M7Y9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V5M7Y9-F1-model_v4_TED02"],["TED%3AAF-A0A1V5MP57-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V5MP57-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1852892","Firmicutes bacterium ADurb.Bin419"]]},{"id":"NCBITaxon:1852897","l":"Firmicutes bacterium ADurb.BinA205","na":2,"nb":1,"a":[["TED%3AAF-A0A1V5GD15-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V5GD15-F1-model_v4_TED02"],["TED%3AAF-A0A1V5GPI2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5GPI2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852897","Firmicutes bacterium ADurb.BinA205"]]},{"id":"NCBITaxon:1852900","l":"Lentisphaerae bacterium ADurb.Bin242","na":2,"nb":1,"a":[["TED%3AAF-A0A1V5UT20-F1-model_v4_TED01","TED novel fold AF-A0A1V5UT20-F1-model_v4_TED01"],["TED%3AAF-A0A1V5V7R0-F1-model_v4_TED04","TED novel fold AF-A0A1V5V7R0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1852900","Lentisphaerae bacterium ADurb.Bin242"]]},{"id":"NCBITaxon:1852903","l":"Planctomycetes bacterium ADurb.Bin126","na":2,"nb":1,"a":[["TED%3AAF-A0A1V6D5B8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1V6D5B8-F1-model_v4_TED03"],["TED%3AAF-A0A1V6D343-F1-model_v4_TED04","TED novel fold AF-A0A1V6D343-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1852903","Planctomycetes bacterium ADurb.Bin126"]]},{"id":"NCBITaxon:1852908","l":"Spirochaetes bacterium ADurb.Bin110","na":2,"nb":1,"a":[["TED%3AAF-A0A1V6E1F0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V6E1F0-F1-model_v4_TED01"],["TED%3AAF-A0A1V6E573-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V6E573-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852908","Spirochaetes bacterium ADurb.Bin110"]]},{"id":"NCBITaxon:1852939","l":"Parcubacteria group bacterium ADurb.Bin216","na":2,"nb":1,"a":[["TED%3AAF-A0A1V5WXV8-F1-model_v4_TED01","TED novel fold AF-A0A1V5WXV8-F1-model_v4_TED01"],["TED%3AAF-A0A1V5X3E8-F1-model_v4_TED01","TED novel fold AF-A0A1V5X3E8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852939","Parcubacteria group bacterium ADurb.Bin216"]]},{"id":"NCBITaxon:1852943","l":"Parcubacteria group bacterium ADurb.Bin326","na":2,"nb":1,"a":[["TED%3AAF-A0A1V5R4C7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5R4C7-F1-model_v4_TED01"],["TED%3AAF-A0A1V5R4R5-F1-model_v4_TED01","TED novel fold AF-A0A1V5R4R5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852943","Parcubacteria group bacterium ADurb.Bin326"]]},{"id":"NCBITaxon:1854588","l":"Pseudonocardia sp. MH-G8","na":2,"nb":1,"a":[["TED%3AAF-A0A263DNN9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A263DNN9-F1-model_v4_TED01"],["TED%3AAF-A0A263DLQ4-F1-model_v4_TED01","TED novel fold AF-A0A263DLQ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1854588","Pseudonocardia sp. MH-G8"]]},{"id":"NCBITaxon:1855298","l":"Mucilaginibacter sp. YR332","na":2,"nb":1,"a":[["TED%3AAF-A0A497ZA77-F1-model_v4_TED02","TED novel fold AF-A0A497ZA77-F1-model_v4_TED02"],["TED%3AAF-A0A497ZHE4-F1-model_v4_TED02","TED novel fold AF-A0A497ZHE4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1855298","Mucilaginibacter sp. YR332"]]},{"id":"NCBITaxon:1855304","l":"Rhizobium sp. AN5","na":2,"nb":1,"a":[["TED%3AAF-A0A285XY16-F1-model_v4_TED02","TED novel fold AF-A0A285XY16-F1-model_v4_TED02"],["TED%3AAF-A0A285XY16-F1-model_v4_TED04","TED novel fold AF-A0A285XY16-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1855304","Rhizobium sp. AN5"]]},{"id":"NCBITaxon:1855374","l":"Lachnospiraceae bacterium KH1T2","na":2,"nb":1,"a":[["TED%3AAF-A0A1I4C1K4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I4C1K4-F1-model_v4_TED02"],["TED%3AAF-A0A1I4DRK9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I4DRK9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1855374","Lachnospiraceae bacterium KH1T2"]]},{"id":"NCBITaxon:1857892","l":"Streptomyces sp. MP131-18","na":1,"nb":2,"a":[["TED%3AAF-A0A1V2RLA5-F1-model_v4_TED02","TED novel fold AF-A0A1V2RLA5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A1857892","Streptomyces sp. MP131-18"]]},{"id":"NCBITaxon:1862385","l":"Aquincola rivuli","na":2,"nb":1,"a":[["TED%3AAF-A0A437R9J1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A437R9J1-F1-model_v4_TED01"],["TED%3AAF-A0A437RCC8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A437RCC8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1862385","Rubrivivax rivuli"]]},{"id":"NCBITaxon:1864825","l":"Siphonobacter sp. BAB-5405","na":2,"nb":1,"a":[["TED%3AAF-A0A2N7BBA0-F1-model_v4_TED02","TED novel fold AF-A0A2N7BBA0-F1-model_v4_TED02"],["TED%3AAF-A0A2N7BBU2-F1-model_v4_TED02","TED novel fold AF-A0A2N7BBU2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1864825","Siphonobacter sp. BAB-5405"]]},{"id":"NCBITaxon:1871053","l":"Phenylobacterium sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A525JER3-F1-model_v4_TED03","TED novel fold AF-A0A525JER3-F1-model_v4_TED03"],["TED%3AAF-A0A525JM96-F1-model_v4_TED02","TED novel fold AF-A0A525JM96-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1871053","Phenylobacterium sp."]]},{"id":"NCBITaxon:1872493","l":"Ammonifex sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A3A6N187-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A6N187-F1-model_v4_TED01"],["TED%3AAF-A0A3A6N562-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3A6N562-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1872493","Ammonifex sp."]]},{"id":"NCBITaxon:1872586","l":"Aquimarina sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2D9XY70-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9XY70-F1-model_v4_TED01"],["TED%3AAF-A0A2D9XYI3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9XYI3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1872586","Aquimarina sp."]]},{"id":"NCBITaxon:1878","l":"Micromonospora rosea","na":1,"nb":2,"a":[["Pfam%3APF07091","Ribosomal RNA methyltransferase (FmrO)"]],"b":[["NCBITaxon%3A1878","Micromonospora rosea"],["NCBITaxon%3A31942","Micromonospora rosea MNG00182"]]},{"id":"NCBITaxon:187868","l":"Paracidovorax valerianellae","na":2,"nb":1,"a":[["TED%3AAF-A0A1G6MUY9-F1-model_v4_TED01","TED novel fold AF-A0A1G6MUY9-F1-model_v4_TED01"],["TED%3AAF-A0A1G6R6F0-F1-model_v4_TED01","TED novel fold AF-A0A1G6R6F0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A187868","Paracidovorax valerianellae"]]},{"id":"NCBITaxon:1880","l":"Micromonospora olivasterospora","na":2,"nb":1,"a":[["Pfam%3APF07091","Ribosomal RNA methyltransferase (FmrO)"],["TED%3AAF-A0A562IGP2-F1-model_v4_TED01","TED novel fold AF-A0A562IGP2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1880","Micromonospora olivasterospora"]]},{"id":"NCBITaxon:1880848","l":"Vibrio sp. 10N.261.49.E11","na":1,"nb":2,"a":[["TED%3AAF-A0A2N7J4P0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N7J4P0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A678","Vibrio sp."],["NCBITaxon%3A1880848","Vibrio sp. 10N.261.49.E11"]]},{"id":"NCBITaxon:1881048","l":"Mucilaginibacter sp. OK268","na":2,"nb":1,"a":[["TED%3AAF-A0A1H0QSC9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H0QSC9-F1-model_v4_TED02"],["TED%3AAF-A0A1H0VSK4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H0VSK4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1881048","Mucilaginibacter sp. OK268"]]},{"id":"NCBITaxon:1882483","l":"Testicularia cyperi","na":2,"nb":1,"a":[["TED%3AAF-A0A317XPK1-F1-model_v4_TED01","TED novel fold AF-A0A317XPK1-F1-model_v4_TED01"],["TED%3AAF-A0A317XPQ7-F1-model_v4_TED01","TED novel fold AF-A0A317XPQ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1882483","Testicularia cyperi"]]},{"id":"NCBITaxon:1882763","l":"Bacillus sp. OV166","na":2,"nb":1,"a":[["TED%3AAF-A0A1Y6FXP3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y6FXP3-F1-model_v4_TED01"],["TED%3AAF-A0A1Y6G3A8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y6G3A8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1882763","Bacillus sp. OV166"]]},{"id":"NCBITaxon:1884367","l":"Chitinophaga sp. CF118","na":2,"nb":1,"a":[["TED%3AAF-A0A1I1X7T5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I1X7T5-F1-model_v4_TED02"],["TED%3AAF-A0A1I2BGU5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2BGU5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1884367","Chitinophaga sp. CF118"]]},{"id":"NCBITaxon:188908","l":"Oleispira antarctica","na":1,"nb":2,"a":[["TED%3AAF-A0A1Y5HYG0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y5HYG0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A188908","Oleispira antarctica"],["NCBITaxon%3A698738","Oleispira antarctica RB-8"]]},{"id":"NCBITaxon:1894","l":"Kitasatospora aureofaciens","na":2,"nb":1,"a":[["Pfam%3APF01933","2-phospho-L-lactate transferase CofD"],["TED%3AAF-A0A1E7NF13-F1-model_v4_TED01","TED novel fold AF-A0A1E7NF13-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1894","Kitasatospora aureofaciens"]]},{"id":"NCBITaxon:1895664","l":"Halanaerobium sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A315QT49-F1-model_v4_TED03","TED novel fold AF-A0A315QT49-F1-model_v4_TED03"],["TED%3AAF-A0A315R434-F1-model_v4_TED03","TED novel fold AF-A0A315R434-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1895664","Halanaerobium sp."]]},{"id":"NCBITaxon:1895743","l":"Chlamydiales bacterium 38-26","na":2,"nb":1,"a":[["TED%3AAF-A0A1M3CS01-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M3CS01-F1-model_v4_TED02"],["TED%3AAF-A0A1M3CPU2-F1-model_v4_TED05","TED novel fold AF-A0A1M3CPU2-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1895743","Chlamydiales bacterium 38-26"]]},{"id":"NCBITaxon:1895788","l":"Microbacterium sp. 71-36","na":2,"nb":1,"a":[["TED%3AAF-A0A2R9U991-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2R9U991-F1-model_v4_TED01"],["TED%3AAF-A0A2R9UFZ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2R9UFZ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895788","Microbacterium sp. 71-36"]]},{"id":"NCBITaxon:1895833","l":"Solirubrobacterales bacterium 70-9","na":2,"nb":1,"a":[["TED%3AAF-A0A1M3BJ71-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M3BJ71-F1-model_v4_TED01"],["TED%3AAF-A0A1M3BK47-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M3BK47-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1895833","Solirubrobacterales bacterium 70-9"]]},{"id":"NCBITaxon:1895923","l":"Bacteroidetes bacterium 43-16","na":2,"nb":1,"a":[["TED%3AAF-A0A1M3E771-F1-model_v4_TED01","TED novel fold AF-A0A1M3E771-F1-model_v4_TED01"],["TED%3AAF-A0A1M3EBH9-F1-model_v4_TED01","TED novel fold AF-A0A1M3EBH9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895923","Bacteroidetes bacterium 43-16"]]},{"id":"NCBITaxon:1895926","l":"Bacteroidetes bacterium 47-18","na":2,"nb":1,"a":[["TED%3AAF-A0A1Q3MYV5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3MYV5-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3N0P4-F1-model_v4_TED02","TED novel fold AF-A0A1Q3N0P4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1895926","Bacteroidetes bacterium 47-18"]]},{"id":"NCBITaxon:1896","l":"Streptomyces bikiniensis","na":1,"nb":2,"a":[["Pfam%3APF00908","dTDP-4-dehydrorhamnose 3,5-epimerase"]],"b":[["NCBITaxon%3A1896","Streptomyces bikiniensis"],["NCBITaxon%3A44286","Streptomyces bikiniensis subsp. zorbonensis"]]},{"id":"NCBITaxon:1896170","l":"Burkholderiales bacterium 68-12","na":2,"nb":1,"a":[["TED%3AAF-A0A1M3JRK7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M3JRK7-F1-model_v4_TED01"],["TED%3AAF-A0A1M3JPD9-F1-model_v4_TED02","TED novel fold AF-A0A1M3JPD9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1896170","Burkholderiales bacterium 68-12"]]},{"id":"NCBITaxon:1896208","l":"Fibrobacter sp. UWCM","na":2,"nb":1,"a":[["TED%3AAF-A0A1M5T024-F1-model_v4_TED02","TED novel fold AF-A0A1M5T024-F1-model_v4_TED02"],["TED%3AAF-A0A1M5WWA9-F1-model_v4_TED02","TED novel fold AF-A0A1M5WWA9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1896208","Fibrobacter sp. UWCM"]]},{"id":"NCBITaxon:1896971","l":"Azospirillum sp. 47 25","na":2,"nb":1,"a":[["TED%3AAF-A0A1Q6U8E0-F1-model_v4_TED01","TED novel fold AF-A0A1Q6U8E0-F1-model_v4_TED01"],["TED%3AAF-A0A1Q6UG74-F1-model_v4_TED02","TED novel fold AF-A0A1Q6UG74-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1896971","Azospirillum sp. 47_25"]]},{"id":"NCBITaxon:1896979","l":"Clostridium sp. 27 14","na":2,"nb":1,"a":[["TED%3AAF-A0A1Q6LHD7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q6LHD7-F1-model_v4_TED01"],["TED%3AAF-A0A1Q6LHD7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q6LHD7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1896979","Clostridium sp. 27_14"]]},{"id":"NCBITaxon:1896985","l":"Clostridium sp. CAG:12237 41","na":2,"nb":1,"a":[["TED%3AAF-A0A1Q6LMW0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1Q6LMW0-F1-model_v4_TED03"],["TED%3AAF-A0A1Q6LRH0-F1-model_v4_TED01","TED novel fold AF-A0A1Q6LRH0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1896985","Clostridium sp. CAG:12237_41"]]},{"id":"NCBITaxon:1897025","l":"Verrucomicrobia bacterium CAG:312 58 20","na":2,"nb":1,"a":[["TED%3AAF-A0A1Q6UH36-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q6UH36-F1-model_v4_TED01"],["TED%3AAF-A0A1Q6UM84-F1-model_v4_TED01","TED novel fold AF-A0A1Q6UM84-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1897025","Verrucomicrobia bacterium CAG:312_58_20"]]},{"id":"NCBITaxon:1903056","l":"","na":1,"nb":2,"a":[["TED%3AAF-A0A4R5YA11-F1-model_v4_TED01","TED novel fold AF-A0A4R5YA11-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1903056","Macrococcoides bohemicum"],["NCBITaxon%3A1871621","Macrococcus sp."]]},{"id":"NCBITaxon:1903704","l":"Tumebacillus avium","na":2,"nb":1,"a":[["TED%3AAF-A0A1Y0IJW7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Y0IJW7-F1-model_v4_TED02"],["TED%3AAF-A0A1Y0IMH8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y0IMH8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1903704","Tumebacillus avium"]]},{"id":"NCBITaxon:1903720","l":"Bacilli bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A7V6XP83-F1-model_v4_TED01","TED novel fold AF-A0A7V6XP83-F1-model_v4_TED01"],["TED%3AAF-A0A7X7Q2X1-F1-model_v4_TED02","TED novel fold AF-A0A7X7Q2X1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1903720","Bacilli bacterium"]]},{"id":"NCBITaxon:1904","l":"Streptomyces cyaneus","na":1,"nb":2,"a":[["Pfam%3APF04673","Polyketide synthesis cyclase"]],"b":[["NCBITaxon%3A146537","Streptomyces azureus"],["NCBITaxon%3A1904","Streptomyces cyaneus"]]},{"id":"NCBITaxon:1907","l":"Streptomyces glaucescens","na":2,"nb":1,"a":[["Pfam%3APF04673","Polyketide synthesis cyclase"],["Pfam%3APF04655","Aminoglycoside/hydroxyurea antibiotic resistance kinase"]],"b":[["NCBITaxon%3A1907","Streptomyces glaucescens"]]},{"id":"NCBITaxon:1907941","l":"Alkanindiges hydrocarboniclasticus","na":2,"nb":1,"a":[["TED%3AAF-A0A1S8CSP8-F1-model_v4_TED02","TED novel fold AF-A0A1S8CSP8-F1-model_v4_TED02"],["TED%3AAF-A0A1S8D0J5-F1-model_v4_TED02","TED novel fold AF-A0A1S8D0J5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1907941","Alkanindiges hydrocarboniclasticus"]]},{"id":"NCBITaxon:1909","l":"Streptomyces griseolus","na":1,"nb":2,"a":[["Pfam%3APF06902","Divergent 4Fe-4S mono-cluster"]],"b":[["NCBITaxon%3A1909","Streptomyces griseolus"],["NCBITaxon%3A1944","Streptomyces halstedii"]]},{"id":"NCBITaxon:190975","l":"Methanobrevibacter thaueri","na":2,"nb":1,"a":[["TED%3AAF-A0A315XL87-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A315XL87-F1-model_v4_TED02"],["TED%3AAF-A0A315XLC9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A315XLC9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A190975","Methanobrevibacter thaueri"]]},{"id":"NCBITaxon:1912856","l":"Peptoniphilus sp. ING2-D1G","na":1,"nb":2,"a":[["TED%3AAF-A0A090HYP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A090HYP8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1971214","Peptoniphilus sp."],["NCBITaxon%3A1912856","Peptoniphilus sp. ING2-D1G"]]},{"id":"NCBITaxon:1912928","l":"Candidatus Gracilibacteria bacterium GN02-872","na":2,"nb":1,"a":[["TED%3AAF-A0A328EDA4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A328EDA4-F1-model_v4_TED01"],["TED%3AAF-A0A328EJ66-F1-model_v4_TED03","TED novel fold AF-A0A328EJ66-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1912928","Candidatus Gracilibacteria bacterium GN02-872"]]},{"id":"NCBITaxon:1914410","l":"Spiroplasma sp. NBRC 100390","na":1,"nb":2,"a":[["TED%3AAF-A0A1J0U0D3-F1-model_v4_TED02","TED novel fold AF-A0A1J0U0D3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2144","Spiroplasma mirum"],["NCBITaxon%3A1914410","Spiroplasma sp. NBRC 100390"]]},{"id":"NCBITaxon:1915388","l":"Achromobacter sp. KAs 3-5","na":1,"nb":2,"a":[["TED%3AAF-A0A854PQ59-F1-model_v4_TED01","TED novel fold AF-A0A854PQ59-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A134375","Achromobacter sp."],["NCBITaxon%3A1915388","Achromobacter sp. KAs 3-5"]]},{"id":"NCBITaxon:1916222","l":"Candidatus Gastranaerophilales bacterium HUM 23","na":2,"nb":1,"a":[["TED%3AAF-A0A292SUD0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A292SUD0-F1-model_v4_TED01"],["TED%3AAF-A0A292SQQ3-F1-model_v4_TED02","TED novel fold AF-A0A292SQQ3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1916222","Candidatus Gastranaerophilales bacterium HUM_23"]]},{"id":"NCBITaxon:1916232","l":"Candidatus Gastranaerophilales bacterium HUM 20","na":2,"nb":1,"a":[["TED%3AAF-A0A292SIX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A292SIX7-F1-model_v4_TED01"],["TED%3AAF-A0A292SNW9-F1-model_v4_TED01","TED novel fold AF-A0A292SNW9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1916232","Candidatus Gastranaerophilales bacterium HUM_20"]]},{"id":"NCBITaxon:1917219","l":"Fluviicola sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2G2DNA9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2G2DNA9-F1-model_v4_TED02"],["TED%3AAF-A0A2G2E9M7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2G2E9M7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1917219","Fluviicola sp."]]},{"id":"NCBITaxon:1919113","l":"Bacteroidetes bacterium SW 11 45 7","na":2,"nb":1,"a":[["TED%3AAF-A0A2T2VEL8-F1-model_v4_TED01","TED novel fold AF-A0A2T2VEL8-F1-model_v4_TED01"],["TED%3AAF-A0A2T2VII4-F1-model_v4_TED01","TED novel fold AF-A0A2T2VII4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1919113","Bacteroidetes bacterium SW_11_45_7"]]},{"id":"NCBITaxon:1919187","l":"Halobacteriales archaeon QS 8 69 26","na":2,"nb":1,"a":[["TED%3AAF-A0A2R6JKB9-F1-model_v4_TED07","TED highly-symmetric fold AF-A0A2R6JKB9-F1-model_v4_TED07"],["TED%3AAF-A0A2R6JTS9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2R6JTS9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1919187","Halobacteriales archaeon QS_8_69_26"]]},{"id":"NCBITaxon:191960","l":"Sedimenticola selenatireducens","na":1,"nb":2,"a":[["TED%3AAF-A0A2N6CT86-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N6CT86-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A191960","Sedimenticola selenatireducens"],["NCBITaxon%3A1111735","Sedimenticola selenatireducens DSM 17993"]]},{"id":"NCBITaxon:1920190","l":"Archangium sp. Cb G35","na":1,"nb":2,"a":[["TED%3AAF-A0A1Q3HAE1-F1-model_v4_TED02","TED novel fold AF-A0A1Q3HAE1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1872627","Archangium sp."],["NCBITaxon%3A1920190","Archangium sp. Cb G35"]]},{"id":"NCBITaxon:1920419","l":"Desulfobulbaceae bacterium DB1","na":2,"nb":1,"a":[["TED%3AAF-A0A1Q6DKC7-F1-model_v4_TED02","TED novel fold AF-A0A1Q6DKC7-F1-model_v4_TED02"],["TED%3AAF-A0A1Q6DKM1-F1-model_v4_TED02","TED novel fold AF-A0A1Q6DKM1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1920419","Desulfobulbaceae bacterium DB1"]]},{"id":"NCBITaxon:1921421","l":"Geobacillus genomosp. 3","na":1,"nb":2,"a":[["Pfam%3APF22247","Catechol 2,3-dioxygenase-like N-terminal domain"]],"b":[["NCBITaxon%3A1921421","Geobacillus genomosp. 3"],["NCBITaxon%3A1891658","Geobacillus sp."]]},{"id":"NCBITaxon:1926491","l":"Hahella sp. CCB-MM4","na":2,"nb":1,"a":[["Pfam%3APF25271","Domain of unknown function (DUF7868)"],["TED%3AAF-A0A261GH03-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A261GH03-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1926491","Hahella sp. CCB-MM4"]]},{"id":"NCBITaxon:1927124","l":"Mycobacterium aquaticum","na":2,"nb":1,"a":[["TED%3AAF-A0A1X0A4W7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X0A4W7-F1-model_v4_TED01"],["TED%3AAF-A0A1X0B8H0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X0B8H0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1927124","Mycobacterium aquaticum"]]},{"id":"NCBITaxon:192904","l":"Kriegella aquimaris","na":2,"nb":1,"a":[["TED%3AAF-A0A1G9QMB2-F1-model_v4_TED01","TED novel fold AF-A0A1G9QMB2-F1-model_v4_TED01"],["TED%3AAF-A0A1G9TPJ1-F1-model_v4_TED01","TED novel fold AF-A0A1G9TPJ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A192904","Kriegella aquimaris"]]},{"id":"NCBITaxon:1929291","l":"Reyranella sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A521MAL3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521MAL3-F1-model_v4_TED01"],["TED%3AAF-A0A522ZGQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A522ZGQ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1929291","Reyranella sp."]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":1,"nb":2,"a":[["Pfam%3APF03437","BtpA family"]],"b":[["NCBITaxon%3A324833","Streptomyces lasalocidi"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:1932693","l":"bacterium E08(2017)","na":2,"nb":1,"a":[["TED%3AAF-A0A202DFY8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A202DFY8-F1-model_v4_TED01"],["TED%3AAF-A0A202DGR6-F1-model_v4_TED01","TED novel fold AF-A0A202DGR6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1932693","bacterium E08(2017)"]]},{"id":"NCBITaxon:1932716","l":"Ktedonobacter sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A3B9Y8D4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B9Y8D4-F1-model_v4_TED01"],["TED%3AAF-A0A3B9KCL3-F1-model_v4_TED03","TED novel fold AF-A0A3B9KCL3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1932716","Ktedonobacter sp."]]},{"id":"NCBITaxon:1933","l":"Streptoalloteichus tenebrarius","na":2,"nb":1,"a":[["Pfam%3APF16861","Carbamoyltransferase C-terminus"],["Pfam%3APF02543","Carbamoyltransferase N-terminus"]],"b":[["NCBITaxon%3A1933","Streptoalloteichus tenebrarius"]]},{"id":"NCBITaxon:1933220","l":"Sphingobacterium sp. B29","na":2,"nb":1,"a":[["TED%3AAF-A0A1P8E3E2-F1-model_v4_TED02","TED novel fold AF-A0A1P8E3E2-F1-model_v4_TED02"],["TED%3AAF-A0A1P8E830-F1-model_v4_TED01","TED novel fold AF-A0A1P8E830-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1933220","Sphingobacterium sp. B29"]]},{"id":"NCBITaxon:1936077","l":"candidate division WOR-3 bacterium 4484 100","na":2,"nb":1,"a":[["TED%3AAF-A0A1V4QGD8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V4QGD8-F1-model_v4_TED02"],["TED%3AAF-A0A1V4QI01-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V4QI01-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1936077","Caldifarciminota bacterium 4484_100"]]},{"id":"NCBITaxon:1938851","l":"Streptomyces sp. Ag109 O5-1","na":2,"nb":1,"a":[["TED%3AAF-A0A3N4S2G1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N4S2G1-F1-model_v4_TED01"],["TED%3AAF-A0A3N4SIH2-F1-model_v4_TED02","TED novel fold AF-A0A3N4SIH2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1938851","Streptomyces sp. Ag109_O5-1"]]},{"id":"NCBITaxon:1940","l":"","na":2,"nb":1,"a":[["TED%3AAF-A0A1Z2LD39-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z2LD39-F1-model_v4_TED01"],["TED%3AAF-A0A1Z2LBV3-F1-model_v4_TED01","TED novel fold AF-A0A1Z2LBV3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1940","Streptomyces albireticuli"]]},{"id":"NCBITaxon:1940610","l":"Phreatobacter stygius","na":2,"nb":1,"a":[["TED%3AAF-A0A4D7AVB2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4D7AVB2-F1-model_v4_TED01"],["TED%3AAF-A0A4D7B3N4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4D7B3N4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1940610","Phreatobacter stygius"]]},{"id":"NCBITaxon:1944635","l":"Sutterella seckii","na":2,"nb":1,"a":[["TED%3AAF-A0A6I1E9Q4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I1E9Q4-F1-model_v4_TED01"],["TED%3AAF-A0A6I1ED05-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I1ED05-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1944635","Sutterella seckii"]]},{"id":"NCBITaxon:1945579","l":"Methanosphaera sp. rholeuAM74","na":2,"nb":1,"a":[["TED%3AAF-A0A328RYM3-F1-model_v4_TED02","TED novel fold AF-A0A328RYM3-F1-model_v4_TED02"],["TED%3AAF-A0A328SFK5-F1-model_v4_TED02","TED novel fold AF-A0A328SFK5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1945579","Methanosphaera sp. rholeuAM74"]]},{"id":"NCBITaxon:1945872","l":"Fibrobacter sp. UWRM","na":2,"nb":1,"a":[["TED%3AAF-A0A2P6URS1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P6URS1-F1-model_v4_TED01"],["TED%3AAF-A0A2P6UTR6-F1-model_v4_TED02","TED novel fold AF-A0A2P6UTR6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1945872","Fibrobacter sp. UWRM"]]},{"id":"NCBITaxon:194702","l":"Cardiobacterium valvarum","na":1,"nb":2,"a":[["TED%3AAF-A0A381EEF6-F1-model_v4_TED02","TED novel fold AF-A0A381EEF6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A194702","Cardiobacterium valvarum"],["NCBITaxon%3A797473","Cardiobacterium valvarum F0432"]]},{"id":"NCBITaxon:1948","l":"Streptomyces longisporus","na":1,"nb":2,"a":[["PROSITE%3APS00999","Streptomyces subtilisin-type inhibitors signature"]],"b":[["NCBITaxon%3A1948","Streptomyces longisporus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:1954253","l":"Filimonas sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A388Q2C7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A388Q2C7-F1-model_v4_TED01"],["TED%3AAF-A0A388Q7L9-F1-model_v4_TED02","TED novel fold AF-A0A388Q7L9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1954253","Filimonas sp."]]},{"id":"NCBITaxon:1956162","l":"Planctomycetales bacterium 4484 123","na":2,"nb":1,"a":[["TED%3AAF-A0A1V4QVM4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V4QVM4-F1-model_v4_TED02"],["TED%3AAF-A0A1V4QRZ0-F1-model_v4_TED01","TED novel fold AF-A0A1V4QRZ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1956162","Planctomycetales bacterium 4484_123"]]},{"id":"NCBITaxon:196024","l":"Aeromonas dhakensis","na":1,"nb":2,"a":[["TED%3AAF-K1KBM8-F1-model_v4_TED01","TED novel fold AF-K1KBM8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A196024","Aeromonas dhakensis"],["NCBITaxon%3A1156800","Aeromonas dhakensis AAK1"]]},{"id":"NCBITaxon:196308","l":"Nostoc sp. HK-01","na":2,"nb":1,"a":[["TED%3AAF-A0A2Z6D4J6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z6D4J6-F1-model_v4_TED01"],["TED%3AAF-A0A2Z6CXK5-F1-model_v4_TED02","TED novel fold AF-A0A2Z6CXK5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A196308","Nostoc sp. HK-01"]]},{"id":"NCBITaxon:1964352","l":"Fibrobacter sp. UWR2","na":2,"nb":1,"a":[["TED%3AAF-A0A254REI0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A254REI0-F1-model_v4_TED01"],["TED%3AAF-A0A254RLR2-F1-model_v4_TED01","TED novel fold AF-A0A254RLR2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1964352","Fibrobacter sp. UWR2"]]},{"id":"NCBITaxon:1965555","l":"Lachnoclostridium sp. An131","na":2,"nb":1,"a":[["TED%3AAF-A0A1Y4S1T7-F1-model_v4_TED05","TED novel fold AF-A0A1Y4S1T7-F1-model_v4_TED05"],["TED%3AAF-A0A1Y4SAW0-F1-model_v4_TED01","TED novel fold AF-A0A1Y4SAW0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965555","Lachnoclostridium sp. An131"]]},{"id":"NCBITaxon:1965557","l":"Massilimicrobiota sp. An134","na":2,"nb":1,"a":[["TED%3AAF-A0A1Y4SF01-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Y4SF01-F1-model_v4_TED02"],["TED%3AAF-A0A1Y4SKF5-F1-model_v4_TED02","TED novel fold AF-A0A1Y4SKF5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1965557","Massilimicrobiota sp. An134"]]},{"id":"NCBITaxon:1965580","l":"Bacteroides sp. An19","na":2,"nb":1,"a":[["TED%3AAF-A0A1Y4JFG1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y4JFG1-F1-model_v4_TED01"],["TED%3AAF-A0A1Y4K1E2-F1-model_v4_TED02","TED novel fold AF-A0A1Y4K1E2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1965580","Bacteroides sp. An19"]]},{"id":"NCBITaxon:1965622","l":"Megasphaera sp. An286","na":2,"nb":1,"a":[["TED%3AAF-A0A1Y4CN46-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Y4CN46-F1-model_v4_TED02"],["TED%3AAF-A0A1Y4CHV3-F1-model_v4_TED01","TED novel fold AF-A0A1Y4CHV3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965622","Megasphaera sp. An286"]]},{"id":"NCBITaxon:1967782","l":"Chlamydia serpentis","na":1,"nb":2,"a":[["TED%3AAF-A0A2R8FBB5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2R8FBB5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1967782","Chlamydia serpentis"],["NCBITaxon%3A35827","Chlamydia sp."]]},{"id":"NCBITaxon:1969813","l":"Sinobacteraceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A522J9Y5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A522J9Y5-F1-model_v4_TED01"],["TED%3AAF-A0A5C7L3T6-F1-model_v4_TED02","TED novel fold AF-A0A5C7L3T6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1969813","Nevskiaceae bacterium"]]},{"id":"NCBITaxon:1970","l":"Streptomyces morookaense","na":1,"nb":2,"a":[["TED%3AAF-A0A7Y7E7U7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y7E7U7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A68176","Streptomyces aspergilloides"],["NCBITaxon%3A1970","Streptomyces morookaense"]]},{"id":"NCBITaxon:1970302","l":"Acidocella sp. 20-58-15","na":2,"nb":1,"a":[["TED%3AAF-A0A257QXJ2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A257QXJ2-F1-model_v4_TED03"],["TED%3AAF-A0A257QPV7-F1-model_v4_TED01","TED novel fold AF-A0A257QPV7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970302","Acidocella sp. 20-58-15"]]},{"id":"NCBITaxon:1970480","l":"Candidatus Saccharibacteria bacterium 32-50-10","na":2,"nb":1,"a":[["TED%3AAF-A0A258FYM3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A258FYM3-F1-model_v4_TED02"],["TED%3AAF-A0A258FVM1-F1-model_v4_TED01","TED novel fold AF-A0A258FVM1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970480","Candidatus Saccharibacteria bacterium 32-50-10"]]},{"id":"NCBITaxon:1970772","l":"candidate division KSB1 bacterium 4484 87","na":2,"nb":1,"a":[["TED%3AAF-A0A1W9RH52-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W9RH52-F1-model_v4_TED01"],["TED%3AAF-A0A1W9RSU5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W9RSU5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970772","Candidatus Zhuqueibacterota bacterium 4484_87"]]},{"id":"NCBITaxon:1972642","l":"Sphaerochaeta sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A3C1LQH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C1LQH3-F1-model_v4_TED01"],["TED%3AAF-A0A3C1LQH3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3C1LQH3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1972642","Sphaerochaeta sp."]]},{"id":"NCBITaxon:1973478","l":"Calothrix brevissima NIES-22","na":2,"nb":1,"a":[["TED%3AAF-A0A1Z4JTJ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z4JTJ2-F1-model_v4_TED01"],["TED%3AAF-A0A1Z4K5N3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z4K5N3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973478","Calothrix brevissima NIES-22"]]},{"id":"NCBITaxon:1973928","l":"Bdellovibrionales bacterium CG11 big fil rev 8 21 14 0 20 38 13","na":2,"nb":1,"a":[["TED%3AAF-A0A2H0Q7W6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H0Q7W6-F1-model_v4_TED01"],["TED%3AAF-A0A2H0Q805-F1-model_v4_TED01","TED novel fold AF-A0A2H0Q805-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973928","Bdellovibrionales bacterium CG11_big_fil_rev_8_21_14_0_20_38_13"]]},{"id":"NCBITaxon:1974064","l":"Nitrospirae bacterium CG01 land 8 20 14 3 00 44 22","na":2,"nb":1,"a":[["TED%3AAF-A0A2M7EE09-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M7EE09-F1-model_v4_TED01"],["TED%3AAF-A0A2M7EHQ1-F1-model_v4_TED01","TED novel fold AF-A0A2M7EHQ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1974064","Nitrospirae bacterium CG01_land_8_20_14_3_00_44_22"]]},{"id":"NCBITaxon:1974645","l":"Candidatus Magasanikbacteria bacterium CG10 big fil rev 8 21 14 0 10 36 16","na":2,"nb":1,"a":[["TED%3AAF-A0A2H0TXT1-F1-model_v4_TED01","TED novel fold AF-A0A2H0TXT1-F1-model_v4_TED01"],["TED%3AAF-A0A2H0TXT1-F1-model_v4_TED06","TED novel fold AF-A0A2H0TXT1-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A1974645","Candidatus Magasanikbacteria bacterium CG10_big_fil_rev_8_21_14_0_10_36_16"]]},{"id":"NCBITaxon:1974700","l":"Candidatus Nealsonbacteria bacterium CG02 land 8 20 14 3 00 40 11","na":2,"nb":1,"a":[["TED%3AAF-A0A2M7D756-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2M7D756-F1-model_v4_TED03"],["TED%3AAF-A0A2M7D8U7-F1-model_v4_TED01","TED novel fold AF-A0A2M7D8U7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1974700","Candidatus Nealsonbacteria bacterium CG02_land_8_20_14_3_00_40_11"]]},{"id":"NCBITaxon:1974834","l":"Candidatus Roizmanbacteria bacterium CG 4 8 14 3 um filter 36 10","na":2,"nb":1,"a":[["TED%3AAF-A0A2M8GLJ4-F1-model_v4_TED01","TED novel fold AF-A0A2M8GLJ4-F1-model_v4_TED01"],["TED%3AAF-A0A2M8GNB7-F1-model_v4_TED01","TED novel fold AF-A0A2M8GNB7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1974834","Candidatus Roizmanbacteria bacterium CG_4_8_14_3_um_filter_36_10"]]},{"id":"NCBITaxon:197538","l":"Strombidium inclinatum","na":2,"nb":1,"a":[["TED%3AAF-A0A7S3IUV5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S3IUV5-F1-model_v4_TED02"],["TED%3AAF-A0A7S3N2I4-F1-model_v4_TED01","TED novel fold AF-A0A7S3N2I4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A197538","Strombidium inclinatum"]]},{"id":"NCBITaxon:1975567","l":"bacterium CG 4 9 14 3 um filter 65 15","na":2,"nb":1,"a":[["TED%3AAF-A0A2M7YT17-F1-model_v4_TED04","TED novel fold AF-A0A2M7YT17-F1-model_v4_TED04"],["TED%3AAF-A0A2M7YWK0-F1-model_v4_TED01","TED novel fold AF-A0A2M7YWK0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1975567","bacterium CG_4_9_14_3_um_filter_65_15"]]},{"id":"NCBITaxon:1977876","l":"Acinetobacter sp. ANC 4558","na":2,"nb":1,"a":[["TED%3AAF-A0A241W1C8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A241W1C8-F1-model_v4_TED01"],["TED%3AAF-A0A2C9WTH4-F1-model_v4_TED01","TED novel fold AF-A0A2C9WTH4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1977876","Acinetobacter sp. ANC 4558"]]},{"id":"NCBITaxon:1977908","l":"Limnohabitans sp. JirII-31","na":1,"nb":2,"a":[["TED%3AAF-A0A2M6VQB3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2M6VQB3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1907725","Limnohabitans sp."],["NCBITaxon%3A1977908","Limnohabitans sp. JirII-31"]]},{"id":"NCBITaxon:1980636","l":"Woeseia sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2E6ZKI2-F1-model_v4_TED01","TED novel fold AF-A0A2E6ZKI2-F1-model_v4_TED01"],["TED%3AAF-A0A848VGI5-F1-model_v4_TED02","TED novel fold AF-A0A848VGI5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1980636","Woeseia sp."]]},{"id":"NCBITaxon:1982319","l":"Opitutae bacterium Tous-C1TDCM","na":2,"nb":1,"a":[["TED%3AAF-A0A2A2PZ60-F1-model_v4_TED02","TED novel fold AF-A0A2A2PZ60-F1-model_v4_TED02"],["TED%3AAF-A0A2A2QAY9-F1-model_v4_TED03","TED novel fold AF-A0A2A2QAY9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1982319","Opitutia bacterium Tous-C1TDCM"]]},{"id":"NCBITaxon:1982332","l":"Verrucomicrobiae bacterium Tous-C4TDCM","na":2,"nb":1,"a":[["TED%3AAF-A0A2A2Q6M6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A2Q6M6-F1-model_v4_TED01"],["TED%3AAF-A0A2A2QMI7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A2QMI7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1982332","Verrucomicrobiia bacterium Tous-C4TDCM"]]},{"id":"NCBITaxon:198466","l":"Streptococcus pyogenes serotype M3 (strain ATCC BAA-595 / MGAS315)","na":2,"nb":1,"a":[["IDPO%3A0000006","order"],["Pfam%3APF05532","CsbD-like"]],"b":[["NCBITaxon%3A198466","Streptococcus pyogenes MGAS315"]]},{"id":"NCBITaxon:1986668","l":"Betaproteobacteria bacterium TMED41","na":2,"nb":1,"a":[["TED%3AAF-A0A1Z8QIS2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z8QIS2-F1-model_v4_TED01"],["TED%3AAF-A0A1Z8QC02-F1-model_v4_TED05","TED novel fold AF-A0A1Z8QC02-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1986668","Betaproteobacteria bacterium TMED41"]]},{"id":"NCBITaxon:1993866","l":"Lactobacillales bacterium","na":1,"nb":2,"a":[["TED%3AAF-A0A847B9V9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A847B9V9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1993866","Lactobacillales bacterium"],["NCBITaxon%3A2269374","Lactobacillus terrae"]]},{"id":"NCBITaxon:199441","l":"Halalkalibacter krulwichiae","na":1,"nb":2,"a":[["TED%3AAF-A0A1X9MDU1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X9MDU1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A199441","Halalkalibacter krulwichiae"],["NCBITaxon%3A1220588","Halalkalibacter krulwichiae NBRC 102362"]]},{"id":"NCBITaxon:200475","l":"Brumimicrobium glaciale","na":2,"nb":1,"a":[["TED%3AAF-A0A4Q4KLV2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q4KLV2-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4KNV1-F1-model_v4_TED02","TED novel fold AF-A0A4Q4KNV1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A200475","Brumimicrobium glaciale"]]},{"id":"NCBITaxon:2004951","l":"Cordyceps sp. RAO-2017","na":2,"nb":1,"a":[["TED%3AAF-A0A2C5ZMY6-F1-model_v4_TED02","TED novel fold AF-A0A2C5ZMY6-F1-model_v4_TED02"],["TED%3AAF-A0A2C6AB72-F1-model_v4_TED02","TED novel fold AF-A0A2C6AB72-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2004951","Cordyceps sp. RAO-2017"]]},{"id":"NCBITaxon:2004952","l":"Ophiocordyceps camponoti-rufipedis","na":2,"nb":1,"a":[["TED%3AAF-A0A2C5ZA05-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2C5ZA05-F1-model_v4_TED03"],["TED%3AAF-A0A2C5YKA6-F1-model_v4_TED01","TED novel fold AF-A0A2C5YKA6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2004952","Ophiocordyceps camponoti-rufipedis"]]},{"id":"NCBITaxon:2006848","l":"Opitutaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A2E4J3I4-F1-model_v4_TED02","TED novel fold AF-A0A2E4J3I4-F1-model_v4_TED02"],["TED%3AAF-A0A2E4J5P7-F1-model_v4_TED04","TED novel fold AF-A0A2E4J5P7-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2006848","Opitutaceae bacterium"]]},{"id":"NCBITaxon:2007294","l":"Marine Group II euryarchaeote MED-G33","na":2,"nb":1,"a":[["TED%3AAF-A0A2A5VK90-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A5VK90-F1-model_v4_TED01"],["TED%3AAF-A0A2A5VQT0-F1-model_v4_TED05","TED novel fold AF-A0A2A5VQT0-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2007294","Marine Group II euryarchaeote MED-G33"]]},{"id":"NCBITaxon:2011094","l":"Coriobacteriaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A425WIX8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A425WIX8-F1-model_v4_TED02"],["TED%3AAF-A0A4S2F318-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S2F318-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2011094","Coriobacteriaceae bacterium"]]},{"id":"NCBITaxon:2012506","l":"Candidatus Altiarchaeales archaeon ex4484 2","na":2,"nb":1,"a":[["TED%3AAF-A0A256ZLI0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A256ZLI0-F1-model_v4_TED01"],["TED%3AAF-A0A256ZNF3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A256ZNF3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2012506","Candidatus Altarchaeales archaeon ex4484_2"]]},{"id":"NCBITaxon:2012998","l":"candidate division LCP-89 bacterium B3 LCP","na":2,"nb":1,"a":[["TED%3AAF-A0A532UU55-F1-model_v4_TED01","TED novel fold AF-A0A532UU55-F1-model_v4_TED01"],["TED%3AAF-A0A532V3E1-F1-model_v4_TED01","TED novel fold AF-A0A532V3E1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2012998","candidate division LCP-89 bacterium B3_LCP"]]},{"id":"NCBITaxon:2013680","l":"Bacteroidetes bacterium HGW-Bacteroidetes-12","na":2,"nb":1,"a":[["TED%3AAF-A0A2N2ZU31-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2N2ZU31-F1-model_v4_TED04"],["TED%3AAF-A0A2N2ZU60-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N2ZU60-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013680","Bacteroidetes bacterium HGW-Bacteroidetes-12"]]},{"id":"NCBITaxon:2013720","l":"Betaproteobacteria bacterium HGW-Betaproteobacteria-8","na":2,"nb":1,"a":[["TED%3AAF-A0A2N2Q6B9-F1-model_v4_TED02","TED novel fold AF-A0A2N2Q6B9-F1-model_v4_TED02"],["TED%3AAF-A0A2N2Q6M1-F1-model_v4_TED01","TED novel fold AF-A0A2N2Q6M1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013720","Betaproteobacteria bacterium HGW-Betaproteobacteria-8"]]},{"id":"NCBITaxon:2013760","l":"Candidatus Dependentiae bacterium HGW-Dependentiae-1","na":2,"nb":1,"a":[["TED%3AAF-A0A2N2F5N0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N2F5N0-F1-model_v4_TED01"],["TED%3AAF-A0A2N2F5N0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N2F5N0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2013760","Candidatus Dependentiae bacterium HGW-Dependentiae-1"]]},{"id":"NCBITaxon:2013761","l":"Candidatus Dojkabacteria bacterium HGW-Dojkabacteria-1","na":2,"nb":1,"a":[["TED%3AAF-A0A2N2F3B3-F1-model_v4_TED01","TED novel fold AF-A0A2N2F3B3-F1-model_v4_TED01"],["TED%3AAF-A0A2N2F3N0-F1-model_v4_TED01","TED novel fold AF-A0A2N2F3N0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013761","Candidatus Dojkabacteria bacterium HGW-Dojkabacteria-1"]]},{"id":"NCBITaxon:2013820","l":"Methanomicrobiales archaeon HGW-Methanomicrobiales-4","na":2,"nb":1,"a":[["TED%3AAF-A0A2I0P3V8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I0P3V8-F1-model_v4_TED01"],["TED%3AAF-A0A2I0P3U6-F1-model_v4_TED02","TED novel fold AF-A0A2I0P3U6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2013820","Methanomicrobiales archaeon HGW-Methanomicrobiales-4"]]},{"id":"NCBITaxon:2013838","l":"Spirochaetae bacterium HGW-Spirochaetae-6","na":2,"nb":1,"a":[["TED%3AAF-A0A2I0NEL2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I0NEL2-F1-model_v4_TED01"],["TED%3AAF-A0A2I0NEM3-F1-model_v4_TED01","TED novel fold AF-A0A2I0NEM3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013838","Spirochaetae bacterium HGW-Spirochaetae-6"]]},{"id":"NCBITaxon:2014248","l":"Candidatus Kerfeldbacteria bacterium CG 4 10 14 0 8 um filter 42 10","na":2,"nb":1,"a":[["TED%3AAF-A0A2M7RGB2-F1-model_v4_TED01","TED novel fold AF-A0A2M7RGB2-F1-model_v4_TED01"],["TED%3AAF-A0A2M7RH96-F1-model_v4_TED01","TED novel fold AF-A0A2M7RH96-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2014248","Candidatus Kerfeldbacteria bacterium CG_4_10_14_0_8_um_filter_42_10"]]},{"id":"NCBITaxon:2014261","l":"bacterium (Candidatus Blackallbacteria) CG17 big fil post rev 8 21 14 2 50 48 46","na":2,"nb":1,"a":[["TED%3AAF-A0A2M7G1V9-F1-model_v4_TED02","TED novel fold AF-A0A2M7G1V9-F1-model_v4_TED02"],["TED%3AAF-A0A2M7G4F1-F1-model_v4_TED01","TED novel fold AF-A0A2M7G4F1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2014261","bacterium (Candidatus Blackallbacteria) CG17_big_fil_post_rev_8_21_14_2_50_48_46"]]},{"id":"NCBITaxon:2014529","l":"Nostoc sp. 'Peltigera membranacea cyanobiont' 210A","na":2,"nb":1,"a":[["TED%3AAF-A0A235I2L5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A235I2L5-F1-model_v4_TED01"],["TED%3AAF-A0A235HVT9-F1-model_v4_TED06","TED novel fold AF-A0A235HVT9-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A2014529","Nostoc sp. 'Peltigera membranacea cyanobiont' 210A"]]},{"id":"NCBITaxon:2014784","l":"Neisseriaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A431J1D1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A431J1D1-F1-model_v4_TED01"],["TED%3AAF-A0A431HS40-F1-model_v4_TED01","TED novel fold AF-A0A431HS40-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2014784","Neisseriaceae bacterium"]]},{"id":"NCBITaxon:2018025","l":"Kitasatospora sp. MMS16-BH015","na":2,"nb":1,"a":[["TED%3AAF-A0A2H5B0Y4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H5B0Y4-F1-model_v4_TED02"],["TED%3AAF-A0A2H5B820-F1-model_v4_TED02","TED novel fold AF-A0A2H5B820-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2018025","Kitasatospora sp. MMS16-BH015"]]},{"id":"NCBITaxon:2022749","l":"Sulfurimonas sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2G1XYB8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G1XYB8-F1-model_v4_TED01"],["TED%3AAF-A0A2G2CS60-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2G2CS60-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2022749","Sulfurimonas sp."]]},{"id":"NCBITaxon:2023178","l":"Leptospira levettii","na":2,"nb":1,"a":[["TED%3AAF-A0A2N0AQT8-F1-model_v4_TED01","TED novel fold AF-A0A2N0AQT8-F1-model_v4_TED01"],["TED%3AAF-A0A5F2DAR0-F1-model_v4_TED02","TED novel fold AF-A0A5F2DAR0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2023178","Leptospira levettii"]]},{"id":"NCBITaxon:2023182","l":"Leptospira brenneri","na":2,"nb":1,"a":[["TED%3AAF-A0A5F1Z3S3-F1-model_v4_TED02","TED novel fold AF-A0A5F1Z3S3-F1-model_v4_TED02"],["TED%3AAF-A0A5F1Z7W0-F1-model_v4_TED08","TED novel fold AF-A0A5F1Z7W0-F1-model_v4_TED08"]],"b":[["NCBITaxon%3A2023182","Leptospira brenneri"]]},{"id":"NCBITaxon:2024553","l":"Candidatus Viridilinea mediisalina","na":2,"nb":1,"a":[["TED%3AAF-A0A2A6RFR8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A6RFR8-F1-model_v4_TED01"],["TED%3AAF-A0A2A6RK58-F1-model_v4_TED02","TED novel fold AF-A0A2A6RK58-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2024553","Candidatus Viridilinea mediisalina"]]},{"id":"NCBITaxon:2024826","l":"Blastopirellula sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2E0B0H3-F1-model_v4_TED02","TED novel fold AF-A0A2E0B0H3-F1-model_v4_TED02"],["TED%3AAF-A0A2G2IUT2-F1-model_v4_TED02","TED novel fold AF-A0A2G2IUT2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2024826","Blastopirellula sp."]]},{"id":"NCBITaxon:2024833","l":"Gimesia sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2E2C1V0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E2C1V0-F1-model_v4_TED01"],["TED%3AAF-A0A2E7KM43-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2E7KM43-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2024833","Gimesia sp."]]},{"id":"NCBITaxon:2024839","l":"Marinovum sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2D7D514-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D7D514-F1-model_v4_TED01"],["TED%3AAF-A0A2D7JZ21-F1-model_v4_TED01","TED novel fold AF-A0A2D7JZ21-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024839","Marinovum sp."]]},{"id":"NCBITaxon:2024840","l":"Methylophaga sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2G2HZW2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G2HZW2-F1-model_v4_TED01"],["TED%3AAF-A0A2E2D735-F1-model_v4_TED01","TED novel fold AF-A0A2E2D735-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024840","Methylophaga sp."]]},{"id":"NCBITaxon:2024844","l":"Nitrospina sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A3C8C9N2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3C8C9N2-F1-model_v4_TED02"],["TED%3AAF-A0A3C8C840-F1-model_v4_TED03","TED novel fold AF-A0A3C8C840-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2024844","Nitrospina sp."]]},{"id":"NCBITaxon:2024850","l":"Peredibacter sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2E5C9S7-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A2E5C9S7-F1-model_v4_TED05"],["TED%3AAF-A0A2E5C9V8-F1-model_v4_TED02","TED novel fold AF-A0A2E5C9V8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2024850","Peredibacter sp."]]},{"id":"NCBITaxon:2024853","l":"Porticoccus sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2G2QMR8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G2QMR8-F1-model_v4_TED01"],["TED%3AAF-A0A2G2QS79-F1-model_v4_TED03","TED novel fold AF-A0A2G2QS79-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2024853","Porticoccus sp."]]},{"id":"NCBITaxon:2024889","l":"SAR324 cluster bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A432GFQ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A432GFQ8-F1-model_v4_TED01"],["TED%3AAF-A0A7X9ILB3-F1-model_v4_TED02","TED novel fold AF-A0A7X9ILB3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2024889","SAR324 cluster bacterium"]]},{"id":"NCBITaxon:2024893","l":"Acidiferrobacteraceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A2E6P5K1-F1-model_v4_TED03","TED novel fold AF-A0A2E6P5K1-F1-model_v4_TED03"],["TED%3AAF-A0A2E9IGP7-F1-model_v4_TED03","TED novel fold AF-A0A2E9IGP7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2024893","Acidiferrobacteraceae bacterium"]]},{"id":"NCBITaxon:2026304","l":"Flavobacterium sp. IR1","na":2,"nb":1,"a":[["TED%3AAF-A0A7L4TGE7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7L4TGE7-F1-model_v4_TED01"],["TED%3AAF-A0A7L4TGQ6-F1-model_v4_TED01","TED novel fold AF-A0A7L4TGQ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026304","Flavobacterium sp. IR1"]]},{"id":"NCBITaxon:2026717","l":"Candidatus Magasanikbacteria bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A349IPD9-F1-model_v4_TED04","TED novel fold AF-A0A349IPD9-F1-model_v4_TED04"],["TED%3AAF-A0A847VXL4-F1-model_v4_TED02","TED novel fold AF-A0A847VXL4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026717","Candidatus Magasanikiibacteriota bacterium"]]},{"id":"NCBITaxon:2026722","l":"Cellvibrionales bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A350J1R3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A350J1R3-F1-model_v4_TED01"],["TED%3AAF-A0A3D5SD53-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D5SD53-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026722","Cellvibrionales bacterium"]]},{"id":"NCBITaxon:2026725","l":"Chromatiales bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A520X6H8-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A520X6H8-F1-model_v4_TED05"],["TED%3AAF-A0A7C2AIC9-F1-model_v4_TED02","TED novel fold AF-A0A7C2AIC9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026725","Chromatiales bacterium"]]},{"id":"NCBITaxon:2026747","l":"Candidatus Heimdallarchaeota archaeon","na":2,"nb":1,"a":[["TED%3AAF-A0A842R7J3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A842R7J3-F1-model_v4_TED01"],["TED%3AAF-A0A497R3Q0-F1-model_v4_TED01","TED novel fold AF-A0A497R3Q0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026747","Candidatus Heimdallarchaeota archaeon"]]},{"id":"NCBITaxon:2026768","l":"Nitrosopumilales archaeon","na":2,"nb":1,"a":[["TED%3AAF-A0A835XA14-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A835XA14-F1-model_v4_TED02"],["TED%3AAF-A0A6G1YPX0-F1-model_v4_TED02","TED novel fold AF-A0A6G1YPX0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026768","Nitrosopumilales archaeon"]]},{"id":"NCBITaxon:2026775","l":"Pelagibacteraceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A2D5WYN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D5WYN7-F1-model_v4_TED01"],["TED%3AAF-A0A2E5R6E3-F1-model_v4_TED02","TED novel fold AF-A0A2E5R6E3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026775","Candidatus Pelagibacteraceae bacterium"]]},{"id":"NCBITaxon:2026782","l":"Porticoccaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A2E0VJ56-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0VJ56-F1-model_v4_TED01"],["TED%3AAF-A0A351Q4J1-F1-model_v4_TED01","TED novel fold AF-A0A351Q4J1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026782","Porticoccaceae bacterium"]]},{"id":"NCBITaxon:2026785","l":"Rhodobiaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A2E5BQH7-F1-model_v4_TED01","TED novel fold AF-A0A2E5BQH7-F1-model_v4_TED01"],["TED%3AAF-A0A2E6NZZ9-F1-model_v4_TED01","TED novel fold AF-A0A2E6NZZ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026785","Rhodobiaceae bacterium"]]},{"id":"NCBITaxon:2026794","l":"Sutterellaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A3D4GBS5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3D4GBS5-F1-model_v4_TED03"],["TED%3AAF-A0A2E2R281-F1-model_v4_TED02","TED novel fold AF-A0A2E2R281-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026794","Sutterellaceae bacterium"]]},{"id":"NCBITaxon:2026798","l":"Trueperaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A5Q4G3Q5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5Q4G3Q5-F1-model_v4_TED02"],["TED%3AAF-A0A838IUG2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A838IUG2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026798","Trueperaceae bacterium"]]},{"id":"NCBITaxon:2026804","l":"Candidatus Woesebacteria bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A7T5RDP6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7T5RDP6-F1-model_v4_TED02"],["TED%3AAF-A0A3D4HBR5-F1-model_v4_TED01","TED novel fold AF-A0A3D4HBR5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026804","Candidatus Woesebacteria bacterium"]]},{"id":"NCBITaxon:2026806","l":"Woeseiaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A2D9M3K6-F1-model_v4_TED02","TED novel fold AF-A0A2D9M3K6-F1-model_v4_TED02"],["TED%3AAF-A0A7Y1TVN7-F1-model_v4_TED03","TED novel fold AF-A0A7Y1TVN7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2026806","Woeseiaceae bacterium"]]},{"id":"NCBITaxon:2026807","l":"Zetaproteobacteria bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A3M1HFQ6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A3M1HFQ6-F1-model_v4_TED04"],["TED%3AAF-A0A2A5ERT7-F1-model_v4_TED05","TED novel fold AF-A0A2A5ERT7-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2026807","Zetaproteobacteria bacterium"]]},{"id":"NCBITaxon:2026886","l":"Nitrosarchaeum sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A843CKT6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843CKT6-F1-model_v4_TED01"],["TED%3AAF-A0A846T5S4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A846T5S4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026886","Nitrosarchaeum sp."]]},{"id":"NCBITaxon:2028574","l":"Psittacicella gerlachiana","na":2,"nb":1,"a":[["TED%3AAF-A0A3A1YL73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A1YL73-F1-model_v4_TED01"],["TED%3AAF-A0A3A1Y8T7-F1-model_v4_TED01","TED novel fold AF-A0A3A1Y8T7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2028574","Psittacicella gerlachiana"]]},{"id":"NCBITaxon:2028575","l":"Psittacicella hinzii","na":2,"nb":1,"a":[["TED%3AAF-A0A3A1YFW7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A1YFW7-F1-model_v4_TED01"],["TED%3AAF-A0A3A1YMH4-F1-model_v4_TED01","TED novel fold AF-A0A3A1YMH4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2028575","Psittacicella hinzii"]]},{"id":"NCBITaxon:203","l":"Campylobacter rectus","na":1,"nb":2,"a":[["TED%3AAF-A0A6G5QQ81-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A6G5QQ81-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A203","Campylobacter rectus"],["NCBITaxon%3A553218","Campylobacter rectus RM3267"]]},{"id":"NCBITaxon:2030823","l":"Robiginitomaculum sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2G2G860-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2G2G860-F1-model_v4_TED02"],["TED%3AAF-A0A2G2LLT5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G2LLT5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2030823","Robiginitomaculum sp."]]},{"id":"NCBITaxon:2030880","l":"SAR86 cluster bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A2A4MT12-F1-model_v4_TED01","TED novel fold AF-A0A2A4MT12-F1-model_v4_TED01"],["TED%3AAF-A0A520N024-F1-model_v4_TED02","TED novel fold AF-A0A520N024-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2030880","SAR86 cluster bacterium"]]},{"id":"NCBITaxon:2033499","l":"Bacillus sp. AFS037270","na":2,"nb":1,"a":[["TED%3AAF-A0A2C1YQ20-F1-model_v4_TED01","TED novel fold AF-A0A2C1YQ20-F1-model_v4_TED01"],["TED%3AAF-A0A2C1ZAQ5-F1-model_v4_TED01","TED novel fold AF-A0A2C1ZAQ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2033499","Bacillus sp. AFS037270"]]},{"id":"NCBITaxon:2035407","l":"bacterium HR12","na":2,"nb":1,"a":[["TED%3AAF-A0A2H5WBP2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H5WBP2-F1-model_v4_TED01"],["TED%3AAF-A0A2H5WDV7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2H5WDV7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2035407","bacterium HR12"]]},{"id":"NCBITaxon:2043165","l":"Candidatus Sulfopaludibacter sp. SbA4","na":2,"nb":1,"a":[["TED%3AAF-A0A2U3JYH5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2U3JYH5-F1-model_v4_TED03"],["TED%3AAF-A0A2U3LY46-F1-model_v4_TED01","TED novel fold AF-A0A2U3LY46-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2043165","Candidatus Sulfopaludibacter sp. SbA4"]]},{"id":"NCBITaxon:2044595","l":"Gracilibacteria bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A3D0UUF8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D0UUF8-F1-model_v4_TED02"],["TED%3AAF-A0A660MQW4-F1-model_v4_TED03","TED novel fold AF-A0A660MQW4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2044595","Candidatus Altimarinota bacterium"]]},{"id":"NCBITaxon:2044937","l":"candidate division KSB3 bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A2G6K8E3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G6K8E3-F1-model_v4_TED01"],["TED%3AAF-A0A2G6KFX6-F1-model_v4_TED01","TED novel fold AF-A0A2G6KFX6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2044937","candidate division KSB3 bacterium"]]},{"id":"NCBITaxon:2045445","l":"Rhodobacteraceae bacterium 4F10","na":2,"nb":1,"a":[["TED%3AAF-A0A2G1C1G8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2G1C1G8-F1-model_v4_TED03"],["TED%3AAF-A0A2G1BZQ5-F1-model_v4_TED02","TED novel fold AF-A0A2G1BZQ5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2045445","Rhodobacteraceae bacterium 4F10"]]},{"id":"NCBITaxon:204722","l":"Brucella suis biovar 1 (strain 1330)","na":2,"nb":1,"a":[["Pfam%3APF03625","Domain of unknown function DUF302"],["Pfam%3APF10634","Fe2+ transport protein"]],"b":[["NCBITaxon%3A204722","Brucella suis 1330"]]},{"id":"NCBITaxon:2051959","l":"Edaphobacter lichenicola","na":2,"nb":1,"a":[["TED%3AAF-A0A7W8J8A0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W8J8A0-F1-model_v4_TED01"],["TED%3AAF-A0A7W8MT28-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W8MT28-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2051959","Tunturiibacter lichenicola"]]},{"id":"NCBITaxon:2052142","l":"Acidobacteriaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A7Y5RFN7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y5RFN7-F1-model_v4_TED02"],["TED%3AAF-A0A7Y5VIS3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y5VIS3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052142","Acidobacteriaceae bacterium"]]},{"id":"NCBITaxon:2052152","l":"Candidatus Nomurabacteria bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A354G2P8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A354G2P8-F1-model_v4_TED03"],["TED%3AAF-A0A7T9BFK0-F1-model_v4_TED01","TED novel fold AF-A0A7T9BFK0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052152","Candidatus Nomurabacteria bacterium"]]},{"id":"NCBITaxon:2052182","l":"Rhodanobacteraceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A522RM40-F1-model_v4_TED01","TED novel fold AF-A0A522RM40-F1-model_v4_TED01"],["TED%3AAF-A0A522RTT8-F1-model_v4_TED01","TED novel fold AF-A0A522RTT8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052182","Rhodanobacteraceae bacterium"]]},{"id":"NCBITaxon:2052185","l":"Syntrophobacteraceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A352PU63-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A352PU63-F1-model_v4_TED01"],["TED%3AAF-A0A3B8HTL6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3B8HTL6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2052185","Syntrophobacteraceae bacterium"]]},{"id":"NCBITaxon:2053187","l":"Rhodohalobacter barkolensis","na":2,"nb":1,"a":[["TED%3AAF-A0A2N0VHX0-F1-model_v4_TED02","TED novel fold AF-A0A2N0VHX0-F1-model_v4_TED02"],["TED%3AAF-A0A2N0VJJ6-F1-model_v4_TED02","TED novel fold AF-A0A2N0VJJ6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053187","Rhodohalobacter barkolensis"]]},{"id":"NCBITaxon:2053308","l":"Denitrovibrio sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2N6D8B9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N6D8B9-F1-model_v4_TED02"],["TED%3AAF-A0A2N6D5R6-F1-model_v4_TED02","TED novel fold AF-A0A2N6D5R6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053308","Denitrovibrio sp."]]},{"id":"NCBITaxon:2053494","l":"Acholeplasmatales bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A348WSM8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A348WSM8-F1-model_v4_TED03"],["TED%3AAF-A0A3D5RJM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3D5RJM9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2053494","Acholeplasmatales bacterium"]]},{"id":"NCBITaxon:2053516","l":"Balneolaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A356X2A1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A356X2A1-F1-model_v4_TED01"],["TED%3AAF-A0A356X8T9-F1-model_v4_TED01","TED novel fold AF-A0A356X8T9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053516","Balneolaceae bacterium"]]},{"id":"NCBITaxon:2053517","l":"Bdellovibrionales bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A838F4M8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A838F4M8-F1-model_v4_TED02"],["TED%3AAF-A0A838F0T0-F1-model_v4_TED04","TED novel fold AF-A0A838F0T0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2053517","Bdellovibrionales bacterium"]]},{"id":"NCBITaxon:2053554","l":"Candidatus Falkowbacteria bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A661TPV6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A661TPV6-F1-model_v4_TED02"],["TED%3AAF-A0A351SM32-F1-model_v4_TED02","TED novel fold AF-A0A351SM32-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053554","Candidatus Falkowiibacteriota bacterium"]]},{"id":"NCBITaxon:2053591","l":"Planctomycetales bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A354GQH8-F1-model_v4_TED02","TED novel fold AF-A0A354GQH8-F1-model_v4_TED02"],["TED%3AAF-A0A354GRH7-F1-model_v4_TED01","TED novel fold AF-A0A354GRH7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053591","Planctomycetales bacterium"]]},{"id":"NCBITaxon:2053620","l":"Succinivibrionaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A3C0CAV6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C0CAV6-F1-model_v4_TED01"],["TED%3AAF-A0A3C0CA37-F1-model_v4_TED01","TED novel fold AF-A0A3C0CA37-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053620","Succinivibrionaceae bacterium"]]},{"id":"NCBITaxon:2054177","l":"Christensenellaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A7X9L123-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X9L123-F1-model_v4_TED01"],["TED%3AAF-A0A7X8HJN5-F1-model_v4_TED01","TED novel fold AF-A0A7X8HJN5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2054177","Christensenellaceae bacterium"]]},{"id":"NCBITaxon:2055768","l":"Cyanobacteria bacterium UBA11372","na":2,"nb":1,"a":[["TED%3AAF-A0A350XA13-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A350XA13-F1-model_v4_TED02"],["TED%3AAF-A0A350XDK6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A350XDK6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2055768","Cyanobacteria bacterium UBA11372"]]},{"id":"NCBITaxon:2055771","l":"Cyanobacteria bacterium UBA8553","na":2,"nb":1,"a":[["TED%3AAF-A0A3B8JEH6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B8JEH6-F1-model_v4_TED01"],["TED%3AAF-A0A3B8JT93-F1-model_v4_TED01","TED novel fold AF-A0A3B8JT93-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2055771","Cyanobacteria bacterium UBA8553"]]},{"id":"NCBITaxon:2055774","l":"Cyanobacteria bacterium UBA11367","na":2,"nb":1,"a":[["TED%3AAF-A0A352XGH6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A352XGH6-F1-model_v4_TED02"],["TED%3AAF-A0A352XHH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A352XHH3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2055774","Cyanobacteria bacterium UBA11367"]]},{"id":"NCBITaxon:2056316","l":"Methanophagales archaeon","na":2,"nb":1,"a":[["TED%3AAF-A0A368TL25-F1-model_v4_TED01","TED novel fold AF-A0A368TL25-F1-model_v4_TED01"],["TED%3AAF-A0A849QVV8-F1-model_v4_TED01","TED novel fold AF-A0A849QVV8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2056316","Candidatus Methanophagales archaeon"]]},{"id":"NCBITaxon:2056317","l":"ANME-2 cluster archaeon","na":2,"nb":1,"a":[["TED%3AAF-A0A524PZU0-F1-model_v4_TED02","TED novel fold AF-A0A524PZU0-F1-model_v4_TED02"],["TED%3AAF-A0A7J9T369-F1-model_v4_TED01","TED novel fold AF-A0A7J9T369-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2056317","ANME-2 cluster archaeon"]]},{"id":"NCBITaxon:2056859","l":"Stenotrophomonas sp. HMWF023","na":2,"nb":1,"a":[["TED%3AAF-A0A2R7IPA4-F1-model_v4_TED09","TED novel fold AF-A0A2R7IPA4-F1-model_v4_TED09"],["TED%3AAF-A0A2R7IPB5-F1-model_v4_TED02","TED novel fold AF-A0A2R7IPB5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2056859","Stenotrophomonas sp. HMWF023"]]},{"id":"NCBITaxon:205921","l":"Streptococcus agalactiae serotype Ia (strain ATCC 27591 / A909 / CDC SS700)","na":2,"nb":1,"a":[["Pfam%3APF08829","Alpha C protein N terminal"],["Pfam%3APF17480","AlphaC N-terminal domain 2"]],"b":[["NCBITaxon%3A205921","Streptococcus agalactiae A909"]]},{"id":"NCBITaxon:2065379","l":"Paracoccus jeotgali","na":2,"nb":1,"a":[["TED%3AAF-A0A2K9MH88-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2K9MH88-F1-model_v4_TED01"],["TED%3AAF-A0A2K9MJ90-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2K9MJ90-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2065379","Paracoccus jeotgali"]]},{"id":"NCBITaxon:2066021","l":"Desulfocapsa sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A432R1K4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A432R1K4-F1-model_v4_TED02"],["TED%3AAF-A0A432QNQ2-F1-model_v4_TED01","TED novel fold AF-A0A432QNQ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2066021","Desulfocapsa sp."]]},{"id":"NCBITaxon:2066053","l":"Bacillus sp. UMB0893","na":2,"nb":1,"a":[["TED%3AAF-A0A2N5FCU2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N5FCU2-F1-model_v4_TED02"],["TED%3AAF-A0A2N5FKU1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N5FKU1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2066053","Bacillus sp. UMB0893"]]},{"id":"NCBITaxon:2072417","l":"candidate division NC10 bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A2U1S0N1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U1S0N1-F1-model_v4_TED01"],["TED%3AAF-A0A2U1S545-F1-model_v4_TED03","TED novel fold AF-A0A2U1S545-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2072417","Candidatus Methylomirabilota bacterium"]]},{"id":"NCBITaxon:2079197","l":"Telmatospirillum sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A6A8QF94-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A8QF94-F1-model_v4_TED01"],["TED%3AAF-A0A6A8QJ93-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A8QJ93-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2079197","Telmatospirillum sp."]]},{"id":"NCBITaxon:2080573","l":"Pseudoclavibacter sp. RFBA6","na":2,"nb":1,"a":[["TED%3AAF-A0A2S5X1W1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2S5X1W1-F1-model_v4_TED02"],["TED%3AAF-A0A2S5X6A4-F1-model_v4_TED02","TED novel fold AF-A0A2S5X6A4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2080573","Pseudoclavibacter sp. RFBA6"]]},{"id":"NCBITaxon:2081964","l":"Lysinibacillus sp. B2A1","na":2,"nb":1,"a":[["TED%3AAF-A0A2S0JJX6-F1-model_v4_TED01","TED novel fold AF-A0A2S0JJX6-F1-model_v4_TED01"],["TED%3AAF-A0A2S0JLZ8-F1-model_v4_TED01","TED novel fold AF-A0A2S0JLZ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2081964","Lysinibacillus sp. B2A1"]]},{"id":"NCBITaxon:2082308","l":"Sphaceloma murrayae","na":2,"nb":1,"a":[["TED%3AAF-A0A2K1QZX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2K1QZX4-F1-model_v4_TED01"],["TED%3AAF-A0A2K1R1V3-F1-model_v4_TED01","TED novel fold AF-A0A2K1R1V3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2082308","Sphaceloma murrayae"]]},{"id":"NCBITaxon:2083279","l":"Kaistia algarum","na":2,"nb":1,"a":[["TED%3AAF-A0A2S5U2U1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2S5U2U1-F1-model_v4_TED03"],["TED%3AAF-A0A2S5U3K4-F1-model_v4_TED01","TED novel fold AF-A0A2S5U3K4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2083279","Kaistia algarum"]]},{"id":"NCBITaxon:2099677","l":"Desulfuromonadaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A847C200-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A847C200-F1-model_v4_TED01"],["TED%3AAF-A0A847C290-F1-model_v4_TED02","TED novel fold AF-A0A847C290-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2099677","Desulfuromonadaceae bacterium"]]},{"id":"NCBITaxon:2099678","l":"Desulfuromonadales bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A7Y7NCW4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y7NCW4-F1-model_v4_TED01"],["TED%3AAF-A0A7Y7NAA7-F1-model_v4_TED01","TED novel fold AF-A0A7Y7NAA7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2099678","Desulfuromonadales bacterium"]]},{"id":"NCBITaxon:2099680","l":"Methanobacteriaceae archaeon","na":2,"nb":1,"a":[["TED%3AAF-A0A7L4NXH5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7L4NXH5-F1-model_v4_TED01"],["TED%3AAF-A0A842M5K6-F1-model_v4_TED01","TED novel fold AF-A0A842M5K6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2099680","Methanobacteriaceae archaeon"]]},{"id":"NCBITaxon:2099795","l":"Candidatus Rhabdochlamydia sp. T3358","na":2,"nb":1,"a":[["TED%3AAF-A0A486XQX9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A486XQX9-F1-model_v4_TED01"],["TED%3AAF-A0A486XN84-F1-model_v4_TED02","TED novel fold AF-A0A486XN84-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2099795","Candidatus Rhabdochlamydia sp. T3358"]]},{"id":"NCBITaxon:2100167","l":"Photorhabdus luminescens subsp. mexicana","na":1,"nb":2,"a":[["TED%3AAF-A0A4R4IMQ6-F1-model_v4_TED01","TED novel fold AF-A0A4R4IMQ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29488","Photorhabdus luminescens"],["NCBITaxon%3A2100167","Photorhabdus luminescens subsp. mexicana"]]},{"id":"NCBITaxon:2100533","l":"Sphingobacterium haloxyli","na":2,"nb":1,"a":[["TED%3AAF-A0A2S9J8F0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S9J8F0-F1-model_v4_TED01"],["TED%3AAF-A0A2S9J915-F1-model_v4_TED02","TED novel fold AF-A0A2S9J915-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2100533","Sphingobacterium haloxyli"]]},{"id":"NCBITaxon:2107694","l":"Aphanothece hegewaldii CCALA 016","na":2,"nb":1,"a":[["TED%3AAF-A0A2T1LQB3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T1LQB3-F1-model_v4_TED01"],["TED%3AAF-A0A2T1LZQ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T1LZQ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2107694","Aphanothece hegewaldii CCALA 016"]]},{"id":"NCBITaxon:2107698","l":"Stenomitos frigidus ULC18","na":2,"nb":1,"a":[["TED%3AAF-A0A2T1DVW2-F1-model_v4_TED01","TED novel fold AF-A0A2T1DVW2-F1-model_v4_TED01"],["TED%3AAF-A0A2T1DXN5-F1-model_v4_TED01","TED novel fold AF-A0A2T1DXN5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2107698","Stenomitos frigidus ULC18"]]},{"id":"NCBITaxon:2107700","l":"filamentous cyanobacterium CCP2","na":2,"nb":1,"a":[["TED%3AAF-A0A2T1CHV0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T1CHV0-F1-model_v4_TED01"],["TED%3AAF-A0A2T1CQA7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2T1CQA7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2107700","filamentous cyanobacterium CCP2"]]},{"id":"NCBITaxon:2107701","l":"filamentous cyanobacterium CCP5","na":2,"nb":1,"a":[["TED%3AAF-A0A2P8VY56-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2P8VY56-F1-model_v4_TED02"],["TED%3AAF-A0A2P8WFD1-F1-model_v4_TED02","TED novel fold AF-A0A2P8WFD1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2107701","filamentous cyanobacterium CCP5"]]},{"id":"NCBITaxon:2107705","l":"filamentous cyanobacterium Phorm 46","na":2,"nb":1,"a":[["TED%3AAF-A0A2T1DSP8-F1-model_v4_TED02","TED novel fold AF-A0A2T1DSP8-F1-model_v4_TED02"],["TED%3AAF-A0A2T1EEX4-F1-model_v4_TED01","TED novel fold AF-A0A2T1EEX4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2107705","filamentous cyanobacterium Phorm 46"]]},{"id":"NCBITaxon:2112","l":"Mycoplasmopsis bovigenitalium","na":1,"nb":2,"a":[["TED%3AAF-A0A449A8A6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A449A8A6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2112","Mycoplasmopsis bovigenitalium"],["NCBITaxon%3A1188235","Mycoplasmopsis bovigenitalium 51080"]]},{"id":"NCBITaxon:2113","l":"Mycoplasmopsis californica","na":1,"nb":2,"a":[["TED%3AAF-A0A059XW28-F1-model_v4_TED04","TED novel fold AF-A0A059XW28-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2113","Mycoplasmopsis californica"],["NCBITaxon%3A1397850","Mycoplasmopsis californica HAZ160_1"]]},{"id":"NCBITaxon:2116516","l":"Sphingobacteriales bacterium UPWRP 1","na":2,"nb":1,"a":[["TED%3AAF-A0A2P7TMB8-F1-model_v4_TED01","TED novel fold AF-A0A2P7TMB8-F1-model_v4_TED01"],["TED%3AAF-A0A2P7TQ92-F1-model_v4_TED02","TED novel fold AF-A0A2P7TQ92-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2116516","Sphingobacteriales bacterium UPWRP_1"]]},{"id":"NCBITaxon:2126342","l":"Candidatus Kentron sp. LFY","na":2,"nb":1,"a":[["TED%3AAF-A0A450V704-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A450V704-F1-model_v4_TED01"],["TED%3AAF-A0A450W6Z3-F1-model_v4_TED02","TED novel fold AF-A0A450W6Z3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2126342","Candidatus Kentrum sp. LFY"]]},{"id":"NCBITaxon:2135466","l":"Leifsonia sp. OV430","na":2,"nb":1,"a":[["TED%3AAF-A0A420X9C0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A420X9C0-F1-model_v4_TED01"],["TED%3AAF-A0A420X9H3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A420X9H3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2135466","Leifsonia sp. OV430"]]},{"id":"NCBITaxon:2135469","l":"Filimonas sp. YR581","na":2,"nb":1,"a":[["TED%3AAF-A0A2U0ZFR8-F1-model_v4_TED02","TED novel fold AF-A0A2U0ZFR8-F1-model_v4_TED02"],["TED%3AAF-A0A2U0ZFX6-F1-model_v4_TED01","TED novel fold AF-A0A2U0ZFX6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2135469","Filimonas sp. YR581"]]},{"id":"NCBITaxon:2135615","l":"Stappia sp. ARW1T","na":2,"nb":1,"a":[["TED%3AAF-A0A419YX15-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A419YX15-F1-model_v4_TED01"],["TED%3AAF-A0A419YYJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A419YYJ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2135615","Stappia sp. ARW1T"]]},{"id":"NCBITaxon:2135741","l":"Bacillus sp. OV186","na":2,"nb":1,"a":[["TED%3AAF-A0A2T5S6C1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T5S6C1-F1-model_v4_TED01"],["TED%3AAF-A0A2T5SBX6-F1-model_v4_TED01","TED novel fold AF-A0A2T5SBX6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2135741","Bacillus sp. OV186"]]},{"id":"NCBITaxon:2136176","l":"Deinococcus arcticus","na":2,"nb":1,"a":[["TED%3AAF-A0A2T3W9E4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T3W9E4-F1-model_v4_TED01"],["TED%3AAF-A0A2T3W7H7-F1-model_v4_TED03","TED novel fold AF-A0A2T3W7H7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2136176","Deinococcus arcticus"]]},{"id":"NCBITaxon:2148","l":"Acholeplasma laidlawii","na":1,"nb":2,"a":[["TED%3AAF-A0A553IH20-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A553IH20-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2148","Acholeplasma laidlawii"],["NCBITaxon%3A441768","Acholeplasma laidlawii PG-8A"]]},{"id":"NCBITaxon:215243","l":"Exophiala oligosperma","na":2,"nb":1,"a":[["TED%3AAF-A0A0D2AWG1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0D2AWG1-F1-model_v4_TED02"],["TED%3AAF-A0A0D2DVN6-F1-model_v4_TED02","TED novel fold AF-A0A0D2DVN6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A215243","Exophiala oligosperma"]]},{"id":"NCBITaxon:215250","l":"Acaromyces ingoldii","na":2,"nb":1,"a":[["TED%3AAF-A0A316YKZ9-F1-model_v4_TED01","TED novel fold AF-A0A316YKZ9-F1-model_v4_TED01"],["TED%3AAF-A0A316Z0J2-F1-model_v4_TED02","TED novel fold AF-A0A316Z0J2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A215250","Acaromyces ingoldii"]]},{"id":"NCBITaxon:2161865","l":"Opitutaceae bacterium EW11","na":2,"nb":1,"a":[["TED%3AAF-A0A2T6DTI1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2T6DTI1-F1-model_v4_TED03"],["TED%3AAF-A0A2T6E1F8-F1-model_v4_TED03","TED novel fold AF-A0A2T6E1F8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2161865","Opitutaceae bacterium EW11"]]},{"id":"NCBITaxon:2163","l":"Methanobacterium ivanovii","na":2,"nb":1,"a":[["PROSITE%3APS00839","Uroporphyrin-III C-methyltransferase signature 1"],["PROSITE%3APS00840","Uroporphyrin-III C-methyltransferase signature 2"]],"b":[["NCBITaxon%3A2163","Methanobacterium ivanovii"]]},{"id":"NCBITaxon:2164130","l":"Cyanobium sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2W6ZT90-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2W6ZT90-F1-model_v4_TED02"],["TED%3AAF-A0A4P5VPF8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4P5VPF8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2164130","Cyanobium sp."]]},{"id":"NCBITaxon:2164131","l":"Snowella sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2W7BHM9-F1-model_v4_TED01","TED novel fold AF-A0A2W7BHM9-F1-model_v4_TED01"],["TED%3AAF-A0A2W7BNF2-F1-model_v4_TED02","TED novel fold AF-A0A2W7BNF2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2164131","Snowella sp."]]},{"id":"NCBITaxon:216427","l":"Mesoplasma chauliocola","na":1,"nb":2,"a":[["TED%3AAF-A0A249SN95-F1-model_v4_TED02","TED novel fold AF-A0A249SN95-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A216427","Mesoplasma chauliocola"],["NCBITaxon%3A1336232","Mesoplasma chauliocola ATCC 49578"]]},{"id":"NCBITaxon:216591","l":"Burkholderia cenocepacia J2315","na":1,"nb":2,"a":[["Pfam%3APF04199","Putative cyclase"]],"b":[["NCBITaxon%3A95486","Burkholderia cenocepacia"],["NCBITaxon%3A216591","Burkholderia cenocepacia J2315"]]},{"id":"NCBITaxon:216595","l":"","na":2,"nb":1,"a":[["Pfam%3APF04996","Succinylarginine dihydrolase"],["TED%3AAF-A0A0G4E5V4-F1-model_v4_TED01","TED novel fold AF-A0A0G4E5V4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A216595","Pseudomonas [fluorescens] SBW25"]]},{"id":"NCBITaxon:216931","l":"Spiroplasma alleghenense","na":1,"nb":2,"a":[["TED%3AAF-A0A345Z4J0-F1-model_v4_TED03","TED novel fold AF-A0A345Z4J0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A216931","Spiroplasma alleghenense"],["NCBITaxon%3A1336750","Spiroplasma alleghenense PLHS-1"]]},{"id":"NCBITaxon:216942","l":"Spiroplasma litorale","na":2,"nb":1,"a":[["TED%3AAF-A0A0K1W1A0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0K1W1A0-F1-model_v4_TED02"],["TED%3AAF-A0A0K1W1A0-F1-model_v4_TED05","TED novel fold AF-A0A0K1W1A0-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A216942","Spiroplasma litorale"]]},{"id":"NCBITaxon:2169593","l":"Nitrososphaeraceae archaeon","na":2,"nb":1,"a":[["TED%3AAF-A0A6A7LBX9-F1-model_v4_TED01","TED novel fold AF-A0A6A7LBX9-F1-model_v4_TED01"],["TED%3AAF-A0A6A7LKX5-F1-model_v4_TED01","TED novel fold AF-A0A6A7LKX5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2169593","Nitrososphaeraceae archaeon"]]},{"id":"NCBITaxon:217090","l":"Paenibacillus pasadenensis","na":1,"nb":2,"a":[["TED%3AAF-A0A2N5N237-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N5N237-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A217090","Paenibacillus pasadenensis"],["NCBITaxon%3A1122923","Paenibacillus pasadenensis DSM 19293"]]},{"id":"NCBITaxon:2171976","l":"Agriterribacter soli","na":2,"nb":1,"a":[["TED%3AAF-A0A2T7QCA4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T7QCA4-F1-model_v4_TED01"],["TED%3AAF-A0A2T7QFL0-F1-model_v4_TED01","TED novel fold AF-A0A2T7QFL0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2171976","Agriterribacter soli"]]},{"id":"NCBITaxon:2175644","l":"Curtobacterium sp. MCSS17 016","na":2,"nb":1,"a":[["TED%3AAF-A0A2W1TJ21-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W1TJ21-F1-model_v4_TED01"],["TED%3AAF-A0A2W1TIH0-F1-model_v4_TED01","TED novel fold AF-A0A2W1TIH0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2175644","Curtobacterium sp. MCSS17_016"]]},{"id":"NCBITaxon:2180","l":"Methanothermus fervidus","na":1,"nb":2,"a":[["Pfam%3APF09130","Domain of unknown function (DUF1932)"]],"b":[["NCBITaxon%3A2180","Methanothermus fervidus"],["NCBITaxon%3A523846","Methanothermus fervidus DSM 2088"]]},{"id":"NCBITaxon:218208","l":"Desulfatibacillum aliphaticivorans","na":1,"nb":2,"a":[["TED%3AAF-B8FC96-F1-model_v4_TED02","TED highly-symmetric fold AF-B8FC96-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A218208","Desulfatibacillum aliphaticivorans"],["NCBITaxon%3A1121392","Desulfatibacillum aliphaticivorans DSM 15576"]]},{"id":"NCBITaxon:2183582","l":"Saliniradius amylolyticus","na":2,"nb":1,"a":[["TED%3AAF-A0A2S2E167-F1-model_v4_TED01","TED novel fold AF-A0A2S2E167-F1-model_v4_TED01"],["TED%3AAF-A0A2S2E2D0-F1-model_v4_TED01","TED novel fold AF-A0A2S2E2D0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2183582","Saliniradius amylolyticus"]]},{"id":"NCBITaxon:218497","l":"","na":1,"nb":2,"a":[["Pfam%3APF07578","Lipid A Biosynthesis N-terminal domain"]],"b":[["NCBITaxon%3A83555","Chlamydia abortus"],["NCBITaxon%3A218497","Chlamydia abortus S26/3"]]},{"id":"NCBITaxon:218673","l":"Sulfitobacter dubius","na":1,"nb":2,"a":[["TED%3AAF-A0A1I2SP51-F1-model_v4_TED02","TED novel fold AF-A0A1I2SP51-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A218673","Sulfitobacter dubius"],["NCBITaxon%3A1903071","Sulfitobacter sp."]]},{"id":"NCBITaxon:218821","l":"Amycolatopsis pretoriensis","na":2,"nb":1,"a":[["TED%3AAF-A0A1H5RH46-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H5RH46-F1-model_v4_TED02"],["TED%3AAF-A0A1H5RIK5-F1-model_v4_TED01","TED novel fold AF-A0A1H5RIK5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A218821","Amycolatopsis pretoriensis"]]},{"id":"NCBITaxon:2189","l":"Methanotorris igneus","na":1,"nb":2,"a":[["Pfam%3APF13207","AAA domain"]],"b":[["NCBITaxon%3A2189","Methanotorris igneus"],["NCBITaxon%3A880724","Methanotorris igneus Kol 5"]]},{"id":"NCBITaxon:2190","l":"Methanocaldococcus jannaschii","na":1,"nb":2,"a":[["TED%3AAF-A0A832WL57-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A832WL57-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2190","Methanocaldococcus jannaschii"],["NCBITaxon%3A243232","Methanocaldococcus jannaschii DSM 2661"]]},{"id":"NCBITaxon:2200906","l":"endosymbiont of Galathealinum brachiosum","na":2,"nb":1,"a":[["TED%3AAF-A0A370D976-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A370D976-F1-model_v4_TED01"],["TED%3AAF-A0A370DP35-F1-model_v4_TED02","TED novel fold AF-A0A370DP35-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2200906","endosymbiont of Galathealinum brachiosum"]]},{"id":"NCBITaxon:2202203","l":"Leptospira stimsonii","na":2,"nb":1,"a":[["TED%3AAF-A0A396Z2C7-F1-model_v4_TED01","TED novel fold AF-A0A396Z2C7-F1-model_v4_TED01"],["TED%3AAF-A0A396Z7U2-F1-model_v4_TED02","TED novel fold AF-A0A396Z7U2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2202203","Leptospira stimsonii"]]},{"id":"NCBITaxon:2202894","l":"Pseudomonas sp. RW407","na":2,"nb":1,"a":[["TED%3AAF-A0A2V2T3H1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V2T3H1-F1-model_v4_TED01"],["TED%3AAF-A0A2V2SN48-F1-model_v4_TED01","TED novel fold AF-A0A2V2SN48-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2202894","Pseudomonas sp. RW407"]]},{"id":"NCBITaxon:2203195","l":"Amycolatopsis sp. WAC 01376","na":2,"nb":1,"a":[["TED%3AAF-A0A428XAC6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A428XAC6-F1-model_v4_TED02"],["TED%3AAF-A0A428Y6H5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A428Y6H5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2203195","Amycolatopsis sp. WAC 01376"]]},{"id":"NCBITaxon:2211140","l":"Acidisarcina polymorpha","na":2,"nb":1,"a":[["TED%3AAF-A0A2Z5FS30-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z5FS30-F1-model_v4_TED01"],["TED%3AAF-A0A2Z5G280-F1-model_v4_TED03","TED novel fold AF-A0A2Z5G280-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2211140","Acidisarcina polymorpha"]]},{"id":"NCBITaxon:2212850","l":"Halosegnis rubeus","na":2,"nb":1,"a":[["TED%3AAF-A0A5N5U3N4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5N5U3N4-F1-model_v4_TED02"],["TED%3AAF-A0A5N5U6C0-F1-model_v4_TED01","TED novel fold AF-A0A5N5U6C0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2212850","Halosegnis rubeus"]]},{"id":"NCBITaxon:2219043","l":"Capsulimonas corticalis","na":2,"nb":1,"a":[["TED%3AAF-A0A402D0M5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A402D0M5-F1-model_v4_TED02"],["TED%3AAF-A0A402D2D4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A402D2D4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2219043","Capsulimonas corticalis"]]},{"id":"NCBITaxon:2219161","l":"Putridiphycobacter roseus","na":1,"nb":2,"a":[["TED%3AAF-A0A2W1NR84-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W1NR84-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1198295","Halopenitus salinus"],["NCBITaxon%3A2219161","Putridiphycobacter roseus"]]},{"id":"NCBITaxon:221988","l":"Mannheimia succiniciproducens (strain KCTC 0769BP / MBEL55E)","na":2,"nb":1,"a":[["Pfam%3APF27507","Co-chaperone DjlA transmembrane domain"],["PROSITE%3APS01335","Methylglyoxal synthase active site"]],"b":[["NCBITaxon%3A221988","[Mannheimia] succiniciproducens MBEL55E"]]},{"id":"NCBITaxon:223967","l":"Methylorubrum populi","na":1,"nb":2,"a":[["TED%3AAF-A0A161JLG1-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A161JLG1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A223967","Methylorubrum populi"],["NCBITaxon%3A441620","Methylorubrum populi BJ001"]]},{"id":"NCBITaxon:2249217","l":"Corallococcus sp. H22C18031201","na":2,"nb":1,"a":[["TED%3AAF-A0A3A5FZT0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A5FZT0-F1-model_v4_TED01"],["TED%3AAF-A0A3A5GG84-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A5GG84-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2249217","Corallococcus sp. H22C18031201"]]},{"id":"NCBITaxon:2250580","l":"Blastococcus sp. TF02A-30","na":2,"nb":1,"a":[["TED%3AAF-A0A367AA69-F1-model_v4_TED01","TED novel fold AF-A0A367AA69-F1-model_v4_TED01"],["TED%3AAF-A0A367AG13-F1-model_v4_TED02","TED novel fold AF-A0A367AG13-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2250580","Blastococcus sp. TF02A-30"]]},{"id":"NCBITaxon:2250710","l":"candidate division TA06 bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A523URQ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A523URQ4-F1-model_v4_TED01"],["TED%3AAF-A0A660SDZ3-F1-model_v4_TED01","TED novel fold AF-A0A660SDZ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2250710","candidate division TA06 bacterium"]]},{"id":"NCBITaxon:225324","l":"Enhydrobacter aerosaccus","na":1,"nb":2,"a":[["TED%3AAF-A0A1T4TCH1-F1-model_v4_TED01","TED novel fold AF-A0A1T4TCH1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A225324","Enhydrobacter aerosaccus"],["NCBITaxon%3A553217","Enhydrobacter aerosaccus SK60"]]},{"id":"NCBITaxon:225849","l":"Shewanella piezotolerans WP3","na":1,"nb":2,"a":[["TED%3AAF-B8CPC1-F1-model_v4_TED01","TED novel fold AF-B8CPC1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A404011","Shewanella piezotolerans"],["NCBITaxon%3A225849","Shewanella piezotolerans WP3"]]},{"id":"NCBITaxon:2268139","l":"Thermoproteus sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A831UYY9-F1-model_v4_TED01","TED novel fold AF-A0A831UYY9-F1-model_v4_TED01"],["TED%3AAF-A0A831V605-F1-model_v4_TED02","TED novel fold AF-A0A831V605-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2268139","Thermoproteus sp."]]},{"id":"NCBITaxon:2268195","l":"Methanomicrobia archaeon","na":2,"nb":1,"a":[["TED%3AAF-A0A7J3WNF7-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7J3WNF7-F1-model_v4_TED04"],["TED%3AAF-A0A7J3WP17-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J3WP17-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2268195","Methanomicrobia archaeon"]]},{"id":"NCBITaxon:2268202","l":"Synergistota bacterium","na":1,"nb":2,"a":[["TED%3AAF-A0A7C1DQE8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C1DQE8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A3029084","Aminithiophilus ramosus"],["NCBITaxon%3A2268202","Synergistota bacterium"]]},{"id":"NCBITaxon:227377","l":"Coxiella burnetii (strain RSA 493 / Nine Mile phase I)","na":2,"nb":1,"a":[["Pfam%3APF27266","CBUA0006 C-terminal domain"],["Pfam%3APF01548","Transposase"]],"b":[["NCBITaxon%3A227377","Coxiella burnetii RSA 493"]]},{"id":"NCBITaxon:2282215","l":"Corallincola holothuriorum","na":2,"nb":1,"a":[["TED%3AAF-A0A368NLP9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A368NLP9-F1-model_v4_TED02"],["TED%3AAF-A0A368NKW7-F1-model_v4_TED01","TED novel fold AF-A0A368NKW7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2282215","Corallincola holothuriorum"]]},{"id":"NCBITaxon:2282649","l":"Chitinophaga silvatica","na":2,"nb":1,"a":[["TED%3AAF-A0A3E1Y456-F1-model_v4_TED02","TED novel fold AF-A0A3E1Y456-F1-model_v4_TED02"],["TED%3AAF-A0A3E1YH46-F1-model_v4_TED02","TED novel fold AF-A0A3E1YH46-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2282649","Chitinophaga silvatica"]]},{"id":"NCBITaxon:2283384","l":"Psychrilyobacter sp. S5","na":2,"nb":1,"a":[["TED%3AAF-A0A369XVN8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A369XVN8-F1-model_v4_TED01"],["TED%3AAF-A0A369XXT0-F1-model_v4_TED01","TED novel fold AF-A0A369XXT0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2283384","Psychrilyobacter sp. S5"]]},{"id":"NCBITaxon:2283433","l":"Oceanispirochaeta sp. M1","na":2,"nb":1,"a":[["TED%3AAF-A0A370APH3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A370APH3-F1-model_v4_TED02"],["TED%3AAF-A0A370AU59-F1-model_v4_TED02","TED novel fold AF-A0A370AU59-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2283433","Oceanispirochaeta sp. M1"]]},{"id":"NCBITaxon:2291710","l":"Dokdonella sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A833GMB4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A833GMB4-F1-model_v4_TED02"],["TED%3AAF-A0A5C7ZRS8-F1-model_v4_TED01","TED novel fold AF-A0A5C7ZRS8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2291710","Dokdonella sp."]]},{"id":"NCBITaxon:2291814","l":"Chitinophaga silvisoli","na":2,"nb":1,"a":[["TED%3AAF-A0A3E1NS54-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3E1NS54-F1-model_v4_TED02"],["TED%3AAF-A0A3E1NMZ4-F1-model_v4_TED01","TED novel fold AF-A0A3E1NMZ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2291814","Chitinophaga silvisoli"]]},{"id":"NCBITaxon:229204","l":"Flavobacterium frigoris","na":1,"nb":2,"a":[["TED%3AAF-A0A1H9S675-F1-model_v4_TED01","TED novel fold AF-A0A1H9S675-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A229204","Flavobacterium frigoris"],["NCBITaxon%3A1086011","Flavobacterium frigoris PS1"]]},{"id":"NCBITaxon:2292277","l":"Absiella sp. AM27-20","na":2,"nb":1,"a":[["TED%3AAF-A0A417K626-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A417K626-F1-model_v4_TED02"],["TED%3AAF-A0A417K670-F1-model_v4_TED01","TED novel fold AF-A0A417K670-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292277","Absiella sp. AM27-20"]]},{"id":"NCBITaxon:2292372","l":"Ruminococcus sp. AM42-11","na":2,"nb":1,"a":[["TED%3AAF-A0A417C8A2-F1-model_v4_TED01","TED novel fold AF-A0A417C8A2-F1-model_v4_TED01"],["TED%3AAF-A0A417CUL9-F1-model_v4_TED02","TED novel fold AF-A0A417CUL9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2292372","Ruminococcus sp. AM42-11"]]},{"id":"NCBITaxon:2292702","l":"Adonisia turfae CCMR0081","na":2,"nb":1,"a":[["TED%3AAF-A0A6M0RXW6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A6M0RXW6-F1-model_v4_TED03"],["TED%3AAF-A0A6M0RJE0-F1-model_v4_TED03","TED novel fold AF-A0A6M0RJE0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2292702","Adonisia turfae CCMR0081"]]},{"id":"NCBITaxon:2292889","l":"Firmicutes bacterium AF36-3BH","na":2,"nb":1,"a":[["TED%3AAF-A0A416D5W5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A416D5W5-F1-model_v4_TED02"],["TED%3AAF-A0A416D6M6-F1-model_v4_TED01","TED novel fold AF-A0A416D6M6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292889","Firmicutes bacterium AF36-3BH"]]},{"id":"NCBITaxon:2292938","l":"Bacteroides sp. AM16-13","na":2,"nb":1,"a":[["TED%3AAF-A0A372Z677-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A372Z677-F1-model_v4_TED01"],["TED%3AAF-A0A372Z139-F1-model_v4_TED02","TED novel fold AF-A0A372Z139-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2292938","Bacteroides sp. AM16-13"]]},{"id":"NCBITaxon:2293039","l":"Clostridium sp. OF10-22XD","na":2,"nb":1,"a":[["TED%3AAF-A0A3R6XZD9-F1-model_v4_TED01","TED novel fold AF-A0A3R6XZD9-F1-model_v4_TED01"],["TED%3AAF-A0A3R6XZD9-F1-model_v4_TED02","TED novel fold AF-A0A3R6XZD9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2293039","Clostridium sp. OF10-22XD"]]},{"id":"NCBITaxon:2293112","l":"Odoribacter sp. OF09-27XD","na":2,"nb":1,"a":[["TED%3AAF-A0A7Z6S5M8-F1-model_v4_TED02","TED novel fold AF-A0A7Z6S5M8-F1-model_v4_TED02"],["TED%3AAF-A0A7Z6S656-F1-model_v4_TED01","TED novel fold AF-A0A7Z6S656-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293112","Odoribacter sp. OF09-27XD"]]},{"id":"NCBITaxon:2293138","l":"Roseburia sp. AM59-24XD","na":2,"nb":1,"a":[["TED%3AAF-A0A416HJU1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A416HJU1-F1-model_v4_TED02"],["TED%3AAF-A0A416HH95-F1-model_v4_TED01","TED novel fold AF-A0A416HH95-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293138","Roseburia sp. AM59-24XD"]]},{"id":"NCBITaxon:2293149","l":"Ruminococcus sp. AF16-50","na":2,"nb":1,"a":[["TED%3AAF-A0A373YE22-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A373YE22-F1-model_v4_TED02"],["TED%3AAF-A0A373XS09-F1-model_v4_TED01","TED novel fold AF-A0A373XS09-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293149","Ruminococcus sp. AF16-50"]]},{"id":"NCBITaxon:2293192","l":"Ruminococcus sp. AM27-16","na":2,"nb":1,"a":[["TED%3AAF-A0A417JFT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A417JFT8-F1-model_v4_TED01"],["TED%3AAF-A0A417JTB0-F1-model_v4_TED01","TED novel fold AF-A0A417JTB0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293192","Ruminococcus sp. AM27-16"]]},{"id":"NCBITaxon:2293212","l":"Ruminococcus sp. AM40-10AC","na":2,"nb":1,"a":[["TED%3AAF-A0A417DBZ7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A417DBZ7-F1-model_v4_TED02"],["TED%3AAF-A0A417DNP2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A417DNP2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2293212","Ruminococcus sp. AM40-10AC"]]},{"id":"NCBITaxon:2294117","l":"Hydrogenophaga borbori","na":2,"nb":1,"a":[["TED%3AAF-A0A372EI89-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A372EI89-F1-model_v4_TED01"],["TED%3AAF-A0A372EFE8-F1-model_v4_TED01","TED novel fold AF-A0A372EFE8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2294117","Hydrogenophaga borbori"]]},{"id":"NCBITaxon:229535","l":"Penicillium nordicum","na":2,"nb":1,"a":[["TED%3AAF-A0A0M8NW73-F1-model_v4_TED02","TED novel fold AF-A0A0M8NW73-F1-model_v4_TED02"],["TED%3AAF-A0A0N0RXF0-F1-model_v4_TED02","TED novel fold AF-A0A0N0RXF0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A229535","Penicillium nordicum"]]},{"id":"NCBITaxon:2302943","l":"Coprococcus sp. AF38-1","na":2,"nb":1,"a":[["TED%3AAF-A0A3A6JFT0-F1-model_v4_TED01","TED novel fold AF-A0A3A6JFT0-F1-model_v4_TED01"],["TED%3AAF-A0A3A6JT15-F1-model_v4_TED01","TED novel fold AF-A0A3A6JT15-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2302943","Coprococcus sp. AF38-1"]]},{"id":"NCBITaxon:2305244","l":"Lachnospiraceae bacterium OF11-28","na":2,"nb":1,"a":[["TED%3AAF-A0A373DGG0-F1-model_v4_TED04","TED novel fold AF-A0A373DGG0-F1-model_v4_TED04"],["TED%3AAF-A0A373DHI9-F1-model_v4_TED02","TED novel fold AF-A0A373DHI9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2305244","Lachnospiraceae bacterium OF11-28"]]},{"id":"NCBITaxon:230658","l":"Paraeggerthella hongkongensis","na":1,"nb":2,"a":[["TED%3AAF-A0A3N0B8S6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3N0B8S6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A230658","Paraeggerthella hongkongensis"],["NCBITaxon%3A883106","Paraeggerthella hongkongensis JCM 14552"]]},{"id":"NCBITaxon:231438","l":"Desulfoluna butyratoxydans","na":1,"nb":2,"a":[["TED%3AAF-A0A4U8YKH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8YKH3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A231438","Desulfoluna butyratoxydans"],["NCBITaxon%3A1121410","Desulfoluna butyratoxydans DSM 19427"]]},{"id":"NCBITaxon:2316717","l":"Corallococcus sp. AB032C","na":2,"nb":1,"a":[["TED%3AAF-A0A3A8RDS8-F1-model_v4_TED01","TED novel fold AF-A0A3A8RDS8-F1-model_v4_TED01"],["TED%3AAF-A0A3A8RT77-F1-model_v4_TED01","TED novel fold AF-A0A3A8RT77-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2316717","Corallococcus sp. AB032C"]]},{"id":"NCBITaxon:2316729","l":"Corallococcus sp. CA047B","na":2,"nb":1,"a":[["TED%3AAF-A0A3A8KNN0-F1-model_v4_TED01","TED novel fold AF-A0A3A8KNN0-F1-model_v4_TED01"],["TED%3AAF-A0A3A8LNW8-F1-model_v4_TED01","TED novel fold AF-A0A3A8LNW8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2316729","Corallococcus sp. CA047B"]]},{"id":"NCBITaxon:2316733","l":"Corallococcus terminator","na":2,"nb":1,"a":[["TED%3AAF-A0A3A8HRF7-F1-model_v4_TED01","TED novel fold AF-A0A3A8HRF7-F1-model_v4_TED01"],["TED%3AAF-A0A3A8IT11-F1-model_v4_TED02","TED novel fold AF-A0A3A8IT11-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2316733","Corallococcus terminator"]]},{"id":"NCBITaxon:2316736","l":"Corallococcus exercitus","na":2,"nb":1,"a":[["TED%3AAF-A0A3A8IA29-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3A8IA29-F1-model_v4_TED02"],["TED%3AAF-A0A7Y4KNC0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4KNC0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2316736","Corallococcus exercitus"]]},{"id":"NCBITaxon:2320","l":"Methanopyrus kandleri","na":1,"nb":2,"a":[["TED%3AAF-A0A832SV77-F1-model_v4_TED01","TED novel fold AF-A0A832SV77-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2320","Methanopyrus kandleri"],["NCBITaxon%3A190192","Methanopyrus kandleri AV19"]]},{"id":"NCBITaxon:2320082","l":"Anaerotruncus sp. 1XD22-93","na":2,"nb":1,"a":[["TED%3AAF-A0A3A9HP33-F1-model_v4_TED01","TED novel fold AF-A0A3A9HP33-F1-model_v4_TED01"],["TED%3AAF-A0A3A9IJ99-F1-model_v4_TED01","TED novel fold AF-A0A3A9IJ99-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2320082","Anaerotruncus sp. 1XD22-93"]]},{"id":"NCBITaxon:2320083","l":"Butyricicoccus sp. 1XD8-22","na":2,"nb":1,"a":[["TED%3AAF-A0A658JJ02-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A658JJ02-F1-model_v4_TED01"],["TED%3AAF-A0A658JQH2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A658JQH2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2320083","Butyricicoccus sp. 1XD8-22"]]},{"id":"NCBITaxon:2320098","l":"bacterium D16-59","na":2,"nb":1,"a":[["TED%3AAF-A0A3A8WF47-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A8WF47-F1-model_v4_TED01"],["TED%3AAF-A0A3A8W6I2-F1-model_v4_TED01","TED novel fold AF-A0A3A8W6I2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2320098","bacterium D16-59"]]},{"id":"NCBITaxon:2320104","l":"bacterium D16-54","na":2,"nb":1,"a":[["TED%3AAF-A0A3A9B720-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3A9B720-F1-model_v4_TED03"],["TED%3AAF-A0A3A9B8X8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3A9B8X8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2320104","bacterium D16-54"]]},{"id":"NCBITaxon:2320113","l":"bacterium 1xD42-87","na":2,"nb":1,"a":[["TED%3AAF-A0A3A8ZZW8-F1-model_v4_TED01","TED novel fold AF-A0A3A8ZZW8-F1-model_v4_TED01"],["TED%3AAF-A0A3A9AH75-F1-model_v4_TED01","TED novel fold AF-A0A3A9AH75-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2320113","bacterium 1xD42-87"]]},{"id":"NCBITaxon:2321229","l":"Salinisphaera sp. Q1T1-3","na":2,"nb":1,"a":[["TED%3AAF-A0A3A5J4I3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A5J4I3-F1-model_v4_TED01"],["TED%3AAF-A0A3A5J6V3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A5J6V3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2321229","Salinisphaera sp. Q1T1-3"]]},{"id":"NCBITaxon:232991","l":"Dulcicalothrix desertica PCC 7102","na":1,"nb":2,"a":[["TED%3AAF-A0A433V699-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A433V699-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A32056","Dulcicalothrix desertica"],["NCBITaxon%3A232991","Dulcicalothrix desertica PCC 7102"]]},{"id":"NCBITaxon:2340915","l":"Pseudonocardiaceae bacterium YIM PH 21723","na":2,"nb":1,"a":[["TED%3AAF-A0A419HNW7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A419HNW7-F1-model_v4_TED01"],["TED%3AAF-A0A419HTD5-F1-model_v4_TED01","TED novel fold AF-A0A419HTD5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2340915","Pseudonocardiaceae bacterium YIM PH 21723"]]},{"id":"NCBITaxon:2341083","l":"Mycobacterium innocens","na":2,"nb":1,"a":[["TED%3AAF-A0A498PW13-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A498PW13-F1-model_v4_TED02"],["TED%3AAF-A0A498QDL9-F1-model_v4_TED01","TED novel fold AF-A0A498QDL9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2341083","Mycobacterium innocens"]]},{"id":"NCBITaxon:234267","l":"Candidatus Solibacter usitatus Ellin6076","na":2,"nb":1,"a":[["TED%3AAF-Q01YB9-F1-model_v4_TED05","TED highly-symmetric fold AF-Q01YB9-F1-model_v4_TED05"],["TED%3AAF-Q02DA0-F1-model_v4_TED01","TED highly-symmetric fold AF-Q02DA0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A234267","Candidatus Solibacter usitatus Ellin6076"]]},{"id":"NCBITaxon:2358456","l":"Nitrospinaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A836WQD9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A836WQD9-F1-model_v4_TED03"],["TED%3AAF-A0A836X0F7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A836X0F7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2358456","Nitrospinaceae bacterium"]]},{"id":"NCBITaxon:2382230","l":"Bacteroidetes/Chlorobi group bacterium ChocPot Mid","na":2,"nb":1,"a":[["TED%3AAF-A0A3N0ZFG1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3N0ZFG1-F1-model_v4_TED02"],["TED%3AAF-A0A3N0ZUN4-F1-model_v4_TED01","TED novel fold AF-A0A3N0ZUN4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2382230","Bacteroidetes/Chlorobi group bacterium ChocPot_Mid"]]},{"id":"NCBITaxon:240292","l":"Trichormus variabilis ATCC 29413","na":2,"nb":1,"a":[["Pfam%3APF18921","Cyanophycin synthase-like N-terminal domain"],["Pfam%3APF13619","KTSC domain"]],"b":[["NCBITaxon%3A240292","Trichormus variabilis ATCC 29413"]]},{"id":"NCBITaxon:240840","l":"Actinomadura meyerae","na":1,"nb":2,"a":[["TED%3AAF-A0A239ML85-F1-model_v4_TED01","TED novel fold AF-A0A239ML85-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A240840","Actinomadura meyerae"],["NCBITaxon%3A1989","Actinomadura sp."]]},{"id":"NCBITaxon:2419771","l":"Gryllotalpicola protaetiae","na":2,"nb":1,"a":[["TED%3AAF-A0A387BPP1-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A387BPP1-F1-model_v4_TED06"],["TED%3AAF-A0A387BR07-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A387BR07-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2419771","Gryllotalpicola protaetiae"]]},{"id":"NCBITaxon:2420334","l":"Thermoflexia bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A3M1DIA7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M1DIA7-F1-model_v4_TED01"],["TED%3AAF-A0A7C3BR60-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7C3BR60-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2420334","Thermoflexia bacterium"]]},{"id":"NCBITaxon:243160","l":"Burkholderia mallei ATCC 23344","na":1,"nb":2,"a":[["PROSITE%3APS01306","Uncharacterized protein family UPF0054 signature"]],"b":[["NCBITaxon%3A13373","Burkholderia mallei"],["NCBITaxon%3A243160","Burkholderia mallei ATCC 23344"]]},{"id":"NCBITaxon:243164","l":"Dehalococcoides mccartyi 195","na":1,"nb":2,"a":[["Pfam%3APF13486","Reductive dehalogenase subunit"]],"b":[["NCBITaxon%3A61435","Dehalococcoides mccartyi"],["NCBITaxon%3A243164","Dehalococcoides mccartyi 195"]]},{"id":"NCBITaxon:244734","l":"Bradyrhizobium betae","na":2,"nb":1,"a":[["TED%3AAF-A0A4Q1V2G1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q1V2G1-F1-model_v4_TED01"],["TED%3AAF-A0A5P6PEJ6-F1-model_v4_TED02","TED novel fold AF-A0A5P6PEJ6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A244734","Bradyrhizobium betae"]]},{"id":"NCBITaxon:247156","l":"Nocardia farcinica IFM 10152","na":2,"nb":1,"a":[["Pfam%3APF19288","CofH/MqnC C-terminal region"],["Pfam%3APF17645","Arylmalonate decarboxylase"]],"b":[["NCBITaxon%3A247156","Nocardia farcinica IFM 10152"]]},{"id":"NCBITaxon:247639","l":"marine gamma proteobacterium HTCC2080","na":2,"nb":1,"a":[["TED%3AAF-A0Z244-F1-model_v4_TED01","TED highly-symmetric fold AF-A0Z244-F1-model_v4_TED01"],["TED%3AAF-A0Z9H5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0Z9H5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A247639","marine gamma proteobacterium HTCC2080"]]},{"id":"NCBITaxon:2480821","l":"Desulfurococcales archaeon","na":2,"nb":1,"a":[["TED%3AAF-A0A6B2C9E3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6B2C9E3-F1-model_v4_TED01"],["TED%3AAF-A0A6B2C2J7-F1-model_v4_TED02","TED novel fold AF-A0A6B2C2J7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2480821","Desulfurococcales archaeon"]]},{"id":"NCBITaxon:2483361","l":"Nocardia stercoris","na":2,"nb":1,"a":[["TED%3AAF-A0A3M2L9W7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M2L9W7-F1-model_v4_TED01"],["TED%3AAF-A0A3M2LHY4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M2LHY4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2483361","Nocardia stercoris"]]},{"id":"NCBITaxon:2484932","l":"Leptospira congkakensis","na":2,"nb":1,"a":[["TED%3AAF-A0A4Z1A446-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Z1A446-F1-model_v4_TED01"],["TED%3AAF-A0A4Z1AB08-F1-model_v4_TED02","TED novel fold AF-A0A4Z1AB08-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2484932","Leptospira congkakensis"]]},{"id":"NCBITaxon:2484943","l":"Leptospira sarikeiensis","na":2,"nb":1,"a":[["TED%3AAF-A0A4R9K5P5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R9K5P5-F1-model_v4_TED01"],["TED%3AAF-A0A4R9K578-F1-model_v4_TED01","TED novel fold AF-A0A4R9K578-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2484943","Leptospira sarikeiensis"]]},{"id":"NCBITaxon:2485163","l":"","na":2,"nb":1,"a":[["TED%3AAF-A0A4R7A0H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R7A0H4-F1-model_v4_TED01"],["TED%3AAF-A0A4R7AGM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R7AGM3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2485163","Methylocaldum gracile subsp. desertum"]]},{"id":"NCBITaxon:2486460","l":"Muribaculaceae bacterium Isolate-036 (Harlan)","na":2,"nb":1,"a":[["TED%3AAF-A0A3N2KHW4-F1-model_v4_TED02","TED novel fold AF-A0A3N2KHW4-F1-model_v4_TED02"],["TED%3AAF-A0A3N2KJH8-F1-model_v4_TED05","TED novel fold AF-A0A3N2KJH8-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2486460","Muribaculaceae bacterium Isolate-036 (Harlan)"]]},{"id":"NCBITaxon:2487118","l":"Intestinibaculum porci","na":2,"nb":1,"a":[["TED%3AAF-A0A3G9JNW8-F1-model_v4_TED02","TED novel fold AF-A0A3G9JNW8-F1-model_v4_TED02"],["TED%3AAF-A0A3G9JSX0-F1-model_v4_TED04","TED novel fold AF-A0A3G9JSX0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2487118","Intestinibaculum porci"]]},{"id":"NCBITaxon:2487930","l":"Aureibaculum marinum","na":2,"nb":1,"a":[["TED%3AAF-A0A3N4PIZ4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3N4PIZ4-F1-model_v4_TED02"],["TED%3AAF-A0A3N4NH22-F1-model_v4_TED01","TED novel fold AF-A0A3N4NH22-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2487930","Aureibaculum marinum"]]},{"id":"NCBITaxon:2493089","l":"Pseudoxanthomonas sp. SGD-10","na":2,"nb":1,"a":[["TED%3AAF-A0A3R8MHB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R8MHB9-F1-model_v4_TED01"],["TED%3AAF-A0A426H7W6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A426H7W6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2493089","Pseudoxanthomonas sp. SGD-10"]]},{"id":"NCBITaxon:2494234","l":"Sutterella megalosphaeroides","na":2,"nb":1,"a":[["TED%3AAF-A0A2Z6IAM8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z6IAM8-F1-model_v4_TED01"],["TED%3AAF-A0A2Z6ICR4-F1-model_v4_TED02","TED novel fold AF-A0A2Z6ICR4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2494234","Sutterella megalosphaeroides"]]},{"id":"NCBITaxon:2497860","l":"Cellulosilyticum sp. WCF-2","na":2,"nb":1,"a":[["TED%3AAF-A0A5B9YI52-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5B9YI52-F1-model_v4_TED02"],["TED%3AAF-A0A5B9YJ63-F1-model_v4_TED01","TED novel fold AF-A0A5B9YJ63-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2497860","Cellulosilyticum sp. WCF-2"]]},{"id":"NCBITaxon:2498109","l":"Legionella septentrionalis","na":2,"nb":1,"a":[["TED%3AAF-A0A433JGA1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A433JGA1-F1-model_v4_TED01"],["TED%3AAF-A0A433JI74-F1-model_v4_TED02","TED novel fold AF-A0A433JI74-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2498109","Legionella septentrionalis"]]},{"id":"NCBITaxon:2499851","l":"Inhella crocodyli","na":2,"nb":1,"a":[["TED%3AAF-A0A437LTL6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A437LTL6-F1-model_v4_TED03"],["TED%3AAF-A0A437LTG8-F1-model_v4_TED04","TED novel fold AF-A0A437LTG8-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2499851","Inhella crocodyli"]]},{"id":"NCBITaxon:2502994","l":"Fusarium odoratissimum","na":1,"nb":2,"a":[["TED%3AAF-N1SAH4-F1-model_v4_TED01","TED highly-symmetric fold AF-N1SAH4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2502994","Fusarium odoratissimum"],["NCBITaxon%3A1089451","Fusarium odoratissimum NRRL 54006"]]},{"id":"NCBITaxon:2507584","l":"Enterobacteriaceae bacterium ML5","na":2,"nb":1,"a":[["TED%3AAF-A0A4S3LMQ9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4S3LMQ9-F1-model_v4_TED02"],["TED%3AAF-A0A4S3LL88-F1-model_v4_TED01","TED novel fold AF-A0A4S3LL88-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2507584","Enterobacteriaceae bacterium ML5"]]},{"id":"NCBITaxon:2508720","l":"Oleiharenicola lentus","na":2,"nb":1,"a":[["TED%3AAF-A0A4Q1C7Q2-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A4Q1C7Q2-F1-model_v4_TED04"],["TED%3AAF-A0A4Q1C4T5-F1-model_v4_TED01","TED novel fold AF-A0A4Q1C4T5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2508720","Oleiharenicola lentus"]]},{"id":"NCBITaxon:2508868","l":"Puniceicoccaceae bacterium 5H","na":2,"nb":1,"a":[["TED%3AAF-A0A6N6Z537-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N6Z537-F1-model_v4_TED01"],["TED%3AAF-A0A6N6ZFX7-F1-model_v4_TED01","TED novel fold AF-A0A6N6ZFX7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2508868","Puniceicoccaceae bacterium 5H"]]},{"id":"NCBITaxon:2508949","l":"Candidatus Borkfalkia ceftriaxoniphila","na":2,"nb":1,"a":[["TED%3AAF-A0A4Q2KDG3-F1-model_v4_TED01","TED novel fold AF-A0A4Q2KDG3-F1-model_v4_TED01"],["TED%3AAF-A0A4Q2KFX3-F1-model_v4_TED02","TED novel fold AF-A0A4Q2KFX3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2508949","Candidatus Borkfalkia ceftriaxoniphila"]]},{"id":"NCBITaxon:2508984","l":"Candidatus Saccharicenans subterraneum","na":2,"nb":1,"a":[["TED%3AAF-A0A3E2BK72-F1-model_v4_TED02","TED novel fold AF-A0A3E2BK72-F1-model_v4_TED02"],["TED%3AAF-A0A3E2BKL4-F1-model_v4_TED03","TED novel fold AF-A0A3E2BKL4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2508984","Candidatus Saccharicenans subterraneus"]]},{"id":"NCBITaxon:2510335","l":"Parvularculaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A520R213-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A520R213-F1-model_v4_TED01"],["TED%3AAF-A0A850SW22-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A850SW22-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2510335","Parvularculaceae bacterium"]]},{"id":"NCBITaxon:2510978","l":"Amycolatopsis suaedae","na":2,"nb":1,"a":[["TED%3AAF-A0A4Q7J3A7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q7J3A7-F1-model_v4_TED01"],["TED%3AAF-A0A4Q7JEK5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q7JEK5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2510978","Amycolatopsis suaedae"]]},{"id":"NCBITaxon:2511932","l":"Marine Group I thaumarchaeote","na":2,"nb":1,"a":[["TED%3AAF-A0A7K4NKP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K4NKP7-F1-model_v4_TED01"],["TED%3AAF-A0A7K4MWS9-F1-model_v4_TED01","TED novel fold AF-A0A7K4MWS9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2511932","Marine Group I thaumarchaeote"]]},{"id":"NCBITaxon:2512159","l":"Streptomyces sp. BK447","na":2,"nb":1,"a":[["TED%3AAF-A0A4R7JEY7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R7JEY7-F1-model_v4_TED01"],["TED%3AAF-A0A4R7IPA9-F1-model_v4_TED02","TED novel fold AF-A0A4R7IPA9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2512159","Streptomyces sp. BK447"]]},{"id":"NCBITaxon:2512241","l":"Xylaria flabelliformis","na":2,"nb":1,"a":[["TED%3AAF-A0A553I0L4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A553I0L4-F1-model_v4_TED01"],["TED%3AAF-A0A553HY53-F1-model_v4_TED01","TED novel fold AF-A0A553HY53-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2512241","Xylaria flabelliformis"]]},{"id":"NCBITaxon:2517205","l":"Candidatus Methanomethylophilaceae archaeon","na":2,"nb":1,"a":[["TED%3AAF-A0A843E6Q0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843E6Q0-F1-model_v4_TED01"],["TED%3AAF-A0A843IVX5-F1-model_v4_TED02","TED novel fold AF-A0A843IVX5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2517205","Candidatus Methanomethylophilaceae archaeon"]]},{"id":"NCBITaxon:2517210","l":"Candidatus Brocadiia bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A849WI07-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A849WI07-F1-model_v4_TED01"],["TED%3AAF-A0A849WG49-F1-model_v4_TED01","TED novel fold AF-A0A849WG49-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2517210","Candidatus Brocadiia bacterium"]]},{"id":"NCBITaxon:2518612","l":"Candidatus Nanopelagicales bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A871YDM5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A871YDM5-F1-model_v4_TED01"],["TED%3AAF-A0A871YC05-F1-model_v4_TED03","TED novel fold AF-A0A871YC05-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2518612","Candidatus Nanopelagicales bacterium"]]},{"id":"NCBITaxon:2518622","l":"Methyloglobulus sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A849V6M6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A849V6M6-F1-model_v4_TED01"],["TED%3AAF-A0A849V4F6-F1-model_v4_TED01","TED novel fold AF-A0A849V4F6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2518622","Methyloglobulus sp."]]},{"id":"NCBITaxon:2518971","l":"Duncaniella dubosii","na":2,"nb":1,"a":[["TED%3AAF-A0A4P7W4N7-F1-model_v4_TED01","TED novel fold AF-A0A4P7W4N7-F1-model_v4_TED01"],["TED%3AAF-A0A4V1D356-F1-model_v4_TED01","TED novel fold AF-A0A4V1D356-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2518971","Duncaniella dubosii"]]},{"id":"NCBITaxon:2527974","l":"Tautonia plasticadhaerens","na":2,"nb":1,"a":[["TED%3AAF-A0A518HEF3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A518HEF3-F1-model_v4_TED01"],["TED%3AAF-A0A518H506-F1-model_v4_TED03","TED novel fold AF-A0A518H506-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2527974","Tautonia plasticadhaerens"]]},{"id":"NCBITaxon:2527994","l":"Thalassoglobus polymorphus","na":2,"nb":1,"a":[["TED%3AAF-A0A517QH44-F1-model_v4_TED08","TED highly-symmetric fold AF-A0A517QH44-F1-model_v4_TED08"],["TED%3AAF-A0A517QHS7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A517QHS7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2527994","Thalassoglobus polymorphus"]]},{"id":"NCBITaxon:2527995","l":"Symmachiella dynata","na":2,"nb":1,"a":[["TED%3AAF-A0A517ZUQ7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A517ZUQ7-F1-model_v4_TED02"],["TED%3AAF-A0A517ZU26-F1-model_v4_TED01","TED novel fold AF-A0A517ZU26-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2527995","Symmachiella dynata"]]},{"id":"NCBITaxon:2527996","l":"Crateriforma conspicua","na":2,"nb":1,"a":[["TED%3AAF-A0A5C6FJ16-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C6FJ16-F1-model_v4_TED01"],["TED%3AAF-A0A5C6FR39-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C6FR39-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2527996","Crateriforma conspicua"]]},{"id":"NCBITaxon:2528010","l":"Lignipirellula cremea","na":2,"nb":1,"a":[["TED%3AAF-A0A518DL57-F1-model_v4_TED03","TED novel fold AF-A0A518DL57-F1-model_v4_TED03"],["TED%3AAF-A0A518DQB4-F1-model_v4_TED02","TED novel fold AF-A0A518DQB4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2528010","Lignipirellula cremea"]]},{"id":"NCBITaxon:2528018","l":"Planctomycetes bacterium Poly30","na":2,"nb":1,"a":[["TED%3AAF-A0A518EV70-F1-model_v4_TED02","TED novel fold AF-A0A518EV70-F1-model_v4_TED02"],["TED%3AAF-A0A518EWJ0-F1-model_v4_TED02","TED novel fold AF-A0A518EWJ0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2528018","Saltatorellus ferox"]]},{"id":"NCBITaxon:2528022","l":"Botrimarina mediterranea","na":2,"nb":1,"a":[["TED%3AAF-A0A518K7W0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A518K7W0-F1-model_v4_TED02"],["TED%3AAF-A0A518K645-F1-model_v4_TED02","TED novel fold AF-A0A518K645-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2528022","Botrimarina mediterranea"]]},{"id":"NCBITaxon:2528024","l":"Lacipirellula limnantheis","na":2,"nb":1,"a":[["TED%3AAF-A0A517TZ88-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A517TZ88-F1-model_v4_TED02"],["TED%3AAF-A0A517U4L3-F1-model_v4_TED01","TED novel fold AF-A0A517U4L3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528024","Lacipirellula limnantheis"]]},{"id":"NCBITaxon:2528026","l":"Maioricimonas rarisocia","na":2,"nb":1,"a":[["TED%3AAF-A0A517ZC53-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A517ZC53-F1-model_v4_TED03"],["TED%3AAF-A0A517Z0R0-F1-model_v4_TED01","TED novel fold AF-A0A517Z0R0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528026","Maioricimonas rarisocia"]]},{"id":"NCBITaxon:2528034","l":"Phycisphaerae bacterium RAS1","na":2,"nb":1,"a":[["TED%3AAF-A0A5C5VSG7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C5VSG7-F1-model_v4_TED01"],["TED%3AAF-A0A5C5W2Y3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C5W2Y3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528034","Phycisphaerae bacterium RAS1"]]},{"id":"NCBITaxon:2528041","l":"Methanomassiliicoccus sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A843AYI4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843AYI4-F1-model_v4_TED01"],["TED%3AAF-A0A524I1X9-F1-model_v4_TED01","TED novel fold AF-A0A524I1X9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528041","Methanomassiliicoccus sp."]]},{"id":"NCBITaxon:2528593","l":"Zhaonella formicivorans","na":2,"nb":1,"a":[["TED%3AAF-A0A4R5JND7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R5JND7-F1-model_v4_TED01"],["TED%3AAF-A0A4R5JLL6-F1-model_v4_TED02","TED novel fold AF-A0A4R5JLL6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2528593","Zhaonella formicivorans"]]},{"id":"NCBITaxon:2528971","l":"Azotobacter chroococcum subsp. isscasi","na":1,"nb":2,"a":[["TED%3AAF-A0A4Q9UQR6-F1-model_v4_TED01","TED novel fold AF-A0A4Q9UQR6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A353","Azotobacter chroococcum"],["NCBITaxon%3A2528971","Azotobacter chroococcum subsp. isscasi"]]},{"id":"NCBITaxon:2530339","l":"Tenacibaculum sp. M341","na":2,"nb":1,"a":[["TED%3AAF-A0A4R1AGJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R1AGJ9-F1-model_v4_TED01"],["TED%3AAF-A0A4R1AG26-F1-model_v4_TED01","TED novel fold AF-A0A4R1AG26-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2530339","Tenacibaculum sp. M341"]]},{"id":"NCBITaxon:2530368","l":"Actinomadura rubrisoli","na":2,"nb":1,"a":[["TED%3AAF-A0A4R5AC84-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R5AC84-F1-model_v4_TED01"],["TED%3AAF-A0A4R4ZYW4-F1-model_v4_TED02","TED novel fold AF-A0A4R4ZYW4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2530368","Actinomadura rubrisoli"]]},{"id":"NCBITaxon:2530391","l":"Duncaniella freteri","na":2,"nb":1,"a":[["TED%3AAF-A0A4Z0V1A0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Z0V1A0-F1-model_v4_TED01"],["TED%3AAF-A0A4Z0VA30-F1-model_v4_TED03","TED novel fold AF-A0A4Z0VA30-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2530391","Duncaniella freteri"]]},{"id":"NCBITaxon:253239","l":"Ethanoligenens harbinense","na":1,"nb":2,"a":[["TED%3AAF-A0A386XVY3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A386XVY3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A253239","Ethanoligenens harbinense"],["NCBITaxon%3A663278","Ethanoligenens harbinense YUAN-3"]]},{"id":"NCBITaxon:2547395","l":"Paenibacillus piri","na":2,"nb":1,"a":[["TED%3AAF-A0A4V2ZS36-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A4V2ZS36-F1-model_v4_TED03"],["TED%3AAF-A0A4R5KXP2-F1-model_v4_TED02","TED novel fold AF-A0A4R5KXP2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2547395","Paenibacillus piri"]]},{"id":"NCBITaxon:255616","l":"Haloferax sulfurifontis","na":1,"nb":2,"a":[["TED%3AAF-A0A830E6F0-F1-model_v4_TED02","TED novel fold AF-A0A830E6F0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A255616","Haloferax sulfurifontis"],["NCBITaxon%3A662480","Haloferax sulfurifontis ATCC BAA-897"]]},{"id":"NCBITaxon:2558278","l":"Barnesiella sp. WM24","na":2,"nb":1,"a":[["TED%3AAF-A0A4Y9IUV5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y9IUV5-F1-model_v4_TED01"],["TED%3AAF-A0A4Y9J2S8-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A4Y9J2S8-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2558278","Barnesiella sp. WM24"]]},{"id":"NCBITaxon:2565572","l":"Parasutterella muris","na":1,"nb":2,"a":[["TED%3AAF-A0A6L6YGF5-F1-model_v4_TED01","TED novel fold AF-A0A6L6YGF5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A487175","Parasutterella excrementihominis"],["NCBITaxon%3A2565572","Parasutterella muris"]]},{"id":"NCBITaxon:2571105","l":"Pseudomonas nicosulfuronedens","na":2,"nb":1,"a":[["TED%3AAF-A0A5R9RAI5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5R9RAI5-F1-model_v4_TED01"],["TED%3AAF-A0A5R9QPW4-F1-model_v4_TED02","TED novel fold AF-A0A5R9QPW4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2571105","Pseudomonas nicosulfuronedens"]]},{"id":"NCBITaxon:257314","l":"","na":2,"nb":1,"a":[["Pfam%3APF10439","Bacteriocin class II with double-glycine leader peptide"],["Pfam%3APF02435","Levansucrase/Invertase"]],"b":[["NCBITaxon%3A257314","Lactobacillus johnsonii NCC 533"]]},{"id":"NCBITaxon:257363","l":"Rickettsia typhi str. Wilmington","na":1,"nb":2,"a":[["Pfam%3APF12334","Rickettsia outer membrane protein B, passenger domain"]],"b":[["NCBITaxon%3A785","Rickettsia typhi"],["NCBITaxon%3A257363","Rickettsia typhi str. Wilmington"]]},{"id":"NCBITaxon:2583808","l":"Aggregicoccus sp. 17bor-14","na":2,"nb":1,"a":[["TED%3AAF-A0A6I2GV38-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A6I2GV38-F1-model_v4_TED04"],["TED%3AAF-A0A6I2GU45-F1-model_v4_TED01","TED novel fold AF-A0A6I2GU45-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2583808","Aggregicoccus sp. 17bor-14"]]},{"id":"NCBITaxon:2585211","l":"Mumia zhuanghuii","na":1,"nb":2,"a":[["TED%3AAF-A0A5Q6S068-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Q6S068-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A706184","Flavobacterium anseonense"],["NCBITaxon%3A2585211","Mumia zhuanghuii"]]},{"id":"NCBITaxon:2589807","l":"Rhizobium glycinendophyticum","na":2,"nb":1,"a":[["TED%3AAF-A0A504UB93-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A504UB93-F1-model_v4_TED01"],["TED%3AAF-A0A504UAL4-F1-model_v4_TED01","TED novel fold AF-A0A504UAL4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2589807","Peteryoungia glycinendophytica"]]},{"id":"NCBITaxon:2590453","l":"Myxococcus llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogochensis","na":2,"nb":1,"a":[["TED%3AAF-A0A540WM48-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A540WM48-F1-model_v4_TED01"],["TED%3AAF-A0A540WRD7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A540WRD7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2590453","Myxococcus llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogochensis"]]},{"id":"NCBITaxon:2591008","l":"Exilibacterium tricleocarpae","na":2,"nb":1,"a":[["TED%3AAF-A0A545ST62-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A545ST62-F1-model_v4_TED01"],["TED%3AAF-A0A545TKA2-F1-model_v4_TED01","TED novel fold AF-A0A545TKA2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2591008","Exilibacterium tricleocarpae"]]},{"id":"NCBITaxon:2591009","l":"Denitrobaculum tricleocarpae","na":2,"nb":1,"a":[["TED%3AAF-A0A545T098-F1-model_v4_TED01","TED novel fold AF-A0A545T098-F1-model_v4_TED01"],["TED%3AAF-A0A545TF96-F1-model_v4_TED03","TED novel fold AF-A0A545TF96-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2591009","Denitrobaculum tricleocarpae"]]},{"id":"NCBITaxon:2591038","l":"Moraxellaceae bacterium AER2 44 116","na":2,"nb":1,"a":[["TED%3AAF-A0A507W977-F1-model_v4_TED02","TED novel fold AF-A0A507W977-F1-model_v4_TED02"],["TED%3AAF-A0A507WBL5-F1-model_v4_TED03","TED novel fold AF-A0A507WBL5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2591038","Moraxellaceae bacterium AER2_44_116"]]},{"id":"NCBITaxon:259564","l":"Methanococcoides burtonii DSM 6242","na":1,"nb":2,"a":[["TED%3AAF-Q12W09-F1-model_v4_TED02","TED novel fold AF-Q12W09-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29291","Methanococcoides burtonii"],["NCBITaxon%3A259564","Methanococcoides burtonii DSM 6242"]]},{"id":"NCBITaxon:2596890","l":"Uabimicrobium amorphum","na":2,"nb":1,"a":[["TED%3AAF-A0A5S9IPI8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5S9IPI8-F1-model_v4_TED02"],["TED%3AAF-A0A5S9ISU6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A5S9ISU6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2596890","Candidatus Uabimicrobium amorphum"]]},{"id":"NCBITaxon:2597660","l":"Tomitella fengzijianii","na":2,"nb":1,"a":[["TED%3AAF-A0A516X5Q7-F1-model_v4_TED02","TED novel fold AF-A0A516X5Q7-F1-model_v4_TED02"],["TED%3AAF-A0A516X678-F1-model_v4_TED01","TED novel fold AF-A0A516X678-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2597660","Tomitella fengzijianii"]]},{"id":"NCBITaxon:2597822","l":"Rariglobus hedericola","na":2,"nb":1,"a":[["TED%3AAF-A0A556QRP6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A556QRP6-F1-model_v4_TED01"],["TED%3AAF-A0A556QSH2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A556QSH2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2597822","Rariglobus hedericola"]]},{"id":"NCBITaxon:2600176","l":"Lujinxingia vulgaris","na":2,"nb":1,"a":[["TED%3AAF-A0A5C6XAT5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5C6XAT5-F1-model_v4_TED02"],["TED%3AAF-A0A5C6XBF3-F1-model_v4_TED02","TED novel fold AF-A0A5C6XBF3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2600176","Lujinxingia vulgaris"]]},{"id":"NCBITaxon:2600580","l":"Hepatocystis sp. ex Piliocolobus tephrosceles","na":2,"nb":1,"a":[["TED%3AAF-A0A653H884-F1-model_v4_TED01","TED novel fold AF-A0A653H884-F1-model_v4_TED01"],["TED%3AAF-A0A653HMD1-F1-model_v4_TED01","TED novel fold AF-A0A653HMD1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2600580","Hepatocystis sp. ex Piliocolobus tephrosceles"]]},{"id":"NCBITaxon:2601267","l":"Sphingorhabdus soli","na":2,"nb":1,"a":[["TED%3AAF-A0A5C6U8M3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C6U8M3-F1-model_v4_TED01"],["TED%3AAF-A0A5C6U7V0-F1-model_v4_TED03","TED novel fold AF-A0A5C6U7V0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2601267","Flavisphingopyxis soli"]]},{"id":"NCBITaxon:2601894","l":"Halioglobus maricola","na":2,"nb":1,"a":[["TED%3AAF-A0A5P9NEZ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5P9NEZ2-F1-model_v4_TED01"],["TED%3AAF-A0A5P9NHU7-F1-model_v4_TED02","TED novel fold AF-A0A5P9NHU7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2601894","Halioglobus maricola"]]},{"id":"NCBITaxon:2601898","l":"Noviherbaspirillum sp. UKPF54","na":2,"nb":1,"a":[["TED%3AAF-A0A5B8N2S3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B8N2S3-F1-model_v4_TED01"],["TED%3AAF-A0A5B8NAF3-F1-model_v4_TED01","TED novel fold AF-A0A5B8NAF3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2601898","Noviherbaspirillum sp. UKPF54"]]},{"id":"NCBITaxon:2604466","l":"Nonomuraea sp. PA05","na":2,"nb":1,"a":[["TED%3AAF-A0A5D0QGF6-F1-model_v4_TED01","TED novel fold AF-A0A5D0QGF6-F1-model_v4_TED01"],["TED%3AAF-A0A5D0QRZ7-F1-model_v4_TED02","TED novel fold AF-A0A5D0QRZ7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2604466","Nonomuraea sp. PA05"]]},{"id":"NCBITaxon:2605778","l":"Clostridium porci","na":2,"nb":1,"a":[["TED%3AAF-A0A7X2NKU0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7X2NKU0-F1-model_v4_TED04"],["TED%3AAF-A0A7X2NLE6-F1-model_v4_TED02","TED novel fold AF-A0A7X2NLE6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2605778","Clostridium porci"]]},{"id":"NCBITaxon:2605780","l":"Collinsella sp. WCA1-178-WT-3 (M2)","na":1,"nb":2,"a":[["TED%3AAF-A0A6A8M6A3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A8M6A3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A74426","Collinsella aerofaciens"],["NCBITaxon%3A2605780","Collinsella sp. WCA1-178-WT-3 (M2)"]]},{"id":"NCBITaxon:2605989","l":"Gimesia chilikensis","na":2,"nb":1,"a":[["TED%3AAF-A0A517WDA1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A517WDA1-F1-model_v4_TED01"],["TED%3AAF-A0A517WJP8-F1-model_v4_TED01","TED novel fold AF-A0A517WJP8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2605989","Gimesia chilikensis"]]},{"id":"NCBITaxon:2606626","l":"Sodaliphilus pleomorphus","na":2,"nb":1,"a":[["TED%3AAF-A0A6L5XH57-F1-model_v4_TED03","TED novel fold AF-A0A6L5XH57-F1-model_v4_TED03"],["TED%3AAF-A0A6L5XH76-F1-model_v4_TED01","TED novel fold AF-A0A6L5XH76-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2606626","Sodaliphilus pleomorphus"]]},{"id":"NCBITaxon:2607326","l":"Streptomonospora sp. PA3","na":2,"nb":1,"a":[["TED%3AAF-A0A6N8GAL7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8GAL7-F1-model_v4_TED01"],["TED%3AAF-A0A6N8GG78-F1-model_v4_TED01","TED novel fold AF-A0A6N8GG78-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607326","Streptomonospora sp. PA3"]]},{"id":"NCBITaxon:2607614","l":"Tissierella pigra","na":2,"nb":1,"a":[["TED%3AAF-A0A6N7XY67-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N7XY67-F1-model_v4_TED01"],["TED%3AAF-A0A6N7Y0X7-F1-model_v4_TED01","TED novel fold AF-A0A6N7Y0X7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607614","Tissierella pigra"]]},{"id":"NCBITaxon:2607730","l":"Aquimarina sp. RZ0","na":2,"nb":1,"a":[["TED%3AAF-A0A5B1B781-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5B1B781-F1-model_v4_TED02"],["TED%3AAF-A0A5B1B106-F1-model_v4_TED01","TED novel fold AF-A0A5B1B106-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607730","Aquimarina sp. RZ0"]]},{"id":"NCBITaxon:2607771","l":"Leptolyngbya sp. SIOISBB","na":2,"nb":1,"a":[["TED%3AAF-A0A6I5NY60-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I5NY60-F1-model_v4_TED01"],["TED%3AAF-A0A6I5PEJ2-F1-model_v4_TED01","TED novel fold AF-A0A6I5PEJ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607771","Leptolyngbya sp. SIOISBB"]]},{"id":"NCBITaxon:2607779","l":"Merismopedia sp. SIO2A8","na":2,"nb":1,"a":[["TED%3AAF-A0A6P0YS12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6P0YS12-F1-model_v4_TED01"],["TED%3AAF-A0A6P0Z729-F1-model_v4_TED02","TED novel fold AF-A0A6P0Z729-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2607779","Merismopedia sp. SIO2A8"]]},{"id":"NCBITaxon:2607780","l":"Leptolyngbya sp. SIO3F4","na":2,"nb":1,"a":[["TED%3AAF-A0A6I5PU43-F1-model_v4_TED02","TED novel fold AF-A0A6I5PU43-F1-model_v4_TED02"],["TED%3AAF-A0A6I5Q2F8-F1-model_v4_TED01","TED novel fold AF-A0A6I5Q2F8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607780","Leptolyngbya sp. SIO3F4"]]},{"id":"NCBITaxon:2607789","l":"Symploca sp. SIO2D2","na":2,"nb":1,"a":[["TED%3AAF-A0A6P0RPF6-F1-model_v4_TED04","TED novel fold AF-A0A6P0RPF6-F1-model_v4_TED04"],["TED%3AAF-A0A6P0S7W2-F1-model_v4_TED01","TED novel fold AF-A0A6P0S7W2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607789","Symploca sp. SIO2D2"]]},{"id":"NCBITaxon:2607798","l":"Symploca sp. SIO2G7","na":2,"nb":1,"a":[["TED%3AAF-A0A845Y6S6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A845Y6S6-F1-model_v4_TED01"],["TED%3AAF-A0A845Y7B4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A845Y7B4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607798","Symploca sp. SIO2G7"]]},{"id":"NCBITaxon:2608384","l":"Campylobacter portucalensis","na":2,"nb":1,"a":[["TED%3AAF-A0A6L5WM94-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6L5WM94-F1-model_v4_TED02"],["TED%3AAF-A0A6L5WIX2-F1-model_v4_TED02","TED novel fold AF-A0A6L5WIX2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2608384","Campylobacter portucalensis"]]},{"id":"NCBITaxon:2609281","l":"Massilia frigida","na":2,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_IBH_His","Interface-associated metallophore histidine beta-hydroxylase family"],["proteintraitsmech%3AELIFE109154_TBH_Asp","T-E-associated metallophore aspartate beta-hydroxylase family"]],"b":[["NCBITaxon%3A2609281","Massilia frigida"]]},{"id":"NCBITaxon:2614160","l":"Halospina sp. K52047b","na":1,"nb":2,"a":[["TED%3AAF-A0A5J5FLE6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5J5FLE6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2614160","Halospina sp. K52047b"],["NCBITaxon%3A1803916","Salibacter halophilus"]]},{"id":"NCBITaxon:2614252","l":"Calditrichaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A850AGU9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A850AGU9-F1-model_v4_TED01"],["TED%3AAF-A0A850AN03-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A850AN03-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2614252","Calditrichaceae bacterium"]]},{"id":"NCBITaxon:261474","l":"Pelotomaculum sp. FP","na":1,"nb":2,"a":[["TED%3AAF-A0A4Y7S625-F1-model_v4_TED02","TED novel fold AF-A0A4Y7S625-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053590","Pelotomaculum sp."],["NCBITaxon%3A261474","Pelotomaculum sp. FP"]]},{"id":"NCBITaxon:262698","l":"Brucella abortus biovar 1 (strain 9-941)","na":2,"nb":1,"a":[["Pfam%3APF03625","Domain of unknown function DUF302"],["Pfam%3APF06776","Invasion associated locus B (IalB) protein"]],"b":[["NCBITaxon%3A262698","Brucella abortus bv. 1 str. 9-941"]]},{"id":"NCBITaxon:263819","l":"Yersinia aleksiciae","na":2,"nb":1,"a":[["Pfam%3APF18153","Cap15, cyclic dinucleotide receptor domain"],["Pfam%3APF23471","Cap15, TM helices"]],"b":[["NCBITaxon%3A263819","Yersinia aleksiciae"]]},{"id":"NCBITaxon:264198","l":"Cupriavidus pinatubonensis JMP134","na":1,"nb":2,"a":[["TED%3AAF-Q476D1-F1-model_v4_TED02","TED highly-symmetric fold AF-Q476D1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A106590","Cupriavidus necator"],["NCBITaxon%3A264198","Cupriavidus pinatubonensis JMP134"]]},{"id":"NCBITaxon:264199","l":"Streptococcus thermophilus (strain ATCC BAA-250 / LMG 18311)","na":2,"nb":1,"a":[["Pfam%3APF17864","RuvB AAA lid domain"],["Pfam%3APF27471","Energy-coupling factor transporter EcfA1 C-terminal domain"]],"b":[["NCBITaxon%3A264199","Streptococcus thermophilus LMG 18311"]]},{"id":"NCBITaxon:264297","l":"Cellulomonas denverensis","na":1,"nb":2,"a":[["TED%3AAF-A0A7X6QZH2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X6QZH2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A264297","Cellulomonas denverensis"],["NCBITaxon%3A1305869","Cellulomonas denverensis JCM 14733"]]},{"id":"NCBITaxon:264445","l":"Streptomyces hygroscopicus subsp. limoneus","na":1,"nb":2,"a":[["TED%3AAF-A0A0S2PAJ8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0S2PAJ8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1912","Streptomyces hygroscopicus"],["NCBITaxon%3A264445","Streptomyces hygroscopicus subsp. limoneus"]]},{"id":"NCBITaxon:264483","l":"Phaffia rhodozyma","na":2,"nb":1,"a":[["TED%3AAF-A0A0F7SE65-F1-model_v4_TED03","TED novel fold AF-A0A0F7SE65-F1-model_v4_TED03"],["TED%3AAF-A0A0F7SS48-F1-model_v4_TED01","TED novel fold AF-A0A0F7SS48-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A264483","Phaffia rhodozyma"]]},{"id":"NCBITaxon:264636","l":"Acholeplasma hippikon","na":1,"nb":2,"a":[["TED%3AAF-A0A449BIU6-F1-model_v4_TED01","TED novel fold AF-A0A449BIU6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A264636","Acholeplasma hippikon"],["NCBITaxon%3A1408416","Acholeplasma hippikon ATCC 29725"]]},{"id":"NCBITaxon:2650471","l":"Lacipirellula parvula","na":2,"nb":1,"a":[["TED%3AAF-A0A5K7X529-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5K7X529-F1-model_v4_TED01"],["TED%3AAF-A0A5K7XG93-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5K7XG93-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2650471","Lacipirellula parvula"]]},{"id":"NCBITaxon:265072","l":"Methylobacillus flagellatus KT","na":1,"nb":2,"a":[["Pfam%3APF10414","Sirohaem synthase dimerisation region"]],"b":[["NCBITaxon%3A405","Methylobacillus flagellatus"],["NCBITaxon%3A265072","Methylobacillus flagellatus KT"]]},{"id":"NCBITaxon:2651171","l":"Thermoanaerobaculia bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A6L4B118-F1-model_v4_TED01","TED novel fold AF-A0A6L4B118-F1-model_v4_TED01"],["TED%3AAF-A0A833H7H8-F1-model_v4_TED01","TED novel fold AF-A0A833H7H8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2651171","Thermoanaerobaculia bacterium"]]},{"id":"NCBITaxon:2654236","l":"Cytophagaceae bacterium SJW1-29","na":2,"nb":1,"a":[["TED%3AAF-A0A7C9B999-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C9B999-F1-model_v4_TED02"],["TED%3AAF-A0A7C9BIZ3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C9BIZ3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2654236","Salmonirosea aquatica"]]},{"id":"NCBITaxon:265543","l":"Minutocellus polymorphus","na":2,"nb":1,"a":[["TED%3AAF-A0A7S0B109-F1-model_v4_TED01","TED novel fold AF-A0A7S0B109-F1-model_v4_TED01"],["TED%3AAF-A0A7S0FL87-F1-model_v4_TED01","TED novel fold AF-A0A7S0FL87-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A265543","Minutocellus polymorphus"]]},{"id":"NCBITaxon:265719","l":"Aquimonas voraii","na":1,"nb":2,"a":[["TED%3AAF-A0A1G6S3E9-F1-model_v4_TED02","TED novel fold AF-A0A1G6S3E9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A265719","Aquimonas voraii"],["NCBITaxon%3A1121008","Aquimonas voraii DSM 16957"]]},{"id":"NCBITaxon:266117","l":"Rubrobacter xylanophilus DSM 9941","na":1,"nb":2,"a":[["TED%3AAF-Q1AVL5-F1-model_v4_TED02","TED highly-symmetric fold AF-Q1AVL5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A49319","Rubrobacter xylanophilus"],["NCBITaxon%3A266117","Rubrobacter xylanophilus DSM 9941"]]},{"id":"NCBITaxon:2661913","l":"Actinomadura sp. J1-007","na":2,"nb":1,"a":[["TED%3AAF-A0A6I4PKW5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6I4PKW5-F1-model_v4_TED02"],["TED%3AAF-A0A6I4PYS5-F1-model_v4_TED03","TED novel fold AF-A0A6I4PYS5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2661913","Actinomadura sp. J1-007"]]},{"id":"NCBITaxon:2662194","l":"Pseudomonas sp. FSL R10-0399","na":2,"nb":1,"a":[["TED%3AAF-A0A7X1WIH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X1WIH3-F1-model_v4_TED01"],["TED%3AAF-A0A7X1WKI9-F1-model_v4_TED02","TED novel fold AF-A0A7X1WKI9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2662194","Pseudomonas sp. FSL R10-0399"]]},{"id":"NCBITaxon:2663009","l":"Fusobacterium pseudoperiodonticum","na":2,"nb":1,"a":[["TED%3AAF-A0A2D3NTS3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D3NTS3-F1-model_v4_TED01"],["TED%3AAF-A0A2D3LZB2-F1-model_v4_TED02","TED novel fold AF-A0A2D3LZB2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2663009","Fusobacterium pseudoperiodonticum"]]},{"id":"NCBITaxon:2666084","l":"Duganella guangzhouensis","na":2,"nb":1,"a":[["TED%3AAF-A0A6I2L2N4-F1-model_v4_TED03","TED novel fold AF-A0A6I2L2N4-F1-model_v4_TED03"],["TED%3AAF-A0A6I2LCD9-F1-model_v4_TED01","TED novel fold AF-A0A6I2LCD9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2666084","Duganella guangzhouensis"]]},{"id":"NCBITaxon:2670410","l":"Halobacteria archaeon","na":2,"nb":1,"a":[["TED%3AAF-A0A7K4ERY7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K4ERY7-F1-model_v4_TED01"],["TED%3AAF-A0A7K4E646-F1-model_v4_TED01","TED novel fold AF-A0A7K4E646-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2670410","Halobacteria archaeon"]]},{"id":"NCBITaxon:2672569","l":"Microlunatus sp. Gsoil 973","na":2,"nb":1,"a":[["TED%3AAF-A0A6I5VKN1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I5VKN1-F1-model_v4_TED01"],["TED%3AAF-A0A6I5VPG1-F1-model_v4_TED01","TED novel fold AF-A0A6I5VPG1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2672569","Microlunatus sp. Gsoil 973"]]},{"id":"NCBITaxon:267363","l":"Levilactobacillus zymae","na":1,"nb":2,"a":[["TED%3AAF-A0A5P8PYD2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5P8PYD2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A267363","Levilactobacillus zymae"],["NCBITaxon%3A1423817","Levilactobacillus zymae DSM 19395"]]},{"id":"NCBITaxon:267747","l":"Cutibacterium acnes KPA171202","na":1,"nb":2,"a":[["Pfam%3APF27542","ArfC"]],"b":[["NCBITaxon%3A1747","Cutibacterium acnes"],["NCBITaxon%3A267747","Cutibacterium acnes KPA171202"]]},{"id":"NCBITaxon:2678688","l":"Pseudodesulfovibrio cashew","na":2,"nb":1,"a":[["TED%3AAF-A0A6I6JE61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I6JE61-F1-model_v4_TED01"],["TED%3AAF-A0A6I6JD43-F1-model_v4_TED01","TED novel fold AF-A0A6I6JD43-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2678688","Pseudodesulfovibrio cashew"]]},{"id":"NCBITaxon:2682092","l":"Spirosoma arboris","na":2,"nb":1,"a":[["TED%3AAF-A0A7K1S3P3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7K1S3P3-F1-model_v4_TED02"],["TED%3AAF-A0A7K1S8E3-F1-model_v4_TED02","TED novel fold AF-A0A7K1S8E3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2682092","Spirosoma arboris"]]},{"id":"NCBITaxon:2682781","l":"Mesorhizobium microcysteis","na":2,"nb":1,"a":[["TED%3AAF-A0A5D4GRG3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A5D4GRG3-F1-model_v4_TED03"],["TED%3AAF-A0A5D4H5U8-F1-model_v4_TED01","TED novel fold AF-A0A5D4H5U8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2682781","Neoaquamicrobium microcysteis"]]},{"id":"NCBITaxon:2687297","l":"Oligoflexales bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A832PTV1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A832PTV1-F1-model_v4_TED02"],["TED%3AAF-A0A832QYV9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A832QYV9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2687297","Oligoflexales bacterium"]]},{"id":"NCBITaxon:268739","l":"","na":1,"nb":2,"a":[["TED%3AAF-M1XRW3-F1-model_v4_TED01","TED highly-symmetric fold AF-M1XRW3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A416273","Natronomonas moolapensis"],["NCBITaxon%3A268739","Natronomonas moolapensis 8.8.11"]]},{"id":"NCBITaxon:2690782","l":"Halorubrum sp. JWXQ-INN 858","na":2,"nb":1,"a":[["TED%3AAF-A0A6G2HEJ4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6G2HEJ4-F1-model_v4_TED02"],["TED%3AAF-A0A6G2HCM7-F1-model_v4_TED05","TED novel fold AF-A0A6G2HCM7-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2690782","Halorubrum sp. JWXQ-INN 858"]]},{"id":"NCBITaxon:269482","l":"Burkholderia vietnamiensis G4","na":1,"nb":2,"a":[["TED%3AAF-A4JWD8-F1-model_v4_TED01","TED novel fold AF-A4JWD8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A60552","Burkholderia vietnamiensis"],["NCBITaxon%3A269482","Burkholderia vietnamiensis G4"]]},{"id":"NCBITaxon:269536","l":"Frankia sp. R43","na":2,"nb":1,"a":[["TED%3AAF-A0A0P7CJ03-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0P7CJ03-F1-model_v4_TED02"],["TED%3AAF-A0A0P7CJ87-F1-model_v4_TED02","TED novel fold AF-A0A0P7CJ87-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A269536","Frankia sp. R43"]]},{"id":"NCBITaxon:2695856","l":"Steroidobacter agaridevorans","na":2,"nb":1,"a":[["TED%3AAF-A0A829Y8E6-F1-model_v4_TED02","TED novel fold AF-A0A829Y8E6-F1-model_v4_TED02"],["TED%3AAF-A0A829YLU4-F1-model_v4_TED02","TED novel fold AF-A0A829YLU4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2695856","Steroidobacter agaridevorans"]]},{"id":"NCBITaxon:2699751","l":"Oligosphaeraceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A7X7MJU1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X7MJU1-F1-model_v4_TED01"],["TED%3AAF-A0A7X9G563-F1-model_v4_TED01","TED novel fold AF-A0A7X9G563-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2699751","Oligosphaeraceae bacterium"]]},{"id":"NCBITaxon:2703787","l":"Chitinophaga agri","na":2,"nb":1,"a":[["TED%3AAF-A0A6B9Z9L0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6B9Z9L0-F1-model_v4_TED01"],["TED%3AAF-A0A6B9ZJ42-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6B9ZJ42-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2703787","Chitinophaga agri"]]},{"id":"NCBITaxon:2705072","l":"Candidatus Anoxychlamydiales bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A846KQV6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A846KQV6-F1-model_v4_TED02"],["TED%3AAF-A0A6M1YSW0-F1-model_v4_TED01","TED novel fold AF-A0A6M1YSW0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2705072","Candidatus Anoxychlamydiales bacterium"]]},{"id":"NCBITaxon:2705533","l":"Candidatus Nitronauta litoralis","na":2,"nb":1,"a":[["TED%3AAF-A0A7T0BVA8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T0BVA8-F1-model_v4_TED01"],["TED%3AAF-A0A7T0BVL0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T0BVL0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2705533","Candidatus Nitronauta litoralis"]]},{"id":"NCBITaxon:2708063","l":"Pseudomonas brassicae","na":2,"nb":1,"a":[["TED%3AAF-A0A6B3NI41-F1-model_v4_TED01","TED novel fold AF-A0A6B3NI41-F1-model_v4_TED01"],["TED%3AAF-A0A6M0CT22-F1-model_v4_TED01","TED novel fold AF-A0A6M0CT22-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2708063","Pseudomonas brassicae"]]},{"id":"NCBITaxon:2708301","l":"Kineobactrum salinum","na":2,"nb":1,"a":[["TED%3AAF-A0A6C0TY05-F1-model_v4_TED01","TED novel fold AF-A0A6C0TY05-F1-model_v4_TED01"],["TED%3AAF-A0A6C0U6W3-F1-model_v4_TED01","TED novel fold AF-A0A6C0U6W3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2708301","Kineobactrum salinum"]]},{"id":"NCBITaxon:2709380","l":"Starkeya sp. ORNL1","na":2,"nb":1,"a":[["TED%3AAF-A0A858X0A3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A858X0A3-F1-model_v4_TED01"],["TED%3AAF-A0A858X2A2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A858X2A2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2709380","Starkeya sp. ORNL1"]]},{"id":"NCBITaxon:2709665","l":"Methylobacterium sp. DB0501","na":2,"nb":1,"a":[["TED%3AAF-A0A6M1MDN5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6M1MDN5-F1-model_v4_TED01"],["TED%3AAF-A0A6M1M195-F1-model_v4_TED04","TED novel fold AF-A0A6M1M195-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2709665","Methylobacterium sp. DB0501"]]},{"id":"NCBITaxon:2710756","l":"Streptomyces bathyalis","na":2,"nb":1,"a":[["TED%3AAF-A0A7T1T2F9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T1T2F9-F1-model_v4_TED01"],["TED%3AAF-A0A7T1T7I7-F1-model_v4_TED01","TED novel fold AF-A0A7T1T7I7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2710756","Streptomyces bathyalis"]]},{"id":"NCBITaxon:2714","l":"Aquifex pyrophilus","na":2,"nb":1,"a":[["PROSITE%3APS00923","Aspartate and glutamate racemases signature 1"],["PROSITE%3APS00924","Aspartate and glutamate racemases signature 2"]],"b":[["NCBITaxon%3A2714","Aquifex pyrophilus"]]},{"id":"NCBITaxon:271420","l":"Stutzerimonas xanthomarina","na":1,"nb":2,"a":[["TED%3AAF-A0A3R8TXN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R8TXN3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A271420","Stutzerimonas xanthomarina"],["NCBITaxon%3A1403346","Stutzerimonas xanthomarina DSM 18231"]]},{"id":"NCBITaxon:2721173","l":"Streptomyces sp. DSM 40868","na":1,"nb":2,"a":[["TED%3AAF-A0A6H0CQN2-F1-model_v4_TED02","TED novel fold AF-A0A6H0CQN2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A67315","Streptomyces lavenduligriseus"],["NCBITaxon%3A2721173","Streptomyces sp. DSM 40868"]]},{"id":"NCBITaxon:272123","l":"","na":2,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_FbnM","FbnM-type Dmaq biosynthesis peroxidase subunit family"],["TED%3AAF-K9ZFU9-F1-model_v4_TED01","TED highly-symmetric fold AF-K9ZFU9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A272123","Anabaena cylindrica PCC 7122"]]},{"id":"NCBITaxon:2721777","l":"Oscillospiraceae bacterium HV4-5-C5C","na":2,"nb":1,"a":[["TED%3AAF-A0A7X6CV36-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7X6CV36-F1-model_v4_TED02"],["TED%3AAF-A0A7X6CSM3-F1-model_v4_TED02","TED novel fold AF-A0A7X6CSM3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2721777","Oscillospiraceae bacterium HV4-5-C5C"]]},{"id":"NCBITaxon:2723666","l":"Planctomycetales bacterium ZRK34","na":2,"nb":1,"a":[["TED%3AAF-A0A7G9NYS9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7G9NYS9-F1-model_v4_TED02"],["TED%3AAF-A0A7G9P3Y2-F1-model_v4_TED01","TED novel fold AF-A0A7G9P3Y2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2723666","Planctomycetales bacterium ZRK34"]]},{"id":"NCBITaxon:2725303","l":"Clostridium sp. SM-530-WT-3G","na":1,"nb":2,"a":[["TED%3AAF-A0A7X9S550-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X9S550-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2675590","Clostridium sp. DSM 107452"],["NCBITaxon%3A2725303","Clostridium sp. SM-530-WT-3G"]]},{"id":"NCBITaxon:2725306","l":"Psychrobacillus sp. BL-248-WT-3","na":1,"nb":2,"a":[["TED%3AAF-A0A7X9MW50-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X9MW50-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1871623","Psychrobacillus sp."],["NCBITaxon%3A2725306","Psychrobacillus sp. BL-248-WT-3"]]},{"id":"NCBITaxon:2725996","l":"Lutibacter sp. B1","na":2,"nb":1,"a":[["TED%3AAF-A0A7X8NAT0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X8NAT0-F1-model_v4_TED01"],["TED%3AAF-A0A7X8NAM9-F1-model_v4_TED02","TED novel fold AF-A0A7X8NAM9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2725996","Lutibacter sp. B1"]]},{"id":"NCBITaxon:2726072","l":"Kribbellaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A850DDQ1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A850DDQ1-F1-model_v4_TED01"],["TED%3AAF-A0A850D640-F1-model_v4_TED02","TED novel fold AF-A0A850D640-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2726072","Kribbellaceae bacterium"]]},{"id":"NCBITaxon:2726742","l":"Flammeovirga agarivorans","na":2,"nb":1,"a":[["TED%3AAF-A0A7X8XWP0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7X8XWP0-F1-model_v4_TED03"],["TED%3AAF-A0A7X8SPZ2-F1-model_v4_TED02","TED novel fold AF-A0A7X8SPZ2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2726742","Flammeovirga agarivorans"]]},{"id":"NCBITaxon:2728020","l":"Massilia forsythiae","na":2,"nb":1,"a":[["TED%3AAF-A0A7Z2VYU2-F1-model_v4_TED01","TED novel fold AF-A0A7Z2VYU2-F1-model_v4_TED01"],["TED%3AAF-A0A7Z2VZ79-F1-model_v4_TED03","TED novel fold AF-A0A7Z2VZ79-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2728020","Massilia forsythiae"]]},{"id":"NCBITaxon:2728024","l":"Spirosoma rhododendri","na":2,"nb":1,"a":[["TED%3AAF-A0A7L5DIZ5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7L5DIZ5-F1-model_v4_TED02"],["TED%3AAF-A0A7L5DPJ3-F1-model_v4_TED01","TED novel fold AF-A0A7L5DPJ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2728024","Spirosoma rhododendri"]]},{"id":"NCBITaxon:272831","l":"Neisseria meningitidis FAM18","na":1,"nb":2,"a":[["Pfam%3APF27460","ATP phosphoribosyltransferase subunit HisZ C-terminal domain"]],"b":[["NCBITaxon%3A487","Neisseria meningitidis"],["NCBITaxon%3A272831","Neisseria meningitidis FAM18"]]},{"id":"NCBITaxon:272952","l":"Hyaloperonospora arabidopsidis","na":1,"nb":2,"a":[["Pfam%3APF16829","Avirulence protein ATR13, RxLR effector"]],"b":[["NCBITaxon%3A272952","Hyaloperonospora arabidopsidis"],["NCBITaxon%3A559515","Hyaloperonospora arabidopsidis Emoy2"]]},{"id":"NCBITaxon:2729599","l":"Marinigracilibium pacificum","na":2,"nb":1,"a":[["TED%3AAF-A0A848IYL5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A848IYL5-F1-model_v4_TED02"],["TED%3AAF-A0A848JAJ2-F1-model_v4_TED04","TED novel fold AF-A0A848JAJ2-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2729599","Marinigracilibium pacificum"]]},{"id":"NCBITaxon:273119","l":"Ureaplasma parvum serovar 3 (strain ATCC 700970)","na":2,"nb":1,"a":[["Pfam%3APF11074","Domain of unknown function (DUF2779)"],["Pfam%3APF10896","Protein of unknown function (DUF2714)"]],"b":[["NCBITaxon%3A273119","Ureaplasma parvum serovar 3 str. ATCC 700970"]]},{"id":"NCBITaxon:273384","l":"Brevibacterium aurantiacum","na":1,"nb":2,"a":[["TED%3AAF-A0A556CK32-F1-model_v4_TED02","TED novel fold AF-A0A556CK32-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A273384","Brevibacterium aurantiacum"],["NCBITaxon%3A1703","Brevibacterium linens"]]},{"id":"NCBITaxon:2735135","l":"Azospirillum oleiclasticum","na":2,"nb":1,"a":[["TED%3AAF-A0A853HJJ8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A853HJJ8-F1-model_v4_TED02"],["TED%3AAF-A0A853HQV7-F1-model_v4_TED01","TED novel fold AF-A0A853HQV7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2735135","Azospirillum oleiclasticum"]]},{"id":"NCBITaxon:2735434","l":"Paraburkholderia sp. PGU19","na":2,"nb":1,"a":[["TED%3AAF-A0A7I8CJ86-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7I8CJ86-F1-model_v4_TED02"],["TED%3AAF-A0A7I8CQB6-F1-model_v4_TED02","TED novel fold AF-A0A7I8CQB6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2735434","Paraburkholderia sp. PGU19"]]},{"id":"NCBITaxon:2742195","l":"Mycoplasma sp. OR1901","na":2,"nb":1,"a":[["TED%3AAF-A0A6N1DW44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N1DW44-F1-model_v4_TED01"],["TED%3AAF-A0A6N1DTH0-F1-model_v4_TED06","TED novel fold AF-A0A6N1DTH0-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A2742195","Mycoplasma sp. OR1901"]]},{"id":"NCBITaxon:2745200","l":"Myxococcus sp. AM011","na":2,"nb":1,"a":[["TED%3AAF-A0A7Y6XIE4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y6XIE4-F1-model_v4_TED02"],["TED%3AAF-A0A7Y7CCJ7-F1-model_v4_TED02","TED novel fold AF-A0A7Y7CCJ7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2745200","Myxococcus sp. AM011"]]},{"id":"NCBITaxon:2754057","l":"Xanthomonas hortorum pv. cynarae","na":1,"nb":2,"a":[["TED%3AAF-A0A7Z1NH73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Z1NH73-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A56454","Xanthomonas hortorum"],["NCBITaxon%3A2754057","Xanthomonas hortorum pv. cynarae"]]},{"id":"NCBITaxon:2755382","l":"Nocardia huaxiensis","na":2,"nb":1,"a":[["TED%3AAF-A0A7D6YZX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7D6YZX7-F1-model_v4_TED01"],["TED%3AAF-A0A7D6ZHV2-F1-model_v4_TED02","TED novel fold AF-A0A7D6ZHV2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2755382","Nocardia huaxiensis"]]},{"id":"NCBITaxon:2761102","l":"Halobellus ruber","na":1,"nb":2,"a":[["TED%3AAF-A0A7J9SJC4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J9SJC4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2761102","Halobellus ruber"],["NCBITaxon%3A1979212","Halobellus sp."]]},{"id":"NCBITaxon:2762332","l":"Robiginitalea sp. SC105","na":2,"nb":1,"a":[["TED%3AAF-A0A842IMD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A842IMD6-F1-model_v4_TED01"],["TED%3AAF-A0A842IP13-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A842IP13-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2762332","Robiginitalea sp. SC105"]]},{"id":"NCBITaxon:2768438","l":"Microbacterium sp. SLBN-1","na":2,"nb":1,"a":[["TED%3AAF-A0A542GBV6-F1-model_v4_TED01","TED novel fold AF-A0A542GBV6-F1-model_v4_TED01"],["TED%3AAF-A0A542GBW6-F1-model_v4_TED01","TED novel fold AF-A0A542GBW6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2768438","Microbacterium sp. SLBN-1"]]},{"id":"NCBITaxon:2768448","l":"Promicromonospora sp. SLBN-65","na":2,"nb":1,"a":[["TED%3AAF-A0A542K652-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A542K652-F1-model_v4_TED01"],["TED%3AAF-A0A542JW13-F1-model_v4_TED03","TED novel fold AF-A0A542JW13-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2768448","Promicromonospora sp. SLBN-65"]]},{"id":"NCBITaxon:2774151","l":"Frigoriglobus tundricola","na":2,"nb":1,"a":[["TED%3AAF-A0A6M5Z446-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6M5Z446-F1-model_v4_TED02"],["TED%3AAF-A0A6M5YIB3-F1-model_v4_TED02","TED novel fold AF-A0A6M5YIB3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2774151","Frigoriglobus tundricola"]]},{"id":"NCBITaxon:2788","l":"Pyropia yezoensis","na":2,"nb":1,"a":[["Pfam%3APF06799","Conserved in the green lineage and diatoms 27"],["Pfam%3APF12452","Protein of unknown function (DUF3685)"]],"b":[["NCBITaxon%3A2788","Pyropia yezoensis"]]},{"id":"NCBITaxon:278992","l":"Streptomyces ambofaciens ATCC 23877","na":1,"nb":2,"a":[["Pfam%3APF00553","Cellulose binding domain"]],"b":[["NCBITaxon%3A1889","Streptomyces ambofaciens"],["NCBITaxon%3A278992","Streptomyces ambofaciens ATCC 23877"]]},{"id":"NCBITaxon:279262","l":"Nocardia mexicana","na":1,"nb":2,"a":[["TED%3AAF-A0A370GK18-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A370GK18-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A279262","Nocardia mexicana"],["NCBITaxon%3A1210089","Nocardia mexicana NBRC 108244"]]},{"id":"NCBITaxon:2795974","l":"Stieleria maiorica","na":2,"nb":1,"a":[["TED%3AAF-A0A5B9MHL4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5B9MHL4-F1-model_v4_TED02"],["TED%3AAF-A0A5B9MK37-F1-model_v4_TED03","TED novel fold AF-A0A5B9MK37-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2795974","Stieleria maiorica"]]},{"id":"NCBITaxon:2803864","l":"Shewanella sp. KX20019","na":2,"nb":1,"a":[["TED%3AAF-A0A7U0SGA6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7U0SGA6-F1-model_v4_TED01"],["TED%3AAF-A0A7U0XVY2-F1-model_v4_TED01","TED novel fold AF-A0A7U0XVY2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2803864","Shewanella sp. KX20019"]]},{"id":"NCBITaxon:28085","l":"Legionella cincinnatiensis","na":2,"nb":1,"a":[["TED%3AAF-A0A378ILG0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A378ILG0-F1-model_v4_TED01"],["TED%3AAF-A0A378IH57-F1-model_v4_TED01","TED novel fold AF-A0A378IH57-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28085","Legionella cincinnatiensis"]]},{"id":"NCBITaxon:28113","l":"Prevotella heparinolytica","na":1,"nb":2,"a":[["TED%3AAF-A0A449I749-F1-model_v4_TED01","TED novel fold AF-A0A449I749-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28113","Prevotella heparinolytica"],["NCBITaxon%3A888058","Prevotella heparinolytica ATCC 35895"]]},{"id":"NCBITaxon:28128","l":"Prevotella corporis","na":1,"nb":2,"a":[["TED%3AAF-A0A133Q582-F1-model_v4_TED02","TED novel fold AF-A0A133Q582-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A28128","Prevotella corporis"],["NCBITaxon%3A1122981","Prevotella corporis DSM 18810 = JCM 8529"]]},{"id":"NCBITaxon:281310","l":"Haemophilus influenzae (strain 86-028NP)","na":2,"nb":1,"a":[["Pfam%3APF22106","HvfC C-terminal domain"],["Pfam%3APF09836","HvfC C-terminal domain"]],"b":[["NCBITaxon%3A281310","Haemophilus influenzae 86-028NP"]]},{"id":"NCBITaxon:28185","l":"Spirochaeta sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A3C0SUV0-F1-model_v4_TED03","TED novel fold AF-A0A3C0SUV0-F1-model_v4_TED03"],["TED%3AAF-A0A6N7M3Q7-F1-model_v4_TED01","TED novel fold AF-A0A6N7M3Q7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28185","Spirochaeta sp."]]},{"id":"NCBITaxon:282199","l":"Nereida ignava","na":1,"nb":2,"a":[["TED%3AAF-A0A0U1NPS2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0U1NPS2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A282199","Nereida ignava"],["NCBITaxon%3A1122600","Nereida ignava DSM 16309"]]},{"id":"NCBITaxon:282217","l":"Variovorax sp. SRS16","na":2,"nb":1,"a":[["TED%3AAF-A0A8B6LM65-F1-model_v4_TED02","TED novel fold AF-A0A8B6LM65-F1-model_v4_TED02"],["TED%3AAF-A0A8B6LWN2-F1-model_v4_TED01","TED novel fold AF-A0A8B6LWN2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A282217","Variovorax sp. SRS16"]]},{"id":"NCBITaxon:282683","l":"Salipiger thiooxidans","na":1,"nb":2,"a":[["TED%3AAF-A0A1G7IRE3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G7IRE3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A282683","Salipiger thiooxidans"],["NCBITaxon%3A1207065","Salipiger thiooxidans DLFJ3-3"]]},{"id":"NCBITaxon:284577","l":"Halomonas taeanensis","na":2,"nb":1,"a":[["TED%3AAF-A0A1G7R3Y1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G7R3Y1-F1-model_v4_TED01"],["TED%3AAF-A0A1G7PAN4-F1-model_v4_TED01","TED novel fold AF-A0A1G7PAN4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A284577","Onishia taeanensis"]]},{"id":"NCBITaxon:28572","l":"Talaromyces funiculosus","na":2,"nb":1,"a":[["Pfam%3APF10503","Esterase PHB depolymerase"],["PROSITE%3APS00562","CBM1 (carbohydrate binding type-1) domain signature"]],"b":[["NCBITaxon%3A28572","Talaromyces funiculosus"]]},{"id":"NCBITaxon:287478","l":"Hellea balneolensis","na":1,"nb":2,"a":[["TED%3AAF-A0A7C5QPM5-F1-model_v4_TED01","TED novel fold AF-A0A7C5QPM5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A287478","Hellea balneolensis"],["NCBITaxon%3A1121948","Hellea balneolensis DSM 19091"]]},{"id":"NCBITaxon:287487","l":"Haliea salexigens","na":1,"nb":2,"a":[["TED%3AAF-A0A3C1KKH1-F1-model_v4_TED03","TED novel fold AF-A0A3C1KKH1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A287487","Haliea salexigens"],["NCBITaxon%3A1121937","Haliea salexigens DSM 19537"]]},{"id":"NCBITaxon:28892","l":"Methanofollis liminatans DSM 4140","na":1,"nb":2,"a":[["TED%3AAF-J0S6K4-F1-model_v4_TED02","TED novel fold AF-J0S6K4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2201","Methanofollis liminatans"],["NCBITaxon%3A28892","Methanofollis liminatans DSM 4140"]]},{"id":"NCBITaxon:290318","l":"","na":1,"nb":2,"a":[["Pfam%3APF24850","Bacillithiol biosynthesis BshC, C-terminal coiled-coil domain"]],"b":[["NCBITaxon%3A1094","Chlorobium phaeovibrioides"],["NCBITaxon%3A290318","Chlorobium phaeovibrioides DSM 265"]]},{"id":"NCBITaxon:290339","l":"","na":2,"nb":1,"a":[["Pfam%3APF06610","L-alanine exporter"],["Pfam%3APF10796","Sigma-S stabilisation anti-adaptor protein"]],"b":[["NCBITaxon%3A290339","Cronobacter sakazakii ATCC BAA-894"]]},{"id":"NCBITaxon:290397","l":"","na":1,"nb":2,"a":[["TED%3AAF-Q2IEQ0-F1-model_v4_TED01","TED highly-symmetric fold AF-Q2IEQ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A161493","Anaeromyxobacter dehalogenans"],["NCBITaxon%3A290397","Anaeromyxobacter dehalogenans 2CP-C"]]},{"id":"NCBITaxon:290399","l":"","na":1,"nb":2,"a":[["Pfam%3APF01628","HrcA protein C terminal domain"]],"b":[["NCBITaxon%3A1667","Arthrobacter sp."],["NCBITaxon%3A290399","Arthrobacter sp. FB24"]]},{"id":"NCBITaxon:290512","l":"","na":1,"nb":2,"a":[["Pfam%3APF02043","Bacteriochlorophyll C binding protein"]],"b":[["NCBITaxon%3A1102","Prosthecochloris aestuarii"],["NCBITaxon%3A290512","Prosthecochloris aestuarii DSM 271"]]},{"id":"NCBITaxon:29295","l":"halophilic archaeon","na":1,"nb":2,"a":[["TED%3AAF-A0A365TD16-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A365TD16-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2304676","Halomicrococcus hydrotolerans"],["NCBITaxon%3A29295","halophilic archaeon"]]},{"id":"NCBITaxon:29303","l":"Streptomyces cattleya","na":1,"nb":2,"a":[["Pfam%3APF22636","Fluoroacetyl-CoA-specific thioesterase"]],"b":[["NCBITaxon%3A29303","Streptantibioticus cattleyicolor"],["NCBITaxon%3A1003195","Streptantibioticus cattleyicolor NRRL 8057 = DSM 46488"]]},{"id":"NCBITaxon:29340","l":"Bacillus thuringiensis serovar sotto","na":1,"nb":2,"a":[["Pfam%3APF18449","Pesticidal crystal protein Cry1Aa, domain IV"]],"b":[["NCBITaxon%3A29340","Bacillus thuringiensis serovar sotto"],["NCBITaxon%3A527026","Bacillus thuringiensis serovar sotto str. T04001"]]},{"id":"NCBITaxon:29345","l":"Sedimentibacter hydroxybenzoicus","na":1,"nb":2,"a":[["Pfam%3APF26358","EcdD/BsdD phenolic detoxification"]],"b":[["NCBITaxon%3A29345","Sedimentibacter hydroxybenzoicus"],["NCBITaxon%3A1123245","Sedimentibacter hydroxybenzoicus DSM 7310"]]},{"id":"NCBITaxon:29367","l":"Clostridium puniceum","na":2,"nb":1,"a":[["TED%3AAF-A0A1S8T7W1-F1-model_v4_TED03","TED novel fold AF-A0A1S8T7W1-F1-model_v4_TED03"],["TED%3AAF-A0A1S8TA42-F1-model_v4_TED02","TED novel fold AF-A0A1S8TA42-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29367","Clostridium puniceum"]]},{"id":"NCBITaxon:29428","l":"Methylorubrum rhodinum","na":1,"nb":2,"a":[["TED%3AAF-A0A840ZF28-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A840ZF28-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29428","Methylorubrum rhodinum"],["NCBITaxon%3A1236969","Methylorubrum rhodinum JCM 2811"]]},{"id":"NCBITaxon:29447","l":"Xanthomonas albilineans","na":1,"nb":2,"a":[["TED%3AAF-A0A6P1SIK7-F1-model_v4_TED02","TED novel fold AF-A0A6P1SIK7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29447","Xanthomonas albilineans"],["NCBITaxon%3A380358","Xanthomonas albilineans GPE PC73"]]},{"id":"NCBITaxon:294710","l":"Proteiniphilum acetatigenes","na":1,"nb":2,"a":[["TED%3AAF-A0A101HH48-F1-model_v4_TED02","TED novel fold AF-A0A101HH48-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A294710","Proteiniphilum acetatigenes"],["NCBITaxon%3A1123008","Proteiniphilum acetatigenes DSM 18083"]]},{"id":"NCBITaxon:29482","l":"Salmonella enterica subsp. enterica serovar Abony","na":1,"nb":2,"a":[["Pfam%3APF03614","Repressor of phase-1 flagellin"]],"b":[["NCBITaxon%3A29482","Salmonella enterica subsp. enterica serovar Abony"],["NCBITaxon%3A1029983","Salmonella enterica subsp. enterica serovar Abony str. 0014"]]},{"id":"NCBITaxon:29522","l":"Brachyspira aalborgi","na":2,"nb":1,"a":[["TED%3AAF-A0A5C8E3N2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C8E3N2-F1-model_v4_TED01"],["TED%3AAF-A0A5C8E9C6-F1-model_v4_TED01","TED novel fold AF-A0A5C8E9C6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29522","Brachyspira aalborgi"]]},{"id":"NCBITaxon:29536","l":"Flavobacterium succinicans","na":1,"nb":2,"a":[["TED%3AAF-A0A1I4VV98-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I4VV98-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29536","Flavobacterium succinicans"],["NCBITaxon%3A1450525","Flavobacterium succinicans LMG 10402"]]},{"id":"NCBITaxon:29552","l":"Haploplasma axanthum","na":1,"nb":2,"a":[["TED%3AAF-A0A449BD20-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A449BD20-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29552","Haploplasma axanthum"],["NCBITaxon%3A1278311","Haploplasma axanthum ATCC 25176"]]},{"id":"NCBITaxon:29557","l":"Mycoplasmopsis gallinarum","na":1,"nb":2,"a":[["TED%3AAF-A0A168RG78-F1-model_v4_TED05","TED novel fold AF-A0A168RG78-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A29557","Mycoplasmopsis gallinarum"],["NCBITaxon%3A1122248","Mycoplasmopsis gallinarum DSM 19816"]]},{"id":"NCBITaxon:29559","l":"Metamycoplasma hyosynoviae","na":2,"nb":1,"a":[["TED%3AAF-A0A063YD07-F1-model_v4_TED02","TED novel fold AF-A0A063YD07-F1-model_v4_TED02"],["TED%3AAF-A0A4R7TZF5-F1-model_v4_TED02","TED novel fold AF-A0A4R7TZF5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29559","Metamycoplasma hyosynoviae"]]},{"id":"NCBITaxon:2969","l":"Oxyrrhis marina","na":2,"nb":1,"a":[["TED%3AAF-A0A7S4GPX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4GPX7-F1-model_v4_TED01"],["TED%3AAF-A0A7S4GMJ0-F1-model_v4_TED01","TED novel fold AF-A0A7S4GMJ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2969","Oxyrrhis marina"]]},{"id":"NCBITaxon:297244","l":"Chryseobacterium shigense","na":1,"nb":2,"a":[["TED%3AAF-A0A1N7IFX1-F1-model_v4_TED03","TED novel fold AF-A0A1N7IFX1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A297244","Chryseobacterium shigense"],["NCBITaxon%3A1255686","Chryseobacterium shigense PCAi_B2.3"]]},{"id":"NCBITaxon:29829","l":"Lipomyces starkeyi","na":1,"nb":2,"a":[["Pfam%3APF03702","Anhydro-N-acetylmuramic acid kinase"]],"b":[["NCBITaxon%3A29829","Lipomyces starkeyi"],["NCBITaxon%3A675824","Lipomyces starkeyi NRRL Y-11557"]]},{"id":"NCBITaxon:298657","l":"Pseudoalteromonas spongiae","na":1,"nb":2,"a":[["TED%3AAF-A0A5S3VMG7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5S3VMG7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A298657","Pseudoalteromonas spongiae"],["NCBITaxon%3A1117319","Pseudoalteromonas spongiae UST010723-006"]]},{"id":"NCBITaxon:29920","l":"Phytophthora cactorum","na":2,"nb":1,"a":[["TED%3AAF-A0A329STP2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A329STP2-F1-model_v4_TED02"],["TED%3AAF-A0A329SP24-F1-model_v4_TED02","TED novel fold AF-A0A329SP24-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29920","Phytophthora cactorum"]]},{"id":"NCBITaxon:299255","l":"Ferrimonas marina","na":1,"nb":2,"a":[["TED%3AAF-A0A1M5RZT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M5RZT8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A299255","Ferrimonas marina"],["NCBITaxon%3A1349749","Ferrimonas marina NBRC 102583"]]},{"id":"NCBITaxon:299767","l":"Enterobacter ludwigii","na":1,"nb":2,"a":[["TED%3AAF-W0BYN9-F1-model_v4_TED01","TED highly-symmetric fold AF-W0BYN9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A299767","Enterobacter ludwigii"]]},{"id":"NCBITaxon:300267","l":"Shigella dysenteriae serotype 1 (strain Sd197)","na":2,"nb":1,"a":[["Pfam%3APF07869","Protein of unknown function (DUF1656)"],["Pfam%3APF06872","EspG protein"]],"b":[["NCBITaxon%3A300267","Shigella dysenteriae Sd197"]]},{"id":"NCBITaxon:302484","l":"Haloferax larsenii","na":1,"nb":2,"a":[["TED%3AAF-A0A1H7N6T5-F1-model_v4_TED01","TED novel fold AF-A0A1H7N6T5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A302484","Haloferax larsenii"],["NCBITaxon%3A1227460","Haloferax larsenii JCM 13917"]]},{"id":"NCBITaxon:303698","l":"Penicillium steckii","na":2,"nb":1,"a":[["TED%3AAF-A0A1V6TCF9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1V6TCF9-F1-model_v4_TED03"],["TED%3AAF-A0A1V6U0I0-F1-model_v4_TED02","TED novel fold AF-A0A1V6U0I0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A303698","Penicillium steckii"]]},{"id":"NCBITaxon:304371","l":"Methanocella paludicola SANAE","na":1,"nb":2,"a":[["TED%3AAF-D1Z063-F1-model_v4_TED03","TED highly-symmetric fold AF-D1Z063-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A570267","Methanocella paludicola"],["NCBITaxon%3A304371","Methanocella paludicola SANAE"]]},{"id":"NCBITaxon:305507","l":"Algoriphagus locisalis","na":2,"nb":1,"a":[["TED%3AAF-A0A1I7E6M2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I7E6M2-F1-model_v4_TED02"],["TED%3AAF-A0A1I7CQ03-F1-model_v4_TED01","TED novel fold AF-A0A1I7CQ03-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A305507","Algoriphagus locisalis"]]},{"id":"NCBITaxon:306537","l":"Corynebacterium jeikeium K411","na":1,"nb":2,"a":[["TED%3AAF-Q4JSH9-F1-model_v4_TED02","TED novel fold AF-Q4JSH9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A38289","Corynebacterium jeikeium"],["NCBITaxon%3A306537","Corynebacterium jeikeium K411"]]},{"id":"NCBITaxon:307","l":"Pseudomonas sp. (strain KKS102)","na":2,"nb":1,"a":[["Pfam%3APF22632","Dihydroxybiphenyl dioxygenase BphC D1"],["PROSITE%3APS00082","Extradiol ring-cleavage dioxygenases signature"]],"b":[["NCBITaxon%3A307","Pseudomonas sp. KKS102"]]},{"id":"NCBITaxon:309798","l":"","na":1,"nb":2,"a":[["TED%3AAF-B5Y636-F1-model_v4_TED03","TED novel fold AF-B5Y636-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A35786","Coprothermobacter proteolyticus"],["NCBITaxon%3A309798","Coprothermobacter proteolyticus DSM 5265"]]},{"id":"NCBITaxon:309803","l":"","na":1,"nb":2,"a":[["Pfam%3APF01960","ArgJ family"]],"b":[["NCBITaxon%3A2337","Thermotoga neapolitana"],["NCBITaxon%3A309803","Thermotoga neapolitana DSM 4359"]]},{"id":"NCBITaxon:309807","l":"Salinibacter ruber DSM 13855","na":1,"nb":2,"a":[["Pfam%3APF06491","Disulphide isomerase"]],"b":[["NCBITaxon%3A146919","Salinibacter ruber"],["NCBITaxon%3A309807","Salinibacter ruber DSM 13855"]]},{"id":"NCBITaxon:311234","l":"Cellulomonas terrae","na":1,"nb":2,"a":[["TED%3AAF-A0A511JIA8-F1-model_v4_TED02","TED novel fold AF-A0A511JIA8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A311234","Cellulomonas terrae"],["NCBITaxon%3A1305858","Cellulomonas terrae JCM 14899"]]},{"id":"NCBITaxon:311334","l":"Chryseobacterium taeanense","na":1,"nb":2,"a":[["TED%3AAF-A0A1G8PE03-F1-model_v4_TED03","TED novel fold AF-A0A1G8PE03-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A311334","Chryseobacterium taeanense"],["NCBITaxon%3A1227361","Chryseobacterium taeanense ARB2"]]},{"id":"NCBITaxon:311403","l":"","na":1,"nb":2,"a":[["Pfam%3APF07969","Amidohydrolase family"]],"b":[["NCBITaxon%3A3025782","Gillisella ampelina"],["NCBITaxon%3A311403","Rhizobium rhizogenes K84"]]},{"id":"NCBITaxon:313594","l":"Polaribacter irgensii 23-P","na":1,"nb":2,"a":[["TED%3AAF-A4BXQ4-F1-model_v4_TED01","TED novel fold AF-A4BXQ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A531","Polaribacter irgensii"],["NCBITaxon%3A313594","Polaribacter irgensii 23-P"]]},{"id":"NCBITaxon:313595","l":"Psychroflexus torquis ATCC 700755","na":1,"nb":2,"a":[["TED%3AAF-K4IBR2-F1-model_v4_TED01","TED novel fold AF-K4IBR2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A57029","Psychroflexus torquis"],["NCBITaxon%3A313595","Psychroflexus torquis ATCC 700755"]]},{"id":"NCBITaxon:313603","l":"Maribacter sp. HTCC2170","na":2,"nb":1,"a":[["TED%3AAF-A4ARA8-F1-model_v4_TED01","TED novel fold AF-A4ARA8-F1-model_v4_TED01"],["TED%3AAF-A4ARA8-F1-model_v4_TED02","TED novel fold AF-A4ARA8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A313603","Maribacter sp. HTCC2170"]]},{"id":"NCBITaxon:314230","l":"Blastopirellula marina DSM 3645","na":1,"nb":2,"a":[["TED%3AAF-A3ZZX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A3ZZX2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A124","Blastopirellula marina"],["NCBITaxon%3A314230","Blastopirellula marina DSM 3645"]]},{"id":"NCBITaxon:314280","l":"Photobacterium profundum 3TCK","na":2,"nb":1,"a":[["TED%3AAF-Q1Z3V5-F1-model_v4_TED02","TED highly-symmetric fold AF-Q1Z3V5-F1-model_v4_TED02"],["TED%3AAF-Q1YWT9-F1-model_v4_TED01","TED novel fold AF-Q1YWT9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A314280","Photobacterium profundum 3TCK"]]},{"id":"NCBITaxon:315277","l":"Chlamydia trachomatis A/HAR-13","na":1,"nb":2,"a":[["Pfam%3APF05745","Chlamydia 15 kDa cysteine-rich outer membrane protein (CRPA)"]],"b":[["NCBITaxon%3A813","Chlamydia trachomatis"],["NCBITaxon%3A315277","Chlamydia trachomatis A/HAR-13"]]},{"id":"NCBITaxon:315358","l":"Spiroplasma eriocheiris","na":1,"nb":2,"a":[["TED%3AAF-A0A0H3XHP2-F1-model_v4_TED01","TED novel fold AF-A0A0H3XHP2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A315358","Spiroplasma eriocheiris"],["NCBITaxon%3A743698","Spiroplasma eriocheiris CCTCC M 207170"]]},{"id":"NCBITaxon:315730","l":"Bacillus mycoides (strain KBAB4)","na":2,"nb":1,"a":[["Pfam%3APF11023","Zinc-ribbon containing domain"],["Pfam%3APF07155","ECF-type riboflavin transporter, S component"]],"b":[["NCBITaxon%3A315730","Bacillus mycoides KBAB4"]]},{"id":"NCBITaxon:316274","l":"Herpetosiphon aurantiacus DSM 785","na":1,"nb":2,"a":[["TED%3AAF-A9AZN6-F1-model_v4_TED02","TED highly-symmetric fold AF-A9AZN6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A65","Herpetosiphon aurantiacus"],["NCBITaxon%3A316274","Herpetosiphon aurantiacus DSM 785"]]},{"id":"NCBITaxon:317010","l":"Enterococcus canintestini","na":1,"nb":2,"a":[["TED%3AAF-A0A1L8R2Z2-F1-model_v4_TED01","TED novel fold AF-A0A1L8R2Z2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1448267","Corynebacterium nasicanis"],["NCBITaxon%3A317010","Enterococcus canintestini"]]},{"id":"NCBITaxon:317655","l":"Sphingopyxis alaskensis RB2256","na":1,"nb":2,"a":[["Pfam%3APF10755","Protein of unknown function (DUF2585)"]],"b":[["NCBITaxon%3A117207","Sphingopyxis alaskensis"],["NCBITaxon%3A317655","Sphingopyxis alaskensis RB2256"]]},{"id":"NCBITaxon:318167","l":"Shewanella frigidimarina (strain NCIMB 400)","na":2,"nb":1,"a":[["Pfam%3APF14537","Cytochrome c3"],["TED%3AAF-Q080H2-F1-model_v4_TED02","TED novel fold AF-Q080H2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A318167","Shewanella frigidimarina NCIMB 400"]]},{"id":"NCBITaxon:318683","l":"Gluconobacter albidus","na":1,"nb":2,"a":[["TED%3AAF-A0A149TK51-F1-model_v4_TED01","TED novel fold AF-A0A149TK51-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A318683","Gluconobacter albidus"],["NCBITaxon%3A1307944","Gluconobacter albidus NBRC 3250"]]},{"id":"NCBITaxon:318829","l":"Magnaporthe oryzae","na":2,"nb":1,"a":[["TED%3AAF-A0A4P7NAU2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P7NAU2-F1-model_v4_TED01"],["TED%3AAF-A0A4P7MZB7-F1-model_v4_TED02","TED novel fold AF-A0A4P7MZB7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A318829","Pyricularia oryzae"]]},{"id":"NCBITaxon:319017","l":"Bradyrhizobium sp. WSM471","na":2,"nb":1,"a":[["TED%3AAF-H5YAF1-F1-model_v4_TED02","TED highly-symmetric fold AF-H5YAF1-F1-model_v4_TED02"],["TED%3AAF-H5Y776-F1-model_v4_TED02","TED novel fold AF-H5Y776-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A319017","Bradyrhizobium sp. WSM471"]]},{"id":"NCBITaxon:319224","l":"Shewanella putrefaciens CN-32","na":2,"nb":1,"a":[["Pfam%3APF17810","Arginine decarboxylase helical bundle domain"],["Pfam%3APF17944","Arginine decarboxylase C-terminal helical extension"]],"b":[["NCBITaxon%3A319224","Shewanella putrefaciens CN-32"]]},{"id":"NCBITaxon:319795","l":"","na":1,"nb":2,"a":[["Pfam%3APF12747","DdrB-like protein"]],"b":[["NCBITaxon%3A68909","Deinococcus geothermalis"],["NCBITaxon%3A319795","Deinococcus geothermalis DSM 11300"]]},{"id":"NCBITaxon:32052","l":"Synechococcus sp. (strain WH8020)","na":2,"nb":1,"a":[["Pfam%3APF10847","Protein of unknown function (DUF2656)"],["TED%3AAF-A0A0H4B904-F1-model_v4_TED02","TED novel fold AF-A0A0H4B904-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A32052","Synechococcus sp. WH 8020"]]},{"id":"NCBITaxon:320771","l":"","na":2,"nb":1,"a":[["TED%3AAF-B9XAB4-F1-model_v4_TED02","TED highly-symmetric fold AF-B9XAB4-F1-model_v4_TED02"],["TED%3AAF-B9XFV1-F1-model_v4_TED01","TED highly-symmetric fold AF-B9XFV1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A320771","Pedosphaera parvula Ellin514"]]},{"id":"NCBITaxon:320912","l":"Maribacter dokdonensis","na":1,"nb":2,"a":[["TED%3AAF-A0A1H4M5S7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H4M5S7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A320912","Maribacter dokdonensis"],["NCBITaxon%3A1300346","Maribacter dokdonensis DSW-8"]]},{"id":"NCBITaxon:321317","l":"Sphaerisporangium rubeum","na":2,"nb":1,"a":[["TED%3AAF-A0A7X0IGY2-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A7X0IGY2-F1-model_v4_TED06"],["TED%3AAF-A0A7X0MAZ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X0MAZ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A321317","Sphaerisporangium rubeum"]]},{"id":"NCBITaxon:321662","l":"Pseudomonas moraviensis","na":1,"nb":2,"a":[["TED%3AAF-A0A423NRI6-F1-model_v4_TED06","TED novel fold AF-A0A423NRI6-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A321662","Pseudomonas moraviensis"],["NCBITaxon%3A1689450","Pseudomonas moraviensis subsp. stanleyae"]]},{"id":"NCBITaxon:322710","l":"Azotobacter vinelandii DJ","na":2,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_Orn_monoox","Metallophore-associated ornithine N5-monooxygenase family"],["proteintraitsmech%3AELIFE109154_PvdP","Pyoverdine chromophore maturation tyrosinase family"]],"b":[["NCBITaxon%3A322710","Azotobacter vinelandii DJ"]]},{"id":"NCBITaxon:323259","l":"Methanospirillum hungatei JF-1","na":1,"nb":2,"a":[["Pfam%3APF01864","CDP-archaeol synthase"]],"b":[["NCBITaxon%3A2203","Methanospirillum hungatei"],["NCBITaxon%3A323259","Methanospirillum hungatei JF-1"]]},{"id":"NCBITaxon:323426","l":"Jezberella montanilacus","na":2,"nb":1,"a":[["TED%3AAF-A0A2T0XBZ0-F1-model_v4_TED02","TED novel fold AF-A0A2T0XBZ0-F1-model_v4_TED02"],["TED%3AAF-A0A2T0XCA1-F1-model_v4_TED02","TED novel fold AF-A0A2T0XCA1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A323426","Jezberella montanilacus"]]},{"id":"NCBITaxon:323545","l":"Xylaria multiplex","na":2,"nb":1,"a":[["TED%3AAF-A0A7C8ILS5-F1-model_v4_TED01","TED novel fold AF-A0A7C8ILS5-F1-model_v4_TED01"],["TED%3AAF-A0A7C8MZ20-F1-model_v4_TED02","TED novel fold AF-A0A7C8MZ20-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A323545","Xylaria multiplex"]]},{"id":"NCBITaxon:325240","l":"","na":1,"nb":2,"a":[["Pfam%3APF04337","Protein of unknown function, DUF480"]],"b":[["NCBITaxon%3A62322","Shewanella baltica"],["NCBITaxon%3A325240","Shewanella baltica OS155"]]},{"id":"NCBITaxon:326424","l":"Frankia alni ACN14a","na":1,"nb":2,"a":[["Pfam%3APF14403","Circularly permuted ATP-grasp type 2"]],"b":[["NCBITaxon%3A1859","Frankia alni"],["NCBITaxon%3A326424","Frankia alni ACN14a"]]},{"id":"NCBITaxon:326427","l":"","na":1,"nb":2,"a":[["Pfam%3APF22039","Imidazolonepropionase-like composite domain, bacteria"]],"b":[["NCBITaxon%3A152260","Chloroflexus aggregans"],["NCBITaxon%3A326427","Chloroflexus aggregans DSM 9485"]]},{"id":"NCBITaxon:327575","l":"Capnocytophaga leadbetteri","na":1,"nb":2,"a":[["TED%3AAF-A0A250FA39-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A250FA39-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A327575","Capnocytophaga leadbetteri"],["NCBITaxon%3A1410028","Capnocytophaga leadbetteri HMP_JCVI_SC0215"]]},{"id":"NCBITaxon:331678","l":"Chlorobium phaeobacteroides (strain BS1)","na":2,"nb":1,"a":[["Pfam%3APF28537","Probable trigger factor, FKBP-like domain"],["TED%3AAF-B3ENX6-F1-model_v4_TED04","TED highly-symmetric fold AF-B3ENX6-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A331678","Chlorobium phaeobacteroides BS1"]]},{"id":"NCBITaxon:332186","l":"Shewanella xiamenensis","na":1,"nb":2,"a":[["TED%3AAF-A0A1E3UT11-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1E3UT11-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A24","Shewanella putrefaciens"],["NCBITaxon%3A332186","Shewanella xiamenensis"]]},{"id":"NCBITaxon:333367","l":"Enterocloster asparagiformis","na":1,"nb":2,"a":[["TED%3AAF-A0A413F8C9-F1-model_v4_TED04","TED novel fold AF-A0A413F8C9-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A518636","[Clostridium] asparagiforme DSM 15981"],["NCBITaxon%3A333367","Enterocloster asparagiformis"]]},{"id":"NCBITaxon:333849","l":"","na":2,"nb":1,"a":[["Pfam%3APF08546","Ketopantoate reductase PanE/ApbA C terminal"],["Pfam%3APF02558","Ketopantoate reductase PanE/ApbA"]],"b":[["NCBITaxon%3A333849","Enterococcus faecium DO"]]},{"id":"NCBITaxon:334380","l":"Orientia tsutsugamushi (strain Ikeda)","na":2,"nb":1,"a":[["Pfam%3APF01745","Isopentenyl transferase"],["TED%3AAF-B3CRH9-F1-model_v4_TED02","TED highly-symmetric fold AF-B3CRH9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A334380","Orientia tsutsugamushi str. Ikeda"]]},{"id":"NCBITaxon:335020","l":"Neomesorhizobium albiziae","na":1,"nb":2,"a":[["TED%3AAF-A0A1I4BW12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I4BW12-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1122227","Mesorhizobium albiziae DSM 21822"],["NCBITaxon%3A335020","Neomesorhizobium albiziae"]]},{"id":"NCBITaxon:335284","l":"Psychrobacter cryohalolentis K5","na":1,"nb":2,"a":[["Pfam%3APF10414","Sirohaem synthase dimerisation region"]],"b":[["NCBITaxon%3A330922","Psychrobacter cryohalolentis"],["NCBITaxon%3A335284","Psychrobacter cryohalolentis K5"]]},{"id":"NCBITaxon:336203","l":"Sphingobium fuliginis","na":1,"nb":2,"a":[["TED%3AAF-A0A4Q4J272-F1-model_v4_TED01","TED novel fold AF-A0A4Q4J272-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A336203","Sphingobium fuliginis"],["NCBITaxon%3A1208342","Sphingobium fuliginis ATCC 27551"]]},{"id":"NCBITaxon:338584","l":"Polymorphospora rubra","na":2,"nb":1,"a":[["TED%3AAF-A0A810NDK9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A810NDK9-F1-model_v4_TED01"],["TED%3AAF-A0A810N2K6-F1-model_v4_TED01","TED novel fold AF-A0A810N2K6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A338584","Polymorphospora rubra"]]},{"id":"NCBITaxon:338969","l":"Rhodoferax ferrireducens T118","na":1,"nb":2,"a":[["Pfam%3APF11154","Protein of unknown function (DUF2934)"]],"b":[["NCBITaxon%3A192843","Rhodoferax ferrireducens"],["NCBITaxon%3A338969","Rhodoferax ferrireducens T118"]]},{"id":"NCBITaxon:33899","l":"Streptomyces galilaeus","na":1,"nb":2,"a":[["Pfam%3APF21036","Erythromycin biosynthesis protein CIII-like, N-terminal domain"]],"b":[["NCBITaxon%3A67280","Streptomyces bobili"],["NCBITaxon%3A33899","Streptomyces galilaeus"]]},{"id":"NCBITaxon:33922","l":"Mycoplasmopsis agassizii","na":2,"nb":1,"a":[["TED%3AAF-A0A1W1X4W5-F1-model_v4_TED01","TED novel fold AF-A0A1W1X4W5-F1-model_v4_TED01"],["TED%3AAF-A0A1W1XA50-F1-model_v4_TED02","TED novel fold AF-A0A1W1XA50-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A33922","Mycoplasmopsis agassizii"]]},{"id":"NCBITaxon:33950","l":"Thermoanaerobacterium thermosulfurigenes","na":2,"nb":1,"a":[["Pfam%3APF18565","Glycoside hydrolase family 2 C-terminal domain 5"],["Pfam%3APF00395","S-layer homology domain"]],"b":[["NCBITaxon%3A33950","Thermoanaerobacterium thermosulfurigenes"]]},{"id":"NCBITaxon:342616","l":"","na":2,"nb":1,"a":[["Pfam%3APF26337","Glucosyltransferase 3-like, C-terminal domain"],["Pfam%3APF26334","Glucosyltransferase 3-like, N-terminal domain"]],"b":[["NCBITaxon%3A342616","Streptococcus agalactiae COH1"]]},{"id":"NCBITaxon:34475","l":"Rhodofomes roseus","na":2,"nb":1,"a":[["TED%3AAF-A0A4Y9Y9S1-F1-model_v4_TED01","TED novel fold AF-A0A4Y9Y9S1-F1-model_v4_TED01"],["TED%3AAF-A0A4Y9YQ77-F1-model_v4_TED02","TED novel fold AF-A0A4Y9YQ77-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A34475","Rhodofomes roseus"]]},{"id":"NCBITaxon:348837","l":"Spironucleus salmonicida","na":2,"nb":1,"a":[["TED%3AAF-V6LUE2-F1-model_v4_TED01","TED highly-symmetric fold AF-V6LUE2-F1-model_v4_TED01"],["TED%3AAF-V6LDU7-F1-model_v4_TED02","TED novel fold AF-V6LDU7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A348837","Spironucleus salmonicida"]]},{"id":"NCBITaxon:348901","l":"Cercospora zeina","na":2,"nb":1,"a":[["TED%3AAF-A0A2I0RIM7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I0RIM7-F1-model_v4_TED01"],["TED%3AAF-A0A2I0RWG4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I0RWG4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A348901","Cercospora zeina"]]},{"id":"NCBITaxon:349102","l":"Cereibacter sphaeroides (strain ATCC 17025 / ATH 2.4.3)","na":2,"nb":1,"a":[["Pfam%3APF13286","Phosphohydrolase-associated domain"],["Pfam%3APF04962","KduI/IolB family"]],"b":[["NCBITaxon%3A349102","Cereibacter sphaeroides ATCC 17025"]]},{"id":"NCBITaxon:349215","l":"Micavibrio aeruginosavorus EPB","na":2,"nb":1,"a":[["TED%3AAF-M4VW25-F1-model_v4_TED02","TED highly-symmetric fold AF-M4VW25-F1-model_v4_TED02"],["TED%3AAF-M4VIZ9-F1-model_v4_TED01","TED novel fold AF-M4VIZ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A349215","Micavibrio aeruginosavorus EPB"]]},{"id":"NCBITaxon:350688","l":"Alkaliphilus oremlandii OhILAs","na":1,"nb":2,"a":[["Pfam%3APF18955","Domain of unknown function (DUF5698)"]],"b":[["NCBITaxon%3A461876","Alkaliphilus oremlandii"],["NCBITaxon%3A350688","Alkaliphilus oremlandii OhILAs"]]},{"id":"NCBITaxon:350893","l":"Flavobacterium daejeonense","na":1,"nb":2,"a":[["Pfam%3APF10137","CAP12/Pycsar effector protein, TIR domain"]],"b":[["NCBITaxon%3A350893","Flavobacterium daejeonense"],["NCBITaxon%3A1121887","Flavobacterium daejeonense DSM 17708"]]},{"id":"NCBITaxon:351052","l":"Alkalilimnicola ehrlichii","na":1,"nb":2,"a":[["TED%3AAF-A0A3E0WF12-F1-model_v4_TED02","TED novel fold AF-A0A3E0WF12-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A351052","Alkalilimnicola ehrlichii"],["NCBITaxon%3A187272","Alkalilimnicola ehrlichii MLHE-1"]]},{"id":"NCBITaxon:351605","l":"","na":1,"nb":2,"a":[["TED%3AAF-A5GE78-F1-model_v4_TED01","TED highly-symmetric fold AF-A5GE78-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A351604","Geotalea uraniireducens"],["NCBITaxon%3A351605","Geotalea uraniireducens Rf4"]]},{"id":"NCBITaxon:351607","l":"Acidothermus cellulolyticus 11B","na":1,"nb":2,"a":[["Pfam%3APF10647","Lipoprotein LpqB beta-propeller domain"]],"b":[["NCBITaxon%3A28049","Acidothermus cellulolyticus"],["NCBITaxon%3A351607","Acidothermus cellulolyticus 11B"]]},{"id":"NCBITaxon:353852","l":"Mycoplasma nasistruthionis","na":2,"nb":1,"a":[["TED%3AAF-A0A4Y6I7G8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y6I7G8-F1-model_v4_TED01"],["TED%3AAF-A0A5B7XW33-F1-model_v4_TED03","TED novel fold AF-A0A5B7XW33-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A353852","Mycoplasma nasistruthionis"]]},{"id":"NCBITaxon:356829","l":"Bifidobacterium tsurumiense","na":1,"nb":2,"a":[["TED%3AAF-A0A6L5X0P9-F1-model_v4_TED01","TED novel fold AF-A0A6L5X0P9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A356829","Bifidobacterium tsurumiense"],["NCBITaxon%3A1121112","Bifidobacterium tsurumiense DSM 17777"]]},{"id":"NCBITaxon:35761","l":"Nocardioides sp.","na":1,"nb":2,"a":[["TED%3AAF-A0A2E8Z449-F1-model_v4_TED01","TED novel fold AF-A0A2E8Z449-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A35761","Nocardioides sp."],["NCBITaxon%3A2568655","Nocardioides vastitatis"]]},{"id":"NCBITaxon:35788","l":"Rickettsia africae","na":1,"nb":2,"a":[["Pfam%3APF12574","120 KDa Rickettsia surface antigen"]],"b":[["NCBITaxon%3A35788","Rickettsia africae"],["NCBITaxon%3A347255","Rickettsia africae ESF-5"]]},{"id":"NCBITaxon:359131","l":"Streptomyces rubellomurinus","na":1,"nb":2,"a":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"]],"b":[["NCBITaxon%3A359131","Streptomyces rubellomurinus"],["NCBITaxon%3A1615590","Streptomyces rubellomurinus subsp. indigoferus"]]},{"id":"NCBITaxon:359787","l":"Staphylococcus aureus (strain JH1)","na":2,"nb":1,"a":[["Pfam%3APF04647","Accessory gene regulator B"],["Pfam%3APF09902","Uncharacterized protein conserved in bacteria (DUF2129)"]],"b":[["NCBITaxon%3A359787","Staphylococcus aureus subsp. aureus JH1"]]},{"id":"NCBITaxon:360095","l":"","na":1,"nb":2,"a":[["Pfam%3APF06776","Invasion associated locus B (IalB) protein"]],"b":[["NCBITaxon%3A774","Bartonella bacilliformis"],["NCBITaxon%3A360095","Bartonella bacilliformis KC583"]]},{"id":"NCBITaxon:362787","l":"Candidatus Protochlamydia amoebophila","na":1,"nb":2,"a":[["TED%3AAF-A0A0C1H7Y9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0C1H7Y9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A362787","Candidatus Protochlamydia amoebophila"],["NCBITaxon%3A264201","Candidatus Protochlamydia amoebophila UWE25"]]},{"id":"NCBITaxon:366618","l":"Haematobacter genomosp. 1","na":1,"nb":2,"a":[["TED%3AAF-A0A212ACG5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A212ACG5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A366618","Haematobacter genomosp. 1"],["NCBITaxon%3A2953762","Haematobacter sp."]]},{"id":"NCBITaxon:36818","l":"Streptomyces subrutilus","na":2,"nb":1,"a":[["TED%3AAF-A0A1E5P0P4-F1-model_v4_TED03","TED novel fold AF-A0A1E5P0P4-F1-model_v4_TED03"],["TED%3AAF-A0A1E5PTA7-F1-model_v4_TED01","TED novel fold AF-A0A1E5PTA7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A36818","Streptomyces subrutilus"]]},{"id":"NCBITaxon:368408","l":"","na":1,"nb":2,"a":[["Pfam%3APF04019","Protein of unknown function (DUF359)"]],"b":[["NCBITaxon%3A2269","Thermofilum pendens"],["NCBITaxon%3A368408","Thermofilum pendens Hrk 5"]]},{"id":"NCBITaxon:36849","l":"Oxobacter pfennigii","na":2,"nb":1,"a":[["TED%3AAF-A0A0P8WAY7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0P8WAY7-F1-model_v4_TED03"],["TED%3AAF-A0A0P8YVE3-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A0P8YVE3-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A36849","Oxobacter pfennigii"]]},{"id":"NCBITaxon:370038","l":"Oceanidesulfovibrio marinus","na":2,"nb":1,"a":[["TED%3AAF-A0A6P1Z9Y9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6P1Z9Y9-F1-model_v4_TED02"],["TED%3AAF-A0A6P1ZER6-F1-model_v4_TED01","TED novel fold AF-A0A6P1ZER6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A370038","Oceanidesulfovibrio marinus"]]},{"id":"NCBITaxon:370973","l":"Runella defluvii","na":1,"nb":2,"a":[["TED%3AAF-A0A7W5ZNZ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W5ZNZ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A370973","Runella defluvii"],["NCBITaxon%3A1123076","Runella defluvii DSM 17976"]]},{"id":"NCBITaxon:373668","l":"Chryseobacterium ureilyticum","na":1,"nb":2,"a":[["TED%3AAF-A0A1N7Q4L0-F1-model_v4_TED01","TED novel fold AF-A0A1N7Q4L0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A373668","Chryseobacterium ureilyticum"],["NCBITaxon%3A239","Flavobacterium sp."]]},{"id":"NCBITaxon:374047","l":"Helicotheca tamesis","na":2,"nb":1,"a":[["TED%3AAF-A0A7S2HHS1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S2HHS1-F1-model_v4_TED03"],["TED%3AAF-A0A7S2HE61-F1-model_v4_TED01","TED novel fold AF-A0A7S2HE61-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A374047","Helicotheca tamesis"]]},{"id":"NCBITaxon:37482","l":"Laceyella sacchari","na":1,"nb":2,"a":[["TED%3AAF-A0A4R4AMW2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R4AMW2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A37482","Laceyella sacchari"],["NCBITaxon%3A1341151","Laceyella sacchari 1-1"]]},{"id":"NCBITaxon:374981","l":"Synechococcus sp. PCC 7003","na":2,"nb":1,"a":[["TED%3AAF-A0A1B1TQ28-F1-model_v4_TED01","TED novel fold AF-A0A1B1TQ28-F1-model_v4_TED01"],["TED%3AAF-A0A1B1TRQ9-F1-model_v4_TED01","TED novel fold AF-A0A1B1TRQ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A374981","Picosynechococcus sp. PCC 7003"]]},{"id":"NCBITaxon:375286","l":"","na":2,"nb":1,"a":[["Pfam%3APF06299","Protein of unknown function (DUF1045)"],["Pfam%3APF04361","Protein of unknown function (DUF494)"]],"b":[["NCBITaxon%3A375286","Janthinobacterium sp. Marseille"]]},{"id":"NCBITaxon:375451","l":"Roseobacter denitrificans OCh 114","na":1,"nb":2,"a":[["TED%3AAF-Q164W9-F1-model_v4_TED02","TED highly-symmetric fold AF-Q164W9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2434","Roseobacter denitrificans"],["NCBITaxon%3A375451","Roseobacter denitrificans OCh 114"]]},{"id":"NCBITaxon:376427","l":"","na":1,"nb":2,"a":[["TED%3AAF-A0A1G8XFR9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G8XFR9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A376427","Billgrantia gudaonensis"],["NCBITaxon%3A2697581","Halomonas sambharensis"]]},{"id":"NCBITaxon:377629","l":"Teredinibacter turnerae T7901","na":1,"nb":2,"a":[["TED%3AAF-C5BKS7-F1-model_v4_TED02","TED novel fold AF-C5BKS7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2426","Teredinibacter turnerae"],["NCBITaxon%3A377629","Teredinibacter turnerae T7901"]]},{"id":"NCBITaxon:379097","l":"Vibrio sinaloensis","na":1,"nb":2,"a":[["Pfam%3APF08787","Alginate lyase"]],"b":[["NCBITaxon%3A379097","Vibrio sinaloensis"],["NCBITaxon%3A945550","Vibrio sinaloensis DSM 21326"]]},{"id":"NCBITaxon:384602","l":"Micrococcus flavus","na":1,"nb":2,"a":[["TED%3AAF-A0A7W7PAI2-F1-model_v4_TED01","TED novel fold AF-A0A7W7PAI2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A384602","Micrococcus flavus"],["NCBITaxon%3A1271","Micrococcus sp."]]},{"id":"NCBITaxon:384765","l":"Roseibium aggregatum IAM 12614","na":1,"nb":2,"a":[["Pfam%3APF04199","Putative cyclase"]],"b":[["NCBITaxon%3A187304","Roseibium aggregatum"],["NCBITaxon%3A384765","Roseibium aggregatum IAM 12614"]]},{"id":"NCBITaxon:388399","l":"Sagittula stellata E-37","na":1,"nb":2,"a":[["TED%3AAF-A3JXK6-F1-model_v4_TED02","TED novel fold AF-A3JXK6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A52603","Sagittula stellata"],["NCBITaxon%3A388399","Sagittula stellata E-37"]]},{"id":"NCBITaxon:390874","l":"","na":1,"nb":2,"a":[["Pfam%3APF16369","C-terminal lipocalin-like domain"]],"b":[["NCBITaxon%3A93929","Thermotoga petrophila"],["NCBITaxon%3A390874","Thermotoga petrophila RKU-1"]]},{"id":"NCBITaxon:391038","l":"Paraburkholderia phymatum STM815","na":1,"nb":2,"a":[["PROSITE%3APS00921","Nitrilases / cyanide hydratase active site signature"]],"b":[["NCBITaxon%3A148447","Paraburkholderia phymatum"],["NCBITaxon%3A391038","Paraburkholderia phymatum STM815"]]},{"id":"NCBITaxon:391623","l":"","na":1,"nb":2,"a":[["Pfam%3APF08494","DEAD/H associated"]],"b":[["NCBITaxon%3A55802","Thermococcus barophilus"],["NCBITaxon%3A391623","Thermococcus barophilus MP"]]},{"id":"NCBITaxon:391936","l":"Isoalcanivorax pacificus W11-5","na":1,"nb":2,"a":[["TED%3AAF-A0A0B4XPB7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0B4XPB7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1306787","Isoalcanivorax pacificus"],["NCBITaxon%3A391936","Isoalcanivorax pacificus W11-5"]]},{"id":"NCBITaxon:392015","l":"Paenalicyclobacillus macrosporangiidus","na":1,"nb":2,"a":[["TED%3AAF-A0A1I7LHN3-F1-model_v4_TED02","TED novel fold AF-A0A1I7LHN3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1382304","Alicyclobacillus macrosporangiidus CPP55"],["NCBITaxon%3A392015","Paenalicyclobacillus macrosporangiidus"]]},{"id":"NCBITaxon:392593","l":"Inhella inkyongensis","na":2,"nb":1,"a":[["TED%3AAF-A0A840S1N4-F1-model_v4_TED02","TED novel fold AF-A0A840S1N4-F1-model_v4_TED02"],["TED%3AAF-A0A840S2L1-F1-model_v4_TED01","TED novel fold AF-A0A840S2L1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A392593","Inhella inkyongensis"]]},{"id":"NCBITaxon:392828","l":"Actinomadura chibensis","na":1,"nb":2,"a":[["TED%3AAF-A0A5D0NHS4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5D0NHS4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A392828","Actinomadura chibensis"],["NCBITaxon%3A1220554","Actinomadura chibensis NBRC 106107"]]},{"id":"NCBITaxon:393003","l":"Chitinophaga ginsengisegetis","na":1,"nb":2,"a":[["TED%3AAF-A0A1T5N2Y5-F1-model_v4_TED01","TED novel fold AF-A0A1T5N2Y5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A393003","Chitinophaga ginsengisegetis"],["NCBITaxon%3A1133597","Chitinophaga ginsengisegetis KLC07"]]},{"id":"NCBITaxon:393480","l":"Fusobacterium polymorphum ATCC 10953","na":1,"nb":2,"a":[["TED%3AAF-A5TXK7-F1-model_v4_TED01","TED highly-symmetric fold AF-A5TXK7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A76857","Fusobacterium polymorphum"],["NCBITaxon%3A393480","Fusobacterium polymorphum ATCC 10953"]]},{"id":"NCBITaxon:393595","l":"Alcanivorax borkumensis SK2","na":1,"nb":2,"a":[["TED%3AAF-Q0VNH7-F1-model_v4_TED01","TED highly-symmetric fold AF-Q0VNH7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A59754","Alcanivorax borkumensis"],["NCBITaxon%3A393595","Alcanivorax borkumensis SK2"]]},{"id":"NCBITaxon:394098","l":"Bhargavaea cecembensis","na":1,"nb":2,"a":[["TED%3AAF-A0A165GX10-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A165GX10-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A394098","Bhargavaea cecembensis"],["NCBITaxon%3A1235279","Bhargavaea cecembensis DSE10"]]},{"id":"NCBITaxon:394751","l":"Pseudoalteromonas arctica","na":1,"nb":2,"a":[["TED%3AAF-A0A855H5N4-F1-model_v4_TED01","TED novel fold AF-A0A855H5N4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A394751","Pseudoalteromonas arctica"],["NCBITaxon%3A1117313","Pseudoalteromonas arctica A 37-1-2"]]},{"id":"NCBITaxon:394935","l":"Chromobacterium haemolyticum","na":1,"nb":2,"a":[["TED%3AAF-A0A1W0CCE1-F1-model_v4_TED01","TED novel fold AF-A0A1W0CCE1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A394935","Chromobacterium haemolyticum"],["NCBITaxon%3A1121283","Chromobacterium haemolyticum DSM 19808"]]},{"id":"NCBITaxon:395019","l":"Burkholderia multivorans ATCC 17616","na":1,"nb":2,"a":[["TED%3AAF-A0A0H3KMX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0H3KMX2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A87883","Burkholderia multivorans"],["NCBITaxon%3A395019","Burkholderia multivorans ATCC 17616"]]},{"id":"NCBITaxon:395494","l":"","na":2,"nb":1,"a":[["TED%3AAF-D9SCL7-F1-model_v4_TED01","TED highly-symmetric fold AF-D9SCL7-F1-model_v4_TED01"],["TED%3AAF-D9SFM7-F1-model_v4_TED01","TED highly-symmetric fold AF-D9SFM7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A395494","Gallionella capsiferriformans ES-2"]]},{"id":"NCBITaxon:396014","l":"Brachybacterium phenoliresistens","na":1,"nb":2,"a":[["TED%3AAF-Z9JSX2-F1-model_v4_TED01","TED highly-symmetric fold AF-Z9JSX2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A396014","Brachybacterium phenoliresistens"],["NCBITaxon%3A1460426","Brachybacterium phenoliresistens W13A50"]]},{"id":"NCBITaxon:396598","l":"Paraburkholderia graminis C4D1M","na":1,"nb":2,"a":[["proteintraitsmech%3AELIFE109154_GrbE","GrbE-type graminine biosynthesis protein family"]],"b":[["NCBITaxon%3A60548","Paraburkholderia graminis"],["NCBITaxon%3A396598","Paraburkholderia graminis C4D1M"]]},{"id":"NCBITaxon:39687","l":"Mycolicibacterium austroafricanum","na":1,"nb":2,"a":[["TED%3AAF-A0A2S8LBV1-F1-model_v4_TED02","TED novel fold AF-A0A2S8LBV1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A39687","Mycolicibacterium austroafricanum"],["NCBITaxon%3A350058","Mycolicibacterium vanbaalenii PYR-1"]]},{"id":"NCBITaxon:39691","l":"Mycolicibacterium moriokaense","na":2,"nb":1,"a":[["TED%3AAF-A0A370D086-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A370D086-F1-model_v4_TED01"],["TED%3AAF-A0A370D4B9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A370D4B9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39691","Mycolicibacterium moriokaense"]]},{"id":"NCBITaxon:39950","l":"Dialister pneumosintes","na":1,"nb":2,"a":[["TED%3AAF-A0A1B3WC02-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B3WC02-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39950","Dialister pneumosintes"],["NCBITaxon%3A1357393","Dialister pneumosintes CD1_D5_FAA_6"]]},{"id":"NCBITaxon:399549","l":"Metallosphaera sedula DSM 5348","na":1,"nb":2,"a":[["Pfam%3APF18195","GatD N-terminal domain"]],"b":[["NCBITaxon%3A43687","Metallosphaera sedula"],["NCBITaxon%3A399549","Metallosphaera sedula DSM 5348"]]},{"id":"NCBITaxon:399579","l":"Thermogymnomonas acidicola","na":1,"nb":2,"a":[["TED%3AAF-A0A830FZ95-F1-model_v4_TED01","TED novel fold AF-A0A830FZ95-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A399579","Thermogymnomonas acidicola"],["NCBITaxon%3A1295120","Thermogymnomonas acidicola JCM 13583"]]},{"id":"NCBITaxon:39962","l":"Legionella moravica","na":1,"nb":2,"a":[["TED%3AAF-A0A378JTS2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A378JTS2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39962","Legionella moravica"],["NCBITaxon%3A1122165","Legionella moravica DSM 19234"]]},{"id":"NCBITaxon:399741","l":"Serratia proteamaculans 568","na":2,"nb":1,"a":[["Pfam%3APF09012","FeoC like transcriptional regulator"],["Pfam%3APF05488","PAAR motif"]],"b":[["NCBITaxon%3A399741","Serratia proteamaculans 568"]]},{"id":"NCBITaxon:401053","l":"Terriglobus saanensis SP1PR4","na":1,"nb":2,"a":[["TED%3AAF-E8UZX5-F1-model_v4_TED02","TED novel fold AF-E8UZX5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A870903","Terriglobus saanensis"],["NCBITaxon%3A401053","Terriglobus saanensis SP1PR4"]]},{"id":"NCBITaxon:40318","l":"Streptomyces nodosus","na":1,"nb":2,"a":[["TED%3AAF-A0A0B5DA96-F1-model_v4_TED01","TED novel fold AF-A0A0B5DA96-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A40318","Streptomyces nodosus"],["NCBITaxon%3A222892","Streptomyces nodosus subsp. asukaensis"]]},{"id":"NCBITaxon:403833","l":"Petrotoga mobilis SJ95","na":1,"nb":2,"a":[["Pfam%3APF19328","2,4-diaminopentanoate dehydrogenase C-terminal domain"]],"b":[["NCBITaxon%3A69499","Petrotoga mobilis"],["NCBITaxon%3A403833","Petrotoga mobilis SJ95"]]},{"id":"NCBITaxon:404941","l":"Mycobacteroides salmoniphilum","na":2,"nb":1,"a":[["TED%3AAF-A0A4R8SEB1-F1-model_v4_TED02","TED novel fold AF-A0A4R8SEB1-F1-model_v4_TED02"],["TED%3AAF-A0A4R8SGK3-F1-model_v4_TED01","TED novel fold AF-A0A4R8SGK3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A404941","Mycobacteroides salmoniphilum"]]},{"id":"NCBITaxon:405564","l":"Actinopolyspora xinjiangensis","na":2,"nb":1,"a":[["TED%3AAF-A0A1H0Q6G4-F1-model_v4_TED02","TED novel fold AF-A0A1H0Q6G4-F1-model_v4_TED02"],["TED%3AAF-A0A1H0U3N3-F1-model_v4_TED01","TED novel fold AF-A0A1H0U3N3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A405564","Actinopolyspora xinjiangensis"]]},{"id":"NCBITaxon:40559","l":"Botrytis cinerea","na":1,"nb":2,"a":[["Pfam%3APF08883","Dopa 4,5-dioxygenase family"]],"b":[["NCBITaxon%3A40559","Botrytis cinerea"],["NCBITaxon%3A999810","Botrytis cinerea T4"]]},{"id":"NCBITaxon:405671","l":"Pedobacter terrae","na":2,"nb":1,"a":[["TED%3AAF-A0A561GCB8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A561GCB8-F1-model_v4_TED02"],["TED%3AAF-A0A1G7QBD5-F1-model_v4_TED01","TED novel fold AF-A0A1G7QBD5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A405671","Pedobacter terrae"]]},{"id":"NCBITaxon:405948","l":"Saccharopolyspora erythraea NRRL 2338","na":1,"nb":2,"a":[["Pfam%3APF21036","Erythromycin biosynthesis protein CIII-like, N-terminal domain"]],"b":[["NCBITaxon%3A1836","Saccharopolyspora erythraea"],["NCBITaxon%3A405948","Saccharopolyspora erythraea NRRL 2338"]]},{"id":"NCBITaxon:407234","l":"Phaeovulum vinaykumarii","na":2,"nb":1,"a":[["TED%3AAF-A0A1N7K680-F1-model_v4_TED01","TED novel fold AF-A0A1N7K680-F1-model_v4_TED01"],["TED%3AAF-A0A1N7LGQ6-F1-model_v4_TED03","TED novel fold AF-A0A1N7LGQ6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A407234","Phaeovulum vinaykumarii"]]},{"id":"NCBITaxon:408657","l":"Dyadobacter koreensis","na":2,"nb":1,"a":[["TED%3AAF-A0A1H6SH56-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H6SH56-F1-model_v4_TED02"],["TED%3AAF-A0A1H6QMB6-F1-model_v4_TED01","TED novel fold AF-A0A1H6QMB6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A408657","Dyadobacter koreensis"]]},{"id":"NCBITaxon:409438","l":"","na":1,"nb":2,"a":[["Pfam%3APF05962","HutD"]],"b":[["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A409438","Escherichia coli SE11"]]},{"id":"NCBITaxon:411154","l":"Christiangramia forsetii KT0803","na":1,"nb":2,"a":[["Pfam%3APF14109","GldH lipoprotein"]],"b":[["NCBITaxon%3A411153","Christiangramia forsetii"],["NCBITaxon%3A411154","Christiangramia forsetii KT0803"]]},{"id":"NCBITaxon:411461","l":"Dorea formicigenerans ATCC 27755","na":1,"nb":2,"a":[["TED%3AAF-B0G854-F1-model_v4_TED01","TED novel fold AF-B0G854-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39486","Dorea formicigenerans"],["NCBITaxon%3A411461","Dorea formicigenerans ATCC 27755"]]},{"id":"NCBITaxon:411463","l":"Eubacterium ventriosum ATCC 27560","na":1,"nb":2,"a":[["TED%3AAF-A5Z937-F1-model_v4_TED01","TED highly-symmetric fold AF-A5Z937-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39496","Eubacterium ventriosum"],["NCBITaxon%3A411463","Eubacterium ventriosum ATCC 27560"]]},{"id":"NCBITaxon:411471","l":"Subdoligranulum variabile DSM 15176","na":1,"nb":2,"a":[["TED%3AAF-D1PNK4-F1-model_v4_TED02","TED novel fold AF-D1PNK4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A214851","Subdoligranulum variabile"],["NCBITaxon%3A411471","Subdoligranulum variabile DSM 15176"]]},{"id":"NCBITaxon:411684","l":"Hoeflea phototrophica DFL-43","na":1,"nb":2,"a":[["TED%3AAF-A9D4N0-F1-model_v4_TED02","TED novel fold AF-A9D4N0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A411684","Hoeflea phototrophica DFL-43"],["NCBITaxon%3A244596","Parahoeflea phototrophica"]]},{"id":"NCBITaxon:412022","l":"Burkholderia mallei (strain NCTC 10229)","na":2,"nb":1,"a":[["Pfam%3APF22688","Hda, lid domain"],["Pfam%3APF03975","CheD chemotactic sensory transduction"]],"b":[["NCBITaxon%3A412022","Burkholderia mallei NCTC 10229"]]},{"id":"NCBITaxon:412694","l":"Bacillus thuringiensis (strain Al Hakam)","na":2,"nb":1,"a":[["Pfam%3APF03590","Aspartate-ammonia ligase"],["Pfam%3APF07408","Protein of unknown function (DUF1507)"]],"b":[["NCBITaxon%3A412694","Bacillus thuringiensis str. Al Hakam"]]},{"id":"NCBITaxon:415222","l":"Pelagicoccus albus","na":2,"nb":1,"a":[["TED%3AAF-A0A7X1B8W0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X1B8W0-F1-model_v4_TED01"],["TED%3AAF-A0A7X1E8K3-F1-model_v4_TED03","TED novel fold AF-A0A7X1E8K3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A415222","Pelagicoccus albus"]]},{"id":"NCBITaxon:415426","l":"","na":1,"nb":2,"a":[["Pfam%3APF01982","Domain of unknown function DUF120"]],"b":[["NCBITaxon%3A54248","Hyperthermus butylicus"],["NCBITaxon%3A415426","Hyperthermus butylicus DSM 5456"]]},{"id":"NCBITaxon:41675","l":"Stygiolobus azoricus","na":1,"nb":2,"a":[["TED%3AAF-A0A650CQQ9-F1-model_v4_TED01","TED novel fold AF-A0A650CQQ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A41675","Stygiolobus azoricus"],["NCBITaxon%3A1313299","Stygiolobus azoricus DSM 6296"]]},{"id":"NCBITaxon:417745","l":"Shinella kummerowiae","na":2,"nb":1,"a":[["TED%3AAF-A0A6N8SE75-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8SE75-F1-model_v4_TED01"],["TED%3AAF-A0A6N8SAK3-F1-model_v4_TED01","TED novel fold AF-A0A6N8SAK3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A417745","Shinella kummerowiae"]]},{"id":"NCBITaxon:418459","l":"Puccinia graminis f. sp. tritici (strain CRL 75-36-700-3 / race SCCL)","na":2,"nb":1,"a":[["TED%3AAF-E3KWP8-F1-model_v4_TED01","TED novel fold AF-E3KWP8-F1-model_v4_TED01"],["TED%3AAF-E3L0V6-F1-model_v4_TED01","TED novel fold AF-E3L0V6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A418459","Puccinia graminis f. sp. tritici CRL 75-36-700-3"]]},{"id":"NCBITaxon:418630","l":"[Luteovulum] sphaeroides subsp. megalophilum","na":1,"nb":2,"a":[["TED%3AAF-A0A239MB29-F1-model_v4_TED01","TED novel fold AF-A0A239MB29-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1063","Cereibacter sphaeroides"],["NCBITaxon%3A418630","[Luteovulum] sphaeroides subsp. megalophilum"]]},{"id":"NCBITaxon:420778","l":"Diplodia seriata","na":2,"nb":1,"a":[["TED%3AAF-A0A0G2DUU8-F1-model_v4_TED02","TED novel fold AF-A0A0G2DUU8-F1-model_v4_TED02"],["TED%3AAF-A0A0G2ERU8-F1-model_v4_TED01","TED novel fold AF-A0A0G2ERU8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A420778","Diplodia seriata"]]},{"id":"NCBITaxon:420952","l":"Paraburkholderia bryophila","na":1,"nb":2,"a":[["TED%3AAF-A0A7Y9WQV4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y9WQV4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A420952","Paraburkholderia bryophila"],["NCBITaxon%3A1169143","Paraburkholderia bryophila 376MFSha3.1"]]},{"id":"NCBITaxon:421052","l":"Acinetobacter rudis CIP 110305","na":1,"nb":2,"a":[["TED%3AAF-S3N7W1-F1-model_v4_TED04","TED novel fold AF-S3N7W1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A632955","Acinetobacter rudis"],["NCBITaxon%3A421052","Acinetobacter rudis CIP 110305"]]},{"id":"NCBITaxon:421058","l":"Chryseobacterium oranimense","na":1,"nb":2,"a":[["TED%3AAF-A0A1M5UIN4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M5UIN4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A421058","Chryseobacterium oranimense"],["NCBITaxon%3A1300143","Chryseobacterium oranimense G311"]]},{"id":"NCBITaxon:42251","l":"Tuber borchii","na":2,"nb":1,"a":[["TED%3AAF-A0A2T6ZEW2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T6ZEW2-F1-model_v4_TED01"],["TED%3AAF-A0A2T6ZK07-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2T6ZK07-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A42251","Tuber borchii"]]},{"id":"NCBITaxon:42256","l":"Rubrobacter radiotolerans","na":1,"nb":2,"a":[["TED%3AAF-A0A023X7L7-F1-model_v4_TED02","TED novel fold AF-A0A023X7L7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A42256","Rubrobacter radiotolerans"],["NCBITaxon%3A643560","Rubrobacter radiotolerans DSM 5868"]]},{"id":"NCBITaxon:42322","l":"Eubacterium ruminantium","na":2,"nb":1,"a":[["TED%3AAF-A0A1H6A208-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H6A208-F1-model_v4_TED01"],["TED%3AAF-A0A1T4Q7U0-F1-model_v4_TED01","TED novel fold AF-A0A1T4Q7U0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A42322","Eubacterium ruminantium"]]},{"id":"NCBITaxon:427683","l":"Methylobacterium platani","na":1,"nb":2,"a":[["TED%3AAF-A0A179RZM9-F1-model_v4_TED01","TED novel fold AF-A0A179RZM9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A427683","Methylobacterium platani"],["NCBITaxon%3A1295136","Methylobacterium platani JCM 14648"]]},{"id":"NCBITaxon:429133","l":"Modestobacter versicolor","na":2,"nb":1,"a":[["TED%3AAF-A0A323VFP8-F1-model_v4_TED01","TED novel fold AF-A0A323VFP8-F1-model_v4_TED01"],["TED%3AAF-A0A839XZ80-F1-model_v4_TED02","TED novel fold AF-A0A839XZ80-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A429133","Modestobacter versicolor"]]},{"id":"NCBITaxon:430522","l":"Pedobacter steynii","na":2,"nb":1,"a":[["TED%3AAF-A0A1G9K403-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G9K403-F1-model_v4_TED01"],["TED%3AAF-A0A1G9UZ90-F1-model_v4_TED01","TED novel fold AF-A0A1G9UZ90-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A430522","Pedobacter steynii"]]},{"id":"NCBITaxon:432331","l":"Sulfurihydrogenibium yellowstonense SS-5","na":1,"nb":2,"a":[["TED%3AAF-C4FIW6-F1-model_v4_TED01","TED novel fold AF-C4FIW6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A304736","Sulfurihydrogenibium yellowstonense"],["NCBITaxon%3A432331","Sulfurihydrogenibium yellowstonense SS-5"]]},{"id":"NCBITaxon:433924","l":"Pseudacidovorax intermedius","na":1,"nb":2,"a":[["TED%3AAF-A0A147GRQ0-F1-model_v4_TED01","TED novel fold AF-A0A147GRQ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A433924","Pseudacidovorax intermedius"],["NCBITaxon%3A1257078","Pseudacidovorax intermedius NH-1"]]},{"id":"NCBITaxon:436308","l":"Nitrosopumilus maritimus SCM1","na":1,"nb":2,"a":[["Pfam%3APF19045","Ligase-CoA domain"]],"b":[["NCBITaxon%3A338192","Nitrosopumilus maritimus"],["NCBITaxon%3A436308","Nitrosopumilus maritimus SCM1"]]},{"id":"NCBITaxon:43655","l":"Pseudoalteromonas citrea","na":1,"nb":2,"a":[["TED%3AAF-A0A5S3XJV9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5S3XJV9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A43655","Pseudoalteromonas citrea"],["NCBITaxon%3A1117314","Pseudoalteromonas citrea DSM 8771"]]},{"id":"NCBITaxon:43671","l":"Actinotalea fermentans","na":1,"nb":2,"a":[["TED%3AAF-A0A511YTN2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A511YTN2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A43671","Actinotalea fermentans"],["NCBITaxon%3A862422","Actinotalea fermentans ATCC 43279 = JCM 9966 = DSM 3133"]]},{"id":"NCBITaxon:436717","l":"Acinetobacter oleivorans DR1","na":1,"nb":2,"a":[["TED%3AAF-D8JEH7-F1-model_v4_TED03","TED novel fold AF-D8JEH7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1148157","Acinetobacter oleivorans"],["NCBITaxon%3A436717","Acinetobacter oleivorans DR1"]]},{"id":"NCBITaxon:43677","l":"Promicromonospora citrea","na":1,"nb":2,"a":[["TED%3AAF-A0A7Y2QR62-F1-model_v4_TED01","TED novel fold AF-A0A7Y2QR62-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2126556","Flavobacterium artemisiae"],["NCBITaxon%3A43677","Promicromonospora citrea"]]},{"id":"NCBITaxon:441770","l":"","na":1,"nb":2,"a":[["Pfam%3APF11842","Domain of unknown function (DUF3362)"]],"b":[["NCBITaxon%3A1491","Clostridium botulinum"],["NCBITaxon%3A441770","Clostridium botulinum A str. ATCC 19397"]]},{"id":"NCBITaxon:441772","l":"","na":2,"nb":1,"a":[["Pfam%3APF02001","Protein of unknown function DUF134"],["Pfam%3APF06874","Firmicute fructose-1,6-bisphosphatase"]],"b":[["NCBITaxon%3A441772","Clostridium botulinum F str. Langeland"]]},{"id":"NCBITaxon:442341","l":"Halomonas xianhensis","na":2,"nb":1,"a":[["TED%3AAF-A0A4R8FRP4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R8FRP4-F1-model_v4_TED01"],["TED%3AAF-A0A1I3EZC5-F1-model_v4_TED01","TED novel fold AF-A0A1I3EZC5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A442341","Modicisalibacter xianhensis"]]},{"id":"NCBITaxon:443152","l":"Marinobacter algicola DG893","na":1,"nb":2,"a":[["TED%3AAF-A6EY08-F1-model_v4_TED01","TED highly-symmetric fold AF-A6EY08-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A236100","Marinobacter algicola"],["NCBITaxon%3A443152","Marinobacter algicola DG893"]]},{"id":"NCBITaxon:443226","l":"Coccidioides posadasii (strain RMSCC 757 / Silveira)","na":2,"nb":1,"a":[["TED%3AAF-E9D519-F1-model_v4_TED01","TED highly-symmetric fold AF-E9D519-F1-model_v4_TED01"],["TED%3AAF-E9D534-F1-model_v4_TED01","TED novel fold AF-E9D534-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A443226","Coccidioides posadasii str. Silveira"]]},{"id":"NCBITaxon:443254","l":"","na":1,"nb":2,"a":[["Pfam%3APF22362","Argonaute, middle domain, bacteria"]],"b":[["NCBITaxon%3A149715","Marinitoga piezophila"],["NCBITaxon%3A443254","Marinitoga piezophila KA3"]]},{"id":"NCBITaxon:444157","l":"Pyrobaculum neutrophilum V24Sta","na":1,"nb":2,"a":[["Pfam%3APF01950","Fructose-1,6-bisphosphatase"]],"b":[["NCBITaxon%3A70771","Pyrobaculum neutrophilum"],["NCBITaxon%3A444157","Pyrobaculum neutrophilum V24Sta"]]},{"id":"NCBITaxon:445970","l":"Alistipes putredinis DSM 17216","na":1,"nb":2,"a":[["TED%3AAF-B0MZK9-F1-model_v4_TED03","TED highly-symmetric fold AF-B0MZK9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A28117","Alistipes putredinis"],["NCBITaxon%3A445970","Alistipes putredinis DSM 17216"]]},{"id":"NCBITaxon:445987","l":"Borreliella valaisiana VS116","na":1,"nb":2,"a":[["TED%3AAF-C0R8L4-F1-model_v4_TED01","TED novel fold AF-C0R8L4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A62088","Borreliella valaisiana"],["NCBITaxon%3A445987","Borreliella valaisiana VS116"]]},{"id":"NCBITaxon:446462","l":"","na":1,"nb":2,"a":[["TED%3AAF-C6WQL9-F1-model_v4_TED01","TED highly-symmetric fold AF-C6WQL9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A40567","Actinosynnema mirum"],["NCBITaxon%3A446462","Actinosynnema mirum DSM 43827"]]},{"id":"NCBITaxon:446465","l":"Brachybacterium faecium DSM 4810","na":1,"nb":2,"a":[["TED%3AAF-C7MEJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-C7MEJ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A43669","Brachybacterium faecium"],["NCBITaxon%3A446465","Brachybacterium faecium DSM 4810"]]},{"id":"NCBITaxon:446469","l":"Sanguibacter keddieii DSM 10542","na":1,"nb":2,"a":[["TED%3AAF-D1BCE8-F1-model_v4_TED01","TED highly-symmetric fold AF-D1BCE8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A60920","Sanguibacter keddieii"],["NCBITaxon%3A446469","Sanguibacter keddieii DSM 10542"]]},{"id":"NCBITaxon:44737","l":"Capnocytophaga sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A496MK20-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A496MK20-F1-model_v4_TED01"],["TED%3AAF-A0A496MK73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A496MK73-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A44737","Capnocytophaga sp."]]},{"id":"NCBITaxon:449","l":"Legionella hackeliae","na":2,"nb":1,"a":[["TED%3AAF-A0A0A8UQD0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A8UQD0-F1-model_v4_TED01"],["TED%3AAF-A0A0A8UPB0-F1-model_v4_TED01","TED novel fold AF-A0A0A8UPB0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A449","Legionella hackeliae"]]},{"id":"NCBITaxon:44930","l":"Natronobacterium gregoryi","na":1,"nb":2,"a":[["TED%3AAF-A0A1I3LHC3-F1-model_v4_TED01","TED novel fold AF-A0A1I3LHC3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A44930","Natronobacterium gregoryi"],["NCBITaxon%3A797304","Natronobacterium gregoryi SP2"]]},{"id":"NCBITaxon:44935","l":"Vreelandella venusta","na":1,"nb":2,"a":[["TED%3AAF-A0A7S9VEF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S9VEF4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A44935","Vreelandella venusta"],["NCBITaxon%3A1255601","Vreelandella venusta 3D7M"]]},{"id":"NCBITaxon:45073","l":"Legionella quinlivanii","na":1,"nb":2,"a":[["TED%3AAF-A0A364LK99-F1-model_v4_TED02","TED novel fold AF-A0A364LK99-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A45073","Legionella quinlivanii"],["NCBITaxon%3A1122167","Legionella quinlivanii DSM 21216"]]},{"id":"NCBITaxon:451457","l":"Pseudolactococcus chungangensis","na":1,"nb":2,"a":[["TED%3AAF-A0A847J563-F1-model_v4_TED01","TED novel fold AF-A0A847J563-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A451457","Pseudolactococcus chungangensis"],["NCBITaxon%3A1122154","Pseudolactococcus chungangensis CAU 28 = DSM 22330"]]},{"id":"NCBITaxon:45151","l":"Pyrenophora tritici-repentis","na":2,"nb":1,"a":[["TED%3AAF-A0A2W1ECP7-F1-model_v4_TED01","TED novel fold AF-A0A2W1ECP7-F1-model_v4_TED01"],["TED%3AAF-A0A834SF78-F1-model_v4_TED01","TED novel fold AF-A0A834SF78-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A45151","Pyrenophora tritici-repentis"]]},{"id":"NCBITaxon:451516","l":"Staphylococcus aureus (strain USA300 / TCH1516)","na":2,"nb":1,"a":[["Pfam%3APF07457","Protein of unknown function (DUF1516)"],["Pfam%3APF12127","Flotillin-like protein FloA"]],"b":[["NCBITaxon%3A451516","Staphylococcus aureus subsp. aureus USA300_TCH1516"]]},{"id":"NCBITaxon:45235","l":"Tolypocladium capitatum","na":2,"nb":1,"a":[["TED%3AAF-A0A2K3Q6C8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2K3Q6C8-F1-model_v4_TED01"],["TED%3AAF-A0A2K3QFT5-F1-model_v4_TED02","TED novel fold AF-A0A2K3QFT5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A45235","Tolypocladium capitatum"]]},{"id":"NCBITaxon:452629","l":"Amphritea balenae","na":1,"nb":2,"a":[["TED%3AAF-A0A3P1STJ2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3P1STJ2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A452629","Amphritea balenae"],["NCBITaxon%3A1278310","Amphritea balenae ATCC BAA-1529"]]},{"id":"NCBITaxon:453","l":"Legionella feeleii","na":1,"nb":2,"a":[["TED%3AAF-A0A378IZL6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A378IZL6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A453","Legionella feeleii"],["NCBITaxon%3A66975","Legionella feeleii serogroup 2"]]},{"id":"NCBITaxon:45357","l":"Candidozyma haemuli","na":1,"nb":2,"a":[["TED%3AAF-A0A2V1AT11-F1-model_v4_TED02","TED novel fold AF-A0A2V1AT11-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A45357","Candidozyma haemuli"],["NCBITaxon%3A1231523","Candidozyma haemuli var. vulneris"]]},{"id":"NCBITaxon:454","l":"Legionella israelensis","na":1,"nb":2,"a":[["TED%3AAF-A0A0W0WIG0-F1-model_v4_TED02","TED novel fold AF-A0A0W0WIG0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A454","Legionella israelensis"],["NCBITaxon%3A1122162","Legionella israelensis DSM 19235"]]},{"id":"NCBITaxon:455488","l":"Anaeromyxobacter dehalogenans 2CP-1","na":1,"nb":2,"a":[["TED%3AAF-B8J8V7-F1-model_v4_TED01","TED novel fold AF-B8J8V7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A161493","Anaeromyxobacter dehalogenans"],["NCBITaxon%3A455488","Anaeromyxobacter dehalogenans 2CP-1"]]},{"id":"NCBITaxon:457570","l":"Natranaerobius thermophilus JW/NM-WN-LF","na":1,"nb":2,"a":[["TED%3AAF-B2A1S1-F1-model_v4_TED02","TED highly-symmetric fold AF-B2A1S1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A375929","Natranaerobius thermophilus"],["NCBITaxon%3A457570","Natranaerobius thermophilus JW/NM-WN-LF"]]},{"id":"NCBITaxon:458817","l":"","na":1,"nb":2,"a":[["TED%3AAF-B0TIQ1-F1-model_v4_TED01","TED novel fold AF-B0TIQ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A271098","Shewanella halifaxensis"],["NCBITaxon%3A458817","Shewanella halifaxensis HAW-EB4"]]},{"id":"NCBITaxon:459529","l":"Sphingobacterium siyangense","na":1,"nb":2,"a":[["TED%3AAF-A0A420FHV4-F1-model_v4_TED01","TED novel fold AF-A0A420FHV4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A459529","Sphingobacterium siyangense"],["NCBITaxon%3A634159","Sphingobacterium siyangense subsp. cladoniae"]]},{"id":"NCBITaxon:46163","l":"Actinomadura luteofluorescens","na":1,"nb":2,"a":[["TED%3AAF-A0A7Y9EGM5-F1-model_v4_TED01","TED novel fold AF-A0A7Y9EGM5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A46163","Actinomadura luteofluorescens"],["NCBITaxon%3A1449332","Actinomadura luteofluorescens DSM 44770"]]},{"id":"NCBITaxon:462910","l":"Pontibacillus yanchengensis","na":1,"nb":2,"a":[["TED%3AAF-A0A6I5A559-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A6I5A559-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A462910","Pontibacillus yanchengensis"],["NCBITaxon%3A1385514","Pontibacillus yanchengensis Y32"]]},{"id":"NCBITaxon:46469","l":"Orenia marismortui","na":1,"nb":2,"a":[["TED%3AAF-A0A4R8H1H9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R8H1H9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A46469","Orenia marismortui"],["NCBITaxon%3A926561","Orenia marismortui DSM 5156"]]},{"id":"NCBITaxon:469371","l":"Thermobispora bispora DSM 43833","na":1,"nb":2,"a":[["TED%3AAF-D6Y8C2-F1-model_v4_TED02","TED novel fold AF-D6Y8C2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2006","Thermobispora bispora"],["NCBITaxon%3A469371","Thermobispora bispora DSM 43833"]]},{"id":"NCBITaxon:469383","l":"Conexibacter woesei DSM 14684","na":1,"nb":2,"a":[["TED%3AAF-D3FEY8-F1-model_v4_TED03","TED highly-symmetric fold AF-D3FEY8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A191495","Conexibacter woesei"],["NCBITaxon%3A469383","Conexibacter woesei DSM 14684"]]},{"id":"NCBITaxon:469591","l":"","na":1,"nb":2,"a":[["TED%3AAF-A0A3E4PGJ8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3E4PGJ8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A29523","Bacteroides sp."],["NCBITaxon%3A469591","Parabacteroides sp. 20_3"]]},{"id":"NCBITaxon:470096","l":"Pseudovirgaria hyperparasitica","na":2,"nb":1,"a":[["TED%3AAF-A0A6A6VSI4-F1-model_v4_TED01","TED novel fold AF-A0A6A6VSI4-F1-model_v4_TED01"],["TED%3AAF-A0A6A6WEH1-F1-model_v4_TED02","TED novel fold AF-A0A6A6WEH1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A470096","Pseudovirgaria hyperparasitica"]]},{"id":"NCBITaxon:470145","l":"Phocaeicola coprocola DSM 17136","na":1,"nb":2,"a":[["TED%3AAF-B3JL62-F1-model_v4_TED04","TED novel fold AF-B3JL62-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A310298","Phocaeicola coprocola"],["NCBITaxon%3A470145","Phocaeicola coprocola DSM 17136"]]},{"id":"NCBITaxon:470146","l":"Coprococcus comes ATCC 27758","na":1,"nb":2,"a":[["TED%3AAF-C0BDT1-F1-model_v4_TED01","TED highly-symmetric fold AF-C0BDT1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A410072","Allocoprococcus comes"],["NCBITaxon%3A470146","Coprococcus comes ATCC 27758"]]},{"id":"NCBITaxon:470453","l":"Moraxella pluranimalium","na":1,"nb":2,"a":[["TED%3AAF-A0A1T0CC81-F1-model_v4_TED02","TED novel fold AF-A0A1T0CC81-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A470453","Moraxella pluranimalium"],["NCBITaxon%3A1122246","Moraxella pluranimalium DSM 22804"]]},{"id":"NCBITaxon:47055","l":"Dethiosulfovibrio peptidovorans","na":1,"nb":2,"a":[["TED%3AAF-A0A2G6M2T0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2G6M2T0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A47055","Dethiosulfovibrio peptidovorans"],["NCBITaxon%3A469381","Dethiosulfovibrio peptidovorans DSM 11002"]]},{"id":"NCBITaxon:471852","l":"Thermomonospora curvata DSM 43183","na":1,"nb":2,"a":[["Pfam%3APF01580","FtsK/SpoIIIE family"]],"b":[["NCBITaxon%3A2020","Thermomonospora curvata"],["NCBITaxon%3A471852","Thermomonospora curvata DSM 43183"]]},{"id":"NCBITaxon:472","l":"Acinetobacter sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A433CUV6-F1-model_v4_TED01","TED novel fold AF-A0A433CUV6-F1-model_v4_TED01"],["TED%3AAF-A0A7G3BTL8-F1-model_v4_TED01","TED novel fold AF-A0A7G3BTL8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A472","Acinetobacter sp."]]},{"id":"NCBITaxon:472759","l":"Nitrosococcus halophilus Nc 4","na":1,"nb":2,"a":[["TED%3AAF-D5BWL1-F1-model_v4_TED01","TED highly-symmetric fold AF-D5BWL1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A133539","Nitrosococcus halophilus"],["NCBITaxon%3A472759","Nitrosococcus halophilus Nc 4"]]},{"id":"NCBITaxon:47428","l":"Armillaria ostoyae","na":2,"nb":1,"a":[["TED%3AAF-A0A284RWZ8-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A284RWZ8-F1-model_v4_TED04"],["TED%3AAF-A0A284RP12-F1-model_v4_TED01","TED novel fold AF-A0A284RP12-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A47428","Armillaria ostoyae"]]},{"id":"NCBITaxon:474922","l":"Colletotrichum gloeosporioides","na":2,"nb":1,"a":[["Pfam%3APF28223","CAP22"],["PROSITE%3APS00155","Cutinase, serine active site"]],"b":[["NCBITaxon%3A474922","Colletotrichum gloeosporioides"]]},{"id":"NCBITaxon:474952","l":"Granulicella rosea","na":2,"nb":1,"a":[["TED%3AAF-A0A239KLB2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A239KLB2-F1-model_v4_TED01"],["TED%3AAF-A0A239CX56-F1-model_v4_TED02","TED novel fold AF-A0A239CX56-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A474952","Granulicella rosea"]]},{"id":"NCBITaxon:4758","l":"Neocallimastix patriciarum","na":2,"nb":1,"a":[["Pfam%3APF02013","Cellulose or protein binding domain"],["PROSITE%3APS00776","Glycosyl hydrolases family 11 (GH11) active site signature 1"]],"b":[["NCBITaxon%3A4758","Neocallimastix patriciarum"]]},{"id":"NCBITaxon:4779","l":"Bremia lactucae","na":2,"nb":1,"a":[["TED%3AAF-A0A484E5D3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A484E5D3-F1-model_v4_TED01"],["TED%3AAF-A0A484EDT0-F1-model_v4_TED01","TED novel fold AF-A0A484EDT0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A4779","Bremia lactucae"]]},{"id":"NCBITaxon:478","l":"Moraxella nonliquefaciens","na":1,"nb":2,"a":[["TED%3AAF-A0A1B8PJM7-F1-model_v4_TED01","TED novel fold AF-A0A1B8PJM7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A478","Moraxella nonliquefaciens"],["NCBITaxon%3A1441929","Moraxella nonliquefaciens DSM 6327"]]},{"id":"NCBITaxon:4785","l":"Phytophthora cinnamomi","na":2,"nb":1,"a":[["Pfam%3APF00964","Elicitin"],["TED%3AAF-B8Y7U3-F1-model_v4_TED01","TED highly-symmetric fold AF-B8Y7U3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A4785","Phytophthora cinnamomi"]]},{"id":"NCBITaxon:47850","l":"","na":1,"nb":2,"a":[["TED%3AAF-A0A1C6SK92-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C6SK92-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A644283","Micromonospora aurantiaca ATCC 27029"],["NCBITaxon%3A47850","Micromonospora aurantiaca (nom. illeg.)"]]},{"id":"NCBITaxon:47875","l":"Micromonospora sagamiensis","na":1,"nb":2,"a":[["TED%3AAF-A0A562WCI2-F1-model_v4_TED01","TED novel fold AF-A0A562WCI2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A47875","Micromonospora sagamiensis"],["NCBITaxon%3A675089","Micromonospora sagamiensis subsp. flava"]]},{"id":"NCBITaxon:47878","l":"Pseudomonas azotoformans","na":1,"nb":2,"a":[["TED%3AAF-A0A514BG00-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A514BG00-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A47878","Pseudomonas azotoformans"],["NCBITaxon%3A1215094","Pseudomonas azotoformans NBRC 12693"]]},{"id":"NCBITaxon:47919","l":"Nocardioides sp. (strain N106)","na":2,"nb":1,"a":[["Pfam%3APF01374","Glycosyl hydrolase family 46"],["PROSITE%3APS60000","Chitosanases families 46 and 80 active sites signature"]],"b":[["NCBITaxon%3A47919","Nocardioides sp. N106"]]},{"id":"NCBITaxon:479431","l":"Nakamurella multipartita DSM 44233","na":1,"nb":2,"a":[["TED%3AAF-C8XHD0-F1-model_v4_TED02","TED novel fold AF-C8XHD0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A53461","Nakamurella multipartita"],["NCBITaxon%3A479431","Nakamurella multipartita DSM 44233"]]},{"id":"NCBITaxon:479435","l":"Kribbella flavida DSM 17836","na":1,"nb":2,"a":[["Pfam%3APF21568","1,3-alpha-isomaltosidase-like, N-terminal domain"]],"b":[["NCBITaxon%3A182640","Kribbella flavida"],["NCBITaxon%3A479435","Kribbella flavida DSM 17836"]]},{"id":"NCBITaxon:481448","l":"Methylacidiphilum infernorum (isolate V4)","na":2,"nb":1,"a":[["Pfam%3APF11004","3-deoxy-D-manno-oct-2-ulosonic acid (Kdo) hydroxylase"],["TED%3AAF-B3DX40-F1-model_v4_TED02","TED novel fold AF-B3DX40-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A481448","Methylacidiphilum infernorum V4"]]},{"id":"NCBITaxon:4829","l":"Absidia glauca","na":2,"nb":1,"a":[["TED%3AAF-A0A168R8W2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A168R8W2-F1-model_v4_TED01"],["TED%3AAF-A0A168SH55-F1-model_v4_TED01","TED novel fold AF-A0A168SH55-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A4829","Absidia glauca"]]},{"id":"NCBITaxon:483013","l":"Tritonibacter scottomollicae","na":2,"nb":1,"a":[["Pfam%3APF17396","Domain of unknown function (DUF1611_N) Rossmann-like domain"],["Pfam%3APF07755","Domain of unknown function (DUF1611_C) P-loop domain"]],"b":[["NCBITaxon%3A483013","Tritonibacter scottomollicae"]]},{"id":"NCBITaxon:484018","l":"","na":1,"nb":2,"a":[["Pfam%3APF18040","beta porphyranase A C-terminal"]],"b":[["NCBITaxon%3A310297","Phocaeicola plebeius"],["NCBITaxon%3A484018","Phocaeicola plebeius DSM 17135"]]},{"id":"NCBITaxon:485915","l":"","na":1,"nb":2,"a":[["TED%3AAF-C8WYZ3-F1-model_v4_TED02","TED highly-symmetric fold AF-C8WYZ3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A45663","Desulfohalobium retbaense"],["NCBITaxon%3A485915","Desulfohalobium retbaense DSM 5692"]]},{"id":"NCBITaxon:485916","l":"Desulfofarcimen acetoxidans DSM 771","na":1,"nb":2,"a":[["TED%3AAF-C8W2Y9-F1-model_v4_TED01","TED highly-symmetric fold AF-C8W2Y9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A58138","Desulfofarcimen acetoxidans"],["NCBITaxon%3A485916","Desulfofarcimen acetoxidans DSM 771"]]},{"id":"NCBITaxon:48665","l":"Streptomyces viridifaciens","na":1,"nb":2,"a":[["TED%3AAF-A0A1L9E1F9-F1-model_v4_TED01","TED novel fold AF-A0A1L9E1F9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A642496","Streptomyces sp. DSM 40239"],["NCBITaxon%3A48665","Streptomyces viridifaciens"]]},{"id":"NCBITaxon:490899","l":"Desulfurococcus amylolyticus 1221n","na":1,"nb":2,"a":[["TED%3AAF-B8D4A7-F1-model_v4_TED01","TED novel fold AF-B8D4A7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A94694","Desulfurococcus amylolyticus"],["NCBITaxon%3A490899","Desulfurococcus amylolyticus 1221n"]]},{"id":"NCBITaxon:4909","l":"Pichia kudriavzevii","na":1,"nb":2,"a":[["TED%3AAF-A0A099P804-F1-model_v4_TED01","TED novel fold AF-A0A099P804-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A4909","Pichia kudriavzevii"],["NCBITaxon%3A1231518","Pichia kudriavzevii CAB39-6420"]]},{"id":"NCBITaxon:4911","l":"Kluyveromyces marxianus","na":1,"nb":2,"a":[["Pfam%3APF04684","BAF1 / ABF1 chromatin reorganising factor"]],"b":[["NCBITaxon%3A4911","Kluyveromyces marxianus"],["NCBITaxon%3A374272","Kluyveromyces marxianus var. marxianus"]]},{"id":"NCBITaxon:491952","l":"Marinomonas posidonica IVIA-Po-181","na":1,"nb":2,"a":[["proteintraitsmech%3AELIFE109154_SalSyn","Metallophore-associated bifunctional salicylate synthase family"]],"b":[["NCBITaxon%3A936476","Marinomonas posidonica"],["NCBITaxon%3A491952","Marinomonas posidonica IVIA-Po-181"]]},{"id":"NCBITaxon:49252","l":"Eucampia antarctica","na":2,"nb":1,"a":[["TED%3AAF-A0A7S2RNI9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S2RNI9-F1-model_v4_TED02"],["TED%3AAF-A0A7S2SD61-F1-model_v4_TED01","TED novel fold AF-A0A7S2SD61-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A49252","Eucampia antarctica"]]},{"id":"NCBITaxon:494026","l":"Paenibacillus glacialis","na":1,"nb":2,"a":[["TED%3AAF-A0A168H7S0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A168H7S0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A494026","Paenibacillus glacialis"],["NCBITaxon%3A58172","Paenibacillus sp."]]},{"id":"NCBITaxon:4952","l":"Yarrowia lipolytica","na":2,"nb":1,"a":[["TED%3AAF-A0A7H0KE04-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H0KE04-F1-model_v4_TED01"],["TED%3AAF-A0A371C7L0-F1-model_v4_TED02","TED novel fold AF-A0A371C7L0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A4952","Yarrowia lipolytica"]]},{"id":"NCBITaxon:4954","l":"Zygosaccharomyces bailii","na":1,"nb":2,"a":[["TED%3AAF-A0A212M6M2-F1-model_v4_TED03","TED novel fold AF-A0A212M6M2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1935","Streptomyces violaceoruber"],["NCBITaxon%3A4954","Zygosaccharomyces bailii"]]},{"id":"NCBITaxon:496014","l":"Baekduia soli","na":2,"nb":1,"a":[["TED%3AAF-A0A5B8U3Z1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B8U3Z1-F1-model_v4_TED01"],["TED%3AAF-A0A5B8U5U7-F1-model_v4_TED01","TED novel fold AF-A0A5B8U5U7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A496014","Baekduia soli"]]},{"id":"NCBITaxon:496833","l":"","na":1,"nb":2,"a":[["TED%3AAF-C4XEY6-F1-model_v4_TED01","TED novel fold AF-C4XEY6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2115","Mycoplasmopsis fermentans"],["NCBITaxon%3A496833","Mycoplasmopsis fermentans PG18"]]},{"id":"NCBITaxon:497735","l":"Brevibacillus panacihumi","na":1,"nb":2,"a":[["TED%3AAF-A0A3M8CS74-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3M8CS74-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A497735","Brevibacillus panacihumi"],["NCBITaxon%3A1408254","Brevibacillus panacihumi W25"]]},{"id":"NCBITaxon:498214","l":"","na":2,"nb":1,"a":[["Pfam%3APF20921","Domain of unknown function DUF1846, C-terminal"],["Pfam%3APF08903","Domain of unknown function DUF1846, N-terminal"]],"b":[["NCBITaxon%3A498214","Clostridium botulinum A3 str. Loch Maree"]]},{"id":"NCBITaxon:498846","l":"Candidatus Korarchaeum cryptofilum","na":1,"nb":2,"a":[["TED%3AAF-A0A3R9WZD4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3R9WZD4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A498846","Candidatus Korarchaeum cryptofilum"],["NCBITaxon%3A374847","Candidatus Korarchaeum cryptofilum OPF8"]]},{"id":"NCBITaxon:498848","l":"Thermus aquaticus (strain ATCC BAA-2747 / Y51MC23)","na":2,"nb":1,"a":[["Pfam%3APF14487","ssDNA thymidine ADP-ribosyltransferase, DarT"],["TED%3AAF-B7A9A7-F1-model_v4_TED01","TED novel fold AF-B7A9A7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A498848","Thermus aquaticus Y51MC23"]]},{"id":"NCBITaxon:500633","l":"","na":1,"nb":2,"a":[["TED%3AAF-B6G1L6-F1-model_v4_TED01","TED highly-symmetric fold AF-B6G1L6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A89152","Peptacetobacter hiranonis"],["NCBITaxon%3A500633","Peptacetobacter hiranonis DSM 13275"]]},{"id":"NCBITaxon:500637","l":"Providencia rustigianii DSM 4541","na":1,"nb":2,"a":[["TED%3AAF-D1NXZ5-F1-model_v4_TED01","TED highly-symmetric fold AF-D1NXZ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A158850","Providencia rustigianii"],["NCBITaxon%3A500637","Providencia rustigianii DSM 4541"]]},{"id":"NCBITaxon:50259","l":"Rubrivivax sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A519Z6H9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A519Z6H9-F1-model_v4_TED01"],["TED%3AAF-A0A519Z4I2-F1-model_v4_TED02","TED novel fold AF-A0A519Z4I2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A50259","Rubrivivax sp."]]},{"id":"NCBITaxon:50338","l":"Rhizobium sullae","na":1,"nb":2,"a":[["TED%3AAF-A0A4R3Q746-F1-model_v4_TED03","TED novel fold AF-A0A4R3Q746-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A50338","Rhizobium sullae"],["NCBITaxon%3A1041146","Rhizobium sullae WSM1592"]]},{"id":"NCBITaxon:5044","l":"","na":2,"nb":1,"a":[["PROSITE%3APS00185","Isopenicillin N synthase signature 1"],["PROSITE%3APS00186","Isopenicillin N synthase signature 2"]],"b":[["NCBITaxon%3A5044","Hapsidospora chrysogena"]]},{"id":"NCBITaxon:504472","l":"Spirosoma linguale DSM 74","na":1,"nb":2,"a":[["TED%3AAF-D2QHB9-F1-model_v4_TED01","TED highly-symmetric fold AF-D2QHB9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A108","Spirosoma linguale"],["NCBITaxon%3A504472","Spirosoma linguale DSM 74"]]},{"id":"NCBITaxon:504797","l":"Actinopolymorpha cephalotaxi","na":1,"nb":2,"a":[["TED%3AAF-A0A1I2Y0M5-F1-model_v4_TED01","TED novel fold AF-A0A1I2Y0M5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A504797","Actinopolymorpha cephalotaxi"],["NCBITaxon%3A418707","Methylobacterium iners"]]},{"id":"NCBITaxon:505341","l":"Gallibacterium salpingitidis","na":2,"nb":1,"a":[["TED%3AAF-A0A1A7NNL6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1A7NNL6-F1-model_v4_TED02"],["TED%3AAF-A0A1A7PX16-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1A7PX16-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A505341","Gallibacterium salpingitidis"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":1,"nb":2,"a":[["Pfam%3APF07335","Fungal chitosanase of glycosyl hydrolase group 75"]],"b":[["NCBITaxon%3A5062","Aspergillus oryzae"],["NCBITaxon%3A510516","Aspergillus oryzae RIB40"]]},{"id":"NCBITaxon:506534","l":"Rheinheimera sp. A13L","na":2,"nb":1,"a":[["TED%3AAF-F7NRG2-F1-model_v4_TED05","TED highly-symmetric fold AF-F7NRG2-F1-model_v4_TED05"],["TED%3AAF-F7NT36-F1-model_v4_TED02","TED novel fold AF-F7NT36-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A506534","Rheinheimera sp. A13L"]]},{"id":"NCBITaxon:507522","l":"","na":2,"nb":1,"a":[["Pfam%3APF18649","EcpB C-terminal domain"],["Pfam%3APF04205","FMN-binding domain"]],"b":[["NCBITaxon%3A507522","Klebsiella variicola 342"]]},{"id":"NCBITaxon:509169","l":"Xanthomonas campestris pv. campestris (strain B100)","na":2,"nb":1,"a":[["Pfam%3APF28546","TonB transmembrane helix"],["Pfam%3APF14307","Glycosyltransferase WbsX"]],"b":[["NCBITaxon%3A509169","Xanthomonas campestris pv. campestris str. B100"]]},{"id":"NCBITaxon:512564","l":"","na":1,"nb":2,"a":[["TED%3AAF-D5E5R9-F1-model_v4_TED07","TED novel fold AF-D5E5R9-F1-model_v4_TED07"]],"b":[["NCBITaxon%3A50052","Mycoplasma crocodyli"],["NCBITaxon%3A512564","Mycoplasma crocodyli MP145"]]},{"id":"NCBITaxon:513050","l":"Dictyoglomus turgidum","na":1,"nb":2,"a":[["TED%3AAF-A0A7C3SR87-F1-model_v4_TED04","TED novel fold AF-A0A7C3SR87-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A513050","Dictyoglomus turgidum"],["NCBITaxon%3A515635","Dictyoglomus turgidum DSM 6724"]]},{"id":"NCBITaxon:51363","l":"Metamycoplasma auris","na":1,"nb":2,"a":[["TED%3AAF-A0A2W7G4E4-F1-model_v4_TED02","TED novel fold AF-A0A2W7G4E4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A51363","Metamycoplasma auris"],["NCBITaxon%3A1188233","Metamycoplasma auris 15026"]]},{"id":"NCBITaxon:5141","l":"Neurospora crassa","na":1,"nb":2,"a":[["TED%3AAF-A0A0B0E1R4-F1-model_v4_TED01","TED novel fold AF-A0A0B0E1R4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5141","Neurospora crassa"],["NCBITaxon%3A367110","Neurospora crassa OR74A"]]},{"id":"NCBITaxon:515393","l":"Pseudomonas yamanorum","na":2,"nb":1,"a":[["TED%3AAF-A0A143GFF9-F1-model_v4_TED03","TED novel fold AF-A0A143GFF9-F1-model_v4_TED03"],["TED%3AAF-A0A1H2I658-F1-model_v4_TED02","TED novel fold AF-A0A1H2I658-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A515393","Pseudomonas yamanorum"]]},{"id":"NCBITaxon:515622","l":"","na":1,"nb":2,"a":[["TED%3AAF-E0S461-F1-model_v4_TED02","TED highly-symmetric fold AF-E0S461-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A43305","Butyrivibrio proteoclasticus"],["NCBITaxon%3A515622","Butyrivibrio proteoclasticus B316"]]},{"id":"NCBITaxon:52","l":"Chondromyces crocatus","na":2,"nb":1,"a":[["TED%3AAF-A0A0K1ER44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0K1ER44-F1-model_v4_TED01"],["TED%3AAF-A0A0K1E854-F1-model_v4_TED01","TED novel fold AF-A0A0K1E854-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A52","Chondromyces crocatus"]]},{"id":"NCBITaxon:521007","l":"Borreliella burgdorferi (strain N40)","na":2,"nb":1,"a":[["Pfam%3APF02352","Decorin binding protein"],["Pfam%3APF17044","Borrelial persistence in ticks protein A"]],"b":[["NCBITaxon%3A521007","Borreliella burgdorferi N40"]]},{"id":"NCBITaxon:521096","l":"","na":1,"nb":2,"a":[["proteintraitsmech%3AELIFE109154_Lys_monoox","Mycobactin-type lysine N6-monooxygenase family"]],"b":[["NCBITaxon%3A2061","Tsukamurella paurometabola"],["NCBITaxon%3A521096","Tsukamurella paurometabola DSM 20162"]]},{"id":"NCBITaxon:521674","l":"Planctopirus limnophila DSM 3776","na":1,"nb":2,"a":[["TED%3AAF-D5SQH0-F1-model_v4_TED01","TED novel fold AF-D5SQH0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A120","Planctopirus limnophila"],["NCBITaxon%3A521674","Planctopirus limnophila DSM 3776"]]},{"id":"NCBITaxon:52247","l":"[Candida] inconspicua","na":2,"nb":1,"a":[["TED%3AAF-A0A4T0X0W3-F1-model_v4_TED01","TED novel fold AF-A0A4T0X0W3-F1-model_v4_TED01"],["TED%3AAF-A0A4V4NFB8-F1-model_v4_TED01","TED novel fold AF-A0A4V4NFB8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A52247","Pichia inconspicua"]]},{"id":"NCBITaxon:52442","l":"Nitrosomonas nitrosa","na":2,"nb":1,"a":[["TED%3AAF-A0A1I4KWB0-F1-model_v4_TED01","TED novel fold AF-A0A1I4KWB0-F1-model_v4_TED01"],["TED%3AAF-A0A1I4TNH7-F1-model_v4_TED01","TED novel fold AF-A0A1I4TNH7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A52442","Nitrosomonas nitrosa"]]},{"id":"NCBITaxon:526216","l":"Oceanibaculum indicum","na":1,"nb":2,"a":[["TED%3AAF-A0A420WQU0-F1-model_v4_TED01","TED novel fold AF-A0A420WQU0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A526216","Oceanibaculum indicum"],["NCBITaxon%3A1207063","Oceanibaculum indicum P24"]]},{"id":"NCBITaxon:527326","l":"Georgenia thermotolerans","na":2,"nb":1,"a":[["TED%3AAF-A0A7J5UNV2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J5UNV2-F1-model_v4_TED01"],["TED%3AAF-A0A7J5UIX3-F1-model_v4_TED04","TED novel fold AF-A0A7J5UIX3-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A527326","Georgenia thermotolerans"]]},{"id":"NCBITaxon:529505","l":"Belliella pelovolcani","na":2,"nb":1,"a":[["TED%3AAF-A0A1N7NE82-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A1N7NE82-F1-model_v4_TED05"],["TED%3AAF-A0A1N7Q4E5-F1-model_v4_TED03","TED novel fold AF-A0A1N7Q4E5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A529505","Belliella pelovolcani"]]},{"id":"NCBITaxon:530564","l":"Pirellula staleyi DSM 6068","na":1,"nb":2,"a":[["TED%3AAF-D2QXI3-F1-model_v4_TED05","TED novel fold AF-D2QXI3-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A125","Pirellula staleyi"],["NCBITaxon%3A530564","Pirellula staleyi DSM 6068"]]},{"id":"NCBITaxon:536044","l":"Methanolobus zinderi","na":2,"nb":1,"a":[["TED%3AAF-A0A7D5IAI6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7D5IAI6-F1-model_v4_TED01"],["TED%3AAF-A0A7D5E6R2-F1-model_v4_TED02","TED novel fold AF-A0A7D5E6R2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A536044","Methanolobus zinderi"]]},{"id":"NCBITaxon:5364","l":"Heliocybe sulcata","na":2,"nb":1,"a":[["TED%3AAF-A0A5C3NM97-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A5C3NM97-F1-model_v4_TED03"],["TED%3AAF-A0A5C3MY03-F1-model_v4_TED01","TED novel fold AF-A0A5C3MY03-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5364","Heliocybe sulcata"]]},{"id":"NCBITaxon:537006","l":"Parabacteroides johnsonii DSM 18315","na":1,"nb":2,"a":[["TED%3AAF-B7B7V2-F1-model_v4_TED03","TED novel fold AF-B7B7V2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A387661","Parabacteroides johnsonii"],["NCBITaxon%3A537006","Parabacteroides johnsonii DSM 18315"]]},{"id":"NCBITaxon:537011","l":"","na":1,"nb":2,"a":[["TED%3AAF-A0A6G1VST5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A6G1VST5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A165179","Segatella copri"],["NCBITaxon%3A537011","Segatella copri DSM 18205"]]},{"id":"NCBITaxon:53952","l":"Thermococcus peptonophilus","na":1,"nb":2,"a":[["TED%3AAF-A0A142CST1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A142CST1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A53952","Thermococcus peptonophilus"],["NCBITaxon%3A523851","Thermococcus peptonophilus OG-1 = JCM 9653"]]},{"id":"NCBITaxon:54062","l":"Pediococcus parvulus","na":1,"nb":2,"a":[["TED%3AAF-A0A511ITE1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A511ITE1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A54062","Pediococcus parvulus"],["NCBITaxon%3A1255634","Pediococcus parvulus CIRM 750"]]},{"id":"NCBITaxon:543526","l":"","na":1,"nb":2,"a":[["TED%3AAF-D2RXQ8-F1-model_v4_TED01","TED novel fold AF-D2RXQ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A62320","Haloterrigena turkmenica"],["NCBITaxon%3A543526","Haloterrigena turkmenica DSM 5511"]]},{"id":"NCBITaxon:545695","l":"","na":1,"nb":2,"a":[["TED%3AAF-F5Y7H9-F1-model_v4_TED01","TED highly-symmetric fold AF-F5Y7H9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A150829","Leadbettera azotonutricia"],["NCBITaxon%3A545695","Leadbettera azotonutricia ZAS-9"]]},{"id":"NCBITaxon:545697","l":"Clostridium celatum DSM 1785","na":1,"nb":2,"a":[["TED%3AAF-L1QP93-F1-model_v4_TED02","TED highly-symmetric fold AF-L1QP93-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A36834","Clostridium celatum"],["NCBITaxon%3A545697","Clostridium celatum DSM 1785"]]},{"id":"NCBITaxon:545864","l":"Pseudorhodoferax soli","na":2,"nb":1,"a":[["TED%3AAF-A0A368XMY9-F1-model_v4_TED04","TED novel fold AF-A0A368XMY9-F1-model_v4_TED04"],["TED%3AAF-A0A368Y0L3-F1-model_v4_TED04","TED novel fold AF-A0A368Y0L3-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A545864","Pseudorhodoferax soli"]]},{"id":"NCBITaxon:546265","l":"Neisseria lactamica ATCC 23970","na":1,"nb":2,"a":[["TED%3AAF-D0W7J3-F1-model_v4_TED01","TED highly-symmetric fold AF-D0W7J3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A486","Neisseria lactamica"],["NCBITaxon%3A546265","Neisseria lactamica ATCC 23970"]]},{"id":"NCBITaxon:546270","l":"Gemella haemolysans ATCC 10379","na":1,"nb":2,"a":[["TED%3AAF-C5NV13-F1-model_v4_TED02","TED novel fold AF-C5NV13-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1379","Gemella haemolysans"],["NCBITaxon%3A546270","Gemella haemolysans ATCC 10379"]]},{"id":"NCBITaxon:546271","l":"","na":1,"nb":2,"a":[["TED%3AAF-C9LW72-F1-model_v4_TED01","TED novel fold AF-C9LW72-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A69823","Selenomonas sputigena"],["NCBITaxon%3A546271","Selenomonas sputigena ATCC 35185"]]},{"id":"NCBITaxon:546414","l":"","na":1,"nb":2,"a":[["PROSITE%3APS00356","LacI-type HTH domain signature"]],"b":[["NCBITaxon%3A310783","Deinococcus deserti"],["NCBITaxon%3A546414","Deinococcus deserti VCD115"]]},{"id":"NCBITaxon:547559","l":"","na":1,"nb":2,"a":[["TED%3AAF-D3SYF3-F1-model_v4_TED01","TED novel fold AF-D3SYF3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A13769","Natrialba magadii"],["NCBITaxon%3A547559","Natrialba magadii ATCC 43099"]]},{"id":"NCBITaxon:550540","l":"","na":1,"nb":2,"a":[["TED%3AAF-E1SQV4-F1-model_v4_TED01","TED highly-symmetric fold AF-E1SQV4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A44012","Ferrimonas balearica"],["NCBITaxon%3A550540","Ferrimonas balearica DSM 9799"]]},{"id":"NCBITaxon:5514","l":"Fusarium sporotrichioides","na":2,"nb":1,"a":[["Pfam%3APF22701","Mal s 1 allergenic protein-like"],["TED%3AAF-A0A395RG49-F1-model_v4_TED02","TED novel fold AF-A0A395RG49-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A5514","Fusarium sporotrichioides"]]},{"id":"NCBITaxon:55209","l":"Pantoea cypripedii","na":2,"nb":1,"a":[["Pfam%3APF13618","Gluconate 2-dehydrogenase subunit 3"],["TED%3AAF-A0A1X1EQM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1X1EQM9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A55209","Pantoea cypripedii"]]},{"id":"NCBITaxon:553151","l":"Halopseudomonas pelagia","na":1,"nb":2,"a":[["TED%3AAF-A0A2A4AUI1-F1-model_v4_TED01","TED novel fold AF-A0A2A4AUI1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A553151","Halopseudomonas pelagia"],["NCBITaxon%3A1323663","Halopseudomonas pelagia CL-AP6"]]},{"id":"NCBITaxon:553178","l":"","na":1,"nb":2,"a":[["TED%3AAF-C2M6B3-F1-model_v4_TED03","TED novel fold AF-C2M6B3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1017","Capnocytophaga gingivalis"],["NCBITaxon%3A553178","Capnocytophaga gingivalis ATCC 33624"]]},{"id":"NCBITaxon:553220","l":"Campylobacter gracilis RM3268","na":1,"nb":2,"a":[["TED%3AAF-C8PGW1-F1-model_v4_TED02","TED novel fold AF-C8PGW1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A824","Campylobacter gracilis"],["NCBITaxon%3A553220","Campylobacter gracilis RM3268"]]},{"id":"NCBITaxon:5539","l":"Scytalidium lignicola","na":2,"nb":1,"a":[["TED%3AAF-A0A3E2GX72-F1-model_v4_TED02","TED novel fold AF-A0A3E2GX72-F1-model_v4_TED02"],["TED%3AAF-A0A3E2H974-F1-model_v4_TED01","TED novel fold AF-A0A3E2H974-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5539","Scytalidium lignicola"]]},{"id":"NCBITaxon:555311","l":"Saccharolobus solfataricus (strain 98/2)","na":2,"nb":1,"a":[["Pfam%3APF18533","Domain of unknown function (DUF5622)"],["Pfam%3APF21280","Archaeal helicase, domain 4"]],"b":[["NCBITaxon%3A555311","Saccharolobus solfataricus 98/2"]]},{"id":"NCBITaxon:558173","l":"Corynebacterium doosanense CAU 212 = DSM 45436","na":1,"nb":2,"a":[["TED%3AAF-A0A097IJJ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A097IJJ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1121358","Corynebacterium doosanense"],["NCBITaxon%3A558173","Corynebacterium doosanense CAU 212 = DSM 45436"]]},{"id":"NCBITaxon:558537","l":"Delftia lacustris","na":1,"nb":2,"a":[["TED%3AAF-A0A7T3DHC3-F1-model_v4_TED02","TED novel fold AF-A0A7T3DHC3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A80866","Delftia acidovorans"],["NCBITaxon%3A558537","Delftia lacustris"]]},{"id":"NCBITaxon:56055","l":"Bogoriella caseilytica","na":2,"nb":1,"a":[["TED%3AAF-A0A3N2B9M1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N2B9M1-F1-model_v4_TED01"],["TED%3AAF-A0A3N2B9S2-F1-model_v4_TED04","TED novel fold AF-A0A3N2B9S2-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A56055","Allobogoriella caseilytica"]]},{"id":"NCBITaxon:56458","l":"Xanthomonas sacchari","na":1,"nb":2,"a":[["TED%3AAF-A0A5D1AFE3-F1-model_v4_TED01","TED novel fold AF-A0A5D1AFE3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A56458","Xanthomonas sacchari"],["NCBITaxon%3A1084662","Xanthomonas sacchari NCPPB 4393"]]},{"id":"NCBITaxon:565072","l":"Streptomyces spongiae","na":2,"nb":1,"a":[["TED%3AAF-A0A5N8XGB6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5N8XGB6-F1-model_v4_TED01"],["TED%3AAF-A0A5N8XXA3-F1-model_v4_TED01","TED novel fold AF-A0A5N8XXA3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A565072","Streptomyces spongiae"]]},{"id":"NCBITaxon:5661","l":"Leishmania donovani","na":2,"nb":1,"a":[["Pfam%3APF03037","Kinetoplastid membrane protein 11"],["Pfam%3APF03130","PBS lyase HEAT-like repeat"]],"b":[["NCBITaxon%3A5661","Leishmania donovani"]]},{"id":"NCBITaxon:566549","l":"Corynebacterium matruchotii ATCC 33806","na":1,"nb":2,"a":[["TED%3AAF-C0E5R2-F1-model_v4_TED02","TED highly-symmetric fold AF-C0E5R2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A43768","Corynebacterium matruchotii"],["NCBITaxon%3A566549","Corynebacterium matruchotii ATCC 33806"]]},{"id":"NCBITaxon:566550","l":"Hungatella hathewayi DSM 13479","na":1,"nb":2,"a":[["TED%3AAF-D3AIU1-F1-model_v4_TED01","TED novel fold AF-D3AIU1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A154046","Hungatella hathewayi"],["NCBITaxon%3A566550","Hungatella hathewayi DSM 13479"]]},{"id":"NCBITaxon:56799","l":"Colwellia sp.","na":2,"nb":1,"a":[["Pfam%3APF11999","Ice-binding-like"],["TED%3AAF-A0A2G2IC50-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G2IC50-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A56799","Colwellia sp."]]},{"id":"NCBITaxon:568106","l":"Marinobacterium lutimaris","na":1,"nb":2,"a":[["TED%3AAF-A0A1H5Y6J0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1H5Y6J0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A568106","Marinobacterium lutimaris"],["NCBITaxon%3A657014","Thalassovita taeanensis"]]},{"id":"NCBITaxon:56811","l":"Psychrobacter sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A350DM46-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A350DM46-F1-model_v4_TED01"],["TED%3AAF-A0A353XTU7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A353XTU7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A56811","Psychrobacter sp."]]},{"id":"NCBITaxon:56812","l":"Shewanella frigidimarina","na":1,"nb":2,"a":[["Pfam%3APF14537","Cytochrome c3"]],"b":[["NCBITaxon%3A56812","Shewanella frigidimarina"],["NCBITaxon%3A318167","Shewanella frigidimarina NCIMB 400"]]},{"id":"NCBITaxon:568860","l":"Nonomuraea wenchangensis","na":2,"nb":1,"a":[["TED%3AAF-A0A1I0L6E6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I0L6E6-F1-model_v4_TED01"],["TED%3AAF-A0A1I0F204-F1-model_v4_TED01","TED novel fold AF-A0A1I0F204-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A568860","Nonomuraea wenchangensis"]]},{"id":"NCBITaxon:56946","l":"Afipia broomeae","na":1,"nb":2,"a":[["TED%3AAF-A0A2M8ZDY1-F1-model_v4_TED03","TED novel fold AF-A0A2M8ZDY1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A56946","Afipia broomeae"],["NCBITaxon%3A883078","Afipia broomeae ATCC 49717"]]},{"id":"NCBITaxon:5698","l":"Trypanosoma rangeli","na":2,"nb":1,"a":[["TED%3AAF-A0A3R7MRW3-F1-model_v4_TED01","TED novel fold AF-A0A3R7MRW3-F1-model_v4_TED01"],["TED%3AAF-A0A3R7RRC6-F1-model_v4_TED01","TED novel fold AF-A0A3R7RRC6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A429131","Trypanosoma rangeli SC58"]]},{"id":"NCBITaxon:57040","l":"Malonomonas rubra","na":1,"nb":2,"a":[["Pfam%3APF06857","Malonate decarboxylase delta subunit (MdcD)"]],"b":[["NCBITaxon%3A57040","Malonomonas rubra"],["NCBITaxon%3A1122189","Malonomonas rubra DSM 5091"]]},{"id":"NCBITaxon:570446","l":"Sphingobium faniae","na":2,"nb":1,"a":[["TED%3AAF-A0A1G4PQM2-F1-model_v4_TED01","TED novel fold AF-A0A1G4PQM2-F1-model_v4_TED01"],["TED%3AAF-A0A1G4TUU7-F1-model_v4_TED03","TED novel fold AF-A0A1G4TUU7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A570446","Sphingobium faniae"]]},{"id":"NCBITaxon:570835","l":"Edaphobacter aggregans","na":1,"nb":2,"a":[["TED%3AAF-A0A3R9QJI3-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A3R9QJI3-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A570835","Edaphobacter aggregans"],["NCBITaxon%3A1121860","Edaphobacter aggregans DSM 19364"]]},{"id":"NCBITaxon:572419","l":"Mycoplasma amphoriforme A39","na":1,"nb":2,"a":[["TED%3AAF-A0A292IJF8-F1-model_v4_TED03","TED novel fold AF-A0A292IJF8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A273136","Mycoplasma amphoriforme"],["NCBITaxon%3A572419","Mycoplasma amphoriforme A39"]]},{"id":"NCBITaxon:572479","l":"","na":1,"nb":2,"a":[["TED%3AAF-E3DS46-F1-model_v4_TED02","TED novel fold AF-E3DS46-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2331","Halanaerobium praevalens"],["NCBITaxon%3A572479","Halanaerobium praevalens DSM 2228"]]},{"id":"NCBITaxon:573064","l":"Methanocaldococcus fervens AG86","na":1,"nb":2,"a":[["Pfam%3APF02655","ATP-grasp domain"]],"b":[["NCBITaxon%3A83171","Methanocaldococcus fervens"],["NCBITaxon%3A573064","Methanocaldococcus fervens AG86"]]},{"id":"NCBITaxon:573065","l":"Asticcacaulis excentricus CB 48","na":1,"nb":2,"a":[["TED%3AAF-E8RUW8-F1-model_v4_TED01","TED novel fold AF-E8RUW8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A78587","Asticcacaulis excentricus"],["NCBITaxon%3A573065","Asticcacaulis excentricus CB 48"]]},{"id":"NCBITaxon:575540","l":"Isosphaera pallida ATCC 43644","na":1,"nb":2,"a":[["TED%3AAF-E8R507-F1-model_v4_TED01","TED highly-symmetric fold AF-E8R507-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A128","Isosphaera pallida"],["NCBITaxon%3A575540","Isosphaera pallida ATCC 43644"]]},{"id":"NCBITaxon:575584","l":"","na":1,"nb":2,"a":[["Pfam%3APF22290","Dimethylamine monooxygenase subunit DmmA-like, N-terminal domain"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A575584","Acinetobacter baumannii ATCC 19606 = CIP 70.34 = JCM 6841"]]},{"id":"NCBITaxon:5763","l":"Naegleria fowleri","na":2,"nb":1,"a":[["TED%3AAF-A0A6A5BVA1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A5BVA1-F1-model_v4_TED01"],["TED%3AAF-A0A6A5C079-F1-model_v4_TED01","TED novel fold AF-A0A6A5C079-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5763","Naegleria fowleri"]]},{"id":"NCBITaxon:57664","l":"Desulfuromonas thiophila","na":1,"nb":2,"a":[["TED%3AAF-A0A1G7DXZ5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G7DXZ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A57664","Desulfuromonas thiophila"],["NCBITaxon%3A1121475","Desulfuromonas thiophila DSM 8987"]]},{"id":"NCBITaxon:57732","l":"Enterococcus asini","na":1,"nb":2,"a":[["TED%3AAF-A0A413AL28-F1-model_v4_TED03","TED novel fold AF-A0A413AL28-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A57732","Enterococcus asini"],["NCBITaxon%3A1158606","Enterococcus asini ATCC 700915"]]},{"id":"NCBITaxon:578093","l":"Lineolata rhizophorae","na":2,"nb":1,"a":[["TED%3AAF-A0A6A6NRD4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A6NRD4-F1-model_v4_TED01"],["TED%3AAF-A0A6A6NL82-F1-model_v4_TED01","TED novel fold AF-A0A6A6NL82-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A578093","Lineolata rhizophorae"]]},{"id":"NCBITaxon:578457","l":"","na":2,"nb":1,"a":[["TED%3AAF-F8NT94-F1-model_v4_TED01","TED highly-symmetric fold AF-F8NT94-F1-model_v4_TED01"],["TED%3AAF-F8NMD8-F1-model_v4_TED01","TED novel fold AF-F8NMD8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A578457","Serpula lacrymans var. lacrymans S7.9"]]},{"id":"NCBITaxon:5786","l":"Dictyostelium purpureum","na":2,"nb":1,"a":[["TED%3AAF-F1A1P2-F1-model_v4_TED01","TED highly-symmetric fold AF-F1A1P2-F1-model_v4_TED01"],["TED%3AAF-F1A2N0-F1-model_v4_TED01","TED novel fold AF-F1A2N0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5786","Dictyostelium purpureum"]]},{"id":"NCBITaxon:579137","l":"Methanocaldococcus vulcanius M7","na":1,"nb":2,"a":[["TED%3AAF-C9RDN7-F1-model_v4_TED02","TED highly-symmetric fold AF-C9RDN7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A73913","Methanocaldococcus vulcanius"],["NCBITaxon%3A579137","Methanocaldococcus vulcanius M7"]]},{"id":"NCBITaxon:58172","l":"Paenibacillus sp.","na":2,"nb":1,"a":[["Pfam%3APF03442","Carbohydrate binding domain X2"],["TED%3AAF-A0A357M9E9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A357M9E9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A58172","Paenibacillus sp."]]},{"id":"NCBITaxon:582702","l":"Rhodanobacter glycinis","na":2,"nb":1,"a":[["TED%3AAF-A0A1I4G4N7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I4G4N7-F1-model_v4_TED02"],["TED%3AAF-A0A502CFB8-F1-model_v4_TED01","TED novel fold AF-A0A502CFB8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A582702","Rhodanobacter glycinis"]]},{"id":"NCBITaxon:582855","l":"Streptomyces haliclonae","na":1,"nb":2,"a":[["TED%3AAF-A0A7W7BYP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W7BYP7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A582855","Streptomyces haliclonae"],["NCBITaxon%3A582854","Streptomyces marinus"]]},{"id":"NCBITaxon:584657","l":"Intrasporangium chromatireducens Q5-1","na":1,"nb":2,"a":[["TED%3AAF-W9GQ20-F1-model_v4_TED01","TED highly-symmetric fold AF-W9GQ20-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1386088","Intrasporangium chromatireducens"],["NCBITaxon%3A584657","Intrasporangium chromatireducens Q5-1"]]},{"id":"NCBITaxon:585054","l":"Escherichia fergusonii ATCC 35469","na":1,"nb":2,"a":[["Pfam%3APF08364","Bacterial translation initiation factor IF-2 associated region"]],"b":[["NCBITaxon%3A564","Escherichia fergusonii"],["NCBITaxon%3A585054","Escherichia fergusonii ATCC 35469"]]},{"id":"NCBITaxon:5855","l":"Plasmodium vivax","na":1,"nb":2,"a":[["PROSITE%3APS01006","Formate and nitrite transporters signature 2"]],"b":[["NCBITaxon%3A5855","Plasmodium vivax"],["NCBITaxon%3A126793","Plasmodium vivax Sal-1"]]},{"id":"NCBITaxon:5857","l":"Plasmodium fragile","na":2,"nb":1,"a":[["Pfam%3APF02430","Apical membrane antigen 1"],["TED%3AAF-A0A0D9QCU0-F1-model_v4_TED03","TED novel fold AF-A0A0D9QCU0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A5857","Plasmodium fragile"]]},{"id":"NCBITaxon:588581","l":"Ruminiclostridium papyrosolvens DSM 2782","na":1,"nb":2,"a":[["TED%3AAF-F1TA67-F1-model_v4_TED05","TED highly-symmetric fold AF-F1TA67-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A29362","Ruminiclostridium papyrosolvens"],["NCBITaxon%3A588581","Ruminiclostridium papyrosolvens DSM 2782"]]},{"id":"NCBITaxon:589873","l":"Alteromonas australica","na":2,"nb":1,"a":[["TED%3AAF-A0A350P6M3-F1-model_v4_TED03","TED novel fold AF-A0A350P6M3-F1-model_v4_TED03"],["TED%3AAF-A0A358DY91-F1-model_v4_TED02","TED novel fold AF-A0A358DY91-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A589873","Alteromonas australica"]]},{"id":"NCBITaxon:589924","l":"Ferroglobus placidus DSM 10642","na":1,"nb":2,"a":[["TED%3AAF-D3S1W1-F1-model_v4_TED01","TED novel fold AF-D3S1W1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A54261","Ferroglobus placidus"],["NCBITaxon%3A589924","Ferroglobus placidus DSM 10642"]]},{"id":"NCBITaxon:590998","l":"","na":1,"nb":2,"a":[["Pfam%3APF02927","Cellulase N-terminal ig-like domain"]],"b":[["NCBITaxon%3A1708","Cellulomonas fimi"],["NCBITaxon%3A590998","Cellulomonas fimi ATCC 484"]]},{"id":"NCBITaxon:5911","l":"Tetrahymena thermophila","na":1,"nb":2,"a":[["Pfam%3APF10699","Male gamete fusion factor"]],"b":[["NCBITaxon%3A5911","Tetrahymena thermophila"],["NCBITaxon%3A312017","Tetrahymena thermophila SB210"]]},{"id":"NCBITaxon:592015","l":"Acetomicrobium hydrogeniformans ATCC BAA-1850","na":1,"nb":2,"a":[["TED%3AAF-A0A0T5X7S6-F1-model_v4_TED02","TED novel fold AF-A0A0T5X7S6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A649746","Acetomicrobium hydrogeniformans"],["NCBITaxon%3A592015","Acetomicrobium hydrogeniformans ATCC BAA-1850"]]},{"id":"NCBITaxon:592022","l":"","na":1,"nb":2,"a":[["Pfam%3APF21715","CggR N-terminal DNA binding domain"]],"b":[["NCBITaxon%3A1404","Priestia megaterium"],["NCBITaxon%3A592022","Priestia megaterium DSM 319"]]},{"id":"NCBITaxon:593907","l":"","na":1,"nb":2,"a":[["TED%3AAF-F8A5U1-F1-model_v4_TED01","TED highly-symmetric fold AF-F8A5U1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A11","Cellulomonas gilvus"],["NCBITaxon%3A593907","Cellulomonas gilvus ATCC 13127"]]},{"id":"NCBITaxon:59406","l":"Aromatoleum evansii","na":2,"nb":1,"a":[["Pfam%3APF14535","AMP-binding enzyme C-terminal domain"],["Pfam%3APF12837","4Fe-4S binding domain"]],"b":[["NCBITaxon%3A59406","Aromatoleum evansii"]]},{"id":"NCBITaxon:595670","l":"Acinetobacter kyonggiensis","na":2,"nb":1,"a":[["TED%3AAF-A0A1H3M0H6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H3M0H6-F1-model_v4_TED01"],["TED%3AAF-A0A1H3HIF5-F1-model_v4_TED02","TED novel fold AF-A0A1H3HIF5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A595670","Acinetobacter kyonggiensis"]]},{"id":"NCBITaxon:596151","l":"Solidesulfovibrio fructosivorans JJ]","na":1,"nb":2,"a":[["TED%3AAF-E1JSF8-F1-model_v4_TED01","TED highly-symmetric fold AF-E1JSF8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A878","Solidesulfovibrio fructosivorans"],["NCBITaxon%3A596151","Solidesulfovibrio fructosivorans JJ]"]]},{"id":"NCBITaxon:5970","l":"Exophiala dermatitidis","na":1,"nb":2,"a":[["Pfam%3APF22997","Chitin synthase 4-like domain"]],"b":[["NCBITaxon%3A5970","Exophiala dermatitidis"],["NCBITaxon%3A858893","Exophiala dermatitidis NIH/UT8656"]]},{"id":"NCBITaxon:59845","l":"Paenibacillus illinoisensis","na":1,"nb":2,"a":[["TED%3AAF-A0A2W0C6X7-F1-model_v4_TED01","TED novel fold AF-A0A2W0C6X7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A59845","Paenibacillus illinoisensis"],["NCBITaxon%3A1349779","Paenibacillus illinoisensis NBRC 15959"]]},{"id":"NCBITaxon:598659","l":"","na":1,"nb":2,"a":[["TED%3AAF-B9L8X6-F1-model_v4_TED01","TED highly-symmetric fold AF-B9L8X6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A244787","Nautilia profundicola"],["NCBITaxon%3A598659","Nautilia profundicola AmH"]]},{"id":"NCBITaxon:59919","l":"Prochlorococcus marinus subsp. pastoris str. CCMP1986","na":2,"nb":1,"a":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF12288","Carboxysome shell peptide mid-region"]],"b":[["NCBITaxon%3A59919","Prochlorococcus marinus subsp. pastoris str. CCMP1986"]]},{"id":"NCBITaxon:604354","l":"","na":1,"nb":2,"a":[["Pfam%3APF04475","Protein of unknown function (DUF555)"]],"b":[["NCBITaxon%3A172049","Thermococcus sibiricus"],["NCBITaxon%3A604354","Thermococcus sibiricus MM 739"]]},{"id":"NCBITaxon:60453","l":"Dactylosporangium sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A849DQQ6-F1-model_v4_TED02","TED novel fold AF-A0A849DQQ6-F1-model_v4_TED02"],["TED%3AAF-A0A849DTX5-F1-model_v4_TED03","TED novel fold AF-A0A849DTX5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A60453","Dactylosporangium sp."]]},{"id":"NCBITaxon:60480","l":"","na":2,"nb":1,"a":[["Pfam%3APF06276","Ferric iron reductase FhuF-like transporter"],["Pfam%3APF04183","IucA / IucC family"]],"b":[["NCBITaxon%3A60480","Shewanella sp. MR-4"]]},{"id":"NCBITaxon:60481","l":"Shewanella sp. (strain MR-7)","na":2,"nb":1,"a":[["Pfam%3APF04183","IucA / IucC family"],["TED%3AAF-Q0HVU8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q0HVU8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A60481","Shewanella sp. MR-7"]]},{"id":"NCBITaxon:60549","l":"Paraburkholderia phenazinium","na":2,"nb":1,"a":[["TED%3AAF-A0A1N6HFN5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1N6HFN5-F1-model_v4_TED01"],["TED%3AAF-A0A4R7QIB5-F1-model_v4_TED01","TED novel fold AF-A0A4R7QIB5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A60549","Paraburkholderia phenazinium"]]},{"id":"NCBITaxon:608538","l":"Hydrogenobacter thermophilus TK-6","na":1,"nb":2,"a":[["Pfam%3APF17805","AsnC-like ligand binding domain"]],"b":[["NCBITaxon%3A940","Hydrogenobacter thermophilus"],["NCBITaxon%3A608538","Hydrogenobacter thermophilus TK-6"]]},{"id":"NCBITaxon:60894","l":"Saccharopolyspora spinosa","na":1,"nb":2,"a":[["Pfam%3APF03559","NDP-hexose 2,3-dehydratase"]],"b":[["NCBITaxon%3A60894","Saccharopolyspora spinosa"],["NCBITaxon%3A994479","Saccharopolyspora spinosa NRRL 18395"]]},{"id":"NCBITaxon:610130","l":"[Clostridium] saccharolyticum WM1","na":1,"nb":2,"a":[["TED%3AAF-D9RA58-F1-model_v4_TED03","TED highly-symmetric fold AF-D9RA58-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A610130","[Clostridium] saccharolyticum WM1"],["NCBITaxon%3A84030","Lacrimispora saccharolytica"]]},{"id":"NCBITaxon:61644","l":"Chromatium okenii","na":1,"nb":2,"a":[["TED%3AAF-A0A2S7XR51-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S7XR51-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A61644","Chromatium okenii"],["NCBITaxon%3A1434305","Chromatium okenii LC"]]},{"id":"NCBITaxon:620903","l":"Negativicoccus succinicivorans","na":1,"nb":2,"a":[["TED%3AAF-A0A841R3K7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A841R3K7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A620903","Negativicoccus succinicivorans"],["NCBITaxon%3A1403945","Negativicoccus succinicivorans DORA_17_25"]]},{"id":"NCBITaxon:626931","l":"Bacteroides oleiciplenus","na":1,"nb":2,"a":[["TED%3AAF-A0A1Q6GFG4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q6GFG4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A626931","Bacteroides oleiciplenus"],["NCBITaxon%3A742727","Bacteroides oleiciplenus YIT 12058"]]},{"id":"NCBITaxon:626939","l":"Phascolarctobacterium succinatutens YIT 12067","na":1,"nb":2,"a":[["TED%3AAF-E8LCK5-F1-model_v4_TED01","TED novel fold AF-E8LCK5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A626940","Phascolarctobacterium succinatutens"],["NCBITaxon%3A626939","Phascolarctobacterium succinatutens YIT 12067"]]},{"id":"NCBITaxon:629741","l":"Kingella oralis ATCC 51147","na":1,"nb":2,"a":[["TED%3AAF-C4GEH4-F1-model_v4_TED01","TED highly-symmetric fold AF-C4GEH4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A505","Kingella oralis"],["NCBITaxon%3A629741","Kingella oralis ATCC 51147"]]},{"id":"NCBITaxon:633697","l":"","na":1,"nb":2,"a":[["Pfam%3APF19906","C-glycoside deglycosidase beta subunit"]],"b":[["NCBITaxon%3A29322","[Eubacterium] cellulosolvens"],["NCBITaxon%3A633697","[Eubacterium] cellulosolvens 6"]]},{"id":"NCBITaxon:637390","l":"Acidithiobacillus thiooxidans ATCC 19377","na":1,"nb":2,"a":[["TED%3AAF-A0A5P9XT39-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5P9XT39-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A930","Acidithiobacillus thiooxidans"],["NCBITaxon%3A637390","Acidithiobacillus thiooxidans ATCC 19377"]]},{"id":"NCBITaxon:637886","l":"Dysgonomonas hofstadii","na":1,"nb":2,"a":[["TED%3AAF-A0A840CH36-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A840CH36-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A637886","Dysgonomonas hofstadii"],["NCBITaxon%3A1298597","Dysgonomonas hofstadii JCM 17038 = DSM 104969"]]},{"id":"NCBITaxon:638300","l":"Cardiobacterium hominis ATCC 15826","na":1,"nb":2,"a":[["TED%3AAF-C8NBX0-F1-model_v4_TED02","TED novel fold AF-C8NBX0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2718","Cardiobacterium hominis"],["NCBITaxon%3A638300","Cardiobacterium hominis ATCC 15826"]]},{"id":"NCBITaxon:638302","l":"","na":1,"nb":2,"a":[["TED%3AAF-C4V4M5-F1-model_v4_TED02","TED highly-symmetric fold AF-C4V4M5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A135080","Centipeda flueggei"],["NCBITaxon%3A638302","Centipeda flueggei ATCC 43531"]]},{"id":"NCBITaxon:638303","l":"","na":1,"nb":2,"a":[["TED%3AAF-D3SLN6-F1-model_v4_TED03","TED highly-symmetric fold AF-D3SLN6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A136094","Thermocrinis albus"],["NCBITaxon%3A638303","Thermocrinis albus DSM 14484"]]},{"id":"NCBITaxon:639283","l":"Ancylobacter novellus DSM 506","na":1,"nb":2,"a":[["TED%3AAF-D6ZYI9-F1-model_v4_TED01","TED highly-symmetric fold AF-D6ZYI9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A921","Ancylobacter novellus"],["NCBITaxon%3A639283","Ancylobacter novellus DSM 506"]]},{"id":"NCBITaxon:644548","l":"Gordonia neofelifaecis NRRL B-59395","na":1,"nb":2,"a":[["TED%3AAF-F1YHR7-F1-model_v4_TED02","TED novel fold AF-F1YHR7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A945692","Gordonia neofelifaecis"],["NCBITaxon%3A644548","Gordonia neofelifaecis NRRL B-59395"]]},{"id":"NCBITaxon:645127","l":"","na":1,"nb":2,"a":[["Pfam%3APF03744","6-carboxyhexanoate--CoA ligase"]],"b":[["NCBITaxon%3A161879","Corynebacterium kroppenstedtii"],["NCBITaxon%3A645127","Corynebacterium kroppenstedtii DSM 44385"]]},{"id":"NCBITaxon:645463","l":"Clostridioides difficile R20291","na":1,"nb":2,"a":[["Pfam%3APF04392","ABC transporter substrate binding protein"]],"b":[["NCBITaxon%3A1496","Clostridioides difficile"],["NCBITaxon%3A645463","Clostridioides difficile R20291"]]},{"id":"NCBITaxon:64571","l":"Lobosporangium transversale","na":2,"nb":1,"a":[["TED%3AAF-A0A1Y2G8M8-F1-model_v4_TED01","TED novel fold AF-A0A1Y2G8M8-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2GK20-F1-model_v4_TED03","TED novel fold AF-A0A1Y2GK20-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A64571","Lobosporangium transversale"]]},{"id":"NCBITaxon:645991","l":"","na":1,"nb":2,"a":[["TED%3AAF-F0T282-F1-model_v4_TED01","TED highly-symmetric fold AF-F0T282-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A51197","Syntrophobotulus glycolicus"],["NCBITaxon%3A645991","Syntrophobotulus glycolicus DSM 8271"]]},{"id":"NCBITaxon:649349","l":"Leadbetterella byssophila DSM 17132","na":1,"nb":2,"a":[["TED%3AAF-E4RVH3-F1-model_v4_TED02","TED novel fold AF-E4RVH3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A316068","Leadbetterella byssophila"],["NCBITaxon%3A649349","Leadbetterella byssophila DSM 17132"]]},{"id":"NCBITaxon:649638","l":"","na":1,"nb":2,"a":[["TED%3AAF-D7CR89-F1-model_v4_TED01","TED highly-symmetric fold AF-D7CR89-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A332249","Truepera radiovictrix"],["NCBITaxon%3A649638","Truepera radiovictrix DSM 17093"]]},{"id":"NCBITaxon:649639","l":"","na":1,"nb":2,"a":[["Pfam%3APF03424","Carbohydrate binding domain (family 17/28)"]],"b":[["NCBITaxon%3A1413","Evansella cellulosilytica"],["NCBITaxon%3A649639","Evansella cellulosilytica DSM 2522"]]},{"id":"NCBITaxon:64972","l":"Oceanobacter kriegii","na":1,"nb":2,"a":[["Pfam%3APF02923","Restriction endonuclease BamHI"]],"b":[["NCBITaxon%3A64972","Oceanobacter kriegii"],["NCBITaxon%3A1122615","Oceanobacter kriegii DSM 6294"]]},{"id":"NCBITaxon:649747","l":"Aneurinibacillus aneurinilyticus ATCC 12856","na":1,"nb":2,"a":[["TED%3AAF-U1WRS1-F1-model_v4_TED03","TED highly-symmetric fold AF-U1WRS1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1391","Aneurinibacillus aneurinilyticus"],["NCBITaxon%3A649747","Aneurinibacillus aneurinilyticus ATCC 12856"]]},{"id":"NCBITaxon:649755","l":"Faecalitalea cylindroides ATCC 27803","na":1,"nb":2,"a":[["TED%3AAF-U2P7A3-F1-model_v4_TED01","TED highly-symmetric fold AF-U2P7A3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39483","Faecalitalea cylindroides"],["NCBITaxon%3A649755","Faecalitalea cylindroides ATCC 27803"]]},{"id":"NCBITaxon:649756","l":"Anaerostipes hadrus","na":1,"nb":2,"a":[["TED%3AAF-A0A173SPJ6-F1-model_v4_TED03","TED novel fold AF-A0A173SPJ6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A649756","Anaerostipes hadrus"],["NCBITaxon%3A649757","Anaerostipes hadrus ATCC 29173 = JCM 17467"]]},{"id":"NCBITaxon:65","l":"Herpetosiphon aurantiacus","na":1,"nb":2,"a":[["Pfam%3APF09520","Type II restriction endonuclease, HinfI"]],"b":[["NCBITaxon%3A65","Herpetosiphon aurantiacus"],["NCBITaxon%3A316274","Herpetosiphon aurantiacus DSM 785"]]},{"id":"NCBITaxon:652620","l":"","na":1,"nb":2,"a":[["Pfam%3APF12574","120 KDa Rickettsia surface antigen"]],"b":[["NCBITaxon%3A35790","Rickettsia japonica"],["NCBITaxon%3A652620","Rickettsia japonica YH"]]},{"id":"NCBITaxon:652722","l":"Prevotella sp. oral taxon 313","na":1,"nb":2,"a":[["TED%3AAF-A0A2T4TJT6-F1-model_v4_TED01","TED novel fold AF-A0A2T4TJT6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A652722","Prevotella sp. oral taxon 313"],["NCBITaxon%3A621373","Prevotella sp. oral taxon 313 str. D3"]]},{"id":"NCBITaxon:652764","l":"Azospirillum sp. TSH100","na":1,"nb":2,"a":[["TED%3AAF-A0A4P7YGG1-F1-model_v4_TED01","TED novel fold AF-A0A4P7YGG1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A192","Azospirillum brasilense"],["NCBITaxon%3A652764","Azospirillum sp. TSH100"]]},{"id":"NCBITaxon:653931","l":"Sphingomonas alpina","na":2,"nb":1,"a":[["TED%3AAF-A0A7G5YYV7-F1-model_v4_TED01","TED novel fold AF-A0A7G5YYV7-F1-model_v4_TED01"],["TED%3AAF-A0A7H0LPD7-F1-model_v4_TED01","TED novel fold AF-A0A7H0LPD7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A653931","Sphingomonas alpina"]]},{"id":"NCBITaxon:655816","l":"Bacillus spizizenii (strain ATCC 23059 / NRRL B-14472 / W23)","na":2,"nb":1,"a":[["Pfam%3APF13930","DNA/RNA non-specific endonuclease"],["Pfam%3APF03626","Prokaryotic Cytochrome C oxidase subunit IV"]],"b":[["NCBITaxon%3A655816","Bacillus spizizenii str. W23"]]},{"id":"NCBITaxon:656914","l":"Desulfonispora thiosulfatigenes DSM 11270","na":1,"nb":2,"a":[["TED%3AAF-A0A1W1UJ66-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W1UJ66-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A83661","Desulfonispora thiosulfatigenes"],["NCBITaxon%3A656914","Desulfonispora thiosulfatigenes DSM 11270"]]},{"id":"NCBITaxon:657318","l":"","na":1,"nb":2,"a":[["TED%3AAF-D6E2S4-F1-model_v4_TED03","TED novel fold AF-D6E2S4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A39491","Agathobacter rectalis"],["NCBITaxon%3A657318","Agathobacter rectalis DSM 17629"]]},{"id":"NCBITaxon:659243","l":"Bacillus siamensis","na":1,"nb":2,"a":[["TED%3AAF-A0A853L550-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A853L550-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A659243","Bacillus siamensis"],["NCBITaxon%3A1177185","Bacillus siamensis KCTC 13613"]]},{"id":"NCBITaxon:659425","l":"Thermoclostridium caenicola","na":1,"nb":2,"a":[["TED%3AAF-A0A1M6H7B8-F1-model_v4_TED02","TED novel fold AF-A0A1M6H7B8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A659425","Thermoclostridium caenicola"],["NCBITaxon%3A1121300","Thermoclostridium caenicola DSM 19027"]]},{"id":"NCBITaxon:661","l":"Photobacterium angustum","na":1,"nb":2,"a":[["TED%3AAF-A0A2S7VJB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S7VJB4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A661","Photobacterium angustum"],["NCBITaxon%3A314292","Photobacterium angustum S14"]]},{"id":"NCBITaxon:663278","l":"","na":1,"nb":2,"a":[["TED%3AAF-E6U344-F1-model_v4_TED03","TED highly-symmetric fold AF-E6U344-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A253239","Ethanoligenens harbinense"],["NCBITaxon%3A663278","Ethanoligenens harbinense YUAN-3"]]},{"id":"NCBITaxon:665004","l":"Thermobifida cellulosilytica TB100","na":1,"nb":2,"a":[["TED%3AAF-A0A147KM88-F1-model_v4_TED01","TED novel fold AF-A0A147KM88-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A144786","Thermobifida cellulosilytica"],["NCBITaxon%3A665004","Thermobifida cellulosilytica TB100"]]},{"id":"NCBITaxon:666681","l":"Methylotenera versatilis 301","na":1,"nb":2,"a":[["TED%3AAF-D7DL14-F1-model_v4_TED01","TED novel fold AF-D7DL14-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1055487","Methylotenera versatilis"],["NCBITaxon%3A666681","Methylotenera versatilis 301"]]},{"id":"NCBITaxon:66821","l":"Sulfurospirillum multivorans","na":1,"nb":2,"a":[["Pfam%3APF13484","4Fe-4S double cluster binding domain"]],"b":[["NCBITaxon%3A66821","Sulfurospirillum multivorans"],["NCBITaxon%3A1150621","Sulfurospirillum multivorans DSM 12446"]]},{"id":"NCBITaxon:67003","l":"Trypanosoma theileri","na":2,"nb":1,"a":[["TED%3AAF-A0A1X0P2L0-F1-model_v4_TED01","TED novel fold AF-A0A1X0P2L0-F1-model_v4_TED01"],["TED%3AAF-A0A1X0P808-F1-model_v4_TED03","TED novel fold AF-A0A1X0P808-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A67003","Trypanosoma theileri"]]},{"id":"NCBITaxon:670483","l":"Gloeophyllum trabeum (strain ATCC 11539 / FP-39264 / Madison 617)","na":2,"nb":1,"a":[["TED%3AAF-S7PVB2-F1-model_v4_TED01","TED highly-symmetric fold AF-S7PVB2-F1-model_v4_TED01"],["TED%3AAF-S7PSV9-F1-model_v4_TED02","TED novel fold AF-S7PSV9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A670483","Gloeophyllum trabeum ATCC 11539"]]},{"id":"NCBITaxon:670487","l":"","na":1,"nb":2,"a":[["TED%3AAF-E4U714-F1-model_v4_TED01","TED highly-symmetric fold AF-E4U714-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A187137","Oceanithermus profundus"],["NCBITaxon%3A670487","Oceanithermus profundus DSM 14977"]]},{"id":"NCBITaxon:679189","l":"Prevotella timonensis CRIS 5C-B1","na":2,"nb":1,"a":[["TED%3AAF-D1W1N1-F1-model_v4_TED01","TED highly-symmetric fold AF-D1W1N1-F1-model_v4_TED01"],["TED%3AAF-D1VYX6-F1-model_v4_TED04","TED novel fold AF-D1VYX6-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A679189","Hoylesella timonensis CRIS 5C-B1"]]},{"id":"NCBITaxon:679200","l":"Johnsonella ignava ATCC 51276","na":1,"nb":2,"a":[["TED%3AAF-G5GIZ0-F1-model_v4_TED01","TED highly-symmetric fold AF-G5GIZ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A43995","Johnsonella ignava"],["NCBITaxon%3A679200","Johnsonella ignava ATCC 51276"]]},{"id":"NCBITaxon:679201","l":"","na":1,"nb":2,"a":[["TED%3AAF-G5GM54-F1-model_v4_TED01","TED novel fold AF-G5GM54-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A135082","Centipeda infelix"],["NCBITaxon%3A679201","Centipeda infelix ATCC 43532"]]},{"id":"NCBITaxon:679318","l":"Rhodococcus sp. WMMA185","na":2,"nb":1,"a":[["TED%3AAF-A0A1D8T5W2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1D8T5W2-F1-model_v4_TED02"],["TED%3AAF-A0A1D8T4K7-F1-model_v4_TED02","TED novel fold AF-A0A1D8T4K7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A679318","Rhodococcus sp. WMMA185"]]},{"id":"NCBITaxon:679926","l":"Methanolacinia petrolearia DSM 11571","na":1,"nb":2,"a":[["TED%3AAF-E1RJC3-F1-model_v4_TED02","TED novel fold AF-E1RJC3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A54120","Methanolacinia petrolearia"],["NCBITaxon%3A679926","Methanolacinia petrolearia DSM 11571"]]},{"id":"NCBITaxon:679937","l":"Bacteroides coprosuis DSM 18011","na":1,"nb":2,"a":[["TED%3AAF-F3ZUW4-F1-model_v4_TED02","TED novel fold AF-F3ZUW4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A151276","Bacteroides coprosuis"],["NCBITaxon%3A679937","Bacteroides coprosuis DSM 18011"]]},{"id":"NCBITaxon:68170","l":"","na":2,"nb":1,"a":[["Pfam%3APF12902","Ferritin-like"],["TED%3AAF-A0A0F0GZM7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0F0GZM7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A68170","Lentzea aerocolonigenes"]]},{"id":"NCBITaxon:68215","l":"Streptomyces griseoverticillatus","na":1,"nb":2,"a":[["Pfam%3APF19398","Lantibiotic duramycin B-like"]],"b":[["NCBITaxon%3A53446","Streptomyces cinnamoneus"],["NCBITaxon%3A68215","Streptomyces griseoverticillatus"]]},{"id":"NCBITaxon:68239","l":"Streptomyces mirabilis","na":1,"nb":2,"a":[["TED%3AAF-A0A1I2Y4U7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2Y4U7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A68239","Streptomyces mirabilis"],["NCBITaxon%3A1169149","Streptomyces mirabilis 138MFCol5.1"]]},{"id":"NCBITaxon:682795","l":"","na":1,"nb":2,"a":[["TED%3AAF-G8NRD9-F1-model_v4_TED01","TED highly-symmetric fold AF-G8NRD9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A940614","Granulicella mallensis"],["NCBITaxon%3A682795","Granulicella mallensis MP5ACTX8"]]},{"id":"NCBITaxon:683260","l":"Nonomuraea maritima","na":2,"nb":1,"a":[["TED%3AAF-A0A1G8Z2R0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G8Z2R0-F1-model_v4_TED02"],["TED%3AAF-A0A1G9GNN2-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A1G9GNN2-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A683260","Nonomuraea maritima"]]},{"id":"NCBITaxon:683846","l":"Fervidicoccus fontis","na":1,"nb":2,"a":[["TED%3AAF-A0A7C1E7K4-F1-model_v4_TED03","TED novel fold AF-A0A7C1E7K4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A683846","Fervidicoccus fontis"],["NCBITaxon%3A1163730","Fervidicoccus fontis Kam940"]]},{"id":"NCBITaxon:68775","l":"Crucibulum laeve","na":2,"nb":1,"a":[["TED%3AAF-A0A5C3M7N8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5C3M7N8-F1-model_v4_TED02"],["TED%3AAF-A0A5C3LPE8-F1-model_v4_TED02","TED novel fold AF-A0A5C3LPE8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A68775","Crucibulum laeve"]]},{"id":"NCBITaxon:687861","l":"","na":1,"nb":2,"a":[["Pfam%3APF17841","BID domain of Bartonella effector protein (Bep)"]],"b":[["NCBITaxon%3A165694","Bartonella schoenbuchensis"],["NCBITaxon%3A687861","Bartonella schoenbuchensis R1"]]},{"id":"NCBITaxon:688269","l":"Pseudothermotoga thermarum DSM 5069","na":1,"nb":2,"a":[["TED%3AAF-F7YY41-F1-model_v4_TED02","TED highly-symmetric fold AF-F7YY41-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A119394","Pseudothermotoga thermarum"],["NCBITaxon%3A688269","Pseudothermotoga thermarum DSM 5069"]]},{"id":"NCBITaxon:69019","l":"Streptomyces sp. (strain N174)","na":2,"nb":1,"a":[["Pfam%3APF01374","Glycosyl hydrolase family 46"],["PROSITE%3APS60000","Chitosanases families 46 and 80 active sites signature"]],"b":[["NCBITaxon%3A69019","Streptomyces sp. N174"]]},{"id":"NCBITaxon:692036","l":"Tuwongella immobilis","na":2,"nb":1,"a":[["TED%3AAF-A0A6C2YKE9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6C2YKE9-F1-model_v4_TED01"],["TED%3AAF-A0A6C2YRP1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6C2YRP1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A692036","Tuwongella immobilis"]]},{"id":"NCBITaxon:693023","l":"Roseomonas pecuniae","na":2,"nb":1,"a":[["TED%3AAF-A0A840Y722-F1-model_v4_TED01","TED novel fold AF-A0A840Y722-F1-model_v4_TED01"],["TED%3AAF-A0A840Y8N1-F1-model_v4_TED02","TED novel fold AF-A0A840Y8N1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A693023","Muricoccus pecuniae"]]},{"id":"NCBITaxon:693216","l":"Cronobacter turicensis z3032","na":1,"nb":2,"a":[["TED%3AAF-C9Y1S3-F1-model_v4_TED01","TED novel fold AF-C9Y1S3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A413502","Cronobacter turicensis"],["NCBITaxon%3A693216","Cronobacter turicensis z3032"]]},{"id":"NCBITaxon:693661","l":"Archaeoglobus veneficus SNP6","na":1,"nb":2,"a":[["TED%3AAF-F2KRD1-F1-model_v4_TED02","TED highly-symmetric fold AF-F2KRD1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A58290","Archaeoglobus veneficus"],["NCBITaxon%3A693661","Archaeoglobus veneficus SNP6"]]},{"id":"NCBITaxon:69368","l":"Microbacterium saperdae","na":2,"nb":1,"a":[["TED%3AAF-A0A543BLE7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A543BLE7-F1-model_v4_TED01"],["TED%3AAF-A0A543BLF3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A543BLF3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A69368","Microbacterium saperdae"]]},{"id":"NCBITaxon:693988","l":"Bilophila sp. 4 1 30","na":2,"nb":1,"a":[["TED%3AAF-G1V4C5-F1-model_v4_TED01","TED highly-symmetric fold AF-G1V4C5-F1-model_v4_TED01"],["TED%3AAF-G1V6L8-F1-model_v4_TED01","TED highly-symmetric fold AF-G1V6L8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A693988","Bilophila sp. 4_1_30"]]},{"id":"NCBITaxon:694270","l":"Fusarium longipes","na":2,"nb":1,"a":[["TED%3AAF-A0A395SX93-F1-model_v4_TED01","TED novel fold AF-A0A395SX93-F1-model_v4_TED01"],["TED%3AAF-A0A395T148-F1-model_v4_TED01","TED novel fold AF-A0A395T148-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A694270","Fusarium longipes"]]},{"id":"NCBITaxon:694429","l":"","na":1,"nb":2,"a":[["TED%3AAF-G0EC50-F1-model_v4_TED01","TED highly-symmetric fold AF-G0EC50-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A54252","Pyrolobus fumarii"],["NCBITaxon%3A694429","Pyrolobus fumarii 1A"]]},{"id":"NCBITaxon:694433","l":"Saprospira grandis DSM 2844","na":1,"nb":2,"a":[["TED%3AAF-J0P380-F1-model_v4_TED01","TED highly-symmetric fold AF-J0P380-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1008","Saprospira grandis"],["NCBITaxon%3A694433","Saprospira grandis DSM 2844"]]},{"id":"NCBITaxon:694437","l":"Flammeovirga aprica JL-4","na":1,"nb":2,"a":[["TED%3AAF-A0A7X9P2C6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X9P2C6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29528","Flammeovirga aprica"],["NCBITaxon%3A694437","Flammeovirga aprica JL-4"]]},{"id":"NCBITaxon:696747","l":"Limnospira platensis (strain NIES-39 / UTEX 3086 / IAM M-135)","na":2,"nb":1,"a":[["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"]],"b":[["NCBITaxon%3A696747","Limnospira platensis NIES-39"]]},{"id":"NCBITaxon:698738","l":"Oleispira antarctica RB-8","na":1,"nb":2,"a":[["TED%3AAF-R4YLW4-F1-model_v4_TED01","TED highly-symmetric fold AF-R4YLW4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A188908","Oleispira antarctica"],["NCBITaxon%3A698738","Oleispira antarctica RB-8"]]},{"id":"NCBITaxon:698757","l":"","na":1,"nb":2,"a":[["TED%3AAF-H6QD06-F1-model_v4_TED01","TED novel fold AF-H6QD06-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A99007","Pyrobaculum oguniense"],["NCBITaxon%3A698757","Pyrobaculum oguniense TE7"]]},{"id":"NCBITaxon:698759","l":"Streptomyces ipomoeae 91-03","na":2,"nb":1,"a":[["TED%3AAF-L1KR24-F1-model_v4_TED01","TED highly-symmetric fold AF-L1KR24-F1-model_v4_TED01"],["TED%3AAF-L1L393-F1-model_v4_TED01","TED highly-symmetric fold AF-L1L393-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A698759","Streptomyces ipomoeae 91-03"]]},{"id":"NCBITaxon:703497","l":"Microthyrium microscopicum","na":2,"nb":1,"a":[["TED%3AAF-A0A6A6U421-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A6U421-F1-model_v4_TED01"],["TED%3AAF-A0A6A6U184-F1-model_v4_TED01","TED novel fold AF-A0A6A6U184-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A703497","Microthyrium microscopicum"]]},{"id":"NCBITaxon:703511","l":"Trichodelitschia bisporula","na":2,"nb":1,"a":[["TED%3AAF-A0A6G1HXI5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6G1HXI5-F1-model_v4_TED01"],["TED%3AAF-A0A6G1I3S2-F1-model_v4_TED01","TED novel fold AF-A0A6G1I3S2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A703511","Trichodelitschia bisporula"]]},{"id":"NCBITaxon:70611","l":"Legionella taurinensis","na":2,"nb":1,"a":[["TED%3AAF-A0A3A5L139-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3A5L139-F1-model_v4_TED02"],["TED%3AAF-A0A4T0Y3E4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4T0Y3E4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A70611","Legionella taurinensis"]]},{"id":"NCBITaxon:706587","l":"Desulfomonile tiedjei DSM 6799","na":1,"nb":2,"a":[["TED%3AAF-I4CB34-F1-model_v4_TED01","TED highly-symmetric fold AF-I4CB34-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2358","Desulfomonile tiedjei"],["NCBITaxon%3A706587","Desulfomonile tiedjei DSM 6799"]]},{"id":"NCBITaxon:706981","l":"Clathrospora elynae","na":2,"nb":1,"a":[["TED%3AAF-A0A6A5SIJ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A5SIJ0-F1-model_v4_TED01"],["TED%3AAF-A0A6A5SZD9-F1-model_v4_TED01","TED novel fold AF-A0A6A5SZD9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A706981","Clathrospora elynae"]]},{"id":"NCBITaxon:709813","l":"Azospirillum sp. TSA6c","na":1,"nb":2,"a":[["TED%3AAF-A0A2U1WGZ6-F1-model_v4_TED03","TED novel fold AF-A0A2U1WGZ6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A192","Azospirillum brasilense"],["NCBITaxon%3A709813","Azospirillum sp. TSA6c"]]},{"id":"NCBITaxon:710648","l":"Acinetobacter sp. (strain Tol 5)","na":2,"nb":1,"a":[["Pfam%3APF04355","Outer membrane protein assembly factor BamE domain"],["Pfam%3APF05662","Coiled stalk of trimeric autotransporter adhesin"]],"b":[["NCBITaxon%3A710648","Acinetobacter sp. Tol 5"]]},{"id":"NCBITaxon:712365","l":"Leptotrichia sp. oral taxon 417","na":2,"nb":1,"a":[["TED%3AAF-A0A851IVR6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A851IVR6-F1-model_v4_TED02"],["TED%3AAF-A0A851IRL6-F1-model_v4_TED02","TED novel fold AF-A0A851IRL6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A712365","Leptotrichia sp. oral taxon 417"]]},{"id":"NCBITaxon:712991","l":"Lachnospiraceae bacterium oral taxon 500","na":1,"nb":2,"a":[["TED%3AAF-A0A2R3N3Q0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2R3N3Q0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A712991","Lachnospiraceae bacterium oral taxon 500"],["NCBITaxon%3A575593","Lachnospiraceae oral taxon 107 str. F0167"]]},{"id":"NCBITaxon:713604","l":"Amycolatopsis mediterranei S699","na":1,"nb":2,"a":[["TED%3AAF-G0FSL6-F1-model_v4_TED01","TED novel fold AF-G0FSL6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A33910","Amycolatopsis mediterranei"],["NCBITaxon%3A713604","Amycolatopsis mediterranei S699"]]},{"id":"NCBITaxon:714962","l":"Escherichia coli O18:K1:H7 (strain IHE3034 / ExPEC)","na":2,"nb":1,"a":[["Pfam%3APF27348","EcpR N-terminal domain"],["Pfam%3APF15976","CS1-pili formation C-terminal"]],"b":[["NCBITaxon%3A714962","Escherichia coli IHE3034"]]},{"id":"NCBITaxon:716760","l":"Azospirillum sp. TSO5","na":1,"nb":2,"a":[["TED%3AAF-A0A2U1YMX5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2U1YMX5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A192","Azospirillum brasilense"],["NCBITaxon%3A716760","Azospirillum sp. TSO5"]]},{"id":"NCBITaxon:717646","l":"Baudoinia panamericana (strain UAMH 10762)","na":2,"nb":1,"a":[["TED%3AAF-M2N4I7-F1-model_v4_TED02","TED novel fold AF-M2N4I7-F1-model_v4_TED02"],["TED%3AAF-M2NGF0-F1-model_v4_TED01","TED novel fold AF-M2NGF0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A717646","Baudoinia panamericana UAMH 10762"]]},{"id":"NCBITaxon:717774","l":"Marinomonas mediterranea MMB-1","na":1,"nb":2,"a":[["TED%3AAF-F2K4E6-F1-model_v4_TED01","TED novel fold AF-F2K4E6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A119864","Marinomonas mediterranea"],["NCBITaxon%3A717774","Marinomonas mediterranea MMB-1"]]},{"id":"NCBITaxon:717836","l":"Cercospora zeae-maydis SCOH1-5","na":2,"nb":1,"a":[["TED%3AAF-A0A6A6F9L6-F1-model_v4_TED01","TED novel fold AF-A0A6A6F9L6-F1-model_v4_TED01"],["TED%3AAF-A0A6A6FG01-F1-model_v4_TED01","TED novel fold AF-A0A6A6FG01-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A717836","Cercospora zeae-maydis SCOH1-5"]]},{"id":"NCBITaxon:717959","l":"Alistipes shahii WAL 8301","na":1,"nb":2,"a":[["TED%3AAF-D4INA3-F1-model_v4_TED03","TED novel fold AF-D4INA3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A328814","Alistipes shahii"],["NCBITaxon%3A717959","Alistipes shahii WAL 8301"]]},{"id":"NCBITaxon:717962","l":"Coprococcus catus GD/7","na":2,"nb":1,"a":[["TED%3AAF-D4J8X9-F1-model_v4_TED02","TED novel fold AF-D4J8X9-F1-model_v4_TED02"],["TED%3AAF-D4J8Z5-F1-model_v4_TED01","TED novel fold AF-D4J8Z5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A717962","Pseudocoprococcus catus GD/7"]]},{"id":"NCBITaxon:717982","l":"Auricularia subglabra (strain TFB-10046 / SS5)","na":2,"nb":1,"a":[["TED%3AAF-J0D7B6-F1-model_v4_TED01","TED highly-symmetric fold AF-J0D7B6-F1-model_v4_TED01"],["TED%3AAF-J0LD77-F1-model_v4_TED04","TED novel fold AF-J0LD77-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A717982","Auricularia subglabra TFB-10046 SS5"]]},{"id":"NCBITaxon:718193","l":"Ferrimonas sediminum","na":2,"nb":1,"a":[["TED%3AAF-A0A1G8RI63-F1-model_v4_TED01","TED novel fold AF-A0A1G8RI63-F1-model_v4_TED01"],["TED%3AAF-A0A1G8ZWE4-F1-model_v4_TED02","TED novel fold AF-A0A1G8ZWE4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A718193","Ferrimonas sediminum"]]},{"id":"NCBITaxon:720554","l":"","na":1,"nb":2,"a":[["TED%3AAF-G8LY27-F1-model_v4_TED01","TED highly-symmetric fold AF-G8LY27-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A288965","Acetivibrio clariflavus"],["NCBITaxon%3A720554","Acetivibrio clariflavus DSM 19732"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":2,"a":[["TED%3AAF-A0A5C7XIK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7XIK2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A72226","Lysobacter sp."],["NCBITaxon%3A1645665","Solilutibacter silvestris"]]},{"id":"NCBITaxon:72520","l":"Microchloropsis gaditana","na":1,"nb":2,"a":[["TED%3AAF-W7TG93-F1-model_v4_TED02","TED highly-symmetric fold AF-W7TG93-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A72520","Microchloropsis gaditana"],["NCBITaxon%3A1093141","Nannochloropsis gaditana CCMP526"]]},{"id":"NCBITaxon:72586","l":"Pseudomonas sp. (strain CBS-3)","na":2,"nb":1,"a":[["Pfam%3APF13279","Thioesterase-like superfamily"],["PROSITE%3APS01328","4-hydroxybenzoyl-CoA thioesterase family active site"]],"b":[["NCBITaxon%3A72586","Pseudomonas sp. CBS3"]]},{"id":"NCBITaxon:74033","l":"Antarctobacter heliothermus","na":2,"nb":1,"a":[["TED%3AAF-A0A239BAJ3-F1-model_v4_TED01","TED novel fold AF-A0A239BAJ3-F1-model_v4_TED01"],["TED%3AAF-A0A239DKX9-F1-model_v4_TED02","TED novel fold AF-A0A239DKX9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A74033","Antarctobacter heliothermus"]]},{"id":"NCBITaxon:742152","l":"Wolfiporia cocos (strain MD-104)","na":2,"nb":1,"a":[["TED%3AAF-A0A2H3IX44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H3IX44-F1-model_v4_TED01"],["TED%3AAF-A0A2H3JM17-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H3JM17-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A742152","Wolfiporia cocos MD-104 SS10"]]},{"id":"NCBITaxon:742723","l":"","na":1,"nb":2,"a":[["TED%3AAF-F3BAA4-F1-model_v4_TED02","TED highly-symmetric fold AF-F3BAA4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1898203","Lachnospiraceae bacterium"],["NCBITaxon%3A742723","Lachnospiraceae bacterium 2_1_46FAA"]]},{"id":"NCBITaxon:742726","l":"Barnesiella intestinihominis YIT 11860","na":1,"nb":2,"a":[["TED%3AAF-K0XG25-F1-model_v4_TED01","TED highly-symmetric fold AF-K0XG25-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A487174","Barnesiella intestinihominis"],["NCBITaxon%3A742726","Barnesiella intestinihominis YIT 11860"]]},{"id":"NCBITaxon:742742","l":"Collinsella tanakaei YIT 12063","na":1,"nb":2,"a":[["TED%3AAF-G1WI80-F1-model_v4_TED02","TED highly-symmetric fold AF-G1WI80-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A626935","Collinsella tanakaei"],["NCBITaxon%3A742742","Collinsella tanakaei YIT 12063"]]},{"id":"NCBITaxon:742766","l":"Dysgonomonas gadei ATCC BAA-286","na":1,"nb":2,"a":[["TED%3AAF-F5IT17-F1-model_v4_TED02","TED novel fold AF-F5IT17-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A156974","Dysgonomonas gade"],["NCBITaxon%3A742766","Dysgonomonas gadei ATCC BAA-286"]]},{"id":"NCBITaxon:742821","l":"Sutterella wadsworthensis 3 1 45B","na":2,"nb":1,"a":[["TED%3AAF-E7H5T8-F1-model_v4_TED02","TED highly-symmetric fold AF-E7H5T8-F1-model_v4_TED02"],["TED%3AAF-E7H696-F1-model_v4_TED01","TED highly-symmetric fold AF-E7H696-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A742821","Sutterella wadsworthensis 3_1_45B"]]},{"id":"NCBITaxon:743974","l":"Moraxella bovoculi 237","na":1,"nb":2,"a":[["TED%3AAF-A0A066UIR0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A066UIR0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A386891","Moraxella bovoculi"],["NCBITaxon%3A743974","Moraxella bovoculi 237"]]},{"id":"NCBITaxon:745377","l":"Natrarchaeobaculum aegyptiacum","na":2,"nb":1,"a":[["TED%3AAF-A0A2Z2HS05-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2Z2HS05-F1-model_v4_TED03"],["TED%3AAF-A0A2Z2HUE3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2Z2HUE3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A745377","Natrarchaeobaculum aegyptiacum"]]},{"id":"NCBITaxon:74557","l":"Thraustotheca clavata","na":2,"nb":1,"a":[["TED%3AAF-A0A1V9ZWZ6-F1-model_v4_TED01","TED novel fold AF-A0A1V9ZWZ6-F1-model_v4_TED01"],["TED%3AAF-A0A1W0A288-F1-model_v4_TED01","TED novel fold AF-A0A1W0A288-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A74557","Thraustotheca clavata"]]},{"id":"NCBITaxon:747682","l":"Mycoplasmopsis alligatoris A21JP2","na":1,"nb":2,"a":[["TED%3AAF-D4XVY7-F1-model_v4_TED01","TED novel fold AF-D4XVY7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A47687","Mycoplasmopsis alligatoris"],["NCBITaxon%3A747682","Mycoplasmopsis alligatoris A21JP2"]]},{"id":"NCBITaxon:747725","l":"Mucor lusitanicus CBS 277.49","na":2,"nb":1,"a":[["TED%3AAF-A0A162R859-F1-model_v4_TED01","TED novel fold AF-A0A162R859-F1-model_v4_TED01"],["TED%3AAF-A0A168MB84-F1-model_v4_TED01","TED novel fold AF-A0A168MB84-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A747725","Mucor lusitanicus CBS 277.49"]]},{"id":"NCBITaxon:748831","l":"Brevifollis gellanilyticus","na":2,"nb":1,"a":[["TED%3AAF-A0A512MEJ3-F1-model_v4_TED01","TED novel fold AF-A0A512MEJ3-F1-model_v4_TED01"],["TED%3AAF-A0A512MF51-F1-model_v4_TED03","TED novel fold AF-A0A512MF51-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A748831","Prosthecobacter gellanilyticus"]]},{"id":"NCBITaxon:749537","l":"Escherichia coli (strain MS 115-1)","na":2,"nb":1,"a":[["Pfam%3APF18138","Bacterial HORMA domain family 1"],["Pfam%3APF20247","Domain of unknown function (DUF6602)"]],"b":[["NCBITaxon%3A749537","Escherichia coli MS 115-1"]]},{"id":"NCBITaxon:752555","l":"","na":1,"nb":2,"a":[["TED%3AAF-A0A1H9KJ19-F1-model_v4_TED01","TED novel fold AF-A0A1H9KJ19-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A752555","Segatella baroniae B14"],["NCBITaxon%3A77095","Segatella bryantii"]]},{"id":"NCBITaxon:753642","l":"Escherichia coli (strain NC101)","na":2,"nb":1,"a":[["Pfam%3APF28101","Immunity protein CdiI-like"],["Pfam%3APF21726","Family of unknown function (DUF6862)"]],"b":[["NCBITaxon%3A753642","Escherichia coli NC101"]]},{"id":"NCBITaxon:754426","l":"Tenacibaculum sp. SG-28","na":2,"nb":1,"a":[["TED%3AAF-A0A2S7TK03-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2S7TK03-F1-model_v4_TED02"],["TED%3AAF-A0A2S7TJV7-F1-model_v4_TED02","TED novel fold AF-A0A2S7TJV7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A754426","Tenacibaculum sp. SG-28"]]},{"id":"NCBITaxon:755307","l":"Salinigranum rubrum","na":2,"nb":1,"a":[["TED%3AAF-A0A2I8VHD1-F1-model_v4_TED02","TED novel fold AF-A0A2I8VHD1-F1-model_v4_TED02"],["TED%3AAF-A0A2I8VT61-F1-model_v4_TED02","TED novel fold AF-A0A2I8VT61-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A755307","Salinigranum rubrum"]]},{"id":"NCBITaxon:756272","l":"Rubinisphaera brasiliensis DSM 5305","na":1,"nb":2,"a":[["TED%3AAF-F0SH04-F1-model_v4_TED04","TED novel fold AF-F0SH04-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A119","Rubinisphaera brasiliensis"],["NCBITaxon%3A756272","Rubinisphaera brasiliensis DSM 5305"]]},{"id":"NCBITaxon:758847","l":"Leptospira santarosai serovar Shermani str. LT 821","na":1,"nb":2,"a":[["TED%3AAF-A0A097ES00-F1-model_v4_TED01","TED novel fold AF-A0A097ES00-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28183","Leptospira santarosai"],["NCBITaxon%3A758847","Leptospira santarosai serovar Shermani str. LT 821"]]},{"id":"NCBITaxon:760570","l":"","na":1,"nb":2,"a":[["TED%3AAF-F8DHG8-F1-model_v4_TED02","TED novel fold AF-F8DHG8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1318","Streptococcus parasanguinis"],["NCBITaxon%3A760570","Streptococcus parasanguinis ATCC 15912"]]},{"id":"NCBITaxon:762968","l":"Paraprevotella clara YIT 11840","na":1,"nb":2,"a":[["TED%3AAF-G5SSZ7-F1-model_v4_TED02","TED novel fold AF-G5SSZ7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A454154","Paraprevotella clara"],["NCBITaxon%3A762968","Paraprevotella clara YIT 11840"]]},{"id":"NCBITaxon:763034","l":"Bacteroides fluxus YIT 12057","na":1,"nb":2,"a":[["TED%3AAF-F3PT75-F1-model_v4_TED01","TED novel fold AF-F3PT75-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A626930","Bacteroides fluxus"],["NCBITaxon%3A763034","Bacteroides fluxus YIT 12057"]]},{"id":"NCBITaxon:764102","l":"Saccharomyces cerevisiae (strain FostersB)","na":2,"nb":1,"a":[["Pfam%3APF15272","Spindle pole body component BBP1, C-terminal"],["Pfam%3APF11544","Spindle pole body component Spc42p"]],"b":[["NCBITaxon%3A764102","Saccharomyces cerevisiae FostersB"]]},{"id":"NCBITaxon:765868","l":"Stagonospora sp. SRC1lsM3a","na":2,"nb":1,"a":[["TED%3AAF-A0A178B1W7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A178B1W7-F1-model_v4_TED03"],["TED%3AAF-A0A178B9C7-F1-model_v4_TED01","TED novel fold AF-A0A178B9C7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A765868","Phaeosphaeriaceae sp. SRC1lsM3a"]]},{"id":"NCBITaxon:765953","l":"Waddlia chondrophila 2032/99","na":1,"nb":2,"a":[["TED%3AAF-F8LCI1-F1-model_v4_TED03","TED novel fold AF-F8LCI1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A71667","Waddlia chondrophila"],["NCBITaxon%3A765953","Waddlia chondrophila 2032/99"]]},{"id":"NCBITaxon:76728","l":"Streptomyces vitaminophilus","na":1,"nb":2,"a":[["TED%3AAF-A0A0T6LRN4-F1-model_v4_TED01","TED novel fold AF-A0A0T6LRN4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A76728","Wenjunlia vitaminophila"],["NCBITaxon%3A1123322","Wenjunlia vitaminophila DSM 41686"]]},{"id":"NCBITaxon:768066","l":"Halomonas elongata DSM 2581","na":1,"nb":2,"a":[["Pfam%3APF06339","Ectoine synthase"]],"b":[["NCBITaxon%3A2746","Halomonas elongata"],["NCBITaxon%3A768066","Halomonas elongata DSM 2581"]]},{"id":"NCBITaxon:768706","l":"","na":1,"nb":2,"a":[["TED%3AAF-G7WI39-F1-model_v4_TED02","TED highly-symmetric fold AF-G7WI39-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1563","Desulfosporosinus orientis"],["NCBITaxon%3A768706","Desulfosporosinus orientis DSM 765"]]},{"id":"NCBITaxon:768710","l":"Desulfosporosinus youngiae DSM 17734","na":1,"nb":2,"a":[["TED%3AAF-H5Y0R4-F1-model_v4_TED01","TED highly-symmetric fold AF-H5Y0R4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A339862","Desulfosporosinus youngiae"],["NCBITaxon%3A768710","Desulfosporosinus youngiae DSM 17734"]]},{"id":"NCBITaxon:768727","l":"Veillonella parvula ACS-068-V-Sch12","na":1,"nb":2,"a":[["TED%3AAF-F5KZP8-F1-model_v4_TED01","TED novel fold AF-F5KZP8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29466","Veillonella parvula"],["NCBITaxon%3A768727","Veillonella parvula ACS-068-V-Sch12"]]},{"id":"NCBITaxon:771875","l":"","na":1,"nb":2,"a":[["TED%3AAF-H9UA22-F1-model_v4_TED01","TED highly-symmetric fold AF-H9UA22-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A93466","Fervidobacterium pennivorans"],["NCBITaxon%3A771875","Fervidobacterium pennivorans DSM 9078"]]},{"id":"NCBITaxon:78057","l":"Paenibacillus popilliae","na":1,"nb":2,"a":[["Pfam%3APF09131","Bacillus thuringiensis delta-Endotoxin, middle domain"]],"b":[["NCBITaxon%3A78057","Paenibacillus popilliae"],["NCBITaxon%3A1212764","Paenibacillus popilliae ATCC 14706"]]},{"id":"NCBITaxon:78229","l":"Paracidovorax anthurii","na":2,"nb":1,"a":[["TED%3AAF-A0A328ZC73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A328ZC73-F1-model_v4_TED01"],["TED%3AAF-A0A328Z0A2-F1-model_v4_TED01","TED novel fold AF-A0A328Z0A2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A78229","Paracidovorax anthurii"]]},{"id":"NCBITaxon:79269","l":"Desulfurella multipotens","na":1,"nb":2,"a":[["TED%3AAF-A0A1G6RXM9-F1-model_v4_TED02","TED novel fold AF-A0A1G6RXM9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A79269","Desulfurella multipotens"],["NCBITaxon%3A1121470","Desulfurella multipotens DSM 8415"]]},{"id":"NCBITaxon:795797","l":"Halalkalicoccus jeotgali B3","na":1,"nb":2,"a":[["TED%3AAF-D8JCM3-F1-model_v4_TED01","TED highly-symmetric fold AF-D8JCM3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A413810","Halalkalicoccus jeotgali"],["NCBITaxon%3A795797","Halalkalicoccus jeotgali B3"]]},{"id":"NCBITaxon:796944","l":"Oribacterium asaccharolyticum ACB7","na":1,"nb":2,"a":[["TED%3AAF-G9WU86-F1-model_v4_TED05","TED novel fold AF-G9WU86-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1501332","Oribacterium asaccharolyticum"],["NCBITaxon%3A796944","Oribacterium asaccharolyticum ACB7"]]},{"id":"NCBITaxon:80852","l":"Aliivibrio wodanis","na":2,"nb":1,"a":[["TED%3AAF-A0A090IC05-F1-model_v4_TED01","TED novel fold AF-A0A090IC05-F1-model_v4_TED01"],["TED%3AAF-A0A5Q4ZIL3-F1-model_v4_TED01","TED novel fold AF-A0A5Q4ZIL3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A80852","Aliivibrio wodanis"]]},{"id":"NCBITaxon:80854","l":"Moritella viscosa","na":2,"nb":1,"a":[["TED%3AAF-A0A090IBQ5-F1-model_v4_TED01","TED novel fold AF-A0A090IBQ5-F1-model_v4_TED01"],["TED%3AAF-A0A090IF54-F1-model_v4_TED01","TED novel fold AF-A0A090IF54-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A80854","Moritella viscosa"]]},{"id":"NCBITaxon:82380","l":"Microbacterium oxydans","na":1,"nb":2,"a":[["TED%3AAF-A0A4Y4GD74-F1-model_v4_TED02","TED novel fold AF-A0A4Y4GD74-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A82380","Microbacterium oxydans"],["NCBITaxon%3A1255678","Microbacterium oxydans PCA1"]]},{"id":"NCBITaxon:84022","l":"Andreesenella acetica","na":2,"nb":1,"a":[["TED%3AAF-A0A0D8IAM1-F1-model_v4_TED01","TED novel fold AF-A0A0D8IAM1-F1-model_v4_TED01"],["TED%3AAF-A0A0D8IBN9-F1-model_v4_TED02","TED novel fold AF-A0A0D8IBN9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A84022","Andreesenella acetica"]]},{"id":"NCBITaxon:84035","l":"Propionispira arboris","na":1,"nb":2,"a":[["TED%3AAF-A0A1H6Y1Q4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H6Y1Q4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A84035","Propionispira arboris"],["NCBITaxon%3A1123002","Propionispira arboris DSM 2179"]]},{"id":"NCBITaxon:850","l":"Fusobacterium mortiferum","na":1,"nb":2,"a":[["TED%3AAF-A0A414PT75-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A414PT75-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A850","Fusobacterium mortiferum"],["NCBITaxon%3A469616","Fusobacterium mortiferum ATCC 9817"]]},{"id":"NCBITaxon:85336","l":"Rothia nasimurium","na":1,"nb":2,"a":[["proteintraitsmech%3AELIFE109154_EntC","EntC-type catechol biosynthesis isochorismate synthase family"]],"b":[["NCBITaxon%3A85336","Rothia nasimurium"],["NCBITaxon%3A553203","Rothia nasimurium JCVIHMP032"]]},{"id":"NCBITaxon:856","l":"Fusobacterium varium","na":1,"nb":2,"a":[["TED%3AAF-A0A250LZB9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A250LZB9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A856","Fusobacterium varium"],["NCBITaxon%3A469618","Fusobacterium varium ATCC 27725"]]},{"id":"NCBITaxon:85701","l":"Bartonella tribocorum","na":1,"nb":2,"a":[["TED%3AAF-A0A2M6URN9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M6URN9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A85701","Bartonella tribocorum"],["NCBITaxon%3A382640","Bartonella tribocorum CIP 105476"]]},{"id":"NCBITaxon:857087","l":"","na":1,"nb":2,"a":[["TED%3AAF-F9ZY30-F1-model_v4_TED01","TED novel fold AF-F9ZY30-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A421","Methylomonas methanica"],["NCBITaxon%3A857087","Methylomonas methanica MC09"]]},{"id":"NCBITaxon:858215","l":"","na":1,"nb":2,"a":[["TED%3AAF-F6BJ69-F1-model_v4_TED03","TED highly-symmetric fold AF-F6BJ69-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A29329","Thermoanaerobacterium xylanolyticum"],["NCBITaxon%3A858215","Thermoanaerobacterium xylanolyticum LX-11"]]},{"id":"NCBITaxon:85831","l":"Bacteroides acidifaciens","na":1,"nb":2,"a":[["TED%3AAF-A0A7K3MGB4-F1-model_v4_TED01","TED novel fold AF-A0A7K3MGB4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A85831","Bacteroides acidifaciens"],["NCBITaxon%3A1235814","Bacteroides acidifaciens JCM 10556"]]},{"id":"NCBITaxon:858455","l":"Rhodomicrobium udaipurense JA643","na":1,"nb":2,"a":[["TED%3AAF-A0A037UZG0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A037UZG0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1202716","Rhodomicrobium udaipurense"],["NCBITaxon%3A858455","Rhodomicrobium udaipurense JA643"]]},{"id":"NCBITaxon:858893","l":"Exophiala dermatitidis (strain ATCC 34100 / CBS 525.76 / NIH/UT8656)","na":2,"nb":1,"a":[["TED%3AAF-H6BSC2-F1-model_v4_TED01","TED novel fold AF-H6BSC2-F1-model_v4_TED01"],["TED%3AAF-H6BSC3-F1-model_v4_TED01","TED novel fold AF-H6BSC3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A858893","Exophiala dermatitidis NIH/UT8656"]]},{"id":"NCBITaxon:859350","l":"Candidatus Nitrosopumilus salaria BD31","na":2,"nb":1,"a":[["TED%3AAF-I3CZV0-F1-model_v4_TED01","TED novel fold AF-I3CZV0-F1-model_v4_TED01"],["TED%3AAF-I3D3A9-F1-model_v4_TED02","TED novel fold AF-I3D3A9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A859350","Candidatus Nitrosopumilus salarius BD31"]]},{"id":"NCBITaxon:861450","l":"Anaeroglobus geminatus F0357","na":2,"nb":1,"a":[["TED%3AAF-G9YJV4-F1-model_v4_TED01","TED highly-symmetric fold AF-G9YJV4-F1-model_v4_TED01"],["TED%3AAF-G9YJG2-F1-model_v4_TED01","TED novel fold AF-G9YJG2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A861450","Megasphaera geminata F0357"]]},{"id":"NCBITaxon:862517","l":"Peptoniphilus duerdenii ATCC BAA-1640","na":1,"nb":2,"a":[["TED%3AAF-E0NJG4-F1-model_v4_TED01","TED highly-symmetric fold AF-E0NJG4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A507750","Peptoniphilus duerdenii"],["NCBITaxon%3A862517","Peptoniphilus duerdenii ATCC BAA-1640"]]},{"id":"NCBITaxon:86259","l":"Venturia nashicola","na":2,"nb":1,"a":[["TED%3AAF-A0A4Z1NYE5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Z1NYE5-F1-model_v4_TED01"],["TED%3AAF-A0A4Z1NNX9-F1-model_v4_TED02","TED novel fold AF-A0A4Z1NNX9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A86259","Venturia nashicola"]]},{"id":"NCBITaxon:862962","l":"","na":1,"nb":2,"a":[["Pfam%3APF04301","Pimeloyl-ACP methyl esterase BioG"]],"b":[["NCBITaxon%3A817","Bacteroides fragilis"],["NCBITaxon%3A862962","Bacteroides fragilis 638R"]]},{"id":"NCBITaxon:865937","l":"Gillisia limnaea DSM 15749","na":1,"nb":2,"a":[["Pfam%3APF27061","Bacterial gasdermin-associated protease"]],"b":[["NCBITaxon%3A195907","Gillisia limnaea"],["NCBITaxon%3A865937","Gillisia limnaea DSM 15749"]]},{"id":"NCBITaxon:865938","l":"Weeksella virosa DSM 16922","na":1,"nb":2,"a":[["TED%3AAF-F0P1F3-F1-model_v4_TED01","TED novel fold AF-F0P1F3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1014","Weeksella virosa"],["NCBITaxon%3A865938","Weeksella virosa DSM 16922"]]},{"id":"NCBITaxon:866499","l":"Cloacibacillus evryensis DSM 19522","na":1,"nb":2,"a":[["TED%3AAF-A0A010YSJ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A010YSJ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A508460","Cloacibacillus evryensis"],["NCBITaxon%3A866499","Cloacibacillus evryensis DSM 19522"]]},{"id":"NCBITaxon:866895","l":"Halobacillus halophilus DSM 2266","na":1,"nb":2,"a":[["TED%3AAF-I0JI49-F1-model_v4_TED03","TED highly-symmetric fold AF-I0JI49-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1570","Halobacillus halophilus"],["NCBITaxon%3A866895","Halobacillus halophilus DSM 2266"]]},{"id":"NCBITaxon:867902","l":"","na":1,"nb":2,"a":[["TED%3AAF-I3ZYX7-F1-model_v4_TED02","TED novel fold AF-I3ZYX7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A28251","Ornithobacterium rhinotracheale"],["NCBITaxon%3A867902","Ornithobacterium rhinotracheale DSM 15997"]]},{"id":"NCBITaxon:86804","l":"Ustilago trichophora","na":2,"nb":1,"a":[["TED%3AAF-A0A5C3DST0-F1-model_v4_TED02","TED novel fold AF-A0A5C3DST0-F1-model_v4_TED02"],["TED%3AAF-A0A5C3E4G9-F1-model_v4_TED01","TED novel fold AF-A0A5C3E4G9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A86804","Ustilago trichophora"]]},{"id":"NCBITaxon:86841","l":"Pseudomonas amygdali pv. sesami","na":1,"nb":2,"a":[["TED%3AAF-A0A3M6FLB5-F1-model_v4_TED03","TED novel fold AF-A0A3M6FLB5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A86841","Pseudomonas amygdali pv. sesami"],["NCBITaxon%3A317","Pseudomonas syringae"]]},{"id":"NCBITaxon:869210","l":"Marinithermus hydrothermalis DSM 14884","na":1,"nb":2,"a":[["TED%3AAF-F2NQ34-F1-model_v4_TED01","TED novel fold AF-F2NQ34-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A186192","Marinithermus hydrothermalis"],["NCBITaxon%3A869210","Marinithermus hydrothermalis DSM 14884"]]},{"id":"NCBITaxon:869213","l":"Saccharicrinis fermentans DSM 9555 = JCM 21142","na":1,"nb":2,"a":[["TED%3AAF-W7Y4M8-F1-model_v4_TED02","TED novel fold AF-W7Y4M8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A982","Saccharicrinis fermentans"],["NCBITaxon%3A869213","Saccharicrinis fermentans DSM 9555 = JCM 21142"]]},{"id":"NCBITaxon:870501","l":"Malaciobacter molluscorum LMG 25693","na":1,"nb":2,"a":[["TED%3AAF-A0A2G1DEC9-F1-model_v4_TED01","TED novel fold AF-A0A2G1DEC9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1032072","Malaciobacter molluscorum"],["NCBITaxon%3A870501","Malaciobacter molluscorum LMG 25693"]]},{"id":"NCBITaxon:870730","l":"Pichia angusta","na":2,"nb":1,"a":[["Pfam%3APF10791","Mitochondrial F1-F0 ATP synthase subunit F of fungi"],["Pfam%3APF05933","Fungal ATP synthase protein 8 (A6L)"]],"b":[["NCBITaxon%3A870730","Ogataea angusta"]]},{"id":"NCBITaxon:871575","l":"Ogataea parapolymorpha (strain ATCC 26012 / BCRC 20466 / JCM 22074 / NRRL Y-7560 / DL-1)","na":2,"nb":1,"a":[["IDPO%3A0000033","flexible linker"],["TED%3AAF-W1Q7V8-F1-model_v4_TED01","TED novel fold AF-W1Q7V8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A871575","Ogataea parapolymorpha DL-1"]]},{"id":"NCBITaxon:871738","l":"","na":1,"nb":2,"a":[["Pfam%3APF10518","TAT (twin-arginine translocation) pathway signal sequence"]],"b":[["NCBITaxon%3A55583","Dehalobacter restrictus"],["NCBITaxon%3A871738","Dehalobacter restrictus DSM 9455"]]},{"id":"NCBITaxon:87229","l":"Botrytis porri","na":2,"nb":1,"a":[["TED%3AAF-A0A4Z1KLQ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Z1KLQ9-F1-model_v4_TED01"],["TED%3AAF-A0A4Z1L2R4-F1-model_v4_TED03","TED novel fold AF-A0A4Z1L2R4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A87229","Botrytis porri"]]},{"id":"NCBITaxon:873533","l":"","na":1,"nb":2,"a":[["TED%3AAF-E7RTH2-F1-model_v4_TED02","TED highly-symmetric fold AF-E7RTH2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A28134","Hoylesella oralis"],["NCBITaxon%3A873533","Hoylesella oralis ATCC 33269"]]},{"id":"NCBITaxon:875328","l":"","na":1,"nb":2,"a":[["TED%3AAF-A0A1A2EHJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1A2EHJ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1789","Mycobacterium xenopi"],["NCBITaxon%3A875328","Mycolicibacter sinensis"]]},{"id":"NCBITaxon:877406","l":"Lachnospiraceae bacterium NK3A20","na":2,"nb":1,"a":[["TED%3AAF-A0A1H3YE89-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H3YE89-F1-model_v4_TED01"],["TED%3AAF-A0A1H3YMS4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H3YMS4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A877406","Lachnospiraceae bacterium NK3A20"]]},{"id":"NCBITaxon:882378","l":"","na":1,"nb":2,"a":[["Pfam%3APF01983","Guanylyl transferase CofC like"]],"b":[["NCBITaxon%3A412963","Mycetohabitans rhizoxinica"],["NCBITaxon%3A882378","Mycetohabitans rhizoxinica HKI 454"]]},{"id":"NCBITaxon:882800","l":"Methylorubrum extorquens DSM 13060","na":1,"nb":2,"a":[["TED%3AAF-H1KCQ0-F1-model_v4_TED01","TED highly-symmetric fold AF-H1KCQ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A408","Methylorubrum extorquens"],["NCBITaxon%3A882800","Methylorubrum extorquens DSM 13060"]]},{"id":"NCBITaxon:883","l":"Nitratidesulfovibrio vulgaris str. 'Miyazaki F'","na":1,"nb":2,"a":[["TED%3AAF-B8DPA3-F1-model_v4_TED01","TED novel fold AF-B8DPA3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A881","Nitratidesulfovibrio vulgaris"],["NCBITaxon%3A883","Nitratidesulfovibrio vulgaris str. 'Miyazaki F'"]]},{"id":"NCBITaxon:883067","l":"Actinotignum schaalii FB123-CNA-2","na":1,"nb":2,"a":[["TED%3AAF-S2VKD3-F1-model_v4_TED01","TED highly-symmetric fold AF-S2VKD3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A59505","Actinotignum schaalii"],["NCBITaxon%3A883067","Actinotignum schaalii FB123-CNA-2"]]},{"id":"NCBITaxon:883069","l":"Gleimia europaea ACS-120-V-Col10b","na":1,"nb":2,"a":[["TED%3AAF-S2VXV4-F1-model_v4_TED01","TED novel fold AF-S2VXV4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A66228","Gleimia europaea"],["NCBITaxon%3A883069","Gleimia europaea ACS-120-V-Col10b"]]},{"id":"NCBITaxon:884107","l":"Schleiferia thermophila","na":1,"nb":2,"a":[["TED%3AAF-A0A368ZV81-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A368ZV81-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A884107","Schleiferia thermophila"],["NCBITaxon%3A1453500","Schleiferia thermophila str. Yellowstone"]]},{"id":"NCBITaxon:885","l":"Desulfovibrio sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A6N8BWZ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8BWZ8-F1-model_v4_TED01"],["TED%3AAF-A0A2E3RAH3-F1-model_v4_TED02","TED novel fold AF-A0A2E3RAH3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A885","Desulfovibrio sp."]]},{"id":"NCBITaxon:886882","l":"Paenibacillus polymyxa (strain SC2)","na":2,"nb":1,"a":[["TED%3AAF-E3EJR1-F1-model_v4_TED01","TED highly-symmetric fold AF-E3EJR1-F1-model_v4_TED01"],["TED%3AAF-E3EKS2-F1-model_v4_TED01","TED highly-symmetric fold AF-E3EKS2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A886882","Paenibacillus polymyxa SC2"]]},{"id":"NCBITaxon:88724","l":"Natrinema versiforme","na":1,"nb":2,"a":[["TED%3AAF-A0A4V1FYY6-F1-model_v4_TED02","TED novel fold AF-A0A4V1FYY6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A88724","Natrinema versiforme"],["NCBITaxon%3A1227496","Natrinema versiforme JCM 10478"]]},{"id":"NCBITaxon:888741","l":"Kingella denitrificans ATCC 33394","na":1,"nb":2,"a":[["TED%3AAF-F0F2L2-F1-model_v4_TED01","TED novel fold AF-F0F2L2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A502","Kingella denitrificans"],["NCBITaxon%3A888741","Kingella denitrificans ATCC 33394"]]},{"id":"NCBITaxon:888743","l":"Prevotella multiformis DSM 16608","na":1,"nb":2,"a":[["TED%3AAF-F0F5W8-F1-model_v4_TED02","TED novel fold AF-F0F5W8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A282402","Prevotella multiformis"],["NCBITaxon%3A888743","Prevotella multiformis DSM 16608"]]},{"id":"NCBITaxon:888745","l":"","na":1,"nb":2,"a":[["Pfam%3APF09711","CRISPR-associated protein (Cas_Csn2)"]],"b":[["NCBITaxon%3A1311","Streptococcus agalactiae"],["NCBITaxon%3A888745","Streptococcus agalactiae ATCC 13813"]]},{"id":"NCBITaxon:890399","l":"Candidatus Magnetoglobus multicellularis str. Araruama","na":2,"nb":1,"a":[["TED%3AAF-A0A1V1NSM7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V1NSM7-F1-model_v4_TED02"],["TED%3AAF-A0A1V1P8X9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V1P8X9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A890399","Candidatus Magnetoglobus multicellularis str. Araruama"]]},{"id":"NCBITaxon:89187","l":"","na":1,"nb":2,"a":[["Pfam%3APF12806","Acetyl-CoA dehydrogenase C-terminal like"]],"b":[["NCBITaxon%3A314263","Roseovarius nubinhibens"],["NCBITaxon%3A89187","Roseovarius nubinhibens ISM"]]},{"id":"NCBITaxon:891974","l":"Plautia stali symbiont","na":2,"nb":1,"a":[["TED%3AAF-U3TSJ2-F1-model_v4_TED01","TED highly-symmetric fold AF-U3TSJ2-F1-model_v4_TED01"],["TED%3AAF-U3U2Z5-F1-model_v4_TED02","TED highly-symmetric fold AF-U3U2Z5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A891974","Plautia stali symbiont"]]},{"id":"NCBITaxon:90244","l":"Oligella ureolytica","na":1,"nb":2,"a":[["TED%3AAF-A0A378XF55-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A378XF55-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A90244","Oligella ureolytica"],["NCBITaxon%3A1122619","Oligella ureolytica DSM 18253"]]},{"id":"NCBITaxon:90426","l":"Methanothrix sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A843KAS7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843KAS7-F1-model_v4_TED01"],["TED%3AAF-A0A3N9UN54-F1-model_v4_TED01","TED novel fold AF-A0A3N9UN54-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A90426","Methanothrix sp."]]},{"id":"NCBITaxon:907348","l":"Treponema saccharophilum DSM 2985","na":1,"nb":2,"a":[["TED%3AAF-H7EGY0-F1-model_v4_TED01","TED novel fold AF-H7EGY0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A165","Treponema saccharophilum"],["NCBITaxon%3A907348","Treponema saccharophilum DSM 2985"]]},{"id":"NCBITaxon:908338","l":"Peptoniphilus harei ACS-146-V-Sch2b","na":1,"nb":2,"a":[["TED%3AAF-E4KZA4-F1-model_v4_TED02","TED novel fold AF-E4KZA4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A908338","Peptoniphilus harei ACS-146-V-Sch2b"],["NCBITaxon%3A1971214","Peptoniphilus sp."]]},{"id":"NCBITaxon:910964","l":"","na":1,"nb":2,"a":[["Pfam%3APF26324","Type III secretion system effector HopBF1 kinase domain"]],"b":[["NCBITaxon%3A41202","Ewingella americana"],["NCBITaxon%3A910964","Ewingella americana ATCC 33852"]]},{"id":"NCBITaxon:913088","l":"Escherichia coli TW11681","na":2,"nb":1,"a":[["Pfam%3APF21713","Cyclic GMP-AMP synthase, C-terminal domain"],["Pfam%3APF21654","Cyclic GMP-AMP synthase DncV-like, nucleotidyltransferase domain"]],"b":[["NCBITaxon%3A913088","Escherichia coli TW11681"]]},{"id":"NCBITaxon:91360","l":"Desulforhopalus singaporensis","na":1,"nb":2,"a":[["TED%3AAF-A0A1H0QB18-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H0QB18-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A91360","Desulforhopalus singaporensis"],["NCBITaxon%3A1121418","Desulforhopalus singaporensis DSM 12130"]]},{"id":"NCBITaxon:91604","l":"Candidatus Paracaedibacter acanthamoebae","na":2,"nb":1,"a":[["TED%3AAF-A0A077ASK7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A077ASK7-F1-model_v4_TED02"],["TED%3AAF-A0A077AYS2-F1-model_v4_TED01","TED novel fold AF-A0A077AYS2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A91604","Candidatus Odyssella acanthamoebae"]]},{"id":"NCBITaxon:92400","l":"[Mycoplasma] anseris","na":1,"nb":2,"a":[["TED%3AAF-A0A2Z4NCE3-F1-model_v4_TED01","TED novel fold AF-A0A2Z4NCE3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A92400","[Mycoplasma] anseris"],["NCBITaxon%3A1408454","Mycoplasma anseris ATCC 49234"]]},{"id":"NCBITaxon:926556","l":"","na":1,"nb":2,"a":[["TED%3AAF-L0FWC9-F1-model_v4_TED01","TED novel fold AF-L0FWC9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A390884","Echinicola vietnamensis"],["NCBITaxon%3A926556","Echinicola vietnamensis DSM 17526"]]},{"id":"NCBITaxon:926562","l":"","na":1,"nb":2,"a":[["TED%3AAF-G8R7M3-F1-model_v4_TED02","TED highly-symmetric fold AF-G8R7M3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A253245","Owenweeksia hongkongensis"],["NCBITaxon%3A926562","Owenweeksia hongkongensis DSM 17368"]]},{"id":"NCBITaxon:926566","l":"","na":1,"nb":2,"a":[["TED%3AAF-I3ZI83-F1-model_v4_TED01","TED highly-symmetric fold AF-I3ZI83-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A392734","Terriglobus roseus"],["NCBITaxon%3A926566","Terriglobus roseus DSM 18391"]]},{"id":"NCBITaxon:926571","l":"Nitrososphaera viennensis EN76","na":1,"nb":2,"a":[["TED%3AAF-A0A060HRG3-F1-model_v4_TED01","TED novel fold AF-A0A060HRG3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1034015","Nitrososphaera viennensis"],["NCBITaxon%3A926571","Nitrososphaera viennensis EN76"]]},{"id":"NCBITaxon:926690","l":"Haloplanus natans DSM 17983","na":1,"nb":2,"a":[["Pfam%3APF28161","Fusexin 1"]],"b":[["NCBITaxon%3A376171","Haloplanus natans"],["NCBITaxon%3A926690","Haloplanus natans DSM 17983"]]},{"id":"NCBITaxon:930090","l":"Bipolaris oryzae ATCC 44560","na":2,"nb":1,"a":[["TED%3AAF-W6YQ25-F1-model_v4_TED01","TED novel fold AF-W6YQ25-F1-model_v4_TED01"],["TED%3AAF-W6YT83-F1-model_v4_TED01","TED novel fold AF-W6YT83-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A930090","Bipolaris oryzae ATCC 44560"]]},{"id":"NCBITaxon:931626","l":"","na":1,"nb":2,"a":[["Pfam%3APF00766","Electron transfer flavoprotein FAD-binding domain"]],"b":[["NCBITaxon%3A33952","Acetobacterium woodii"],["NCBITaxon%3A931626","Acetobacterium woodii DSM 1030"]]},{"id":"NCBITaxon:933063","l":"Dichotomicrobium thermohalophilum","na":2,"nb":1,"a":[["TED%3AAF-A0A397Q5H3-F1-model_v4_TED01","TED novel fold AF-A0A397Q5H3-F1-model_v4_TED01"],["TED%3AAF-A0A397Q636-F1-model_v4_TED02","TED novel fold AF-A0A397Q636-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A933063","Dichotomicrobium thermohalophilum"]]},{"id":"NCBITaxon:936594","l":"Lachnoanaerobaculum sp. ICM7","na":2,"nb":1,"a":[["TED%3AAF-J5GJZ1-F1-model_v4_TED01","TED highly-symmetric fold AF-J5GJZ1-F1-model_v4_TED01"],["TED%3AAF-J4TLJ1-F1-model_v4_TED02","TED novel fold AF-J4TLJ1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A936594","Lachnoanaerobaculum sp. ICM7"]]},{"id":"NCBITaxon:941824","l":"Thermobrachium celere DSM 8682","na":1,"nb":2,"a":[["TED%3AAF-R7RR46-F1-model_v4_TED02","TED highly-symmetric fold AF-R7RR46-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A53422","Thermobrachium celere"],["NCBITaxon%3A941824","Thermobrachium celere DSM 8682"]]},{"id":"NCBITaxon:943261","l":"Komagataeibacter kakiaceti","na":1,"nb":2,"a":[["TED%3AAF-A0A840XUK5-F1-model_v4_TED01","TED novel fold AF-A0A840XUK5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A943261","Komagataeibacter kakiaceti"],["NCBITaxon%3A1234672","Komagataeibacter kakiaceti JCM 25156"]]},{"id":"NCBITaxon:945553","l":"","na":2,"nb":1,"a":[["TED%3AAF-A0A0D2NQE0-F1-model_v4_TED01","TED novel fold AF-A0A0D2NQE0-F1-model_v4_TED01"],["TED%3AAF-A0A0D2PBZ7-F1-model_v4_TED01","TED novel fold AF-A0A0D2PBZ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A945553","Hypholoma sublateritium FD-334 SS-4"]]},{"id":"NCBITaxon:945713","l":"","na":1,"nb":2,"a":[["Pfam%3APF22369","GLMA-like, second domain"]],"b":[["NCBITaxon%3A591197","Ignavibacterium album"],["NCBITaxon%3A945713","Ignavibacterium album JCM 16511"]]},{"id":"NCBITaxon:94617","l":"Fibrocapsa japonica","na":2,"nb":1,"a":[["TED%3AAF-A0A7S2V0T5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2V0T5-F1-model_v4_TED01"],["TED%3AAF-A0A7S2V6B1-F1-model_v4_TED01","TED novel fold AF-A0A7S2V6B1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A94617","Fibrocapsa japonica"]]},{"id":"NCBITaxon:94626","l":"Brucella tritici","na":2,"nb":1,"a":[["TED%3AAF-A0A7X6FRR6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X6FRR6-F1-model_v4_TED01"],["TED%3AAF-A0A7X6JC90-F1-model_v4_TED01","TED novel fold AF-A0A7X6JC90-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A94626","Brucella tritici"]]},{"id":"NCBITaxon:947919","l":"Desulfosarcina widdelii","na":2,"nb":1,"a":[["TED%3AAF-A0A5K7ZAU3-F1-model_v4_TED01","TED novel fold AF-A0A5K7ZAU3-F1-model_v4_TED01"],["TED%3AAF-A0A5K7ZAZ5-F1-model_v4_TED01","TED novel fold AF-A0A5K7ZAZ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A947919","Desulfosarcina widdelii"]]},{"id":"NCBITaxon:948311","l":"Fusarium proliferatum","na":1,"nb":2,"a":[["TED%3AAF-A0A420SS57-F1-model_v4_TED01","TED novel fold AF-A0A420SS57-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A948311","Fusarium proliferatum"],["NCBITaxon%3A1227346","Fusarium proliferatum ET1"]]},{"id":"NCBITaxon:95485","l":"Burkholderia stabilis","na":1,"nb":2,"a":[["TED%3AAF-A0A4V1PSL6-F1-model_v4_TED02","TED novel fold AF-A0A4V1PSL6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A292","Burkholderia cepacia"],["NCBITaxon%3A95485","Burkholderia stabilis"]]},{"id":"NCBITaxon:96639","l":"Mucochytrium quahogii","na":2,"nb":1,"a":[["TED%3AAF-A0A7S2SPI0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2SPI0-F1-model_v4_TED01"],["TED%3AAF-A0A7S2R8E2-F1-model_v4_TED02","TED novel fold AF-A0A7S2R8E2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A96639","Mucochytrium quahogii"]]},{"id":"NCBITaxon:97481","l":"Phocoenobacter skyensis","na":1,"nb":2,"a":[["TED%3AAF-A0A1H8AD66-F1-model_v4_TED03","TED novel fold AF-A0A1H8AD66-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A97481","Phocoenobacter skyensis"],["NCBITaxon%3A1122937","Phocoenobacter skyensis DSM 24204"]]},{"id":"NCBITaxon:980251","l":"Mariniblastus fucicola","na":2,"nb":1,"a":[["TED%3AAF-A0A5B9PAC4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B9PAC4-F1-model_v4_TED01"],["TED%3AAF-A0A5B9P6V1-F1-model_v4_TED02","TED novel fold AF-A0A5B9P6V1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A980251","Mariniblastus fucicola"]]},{"id":"NCBITaxon:981333","l":"Acinetobacter parvus DSM 16617 = CIP 108168","na":1,"nb":2,"a":[["TED%3AAF-N8Q927-F1-model_v4_TED02","TED novel fold AF-N8Q927-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A134533","Acinetobacter parvus"],["NCBITaxon%3A981333","Acinetobacter parvus DSM 16617 = CIP 108168"]]},{"id":"NCBITaxon:985895","l":"","na":2,"nb":1,"a":[["TED%3AAF-E5A7U7-F1-model_v4_TED01","TED novel fold AF-E5A7U7-F1-model_v4_TED01"],["TED%3AAF-E5A9E1-F1-model_v4_TED03","TED novel fold AF-E5A9E1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A985895","Plenodomus lingam JN3"]]},{"id":"NCBITaxon:989410","l":"Pseudovibrio sp. Ad26","na":2,"nb":1,"a":[["TED%3AAF-A0A165T205-F1-model_v4_TED02","TED novel fold AF-A0A165T205-F1-model_v4_TED02"],["TED%3AAF-A0A165VKR9-F1-model_v4_TED03","TED novel fold AF-A0A165VKR9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A989410","Pseudovibrio sp. Ad26"]]},{"id":"NCBITaxon:99675","l":"Clostridium putrefaciens","na":1,"nb":2,"a":[["TED%3AAF-A0A381J816-F1-model_v4_TED01","TED novel fold AF-A0A381J816-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A99675","Clostridium putrefaciens"],["NCBITaxon%3A1121332","Clostridium putrefaciens DSM 1291"]]},{"id":"NCBITaxon:999552","l":"Leisingera methylohalidivorans DSM 14336","na":1,"nb":2,"a":[["TED%3AAF-V9VZA3-F1-model_v4_TED02","TED novel fold AF-V9VZA3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A133924","Leisingera methylohalidivorans"],["NCBITaxon%3A999552","Leisingera methylohalidivorans DSM 14336"]]},{"id":"NCBITaxon:100","l":"Ancylobacter aquaticus","na":1,"nb":1,"a":[["TED%3AAF-A0A431PQS4-F1-model_v4_TED01","TED novel fold AF-A0A431PQS4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A100","Ancylobacter aquaticus"]]},{"id":"NCBITaxon:100035","l":"Massariosphaeria phaeospora","na":1,"nb":1,"a":[["TED%3AAF-A0A7C8I3N5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C8I3N5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A100035","Massariosphaeria phaeospora"]]},{"id":"NCBITaxon:1001240","l":"Cryobacterium roopkundense","na":1,"nb":1,"a":[["TED%3AAF-A0A099JLC4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A099JLC4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1001240","Cryobacterium roopkundense"]]},{"id":"NCBITaxon:1001590","l":"Leptospira interrogans str. 2006001854","na":1,"nb":1,"a":[["TED%3AAF-M6GW27-F1-model_v4_TED03","TED novel fold AF-M6GW27-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1001590","Leptospira interrogans str. 2006001854"]]},{"id":"NCBITaxon:1002340","l":"Leisingera sp. ANG1","na":1,"nb":1,"a":[["TED%3AAF-A0A0B4EI55-F1-model_v4_TED01","TED novel fold AF-A0A0B4EI55-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1002340","Leisingera sp. ANG1"]]},{"id":"NCBITaxon:1004304","l":"Hydrotalea sandarakina","na":1,"nb":1,"a":[["TED%3AAF-A0A2W7RGM4-F1-model_v4_TED03","TED novel fold AF-A0A2W7RGM4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1004304","Hydrotalea sandarakina"]]},{"id":"NCBITaxon:1007676","l":"Companilactobacillus ginsenosidimutans","na":1,"nb":1,"a":[["TED%3AAF-A0A0H4QHM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0H4QHM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1007676","Companilactobacillus ginsenosidimutans"]]},{"id":"NCBITaxon:1008305","l":"Fervidobacterium thailandense","na":1,"nb":1,"a":[["TED%3AAF-A0A1E3G5H1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E3G5H1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1008305","Fervidobacterium thailandense"]]},{"id":"NCBITaxon:1009714","l":"","na":1,"nb":1,"a":[["Pfam%3APF05567","PilY1 beta-propeller domain"]],"b":[["NCBITaxon%3A1009714","Pseudomonas aeruginosa PAK"]]},{"id":"NCBITaxon:101028","l":"Fusarium pseudograminearum","na":1,"nb":1,"a":[["TED%3AAF-A0A7S8DXW2-F1-model_v4_TED02","TED novel fold AF-A0A7S8DXW2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A101028","Fusarium pseudograminearum"]]},{"id":"NCBITaxon:1010611","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A521FVX5-F1-model_v4_TED02","TED novel fold AF-A0A521FVX5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1010611","Thalassovita litoralis"]]},{"id":"NCBITaxon:101383","l":"Cryomorpha ignava","na":1,"nb":1,"a":[["TED%3AAF-A0A7K3WMI9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7K3WMI9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A101383","Cryomorpha ignava"]]},{"id":"NCBITaxon:1017277","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0V8GEY0-F1-model_v4_TED01","TED novel fold AF-A0A0V8GEY0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A296995","Exiguobacterium indicum"]]},{"id":"NCBITaxon:1017319","l":"Rhodococcus sp. Eu-32","na":1,"nb":1,"a":[["TED%3AAF-A0A426QT40-F1-model_v4_TED01","TED novel fold AF-A0A426QT40-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1017319","Rhodococcus sp. Eu-32"]]},{"id":"NCBITaxon:101924","l":"Rhodosorus marinus","na":1,"nb":1,"a":[["TED%3AAF-A0A7S3ENK5-F1-model_v4_TED04","TED novel fold AF-A0A7S3ENK5-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A101924","Rhodosorus marinus"]]},{"id":"NCBITaxon:102897","l":"Parafrankia sp. EUN1f","na":1,"nb":1,"a":[["TED%3AAF-D3D2N4-F1-model_v4_TED01","TED novel fold AF-D3D2N4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A102897","Parafrankia sp. EUN1f"]]},{"id":"NCBITaxon:1029718","l":"Candidatus Arthromitus sp. SFB-mouse-Japan","na":1,"nb":1,"a":[["TED%3AAF-F9VKB6-F1-model_v4_TED01","TED novel fold AF-F9VKB6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1029718","Candidatus Arthromitus sp. SFB-mouse-Japan"]]},{"id":"NCBITaxon:1031537","l":"Bremerella cremea","na":1,"nb":1,"a":[["TED%3AAF-A0A368KQM2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A368KQM2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1031537","Bremerella cremea"]]},{"id":"NCBITaxon:1032","l":"Thiothrix sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A432UXQ4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A432UXQ4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1032","Thiothrix sp."]]},{"id":"NCBITaxon:1032505","l":"Fusobacterium sp. OBRC1","na":1,"nb":1,"a":[["TED%3AAF-X8HXN3-F1-model_v4_TED01","TED highly-symmetric fold AF-X8HXN3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1032505","Fusobacterium sp. OBRC1"]]},{"id":"NCBITaxon:1035309","l":"Ceratocystis fimbriata CBS 114723","na":1,"nb":1,"a":[["TED%3AAF-A0A2C5WW72-F1-model_v4_TED01","TED novel fold AF-A0A2C5WW72-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1035309","Ceratocystis fimbriata CBS 114723"]]},{"id":"NCBITaxon:1035707","l":"Pseudoduganella namucuonensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1I7M3T5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I7M3T5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1035707","Pseudoduganella namucuonensis"]]},{"id":"NCBITaxon:103733","l":"Saccharothrix syringae","na":1,"nb":1,"a":[["TED%3AAF-A0A5Q0GZB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Q0GZB9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A103733","Saccharothrix syringae"]]},{"id":"NCBITaxon:1037377","l":"Chryseobacterium viscerum","na":1,"nb":1,"a":[["TED%3AAF-A0A316W9L1-F1-model_v4_TED02","TED novel fold AF-A0A316W9L1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1037377","Chryseobacterium viscerum"]]},{"id":"NCBITaxon:1038014","l":"Aquimarina amphilecti","na":1,"nb":1,"a":[["TED%3AAF-A0A1H7GXR7-F1-model_v4_TED01","TED novel fold AF-A0A1H7GXR7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1038014","Aquimarina amphilecti"]]},{"id":"NCBITaxon:103808","l":"","na":1,"nb":1,"a":[["Pfam%3APF17172","Glutathione S-transferase N-terminal domain"]],"b":[["NCBITaxon%3A103808","Rhodococcus sp. AD45"]]},{"id":"NCBITaxon:103836","l":"Thermopolyspora flexuosa","na":1,"nb":1,"a":[["TED%3AAF-A0A543J0S6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A543J0S6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A103836","Thermopolyspora flexuosa"]]},{"id":"NCBITaxon:103838","l":"Nonomuraea turkmeniaca","na":1,"nb":1,"a":[["TED%3AAF-A0A5S4FRG4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5S4FRG4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A103838","Nonomuraea turkmeniaca"]]},{"id":"NCBITaxon:1038845","l":"Flavobacterium rakeshii","na":1,"nb":1,"a":[["TED%3AAF-A0A6N8H854-F1-model_v4_TED02","TED novel fold AF-A0A6N8H854-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1038845","Flavobacterium rakeshii"]]},{"id":"NCBITaxon:104027","l":"","na":1,"nb":1,"a":[["Pfam%3APF11941","Domain of unknown function (DUF3459)"]],"b":[["NCBITaxon%3A104027","Arthrobacter sp. Q36"]]},{"id":"NCBITaxon:1042","l":"Erythrobacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A6G9N8S4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6G9N8S4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1042","Erythrobacter sp."]]},{"id":"NCBITaxon:104205","l":"Streptomonospora salina","na":1,"nb":1,"a":[["TED%3AAF-A0A841ECK8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841ECK8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A104205","Streptomonospora salina"]]},{"id":"NCBITaxon:1042156","l":"","na":1,"nb":1,"a":[["TED%3AAF-F7V550-F1-model_v4_TED06","TED highly-symmetric fold AF-F7V550-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A1042156","Clostridium sp. SY8519"]]},{"id":"NCBITaxon:104268","l":"Tenacibaculum mesophilum","na":1,"nb":1,"a":[["TED%3AAF-A0A1M5HMT5-F1-model_v4_TED01","TED novel fold AF-A0A1M5HMT5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A104268","Tenacibaculum mesophilum"]]},{"id":"NCBITaxon:1043002","l":"Aureobasidium pullulans EXF-150","na":1,"nb":1,"a":[["TED%3AAF-A0A074XMY3-F1-model_v4_TED02","TED novel fold AF-A0A074XMY3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1043002","Aureobasidium pullulans EXF-150"]]},{"id":"NCBITaxon:104605","l":"Sphingomonas sp. Ant20","na":1,"nb":1,"a":[["TED%3AAF-A0A0A6F241-F1-model_v4_TED03","TED novel fold AF-A0A0A6F241-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A104605","Sphingomonas sp. Ant20"]]},{"id":"NCBITaxon:104663","l":"Chitinophaga filiformis","na":1,"nb":1,"a":[["TED%3AAF-A0A1G7RSD9-F1-model_v4_TED01","TED novel fold AF-A0A1G7RSD9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A104663","Chitinophaga filiformis"]]},{"id":"NCBITaxon:1048394","l":"Compostimonas suwonensis","na":1,"nb":1,"a":[["TED%3AAF-A0A2M9BCH6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2M9BCH6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1048394","Compostimonas suwonensis"]]},{"id":"NCBITaxon:1048396","l":"Halopenitus persicus","na":1,"nb":1,"a":[["TED%3AAF-A0A1H3M4L7-F1-model_v4_TED01","TED novel fold AF-A0A1H3M4L7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1048396","Halopenitus persicus"]]},{"id":"NCBITaxon:1048519","l":"Viridothelium virens","na":1,"nb":1,"a":[["Pfam%3APF28380","Sesquiterpene cyclase astC-like C-terminal domain"]],"b":[["NCBITaxon%3A1048519","Viridothelium virens"]]},{"id":"NCBITaxon:1048834","l":"","na":1,"nb":1,"a":[["TED%3AAF-F8ICG4-F1-model_v4_TED01","TED novel fold AF-F8ICG4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1048834","Alicyclobacillus acidocaldarius subsp. acidocaldarius Tc-4-1"]]},{"id":"NCBITaxon:1049985","l":"Leptospira santarosai str. ZUN179","na":1,"nb":1,"a":[["TED%3AAF-M6UTI1-F1-model_v4_TED01","TED highly-symmetric fold AF-M6UTI1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1049985","Leptospira santarosai str. ZUN179"]]},{"id":"NCBITaxon:1050222","l":"Paenibacillus sp. Aloe-11","na":1,"nb":1,"a":[["TED%3AAF-H6CRM8-F1-model_v4_TED02","TED highly-symmetric fold AF-H6CRM8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1050222","Paenibacillus sp. Aloe-11"]]},{"id":"NCBITaxon:1050624","l":"Synechococcus sp. A15-127","na":1,"nb":1,"a":[["TED%3AAF-A0A7G8GN66-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G8GN66-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1050624","Synechococcus sp. A15-127"]]},{"id":"NCBITaxon:1051531","l":"Saccharothrix tamanrassetensis","na":1,"nb":1,"a":[["TED%3AAF-A0A841CPC6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841CPC6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1051531","Saccharothrix tamanrassetensis"]]},{"id":"NCBITaxon:1051890","l":"Terfezia boudieri ATCC MYA-4762","na":1,"nb":1,"a":[["TED%3AAF-A0A3N4M0H0-F1-model_v4_TED01","TED novel fold AF-A0A3N4M0H0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1051890","Terfezia boudieri ATCC MYA-4762"]]},{"id":"NCBITaxon:1052260","l":"Klenkia soli","na":1,"nb":1,"a":[["TED%3AAF-A0A1H0TFA4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H0TFA4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1052260","Klenkia soli"]]},{"id":"NCBITaxon:1053167","l":"Bacillus cereus BAG1O-1","na":1,"nb":1,"a":[["TED%3AAF-R8HSP0-F1-model_v4_TED01","TED highly-symmetric fold AF-R8HSP0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1053167","Bacillus cereus BAG1O-1"]]},{"id":"NCBITaxon:1053222","l":"Bacillus cereus MSX-D12","na":1,"nb":1,"a":[["TED%3AAF-J8G3X2-F1-model_v4_TED01","TED highly-symmetric fold AF-J8G3X2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1053222","Bacillus cereus MSX-D12"]]},{"id":"NCBITaxon:1053225","l":"","na":1,"nb":1,"a":[["Pfam%3APF13175","AAA ATPase domain"]],"b":[["NCBITaxon%3A1053225","Bacillus cereus VD045"]]},{"id":"NCBITaxon:1054033","l":"Arcobacter venerupis","na":1,"nb":1,"a":[["TED%3AAF-A0A443TV84-F1-model_v4_TED01","TED novel fold AF-A0A443TV84-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1054033","Arcobacter venerupis"]]},{"id":"NCBITaxon:1054202","l":"Rhodobacter viridis","na":1,"nb":1,"a":[["TED%3AAF-A0A318TZ12-F1-model_v4_TED01","TED novel fold AF-A0A318TZ12-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1054202","Rhodobacter viridis"]]},{"id":"NCBITaxon:1054217","l":"Thermoplasmatales archaeon BRNA1","na":1,"nb":1,"a":[["TED%3AAF-M4YJR5-F1-model_v4_TED01","TED highly-symmetric fold AF-M4YJR5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1054217","Thermoplasmatales archaeon BRNA1"]]},{"id":"NCBITaxon:1054996","l":"Roseovarius marisflavi","na":1,"nb":1,"a":[["TED%3AAF-A0A1M7BRV4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M7BRV4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1054996","Roseovarius marisflavi"]]},{"id":"NCBITaxon:1055723","l":"Muricauda antarctica","na":1,"nb":1,"a":[["TED%3AAF-A0A1M6XG01-F1-model_v4_TED01","TED novel fold AF-A0A1M6XG01-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1005926","Flagellimonas taeanensis"]]},{"id":"NCBITaxon:1056511","l":"Photobacterium marinum","na":1,"nb":1,"a":[["TED%3AAF-L8JAE3-F1-model_v4_TED01","TED novel fold AF-L8JAE3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1056511","Photobacterium marinum"]]},{"id":"NCBITaxon:105696","l":"Epicoccum nigrum","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y2LQ80-F1-model_v4_TED02","TED novel fold AF-A0A1Y2LQ80-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A105696","Epicoccum nigrum"]]},{"id":"NCBITaxon:1058","l":"Thiocapsa roseopersicina","na":1,"nb":1,"a":[["Pfam%3APF27123","Carotenoid hydratase CrtC"]],"b":[["NCBITaxon%3A1058","Thiocapsa roseopersicina"]]},{"id":"NCBITaxon:106370","l":"Frankia casuarinae","na":1,"nb":1,"a":[["Pfam%3APF14403","Circularly permuted ATP-grasp type 2"]],"b":[["NCBITaxon%3A106370","Frankia casuarinae"]]},{"id":"NCBITaxon:1069642","l":"Bdellovibrio bacteriovorus str. Tiberius","na":1,"nb":1,"a":[["TED%3AAF-K7ZFZ4-F1-model_v4_TED02","TED highly-symmetric fold AF-K7ZFZ4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1069642","Bdellovibrio bacteriovorus str. Tiberius"]]},{"id":"NCBITaxon:1069985","l":"Pedobacter kyungheensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0C1FTG1-F1-model_v4_TED01","TED novel fold AF-A0A0C1FTG1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1069985","Pedobacter kyungheensis"]]},{"id":"NCBITaxon:1071072","l":"Bacillus sp. NSP2.1","na":1,"nb":1,"a":[["TED%3AAF-A0A6I7FTV0-F1-model_v4_TED01","TED novel fold AF-A0A6I7FTV0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1071072","Bacillus sp. NSP2.1"]]},{"id":"NCBITaxon:1071078","l":"Bacillus sp. NSP9.1","na":1,"nb":1,"a":[["TED%3AAF-A0A6I7F721-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I7F721-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1071078","Bacillus sp. NSP9.1"]]},{"id":"NCBITaxon:1071381","l":"","na":1,"nb":1,"a":[["TED%3AAF-G8C093-F1-model_v4_TED01","TED novel fold AF-G8C093-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1071381","Tetrapisispora phaffii CBS 4417"]]},{"id":"NCBITaxon:1075091","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7U9C9C0-F1-model_v4_TED01","TED novel fold AF-A0A7U9C9C0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1075091","Clostridium sporogenes PA 3679"]]},{"id":"NCBITaxon:1076124","l":"Phytohabitans flavus","na":1,"nb":1,"a":[["TED%3AAF-A0A6F8Y916-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A6F8Y916-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1076124","Phytohabitans flavus"]]},{"id":"NCBITaxon:1076397","l":"Streptomyces sp. CAI 127","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y6LSI4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y6LSI4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1076397","Streptomyces sp. CAI 127"]]},{"id":"NCBITaxon:1076937","l":"Fontimonas thermophila","na":1,"nb":1,"a":[["TED%3AAF-A0A1I2KE35-F1-model_v4_TED01","TED novel fold AF-A0A1I2KE35-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1076937","Fontimonas thermophila"]]},{"id":"NCBITaxon:1077255","l":"Agitococcus lubricus","na":1,"nb":1,"a":[["TED%3AAF-A0A2T5IPV5-F1-model_v4_TED01","TED novel fold AF-A0A2T5IPV5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1077255","Agitococcus lubricus"]]},{"id":"NCBITaxon:1078016","l":"Rhodococcus erythropolis XP","na":1,"nb":1,"a":[["Pfam%3APF08028","Acyl-CoA dehydrogenase, C-terminal domain"]],"b":[["NCBITaxon%3A1078016","Rhodococcus erythropolis XP"]]},{"id":"NCBITaxon:1078050","l":"Seleniivibrio woodruffii","na":1,"nb":1,"a":[["TED%3AAF-A0A4R1KEH0-F1-model_v4_TED02","TED novel fold AF-A0A4R1KEH0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1078050","Seleniivibrio woodruffii"]]},{"id":"NCBITaxon:1078087","l":"Parabacteroides sp. HGS0025","na":1,"nb":1,"a":[["TED%3AAF-A0A0F5J503-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F5J503-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1078087","Parabacteroides sp. HGS0025"]]},{"id":"NCBITaxon:1080225","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2T0MH98-F1-model_v4_TED02","TED novel fold AF-A0A2T0MH98-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1080225","Flagellimonas meridianipacifica"]]},{"id":"NCBITaxon:1081091","l":"Amycolatopsis balhimycina DSM 5908","na":1,"nb":1,"a":[["TED%3AAF-A0A428WRS4-F1-model_v4_TED02","TED novel fold AF-A0A428WRS4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1081091","Amycolatopsis balhimycina DSM 5908"]]},{"id":"NCBITaxon:1081671","l":"Enterospora canceri","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y1S5B2-F1-model_v4_TED01","TED novel fold AF-A0A1Y1S5B2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1081671","Enterospora canceri"]]},{"id":"NCBITaxon:1081904","l":"","na":1,"nb":1,"a":[["TED%3AAF-U2MVK7-F1-model_v4_TED02","TED novel fold AF-U2MVK7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1081904","Hoylesella pleuritidis F0068"]]},{"id":"NCBITaxon:1085538","l":"Leptospira interrogans serovar Bataviae str. HAI135","na":1,"nb":1,"a":[["TED%3AAF-M6TC60-F1-model_v4_TED05","TED novel fold AF-M6TC60-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1085538","Leptospira interrogans serovar Bataviae str. HAI135"]]},{"id":"NCBITaxon:1086011","l":"","na":1,"nb":1,"a":[["Pfam%3APF11999","Ice-binding-like"]],"b":[["NCBITaxon%3A1086011","Flavobacterium frigoris PS1"]]},{"id":"NCBITaxon:1093900","l":"Thyridium curvatum","na":1,"nb":1,"a":[["TED%3AAF-A0A507BNS0-F1-model_v4_TED02","TED novel fold AF-A0A507BNS0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1093900","Thyridium curvatum"]]},{"id":"NCBITaxon:1095","l":"Chlorobium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A533TQV7-F1-model_v4_TED01","TED novel fold AF-A0A533TQV7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1095","Chlorobium sp."]]},{"id":"NCBITaxon:1095465","l":"Bondarzewia mesenterica","na":1,"nb":1,"a":[["TED%3AAF-A0A4S4LKR0-F1-model_v4_TED01","TED novel fold AF-A0A4S4LKR0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1095465","Bondarzewia mesenterica"]]},{"id":"NCBITaxon:1096246","l":"Hungatella effluvii","na":1,"nb":1,"a":[["TED%3AAF-A0A2V3YBX4-F1-model_v4_TED02","TED novel fold AF-A0A2V3YBX4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1096246","Hungatella effluvii"]]},{"id":"NCBITaxon:1096341","l":"Fonticella tunisiensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4V3ETC5-F1-model_v4_TED01","TED novel fold AF-A0A4V3ETC5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1096341","Fonticella tunisiensis"]]},{"id":"NCBITaxon:1100824","l":"Streptomyces sp. SceaMP-e96","na":1,"nb":1,"a":[["TED%3AAF-A0A1C6PTM6-F1-model_v4_TED01","TED novel fold AF-A0A1C6PTM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1100824","Streptomyces sp. SceaMP-e96"]]},{"id":"NCBITaxon:1107881","l":"Sinorhizobium meliloti CCNWSX0020","na":1,"nb":1,"a":[["TED%3AAF-H0FZ04-F1-model_v4_TED02","TED highly-symmetric fold AF-H0FZ04-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1107881","Sinorhizobium meliloti CCNWSX0020"]]},{"id":"NCBITaxon:1108595","l":"Chromobacterium vaccinii","na":1,"nb":1,"a":[["TED%3AAF-A0A2L2B8V3-F1-model_v4_TED02","TED novel fold AF-A0A2L2B8V3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1108595","Chromobacterium vaccinii"]]},{"id":"NCBITaxon:1110502","l":"Tistrella mobilis KA081020-065","na":1,"nb":1,"a":[["TED%3AAF-I3TTD1-F1-model_v4_TED03","TED novel fold AF-I3TTD1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1110502","Tistrella mobilis KA081020-065"]]},{"id":"NCBITaxon:1111120","l":"","na":1,"nb":1,"a":[["Pfam%3APF21918","CRISPR-associated endonuclease Cpf1 REC2 domain"]],"b":[["NCBITaxon%3A1111120","Acidaminococcus sp. BV3L6"]]},{"id":"NCBITaxon:1111454","l":"","na":1,"nb":1,"a":[["TED%3AAF-U7UHK7-F1-model_v4_TED01","TED novel fold AF-U7UHK7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1111454","Megasphaera vaginalis (ex Srinivasan et al. 2021)"]]},{"id":"NCBITaxon:1113587","l":"Enterococcus sp. NBRC 3427","na":1,"nb":1,"a":[["TED%3AAF-A0A4Y3JKX5-F1-model_v4_TED01","TED novel fold AF-A0A4Y3JKX5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1113587","Enterococcus sp. NBRC 3427"]]},{"id":"NCBITaxon:1113929","l":"Arenibacter sp. NBRC 103722","na":1,"nb":1,"a":[["TED%3AAF-A0A2I9DRB6-F1-model_v4_TED03","TED novel fold AF-A0A2I9DRB6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1113929","Arenibacter sp. NBRC 103722"]]},{"id":"NCBITaxon:1114970","l":"","na":1,"nb":1,"a":[["Pfam%3APF03869","Arc-like DNA binding domain"]],"b":[["NCBITaxon%3A1114970","Pseudomonas ogarae"]]},{"id":"NCBITaxon:111770","l":"Thiothrix fructosivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A8B0SKG2-F1-model_v4_TED02","TED novel fold AF-A0A8B0SKG2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A111770","Thiothrix fructosivorans"]]},{"id":"NCBITaxon:1117987","l":"Paenibacillus sp. 598K","na":1,"nb":1,"a":[["TED%3AAF-A0A401HXD4-F1-model_v4_TED02","TED novel fold AF-A0A401HXD4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1117987","Paenibacillus sp. 598K"]]},{"id":"NCBITaxon:1118154","l":"Brevibacillus laterosporus GI-9","na":1,"nb":1,"a":[["TED%3AAF-H0U9B3-F1-model_v4_TED02","TED highly-symmetric fold AF-H0U9B3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1118154","Brevibacillus laterosporus GI-9"]]},{"id":"NCBITaxon:1118202","l":"Cruoricaptor ignavus","na":1,"nb":1,"a":[["TED%3AAF-A0A1M6G8N4-F1-model_v4_TED01","TED novel fold AF-A0A1M6G8N4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1118202","Cruoricaptor ignavus"]]},{"id":"NCBITaxon:1119533","l":"Marinobacter sp. P4B1","na":1,"nb":1,"a":[["TED%3AAF-A0A0T6W6C4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0T6W6C4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1119533","Marinobacter sp. P4B1"]]},{"id":"NCBITaxon:1120658","l":"Aquamicrobium sp. LC103","na":1,"nb":1,"a":[["TED%3AAF-A0A4U6CBC2-F1-model_v4_TED01","TED novel fold AF-A0A4U6CBC2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1120658","Aquamicrobium sp. LC103"]]},{"id":"NCBITaxon:1123867","l":"SAR86 cluster bacterium SAR86B","na":1,"nb":1,"a":[["TED%3AAF-J5KHP8-F1-model_v4_TED02","TED novel fold AF-J5KHP8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1123867","SAR86 cluster bacterium SAR86B"]]},{"id":"NCBITaxon:112413","l":"Amycolatopsis rubida","na":1,"nb":1,"a":[["TED%3AAF-A0A1I5EMX3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5EMX3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A112413","Amycolatopsis rubida"]]},{"id":"NCBITaxon:1124188","l":"Flavobacterium fontis","na":1,"nb":1,"a":[["TED%3AAF-A0A1M4WE81-F1-model_v4_TED01","TED novel fold AF-A0A1M4WE81-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1124188","Flavobacterium fontis"]]},{"id":"NCBITaxon:1124743","l":"Kribbella soli","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q7WU76-F1-model_v4_TED01","TED novel fold AF-A0A4Q7WU76-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1124743","Kribbella soli"]]},{"id":"NCBITaxon:1125712","l":"Olsenella profusa F0195","na":1,"nb":1,"a":[["TED%3AAF-U2TWC0-F1-model_v4_TED02","TED novel fold AF-U2TWC0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1125712","Olsenella profusa F0195"]]},{"id":"NCBITaxon:1125723","l":"Porphyromonas sp. oral taxon 279 str. F0450","na":1,"nb":1,"a":[["TED%3AAF-J5VS35-F1-model_v4_TED02","TED novel fold AF-J5VS35-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1125723","Porphyromonas sp. oral taxon 279 str. F0450"]]},{"id":"NCBITaxon:1125876","l":"Halpernia frigidisoli","na":1,"nb":1,"a":[["TED%3AAF-A0A1I3H4T1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I3H4T1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1125876","Halpernia frigidisoli"]]},{"id":"NCBITaxon:1127134","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_SalSyn","Metallophore-associated bifunctional salicylate synthase family"]],"b":[["NCBITaxon%3A1127134","Nocardia cyriacigeorgica GUH-2"]]},{"id":"NCBITaxon:1127692","l":"Capnocytophaga sp. oral taxon 332 str. F0381","na":1,"nb":1,"a":[["TED%3AAF-L1P1Z3-F1-model_v4_TED01","TED highly-symmetric fold AF-L1P1Z3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1127692","Capnocytophaga sp. oral taxon 332 str. F0381"]]},{"id":"NCBITaxon:1128331","l":"Sinorhizobium fredii CCBAU 45436","na":1,"nb":1,"a":[["TED%3AAF-A0A2U8G1E2-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A2U8G1E2-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1128331","Sinorhizobium fredii CCBAU 45436"]]},{"id":"NCBITaxon:1128664","l":"Amycolatopsis cihanbeyliensis","na":1,"nb":1,"a":[["TED%3AAF-A0A542DPL2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A542DPL2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1128664","Amycolatopsis cihanbeyliensis"]]},{"id":"NCBITaxon:1128677","l":"Saccharomonospora amisosensis","na":1,"nb":1,"a":[["TED%3AAF-A0A7X5ULP8-F1-model_v4_TED04","TED novel fold AF-A0A7X5ULP8-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1128677","Saccharomonospora amisosensis"]]},{"id":"NCBITaxon:1128680","l":"Streptomyces coryli","na":1,"nb":1,"a":[["TED%3AAF-A0A6G4UEJ6-F1-model_v4_TED01","TED novel fold AF-A0A6G4UEJ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1128680","Streptomyces coryli"]]},{"id":"NCBITaxon:113355","l":"Geminocystis herdmanii PCC 6308","na":1,"nb":1,"a":[["Pfam%3APF18921","Cyanophycin synthase-like N-terminal domain"]],"b":[["NCBITaxon%3A113355","Geminocystis herdmanii PCC 6308"]]},{"id":"NCBITaxon:1133849","l":"Nocardia brasiliensis ATCC 700358","na":1,"nb":1,"a":[["TED%3AAF-K0ES07-F1-model_v4_TED01","TED novel fold AF-K0ES07-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1133849","Nocardia brasiliensis ATCC 700358"]]},{"id":"NCBITaxon:1134406","l":"Ornatilinea apprima","na":1,"nb":1,"a":[["TED%3AAF-A0A0P6XBK5-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A0P6XBK5-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1134406","Ornatilinea apprima"]]},{"id":"NCBITaxon:1134802","l":"Enterococcus faecium TX1337RF","na":1,"nb":1,"a":[["TED%3AAF-J8W7A1-F1-model_v4_TED01","TED highly-symmetric fold AF-J8W7A1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1134802","Enterococcus faecium TX1337RF"]]},{"id":"NCBITaxon:113574","l":"Hyphomicrobium sp. GJ21","na":1,"nb":1,"a":[["TED%3AAF-A0A218PUP1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A218PUP1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A113574","Hyphomicrobium sp. GJ21"]]},{"id":"NCBITaxon:1135998","l":"uncultured Craurococcus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A6J4HXK8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6J4HXK8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1135998","uncultured Craurococcus sp."]]},{"id":"NCBITaxon:1136231","l":"","na":1,"nb":1,"a":[["TED%3AAF-H8X3X7-F1-model_v4_TED02","TED novel fold AF-H8X3X7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1136231","Lodderomyces orthopsilosis Co 90-125"]]},{"id":"NCBITaxon:1137095","l":"Scytonema sp. HK-05","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z4IXU0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Z4IXU0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1137095","Scytonema sp. HK-05"]]},{"id":"NCBITaxon:1138189","l":"Rhizobium bangladeshense","na":1,"nb":1,"a":[["TED%3AAF-A0A8A3LGY7-F1-model_v4_TED01","TED novel fold AF-A0A8A3LGY7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1138189","Rhizobium bangladeshense"]]},{"id":"NCBITaxon:1138383","l":"Mycobacterium paraintracellulare","na":1,"nb":1,"a":[["TED%3AAF-A0A7I7TSN1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7I7TSN1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1138383","Mycobacterium paraintracellulare"]]},{"id":"NCBITaxon:1141878","l":"Deinococcus metalli","na":1,"nb":1,"a":[["TED%3AAF-A0A7W8KJA7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W8KJA7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1141878","Deinococcus metalli"]]},{"id":"NCBITaxon:1141890","l":"Sphingomonas guangdongensis","na":1,"nb":1,"a":[["TED%3AAF-A0A285R2C6-F1-model_v4_TED02","TED novel fold AF-A0A285R2C6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1141890","Sphingomonas guangdongensis"]]},{"id":"NCBITaxon:1144311","l":"Brevibacillus sp. CF112","na":1,"nb":1,"a":[["TED%3AAF-J2H7A9-F1-model_v4_TED02","TED highly-symmetric fold AF-J2H7A9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1144311","Brevibacillus sp. CF112"]]},{"id":"NCBITaxon:1144312","l":"Rhizobium sp. CF122","na":1,"nb":1,"a":[["TED%3AAF-J2IX71-F1-model_v4_TED01","TED novel fold AF-J2IX71-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1144312","Rhizobium sp. CF122"]]},{"id":"NCBITaxon:1144321","l":"Pseudomonas sp. GM102","na":1,"nb":1,"a":[["TED%3AAF-J3EAD0-F1-model_v4_TED02","TED novel fold AF-J3EAD0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1144321","Pseudomonas sp. GM102"]]},{"id":"NCBITaxon:1144338","l":"Pseudomonas sp. GM79","na":1,"nb":1,"a":[["TED%3AAF-J2WCT1-F1-model_v4_TED02","TED highly-symmetric fold AF-J2WCT1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1144338","Pseudomonas sp. GM79"]]},{"id":"NCBITaxon:1144618","l":"Allonocardiopsis opalescens","na":1,"nb":1,"a":[["TED%3AAF-A0A2T0QE02-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T0QE02-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1144618","Allonocardiopsis opalescens"]]},{"id":"NCBITaxon:1144672","l":"Acinetobacter sp. CIP 56.2","na":1,"nb":1,"a":[["TED%3AAF-N8WE79-F1-model_v4_TED01","TED novel fold AF-N8WE79-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A472","Acinetobacter sp."]]},{"id":"NCBITaxon:114527","l":"Mogibacterium diversum","na":1,"nb":1,"a":[["TED%3AAF-A0A2S0L5I6-F1-model_v4_TED02","TED novel fold AF-A0A2S0L5I6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A114527","Mogibacterium diversum"]]},{"id":"NCBITaxon:114615","l":"Bradyrhizobium sp. ORS 278","na":1,"nb":1,"a":[["Pfam%3APF10073","GapR-like, DNA-binding domain"]],"b":[["NCBITaxon%3A114615","Bradyrhizobium sp. ORS 278"]]},{"id":"NCBITaxon:114619","l":"Rickettsia sp. IRS3","na":1,"nb":1,"a":[["TED%3AAF-Q9LAF1-F1-model_v4_TED02","TED highly-symmetric fold AF-Q9LAF1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A114619","Rickettsia sp. IRS3"]]},{"id":"NCBITaxon:114630","l":"","na":1,"nb":1,"a":[["PROSITE%3APS00093","N-4 cytosine-specific DNA methylases signature"]],"b":[["NCBITaxon%3A114630","Bacillus sp. NEB-606"]]},{"id":"NCBITaxon:114742","l":"Pythium insidiosum","na":1,"nb":1,"a":[["TED%3AAF-A0A2D4C934-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D4C934-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A114742","Pythium insidiosum"]]},{"id":"NCBITaxon:1150368","l":"Sinomicrobium oceani","na":1,"nb":1,"a":[["TED%3AAF-A0A1K1M5D1-F1-model_v4_TED01","TED novel fold AF-A0A1K1M5D1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1150368","Sinomicrobium oceani"]]},{"id":"NCBITaxon:1150389","l":"Flavobacteriaceae bacterium UJ101","na":1,"nb":1,"a":[["TED%3AAF-A0A1J0LPF8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1J0LPF8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1150389","Flavobacteriaceae bacterium UJ101"]]},{"id":"NCBITaxon:1151187","l":"","na":1,"nb":1,"a":[["Pfam%3APF26305","cGAS/DncV-like nucleotidyltransferase C-terminal helical domain"]],"b":[["NCBITaxon%3A1151187","Enterococcus faecalis EnGen0062"]]},{"id":"NCBITaxon:1151252","l":"","na":1,"nb":1,"a":[["Pfam%3APF12641","Flavodoxin domain"]],"b":[["NCBITaxon%3A1151252","Clostridioides difficile CD3"]]},{"id":"NCBITaxon:1151292","l":"Clostridioides difficile CD160","na":1,"nb":1,"a":[["TED%3AAF-T3DT05-F1-model_v4_TED01","TED highly-symmetric fold AF-T3DT05-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1151292","Clostridioides difficile CD160"]]},{"id":"NCBITaxon:1156417","l":"Caloranaerobacter azorensis H53214","na":1,"nb":1,"a":[["TED%3AAF-A0A096CTK5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A096CTK5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1156417","Caloranaerobacter azorensis H53214"]]},{"id":"NCBITaxon:115808","l":"Bradyrhizobium sp. ORS 285","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y6KEH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y6KEH3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A115808","Bradyrhizobium sp. ORS 285"]]},{"id":"NCBITaxon:1158606","l":"Enterococcus asini ATCC 700915","na":1,"nb":1,"a":[["TED%3AAF-R2PXZ3-F1-model_v4_TED01","TED novel fold AF-R2PXZ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1158606","Enterococcus asini ATCC 700915"]]},{"id":"NCBITaxon:1159017","l":"Pseudidiomarina indica","na":1,"nb":1,"a":[["TED%3AAF-A0A1G6BAB6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G6BAB6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1159017","Pseudidiomarina indica"]]},{"id":"NCBITaxon:1159327","l":"Pontimonas salivibrio","na":1,"nb":1,"a":[["TED%3AAF-A0A2L2BSE8-F1-model_v4_TED02","TED novel fold AF-A0A2L2BSE8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1159327","Pontimonas salivibrio"]]},{"id":"NCBITaxon:116092","l":"Pseudoalteromonas sp. A25","na":1,"nb":1,"a":[["TED%3AAF-A0A5H2Y3J0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5H2Y3J0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A116092","Pseudoalteromonas sp. A25"]]},{"id":"NCBITaxon:1162706","l":"uncultured Solirubrobacteraceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A6J4R7V0-F1-model_v4_TED01","TED novel fold AF-A0A6J4R7V0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1162706","uncultured Solirubrobacteraceae bacterium"]]},{"id":"NCBITaxon:1162967","l":"Diaminobutyricimonas aerilata","na":1,"nb":1,"a":[["TED%3AAF-A0A2M9CH35-F1-model_v4_TED01","TED novel fold AF-A0A2M9CH35-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1162967","Diaminobutyricimonas aerilata"]]},{"id":"NCBITaxon:1163745","l":"Helicobacter cetorum MIT 99-5656","na":1,"nb":1,"a":[["TED%3AAF-I0EUT8-F1-model_v4_TED01","TED novel fold AF-I0EUT8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1163745","Helicobacter cetorum MIT 99-5656"]]},{"id":"NCBITaxon:1164594","l":"Massilia yuzhufengensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1I1LD95-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I1LD95-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1164594","Massilia yuzhufengensis"]]},{"id":"NCBITaxon:1166078","l":"Aureimonas phyllosphaerae","na":1,"nb":1,"a":[["TED%3AAF-A0A7W6FW33-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W6FW33-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1166078","Aureimonas phyllosphaerae"]]},{"id":"NCBITaxon:1168","l":"","na":1,"nb":1,"a":[["Pfam%3APF01383","CpcD/allophycocyanin linker domain"]],"b":[["NCBITaxon%3A1168","Nostoc sp. PCC 7119"]]},{"id":"NCBITaxon:1168221","l":"","na":1,"nb":1,"a":[["TED%3AAF-R7YM74-F1-model_v4_TED01","TED novel fold AF-R7YM74-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1168221","Coniosporium apollinis CBS 100218"]]},{"id":"NCBITaxon:1168729","l":"Nocardioides zhouii","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q2T3K7-F1-model_v4_TED02","TED novel fold AF-A0A4Q2T3K7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1168729","Nocardioides zhouii"]]},{"id":"NCBITaxon:1172614","l":"Paenibacillus hemerocallicola","na":1,"nb":1,"a":[["TED%3AAF-A0A5C4TIE0-F1-model_v4_TED01","TED novel fold AF-A0A5C4TIE0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1172614","Paenibacillus hemerocallicola"]]},{"id":"NCBITaxon:1173064","l":"Anaplasma phagocytophilum str. JM","na":1,"nb":1,"a":[["TED%3AAF-S5Q3Y9-F1-model_v4_TED01","TED novel fold AF-S5Q3Y9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1173064","Anaplasma phagocytophilum str. JM"]]},{"id":"NCBITaxon:1173487","l":"Halorubrum sp. AJ67","na":1,"nb":1,"a":[["TED%3AAF-V6DTK2-F1-model_v4_TED02","TED highly-symmetric fold AF-V6DTK2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1173487","Halorubrum sp. AJ67"]]},{"id":"NCBITaxon:1173584","l":"Aliiroseovarius sediminilitoris","na":1,"nb":1,"a":[["TED%3AAF-A0A1I0PD53-F1-model_v4_TED03","TED novel fold AF-A0A1I0PD53-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1173584","Aliiroseovarius sediminilitoris"]]},{"id":"NCBITaxon:1173701","l":"Colletotrichum sublineola","na":1,"nb":1,"a":[["TED%3AAF-A0A066XA05-F1-model_v4_TED03","TED novel fold AF-A0A066XA05-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1173701","Colletotrichum sublineola"]]},{"id":"NCBITaxon:1173995","l":"Parvularcula dongshanensis","na":1,"nb":1,"a":[["TED%3AAF-A0A840I3S3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A840I3S3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1173995","Parvularcula dongshanensis"]]},{"id":"NCBITaxon:1174501","l":"Paenibacillus typhae","na":1,"nb":1,"a":[["TED%3AAF-A0A1G8GPR0-F1-model_v4_TED02","TED novel fold AF-A0A1G8GPR0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1174501","Paenibacillus typhae"]]},{"id":"NCBITaxon:1176176","l":"Methylobacterium haplocladii","na":1,"nb":1,"a":[["TED%3AAF-A0A512INB8-F1-model_v4_TED02","TED novel fold AF-A0A512INB8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1176176","Methylobacterium haplocladii"]]},{"id":"NCBITaxon:1176243","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2T0V4V7-F1-model_v4_TED03","TED novel fold AF-A0A2T0V4V7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1176243","Vreelandella songnenensis"]]},{"id":"NCBITaxon:1176533","l":"Luteimonas granuli","na":1,"nb":1,"a":[["TED%3AAF-A0A518N6X9-F1-model_v4_TED02","TED novel fold AF-A0A518N6X9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1176533","Luteimonas granuli"]]},{"id":"NCBITaxon:1177154","l":"Alcanivorax nanhaiticus","na":1,"nb":1,"a":[["TED%3AAF-A0A095SFN1-F1-model_v4_TED01","TED novel fold AF-A0A095SFN1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1177154","Alcanivorax nanhaiticus"]]},{"id":"NCBITaxon:1178516","l":"Spirosoma montaniterrae","na":1,"nb":1,"a":[["TED%3AAF-A0A1P9WRL0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1P9WRL0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1178516","Spirosoma montaniterrae"]]},{"id":"NCBITaxon:1179777","l":"Mycoplasma feriruminatoris","na":1,"nb":1,"a":[["TED%3AAF-A0A654IMN0-F1-model_v4_TED02","TED novel fold AF-A0A654IMN0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1179777","Mycoplasma feriruminatoris"]]},{"id":"NCBITaxon:118127","l":"Chryseobacterium proteolyticum","na":1,"nb":1,"a":[["Pfam%3APF18626","Glutaminase"]],"b":[["NCBITaxon%3A118127","Chryseobacterium proteolyticum"]]},{"id":"NCBITaxon:1183429","l":"Agrobacterium fabacearum S56","na":1,"nb":1,"a":[["TED%3AAF-A0A1S7NI73-F1-model_v4_TED02","TED novel fold AF-A0A1S7NI73-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1183429","Agrobacterium fabacearum S56"]]},{"id":"NCBITaxon:1184151","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A178IHD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A178IHD6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1184151","Termitidicoccus mucosus"]]},{"id":"NCBITaxon:1186196","l":"Natrinema salaciae","na":1,"nb":1,"a":[["TED%3AAF-A0A1H9QMZ8-F1-model_v4_TED01","TED novel fold AF-A0A1H9QMZ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1186196","Natrinema salaciae"]]},{"id":"NCBITaxon:118675","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y0IP23-F1-model_v4_TED01","TED novel fold AF-A0A7Y0IP23-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A118675","[Chroococcidiopsis] sp. PCC 6712"]]},{"id":"NCBITaxon:1188229","l":"Gloeomargarita lithophora Alchichica-D10","na":1,"nb":1,"a":[["TED%3AAF-A0A1J0AGF7-F1-model_v4_TED01","TED novel fold AF-A0A1J0AGF7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1188229","Gloeomargarita lithophora Alchichica-D10"]]},{"id":"NCBITaxon:1188234","l":"Metamycoplasma alkalescens 14918","na":1,"nb":1,"a":[["TED%3AAF-N9UBA4-F1-model_v4_TED01","TED novel fold AF-N9UBA4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1188234","Metamycoplasma alkalescens 14918"]]},{"id":"NCBITaxon:1188242","l":"Mycoplasmopsis bovis 8790","na":1,"nb":1,"a":[["TED%3AAF-A0A4U0W9X5-F1-model_v4_TED01","TED novel fold AF-A0A4U0W9X5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1188242","Mycoplasmopsis bovis 8790"]]},{"id":"NCBITaxon:1190417","l":"Geodermatophilus telluris","na":1,"nb":1,"a":[["TED%3AAF-A0A1G6L8J2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G6L8J2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1190417","Geodermatophilus telluris"]]},{"id":"NCBITaxon:1191209","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A243T1A0-F1-model_v4_TED02","TED novel fold AF-A0A243T1A0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1191209","Billgrantia desiderata SP1"]]},{"id":"NCBITaxon:1191298","l":"Vibrio genomosp. F6 str. FF-238","na":1,"nb":1,"a":[["TED%3AAF-A0A1E5D5V8-F1-model_v4_TED02","TED novel fold AF-A0A1E5D5V8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1191298","Vibrio genomosp. F6 str. FF-238"]]},{"id":"NCBITaxon:1191305","l":"Vibrio splendidus 12E03","na":1,"nb":1,"a":[["TED%3AAF-A0A1E5FC68-F1-model_v4_TED01","TED novel fold AF-A0A1E5FC68-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1191305","Vibrio splendidus 12E03"]]},{"id":"NCBITaxon:1191459","l":"Flammeovirga sp. MY04","na":1,"nb":1,"a":[["TED%3AAF-A0A1B1FZ46-F1-model_v4_TED02","TED novel fold AF-A0A1B1FZ46-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1191459","Flammeovirga sp. MY04"]]},{"id":"NCBITaxon:1192197","l":"Pelosinus fermentans JBW45","na":1,"nb":1,"a":[["TED%3AAF-I9DM65-F1-model_v4_TED01","TED novel fold AF-I9DM65-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1192197","Pelosinus fermentans JBW45"]]},{"id":"NCBITaxon:1192688","l":"Salmonella enterica subsp. enterica serovar Dublin str. UC16","na":1,"nb":1,"a":[["TED%3AAF-M7S6D1-F1-model_v4_TED01","TED novel fold AF-M7S6D1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1192688","Salmonella enterica subsp. enterica serovar Dublin str. UC16"]]},{"id":"NCBITaxon:1193500","l":"Leptospira idonii","na":1,"nb":1,"a":[["TED%3AAF-A0A4R9LX20-F1-model_v4_TED02","TED novel fold AF-A0A4R9LX20-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1193500","Leptospira idonii"]]},{"id":"NCBITaxon:1193682","l":"Actinokineospora bangkokensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q9LJW8-F1-model_v4_TED01","TED novel fold AF-A0A1Q9LJW8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1193682","Actinokineospora bangkokensis"]]},{"id":"NCBITaxon:1196322","l":"Clostridium sp. Maddingley MBC34-26","na":1,"nb":1,"a":[["TED%3AAF-K6TT75-F1-model_v4_TED01","TED highly-symmetric fold AF-K6TT75-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1196322","Clostridium sp. Maddingley MBC34-26"]]},{"id":"NCBITaxon:1198452","l":"Janthinobacterium sp. HH01","na":1,"nb":1,"a":[["TED%3AAF-L9PHA3-F1-model_v4_TED01","TED highly-symmetric fold AF-L9PHA3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1198452","Janthinobacterium sp. HH01"]]},{"id":"NCBITaxon:1200751","l":"Ruminococcaceae bacterium P7","na":1,"nb":1,"a":[["TED%3AAF-A0A1G4WUB4-F1-model_v4_TED01","TED novel fold AF-A0A1G4WUB4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1200751","Ruminococcaceae bacterium P7"]]},{"id":"NCBITaxon:1200792","l":"Brevibacillus brevis X23","na":1,"nb":1,"a":[["TED%3AAF-A0A291BDV3-F1-model_v4_TED01","TED novel fold AF-A0A291BDV3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1200792","Brevibacillus brevis X23"]]},{"id":"NCBITaxon:1201031","l":"Pectobacterium aroidearum","na":1,"nb":1,"a":[["TED%3AAF-A0A7S9Y306-F1-model_v4_TED01","TED novel fold AF-A0A7S9Y306-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1201031","Pectobacterium aroidearum"]]},{"id":"NCBITaxon:1201290","l":"","na":1,"nb":1,"a":[["TED%3AAF-T0CEV1-F1-model_v4_TED02","TED novel fold AF-T0CEV1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1201290","Bacteriovorax sp. BAL6_X"]]},{"id":"NCBITaxon:1203556","l":"Actinomyces sp. HPA0247","na":1,"nb":1,"a":[["TED%3AAF-S2ZT21-F1-model_v4_TED02","TED novel fold AF-S2ZT21-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1203556","Actinomyces sp. HPA0247"]]},{"id":"NCBITaxon:1204385","l":"Litorilinea aerophila","na":1,"nb":1,"a":[["TED%3AAF-A0A540VHU2-F1-model_v4_TED01","TED novel fold AF-A0A540VHU2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1204385","Litorilinea aerophila"]]},{"id":"NCBITaxon:1205910","l":"","na":1,"nb":1,"a":[["TED%3AAF-J7L5Y1-F1-model_v4_TED01","TED novel fold AF-J7L5Y1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1205910","Nocardiopsis alba ATCC BAA-2165"]]},{"id":"NCBITaxon:120645","l":"","na":1,"nb":1,"a":[["Pfam%3APF07143","AttH-like"]],"b":[["NCBITaxon%3A120645","Fusarium phaseoli"]]},{"id":"NCBITaxon:1206767","l":"Solidesulfovibrio magneticus str. Maddingley MBC34","na":1,"nb":1,"a":[["TED%3AAF-K6HEH0-F1-model_v4_TED02","TED highly-symmetric fold AF-K6HEH0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1206767","Solidesulfovibrio magneticus str. Maddingley MBC34"]]},{"id":"NCBITaxon:1208320","l":"Thalassolituus oleivorans R6-15","na":1,"nb":1,"a":[["TED%3AAF-W8G4Y2-F1-model_v4_TED02","TED highly-symmetric fold AF-W8G4Y2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1208320","Thalassolituus oleivorans R6-15"]]},{"id":"NCBITaxon:1208365","l":"SAR86 cluster bacterium SAR86E","na":1,"nb":1,"a":[["TED%3AAF-K6GHH6-F1-model_v4_TED04","TED novel fold AF-K6GHH6-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1208365","SAR86 cluster bacterium SAR86E"]]},{"id":"NCBITaxon:1208583","l":"Commensalibacter papalotli (ex Servin-Garciduenas et al. 2014)","na":1,"nb":1,"a":[["TED%3AAF-W7DJT2-F1-model_v4_TED01","TED highly-symmetric fold AF-W7DJT2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1208583","Commensalibacter papalotli (ex Servin-Garciduenas et al. 2014)"]]},{"id":"NCBITaxon:1208661","l":"Cronobacter dublinensis 582","na":1,"nb":1,"a":[["TED%3AAF-K8B0L1-F1-model_v4_TED02","TED highly-symmetric fold AF-K8B0L1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1208661","Cronobacter dublinensis 582"]]},{"id":"NCBITaxon:120959","l":"Mycobacterium kubicae","na":1,"nb":1,"a":[["TED%3AAF-A0A7G8A8J2-F1-model_v4_TED02","TED novel fold AF-A0A7G8A8J2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A120959","Mycobacterium kubicae"]]},{"id":"NCBITaxon:1209926","l":"Colletotrichum orchidophilum","na":1,"nb":1,"a":[["TED%3AAF-A0A1G4BEU5-F1-model_v4_TED01","TED novel fold AF-A0A1G4BEU5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1209926","Colletotrichum orchidophilum"]]},{"id":"NCBITaxon:1210932","l":"Peteryoungia ipomoeae","na":1,"nb":1,"a":[["TED%3AAF-A0A4S8P7B5-F1-model_v4_TED01","TED novel fold AF-A0A4S8P7B5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1210932","Peteryoungia ipomoeae"]]},{"id":"NCBITaxon:1212765","l":"Candidatus Mycoplasma haematolamae str. Purdue","na":1,"nb":1,"a":[["TED%3AAF-I7CFH3-F1-model_v4_TED01","TED novel fold AF-I7CFH3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1212765","Candidatus Mycoplasma haematolamae str. Purdue"]]},{"id":"NCBITaxon:1213189","l":"Zancudomyces culisetae","na":1,"nb":1,"a":[["TED%3AAF-A0A1R1PVM1-F1-model_v4_TED01","TED novel fold AF-A0A1R1PVM1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1213189","Zancudomyces culisetae"]]},{"id":"NCBITaxon:1213861","l":"Actinocrispum wychmicini","na":1,"nb":1,"a":[["TED%3AAF-A0A4R2IZC5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R2IZC5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1213861","Actinocrispum wychmicini"]]},{"id":"NCBITaxon:1214604","l":"Tumebacillus algifaecis","na":1,"nb":1,"a":[["TED%3AAF-A0A223CZ66-F1-model_v4_TED03","TED novel fold AF-A0A223CZ66-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1214604","Tumebacillus algifaecis"]]},{"id":"NCBITaxon:1216886","l":"Nguyenibacter vanlangensis","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y7IW05-F1-model_v4_TED02","TED novel fold AF-A0A7Y7IW05-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1216886","Nguyenibacter vanlangensis"]]},{"id":"NCBITaxon:1217692","l":"Acinetobacter sp. NIPH 298","na":1,"nb":1,"a":[["TED%3AAF-N9MZT5-F1-model_v4_TED02","TED novel fold AF-N9MZT5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1217692","Acinetobacter sp. NIPH 298"]]},{"id":"NCBITaxon:1217707","l":"Acinetobacter sp. ANC 3929","na":1,"nb":1,"a":[["TED%3AAF-N9KJP3-F1-model_v4_TED02","TED highly-symmetric fold AF-N9KJP3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1217707","Acinetobacter sp. ANC 3929"]]},{"id":"NCBITaxon:1217737","l":"Bacillus thuringiensis HD-789","na":1,"nb":1,"a":[["TED%3AAF-A0A806HWA2-F1-model_v4_TED01","TED novel fold AF-A0A806HWA2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1217737","Bacillus thuringiensis HD-789"]]},{"id":"NCBITaxon:1217969","l":"Nonlabens arenilitoris","na":1,"nb":1,"a":[["TED%3AAF-A0A2S7U9M6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S7U9M6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1217969","Nonlabens arenilitoris"]]},{"id":"NCBITaxon:1218175","l":"Bacillus thuringiensis HD-771","na":1,"nb":1,"a":[["TED%3AAF-J3UA09-F1-model_v4_TED02","TED highly-symmetric fold AF-J3UA09-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1218175","Bacillus thuringiensis HD-771"]]},{"id":"NCBITaxon:1218494","l":"Lactobacillus helsingborgensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0F4LPM4-F1-model_v4_TED01","TED novel fold AF-A0A0F4LPM4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1218494","Lactobacillus helsingborgensis"]]},{"id":"NCBITaxon:1219491","l":"Actinomadura sp. WMMB 499","na":1,"nb":1,"a":[["TED%3AAF-A0A5J6UA85-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A5J6UA85-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1219491","Actinomadura sp. WMMB 499"]]},{"id":"NCBITaxon:1221500","l":"Fictibacillus phosphorivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A161TIQ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A161TIQ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1221500","Fictibacillus phosphorivorans"]]},{"id":"NCBITaxon:1222016","l":"Caldicellulosiruptor changbaiensis","na":1,"nb":1,"a":[["TED%3AAF-A0A3T0D3Q7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3T0D3Q7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1222016","Caldicellulosiruptor changbaiensis"]]},{"id":"NCBITaxon:122368","l":"Cercospora beticola","na":1,"nb":1,"a":[["TED%3AAF-A0A2G5HT37-F1-model_v4_TED02","TED novel fold AF-A0A2G5HT37-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A122368","Cercospora beticola"]]},{"id":"NCBITaxon:1225657","l":"Loktanella sp. 3ANDIMAR09","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q2YXZ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q2YXZ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1225657","Loktanella sp. 3ANDIMAR09"]]},{"id":"NCBITaxon:1226323","l":"Oscillibacter sp. KLE 1745","na":1,"nb":1,"a":[["TED%3AAF-U2QJK1-F1-model_v4_TED01","TED highly-symmetric fold AF-U2QJK1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1226323","Oscillibacter sp. KLE 1745"]]},{"id":"NCBITaxon:1226754","l":"Paenibacillus sp. FSL R5-192","na":1,"nb":1,"a":[["TED%3AAF-W4AKI2-F1-model_v4_TED03","TED novel fold AF-W4AKI2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1226754","Paenibacillus sp. FSL R5-192"]]},{"id":"NCBITaxon:1226755","l":"Paenibacillus sp. FSL R7-269","na":1,"nb":1,"a":[["TED%3AAF-W4CCP5-F1-model_v4_TED01","TED novel fold AF-W4CCP5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1226755","Paenibacillus sp. FSL R7-269"]]},{"id":"NCBITaxon:1227077","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1I5ZPQ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5ZPQ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1227077","Hymenobacter arizonensis"]]},{"id":"NCBITaxon:1227266","l":"Capnocytophaga sp. oral taxon 863 str. F0517","na":1,"nb":1,"a":[["TED%3AAF-U2ANL2-F1-model_v4_TED01","TED highly-symmetric fold AF-U2ANL2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1227266","Capnocytophaga sp. oral taxon 863 str. F0517"]]},{"id":"NCBITaxon:1227271","l":"Porphyromonas gingivalis F0570","na":1,"nb":1,"a":[["TED%3AAF-A0A0E2LSH2-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A0E2LSH2-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1227271","Porphyromonas gingivalis F0570"]]},{"id":"NCBITaxon:1227352","l":"Paenibacillus sp. FSL R7-277","na":1,"nb":1,"a":[["TED%3AAF-W4CZ93-F1-model_v4_TED01","TED highly-symmetric fold AF-W4CZ93-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1227352","Paenibacillus sp. FSL R7-277"]]},{"id":"NCBITaxon:1227551","l":"Meiothermus granaticius NBRC 107808","na":1,"nb":1,"a":[["TED%3AAF-A0A399FBI9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A399FBI9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1227551","Meiothermus granaticius NBRC 107808"]]},{"id":"NCBITaxon:1229521","l":"Nitrincola nitratireducens","na":1,"nb":1,"a":[["TED%3AAF-W9VFH2-F1-model_v4_TED01","TED highly-symmetric fold AF-W9VFH2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1229521","Nitrincola nitratireducens"]]},{"id":"NCBITaxon:1230730","l":"Tissierellia bacterium S5-A11","na":1,"nb":1,"a":[["TED%3AAF-A0A095XB89-F1-model_v4_TED02","TED novel fold AF-A0A095XB89-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1230730","Tissierellia bacterium S5-A11"]]},{"id":"NCBITaxon:1230846","l":"Acidobacteria bacterium AB60","na":1,"nb":1,"a":[["TED%3AAF-A0A5M8SNT8-F1-model_v4_TED01","TED novel fold AF-A0A5M8SNT8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1230846","Acidobacteria bacterium AB60"]]},{"id":"NCBITaxon:1232866","l":"Caballeronia udeis","na":1,"nb":1,"a":[["TED%3AAF-A0A158IK30-F1-model_v4_TED03","TED novel fold AF-A0A158IK30-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1232866","Caballeronia udeis"]]},{"id":"NCBITaxon:1233","l":"Nitrosovibrio tenuis","na":1,"nb":1,"a":[["TED%3AAF-A0A1H7P7C7-F1-model_v4_TED01","TED novel fold AF-A0A1H7P7C7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1233","Nitrosovibrio tenuis"]]},{"id":"NCBITaxon:1234841","l":"Mucilaginibacter xinganensis","na":1,"nb":1,"a":[["TED%3AAF-A0A223P1G7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A223P1G7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1234841","Mucilaginibacter xinganensis"]]},{"id":"NCBITaxon:1235795","l":"Paenibacillus barengoltzii G22","na":1,"nb":1,"a":[["TED%3AAF-R9L6P1-F1-model_v4_TED01","TED highly-symmetric fold AF-R9L6P1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1235795","Paenibacillus barengoltzii G22"]]},{"id":"NCBITaxon:1235796","l":"Firmicutes bacterium M10-2","na":1,"nb":1,"a":[["TED%3AAF-R9LTU1-F1-model_v4_TED02","TED novel fold AF-R9LTU1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1235796","Firmicutes bacterium M10-2"]]},{"id":"NCBITaxon:1235797","l":"Oscillibacter sp. 1-3","na":1,"nb":1,"a":[["TED%3AAF-R9M5Y4-F1-model_v4_TED01","TED novel fold AF-R9M5Y4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1235797","Oscillibacter sp. 1-3"]]},{"id":"NCBITaxon:1235800","l":"Lachnospiraceae bacterium 10-1","na":1,"nb":1,"a":[["TED%3AAF-R9N039-F1-model_v4_TED02","TED novel fold AF-R9N039-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1235800","Lachnospiraceae bacterium 10-1"]]},{"id":"NCBITaxon:1236046","l":"Mesotoga infera","na":1,"nb":1,"a":[["TED%3AAF-A0A7C1CX61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C1CX61-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1236046","Mesotoga infera"]]},{"id":"NCBITaxon:1236689","l":"Candidatus Methanomethylophilus alvi Mx1201","na":1,"nb":1,"a":[["TED%3AAF-M9SC19-F1-model_v4_TED01","TED highly-symmetric fold AF-M9SC19-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1236689","Candidatus Methanomethylophilus alvi Mx1201"]]},{"id":"NCBITaxon:1236968","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A5A7NBS5-F1-model_v4_TED01","TED novel fold AF-A0A5A7NBS5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1236968","Iodidimonas nitroreducens"]]},{"id":"NCBITaxon:1236974","l":"Paenibacillus sp. JCM 10914","na":1,"nb":1,"a":[["TED%3AAF-V9GB85-F1-model_v4_TED03","TED highly-symmetric fold AF-V9GB85-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1236974","Paenibacillus sp. JCM 10914"]]},{"id":"NCBITaxon:1238424","l":"Haloquadratum walsbyi J07HQW1","na":1,"nb":1,"a":[["TED%3AAF-U1PDD5-F1-model_v4_TED01","TED highly-symmetric fold AF-U1PDD5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1238424","Haloquadratum walsbyi J07HQW1"]]},{"id":"NCBITaxon:1240085","l":"Anaerovibrio sp. JC8","na":1,"nb":1,"a":[["TED%3AAF-A0A1X1Q430-F1-model_v4_TED02","TED novel fold AF-A0A1X1Q430-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1240085","Anaerovibrio sp. JC8"]]},{"id":"NCBITaxon:1241337","l":"Pedobacter nutrimenti","na":1,"nb":1,"a":[["TED%3AAF-A0A318UDW2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A318UDW2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1241337","Pedobacter nutrimenti"]]},{"id":"NCBITaxon:1241761","l":"Sphingomonas yantingensis","na":1,"nb":1,"a":[["TED%3AAF-A0A7W9AM50-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W9AM50-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1241761","Sphingomonas yantingensis"]]},{"id":"NCBITaxon:1242107","l":"Salmonella enterica subsp. enterica serovar Macclesfield str. S-1643","na":1,"nb":1,"a":[["TED%3AAF-A0A2C9NXK1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2C9NXK1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1242107","Salmonella enterica subsp. enterica serovar Macclesfield str. S-1643"]]},{"id":"NCBITaxon:1244108","l":"Jannaschia faecimaris","na":1,"nb":1,"a":[["TED%3AAF-A0A1H3KAR9-F1-model_v4_TED02","TED novel fold AF-A0A1H3KAR9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1244108","Jannaschia faecimaris"]]},{"id":"NCBITaxon:1244155","l":"Enterococcus faecium SD3B-2","na":1,"nb":1,"a":[["TED%3AAF-S4EFH8-F1-model_v4_TED01","TED highly-symmetric fold AF-S4EFH8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1244155","Enterococcus faecium SD3B-2"]]},{"id":"NCBITaxon:124430","l":"Phaeomonas parva","na":1,"nb":1,"a":[["TED%3AAF-A0A7S1U9F8-F1-model_v4_TED01","TED novel fold AF-A0A7S1U9F8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A124430","Phaeomonas parva"]]},{"id":"NCBITaxon:1245471","l":"Metapseudomonas resinovorans NBRC 106553","na":1,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_PvdO","Pyoverdine chromophore maturation oxidoreductase family"]],"b":[["NCBITaxon%3A1245471","Metapseudomonas resinovorans NBRC 106553"]]},{"id":"NCBITaxon:1245769","l":"Lachancea lanzarotensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0C7NC52-F1-model_v4_TED02","TED novel fold AF-A0A0C7NC52-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1245769","Lachancea lanzarotensis"]]},{"id":"NCBITaxon:1247510","l":"Verticiella sediminum","na":1,"nb":1,"a":[["TED%3AAF-A0A556AER9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A556AER9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1247510","Verticiella sediminum"]]},{"id":"NCBITaxon:1247546","l":"Pseudomonas hunanensis","na":1,"nb":1,"a":[["TED%3AAF-A0A2I0C4S2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I0C4S2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1247546","Pseudomonas hunanensis"]]},{"id":"NCBITaxon:1249553","l":"Bacterioplanes sanyensis","na":1,"nb":1,"a":[["TED%3AAF-A0A222FKK1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A222FKK1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1249553","Bacterioplanes sanyensis"]]},{"id":"NCBITaxon:1249627","l":"Imhoffiella purpurea","na":1,"nb":1,"a":[["TED%3AAF-W9W3R8-F1-model_v4_TED01","TED novel fold AF-W9W3R8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1249627","Imhoffiella purpurea"]]},{"id":"NCBITaxon:1250001","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A559RBM7-F1-model_v4_TED01","TED novel fold AF-A0A559RBM7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1250001","Olleya sp. Hel_I_94"]]},{"id":"NCBITaxon:1250029","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A397L855-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A397L855-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1250029","Flavobacteriaceae bacterium MAR_2010_72"]]},{"id":"NCBITaxon:1250050","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A559NSX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A559NSX2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1250050","Maribacter sp. MAR_2009_72"]]},{"id":"NCBITaxon:1250059","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1H4J5U1-F1-model_v4_TED03","TED novel fold AF-A0A1H4J5U1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1250059","Tenacibaculum sp. MAR_2009_124"]]},{"id":"NCBITaxon:1250544","l":"Sphaerosporella brunnea","na":1,"nb":1,"a":[["TED%3AAF-A0A5J5EXM5-F1-model_v4_TED01","TED novel fold AF-A0A5J5EXM5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1250544","Sphaerosporella brunnea"]]},{"id":"NCBITaxon:1254432","l":"Sorangium cellulosum So0157-2","na":1,"nb":1,"a":[["TED%3AAF-S4XT05-F1-model_v4_TED01","TED novel fold AF-S4XT05-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1254432","Sorangium cellulosum So0157-2"]]},{"id":"NCBITaxon:1255570","l":"Gulosibacter sp. 10","na":1,"nb":1,"a":[["TED%3AAF-A0A1R4FN97-F1-model_v4_TED01","TED novel fold AF-A0A1R4FN97-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1255570","Gulosibacter sp. 10"]]},{"id":"NCBITaxon:1255669","l":"Brevibacterium sp. Mu109","na":1,"nb":1,"a":[["TED%3AAF-A0A2H1J0C3-F1-model_v4_TED02","TED novel fold AF-A0A2H1J0C3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1255669","Brevibacterium sp. Mu109"]]},{"id":"NCBITaxon:1259231","l":"Cryobacterium sp. TMT1-19","na":1,"nb":1,"a":[["TED%3AAF-A0A4R8ZNV8-F1-model_v4_TED01","TED novel fold AF-A0A4R8ZNV8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1259231","Cryobacterium sp. TMT1-19"]]},{"id":"NCBITaxon:1260356","l":"Enterococcus faecalis 13-SD-W-01","na":1,"nb":1,"a":[["TED%3AAF-S4DDC6-F1-model_v4_TED02","TED highly-symmetric fold AF-S4DDC6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1260356","Enterococcus faecalis 13-SD-W-01"]]},{"id":"NCBITaxon:1260363","l":"Enterococcus faecalis 02-MB-BW-10","na":1,"nb":1,"a":[["TED%3AAF-S4CDW6-F1-model_v4_TED01","TED novel fold AF-S4CDW6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1260363","Enterococcus faecalis 02-MB-BW-10"]]},{"id":"NCBITaxon:1261403","l":"Mangrovibacterium diazotrophicum","na":1,"nb":1,"a":[["TED%3AAF-A0A419W901-F1-model_v4_TED02","TED novel fold AF-A0A419W901-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1261403","Mangrovibacterium diazotrophicum"]]},{"id":"NCBITaxon:1261629","l":"Pseudomonas sp. URMO17WK12:I6","na":1,"nb":1,"a":[["TED%3AAF-A0A2W7IV95-F1-model_v4_TED01","TED novel fold AF-A0A2W7IV95-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1261629","Pseudomonas sp. URMO17WK12:I6"]]},{"id":"NCBITaxon:1261630","l":"Pseudomonas sp. URIL14HWK12:I5","na":1,"nb":1,"a":[["TED%3AAF-A0A1W1Z4F4-F1-model_v4_TED01","TED novel fold AF-A0A1W1Z4F4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1261630","Pseudomonas sp. URIL14HWK12:I5"]]},{"id":"NCBITaxon:1262452","l":"Streptomyces sp. 769","na":1,"nb":1,"a":[["TED%3AAF-A0A0A8EFP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A8EFP7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262452","Streptomyces sp. 769"]]},{"id":"NCBITaxon:1262550","l":"Brevibacterium jeotgali","na":1,"nb":1,"a":[["TED%3AAF-A0A2H1L8Q0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H1L8Q0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262550","Brevibacterium jeotgali"]]},{"id":"NCBITaxon:1262583","l":"Tamaricihabitans halophyticus","na":1,"nb":1,"a":[["TED%3AAF-A0A4R2RDI5-F1-model_v4_TED01","TED novel fold AF-A0A4R2RDI5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262583","Tamaricihabitans halophyticus"]]},{"id":"NCBITaxon:1262686","l":"Acholeplasma sp. CAG:878","na":1,"nb":1,"a":[["TED%3AAF-R5HWA5-F1-model_v4_TED01","TED novel fold AF-R5HWA5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262686","Acholeplasma sp. CAG:878"]]},{"id":"NCBITaxon:1262688","l":"Acidaminococcus sp. CAG:917","na":1,"nb":1,"a":[["TED%3AAF-R7K8M9-F1-model_v4_TED01","TED highly-symmetric fold AF-R7K8M9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262688","Acidaminococcus sp. CAG:917"]]},{"id":"NCBITaxon:1262690","l":"Acinetobacter sp. CAG:196","na":1,"nb":1,"a":[["TED%3AAF-R5SCI3-F1-model_v4_TED02","TED novel fold AF-R5SCI3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262690","Acinetobacter sp. CAG:196"]]},{"id":"NCBITaxon:1262737","l":"Bacteroides sp. CAG:189","na":1,"nb":1,"a":[["TED%3AAF-R5JN61-F1-model_v4_TED02","TED novel fold AF-R5JN61-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262737","Bacteroides sp. CAG:189"]]},{"id":"NCBITaxon:1262742","l":"Bacteroides sp. CAG:545","na":1,"nb":1,"a":[["TED%3AAF-R5RUB0-F1-model_v4_TED07","TED highly-symmetric fold AF-R5RUB0-F1-model_v4_TED07"]],"b":[["NCBITaxon%3A1262742","Bacteroides sp. CAG:545"]]},{"id":"NCBITaxon:1262752","l":"Bacteroides sp. CAG:875","na":1,"nb":1,"a":[["TED%3AAF-R6ZV18-F1-model_v4_TED02","TED novel fold AF-R6ZV18-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262752","Bacteroides sp. CAG:875"]]},{"id":"NCBITaxon:1262759","l":"Brachyspira sp. CAG:484","na":1,"nb":1,"a":[["TED%3AAF-R5HKW8-F1-model_v4_TED01","TED novel fold AF-R5HKW8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262759","Brachyspira sp. CAG:484"]]},{"id":"NCBITaxon:1262773","l":"Clostridium sp. CAG:122","na":1,"nb":1,"a":[["TED%3AAF-R5S4D8-F1-model_v4_TED01","TED novel fold AF-R5S4D8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262773","Clostridium sp. CAG:122"]]},{"id":"NCBITaxon:1262776","l":"Clostridium sp. CAG:149","na":1,"nb":1,"a":[["TED%3AAF-R5M503-F1-model_v4_TED01","TED novel fold AF-R5M503-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262776","Clostridium sp. CAG:149"]]},{"id":"NCBITaxon:1262778","l":"Clostridium sp. CAG:169","na":1,"nb":1,"a":[["TED%3AAF-R6BDP7-F1-model_v4_TED01","TED highly-symmetric fold AF-R6BDP7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262778","Clostridium sp. CAG:169"]]},{"id":"NCBITaxon:1262781","l":"Clostridium sp. CAG:226","na":1,"nb":1,"a":[["TED%3AAF-R5B4L0-F1-model_v4_TED01","TED novel fold AF-R5B4L0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262781","Clostridium sp. CAG:226"]]},{"id":"NCBITaxon:1262783","l":"Clostridium sp. CAG:242","na":1,"nb":1,"a":[["TED%3AAF-R6D4A2-F1-model_v4_TED01","TED highly-symmetric fold AF-R6D4A2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262783","Clostridium sp. CAG:242"]]},{"id":"NCBITaxon:1262788","l":"Clostridium sp. CAG:269","na":1,"nb":1,"a":[["TED%3AAF-R7IYD9-F1-model_v4_TED01","TED novel fold AF-R7IYD9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262788","Clostridium sp. CAG:269"]]},{"id":"NCBITaxon:1262789","l":"Clostridium sp. CAG:273","na":1,"nb":1,"a":[["TED%3AAF-R7L6S0-F1-model_v4_TED01","TED novel fold AF-R7L6S0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262789","Clostridium sp. CAG:273"]]},{"id":"NCBITaxon:1262798","l":"Clostridium sp. CAG:352","na":1,"nb":1,"a":[["TED%3AAF-R6R399-F1-model_v4_TED01","TED novel fold AF-R6R399-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262798","Clostridium sp. CAG:352"]]},{"id":"NCBITaxon:1262801","l":"Clostridium sp. CAG:389","na":1,"nb":1,"a":[["TED%3AAF-R7LQW5-F1-model_v4_TED01","TED novel fold AF-R7LQW5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262801","Clostridium sp. CAG:389"]]},{"id":"NCBITaxon:1262806","l":"Clostridium sp. CAG:433","na":1,"nb":1,"a":[["TED%3AAF-R6Y4R9-F1-model_v4_TED01","TED novel fold AF-R6Y4R9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262806","Clostridium sp. CAG:433"]]},{"id":"NCBITaxon:1262807","l":"Clostridium sp. CAG:440","na":1,"nb":1,"a":[["TED%3AAF-R7GD66-F1-model_v4_TED01","TED highly-symmetric fold AF-R7GD66-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262807","Clostridium sp. CAG:440"]]},{"id":"NCBITaxon:1262809","l":"Clostridium sp. CAG:451","na":1,"nb":1,"a":[["TED%3AAF-R7KDM6-F1-model_v4_TED01","TED highly-symmetric fold AF-R7KDM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262809","Clostridium sp. CAG:451"]]},{"id":"NCBITaxon:1262815","l":"Clostridium sp. CAG:508","na":1,"nb":1,"a":[["TED%3AAF-R6RBM2-F1-model_v4_TED01","TED highly-symmetric fold AF-R6RBM2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262815","Clostridium sp. CAG:508"]]},{"id":"NCBITaxon:1262820","l":"Clostridium sp. CAG:567","na":1,"nb":1,"a":[["TED%3AAF-R7M9L5-F1-model_v4_TED01","TED novel fold AF-R7M9L5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262820","Clostridium sp. CAG:567"]]},{"id":"NCBITaxon:1262824","l":"Clostridium sp. CAG:58","na":1,"nb":1,"a":[["TED%3AAF-R6SSL9-F1-model_v4_TED01","TED highly-symmetric fold AF-R6SSL9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262824","Clostridium sp. CAG:58"]]},{"id":"NCBITaxon:1262825","l":"Clostridium sp. CAG:590","na":1,"nb":1,"a":[["TED%3AAF-R5ELB2-F1-model_v4_TED02","TED novel fold AF-R5ELB2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262825","Clostridium sp. CAG:590"]]},{"id":"NCBITaxon:1262829","l":"Clostridium sp. CAG:628","na":1,"nb":1,"a":[["TED%3AAF-R7MCF7-F1-model_v4_TED01","TED novel fold AF-R7MCF7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262829","Clostridium sp. CAG:628"]]},{"id":"NCBITaxon:1262832","l":"Clostridium sp. CAG:7","na":1,"nb":1,"a":[["TED%3AAF-R5IHW6-F1-model_v4_TED01","TED novel fold AF-R5IHW6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262832","Clostridium sp. CAG:7"]]},{"id":"NCBITaxon:1262834","l":"Clostridium sp. CAG:715","na":1,"nb":1,"a":[["TED%3AAF-R5DMB4-F1-model_v4_TED01","TED novel fold AF-R5DMB4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262834","Clostridium sp. CAG:715"]]},{"id":"NCBITaxon:1262840","l":"Clostridium sp. CAG:793","na":1,"nb":1,"a":[["TED%3AAF-R5N623-F1-model_v4_TED02","TED novel fold AF-R5N623-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262840","Clostridium sp. CAG:793"]]},{"id":"NCBITaxon:1262843","l":"Clostridium sp. CAG:813","na":1,"nb":1,"a":[["TED%3AAF-R7MGZ7-F1-model_v4_TED01","TED highly-symmetric fold AF-R7MGZ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262843","Clostridium sp. CAG:813"]]},{"id":"NCBITaxon:1262869","l":"Dialister sp. CAG:357","na":1,"nb":1,"a":[["TED%3AAF-R7CTH2-F1-model_v4_TED01","TED highly-symmetric fold AF-R7CTH2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262869","Dialister sp. CAG:357"]]},{"id":"NCBITaxon:1262874","l":"Eggerthella sp. CAG:1427","na":1,"nb":1,"a":[["TED%3AAF-R5FMM4-F1-model_v4_TED02","TED highly-symmetric fold AF-R5FMM4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262874","Eggerthella sp. CAG:1427"]]},{"id":"NCBITaxon:1262877","l":"Eggerthella sp. CAG:368","na":1,"nb":1,"a":[["TED%3AAF-R7BR43-F1-model_v4_TED01","TED novel fold AF-R7BR43-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262877","Eggerthella sp. CAG:368"]]},{"id":"NCBITaxon:1262881","l":"Eubacterium sp. CAG:161","na":1,"nb":1,"a":[["TED%3AAF-R5LAA8-F1-model_v4_TED01","TED highly-symmetric fold AF-R5LAA8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262881","Eubacterium sp. CAG:161"]]},{"id":"NCBITaxon:1262887","l":"Eubacterium sp. CAG:252","na":1,"nb":1,"a":[["TED%3AAF-R6KC60-F1-model_v4_TED04","TED highly-symmetric fold AF-R6KC60-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1262887","Eubacterium sp. CAG:252"]]},{"id":"NCBITaxon:1262888","l":"Eubacterium sp. CAG:274","na":1,"nb":1,"a":[["TED%3AAF-R6PP10-F1-model_v4_TED01","TED highly-symmetric fold AF-R6PP10-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262888","Eubacterium sp. CAG:274"]]},{"id":"NCBITaxon:1262903","l":"Methanoculleus sp. CAG:1088","na":1,"nb":1,"a":[["TED%3AAF-R7Q245-F1-model_v4_TED02","TED novel fold AF-R7Q245-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262903","Methanoculleus sp. CAG:1088"]]},{"id":"NCBITaxon:1262904","l":"Mycoplasma sp. CAG:472","na":1,"nb":1,"a":[["TED%3AAF-R7HJ97-F1-model_v4_TED03","TED novel fold AF-R7HJ97-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1262904","Mycoplasma sp. CAG:472"]]},{"id":"NCBITaxon:1262907","l":"Mycoplasma sp. CAG:877","na":1,"nb":1,"a":[["TED%3AAF-R5LQW6-F1-model_v4_TED01","TED highly-symmetric fold AF-R5LQW6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262907","Mycoplasma sp. CAG:877"]]},{"id":"NCBITaxon:1262915","l":"Phascolarctobacterium sp. CAG:266","na":1,"nb":1,"a":[["TED%3AAF-R6IBR4-F1-model_v4_TED01","TED highly-symmetric fold AF-R6IBR4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262915","Phascolarctobacterium sp. CAG:266"]]},{"id":"NCBITaxon:1262917","l":"Prevotella sp. CAG:1031","na":1,"nb":1,"a":[["TED%3AAF-R5APF1-F1-model_v4_TED01","TED highly-symmetric fold AF-R5APF1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262917","Prevotella sp. CAG:1031"]]},{"id":"NCBITaxon:1262920","l":"Prevotella sp. CAG:1124","na":1,"nb":1,"a":[["TED%3AAF-R5KZ47-F1-model_v4_TED01","TED novel fold AF-R5KZ47-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262920","Prevotella sp. CAG:1124"]]},{"id":"NCBITaxon:1262923","l":"Prevotella sp. CAG:255","na":1,"nb":1,"a":[["TED%3AAF-R5CNK9-F1-model_v4_TED03","TED novel fold AF-R5CNK9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1262923","Prevotella sp. CAG:255"]]},{"id":"NCBITaxon:1262924","l":"Prevotella sp. CAG:279","na":1,"nb":1,"a":[["TED%3AAF-R7HNB1-F1-model_v4_TED02","TED novel fold AF-R7HNB1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262924","Prevotella sp. CAG:279"]]},{"id":"NCBITaxon:1262936","l":"Prevotella sp. CAG:873","na":1,"nb":1,"a":[["TED%3AAF-R7J213-F1-model_v4_TED02","TED highly-symmetric fold AF-R7J213-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262936","Prevotella sp. CAG:873"]]},{"id":"NCBITaxon:1262940","l":"Roseburia sp. CAG:100","na":1,"nb":1,"a":[["TED%3AAF-R7R539-F1-model_v4_TED03","TED highly-symmetric fold AF-R7R539-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1262940","Roseburia sp. CAG:100"]]},{"id":"NCBITaxon:1262944","l":"Roseburia sp. CAG:303","na":1,"nb":1,"a":[["TED%3AAF-R7IMP6-F1-model_v4_TED03","TED highly-symmetric fold AF-R7IMP6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1262944","Roseburia sp. CAG:303"]]},{"id":"NCBITaxon:1262945","l":"Roseburia sp. CAG:309","na":1,"nb":1,"a":[["TED%3AAF-R6YF90-F1-model_v4_TED02","TED highly-symmetric fold AF-R6YF90-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262945","Roseburia sp. CAG:309"]]},{"id":"NCBITaxon:1262946","l":"Roseburia sp. CAG:380","na":1,"nb":1,"a":[["TED%3AAF-R6VHC4-F1-model_v4_TED01","TED novel fold AF-R6VHC4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262946","Roseburia sp. CAG:380"]]},{"id":"NCBITaxon:1262954","l":"Ruminococcus sp. CAG:330","na":1,"nb":1,"a":[["TED%3AAF-R7F9L4-F1-model_v4_TED01","TED novel fold AF-R7F9L4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262954","Ruminococcus sp. CAG:330"]]},{"id":"NCBITaxon:1262957","l":"Ruminococcus sp. CAG:382","na":1,"nb":1,"a":[["TED%3AAF-R6W5D9-F1-model_v4_TED01","TED highly-symmetric fold AF-R6W5D9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262957","Ruminococcus sp. CAG:382"]]},{"id":"NCBITaxon:1262961","l":"Ruminococcus sp. CAG:563","na":1,"nb":1,"a":[["TED%3AAF-R6ELH5-F1-model_v4_TED01","TED highly-symmetric fold AF-R6ELH5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262961","Ruminococcus sp. CAG:563"]]},{"id":"NCBITaxon:1262969","l":"Staphylococcus sp. CAG:324","na":1,"nb":1,"a":[["TED%3AAF-R6TNJ6-F1-model_v4_TED01","TED novel fold AF-R6TNJ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262969","Staphylococcus sp. CAG:324"]]},{"id":"NCBITaxon:1262977","l":"Sutterella sp. CAG:521","na":1,"nb":1,"a":[["TED%3AAF-R7KI60-F1-model_v4_TED02","TED novel fold AF-R7KI60-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262977","Sutterella sp. CAG:521"]]},{"id":"NCBITaxon:1262981","l":"Erysipelotrichaceae bacterium CAG:64","na":1,"nb":1,"a":[["TED%3AAF-R6UR66-F1-model_v4_TED01","TED highly-symmetric fold AF-R6UR66-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262981","Erysipelotrichaceae bacterium CAG:64"]]},{"id":"NCBITaxon:1262988","l":"Firmicutes bacterium CAG:95","na":1,"nb":1,"a":[["TED%3AAF-R7N5E0-F1-model_v4_TED02","TED highly-symmetric fold AF-R7N5E0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262988","Firmicutes bacterium CAG:95"]]},{"id":"NCBITaxon:1262991","l":"Firmicutes bacterium CAG:882","na":1,"nb":1,"a":[["TED%3AAF-R7BH83-F1-model_v4_TED01","TED novel fold AF-R7BH83-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262991","Firmicutes bacterium CAG:882"]]},{"id":"NCBITaxon:1262999","l":"Firmicutes bacterium CAG:103","na":1,"nb":1,"a":[["TED%3AAF-R5B7E2-F1-model_v4_TED01","TED novel fold AF-R5B7E2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262999","Firmicutes bacterium CAG:103"]]},{"id":"NCBITaxon:1263000","l":"Firmicutes bacterium CAG:110","na":1,"nb":1,"a":[["TED%3AAF-R5EWT9-F1-model_v4_TED01","TED novel fold AF-R5EWT9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1263000","Firmicutes bacterium CAG:110"]]},{"id":"NCBITaxon:1263009","l":"Firmicutes bacterium CAG:212","na":1,"nb":1,"a":[["TED%3AAF-R5XXC1-F1-model_v4_TED01","TED novel fold AF-R5XXC1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1263009","Firmicutes bacterium CAG:212"]]},{"id":"NCBITaxon:1263018","l":"Firmicutes bacterium CAG:321","na":1,"nb":1,"a":[["TED%3AAF-R7HIA0-F1-model_v4_TED01","TED novel fold AF-R7HIA0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1263018","Firmicutes bacterium CAG:321"]]},{"id":"NCBITaxon:1263020","l":"Firmicutes bacterium CAG:345","na":1,"nb":1,"a":[["TED%3AAF-R6XWM6-F1-model_v4_TED01","TED highly-symmetric fold AF-R6XWM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1263020","Firmicutes bacterium CAG:345"]]},{"id":"NCBITaxon:1263022","l":"Firmicutes bacterium CAG:424","na":1,"nb":1,"a":[["TED%3AAF-R6RDG6-F1-model_v4_TED02","TED highly-symmetric fold AF-R6RDG6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1263022","Firmicutes bacterium CAG:424"]]},{"id":"NCBITaxon:1263025","l":"Firmicutes bacterium CAG:466","na":1,"nb":1,"a":[["TED%3AAF-R6PUK4-F1-model_v4_TED01","TED novel fold AF-R6PUK4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1263025","Firmicutes bacterium CAG:466"]]},{"id":"NCBITaxon:1263026","l":"Firmicutes bacterium CAG:475","na":1,"nb":1,"a":[["TED%3AAF-R7BUV3-F1-model_v4_TED02","TED novel fold AF-R7BUV3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1263026","Firmicutes bacterium CAG:475"]]},{"id":"NCBITaxon:1263044","l":"Bacteroides faecis CAG:32","na":1,"nb":1,"a":[["TED%3AAF-R6V0V1-F1-model_v4_TED04","TED highly-symmetric fold AF-R6V0V1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1263044","Bacteroides faecis CAG:32"]]},{"id":"NCBITaxon:1263052","l":"","na":1,"nb":1,"a":[["TED%3AAF-R5VT61-F1-model_v4_TED01","TED highly-symmetric fold AF-R5VT61-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1263052","Phocaeicola plebeius CAG:211"]]},{"id":"NCBITaxon:1263054","l":"Bacteroides thetaiotaomicron CAG:40","na":1,"nb":1,"a":[["TED%3AAF-R7KRD3-F1-model_v4_TED01","TED novel fold AF-R7KRD3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1263054","Bacteroides thetaiotaomicron CAG:40"]]},{"id":"NCBITaxon:1263055","l":"Bacteroides uniformis CAG:3","na":1,"nb":1,"a":[["TED%3AAF-R7ER82-F1-model_v4_TED04","TED novel fold AF-R7ER82-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1263055","Bacteroides uniformis CAG:3"]]},{"id":"NCBITaxon:1263071","l":"Coprococcus eutactus CAG:665","na":1,"nb":1,"a":[["TED%3AAF-R5VPN3-F1-model_v4_TED01","TED highly-symmetric fold AF-R5VPN3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1263071","Coprococcus eutactus CAG:665"]]},{"id":"NCBITaxon:1263088","l":"Methanobrevibacter smithii CAG:186","na":1,"nb":1,"a":[["TED%3AAF-R7PRU9-F1-model_v4_TED01","TED highly-symmetric fold AF-R7PRU9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1263088","Methanobrevibacter smithii CAG:186"]]},{"id":"NCBITaxon:1263095","l":"Paraprevotella clara CAG:116","na":1,"nb":1,"a":[["TED%3AAF-R5NYH7-F1-model_v4_TED01","TED novel fold AF-R5NYH7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1263095","Paraprevotella clara CAG:116"]]},{"id":"NCBITaxon:1263636","l":"Microbacterium kyungheense","na":1,"nb":1,"a":[["TED%3AAF-A0A543F149-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A543F149-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1263636","Microbacterium kyungheense"]]},{"id":"NCBITaxon:1263868","l":"Rhodopirellula europaea SH398","na":1,"nb":1,"a":[["TED%3AAF-M5SBP6-F1-model_v4_TED02","TED novel fold AF-M5SBP6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1263868","Rhodopirellula europaea SH398"]]},{"id":"NCBITaxon:1266600","l":"Glaciihabitans tibetensis","na":1,"nb":1,"a":[["TED%3AAF-A0A2T0VGK9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T0VGK9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1266600","Glaciihabitans tibetensis"]]},{"id":"NCBITaxon:1266744","l":"Talaromyces purpureogenus","na":1,"nb":1,"a":[["Pfam%3APF10503","Esterase PHB depolymerase"]],"b":[["NCBITaxon%3A1266744","Talaromyces purpureogenus"]]},{"id":"NCBITaxon:1267021","l":"Frischella perrara","na":1,"nb":1,"a":[["TED%3AAF-A0A0A7S1S1-F1-model_v4_TED05","TED novel fold AF-A0A0A7S1S1-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1267021","Frischella perrara"]]},{"id":"NCBITaxon:1267768","l":"Brevirhabdus pacifica","na":1,"nb":1,"a":[["TED%3AAF-A0A2M9DE94-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M9DE94-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1267768","Brevirhabdus pacifica"]]},{"id":"NCBITaxon:1273125","l":"Rhodococcus rhodnii LMG 5362","na":1,"nb":1,"a":[["TED%3AAF-R7WN57-F1-model_v4_TED01","TED highly-symmetric fold AF-R7WN57-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1273125","Rhodococcus rhodnii LMG 5362"]]},{"id":"NCBITaxon:1273541","l":"Pyrodictium delaneyi","na":1,"nb":1,"a":[["TED%3AAF-A0A211YRF7-F1-model_v4_TED01","TED novel fold AF-A0A211YRF7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1273541","Pyrodictium delaneyi"]]},{"id":"NCBITaxon:1274631","l":"Bradyrhizobium icense","na":1,"nb":1,"a":[["TED%3AAF-A0A533IQI7-F1-model_v4_TED02","TED novel fold AF-A0A533IQI7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1274631","Bradyrhizobium icense"]]},{"id":"NCBITaxon:1278078","l":"Rhodococcus triatomae BKS 15-14","na":1,"nb":1,"a":[["TED%3AAF-M2WTH6-F1-model_v4_TED01","TED highly-symmetric fold AF-M2WTH6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1278078","Rhodococcus triatomae BKS 15-14"]]},{"id":"NCBITaxon:1280637","l":"Saccharothrix carnea","na":1,"nb":1,"a":[["TED%3AAF-A0A2P8IFT9-F1-model_v4_TED01","TED novel fold AF-A0A2P8IFT9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1280637","Saccharothrix carnea"]]},{"id":"NCBITaxon:1280837","l":"Meira miltonrushii","na":1,"nb":1,"a":[["TED%3AAF-A0A316VB52-F1-model_v4_TED01","TED novel fold AF-A0A316VB52-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1280837","Meira miltonrushii"]]},{"id":"NCBITaxon:1280846","l":"Aliiruegeria haliotis","na":1,"nb":1,"a":[["TED%3AAF-A0A2T0RUV5-F1-model_v4_TED02","TED novel fold AF-A0A2T0RUV5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1280846","Aliiruegeria haliotis"]]},{"id":"NCBITaxon:1280944","l":"Hyphomonas sp. CY54-11-8","na":1,"nb":1,"a":[["TED%3AAF-A0A059DV47-F1-model_v4_TED03","TED novel fold AF-A0A059DV47-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1280944","Hyphomonas sp. CY54-11-8"]]},{"id":"NCBITaxon:1280946","l":"Hyphomonas beringensis","na":1,"nb":1,"a":[["TED%3AAF-A0A062TWQ9-F1-model_v4_TED01","TED novel fold AF-A0A062TWQ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1280946","Hyphomonas beringensis"]]},{"id":"NCBITaxon:1282361","l":"Asticcacaulis sp. AC402","na":1,"nb":1,"a":[["TED%3AAF-V4NKK3-F1-model_v4_TED01","TED highly-symmetric fold AF-V4NKK3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1282361","Asticcacaulis sp. AC402"]]},{"id":"NCBITaxon:1283331","l":"Azotobacter vinelandii CA6","na":1,"nb":1,"a":[["TED%3AAF-M9YNZ0-F1-model_v4_TED02","TED novel fold AF-M9YNZ0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1283331","Azotobacter vinelandii CA6"]]},{"id":"NCBITaxon:1283841","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A084QGW0-F1-model_v4_TED01","TED novel fold AF-A0A084QGW0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1283841","Stachybotrys chlorohalonatus IBT 40285"]]},{"id":"NCBITaxon:128403","l":"Scytonema hofmannii PCC 7110","na":1,"nb":1,"a":[["TED%3AAF-A0A139X3P3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A139X3P3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A128403","Scytonema hofmannii PCC 7110"]]},{"id":"NCBITaxon:1284686","l":"Anaerococcus lactolyticus S7-1-13","na":1,"nb":1,"a":[["TED%3AAF-A0A095X2X0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A095X2X0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1284686","Anaerococcus lactolyticus S7-1-13"]]},{"id":"NCBITaxon:1284708","l":"Tissierellia bacterium S7-1-4","na":1,"nb":1,"a":[["TED%3AAF-A0A095XBA2-F1-model_v4_TED03","TED novel fold AF-A0A095XBA2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1284708","Tissierellia bacterium S7-1-4"]]},{"id":"NCBITaxon:1285901","l":"Tessaracoccus defluvii","na":1,"nb":1,"a":[["TED%3AAF-A0A7H0H364-F1-model_v4_TED01","TED novel fold AF-A0A7H0H364-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1285901","Tessaracoccus defluvii"]]},{"id":"NCBITaxon:1285928","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G6TFZ5-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1G6TFZ5-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1285928","Niabella drilacis"]]},{"id":"NCBITaxon:1286186","l":"Gluconacetobacter aggeris","na":1,"nb":1,"a":[["TED%3AAF-A0A7W4IWG2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W4IWG2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1286186","Gluconacetobacter aggeris"]]},{"id":"NCBITaxon:1287089","l":"Mesorhizobium sp. L103C131B0","na":1,"nb":1,"a":[["TED%3AAF-X6JGH5-F1-model_v4_TED02","TED novel fold AF-X6JGH5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1287089","Mesorhizobium sp. L103C131B0"]]},{"id":"NCBITaxon:1287105","l":"Mesorhizobium sp. L2C066B000","na":1,"nb":1,"a":[["TED%3AAF-X6I5M7-F1-model_v4_TED04","TED highly-symmetric fold AF-X6I5M7-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1287105","Mesorhizobium sp. L2C066B000"]]},{"id":"NCBITaxon:1287117","l":"Mesorhizobium sp. L2C085B000","na":1,"nb":1,"a":[["TED%3AAF-X6GE96-F1-model_v4_TED01","TED novel fold AF-X6GE96-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1287117","Mesorhizobium sp. L2C085B000"]]},{"id":"NCBITaxon:1287182","l":"Mesorhizobium sp. L48C026A00","na":1,"nb":1,"a":[["TED%3AAF-X6FXQ1-F1-model_v4_TED03","TED novel fold AF-X6FXQ1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1287182","Mesorhizobium sp. L48C026A00"]]},{"id":"NCBITaxon:1287240","l":"Mesorhizobium sp. LNHC229A00","na":1,"nb":1,"a":[["TED%3AAF-X6F6C2-F1-model_v4_TED01","TED highly-symmetric fold AF-X6F6C2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1287240","Mesorhizobium sp. LNHC229A00"]]},{"id":"NCBITaxon:1287285","l":"Mesorhizobium sp. LSHC412B00","na":1,"nb":1,"a":[["TED%3AAF-X5X577-F1-model_v4_TED01","TED highly-symmetric fold AF-X5X577-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1287285","Mesorhizobium sp. LSHC412B00"]]},{"id":"NCBITaxon:1287322","l":"Mesorhizobium sp. LSJC265A00","na":1,"nb":1,"a":[["TED%3AAF-X5RW13-F1-model_v4_TED01","TED novel fold AF-X5RW13-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1287322","Mesorhizobium sp. LSJC265A00"]]},{"id":"NCBITaxon:1288970","l":"","na":1,"nb":1,"a":[["TED%3AAF-W6KH56-F1-model_v4_TED01","TED novel fold AF-W6KH56-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1288970","Magnetospira sp. QH-2"]]},{"id":"NCBITaxon:1294296","l":"Luteibaculum oceani","na":1,"nb":1,"a":[["TED%3AAF-A0A5C6V805-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A5C6V805-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1294296","Luteibaculum oceani"]]},{"id":"NCBITaxon:1296344","l":"Merismopedia glauca CCAP 1448/3","na":1,"nb":1,"a":[["TED%3AAF-A0A2T1C1C4-F1-model_v4_TED02","TED novel fold AF-A0A2T1C1C4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1296344","Merismopedia glauca CCAP 1448/3"]]},{"id":"NCBITaxon:1297424","l":"Anaerobacterium chartisolvens","na":1,"nb":1,"a":[["TED%3AAF-A0A369ARR1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A369ARR1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1297424","Anaerobacterium chartisolvens"]]},{"id":"NCBITaxon:1297570","l":"Mesorhizobium sp. STM 4661","na":1,"nb":1,"a":[["TED%3AAF-M5FA19-F1-model_v4_TED01","TED novel fold AF-M5FA19-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1297570","Mesorhizobium sp. STM 4661"]]},{"id":"NCBITaxon:1298608","l":"Psychrobacter sp. JCM 18900","na":1,"nb":1,"a":[["TED%3AAF-X0RKN6-F1-model_v4_TED01","TED highly-symmetric fold AF-X0RKN6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1298608","Psychrobacter sp. JCM 18900"]]},{"id":"NCBITaxon:1298856","l":"Sphingomonas sp. URHD0007","na":1,"nb":1,"a":[["TED%3AAF-A0A2U1FWJ9-F1-model_v4_TED03","TED novel fold AF-A0A2U1FWJ9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1298856","Sphingomonas sp. URHD0007"]]},{"id":"NCBITaxon:1299328","l":"Mycobacterium kansasii 824","na":1,"nb":1,"a":[["TED%3AAF-X7YBI6-F1-model_v4_TED04","TED novel fold AF-X7YBI6-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1299328","Mycobacterium kansasii 824"]]},{"id":"NCBITaxon:1299998","l":"Tractidigestivibacter scatoligenes","na":1,"nb":1,"a":[["TED%3AAF-A0A100YXB1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A100YXB1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1299998","Tractidigestivibacter scatoligenes"]]},{"id":"NCBITaxon:1300150","l":"Enterococcus mundtii QU 25","na":1,"nb":1,"a":[["TED%3AAF-V5XLP0-F1-model_v4_TED02","TED highly-symmetric fold AF-V5XLP0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1300150","Enterococcus mundtii QU 25"]]},{"id":"NCBITaxon:1300915","l":"Anaeromyxobacter sp. PSR-1","na":1,"nb":1,"a":[["TED%3AAF-A0A0D6QKZ5-F1-model_v4_TED01","TED novel fold AF-A0A0D6QKZ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1300915","Anaeromyxobacter sp. PSR-1"]]},{"id":"NCBITaxon:1301086","l":"Bacillus sp. GeD10","na":1,"nb":1,"a":[["TED%3AAF-N1LKH2-F1-model_v4_TED01","TED novel fold AF-N1LKH2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1301086","Bacillus sp. GeD10"]]},{"id":"NCBITaxon:1301915","l":"Methanocaldococcus bathoardescens","na":1,"nb":1,"a":[["TED%3AAF-A0A076LC90-F1-model_v4_TED01","TED novel fold AF-A0A076LC90-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1301915","Methanocaldococcus bathoardescens"]]},{"id":"NCBITaxon:1302151","l":"Caloranaerobacter sp. TR13","na":1,"nb":1,"a":[["TED%3AAF-A0A0P8UY73-F1-model_v4_TED01","TED novel fold AF-A0A0P8UY73-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1302151","Caloranaerobacter sp. TR13"]]},{"id":"NCBITaxon:1303590","l":"Bombilactobacillus bombi","na":1,"nb":1,"a":[["TED%3AAF-A0A417Z5N1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A417Z5N1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1303590","Bombilactobacillus bombi"]]},{"id":"NCBITaxon:1304833","l":"Hassallia byssoidea VB512170","na":1,"nb":1,"a":[["TED%3AAF-A0A846HDF7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A846HDF7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1304833","Hassallia byssoidea VB512170"]]},{"id":"NCBITaxon:1304866","l":"Clostridium sp. ASBs410","na":1,"nb":1,"a":[["TED%3AAF-A0A7U9JZL6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7U9JZL6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1304866","Clostridium sp. ASBs410"]]},{"id":"NCBITaxon:1304873","l":"Pasteurella multocida subsp. multocida OH4807","na":1,"nb":1,"a":[["TED%3AAF-A0A0E3ZRL7-F1-model_v4_TED01","TED novel fold AF-A0A0E3ZRL7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1304873","Pasteurella multocida subsp. multocida OH4807"]]},{"id":"NCBITaxon:1304900","l":"Alteromonadaceae bacterium 2052S.S.stab0a.01","na":1,"nb":1,"a":[["TED%3AAF-A0A495DIH9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A495DIH9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1304900","Alteromonadaceae bacterium 2052S.S.stab0a.01"]]},{"id":"NCBITaxon:1304903","l":"Alteromonadaceae bacterium Bs31","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y6C7G2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y6C7G2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1304903","Alteromonadaceae bacterium Bs31"]]},{"id":"NCBITaxon:1306401","l":"Mycobacteroides abscessus subsp. bolletii CRM-0020","na":1,"nb":1,"a":[["TED%3AAF-A0A829HQB8-F1-model_v4_TED02","TED novel fold AF-A0A829HQB8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1306401","Mycobacteroides abscessus subsp. bolletii CRM-0020"]]},{"id":"NCBITaxon:1306861","l":"Colletotrichum tanaceti","na":1,"nb":1,"a":[["TED%3AAF-A0A4U6X365-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4U6X365-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1306861","Colletotrichum tanaceti"]]},{"id":"NCBITaxon:1306947","l":"candidate division TM6 bacterium JCVI TM6SC1","na":1,"nb":1,"a":[["TED%3AAF-A0A0D2K579-F1-model_v4_TED02","TED novel fold AF-A0A0D2K579-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1306947","candidate division TM6 bacterium JCVI TM6SC1"]]},{"id":"NCBITaxon:1307761","l":"Salinispira pacifica","na":1,"nb":1,"a":[["TED%3AAF-V5WIK3-F1-model_v4_TED01","TED highly-symmetric fold AF-V5WIK3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1307761","Salinispira pacifica"]]},{"id":"NCBITaxon:1307853","l":"Mesorhizobium neociceri","na":1,"nb":1,"a":[["TED%3AAF-A0A838B3L0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A838B3L0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1307853","Mesorhizobium neociceri"]]},{"id":"NCBITaxon:1312072","l":"Polaribacter sp. SA4-12","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y0MTL7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Y0MTL7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1312072","Polaribacter sp. SA4-12"]]},{"id":"NCBITaxon:1312363","l":"Roseovarius litorisediminis","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y5S2P8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y5S2P8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1312363","Roseovarius litorisediminis"]]},{"id":"NCBITaxon:1315974","l":"Sphingobium sp. TKS","na":1,"nb":1,"a":[["TED%3AAF-A0A126RV65-F1-model_v4_TED02","TED novel fold AF-A0A126RV65-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1315974","Sphingobium sp. TKS"]]},{"id":"NCBITaxon:1316194","l":"Penicillium subrubescens","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q5U3E9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q5U3E9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1316194","Penicillium subrubescens"]]},{"id":"NCBITaxon:1316588","l":"Fusobacterium nucleatum CTI-7","na":1,"nb":1,"a":[["TED%3AAF-A0A829KSD3-F1-model_v4_TED03","TED novel fold AF-A0A829KSD3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1316588","Fusobacterium nucleatum CTI-7"]]},{"id":"NCBITaxon:1316803","l":"Micromonospora taraxaci","na":1,"nb":1,"a":[["TED%3AAF-A0A561W8A9-F1-model_v4_TED01","TED novel fold AF-A0A561W8A9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1316803","Micromonospora taraxaci"]]},{"id":"NCBITaxon:1317064","l":"","na":1,"nb":1,"a":[["TED%3AAF-W2ZIJ1-F1-model_v4_TED03","TED highly-symmetric fold AF-W2ZIJ1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1317064","Phytophthora nicotianae P10297"]]},{"id":"NCBITaxon:1317066","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A080ZSM0-F1-model_v4_TED01","TED novel fold AF-A0A080ZSM0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1317066","Phytophthora nicotianae P1976"]]},{"id":"NCBITaxon:1317111","l":"Phaeobacter sp. 22II1-1F12B","na":1,"nb":1,"a":[["TED%3AAF-A0A254QQW0-F1-model_v4_TED05","TED novel fold AF-A0A254QQW0-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1317111","Phaeobacter sp. 22II1-1F12B"]]},{"id":"NCBITaxon:1321778","l":"Clostridiales bacterium oral taxon 876 str. F0540","na":1,"nb":1,"a":[["TED%3AAF-U2DBJ5-F1-model_v4_TED02","TED highly-symmetric fold AF-U2DBJ5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1321778","Clostridiales bacterium oral taxon 876 str. F0540"]]},{"id":"NCBITaxon:1321786","l":"Selenomonas sp. oral taxon 892 str. F0426","na":1,"nb":1,"a":[["TED%3AAF-U2JV27-F1-model_v4_TED02","TED highly-symmetric fold AF-U2JV27-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1321786","Selenomonas sp. oral taxon 892 str. F0426"]]},{"id":"NCBITaxon:1321820","l":"Gemella bergeri ATCC 700627","na":1,"nb":1,"a":[["TED%3AAF-U2QQY0-F1-model_v4_TED02","TED highly-symmetric fold AF-U2QQY0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1321820","Gemella bergeri ATCC 700627"]]},{"id":"NCBITaxon:1323745","l":"Arsukibacterium tuosuense","na":1,"nb":1,"a":[["TED%3AAF-A0A285JDX1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A285JDX1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1323745","Arsukibacterium tuosuense"]]},{"id":"NCBITaxon:13243","l":"Rarobacter faecitabidus","na":1,"nb":1,"a":[["TED%3AAF-A0A542ZUH8-F1-model_v4_TED03","TED novel fold AF-A0A542ZUH8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A13243","Rarobacter faecitabidus"]]},{"id":"NCBITaxon:1324314","l":"Paenibacillus selenitireducens","na":1,"nb":1,"a":[["TED%3AAF-A0A1T2XFE4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1T2XFE4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1324314","Paenibacillus selenitireducens"]]},{"id":"NCBITaxon:1324350","l":"Acinetobacter equi","na":1,"nb":1,"a":[["TED%3AAF-A0A0N9WF70-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0N9WF70-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1324350","Acinetobacter equi"]]},{"id":"NCBITaxon:1324935","l":"Limisphaera ngatamarikiensis","na":1,"nb":1,"a":[["TED%3AAF-A0A6M1RI37-F1-model_v4_TED01","TED novel fold AF-A0A6M1RI37-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1324935","Limisphaera ngatamarikiensis"]]},{"id":"NCBITaxon:1325107","l":"Bradyrhizobium zhanjiangense","na":1,"nb":1,"a":[["TED%3AAF-A0A4V1KWK5-F1-model_v4_TED01","TED novel fold AF-A0A4V1KWK5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1325107","Bradyrhizobium zhanjiangense"]]},{"id":"NCBITaxon:1325120","l":"Bradyrhizobium sp. CCBAU 53421","na":1,"nb":1,"a":[["TED%3AAF-A0A7S7TT02-F1-model_v4_TED01","TED novel fold AF-A0A7S7TT02-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1325120","Bradyrhizobium sp. CCBAU 53421"]]},{"id":"NCBITaxon:1325130","l":"Helicobacter fennelliae MRY12-0050","na":1,"nb":1,"a":[["TED%3AAF-T1DVF5-F1-model_v4_TED01","TED highly-symmetric fold AF-T1DVF5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1325130","Helicobacter fennelliae MRY12-0050"]]},{"id":"NCBITaxon:1325733","l":"Fusarium floridanum","na":1,"nb":1,"a":[["TED%3AAF-A0A428P9I3-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A428P9I3-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1325733","Fusarium floridanum"]]},{"id":"NCBITaxon:1325734","l":"Fusarium duplospermum","na":1,"nb":1,"a":[["TED%3AAF-A0A428QAC0-F1-model_v4_TED01","TED novel fold AF-A0A428QAC0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1325734","Fusarium duplospermum"]]},{"id":"NCBITaxon:1326980","l":"Candidatus Aramenus sulfurataquae","na":1,"nb":1,"a":[["TED%3AAF-W7KV71-F1-model_v4_TED02","TED novel fold AF-W7KV71-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1326980","Candidatus Aramenus sulfurataquae"]]},{"id":"NCBITaxon:1327752","l":"Idiomarina aquatica","na":1,"nb":1,"a":[["TED%3AAF-A0A4R6P1E4-F1-model_v4_TED03","TED novel fold AF-A0A4R6P1E4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1327752","Idiomarina aquatica"]]},{"id":"NCBITaxon:13290","l":"Tilletia caries","na":1,"nb":1,"a":[["TED%3AAF-A0A177V7I0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A177V7I0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A13290","Tilletia caries"]]},{"id":"NCBITaxon:1329640","l":"Alkalispirochaeta odontotermitis","na":1,"nb":1,"a":[["TED%3AAF-A0A0A0DL64-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0A0DL64-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1329640","Alkalispirochaeta odontotermitis"]]},{"id":"NCBITaxon:1330035","l":"Osedax symbiont Rs2","na":1,"nb":1,"a":[["TED%3AAF-S6HJ22-F1-model_v4_TED01","TED novel fold AF-S6HJ22-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1330035","Osedax symbiont Rs2"]]},{"id":"NCBITaxon:1332069","l":"Pantoea sp. AS-PWVM4","na":1,"nb":1,"a":[["TED%3AAF-A0A7U9NU73-F1-model_v4_TED01","TED novel fold AF-A0A7U9NU73-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1332069","Pantoea sp. AS-PWVM4"]]},{"id":"NCBITaxon:1333523","l":"Salinarchaeum sp. Harcht-Bsk1","na":1,"nb":1,"a":[["TED%3AAF-R4VXQ2-F1-model_v4_TED01","TED highly-symmetric fold AF-R4VXQ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1333523","Salinarchaeum sp. Harcht-Bsk1"]]},{"id":"NCBITaxon:1333662","l":"Polaribacter atrinae","na":1,"nb":1,"a":[["TED%3AAF-A0A176TCF4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A176TCF4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1333662","Polaribacter atrinae"]]},{"id":"NCBITaxon:133412","l":"Smittium culicis","na":1,"nb":1,"a":[["TED%3AAF-A0A1R1XYA9-F1-model_v4_TED02","TED novel fold AF-A0A1R1XYA9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A133412","Smittium culicis"]]},{"id":"NCBITaxon:1335322","l":"","na":1,"nb":1,"a":[["TED%3AAF-X7VB87-F1-model_v4_TED03","TED novel fold AF-X7VB87-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1335322","Mycobacterium sp. MAC_080597_8934"]]},{"id":"NCBITaxon:1336794","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1D7XZK9-F1-model_v4_TED01","TED novel fold AF-A0A1D7XZK9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1336794","Formosa sp. Hel1_33_131"]]},{"id":"NCBITaxon:1336795","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1D7XRD8-F1-model_v4_TED03","TED novel fold AF-A0A1D7XRD8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1336795","Formosa sp. Hel3_A1_48"]]},{"id":"NCBITaxon:1338009","l":"Sphingobacterium sp. IITKGP-BTPF85","na":1,"nb":1,"a":[["TED%3AAF-A0A0M3C8D6-F1-model_v4_TED03","TED novel fold AF-A0A0M3C8D6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1338009","Sphingobacterium sp. IITKGP-BTPF85"]]},{"id":"NCBITaxon:133804","l":"gamma proteobacterium EBAC31A08","na":1,"nb":1,"a":[["PROSITE%3APS00950","Bacterial rhodopsins signature 1"]],"b":[["NCBITaxon%3A133804","uncultured marine gamma proteobacterium EBAC31A08"]]},{"id":"NCBITaxon:1338689","l":"Pseudomonas sp. JY-Q","na":1,"nb":1,"a":[["TED%3AAF-A0A173HBY6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A173HBY6-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1338689","Pseudomonas sp. JY-Q"]]},{"id":"NCBITaxon:1341132","l":"Aspergillus welwitschiae","na":1,"nb":1,"a":[["TED%3AAF-A0A3F3Q9J6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3F3Q9J6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1341132","Aspergillus welwitschiae"]]},{"id":"NCBITaxon:1341157","l":"Ruminococcus flavefaciens 007c","na":1,"nb":1,"a":[["TED%3AAF-W7UF30-F1-model_v4_TED01","TED novel fold AF-W7UF30-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1341157","Ruminococcus flavefaciens 007c"]]},{"id":"NCBITaxon:1342794","l":"Photobacterium sanctipauli","na":1,"nb":1,"a":[["TED%3AAF-A0A2T3P194-F1-model_v4_TED01","TED novel fold AF-A0A2T3P194-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1342794","Photobacterium sanctipauli"]]},{"id":"NCBITaxon:1345023","l":"Exiguobacterium chiriqhucha RW-2","na":1,"nb":1,"a":[["TED%3AAF-U1LVJ8-F1-model_v4_TED03","TED highly-symmetric fold AF-U1LVJ8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1345023","Exiguobacterium chiriqhucha RW-2"]]},{"id":"NCBITaxon:1346286","l":"Indolivaga macrotermitis","na":1,"nb":1,"a":[["TED%3AAF-A0A1M4VXX6-F1-model_v4_TED02","TED novel fold AF-A0A1M4VXX6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1346286","Indolivaga macrotermitis"]]},{"id":"NCBITaxon:134676","l":"","na":1,"nb":1,"a":[["TED%3AAF-G8RZI7-F1-model_v4_TED02","TED novel fold AF-G8RZI7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A134676","Actinoplanes sp. SE50/110"]]},{"id":"NCBITaxon:1347341","l":"Serratia symbiotica SCt-VLC","na":1,"nb":1,"a":[["TED%3AAF-A0A068R9A3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A068R9A3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1347341","Serratia symbiotica SCt-VLC"]]},{"id":"NCBITaxon:1347389","l":"Colletotrichum sidae","na":1,"nb":1,"a":[["TED%3AAF-A0A4R8TJT3-F1-model_v4_TED01","TED novel fold AF-A0A4R8TJT3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1347389","Colletotrichum sidae"]]},{"id":"NCBITaxon:1347390","l":"Colletotrichum spinosum","na":1,"nb":1,"a":[["TED%3AAF-A0A4R8QPW4-F1-model_v4_TED02","TED novel fold AF-A0A4R8QPW4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1347390","Colletotrichum spinosum"]]},{"id":"NCBITaxon:1348114","l":"Pseudoalteromonas piratica","na":1,"nb":1,"a":[["TED%3AAF-A0A0A7EDY8-F1-model_v4_TED01","TED novel fold AF-A0A0A7EDY8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1348114","Pseudoalteromonas piratica"]]},{"id":"NCBITaxon:1348429","l":"Effusibacillus lacus","na":1,"nb":1,"a":[["TED%3AAF-A0A292YJ73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A292YJ73-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1348429","Effusibacillus lacus"]]},{"id":"NCBITaxon:1348612","l":"Diversispora epigaea","na":1,"nb":1,"a":[["TED%3AAF-A0A397JCT7-F1-model_v4_TED03","TED novel fold AF-A0A397JCT7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1348612","Diversispora epigaea"]]},{"id":"NCBITaxon:1349436","l":"Paenibacillus sp. P46E","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q5XU69-F1-model_v4_TED02","TED novel fold AF-A0A1Q5XU69-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1349436","Paenibacillus sp. P46E"]]},{"id":"NCBITaxon:135208","l":"Hericium alpestre","na":1,"nb":1,"a":[["TED%3AAF-A0A4Y9ZHN8-F1-model_v4_TED01","TED novel fold AF-A0A4Y9ZHN8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A135208","Hericium alpestre"]]},{"id":"NCBITaxon:1353009","l":"Trametes coccinea BRFM310","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y2I6T8-F1-model_v4_TED02","TED novel fold AF-A0A1Y2I6T8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1353009","Trametes coccinea BRFM310"]]},{"id":"NCBITaxon:1353138","l":"Synechococcus sp. CBW1006","na":1,"nb":1,"a":[["TED%3AAF-A0A7T1I3C1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T1I3C1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1353138","Synechococcus sp. CBW1006"]]},{"id":"NCBITaxon:1353529","l":"","na":1,"nb":1,"a":[["TED%3AAF-T0T117-F1-model_v4_TED02","TED highly-symmetric fold AF-T0T117-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1353529","Bacteriovorax sp. BSW11_IV"]]},{"id":"NCBITaxon:1353886","l":"Caballeronia cordobensis","na":1,"nb":1,"a":[["TED%3AAF-A0A158GFG3-F1-model_v4_TED02","TED novel fold AF-A0A158GFG3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1353886","Caballeronia cordobensis"]]},{"id":"NCBITaxon:1357508","l":"Nostoc calcicola FACHB-389","na":1,"nb":1,"a":[["TED%3AAF-A0A1U7I4W4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1U7I4W4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1357508","Nostoc calcicola FACHB-389"]]},{"id":"NCBITaxon:1357716","l":"Batrachochytrium salamandrivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A1S8W4I2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S8W4I2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1357716","Batrachochytrium salamandrivorans"]]},{"id":"NCBITaxon:1358027","l":"Limosilactobacillus reuteri TD1","na":1,"nb":1,"a":[["TED%3AAF-S5NS22-F1-model_v4_TED01","TED novel fold AF-S5NS22-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1358027","Limosilactobacillus reuteri TD1"]]},{"id":"NCBITaxon:1365251","l":"Pseudoalteromonas luteoviolacea H33","na":1,"nb":1,"a":[["TED%3AAF-A0A161Y3H3-F1-model_v4_TED01","TED novel fold AF-A0A161Y3H3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1365251","Pseudoalteromonas luteoviolacea H33"]]},{"id":"NCBITaxon:1365253","l":"Pseudoalteromonas luteoviolacea NCIMB 1942","na":1,"nb":1,"a":[["TED%3AAF-A0A167AQV7-F1-model_v4_TED02","TED novel fold AF-A0A167AQV7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1365253","Pseudoalteromonas luteoviolacea NCIMB 1942"]]},{"id":"NCBITaxon:1367881","l":"Halorientalis persicus","na":1,"nb":1,"a":[["TED%3AAF-A0A1H8S3D3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H8S3D3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1367881","Halorientalis persicus"]]},{"id":"NCBITaxon:13706","l":"Syncephalastrum racemosum","na":1,"nb":1,"a":[["TED%3AAF-A0A1X2HDD3-F1-model_v4_TED01","TED novel fold AF-A0A1X2HDD3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A13706","Syncephalastrum racemosum"]]},{"id":"NCBITaxon:1380412","l":"Devosia sp. DBB001","na":1,"nb":1,"a":[["TED%3AAF-A0A024KHJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A024KHJ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1380412","Devosia sp. DBB001"]]},{"id":"NCBITaxon:1382356","l":"Thermorudis peleae","na":1,"nb":1,"a":[["TED%3AAF-A0A831TAE2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A831TAE2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1382356","Thermorudis peleae"]]},{"id":"NCBITaxon:1382522","l":"Kuraishia capsulata CBS 1993","na":1,"nb":1,"a":[["TED%3AAF-W6MUB0-F1-model_v4_TED01","TED novel fold AF-W6MUB0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1382522","Kuraishia capsulata CBS 1993"]]},{"id":"NCBITaxon:1383067","l":"Desulforamulus profundi","na":1,"nb":1,"a":[["TED%3AAF-A0A2C6MBR6-F1-model_v4_TED01","TED novel fold AF-A0A2C6MBR6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1383067","Desulforamulus profundi"]]},{"id":"NCBITaxon:1383844","l":"Halorubrum persicum","na":1,"nb":1,"a":[["TED%3AAF-A0A2G1WLM2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2G1WLM2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1383844","Halorubrum persicum"]]},{"id":"NCBITaxon:1385367","l":"Snodgrassella alvi SCGC AB-598-J21","na":1,"nb":1,"a":[["TED%3AAF-A0A074VYV1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A074VYV1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1385367","Snodgrassella alvi SCGC AB-598-J21"]]},{"id":"NCBITaxon:1385624","l":"Desulfofustis sp. PB-SRB1","na":1,"nb":1,"a":[["TED%3AAF-V4J0S4-F1-model_v4_TED02","TED novel fold AF-V4J0S4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1385624","Desulfofustis sp. PB-SRB1"]]},{"id":"NCBITaxon:1385975","l":"Algisphaera agarilytica","na":1,"nb":1,"a":[["TED%3AAF-A0A7X0H9L7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X0H9L7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1385975","Algisphaera agarilytica"]]},{"id":"NCBITaxon:1386941","l":"Synechococcus sp. MVIR-18-1","na":1,"nb":1,"a":[["TED%3AAF-A0A7G8F7M3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7G8F7M3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1386941","Synechococcus sp. MVIR-18-1"]]},{"id":"NCBITaxon:1387779","l":"Cohnella nanjingensis","na":1,"nb":1,"a":[["TED%3AAF-A0A7X0RVC7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7X0RVC7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1387779","Cohnella nanjingensis"]]},{"id":"NCBITaxon:1389935","l":"Achromobacter animicus","na":1,"nb":1,"a":[["TED%3AAF-A0A6S6ZIK1-F1-model_v4_TED02","TED novel fold AF-A0A6S6ZIK1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1389935","Achromobacter animicus"]]},{"id":"NCBITaxon:1390185","l":"Pseudoalteromonas sp. DL-6","na":1,"nb":1,"a":[["TED%3AAF-A0A4P6T1Q8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P6T1Q8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1390185","Pseudoalteromonas sp. DL-6"]]},{"id":"NCBITaxon:1390249","l":"Desulfuribacillus stibiiarsenatis","na":1,"nb":1,"a":[["TED%3AAF-A0A1E5L3L8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E5L3L8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1390249","Desulfuribacillus stibiiarsenatis"]]},{"id":"NCBITaxon:1392877","l":"Pseudomonas oryzae","na":1,"nb":1,"a":[["TED%3AAF-A0A1H1M2A5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H1M2A5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1392877","Pseudomonas oryzae"]]},{"id":"NCBITaxon:1392998","l":"Candidatus Methanoperedens nitratireducens","na":1,"nb":1,"a":[["TED%3AAF-A0A062V4L1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A062V4L1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1392998","Candidatus Methanoperedens nitratireducens"]]},{"id":"NCBITaxon:1394711","l":"","na":1,"nb":1,"a":[["TED%3AAF-V5RW81-F1-model_v4_TED01","TED highly-symmetric fold AF-V5RW81-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1394711","Candidatus Saccharibacteria bacterium RAAC3_TM7_1"]]},{"id":"NCBITaxon:1394984","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A132NVQ6-F1-model_v4_TED03","TED novel fold AF-A0A132NVQ6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1394984","Giardia duodenalis assemblage B"]]},{"id":"NCBITaxon:1395119","l":"Salmonella enterica subsp. arizonae serovar 18:z4,z23:- str. CVM N26626","na":1,"nb":1,"a":[["TED%3AAF-A0A3S5YLL3-F1-model_v4_TED02","TED novel fold AF-A0A3S5YLL3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1395119","Salmonella enterica subsp. arizonae serovar 18:z4,z23:- str. CVM N26626"]]},{"id":"NCBITaxon:1395516","l":"","na":1,"nb":1,"a":[["TED%3AAF-V8R7U0-F1-model_v4_TED01","TED highly-symmetric fold AF-V8R7U0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1395516","Pseudomonas atacamensis R28-S"]]},{"id":"NCBITaxon:1395570","l":"Burkholderia cepacia JBK9","na":1,"nb":1,"a":[["TED%3AAF-A0A0U4DQI1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0U4DQI1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1395570","Burkholderia cepacia JBK9"]]},{"id":"NCBITaxon:1395587","l":"Paenibacillus sp. MAEPY2","na":1,"nb":1,"a":[["TED%3AAF-A0A0A2UF58-F1-model_v4_TED01","TED novel fold AF-A0A0A2UF58-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1395587","Paenibacillus sp. MAEPY2"]]},{"id":"NCBITaxon:1395589","l":"Leptospira interrogans serovar Linhai str. 56609","na":1,"nb":1,"a":[["TED%3AAF-A0A0C5WN51-F1-model_v4_TED01","TED novel fold AF-A0A0C5WN51-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1395589","Leptospira interrogans serovar Linhai str. 56609"]]},{"id":"NCBITaxon:1395624","l":"Francisella sp. LA112445","na":1,"nb":1,"a":[["TED%3AAF-A0A7M3TD02-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7M3TD02-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1395624","Francisella sp. LA112445"]]},{"id":"NCBITaxon:1396819","l":"Solimonas terrae","na":1,"nb":1,"a":[["TED%3AAF-A0A6M2BWP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6M2BWP8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1396819","Solimonas terrae"]]},{"id":"NCBITaxon:1397112","l":"Patiriisocius marinus","na":1,"nb":1,"a":[["TED%3AAF-A0A5J4J2Z6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5J4J2Z6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1397112","Patiriisocius marinus"]]},{"id":"NCBITaxon:1397368","l":"Pseudonocardia sediminis","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q7UUS6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q7UUS6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1397368","Pseudonocardia sediminis"]]},{"id":"NCBITaxon:1397476","l":"Martelella radicis","na":1,"nb":1,"a":[["TED%3AAF-A0A7W6KR34-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7W6KR34-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1397476","Martelella radicis"]]},{"id":"NCBITaxon:1398203","l":"Xenorhabdus bovienii str. kraussei Quebec","na":1,"nb":1,"a":[["TED%3AAF-A0A077PJZ1-F1-model_v4_TED02","TED novel fold AF-A0A077PJZ1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1398203","Xenorhabdus bovienii str. kraussei Quebec"]]},{"id":"NCBITaxon:1400155","l":"","na":1,"nb":1,"a":[["Pfam%3APF26398","Cap2 central linker domain"]],"b":[["NCBITaxon%3A1400155","Enterobacter hormaechei subsp. hoffmannii UCI 50"]]},{"id":"NCBITaxon:1400863","l":"","na":1,"nb":1,"a":[["TED%3AAF-W6MA62-F1-model_v4_TED02","TED novel fold AF-W6MA62-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1400863","Candidatus Competibacter denitrificans Run_A_D11"]]},{"id":"NCBITaxon:1400979","l":"Pontibacter diazotrophicus","na":1,"nb":1,"a":[["TED%3AAF-A0A3D8L6P6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D8L6P6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1400979","Pontibacter diazotrophicus"]]},{"id":"NCBITaxon:1401073","l":"Prevotella melaninogenica DNF00666","na":1,"nb":1,"a":[["TED%3AAF-A0A096AJX9-F1-model_v4_TED01","TED novel fold AF-A0A096AJX9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1401073","Prevotella melaninogenica DNF00666"]]},{"id":"NCBITaxon:1401087","l":"Dickeya aquatica","na":1,"nb":1,"a":[["TED%3AAF-A0A375A9L4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A375A9L4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1401087","Dickeya aquatica"]]},{"id":"NCBITaxon:1402860","l":"[Bacillus] enclensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0V8H3K4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0V8H3K4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1402860","[Bacillus] enclensis"]]},{"id":"NCBITaxon:1403564","l":"Salmonella enterica subsp. enterica serovar Hull","na":1,"nb":1,"a":[["TED%3AAF-A0A5X4PE40-F1-model_v4_TED01","TED novel fold AF-A0A5X4PE40-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1403564","Salmonella enterica subsp. enterica serovar Hull"]]},{"id":"NCBITaxon:1403937","l":"","na":1,"nb":1,"a":[["TED%3AAF-W1UTG4-F1-model_v4_TED01","TED novel fold AF-W1UTG4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1403937","Streptococcus sp. DORA_10"]]},{"id":"NCBITaxon:1403947","l":"","na":1,"nb":1,"a":[["TED%3AAF-W1VBZ4-F1-model_v4_TED01","TED highly-symmetric fold AF-W1VBZ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1403947","Streptococcus parasanguinis DORA_23_24"]]},{"id":"NCBITaxon:1403949","l":"","na":1,"nb":1,"a":[["TED%3AAF-W1UZK5-F1-model_v4_TED02","TED novel fold AF-W1UZK5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1403949","Veillonella dispar DORA_11"]]},{"id":"NCBITaxon:1404367","l":"Bradyrhizobium symbiodeficiens","na":1,"nb":1,"a":[["TED%3AAF-A0A6G9A9B1-F1-model_v4_TED01","TED novel fold AF-A0A6G9A9B1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1404367","Bradyrhizobium symbiodeficiens"]]},{"id":"NCBITaxon:1404429","l":"Bradyrhizobium sp. 2S1","na":1,"nb":1,"a":[["TED%3AAF-A0A850HYB4-F1-model_v4_TED01","TED novel fold AF-A0A850HYB4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1404429","Bradyrhizobium sp. 2S1"]]},{"id":"NCBITaxon:1404888","l":"Bradyrhizobium sp. 1(2017)","na":1,"nb":1,"a":[["TED%3AAF-A0A6G8U5S3-F1-model_v4_TED02","TED novel fold AF-A0A6G8U5S3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1404888","Bradyrhizobium sp. 1(2017)"]]},{"id":"NCBITaxon:1407017","l":"Clostridium botulinum B str. Osaka05","na":1,"nb":1,"a":[["TED%3AAF-A0A060N8U1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A060N8U1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1407017","Clostridium botulinum B str. Osaka05"]]},{"id":"NCBITaxon:1407055","l":"Candidatus Nitrosotenuis uzonensis","na":1,"nb":1,"a":[["TED%3AAF-A0A812F2F8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812F2F8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1407055","Candidatus Nitrosotenuis uzonensis"]]},{"id":"NCBITaxon:1408161","l":"Plenodomus tracheiphilus IPT5","na":1,"nb":1,"a":[["TED%3AAF-A0A6A7APH0-F1-model_v4_TED02","TED novel fold AF-A0A6A7APH0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1408161","Plenodomus tracheiphilus IPT5"]]},{"id":"NCBITaxon:1408254","l":"Brevibacillus panacihumi W25","na":1,"nb":1,"a":[["TED%3AAF-V6MJN1-F1-model_v4_TED01","TED novel fold AF-V6MJN1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1408254","Brevibacillus panacihumi W25"]]},{"id":"NCBITaxon:1408281","l":"Endomicrobium proavitum","na":1,"nb":1,"a":[["TED%3AAF-A0A0G3WK72-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G3WK72-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1408281","Endomicrobium proavitum"]]},{"id":"NCBITaxon:1408282","l":"Geobacillus thermopakistaniensis","na":1,"nb":1,"a":[["Pfam%3APF02903","Alpha amylase, N-terminal ig-like domain"]],"b":[["NCBITaxon%3A1408282","Geobacillus thermopakistaniensis"]]},{"id":"NCBITaxon:1408889","l":"Clostridium tyrobutyricum DIVETGP","na":1,"nb":1,"a":[["TED%3AAF-W6NH89-F1-model_v4_TED02","TED novel fold AF-W6NH89-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1408889","Clostridium tyrobutyricum DIVETGP"]]},{"id":"NCBITaxon:1408890","l":"Rhodobacter sp. CACIA14H1","na":1,"nb":1,"a":[["TED%3AAF-V7EIX2-F1-model_v4_TED07","TED highly-symmetric fold AF-V7EIX2-F1-model_v4_TED07"]],"b":[["NCBITaxon%3A1408890","Rhodobacter sp. CACIA14H1"]]},{"id":"NCBITaxon:1410573","l":"uncultured Acidilobus sp. MG","na":1,"nb":1,"a":[["TED%3AAF-V4JVL8-F1-model_v4_TED01","TED highly-symmetric fold AF-V4JVL8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1410573","uncultured Acidilobus sp. MG"]]},{"id":"NCBITaxon:1410606","l":"Candidatus Nitrosopelagicus brevis","na":1,"nb":1,"a":[["TED%3AAF-A0A0A7V1V1-F1-model_v4_TED03","TED novel fold AF-A0A0A7V1V1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1410606","Candidatus Nitrosopelagicus brevis"]]},{"id":"NCBITaxon:1410619","l":"Serratia sp. DD3","na":1,"nb":1,"a":[["TED%3AAF-A0A084A1V1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A084A1V1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1410619","Serratia sp. DD3"]]},{"id":"NCBITaxon:1410655","l":"Enterococcus faecalis PF3","na":1,"nb":1,"a":[["TED%3AAF-V7ZKW3-F1-model_v4_TED02","TED highly-symmetric fold AF-V7ZKW3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1410655","Enterococcus faecalis PF3"]]},{"id":"NCBITaxon:1411118","l":"Thermomonospora cellulosilytica","na":1,"nb":1,"a":[["TED%3AAF-A0A7W3N3V2-F1-model_v4_TED01","TED novel fold AF-A0A7W3N3V2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1411118","Thermomonospora cellulosilytica"]]},{"id":"NCBITaxon:1411122","l":"Hymenobacter luteus","na":1,"nb":1,"a":[["TED%3AAF-A0A7W9SYW3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W9SYW3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1411122","Hymenobacter luteus"]]},{"id":"NCBITaxon:1411148","l":"Tannerella sp. oral taxon BU063 isolate Cell 2","na":1,"nb":1,"a":[["TED%3AAF-W2C603-F1-model_v4_TED04","TED novel fold AF-W2C603-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1411148","Tannerella sp. oral taxon BU063 isolate Cell 2"]]},{"id":"NCBITaxon:1415","l":"","na":1,"nb":1,"a":[["Pfam%3APF03424","Carbohydrate binding domain (family 17/28)"]],"b":[["NCBITaxon%3A1415","Bacillus sp. KSM-635"]]},{"id":"NCBITaxon:1415168","l":"Lactococcus cremoris subsp. cremoris GE214","na":1,"nb":1,"a":[["TED%3AAF-A0A084AAH4-F1-model_v4_TED01","TED novel fold AF-A0A084AAH4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1415168","Lactococcus cremoris subsp. cremoris GE214"]]},{"id":"NCBITaxon:1415546","l":"Streptomyces sp. MMG1533","na":1,"nb":1,"a":[["TED%3AAF-A0A0M8TUR4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0M8TUR4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1415546","Streptomyces sp. MMG1533"]]},{"id":"NCBITaxon:1415551","l":"Streptomyces sp. WM4235","na":1,"nb":1,"a":[["TED%3AAF-A0A0M8SSR9-F1-model_v4_TED01","TED novel fold AF-A0A0M8SSR9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1415551","Streptomyces sp. WM4235"]]},{"id":"NCBITaxon:1415773","l":"Mycoplasma ovis str. Michigan","na":1,"nb":1,"a":[["TED%3AAF-V9R9K3-F1-model_v4_TED01","TED novel fold AF-V9R9K3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1415773","Mycoplasma ovis str. Michigan"]]},{"id":"NCBITaxon:1415782","l":"Mycolicibacterium mucogenicum 261Sha1.1M5","na":1,"nb":1,"a":[["TED%3AAF-A0A495CRS6-F1-model_v4_TED07","TED novel fold AF-A0A495CRS6-F1-model_v4_TED07"]],"b":[["NCBITaxon%3A1415782","Mycolicibacterium mucogenicum 261Sha1.1M5"]]},{"id":"NCBITaxon:1416","l":"","na":1,"nb":1,"a":[["Pfam%3APF09154","Alpha-amylase C-terminal"]],"b":[["NCBITaxon%3A1416","Bacillus sp. 707"]]},{"id":"NCBITaxon:1417629","l":"Anaerosolibacter carboniphilus","na":1,"nb":1,"a":[["TED%3AAF-A0A841KW00-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841KW00-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1417629","Anaerosolibacter carboniphilus"]]},{"id":"NCBITaxon:1418234","l":"Sneathiella chungangensis","na":1,"nb":1,"a":[["TED%3AAF-A0A845MJ63-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A845MJ63-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1418234","Sneathiella chungangensis"]]},{"id":"NCBITaxon:1420851","l":"Methyloprofundus sedimenti","na":1,"nb":1,"a":[["TED%3AAF-A0A1V8M3J1-F1-model_v4_TED01","TED novel fold AF-A0A1V8M3J1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1420851","Methyloprofundus sedimenti"]]},{"id":"NCBITaxon:1420899","l":"Streptomyces klenkii","na":1,"nb":1,"a":[["TED%3AAF-A0A3A9ZW83-F1-model_v4_TED01","TED novel fold AF-A0A3A9ZW83-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1420899","Streptomyces klenkii"]]},{"id":"NCBITaxon:1423959","l":"Chryseobacterium contaminans","na":1,"nb":1,"a":[["TED%3AAF-A0A1M7CGX0-F1-model_v4_TED01","TED novel fold AF-A0A1M7CGX0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1423959","Chryseobacterium contaminans"]]},{"id":"NCBITaxon:1424653","l":"Caminibacter pacificus","na":1,"nb":1,"a":[["TED%3AAF-A0A3N1YR43-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3N1YR43-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1424653","Caminibacter pacificus"]]},{"id":"NCBITaxon:142586","l":"Eubacterium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A3D0GVH0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D0GVH0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A142586","Eubacterium sp."]]},{"id":"NCBITaxon:142588","l":"Isobaculum melis","na":1,"nb":1,"a":[["TED%3AAF-A0A1H9QPQ1-F1-model_v4_TED07","TED highly-symmetric fold AF-A0A1H9QPQ1-F1-model_v4_TED07"]],"b":[["NCBITaxon%3A142588","Isobaculum melis"]]},{"id":"NCBITaxon:1427296","l":"Mycobacterium avium XTB13-223","na":1,"nb":1,"a":[["TED%3AAF-A0A049DXN9-F1-model_v4_TED01","TED novel fold AF-A0A049DXN9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1427296","Mycobacterium avium XTB13-223"]]},{"id":"NCBITaxon:1427370","l":"Chlamydia pecorum DBDeUG","na":1,"nb":1,"a":[["TED%3AAF-V8TRT3-F1-model_v4_TED01","TED highly-symmetric fold AF-V8TRT3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1427370","Chlamydia pecorum DBDeUG"]]},{"id":"NCBITaxon:1428644","l":"Mangrovactinospora gilvigrisea","na":1,"nb":1,"a":[["TED%3AAF-A0A1J7BG73-F1-model_v4_TED01","TED novel fold AF-A0A1J7BG73-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1428644","Mangrovactinospora gilvigrisea"]]},{"id":"NCBITaxon:1429438","l":"","na":1,"nb":1,"a":[["TED%3AAF-W4LG66-F1-model_v4_TED01","TED highly-symmetric fold AF-W4LG66-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1429438","Candidatus Entotheonella factor"]]},{"id":"NCBITaxon:1432049","l":"Rhizobium etli bv. phaseoli str. IE4803","na":1,"nb":1,"a":[["TED%3AAF-A0A7U4IWE8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7U4IWE8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1432049","Rhizobium etli bv. phaseoli str. IE4803"]]},{"id":"NCBITaxon:1432564","l":"Brachybacterium aquaticum","na":1,"nb":1,"a":[["TED%3AAF-A0A841ADV7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A841ADV7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1432564","Brachybacterium aquaticum"]]},{"id":"NCBITaxon:143451","l":"Plasmopara viticola","na":1,"nb":1,"a":[["Pfam%3APF08315","cwf18 pre-mRNA splicing factor"]],"b":[["NCBITaxon%3A143451","Plasmopara viticola"]]},{"id":"NCBITaxon:1434707","l":"Taibaiella chishuiensis","na":1,"nb":1,"a":[["TED%3AAF-A0A2P8D5N9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2P8D5N9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1434707","Taibaiella chishuiensis"]]},{"id":"NCBITaxon:1435370","l":"Burkholderia pseudomallei MSHR4000","na":1,"nb":1,"a":[["TED%3AAF-A0A0F6L4H7-F1-model_v4_TED01","TED novel fold AF-A0A0F6L4H7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1435370","Burkholderia pseudomallei MSHR4000"]]},{"id":"NCBITaxon:1435465","l":"Fluviicoccus keumensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q7ZC11-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q7ZC11-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1435465","Fluviicoccus keumensis"]]},{"id":"NCBITaxon:1436","l":"","na":1,"nb":1,"a":[["Pfam%3APF18449","Pesticidal crystal protein Cry1Aa, domain IV"]],"b":[["NCBITaxon%3A1436","Bacillus thuringiensis serovar entomocidus"]]},{"id":"NCBITaxon:1437059","l":"Magnetospirillum moscoviense","na":1,"nb":1,"a":[["TED%3AAF-A0A178MYG0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A178MYG0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1437059","Magnetospirillum moscoviense"]]},{"id":"NCBITaxon:1437444","l":"Hydrogenophaga sp. T4","na":1,"nb":1,"a":[["TED%3AAF-W7WNT5-F1-model_v4_TED01","TED highly-symmetric fold AF-W7WNT5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1437444","Hydrogenophaga sp. T4"]]},{"id":"NCBITaxon:1437446","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A421CAQ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A421CAQ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1437446","Mesotoga sp. BH458_6_3_2_1"]]},{"id":"NCBITaxon:1437453","l":"Streptomyces leeuwenhoekii","na":1,"nb":1,"a":[["TED%3AAF-A0A0F7VQ57-F1-model_v4_TED03","TED novel fold AF-A0A0F7VQ57-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1437453","Streptomyces leeuwenhoekii"]]},{"id":"NCBITaxon:1444258","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A029H999-F1-model_v4_TED01","TED novel fold AF-A0A029H999-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1444258","Escherichia coli 2-005-03_S4_C3"]]},{"id":"NCBITaxon:1444289","l":"Clostridium novyi A str. 4552","na":1,"nb":1,"a":[["TED%3AAF-A0A0A0IBM0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0A0IBM0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1444289","Clostridium novyi A str. 4552"]]},{"id":"NCBITaxon:1444315","l":"Lysobacter capsici AZ78","na":1,"nb":1,"a":[["TED%3AAF-A0A108UBP0-F1-model_v4_TED01","TED novel fold AF-A0A108UBP0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1444315","Lysobacter capsici AZ78"]]},{"id":"NCBITaxon:1445661","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A4S3MRC1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S3MRC1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1445661","Aliigemmobacter aestuarii"]]},{"id":"NCBITaxon:1446494","l":"Lacticaseibacillus paracasei N1115","na":1,"nb":1,"a":[["TED%3AAF-A0A806L751-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A806L751-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1446494","Lacticaseibacillus paracasei N1115"]]},{"id":"NCBITaxon:1447260","l":"Aliarcobacter butzleri L352","na":1,"nb":1,"a":[["TED%3AAF-A0A837JE98-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A837JE98-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1447260","Aliarcobacter butzleri L352"]]},{"id":"NCBITaxon:1447781","l":"Maribacter caenipelagi","na":1,"nb":1,"a":[["TED%3AAF-A0A4R7D3Q6-F1-model_v4_TED03","TED novel fold AF-A0A4R7D3Q6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1447781","Maribacter caenipelagi"]]},{"id":"NCBITaxon:1448271","l":"Bacillus oleivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A285CJD4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A285CJD4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1448271","Bacillus oleivorans"]]},{"id":"NCBITaxon:1449167","l":"Epsilonproteobacteria bacterium SCGC AD-308-I21","na":1,"nb":1,"a":[["TED%3AAF-A0A318DDP5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A318DDP5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1449167","Epsilonproteobacteria bacterium SCGC AD-308-I21"]]},{"id":"NCBITaxon:1450156","l":"Defluviitalea raffinosedens","na":1,"nb":1,"a":[["TED%3AAF-A0A7C8LR52-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C8LR52-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1450156","Defluviitalea raffinosedens"]]},{"id":"NCBITaxon:1450533","l":"Aspergillus niger CBS 101883","na":1,"nb":1,"a":[["TED%3AAF-A0A319AKL5-F1-model_v4_TED01","TED novel fold AF-A0A319AKL5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1450533","Aspergillus niger CBS 101883"]]},{"id":"NCBITaxon:1450648","l":"Clostridium oryzae","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4IHY1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V4IHY1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1450648","Clostridium oryzae"]]},{"id":"NCBITaxon:1452364","l":"methanogenic archaeon mixed culture ISO4-G1","na":1,"nb":1,"a":[["TED%3AAF-A0A126QVC0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A126QVC0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1452364","methanogenic archaeon mixed culture ISO4-G1"]]},{"id":"NCBITaxon:1452450","l":"Neoroseomonas alkaliterrae","na":1,"nb":1,"a":[["TED%3AAF-A0A840YB57-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A840YB57-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1452450","Neoroseomonas alkaliterrae"]]},{"id":"NCBITaxon:1452508","l":"Caldimonas caldifontis","na":1,"nb":1,"a":[["TED%3AAF-A0A2S5SVM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5SVM3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1452508","Caldimonas caldifontis"]]},{"id":"NCBITaxon:1453103","l":"Prauserella shujinwangii","na":1,"nb":1,"a":[["TED%3AAF-A0A2T0LNK4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2T0LNK4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1453103","Prauserella shujinwangii"]]},{"id":"NCBITaxon:1456162","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A075H869-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A075H869-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1456162","uncultured marine thaumarchaeote KM3_46_G12"]]},{"id":"NCBITaxon:1457234","l":"Nocardioides zeae","na":1,"nb":1,"a":[["TED%3AAF-A0A6P0HF47-F1-model_v4_TED01","TED novel fold AF-A0A6P0HF47-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1457234","Nocardioides zeae"]]},{"id":"NCBITaxon:1457822","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A075FYZ3-F1-model_v4_TED01","TED novel fold AF-A0A075FYZ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1457822","uncultured marine group II/III euryarchaeote AD1000_88_G11"]]},{"id":"NCBITaxon:1459636","l":"Candidatus Nitrososphaera evergladensis SR1","na":1,"nb":1,"a":[["TED%3AAF-A0A075MU04-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A075MU04-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1459636","Candidatus Nitrososphaera evergladensis SR1"]]},{"id":"NCBITaxon:1460083","l":"Serratia liquefaciens FK01","na":1,"nb":1,"a":[["TED%3AAF-A0A7U9PQR8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7U9PQR8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1460083","Serratia liquefaciens FK01"]]},{"id":"NCBITaxon:1460289","l":"Chrysochromulina tobinii","na":1,"nb":1,"a":[["TED%3AAF-A0A0M0JKQ0-F1-model_v4_TED02","TED novel fold AF-A0A0M0JKQ0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1460289","Chrysochromulina tobinii"]]},{"id":"NCBITaxon:1460647","l":"Vibrio sp. JCM 19052","na":1,"nb":1,"a":[["TED%3AAF-A0A061Q7K1-F1-model_v4_TED01","TED novel fold AF-A0A061Q7K1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1460647","Vibrio sp. JCM 19052"]]},{"id":"NCBITaxon:1461","l":"Psychrobacillus insolitus","na":1,"nb":1,"a":[["TED%3AAF-A0A2W7P9M5-F1-model_v4_TED02","TED novel fold AF-A0A2W7P9M5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1461","Psychrobacillus insolitus"]]},{"id":"NCBITaxon:1461337","l":"Aestuariispira insulae","na":1,"nb":1,"a":[["TED%3AAF-A0A3D9HK82-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D9HK82-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1461337","Aestuariispira insulae"]]},{"id":"NCBITaxon:1461581","l":"Pseudomonas saudimassiliensis","na":1,"nb":1,"a":[["TED%3AAF-A0A078MFS6-F1-model_v4_TED03","TED novel fold AF-A0A078MFS6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1461581","Pseudomonas saudimassiliensis"]]},{"id":"NCBITaxon:1461694","l":"Pseudooceanicola atlanticus","na":1,"nb":1,"a":[["TED%3AAF-A0A0A0E8I5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0A0E8I5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1461694","Pseudooceanicola atlanticus"]]},{"id":"NCBITaxon:1462440","l":"Pseudoduganella ginsengisoli","na":1,"nb":1,"a":[["TED%3AAF-A0A6L6PV27-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A6L6PV27-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1462440","Pseudoduganella ginsengisoli"]]},{"id":"NCBITaxon:1463597","l":"Qipengyuania oceanensis","na":1,"nb":1,"a":[["TED%3AAF-A0A844YBM6-F1-model_v4_TED01","TED novel fold AF-A0A844YBM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1463597","Qipengyuania oceanensis"]]},{"id":"NCBITaxon:1465486","l":"Frigidibacter albus","na":1,"nb":1,"a":[["TED%3AAF-A0A6L8VHY0-F1-model_v4_TED01","TED novel fold AF-A0A6L8VHY0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1465486","Frigidibacter albus"]]},{"id":"NCBITaxon:1469603","l":"Spirosoma oryzae","na":1,"nb":1,"a":[["TED%3AAF-A0A2T0S8I1-F1-model_v4_TED07","TED highly-symmetric fold AF-A0A2T0S8I1-F1-model_v4_TED07"]],"b":[["NCBITaxon%3A1469603","Spirosoma oryzae"]]},{"id":"NCBITaxon:1470066","l":"Nitrosopumilus cobalaminigenes","na":1,"nb":1,"a":[["TED%3AAF-A0A7D5LZ07-F1-model_v4_TED01","TED novel fold AF-A0A7D5LZ07-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1470066","Nitrosopumilus cobalaminigenes"]]},{"id":"NCBITaxon:1471381","l":"Pseudomonas helmanticensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4R7UU40-F1-model_v4_TED01","TED novel fold AF-A0A4R7UU40-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1471381","Pseudomonas helmanticensis"]]},{"id":"NCBITaxon:1472378","l":"Sinorhizobium glycinis","na":1,"nb":1,"a":[["TED%3AAF-A0A178XTK6-F1-model_v4_TED02","TED novel fold AF-A0A178XTK6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1472378","Sinorhizobium glycinis"]]},{"id":"NCBITaxon:1472416","l":"Butyricimonas faecihominis","na":1,"nb":1,"a":[["TED%3AAF-A0A7W6MZV9-F1-model_v4_TED04","TED novel fold AF-A0A7W6MZV9-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1472416","Butyricimonas faecihominis"]]},{"id":"NCBITaxon:1472767","l":"Lentibacillus amyloliquefaciens","na":1,"nb":1,"a":[["TED%3AAF-A0A0U4EI34-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0U4EI34-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1472767","Lentibacillus amyloliquefaciens"]]},{"id":"NCBITaxon:1473598","l":"Paludibaculum fermentans","na":1,"nb":1,"a":[["TED%3AAF-A0A7S7NND6-F1-model_v4_TED01","TED novel fold AF-A0A7S7NND6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1473598","Paludibaculum fermentans"]]},{"id":"NCBITaxon:1476194","l":"Helicobacter sp. 11S02596-1","na":1,"nb":1,"a":[["TED%3AAF-A0A268TH10-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A268TH10-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1476194","Helicobacter sp. 11S02596-1"]]},{"id":"NCBITaxon:1476195","l":"Helicobacter sp. 11S02629-2","na":1,"nb":1,"a":[["TED%3AAF-A0A268TL45-F1-model_v4_TED01","TED novel fold AF-A0A268TL45-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1476195","Helicobacter sp. 11S02629-2"]]},{"id":"NCBITaxon:1476464","l":"Pedobacter xixiisoli","na":1,"nb":1,"a":[["TED%3AAF-A0A285ZUL6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A285ZUL6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1476464","Pedobacter xixiisoli"]]},{"id":"NCBITaxon:1476959","l":"Marinobacterium mangrovicola","na":1,"nb":1,"a":[["TED%3AAF-A0A4R1G9Q6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R1G9Q6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1476959","Marinobacterium mangrovicola"]]},{"id":"NCBITaxon:1476999","l":"Olsenella sp. DNF00959","na":1,"nb":1,"a":[["TED%3AAF-A0A134A4J3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A134A4J3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1476999","Olsenella sp. DNF00959"]]},{"id":"NCBITaxon:1477506","l":"Prauserella flavalba","na":1,"nb":1,"a":[["TED%3AAF-A0A318M583-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A318M583-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1477506","Prauserella flavalba"]]},{"id":"NCBITaxon:1478134","l":"Novosphingobium sp. KN65.2","na":1,"nb":1,"a":[["TED%3AAF-A0A158S4C5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A158S4C5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1478134","Novosphingobium sp. KN65.2"]]},{"id":"NCBITaxon:1479485","l":"Tolypothrix bouteillei VB521301","na":1,"nb":1,"a":[["TED%3AAF-A0A0C1QRR2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0C1QRR2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1479485","Tolypothrix bouteillei VB521301"]]},{"id":"NCBITaxon:1481457","l":"Spongiivirga citrea","na":1,"nb":1,"a":[["TED%3AAF-A0A6M0CF90-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6M0CF90-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1481457","Spongiivirga citrea"]]},{"id":"NCBITaxon:1481663","l":"Vibrio metoecus","na":1,"nb":1,"a":[["Pfam%3APF20247","Domain of unknown function (DUF6602)"]],"b":[["NCBITaxon%3A1481663","Vibrio metoecus"]]},{"id":"NCBITaxon:1481926","l":"Vibrio sp. JCM 19236","na":1,"nb":1,"a":[["TED%3AAF-A0A0B8PST6-F1-model_v4_TED01","TED novel fold AF-A0A0B8PST6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1481926","Vibrio sp. JCM 19236"]]},{"id":"NCBITaxon:1482732","l":"Alkaliphilus pronyensis","na":1,"nb":1,"a":[["TED%3AAF-A0A6I0FE98-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I0FE98-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1482732","Alkaliphilus pronyensis"]]},{"id":"NCBITaxon:148305","l":"Pyricularia grisea","na":1,"nb":1,"a":[["TED%3AAF-A0A6P8AZV3-F1-model_v4_TED01","TED novel fold AF-A0A6P8AZV3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A148305","Pyricularia grisea"]]},{"id":"NCBITaxon:148448","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1I1K5F6-F1-model_v4_TED01","TED novel fold AF-A0A1I1K5F6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A148448","Natronobacterium haloterrestre"]]},{"id":"NCBITaxon:1485002","l":"Acinetobacter sp. ETR1","na":1,"nb":1,"a":[["TED%3AAF-A0A072CSU4-F1-model_v4_TED04","TED novel fold AF-A0A072CSU4-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1485002","Acinetobacter sp. ETR1"]]},{"id":"NCBITaxon:1486246","l":"Halomonas sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A355PHS8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A355PHS8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1486246","Halomonas sp."]]},{"id":"NCBITaxon:1486281","l":"Roseovarius sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A350LS23-F1-model_v4_TED01","TED novel fold AF-A0A350LS23-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1486281","Roseovarius sp."]]},{"id":"NCBITaxon:1487726","l":"Mycobacterium persicum","na":1,"nb":1,"a":[["TED%3AAF-A0A498PG61-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A498PG61-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1487726","Mycobacterium persicum"]]},{"id":"NCBITaxon:1487949","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0C1NT92-F1-model_v4_TED02","TED novel fold AF-A0A0C1NT92-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1487949","Smithella sp. SC_K08D17"]]},{"id":"NCBITaxon:148818","l":"Hamiltosporidium magnivora","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q9LGG3-F1-model_v4_TED01","TED novel fold AF-A0A4Q9LGG3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A148818","Hamiltosporidium magnivora"]]},{"id":"NCBITaxon:1494","l":"Clostridium cochlearium","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y3V7F0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y3V7F0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1494","Clostridium cochlearium"]]},{"id":"NCBITaxon:1495144","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A110A2W2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A110A2W2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1495144","methanogenic archaeon ISO4-H5"]]},{"id":"NCBITaxon:1497020","l":"Neosynechococcus sphagnicola sy1","na":1,"nb":1,"a":[["TED%3AAF-A0A098TMI1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A098TMI1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1497020","Neosynechococcus sphagnicola sy1"]]},{"id":"NCBITaxon:1497337","l":"Acinetobacter sp. SM1B","na":1,"nb":1,"a":[["TED%3AAF-A0A330FBJ1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A330FBJ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1497337","Acinetobacter sp. SM1B"]]},{"id":"NCBITaxon:1497681","l":"Paenilisteria newyorkensis","na":1,"nb":1,"a":[["TED%3AAF-A0A841Z083-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A841Z083-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1497681","Paenilisteria newyorkensis"]]},{"id":"NCBITaxon:1499502","l":"Prochlorococcus sp. MIT 0701","na":1,"nb":1,"a":[["TED%3AAF-A0A0A2CX85-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A2CX85-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1499502","Prochlorococcus sp. MIT 0701"]]},{"id":"NCBITaxon:1499688","l":"Neobacillus massiliamazoniensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0U1NRJ1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0U1NRJ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1499688","Neobacillus massiliamazoniensis"]]},{"id":"NCBITaxon:150","l":"Spirochaeta isovalerica","na":1,"nb":1,"a":[["TED%3AAF-A0A841R6V2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841R6V2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A150","Spirochaeta isovalerica"]]},{"id":"NCBITaxon:1500264","l":"Rhizobacter sp. OV335","na":1,"nb":1,"a":[["TED%3AAF-A0A1M7I6F1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M7I6F1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1500264","Rhizobacter sp. OV335"]]},{"id":"NCBITaxon:1500506","l":"Halopolyspora algeriensis","na":1,"nb":1,"a":[["TED%3AAF-A0A368VEW2-F1-model_v4_TED01","TED novel fold AF-A0A368VEW2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1500506","Halopolyspora algeriensis"]]},{"id":"NCBITaxon:1501240","l":"Palleronia abyssalis","na":1,"nb":1,"a":[["TED%3AAF-A0A2R8BW46-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2R8BW46-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1501240","Palleronia abyssalis"]]},{"id":"NCBITaxon:1502292","l":"Marine Group I thaumarchaeote SCGC AAA799-E16","na":1,"nb":1,"a":[["TED%3AAF-A0A081S3X1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A081S3X1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1502292","Marine Group I thaumarchaeote SCGC AAA799-E16"]]},{"id":"NCBITaxon:1502726","l":"Microcystis sp. 0824","na":1,"nb":1,"a":[["TED%3AAF-A0A2L2XND4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2L2XND4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1502726","Microcystis sp. 0824"]]},{"id":"NCBITaxon:1502758","l":"Luteibacter sp. UNCMF366Tsu5.1","na":1,"nb":1,"a":[["TED%3AAF-A0A1K1RRU1-F1-model_v4_TED01","TED novel fold AF-A0A1K1RRU1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1502758","Luteibacter sp. UNCMF366Tsu5.1"]]},{"id":"NCBITaxon:1503","l":"Gottschalkia purinilytica","na":1,"nb":1,"a":[["Pfam%3APF07355","Glycine/sarcosine/betaine reductase selenoprotein B (GRDB)"]],"b":[["NCBITaxon%3A1503","Gottschalkia purinilytica"]]},{"id":"NCBITaxon:1503053","l":"Burkholderia singularis","na":1,"nb":1,"a":[["TED%3AAF-A0A238HAX7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A238HAX7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1503053","Burkholderia singularis"]]},{"id":"NCBITaxon:1503055","l":"Burkholderia territorii","na":1,"nb":1,"a":[["TED%3AAF-A0A6L3N8P5-F1-model_v4_TED01","TED novel fold AF-A0A6L3N8P5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1503055","Burkholderia territorii"]]},{"id":"NCBITaxon:150374","l":"Escovopsis weberi","na":1,"nb":1,"a":[["TED%3AAF-A0A0M8MSE0-F1-model_v4_TED01","TED novel fold AF-A0A0M8MSE0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A150374","Escovopsis weberi"]]},{"id":"NCBITaxon:1504536","l":"Robinsoniella sp. RHS","na":1,"nb":1,"a":[["TED%3AAF-A0A0J1FYX4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0J1FYX4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1504536","Robinsoniella sp. RHS"]]},{"id":"NCBITaxon:1506545","l":"Candidatus Chloroploca asiatica","na":1,"nb":1,"a":[["TED%3AAF-A0A2H3KI37-F1-model_v4_TED02","TED novel fold AF-A0A2H3KI37-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1506545","Candidatus Chloroploca asiatica"]]},{"id":"NCBITaxon:1507870","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1V8TAE1-F1-model_v4_TED02","TED novel fold AF-A0A1V8TAE1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1507870","Cryoendolithus antarcticus"]]},{"id":"NCBITaxon:150831","l":"Roseibium hamelinense","na":1,"nb":1,"a":[["TED%3AAF-A0A562T7P7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A562T7P7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A150831","Roseibium hamelinense"]]},{"id":"NCBITaxon:1508390","l":"Aureibacillus halotolerans","na":1,"nb":1,"a":[["TED%3AAF-A0A4R6U114-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R6U114-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1508390","Aureibacillus halotolerans"]]},{"id":"NCBITaxon:1508404","l":"Jeotgalibacillus malaysiensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0B5ASX9-F1-model_v4_TED01","TED novel fold AF-A0A0B5ASX9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1508404","Jeotgalibacillus malaysiensis"]]},{"id":"NCBITaxon:1509407","l":"Aspergillus nomiae NRRL 13137","na":1,"nb":1,"a":[["TED%3AAF-A0A0L1JHJ8-F1-model_v4_TED01","TED novel fold AF-A0A0L1JHJ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1509407","Aspergillus nomiae NRRL 13137"]]},{"id":"NCBITaxon:1513271","l":"Catenovulum maritimum","na":1,"nb":1,"a":[["TED%3AAF-A0A0J8GTT7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0J8GTT7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1513271","Catenovulum maritimum"]]},{"id":"NCBITaxon:1513793","l":"Pseudobacteriovorax antillogorgiicola","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y6CR30-F1-model_v4_TED01","TED novel fold AF-A0A1Y6CR30-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1513793","Pseudobacteriovorax antillogorgiicola"]]},{"id":"NCBITaxon:1514080","l":"Neolewinella xylanilytica","na":1,"nb":1,"a":[["TED%3AAF-A0A2S6I9U1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S6I9U1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1514080","Neolewinella xylanilytica"]]},{"id":"NCBITaxon:1514971","l":"Haloprofundus marisrubri","na":1,"nb":1,"a":[["TED%3AAF-A0A0W1R579-F1-model_v4_TED02","TED novel fold AF-A0A0W1R579-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1514971","Haloprofundus marisrubri"]]},{"id":"NCBITaxon:1516059","l":"","na":1,"nb":1,"a":[["Pfam%3APF02839","Carbohydrate-binding module family 5/12"]],"b":[["NCBITaxon%3A1516059","Microbulbifer sp. ALW1"]]},{"id":"NCBITaxon:1517416","l":"Pseudidiomarina atlantica","na":1,"nb":1,"a":[["TED%3AAF-A0A094IVS2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A094IVS2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1517416","Pseudidiomarina atlantica"]]},{"id":"NCBITaxon:1517681","l":"Vibrio sp. ER1A","na":1,"nb":1,"a":[["TED%3AAF-A0A084TB57-F1-model_v4_TED02","TED novel fold AF-A0A084TB57-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1517681","Vibrio sp. ER1A"]]},{"id":"NCBITaxon:1517683","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A086FBC8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A086FBC8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1517683","Chryseobacterium sp. P1-3"]]},{"id":"NCBITaxon:1519471","l":"Streptomyces sp. NRRL S-4","na":1,"nb":1,"a":[["TED%3AAF-A0A0N0YGV9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0N0YGV9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1519471","Streptomyces sp. NRRL S-4"]]},{"id":"NCBITaxon:1519491","l":"Streptomyces sp. NRRL WC-3723","na":1,"nb":1,"a":[["TED%3AAF-A0A0M8X365-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0M8X365-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1519491","Streptomyces sp. NRRL WC-3723"]]},{"id":"NCBITaxon:1520803","l":"Pseudobutyrivibrio sp. C4","na":1,"nb":1,"a":[["TED%3AAF-A0A1I0ACI0-F1-model_v4_TED02","TED novel fold AF-A0A1I0ACI0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1520803","Pseudobutyrivibrio sp. C4"]]},{"id":"NCBITaxon:1520807","l":"Butyrivibrio sp. INlla16","na":1,"nb":1,"a":[["TED%3AAF-A0A1G6F9M5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G6F9M5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1520807","Butyrivibrio sp. INlla16"]]},{"id":"NCBITaxon:1520808","l":"Butyrivibrio sp. INlla14","na":1,"nb":1,"a":[["TED%3AAF-A0A1G5C891-F1-model_v4_TED01","TED novel fold AF-A0A1G5C891-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1520808","Butyrivibrio sp. INlla14"]]},{"id":"NCBITaxon:1520813","l":"Paracoccus sp. SM22M-07","na":1,"nb":1,"a":[["TED%3AAF-A0A1L9BU60-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L9BU60-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1520813","Paracoccus sp. SM22M-07"]]},{"id":"NCBITaxon:1520816","l":"Ruminococcaceae bacterium YAD3003","na":1,"nb":1,"a":[["TED%3AAF-A0A1H3HR91-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H3HR91-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1520816","Ruminococcaceae bacterium YAD3003"]]},{"id":"NCBITaxon:1520821","l":"Lachnospiraceae bacterium A10","na":1,"nb":1,"a":[["TED%3AAF-A0A1H6VE99-F1-model_v4_TED01","TED novel fold AF-A0A1H6VE99-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1520821","Lachnospiraceae bacterium A10"]]},{"id":"NCBITaxon:1520822","l":"Lachnospiraceae bacterium C10","na":1,"nb":1,"a":[["TED%3AAF-A0A1G4RBH0-F1-model_v4_TED01","TED novel fold AF-A0A1G4RBH0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1520822","Lachnospiraceae bacterium C10"]]},{"id":"NCBITaxon:1520826","l":"Lachnospiraceae bacterium XBB2008","na":1,"nb":1,"a":[["TED%3AAF-A0A1G5BX79-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G5BX79-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1520826","Lachnospiraceae bacterium XBB2008"]]},{"id":"NCBITaxon:1520828","l":"Lachnospiraceae bacterium YSD2013","na":1,"nb":1,"a":[["TED%3AAF-A0A1G4V7H1-F1-model_v4_TED01","TED novel fold AF-A0A1G4V7H1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1520828","Lachnospiraceae bacterium YSD2013"]]},{"id":"NCBITaxon:1520829","l":"Peptostreptococcaceae bacterium pGA-8","na":1,"nb":1,"a":[["TED%3AAF-A0A1I1YYQ5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1I1YYQ5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1520829","Peptostreptococcaceae bacterium pGA-8"]]},{"id":"NCBITaxon:1520830","l":"Prevotellaceae bacterium HUN156","na":1,"nb":1,"a":[["TED%3AAF-A0A1K1LQ12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1K1LQ12-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1520830","Prevotellaceae bacterium HUN156"]]},{"id":"NCBITaxon:1521402","l":"Mastigocladus laminosus WC112","na":1,"nb":1,"a":[["TED%3AAF-A0A370CKL0-F1-model_v4_TED01","TED novel fold AF-A0A370CKL0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1521402","Mastigocladus laminosus WC112"]]},{"id":"NCBITaxon:1522189","l":"Ceraceosorus guamensis","na":1,"nb":1,"a":[["TED%3AAF-A0A316VYV9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A316VYV9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1522189","Ceraceosorus guamensis"]]},{"id":"NCBITaxon:1522758","l":"Streptomyces sp. ADI95-16","na":1,"nb":1,"a":[["TED%3AAF-A0A3G4VPW2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3G4VPW2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1522758","Streptomyces sp. ADI95-16"]]},{"id":"NCBITaxon:1523415","l":"Sphingomonas sp. AAP5","na":1,"nb":1,"a":[["TED%3AAF-A0A4P6X9R5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P6X9R5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1523415","Sphingomonas sp. AAP5"]]},{"id":"NCBITaxon:1523418","l":"alpha proteobacterium AAP38","na":1,"nb":1,"a":[["TED%3AAF-A0A0N1BSA5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0N1BSA5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1523418","alpha proteobacterium AAP38"]]},{"id":"NCBITaxon:1524097","l":"Massilia glaciei","na":1,"nb":1,"a":[["TED%3AAF-A0A2U2HFI6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U2HFI6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1524097","Massilia glaciei"]]},{"id":"NCBITaxon:1525753","l":"Streptomyces sp. JS01","na":1,"nb":1,"a":[["TED%3AAF-A0A087K6S8-F1-model_v4_TED02","TED novel fold AF-A0A087K6S8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1525753","Streptomyces sp. JS01"]]},{"id":"NCBITaxon:1526762","l":"Vibrio sp. B183","na":1,"nb":1,"a":[["TED%3AAF-A0A086WSI7-F1-model_v4_TED02","TED novel fold AF-A0A086WSI7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1526762","Vibrio sp. B183"]]},{"id":"NCBITaxon:1527608","l":"Hydromonas duriensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4R6Y270-F1-model_v4_TED01","TED novel fold AF-A0A4R6Y270-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1527608","Hydromonas duriensis"]]},{"id":"NCBITaxon:1528101","l":"Vibrio sp. ES.044","na":1,"nb":1,"a":[["TED%3AAF-A0A559NC50-F1-model_v4_TED01","TED novel fold AF-A0A559NC50-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1528101","Vibrio sp. ES.044"]]},{"id":"NCBITaxon:1528773","l":"Janthinobacterium sp. AD80","na":1,"nb":1,"a":[["TED%3AAF-A0A2N7REY8-F1-model_v4_TED01","TED novel fold AF-A0A2N7REY8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1528773","Janthinobacterium sp. AD80"]]},{"id":"NCBITaxon:1529041","l":"Roseivivax jejudonensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1X6Y6C0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X6Y6C0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1529041","Roseivivax jejudonensis"]]},{"id":"NCBITaxon:1530123","l":"Acinetobacter seifertii","na":1,"nb":1,"a":[["TED%3AAF-A0A2M8MEQ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M8MEQ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1530123","Acinetobacter seifertii"]]},{"id":"NCBITaxon:1531429","l":"Berryella intestinalis","na":1,"nb":1,"a":[["TED%3AAF-A0A0A8B291-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A8B291-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1531429","Berryella intestinalis"]]},{"id":"NCBITaxon:1532350","l":"Metallosphaera tengchongensis","na":1,"nb":1,"a":[["TED%3AAF-A0A6N0NWZ4-F1-model_v4_TED02","TED novel fold AF-A0A6N0NWZ4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1532350","Metallosphaera tengchongensis"]]},{"id":"NCBITaxon:1532552","l":"Anaerobacillus isosaccharinicus","na":1,"nb":1,"a":[["TED%3AAF-A0A1S2M938-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1S2M938-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1532552","Anaerobacillus isosaccharinicus"]]},{"id":"NCBITaxon:1532906","l":"","na":1,"nb":1,"a":[["Pfam%3APF01934","Ribonuclease HepT-like"]],"b":[["NCBITaxon%3A1532906","Aphanizomenon flos-aquae 2012/KM1/D3"]]},{"id":"NCBITaxon:1535422","l":"Thalassotalea sp. ND16A","na":1,"nb":1,"a":[["TED%3AAF-A0A099KGF6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A099KGF6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1535422","Thalassotalea sp. ND16A"]]},{"id":"NCBITaxon:1536651","l":"Desulfosporosinus sp. Tol-M","na":1,"nb":1,"a":[["TED%3AAF-A0A0A2TS00-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A2TS00-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1536651","Desulfosporosinus sp. Tol-M"]]},{"id":"NCBITaxon:1536775","l":"Paenibacillus sp. FSL H7-0737","na":1,"nb":1,"a":[["TED%3AAF-A0A089ITK5-F1-model_v4_TED02","TED novel fold AF-A0A089ITK5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1536775","Paenibacillus sp. FSL H7-0737"]]},{"id":"NCBITaxon:1537702","l":"Delftia sp. 670","na":1,"nb":1,"a":[["TED%3AAF-A0A081J8I6-F1-model_v4_TED01","TED novel fold AF-A0A081J8I6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1537702","Delftia sp. 670"]]},{"id":"NCBITaxon:1538146","l":"Alteriqipengyuania lutimaris","na":1,"nb":1,"a":[["TED%3AAF-A0A395LNL2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A395LNL2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1538146","Alteriqipengyuania lutimaris"]]},{"id":"NCBITaxon:1540922","l":"Wallemia hederae","na":1,"nb":1,"a":[["TED%3AAF-A0A4T0FD79-F1-model_v4_TED01","TED novel fold AF-A0A4T0FD79-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1540922","Wallemia hederae"]]},{"id":"NCBITaxon:1542390","l":"Francisella frigiditurris","na":1,"nb":1,"a":[["TED%3AAF-A0A1J0KT66-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1J0KT66-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1542390","Francisella frigiditurris"]]},{"id":"NCBITaxon:154538","l":"Trametes pubescens","na":1,"nb":1,"a":[["TED%3AAF-A0A1M2W3Q5-F1-model_v4_TED01","TED novel fold AF-A0A1M2W3Q5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A154538","Trametes pubescens"]]},{"id":"NCBITaxon:1547283","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1L3MNT2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L3MNT2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1547283","Metabacillus harenarius"]]},{"id":"NCBITaxon:1547444","l":"Pseudoalteromonas sp. (strain PLSV)","na":1,"nb":1,"a":[["Pfam%3APF15892","BNR repeat-containing family member"]],"b":[["NCBITaxon%3A1547444","Pseudoalteromonas sp. PLSV"]]},{"id":"NCBITaxon:1547922","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0K8P774-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0K8P774-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1547922","Pseudideonella sakaiensis"]]},{"id":"NCBITaxon:1549638","l":"Quisquiliibacterium transsilvanicum","na":1,"nb":1,"a":[["TED%3AAF-A0A7W8HDM4-F1-model_v4_TED04","TED novel fold AF-A0A7W8HDM4-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1549638","Quisquiliibacterium transsilvanicum"]]},{"id":"NCBITaxon:1550","l":"Clostridium subterminale","na":1,"nb":1,"a":[["Pfam%3APF12544","Lysine-2,3-aminomutase"]],"b":[["NCBITaxon%3A1550","Clostridium subterminale"]]},{"id":"NCBITaxon:1550235","l":"Clostridium sp. KNHs216","na":1,"nb":1,"a":[["TED%3AAF-A0A542ALS0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A542ALS0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1550235","Clostridium sp. KNHs216"]]},{"id":"NCBITaxon:1550579","l":"Mucilaginibacter gotjawali","na":1,"nb":1,"a":[["TED%3AAF-A0A0X8X2M5-F1-model_v4_TED03","TED novel fold AF-A0A0X8X2M5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1550579","Mucilaginibacter gotjawali"]]},{"id":"NCBITaxon:1552121","l":"Leptolyngbya sp. NIES-2104","na":1,"nb":1,"a":[["TED%3AAF-A0A0P4V2F6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0P4V2F6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1552121","Leptolyngbya sp. NIES-2104"]]},{"id":"NCBITaxon:155417","l":"Monosporascus ibericus","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q4SZB0-F1-model_v4_TED01","TED novel fold AF-A0A4Q4SZB0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A155417","Monosporascus ibericus"]]},{"id":"NCBITaxon:1555241","l":"Caulochytrium protostelioides","na":1,"nb":1,"a":[["TED%3AAF-A0A4P9X4L6-F1-model_v4_TED01","TED novel fold AF-A0A4P9X4L6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1555241","Caulochytrium protostelioides"]]},{"id":"NCBITaxon:155925","l":"Nitrosospira sp. NRS527","na":1,"nb":1,"a":[["TED%3AAF-A0A811AEU4-F1-model_v4_TED01","TED novel fold AF-A0A811AEU4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A155925","Nitrosospira sp. NRS527"]]},{"id":"NCBITaxon:155974","l":"Actinokineospora terrae","na":1,"nb":1,"a":[["TED%3AAF-A0A1H9N3Z4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H9N3Z4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A155974","Actinokineospora terrae"]]},{"id":"NCBITaxon:155976","l":"Actinokineospora auranticolor","na":1,"nb":1,"a":[["TED%3AAF-A0A2S6GGX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S6GGX2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A155976","Actinokineospora auranticolor"]]},{"id":"NCBITaxon:1560234","l":"Halodesulfovibrio spirochaetisodalis","na":1,"nb":1,"a":[["TED%3AAF-A0A1B7XAE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B7XAE6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1560234","Halodesulfovibrio spirochaetisodalis"]]},{"id":"NCBITaxon:1561003","l":"Candidatus Ichthyocystis hellenicum","na":1,"nb":1,"a":[["TED%3AAF-A0A0S4M2T9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S4M2T9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1561003","Candidatus Ichthyocystis hellenicum"]]},{"id":"NCBITaxon:1561964","l":"Methanosphaera sp. WGK6","na":1,"nb":1,"a":[["TED%3AAF-A0A1D2X1R8-F1-model_v4_TED01","TED novel fold AF-A0A1D2X1R8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1561964","Methanosphaera sp. WGK6"]]},{"id":"NCBITaxon:1562603","l":"Microbulbifer rhizosphaerae","na":1,"nb":1,"a":[["TED%3AAF-A0A7W4Z867-F1-model_v4_TED06","TED novel fold AF-A0A7W4Z867-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A1562603","Microbulbifer rhizosphaerae"]]},{"id":"NCBITaxon:1563222","l":"Citrobacter pasteurii","na":1,"nb":1,"a":[["TED%3AAF-A0A6N6K4M5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N6K4M5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1563222","Citrobacter pasteurii"]]},{"id":"NCBITaxon:1563671","l":"Sulfitobacter undariae","na":1,"nb":1,"a":[["TED%3AAF-A0A7W6E4U0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W6E4U0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1563671","Sulfitobacter undariae"]]},{"id":"NCBITaxon:1564114","l":"Rhodococcus sp. B7740","na":1,"nb":1,"a":[["TED%3AAF-A0A0D5A6X9-F1-model_v4_TED03","TED novel fold AF-A0A0D5A6X9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1564114","Rhodococcus sp. B7740"]]},{"id":"NCBITaxon:1564164","l":"Blastococcus xanthinilyticus","na":1,"nb":1,"a":[["TED%3AAF-A0A5S5D581-F1-model_v4_TED03","TED novel fold AF-A0A5S5D581-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1564164","Blastococcus xanthinilyticus"]]},{"id":"NCBITaxon:1564506","l":"Rhodovulum sp. P5","na":1,"nb":1,"a":[["TED%3AAF-A0A1V0PUI0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V0PUI0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1564506","Rhodovulum sp. P5"]]},{"id":"NCBITaxon:1566283","l":"Sphingomonas sp. NFR04","na":1,"nb":1,"a":[["TED%3AAF-A0A1I3YWA6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1I3YWA6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1566283","Sphingomonas sp. NFR04"]]},{"id":"NCBITaxon:1569628","l":"Jaminaea rosea","na":1,"nb":1,"a":[["TED%3AAF-A0A316USJ9-F1-model_v4_TED03","TED novel fold AF-A0A316USJ9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1569628","Jaminaea rosea"]]},{"id":"NCBITaxon:1572656","l":"Ruminococcaceae bacterium CPB6","na":1,"nb":1,"a":[["TED%3AAF-A0A1W6WC59-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W6WC59-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1572656","Ruminococcaceae bacterium CPB6"]]},{"id":"NCBITaxon:1574262","l":"Sutterella sp. KLE1602","na":1,"nb":1,"a":[["TED%3AAF-A0A139JRX3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A139JRX3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1574262","Sutterella sp. KLE1602"]]},{"id":"NCBITaxon:1574623","l":"Lyngbya confervoides BDU141951","na":1,"nb":1,"a":[["TED%3AAF-A0A0C1V1F7-F1-model_v4_TED01","TED novel fold AF-A0A0C1V1F7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1574623","Lyngbya confervoides BDU141951"]]},{"id":"NCBITaxon:157733","l":"Alkalihalobacillus macyae","na":1,"nb":1,"a":[["TED%3AAF-A0A0J6FWV9-F1-model_v4_TED01","TED novel fold AF-A0A0J6FWV9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A208199","Guptibacillus hwajinpoensis"]]},{"id":"NCBITaxon:1577686","l":"Silvibacterium bohemicum","na":1,"nb":1,"a":[["TED%3AAF-A0A841JPR1-F1-model_v4_TED02","TED novel fold AF-A0A841JPR1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1577686","Silvibacterium bohemicum"]]},{"id":"NCBITaxon:1577780","l":"Phaeocystidibacter marisrubri","na":1,"nb":1,"a":[["TED%3AAF-A0A6L3ZHW6-F1-model_v4_TED03","TED novel fold AF-A0A6L3ZHW6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1577780","Phaeocystidibacter marisrubri"]]},{"id":"NCBITaxon:157779","l":"Kushneria marisflavi","na":1,"nb":1,"a":[["TED%3AAF-A0A240ULV8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A240ULV8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A157779","Kushneria marisflavi"]]},{"id":"NCBITaxon:1577791","l":"Candidatus Methanoplasma termitum","na":1,"nb":1,"a":[["TED%3AAF-A0A0A7LCU2-F1-model_v4_TED01","TED novel fold AF-A0A0A7LCU2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1577791","Candidatus Methanoplasma termitum"]]},{"id":"NCBITaxon:1577902","l":"Leisingera sp. ANG-M7","na":1,"nb":1,"a":[["TED%3AAF-A0A0C1IJ64-F1-model_v4_TED02","TED novel fold AF-A0A0C1IJ64-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1577902","Leisingera sp. ANG-M7"]]},{"id":"NCBITaxon:1577905","l":"Tateyamaria sp. ANG-S1","na":1,"nb":1,"a":[["TED%3AAF-A0A0B4CZX6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0B4CZX6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1577905","Tateyamaria sp. ANG-S1"]]},{"id":"NCBITaxon:1578720","l":"Helicobacter ailurogastricus","na":1,"nb":1,"a":[["TED%3AAF-A0A0K2X3G5-F1-model_v4_TED01","TED novel fold AF-A0A0K2X3G5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1578720","Helicobacter ailurogastricus"]]},{"id":"NCBITaxon:157907","l":"Desulfosporosinus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A358U7F5-F1-model_v4_TED02","TED novel fold AF-A0A358U7F5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A157907","Desulfosporosinus sp."]]},{"id":"NCBITaxon:1579333","l":"Limibacillus halophilus","na":1,"nb":1,"a":[["TED%3AAF-A0A839SUA2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A839SUA2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1579333","Limibacillus halophilus"]]},{"id":"NCBITaxon:1579370","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0B5HG27-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0B5HG27-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1579370","archaeon GW2011_AR10"]]},{"id":"NCBITaxon:1579376","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0B3ASZ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0B3ASZ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1579376","archaeon GW2011_AR18"]]},{"id":"NCBITaxon:158046","l":"Phaeomoniella chlamydospora","na":1,"nb":1,"a":[["TED%3AAF-A0A0G2HLS3-F1-model_v4_TED02","TED novel fold AF-A0A0G2HLS3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A158046","Phaeomoniella chlamydospora"]]},{"id":"NCBITaxon:1580596","l":"Phaeobacter piscinae","na":1,"nb":1,"a":[["TED%3AAF-A0A837DZ53-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A837DZ53-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1580596","Phaeobacter piscinae"]]},{"id":"NCBITaxon:1581124","l":"Neisseria sp. HMSC06F02","na":1,"nb":1,"a":[["TED%3AAF-A0A0D9LS50-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D9LS50-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1581124","Neisseria sp. HMSC06F02"]]},{"id":"NCBITaxon:1582974","l":"Ceratobasidium theobromae","na":1,"nb":1,"a":[["TED%3AAF-A0A5N5Q870-F1-model_v4_TED01","TED novel fold AF-A0A5N5Q870-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1582974","Ceratobasidium theobromae"]]},{"id":"NCBITaxon:1586287","l":"Lentzea guizhouensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1B2HN25-F1-model_v4_TED01","TED novel fold AF-A0A1B2HN25-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1586287","Lentzea guizhouensis"]]},{"id":"NCBITaxon:1586708","l":"Pandoraea sp. ISTKB","na":1,"nb":1,"a":[["TED%3AAF-A0A1E3LNT6-F1-model_v4_TED01","TED novel fold AF-A0A1E3LNT6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1586708","Pandoraea sp. ISTKB"]]},{"id":"NCBITaxon:1591054","l":"Thermococcus sp. EP1","na":1,"nb":1,"a":[["TED%3AAF-A0A0P8ZDE3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0P8ZDE3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1591054","Thermococcus sp. EP1"]]},{"id":"NCBITaxon:1592329","l":"Actinobacteria bacterium OV320","na":1,"nb":1,"a":[["TED%3AAF-A0A0N0N9B4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0N0N9B4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1592329","Actinobacteria bacterium OV320"]]},{"id":"NCBITaxon:1592727","l":"Streptomyces sp. MBRL 10","na":1,"nb":1,"a":[["TED%3AAF-A0A0D6WSL6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D6WSL6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1592727","Streptomyces sp. MBRL 10"]]},{"id":"NCBITaxon:1593482","l":"Massilia sp. YMA4","na":1,"nb":1,"a":[["TED%3AAF-A0A7U5XZA1-F1-model_v4_TED02","TED novel fold AF-A0A7U5XZA1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1593482","Massilia sp. YMA4"]]},{"id":"NCBITaxon:1603038","l":"Vibrio sp. qd031","na":1,"nb":1,"a":[["TED%3AAF-A0A1X1MV27-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1X1MV27-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1603038","Vibrio sp. qd031"]]},{"id":"NCBITaxon:1603293","l":"Flavobacterium sp. 316","na":1,"nb":1,"a":[["TED%3AAF-A0A0D6TP58-F1-model_v4_TED02","TED novel fold AF-A0A0D6TP58-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1603293","Flavobacterium sp. 316"]]},{"id":"NCBITaxon:1603886","l":"Bifidobacterium lemurum","na":1,"nb":1,"a":[["TED%3AAF-A0A261FPN5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A261FPN5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1603886","Bifidobacterium lemurum"]]},{"id":"NCBITaxon:1604835","l":"Achromatium sp. WMS2","na":1,"nb":1,"a":[["TED%3AAF-A0A0M1J9N5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0M1J9N5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1604835","Achromatium sp. WMS2"]]},{"id":"NCBITaxon:1605376","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0M2U440-F1-model_v4_TED01","TED novel fold AF-A0A0M2U440-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1605376","Clostridiales bacterium PH28_bin88"]]},{"id":"NCBITaxon:1605994","l":"Paenibacillus sp. NAIST15-1","na":1,"nb":1,"a":[["TED%3AAF-A0A1E1VIF5-F1-model_v4_TED01","TED novel fold AF-A0A1E1VIF5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1605994","Paenibacillus sp. NAIST15-1"]]},{"id":"NCBITaxon:1608422","l":"Henriciella algicola","na":1,"nb":1,"a":[["TED%3AAF-A0A399RH60-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A399RH60-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1608422","Henriciella algicola"]]},{"id":"NCBITaxon:1608465","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2B7GRS3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2B7GRS3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1608465","Natrinema thermophila"]]},{"id":"NCBITaxon:1609098","l":"Streptomyces sp. NRRL F-5122","na":1,"nb":1,"a":[["TED%3AAF-A0A0X3SCA4-F1-model_v4_TED02","TED novel fold AF-A0A0X3SCA4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1609098","Streptomyces sp. NRRL F-5122"]]},{"id":"NCBITaxon:1609133","l":"Streptomyces sp. NRRL S-495","na":1,"nb":1,"a":[["TED%3AAF-A0A0F4JA07-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0F4JA07-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1609133","Streptomyces sp. NRRL S-495"]]},{"id":"NCBITaxon:1609134","l":"Streptomyces sp. NRRL S-444","na":1,"nb":1,"a":[["TED%3AAF-A0A656TJD4-F1-model_v4_TED01","TED novel fold AF-A0A656TJD4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1609134","Streptomyces sp. NRRL S-444"]]},{"id":"NCBITaxon:1609272","l":"Streptomyces adustus","na":1,"nb":1,"a":[["TED%3AAF-A0A5N8V8R0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5N8V8R0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1609272","Streptomyces adustus"]]},{"id":"NCBITaxon:1609968","l":"Methanobrevibacter sp. YE315","na":1,"nb":1,"a":[["TED%3AAF-A0A125RB74-F1-model_v4_TED01","TED novel fold AF-A0A125RB74-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1609968","Methanobrevibacter sp. YE315"]]},{"id":"NCBITaxon:1609970","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0F2IXQ2-F1-model_v4_TED01","TED novel fold AF-A0A0F2IXQ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1609970","Candidatus Magnetovum chiemense"]]},{"id":"NCBITaxon:1611544","l":"Methylomonas sp. Kb3","na":1,"nb":1,"a":[["TED%3AAF-A0A2N0V705-F1-model_v4_TED01","TED novel fold AF-A0A2N0V705-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1611544","Methylomonas sp. Kb3"]]},{"id":"NCBITaxon:1612149","l":"Chryseobacterium limigenitum","na":1,"nb":1,"a":[["TED%3AAF-A0A1K2ISG6-F1-model_v4_TED01","TED novel fold AF-A0A1K2ISG6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1612149","Chryseobacterium limigenitum"]]},{"id":"NCBITaxon:1615909","l":"Geminocystis sp. NIES-3708","na":1,"nb":1,"a":[["TED%3AAF-A0A0D6AGM1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D6AGM1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1615909","Geminocystis sp. NIES-3708"]]},{"id":"NCBITaxon:1616","l":"Weissella kandleri","na":1,"nb":1,"a":[["TED%3AAF-A0A0R2JNV5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0R2JNV5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1616","Weissella kandleri"]]},{"id":"NCBITaxon:1616788","l":"Paenibacillus bovis","na":1,"nb":1,"a":[["TED%3AAF-A0A1X9T409-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X9T409-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1616788","Paenibacillus bovis"]]},{"id":"NCBITaxon:1617410","l":"Nitrospira sp. OLB3","na":1,"nb":1,"a":[["TED%3AAF-A0A136JXF7-F1-model_v4_TED03","TED novel fold AF-A0A136JXF7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1617410","Nitrospira sp. OLB3"]]},{"id":"NCBITaxon:1617415","l":"Chloroflexi bacterium OLB14","na":1,"nb":1,"a":[["TED%3AAF-A0A136L2M5-F1-model_v4_TED02","TED novel fold AF-A0A136L2M5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1617415","Chloroflexi bacterium OLB14"]]},{"id":"NCBITaxon:1617421","l":"Bacteroidetes bacterium OLB10","na":1,"nb":1,"a":[["TED%3AAF-A0A136NN96-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A136NN96-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1617421","Bacteroidetes bacterium OLB10"]]},{"id":"NCBITaxon:1617423","l":"Acidobacteria bacterium OLB17","na":1,"nb":1,"a":[["TED%3AAF-A0A136KB18-F1-model_v4_TED03","TED novel fold AF-A0A136KB18-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1617423","Acidobacteria bacterium OLB17"]]},{"id":"NCBITaxon:1617426","l":"candidate division WS6 bacterium OLB20","na":1,"nb":1,"a":[["TED%3AAF-A0A136LWE5-F1-model_v4_TED01","TED novel fold AF-A0A136LWE5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1617426","candidate division WS6 bacterium OLB20"]]},{"id":"NCBITaxon:1617967","l":"Granulicella sp. 5B5","na":1,"nb":1,"a":[["TED%3AAF-A0A7D8FKC4-F1-model_v4_TED02","TED novel fold AF-A0A7D8FKC4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1617967","Granulicella sp. 5B5"]]},{"id":"NCBITaxon:1618342","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1YIE7-F1-model_v4_TED02","TED novel fold AF-A0A0G1YIE7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1618342","candidate division CPR1 bacterium GW2011_GWC1_49_13"]]},{"id":"NCBITaxon:1618381","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1PMB0-F1-model_v4_TED03","TED novel fold AF-A0A0G1PMB0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1618381","Candidatus Collierbacteria bacterium GW2011_GWA2_46_26"]]},{"id":"NCBITaxon:1618388","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A837IEC1-F1-model_v4_TED01","TED novel fold AF-A0A837IEC1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618388","Candidatus Collierbacteria bacterium GW2011_GWB2_45_17"]]},{"id":"NCBITaxon:1618405","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G0RDL7-F1-model_v4_TED02","TED novel fold AF-A0A0G0RDL7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1618405","Candidatus Curtissbacteria bacterium GW2011_GWA1_40_16"]]},{"id":"NCBITaxon:1618497","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G0H9R1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G0H9R1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618497","Microgenomates group bacterium GW2011_GWA2_37_6"]]},{"id":"NCBITaxon:1618524","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A837IEJ1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A837IEJ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618524","Microgenomates group bacterium GW2011_GWC1_44_37"]]},{"id":"NCBITaxon:1618531","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1MYW8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G1MYW8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618531","Microgenomates group bacterium GW2011_GWC2_45_8"]]},{"id":"NCBITaxon:1618578","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1DMI8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G1DMI8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618578","Candidatus Woesebacteria bacterium GW2011_GWB1_43_14"]]},{"id":"NCBITaxon:1618586","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0F9YKM8-F1-model_v4_TED01","TED novel fold AF-A0A0F9YKM8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618586","Candidatus Woesebacteria bacterium GW2011_GWC2_31_9"]]},{"id":"NCBITaxon:1618590","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1V118-F1-model_v4_TED02","TED novel fold AF-A0A0G1V118-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1618590","Candidatus Woesebacteria bacterium GW2011_GWC2_47_16"]]},{"id":"NCBITaxon:1618665","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1W7L0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0G1W7L0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1618665","Candidatus Jorgensenbacteria bacterium GW2011_GWB1_50_10"]]},{"id":"NCBITaxon:1618666","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1XUZ7-F1-model_v4_TED02","TED novel fold AF-A0A0G1XUZ7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1618666","Candidatus Jorgensenbacteria bacterium GW2011_GWC1_48_8"]]},{"id":"NCBITaxon:1618668","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1YS41-F1-model_v4_TED01","TED novel fold AF-A0A0G1YS41-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618668","Candidatus Kaiserbacteria bacterium GW2011_GWA1_50_28"]]},{"id":"NCBITaxon:1618695","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G0S822-F1-model_v4_TED01","TED novel fold AF-A0A0G0S822-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618695","Candidatus Moranbacteria bacterium GW2011_GWA2_39_41"]]},{"id":"NCBITaxon:1618699","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G0TCH8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G0TCH8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618699","Candidatus Moranbacteria bacterium GW2011_GWC2_40_12"]]},{"id":"NCBITaxon:1618715","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G0D426-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0G0D426-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1618715","Candidatus Moranbacteria bacterium GW2011_GWF1_34_10"]]},{"id":"NCBITaxon:1618789","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1N099-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0G1N099-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1618789","Parcubacteria group bacterium GW2011_GWA1_Parcubacteria_45_10"]]},{"id":"NCBITaxon:1618803","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1YL44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G1YL44-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618803","Parcubacteria group bacterium GW2011_GWA1_56_13"]]},{"id":"NCBITaxon:1618827","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1ED26-F1-model_v4_TED01","TED novel fold AF-A0A0G1ED26-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618827","Parcubacteria group bacterium GW2011_GWA2_43_17"]]},{"id":"NCBITaxon:1618845","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1T721-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0G1T721-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1618845","Parcubacteria group bacterium GW2011_GWA2_47_64"]]},{"id":"NCBITaxon:1618850","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1XAM6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0G1XAM6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1618850","Parcubacteria group bacterium GW2011_GWA2_48_9"]]},{"id":"NCBITaxon:1618852","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1Y838-F1-model_v4_TED01","TED novel fold AF-A0A0G1Y838-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618852","Parcubacteria group bacterium GW2011_GWA2_49_9"]]},{"id":"NCBITaxon:1618864","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G0NBQ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G0NBQ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618864","Parcubacteria group bacterium GW2011_GWB1_38_8"]]},{"id":"NCBITaxon:1618872","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1F5H8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0G1F5H8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1618872","Parcubacteria group bacterium GW2011_GWB1_43_6"]]},{"id":"NCBITaxon:1618900","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G0NFW5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G0NFW5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618900","Parcubacteria group bacterium GW2011_GWC1_39_29"]]},{"id":"NCBITaxon:1618918","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0F9YN28-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F9YN28-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618918","Parcubacteria group bacterium GW2011_GWC2_32_10"]]},{"id":"NCBITaxon:1618993","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1QJK0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0G1QJK0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1618993","Candidatus Uhrbacteria bacterium GW2011_GWE2_45_35"]]},{"id":"NCBITaxon:1618994","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1Q703-F1-model_v4_TED01","TED novel fold AF-A0A0G1Q703-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618994","Candidatus Uhrbacteria bacterium GW2011_GWE2_46_68"]]},{"id":"NCBITaxon:1619010","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G0J416-F1-model_v4_TED02","TED novel fold AF-A0A0G0J416-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1619010","Candidatus Wolfebacteria bacterium GW2011_GWC1_37_10"]]},{"id":"NCBITaxon:1619039","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1A845-F1-model_v4_TED02","TED novel fold AF-A0A0G1A845-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1619039","Candidatus Magasanikbacteria bacterium GW2011_GWA2_42_32"]]},{"id":"NCBITaxon:1619042","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1NZM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G1NZM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1619042","Candidatus Magasanikbacteria bacterium GW2011_GWA2_46_17"]]},{"id":"NCBITaxon:1619044","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G2AJX8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G2AJX8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1619044","Candidatus Magasanikbacteria bacterium GW2011_GWA2_56_11"]]},{"id":"NCBITaxon:1619057","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1JX42-F1-model_v4_TED02","TED novel fold AF-A0A0G1JX42-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1619057","Candidatus Peregrinibacteria bacterium GW2011_GWA2_44_7"]]},{"id":"NCBITaxon:1619058","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1TF34-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G1TF34-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1619058","Candidatus Peregrinibacteria bacterium GW2011_GWA2_47_7"]]},{"id":"NCBITaxon:1619059","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1YBX6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G1YBX6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1619059","Candidatus Peregrinibacteria bacterium GW2011_GWA2_54_9"]]},{"id":"NCBITaxon:1619060","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G2A8E9-F1-model_v4_TED02","TED novel fold AF-A0A0G2A8E9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1619060","Candidatus Peribacteria bacterium GW2011_GWB1_54_5"]]},{"id":"NCBITaxon:1619076","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1DAV5-F1-model_v4_TED01","TED novel fold AF-A0A0G1DAV5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1619076","candidate division TM6 bacterium GW2011_GWE2_42_60"]]},{"id":"NCBITaxon:1619090","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G0DMJ6-F1-model_v4_TED01","TED novel fold AF-A0A0G0DMJ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1619090","candidate division WS6 bacterium GW2011_GWC1_36_11"]]},{"id":"NCBITaxon:1619091","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G0EVW7-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A0G0EVW7-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A1619091","candidate division WS6 bacterium GW2011_GWC2_36_7"]]},{"id":"NCBITaxon:1619097","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G0EMC3-F1-model_v4_TED01","TED novel fold AF-A0A0G0EMC3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1619097","candidate division WS6 bacterium GW2011_GWF1_35_23"]]},{"id":"NCBITaxon:1619100","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G0N089-F1-model_v4_TED01","TED novel fold AF-A0A0G0N089-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1619100","candidate division WS6 bacterium GW2011_GWF2_39_15"]]},{"id":"NCBITaxon:1619153","l":"Cohnella sp. LGH","na":1,"nb":1,"a":[["TED%3AAF-A0A8A5Z8C7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A8A5Z8C7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1619153","Cohnella sp. LGH"]]},{"id":"NCBITaxon:1619233","l":"Bradyrhizobium sp. LTSPM299","na":1,"nb":1,"a":[["TED%3AAF-A0A0D7Q9Z8-F1-model_v4_TED01","TED novel fold AF-A0A0D7Q9Z8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1619233","Bradyrhizobium sp. LTSPM299"]]},{"id":"NCBITaxon:1619234","l":"Anaerobium acetethylicum","na":1,"nb":1,"a":[["TED%3AAF-A0A1D3TWF5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1D3TWF5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1619234","Anaerobium acetethylicum"]]},{"id":"NCBITaxon:1620421","l":"Hoeflea sp. IMCC20628","na":1,"nb":1,"a":[["TED%3AAF-A0A0F7PLE4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0F7PLE4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1620421","Hoeflea sp. IMCC20628"]]},{"id":"NCBITaxon:162156","l":"uncultured Bacteroides sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A1C5XFB7-F1-model_v4_TED02","TED novel fold AF-A0A1C5XFB7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A162156","uncultured Bacteroides sp."]]},{"id":"NCBITaxon:1628158","l":"Mariniphaga sediminis","na":1,"nb":1,"a":[["TED%3AAF-A0A399CX27-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A399CX27-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1628158","Mariniphaga sediminis"]]},{"id":"NCBITaxon:1628193","l":"Chromobacterium sp. LK1","na":1,"nb":1,"a":[["TED%3AAF-A0A0J6KNS5-F1-model_v4_TED01","TED novel fold AF-A0A0J6KNS5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1628193","Chromobacterium sp. LK1"]]},{"id":"NCBITaxon:1628833","l":"Pseudomonas sp. ES3-33","na":1,"nb":1,"a":[["TED%3AAF-A0A0D8ZZX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D8ZZX7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1628833","Pseudomonas sp. ES3-33"]]},{"id":"NCBITaxon:1629717","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0F2PPN4-F1-model_v4_TED02","TED novel fold AF-A0A0F2PPN4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1629717","Peptococcaceae bacterium BRH_c4b"]]},{"id":"NCBITaxon:1629718","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0F2RDH0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F2RDH0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1629718","Rhodospirillaceae bacterium BRH_c57"]]},{"id":"NCBITaxon:1629722","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0F2P724-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F2P724-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1629722","Gammaproteobacteria bacterium BRH_c0"]]},{"id":"NCBITaxon:163003","l":"","na":1,"nb":1,"a":[["Pfam%3APF01934","Ribonuclease HepT-like"]],"b":[["NCBITaxon%3A163003","Thermococcus cleftensis"]]},{"id":"NCBITaxon:1630141","l":"Candidatus Nitrosoglobus terrae","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q2SLZ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q2SLZ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1630141","Candidatus Nitrosoglobus terrae"]]},{"id":"NCBITaxon:1630166","l":"Bifidobacterium myosotis","na":1,"nb":1,"a":[["TED%3AAF-A0A5M9ZH21-F1-model_v4_TED01","TED novel fold AF-A0A5M9ZH21-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1630166","Bifidobacterium myosotis"]]},{"id":"NCBITaxon:1631356","l":"Luteipulveratus halotolerans","na":1,"nb":1,"a":[["TED%3AAF-A0A0L6CK14-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0L6CK14-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1631356","Luteipulveratus halotolerans"]]},{"id":"NCBITaxon:1632864","l":"Planctomyces sp. SH-PL14","na":1,"nb":1,"a":[["TED%3AAF-A0A142X1A9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A142X1A9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1632864","Planctomyces sp. SH-PL14"]]},{"id":"NCBITaxon:1633631","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0P1MHJ7-F1-model_v4_TED01","TED novel fold AF-A0A0P1MHJ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1633631","Candidatus Kryptonium thompsonii"]]},{"id":"NCBITaxon:1635171","l":"Pokkaliibacter plantistimulans","na":1,"nb":1,"a":[["TED%3AAF-A0A318C1K6-F1-model_v4_TED02","TED novel fold AF-A0A318C1K6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1635171","Pokkaliibacter plantistimulans"]]},{"id":"NCBITaxon:1635258","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A101DGG6-F1-model_v4_TED02","TED novel fold AF-A0A101DGG6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1635258","Desulfonauticus sp. 38_4375"]]},{"id":"NCBITaxon:1635287","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A101F534-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A101F534-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1635287","Methanosarcinales archeaon 56_1174"]]},{"id":"NCBITaxon:1636719","l":"Psychrobacillus lasiicapitis","na":1,"nb":1,"a":[["TED%3AAF-A0A544SVH9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A544SVH9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1636719","Psychrobacillus lasiicapitis"]]},{"id":"NCBITaxon:1637999","l":"Verrucomicrobia bacterium IMCC26134","na":1,"nb":1,"a":[["TED%3AAF-A0A0E3YY29-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A0E3YY29-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1637999","Verrucomicrobia bacterium IMCC26134"]]},{"id":"NCBITaxon:1638099","l":"Salinarimonas soli","na":1,"nb":1,"a":[["TED%3AAF-A0A5B2VF65-F1-model_v4_TED03","TED novel fold AF-A0A5B2VF65-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1638099","Salinarimonas soli"]]},{"id":"NCBITaxon:1638939","l":"Streptomyces sp. KE1","na":1,"nb":1,"a":[["TED%3AAF-A0A0H1ADU0-F1-model_v4_TED01","TED novel fold AF-A0A0H1ADU0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1638939","Streptomyces sp. KE1"]]},{"id":"NCBITaxon:1639035","l":"Ancylomarina subtilis","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q7VJ86-F1-model_v4_TED01","TED novel fold AF-A0A4Q7VJ86-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1639035","Ancylomarina subtilis"]]},{"id":"NCBITaxon:1639133","l":"Citrobacter portucalensis","na":1,"nb":1,"a":[["TED%3AAF-A0A7I7D4I9-F1-model_v4_TED01","TED novel fold AF-A0A7I7D4I9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1639133","Citrobacter portucalensis"]]},{"id":"NCBITaxon:1639348","l":"Magnetospirillum sp. ME-1","na":1,"nb":1,"a":[["TED%3AAF-A0A1W6CQ93-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1W6CQ93-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1639348","Magnetospirillum sp. ME-1"]]},{"id":"NCBITaxon:1639689","l":"Pontivivens insulae","na":1,"nb":1,"a":[["TED%3AAF-A0A2R8A870-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2R8A870-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1639689","Pontivivens insulae"]]},{"id":"NCBITaxon:1640508","l":"Candidatus Dadabacteria bacterium CSP1-2","na":1,"nb":1,"a":[["TED%3AAF-A0A0T5ZT54-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0T5ZT54-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1640508","Candidatus Dadabacteria bacterium CSP1-2"]]},{"id":"NCBITaxon:1640674","l":"Williamwhitmania taraxaci","na":1,"nb":1,"a":[["TED%3AAF-A0A1G6THB4-F1-model_v4_TED03","TED novel fold AF-A0A1G6THB4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1640674","Williamwhitmania taraxaci"]]},{"id":"NCBITaxon:1641389","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A101HI13-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A101HI13-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1641389","candidate division WS6 bacterium 34_10"]]},{"id":"NCBITaxon:1642299","l":"Streptomyces alfalfae","na":1,"nb":1,"a":[["TED%3AAF-A0A7T4PGJ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T4PGJ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1642299","Streptomyces alfalfae"]]},{"id":"NCBITaxon:1642303","l":"Nonomuraea zeae","na":1,"nb":1,"a":[["TED%3AAF-A0A5S4G4F8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5S4G4F8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1642303","Nonomuraea zeae"]]},{"id":"NCBITaxon:164332","l":"Roseicyclus mahoneyensis","na":1,"nb":1,"a":[["TED%3AAF-A0A316GQD4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A316GQD4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A164332","Roseicyclus mahoneyensis"]]},{"id":"NCBITaxon:1643451","l":"Sphingobacterium sp. Ag1","na":1,"nb":1,"a":[["TED%3AAF-A0A0M2XSW5-F1-model_v4_TED04","TED novel fold AF-A0A0M2XSW5-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1643451","Sphingobacterium sp. Ag1"]]},{"id":"NCBITaxon:1645681","l":"Nakamurella silvestris","na":1,"nb":1,"a":[["TED%3AAF-A0A399UJU9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A399UJU9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1645681","Nakamurella silvestris"]]},{"id":"NCBITaxon:164756","l":"Mycobacterium sp. MCS","na":1,"nb":1,"a":[["TED%3AAF-A0A5Q5BFH8-F1-model_v4_TED01","TED novel fold AF-A0A5Q5BFH8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A164756","Mycobacterium sp. MCS"]]},{"id":"NCBITaxon:1647582","l":"Wenyingzhuangia aestuarii","na":1,"nb":1,"a":[["Pfam%3APF18040","beta porphyranase A C-terminal"]],"b":[["NCBITaxon%3A1647582","Wenyingzhuangia aestuarii"]]},{"id":"NCBITaxon:1648404","l":"Aurantiacibacter atlanticus","na":1,"nb":1,"a":[["TED%3AAF-A0A0H4VAN8-F1-model_v4_TED01","TED novel fold AF-A0A0H4VAN8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1648404","Aurantiacibacter atlanticus"]]},{"id":"NCBITaxon:164851","l":"uncultured soil bacterium","na":1,"nb":1,"a":[["IDPO%3A0000033","flexible linker"]],"b":[["NCBITaxon%3A164851","uncultured soil bacterium"]]},{"id":"NCBITaxon:1649266","l":"Pontibacter mucosus","na":1,"nb":1,"a":[["TED%3AAF-A0A2T5YD72-F1-model_v4_TED02","TED novel fold AF-A0A2T5YD72-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1649266","Pontibacter mucosus"]]},{"id":"NCBITaxon:1649877","l":"Pseudomonas sp. CCOS 191","na":1,"nb":1,"a":[["TED%3AAF-A0A0F7Y2R1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0F7Y2R1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1649877","Pseudomonas sp. CCOS 191"]]},{"id":"NCBITaxon:1650663","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A4R1QMU8-F1-model_v4_TED06","TED novel fold AF-A0A4R1QMU8-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A1650663","Allofournierella massiliensis"]]},{"id":"NCBITaxon:165185","l":"uncultured Eubacterium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A1C6GM73-F1-model_v4_TED04","TED novel fold AF-A0A1C6GM73-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A165185","uncultured Eubacterium sp."]]},{"id":"NCBITaxon:1652831","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0H3ZNT2-F1-model_v4_TED01","TED novel fold AF-A0A0H3ZNT2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1652831","Vibrio sp. FF_286"]]},{"id":"NCBITaxon:1653476","l":"Caldimicrobium thiodismutans","na":1,"nb":1,"a":[["TED%3AAF-A0A0U4W3M4-F1-model_v4_TED01","TED novel fold AF-A0A0U4W3M4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1653476","Caldimicrobium thiodismutans"]]},{"id":"NCBITaxon:1653850","l":"Planctomyces bekefii","na":1,"nb":1,"a":[["TED%3AAF-A0A5C6M4E2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5C6M4E2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1653850","Planctomyces bekefii"]]},{"id":"NCBITaxon:1655277","l":"Brevibacillus gelatini","na":1,"nb":1,"a":[["TED%3AAF-A0A3M8BF35-F1-model_v4_TED02","TED novel fold AF-A0A3M8BF35-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1655277","Brevibacillus gelatini"]]},{"id":"NCBITaxon:1655435","l":"Serinibacter arcticus","na":1,"nb":1,"a":[["TED%3AAF-A0A2U1ZSC6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U1ZSC6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1655435","Serinibacter arcticus"]]},{"id":"NCBITaxon:1655592","l":"Cryomorphaceae bacterium BACL21 MAG-121220-bin10","na":1,"nb":1,"a":[["TED%3AAF-A0A0R2RYD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0R2RYD6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1655592","Cryomorphaceae bacterium BACL21 MAG-121220-bin10"]]},{"id":"NCBITaxon:1655611","l":"SAR86 cluster bacterium BACL1 MAG-120619-bin26","na":1,"nb":1,"a":[["TED%3AAF-A0A0R2UVS8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0R2UVS8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1655611","SAR86 cluster bacterium BACL1 MAG-120619-bin26"]]},{"id":"NCBITaxon:1655633","l":"Actinobacteria bacterium BACL2 MAG-120507-bin38","na":1,"nb":1,"a":[["TED%3AAF-A0A0R2WX30-F1-model_v4_TED01","TED novel fold AF-A0A0R2WX30-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1655633","Actinobacteria bacterium BACL2 MAG-120507-bin38"]]},{"id":"NCBITaxon:165597","l":"Crocosphaera watsonii WH 8501","na":1,"nb":1,"a":[["TED%3AAF-Q4C993-F1-model_v4_TED03","TED novel fold AF-Q4C993-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A165597","Crocosphaera watsonii WH 8501"]]},{"id":"NCBITaxon:1658765","l":"Marinobacter subterrani","na":1,"nb":1,"a":[["TED%3AAF-A0A0J7J4S0-F1-model_v4_TED02","TED novel fold AF-A0A0J7J4S0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1658765","Marinobacter subterrani"]]},{"id":"NCBITaxon:1659195","l":"Parcubacteria bacterium C7867-001","na":1,"nb":1,"a":[["TED%3AAF-A0A0L0LMR2-F1-model_v4_TED01","TED novel fold AF-A0A0L0LMR2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1659195","Parcubacteria bacterium C7867-001"]]},{"id":"NCBITaxon:1659202","l":"Parcubacteria bacterium C7867-008","na":1,"nb":1,"a":[["TED%3AAF-A0A0L0LGW9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0L0LGW9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1659202","Parcubacteria bacterium C7867-008"]]},{"id":"NCBITaxon:1660097","l":"Devosia sp. SCN 66-27","na":1,"nb":1,"a":[["TED%3AAF-A0A1E4AWJ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E4AWJ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1660097","Devosia sp. SCN 66-27"]]},{"id":"NCBITaxon:1660099","l":"Erythrobacter sp. SCN 62-14","na":1,"nb":1,"a":[["TED%3AAF-A0A1E4B557-F1-model_v4_TED01","TED novel fold AF-A0A1E4B557-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1660099","Erythrobacter sp. SCN 62-14"]]},{"id":"NCBITaxon:1660104","l":"Lautropia sp. SCN 69-89","na":1,"nb":1,"a":[["TED%3AAF-A0A1D2SDE0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1D2SDE0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1660104","Lautropia sp. SCN 69-89"]]},{"id":"NCBITaxon:1660128","l":"Phenylobacterium sp. SCN 69-14","na":1,"nb":1,"a":[["TED%3AAF-A0A1D2TRD7-F1-model_v4_TED01","TED novel fold AF-A0A1D2TRD7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1660128","Phenylobacterium sp. SCN 69-14"]]},{"id":"NCBITaxon:1660129","l":"Phenylobacterium sp. SCN 70-31","na":1,"nb":1,"a":[["TED%3AAF-A0A1E4GQB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E4GQB9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1660129","Phenylobacterium sp. SCN 70-31"]]},{"id":"NCBITaxon:1660139","l":"Rubrivivax sp. SCN 70-15","na":1,"nb":1,"a":[["TED%3AAF-A0A1E4PV28-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E4PV28-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1660139","Rubrivivax sp. SCN 70-15"]]},{"id":"NCBITaxon:1660152","l":"Variovorax sp. SCN 67-85","na":1,"nb":1,"a":[["TED%3AAF-A0A1E4J2S9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E4J2S9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1660152","Variovorax sp. SCN 67-85"]]},{"id":"NCBITaxon:1660161","l":"Comamonadaceae bacterium SCN 68-20","na":1,"nb":1,"a":[["TED%3AAF-A0A1E4LPY3-F1-model_v4_TED01","TED novel fold AF-A0A1E4LPY3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1660161","Comamonadaceae bacterium SCN 68-20"]]},{"id":"NCBITaxon:1660164","l":"Nitrosomonadales bacterium SCN 54-20","na":1,"nb":1,"a":[["TED%3AAF-A0A1E4GKC2-F1-model_v4_TED01","TED novel fold AF-A0A1E4GKC2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1660164","Nitrosomonadales bacterium SCN 54-20"]]},{"id":"NCBITaxon:1662404","l":"Streptomyces sp. GKU 895","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4E5Y3-F1-model_v4_TED02","TED novel fold AF-A0A1V4E5Y3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1662404","Streptomyces sp. GKU 895"]]},{"id":"NCBITaxon:1663685","l":"Pedobacter sp. BMA","na":1,"nb":1,"a":[["TED%3AAF-A0A0J0Y946-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0J0Y946-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1663685","Pedobacter sp. BMA"]]},{"id":"NCBITaxon:1664068","l":"bacterium 336/3","na":1,"nb":1,"a":[["TED%3AAF-A0A0N0CYH9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0N0CYH9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1664068","bacterium 336/3"]]},{"id":"NCBITaxon:1666904","l":"Oceanicaulis sp. HLUCCA04","na":1,"nb":1,"a":[["TED%3AAF-A0A0P7VI28-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0P7VI28-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1666904","Oceanicaulis sp. HLUCCA04"]]},{"id":"NCBITaxon:1666913","l":"Rhodobacteraceae bacterium HLUCCA08","na":1,"nb":1,"a":[["TED%3AAF-A0A0P7VN22-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0P7VN22-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1666913","Rhodobacteraceae bacterium HLUCCA08"]]},{"id":"NCBITaxon:1667024","l":"Vibrio algivorus","na":1,"nb":1,"a":[["TED%3AAF-A0A557NSY4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A557NSY4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1667024","Vibrio algivorus"]]},{"id":"NCBITaxon:1670455","l":"Sulfodiicoccus acidiphilus","na":1,"nb":1,"a":[["TED%3AAF-A0A348B6D9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A348B6D9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1670455","Sulfodiicoccus acidiphilus"]]},{"id":"NCBITaxon:1670800","l":"Aquibium oceanicum","na":1,"nb":1,"a":[["TED%3AAF-A0A1L3SXT9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1L3SXT9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1670800","Aquibium oceanicum"]]},{"id":"NCBITaxon:1673428","l":"Cuniculiplasma divulgatum","na":1,"nb":1,"a":[["TED%3AAF-A0A1N5S5J2-F1-model_v4_TED02","TED novel fold AF-A0A1N5S5J2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1673428","Cuniculiplasma divulgatum"]]},{"id":"NCBITaxon:167539","l":"","na":1,"nb":1,"a":[["TED%3AAF-Q7VCX4-F1-model_v4_TED08","TED novel fold AF-Q7VCX4-F1-model_v4_TED08"]],"b":[["NCBITaxon%3A167539","Prochlorococcus marinus subsp. marinus str. CCMP1375"]]},{"id":"NCBITaxon:1675527","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0J9EEL6-F1-model_v4_TED01","TED novel fold AF-A0A0J9EEL6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1675527","Candidatus Rhodobacter oscarellae"]]},{"id":"NCBITaxon:1675530","l":"Acinetobacter genomosp. 33YU","na":1,"nb":1,"a":[["TED%3AAF-A0A1V2V0J6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V2V0J6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1675530","Acinetobacter genomosp. 33YU"]]},{"id":"NCBITaxon:1675788","l":"Paracoccus onubensis","na":1,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_IPL","Metallophore-associated isochorismate pyruvate-lyase family"]],"b":[["NCBITaxon%3A1675788","Paracoccus onubensis"]]},{"id":"NCBITaxon:1677857","l":"Acetivibrio saccincola","na":1,"nb":1,"a":[["TED%3AAF-A0A2S8RBD2-F1-model_v4_TED03","TED novel fold AF-A0A2S8RBD2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1677857","Acetivibrio saccincola"]]},{"id":"NCBITaxon:1678841","l":"Lentimicrobium saccharophilum","na":1,"nb":1,"a":[["TED%3AAF-A0A0S7BSF5-F1-model_v4_TED01","TED novel fold AF-A0A0S7BSF5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1678841","Lentimicrobium saccharophilum"]]},{"id":"NCBITaxon:1679083","l":"Natrarchaeobius chitinivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A3N6M7R2-F1-model_v4_TED01","TED novel fold AF-A0A3N6M7R2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1679083","Natrarchaeobius chitinivorans"]]},{"id":"NCBITaxon:1685010","l":"Chryseobacterium glaciei","na":1,"nb":1,"a":[["TED%3AAF-A0A172XRJ3-F1-model_v4_TED03","TED novel fold AF-A0A172XRJ3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1685010","Chryseobacterium glaciei"]]},{"id":"NCBITaxon:1685377","l":"Microbulbifer sp. ZGT114","na":1,"nb":1,"a":[["TED%3AAF-A0A0X3UAA2-F1-model_v4_TED02","TED novel fold AF-A0A0X3UAA2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1685377","Microbulbifer sp. ZGT114"]]},{"id":"NCBITaxon:1688639","l":"Noviherbaspirillum humi","na":1,"nb":1,"a":[["TED%3AAF-A0A239G4L3-F1-model_v4_TED01","TED novel fold AF-A0A239G4L3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1688639","Noviherbaspirillum humi"]]},{"id":"NCBITaxon:1688776","l":"Bacteroidales bacterium 6E","na":1,"nb":1,"a":[["TED%3AAF-A0A0K8QZY2-F1-model_v4_TED05","TED novel fold AF-A0A0K8QZY2-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1688776","Bacteroidales bacterium 6E"]]},{"id":"NCBITaxon:1690485","l":"Betaproteobacteria bacterium UKL13-2","na":1,"nb":1,"a":[["TED%3AAF-A0A142LLM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A142LLM3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1690485","Betaproteobacteria bacterium UKL13-2"]]},{"id":"NCBITaxon:1696036","l":"Candidatus Finniella inopinata","na":1,"nb":1,"a":[["TED%3AAF-A0A4V2DZL4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4V2DZL4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1696036","Candidatus Finniella inopinata"]]},{"id":"NCBITaxon:1697043","l":"Bordetella sp. H567","na":1,"nb":1,"a":[["TED%3AAF-A0A1B2RAG0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B2RAG0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1697043","Bordetella sp. H567"]]},{"id":"NCBITaxon:1697557","l":"Marinobacter confluentis","na":1,"nb":1,"a":[["TED%3AAF-A0A4Z1BTW9-F1-model_v4_TED01","TED novel fold AF-A0A4Z1BTW9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1697557","Marinobacter confluentis"]]},{"id":"NCBITaxon:169760","l":"Paenibacillus stellifer","na":1,"nb":1,"a":[["TED%3AAF-A0A089LNP8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A089LNP8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A169760","Paenibacillus stellifer"]]},{"id":"NCBITaxon:1698281","l":"candidate division MSBL1 archaeon SCGC-AAA382C18","na":1,"nb":1,"a":[["TED%3AAF-A0A133VH86-F1-model_v4_TED01","TED novel fold AF-A0A133VH86-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1698281","candidate division MSBL1 archaeon SCGC-AAA382C18"]]},{"id":"NCBITaxon:170000","l":"Phakopsora pachyrhizi","na":1,"nb":1,"a":[["TED%3AAF-A0A0S1MKM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S1MKM4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A170000","Phakopsora pachyrhizi"]]},{"id":"NCBITaxon:1700835","l":"Candidatus Bathyarchaeota archaeon BA1","na":1,"nb":1,"a":[["TED%3AAF-A0A0P9I0I1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0P9I0I1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1700835","Candidatus Bathyarchaeota archaeon BA1"]]},{"id":"NCBITaxon:1702","l":"Brevibacterium sterolicum","na":1,"nb":1,"a":[["Pfam%3APF22500","GMC oxidoreductase, C-terminal"]],"b":[["NCBITaxon%3A1702","Brevibacterium sterolicum"]]},{"id":"NCBITaxon:1703337","l":"Hallella colorans","na":1,"nb":1,"a":[["TED%3AAF-A0A2U0U072-F1-model_v4_TED04","TED novel fold AF-A0A2U0U072-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1703337","Hallella colorans"]]},{"id":"NCBITaxon:1703343","l":"Marinirhabdus gelatinilytica","na":1,"nb":1,"a":[["TED%3AAF-A0A370Q2G1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A370Q2G1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1703343","Marinirhabdus gelatinilytica"]]},{"id":"NCBITaxon:1703352","l":"Bacteroides sp. SM23_62","na":1,"nb":1,"a":[["TED%3AAF-A0A0S8JVR9-F1-model_v4_TED02","TED novel fold AF-A0A0S8JVR9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1703352","Bacteroides sp. SM23_62"]]},{"id":"NCBITaxon:1703357","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0S8BD44-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0S8BD44-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1703357","Gemmatimonas sp. SG8_28"]]},{"id":"NCBITaxon:1703358","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0S8FXC8-F1-model_v4_TED03","TED novel fold AF-A0A0S8FXC8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1703358","Gemmatimonas sp. SG8_38_2"]]},{"id":"NCBITaxon:1703359","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0S8HDK6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0S8HDK6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1703359","Gemmatimonas sp. SM23_52"]]},{"id":"NCBITaxon:1703361","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0S7Y159-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0S7Y159-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1703361","Syntrophobacter sp. DG_60"]]},{"id":"NCBITaxon:1703385","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0S8GK70-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S8GK70-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1703385","Acidithiobacillales bacterium SM23_46"]]},{"id":"NCBITaxon:1703388","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0S8KE38-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S8KE38-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1703388","Anaerolineae bacterium SM23_84"]]},{"id":"NCBITaxon:1703395","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0S8CBD1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0S8CBD1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1703395","Dehalococcoidia bacterium SM23_28_1"]]},{"id":"NCBITaxon:1703402","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0S7ZT21-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S7ZT21-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1703402","Gammaproteobacteria bacterium SG8_11"]]},{"id":"NCBITaxon:1703408","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0S8F4A3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0S8F4A3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1703408","Myxococcales bacterium SG8_38_1"]]},{"id":"NCBITaxon:1703411","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0S8GVF7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S8GVF7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1703411","Phycisphaerae bacterium SM23_30"]]},{"id":"NCBITaxon:1703415","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0S7WZC6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S7WZC6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1703415","Planctomycetes bacterium DG_58"]]},{"id":"NCBITaxon:1703416","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0S8ESX3-F1-model_v4_TED01","TED novel fold AF-A0A0S8ESX3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1703416","Thiotrichales bacterium SG8_50"]]},{"id":"NCBITaxon:1703424","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0S8IZM5-F1-model_v4_TED01","TED novel fold AF-A0A0S8IZM5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1703424","candidate division Zixibacteria bacterium SM1_73"]]},{"id":"NCBITaxon:1703427","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0S8ISL4-F1-model_v4_TED01","TED novel fold AF-A0A0S8ISL4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1703427","candidate division Zixibacteria bacterium SM23_73_3"]]},{"id":"NCBITaxon:170367","l":"Paenibacillus anaericanus","na":1,"nb":1,"a":[["TED%3AAF-A0A433Y7J1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A433Y7J1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A170367","Paenibacillus anaericanus"]]},{"id":"NCBITaxon:1703764","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0S7WY80-F1-model_v4_TED01","TED novel fold AF-A0A0S7WY80-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1703764","Parcubacteria bacterium DG_72"]]},{"id":"NCBITaxon:1703937","l":"Streptomyces sp. CB03234","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q5LKM4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q5LKM4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1703937","Streptomyces sp. CB03234"]]},{"id":"NCBITaxon:1703940","l":"Streptomyces sp. CB02261","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q5I6L7-F1-model_v4_TED01","TED novel fold AF-A0A1Q5I6L7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1703940","Streptomyces sp. CB02261"]]},{"id":"NCBITaxon:1703960","l":"Rhizobium sp. N113","na":1,"nb":1,"a":[["TED%3AAF-A0A192M071-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A192M071-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1703960","Rhizobium sp. N113"]]},{"id":"NCBITaxon:1704024","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0S8D382-F1-model_v4_TED01","TED novel fold AF-A0A0S8D382-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1704024","Nitrospira bacterium SG8_35_1"]]},{"id":"NCBITaxon:1704025","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0S8AI38-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S8AI38-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1704025","Nitrospira bacterium SG8_35_4"]]},{"id":"NCBITaxon:1704590","l":"Brachybacterium sp. SW0106-09","na":1,"nb":1,"a":[["TED%3AAF-A0A0M9UKT3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0M9UKT3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1704590","Brachybacterium sp. SW0106-09"]]},{"id":"NCBITaxon:1705393","l":"Chryseobacterium sp. ERMR1:04","na":1,"nb":1,"a":[["TED%3AAF-A0A0N1MGT1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0N1MGT1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1705393","Chryseobacterium sp. ERMR1:04"]]},{"id":"NCBITaxon:1705562","l":"Haloarcula rubripromontorii","na":1,"nb":1,"a":[["TED%3AAF-A0A847TUX0-F1-model_v4_TED01","TED novel fold AF-A0A847TUX0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1705562","Haloarcula rubripromontorii"]]},{"id":"NCBITaxon:1705564","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A150J0S6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A150J0S6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1705564","Candidatus Methanofastidiosum methylothiophilum"]]},{"id":"NCBITaxon:1706046","l":"Sulfurirhabdus autotrophica","na":1,"nb":1,"a":[["TED%3AAF-A0A4R3XTA7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4R3XTA7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1706046","Sulfurirhabdus autotrophica"]]},{"id":"NCBITaxon:1706443","l":"Candidatus Thorarchaeota archaeon SMTZ-45","na":1,"nb":1,"a":[["TED%3AAF-A0A135VJX9-F1-model_v4_TED01","TED novel fold AF-A0A135VJX9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1706443","Candidatus Thorarchaeota archaeon SMTZ-45"]]},{"id":"NCBITaxon:1706444","l":"Candidatus Thorarchaeota archaeon SMTZ1-45","na":1,"nb":1,"a":[["TED%3AAF-A0A135VDT4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A135VDT4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1706444","Candidatus Thorarchaeota archaeon SMTZ1-45"]]},{"id":"NCBITaxon:1706445","l":"Candidatus Thorarchaeota archaeon SMTZ1-83","na":1,"nb":1,"a":[["TED%3AAF-A0A135VYZ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A135VYZ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1706445","Candidatus Thorarchaeota archaeon SMTZ1-83"]]},{"id":"NCBITaxon:1706839","l":"Paracoccus gahaiensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4U0RMG3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U0RMG3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1706839","Paracoccus gahaiensis"]]},{"id":"NCBITaxon:1710888","l":"Anabaena sp. CRKS33","na":1,"nb":1,"a":[["TED%3AAF-A0A1B7WA14-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B7WA14-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1710888","Anabaena sp. CRKS33"]]},{"id":"NCBITaxon:1710892","l":"Anabaena sp. LE011-02","na":1,"nb":1,"a":[["TED%3AAF-A0A1B7VF61-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1B7VF61-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1710892","Anabaena sp. LE011-02"]]},{"id":"NCBITaxon:1710896","l":"Aphanizomenon flos-aquae WA102","na":1,"nb":1,"a":[["TED%3AAF-A0A1B7X855-F1-model_v4_TED01","TED novel fold AF-A0A1B7X855-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1710896","Aphanizomenon flos-aquae WA102"]]},{"id":"NCBITaxon:1712410","l":"Thermanaerosceptrum fracticalcis","na":1,"nb":1,"a":[["TED%3AAF-A0A7G6E021-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7G6E021-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1712410","Thermanaerosceptrum fracticalcis"]]},{"id":"NCBITaxon:171292","l":"uncultured Mycobacterium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y5PD85-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y5PD85-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A171292","uncultured Mycobacterium sp."]]},{"id":"NCBITaxon:171383","l":"Vibrio hepatarius","na":1,"nb":1,"a":[["TED%3AAF-A0A0M0HYY9-F1-model_v4_TED02","TED novel fold AF-A0A0M0HYY9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A171383","Vibrio hepatarius"]]},{"id":"NCBITaxon:1714253","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A101WZJ6-F1-model_v4_TED03","TED novel fold AF-A0A101WZJ6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1714253","Vulcanisaeta sp. JCHS_4"]]},{"id":"NCBITaxon:1714258","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A101X9V8-F1-model_v4_TED02","TED novel fold AF-A0A101X9V8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1714258","Thermoproteus sp. JCHS_4"]]},{"id":"NCBITaxon:1714260","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A117SN63-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A117SN63-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1714260","Pyrobaculum sp. JCHS_4"]]},{"id":"NCBITaxon:1715006","l":"Corynebacterium sp. HMSC070E08","na":1,"nb":1,"a":[["TED%3AAF-A0A1E9ZFL8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1E9ZFL8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1715006","Corynebacterium sp. HMSC070E08"]]},{"id":"NCBITaxon:1715007","l":"Rothia sp. HMSC071B01","na":1,"nb":1,"a":[["TED%3AAF-A0A1E9ZM56-F1-model_v4_TED01","TED novel fold AF-A0A1E9ZM56-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1715007","Rothia sp. HMSC071B01"]]},{"id":"NCBITaxon:1715079","l":"Neisseria sp. HMSC077D05","na":1,"nb":1,"a":[["TED%3AAF-A0A1E9VTI2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E9VTI2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1715079","Neisseria sp. HMSC077D05"]]},{"id":"NCBITaxon:1715109","l":"Rothia sp. HMSC072B03","na":1,"nb":1,"a":[["TED%3AAF-A0A1E9T6W6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1E9T6W6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1715109","Rothia sp. HMSC072B03"]]},{"id":"NCBITaxon:1715720","l":"Diaphorobacter ruginosibacter","na":1,"nb":1,"a":[["TED%3AAF-A0A7G9RTU7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G9RTU7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1715720","Diaphorobacter ruginosibacter"]]},{"id":"NCBITaxon:1716141","l":"Streptomyces jeddahensis","na":1,"nb":1,"a":[["TED%3AAF-A0A177HQP2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A177HQP2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1716141","Streptomyces jeddahensis"]]},{"id":"NCBITaxon:1718918","l":"Pseudomonas sp. ICMP 561","na":1,"nb":1,"a":[["TED%3AAF-A0A2G0V9T3-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A2G0V9T3-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1718918","Pseudomonas sp. ICMP 561"]]},{"id":"NCBITaxon:1719036","l":"Seonamhaeicola algicola","na":1,"nb":1,"a":[["TED%3AAF-A0A5C7AM55-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7AM55-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1719036","Seonamhaeicola algicola"]]},{"id":"NCBITaxon:1720294","l":"Eisenbergiella massiliensis","na":1,"nb":1,"a":[["TED%3AAF-A0A3E3I720-F1-model_v4_TED01","TED novel fold AF-A0A3E3I720-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1720294","Eisenbergiella massiliensis"]]},{"id":"NCBITaxon:1720313","l":"Bittarella massiliensis (ex Durand et al. 2017)","na":1,"nb":1,"a":[["TED%3AAF-A0A6B1UFA0-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A6B1UFA0-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1720313","Bittarella massiliensis (ex Durand et al. 2017)"]]},{"id":"NCBITaxon:1720316","l":"Senegalia massiliensis","na":1,"nb":1,"a":[["TED%3AAF-A0A845QYK1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A845QYK1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1720316","Senegalia massiliensis"]]},{"id":"NCBITaxon:1724","l":"Corynebacterium renale","na":1,"nb":1,"a":[["TED%3AAF-A0A2A9DLH1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A9DLH1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1724","Corynebacterium renale"]]},{"id":"NCBITaxon:1727163","l":"Algoriphagus sanaruensis","na":1,"nb":1,"a":[["TED%3AAF-A0A142ENK3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142ENK3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1727163","Algoriphagus sanaruensis"]]},{"id":"NCBITaxon:1729581","l":"Flavobacterium sp. TAB 87","na":1,"nb":1,"a":[["TED%3AAF-A0A119A8W3-F1-model_v4_TED01","TED novel fold AF-A0A119A8W3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1729581","Flavobacterium sp. TAB 87"]]},{"id":"NCBITaxon:1729650","l":"Planktothrix sp. PCC 11201","na":1,"nb":1,"a":[["TED%3AAF-A0A1T4ZGB8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1T4ZGB8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1729650","Planktothrix sp. PCC 11201"]]},{"id":"NCBITaxon:1732569","l":"Bdellovibrio sp. SKB1291214","na":1,"nb":1,"a":[["TED%3AAF-A0A254QC67-F1-model_v4_TED03","TED novel fold AF-A0A254QC67-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1732569","Bdellovibrio sp. SKB1291214"]]},{"id":"NCBITaxon:1735162","l":"Candidatus Peribacter riflensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0S1SSH7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S1SSH7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1735162","Candidatus Peribacter riflensis"]]},{"id":"NCBITaxon:1736316","l":"Pseudorhodoferax sp. Leaf267","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q4XVH2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q4XVH2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1736316","Pseudorhodoferax sp. Leaf267"]]},{"id":"NCBITaxon:1736375","l":"Aureimonas sp. Leaf427","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q6CCD2-F1-model_v4_TED01","TED novel fold AF-A0A0Q6CCD2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1736375","Aureimonas sp. Leaf427"]]},{"id":"NCBITaxon:1736404","l":"Paenibacillus sp. Soil766","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q9QY30-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0Q9QY30-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1736404","Paenibacillus sp. Soil766"]]},{"id":"NCBITaxon:1736415","l":"Phycicoccus sp. Soil803","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q9SAW4-F1-model_v4_TED03","TED novel fold AF-A0A0Q9SAW4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1736415","Phycicoccus sp. Soil803"]]},{"id":"NCBITaxon:1736416","l":"Nocardioides sp. Soil805","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q9TGD2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q9TGD2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1736416","Nocardioides sp. Soil805"]]},{"id":"NCBITaxon:1736419","l":"Terrabacter sp. Soil811","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q9U0N8-F1-model_v4_TED01","TED novel fold AF-A0A0Q9U0N8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1736419","Terrabacter sp. Soil811"]]},{"id":"NCBITaxon:1736430","l":"Pelomonas sp. Root1217","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q6TDV5-F1-model_v4_TED03","TED novel fold AF-A0A0Q6TDV5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1736430","Pelomonas sp. Root1217"]]},{"id":"NCBITaxon:1736464","l":"Pelomonas sp. Root1444","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q7SFG8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0Q7SFG8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1736464","Pelomonas sp. Root1444"]]},{"id":"NCBITaxon:1736470","l":"Caulobacter sp. Root1472","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q7V710-F1-model_v4_TED01","TED novel fold AF-A0A0Q7V710-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1736470","Caulobacter sp. Root1472"]]},{"id":"NCBITaxon:1736674","l":"Pseudalgibacter alginicilyticus","na":1,"nb":1,"a":[["TED%3AAF-A0A0P0DD24-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0P0DD24-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1736674","Pseudalgibacter alginicilyticus"]]},{"id":"NCBITaxon:1737063","l":"Brumimicrobium aurantiacum","na":1,"nb":1,"a":[["TED%3AAF-A0A3E1EWN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3E1EWN3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1737063","Brumimicrobium aurantiacum"]]},{"id":"NCBITaxon:1739113","l":"Novosphingobium sp. FSW06-99","na":1,"nb":1,"a":[["TED%3AAF-A0A124JZM1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A124JZM1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1739113","Novosphingobium sp. FSW06-99"]]},{"id":"NCBITaxon:1739251","l":"Fusobacterium sp. HMSC073F01","na":1,"nb":1,"a":[["TED%3AAF-A0A1E9J453-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E9J453-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1739251","Fusobacterium sp. HMSC073F01"]]},{"id":"NCBITaxon:1739367","l":"Micrococcus sp. HMSC067E09","na":1,"nb":1,"a":[["TED%3AAF-A0A1F1IAR3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F1IAR3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1739367","Micrococcus sp. HMSC067E09"]]},{"id":"NCBITaxon:1739423","l":"Rothia sp. HMSC068E02","na":1,"nb":1,"a":[["TED%3AAF-A0A1F0Z8K8-F1-model_v4_TED01","TED novel fold AF-A0A1F0Z8K8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1739423","Rothia sp. HMSC068E02"]]},{"id":"NCBITaxon:1739517","l":"Bacteroides sp. HMSC073E02","na":1,"nb":1,"a":[["TED%3AAF-A0A1F0J0B6-F1-model_v4_TED01","TED novel fold AF-A0A1F0J0B6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1739517","Bacteroides sp. HMSC073E02"]]},{"id":"NCBITaxon:173959","l":"Brevibacillus invocatus","na":1,"nb":1,"a":[["TED%3AAF-A0A3M8C5C7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M8C5C7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A173959","Brevibacillus invocatus"]]},{"id":"NCBITaxon:1740090","l":"Pedobacter sp. Hv1","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q0VF61-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0Q0VF61-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1740090","Pedobacter sp. Hv1"]]},{"id":"NCBITaxon:1743144","l":"Bacillus sp. FJAT-27225","na":1,"nb":1,"a":[["TED%3AAF-A0A1B9APH1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B9APH1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1743144","Bacillus sp. FJAT-27225"]]},{"id":"NCBITaxon:1743164","l":"Polynucleobacter aenigmaticus","na":1,"nb":1,"a":[["TED%3AAF-A0A254PW67-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A254PW67-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1743164","Polynucleobacter aenigmaticus"]]},{"id":"NCBITaxon:1745182","l":"Paracoccus sp. MKU1","na":1,"nb":1,"a":[["TED%3AAF-A0A0V0Q5K7-F1-model_v4_TED01","TED novel fold AF-A0A0V0Q5K7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1745182","Paracoccus sp. MKU1"]]},{"id":"NCBITaxon:1745382","l":"Frankia sp. CcI49","na":1,"nb":1,"a":[["TED%3AAF-A0A1V2KNB4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V2KNB4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1745382","Frankia sp. CcI49"]]},{"id":"NCBITaxon:1752064","l":"Leptolyngbya sp. NIES-3755","na":1,"nb":1,"a":[["TED%3AAF-A0A0S3U0Y9-F1-model_v4_TED02","TED novel fold AF-A0A0S3U0Y9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1752064","Leptolyngbya sp. NIES-3755"]]},{"id":"NCBITaxon:1753","l":"Propioniferax innocua","na":1,"nb":1,"a":[["TED%3AAF-A0A542ZCI2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A542ZCI2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1753","Propioniferax innocua"]]},{"id":"NCBITaxon:1759059","l":"Candidatus Viadribacter manganicus","na":1,"nb":1,"a":[["TED%3AAF-A0A1B1AI86-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B1AI86-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1759059","Candidatus Viadribacter manganicus"]]},{"id":"NCBITaxon:1761012","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A3G1KNS5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3G1KNS5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1761012","Candidatus Formimonas warabiya"]]},{"id":"NCBITaxon:1761761","l":"Bacillus sp. cl95","na":1,"nb":1,"a":[["TED%3AAF-A0A1I6CC48-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I6CC48-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1761761","Bacillus sp. cl95"]]},{"id":"NCBITaxon:1761772","l":"Bradyrhizobium shewense","na":1,"nb":1,"a":[["TED%3AAF-A0A1C3XS56-F1-model_v4_TED01","TED novel fold AF-A0A1C3XS56-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1761772","Bradyrhizobium shewense"]]},{"id":"NCBITaxon:1761780","l":"Butyrivibrio sp. ob235","na":1,"nb":1,"a":[["TED%3AAF-A0A1H7I3V4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H7I3V4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1761780","Butyrivibrio sp. ob235"]]},{"id":"NCBITaxon:1761781","l":"Clostridium sp. DSM 8431","na":1,"nb":1,"a":[["TED%3AAF-A0A1I7JB16-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I7JB16-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1761781","Clostridium sp. DSM 8431"]]},{"id":"NCBITaxon:1761786","l":"Gordonia sp. v-85","na":1,"nb":1,"a":[["TED%3AAF-A0A1C4F8L6-F1-model_v4_TED01","TED novel fold AF-A0A1C4F8L6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1761786","Gordonia sp. v-85"]]},{"id":"NCBITaxon:1761801","l":"Methylobacterium sp. yr668","na":1,"nb":1,"a":[["TED%3AAF-A0A1I6WHK9-F1-model_v4_TED01","TED novel fold AF-A0A1I6WHK9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1761801","Methylobacterium sp. yr668"]]},{"id":"NCBITaxon:1761884","l":"Prevotella sp. khp1","na":1,"nb":1,"a":[["TED%3AAF-A0A1H0Y2B2-F1-model_v4_TED01","TED novel fold AF-A0A1H0Y2B2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1761884","Prevotella sp. khp1"]]},{"id":"NCBITaxon:1761887","l":"Prevotella sp. ne3005","na":1,"nb":1,"a":[["TED%3AAF-A0A1H8F602-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1H8F602-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1761887","Prevotella sp. ne3005"]]},{"id":"NCBITaxon:1761889","l":"Prevotella sp. tf2-5","na":1,"nb":1,"a":[["TED%3AAF-A0A1I5M0X3-F1-model_v4_TED02","TED novel fold AF-A0A1I5M0X3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1761889","Prevotella sp. tf2-5"]]},{"id":"NCBITaxon:1761890","l":"Pseudoalteromonas sp. 10-33","na":1,"nb":1,"a":[["TED%3AAF-A0A0W1LFK1-F1-model_v4_TED01","TED novel fold AF-A0A0W1LFK1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1761890","Pseudoalteromonas sp. 10-33"]]},{"id":"NCBITaxon:176275","l":"Beauveria bassiana","na":1,"nb":1,"a":[["TED%3AAF-A0A2S7Y157-F1-model_v4_TED02","TED novel fold AF-A0A2S7Y157-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A176275","Beauveria bassiana"]]},{"id":"NCBITaxon:1763509","l":"Lachnotalea glycerini","na":1,"nb":1,"a":[["TED%3AAF-A0A371JF42-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A371JF42-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1763509","Lachnotalea glycerini"]]},{"id":"NCBITaxon:1763883","l":"Vibrio cidicii","na":1,"nb":1,"a":[["TED%3AAF-A0A151JGE3-F1-model_v4_TED01","TED novel fold AF-A0A151JGE3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1763883","Vibrio cidicii"]]},{"id":"NCBITaxon:1765050","l":"Azospira sp. I13","na":1,"nb":1,"a":[["TED%3AAF-A0A2R5EG35-F1-model_v4_TED01","TED novel fold AF-A0A2R5EG35-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1765050","Azospira sp. I13"]]},{"id":"NCBITaxon:1765683","l":"Ferroacidibacillus organovorans","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4ES42-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V4ES42-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1765683","Ferroacidibacillus organovorans"]]},{"id":"NCBITaxon:1765684","l":"Sulfoacidibacillus thermotolerans","na":1,"nb":1,"a":[["TED%3AAF-A0A2U3D5S8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U3D5S8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1765684","Sulfoacidibacillus thermotolerans"]]},{"id":"NCBITaxon:1765737","l":"Dissulfurirhabdus thermomarina","na":1,"nb":1,"a":[["TED%3AAF-A0A6N9TJJ0-F1-model_v4_TED01","TED novel fold AF-A0A6N9TJJ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1765737","Dissulfurirhabdus thermomarina"]]},{"id":"NCBITaxon:1768112","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A132H1S2-F1-model_v4_TED02","TED novel fold AF-A0A132H1S2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1768112","Candidatus Alcium sp. P201"]]},{"id":"NCBITaxon:1768242","l":"Paucibacter sp. KCTC 42545","na":1,"nb":1,"a":[["TED%3AAF-A0A0U3EZN4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0U3EZN4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1768242","Paucibacter sp. KCTC 42545"]]},{"id":"NCBITaxon:1769779","l":"Microbulbifer aggregans","na":1,"nb":1,"a":[["TED%3AAF-A0A1C9WAE5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C9WAE5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1769779","Microbulbifer aggregans"]]},{"id":"NCBITaxon:1770053","l":"Chitinasiproducens palmae","na":1,"nb":1,"a":[["TED%3AAF-A0A1H2PKT1-F1-model_v4_TED03","TED novel fold AF-A0A1H2PKT1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1770053","Chitinasiproducens palmae"]]},{"id":"NCBITaxon:1770526","l":"Hymenobacter crusticola","na":1,"nb":1,"a":[["TED%3AAF-A0A243WCG8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A243WCG8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1770526","Hymenobacter crusticola"]]},{"id":"NCBITaxon:177199","l":"Coniochaeta pulveracea","na":1,"nb":1,"a":[["TED%3AAF-A0A420Y9L7-F1-model_v4_TED01","TED novel fold AF-A0A420Y9L7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A177199","Coniochaeta pulveracea"]]},{"id":"NCBITaxon:1772283","l":"Mycobacterium sp. GA-2829","na":1,"nb":1,"a":[["TED%3AAF-A0A117JRD0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A117JRD0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1772283","Mycobacterium sp. GA-2829"]]},{"id":"NCBITaxon:1772288","l":"Marinobacter sp. C18","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q8G2Z9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q8G2Z9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1772288","Marinobacter sp. C18"]]},{"id":"NCBITaxon:177413","l":"Ancylobacter rudongensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1G4UQ36-F1-model_v4_TED01","TED novel fold AF-A0A1G4UQ36-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A177413","Ancylobacter rudongensis"]]},{"id":"NCBITaxon:1774745","l":"Cupriavidus sp. UYMMa02A","na":1,"nb":1,"a":[["TED%3AAF-A0A1E4QUI2-F1-model_v4_TED01","TED novel fold AF-A0A1E4QUI2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1774745","Cupriavidus sp. UYMMa02A"]]},{"id":"NCBITaxon:1774970","l":"Methyloceanibacter stevinii","na":1,"nb":1,"a":[["TED%3AAF-A0A1E3VQS9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E3VQS9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1774970","Methyloceanibacter stevinii"]]},{"id":"NCBITaxon:1775474","l":"Variovorax guangxiensis","na":1,"nb":1,"a":[["TED%3AAF-A0A840FS97-F1-model_v4_TED01","TED novel fold AF-A0A840FS97-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1775474","Variovorax guangxiensis"]]},{"id":"NCBITaxon:1776032","l":"Hymenobacter gummosus","na":1,"nb":1,"a":[["TED%3AAF-A0A431U235-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A431U235-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1776032","Hymenobacter gummosus"]]},{"id":"NCBITaxon:1776165","l":"Massilia eburnea","na":1,"nb":1,"a":[["TED%3AAF-A0A6L6QRZ1-F1-model_v4_TED02","TED novel fold AF-A0A6L6QRZ1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1776165","Massilia eburnea"]]},{"id":"NCBITaxon:1776384","l":"Emergencia timonensis","na":1,"nb":1,"a":[["TED%3AAF-A0A415E478-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A415E478-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1776384","Emergencia timonensis"]]},{"id":"NCBITaxon:1777136","l":"Caballeronia catudaia","na":1,"nb":1,"a":[["TED%3AAF-A0A158C321-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A158C321-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1777136","Caballeronia catudaia"]]},{"id":"NCBITaxon:1777139","l":"Caballeronia calidae","na":1,"nb":1,"a":[["TED%3AAF-A0A157ZK63-F1-model_v4_TED03","TED novel fold AF-A0A157ZK63-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1777139","Caballeronia calidae"]]},{"id":"NCBITaxon:1777237","l":"Pseudoalteromonas sp. CO133X","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q6YIM6-F1-model_v4_TED01","TED novel fold AF-A0A4Q6YIM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1777237","Pseudoalteromonas sp. CO133X"]]},{"id":"NCBITaxon:1778","l":"Mycobacterium gordonae","na":1,"nb":1,"a":[["TED%3AAF-A0A7D6E392-F1-model_v4_TED02","TED novel fold AF-A0A7D6E392-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1778","Mycobacterium gordonae"]]},{"id":"NCBITaxon:1778678","l":"Paenibacillus psychroresistens","na":1,"nb":1,"a":[["TED%3AAF-A0A6B8REU5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6B8REU5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1778678","Paenibacillus psychroresistens"]]},{"id":"NCBITaxon:1779329","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2A3JX46-F1-model_v4_TED02","TED novel fold AF-A0A2A3JX46-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1779329","Alloyangia mangrovi"]]},{"id":"NCBITaxon:178","l":"Leptospira sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2M8HMG8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2M8HMG8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A178","Leptospira sp."]]},{"id":"NCBITaxon:1780380","l":"Eubacteriaceae bacterium CHKCI004","na":1,"nb":1,"a":[["TED%3AAF-A0A143XSV8-F1-model_v4_TED03","TED novel fold AF-A0A143XSV8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1780380","Eubacteriaceae bacterium CHKCI004"]]},{"id":"NCBITaxon:1781067","l":"Duganella sp. HH105","na":1,"nb":1,"a":[["TED%3AAF-A0A1E7VAC3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E7VAC3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1781067","Duganella sp. HH105"]]},{"id":"NCBITaxon:178356","l":"Flavobacterium xinjiangense","na":1,"nb":1,"a":[["TED%3AAF-A0A1M7LQC4-F1-model_v4_TED02","TED novel fold AF-A0A1M7LQC4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A178356","Flavobacterium xinjiangense"]]},{"id":"NCBITaxon:1784713","l":"Flavobacterium arcticum","na":1,"nb":1,"a":[["TED%3AAF-A0A345HCH9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A345HCH9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1784713","Flavobacterium arcticum"]]},{"id":"NCBITaxon:1784714","l":"Arcticibacterium luteifluviistationis","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z4GGL1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2Z4GGL1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1784714","Arcticibacterium luteifluviistationis"]]},{"id":"NCBITaxon:1784719","l":"Leucobacter triazinivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A4P6KBD8-F1-model_v4_TED01","TED novel fold AF-A0A4P6KBD8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1784719","Leucobacter triazinivorans"]]},{"id":"NCBITaxon:1785949","l":"Candidatus Frackibacter sp. T328-2","na":1,"nb":1,"a":[["TED%3AAF-A0A139CQV0-F1-model_v4_TED01","TED novel fold AF-A0A139CQV0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1785949","Candidatus Frackibacter sp. T328-2"]]},{"id":"NCBITaxon:1785996","l":"Leptotrichia sp. oral taxon 847","na":1,"nb":1,"a":[["TED%3AAF-A0A0X8JUT6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0X8JUT6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1785996","Leptotrichia sp. oral taxon 847"]]},{"id":"NCBITaxon:1789224","l":"Acinetobacter larvae","na":1,"nb":1,"a":[["TED%3AAF-A0A1B2M311-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B2M311-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1789224","Acinetobacter larvae"]]},{"id":"NCBITaxon:1792508","l":"Salipiger sp. CCB-MM3","na":1,"nb":1,"a":[["TED%3AAF-A0A1B1PYX5-F1-model_v4_TED01","TED novel fold AF-A0A1B1PYX5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1792508","Salipiger sp. CCB-MM3"]]},{"id":"NCBITaxon:1792836","l":"Wenzhouxiangella sediminis","na":1,"nb":1,"a":[["TED%3AAF-A0A3E1K9F2-F1-model_v4_TED02","TED novel fold AF-A0A3E1K9F2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1792836","Wenzhouxiangella sediminis"]]},{"id":"NCBITaxon:1793","l":"Mycolicibacterium fallax","na":1,"nb":1,"a":[["TED%3AAF-A0A1X1R017-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X1R017-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1793","Mycolicibacterium fallax"]]},{"id":"NCBITaxon:1793722","l":"Curtobacterium sp. 9128","na":1,"nb":1,"a":[["TED%3AAF-A0A181ZA59-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A181ZA59-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1793722","Curtobacterium sp. 9128"]]},{"id":"NCBITaxon:1793724","l":"Dictyoglomus sp. ob1-4","na":1,"nb":1,"a":[["TED%3AAF-A0A5S5BH10-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A5S5BH10-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1793724","Dictyoglomus sp. ob1-4"]]},{"id":"NCBITaxon:1795630","l":"Frondihabitans sp. PAMC 28766","na":1,"nb":1,"a":[["TED%3AAF-A0A126Z0C8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A126Z0C8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1795630","Frondihabitans sp. PAMC 28766"]]},{"id":"NCBITaxon:1795830","l":"Eikenella sp. NML080894","na":1,"nb":1,"a":[["TED%3AAF-A0A1B6VST7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B6VST7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1795830","Eikenella sp. NML080894"]]},{"id":"NCBITaxon:1795832","l":"Eikenella halliae","na":1,"nb":1,"a":[["TED%3AAF-A0A1B6VZF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B6VZF4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1795832","Eikenella halliae"]]},{"id":"NCBITaxon:1796620","l":"Acutalibacter muris","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z2XSH3-F1-model_v4_TED01","TED novel fold AF-A0A1Z2XSH3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1796620","Acutalibacter muris"]]},{"id":"NCBITaxon:1796628","l":"Longibaculum muris","na":1,"nb":1,"a":[["TED%3AAF-A0A4R3Z5B6-F1-model_v4_TED01","TED novel fold AF-A0A4R3Z5B6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1796628","Longibaculum muris"]]},{"id":"NCBITaxon:1796652","l":"Turicimonas muris","na":1,"nb":1,"a":[["TED%3AAF-A0A227KL63-F1-model_v4_TED02","TED novel fold AF-A0A227KL63-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1796652","Turicimonas muris"]]},{"id":"NCBITaxon:1796921","l":"Ereboglobus luteus","na":1,"nb":1,"a":[["TED%3AAF-A0A2U8E3K8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2U8E3K8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1796921","Ereboglobus luteus"]]},{"id":"NCBITaxon:1797178","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F2T7L3-F1-model_v4_TED01","TED novel fold AF-A0A1F2T7L3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797178","Acidobacteria bacterium RIFCSPLOWO2_02_FULL_59_13"]]},{"id":"NCBITaxon:1797180","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F2RJX5-F1-model_v4_TED01","TED novel fold AF-A0A1F2RJX5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797180","Acidobacteria bacterium RIFCSPLOWO2_02_FULL_61_28"]]},{"id":"NCBITaxon:1797185","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F2S3C4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F2S3C4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797185","Acidobacteria bacterium RIFCSPLOWO2_02_FULL_68_18"]]},{"id":"NCBITaxon:1797198","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F2X5C9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1F2X5C9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1797198","Actinobacteria bacterium RBG_13_63_9"]]},{"id":"NCBITaxon:1797200","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F2WGA0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F2WGA0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797200","Actinobacteria bacterium RBG_16_64_13"]]},{"id":"NCBITaxon:1797203","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F2Y355-F1-model_v4_TED01","TED novel fold AF-A0A1F2Y355-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797203","Actinobacteria bacterium RBG_16_68_12"]]},{"id":"NCBITaxon:1797212","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F2XG95-F1-model_v4_TED01","TED novel fold AF-A0A1F2XG95-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797212","Alphaproteobacteria bacterium GWC2_42_16"]]},{"id":"NCBITaxon:1797213","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F2YPV8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F2YPV8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797213","Alphaproteobacteria bacterium GWF2_58_20"]]},{"id":"NCBITaxon:1797220","l":"Alphaproteobacteria bacterium RIFCSPHIGHO2_02_FULL_46_13","na":1,"nb":1,"a":[["TED%3AAF-A0A1F2Z3M8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F2Z3M8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797220","Alphaproteobacteria bacterium RIFCSPHIGHO2_02_FULL_46_13"]]},{"id":"NCBITaxon:1797226","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F2ZIL3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F2ZIL3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797226","Alphaproteobacteria bacterium RIFCSPLOWO2_01_FULL_40_26"]]},{"id":"NCBITaxon:1797253","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F4YFE9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F4YFE9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797253","Candidatus Amesbacteria bacterium RIFCSPHIGHO2_01_FULL_48_32b"]]},{"id":"NCBITaxon:1797273","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5ASF2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F5ASF2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797273","Candidatus Aminicenantes bacterium RBG_16_63_16"]]},{"id":"NCBITaxon:1797277","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5B663-F1-model_v4_TED01","TED novel fold AF-A0A1F5B663-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797277","Candidatus Aminicenantes bacterium RBG_19FT_COMBO_65_30"]]},{"id":"NCBITaxon:1797319","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F3D2G1-F1-model_v4_TED02","TED novel fold AF-A0A1F3D2G1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797319","Bacteroidetes bacterium GWA2_40_15"]]},{"id":"NCBITaxon:1797342","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F3JV05-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F3JV05-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797342","Bacteroidetes bacterium GWF2_33_38"]]},{"id":"NCBITaxon:1797347","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F3LG22-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F3LG22-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797347","Bacteroidetes bacterium GWF2_40_14"]]},{"id":"NCBITaxon:1797386","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F3SXD2-F1-model_v4_TED02","TED novel fold AF-A0A1F3SXD2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797386","Bdellovibrionales bacterium GWB1_55_8"]]},{"id":"NCBITaxon:1797388","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F3SF45-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F3SF45-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797388","Bdellovibrionales bacterium RBG_16_40_8"]]},{"id":"NCBITaxon:1797394","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F3WP69-F1-model_v4_TED02","TED novel fold AF-A0A1F3WP69-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797394","Bdellovibrionales bacterium RIFOXYB2_FULL_36_6"]]},{"id":"NCBITaxon:1797404","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F3XSU0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F3XSU0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797404","Bdellovibrionales bacterium RIFOXYD1_FULL_55_31"]]},{"id":"NCBITaxon:1797497","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F4E3P9-F1-model_v4_TED02","TED novel fold AF-A0A1F4E3P9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797497","Betaproteobacteria bacterium RIFCSPLOWO2_12_FULL_62_58"]]},{"id":"NCBITaxon:1797520","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1VDM9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G1VDM9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797520","Candidatus Blackburnbacteria bacterium RIFCSPLOWO2_01_FULL_41_27"]]},{"id":"NCBITaxon:1797531","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1XSP2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1G1XSP2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1797531","Candidatus Buchananbacteria bacterium RBG_13_39_9"]]},{"id":"NCBITaxon:1797564","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F4IZ93-F1-model_v4_TED01","TED novel fold AF-A0A1F4IZ93-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797564","Burkholderiales bacterium RIFCSPLOWO2_02_FULL_67_64"]]},{"id":"NCBITaxon:1797568","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F4MTM4-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1F4MTM4-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1797568","Burkholderiales bacterium RIFCSPLOWO2_12_FULL_64_99"]]},{"id":"NCBITaxon:1797585","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8I4Q2-F1-model_v4_TED01","TED novel fold AF-A0A1F8I4Q2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797585","Caulobacterales bacterium RIFCSPHIGHO2_01_FULL_70_19"]]},{"id":"NCBITaxon:1797591","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1VUB9-F1-model_v4_TED01","TED novel fold AF-A0A1G1VUB9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797591","Candidatus Chisholmbacteria bacterium RIFCSPHIGHO2_01_FULL_52_32"]]},{"id":"NCBITaxon:1797598","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8J304-F1-model_v4_TED03","TED novel fold AF-A0A1F8J304-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1797598","Chlamydiae bacterium RIFCSPHIGHO2_01_FULL_44_39"]]},{"id":"NCBITaxon:1797603","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8JJQ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F8JJQ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797603","Chlamydiae bacterium RIFCSPHIGHO2_12_FULL_49_11"]]},{"id":"NCBITaxon:1797613","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8KML2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F8KML2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797613","Chloroflexi bacterium GWB2_54_36"]]},{"id":"NCBITaxon:1797620","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8LXZ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F8LXZ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797620","Chloroflexi bacterium RBG_13_48_10"]]},{"id":"NCBITaxon:1797640","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8P1I1-F1-model_v4_TED01","TED novel fold AF-A0A1F8P1I1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797640","Chloroflexi bacterium RBG_16_48_7"]]},{"id":"NCBITaxon:1797643","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8P8D9-F1-model_v4_TED02","TED novel fold AF-A0A1F8P8D9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797643","Chloroflexi bacterium RBG_16_50_9"]]},{"id":"NCBITaxon:1797658","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8RDU4-F1-model_v4_TED01","TED novel fold AF-A0A1F8RDU4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797658","Chloroflexi bacterium RBG_16_64_32"]]},{"id":"NCBITaxon:1797659","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8RQQ6-F1-model_v4_TED01","TED novel fold AF-A0A1F8RQQ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797659","Chloroflexi bacterium RBG_16_64_43"]]},{"id":"NCBITaxon:1797660","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8RWL3-F1-model_v4_TED01","TED novel fold AF-A0A1F8RWL3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797660","Chloroflexi bacterium RBG_16_68_14"]]},{"id":"NCBITaxon:1797663","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8SCL9-F1-model_v4_TED02","TED novel fold AF-A0A1F8SCL9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797663","Chloroflexi bacterium RBG_16_72_14"]]},{"id":"NCBITaxon:1797671","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8TG41-F1-model_v4_TED02","TED novel fold AF-A0A1F8TG41-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797671","Chloroflexi bacterium RBG_19FT_COMBO_62_14"]]},{"id":"NCBITaxon:1797710","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5GCG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F5GCG8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797710","Candidatus Curtissbacteria bacterium RIFCSPHIGHO2_01_FULL_40_12"]]},{"id":"NCBITaxon:1797718","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5H1K0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F5H1K0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797718","Candidatus Curtissbacteria bacterium RIFCSPHIGHO2_12_41_11"]]},{"id":"NCBITaxon:1797729","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5I035-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F5I035-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797729","Candidatus Curtissbacteria bacterium RIFCSPLOWO2_01_FULL_42_26"]]},{"id":"NCBITaxon:1797756","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5IU88-F1-model_v4_TED01","TED novel fold AF-A0A1F5IU88-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797756","Candidatus Dadabacteria bacterium RIFCSPHIGHO2_12_FULL_53_21"]]},{"id":"NCBITaxon:1797808","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8WUM6-F1-model_v4_TED01","TED novel fold AF-A0A1F8WUM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797808","Deltaproteobacteria bacterium GWA2_54_12"]]},{"id":"NCBITaxon:1797809","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8X0V8-F1-model_v4_TED01","TED novel fold AF-A0A1F8X0V8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797809","Deltaproteobacteria bacterium GWA2_55_10"]]},{"id":"NCBITaxon:1797814","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8XUW8-F1-model_v4_TED03","TED novel fold AF-A0A1F8XUW8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1797814","Deltaproteobacteria bacterium GWB2_55_19"]]},{"id":"NCBITaxon:1797832","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9BSC4-F1-model_v4_TED01","TED novel fold AF-A0A1F9BSC4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797832","Deltaproteobacteria bacterium RBG_13_58_19"]]},{"id":"NCBITaxon:1797839","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9DCK0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F9DCK0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797839","Deltaproteobacteria bacterium RBG_16_48_10"]]},{"id":"NCBITaxon:1797841","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9BRC7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F9BRC7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797841","Deltaproteobacteria bacterium RBG_16_50_11"]]},{"id":"NCBITaxon:1797848","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9FDV0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F9FDV0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797848","Deltaproteobacteria bacterium RBG_16_71_12"]]},{"id":"NCBITaxon:1797858","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9FFN6-F1-model_v4_TED02","TED novel fold AF-A0A1F9FFN6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797858","Deltaproteobacteria bacterium RIFCSPHIGHO2_02_FULL_40_11"]]},{"id":"NCBITaxon:1797879","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9HYQ5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F9HYQ5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797879","Deltaproteobacteria bacterium RIFCSPLOWO2_02_FULL_46_8"]]},{"id":"NCBITaxon:1797880","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9HY74-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F9HY74-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797880","Deltaproteobacteria bacterium RIFCSPLOWO2_02_FULL_47_10"]]},{"id":"NCBITaxon:1797892","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9KGF5-F1-model_v4_TED01","TED novel fold AF-A0A1F9KGF5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797892","Deltaproteobacteria bacterium RIFCSPLOWO2_12_FULL_57_22"]]},{"id":"NCBITaxon:1797895","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9LDQ7-F1-model_v4_TED01","TED novel fold AF-A0A1F9LDQ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797895","Deltaproteobacteria bacterium RIFOXYA12_FULL_58_15"]]},{"id":"NCBITaxon:1797896","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9LJG9-F1-model_v4_TED02","TED novel fold AF-A0A1F9LJG9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797896","Deltaproteobacteria bacterium RIFOXYA12_FULL_61_11"]]},{"id":"NCBITaxon:1797902","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9M592-F1-model_v4_TED01","TED novel fold AF-A0A1F9M592-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797902","Deltaproteobacteria bacterium RIFOXYD12_FULL_50_9"]]},{"id":"NCBITaxon:1797903","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9MBZ0-F1-model_v4_TED01","TED novel fold AF-A0A1F9MBZ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797903","Deltaproteobacteria bacterium RIFOXYD12_FULL_53_23"]]},{"id":"NCBITaxon:1797905","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9L3G5-F1-model_v4_TED01","TED novel fold AF-A0A1F9L3G5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797905","Deltaproteobacteria bacterium RIFOXYD12_FULL_56_24"]]},{"id":"NCBITaxon:1797913","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9NEE0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F9NEE0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797913","Desulfobacterales bacterium GWB2_56_26"]]},{"id":"NCBITaxon:1797923","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9QIG5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F9QIG5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797923","Elusimicrobia bacterium GWA2_61_42"]]},{"id":"NCBITaxon:1797952","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9VS96-F1-model_v4_TED02","TED novel fold AF-A0A1F9VS96-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797952","Elusimicrobia bacterium RIFCSPLOWO2_12_FULL_59_9"]]},{"id":"NCBITaxon:1797958","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9WRJ5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F9WRJ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797958","Elusimicrobia bacterium RIFOXYA2_FULL_40_6"]]},{"id":"NCBITaxon:1797968","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9Y7R0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F9Y7R0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797968","Elusimicrobia bacterium RIFOXYB2_FULL_49_7"]]},{"id":"NCBITaxon:1797984","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0AC96-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1G0AC96-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1797984","Euryarchaeota archaeon RBG_19FT_COMBO_69_17"]]},{"id":"NCBITaxon:1797994","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5SHV8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F5SHV8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797994","Candidatus Falkowbacteria bacterium RIFOXYA2_FULL_47_19"]]},{"id":"NCBITaxon:1798015","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0AYZ0-F1-model_v4_TED02","TED novel fold AF-A0A1G0AYZ0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798015","Flavobacteria bacterium RIFCSPLOWO2_12_FULL_31_7"]]},{"id":"NCBITaxon:1798016","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0B2N9-F1-model_v4_TED03","TED novel fold AF-A0A1G0B2N9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1798016","Flavobacteria bacterium RIFCSPLOWO2_12_FULL_35_11"]]},{"id":"NCBITaxon:1798019","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0CJM9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G0CJM9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798019","Fluviicola sp. RIFCSPHIGHO2_12_FULL_43_24"]]},{"id":"NCBITaxon:1798185","l":"Pseudobutyrivibrio sp. UC1225","na":1,"nb":1,"a":[["TED%3AAF-A0A1I5GI49-F1-model_v4_TED01","TED novel fold AF-A0A1I5GI49-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798185","Pseudobutyrivibrio sp. UC1225"]]},{"id":"NCBITaxon:1798213","l":"Pseudovibrio sp. Tun.PSC04-5.I4","na":1,"nb":1,"a":[["TED%3AAF-A0A1H1I1X9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H1I1X9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798213","Pseudovibrio sp. Tun.PSC04-5.I4"]]},{"id":"NCBITaxon:1798215","l":"Leifsonia sp. CL147","na":1,"nb":1,"a":[["TED%3AAF-A0A1I4MD37-F1-model_v4_TED01","TED novel fold AF-A0A1I4MD37-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798215","Leifsonia sp. CL147"]]},{"id":"NCBITaxon:1798224","l":"Jiangella sp. DSM 45060","na":1,"nb":1,"a":[["TED%3AAF-A0A1H2CE01-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H2CE01-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798224","Jiangella sp. DSM 45060"]]},{"id":"NCBITaxon:1798276","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0GM97-F1-model_v4_TED01","TED novel fold AF-A0A1G0GM97-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798276","Gammaproteobacteria bacterium RIFCSPHIGHO2_12_FULL_37_14"]]},{"id":"NCBITaxon:1798277","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0GZ96-F1-model_v4_TED02","TED novel fold AF-A0A1G0GZ96-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798277","Gammaproteobacteria bacterium RIFCSPHIGHO2_12_FULL_37_34"]]},{"id":"NCBITaxon:1798298","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0JB92-F1-model_v4_TED02","TED novel fold AF-A0A1G0JB92-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798298","Gammaproteobacteria bacterium RIFCSPLOWO2_02_FULL_56_15"]]},{"id":"NCBITaxon:1798301","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0JQ90-F1-model_v4_TED01","TED novel fold AF-A0A1G0JQ90-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798301","Gammaproteobacteria bacterium RIFCSPLOWO2_12_47_11"]]},{"id":"NCBITaxon:1798308","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0KTX5-F1-model_v4_TED02","TED novel fold AF-A0A1G0KTX5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798308","Gammaproteobacteria bacterium RIFOXYD12_FULL_61_37"]]},{"id":"NCBITaxon:1798311","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0LSN7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G0LSN7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798311","Gemmatimonadetes bacterium RBG_16_66_8"]]},{"id":"NCBITaxon:1798312","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0LC16-F1-model_v4_TED02","TED novel fold AF-A0A1G0LC16-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798312","Gemmatimonadetes bacterium RIFCSPLOWO2_02_FULL_71_11"]]},{"id":"NCBITaxon:1798315","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0LEM7-F1-model_v4_TED01","TED novel fold AF-A0A1G0LEM7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798315","Geobacteraceae bacterium GWC2_48_7"]]},{"id":"NCBITaxon:1798331","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5WFL9-F1-model_v4_TED02","TED novel fold AF-A0A1F5WFL9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798331","Candidatus Giovannonibacteria bacterium RIFCSPHIGHO2_02_43_16"]]},{"id":"NCBITaxon:1798391","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6BBG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F6BBG8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798391","Candidatus Gottesmanbacteria bacterium RIFCSPLOWO2_01_FULL_42_22"]]},{"id":"NCBITaxon:1798396","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6AX47-F1-model_v4_TED01","TED novel fold AF-A0A1F6AX47-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798396","Candidatus Gottesmanbacteria bacterium RIFCSPLOWO2_01_FULL_49_10"]]},{"id":"NCBITaxon:1798427","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0QPM9-F1-model_v4_TED01","TED novel fold AF-A0A1G0QPM9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798427","Ignavibacteria bacterium GWC2_36_12"]]},{"id":"NCBITaxon:1798432","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0R270-F1-model_v4_TED01","TED novel fold AF-A0A1G0R270-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798432","Ignavibacteria bacterium RBG_13_36_8"]]},{"id":"NCBITaxon:1798448","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0VK37-F1-model_v4_TED03","TED novel fold AF-A0A1G0VK37-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1798448","Stygiobacter sp. RIFOXYB2_FULL_37_11"]]},{"id":"NCBITaxon:1798470","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6BN75-F1-model_v4_TED01","TED novel fold AF-A0A1F6BN75-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798470","Candidatus Jorgensenbacteria bacterium RIFCSPHIGHO2_02_FULL_45_20"]]},{"id":"NCBITaxon:1798487","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6DFE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F6DFE6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798487","Candidatus Kaiserbacteria bacterium RIFCSPHIGHO2_01_FULL_56_24"]]},{"id":"NCBITaxon:1798507","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6EIZ4-F1-model_v4_TED02","TED novel fold AF-A0A1F6EIZ4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798507","Candidatus Kaiserbacteria bacterium RIFCSPLOWO2_01_FULL_50_24"]]},{"id":"NCBITaxon:1798509","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6EX73-F1-model_v4_TED01","TED novel fold AF-A0A1F6EX73-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798509","Candidatus Kaiserbacteria bacterium RIFCSPLOWO2_01_FULL_52_12b"]]},{"id":"NCBITaxon:1798512","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6F094-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F6F094-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798512","Candidatus Kaiserbacteria bacterium RIFCSPLOWO2_01_FULL_54_13"]]},{"id":"NCBITaxon:1798531","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6FIM7-F1-model_v4_TED01","TED novel fold AF-A0A1F6FIM7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798531","Candidatus Kaiserbacteria bacterium RIFOXYB1_FULL_46_14"]]},{"id":"NCBITaxon:1798540","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2ARW6-F1-model_v4_TED02","TED novel fold AF-A0A1G2ARW6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798540","Candidatus Kerfeldbacteria bacterium RIFCSPHIGHO2_02_FULL_42_14"]]},{"id":"NCBITaxon:1798547","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2BHU9-F1-model_v4_TED02","TED novel fold AF-A0A1G2BHU9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798547","Candidatus Kerfeldbacteria bacterium RIFOXYB2_FULL_38_14"]]},{"id":"NCBITaxon:1798552","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2BSU0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G2BSU0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798552","Candidatus Komeilibacteria bacterium RIFCSPLOWO2_01_FULL_53_11"]]},{"id":"NCBITaxon:1798567","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0XC70-F1-model_v4_TED01","TED novel fold AF-A0A1G0XC70-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798567","Legionellales bacterium RIFCSPHIGHO2_12_FULL_35_11"]]},{"id":"NCBITaxon:1798572","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0XFY2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G0XFY2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798572","Lentisphaerae bacterium GWF2_45_14"]]},{"id":"NCBITaxon:1798573","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0YAC1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G0YAC1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798573","Lentisphaerae bacterium GWF2_49_21"]]},{"id":"NCBITaxon:1798576","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0Y3T4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G0Y3T4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798576","Lentisphaerae bacterium GWF2_57_35"]]},{"id":"NCBITaxon:1798585","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6HEX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F6HEX7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798585","Candidatus Levybacteria bacterium RBG_16_35_6"]]},{"id":"NCBITaxon:1798651","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2CH03-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1G2CH03-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1798651","Candidatus Liptonbacteria bacterium RIFCSPLOWO2_01_FULL_53_13"]]},{"id":"NCBITaxon:1798658","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2CWC2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G2CWC2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798658","Candidatus Lloydbacteria bacterium RIFCSPHIGHO2_01_FULL_49_22"]]},{"id":"NCBITaxon:1798676","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6M667-F1-model_v4_TED02","TED novel fold AF-A0A1F6M667-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798676","Candidatus Magasanikbacteria bacterium RIFCSPHIGHO2_02_FULL_41_13"]]},{"id":"NCBITaxon:1798680","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6M8C9-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1F6M8C9-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1798680","Candidatus Magasanikbacteria bacterium RIFCSPHIGHO2_02_FULL_47_14"]]},{"id":"NCBITaxon:1798683","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6MPA6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F6MPA6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798683","Candidatus Magasanikbacteria bacterium RIFCSPHIGHO2_02_FULL_51_14"]]},{"id":"NCBITaxon:1798704","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6NUX8-F1-model_v4_TED01","TED novel fold AF-A0A1F6NUX8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798704","Candidatus Magasanikbacteria bacterium RIFOXYC2_FULL_42_28"]]},{"id":"NCBITaxon:1798804","l":"Rhizobium sp. 58","na":1,"nb":1,"a":[["TED%3AAF-A0A853YI55-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A853YI55-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1798804","Rhizobium sp. 58"]]},{"id":"NCBITaxon:1799658","l":"Planctomycetaceae bacterium SCGC AG-212-F19","na":1,"nb":1,"a":[["TED%3AAF-A0A177QIY2-F1-model_v4_TED01","TED novel fold AF-A0A177QIY2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1799658","Planctomycetaceae bacterium SCGC AG-212-F19"]]},{"id":"NCBITaxon:1799659","l":"Verrucomicrobiaceae bacterium SCGC AG-212-N21","na":1,"nb":1,"a":[["TED%3AAF-A0A177RCM1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A177RCM1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1799659","Verrucomicrobiaceae bacterium SCGC AG-212-N21"]]},{"id":"NCBITaxon:1799661","l":"Gammaproteobacteria bacterium SCGC AG-212-F23","na":1,"nb":1,"a":[["TED%3AAF-A0A177QS54-F1-model_v4_TED01","TED novel fold AF-A0A177QS54-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1799661","Gammaproteobacteria bacterium SCGC AG-212-F23"]]},{"id":"NCBITaxon:1799667","l":"Prochlorococcus sp. MIT 1306","na":1,"nb":1,"a":[["TED%3AAF-A0A163DPJ5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A163DPJ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1799667","Prochlorococcus sp. MIT 1306"]]},{"id":"NCBITaxon:1799789","l":"Paraglaciecola hydrolytica","na":1,"nb":1,"a":[["TED%3AAF-A0A135ZZ80-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A135ZZ80-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1799789","Paraglaciecola hydrolytica"]]},{"id":"NCBITaxon:179995","l":"Anaerobiospirillum thomasii","na":1,"nb":1,"a":[["TED%3AAF-A0A2X0VC15-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2X0VC15-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A179995","Anaerobiospirillum thomasii"]]},{"id":"NCBITaxon:180088","l":"Rhizopogon vesiculosus","na":1,"nb":1,"a":[["TED%3AAF-A0A1J8PQS8-F1-model_v4_TED02","TED novel fold AF-A0A1J8PQS8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A180088","Rhizopogon vesiculosus"]]},{"id":"NCBITaxon:1801604","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6PV27-F1-model_v4_TED02","TED novel fold AF-A0A1F6PV27-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1801604","Candidatus Melainabacteria bacterium GWA2_34_9"]]},{"id":"NCBITaxon:1801609","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6QQC6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F6QQC6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801609","Candidatus Melainabacteria bacterium RIFCSPLOWO2_12_FULL_35_11"]]},{"id":"NCBITaxon:1801632","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6QWM3-F1-model_v4_TED01","TED novel fold AF-A0A1F6QWM3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801632","Candidatus Micrarchaeota archaeon RBG_16_36_9"]]},{"id":"NCBITaxon:1801637","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6R1N8-F1-model_v4_TED04","TED novel fold AF-A0A1F6R1N8-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1801637","Candidatus Moranbacteria bacterium RIFCSPHIGHO2_01_FULL_54_31"]]},{"id":"NCBITaxon:1801649","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6S1D9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F6S1D9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801649","Candidatus Moranbacteria bacterium RIFOXYB1_FULL_43_19"]]},{"id":"NCBITaxon:1801671","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2EF91-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G2EF91-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801671","Candidatus Nealsonbacteria bacterium RIFCSPLOWO2_01_FULL_41_9"]]},{"id":"NCBITaxon:1801692","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1F1X7-F1-model_v4_TED04","TED novel fold AF-A0A1G1F1X7-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1801692","Nitrospirae bacterium GWB2_47_37"]]},{"id":"NCBITaxon:1801697","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1F4T5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G1F4T5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801697","Nitrospirae bacterium GWC2_57_13"]]},{"id":"NCBITaxon:1801701","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1FR36-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1G1FR36-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1801701","Nitrospirae bacterium GWD2_57_9"]]},{"id":"NCBITaxon:1801704","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1GTR1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G1GTR1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801704","Nitrospirae bacterium RBG_13_41_22"]]},{"id":"NCBITaxon:1801711","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1GVS2-F1-model_v4_TED01","TED novel fold AF-A0A1G1GVS2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801711","Nitrospirae bacterium RBG_19FT_COMBO_58_9"]]},{"id":"NCBITaxon:1801718","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1LDN9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G1LDN9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801718","Nitrospirae bacterium RIFCSPLOWO2_12_FULL_63_8"]]},{"id":"NCBITaxon:1801786","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6XZR0-F1-model_v4_TED01","TED novel fold AF-A0A1F6XZR0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801786","Candidatus Nomurabacteria bacterium RIFCSPLOWO2_02_FULL_40_10"]]},{"id":"NCBITaxon:1801814","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1IS29-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G1IS29-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1801814","Omnitrophica bacterium GWA2_41_15"]]},{"id":"NCBITaxon:1801818","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1J283-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G1J283-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801818","Omnitrophica bacterium RBG_13_46_9"]]},{"id":"NCBITaxon:1801827","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1JVJ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G1JVJ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801827","Omnitrophica bacterium RIFCSPLOWO2_01_FULL_45_10b"]]},{"id":"NCBITaxon:1801856","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1NDQ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G1NDQ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801856","Omnitrophica WOR_2 bacterium RIFCSPHIGHO2_02_FULL_48_11"]]},{"id":"NCBITaxon:1801857","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1PAC5-F1-model_v4_TED01","TED novel fold AF-A0A1G1PAC5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801857","Omnitrophica WOR_2 bacterium RIFCSPHIGHO2_02_FULL_50_17"]]},{"id":"NCBITaxon:1801858","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1P862-F1-model_v4_TED04","TED novel fold AF-A0A1G1P862-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1801858","Omnitrophica WOR_2 bacterium RIFCSPHIGHO2_02_FULL_52_10"]]},{"id":"NCBITaxon:1801873","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1Q8R5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1G1Q8R5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1801873","Omnitrophica WOR_2 bacterium RIFOXYA2_FULL_38_17"]]},{"id":"NCBITaxon:1801895","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2WH70-F1-model_v4_TED03","TED novel fold AF-A0A1G2WH70-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1801895","Desulfuromonadaceae bacterium GWB2_53_15"]]},{"id":"NCBITaxon:1801905","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F7AUL0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F7AUL0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801905","Candidatus Peregrinibacteria bacterium RIFOXYB12_FULL_41_12"]]},{"id":"NCBITaxon:1801962","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2YV80-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G2YV80-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1801962","Planctomycetes bacterium RBG_13_50_24"]]},{"id":"NCBITaxon:1801977","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G3BPH6-F1-model_v4_TED01","TED novel fold AF-A0A1G3BPH6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801977","Planctomycetes bacterium RIFCSPHIGHO2_12_39_6"]]},{"id":"NCBITaxon:1801983","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G3C8S1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G3C8S1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801983","Planctomycetes bacterium RIFCSPLOWO2_12_FULL_40_19"]]},{"id":"NCBITaxon:1802043","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F7HGD6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F7HGD6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1802043","Candidatus Roizmanbacteria bacterium RIFCSPHIGHO2_02_FULL_43_11"]]},{"id":"NCBITaxon:1802053","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F7I5S8-F1-model_v4_TED01","TED novel fold AF-A0A1F7I5S8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802053","Candidatus Roizmanbacteria bacterium RIFCSPHIGHO2_12_FULL_42_10"]]},{"id":"NCBITaxon:1802082","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F7KFJ9-F1-model_v4_TED01","TED novel fold AF-A0A1F7KFJ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802082","Candidatus Roizmanbacteria bacterium RIFOXYA1_FULL_41_12"]]},{"id":"NCBITaxon:1802115","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2G8E2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G2G8E2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802115","Candidatus Ryanbacteria bacterium RIFCSPHIGHO2_01_FULL_48_27"]]},{"id":"NCBITaxon:1802173","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G3LNL6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G3LNL6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802173","Spirochaetes bacterium GWB1_27_13"]]},{"id":"NCBITaxon:1802187","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G3P5W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G3P5W3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802187","Spirochaetes bacterium GWF1_31_7"]]},{"id":"NCBITaxon:1802188","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G3PBZ0-F1-model_v4_TED01","TED novel fold AF-A0A1G3PBZ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802188","Spirochaetes bacterium GWF1_41_5"]]},{"id":"NCBITaxon:1802189","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G3PH37-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G3PH37-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802189","Spirochaetes bacterium GWF1_49_6"]]},{"id":"NCBITaxon:1802253","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G3TCI5-F1-model_v4_TED01","TED novel fold AF-A0A1G3TCI5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802253","Sulfurimonas sp. RIFCSPLOWO2_12_36_12"]]},{"id":"NCBITaxon:1802272","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2KNY1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G2KNY1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1802272","Candidatus Sungbacteria bacterium RIFCSPHIGHO2_02_FULL_49_20"]]},{"id":"NCBITaxon:1802312","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2MTD3-F1-model_v4_TED02","TED novel fold AF-A0A1G2MTD3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1802312","Candidatus Taylorbacteria bacterium RIFCSPHIGHO2_02_FULL_46_13"]]},{"id":"NCBITaxon:1802366","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2PV61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G2PV61-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802366","Candidatus Terrybacteria bacterium RIFCSPLOWO2_01_FULL_40_23"]]},{"id":"NCBITaxon:1802375","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F4PM56-F1-model_v4_TED01","TED novel fold AF-A0A1F4PM56-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802375","candidate division TM6 bacterium RIFCSPHIGHO2_12_FULL_32_22"]]},{"id":"NCBITaxon:1802377","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F4PRB0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F4PRB0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1802377","candidate division TM6 bacterium RIFCSPHIGHO2_12_FULL_38_8"]]},{"id":"NCBITaxon:1802407","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F7V5J3-F1-model_v4_TED01","TED novel fold AF-A0A1F7V5J3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802407","Candidatus Uhrbacteria bacterium RIFCSPLOWO2_02_FULL_48_12"]]},{"id":"NCBITaxon:1802422","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F7W566-F1-model_v4_TED02","TED novel fold AF-A0A1F7W566-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1802422","Candidatus Uhrbacteria bacterium RIFOXYB2_FULL_57_15"]]},{"id":"NCBITaxon:1802433","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G3ZKE5-F1-model_v4_TED03","TED novel fold AF-A0A1G3ZKE5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1802433","Verrucomicrobia bacterium RIFCSPHIGHO2_12_FULL_41_10"]]},{"id":"NCBITaxon:1802478","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F7X1A9-F1-model_v4_TED01","TED novel fold AF-A0A1F7X1A9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802478","Candidatus Woesebacteria bacterium RBG_13_36_22"]]},{"id":"NCBITaxon:1802492","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F7Y4F5-F1-model_v4_TED01","TED novel fold AF-A0A1F7Y4F5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802492","Candidatus Woesebacteria bacterium RIFCSPHIGHO2_01_FULL_38_9"]]},{"id":"NCBITaxon:1802496","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F7YA21-F1-model_v4_TED04","TED novel fold AF-A0A1F7YA21-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1802496","Candidatus Woesebacteria bacterium RIFCSPHIGHO2_01_FULL_39_28"]]},{"id":"NCBITaxon:1802518","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8BLY7-F1-model_v4_TED02","TED novel fold AF-A0A1F8BLY7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1802518","Candidatus Woesebacteria bacterium RIFCSPLOWO2_01_FULL_39_14"]]},{"id":"NCBITaxon:1802592","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1W575-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G1W575-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802592","Candidatus Woykebacteria bacterium GWB1_45_5"]]},{"id":"NCBITaxon:1802598","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1WH97-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G1WH97-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802598","Candidatus Woykebacteria bacterium RBG_19FT_COMBO_43_10"]]},{"id":"NCBITaxon:1802618","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F4V213-F1-model_v4_TED01","TED novel fold AF-A0A1F4V213-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802618","candidate division WWE3 bacterium RIFCSPHIGHO2_01_FULL_43_9"]]},{"id":"NCBITaxon:1802636","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F4W281-F1-model_v4_TED01","TED novel fold AF-A0A1F4W281-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802636","candidate division WWE3 bacterium RIFOXYA2_FULL_46_9"]]},{"id":"NCBITaxon:1802661","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8EEG9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F8EEG9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802661","Candidatus Yanofskybacteria bacterium RIFCSPHIGHO2_01_FULL_41_26"]]},{"id":"NCBITaxon:1802669","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8EYA5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F8EYA5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802669","Candidatus Yanofskybacteria bacterium RIFCSPHIGHO2_01_FULL_44_22"]]},{"id":"NCBITaxon:1802671","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8F4J4-F1-model_v4_TED01","TED novel fold AF-A0A1F8F4J4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802671","Candidatus Yanofskybacteria bacterium RIFCSPHIGHO2_01_FULL_45_42"]]},{"id":"NCBITaxon:1802730","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2SL64-F1-model_v4_TED01","TED novel fold AF-A0A1G2SL64-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802730","Candidatus Yonathbacteria bacterium RIFOXYD1_FULL_52_36"]]},{"id":"NCBITaxon:1802748","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2THG6-F1-model_v4_TED02","TED novel fold AF-A0A1G2THG6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1802748","Candidatus Zambryskibacteria bacterium RIFCSPHIGHO2_02_FULL_43_14"]]},{"id":"NCBITaxon:1802749","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2TGH1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G2TGH1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1802749","Candidatus Zambryskibacteria bacterium RIFCSPHIGHO2_02_FULL_43_37"]]},{"id":"NCBITaxon:1802776","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2URS1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G2URS1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802776","Candidatus Zambryskibacteria bacterium RIFCSPLOWO2_12_FULL_39_23"]]},{"id":"NCBITaxon:1802984","l":"Candidatus Fokinia solitaria","na":1,"nb":1,"a":[["TED%3AAF-A0A2U8BT05-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U8BT05-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802984","Candidatus Fokinia solitaria"]]},{"id":"NCBITaxon:1803424","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q8BEA6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q8BEA6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1803424","Acidobacteria bacterium 13_1_20CM_2_55_15"]]},{"id":"NCBITaxon:1803428","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q8ANT9-F1-model_v4_TED01","TED novel fold AF-A0A1Q8ANT9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1803428","Acidobacteria bacterium 13_1_20CM_2_65_9"]]},{"id":"NCBITaxon:1803450","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q7MS00-F1-model_v4_TED03","TED novel fold AF-A0A1Q7MS00-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1803450","Acidobacteria bacterium 13_1_40CM_3_65_5"]]},{"id":"NCBITaxon:1803456","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q7K8T4-F1-model_v4_TED01","TED novel fold AF-A0A1Q7K8T4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1803456","Acidobacteria bacterium 13_1_40CM_4_65_8"]]},{"id":"NCBITaxon:1803459","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q7GVF6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1Q7GVF6-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1803459","Acidobacteria bacterium 13_1_40CM_65_14"]]},{"id":"NCBITaxon:1803465","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6WU70-F1-model_v4_TED03","TED novel fold AF-A0A1Q6WU70-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1803465","Acidobacteria bacterium 13_2_20CM_57_7"]]},{"id":"NCBITaxon:1803492","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q7C938-F1-model_v4_TED02","TED novel fold AF-A0A1Q7C938-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1803492","Actinobacteria bacterium 13_2_20CM_2_66_6"]]},{"id":"NCBITaxon:1803508","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1J4RGT0-F1-model_v4_TED01","TED novel fold AF-A0A1J4RGT0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1803508","Alphaproteobacteria bacterium CG1_02_46_17"]]},{"id":"NCBITaxon:1803514","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1J5J640-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1J5J640-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1803514","Candidatus Altarchaeum sp. CG2_30_32_3053"]]},{"id":"NCBITaxon:1803819","l":"Thermoplasmatales archaeon SG8-52-4","na":1,"nb":1,"a":[["TED%3AAF-A0A151DZ87-F1-model_v4_TED01","TED novel fold AF-A0A151DZ87-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1803819","Thermoplasmatales archaeon SG8-52-4"]]},{"id":"NCBITaxon:1803822","l":"Candidatus Proteinoplasmatales archaeon SG8-5","na":1,"nb":1,"a":[["TED%3AAF-A0A151ERD5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A151ERD5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1803822","Candidatus Proteinoplasmatales archaeon SG8-5"]]},{"id":"NCBITaxon:1803865","l":"Thiomicrospira sp. S5","na":1,"nb":1,"a":[["TED%3AAF-A0A3S9TMS1-F1-model_v4_TED02","TED novel fold AF-A0A3S9TMS1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1803865","Thiomicrospira sp. S5"]]},{"id":"NCBITaxon:1803903","l":"Actinomadura montaniterrae","na":1,"nb":1,"a":[["TED%3AAF-A0A6L3VXB5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L3VXB5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1803903","Actinomadura montaniterrae"]]},{"id":"NCBITaxon:1804625","l":"Ruficoccus amylovorans","na":1,"nb":1,"a":[["TED%3AAF-A0A842HAR4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A842HAR4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1804625","Ruficoccus amylovorans"]]},{"id":"NCBITaxon:1804986","l":"Amycolatopsis albispora","na":1,"nb":1,"a":[["TED%3AAF-A0A344L4Y7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A344L4Y7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1804986","Amycolatopsis albispora"]]},{"id":"NCBITaxon:1804988","l":"Nesterenkonia sphaerica","na":1,"nb":1,"a":[["TED%3AAF-A0A5R9AAV0-F1-model_v4_TED01","TED novel fold AF-A0A5R9AAV0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1804988","Nesterenkonia sphaerica"]]},{"id":"NCBITaxon:1805004","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1J5A5D4-F1-model_v4_TED03","TED novel fold AF-A0A1J5A5D4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1805004","Anaerolineae bacterium CG2_30_58_95"]]},{"id":"NCBITaxon:1805008","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q8A3L0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q8A3L0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1805008","archaeon 13_1_20CM_2_54_9"]]},{"id":"NCBITaxon:1805026","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q7FX52-F1-model_v4_TED01","TED novel fold AF-A0A1Q7FX52-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1805026","Armatimonadetes bacterium 13_1_40CM_64_14"]]},{"id":"NCBITaxon:1805035","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1J5B876-F1-model_v4_TED01","TED novel fold AF-A0A1J5B876-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1805035","Candidatus Beckwithbacteria bacterium CG2_30_44_31"]]},{"id":"NCBITaxon:1805096","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q7MGL8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1Q7MGL8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1805096","Crenarchaeota archaeon 13_1_40CM_3_52_17"]]},{"id":"NCBITaxon:1805126","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1J5EMZ8-F1-model_v4_TED01","TED novel fold AF-A0A1J5EMZ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1805126","Deltaproteobacteria bacterium CG2_30_63_29"]]},{"id":"NCBITaxon:1805128","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1J5E7K9-F1-model_v4_TED01","TED novel fold AF-A0A1J5E7K9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1805128","Desulfobacteraceae bacterium CG2_30_51_40"]]},{"id":"NCBITaxon:1805130","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1J4T3W5-F1-model_v4_TED02","TED novel fold AF-A0A1J4T3W5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1805130","Desulfovibrionaceae bacterium CG1_02_65_16"]]},{"id":"NCBITaxon:1805146","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1J4T4S7-F1-model_v4_TED07","TED highly-symmetric fold AF-A0A1J4T4S7-F1-model_v4_TED07"]],"b":[["NCBITaxon%3A1805146","Candidatus Falkowbacteria bacterium CG1_02_37_44"]]},{"id":"NCBITaxon:1805220","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1J4U5E6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1J4U5E6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1805220","Ignavibacteria bacterium CG1_02_37_35"]]},{"id":"NCBITaxon:1805224","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q7WUS9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q7WUS9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1805224","Ktedonobacter sp. 13_1_20CM_3_54_15"]]},{"id":"NCBITaxon:1805240","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1J4XBB4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1J4XBB4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1805240","Fidelibacterota bacterium CG1_02_48_14"]]},{"id":"NCBITaxon:1805263","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q7SGL5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q7SGL5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1805263","Nitrospirae bacterium 13_1_20CM_4_62_6"]]},{"id":"NCBITaxon:1805284","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1J4VFU9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1J4VFU9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1805284","Candidatus Omnitrophica bacterium CG1_02_40_15"]]},{"id":"NCBITaxon:1805286","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1J4Z274-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1J4Z274-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1805286","Candidatus Omnitrophica bacterium CG1_02_43_210"]]},{"id":"NCBITaxon:1805297","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1J4W239-F1-model_v4_TED01","TED novel fold AF-A0A1J4W239-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1805297","Candidatus Pacearchaeota archaeon CG1_02_35_32"]]},{"id":"NCBITaxon:1805302","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1J4WA19-F1-model_v4_TED01","TED novel fold AF-A0A1J4WA19-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1805302","Parcubacteria group bacterium CG1_02_37_13"]]},{"id":"NCBITaxon:1805308","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1J4WKZ9-F1-model_v4_TED01","TED novel fold AF-A0A1J4WKZ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1805308","Parcubacteria group bacterium CG1_02_41_26"]]},{"id":"NCBITaxon:1805317","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1J5H0E8-F1-model_v4_TED01","TED novel fold AF-A0A1J5H0E8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1805317","Parcubacteria group bacterium CG2_30_44_11"]]},{"id":"NCBITaxon:1805333","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1J4X614-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1J4X614-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1805333","Proteobacteria bacterium CG1_02_64_396"]]},{"id":"NCBITaxon:1805366","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q7D5X9-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1Q7D5X9-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1805366","Candidatus Rokubacteria bacterium 13_1_40CM_68_15"]]},{"id":"NCBITaxon:1805371","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6WCT4-F1-model_v4_TED02","TED novel fold AF-A0A1Q6WCT4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1805371","Candidatus Rokubacteria bacterium 13_2_20CM_69_10"]]},{"id":"NCBITaxon:1805403","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1J5DNS0-F1-model_v4_TED02","TED novel fold AF-A0A1J5DNS0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1805403","bacterium CG2_30_54_10"]]},{"id":"NCBITaxon:1805422","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1J4XLR5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1J4XLR5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1805422","Candidatus Woesearchaeota archaeon CG1_02_33_12"]]},{"id":"NCBITaxon:1805424","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1J4XRK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1J4XRK2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1805424","Candidatus Woesearchaeota archaeon CG1_02_57_44"]]},{"id":"NCBITaxon:1805481","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A177EK54-F1-model_v4_TED02","TED novel fold AF-A0A177EK54-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1805481","Nematocida ironsii"]]},{"id":"NCBITaxon:1806667","l":"Marinomonas gallaica","na":1,"nb":1,"a":[["TED%3AAF-A0A1C3JTC5-F1-model_v4_TED01","TED novel fold AF-A0A1C3JTC5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1806667","Marinomonas gallaica"]]},{"id":"NCBITaxon:1806885","l":"Sphingorhabdus sp. M41","na":1,"nb":1,"a":[["TED%3AAF-A0A127MDA6-F1-model_v4_TED01","TED novel fold AF-A0A127MDA6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1806885","Sphingorhabdus sp. M41"]]},{"id":"NCBITaxon:180862","l":"Bacillus thuringiensis serovar toumanoffi","na":1,"nb":1,"a":[["TED%3AAF-A0A243E870-F1-model_v4_TED01","TED novel fold AF-A0A243E870-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A180862","Bacillus thuringiensis serovar toumanoffi"]]},{"id":"NCBITaxon:180880","l":"Bacillus thuringiensis serovar argentinensis","na":1,"nb":1,"a":[["TED%3AAF-A0A243JUF1-F1-model_v4_TED01","TED novel fold AF-A0A243JUF1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A180880","Bacillus thuringiensis serovar argentinensis"]]},{"id":"NCBITaxon:1808955","l":"Bacillus mesophilus","na":1,"nb":1,"a":[["TED%3AAF-A0A6M0Q7E2-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A6M0Q7E2-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1808955","Bacillus mesophilus"]]},{"id":"NCBITaxon:1811674","l":"Methanobacterium sp. PtaB.Bin024","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4TH57-F1-model_v4_TED01","TED novel fold AF-A0A1V4TH57-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1811674","Methanobacterium sp. PtaB.Bin024"]]},{"id":"NCBITaxon:1811676","l":"Methanobacterium sp. PtaU1.Bin242","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4YTN8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1V4YTN8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1811676","Methanobacterium sp. PtaU1.Bin242"]]},{"id":"NCBITaxon:1811679","l":"Methanomethylovorans sp. PtaU1.Bin093","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4YFL3-F1-model_v4_TED01","TED novel fold AF-A0A1V4YFL3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1811679","Methanomethylovorans sp. PtaU1.Bin093"]]},{"id":"NCBITaxon:1811685","l":"Methanosaeta sp. PtaB.Bin039","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4UYT6-F1-model_v4_TED01","TED novel fold AF-A0A1V4UYT6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1811685","Methanosaeta sp. PtaB.Bin039"]]},{"id":"NCBITaxon:1811691","l":"Methanosaeta sp. PtaU1.Bin055","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5BF30-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5BF30-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1811691","Methanosaeta sp. PtaU1.Bin055"]]},{"id":"NCBITaxon:1811700","l":"Syntrophorhabdus sp. PtaB.Bin047","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4WYL1-F1-model_v4_TED08","TED novel fold AF-A0A1V4WYL1-F1-model_v4_TED08"]],"b":[["NCBITaxon%3A1811700","Syntrophorhabdus sp. PtaB.Bin047"]]},{"id":"NCBITaxon:1811710","l":"Syntrophus sp. PtaB.Bin001","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4X270-F1-model_v4_TED02","TED novel fold AF-A0A1V4X270-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1811710","Syntrophus sp. PtaB.Bin001"]]},{"id":"NCBITaxon:1811713","l":"Syntrophus sp. PtaU1.Bin208","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5DMC7-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1V5DMC7-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1811713","Syntrophus sp. PtaU1.Bin208"]]},{"id":"NCBITaxon:1811720","l":"Methanoregulaceae archaeon PtaB.Bin009","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4U8V2-F1-model_v4_TED01","TED novel fold AF-A0A1V4U8V2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1811720","Methanoregulaceae archaeon PtaB.Bin009"]]},{"id":"NCBITaxon:1811722","l":"Methanoregulaceae archaeon PtaB.Bin108","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4UG46-F1-model_v4_TED02","TED novel fold AF-A0A1V4UG46-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1811722","Methanoregulaceae archaeon PtaB.Bin108"]]},{"id":"NCBITaxon:1811725","l":"Methanoregulaceae archaeon PtaU1.Bin066","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5A3G5-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1V5A3G5-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1811725","Methanoregulaceae archaeon PtaU1.Bin066"]]},{"id":"NCBITaxon:1812858","l":"Anaerosacchariphilus polymeriproducens","na":1,"nb":1,"a":[["TED%3AAF-A0A371AZT7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A371AZT7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1812858","Anaerosacchariphilus polymeriproducens"]]},{"id":"NCBITaxon:1813876","l":"Phenylobacterium hankyongense","na":1,"nb":1,"a":[["TED%3AAF-A0A328B167-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A328B167-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1813876","Phenylobacterium hankyongense"]]},{"id":"NCBITaxon:1817495","l":"Agromyces binzhouensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q2K015-F1-model_v4_TED02","TED novel fold AF-A0A4Q2K015-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1817495","Agromyces binzhouensis"]]},{"id":"NCBITaxon:1817731","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5FX50-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F5FX50-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1817731","Candidatus Collierbacteria bacterium RIFOXYD1_FULL_40_9"]]},{"id":"NCBITaxon:1817748","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1C2I3-F1-model_v4_TED01","TED novel fold AF-A0A1G1C2I3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1817748","Microgenomates group bacterium RBG_19FT_COMBO_39_10"]]},{"id":"NCBITaxon:1817750","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1CI75-F1-model_v4_TED01","TED novel fold AF-A0A1G1CI75-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1817750","Microgenomates group bacterium RIFCSPLOWO2_01_FULL_46_13"]]},{"id":"NCBITaxon:1817755","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6V2B3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F6V2B3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1817755","Candidatus Muproteobacteria bacterium RBG_16_60_9"]]},{"id":"NCBITaxon:1817757","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6T0C4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F6T0C4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1817757","Candidatus Muproteobacteria bacterium RBG_16_64_10"]]},{"id":"NCBITaxon:1817761","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6UEJ7-F1-model_v4_TED01","TED novel fold AF-A0A1F6UEJ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1817761","Candidatus Muproteobacteria bacterium RBG_19FT_COMBO_61_10"]]},{"id":"NCBITaxon:1817824","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5NNY4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F5NNY4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1817824","Candidatus Doudnabacteria bacterium RIFCSPHIGHO2_01_FULL_46_14"]]},{"id":"NCBITaxon:1817828","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5PET0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F5PET0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1817828","Candidatus Doudnabacteria bacterium RIFCSPHIGHO2_01_FULL_50_11"]]},{"id":"NCBITaxon:1817851","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5RHY4-F1-model_v4_TED04","TED novel fold AF-A0A1F5RHY4-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1817851","Candidatus Edwardsbacteria bacterium GWF2_54_11"]]},{"id":"NCBITaxon:1817863","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5VLS4-F1-model_v4_TED01","TED novel fold AF-A0A1F5VLS4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1817863","Candidatus Fischerbacteria bacterium RBG_13_37_8"]]},{"id":"NCBITaxon:1817864","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5URP5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F5URP5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1817864","Candidatus Fraserbacteria bacterium RBG_16_55_9"]]},{"id":"NCBITaxon:1817876","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F7RNQ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F7RNQ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1817876","Candidatus Schekmanbacteria bacterium GWA2_38_11"]]},{"id":"NCBITaxon:1817883","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F7SL59-F1-model_v4_TED02","TED novel fold AF-A0A1F7SL59-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1817883","Candidatus Schekmanbacteria bacterium RIFCSPLOWO2_12_FULL_38_15"]]},{"id":"NCBITaxon:1817890","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F7FCR9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F7FCR9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1817890","Candidatus Raymondbacteria bacterium RIFOXYD12_FULL_49_13"]]},{"id":"NCBITaxon:1817892","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1J5IM62-F1-model_v4_TED01","TED novel fold AF-A0A1J5IM62-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1817892","Candidatus Wirthbacteria bacterium CG2_30_54_11"]]},{"id":"NCBITaxon:1817896","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F4UJQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F4UJQ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1817896","candidate division WS6 bacterium RIFOXYB1_FULL_33_14"]]},{"id":"NCBITaxon:182096","l":"Aspergillus chevalieri","na":1,"nb":1,"a":[["TED%3AAF-A0A7R7VIB2-F1-model_v4_TED01","TED novel fold AF-A0A7R7VIB2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A182096","Aspergillus chevalieri"]]},{"id":"NCBITaxon:182220","l":"Mycolicibacterium murale","na":1,"nb":1,"a":[["TED%3AAF-A0A7I9WL32-F1-model_v4_TED01","TED novel fold AF-A0A7I9WL32-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39695","Mycolicibacterium tokaiense"]]},{"id":"NCBITaxon:1822235","l":"Roseovarius sp. HI0049","na":1,"nb":1,"a":[["TED%3AAF-A0A176FJ41-F1-model_v4_TED02","TED novel fold AF-A0A176FJ41-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1822235","Roseovarius sp. HI0049"]]},{"id":"NCBITaxon:1822240","l":"Erythrobacter sp. HI0063","na":1,"nb":1,"a":[["TED%3AAF-A0A167IPA1-F1-model_v4_TED01","TED novel fold AF-A0A167IPA1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1822240","Erythrobacter sp. HI0063"]]},{"id":"NCBITaxon:1822254","l":"Oleiphilus sp. HI0079","na":1,"nb":1,"a":[["TED%3AAF-A0A657BC38-F1-model_v4_TED02","TED novel fold AF-A0A657BC38-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1822254","Oleiphilus sp. HI0079"]]},{"id":"NCBITaxon:1827290","l":"Chryseobacterium sp. MYb7","na":1,"nb":1,"a":[["TED%3AAF-A0A2S8ZE56-F1-model_v4_TED03","TED novel fold AF-A0A2S8ZE56-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1827290","Chryseobacterium sp. MYb7"]]},{"id":"NCBITaxon:1827382","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1W9H4W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W9H4W3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1827382","Proteobacteria bacterium SG_bin5"]]},{"id":"NCBITaxon:1827383","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1W9HJL3-F1-model_v4_TED02","TED novel fold AF-A0A1W9HJL3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1827383","Proteobacteria bacterium SG_bin6"]]},{"id":"NCBITaxon:1827606","l":"Streptomyces sp. 70","na":1,"nb":1,"a":[["TED%3AAF-A0A2G7EW80-F1-model_v4_TED01","TED novel fold AF-A0A2G7EW80-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1827606","Streptomyces sp. 70"]]},{"id":"NCBITaxon:1827608","l":"Streptomyces sp. 74","na":1,"nb":1,"a":[["TED%3AAF-A0A497W5L2-F1-model_v4_TED01","TED novel fold AF-A0A497W5L2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1827608","Streptomyces sp. 74"]]},{"id":"NCBITaxon:1833852","l":"Desulforamulus ferrireducens","na":1,"nb":1,"a":[["TED%3AAF-A0A1S6IZY5-F1-model_v4_TED02","TED novel fold AF-A0A1S6IZY5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1833852","Desulforamulus ferrireducens"]]},{"id":"NCBITaxon:1834037","l":"Rheinheimera riviphila","na":1,"nb":1,"a":[["TED%3AAF-A0A437QT82-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A437QT82-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1834037","Rheinheimera riviphila"]]},{"id":"NCBITaxon:1834075","l":"Mycobacterium sp. 1245801.1","na":1,"nb":1,"a":[["TED%3AAF-A0A1A3FAD2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1A3FAD2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1834075","Mycobacterium sp. 1245801.1"]]},{"id":"NCBITaxon:1834077","l":"Mycobacterium sp. 1274761.0","na":1,"nb":1,"a":[["TED%3AAF-A0A1A3SSL2-F1-model_v4_TED01","TED novel fold AF-A0A1A3SSL2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1834077","Mycobacterium sp. 1274761.0"]]},{"id":"NCBITaxon:1834089","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1B7U477-F1-model_v4_TED01","TED novel fold AF-A0A1B7U477-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1834089","Mycobacterium sp. 852002-40037_SCH5390672"]]},{"id":"NCBITaxon:1834109","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1A0WQJ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1A0WQJ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1834109","Mycobacterium sp. 852013-50091_SCH5140682"]]},{"id":"NCBITaxon:1834154","l":"Mycobacterium sp. GA-1841","na":1,"nb":1,"a":[["TED%3AAF-A0A1R0V4H9-F1-model_v4_TED01","TED novel fold AF-A0A1R0V4H9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1834154","Mycobacterium sp. GA-1841"]]},{"id":"NCBITaxon:1834192","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A200JDJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A200JDJ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1834192","Candidatus Enterococcus dunnyi"]]},{"id":"NCBITaxon:1835702","l":"Penicillium arizonense","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5L3E5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F5L3E5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1835702","Penicillium arizonense"]]},{"id":"NCBITaxon:1835722","l":"Neolewinella aquimaris","na":1,"nb":1,"a":[["TED%3AAF-A0A840E6J2-F1-model_v4_TED03","TED novel fold AF-A0A840E6J2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1835722","Neolewinella aquimaris"]]},{"id":"NCBITaxon:1835767","l":"Limnohabitans sp. MMS-10A-178","na":1,"nb":1,"a":[["TED%3AAF-A0A315B4N1-F1-model_v4_TED02","TED novel fold AF-A0A315B4N1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1835767","Limnohabitans sp. MMS-10A-178"]]},{"id":"NCBITaxon:1839766","l":"Streptomyces sp. DconLS","na":1,"nb":1,"a":[["TED%3AAF-A0A1C5DNZ5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C5DNZ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1839766","Streptomyces sp. DconLS"]]},{"id":"NCBITaxon:1840705","l":"Nostoc sp. ATCC 43529","na":1,"nb":1,"a":[["TED%3AAF-A0A367QQT5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A367QQT5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1840705","Nostoc sp. ATCC 43529"]]},{"id":"NCBITaxon:1841597","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q9NZD8-F1-model_v4_TED01","TED novel fold AF-A0A1Q9NZD8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1841597","Candidatus Heimdallarchaeota archaeon LC_2"]]},{"id":"NCBITaxon:1841599","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q9N9F6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1Q9N9F6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1841599","Candidatus Odinarchaeum yellowstonii"]]},{"id":"NCBITaxon:1841610","l":"Planctopirus hydrillae","na":1,"nb":1,"a":[["TED%3AAF-A0A1C3EHJ6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1C3EHJ6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1841610","Planctopirus hydrillae"]]},{"id":"NCBITaxon:1842539","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1B3NDG9-F1-model_v4_TED01","TED novel fold AF-A0A1B3NDG9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1842539","Allobosea sp. RAC05"]]},{"id":"NCBITaxon:1843184","l":"Pseudomonas sp. AU11447","na":1,"nb":1,"a":[["TED%3AAF-A0A1B8VEK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B8VEK2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1843184","Pseudomonas sp. AU11447"]]},{"id":"NCBITaxon:1843237","l":"Sphingomonas prati","na":1,"nb":1,"a":[["TED%3AAF-A0A7W9BV99-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W9BV99-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1843237","Sphingomonas prati"]]},{"id":"NCBITaxon:1844006","l":"Phaeobacter porticola","na":1,"nb":1,"a":[["TED%3AAF-A0A1L3I6U2-F1-model_v4_TED01","TED novel fold AF-A0A1L3I6U2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1844006","Phaeobacter porticola"]]},{"id":"NCBITaxon:1844972","l":"Paenibacillus oryzae","na":1,"nb":1,"a":[["TED%3AAF-A0A1A5YQ67-F1-model_v4_TED01","TED novel fold AF-A0A1A5YQ67-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1844972","Paenibacillus oryzae"]]},{"id":"NCBITaxon:1848329","l":"Nonomuraea diastatica","na":1,"nb":1,"a":[["TED%3AAF-A0A4R4WGH3-F1-model_v4_TED02","TED novel fold AF-A0A4R4WGH3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1848329","Nonomuraea diastatica"]]},{"id":"NCBITaxon:1848693","l":"Microbacterium sp. MYb72","na":1,"nb":1,"a":[["TED%3AAF-A0A2S8ZM11-F1-model_v4_TED01","TED novel fold AF-A0A2S8ZM11-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1848693","Microbacterium sp. MYb72"]]},{"id":"NCBITaxon:1848756","l":"Actinobacteria bacterium IMCC26103","na":1,"nb":1,"a":[["TED%3AAF-A0A7D6IK92-F1-model_v4_TED01","TED novel fold AF-A0A7D6IK92-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1848756","Actinobacteria bacterium IMCC26103"]]},{"id":"NCBITaxon:1848928","l":"Helicobacter sp. TUL","na":1,"nb":1,"a":[["TED%3AAF-A0A2A2GT12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A2GT12-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1848928","Helicobacter sp. TUL"]]},{"id":"NCBITaxon:1849261","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1D2RA25-F1-model_v4_TED02","TED novel fold AF-A0A1D2RA25-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1849261","Candidatus Altarchaeales archaeon WOR_SM1_SCG"]]},{"id":"NCBITaxon:1849359","l":"Jannaschia sp. EhC01","na":1,"nb":1,"a":[["TED%3AAF-A0A1B6YP83-F1-model_v4_TED06","TED novel fold AF-A0A1B6YP83-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A1849359","Jannaschia sp. EhC01"]]},{"id":"NCBITaxon:184978","l":"Decorospora gaudefroyi","na":1,"nb":1,"a":[["TED%3AAF-A0A6A5K2G3-F1-model_v4_TED01","TED novel fold AF-A0A6A5K2G3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A184978","Decorospora gaudefroyi"]]},{"id":"NCBITaxon:1850093","l":"Hymenobacter nivis","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z3GL83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z3GL83-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1850093","Hymenobacter nivis"]]},{"id":"NCBITaxon:1850238","l":"Rhizorhabdus dicambivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A2A4FP30-F1-model_v4_TED01","TED novel fold AF-A0A2A4FP30-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1850238","Rhizorhabdus dicambivorans"]]},{"id":"NCBITaxon:1850246","l":"Urechidicola croceus","na":1,"nb":1,"a":[["TED%3AAF-A0A1D8P9B6-F1-model_v4_TED01","TED novel fold AF-A0A1D8P9B6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1850246","Urechidicola croceus"]]},{"id":"NCBITaxon:1850252","l":"Tenacibaculum todarodis","na":1,"nb":1,"a":[["TED%3AAF-A0A1L3JJ42-F1-model_v4_TED01","TED novel fold AF-A0A1L3JJ42-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1850252","Tenacibaculum todarodis"]]},{"id":"NCBITaxon:1850347","l":"Novosphingobium guangzhouense","na":1,"nb":1,"a":[["TED%3AAF-A0A2K2G3N9-F1-model_v4_TED02","TED novel fold AF-A0A2K2G3N9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1850347","Novosphingobium guangzhouense"]]},{"id":"NCBITaxon:1850373","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A4S8N3I1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S8N3I1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1850373","Peteryoungia rhizophila"]]},{"id":"NCBITaxon:1850517","l":"Paenibacillus oryzisoli","na":1,"nb":1,"a":[["TED%3AAF-A0A197ZY80-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A197ZY80-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1850517","Paenibacillus oryzisoli"]]},{"id":"NCBITaxon:1851148","l":"Limihaloglobus sulfuriphilus","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q2MIY0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q2MIY0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1851148","Limihaloglobus sulfuriphilus"]]},{"id":"NCBITaxon:1851167","l":"Streptomyces sp. 11-1-2","na":1,"nb":1,"a":[["TED%3AAF-A0A222SLM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A222SLM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1851167","Streptomyces sp. 11-1-2"]]},{"id":"NCBITaxon:185139","l":"Rubrobacter taiwanensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4R1BQH8-F1-model_v4_TED01","TED novel fold AF-A0A4R1BQH8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A185139","Rubrobacter taiwanensis"]]},{"id":"NCBITaxon:1852029","l":"Aquicoccus porphyridii","na":1,"nb":1,"a":[["TED%3AAF-A0A5A9ZV31-F1-model_v4_TED02","TED novel fold AF-A0A5A9ZV31-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1852029","Aquicoccus porphyridii"]]},{"id":"NCBITaxon:185243","l":"Propionicimonas paludicola","na":1,"nb":1,"a":[["TED%3AAF-A0A2A9CU70-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A9CU70-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A185243","Propionicimonas paludicola"]]},{"id":"NCBITaxon:1852791","l":"Alphaproteobacteria bacterium ADurb.Bin100","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6FVU0-F1-model_v4_TED05","TED novel fold AF-A0A1V6FVU0-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1852791","Alphaproteobacteria bacterium ADurb.Bin100"]]},{"id":"NCBITaxon:1852795","l":"Bacteroidetes bacterium ADurb.Bin008","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6JEY9-F1-model_v4_TED09","TED highly-symmetric fold AF-A0A1V6JEY9-F1-model_v4_TED09"]],"b":[["NCBITaxon%3A1852795","Bacteroidetes bacterium ADurb.Bin008"]]},{"id":"NCBITaxon:1852798","l":"Bacteroidetes bacterium ADurb.Bin028","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6I663-F1-model_v4_TED01","TED novel fold AF-A0A1V6I663-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852798","Bacteroidetes bacterium ADurb.Bin028"]]},{"id":"NCBITaxon:1852799","l":"Bacteroidetes bacterium ADurb.Bin035","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6I9V5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V6I9V5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852799","Bacteroidetes bacterium ADurb.Bin035"]]},{"id":"NCBITaxon:1852803","l":"Bacteroidetes bacterium ADurb.Bin090","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6ELI2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V6ELI2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1852803","Bacteroidetes bacterium ADurb.Bin090"]]},{"id":"NCBITaxon:1852809","l":"Bacteroidetes bacterium ADurb.Bin217","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5VSW2-F1-model_v4_TED01","TED novel fold AF-A0A1V5VSW2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852809","Bacteroidetes bacterium ADurb.Bin217"]]},{"id":"NCBITaxon:1852813","l":"Bacteroidetes bacterium ADurb.Bin408","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5NBE7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5NBE7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852813","Bacteroidetes bacterium ADurb.Bin408"]]},{"id":"NCBITaxon:1852822","l":"candidate division Hyd24-12 bacterium ADurb.Bin004","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6K796-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1V6K796-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1852822","candidate division Hyd24-12 bacterium ADurb.Bin004"]]},{"id":"NCBITaxon:1852823","l":"candidate division BRC1 bacterium ADurb.Bin183","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5Y2G0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V5Y2G0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1852823","candidate division BRC1 bacterium ADurb.Bin183"]]},{"id":"NCBITaxon:1852826","l":"candidate division CPR1 bacterium ADurb.Bin160","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5ZNE9-F1-model_v4_TED01","TED novel fold AF-A0A1V5ZNE9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852826","candidate division CPR1 bacterium ADurb.Bin160"]]},{"id":"NCBITaxon:1852827","l":"candidate division TA06 bacterium ADurb.Bin131","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6C6G6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V6C6G6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1852827","candidate division TA06 bacterium ADurb.Bin131"]]},{"id":"NCBITaxon:1852835","l":"Candidatus Cloacimonetes bacterium ADurb.Bin088","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6F973-F1-model_v4_TED04","TED novel fold AF-A0A1V6F973-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1852835","Candidatus Cloacimonetes bacterium ADurb.Bin088"]]},{"id":"NCBITaxon:1852848","l":"Candidatus Hydrogenedentes bacterium ADurb.Bin170","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5YWP3-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A1V5YWP3-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1852848","Candidatus Hydrogenedentes bacterium ADurb.Bin170"]]},{"id":"NCBITaxon:1852857","l":"Chloroflexi bacterium ADurb.Bin180","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5YJB6-F1-model_v4_TED01","TED novel fold AF-A0A1V5YJB6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852857","Chloroflexi bacterium ADurb.Bin180"]]},{"id":"NCBITaxon:1852860","l":"Chloroflexi bacterium ADurb.Bin344","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5Q6M1-F1-model_v4_TED02","TED novel fold AF-A0A1V5Q6M1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1852860","Chloroflexi bacterium ADurb.Bin344"]]},{"id":"NCBITaxon:1852861","l":"Chloroflexi bacterium ADurb.Bin360","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5Q263-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V5Q263-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1852861","Chloroflexi bacterium ADurb.Bin360"]]},{"id":"NCBITaxon:1852862","l":"Deltaproteobacteria bacterium ADurb.Bin002","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6KE57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V6KE57-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852862","Deltaproteobacteria bacterium ADurb.Bin002"]]},{"id":"NCBITaxon:1852866","l":"Deltaproteobacteria bacterium ADurb.Bin072","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6GU64-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V6GU64-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852866","Deltaproteobacteria bacterium ADurb.Bin072"]]},{"id":"NCBITaxon:1852873","l":"Elusimicrobia bacterium ADurb.Bin231","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5VGG2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5VGG2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852873","Elusimicrobia bacterium ADurb.Bin231"]]},{"id":"NCBITaxon:1852878","l":"Euryarchaeota archaeon ADurb.Bin294","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5SHM9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5SHM9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852878","Euryarchaeota archaeon ADurb.Bin294"]]},{"id":"NCBITaxon:1852879","l":"Euryarchaeota archaeon ADurb.BinA087","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5ICC1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5ICC1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852879","Euryarchaeota archaeon ADurb.BinA087"]]},{"id":"NCBITaxon:1852884","l":"Firmicutes bacterium ADurb.Bin182","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5Y8P3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5Y8P3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852884","Firmicutes bacterium ADurb.Bin182"]]},{"id":"NCBITaxon:1852888","l":"Firmicutes bacterium ADurb.Bin300","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5S513-F1-model_v4_TED02","TED novel fold AF-A0A1V5S513-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1852888","Firmicutes bacterium ADurb.Bin300"]]},{"id":"NCBITaxon:1852890","l":"Firmicutes bacterium ADurb.Bin356","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5PAI7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5PAI7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852890","Firmicutes bacterium ADurb.Bin356"]]},{"id":"NCBITaxon:1852896","l":"Firmicutes bacterium ADurb.BinA052","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5IZN8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1V5IZN8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1852896","Firmicutes bacterium ADurb.BinA052"]]},{"id":"NCBITaxon:1852901","l":"Lentisphaerae bacterium ADurb.BinA184","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5H8X0-F1-model_v4_TED02","TED novel fold AF-A0A1V5H8X0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1852901","Lentisphaerae bacterium ADurb.BinA184"]]},{"id":"NCBITaxon:1852909","l":"Spirochaetes bacterium ADurb.Bin133","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6BUR7-F1-model_v4_TED01","TED novel fold AF-A0A1V6BUR7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852909","Spirochaetes bacterium ADurb.Bin133"]]},{"id":"NCBITaxon:1852919","l":"Tenericutes bacterium ADurb.Bin140","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6B748-F1-model_v4_TED03","TED novel fold AF-A0A1V6B748-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1852919","Tenericutes bacterium ADurb.Bin140"]]},{"id":"NCBITaxon:1852926","l":"Verrucomicrobia bacterium ADurb.Bin063","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6GJN9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V6GJN9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852926","Verrucomicrobia bacterium ADurb.Bin063"]]},{"id":"NCBITaxon:1852927","l":"Verrucomicrobia bacterium ADurb.Bin070","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6G9P6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1V6G9P6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1852927","Verrucomicrobia bacterium ADurb.Bin070"]]},{"id":"NCBITaxon:1852938","l":"Parcubacteria group bacterium ADurb.Bin192","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5XPC1-F1-model_v4_TED02","TED novel fold AF-A0A1V5XPC1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1852938","Parcubacteria group bacterium ADurb.Bin192"]]},{"id":"NCBITaxon:1853257","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1A6L771-F1-model_v4_TED02","TED novel fold AF-A0A1A6L771-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1853257","Vibrio sp. UCD-FRSSP16_10"]]},{"id":"NCBITaxon:1853682","l":"Halarchaeum sp. CBA1220","na":1,"nb":1,"a":[["TED%3AAF-A0A7D5DZJ3-F1-model_v4_TED01","TED novel fold AF-A0A7D5DZJ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1853682","Halarchaeum sp. CBA1220"]]},{"id":"NCBITaxon:1854586","l":"Amycolatopsis antarctica","na":1,"nb":1,"a":[["TED%3AAF-A0A263D954-F1-model_v4_TED01","TED novel fold AF-A0A263D954-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1854586","Amycolatopsis antarctica"]]},{"id":"NCBITaxon:1855285","l":"Rhodoferax sp. OV413","na":1,"nb":1,"a":[["TED%3AAF-A0A1H0QZU1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H0QZU1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1855285","Rhodoferax sp. OV413"]]},{"id":"NCBITaxon:1855288","l":"Cohnella sp. OV330","na":1,"nb":1,"a":[["TED%3AAF-A0A1I0ZWJ5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I0ZWJ5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1855288","Cohnella sp. OV330"]]},{"id":"NCBITaxon:1855302","l":"Pseudobutyrivibrio sp. JW11","na":1,"nb":1,"a":[["TED%3AAF-A0A1I5E7M3-F1-model_v4_TED01","TED novel fold AF-A0A1I5E7M3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1855302","Pseudobutyrivibrio sp. JW11"]]},{"id":"NCBITaxon:1855307","l":"Tardiphaga sp. OK246","na":1,"nb":1,"a":[["TED%3AAF-A0A239N8J6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A239N8J6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1855307","Tardiphaga sp. OK246"]]},{"id":"NCBITaxon:1855323","l":"Butyrivibrio sp. M55","na":1,"nb":1,"a":[["TED%3AAF-A0A1I7HAE2-F1-model_v4_TED02","TED novel fold AF-A0A1I7HAE2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1855323","Butyrivibrio sp. M55"]]},{"id":"NCBITaxon:1855338","l":"Nitrosospira sp. Nsp11","na":1,"nb":1,"a":[["TED%3AAF-A0A1M7G523-F1-model_v4_TED01","TED novel fold AF-A0A1M7G523-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1855338","Nitrosospira sp. Nsp11"]]},{"id":"NCBITaxon:1855343","l":"Oribacterium sp. WCC10","na":1,"nb":1,"a":[["TED%3AAF-A0A1I2RES7-F1-model_v4_TED02","TED novel fold AF-A0A1I2RES7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1855343","Oribacterium sp. WCC10"]]},{"id":"NCBITaxon:1855347","l":"Streptomyces sp. 2231.1","na":1,"nb":1,"a":[["TED%3AAF-A0A1H5I6Q3-F1-model_v4_TED04","TED novel fold AF-A0A1H5I6Q3-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1855347","Streptomyces sp. 2231.1"]]},{"id":"NCBITaxon:1855351","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1H4X8M6-F1-model_v4_TED01","TED novel fold AF-A0A1H4X8M6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1855351","Streptomyces sp. PAN_FS17"]]},{"id":"NCBITaxon:1855375","l":"Lachnospiraceae bacterium KHCPX20","na":1,"nb":1,"a":[["TED%3AAF-A0A1H2TQE4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H2TQE4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1855375","Lachnospiraceae bacterium KHCPX20"]]},{"id":"NCBITaxon:1855726","l":"Burkholderia sp. KK1","na":1,"nb":1,"a":[["TED%3AAF-A0A1P9YEG3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1P9YEG3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1855726","Burkholderia sp. KK1"]]},{"id":"NCBITaxon:1855912","l":"Luteitalea pratensis","na":1,"nb":1,"a":[["TED%3AAF-A0A143PJX2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A143PJX2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1855912","Luteitalea pratensis"]]},{"id":"NCBITaxon:1856","l":"Frankia torreyi","na":1,"nb":1,"a":[["TED%3AAF-A0A0D8BA00-F1-model_v4_TED01","TED novel fold AF-A0A0D8BA00-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1856","Frankia torreyi"]]},{"id":"NCBITaxon:1856283","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y5DHG2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y5DHG2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1856283","Marinomonas sp. 42_23_T18"]]},{"id":"NCBITaxon:1856287","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y5H823-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y5H823-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1856287","Thalassotalea sp. 42_200_T64"]]},{"id":"NCBITaxon:1856292","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y5E3Q9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y5E3Q9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1856292","Alphaproteobacteria bacterium 46_93_T64"]]},{"id":"NCBITaxon:1856297","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y5GP34-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y5GP34-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1856297","Gammaproteobacteria bacterium 45_16_T64"]]},{"id":"NCBITaxon:1856860","l":"Mycobacterium sp. 1245852.3","na":1,"nb":1,"a":[["TED%3AAF-A0A1A3L3W2-F1-model_v4_TED02","TED novel fold AF-A0A1A3L3W2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1856860","Mycobacterium sp. 1245852.3"]]},{"id":"NCBITaxon:1857568","l":"Macellibacteroides sp. HH-ZS","na":1,"nb":1,"a":[["TED%3AAF-A0A1C2BQK6-F1-model_v4_TED01","TED novel fold AF-A0A1C2BQK6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1857568","Macellibacteroides sp. HH-ZS"]]},{"id":"NCBITaxon:1857893","l":"Gordonia sp. UCD-TK1","na":1,"nb":1,"a":[["TED%3AAF-A0A1B9R9N9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1B9R9N9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1857893","Gordonia sp. UCD-TK1"]]},{"id":"NCBITaxon:1858805","l":"","na":1,"nb":1,"a":[["TED%3AAF-M5FWQ1-F1-model_v4_TED01","TED novel fold AF-M5FWQ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1858805","Dacryopinax primogenitus"]]},{"id":"NCBITaxon:1859475","l":"Floricoccus penangensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1E8GJL3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1E8GJL3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1859475","Floricoccus penangensis"]]},{"id":"NCBITaxon:1860085","l":"Bacteriovorax sp. MedPE-SWde","na":1,"nb":1,"a":[["TED%3AAF-A0A1J5KC37-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1J5KC37-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1860085","Bacteriovorax sp. MedPE-SWde"]]},{"id":"NCBITaxon:1860100","l":"Methanobacterium sp. A39","na":1,"nb":1,"a":[["TED%3AAF-A0A1D2WAA7-F1-model_v4_TED01","TED novel fold AF-A0A1D2WAA7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1860100","Methanobacterium sp. A39"]]},{"id":"NCBITaxon:1860123","l":"Pseudomonas sp. AU12215","na":1,"nb":1,"a":[["TED%3AAF-A0A1B8TCA3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B8TCA3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1860123","Pseudomonas sp. AU12215"]]},{"id":"NCBITaxon:186103","l":"","na":1,"nb":1,"a":[["Pfam%3APF13585","CHU_C Type IX secretion signal domain"]],"b":[["NCBITaxon%3A186103","Streptococcus pyogenes MGAS8232"]]},{"id":"NCBITaxon:1861639","l":"Firmicutes bacterium ZCTH02-B6","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y3Q7C5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y3Q7C5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1861639","Firmicutes bacterium ZCTH02-B6"]]},{"id":"NCBITaxon:1862668","l":"Ileibacterium valens","na":1,"nb":1,"a":[["TED%3AAF-A0A1U7NHQ9-F1-model_v4_TED02","TED novel fold AF-A0A1U7NHQ9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1862668","Ileibacterium valens"]]},{"id":"NCBITaxon:1862950","l":"Rhizobiales bacterium NRL2","na":1,"nb":1,"a":[["TED%3AAF-A0A192IL09-F1-model_v4_TED01","TED novel fold AF-A0A192IL09-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1862950","Rhizobiales bacterium NRL2"]]},{"id":"NCBITaxon:1866913","l":"Desulfobacterales bacterium C00003104","na":1,"nb":1,"a":[["TED%3AAF-A0A1E7HCS4-F1-model_v4_TED01","TED novel fold AF-A0A1E7HCS4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1866913","Desulfobacterales bacterium C00003104"]]},{"id":"NCBITaxon:1866923","l":"bacterium ADurb.Bin132","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6C5W7-F1-model_v4_TED01","TED novel fold AF-A0A1V6C5W7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1866923","bacterium ADurb.Bin132"]]},{"id":"NCBITaxon:1866927","l":"bacterium ADurb.Bin363","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5PKI9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V5PKI9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1866927","bacterium ADurb.Bin363"]]},{"id":"NCBITaxon:1866930","l":"bacterium ADurb.Bin429","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5M3H3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5M3H3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1866930","bacterium ADurb.Bin429"]]},{"id":"NCBITaxon:1866934","l":"bacterium ADurb.BinA186","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5GXP0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1V5GXP0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1866934","bacterium ADurb.BinA186"]]},{"id":"NCBITaxon:1866939","l":"Synechococcus sp. A18-40","na":1,"nb":1,"a":[["TED%3AAF-A0A7G8ICB5-F1-model_v4_TED02","TED novel fold AF-A0A7G8ICB5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1866939","Synechococcus sp. A18-40"]]},{"id":"NCBITaxon:1867956","l":"Rhizobium oryziradicis","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q8ZRR4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q8ZRR4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1867956","Rhizobium oryziradicis"]]},{"id":"NCBITaxon:1868214","l":"Candidatus Korarchaeota archaeon NZ13-K","na":1,"nb":1,"a":[["TED%3AAF-A0A369T3A9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A369T3A9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1868214","Candidatus Korarchaeota archaeon NZ13-K"]]},{"id":"NCBITaxon:1868286","l":"Rhodobacteraceae bacterium (ex Bugula neritina AB1)","na":1,"nb":1,"a":[["TED%3AAF-A0A1E5AKC8-F1-model_v4_TED03","TED novel fold AF-A0A1E5AKC8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1868286","Rhodobacteraceae bacterium (ex Bugula neritina AB1)"]]},{"id":"NCBITaxon:1868324","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A395LZ30-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A395LZ30-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1868324","Candidatus Thermochlorobacter aerophilus"]]},{"id":"NCBITaxon:186901","l":"","na":1,"nb":1,"a":[["PROSITE%3APS01349","Nodulation protein nodA signature"]],"b":[["NCBITaxon%3A186901","Bradyrhizobium sp. ANU289"]]},{"id":"NCBITaxon:1869214","l":"Rheinheimera sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2D5RQK8-F1-model_v4_TED01","TED novel fold AF-A0A2D5RQK8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1869214","Rheinheimera sp."]]},{"id":"NCBITaxon:1869241","l":"Nostoc sp. CENA543","na":1,"nb":1,"a":[["TED%3AAF-A0A2I8A446-F1-model_v4_TED01","TED novel fold AF-A0A2I8A446-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1869241","Nostoc sp. CENA543"]]},{"id":"NCBITaxon:1869300","l":"Desulfobacterales bacterium S5133MH16","na":1,"nb":1,"a":[["TED%3AAF-A0A1E7I4I1-F1-model_v4_TED01","TED novel fold AF-A0A1E7I4I1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1869300","Desulfobacterales bacterium S5133MH16"]]},{"id":"NCBITaxon:1869302","l":"Desulfobacterales bacterium S7086C20","na":1,"nb":1,"a":[["TED%3AAF-A0A1V1WVT0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V1WVT0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1869302","Desulfobacterales bacterium S7086C20"]]},{"id":"NCBITaxon:1869305","l":"Desulfobulbaceae bacterium S3730MH12","na":1,"nb":1,"a":[["TED%3AAF-A0A1E7H854-F1-model_v4_TED01","TED novel fold AF-A0A1E7H854-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1869305","Desulfobulbaceae bacterium S3730MH12"]]},{"id":"NCBITaxon:1869309","l":"Desulfuromonadales bacterium C00003107","na":1,"nb":1,"a":[["TED%3AAF-A0A1E7IH38-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E7IH38-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1869309","Desulfuromonadales bacterium C00003107"]]},{"id":"NCBITaxon:1869311","l":"Desulfuromonadales bacterium C00003096","na":1,"nb":1,"a":[["TED%3AAF-A0A1E7GST7-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A1E7GST7-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1869311","Desulfuromonadales bacterium C00003096"]]},{"id":"NCBITaxon:1869339","l":"Polaromonas sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y0C4X5-F1-model_v4_TED01","TED novel fold AF-A0A7Y0C4X5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1869339","Polaromonas sp."]]},{"id":"NCBITaxon:1870902","l":"Leifsonia sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2E0SSA9-F1-model_v4_TED02","TED novel fold AF-A0A2E0SSA9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1870902","Leifsonia sp."]]},{"id":"NCBITaxon:1871043","l":"Variovorax sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2E9BKC8-F1-model_v4_TED02","TED novel fold AF-A0A2E9BKC8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1871043","Variovorax sp."]]},{"id":"NCBITaxon:1871072","l":"Nocardioidaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7W0M449-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W0M449-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1871072","Nocardioidaceae bacterium"]]},{"id":"NCBITaxon:1872076","l":"Candidatus Scalindua rubra","na":1,"nb":1,"a":[["TED%3AAF-A0A1E3XEX8-F1-model_v4_TED01","TED novel fold AF-A0A1E3XEX8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1872076","Candidatus Scalindua rubra"]]},{"id":"NCBITaxon:1872109","l":"Acidilobus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A6B2CP94-F1-model_v4_TED01","TED novel fold AF-A0A6B2CP94-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1872109","Acidilobus sp."]]},{"id":"NCBITaxon:1872119","l":"Acidobacterium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2G4JIL1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2G4JIL1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1872119","Acidobacterium sp."]]},{"id":"NCBITaxon:1872399","l":"Aeropyrum sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A832FSN2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A832FSN2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1872399","Aeropyrum sp."]]},{"id":"NCBITaxon:1872437","l":"Alicycliphilus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A5C8C4W8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5C8C4W8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1872437","Alicycliphilus sp."]]},{"id":"NCBITaxon:1872442","l":"Aliiroseovarius sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7C5GKH2-F1-model_v4_TED01","TED novel fold AF-A0A7C5GKH2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1872442","Aliiroseovarius sp."]]},{"id":"NCBITaxon:1872444","l":"Alistipes sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A358LZJ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A358LZJ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1872444","Alistipes sp."]]},{"id":"NCBITaxon:1872532","l":"Anaerovibrio sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A3D4AM55-F1-model_v4_TED01","TED novel fold AF-A0A3D4AM55-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1872532","Anaerovibrio sp."]]},{"id":"NCBITaxon:187303","l":"Methylocystis hydrogenophila","na":1,"nb":1,"a":[["TED%3AAF-J7QPR6-F1-model_v4_TED01","TED novel fold AF-J7QPR6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A187303","Methylocystis hydrogenophila"]]},{"id":"NCBITaxon:1873464","l":"Micromonosporaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A3D5AGM4-F1-model_v4_TED01","TED novel fold AF-A0A3D5AGM4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1873464","Micromonosporaceae bacterium"]]},{"id":"NCBITaxon:1873524","l":"Halodesulfurarchaeum formicicum","na":1,"nb":1,"a":[["TED%3AAF-A0A1J1ABB1-F1-model_v4_TED01","TED novel fold AF-A0A1J1ABB1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1873524","Halodesulfurarchaeum formicicum"]]},{"id":"NCBITaxon:1873897","l":"Cupriavidus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A352SA47-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A352SA47-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1873897","Cupriavidus sp."]]},{"id":"NCBITaxon:1874317","l":"Marinobacter salinus","na":1,"nb":1,"a":[["TED%3AAF-A0A1D9GM66-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1D9GM66-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1874317","Marinobacter salinus"]]},{"id":"NCBITaxon:1874361","l":"Idiomarina sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2E9H521-F1-model_v4_TED01","TED novel fold AF-A0A2E9H521-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1874361","Idiomarina sp."]]},{"id":"NCBITaxon:1874629","l":"Thermodesulfatator sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7C3GMU6-F1-model_v4_TED02","TED novel fold AF-A0A7C3GMU6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1874629","Thermodesulfatator sp."]]},{"id":"NCBITaxon:1874826","l":"Novosphingobium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A3D1P3T8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D1P3T8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1874826","Novosphingobium sp."]]},{"id":"NCBITaxon:1879050","l":"Acinetobacter wuhouensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q7AIW8-F1-model_v4_TED01","TED novel fold AF-A0A4Q7AIW8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1879050","Acinetobacter wuhouensis"]]},{"id":"NCBITaxon:1880849","l":"Vibrio sp. 10N.261.52.A1","na":1,"nb":1,"a":[["TED%3AAF-A0A2N7IPL4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N7IPL4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1880849","Vibrio sp. 10N.261.52.A1"]]},{"id":"NCBITaxon:1881035","l":"Mitsuaria sp. PDC51","na":1,"nb":1,"a":[["TED%3AAF-A0A1I6JG99-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I6JG99-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1881035","Mitsuaria sp. PDC51"]]},{"id":"NCBITaxon:1881037","l":"Rhodanobacter sp. OK091","na":1,"nb":1,"a":[["TED%3AAF-A0A1M7GY95-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M7GY95-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1881037","Rhodanobacter sp. OK091"]]},{"id":"NCBITaxon:1881038","l":"Duganella sp. CF517","na":1,"nb":1,"a":[["TED%3AAF-A0A1H8H966-F1-model_v4_TED01","TED novel fold AF-A0A1H8H966-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1881038","Duganella sp. CF517"]]},{"id":"NCBITaxon:1881049","l":"Mucilaginibacter sp. OK283","na":1,"nb":1,"a":[["TED%3AAF-A0A1H8XZP9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H8XZP9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1881049","Mucilaginibacter sp. OK283"]]},{"id":"NCBITaxon:1881060","l":"Clostridium sp. USBA 49","na":1,"nb":1,"a":[["TED%3AAF-A0A1T4XFS6-F1-model_v4_TED02","TED novel fold AF-A0A1T4XFS6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1881060","Clostridium sp. USBA 49"]]},{"id":"NCBITaxon:1882438","l":"Mucilaginibacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2J6H382-F1-model_v4_TED01","TED novel fold AF-A0A2J6H382-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1882438","Mucilaginibacter sp."]]},{"id":"NCBITaxon:1882735","l":"Methanosarcina sp. Ant1","na":1,"nb":1,"a":[["TED%3AAF-A0A1E7G8V2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E7G8V2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1882735","Methanosarcina sp. Ant1"]]},{"id":"NCBITaxon:1882750","l":"Burkholderia sp. GAS332","na":1,"nb":1,"a":[["TED%3AAF-A0A1N6LVR0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1N6LVR0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1882750","Burkholderia sp. GAS332"]]},{"id":"NCBITaxon:1882752","l":"Singulisphaera sp. GP187","na":1,"nb":1,"a":[["TED%3AAF-A0A1N6KHP4-F1-model_v4_TED02","TED novel fold AF-A0A1N6KHP4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1882752","Singulisphaera sp. GP187"]]},{"id":"NCBITaxon:1882755","l":"Pseudomonas sp. BS3759","na":1,"nb":1,"a":[["TED%3AAF-A0A1H0LFG3-F1-model_v4_TED03","TED novel fold AF-A0A1H0LFG3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1882755","Pseudomonas sp. BS3759"]]},{"id":"NCBITaxon:1882770","l":"Streptomyces sp. OK885","na":1,"nb":1,"a":[["TED%3AAF-A0A2N3ZZI5-F1-model_v4_TED01","TED novel fold AF-A0A2N3ZZI5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1882770","Streptomyces sp. OK885"]]},{"id":"NCBITaxon:1882814","l":"Rhodococcus sp. OK270","na":1,"nb":1,"a":[["TED%3AAF-A0A285DXY5-F1-model_v4_TED01","TED novel fold AF-A0A285DXY5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1882814","Rhodococcus sp. OK270"]]},{"id":"NCBITaxon:1882832","l":"Paenibacillaceae bacterium GAS479","na":1,"nb":1,"a":[["TED%3AAF-A0A1H1ZWX8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H1ZWX8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1882832","Paenibacillaceae bacterium GAS479"]]},{"id":"NCBITaxon:1882918","l":"Pajaroellobacter abortibovis","na":1,"nb":1,"a":[["TED%3AAF-A0A1L6MVB8-F1-model_v4_TED03","TED novel fold AF-A0A1L6MVB8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1882918","Pajaroellobacter abortibovis"]]},{"id":"NCBITaxon:1883156","l":"Winogradskyella sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A848UQ47-F1-model_v4_TED01","TED novel fold AF-A0A848UQ47-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1883156","Winogradskyella sp."]]},{"id":"NCBITaxon:1883416","l":"Halomonas sp. 1513","na":1,"nb":1,"a":[["TED%3AAF-A0A1P8R790-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1P8R790-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1883416","Halomonas sp. 1513"]]},{"id":"NCBITaxon:1884311","l":"Variovorax sp. OK202","na":1,"nb":1,"a":[["TED%3AAF-A0A1H7ES98-F1-model_v4_TED01","TED novel fold AF-A0A1H7ES98-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1884311","Variovorax sp. OK202"]]},{"id":"NCBITaxon:1884368","l":"Duganella sp. CF458","na":1,"nb":1,"a":[["TED%3AAF-A0A1I2WJF2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2WJF2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1884368","Duganella sp. CF458"]]},{"id":"NCBITaxon:1884369","l":"Sphingobium sp. AP50","na":1,"nb":1,"a":[["TED%3AAF-A0A1H7DSH5-F1-model_v4_TED02","TED novel fold AF-A0A1H7DSH5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1884369","Sphingobium sp. AP50"]]},{"id":"NCBITaxon:1884375","l":"Paenibacillus sp. PDC88","na":1,"nb":1,"a":[["TED%3AAF-A0A1H2UHZ1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H2UHZ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1884375","Paenibacillus sp. PDC88"]]},{"id":"NCBITaxon:1884377","l":"Paenibacillus sp. OV219","na":1,"nb":1,"a":[["TED%3AAF-A0A1H8HIB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H8HIB4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1884377","Paenibacillus sp. OV219"]]},{"id":"NCBITaxon:1884656","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1V2YJ98-F1-model_v4_TED02","TED novel fold AF-A0A1V2YJ98-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1884656","Candidatus Parepulonipiscium sp. PG-Nuni2H_MBin01"]]},{"id":"NCBITaxon:1884657","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1V2YCI7-F1-model_v4_TED03","TED novel fold AF-A0A1V2YCI7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1884657","Candidatus Parepulonipiscium sp. PG-Nun2H_MBin03"]]},{"id":"NCBITaxon:1884791","l":"Euhalothece sp. KZN 001","na":1,"nb":1,"a":[["TED%3AAF-A0A2K3BS64-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2K3BS64-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1884791","Euhalothece sp. KZN 001"]]},{"id":"NCBITaxon:1884913","l":"Candidatus Planktophila lacus","na":1,"nb":1,"a":[["TED%3AAF-A0A249LJY0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A249LJY0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1884913","Candidatus Planktophila lacus"]]},{"id":"NCBITaxon:1885016","l":"Rothia sp. (in: high G+C Gram-positive bacteria)","na":1,"nb":1,"a":[["TED%3AAF-A0A3D3LXD1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D3LXD1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1885016","Rothia sp. (in: high G+C Gram-positive bacteria)"]]},{"id":"NCBITaxon:1888168","l":"Curvibacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A433BGD3-F1-model_v4_TED01","TED novel fold AF-A0A433BGD3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1888168","Curvibacter sp."]]},{"id":"NCBITaxon:188906","l":"Jannaschia helgolandensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1H7MIC2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H7MIC2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A188906","Jannaschia helgolandensis"]]},{"id":"NCBITaxon:1889770","l":"Thioclava sp. SK-1","na":1,"nb":1,"a":[["TED%3AAF-A0A1C2HJ00-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1C2HJ00-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1889770","Thioclava sp. SK-1"]]},{"id":"NCBITaxon:1889780","l":"Gaetbulibacter sp. 5U11","na":1,"nb":1,"a":[["TED%3AAF-A0A7Z1RBL4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Z1RBL4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1889780","Gaetbulibacter sp. 5U11"]]},{"id":"NCBITaxon:1890295","l":"Pseudoduganella danionis","na":1,"nb":1,"a":[["TED%3AAF-A0A6A8VX57-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6A8VX57-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1890295","Pseudoduganella danionis"]]},{"id":"NCBITaxon:1890675","l":"Herbaspirillum sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2E7PAN6-F1-model_v4_TED02","TED novel fold AF-A0A2E7PAN6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1890675","Herbaspirillum sp."]]},{"id":"NCBITaxon:1891280","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1C8ZU42-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C8ZU42-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1891280","Saccharolobus sp. A20"]]},{"id":"NCBITaxon:1891921","l":"Piscirickettsia litoralis","na":1,"nb":1,"a":[["TED%3AAF-A0A1E3G997-F1-model_v4_TED01","TED novel fold AF-A0A1E3G997-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1891921","Piscirickettsia litoralis"]]},{"id":"NCBITaxon:1892852","l":"Solihabitans fulvus","na":1,"nb":1,"a":[["TED%3AAF-A0A5B2XST0-F1-model_v4_TED04","TED novel fold AF-A0A5B2XST0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1892852","Solihabitans fulvus"]]},{"id":"NCBITaxon:1894970","l":"Micromonospora musae","na":1,"nb":1,"a":[["TED%3AAF-A0A3A9Y0G1-F1-model_v4_TED03","TED novel fold AF-A0A3A9Y0G1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1894970","Micromonospora musae"]]},{"id":"NCBITaxon:189518","l":"Leptospira interrogans serovar Lai str. 56601","na":1,"nb":1,"a":[["Pfam%3APF27429","LB_356"]],"b":[["NCBITaxon%3A189518","Leptospira interrogans serovar Lai str. 56601"]]},{"id":"NCBITaxon:1895721","l":"Bacteroidia bacterium 44-10","na":1,"nb":1,"a":[["TED%3AAF-A0A1M3FSU7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M3FSU7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895721","Bacteroidia bacterium 44-10"]]},{"id":"NCBITaxon:1895735","l":"Caedibacter sp. 37-49","na":1,"nb":1,"a":[["TED%3AAF-A0A1M3J316-F1-model_v4_TED01","TED novel fold AF-A0A1M3J316-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895735","Caedibacter sp. 37-49"]]},{"id":"NCBITaxon:1895737","l":"Caulobacterales bacterium 68-7","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q3JHD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3JHD6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895737","Caulobacterales bacterium 68-7"]]},{"id":"NCBITaxon:1895742","l":"Chlamydia sp. 32-24","na":1,"nb":1,"a":[["TED%3AAF-A0A1M3B8J9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M3B8J9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895742","Chlamydia sp. 32-24"]]},{"id":"NCBITaxon:1895784","l":"Microbacterium sp. 69-7","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q3LD51-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3LD51-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895784","Microbacterium sp. 69-7"]]},{"id":"NCBITaxon:1895791","l":"Micrococcales bacterium 73-13","na":1,"nb":1,"a":[["TED%3AAF-A0A1M3LG94-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M3LG94-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895791","Micrococcales bacterium 73-13"]]},{"id":"NCBITaxon:1895807","l":"Planctomycetales bacterium 71-10","na":1,"nb":1,"a":[["TED%3AAF-A0A1U7GL33-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1U7GL33-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1895807","Planctomycetales bacterium 71-10"]]},{"id":"NCBITaxon:1895810","l":"Rhizobiales bacterium 62-17","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q4B9D3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q4B9D3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1895810","Rhizobiales bacterium 62-17"]]},{"id":"NCBITaxon:1895832","l":"Solirubrobacterales bacterium 67-14","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q3NGI6-F1-model_v4_TED01","TED novel fold AF-A0A1Q3NGI6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895832","Solirubrobacterales bacterium 67-14"]]},{"id":"NCBITaxon:1895841","l":"Sphingobacteriales bacterium 50-39","na":1,"nb":1,"a":[["TED%3AAF-A0A1M3HFF3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M3HFF3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895841","Sphingobacteriales bacterium 50-39"]]},{"id":"NCBITaxon:1895843","l":"Sphingobacterium sp. 40-24","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q4G9U7-F1-model_v4_TED01","TED novel fold AF-A0A1Q4G9U7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895843","Sphingobacterium sp. 40-24"]]},{"id":"NCBITaxon:1895845","l":"Sphingobium sp. 66-54","na":1,"nb":1,"a":[["TED%3AAF-A0A1M3PTQ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M3PTQ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895845","Sphingobium sp. 66-54"]]},{"id":"NCBITaxon:1895854","l":"Spirosoma sp. 48-14","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q3WWG0-F1-model_v4_TED01","TED novel fold AF-A0A1Q3WWG0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895854","Spirosoma sp. 48-14"]]},{"id":"NCBITaxon:1895866","l":"Verrucomicrobia bacterium 61-8","na":1,"nb":1,"a":[["TED%3AAF-A0A1M3CGR7-F1-model_v4_TED03","TED novel fold AF-A0A1M3CGR7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1895866","Verrucomicrobia bacterium 61-8"]]},{"id":"NCBITaxon:1895869","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q4FQH4-F1-model_v4_TED01","TED novel fold AF-A0A1Q4FQH4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895869","Lysobacterales bacterium 69-70"]]},{"id":"NCBITaxon:1895921","l":"Bacteroidetes bacterium 37-13","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q3Q800-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q3Q800-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1895921","Bacteroidetes bacterium 37-13"]]},{"id":"NCBITaxon:1895922","l":"Bacteroidetes bacterium 41-46","na":1,"nb":1,"a":[["TED%3AAF-A0A1M3CYM1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M3CYM1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1895922","Bacteroidetes bacterium 41-46"]]},{"id":"NCBITaxon:1895927","l":"Chloroflexi bacterium 44-23","na":1,"nb":1,"a":[["TED%3AAF-A0A1M3K0J8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1M3K0J8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1895927","Chloroflexi bacterium 44-23"]]},{"id":"NCBITaxon:1896175","l":"Polaribacter sp. KT 15","na":1,"nb":1,"a":[["TED%3AAF-A0A1M7MCC0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M7MCC0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1896175","Polaribacter sp. KT 15"]]},{"id":"NCBITaxon:1896196","l":"Porphyrobacter sp. LM 6","na":1,"nb":1,"a":[["TED%3AAF-A0A1D7NP70-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1D7NP70-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1896196","Porphyrobacter sp. LM 6"]]},{"id":"NCBITaxon:1896207","l":"Fibrobacter sp. UWB8","na":1,"nb":1,"a":[["TED%3AAF-A0A1M5KSJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M5KSJ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1896207","Fibrobacter sp. UWB8"]]},{"id":"NCBITaxon:1896217","l":"Fibrobacter sp. UWR3","na":1,"nb":1,"a":[["TED%3AAF-A0A1M7GJB3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M7GJB3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1896217","Fibrobacter sp. UWR3"]]},{"id":"NCBITaxon:1896224","l":"Fibrobacter sp. UWT2","na":1,"nb":1,"a":[["TED%3AAF-A0A1M6UY53-F1-model_v4_TED01","TED novel fold AF-A0A1M6UY53-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1896224","Fibrobacter sp. UWT2"]]},{"id":"NCBITaxon:1896225","l":"Fibrobacter sp. UWT3","na":1,"nb":1,"a":[["TED%3AAF-A0A2C8YRE3-F1-model_v4_TED04","TED novel fold AF-A0A2C8YRE3-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1896225","Fibrobacter sp. UWT3"]]},{"id":"NCBITaxon:1896965","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6T0X6-F1-model_v4_TED01","TED novel fold AF-A0A1Q6T0X6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1896965","Acetobacter sp. 46_36"]]},{"id":"NCBITaxon:1896966","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6TS89-F1-model_v4_TED01","TED novel fold AF-A0A1Q6TS89-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1896966","Acinetobacter sp. CAG:196_36_41"]]},{"id":"NCBITaxon:1896975","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6FT72-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q6FT72-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1896975","Bacteroides sp. CAG:1060_57_27"]]},{"id":"NCBITaxon:1896977","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6JX10-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q6JX10-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1896977","Clostridium sp. 26_21"]]},{"id":"NCBITaxon:1896980","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6KK16-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q6KK16-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1896980","Clostridium sp. 28_12"]]},{"id":"NCBITaxon:1896986","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6M2W2-F1-model_v4_TED01","TED novel fold AF-A0A1Q6M2W2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1896986","Clostridium sp. CAG:245_30_32"]]},{"id":"NCBITaxon:1896987","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6M635-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q6M635-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1896987","Clostridium sp. CAG:307_30_263"]]},{"id":"NCBITaxon:1896990","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6N734-F1-model_v4_TED01","TED novel fold AF-A0A1Q6N734-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1896990","Clostridium sp. CAG:62_40_43"]]},{"id":"NCBITaxon:1896994","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6NNT5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q6NNT5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1896994","Coprobacillus sp. 28_7"]]},{"id":"NCBITaxon:1896997","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6MJS1-F1-model_v4_TED02","TED novel fold AF-A0A1Q6MJS1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1896997","Coprococcus sp. CAG:131_42_139"]]},{"id":"NCBITaxon:1897001","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6MB21-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q6MB21-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1897001","Eubacterium sp. 36_13"]]},{"id":"NCBITaxon:1897015","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6UNK1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q6UNK1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1897015","Roseburia sp. 40_7"]]},{"id":"NCBITaxon:1897019","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6TD62-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q6TD62-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1897019","Ruminococcus sp. 37_24"]]},{"id":"NCBITaxon:1897034","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6QXA8-F1-model_v4_TED01","TED novel fold AF-A0A1Q6QXA8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1897034","Firmicutes bacterium CAG:321_26_22"]]},{"id":"NCBITaxon:1897036","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6SHB6-F1-model_v4_TED02","TED novel fold AF-A0A1Q6SHB6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1897036","Firmicutes bacterium CAG:65_45_313"]]},{"id":"NCBITaxon:1897037","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6QLJ3-F1-model_v4_TED01","TED novel fold AF-A0A1Q6QLJ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1897037","Firmicutes bacterium CAG_194_44_15"]]},{"id":"NCBITaxon:1897038","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6F6W6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q6F6W6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1897038","Bacteroidales bacterium 43_36"]]},{"id":"NCBITaxon:1897040","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6ECH6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q6ECH6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1897040","Bacteroidales bacterium 52_46"]]},{"id":"NCBITaxon:1897041","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6ER29-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q6ER29-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1897041","Bacteroidales bacterium 55_9"]]},{"id":"NCBITaxon:1897620","l":"Marinobacter sp. X15-166B","na":1,"nb":1,"a":[["TED%3AAF-A0A1E7PXU9-F1-model_v4_TED02","TED novel fold AF-A0A1E7PXU9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1897620","Marinobacter sp. X15-166B"]]},{"id":"NCBITaxon:1897630","l":"Motiliproteus sp. MSK22-1","na":1,"nb":1,"a":[["TED%3AAF-A0A1R1LDJ1-F1-model_v4_TED02","TED novel fold AF-A0A1R1LDJ1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1897630","Motiliproteus sp. MSK22-1"]]},{"id":"NCBITaxon:1898105","l":"Paludibacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A6I3N567-F1-model_v4_TED01","TED novel fold AF-A0A6I3N567-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1898105","Paludibacter sp."]]},{"id":"NCBITaxon:1898113","l":"Idiomarinaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A2E4ZCZ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4ZCZ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1898113","Idiomarinaceae bacterium"]]},{"id":"NCBITaxon:189873","l":"Bradyrhizobium sp. LMTR 3","na":1,"nb":1,"a":[["TED%3AAF-A0A1B9YKW8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B9YKW8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A189873","Bradyrhizobium sp. LMTR 3"]]},{"id":"NCBITaxon:1898978","l":"Hymenobacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A519UC12-F1-model_v4_TED02","TED novel fold AF-A0A519UC12-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1898978","Hymenobacter sp."]]},{"id":"NCBITaxon:189918","l":"Mycobacterium sp. KMS","na":1,"nb":1,"a":[["Pfam%3APF06339","Ectoine synthase"]],"b":[["NCBITaxon%3A189918","Mycobacterium sp. KMS"]]},{"id":"NCBITaxon:1899563","l":"Candidatus Venteria ishoeyi","na":1,"nb":1,"a":[["TED%3AAF-A0A1H6FHC1-F1-model_v4_TED02","TED novel fold AF-A0A1H6FHC1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1899563","Candidatus Venteria ishoeyi"]]},{"id":"NCBITaxon:190195","l":"Kribbella antibiotica","na":1,"nb":1,"a":[["TED%3AAF-A0A4R4YYU0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R4YYU0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A190195","Kribbella antibiotica"]]},{"id":"NCBITaxon:190386","l":"Agrobacterium tumefaciens (strain 15955)","na":1,"nb":1,"a":[["Pfam%3APF19443","DAHL domain"]],"b":[["NCBITaxon%3A190386","Agrobacterium tumefaciens (strain 15955)"]]},{"id":"NCBITaxon:1904462","l":"Stenotrophomonas sp. BIIR7","na":1,"nb":1,"a":[["TED%3AAF-A0A1E7RPY0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E7RPY0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1904462","Stenotrophomonas sp. BIIR7"]]},{"id":"NCBITaxon:1904757","l":"Burkholderia puraquae","na":1,"nb":1,"a":[["TED%3AAF-A0A1X1PMY2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X1PMY2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1904757","Burkholderia puraquae"]]},{"id":"NCBITaxon:1904863","l":"Micrococcaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A851HKR4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A851HKR4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1904863","Micrococcaceae bacterium"]]},{"id":"NCBITaxon:1904962","l":"Corynebacterium sp. CNJ-954","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q9VKJ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q9VKJ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1904962","Corynebacterium sp. CNJ-954"]]},{"id":"NCBITaxon:1904966","l":"Ornithinimicrobium sp. CNJ-824","na":1,"nb":1,"a":[["TED%3AAF-A0A1U7MPL4-F1-model_v4_TED02","TED novel fold AF-A0A1U7MPL4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1904966","Ornithinimicrobium sp. CNJ-824"]]},{"id":"NCBITaxon:1904967","l":"Pseudonocardia sp. CNS-004","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q9RYV1-F1-model_v4_TED01","TED novel fold AF-A0A1Q9RYV1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1904967","Pseudonocardia sp. CNS-004"]]},{"id":"NCBITaxon:1905142","l":"Amycolatopsis vastitatis","na":1,"nb":1,"a":[["TED%3AAF-A0A229SUX4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A229SUX4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1905142","Amycolatopsis vastitatis"]]},{"id":"NCBITaxon:1905289","l":"Rhodococcus sp. 1163","na":1,"nb":1,"a":[["TED%3AAF-A0A1X0U5H7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X0U5H7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1905289","Rhodococcus sp. 1163"]]},{"id":"NCBITaxon:1905359","l":"marine bacterium AO1-C","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q3GHF7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3GHF7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1905359","marine bacterium AO1-C"]]},{"id":"NCBITaxon:1905676","l":"Glaciecola sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A348MZQ3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A348MZQ3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1905676","Glaciecola sp."]]},{"id":"NCBITaxon:1906667","l":"Methanomassiliicoccales archaeon","na":1,"nb":1,"a":[["TED%3AAF-A0A523YEA2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A523YEA2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1906667","Methanomassiliicoccales archaeon"]]},{"id":"NCBITaxon:1906740","l":"Streptomyces sp. CC53","na":1,"nb":1,"a":[["TED%3AAF-A0A1S2K907-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S2K907-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1906740","Streptomyces sp. CC53"]]},{"id":"NCBITaxon:1907121","l":"Candidatus Rickettsia muridii","na":1,"nb":1,"a":[["TED%3AAF-A0A2H4FH04-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H4FH04-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1907121","Candidatus Rickettsia muridii"]]},{"id":"NCBITaxon:1907202","l":"Roseobacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2E9YXC7-F1-model_v4_TED01","TED novel fold AF-A0A2E9YXC7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1907202","Roseobacter sp."]]},{"id":"NCBITaxon:1907219","l":"Piptocephalis cylindrospora","na":1,"nb":1,"a":[["TED%3AAF-A0A4P9Y4Y0-F1-model_v4_TED02","TED novel fold AF-A0A4P9Y4Y0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1907219","Piptocephalis cylindrospora"]]},{"id":"NCBITaxon:1907403","l":"Pseudacidovorax sp. RU35E","na":1,"nb":1,"a":[["TED%3AAF-A0A1N6WQ52-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1N6WQ52-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1907403","Pseudacidovorax sp. RU35E"]]},{"id":"NCBITaxon:1907408","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1N6S5V1-F1-model_v4_TED01","TED novel fold AF-A0A1N6S5V1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1907408","Allobosea sp. TND4EK4"]]},{"id":"NCBITaxon:1907413","l":"Rhizobium sp. RU33A","na":1,"nb":1,"a":[["TED%3AAF-A0A1N6PUX0-F1-model_v4_TED01","TED novel fold AF-A0A1N6PUX0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1907413","Rhizobium sp. RU33A"]]},{"id":"NCBITaxon:1907575","l":"Jatrophihabitans sp. GAS493","na":1,"nb":1,"a":[["TED%3AAF-A0A286EQ27-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A286EQ27-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1907575","Jatrophihabitans sp. GAS493"]]},{"id":"NCBITaxon:1908224","l":"Sphingopyxis sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2G2D229-F1-model_v4_TED01","TED novel fold AF-A0A2G2D229-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1908224","Sphingopyxis sp."]]},{"id":"NCBITaxon:1908236","l":"Hymenobacter glacialis","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1T1A8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G1T1A8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1908236","Hymenobacter glacialis"]]},{"id":"NCBITaxon:1908241","l":"Pedobacter petrophilus","na":1,"nb":1,"a":[["TED%3AAF-A0A7K0G656-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K0G656-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1908241","Pedobacter petrophilus"]]},{"id":"NCBITaxon:1909299","l":"Blastomonas sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2D6H5R0-F1-model_v4_TED03","TED novel fold AF-A0A2D6H5R0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1909299","Blastomonas sp."]]},{"id":"NCBITaxon:1910","l":"Streptomyces griseosporeus","na":1,"nb":1,"a":[["Pfam%3APF01356","Alpha amylase inhibitor"]],"b":[["NCBITaxon%3A1910","Streptomyces griseosporeus"]]},{"id":"NCBITaxon:1910957","l":"Synechococcus sp. Lanier","na":1,"nb":1,"a":[["TED%3AAF-A0A251Z8Q7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A251Z8Q7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1910957","Synechococcus sp. Lanier"]]},{"id":"NCBITaxon:1911175","l":"Amycolatopsis sp. BJA-103","na":1,"nb":1,"a":[["TED%3AAF-A0A2N8MN42-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2N8MN42-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1911175","Amycolatopsis sp. BJA-103"]]},{"id":"NCBITaxon:1911683","l":"Tenericutes bacterium MZ-XQ","na":1,"nb":1,"a":[["TED%3AAF-A0A2K9AA77-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2K9AA77-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1911683","Tenericutes bacterium MZ-XQ"]]},{"id":"NCBITaxon:1911685","l":"Methanobacterium sp. MZ-A1","na":1,"nb":1,"a":[["TED%3AAF-A0A2H4VJL3-F1-model_v4_TED01","TED novel fold AF-A0A2H4VJL3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1911685","Methanobacterium sp. MZ-A1"]]},{"id":"NCBITaxon:1912246","l":"Seonamhaeicola marinus","na":1,"nb":1,"a":[["TED%3AAF-A0A5D0HN32-F1-model_v4_TED02","TED novel fold AF-A0A5D0HN32-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1912246","Seonamhaeicola marinus"]]},{"id":"NCBITaxon:1913460","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6V040-F1-model_v4_TED01","TED novel fold AF-A0A1Q6V040-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1913460","Candidatus Melainabacteria bacterium LEY3_CP_29_8"]]},{"id":"NCBITaxon:191390","l":"Pseudomonas palleroniana","na":1,"nb":1,"a":[["TED%3AAF-A0A1H5NR40-F1-model_v4_TED01","TED novel fold AF-A0A1H5NR40-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A191390","Pseudomonas palleroniana"]]},{"id":"NCBITaxon:191391","l":"Pseudomonas salomonii","na":1,"nb":1,"a":[["TED%3AAF-A0A3M4QF91-F1-model_v4_TED04","TED novel fold AF-A0A3M4QF91-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A191391","Pseudomonas salomonii"]]},{"id":"NCBITaxon:1914242","l":"Gemmata sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7C1PH33-F1-model_v4_TED03","TED novel fold AF-A0A7C1PH33-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1914242","Gemmata sp."]]},{"id":"NCBITaxon:1914243","l":"Citrobacter europaeus","na":1,"nb":1,"a":[["TED%3AAF-A0A811XLH7-F1-model_v4_TED03","TED novel fold AF-A0A811XLH7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1914243","Citrobacter europaeus"]]},{"id":"NCBITaxon:1914409","l":"Salibaculum griseiflavum","na":1,"nb":1,"a":[["TED%3AAF-A0A2V1P9V2-F1-model_v4_TED01","TED novel fold AF-A0A2V1P9V2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1914409","Salibaculum griseiflavum"]]},{"id":"NCBITaxon:1914755","l":"Nocardioides thalensis","na":1,"nb":1,"a":[["TED%3AAF-A0A853C687-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A853C687-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1914755","Nocardioides thalensis"]]},{"id":"NCBITaxon:1914933","l":"Siminovitchia terrae","na":1,"nb":1,"a":[["TED%3AAF-A0A429X9P4-F1-model_v4_TED03","TED novel fold AF-A0A429X9P4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1914933","Siminovitchia terrae"]]},{"id":"NCBITaxon:1915004","l":"Streptococcus sp. 'caviae'","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q8RKH2-F1-model_v4_TED01","TED novel fold AF-A0A1Q8RKH2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1915004","Streptococcus sp. 'caviae'"]]},{"id":"NCBITaxon:1916068","l":"Methylococcaceae bacterium CS3","na":1,"nb":1,"a":[["TED%3AAF-A0A6I7WL18-F1-model_v4_TED01","TED novel fold AF-A0A6I7WL18-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1916068","Methylococcaceae bacterium CS3"]]},{"id":"NCBITaxon:1916216","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A292RNI7-F1-model_v4_TED01","TED novel fold AF-A0A292RNI7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1916216","Candidatus Gastranaerophilales bacterium HUM_11"]]},{"id":"NCBITaxon:1916217","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A292QPX9-F1-model_v4_TED02","TED novel fold AF-A0A292QPX9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1916217","Candidatus Gastranaerophilales bacterium HUM_3"]]},{"id":"NCBITaxon:1916231","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A292S444-F1-model_v4_TED02","TED novel fold AF-A0A292S444-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1916231","Candidatus Gastranaerophilales bacterium HUM_18"]]},{"id":"NCBITaxon:1917166","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2D2Q459-F1-model_v4_TED01","TED novel fold AF-A0A2D2Q459-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1917166","Parathermosynechococcus lividus PCC 6715"]]},{"id":"NCBITaxon:1917525","l":"Sporomusaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A402BN05-F1-model_v4_TED01","TED novel fold AF-A0A402BN05-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1917525","Sporomusaceae bacterium"]]},{"id":"NCBITaxon:1917820","l":"Leptospira johnsonii","na":1,"nb":1,"a":[["TED%3AAF-A0A2P2D2G2-F1-model_v4_TED02","TED novel fold AF-A0A2P2D2G2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1917820","Leptospira johnsonii"]]},{"id":"NCBITaxon:1918945","l":"Vibrio spartinae","na":1,"nb":1,"a":[["TED%3AAF-A0A7D8BB99-F1-model_v4_TED01","TED novel fold AF-A0A7D8BB99-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1918945","Vibrio spartinae"]]},{"id":"NCBITaxon:1919086","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2T2RB21-F1-model_v4_TED01","TED novel fold AF-A0A2T2RB21-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1919086","Actinobacteria bacterium QS_8_72_14"]]},{"id":"NCBITaxon:1919126","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2T2RLN8-F1-model_v4_TED03","TED novel fold AF-A0A2T2RLN8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1919126","Cyanobacteria bacterium QH_9_48_43"]]},{"id":"NCBITaxon:1919144","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2T2R716-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2T2R716-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1919144","Cyanobacteria bacterium SW_9_44_58"]]},{"id":"NCBITaxon:1919156","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2R6G3A4-F1-model_v4_TED01","TED novel fold AF-A0A2R6G3A4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1919156","Halobacteriales archaeon QH_6_68_27"]]},{"id":"NCBITaxon:1919158","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2R6ESL1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2R6ESL1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1919158","Halobacteriales archaeon QH_7_66_36"]]},{"id":"NCBITaxon:1919161","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2R6E5N7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2R6E5N7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1919161","Halobacteriales archaeon QH_7_69_31"]]},{"id":"NCBITaxon:1919167","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2R6EJB1-F1-model_v4_TED01","TED novel fold AF-A0A2R6EJB1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1919167","Halobacteriales archaeon QS_1_67_19"]]},{"id":"NCBITaxon:1919169","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2R6G619-F1-model_v4_TED01","TED novel fold AF-A0A2R6G619-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1919169","Halobacteriales archaeon QS_1_68_20"]]},{"id":"NCBITaxon:1919175","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2R6GE67-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2R6GE67-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1919175","Halobacteriales archaeon QS_4_69_225"]]},{"id":"NCBITaxon:1919177","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2R6HEC8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2R6HEC8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1919177","Halobacteriales archaeon QS_4_69_34"]]},{"id":"NCBITaxon:1919188","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2R6JPZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2R6JPZ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1919188","Halobacteriales archaeon QS_8_69_73"]]},{"id":"NCBITaxon:1919189","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2R6KHY7-F1-model_v4_TED02","TED novel fold AF-A0A2R6KHY7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1919189","Halobacteriales archaeon QS_9_67_15"]]},{"id":"NCBITaxon:1919201","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2R6M034-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2R6M034-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1919201","Halobacteriales archaeon SW_6_65_15"]]},{"id":"NCBITaxon:1919204","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2R6LXX7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2R6LXX7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1919204","Halobacteriales archaeon SW_7_68_16"]]},{"id":"NCBITaxon:1919224","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2T2R4Y8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T2R4Y8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1919224","Parcubacteria group bacterium SW_4_46_8"]]},{"id":"NCBITaxon:1919232","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2P6VVV1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2P6VVV1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1919232","Thermoplasmatales archaeon SW_10_69_26"]]},{"id":"NCBITaxon:1920245","l":"Kangiella sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2G2KWK6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G2KWK6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1920245","Kangiella sp."]]},{"id":"NCBITaxon:1920421","l":"Paenibacillus sp. FSL H7-0331","na":1,"nb":1,"a":[["TED%3AAF-A0A1R1CAA1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1R1CAA1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1920421","Paenibacillus sp. FSL H7-0331"]]},{"id":"NCBITaxon:1920490","l":"Phormidesmis priestleyi ULC007","na":1,"nb":1,"a":[["TED%3AAF-A0A2T1DEI0-F1-model_v4_TED01","TED novel fold AF-A0A2T1DEI0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1920490","Phormidesmis priestleyi ULC007"]]},{"id":"NCBITaxon:1920889","l":"Arthrobacter sp. SW1","na":1,"nb":1,"a":[["TED%3AAF-A0A1E8FS11-F1-model_v4_TED01","TED novel fold AF-A0A1E8FS11-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1920889","Arthrobacter sp. SW1"]]},{"id":"NCBITaxon:1921","l":"Streptomyces olivaceoviridis","na":1,"nb":1,"a":[["Pfam%3APF01356","Alpha amylase inhibitor"]],"b":[["NCBITaxon%3A1921","Streptomyces olivaceoviridis"]]},{"id":"NCBITaxon:1923971","l":"Salinibacter sp. 10B","na":1,"nb":1,"a":[["TED%3AAF-A0A2P6C0S6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P6C0S6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1923971","Salinibacter sp. 10B"]]},{"id":"NCBITaxon:1925020","l":"Bacillus swezeyi","na":1,"nb":1,"a":[["TED%3AAF-A0A1R1S0T5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1R1S0T5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1925020","Bacillus swezeyi"]]},{"id":"NCBITaxon:1925021","l":"Bacillus haynesii","na":1,"nb":1,"a":[["TED%3AAF-A0A1R1RXP1-F1-model_v4_TED01","TED novel fold AF-A0A1R1RXP1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1925021","Bacillus haynesii"]]},{"id":"NCBITaxon:1925591","l":"Roseofilum reptotaenium AO1-A","na":1,"nb":1,"a":[["TED%3AAF-A0A1L9QV17-F1-model_v4_TED03","TED novel fold AF-A0A1L9QV17-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1925591","Roseofilum reptotaenium AO1-A"]]},{"id":"NCBITaxon:1926630","l":"Pseudoblastomonas halimionae","na":1,"nb":1,"a":[["TED%3AAF-A0A6I4U4Z5-F1-model_v4_TED03","TED novel fold AF-A0A6I4U4Z5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1926630","Pseudoblastomonas halimionae"]]},{"id":"NCBITaxon:1927958","l":"Dyella monticola","na":1,"nb":1,"a":[["TED%3AAF-A0A370WRE3-F1-model_v4_TED03","TED novel fold AF-A0A370WRE3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1927958","Dyella monticola"]]},{"id":"NCBITaxon:1928574","l":"Aliidiomarina soli","na":1,"nb":1,"a":[["TED%3AAF-A0A432WGJ7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A432WGJ7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1928574","Aliidiomarina soli"]]},{"id":"NCBITaxon:1930276","l":"Adhaeretor mobilis","na":1,"nb":1,"a":[["TED%3AAF-A0A517MS66-F1-model_v4_TED02","TED novel fold AF-A0A517MS66-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1930276","Adhaeretor mobilis"]]},{"id":"NCBITaxon:1930277","l":"Rosistilla ulvae","na":1,"nb":1,"a":[["TED%3AAF-A0A517M701-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A517M701-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1930277","Rosistilla ulvae"]]},{"id":"NCBITaxon:1930536","l":"Sphingomonadaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A520X4L1-F1-model_v4_TED02","TED novel fold AF-A0A520X4L1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1930536","Sphingomonadaceae bacterium"]]},{"id":"NCBITaxon:1931228","l":"Christiangramia sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2D8KSS7-F1-model_v4_TED03","TED novel fold AF-A0A2D8KSS7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1931228","Christiangramia sp."]]},{"id":"NCBITaxon:1932","l":"Streptomyces tendae","na":1,"nb":1,"a":[["Pfam%3APF01356","Alpha amylase inhibitor"]],"b":[["NCBITaxon%3A1932","Streptomyces tendae"]]},{"id":"NCBITaxon:1932694","l":"bacterium F16","na":1,"nb":1,"a":[["TED%3AAF-A0A202DPI2-F1-model_v4_TED03","TED novel fold AF-A0A202DPI2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1932694","bacterium F16"]]},{"id":"NCBITaxon:1932698","l":"bacterium F11","na":1,"nb":1,"a":[["TED%3AAF-A0A202DHL9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A202DHL9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1932698","bacterium F11"]]},{"id":"NCBITaxon:1932703","l":"bacterium I07","na":1,"nb":1,"a":[["TED%3AAF-A0A202DS02-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A202DS02-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1932703","bacterium I07"]]},{"id":"NCBITaxon:1932778","l":"Mucilaginibacter limnophilus","na":1,"nb":1,"a":[["TED%3AAF-A0A3S2Y3R2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S2Y3R2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1932778","Mucilaginibacter limnophilus"]]},{"id":"NCBITaxon:1933219","l":"Diaphorobacter sp. LR2014-1","na":1,"nb":1,"a":[["TED%3AAF-A0A2S4KFX0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S4KFX0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1933219","Diaphorobacter sp. LR2014-1"]]},{"id":"NCBITaxon:1933880","l":"Glutamicibacter halophytocola","na":1,"nb":1,"a":[["TED%3AAF-A0A5B8IKN3-F1-model_v4_TED01","TED novel fold AF-A0A5B8IKN3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1933880","Glutamicibacter halophytocola"]]},{"id":"NCBITaxon:1933926","l":"Methylococcaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y4XTX6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y4XTX6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1933926","Methylococcaceae bacterium"]]},{"id":"NCBITaxon:1933929","l":"Synechocystis sp. CACIAM 05","na":1,"nb":1,"a":[["TED%3AAF-A0A6P1VJ80-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6P1VJ80-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1933929","Synechocystis sp. CACIAM 05"]]},{"id":"NCBITaxon:1934250","l":"Desulfobulbaceae bacterium A2","na":1,"nb":1,"a":[["TED%3AAF-A0A1W9M0B5-F1-model_v4_TED01","TED novel fold AF-A0A1W9M0B5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1934250","Desulfobulbaceae bacterium A2"]]},{"id":"NCBITaxon:1934251","l":"Verrucomicrobia bacterium A1","na":1,"nb":1,"a":[["TED%3AAF-A0A1W9LED0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W9LED0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1934251","Verrucomicrobia bacterium A1"]]},{"id":"NCBITaxon:1934309","l":"Alkalinema sp. CACIAM 70d","na":1,"nb":1,"a":[["TED%3AAF-A0A251W9I5-F1-model_v4_TED01","TED novel fold AF-A0A251W9I5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1934309","Alkalinema sp. CACIAM 70d"]]},{"id":"NCBITaxon:1934400","l":"Pseudorhodobacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A5C7U5I6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7U5I6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1934400","Pseudorhodobacter sp."]]},{"id":"NCBITaxon:1936029","l":"Mycobacterium sp. MS1601","na":1,"nb":1,"a":[["TED%3AAF-A0A1P8XC76-F1-model_v4_TED01","TED novel fold AF-A0A1P8XC76-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1936029","Mycobacterium sp. MS1601"]]},{"id":"NCBITaxon:1936990","l":"Nitrospira sp. KM1","na":1,"nb":1,"a":[["TED%3AAF-A0A679I6E2-F1-model_v4_TED01","TED novel fold AF-A0A679I6E2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1936990","Nitrospira sp. KM1"]]},{"id":"NCBITaxon:1938607","l":"Sphingomonas sp. LM7","na":1,"nb":1,"a":[["TED%3AAF-A0A1S6FPE2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S6FPE2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1938607","Sphingomonas sp. LM7"]]},{"id":"NCBITaxon:1938609","l":"Flavobacterium sp. LM4","na":1,"nb":1,"a":[["TED%3AAF-A0A1T1BT57-F1-model_v4_TED01","TED novel fold AF-A0A1T1BT57-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1938609","Flavobacterium sp. LM4"]]},{"id":"NCBITaxon:1938619","l":"Thalassoglobus neptunius","na":1,"nb":1,"a":[["TED%3AAF-A0A5C5WLP6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C5WLP6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1938619","Thalassoglobus neptunius"]]},{"id":"NCBITaxon:1938744","l":"Bacillus sp. V-88","na":1,"nb":1,"a":[["TED%3AAF-A0A1U6JWX2-F1-model_v4_TED01","TED novel fold AF-A0A1U6JWX2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1938744","Bacillus sp. V-88"]]},{"id":"NCBITaxon:1938745","l":"Blastococcus haudaquaticus","na":1,"nb":1,"a":[["TED%3AAF-A0A286GU62-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A286GU62-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1938745","Blastococcus haudaquaticus"]]},{"id":"NCBITaxon:1938796","l":"Paraburkholderia sp. BL10I2N1","na":1,"nb":1,"a":[["TED%3AAF-A0A4R6F5Z7-F1-model_v4_TED01","TED novel fold AF-A0A4R6F5Z7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1938796","Paraburkholderia sp. BL10I2N1"]]},{"id":"NCBITaxon:1938801","l":"Paraburkholderia sp. BL21I4N1","na":1,"nb":1,"a":[["TED%3AAF-A0A2S8RQH9-F1-model_v4_TED02","TED novel fold AF-A0A2S8RQH9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1938801","Paraburkholderia sp. BL21I4N1"]]},{"id":"NCBITaxon:1938807","l":"Paraburkholderia sp. BL6669N2","na":1,"nb":1,"a":[["TED%3AAF-A0A3E0CAW2-F1-model_v4_TED02","TED novel fold AF-A0A3E0CAW2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1938807","Paraburkholderia sp. BL6669N2"]]},{"id":"NCBITaxon:1938830","l":"Streptomyces sp. 1114.5","na":1,"nb":1,"a":[["TED%3AAF-A0A495SRF0-F1-model_v4_TED01","TED novel fold AF-A0A495SRF0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1938830","Streptomyces sp. 1114.5"]]},{"id":"NCBITaxon:1938836","l":"Streptomyces sp. 2114.4","na":1,"nb":1,"a":[["TED%3AAF-A0A212U7M9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A212U7M9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1938836","Streptomyces sp. 2114.4"]]},{"id":"NCBITaxon:1938846","l":"Streptomyces sp. 3212.3","na":1,"nb":1,"a":[["TED%3AAF-A0A3D9QET1-F1-model_v4_TED03","TED novel fold AF-A0A3D9QET1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1938846","Streptomyces sp. 3212.3"]]},{"id":"NCBITaxon:1938847","l":"Streptomyces sp. 4121.5","na":1,"nb":1,"a":[["TED%3AAF-A0A2N0FC69-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N0FC69-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1938847","Streptomyces sp. 4121.5"]]},{"id":"NCBITaxon:1938870","l":"Candidatus Pantoea floridensis","na":1,"nb":1,"a":[["TED%3AAF-A0A286BLC6-F1-model_v4_TED02","TED novel fold AF-A0A286BLC6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1938870","Candidatus Pantoea floridensis"]]},{"id":"NCBITaxon:1938886","l":"Fastidiosipila sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A847BPI8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A847BPI8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1938886","Fastidiosipila sp."]]},{"id":"NCBITaxon:1940525","l":"Labilibaculum manganireducens","na":1,"nb":1,"a":[["TED%3AAF-A0A2N3IGB8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3IGB8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1940525","Labilibaculum manganireducens"]]},{"id":"NCBITaxon:1940526","l":"Labilibaculum filiforme","na":1,"nb":1,"a":[["TED%3AAF-A0A2N3HUZ8-F1-model_v4_TED05","TED novel fold AF-A0A2N3HUZ8-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1940526","Labilibaculum filiforme"]]},{"id":"NCBITaxon:1940690","l":"Pseudidiomarina andamanensis","na":1,"nb":1,"a":[["TED%3AAF-A0A6I6DCU6-F1-model_v4_TED01","TED novel fold AF-A0A6I6DCU6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1940690","Pseudidiomarina andamanensis"]]},{"id":"NCBITaxon:1941349","l":"Sedimentisphaera salicampi","na":1,"nb":1,"a":[["TED%3AAF-A0A1W6LIY2-F1-model_v4_TED02","TED novel fold AF-A0A1W6LIY2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1941349","Sedimentisphaera salicampi"]]},{"id":"NCBITaxon:1943579","l":"Oribacterium sp. C9","na":1,"nb":1,"a":[["TED%3AAF-A0A1S9BTM3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1S9BTM3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1943579","Oribacterium sp. C9"]]},{"id":"NCBITaxon:1943583","l":"Candidatus Synechococcus spongiarum LMB bulk15N","na":1,"nb":1,"a":[["TED%3AAF-A0A1T1D6G1-F1-model_v4_TED01","TED novel fold AF-A0A1T1D6G1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1943583","Candidatus Synechococcus spongiarum LMB bulk15N"]]},{"id":"NCBITaxon:1945577","l":"Methanosphaera sp. rholeuAM270","na":1,"nb":1,"a":[["TED%3AAF-A0A328SCG4-F1-model_v4_TED01","TED novel fold AF-A0A328SCG4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1945577","Methanosphaera sp. rholeuAM270"]]},{"id":"NCBITaxon:1945581","l":"Chryseobacterium mucoviscidosis","na":1,"nb":1,"a":[["TED%3AAF-A0A202BWT4-F1-model_v4_TED01","TED novel fold AF-A0A202BWT4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1945581","Chryseobacterium mucoviscidosis"]]},{"id":"NCBITaxon:1945595","l":"Methanosarcinaceae archaeon","na":1,"nb":1,"a":[["TED%3AAF-A0A7J4PFN5-F1-model_v4_TED02","TED novel fold AF-A0A7J4PFN5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1945595","Methanosarcinaceae archaeon"]]},{"id":"NCBITaxon:1945887","l":"Prevotellaceae bacterium MN60","na":1,"nb":1,"a":[["TED%3AAF-A0A239QYE6-F1-model_v4_TED02","TED novel fold AF-A0A239QYE6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1945887","Prevotellaceae bacterium MN60"]]},{"id":"NCBITaxon:1945892","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A286IKU0-F1-model_v4_TED03","TED novel fold AF-A0A286IKU0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1945892","Spirosomataceae bacterium TFI 002"]]},{"id":"NCBITaxon:1949069","l":"Pseudoduganella buxea","na":1,"nb":1,"a":[["TED%3AAF-A0A6I3T0T8-F1-model_v4_TED01","TED novel fold AF-A0A6I3T0T8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1949069","Pseudoduganella buxea"]]},{"id":"NCBITaxon:1953771","l":"Chelatococcus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2W7APJ3-F1-model_v4_TED01","TED novel fold AF-A0A2W7APJ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1953771","Chelatococcus sp."]]},{"id":"NCBITaxon:1954172","l":"Calothrix sp. NIES-2100","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z4GTF8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z4GTF8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1954172","Calothrix sp. NIES-2100"]]},{"id":"NCBITaxon:1955620","l":"Hymenobacter sp. CRA2","na":1,"nb":1,"a":[["TED%3AAF-A0A1S9AVK6-F1-model_v4_TED01","TED novel fold AF-A0A1S9AVK6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1955620","Hymenobacter sp. CRA2"]]},{"id":"NCBITaxon:1955714","l":"Cohnella sp. CIP 111063","na":1,"nb":1,"a":[["TED%3AAF-A0A231RF01-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A231RF01-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1955714","Cohnella sp. CIP 111063"]]},{"id":"NCBITaxon:1955775","l":"Emergomyces africanus","na":1,"nb":1,"a":[["TED%3AAF-A0A1B7P984-F1-model_v4_TED01","TED novel fold AF-A0A1B7P984-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1955775","Emergomyces africanus"]]},{"id":"NCBITaxon:1956161","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4QRE7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V4QRE7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1956161","Planctomycetales bacterium 4484_113"]]},{"id":"NCBITaxon:1958773","l":"Pseudomonas sp. PIC25","na":1,"nb":1,"a":[["TED%3AAF-A0A2A2E902-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A2E902-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1958773","Pseudomonas sp. PIC25"]]},{"id":"NCBITaxon:1958945","l":"Aurantiacibacter aquimixticola","na":1,"nb":1,"a":[["TED%3AAF-A0A419RSL8-F1-model_v4_TED02","TED novel fold AF-A0A419RSL8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1958945","Aurantiacibacter aquimixticola"]]},{"id":"NCBITaxon:195913","l":"Loktanella salsilacus","na":1,"nb":1,"a":[["TED%3AAF-A0A1I4CVX6-F1-model_v4_TED03","TED novel fold AF-A0A1I4CVX6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A195913","Loktanella salsilacus"]]},{"id":"NCBITaxon:1960125","l":"Parendozoicomonas haliclonae","na":1,"nb":1,"a":[["TED%3AAF-A0A1X7ARE0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X7ARE0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1960125","Parendozoicomonas haliclonae"]]},{"id":"NCBITaxon:1960126","l":"Salmonella enterica subsp. enterica serovar Wilhelmsburg","na":1,"nb":1,"a":[["TED%3AAF-A0A659QGA1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A659QGA1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1960126","Salmonella enterica subsp. enterica serovar Wilhelmsburg"]]},{"id":"NCBITaxon:1960156","l":"Abditibacterium utsteinense","na":1,"nb":1,"a":[["TED%3AAF-A0A2S8SU22-F1-model_v4_TED02","TED novel fold AF-A0A2S8SU22-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1960156","Abditibacterium utsteinense"]]},{"id":"NCBITaxon:1960825","l":"Acinetobacter sp. MF4642","na":1,"nb":1,"a":[["TED%3AAF-A0A1T1JB81-F1-model_v4_TED01","TED novel fold AF-A0A1T1JB81-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1960825","Acinetobacter sp. MF4642"]]},{"id":"NCBITaxon:1960827","l":"Pseudomonas sp. MF4836","na":1,"nb":1,"a":[["TED%3AAF-A0A1T1IBN9-F1-model_v4_TED01","TED novel fold AF-A0A1T1IBN9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1960827","Pseudomonas sp. MF4836"]]},{"id":"NCBITaxon:1960830","l":"Mesonia sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2D8UMY7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D8UMY7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1960830","Mesonia sp."]]},{"id":"NCBITaxon:1960881","l":"Runella sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A3C0UPU2-F1-model_v4_TED01","TED novel fold AF-A0A3C0UPU2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1960881","Runella sp."]]},{"id":"NCBITaxon:196109","l":"Microdochium bolleyi","na":1,"nb":1,"a":[["TED%3AAF-A0A136IX34-F1-model_v4_TED02","TED novel fold AF-A0A136IX34-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A196109","Microdochium bolleyi"]]},{"id":"NCBITaxon:196162","l":"Nocardioides sp. JS614","na":1,"nb":1,"a":[["TED%3AAF-A1SFH1-F1-model_v4_TED04","TED highly-symmetric fold AF-A1SFH1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A196162","Nocardioides sp. JS614"]]},{"id":"NCBITaxon:1961706","l":"Mycobacterium sp. AT1","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4Q3C2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1V4Q3C2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1961706","Mycobacterium sp. AT1"]]},{"id":"NCBITaxon:1962","l":"Streptomyces albus G","na":1,"nb":1,"a":[["Pfam%3APF13613","Helix-turn-helix of DDE superfamily endonuclease"]],"b":[["NCBITaxon%3A1962","Streptomyces albus G"]]},{"id":"NCBITaxon:196367","l":"Caballeronia sordidicola","na":1,"nb":1,"a":[["TED%3AAF-A0A7H9UPF1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H9UPF1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A196367","Caballeronia sordidicola"]]},{"id":"NCBITaxon:1964356","l":"Fibrobacter sp. UWB4","na":1,"nb":1,"a":[["TED%3AAF-A0A254S640-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A254S640-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1964356","Fibrobacter sp. UWB4"]]},{"id":"NCBITaxon:1965294","l":"Collinsella sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A3D1WST0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D1WST0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1965294","Collinsella sp."]]},{"id":"NCBITaxon:1965537","l":"Flavonifractor sp. An10","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4WLE4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1Y4WLE4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1965537","Flavonifractor sp. An10"]]},{"id":"NCBITaxon:1965547","l":"Lachnoclostridium sp. An118","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4TVU4-F1-model_v4_TED03","TED novel fold AF-A0A1Y4TVU4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1965547","Lachnoclostridium sp. An118"]]},{"id":"NCBITaxon:1965550","l":"Faecalibacterium sp. An121","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4TDE2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Y4TDE2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1965550","Faecalibacterium sp. An121"]]},{"id":"NCBITaxon:1965558","l":"Flavonifractor sp. An135","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4S482-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y4S482-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965558","Flavonifractor sp. An135"]]},{"id":"NCBITaxon:1965564","l":"Massilimicrobiota sp. An142","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4RBI2-F1-model_v4_TED01","TED novel fold AF-A0A1Y4RBI2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965564","Massilimicrobiota sp. An142"]]},{"id":"NCBITaxon:1965566","l":"Erysipelatoclostridium sp. An15","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4QS30-F1-model_v4_TED01","TED novel fold AF-A0A1Y4QS30-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965566","Erysipelatoclostridium sp. An15"]]},{"id":"NCBITaxon:1965575","l":"Lachnoclostridium sp. An181","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4LAC0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Y4LAC0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1965575","Lachnoclostridium sp. An181"]]},{"id":"NCBITaxon:1965579","l":"Olsenella sp. An188","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4K124-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y4K124-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965579","Olsenella sp. An188"]]},{"id":"NCBITaxon:1965583","l":"Lachnoclostridium sp. An196","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4ISD7-F1-model_v4_TED02","TED novel fold AF-A0A1Y4ISD7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1965583","Lachnoclostridium sp. An196"]]},{"id":"NCBITaxon:1965590","l":"Barnesiella sp. An22","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4GUZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y4GUZ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965590","Barnesiella sp. An22"]]},{"id":"NCBITaxon:1965591","l":"Cloacibacillus sp. An23","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4GGY1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Y4GGY1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1965591","Cloacibacillus sp. An23"]]},{"id":"NCBITaxon:1965603","l":"Blautia sp. An249","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4F359-F1-model_v4_TED01","TED novel fold AF-A0A1Y4F359-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965603","Blautia sp. An249"]]},{"id":"NCBITaxon:1965613","l":"Bacteroides sp. An269","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4EW98-F1-model_v4_TED02","TED novel fold AF-A0A1Y4EW98-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1965613","Bacteroides sp. An269"]]},{"id":"NCBITaxon:1965616","l":"Collinsella sp. An271","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4DSD0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y4DSD0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965616","Collinsella sp. An271"]]},{"id":"NCBITaxon:1965629","l":"Flavonifractor sp. An306","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4CFF8-F1-model_v4_TED01","TED novel fold AF-A0A1Y4CFF8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965629","Flavonifractor sp. An306"]]},{"id":"NCBITaxon:1965634","l":"Flavonifractor sp. An4","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y3Z369-F1-model_v4_TED01","TED novel fold AF-A0A1Y3Z369-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965634","Flavonifractor sp. An4"]]},{"id":"NCBITaxon:1965640","l":"Bacteroides sp. An51A","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y3X5P3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y3X5P3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965640","Bacteroides sp. An51A"]]},{"id":"NCBITaxon:1965646","l":"Barnesiella sp. An55","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y3W911-F1-model_v4_TED01","TED novel fold AF-A0A1Y3W911-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965646","Barnesiella sp. An55"]]},{"id":"NCBITaxon:1965654","l":"Lachnoclostridium sp. An76","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y3TDU7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y3TDU7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965654","Lachnoclostridium sp. An76"]]},{"id":"NCBITaxon:1965664","l":"Flavonifractor sp. An9","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y3RAD2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y3RAD2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965664","Flavonifractor sp. An9"]]},{"id":"NCBITaxon:1965665","l":"Flavonifractor sp. An91","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y3RCN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y3RCN7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965665","Flavonifractor sp. An91"]]},{"id":"NCBITaxon:1966350","l":"Methanococcoides sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A849PVH1-F1-model_v4_TED01","TED novel fold AF-A0A849PVH1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1966350","Methanococcoides sp."]]},{"id":"NCBITaxon:1967","l":"Streptomyces kanamyceticus","na":1,"nb":1,"a":[["Pfam%3APF13579","Glycosyl transferase 4-like domain"]],"b":[["NCBITaxon%3A1967","Streptomyces kanamyceticus"]]},{"id":"NCBITaxon:1967498","l":"Ilumatobacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2E3TVT0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E3TVT0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1967498","Ilumatobacter sp."]]},{"id":"NCBITaxon:1967781","l":"Rhizobium esperanzae","na":1,"nb":1,"a":[["TED%3AAF-A0A7W6W3W3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W6W3W3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1967781","Rhizobium esperanzae"]]},{"id":"NCBITaxon:1967839","l":"Pseudoalteromonas sp. A601","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y5KD00-F1-model_v4_TED04","TED novel fold AF-A0A1Y5KD00-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1967839","Pseudoalteromonas sp. A601"]]},{"id":"NCBITaxon:1969380","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A328M7C9-F1-model_v4_TED02","TED novel fold AF-A0A328M7C9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1969380","Bacillus sp. SRB_336"]]},{"id":"NCBITaxon:1969733","l":"Geothermobacter hydrogeniphilus","na":1,"nb":1,"a":[["TED%3AAF-A0A1X0Y030-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X0Y030-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1969733","Geothermobacter hydrogeniphilus"]]},{"id":"NCBITaxon:1969738","l":"Butyricimonas sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7G2MLY6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7G2MLY6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1969738","Butyricimonas sp."]]},{"id":"NCBITaxon:1970082","l":"Pyrodictium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A833DYK4-F1-model_v4_TED01","TED novel fold AF-A0A833DYK4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970082","Pyrodictium sp."]]},{"id":"NCBITaxon:1970083","l":"Hyperthermus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A432R784-F1-model_v4_TED01","TED novel fold AF-A0A432R784-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970083","Hyperthermus sp."]]},{"id":"NCBITaxon:1970291","l":"Acidiphilium sp. 20-67-58","na":1,"nb":1,"a":[["TED%3AAF-A0A257R2U2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A257R2U2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970291","Acidiphilium sp. 20-67-58"]]},{"id":"NCBITaxon:1970331","l":"Caulobacter sp. 35-67-4","na":1,"nb":1,"a":[["TED%3AAF-A0A258KAX8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A258KAX8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970331","Caulobacter sp. 35-67-4"]]},{"id":"NCBITaxon:1970334","l":"Chthoniobacter sp. 12-60-6","na":1,"nb":1,"a":[["TED%3AAF-A0A257XBV1-F1-model_v4_TED01","TED novel fold AF-A0A257XBV1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970334","Chthoniobacter sp. 12-60-6"]]},{"id":"NCBITaxon:1970383","l":"Halothiobacillus sp. 20-53-49","na":1,"nb":1,"a":[["TED%3AAF-A0A257QD04-F1-model_v4_TED01","TED novel fold AF-A0A257QD04-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970383","Halothiobacillus sp. 20-53-49"]]},{"id":"NCBITaxon:1970386","l":"Halothiobacillus sp. 28-55-5","na":1,"nb":1,"a":[["TED%3AAF-A0A258QIP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A258QIP8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970386","Halothiobacillus sp. 28-55-5"]]},{"id":"NCBITaxon:1970390","l":"Hyphomicrobium sp. 32-62-53","na":1,"nb":1,"a":[["TED%3AAF-A0A258L5X3-F1-model_v4_TED01","TED novel fold AF-A0A258L5X3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970390","Hyphomicrobium sp. 32-62-53"]]},{"id":"NCBITaxon:1970400","l":"Microbacterium sp. 14-71-5","na":1,"nb":1,"a":[["TED%3AAF-A0A259SVI0-F1-model_v4_TED02","TED novel fold AF-A0A259SVI0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1970400","Microbacterium sp. 14-71-5"]]},{"id":"NCBITaxon:1970406","l":"Novosphingobium sp. 17-62-19","na":1,"nb":1,"a":[["TED%3AAF-A0A259E3M0-F1-model_v4_TED01","TED novel fold AF-A0A259E3M0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970406","Novosphingobium sp. 17-62-19"]]},{"id":"NCBITaxon:1970407","l":"Novosphingobium sp. 17-62-8","na":1,"nb":1,"a":[["TED%3AAF-A0A259C6J9-F1-model_v4_TED01","TED novel fold AF-A0A259C6J9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970407","Novosphingobium sp. 17-62-8"]]},{"id":"NCBITaxon:1970418","l":"Polaromonas sp. 35-63-35","na":1,"nb":1,"a":[["TED%3AAF-A0A258NST0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A258NST0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970418","Polaromonas sp. 35-63-35"]]},{"id":"NCBITaxon:1970432","l":"Sphingomonas sp. 28-62-11","na":1,"nb":1,"a":[["TED%3AAF-A0A258R9E4-F1-model_v4_TED01","TED novel fold AF-A0A258R9E4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970432","Sphingomonas sp. 28-62-11"]]},{"id":"NCBITaxon:1970433","l":"Sphingomonas sp. 28-62-20","na":1,"nb":1,"a":[["TED%3AAF-A0A258SDY8-F1-model_v4_TED01","TED novel fold AF-A0A258SDY8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970433","Sphingomonas sp. 28-62-20"]]},{"id":"NCBITaxon:1970434","l":"Sphingomonas sp. 28-63-12","na":1,"nb":1,"a":[["TED%3AAF-A0A258RQ90-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A258RQ90-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970434","Sphingomonas sp. 28-63-12"]]},{"id":"NCBITaxon:1970486","l":"Acidobacteria bacterium 37-65-4","na":1,"nb":1,"a":[["TED%3AAF-A0A257V9L0-F1-model_v4_TED04","TED novel fold AF-A0A257V9L0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1970486","Acidobacteria bacterium 37-65-4"]]},{"id":"NCBITaxon:1970489","l":"Actinobacteria bacterium 21-73-9","na":1,"nb":1,"a":[["TED%3AAF-A0A257RE24-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A257RE24-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970489","Actinobacteria bacterium 21-73-9"]]},{"id":"NCBITaxon:1970490","l":"Alphaproteobacteria bacterium 16-39-46","na":1,"nb":1,"a":[["TED%3AAF-A0A258XBG1-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A258XBG1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1970490","Alphaproteobacteria bacterium 16-39-46"]]},{"id":"NCBITaxon:1970510","l":"Gallionellales bacterium 24-53-125","na":1,"nb":1,"a":[["TED%3AAF-A0A258ZAY9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A258ZAY9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1970510","Gallionellales bacterium 24-53-125"]]},{"id":"NCBITaxon:1970514","l":"Gemmatimonadetes bacterium 21-71-4","na":1,"nb":1,"a":[["TED%3AAF-A0A257RPC9-F1-model_v4_TED01","TED novel fold AF-A0A257RPC9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970514","Gemmatimonadetes bacterium 21-71-4"]]},{"id":"NCBITaxon:1970532","l":"Ignavibacteriae bacterium 37-53-5","na":1,"nb":1,"a":[["TED%3AAF-A0A257TMI8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A257TMI8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1970532","Ignavibacteriae bacterium 37-53-5"]]},{"id":"NCBITaxon:1970533","l":"Methylophilaceae bacterium 17-43-7","na":1,"nb":1,"a":[["TED%3AAF-A0A258ZSQ9-F1-model_v4_TED01","TED novel fold AF-A0A258ZSQ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970533","Methylophilaceae bacterium 17-43-7"]]},{"id":"NCBITaxon:1970538","l":"Methylophilales bacterium 28-44-11","na":1,"nb":1,"a":[["TED%3AAF-A0A258Q043-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A258Q043-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1970538","Methylophilales bacterium 28-44-11"]]},{"id":"NCBITaxon:1970542","l":"Planctomycetia bacterium 21-64-5","na":1,"nb":1,"a":[["TED%3AAF-A0A257TP90-F1-model_v4_TED02","TED novel fold AF-A0A257TP90-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1970542","Planctomycetia bacterium 21-64-5"]]},{"id":"NCBITaxon:1970549","l":"Rhizobiales bacterium 32-66-11","na":1,"nb":1,"a":[["TED%3AAF-A0A258IJC2-F1-model_v4_TED01","TED novel fold AF-A0A258IJC2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970549","Rhizobiales bacterium 32-66-11"]]},{"id":"NCBITaxon:1970550","l":"Rhizobiales bacterium 32-66-8","na":1,"nb":1,"a":[["TED%3AAF-A0A258DUN5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A258DUN5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970550","Rhizobiales bacterium 32-66-8"]]},{"id":"NCBITaxon:1970552","l":"Rhizobiales bacterium 35-68-8","na":1,"nb":1,"a":[["TED%3AAF-A0A258LT13-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A258LT13-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970552","Rhizobiales bacterium 35-68-8"]]},{"id":"NCBITaxon:1970573","l":"Sphingobacteriia bacterium 28-36-52","na":1,"nb":1,"a":[["TED%3AAF-A0A258U799-F1-model_v4_TED02","TED novel fold AF-A0A258U799-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1970573","Sphingobacteriia bacterium 28-36-52"]]},{"id":"NCBITaxon:1970586","l":"Sphingomonadales bacterium 12-68-11","na":1,"nb":1,"a":[["TED%3AAF-A0A257YE58-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A257YE58-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970586","Sphingomonadales bacterium 12-68-11"]]},{"id":"NCBITaxon:1970589","l":"Sphingomonadales bacterium 28-55-16","na":1,"nb":1,"a":[["TED%3AAF-A0A258RRI2-F1-model_v4_TED02","TED novel fold AF-A0A258RRI2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1970589","Sphingomonadales bacterium 28-55-16"]]},{"id":"NCBITaxon:1970591","l":"Sphingomonadales bacterium 28-64-96","na":1,"nb":1,"a":[["TED%3AAF-A0A258VAH0-F1-model_v4_TED01","TED novel fold AF-A0A258VAH0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970591","Sphingomonadales bacterium 28-64-96"]]},{"id":"NCBITaxon:1971619","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1W9TIB3-F1-model_v4_TED02","TED novel fold AF-A0A1W9TIB3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1971619","Marinitoga sp. 4572_148"]]},{"id":"NCBITaxon:1971625","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1W9SU75-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W9SU75-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1971625","Desulfobacteraceae bacterium 4572_130"]]},{"id":"NCBITaxon:1971630","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A256W873-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A256W873-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1971630","Bacteroidetes bacterium 4572_112"]]},{"id":"NCBITaxon:1971631","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A256WD82-F1-model_v4_TED02","TED novel fold AF-A0A256WD82-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1971631","Bacteroidetes bacterium 4572_114"]]},{"id":"NCBITaxon:1971632","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1W9SY04-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W9SY04-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1971632","Bacteroidetes bacterium 4572_117"]]},{"id":"NCBITaxon:1971633","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1W9ST60-F1-model_v4_TED03","TED novel fold AF-A0A1W9ST60-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1971633","Bacteroidetes bacterium 4572_128"]]},{"id":"NCBITaxon:1971727","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1W9VFK2-F1-model_v4_TED01","TED novel fold AF-A0A1W9VFK2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1971727","Spirochaetaceae bacterium 4572_59"]]},{"id":"NCBITaxon:1972456","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1W9VXE4-F1-model_v4_TED01","TED novel fold AF-A0A1W9VXE4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1972456","Spirochaetaceae bacterium 4572_7"]]},{"id":"NCBITaxon:1972846","l":"Streptomyces sp. Sge12","na":1,"nb":1,"a":[["TED%3AAF-A0A1V0QT96-F1-model_v4_TED01","TED novel fold AF-A0A1V0QT96-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1972846","Streptomyces sp. Sge12"]]},{"id":"NCBITaxon:1973142","l":"Thermoplasma sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A5J5FF33-F1-model_v4_TED01","TED novel fold AF-A0A5J5FF33-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973142","Thermoplasma sp."]]},{"id":"NCBITaxon:1973259","l":"Zestosphaera tikiterensis","na":1,"nb":1,"a":[["TED%3AAF-A0A2R7Y2H4-F1-model_v4_TED01","TED novel fold AF-A0A2R7Y2H4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973259","Zestosphaera tikiterensis"]]},{"id":"NCBITaxon:1973477","l":"Nodularia sp. NIES-3585","na":1,"nb":1,"a":[["TED%3AAF-A0A218PYE4-F1-model_v4_TED01","TED novel fold AF-A0A218PYE4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973477","Nodularia sp. NIES-3585"]]},{"id":"NCBITaxon:1973484","l":"Leptolyngbya boryana NIES-2135","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z4JRH1-F1-model_v4_TED01","TED novel fold AF-A0A1Z4JRH1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973484","Leptolyngbya boryana NIES-2135"]]},{"id":"NCBITaxon:1973748","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A235BZX3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A235BZX3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973748","Caldifarciminota bacterium JGI_Cruoil_03_44_89"]]},{"id":"NCBITaxon:1973888","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M8D5F1-F1-model_v4_TED03","TED novel fold AF-A0A2M8D5F1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1973888","Acidobacteria bacterium CG_4_9_14_3_um_filter_49_7"]]},{"id":"NCBITaxon:1973916","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7A827-F1-model_v4_TED02","TED novel fold AF-A0A2M7A827-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1973916","Armatimonadetes bacterium CG07_land_8_20_14_0_80_40_9"]]},{"id":"NCBITaxon:1973917","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7AGG3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2M7AGG3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1973917","Armatimonadetes bacterium CG07_land_8_20_14_0_80_59_28"]]},{"id":"NCBITaxon:1973919","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7N334-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M7N334-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973919","Bacteroidetes bacterium CG_4_10_14_3_um_filter_31_20"]]},{"id":"NCBITaxon:1973920","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7PJ97-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2M7PJ97-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1973920","Bacteroidetes bacterium CG_4_10_14_3_um_filter_42_6"]]},{"id":"NCBITaxon:1973925","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0HDX3-F1-model_v4_TED01","TED novel fold AF-A0A2H0HDX3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973925","Bacteroidetes bacterium CG18_big_fil_WC_8_21_14_2_50_41_14"]]},{"id":"NCBITaxon:1973926","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0BCP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H0BCP8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973926","Bacteroidetes bacterium CG23_combo_of_CG06-09_8_20_14_all_32_9"]]},{"id":"NCBITaxon:1973927","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M6X4S8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M6X4S8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973927","Bdellovibrionales bacterium CG10_big_fil_rev_8_21_14_0_10_45_34"]]},{"id":"NCBITaxon:1973935","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0VNB5-F1-model_v4_TED01","TED novel fold AF-A0A2H0VNB5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973935","Chlamydiae bacterium CG10_big_fil_rev_8_21_14_0_10_35_9"]]},{"id":"NCBITaxon:1973962","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7JSH6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2M7JSH6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1973962","Deltaproteobacteria bacterium CG_4_8_14_3_um_filter_45_9"]]},{"id":"NCBITaxon:1973963","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7JGF0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2M7JGF0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1973963","Deltaproteobacteria bacterium CG_4_8_14_3_um_filter_51_11"]]},{"id":"NCBITaxon:1973967","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M8B4E2-F1-model_v4_TED02","TED novel fold AF-A0A2M8B4E2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1973967","Deltaproteobacteria bacterium CG_4_9_14_3_um_filter_63_12"]]},{"id":"NCBITaxon:1973971","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M6ZXW2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M6ZXW2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973971","Deltaproteobacteria bacterium CG07_land_8_20_14_0_80_38_7"]]},{"id":"NCBITaxon:1973983","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2G9ZZZ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G9ZZZ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973983","Desulfobacterales bacterium CG23_combo_of_CG06-09_8_20_14_all_51_8"]]},{"id":"NCBITaxon:1973994","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7DL13-F1-model_v4_TED01","TED novel fold AF-A0A2M7DL13-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973994","Flavobacteriaceae bacterium CG02_land_8_20_14_3_00_34_13"]]},{"id":"NCBITaxon:1974127","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7HCL7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2M7HCL7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1974127","Zetaproteobacteria bacterium CG12_big_fil_rev_8_21_14_0_65_55_1124"]]},{"id":"NCBITaxon:1974426","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2H9PX84-F1-model_v4_TED03","TED novel fold AF-A0A2H9PX84-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1974426","Candidatus Pacearchaeota archaeon CG_4_10_14_0_2_um_filter_31_10"]]},{"id":"NCBITaxon:1974445","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2G9NCG0-F1-model_v4_TED01","TED novel fold AF-A0A2G9NCG0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1974445","Candidatus Pacearchaeota archaeon CG10_big_fil_rev_8_21_14_0_10_35_13"]]},{"id":"NCBITaxon:1974463","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2G9MA02-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2G9MA02-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1974463","Candidatus Woesearchaeota archaeon CG10_big_fil_rev_8_21_14_0_10_37_12"]]},{"id":"NCBITaxon:1974464","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2G9N4U0-F1-model_v4_TED02","TED novel fold AF-A0A2G9N4U0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1974464","Candidatus Woesearchaeota archaeon CG10_big_fil_rev_8_21_14_0_10_44_13"]]},{"id":"NCBITaxon:1974478","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M8ESB9-F1-model_v4_TED02","TED novel fold AF-A0A2M8ESB9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1974478","Candidatus Shapirobacteria bacterium CG_4_9_14_0_2_um_filter_39_11"]]},{"id":"NCBITaxon:1974485","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M6WZU0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2M6WZU0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1974485","Candidatus Andersenbacteria bacterium CG10_big_fil_rev_8_21_14_0_10_54_11"]]},{"id":"NCBITaxon:1974497","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0B6L5-F1-model_v4_TED01","TED novel fold AF-A0A2H0B6L5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1974497","Candidatus Beckwithbacteria bacterium CG23_combo_of_CG06-09_8_20_14_all_34_8"]]},{"id":"NCBITaxon:1974550","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0A4B0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H0A4B0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1974550","Candidatus Desantisbacteria bacterium CG23_combo_of_CG06-09_8_20_14_all_40_23"]]},{"id":"NCBITaxon:1974551","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0VDX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H0VDX2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1974551","Candidatus Doudnabacteria bacterium CG10_big_fil_rev_8_21_14_0_10_41_10"]]},{"id":"NCBITaxon:1974559","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M8ADX0-F1-model_v4_TED03","TED novel fold AF-A0A2M8ADX0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1974559","Candidatus Falkowbacteria bacterium CG_4_9_14_3_um_filter_38_19"]]},{"id":"NCBITaxon:1974585","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0UQ17-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H0UQ17-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1974585","Candidatus Harrisonbacteria bacterium CG10_big_fil_rev_8_21_14_0_10_44_23"]]},{"id":"NCBITaxon:1974647","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M6NZZ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M6NZZ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1974647","Candidatus Magasanikbacteria bacterium CG10_big_fil_rev_8_21_14_0_10_38_6"]]},{"id":"NCBITaxon:1974650","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M6W203-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2M6W203-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1974650","Candidatus Magasanikbacteria bacterium CG10_big_fil_rev_8_21_14_0_10_43_6"]]},{"id":"NCBITaxon:1974725","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0TG47-F1-model_v4_TED02","TED novel fold AF-A0A2H0TG47-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1974725","Candidatus Niyogibacteria bacterium CG10_big_fil_rev_8_21_14_0_10_42_19"]]},{"id":"NCBITaxon:1974748","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0LSV6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H0LSV6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1974748","Candidatus Abzuiibacterium crystallinum"]]},{"id":"NCBITaxon:1974757","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2G9YJU5-F1-model_v4_TED01","TED novel fold AF-A0A2G9YJU5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1974757","Candidatus Sherwoodlollariibacterium unditelluris"]]},{"id":"NCBITaxon:1974784","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0S8P7-F1-model_v4_TED03","TED novel fold AF-A0A2H0S8P7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1974784","Candidatus Peregrinibacteria bacterium CG10_big_fil_rev_8_21_14_0_10_36_19"]]},{"id":"NCBITaxon:1974791","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0RQ70-F1-model_v4_TED02","TED novel fold AF-A0A2H0RQ70-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1974791","Candidatus Peregrinibacteria bacterium CG10_big_fil_rev_8_21_14_0_10_55_24"]]},{"id":"NCBITaxon:1974814","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M8KFY5-F1-model_v4_TED01","TED novel fold AF-A0A2M8KFY5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1974814","Candidatus Portnoybacteria bacterium CG10_big_fil_rev_8_21_14_0_10_40_22"]]},{"id":"NCBITaxon:197482","l":"Malaciobacter halophilus","na":1,"nb":1,"a":[["TED%3AAF-A0A8B3RF77-F1-model_v4_TED01","TED novel fold AF-A0A8B3RF77-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A197482","Malaciobacter halophilus"]]},{"id":"NCBITaxon:1974837","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M8F0D2-F1-model_v4_TED04","TED novel fold AF-A0A2M8F0D2-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1974837","Candidatus Roizmanbacteria bacterium CG_4_9_14_0_2_um_filter_36_12"]]},{"id":"NCBITaxon:1974841","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7XWN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M7XWN7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1974841","Candidatus Roizmanbacteria bacterium CG_4_9_14_3_um_filter_33_18"]]},{"id":"NCBITaxon:1974843","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7E5D6-F1-model_v4_TED02","TED novel fold AF-A0A2M7E5D6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1974843","Candidatus Roizmanbacteria bacterium CG01_land_8_20_14_3_00_33_9"]]},{"id":"NCBITaxon:1975025","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0KBG4-F1-model_v4_TED01","TED novel fold AF-A0A2H0KBG4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1975025","Candidatus Taylorbacteria bacterium CG11_big_fil_rev_8_21_14_0_20_46_11"]]},{"id":"NCBITaxon:1975035","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7XD98-F1-model_v4_TED01","TED novel fold AF-A0A2M7XD98-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1975035","Candidatus Uhrbacteria bacterium CG_4_9_14_3_um_filter_50_9"]]},{"id":"NCBITaxon:1975062","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7Q8B6-F1-model_v4_TED02","TED novel fold AF-A0A2M7Q8B6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1975062","Candidatus Wolfebacteria bacterium CG_4_10_14_0_8_um_filter_37_11"]]},{"id":"NCBITaxon:1975071","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0ECG7-F1-model_v4_TED01","TED novel fold AF-A0A2H0ECG7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1975071","Candidatus Wolfebacteria bacterium CG18_big_fil_WC_8_21_14_2_50_39_7"]]},{"id":"NCBITaxon:1975072","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7TGC4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2M7TGC4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1975072","candidate division WWE3 bacterium CG_4_10_14_0_2_um_filter_41_14"]]},{"id":"NCBITaxon:1975078","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M8EJT3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M8EJT3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1975078","candidate division WWE3 bacterium CG_4_9_14_0_2_um_filter_48_10"]]},{"id":"NCBITaxon:1975099","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7Q5K1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2M7Q5K1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1975099","Candidatus Yonathbacteria bacterium CG_4_10_14_0_8_um_filter_43_17"]]},{"id":"NCBITaxon:1975523","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7XWD0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2M7XWD0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1975523","Fidelibacterota bacterium CG_4_9_14_3_um_filter_48_9"]]},{"id":"NCBITaxon:1975526","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0WBQ6-F1-model_v4_TED01","TED novel fold AF-A0A2H0WBQ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1975526","Bdellovibrio sp. CG10_big_fil_rev_8_21_14_0_10_47_8"]]},{"id":"NCBITaxon:1975530","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7NIZ0-F1-model_v4_TED01","TED novel fold AF-A0A2M7NIZ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1975530","Flexibacter sp. CG_4_10_14_3_um_filter_32_15"]]},{"id":"NCBITaxon:1975555","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2H9M1U6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H9M1U6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1975555","archaeon CG06_land_8_20_14_3_00_37_11"]]},{"id":"NCBITaxon:1975559","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2H9QXA8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H9QXA8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1975559","Euryarchaeota archaeon CG_4_9_14_3_um_filter_38_12"]]},{"id":"NCBITaxon:1977873","l":"Acinetobacter sp. ANC 3813","na":1,"nb":1,"a":[["TED%3AAF-A0A241W2X8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A241W2X8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1977873","Acinetobacter sp. ANC 3813"]]},{"id":"NCBITaxon:1977879","l":"Acinetobacter sp. ANC 4169","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y3CTW4-F1-model_v4_TED01","TED novel fold AF-A0A1Y3CTW4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1977879","Acinetobacter sp. ANC 4169"]]},{"id":"NCBITaxon:1978124","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2G1NW85-F1-model_v4_TED01","TED novel fold AF-A0A2G1NW85-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1978124","Methanosarcinales archaeon ex4572_44"]]},{"id":"NCBITaxon:1978230","l":"Caulobacteraceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q3SVZ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q3SVZ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1978230","Caulobacteraceae bacterium"]]},{"id":"NCBITaxon:1979207","l":"Parvularcula sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A357LEX5-F1-model_v4_TED01","TED novel fold AF-A0A357LEX5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1979207","Parvularcula sp."]]},{"id":"NCBITaxon:1979269","l":"Rhodovarius crocodyli","na":1,"nb":1,"a":[["TED%3AAF-A0A437M387-F1-model_v4_TED02","TED novel fold AF-A0A437M387-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1979269","Rhodovarius crocodyli"]]},{"id":"NCBITaxon:1979401","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2E9FXM2-F1-model_v4_TED01","TED novel fold AF-A0A2E9FXM2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1979401","Thalassovita sp."]]},{"id":"NCBITaxon:1979955","l":"Eudoraea sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y1VLE0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y1VLE0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1979955","Eudoraea sp."]]},{"id":"NCBITaxon:1979961","l":"Wenzhouxiangella sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A5Q4GWL5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Q4GWL5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1979961","Wenzhouxiangella sp."]]},{"id":"NCBITaxon:1979962","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2D7XCF2-F1-model_v4_TED02","TED novel fold AF-A0A2D7XCF2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1979962","Pusillimonas sp."]]},{"id":"NCBITaxon:1980981","l":"Thermofilum sp. NZ13","na":1,"nb":1,"a":[["TED%3AAF-A0A2J4G700-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J4G700-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1980981","Thermofilum sp. NZ13"]]},{"id":"NCBITaxon:198107","l":"Azoarcus sp. CIB","na":1,"nb":1,"a":[["TED%3AAF-A0A0K1J426-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0K1J426-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A198107","Azoarcus sp. CIB"]]},{"id":"NCBITaxon:1981099","l":"Niveispirillum lacus","na":1,"nb":1,"a":[["TED%3AAF-A0A255YSY8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A255YSY8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1981099","Niveispirillum lacus"]]},{"id":"NCBITaxon:1981173","l":"Rhizobium sp. NXC14","na":1,"nb":1,"a":[["TED%3AAF-A0A1W6PXC9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W6PXC9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1981173","Rhizobium sp. NXC14"]]},{"id":"NCBITaxon:198119","l":"Paenibacillus barcinonensis","na":1,"nb":1,"a":[["Pfam%3APF06452","Carbohydrate family 9 binding domain-like"]],"b":[["NCBITaxon%3A198119","Paenibacillus barcinonensis"]]},{"id":"NCBITaxon:1982044","l":"Zhengella mangrovi","na":1,"nb":1,"a":[["TED%3AAF-A0A2G1QL83-F1-model_v4_TED03","TED novel fold AF-A0A2G1QL83-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1982044","Zhengella mangrovi"]]},{"id":"NCBITaxon:1982322","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2A2QPA7-F1-model_v4_TED01","TED novel fold AF-A0A2A2QPA7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1982322","Opitutia bacterium Tous-C5TDCM"]]},{"id":"NCBITaxon:1982323","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2A2RC65-F1-model_v4_TED03","TED novel fold AF-A0A2A2RC65-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1982323","Opitutia bacterium Tous-C8FEB"]]},{"id":"NCBITaxon:1982326","l":"Spartobacteria bacterium AMD-G5","na":1,"nb":1,"a":[["TED%3AAF-A0A2A2XYR8-F1-model_v4_TED02","TED novel fold AF-A0A2A2XYR8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1982326","Spartobacteria bacterium AMD-G5"]]},{"id":"NCBITaxon:1982328","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2A2Y7L6-F1-model_v4_TED01","TED novel fold AF-A0A2A2Y7L6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1982328","Verrucomicrobiia bacterium AMD-G2"]]},{"id":"NCBITaxon:1982333","l":"Verrucomicrobia bacterium Tous-C9LFEB","na":1,"nb":1,"a":[["TED%3AAF-A0A2A2R1H1-F1-model_v4_TED02","TED novel fold AF-A0A2A2R1H1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1982333","Verrucomicrobia bacterium Tous-C9LFEB"]]},{"id":"NCBITaxon:1982626","l":"Faecalibacillus intestinalis","na":1,"nb":1,"a":[["TED%3AAF-A0A7I8DY50-F1-model_v4_TED01","TED novel fold AF-A0A7I8DY50-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1982626","Faecalibacillus intestinalis"]]},{"id":"NCBITaxon:1983721","l":"Metabacillus lacus","na":1,"nb":1,"a":[["TED%3AAF-A0A7X2IYG1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7X2IYG1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1983721","Metabacillus lacus"]]},{"id":"NCBITaxon:198480","l":"Psychrobacter fozii","na":1,"nb":1,"a":[["TED%3AAF-A0A2V4UPN2-F1-model_v4_TED02","TED novel fold AF-A0A2V4UPN2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A198480","Psychrobacter fozii"]]},{"id":"NCBITaxon:1985169","l":"Hydrogenophaga sp. IBVHS1","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y2QT13-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y2QT13-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1985169","Hydrogenophaga sp. IBVHS1"]]},{"id":"NCBITaxon:198620","l":"Pseudomonas koreensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1G7ALV2-F1-model_v4_TED02","TED novel fold AF-A0A1G7ALV2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A198620","Pseudomonas koreensis"]]},{"id":"NCBITaxon:1986256","l":"OM182 bacterium MED-G28","na":1,"nb":1,"a":[["TED%3AAF-A0A2A5WFQ8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2A5WFQ8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1986256","OM182 bacterium MED-G28"]]},{"id":"NCBITaxon:1986264","l":"Bacteroidetes bacterium MED-G13","na":1,"nb":1,"a":[["TED%3AAF-A0A2A5XDS1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A5XDS1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986264","Bacteroidetes bacterium MED-G13"]]},{"id":"NCBITaxon:1986603","l":"Alteromonas sp. TMED35","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z9X2W2-F1-model_v4_TED01","TED novel fold AF-A0A1Z9X2W2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986603","Alteromonas sp. TMED35"]]},{"id":"NCBITaxon:1986614","l":"Rhodopirellula sp. TMED11","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z8MMH4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1Z8MMH4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1986614","Rhodopirellula sp. TMED11"]]},{"id":"NCBITaxon:1986638","l":"Candidatus Endolissoclinum sp. TMED37","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z8T4S0-F1-model_v4_TED02","TED novel fold AF-A0A1Z8T4S0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1986638","Candidatus Endolissoclinum sp. TMED37"]]},{"id":"NCBITaxon:1986639","l":"Candidatus Puniceispirillum sp. TMED52","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z8UUH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z8UUH3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986639","Candidatus Puniceispirillum sp. TMED52"]]},{"id":"NCBITaxon:1986642","l":"Alphaproteobacteria bacterium TMED62","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z8VSQ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z8VSQ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986642","Alphaproteobacteria bacterium TMED62"]]},{"id":"NCBITaxon:1986654","l":"bacterium TMED181","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z9KS85-F1-model_v4_TED02","TED novel fold AF-A0A1Z9KS85-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1986654","bacterium TMED181"]]},{"id":"NCBITaxon:1986665","l":"Rhodothermaceae bacterium TMED105","na":1,"nb":1,"a":[["TED%3AAF-A0A424HU99-F1-model_v4_TED01","TED novel fold AF-A0A424HU99-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986665","Rhodothermaceae bacterium TMED105"]]},{"id":"NCBITaxon:1986690","l":"Euryarchaeota archaeon TMED215","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z9NHI6-F1-model_v4_TED01","TED novel fold AF-A0A1Z9NHI6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986690","Euryarchaeota archaeon TMED215"]]},{"id":"NCBITaxon:1986720","l":"Crocinitomicaceae bacterium TMED114","na":1,"nb":1,"a":[["TED%3AAF-A0A3R7U5F4-F1-model_v4_TED02","TED novel fold AF-A0A3R7U5F4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1986720","Crocinitomicaceae bacterium TMED114"]]},{"id":"NCBITaxon:1986728","l":"Crocinitomicaceae bacterium TMED45","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z8S7L6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z8S7L6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986728","Crocinitomicaceae bacterium TMED45"]]},{"id":"NCBITaxon:1986732","l":"Gammaproteobacteria bacterium TMED104","na":1,"nb":1,"a":[["TED%3AAF-A0A3R7SUP8-F1-model_v4_TED05","TED novel fold AF-A0A3R7SUP8-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1986732","Gammaproteobacteria bacterium TMED104"]]},{"id":"NCBITaxon:1986741","l":"Gammaproteobacteria bacterium TMED182","na":1,"nb":1,"a":[["TED%3AAF-A0A424NLN9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A424NLN9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986741","Gammaproteobacteria bacterium TMED182"]]},{"id":"NCBITaxon:1986754","l":"Gammaproteobacteria bacterium TMED257","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z9RPQ5-F1-model_v4_TED01","TED novel fold AF-A0A1Z9RPQ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986754","Gammaproteobacteria bacterium TMED257"]]},{"id":"NCBITaxon:1986763","l":"Gammaproteobacteria bacterium TMED50","na":1,"nb":1,"a":[["TED%3AAF-A0A424LB35-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A424LB35-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986763","Gammaproteobacteria bacterium TMED50"]]},{"id":"NCBITaxon:1986767","l":"Gammaproteobacteria bacterium TMED78","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z8X4N1-F1-model_v4_TED02","TED novel fold AF-A0A1Z8X4N1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1986767","Gammaproteobacteria bacterium TMED78"]]},{"id":"NCBITaxon:1986771","l":"Gammaproteobacteria bacterium TMED95","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z9AQ58-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1Z9AQ58-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1986771","Gammaproteobacteria bacterium TMED95"]]},{"id":"NCBITaxon:1986772","l":"Cellvibrionales bacterium TMED122","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z9DQ10-F1-model_v4_TED01","TED novel fold AF-A0A1Z9DQ10-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986772","Cellvibrionales bacterium TMED122"]]},{"id":"NCBITaxon:1986779","l":"bacterium TMED198","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z9M4M7-F1-model_v4_TED02","TED novel fold AF-A0A1Z9M4M7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1986779","bacterium TMED198"]]},{"id":"NCBITaxon:1986791","l":"Verrucomicrobia bacterium TMED44","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z8SMK6-F1-model_v4_TED02","TED novel fold AF-A0A1Z8SMK6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1986791","Verrucomicrobia bacterium TMED44"]]},{"id":"NCBITaxon:1986792","l":"Verrucomicrobia bacterium TMED56","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z8U0I2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1Z8U0I2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1986792","Verrucomicrobia bacterium TMED56"]]},{"id":"NCBITaxon:1986793","l":"Verrucomicrobia bacterium TMED60","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z8VC00-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z8VC00-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986793","Verrucomicrobia bacterium TMED60"]]},{"id":"NCBITaxon:1986810","l":"Candidatus Pelagibacter sp. TMED202","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z9MMV8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z9MMV8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986810","Candidatus Pelagibacter sp. TMED202"]]},{"id":"NCBITaxon:1986818","l":"Pelagibacteraceae bacterium TMED247","na":1,"nb":1,"a":[["TED%3AAF-A0A424JIC6-F1-model_v4_TED02","TED novel fold AF-A0A424JIC6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1986818","Pelagibacteraceae bacterium TMED247"]]},{"id":"NCBITaxon:1986831","l":"Phycisphaeraceae bacterium TMED231","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z9QAB1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Z9QAB1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1986831","Phycisphaeraceae bacterium TMED231"]]},{"id":"NCBITaxon:1986836","l":"Planctomycetaceae bacterium TMED241","na":1,"nb":1,"a":[["TED%3AAF-A0A3R7R3C3-F1-model_v4_TED01","TED novel fold AF-A0A3R7R3C3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986836","Planctomycetaceae bacterium TMED241"]]},{"id":"NCBITaxon:1986837","l":"Planctomycetes bacterium TMED75","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z8YM18-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Z8YM18-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1986837","Planctomycetes bacterium TMED75"]]},{"id":"NCBITaxon:1986838","l":"Flavobacteriaceae bacterium TMED184","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z9K5V7-F1-model_v4_TED02","TED novel fold AF-A0A1Z9K5V7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1986838","Flavobacteriaceae bacterium TMED184"]]},{"id":"NCBITaxon:1986839","l":"Planctomycetia bacterium TMED53","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z8SV58-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Z8SV58-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1986839","Planctomycetia bacterium TMED53"]]},{"id":"NCBITaxon:1986867","l":"Rickettsiales bacterium TMED131","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z9F225-F1-model_v4_TED01","TED novel fold AF-A0A1Z9F225-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986867","Rickettsiales bacterium TMED131"]]},{"id":"NCBITaxon:1987493","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2T9WY00-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T9WY00-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1987493","Vulcanisaeta sp. SCGC AB-777_J10"]]},{"id":"NCBITaxon:1987723","l":"Cellvibrio sp. PSBB006","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y0FT02-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y0FT02-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1987723","Cellvibrio sp. PSBB006"]]},{"id":"NCBITaxon:2003551","l":"Cellulomonas sp. PSBB021","na":1,"nb":1,"a":[["TED%3AAF-A0A222XC97-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A222XC97-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2003551","Cellulomonas sp. PSBB021"]]},{"id":"NCBITaxon:200379","l":"Lentzea flaviverrucosa","na":1,"nb":1,"a":[["TED%3AAF-A0A1H9XTL0-F1-model_v4_TED01","TED novel fold AF-A0A1H9XTL0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A200379","Lentzea flaviverrucosa"]]},{"id":"NCBITaxon:2004468","l":"Armatimonadetes bacterium Uphvl-Ar2","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y0H937-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y0H937-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2004468","Armatimonadetes bacterium Uphvl-Ar2"]]},{"id":"NCBITaxon:2004800","l":"Luteitalea sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A843SUD8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843SUD8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2004800","Luteitalea sp."]]},{"id":"NCBITaxon:2004993","l":"Nitrospira sp. UW-LDO-01","na":1,"nb":1,"a":[["TED%3AAF-A0A256WTA4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A256WTA4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2004993","Nitrospira sp. UW-LDO-01"]]},{"id":"NCBITaxon:2005462","l":"Calothrix sp. NIES-3974","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z4NQR0-F1-model_v4_TED01","TED novel fold AF-A0A1Z4NQR0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2005462","Calothrix sp. NIES-3974"]]},{"id":"NCBITaxon:2005464","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z4PR78-F1-model_v4_TED01","TED novel fold AF-A0A1Z4PR78-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2005464","Kalymmatonema gypsitolerans NIES-4073"]]},{"id":"NCBITaxon:2005467","l":"Nostoc commune NIES-4072","na":1,"nb":1,"a":[["TED%3AAF-A0A2R5G6A0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2R5G6A0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2005467","Nostoc commune NIES-4072"]]},{"id":"NCBITaxon:2005469","l":"Calothrix sp. NIES-4071","na":1,"nb":1,"a":[["TED%3AAF-A0A2H2XIK6-F1-model_v4_TED02","TED novel fold AF-A0A2H2XIK6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2005469","Calothrix sp. NIES-4071"]]},{"id":"NCBITaxon:2005713","l":"bacterium BMS3Abin05","na":1,"nb":1,"a":[["TED%3AAF-A0A2H6ETN6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H6ETN6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2005713","bacterium BMS3Abin05"]]},{"id":"NCBITaxon:2005716","l":"bacterium BMS3Abin08","na":1,"nb":1,"a":[["TED%3AAF-A0A2H6FHE4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H6FHE4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2005716","bacterium BMS3Abin08"]]},{"id":"NCBITaxon:2007299","l":"Marine Group II euryarchaeote MED-G38","na":1,"nb":1,"a":[["TED%3AAF-A0A2A5VGT3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A5VGT3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2007299","Marine Group II euryarchaeote MED-G38"]]},{"id":"NCBITaxon:2009329","l":"Sagittula sp. P11","na":1,"nb":1,"a":[["TED%3AAF-A0A2K8W7C5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2K8W7C5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2009329","Sagittula sp. P11"]]},{"id":"NCBITaxon:200989","l":"Alkalicoccus saliphilus","na":1,"nb":1,"a":[["TED%3AAF-A0A2T4U9U6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2T4U9U6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A200989","Alkalicoccus saliphilus"]]},{"id":"NCBITaxon:2010949","l":"Dictyoglomus sp. NZ13-RE01","na":1,"nb":1,"a":[["TED%3AAF-A0A2J6XSY7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J6XSY7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2010949","Dictyoglomus sp. NZ13-RE01"]]},{"id":"NCBITaxon:2010972","l":"Caulobacter rhizosphaerae","na":1,"nb":1,"a":[["TED%3AAF-A0A561NW71-F1-model_v4_TED02","TED novel fold AF-A0A561NW71-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2010972","Caulobacter rhizosphaerae"]]},{"id":"NCBITaxon:2011159","l":"Erythrobacter sp. KY5","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z4K0Q8-F1-model_v4_TED01","TED novel fold AF-A0A2Z4K0Q8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2011159","Erythrobacter sp. KY5"]]},{"id":"NCBITaxon:2012491","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A532TNF4-F1-model_v4_TED01","TED novel fold AF-A0A532TNF4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2012491","Promethearchaeota archaeon Loki_b32"]]},{"id":"NCBITaxon:2012493","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2U3CFI5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U3CFI5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2012493","Candidatus Heimdallarchaeota archaeon B3_Heim"]]},{"id":"NCBITaxon:2012521","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A256YJU3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A256YJU3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2012521","Desulfurococcales archaeon ex4484_58"]]},{"id":"NCBITaxon:2012528","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A256XI72-F1-model_v4_TED01","TED novel fold AF-A0A256XI72-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2012528","Thermofilum sp. ex4484_82"]]},{"id":"NCBITaxon:2012679","l":"Janthinobacterium sp. PC23-8","na":1,"nb":1,"a":[["TED%3AAF-A0A255HGE6-F1-model_v4_TED02","TED novel fold AF-A0A255HGE6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2012679","Janthinobacterium sp. PC23-8"]]},{"id":"NCBITaxon:2013086","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2S6SGC9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S6SGC9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013086","Alphaproteobacteria bacterium MarineAlpha5_Bin11"]]},{"id":"NCBITaxon:2013106","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2S6QD62-F1-model_v4_TED01","TED novel fold AF-A0A2S6QD62-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013106","Alphaproteobacteria bacterium MarineAlpha11_Bin1"]]},{"id":"NCBITaxon:2013647","l":"Actinobacteria bacterium HGW-Actinobacteria-2","na":1,"nb":1,"a":[["TED%3AAF-A0A2N3GG04-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3GG04-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013647","Actinobacteria bacterium HGW-Actinobacteria-2"]]},{"id":"NCBITaxon:2013648","l":"Candidatus Anoxymicrobium japonicum","na":1,"nb":1,"a":[["TED%3AAF-A0A2N3G2B2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N3G2B2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2013648","Candidatus Anoxymicrobium japonicum"]]},{"id":"NCBITaxon:2013651","l":"Actinobacteria bacterium HGW-Actinobacteria-6","na":1,"nb":1,"a":[["TED%3AAF-A0A2N3FKV3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3FKV3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013651","Actinobacteria bacterium HGW-Actinobacteria-6"]]},{"id":"NCBITaxon:2013652","l":"Actinobacteria bacterium HGW-Actinobacteria-7","na":1,"nb":1,"a":[["TED%3AAF-A0A2N3F6T3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N3F6T3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2013652","Actinobacteria bacterium HGW-Actinobacteria-7"]]},{"id":"NCBITaxon:2013661","l":"Alphaproteobacteria bacterium HGW-Alphaproteobacteria-15","na":1,"nb":1,"a":[["TED%3AAF-A0A2N3DK73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3DK73-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013661","Alphaproteobacteria bacterium HGW-Alphaproteobacteria-15"]]},{"id":"NCBITaxon:2013679","l":"Bacteroidetes bacterium HGW-Bacteroidetes-11","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2ZXZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N2ZXZ1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2013679","Bacteroidetes bacterium HGW-Bacteroidetes-11"]]},{"id":"NCBITaxon:2013681","l":"Bacteroidetes bacterium HGW-Bacteroidetes-13","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2ZMI9-F1-model_v4_TED02","TED novel fold AF-A0A2N2ZMI9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2013681","Bacteroidetes bacterium HGW-Bacteroidetes-13"]]},{"id":"NCBITaxon:2013695","l":"Bacteroidetes bacterium HGW-Bacteroidetes-5","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2WTH8-F1-model_v4_TED04","TED novel fold AF-A0A2N2WTH8-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2013695","Bacteroidetes bacterium HGW-Bacteroidetes-5"]]},{"id":"NCBITaxon:2013696","l":"Bacteroidetes bacterium HGW-Bacteroidetes-6","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2WEP0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N2WEP0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013696","Bacteroidetes bacterium HGW-Bacteroidetes-6"]]},{"id":"NCBITaxon:2013698","l":"Bacteroidetes bacterium HGW-Bacteroidetes-8","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2W6N7-F1-model_v4_TED02","TED novel fold AF-A0A2N2W6N7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2013698","Bacteroidetes bacterium HGW-Bacteroidetes-8"]]},{"id":"NCBITaxon:2013699","l":"Bacteroidetes bacterium HGW-Bacteroidetes-9","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2VUD7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N2VUD7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013699","Bacteroidetes bacterium HGW-Bacteroidetes-9"]]},{"id":"NCBITaxon:2013718","l":"Betaproteobacteria bacterium HGW-Betaproteobacteria-6","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2RFL1-F1-model_v4_TED03","TED novel fold AF-A0A2N2RFL1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2013718","Betaproteobacteria bacterium HGW-Betaproteobacteria-6"]]},{"id":"NCBITaxon:2013722","l":"candidate division BRC1 bacterium HGW-BRC1-1","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2PKH8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N2PKH8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013722","candidate division BRC1 bacterium HGW-BRC1-1"]]},{"id":"NCBITaxon:2013724","l":"Chloroflexi bacterium HGW-Chloroflexi-10","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2NZX0-F1-model_v4_TED01","TED novel fold AF-A0A2N2NZX0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013724","Chloroflexi bacterium HGW-Chloroflexi-10"]]},{"id":"NCBITaxon:2013726","l":"Chloroflexi bacterium HGW-Chloroflexi-3","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2NIQ4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N2NIQ4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2013726","Chloroflexi bacterium HGW-Chloroflexi-3"]]},{"id":"NCBITaxon:2013727","l":"Chloroflexi bacterium HGW-Chloroflexi-4","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2N060-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N2N060-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013727","Chloroflexi bacterium HGW-Chloroflexi-4"]]},{"id":"NCBITaxon:2013728","l":"Chloroflexi bacterium HGW-Chloroflexi-5","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2N7D4-F1-model_v4_TED01","TED novel fold AF-A0A2N2N7D4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013728","Chloroflexi bacterium HGW-Chloroflexi-5"]]},{"id":"NCBITaxon:2013731","l":"Chloroflexi bacterium HGW-Chloroflexi-8","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2LRF1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N2LRF1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2013731","Chloroflexi bacterium HGW-Chloroflexi-8"]]},{"id":"NCBITaxon:2013732","l":"Chloroflexi bacterium HGW-Chloroflexi-9","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2LH68-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N2LH68-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013732","Chloroflexi bacterium HGW-Chloroflexi-9"]]},{"id":"NCBITaxon:2013735","l":"Candidatus Cloacimonetes bacterium HGW-Cloacimonetes-3","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2KN82-F1-model_v4_TED03","TED novel fold AF-A0A2N2KN82-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2013735","Candidatus Cloacimonetes bacterium HGW-Cloacimonetes-3"]]},{"id":"NCBITaxon:2013739","l":"Deltaproteobacteria bacterium HGW-Deltaproteobacteria-12","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2KHT3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N2KHT3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013739","Deltaproteobacteria bacterium HGW-Deltaproteobacteria-12"]]},{"id":"NCBITaxon:2013740","l":"Deltaproteobacteria bacterium HGW-Deltaproteobacteria-13","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2J520-F1-model_v4_TED01","TED novel fold AF-A0A2N2J520-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013740","Deltaproteobacteria bacterium HGW-Deltaproteobacteria-13"]]},{"id":"NCBITaxon:2013742","l":"Deltaproteobacteria bacterium HGW-Deltaproteobacteria-15","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2K2M3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2N2K2M3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2013742","Deltaproteobacteria bacterium HGW-Deltaproteobacteria-15"]]},{"id":"NCBITaxon:2013744","l":"Deltaproteobacteria bacterium HGW-Deltaproteobacteria-17","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2IIR5-F1-model_v4_TED01","TED novel fold AF-A0A2N2IIR5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013744","Deltaproteobacteria bacterium HGW-Deltaproteobacteria-17"]]},{"id":"NCBITaxon:2013753","l":"Deltaproteobacteria bacterium HGW-Deltaproteobacteria-3","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2GNY6-F1-model_v4_TED01","TED novel fold AF-A0A2N2GNY6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013753","Deltaproteobacteria bacterium HGW-Deltaproteobacteria-3"]]},{"id":"NCBITaxon:2013771","l":"Firmicutes bacterium HGW-Firmicutes-10","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2DWX9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N2DWX9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013771","Firmicutes bacterium HGW-Firmicutes-10"]]},{"id":"NCBITaxon:2013795","l":"Gammaproteobacteria bacterium HGW-Gammaproteobacteria-13","na":1,"nb":1,"a":[["TED%3AAF-A0A2N1YQ90-F1-model_v4_TED01","TED novel fold AF-A0A2N1YQ90-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013795","Gammaproteobacteria bacterium HGW-Gammaproteobacteria-13"]]},{"id":"NCBITaxon:2013796","l":"Gammaproteobacteria bacterium HGW-Gammaproteobacteria-14","na":1,"nb":1,"a":[["TED%3AAF-A0A2N1YMF6-F1-model_v4_TED01","TED novel fold AF-A0A2N1YMF6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013796","Gammaproteobacteria bacterium HGW-Gammaproteobacteria-14"]]},{"id":"NCBITaxon:2013803","l":"Gammaproteobacteria bacterium HGW-Gammaproteobacteria-7","na":1,"nb":1,"a":[["TED%3AAF-A0A2N1XKF4-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2N1XKF4-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2013803","Gammaproteobacteria bacterium HGW-Gammaproteobacteria-7"]]},{"id":"NCBITaxon:2013807","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2N1W5L2-F1-model_v4_TED02","TED novel fold AF-A0A2N1W5L2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2013807","Candidatus Goldiibacteriota bacterium HGW-Goldbacteria-1"]]},{"id":"NCBITaxon:2013809","l":"Ignavibacteriae bacterium HGW-Ignavibacteriae-2","na":1,"nb":1,"a":[["TED%3AAF-A0A2N1VYC8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N1VYC8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2013809","Ignavibacteriae bacterium HGW-Ignavibacteriae-2"]]},{"id":"NCBITaxon:2013810","l":"Ignavibacteriae bacterium HGW-Ignavibacteriae-3","na":1,"nb":1,"a":[["TED%3AAF-A0A2N1VGV0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N1VGV0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2013810","Ignavibacteriae bacterium HGW-Ignavibacteriae-3"]]},{"id":"NCBITaxon:2013827","l":"Planctomycetes bacterium HGW-Planctomycetes-1","na":1,"nb":1,"a":[["TED%3AAF-A0A2N1UBU3-F1-model_v4_TED03","TED novel fold AF-A0A2N1UBU3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2013827","Planctomycetes bacterium HGW-Planctomycetes-1"]]},{"id":"NCBITaxon:2013832","l":"Spirochaetae bacterium HGW-Spirochaetae-1","na":1,"nb":1,"a":[["TED%3AAF-A0A2N1TKF0-F1-model_v4_TED01","TED novel fold AF-A0A2N1TKF0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013832","Spirochaetae bacterium HGW-Spirochaetae-1"]]},{"id":"NCBITaxon:2013840","l":"Spirochaetae bacterium HGW-Spirochaetae-8","na":1,"nb":1,"a":[["TED%3AAF-A0A2N1RH66-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N1RH66-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013840","Spirochaetae bacterium HGW-Spirochaetae-8"]]},{"id":"NCBITaxon:2013852","l":"Thermoplasmata archaeon HGW-Thermoplasmata-1","na":1,"nb":1,"a":[["TED%3AAF-A0A2I0N8I4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I0N8I4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013852","Thermoplasmata archaeon HGW-Thermoplasmata-1"]]},{"id":"NCBITaxon:2014292","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2G9YDK1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G9YDK1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2014292","bacterium (Candidatus Ratteibacteria) CG23_combo_of_CG06-09_8_20_14_all_48_7"]]},{"id":"NCBITaxon:2014297","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7TQL4-F1-model_v4_TED01","TED novel fold AF-A0A2M7TQL4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2014297","bacterium (Candidatus Torokbacteria) CG_4_10_14_0_2_um_filter_35_8"]]},{"id":"NCBITaxon:2014305","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7DT76-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M7DT76-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2014305","Elusimicrobia bacterium CG02_land_8_20_14_3_00_37_13"]]},{"id":"NCBITaxon:2014309","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0ZAE8-F1-model_v4_TED02","TED novel fold AF-A0A2H0ZAE8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2014309","Elusimicrobia bacterium CG08_land_8_20_14_0_20_51_18"]]},{"id":"NCBITaxon:2014312","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0DIE1-F1-model_v4_TED01","TED novel fold AF-A0A2H0DIE1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2014312","Elusimicrobia bacterium CG22_combo_CG10-13_8_21_14_all_63_91"]]},{"id":"NCBITaxon:2014530","l":"Nostoc sp. 'Peltigera membranacea cyanobiont' 213","na":1,"nb":1,"a":[["TED%3AAF-A0A235IN49-F1-model_v4_TED01","TED novel fold AF-A0A235IN49-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2014530","Nostoc sp. 'Peltigera membranacea cyanobiont' 213"]]},{"id":"NCBITaxon:2014542","l":"Alcanivorax sp. N3-2A","na":1,"nb":1,"a":[["TED%3AAF-A0A220SU57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A220SU57-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2014542","Alcanivorax sp. N3-2A"]]},{"id":"NCBITaxon:2014804","l":"Lewinellaceae bacterium SD302","na":1,"nb":1,"a":[["TED%3AAF-A0A2C6CIY4-F1-model_v4_TED03","TED novel fold AF-A0A2C6CIY4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2014804","Lewinellaceae bacterium SD302"]]},{"id":"NCBITaxon:2014871","l":"Tengunoibacter tsumagoiensis","na":1,"nb":1,"a":[["TED%3AAF-A0A402A5G4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A402A5G4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2014871","Tengunoibacter tsumagoiensis"]]},{"id":"NCBITaxon:2014873","l":"Dictyobacter alpinus","na":1,"nb":1,"a":[["TED%3AAF-A0A402B519-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A402B519-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2014873","Dictyobacter alpinus"]]},{"id":"NCBITaxon:2015348","l":"Burkholderia aenigmatica","na":1,"nb":1,"a":[["TED%3AAF-A0A6J5JM31-F1-model_v4_TED01","TED novel fold AF-A0A6J5JM31-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2015348","Burkholderia aenigmatica"]]},{"id":"NCBITaxon:2015567","l":"Burkholderiales bacterium PBB5","na":1,"nb":1,"a":[["TED%3AAF-A0A257JDH8-F1-model_v4_TED01","TED novel fold AF-A0A257JDH8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2015567","Burkholderiales bacterium PBB5"]]},{"id":"NCBITaxon:2015568","l":"Burkholderiales bacterium PBB6","na":1,"nb":1,"a":[["TED%3AAF-A0A257CAT0-F1-model_v4_TED01","TED novel fold AF-A0A257CAT0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2015568","Burkholderiales bacterium PBB6"]]},{"id":"NCBITaxon:2015569","l":"Alphaproteobacteria bacterium PA1","na":1,"nb":1,"a":[["TED%3AAF-A0A257HS32-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A257HS32-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2015569","Alphaproteobacteria bacterium PA1"]]},{"id":"NCBITaxon:2015574","l":"Chitinophagaceae bacterium BSSC1","na":1,"nb":1,"a":[["TED%3AAF-A0A257HZ02-F1-model_v4_TED02","TED novel fold AF-A0A257HZ02-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2015574","Chitinophagaceae bacterium BSSC1"]]},{"id":"NCBITaxon:2015575","l":"Verrucomicrobiales bacterium VVV1","na":1,"nb":1,"a":[["TED%3AAF-A0A257LZM7-F1-model_v4_TED01","TED novel fold AF-A0A257LZM7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2015575","Verrucomicrobiales bacterium VVV1"]]},{"id":"NCBITaxon:2015578","l":"Rhodobacteraceae bacterium PARR1","na":1,"nb":1,"a":[["TED%3AAF-A0A257EYZ9-F1-model_v4_TED01","TED novel fold AF-A0A257EYZ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2015578","Rhodobacteraceae bacterium PARR1"]]},{"id":"NCBITaxon:2015582","l":"Bacteroidetes bacterium B1(2017)","na":1,"nb":1,"a":[["TED%3AAF-A0A257LBM7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A257LBM7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2015582","Bacteroidetes bacterium B1(2017)"]]},{"id":"NCBITaxon:2015906","l":"Sulfurovum sp. UBA12169","na":1,"nb":1,"a":[["TED%3AAF-A0A2D3WJY5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D3WJY5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2015906","Sulfurovum sp. UBA12169"]]},{"id":"NCBITaxon:2017","l":"Streptoalloteichus hindustanus","na":1,"nb":1,"a":[["Pfam%3APF19581","Glyoxalase superfamily protein"]],"b":[["NCBITaxon%3A2017","Streptoalloteichus hindustanus"]]},{"id":"NCBITaxon:2017133","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A554JA82-F1-model_v4_TED01","TED novel fold AF-A0A554JA82-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2017133","Candidatus Doudnabacteria bacterium Gr01-1014_77"]]},{"id":"NCBITaxon:2017175","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A554KWI0-F1-model_v4_TED01","TED novel fold AF-A0A554KWI0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2017175","Parcubacteria group bacterium Gr01-1014_13"]]},{"id":"NCBITaxon:2017176","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A554KV16-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A554KV16-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2017176","Parcubacteria group bacterium Gr01-1014_17"]]},{"id":"NCBITaxon:2017178","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A554KRN6-F1-model_v4_TED01","TED novel fold AF-A0A554KRN6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2017178","Parcubacteria group bacterium Gr01-1014_19"]]},{"id":"NCBITaxon:2017179","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A554KPX1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A554KPX1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2017179","Parcubacteria group bacterium Gr01-1014_20"]]},{"id":"NCBITaxon:2017193","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A554JJ04-F1-model_v4_TED01","TED novel fold AF-A0A554JJ04-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2017193","Parcubacteria group bacterium Gr01-1014_72"]]},{"id":"NCBITaxon:2017194","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A554JF58-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A554JF58-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2017194","Parcubacteria group bacterium Gr01-1014_73"]]},{"id":"NCBITaxon:2017210","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A554KXD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A554KXD6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2017210","Microgenomates group bacterium Gr01-1014_16"]]},{"id":"NCBITaxon:2017595","l":"Sphingobium sp. D43FB","na":1,"nb":1,"a":[["TED%3AAF-A0A2A3MTG8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2A3MTG8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2017595","Sphingobium sp. D43FB"]]},{"id":"NCBITaxon:2017977","l":"Candidatus Frackibacter sp. WG12","na":1,"nb":1,"a":[["TED%3AAF-A0A1H7Z976-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H7Z976-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2017977","Candidatus Frackibacter sp. WG12"]]},{"id":"NCBITaxon:2018066","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2A7UMH0-F1-model_v4_TED01","TED novel fold AF-A0A2A7UMH0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2018066","Nocardia sp. FDAARGOS_372"]]},{"id":"NCBITaxon:2018083","l":"Gelidibacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A6P1DFQ6-F1-model_v4_TED02","TED novel fold AF-A0A6P1DFQ6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2018083","Gelidibacter sp."]]},{"id":"NCBITaxon:201975","l":"Planifilum fimeticola","na":1,"nb":1,"a":[["TED%3AAF-A0A2T0LA62-F1-model_v4_TED02","TED novel fold AF-A0A2T0LA62-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A201975","Planifilum fimeticola"]]},{"id":"NCBITaxon:2020130","l":"Arthrobacter sp. 7749","na":1,"nb":1,"a":[["TED%3AAF-A0A221Q5E5-F1-model_v4_TED01","TED novel fold AF-A0A221Q5E5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2020130","Arthrobacter sp. 7749"]]},{"id":"NCBITaxon:2020875","l":"Methyloprofundus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7R6W8I7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7R6W8I7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2020875","Methyloprofundus sp."]]},{"id":"NCBITaxon:2020902","l":"Ponticaulis sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2D7KCV6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D7KCV6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2020902","Ponticaulis sp."]]},{"id":"NCBITaxon:2020965","l":"Bifidobacterium imperatoris","na":1,"nb":1,"a":[["TED%3AAF-A0A2N5IT75-F1-model_v4_TED01","TED novel fold AF-A0A2N5IT75-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2020965","Bifidobacterium imperatoris"]]},{"id":"NCBITaxon:2021359","l":"Bifidobacteriaceae bacterium NR020","na":1,"nb":1,"a":[["TED%3AAF-A0A3E2CM29-F1-model_v4_TED02","TED novel fold AF-A0A3E2CM29-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2021359","Bifidobacteriaceae bacterium NR020"]]},{"id":"NCBITaxon:2021368","l":"Alcaligenaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7Z0N1X4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Z0N1X4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2021368","Alcaligenaceae bacterium"]]},{"id":"NCBITaxon:2021369","l":"Streptomycetaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y6E5G3-F1-model_v4_TED02","TED novel fold AF-A0A7Y6E5G3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2021369","Streptomycetaceae bacterium"]]},{"id":"NCBITaxon:2021379","l":"Xanthobacteraceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A6I1JZP1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I1JZP1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2021379","Xanthobacteraceae bacterium"]]},{"id":"NCBITaxon:2021380","l":"Propionibacteriaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7W0Y047-F1-model_v4_TED01","TED novel fold AF-A0A7W0Y047-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2021380","Propionibacteriaceae bacterium"]]},{"id":"NCBITaxon:2021862","l":"Labrenzia sp. VG12","na":1,"nb":1,"a":[["TED%3AAF-A0A222F3S5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A222F3S5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2021862","Labrenzia sp. VG12"]]},{"id":"NCBITaxon:2022438","l":"Mongoliibacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A6I7MVY3-F1-model_v4_TED03","TED novel fold AF-A0A6I7MVY3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2022438","Mongoliibacter sp."]]},{"id":"NCBITaxon:2022503","l":"Rhodococcus sp. 02-925g","na":1,"nb":1,"a":[["TED%3AAF-A0A260PY08-F1-model_v4_TED01","TED novel fold AF-A0A260PY08-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2022503","Rhodococcus sp. 02-925g"]]},{"id":"NCBITaxon:2022508","l":"Rhodococcus sp. 06-235-1A","na":1,"nb":1,"a":[["TED%3AAF-A0A260BTG1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A260BTG1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2022508","Rhodococcus sp. 06-235-1A"]]},{"id":"NCBITaxon:2022510","l":"Rhodococcus sp. 06-469-3-2","na":1,"nb":1,"a":[["TED%3AAF-A0A259YZX4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A259YZX4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2022510","Rhodococcus sp. 06-469-3-2"]]},{"id":"NCBITaxon:2022549","l":"Paenibacillus sp. 7516","na":1,"nb":1,"a":[["TED%3AAF-A0A268SAJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A268SAJ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2022549","Paenibacillus sp. 7516"]]},{"id":"NCBITaxon:2023130","l":"Rhodopirellula sp. MGV","na":1,"nb":1,"a":[["TED%3AAF-A0A255R619-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A255R619-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2023130","Rhodopirellula sp. MGV"]]},{"id":"NCBITaxon:2023140","l":"Rhodococcus sp. 15-649-2-2","na":1,"nb":1,"a":[["TED%3AAF-A0A260QPE4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A260QPE4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2023140","Rhodococcus sp. 15-649-2-2"]]},{"id":"NCBITaxon:2023142","l":"Rhodococcus sp. 15-2388-1-1a","na":1,"nb":1,"a":[["TED%3AAF-A0A260RNP9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A260RNP9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2023142","Rhodococcus sp. 15-2388-1-1a"]]},{"id":"NCBITaxon:2023177","l":"Leptospira hartskeerlii","na":1,"nb":1,"a":[["TED%3AAF-A0A2M9XDB6-F1-model_v4_TED05","TED novel fold AF-A0A2M9XDB6-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2023177","Leptospira hartskeerlii"]]},{"id":"NCBITaxon:2023184","l":"Leptospira barantonii","na":1,"nb":1,"a":[["TED%3AAF-A0A2M9Z0J0-F1-model_v4_TED01","TED novel fold AF-A0A2M9Z0J0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2023184","Leptospira barantonii"]]},{"id":"NCBITaxon:2023191","l":"Leptospira perolatii","na":1,"nb":1,"a":[["TED%3AAF-A0A2M9ZJK9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M9ZJK9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2023191","Leptospira perolatii"]]},{"id":"NCBITaxon:2023261","l":"Paracoccus hibiscisoli","na":1,"nb":1,"a":[["TED%3AAF-A0A4U0QR11-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U0QR11-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2023261","Paracoccus hibiscisoli"]]},{"id":"NCBITaxon:2024223","l":"Prevotella sp. P3-122","na":1,"nb":1,"a":[["TED%3AAF-A0A255T1P7-F1-model_v4_TED02","TED novel fold AF-A0A255T1P7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2024223","Prevotella sp. P3-122"]]},{"id":"NCBITaxon:2024228","l":"Prevotella sp. P4-51","na":1,"nb":1,"a":[["TED%3AAF-A0A255UBE8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A255UBE8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024228","Prevotella sp. P4-51"]]},{"id":"NCBITaxon:2024580","l":"Plantactinospora sp. KBS50","na":1,"nb":1,"a":[["TED%3AAF-A0A248YTM1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A248YTM1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024580","Plantactinospora sp. KBS50"]]},{"id":"NCBITaxon:2024823","l":"Altibacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2D9N3K7-F1-model_v4_TED02","TED novel fold AF-A0A2D9N3K7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2024823","Altibacter sp."]]},{"id":"NCBITaxon:2024825","l":"Bermanella sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2D4S3X4-F1-model_v4_TED01","TED novel fold AF-A0A2D4S3X4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024825","Bermanella sp."]]},{"id":"NCBITaxon:2024832","l":"Geminicoccus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2E1V8X3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E1V8X3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2024832","Geminicoccus sp."]]},{"id":"NCBITaxon:2024834","l":"Halioglobus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2E0YYR1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0YYR1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024834","Halioglobus sp."]]},{"id":"NCBITaxon:2024835","l":"Hirschia sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2E4QUE4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4QUE4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024835","Hirschia sp."]]},{"id":"NCBITaxon:2024856","l":"Roseibacillus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2E3N9V4-F1-model_v4_TED01","TED novel fold AF-A0A2E3N9V4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024856","Roseibacillus sp."]]},{"id":"NCBITaxon:2024857","l":"Rubinisphaera sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2E9VTV9-F1-model_v4_TED02","TED novel fold AF-A0A2E9VTV9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2024857","Rubinisphaera sp."]]},{"id":"NCBITaxon:2024860","l":"Spongiibacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2D7WH13-F1-model_v4_TED03","TED novel fold AF-A0A2D7WH13-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2024860","Spongiibacter sp."]]},{"id":"NCBITaxon:2024869","l":"Cyanobium sp. ARS6","na":1,"nb":1,"a":[["TED%3AAF-A0A2D6FHG9-F1-model_v4_TED01","TED novel fold AF-A0A2D6FHG9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024869","Cyanobium sp. ARS6"]]},{"id":"NCBITaxon:2024871","l":"Cyanobium sp. MED843","na":1,"nb":1,"a":[["TED%3AAF-A0A2E1IRI3-F1-model_v4_TED01","TED novel fold AF-A0A2E1IRI3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024871","Cyanobium sp. MED843"]]},{"id":"NCBITaxon:2024963","l":"Caldimicrobium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7C2K5W8-F1-model_v4_TED01","TED novel fold AF-A0A7C2K5W8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024963","Caldimicrobium sp."]]},{"id":"NCBITaxon:2025307","l":"Sulfuriferula sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y4S8R3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4S8R3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2025307","Sulfuriferula sp."]]},{"id":"NCBITaxon:2025310","l":"Larkinella knui","na":1,"nb":1,"a":[["TED%3AAF-A0A3P1CJC3-F1-model_v4_TED02","TED novel fold AF-A0A3P1CJC3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2025310","Larkinella knui"]]},{"id":"NCBITaxon:2025312","l":"Larkinella rosea","na":1,"nb":1,"a":[["TED%3AAF-A0A3P1BTP9-F1-model_v4_TED04","TED novel fold AF-A0A3P1BTP9-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2025312","Larkinella rosea"]]},{"id":"NCBITaxon:2025808","l":"Vibrio qinghaiensis","na":1,"nb":1,"a":[["TED%3AAF-A0A223N3A8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A223N3A8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2025808","Vibrio qinghaiensis"]]},{"id":"NCBITaxon:2025950","l":"Pseudoalteromonas sp. NBT06-2","na":1,"nb":1,"a":[["TED%3AAF-A0A269PHA2-F1-model_v4_TED01","TED novel fold AF-A0A269PHA2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2025950","Pseudoalteromonas sp. NBT06-2"]]},{"id":"NCBITaxon:2025994","l":"Coniella lustricola","na":1,"nb":1,"a":[["TED%3AAF-A0A2T3AMG3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2T3AMG3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2025994","Coniella lustricola"]]},{"id":"NCBITaxon:2026089","l":"Paenibacillus sp. XY044","na":1,"nb":1,"a":[["TED%3AAF-A0A259TJY4-F1-model_v4_TED01","TED novel fold AF-A0A259TJY4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026089","Paenibacillus sp. XY044"]]},{"id":"NCBITaxon:2026093","l":"Bifidobacteriaceae bacterium NR016","na":1,"nb":1,"a":[["TED%3AAF-A0A3A1XZ64-F1-model_v4_TED03","TED novel fold AF-A0A3A1XZ64-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2026093","Bifidobacteriaceae bacterium NR016"]]},{"id":"NCBITaxon:2026099","l":"Bifidobacteriaceae bacterium WP012","na":1,"nb":1,"a":[["TED%3AAF-A0A3A1X063-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A1X063-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026099","Bifidobacteriaceae bacterium WP012"]]},{"id":"NCBITaxon:2026721","l":"Candidatus Thioglobus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A368C7V5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A368C7V5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026721","Candidatus Thioglobus sp."]]},{"id":"NCBITaxon:2026727","l":"Coxiellaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7D5S2U3-F1-model_v4_TED01","TED novel fold AF-A0A7D5S2U3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026727","Coxiellaceae bacterium"]]},{"id":"NCBITaxon:2026729","l":"Cytophagaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q3NU34-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q3NU34-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026729","Cytophagaceae bacterium"]]},{"id":"NCBITaxon:2026730","l":"Cytophagia bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y6XPG9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y6XPG9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026730","Cytophagia bacterium"]]},{"id":"NCBITaxon:2026737","l":"Ectothiorhodospiraceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7V1D5I9-F1-model_v4_TED02","TED novel fold AF-A0A7V1D5I9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026737","Ectothiorhodospiraceae bacterium"]]},{"id":"NCBITaxon:2026751","l":"Kangiellaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A850KZ63-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A850KZ63-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026751","Kangiellaceae bacterium"]]},{"id":"NCBITaxon:2026766","l":"Nevskiales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A2E9ZTD0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E9ZTD0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026766","Nevskiales bacterium"]]},{"id":"NCBITaxon:2026793","l":"Spongiibacteraceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A2E7ITB8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E7ITB8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026793","Spongiibacteraceae bacterium"]]},{"id":"NCBITaxon:2027857","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A385BUD3-F1-model_v4_TED01","TED novel fold AF-A0A385BUD3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2027857","Mariniflexile rhizosphaerae"]]},{"id":"NCBITaxon:2027860","l":"Mucilaginibacter rubeus","na":1,"nb":1,"a":[["TED%3AAF-A0A364WTV7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A364WTV7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2027860","Mucilaginibacter rubeus"]]},{"id":"NCBITaxon:2028282","l":"Lachnoclostridium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A352NZQ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A352NZQ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2028282","Lachnoclostridium sp."]]},{"id":"NCBITaxon:2029110","l":"Staphylococcus sp. UMB0328","na":1,"nb":1,"a":[["TED%3AAF-A0A2J6P1M1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2J6P1M1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2029110","Staphylococcus sp. UMB0328"]]},{"id":"NCBITaxon:2029166","l":"Stenotrophobium rhamnosiphilum","na":1,"nb":1,"a":[["TED%3AAF-A0A2T5MBE1-F1-model_v4_TED02","TED novel fold AF-A0A2T5MBE1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2029166","Stenotrophobium rhamnosiphilum"]]},{"id":"NCBITaxon:2029678","l":"Pseudoalteromonas sp. HM-SA03","na":1,"nb":1,"a":[["TED%3AAF-A0A2A2UTB2-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A2A2UTB2-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A2029678","Pseudoalteromonas sp. HM-SA03"]]},{"id":"NCBITaxon:2029980","l":"Candidatus Gastranaerophilus sp. (ex Termes propinquus)","na":1,"nb":1,"a":[["TED%3AAF-A0A2L2X4Y5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L2X4Y5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2029980","Candidatus Gastranaerophilus sp. (ex Termes propinquus)"]]},{"id":"NCBITaxon:2029982","l":"BD1-7 clade bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A5S9PLP5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5S9PLP5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2029982","BD1-7 clade bacterium"]]},{"id":"NCBITaxon:2030815","l":"Marinosulfonomonas sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2G2B7K9-F1-model_v4_TED01","TED novel fold AF-A0A2G2B7K9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2030815","Marinosulfonomonas sp."]]},{"id":"NCBITaxon:2030816","l":"Methylophilaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A3B9L643-F1-model_v4_TED02","TED novel fold AF-A0A3B9L643-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2030816","Methylophilaceae bacterium"]]},{"id":"NCBITaxon:2030825","l":"Thalassobium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2G2Q3F1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G2Q3F1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2030825","Thalassobium sp."]]},{"id":"NCBITaxon:2030882","l":"Thiotrichaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A836TYR7-F1-model_v4_TED01","TED novel fold AF-A0A836TYR7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2030882","Thiotrichaceae bacterium"]]},{"id":"NCBITaxon:2030921","l":"OCS116 cluster bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A2A4YV15-F1-model_v4_TED01","TED novel fold AF-A0A2A4YV15-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2030921","OCS116 cluster bacterium"]]},{"id":"NCBITaxon:2032627","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2A2G842-F1-model_v4_TED02","TED novel fold AF-A0A2A2G842-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2032627","Fodinibius salipaludis"]]},{"id":"NCBITaxon:203267","l":"","na":1,"nb":1,"a":[["TED%3AAF-Q83GV8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q83GV8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A203267","Tropheryma whipplei str. Twist"]]},{"id":"NCBITaxon:2032688","l":"Candidatus Methanoperedens sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A6A2G2H6-F1-model_v4_TED02","TED novel fold AF-A0A6A2G2H6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2032688","Candidatus Methanoperedens sp."]]},{"id":"NCBITaxon:2033405","l":"Prevotella sp. MGM1","na":1,"nb":1,"a":[["TED%3AAF-A0A2L2WSX7-F1-model_v4_TED01","TED novel fold AF-A0A2L2WSX7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2033405","Prevotella sp. MGM1"]]},{"id":"NCBITaxon:2033491","l":"Bacillus sp. AFS018417","na":1,"nb":1,"a":[["TED%3AAF-A0A2A8SBU7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A8SBU7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2033491","Bacillus sp. AFS018417"]]},{"id":"NCBITaxon:2033507","l":"Bacillus sp. AFS055030","na":1,"nb":1,"a":[["TED%3AAF-A0A2B8TU32-F1-model_v4_TED02","TED novel fold AF-A0A2B8TU32-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2033507","Bacillus sp. AFS055030"]]},{"id":"NCBITaxon:2033588","l":"[Chlorobium] sp. 445","na":1,"nb":1,"a":[["TED%3AAF-A0A2G9SVA7-F1-model_v4_TED01","TED novel fold AF-A0A2G9SVA7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2033588","[Chlorobium] sp. 445"]]},{"id":"NCBITaxon:2035204","l":"Acidovorax sp. 59","na":1,"nb":1,"a":[["TED%3AAF-A0A2G6S5C0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G6S5C0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2035204","Acidovorax sp. 59"]]},{"id":"NCBITaxon:2035214","l":"Chryseobacterium sp. 7","na":1,"nb":1,"a":[["TED%3AAF-A0A497V379-F1-model_v4_TED03","TED novel fold AF-A0A497V379-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2035214","Chryseobacterium sp. 7"]]},{"id":"NCBITaxon:2035247","l":"Micromonospora sp. CNZ309","na":1,"nb":1,"a":[["TED%3AAF-A0A2N3YXM7-F1-model_v4_TED01","TED novel fold AF-A0A2N3YXM7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2035247","Micromonospora sp. CNZ309"]]},{"id":"NCBITaxon:2035402","l":"bacterium HR07","na":1,"nb":1,"a":[["TED%3AAF-A0A2H5VJ00-F1-model_v4_TED01","TED novel fold AF-A0A2H5VJ00-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2035402","bacterium HR07"]]},{"id":"NCBITaxon:2035406","l":"bacterium HR11","na":1,"nb":1,"a":[["TED%3AAF-A0A2H5W7K3-F1-model_v4_TED01","TED novel fold AF-A0A2H5W7K3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2035406","bacterium HR11"]]},{"id":"NCBITaxon:2035410","l":"bacterium HR15","na":1,"nb":1,"a":[["TED%3AAF-A0A2H5WW51-F1-model_v4_TED02","TED novel fold AF-A0A2H5WW51-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2035410","bacterium HR15"]]},{"id":"NCBITaxon:2035411","l":"bacterium HR16","na":1,"nb":1,"a":[["TED%3AAF-A0A2H5X254-F1-model_v4_TED02","TED novel fold AF-A0A2H5X254-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2035411","bacterium HR16"]]},{"id":"NCBITaxon:2035414","l":"bacterium HR19","na":1,"nb":1,"a":[["TED%3AAF-A0A2H5XRY4-F1-model_v4_TED01","TED novel fold AF-A0A2H5XRY4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2035414","bacterium HR19"]]},{"id":"NCBITaxon:2035420","l":"bacterium HR25","na":1,"nb":1,"a":[["TED%3AAF-A0A2H5YNM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H5YNM3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2035420","bacterium HR25"]]},{"id":"NCBITaxon:2035423","l":"bacterium HR28","na":1,"nb":1,"a":[["TED%3AAF-A0A2H5Z688-F1-model_v4_TED01","TED novel fold AF-A0A2H5Z688-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2035423","bacterium HR28"]]},{"id":"NCBITaxon:2035424","l":"bacterium HR29","na":1,"nb":1,"a":[["TED%3AAF-A0A2H5ZFH6-F1-model_v4_TED01","TED novel fold AF-A0A2H5ZFH6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2035424","bacterium HR29"]]},{"id":"NCBITaxon:2035425","l":"bacterium HR30","na":1,"nb":1,"a":[["TED%3AAF-A0A2H5ZKE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H5ZKE6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2035425","bacterium HR30"]]},{"id":"NCBITaxon:2035428","l":"bacterium HR33","na":1,"nb":1,"a":[["TED%3AAF-A0A2H6A5T7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H6A5T7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2035428","bacterium HR33"]]},{"id":"NCBITaxon:2035431","l":"bacterium HR36","na":1,"nb":1,"a":[["TED%3AAF-A0A2H6AAW5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2H6AAW5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2035431","bacterium HR36"]]},{"id":"NCBITaxon:2035432","l":"bacterium HR37","na":1,"nb":1,"a":[["TED%3AAF-A0A2H6AM83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H6AM83-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2035432","bacterium HR37"]]},{"id":"NCBITaxon:2037900","l":"Mesorhizobium sanjuanii","na":1,"nb":1,"a":[["TED%3AAF-A0A2A6FDQ4-F1-model_v4_TED01","TED novel fold AF-A0A2A6FDQ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2037900","Mesorhizobium sanjuanii"]]},{"id":"NCBITaxon:2038111","l":"Ochrobactrum sp. 30A/1000/2015","na":1,"nb":1,"a":[["TED%3AAF-A0A855GK25-F1-model_v4_TED02","TED novel fold AF-A0A855GK25-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2038111","Ochrobactrum sp. 30A/1000/2015"]]},{"id":"NCBITaxon:2038116","l":"Nostoc flagelliforme CCNUN1","na":1,"nb":1,"a":[["TED%3AAF-A0A2K8SJD5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2K8SJD5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2038116","Nostoc flagelliforme CCNUN1"]]},{"id":"NCBITaxon:2038371","l":"Imperialibacter sp. EC-SDR9","na":1,"nb":1,"a":[["TED%3AAF-A0A5E7YW92-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5E7YW92-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2038371","Imperialibacter sp. EC-SDR9"]]},{"id":"NCBITaxon:2038396","l":"Erythrobacter sp. EC-HK427","na":1,"nb":1,"a":[["TED%3AAF-A0A5E7Z5E0-F1-model_v4_TED02","TED novel fold AF-A0A5E7Z5E0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2038396","Erythrobacter sp. EC-HK427"]]},{"id":"NCBITaxon:2039167","l":"Sulfobacillus sp. hq2","na":1,"nb":1,"a":[["TED%3AAF-A0A2S3QD68-F1-model_v4_TED01","TED novel fold AF-A0A2S3QD68-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2039167","Sulfobacillus sp. hq2"]]},{"id":"NCBITaxon:2039283","l":"endosymbiont GvMRE of Glomus versiforme","na":1,"nb":1,"a":[["TED%3AAF-A0A397FSL0-F1-model_v4_TED01","TED novel fold AF-A0A397FSL0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2039283","endosymbiont GvMRE of Glomus versiforme"]]},{"id":"NCBITaxon:2039284","l":"Bacillus fungorum","na":1,"nb":1,"a":[["TED%3AAF-A0A2G6QK95-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G6QK95-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2039284","Bacillus fungorum"]]},{"id":"NCBITaxon:2039337","l":"Campylobacter sp. 113","na":1,"nb":1,"a":[["TED%3AAF-A0A2A4L7S7-F1-model_v4_TED02","TED novel fold AF-A0A2A4L7S7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2039337","Campylobacter sp. 113"]]},{"id":"NCBITaxon:2039874","l":"Ophiocordyceps camponoti-saundersi (nom. inval.)","na":1,"nb":1,"a":[["TED%3AAF-A0A369H6B4-F1-model_v4_TED01","TED novel fold AF-A0A369H6B4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2039874","Ophiocordyceps camponoti-saundersi (nom. inval.)"]]},{"id":"NCBITaxon:2039875","l":"Ophiocordyceps camponoti-leonardi (nom. inval.)","na":1,"nb":1,"a":[["TED%3AAF-A0A369GP28-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A369GP28-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2039875","Ophiocordyceps camponoti-leonardi (nom. inval.)"]]},{"id":"NCBITaxon:2040649","l":"Helicobacter sp. MIT 14-3879","na":1,"nb":1,"a":[["TED%3AAF-A0A3D8IJY0-F1-model_v4_TED01","TED novel fold AF-A0A3D8IJY0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2040649","Helicobacter sp. MIT 14-3879"]]},{"id":"NCBITaxon:2040653","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2A5MAG2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A5MAG2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2040653","Campylobacter sp. BCW_8712"]]},{"id":"NCBITaxon:2041346","l":"Chryseomicrobium excrementi","na":1,"nb":1,"a":[["TED%3AAF-A0A2M9EYZ0-F1-model_v4_TED02","TED novel fold AF-A0A2M9EYZ0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2041346","Chryseomicrobium excrementi"]]},{"id":"NCBITaxon:2041385","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2W4B1G5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W4B1G5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2041385","Arminella tumorigenes"]]},{"id":"NCBITaxon:2042683","l":"Olsenella sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A356G3I0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A356G3I0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2042683","Olsenella sp."]]},{"id":"NCBITaxon:2043161","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2N9L7E4-F1-model_v4_TED02","TED novel fold AF-A0A2N9L7E4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2043161","Candidatus Sulfuritelmatomonas gaucii"]]},{"id":"NCBITaxon:2043162","l":"Acidobacteriia bacterium SbA2","na":1,"nb":1,"a":[["TED%3AAF-A0A2N9MFY0-F1-model_v4_TED03","TED novel fold AF-A0A2N9MFY0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2043162","Acidobacteriia bacterium SbA2"]]},{"id":"NCBITaxon:2043164","l":"Candidatus Sulfopaludibacter sp. SbA3","na":1,"nb":1,"a":[["TED%3AAF-A0A2N9MMJ4-F1-model_v4_TED02","TED novel fold AF-A0A2N9MMJ4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2043164","Candidatus Sulfopaludibacter sp. SbA3"]]},{"id":"NCBITaxon:2043170","l":"Paremcibacter congregatus","na":1,"nb":1,"a":[["TED%3AAF-A0A2G4YR47-F1-model_v4_TED04","TED novel fold AF-A0A2G4YR47-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2043170","Paremcibacter congregatus"]]},{"id":"NCBITaxon:2044587","l":"Schaedlerella arabinosiphila","na":1,"nb":1,"a":[["TED%3AAF-A0A3R8L015-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R8L015-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2044587","Schaedlerella arabinosiphila"]]},{"id":"NCBITaxon:2044591","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2G6LTX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G6LTX2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2044591","Candidatus Fermentibacterota bacterium"]]},{"id":"NCBITaxon:2044729","l":"Candidatus Nephrothrix sp. EaCA","na":1,"nb":1,"a":[["TED%3AAF-A0A2B8A3B7-F1-model_v4_TED02","TED novel fold AF-A0A2B8A3B7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2044729","Candidatus Nephrothrix sp. EaCA"]]},{"id":"NCBITaxon:2045207","l":"Salipaludibacillus keqinensis","na":1,"nb":1,"a":[["TED%3AAF-A0A323TPP0-F1-model_v4_TED01","TED novel fold AF-A0A323TPP0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2045207","Salipaludibacillus keqinensis"]]},{"id":"NCBITaxon:2045210","l":"Pollutimonas subterranea","na":1,"nb":1,"a":[["TED%3AAF-A0A2N4U398-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2N4U398-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2045210","Pollutimonas subterranea"]]},{"id":"NCBITaxon:2045244","l":"Alteribacter lacisalsi","na":1,"nb":1,"a":[["TED%3AAF-A0A2W0H3Z1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W0H3Z1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2045244","Alteribacter lacisalsi"]]},{"id":"NCBITaxon:2045279","l":"Thermogemmatispora aurantia","na":1,"nb":1,"a":[["TED%3AAF-A0A5J4K5T4-F1-model_v4_TED01","TED novel fold AF-A0A5J4K5T4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2045279","Thermogemmatispora aurantia"]]},{"id":"NCBITaxon:2045280","l":"Thermogemmatispora argillosa","na":1,"nb":1,"a":[["TED%3AAF-A0A455T6B0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A455T6B0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2045280","Thermogemmatispora argillosa"]]},{"id":"NCBITaxon:2045438","l":"Bifidobacterium primatium","na":1,"nb":1,"a":[["TED%3AAF-A0A2M9H9T9-F1-model_v4_TED01","TED novel fold AF-A0A2M9H9T9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2045438","Bifidobacterium primatium"]]},{"id":"NCBITaxon:2047982","l":"Aquimarina algiphila","na":1,"nb":1,"a":[["TED%3AAF-A0A554VHH6-F1-model_v4_TED01","TED novel fold AF-A0A554VHH6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2047982","Aquimarina algiphila"]]},{"id":"NCBITaxon:2048264","l":"Sporosarcina sp. P10","na":1,"nb":1,"a":[["TED%3AAF-A0A2G5VZ33-F1-model_v4_TED02","TED novel fold AF-A0A2G5VZ33-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2048264","Sporosarcina sp. P10"]]},{"id":"NCBITaxon:2048283","l":"Thalassospira marina","na":1,"nb":1,"a":[["TED%3AAF-A0A2N3KSX3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3KSX3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2048283","Thalassospira marina"]]},{"id":"NCBITaxon:2048897","l":"Rhizobium sp. NXC24","na":1,"nb":1,"a":[["TED%3AAF-A0A2L0WEX0-F1-model_v4_TED02","TED novel fold AF-A0A2L0WEX0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2048897","Rhizobium sp. NXC24"]]},{"id":"NCBITaxon:204891","l":"Nocardia iowensis","na":1,"nb":1,"a":[["Pfam%3APF17837","4'-phosphopantetheinyl transferase N-terminal domain"]],"b":[["NCBITaxon%3A204891","Nocardia iowensis"]]},{"id":"NCBITaxon:2048971","l":"Hahellaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A2D8RI32-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D8RI32-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2048971","Hahellaceae bacterium"]]},{"id":"NCBITaxon:2049028","l":"Granulicatella sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A420YQP7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A420YQP7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2049028","Granulicatella sp."]]},{"id":"NCBITaxon:2049043","l":"Desulfovibrionaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A2V2FVR0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V2FVR0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2049043","Desulfovibrionaceae bacterium"]]},{"id":"NCBITaxon:2049047","l":"Prevotellaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A3D1KHR1-F1-model_v4_TED02","TED novel fold AF-A0A3D1KHR1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2049047","Prevotellaceae bacterium"]]},{"id":"NCBITaxon:2049432","l":"Chromatiaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7C7GTU1-F1-model_v4_TED02","TED novel fold AF-A0A7C7GTU1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2049432","Chromatiaceae bacterium"]]},{"id":"NCBITaxon:2052161","l":"Gallionella sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A849TGY6-F1-model_v4_TED01","TED novel fold AF-A0A849TGY6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052161","Gallionella sp."]]},{"id":"NCBITaxon:2052162","l":"Gallionellaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A5C9BKD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C9BKD6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052162","Gallionellaceae bacterium"]]},{"id":"NCBITaxon:2052183","l":"Spartobacteria bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A3B9LF62-F1-model_v4_TED02","TED novel fold AF-A0A3B9LF62-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2052183","Spartobacteria bacterium"]]},{"id":"NCBITaxon:2052315","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A849IWX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A849IWX4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052315","Candidatus Dormiibacterota bacterium"]]},{"id":"NCBITaxon:2052574","l":"Clostridium sp. CT7","na":1,"nb":1,"a":[["TED%3AAF-A0A2M8T781-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M8T781-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052574","Clostridium sp. CT7"]]},{"id":"NCBITaxon:2052832","l":"Methanofollis fontis","na":1,"nb":1,"a":[["TED%3AAF-A0A483CTM5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A483CTM5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052832","Methanofollis fontis"]]},{"id":"NCBITaxon:205332","l":"Agromyces albus","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q2L130-F1-model_v4_TED02","TED novel fold AF-A0A4Q2L130-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A205332","Agromyces albus"]]},{"id":"NCBITaxon:2053492","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A3D6DR04-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D6DR04-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053492","Accumulibacter sp."]]},{"id":"NCBITaxon:2053503","l":"Aquificaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7C7UV79-F1-model_v4_TED02","TED novel fold AF-A0A7C7UV79-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053503","Aquificaceae bacterium"]]},{"id":"NCBITaxon:2053509","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7T1AN42-F1-model_v4_TED02","TED novel fold AF-A0A7T1AN42-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053509","Candidatus Atribacteria bacterium"]]},{"id":"NCBITaxon:2053519","l":"Candidatus Beckwithbacteria bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7X9DC36-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7X9DC36-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053519","Candidatus Beckwithbacteria bacterium"]]},{"id":"NCBITaxon:2053526","l":"candidate division WWE3 bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7X9HHD0-F1-model_v4_TED02","TED novel fold AF-A0A7X9HHD0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053526","candidate division WWE3 bacterium"]]},{"id":"NCBITaxon:2053534","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A3D3F014-F1-model_v4_TED01","TED novel fold AF-A0A3D3F014-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053534","Cloacimonas sp. (SeqCode)"]]},{"id":"NCBITaxon:2053540","l":"Candidatus Collierbacteria bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A352JLT2-F1-model_v4_TED02","TED novel fold AF-A0A352JLT2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053540","Candidatus Collierbacteria bacterium"]]},{"id":"NCBITaxon:2053559","l":"Holosporales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A3D4YDA4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D4YDA4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053559","Holosporales bacterium"]]},{"id":"NCBITaxon:2053568","l":"Lautropia sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A660NSB6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A660NSB6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053568","Lautropia sp."]]},{"id":"NCBITaxon:2053573","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2W4I621-F1-model_v4_TED02","TED novel fold AF-A0A2W4I621-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053573","Candidatus Margulisiibacteriota bacterium"]]},{"id":"NCBITaxon:2053589","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A847W871-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A847W871-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053589","Minisyncoccota bacterium"]]},{"id":"NCBITaxon:2053605","l":"Richelia sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A3B9F8L2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B9F8L2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053605","Richelia sp."]]},{"id":"NCBITaxon:2053608","l":"Ruminiclostridium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A357AL72-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A357AL72-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053608","Ruminiclostridium sp."]]},{"id":"NCBITaxon:2053613","l":"Candidatus Shapirobacteria bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A420ZAT9-F1-model_v4_TED01","TED novel fold AF-A0A420ZAT9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053613","Candidatus Shapirobacteria bacterium"]]},{"id":"NCBITaxon:2053614","l":"Smithella sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A847ZAC5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A847ZAC5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2053614","Smithella sp."]]},{"id":"NCBITaxon:2053618","l":"Subdoligranulum sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A316SM40-F1-model_v4_TED01","TED novel fold AF-A0A316SM40-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053618","Subdoligranulum sp."]]},{"id":"NCBITaxon:2053622","l":"Sulfurospirillum sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A432SPG8-F1-model_v4_TED01","TED novel fold AF-A0A432SPG8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053622","Sulfurospirillum sp."]]},{"id":"NCBITaxon:2053632","l":"Tyzzerella sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A352UU01-F1-model_v4_TED01","TED novel fold AF-A0A352UU01-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053632","Tyzzerella sp."]]},{"id":"NCBITaxon:2053634","l":"Candidatus Uhrbacteria bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7C2PD08-F1-model_v4_TED01","TED novel fold AF-A0A7C2PD08-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053634","Candidatus Uhrbacteria bacterium"]]},{"id":"NCBITaxon:2053636","l":"Candidatus Veblenbacteria bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A353WER2-F1-model_v4_TED01","TED novel fold AF-A0A353WER2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053636","Candidatus Veblenbacteria bacterium"]]},{"id":"NCBITaxon:2053688","l":"Candidatus Peribacteria bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A847HPS2-F1-model_v4_TED01","TED novel fold AF-A0A847HPS2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053688","Candidatus Peribacteria bacterium"]]},{"id":"NCBITaxon:2053689","l":"Thermotogota bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A3D6DD65-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D6DD65-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053689","Thermotogota bacterium"]]},{"id":"NCBITaxon:2055137","l":"Caulobacter zeae","na":1,"nb":1,"a":[["TED%3AAF-A0A2N5DL77-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A2N5DL77-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2055137","Caulobacter zeae"]]},{"id":"NCBITaxon:2055770","l":"Cyanobacteria bacterium UBA11371","na":1,"nb":1,"a":[["TED%3AAF-A0A351LC38-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A351LC38-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2055770","Cyanobacteria bacterium UBA11371"]]},{"id":"NCBITaxon:2055781","l":"Cyanobacteria bacterium UBA11162","na":1,"nb":1,"a":[["TED%3AAF-A0A355DKP6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A355DKP6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2055781","Cyanobacteria bacterium UBA11162"]]},{"id":"NCBITaxon:2055789","l":"Cyanobacteria bacterium UBA11991","na":1,"nb":1,"a":[["TED%3AAF-A0A3D0SIN7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D0SIN7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2055789","Cyanobacteria bacterium UBA11991"]]},{"id":"NCBITaxon:2055790","l":"Cyanobacteria bacterium UBA8530","na":1,"nb":1,"a":[["TED%3AAF-A0A355UMI2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A355UMI2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2055790","Cyanobacteria bacterium UBA8530"]]},{"id":"NCBITaxon:2055793","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A355CGN5-F1-model_v4_TED01","TED novel fold AF-A0A355CGN5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2055793","Microcoleaceae cyanobacterium UBA10368"]]},{"id":"NCBITaxon:2055798","l":"Synechococcales bacterium UBA12195","na":1,"nb":1,"a":[["TED%3AAF-A0A3D5HXG3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D5HXG3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2055798","Synechococcales bacterium UBA12195"]]},{"id":"NCBITaxon:2055944","l":"Synechococcus sp. BS56D","na":1,"nb":1,"a":[["TED%3AAF-A0A4R0QZ59-F1-model_v4_TED06","TED novel fold AF-A0A4R0QZ59-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A2055944","Synechococcus sp. BS56D"]]},{"id":"NCBITaxon:2055947","l":"Corynebacterium heidelbergense","na":1,"nb":1,"a":[["TED%3AAF-A0A364V5T8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A364V5T8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2055947","Corynebacterium heidelbergense"]]},{"id":"NCBITaxon:2056840","l":"Stenotrophomonas sp. HMWF003","na":1,"nb":1,"a":[["TED%3AAF-A0A2R7QKN8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2R7QKN8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2056840","Stenotrophomonas sp. HMWF003"]]},{"id":"NCBITaxon:2056843","l":"Pseudomonas sp. HMWF006","na":1,"nb":1,"a":[["TED%3AAF-A0A2R7KA25-F1-model_v4_TED01","TED novel fold AF-A0A2R7KA25-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2056843","Pseudomonas sp. HMWF006"]]},{"id":"NCBITaxon:2056855","l":"Acidovorax sp. HMWF018","na":1,"nb":1,"a":[["TED%3AAF-A0A2R7NJV7-F1-model_v4_TED01","TED novel fold AF-A0A2R7NJV7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2056855","Acidovorax sp. HMWF018"]]},{"id":"NCBITaxon:2057025","l":"Spirosoma pollinicola","na":1,"nb":1,"a":[["TED%3AAF-A0A2K8YWY0-F1-model_v4_TED02","TED novel fold AF-A0A2K8YWY0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2057025","Spirosoma pollinicola"]]},{"id":"NCBITaxon:2057180","l":"Rahnella sp. AA","na":1,"nb":1,"a":[["TED%3AAF-A0A2N0VY06-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N0VY06-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2057180","Rahnella sp. AA"]]},{"id":"NCBITaxon:2058089","l":"Psychromonas sp. psych-6C06","na":1,"nb":1,"a":[["TED%3AAF-A0A2N0X161-F1-model_v4_TED03","TED novel fold AF-A0A2N0X161-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2058089","Psychromonas sp. psych-6C06"]]},{"id":"NCBITaxon:2058095","l":"Meiothermus sp. QL-1","na":1,"nb":1,"a":[["TED%3AAF-A0A370JWS2-F1-model_v4_TED02","TED novel fold AF-A0A370JWS2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2058095","Meiothermus sp. QL-1"]]},{"id":"NCBITaxon:2058213","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2S7K4V3-F1-model_v4_TED03","TED novel fold AF-A0A2S7K4V3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2058213","Hyphococcus luteus"]]},{"id":"NCBITaxon:2058214","l":"Rummeliibacillus sp. TYF005","na":1,"nb":1,"a":[["TED%3AAF-A0A3N5ZX25-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N5ZX25-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2058214","Rummeliibacillus sp. TYF005"]]},{"id":"NCBITaxon:2058325","l":"Psychrobacter sp. Sarcosine-3u-12","na":1,"nb":1,"a":[["TED%3AAF-A0A2N0ZU59-F1-model_v4_TED01","TED novel fold AF-A0A2N0ZU59-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2058325","Psychrobacter sp. Sarcosine-3u-12"]]},{"id":"NCBITaxon:2058390","l":"Silicimonas sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A849G7Z3-F1-model_v4_TED01","TED novel fold AF-A0A849G7Z3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2058390","Silicimonas sp."]]},{"id":"NCBITaxon:2058625","l":"Undibacterium sp. YM2","na":1,"nb":1,"a":[["TED%3AAF-A0A809QK39-F1-model_v4_TED02","TED novel fold AF-A0A809QK39-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2058625","Undibacterium sp. YM2"]]},{"id":"NCBITaxon:205918","l":"Pseudomonas syringae pv. syringae B728a","na":1,"nb":1,"a":[["Pfam%3APF15457","Type III T3SS secreted effector HopW1-1/HopPmaA"]],"b":[["NCBITaxon%3A205918","Pseudomonas syringae pv. syringae B728a"]]},{"id":"NCBITaxon:205922","l":"Pseudomonas fluorescens Pf0-1","na":1,"nb":1,"a":[["Pfam%3APF07927","HicA toxin of bacterial toxin-antitoxin,"]],"b":[["NCBITaxon%3A205922","Pseudomonas fluorescens Pf0-1"]]},{"id":"NCBITaxon:2059268","l":"Paenibacillus sp. GM2FR","na":1,"nb":1,"a":[["TED%3AAF-A0A2M9MKD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M9MKD6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2059268","Paenibacillus sp. GM2FR"]]},{"id":"NCBITaxon:2059302","l":"Pseudochryseolinea flava","na":1,"nb":1,"a":[["TED%3AAF-A0A364XWK5-F1-model_v4_TED01","TED novel fold AF-A0A364XWK5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2059302","Pseudochryseolinea flava"]]},{"id":"NCBITaxon:2059318","l":"Histoplasma mississippiense","na":1,"nb":1,"a":[["Pfam%3APF10153","rRNA-processing protein Efg1"]],"b":[["NCBITaxon%3A2059318","Histoplasma mississippiense"]]},{"id":"NCBITaxon:2059726","l":"Maribacter litoralis","na":1,"nb":1,"a":[["TED%3AAF-A0A653TP48-F1-model_v4_TED01","TED novel fold AF-A0A653TP48-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2059726","Maribacter litoralis"]]},{"id":"NCBITaxon:2060068","l":"Chimaeribacter coloradensis","na":1,"nb":1,"a":[["TED%3AAF-A0A2N5EBC2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N5EBC2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2060068","Chimaeribacter coloradensis"]]},{"id":"NCBITaxon:2060919","l":"Cyanobacteria bacterium UBA10660","na":1,"nb":1,"a":[["TED%3AAF-A0A349HXT9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A349HXT9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2060919","Cyanobacteria bacterium UBA10660"]]},{"id":"NCBITaxon:2060922","l":"Persephonella sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A432RZ01-F1-model_v4_TED01","TED novel fold AF-A0A432RZ01-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2060922","Persephonella sp."]]},{"id":"NCBITaxon:2064643","l":"Oxynema aestuarii AP17","na":1,"nb":1,"a":[["TED%3AAF-A0A6H1U0N3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6H1U0N3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2064643","Oxynema aestuarii AP17"]]},{"id":"NCBITaxon:206506","l":"Kerstersia gyiorum","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q7MWT5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Q7MWT5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A206506","Kerstersia gyiorum"]]},{"id":"NCBITaxon:2065820","l":"Hydrogenovibrio sp. SC-1","na":1,"nb":1,"a":[["TED%3AAF-A0A2I2A6S0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I2A6S0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2065820","Hydrogenovibrio sp. SC-1"]]},{"id":"NCBITaxon:2066022","l":"Burkholderia sp. WAC0059","na":1,"nb":1,"a":[["TED%3AAF-A0A2J6MTA7-F1-model_v4_TED02","TED novel fold AF-A0A2J6MTA7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2066022","Burkholderia sp. WAC0059"]]},{"id":"NCBITaxon:2066514","l":"Pseudoalteromonas sp. S1727","na":1,"nb":1,"a":[["TED%3AAF-A0A5S3RMS3-F1-model_v4_TED01","TED novel fold AF-A0A5S3RMS3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2066514","Pseudoalteromonas sp. S1727"]]},{"id":"NCBITaxon:206672","l":"","na":1,"nb":1,"a":[["Pfam%3APF05258","Dna[CI] antecedent, DciA"]],"b":[["NCBITaxon%3A206672","Bifidobacterium longum NCC2705"]]},{"id":"NCBITaxon:2067415","l":"Altererythrobacter sp. TH136","na":1,"nb":1,"a":[["TED%3AAF-A0A515LBQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A515LBQ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2067415","Altererythrobacter sp. TH136"]]},{"id":"NCBITaxon:2067454","l":"Emticicia sp. TH156","na":1,"nb":1,"a":[["TED%3AAF-A0A2N4X6Y8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N4X6Y8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2067454","Emticicia sp. TH156"]]},{"id":"NCBITaxon:2067553","l":"Halobacteriovorax sp. DA5","na":1,"nb":1,"a":[["TED%3AAF-A0A2S3QQ47-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S3QQ47-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2067553","Halobacteriovorax sp. DA5"]]},{"id":"NCBITaxon:2068624","l":"Zymomonas sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A519E950-F1-model_v4_TED02","TED novel fold AF-A0A519E950-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2068624","Zymomonas sp."]]},{"id":"NCBITaxon:2068625","l":"Candidatus Solibacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7C5AV84-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7C5AV84-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2068625","Candidatus Solibacter sp."]]},{"id":"NCBITaxon:2070510","l":"Arundinibacter roseus","na":1,"nb":1,"a":[["TED%3AAF-A0A4R4KBS1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R4KBS1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2070510","Arundinibacter roseus"]]},{"id":"NCBITaxon:2070537","l":"Commensalibacter melissae","na":1,"nb":1,"a":[["TED%3AAF-A0A318MV83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A318MV83-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2070537","Commensalibacter melissae"]]},{"id":"NCBITaxon:2070539","l":"Gammaproteobacteria bacterium ESL0073","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z3I9A8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2Z3I9A8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2070539","Gammaproteobacteria bacterium ESL0073"]]},{"id":"NCBITaxon:2070776","l":"Vibrio sp. F12","na":1,"nb":1,"a":[["TED%3AAF-A0A4U1WMF5-F1-model_v4_TED04","TED novel fold AF-A0A4U1WMF5-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2070776","Vibrio sp. F12"]]},{"id":"NCBITaxon:2072414","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A3S7KS92-F1-model_v4_TED01","TED novel fold AF-A0A3S7KS92-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2072414","Stenotrophomonas sp. ESTM1D_MKCIP4_1"]]},{"id":"NCBITaxon:2072847","l":"Adhaeribacter pallidiroseus","na":1,"nb":1,"a":[["TED%3AAF-A0A369QQQ0-F1-model_v4_TED01","TED novel fold AF-A0A369QQQ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2072847","Adhaeribacter pallidiroseus"]]},{"id":"NCBITaxon:2073169","l":"Chromobacterium alticapitis","na":1,"nb":1,"a":[["TED%3AAF-A0A2S5DB94-F1-model_v4_TED01","TED novel fold AF-A0A2S5DB94-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2073169","Chromobacterium alticapitis"]]},{"id":"NCBITaxon:2077091","l":"Flavipsychrobacter stenotrophus","na":1,"nb":1,"a":[["TED%3AAF-A0A2S7T2Z8-F1-model_v4_TED01","TED novel fold AF-A0A2S7T2Z8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2077091","Flavipsychrobacter stenotrophus"]]},{"id":"NCBITaxon:2077204","l":"Haloferax sp. Atlit-10N","na":1,"nb":1,"a":[["TED%3AAF-A0A371M5H9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A371M5H9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2077204","Haloferax sp. Atlit-10N"]]},{"id":"NCBITaxon:2077205","l":"Haloferax sp. Atlit-6N","na":1,"nb":1,"a":[["TED%3AAF-A0A371MXI1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A371MXI1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2077205","Haloferax sp. Atlit-6N"]]},{"id":"NCBITaxon:2078593","l":"Colletotrichum shisoi","na":1,"nb":1,"a":[["TED%3AAF-A0A5Q4BJG2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5Q4BJG2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2078593","Colletotrichum shisoi"]]},{"id":"NCBITaxon:2079792","l":"Mycetocola zhujimingii","na":1,"nb":1,"a":[["TED%3AAF-A0A2U1TCR4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2U1TCR4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2079792","Mycetocola zhujimingii"]]},{"id":"NCBITaxon:2080243","l":"Caldivirga sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7C2YMM7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C2YMM7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2080243","Caldivirga sp."]]},{"id":"NCBITaxon:2080452","l":"bacterium MnTg02","na":1,"nb":1,"a":[["TED%3AAF-A0A5J4E0H8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5J4E0H8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2080452","bacterium MnTg02"]]},{"id":"NCBITaxon:2080664","l":"Enterobacter cloacae complex sp. ECNIH14","na":1,"nb":1,"a":[["TED%3AAF-A0A855LWE8-F1-model_v4_TED01","TED novel fold AF-A0A855LWE8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2080664","Enterobacter cloacae complex sp. ECNIH14"]]},{"id":"NCBITaxon:2080747","l":"Streptomyces sp. Ru72","na":1,"nb":1,"a":[["TED%3AAF-A0A2S4XT49-F1-model_v4_TED02","TED novel fold AF-A0A2S4XT49-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2080747","Streptomyces sp. Ru72"]]},{"id":"NCBITaxon:2080755","l":"Tautonia sociabilis","na":1,"nb":1,"a":[["TED%3AAF-A0A432MKP2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A432MKP2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2080755","Tautonia sociabilis"]]},{"id":"NCBITaxon:2082193","l":"Clostridiaceae bacterium 14S0207","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z4W8W5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z4W8W5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2082193","Clostridiaceae bacterium 14S0207"]]},{"id":"NCBITaxon:2082949","l":"Microvirga sp. 17 mud 1-3","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z3IA84-F1-model_v4_TED02","TED novel fold AF-A0A2Z3IA84-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2082949","Microvirga sp. 17 mud 1-3"]]},{"id":"NCBITaxon:2083052","l":"Pseudomonas sp. SWI36","na":1,"nb":1,"a":[["TED%3AAF-A0A2L1ID03-F1-model_v4_TED04","TED novel fold AF-A0A2L1ID03-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2083052","Pseudomonas sp. SWI36"]]},{"id":"NCBITaxon:2086263","l":"Rhodobacteraceae bacterium WD3A24","na":1,"nb":1,"a":[["TED%3AAF-A0A2S8EVX9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S8EVX9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2086263","Rhodobacteraceae bacterium WD3A24"]]},{"id":"NCBITaxon:2088","l":"Anaeroplasma bactoclasticum","na":1,"nb":1,"a":[["TED%3AAF-A0A397QUQ0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A397QUQ0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2088","Anaeroplasma bactoclasticum"]]},{"id":"NCBITaxon:2093369","l":"Desulfurivibrio sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A3A6NT79-F1-model_v4_TED01","TED novel fold AF-A0A3A6NT79-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2093369","Desulfurivibrio sp."]]},{"id":"NCBITaxon:2093373","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7X9EJ53-F1-model_v4_TED01","TED novel fold AF-A0A7X9EJ53-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2093373","Candidatus Microgenomates bacterium"]]},{"id":"NCBITaxon:2093793","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7V1FQP9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7V1FQP9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2093793","Candidatus Nealsoniibacteriota bacterium"]]},{"id":"NCBITaxon:2093857","l":"Dysosmobacter welbionis","na":1,"nb":1,"a":[["TED%3AAF-A0A4D7ANP7-F1-model_v4_TED01","TED novel fold AF-A0A4D7ANP7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2093857","Dysosmobacter welbionis"]]},{"id":"NCBITaxon:2094022","l":"Micromonospora sp. MW-13","na":1,"nb":1,"a":[["TED%3AAF-A0A3E2YV82-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3E2YV82-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2094022","Micromonospora sp. MW-13"]]},{"id":"NCBITaxon:2094024","l":"Glaesserella australis","na":1,"nb":1,"a":[["TED%3AAF-A0A328C018-F1-model_v4_TED01","TED novel fold AF-A0A328C018-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2094024","Glaesserella australis"]]},{"id":"NCBITaxon:2094191","l":"Burkholderia sp. SRS-46","na":1,"nb":1,"a":[["TED%3AAF-A0A4V2WIF6-F1-model_v4_TED02","TED novel fold AF-A0A4V2WIF6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2094191","Burkholderia sp. SRS-46"]]},{"id":"NCBITaxon:2094193","l":"Limnohabitans sp. TS-CS-82","na":1,"nb":1,"a":[["TED%3AAF-A0A2S7JK38-F1-model_v4_TED01","TED novel fold AF-A0A2S7JK38-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2094193","Limnohabitans sp. TS-CS-82"]]},{"id":"NCBITaxon:2099400","l":"Solimicrobium silvestre","na":1,"nb":1,"a":[["TED%3AAF-A0A2S9H335-F1-model_v4_TED04","TED novel fold AF-A0A2S9H335-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2099400","Solimicrobium silvestre"]]},{"id":"NCBITaxon:2099583","l":"Streptomyces sp. ICC1","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z4VBQ9-F1-model_v4_TED02","TED novel fold AF-A0A2Z4VBQ9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2099583","Streptomyces sp. ICC1"]]},{"id":"NCBITaxon:2099665","l":"Ardenticatenia bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A3M1BQY4-F1-model_v4_TED02","TED novel fold AF-A0A3M1BQY4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2099665","Ardenticatenia bacterium"]]},{"id":"NCBITaxon:2099667","l":"Bradymonadales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A6I7PZX4-F1-model_v4_TED01","TED novel fold AF-A0A6I7PZX4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2099667","Bradymonadales bacterium"]]},{"id":"NCBITaxon:2099669","l":"candidate division WS1 bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A847M743-F1-model_v4_TED01","TED novel fold AF-A0A847M743-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2099669","candidate division WS1 bacterium"]]},{"id":"NCBITaxon:2099671","l":"Candidatus Handelsmanbacteria bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A836XCN0-F1-model_v4_TED02","TED novel fold AF-A0A836XCN0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2099671","Candidatus Handelsmanbacteria bacterium"]]},{"id":"NCBITaxon:2099675","l":"Cyclobacteriaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7D5RNH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7D5RNH3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2099675","Cyclobacteriaceae bacterium"]]},{"id":"NCBITaxon:2099692","l":"Mycobacterium sp. ITM-2017-0098","na":1,"nb":1,"a":[["TED%3AAF-A0A2S9F609-F1-model_v4_TED01","TED novel fold AF-A0A2S9F609-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2099692","Mycobacterium sp. ITM-2017-0098"]]},{"id":"NCBITaxon:2099694","l":"Mycobacterium sp. ITM-2016-00317","na":1,"nb":1,"a":[["TED%3AAF-A0A2S8N1M8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S8N1M8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2099694","Mycobacterium sp. ITM-2016-00317"]]},{"id":"NCBITaxon:2099695","l":"Mycobacterium sp. ITM-2016-00316","na":1,"nb":1,"a":[["TED%3AAF-A0A2S8LFS5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S8LFS5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2099695","Mycobacterium sp. ITM-2016-00316"]]},{"id":"NCBITaxon:2100161","l":"Desulfobacteraceae bacterium SEEP-SAG9","na":1,"nb":1,"a":[["TED%3AAF-A0A2S8K7A3-F1-model_v4_TED04","TED novel fold AF-A0A2S8K7A3-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2100161","Desulfobacteraceae bacterium SEEP-SAG9"]]},{"id":"NCBITaxon:2100725","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2U2XAU4-F1-model_v4_TED01","TED novel fold AF-A0A2U2XAU4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2100725","Brumimicrobium oceani"]]},{"id":"NCBITaxon:2107693","l":"Chlorogloea sp. CCALA 695","na":1,"nb":1,"a":[["TED%3AAF-A0A2T1EQ25-F1-model_v4_TED01","TED novel fold AF-A0A2T1EQ25-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2107693","Chlorogloea sp. CCALA 695"]]},{"id":"NCBITaxon:2108467","l":"Thermobacillus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A3E0R231-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3E0R231-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2108467","Thermobacillus sp."]]},{"id":"NCBITaxon:2109333","l":"Streptomyces dioscori","na":1,"nb":1,"a":[["TED%3AAF-A0A2P8PXQ3-F1-model_v4_TED01","TED novel fold AF-A0A2P8PXQ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2109333","Streptomyces dioscori"]]},{"id":"NCBITaxon:211165","l":"Chlorogloeopsis fritschii PCC 6912","na":1,"nb":1,"a":[["TED%3AAF-A0A433N4H9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A433N4H9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A211165","Chlorogloeopsis fritschii PCC 6912"]]},{"id":"NCBITaxon:2125990","l":"Pseudodesulfovibrio hydrargyri","na":1,"nb":1,"a":[["TED%3AAF-A0A1J5N6X0-F1-model_v4_TED02","TED novel fold AF-A0A1J5N6X0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2125990","Pseudodesulfovibrio hydrargyri"]]},{"id":"NCBITaxon:212602","l":"Erysiphe neolycopersici","na":1,"nb":1,"a":[["TED%3AAF-A0A420I879-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A420I879-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A212602","Erysiphe neolycopersici"]]},{"id":"NCBITaxon:2126343","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A451ACY0-F1-model_v4_TED01","TED novel fold AF-A0A451ACY0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2126343","Candidatus Kentrum sp. TUN"]]},{"id":"NCBITaxon:2126353","l":"Pedobacter yulinensis","na":1,"nb":1,"a":[["TED%3AAF-A0A2T3HK13-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T3HK13-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2126353","Pedobacter yulinensis"]]},{"id":"NCBITaxon:2126553","l":"Christiangramia fulva","na":1,"nb":1,"a":[["TED%3AAF-A0A2R3Z8P3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2R3Z8P3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2126553","Christiangramia fulva"]]},{"id":"NCBITaxon:212717","l":"Clostridium tetani E88","na":1,"nb":1,"a":[["Pfam%3APF08453","Peptidase family M9 N-terminal"]],"b":[["NCBITaxon%3A212717","Clostridium tetani E88"]]},{"id":"NCBITaxon:212767","l":"Mycobacterium sp. JS623","na":1,"nb":1,"a":[["TED%3AAF-L0J9K3-F1-model_v4_TED01","TED novel fold AF-L0J9K3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A212767","Mycobacterium sp. JS623"]]},{"id":"NCBITaxon:213224","l":"Geothermobacter ehrlichii","na":1,"nb":1,"a":[["TED%3AAF-A0A5D3WPY1-F1-model_v4_TED02","TED novel fold AF-A0A5D3WPY1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A213224","Geothermobacter ehrlichii"]]},{"id":"NCBITaxon:213248","l":"Mesonia algae","na":1,"nb":1,"a":[["TED%3AAF-A0A2W7IWM5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W7IWM5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A213248","Mesonia algae"]]},{"id":"NCBITaxon:2133","l":"Spiroplasma citri","na":1,"nb":1,"a":[["TED%3AAF-A0A6I7GSK0-F1-model_v4_TED04","TED novel fold AF-A0A6I7GSK0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2133","Spiroplasma citri"]]},{"id":"NCBITaxon:2133765","l":"Flavobacterium circumlabens","na":1,"nb":1,"a":[["TED%3AAF-A0A8B4Y0F6-F1-model_v4_TED01","TED novel fold AF-A0A8B4Y0F6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2133765","Flavobacterium circumlabens"]]},{"id":"NCBITaxon:2133947","l":"Bradyrhizobium sp. MOS002","na":1,"nb":1,"a":[["TED%3AAF-A0A2T2QB40-F1-model_v4_TED02","TED novel fold AF-A0A2T2QB40-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2133947","Bradyrhizobium sp. MOS002"]]},{"id":"NCBITaxon:2133950","l":"Fluviicola sp. XM-24bin1","na":1,"nb":1,"a":[["TED%3AAF-A0A316K2S0-F1-model_v4_TED01","TED novel fold AF-A0A316K2S0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2133950","Fluviicola sp. XM-24bin1"]]},{"id":"NCBITaxon:2133960","l":"Paraconexibacter algicola","na":1,"nb":1,"a":[["TED%3AAF-A0A2T4UGZ7-F1-model_v4_TED03","TED novel fold AF-A0A2T4UGZ7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2133960","Paraconexibacter algicola"]]},{"id":"NCBITaxon:2135462","l":"Chitinophaga sp. S165","na":1,"nb":1,"a":[["TED%3AAF-A0A317MMT4-F1-model_v4_TED02","TED novel fold AF-A0A317MMT4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2135462","Chitinophaga sp. S165"]]},{"id":"NCBITaxon:2135470","l":"Mucilaginibacter sp. OV119","na":1,"nb":1,"a":[["TED%3AAF-A0A318VA29-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A318VA29-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2135470","Mucilaginibacter sp. OV119"]]},{"id":"NCBITaxon:2135475","l":"Ensifer sp. AP48","na":1,"nb":1,"a":[["TED%3AAF-A0A2V4Z2D5-F1-model_v4_TED01","TED novel fold AF-A0A2V4Z2D5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2135475","Ensifer sp. AP48"]]},{"id":"NCBITaxon:2135584","l":"Pseudomonas sp. OV081","na":1,"nb":1,"a":[["TED%3AAF-A0A3D9WYP5-F1-model_v4_TED02","TED novel fold AF-A0A3D9WYP5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2135584","Pseudomonas sp. OV081"]]},{"id":"NCBITaxon:2135619","l":"Arenibacter sp. ARW7G5Y1","na":1,"nb":1,"a":[["TED%3AAF-A0A318IYY3-F1-model_v4_TED02","TED novel fold AF-A0A318IYY3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2135619","Arenibacter sp. ARW7G5Y1"]]},{"id":"NCBITaxon:2135627","l":"Flavobacterium sp. 123","na":1,"nb":1,"a":[["TED%3AAF-A0A495SFE8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A495SFE8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2135627","Flavobacterium sp. 123"]]},{"id":"NCBITaxon:2135631","l":"Janthinobacterium sp. 78","na":1,"nb":1,"a":[["TED%3AAF-A0A2U0T4V2-F1-model_v4_TED02","TED novel fold AF-A0A2U0T4V2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2135631","Janthinobacterium sp. 78"]]},{"id":"NCBITaxon:2135643","l":"Simplicispira sp. 125","na":1,"nb":1,"a":[["TED%3AAF-A0A2U1CAF0-F1-model_v4_TED01","TED novel fold AF-A0A2U1CAF0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2135643","Simplicispira sp. 125"]]},{"id":"NCBITaxon:2135677","l":"Nocardioides sp. CF204","na":1,"nb":1,"a":[["TED%3AAF-A0A2T5WBB4-F1-model_v4_TED02","TED novel fold AF-A0A2T5WBB4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2135677","Nocardioides sp. CF204"]]},{"id":"NCBITaxon:2135688","l":"Novosphingobium sp. GV013","na":1,"nb":1,"a":[["TED%3AAF-A0A4V3E3S6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4V3E3S6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2135688","Novosphingobium sp. GV013"]]},{"id":"NCBITaxon:2135721","l":"Pelomonas sp. BT06","na":1,"nb":1,"a":[["TED%3AAF-A0A397S1Z7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A397S1Z7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2135721","Pelomonas sp. BT06"]]},{"id":"NCBITaxon:2135723","l":"Promicromonospora sp. AC04","na":1,"nb":1,"a":[["TED%3AAF-A0A2T6LHY3-F1-model_v4_TED02","TED novel fold AF-A0A2T6LHY3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2135723","Promicromonospora sp. AC04"]]},{"id":"NCBITaxon:2135724","l":"Promicromonospora sp. CF082","na":1,"nb":1,"a":[["TED%3AAF-A0A4V2R0G5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4V2R0G5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2135724","Promicromonospora sp. CF082"]]},{"id":"NCBITaxon:2135746","l":"Mycobacterium sp. YR708","na":1,"nb":1,"a":[["TED%3AAF-A0A4R2UA23-F1-model_v4_TED01","TED novel fold AF-A0A4R2UA23-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2135746","Mycobacterium sp. YR708"]]},{"id":"NCBITaxon:2135765","l":"Cellvibrio sp. YR554","na":1,"nb":1,"a":[["TED%3AAF-A0A4R7BLG2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4R7BLG2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2135765","Cellvibrio sp. YR554"]]},{"id":"NCBITaxon:2135812","l":"Rhodobacteraceae bacterium PT6CLA","na":1,"nb":1,"a":[["TED%3AAF-A0A559Q8H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A559Q8H4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2135812","Rhodobacteraceae bacterium PT6CLA"]]},{"id":"NCBITaxon:2136401","l":"Streptomyces sp. YIM 121038","na":1,"nb":1,"a":[["TED%3AAF-A0A5B7V919-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B7V919-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2136401","Streptomyces sp. YIM 121038"]]},{"id":"NCBITaxon:2137198","l":"Marinobacter sp. B9-2","na":1,"nb":1,"a":[["TED%3AAF-A0A2T4DFM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T4DFM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2137198","Marinobacter sp. B9-2"]]},{"id":"NCBITaxon:2138300","l":"Nocardioides gansuensis","na":1,"nb":1,"a":[["TED%3AAF-A0A2T8F569-F1-model_v4_TED01","TED novel fold AF-A0A2T8F569-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2138300","Nocardioides gansuensis"]]},{"id":"NCBITaxon:2139","l":"Spiroplasma clarkii","na":1,"nb":1,"a":[["TED%3AAF-A0A2K8KLS2-F1-model_v4_TED02","TED novel fold AF-A0A2K8KLS2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2139","Spiroplasma clarkii"]]},{"id":"NCBITaxon:2153358","l":"Variovorax sp. KBW07","na":1,"nb":1,"a":[["TED%3AAF-A0A3N7D3F2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N7D3F2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2153358","Variovorax sp. KBW07"]]},{"id":"NCBITaxon:2153361","l":"Paucibacter sp. KBW04","na":1,"nb":1,"a":[["TED%3AAF-A0A3N7C9I4-F1-model_v4_TED02","TED novel fold AF-A0A3N7C9I4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2153361","Paucibacter sp. KBW04"]]},{"id":"NCBITaxon:2153364","l":"Pedobacter sp. KBW01","na":1,"nb":1,"a":[["TED%3AAF-A0A3N7CIX9-F1-model_v4_TED01","TED novel fold AF-A0A3N7CIX9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2153364","Pedobacter sp. KBW01"]]},{"id":"NCBITaxon:215590","l":"Brucella gallinifaecis","na":1,"nb":1,"a":[["TED%3AAF-A0A502BMS9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A502BMS9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A215590","Brucella gallinifaecis"]]},{"id":"NCBITaxon:215637","l":"Dimargaris cristalligena","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q0A1Q7-F1-model_v4_TED02","TED novel fold AF-A0A4Q0A1Q7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A215637","Dimargaris cristalligena"]]},{"id":"NCBITaxon:2161813","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z6UKL2-F1-model_v4_TED02","TED novel fold AF-A0A2Z6UKL2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2161813","Glaciecola sp. KUL10"]]},{"id":"NCBITaxon:2161826","l":"Chromobacterium sp. Panama","na":1,"nb":1,"a":[["TED%3AAF-A0A2T5NEF8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T5NEF8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2161826","Chromobacterium sp. Panama"]]},{"id":"NCBITaxon:2161864","l":"Opitutus sp. ER46","na":1,"nb":1,"a":[["TED%3AAF-A0A2T6CMU6-F1-model_v4_TED02","TED novel fold AF-A0A2T6CMU6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2161864","Opitutus sp. ER46"]]},{"id":"NCBITaxon:2161866","l":"Spartobacteria bacterium LR76","na":1,"nb":1,"a":[["TED%3AAF-A0A2T6D158-F1-model_v4_TED02","TED novel fold AF-A0A2T6D158-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2161866","Spartobacteria bacterium LR76"]]},{"id":"NCBITaxon:2161867","l":"Verrucomicrobia bacterium LW23","na":1,"nb":1,"a":[["TED%3AAF-A0A2T6DMB5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T6DMB5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2161867","Verrucomicrobia bacterium LW23"]]},{"id":"NCBITaxon:2162637","l":"Bacteroides sp. PHL 2737","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q0U345-F1-model_v4_TED02","TED novel fold AF-A0A4Q0U345-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2162637","Bacteroides sp. PHL 2737"]]},{"id":"NCBITaxon:2162893","l":"Marinilabilia rubra","na":1,"nb":1,"a":[["TED%3AAF-A0A2U2B527-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U2B527-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2162893","Marinilabilia rubra"]]},{"id":"NCBITaxon:2163881","l":"Paenibacillus cremeus","na":1,"nb":1,"a":[["TED%3AAF-A0A559KAQ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A559KAQ1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2163881","Paenibacillus cremeus"]]},{"id":"NCBITaxon:2164","l":"Methanobacterium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A6A8RVR7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6A8RVR7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2164","Methanobacterium sp."]]},{"id":"NCBITaxon:2164062","l":"Xanthomonas vasicola pv. zeae","na":1,"nb":1,"a":[["TED%3AAF-A0A7C7FQW4-F1-model_v4_TED02","TED novel fold AF-A0A7C7FQW4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2164062","Xanthomonas vasicola pv. zeae"]]},{"id":"NCBITaxon:216895","l":"Vibrio vulnificus CMCP6","na":1,"nb":1,"a":[["Pfam%3APF18416","N-acetylglucosamine binding protein domain 2"]],"b":[["NCBITaxon%3A216895","Vibrio vulnificus CMCP6"]]},{"id":"NCBITaxon:216932","l":"Spiroplasma chinense","na":1,"nb":1,"a":[["TED%3AAF-A0A5B9Y534-F1-model_v4_TED01","TED novel fold AF-A0A5B9Y534-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A216932","Spiroplasma chinense"]]},{"id":"NCBITaxon:216934","l":"Spiroplasma corruscae","na":1,"nb":1,"a":[["TED%3AAF-A0A222ENS0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A222ENS0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A216934","Spiroplasma corruscae"]]},{"id":"NCBITaxon:216938","l":"Spiroplasma helicoides","na":1,"nb":1,"a":[["TED%3AAF-A0A1B3SKL9-F1-model_v4_TED02","TED novel fold AF-A0A1B3SKL9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A216938","Spiroplasma helicoides"]]},{"id":"NCBITaxon:2169413","l":"Blastocatellia bacterium AA13","na":1,"nb":1,"a":[["TED%3AAF-A0A321L7A5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A321L7A5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2169413","Blastocatellia bacterium AA13"]]},{"id":"NCBITaxon:2169414","l":"Chitinophaga parva","na":1,"nb":1,"a":[["TED%3AAF-A0A2T7BEI4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T7BEI4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2169414","Chitinophaga parva"]]},{"id":"NCBITaxon:2170265","l":"Candidatus Similichlamydia laticola","na":1,"nb":1,"a":[["TED%3AAF-A0A369KIK0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A369KIK0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2170265","Candidatus Similichlamydia laticola"]]},{"id":"NCBITaxon:2170730","l":"Acinetobacter sp. AM","na":1,"nb":1,"a":[["TED%3AAF-A0A315WJ61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A315WJ61-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2170730","Acinetobacter sp. AM"]]},{"id":"NCBITaxon:2170733","l":"Pseudomonas sp. NDM","na":1,"nb":1,"a":[["TED%3AAF-A0A2U1QT22-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U1QT22-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2170733","Pseudomonas sp. NDM"]]},{"id":"NCBITaxon:2171751","l":"Pueribacillus theae","na":1,"nb":1,"a":[["TED%3AAF-A0A2U1K335-F1-model_v4_TED02","TED novel fold AF-A0A2U1K335-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2171751","Pueribacillus theae"]]},{"id":"NCBITaxon:2172121","l":"Pararhodobacter oceanensis","na":1,"nb":1,"a":[["TED%3AAF-A0A2T8HZ71-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T8HZ71-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2172121","Pararhodobacter oceanensis"]]},{"id":"NCBITaxon:2173149","l":"Marine Group III euryarchaeote","na":1,"nb":1,"a":[["TED%3AAF-A0A7C7PQZ2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7C7PQZ2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2173149","Marine Group III euryarchaeote"]]},{"id":"NCBITaxon:2174845","l":"Marixanthomonas spongiae","na":1,"nb":1,"a":[["TED%3AAF-A0A2U0HZF1-F1-model_v4_TED02","TED novel fold AF-A0A2U0HZF1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2174845","Marixanthomonas spongiae"]]},{"id":"NCBITaxon:2175091","l":"Flavobacterium album","na":1,"nb":1,"a":[["TED%3AAF-A0A2S1QWV5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S1QWV5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2175091","Flavobacterium album"]]},{"id":"NCBITaxon:2175229","l":"Corticimicrobacter populi","na":1,"nb":1,"a":[["TED%3AAF-A0A2V1K5S0-F1-model_v4_TED01","TED novel fold AF-A0A2V1K5S0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2175229","Corticimicrobacter populi"]]},{"id":"NCBITaxon:2175648","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2W1US76-F1-model_v4_TED03","TED novel fold AF-A0A2W1US76-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2175648","Curtobacterium sp. MCLR17_007"]]},{"id":"NCBITaxon:2175659","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2W1TXH0-F1-model_v4_TED01","TED novel fold AF-A0A2W1TXH0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2175659","Curtobacterium sp. MCBD17_032"]]},{"id":"NCBITaxon:2175674","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2W1ZB63-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W1ZB63-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2175674","Curtobacterium sp. MCBD17_040"]]},{"id":"NCBITaxon:2175803","l":"Bacteroidetes bacterium SCGC AAA795-G10","na":1,"nb":1,"a":[["TED%3AAF-A0A2U2RZ29-F1-model_v4_TED03","TED novel fold AF-A0A2U2RZ29-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2175803","Bacteroidetes bacterium SCGC AAA795-G10"]]},{"id":"NCBITaxon:2175864","l":"Streptomyces sp. NHF165","na":1,"nb":1,"a":[["TED%3AAF-A0A6I6WF12-F1-model_v4_TED04","TED novel fold AF-A0A6I6WF12-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2175864","Streptomyces sp. NHF165"]]},{"id":"NCBITaxon:2182384","l":"Erythrobacter aureus","na":1,"nb":1,"a":[["TED%3AAF-A0A345YJI9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A345YJI9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2182384","Erythrobacter aureus"]]},{"id":"NCBITaxon:2182432","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2U2N383-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2U2N383-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2182432","Sediminicurvatus halobius"]]},{"id":"NCBITaxon:2183922","l":"Mucilaginibacter sp. 94","na":1,"nb":1,"a":[["TED%3AAF-A0A495T2W7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A495T2W7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2183922","Mucilaginibacter sp. 94"]]},{"id":"NCBITaxon:2183984","l":"Alcanivorax sp. EA2","na":1,"nb":1,"a":[["TED%3AAF-A0A3D9IAU4-F1-model_v4_TED02","TED novel fold AF-A0A3D9IAU4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2183984","Alcanivorax sp. EA2"]]},{"id":"NCBITaxon:2183985","l":"Halomonas sp. A11-A","na":1,"nb":1,"a":[["TED%3AAF-A0A317P655-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A317P655-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2183985","Halomonas sp. A11-A"]]},{"id":"NCBITaxon:2183989","l":"Brachybacterium sp. AG952","na":1,"nb":1,"a":[["TED%3AAF-A0A4R6R2W4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R6R2W4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2183989","Brachybacterium sp. AG952"]]},{"id":"NCBITaxon:2183996","l":"Rhodococcus sp. AG1013","na":1,"nb":1,"a":[["TED%3AAF-A0A370FT27-F1-model_v4_TED02","TED novel fold AF-A0A370FT27-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2183996","Rhodococcus sp. AG1013"]]},{"id":"NCBITaxon:2184052","l":"Methanomicrobiales archaeon","na":1,"nb":1,"a":[["TED%3AAF-A0A7K4CCY7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K4CCY7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2184052","Methanomicrobiales archaeon"]]},{"id":"NCBITaxon:2184311","l":"Candidatus Nitrotoga sp. MKT","na":1,"nb":1,"a":[["TED%3AAF-A0A3E1D1N1-F1-model_v4_TED01","TED novel fold AF-A0A3E1D1N1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2184311","Candidatus Nitrotoga sp. MKT"]]},{"id":"NCBITaxon:2184346","l":"Candidatus Marinamargulisbacteria bacterium SCGC AG-439-L15","na":1,"nb":1,"a":[["TED%3AAF-A0A328RKB5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A328RKB5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2184346","Candidatus Marinamargulisbacteria bacterium SCGC AG-439-L15"]]},{"id":"NCBITaxon:2184347","l":"Candidatus Marinamargulisbacteria bacterium SCGC AAA071-K20","na":1,"nb":1,"a":[["TED%3AAF-A0A328RMQ6-F1-model_v4_TED01","TED novel fold AF-A0A328RMQ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2184347","Candidatus Marinamargulisbacteria bacterium SCGC AAA071-K20"]]},{"id":"NCBITaxon:2184554","l":"Burkholderia sp. Bp8992","na":1,"nb":1,"a":[["TED%3AAF-A0A3N8HMV5-F1-model_v4_TED02","TED novel fold AF-A0A3N8HMV5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2184554","Burkholderia sp. Bp8992"]]},{"id":"NCBITaxon:2184569","l":"Burkholderia sp. Bp9125","na":1,"nb":1,"a":[["TED%3AAF-A0A3N8D7F1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3N8D7F1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2184569","Burkholderia sp. Bp9125"]]},{"id":"NCBITaxon:2184757","l":"Legionella qingyii","na":1,"nb":1,"a":[["TED%3AAF-A0A317TZ28-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A317TZ28-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2184757","Legionella qingyii"]]},{"id":"NCBITaxon:218936","l":"Aeromonas simiae","na":1,"nb":1,"a":[["TED%3AAF-A0A5J6WY36-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5J6WY36-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A218936","Aeromonas simiae"]]},{"id":"NCBITaxon:2200760","l":"Streptomyces sp. Act143","na":1,"nb":1,"a":[["TED%3AAF-A0A2U2ZUU3-F1-model_v4_TED01","TED novel fold AF-A0A2U2ZUU3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2200760","Streptomyces sp. Act143"]]},{"id":"NCBITaxon:2200886","l":"Sulfolobus sp. F3","na":1,"nb":1,"a":[["TED%3AAF-A0A550D1T9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A550D1T9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2200886","Sulfolobus sp. F3"]]},{"id":"NCBITaxon:2201350","l":"Phenylobacterium parvum","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z3HP51-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2Z3HP51-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2201350","Phenylobacterium parvum"]]},{"id":"NCBITaxon:2202136","l":"Ruminococcaceae bacterium R-25","na":1,"nb":1,"a":[["TED%3AAF-A0A316BET6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A316BET6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2202136","Ruminococcaceae bacterium R-25"]]},{"id":"NCBITaxon:2202143","l":"candidate division Kazan bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A420ZCG7-F1-model_v4_TED06","TED novel fold AF-A0A420ZCG7-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A2202143","candidate division Kazan bacterium"]]},{"id":"NCBITaxon:2202149","l":"Thermomonas aquatica","na":1,"nb":1,"a":[["TED%3AAF-A0A5B7ZSQ5-F1-model_v4_TED02","TED novel fold AF-A0A5B7ZSQ5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2202149","Thermomonas aquatica"]]},{"id":"NCBITaxon:2202151","l":"Aquificota bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A3M2ANL4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M2ANL4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2202151","Aquificota bacterium"]]},{"id":"NCBITaxon:2202153","l":"Thermodesulfobacteriota bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A660S9H5-F1-model_v4_TED01","TED novel fold AF-A0A660S9H5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2202153","Thermodesulfobacteriota bacterium"]]},{"id":"NCBITaxon:2202161","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A329J8I8-F1-model_v4_TED01","TED novel fold AF-A0A329J8I8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2202161","Pseudomonas sp. RIT412"]]},{"id":"NCBITaxon:2202197","l":"Candidatus Methylumidiphilus alinenensis","na":1,"nb":1,"a":[["TED%3AAF-A0A2W4RIR3-F1-model_v4_TED02","TED novel fold AF-A0A2W4RIR3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2202197","Candidatus Methylumidiphilus alinenensis"]]},{"id":"NCBITaxon:2202201","l":"Leptospira yasudae","na":1,"nb":1,"a":[["TED%3AAF-A0A5F2BAE7-F1-model_v4_TED01","TED novel fold AF-A0A5F2BAE7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2202201","Leptospira yasudae"]]},{"id":"NCBITaxon:2202249","l":"Streptosporangium sp. 'caverna'","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z3USU0-F1-model_v4_TED03","TED novel fold AF-A0A2Z3USU0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2202249","Streptosporangium sp. 'caverna'"]]},{"id":"NCBITaxon:2202516","l":"Streptomyces sp. ZEA17I","na":1,"nb":1,"a":[["TED%3AAF-A0A2V2Q3I4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V2Q3I4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2202516","Streptomyces sp. ZEA17I"]]},{"id":"NCBITaxon:2202652","l":"Pseudomonas sp. RW405","na":1,"nb":1,"a":[["TED%3AAF-A0A2V3CQ14-F1-model_v4_TED01","TED novel fold AF-A0A2V3CQ14-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2202652","Pseudomonas sp. RW405"]]},{"id":"NCBITaxon:2202825","l":"Methylobacterium durans","na":1,"nb":1,"a":[["TED%3AAF-A0A2U8W1A2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2U8W1A2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2202825","Methylobacterium durans"]]},{"id":"NCBITaxon:2203209","l":"Streptomyces sp. WAC 06725","na":1,"nb":1,"a":[["TED%3AAF-A0A429JII5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A429JII5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2203209","Streptomyces sp. WAC 06725"]]},{"id":"NCBITaxon:2203212","l":"Pedobacter paludis","na":1,"nb":1,"a":[["TED%3AAF-A0A317EV51-F1-model_v4_TED02","TED novel fold AF-A0A317EV51-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2203212","Pedobacter paludis"]]},{"id":"NCBITaxon:2203419","l":"Ochrobactrum sp. POC9","na":1,"nb":1,"a":[["TED%3AAF-A0A317LGQ4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A317LGQ4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2203419","Ochrobactrum sp. POC9"]]},{"id":"NCBITaxon:2203782","l":"Ensifer sp. M14","na":1,"nb":1,"a":[["TED%3AAF-A0A395L633-F1-model_v4_TED03","TED novel fold AF-A0A395L633-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2203782","Ensifer sp. M14"]]},{"id":"NCBITaxon:2204294","l":"Photobacterium malacitanum","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y6MEK4-F1-model_v4_TED01","TED novel fold AF-A0A1Y6MEK4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2204294","Photobacterium malacitanum"]]},{"id":"NCBITaxon:220664","l":"Pseudomonas protegens Pf-5","na":1,"nb":1,"a":[["Pfam%3APF18089","DAPG hydrolase PhiG domain"]],"b":[["NCBITaxon%3A220664","Pseudomonas protegens Pf-5"]]},{"id":"NCBITaxon:220927","l":"Mycobacterium saskatchewanense","na":1,"nb":1,"a":[["TED%3AAF-A0A1X2C961-F1-model_v4_TED02","TED novel fold AF-A0A1X2C961-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A220927","Mycobacterium saskatchewanense"]]},{"id":"NCBITaxon:2211119","l":"Lujinxingia litoralis","na":1,"nb":1,"a":[["TED%3AAF-A0A328C1B2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A328C1B2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2211119","Lujinxingia litoralis"]]},{"id":"NCBITaxon:2211139","l":"Paenibacillus flagellatus","na":1,"nb":1,"a":[["TED%3AAF-A0A2V5JTW1-F1-model_v4_TED01","TED novel fold AF-A0A2V5JTW1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2211139","Paenibacillus flagellatus"]]},{"id":"NCBITaxon:2211445","l":"Flavobacterium hydrophilum","na":1,"nb":1,"a":[["TED%3AAF-A0A2V4C030-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2V4C030-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2211445","Flavobacterium hydrophilum"]]},{"id":"NCBITaxon:2212467","l":"Bacteroidaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A6F9ZK93-F1-model_v4_TED05","TED novel fold AF-A0A6F9ZK93-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2212467","Bacteroidaceae bacterium"]]},{"id":"NCBITaxon:221359","l":"Synechococcus sp. RS9916","na":1,"nb":1,"a":[["TED%3AAF-Q05VF6-F1-model_v4_TED02","TED highly-symmetric fold AF-Q05VF6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A221359","Synechococcus sp. RS9916"]]},{"id":"NCBITaxon:2217664","l":"Croceicoccus ponticola","na":1,"nb":1,"a":[["TED%3AAF-A0A437GZM5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A437GZM5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2217664","Croceicoccus ponticola"]]},{"id":"NCBITaxon:2219224","l":"Nonomuraea phyllanthi","na":1,"nb":1,"a":[["TED%3AAF-A0A5C4WBR4-F1-model_v4_TED03","TED novel fold AF-A0A5C4WBR4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2219224","Nonomuraea phyllanthi"]]},{"id":"NCBITaxon:2231116","l":"Mycoplasmatota bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7C6RQP9-F1-model_v4_TED01","TED novel fold AF-A0A7C6RQP9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2231116","Mycoplasmatota bacterium"]]},{"id":"NCBITaxon:2234116","l":"Marinilabiliaceae bacterium JC017","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q8RYP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q8RYP7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2234116","Marinilabiliaceae bacterium JC017"]]},{"id":"NCBITaxon:223788","l":"Balnearium lithotrophicum","na":1,"nb":1,"a":[["TED%3AAF-A0A521D8E7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A521D8E7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A223788","Balnearium lithotrophicum"]]},{"id":"NCBITaxon:2249476","l":"Leishmania orientalis","na":1,"nb":1,"a":[["TED%3AAF-A0A836HGD2-F1-model_v4_TED02","TED novel fold AF-A0A836HGD2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2249476","Leishmania orientalis"]]},{"id":"NCBITaxon:2249761","l":"Halorubrum sp. 48-1-W","na":1,"nb":1,"a":[["TED%3AAF-A0A329T5Y7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A329T5Y7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2249761","Halorubrum sp. 48-1-W"]]},{"id":"NCBITaxon:2250252","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z4Y898-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z4Y898-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2250252","Candidatus Sumerlaea chitinivorans"]]},{"id":"NCBITaxon:225848","l":"Shewanella psychrophila","na":1,"nb":1,"a":[["TED%3AAF-A0A1S6HJS1-F1-model_v4_TED02","TED novel fold AF-A0A1S6HJS1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A225848","Shewanella psychrophila"]]},{"id":"NCBITaxon:2258964","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A3D9AIB1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D9AIB1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2258964","Chryseobacterium sp. 5_R23647"]]},{"id":"NCBITaxon:2259036","l":"Chitinophaga flava","na":1,"nb":1,"a":[["TED%3AAF-A0A365XWH2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A365XWH2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2259036","Chitinophaga flava"]]},{"id":"NCBITaxon:2259342","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A3N5YBN8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N5YBN8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2259342","Paralteromonas sediminis"]]},{"id":"NCBITaxon:2259644","l":"Streptomyces sp. YIM 130001","na":1,"nb":1,"a":[["TED%3AAF-A0A399HGF2-F1-model_v4_TED02","TED novel fold AF-A0A399HGF2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2259644","Streptomyces sp. YIM 130001"]]},{"id":"NCBITaxon:226506","l":"Algoriphagus ornithinivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A1I5CGG6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5CGG6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A226506","Algoriphagus ornithinivorans"]]},{"id":"NCBITaxon:2267264","l":"Alteromonas sp. RKMC-009","na":1,"nb":1,"a":[["TED%3AAF-A0A385MUJ3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A385MUJ3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2267264","Alteromonas sp. RKMC-009"]]},{"id":"NCBITaxon:2268024","l":"Ephemeroptericola cinctiostellae","na":1,"nb":1,"a":[["TED%3AAF-A0A345DDH0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A345DDH0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2268024","Ephemeroptericola cinctiostellae"]]},{"id":"NCBITaxon:2268140","l":"Thioploca sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7C2AVM7-F1-model_v4_TED09","TED highly-symmetric fold AF-A0A7C2AVM7-F1-model_v4_TED09"]],"b":[["NCBITaxon%3A2268140","Thioploca sp."]]},{"id":"NCBITaxon:2268141","l":"Thermopetrobacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7C5SDZ9-F1-model_v4_TED01","TED novel fold AF-A0A7C5SDZ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2268141","Thermopetrobacter sp."]]},{"id":"NCBITaxon:2268177","l":"Aeromonadales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7V2S520-F1-model_v4_TED02","TED novel fold AF-A0A7V2S520-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2268177","Aeromonadales bacterium"]]},{"id":"NCBITaxon:2268179","l":"Campylobacteraceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A850JRK3-F1-model_v4_TED02","TED novel fold AF-A0A850JRK3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2268179","Campylobacteraceae bacterium"]]},{"id":"NCBITaxon:2268180","l":"Campylobacterales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7V4QCR0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7V4QCR0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2268180","Campylobacterales bacterium"]]},{"id":"NCBITaxon:2268181","l":"candidate division CPR3 bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7V3J9M4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V3J9M4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2268181","candidate division CPR3 bacterium"]]},{"id":"NCBITaxon:2268182","l":"Candidatus Buchananbacteria bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A849W7Y3-F1-model_v4_TED02","TED novel fold AF-A0A849W7Y3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2268182","Candidatus Buchananbacteria bacterium"]]},{"id":"NCBITaxon:2268192","l":"Chlorobiota bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7J4V7N2-F1-model_v4_TED01","TED novel fold AF-A0A7J4V7N2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2268192","Chlorobiota bacterium"]]},{"id":"NCBITaxon:2268198","l":"Nitrososphaeria archaeon","na":1,"nb":1,"a":[["TED%3AAF-A0A7J3PL42-F1-model_v4_TED02","TED novel fold AF-A0A7J3PL42-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2268198","Nitrososphaeria archaeon"]]},{"id":"NCBITaxon:2268200","l":"Sulfolobales archaeon","na":1,"nb":1,"a":[["TED%3AAF-A0A7C5XR34-F1-model_v4_TED01","TED novel fold AF-A0A7C5XR34-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2268200","Sulfolobales archaeon"]]},{"id":"NCBITaxon:2268201","l":"Synergistales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A832JNQ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A832JNQ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2268201","Synergistales bacterium"]]},{"id":"NCBITaxon:227605","l":"Methylocella tundrae","na":1,"nb":1,"a":[["TED%3AAF-A0A4U8Z7R3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8Z7R3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A227605","Methylocella tundrae"]]},{"id":"NCBITaxon:2282125","l":"Haloarcula sp. Atlit-7R","na":1,"nb":1,"a":[["TED%3AAF-A0A498GGU0-F1-model_v4_TED01","TED novel fold AF-A0A498GGU0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2282125","Haloarcula sp. Atlit-7R"]]},{"id":"NCBITaxon:2282131","l":"Halobellus sp. Atlit-38R","na":1,"nb":1,"a":[["TED%3AAF-A0A498GBB9-F1-model_v4_TED01","TED novel fold AF-A0A498GBB9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2282131","Halobellus sp. Atlit-38R"]]},{"id":"NCBITaxon:2282132","l":"Haloarcula sp. Atlit-47R","na":1,"nb":1,"a":[["TED%3AAF-A0A3R7FKY9-F1-model_v4_TED01","TED novel fold AF-A0A3R7FKY9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2282132","Haloarcula sp. Atlit-47R"]]},{"id":"NCBITaxon:2282142","l":"Terriglobales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7W1T1G5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W1T1G5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2282142","Terriglobales bacterium"]]},{"id":"NCBITaxon:2282152","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A832B9Y3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A832B9Y3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2282152","Chthonomonadia bacterium"]]},{"id":"NCBITaxon:2282154","l":"Geobacteraceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7V4UXK5-F1-model_v4_TED02","TED novel fold AF-A0A7V4UXK5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2282154","Geobacteraceae bacterium"]]},{"id":"NCBITaxon:2282167","l":"Planktothricoides sp. SpSt-374","na":1,"nb":1,"a":[["TED%3AAF-A0A7C3VEW8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C3VEW8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2282167","Planktothricoides sp. SpSt-374"]]},{"id":"NCBITaxon:2282170","l":"Kordia sp. SMS9","na":1,"nb":1,"a":[["TED%3AAF-A0A345H488-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A345H488-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2282170","Kordia sp. SMS9"]]},{"id":"NCBITaxon:2282420","l":"Streptococcus hillyeri","na":1,"nb":1,"a":[["TED%3AAF-A0A3L9DJK9-F1-model_v4_TED03","TED novel fold AF-A0A3L9DJK9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2282420","Streptococcus hillyeri"]]},{"id":"NCBITaxon:2282449","l":"Exiguobacterium sp. RIT594","na":1,"nb":1,"a":[["TED%3AAF-A0A369KPC7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A369KPC7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2282449","Exiguobacterium sp. RIT594"]]},{"id":"NCBITaxon:2282866","l":"Sporosarcina sp. BI001-red","na":1,"nb":1,"a":[["TED%3AAF-A0A3D8YT39-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D8YT39-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2282866","Sporosarcina sp. BI001-red"]]},{"id":"NCBITaxon:2283194","l":"Sporosarcina sp. PTS2304","na":1,"nb":1,"a":[["TED%3AAF-A0A345P1P1-F1-model_v4_TED02","TED novel fold AF-A0A345P1P1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2283194","Sporosarcina sp. PTS2304"]]},{"id":"NCBITaxon:2283627","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A425XWD0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A425XWD0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2283627","Ancylomarina euxina"]]},{"id":"NCBITaxon:228908","l":"","na":1,"nb":1,"a":[["Pfam%3APF01949","Endonuclease dU"]],"b":[["NCBITaxon%3A228908","Nanoarchaeum equitans Kin4-M"]]},{"id":"NCBITaxon:229037","l":"Proteus sp. (in: enterobacteria)","na":1,"nb":1,"a":[["TED%3AAF-A0A3D2BNA0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D2BNA0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A229037","Proteus sp. (in: enterobacteria)"]]},{"id":"NCBITaxon:2290913","l":"Candidatus Cryosericum septentrionale","na":1,"nb":1,"a":[["TED%3AAF-A0A398DLC0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A398DLC0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2290913","Candidatus Cryosericum septentrionale"]]},{"id":"NCBITaxon:2290923","l":"Crenobacter cavernae","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q2JGP7-F1-model_v4_TED01","TED novel fold AF-A0A4Q2JGP7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2290923","Crenobacter cavernae"]]},{"id":"NCBITaxon:2290935","l":"Parabacteroides acidifaciens","na":1,"nb":1,"a":[["TED%3AAF-A0A3D8H9Y5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D8H9Y5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2290935","Parabacteroides acidifaciens"]]},{"id":"NCBITaxon:2291815","l":"Deminuibacter soli","na":1,"nb":1,"a":[["TED%3AAF-A0A3E1NDY4-F1-model_v4_TED02","TED novel fold AF-A0A3E1NDY4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2291815","Deminuibacter soli"]]},{"id":"NCBITaxon:2291993","l":"Absiella sp. AM09-45","na":1,"nb":1,"a":[["TED%3AAF-A0A372SWN5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A372SWN5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2291993","Absiella sp. AM09-45"]]},{"id":"NCBITaxon:2292003","l":"Butyricicoccus sp. AF35-5AC","na":1,"nb":1,"a":[["TED%3AAF-A0A416DBL2-F1-model_v4_TED01","TED novel fold AF-A0A416DBL2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292003","Butyricicoccus sp. AF35-5AC"]]},{"id":"NCBITaxon:2292025","l":"Collinsella sp. AM15-2","na":1,"nb":1,"a":[["TED%3AAF-A0A414ZX86-F1-model_v4_TED01","TED novel fold AF-A0A414ZX86-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292025","Collinsella sp. AM15-2"]]},{"id":"NCBITaxon:2292028","l":"Collinsella sp. AM18-10","na":1,"nb":1,"a":[["TED%3AAF-A0A414WNE9-F1-model_v4_TED02","TED novel fold AF-A0A414WNE9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2292028","Collinsella sp. AM18-10"]]},{"id":"NCBITaxon:2292066","l":"Roseburia sp. AM23-20","na":1,"nb":1,"a":[["TED%3AAF-A0A3R6FRW6-F1-model_v4_TED01","TED novel fold AF-A0A3R6FRW6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292066","Roseburia sp. AM23-20"]]},{"id":"NCBITaxon:2292075","l":"Sutterella sp. AM11-39","na":1,"nb":1,"a":[["TED%3AAF-A0A415CE65-F1-model_v4_TED01","TED novel fold AF-A0A415CE65-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292075","Sutterella sp. AM11-39"]]},{"id":"NCBITaxon:2292179","l":"Clostridiaceae bacterium AF29-16BH","na":1,"nb":1,"a":[["TED%3AAF-A0A3R6TSB6-F1-model_v4_TED05","TED novel fold AF-A0A3R6TSB6-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2292179","Clostridiaceae bacterium AF29-16BH"]]},{"id":"NCBITaxon:2292223","l":"Collinsella sp. AF23-3LB","na":1,"nb":1,"a":[["TED%3AAF-A0A412HUW7-F1-model_v4_TED02","TED novel fold AF-A0A412HUW7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2292223","Collinsella sp. AF23-3LB"]]},{"id":"NCBITaxon:2292251","l":"Ruminococcus sp. AF21-42","na":1,"nb":1,"a":[["TED%3AAF-A0A416PML0-F1-model_v4_TED01","TED novel fold AF-A0A416PML0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292251","Ruminococcus sp. AF21-42"]]},{"id":"NCBITaxon:2292270","l":"Ruminococcaceae bacterium TF06-43","na":1,"nb":1,"a":[["TED%3AAF-A0A417NAR0-F1-model_v4_TED01","TED novel fold AF-A0A417NAR0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292270","Ruminococcaceae bacterium TF06-43"]]},{"id":"NCBITaxon:2292274","l":"Clostridiaceae bacterium OM08-6BH","na":1,"nb":1,"a":[["TED%3AAF-A0A3R6SCX2-F1-model_v4_TED01","TED novel fold AF-A0A3R6SCX2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292274","Clostridiaceae bacterium OM08-6BH"]]},{"id":"NCBITaxon:2292281","l":"Bacteroides sp. OF04-15BH","na":1,"nb":1,"a":[["TED%3AAF-A0A416GBK9-F1-model_v4_TED03","TED novel fold AF-A0A416GBK9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2292281","Bacteroides sp. OF04-15BH"]]},{"id":"NCBITaxon:2292287","l":"Blautia sp. OF03-15BH","na":1,"nb":1,"a":[["TED%3AAF-A0A413HUN0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A413HUN0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2292287","Blautia sp. OF03-15BH"]]},{"id":"NCBITaxon:2292288","l":"Clostridiaceae bacterium AM27-36LB","na":1,"nb":1,"a":[["TED%3AAF-A0A417I018-F1-model_v4_TED02","TED novel fold AF-A0A417I018-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2292288","Clostridiaceae bacterium AM27-36LB"]]},{"id":"NCBITaxon:2292298","l":"Butyricicoccus sp. OF10-2","na":1,"nb":1,"a":[["TED%3AAF-A0A396Q9G3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A396Q9G3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292298","Butyricicoccus sp. OF10-2"]]},{"id":"NCBITaxon:2292305","l":"Clostridium sp. AM42-4","na":1,"nb":1,"a":[["TED%3AAF-A0A417BW51-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A417BW51-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292305","Clostridium sp. AM42-4"]]},{"id":"NCBITaxon:2292320","l":"Collinsella sp. AM41-2BH","na":1,"nb":1,"a":[["TED%3AAF-A0A413UK93-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A413UK93-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292320","Collinsella sp. AM41-2BH"]]},{"id":"NCBITaxon:2292329","l":"Collinsella sp. OM08-14AT","na":1,"nb":1,"a":[["TED%3AAF-A0A374V4M3-F1-model_v4_TED01","TED novel fold AF-A0A374V4M3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292329","Collinsella sp. OM08-14AT"]]},{"id":"NCBITaxon:2292347","l":"Dorea sp. OM02-2LB","na":1,"nb":1,"a":[["TED%3AAF-A0A374X375-F1-model_v4_TED01","TED novel fold AF-A0A374X375-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292347","Dorea sp. OM02-2LB"]]},{"id":"NCBITaxon:2292358","l":"Megasphaera sp. AM44-1BH","na":1,"nb":1,"a":[["TED%3AAF-A0A413QQL4-F1-model_v4_TED01","TED novel fold AF-A0A413QQL4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292358","Megasphaera sp. AM44-1BH"]]},{"id":"NCBITaxon:2292363","l":"Parabacteroides sp. TM07-1AC","na":1,"nb":1,"a":[["TED%3AAF-A0A3R6RVC2-F1-model_v4_TED02","TED novel fold AF-A0A3R6RVC2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2292363","Parabacteroides sp. TM07-1AC"]]},{"id":"NCBITaxon:2292364","l":"Prevotella sp. AM34-19LB","na":1,"nb":1,"a":[["TED%3AAF-A0A3R6B020-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3R6B020-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2292364","Prevotella sp. AM34-19LB"]]},{"id":"NCBITaxon:2292365","l":"Prevotella sp. TF12-30","na":1,"nb":1,"a":[["TED%3AAF-A0A374TE07-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A374TE07-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292365","Prevotella sp. TF12-30"]]},{"id":"NCBITaxon:2292705","l":"Paenibacillus paeoniae","na":1,"nb":1,"a":[["TED%3AAF-A0A371PIW4-F1-model_v4_TED01","TED novel fold AF-A0A371PIW4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292705","Paenibacillus paeoniae"]]},{"id":"NCBITaxon:2292766","l":"Persicimonas caeni","na":1,"nb":1,"a":[["TED%3AAF-A0A4Y6Q2C3-F1-model_v4_TED01","TED novel fold AF-A0A4Y6Q2C3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292766","Persicimonas caeni"]]},{"id":"NCBITaxon:2292910","l":"Alistipes sp. AF14-19","na":1,"nb":1,"a":[["TED%3AAF-A0A374A2V7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A374A2V7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2292910","Alistipes sp. AF14-19"]]},{"id":"NCBITaxon:2292911","l":"Alistipes sp. AM16-43","na":1,"nb":1,"a":[["TED%3AAF-A0A6N4H138-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N4H138-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292911","Alistipes sp. AM16-43"]]},{"id":"NCBITaxon:2292923","l":"Bacteroides sp. AF25-18","na":1,"nb":1,"a":[["TED%3AAF-A0A3A5ZVW8-F1-model_v4_TED02","TED novel fold AF-A0A3A5ZVW8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2292923","Bacteroides sp. AF25-18"]]},{"id":"NCBITaxon:2292942","l":"Bacteroides sp. AM23-12","na":1,"nb":1,"a":[["TED%3AAF-A0A372UNQ0-F1-model_v4_TED05","TED novel fold AF-A0A372UNQ0-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2292942","Bacteroides sp. AM23-12"]]},{"id":"NCBITaxon:2292962","l":"Blautia sp. AF19-13LB","na":1,"nb":1,"a":[["TED%3AAF-A0A416S5R5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A416S5R5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292962","Blautia sp. AF19-13LB"]]},{"id":"NCBITaxon:2292968","l":"Blautia sp. AF34-10","na":1,"nb":1,"a":[["TED%3AAF-A0A416EA07-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A416EA07-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292968","Blautia sp. AF34-10"]]},{"id":"NCBITaxon:2292971","l":"Blautia sp. AM23-13AC","na":1,"nb":1,"a":[["TED%3AAF-A0A373GU64-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A373GU64-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2292971","Blautia sp. AM23-13AC"]]},{"id":"NCBITaxon:2292979","l":"Blautia sp. AM47-4","na":1,"nb":1,"a":[["TED%3AAF-A0A416ZLU8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A416ZLU8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2292979","Blautia sp. AM47-4"]]},{"id":"NCBITaxon:2293015","l":"Clostridium sp. AF36-4","na":1,"nb":1,"a":[["TED%3AAF-A0A373LW89-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A373LW89-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293015","Clostridium sp. AF36-4"]]},{"id":"NCBITaxon:2293021","l":"Clostridium sp. AF50-3","na":1,"nb":1,"a":[["TED%3AAF-A0A3R6MB85-F1-model_v4_TED01","TED novel fold AF-A0A3R6MB85-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293021","Clostridium sp. AF50-3"]]},{"id":"NCBITaxon:2293025","l":"Clostridium sp. AM27-28","na":1,"nb":1,"a":[["TED%3AAF-A0A3R6RLH9-F1-model_v4_TED03","TED novel fold AF-A0A3R6RLH9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2293025","Clostridium sp. AM27-28"]]},{"id":"NCBITaxon:2293041","l":"Clostridium sp. OM04-12AA","na":1,"nb":1,"a":[["TED%3AAF-A0A417U5V0-F1-model_v4_TED04","TED novel fold AF-A0A417U5V0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2293041","Clostridium sp. OM04-12AA"]]},{"id":"NCBITaxon:2293049","l":"Clostridium sp. OM08-29","na":1,"nb":1,"a":[["TED%3AAF-A0A417PJ91-F1-model_v4_TED01","TED novel fold AF-A0A417PJ91-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293049","Clostridium sp. OM08-29"]]},{"id":"NCBITaxon:2293054","l":"Clostridium sp. TM06-18","na":1,"nb":1,"a":[["TED%3AAF-A0A3R6SPQ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R6SPQ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293054","Clostridium sp. TM06-18"]]},{"id":"NCBITaxon:2293083","l":"Coprobacillus sp. OF03-2AA","na":1,"nb":1,"a":[["TED%3AAF-A0A416GDF1-F1-model_v4_TED01","TED novel fold AF-A0A416GDF1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293083","Coprobacillus sp. OF03-2AA"]]},{"id":"NCBITaxon:2293088","l":"Coprococcus sp. AF16-5","na":1,"nb":1,"a":[["TED%3AAF-A0A3R6T6B7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R6T6B7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293088","Coprococcus sp. AF16-5"]]},{"id":"NCBITaxon:2293113","l":"Parabacteroides sp. AF17-3","na":1,"nb":1,"a":[["TED%3AAF-A0A496D3Q5-F1-model_v4_TED02","TED novel fold AF-A0A496D3Q5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2293113","Parabacteroides sp. AF17-3"]]},{"id":"NCBITaxon:2293124","l":"Parabacteroides sp. OF04-13BH","na":1,"nb":1,"a":[["TED%3AAF-A0A496CTK2-F1-model_v4_TED07","TED novel fold AF-A0A496CTK2-F1-model_v4_TED07"]],"b":[["NCBITaxon%3A2293124","Parabacteroides sp. OF04-13BH"]]},{"id":"NCBITaxon:2293125","l":"Prevotella sp. AM42-24","na":1,"nb":1,"a":[["TED%3AAF-A0A374BKF8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A374BKF8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2293125","Prevotella sp. AM42-24"]]},{"id":"NCBITaxon:2293128","l":"Roseburia sp. AF15-21","na":1,"nb":1,"a":[["TED%3AAF-A0A3R6RT74-F1-model_v4_TED01","TED novel fold AF-A0A3R6RT74-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293128","Roseburia sp. AF15-21"]]},{"id":"NCBITaxon:2293129","l":"Roseburia sp. AF20-18LB","na":1,"nb":1,"a":[["TED%3AAF-A0A373UUB6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A373UUB6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293129","Roseburia sp. AF20-18LB"]]},{"id":"NCBITaxon:2293144","l":"Roseburia sp. TF10-5","na":1,"nb":1,"a":[["TED%3AAF-A0A374IBS0-F1-model_v4_TED03","TED novel fold AF-A0A374IBS0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2293144","Roseburia sp. TF10-5"]]},{"id":"NCBITaxon:2293146","l":"Ruminococcus sp. AF12-5","na":1,"nb":1,"a":[["TED%3AAF-A0A374A227-F1-model_v4_TED02","TED novel fold AF-A0A374A227-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2293146","Ruminococcus sp. AF12-5"]]},{"id":"NCBITaxon:2293150","l":"Ruminococcus sp. AF17-11","na":1,"nb":1,"a":[["TED%3AAF-A0A373XMI7-F1-model_v4_TED01","TED novel fold AF-A0A373XMI7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293150","Ruminococcus sp. AF17-11"]]},{"id":"NCBITaxon:2293154","l":"Ruminococcus sp. AF17-6","na":1,"nb":1,"a":[["TED%3AAF-A0A373WJM5-F1-model_v4_TED03","TED novel fold AF-A0A373WJM5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2293154","Ruminococcus sp. AF17-6"]]},{"id":"NCBITaxon:2293158","l":"Ruminococcus sp. AF19-29","na":1,"nb":1,"a":[["TED%3AAF-A0A416RYY3-F1-model_v4_TED02","TED novel fold AF-A0A416RYY3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2293158","Ruminococcus sp. AF19-29"]]},{"id":"NCBITaxon:2293178","l":"Ruminococcus sp. AF37-20","na":1,"nb":1,"a":[["TED%3AAF-A0A373LCT7-F1-model_v4_TED01","TED novel fold AF-A0A373LCT7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293178","Ruminococcus sp. AF37-20"]]},{"id":"NCBITaxon:2293195","l":"Ruminococcus sp. AM28-29LB","na":1,"nb":1,"a":[["TED%3AAF-A0A374G5B5-F1-model_v4_TED01","TED novel fold AF-A0A374G5B5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293195","Ruminococcus sp. AM28-29LB"]]},{"id":"NCBITaxon:2293202","l":"Ruminococcus sp. AM31-15AC","na":1,"nb":1,"a":[["TED%3AAF-A0A374EXV0-F1-model_v4_TED01","TED novel fold AF-A0A374EXV0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293202","Ruminococcus sp. AM31-15AC"]]},{"id":"NCBITaxon:2293208","l":"Ruminococcus sp. AM36-17","na":1,"nb":1,"a":[["TED%3AAF-A0A417DI12-F1-model_v4_TED01","TED novel fold AF-A0A417DI12-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293208","Ruminococcus sp. AM36-17"]]},{"id":"NCBITaxon:2293215","l":"Ruminococcus sp. AM42-10AC","na":1,"nb":1,"a":[["TED%3AAF-A0A417CN21-F1-model_v4_TED01","TED novel fold AF-A0A417CN21-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293215","Ruminococcus sp. AM42-10AC"]]},{"id":"NCBITaxon:2293228","l":"Ruminococcus sp. OF02-6","na":1,"nb":1,"a":[["TED%3AAF-A0A416GZV7-F1-model_v4_TED02","TED novel fold AF-A0A416GZV7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2293228","Ruminococcus sp. OF02-6"]]},{"id":"NCBITaxon:2293230","l":"Ruminococcus sp. OF05-2BH","na":1,"nb":1,"a":[["TED%3AAF-A0A374LM13-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A374LM13-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293230","Ruminococcus sp. OF05-2BH"]]},{"id":"NCBITaxon:2293859","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A424YC22-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A424YC22-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293859","Halanaerobium sp. MSAO_Bac5"]]},{"id":"NCBITaxon:229919","l":"Anaerolinea thermolimosa","na":1,"nb":1,"a":[["TED%3AAF-A0A3D1JEJ6-F1-model_v4_TED03","TED novel fold AF-A0A3D1JEJ6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A229919","Anaerolinea thermolimosa"]]},{"id":"NCBITaxon:230089","l":"Photorhabdus thracensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0F7LMP9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F7LMP9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A230089","Photorhabdus thracensis"]]},{"id":"NCBITaxon:230091","l":"Micromonospora endolithica","na":1,"nb":1,"a":[["TED%3AAF-A0A3A9ZCA3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3A9ZCA3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A230091","Micromonospora endolithica"]]},{"id":"NCBITaxon:2302364","l":"Acinetobacter sp. JW","na":1,"nb":1,"a":[["TED%3AAF-A0A372BGZ3-F1-model_v4_TED01","TED novel fold AF-A0A372BGZ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2302364","Acinetobacter sp. JW"]]},{"id":"NCBITaxon:2302989","l":"Clostridiales bacterium TF09-2AC","na":1,"nb":1,"a":[["TED%3AAF-A0A3A6IFD3-F1-model_v4_TED03","TED novel fold AF-A0A3A6IFD3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2302989","Clostridiales bacterium TF09-2AC"]]},{"id":"NCBITaxon:2303331","l":"Solimonas sp. K1W22B-7","na":1,"nb":1,"a":[["TED%3AAF-A0A346N7K7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A346N7K7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2303331","Solimonas sp. K1W22B-7"]]},{"id":"NCBITaxon:2303332","l":"Cellvibrio sp. KY-GH-1","na":1,"nb":1,"a":[["TED%3AAF-A0A5J6P7W3-F1-model_v4_TED01","TED novel fold AF-A0A5J6P7W3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2303332","Cellvibrio sp. KY-GH-1"]]},{"id":"NCBITaxon:2303333","l":"Mucilaginibacter conchicola","na":1,"nb":1,"a":[["TED%3AAF-A0A372NTR5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A372NTR5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2303333","Mucilaginibacter conchicola"]]},{"id":"NCBITaxon:230361","l":"Methanobrevibacter millerae","na":1,"nb":1,"a":[["TED%3AAF-A0A0U3DSU9-F1-model_v4_TED04","TED novel fold AF-A0A0U3DSU9-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A230361","Methanobrevibacter millerae"]]},{"id":"NCBITaxon:2303987","l":"Motilimonas pumila","na":1,"nb":1,"a":[["TED%3AAF-A0A418YIK5-F1-model_v4_TED02","TED novel fold AF-A0A418YIK5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2303987","Motilimonas pumila"]]},{"id":"NCBITaxon:2304039","l":"Thermoanaerobacterales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7V6UE01-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7V6UE01-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2304039","Thermoanaerobacterales bacterium"]]},{"id":"NCBITaxon:2304571","l":"Enterorhabdus sp. P55","na":1,"nb":1,"a":[["TED%3AAF-A0A7K3KZ32-F1-model_v4_TED01","TED novel fold AF-A0A7K3KZ32-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2304571","Enterorhabdus sp. P55"]]},{"id":"NCBITaxon:2304576","l":"Pseudoflavonifractor sp. 60","na":1,"nb":1,"a":[["TED%3AAF-A0A6G3LXM3-F1-model_v4_TED02","TED novel fold AF-A0A6G3LXM3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2304576","Pseudoflavonifractor sp. 60"]]},{"id":"NCBITaxon:2304594","l":"Marinobacter sp. Arc7-DN-1","na":1,"nb":1,"a":[["TED%3AAF-A0A346S279-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A346S279-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2304594","Marinobacter sp. Arc7-DN-1"]]},{"id":"NCBITaxon:2304604","l":"Adonisia turfae CCMR0082","na":1,"nb":1,"a":[["TED%3AAF-A0A6M0SB69-F1-model_v4_TED01","TED novel fold AF-A0A6M0SB69-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2304604","Adonisia turfae CCMR0082"]]},{"id":"NCBITaxon:230495","l":"Reinekea marinisedimentorum","na":1,"nb":1,"a":[["TED%3AAF-A0A4R3I585-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R3I585-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A230495","Reinekea marinisedimentorum"]]},{"id":"NCBITaxon:2305219","l":"Paracoccus sp. BP8","na":1,"nb":1,"a":[["TED%3AAF-A0A3N7GAZ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N7GAZ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2305219","Paracoccus sp. BP8"]]},{"id":"NCBITaxon:2305242","l":"Clostridium sp. AM34-11AC","na":1,"nb":1,"a":[["TED%3AAF-A0A373C7X0-F1-model_v4_TED02","TED novel fold AF-A0A373C7X0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2305242","Clostridium sp. AM34-11AC"]]},{"id":"NCBITaxon:2305243","l":"Desulfotomaculum sp. OF05-3","na":1,"nb":1,"a":[["TED%3AAF-A0A373DCU4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A373DCU4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2305243","Desulfotomaculum sp. OF05-3"]]},{"id":"NCBITaxon:2305245","l":"Clostridiaceae bacterium TF01-6","na":1,"nb":1,"a":[["TED%3AAF-A0A373CRX3-F1-model_v4_TED02","TED novel fold AF-A0A373CRX3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2305245","Clostridiaceae bacterium TF01-6"]]},{"id":"NCBITaxon:2305463","l":"Maribellus luteus","na":1,"nb":1,"a":[["TED%3AAF-A0A399SUN2-F1-model_v4_TED01","TED novel fold AF-A0A399SUN2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2305463","Maribellus luteus"]]},{"id":"NCBITaxon:2305508","l":"Mucilaginibacter celer","na":1,"nb":1,"a":[["TED%3AAF-A0A494VUG1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A494VUG1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2305508","Mucilaginibacter celer"]]},{"id":"NCBITaxon:2305907","l":"Sphingomonas gilva","na":1,"nb":1,"a":[["TED%3AAF-A0A396RP53-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A396RP53-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2305907","Sphingomonas gilva"]]},{"id":"NCBITaxon:2305909","l":"Mucilaginibacter gilvus","na":1,"nb":1,"a":[["TED%3AAF-A0A3S3VHX5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3S3VHX5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2305909","Mucilaginibacter gilvus"]]},{"id":"NCBITaxon:2306023","l":"Gemmobacter lutimaris","na":1,"nb":1,"a":[["TED%3AAF-A0A398BQ53-F1-model_v4_TED04","TED novel fold AF-A0A398BQ53-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2306023","Gemmobacter lutimaris"]]},{"id":"NCBITaxon:2306054","l":"Rhodothermales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y2CAE0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y2CAE0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2306054","Rhodothermales bacterium"]]},{"id":"NCBITaxon:2306975","l":"Bifidobacterium goeldii","na":1,"nb":1,"a":[["TED%3AAF-A0A430FLK0-F1-model_v4_TED03","TED novel fold AF-A0A430FLK0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2306975","Bifidobacterium goeldii"]]},{"id":"NCBITaxon:2306998","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A3A1NM92-F1-model_v4_TED01","TED novel fold AF-A0A3A1NM92-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2306998","Flagellimonas pelagia"]]},{"id":"NCBITaxon:2307003","l":"Aurantiacibacter zhengii","na":1,"nb":1,"a":[["TED%3AAF-A0A418NVT8-F1-model_v4_TED01","TED novel fold AF-A0A418NVT8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2307003","Aurantiacibacter zhengii"]]},{"id":"NCBITaxon:2307007","l":"Aromatoleum sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A6N9R918-F1-model_v4_TED06","TED novel fold AF-A0A6N9R918-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A2307007","Aromatoleum sp."]]},{"id":"NCBITaxon:2315236","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A480AP83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A480AP83-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2315236","Pseudaquabacterium pictum"]]},{"id":"NCBITaxon:2315329","l":"Streptomyces sporangiiformans","na":1,"nb":1,"a":[["TED%3AAF-A0A505DC79-F1-model_v4_TED01","TED novel fold AF-A0A505DC79-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2315329","Streptomyces sporangiiformans"]]},{"id":"NCBITaxon:2316362","l":"Candolleomyces aberdarensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q2D4N0-F1-model_v4_TED01","TED novel fold AF-A0A4Q2D4N0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2316362","Candolleomyces aberdarensis"]]},{"id":"NCBITaxon:2316716","l":"Corallococcus sp. AB030","na":1,"nb":1,"a":[["TED%3AAF-A0A3A8ULP0-F1-model_v4_TED01","TED novel fold AF-A0A3A8ULP0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2316716","Corallococcus sp. AB030"]]},{"id":"NCBITaxon:2316718","l":"Corallococcus sp. AB038B","na":1,"nb":1,"a":[["TED%3AAF-A0A3A8TYU4-F1-model_v4_TED01","TED novel fold AF-A0A3A8TYU4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2316718","Corallococcus sp. AB038B"]]},{"id":"NCBITaxon:2316720","l":"Corallococcus interemptor","na":1,"nb":1,"a":[["TED%3AAF-A0A3A8Q6H5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3A8Q6H5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2316720","Corallococcus interemptor"]]},{"id":"NCBITaxon:2316722","l":"Corallococcus aberystwythensis","na":1,"nb":1,"a":[["TED%3AAF-A0A3A8P7F2-F1-model_v4_TED01","TED novel fold AF-A0A3A8P7F2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2316722","Corallococcus aberystwythensis"]]},{"id":"NCBITaxon:2316726","l":"Corallococcus sicarius","na":1,"nb":1,"a":[["TED%3AAF-A0A3A8MYI2-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A3A8MYI2-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2316726","Corallococcus sicarius"]]},{"id":"NCBITaxon:2316728","l":"Corallococcus carmarthensis","na":1,"nb":1,"a":[["TED%3AAF-A0A3A8K3V0-F1-model_v4_TED03","TED novel fold AF-A0A3A8K3V0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2316728","Corallococcus carmarthensis"]]},{"id":"NCBITaxon:2316731","l":"Corallococcus llansteffanensis","na":1,"nb":1,"a":[["TED%3AAF-A0A3A8PPT6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3A8PPT6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2316731","Corallococcus llansteffanensis"]]},{"id":"NCBITaxon:2316732","l":"Corallococcus sp. CA053C","na":1,"nb":1,"a":[["TED%3AAF-A0A3A8J8M5-F1-model_v4_TED02","TED novel fold AF-A0A3A8J8M5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2316732","Corallococcus sp. CA053C"]]},{"id":"NCBITaxon:2316734","l":"Corallococcus sp. CA054B","na":1,"nb":1,"a":[["TED%3AAF-A0A3A8H705-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A8H705-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2316734","Corallococcus sp. CA054B"]]},{"id":"NCBITaxon:2316735","l":"Corallococcus sp. AB011P","na":1,"nb":1,"a":[["TED%3AAF-A0A3A8GFM2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3A8GFM2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2316735","Corallococcus sp. AB011P"]]},{"id":"NCBITaxon:2319844","l":"Sphingomonas paeninsulae","na":1,"nb":1,"a":[["TED%3AAF-A0A494T9D4-F1-model_v4_TED01","TED novel fold AF-A0A494T9D4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2319844","Sphingomonas paeninsulae"]]},{"id":"NCBITaxon:232","l":"Alteromonas sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2D9B6J8-F1-model_v4_TED01","TED novel fold AF-A0A2D9B6J8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A232","Alteromonas sp."]]},{"id":"NCBITaxon:2320099","l":"bacterium 0.1xD8-71","na":1,"nb":1,"a":[["TED%3AAF-A0A3A9AH35-F1-model_v4_TED03","TED novel fold AF-A0A3A9AH35-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2320099","bacterium 0.1xD8-71"]]},{"id":"NCBITaxon:2320102","l":"bacterium 1XD42-8","na":1,"nb":1,"a":[["TED%3AAF-A0A3A9FTI0-F1-model_v4_TED03","TED novel fold AF-A0A3A9FTI0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2320102","bacterium 1XD42-8"]]},{"id":"NCBITaxon:2320107","l":"bacterium 1xD42-67","na":1,"nb":1,"a":[["TED%3AAF-A0A3A8YJJ5-F1-model_v4_TED01","TED novel fold AF-A0A3A8YJJ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2320107","bacterium 1xD42-67"]]},{"id":"NCBITaxon:2320112","l":"bacterium D16-50","na":1,"nb":1,"a":[["TED%3AAF-A0A3A9DC66-F1-model_v4_TED02","TED novel fold AF-A0A3A9DC66-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2320112","bacterium D16-50"]]},{"id":"NCBITaxon:2320115","l":"bacterium 1XD8-76","na":1,"nb":1,"a":[["TED%3AAF-A0A3A9FA06-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A9FA06-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2320115","bacterium 1XD8-76"]]},{"id":"NCBITaxon:2320122","l":"bacterium J10(2018)","na":1,"nb":1,"a":[["TED%3AAF-A0A3L8A0P8-F1-model_v4_TED01","TED novel fold AF-A0A3L8A0P8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2320122","bacterium J10(2018)"]]},{"id":"NCBITaxon:2320861","l":"Sphingomonas cavernae","na":1,"nb":1,"a":[["TED%3AAF-A0A418W7W4-F1-model_v4_TED01","TED novel fold AF-A0A418W7W4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2320861","Sphingomonas cavernae"]]},{"id":"NCBITaxon:2320862","l":"Noviherbaspirillum cavernae","na":1,"nb":1,"a":[["TED%3AAF-A0A418X340-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A418X340-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2320862","Noviherbaspirillum cavernae"]]},{"id":"NCBITaxon:2320867","l":"Pseudomonas cavernae","na":1,"nb":1,"a":[["TED%3AAF-A0A385Z222-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A385Z222-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2320867","Pseudomonas cavernae"]]},{"id":"NCBITaxon:2320884","l":"bacterium 1XD8-92","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q2BN90-F1-model_v4_TED03","TED novel fold AF-A0A4Q2BN90-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2320884","bacterium 1XD8-92"]]},{"id":"NCBITaxon:232346","l":"Halomonas alkaliantarctica","na":1,"nb":1,"a":[["TED%3AAF-A0A4R7Y984-F1-model_v4_TED01","TED novel fold AF-A0A4R7Y984-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A115551","Vreelandella neptunia"]]},{"id":"NCBITaxon:2340725","l":"Streptomyces bauhiniae","na":1,"nb":1,"a":[["TED%3AAF-A0A4Z1CTK4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Z1CTK4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2340725","Streptomyces bauhiniae"]]},{"id":"NCBITaxon:2340916","l":"Nocardia panacis","na":1,"nb":1,"a":[["TED%3AAF-A0A3A4KXJ6-F1-model_v4_TED02","TED novel fold AF-A0A3A4KXJ6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2340916","Nocardia panacis"]]},{"id":"NCBITaxon:2341115","l":"Bradyrhizobium sp. LVM 105","na":1,"nb":1,"a":[["TED%3AAF-A0A5E8V541-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5E8V541-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2341115","Bradyrhizobium sp. LVM 105"]]},{"id":"NCBITaxon:234621","l":"Rhodococcus erythropolis PR4","na":1,"nb":1,"a":[["TED%3AAF-C0ZLI2-F1-model_v4_TED01","TED novel fold AF-C0ZLI2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A234621","Rhodococcus erythropolis PR4"]]},{"id":"NCBITaxon:2358142","l":"Microcystis aeruginosa 11-30S32","na":1,"nb":1,"a":[["TED%3AAF-A0A510PNA6-F1-model_v4_TED02","TED novel fold AF-A0A510PNA6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2358142","Microcystis aeruginosa 11-30S32"]]},{"id":"NCBITaxon:2358460","l":"Nitrospirales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7W1Z1J8-F1-model_v4_TED02","TED novel fold AF-A0A7W1Z1J8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2358460","Nitrospirales bacterium"]]},{"id":"NCBITaxon:2364879","l":"Butyrivibrio sp. CB08","na":1,"nb":1,"a":[["TED%3AAF-A0A3A9TL31-F1-model_v4_TED01","TED novel fold AF-A0A3A9TL31-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2364879","Butyrivibrio sp. CB08"]]},{"id":"NCBITaxon:237018","l":"Algoriphagus aquimarinus","na":1,"nb":1,"a":[["TED%3AAF-A0A5C7AAU4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5C7AAU4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A237018","Algoriphagus aquimarinus"]]},{"id":"NCBITaxon:237610","l":"Pseudomonas psychrotolerans","na":1,"nb":1,"a":[["TED%3AAF-A0A1G5PDN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G5PDN6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A47885","Pseudomonas oryzihabitans"]]},{"id":"NCBITaxon:237656","l":"Pseudonocardia antarctica","na":1,"nb":1,"a":[["TED%3AAF-A0A852WGN1-F1-model_v4_TED01","TED novel fold AF-A0A852WGN1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A33907","Pseudonocardia alni"]]},{"id":"NCBITaxon:2377","l":"Sporomusa termitida","na":1,"nb":1,"a":[["TED%3AAF-A0A517DX57-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A517DX57-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2377","Sporomusa termitida"]]},{"id":"NCBITaxon:2382124","l":"Cardiobacterium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A660MDG5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A660MDG5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2382124","Cardiobacterium sp."]]},{"id":"NCBITaxon:2382229","l":"Bacteroidetes/Chlorobi group bacterium Naka2016","na":1,"nb":1,"a":[["TED%3AAF-A0A3N0ZIA2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N0ZIA2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2382229","Bacteroidetes/Chlorobi group bacterium Naka2016"]]},{"id":"NCBITaxon:238540","l":"Algoriphagus antarcticus","na":1,"nb":1,"a":[["TED%3AAF-A0A3E0D6W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3E0D6W3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A238540","Algoriphagus antarcticus"]]},{"id":"NCBITaxon:238800","l":"Rickettsia asiatica","na":1,"nb":1,"a":[["TED%3AAF-A0A510G767-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A510G767-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A238800","Rickettsia asiatica"]]},{"id":"NCBITaxon:240499","l":"Calcarisporium arbuscula","na":1,"nb":1,"a":[["Pfam%3APF28402","Pneumocandin biosynthesis cluster protein B C-terminal domain"]],"b":[["NCBITaxon%3A240499","Calcarisporium arbuscula"]]},{"id":"NCBITaxon:241244","l":"Rummeliibacillus stabekisii","na":1,"nb":1,"a":[["TED%3AAF-A0A511BZV1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A511BZV1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A241244","Rummeliibacillus stabekisii"]]},{"id":"NCBITaxon:2419777","l":"Trinickia fusca","na":1,"nb":1,"a":[["TED%3AAF-A0A494XH39-F1-model_v4_TED01","TED novel fold AF-A0A494XH39-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2419777","Trinickia fusca"]]},{"id":"NCBITaxon:2419984","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A3M1RQX1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3M1RQX1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2419984","Candidatus Schekmanbacteria bacterium"]]},{"id":"NCBITaxon:244362","l":"Ruminococcus sp. YE71","na":1,"nb":1,"a":[["TED%3AAF-A0A1K1MJM1-F1-model_v4_TED01","TED novel fold AF-A0A1K1MJM1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A244362","Ruminococcus sp. YE71"]]},{"id":"NCBITaxon:2447956","l":"Antrodiella citrinella","na":1,"nb":1,"a":[["TED%3AAF-A0A4S4N318-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S4N318-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2447956","Antrodiella citrinella"]]},{"id":"NCBITaxon:2448056","l":"Nitriliruptor sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A651GEH8-F1-model_v4_TED01","TED novel fold AF-A0A651GEH8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2448056","Nitriliruptor sp."]]},{"id":"NCBITaxon:244830","l":"Anaerospora hongkongensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4R1PSF8-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A4R1PSF8-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A244830","Anaerospora hongkongensis"]]},{"id":"NCBITaxon:245014","l":"butyrate-producing bacterium SS3/4","na":1,"nb":1,"a":[["TED%3AAF-D7GQM5-F1-model_v4_TED01","TED novel fold AF-D7GQM5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A245014","butyrate-producing bacterium SS3/4"]]},{"id":"NCBITaxon:245739","l":"","na":1,"nb":1,"a":[["Pfam%3APF22862","Halocin C8-like N-terminal domain"]],"b":[["NCBITaxon%3A245739","Halobacterium sp. AS7092"]]},{"id":"NCBITaxon:246264","l":"Hydrogenivirga caldilitoris","na":1,"nb":1,"a":[["TED%3AAF-A0A497XPR0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A497XPR0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A246264","Hydrogenivirga caldilitoris"]]},{"id":"NCBITaxon:247633","l":"marine gamma proteobacterium HTCC2143","na":1,"nb":1,"a":[["TED%3AAF-A0YB29-F1-model_v4_TED02","TED novel fold AF-A0YB29-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A247633","marine gamma proteobacterium HTCC2143"]]},{"id":"NCBITaxon:2478479","l":"Deinococcales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A847HTL5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A847HTL5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2478479","Deinococcales bacterium"]]},{"id":"NCBITaxon:2478537","l":"Spiroplasma endosymbiont of Megaselia nigra","na":1,"nb":1,"a":[["TED%3AAF-A0A3S0YN18-F1-model_v4_TED01","TED novel fold AF-A0A3S0YN18-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2478537","Spiroplasma endosymbiont of Megaselia nigra"]]},{"id":"NCBITaxon:2478552","l":"Flavobacterium sp. 140616W15","na":1,"nb":1,"a":[["TED%3AAF-A0A3G2GIX5-F1-model_v4_TED01","TED novel fold AF-A0A3G2GIX5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2478552","Flavobacterium sp. 140616W15"]]},{"id":"NCBITaxon:2478556","l":"Nitrosopumilus sp. H13","na":1,"nb":1,"a":[["TED%3AAF-A0A3M9ZZR2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3M9ZZR2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2478556","Nitrosopumilus sp. H13"]]},{"id":"NCBITaxon:2478558","l":"Thaumarchaeota archaeon S14","na":1,"nb":1,"a":[["TED%3AAF-A0A3M9ZMB6-F1-model_v4_TED01","TED novel fold AF-A0A3M9ZMB6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2478558","Thaumarchaeota archaeon S14"]]},{"id":"NCBITaxon:2478957","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A652M130-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A652M130-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2478957","Streptomyces sp. OR43"]]},{"id":"NCBITaxon:2478958","l":"Streptomyces sp. col6","na":1,"nb":1,"a":[["TED%3AAF-A0A6I7Y0W7-F1-model_v4_TED02","TED novel fold AF-A0A6I7Y0W7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2478958","Streptomyces sp. col6"]]},{"id":"NCBITaxon:2479048","l":"Granulicella sibirica","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q0SZE6-F1-model_v4_TED01","TED novel fold AF-A0A4Q0SZE6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2479048","Granulicella sibirica"]]},{"id":"NCBITaxon:2480211","l":"Leptolyngbya sp. LCM1.Bin17","na":1,"nb":1,"a":[["TED%3AAF-A0A6H2NM33-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6H2NM33-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2480211","Leptolyngbya sp. LCM1.Bin17"]]},{"id":"NCBITaxon:2480805","l":"Alteromonas sp. KUL150","na":1,"nb":1,"a":[["TED%3AAF-A0A640QLQ6-F1-model_v4_TED01","TED novel fold AF-A0A640QLQ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2480805","Alteromonas sp. KUL150"]]},{"id":"NCBITaxon:2480908","l":"[Mycobacterium] chelonae subsp. gwanakae","na":1,"nb":1,"a":[["TED%3AAF-A0A809GZX1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A809GZX1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2480908","[Mycobacterium] chelonae subsp. gwanakae"]]},{"id":"NCBITaxon:2482727","l":"Mucilaginibacter terrenus","na":1,"nb":1,"a":[["TED%3AAF-A0A3E2NY53-F1-model_v4_TED04","TED novel fold AF-A0A3E2NY53-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2482727","Mucilaginibacter terrenus"]]},{"id":"NCBITaxon:2483403","l":"Mesorhizobium sp. NZP2298","na":1,"nb":1,"a":[["TED%3AAF-A0A6M7W8G8-F1-model_v4_TED05","TED novel fold AF-A0A6M7W8G8-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2483403","Mesorhizobium sp. NZP2298"]]},{"id":"NCBITaxon:2483812","l":"Pseudogemmobacter humi","na":1,"nb":1,"a":[["TED%3AAF-A0A3P5WW18-F1-model_v4_TED01","TED novel fold AF-A0A3P5WW18-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2483812","Pseudogemmobacter humi"]]},{"id":"NCBITaxon:2484950","l":"Leptospira koniambonensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4R9JDH9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R9JDH9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2484950","Leptospira koniambonensis"]]},{"id":"NCBITaxon:2484976","l":"Leptospira andrefontaineae","na":1,"nb":1,"a":[["TED%3AAF-A0A4R9H1E3-F1-model_v4_TED01","TED novel fold AF-A0A4R9H1E3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2484976","Leptospira andrefontaineae"]]},{"id":"NCBITaxon:2485118","l":"Enterobacter sp. BIGb0383","na":1,"nb":1,"a":[["TED%3AAF-A0A3N1IS18-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N1IS18-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2485118","Enterobacter sp. BIGb0383"]]},{"id":"NCBITaxon:2485123","l":"Photobacterium chitinilyticum","na":1,"nb":1,"a":[["TED%3AAF-A0A3S3SZC5-F1-model_v4_TED01","TED novel fold AF-A0A3S3SZC5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2485123","Photobacterium chitinilyticum"]]},{"id":"NCBITaxon:2485153","l":"Streptomyces sp. CEV 2-1","na":1,"nb":1,"a":[["TED%3AAF-A0A3N1SQW1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N1SQW1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2485153","Streptomyces sp. CEV 2-1"]]},{"id":"NCBITaxon:2485167","l":"Bradyrhizobium sp. Y-H1","na":1,"nb":1,"a":[["TED%3AAF-A0A4R3TUN0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R3TUN0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2485167","Bradyrhizobium sp. Y-H1"]]},{"id":"NCBITaxon:2485168","l":"Methylosinus sp. sav-2","na":1,"nb":1,"a":[["TED%3AAF-A0A4R8HS43-F1-model_v4_TED01","TED novel fold AF-A0A4R8HS43-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2485168","Methylosinus sp. sav-2"]]},{"id":"NCBITaxon:2485180","l":"Curtobacterium sp. PhB134","na":1,"nb":1,"a":[["TED%3AAF-A0A4R1TTQ2-F1-model_v4_TED02","TED novel fold AF-A0A4R1TTQ2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2485180","Curtobacterium sp. PhB134"]]},{"id":"NCBITaxon:2485187","l":"Curtobacterium sp. PhB146","na":1,"nb":1,"a":[["TED%3AAF-A0A4R3SK95-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R3SK95-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2485187","Curtobacterium sp. PhB146"]]},{"id":"NCBITaxon:2485484","l":"Nostoc sp. 2RC","na":1,"nb":1,"a":[["TED%3AAF-A0A841WKU9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841WKU9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2485484","Nostoc sp. 2RC"]]},{"id":"NCBITaxon:2486251","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A552FML4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A552FML4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2486251","Microcystis aeruginosa Ma_QC_Ca_00000000_S207"]]},{"id":"NCBITaxon:2486264","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A551ZTV0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A551ZTV0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2486264","Microcystis aeruginosa Ma_AC_P_19900807_S299"]]},{"id":"NCBITaxon:2486266","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A552IW16-F1-model_v4_TED01","TED novel fold AF-A0A552IW16-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2486266","Microcystis novacekii Mn_MB_F_20050700_S1D"]]},{"id":"NCBITaxon:2486270","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A552H5C1-F1-model_v4_TED02","TED novel fold AF-A0A552H5C1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2486270","Microcystis viridis Mv_BB_P_19951000_S68D"]]},{"id":"NCBITaxon:2486462","l":"Muribaculaceae bacterium Isolate-042 (Harlan)","na":1,"nb":1,"a":[["TED%3AAF-A0A3N2KBF0-F1-model_v4_TED02","TED novel fold AF-A0A3N2KBF0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2486462","Muribaculaceae bacterium Isolate-042 (Harlan)"]]},{"id":"NCBITaxon:2486466","l":"Muribaculaceae bacterium Isolate-039 (Harlan)","na":1,"nb":1,"a":[["TED%3AAF-A0A3N2K9Y4-F1-model_v4_TED04","TED novel fold AF-A0A3N2K9Y4-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2486466","Muribaculaceae bacterium Isolate-039 (Harlan)"]]},{"id":"NCBITaxon:2486467","l":"Muribaculaceae bacterium Isolate-077 (Janvier)","na":1,"nb":1,"a":[["TED%3AAF-A0A3N2LBZ0-F1-model_v4_TED06","TED novel fold AF-A0A3N2LBZ0-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A2486467","Muribaculaceae bacterium Isolate-077 (Janvier)"]]},{"id":"NCBITaxon:2486468","l":"Muribaculaceae bacterium Isolate-080 (Janvier)","na":1,"nb":1,"a":[["TED%3AAF-A0A3N2KRD5-F1-model_v4_TED01","TED novel fold AF-A0A3N2KRD5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2486468","Muribaculaceae bacterium Isolate-080 (Janvier)"]]},{"id":"NCBITaxon:2487017","l":"Ancylomarina longa","na":1,"nb":1,"a":[["TED%3AAF-A0A434AXK3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A434AXK3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2487017","Ancylomarina longa"]]},{"id":"NCBITaxon:2487066","l":"Chryseobacterium sp. G0240","na":1,"nb":1,"a":[["TED%3AAF-A0A3N0WP96-F1-model_v4_TED01","TED novel fold AF-A0A3N0WP96-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2487066","Chryseobacterium sp. G0240"]]},{"id":"NCBITaxon:2487137","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A3N0EGX0-F1-model_v4_TED01","TED novel fold AF-A0A3N0EGX0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2487137","Halostreptopolyspora alba"]]},{"id":"NCBITaxon:2487322","l":"Vibrio viridaestus","na":1,"nb":1,"a":[["TED%3AAF-A0A3N9TGN7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3N9TGN7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2487322","Vibrio viridaestus"]]},{"id":"NCBITaxon:2487337","l":"Pseudanabaena sp. UWO311","na":1,"nb":1,"a":[["TED%3AAF-A0A6N2K1G6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N2K1G6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2487337","Pseudanabaena sp. UWO311"]]},{"id":"NCBITaxon:2487352","l":"Rhodococcus spongiicola","na":1,"nb":1,"a":[["TED%3AAF-A0A438APS3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A438APS3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2487352","Rhodococcus spongiicola"]]},{"id":"NCBITaxon:2487416","l":"Streptomyces sp. WAC06614","na":1,"nb":1,"a":[["TED%3AAF-A0A3R9VE74-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A3R9VE74-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2487416","Streptomyces sp. WAC06614"]]},{"id":"NCBITaxon:2487722","l":"Levilactobacillus suantsaiihabitans","na":1,"nb":1,"a":[["TED%3AAF-A0A4Z0J8A0-F1-model_v4_TED01","TED novel fold AF-A0A4Z0J8A0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2487722","Levilactobacillus suantsaiihabitans"]]},{"id":"NCBITaxon:2487897","l":"Cyclobacteriaceae bacterium YHN15","na":1,"nb":1,"a":[["TED%3AAF-A0A3N4H952-F1-model_v4_TED02","TED novel fold AF-A0A3N4H952-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2487897","Cyclobacteriaceae bacterium YHN15"]]},{"id":"NCBITaxon:2487931","l":"Pseudorhodobacter sp. E13","na":1,"nb":1,"a":[["TED%3AAF-A0A3S0Z2P2-F1-model_v4_TED02","TED novel fold AF-A0A3S0Z2P2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2487931","Pseudorhodobacter sp. E13"]]},{"id":"NCBITaxon:2488728","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A3P3W2W0-F1-model_v4_TED03","TED novel fold AF-A0A3P3W2W0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2488728","Paenimyroides tangerinum"]]},{"id":"NCBITaxon:2488730","l":"Falsigemmobacter faecalis","na":1,"nb":1,"a":[["TED%3AAF-A0A3P3DJT5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3P3DJT5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2488730","Falsigemmobacter faecalis"]]},{"id":"NCBITaxon:2488809","l":"Verrucomicrobia bacterium S94","na":1,"nb":1,"a":[["TED%3AAF-A0A4P6PDV8-F1-model_v4_TED01","TED novel fold AF-A0A4P6PDV8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2488809","Verrucomicrobia bacterium S94"]]},{"id":"NCBITaxon:248906","l":"Zobellia laminariae","na":1,"nb":1,"a":[["TED%3AAF-A0A844N883-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A844N883-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A248906","Zobellia laminariae"]]},{"id":"NCBITaxon:2489215","l":"Muribaculaceae bacterium Isolate-002 (NCI)","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q0IZI5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q0IZI5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2489215","Muribaculaceae bacterium Isolate-002 (NCI)"]]},{"id":"NCBITaxon:2490491","l":"Salinivibrio sp. VYel4","na":1,"nb":1,"a":[["TED%3AAF-A0A5N8T8K3-F1-model_v4_TED01","TED novel fold AF-A0A5N8T8K3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2490491","Salinivibrio sp. VYel4"]]},{"id":"NCBITaxon:2490543","l":"Rapeseed phyllody phytoplasma","na":1,"nb":1,"a":[["TED%3AAF-A0A859I9R5-F1-model_v4_TED01","TED novel fold AF-A0A859I9R5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2490543","Rapeseed phyllody phytoplasma"]]},{"id":"NCBITaxon:2490544","l":"Amphritea opalescens","na":1,"nb":1,"a":[["TED%3AAF-A0A430KT01-F1-model_v4_TED01","TED novel fold AF-A0A430KT01-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2490544","Amphritea opalescens"]]},{"id":"NCBITaxon:2490633","l":"Streptococcus periodonticum","na":1,"nb":1,"a":[["TED%3AAF-A0A3S9MQ51-F1-model_v4_TED01","TED novel fold AF-A0A3S9MQ51-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2490633","Streptococcus periodonticum"]]},{"id":"NCBITaxon:2490854","l":"Prevotella koreensis","na":1,"nb":1,"a":[["TED%3AAF-A0A3S0RAS3-F1-model_v4_TED01","TED novel fold AF-A0A3S0RAS3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2490854","Prevotella koreensis"]]},{"id":"NCBITaxon:2490863","l":"Thermosporothrix sp. COM3","na":1,"nb":1,"a":[["TED%3AAF-A0A455SY61-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A455SY61-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2490863","Thermosporothrix sp. COM3"]]},{"id":"NCBITaxon:2491050","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A3P1VN80-F1-model_v4_TED01","TED novel fold AF-A0A3P1VN80-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2491050","Leucobacter sp. OH2974_COT-288"]]},{"id":"NCBITaxon:2491057","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A3P1XLP3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3P1XLP3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2491057","Comamonadaceae bacterium OH2545_COT-014"]]},{"id":"NCBITaxon:2491082","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A520JYC5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A520JYC5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2491082","Candidatus Methanophagales archaeon ANME-1-THS"]]},{"id":"NCBITaxon:2492393","l":"Emticicia agri","na":1,"nb":1,"a":[["TED%3AAF-A0A4V1ZCT7-F1-model_v4_TED01","TED novel fold AF-A0A4V1ZCT7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2492393","Emticicia agri"]]},{"id":"NCBITaxon:2493092","l":"Aquabacterium soli","na":1,"nb":1,"a":[["TED%3AAF-A0A3R8T4B2-F1-model_v4_TED02","TED novel fold AF-A0A3R8T4B2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2493092","Aquabacterium soli"]]},{"id":"NCBITaxon:2493553","l":"Glycomyces terrestris","na":1,"nb":1,"a":[["TED%3AAF-A0A426UYJ2-F1-model_v4_TED03","TED novel fold AF-A0A426UYJ2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2493553","Glycomyces terrestris"]]},{"id":"NCBITaxon:2493665","l":"Ammoniphilus sp. CFH 90114","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q1SS73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q1SS73-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2493665","Ammoniphilus sp. CFH 90114"]]},{"id":"NCBITaxon:2494326","l":"Candidatus Jettenia ecosi","na":1,"nb":1,"a":[["TED%3AAF-A0A533QC19-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A533QC19-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2494326","Candidatus Jettenia ecosi"]]},{"id":"NCBITaxon:2494375","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A410G7M8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A410G7M8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2494375","Aequorivita ciconiae"]]},{"id":"NCBITaxon:2495421","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A428J8G1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A428J8G1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2495421","Bacillus salinus"]]},{"id":"NCBITaxon:249581","l":"Streptomyces ossamyceticus","na":1,"nb":1,"a":[["TED%3AAF-A0A3N1M1Z0-F1-model_v4_TED02","TED novel fold AF-A0A3N1M1Z0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A249581","Streptomyces ossamyceticus"]]},{"id":"NCBITaxon:2496694","l":"Mesorhizobium sp. M7A.F.Ca.CA.004.05.1.1","na":1,"nb":1,"a":[["TED%3AAF-A0A436EZH3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A436EZH3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2496694","Mesorhizobium sp. M7A.F.Ca.CA.004.05.1.1"]]},{"id":"NCBITaxon:2496729","l":"Mesorhizobium sp. M7A.F.Ca.CA.001.13.2.1","na":1,"nb":1,"a":[["TED%3AAF-A0A435IV59-F1-model_v4_TED02","TED novel fold AF-A0A435IV59-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2496729","Mesorhizobium sp. M7A.F.Ca.CA.001.13.2.1"]]},{"id":"NCBITaxon:2496739","l":"Mesorhizobium sp. M7A.F.Ca.CA.002.09.1.1","na":1,"nb":1,"a":[["TED%3AAF-A0A435B3N0-F1-model_v4_TED03","TED novel fold AF-A0A435B3N0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2496739","Mesorhizobium sp. M7A.F.Ca.CA.002.09.1.1"]]},{"id":"NCBITaxon:2496741","l":"Mesorhizobium sp. M7A.F.Ca.US.011.01.1.1","na":1,"nb":1,"a":[["TED%3AAF-A0A434ZTM9-F1-model_v4_TED02","TED novel fold AF-A0A434ZTM9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2496741","Mesorhizobium sp. M7A.F.Ca.US.011.01.1.1"]]},{"id":"NCBITaxon:2496836","l":"Streptomyces cyaneochromogenes","na":1,"nb":1,"a":[["TED%3AAF-A0A3S9M1D4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S9M1D4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2496836","Streptomyces cyaneochromogenes"]]},{"id":"NCBITaxon:2497483","l":"Flavobacterium bomense","na":1,"nb":1,"a":[["TED%3AAF-A0A3S0MKL8-F1-model_v4_TED02","TED novel fold AF-A0A3S0MKL8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2497483","Flavobacterium bomense"]]},{"id":"NCBITaxon:2498111","l":"Legionella sp. km772","na":1,"nb":1,"a":[["TED%3AAF-A0A433JX48-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A433JX48-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2498111","Legionella sp. km772"]]},{"id":"NCBITaxon:2498135","l":"Streptomonospora litoralis","na":1,"nb":1,"a":[["TED%3AAF-A0A4V0ZJD0-F1-model_v4_TED03","TED novel fold AF-A0A4V0ZJD0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2498135","Streptomonospora litoralis"]]},{"id":"NCBITaxon:2498892","l":"Maribacter algicola","na":1,"nb":1,"a":[["TED%3AAF-A0A426RLJ0-F1-model_v4_TED01","TED novel fold AF-A0A426RLJ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2498892","Maribacter algicola"]]},{"id":"NCBITaxon:2499078","l":"Vibrio ouci","na":1,"nb":1,"a":[["TED%3AAF-A0A4Y8WAE7-F1-model_v4_TED01","TED novel fold AF-A0A4Y8WAE7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2499078","Vibrio ouci"]]},{"id":"NCBITaxon:2499833","l":"Aliishimia ponticola","na":1,"nb":1,"a":[["TED%3AAF-A0A4S4NE60-F1-model_v4_TED02","TED novel fold AF-A0A4S4NE60-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2499833","Aliishimia ponticola"]]},{"id":"NCBITaxon:2500177","l":"Streptomyces sp. Z26","na":1,"nb":1,"a":[["TED%3AAF-A0A498DJ61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A498DJ61-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2500177","Streptomyces sp. Z26"]]},{"id":"NCBITaxon:2501297","l":"Hydrotalea sp. AMD","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q0AVN0-F1-model_v4_TED05","TED novel fold AF-A0A4Q0AVN0-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2501297","Hydrotalea sp. AMD"]]},{"id":"NCBITaxon:2501298","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A658NLS6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A658NLS6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2501298","Citrobacter sp. AAK_AS5"]]},{"id":"NCBITaxon:2501609","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A410FT40-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A410FT40-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2501609","Candidatus Bipolaricaulis sibiricus"]]},{"id":"NCBITaxon:2502781","l":"Hymenobacter jejuensis","na":1,"nb":1,"a":[["TED%3AAF-A0A5B8A5F0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B8A5F0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2502781","Hymenobacter jejuensis"]]},{"id":"NCBITaxon:2502782","l":"Nocardioides jejuensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4R1CJ34-F1-model_v4_TED01","TED novel fold AF-A0A4R1CJ34-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2502782","Nocardioides jejuensis"]]},{"id":"NCBITaxon:2502893","l":"Spirosoma sordidisoli","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q2UM74-F1-model_v4_TED02","TED novel fold AF-A0A4Q2UM74-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2502893","Spirosoma sordidisoli"]]},{"id":"NCBITaxon:2506149","l":"Endozoicomonadaceae bacterium GTF-13","na":1,"nb":1,"a":[["TED%3AAF-A0A444GPN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A444GPN7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2506149","Endozoicomonadaceae bacterium GTF-13"]]},{"id":"NCBITaxon:2506420","l":"Periweissella cryptocerci","na":1,"nb":1,"a":[["TED%3AAF-A0A4P6YRY8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P6YRY8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2506420","Periweissella cryptocerci"]]},{"id":"NCBITaxon:2506423","l":"Sphingobium fluviale","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q1KDC5-F1-model_v4_TED01","TED novel fold AF-A0A4Q1KDC5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2506423","Sphingobium fluviale"]]},{"id":"NCBITaxon:2506452","l":"Corynebacterium suranareeae","na":1,"nb":1,"a":[["TED%3AAF-A0A160PR52-F1-model_v4_TED02","TED novel fold AF-A0A160PR52-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2506452","Corynebacterium suranareeae"]]},{"id":"NCBITaxon:2506947","l":"Candidatus Chaera renei","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q0AG16-F1-model_v4_TED02","TED novel fold AF-A0A4Q0AG16-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2506947","Candidatus Chaera renei"]]},{"id":"NCBITaxon:2506948","l":"Candidatus Microsaccharimonas sossegonensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q0AGU7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A4Q0AGU7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2506948","Candidatus Microsaccharimonas sossegonensis"]]},{"id":"NCBITaxon:2507075","l":"Methanosarcina sp. MSH10X1","na":1,"nb":1,"a":[["TED%3AAF-A0A498GTE2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A498GTE2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2507075","Methanosarcina sp. MSH10X1"]]},{"id":"NCBITaxon:2507162","l":"Caproiciproducens sp. NJN-50","na":1,"nb":1,"a":[["TED%3AAF-A0A410Q502-F1-model_v4_TED01","TED novel fold AF-A0A410Q502-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2507162","Caproiciproducens sp. NJN-50"]]},{"id":"NCBITaxon:2507566","l":"Chengkuizengella marina","na":1,"nb":1,"a":[["TED%3AAF-A0A6N9Q6Q8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N9Q6Q8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2507566","Chengkuizengella marina"]]},{"id":"NCBITaxon:2508301","l":"Pandoraea anapnoica","na":1,"nb":1,"a":[["TED%3AAF-A0A5E5A4K9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5E5A4K9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2508301","Pandoraea anapnoica"]]},{"id":"NCBITaxon:2508721","l":"Filimonas effusa","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q1D7Q5-F1-model_v4_TED02","TED novel fold AF-A0A4Q1D7Q5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2508721","Filimonas effusa"]]},{"id":"NCBITaxon:2509004","l":"Apibacter muscae","na":1,"nb":1,"a":[["TED%3AAF-A0A563DC02-F1-model_v4_TED03","TED novel fold AF-A0A563DC02-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2509004","Apibacter muscae"]]},{"id":"NCBITaxon:2509241","l":"Aquirufa rosea","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q1C1H3-F1-model_v4_TED01","TED novel fold AF-A0A4Q1C1H3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2509241","Aquirufa rosea"]]},{"id":"NCBITaxon:2509434","l":"Verminephrobacter sp. Larva24","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q2L645-F1-model_v4_TED01","TED novel fold AF-A0A4Q2L645-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2509434","Verminephrobacter sp. Larva24"]]},{"id":"NCBITaxon:2509675","l":"Ktedonosporobacter rubrisoli","na":1,"nb":1,"a":[["TED%3AAF-A0A4V0Z027-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4V0Z027-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2509675","Ktedonosporobacter rubrisoli"]]},{"id":"NCBITaxon:2510334","l":"OM182 bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A520SEU8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A520SEU8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2510334","OM182 bacterium"]]},{"id":"NCBITaxon:2511025","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A4Y9EPB5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Y9EPB5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2511025","Glacieibacterium arshaanense"]]},{"id":"NCBITaxon:2511130","l":"Paraburkholderia sp. UYCP14C","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q6X8N7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q6X8N7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2511130","Paraburkholderia sp. UYCP14C"]]},{"id":"NCBITaxon:2511821","l":"Archaeoglobaceae archaeon","na":1,"nb":1,"a":[["TED%3AAF-A0A7J4ET47-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J4ET47-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2511821","Archaeoglobaceae archaeon"]]},{"id":"NCBITaxon:2511985","l":"Enterobacter cloacae complex sp. 743-2DZ2F-22B","na":1,"nb":1,"a":[["TED%3AAF-A0A4V1RGZ1-F1-model_v4_TED01","TED novel fold AF-A0A4V1RGZ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2511985","Enterobacter cloacae complex sp. 743-2DZ2F-22B"]]},{"id":"NCBITaxon:2511995","l":"Pseudolysobacter antarcticus","na":1,"nb":1,"a":[["TED%3AAF-A0A411HM88-F1-model_v4_TED01","TED novel fold AF-A0A411HM88-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2511995","Pseudolysobacter antarcticus"]]},{"id":"NCBITaxon:2512117","l":"Caulobacter sp. BK020","na":1,"nb":1,"a":[["TED%3AAF-A0A4R3H3Q8-F1-model_v4_TED01","TED novel fold AF-A0A4R3H3Q8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2512117","Caulobacter sp. BK020"]]},{"id":"NCBITaxon:2512127","l":"Streptomyces sp. BK215","na":1,"nb":1,"a":[["TED%3AAF-A0A4R3RKI3-F1-model_v4_TED03","TED novel fold AF-A0A4R3RKI3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2512127","Streptomyces sp. BK215"]]},{"id":"NCBITaxon:2512128","l":"Streptomyces sp. BK387","na":1,"nb":1,"a":[["TED%3AAF-A0A4R2EJ27-F1-model_v4_TED01","TED novel fold AF-A0A4R2EJ27-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2512128","Streptomyces sp. BK387"]]},{"id":"NCBITaxon:2512134","l":"Paenibacillus sp. BK673","na":1,"nb":1,"a":[["TED%3AAF-A0A4V3CHK3-F1-model_v4_TED01","TED novel fold AF-A0A4V3CHK3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2512134","Paenibacillus sp. BK673"]]},{"id":"NCBITaxon:2512146","l":"Micromonospora sp. CNZ295","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q8A7W5-F1-model_v4_TED01","TED novel fold AF-A0A4Q8A7W5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2512146","Micromonospora sp. CNZ295"]]},{"id":"NCBITaxon:2512153","l":"Streptomyces sp. BK674","na":1,"nb":1,"a":[["TED%3AAF-A0A4V2U669-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4V2U669-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2512153","Streptomyces sp. BK674"]]},{"id":"NCBITaxon:2512154","l":"Paenibacillus sp. BK736","na":1,"nb":1,"a":[["TED%3AAF-A0A4R3CPT4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4R3CPT4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2512154","Paenibacillus sp. BK736"]]},{"id":"NCBITaxon:2512165","l":"Mycobacterium sp. BK086","na":1,"nb":1,"a":[["TED%3AAF-A0A4R6I244-F1-model_v4_TED01","TED novel fold AF-A0A4R6I244-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2512165","Mycobacterium sp. BK086"]]},{"id":"NCBITaxon:2512167","l":"Streptomyces sp. BK561","na":1,"nb":1,"a":[["TED%3AAF-A0A4R7ANN1-F1-model_v4_TED01","TED novel fold AF-A0A4R7ANN1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2512167","Streptomyces sp. BK561"]]},{"id":"NCBITaxon:2512181","l":"Bacillus sp. BK100","na":1,"nb":1,"a":[["TED%3AAF-A0A4R2A5C6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R2A5C6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2512181","Bacillus sp. BK100"]]},{"id":"NCBITaxon:251221","l":"","na":1,"nb":1,"a":[["TED%3AAF-Q7NJ19-F1-model_v4_TED02","TED highly-symmetric fold AF-Q7NJ19-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A251221","Gloeobacter violaceus PCC 7421"]]},{"id":"NCBITaxon:2512217","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A4R2IIL2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R2IIL2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2512217","Kribbella antiqua"]]},{"id":"NCBITaxon:2512218","l":"Kribbella sp. VKM Ac-2566","na":1,"nb":1,"a":[["TED%3AAF-A0A4R8DKU6-F1-model_v4_TED05","TED novel fold AF-A0A4R8DKU6-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2512218","Kribbella sp. VKM Ac-2566"]]},{"id":"NCBITaxon:2512221","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A4R7ZLA8-F1-model_v4_TED01","TED novel fold AF-A0A4R7ZLA8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2512221","Kribbella kalugense"]]},{"id":"NCBITaxon:2512240","l":"Sulfolobus sp. S-194","na":1,"nb":1,"a":[["TED%3AAF-A0A6H0TUT9-F1-model_v4_TED02","TED novel fold AF-A0A6H0TUT9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2512240","Sulfolobus sp. S-194"]]},{"id":"NCBITaxon:2516328","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q5L2J3-F1-model_v4_TED01","TED novel fold AF-A0A4Q5L2J3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2516328","Methylolobus aquaticus"]]},{"id":"NCBITaxon:2516559","l":"Aquirufa antheringensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q9BGF9-F1-model_v4_TED03","TED novel fold AF-A0A4Q9BGF9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2516559","Aquirufa antheringensis"]]},{"id":"NCBITaxon:2517818","l":"Streptomyces sp. IB2014 016-6","na":1,"nb":1,"a":[["TED%3AAF-A0A5C8QPQ9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5C8QPQ9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2517818","Streptomyces sp. IB2014 016-6"]]},{"id":"NCBITaxon:2518115","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A4U7C1B2-F1-model_v4_TED01","TED novel fold AF-A0A4U7C1B2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2518115","Halorubrum sp. CGM5_25_10-8B"]]},{"id":"NCBITaxon:2518119","l":"Halorubrum sp. SS7","na":1,"nb":1,"a":[["TED%3AAF-A0A4U7DQF0-F1-model_v4_TED02","TED novel fold AF-A0A4U7DQF0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2518119","Halorubrum sp. SS7"]]},{"id":"NCBITaxon:2518371","l":"Nocardioides seonyuensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4P7IFM0-F1-model_v4_TED01","TED novel fold AF-A0A4P7IFM0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2518371","Nocardioides seonyuensis"]]},{"id":"NCBITaxon:2518624","l":"Acinetobacter sp. WCHAc060033","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q7BQU1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q7BQU1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2518624","Acinetobacter sp. WCHAc060033"]]},{"id":"NCBITaxon:2520506","l":"Spirosoma sp. KCTC 42546","na":1,"nb":1,"a":[["TED%3AAF-A0A514ZXP1-F1-model_v4_TED01","TED novel fold AF-A0A514ZXP1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2520506","Spirosoma sp. KCTC 42546"]]},{"id":"NCBITaxon:252514","l":"Microbulbifer thermotolerans","na":1,"nb":1,"a":[["Pfam%3APF18040","beta porphyranase A C-terminal"]],"b":[["NCBITaxon%3A252514","Microbulbifer thermotolerans"]]},{"id":"NCBITaxon:2527963","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A518L056-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A518L056-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2527963","Stieleria magnilauensis"]]},{"id":"NCBITaxon:2527964","l":"Gimesia aquarii","na":1,"nb":1,"a":[["TED%3AAF-A0A517VQM5-F1-model_v4_TED01","TED novel fold AF-A0A517VQM5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2527964","Gimesia aquarii"]]},{"id":"NCBITaxon:2527968","l":"Aureliella helgolandensis","na":1,"nb":1,"a":[["TED%3AAF-A0A518GGH1-F1-model_v4_TED01","TED novel fold AF-A0A518GGH1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2527968","Aureliella helgolandensis"]]},{"id":"NCBITaxon:2527971","l":"Gimesia algae","na":1,"nb":1,"a":[["TED%3AAF-A0A517V7F5-F1-model_v4_TED03","TED novel fold AF-A0A517V7F5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2527971","Gimesia algae"]]},{"id":"NCBITaxon:2527972","l":"Aeoliella mucimassa","na":1,"nb":1,"a":[["TED%3AAF-A0A518AV48-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A518AV48-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2527972","Aeoliella mucimassa"]]},{"id":"NCBITaxon:2527973","l":"Gimesia alba","na":1,"nb":1,"a":[["TED%3AAF-A0A517RIP9-F1-model_v4_TED01","TED novel fold AF-A0A517RIP9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2527973","Gimesia alba"]]},{"id":"NCBITaxon:2527975","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A518B387-F1-model_v4_TED02","TED novel fold AF-A0A518B387-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2527975","Kolteria novifilia"]]},{"id":"NCBITaxon:2527976","l":"Gimesia fumaroli","na":1,"nb":1,"a":[["TED%3AAF-A0A518IB04-F1-model_v4_TED02","TED novel fold AF-A0A518IB04-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2527976","Gimesia fumaroli"]]},{"id":"NCBITaxon:2527979","l":"Stieleria neptunia","na":1,"nb":1,"a":[["TED%3AAF-A0A518HR59-F1-model_v4_TED01","TED novel fold AF-A0A518HR59-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2527979","Stieleria neptunia"]]},{"id":"NCBITaxon:2527982","l":"Mucisphaera calidilacus","na":1,"nb":1,"a":[["TED%3AAF-A0A518BTF4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A518BTF4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2527982","Mucisphaera calidilacus"]]},{"id":"NCBITaxon:2527986","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A5C5Z7B3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C5Z7B3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2527986","Novipirellula herctigrandis"]]},{"id":"NCBITaxon:2527998","l":"Planctomycetes bacterium MalM25","na":1,"nb":1,"a":[["TED%3AAF-A0A517TKN2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A517TKN2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2527998","Planctomycetes bacterium MalM25"]]},{"id":"NCBITaxon:2527999","l":"Rubripirellula amarantea","na":1,"nb":1,"a":[["TED%3AAF-A0A5C5WRB7-F1-model_v4_TED01","TED novel fold AF-A0A5C5WRB7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2527999","Rubripirellula amarantea"]]},{"id":"NCBITaxon:2528001","l":"Botrimarina colliarenosi","na":1,"nb":1,"a":[["TED%3AAF-A0A5C6A5M4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5C6A5M4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2528001","Botrimarina colliarenosi"]]},{"id":"NCBITaxon:2528002","l":"Posidoniimonas polymericola","na":1,"nb":1,"a":[["TED%3AAF-A0A5C5YI66-F1-model_v4_TED01","TED novel fold AF-A0A5C5YI66-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528002","Posidoniimonas polymericola"]]},{"id":"NCBITaxon:2528003","l":"Bythopirellula polymerisocia","na":1,"nb":1,"a":[["TED%3AAF-A0A5C6CR23-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5C6CR23-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2528003","Bythopirellula polymerisocia"]]},{"id":"NCBITaxon:2528005","l":"Stieleria varia","na":1,"nb":1,"a":[["TED%3AAF-A0A5C5ZQ23-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C5ZQ23-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528005","Stieleria varia"]]},{"id":"NCBITaxon:2528014","l":"Planctomycetes bacterium Poly21","na":1,"nb":1,"a":[["TED%3AAF-A0A5C6C474-F1-model_v4_TED01","TED novel fold AF-A0A5C6C474-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528014","Planctomycetes bacterium Poly21"]]},{"id":"NCBITaxon:2528016","l":"Novipirellula artificiosorum","na":1,"nb":1,"a":[["TED%3AAF-A0A5C6D7J4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C6D7J4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528016","Novipirellula artificiosorum"]]},{"id":"NCBITaxon:2528017","l":"Rosistilla carotiformis","na":1,"nb":1,"a":[["TED%3AAF-A0A518JWA2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A518JWA2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528017","Rosistilla carotiformis"]]},{"id":"NCBITaxon:2528025","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A517SSY0-F1-model_v4_TED01","TED novel fold AF-A0A517SSY0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528025","Stieleria bergensis"]]},{"id":"NCBITaxon:2528035","l":"Phycisphaerae bacterium RAS2","na":1,"nb":1,"a":[["TED%3AAF-A0A518LKG1-F1-model_v4_TED05","TED novel fold AF-A0A518LKG1-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2528035","Phycisphaerae bacterium RAS2"]]},{"id":"NCBITaxon:2528038","l":"Calditrichales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A524LCS7-F1-model_v4_TED02","TED novel fold AF-A0A524LCS7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2528038","Calditrichales bacterium"]]},{"id":"NCBITaxon:2528039","l":"Chrysiogenales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A524Q1G9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A524Q1G9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2528039","Chrysiogenales bacterium"]]},{"id":"NCBITaxon:2528202","l":"Parasulfuritortus cantonensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4R1BGR8-F1-model_v4_TED02","TED novel fold AF-A0A4R1BGR8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2528202","Parasulfuritortus cantonensis"]]},{"id":"NCBITaxon:2528208","l":"Lewinella sp. W8","na":1,"nb":1,"a":[["TED%3AAF-A0A7H5EZD2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H5EZD2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528208","Lewinella sp. W8"]]},{"id":"NCBITaxon:2528251","l":"Sneathiellales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A836TT46-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A836TT46-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528251","Sneathiellales bacterium"]]},{"id":"NCBITaxon:2529274","l":"Pedobacter changchengzhani","na":1,"nb":1,"a":[["TED%3AAF-A0A4R5MMP0-F1-model_v4_TED01","TED novel fold AF-A0A4R5MMP0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2529274","Pedobacter changchengzhani"]]},{"id":"NCBITaxon:2530203","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A5N5ZD46-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5N5ZD46-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2530203","Kordia sp. TARA_039_SRF"]]},{"id":"NCBITaxon:2530364","l":"Actinomadura sp. 6K520","na":1,"nb":1,"a":[["TED%3AAF-A0A4R5DXZ8-F1-model_v4_TED02","TED novel fold AF-A0A4R5DXZ8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2530364","Actinomadura sp. 6K520"]]},{"id":"NCBITaxon:2530371","l":"Actinomadura sp. KC345","na":1,"nb":1,"a":[["TED%3AAF-A0A4R4RBU8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R4RBU8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2530371","Actinomadura sp. KC345"]]},{"id":"NCBITaxon:2530373","l":"Jiangella aurantiaca","na":1,"nb":1,"a":[["TED%3AAF-A0A4R5AMS3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R5AMS3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2530373","Jiangella aurantiaca"]]},{"id":"NCBITaxon:2530377","l":"Micromonospora sp. KC207","na":1,"nb":1,"a":[["TED%3AAF-A0A4V2XZG7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4V2XZG7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2530377","Micromonospora sp. KC207"]]},{"id":"NCBITaxon:2530379","l":"Micromonospora sp. KC606","na":1,"nb":1,"a":[["TED%3AAF-A0A4R4UFL4-F1-model_v4_TED03","TED novel fold AF-A0A4R4UFL4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2530379","Micromonospora sp. KC606"]]},{"id":"NCBITaxon:2530453","l":"Pedobacter psychroterrae","na":1,"nb":1,"a":[["TED%3AAF-A0A4R0NWY1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R0NWY1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2530453","Pedobacter psychroterrae"]]},{"id":"NCBITaxon:2530455","l":"Pedobacter frigidisoli","na":1,"nb":1,"a":[["TED%3AAF-A0A4R0NZC0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R0NZC0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2530455","Pedobacter frigidisoli"]]},{"id":"NCBITaxon:253184","l":"Myceligenerans xiligouense","na":1,"nb":1,"a":[["TED%3AAF-A0A3N4Z286-F1-model_v4_TED02","TED novel fold AF-A0A3N4Z286-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A253184","Myceligenerans xiligouense"]]},{"id":"NCBITaxon:253628","l":"Verruconis gallopava","na":1,"nb":1,"a":[["TED%3AAF-A0A0D2ANI5-F1-model_v4_TED01","TED novel fold AF-A0A0D2ANI5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A253628","Verruconis gallopava"]]},{"id":"NCBITaxon:2540710","l":"Candidatus Ordinivivax streblomastigis","na":1,"nb":1,"a":[["TED%3AAF-A0A5M8P651-F1-model_v4_TED02","TED novel fold AF-A0A5M8P651-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2540710","Candidatus Ordinivivax streblomastigis"]]},{"id":"NCBITaxon:2541734","l":"Flavobacterium hiemivividum","na":1,"nb":1,"a":[["TED%3AAF-A0A4R5D2J8-F1-model_v4_TED01","TED novel fold AF-A0A4R5D2J8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2541734","Flavobacterium hiemivividum"]]},{"id":"NCBITaxon:2545265","l":"Streptomyces sp. AJS327","na":1,"nb":1,"a":[["TED%3AAF-A0A7V8NJX1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V8NJX1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2545265","Streptomyces sp. AJS327"]]},{"id":"NCBITaxon:2545455","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A5P2G6M0-F1-model_v4_TED03","TED novel fold AF-A0A5P2G6M0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2545455","Rhizosphaericola mali"]]},{"id":"NCBITaxon:2545754","l":"Deinococcus sp. S9","na":1,"nb":1,"a":[["TED%3AAF-A0A4R5G9H4-F1-model_v4_TED02","TED novel fold AF-A0A4R5G9H4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2545754","Deinococcus sp. S9"]]},{"id":"NCBITaxon:2545760","l":"Paenibacillus albiflavus","na":1,"nb":1,"a":[["TED%3AAF-A0A4V2WNN0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4V2WNN0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2545760","Paenibacillus albiflavus"]]},{"id":"NCBITaxon:2547396","l":"Arthrobacter terricola","na":1,"nb":1,"a":[["TED%3AAF-A0A4R5KNZ8-F1-model_v4_TED02","TED novel fold AF-A0A4R5KNZ8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2547396","Arthrobacter terricola"]]},{"id":"NCBITaxon:254758","l":"Siminovitchia fortis","na":1,"nb":1,"a":[["TED%3AAF-A0A443IZJ3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A443IZJ3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A254758","Siminovitchia fortis"]]},{"id":"NCBITaxon:2547811","l":"Bacillus salipaludis","na":1,"nb":1,"a":[["TED%3AAF-A0A4R5VNI6-F1-model_v4_TED01","TED novel fold AF-A0A4R5VNI6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2547811","Bacillus salipaludis"]]},{"id":"NCBITaxon:2548426","l":"Candidatus Sedimenticola endophacoides","na":1,"nb":1,"a":[["TED%3AAF-A0A657PQA9-F1-model_v4_TED01","TED novel fold AF-A0A657PQA9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2548426","Candidatus Sedimenticola endophacoides"]]},{"id":"NCBITaxon:255723","l":"Slackia faecicanis","na":1,"nb":1,"a":[["TED%3AAF-A0A3N0ADX8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3N0ADX8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A255723","Slackia faecicanis"]]},{"id":"NCBITaxon:2558362","l":"Jiella endophytica","na":1,"nb":1,"a":[["TED%3AAF-A0A4Y8RES7-F1-model_v4_TED01","TED novel fold AF-A0A4Y8RES7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2558362","Jiella endophytica"]]},{"id":"NCBITaxon:2559236","l":"Streptomyces sp. MZ04","na":1,"nb":1,"a":[["TED%3AAF-A0A4R9EQ28-F1-model_v4_TED03","TED novel fold AF-A0A4R9EQ28-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2559236","Streptomyces sp. MZ04"]]},{"id":"NCBITaxon:2559571","l":"Flavivirga rizhaonensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4S1DSR7-F1-model_v4_TED02","TED novel fold AF-A0A4S1DSR7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2559571","Flavivirga rizhaonensis"]]},{"id":"NCBITaxon:2561932","l":"Duganella callida","na":1,"nb":1,"a":[["TED%3AAF-A0A4Y9S820-F1-model_v4_TED01","TED novel fold AF-A0A4Y9S820-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2561932","Duganella callida"]]},{"id":"NCBITaxon:2562453","l":"Methylorubrum sp. Q1","na":1,"nb":1,"a":[["TED%3AAF-A0A4Z0EFB6-F1-model_v4_TED02","TED novel fold AF-A0A4Z0EFB6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2562453","Methylorubrum sp. Q1"]]},{"id":"NCBITaxon:2563114","l":"Hymenobacter metallicola","na":1,"nb":1,"a":[["TED%3AAF-A0A4Z0QB90-F1-model_v4_TED01","TED novel fold AF-A0A4Z0QB90-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2563114","Hymenobacter metallicola"]]},{"id":"NCBITaxon:256318","l":"metagenome","na":1,"nb":1,"a":[["TED%3AAF-A0A380TIV2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A380TIV2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A256318","metagenome"]]},{"id":"NCBITaxon:2563600","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A5B2Z9H2-F1-model_v4_TED01","TED novel fold AF-A0A5B2Z9H2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2563600","Candidatus Nitrosocosmicus agrestis"]]},{"id":"NCBITaxon:2563896","l":"Candidatus Pelagibacter giovannonii","na":1,"nb":1,"a":[["TED%3AAF-A0A6H1Q3S8-F1-model_v4_TED01","TED novel fold AF-A0A6H1Q3S8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2563896","Candidatus Pelagibacter giovannonii"]]},{"id":"NCBITaxon:2565079","l":"Salmonella enterica subsp. enterica serovar Tamberma","na":1,"nb":1,"a":[["TED%3AAF-A0A5X9FFC1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5X9FFC1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2565079","Salmonella enterica subsp. enterica serovar Tamberma"]]},{"id":"NCBITaxon:2565549","l":"Alteromonas portus","na":1,"nb":1,"a":[["TED%3AAF-A0A4U0ZFG4-F1-model_v4_TED01","TED novel fold AF-A0A4U0ZFG4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2565549","Alteromonas portus"]]},{"id":"NCBITaxon:2565554","l":"Sphingobium sp. PAMC28499","na":1,"nb":1,"a":[["TED%3AAF-A0A4P7QJS9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P7QJS9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2565554","Sphingobium sp. PAMC28499"]]},{"id":"NCBITaxon:2565556","l":"Sphingopyxis sp. PAMC25046","na":1,"nb":1,"a":[["TED%3AAF-A0A4P7RZ57-F1-model_v4_TED04","TED novel fold AF-A0A4P7RZ57-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2565556","Sphingopyxis sp. PAMC25046"]]},{"id":"NCBITaxon:2565926","l":"Paenibacillus algicola","na":1,"nb":1,"a":[["TED%3AAF-A0A4V1G3T1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4V1G3T1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2565926","Paenibacillus algicola"]]},{"id":"NCBITaxon:2568653","l":"Deinococcus sp. Arct2-2","na":1,"nb":1,"a":[["TED%3AAF-A0A4S4B4G2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A4S4B4G2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2568653","Deinococcus sp. Arct2-2"]]},{"id":"NCBITaxon:2568654","l":"Deinococcus sp. KSM4-11","na":1,"nb":1,"a":[["TED%3AAF-A0A4S4CEL8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4S4CEL8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2568654","Deinococcus sp. KSM4-11"]]},{"id":"NCBITaxon:2569539","l":"Ferrimonas aestuarii","na":1,"nb":1,"a":[["TED%3AAF-A0A4U1BTI2-F1-model_v4_TED02","TED novel fold AF-A0A4U1BTI2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2569539","Ferrimonas aestuarii"]]},{"id":"NCBITaxon:2570357","l":"Halomonas sp. 15WGF","na":1,"nb":1,"a":[["TED%3AAF-A0A4V5TYW5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4V5TYW5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2570357","Halomonas sp. 15WGF"]]},{"id":"NCBITaxon:2570561","l":"Psychroserpens sp. NJDZ02","na":1,"nb":1,"a":[["TED%3AAF-A0A4P7WYH3-F1-model_v4_TED02","TED novel fold AF-A0A4P7WYH3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2570561","Psychroserpens sp. NJDZ02"]]},{"id":"NCBITaxon:2571141","l":"Actinacidiphila oryziradicis","na":1,"nb":1,"a":[["TED%3AAF-A0A4U0SPF5-F1-model_v4_TED01","TED novel fold AF-A0A4U0SPF5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2571141","Actinacidiphila oryziradicis"]]},{"id":"NCBITaxon:2571271","l":"Pedobacter cryophilus","na":1,"nb":1,"a":[["TED%3AAF-A0A4V5NYJ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4V5NYJ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2571271","Pedobacter cryophilus"]]},{"id":"NCBITaxon:2571747","l":"Paraburkholderia acidiphila","na":1,"nb":1,"a":[["TED%3AAF-A0A7Z2JC49-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Z2JC49-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2571747","Paraburkholderia acidiphila"]]},{"id":"NCBITaxon:2572577","l":"Salinimonas iocasae","na":1,"nb":1,"a":[["TED%3AAF-A0A5B7YIN9-F1-model_v4_TED01","TED novel fold AF-A0A5B7YIN9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2572577","Salinimonas iocasae"]]},{"id":"NCBITaxon:2572910","l":"Brevibacillus sp. AG162","na":1,"nb":1,"a":[["TED%3AAF-A0A542RIB6-F1-model_v4_TED01","TED novel fold AF-A0A542RIB6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2572910","Brevibacillus sp. AG162"]]},{"id":"NCBITaxon:257466","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1B0Z1W2-F1-model_v4_TED01","TED novel fold AF-A0A1B0Z1W2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A257466","uncultured marine euryarchaeote"]]},{"id":"NCBITaxon:2575442","l":"Herbidospora galbida","na":1,"nb":1,"a":[["TED%3AAF-A0A4U3MIS3-F1-model_v4_TED02","TED novel fold AF-A0A4U3MIS3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2575442","Herbidospora galbida"]]},{"id":"NCBITaxon:2575699","l":"Elizabethkingia sp. 2-6","na":1,"nb":1,"a":[["TED%3AAF-A0A4P8E4G0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4P8E4G0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2575699","Elizabethkingia sp. 2-6"]]},{"id":"NCBITaxon:2575867","l":"Ilyomonas limi","na":1,"nb":1,"a":[["TED%3AAF-A0A4U3KZT4-F1-model_v4_TED01","TED novel fold AF-A0A4U3KZT4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2575867","Ilyomonas limi"]]},{"id":"NCBITaxon:2576035","l":"Arthrobacter sp. NamB2","na":1,"nb":1,"a":[["TED%3AAF-A0A4U6NG55-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U6NG55-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2576035","Arthrobacter sp. NamB2"]]},{"id":"NCBITaxon:2576308","l":"Nakamurella flava","na":1,"nb":1,"a":[["TED%3AAF-A0A4V6CWB7-F1-model_v4_TED01","TED novel fold AF-A0A4V6CWB7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2576308","Nakamurella flava"]]},{"id":"NCBITaxon:2576891","l":"Nibricoccus aquaticus","na":1,"nb":1,"a":[["TED%3AAF-A0A290QJZ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A290QJZ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2576891","Nibricoccus aquaticus"]]},{"id":"NCBITaxon:257772","l":"Halomonas organivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A7W5C2T6-F1-model_v4_TED01","TED novel fold AF-A0A7W5C2T6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A257772","Halomonas organivorans"]]},{"id":"NCBITaxon:2578118","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A5S3PMY7-F1-model_v4_TED01","TED novel fold AF-A0A5S3PMY7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2578118","Maribacter algarum (ex Zhang et al. 2020)"]]},{"id":"NCBITaxon:2579248","l":"Agrobacterium sp. CGMCC 11546","na":1,"nb":1,"a":[["TED%3AAF-A0A7I0RQ36-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7I0RQ36-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2579248","Agrobacterium sp. CGMCC 11546"]]},{"id":"NCBITaxon:2579250","l":"Nautilia sp. PV-1","na":1,"nb":1,"a":[["TED%3AAF-A0A3T0L461-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3T0L461-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2579250","Nautilia sp. PV-1"]]},{"id":"NCBITaxon:2580422","l":"Paenibacillus sp. UASWS1643","na":1,"nb":1,"a":[["TED%3AAF-A0A5M9TVU1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5M9TVU1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2580422","Paenibacillus sp. UASWS1643"]]},{"id":"NCBITaxon:2580517","l":"Micromonospora sp. CP22","na":1,"nb":1,"a":[["TED%3AAF-A0A7K1H2F9-F1-model_v4_TED03","TED novel fold AF-A0A7K1H2F9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2580517","Micromonospora sp. CP22"]]},{"id":"NCBITaxon:2583219","l":"Lentibacillus cibarius","na":1,"nb":1,"a":[["TED%3AAF-A0A549YFU0-F1-model_v4_TED02","TED novel fold AF-A0A549YFU0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2583219","Lentibacillus cibarius"]]},{"id":"NCBITaxon:2583233","l":"Rhizobium sp. MHM7A","na":1,"nb":1,"a":[["TED%3AAF-A0A5R9NZ24-F1-model_v4_TED01","TED novel fold AF-A0A5R9NZ24-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2583233","Rhizobium sp. MHM7A"]]},{"id":"NCBITaxon:2583243","l":"Micromonospora sp. HM134","na":1,"nb":1,"a":[["TED%3AAF-A0A518WHF4-F1-model_v4_TED01","TED novel fold AF-A0A518WHF4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2583243","Micromonospora sp. HM134"]]},{"id":"NCBITaxon:2583452","l":"Amedibacterium intestinale","na":1,"nb":1,"a":[["TED%3AAF-A0A6N4THS5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N4THS5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2583452","Amedibacterium intestinale"]]},{"id":"NCBITaxon:2583530","l":"Thermosynechococcus sp. CL-1","na":1,"nb":1,"a":[["TED%3AAF-A0A5C2M810-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C2M810-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2583530","Thermosynechococcus sp. CL-1"]]},{"id":"NCBITaxon:2583809","l":"Phaeobacter sp. B1627","na":1,"nb":1,"a":[["TED%3AAF-A0A5C4S7H6-F1-model_v4_TED01","TED novel fold AF-A0A5C4S7H6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2583809","Phaeobacter sp. B1627"]]},{"id":"NCBITaxon:2584121","l":"Antrihabitans stalactiti","na":1,"nb":1,"a":[["TED%3AAF-A0A848K3F4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A848K3F4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2584121","Antrihabitans stalactiti"]]},{"id":"NCBITaxon:2584624","l":"Blautia sp. BIOML-A1","na":1,"nb":1,"a":[["TED%3AAF-A0A6N9LH19-F1-model_v4_TED04","TED novel fold AF-A0A6N9LH19-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2584624","Blautia sp. BIOML-A1"]]},{"id":"NCBITaxon:2584625","l":"Butyricicoccus sp. BIOML-A1","na":1,"nb":1,"a":[["TED%3AAF-A0A845N2K1-F1-model_v4_TED01","TED novel fold AF-A0A845N2K1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2584625","Butyricicoccus sp. BIOML-A1"]]},{"id":"NCBITaxon:2584680","l":"Pseudoflavonifractor sp. BIOML-A18","na":1,"nb":1,"a":[["TED%3AAF-A0A844K7V4-F1-model_v4_TED02","TED novel fold AF-A0A844K7V4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2584680","Pseudoflavonifractor sp. BIOML-A18"]]},{"id":"NCBITaxon:2584944","l":"Sutterella faecalis","na":1,"nb":1,"a":[["TED%3AAF-A0A5B7ZEU6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5B7ZEU6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2584944","Sutterella faecalis"]]},{"id":"NCBITaxon:2585118","l":"Alistipes communis","na":1,"nb":1,"a":[["TED%3AAF-A0A3D3YMR4-F1-model_v4_TED02","TED novel fold AF-A0A3D3YMR4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2585118","Alistipes communis"]]},{"id":"NCBITaxon:258515","l":"Acetanaerobacterium elongatum","na":1,"nb":1,"a":[["TED%3AAF-A0A1H0CHA1-F1-model_v4_TED01","TED novel fold AF-A0A1H0CHA1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A258515","Acetanaerobacterium elongatum"]]},{"id":"NCBITaxon:2585196","l":"Streptomyces smaragdinus","na":1,"nb":1,"a":[["TED%3AAF-A0A7K0CAT2-F1-model_v4_TED01","TED novel fold AF-A0A7K0CAT2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2585196","Streptomyces smaragdinus"]]},{"id":"NCBITaxon:2585199","l":"Nocardia aurantia","na":1,"nb":1,"a":[["TED%3AAF-A0A7K0DV44-F1-model_v4_TED01","TED novel fold AF-A0A7K0DV44-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2585199","Nocardia aurantia"]]},{"id":"NCBITaxon:2586978","l":"Rhizobium sp. BK700","na":1,"nb":1,"a":[["TED%3AAF-A0A7W5W0L3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W5W0L3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2586978","Rhizobium sp. BK700"]]},{"id":"NCBITaxon:2586981","l":"Sphingomonas sp. BK481","na":1,"nb":1,"a":[["TED%3AAF-A0A7W5X2V4-F1-model_v4_TED01","TED novel fold AF-A0A7W5X2V4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2586981","Sphingomonas sp. BK481"]]},{"id":"NCBITaxon:2586988","l":"Rhizobium sp. BK612","na":1,"nb":1,"a":[["TED%3AAF-A0A7W5UR77-F1-model_v4_TED05","TED novel fold AF-A0A7W5UR77-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2586988","Rhizobium sp. BK612"]]},{"id":"NCBITaxon:2586989","l":"Rhizobium sp. BK619","na":1,"nb":1,"a":[["TED%3AAF-A0A7W5XB29-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W5XB29-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2586989","Rhizobium sp. BK619"]]},{"id":"NCBITaxon:2587012","l":"Azospirillum sp. OGB3","na":1,"nb":1,"a":[["TED%3AAF-A0A839WB26-F1-model_v4_TED01","TED novel fold AF-A0A839WB26-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2587012","Azospirillum sp. OGB3"]]},{"id":"NCBITaxon:2587018","l":"Dyella sp. SG609","na":1,"nb":1,"a":[["TED%3AAF-A0A846VC72-F1-model_v4_TED01","TED novel fold AF-A0A846VC72-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2587018","Dyella sp. SG609"]]},{"id":"NCBITaxon:2587021","l":"Mucilaginibacter sp. SG538B","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y7L8T0-F1-model_v4_TED02","TED novel fold AF-A0A7Y7L8T0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2587021","Mucilaginibacter sp. SG538B"]]},{"id":"NCBITaxon:2587027","l":"Variovorax sp. Sphag1AA","na":1,"nb":1,"a":[["TED%3AAF-A0A7W5DBM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W5DBM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2587027","Variovorax sp. Sphag1AA"]]},{"id":"NCBITaxon:2587127","l":"Methylobacterium sp. RAS18","na":1,"nb":1,"a":[["TED%3AAF-A0A7W3SCX3-F1-model_v4_TED03","TED novel fold AF-A0A7W3SCX3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2587127","Methylobacterium sp. RAS18"]]},{"id":"NCBITaxon:2587129","l":"Rhizobium sp. RAS22","na":1,"nb":1,"a":[["TED%3AAF-A0A7W4U1B4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W4U1B4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2587129","Rhizobium sp. RAS22"]]},{"id":"NCBITaxon:2587140","l":"Rhizobacter sp. SG703","na":1,"nb":1,"a":[["TED%3AAF-A0A846UAF8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A846UAF8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2587140","Rhizobacter sp. SG703"]]},{"id":"NCBITaxon:2587145","l":"Sphingobacterium sp. JUb56","na":1,"nb":1,"a":[["TED%3AAF-A0A839NR61-F1-model_v4_TED02","TED novel fold AF-A0A839NR61-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2587145","Sphingobacterium sp. JUb56"]]},{"id":"NCBITaxon:2587808","l":"Cellulosimicrobium protaetiae","na":1,"nb":1,"a":[["TED%3AAF-A0A6M5UKT5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6M5UKT5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2587808","Cellulosimicrobium protaetiae"]]},{"id":"NCBITaxon:2587843","l":"Pseudoalteromonas sp. THAF3","na":1,"nb":1,"a":[["TED%3AAF-A0A5P9J546-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5P9J546-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2587843","Pseudoalteromonas sp. THAF3"]]},{"id":"NCBITaxon:2588693","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A564QAZ0-F1-model_v4_TED01","TED novel fold AF-A0A564QAZ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2588693","Candidatus Syntropharchaeum sp. GoM_oil"]]},{"id":"NCBITaxon:2589790","l":"Shewanella sp. LC6","na":1,"nb":1,"a":[["TED%3AAF-A0A501XZA5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A501XZA5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2589790","Shewanella sp. LC6"]]},{"id":"NCBITaxon:2589817","l":"Maribrevibacterium harenarium","na":1,"nb":1,"a":[["TED%3AAF-A0A501X0P0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A501X0P0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2589817","Maribrevibacterium harenarium"]]},{"id":"NCBITaxon:2589961","l":"Mesorhizobium sp. B2-3-2","na":1,"nb":1,"a":[["TED%3AAF-A0A503X4P9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A503X4P9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2589961","Mesorhizobium sp. B2-3-2"]]},{"id":"NCBITaxon:2589995","l":"Aquimarina algicola","na":1,"nb":1,"a":[["TED%3AAF-A0A504J2V1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A504J2V1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2589995","Aquimarina algicola"]]},{"id":"NCBITaxon:2590025","l":"Dolichospermum sp. UHCC 0260","na":1,"nb":1,"a":[["TED%3AAF-A0A844IIA9-F1-model_v4_TED02","TED novel fold AF-A0A844IIA9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2590025","Dolichospermum sp. UHCC 0260"]]},{"id":"NCBITaxon:2590028","l":"Aphanizomenon sp. UHCC 0183","na":1,"nb":1,"a":[["TED%3AAF-A0A844IEK7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A844IEK7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2590028","Aphanizomenon sp. UHCC 0183"]]},{"id":"NCBITaxon:2590547","l":"Paenibacillus vietnamensis","na":1,"nb":1,"a":[["TED%3AAF-A0A559IZM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A559IZM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2590547","Paenibacillus vietnamensis"]]},{"id":"NCBITaxon:2590774","l":"Pseudarthrobacter sp. NIBRBAC000502771","na":1,"nb":1,"a":[["TED%3AAF-A0A4Y6QWB4-F1-model_v4_TED03","TED novel fold AF-A0A4Y6QWB4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2590774","Pseudarthrobacter sp. NIBRBAC000502771"]]},{"id":"NCBITaxon:2590869","l":"Janthinobacterium tructae","na":1,"nb":1,"a":[["TED%3AAF-A0A4Y6RAM4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Y6RAM4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2590869","Janthinobacterium tructae"]]},{"id":"NCBITaxon:2591463","l":"Brevundimonas sp. M20","na":1,"nb":1,"a":[["TED%3AAF-A0A514C1G8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A514C1G8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2591463","Brevundimonas sp. M20"]]},{"id":"NCBITaxon:2591634","l":"Echinicola soli","na":1,"nb":1,"a":[["TED%3AAF-A0A514CKC4-F1-model_v4_TED02","TED novel fold AF-A0A514CKC4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2591634","Echinicola soli"]]},{"id":"NCBITaxon:2592334","l":"Nocardioides sp. JQ2195","na":1,"nb":1,"a":[["TED%3AAF-A0A6H1A300-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A6H1A300-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A2592334","Nocardioides sp. JQ2195"]]},{"id":"NCBITaxon:2592383","l":"Aliikangiella coralliicola","na":1,"nb":1,"a":[["TED%3AAF-A0A545UDA7-F1-model_v4_TED01","TED novel fold AF-A0A545UDA7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2592383","Aliikangiella coralliicola"]]},{"id":"NCBITaxon:2592816","l":"Tardiphaga sp. vice352","na":1,"nb":1,"a":[["TED%3AAF-A0A515KK81-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A515KK81-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2592816","Tardiphaga sp. vice352"]]},{"id":"NCBITaxon:259315","l":"uncultured Faecalibacterium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A1C5N185-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C5N185-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A259315","uncultured Faecalibacterium sp."]]},{"id":"NCBITaxon:2593659","l":"","na":1,"nb":1,"a":[["Pfam%3APF07589","PEP-CTERM protein-sorting motif"]],"b":[["NCBITaxon%3A2593659","Nostoc sp. HG1"]]},{"id":"NCBITaxon:2593672","l":"Arcobacter sp. FWKO B","na":1,"nb":1,"a":[["TED%3AAF-A0A7L8V3P2-F1-model_v4_TED01","TED novel fold AF-A0A7L8V3P2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2593672","Arcobacter sp. FWKO B"]]},{"id":"NCBITaxon:2594005","l":"Thalassotalea sp. PS06","na":1,"nb":1,"a":[["TED%3AAF-A0A516HCM8-F1-model_v4_TED01","TED novel fold AF-A0A516HCM8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2594005","Thalassotalea sp. PS06"]]},{"id":"NCBITaxon:2594007","l":"Rhodococcus sp. WB9","na":1,"nb":1,"a":[["TED%3AAF-A0A516WPA8-F1-model_v4_TED01","TED novel fold AF-A0A516WPA8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2594007","Rhodococcus sp. WB9"]]},{"id":"NCBITaxon:2594042","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A5B9D689-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B9D689-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2594042","Promethearchaeum syntrophicum"]]},{"id":"NCBITaxon:2594460","l":"Streptomyces sp. S1A1-8","na":1,"nb":1,"a":[["TED%3AAF-A0A856N3J6-F1-model_v4_TED02","TED novel fold AF-A0A856N3J6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2594460","Streptomyces sp. S1A1-8"]]},{"id":"NCBITaxon:2594476","l":"Carboxylicivirga sp. M1479","na":1,"nb":1,"a":[["TED%3AAF-A0A553GLI2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A553GLI2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2594476","Carboxylicivirga sp. M1479"]]},{"id":"NCBITaxon:2594477","l":"Thalassomonas sp. M1454","na":1,"nb":1,"a":[["TED%3AAF-A0A553F670-F1-model_v4_TED04","TED novel fold AF-A0A553F670-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2594477","Thalassomonas sp. M1454"]]},{"id":"NCBITaxon:2594500","l":"Bacteroides sp. HF-5092","na":1,"nb":1,"a":[["TED%3AAF-A0A553ECR7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A553ECR7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2594500","Bacteroides sp. HF-5092"]]},{"id":"NCBITaxon:2596829","l":"Corallococcus sp. Z5C101001","na":1,"nb":1,"a":[["TED%3AAF-A0A554FXA3-F1-model_v4_TED02","TED novel fold AF-A0A554FXA3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2596829","Corallococcus sp. Z5C101001"]]},{"id":"NCBITaxon:2596893","l":"Amycolatopsis acidicola","na":1,"nb":1,"a":[["TED%3AAF-A0A5N0VHZ5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5N0VHZ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2596893","Amycolatopsis acidicola"]]},{"id":"NCBITaxon:2597223","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A519BCI6-F1-model_v4_TED01","TED novel fold AF-A0A519BCI6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2597223","Candidatus Acidulidesulfobacterium ferriphilum"]]},{"id":"NCBITaxon:2597350","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A5B0BWV8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B0BWV8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2597350","Pseudomonas sp. ANT_H4"]]},{"id":"NCBITaxon:2597356","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A5A9X8D3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5A9X8D3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2597356","Pusillimonas sp. ANT_WB101"]]},{"id":"NCBITaxon:2597670","l":"Mucilaginibacter corticis","na":1,"nb":1,"a":[["TED%3AAF-A0A556MKK0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A556MKK0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2597670","Mucilaginibacter corticis"]]},{"id":"NCBITaxon:2599390","l":"Flavobacterium sp. XN-5","na":1,"nb":1,"a":[["TED%3AAF-A0A6M2CB07-F1-model_v4_TED01","TED novel fold AF-A0A6M2CB07-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2599390","Flavobacterium sp. XN-5"]]},{"id":"NCBITaxon:2599596","l":"Parafrankia soli","na":1,"nb":1,"a":[["TED%3AAF-A0A1S1PC11-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S1PC11-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2599596","Parafrankia soli"]]},{"id":"NCBITaxon:2599616","l":"Reyranella sp. CPCC 100927","na":1,"nb":1,"a":[["TED%3AAF-A0A5C5TE83-F1-model_v4_TED02","TED novel fold AF-A0A5C5TE83-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2599616","Reyranella sp. CPCC 100927"]]},{"id":"NCBITaxon:2599694","l":"Terrilactibacillus tamarindi","na":1,"nb":1,"a":[["TED%3AAF-A0A6N8CTX1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8CTX1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2599694","Terrilactibacillus tamarindi"]]},{"id":"NCBITaxon:2600148","l":"Streptococcus sp. sy010","na":1,"nb":1,"a":[["TED%3AAF-A0A5C5TSN3-F1-model_v4_TED01","TED novel fold AF-A0A5C5TSN3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2600148","Streptococcus sp. sy010"]]},{"id":"NCBITaxon:260086","l":"Pseudonocardia ammonioxydans","na":1,"nb":1,"a":[["TED%3AAF-A0A1I5CIV7-F1-model_v4_TED01","TED novel fold AF-A0A1I5CIV7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A260086","Pseudonocardia ammonioxydans"]]},{"id":"NCBITaxon:2601122","l":"Acinetobacter sp. YH12138","na":1,"nb":1,"a":[["TED%3AAF-A0A7S6W0W4-F1-model_v4_TED02","TED novel fold AF-A0A7S6W0W4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2601122","Acinetobacter sp. YH12138"]]},{"id":"NCBITaxon:2601869","l":"Litoreibacter roseus","na":1,"nb":1,"a":[["TED%3AAF-A0A6N6JMU7-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A6N6JMU7-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2601869","Litoreibacter roseus"]]},{"id":"NCBITaxon:2602289","l":"Roseobacter cerasinus","na":1,"nb":1,"a":[["TED%3AAF-A0A640VSB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A640VSB4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2602289","Roseobacter cerasinus"]]},{"id":"NCBITaxon:2602760","l":"Mesonia sp. K4-1","na":1,"nb":1,"a":[["TED%3AAF-A0A5C8LQA4-F1-model_v4_TED03","TED novel fold AF-A0A5C8LQA4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2602760","Mesonia sp. K4-1"]]},{"id":"NCBITaxon:2603628","l":"Flagellimonas hymeniacidonis","na":1,"nb":1,"a":[["TED%3AAF-A0A5C8V210-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A5C8V210-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2603628","Flagellimonas hymeniacidonis"]]},{"id":"NCBITaxon:2603858","l":"Oryzomonas japonica","na":1,"nb":1,"a":[["TED%3AAF-A0A7J4ZSR9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J4ZSR9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2603858","Oryzomonas japonica"]]},{"id":"NCBITaxon:2603887","l":"Methylobacterium sp. WL120","na":1,"nb":1,"a":[["TED%3AAF-A0A5C8RZ22-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5C8RZ22-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2603887","Methylobacterium sp. WL120"]]},{"id":"NCBITaxon:2603888","l":"Methylobacterium sp. WL119","na":1,"nb":1,"a":[["TED%3AAF-A0A5C8VYH2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C8VYH2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2603888","Methylobacterium sp. WL119"]]},{"id":"NCBITaxon:2603898","l":"Methylobacterium sp. WL9","na":1,"nb":1,"a":[["TED%3AAF-A0A5C8U038-F1-model_v4_TED02","TED novel fold AF-A0A5C8U038-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2603898","Methylobacterium sp. WL9"]]},{"id":"NCBITaxon:2604423","l":"Agromyces mariniharenae","na":1,"nb":1,"a":[["TED%3AAF-A0A5S4UWB3-F1-model_v4_TED01","TED novel fold AF-A0A5S4UWB3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2604423","Agromyces mariniharenae"]]},{"id":"NCBITaxon:2604572","l":"Actinomadura decatromicini","na":1,"nb":1,"a":[["TED%3AAF-A0A5D3F885-F1-model_v4_TED02","TED novel fold AF-A0A5D3F885-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2604572","Actinomadura decatromicini"]]},{"id":"NCBITaxon:2604873","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A6G2K727-F1-model_v4_TED02","TED novel fold AF-A0A6G2K727-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2604873","Cenarchaeum sp. SB0662_bin_33"]]},{"id":"NCBITaxon:2605257","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A845CY77-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A845CY77-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2605257","Caldilineaceae bacterium SB0662_bin_25"]]},{"id":"NCBITaxon:2605263","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A845C865-F1-model_v4_TED01","TED novel fold AF-A0A845C865-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2605263","Caldilineaceae bacterium SB0666_bin_21"]]},{"id":"NCBITaxon:2605428","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A5B0FIC5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B0FIC5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2605428","Dyadobacter aurulentus"]]},{"id":"NCBITaxon:2605746","l":"Herbaspirillum sp. CAH-3","na":1,"nb":1,"a":[["TED%3AAF-A0A7X2IG44-F1-model_v4_TED01","TED novel fold AF-A0A7X2IG44-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2605746","Herbaspirillum sp. CAH-3"]]},{"id":"NCBITaxon:2605747","l":"Pedobacter aquae","na":1,"nb":1,"a":[["TED%3AAF-A0A5C0VI45-F1-model_v4_TED02","TED novel fold AF-A0A5C0VI45-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2605747","Pedobacter aquae"]]},{"id":"NCBITaxon:2605782","l":"Desulfovibrio porci","na":1,"nb":1,"a":[["TED%3AAF-A0A6L5XL46-F1-model_v4_TED01","TED novel fold AF-A0A6L5XL46-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2605782","Desulfovibrio porci"]]},{"id":"NCBITaxon:2606439","l":"Candidatus Manganitrophus noduliformans","na":1,"nb":1,"a":[["TED%3AAF-A0A7X6DR50-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X6DR50-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2606439","Candidatus Manganitrophus noduliformans"]]},{"id":"NCBITaxon:2606450","l":"Alicyclobacillus sp. TC","na":1,"nb":1,"a":[["TED%3AAF-A0A7U3FDC8-F1-model_v4_TED01","TED novel fold AF-A0A7U3FDC8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2606450","Alicyclobacillus sp. TC"]]},{"id":"NCBITaxon:2606614","l":"Mycolicibacterium sp. CBMA 360","na":1,"nb":1,"a":[["TED%3AAF-A0A7K1JND0-F1-model_v4_TED01","TED novel fold AF-A0A7K1JND0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2606614","Mycolicibacterium sp. CBMA 360"]]},{"id":"NCBITaxon:2606635","l":"Waltera intestinalis","na":1,"nb":1,"a":[["TED%3AAF-A0A6L5YKL2-F1-model_v4_TED02","TED novel fold AF-A0A6L5YKL2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2606635","Waltera intestinalis"]]},{"id":"NCBITaxon:2606638","l":"Bullifex porci","na":1,"nb":1,"a":[["TED%3AAF-A0A7X2TS46-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X2TS46-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2606638","Bullifex porci"]]},{"id":"NCBITaxon:2606681","l":"Ramlibacter lithotrophicus","na":1,"nb":1,"a":[["TED%3AAF-A0A7X6I5A9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7X6I5A9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2606681","Ramlibacter lithotrophicus"]]},{"id":"NCBITaxon:2606906","l":"Calorimonas adulescens","na":1,"nb":1,"a":[["TED%3AAF-A0A5D8QJA0-F1-model_v4_TED01","TED novel fold AF-A0A5D8QJA0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2606906","Calorimonas adulescens"]]},{"id":"NCBITaxon:2607496","l":"Azospirillum sp. B21","na":1,"nb":1,"a":[["TED%3AAF-A0A5A9EU56-F1-model_v4_TED02","TED novel fold AF-A0A5A9EU56-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2607496","Azospirillum sp. B21"]]},{"id":"NCBITaxon:2607602","l":"Vibrio sp. 99-8-1","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y4FIG3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y4FIG3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2607602","Vibrio sp. 99-8-1"]]},{"id":"NCBITaxon:2607607","l":"Vibrio sp. 03-59-1","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y4AGH1-F1-model_v4_TED02","TED novel fold AF-A0A7Y4AGH1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2607607","Vibrio sp. 03-59-1"]]},{"id":"NCBITaxon:2607653","l":"Chitinophaga agrisoli","na":1,"nb":1,"a":[["TED%3AAF-A0A5B2VM43-F1-model_v4_TED01","TED novel fold AF-A0A5B2VM43-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607653","Chitinophaga agrisoli"]]},{"id":"NCBITaxon:2607654","l":"Larkinella humicola","na":1,"nb":1,"a":[["TED%3AAF-A0A5N1JIW3-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A5N1JIW3-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2607654","Larkinella humicola"]]},{"id":"NCBITaxon:2607659","l":"Nocardioides antri","na":1,"nb":1,"a":[["TED%3AAF-A0A5B1M286-F1-model_v4_TED01","TED novel fold AF-A0A5B1M286-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607659","Nocardioides antri"]]},{"id":"NCBITaxon:2607660","l":"Nocardioides humilatus","na":1,"nb":1,"a":[["TED%3AAF-A0A5B1LLV6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B1LLV6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607660","Nocardioides humilatus"]]},{"id":"NCBITaxon:2607754","l":"Paenibacillus sp. B2(2019)","na":1,"nb":1,"a":[["TED%3AAF-A0A5B0W0T2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B0W0T2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607754","Paenibacillus sp. B2(2019)"]]},{"id":"NCBITaxon:2607763","l":"Symploca sp. SIO1B1","na":1,"nb":1,"a":[["TED%3AAF-A0A846BXF7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A846BXF7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607763","Symploca sp. SIO1B1"]]},{"id":"NCBITaxon:2607768","l":"Leptolyngbya sp. SIO1E4","na":1,"nb":1,"a":[["TED%3AAF-A0A6I5RHA9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I5RHA9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607768","Leptolyngbya sp. SIO1E4"]]},{"id":"NCBITaxon:2607769","l":"Symploca sp. SIO1C2","na":1,"nb":1,"a":[["TED%3AAF-A0A6P0VBZ9-F1-model_v4_TED02","TED novel fold AF-A0A6P0VBZ9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2607769","Symploca sp. SIO1C2"]]},{"id":"NCBITaxon:2607770","l":"Leptolyngbya sp. SIO4C1","na":1,"nb":1,"a":[["TED%3AAF-A0A6I5NA04-F1-model_v4_TED03","TED novel fold AF-A0A6I5NA04-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2607770","Leptolyngbya sp. SIO4C1"]]},{"id":"NCBITaxon:2607772","l":"Okeania sp. SIO1I7","na":1,"nb":1,"a":[["TED%3AAF-A0A6M0FNT0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6M0FNT0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2607772","Okeania sp. SIO1I7"]]},{"id":"NCBITaxon:2607785","l":"Symploca sp. SIO2B6","na":1,"nb":1,"a":[["TED%3AAF-A0A6M0EWE3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A6M0EWE3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2607785","Symploca sp. SIO2B6"]]},{"id":"NCBITaxon:2607787","l":"Okeania sp. SIO2C2","na":1,"nb":1,"a":[["TED%3AAF-A0A6P0NL51-F1-model_v4_TED03","TED novel fold AF-A0A6P0NL51-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2607787","Okeania sp. SIO2C2"]]},{"id":"NCBITaxon:2607806","l":"Caldora sp. SIO3E6","na":1,"nb":1,"a":[["TED%3AAF-A0A6P0X4Z5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6P0X4Z5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607806","Caldora sp. SIO3E6"]]},{"id":"NCBITaxon:2607811","l":"Okeania sp. SIO3B5","na":1,"nb":1,"a":[["TED%3AAF-A0A6M0A5D0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6M0A5D0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607811","Okeania sp. SIO3B5"]]},{"id":"NCBITaxon:2607814","l":"Sphaerospermopsis sp. SIO1G1","na":1,"nb":1,"a":[["TED%3AAF-A0A846EMA3-F1-model_v4_TED01","TED novel fold AF-A0A846EMA3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607814","Sphaerospermopsis sp. SIO1G1"]]},{"id":"NCBITaxon:2607816","l":"Spirulina sp. SIO3F2","na":1,"nb":1,"a":[["TED%3AAF-A0A845X2H5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A845X2H5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607816","Spirulina sp. SIO3F2"]]},{"id":"NCBITaxon:2607823","l":"Moorena sp. SIO2B7","na":1,"nb":1,"a":[["TED%3AAF-A0A846DJN0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A846DJN0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607823","Moorena sp. SIO2B7"]]},{"id":"NCBITaxon:2607826","l":"Moorena sp. SIO4E2","na":1,"nb":1,"a":[["TED%3AAF-A0A6P0PUY1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6P0PUY1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2607826","Moorena sp. SIO4E2"]]},{"id":"NCBITaxon:2607832","l":"Moorena sp. SIO3I7","na":1,"nb":1,"a":[["TED%3AAF-A0A6P0J132-F1-model_v4_TED02","TED novel fold AF-A0A6P0J132-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2607832","Moorena sp. SIO3I7"]]},{"id":"NCBITaxon:2607840","l":"Moorena sp. SIO1G6","na":1,"nb":1,"a":[["TED%3AAF-A0A846H2X0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A846H2X0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607840","Moorena sp. SIO1G6"]]},{"id":"NCBITaxon:2608255","l":"Arenimonas fontis","na":1,"nb":1,"a":[["TED%3AAF-A0A5B2Z8Y6-F1-model_v4_TED01","TED novel fold AF-A0A5B2Z8Y6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2608255","Arenimonas fontis"]]},{"id":"NCBITaxon:2608632","l":"Parvibaculum sedimenti","na":1,"nb":1,"a":[["TED%3AAF-A0A6N6VQ78-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N6VQ78-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2608632","Parvibaculum sedimenti"]]},{"id":"NCBITaxon:2608793","l":"Candidatus Argoarchaeum ethanivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A811T573-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A811T573-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2608793","Candidatus Argoarchaeum ethanivorans"]]},{"id":"NCBITaxon:261292","l":"","na":1,"nb":1,"a":[["TED%3AAF-F8GG60-F1-model_v4_TED02","TED novel fold AF-F8GG60-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A261292","Nitrosomonas sp. Is79A3"]]},{"id":"NCBITaxon:2613962","l":"Histidinibacterium aquaticum","na":1,"nb":1,"a":[["TED%3AAF-A0A5J5GJ54-F1-model_v4_TED01","TED novel fold AF-A0A5J5GJ54-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2613962","Histidinibacterium aquaticum"]]},{"id":"NCBITaxon:2613965","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7L9WRV4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7L9WRV4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2613965","Pseudooceanicola spongiae"]]},{"id":"NCBITaxon:2614251","l":"Caldisericales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7X9K8A2-F1-model_v4_TED03","TED novel fold AF-A0A7X9K8A2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2614251","Caldisericales bacterium"]]},{"id":"NCBITaxon:2614691","l":"Microbacterium sp. 3290","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y9ZTJ1-F1-model_v4_TED01","TED novel fold AF-A0A7Y9ZTJ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2614691","Microbacterium sp. 3290"]]},{"id":"NCBITaxon:2614804","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A6N6MAZ3-F1-model_v4_TED02","TED novel fold AF-A0A6N6MAZ3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2614804","Pseudotamlana haliotis"]]},{"id":"NCBITaxon:262667","l":"Sphingopyxis sp. C-1","na":1,"nb":1,"a":[["TED%3AAF-A0A0M8JF35-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0M8JF35-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A262667","Sphingopyxis sp. C-1"]]},{"id":"NCBITaxon:264730","l":"","na":1,"nb":1,"a":[["Pfam%3APF15457","Type III T3SS secreted effector HopW1-1/HopPmaA"]],"b":[["NCBITaxon%3A264730","Pseudomonas savastanoi pv. phaseolicola 1448A"]]},{"id":"NCBITaxon:264736","l":"Photobacterium frigidiphilum","na":1,"nb":1,"a":[["TED%3AAF-A0A2T3JIJ5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T3JIJ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A264736","Photobacterium frigidiphilum"]]},{"id":"NCBITaxon:2650101","l":"Pseudomonas sp. R-28-1W-6","na":1,"nb":1,"a":[["TED%3AAF-A0A7X3L9Y6-F1-model_v4_TED01","TED novel fold AF-A0A7X3L9Y6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2650101","Pseudomonas sp. R-28-1W-6"]]},{"id":"NCBITaxon:2650565","l":"Micromonospora sp. AMSO1212t","na":1,"nb":1,"a":[["TED%3AAF-A0A6H9XF65-F1-model_v4_TED02","TED novel fold AF-A0A6H9XF65-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2650565","Micromonospora sp. AMSO1212t"]]},{"id":"NCBITaxon:2650748","l":"Actinomadura physcomitrii","na":1,"nb":1,"a":[["TED%3AAF-A0A6I4MMC2-F1-model_v4_TED01","TED novel fold AF-A0A6I4MMC2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2650748","Actinomadura physcomitrii"]]},{"id":"NCBITaxon:2650924","l":"Aestuariivirga litoralis","na":1,"nb":1,"a":[["TED%3AAF-A0A2W2AL08-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W2AL08-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2650924","Aestuariivirga litoralis"]]},{"id":"NCBITaxon:2651167","l":"Ignavibacterium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A6L3ZVV5-F1-model_v4_TED02","TED novel fold AF-A0A6L3ZVV5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2651167","Ignavibacterium sp."]]},{"id":"NCBITaxon:2651169","l":"Caedimonadaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A833FVR8-F1-model_v4_TED02","TED novel fold AF-A0A833FVR8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2651169","Caedimonadaceae bacterium"]]},{"id":"NCBITaxon:2651839","l":"Chloroflexia bacterium SDU3-3","na":1,"nb":1,"a":[["TED%3AAF-A0A7V7ZND2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7V7ZND2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2651839","Chloroflexia bacterium SDU3-3"]]},{"id":"NCBITaxon:2651870","l":"Deinococcus terrestris","na":1,"nb":1,"a":[["TED%3AAF-A0A7X1NUD2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X1NUD2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2651870","Deinococcus terrestris"]]},{"id":"NCBITaxon:2652177","l":"Pelistega ratti","na":1,"nb":1,"a":[["TED%3AAF-A0A6L9Y6W6-F1-model_v4_TED01","TED novel fold AF-A0A6L9Y6W6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2652177","Pelistega ratti"]]},{"id":"NCBITaxon:2652251","l":"Corynebacterium sp. 366","na":1,"nb":1,"a":[["TED%3AAF-A0A6I0F7K5-F1-model_v4_TED01","TED novel fold AF-A0A6I0F7K5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2652251","Corynebacterium sp. 366"]]},{"id":"NCBITaxon:2652293","l":"Hornefia butyriciproducens","na":1,"nb":1,"a":[["TED%3AAF-A0A6L5Y848-F1-model_v4_TED02","TED novel fold AF-A0A6L5Y848-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2652293","Hornefia butyriciproducens"]]},{"id":"NCBITaxon:265311","l":"","na":1,"nb":1,"a":[["TED%3AAF-Q6F294-F1-model_v4_TED03","TED novel fold AF-Q6F294-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A265311","Mesoplasma florum L1"]]},{"id":"NCBITaxon:2653135","l":"Citricoccus sp. K5","na":1,"nb":1,"a":[["TED%3AAF-A0A653NX81-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A653NX81-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2653135","Citricoccus sp. K5"]]},{"id":"NCBITaxon:2653142","l":"Flavobacterium sp. 9AF","na":1,"nb":1,"a":[["TED%3AAF-A0A653P3D5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A653P3D5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2653142","Flavobacterium sp. 9AF"]]},{"id":"NCBITaxon:2653161","l":"Plantibacter sp. T3","na":1,"nb":1,"a":[["TED%3AAF-A0A653X5F2-F1-model_v4_TED01","TED novel fold AF-A0A653X5F2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2653161","Plantibacter sp. T3"]]},{"id":"NCBITaxon:2653182","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A653ZLB2-F1-model_v4_TED01","TED novel fold AF-A0A653ZLB2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2653182","Allobosea sp. 62"]]},{"id":"NCBITaxon:2653201","l":"Bacillus sp. B1-b2","na":1,"nb":1,"a":[["TED%3AAF-A0A6I1F0Q0-F1-model_v4_TED01","TED novel fold AF-A0A6I1F0Q0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2653201","Bacillus sp. B1-b2"]]},{"id":"NCBITaxon:2653854","l":"Cupriavidus sp. SW-Y-13","na":1,"nb":1,"a":[["TED%3AAF-A0A7X3HGB1-F1-model_v4_TED01","TED novel fold AF-A0A7X3HGB1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2653854","Cupriavidus sp. SW-Y-13"]]},{"id":"NCBITaxon:2653856","l":"Rouxiella sp. S1S-2","na":1,"nb":1,"a":[["TED%3AAF-A0A7C8GNP7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C8GNP7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2653856","Rouxiella sp. S1S-2"]]},{"id":"NCBITaxon:2653936","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A6I1GAW3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6I1GAW3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2653936","Nostocoides sp. F2B08"]]},{"id":"NCBITaxon:2654244","l":"Flavobacterium sp. LMO8","na":1,"nb":1,"a":[["TED%3AAF-A0A6A7WG51-F1-model_v4_TED01","TED novel fold AF-A0A6A7WG51-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2654244","Flavobacterium sp. LMO8"]]},{"id":"NCBITaxon:2654547","l":"Pseudactinotalea sp. HY158","na":1,"nb":1,"a":[["TED%3AAF-A0A5Q2VY63-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5Q2VY63-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2654547","Pseudactinotalea sp. HY158"]]},{"id":"NCBITaxon:265668","l":"Vibrio ponticus","na":1,"nb":1,"a":[["TED%3AAF-A0A090P9C9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A090P9C9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A265668","Vibrio ponticus"]]},{"id":"NCBITaxon:2656763","l":"Apibacter sp. B2912","na":1,"nb":1,"a":[["TED%3AAF-A0A6N8TP71-F1-model_v4_TED02","TED novel fold AF-A0A6N8TP71-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2656763","Apibacter sp. B2912"]]},{"id":"NCBITaxon:2661628","l":"Bifidobacterium platyrrhinorum","na":1,"nb":1,"a":[["TED%3AAF-A0A6L9SQU0-F1-model_v4_TED04","TED novel fold AF-A0A6L9SQU0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2661628","Bifidobacterium platyrrhinorum"]]},{"id":"NCBITaxon:2662262","l":"Vibrio algicola","na":1,"nb":1,"a":[["TED%3AAF-A0A5Q0THS2-F1-model_v4_TED01","TED novel fold AF-A0A5Q0THS2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2662262","Vibrio algicola"]]},{"id":"NCBITaxon:2662454","l":"Gluconobacter aidae","na":1,"nb":1,"a":[["TED%3AAF-A0A7X1SQF4-F1-model_v4_TED02","TED novel fold AF-A0A7X1SQF4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2662454","Gluconobacter aidae"]]},{"id":"NCBITaxon:2663008","l":"Alcanivorax sediminis","na":1,"nb":1,"a":[["TED%3AAF-A0A6N7LY60-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N7LY60-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2663008","Alcanivorax sediminis"]]},{"id":"NCBITaxon:2663120","l":"Chitinophaga sp. SYP-B3965","na":1,"nb":1,"a":[["TED%3AAF-A0A6N7P8B2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N7P8B2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2663120","Chitinophaga sp. SYP-B3965"]]},{"id":"NCBITaxon:2663121","l":"Rhodococcus sp. WAY2","na":1,"nb":1,"a":[["TED%3AAF-A0A6P1HZM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6P1HZM4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2663121","Rhodococcus sp. WAY2"]]},{"id":"NCBITaxon:2663855","l":"Sphingomonas sp. R3G8C","na":1,"nb":1,"a":[["TED%3AAF-A0A852XTN1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A852XTN1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2663855","Sphingomonas sp. R3G8C"]]},{"id":"NCBITaxon:2663856","l":"Sphingomonas sp. R3G8D","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y9VPZ3-F1-model_v4_TED02","TED novel fold AF-A0A7Y9VPZ3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2663856","Sphingomonas sp. R3G8D"]]},{"id":"NCBITaxon:2663859","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7G9F4W0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G9F4W0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2663859","Aeromicrobium senzhongii"]]},{"id":"NCBITaxon:2664451","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7K0E7U2-F1-model_v4_TED02","TED novel fold AF-A0A7K0E7U2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2664451","Flavobacteriaceae bacterium EG-1"]]},{"id":"NCBITaxon:2664453","l":"Shewanella sp. XMDDZSB0408","na":1,"nb":1,"a":[["TED%3AAF-A0A6L5P080-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6L5P080-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2017544","Shewanella intestini"]]},{"id":"NCBITaxon:2665158","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7K1FLR7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K1FLR7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2665158","Nakamurella alba"]]},{"id":"NCBITaxon:2665159","l":"Hyphomicrobium album","na":1,"nb":1,"a":[["TED%3AAF-A0A6I3KJD5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6I3KJD5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2665159","Hyphomicrobium album"]]},{"id":"NCBITaxon:2665644","l":"Paracoccus lichenicola","na":1,"nb":1,"a":[["TED%3AAF-A0A6L6HU09-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L6HU09-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2665644","Paracoccus lichenicola"]]},{"id":"NCBITaxon:2665645","l":"Flavobacterium sp. SLB02","na":1,"nb":1,"a":[["TED%3AAF-A0A5Q3R0U2-F1-model_v4_TED03","TED novel fold AF-A0A5Q3R0U2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2665645","Flavobacterium sp. SLB02"]]},{"id":"NCBITaxon:2665646","l":"Alicyclobacillus sp. SO9","na":1,"nb":1,"a":[["TED%3AAF-A0A7T5ETD7-F1-model_v4_TED01","TED novel fold AF-A0A7T5ETD7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2665646","Alicyclobacillus sp. SO9"]]},{"id":"NCBITaxon:2665648","l":"Paracoccus sp. S-4012","na":1,"nb":1,"a":[["TED%3AAF-A0A6I2M1I8-F1-model_v4_TED04","TED novel fold AF-A0A6I2M1I8-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2665648","Paracoccus sp. S-4012"]]},{"id":"NCBITaxon:2666136","l":"Pedobacter puniceum","na":1,"nb":1,"a":[["TED%3AAF-A0A7K0FJJ9-F1-model_v4_TED01","TED novel fold AF-A0A7K0FJJ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2666136","Pedobacter puniceum"]]},{"id":"NCBITaxon:2666183","l":"Pseudomonas juntendi","na":1,"nb":1,"a":[["TED%3AAF-A0A7W2M1L2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W2M1L2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2666183","Pseudomonas juntendi"]]},{"id":"NCBITaxon:2666192","l":"Acinetobacter sp. RIT698","na":1,"nb":1,"a":[["TED%3AAF-A0A6I2JJ96-F1-model_v4_TED02","TED novel fold AF-A0A6I2JJ96-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2666192","Acinetobacter sp. RIT698"]]},{"id":"NCBITaxon:2666330","l":"Flavobacterium sp. LC2016-23","na":1,"nb":1,"a":[["TED%3AAF-A0A7K0FDI7-F1-model_v4_TED01","TED novel fold AF-A0A7K0FDI7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2666330","Flavobacterium sp. LC2016-23"]]},{"id":"NCBITaxon:2668068","l":"Halapricum sp. CBA1109","na":1,"nb":1,"a":[["TED%3AAF-A0A6A9T3Q8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A9T3Q8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2668068","Halapricum sp. CBA1109"]]},{"id":"NCBITaxon:2668070","l":"Natronomonas sp. CBA1123","na":1,"nb":1,"a":[["TED%3AAF-A0A6A9SQV1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6A9SQV1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2668070","Natronomonas sp. CBA1123"]]},{"id":"NCBITaxon:2668074","l":"Halobacterium sp. CBA1126","na":1,"nb":1,"a":[["TED%3AAF-A0A6A9SHM4-F1-model_v4_TED02","TED novel fold AF-A0A6A9SHM4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2668074","Halobacterium sp. CBA1126"]]},{"id":"NCBITaxon:2670411","l":"Candidatus Thalassarchaeaceae archaeon","na":1,"nb":1,"a":[["TED%3AAF-A0A7J4NTU9-F1-model_v4_TED03","TED novel fold AF-A0A7J4NTU9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2670411","Candidatus Thalassarchaeaceae archaeon"]]},{"id":"NCBITaxon:2672570","l":"Sulfurimonas aquatica","na":1,"nb":1,"a":[["TED%3AAF-A0A8A3Q0J9-F1-model_v4_TED01","TED novel fold AF-A0A8A3Q0J9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2672570","Sulfurimonas aquatica"]]},{"id":"NCBITaxon:2672572","l":"Cellulosimicrobium composti","na":1,"nb":1,"a":[["TED%3AAF-A0A6N7ZKP0-F1-model_v4_TED01","TED novel fold AF-A0A6N7ZKP0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2672572","Cellulosimicrobium composti"]]},{"id":"NCBITaxon:2675059","l":"Lysobacter helvus","na":1,"nb":1,"a":[["TED%3AAF-A0A811BHP5-F1-model_v4_TED01","TED novel fold AF-A0A811BHP5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2675059","Lysobacter helvus"]]},{"id":"NCBITaxon:2675219","l":"Corynebacterium occultum","na":1,"nb":1,"a":[["TED%3AAF-A0A6B8WQE4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6B8WQE4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2675219","Corynebacterium occultum"]]},{"id":"NCBITaxon:2675226","l":"Paludibacterium denitrificans","na":1,"nb":1,"a":[["TED%3AAF-A0A844G9G1-F1-model_v4_TED01","TED novel fold AF-A0A844G9G1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2675226","Paludibacterium denitrificans"]]},{"id":"NCBITaxon:2675227","l":"Conexibacter sp. W3-3-2","na":1,"nb":1,"a":[["TED%3AAF-A0A6N7YQS7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N7YQS7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2675227","Conexibacter sp. W3-3-2"]]},{"id":"NCBITaxon:2675457","l":"Deefgea sp. CFH1-16","na":1,"nb":1,"a":[["TED%3AAF-A0A838ZYX8-F1-model_v4_TED01","TED novel fold AF-A0A838ZYX8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2675457","Deefgea sp. CFH1-16"]]},{"id":"NCBITaxon:2675851","l":"Nocardia terrae","na":1,"nb":1,"a":[["TED%3AAF-A0A7K1VCA8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7K1VCA8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2675851","Nocardia terrae"]]},{"id":"NCBITaxon:2675875","l":"Flavobacterium sp. LC2016-13","na":1,"nb":1,"a":[["TED%3AAF-A0A7K1FUB6-F1-model_v4_TED01","TED novel fold AF-A0A7K1FUB6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2675875","Flavobacterium sp. LC2016-13"]]},{"id":"NCBITaxon:2675877","l":"Hymenobacter sp. BRD67","na":1,"nb":1,"a":[["TED%3AAF-A0A7D3X7L8-F1-model_v4_TED01","TED novel fold AF-A0A7D3X7L8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2675877","Hymenobacter sp. BRD67"]]},{"id":"NCBITaxon:2675880","l":"Fusarium flagelliforme","na":1,"nb":1,"a":[["TED%3AAF-A0A395MG19-F1-model_v4_TED01","TED novel fold AF-A0A395MG19-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2675880","Fusarium flagelliforme"]]},{"id":"NCBITaxon:2676308","l":"Flavobacterium sp. MC2016-06","na":1,"nb":1,"a":[["TED%3AAF-A0A6I3MC26-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I3MC26-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2676308","Flavobacterium sp. MC2016-06"]]},{"id":"NCBITaxon:267671","l":"Leptospira interrogans serovar Copenhageni str. Fiocruz L1-130","na":1,"nb":1,"a":[["Pfam%3APF05262","Borrelia P83/100 protein"]],"b":[["NCBITaxon%3A267671","Leptospira interrogans serovar Copenhageni str. Fiocruz L1-130"]]},{"id":"NCBITaxon:2676868","l":"Phnomibacter ginsenosidimutans","na":1,"nb":1,"a":[["TED%3AAF-A0A6I6G6I9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I6G6I9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2676868","Phnomibacter ginsenosidimutans"]]},{"id":"NCBITaxon:2678357","l":"Secundilactobacillus folii","na":1,"nb":1,"a":[["TED%3AAF-A0A7X3C277-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X3C277-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2678357","Secundilactobacillus folii"]]},{"id":"NCBITaxon:2681312","l":"Nostoc sp. UCD120","na":1,"nb":1,"a":[["TED%3AAF-A0A841VCF7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A841VCF7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2681312","Nostoc sp. UCD120"]]},{"id":"NCBITaxon:2681547","l":"Microbulbifer sp. SH-1","na":1,"nb":1,"a":[["TED%3AAF-A0A6G8DE42-F1-model_v4_TED03","TED novel fold AF-A0A6G8DE42-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2681547","Microbulbifer sp. SH-1"]]},{"id":"NCBITaxon:2681766","l":"Maribellus comscasis","na":1,"nb":1,"a":[["TED%3AAF-A0A6I6JQN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I6JQN6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2681766","Maribellus comscasis"]]},{"id":"NCBITaxon:2681861","l":"Sporofaciens musculi","na":1,"nb":1,"a":[["TED%3AAF-A0A7X3MN05-F1-model_v4_TED02","TED novel fold AF-A0A7X3MN05-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2681861","Sporofaciens musculi"]]},{"id":"NCBITaxon:2681972","l":"bacterium LRH843","na":1,"nb":1,"a":[["TED%3AAF-A0A6P1AW56-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6P1AW56-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2681972","bacterium LRH843"]]},{"id":"NCBITaxon:2682096","l":"Nitratireductor arenosus","na":1,"nb":1,"a":[["TED%3AAF-A0A844QGE3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A844QGE3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2682096","Nitratireductor arenosus"]]},{"id":"NCBITaxon:2682607","l":"Methanocorpusculaceae archaeon","na":1,"nb":1,"a":[["TED%3AAF-A0A843IML4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A843IML4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2682607","Methanocorpusculaceae archaeon"]]},{"id":"NCBITaxon:2682977","l":"Deinococcus arboris","na":1,"nb":1,"a":[["TED%3AAF-A0A7C9IAU3-F1-model_v4_TED01","TED novel fold AF-A0A7C9IAU3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2682977","Deinococcus arboris"]]},{"id":"NCBITaxon:2683200","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7K3NCN8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K3NCN8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2683200","Allomuricauda sp. TY007"]]},{"id":"NCBITaxon:2683649","l":"Lichenicoccus roseus","na":1,"nb":1,"a":[["TED%3AAF-A0A5R9J5L8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5R9J5L8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2683649","Lichenicoccus roseus"]]},{"id":"NCBITaxon:2684468","l":"Streptomyces sp. QHH-9511","na":1,"nb":1,"a":[["TED%3AAF-A0A7L4YA32-F1-model_v4_TED02","TED novel fold AF-A0A7L4YA32-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2684468","Streptomyces sp. QHH-9511"]]},{"id":"NCBITaxon:268505","l":"Ophiocordyceps unilateralis","na":1,"nb":1,"a":[["TED%3AAF-A0A2A9P7W5-F1-model_v4_TED02","TED novel fold AF-A0A2A9P7W5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A268505","Ophiocordyceps unilateralis"]]},{"id":"NCBITaxon:2686288","l":"Microcystis aeruginosa FD4","na":1,"nb":1,"a":[["TED%3AAF-A0A857CZK1-F1-model_v4_TED01","TED novel fold AF-A0A857CZK1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2686288","Microcystis aeruginosa FD4"]]},{"id":"NCBITaxon:2686357","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7M4D2X2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7M4D2X2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2686357","Labilibaculum euxinicum"]]},{"id":"NCBITaxon:2687311","l":"Gilliamella sp. Pas-s27","na":1,"nb":1,"a":[["TED%3AAF-A0A844WTT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A844WTT8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2687311","Gilliamella sp. Pas-s27"]]},{"id":"NCBITaxon:268807","l":"","na":1,"nb":1,"a":[["Pfam%3APF22148","Fervidolysin N-terminal prodomain"]],"b":[["NCBITaxon%3A268807","Bacillus sp. Ak1"]]},{"id":"NCBITaxon:2689987","l":"Stagnimonas aquatica","na":1,"nb":1,"a":[["TED%3AAF-A0A3N0VKC0-F1-model_v4_TED01","TED novel fold AF-A0A3N0VKC0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2689987","Stagnimonas aquatica"]]},{"id":"NCBITaxon:2690260","l":"Streptomyces sp. SID3343","na":1,"nb":1,"a":[["TED%3AAF-A0A7K2YVW5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K2YVW5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2690260","Streptomyces sp. SID3343"]]},{"id":"NCBITaxon:2690275","l":"Streptomyces sp. SID4926","na":1,"nb":1,"a":[["TED%3AAF-A0A6I5BJ78-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6I5BJ78-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2690275","Streptomyces sp. SID4926"]]},{"id":"NCBITaxon:2690277","l":"Streptomyces sp. SID4931","na":1,"nb":1,"a":[["TED%3AAF-A0A6G2UI30-F1-model_v4_TED01","TED novel fold AF-A0A6G2UI30-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2690277","Streptomyces sp. SID4931"]]},{"id":"NCBITaxon:2690317","l":"Streptomyces sp. SID6013","na":1,"nb":1,"a":[["TED%3AAF-A0A7K2ML90-F1-model_v4_TED03","TED novel fold AF-A0A7K2ML90-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2690317","Streptomyces sp. SID6013"]]},{"id":"NCBITaxon:2690322","l":"Streptomyces sp. SID685","na":1,"nb":1,"a":[["TED%3AAF-A0A6G2Q1R4-F1-model_v4_TED02","TED novel fold AF-A0A6G2Q1R4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2690322","Streptomyces sp. SID685"]]},{"id":"NCBITaxon:2690343","l":"Streptomyces sp. SID8359","na":1,"nb":1,"a":[["TED%3AAF-A0A6G2T6I5-F1-model_v4_TED01","TED novel fold AF-A0A6G2T6I5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2690343","Streptomyces sp. SID8359"]]},{"id":"NCBITaxon:2690360","l":"Streptomyces sp. SID8380","na":1,"nb":1,"a":[["TED%3AAF-A0A6I5GAL2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I5GAL2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2690360","Streptomyces sp. SID8380"]]},{"id":"NCBITaxon:2691042","l":"Kangsaoukella pontilimi","na":1,"nb":1,"a":[["TED%3AAF-A0A7C9IET5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C9IET5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2691042","Kangsaoukella pontilimi"]]},{"id":"NCBITaxon:2691084","l":"Paenibacillus dendrobii","na":1,"nb":1,"a":[["TED%3AAF-A0A7X3IQD1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X3IQD1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2691084","Paenibacillus dendrobii"]]},{"id":"NCBITaxon:2691582","l":"Aurantiacibacter rhizosphaerae","na":1,"nb":1,"a":[["TED%3AAF-A0A844XBH1-F1-model_v4_TED01","TED novel fold AF-A0A844XBH1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2691582","Aurantiacibacter rhizosphaerae"]]},{"id":"NCBITaxon:2691583","l":"Acerihabitans arboris","na":1,"nb":1,"a":[["TED%3AAF-A0A845SMM8-F1-model_v4_TED03","TED novel fold AF-A0A845SMM8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2691583","Acerihabitans arboris"]]},{"id":"NCBITaxon:2691605","l":"Paenibacillus sp. OT2-17","na":1,"nb":1,"a":[["TED%3AAF-A0A6B0PUZ6-F1-model_v4_TED02","TED novel fold AF-A0A6B0PUZ6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2691605","Paenibacillus sp. OT2-17"]]},{"id":"NCBITaxon:2692125","l":"Nanchangia anserum","na":1,"nb":1,"a":[["TED%3AAF-A0A7S7FJV4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S7FJV4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2692125","Nanchangia anserum"]]},{"id":"NCBITaxon:2692190","l":"Stappia sediminis","na":1,"nb":1,"a":[["TED%3AAF-A0A7X3S780-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X3S780-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2692190","Stappia sediminis"]]},{"id":"NCBITaxon:2692211","l":"Flavobacterium sp. Sd200","na":1,"nb":1,"a":[["TED%3AAF-A0A6B0PMG6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6B0PMG6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2692211","Flavobacterium sp. Sd200"]]},{"id":"NCBITaxon:2692629","l":"Copranaerobaculum intestinale","na":1,"nb":1,"a":[["TED%3AAF-A0A6N8U9L0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8U9L0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2692629","Copranaerobaculum intestinale"]]},{"id":"NCBITaxon:2696058","l":"Methylobacterium sp. NI91","na":1,"nb":1,"a":[["TED%3AAF-A0A6H2U3I7-F1-model_v4_TED01","TED novel fold AF-A0A6H2U3I7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2696058","Methylobacterium sp. NI91"]]},{"id":"NCBITaxon:2696062","l":"Alteromonas profundi","na":1,"nb":1,"a":[["TED%3AAF-A0A7X5RKT0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X5RKT0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2696062","Alteromonas profundi"]]},{"id":"NCBITaxon:2696063","l":"Anaerocolumna sedimenticola","na":1,"nb":1,"a":[["TED%3AAF-A0A6P1TLG6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6P1TLG6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2696063","Anaerocolumna sedimenticola"]]},{"id":"NCBITaxon:2696284","l":"Herbidospora solisilvae","na":1,"nb":1,"a":[["TED%3AAF-A0A7C9NGI7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C9NGI7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2696284","Herbidospora solisilvae"]]},{"id":"NCBITaxon:269709","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A543V9Z8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A543V9Z8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A269709","Methylotuvimicrobium kenyense"]]},{"id":"NCBITaxon:2699745","l":"Exilispira sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A847LY92-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A847LY92-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2699745","Exilispira sp."]]},{"id":"NCBITaxon:2700082","l":"Pontibacter fetidus","na":1,"nb":1,"a":[["TED%3AAF-A0A6B2H985-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6B2H985-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2700082","Pontibacter fetidus"]]},{"id":"NCBITaxon:270351","l":"Methylobacterium aquaticum","na":1,"nb":1,"a":[["TED%3AAF-A0A0J6S4M9-F1-model_v4_TED02","TED novel fold AF-A0A0J6S4M9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A270351","Methylobacterium aquaticum"]]},{"id":"NCBITaxon:270368","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A4R6QP76-F1-model_v4_TED01","TED novel fold AF-A0A4R6QP76-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A270368","Roseateles toxinivorans"]]},{"id":"NCBITaxon:2703815","l":"Candidatus Mcinerneyibacterium aminivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A5D0MDZ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5D0MDZ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2703815","Candidatus Mcinerneyibacterium aminivorans"]]},{"id":"NCBITaxon:2703884","l":"Rouxiella aceris","na":1,"nb":1,"a":[["TED%3AAF-A0A848MGE5-F1-model_v4_TED01","TED novel fold AF-A0A848MGE5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2703884","Rouxiella aceris"]]},{"id":"NCBITaxon:2704462","l":"Paenibacillus lycopersici","na":1,"nb":1,"a":[["TED%3AAF-A0A6C0FXC5-F1-model_v4_TED01","TED novel fold AF-A0A6C0FXC5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2704462","Paenibacillus lycopersici"]]},{"id":"NCBITaxon:2705014","l":"Shewanella sp. SE1","na":1,"nb":1,"a":[["TED%3AAF-A0A6B2ICQ7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6B2ICQ7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2705014","Shewanella sp. SE1"]]},{"id":"NCBITaxon:2705428","l":"Bifidobacterium sp. DSM 109963","na":1,"nb":1,"a":[["TED%3AAF-A0A848J8F0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A848J8F0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2675321","Bifidobacterium panos"]]},{"id":"NCBITaxon:2705429","l":"Bifidobacterium sp. DSM 109957","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y0EQ14-F1-model_v4_TED01","TED novel fold AF-A0A7Y0EQ14-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2675322","Bifidobacterium oedipodis"]]},{"id":"NCBITaxon:2705463","l":"Psychrobacter sp. BI730","na":1,"nb":1,"a":[["TED%3AAF-A0A7Z0HCN2-F1-model_v4_TED02","TED novel fold AF-A0A7Z0HCN2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2705463","Psychrobacter sp. BI730"]]},{"id":"NCBITaxon:2706027","l":"Streptomyces sp. SID10815","na":1,"nb":1,"a":[["TED%3AAF-A0A6B2V5P6-F1-model_v4_TED01","TED novel fold AF-A0A6B2V5P6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2706027","Streptomyces sp. SID10815"]]},{"id":"NCBITaxon:2706031","l":"Streptomyces sp. SID11385","na":1,"nb":1,"a":[["TED%3AAF-A0A6B2UCN6-F1-model_v4_TED01","TED novel fold AF-A0A6B2UCN6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2706031","Streptomyces sp. SID11385"]]},{"id":"NCBITaxon:2706086","l":"Streptomyces sp. SID7499","na":1,"nb":1,"a":[["TED%3AAF-A0A6G3XUN9-F1-model_v4_TED01","TED novel fold AF-A0A6G3XUN9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2706086","Streptomyces sp. SID7499"]]},{"id":"NCBITaxon:2706092","l":"Streptomyces sp. SID7909","na":1,"nb":1,"a":[["TED%3AAF-A0A6B2ZL91-F1-model_v4_TED03","TED novel fold AF-A0A6B2ZL91-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2706092","Streptomyces sp. SID7909"]]},{"id":"NCBITaxon:2706104","l":"Streptomyces sp. SID8455","na":1,"nb":1,"a":[["TED%3AAF-A0A6B3IGZ6-F1-model_v4_TED01","TED novel fold AF-A0A6B3IGZ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2706104","Streptomyces sp. SID8455"]]},{"id":"NCBITaxon:2706888","l":"Oceanipulchritudo coccoides","na":1,"nb":1,"a":[["TED%3AAF-A0A6B2M276-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A6B2M276-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2706888","Oceanipulchritudo coccoides"]]},{"id":"NCBITaxon:2707005","l":"Paenibacillus lutimineralis","na":1,"nb":1,"a":[["TED%3AAF-A0A3S9UWH3-F1-model_v4_TED03","TED novel fold AF-A0A3S9UWH3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2707005","Paenibacillus lutimineralis"]]},{"id":"NCBITaxon:2707176","l":"Ideonella livida","na":1,"nb":1,"a":[["TED%3AAF-A0A7C9TJE1-F1-model_v4_TED01","TED novel fold AF-A0A7C9TJE1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2707176","Ideonella livida"]]},{"id":"NCBITaxon:2707344","l":"Candidatus Hydrogenisulfobacillus filiaventi","na":1,"nb":1,"a":[["TED%3AAF-A0A6F8ZGP4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6F8ZGP4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2707344","Candidatus Hydrogenisulfobacillus filiaventi"]]},{"id":"NCBITaxon:2707525","l":"Sulfuriroseicoccus oceanibius","na":1,"nb":1,"a":[["TED%3AAF-A0A6B3LA18-F1-model_v4_TED02","TED novel fold AF-A0A6B3LA18-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2707525","Sulfuriroseicoccus oceanibius"]]},{"id":"NCBITaxon:2708082","l":"Mumia sp. ZJ1417","na":1,"nb":1,"a":[["TED%3AAF-A0A7G5LSA1-F1-model_v4_TED03","TED novel fold AF-A0A7G5LSA1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2708082","Mumia sp. ZJ1417"]]},{"id":"NCBITaxon:2708117","l":"Capnocytophaga endodontalis","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z4BK40-F1-model_v4_TED02","TED novel fold AF-A0A1Z4BK40-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2708117","Capnocytophaga endodontalis"]]},{"id":"NCBITaxon:270918","l":"Salegentibacter mishustinae","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q9ZKQ5-F1-model_v4_TED01","TED novel fold AF-A0A0Q9ZKQ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A270918","Salegentibacter mishustinae"]]},{"id":"NCBITaxon:2709310","l":"Psychroflexus aurantiacus","na":1,"nb":1,"a":[["TED%3AAF-A0A6B3R6F6-F1-model_v4_TED01","TED novel fold AF-A0A6B3R6F6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2709310","Psychroflexus aurantiacus"]]},{"id":"NCBITaxon:2710650","l":"Tabrizicola oligotrophica","na":1,"nb":1,"a":[["TED%3AAF-A0A6M0QVQ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6M0QVQ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2710650","Tabrizicola oligotrophica"]]},{"id":"NCBITaxon:2710758","l":"Phototrophicus methaneseepsis","na":1,"nb":1,"a":[["TED%3AAF-A0A7S8EBR2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S8EBR2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2710758","Phototrophicus methaneseepsis"]]},{"id":"NCBITaxon:2710881","l":"Sphingobacterium sp. SGG-5","na":1,"nb":1,"a":[["TED%3AAF-A0A6M1N329-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6M1N329-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2710881","Sphingobacterium sp. SGG-5"]]},{"id":"NCBITaxon:2710883","l":"Sphingobacterium sp. SGL-16","na":1,"nb":1,"a":[["TED%3AAF-A0A6M1NSA2-F1-model_v4_TED02","TED novel fold AF-A0A6M1NSA2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2710883","Sphingobacterium sp. SGL-16"]]},{"id":"NCBITaxon:2713571","l":"Arthrobacter sp. SDTb3-6","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y7M4K4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y7M4K4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2713571","Arthrobacter sp. SDTb3-6"]]},{"id":"NCBITaxon:2714353","l":"Vescimonas fastidiosa","na":1,"nb":1,"a":[["TED%3AAF-A0A810PZE6-F1-model_v4_TED02","TED novel fold AF-A0A810PZE6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2714353","Vescimonas fastidiosa"]]},{"id":"NCBITaxon:2714763","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A179HZU5-F1-model_v4_TED01","TED novel fold AF-A0A179HZU5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2714763","Akanthomyces lecanii"]]},{"id":"NCBITaxon:2714928","l":"Erysipelothrix sp. HDW6A","na":1,"nb":1,"a":[["TED%3AAF-A0A6G7WWW2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6G7WWW2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2714928","Erysipelothrix sp. HDW6A"]]},{"id":"NCBITaxon:2714945","l":"Thermomonas sp. HDW16","na":1,"nb":1,"a":[["TED%3AAF-A0A6G7ZWG8-F1-model_v4_TED02","TED novel fold AF-A0A6G7ZWG8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2714945","Thermomonas sp. HDW16"]]},{"id":"NCBITaxon:2715255","l":"Candidatus Sumerlaeia bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A849ZNH8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A849ZNH8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2715255","Candidatus Sumerlaeia bacterium"]]},{"id":"NCBITaxon:2715692","l":"Hellea sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A848V7Z8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A848V7Z8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2715692","Hellea sp."]]},{"id":"NCBITaxon:2716225","l":"Hydrogenophaga crocea","na":1,"nb":1,"a":[["TED%3AAF-A0A6G8IJ99-F1-model_v4_TED01","TED novel fold AF-A0A6G8IJ99-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2716225","Hydrogenophaga crocea"]]},{"id":"NCBITaxon:2716538","l":"Clostridium muellerianum","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y0HS39-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y0HS39-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2716538","Clostridium muellerianum"]]},{"id":"NCBITaxon:2717365","l":"Ktedonobacteria bacterium brp13","na":1,"nb":1,"a":[["TED%3AAF-A0A7I8EZU9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7I8EZU9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2717365","Ktedonobacteria bacterium brp13"]]},{"id":"NCBITaxon:2719008","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7X6JJ83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X6JJ83-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2719008","Rhodobacteraceae bacterium R_SAG6"]]},{"id":"NCBITaxon:2719014","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7X6G3T4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7X6G3T4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2719014","Alteromonadaceae bacterium A_SAG2"]]},{"id":"NCBITaxon:2719023","l":"Saccharopolyspora sp. ASAGF58","na":1,"nb":1,"a":[["TED%3AAF-A0A6H1RDL1-F1-model_v4_TED01","TED novel fold AF-A0A6H1RDL1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2719023","Saccharopolyspora sp. ASAGF58"]]},{"id":"NCBITaxon:2719586","l":"Pseudomonas sp. CES","na":1,"nb":1,"a":[["TED%3AAF-A0A7V8GU83-F1-model_v4_TED03","TED novel fold AF-A0A7V8GU83-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2719586","Pseudomonas sp. CES"]]},{"id":"NCBITaxon:2720482","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7X6HKG9-F1-model_v4_TED01","TED novel fold AF-A0A7X6HKG9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2720482","Microcoleus sp. SU_5_3"]]},{"id":"NCBITaxon:2721242","l":"Streptomyces sp. RLA2-12","na":1,"nb":1,"a":[["TED%3AAF-A0A7X9VIM1-F1-model_v4_TED02","TED novel fold AF-A0A7X9VIM1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2721242","Streptomyces sp. RLA2-12"]]},{"id":"NCBITaxon:2722756","l":"Brenneria izadpanahii","na":1,"nb":1,"a":[["TED%3AAF-A0A8A5FYX8-F1-model_v4_TED03","TED novel fold AF-A0A8A5FYX8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2722756","Brenneria izadpanahii"]]},{"id":"NCBITaxon:2723028","l":"Nostocaceae cyanobacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A838VQ58-F1-model_v4_TED01","TED novel fold AF-A0A838VQ58-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2723028","Nostocaceae cyanobacterium"]]},{"id":"NCBITaxon:2723083","l":"Rhodanobacter sp. ANJX3","na":1,"nb":1,"a":[["TED%3AAF-A0A7W8JHU5-F1-model_v4_TED02","TED novel fold AF-A0A7W8JHU5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2723083","Rhodanobacter sp. ANJX3"]]},{"id":"NCBITaxon:2723091","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7W9XJ11-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W9XJ11-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2723091","Mucilaginibacter saanensis"]]},{"id":"NCBITaxon:2723094","l":"Paraburkholderia sp. Cpub6","na":1,"nb":1,"a":[["TED%3AAF-A0A7W8RVB6-F1-model_v4_TED03","TED novel fold AF-A0A7W8RVB6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2723094","Paraburkholderia sp. Cpub6"]]},{"id":"NCBITaxon:2724616","l":"Desulfatitalea sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A849ETY0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A849ETY0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2724616","Desulfatitalea sp."]]},{"id":"NCBITaxon:2724914","l":"Leifsonia sp. PS1209","na":1,"nb":1,"a":[["TED%3AAF-A0A6H1W4P6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6H1W4P6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2724914","Leifsonia sp. PS1209"]]},{"id":"NCBITaxon:2725268","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7L6N6H3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7L6N6H3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2725268","Hujiaoplasma nucleasis"]]},{"id":"NCBITaxon:2725304","l":"Fusobacterium sp. FSA-380-WT-3A","na":1,"nb":1,"a":[["TED%3AAF-A0A848C134-F1-model_v4_TED01","TED novel fold AF-A0A848C134-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2725304","Fusobacterium sp. FSA-380-WT-3A"]]},{"id":"NCBITaxon:2726116","l":"Chitinophaga sp. Ak27","na":1,"nb":1,"a":[["TED%3AAF-A0A847T8E7-F1-model_v4_TED01","TED novel fold AF-A0A847T8E7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2726116","Chitinophaga sp. Ak27"]]},{"id":"NCBITaxon:2726117","l":"Mycoplasma phocoeninasale","na":1,"nb":1,"a":[["TED%3AAF-A0A858U3I0-F1-model_v4_TED03","TED novel fold AF-A0A858U3I0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2726117","Mycoplasma phocoeninasale"]]},{"id":"NCBITaxon:272622","l":"","na":1,"nb":1,"a":[["Pfam%3APF09136","Glucodextranase, domain B"]],"b":[["NCBITaxon%3A272622","Lactococcus cremoris subsp. cremoris SK11"]]},{"id":"NCBITaxon:272635","l":"","na":1,"nb":1,"a":[["TED%3AAF-Q98QG8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q98QG8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A272635","Mycoplasmopsis pulmonis UAB CTIP"]]},{"id":"NCBITaxon:2726738","l":"Rhizobium sp. P32RR-XVIII","na":1,"nb":1,"a":[["TED%3AAF-A0A7X8Y8R6-F1-model_v4_TED01","TED novel fold AF-A0A7X8Y8R6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2726738","Rhizobium sp. P32RR-XVIII"]]},{"id":"NCBITaxon:2726956","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7G5DIN6-F1-model_v4_TED02","TED novel fold AF-A0A7G5DIN6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2726956","Pseudomonas berkeleyensis"]]},{"id":"NCBITaxon:2728835","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A858RIN4-F1-model_v4_TED01","TED novel fold AF-A0A858RIN4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2728835","Neoluteolibacter luteus"]]},{"id":"NCBITaxon:2728836","l":"Azohydromonas caseinilytica","na":1,"nb":1,"a":[["TED%3AAF-A0A848F889-F1-model_v4_TED02","TED novel fold AF-A0A848F889-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2728836","Azohydromonas caseinilytica"]]},{"id":"NCBITaxon:2728838","l":"Sphingomonas sp. G-3-2-10","na":1,"nb":1,"a":[["TED%3AAF-A0A7X9WKK5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X9WKK5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2728838","Sphingomonas sp. G-3-2-10"]]},{"id":"NCBITaxon:2728839","l":"Paraburkholderia antibiotica","na":1,"nb":1,"a":[["TED%3AAF-A0A7X9ZW44-F1-model_v4_TED02","TED novel fold AF-A0A7X9ZW44-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2728839","Paraburkholderia antibiotica"]]},{"id":"NCBITaxon:2728841","l":"Pseudoflavitalea sp. G-6-1-2","na":1,"nb":1,"a":[["TED%3AAF-A0A848G2J7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A848G2J7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2728841","Pseudoflavitalea sp. G-6-1-2"]]},{"id":"NCBITaxon:2728842","l":"Chitinophaga fulva","na":1,"nb":1,"a":[["TED%3AAF-A0A848GKS7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A848GKS7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2728842","Chitinophaga fulva"]]},{"id":"NCBITaxon:2728847","l":"Chryseobacterium antibioticum","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y0AMI8-F1-model_v4_TED01","TED novel fold AF-A0A7Y0AMI8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2728847","Chryseobacterium antibioticum"]]},{"id":"NCBITaxon:2729613","l":"Thalassotalea sp. Y01","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y0KVJ5-F1-model_v4_TED01","TED novel fold AF-A0A7Y0KVJ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2729613","Thalassotalea sp. Y01"]]},{"id":"NCBITaxon:2729629","l":"Sulfobacillus harzensis","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y0Q4W7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y0Q4W7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2729629","Sulfobacillus harzensis"]]},{"id":"NCBITaxon:2730080","l":"Fundidesulfovibrio magnetotacticus","na":1,"nb":1,"a":[["TED%3AAF-A0A6V8LL98-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6V8LL98-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2730080","Fundidesulfovibrio magnetotacticus"]]},{"id":"NCBITaxon:2732044","l":"Streptomyces sp. S3(2020)","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y3PWD0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y3PWD0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2732044","Streptomyces sp. S3(2020)"]]},{"id":"NCBITaxon:2733487","l":"Halomonas sp. MCCC 1A13316","na":1,"nb":1,"a":[["TED%3AAF-A0A7M1QAE4-F1-model_v4_TED01","TED novel fold AF-A0A7M1QAE4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2781855","Billgrantia diversa"]]},{"id":"NCBITaxon:2734618","l":"Microbacterium sp. NIBRBAC000506063","na":1,"nb":1,"a":[["TED%3AAF-A0A8B0KQM8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B0KQM8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2734618","Microbacterium sp. NIBRBAC000506063"]]},{"id":"NCBITaxon:2735878","l":"Novosphingobium sp. R1F6D","na":1,"nb":1,"a":[["TED%3AAF-A0A7Z0GFQ0-F1-model_v4_TED01","TED novel fold AF-A0A7Z0GFQ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2735878","Novosphingobium sp. R1F6D"]]},{"id":"NCBITaxon:2735882","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7W8CMF6-F1-model_v4_TED02","TED novel fold AF-A0A7W8CMF6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2735882","Mycobacterium sp. AZCC_0083"]]},{"id":"NCBITaxon:2735906","l":"Pseudomonas sp. B11D7D","na":1,"nb":1,"a":[["TED%3AAF-A0A7G7RYE9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G7RYE9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2735906","Pseudomonas sp. B11D7D"]]},{"id":"NCBITaxon:2735912","l":"Chryseobacterium sp. H1D6C","na":1,"nb":1,"a":[["TED%3AAF-A0A7Z0G7Z3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Z0G7Z3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2735912","Chryseobacterium sp. H1D6C"]]},{"id":"NCBITaxon:2736284","l":"Bacillus sp. Gen3","na":1,"nb":1,"a":[["TED%3AAF-A0A7Z0TDN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Z0TDN3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2736284","Bacillus sp. Gen3"]]},{"id":"NCBITaxon:2739","l":"Vagococcus salmoninarum","na":1,"nb":1,"a":[["TED%3AAF-A0A429ZRZ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A429ZRZ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2739","Vagococcus salmoninarum"]]},{"id":"NCBITaxon:2740537","l":"Rubrobacteraceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A838KWE1-F1-model_v4_TED01","TED novel fold AF-A0A838KWE1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2740537","Rubrobacteraceae bacterium"]]},{"id":"NCBITaxon:2740543","l":"Bradymonadaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A838IDP9-F1-model_v4_TED03","TED novel fold AF-A0A838IDP9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2740543","Bradymonadaceae bacterium"]]},{"id":"NCBITaxon:2740584","l":"Rheinheimera lutimaris","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y5EJE9-F1-model_v4_TED01","TED novel fold AF-A0A7Y5EJE9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2740584","Rheinheimera lutimaris"]]},{"id":"NCBITaxon:2741497","l":"Peptidiphaga gingivicola","na":1,"nb":1,"a":[["TED%3AAF-A0A179B1W0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A179B1W0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2741497","Peptidiphaga gingivicola"]]},{"id":"NCBITaxon:2741543","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7V8NL93-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V8NL93-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2741543","Candidatus Acidiferrum panamense"]]},{"id":"NCBITaxon:2742129","l":"Stenotrophomonas sp. NA06056","na":1,"nb":1,"a":[["TED%3AAF-A0A7H8NWE4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H8NWE4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2742129","Stenotrophomonas sp. NA06056"]]},{"id":"NCBITaxon:2742135","l":"Kitasatospora sp. NA04385","na":1,"nb":1,"a":[["TED%3AAF-A0A7H8L1A8-F1-model_v4_TED01","TED novel fold AF-A0A7H8L1A8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2742135","Kitasatospora sp. NA04385"]]},{"id":"NCBITaxon:2742136","l":"Streptomyces sp. NA04227","na":1,"nb":1,"a":[["TED%3AAF-A0A7H8JMX3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H8JMX3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2742136","Streptomyces sp. NA04227"]]},{"id":"NCBITaxon:2742137","l":"Streptomyces sp. NA02950","na":1,"nb":1,"a":[["TED%3AAF-A0A7H8IZV7-F1-model_v4_TED01","TED novel fold AF-A0A7H8IZV7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2742137","Streptomyces sp. NA02950"]]},{"id":"NCBITaxon:2744516","l":"Mesorhizobium sp. 113-3-3","na":1,"nb":1,"a":[["TED%3AAF-A0A7R7AVA7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7R7AVA7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2744516","Mesorhizobium sp. 113-3-3"]]},{"id":"NCBITaxon:2744520","l":"Mesorhizobium sp. 131-3-5","na":1,"nb":1,"a":[["TED%3AAF-A0A7R7BKF3-F1-model_v4_TED02","TED novel fold AF-A0A7R7BKF3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2744520","Mesorhizobium sp. 131-3-5"]]},{"id":"NCBITaxon:2744522","l":"Mesorhizobium sp. L-8-3","na":1,"nb":1,"a":[["TED%3AAF-A0A7R7BYU5-F1-model_v4_TED04","TED novel fold AF-A0A7R7BYU5-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2744522","Mesorhizobium sp. L-8-3"]]},{"id":"NCBITaxon:2744550","l":"Pseudomonas sp. GC01","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y2PJK7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y2PJK7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2744550","Pseudomonas sp. GC01"]]},{"id":"NCBITaxon:2745197","l":"Adhaeribacter radiodurans","na":1,"nb":1,"a":[["TED%3AAF-A0A7L7L7C4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7L7L7C4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2745197","Adhaeribacter radiodurans"]]},{"id":"NCBITaxon:2745508","l":"Pseudomonas khorasanensis","na":1,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_TBH_Asp","T-E-associated metallophore aspartate beta-hydroxylase family"]],"b":[["NCBITaxon%3A2745508","Pseudomonas khorasanensis"]]},{"id":"NCBITaxon:2745851","l":"Moheibacter lacus","na":1,"nb":1,"a":[["TED%3AAF-A0A838ZEU7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A838ZEU7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2745851","Moheibacter lacus"]]},{"id":"NCBITaxon:2748318","l":"Oceaniferula marina","na":1,"nb":1,"a":[["TED%3AAF-A0A851GBV4-F1-model_v4_TED02","TED novel fold AF-A0A851GBV4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2748318","Oceaniferula marina"]]},{"id":"NCBITaxon:2748865","l":"Bdellovibrio sp. KM01","na":1,"nb":1,"a":[["TED%3AAF-A0A7H9MJQ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H9MJQ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2748865","Bdellovibrio sp. KM01"]]},{"id":"NCBITaxon:2749086","l":"Hyphobacterium sp. CCMP332","na":1,"nb":1,"a":[["TED%3AAF-A0A7G8ZLM0-F1-model_v4_TED01","TED novel fold AF-A0A7G8ZLM0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2749086","Hyphobacterium sp. CCMP332"]]},{"id":"NCBITaxon:2749828","l":"Streptomyces sp. BR123","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y8X3R1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y8X3R1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2749828","Streptomyces sp. BR123"]]},{"id":"NCBITaxon:2750658","l":"Pontiella sulfatireligans","na":1,"nb":1,"a":[["TED%3AAF-A0A6C2UJ91-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6C2UJ91-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2750658","Pontiella sulfatireligans"]]},{"id":"NCBITaxon:2750659","l":"Pontiella desulfatans","na":1,"nb":1,"a":[["TED%3AAF-A0A6C2U8C2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6C2U8C2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2750659","Pontiella desulfatans"]]},{"id":"NCBITaxon:2751176","l":"Vibrio sp. B1ASS3","na":1,"nb":1,"a":[["TED%3AAF-A0A812GPM8-F1-model_v4_TED04","TED novel fold AF-A0A812GPM8-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2751176","Vibrio sp. B1ASS3"]]},{"id":"NCBITaxon:2751178","l":"Vibrio sp. B1FLJ16","na":1,"nb":1,"a":[["TED%3AAF-A0A812GLG0-F1-model_v4_TED01","TED novel fold AF-A0A812GLG0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2751178","Vibrio sp. B1FLJ16"]]},{"id":"NCBITaxon:2752311","l":"Haloechinothrix aidingensis","na":1,"nb":1,"a":[["TED%3AAF-A0A838A710-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A838A710-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2752311","Haloechinothrix aidingensis"]]},{"id":"NCBITaxon:2754530","l":"Protomyces lactucae-debilis","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y2EYD1-F1-model_v4_TED01","TED novel fold AF-A0A1Y2EYD1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2754530","Protomyces lactucae-debilis"]]},{"id":"NCBITaxon:2754717","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A6V8NQ24-F1-model_v4_TED01","TED novel fold AF-A0A6V8NQ24-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2754717","Candidatus Hakubella thermalkaliphila"]]},{"id":"NCBITaxon:2754723","l":"Cetobacterium sp. 2A","na":1,"nb":1,"a":[["TED%3AAF-A0A842J1M3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A842J1M3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2754723","Cetobacterium sp. 2A"]]},{"id":"NCBITaxon:2755323","l":"Thermogemmata fonticola","na":1,"nb":1,"a":[["TED%3AAF-A0A7V9ABT3-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7V9ABT3-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2755323","Thermogemmata fonticola"]]},{"id":"NCBITaxon:2755562","l":"Legionella sp. PC997","na":1,"nb":1,"a":[["TED%3AAF-A0A7G4RI73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G4RI73-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2755562","Legionella sp. PC997"]]},{"id":"NCBITaxon:2758037","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7D7LLD3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7D7LLD3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2758037","Marnyiella aurantia"]]},{"id":"NCBITaxon:2758439","l":"Rhizobium sp. G21","na":1,"nb":1,"a":[["TED%3AAF-A0A7W3WAF5-F1-model_v4_TED02","TED novel fold AF-A0A7W3WAF5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2758439","Rhizobium sp. G21"]]},{"id":"NCBITaxon:2758675","l":"Flavobacterium sp. xlx-221","na":1,"nb":1,"a":[["TED%3AAF-A0A7W2FYJ7-F1-model_v4_TED01","TED novel fold AF-A0A7W2FYJ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2758675","Flavobacterium sp. xlx-221"]]},{"id":"NCBITaxon:2759817","l":"Colwellia sp. Bg11-12","na":1,"nb":1,"a":[["TED%3AAF-A0A7W2ML90-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W2ML90-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2759817","Colwellia sp. Bg11-12"]]},{"id":"NCBITaxon:2759824","l":"Colwellia sp. MB02u-6","na":1,"nb":1,"a":[["TED%3AAF-A0A7W2SE70-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W2SE70-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2759824","Colwellia sp. MB02u-6"]]},{"id":"NCBITaxon:2759847","l":"Pseudoalteromonas sp. 5Ae-yellow","na":1,"nb":1,"a":[["TED%3AAF-A0A7W2TMF7-F1-model_v4_TED01","TED novel fold AF-A0A7W2TMF7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2759847","Pseudoalteromonas sp. 5Ae-yellow"]]},{"id":"NCBITaxon:2759911","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7G9YNZ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G9YNZ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2759911","Candidatus Methanogaster sp. ANME-2c ERB4"]]},{"id":"NCBITaxon:2759912","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7G9YX06-F1-model_v4_TED03","TED novel fold AF-A0A7G9YX06-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2759912","Candidatus Methanophagaceae archaeon ANME-1 ERB6"]]},{"id":"NCBITaxon:2760087","l":"Aequorivita sp. 609","na":1,"nb":1,"a":[["TED%3AAF-A0A841TPZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841TPZ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2760087","Aequorivita sp. 609"]]},{"id":"NCBITaxon:2760088","l":"Oceanospirillum sediminis","na":1,"nb":1,"a":[["TED%3AAF-A0A839IN35-F1-model_v4_TED01","TED novel fold AF-A0A839IN35-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2760088","Oceanospirillum sediminis"]]},{"id":"NCBITaxon:2760438","l":"Limnospira indica BM01","na":1,"nb":1,"a":[["TED%3AAF-A0A7G7VWE4-F1-model_v4_TED01","TED novel fold AF-A0A7G7VWE4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2760438","Limnospira indica BM01"]]},{"id":"NCBITaxon:2760935","l":"Shewanella sp. SR44-4","na":1,"nb":1,"a":[["TED%3AAF-A0A7W4AR60-F1-model_v4_TED02","TED novel fold AF-A0A7W4AR60-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2760935","Shewanella sp. SR44-4"]]},{"id":"NCBITaxon:2760936","l":"Shewanella sp. SR44-3","na":1,"nb":1,"a":[["TED%3AAF-A0A7W3X3H7-F1-model_v4_TED02","TED novel fold AF-A0A7W3X3H7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2760936","Shewanella sp. SR44-3"]]},{"id":"NCBITaxon:2760976","l":"Shewanella sp. SG41-4","na":1,"nb":1,"a":[["TED%3AAF-A0A7W4C704-F1-model_v4_TED01","TED novel fold AF-A0A7W4C704-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2760976","Shewanella sp. SG41-4"]]},{"id":"NCBITaxon:2761500","l":"Porcisia hertigi","na":1,"nb":1,"a":[["TED%3AAF-A0A836ID28-F1-model_v4_TED01","TED novel fold AF-A0A836ID28-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2761500","Porcisia hertigi"]]},{"id":"NCBITaxon:2761579","l":"Hymenobacter sediminicola","na":1,"nb":1,"a":[["TED%3AAF-A0A7G7W366-F1-model_v4_TED02","TED novel fold AF-A0A7G7W366-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2761579","Hymenobacter sediminicola"]]},{"id":"NCBITaxon:2762576","l":"Pseudomonas baltica","na":1,"nb":1,"a":[["TED%3AAF-A0A7X1G7W6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X1G7W6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2762576","Pseudomonas baltica"]]},{"id":"NCBITaxon:2763107","l":"Alloacidobacterium dinghuense","na":1,"nb":1,"a":[["TED%3AAF-A0A7G8BDT6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G8BDT6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2763107","Alloacidobacterium dinghuense"]]},{"id":"NCBITaxon:2763672","l":"Simiaoa sunii","na":1,"nb":1,"a":[["TED%3AAF-A0A7G9FVC0-F1-model_v4_TED01","TED novel fold AF-A0A7G9FVC0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2763672","Simiaoa sunii"]]},{"id":"NCBITaxon:2764720","l":"Olivibacter sp. SDN3","na":1,"nb":1,"a":[["TED%3AAF-A0A7G9BDR3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G9BDR3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2764720","Olivibacter sp. SDN3"]]},{"id":"NCBITaxon:2766701","l":"Treponema sp. Marseille-Q4132","na":1,"nb":1,"a":[["TED%3AAF-A0A7G9FFA3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G9FFA3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2766701","Treponema sp. Marseille-Q4132"]]},{"id":"NCBITaxon:2768445","l":"Nocardioides sp. SLBN-35","na":1,"nb":1,"a":[["TED%3AAF-A0A542SD74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A542SD74-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2768445","Nocardioides sp. SLBN-35"]]},{"id":"NCBITaxon:2768447","l":"Phycicoccus sp. SLBN-51","na":1,"nb":1,"a":[["TED%3AAF-A0A542HJ27-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A542HJ27-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2768447","Phycicoccus sp. SLBN-51"]]},{"id":"NCBITaxon:2768460","l":"Lysinimonas sp. SLBN-160","na":1,"nb":1,"a":[["TED%3AAF-A0A852YIC4-F1-model_v4_TED01","TED novel fold AF-A0A852YIC4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2768460","Lysinimonas sp. SLBN-160"]]},{"id":"NCBITaxon:2770322","l":"Stenotrophomonas sp. 169","na":1,"nb":1,"a":[["TED%3AAF-A0A7H1APN7-F1-model_v4_TED01","TED novel fold AF-A0A7H1APN7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2770322","Stenotrophomonas sp. 169"]]},{"id":"NCBITaxon:2770636","l":"Mannheimia bovis","na":1,"nb":1,"a":[["TED%3AAF-A0A7H1C138-F1-model_v4_TED01","TED novel fold AF-A0A7H1C138-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2770636","Mannheimia bovis"]]},{"id":"NCBITaxon:2771430","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7T2GHX0-F1-model_v4_TED01","TED novel fold AF-A0A7T2GHX0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2771430","Allosphingosinicella flava"]]},{"id":"NCBITaxon:2775420","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7T8RW62-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7T8RW62-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2775420","Skermanella cutis"]]},{"id":"NCBITaxon:277988","l":"Thermococcus thioreducens","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q2S4S6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q2S4S6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A277988","Thermococcus thioreducens"]]},{"id":"NCBITaxon:2780922","l":"Solibaculum mannosilyticum","na":1,"nb":1,"a":[["TED%3AAF-A0A7M3W2R4-F1-model_v4_TED02","TED novel fold AF-A0A7M3W2R4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2780922","Solibaculum mannosilyticum"]]},{"id":"NCBITaxon:2784880","l":"Natranaeroarchaeum sulfidigenes","na":1,"nb":1,"a":[["TED%3AAF-A0A897ML23-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A897ML23-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2784880","Natranaeroarchaeum sulfidigenes"]]},{"id":"NCBITaxon:2785331","l":"Entomomonas asaccharolytica","na":1,"nb":1,"a":[["TED%3AAF-A0A7T8RLN2-F1-model_v4_TED05","TED novel fold AF-A0A7T8RLN2-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2785331","Entomomonas asaccharolytica"]]},{"id":"NCBITaxon:2785785","l":"Methylomonas sp. LL1","na":1,"nb":1,"a":[["TED%3AAF-A0A7T0JPB0-F1-model_v4_TED01","TED novel fold AF-A0A7T0JPB0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2785785","Methylomonas sp. LL1"]]},{"id":"NCBITaxon:2787628","l":"Treponema peruense","na":1,"nb":1,"a":[["TED%3AAF-A0A7T3RE25-F1-model_v4_TED03","TED novel fold AF-A0A7T3RE25-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2787628","Treponema peruense"]]},{"id":"NCBITaxon:2789216","l":"Labrys sp. KNU-23","na":1,"nb":1,"a":[["TED%3AAF-A0A5C1WCX6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C1WCX6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2789216","Labrys sp. KNU-23"]]},{"id":"NCBITaxon:278940","l":"Botrytis galanthina","na":1,"nb":1,"a":[["TED%3AAF-A0A4S8QP05-F1-model_v4_TED01","TED novel fold AF-A0A4S8QP05-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A278940","Botrytis galanthina"]]},{"id":"NCBITaxon:279058","l":"Collimonas arenae","na":1,"nb":1,"a":[["TED%3AAF-A0A0A1FBZ5-F1-model_v4_TED02","TED novel fold AF-A0A0A1FBZ5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A279058","Collimonas arenae"]]},{"id":"NCBITaxon:279113","l":"Collimonas pratensis","na":1,"nb":1,"a":[["TED%3AAF-A0A127Q9K0-F1-model_v4_TED02","TED novel fold AF-A0A127Q9K0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A279113","Collimonas pratensis"]]},{"id":"NCBITaxon:2792603","l":"Acidihalobacter aeolianus","na":1,"nb":1,"a":[["TED%3AAF-A0A1D8KBM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1D8KBM4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2792603","Acidihalobacter aeolianus"]]},{"id":"NCBITaxon:2795689","l":"Alteromonas sp. KC14","na":1,"nb":1,"a":[["TED%3AAF-A0A7R7GIT0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7R7GIT0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2795689","Alteromonas sp. KC14"]]},{"id":"NCBITaxon:2795690","l":"Kaistia sp. 32K","na":1,"nb":1,"a":[["TED%3AAF-A0A7R7T725-F1-model_v4_TED01","TED novel fold AF-A0A7R7T725-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2795690","Kaistia sp. 32K"]]},{"id":"NCBITaxon:2795738","l":"Sphingobacterium sp. UDSM-2020","na":1,"nb":1,"a":[["TED%3AAF-A0A7T4QWN9-F1-model_v4_TED02","TED novel fold AF-A0A7T4QWN9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2795738","Sphingobacterium sp. UDSM-2020"]]},{"id":"NCBITaxon:279714","l":"Pseudogulbenkiania ferrooxidans 2002","na":1,"nb":1,"a":[["TED%3AAF-B9Z3M4-F1-model_v4_TED02","TED novel fold AF-B9Z3M4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A279714","Pseudogulbenkiania ferrooxidans 2002"]]},{"id":"NCBITaxon:2798577","l":"Breznakiella homolactica","na":1,"nb":1,"a":[["TED%3AAF-A0A7T7XPH2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T7XPH2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2798577","Breznakiella homolactica"]]},{"id":"NCBITaxon:280036","l":"Sporisorium graminicola","na":1,"nb":1,"a":[["TED%3AAF-A0A4U7KT65-F1-model_v4_TED02","TED novel fold AF-A0A4U7KT65-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A280036","Sporisorium graminicola"]]},{"id":"NCBITaxon:2802972","l":"Bryobacterales bacterium F-183","na":1,"nb":1,"a":[["TED%3AAF-A0A7R8BBA2-F1-model_v4_TED01","TED novel fold AF-A0A7R8BBA2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2802972","Bryobacterales bacterium F-183"]]},{"id":"NCBITaxon:2803181","l":"Leishmania sp. Ghana 2012 LV757","na":1,"nb":1,"a":[["TED%3AAF-A0A836HN95-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A836HN95-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2803181","Leishmania sp. Ghana 2012 LV757"]]},{"id":"NCBITaxon:2805098","l":"Photorhabdus aegyptia","na":1,"nb":1,"a":[["TED%3AAF-A0A022PGR1-F1-model_v4_TED04","TED novel fold AF-A0A022PGR1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2805098","Photorhabdus aegyptia"]]},{"id":"NCBITaxon:2806336","l":"Clostridiales bacterium FE2010","na":1,"nb":1,"a":[["TED%3AAF-A0A8A5D479-F1-model_v4_TED03","TED novel fold AF-A0A8A5D479-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2806336","Clostridiales bacterium FE2010"]]},{"id":"NCBITaxon:280699","l":"Cyanidioschyzon merolae (strain NIES-3377 / 10D)","na":1,"nb":1,"a":[["Pfam%3APF17866","AAA lid domain"]],"b":[["NCBITaxon%3A280699","Cyanidioschyzon merolae strain 10D"]]},{"id":"NCBITaxon:28083","l":"Legionella birminghamensis","na":1,"nb":1,"a":[["TED%3AAF-A0A378I8E9-F1-model_v4_TED02","TED novel fold AF-A0A378I8E9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A28083","Legionella birminghamensis"]]},{"id":"NCBITaxon:28101","l":"Phyllobacterium myrsinacearum","na":1,"nb":1,"a":[["TED%3AAF-A0A2S9JAN5-F1-model_v4_TED02","TED novel fold AF-A0A2S9JAN5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A28101","Phyllobacterium myrsinacearum"]]},{"id":"NCBITaxon:28119","l":"Bacteroides zoogleoformans","na":1,"nb":1,"a":[["TED%3AAF-A0A562V923-F1-model_v4_TED02","TED novel fold AF-A0A562V923-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A28119","Bacteroides zoogleoformans"]]},{"id":"NCBITaxon:2813780","l":"Alcaligenes sp. SORT26","na":1,"nb":1,"a":[["TED%3AAF-A0A8A4H621-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8A4H621-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2813780","Alcaligenes sp. SORT26"]]},{"id":"NCBITaxon:28149","l":"","na":1,"nb":1,"a":[["Pfam%3APF22370","Flagellin, beta sheet domain"]],"b":[["NCBITaxon%3A28149","Salmonella enterica subsp. enterica serovar Rostock"]]},{"id":"NCBITaxon:28177","l":"Kryptophanaron alfredi symbiont","na":1,"nb":1,"a":[["PROSITE%3APS00494","Bacterial luciferase subunits signature"]],"b":[["NCBITaxon%3A28177","Kryptophanaron alfredi symbiont"]]},{"id":"NCBITaxon:28181","l":"Magnetovibrio blakemorei","na":1,"nb":1,"a":[["TED%3AAF-A0A1E5Q9I9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E5Q9I9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28181","Magnetovibrio blakemorei"]]},{"id":"NCBITaxon:2819280","l":"Acidihalobacter yilgarnensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1D8IQR8-F1-model_v4_TED01","TED novel fold AF-A0A1D8IQR8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2819280","Acidihalobacter yilgarnensis"]]},{"id":"NCBITaxon:2820278","l":"Aquabacter sp. L1I39","na":1,"nb":1,"a":[["TED%3AAF-A0A8A7CUZ9-F1-model_v4_TED02","TED novel fold AF-A0A8A7CUZ9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2820278","Aquabacter sp. L1I39"]]},{"id":"NCBITaxon:282197","l":"Jannaschia rubra","na":1,"nb":1,"a":[["TED%3AAF-A0A0M6XN40-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0M6XN40-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A282197","Jannaschia rubra"]]},{"id":"NCBITaxon:2823317","l":"Phascolarctobacterium sp. Marseille-Q4147","na":1,"nb":1,"a":[["TED%3AAF-A0A8B0KIM4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A8B0KIM4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2823317","Phascolarctobacterium sp. Marseille-Q4147"]]},{"id":"NCBITaxon:28234","l":"Geotoga petraea","na":1,"nb":1,"a":[["TED%3AAF-A0A1G6NUB4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1G6NUB4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A28234","Geotoga petraea"]]},{"id":"NCBITaxon:28238","l":"","na":1,"nb":1,"a":[["Pfam%3APF19538","Family of unknown function (DUF6062)"]],"b":[["NCBITaxon%3A28238","Caldicellulosiruptor sp. Rt8B.4"]]},{"id":"NCBITaxon:282423","l":"Planktothrix agardhii NIES-204","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z6CJC9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z6CJC9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A282423","Planktothrix agardhii NIES-204"]]},{"id":"NCBITaxon:284028","l":"Streptomyces fulvorobeus","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y9HHV1-F1-model_v4_TED01","TED novel fold AF-A0A7Y9HHV1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A284028","Streptomyces fulvorobeus"]]},{"id":"NCBITaxon:2843","l":"Skeletonema costatum","na":1,"nb":1,"a":[["Pfam%3APF06868","Protein of unknown function (DUF1257)"]],"b":[["NCBITaxon%3A2843","Skeletonema costatum"]]},{"id":"NCBITaxon:284579","l":"Salibacterium salarium","na":1,"nb":1,"a":[["TED%3AAF-A0A3R9PEH4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R9PEH4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A284579","Salibacterium salarium"]]},{"id":"NCBITaxon:284581","l":"Priestia koreensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0M0L512-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0M0L512-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A284581","Priestia koreensis"]]},{"id":"NCBITaxon:285525","l":"Streptomyces sahachiroi","na":1,"nb":1,"a":[["Pfam%3APF06224","DNA glycosylase AlkZ-like"]],"b":[["NCBITaxon%3A285525","Streptomyces sahachiroi"]]},{"id":"NCBITaxon:285676","l":"Micromonospora saelicesensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1C4ZZA2-F1-model_v4_TED02","TED novel fold AF-A0A1C4ZZA2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A285676","Micromonospora saelicesensis"]]},{"id":"NCBITaxon:285729","l":"Fusobacterium canifelinum","na":1,"nb":1,"a":[["TED%3AAF-A0A3P1V048-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3P1V048-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A285729","Fusobacterium canifelinum"]]},{"id":"NCBITaxon:286115","l":"Synchytrium endobioticum","na":1,"nb":1,"a":[["TED%3AAF-A0A507DIM4-F1-model_v4_TED01","TED novel fold AF-A0A507DIM4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A286115","Synchytrium endobioticum"]]},{"id":"NCBITaxon:286636","l":"","na":1,"nb":1,"a":[["PROSITE%3APS00829","Prokaryotic transcription elongation factors signature 1"]],"b":[["NCBITaxon%3A286636","Streptococcus pyogenes MGAS10394"]]},{"id":"NCBITaxon:286727","l":"Azospirillum oryzae","na":1,"nb":1,"a":[["TED%3AAF-A0A6N1AKY1-F1-model_v4_TED01","TED novel fold AF-A0A6N1AKY1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A286727","Azospirillum oryzae"]]},{"id":"NCBITaxon:288681","l":"Bacillus cereus E33L","na":1,"nb":1,"a":[["TED%3AAF-Q4V119-F1-model_v4_TED01","TED highly-symmetric fold AF-Q4V119-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A288681","Bacillus cereus E33L"]]},{"id":"NCBITaxon:288768","l":"Bordetella ansorpii","na":1,"nb":1,"a":[["TED%3AAF-A0A157MBV7-F1-model_v4_TED01","TED novel fold AF-A0A157MBV7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A288768","Bordetella ansorpii"]]},{"id":"NCBITaxon:288992","l":"Pedobacter caeni","na":1,"nb":1,"a":[["TED%3AAF-A0A1M4ZFL8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M4ZFL8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A288992","Pedobacter caeni"]]},{"id":"NCBITaxon:28985","l":"Kluyveromyces lactis","na":1,"nb":1,"a":[["Pfam%3APF03930","Recombinase Flp protein N-terminus"]],"b":[["NCBITaxon%3A28985","Kluyveromyces lactis"]]},{"id":"NCBITaxon:290052","l":"Acetivibrio ethanolgignens","na":1,"nb":1,"a":[["TED%3AAF-A0A0V8QEW9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0V8QEW9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A290052","Acetivibrio ethanolgignens"]]},{"id":"NCBITaxon:290054","l":"Eubacterium coprostanoligenes","na":1,"nb":1,"a":[["TED%3AAF-A0A1T4NG17-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1T4NG17-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A290054","Eubacterium coprostanoligenes"]]},{"id":"NCBITaxon:290847","l":"","na":1,"nb":1,"a":[["Pfam%3APF10788","Protein of unknown function (DUF2603)"]],"b":[["NCBITaxon%3A290847","Helicobacter pylori 51"]]},{"id":"NCBITaxon:291195","l":"Tubulinosema ratisbonensis","na":1,"nb":1,"a":[["TED%3AAF-A0A437AH37-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A437AH37-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A291195","Tubulinosema ratisbonensis"]]},{"id":"NCBITaxon:29176","l":"Neospora caninum","na":1,"nb":1,"a":[["Pfam%3APF05084","Granule antigen protein (GRA6)"]],"b":[["NCBITaxon%3A29176","Neospora caninum"]]},{"id":"NCBITaxon:292415","l":"Thiobacillus denitrificans ATCC 25259","na":1,"nb":1,"a":[["Pfam%3APF06804","Outer membrane protein assembly factor BamC-like C-terminal domain"]],"b":[["NCBITaxon%3A292415","Thiobacillus denitrificans ATCC 25259"]]},{"id":"NCBITaxon:29313","l":"Mycobacterium shimoidei","na":1,"nb":1,"a":[["TED%3AAF-A0A1E3TGG0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1E3TGG0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29313","Mycobacterium shimoidei"]]},{"id":"NCBITaxon:29408","l":"Rhodoplanes elegans","na":1,"nb":1,"a":[["TED%3AAF-A0A327KTJ5-F1-model_v4_TED01","TED novel fold AF-A0A327KTJ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29408","Rhodoplanes elegans"]]},{"id":"NCBITaxon:29422","l":"Legionella brunensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0W0RZW2-F1-model_v4_TED03","TED novel fold AF-A0A0W0RZW2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A29422","Legionella brunensis"]]},{"id":"NCBITaxon:29443","l":"Paucimonas lemoignei","na":1,"nb":1,"a":[["TED%3AAF-A0A4R3HQA7-F1-model_v4_TED02","TED novel fold AF-A0A4R3HQA7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29443","Paucimonas lemoignei"]]},{"id":"NCBITaxon:29456","l":"Alteromonas sp. B-10-31","na":1,"nb":1,"a":[["Pfam%3APF12559","Serine endopeptidase inhibitors"]],"b":[["NCBITaxon%3A29456","Alteromonas sp. B-10-31"]]},{"id":"NCBITaxon:295108","l":"Candidatus Berkiella aquae","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q9YS56-F1-model_v4_TED01","TED novel fold AF-A0A0Q9YS56-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A295108","Candidatus Berkiella aquae"]]},{"id":"NCBITaxon:29529","l":"Chitinophaga arvensicola","na":1,"nb":1,"a":[["TED%3AAF-A0A1I0RVZ5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I0RVZ5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29529","Chitinophaga arvensicola"]]},{"id":"NCBITaxon:29539","l":"Thermoleophilum album","na":1,"nb":1,"a":[["TED%3AAF-A0A1H6FIV6-F1-model_v4_TED01","TED novel fold AF-A0A1H6FIV6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29539","Thermoleophilum album"]]},{"id":"NCBITaxon:29553","l":"Mycoplasmopsis bovirhinis","na":1,"nb":1,"a":[["TED%3AAF-A0A224AXF9-F1-model_v4_TED02","TED novel fold AF-A0A224AXF9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29553","Mycoplasmopsis bovirhinis"]]},{"id":"NCBITaxon:29554","l":"Metamycoplasma canadense","na":1,"nb":1,"a":[["TED%3AAF-A0A077LB01-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A077LB01-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29554","Metamycoplasma canadense"]]},{"id":"NCBITaxon:29556","l":"Mycoplasmopsis gallinacea","na":1,"nb":1,"a":[["TED%3AAF-A0A449A3R6-F1-model_v4_TED02","TED novel fold AF-A0A449A3R6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29556","Mycoplasmopsis gallinacea"]]},{"id":"NCBITaxon:295838","l":"Streptomyces rugosporus","na":1,"nb":1,"a":[["Pfam%3APF18678","Allene oxide cyclase barrel like domain"]],"b":[["NCBITaxon%3A295838","Streptomyces rugosporus"]]},{"id":"NCBITaxon:297246","l":"Legionella pneumophila str. Paris","na":1,"nb":1,"a":[["Pfam%3APF03445","Putative nucleotidyltransferase DUF294"]],"b":[["NCBITaxon%3A297246","Legionella pneumophila str. Paris"]]},{"id":"NCBITaxon:298386","l":"Photobacterium profundum SS9","na":1,"nb":1,"a":[["Pfam%3APF12558","ATP-binding cassette cobalt transporter"]],"b":[["NCBITaxon%3A298386","Photobacterium profundum SS9"]]},{"id":"NCBITaxon:298394","l":"uncultured Thiotrichaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A6S6S720-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A6S6S720-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A298394","uncultured Thiotrichaceae bacterium"]]},{"id":"NCBITaxon:29875","l":"Trichoderma virens","na":1,"nb":1,"a":[["Pfam%3APF07249","Cerato-platanin"]],"b":[["NCBITaxon%3A29875","Trichoderma virens"]]},{"id":"NCBITaxon:298908","l":"Pseudomonas segetis","na":1,"nb":1,"a":[["TED%3AAF-A0A239C9B0-F1-model_v4_TED01","TED novel fold AF-A0A239C9B0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A298908","Pseudomonas segetis"]]},{"id":"NCBITaxon:300193","l":"Phyllobacterium trifolii","na":1,"nb":1,"a":[["TED%3AAF-A0A839U734-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A839U734-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A300193","Phyllobacterium trifolii"]]},{"id":"NCBITaxon:3005","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7S0A1R6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0A1R6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A3005","Sundstroemia setigera"]]},{"id":"NCBITaxon:301154","l":"Sphingomonas oligophenolica","na":1,"nb":1,"a":[["TED%3AAF-A0A502CIK8-F1-model_v4_TED02","TED novel fold AF-A0A502CIK8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A301154","Sphingomonas oligophenolica"]]},{"id":"NCBITaxon:302913","l":"Elsinoe ampelina","na":1,"nb":1,"a":[["TED%3AAF-A0A6A6G1T3-F1-model_v4_TED01","TED novel fold AF-A0A6A6G1T3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A302913","Elsinoe ampelina"]]},{"id":"NCBITaxon:304","l":"Roseateles saccharophilus","na":1,"nb":1,"a":[["Pfam%3APF09081","Glucan 1,4-alpha-maltotetraohydrolase, domain C"]],"b":[["NCBITaxon%3A304","Roseateles saccharophilus"]]},{"id":"NCBITaxon:310782","l":"Actinacidiphila paucisporea","na":1,"nb":1,"a":[["TED%3AAF-A0A1M7P1B4-F1-model_v4_TED01","TED novel fold AF-A0A1M7P1B4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A310782","Actinacidiphila paucisporea"]]},{"id":"NCBITaxon:311180","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1I6PGV3-F1-model_v4_TED01","TED novel fold AF-A0A1I6PGV3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A311180","Alloyangia pacifica"]]},{"id":"NCBITaxon:311410","l":"Roseibium album","na":1,"nb":1,"a":[["TED%3AAF-A0A0M6YT48-F1-model_v4_TED01","TED novel fold AF-A0A0M6YT48-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A311410","Roseibium album"]]},{"id":"NCBITaxon:311424","l":"","na":1,"nb":1,"a":[["Pfam%3APF13486","Reductive dehalogenase subunit"]],"b":[["NCBITaxon%3A311424","Dehalococcoides mccartyi VS"]]},{"id":"NCBITaxon:312253","l":"Bradyrhizobium tropiciagri","na":1,"nb":1,"a":[["Pfam%3APF26164","Bacterial Gasdermin Family"]],"b":[["NCBITaxon%3A312253","Bradyrhizobium tropiciagri"]]},{"id":"NCBITaxon:31271","l":"Plasmodium chabaudi chabaudi","na":1,"nb":1,"a":[["TED%3AAF-A0A1C6YTY0-F1-model_v4_TED03","TED novel fold AF-A0A1C6YTY0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A31271","Plasmodium chabaudi chabaudi"]]},{"id":"NCBITaxon:313589","l":"Janibacter sp. HTCC2649","na":1,"nb":1,"a":[["TED%3AAF-A3TKC7-F1-model_v4_TED01","TED novel fold AF-A3TKC7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A313589","Janibacter sp. HTCC2649"]]},{"id":"NCBITaxon:314225","l":"","na":1,"nb":1,"a":[["Pfam%3APF03445","Putative nucleotidyltransferase DUF294"]],"b":[["NCBITaxon%3A314225","Erythrobacter litoralis HTCC2594"]]},{"id":"NCBITaxon:314237","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A318T1W1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A318T1W1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A314237","Paramesorhizobium leguminum"]]},{"id":"NCBITaxon:314279","l":"Nitrosococcus oceani C-27","na":1,"nb":1,"a":[["TED%3AAF-A0A0E2YXI3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0E2YXI3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A314279","Nitrosococcus oceani C-27"]]},{"id":"NCBITaxon:314283","l":"Reinekea blandensis MED297","na":1,"nb":1,"a":[["TED%3AAF-A4BH14-F1-model_v4_TED01","TED highly-symmetric fold AF-A4BH14-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A314283","Reinekea blandensis MED297"]]},{"id":"NCBITaxon:315750","l":"Bacillus pumilus SAFR-032","na":1,"nb":1,"a":[["Pfam%3APF06569","Protein of unknown function (DUF1128)"]],"b":[["NCBITaxon%3A315750","Bacillus pumilus SAFR-032"]]},{"id":"NCBITaxon:316058","l":"Rhodopseudomonas palustris HaA2","na":1,"nb":1,"a":[["TED%3AAF-Q2IYC7-F1-model_v4_TED03","TED novel fold AF-Q2IYC7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A316058","Rhodopseudomonas palustris HaA2"]]},{"id":"NCBITaxon:316278","l":"","na":1,"nb":1,"a":[["TED%3AAF-A5GRF4-F1-model_v4_TED02","TED highly-symmetric fold AF-A5GRF4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A316278","Synechococcus sp. RCC307"]]},{"id":"NCBITaxon:316385","l":"Escherichia coli str. K-12 substr. DH10B","na":1,"nb":1,"a":[["Pfam%3APF06392","Acid shock protein"]],"b":[["NCBITaxon%3A316385","Escherichia coli str. K-12 substr. DH10B"]]},{"id":"NCBITaxon:318456","l":"Photobacterium kishitanii","na":1,"nb":1,"a":[["TED%3AAF-A0A2T3R1R5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T3R1R5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A318456","Photobacterium kishitanii"]]},{"id":"NCBITaxon:31872","l":"Magnetospirillum sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A522WHT1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A522WHT1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A31872","Magnetospirillum sp."]]},{"id":"NCBITaxon:318751","l":"Westerdykella ornata","na":1,"nb":1,"a":[["TED%3AAF-A0A6A6JM44-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6A6JM44-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A318751","Westerdykella ornata"]]},{"id":"NCBITaxon:31944","l":"","na":1,"nb":1,"a":[["Pfam%3APF12831","FAD dependent oxidoreductase"]],"b":[["NCBITaxon%3A31944","Corynebacterium sp. U-96"]]},{"id":"NCBITaxon:319701","l":"","na":1,"nb":1,"a":[["Pfam%3APF13734","Spi protease inhibitor"]],"b":[["NCBITaxon%3A319701","Streptococcus pyogenes MGAS6180"]]},{"id":"NCBITaxon:31991","l":"","na":1,"nb":1,"a":[["Pfam%3APF01355","High potential iron-sulfur protein"]],"b":[["NCBITaxon%3A31991","Halomonas halodenitrificans ATCC 12084"]]},{"id":"NCBITaxon:319939","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A6S5RS37-F1-model_v4_TED02","TED novel fold AF-A0A6S5RS37-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A319939","Metapseudomonas otitidis"]]},{"id":"NCBITaxon:320373","l":"","na":1,"nb":1,"a":[["Pfam%3APF21291","Cyanate hydratase, N-terminal"]],"b":[["NCBITaxon%3A320373","Burkholderia pseudomallei 668"]]},{"id":"NCBITaxon:320388","l":"Burkholderia mallei SAVP1","na":1,"nb":1,"a":[["Pfam%3APF27460","ATP phosphoribosyltransferase subunit HisZ C-terminal domain"]],"b":[["NCBITaxon%3A320388","Burkholderia mallei SAVP1"]]},{"id":"NCBITaxon:32043","l":"","na":1,"nb":1,"a":[["Pfam%3APF21331","Isoamylase, C-terminal"]],"b":[["NCBITaxon%3A32043","Pseudomonas sp. 'amyloderamosa'"]]},{"id":"NCBITaxon:320787","l":"Cyclobacterium amurskyense","na":1,"nb":1,"a":[["TED%3AAF-A0A0H4PRD2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0H4PRD2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A320787","Cyclobacterium amurskyense"]]},{"id":"NCBITaxon:321146","l":"Pseudocercospora eumusae","na":1,"nb":1,"a":[["TED%3AAF-A0A139HNA6-F1-model_v4_TED02","TED novel fold AF-A0A139HNA6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A321146","Pseudocercospora eumusae"]]},{"id":"NCBITaxon:321267","l":"Shimia marina","na":1,"nb":1,"a":[["TED%3AAF-A0A0P1EQT4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0P1EQT4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A321267","Shimia marina"]]},{"id":"NCBITaxon:321332","l":"","na":1,"nb":1,"a":[["TED%3AAF-Q2JL60-F1-model_v4_TED01","TED highly-symmetric fold AF-Q2JL60-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A321332","Synechococcus sp. JA-2-3B'a(2-13)"]]},{"id":"NCBITaxon:321339","l":"Citreimonas salinaria","na":1,"nb":1,"a":[["TED%3AAF-A0A1H3NJK8-F1-model_v4_TED01","TED novel fold AF-A0A1H3NJK8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A321339","Citreimonas salinaria"]]},{"id":"NCBITaxon:321846","l":"Pseudomonas simiae","na":1,"nb":1,"a":[["TED%3AAF-A0A1N7UJF9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1N7UJF9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A321846","Pseudomonas simiae"]]},{"id":"NCBITaxon:321983","l":"Pseudoduganella albidiflava","na":1,"nb":1,"a":[["TED%3AAF-A0A411X2J1-F1-model_v4_TED01","TED novel fold AF-A0A411X2J1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A321983","Pseudoduganella albidiflava"]]},{"id":"NCBITaxon:321985","l":"Pseudoduganella lutea","na":1,"nb":1,"a":[["TED%3AAF-A0A4V0Z4E3-F1-model_v4_TED01","TED novel fold AF-A0A4V0Z4E3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A321985","Pseudoduganella lutea"]]},{"id":"NCBITaxon:324057","l":"Paenibacillus sp. JDR-2","na":1,"nb":1,"a":[["Pfam%3APF06452","Carbohydrate family 9 binding domain-like"]],"b":[["NCBITaxon%3A324057","Paenibacillus sp. JDR-2"]]},{"id":"NCBITaxon:324768","l":"Metabacillus idriensis","na":1,"nb":1,"a":[["TED%3AAF-A0A6I2MBD5-F1-model_v4_TED02","TED novel fold AF-A0A6I2MBD5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A324768","Metabacillus idriensis"]]},{"id":"NCBITaxon:324833","l":"Streptomyces lasaliensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4U5W597-F1-model_v4_TED01","TED novel fold AF-A0A4U5W597-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A324833","Streptomyces lasalocidi"]]},{"id":"NCBITaxon:32595","l":"Babesia divergens","na":1,"nb":1,"a":[["Pfam%3APF11641","Glycosylphosphatidylinositol-anchored merozoite surface protein"]],"b":[["NCBITaxon%3A32595","Babesia divergens"]]},{"id":"NCBITaxon:326454","l":"Burkholderia sp. M701","na":1,"nb":1,"a":[["TED%3AAF-V5YP78-F1-model_v4_TED02","TED highly-symmetric fold AF-V5YP78-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A326454","Burkholderia sp. M701"]]},{"id":"NCBITaxon:329885","l":"Friedmanniomyces endolithicus","na":1,"nb":1,"a":[["TED%3AAF-A0A4U0UK33-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U0UK33-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A329885","Friedmanniomyces endolithicus"]]},{"id":"NCBITaxon:33053","l":"Neisseria perflava","na":1,"nb":1,"a":[["TED%3AAF-A0A2I1Y2M3-F1-model_v4_TED02","TED novel fold AF-A0A2I1Y2M3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A33053","Neisseria perflava"]]},{"id":"NCBITaxon:331271","l":"","na":1,"nb":1,"a":[["Pfam%3APF02685","Glucokinase"]],"b":[["NCBITaxon%3A331271","Burkholderia orbicola AU 1054"]]},{"id":"NCBITaxon:331272","l":"Burkholderia cenocepacia HI2424","na":1,"nb":1,"a":[["Pfam%3APF02673","Bacitracin resistance protein BacA"]],"b":[["NCBITaxon%3A331272","Burkholderia cenocepacia HI2424"]]},{"id":"NCBITaxon:331657","l":"Cryomyces minteri","na":1,"nb":1,"a":[["TED%3AAF-A0A4U0X6C2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U0X6C2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A331657","Cryomyces minteri"]]},{"id":"NCBITaxon:331677","l":"","na":1,"nb":1,"a":[["Pfam%3APF15461","Beta-carotene 15,15'-dioxygenase"]],"b":[["NCBITaxon%3A331677","uncultured marine bacterium 66A03"]]},{"id":"NCBITaxon:33203","l":"Purpureocillium lilacinum","na":1,"nb":1,"a":[["TED%3AAF-A0A2U3ENJ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U3ENJ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A33203","Purpureocillium lilacinum"]]},{"id":"NCBITaxon:332175","l":"Desulfosalsimonas propionicica","na":1,"nb":1,"a":[["TED%3AAF-A0A7W0HJC5-F1-model_v4_TED03","TED novel fold AF-A0A7W0HJC5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A332175","Desulfosalsimonas propionicica"]]},{"id":"NCBITaxon:332524","l":"Actinomyces ruminicola","na":1,"nb":1,"a":[["TED%3AAF-A0A1G9TMB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G9TMB9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A332524","Actinomyces ruminicola"]]},{"id":"NCBITaxon:334747","l":"Olavius algarvensis Delta 1 endosymbiont","na":1,"nb":1,"a":[["TED%3AAF-A0A6J4YGJ7-F1-model_v4_TED02","TED novel fold AF-A0A6J4YGJ7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A334747","Olavius algarvensis Delta 1 endosymbiont"]]},{"id":"NCBITaxon:335431","l":"Tepidimonas thermarum","na":1,"nb":1,"a":[["TED%3AAF-A0A554X0R3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A554X0R3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A335431","Tepidimonas thermarum"]]},{"id":"NCBITaxon:335541","l":"Syntrophomonas wolfei subsp. wolfei (strain DSM 2245B / Goettingen)","na":1,"nb":1,"a":[["TED%3AAF-Q0AVF9-F1-model_v4_TED01","TED novel fold AF-Q0AVF9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A335541","Syntrophomonas wolfei subsp. wolfei str. Goettingen G311"]]},{"id":"NCBITaxon:335975","l":"Sulfitobacter litoralis","na":1,"nb":1,"a":[["TED%3AAF-A0A7V1BHU1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V1BHU1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A335975","Sulfitobacter litoralis"]]},{"id":"NCBITaxon:339670","l":"Burkholderia ambifaria AMMD","na":1,"nb":1,"a":[["Pfam%3APF11004","3-deoxy-D-manno-oct-2-ulosonic acid (Kdo) hydroxylase"]],"b":[["NCBITaxon%3A339670","Burkholderia ambifaria AMMD"]]},{"id":"NCBITaxon:33977","l":"Caryophanon latum","na":1,"nb":1,"a":[["TED%3AAF-A0A1C0YYY7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1C0YYY7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A33977","Caryophanon latum"]]},{"id":"NCBITaxon:34002","l":"Paracoccus alcaliphilus","na":1,"nb":1,"a":[["TED%3AAF-A0A1H8HHY3-F1-model_v4_TED02","TED novel fold AF-A0A1H8HHY3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A34002","Paracoccus alcaliphilus"]]},{"id":"NCBITaxon:34007","l":"Paracoccus versutus","na":1,"nb":1,"a":[["Pfam%3APF06433","Methylamine dehydrogenase heavy chain (MADH)"]],"b":[["NCBITaxon%3A34007","Paracoccus versutus"]]},{"id":"NCBITaxon:34028","l":"","na":1,"nb":1,"a":[["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"]],"b":[["NCBITaxon%3A34028","Comamonas sp."]]},{"id":"NCBITaxon:340345","l":"Actinoalloteichus hymeniacidonis","na":1,"nb":1,"a":[["TED%3AAF-A0A7W9UEM7-F1-model_v4_TED01","TED novel fold AF-A0A7W9UEM7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A340345","Actinoalloteichus hymeniacidonis"]]},{"id":"NCBITaxon:34095","l":"Borreliella japonica","na":1,"nb":1,"a":[["Pfam%3APF17044","Borrelial persistence in ticks protein A"]],"b":[["NCBITaxon%3A34095","Borreliella japonica"]]},{"id":"NCBITaxon:34097","l":"Brevinema andersonii","na":1,"nb":1,"a":[["TED%3AAF-A0A1I1E5H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I1E5H4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A34097","Brevinema andersonii"]]},{"id":"NCBITaxon:341454","l":"Ascodesmis nigricans","na":1,"nb":1,"a":[["TED%3AAF-A0A4S2MVE6-F1-model_v4_TED02","TED novel fold AF-A0A4S2MVE6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A341454","Ascodesmis nigricans"]]},{"id":"NCBITaxon:342002","l":"Mycolicibacter arupensis","na":1,"nb":1,"a":[["TED%3AAF-A0A5C7Y8M2-F1-model_v4_TED01","TED novel fold AF-A0A5C7Y8M2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A342002","Mycolicibacter arupensis"]]},{"id":"NCBITaxon:342109","l":"","na":1,"nb":1,"a":[["Pfam%3APF04977","Septum formation initiator"]],"b":[["NCBITaxon%3A342109","Xanthomonas oryzae pv. oryzae MAFF 311018"]]},{"id":"NCBITaxon:342668","l":"Pseudogymnoascus verrucosus","na":1,"nb":1,"a":[["TED%3AAF-A0A1B8GR16-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1B8GR16-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A342668","Pseudogymnoascus verrucosus"]]},{"id":"NCBITaxon:342949","l":"","na":1,"nb":1,"a":[["TED%3AAF-F4HI69-F1-model_v4_TED02","TED highly-symmetric fold AF-F4HI69-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A342949","Pyrococcus sp. NA2"]]},{"id":"NCBITaxon:342955","l":"Lacinutrix mariniflava","na":1,"nb":1,"a":[["Pfam%3APF13189","Cytidylate kinase-like family"]],"b":[["NCBITaxon%3A342955","Lacinutrix mariniflava"]]},{"id":"NCBITaxon:343509","l":"Sodalis glossinidius str. 'morsitans'","na":1,"nb":1,"a":[["Pfam%3APF04345","Chorismate lyase"]],"b":[["NCBITaxon%3A343509","Sodalis glossinidius str. 'morsitans'"]]},{"id":"NCBITaxon:345309","l":"Luteibacter yeojuensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0F3L280-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F3L280-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A345309","Luteibacter yeojuensis"]]},{"id":"NCBITaxon:345341","l":"Kutzneria sp. 744","na":1,"nb":1,"a":[["TED%3AAF-W7SU68-F1-model_v4_TED01","TED novel fold AF-W7SU68-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A345341","Kutzneria sp. 744"]]},{"id":"NCBITaxon:345631","l":"Geobacter argillaceus","na":1,"nb":1,"a":[["TED%3AAF-A0A562VM24-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A562VM24-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A345631","Geobacter argillaceus"]]},{"id":"NCBITaxon:346185","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q1BKA9-F1-model_v4_TED02","TED novel fold AF-A0A0Q1BKA9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A346185","Flagellimonas eckloniae"]]},{"id":"NCBITaxon:347209","l":"Arthrobacter sp. J3.40","na":1,"nb":1,"a":[["TED%3AAF-I3W1F3-F1-model_v4_TED01","TED novel fold AF-I3W1F3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A347209","Arthrobacter sp. J3.40"]]},{"id":"NCBITaxon:348151","l":"Furfurilactobacillus siliginis","na":1,"nb":1,"a":[["TED%3AAF-A0A0R2L6V8-F1-model_v4_TED02","TED novel fold AF-A0A0R2L6V8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A348151","Furfurilactobacillus siliginis"]]},{"id":"NCBITaxon:348826","l":"Natronorubrum aibiense","na":1,"nb":1,"a":[["TED%3AAF-A0A5P9P2A0-F1-model_v4_TED01","TED novel fold AF-A0A5P9P2A0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A348826","Natronorubrum aibiense"]]},{"id":"NCBITaxon:349746","l":"","na":1,"nb":1,"a":[["Pfam%3APF03974","Ecotin"]],"b":[["NCBITaxon%3A349746","Yersinia pestis Angola"]]},{"id":"NCBITaxon:351659","l":"Xenorhabdus koppenhoeferi","na":1,"nb":1,"a":[["TED%3AAF-A0A1I7KAB7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1I7KAB7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A351659","Xenorhabdus koppenhoeferi"]]},{"id":"NCBITaxon:354243","l":"Mycolicibacter kumamotonensis","na":1,"nb":1,"a":[["TED%3AAF-A0A7K3LH87-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K3LH87-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A354243","Mycolicibacter kumamotonensis"]]},{"id":"NCBITaxon:355243","l":"Amphritea atlantica","na":1,"nb":1,"a":[["TED%3AAF-A0A1H9MBM2-F1-model_v4_TED01","TED novel fold AF-A0A1H9MBM2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A355243","Amphritea atlantica"]]},{"id":"NCBITaxon:35623","l":"Acholeplasma oculi","na":1,"nb":1,"a":[["TED%3AAF-A0A061AIF7-F1-model_v4_TED03","TED novel fold AF-A0A061AIF7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A35623","Acholeplasma oculi"]]},{"id":"NCBITaxon:356305","l":"Chryseobacterium wanjuense","na":1,"nb":1,"a":[["TED%3AAF-A0A1I0RKT6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I0RKT6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A356305","Chryseobacterium wanjuense"]]},{"id":"NCBITaxon:357244","l":"Orientia tsutsugamushi str. Boryong","na":1,"nb":1,"a":[["Pfam%3APF01745","Isopentenyl transferase"]],"b":[["NCBITaxon%3A357244","Orientia tsutsugamushi str. Boryong"]]},{"id":"NCBITaxon:357348","l":"","na":1,"nb":1,"a":[["Pfam%3APF01958","Aspartate dehydrogenase, C-terminal"]],"b":[["NCBITaxon%3A357348","Burkholderia pseudomallei 1106a"]]},{"id":"NCBITaxon:357385","l":"Paenibacillus sp. F4","na":1,"nb":1,"a":[["TED%3AAF-A0A2K1ENT1-F1-model_v4_TED01","TED novel fold AF-A0A2K1ENT1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A357385","Paenibacillus sp. F4"]]},{"id":"NCBITaxon:35752","l":"Actinoplanes philippinensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1I2HI82-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I2HI82-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A35752","Actinoplanes philippinensis"]]},{"id":"NCBITaxon:35759","l":"Streptomyces sp. (strain R2075)","na":1,"nb":1,"a":[["Pfam%3APF19398","Lantibiotic duramycin B-like"]],"b":[["NCBITaxon%3A35759","Streptomyces sp. (strain R2075)"]]},{"id":"NCBITaxon:35764","l":"Streptosporangium nondiastaticum","na":1,"nb":1,"a":[["TED%3AAF-A0A2P7PWM4-F1-model_v4_TED01","TED novel fold AF-A0A2P7PWM4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A35764","Streptosporangium nondiastaticum"]]},{"id":"NCBITaxon:35816","l":"Pelobacter acidigallici","na":1,"nb":1,"a":[["Pfam%3APF21423","Pyrogallol hydroxytransferase large subunit-like, domain 1"]],"b":[["NCBITaxon%3A35816","Pelobacter acidigallici"]]},{"id":"NCBITaxon:360094","l":"","na":1,"nb":1,"a":[["Pfam%3APF03377","TAL effector repeat"]],"b":[["NCBITaxon%3A360094","Xanthomonas oryzae pv. oryzae PXO99A"]]},{"id":"NCBITaxon:360106","l":"","na":1,"nb":1,"a":[["Pfam%3APF10788","Protein of unknown function (DUF2603)"]],"b":[["NCBITaxon%3A360106","Campylobacter fetus subsp. fetus 82-40"]]},{"id":"NCBITaxon:36022","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1V2L1Y2-F1-model_v4_TED02","TED novel fold AF-A0A1V2L1Y2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A36022","Petasospora fabianii"]]},{"id":"NCBITaxon:360412","l":"Longilinea arvoryzae","na":1,"nb":1,"a":[["TED%3AAF-A0A0S7BD54-F1-model_v4_TED02","TED novel fold AF-A0A0S7BD54-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A360412","Longilinea arvoryzae"]]},{"id":"NCBITaxon:36050","l":"Fusarium poae","na":1,"nb":1,"a":[["TED%3AAF-A0A1B8B0N0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1B8B0N0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A36050","Fusarium poae"]]},{"id":"NCBITaxon:36056","l":"Boletus edulis","na":1,"nb":1,"a":[["Pfam%3APF07367","Fungal fruit body lectin"]],"b":[["NCBITaxon%3A36056","Boletus edulis"]]},{"id":"NCBITaxon:360911","l":"Exiguobacterium sp. AT1b","na":1,"nb":1,"a":[["TED%3AAF-C4L6T8-F1-model_v4_TED04","TED highly-symmetric fold AF-C4L6T8-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A360911","Exiguobacterium sp. AT1b"]]},{"id":"NCBITaxon:360921","l":"Pseudomonas savastanoi pv. nerii","na":1,"nb":1,"a":[["TED%3AAF-A0A0N8SCT2-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A0N8SCT2-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A360921","Pseudomonas savastanoi pv. nerii"]]},{"id":"NCBITaxon:362257","l":"Streptomyces vietnamensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0B5IE19-F1-model_v4_TED01","TED novel fold AF-A0A0B5IE19-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A362257","Streptomyces vietnamensis"]]},{"id":"NCBITaxon:362649","l":"Microbacterium thalassium","na":1,"nb":1,"a":[["TED%3AAF-A0A7X0KUL1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X0KUL1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A362649","Microbacterium thalassium"]]},{"id":"NCBITaxon:362837","l":"Spiroplasma cantharicola","na":1,"nb":1,"a":[["TED%3AAF-A0A0M5KEJ6-F1-model_v4_TED03","TED novel fold AF-A0A0M5KEJ6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A362837","Spiroplasma cantharicola"]]},{"id":"NCBITaxon:363253","l":"","na":1,"nb":1,"a":[["TED%3AAF-Q1MSC4-F1-model_v4_TED02","TED highly-symmetric fold AF-Q1MSC4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A363253","Lawsonia intracellularis PHE/MN1-00"]]},{"id":"NCBITaxon:363837","l":"Chitinophaga ginsengisoli","na":1,"nb":1,"a":[["TED%3AAF-A0A2P8FDY3-F1-model_v4_TED01","TED novel fold AF-A0A2P8FDY3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A363837","Chitinophaga ginsengisoli"]]},{"id":"NCBITaxon:365340","l":"Rhodovulum imhoffii","na":1,"nb":1,"a":[["TED%3AAF-A0A2T5BVE1-F1-model_v4_TED01","TED novel fold AF-A0A2T5BVE1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A365340","Rhodovulum imhoffii"]]},{"id":"NCBITaxon:365591","l":"Shewanella morhuae","na":1,"nb":1,"a":[["TED%3AAF-A0A380A628-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A380A628-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A365591","Shewanella morhuae"]]},{"id":"NCBITaxon:366394","l":"","na":1,"nb":1,"a":[["Pfam%3APF05128","Domain of unknown function (DUF697)"]],"b":[["NCBITaxon%3A366394","Sinorhizobium medicae WSM419"]]},{"id":"NCBITaxon:36824","l":"","na":1,"nb":1,"a":[["Pfam%3APF13386","Cytochrome C biogenesis protein transmembrane region"]],"b":[["NCBITaxon%3A36824","Bacillus sp. TB-90"]]},{"id":"NCBITaxon:368607","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A290WWL9-F1-model_v4_TED02","TED novel fold AF-A0A290WWL9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A368607","Janthinobacterium svalbardense"]]},{"id":"NCBITaxon:369932","l":"Amycolatopsis niigatensis","na":1,"nb":1,"a":[["TED%3AAF-A0A2N3X0E8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3X0E8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2576905","Amycolatopsis echigonensis"]]},{"id":"NCBITaxon:370554","l":"Streptococcus pyogenes MGAS10750","na":1,"nb":1,"a":[["Pfam%3APF04260","Protein of unknown function (DUF436)"]],"b":[["NCBITaxon%3A370554","Streptococcus pyogenes MGAS10750"]]},{"id":"NCBITaxon:370959","l":"Sphingomonas mucosissima","na":1,"nb":1,"a":[["TED%3AAF-A0A245ZPX4-F1-model_v4_TED03","TED novel fold AF-A0A245ZPX4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A370959","Sphingomonas mucosissima"]]},{"id":"NCBITaxon:372484","l":"Sanguibacter antarcticus","na":1,"nb":1,"a":[["TED%3AAF-A0A2A9E4K5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A9E4K5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A372484","Sanguibacter antarcticus"]]},{"id":"NCBITaxon:37360","l":"Plasmodiophora brassicae","na":1,"nb":1,"a":[["TED%3AAF-A0A0G4IW71-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G4IW71-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A37360","Plasmodiophora brassicae"]]},{"id":"NCBITaxon:373672","l":"Chryseobacterium gambrini","na":1,"nb":1,"a":[["TED%3AAF-A0A1N7P9B3-F1-model_v4_TED02","TED novel fold AF-A0A1N7P9B3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A373672","Chryseobacterium gambrini"]]},{"id":"NCBITaxon:375063","l":"Haemophilus influenzae 22.4-21","na":1,"nb":1,"a":[["TED%3AAF-A4NYM7-F1-model_v4_TED02","TED novel fold AF-A4NYM7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A375063","Haemophilus influenzae 22.4-21"]]},{"id":"NCBITaxon:375177","l":"Haemophilus influenzae 3655","na":1,"nb":1,"a":[["Pfam%3APF16747","Surface-adhesin protein E"]],"b":[["NCBITaxon%3A375177","Haemophilus influenzae 3655"]]},{"id":"NCBITaxon:375926","l":"Helicobacter anseris","na":1,"nb":1,"a":[["TED%3AAF-A0A3D8J1W2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3D8J1W2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A375926","Helicobacter anseris"]]},{"id":"NCBITaxon:375927","l":"Helicobacter brantae","na":1,"nb":1,"a":[["TED%3AAF-A0A3D8J4Q3-F1-model_v4_TED02","TED novel fold AF-A0A3D8J4Q3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A375927","Helicobacter brantae"]]},{"id":"NCBITaxon:37628","l":"Mollicutes bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7X6SHQ2-F1-model_v4_TED03","TED novel fold AF-A0A7X6SHQ2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A37628","Mollicutes bacterium"]]},{"id":"NCBITaxon:37727","l":"Talaromyces marneffei","na":1,"nb":1,"a":[["Pfam%3APF12296","Hydrophobic surface binding protein A"]],"b":[["NCBITaxon%3A37727","Talaromyces marneffei"]]},{"id":"NCBITaxon:377621","l":"","na":1,"nb":1,"a":[["Pfam%3APF08533","Beta-galactosidase C-terminal domain"]],"b":[["NCBITaxon%3A377621","Planococcus sp. L4"]]},{"id":"NCBITaxon:378543","l":"Tumebacillus permanentifrigoris","na":1,"nb":1,"a":[["TED%3AAF-A0A316DIT3-F1-model_v4_TED01","TED novel fold AF-A0A316DIT3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A378543","Tumebacillus permanentifrigoris"]]},{"id":"NCBITaxon:37929","l":"Glutamicibacter nicotianae","na":1,"nb":1,"a":[["Pfam%3APF16701","Adenylate cyclase regulatory domain"]],"b":[["NCBITaxon%3A37929","Glutamicibacter nicotianae"]]},{"id":"NCBITaxon:380244","l":"Glycomyces sambucus","na":1,"nb":1,"a":[["TED%3AAF-A0A1G9J2V2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G9J2V2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A380244","Glycomyces sambucus"]]},{"id":"NCBITaxon:380704","l":"Aspergillus niger ATCC 1015","na":1,"nb":1,"a":[["Pfam%3APF28387","BfoA N-terminal domain"]],"b":[["NCBITaxon%3A380704","Aspergillus niger ATCC 1015"]]},{"id":"NCBITaxon:381308","l":"Thiohalophilus thiocyanatoxydans","na":1,"nb":1,"a":[["TED%3AAF-A0A4R8ITD7-F1-model_v4_TED01","TED novel fold AF-A0A4R8ITD7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A381308","Thiohalophilus thiocyanatoxydans"]]},{"id":"NCBITaxon:381754","l":"Pseudomonas paraeruginosa PA7","na":1,"nb":1,"a":[["Pfam%3APF05985","Ethanolamine ammonia-lyase light chain (EutC)"]],"b":[["NCBITaxon%3A381754","Pseudomonas paraeruginosa PA7"]]},{"id":"NCBITaxon:381802","l":"Brachyspira suanatina","na":1,"nb":1,"a":[["TED%3AAF-A0A0G4K4I9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0G4K4I9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A381802","Brachyspira suanatina"]]},{"id":"NCBITaxon:382514","l":"Telmatospirillum siberiense","na":1,"nb":1,"a":[["TED%3AAF-A0A2N3PPB2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3PPB2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A382514","Telmatospirillum siberiense"]]},{"id":"NCBITaxon:383750","l":"Marinomonas arctica","na":1,"nb":1,"a":[["TED%3AAF-A0A7H1J8T9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7H1J8T9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A383750","Marinomonas arctica"]]},{"id":"NCBITaxon:383855","l":"","na":1,"nb":1,"a":[["TED%3AAF-M3AXZ2-F1-model_v4_TED01","TED novel fold AF-M3AXZ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A383855","Pseudocercospora fijiensis CIRAD86"]]},{"id":"NCBITaxon:383911","l":"Pseudoalteromonas sp. BSi20311","na":1,"nb":1,"a":[["TED%3AAF-G7EV99-F1-model_v4_TED02","TED highly-symmetric fold AF-G7EV99-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A383911","Pseudoalteromonas sp. BSi20311"]]},{"id":"NCBITaxon:38457","l":"Monilinia fructigena","na":1,"nb":1,"a":[["TED%3AAF-A0A395IK50-F1-model_v4_TED01","TED novel fold AF-A0A395IK50-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A38457","Monilinia fructigena"]]},{"id":"NCBITaxon:385957","l":"","na":1,"nb":1,"a":[["Pfam%3APF21105","DyP dimeric alpha+beta barrel domain"]],"b":[["NCBITaxon%3A385957","Amycolatopsis sp. ATCC 39116"]]},{"id":"NCBITaxon:387957","l":"Methanobrevibacter sp. 87.7","na":1,"nb":1,"a":[["TED%3AAF-A0A219AM20-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A219AM20-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A387957","Methanobrevibacter sp. 87.7"]]},{"id":"NCBITaxon:388278","l":"Photobacterium lutimaris","na":1,"nb":1,"a":[["TED%3AAF-A0A2T3ITP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T3ITP8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A388278","Photobacterium lutimaris"]]},{"id":"NCBITaxon:388280","l":"Cyclobacterium lianum","na":1,"nb":1,"a":[["TED%3AAF-A0A1M7NTJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M7NTJ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A388280","Cyclobacterium lianum"]]},{"id":"NCBITaxon:388396","l":"Aliivibrio fischeri MJ11","na":1,"nb":1,"a":[["Pfam%3APF21868","GlcNAc-binding protein A, third domain"]],"b":[["NCBITaxon%3A388396","Aliivibrio fischeri MJ11"]]},{"id":"NCBITaxon:389348","l":"Candidatus Protochlamydia naegleriophila","na":1,"nb":1,"a":[["TED%3AAF-A0A0U5J6J4-F1-model_v4_TED01","TED novel fold AF-A0A0U5J6J4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A389348","Candidatus Protochlamydia naegleriophila"]]},{"id":"NCBITaxon:38945","l":"Flammulina velutipes","na":1,"nb":1,"a":[["Pfam%3APF09259","Fungal immunomodulatory protein Fve"]],"b":[["NCBITaxon%3A38945","Flammulina velutipes"]]},{"id":"NCBITaxon:390640","l":"Salinimicrobium catena","na":1,"nb":1,"a":[["TED%3AAF-A0A1H5N3E6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H5N3E6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A390640","Salinimicrobium catena"]]},{"id":"NCBITaxon:390989","l":"Actinocatenispora sera","na":1,"nb":1,"a":[["TED%3AAF-A0A810L9K2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A810L9K2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A390989","Actinocatenispora sera"]]},{"id":"NCBITaxon:391","l":"Rhizobium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A353G134-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A353G134-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A391","Rhizobium sp."]]},{"id":"NCBITaxon:391037","l":"Salinispora arenicola CNS-205","na":1,"nb":1,"a":[["Pfam%3APF12072","RNase Y N-terminal region"]],"b":[["NCBITaxon%3A391037","Salinispora arenicola CNS-205"]]},{"id":"NCBITaxon:391295","l":"","na":1,"nb":1,"a":[["Pfam%3APF06160","Septation ring formation regulator, EzrA"]],"b":[["NCBITaxon%3A391295","Streptococcus suis 05ZYH33"]]},{"id":"NCBITaxon:391296","l":"","na":1,"nb":1,"a":[["Pfam%3APF06949","Protein of unknown function (DUF1292)"]],"b":[["NCBITaxon%3A391296","Streptococcus suis 98HAH33"]]},{"id":"NCBITaxon:391598","l":"Flavobacteria bacterium BAL38","na":1,"nb":1,"a":[["TED%3AAF-A3J071-F1-model_v4_TED02","TED novel fold AF-A3J071-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A391598","Flavobacteria bacterium BAL38"]]},{"id":"NCBITaxon:391612","l":"Crocosphaera chwakensis CCY0110","na":1,"nb":1,"a":[["TED%3AAF-A3ILV2-F1-model_v4_TED01","TED highly-symmetric fold AF-A3ILV2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A391612","Crocosphaera chwakensis CCY0110"]]},{"id":"NCBITaxon:391905","l":"Methylocystis heyeri","na":1,"nb":1,"a":[["TED%3AAF-A0A6B8KKQ2-F1-model_v4_TED02","TED novel fold AF-A0A6B8KKQ2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A391905","Methylocystis heyeri"]]},{"id":"NCBITaxon:392421","l":"Natrinema hispanicum","na":1,"nb":1,"a":[["TED%3AAF-A0A482YFG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A482YFG8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A392421","Natrinema hispanicum"]]},{"id":"NCBITaxon:392547","l":"Candidatus Brocadia sapporoensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6M2Y0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V6M2Y0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A392547","Candidatus Brocadia sapporoensis"]]},{"id":"NCBITaxon:393763","l":"Anaerobacillus alkalilacustris","na":1,"nb":1,"a":[["TED%3AAF-A0A1S2LYP0-F1-model_v4_TED02","TED novel fold AF-A0A1S2LYP0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A393763","Anaerobacillus alkalilacustris"]]},{"id":"NCBITaxon:39495","l":"Eubacterium uniforme","na":1,"nb":1,"a":[["TED%3AAF-A0A1T4W9S3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1T4W9S3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A39495","Eubacterium uniforme"]]},{"id":"NCBITaxon:395933","l":"Chryseobacterium lathyri","na":1,"nb":1,"a":[["TED%3AAF-A0A511Y8C1-F1-model_v4_TED04","TED novel fold AF-A0A511Y8C1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A395933","Chryseobacterium lathyri"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["Pfam%3APF13282","Domain of unknown function (DUF4070)"]],"b":[["NCBITaxon%3A395960","Rhodopseudomonas palustris TIE-1"]]},{"id":"NCBITaxon:395961","l":"Cyanothece sp. PCC 7425","na":1,"nb":1,"a":[["TED%3AAF-B8HKH7-F1-model_v4_TED01","TED highly-symmetric fold AF-B8HKH7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A395961","Cyanothece sp. PCC 7425"]]},{"id":"NCBITaxon:396013","l":"Pseudooceanicola marinus","na":1,"nb":1,"a":[["TED%3AAF-A0A1X6YM17-F1-model_v4_TED03","TED novel fold AF-A0A1X6YM17-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A396013","Pseudooceanicola marinus"]]},{"id":"NCBITaxon:396513","l":"","na":1,"nb":1,"a":[["Pfam%3APF03123","CAT RNA binding domain"]],"b":[["NCBITaxon%3A396513","Staphylococcus carnosus subsp. carnosus TM300"]]},{"id":"NCBITaxon:39769","l":"Methylococcus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A3N9V7U0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N9V7U0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39769","Methylococcus sp."]]},{"id":"NCBITaxon:398673","l":"Trichoderma gamsii","na":1,"nb":1,"a":[["TED%3AAF-A0A2K0TA12-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2K0TA12-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A398673","Trichoderma gamsii"]]},{"id":"NCBITaxon:399497","l":"Tessaracoccus flavescens","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q2CX18-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q2CX18-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A399497","Tessaracoccus flavescens"]]},{"id":"NCBITaxon:40001","l":"Cellulomonas sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y0H2X6-F1-model_v4_TED01","TED novel fold AF-A0A7Y0H2X6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A40001","Cellulomonas sp."]]},{"id":"NCBITaxon:400673","l":"","na":1,"nb":1,"a":[["Pfam%3APF03445","Putative nucleotidyltransferase DUF294"]],"b":[["NCBITaxon%3A400673","Legionella pneumophila str. Corby"]]},{"id":"NCBITaxon:400777","l":"Paenibacillus ginsengarvi","na":1,"nb":1,"a":[["TED%3AAF-A0A3B0CDW4-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A3B0CDW4-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A400777","Paenibacillus ginsengarvi"]]},{"id":"NCBITaxon:401471","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A3S9HIB2-F1-model_v4_TED01","TED novel fold AF-A0A3S9HIB2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A401471","Neoundibacterium parvum"]]},{"id":"NCBITaxon:402882","l":"","na":1,"nb":1,"a":[["Pfam%3APF09829","Uncharacterized protein conserved in bacteria (DUF2057)"]],"b":[["NCBITaxon%3A402882","Shewanella baltica OS185"]]},{"id":"NCBITaxon:403776","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A077XLJ2-F1-model_v4_TED04","TED novel fold AF-A0A077XLJ2-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A403776","Sphingobacterium sp. PM2-P1-29"]]},{"id":"NCBITaxon:404881","l":"Albidovulum denitrificans","na":1,"nb":1,"a":[["TED%3AAF-A0A2S8SDZ8-F1-model_v4_TED03","TED novel fold AF-A0A2S8SDZ8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A404881","Albidovulum denitrificans"]]},{"id":"NCBITaxon:405440","l":"Xylella fastidiosa M12","na":1,"nb":1,"a":[["Pfam%3APF04977","Septum formation initiator"]],"b":[["NCBITaxon%3A405440","Xylella fastidiosa M12"]]},{"id":"NCBITaxon:405532","l":"","na":1,"nb":1,"a":[["Pfam%3APF09021","HutP"]],"b":[["NCBITaxon%3A405532","Bacillus cereus B4264"]]},{"id":"NCBITaxon:405535","l":"","na":1,"nb":1,"a":[["Pfam%3APF10087","Uncharacterized protein conserved in bacteria (DUF2325)"]],"b":[["NCBITaxon%3A405535","Bacillus cereus AH820"]]},{"id":"NCBITaxon:405555","l":"Haloactinospora alba","na":1,"nb":1,"a":[["TED%3AAF-A0A543NJX9-F1-model_v4_TED03","TED novel fold AF-A0A543NJX9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A405555","Haloactinospora alba"]]},{"id":"NCBITaxon:41047","l":"Aspergillus thermomutatus","na":1,"nb":1,"a":[["Pfam%3APF28486","AnkG N-terminal domain"]],"b":[["NCBITaxon%3A41047","Aspergillus thermomutatus"]]},{"id":"NCBITaxon:41067","l":"Aspergillus candidus","na":1,"nb":1,"a":[["TED%3AAF-A0A2I2EZ62-F1-model_v4_TED02","TED novel fold AF-A0A2I2EZ62-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A41067","Aspergillus candidus"]]},{"id":"NCBITaxon:411486","l":"Clostridium sp. M62/1","na":1,"nb":1,"a":[["TED%3AAF-D4CA03-F1-model_v4_TED02","TED novel fold AF-D4CA03-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A411486","Clostridium sp. M62/1"]]},{"id":"NCBITaxon:41211","l":"Desulfotomaculum sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A356UJQ3-F1-model_v4_TED01","TED novel fold AF-A0A356UJQ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A41211","Desulfotomaculum sp."]]},{"id":"NCBITaxon:412955","l":"Pseudomonas sp. SCT","na":1,"nb":1,"a":[["Pfam%3APF03150","Di-haem cytochrome c peroxidase"]],"b":[["NCBITaxon%3A412955","Pseudomonas sp. SCT"]]},{"id":"NCBITaxon:413404","l":"","na":1,"nb":1,"a":[["Pfam%3APF04359","Protein of unknown function (DUF493)"]],"b":[["NCBITaxon%3A413404","Candidatus Ruthia magnifica str. Cm (Calyptogena magnifica)"]]},{"id":"NCBITaxon:413434","l":"Sediminibacterium ginsengisoli","na":1,"nb":1,"a":[["TED%3AAF-A0A1T4NZ26-F1-model_v4_TED01","TED novel fold AF-A0A1T4NZ26-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A413434","Sediminibacterium ginsengisoli"]]},{"id":"NCBITaxon:413815","l":"Halorubrum cibi","na":1,"nb":1,"a":[["TED%3AAF-A0A521C3X2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A521C3X2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A413815","Halorubrum cibi"]]},{"id":"NCBITaxon:414684","l":"Rhodospirillum centenum SW","na":1,"nb":1,"a":[["Pfam%3APF27469","ATP synthase epsilon chain C-terminal domain"]],"b":[["NCBITaxon%3A414684","Rhodospirillum centenum SW"]]},{"id":"NCBITaxon:415851","l":"Chryseobacterium flavum","na":1,"nb":1,"a":[["TED%3AAF-A0A3D9CSI6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D9CSI6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A415851","Chryseobacterium flavum"]]},{"id":"NCBITaxon:415956","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A5S5DER4-F1-model_v4_TED03","TED novel fold AF-A0A5S5DER4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A415956","Sphingobacterium allocomposti"]]},{"id":"NCBITaxon:41643","l":"Corynebacterium melassecola","na":1,"nb":1,"a":[["Pfam%3APF08310","LGFP repeat"]],"b":[["NCBITaxon%3A41643","Corynebacterium melassecola"]]},{"id":"NCBITaxon:416450","l":"Penicillium antarcticum","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6PWJ0-F1-model_v4_TED01","TED novel fold AF-A0A1V6PWJ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A416450","Penicillium antarcticum"]]},{"id":"NCBITaxon:41688","l":"Lomentospora prolificans","na":1,"nb":1,"a":[["TED%3AAF-A0A2N3N8C0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3N8C0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A41688","Lomentospora prolificans"]]},{"id":"NCBITaxon:418","l":"Methylomonas sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2P5N113-F1-model_v4_TED01","TED novel fold AF-A0A2P5N113-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A418","Methylomonas sp."]]},{"id":"NCBITaxon:418784","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2P7YR10-F1-model_v4_TED02","TED novel fold AF-A0A2P7YR10-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A418784","Candidozyma pseudohaemuli"]]},{"id":"NCBITaxon:41956","l":"Amanita muscaria","na":1,"nb":1,"a":[["Pfam%3APF08883","Dopa 4,5-dioxygenase family"]],"b":[["NCBITaxon%3A41956","Amanita muscaria"]]},{"id":"NCBITaxon:420324","l":"Microvirga lupini","na":1,"nb":1,"a":[["TED%3AAF-A0A7W4VPM2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W4VPM2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A420324","Microvirga lupini"]]},{"id":"NCBITaxon:420953","l":"Paraburkholderia megapolitana","na":1,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_GrbD","GrbD-type graminine biosynthesis protein family"]],"b":[["NCBITaxon%3A420953","Paraburkholderia megapolitana"]]},{"id":"NCBITaxon:420998","l":"Jannaschia donghaensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0M6YL59-F1-model_v4_TED01","TED novel fold AF-A0A0M6YL59-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A420998","Jannaschia donghaensis"]]},{"id":"NCBITaxon:422288","l":"Beggiatoa sp. SS","na":1,"nb":1,"a":[["TED%3AAF-A7BLJ0-F1-model_v4_TED01","TED novel fold AF-A7BLJ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A422288","Beggiatoa sp. SS"]]},{"id":"NCBITaxon:422289","l":"Beggiatoa sp. PS","na":1,"nb":1,"a":[["TED%3AAF-A7BS81-F1-model_v4_TED01","TED highly-symmetric fold AF-A7BS81-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A422289","Beggiatoa sp. PS"]]},{"id":"NCBITaxon:42249","l":"Tuber magnatum","na":1,"nb":1,"a":[["TED%3AAF-A0A317SJ45-F1-model_v4_TED01","TED novel fold AF-A0A317SJ45-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A42249","Tuber magnatum"]]},{"id":"NCBITaxon:42260","l":"Zygotorulaspora mrakii","na":1,"nb":1,"a":[["TED%3AAF-A0A7H9B774-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H9B774-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A42260","Zygotorulaspora mrakii"]]},{"id":"NCBITaxon:423474","l":"Crocosphaera watsonii WH 8502","na":1,"nb":1,"a":[["TED%3AAF-T2ICX6-F1-model_v4_TED01","TED highly-symmetric fold AF-T2ICX6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A423474","Crocosphaera watsonii WH 8502"]]},{"id":"NCBITaxon:423536","l":"","na":1,"nb":1,"a":[["TED%3AAF-C5L005-F1-model_v4_TED04","TED novel fold AF-C5L005-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A423536","Perkinsus marinus ATCC 50983"]]},{"id":"NCBITaxon:424796","l":"Brevundimonas lenta","na":1,"nb":1,"a":[["TED%3AAF-A0A7W6NPS7-F1-model_v4_TED01","TED novel fold AF-A0A7W6NPS7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A424796","Brevundimonas lenta"]]},{"id":"NCBITaxon:425511","l":"Pedobacter duraquae","na":1,"nb":1,"a":[["TED%3AAF-A0A4R6IHU7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R6IHU7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A425511","Pedobacter duraquae"]]},{"id":"NCBITaxon:426703","l":"Alkalibacterium putridalgicola","na":1,"nb":1,"a":[["TED%3AAF-A0A1H7XG09-F1-model_v4_TED03","TED novel fold AF-A0A1H7XG09-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A426703","Alkalibacterium putridalgicola"]]},{"id":"NCBITaxon:426756","l":"Bhargavaea beijingensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1G7A385-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G7A385-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A426756","Bhargavaea beijingensis"]]},{"id":"NCBITaxon:427317","l":"Saccharolobus islandicus M.14.25","na":1,"nb":1,"a":[["Pfam%3APF05165","GTP cyclohydrolase III"]],"b":[["NCBITaxon%3A427317","Saccharolobus islandicus M.14.25"]]},{"id":"NCBITaxon:42881","l":"Streptomyces chromofuscus","na":1,"nb":1,"a":[["TED%3AAF-A0A7M2T2Z7-F1-model_v4_TED01","TED novel fold AF-A0A7M2T2Z7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A42881","Streptomyces chromofuscus"]]},{"id":"NCBITaxon:429572","l":"Saccharolobus islandicus L.S.2.15","na":1,"nb":1,"a":[["TED%3AAF-C3MM69-F1-model_v4_TED02","TED novel fold AF-C3MM69-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A429572","Saccharolobus islandicus L.S.2.15"]]},{"id":"NCBITaxon:429728","l":"Devosia crocina","na":1,"nb":1,"a":[["TED%3AAF-A0A1I7NJ57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I7NJ57-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A429728","Devosia crocina"]]},{"id":"NCBITaxon:430066","l":"","na":1,"nb":1,"a":[["Pfam%3APF07886","BA14K-like protein"]],"b":[["NCBITaxon%3A430066","Brucella abortus S19"]]},{"id":"NCBITaxon:430453","l":"Marinobacter segnicrescens","na":1,"nb":1,"a":[["TED%3AAF-A0A1I0D7N2-F1-model_v4_TED03","TED novel fold AF-A0A1I0D7N2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A430453","Marinobacter segnicrescens"]]},{"id":"NCBITaxon:431061","l":"Roseateles aquatilis","na":1,"nb":1,"a":[["TED%3AAF-A0A246JM08-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A246JM08-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A431061","Roseateles aquatilis"]]},{"id":"NCBITaxon:43262","l":"","na":1,"nb":1,"a":[["Pfam%3APF01338","Bacillus thuringiensis toxin"]],"b":[["NCBITaxon%3A43262","Bacillus thuringiensis serovar neoleonensis"]]},{"id":"NCBITaxon:433330","l":"Propioniciclava tarda","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q9KJ61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q9KJ61-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A433330","Propioniciclava tarda"]]},{"id":"NCBITaxon:434010","l":"Hydrogenophaga sp. PBL-H3","na":1,"nb":1,"a":[["TED%3AAF-A0A6P1IMA9-F1-model_v4_TED01","TED novel fold AF-A0A6P1IMA9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A434010","Hydrogenophaga sp. PBL-H3"]]},{"id":"NCBITaxon:43759","l":"Streptomyces wedmorensis","na":1,"nb":1,"a":[["Pfam%3APF04167","Protein of unknown function (DUF402)"]],"b":[["NCBITaxon%3A43759","Streptomyces wedmorensis"]]},{"id":"NCBITaxon:439495","l":"Pseudovibrio sp. JE062","na":1,"nb":1,"a":[["TED%3AAF-B6R9T4-F1-model_v4_TED01","TED highly-symmetric fold AF-B6R9T4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A439495","Pseudovibrio sp. JE062"]]},{"id":"NCBITaxon:439851","l":"","na":1,"nb":1,"a":[["Pfam%3APF25881","YBHG alpha-helical hairpin domain"]],"b":[["NCBITaxon%3A439851","Salmonella enterica subsp. enterica serovar Dublin str. CT_02021853"]]},{"id":"NCBITaxon:43989","l":"","na":1,"nb":1,"a":[["Pfam%3APF11844","Domain of unknown function (DUF3364)"]],"b":[["NCBITaxon%3A43989","Crocosphaera subtropica ATCC 51142"]]},{"id":"NCBITaxon:44056","l":"Aureococcus anophagefferens","na":1,"nb":1,"a":[["TED%3AAF-F0YA46-F1-model_v4_TED02","TED highly-symmetric fold AF-F0YA46-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A44056","Aureococcus anophagefferens"]]},{"id":"NCBITaxon:44058","l":"Aureoumbra lagunensis","na":1,"nb":1,"a":[["TED%3AAF-A0A7S3NFQ1-F1-model_v4_TED02","TED novel fold AF-A0A7S3NFQ1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A44058","Aureoumbra lagunensis"]]},{"id":"NCBITaxon:44093","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A642UWE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A642UWE6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A44093","Blastobotrys ciferrii"]]},{"id":"NCBITaxon:44161","l":"","na":1,"nb":1,"a":[["Pfam%3APF01338","Bacillus thuringiensis toxin"]],"b":[["NCBITaxon%3A44161","Bacillus thuringiensis serovar kyushuensis"]]},{"id":"NCBITaxon:441771","l":"","na":1,"nb":1,"a":[["Pfam%3APF05636","HIGH Nucleotidyl Transferase"]],"b":[["NCBITaxon%3A441771","Clostridium botulinum A str. Hall"]]},{"id":"NCBITaxon:442563","l":"","na":1,"nb":1,"a":[["Pfam%3APF27512","LeuD_N"]],"b":[["NCBITaxon%3A442563","Bifidobacterium animalis subsp. lactis AD011"]]},{"id":"NCBITaxon:443143","l":"","na":1,"nb":1,"a":[["TED%3AAF-E8WN43-F1-model_v4_TED01","TED novel fold AF-E8WN43-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A443143","Geobacter sp. M18"]]},{"id":"NCBITaxon:443612","l":"Flavobacterium resistens","na":1,"nb":1,"a":[["TED%3AAF-A0A521EE63-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521EE63-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A443612","Flavobacterium resistens"]]},{"id":"NCBITaxon:444177","l":"","na":1,"nb":1,"a":[["Pfam%3APF06335","Domain of unknown function (DUF1054)"]],"b":[["NCBITaxon%3A444177","Lysinibacillus sphaericus C3-41"]]},{"id":"NCBITaxon:444450","l":"","na":1,"nb":1,"a":[["Pfam%3APF10781","Dextransucrase DSRB"]],"b":[["NCBITaxon%3A444450","Escherichia coli O157:H7 str. EC4115"]]},{"id":"NCBITaxon:445629","l":"Cereibacter johrii","na":1,"nb":1,"a":[["TED%3AAF-A0A330H429-F1-model_v4_TED01","TED novel fold AF-A0A330H429-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A445629","Cereibacter johrii"]]},{"id":"NCBITaxon:445960","l":"Chryseobacterium jejuense","na":1,"nb":1,"a":[["TED%3AAF-A0A2X2WXH5-F1-model_v4_TED01","TED novel fold AF-A0A2X2WXH5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A445960","Chryseobacterium jejuense"]]},{"id":"NCBITaxon:446043","l":"uncultured Lachnospira sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A1C6H212-F1-model_v4_TED01","TED novel fold AF-A0A1C6H212-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A446043","uncultured Lachnospira sp."]]},{"id":"NCBITaxon:447217","l":"Anaeromyxobacter sp. K","na":1,"nb":1,"a":[["TED%3AAF-B4UAH6-F1-model_v4_TED03","TED highly-symmetric fold AF-B4UAH6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A447217","Anaeromyxobacter sp. K"]]},{"id":"NCBITaxon:447422","l":"Salegentibacter salinarum","na":1,"nb":1,"a":[["TED%3AAF-A0A2N0TVJ7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N0TVJ7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A447422","Salegentibacter salinarum"]]},{"id":"NCBITaxon:447425","l":"Halomonas nitroreducens","na":1,"nb":1,"a":[["TED%3AAF-A0A431V088-F1-model_v4_TED01","TED novel fold AF-A0A431V088-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A447425","Halomonas nitroreducens"]]},{"id":"NCBITaxon:447679","l":"Ekhidna lutea","na":1,"nb":1,"a":[["TED%3AAF-A0A239JFH6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A239JFH6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A447679","Ekhidna lutea"]]},{"id":"NCBITaxon:448386","l":"Gracilariopsis chorda","na":1,"nb":1,"a":[["TED%3AAF-A0A2V3IF53-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V3IF53-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A448386","Gracilariopsis chorda"]]},{"id":"NCBITaxon:450362","l":"Paenibacillus contaminans","na":1,"nb":1,"a":[["TED%3AAF-A0A329MCX9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A329MCX9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A450362","Paenibacillus contaminans"]]},{"id":"NCBITaxon:45066","l":"Legionella gratiana","na":1,"nb":1,"a":[["TED%3AAF-A0A378JE27-F1-model_v4_TED01","TED novel fold AF-A0A378JE27-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A45066","Legionella gratiana"]]},{"id":"NCBITaxon:451","l":"Legionella micdadei","na":1,"nb":1,"a":[["TED%3AAF-A0A098GE29-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A098GE29-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A451","Legionella micdadei"]]},{"id":"NCBITaxon:451672","l":"Fusarium oxysporum f. sp. narcissi","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q2UZ81-F1-model_v4_TED01","TED novel fold AF-A0A4Q2UZ81-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A451672","Fusarium oxysporum f. sp. narcissi"]]},{"id":"NCBITaxon:452471","l":"","na":1,"nb":1,"a":[["TED%3AAF-B3ERP3-F1-model_v4_TED02","TED novel fold AF-B3ERP3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A452471","Candidatus Amoebophilus asiaticus 5a2"]]},{"id":"NCBITaxon:453960","l":"Sulfobacillus benefaciens","na":1,"nb":1,"a":[["TED%3AAF-A0A2T2WWZ6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2T2WWZ6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A453960","Sulfobacillus benefaciens"]]},{"id":"NCBITaxon:454006","l":"Epilithonimonas hungarica","na":1,"nb":1,"a":[["TED%3AAF-A0A1G7J6K0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1G7J6K0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A454006","Epilithonimonas hungarica"]]},{"id":"NCBITaxon:454166","l":"","na":1,"nb":1,"a":[["Pfam%3APF18390","Glycogen debranching enzyme C-terminal domain"]],"b":[["NCBITaxon%3A454166","Salmonella enterica subsp. enterica serovar Agona str. SL483"]]},{"id":"NCBITaxon:454169","l":"","na":1,"nb":1,"a":[["Pfam%3APF04077","DsrH like protein"]],"b":[["NCBITaxon%3A454169","Salmonella enterica subsp. enterica serovar Heidelberg str. SL476"]]},{"id":"NCBITaxon:454194","l":"Pyrinomonas methylaliphatogenes","na":1,"nb":1,"a":[["TED%3AAF-A0A0B6X3G1-F1-model_v4_TED02","TED novel fold AF-A0A0B6X3G1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A454194","Pyrinomonas methylaliphatogenes"]]},{"id":"NCBITaxon:45496","l":"Methylophaga sulfidovorans","na":1,"nb":1,"a":[["TED%3AAF-A0A1I3YMM1-F1-model_v4_TED02","TED novel fold AF-A0A1I3YMM1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A45496","Methylophaga sulfidovorans"]]},{"id":"NCBITaxon:45657","l":"Desulfonema ishimotonii","na":1,"nb":1,"a":[["TED%3AAF-A0A401FRY7-F1-model_v4_TED01","TED novel fold AF-A0A401FRY7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A45657","Desulfonema ishimotonii"]]},{"id":"NCBITaxon:457389","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0J9FCL2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0J9FCL2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A457389","Bacteroides sp. 3_1_13"]]},{"id":"NCBITaxon:457404","l":"Fusobacterium ulcerans 12-1B","na":1,"nb":1,"a":[["TED%3AAF-H1PQJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-H1PQJ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A457404","Fusobacterium ulcerans 12-1B"]]},{"id":"NCBITaxon:457421","l":"","na":1,"nb":1,"a":[["TED%3AAF-C5EFI9-F1-model_v4_TED04","TED highly-symmetric fold AF-C5EFI9-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A457421","Clostridiales bacterium 1_7_47FAA"]]},{"id":"NCBITaxon:457944","l":"Nostoc sp. KVJ20","na":1,"nb":1,"a":[["TED%3AAF-A0A1E2WX87-F1-model_v4_TED01","TED novel fold AF-A0A1E2WX87-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A457944","Nostoc sp. KVJ20"]]},{"id":"NCBITaxon:458","l":"Legionella rubrilucens","na":1,"nb":1,"a":[["TED%3AAF-A0A0W0XMT7-F1-model_v4_TED01","TED novel fold AF-A0A0W0XMT7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A458","Legionella rubrilucens"]]},{"id":"NCBITaxon:458253","l":"uncultured Coprococcus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A1C5UAN5-F1-model_v4_TED01","TED novel fold AF-A0A1C5UAN5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A458253","uncultured Coprococcus sp."]]},{"id":"NCBITaxon:458836","l":"Paraburkholderia sediminicola","na":1,"nb":1,"a":[["TED%3AAF-A0A495FRK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A495FRK2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A458836","Paraburkholderia sediminicola"]]},{"id":"NCBITaxon:459349","l":"","na":1,"nb":1,"a":[["Pfam%3APF05853","beta-keto acid cleavage enzyme"]],"b":[["NCBITaxon%3A459349","Candidatus Cloacimonas acidaminivorans str. Evry"]]},{"id":"NCBITaxon:460384","l":"Enterocloster lavalensis","na":1,"nb":1,"a":[["TED%3AAF-A0A2T3FE96-F1-model_v4_TED03","TED novel fold AF-A0A2T3FE96-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A460384","Enterocloster lavalensis"]]},{"id":"NCBITaxon:460523","l":"Ogataea polymorpha","na":1,"nb":1,"a":[["TED%3AAF-A0A1B7SIZ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B7SIZ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A460523","Ogataea polymorpha"]]},{"id":"NCBITaxon:46177","l":"Nonomuraea pusilla","na":1,"nb":1,"a":[["TED%3AAF-A0A1H8E5B9-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1H8E5B9-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A46177","Nonomuraea pusilla"]]},{"id":"NCBITaxon:46224","l":"Heyndrickxia sporothermodurans","na":1,"nb":1,"a":[["TED%3AAF-A0A2T6EYG9-F1-model_v4_TED03","TED novel fold AF-A0A2T6EYG9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A46224","Heyndrickxia sporothermodurans"]]},{"id":"NCBITaxon:462991","l":"Vibrio hangzhouensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1H5YXU5-F1-model_v4_TED03","TED novel fold AF-A0A1H5YXU5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A462991","Vibrio hangzhouensis"]]},{"id":"NCBITaxon:463025","l":"Bordetella bronchialis","na":1,"nb":1,"a":[["TED%3AAF-A0A193FYS1-F1-model_v4_TED02","TED novel fold AF-A0A193FYS1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A463025","Bordetella bronchialis"]]},{"id":"NCBITaxon:463301","l":"Halomonas korlensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1I7FWW8-F1-model_v4_TED01","TED novel fold AF-A0A1I7FWW8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A463301","Halomonas korlensis"]]},{"id":"NCBITaxon:46472","l":"Aspergillus versicolor","na":1,"nb":1,"a":[["Pfam%3APF13810","Domain of unknown function (DUF4185)"]],"b":[["NCBITaxon%3A46472","Aspergillus versicolor"]]},{"id":"NCBITaxon:46540","l":"Thermococcus fumicolans","na":1,"nb":1,"a":[["Pfam%3APF14890","Intein splicing domain"]],"b":[["NCBITaxon%3A46540","Thermococcus fumicolans"]]},{"id":"NCBITaxon:466","l":"Legionella maceachernii","na":1,"nb":1,"a":[["TED%3AAF-A0A0W0WDW3-F1-model_v4_TED01","TED novel fold AF-A0A0W0WDW3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A466","Legionella maceachernii"]]},{"id":"NCBITaxon:466044","l":"Pannonibacter indicus","na":1,"nb":1,"a":[["TED%3AAF-A0A0K6HVN5-F1-model_v4_TED01","TED novel fold AF-A0A0K6HVN5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A466044","Pannonibacter indicus"]]},{"id":"NCBITaxon:469589","l":"","na":1,"nb":1,"a":[["TED%3AAF-D0TG01-F1-model_v4_TED05","TED novel fold AF-D0TG01-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A469589","Bacteroides sp. 2_1_33B"]]},{"id":"NCBITaxon:469590","l":"","na":1,"nb":1,"a":[["TED%3AAF-C3QRB2-F1-model_v4_TED04","TED novel fold AF-C3QRB2-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A469590","Bacteroides sp. 2_2_4"]]},{"id":"NCBITaxon:469610","l":"","na":1,"nb":1,"a":[["TED%3AAF-D9Y337-F1-model_v4_TED01","TED highly-symmetric fold AF-D9Y337-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A469610","Burkholderiales bacterium 1_1_47"]]},{"id":"NCBITaxon:469613","l":"","na":1,"nb":1,"a":[["TED%3AAF-S2LLY4-F1-model_v4_TED01","TED highly-symmetric fold AF-S2LLY4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A469613","Enterobacteriaceae bacterium 9_2_54FAA"]]},{"id":"NCBITaxon:469616","l":"Fusobacterium mortiferum ATCC 9817","na":1,"nb":1,"a":[["TED%3AAF-C3WAL7-F1-model_v4_TED02","TED novel fold AF-C3WAL7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A469616","Fusobacterium mortiferum ATCC 9817"]]},{"id":"NCBITaxon:469618","l":"Fusobacterium varium ATCC 27725","na":1,"nb":1,"a":[["TED%3AAF-C6JLM9-F1-model_v4_TED02","TED highly-symmetric fold AF-C6JLM9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A469618","Fusobacterium varium ATCC 27725"]]},{"id":"NCBITaxon:471514","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0N8PN50-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0N8PN50-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A471514","Paenalicyclobacillus ferrooxydans"]]},{"id":"NCBITaxon:471874","l":"Providencia stuartii ATCC 25827","na":1,"nb":1,"a":[["TED%3AAF-B2PZ49-F1-model_v4_TED02","TED novel fold AF-B2PZ49-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A471874","Providencia stuartii ATCC 25827"]]},{"id":"NCBITaxon:47429","l":"Armillaria mellea","na":1,"nb":1,"a":[["Pfam%3APF14521","Lysine-specific metallo-endopeptidase"]],"b":[["NCBITaxon%3A47429","Armillaria mellea"]]},{"id":"NCBITaxon:47492","l":"Xanthobacter agilis","na":1,"nb":1,"a":[["Pfam%3APF19878","Tannase-like family of unknown function (DUF6351)"]],"b":[["NCBITaxon%3A47492","Xanthobacter agilis"]]},{"id":"NCBITaxon:474949","l":"Granulicella aggregans","na":1,"nb":1,"a":[["TED%3AAF-A0A7W7ZBP1-F1-model_v4_TED02","TED novel fold AF-A0A7W7ZBP1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A474949","Granulicella aggregans"]]},{"id":"NCBITaxon:474950","l":"Granulicella pectinivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A1I6LYB5-F1-model_v4_TED03","TED novel fold AF-A0A1I6LYB5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A474950","Granulicella pectinivorans"]]},{"id":"NCBITaxon:475075","l":"Chryseobacterium phosphatilyticum","na":1,"nb":1,"a":[["TED%3AAF-A0A316XDC1-F1-model_v4_TED01","TED novel fold AF-A0A316XDC1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A475075","Chryseobacterium phosphatilyticum"]]},{"id":"NCBITaxon:475081","l":"Jannaschia seohaensis","na":1,"nb":1,"a":[["TED%3AAF-A0A2Y9C328-F1-model_v4_TED01","TED novel fold AF-A0A2Y9C328-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A475081","Jannaschia seohaensis"]]},{"id":"NCBITaxon:475083","l":"Roseovarius aestuarii","na":1,"nb":1,"a":[["TED%3AAF-A0A1X7BVA9-F1-model_v4_TED01","TED novel fold AF-A0A1X7BVA9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A475083","Roseovarius aestuarii"]]},{"id":"NCBITaxon:476282","l":"Bradyrhizobium japonicum SEMIA 5079","na":1,"nb":1,"a":[["TED%3AAF-A0A023XH60-F1-model_v4_TED01","TED novel fold AF-A0A023XH60-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A476282","Bradyrhizobium japonicum SEMIA 5079"]]},{"id":"NCBITaxon:47759","l":"Streptomyces tubercidicus","na":1,"nb":1,"a":[["TED%3AAF-A0A640UN74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A640UN74-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A47759","Streptomyces tubercidicus"]]},{"id":"NCBITaxon:477680","l":"Filimonas lacunae","na":1,"nb":1,"a":[["TED%3AAF-A0A173MBE7-F1-model_v4_TED01","TED novel fold AF-A0A173MBE7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A477680","Filimonas lacunae"]]},{"id":"NCBITaxon:4781","l":"Plasmopara halstedii","na":1,"nb":1,"a":[["TED%3AAF-A0A0P1AW30-F1-model_v4_TED01","TED novel fold AF-A0A0P1AW30-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A4781","Plasmopara halstedii"]]},{"id":"NCBITaxon:4784","l":"Phytophthora capsici","na":1,"nb":1,"a":[["Pfam%3APF00964","Elicitin"]],"b":[["NCBITaxon%3A4784","Phytophthora capsici"]]},{"id":"NCBITaxon:47864","l":"Micromonospora halophytica","na":1,"nb":1,"a":[["TED%3AAF-A0A1C5IAX2-F1-model_v4_TED03","TED novel fold AF-A0A1C5IAX2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A47864","Micromonospora halophytica"]]},{"id":"NCBITaxon:478820","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A196S5V8-F1-model_v4_TED01","TED novel fold AF-A0A196S5V8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A478820","Blastocystis sp. ATCC 50177/Nand II"]]},{"id":"NCBITaxon:479","l":"","na":1,"nb":1,"a":[["Pfam%3APF09208","Restriction endonuclease MspI"]],"b":[["NCBITaxon%3A479","Moraxella sp."]]},{"id":"NCBITaxon:47913","l":"Vibrio sp. (strain JT0107)","na":1,"nb":1,"a":[["Pfam%3APF17992","Agarase CBM like domain"]],"b":[["NCBITaxon%3A47913","Vibrio sp. JT0107"]]},{"id":"NCBITaxon:47915","l":"","na":1,"nb":1,"a":[["Pfam%3APF21994","AGAO-like N2 domain"]],"b":[["NCBITaxon%3A47915","Arthrobacter sp. P1"]]},{"id":"NCBITaxon:4795","l":"Phytophthora megakarya","na":1,"nb":1,"a":[["TED%3AAF-A0A225WIC4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A225WIC4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A4795","Phytophthora megakarya"]]},{"id":"NCBITaxon:479978","l":"Micromonospora tulbaghiae","na":1,"nb":1,"a":[["TED%3AAF-A0A1C4V387-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C4V387-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A479978","Micromonospora tulbaghiae"]]},{"id":"NCBITaxon:480284","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q9Y7Y8-F1-model_v4_TED04","TED novel fold AF-A0A0Q9Y7Y8-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A480284","Paracerasibacillus soli"]]},{"id":"NCBITaxon:482300","l":"Microcystis aeruginosa SPC777","na":1,"nb":1,"a":[["TED%3AAF-S3K851-F1-model_v4_TED01","TED novel fold AF-S3K851-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A482300","Microcystis aeruginosa SPC777"]]},{"id":"NCBITaxon:48254","l":"Torulaspora globosa","na":1,"nb":1,"a":[["TED%3AAF-A0A7G3ZGG5-F1-model_v4_TED01","TED novel fold AF-A0A7G3ZGG5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A48254","Torulaspora globosa"]]},{"id":"NCBITaxon:48256","l":"Ruminiclostridium hungatei","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4ST60-F1-model_v4_TED01","TED novel fold AF-A0A1V4ST60-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A48256","Ruminiclostridium hungatei"]]},{"id":"NCBITaxon:483139","l":"Cystoisospora suis","na":1,"nb":1,"a":[["TED%3AAF-A0A2C6K7H9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2C6K7H9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A483139","Cystoisospora suis"]]},{"id":"NCBITaxon:483218","l":"[Bacteroides] pectinophilus ATCC 43243","na":1,"nb":1,"a":[["TED%3AAF-B7ASX3-F1-model_v4_TED02","TED novel fold AF-B7ASX3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A483218","[Bacteroides] pectinophilus ATCC 43243"]]},{"id":"NCBITaxon:483219","l":"Myxococcus fulvus HW-1","na":1,"nb":1,"a":[["TED%3AAF-F8C8K4-F1-model_v4_TED01","TED highly-symmetric fold AF-F8C8K4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A483219","Myxococcus fulvus HW-1"]]},{"id":"NCBITaxon:483423","l":"Estrella lausannensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0H5DSD7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0H5DSD7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A483423","Estrella lausannensis"]]},{"id":"NCBITaxon:4839","l":"Rhizomucor miehei","na":1,"nb":1,"a":[["Pfam%3APF03639","Glycosyl hydrolase family 81 N-terminal domain"]],"b":[["NCBITaxon%3A4839","Rhizomucor miehei"]]},{"id":"NCBITaxon:4847","l":"Rhizopus oligosporus","na":1,"nb":1,"a":[["Pfam%3APF03427","Carbohydrate binding domain (family 19)"]],"b":[["NCBITaxon%3A4847","Rhizopus microsporus var. oligosporus"]]},{"id":"NCBITaxon:485447","l":"Thalassomonas actiniarum","na":1,"nb":1,"a":[["TED%3AAF-A0A0D8CU42-F1-model_v4_TED02","TED novel fold AF-A0A0D8CU42-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A485447","Thalassomonas actiniarum"]]},{"id":"NCBITaxon:485751","l":"Pseudomonas sp. LD120","na":1,"nb":1,"a":[["TED%3AAF-A0A7V8JCN8-F1-model_v4_TED01","TED novel fold AF-A0A7V8JCN8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A485751","Pseudomonas sp. LD120"]]},{"id":"NCBITaxon:486398","l":"Bacillus sp. S3","na":1,"nb":1,"a":[["TED%3AAF-A0A513RDB0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A513RDB0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A486398","Bacillus sp. S3"]]},{"id":"NCBITaxon:487214","l":"","na":1,"nb":1,"a":[["PROSITE%3APS01163","Galactose-1-phosphate uridyl transferase family 2 signature"]],"b":[["NCBITaxon%3A487214","Streptococcus pneumoniae Hungary19A-6"]]},{"id":"NCBITaxon:487796","l":"Flavobacteria bacterium MS024-2A","na":1,"nb":1,"a":[["TED%3AAF-C0BK38-F1-model_v4_TED02","TED novel fold AF-C0BK38-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A487796","Flavobacteria bacterium MS024-2A"]]},{"id":"NCBITaxon:487822","l":"Xanthomonas arboricola pv. fragariae","na":1,"nb":1,"a":[["TED%3AAF-A0A2N9D9Q3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N9D9Q3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A487822","Xanthomonas arboricola pv. fragariae"]]},{"id":"NCBITaxon:487851","l":"Xanthomonas arboricola pv. arracaciae","na":1,"nb":1,"a":[["TED%3AAF-A0A2S6ZHA0-F1-model_v4_TED01","TED novel fold AF-A0A2S6ZHA0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A487851","Xanthomonas arboricola pv. arracaciae"]]},{"id":"NCBITaxon:488223","l":"","na":1,"nb":1,"a":[["PROSITE%3APS01163","Galactose-1-phosphate uridyl transferase family 2 signature"]],"b":[["NCBITaxon%3A488223","Streptococcus pneumoniae P1031"]]},{"id":"NCBITaxon:488535","l":"Marinobacter zhejiangensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1I4LWZ8-F1-model_v4_TED01","TED novel fold AF-A0A1I4LWZ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A488535","Marinobacter zhejiangensis"]]},{"id":"NCBITaxon:488538","l":"","na":1,"nb":1,"a":[["TED%3AAF-D5BSL3-F1-model_v4_TED01","TED novel fold AF-D5BSL3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A488538","Candidatus Puniceispirillum marinum IMCC1322"]]},{"id":"NCBITaxon:489911","l":"Halarchaeum rubridurum","na":1,"nb":1,"a":[["TED%3AAF-A0A830G3U2-F1-model_v4_TED03","TED novel fold AF-A0A830G3U2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A489911","Halarchaeum rubridurum"]]},{"id":"NCBITaxon:489913","l":"Halarchaeum nitratireducens","na":1,"nb":1,"a":[["TED%3AAF-A0A830GC83-F1-model_v4_TED01","TED novel fold AF-A0A830GC83-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A489913","Halarchaeum nitratireducens"]]},{"id":"NCBITaxon:49012","l":"Sporisorium scitamineum","na":1,"nb":1,"a":[["TED%3AAF-A0A140KLW0-F1-model_v4_TED03","TED novel fold AF-A0A140KLW0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A49012","Sporisorium scitamineum"]]},{"id":"NCBITaxon:490622","l":"Trichoderma arundinaceum","na":1,"nb":1,"a":[["Pfam%3APF22701","Mal s 1 allergenic protein-like"]],"b":[["NCBITaxon%3A490622","Trichoderma arundinaceum"]]},{"id":"NCBITaxon:491207","l":"Chryseobacterium oleae","na":1,"nb":1,"a":[["TED%3AAF-A0A1I5BFN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5BFN6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A491207","Chryseobacterium oleae"]]},{"id":"NCBITaxon:4926","l":"Pichia membranifaciens","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q2YIR9-F1-model_v4_TED01","TED novel fold AF-A0A1Q2YIR9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A4926","Pichia membranifaciens"]]},{"id":"NCBITaxon:493375","l":"Halpernia humi","na":1,"nb":1,"a":[["TED%3AAF-A0A1H5T9H3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H5T9H3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A493375","Halpernia humi"]]},{"id":"NCBITaxon:4957","l":"Zygosaccharomyces bisporus","na":1,"nb":1,"a":[["Pfam%3APF05202","Recombinase Flp protein"]],"b":[["NCBITaxon%3A4957","Zygosaccharomyces bisporus"]]},{"id":"NCBITaxon:498718","l":"Slackia equolifaciens","na":1,"nb":1,"a":[["TED%3AAF-A0A3N0AU33-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3N0AU33-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A498718","Slackia equolifaciens"]]},{"id":"NCBITaxon:49899","l":"Thermococcus profundus","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z2MDJ6-F1-model_v4_TED01","TED novel fold AF-A0A2Z2MDJ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A49899","Thermococcus profundus"]]},{"id":"NCBITaxon:499207","l":"Syntrophaceticus schinkii","na":1,"nb":1,"a":[["TED%3AAF-A0A0B7MFK5-F1-model_v4_TED02","TED novel fold AF-A0A0B7MFK5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A499207","Syntrophaceticus schinkii"]]},{"id":"NCBITaxon:4999","l":"Kockovaella imperatae","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y1UDV0-F1-model_v4_TED02","TED novel fold AF-A0A1Y1UDV0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A4999","Kockovaella imperatae"]]},{"id":"NCBITaxon:500148","l":"Metarhizium brunneum","na":1,"nb":1,"a":[["TED%3AAF-A0A7D5YSS6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7D5YSS6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A500148","Metarhizium brunneum"]]},{"id":"NCBITaxon:5007","l":"Brettanomyces bruxellensis","na":1,"nb":1,"a":[["TED%3AAF-A0A7D9CWH5-F1-model_v4_TED01","TED novel fold AF-A0A7D9CWH5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5007","Brettanomyces bruxellensis"]]},{"id":"NCBITaxon:501024","l":"Rhizobium tibeticum","na":1,"nb":1,"a":[["TED%3AAF-A0A1H8TQT1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H8TQT1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A501024","Rhizobium tibeticum"]]},{"id":"NCBITaxon:501834","l":"Thalassospira sp. MCCC 1A01148","na":1,"nb":1,"a":[["TED%3AAF-A0A154LM58-F1-model_v4_TED01","TED novel fold AF-A0A154LM58-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A501834","Thalassospira sp. MCCC 1A01148"]]},{"id":"NCBITaxon:50340","l":"Pseudomonas fuscovaginae","na":1,"nb":1,"a":[["TED%3AAF-A0A0N0E536-F1-model_v4_TED03","TED novel fold AF-A0A0N0E536-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A53407","Pseudomonas asplenii"]]},{"id":"NCBITaxon:50376","l":"Venturia effusa","na":1,"nb":1,"a":[["TED%3AAF-A0A517L490-F1-model_v4_TED02","TED novel fold AF-A0A517L490-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A50376","Venturia effusa"]]},{"id":"NCBITaxon:504468","l":"Rhodovastum atsumiense","na":1,"nb":1,"a":[["TED%3AAF-A0A5M6IJ90-F1-model_v4_TED03","TED novel fold AF-A0A5M6IJ90-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A504468","Rhodovastum atsumiense"]]},{"id":"NCBITaxon:504487","l":"Jejuia pallidilutea","na":1,"nb":1,"a":[["TED%3AAF-A0A090W053-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A090W053-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A504487","Jejuia pallidilutea"]]},{"id":"NCBITaxon:505389","l":"Mesorhizobium sangaii","na":1,"nb":1,"a":[["TED%3AAF-A0A841PLH7-F1-model_v4_TED01","TED novel fold AF-A0A841PLH7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A505389","Mesorhizobium sangaii"]]},{"id":"NCBITaxon:5060","l":"Aspergillus giganteus","na":1,"nb":1,"a":[["Pfam%3APF11402","Antifungal protein"]],"b":[["NCBITaxon%3A5060","Aspergillus giganteus"]]},{"id":"NCBITaxon:50718","l":"Vibrio mytili","na":1,"nb":1,"a":[["TED%3AAF-A0A0C3DIF7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0C3DIF7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A50718","Vibrio mytili"]]},{"id":"NCBITaxon:5077","l":"Penicillium citrinum","na":1,"nb":1,"a":[["PROSITE%3APS00876","Indoleamine 2,3-dioxygenase signature 1"]],"b":[["NCBITaxon%3A5077","Penicillium citrinum"]]},{"id":"NCBITaxon:5082","l":"Penicillium roqueforti","na":1,"nb":1,"a":[["Pfam%3APF07573","Nitrogen regulatory protein AreA N terminus"]],"b":[["NCBITaxon%3A5082","Penicillium roqueforti"]]},{"id":"NCBITaxon:5083","l":"Penicillium canescens","na":1,"nb":1,"a":[["Pfam%3APF09206","Alpha-L-arabinofuranosidase B, catalytic"]],"b":[["NCBITaxon%3A5083","Penicillium canescens"]]},{"id":"NCBITaxon:508767","l":"Clostridium botulinum E3 str. Alaska E43","na":1,"nb":1,"a":[["Pfam%3APF04029","2-phosphosulpholactate phosphatase"]],"b":[["NCBITaxon%3A508767","Clostridium botulinum E3 str. Alaska E43"]]},{"id":"NCBITaxon:509200","l":"Sphaerisporangium album","na":1,"nb":1,"a":[["TED%3AAF-A0A367FKB5-F1-model_v4_TED01","TED novel fold AF-A0A367FKB5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A509200","Sphaerisporangium album"]]},{"id":"NCBITaxon:510947","l":"Lacibacter cauensis","na":1,"nb":1,"a":[["TED%3AAF-A0A562S975-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A562S975-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A510947","Lacibacter cauensis"]]},{"id":"NCBITaxon:5127","l":"Fusarium fujikuroi","na":1,"nb":1,"a":[["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"]],"b":[["NCBITaxon%3A5127","Fusarium fujikuroi"]]},{"id":"NCBITaxon:515350","l":"Micromonospora endophytica","na":1,"nb":1,"a":[["TED%3AAF-A0A2W2D5L3-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2W2D5L3-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A515350","Micromonospora endophytica"]]},{"id":"NCBITaxon:515499","l":"Bradyrhizobium rifense","na":1,"nb":1,"a":[["TED%3AAF-A0A5D3KCZ7-F1-model_v4_TED03","TED novel fold AF-A0A5D3KCZ7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A515499","Bradyrhizobium rifense"]]},{"id":"NCBITaxon:515897","l":"Pontibaca methylaminivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A1R3WBU9-F1-model_v4_TED02","TED novel fold AF-A0A1R3WBU9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A515897","Pontibaca methylaminivorans"]]},{"id":"NCBITaxon:517720","l":"Stakelama pacifica","na":1,"nb":1,"a":[["TED%3AAF-A0A4R6FNF8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4R6FNF8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A517720","Stakelama pacifica"]]},{"id":"NCBITaxon:518882","l":"","na":1,"nb":1,"a":[["Pfam%3APF14031","Putative serine dehydratase domain"]],"b":[["NCBITaxon%3A518882","Delftia sp. HT23"]]},{"id":"NCBITaxon:519450","l":"Mycoplasma anserisalpingitidis","na":1,"nb":1,"a":[["TED%3AAF-A0A5B8J7N5-F1-model_v4_TED01","TED novel fold AF-A0A5B8J7N5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A519450","Mycoplasma anserisalpingitidis"]]},{"id":"NCBITaxon:525244","l":"","na":1,"nb":1,"a":[["Pfam%3APF14130","Cap4, dsDNA endonuclease domain"]],"b":[["NCBITaxon%3A525244","Acinetobacter sp. ATCC 27244"]]},{"id":"NCBITaxon:525283","l":"","na":1,"nb":1,"a":[["Pfam%3APF26317","Histidine racemase CntK N-terminal domain"]],"b":[["NCBITaxon%3A525283","Fusobacterium nucleatum subsp. nucleatum ATCC 23726"]]},{"id":"NCBITaxon:52560","l":"Desulfomicrobium apsheronum","na":1,"nb":1,"a":[["TED%3AAF-A0A1I3Z6Q6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1I3Z6Q6-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A52560","Desulfomicrobium apsheronum"]]},{"id":"NCBITaxon:52697","l":"Actinoplanes regularis","na":1,"nb":1,"a":[["TED%3AAF-A0A238WLZ3-F1-model_v4_TED01","TED novel fold AF-A0A238WLZ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A52697","Actinoplanes regularis"]]},{"id":"NCBITaxon:52771","l":"Actinomyces howellii","na":1,"nb":1,"a":[["TED%3AAF-A0A3S4R0T4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S4R0T4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A52771","Actinomyces howellii"]]},{"id":"NCBITaxon:528191","l":"Paenibacillus xylanexedens","na":1,"nb":1,"a":[["TED%3AAF-A0A3N6BL17-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N6BL17-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A528191","Paenibacillus xylanexedens"]]},{"id":"NCBITaxon:5288","l":"Rhodotorula diobovata","na":1,"nb":1,"a":[["TED%3AAF-A0A5C5FQ86-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A5C5FQ86-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A5288","Rhodotorula diobovata"]]},{"id":"NCBITaxon:5315","l":"Ganoderma lucidum","na":1,"nb":1,"a":[["Pfam%3APF09259","Fungal immunomodulatory protein Fve"]],"b":[["NCBITaxon%3A5315","Ganoderma lucidum"]]},{"id":"NCBITaxon:53367","l":"Asanoa ferruginea","na":1,"nb":1,"a":[["TED%3AAF-A0A3D9ZYT7-F1-model_v4_TED02","TED novel fold AF-A0A3D9ZYT7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A53367","Asanoa ferruginea"]]},{"id":"NCBITaxon:53463","l":"Paracoccus solventivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A1M7DMW2-F1-model_v4_TED03","TED novel fold AF-A0A1M7DMW2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A53463","Paracoccus solventivorans"]]},{"id":"NCBITaxon:537601","l":"Mesorhizobium intechi","na":1,"nb":1,"a":[["TED%3AAF-A0A2N7S8D1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N7S8D1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A537601","Mesorhizobium intechi"]]},{"id":"NCBITaxon:54262","l":"Thermococcus chitonophagus","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z2NBK5-F1-model_v4_TED02","TED novel fold AF-A0A2Z2NBK5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A54262","Thermococcus chitonophagus"]]},{"id":"NCBITaxon:542832","l":"Peronospora effusa","na":1,"nb":1,"a":[["TED%3AAF-A0A3M6VIX8-F1-model_v4_TED01","TED novel fold AF-A0A3M6VIX8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A542832","Peronospora effusa"]]},{"id":"NCBITaxon:543527","l":"Saccharothrix variisporea","na":1,"nb":1,"a":[["TED%3AAF-A0A495X541-F1-model_v4_TED02","TED novel fold AF-A0A495X541-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A543527","Saccharothrix variisporea"]]},{"id":"NCBITaxon:543913","l":"beta proteobacterium CB","na":1,"nb":1,"a":[["TED%3AAF-M1T4B9-F1-model_v4_TED01","TED novel fold AF-M1T4B9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A543913","beta proteobacterium CB"]]},{"id":"NCBITaxon:54398","l":"endosymbiont of Ridgeia piscesae","na":1,"nb":1,"a":[["TED%3AAF-A0A0T5YXI7-F1-model_v4_TED03","TED novel fold AF-A0A0T5YXI7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A54398","endosymbiont of Ridgeia piscesae"]]},{"id":"NCBITaxon:544404","l":"","na":1,"nb":1,"a":[["Pfam%3APF04806","EspF protein repeat"]],"b":[["NCBITaxon%3A544404","Escherichia coli O157:H7 str. TW14359"]]},{"id":"NCBITaxon:544406","l":"Helicobacter pylori B128","na":1,"nb":1,"a":[["PROSITE%3APS01292","Uncharacterized protein family UPF0036 signature"]],"b":[["NCBITaxon%3A544406","Helicobacter pylori B128"]]},{"id":"NCBITaxon:544938","l":"Methylocystis sp. B8","na":1,"nb":1,"a":[["TED%3AAF-A0A5R8QP52-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5R8QP52-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A544938","Methylocystis sp. B8"]]},{"id":"NCBITaxon:547162","l":"Micromonospora sediminimaris","na":1,"nb":1,"a":[["TED%3AAF-A0A1I1G4E3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I1G4E3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A547162","Micromonospora sediminimaris"]]},{"id":"NCBITaxon:547163","l":"Mycolicibacterium vulneris","na":1,"nb":1,"a":[["TED%3AAF-A0A853MGU5-F1-model_v4_TED01","TED novel fold AF-A0A853MGU5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A547163","Mycolicibacterium vulneris"]]},{"id":"NCBITaxon:5486","l":"Candida viswanathii","na":1,"nb":1,"a":[["TED%3AAF-A0A367YI34-F1-model_v4_TED02","TED novel fold AF-A0A367YI34-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A5486","Candida viswanathii"]]},{"id":"NCBITaxon:54915","l":"Brevibacillus reuszeri","na":1,"nb":1,"a":[["TED%3AAF-A0A0K9Z0U4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0K9Z0U4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A54915","Brevibacillus reuszeri"]]},{"id":"NCBITaxon:550537","l":"","na":1,"nb":1,"a":[["Pfam%3APF04077","DsrH like protein"]],"b":[["NCBITaxon%3A550537","Salmonella enterica subsp. enterica serovar Enteritidis str. P125109"]]},{"id":"NCBITaxon:550538","l":"","na":1,"nb":1,"a":[["Pfam%3APF08254","Threonine leader peptide"]],"b":[["NCBITaxon%3A550538","Salmonella enterica subsp. enterica serovar Gallinarum str. 287/91"]]},{"id":"NCBITaxon:5516","l":"Fusarium culmorum","na":1,"nb":1,"a":[["TED%3AAF-A0A2T4GUL3-F1-model_v4_TED01","TED novel fold AF-A0A2T4GUL3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5516","Fusarium culmorum"]]},{"id":"NCBITaxon:55194","l":"Malassezia furfur","na":1,"nb":1,"a":[["Pfam%3APF22701","Mal s 1 allergenic protein-like"]],"b":[["NCBITaxon%3A55194","Malassezia furfur"]]},{"id":"NCBITaxon:551947","l":"Bradyrhizobium sp. STM 3843","na":1,"nb":1,"a":[["TED%3AAF-H0TVQ1-F1-model_v4_TED01","TED novel fold AF-H0TVQ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A551947","Bradyrhizobium sp. STM 3843"]]},{"id":"NCBITaxon:551991","l":"Arachidicoccus rhizosphaerae","na":1,"nb":1,"a":[["TED%3AAF-A0A1H4B9Q5-F1-model_v4_TED02","TED novel fold AF-A0A1H4B9Q5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A551991","Arachidicoccus rhizosphaerae"]]},{"id":"NCBITaxon:551995","l":"Mucilaginibacter gossypiicola","na":1,"nb":1,"a":[["TED%3AAF-A0A1H8PN00-F1-model_v4_TED02","TED novel fold AF-A0A1H8PN00-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A551995","Mucilaginibacter gossypiicola"]]},{"id":"NCBITaxon:552546","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A6I1E2H7-F1-model_v4_TED01","TED novel fold AF-A0A6I1E2H7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A552546","Flagellimonas olearia"]]},{"id":"NCBITaxon:553427","l":"Heliorestis acidaminivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A6I0F388-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6I0F388-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A553427","Heliorestis acidaminivorans"]]},{"id":"NCBITaxon:553480","l":"Photorhabdus asymbiotica subsp. asymbiotica ATCC 43949","na":1,"nb":1,"a":[["Pfam%3APF06804","Outer membrane protein assembly factor BamC-like C-terminal domain"]],"b":[["NCBITaxon%3A553480","Photorhabdus asymbiotica subsp. asymbiotica ATCC 43949"]]},{"id":"NCBITaxon:553483","l":"","na":1,"nb":1,"a":[["Pfam%3APF04260","Protein of unknown function (DUF436)"]],"b":[["NCBITaxon%3A553483","Streptococcus equi subsp. zooepidemicus H70"]]},{"id":"NCBITaxon:554290","l":"Salmonella enterica subsp. enterica serovar Paratyphi A str. AKU_12601","na":1,"nb":1,"a":[["Pfam%3APF08254","Threonine leader peptide"]],"b":[["NCBITaxon%3A554290","Salmonella enterica subsp. enterica serovar Paratyphi A str. AKU_12601"]]},{"id":"NCBITaxon:5547","l":"Trichoderma viride","na":1,"nb":1,"a":[["Pfam%3APF14587","O-Glycosyl hydrolase family 30"]],"b":[["NCBITaxon%3A5547","Trichoderma viride"]]},{"id":"NCBITaxon:555059","l":"Streptomyces sedi","na":1,"nb":1,"a":[["TED%3AAF-A0A5C4V2V8-F1-model_v4_TED04","TED novel fold AF-A0A5C4V2V8-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A555059","Streptomyces sedi"]]},{"id":"NCBITaxon:55603","l":"Mycoplasmopsis caviae","na":1,"nb":1,"a":[["TED%3AAF-A0A3P8KC62-F1-model_v4_TED02","TED novel fold AF-A0A3P8KC62-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A55603","Mycoplasmopsis caviae"]]},{"id":"NCBITaxon:557598","l":"","na":1,"nb":1,"a":[["Pfam%3APF06299","Protein of unknown function (DUF1045)"]],"b":[["NCBITaxon%3A557598","Laribacter hongkongensis HLHK9"]]},{"id":"NCBITaxon:559304","l":"","na":1,"nb":1,"a":[["TED%3AAF-G8Y330-F1-model_v4_TED01","TED novel fold AF-G8Y330-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A559304","Millerozyma farinosa CBS 7064"]]},{"id":"NCBITaxon:5599","l":"Alternaria alternata","na":1,"nb":1,"a":[["Pfam%3APF16541","Alternaria alternata allergen 1"]],"b":[["NCBITaxon%3A5599","Alternaria alternata"]]},{"id":"NCBITaxon:561061","l":"Sphingobacterium psychroaquaticum","na":1,"nb":1,"a":[["TED%3AAF-A0A1X7IBM3-F1-model_v4_TED01","TED novel fold AF-A0A1X7IBM3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A561061","Sphingobacterium psychroaquaticum"]]},{"id":"NCBITaxon:56110","l":"","na":1,"nb":1,"a":[["TED%3AAF-K9TG07-F1-model_v4_TED01","TED highly-symmetric fold AF-K9TG07-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A56110","Oxynema acuminatum PCC 6304"]]},{"id":"NCBITaxon:561176","l":"Jiangella alba","na":1,"nb":1,"a":[["TED%3AAF-A0A1H5PL15-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H5PL15-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A561176","Jiangella alba"]]},{"id":"NCBITaxon:56187","l":"Coprinus comatus","na":1,"nb":1,"a":[["Pfam%3APF22803","Glycan binding domain Y3"]],"b":[["NCBITaxon%3A56187","Coprinus comatus"]]},{"id":"NCBITaxon:563008","l":"Segatella oris C735","na":1,"nb":1,"a":[["TED%3AAF-D7NFV4-F1-model_v4_TED01","TED novel fold AF-D7NFV4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A563008","Segatella oris C735"]]},{"id":"NCBITaxon:563041","l":"","na":1,"nb":1,"a":[["PROSITE%3APS01321","Crossover junction endodeoxyribonuclease ruvC signature"]],"b":[["NCBITaxon%3A563041","Helicobacter pylori G27"]]},{"id":"NCBITaxon:563466","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A084GCE4-F1-model_v4_TED01","TED novel fold AF-A0A084GCE4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A563466","Scedosporium apiospermum"]]},{"id":"NCBITaxon:563735","l":"Gracilibacillus thailandensis","na":1,"nb":1,"a":[["TED%3AAF-A0A6N7QZ32-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N7QZ32-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A563735","Gracilibacillus thailandensis"]]},{"id":"NCBITaxon:5643","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A060SBT3-F1-model_v4_TED01","TED novel fold AF-A0A060SBT3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5643","Trametes cinnabarina"]]},{"id":"NCBITaxon:564710","l":"Vagococcus acidifermentans","na":1,"nb":1,"a":[["TED%3AAF-A0A430ARH8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A430ARH8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A564710","Vagococcus acidifermentans"]]},{"id":"NCBITaxon:565034","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A3B6VDR6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B6VDR6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A565034","Brachyspira hyodysenteriae WA1"]]},{"id":"NCBITaxon:565419","l":"Coleophoma crateriformis","na":1,"nb":1,"a":[["TED%3AAF-A0A3D8RJP7-F1-model_v4_TED02","TED novel fold AF-A0A3D8RJP7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A565419","Coleophoma crateriformis"]]},{"id":"NCBITaxon:565575","l":"","na":1,"nb":1,"a":[["Pfam%3APF28494","Glycyl-tRNA synthetase insertion domain 1"]],"b":[["NCBITaxon%3A565575","Ureaplasma urealyticum serovar 10 str. ATCC 33699"]]},{"id":"NCBITaxon:565655","l":"Enterococcus casseliflavus EC20","na":1,"nb":1,"a":[["TED%3AAF-C9A7V8-F1-model_v4_TED02","TED highly-symmetric fold AF-C9A7V8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A565655","Enterococcus casseliflavus EC20"]]},{"id":"NCBITaxon:566037","l":"","na":1,"nb":1,"a":[["TED%3AAF-R9XFX7-F1-model_v4_TED02","TED highly-symmetric fold AF-R9XFX7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A566037","[Ashbya] aceris (nom. inval.)"]]},{"id":"NCBITaxon:568783","l":"Herbaspirillum aquaticum","na":1,"nb":1,"a":[["TED%3AAF-A0A225SUW3-F1-model_v4_TED01","TED novel fold AF-A0A225SUW3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A568783","Herbaspirillum aquaticum"]]},{"id":"NCBITaxon:568872","l":"Micromonospora rhizosphaerae","na":1,"nb":1,"a":[["TED%3AAF-A0A1C6SY29-F1-model_v4_TED01","TED novel fold AF-A0A1C6SY29-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A568872","Micromonospora rhizosphaerae"]]},{"id":"NCBITaxon:569860","l":"Methylovirgula ligni","na":1,"nb":1,"a":[["TED%3AAF-A0A3D9Z4S9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D9Z4S9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A569860","Methylovirgula ligni"]]},{"id":"NCBITaxon:57028","l":"Algoriphagus ratkowskyi","na":1,"nb":1,"a":[["TED%3AAF-A0A2W7R4D4-F1-model_v4_TED01","TED novel fold AF-A0A2W7R4D4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A57028","Algoriphagus ratkowskyi"]]},{"id":"NCBITaxon:57032","l":"Polaribacter sp. IC066","na":1,"nb":1,"a":[["TED%3AAF-A0A5C6YBD0-F1-model_v4_TED03","TED novel fold AF-A0A5C6YBD0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A57032","Polaribacter sp. IC066"]]},{"id":"NCBITaxon:570508","l":"","na":1,"nb":1,"a":[["Pfam%3APF10788","Protein of unknown function (DUF2603)"]],"b":[["NCBITaxon%3A570508","Helicobacter pylori P12"]]},{"id":"NCBITaxon:570521","l":"Aquimarina spongiae","na":1,"nb":1,"a":[["TED%3AAF-A0A1M6JPL6-F1-model_v4_TED01","TED novel fold AF-A0A1M6JPL6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A570521","Aquimarina spongiae"]]},{"id":"NCBITaxon:571913","l":"Luteipulveratus mongoliensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0K1JRD2-F1-model_v4_TED02","TED novel fold AF-A0A0K1JRD2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A571913","Luteipulveratus mongoliensis"]]},{"id":"NCBITaxon:571915","l":"Corynebacterium mustelae","na":1,"nb":1,"a":[["TED%3AAF-A0A0G3GWZ2-F1-model_v4_TED02","TED novel fold AF-A0A0G3GWZ2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A571915","Corynebacterium mustelae"]]},{"id":"NCBITaxon:573321","l":"Chitinophaga rupis","na":1,"nb":1,"a":[["TED%3AAF-A0A1H7XSZ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H7XSZ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A573321","Chitinophaga rupis"]]},{"id":"NCBITaxon:573497","l":"Parafrankia colletiae","na":1,"nb":1,"a":[["TED%3AAF-A0A1S1QVH9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S1QVH9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A573497","Parafrankia colletiae"]]},{"id":"NCBITaxon:573737","l":"Pandoraea oxalativorans","na":1,"nb":1,"a":[["TED%3AAF-A0A0G3IC85-F1-model_v4_TED03","TED novel fold AF-A0A0G3IC85-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A573737","Pandoraea oxalativorans"]]},{"id":"NCBITaxon:573841","l":"Sordaria araneosa","na":1,"nb":1,"a":[["Pfam%3APF26335","Beta-lactamase-like ARB_00930-like, C-terminal domain"]],"b":[["NCBITaxon%3A573841","Sordaria araneosa"]]},{"id":"NCBITaxon:574093","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A806DTH4-F1-model_v4_TED01","TED novel fold AF-A0A806DTH4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A574093","Streptococcus pneumoniae AP200"]]},{"id":"NCBITaxon:574651","l":"Nocardioides terrae","na":1,"nb":1,"a":[["TED%3AAF-A0A1I1JAV8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I1JAV8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A574651","Nocardioides terrae"]]},{"id":"NCBITaxon:575615","l":"Prevotella sp. oral taxon 317 str. F0108","na":1,"nb":1,"a":[["TED%3AAF-D3IIH2-F1-model_v4_TED02","TED highly-symmetric fold AF-D3IIH2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A575615","Prevotella sp. oral taxon 317 str. F0108"]]},{"id":"NCBITaxon:576137","l":"Phialocephala subalpina","na":1,"nb":1,"a":[["TED%3AAF-A0A1L7XVQ2-F1-model_v4_TED02","TED novel fold AF-A0A1L7XVQ2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A576137","Phialocephala subalpina"]]},{"id":"NCBITaxon:577680","l":"Prauserella sediminis","na":1,"nb":1,"a":[["TED%3AAF-A0A839XRH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A839XRH3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A577680","Prauserella sediminis"]]},{"id":"NCBITaxon:578113","l":"Cytospora mali","na":1,"nb":1,"a":[["Pfam%3APF20684","Fungal rhodopsin domain"]],"b":[["NCBITaxon%3A578113","Cytospora mali"]]},{"id":"NCBITaxon:578454","l":"","na":1,"nb":1,"a":[["TED%3AAF-G8BAN6-F1-model_v4_TED01","TED novel fold AF-G8BAN6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A578454","Lodderomyces parapsilosis CDC317"]]},{"id":"NCBITaxon:578942","l":"Dokdonella immobilis","na":1,"nb":1,"a":[["TED%3AAF-A0A1I5BC07-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5BC07-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A578942","Dokdonella immobilis"]]},{"id":"NCBITaxon:5804","l":"Eimeria maxima","na":1,"nb":1,"a":[["TED%3AAF-U6M890-F1-model_v4_TED01","TED novel fold AF-U6M890-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5804","Eimeria maxima"]]},{"id":"NCBITaxon:5807","l":"Cryptosporidium parvum","na":1,"nb":1,"a":[["TED%3AAF-P90625-F1-model_v4_TED02","TED highly-symmetric fold AF-P90625-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A5807","Cryptosporidium parvum"]]},{"id":"NCBITaxon:581036","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A327Y0R2-F1-model_v4_TED01","TED novel fold AF-A0A327Y0R2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A581036","Paranoxybacillus vitaminiphilus"]]},{"id":"NCBITaxon:582672","l":"Methylobacterium phyllostachyos","na":1,"nb":1,"a":[["TED%3AAF-A0A1H0LP97-F1-model_v4_TED01","TED novel fold AF-A0A1H0LP97-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A582672","Methylobacterium phyllostachyos"]]},{"id":"NCBITaxon:582686","l":"Paenibacillus methanolicus","na":1,"nb":1,"a":[["TED%3AAF-A0A5S5C8J4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5S5C8J4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A582686","Paenibacillus methanolicus"]]},{"id":"NCBITaxon:5843","l":"","na":1,"nb":1,"a":[["Pfam%3APF09716","Malarial early transcribed membrane protein (ETRAMP)"]],"b":[["NCBITaxon%3A5843","Plasmodium falciparum NF54"]]},{"id":"NCBITaxon:585055","l":"","na":1,"nb":1,"a":[["Pfam%3APF08364","Bacterial translation initiation factor IF-2 associated region"]],"b":[["NCBITaxon%3A585055","Escherichia coli 55989"]]},{"id":"NCBITaxon:5851","l":"Plasmodium knowlesi strain H","na":1,"nb":1,"a":[["TED%3AAF-A0A6H5FUY2-F1-model_v4_TED01","TED novel fold AF-A0A6H5FUY2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5851","Plasmodium knowlesi strain H"]]},{"id":"NCBITaxon:585425","l":"Synechococcus sp. KORDI-52","na":1,"nb":1,"a":[["TED%3AAF-A0A076HJJ9-F1-model_v4_TED03","TED novel fold AF-A0A076HJJ9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A585425","Synechococcus sp. KORDI-52"]]},{"id":"NCBITaxon:585455","l":"Thiohalobacter thiocyanaticus","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z4VP45-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z4VP45-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A585455","Thiohalobacter thiocyanaticus"]]},{"id":"NCBITaxon:5858","l":"Plasmodium malariae","na":1,"nb":1,"a":[["TED%3AAF-A0A1C3L2T8-F1-model_v4_TED01","TED novel fold AF-A0A1C3L2T8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5858","Plasmodium malariae"]]},{"id":"NCBITaxon:5865","l":"Babesia bovis","na":1,"nb":1,"a":[["TED%3AAF-A7AUJ7-F1-model_v4_TED01","TED novel fold AF-A7AUJ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5865","Babesia bovis"]]},{"id":"NCBITaxon:5866","l":"Babesia bigemina","na":1,"nb":1,"a":[["TED%3AAF-A0A061D3T3-F1-model_v4_TED01","TED novel fold AF-A0A061D3T3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5866","Babesia bigemina"]]},{"id":"NCBITaxon:5874","l":"Theileria annulata","na":1,"nb":1,"a":[["Pfam%3APF04385","Domain of unknown function, DUF529"]],"b":[["NCBITaxon%3A353154","Theileria annulata strain Ankara"]]},{"id":"NCBITaxon:5875","l":"Theileria parva","na":1,"nb":1,"a":[["TED%3AAF-Q4N7W8-F1-model_v4_TED01","TED novel fold AF-Q4N7W8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A333668","Theileria parva strain Muguga"]]},{"id":"NCBITaxon:587635","l":"Pseudoclavibacter chungangensis","na":1,"nb":1,"a":[["TED%3AAF-A0A7J5BNR9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7J5BNR9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A587635","Pseudoclavibacter chungangensis"]]},{"id":"NCBITaxon:587909","l":"Amycolatopsis arida","na":1,"nb":1,"a":[["TED%3AAF-A0A1I5ZJ74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5ZJ74-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A587909","Amycolatopsis arida"]]},{"id":"NCBITaxon:5885","l":"Paramecium caudatum","na":1,"nb":1,"a":[["PROSITE%3APS01213","Protozoan/cyanobacterial globins signature"]],"b":[["NCBITaxon%3A5885","Paramecium caudatum"]]},{"id":"NCBITaxon:58853","l":"Trichoderma citrinoviride","na":1,"nb":1,"a":[["TED%3AAF-A0A2T4BGG3-F1-model_v4_TED03","TED novel fold AF-A0A2T4BGG3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A58853","Trichoderma citrinoviride"]]},{"id":"NCBITaxon:588602","l":"Celeribacter neptunius","na":1,"nb":1,"a":[["TED%3AAF-A0A1I3LCJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I3LCJ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A588602","Celeribacter neptunius"]]},{"id":"NCBITaxon:589162","l":"Gordonia crocea","na":1,"nb":1,"a":[["TED%3AAF-A0A7M3SUN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7M3SUN3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A589162","Gordonia crocea"]]},{"id":"NCBITaxon:591153","l":"","na":1,"nb":1,"a":[["Pfam%3APF26324","Type III secretion system effector HopBF1 kinase domain"]],"b":[["NCBITaxon%3A591153","Pseudomonas syringae pv. syringae FF5"]]},{"id":"NCBITaxon:592021","l":"","na":1,"nb":1,"a":[["Pfam%3APF10087","Uncharacterized protein conserved in bacteria (DUF2325)"]],"b":[["NCBITaxon%3A592021","Bacillus anthracis str. A0248"]]},{"id":"NCBITaxon:595453","l":"Rhodopirellula sp. SM50","na":1,"nb":1,"a":[["TED%3AAF-A0A2A2WGR6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A2WGR6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A595453","Rhodopirellula sp. SM50"]]},{"id":"NCBITaxon:595496","l":"","na":1,"nb":1,"a":[["PROSITE%3APS01277","Ribonuclease PH signature"]],"b":[["NCBITaxon%3A595496","Escherichia coli BW2952"]]},{"id":"NCBITaxon:595589","l":"Hasllibacter halocynthiae","na":1,"nb":1,"a":[["TED%3AAF-A0A2T0X9U6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T0X9U6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A595589","Hasllibacter halocynthiae"]]},{"id":"NCBITaxon:595692","l":"Haloferula luteola","na":1,"nb":1,"a":[["TED%3AAF-A0A840V5I4-F1-model_v4_TED01","TED novel fold AF-A0A840V5I4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A595692","Haloferula luteola"]]},{"id":"NCBITaxon:59602","l":"Gelidibacter gilvus","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q0XFJ8-F1-model_v4_TED02","TED novel fold AF-A0A4Q0XFJ8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A59602","Gelidibacter gilvus"]]},{"id":"NCBITaxon:596324","l":"Treponema vincentii ATCC 35580","na":1,"nb":1,"a":[["TED%3AAF-C8PMR0-F1-model_v4_TED02","TED novel fold AF-C8PMR0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A596324","Treponema vincentii ATCC 35580"]]},{"id":"NCBITaxon:596328","l":"Mobiluncus mulieris 28-1","na":1,"nb":1,"a":[["TED%3AAF-D0YQ80-F1-model_v4_TED02","TED novel fold AF-D0YQ80-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A596328","Mobiluncus mulieris 28-1"]]},{"id":"NCBITaxon:597","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A736ZWD6-F1-model_v4_TED02","TED novel fold AF-A0A736ZWD6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A597","Salmonella enterica subsp. enterica serovar Potsdam"]]},{"id":"NCBITaxon:59813","l":"Mycolicibacterium novocastrense","na":1,"nb":1,"a":[["TED%3AAF-A0A100X5D1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A100X5D1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A59813","Mycolicibacterium novocastrense"]]},{"id":"NCBITaxon:598644","l":"Labedaea rhizosphaerae","na":1,"nb":1,"a":[["TED%3AAF-A0A4R6SQG8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4R6SQG8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A598644","Labedaea rhizosphaerae"]]},{"id":"NCBITaxon:599","l":"","na":1,"nb":1,"a":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"]],"b":[["NCBITaxon%3A599","Salmonella sp."]]},{"id":"NCBITaxon:59918","l":"","na":1,"nb":1,"a":[["Pfam%3APF10778","Halocarboxylic acid dehydrogenase DehI"]],"b":[["NCBITaxon%3A59918","Pseudomonas sp. 113"]]},{"id":"NCBITaxon:60172","l":"Penicillium solitum","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6R6Y6-F1-model_v4_TED01","TED novel fold AF-A0A1V6R6Y6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A60172","Penicillium solitum"]]},{"id":"NCBITaxon:604330","l":"Parafannyhessea umbonata","na":1,"nb":1,"a":[["TED%3AAF-A0A6N7XAR1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N7XAR1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A604330","Parafannyhessea umbonata"]]},{"id":"NCBITaxon:60450","l":"Kribbella sandramycini","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y4L2B6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4L2B6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A60450","Kribbella sandramycini"]]},{"id":"NCBITaxon:607","l":"","na":1,"nb":1,"a":[["Pfam%3APF03614","Repressor of phase-1 flagellin"]],"b":[["NCBITaxon%3A607","Salmonella enterica subsp. enterica serovar Abortusequi"]]},{"id":"NCBITaxon:61186","l":"Monilinia laxa","na":1,"nb":1,"a":[["TED%3AAF-A0A5N6KDD7-F1-model_v4_TED01","TED novel fold AF-A0A5N6KDD7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A61186","Monilinia laxa"]]},{"id":"NCBITaxon:61366","l":"Fusarium oxysporum f. sp. cubense","na":1,"nb":1,"a":[["TED%3AAF-A0A559L4F8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A559L4F8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A61366","Fusarium oxysporum f. sp. cubense"]]},{"id":"NCBITaxon:61395","l":"Linderina pennispora","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y1WKF5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y1WKF5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A61395","Linderina pennispora"]]},{"id":"NCBITaxon:61420","l":"Aspergillus caelatus","na":1,"nb":1,"a":[["TED%3AAF-A0A5N7ABH8-F1-model_v4_TED01","TED novel fold AF-A0A5N7ABH8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A61420","Aspergillus caelatus"]]},{"id":"NCBITaxon:616997","l":"Hoyosella altamirensis","na":1,"nb":1,"a":[["TED%3AAF-A0A839RM00-F1-model_v4_TED02","TED novel fold AF-A0A839RM00-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A616997","Hoyosella altamirensis"]]},{"id":"NCBITaxon:617123","l":"Lachnoanaerobaculum umeaense","na":1,"nb":1,"a":[["TED%3AAF-A0A385PY42-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A385PY42-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A617123","Lachnoanaerobaculum umeaense"]]},{"id":"NCBITaxon:619518","l":"Periwinkle leaf yellowing phytoplasma","na":1,"nb":1,"a":[["TED%3AAF-A0A531Y170-F1-model_v4_TED01","TED novel fold AF-A0A531Y170-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A619518","Periwinkle leaf yellowing phytoplasma"]]},{"id":"NCBITaxon:62101","l":"Candidatus Endobugula sertula","na":1,"nb":1,"a":[["TED%3AAF-A0A1D2QPY2-F1-model_v4_TED01","TED novel fold AF-A0A1D2QPY2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A62101","Candidatus Endobugula sertula"]]},{"id":"NCBITaxon:623280","l":"Parapedobacter luteus","na":1,"nb":1,"a":[["TED%3AAF-A0A1T5FI29-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1T5FI29-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A623280","Parapedobacter luteus"]]},{"id":"NCBITaxon:624147","l":"Paenibacillus tianmuensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1G4P9F5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G4P9F5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A624147","Paenibacillus tianmuensis"]]},{"id":"NCBITaxon:62626","l":"","na":1,"nb":1,"a":[["Pfam%3APF06439","3-keto-alpha-glucoside-1,2-lyase-like domain"]],"b":[["NCBITaxon%3A62626","Bacillus sp. L7"]]},{"id":"NCBITaxon:62708","l":"Golovinomyces cichoracearum","na":1,"nb":1,"a":[["TED%3AAF-A0A420ILE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A420ILE6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A62708","Golovinomyces cichoracearum"]]},{"id":"NCBITaxon:627669","l":"Paraburkholderia humisilvae","na":1,"nb":1,"a":[["TED%3AAF-A0A6J5DRH8-F1-model_v4_TED06","TED novel fold AF-A0A6J5DRH8-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A627669","Paraburkholderia humisilvae"]]},{"id":"NCBITaxon:630390","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A180G462-F1-model_v4_TED01","TED novel fold AF-A0A180G462-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A630390","Puccinia triticina 1-1 BBBD Race 1"]]},{"id":"NCBITaxon:631362","l":"","na":1,"nb":1,"a":[["TED%3AAF-H8Z8I7-F1-model_v4_TED02","TED highly-symmetric fold AF-H8Z8I7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A631362","Thiorhodovibrio frisius"]]},{"id":"NCBITaxon:63186","l":"","na":1,"nb":1,"a":[["Pfam%3APF21254","Beta-agarase/YXIM esterase-like, galactose-binding domain-like"]],"b":[["NCBITaxon%3A63186","Zobellia galactanivorans"]]},{"id":"NCBITaxon:634155","l":"Pseudofulvimonas gallinarii","na":1,"nb":1,"a":[["TED%3AAF-A0A4R3L239-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R3L239-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A634155","Pseudofulvimonas gallinarii"]]},{"id":"NCBITaxon:634430","l":"Sphingomonas rubra","na":1,"nb":1,"a":[["TED%3AAF-A0A1I5S136-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5S136-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A634430","Sphingomonas rubra"]]},{"id":"NCBITaxon:634436","l":"Marisediminitalea aggregata","na":1,"nb":1,"a":[["TED%3AAF-A0A1M5JV92-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M5JV92-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A634436","Marisediminitalea aggregata"]]},{"id":"NCBITaxon:634500","l":"Erwinia billingiae Eb661","na":1,"nb":1,"a":[["PROSITE%3APS01090","TatD deoxyribonuclease family signature 2"]],"b":[["NCBITaxon%3A634500","Erwinia billingiae Eb661"]]},{"id":"NCBITaxon:634503","l":"","na":1,"nb":1,"a":[["Pfam%3APF13436","Glycine-zipper domain"]],"b":[["NCBITaxon%3A634503","Edwardsiella ictaluri 93-146"]]},{"id":"NCBITaxon:634765","l":"Cocleimonas flava","na":1,"nb":1,"a":[["TED%3AAF-A0A4R1EZF7-F1-model_v4_TED02","TED novel fold AF-A0A4R1EZF7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A634765","Cocleimonas flava"]]},{"id":"NCBITaxon:634771","l":"Chitinophaga eiseniae","na":1,"nb":1,"a":[["TED%3AAF-A0A847SE20-F1-model_v4_TED01","TED novel fold AF-A0A847SE20-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A634771","Chitinophaga eiseniae"]]},{"id":"NCBITaxon:634994","l":"Leptotrichia hofstadii F0254","na":1,"nb":1,"a":[["TED%3AAF-C9MWZ9-F1-model_v4_TED01","TED novel fold AF-C9MWZ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A634994","Leptotrichia hofstadii F0254"]]},{"id":"NCBITaxon:63605","l":"Percolomonas cosmopolitus","na":1,"nb":1,"a":[["TED%3AAF-A0A7S1KQY9-F1-model_v4_TED03","TED novel fold AF-A0A7S1KQY9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A63605","Percolomonas cosmopolitus"]]},{"id":"NCBITaxon:638953","l":"Georgenia soli","na":1,"nb":1,"a":[["TED%3AAF-A0A2A9EKA8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A9EKA8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A638953","Georgenia soli"]]},{"id":"NCBITaxon:640635","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1H4KEB2-F1-model_v4_TED01","TED novel fold AF-A0A1H4KEB2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A640635","Paramicrobacterium humi"]]},{"id":"NCBITaxon:641309","l":"Lotharella oceanica","na":1,"nb":1,"a":[["TED%3AAF-A0A7S2TV18-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2TV18-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A641309","Lotharella oceanica"]]},{"id":"NCBITaxon:641491","l":"Pseudodesulfovibrio mercurii","na":1,"nb":1,"a":[["Pfam%3APF03599","CO dehydrogenase/acetyl-CoA synthase delta subunit"]],"b":[["NCBITaxon%3A641491","Pseudodesulfovibrio mercurii"]]},{"id":"NCBITaxon:641702","l":"Zhongshania antarctica","na":1,"nb":1,"a":[["TED%3AAF-A0A840R1B7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A840R1B7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A641702","Zhongshania antarctica"]]},{"id":"NCBITaxon:642776","l":"Pedococcus badiiscoriae","na":1,"nb":1,"a":[["TED%3AAF-A0A852WAS0-F1-model_v4_TED01","TED novel fold AF-A0A852WAS0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A642776","Pedococcus badiiscoriae"]]},{"id":"NCBITaxon:643052","l":"Allocatelliglobosispora scoriae","na":1,"nb":1,"a":[["TED%3AAF-A0A841BPG9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841BPG9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A643052","Allocatelliglobosispora scoriae"]]},{"id":"NCBITaxon:643403","l":"Streptomyces sp. MK730-62F2","na":1,"nb":1,"a":[["Pfam%3APF14269","Arylsulfotransferase (ASST)"]],"b":[["NCBITaxon%3A643403","Streptomyces sp. MK730-62F2"]]},{"id":"NCBITaxon:644221","l":"Arenicella xantha","na":1,"nb":1,"a":[["TED%3AAF-A0A395JN40-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A395JN40-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A644221","Arenicella xantha"]]},{"id":"NCBITaxon:644281","l":"Methanocaldococcus sp. FS406-22","na":1,"nb":1,"a":[["TED%3AAF-D3S6J5-F1-model_v4_TED01","TED highly-symmetric fold AF-D3S6J5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A644281","Methanocaldococcus sp. FS406-22"]]},{"id":"NCBITaxon:64660","l":"Lyophyllum decastes","na":1,"nb":1,"a":[["Pfam%3APF21691","Alpha-galactosyl binding lectin"]],"b":[["NCBITaxon%3A64660","Lyophyllum decastes"]]},{"id":"NCBITaxon:648782","l":"Ruania alba","na":1,"nb":1,"a":[["TED%3AAF-A0A1H5MJT8-F1-model_v4_TED01","TED novel fold AF-A0A1H5MJT8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A648782","Ruania alba"]]},{"id":"NCBITaxon:64969","l":"Oceanospirillum multiglobuliferum","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4T0G8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V4T0G8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A64969","Oceanospirillum multiglobuliferum"]]},{"id":"NCBITaxon:649760","l":"Segatella oris F0302","na":1,"nb":1,"a":[["TED%3AAF-D1QV56-F1-model_v4_TED02","TED novel fold AF-D1QV56-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A649760","Segatella oris F0302"]]},{"id":"NCBITaxon:649831","l":"","na":1,"nb":1,"a":[["TED%3AAF-R4L963-F1-model_v4_TED01","TED highly-symmetric fold AF-R4L963-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A649831","Actinoplanes sp. N902-109"]]},{"id":"NCBITaxon:65067","l":"","na":1,"nb":1,"a":[["Pfam%3APF01738","Dienelactone hydrolase family"]],"b":[["NCBITaxon%3A65067","Pseudomonas sp. P51"]]},{"id":"NCBITaxon:651869","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A317EPM9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A317EPM9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A651869","Pedobacter yonginensis"]]},{"id":"NCBITaxon:652103","l":"Rhodopseudomonas palustris DX-1","na":1,"nb":1,"a":[["TED%3AAF-E6VQ23-F1-model_v4_TED02","TED novel fold AF-E6VQ23-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A652103","Rhodopseudomonas palustris DX-1"]]},{"id":"NCBITaxon:652616","l":"","na":1,"nb":1,"a":[["Pfam%3APF03990","G5-linked-Ubiquitin-like domain"]],"b":[["NCBITaxon%3A652616","Mycobacterium tuberculosis str. Erdman = ATCC 35801"]]},{"id":"NCBITaxon:652834","l":"Palpitomonas bilix","na":1,"nb":1,"a":[["TED%3AAF-A0A7S3DJ10-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S3DJ10-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A652834","Palpitomonas bilix"]]},{"id":"NCBITaxon:655353","l":"Cohaesibacter marisflavi","na":1,"nb":1,"a":[["TED%3AAF-A0A1I5AHY1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5AHY1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A655353","Cohaesibacter marisflavi"]]},{"id":"NCBITaxon:656178","l":"Pandoraea vervacti","na":1,"nb":1,"a":[["TED%3AAF-A0A0C5JU44-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0C5JU44-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A656178","Pandoraea vervacti"]]},{"id":"NCBITaxon:657324","l":"Butyrivibrio fibrisolvens 16/4","na":1,"nb":1,"a":[["TED%3AAF-D4IWJ1-F1-model_v4_TED01","TED novel fold AF-D4IWJ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A657324","Butyrivibrio fibrisolvens 16/4"]]},{"id":"NCBITaxon:658081","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A828T3B1-F1-model_v4_TED01","TED novel fold AF-A0A828T3B1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A658081","Lachnospiraceae bacterium 1_1_57FAA"]]},{"id":"NCBITaxon:658082","l":"","na":1,"nb":1,"a":[["TED%3AAF-F7K152-F1-model_v4_TED01","TED highly-symmetric fold AF-F7K152-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A658082","Lachnospiraceae bacterium 2_1_58FAA"]]},{"id":"NCBITaxon:658083","l":"","na":1,"nb":1,"a":[["TED%3AAF-F3AG07-F1-model_v4_TED01","TED novel fold AF-F3AG07-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A658083","Lachnospiraceae bacterium 6_1_63FAA"]]},{"id":"NCBITaxon:658087","l":"","na":1,"nb":1,"a":[["TED%3AAF-H1CD99-F1-model_v4_TED01","TED novel fold AF-H1CD99-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A658087","Lachnospiraceae bacterium 7_1_58FAA"]]},{"id":"NCBITaxon:658457","l":"Ectopseudomonas composti","na":1,"nb":1,"a":[["TED%3AAF-A0A1I5P4N2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5P4N2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A658457","Ectopseudomonas composti"]]},{"id":"NCBITaxon:658473","l":"Mycena chlorophos","na":1,"nb":1,"a":[["TED%3AAF-A0A146IIG4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A146IIG4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A658473","Mycena chlorophos"]]},{"id":"NCBITaxon:658656","l":"","na":1,"nb":1,"a":[["TED%3AAF-E9RXV7-F1-model_v4_TED02","TED novel fold AF-E9RXV7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A658656","Lachnospiraceae bacterium 6_1_37FAA"]]},{"id":"NCBITaxon:659014","l":"Dyadobacter soli","na":1,"nb":1,"a":[["TED%3AAF-A0A1G7LMR8-F1-model_v4_TED01","TED novel fold AF-A0A1G7LMR8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A659014","Dyadobacter soli"]]},{"id":"NCBITaxon:659352","l":"Streptomyces sp. SN-593","na":1,"nb":1,"a":[["TED%3AAF-A0A7U3V0R8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7U3V0R8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A659352","Actinacidiphila reveromycinica"]]},{"id":"NCBITaxon:660518","l":"Halorientalis regularis","na":1,"nb":1,"a":[["TED%3AAF-A0A1G7SGU8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G7SGU8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A660518","Halorientalis regularis"]]},{"id":"NCBITaxon:660521","l":"Halogranum gelatinilyticum","na":1,"nb":1,"a":[["TED%3AAF-A0A1G9YFY0-F1-model_v4_TED01","TED novel fold AF-A0A1G9YFY0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A660521","Halogranum gelatinilyticum"]]},{"id":"NCBITaxon:661087","l":"Olsenella sp. oral taxon 809 str. F0356","na":1,"nb":1,"a":[["TED%3AAF-G5F4Y6-F1-model_v4_TED01","TED novel fold AF-G5F4Y6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A661087","Olsenella sp. oral taxon 809 str. F0356"]]},{"id":"NCBITaxon:661481","l":"Flavisolibacter ginsenosidimutans","na":1,"nb":1,"a":[["TED%3AAF-A0A5B8ULK9-F1-model_v4_TED01","TED novel fold AF-A0A5B8ULK9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A661481","Flavisolibacter ginsenosidimutans"]]},{"id":"NCBITaxon:661485","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A3N0GF74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N0GF74-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A661485","Nocardioides pocheonensis"]]},{"id":"NCBITaxon:662880","l":"Deinococcus humi","na":1,"nb":1,"a":[["TED%3AAF-A0A7W8NGF0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W8NGF0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A662880","Deinococcus humi"]]},{"id":"NCBITaxon:66374","l":"Streptomyces nojiriensis","na":1,"nb":1,"a":[["TED%3AAF-A0A8A6HBY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8A6HBY6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A66374","Streptomyces nojiriensis"]]},{"id":"NCBITaxon:663917","l":"Geobacter sulfurreducens KN400","na":1,"nb":1,"a":[["Pfam%3APF13435","Cytochrome c554 and c-prime"]],"b":[["NCBITaxon%3A663917","Geobacter sulfurreducens KN400"]]},{"id":"NCBITaxon:66425","l":"Streptomyces luteoverticillatus","na":1,"nb":1,"a":[["TED%3AAF-A0A3S9PBS5-F1-model_v4_TED01","TED novel fold AF-A0A3S9PBS5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A66425","Streptomyces luteoverticillatus"]]},{"id":"NCBITaxon:66431","l":"Streptomyces thioluteus","na":1,"nb":1,"a":[["Pfam%3APF11583","P-aminobenzoate N-oxygenase AurF"]],"b":[["NCBITaxon%3A66431","Streptomyces thioluteus"]]},{"id":"NCBITaxon:664642","l":"Winogradskyella pacifica","na":1,"nb":1,"a":[["TED%3AAF-A0A3D9LNT4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D9LNT4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A664642","Winogradskyella pacifica"]]},{"id":"NCBITaxon:664692","l":"Amycolatopsis pithecellobii","na":1,"nb":1,"a":[["TED%3AAF-A0A6N7YX54-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N7YX54-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A664692","Amycolatopsis pithecellobii"]]},{"id":"NCBITaxon:665952","l":"","na":1,"nb":1,"a":[["TED%3AAF-G9QHT9-F1-model_v4_TED01","TED novel fold AF-G9QHT9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A665952","Bacillus smithii 7_3_47FAA"]]},{"id":"NCBITaxon:670079","l":"Paeniglutamicibacter cryotolerans","na":1,"nb":1,"a":[["TED%3AAF-A0A839QL01-F1-model_v4_TED02","TED novel fold AF-A0A839QL01-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A670079","Paeniglutamicibacter cryotolerans"]]},{"id":"NCBITaxon:670154","l":"Litoreibacter janthinus","na":1,"nb":1,"a":[["TED%3AAF-A0A1I6H8Z4-F1-model_v4_TED01","TED novel fold AF-A0A1I6H8Z4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A670154","Litoreibacter janthinus"]]},{"id":"NCBITaxon:670155","l":"Litoreibacter albidus","na":1,"nb":1,"a":[["TED%3AAF-A0A1H3D3B7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1H3D3B7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A670155","Litoreibacter albidus"]]},{"id":"NCBITaxon:670289","l":"Adhaeribacter aerolatus","na":1,"nb":1,"a":[["TED%3AAF-A0A512ASX5-F1-model_v4_TED02","TED novel fold AF-A0A512ASX5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A670289","Adhaeribacter aerolatus"]]},{"id":"NCBITaxon:670307","l":"Hyphomicrobium denitrificans 1NES1","na":1,"nb":1,"a":[["TED%3AAF-N0B293-F1-model_v4_TED01","TED novel fold AF-N0B293-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A670307","Hyphomicrobium denitrificans 1NES1"]]},{"id":"NCBITaxon:67081","l":"Mycolicibacterium alvei","na":1,"nb":1,"a":[["TED%3AAF-A0A6N4UYN8-F1-model_v4_TED01","TED novel fold AF-A0A6N4UYN8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A67081","Mycolicibacterium alvei"]]},{"id":"NCBITaxon:671072","l":"Planktothrix tepida PCC 9214","na":1,"nb":1,"a":[["TED%3AAF-A0A1J1LHF8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1J1LHF8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A671072","Planktothrix tepida PCC 9214"]]},{"id":"NCBITaxon:671144","l":"","na":1,"nb":1,"a":[["TED%3AAF-I4Y6Q3-F1-model_v4_TED01","TED novel fold AF-I4Y6Q3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A671144","Wallemia mellicola CBS 633.66"]]},{"id":"NCBITaxon:67339","l":"Streptomyces orinoci","na":1,"nb":1,"a":[["Pfam%3APF09277","Erythronolide synthase, docking"]],"b":[["NCBITaxon%3A67339","Streptomyces orinoci"]]},{"id":"NCBITaxon:674703","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A127EZQ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A127EZQ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A674703","Rugositalea oryzae"]]},{"id":"NCBITaxon:676965","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2T0AME3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2T0AME3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A676965","Neomoorella humiferrea"]]},{"id":"NCBITaxon:67723","l":"Amanita phalloides","na":1,"nb":1,"a":[["Pfam%3APF24112","Amanitin toxin"]],"b":[["NCBITaxon%3A67723","Amanita phalloides"]]},{"id":"NCBITaxon:678601","l":"Staphylococcus sp. CDC3","na":1,"nb":1,"a":[["TED%3AAF-D2J704-F1-model_v4_TED01","TED novel fold AF-D2J704-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A678601","Staphylococcus sp. CDC3"]]},{"id":"NCBITaxon:679191","l":"Prevotella amnii CRIS 21A-A","na":1,"nb":1,"a":[["TED%3AAF-E1GW40-F1-model_v4_TED02","TED highly-symmetric fold AF-E1GW40-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A679191","Prevotella amnii CRIS 21A-A"]]},{"id":"NCBITaxon:679199","l":"Alloprevotella rava F0323","na":1,"nb":1,"a":[["TED%3AAF-G5GDR7-F1-model_v4_TED02","TED novel fold AF-G5GDR7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A679199","Alloprevotella rava F0323"]]},{"id":"NCBITaxon:68044","l":"Streptomyces libani subsp. libani","na":1,"nb":1,"a":[["TED%3AAF-A0A640TLY2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A640TLY2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1920","Streptomyces nigrescens"]]},{"id":"NCBITaxon:681627","l":"Micrococcus sp. TA1","na":1,"nb":1,"a":[["TED%3AAF-A0A7W9CR57-F1-model_v4_TED01","TED novel fold AF-A0A7W9CR57-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A681627","Micrococcus sp. TA1"]]},{"id":"NCBITaxon:68223","l":"Streptomyces katrae","na":1,"nb":1,"a":[["TED%3AAF-A0A0F4IUW3-F1-model_v4_TED02","TED novel fold AF-A0A0F4IUW3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A68223","Streptomyces katrae"]]},{"id":"NCBITaxon:68231","l":"Streptomyces longwoodensis","na":1,"nb":1,"a":[["TED%3AAF-A0A117QN81-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A117QN81-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A68231","Streptomyces longwoodensis"]]},{"id":"NCBITaxon:686389","l":"Ruegeria faecimaris","na":1,"nb":1,"a":[["TED%3AAF-A0A521DJY9-F1-model_v4_TED01","TED novel fold AF-A0A521DJY9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A686389","Ruegeria faecimaris"]]},{"id":"NCBITaxon:686666","l":"Bombiscardovia coagulans","na":1,"nb":1,"a":[["TED%3AAF-A0A261EVD5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A261EVD5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A686666","Bombiscardovia coagulans"]]},{"id":"NCBITaxon:686796","l":"Algoriphagus faecimaris","na":1,"nb":1,"a":[["TED%3AAF-A0A1G6UW39-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G6UW39-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A686796","Algoriphagus faecimaris"]]},{"id":"NCBITaxon:687207","l":"Spinactinospora alkalitolerans","na":1,"nb":1,"a":[["TED%3AAF-A0A852U571-F1-model_v4_TED01","TED novel fold AF-A0A852U571-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A687207","Spinactinospora alkalitolerans"]]},{"id":"NCBITaxon:688245","l":"","na":1,"nb":1,"a":[["TED%3AAF-D0IY66-F1-model_v4_TED01","TED novel fold AF-D0IY66-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A688245","Comamonas testosteroni CNB-2"]]},{"id":"NCBITaxon:688867","l":"Ohtaekwangia koreensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1T5MFB7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1T5MFB7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A688867","Ohtaekwangia koreensis"]]},{"id":"NCBITaxon:69011","l":"","na":1,"nb":1,"a":[["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"]],"b":[["NCBITaxon%3A69011","Pseudomonas sp. C18"]]},{"id":"NCBITaxon:69222","l":"Erwinia mallotivora","na":1,"nb":1,"a":[["TED%3AAF-A0A014LYI4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A014LYI4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A69222","Erwinia mallotivora"]]},{"id":"NCBITaxon:692370","l":"Tsuneonella dongtanensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1B2A8X4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B2A8X4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A692370","Tsuneonella dongtanensis"]]},{"id":"NCBITaxon:692418","l":"Reichenbachiella faecimaris","na":1,"nb":1,"a":[["TED%3AAF-A0A1W2GN32-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W2GN32-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A692418","Reichenbachiella faecimaris"]]},{"id":"NCBITaxon:69362","l":"Microbacterium schleiferi","na":1,"nb":1,"a":[["TED%3AAF-A0A7S8RHS8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S8RHS8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A69362","Microbacterium schleiferi"]]},{"id":"NCBITaxon:69392","l":"Stenotrophomonas sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A6N8APF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8APF4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A69392","Stenotrophomonas sp."]]},{"id":"NCBITaxon:69656","l":"Sulfurisphaera ohwakuensis","na":1,"nb":1,"a":[["TED%3AAF-A0A650CK52-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A650CK52-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A69656","Sulfurisphaera ohwakuensis"]]},{"id":"NCBITaxon:696762","l":"Planktotalea frisia","na":1,"nb":1,"a":[["TED%3AAF-A0A1L9NVP8-F1-model_v4_TED01","TED novel fold AF-A0A1L9NVP8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A696762","Planktotalea frisia"]]},{"id":"NCBITaxon:69771","l":"Penicillium decumbens","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6PJ92-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V6PJ92-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A69771","Penicillium decumbens"]]},{"id":"NCBITaxon:69774","l":"Penicillium herquei","na":1,"nb":1,"a":[["Pfam%3APF11578","Protein of unknown function (DUF3237)"]],"b":[["NCBITaxon%3A69774","Penicillium herquei"]]},{"id":"NCBITaxon:698760","l":"Streptomyces turgidiscabies Car8","na":1,"nb":1,"a":[["TED%3AAF-L7F7V3-F1-model_v4_TED02","TED highly-symmetric fold AF-L7F7V3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A698760","Streptomyces turgidiscabies Car8"]]},{"id":"NCBITaxon:698960","l":"","na":1,"nb":1,"a":[["TED%3AAF-I4M7N5-F1-model_v4_TED02","TED novel fold AF-I4M7N5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A698960","Gardnerella greenwoodii 00703Dmash"]]},{"id":"NCBITaxon:698964","l":"","na":1,"nb":1,"a":[["Pfam%3APF18357","Diphteria toxin repressor SH3 domain"]],"b":[["NCBITaxon%3A698964","Corynebacterium diphtheriae PW8"]]},{"id":"NCBITaxon:699433","l":"Halobellus limi","na":1,"nb":1,"a":[["TED%3AAF-A0A1H6AHR3-F1-model_v4_TED03","TED novel fold AF-A0A1H6AHR3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A699433","Halobellus limi"]]},{"id":"NCBITaxon:69964","l":"Azotobacter salinestris","na":1,"nb":1,"a":[["Pfam%3APF03139","Vanadium/alternative nitrogenase delta subunit"]],"b":[["NCBITaxon%3A69964","Azotobacter salinestris"]]},{"id":"NCBITaxon:69969","l":"Macrococcus carouselicus","na":1,"nb":1,"a":[["TED%3AAF-A0A4R6BCC8-F1-model_v4_TED01","TED novel fold AF-A0A4R6BCC8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A69969","Macrococcus carouselicus"]]},{"id":"NCBITaxon:700599","l":"Streptomyces lonarensis","na":1,"nb":1,"a":[["TED%3AAF-A0A7X6I180-F1-model_v4_TED02","TED novel fold AF-A0A7X6I180-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A700599","Streptomyces lonarensis"]]},{"id":"NCBITaxon:702459","l":"Bifidobacterium bifidum PRL2010","na":1,"nb":1,"a":[["TED%3AAF-A0A0H3E8C8-F1-model_v4_TED01","TED novel fold AF-A0A0H3E8C8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A702459","Bifidobacterium bifidum PRL2010"]]},{"id":"NCBITaxon:703756","l":"Colletotrichum simmondsii","na":1,"nb":1,"a":[["TED%3AAF-A0A135SIS0-F1-model_v4_TED01","TED novel fold AF-A0A135SIS0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A703756","Colletotrichum simmondsii"]]},{"id":"NCBITaxon:708113","l":"Terrihabitans soli","na":1,"nb":1,"a":[["TED%3AAF-A0A6S6QVM7-F1-model_v4_TED02","TED novel fold AF-A0A6S6QVM7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A708113","Terrihabitans soli"]]},{"id":"NCBITaxon:708197","l":"Colletotrichum tofieldiae","na":1,"nb":1,"a":[["TED%3AAF-A0A166YTK0-F1-model_v4_TED01","TED novel fold AF-A0A166YTK0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A708197","Colletotrichum tofieldiae"]]},{"id":"NCBITaxon:708627","l":"Timspurckia oligopyrenoides","na":1,"nb":1,"a":[["TED%3AAF-A0A6T6NS67-F1-model_v4_TED01","TED novel fold AF-A0A6T6NS67-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A708627","Timspurckia oligopyrenoides"]]},{"id":"NCBITaxon:709839","l":"Noviherbaspirillum autotrophicum","na":1,"nb":1,"a":[["TED%3AAF-A0A0C2BU50-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0C2BU50-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A709839","Noviherbaspirillum autotrophicum"]]},{"id":"NCBITaxon:709868","l":"Micromonospora ureilytica","na":1,"nb":1,"a":[["TED%3AAF-A0A3N9Y1R3-F1-model_v4_TED01","TED novel fold AF-A0A3N9Y1R3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A709868","Micromonospora ureilytica"]]},{"id":"NCBITaxon:712528","l":"Selenomonas sp. oral taxon 126","na":1,"nb":1,"a":[["TED%3AAF-A0A1B1I4K0-F1-model_v4_TED02","TED novel fold AF-A0A1B1I4K0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A712528","Selenomonas sp. oral taxon 126"]]},{"id":"NCBITaxon:713054","l":"TM7 phylum sp. oral taxon 352","na":1,"nb":1,"a":[["TED%3AAF-A0A563CU50-F1-model_v4_TED02","TED novel fold AF-A0A563CU50-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A713054","TM7 phylum sp. oral taxon 352"]]},{"id":"NCBITaxon:713588","l":"Kaistella chaponensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1N7M6E6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1N7M6E6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A713588","Kaistella chaponensis"]]},{"id":"NCBITaxon:714109","l":"Phytomonospora endophytica","na":1,"nb":1,"a":[["TED%3AAF-A0A841FHS0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841FHS0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A714109","Phytomonospora endophytica"]]},{"id":"NCBITaxon:714307","l":"Salinicoccus kekensis","na":1,"nb":1,"a":[["TED%3AAF-A0A285UCB1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A285UCB1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A714307","Salinicoccus kekensis"]]},{"id":"NCBITaxon:714359","l":"","na":1,"nb":1,"a":[["Pfam%3APF10372","Diadenylate cyclase CdaS, N-terminal"]],"b":[["NCBITaxon%3A714359","Bacillus thuringiensis BMB171"]]},{"id":"NCBITaxon:71517","l":"","na":1,"nb":1,"a":[["Pfam%3APF22370","Flagellin, beta sheet domain"]],"b":[["NCBITaxon%3A71517","Salmonella enterica subsp. enterica serovar Naestved"]]},{"id":"NCBITaxon:716813","l":"Psychrosphaera saromensis","na":1,"nb":1,"a":[["TED%3AAF-A0A2S7UY79-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S7UY79-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A716813","Psychrosphaera saromensis"]]},{"id":"NCBITaxon:716816","l":"Oceanicoccus sagamiensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1X9ND04-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X9ND04-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A716816","Oceanicoccus sagamiensis"]]},{"id":"NCBITaxon:71717","l":"Coprinellus micaceus","na":1,"nb":1,"a":[["TED%3AAF-A0A4Y7TIK8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y7TIK8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A71717","Coprinellus micaceus"]]},{"id":"NCBITaxon:71784","l":"Naematelia encephala","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y2BG45-F1-model_v4_TED01","TED novel fold AF-A0A1Y2BG45-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A71784","Naematelia encephala"]]},{"id":"NCBITaxon:717961","l":"[Eubacterium] siraeum V10Sc8a","na":1,"nb":1,"a":[["TED%3AAF-D4MLV9-F1-model_v4_TED02","TED novel fold AF-D4MLV9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A717961","[Eubacterium] siraeum V10Sc8a"]]},{"id":"NCBITaxon:718192","l":"Litorilituus sediminis","na":1,"nb":1,"a":[["TED%3AAF-A0A4P6P0V5-F1-model_v4_TED02","TED novel fold AF-A0A4P6P0V5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A718192","Litorilituus sediminis"]]},{"id":"NCBITaxon:718252","l":"Faecalibacterium prausnitzii L2-6","na":1,"nb":1,"a":[["TED%3AAF-D4JYM3-F1-model_v4_TED01","TED novel fold AF-D4JYM3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A718252","Faecalibacterium prausnitzii L2-6"]]},{"id":"NCBITaxon:722","l":"Actinobacillus seminis","na":1,"nb":1,"a":[["TED%3AAF-A0A263HFT1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A263HFT1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A722","Actinobacillus seminis"]]},{"id":"NCBITaxon:722472","l":"Bradyrhizobium lablabi","na":1,"nb":1,"a":[["TED%3AAF-A0A2H9VHY8-F1-model_v4_TED01","TED novel fold AF-A0A2H9VHY8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A722472","Bradyrhizobium lablabi"]]},{"id":"NCBITaxon:72559","l":"Sporisorium reilianum f. sp. reilianum","na":1,"nb":1,"a":[["TED%3AAF-A0A2N8U7J1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N8U7J1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A72559","Sporisorium reilianum f. sp. reilianum"]]},{"id":"NCBITaxon:72582","l":"","na":1,"nb":1,"a":[["Pfam%3APF09137","Glucodextranase, domain N"]],"b":[["NCBITaxon%3A72582","Clostridium sp. G0005"]]},{"id":"NCBITaxon:72588","l":"","na":1,"nb":1,"a":[["Pfam%3APF21331","Isoamylase, C-terminal"]],"b":[["NCBITaxon%3A72588","Pseudomonas sp. SMP1"]]},{"id":"NCBITaxon:72803","l":"Thermococcus siculi","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z2MNQ0-F1-model_v4_TED02","TED novel fold AF-A0A2Z2MNQ0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A72803","Thermococcus siculi"]]},{"id":"NCBITaxon:732238","l":"Povalibacter uvarum","na":1,"nb":1,"a":[["TED%3AAF-A0A841HPM8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841HPM8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A732238","Povalibacter uvarum"]]},{"id":"NCBITaxon:742013","l":"Delftia sp. Cs1-4","na":1,"nb":1,"a":[["TED%3AAF-F6AQI2-F1-model_v4_TED01","TED highly-symmetric fold AF-F6AQI2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A742013","Delftia sp. Cs1-4"]]},{"id":"NCBITaxon:742159","l":"Achromobacter piechaudii ATCC 43553","na":1,"nb":1,"a":[["TED%3AAF-D4X3P5-F1-model_v4_TED01","TED highly-symmetric fold AF-D4X3P5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A742159","Achromobacter piechaudii ATCC 43553"]]},{"id":"NCBITaxon:742722","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A096LKL7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A096LKL7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A742722","Collinsella sp. 4_8_47FAA"]]},{"id":"NCBITaxon:742740","l":"","na":1,"nb":1,"a":[["Pfam%3APF12641","Flavodoxin domain"]],"b":[["NCBITaxon%3A742740","[Clostridium] symbiosum WAL-14163"]]},{"id":"NCBITaxon:742823","l":"","na":1,"nb":1,"a":[["TED%3AAF-K1JL38-F1-model_v4_TED02","TED highly-symmetric fold AF-K1JL38-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A742823","Sutterella wadsworthensis 2_1_59BFAA"]]},{"id":"NCBITaxon:74316","l":"Brevundimonas aurantiaca","na":1,"nb":1,"a":[["TED%3AAF-A0A7W9C3G8-F1-model_v4_TED03","TED novel fold AF-A0A7W9C3G8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A74316","Brevundimonas aurantiaca"]]},{"id":"NCBITaxon:74329","l":"Brevundimonas mediterranea","na":1,"nb":1,"a":[["TED%3AAF-A0A7Z8Y2I5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Z8Y2I5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A74329","Brevundimonas mediterranea"]]},{"id":"NCBITaxon:743525","l":"","na":1,"nb":1,"a":[["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"]],"b":[["NCBITaxon%3A743525","Thermus scotoductus SA-01"]]},{"id":"NCBITaxon:744515","l":"Treponema ruminis","na":1,"nb":1,"a":[["TED%3AAF-A0A7W8LMF9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W8LMF9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A744515","Treponema ruminis"]]},{"id":"NCBITaxon:745369","l":"Acetoanaerobium noterae","na":1,"nb":1,"a":[["TED%3AAF-A0A1T5D7K1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1T5D7K1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A745369","Acetoanaerobium noterae"]]},{"id":"NCBITaxon:745408","l":"Rhodococcus sp. JVH1","na":1,"nb":1,"a":[["TED%3AAF-J1R3G3-F1-model_v4_TED01","TED novel fold AF-J1R3G3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A745408","Rhodococcus sp. JVH1"]]},{"id":"NCBITaxon:74547","l":"Prochlorococcus marinus str. MIT 9313","na":1,"nb":1,"a":[["Pfam%3APF11266","Long-chain fatty aldehyde decarbonylase"]],"b":[["NCBITaxon%3A74547","Prochlorococcus marinus str. MIT 9313"]]},{"id":"NCBITaxon:74576","l":"","na":1,"nb":1,"a":[["Pfam%3APF22500","GMC oxidoreductase, C-terminal"]],"b":[["NCBITaxon%3A74576","Streptomyces sp. SA-COO"]]},{"id":"NCBITaxon:746361","l":"","na":1,"nb":1,"a":[["Pfam%3APF12822","ECF transporter, substrate-specific component"]],"b":[["NCBITaxon%3A746361","Lactococcus cremoris subsp. cremoris NZ9000"]]},{"id":"NCBITaxon:74722","l":"Stachybotrys chartarum","na":1,"nb":1,"a":[["Pfam%3APF25484","Domain of unknown function (DUF7907)"]],"b":[["NCBITaxon%3A74722","Stachybotrys chartarum"]]},{"id":"NCBITaxon:747457","l":"Pseudoalteromonas sp. SANK 73390","na":1,"nb":1,"a":[["Pfam%3APF18014","Acetyltransferase (GNAT) domain"]],"b":[["NCBITaxon%3A747457","Pseudoalteromonas sp. SANK 73390"]]},{"id":"NCBITaxon:749508","l":"Enterococcus faecalis TX0630","na":1,"nb":1,"a":[["TED%3AAF-E6ETC9-F1-model_v4_TED01","TED novel fold AF-E6ETC9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A749508","Enterococcus faecalis TX0630"]]},{"id":"NCBITaxon:749593","l":"Epicoccum sorghinum","na":1,"nb":1,"a":[["Pfam%3APF17660","Polyglycine hydrolase-like, structural repeat"]],"b":[["NCBITaxon%3A749593","Epicoccum sorghinum"]]},{"id":"NCBITaxon:74969","l":"Ferroplasma acidiphilum","na":1,"nb":1,"a":[["TED%3AAF-A0A7K4FNL3-F1-model_v4_TED01","TED novel fold AF-A0A7K4FNL3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A74969","Ferroplasma acidiphilum"]]},{"id":"NCBITaxon:755","l":"Avibacterium gallinarum","na":1,"nb":1,"a":[["TED%3AAF-A0A379AXK5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A379AXK5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A755","Avibacterium gallinarum"]]},{"id":"NCBITaxon:755731","l":"Clostridium sp. BNL1100","na":1,"nb":1,"a":[["TED%3AAF-H2JEL4-F1-model_v4_TED02","TED highly-symmetric fold AF-H2JEL4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A755731","Clostridium sp. BNL1100"]]},{"id":"NCBITaxon:756067","l":"Microcoleus vaginatus FGP-2","na":1,"nb":1,"a":[["TED%3AAF-F5UCE7-F1-model_v4_TED03","TED highly-symmetric fold AF-F5UCE7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A756067","Microcoleus vaginatus FGP-2"]]},{"id":"NCBITaxon:75736","l":"Starmerella bombicola","na":1,"nb":1,"a":[["Pfam%3APF12464","Maltose acetyltransferase hexapeptide capping motif"]],"b":[["NCBITaxon%3A75736","Starmerella bombicola"]]},{"id":"NCBITaxon:758802","l":"Mycolicibacterium litorale","na":1,"nb":1,"a":[["TED%3AAF-A0A6S6P2X7-F1-model_v4_TED01","TED novel fold AF-A0A6S6P2X7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A758802","Mycolicibacterium litorale"]]},{"id":"NCBITaxon:758825","l":"Rugamonas rubra","na":1,"nb":1,"a":[["TED%3AAF-A0A1I4M4R3-F1-model_v4_TED02","TED novel fold AF-A0A1I4M4R3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A758825","Rugamonas rubra"]]},{"id":"NCBITaxon:761204","l":"","na":1,"nb":1,"a":[["TED%3AAF-W2Q6Q6-F1-model_v4_TED02","TED novel fold AF-W2Q6Q6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A761204","Phytophthora nicotianae INRA-310"]]},{"id":"NCBITaxon:761659","l":"Salinibacter ruber M8","na":1,"nb":1,"a":[["TED%3AAF-D5H5E0-F1-model_v4_TED03","TED novel fold AF-D5H5E0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A761659","Salinibacter ruber M8"]]},{"id":"NCBITaxon:762211","l":"Bifidobacterium stellenboschense","na":1,"nb":1,"a":[["TED%3AAF-A0A087DBT3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A087DBT3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A762211","Bifidobacterium stellenboschense"]]},{"id":"NCBITaxon:762486","l":"Lutibacter oricola","na":1,"nb":1,"a":[["TED%3AAF-A0A1H2TDM1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H2TDM1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A762486","Lutibacter oricola"]]},{"id":"NCBITaxon:763407","l":"","na":1,"nb":1,"a":[["Pfam%3APF27434","3-isopropylmalate dehydratase small subunit C-terminal domain"]],"b":[["NCBITaxon%3A763407","Phycomyces blakesleeanus NRRL 1555(-)"]]},{"id":"NCBITaxon:765888","l":"Nitrospirillum iridis","na":1,"nb":1,"a":[["TED%3AAF-A0A7X0AVV1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X0AVV1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A765888","Nitrospirillum iridis"]]},{"id":"NCBITaxon:766136","l":"Desulfuribacillus alkaliarsenatis","na":1,"nb":1,"a":[["TED%3AAF-A0A1E5G4X4-F1-model_v4_TED01","TED novel fold AF-A0A1E5G4X4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A766136","Desulfuribacillus alkaliarsenatis"]]},{"id":"NCBITaxon:766140","l":"Shigella boydii 4444-74","na":1,"nb":1,"a":[["TED%3AAF-I6EFI0-F1-model_v4_TED02","TED highly-symmetric fold AF-I6EFI0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A766140","Shigella boydii 4444-74"]]},{"id":"NCBITaxon:766760","l":"Bacillus paralicheniformis ATCC 9945a","na":1,"nb":1,"a":[["Pfam%3APF24957","DISARM protein DrmE, C-terminal domain"]],"b":[["NCBITaxon%3A766760","Bacillus paralicheniformis ATCC 9945a"]]},{"id":"NCBITaxon:76731","l":"Roseateles depolymerans","na":1,"nb":1,"a":[["TED%3AAF-A0A0U3N3L4-F1-model_v4_TED02","TED novel fold AF-A0A0U3N3L4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A76731","Roseateles depolymerans"]]},{"id":"NCBITaxon:768556","l":"uncultured Solirubrobacterales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A6J4SFU3-F1-model_v4_TED01","TED novel fold AF-A0A6J4SFU3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A768556","uncultured Solirubrobacterales bacterium"]]},{"id":"NCBITaxon:76869","l":"","na":1,"nb":1,"a":[["Pfam%3APF21724","Family of unknown function (DUF6861)"]],"b":[["NCBITaxon%3A76869","Pseudomonas putida GB-1"]]},{"id":"NCBITaxon:78410","l":"Neonectria ditissima","na":1,"nb":1,"a":[["TED%3AAF-A0A0P7AKS8-F1-model_v4_TED02","TED novel fold AF-A0A0P7AKS8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A78410","Neonectria ditissima"]]},{"id":"NCBITaxon:78915","l":"Thamnocephalis sphaerospora","na":1,"nb":1,"a":[["TED%3AAF-A0A4V1IVX3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4V1IVX3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A78915","Thamnocephalis sphaerospora"]]},{"id":"NCBITaxon:794903","l":"Opitutaceae bacterium TAV5","na":1,"nb":1,"a":[["TED%3AAF-W0J1Y7-F1-model_v4_TED01","TED highly-symmetric fold AF-W0J1Y7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A794903","Opitutaceae bacterium TAV5"]]},{"id":"NCBITaxon:795812","l":"Parerythrobacter jejuensis","na":1,"nb":1,"a":[["TED%3AAF-A0A845AW31-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A845AW31-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A795812","Parerythrobacter jejuensis"]]},{"id":"NCBITaxon:79671","l":"","na":1,"nb":1,"a":[["Pfam%3APF16483","Beta-1,3-glucanase"]],"b":[["NCBITaxon%3A79671","Arthrobacter sp. YCWD3"]]},{"id":"NCBITaxon:79676","l":"","na":1,"nb":1,"a":[["Pfam%3APF09290","Prokaryotic acetaldehyde dehydrogenase, dimerisation"]],"b":[["NCBITaxon%3A79676","Pseudomonas sp. CF600"]]},{"id":"NCBITaxon:796937","l":"Peptoanaerobacter stomatis","na":1,"nb":1,"a":[["TED%3AAF-G9XC71-F1-model_v4_TED01","TED novel fold AF-G9XC71-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A796937","Peptoanaerobacter stomatis"]]},{"id":"NCBITaxon:797292","l":"Sphingobacterium alimentarium","na":1,"nb":1,"a":[["TED%3AAF-A0A4R3VZ52-F1-model_v4_TED08","TED novel fold AF-A0A4R3VZ52-F1-model_v4_TED08"]],"b":[["NCBITaxon%3A797292","Sphingobacterium alimentarium"]]},{"id":"NCBITaxon:82801","l":"Desemzia incerta","na":1,"nb":1,"a":[["TED%3AAF-A0A1I5VU87-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I5VU87-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A82801","Desemzia incerta"]]},{"id":"NCBITaxon:83462","l":"Corallococcus exiguus","na":1,"nb":1,"a":[["TED%3AAF-A0A7X4Y983-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X4Y983-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A83462","Corallococcus exiguus"]]},{"id":"NCBITaxon:83637","l":"Bradyrhizobium genosp. L","na":1,"nb":1,"a":[["TED%3AAF-A0A7S9CP95-F1-model_v4_TED02","TED novel fold AF-A0A7S9CP95-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A83637","Bradyrhizobium genosp. L"]]},{"id":"NCBITaxon:84029","l":"-","na":1,"nb":1,"a":[["TED%3AAF-A0A1S8KXX0-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A1S8KXX0-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A36839","Clostridium felsineum"]]},{"id":"NCBITaxon:84139","l":"Gordonia sp. (in: high G+C Gram-positive bacteria)","na":1,"nb":1,"a":[["TED%3AAF-A0A2E1G3V1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E1G3V1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A84139","Gordonia sp. (in: high G+C Gram-positive bacteria)"]]},{"id":"NCBITaxon:84724","l":"Lentzea waywayandensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1I6FJL8-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1I6FJL8-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A84724","Lentzea waywayandensis"]]},{"id":"NCBITaxon:84725","l":"Umezawaea tangerina","na":1,"nb":1,"a":[["TED%3AAF-A0A2T0SS74-F1-model_v4_TED01","TED novel fold AF-A0A2T0SS74-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A84725","Umezawaea tangerina"]]},{"id":"NCBITaxon:856736","l":"Deinococcus reticulitermitis","na":1,"nb":1,"a":[["TED%3AAF-A0A1H7CAH4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H7CAH4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A856736","Deinococcus reticulitermitis"]]},{"id":"NCBITaxon:856793","l":"","na":1,"nb":1,"a":[["TED%3AAF-G2KLZ0-F1-model_v4_TED01","TED novel fold AF-G2KLZ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A856793","Micavibrio aeruginosavorus ARL-13"]]},{"id":"NCBITaxon:856822","l":"Fonsecaea nubica","na":1,"nb":1,"a":[["TED%3AAF-A0A178C6J8-F1-model_v4_TED01","TED novel fold AF-A0A178C6J8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A856822","Fonsecaea nubica"]]},{"id":"NCBITaxon:858221","l":"Trichoderma parareesei","na":1,"nb":1,"a":[["TED%3AAF-A0A2H2ZVN3-F1-model_v4_TED01","TED novel fold AF-A0A2H2ZVN3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A858221","Trichoderma parareesei"]]},{"id":"NCBITaxon:858422","l":"Bradyrhizobium sp. CCBAU 051011","na":1,"nb":1,"a":[["TED%3AAF-A0A7Z2SPQ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Z2SPQ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A858422","Bradyrhizobium sp. CCBAU 051011"]]},{"id":"NCBITaxon:858640","l":"Photobacterium jeanii","na":1,"nb":1,"a":[["TED%3AAF-A0A178KKM2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A178KKM2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A858640","Photobacterium jeanii"]]},{"id":"NCBITaxon:859653","l":"alpha proteobacterium HIMB5","na":1,"nb":1,"a":[["TED%3AAF-J9YWK1-F1-model_v4_TED01","TED highly-symmetric fold AF-J9YWK1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A859653","alpha proteobacterium HIMB5"]]},{"id":"NCBITaxon:860243","l":"Nocardioides panzhihuensis","na":1,"nb":1,"a":[["TED%3AAF-A0A7Z0DQT6-F1-model_v4_TED02","TED novel fold AF-A0A7Z0DQT6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A860243","Nocardioides panzhihuensis"]]},{"id":"NCBITaxon:86035","l":"","na":1,"nb":1,"a":[["Pfam%3APF02333","Phytase"]],"b":[["NCBITaxon%3A86035","Bacillus sp. DS11"]]},{"id":"NCBITaxon:86038","l":"","na":1,"nb":1,"a":[["Pfam%3APF14592","Chondroitinase B"]],"b":[["NCBITaxon%3A86038","Pseudomonas sp. OS-ALG-9"]]},{"id":"NCBITaxon:861266","l":"Pseudarthrobacter siccitolerans","na":1,"nb":1,"a":[["TED%3AAF-A0A024H200-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A024H200-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A861266","Pseudarthrobacter siccitolerans"]]},{"id":"NCBITaxon:861865","l":"Edaphosphingomonas laterariae","na":1,"nb":1,"a":[["TED%3AAF-A0A239BGP1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A239BGP1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A861865","Edaphosphingomonas laterariae"]]},{"id":"NCBITaxon:862126","l":"Mucilaginibacter ginsenosidivorax","na":1,"nb":1,"a":[["TED%3AAF-A0A5B8W6T2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B8W6T2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A862126","Mucilaginibacter ginsenosidivorax"]]},{"id":"NCBITaxon:862751","l":"","na":1,"nb":1,"a":[["Pfam%3APF27525","LAM55 pectate lyase-like domain"]],"b":[["NCBITaxon%3A862751","Streptomyces sp. SirexAA-E"]]},{"id":"NCBITaxon:863522","l":"Bryocella elongata","na":1,"nb":1,"a":[["TED%3AAF-A0A1H5ZBZ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H5ZBZ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A863522","Bryocella elongata"]]},{"id":"NCBITaxon:864828","l":"Pseudoduganella umbonata","na":1,"nb":1,"a":[["TED%3AAF-A0A4P8HHX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P8HHX4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A864828","Pseudoduganella umbonata"]]},{"id":"NCBITaxon:86630","l":"Rhizopus azygosporus","na":1,"nb":1,"a":[["TED%3AAF-A0A367INI1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A367INI1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A86630","Rhizopus azygosporus"]]},{"id":"NCBITaxon:868131","l":"","na":1,"nb":1,"a":[["TED%3AAF-F6D859-F1-model_v4_TED01","TED highly-symmetric fold AF-F6D859-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A868131","Methanobacterium paludis"]]},{"id":"NCBITaxon:869675","l":"Escherichia coli 1.2264","na":1,"nb":1,"a":[["TED%3AAF-I2SNR3-F1-model_v4_TED01","TED highly-symmetric fold AF-I2SNR3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A869675","Escherichia coli 1.2264"]]},{"id":"NCBITaxon:869754","l":"Metschnikowia bicuspidata var. bicuspidata NRRL YB-4993","na":1,"nb":1,"a":[["TED%3AAF-A0A1A0HIK0-F1-model_v4_TED01","TED novel fold AF-A0A1A0HIK0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A869754","Metschnikowia bicuspidata var. bicuspidata NRRL YB-4993"]]},{"id":"NCBITaxon:871585","l":"","na":1,"nb":1,"a":[["Pfam%3APF22290","Dimethylamine monooxygenase subunit DmmA-like, N-terminal domain"]],"b":[["NCBITaxon%3A871585","Acinetobacter pittii PHEA-2"]]},{"id":"NCBITaxon:871741","l":"Brevundimonas viscosa","na":1,"nb":1,"a":[["TED%3AAF-A0A1I6NPZ5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I6NPZ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A871741","Brevundimonas viscosa"]]},{"id":"NCBITaxon:872965","l":"Ardenticatena maritima","na":1,"nb":1,"a":[["TED%3AAF-A0A0M9UCT0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0M9UCT0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A872965","Ardenticatena maritima"]]},{"id":"NCBITaxon:872970","l":"Amphibacillus marinus","na":1,"nb":1,"a":[["TED%3AAF-A0A1H8TVF9-F1-model_v4_TED02","TED novel fold AF-A0A1H8TVF9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A872970","Amphibacillus marinus"]]},{"id":"NCBITaxon:872983","l":"Metamycoplasma neophronis","na":1,"nb":1,"a":[["TED%3AAF-A0A505IVY3-F1-model_v4_TED03","TED novel fold AF-A0A505IVY3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A872983","Metamycoplasma neophronis"]]},{"id":"NCBITaxon:873128","l":"Meiothermus sp. Pnk-1","na":1,"nb":1,"a":[["TED%3AAF-A0A323U337-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A323U337-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A873128","Meiothermus sp. Pnk-1"]]},{"id":"NCBITaxon:875330","l":"Pseudomonas savastanoi pv. glycinea str. race 4","na":1,"nb":1,"a":[["TED%3AAF-F3CC35-F1-model_v4_TED01","TED highly-symmetric fold AF-F3CC35-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A875330","Pseudomonas savastanoi pv. glycinea str. race 4"]]},{"id":"NCBITaxon:875932","l":"Photobacterium sanguinicancri","na":1,"nb":1,"a":[["TED%3AAF-A0A264TE15-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A264TE15-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A875932","Photobacterium sanguinicancri"]]},{"id":"NCBITaxon:876091","l":"uncultured Oscillibacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A1C5WBD3-F1-model_v4_TED01","TED novel fold AF-A0A1C5WBD3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A876091","uncultured Oscillibacter sp."]]},{"id":"NCBITaxon:878220","l":"Chryseobacterium sp. StRB126","na":1,"nb":1,"a":[["TED%3AAF-A0A077KU37-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A077KU37-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A878220","Chryseobacterium sp. StRB126"]]},{"id":"NCBITaxon:880534","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2P9BKD8-F1-model_v4_TED02","TED novel fold AF-A0A2P9BKD8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A880534","Plasmodium praefalciparum (nom. ined.)"]]},{"id":"NCBITaxon:882626","l":"Pseudoalteromonas xiamenensis","na":1,"nb":1,"a":[["TED%3AAF-A0A8A6BGH7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8A6BGH7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A882626","Pseudoalteromonas xiamenensis"]]},{"id":"NCBITaxon:883812","l":"Parageobacillus galactosidasius","na":1,"nb":1,"a":[["TED%3AAF-A0A226QSZ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A226QSZ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A883812","Parageobacillus galactosidasius"]]},{"id":"NCBITaxon:885475","l":"Salipaludibacillus neizhouensis","na":1,"nb":1,"a":[["TED%3AAF-A0A3A9K827-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3A9K827-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A885475","Salipaludibacillus neizhouensis"]]},{"id":"NCBITaxon:88771","l":"","na":1,"nb":1,"a":[["Pfam%3APF07249","Cerato-platanin"]],"b":[["NCBITaxon%3A88771","Ceratocystis platani"]]},{"id":"NCBITaxon:88773","l":"","na":1,"nb":1,"a":[["Pfam%3APF07232","Putative rep protein (DUF1424)"]],"b":[["NCBITaxon%3A88773","Halobacterium sp. GN101"]]},{"id":"NCBITaxon:888050","l":"Schaalia cardiffensis F0333","na":1,"nb":1,"a":[["TED%3AAF-N6W7R5-F1-model_v4_TED03","TED novel fold AF-N6W7R5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A888050","Schaalia cardiffensis F0333"]]},{"id":"NCBITaxon:888059","l":"Capnocytophaga sp. oral taxon 338 str. F0234","na":1,"nb":1,"a":[["TED%3AAF-F0IGW8-F1-model_v4_TED02","TED highly-symmetric fold AF-F0IGW8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A888059","Capnocytophaga sp. oral taxon 338 str. F0234"]]},{"id":"NCBITaxon:89489","l":"Monascus ruber","na":1,"nb":1,"a":[["Pfam%3APF17828","N-terminal domain in fatty acid synthase subunit beta"]],"b":[["NCBITaxon%3A89489","Monascus ruber"]]},{"id":"NCBITaxon:895","l":"Desulfobulbus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A432QRX5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A432QRX5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A895","Desulfobulbus sp."]]},{"id":"NCBITaxon:903503","l":"","na":1,"nb":1,"a":[["Pfam%3APF04999","Cell division protein FtsL"]],"b":[["NCBITaxon%3A903503","Candidatus Moranella endobia PCIT"]]},{"id":"NCBITaxon:903983","l":"Enterococcus quebecensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1E5GSS5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1E5GSS5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A903983","Enterococcus quebecensis"]]},{"id":"NCBITaxon:90427","l":"Methanoculleus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7C1DX95-F1-model_v4_TED01","TED novel fold AF-A0A7C1DX95-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A90427","Methanoculleus sp."]]},{"id":"NCBITaxon:905079","l":"","na":1,"nb":1,"a":[["TED%3AAF-L1IJ61-F1-model_v4_TED01","TED highly-symmetric fold AF-L1IJ61-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A905079","Guillardia theta CCMP2712"]]},{"id":"NCBITaxon:906888","l":"Nonlabens ulvanivorans","na":1,"nb":1,"a":[["Pfam%3APF24208","Endo-acting ulvan lyase beta-trefoil domain"]],"b":[["NCBITaxon%3A906888","Nonlabens ulvanivorans"]]},{"id":"NCBITaxon:909943","l":"SAR116 cluster alpha proteobacterium HIMB100","na":1,"nb":1,"a":[["TED%3AAF-G5ZX74-F1-model_v4_TED02","TED novel fold AF-G5ZX74-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A909943","SAR116 cluster alpha proteobacterium HIMB100"]]},{"id":"NCBITaxon:911045","l":"","na":1,"nb":1,"a":[["TED%3AAF-G8PRS6-F1-model_v4_TED01","TED highly-symmetric fold AF-G8PRS6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A911045","Pseudovibrio sp. FO-BEG1"]]},{"id":"NCBITaxon:911242","l":"Pseudomonas sp. CFII64","na":1,"nb":1,"a":[["TED%3AAF-S6GRU4-F1-model_v4_TED01","TED highly-symmetric fold AF-S6GRU4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A911242","Pseudomonas sp. CFII64"]]},{"id":"NCBITaxon:912552","l":"Conexibacter arvalis","na":1,"nb":1,"a":[["TED%3AAF-A0A840I9W8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A840I9W8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A912552","Conexibacter arvalis"]]},{"id":"NCBITaxon:913252","l":"Paracoccus limosus","na":1,"nb":1,"a":[["TED%3AAF-A0A844H437-F1-model_v4_TED02","TED novel fold AF-A0A844H437-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A913252","Paracoccus limosus"]]},{"id":"NCBITaxon:914150","l":"Kangiella geojedonensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0F6TP00-F1-model_v4_TED03","TED novel fold AF-A0A0F6TP00-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A914150","Kangiella geojedonensis"]]},{"id":"NCBITaxon:914238","l":"Rhynchosporium agropyri","na":1,"nb":1,"a":[["TED%3AAF-A0A1E1JTN7-F1-model_v4_TED02","TED novel fold AF-A0A1E1JTN7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A914238","Rhynchosporium agropyri"]]},{"id":"NCBITaxon:91464","l":"","na":1,"nb":1,"a":[["TED%3AAF-B4WV80-F1-model_v4_TED01","TED highly-symmetric fold AF-B4WV80-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A91464","Synechococcus sp. PCC 7335"]]},{"id":"NCBITaxon:915472","l":"Pseudomonas nitritireducens","na":1,"nb":1,"a":[["TED%3AAF-A0A7W7KS29-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W7KS29-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A46680","Pseudomonas nitroreducens"]]},{"id":"NCBITaxon:91928","l":"Exophiala spinifera","na":1,"nb":1,"a":[["TED%3AAF-A0A0D1ZM77-F1-model_v4_TED02","TED novel fold AF-A0A0D1ZM77-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A91928","Exophiala spinifera"]]},{"id":"NCBITaxon:91992","l":"Triparma pacifica","na":1,"nb":1,"a":[["TED%3AAF-A0A7S2VVQ4-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7S2VVQ4-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A91992","Triparma pacifica"]]},{"id":"NCBITaxon:924","l":"Thiobacillus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7L5YHX1-F1-model_v4_TED02","TED novel fold AF-A0A7L5YHX1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A924","Thiobacillus sp."]]},{"id":"NCBITaxon:92402","l":"Metamycoplasma equirhinis","na":1,"nb":1,"a":[["TED%3AAF-A0A501SHD3-F1-model_v4_TED03","TED novel fold AF-A0A501SHD3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A92402","Metamycoplasma equirhinis"]]},{"id":"NCBITaxon:92696","l":"Steccherinum ochraceum","na":1,"nb":1,"a":[["TED%3AAF-A0A4R0RWY1-F1-model_v4_TED01","TED novel fold AF-A0A4R0RWY1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A92696","Steccherinum ochraceum"]]},{"id":"NCBITaxon:92742","l":"","na":1,"nb":1,"a":[["Pfam%3APF26358","EcdD/BsdD phenolic detoxification"]],"b":[["NCBITaxon%3A92742","Streptomyces sp. D7"]]},{"id":"NCBITaxon:927704","l":"","na":1,"nb":1,"a":[["TED%3AAF-I0GUW5-F1-model_v4_TED01","TED highly-symmetric fold AF-I0GUW5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A927704","Selenomonas ruminantium subsp. lactilytica TAM6421"]]},{"id":"NCBITaxon:930805","l":"Halioglobus japonicus","na":1,"nb":1,"a":[["TED%3AAF-A0A2N5YIE4-F1-model_v4_TED03","TED novel fold AF-A0A2N5YIE4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A930805","Halioglobus japonicus"]]},{"id":"NCBITaxon:930943","l":"","na":1,"nb":1,"a":[["TED%3AAF-F0NJI0-F1-model_v4_TED01","TED novel fold AF-F0NJI0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A930943","Saccharolobus islandicus HVE10/4"]]},{"id":"NCBITaxon:930945","l":"","na":1,"nb":1,"a":[["Pfam%3APF01918","Alba"]],"b":[["NCBITaxon%3A930945","Saccharolobus islandicus REY15A"]]},{"id":"NCBITaxon:93221","l":"Pandoraea pulmonicola","na":1,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_TBH_Asp","T-E-associated metallophore aspartate beta-hydroxylase family"]],"b":[["NCBITaxon%3A93221","Pandoraea pulmonicola"]]},{"id":"NCBITaxon:932213","l":"Serratia sp. M24T3","na":1,"nb":1,"a":[["TED%3AAF-I0QTC8-F1-model_v4_TED01","TED highly-symmetric fold AF-I0QTC8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A932213","Serratia sp. M24T3"]]},{"id":"NCBITaxon:93222","l":"Pandoraea sputorum","na":1,"nb":1,"a":[["TED%3AAF-A0A5E5BHU5-F1-model_v4_TED02","TED novel fold AF-A0A5E5BHU5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A93222","Pandoraea sputorum"]]},{"id":"NCBITaxon:932660","l":"Haloarcula sebkhae","na":1,"nb":1,"a":[["TED%3AAF-A0A830EH45-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A830EH45-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A932660","Haloarcula sebkhae"]]},{"id":"NCBITaxon:932677","l":"","na":1,"nb":1,"a":[["Pfam%3APF10014","2OG-Fe dioxygenase"]],"b":[["NCBITaxon%3A932677","Pantoea ananatis AJ13355"]]},{"id":"NCBITaxon:933852","l":"Serendipita vermifera MAFF 305830","na":1,"nb":1,"a":[["TED%3AAF-A0A0C3B4B7-F1-model_v4_TED02","TED novel fold AF-A0A0C3B4B7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A933852","Serendipita vermifera MAFF 305830"]]},{"id":"NCBITaxon:933926","l":"Sinobacterium caligoides","na":1,"nb":1,"a":[["TED%3AAF-A0A3N2D566-F1-model_v4_TED03","TED novel fold AF-A0A3N2D566-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A933926","Sinobacterium caligoides"]]},{"id":"NCBITaxon:935","l":"Thiomicrospira sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A356VSR5-F1-model_v4_TED01","TED novel fold AF-A0A356VSR5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A935","Thiomicrospira sp."]]},{"id":"NCBITaxon:935222","l":"Flavobacterium sp. Sr18","na":1,"nb":1,"a":[["TED%3AAF-A0A6G7CDS6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6G7CDS6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A935222","Flavobacterium sp. Sr18"]]},{"id":"NCBITaxon:935700","l":"Jannaschia aquimarina","na":1,"nb":1,"a":[["TED%3AAF-A0A0D1CPL0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D1CPL0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A935700","Jannaschia aquimarina"]]},{"id":"NCBITaxon:936138","l":"Phorcysia thermohydrogeniphila","na":1,"nb":1,"a":[["TED%3AAF-A0A4V2PDB0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A4V2PDB0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A936138","Phorcysia thermohydrogeniphila"]]},{"id":"NCBITaxon:936381","l":"Selenomonas sp. CM52","na":1,"nb":1,"a":[["TED%3AAF-J4WN32-F1-model_v4_TED01","TED highly-symmetric fold AF-J4WN32-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A936381","Selenomonas sp. CM52"]]},{"id":"NCBITaxon:936549","l":"Actinomyces sp. ICM54","na":1,"nb":1,"a":[["TED%3AAF-Z4X213-F1-model_v4_TED02","TED novel fold AF-Z4X213-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A936549","Actinomyces sp. ICM54"]]},{"id":"NCBITaxon:936556","l":"Peptostreptococcaceae bacterium AS15","na":1,"nb":1,"a":[["TED%3AAF-J4ULD9-F1-model_v4_TED01","TED highly-symmetric fold AF-J4ULD9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A936556","Peptostreptococcaceae bacterium AS15"]]},{"id":"NCBITaxon:936563","l":"Fusobacterium sp. CM22","na":1,"nb":1,"a":[["TED%3AAF-X8HCV0-F1-model_v4_TED03","TED highly-symmetric fold AF-X8HCV0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A936563","Fusobacterium sp. CM22"]]},{"id":"NCBITaxon:936565","l":"Klebsiella sp. OBRC7","na":1,"nb":1,"a":[["TED%3AAF-J4WXU7-F1-model_v4_TED01","TED novel fold AF-J4WXU7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A936565","Klebsiella sp. OBRC7"]]},{"id":"NCBITaxon:936574","l":"","na":1,"nb":1,"a":[["TED%3AAF-X8GZH1-F1-model_v4_TED04","TED novel fold AF-X8GZH1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A936574","Shuttleworthella sp. MSX8B"]]},{"id":"NCBITaxon:936591","l":"Veillonella sp. ICM51a","na":1,"nb":1,"a":[["TED%3AAF-X8HDK6-F1-model_v4_TED01","TED highly-symmetric fold AF-X8HDK6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A936591","Veillonella sp. ICM51a"]]},{"id":"NCBITaxon:938405","l":"Belnapia rosea","na":1,"nb":1,"a":[["TED%3AAF-A0A1G6YYP0-F1-model_v4_TED01","TED novel fold AF-A0A1G6YYP0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A938405","Belnapia rosea"]]},{"id":"NCBITaxon:93944","l":"Nonomuraea gerenzanensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1M4EK07-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M4EK07-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A93944","Nonomuraea gerenzanensis"]]},{"id":"NCBITaxon:94001","l":"","na":1,"nb":1,"a":[["Pfam%3APF09721","Transmembrane exosortase (Exosortase_EpsH)"]],"b":[["NCBITaxon%3A94001","Methylobacillus sp. 12S"]]},{"id":"NCBITaxon:941280","l":"Escherichia coli O25b:H4","na":1,"nb":1,"a":[["PROSITE%3APS00146","Beta-lactamase class-A active site"]],"b":[["NCBITaxon%3A941280","Escherichia coli O25b:H4"]]},{"id":"NCBITaxon:94208","l":"Tolypocladium paradoxum","na":1,"nb":1,"a":[["TED%3AAF-A0A2S4KXL0-F1-model_v4_TED01","TED novel fold AF-A0A2S4KXL0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A94208","Tolypocladium paradoxum"]]},{"id":"NCBITaxon:943346","l":"Sporomusa sp. KB1","na":1,"nb":1,"a":[["TED%3AAF-A0A562GGV9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A562GGV9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A943346","Sporomusa sp. KB1"]]},{"id":"NCBITaxon:944288","l":"Plicaturopsis crispa FD-325 SS-3","na":1,"nb":1,"a":[["TED%3AAF-A0A0C9SUT9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0C9SUT9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A944288","Plicaturopsis crispa FD-325 SS-3"]]},{"id":"NCBITaxon:945681","l":"Acetobacter pomorum DM001","na":1,"nb":1,"a":[["TED%3AAF-F1YV49-F1-model_v4_TED01","TED highly-symmetric fold AF-F1YV49-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A945681","Acetobacter pomorum DM001"]]},{"id":"NCBITaxon:947515","l":"Ectothiorhodospiraceae bacterium BW-2","na":1,"nb":1,"a":[["TED%3AAF-A0A5C2HRK8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C2HRK8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A947515","Ectothiorhodospiraceae bacterium BW-2"]]},{"id":"NCBITaxon:94868","l":"Lacrimispora algidixylanolytica","na":1,"nb":1,"a":[["TED%3AAF-A0A419SY83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A419SY83-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A94868","Lacrimispora algidixylanolytica"]]},{"id":"NCBITaxon:95161","l":"Saccharopolyspora flava","na":1,"nb":1,"a":[["TED%3AAF-A0A1I6QMW8-F1-model_v4_TED03","TED novel fold AF-A0A1I6QMW8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A95161","Saccharopolyspora flava"]]},{"id":"NCBITaxon:96901","l":"Pseudomonas synxantha BG33R","na":1,"nb":1,"a":[["TED%3AAF-I4L8E7-F1-model_v4_TED04","TED highly-symmetric fold AF-I4L8E7-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A96901","Pseudomonas synxantha BG33R"]]},{"id":"NCBITaxon:97479","l":"Pyrenophora teres f. teres","na":1,"nb":1,"a":[["TED%3AAF-A0A6S6VY77-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6S6VY77-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A97479","Pyrenophora teres f. teres"]]},{"id":"NCBITaxon:97480","l":"Pyrenophora teres f. maculata","na":1,"nb":1,"a":[["TED%3AAF-A0A6S6UPH8-F1-model_v4_TED03","TED novel fold AF-A0A6S6UPH8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A97480","Pyrenophora teres f. maculata"]]},{"id":"NCBITaxon:979970","l":"Acetobacteroides hydrogenigenes","na":1,"nb":1,"a":[["TED%3AAF-A0A4R2EML9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4R2EML9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A979970","Acetobacteroides hydrogenigenes"]]},{"id":"NCBITaxon:979981","l":"Fonsecaea multimorphosa","na":1,"nb":1,"a":[["TED%3AAF-A0A178CG13-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A178CG13-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A979981","Fonsecaea multimorphosa"]]},{"id":"NCBITaxon:980252","l":"Bremerella alba","na":1,"nb":1,"a":[["TED%3AAF-A0A7V9A964-F1-model_v4_TED01","TED novel fold AF-A0A7V9A964-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A980252","Bremerella alba"]]},{"id":"NCBITaxon:980271","l":"Aporhodopirellula rubra","na":1,"nb":1,"a":[["TED%3AAF-A0A7W5H7H8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7W5H7H8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A980271","Aporhodopirellula rubra"]]},{"id":"NCBITaxon:981385","l":"Thermotomaculum hydrothermale","na":1,"nb":1,"a":[["TED%3AAF-A0A7R6PZT0-F1-model_v4_TED01","TED novel fold AF-A0A7R6PZT0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A981385","Thermotomaculum hydrothermale"]]},{"id":"NCBITaxon:983544","l":"","na":1,"nb":1,"a":[["TED%3AAF-F6GEK2-F1-model_v4_TED03","TED highly-symmetric fold AF-F6GEK2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A983544","Lacinutrix sp. 5H-3-7-4"]]},{"id":"NCBITaxon:983917","l":"","na":1,"nb":1,"a":[["TED%3AAF-I0HSL7-F1-model_v4_TED04","TED novel fold AF-I0HSL7-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A983917","Rubrivivax gelatinosus IL144"]]},{"id":"NCBITaxon:98403","l":"Drechmeria coniospora","na":1,"nb":1,"a":[["TED%3AAF-A0A151GP24-F1-model_v4_TED02","TED novel fold AF-A0A151GP24-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A98403","Drechmeria coniospora"]]},{"id":"NCBITaxon:985053","l":"","na":1,"nb":1,"a":[["TED%3AAF-F0QT87-F1-model_v4_TED01","TED novel fold AF-F0QT87-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A985053","Vulcanisaeta moutnovskia 768-28"]]},{"id":"NCBITaxon:985250","l":"Sinimarinibacterium flocculans","na":1,"nb":1,"a":[["TED%3AAF-A0A318EDW9-F1-model_v4_TED01","TED novel fold AF-A0A318EDW9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A985250","Sinimarinibacterium flocculans"]]},{"id":"NCBITaxon:986946","l":"Aspergillus novoparasiticus","na":1,"nb":1,"a":[["TED%3AAF-A0A5N6FAW7-F1-model_v4_TED02","TED novel fold AF-A0A5N6FAW7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A986946","Aspergillus novoparasiticus"]]},{"id":"NCBITaxon:987040","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2A2TND5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A2TND5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A987040","Brunnivagina elsteri CCALA 953"]]},{"id":"NCBITaxon:990078","l":"Bradyrhizobium huanghuaihaiense","na":1,"nb":1,"a":[["TED%3AAF-A0A562QY54-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A562QY54-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A990078","Bradyrhizobium huanghuaihaiense"]]},{"id":"NCBITaxon:992286","l":"Rhodovulum bhavnagarense","na":1,"nb":1,"a":[["TED%3AAF-A0A4V2SWD3-F1-model_v4_TED02","TED novel fold AF-A0A4V2SWD3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A992286","Rhodovulum bhavnagarense"]]},{"id":"NCBITaxon:993414","l":"Naumannella halotolerans","na":1,"nb":1,"a":[["TED%3AAF-A0A4R7J3W9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R7J3W9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A993414","Naumannella halotolerans"]]},{"id":"NCBITaxon:993689","l":"Metallibacterium scheffleri","na":1,"nb":1,"a":[["TED%3AAF-A0A4S3KQL1-F1-model_v4_TED02","TED novel fold AF-A0A4S3KQL1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A993689","Metallibacterium scheffleri"]]},{"id":"NCBITaxon:993692","l":"Companilactobacillus kimchiensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0R2L4Q0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0R2L4Q0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A993692","Companilactobacillus kimchiensis"]]},{"id":"NCBITaxon:994086","l":"Hydnomerulius pinastri MD-312","na":1,"nb":1,"a":[["TED%3AAF-A0A0C9W3H2-F1-model_v4_TED01","TED novel fold AF-A0A0C9W3H2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A994086","Hydnomerulius pinastri MD-312"]]},{"id":"NCBITaxon:994334","l":"Jimgerdemannia flammicorona","na":1,"nb":1,"a":[["TED%3AAF-A0A433D364-F1-model_v4_TED02","TED novel fold AF-A0A433D364-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A994334","Jimgerdemannia flammicorona"]]},{"id":"NCBITaxon:996115","l":"Ruegeria intermedia","na":1,"nb":1,"a":[["TED%3AAF-A0A1M4ZXW0-F1-model_v4_TED03","TED novel fold AF-A0A1M4ZXW0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A996115","Ruegeria intermedia"]]},{"id":"NCBITaxon:996342","l":"Marivita hallyeonensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1M5S2D4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M5S2D4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A996342","Marivita hallyeonensis"]]},{"id":"NCBITaxon:997874","l":"Bacteroides cellulosilyticus CL02T12C19","na":1,"nb":1,"a":[["TED%3AAF-I9R2V8-F1-model_v4_TED01","TED highly-symmetric fold AF-I9R2V8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A997874","Bacteroides cellulosilyticus CL02T12C19"]]},{"id":"NCBITaxon:997887","l":"Bacteroides salyersiae CL02T12C01","na":1,"nb":1,"a":[["TED%3AAF-I9TGQ7-F1-model_v4_TED01","TED highly-symmetric fold AF-I9TGQ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A997887","Bacteroides salyersiae CL02T12C01"]]},{"id":"NCBITaxon:999419","l":"Parabacteroides johnsonii CL02T12C29","na":1,"nb":1,"a":[["TED%3AAF-K6AIB7-F1-model_v4_TED03","TED novel fold AF-K6AIB7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A999419","Parabacteroides johnsonii CL02T12C29"]]},{"id":"NCBITaxon:999422","l":"","na":1,"nb":1,"a":[["TED%3AAF-H1HK05-F1-model_v4_TED03","TED highly-symmetric fold AF-H1HK05-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A999422","Segatella maculosa OT 289"]]},{"id":"NCBITaxon:999898","l":"Peptococcaceae bacterium CEB3","na":1,"nb":1,"a":[["TED%3AAF-A0A0J1F8G9-F1-model_v4_TED02","TED novel fold AF-A0A0J1F8G9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A999898","Peptococcaceae bacterium CEB3"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/TraitMech--ProteinTraitsMech.json b/assets/fleet/edges/TraitMech--ProteinTraitsMech.json index 6817d6d..74afd6f 100644 --- a/assets/fleet/edges/TraitMech--ProteinTraitsMech.json +++ b/assets/fleet/edges/TraitMech--ProteinTraitsMech.json @@ -1 +1 @@ -{"a":"TraitMech","b":"ProteinTraitsMech","base":{"TraitMech":"https://culturebotai.github.io/TraitMech/pages/traits/","ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record="},"n":707,"by":{"GO":248,"NCBITaxon":136,"METPO":111,"CHEBI":109,"UniProt":56,"InterPro":47},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":65,"nb":145,"a":[["ecology/biosafety_level.html","biosafety level"],["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/host_associated.html","host-associated"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/halophily_preference.html","halophily preference"]],"b":[["IDPO%3A0000033","flexible linker"],["IDPO%3A0000014","order to disorder"],["IDPO%3A0000004","pre-molten globule"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":30,"nb":1616,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"]],"b":[["EC%3A1.1.1.170","3beta-hydroxysteroid-4alpha-carboxylate 3-dehydrogenase (decarboxylating)"],["EC%3A1.1.1.262","4-hydroxythreonine-4-phosphate dehydrogenase"],["EC%3A1.1.1.276","serine 3-dehydrogenase (NADP(+))"],["EC%3A1.1.1.286","isocitrate--homoisocitrate dehydrogenase"],["EC%3A1.1.1.305","UDP-glucuronic acid oxidase (UDP-4-keto-hexauronic acid decarboxylating)"],["EC%3A1.1.1.343","phosphogluconate dehydrogenase (NAD(+)-dependent, decarboxylating)"]]},{"id":"METPO:1000631","l":"trophic type","na":30,"nb":29,"a":[["physiology/autotrophic.html","autotrophic"],["physiology/carboxydotrophic.html","carboxydotrophic"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"]],"b":[["METPO%3A1000632","autotrophic"],["METPO%3A1000633","carboxydotrophic"],["METPO%3A1000634","chemoautolithotrophic"],["METPO%3A1000635","chemoautotrophic"],["METPO%3A1000636","chemoheterotrophic"],["METPO%3A1000637","chemolithoautotrophic"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":26,"nb":17470,"a":[["environment/ph_phenotype_with_numerical_limits.html","pH phenotype with numerical limits"],["environment/temperature_optimum_mid4.html","temperature optimum mid4"],["genomics/rnlab_system.html","RnlAB system"],["metabolism/metabolism.html","metabolism"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/respiration.html","respiration"]],"b":[["EC%3A1.1.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.16.-.-","Oxidizing metal ions"],["EC%3A1.18.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.7.-","With an iron-sulfur protein as acceptor"]]},{"id":"CHEBI:15379","l":"dioxygen","na":25,"nb":3896,"a":[["environment/aerobic.html","aerobic"],["environment/aerotolerant.html","aerotolerant"],["environment/anaerobic.html","anaerobic"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_aerobic.html","facultatively aerobic"],["environment/facultatively_anaerobic.html","facultatively anaerobic"]],"b":[["EC%3A1.1.3.10","pyranose oxidase"],["EC%3A1.1.3.11","L-sorbose oxidase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.3.13","alcohol oxidase"],["EC%3A1.1.3.14","catechol oxidase (dimerizing)"],["EC%3A1.1.3.15","(S)-2-hydroxy-acid oxidase"]]},{"id":"CHEBI:30616","l":"","na":24,"nb":2111,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/fermentation.html","Fermentation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/nitrogen_fixation.html","nitrogen fixation"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_30616","requires ATP(4−)"],["EC%3A1.13.12.7","firefly luciferase"],["EC%3A1.16.99.1","[Co(II) methylated amine-specific corrinoid protein] reductase"],["EC%3A1.18.6.1","nitrogenase"],["EC%3A1.18.6.2","vanadium-dependent nitrogenase"],["EC%3A1.19.6.1","nitrogenase (flavodoxin)"]]},{"id":"METPO:1000059","l":"phenotype","na":117,"nb":18,"a":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/habitat_association.html","habitat association"],["ecology/pathogenic_to_host.html","pathogenic to host"],["ecology/predatory_bacterium.html","predatory bacterium"],["ecology/saprotrophy.html","saprotrophy"],["ecology/symbiosis.html","symbiosis"]],"b":[["METPO%3A1000629","halophily preference"],["METPO%3A1007074","metal tolerance"],["METPO%3A1007073","osmotic tolerance"],["METPO%3A1000601","oxygen preference"],["METPO%3A1003000","pH growth preference"],["METPO%3A1000059","phenotype"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":15,"nb":46,"a":[["ecology/biosafety_level_2.html","biosafety level 2"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/coccus_shaped.html","coccus shaped"]],"b":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF13166","AAA domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF27533","CapK C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"]]},{"id":"GO:0015977","l":"carbon fixation","na":15,"nb":30,"a":[["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]],"b":[["GO%3A0009760","C4 photosynthesis"],["GO%3A0009761","CAM photosynthesis"],["GO%3A0043427","carbon fixation by 3-hydroxypropionate cycle"],["GO%3A0030634","carbon fixation by acetyl-CoA pathway"],["GO%3A0015977","carbon fixation"],["GO%3A0019643","reductive tricarboxylic acid cycle"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":18,"nb":15,"a":[["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/neutrophilic.html","neutrophilic"],["environment/non_halophilic.html","non halophilic"],["genomics/spbk_system.html","SpbK system"]],"b":[["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["Pfam%3APF14562","Restriction endonuclease BglI"],["Pfam%3APF09195","Restriction endonuclease BglII/BglIII"],["Pfam%3APF09208","Restriction endonuclease MspI"]]},{"id":"GO:0051453","l":"regulation of intracellular pH","na":17,"nb":15,"a":[["environment/acidophilic.html","acidophilic"],["environment/acidotolerant.html","acidotolerant"],["environment/alkalotolerant.html","alkalotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"]],"b":[["ComplexPortal%3ACPX-3090","Glutathione-regulated potassium-efflux system KefB-KefG complex"],["ComplexPortal%3ACPX-2543","Glutathione-regulated potassium-efflux system KefC-KefF complex"],["ComplexPortal%3ACPX-26449","Sodium/proton exchanger complex, NHE1-CHP1 variant"],["ComplexPortal%3ACPX-26462","Sodium/proton exchanger complex, NHE1-CHP2 variant"],["ComplexPortal%3ACPX-26464","Sodium/proton exchanger complex, NHE1-CHP3 variant"],["ComplexPortal%3ACPX-26469","Sodium/proton exchanger complex, NHE2-CHP1 variant"]]},{"id":"GO:0045259","l":"proton-transporting ATP synthase complex","na":13,"nb":52,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/fermentation.html","Fermentation"],["metabolism/metabolism.html","metabolism"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/carboxydotrophic.html","carboxydotrophic"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["ComplexPortal%3ACPX-25764","Mitochondrial proton translocating ATP synthase complex"],["ComplexPortal%3ACPX-3281","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-6151","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-8618","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-8619","Mitochondrial proton-transporting ATP synthase complex, testis-specific variant"]]},{"id":"CHEBI:18276","l":"dihydrogen","na":13,"nb":42,"a":[["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/does_not_use_as_electron_donor.html","does not use as electron donor"],["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"]],"b":[["EC%3A1.12.1.2","hydrogen dehydrogenase"],["EC%3A1.12.1.3","hydrogen dehydrogenase (NADP(+))"],["EC%3A1.12.1.4","hydrogenase (NAD(+), ferredoxin)"],["EC%3A1.12.1.5","hydrogen dehydrogenase [NAD(P)(+)]"],["EC%3A1.12.2.1","cytochrome-c3 hydrogenase"],["EC%3A1.12.5.1","hydrogen:quinone oxidoreductase"]]},{"id":"METPO:1000060","l":"metabolism","na":26,"nb":12,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/aromatic_compound_degradation.html","aromatic compound degradation"],["metabolism/arsenite_oxidation.html","arsenite oxidation"],["metabolism/biopolymer_degradation.html","biopolymer degradation"],["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"],["metabolism/carbon_fixation.html","carbon fixation"]],"b":[["METPO%3A1000845","Acetogenesis"],["METPO%3A1002003","Cable bacteria metabolism"],["METPO%3A1000806","Disproportionation"],["METPO%3A1000805","Electron transfer"],["METPO%3A1002005","Fermentation"],["METPO%3A1000846","Homoacetogenesis"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":11,"nb":93,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"],["morphology/carboxysome.html","carboxysome"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17544","requires hydrogencarbonate"],["EC%3A1.13.11.73","methylphosphonate synthase"],["EC%3A1.2.1.27","methylmalonate-semialdehyde dehydrogenase (CoA acylating)"],["EC%3A2.5.1.120","aminodeoxyfutalosine synthase"],["EC%3A2.5.1.143","pyridinium-3,5-biscarboxylic acid mononucleotide synthase"],["EC%3A2.7.2.2","carbamate kinase"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":11,"nb":19,"a":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/aerobic.html","aerobic"],["genomics/avast_system.html","AVAST system"],["genomics/jukab_system.html","JukAB system"],["morphology/motile.html","motile"]],"b":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"],["Pfam%3APF18173","Bacterial HORMA domain 2"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["Pfam%3APF27322","Cap8 HORMA domain"],["Pfam%3APF01526","Tn3 transposase DDE domain"]]},{"id":"GO:0006113","l":"fermentation","na":11,"nb":14,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"],["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["ComplexPortal%3ACPX-281","Hydrogenase-1 complex"],["GO%3A0030645","acetyl-CoA fermentation to butanoate"],["GO%3A0019665","amino acid fermentation"],["GO%3A0019588","anaerobic glycerol catabolic process"],["GO%3A0019658","bifid shunt"],["GO%3A0044577","D-xylose fermentation"]]},{"id":"GO:0004177","l":"aminopeptidase activity","na":10,"nb":58,"a":[["physiology/arginine_arylamidase_activity.html","arginine arylamidase activity"],["physiology/cystine_arylamidase_activity.html","cystine arylamidase activity"],["physiology/glycine_arylamidase_activity.html","glycine arylamidase activity"],["physiology/histidine_arylamidase_activity.html","histidine arylamidase activity"],["physiology/leucine_arylamidase_activity.html","leucine arylamidase activity"],["physiology/phenylalanine_arylamidase_activity.html","phenylalanine arylamidase activity"]],"b":[["EC%3A3.4.11.1","leucyl aminopeptidase"],["EC%3A3.4.11.21","aspartyl aminopeptidase"],["EC%3A3.4.11.22","aminopeptidase I"],["EC%3A3.4.11.5","prolyl aminopeptidase"],["EC%3A3.4.11.6","aminopeptidase B"],["EC%3A3.4.11.9","Xaa-Pro aminopeptidase"]]},{"id":"GO:0022900","l":"electron transport chain","na":10,"nb":50,"a":[["environment/obligately_aerobic.html","obligately aerobic"],["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/electron_transfer.html","Electron transfer"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"]],"b":[["GO%3A0022900","electron transport chain"],["GO%3A0140647","P450-containing electron transport chain"],["GO%3A0009767","photosynthetic electron transport chain"],["GO%3A0022904","respiratory electron transport chain"],["NCBIfam%3ANF058577","4Fe-4S ferredoxin"],["NCBIfam%3ANF042982","8-methylmenaquinol:fumarate reductase flavoprotein subunit"]]},{"id":"GO:0022904","l":"respiratory electron transport chain","na":10,"nb":30,"a":[["metabolism/metabolism.html","metabolism"],["physiology/carboxydotrophic.html","carboxydotrophic"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"]],"b":[["ComplexPortal%3ACPX-865","Electron transfer flavoprotein complex"],["ComplexPortal%3ACPX-2731","Mitochondrial electron transfer flavoprotein complex"],["ComplexPortal%3ACPX-243","Respiratory chain complex I"],["GO%3A0019646","aerobic electron transport chain"],["GO%3A0019645","anaerobic electron transport chain"],["GO%3A0042773","ATP synthesis coupled electron transport"]]},{"id":"METPO:1000601","l":"oxygen preference","na":12,"nb":10,"a":[["environment/aerobic.html","aerobic"],["environment/aerotolerant.html","aerotolerant"],["environment/anaerobic.html","anaerobic"],["environment/capnophilic.html","capnophilic"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_aerobic.html","facultatively aerobic"]],"b":[["METPO%3A1000602","aerobic"],["METPO%3A1000609","aerotolerant"],["METPO%3A1000603","anaerobic"],["METPO%3A1005021","capnophilic"],["METPO%3A1000612","facultative oxygen preference"],["METPO%3A1000608","facultatively aerobic"]]},{"id":"CHEBI:17632","l":"nitrate","na":9,"nb":40,"a":[["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"],["metabolism/does_not_use_as_electron_acceptor.html","does not use as electron acceptor"]],"b":[["EC%3A1.14.12.17","nitric oxide dioxygenase"],["EC%3A1.7.1.1","nitrate reductase (NADH)"],["EC%3A1.7.1.2","nitrate reductase [NAD(P)H]"],["EC%3A1.7.1.3","nitrate reductase (NADPH)"],["EC%3A1.7.5.1","nitrate reductase (quinone)"],["EC%3A1.7.6.1","nitrite dismutase"]]},{"id":"GO:0006970","l":"response to osmotic stress","na":9,"nb":15,"a":[["environment/extremely_halophilic.html","extremely halophilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/halotolerant.html","halotolerant"],["environment/moderately_halophilic.html","moderately halophilic"],["environment/nacl_delta.html","NaCl delta"]],"b":[["GO%3A0071470","cellular response to osmotic stress"],["GO%3A0043575","detection of osmotic stimulus"],["GO%3A0006972","hyperosmotic response"],["GO%3A0006971","hypotonic response"],["GO%3A0010335","response to non-ionic osmotic stress"],["GO%3A0006970","response to osmotic stress"]]},{"id":"GO:0009767","l":"photosynthetic electron transport chain","na":9,"nb":13,"a":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["metabolism/phototrophy.html","phototrophy"],["physiology/photoautotrophic.html","photoautotrophic"],["physiology/photoheterotrophic.html","photoheterotrophic"]],"b":[["GO%3A0009767","photosynthetic electron transport chain"],["GO%3A0009773","photosynthetic electron transport in photosystem I"],["GO%3A0009772","photosynthetic electron transport in photosystem II"],["NCBIfam%3ATIGR01332","cytochrome b559 subunit alpha"],["NCBIfam%3ATIGR01333","cytochrome b559 subunit beta"],["NCBIfam%3ATIGR01156","cytochrome b6-f complex subunit IV"]]},{"id":"CHEBI:15378","l":"hydron","na":8,"nb":14383,"a":[["environment/acidophilic.html","acidophilic"],["environment/acidotolerant.html","acidotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"],["environment/obligately_acidophilic.html","obligately acidophilic"]],"b":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.1.10","L-xylulose reductase"],["EC%3A1.1.1.100","3-oxoacyl-[acyl-carrier-protein] reductase"],["EC%3A1.1.1.101","acylglycerone-phosphate reductase"],["EC%3A1.1.1.102","3-dehydrosphinganine reductase"],["EC%3A1.1.1.103","L-threonine 3-dehydrogenase"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":8,"nb":680,"a":[["environment/aerotolerant.html","aerotolerant"],["environment/microaerophilic.html","microaerophilic"],["environment/microaerotolerant.html","microaerotolerant"],["environment/obligately_aerobic.html","obligately aerobic"],["environment/obligately_anaerobic.html","obligately anaerobic"],["environment/oxygen_preference.html","oxygen preference"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16240","requires hydrogen peroxide"],["EC%3A1.1.3.10","pyranose oxidase"],["EC%3A1.1.3.11","L-sorbose oxidase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.3.13","alcohol oxidase"],["EC%3A1.1.3.15","(S)-2-hydroxy-acid oxidase"]]},{"id":"GO:0009061","l":"anaerobic respiration","na":8,"nb":36,"a":[["environment/anaerobic.html","anaerobic"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["ComplexPortal%3ACPX-4841","Anaerobic glycerol-3-phosphate dehydrogenase complex"],["ComplexPortal%3ACPX-317","Formate hydrogenlyase-H/Hydrogenase-3 complex"],["ComplexPortal%3ACPX-6028","Formate hydrogenlyase-H/Hydrogenase-4 complex"],["ComplexPortal%3ACPX-281","Hydrogenase-1 complex"],["ComplexPortal%3ACPX-282","Hydrogenase-2 complex"],["ComplexPortal%3ACPX-3447","NapAB nitrate reductase complex"]]},{"id":"CHEBI:17750","l":"glycine betaine","na":8,"nb":33,"a":[["environment/euryhaline.html","euryhaline"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/moderately_halophilic.html","moderately halophilic"],["environment/nacl_optimum_mid1.html","NaCl optimum mid1"],["environment/nacl_optimum_mid2.html","NaCl optimum mid2"],["environment/nacl_range_mid2.html","NaCl range mid2"]],"b":[["EC%3A1.1.3.17","choline oxidase"],["EC%3A1.13.11.90","[1-hydroxy-2-(trimethylamino)ethyl]phosphonate dioxygenase (glycine- betaine-forming)"],["EC%3A1.14.13.251","glycine betaine monooxygenase"],["EC%3A1.2.1.8","betaine-aldehyde dehydrogenase"],["EC%3A1.21.4.4","betaine reductase"],["EC%3A2.1.1.157","sarcosine/dimethylglycine N-methyltransferase"]]},{"id":"GO:0009060","l":"aerobic respiration","na":8,"nb":25,"a":[["environment/aerobic.html","aerobic"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_aerobic.html","facultatively aerobic"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/obligately_aerobic.html","obligately aerobic"],["metabolism/aerobic_respiration.html","Aerobic respiration"]],"b":[["ComplexPortal%3ACPX-266","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-577","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-319","Trimethylamine-N-oxide reductase TorAC complex"],["GO%3A0019646","aerobic electron transport chain"],["GO%3A0009060","aerobic respiration"],["GO%3A0019409","aerobic respiration, using ammonia as electron donor"]]},{"id":"METPO:1003000","l":"pH growth preference","na":10,"nb":8,"a":[["environment/acidophilic.html","acidophilic"],["environment/acidotolerant.html","acidotolerant"],["environment/alkalotolerant.html","alkalotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"]],"b":[["METPO%3A1003003","acidophilic"],["METPO%3A1003008","acidotolerant"],["METPO%3A1003002","alkaliphilic"],["METPO%3A1003009","alkalotolerant"],["METPO%3A1003007","facultatively acidophilic"],["METPO%3A1003005","facultatively alkaliphilic"]]},{"id":"METPO:1000613","l":"temperature preference","na":9,"nb":8,"a":[["environment/extreme_hyperthermophilic.html","extreme hyperthermophilic"],["environment/facultative_psychrophilic.html","facultative psychrophilic"],["environment/hyperthermophilic.html","hyperthermophilic"],["environment/mesophilic.html","mesophilic"],["environment/psychrophilic.html","psychrophilic"],["environment/psychrotolerant.html","psychrotolerant"]],"b":[["METPO%3A1000720","facultative psychrophilic"],["METPO%3A1000617","hyperthermophilic"],["METPO%3A1000615","mesophilic"],["METPO%3A1000614","psychrophilic"],["METPO%3A1000618","psychrotolerant"],["METPO%3A1000613","temperature preference"]]},{"id":"CHEBI:15361","l":"pyruvate","na":7,"nb":410,"a":[["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15361","requires pyruvate"],["EC%3A1.1.1.27","L-lactate dehydrogenase"],["EC%3A1.1.1.28","D-lactate dehydrogenase"],["EC%3A1.1.1.38","malate dehydrogenase (oxaloacetate-decarboxylating)"],["EC%3A1.1.1.39","malate dehydrogenase (decarboxylating)"],["EC%3A1.1.1.40","malate dehydrogenase (oxaloacetate-decarboxylating) (NADP(+))"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":7,"nb":396,"a":[["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/iron_oxidation.html","iron oxidation"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29033","requires iron(2+)"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.11","glucoside 3-dehydrogenase (cytochrome c)"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.2.3","L-lactate dehydrogenase (cytochrome)"],["EC%3A1.1.2.4","D-lactate dehydrogenase (cytochrome)"]]},{"id":"CHEBI:29101","l":"sodium(1+)","na":7,"nb":292,"a":[["environment/alkaphilic.html","alkaliphilic"],["environment/euryhaline.html","euryhaline"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/nacl_delta_mid2.html","NaCl delta mid2"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29101","requires sodium(1+)"],["EC%3A7.2.1.1","NADH:ubiquinone reductase (Na(+)-transporting)"],["EC%3A7.2.1.2","ferredoxin--NAD(+) oxidoreductase (Na(+)-transporting)"],["EC%3A7.2.1.4","tetrahydromethanopterin S-methyltransferase"],["EC%3A7.2.2.1","Na(+)-transporting two-sector ATPase"],["EC%3A7.2.2.13","Na(+)/K(+)-exchanging ATPase"]]},{"id":"CHEBI:16189","l":"sulfate","na":7,"nb":133,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"],["metabolism/disproportionation.html","Disproportionation"],["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"],["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16189","requires sulfate"],["EC%3A1.14.11.77","alkyl sulfatase"],["EC%3A1.8.2.1","sulfite dehydrogenase (cytochrome)"],["EC%3A1.8.3.1","sulfite oxidase"],["EC%3A1.8.5.6","sulfite dehydrogenase (quinone)"],["EC%3A2.7.7.4","sulfate adenylyltransferase"]]},{"id":"GO:0009288","l":"bacterial-type flagellum","na":7,"nb":31,"a":[["morphology/amphitrichous.html","amphitrichous"],["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/lophotrichous.html","lophotrichous"],["morphology/monotrichous.html","monotrichous"],["morphology/non_motile.html","non motile"],["morphology/peritrichous.html","peritrichous"]],"b":[["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009288","bacterial-type flagellum"]]},{"id":"GO:0004096","l":"catalase activity","na":7,"nb":20,"a":[["environment/aerotolerant.html","aerotolerant"],["environment/desiccation_tolerant.html","desiccation tolerant"],["environment/microaerophilic.html","microaerophilic"],["environment/oxygen_preference.html","oxygen preference"],["environment/uv_radiation_tolerant.html","UV radiation tolerant"],["other/catalase_negative.html","catalase negative"]],"b":[["EC%3A1.11.1.6","catalase"],["METPO%3A1007084","catalase negative"],["METPO%3A1007083","catalase positive"],["RHEA%3A20309","2 H2O2 = O2 + 2 H2O"],["ComplexPortal%3ACPX-4742","Catalase complex"],["ComplexPortal%3ACPX-4767","Catalase complex"]]},{"id":"METPO:1000629","l":"halophily preference","na":10,"nb":7,"a":[["environment/euryhaline.html","euryhaline"],["environment/extremely_halophilic.html","extremely halophilic"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/halotolerant.html","halotolerant"]],"b":[["METPO%3A1000627","euryhaline"],["METPO%3A1000621","haloalkaliphilic"],["METPO%3A1000620","halophilic"],["METPO%3A1000629","halophily preference"],["METPO%3A1000622","halotolerant"],["METPO%3A1000624","non halophilic"]]},{"id":"CHEBI:65015","l":"","na":7,"nb":7,"a":[["environment/euryhaline.html","euryhaline"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/halotolerant.html","halotolerant"],["environment/nacl_optimum.html","NaCl optimum"]],"b":[["EC%3A1.1.3.43","paromamine 6'-oxidase"],["EC%3A2.4.1.301","2'-deamino-2'-hydroxyneamine 1-alpha-D-kanosaminyltransferase"],["EC%3A3.5.1.112","2'-N-acetylparomamine deacetylase"],["RHEA%3A34031","2'-N-acetylparomamine + H2O = paromamine + acetate"],["RHEA%3A34035","paromamine + O2 = 6'-oxoparomamine + H2O2"],["RHEA%3A35927","paromamine + UDP-alpha-D-glucose = 3'-deamino-3'-hydroxykanamycin C + UDP + H(+)"]]},{"id":"GO:0042710","l":"biofilm formation","na":7,"nb":7,"a":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/host_associated.html","host-associated"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["ecology/plant_pathogen.html","plant pathogen"],["ecology/rhizosphere_association.html","rhizosphere association"]],"b":[["GO%3A0042710","biofilm formation"],["GO%3A0044399","multi-species biofilm formation"],["GO%3A0044010","single-species biofilm formation"],["GO%3A0090605","submerged biofilm formation"],["GO%3A0090604","surface biofilm formation"],["Reactome%3AR-HSA-9931953","Biofilm formation"]]},{"id":"NCBITaxon:1111708","l":"Synechocystis sp. (strain ATCC 27184 / PCC 6803 / Kazusa)","na":6,"nb":61,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/photoautotrophic.html","photoautotrophic"],["physiology/photolithotrophic.html","photolithotrophic"],["physiology/phototrophic.html","phototrophic"]],"b":[["Pfam%3APF07698","7TM receptor with intracellular HD hydrolase"],["Pfam%3APF07697","7TM-HD extracellular"],["Pfam%3APF11266","Long-chain fatty aldehyde decarbonylase"],["Pfam%3APF21571","Arginine dihydrolase ArgZ-like, C-terminal, first region"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF17886","HSP20-like domain found in ArsA"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":6,"nb":30,"a":[["metabolism/butanediol_fermentation.html","2,3-butanediol fermentation"],["metabolism/citrate_fermentation.html","citrate fermentation"],["morphology/capsule.html","capsule"],["morphology/non_motile.html","non motile"],["other/indole_test_negative.html","indole test negative"],["other/methyl_red_test_negative.html","methyl red test negative"]],"b":[["Pfam%3APF08787","Alginate lyase"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF08218","Citrate lyase ligase C-terminal domain"],["Pfam%3APF13727","CoA-binding domain"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["Pfam%3APF20714","DpiA-like helix-turn-helix domain"]]},{"id":"GO:0016117","l":"carotenoid biosynthetic process","na":6,"nb":26,"a":[["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/cream_pigmented.html","cream pigmented"],["morphology/orange_pigmented.html","orange pigmented"],["morphology/pigmentation.html","pigmentation"],["morphology/pink_pigmented.html","pink pigmented"],["morphology/yellow_pigmented.html","yellow pigmented"]],"b":[["GO%3A1901824","alpha-carotene biosynthetic process"],["GO%3A1901821","alpha-zeacarotene biosynthetic process"],["GO%3A1901812","beta-carotene biosynthetic process"],["GO%3A1901818","beta-zeacarotene biosynthetic process"],["GO%3A0016117","carotenoid biosynthetic process"],["GO%3A0016123","xanthophyll biosynthetic process"]]},{"id":"GO:0006754","l":"ATP biosynthetic process","na":6,"nb":22,"a":[["environment/aerobic.html","aerobic"],["environment/ph_range_mid2.html","pH range mid2"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/lithoautotrophic.html","lithoautotrophic"],["physiology/mixotrophic.html","mixotrophic"]],"b":[["GO%3A0006756","AMP phosphorylation"],["GO%3A0006754","ATP biosynthetic process"],["GO%3A0015986","proton motive force-driven ATP synthesis"],["NCBIfam%3ATIGR02546","type III secretion system ATPase SctN"],["InterPro%3AIPR020971","ATP synthase, F1 beta subunit"],["PANTHER%3APTHR11910","ATP SYNTHASE DELTA CHAIN"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":6,"nb":20,"a":[["ecology/free_living.html","free-living"],["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["genomics/transposable_element.html","transposable element"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"]],"b":[["Pfam%3APF14535","AMP-binding enzyme C-terminal domain"],["Pfam%3APF13442","Cytochrome C oxidase, cbb3-type, subunit III"],["Pfam%3APF22247","Catechol 2,3-dioxygenase-like N-terminal domain"],["Pfam%3APF25371","Domain of unknown function (DUF7884)"],["Pfam%3APF19301","LigXa C-terminal domain like"],["Pfam%3APF12729","Four helix bundle sensory module for signal transduction"]]},{"id":"CHEBI:16134","l":"ammonia","na":6,"nb":11,"a":[["environment/ph_delta_mid1.html","pH delta mid1"],["metabolism/nitrogen_fixation.html","nitrogen fixation"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"],["physiology/urease_activity.html","urease activity"]],"b":[["TCDB%3A1.A.11","The Ammonium Transporter Channel (Amt) Family"],["MCSA%3A376","adenosine deaminase"],["MCSA%3A75","aspartate-ammonia ligase"],["MCSA%3A449","cystathionine beta-lyase"],["MCSA%3A97","cytidine deaminase"],["MCSA%3A710","cytosine deaminase (bacterial)"]]},{"id":"NCBITaxon:266264","l":"Cupriavidus metallidurans CH34","na":6,"nb":10,"a":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/copper_tolerant.html","copper tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["environment/zinc_tolerant.html","zinc tolerant"]],"b":[["Pfam%3APF25973","CzcB-like, barrel-sandwich hybrid domain"],["Pfam%3APF09828","ChrB, C-terminal domain"],["Pfam%3APF20229","Protein ChrB, N-terminal"],["Pfam%3APF01923","Cobalamin adenosyltransferase"],["Pfam%3APF25975","CzcB C-terminal circularly permuted SH3-like domain"],["Pfam%3APF25971","CzcB, N-terminal domain"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":6,"nb":10,"a":[["ecology/animal_pathogen.html","animal pathogen"],["ecology/biosafety_level_2.html","biosafety level 2"],["genomics/genomic_island.html","genomic island"],["genomics/prophage.html","prophage"],["morphology/flagellated.html","flagellated"],["morphology/peritrichous.html","peritrichous"]],"b":[["TED%3AAF-A0A5T2E4X7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5T2E4X7-F1-model_v4_TED01"],["TED%3AAF-A0A5Y4BP44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Y4BP44-F1-model_v4_TED01"],["TED%3AAF-A0A623P6F3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A623P6F3-F1-model_v4_TED02"],["TED%3AAF-A0A721BDS7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A721BDS7-F1-model_v4_TED02"],["TED%3AAF-A0A743P324-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A743P324-F1-model_v4_TED01"],["TED%3AAF-A0A757VWR3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A757VWR3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":6,"nb":9,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/oxidase_activity.html","oxidase activity"]],"b":[["Pfam%3APF07835","Bacterial aa3 type cytochrome c oxidase subunit IV"],["Pfam%3APF04828","Glutathione-dependent formaldehyde-activating enzyme"],["Pfam%3APF16448","LapD/MoxY periplasmic domain"],["Pfam%3APF17267","Family of unknown function (DUF5333)"],["Pfam%3APF17272","Family of unknown function (DUF5337)"],["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"]]},{"id":"GO:0009292","l":"horizontal gene transfer","na":6,"nb":7,"a":[["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["genomics/genome_size.html","genome size"],["genomics/genomic_island.html","genomic island"],["genomics/mobile_genetic_element.html","mobile genetic element"],["genomics/pangenome_openness.html","pangenome openness"]],"b":[["GO%3A0009294","DNA-mediated transformation"],["GO%3A0009292","horizontal gene transfer"],["GO%3A0009293","transduction"],["GO%3A0009291","unidirectional conjugation"],["NCBIfam%3ATIGR04359","entry exclusion lipoprotein TrbK"],["NCBIfam%3ATIGR04361","entry exclusion protein TrbK"]]},{"id":"CHEBI:16474","l":"","na":6,"nb":6,"a":[["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16474","requires NADPH"],["MCSA%3A112","dihydrofolate reductase (bacterial)"],["MCSA%3A6","glutathione-disulfide reductase"],["MCSA%3A7","isocitrate dehydrogenase (NADP+)"],["MCSA%3A21","malate dehydrogenase (oxaloacetate-decarboxylating)"],["proteintraitsmech%3ABIOLIP_NDP","NDP-binding site"]]},{"id":"CHEBI:16301","l":"nitrite","na":5,"nb":116,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["EC%3A1.13.11.64","5-nitrosalicylate dioxygenase"],["EC%3A1.13.12.16","nitronate monooxygenase"],["EC%3A1.14.12.23","nitroarene dioxygenase"],["EC%3A1.14.12.24","2,4-dinitrotoluene dioxygenase"],["EC%3A1.14.13.166","4-nitrocatechol 4-monooxygenase"],["EC%3A1.14.13.167","4-nitrophenol 4-monooxygenase"]]},{"id":"GO:0009056","l":"catabolic process","na":5,"nb":109,"a":[["metabolism/metabolism.html","metabolism"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"],["physiology/heterotrophic.html","heterotrophic"],["physiology/organotrophic.html","organotrophic"]],"b":[["GO%3A0018911","1,2,4-trichlorobenzene catabolic process"],["GO%3A0019261","1,4-dichlorobenzene catabolic process"],["GO%3A0046302","2-chloro-N-isopropylacetanilide catabolic process"],["GO%3A1901851","7,8-didemethyl-8-hydroxy-5-deazariboflavin catabolic process"],["GO%3A0006581","acetylcholine catabolic process"],["GO%3A0046185","aldehyde catabolic process"]]},{"id":"GO:0006935","l":"chemotaxis","na":5,"nb":64,"a":[["morphology/flagellated.html","flagellated"],["morphology/motile.html","motile"],["morphology/motility.html","motility"],["physiology/chemotaxis.html","chemotaxis"],["physiology/copiotrophic.html","copiotrophic"]],"b":[["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009454","aerotaxis"]]},{"id":"CHEBI:29103","l":"potassium(1+)","na":5,"nb":32,"a":[["environment/extremely_halophilic.html","extremely halophilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/non_halophilic.html","non halophilic"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29103","requires potassium(1+)"],["EC%3A7.2.2.13","Na(+)/K(+)-exchanging ATPase"],["EC%3A7.2.2.19","H(+)/K(+)-exchanging ATPase"],["EC%3A7.2.2.6","P-type K(+) transporter"],["RHEA%3A18353","2 K(+)(out) + 3 Na(+)(in) + ATP + H2O = 2 K(+)(in) + 3 Na(+)(out) + ADP + phosphate + H(+)"],["RHEA%3A69967","Ca(2+)(out) + K(+)(out) + 4 Na(+)(in) = Ca(2+)(in) + K(+)(in) + 4 Na(+)(out)"]]},{"id":"GO:0004784","l":"superoxide dismutase activity","na":5,"nb":27,"a":[["environment/aerotolerant.html","aerotolerant"],["environment/desiccation_tolerant.html","desiccation tolerant"],["environment/microaerophilic.html","microaerophilic"],["environment/obligately_aerobic.html","obligately aerobic"],["environment/oxygen_preference.html","oxygen preference"]],"b":[["EC%3A1.15.1.1","superoxide dismutase"],["RHEA%3A20696","2 superoxide + 2 H(+) = H2O2 + O2"],["ComplexPortal%3ACPX-21824","CCS-SOD1, oxidative stress response complex"],["ComplexPortal%3ACPX-2896","[Cu-Zn] Superoxide dismutase complex"],["ComplexPortal%3ACPX-2897","[Cu-Zn] Superoxide dismutase complex"],["ComplexPortal%3ACPX-2898","[Cu-Zn] Superoxide dismutase complex"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":5,"nb":23,"a":[["genomics/gabija_system.html","Gabija system"],["genomics/shedu_system.html","Shedu system"],["genomics/thoeris_system.html","Thoeris system"],["physiology/caseinase_activity.html","caseinase activity"],["physiology/lecithinase_activity.html","lecithinase activity"]],"b":[["Pfam%3APF08878","HamA"],["Pfam%3APF05791","Bacillus haemolytic enterotoxin (HBL)"],["Pfam%3APF10803","Spore germination GerPB"],["Pfam%3APF10737","Spore germination protein GerPC"],["Pfam%3APF10970","Spore germination protein GerPE"],["Pfam%3APF07486","Cell Wall Hydrolase"]]},{"id":"CHEBI:15948","l":"","na":5,"nb":20,"a":[["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/orange_pigmented.html","orange pigmented"],["morphology/pink_pigmented.html","pink pigmented"],["morphology/red_pigmented.html","red pigmented"],["morphology/yellow_pigmented.html","yellow pigmented"]],"b":[["EC%3A1.3.99.26","all-trans-zeta-carotene desaturase"],["EC%3A1.3.99.31","phytoene desaturase (lycopene-forming)"],["EC%3A2.5.1.149","lycopene elongase/hydratase (flavuxanthin-forming)"],["EC%3A2.5.1.150","lycopene elongase/hydratase (dihydrobisanhydrobacterioruberin-forming)"],["EC%3A4.2.1.131","carotenoid 1,2-hydratase"],["EC%3A5.2.1.13","prolycopene isomerase"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":13,"a":[["metabolism/chitinolysis.html","chitinolysis"],["morphology/pigmentation.html","pigmentation"],["morphology/red_pigmented.html","red pigmented"],["morphology/white_pigmented.html","white pigmented"],["physiology/beta_n_acetylhexosaminidase_activity.html","beta-N-acetylhexosaminidase activity"]],"b":[["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF03173","Putative carbohydrate binding domain"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"],["Pfam%3APF06438","Heme-binding protein A (HasA)"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF05247","Flagellar transcriptional activator (FlhD)"]]},{"id":"GO:0031470","l":"carboxysome","na":5,"nb":10,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["morphology/carboxysome.html","carboxysome"],["physiology/autotrophic.html","autotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["GO%3A0031470","carboxysome"],["NCBIfam%3ANF053791","alpha-carboxysome major shell protein CsoS1"],["NCBIfam%3ANF049993","beta-carboxysome assembly chaperone CcmS"],["NCBIfam%3ANF053792","beta-carboxysome assembly protein CcmO"],["NCBIfam%3ANF053796","beta-carboxysome protein CcmP"],["NCBIfam%3ANF053793","beta-carboxysome scaffolding protein CcmN"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":5,"nb":10,"a":[["metabolism/dimethyl_sulfoxide_respiration.html","dimethyl sulfoxide respiration"],["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/electron_transfer.html","Electron transfer"]],"b":[["Pfam%3APF27445","Adaptation to cold protein A"],["Pfam%3APF27450","AtcB C-terminal domain"],["Pfam%3APF27486","AtcB N-terminal domain"],["Pfam%3APF02464","CinA C-terminal domain"],["Pfam%3APF13657","HipA N-terminal domain"],["Pfam%3APF01934","Ribonuclease HepT-like"]]},{"id":"GO:0009274","l":"peptidoglycan-based cell wall","na":5,"nb":8,"a":[["morphology/cell_shape.html","cell shape"],["morphology/cell_width.html","cell width"],["morphology/gram_stain.html","gram stain"],["morphology/pleomorphic_shaped.html","pleomorphic shaped"],["morphology/sphere_shaped.html","sphere shaped"]],"b":[["GO%3A0009276","Gram-negative-bacterium-type cell wall"],["GO%3A0009275","Gram-positive-bacterium-type cell wall"],["GO%3A0009274","peptidoglycan-based cell wall"],["NCBIfam%3ANF007061","bifunctional glycosyl transferase/transpeptidase"],["NCBIfam%3ATIGR03656","heme uptake protein IsdC"],["NCBIfam%3ATIGR02070","monofunctional biosynthetic peptidoglycan transglycosylase"]]},{"id":"InterPro:IPR001765","l":"","na":6,"nb":5,"a":[["metabolism/carbon_fixation.html","carbon fixation"],["morphology/carboxysome.html","carboxysome"],["physiology/autotrophic.html","autotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]],"b":[["Pfam%3APF00484","Carbonic anhydrase"],["PANTHER%3APTHR11002","CARBONIC ANHYDRASE"],["PANTHER%3APTHR43175","CARBONIC ANHYDRASE"],["PROSITE%3APS00704","Prokaryotic-type carbonic anhydrases signature 1"],["PROSITE%3APS00705","Prokaryotic-type carbonic anhydrases signature 2"]]},{"id":"NCBITaxon:224308","l":"Bacillus subtilis (strain 168)","na":4,"nb":11310,"a":[["metabolism/proteolysis.html","proteolysis"],["morphology/spore_forming.html","spore forming"],["morphology/spore_shaped.html","spore shaped"],["morphology/sporulation.html","sporulation"]],"b":[["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.10.3.-","With oxygen as acceptor"],["EC%3A1.13.12.-","With incorporation of one atom of oxygen (internal monooxygenases or internal mixed function oxidases)"],["EC%3A1.14.19.-","With oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water"],["EC%3A1.17.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.21.98.-","With other, known acceptors"]]},{"id":"CHEBI:15377","l":"water","na":4,"nb":9376,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["physiology/catalase_activity.html","catalase activity"],["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["EC%3A1.1.1.115","ribose 1-dehydrogenase (NADP(+))"],["EC%3A1.1.1.132","GDP-mannose 6-dehydrogenase"],["EC%3A1.1.1.136","UDP-N-acetylglucosamine 6-dehydrogenase"],["EC%3A1.1.1.186","dTDP-galactose 6-dehydrogenase"],["EC%3A1.1.1.192","long-chain-alcohol dehydrogenase"],["EC%3A1.1.1.205","IMP dehydrogenase"]]},{"id":"GO:0006412","l":"translation","na":4,"nb":455,"a":[["environment/mesophilic.html","mesophilic"],["genomics/codon_usage_bias.html","codon usage bias"],["physiology/cold_shock_response.html","cold shock response"],["physiology/dormancy.html","dormancy"]],"b":[["GO%3A0002181","cytoplasmic translation"],["GO%3A0032543","mitochondrial translation"],["GO%3A0032544","plastid translation"],["GO%3A0140241","translation at synapse"],["GO%3A0006412","translation"],["Reactome%3AR-HSA-72766","Translation"]]},{"id":"CHEBI:30089","l":"acetate","na":4,"nb":302,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["EC%3A1.1.1.318","eugenol synthase"],["EC%3A1.1.1.319","isoeugenol synthase"],["EC%3A1.13.11.50","acetylacetone-cleaving enzyme"],["EC%3A1.13.12.4","lactate 2-monooxygenase"],["EC%3A1.14.13.54","ketosteroid monooxygenase"],["EC%3A1.14.14.19","steroid 17alpha-monooxygenase"]]},{"id":"GO:0009252","l":"peptidoglycan biosynthetic process","na":4,"nb":90,"a":[["morphology/bacillus_shaped.html","bacillus shaped"],["morphology/cell_shape.html","cell shape"],["morphology/coccobacillus_shaped.html","coccobacillus shaped"],["morphology/rod_shaped.html","rod shaped"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["GO%3A0009252","peptidoglycan biosynthetic process"],["GO%3A0018104","peptidoglycan-protein cross-linking"],["NCBIfam%3ATIGR00492","alanine racemase"],["NCBIfam%3ANF007061","bifunctional glycosyl transferase/transpeptidase"],["NCBIfam%3ANF006986","bifunctional UDP-N-acetylglucosamine diphosphorylase/glucosamine-1-phosphate N-acetyltransferase GlmU"]]},{"id":"GO:0051301","l":"cell division","na":4,"nb":86,"a":[["morphology/sarcina_arrangement.html","sarcina arrangement"],["morphology/staphylococcus_arrangement.html","staphylococcus arrangement"],["morphology/streptococcus_arrangement.html","streptococcus arrangement"],["morphology/tetrad_arrangement.html","tetrad arrangement"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["ComplexPortal%3ACPX-5782","Tol-Pal cell envelope complex"],["GO%3A0090510","anticlinal cell division"],["GO%3A0008356","asymmetric cell division"],["GO%3A0007114","cell budding"],["GO%3A0051301","cell division"]]},{"id":"GO:0042597","l":"periplasmic space","na":4,"nb":76,"a":[["morphology/axially_filamented.html","axially filamented"],["morphology/gram_negative.html","gram negative"],["physiology/methylotrophic.html","methylotrophic"],["physiology/natural_competence.html","natural competence"]],"b":[["ComplexPortal%3ACPX-3447","NapAB nitrate reductase complex"],["ComplexPortal%3ACPX-4281","PaoABC periplasmic aldehyde oxidoreductase"],["GO%3A0030287","cell wall-bounded periplasmic space"],["GO%3A0030288","outer membrane-bounded periplasmic space"],["GO%3A0042597","periplasmic space"],["GO%3A0036240","septal periplasm"]]},{"id":"GO:0030001","l":"metal ion transport","na":4,"nb":66,"a":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/metal_tolerant.html","metal tolerant"]],"b":[["GO%3A0015690","aluminum cation transport"],["GO%3A0006816","calcium ion transport"],["GO%3A0015692","lead ion transport"],["GO%3A0010351","lithium ion transport"],["GO%3A0015693","magnesium ion transport"],["GO%3A0030001","metal ion transport"]]},{"id":"GO:0009523","l":"photosystem II","na":4,"nb":59,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["GO%3A0030095","chloroplast photosystem II"],["GO%3A0009523","photosystem II"],["GO%3A0030096","plasma membrane-derived thylakoid photosystem II"],["NCBIfam%3ATIGR01332","cytochrome b559 subunit alpha"],["NCBIfam%3ATIGR01333","cytochrome b559 subunit beta"],["NCBIfam%3ANF012505","Lumenal portion of Cytochrome b559, alpha (gene psbE) subunit"]]},{"id":"CHEBI:17245","l":"carbon monoxide","na":4,"nb":31,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["physiology/carboxydotrophic.html","carboxydotrophic"],["physiology/oxidase_activity.html","oxidase activity"]],"b":[["EC%3A1.13.11.24","quercetin 2,3-dioxygenase"],["EC%3A1.13.11.47","3-hydroxy-4-oxoquinoline 2,4-dioxygenase"],["EC%3A1.13.11.48","3-hydroxy-2-methylquinolin-4-one 2,4-dioxygenase"],["EC%3A1.13.11.53","acireductone dioxygenase (Ni(2+)-requiring)"],["EC%3A1.14.14.18","heme oxygenase (biliverdin-producing)"],["EC%3A1.14.15.20","heme oxygenase (biliverdin-producing, ferredoxin)"]]},{"id":"NCBITaxon:171101","l":"Streptococcus pneumoniae (strain ATCC BAA-255 / R6)","na":4,"nb":31,"a":[["morphology/ellipsoidal.html","ellipsoidal"],["morphology/oval_shaped.html","oval shaped"],["morphology/ovoid_shaped.html","ovoid shaped"],["physiology/natural_competence.html","natural competence"]],"b":[["Pfam%3APF03590","Aspartate-ammonia ligase"],["Pfam%3APF25935","LcnD-like, barrel-sandwich hybrid domain"],["Pfam%3APF24568","Peptidoglycan hydrolase PcsB, coiled-coil domain"],["Pfam%3APF05257","CHAP domain"],["Pfam%3APF27342","ComB N-terminal domain"],["Pfam%3APF26697","Competence protein ComGC, C-terminal domain"]]},{"id":"CHEBI:26833","l":"sulfur atom","na":4,"nb":24,"a":[["metabolism/disproportionation.html","Disproportionation"],["morphology/sulfur_globule.html","sulfur globule"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/photolithotrophic.html","photolithotrophic"]],"b":[["EC%3A1.12.98.4","sulfhydrogenase"],["EC%3A1.13.11.55","sulfur oxygenase/reductase"],["EC%3A1.8.1.18","NAD(P)H sulfur oxidoreductase (CoA-dependent)"],["EC%3A1.8.1.19","sulfide dehydrogenase"],["EC%3A1.8.2.3","sulfide-cytochrome-c reductase (flavocytochrome c)"],["EC%3A1.8.2.7","thiocyanate desulfurase"]]},{"id":"GO:0009372","l":"quorum sensing","na":4,"nb":21,"a":[["ecology/plant_pathogen.html","plant pathogen"],["morphology/green_pigmented.html","green pigmented"],["morphology/swarming_motility.html","swarming motility"],["physiology/quorum_sensing.html","quorum sensing"]],"b":[["ComplexPortal%3ACPX-4315","Autoinducer-2 ABC transporter complex"],["GO%3A0120218","host interaction involved in quorum sensing"],["GO%3A0009372","quorum sensing"],["NCBIfam%3ANF052393","acyl-homoserine-lactone synthase"],["NCBIfam%3ANF008187","autoinducer-2 kinase"],["NCBIfam%3ANF010444","autoinducer-binding transcriptional regulator TraR"]]},{"id":"GO:0009432","l":"SOS response","na":4,"nb":14,"a":[["genomics/prophage.html","prophage"],["morphology/cell_length_large.html","cell length large"],["morphology/filament_shaped.html","filament shaped"],["physiology/sos_response.html","SOS response"]],"b":[["ComplexPortal%3ACPX-5544","DNA polymerase V mutasome complex"],["ComplexPortal%3ACPX-6026","YafNO toxin-antitoxin complex"],["GO%3A0009432","SOS response"],["NCBIfam%3ATIGR01389","DNA helicase RecQ"],["NCBIfam%3ATIGR00611","DNA replication/repair protein RecF"],["NCBIfam%3ANF041583","SOS-induced cell division inhibitor SulA"]]},{"id":"CHEBI:25728","l":"","na":11,"nb":4,"a":[["environment/euryhaline.html","euryhaline"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/halotolerant.html","halotolerant"],["environment/nacl_optimum.html","NaCl optimum"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.A.22","The Large Conductance Mechanosensitive Ion Channel (MscL) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.A.23","The Small Conductance Mechanosensitive Ion Channel (MscS) Family"]]},{"id":"GO:0009326","l":"formate dehydrogenase complex","na":4,"nb":9,"a":[["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/syntrophy.html","Syntrophy"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"],["physiology/methylotrophic.html","methylotrophic"]],"b":[["ComplexPortal%3ACPX-1975","Formate dehydrogenase N complex"],["ComplexPortal%3ACPX-6029","Formate dehydrogenase Z complex"],["ComplexPortal%3ACPX-317","Formate hydrogenlyase-H/Hydrogenase-3 complex"],["ComplexPortal%3ACPX-6028","Formate hydrogenlyase-H/Hydrogenase-4 complex"],["GO%3A0009326","formate dehydrogenase complex"],["NCBIfam%3ATIGR00129","formate dehydrogenase accessory sulfurtransferase FdhD"]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":4,"nb":9,"a":[["morphology/diplococcus_shaped.html","diplococcus shaped"],["morphology/non_motile.html","non motile"],["morphology/sphere_shaped.html","sphere shaped"],["physiology/natural_competence.html","natural competence"]],"b":[["Pfam%3APF19567","Capsular polysaccharide synthesis, CpsB/CapC"],["Pfam%3APF07501","G5 domain"],["Pfam%3APF13551","Winged helix-turn helix"],["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF03047","COMC family"],["Pfam%3APF04556","DpnII restriction endonuclease"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":9,"nb":4,"a":[["environment/euryhaline.html","euryhaline"],["genomics/dartg_system.html","DarTG system"],["genomics/ddmde_system.html","DdmDE system"],["genomics/genomic_island.html","genomic island"],["genomics/lamassu_system.html","Lamassu system"],["genomics/nixi_system.html","NixI system"]],"b":[["Pfam%3APF01375","Heat-labile enterotoxin alpha chain"],["Pfam%3APF09101","Exotoxin A binding"],["Pfam%3APF09009","Exotoxin A catalytic"],["Pfam%3APF09102","Exotoxin A, targeting"]]},{"id":"GO:0006119","l":"oxidative phosphorylation","na":4,"nb":8,"a":[["environment/ph_delta.html","pH delta"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["physiology/organoheterotrophic.html","organoheterotrophic"],["physiology/persister_cell_formation.html","persister cell formation"]],"b":[["ComplexPortal%3ACPX-268","Cytochrome bd-I ubiquinol oxidase complex"],["ComplexPortal%3ACPX-269","Cytochrome bd-II ubiquinol oxidase complex"],["GO%3A0006119","oxidative phosphorylation"],["PANTHER%3APTHR12448","ATP SYNTHASE EPSILON CHAIN, MITOCHONDRIAL"],["PANTHER%3APTHR13080","ATP SYNTHASE F CHAIN, MITOCHONDRIAL-RELATED"],["PANTHER%3APTHR43141","CYTOCHROME BD2 SUBUNIT II"]]},{"id":"GO:0030964","l":"NADH dehydrogenase complex","na":4,"nb":8,"a":[["metabolism/electron_transfer.html","Electron transfer"],["metabolism/respiration.html","respiration"],["physiology/organoheterotrophic.html","organoheterotrophic"],["physiology/organotrophic.html","organotrophic"]],"b":[["GO%3A0030964","NADH dehydrogenase complex"],["GO%3A0071685","NADH dehydrogenase complex (plastoquinone)"],["GO%3A0045271","respiratory chain complex I"],["NCBIfam%3ATIGR00403","NAD(P)H-quinone oxidoreductase subunit I"],["NCBIfam%3ATIGR01957","NADH-quinone oxidoreductase subunit B"],["NCBIfam%3ANF008728","NADH-quinone oxidoreductase subunit C/D"]]},{"id":"InterPro:IPR000158","l":"","na":6,"nb":4,"a":[["morphology/bacillus_shaped.html","bacillus shaped"],["morphology/cell_length_large.html","cell length large"],["morphology/cell_shape.html","cell shape"],["morphology/rod_shaped.html","rod shaped"],["morphology/sarcina_arrangement.html","sarcina arrangement"],["morphology/staphylococcus_arrangement.html","staphylococcus arrangement"]],"b":[["Pfam%3APF12327","FtsZ family, C-terminal domain"],["HAMAP%3AMF_00909","Cell division protein FtsZ [ftsZ]"],["PROSITE%3APS01134","FtsZ protein signature 1"],["PROSITE%3APS01135","FtsZ protein signature 2"]]},{"id":"NCBITaxon:1085","l":"Rhodospirillum rubrum","na":6,"nb":4,"a":[["metabolism/phototrophy.html","phototrophy"],["morphology/spiral_shaped.html","spiral shaped"],["physiology/carboxydotrophic.html","carboxydotrophic"],["physiology/photoheterotrophic.html","photoheterotrophic"],["physiology/photoorganoheterotrophic.html","photoorganoheterotrophic"],["physiology/phototrophic.html","phototrophic"]],"b":[["Pfam%3APF00556","Antenna complex alpha/beta subunit"],["Pfam%3APF09527","Putative F0F1-ATPase subunit Ca2+/Mg2+ transporter"],["Pfam%3APF07357","Dinitrogenase reductase ADP-ribosyltransferase (DRAT)"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"]]},{"id":"NCBITaxon:194439","l":"Chlorobaculum tepidum TLS","na":4,"nb":6,"a":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"],["physiology/photoautotrophic.html","photoautotrophic"],["physiology/photolithoautotrophic.html","photolithoautotrophic"],["physiology/photolithotrophic.html","photolithotrophic"]],"b":[["Pfam%3APF02327","Bacteriochlorophyll A protein"],["Pfam%3APF27499","CsmB chlorosome envelope protein"],["Pfam%3APF28537","Probable trigger factor, FKBP-like domain"],["Pfam%3APF02043","Bacteriochlorophyll C binding protein"],["Pfam%3APF11098","Chlorosome envelope protein C"],["Pfam%3APF10643","Photosystem P840 reaction-centre cytochrome c-551"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":4,"nb":6,"a":[["ecology/mutualism.html","mutualism"],["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["ecology/symbiosis.html","symbiosis"],["genomics/hna_system.html","Hna system"]],"b":[["Pfam%3APF01177","Asp/Glu/Hydantoin racemase"],["Pfam%3APF11339","Protein of unknown function (DUF3141)"],["PROSITE%3APS01303","BCCT family of transporters signature"],["PROSITE%3APS00665","Dihydrodipicolinate synthase signature 1"],["TED%3AAF-A0A2J0YSD4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J0YSD4-F1-model_v4_TED01"],["TED%3AAF-A0A843ZNG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843ZNG8-F1-model_v4_TED01"]]},{"id":"CHEBI:24431","l":"","na":5,"nb":4,"a":[["metabolism/does_not_use_as_nitrogen_source.html","does not use as nitrogen source"],["metabolism/does_not_use_as_sulfur_source.html","does not use as sulfur source"],["metabolism/uses_as_nitrogen_source.html","uses as nitrogen source"],["metabolism/uses_as_sulfur_source.html","uses as sulfur source"],["upper/chemical_entity.html","chemical entity"]],"b":[["EC%3A1.13.12.16","nitronate monooxygenase"],["EC%3A1.17.3.1","pteridine oxidase"],["RHEA%3A12777","2-amino-4-hydroxypteridine + O2 = 2-amino-4,7-dihydroxypteridine + chemical entity"],["RHEA%3A28767","ethylnitronate + O2 = chemical entity + acetaldehyde + nitrite + H(+)"]]},{"id":"GO:0043684","l":"type IV secretion system complex","na":4,"nb":5,"a":[["ecology/animal_pathogen.html","animal pathogen"],["ecology/human_pathogen.html","human pathogen"],["genomics/genomic_island.html","genomic island"],["genomics/mobile_genetic_element.html","mobile genetic element"]],"b":[["GO%3A0043684","type IV secretion system complex"],["NCBIfam%3ANF049884","Dot/Icm T4SS effector Ceg23"],["NCBIfam%3ATIGR02788","P-type DNA transfer ATPase VirB11"],["NCBIfam%3ATIGR02791","P-type DNA transfer protein VirB5"],["NCBIfam%3ANF047983","T4SS effector phosphatidylinositol 3-Kinase RisK1"]]},{"id":"METPO:1000630","l":"biological process","na":4,"nb":5,"a":[["metabolism/metabolism.html","metabolism"],["metabolism/nitrification.html","nitrification"],["upper/biological_process.html","biological process"],["upper/material_entity.html","material entity"]],"b":[["METPO%3A1000630","biological process"],["METPO%3A1005038","denitrification"],["METPO%3A1000060","metabolism"],["METPO%3A1005001","nitrification"],["METPO%3A1005039","nitrogen fixation"]]},{"id":"METPO:2000303","l":"does not show activity of","na":5,"nb":4,"a":[["metabolism/does_not_show_activity_of.html","does not show activity of"],["other/catalase_negative.html","catalase negative"],["other/coagulase_negative.html","coagulase negative"],["other/oxidase_negative.html","oxidase negative"],["other/urease_negative.html","urease negative"]],"b":[["METPO%3A1007084","catalase negative"],["METPO%3A1007091","coagulase negative"],["METPO%3A1007086","oxidase negative"],["METPO%3A1007088","urease negative"]]},{"id":"InterPro:IPR033875","l":"Flagellum site-determining protein FlhG","na":4,"nb":4,"a":[["morphology/amphitrichous.html","amphitrichous"],["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/lophotrichous.html","lophotrichous"],["morphology/monotrichous.html","monotrichous"]],"b":[["GO%3A0044781","bacterial-type flagellum organization"],["CDD%3Acd02038","FlhG-like"],["InterPro%3AIPR033875","Flagellum site-determining protein FlhG"],["Pfam%3APF10609","NUBPL iron-transfer P-loop NTPase"]]},{"id":"GO:0005737","l":"cytoplasm","na":3,"nb":2018,"a":[["environment/ph_range_mid2.html","pH range mid2"],["environment/ph_range_very_low.html","pH range very low"],["morphology/spiral_shaped.html","spiral shaped"]],"b":[["ComplexPortal%3ACPX-3921","2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["ComplexPortal%3ACPX-1599","40S cytosolic small ribosomal subunit"],["ComplexPortal%3ACPX-5223","40S cytosolic small ribosomal subunit"],["ComplexPortal%3ACPX-5261","40S cytosolic small ribosomal subunit"],["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"]]},{"id":"CHEBI:29034","l":"iron(3+)","na":3,"nb":376,"a":[["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/iron_oxidation.html","iron oxidation"],["metabolism/photoferrotrophy.html","photoferrotrophy"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29034","requires iron(3+)"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.11","glucoside 3-dehydrogenase (cytochrome c)"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.2.3","L-lactate dehydrogenase (cytochrome)"],["EC%3A1.1.2.4","D-lactate dehydrogenase (cytochrome)"]]},{"id":"CHEBI:15351","l":"","na":3,"nb":169,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["physiology/autotrophic.html","autotrophic"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15351","requires acetyl-CoA"],["ARO%3A3000341","AAC(2')"],["ARO%3A3007393","AAC(2')-I"],["ARO%3A3002523","AAC(2')-Ia"],["ARO%3A3002524","AAC(2')-Ib"],["ARO%3A3002525","AAC(2')-Ic"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa (strain ATCC 15692 / DSM 22644 / CIP 104116 / JCM 14847 / LMG 12228 / 1C / PRS 101 / PAO1)","na":3,"nb":162,"a":[["ecology/biofilm_formation.html","biofilm formation"],["morphology/twitching_motility.html","twitching motility"],["morphology/type_iv_pilus.html","type IV pilus"]],"b":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF06750","Bacterial Peptidase A24 N-terminal domain"],["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF28403","Aconitase X second domain"],["Pfam%3APF28406","Aconitase X third domain"],["Pfam%3APF04412","Aconitase X first domain"]]},{"id":"GO:0019867","l":"outer membrane","na":3,"nb":143,"a":[["morphology/gram_negative.html","gram negative"],["morphology/gram_stain.html","gram stain"],["morphology/triangular_shaped.html","triangular shaped"]],"b":[["GO%3A0009279","cell outer membrane"],["GO%3A0031968","organelle outer membrane"],["GO%3A0043594","outer endospore membrane"],["GO%3A0019867","outer membrane"],["NCBIfam%3ANF047447","adhesin OmpL37 family surface protein"],["NCBIfam%3ANF007285","AIDA-I family autotransporter adhesin YfaL/EhaC"]]},{"id":"GO:0015948","l":"methanogenesis","na":3,"nb":82,"a":[["metabolism/acetoclastic_methanogenesis.html","acetoclastic methanogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/methyl_based_methanogenesis.html","methyl-based methanogenesis"]],"b":[["GO%3A0019385","methanogenesis, from acetate"],["GO%3A0019386","methanogenesis, from carbon dioxide"],["GO%3A0019387","methanogenesis, from methanol"],["GO%3A0015948","methanogenesis"],["proteintraitsmech%3ASEED_SUBSYSTEM_Methanogenesis","Methanogenesis"],["NCBIfam%3ATIGR03957","5,10-methenyltetrahydromethanopterin hydrogenase cofactor biosynthesis protein HmdB"]]},{"id":"CHEBI:29035","l":"manganese(2+)","na":3,"nb":44,"a":[["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/lignin_degradation.html","lignin degradation"],["metabolism/manganese_oxidation.html","manganese oxidation"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29035","requires manganese(2+)"],["EC%3A1.11.1.13","manganese peroxidase"],["EC%3A1.11.1.16","versatile peroxidase"],["EC%3A1.16.3.3","manganese oxidase"],["EC%3A7.2.2.22","P-type Mn(2+) transporter"],["EC%3A7.2.2.5","ABC-type Mn(2+) transporter"]]},{"id":"GO:0004129","l":"cytochrome-c oxidase activity","na":3,"nb":41,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["other/oxidase_negative.html","oxidase negative"],["physiology/oxidase_activity.html","oxidase activity"]],"b":[["EC%3A7.1.1.9","cytochrome-c oxidase"],["METPO%3A1007086","oxidase negative"],["METPO%3A1007085","oxidase positive"],["RHEA%3A11436","4 Fe(II)-[cytochrome c] + O2 + 8 H(+)(in) = 4 Fe(III)-[cytochrome c] + 2 H2O + 4 H(+)(out)"],["ComplexPortal%3ACPX-1721","Mitochondrial respiratory chain complex IV, COX5A variant"],["ComplexPortal%3ACPX-1722","Mitochondrial respiratory chain complex IV, COX5B variant"]]},{"id":"GO:0009399","l":"nitrogen fixation","na":3,"nb":36,"a":[["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["metabolism/nitrogen_fixation.html","nitrogen fixation"],["morphology/heterocyst.html","heterocyst"]],"b":[["GO%3A0009399","nitrogen fixation"],["proteintraitsmech%3ASEED_SUBSYSTEM_Nitrogen_fixation","Nitrogen fixation"],["NCBIfam%3ATIGR02662","ADP-ribosyl-[dinitrogen reductase] hydrolase"],["NCBIfam%3ATIGR02931","Fe-only nitrogenase subunit beta"],["NCBIfam%3ATIGR02929","Fe-only nitrogenase subunit delta"],["NCBIfam%3ATIGR02000","Fe-S cluster assembly protein NifU"]]},{"id":"GO:0008422","l":"beta-glucosidase activity","na":3,"nb":31,"a":[["metabolism/biopolymer_degradation.html","biopolymer degradation"],["metabolism/cellulolysis.html","cellulolysis"],["physiology/beta_glucosidase_activity.html","beta-glucosidase activity"]],"b":[["EC%3A3.2.1.21","beta-glucosidase"],["RHEA%3A69655","quercetin 3-O-beta-D-glucoside + H2O = quercetin + beta-D-glucose"],["RHEA%3A69647","quercetin 4'-O-beta-D-glucoside + H2O = quercetin + beta-D-glucose"],["GO%3A0080081","4-methylumbelliferyl-beta-D-glucopyranoside beta-glucosidase activity"],["GO%3A0008706","6-phospho-beta-glucosidase activity"],["GO%3A0051993","abscisic acid glucose ester beta-glucosidase activity"]]},{"id":"GO:0022611","l":"dormancy process","na":3,"nb":19,"a":[["physiology/dormancy.html","dormancy"],["physiology/persister_cell_formation.html","persister cell formation"],["physiology/viable_but_nonculturable_state.html","viable but nonculturable state"]],"b":[["GO%3A0097439","acquisition of desiccation tolerance"],["GO%3A0097207","bud dormancy process"],["GO%3A0085014","dormancy entry of symbiont in host"],["GO%3A0085016","dormancy exit of symbiont in host"],["GO%3A0085015","dormancy maintenance of symbiont in host"],["GO%3A0022611","dormancy process"]]},{"id":"CHEBI:17997","l":"dinitrogen","na":3,"nb":18,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["EC%3A1.18.6.1","nitrogenase"],["EC%3A1.18.6.2","vanadium-dependent nitrogenase"],["EC%3A1.19.6.1","nitrogenase (flavodoxin)"],["EC%3A1.7.2.4","nitrous-oxide reductase"],["EC%3A1.7.2.8","hydrazine dehydrogenase"],["RHEA%3A79967","3-diazoavenalumate + NADH + H(+) = avenalumate + N2 + NAD(+)"]]},{"id":"CHEBI:17579","l":"β-carotene","na":3,"nb":16,"a":[["metabolism/proteorhodopsin_phototrophy.html","proteorhodopsin phototrophy"],["morphology/orange_pigmented.html","orange pigmented"],["morphology/yellow_pigmented.html","yellow pigmented"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17579","requires β-carotene"],["EC%3A1.13.11.63","beta-carotene 15,15'-dioxygenase"],["EC%3A1.13.11.71","carotenoid-9',10'-cleaving dioxygenase"],["EC%3A1.14.15.24","beta-carotene 3-hydroxylase"],["EC%3A1.14.99.63","beta-carotene 4-ketolase"],["EC%3A5.2.1.14","beta-carotene isomerase"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":3,"nb":16,"a":[["ecology/rhizosphere_association.html","rhizosphere association"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/psychrotolerant.html","psychrotolerant"]],"b":[["Pfam%3APF16822","SGNH hydrolase-like domain, acetyltransferase AlgX"],["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"],["Pfam%3APF11182","Alginate O-acetyl transferase AlgF"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF27129","Functional amyloid protein FapB/FapC family"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]]},{"id":"CHEBI:16183","l":"methane","na":3,"nb":13,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/methanogenesis.html","Methanogenesis"],["physiology/methanotrophic.html","methanotrophic"]],"b":[["EC%3A1.14.13.25","methane monooxygenase (soluble)"],["EC%3A1.14.18.3","methane monooxygenase (particulate)"],["EC%3A2.8.4.1","coenzyme-B sulfoethylthiotransferase"],["EC%3A4.7.1.1","alpha-D-ribose 1-methylphosphonate 5-phosphate C-P-lyase"],["RHEA%3A34707","alpha-D-ribose 1-methylphosphonate 5-phosphate + AH2 + S-adenosyl-L-methionine = alpha-D-ribose 1,2-cyclic phosphate 5-phosphate + methane + 5'-deoxyadenosine + L-methionine + A + H(+)"],["RHEA%3A12532","coenzyme B + methyl-coenzyme M = methane + coenzyme M-coenzyme B heterodisulfide"]]},{"id":"GO:0060187","l":"cell pole","na":3,"nb":10,"a":[["morphology/amphitrichous.html","amphitrichous"],["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/lophotrichous.html","lophotrichous"]],"b":[["GO%3A0044225","apical pole of neuron"],["GO%3A0044226","basal pole of neuron"],["GO%3A0090712","basal pole of outer hair cell"],["GO%3A0060187","cell pole"],["GO%3A0051286","cell tip"],["GO%3A1990902","new cell pole"]]},{"id":"GO:0009325","l":"nitrate reductase complex","na":3,"nb":9,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]],"b":[["ComplexPortal%3ACPX-3447","NapAB nitrate reductase complex"],["ComplexPortal%3ACPX-5581","Nitrate reductase Z complex"],["GO%3A0044799","NarGHI complex"],["GO%3A0009325","nitrate reductase complex"],["NCBIfam%3ATIGR01580","nitrate reductase subunit alpha"],["NCBIfam%3ATIGR01660","nitrate reductase subunit beta"]]},{"id":"InterPro:IPR033966","l":"","na":9,"nb":3,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["physiology/autotrophic.html","autotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"]],"b":[["SFLD%3ASFLDS00014","RuBisCO"],["PANTHER%3APTHR42704","RIBULOSE BISPHOSPHATE CARBOXYLASE"],["PROSITE%3APS00157","Ribulose bisphosphate carboxylase large chain active site"]]},{"id":"NCBITaxon:210","l":"Helicobacter pylori","na":3,"nb":9,"a":[["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/helical_shaped.html","helical shaped"],["morphology/lophotrichous.html","lophotrichous"]],"b":[["Pfam%3APF18025","Alpha-(1,3)-fucosyltransferase FucT N-terminal domain"],["Pfam%3APF18971","CagA protein"],["Pfam%3APF03507","CagA exotoxin phosphopeptide substrate mimic region"],["Pfam%3APF02691","Vacuolating cyotoxin beta-helical domain"],["TED%3AAF-A0A2T6UWI4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T6UWI4-F1-model_v4_TED01"],["TED%3AAF-A0A1Q9JB12-F1-model_v4_TED01","TED novel fold AF-A0A1Q9JB12-F1-model_v4_TED01"]]},{"id":"GO:0019491","l":"ectoine biosynthetic process","na":3,"nb":8,"a":[["environment/euryhaline.html","euryhaline"],["environment/halotolerant.html","halotolerant"],["environment/slightly_halophilic.html","slightly halophilic"]],"b":[["GO%3A0019491","ectoine biosynthetic process"],["proteintraitsmech%3ASEED_SUBSYSTEM_Ectoine_synthesis","Ectoine synthesis"],["NCBIfam%3ATIGR00709","diaminobutyrate--2-oxoglutarate transaminase family protein"],["NCBIfam%3ATIGR02407","diaminobutyrate--2-oxoglutarate transaminase"],["NCBIfam%3ATIGR02406","diaminobutyrate acetyltransferase"],["NCBIfam%3ANF009806","ectoine synthase"]]},{"id":"GO:0031456","l":"glycine betaine biosynthetic process","na":3,"nb":8,"a":[["environment/euryhaline.html","euryhaline"],["environment/halotolerant.html","halotolerant"],["environment/nacl_range_low.html","NaCl range low"]],"b":[["GO%3A0031456","glycine betaine biosynthetic process"],["NCBIfam%3ANF009725","betaine-aldehyde dehydrogenase"],["NCBIfam%3ATIGR01804","betaine-aldehyde dehydrogenase"],["NCBIfam%3ATIGR03384","choline-binding transcriptional repressor BetI"],["NCBIfam%3ANF053866","choline dehydrogenase"],["NCBIfam%3ATIGR01810","choline dehydrogenase"]]},{"id":"GO:0006636","l":"unsaturated fatty acid biosynthetic process","na":3,"nb":7,"a":[["environment/pressure_range.html","pressure range"],["environment/temperature_delta_high.html","temperature delta high"],["environment/thermotolerant.html","thermotolerant"]],"b":[["GO%3A2001303","lipoxin A4 biosynthetic process"],["GO%3A2001306","lipoxin B4 biosynthetic process"],["GO%3A2001280","positive regulation of unsaturated fatty acid biosynthetic process"],["GO%3A0046457","prostanoid biosynthetic process"],["GO%3A1902609","(R)-2-hydroxy-alpha-linolenic acid biosynthetic process"],["GO%3A2001279","regulation of unsaturated fatty acid biosynthetic process"]]},{"id":"NCBITaxon:1314","l":"Streptococcus pyogenes","na":3,"nb":7,"a":[["environment/aerotolerant.html","aerotolerant"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"],["morphology/streptococcus_arrangement.html","streptococcus arrangement"]],"b":[["Pfam%3APF13585","CHU_C Type IX secretion signal domain"],["Pfam%3APF24547","Domain of unknown function (DUF7601)"],["Pfam%3APF08998","Bacterial epsilon antitoxin"],["Pfam%3APF06280","Fn3-like domain"],["Pfam%3APF02274","Arginine deiminase"],["Pfam%3APF13734","Spi protease inhibitor"]]},{"id":"GO:0070224","l":"sulfide:quinone oxidoreductase activity","na":3,"nb":6,"a":[["metabolism/sulfur_oxidation.html","sulfur oxidation"],["morphology/sulfur_globule.html","sulfur globule"],["physiology/lithoheterotrophic.html","lithoheterotrophic"]],"b":[["EC%3A1.8.5.4","bacterial sulfide:quinone reductase"],["RHEA%3A30239","n a quinone + n hydrogen sulfide + n H(+) = polysulfur(n-2) + n a quinol"],["GO%3A0070224","sulfide:quinone oxidoreductase activity"],["MCSA%3A320","sulfide:quinone oxidoreductase"],["proteintraitsmech%3ABIOLIP_PS9","PS9-binding site"],["proteintraitsmech%3ABIOLIP_S3H","S3H-binding site"]]},{"id":"METPO:1000800","l":"respiration","na":6,"nb":3,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/fermentation.html","Fermentation"],["metabolism/respiration.html","respiration"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"]],"b":[["METPO%3A1000801","Aerobic respiration"],["METPO%3A1000802","Anaerobic respiration"],["METPO%3A1000800","respiration"]]},{"id":"NCBITaxon:381666","l":"Cupriavidus necator H16","na":6,"nb":3,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"],["physiology/autotrophic.html","autotrophic"],["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["Pfam%3APF13473","Cupredoxin-like domain"],["Pfam%3APF10605","3HB-oligomer hydrolase (3HBOH)"],["Pfam%3APF21783","YNCE-like beta-propeller"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":3,"nb":6,"a":[["environment/anaerobic.html","anaerobic"],["environment/strictly_anaerobic.html","strictly anaerobic"],["metabolism/fumarate_respiration.html","fumarate respiration"]],"b":[["Pfam%3APF16376","N-terminal domain of fragilysin"],["TED%3AAF-A0A412XR06-F1-model_v4_TED03","TED novel fold AF-A0A412XR06-F1-model_v4_TED03"],["TED%3AAF-A0A4V1EUI2-F1-model_v4_TED02","TED novel fold AF-A0A4V1EUI2-F1-model_v4_TED02"],["TED%3AAF-A0A5C6IXH5-F1-model_v4_TED01","TED novel fold AF-A0A5C6IXH5-F1-model_v4_TED01"],["TED%3AAF-A0A5C6L6G9-F1-model_v4_TED02","TED novel fold AF-A0A5C6L6G9-F1-model_v4_TED02"],["TED%3AAF-A0A642KY52-F1-model_v4_TED01","TED novel fold AF-A0A642KY52-F1-model_v4_TED01"]]},{"id":"UniProt:P27988","l":"","na":3,"nb":6,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"]],"b":[["Pfam%3APF18537","Carbon monoxide dehydrogenase subunit alpha N-terminal domain"],["proteintraitsmech%3AMETALPDB_CU_HEXANUCLEAR","hexanuclear copper site"],["proteintraitsmech%3AMETALPDB_FE_HEXANUCLEAR","hexanuclear iron site"],["proteintraitsmech%3AMETALPDB_NI_HEXANUCLEAR","hexanuclear nickel site"],["proteintraitsmech%3AMETALPDB_ZN_HEXANUCLEAR","hexanuclear zinc site"],["proteintraitsmech%3AMETALPDB_ZN_PENTANUCLEAR","pentanuclear zinc site"]]},{"id":"NCBITaxon:228410","l":"Nitrosomonas europaea ATCC 19718","na":5,"nb":3,"a":[["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["Pfam%3APF02461","Ammonia monooxygenase"],["Pfam%3APF13435","Cytochrome c554 and c-prime"],["TED%3AAF-Q82SR8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q82SR8-F1-model_v4_TED01"]]},{"id":"GO:0008776","l":"acetate kinase activity","na":3,"nb":4,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["EC%3A2.7.2.1","acetate kinase"],["RHEA%3A11352","acetate + ATP = acetyl phosphate + ADP"],["GO%3A0008776","acetate kinase activity"],["MCSA%3A643","acetate kinase"]]},{"id":"GO:0018597","l":"ammonia monooxygenase activity","na":3,"nb":4,"a":[["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["EC%3A1.14.99.39","ammonia monooxygenase"],["RHEA%3A27341","AH2 + NH4(+) + O2 = hydroxylamine + A + H2O + H(+)"],["GO%3A0018597","ammonia monooxygenase activity"],["NCBIfam%3ANF041557","bacterial ammonia monooxygenase, subunit AmoA"]]},{"id":"InterPro:IPR001182","l":"","na":4,"nb":3,"a":[["morphology/fusiform_shaped.html","fusiform shaped"],["morphology/oval_shaped.html","oval shaped"],["morphology/prosthecate.html","prosthecate"],["morphology/tailed_shaped.html","tailed shaped"]],"b":[["PANTHER%3APTHR30474","CELL CYCLE PROTEIN"],["Pfam%3APF01098","Cell cycle protein"],["PROSITE%3APS00428","Cell cycle proteins ftsW / rodA / spoVE signature"]]},{"id":"NCBITaxon:1525","l":"Neomoorella thermoacetica","na":3,"nb":4,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"]],"b":[["Pfam%3APF25461","Selenocysteine-specific elongation factor, beta-barrel domain"],["Pfam%3APF18537","Carbon monoxide dehydrogenase subunit alpha N-terminal domain"],["Pfam%3APF04060","Putative Fe-S cluster"],["Pfam%3APF03599","CO dehydrogenase/acetyl-CoA synthase delta subunit"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":3,"nb":4,"a":[["ecology/mutualism.html","mutualism"],["physiology/bioluminescence.html","bioluminescence"],["physiology/quorum_sensing.html","quorum sensing"]],"b":[["PROSITE%3APS00949","Autoinducer synthase family signature"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"],["PROSITE%3APS00607","cAMP phosphodiesterases class-II signature"],["TED%3AAF-A0A844NWZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A844NWZ1-F1-model_v4_TED02"]]},{"id":"GO:0016689","l":"manganese peroxidase activity","na":3,"nb":3,"a":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/lignin_degradation.html","lignin degradation"],["metabolism/manganese_oxidation.html","manganese oxidation"]],"b":[["EC%3A1.11.1.13","manganese peroxidase"],["RHEA%3A22776","2 Mn(2+) + H2O2 + 2 H(+) = 2 Mn(3+) + 2 H2O"],["GO%3A0016689","manganese peroxidase activity"]]},{"id":"METPO:1000731","l":"nutrient adaptation","na":3,"nb":3,"a":[["physiology/copiotrophic.html","copiotrophic"],["physiology/nutrient_adaptation.html","nutrient adaptation"],["physiology/oligotrophic.html","oligotrophic"]],"b":[["METPO%3A1000642","copiotrophic"],["METPO%3A1000731","nutrient adaptation"],["METPO%3A1000654","oligotrophic"]]},{"id":"METPO:1005010","l":"indole test","na":3,"nb":3,"a":[["other/indole_test.html","indole test"],["other/indole_test_negative.html","indole test negative"],["other/indole_test_positive.html","indole test positive"]],"b":[["METPO%3A1005010","indole test"],["METPO%3A1005012","indole test negative"],["METPO%3A1005011","indole test positive"]]},{"id":"METPO:1005013","l":"methyl red test","na":3,"nb":3,"a":[["other/methyl_red_test.html","methyl red test"],["other/methyl_red_test_negative.html","methyl red test negative"],["other/methyl_red_test_positive.html","methyl red test positive"]],"b":[["METPO%3A1005013","methyl red test"],["METPO%3A1005015","methyl red test negative"],["METPO%3A1005014","methyl red test positive"]]},{"id":"METPO:1005016","l":"Voges-Proskauer test","na":3,"nb":3,"a":[["other/voges_proskauer_test.html","Voges-Proskauer test"],["other/voges_proskauer_test_negative.html","Voges-Proskauer test negative"],["other/voges_proskauer_test_positive.html","Voges-Proskauer test positive"]],"b":[["METPO%3A1005016","Voges-Proskauer test"],["METPO%3A1005018","Voges-Proskauer test negative"],["METPO%3A1005017","Voges-Proskauer test positive"]]},{"id":"METPO:1007089","l":"coagulase activity","na":3,"nb":3,"a":[["other/coagulase_negative.html","coagulase negative"],["other/coagulase_positive.html","coagulase positive"],["physiology/coagulase_activity.html","coagulase activity"]],"b":[["METPO%3A1007089","coagulase activity"],["METPO%3A1007091","coagulase negative"],["METPO%3A1007090","coagulase positive"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":3,"nb":3,"a":[["ecology/commensalism.html","commensalism"],["genomics/nhi_system.html","Nhi system"],["other/coagulase_negative.html","coagulase negative"]],"b":[["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF08130","Type A lantibiotic family"],["Pfam%3APF04738","Lantibiotic dehydratase, N terminus"]]},{"id":"NCBITaxon:2257","l":"Natronomonas pharaonis","na":3,"nb":3,"a":[["environment/alkaphilic.html","alkaliphilic"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/obligately_alkaphilic.html","obligately alkaliphilic"]],"b":[["Pfam%3APF17909","Htr2 transmembrane domain"],["PROSITE%3APS00950","Bacterial rhodopsins signature 1"],["PROSITE%3APS00327","Bacterial rhodopsins retinal binding site"]]},{"id":"NCBITaxon:431944","l":"Magnetospirillum gryphiswaldense MSR-1","na":3,"nb":3,"a":[["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/magnetosome.html","magnetosome"],["physiology/magnetotaxis.html","magnetotaxis"]],"b":[["Pfam%3APF12728","Helix-turn-helix domain"],["Pfam%3APF04011","LemA family"],["Pfam%3APF07219","HemY protein N-terminus"]]},{"id":"UniProt:P10717","l":"","na":3,"nb":3,"a":[["physiology/photoheterotrophic.html","photoheterotrophic"],["physiology/photoorganoheterotrophic.html","photoorganoheterotrophic"],["physiology/phototrophic.html","phototrophic"]],"b":[["proteintraitsmech%3ABIOLIP_07D","07D-binding site"],["proteintraitsmech%3ABIOLIP_08I","08I-binding site"],["proteintraitsmech%3ABIOLIP_RQ0","RQ0-binding site"]]},{"id":"UniProt:Q04507","l":"","na":3,"nb":3,"a":[["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["EC%3A1.14.99.39","ammonia monooxygenase"],["RHEA%3A27341","AH2 + NH4(+) + O2 = hydroxylamine + A + H2O + H(+)"],["Pfam%3APF02461","Ammonia monooxygenase"]]},{"id":"GO:0009058","l":"biosynthetic process","na":2,"nb":733,"a":[["metabolism/metabolism.html","metabolism"],["physiology/heterotrophic.html","heterotrophic"]],"b":[["GO%3A1901852","7,8-didemethyl-8-hydroxy-5-deazariboflavin biosynthetic process"],["GO%3A0008292","acetylcholine biosynthetic process"],["GO%3A0046184","aldehyde biosynthetic process"],["GO%3A0019428","allantoin biosynthetic process"],["GO%3A0009309","amine biosynthetic process"],["GO%3A0008652","amino acid biosynthetic process"]]},{"id":"CHEBI:17499","l":"","na":2,"nb":633,"a":[["metabolism/electron_transfer.html","Electron transfer"],["metabolism/respiration.html","respiration"]],"b":[["EC%3A1.1.99.1","choline dehydrogenase"],["EC%3A1.1.99.12","sorbose dehydrogenase"],["EC%3A1.1.99.13","glucoside 3-dehydrogenase (acceptor)"],["EC%3A1.1.99.14","glycolate dehydrogenase"],["EC%3A1.1.99.18","cellobiose dehydrogenase (acceptor)"],["EC%3A1.1.99.2","L-2-hydroxyglutarate dehydrogenase"]]},{"id":"GO:0004252","l":"serine-type endopeptidase activity","na":2,"nb":281,"a":[["physiology/alpha_chymotrypsin_activity.html","alpha-chymotrypsin activity"],["physiology/trypsin_activity.html","trypsin activity"]],"b":[["EC%3A3.4.21.1","chymotrypsin"],["EC%3A3.4.21.10","acrosin"],["EC%3A3.4.21.102","C-terminal processing peptidase"],["EC%3A3.4.21.20","cathepsin G"],["EC%3A3.4.21.21","coagulation factor VIIa"],["EC%3A3.4.21.22","coagulation factor IXa"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":2,"nb":212,"a":[["physiology/methanotrophic.html","methanotrophic"],["physiology/methylotrophic.html","methylotrophic"]],"b":[["EC%3A1.1.1.244","methanol dehydrogenase"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.99.37","methanol dehydrogenase (nicotinoprotein)"],["EC%3A1.13.11.94","4-vinylguaiacol dioxygenase"],["EC%3A1.14.11.27","[histone H3]-dimethyl-L-lysine(36) demethylase"]]},{"id":"GO:0008233","l":"peptidase activity","na":2,"nb":141,"a":[["physiology/caseinase_activity.html","caseinase activity"],["physiology/gelatinase_activity.html","gelatinase activity"]],"b":[["ComplexPortal%3ACPX-9002","PA28-alphabeta single-capped 20S proteasome complex"],["ComplexPortal%3ACPX-9022","PA28-gamma double-capped 20S proteasome complex"],["ComplexPortal%3ACPX-9001","PA28-gamma single-capped 20S proteasome complex"],["ComplexPortal%3ACPX-3785","Tryptase alpha/beta-1 complex"],["ComplexPortal%3ACPX-3804","Tryptase alpha/beta-1 complex"],["ComplexPortal%3ACPX-3805","Tryptase beta-2 complex"]]},{"id":"CHEBI:16452","l":"","na":2,"nb":117,"a":[["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["EC%3A1.1.1.299","malate dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.1.37","(S)-malate dehydrogenase (NAD(+), oxaloacetate-forming)"],["EC%3A1.1.1.38","malate dehydrogenase (oxaloacetate-decarboxylating)"],["EC%3A1.1.1.40","malate dehydrogenase (oxaloacetate-decarboxylating) (NADP(+))"],["EC%3A1.1.1.82","malate dehydrogenase (NADP(+))"],["EC%3A1.1.5.4","malate dehydrogenase (quinone)"]]},{"id":"GO:0006099","l":"tricarboxylic acid cycle","na":2,"nb":92,"a":[["physiology/heterotrophic.html","heterotrophic"],["physiology/organoheterotrophic.html","organoheterotrophic"]],"b":[["ComplexPortal%3ACPX-3921","2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-9044","Mitochondrial 2-oxoglutarate dehydrogenase complex,CG1544 variant"],["ComplexPortal%3ACPX-9043","Mitochondrial 2-oxoglutarate dehydrogenase complex, CG33791 variant"],["ComplexPortal%3ACPX-1293","Mitochondrial 2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-9061","Mitochondrial 2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-9042","Mitochondrial 2-oxoglutarate dehydrogenase complex, ODGH variant"]]},{"id":"CHEBI:17790","l":"methanol","na":2,"nb":86,"a":[["physiology/methanotrophic.html","methanotrophic"],["physiology/methylotrophic.html","methylotrophic"]],"b":[["EC%3A1.1.1.244","methanol dehydrogenase"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.99.37","methanol dehydrogenase (nicotinoprotein)"],["EC%3A1.14.13.25","methane monooxygenase (soluble)"],["EC%3A1.14.14.117","aflatoxin B synthase"]]},{"id":"GO:0006302","l":"double-strand break repair","na":2,"nb":85,"a":[["environment/desiccation_tolerant.html","desiccation tolerant"],["environment/ionizing_radiation_tolerant.html","ionizing radiation tolerant"]],"b":[["ComplexPortal%3ACPX-10302","MRN double-strand break repair complex"],["ComplexPortal%3ACPX-1872","MRX double-strand break repair complex"],["ComplexPortal%3ACPX-511","MUS81-EME1 structure-specific endonuclease complex"],["ComplexPortal%3ACPX-585","MUS81-EME1 structure-specific endonuclease complex"],["ComplexPortal%3ACPX-586","MUS81-EME2 structure-specific endonuclease complex"],["ComplexPortal%3ACPX-587","MUS81-EME2 structure-specific endonuclease complex"]]},{"id":"GO:0051607","l":"defense response to virus","na":2,"nb":80,"a":[["genomics/crispr_cas_system.html","CRISPR-Cas system"],["genomics/phage_defense_system.html","phage defense system"]],"b":[["UniProtKB-KW%3AKW-0051","Antiviral defense"],["ComplexPortal%3ACPX-4142","AIM2 inflammasome"],["ComplexPortal%3ACPX-4243","AIM2 inflammasome"],["ComplexPortal%3ACPX-6037","MAVS-TRAF3 E3 ubiquitin ligase complex"],["ComplexPortal%3ACPX-2128","Sting complex"],["ComplexPortal%3ACPX-6018","STING-TRAF3-TBK1 complex"]]},{"id":"GO:0071973","l":"bacterial-type flagellum-dependent cell motility","na":2,"nb":60,"a":[["ecology/soil_dwelling.html","soil-dwelling"],["morphology/swarming_motility.html","swarming motility"]],"b":[["ComplexPortal%3ACPX-4886","DNA-directed RNA polymerase holoenzyme complex, SigmaF variant"],["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["GO%3A0071973","bacterial-type flagellum-dependent cell motility"],["GO%3A0071978","bacterial-type flagellum-dependent swarming motility"]]},{"id":"CHEBI:33542","l":"","na":2,"nb":38,"a":[["metabolism/disproportionation.html","Disproportionation"],["physiology/chemolithotrophic.html","chemolithotrophic"]],"b":[["EC%3A1.8.2.2","thiosulfate dehydrogenase"],["EC%3A1.8.2.5","thiosulfate reductase (cytochrome)"],["EC%3A1.8.5.2","thiosulfate dehydrogenase (quinone)"],["EC%3A1.8.5.5","thiosulfate reductase (quinone)"],["EC%3A2.5.1.144","S-sulfo-L-cysteine synthase (O-acetyl-L-serine-dependent)"],["EC%3A2.8.1.1","thiosulfate sulfurtransferase"]]},{"id":"GO:0004022","l":"alcohol dehydrogenase (NAD+) activity","na":2,"nb":38,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["physiology/nad_dependent_alcohol_dehydrogenase_activity.html","NAD-dependent alcohol dehydrogenase activity"]],"b":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["RHEA%3A10736","a primary alcohol + NAD(+) = an aldehyde + NADH + H(+)"],["RHEA%3A10740","a secondary alcohol + NAD(+) = a ketone + NADH + H(+)"],["GO%3A0106429","11-cis-retinol dehydrogenase (NAD+) activity"],["GO%3A0052676","3-methylbutanal reductase (NADH) activity"],["GO%3A0004022","alcohol dehydrogenase (NAD+) activity"]]},{"id":"GO:0016805","l":"dipeptidase activity","na":2,"nb":36,"a":[["physiology/glutamyl_glutamic_acid_arylamidase_activity.html","glutamyl glutamic acid arylamidase activity"],["physiology/leucyl_glycine_arylamidase_activity.html","leucyl glycine arylamidase activity"]],"b":[["EC%3A3.4.13.18","cytosol non-specific dipeptidase"],["EC%3A3.4.13.19","membrane dipeptidase"],["EC%3A3.4.13.21","dipeptidase E"],["GO%3A0160237","D-Ala-D-Ala dipeptidase activity"],["GO%3A0016805","dipeptidase activity"],["GO%3A0070573","metallodipeptidase activity"]]},{"id":"GO:0016298","l":"lipase activity","na":2,"nb":33,"a":[["metabolism/lipolysis.html","lipolysis"],["physiology/lipase_activity.html","lipase activity"]],"b":[["GO%3A0120516","diacylglycerol lipase activity"],["GO%3A0047714","galactolipase activity"],["GO%3A0016298","lipase activity"],["GO%3A0047372","monoacylglycerol lipase activity"],["GO%3A0120569","phospholipase activity"],["GO%3A0004771","sterol ester esterase activity"]]},{"id":"CHEBI:36242","l":"","na":2,"nb":32,"a":[["morphology/black_pigmented.html","black pigmented"],["morphology/brown_pigmented.html","brown pigmented"]],"b":[["EC%3A1.1.1.110","aromatic 2-oxoacid reductase"],["EC%3A1.1.1.237","hydroxyphenylpyruvate reductase"],["EC%3A1.13.11.27","4-hydroxyphenylpyruvate dioxygenase"],["EC%3A1.13.11.46","4-hydroxymandelate synthase"],["EC%3A1.2.3.13","4-hydroxyphenylpyruvate oxidase"],["EC%3A1.3.1.12","prephenate dehydrogenase"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":2,"nb":32,"a":[["genomics/gc_mid1.html","GC mid1"],["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["Pfam%3APF25848","Rodlin protein"],["Pfam%3APF13420","Acetyltransferase (GNAT) domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF26381","BREX System ATPase PglY protein 5th domain"],["Pfam%3APF26382","BREX System ATPase PglY protein 6th domain"]]},{"id":"CHEBI:16236","l":"ethanol","na":2,"nb":31,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]],"b":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.5.5","alcohol dehydrogenase (quinone)"],["EC%3A1.1.99.36","alcohol dehydrogenase (nicotinoprotein)"],["EC%3A2.3.1.268","ethanol O-acetyltransferase"],["EC%3A3.1.1.113","ethyl acetate hydrolase"],["EC%3A3.1.1.67","fatty-acyl-ethyl-ester synthase"]]},{"id":"NCBITaxon:243273","l":"Mycoplasmoides genitalium (strain ATCC 33530 / DSM 19775 / NCTC 10195 / G37)","na":2,"nb":31,"a":[["genomics/gc_high.html","GC high"],["genomics/genome_size.html","genome size"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF03257","Mycoplasma adhesin P1, C-terminal"],["Pfam%3APF09185","Domain of unknown function (DUF1948)"],["Pfam%3APF09188","Domain of unknown function (DUF1951)"],["Pfam%3APF03072","Domain of unknown function (DUF237)"],["Pfam%3APF03086","Domain of unknown function (DUF240)"]]},{"id":"GO:0008810","l":"cellulase activity","na":2,"nb":28,"a":[["metabolism/biopolymer_degradation.html","biopolymer degradation"],["metabolism/cellulolysis.html","cellulolysis"]],"b":[["EC%3A3.2.1.4","cellulase"],["GO%3A0008810","cellulase activity"],["InterPro%3AIPR005087","Carbohydrate binding module family 11"],["InterPro%3AIPR005086","Carbohydrate binding module family 17/28"],["InterPro%3AIPR004197","Cellulase, Ig-like domain"],["InterPro%3AIPR000334","Glycoside hydrolase, family 45"]]},{"id":"GO:0051139","l":"metal cation:proton antiporter activity","na":2,"nb":26,"a":[["environment/alkalotolerant.html","alkalotolerant"],["environment/neutrophilic.html","neutrophilic"]],"b":[["GO%3A0015369","calcium:proton antiporter activity"],["GO%3A0010348","lithium:proton antiporter activity"],["GO%3A0010486","manganese:proton antiporter activity"],["GO%3A0051139","metal cation:proton antiporter activity"],["GO%3A0015386","potassium:proton antiporter activity"],["GO%3A0015385","sodium:proton antiporter activity"]]},{"id":"GO:1990573","l":"potassium ion import across plasma membrane","na":2,"nb":25,"a":[["environment/nacl_delta.html","NaCl delta"],["environment/nacl_delta_mid1.html","NaCl delta mid1"]],"b":[["ComplexPortal%3ACPX-260","HCN1 channel complex"],["ComplexPortal%3ACPX-142","HCN2 channel complex"],["ComplexPortal%3ACPX-270","HCN3 channel complex"],["ComplexPortal%3ACPX-139","HCN4 channel complex"],["ComplexPortal%3ACPX-186","Inward rectifying potassium channel complex, Kir6.2-SUR1"],["ComplexPortal%3ACPX-194","Inward rectifying potassium channel complex, Kir6.2-SUR1"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":2,"nb":25,"a":[["genomics/ploidy.html","ploidy"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["Pfam%3APF13372","Alginate export"],["Pfam%3APF25965","ALG44 beta-barrel domain"],["Pfam%3APF25964","ALG44, barrel-sandwich hybrid domain"],["Pfam%3APF16844","Dinitrogenase iron-molybdenum cofactor, N-terminal"],["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"]]},{"id":"GO:0004089","l":"carbonate dehydratase activity","na":2,"nb":24,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["physiology/urease_activity.html","urease activity"]],"b":[["EC%3A4.2.1.1","carbonic anhydrase"],["RHEA%3A10748","hydrogencarbonate + H(+) = CO2 + H2O"],["GO%3A0004089","carbonate dehydratase activity"],["NCBIfam%3ANF007756","carbonate dehydratase"],["NCBIfam%3ANF011765","carbonic anhydrase family protein"],["NCBIfam%3ANF040597","carbonic anhydrase"]]},{"id":"UniProt:P0AE67","l":"","na":2,"nb":24,"a":[["morphology/motile.html","motile"],["physiology/chemotaxis.html","chemotaxis"]],"b":[["ComplexPortal%3ACPX-1077","Chemotaxis phosphorelay complex CheA-CheY"],["ComplexPortal%3ACPX-1088","Chemotaxis phosphorelay complex CheY-CheZ"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009433","bacterial-type flagellum basal body, C ring"],["GO%3A0009288","bacterial-type flagellum"],["GO%3A0120107","bacterial-type flagellum rotor complex"]]},{"id":"CHEBI:15429","l":"","na":2,"nb":23,"a":[["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["EC%3A1.14.99.39","ammonia monooxygenase"],["EC%3A1.3.7.8","benzoyl-CoA reductase"],["EC%3A1.7.1.10","hydroxylamine reductase (NADH)"],["EC%3A1.7.1.5","hyponitrite reductase"],["EC%3A1.7.2.6","hydroxylamine dehydrogenase"],["EC%3A1.7.2.9","hydroxylamine oxidase"]]},{"id":"CHEBI:29105","l":"zinc(2+)","na":2,"nb":20,"a":[["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/zinc_tolerant.html","zinc tolerant"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29105","requires zinc(2+)"],["EC%3A7.2.2.12","P-type Zn(2+) transporter"],["EC%3A7.2.2.20","ABC-type Zn(2+) transporter"],["RHEA%3A62264","selenite(out) + Zn(2+)(out) + hydrogencarbonate(out) = selenite(in) + Zn(2+)(in) + hydrogencarbonate(in)"],["RHEA%3A72627","Zn(2+)(in) + 2 H(+)(out) = Zn(2+)(out) + 2 H(+)(in)"],["RHEA%3A20621","Zn(2+)(in) + ATP + H2O = Zn(2+)(out) + ADP + phosphate + H(+)"]]},{"id":"CHEBI:18421","l":"","na":2,"nb":19,"a":[["environment/microaerotolerant.html","microaerotolerant"],["environment/obligately_aerobic.html","obligately aerobic"]],"b":[["EC%3A1.10.3.17","superoxide oxidase"],["EC%3A1.15.1.1","superoxide dismutase"],["EC%3A1.15.1.2","superoxide reductase"],["RHEA%3A80515","2,4,6-trinitrotoluene radical + O2 = 2,4,6-trinitrotoluene + superoxide + H(+)"],["RHEA%3A20696","2 superoxide + 2 H(+) = H2O2 + O2"],["RHEA%3A29179","a menaquinol + 2 O2 = 2 superoxide + a menaquinone + 2 H(+)"]]},{"id":"GO:0009039","l":"urease activity","na":2,"nb":19,"a":[["other/urease_negative.html","urease negative"],["physiology/urease_activity.html","urease activity"]],"b":[["EC%3A3.5.1.5","urease"],["METPO%3A1007088","urease negative"],["METPO%3A1007087","urease positive"],["RHEA%3A20557","urea + 2 H2O + H(+) = hydrogencarbonate + 2 NH4(+)"],["GO%3A0009039","urease activity"],["NCBIfam%3ANF009685","urease subunit alpha"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":2,"nb":19,"a":[["genomics/crispr_cas_system.html","CRISPR-Cas system"],["genomics/phage_defense_system.html","phage defense system"]],"b":[["Pfam%3APF03306","Alpha-acetolactate decarboxylase"],["Pfam%3APF22208","Cas_Csm6 CARF domain"],["Pfam%3APF09659","Cas_Csm6 HEPN domain"],["Pfam%3APF22335","Cas10/Cmr2, second palm domain"],["Pfam%3APF18395","Cas3 C-terminal domain"],["Pfam%3APF18019","Cas3, HD domain"]]},{"id":"GO:0031411","l":"gas vesicle","na":2,"nb":18,"a":[["morphology/gas_vesicle.html","gas vesicle"],["morphology/intracellular_inclusion.html","intracellular inclusion"]],"b":[["GO%3A0031411","gas vesicle"],["NCBIfam%3ANF041667","gas vesicle accessory protein GvpU"],["NCBIfam%3ANF046092","gas vesicle protein GvpA"],["NCBIfam%3ANF045779","gas vesicle protein GvpG"],["NCBIfam%3ANF046090","gas vesicle protein GvpJ"],["NCBIfam%3ANF045778","gas vesicle protein GvpL"]]},{"id":"UniProt:P13445","l":"","na":2,"nb":15,"a":[["physiology/stress_response.html","stress response"],["physiology/viable_but_nonculturable_state.html","viable but nonculturable state"]],"b":[["ComplexPortal%3ACPX-4883","DNA-directed RNA polymerase holoenzyme complex, SigmaS variant"],["ComplexPortal%3ACPX-5024","rpoS-rssB sigma-antisigma complex"],["GO%3A1903865","sigma factor antagonist complex"],["GO%3A0001000","bacterial-type RNA polymerase core enzyme binding"],["GO%3A0016987","sigma factor activity"],["GO%3A0006352","DNA-templated transcription initiation"]]},{"id":"CHEBI:15846","l":"NAD(+)","na":2,"nb":14,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15846","requires NAD+"],["ARO%3A3002846","arr-1"],["ARO%3A3002847","arr-2"],["ARO%3A3002848","arr-3"],["ARO%3A3002849","arr-4"],["ARO%3A3002850","arr-5"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":2,"nb":14,"a":[["morphology/carboxysome.html","carboxysome"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF02224","Cytidylate kinase"],["Pfam%3APF03319","Ethanolamine utilisation protein EutN/carboxysome"],["Pfam%3APF22019","alpha-1,4-glucan branching enzyme GlgB, N-terminal domain"],["Pfam%3APF21714","Circadian clock protein KaiA, N-terminal domain"],["Pfam%3APF07688","KaiA C-terminal domain"]]},{"id":"CHEBI:17045","l":"dinitrogen oxide","na":2,"nb":13,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["physiology/chemolithotrophic.html","chemolithotrophic"]],"b":[["EC%3A1.7.1.14","nitric oxide reductase [NAD(P)(+), nitrous oxide-forming]"],["EC%3A1.7.2.4","nitrous-oxide reductase"],["EC%3A1.7.2.5","nitric-oxide reductase (cytochrome c)"],["EC%3A1.7.5.2","nitric oxide reductase (menaquinol)"],["RHEA%3A30215","a menaquinol + 2 nitric oxide = nitrous oxide + a menaquinone + H2O"],["RHEA%3A43108","N2 + 2 Fe(III)-[cytochrome c] + H2O = nitrous oxide + 2 Fe(II)-[cytochrome c] + 2 H(+)"]]},{"id":"NCBITaxon:272562","l":"Clostridium acetobutylicum (strain ATCC 824 / DSM 792 / JCM 1419 / IAM 19013 / LMG 5710 / NBRC 13948 / NRRL B-527 / VKM B-1787 / 2291 / W)","na":2,"nb":13,"a":[["metabolism/acetone_butanol_ethanol_fermentation.html","acetone-butanol-ethanol fermentation"],["metabolism/fermentation.html","Fermentation"]],"b":[["Pfam%3APF10882","Bacterial PH domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["Pfam%3APF09940","Domain of unknown function (DUF2172)"],["Pfam%3APF16254","Domain of unknown function (DUF4910)"],["Pfam%3APF01183","Glycosyl hydrolases family 25"],["Pfam%3APF16221","winged helix-turn-helix"]]},{"id":"GO:0031469","l":"bacterial microcompartment","na":2,"nb":12,"a":[["morphology/carboxysome.html","carboxysome"],["morphology/intracellular_inclusion.html","intracellular inclusion"]],"b":[["GO%3A0031469","bacterial microcompartment"],["GO%3A0031470","carboxysome"],["GO%3A0031471","ethanolamine degradation polyhedral organelle"],["GO%3A0031472","propanediol degradation polyhedral organelle"],["NCBIfam%3ATIGR02704","carboxysome peptide B"],["NCBIfam%3ANF011934","ethanolamine utilization microcompartment protein EutL"]]},{"id":"NCBITaxon:301447","l":"Streptococcus pyogenes serotype M1","na":2,"nb":12,"a":[["genomics/crispr_cas_system.html","CRISPR-Cas system"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["Pfam%3APF16595","PAM-interacting domain of CRISPR-associated endonuclease Cas9"],["Pfam%3APF22702","Cas9 RuvC domain"],["Pfam%3APF24547","Domain of unknown function (DUF7601)"],["Pfam%3APF22382","Endo-beta-N-acetylglucosaminidase, helical bundle"],["Pfam%3APF20746","Endo-beta-N-acetylglucosaminidase F2, Ig-like domain"],["Pfam%3APF12892","Spy0128-like isopeptide containing domain"]]},{"id":"NCBITaxon:485","l":"Neisseria gonorrhoeae","na":2,"nb":12,"a":[["physiology/oxidase_activity.html","oxidase activity"],["physiology/prolyl_aminopeptidase_activity.html","prolyl aminopeptidase activity"]],"b":[["Pfam%3APF25860","Cryptic plasmid protein A"],["Pfam%3APF12852","Cupin"],["Pfam%3APF17845","FbpC C-terminal regulatory nucleotide binding domain"],["Pfam%3APF22443","FbpC-like, regulatory domain"],["Pfam%3APF18053","DNA gyrase B subunit insert domain"],["Pfam%3APF25885","EMRA, alpha-helical hairpin domain"]]},{"id":"GO:0030641","l":"","na":11,"nb":2,"a":[["environment/acidophilic.html","acidophilic"],["environment/acidotolerant.html","acidotolerant"],["environment/alkalotolerant.html","alkalotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"]],"b":[["PANTHER%3APTHR10110","SODIUM/HYDROGEN EXCHANGER"],["PANTHER%3APTHR12471","VACUOLAR ATP SYNTHASE SUBUNIT S1"]]},{"id":"GO:0035825","l":"homologous recombination","na":2,"nb":11,"a":[["environment/radiotolerant.html","radiotolerant"],["genomics/gc_mid2.html","GC mid2"]],"b":[["ComplexPortal%3ACPX-4426","BRCA1-B complex"],["ComplexPortal%3ACPX-4721","BRCA1-B complex"],["ComplexPortal%3ACPX-4441","BRCA1-C complex"],["ComplexPortal%3ACPX-4722","BRCA1-C complex"],["ComplexPortal%3ACPX-9561","FLIP-FIGNL1 DNA interstrand crosslink repair complex"],["ComplexPortal%3ACPX-1386","Synapsis initiation complex"]]},{"id":"GO:0044403","l":"biological process involved in symbiotic interaction","na":2,"nb":11,"a":[["ecology/plant_pathogen.html","plant pathogen"],["ecology/symbiosis.html","symbiosis"]],"b":[["GO%3A0036377","arbuscular mycorrhizal association"],["GO%3A0051701","biological process involved in interaction with host"],["GO%3A0051702","biological process involved in interaction with symbiont"],["GO%3A0044403","biological process involved in symbiotic interaction"],["GO%3A0075733","intracellular transport of virus"],["GO%3A0044399","multi-species biofilm formation"]]},{"id":"GO:1990586","l":"divisome complex","na":2,"nb":11,"a":[["morphology/coccus_shaped.html","coccus shaped"],["morphology/ellipsoidal.html","ellipsoidal"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["ComplexPortal%3ACPX-3299","FtsBL complex"],["ComplexPortal%3ACPX-3099","FtsQBL complex"],["GO%3A1990586","divisome complex"],["GO%3A1990588","FtsBL complex"],["GO%3A1990587","FtsQBL complex"]]},{"id":"GO:0008976","l":"polyphosphate kinase activity","na":2,"nb":10,"a":[["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/polyphosphate_granule.html","polyphosphate granule"]],"b":[["EC%3A2.7.4.1","ATP-polyphosphate phosphotransferase"],["RHEA%3A19573","[phosphate](n) + ATP = [phosphate](n+1) + ADP"],["GO%3A0008976","polyphosphate kinase activity"],["NCBIfam%3ANF042973","ADP-polyphosphate phosphotransferase"],["NCBIfam%3ATIGR03705","polyphosphate kinase 1"],["NCBIfam%3ATIGR03707","polyphosphate kinase 2"]]},{"id":"GO:0004329","l":"formate-tetrahydrofolate ligase activity","na":2,"nb":9,"a":[["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"]],"b":[["EC%3A6.3.4.3","formate--tetrahydrofolate ligase"],["RHEA%3A20221","(6S)-5,6,7,8-tetrahydrofolate + formate + ATP = (6R)-10-formyltetrahydrofolate + ADP + phosphate"],["GO%3A0004329","formate-tetrahydrofolate ligase activity"],["NCBIfam%3ANF010030","formate--tetrahydrofolate ligase"],["NCBIfam%3ANF010031","formate--tetrahydrofolate ligase"],["NCBIfam%3ANF013436","formate--tetrahydrofolate ligase"]]},{"id":"GO:0019164","l":"pyruvate synthase activity","na":2,"nb":9,"a":[["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"]],"b":[["EC%3A1.2.7.1","pyruvate synthase"],["RHEA%3A12765","2 oxidized [2Fe-2S]-[ferredoxin] + pyruvate + CoA = 2 reduced [2Fe-2S]-[ferredoxin] + acetyl-CoA + CO2 + H(+)"],["GO%3A0019164","pyruvate synthase activity"],["NCBIfam%3ANF041170","2-oxoacid:ferredoxin oxidoreductase subunit alpha"],["NCBIfam%3ANF041171","2-oxoacid:ferredoxin oxidoreductase subunit beta"],["NCBIfam%3ANF040682","pyruvate synthase subunit PorA"]]},{"id":"GO:0031160","l":"spore wall","na":2,"nb":9,"a":[["morphology/spore_forming.html","spore forming"],["morphology/spore_shaped.html","spore shaped"]],"b":[["ComplexPortal%3ACPX-3028","1,3-beta-D-glucan synthase complex, FKS3-RHO1 variant"],["GO%3A0005619","ascospore wall"],["GO%3A0097515","asexual spore wall"],["GO%3A0043591","endospore external encapsulating structure"],["GO%3A0097514","sexual spore wall"],["GO%3A0031160","spore wall"]]},{"id":"NCBITaxon:818","l":"Bacteroides thetaiotaomicron","na":2,"nb":9,"a":[["ecology/gut_associated.html","gut-associated"],["ecology/host_associated.html","host-associated"]],"b":[["Pfam%3APF09093","Lyase, catalytic"],["TED%3AAF-A0A174W9M0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A174W9M0-F1-model_v4_TED01"],["TED%3AAF-A0A679HCU6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A679HCU6-F1-model_v4_TED01"],["TED%3AAF-A0A139L295-F1-model_v4_TED04","TED novel fold AF-A0A139L295-F1-model_v4_TED04"],["TED%3AAF-A0A174QBB7-F1-model_v4_TED02","TED novel fold AF-A0A174QBB7-F1-model_v4_TED02"],["TED%3AAF-A0A679H9T4-F1-model_v4_TED03","TED novel fold AF-A0A679H9T4-F1-model_v4_TED03"]]},{"id":"GO:0000917","l":"division septum assembly","na":2,"nb":8,"a":[["morphology/sarcina_arrangement.html","sarcina arrangement"],["morphology/tetrad_arrangement.html","tetrad arrangement"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["GO%3A0000917","division septum assembly"],["GO%3A0140278","mitotic division septum assembly"],["NCBIfam%3ATIGR02205","cell division protein ZipA"],["NCBIfam%3ATIGR00172","Maf family nucleotide pyrophosphatase"],["PANTHER%3APTHR36419","ARRESTIN FAMILY PROTEIN 1"]]},{"id":"GO:0061579","l":"N-acyl homoserine lactone synthase activity","na":2,"nb":8,"a":[["physiology/bioluminescence.html","bioluminescence"],["physiology/quorum_sensing.html","quorum sensing"]],"b":[["EC%3A2.3.1.184","acyl-homoserine-lactone synthase"],["RHEA%3A10096","a fatty acyl-[ACP] + S-adenosyl-L-methionine = an N-acyl-L-homoserine lactone + S-methyl-5'-thioadenosine + holo-[ACP] + H(+)"],["GO%3A0061579","N-acyl homoserine lactone synthase activity"],["NCBIfam%3ANF052393","acyl-homoserine-lactone synthase"],["NCBIfam%3ANF036435","acyl-homoserine-lactone synthase"],["Pfam%3APF17327","Acyl homoserine lactone synthase"]]},{"id":"NCBITaxon:565050","l":"Caulobacter vibrioides NA1000","na":2,"nb":8,"a":[["morphology/crescent_shaped.html","crescent shaped"],["morphology/tailed_shaped.html","tailed shaped"]],"b":[["Pfam%3APF02767","DNA polymerase III beta subunit, central domain"],["Pfam%3APF02768","DNA polymerase III beta subunit, C-terminal domain"],["Pfam%3APF00712","DNA polymerase III beta subunit, N-terminal domain"],["Pfam%3APF21249","GyrB, hook"],["Pfam%3APF07378","Flagellar protein FlbT"],["Pfam%3APF03748","Flagellar basal body-associated protein FliL"]]},{"id":"GO:0042438","l":"melanin biosynthetic process","na":2,"nb":7,"a":[["morphology/black_pigmented.html","black pigmented"],["morphology/white_pigmented.html","white pigmented"]],"b":[["GO%3A0140614","1,8-dihydroxynaphthalene-melanin biosynthetic process"],["GO%3A0006583","melanin biosynthetic process from tyrosine"],["GO%3A0042438","melanin biosynthetic process"],["Reactome%3AR-HSA-5662702","Melanin biosynthesis"],["NCBIfam%3ANF017995","tyrosinase family oxidase copper chaperone"],["NCBIfam%3ANF047834","tyrosinase MelC2"]]},{"id":"GO:0050304","l":"nitrous-oxide reductase activity","na":2,"nb":7,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"]],"b":[["EC%3A1.7.2.4","nitrous-oxide reductase"],["RHEA%3A43108","N2 + 2 Fe(III)-[cytochrome c] + H2O = nitrous oxide + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["GO%3A0050304","nitrous-oxide reductase activity"],["NCBIfam%3ANF052460","clade III lactonase-type nitrous-oxide reductase"],["NCBIfam%3ATIGR04244","TAT-dependent nitrous-oxide reductase"],["NCBIfam%3ATIGR04246","Sec-dependent nitrous-oxide reductase"]]},{"id":"NCBITaxon:28116","l":"Bacteroides ovatus","na":2,"nb":7,"a":[["metabolism/xylan_degradation.html","xylan degradation"],["physiology/amylase_activity.html","amylase activity"]],"b":[["TED%3AAF-A0A515J030-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A515J030-F1-model_v4_TED01"],["TED%3AAF-A0A5M5C3M7-F1-model_v4_TED01","TED novel fold AF-A0A5M5C3M7-F1-model_v4_TED01"],["TED%3AAF-A0A641PL20-F1-model_v4_TED01","TED novel fold AF-A0A641PL20-F1-model_v4_TED01"],["TED%3AAF-A0A641V3P9-F1-model_v4_TED03","TED novel fold AF-A0A641V3P9-F1-model_v4_TED03"],["TED%3AAF-A0A641VT79-F1-model_v4_TED01","TED novel fold AF-A0A641VT79-F1-model_v4_TED01"],["TED%3AAF-A0A642C648-F1-model_v4_TED01","TED novel fold AF-A0A642C648-F1-model_v4_TED01"]]},{"id":"CHEBI:18246","l":"(1->4)-beta-D-glucan","na":2,"nb":6,"a":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/cellulolysis.html","cellulolysis"]],"b":[["EC%3A2.4.1.12","cellulose synthase (UDP-forming)"],["EC%3A2.4.1.29","cellulose synthase (GDP-forming)"],["EC%3A2.4.1.49","cellodextrin phosphorylase"],["RHEA%3A17797","[(1->4)-beta-D-glucosyl](n) + GDP-alpha-D-glucose = [(1->4)-beta-D-glucosyl](n+1) + GDP + H(+)"],["RHEA%3A23024","[(1->4)-beta-D-glucosyl](n) + phosphate = [(1->4)-beta-D-glucosyl](n-1) + alpha-D-glucose 1-phosphate"],["RHEA%3A19929","[(1->4)-beta-D-glucosyl](n) + UDP-alpha-D-glucose = [(1->4)-beta-D-glucosyl](n+1) + UDP + H(+)"]]},{"id":"CHEBI:27208","l":"","na":6,"nb":2,"a":[["environment/mesophilic.html","mesophilic"],["environment/temperature_delta.html","temperature delta"],["environment/temperature_delta_mid2.html","temperature delta mid2"],["environment/temperature_optimum_mid1.html","temperature optimum mid1"],["environment/temperature_optimum_mid2.html","temperature optimum mid2"],["environment/temperature_optimum_very_low.html","temperature optimum very low"]],"b":[["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"],["TCDB%3A9.A.76","The Omega3 Fatty Acid Desaturase 3/Putative Transporter (FAD3) Family"]]},{"id":"InterPro:IPR012171","l":"","na":2,"nb":6,"a":[["environment/facultative_psychrophilic.html","facultative psychrophilic"],["environment/temperature_preference.html","temperature preference"]],"b":[["Pfam%3APF00173","Cytochrome b5-like Heme/Steroid binding domain"],["Pfam%3APF00487","Fatty acid desaturase"],["PANTHER%3APTHR19353","FATTY ACID DESATURASE 2"],["PANTHER%3APTHR32100","OMEGA-6 FATTY ACID DESATURASE, CHLOROPLASTIC"],["Pfam%3APF11960","Domain of unknown function (DUF3474)"],["PROSITE%3APS00574","Fatty acid desaturases family 2 signature"]]},{"id":"NCBITaxon:727","l":"Haemophilus influenzae","na":2,"nb":6,"a":[["genomics/restriction_modification_system.html","restriction-modification system"],["morphology/coccobacillus_shaped.html","coccobacillus shaped"]],"b":[["Pfam%3APF06808","Tripartite ATP-independent periplasmic transporter, DctM component"],["Pfam%3APF04290","Tripartite ATP-independent periplasmic transporters, DctQ component"],["Pfam%3APF09226","Restriction endonuclease HincII"],["Pfam%3APF09520","Type II restriction endonuclease, HinfI"],["Pfam%3APF24077","Immunoglobulin A1 protease autotransporter domain 2"],["PROSITE%3APS01068","OmpA-like domain"]]},{"id":"CHEBI:16094","l":"thiosulfate(2-)","na":5,"nb":2,"a":[["metabolism/disproportionation.html","Disproportionation"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["proteintraitsmech%3ABIOLIP_THJ","THJ-binding site"]]},{"id":"GO:0009291","l":"unidirectional conjugation","na":2,"nb":5,"a":[["genomics/genomic_island.html","genomic island"],["genomics/plasmid_carriage.html","plasmid carriage"]],"b":[["GO%3A0000762","pheromone-induced unidirectional conjugation"],["GO%3A0009291","unidirectional conjugation"],["NCBIfam%3ATIGR02775","P-type conjugative transfer protein TrbG"],["NCBIfam%3ATIGR02780","P-type conjugative transfer protein TrbJ"],["NCBIfam%3ATIGR02783","P-type conjugative transfer protein TrbL"]]},{"id":"GO:0016610","l":"nitrogenase complex","na":2,"nb":5,"a":[["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["GO%3A0016611","iron-iron nitrogenase complex"],["GO%3A0016612","molybdenum-iron nitrogenase complex"],["GO%3A0016610","nitrogenase complex"],["GO%3A0016613","vanadium-iron nitrogenase complex"],["NCBIfam%3ATIGR01287","nitrogenase iron protein"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":2,"nb":5,"a":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"]],"b":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF02963","Restriction endonuclease EcoRI"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["PROSITE%3APS00974","Mannitol dehydrogenases signature"],["PROSITE%3APS00567","Phosphoribulokinase signature"]]},{"id":"NCBITaxon:920","l":"Acidithiobacillus ferrooxidans","na":5,"nb":2,"a":[["environment/obligately_acidophilic.html","obligately acidophilic"],["environment/ph_range_low.html","pH range low"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["Pfam%3APF20538","Family of unknown function (DUF6753)"],["PROSITE%3APS01007","Transposases, Mutator family, signature"]]},{"id":"CHEBI:16234","l":"","na":2,"nb":4,"a":[["environment/alkalotolerant.html","alkalotolerant"],["physiology/urease_activity.html","urease activity"]],"b":[["TCDB%3A2.A.53","The Sulfate Permease (SulP) Family"],["MCSA%3A172","isoaspartyl dipeptidase"],["MCSA%3A989","Retroviral integrase"],["MCSA%3A965","Viperin"]]},{"id":"GO:0000920","l":"septum digestion after cytokinesis","na":2,"nb":4,"a":[["morphology/diplococcus_shaped.html","diplococcus shaped"],["morphology/dumbbell_shaped.html","dumbbell shaped"]],"b":[["ComplexPortal%3ACPX-1684","CBK1-MOB2 kinase complex"],["ComplexPortal%3ACPX-1712","Gin4 serine/threonine kinase complex"],["ComplexPortal%3ACPX-1426","Myosin class II complex"],["GO%3A0000920","septum digestion after cytokinesis"]]},{"id":"GO:0030115","l":"S-layer","na":2,"nb":4,"a":[["morphology/square_shaped.html","square shaped"],["morphology/triangular_shaped.html","triangular shaped"]],"b":[["GO%3A0030115","S-layer"],["NCBIfam%3ANF041335","ArtA-dependent S-layer glycoprotein"],["NCBIfam%3ANF053619","BT1927 family outer membrane S-layer protein"],["NCBIfam%3ANF041073","S-layer protein SlaA"]]},{"id":"GO:0043107","l":"type IV pilus-dependent motility","na":2,"nb":4,"a":[["morphology/motile.html","motile"],["morphology/twitching_motility.html","twitching motility"]],"b":[["GO%3A0043107","type IV pilus-dependent motility"],["NCBIfam%3ATIGR01420","PilT/PilU family type 4a pilus ATPase"],["NCBIfam%3ANF016253","type 4a pilus biogenesis protein PilO"],["Pfam%3APF04350","Type IVa pilus alignment subcomplex PilO C-terminal domain"]]},{"id":"GO:0043884","l":"CO-methylating acetyl-CoA synthase activity","na":2,"nb":4,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"]],"b":[["EC%3A2.3.1.169","CO-methylating acetyl-CoA synthase"],["RHEA%3A45212","Co(I)-[corrinoid Fe-S protein] + acetyl-CoA + H(+) = methyl-Co(III)-[corrinoid Fe-S protein] + CO + CoA"],["GO%3A0043884","CO-methylating acetyl-CoA synthase activity"],["NCBIfam%3ATIGR00316","CO dehydrogenase/CO-methylating acetyl-CoA synthase complex subunit beta"]]},{"id":"GO:0050338","l":"thiosulfate dehydrogenase activity","na":2,"nb":4,"a":[["metabolism/disproportionation.html","Disproportionation"],["metabolism/sulfur_oxidation.html","sulfur oxidation"]],"b":[["EC%3A1.8.2.2","thiosulfate dehydrogenase"],["RHEA%3A20549","2 thiosulfate + 2 Fe(III)-[cytochrome c] = tetrathionate + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["GO%3A0050338","thiosulfate dehydrogenase activity"],["MCSA%3A986","Thiosulfate dehydrogenase"]]},{"id":"METPO:2000302","l":"shows activity of","na":2,"nb":4,"a":[["metabolism/shows_activity_of.html","shows activity of"],["other/coagulase_positive.html","coagulase positive"]],"b":[["METPO%3A1007083","catalase positive"],["METPO%3A1007090","coagulase positive"],["METPO%3A1007085","oxidase positive"],["METPO%3A1007087","urease positive"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":2,"nb":4,"a":[["genomics/abialpha_system.html","AbiAlpha system"],["physiology/gelatinase_activity.html","gelatinase activity"]],"b":[["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF09711","CRISPR-associated protein (Cas_Csn2)"],["Pfam%3APF06308","23S rRNA methylastransferase leader peptide (ErmCL)"]]},{"id":"GO:0019329","l":"ammonia oxidation","na":2,"nb":3,"a":[["metabolism/complete_ammonia_oxidation.html","complete ammonia oxidation"],["metabolism/nitrification.html","nitrification"]],"b":[["GO%3A0019409","aerobic respiration, using ammonia as electron donor"],["GO%3A0019329","ammonia oxidation"],["GO%3A0019331","anaerobic respiration, using ammonium as electron donor"]]},{"id":"GO:0070088","l":"polyhydroxyalkanoate granule","na":2,"nb":3,"a":[["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]],"b":[["GO%3A0070088","polyhydroxyalkanoate granule"],["NCBIfam%3ANF045536","polyhydroxyalkanoate granule-associated phasin"],["NCBIfam%3ANF045537","polyhydroxyalkanoate granule-associated phasin"]]},{"id":"InterPro:IPR007793","l":"","na":3,"nb":2,"a":[["morphology/ellipsoidal.html","ellipsoidal"],["morphology/filament_shaped.html","filament shaped"],["morphology/ovoid_shaped.html","ovoid shaped"]],"b":[["PANTHER%3APTHR35794","CELL DIVISION PROTEIN DIVIVA"],["Pfam%3APF05103","DivIVA protein"]]},{"id":"InterPro:IPR012761","l":"","na":3,"nb":2,"a":[["physiology/oxidative_stress_response.html","oxidative stress response"],["physiology/stress_response.html","stress response"],["physiology/viable_but_nonculturable_state.html","viable but nonculturable state"]],"b":[["HAMAP%3AMF_00959","RNA polymerase sigma factor RpoS [rpoS]"],["PROSITE%3APS00716","Sigma-70 factors family signature 2"]]},{"id":"InterPro:IPR050077","l":"","na":2,"nb":3,"a":[["genomics/prophage.html","prophage"],["physiology/sos_response.html","SOS response"]],"b":[["Pfam%3APF12840","Helix-turn-helix domain"],["Pfam%3APF01726","LexA DNA binding domain"],["PANTHER%3APTHR33516","LEXA REPRESSOR"]]},{"id":"METPO:1000602","l":"aerobic","na":3,"nb":2,"a":[["environment/aerobic.html","aerobic"],["environment/oxygen_preference.html","oxygen preference"],["physiology/aerobic_anoxygenic_phototrophy.html","aerobic anoxygenic phototrophy"]],"b":[["METPO%3A1000602","aerobic"],["METPO%3A1000606","obligately aerobic"]]},{"id":"METPO:1007080","l":"catalase test","na":2,"nb":3,"a":[["other/catalase_negative.html","catalase negative"],["other/catalase_test.html","catalase test"]],"b":[["METPO%3A1007084","catalase negative"],["METPO%3A1007083","catalase positive"],["METPO%3A1007080","catalase test"]]},{"id":"METPO:1007081","l":"oxidase test","na":2,"nb":3,"a":[["other/oxidase_negative.html","oxidase negative"],["other/oxidase_test.html","oxidase test"]],"b":[["METPO%3A1007086","oxidase negative"],["METPO%3A1007085","oxidase positive"],["METPO%3A1007081","oxidase test"]]},{"id":"METPO:1007082","l":"urease test","na":2,"nb":3,"a":[["other/urease_negative.html","urease negative"],["other/urease_test.html","urease test"]],"b":[["METPO%3A1007088","urease negative"],["METPO%3A1007087","urease positive"],["METPO%3A1007082","urease test"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":3,"nb":2,"a":[["environment/aerobic.html","aerobic"],["environment/obligately_aerobic.html","obligately aerobic"],["morphology/tetrad_arrangement.html","tetrad arrangement"]],"b":[["Pfam%3APF22538","Hexaprenyl diphosphate synthase, small subunit"],["PROSITE%3APS01066","Undecaprenyl pyrophosphate synthase family signature"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":2,"nb":3,"a":[["genomics/wadjet_system.html","Wadjet system"],["morphology/irregular_shaped.html","irregular shaped"]],"b":[["TED%3AAF-A0A142EAM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142EAM9-F1-model_v4_TED03"],["TED%3AAF-A0A1Q3DTY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3DTY6-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3DNE3-F1-model_v4_TED01","TED novel fold AF-A0A1Q3DNE3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:274","l":"Thermus thermophilus","na":2,"nb":3,"a":[["environment/thermophilic.html","thermophilic"],["morphology/cell_width.html","cell width"]],"b":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF01861","Branched-chain polyamine synthase A C-terminal domain"],["Pfam%3APF07736","Chorismate mutase type I"]]},{"id":"UniProt:Q51705","l":"","na":2,"nb":3,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"]],"b":[["Pfam%3APF18793","Nitrous oxide reductase propeller repeat 2"],["Pfam%3APF18764","Nitrous oxide reductase propeller repeat"],["proteintraitsmech%3ABIOLIP_CUA","CUA-binding site"]]},{"id":"GO:0019417","l":"sulfur oxidation","na":2,"nb":2,"a":[["physiology/lithotrophic.html","lithotrophic"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]],"b":[["GO%3A0019417","sulfur oxidation"],["NCBIfam%3ATIGR04484","sulfur oxidation c-type cytochrome SoxA"]]},{"id":"GO:0019649","l":"formaldehyde assimilation","na":2,"nb":2,"a":[["physiology/methanotrophic.html","methanotrophic"],["physiology/methylotrophic.html","methylotrophic"]],"b":[["GO%3A0019649","formaldehyde assimilation"],["NCBIfam%3ATIGR03128","3-hexulose-6-phosphate synthase"]]},{"id":"InterPro:IPR017402","l":"","na":2,"nb":2,"a":[["metabolism/proteorhodopsin_phototrophy.html","proteorhodopsin phototrophy"],["physiology/photoheterotrophic.html","photoheterotrophic"]],"b":[["Pfam%3APF01036","Bacteriorhodopsin-like protein"],["PROSITE%3APS00950","Bacterial rhodopsins signature 1"]]},{"id":"InterPro:IPR017761","l":"","na":2,"nb":2,"a":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["Pfam%3APF00394","Multicopper oxidase"],["PROSITE%3APS00080","Multicopper oxidases signature 2"]]},{"id":"InterPro:IPR023690","l":"","na":2,"nb":2,"a":[["morphology/bacillus_shaped.html","bacillus shaped"],["morphology/fusiform_shaped.html","fusiform shaped"]],"b":[["Pfam%3APF13413","Helix-turn-helix domain"],["HAMAP%3AMF_02017","Cytoskeleton protein RodZ [rodZ]"]]},{"id":"METPO:1000603","l":"anaerobic","na":2,"nb":2,"a":[["environment/anaerobic.html","anaerobic"],["environment/oxygen_preference.html","oxygen preference"]],"b":[["METPO%3A1000603","anaerobic"],["METPO%3A1000607","obligately anaerobic"]]},{"id":"METPO:1000607","l":"obligately anaerobic","na":2,"nb":2,"a":[["environment/obligately_anaerobic.html","obligately anaerobic"],["environment/strictly_anaerobic.html","strictly anaerobic"]],"b":[["METPO%3A1000607","obligately anaerobic"],["METPO%3A1000611","strictly anaerobic"]]},{"id":"METPO:1003002","l":"alkaliphilic","na":2,"nb":2,"a":[["environment/alkaphilic.html","alkaliphilic"],["environment/obligately_alkaphilic.html","obligately alkaliphilic"]],"b":[["METPO%3A1003002","alkaliphilic"],["METPO%3A1003004","obligately alkaliphilic"]]},{"id":"NCBITaxon:1232683","l":"Marinobacterium lacunae","na":2,"nb":2,"a":[["morphology/cell_length_medium.html","cell length medium"],["morphology/cell_width_large.html","cell width large"]],"b":[["TED%3AAF-A0A081FTJ9-F1-model_v4_TED01","TED novel fold AF-A0A081FTJ9-F1-model_v4_TED01"],["TED%3AAF-A0A081FX50-F1-model_v4_TED01","TED novel fold AF-A0A081FX50-F1-model_v4_TED01"]]},{"id":"GO:0046677","l":"response to antibiotic","na":1,"nb":7410,"a":[["physiology/antibiotic_resistance.html","antibiotic resistance"]],"b":[["UniProtKB-KW%3AKW-0046","Antibiotic resistance"],["GO%3A0071236","cellular response to antibiotic"],["GO%3A0072716","response to actinomycin D"],["GO%3A0046677","response to antibiotic"],["GO%3A0046678","response to bacteriocin"],["GO%3A0031001","response to brefeldin A"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii (strain ATCC 43067 / DSM 2661 / JAL-1 / JCM 10045 / NBRC 100440)","na":1,"nb":5181,"a":[["metabolism/methanogenesis.html","Methanogenesis"]],"b":[["EC%3A1.12.99.-","With other acceptors"],["EC%3A1.3.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.3.-.-","Acting on the CH-CH group of donors"],["EC%3A1.8.98.-","With other, known, acceptors"],["EC%3A1.97.1.-","Other oxidoreductases"],["EC%3A2.1.2.-","Hydroxymethyl-, formyl- and related transferases"]]},{"id":"GO:0016020","l":"membrane","na":1,"nb":3003,"a":[["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"]],"b":[["ComplexPortal%3ACPX-1813","1,3-beta-D-glucan synthase complex, FKS2-RHO1 variant"],["ComplexPortal%3ACPX-4313","Aliphatic sulfonate ABC transporter complex"],["ComplexPortal%3ACPX-4314","Arabinose ABC transporter complex"],["ComplexPortal%3ACPX-4318","Arginine ABC transporter complex, artI variant"],["ComplexPortal%3ACPX-4319","Arginine ABC transporter complex, artJ variant"],["ComplexPortal%3ACPX-6308","ATP10B-CDC50A P4-ATPase complex"]]},{"id":"GO:0005886","l":"plasma membrane","na":1,"nb":861,"a":[["environment/desiccation_tolerant.html","desiccation tolerant"]],"b":[["ComplexPortal%3ACPX-2838","3M complex"],["ComplexPortal%3ACPX-850","AHNAK - Annexin A2 - S100-A10 complex"],["ComplexPortal%3ACPX-6581","Alpha-beta T cell receptor complex, TRBC1 variant"],["ComplexPortal%3ACPX-6482","Alpha-beta T cell receptor complex, TRBC2 variant"],["ComplexPortal%3ACPX-2188","Amiloride-sensitive sodium channel complex, alpha-beta-gamma"],["ComplexPortal%3ACPX-3582","AMT1-1 - AMT1-3 heterotrimer, variant 1"]]},{"id":"CHEBI:28938","l":"ammonium","na":1,"nb":837,"a":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_28938","requires ammonium"],["EC%3A1.13.12.15","3,4-dihydroxyphenylalanine oxidative deaminase"],["EC%3A1.13.99.3","tryptophan 2'-dioxygenase"],["EC%3A1.14.11.37","kanamycin B dioxygenase"],["EC%3A1.14.12.1","anthranilate 1,2-dioxygenase (deaminating, decarboxylating)"],["EC%3A1.14.12.14","2-aminobenzenesulfonate 2,3-dioxygenase"]]},{"id":"GO:0016491","l":"oxidoreductase activity","na":1,"nb":695,"a":[["physiology/chemotrophic.html","chemotrophic"]],"b":[["GO%3A0047143","chlorate reductase activity"],["GO%3A0051213","dioxygenase activity"],["GO%3A0043364","glycyl-radical enzyme activating activity"],["GO%3A0004497","monooxygenase activity"],["GO%3A0050781","ortho-trichlorophenol reductive dehalogenase activity"],["GO%3A0016675","oxidoreductase activity, acting on a heme group of donors"]]},{"id":"GO:0003824","l":"catalytic activity","na":1,"nb":663,"a":[["upper/enzyme.html","enzyme"]],"b":[["GO%3A0140640","catalytic activity, acting on a nucleic acid"],["GO%3A0140096","catalytic activity, acting on a protein"],["GO%3A0003824","catalytic activity"],["GO%3A0009975","cyclase activity"],["GO%3A0160215","deacylase activity"],["GO%3A0032451","demethylase activity"]]},{"id":"GO:0071944","l":"cell periphery","na":1,"nb":440,"a":[["morphology/spiral_shaped.html","spiral shaped"]],"b":[["GO%3A0071944","cell periphery"],["PANTHER%3APTHR31468","1,3-BETA-GLUCANOSYLTRANSFERASE GAS1"],["PANTHER%3APTHR28145","12 KDA HEAT SHOCK PROTEIN"],["PANTHER%3APTHR42755","3-DEOXY-MANNO-OCTULOSONATE CYTIDYLYLTRANSFERASE"],["PANTHER%3APTHR46574","43 KDA RECEPTOR-ASSOCIATED PROTEIN OF THE SYNAPSE"],["PANTHER%3APTHR15182","A-KINASE ANCHOR PROTEIN 5-RELATED"]]},{"id":"GO:0005840","l":"ribosome","na":1,"nb":418,"a":[["physiology/dormancy.html","dormancy"]],"b":[["ComplexPortal%3ACPX-2854","Elongation Factor eEF1 complex, variant CAM1"],["ComplexPortal%3ACPX-425","Elongation Factor eEF1 complex, variant TEF4"],["ComplexPortal%3ACPX-427","Eukaryotic translation initiation factor 2 complex"],["ComplexPortal%3ACPX-430","Eukaryotic translation initiation factor 4F complex, variant TIF4631"],["ComplexPortal%3ACPX-431","Eukaryotic translation initiation factor 4F complex, variant TIF4632"],["ComplexPortal%3ACPX-1295","MKT1-PBP1 translation regulation complex"]]},{"id":"GO:0006260","l":"DNA replication","na":1,"nb":311,"a":[["genomics/gc_skew.html","GC skew"]],"b":[["ComplexPortal%3ACPX-6641","ASCC DNA alkylation repair complex"],["ComplexPortal%3ACPX-568","Chromatin assembly factor 1 complex"],["ComplexPortal%3ACPX-2671","CMG helicase complex"],["ComplexPortal%3ACPX-297","CMG helicase complex"],["ComplexPortal%3ACPX-4526","CMG helicase complex"],["ComplexPortal%3ACPX-4541","CMG helicase complex"]]},{"id":"GO:0008800","l":"beta-lactamase activity","na":1,"nb":311,"a":[["physiology/antibiotic_resistance.html","antibiotic resistance"]],"b":[["EC%3A3.5.2.6","beta-lactamase"],["RHEA%3A20401","a beta-lactam + H2O = a substituted beta-amino acid"],["GO%3A0008800","beta-lactamase activity"],["NCBIfam%3ANF038195","AAK family class A beta-lactamase"],["NCBIfam%3ANF000397","ACC family cephalosporin-hydrolyzing class C beta-lactamase"],["NCBIfam%3ANF000448","ACI family class A beta-lactamase"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":297,"a":[["physiology/dormancy.html","dormancy"]],"b":[["IDPO%3A0000002","disorder"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000045","phosphorylation display site"],["IDPO%3A0000059","self-inhibition"],["Pfam%3APF17837","4'-phosphopantetheinyl transferase N-terminal domain"]]},{"id":"GO:0006281","l":"DNA repair","na":1,"nb":272,"a":[["environment/radiotolerant.html","radiotolerant"]],"b":[["ComplexPortal%3ACPX-4426","BRCA1-B complex"],["ComplexPortal%3ACPX-4721","BRCA1-B complex"],["ComplexPortal%3ACPX-568","Chromatin assembly factor 1 complex"],["ComplexPortal%3ACPX-1959","HU complex, variant hupA"],["ComplexPortal%3ACPX-1958","HU complex, variant hupAB"],["ComplexPortal%3ACPX-863","INO80 chromatin remodeling complex"]]},{"id":"GO:0031090","l":"organelle membrane","na":1,"nb":270,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["GO%3A0098588","bounding membrane of organelle"],["GO%3A0005789","endoplasmic reticulum membrane"],["GO%3A0032580","Golgi cisterna membrane"],["GO%3A0110146","magnetosome membrane"],["GO%3A0031966","mitochondrial membrane"],["GO%3A0031965","nuclear membrane"]]},{"id":"GO:0016301","l":"kinase activity","na":1,"nb":246,"a":[["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["GO%3A0050515","4-(cytidine 5'-diphospho)-2-C-methyl-D-erythritol kinase activity"],["GO%3A0140383","4-hydroxytryptamine kinase activity"],["GO%3A0047590","5-dehydro-2-deoxygluconokinase activity"],["GO%3A0047336","5-methyldeoxycytidine-5'-phosphate kinase activity"],["GO%3A0008776","acetate kinase activity"],["GO%3A0047601","acetate kinase (diphosphate) activity"]]},{"id":"GO:0008152","l":"metabolic process","na":1,"nb":224,"a":[["metabolism/metabolism.html","metabolism"]],"b":[["GO%3A0006666","3-keto-sphinganine metabolic process"],["GO%3A0008291","acetylcholine metabolic process"],["GO%3A0006081","aldehyde metabolic process"],["GO%3A0019330","aldoxime metabolic process"],["GO%3A0009820","alkaloid metabolic process"],["GO%3A0000255","allantoin metabolic process"]]},{"id":"CHEBI:15740","l":"formate","na":1,"nb":173,"a":[["metabolism/syntrophy.html","Syntrophy"]],"b":[["EC%3A1.1.98.6","ribonucleoside-triphosphate reductase (formate)"],["EC%3A1.10.3.15","grixazone synthase"],["EC%3A1.13.11.41","2,4'-dihydroxyacetophenone dioxygenase"],["EC%3A1.13.11.53","acireductone dioxygenase (Ni(2+)-requiring)"],["EC%3A1.13.11.54","acireductone dioxygenase (Fe(2+)-requiring)"],["EC%3A1.13.11.72","2-hydroxyethylphosphonate dioxygenase"]]},{"id":"GO:0016791","l":"phosphatase activity","na":1,"nb":171,"a":[["physiology/naphthol_as_bi_phosphohydrolase_activity.html","naphthol-AS-BI-phosphohydrolase activity"]],"b":[["ComplexPortal%3ACPX-120","Prostatic acid phosphatase complex"],["ComplexPortal%3ACPX-121","Prostatic acid phosphatase complex"],["GO%3A0033885","10-hydroxy-9-(phosphonooxy)octadecanoate phosphatase activity"],["GO%3A0047538","2-carboxy-D-arabinitol-1-phosphatase activity"],["GO%3A0043716","2-hydroxy-3-keto-5-methylthiopentenyl-1-phosphate phosphatase activity"],["GO%3A0050532","2-phosphosulfolactate phosphatase activity"]]},{"id":"NCBITaxon:99287","l":"Salmonella typhimurium (strain LT2 / SGSC1412 / ATCC 700720)","na":1,"nb":167,"a":[["metabolism/tetrathionate_respiration.html","tetrathionate respiration"]],"b":[["Pfam%3APF16031","TonB polyproline region"],["Pfam%3APF13521","AAA domain"],["Pfam%3APF26341","tRNA 2-selenouridine synthase AAA domain"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"],["Pfam%3APF09317","Acyl-CoA dehydrogenase, C-terminal, bacterial type"],["Pfam%3APF06315","Isocitrate dehydrogenase kinase/phosphatase (AceK) kinase domain"]]},{"id":"GO:0015979","l":"photosynthesis","na":1,"nb":146,"a":[["metabolism/photosynthesis.html","photosynthesis"]],"b":[["GO%3A0015979","photosynthesis"],["NCBIfam%3ATIGR01337","allophycocyanin subunit beta"],["NCBIfam%3ATIGR03056","alpha/beta fold hydrolase BchO"],["NCBIfam%3ANF013497","Apocytochrome F, C-terminal"],["NCBIfam%3ANF014391","Bacteriochlorophyll A protein"],["NCBIfam%3ANF058502","C-phycocyanin alpha-cysteine-84 phycocyanobilin lyase subunit CpcE"]]},{"id":"NCBITaxon:71421","l":"Haemophilus influenzae (strain ATCC 51907 / DSM 11121 / KW20 / Rd)","na":1,"nb":133,"a":[["genomics/restriction_modification_system.html","restriction-modification system"]],"b":[["Pfam%3APF13521","AAA domain"],["Pfam%3APF13654","LonB-like, AAA domain"],["Pfam%3APF16326","ABC transporter C-terminal domain"],["Pfam%3APF13710","ACT domain"],["Pfam%3APF12633","Adenylate cyclase NT domain"],["Pfam%3APF26690","Adenylate cyclase, class-I, third domain"]]},{"id":"GO:0006457","l":"protein folding","na":1,"nb":129,"a":[["environment/temperature_range_high.html","temperature range high"]],"b":[["ComplexPortal%3ACPX-2156","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-2772","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-6030","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-2113","GroEL-GroES complex"],["ComplexPortal%3ACPX-1671","Prefoldin co-chaperone complex"],["ComplexPortal%3ACPX-2389","Prefoldin co-chaperone complex"]]},{"id":"GO:0030154","l":"cell differentiation","na":1,"nb":108,"a":[["morphology/heterocyst.html","heterocyst"]],"b":[["GO%3A0048657","anther wall tapetum cell differentiation"],["GO%3A0009557","antipodal cell differentiation"],["GO%3A1903498","bundle sheath cell differentiation"],["GO%3A0035051","cardiocyte differentiation"],["GO%3A0030154","cell differentiation"],["GO%3A0021533","cell differentiation in hindbrain"]]},{"id":"CHEBI:15343","l":"acetaldehyde","na":1,"nb":88,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"]],"b":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.5.5","alcohol dehydrogenase (quinone)"],["EC%3A1.1.99.36","alcohol dehydrogenase (nicotinoprotein)"],["EC%3A1.13.11.88","isoeugenol monooxygenase"],["EC%3A1.13.12.16","nitronate monooxygenase"],["EC%3A1.2.1.10","acetaldehyde dehydrogenase (acetylating)"]]},{"id":"GO:0009307","l":"DNA restriction-modification system","na":1,"nb":83,"a":[["genomics/restriction_modification_system.html","restriction-modification system"]],"b":[["ComplexPortal%3ACPX-5285","McrBC 5-methylcytosine-specific restriction endonuclease complex"],["ComplexPortal%3ACPX-5628","Type I restriction-modification EcoKI complex"],["GO%3A0009307","DNA restriction-modification system"],["NCBIfam%3ANF007277","5-methylcytosine-specific restriction endonuclease system specificity protein McrC"],["NCBIfam%3ATIGR02986","Alw26I/Eco31I/Esp3I family type II restriction endonuclease"],["NCBIfam%3ANF020756","AvaI/BsoBI family type II restriction endonuclease"]]},{"id":"CHEBI:15354","l":"choline","na":1,"nb":78,"a":[["environment/euryhaline.html","euryhaline"]],"b":[["EC%3A1.1.3.17","choline oxidase"],["EC%3A1.1.99.1","choline dehydrogenase"],["EC%3A1.14.15.7","choline monooxygenase"],["EC%3A2.3.1.6","choline O-acetyltransferase"],["EC%3A2.3.1.91","sinapoylglucose--choline O-sinapoyltransferase"],["EC%3A2.7.1.32","choline kinase"]]},{"id":"CHEBI:29806","l":"fumarate(2-)","na":1,"nb":76,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["EC%3A1.3.1.6","fumarate reductase (NADH)"],["EC%3A1.3.2.4","fumarate reductase (cytochrome)"],["EC%3A1.3.4.1","fumarate reductase (CoM/CoB)"],["EC%3A1.3.5.1","succinate dehydrogenase"],["EC%3A1.3.98.1","dihydroorotate oxidase (fumarate)"],["EC%3A3.7.1.14","2-hydroxy-6-oxonona-2,4-dienedioate hydrolase"]]},{"id":"GO:0004803","l":"transposase activity","na":1,"nb":73,"a":[["genomics/transposable_element.html","transposable element"]],"b":[["GO%3A0004803","transposase activity"],["NCBIfam%3ANF015365","IS1 family transposase"],["NCBIfam%3ANF033558","IS1 family transposase"],["NCBIfam%3ANF033542","IS110 family RNA-guided transposase"],["NCBIfam%3ANF033551","IS1182 family transposase"],["NCBIfam%3ANF033544","IS1249 family transposase"]]},{"id":"GO:0006413","l":"translational initiation","na":1,"nb":67,"a":[["genomics/codon_usage_bias.html","codon usage bias"]],"b":[["ComplexPortal%3ACPX-427","Eukaryotic translation initiation factor 2 complex"],["ComplexPortal%3ACPX-1831","Eukaryotic translation initiation factor 3 core complex"],["ComplexPortal%3ACPX-3482","Eukaryotic translation initiation factor 4E-Mxt complex"],["ComplexPortal%3ACPX-2666","Eukaryotic translation initiation factor 4F, EIF4A1 and EIF4G1 variant"],["ComplexPortal%3ACPX-5863","Eukaryotic translation initiation factor 4F, EIF4A1 and EIF4G1 variant"],["ComplexPortal%3ACPX-5635","Eukaryotic translation initiation factor 4F, EIF4A1 and EIF4G3 variant"]]},{"id":"GO:0006950","l":"response to stress","na":1,"nb":67,"a":[["physiology/stress_response.html","stress response"]],"b":[["GO%3A0033554","cellular response to stress"],["GO%3A0006952","defense response"],["GO%3A0033555","multicellular organismal response to stress"],["GO%3A0003299","muscle hypertrophy in response to stress"],["GO%3A0009271","phage shock"],["GO%3A0034059","response to anoxia"]]},{"id":"GO:0031012","l":"extracellular matrix","na":1,"nb":64,"a":[["ecology/biofilm_formation.html","biofilm formation"]],"b":[["ComplexPortal%3ACPX-461","155 kDa platelet multimerin complex"],["ComplexPortal%3ACPX-960","Collagen type II trimer"],["ComplexPortal%3ACPX-1749","Collagen type X trimer"],["ComplexPortal%3ACPX-2971","Collagen type X trimer"],["ComplexPortal%3ACPX-1750","Collagen type XI trimer variant 1"],["ComplexPortal%3ACPX-2975","Collagen type XI trimer variant 1"]]},{"id":"GO:0006289","l":"nucleotide-excision repair","na":1,"nb":60,"a":[["environment/uv_radiation_tolerant.html","UV radiation tolerant"]],"b":[["ComplexPortal%3ACPX-2757","CRL4-ERCC8 E3 ubiquitin ligase complex, CUL4A variant"],["ComplexPortal%3ACPX-2758","CRL4-ERCC8 E3 ubiquitin ligase complex, CUL4B variant"],["ComplexPortal%3ACPX-1837","CUL3-HRT1-ELC1-ELA1 ubiquitin ligase complex"],["ComplexPortal%3ACPX-478","ERCC1-XPF endonuclease complex"],["ComplexPortal%3ACPX-491","Ercc1-Xpf endonuclease complex"],["ComplexPortal%3ACPX-1659","General transcription factor TFIIH complex"]]},{"id":"InterPro:IPR000792","l":"Transcription regulator LuxR-like, C-terminal","na":1,"nb":59,"a":[["physiology/quorum_sensing.html","quorum sensing"]],"b":[["GO%3A0071111","cyclic-guanylate-specific phosphodiesterase activity"],["GO%3A0048031","trisaccharide binding"],["GO%3A1990451","cellular stress response to acidic pH"],["GO%3A0000023","maltose metabolic process"],["GO%3A0000160","phosphorelay signal transduction system"],["GO%3A0045913","positive regulation of carbohydrate metabolic process"]]},{"id":"CHEBI:17976","l":"","na":1,"nb":56,"a":[["metabolism/electron_transfer.html","Electron transfer"]],"b":[["EC%3A1.1.5.14","fructose 5-dehydrogenase"],["EC%3A1.1.5.2","quinoprotein glucose dehydrogenase (PQQ, quinone)"],["EC%3A1.1.5.3","glycerol-3-phosphate dehydrogenase"],["EC%3A1.1.5.5","alcohol dehydrogenase (quinone)"],["EC%3A1.10.3.11","ubiquinol oxidase (non-electrogenic)"],["EC%3A1.10.3.17","superoxide oxidase"]]},{"id":"GO:0006979","l":"response to oxidative stress","na":1,"nb":50,"a":[["physiology/oxidative_stress_response.html","oxidative stress response"]],"b":[["ComplexPortal%3ACPX-9082","19S-20S-PA28-alphabeta hybrid proteasome complex"],["ComplexPortal%3ACPX-9085","19S-20S-PA28-gamma hybrid proteasome complex"],["ComplexPortal%3ACPX-8806","20S proteasome complex"],["ComplexPortal%3ACPX-4862","Alkyl hydroperoxide reductase complex"],["ComplexPortal%3ACPX-8842","PA28-alphabeta double-capped 20S proteasome complex"],["ComplexPortal%3ACPX-9002","PA28-alphabeta single-capped 20S proteasome complex"]]},{"id":"CHEBI:16947","l":"citrate(3-)","na":1,"nb":49,"a":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"]],"b":[["EC%3A2.3.3.1","citrate (Si)-synthase"],["EC%3A2.3.3.16","citrate synthase (unknown stereospecificity)"],["EC%3A2.3.3.3","citrate (Re)-synthase"],["EC%3A2.3.3.8","ATP citrate synthase"],["EC%3A2.8.3.10","citrate CoA-transferase"],["EC%3A4.1.3.6","citrate (pro-3S)-lyase"]]},{"id":"CHEBI:16199","l":"urea","na":1,"nb":48,"a":[["physiology/urease_activity.html","urease activity"]],"b":[["EC%3A3.5.1.5","urease"],["EC%3A3.5.1.95","N-malonylurea hydrolase"],["EC%3A3.5.3.1","arginase"],["EC%3A3.5.3.10","D-arginase"],["EC%3A3.5.3.11","agmatinase"],["EC%3A3.5.3.14","amidinoaspartase"]]},{"id":"NCBITaxon:93061","l":"Staphylococcus aureus (strain NCTC 8325 / PS 47)","na":1,"nb":47,"a":[["physiology/catalase_activity.html","catalase activity"]],"b":[["IDPO%3A0000033","flexible linker"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF07694","5TMR of 5TMR-LYT"],["Pfam%3APF01757","Acyltransferase domain"],["Pfam%3APF18719","ArlS sensor domain"],["Pfam%3APF02216","B domain"]]},{"id":"CHEBI:22563","l":"","na":1,"nb":46,"a":[["environment/euryhaline.html","euryhaline"]],"b":[["TCDB%3A1.C.55","The Agrobacterial VirE2 Target Host Cell Membrane Anion Channel (VirE2) Family"],["TCDB%3A1.A.46","The Anion Channel-forming Bestrophin (Bestrophin) Family"],["TCDB%3A1.A.48","The Anion Channel Tweety (Tweety) Family"],["TCDB%3A2.A.31","The Anion Exchanger (AE) Family"],["TCDB%3A2.A.85","The Aromatic Acid Exporter (ArAE) Family"],["TCDB%3A2.A.45","The Arsenite-Antimonite (ArsB) Efflux Family"]]},{"id":"GO:0006313","l":"DNA transposition","na":1,"nb":46,"a":[["genomics/transposable_element.html","transposable element"]],"b":[["GO%3A0006313","DNA transposition"],["GO%3A0098038","non-replicative DNA transposition"],["GO%3A0098039","replicative DNA transposition"],["NCBIfam%3ANF015365","IS1 family transposase"],["NCBIfam%3ANF038385","IS66-like element accessory protein TnpA"],["NCBIfam%3ANF040815","site-specific tyrosine recombinase/integron integrase"]]},{"id":"GO:0042254","l":"ribosome biogenesis","na":1,"nb":44,"a":[["genomics/rrna_operon_copy_number.html","rRNA operon copy number"]],"b":[["ComplexPortal%3ACPX-8940","Ribosome biogenesis complex"],["GO%3A0042254","ribosome biogenesis"],["NCBIfam%3ANF012679","50S ribosomal protein L10"],["NCBIfam%3ANF016308","Gar1/Naf1 RNA binding region"],["NCBIfam%3ANF016057","nucleolar RNA-binding Nop10p family protein"],["NCBIfam%3ATIGR01575","ribosomal protein S18-alanine N-acetyltransferase"]]},{"id":"CHEBI:16480","l":"nitric oxide","na":1,"nb":43,"a":[["ecology/biofilm_formation.html","biofilm formation"]],"b":[["EC%3A1.14.12.17","nitric oxide dioxygenase"],["EC%3A1.14.13.39","nitric-oxide synthase (NADPH)"],["EC%3A1.14.14.47","nitric-oxide synthase (flavodoxin)"],["EC%3A1.14.15.41","L-tryptophan 4-nitrase"],["EC%3A1.14.15.42","L-tyrosine 3-nitrase"],["EC%3A1.7.1.14","nitric oxide reductase [NAD(P)(+), nitrous oxide-forming]"]]},{"id":"GO:0045271","l":"respiratory chain complex I","na":1,"nb":43,"a":[["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"]],"b":[["ComplexPortal%3ACPX-266","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-577","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-8628","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-8638","Mitochondrial respiratory chain complex I, testis-specific variant"],["ComplexPortal%3ACPX-243","Respiratory chain complex I"],["GO%3A0045271","respiratory chain complex I"]]},{"id":"CHEBI:29036","l":"copper(2+)","na":1,"nb":40,"a":[["environment/copper_tolerant.html","copper tolerant"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29036","requires copper(2+)"],["EC%3A1.1.9.1","alcohol dehydrogenase (azurin)"],["EC%3A1.16.3.4","cuproxidase"],["EC%3A1.17.9.1","4-methylphenol dehydrogenase (hydroxylating)"],["EC%3A1.17.9.2","(+)-pinoresinol hydroxylase"],["EC%3A1.20.9.1","arsenate reductase (azurin)"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima (strain ATCC 43589 / DSM 3109 / JCM 10099 / NBRC 100826 / MSB8)","na":1,"nb":39,"a":[["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"]],"b":[["Pfam%3APF02829","3H domain"],["Pfam%3APF13175","AAA ATPase domain"],["Pfam%3APF01958","Aspartate dehydrogenase, C-terminal"],["Pfam%3APF05448","Acetyl xylan esterase (AXE1)"],["Pfam%3APF04509","CheC-like family"],["Pfam%3APF13690","Chemotaxis phosphatase CheX"]]},{"id":"CHEBI:17272","l":"propionate","na":1,"nb":34,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["EC%3A1.3.1.125","acrylate reductase"],["EC%3A2.7.2.15","propionate kinase"],["EC%3A2.8.3.1","propionate CoA-transferase"],["EC%3A2.8.3.27","propanoyl-CoA:succinate CoA transferase"],["EC%3A4.1.3.32","2,3-dimethylmalate lyase"],["EC%3A6.2.1.13","acetate--CoA ligase (ADP-forming)"]]},{"id":"GO:0003674","l":"molecular_function","na":1,"nb":34,"a":[["upper/biological_process.html","biological process"]],"b":[["GO%3A0016209","antioxidant activity"],["GO%3A0140657","ATP-dependent activity"],["GO%3A0005488","binding"],["GO%3A0038024","cargo receptor activity"],["GO%3A0003824","catalytic activity"],["GO%3A0003774","cytoskeletal motor activity"]]},{"id":"CHEBI:17968","l":"butyrate","na":1,"nb":33,"a":[["ecology/gut_associated.html","gut-associated"]],"b":[["EC%3A1.3.1.31","2-enoate reductase"],["EC%3A2.3.1.315","succinyl-CoA:cyclohexane-1-carboxylate CoA transferase"],["EC%3A2.7.2.7","butyrate kinase"],["EC%3A2.8.3.9","butyrate--acetoacetate CoA-transferase"],["EC%3A3.1.1.51","phorbol-diester hydrolase"],["EC%3A3.7.1.7","beta-diketone hydrolase"]]},{"id":"GO:0009522","l":"photosystem I","na":1,"nb":33,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"]],"b":[["GO%3A0030093","chloroplast photosystem I"],["GO%3A0009522","photosystem I"],["GO%3A0030094","plasma membrane-derived photosystem I"],["NCBIfam%3ANF014449","photosystem I assembly protein Ycf4"],["NCBIfam%3ATIGR01336","photosystem I core protein PsaB"],["NCBIfam%3ANF014578","photosystem I reaction center subunit II"]]},{"id":"CHEBI:29748","l":"","na":1,"nb":30,"a":[["morphology/green_pigmented.html","green pigmented"]],"b":[["EC%3A2.6.1.123","4-amino-4-deoxychorismate synthase (2-amino-4-deoxychorismate-forming)"],["EC%3A2.6.1.85","aminodeoxychorismate synthase"],["EC%3A2.6.1.86","2-amino-4-deoxychorismate synthase"],["EC%3A3.3.2.13","chorismatase"],["EC%3A4.1.3.27","anthranilate synthase"],["EC%3A4.1.3.40","chorismate lyase"]]},{"id":"CHEBI:24636","l":"","na":1,"nb":28,"a":[["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"]],"b":[["TCDB%3A3.A.4","The Arsenite-Antimonite (ArsAB) Efflux Family"],["TCDB%3A2.A.61","The C4-dicarboxylate Uptake C (DcuC) Family"],["TCDB%3A2.A.106","The Ca2+:H+ Antiporter-2 (CaCA2) Family"],["TCDB%3A1.A.110","The Channel-forming Otopetrin (OTOP) Family"],["TCDB%3A9.A.14","The G-protein-coupled receptor (GPCR) Family"],["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"]]},{"id":"GO:0004565","l":"beta-galactosidase activity","na":1,"nb":28,"a":[["physiology/beta_galactosidase_activity.html","beta-galactosidase activity"]],"b":[["EC%3A3.2.1.23","beta-galactosidase"],["GO%3A0004565","beta-galactosidase activity"],["GO%3A0033943","galactan 1,3-beta-galactosidase activity"],["NCBIfam%3ANF041004","beta-galactosidase BgaS"],["NCBIfam%3ANF041462","beta-galactosidase GalA"],["NCBIfam%3ANF041463","beta-galactosidase GalB"]]},{"id":"GO:0046148","l":"pigment biosynthetic process","na":1,"nb":27,"a":[["morphology/pigmentation.html","pigmentation"]],"b":[["GO%3A0120577","1,2-dehydro-N-acetyldopamine biosynthetic process"],["GO%3A0120576","1,2-dehydro-N-beta-alanyldopamine biosynthetic process"],["GO%3A0009718","anthocyanin-containing compound biosynthetic process"],["GO%3A0051551","aurone biosynthetic process"],["GO%3A0016117","carotenoid biosynthetic process"],["GO%3A0015995","chlorophyll biosynthetic process"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":1,"nb":26,"a":[["morphology/heterocyst.html","heterocyst"]],"b":[["Pfam%3APF27270","Alr1449"],["Pfam%3APF27301","Alr2735 N-terminal domain"],["Pfam%3APF27288","Alr2735"],["Pfam%3APF21571","Arginine dihydrolase ArgZ-like, C-terminal, first region"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF13205","Bacterial Ig-like domain"]]},{"id":"GO:0000910","l":"cytokinesis","na":1,"nb":24,"a":[["morphology/cell_length.html","cell length"]],"b":[["ComplexPortal%3ACPX-24856","GNAI1-RGS14, Gi-signalling regulatory complex"],["GO%3A0061639","Cdv-dependent cytokinesis"],["GO%3A0000911","cytokinesis by cell plate formation"],["GO%3A0000910","cytokinesis"],["GO%3A0061640","cytoskeleton-dependent cytokinesis"],["GO%3A0043093","FtsZ-dependent cytokinesis"]]},{"id":"GO:0006783","l":"heme biosynthetic process","na":1,"nb":24,"a":[["physiology/catalase_activity.html","catalase activity"]],"b":[["ComplexPortal%3ACPX-8302","ABCB10-ABCB7-FECH ABC transporter"],["GO%3A0006784","heme A biosynthetic process"],["GO%3A0006785","heme B biosynthetic process"],["GO%3A0006783","heme biosynthetic process"],["GO%3A0006786","heme C biosynthetic process"],["GO%3A0048034","heme O biosynthetic process"]]},{"id":"GO:0031412","l":"gas vesicle organization","na":1,"nb":24,"a":[["morphology/gas_vesicle.html","gas vesicle"]],"b":[["GO%3A0031412","gas vesicle organization"],["NCBIfam%3ANF041667","gas vesicle accessory protein GvpU"],["NCBIfam%3ANF046092","gas vesicle protein GvpA"],["NCBIfam%3ANF052351","gas vesicle protein GvpF"],["NCBIfam%3ANF045779","gas vesicle protein GvpG"],["NCBIfam%3ANF046090","gas vesicle protein GvpJ"]]},{"id":"CHEBI:24996","l":"lactate","na":1,"nb":23,"a":[["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]],"b":[["EC%3A1.1.1.436","lactate dehydrogenase (NAD(+),ferredoxin)"],["EC%3A3.5.1.124","protein deglycase"],["RHEA%3A57300","an N(2)-(1-hydroxy-2-oxopropyl)-2'-deoxyguanosine in DNA + H2O = a 2'-deoxyguanosine in DNA + lactate + H(+)"],["RHEA%3A57288","an N(2)-(1-hydroxy-2-oxopropyl)-guanosine in RNA + H2O = a guanosine in RNA + lactate + H(+)"],["RHEA%3A46964","lactate + 2 reduced [2Fe-2S]-[ferredoxin] + 2 NAD(+) = 2 oxidized [2Fe-2S]-[ferredoxin] + pyruvate + 2 NADH"],["RHEA%3A57244","N(2)-(1-hydroxy-2-oxopropyl)-dGTP + H2O = lactate + dGTP + H(+)"]]},{"id":"CHEBI:29242","l":"","na":1,"nb":23,"a":[["environment/arsenic_tolerant.html","arsenic tolerant"]],"b":[["EC%3A1.20.2.1","arsenate reductase (cytochrome c)"],["EC%3A1.20.4.1","arsenate reductase (glutathione/glutaredoxin)"],["EC%3A1.20.4.3","mycoredoxin"],["EC%3A1.20.4.4","arsenate reductase (thioredoxin)"],["EC%3A1.20.9.1","arsenate reductase (azurin)"],["EC%3A1.20.99.1","arsenate reductase (donor)"]]},{"id":"GO:0004563","l":"beta-N-acetylhexosaminidase activity","na":1,"nb":23,"a":[["physiology/beta_n_acetylhexosaminidase_activity.html","beta-N-acetylhexosaminidase activity"]],"b":[["EC%3A3.2.1.52","beta-N-acetylhexosaminidase"],["ComplexPortal%3ACPX-502","Beta-hexosaminidase A complex"],["ComplexPortal%3ACPX-689","Beta-hexosaminidase A complex"],["ComplexPortal%3ACPX-686","Beta-hexosaminidase B complex"],["ComplexPortal%3ACPX-690","Beta-hexosaminidase B complex"],["ComplexPortal%3ACPX-687","Beta-hexosaminidase S complex"]]},{"id":"GO:0008843","l":"endochitinase activity","na":1,"nb":23,"a":[["metabolism/biopolymer_degradation.html","biopolymer degradation"]],"b":[["EC%3A3.2.1.14","chitinase"],["GO%3A0008843","endochitinase activity"],["MCSA%3A819","chitinase C"],["MCSA%3A478","chitinase (GH18, Class II)"],["MCSA%3A817","chitinase (GH18, class II)"],["MCSA%3A475","chitinase (GH19, Class II)"]]},{"id":"GO:0009847","l":"spore germination","na":1,"nb":23,"a":[["physiology/spore_germination.html","spore germination"]],"b":[["GO%3A0120164","conidium germination"],["GO%3A0075226","encysted zoospore germination"],["GO%3A0009847","spore germination"],["proteintraitsmech%3ASEED_SUBSYSTEM_Spore_germination","Spore germination"],["NCBIfam%3ATIGR00912","endospore germination permease"],["NCBIfam%3ATIGR02887","Ger(x)C family spore germination protein"]]},{"id":"NCBITaxon:266834","l":"Rhizobium meliloti (strain 1021)","na":1,"nb":23,"a":[["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"]],"b":[["Pfam%3APF13279","Thioesterase-like superfamily"],["Pfam%3APF26956","ACR family N-terminal ACT domain"],["Pfam%3APF27143","Atu0565 family"],["Pfam%3APF27488","BioS helical-like domain"],["Pfam%3APF05853","beta-keto acid cleavage enzyme"],["Pfam%3APF13746","4Fe-4S dicluster domain"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":1,"nb":23,"a":[["ecology/biosafety_level_3.html","biosafety level 3"]],"b":[["Pfam%3APF09255","Caf1 Capsule antigen"],["Pfam%3APF02611","CDP-diacylglycerol pyrophosphatase"],["Pfam%3APF07411","Domain of unknown function (DUF1508)"],["Pfam%3APF05171","Haemin-degrading HemS.ChuX domain"],["Pfam%3APF21500","DNA polymerase III subunit delta', AAA+ ATPase lid domain"],["Pfam%3APF11004","3-deoxy-D-manno-oct-2-ulosonic acid (Kdo) hydroxylase"]]},{"id":"CHEBI:27547","l":"zeaxanthin","na":1,"nb":22,"a":[["morphology/orange_pigmented.html","orange pigmented"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_27547","requires zeaxanthin"],["EC%3A1.13.11.65","carotenoid isomerooxygenase"],["EC%3A1.13.11.84","crocetin dialdehyde synthase"],["EC%3A1.14.15.21","zeaxanthin epoxidase"],["EC%3A1.14.15.24","beta-carotene 3-hydroxylase"],["EC%3A1.14.99.64","zeaxanthin 4-ketolase"]]},{"id":"GO:0003341","l":"cilium movement","na":1,"nb":21,"a":[["ecology/soil_dwelling.html","soil-dwelling"]],"b":[["ComplexPortal%3ACPX-8086","Nexin-dynein regulatory complex"],["ComplexPortal%3ACPX-2626","Outer dynein arm-docking complex"],["ComplexPortal%3ACPX-8161","Radial spoke complex, ciliiar variant"],["ComplexPortal%3ACPX-8163","Radial spoke complex, ciliiar variant"],["ComplexPortal%3ACPX-8162","Radial spoke complex, flagellar variant"],["GO%3A0003341","cilium movement"]]},{"id":"NCBITaxon:243230","l":"Deinococcus radiodurans (strain ATCC 13939 / DSM 20539 / JCM 16871 / CCUG 27074 / LMG 4051 / NBRC 15346 / NCIMB 9279 / VKM B-1422 / R1)","na":1,"nb":21,"a":[["environment/radiotolerant.html","radiotolerant"]],"b":[["Pfam%3APF07282","Cas12f1-like, TNB domain"],["Pfam%3APF26517","DNA damage response protein D family"],["Pfam%3APF07733","Bacterial DNA polymerase III alpha NTPase domain"],["Pfam%3APF17657","Bacterial DNA polymerase III alpha subunit finger domain"],["Pfam%3APF11638","DnaA N-terminal domain"],["Pfam%3APF09348","Domain of unknown function (DUF1990)"]]},{"id":"CHEBI:18420","l":"","na":1,"nb":20,"a":[["morphology/cell_width_small.html","cell width small"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18420","requires magnesium(2+)"],["EC%3A4.99.1.10","magnesium dechelatase"],["EC%3A6.6.1.1","magnesium chelatase"],["EC%3A7.2.2.14","P-type Mg(2+) transporter"],["RHEA%3A52788","chlorophyll a + 2 H(+) = pheophytin a + Mg(2+)"],["RHEA%3A52792","chlorophyllide a + 2 H(+) = pheophorbide a + Mg(2+)"]]},{"id":"GO:0000725","l":"recombinational repair","na":1,"nb":20,"a":[["genomics/ploidy.html","ploidy"]],"b":[["ComplexPortal%3ACPX-2197","Exodeoxyribonuclease V complex"],["ComplexPortal%3ACPX-1732","Ku70:Ku80 complex"],["ComplexPortal%3ACPX-1993","Ku70:Ku80 complex"],["ComplexPortal%3ACPX-2047","Ku70:Ku80 complex"],["ComplexPortal%3ACPX-2048","Ku70:Ku80 complex"],["ComplexPortal%3ACPX-5124","RuvAB Holliday junction DNA helicase complex"]]},{"id":"GO:0003989","l":"acetyl-CoA carboxylase activity","na":1,"nb":20,"a":[["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"]],"b":[["EC%3A6.4.1.2","acetyl-CoA carboxylase"],["RHEA%3A11308","hydrogencarbonate + acetyl-CoA + ATP = malonyl-CoA + ADP + phosphate + H(+)"],["ComplexPortal%3ACPX-3206","Acetyl-CoA carboxylase complex"],["GO%3A0003989","acetyl-CoA carboxylase activity"],["NCBIfam%3ANF015228","Acetyl co-enzyme A carboxylase carboxyltransferase-like"],["NCBIfam%3ATIGR00531","acetyl-CoA carboxylase biotin carboxyl carrier protein"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":1,"nb":20,"a":[["morphology/s_layer.html","S-layer"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF27529","AMPT"],["Pfam%3APF24856","L-arabinose isomerase central domain"],["Pfam%3APF02610","L-arabinose isomerase N-terminal domain"],["Pfam%3APF11762","L-arabinose isomerase C-terminal domain"],["Pfam%3APF17727","CtsR C-terminal dimerization domain"]]},{"id":"CHEBI:17057","l":"cellobiose","na":1,"nb":19,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["EC%3A1.1.3.5","hexose oxidase"],["EC%3A1.1.99.18","cellobiose dehydrogenase (acceptor)"],["EC%3A2.4.1.20","cellobiose phosphorylase"],["EC%3A2.7.1.205","protein-N(pi)-phosphohistidine--D-cellobiose phosphotransferase"],["EC%3A2.7.1.85","beta-glucoside kinase"],["EC%3A5.1.3.11","cellobiose epimerase"]]},{"id":"GO:0003993","l":"acid phosphatase activity","na":1,"nb":19,"a":[["physiology/acid_phosphatase_activity.html","acid phosphatase activity"]],"b":[["EC%3A3.1.3.2","acid phosphatase"],["ComplexPortal%3ACPX-120","Prostatic acid phosphatase complex"],["ComplexPortal%3ACPX-121","Prostatic acid phosphatase complex"],["GO%3A0003993","acid phosphatase activity"],["NCBIfam%3ATIGR01672","acid phosphatase AphA"],["NCBIfam%3ANF045654","acid phosphatase PhoC"]]},{"id":"GO:0004559","l":"alpha-mannosidase activity","na":1,"nb":19,"a":[["physiology/alpha_mannosidase_activity.html","alpha-mannosidase activity"]],"b":[["EC%3A3.2.1.24","alpha-mannosidase"],["GO%3A0004559","alpha-mannosidase activity"],["GO%3A0004569","glycoprotein endo-alpha-1,2-mannosidase activity"],["GO%3A0033915","mannan 1,2-(1,3)-alpha-mannosidase activity"],["GO%3A0008496","mannan endo-1,6-alpha-mannosidase activity"],["GO%3A0033941","mannan exo-1,2-1,6-alpha-mannosidase activity"]]},{"id":"GO:0008150","l":"biological_process","na":1,"nb":19,"a":[["upper/biological_process.html","biological process"]],"b":[["GO%3A0044848","biological phase"],["GO%3A0008150","biological_process"],["GO%3A0044419","biological process involved in interspecies interaction between organisms"],["GO%3A0051703","biological process involved in intraspecies interaction between organisms"],["GO%3A0065007","biological regulation"],["GO%3A0009987","cellular process"]]},{"id":"GO:0019290","l":"siderophore biosynthetic process","na":1,"nb":19,"a":[["physiology/siderophore_production.html","siderophore production"]],"b":[["GO%3A0140614","1,8-dihydroxynaphthalene-melanin biosynthetic process"],["GO%3A0042861","achromobactin biosynthetic process"],["GO%3A0019540","catechol-containing siderophore biosynthetic process"],["GO%3A0042858","chrysobactin biosynthetic process"],["GO%3A0019539","hydroxymate-containing siderophore biosynthetic process"],["GO%3A0042864","pyochelin biosynthetic process"]]},{"id":"GO:0043885","l":"anaerobic carbon-monoxide dehydrogenase activity","na":1,"nb":19,"a":[["physiology/carboxydotrophic.html","carboxydotrophic"]],"b":[["EC%3A1.2.7.4","anaerobic carbon-monoxide dehydrogenase"],["RHEA%3A21040","CO + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O = 2 reduced [2Fe-2S]-[ferredoxin] + CO2 + 2 H(+)"],["GO%3A0043885","anaerobic carbon-monoxide dehydrogenase activity"],["NCBIfam%3ATIGR02416","aerobic carbon-monoxide dehydrogenase large subunit"],["NCBIfam%3ATIGR01702","anaerobic carbon-monoxide dehydrogenase catalytic subunit"],["NCBIfam%3ATIGR00314","CO dehydrogenase/acetyl-CoA synthase complex subunit alpha"]]},{"id":"GO:0045277","l":"respiratory chain complex IV","na":1,"nb":19,"a":[["physiology/oxidase_activity.html","oxidase activity"]],"b":[["ComplexPortal%3ACPX-1721","Mitochondrial respiratory chain complex IV, COX5A variant"],["ComplexPortal%3ACPX-1722","Mitochondrial respiratory chain complex IV, COX5B variant"],["ComplexPortal%3ACPX-6123","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-8620","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-9641","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-8621","Mitochondrial respiratory chain complex IV, testis-specific variant"]]},{"id":"GO:0045493","l":"xylan catabolic process","na":1,"nb":19,"a":[["metabolism/xylan_degradation.html","xylan degradation"]],"b":[["GO%3A2000888","arabinoxylan-containing compound catabolic process"],["GO%3A2000886","glucuronoxylan catabolic process"],["GO%3A0045493","xylan catabolic process"],["NCBIfam%3ANF042968","acetylxylan esterase AxeA1"],["NCBIfam%3ANF041579","beta-xylosidase"],["NCBIfam%3ANF042969","bifunctional acetylxylan esterase/glucomannan deacetylase AxeC2"]]},{"id":"CHEBI:16838","l":"polyphosphate","na":1,"nb":18,"a":[["environment/zinc_tolerant.html","zinc tolerant"]],"b":[["EC%3A2.7.1.63","polyphosphate--glucose phosphotransferase"],["EC%3A2.7.4.1","ATP-polyphosphate phosphotransferase"],["EC%3A2.7.4.17","3-phosphoglyceroyl-phosphate--polyphosphate phosphotransferase"],["EC%3A2.7.4.20","dolichyl-diphosphate--polyphosphate phosphotransferase"],["EC%3A2.7.4.33","AMP-polyphosphate phosphotransferase"],["EC%3A2.7.4.34","GDP-polyphosphate phosphotransferase"]]},{"id":"CHEBI:16169","l":"","na":1,"nb":17,"a":[["morphology/pigmentation.html","pigmentation"]],"b":[["EC%3A1.13.11.27","4-hydroxyphenylpyruvate dioxygenase"],["EC%3A1.13.11.5","homogentisate 1,2-dioxygenase"],["EC%3A1.14.13.18","4-hydroxyphenylacetate 1-monooxygenase"],["EC%3A1.14.13.63","3-hydroxyphenylacetate 6-hydroxylase"],["EC%3A2.5.1.115","homogentisate phytyltransferase"],["EC%3A2.5.1.116","homogentisate geranylgeranyltransferase"]]},{"id":"GO:0051701","l":"biological process involved in interaction with host","na":1,"nb":17,"a":[["ecology/plant_pathogen.html","plant pathogen"]],"b":[["GO%3A0044002","acquisition of nutrients from host"],["GO%3A0044406","adhesion of symbiont to host"],["GO%3A0051701","biological process involved in interaction with host"],["GO%3A0035891","exit from host cell"],["GO%3A0044001","migration in host"],["GO%3A0075136","response to host"]]},{"id":"GO:0106435","l":"carboxylesterase activity","na":1,"nb":17,"a":[["physiology/carboxylesterase_activity.html","carboxylesterase activity"]],"b":[["EC%3A3.1.1.1","carboxylesterase"],["RHEA%3A63052","1-O-methyl-(5Z,8Z,11Z,14Z)-eicosatetraenoate + H2O = methanol + (5Z,8Z,11Z,14Z)-eicosatetraenoate + H(+)"],["RHEA%3A21164","a carboxylic ester + H2O = an alcohol + a carboxylate + H(+)"],["RHEA%3A59388","a fatty acid ester + H2O = an aliphatic alcohol + a fatty acid + H(+)"],["RHEA%3A50148","a fatty acid ethyl ester + H2O = ethanol + a fatty acid + H(+)"],["RHEA%3A31779","an all-trans-retinyl ester + H2O = 13-cis-retinol + a fatty acid + H(+)"]]},{"id":"GO:0110143","l":"magnetosome","na":1,"nb":17,"a":[["morphology/magnetosome.html","magnetosome"]],"b":[["GO%3A0110143","magnetosome"],["NCBIfam%3ANF040997","liposome tubulation protein MamY"],["NCBIfam%3ANF040917","magnetic particle specific iron-binding protein Mms6"],["NCBIfam%3ANF040986","magnetosome biogenesis transporter MamH"],["NCBIfam%3ANF040989","magnetosome biogenesis transporter MamN"],["NCBIfam%3ANF040998","magnetosome biogenesis transporter MamZ"]]},{"id":"UniProt:P35149","l":"","na":1,"nb":17,"a":[["morphology/spore_shaped.html","spore shaped"]],"b":[["EC%3A3.6.1.-","In phosphorus-containing anhydrides"],["GO%3A0043595","endospore cortex"],["GO%3A0042601","endospore-forming forespore"],["GO%3A0031160","spore wall"],["GO%3A0000270","peptidoglycan metabolic process"],["GO%3A0009847","spore germination"]]},{"id":"CHEBI:48828","l":"cobalt(2+)","na":1,"nb":16,"a":[["environment/cobalt_tolerant.html","cobalt tolerant"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_48828","requires cobalt(2+)"],["EC%3A1.16.99.1","[Co(II) methylated amine-specific corrinoid protein] reductase"],["EC%3A4.99.1.3","sirohydrochlorin cobaltochelatase"],["EC%3A6.6.1.2","cobaltochelatase"],["RHEA%3A65832","2 Co(II)-[dimethylamine-specific corrinoid protein] + AH2 + ATP + H2O = 2 Co(I)-[dimethylamine-specific corrinoid protein] + A + ADP + phosphate + 3 H(+)"],["RHEA%3A65816","2 Co(II)-[methylamine-specific corrinoid protein] + AH2 + ATP + H2O = 2 Co(I)-[methylamine-specific corrinoid protein] + A + ADP + phosphate + 3 H(+)"]]},{"id":"GO:0004556","l":"alpha-amylase activity","na":1,"nb":16,"a":[["metabolism/starch_degradation.html","starch degradation"]],"b":[["EC%3A3.2.1.1","alpha-amylase"],["GO%3A0004556","alpha-amylase activity"],["NCBIfam%3ANF041321","alpha-amylase MalA"],["NCBIfam%3ANF006971","alpha-amylase"],["NCBIfam%3ANF007051","alpha-amylase"],["NCBIfam%3ANF007052","alpha-amylase"]]},{"id":"GO:0004566","l":"beta-glucuronidase activity","na":1,"nb":16,"a":[["physiology/beta_glucuronidase_activity.html","beta-glucuronidase activity"]],"b":[["EC%3A3.2.1.31","beta-glucuronidase"],["RHEA%3A76111","4-methylumbelliferone beta-D-glucuronate + H2O = 4-methylumbelliferone + D-glucuronate"],["RHEA%3A17633","a beta-D-glucuronoside + H2O = D-glucuronate + an alcohol"],["RHEA%3A30475","oroxylin A 7-O-beta-D-glucuronate + H2O = oroxylin A + D-glucuronate + H(+)"],["RHEA%3A28326","wogonin 7-O-beta-D-glucuronate + H2O = wogonin + D-glucuronate + H(+)"],["GO%3A0004566","beta-glucuronidase activity"]]},{"id":"InterPro:IPR002105","l":"Dockerin type I repeat","na":1,"nb":16,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["Pfam%3APF17996","Carbohydrate esterase 2 N-terminal"],["Pfam%3APF02927","Cellulase N-terminal ig-like domain"],["Pfam%3APF00963","Cohesin domain"],["Pfam%3APF00404","Dockerin type I domain"],["Pfam%3APF07554","FIVAR domain"]]},{"id":"GO:0045273","l":"respiratory chain complex II (succinate dehydrogenase)","na":1,"nb":15,"a":[["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"]],"b":[["ComplexPortal%3ACPX-561","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-562","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-564","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-565","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-566","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-8622","Mitochondrial respiratory chain complex II"]]},{"id":"GO:0045490","l":"pectin catabolic process","na":1,"nb":15,"a":[["metabolism/pectin_degradation.html","pectin degradation"]],"b":[["GO%3A0045490","pectin catabolic process"],["NCBIfam%3ANF002091","5-dehydro-4-deoxy-D-glucuronate isomerase"],["NCBIfam%3ANF025934","oligogalacturonate lyase family protein"],["NCBIfam%3ANF041904","pectate disaccharide-lyase PelW"],["NCBIfam%3ANF041903","pectate disaccharide-lyase PelX"],["NCBIfam%3ANF041898","pectate lyase PelI"]]},{"id":"InterPro:IPR028629","l":"","na":1,"nb":15,"a":[["genomics/crispr_cas_system.html","CRISPR-Cas system"]],"b":[["Pfam%3APF18470","Cas9 alpha-helical lobe domain"],["Pfam%3APF17893","CRISPR-associated endonuclease Cas9 beta-hairpin domain"],["Pfam%3APF18525","Cas9 C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"],["Pfam%3APF16595","PAM-interacting domain of CRISPR-associated endonuclease Cas9"],["Pfam%3APF18070","CRISPR-Cas9 PI domain"]]},{"id":"METPO:1000802","l":"Anaerobic respiration","na":15,"nb":1,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/arsenate_respiration.html","arsenate respiration"],["metabolism/chlorate_respiration.html","chlorate respiration"],["metabolism/dimethyl_sulfoxide_respiration.html","dimethyl sulfoxide respiration"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"]],"b":[["METPO%3A1000802","Anaerobic respiration"]]},{"id":"METPO:1002005","l":"Fermentation","na":15,"nb":1,"a":[["metabolism/acetone_butanol_ethanol_fermentation.html","acetone-butanol-ethanol fermentation"],["metabolism/butanediol_fermentation.html","2,3-butanediol fermentation"],["metabolism/butyric_acid_fermentation.html","butyric acid fermentation"],["metabolism/citrate_fermentation.html","citrate fermentation"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"]],"b":[["METPO%3A1002005","Fermentation"]]},{"id":"UniProt:P09373","l":"","na":1,"nb":15,"a":[["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"]],"b":[["EC%3A2.3.1.54","formate C-acetyltransferase"],["RHEA%3A11844","formate + acetyl-CoA = pyruvate + CoA"],["GO%3A0008861","formate C-acetyltransferase activity"],["NCBIfam%3ATIGR01255","formate C-acetyltransferase"],["InterPro%3AIPR019777","Formate C-acetyltransferase glycine radical, conserved site"],["CDD%3Acd01678","PFL1"]]},{"id":"GO:0004629","l":"C-type glycerophospholipase activity","na":1,"nb":14,"a":[["physiology/lecithinase_activity.html","lecithinase activity"]],"b":[["GO%3A0004629","C-type glycerophospholipase activity"],["GO%3A0140335","GPI anchor phospholipase C activity"],["GO%3A0140324","lysophospholipase C activity"],["GO%3A0034480","phosphatidylcholine phospholipase C activity"],["GO%3A0034479","phosphatidylglycerol phospholipase C activity"],["GO%3A0004435","phosphatidylinositol-4,5-bisphosphate phospholipase C activity"]]},{"id":"GO:0009408","l":"response to heat","na":1,"nb":14,"a":[["physiology/heat_shock_response.html","heat shock response"]],"b":[["ComplexPortal%3ACPX-4887","DNA-directed RNA polymerase holoenzyme complex, SigmaH variant"],["ComplexPortal%3ACPX-636","ISW1b chromatin remodeling complex"],["GO%3A0034605","cellular response to heat"],["GO%3A0036168","filamentous growth of a population of unicellular organisms in response to heat"],["GO%3A0010286","heat acclimation"],["GO%3A0009408","response to heat"]]},{"id":"GO:0015891","l":"siderophore transport","na":1,"nb":14,"a":[["physiology/siderophore_production.html","siderophore production"]],"b":[["GO%3A0042935","achromobactin transport"],["GO%3A0042932","chrysobactin transport"],["GO%3A0042930","enterobactin transport"],["GO%3A0044718","siderophore transmembrane transport"],["GO%3A0015891","siderophore transport"],["NCBIfam%3ANF007349","catecholate siderophore receptor Fiu"]]},{"id":"GO:0090599","l":"alpha-glucosidase activity","na":1,"nb":14,"a":[["physiology/alpha_glucosidase_activity.html","alpha-glucosidase activity"]],"b":[["GO%3A0004558","alpha-1,4-glucosidase activity"],["GO%3A0090599","alpha-glucosidase activity"],["GO%3A0004135","amylo-alpha-1,6-glucosidase activity"],["GO%3A0033933","branched-dextran exo-1,2-alpha-glucosidase activity"],["GO%3A0106407","Glc2Man9GlcNAc2 oligosaccharide glucosidase activity"],["GO%3A0004573","Glc3Man9GlcNAc2 oligosaccharide glucosidase activity"]]},{"id":"UniProt:Q58256","l":"","na":1,"nb":14,"a":[["metabolism/methanogenesis.html","Methanogenesis"]],"b":[["GO%3A0050524","coenzyme-B sulfoethylthiotransferase activity"],["GO%3A0015948","methanogenesis"],["NCBIfam%3ATIGR03256","coenzyme-B sulfoethylthiotransferase subunit alpha"],["InterPro%3AIPR009047","Methyl-coenzyme M reductase, alpha subunit, C-terminal"],["InterPro%3AIPR003183","Methyl-coenzyme M reductase, alpha subunit, N-terminal"],["Pfam%3APF02745","Methyl-coenzyme M reductase alpha subunit, N-terminal domain"]]},{"id":"GO:0004781","l":"sulfate adenylyltransferase (ATP) activity","na":1,"nb":13,"a":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["EC%3A2.7.7.4","sulfate adenylyltransferase"],["RHEA%3A18133","sulfate + ATP + H(+) = adenosine 5'-phosphosulfate + diphosphate"],["ComplexPortal%3ACPX-4471","Sulfate adenylyltransferase complex"],["GO%3A0004781","sulfate adenylyltransferase (ATP) activity"],["NCBIfam%3ATIGR02034","sulfate adenylyltransferase, large subunit"],["NCBIfam%3ATIGR02039","sulfate adenylyltransferase, small subunit"]]},{"id":"GO:0016859","l":"cis-trans isomerase activity","na":1,"nb":13,"a":[["environment/temperature_delta_high.html","temperature delta high"]],"b":[["GO%3A0047466","2-chloro-4-carboxymethylenebut-2-en-1,4-olide isomerase activity"],["GO%3A0090471","9,15,9'-tri-cis-zeta-carotene isomerase activity"],["GO%3A0106365","beta-carotene isomerase activity"],["GO%3A0046608","carotenoid isomerase activity"],["GO%3A0016859","cis-trans isomerase activity"],["GO%3A0047885","farnesol 2-isomerase activity"]]},{"id":"GO:0120253","l":"hydrocarbon catabolic process","na":1,"nb":13,"a":[["metabolism/hydrocarbon_degradation.html","hydrocarbon degradation"]],"b":[["GO%3A0043448","alkane catabolic process"],["GO%3A0043451","alkene catabolic process"],["GO%3A0043454","alkyne catabolic process"],["GO%3A1900996","benzene catabolic process"],["GO%3A0018915","ethylbenzene catabolic process"],["GO%3A0019429","fluorene catabolic process"]]},{"id":"InterPro:IPR000673","l":"Signal transduction response regulator, chemotaxis, protein-glutamate methylesterase","na":1,"nb":13,"a":[["physiology/chemotaxis.html","chemotaxis"]],"b":[["GO%3A1990827","deaminase binding"],["GO%3A0008984","protein-glutamate methylesterase activity"],["GO%3A0050568","protein-glutamine glutaminase activity"],["GO%3A0006482","protein demethylation"],["NCBIfam%3ANF001965","chemotaxis-specific protein-glutamate methyltransferase CheB"],["NCBIfam%3ANF009206","chemotaxis-specific protein-glutamate methyltransferase CheB"]]},{"id":"UniProt:P0A7G6","l":"","na":1,"nb":13,"a":[["physiology/sos_response.html","SOS response"]],"b":[["ComplexPortal%3ACPX-5544","DNA polymerase V mutasome complex"],["GO%3A0140664","ATP-dependent DNA damage sensor activity"],["NCBIfam%3ATIGR02012","recombinase RecA"],["InterPro%3AIPR020584","DNA recombination/repair protein RecA, conserved site"],["CDD%3Acd00983","RecA"],["InterPro%3AIPR020587","DNA recombination and repair protein RecA, monomer-monomer interface"]]},{"id":"GO:0004536","l":"DNA nuclease activity","na":1,"nb":12,"a":[["physiology/dnase_activity.html","DNase activity"]],"b":[["GO%3A0004520","DNA endonuclease activity"],["GO%3A0004529","DNA exonuclease activity"],["GO%3A0004536","DNA nuclease activity"],["NCBIfam%3ANF053575","GINS-associated RecJ family nuclease"],["NCBIfam%3ANF053577","Hef-associated nuclease"],["NCBIfam%3ANF053576","RecJ family nuclease"]]},{"id":"GO:0008964","l":"phosphoenolpyruvate carboxylase activity","na":1,"nb":12,"a":[["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"]],"b":[["EC%3A4.1.1.31","phosphoenolpyruvate carboxylase"],["RHEA%3A28370","oxaloacetate + phosphate = phosphoenolpyruvate + hydrogencarbonate"],["GO%3A0008964","phosphoenolpyruvate carboxylase activity"],["NCBIfam%3ANF000584","phosphoenolpyruvate carboxylase"],["NCBIfam%3ANF012532","phosphoenolpyruvate carboxylase"],["NCBIfam%3ANF025376","phosphoenolpyruvate carboxylase"]]},{"id":"GO:0009512","l":"cytochrome b6f complex","na":1,"nb":12,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"]],"b":[["GO%3A0009512","cytochrome b6f complex"],["NCBIfam%3ANF014576","cytochrome b6-f complex subunit PetG"],["NCBIfam%3ANF016971","cytochrome b6-f complex subunit PetL"],["NCBIfam%3ANF015687","cytochrome b6-f complex subunit PetN"],["NCBIfam%3ANF050003","cytochrome b6f subunit PetP"],["NCBIfam%3ANF019653","PetM family cytochrome b6-f complex subunit 7"]]},{"id":"GO:0045275","l":"respiratory chain complex III","na":1,"nb":12,"a":[["physiology/organoheterotrophic.html","organoheterotrophic"]],"b":[["ComplexPortal%3ACPX-560","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-563","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-567","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-8730","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-9308","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-8737","Mitochondrial respiratory chain complex III, testis-specific variant"]]},{"id":"InterPro:IPR000780","l":"MCP methyltransferase, CheR-type","na":1,"nb":12,"a":[["physiology/chemotaxis.html","chemotaxis"]],"b":[["GO%3A0098561","methyl accepting chemotaxis protein complex"],["GO%3A0008983","protein-glutamate O-methyltransferase activity"],["NCBIfam%3ANF007902","protein-glutamate O-methyltransferase CheR"],["InterPro%3AIPR022641","Chemotaxis receptor methyltransferase CheR, N-terminal"],["InterPro%3AIPR000780","MCP methyltransferase, CheR-type"],["InterPro%3AIPR022642","MCP methyltransferase, CheR-type, SAM-binding domain, C-terminal"]]},{"id":"UniProt:P04949","l":"","na":1,"nb":12,"a":[["morphology/flagellated.html","flagellated"]],"b":[["InterPro%3AIPR049365","Flagellin, barrel domain"],["InterPro%3AIPR046358","Flagellin, C-terminal domain"],["InterPro%3AIPR014981","Flagellin D3"],["InterPro%3AIPR001029","Flagellin, N-terminal domain"],["Pfam%3APF08884","Flagellin D3 domain"],["Pfam%3APF21504","Flagellin, barrel domain"]]},{"id":"UniProt:P23874","l":"","na":1,"nb":12,"a":[["physiology/persister_cell_formation.html","persister cell formation"]],"b":[["ComplexPortal%3ACPX-180","HipBA toxin-antitoxin complex"],["GO%3A0001217","DNA-binding transcription repressor activity"],["GO%3A0022611","dormancy process"],["GO%3A0036289","peptidyl-serine autophosphorylation"],["GO%3A0040008","regulation of growth"],["GO%3A0044010","single-species biofilm formation"]]},{"id":"CHEBI:16510","l":"","na":1,"nb":11,"a":[["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"]],"b":[["EC%3A1.1.1.298","3-hydroxypropionate dehydrogenase (NADP(+))"],["EC%3A1.1.1.59","3-hydroxypropionate dehydrogenase"],["EC%3A6.2.1.36","3-hydroxypropionyl-CoA synthase"],["RHEA%3A59432","3-hydroxypropanal + NAD(+) + H2O = 3-hydroxypropanoate + NADH + 2 H(+)"],["RHEA%3A59428","3-hydroxypropanal + NADP(+) + H2O = 3-hydroxypropanoate + NADPH + 2 H(+)"],["RHEA%3A67136","3-hydroxypropanoate + ATP + CoA = 3-hydroxypropanoyl-CoA + ADP + phosphate"]]},{"id":"CHEBI:16724","l":"4-hydroxybutyrate","na":1,"nb":11,"a":[["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]],"b":[["EC%3A1.1.1.61","4-hydroxybutyrate dehydrogenase"],["EC%3A1.1.1.n11","succinic semialdehyde reductase"],["EC%3A1.1.99.24","hydroxyacid-oxoacid transhydrogenase"],["EC%3A6.2.1.40","4-hydroxybutyrate--CoA ligase (AMP-forming)"],["EC%3A6.2.1.56","4-hydroxybutyrate--CoA ligase (ADP-forming)"],["RHEA%3A24734","4-hydroxybutanoate + 2-oxoglutarate = (R)-2-hydroxyglutarate + succinate semialdehyde"]]},{"id":"GO:0004737","l":"pyruvate decarboxylase activity","na":1,"nb":11,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"]],"b":[["EC%3A4.1.1.1","pyruvate decarboxylase"],["RHEA%3A55072","2-oxobutanoate + H(+) = propanal + CO2"],["RHEA%3A50312","2-oxopentanoate + H(+) = butanal + CO2"],["RHEA%3A54356","3-methyl-2-oxobutanoate + H(+) = 2-methylpropanal + CO2"],["RHEA%3A54360","4-methyl-2-oxopentanoate + H(+) = 3-methylbutanal + CO2"],["RHEA%3A11628","a 2-oxocarboxylate + H(+) = an aldehyde + CO2"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":1,"nb":11,"a":[["ecology/opportunistic_pathogen.html","opportunistic pathogen"]],"b":[["Pfam%3APF22829","HphA C-terminal domain"],["Pfam%3APF22828","HphA N-terminal heme-binding domain"],["Pfam%3APF28205","Ciprofloxacin tolerance protein"],["Pfam%3APF19582","Solute-binding protein AdeT 1/2"],["PROSITE%3APS00337","Beta-lactamase class-D active site"],["Pfam%3APF24575","Surface lipoprotein assembly modifier, N-terminal TPR repeats"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":1,"nb":11,"a":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF02085","Class III cytochrome C family"],["Pfam%3APF06397","Desulfoferrodoxin, N-terminal domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["Pfam%3APF12797","4Fe-4S binding domain"],["Pfam%3APF06180","Cobalt chelatase (CbiK)"]]},{"id":"UniProt:P0A7C2","l":"","na":1,"nb":11,"a":[["physiology/sos_response.html","SOS response"]],"b":[["NCBIfam%3ATIGR00498","transcriptional repressor LexA"],["proteintraitsmech%3AMEROPS_CLEAVAGE_S24_001","repressor LexA cleavage specificity"],["CDD%3Acd06529","S24_LexA-like"],["InterPro%3AIPR039418","LexA-like"],["InterPro%3AIPR006199","LexA repressor, DNA-binding domain"],["InterPro%3AIPR015927","Peptidase S24/S26A/S26B/S26C"]]},{"id":"UniProt:P0AEK4","l":"","na":1,"nb":11,"a":[["physiology/homeoviscous_adaptation.html","homeoviscous adaptation"]],"b":[["GO%3A1902494","catalytic complex"],["GO%3A0004318","enoyl-[acyl-carrier-protein] reductase (NADH) activity"],["GO%3A0070404","NADH binding"],["GO%3A0009102","biotin biosynthetic process"],["GO%3A0030497","fatty acid elongation"],["GO%3A0008610","lipid biosynthetic process"]]},{"id":"GO:0004557","l":"alpha-galactosidase activity","na":1,"nb":10,"a":[["physiology/alpha_galactosidase_activity.html","alpha-galactosidase activity"]],"b":[["EC%3A3.2.1.22","alpha-galactosidase"],["RHEA%3A21112","a globoside Gb3Cer (d18:1(4E)) + H2O = a beta-D-Gal-(1->4)-beta-D-Glc-(1<->1)-Cer(d18:1(4E)) + D-galactose"],["RHEA%3A28663","melibiose + H2O = D-galactose + D-glucose"],["GO%3A0004557","alpha-galactosidase activity"],["GO%3A0052692","raffinose alpha-galactosidase activity"],["NCBIfam%3ANF053652","beta-L-arabinopyranosidase"]]},{"id":"GO:0008218","l":"bioluminescence","na":1,"nb":10,"a":[["physiology/bioluminescence.html","bioluminescence"]],"b":[["GO%3A0008218","bioluminescence"],["NCBIfam%3ANF052253","fatty acid reductase transferase subunit LuxD"],["NCBIfam%3ANF052244","long-chain-fatty-acid--protein ligase LuxE"],["NCBIfam%3ANF052254","luciferase subunit alpha"],["NCBIfam%3ANF052255","luciferase subunit beta"],["InterPro%3AIPR007534","Acyl-protein synthetase, LuxE"]]},{"id":"GO:0030313","l":"cell envelope","na":1,"nb":10,"a":[["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"]],"b":[["GO%3A0030313","cell envelope"],["PANTHER%3APTHR39576","ATTACHING AND EFFACING PROTEIN HOMOLOG-RELATED-RELATED"],["PANTHER%3APTHR38762","CRYPTIC OUTER MEMBRANE PORIN BGLH-RELATED"],["PANTHER%3APTHR41164","CURLI PRODUCTION ASSEMBLY/TRANSPORT COMPONENT CSGG"],["PANTHER%3APTHR30036","D-XYLOSE-BINDING PERIPLASMIC PROTEIN"],["PANTHER%3APTHR30532","IRON III DICITRATE-BINDING PERIPLASMIC PROTEIN"]]},{"id":"GO:0035434","l":"copper ion transmembrane transport","na":1,"nb":10,"a":[["environment/copper_tolerant.html","copper tolerant"]],"b":[["ComplexPortal%3ACPX-2254","Cus cation efflux complex"],["GO%3A0140636","copper import into the mitochondrion"],["GO%3A0140145","copper ion export from vacuole"],["GO%3A0060003","copper ion export"],["GO%3A0097430","copper ion import across prospore membrane"],["GO%3A7770057","copper ion import into Golgi lumen"]]},{"id":"GO:0046274","l":"lignin catabolic process","na":1,"nb":10,"a":[["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["GO%3A1990487","anaerobic lignin catabolic process"],["GO%3A1901062","guaiacyl lignin catabolic process"],["GO%3A0046274","lignin catabolic process"],["GO%3A1901059","p-hydroxyphenyl lignin catabolic process"],["GO%3A1901065","syringal lignin catabolic process"],["NCBIfam%3ANF042997","beta-etherase"]]},{"id":"NCBITaxon:192222","l":"Campylobacter jejuni subsp. jejuni serotype O:2 (strain ATCC 700819 / NCTC 11168)","na":1,"nb":10,"a":[["environment/capnophilic.html","capnophilic"]],"b":[["Pfam%3APF26365","Apolipoprotein N-acyltransferase integral membrane domain"],["Pfam%3APF22131","CRISPR-associated endonuclease CjCas9 PI-CTD domain"],["Pfam%3APF22129","CRISPR-associated endonuclease CjCas9 wedge domain"],["Pfam%3APF02554","Carbon starvation protein CstA"],["Pfam%3APF27310","HrcA C-terminal domain"],["Pfam%3APF05538","Campylobacter major outer membrane protein"]]},{"id":"NCBITaxon:224911","l":"Bradyrhizobium diazoefficiens (strain JCM 10833 / BCRC 13528 / IAM 13628 / NBRC 14792 / USDA 110)","na":1,"nb":10,"a":[["morphology/subpolar_flagellation.html","subpolar flagellation"]],"b":[["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["Pfam%3APF14715","N-terminal domain of cytochrome oxidase-cbb3, FixP"],["Pfam%3APF03886","ABC-type transport auxiliary lipoprotein component"],["Pfam%3APF10649","Protein of unknown function (DUF2478)"],["Pfam%3APF01924","Hydrogenase formation hypA family"],["PROSITE%3APS00882","Nickel-dependent hydrogenases b-type cytochrome subunit signature 1"]]},{"id":"UniProt:P06534","l":"","na":1,"nb":10,"a":[["morphology/spore_forming.html","spore forming"]],"b":[["GO%3A0090529","cell septum assembly"],["GO%3A0051606","detection of stimulus"],["GO%3A0000160","phosphorelay signal transduction system"],["GO%3A0045881","positive regulation of sporulation resulting in formation of a cellular spore"],["GO%3A0090606","single-species surface biofilm formation"],["NCBIfam%3ATIGR02875","sporulation transcription factor Spo0A"]]},{"id":"UniProt:P0A9X9","l":"","na":1,"nb":10,"a":[["physiology/cold_shock_response.html","cold shock response"]],"b":[["GO%3A0001072","transcription antitermination factor activity, RNA binding"],["GO%3A0060567","negative regulation of termination of DNA-templated transcription"],["NCBIfam%3ANF007679","RNA chaperone/antiterminator CspA"],["NCBIfam%3ANF049933","transcription antiterminator/RNA stability regulator CspE"],["InterPro%3AIPR019844","Cold-shock domain, conserved site"],["CDD%3Acd04458","CSP_CDS"]]},{"id":"CHEBI:17234","l":"glucose","na":9,"nb":1,"a":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/biopolymer_degradation.html","biopolymer degradation"],["metabolism/cellulolysis.html","cellulolysis"],["metabolism/does_not_use_as_carbon_source.html","does not use as carbon source"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/starch_degradation.html","starch degradation"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:48775","l":"cadmium(2+)","na":1,"nb":9,"a":[["environment/cadmium_tolerant.html","cadmium tolerant"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_48775","requires cadmium(2+)"],["EC%3A7.2.2.2","ABC-type Cd(2+) transporter"],["EC%3A7.2.2.21","Cd(2+)-exporting ATPase"],["RHEA%3A12132","Cd(2+)(in) + ATP + H2O = Cd(2+)(out) + ADP + phosphate + H(+)"],["RHEA%3A28707","Cd(2+)(in) = Cd(2+)(out)"],["RHEA%3A28739","Cd(2+)(in) + H(+)(out) = Cd(2+)(out) + H(+)(in)"]]},{"id":"GO:0004324","l":"ferredoxin-NADP+ reductase activity","na":1,"nb":9,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"]],"b":[["EC%3A1.18.1.2","ferredoxin--NADP(+) reductase"],["RHEA%3A20125","2 reduced [2Fe-2S]-[ferredoxin] + NADP(+) + H(+) = 2 oxidized [2Fe-2S]-[ferredoxin] + NADPH"],["GO%3A0004324","ferredoxin-NADP+ reductase activity"],["NCBIfam%3ANF008178","ferredoxin--NADP(+) reductase"],["NCBIfam%3ANF045929","ferredoxin--NADP reductase"],["MCSA%3A142","ferredoxin-NADP+ reductase (adrenodoxin-type)"]]},{"id":"GO:0004560","l":"alpha-L-fucosidase activity","na":1,"nb":9,"a":[["physiology/alpha_fucosidase_activity.html","alpha-fucosidase activity"]],"b":[["EC%3A3.2.1.51","alpha-L-fucosidase"],["RHEA%3A12288","an alpha-L-fucoside + H2O = L-fucose + an alcohol"],["GO%3A0047513","1,2-alpha-L-fucosidase activity"],["GO%3A0033932","1,3-alpha-L-fucosidase activity"],["GO%3A0033938","1,6-alpha-L-fucosidase activity"],["GO%3A0004560","alpha-L-fucosidase activity"]]},{"id":"GO:0004568","l":"chitinase activity","na":1,"nb":9,"a":[["metabolism/chitinolysis.html","chitinolysis"]],"b":[["GO%3A0004568","chitinase activity"],["GO%3A0008843","endochitinase activity"],["GO%3A0035885","exochitinase activity"],["InterPro%3AIPR013540","Chitinase A N-terminal"],["InterPro%3AIPR000726","Glycoside hydrolase, family 19, catalytic"],["NCBIfam%3ANF019930","chitinase N-terminal domain-containing protein"]]},{"id":"GO:0004586","l":"ornithine decarboxylase activity","na":1,"nb":9,"a":[["physiology/ornithine_decarboxylase_activity.html","ornithine decarboxylase activity"]],"b":[["EC%3A4.1.1.17","ornithine decarboxylase"],["RHEA%3A22964","L-ornithine + H(+) = putrescine + CO2"],["GO%3A0004586","ornithine decarboxylase activity"],["NCBIfam%3ATIGR04301","ornithine decarboxylase SpeF"],["MCSA%3A860","ornithine decarboxylase"],["MCSA%3A937","ornithine decarboxylase"]]},{"id":"GO:0006097","l":"glyoxylate cycle","na":1,"nb":9,"a":[["physiology/heterotrophic.html","heterotrophic"]],"b":[["GO%3A0006097","glyoxylate cycle"],["proteintraitsmech%3ASEED_SUBSYSTEM_Glyoxylate_bypass","Glyoxylate bypass"],["NCBIfam%3ATIGR02924","isocitrate dehydrogenase"],["NCBIfam%3ATIGR01344","malate synthase A"],["NCBIfam%3ANF041315","malate synthase AceB"],["NCBIfam%3ANF002825","malate synthase G"]]},{"id":"GO:0009423","l":"chorismate biosynthetic process","na":1,"nb":9,"a":[["morphology/pigmentation.html","pigmentation"]],"b":[["GO%3A0009423","chorismate biosynthetic process"],["proteintraitsmech%3ASEED_SUBSYSTEM_Chorismate_Synthesis","Chorismate Synthesis"],["NCBIfam%3ATIGR01357","3-dehydroquinate synthase"],["NCBIfam%3ATIGR01358","class II 3-deoxy-7-phosphoheptulonate synthase"],["NCBIfam%3ATIGR01920","shikimate kinase"],["NCBIfam%3ATIGR01088","type II 3-dehydroquinate dehydratase"]]},{"id":"GO:0030152","l":"bacteriocin biosynthetic process","na":1,"nb":9,"a":[["physiology/bacteriocin_production.html","bacteriocin production"]],"b":[["GO%3A0030152","bacteriocin biosynthetic process"],["NCBIfam%3ATIGR04067","Apre_1838 family putative sactipeptide bacteriocin"],["NCBIfam%3ATIGR04065","CLI_3235 family bacteriocin precursor"],["NCBIfam%3ATIGR04068","Cys-rich peptide radical SAM maturase CcpM"],["NCBIfam%3ATIGR04064","nif11-like peptide radical SAM maturase"],["NCBIfam%3ATIGR01295","PedC/BrcD family bacteriocin maturation disulfide isomerase"]]},{"id":"GO:0050421","l":"nitrite reductase (NO-forming) activity","na":1,"nb":9,"a":[["metabolism/denitrification.html","denitrification"]],"b":[["EC%3A1.7.2.1","nitrite reductase (NO-forming)"],["RHEA%3A15233","nitric oxide + Fe(III)-[cytochrome c] + H2O = Fe(II)-[cytochrome c] + nitrite + 2 H(+)"],["GO%3A0050421","nitrite reductase (NO-forming) activity"],["NCBIfam%3ATIGR02376","copper-containing nitrite reductase"],["MCSA%3A4","nitrite reductase (copper type)"],["MCSA%3A903","nitrite reductase (cytochrome cd1 type)"]]},{"id":"GO:0052716","l":"hydroquinone:oxygen oxidoreductase activity","na":1,"nb":9,"a":[["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["EC%3A1.10.3.2","laccase"],["RHEA%3A11276","4 hydroquinone + O2 = 4 benzosemiquinone + 2 H2O"],["GO%3A0052716","hydroquinone:oxygen oxidoreductase activity"],["MCSA%3A390","laccase"],["proteintraitsmech%3ABIOLIP_3DM","3DM-binding site"],["proteintraitsmech%3ABIOLIP_D2M","D2M-binding site"]]},{"id":"InterPro:IPR004090","l":"","na":1,"nb":9,"a":[["physiology/chemotaxis.html","chemotaxis"]],"b":[["Pfam%3APF05227","CHASE3 domain"],["Pfam%3APF02743","Cache domain"],["Pfam%3APF08269","Cache domain"],["Pfam%3APF18947","HAMP domain"],["Pfam%3APF18575","HAMP N-terminal domain 3"],["Pfam%3APF17909","Htr2 transmembrane domain"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":9,"a":[["morphology/motility.html","motility"]],"b":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF25954","CusB-like, beta-barrel domain"],["Pfam%3APF13438","Domain of unknown function (DUF4113)"],["Pfam%3APF03767","HAD superfamily, subfamily IIIB (Acid phosphatase)"],["Pfam%3APF03496","ADP-ribosyltransferase exoenzyme"]]},{"id":"UniProt:P09424","l":"","na":1,"nb":9,"a":[["physiology/chemoheterotrophic.html","chemoheterotrophic"]],"b":[["GO%3A0008926","mannitol-1-phosphate 5-dehydrogenase activity"],["GO%3A0019592","mannitol catabolic process"],["NCBIfam%3ANF002646","mannitol-1-phosphate 5-dehydrogenase"],["NCBIfam%3ANF002647","mannitol-1-phosphate 5-dehydrogenase"],["NCBIfam%3ANF002648","mannitol-1-phosphate 5-dehydrogenase"],["NCBIfam%3ANF002650","mannitol-1-phosphate 5-dehydrogenase"]]},{"id":"UniProt:P21458","l":"","na":1,"nb":9,"a":[["morphology/sporulation.html","sporulation"]],"b":[["CDD%3Acd01127","TrwB_TraG_TraD_VirD4"],["InterPro%3AIPR041027","FtsK alpha domain"],["InterPro%3AIPR002543","FtsK domain"],["InterPro%3AIPR018541","FtsK gamma domain"],["Pfam%3APF17854","FtsK alpha domain"],["Pfam%3APF09397","Ftsk gamma domain"]]},{"id":"CHEBI:17029","l":"chitin","na":1,"nb":8,"a":[["metabolism/chitinolysis.html","chitinolysis"]],"b":[["EC%3A2.4.1.16","chitin synthase"],["EC%3A3.5.1.41","chitin deacetylase"],["RHEA%3A85463","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-1)-N-acetyl-alpha-D-glucosamine"],["RHEA%3A50672","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-2) + N,N'-diacetylchitobiose"],["RHEA%3A85003","[(1->4)-N-acetyl-beta-D-glucosaminyl](n)-N-acetyl-alpha-D-glucosamine + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n) + N-acetyl-alpha-D-glucosamine"],["RHEA%3A10464","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + n H2O = chitosan + n acetate"]]},{"id":"GO:0003868","l":"4-hydroxyphenylpyruvate dioxygenase activity","na":1,"nb":8,"a":[["morphology/brown_pigmented.html","brown pigmented"]],"b":[["EC%3A1.13.11.27","4-hydroxyphenylpyruvate dioxygenase"],["RHEA%3A16189","3-(4-hydroxyphenyl)pyruvate + O2 = homogentisate + CO2"],["GO%3A0003868","4-hydroxyphenylpyruvate dioxygenase activity"],["NCBIfam%3ATIGR01263","4-hydroxyphenylpyruvate dioxygenase"],["proteintraitsmech%3ABIOLIP_869","869-binding site"],["proteintraitsmech%3ABIOLIP_AIY","AIY-binding site"]]},{"id":"GO:0006572","l":"L-tyrosine catabolic process","na":1,"nb":8,"a":[["morphology/brown_pigmented.html","brown pigmented"]],"b":[["GO%3A0006572","L-tyrosine catabolic process"],["Reactome%3AR-HSA-8963684","Tyrosine catabolism"],["NCBIfam%3ATIGR01263","4-hydroxyphenylpyruvate dioxygenase"],["NCBIfam%3ATIGR01266","fumarylacetoacetase"],["NCBIfam%3ATIGR01015","homogentisate 1,2-dioxygenase"],["NCBIfam%3ATIGR01262","maleylacetoacetate isomerase"]]},{"id":"GO:0008936","l":"nicotinamidase activity","na":1,"nb":8,"a":[["physiology/pyrazinamidase_activity.html","pyrazinamidase activity"]],"b":[["EC%3A3.5.1.19","nicotinamidase"],["RHEA%3A14545","nicotinamide + H2O = nicotinate + NH4(+)"],["GO%3A0008936","nicotinamidase activity"],["ARO%3A3004267","antibiotic resistant pncA"],["ARO%3A3003394","Mycobacterium tuberculosis pncA mutations conferring resistance to pyrazinamide"],["ARO%3A3003418","Pyrazinamide resistant pncA"]]},{"id":"GO:0009303","l":"rRNA transcription","na":1,"nb":8,"a":[["genomics/rrna_operon_copy_number.html","rRNA operon copy number"]],"b":[["GO%3A0042791","5S class rRNA transcription by RNA polymerase III"],["GO%3A0042790","nucleolar large rRNA transcription by RNA polymerase I"],["GO%3A0042794","plastid rRNA transcription"],["GO%3A0009303","rRNA transcription"],["PANTHER%3APTHR14440","DNA-DIRECTED RNA POLYMERASE I SUBUNIT RPA49"],["PANTHER%3APTHR10535","DNA-DIRECTED RNA POLYMERASES I, II, AND III SUBUNIT RPABC1"]]},{"id":"GO:0016049","l":"cell growth","na":1,"nb":8,"a":[["metabolism/metabolism.html","metabolism"]],"b":[["GO%3A0051211","anisotropic cell growth"],["GO%3A0016049","cell growth"],["GO%3A0048588","developmental cell growth"],["GO%3A0051210","isotropic cell growth"],["GO%3A0009825","multidimensional cell growth"],["GO%3A0007124","pseudohyphal growth"]]},{"id":"GO:0036374","l":"glutathione gamma-glutamate hydrolase","na":1,"nb":8,"a":[["physiology/gamma_glutamyltransferase_activity.html","gamma-glutamyltransferase activity"]],"b":[["EC%3A3.4.19.13","glutathione gamma-glutamate hydrolase"],["RHEA%3A28807","glutathione + H2O = L-cysteinylglycine + L-glutamate"],["ComplexPortal%3ACPX-325","Glutathione hydrolase complex"],["GO%3A0036374","glutathione gamma-glutamate hydrolase"],["NCBIfam%3ANF007187","gamma-glutamyltransferase"],["NCBIfam%3ATIGR00066","gamma-glutamyltransferase"]]},{"id":"GO:0042276","l":"error-prone translesion synthesis","na":1,"nb":8,"a":[["genomics/gc_content.html","GC content"]],"b":[["ComplexPortal%3ACPX-1091","DNA polymerase zeta complex"],["ComplexPortal%3ACPX-2426","DNA polymerase zeta complex"],["ComplexPortal%3ACPX-994","DNA polymerase zeta complex"],["GO%3A0042276","error-prone translesion synthesis"],["Reactome%3AR-HSA-5656121","Translesion synthesis by POLI"],["Reactome%3AR-HSA-5655862","Translesion synthesis by POLK"]]},{"id":"InterPro:IPR001492","l":"","na":1,"nb":8,"a":[["morphology/spirochete_shaped.html","spirochete shaped"]],"b":[["Pfam%3APF00700","Bacterial flagellin C-terminal helical region"],["Pfam%3APF08884","Flagellin D3 domain"],["Pfam%3APF21504","Flagellin, barrel domain"],["Pfam%3APF22370","Flagellin, beta sheet domain"],["PANTHER%3APTHR42792","FLAGELLIN"],["Pfam%3APF00669","Bacterial flagellin N-terminal helical region"]]},{"id":"InterPro:IPR050469","l":"","na":1,"nb":8,"a":[["ecology/biofilm_formation.html","biofilm formation"]],"b":[["Pfam%3APF17151","Periplasmic sensor domain"],["Pfam%3APF13682","Chemoreceptor zinc-binding domain"],["Pfam%3APF20975","DGC-associated coil"],["Pfam%3APF21118","DosC CZB-like middle domain"],["Pfam%3APF00990","Diguanylate cyclase, GGDEF domain"],["PANTHER%3APTHR45138","REGULATORY COMPONENTS OF SENSORY TRANSDUCTION SYSTEM"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":1,"nb":8,"a":[["other/catalase_negative.html","catalase negative"]],"b":[["Pfam%3APF01721","Class II bacteriocin"],["Pfam%3APF13700","Domain of unknown function (DUF4158)"],["Pfam%3APF07478","D-ala D-ala ligase C-terminus"],["Pfam%3APF01820","D-ala D-ala ligase N-terminus"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"],["PROSITE%3APS00843","D-alanine--D-alanine ligase signature 1"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":8,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["Pfam%3APF02927","Cellulase N-terminal ig-like domain"],["Pfam%3APF00404","Dockerin type I domain"],["PROSITE%3APS00448","Clostridium cellulosome enzymes repeated domain signature"],["PROSITE%3APS60032","Glycosyl hydrolases family 9 (GH9) active site signature 1"],["PROSITE%3APS00592","Glycosyl hydrolases family 9 (GH9) active site signature 2"],["PROSITE%3APS00698","Glycosyl hydrolases family 9 (GH9) active site signature 3"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK1622","na":1,"nb":8,"a":[["morphology/gliding.html","gliding"]],"b":[["Pfam%3APF27281","DevT C-terminal domain"],["Pfam%3APF27372","DevT N-terminal domain"],["Pfam%3APF17762","ParB HTH domain"],["Pfam%3APF01930","Domain of unknown function DUF83"],["Pfam%3APF09559","Cas6 Crispr"],["Pfam%3APF01905","CRISPR-associated negative auto-regulator DevR/Csa2"]]},{"id":"UniProt:P04189","l":"","na":1,"nb":8,"a":[["metabolism/proteolysis.html","proteolysis"]],"b":[["GO%3A0009274","peptidoglycan-based cell wall"],["GO%3A0004252","serine-type endopeptidase activity"],["GO%3A0009372","quorum sensing"],["GO%3A0140448","signaling receptor ligand precursor processing"],["InterPro%3AIPR023827","Peptidase S8, subtilisin, Asp-active site"],["InterPro%3AIPR022398","Peptidase S8, subtilisin, His-active site"]]},{"id":"UniProt:P0ABB4","l":"","na":8,"nb":1,"a":[["metabolism/metabolism.html","metabolism"],["metabolism/respiration.html","respiration"],["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"],["physiology/chemotrophic.html","chemotrophic"],["physiology/heterotrophic.html","heterotrophic"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"]]},{"id":"CHEBI:17593","l":"","na":1,"nb":7,"a":[["metabolism/starch_degradation.html","starch degradation"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.B.64","The Brucella Omp2 Porin (B-Omp2) Family"],["TCDB%3A1.B.26","The Cyclodextrin Porin (CDP) Family"],["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["TCDB%3A1.B.3","The Sugar Porin (SP) Family"]]},{"id":"CHEBI:30087","l":"","na":1,"nb":7,"a":[["metabolism/sulfur_oxidation.html","sulfur oxidation"]],"b":[["EC%3A1.14.20.7","2-oxoglutarate/L-arginine monooxygenase/decarboxylase (succinate- forming)"],["RHEA%3A31527","5-hydroxy-L-arginine = guanidine + L-glutamate 5-semialdehyde"],["RHEA%3A79843","6-hydroxy-L-homoarginine = guanidine + (S)-2-amino-6-oxohexanoate"],["RHEA%3A79567","guanidine + H2O = urea + NH4(+)"],["RHEA%3A73883","guanidine(out) = guanidine(in)"],["RHEA%3A31535","L-arginine + 2-oxoglutarate + O2 = guanidine + L-glutamate 5-semialdehyde + succinate + CO2"]]},{"id":"GO:0004411","l":"homogentisate 1,2-dioxygenase activity","na":1,"nb":7,"a":[["morphology/brown_pigmented.html","brown pigmented"]],"b":[["EC%3A1.13.11.5","homogentisate 1,2-dioxygenase"],["RHEA%3A15449","homogentisate + O2 = 4-maleylacetoacetate + H(+)"],["GO%3A0004411","homogentisate 1,2-dioxygenase activity"],["NCBIfam%3ATIGR01015","homogentisate 1,2-dioxygenase"],["NCBIfam%3ANF016125","homogentisate 1,2-dioxygenase domain-containing protein"],["MCSA%3A547","homogentisate 1,2-dioxygenase"]]},{"id":"GO:0004658","l":"propionyl-CoA carboxylase activity","na":1,"nb":7,"a":[["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"]],"b":[["EC%3A6.4.1.3","propionyl-CoA carboxylase"],["RHEA%3A23720","propanoyl-CoA + hydrogencarbonate + ATP = (S)-methylmalonyl-CoA + ADP + phosphate + H(+)"],["ComplexPortal%3ACPX-6169","Mitochondrial propionyl-CoA carboxylase complex"],["GO%3A0004658","propionyl-CoA carboxylase activity"],["NCBIfam%3ANF025192","acyl-CoA carboxylase epsilon subunit"],["Pfam%3APF13822","Acyl-CoA carboxylase epsilon subunit"]]},{"id":"GO:0008804","l":"carbamate kinase activity","na":1,"nb":7,"a":[["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["EC%3A2.7.2.2","carbamate kinase"],["RHEA%3A10152","hydrogencarbonate + NH4(+) + ATP = carbamoyl phosphate + ADP + H2O + H(+)"],["GO%3A0008804","carbamate kinase activity"],["NCBIfam%3ANF006926","carbamate kinase"],["NCBIfam%3ATIGR00746","carbamate kinase"],["MCSA%3A669","carbamate kinase"]]},{"id":"GO:0009424","l":"bacterial-type flagellum hook","na":1,"nb":7,"a":[["morphology/flagellated.html","flagellated"]],"b":[["GO%3A0009424","bacterial-type flagellum hook"],["NCBIfam%3ATIGR02492","flagellar hook-associated protein FlgK"],["NCBIfam%3ATIGR02550","flagellar hook-associated protein FlgL"],["NCBIfam%3ANF007514","flagellar hook length control protein FliK"],["InterPro%3AIPR003481","Flagellar hook-associated protein 2, N-terminal"],["NCBIfam%3ANF014518","flagellar cap protein FliD N-terminal domain-containing protein"]]},{"id":"GO:0009973","l":"adenylyl-sulfate reductase activity","na":1,"nb":7,"a":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["EC%3A1.8.99.2","adenylyl-sulfate reductase"],["RHEA%3A24240","sulfite + A + AMP + 2 H(+) = adenosine 5'-phosphosulfate + AH2"],["GO%3A0009973","adenylyl-sulfate reductase activity"],["NCBIfam%3ATIGR02061","adenylyl-sulfate reductase subunit alpha"],["NCBIfam%3ATIGR02060","adenylyl-sulfate reductase subunit beta"],["NCBIfam%3ATIGR02055","adenylylsulfate reductase, thioredoxin dependent"]]},{"id":"GO:0019420","l":"dissimilatory sulfate reduction","na":1,"nb":7,"a":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["GO%3A0019420","dissimilatory sulfate reduction"],["NCBIfam%3ATIGR02061","adenylyl-sulfate reductase subunit alpha"],["NCBIfam%3ATIGR02060","adenylyl-sulfate reductase subunit beta"],["NCBIfam%3ATIGR02066","dissimilatory-type sulfite reductase subunit beta"],["NCBIfam%3ANF045796","sulfate reduction electron transfer complex DsrMKJOP subunit DsrK"],["NCBIfam%3ANF045797","sulfate reduction electron transfer complex DsrMKJOP subunit DsrO"]]},{"id":"GO:0042744","l":"hydrogen peroxide catabolic process","na":1,"nb":7,"a":[["environment/aerotolerant.html","aerotolerant"]],"b":[["ComplexPortal%3ACPX-4862","Alkyl hydroperoxide reductase complex"],["ComplexPortal%3ACPX-4742","Catalase complex"],["ComplexPortal%3ACPX-4767","Catalase complex"],["ComplexPortal%3ACPX-4768","Catalase complex"],["GO%3A0033355","ascorbate glutathione cycle"],["GO%3A0042744","hydrogen peroxide catabolic process"]]},{"id":"InterPro:IPR018028","l":"","na":1,"nb":7,"a":[["physiology/catalase_activity.html","catalase activity"]],"b":[["Pfam%3APF18011","C-terminal domain found in long catalases"],["Pfam%3APF00199","Catalase"],["PANTHER%3APTHR11465","CATALASE"],["Pfam%3APF06628","Catalase-related immune-responsive"],["PRINTS%3APR00067","Catalase signature"],["PROSITE%3APS00437","Catalase proximal heme-ligand signature"]]},{"id":"InterPro:IPR045087","l":"","na":1,"nb":7,"a":[["metabolism/manganese_oxidation.html","manganese oxidation"]],"b":[["Pfam%3APF07731","Multicopper oxidase"],["Pfam%3APF07732","Multicopper oxidase"],["Pfam%3APF00394","Multicopper oxidase"],["PANTHER%3APTHR48267","CUPREDOXIN SUPERFAMILY PROTEIN"],["PANTHER%3APTHR11709","MULTI-COPPER OXIDASE"],["PROSITE%3APS00079","Multicopper oxidases signature 1"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":7,"nb":1,"a":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/copper_tolerant.html","copper tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["environment/metal_tolerant.html","metal tolerant"]],"b":[["TED%3AAF-A0A132HLN2-F1-model_v4_TED01","TED novel fold AF-A0A132HLN2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":1,"nb":7,"a":[["environment/microaerophilic.html","microaerophilic"]],"b":[["Pfam%3APF04439","Streptomycin adenylyltransferase"],["TED%3AAF-A0A696J2C3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A696J2C3-F1-model_v4_TED01"],["TED%3AAF-A0A825M6H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A825M6H4-F1-model_v4_TED01"],["TED%3AAF-A0A5T0SBG5-F1-model_v4_TED01","TED novel fold AF-A0A5T0SBG5-F1-model_v4_TED01"],["TED%3AAF-A0A698JVM3-F1-model_v4_TED03","TED novel fold AF-A0A698JVM3-F1-model_v4_TED03"],["TED%3AAF-A0A824N1N8-F1-model_v4_TED01","TED novel fold AF-A0A824N1N8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:264203","l":"Zymomonas mobilis subsp. mobilis (strain ATCC 31821 / ZM4 / CP4)","na":1,"nb":7,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"]],"b":[["Pfam%3APF13590","Domain of unknown function (DUF4136)"],["Pfam%3APF08436","1-deoxy-D-xylulose 5-phosphate reductoisomerase C-terminal domain"],["Pfam%3APF13288","DXP reductoisomerase C-terminal domain"],["Pfam%3APF02670","1-deoxy-D-xylulose 5-phosphate reductoisomerase"],["PROSITE%3APS01157","Class A bacterial acid phosphatases signature"],["PROSITE%3APS01320","Uncharacterized protein family UPF0067 signature"]]},{"id":"NCBITaxon:272623","l":"Lactococcus lactis subsp. lactis (strain IL1403)","na":1,"nb":7,"a":[["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]],"b":[["Pfam%3APF25935","LcnD-like, barrel-sandwich hybrid domain"],["Pfam%3APF27342","ComB N-terminal domain"],["Pfam%3APF06993","Protein of unknown function (DUF1304)"],["Pfam%3APF25887","LcnD-like, long helical bundle domain"],["Pfam%3APF13276","HTH-like domain"],["Pfam%3APF25940","LcnD-like, C-terminal domain"]]},{"id":"NCBITaxon:672","l":"Vibrio vulnificus","na":1,"nb":7,"a":[["physiology/viable_but_nonculturable_state.html","viable but nonculturable state"]],"b":[["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF08021","Siderophore-interacting FAD-binding domain"],["Pfam%3APF11575","FhuF 2Fe-2S C-terminal domain"],["Pfam%3APF27349","IcsB middle domain"],["Pfam%3APF21735","C-terminal repeat from RTX toxins"],["Pfam%3APF07634","RtxA repeat"]]},{"id":"NCBITaxon:837","l":"Porphyromonas gingivalis","na":1,"nb":7,"a":[["morphology/black_pigmented.html","black pigmented"]],"b":[["Pfam%3APF07675","Cleaved Adhesin Domain"],["Pfam%3APF22492","FimA4 pilin C-terminal domain"],["Pfam%3APF15495","Major fimbrial subunit protein type IV, Fimbrillin, C-terminal"],["Pfam%3APF26306","FimD protein third domain"],["Pfam%3APF27397","FimE C-terminal domain"],["Pfam%3APF10365","Domain of unknown function (DUF2436)"]]},{"id":"CHEBI:27592","l":"ectoine","na":6,"nb":1,"a":[["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"],["environment/nacl_delta_mid1.html","NaCl delta mid1"],["environment/nacl_optimum_mid2.html","NaCl optimum mid2"],["environment/nacl_range_mid2.html","NaCl range mid2"],["environment/slightly_halophilic.html","slightly halophilic"]],"b":[["proteintraitsmech%3ABIOLIP_4CS","4CS-binding site"]]},{"id":"CHEBI:29041","l":"","na":1,"nb":6,"a":[["metabolism/manganese_oxidation.html","manganese oxidation"]],"b":[["EC%3A1.11.1.13","manganese peroxidase"],["EC%3A1.11.1.16","versatile peroxidase"],["RHEA%3A22776","2 Mn(2+) + H2O2 + 2 H(+) = 2 Mn(3+) + 2 H2O"],["RHEA%3A52244","4 Mn(2+) + O2 + 4 H(+) = 4 Mn(3+) + 2 H2O"],["RHEA%3A52248","4 Mn(3+) + O2 + 6 H2O = 4 MnO2 + 12 H(+)"],["proteintraitsmech%3ABIOLIP_MN3","MN3-binding site"]]},{"id":"CHEBI:71578","l":"","na":6,"nb":1,"a":[["environment/nacl_delta_mid1.html","NaCl delta mid1"],["environment/nacl_delta_mid2.html","NaCl delta mid2"],["environment/nacl_optimum_low.html","NaCl optimum low"],["environment/nacl_range.html","NaCl range"],["environment/nacl_range_low.html","NaCl range low"],["environment/stenohaline.html","stenohaline"]],"b":[["proteintraitsmech%3ABIOLIP_2BA","2BA-binding site"]]},{"id":"GO:0009409","l":"response to cold","na":1,"nb":6,"a":[["physiology/cold_shock_response.html","cold shock response"]],"b":[["GO%3A0070417","cellular response to cold"],["GO%3A0009631","cold acclimation"],["GO%3A0009409","response to cold"],["GO%3A0050826","response to freezing"],["GO%3A0010048","vernalization response"],["NCBIfam%3ANF005952","kdo(2)-lipid IV(A) palmitoleoyltransferase"]]},{"id":"GO:0042279","l":"nitrite reductase (cytochrome, ammonia-forming) activity","na":1,"nb":6,"a":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]],"b":[["EC%3A1.7.2.2","nitrite reductase (cytochrome; ammonia-forming)"],["RHEA%3A13089","6 Fe(III)-[cytochrome c] + NH4(+) + 2 H2O = 6 Fe(II)-[cytochrome c] + nitrite + 8 H(+)"],["GO%3A0042279","nitrite reductase (cytochrome, ammonia-forming) activity"],["NCBIfam%3ANF014398","ammonia-forming cytochrome c nitrite reductase subunit c552"],["NCBIfam%3ATIGR03152","ammonia-forming nitrite reductase cytochrome c552 subunit"],["Pfam%3APF02335","Cytochrome c552"]]},{"id":"GO:0044409","l":"symbiont entry into host","na":1,"nb":6,"a":[["ecology/plant_pathogen.html","plant pathogen"]],"b":[["GO%3A0120326","appressorium-mediated entry into host"],["GO%3A0140717","entry into host through the stromata"],["GO%3A0035635","entry of bacterium into host cell"],["GO%3A0046718","symbiont entry into host cell"],["GO%3A0044409","symbiont entry into host"],["Reactome%3AR-HSA-173107","Binding and entry of HIV virion"]]},{"id":"METPO:1000845","l":"Acetogenesis","na":6,"nb":1,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"],["physiology/heterotrophic.html","heterotrophic"]],"b":[["METPO%3A1000845","Acetogenesis"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":1,"nb":6,"a":[["metabolism/starch_degradation.html","starch degradation"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF10779","Haemolysin XhlA"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF08181","DegQ (SacQ) family"],["Pfam%3APF08057","Erythromycin resistance leader peptide"],["Pfam%3APF14867","Lantibiotic alpha"]]},{"id":"NCBITaxon:272630","l":"Methylorubrum extorquens (strain ATCC 14718 / DSM 1338 / JCM 2805 / NCIMB 9133 / AM1)","na":1,"nb":6,"a":[["physiology/methylotrophic.html","methylotrophic"]],"b":[["Pfam%3APF07726","ATPase family associated with various cellular activities (AAA)"],["Pfam%3APF02741","FTR, proximal lobe"],["Pfam%3APF01913","Formylmethanofuran-tetrahydromethanopterin formyltransferase"],["Pfam%3APF10677","Protein of unknown function (DUF2490)"],["Pfam%3APF08714","Formaldehyde-activating enzyme (Fae)"],["PROSITE%3APS00363","Bacterial quinoprotein dehydrogenases signature 1"]]},{"id":"NCBITaxon:316401","l":"Escherichia coli O78:H11 (strain H10407 / ETEC)","na":1,"nb":6,"a":[["other/indole_test_positive.html","indole test positive"]],"b":[["Pfam%3APF26759","AcfD helical domain"],["Pfam%3APF04449","CS1 type fimbrial major subunit"],["Pfam%3APF13322","Domain of unknown function (DUF4092)"],["PROSITE%3APS01141","Bacterial type II secretion system protein C signature"],["Pfam%3APF16168","Adhesin of bacterial autotransporter system, probable stalk"],["Pfam%3APF24078","PIC/HAP1/IgA0 second beta-solenoid repeat region"]]},{"id":"UniProt:P0A6Y8","l":"","na":1,"nb":6,"a":[["physiology/heat_shock_response.html","heat shock response"]],"b":[["GO%3A0016989","sigma factor antagonist activity"],["GO%3A0043335","protein unfolding"],["GO%3A1990169","stress response to copper ion"],["NCBIfam%3ANF003520","Fe-S protein assembly chaperone HscA"],["NCBIfam%3ATIGR02350","molecular chaperone DnaK"],["CDD%3Acd10234","ASKHA_NBD_HSP70_DnaK-like"]]},{"id":"CHEBI:26672","l":"siderophore","na":1,"nb":5,"a":[["physiology/siderophore_production.html","siderophore production"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_26672","siderophore cofactor class"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.17","The Outer Membrane Factor (OMF) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]]},{"id":"GO:0004035","l":"alkaline phosphatase activity","na":1,"nb":5,"a":[["physiology/alkaline_phosphatase_activity.html","alkaline phosphatase activity"]],"b":[["EC%3A3.1.3.1","alkaline phosphatase"],["GO%3A0004035","alkaline phosphatase activity"],["NCBIfam%3ANF042991","alkaline phosphatase PafA"],["NCBIfam%3ANF058638","alkaline phosphatase PhoD"],["MCSA%3A44","alkaline phosphatase"]]},{"id":"GO:0004309","l":"exopolyphosphatase activity","na":1,"nb":5,"a":[["morphology/polyphosphate_granule.html","polyphosphate granule"]],"b":[["EC%3A3.6.1.11","exopolyphosphatase"],["RHEA%3A21528","[phosphate](n) + H2O = [phosphate](n-1) + phosphate + H(+)"],["GO%3A0004309","exopolyphosphatase activity"],["NCBIfam%3ATIGR03706","exopolyphosphatase"],["InterPro%3AIPR022371","Exopolyphosphatase"]]},{"id":"GO:0004457","l":"lactate dehydrogenase activity","na":1,"nb":5,"a":[["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]],"b":[["GO%3A0047809","D-lactate dehydrogenase activity"],["GO%3A0140171","L-lactate dehydrogenase activity"],["GO%3A0004457","lactate dehydrogenase activity"],["NCBIfam%3ANF033901","FMN-dependent L-lactate dehydrogenase LldD"],["NCBIfam%3ANF045670","L-lactate dehydrogenase (quinone) large subunit LdhH"]]},{"id":"GO:0006829","l":"zinc ion transport","na":1,"nb":5,"a":[["environment/zinc_tolerant.html","zinc tolerant"]],"b":[["GO%3A0071577","zinc ion transmembrane transport"],["GO%3A0006829","zinc ion transport"],["NCBIfam%3ANF002923","CDF family zinc transporter ZitB"],["NCBIfam%3ANF007090","zinc ABC transporter ATP-binding protein ZnuC"],["NCBIfam%3ANF007091","zinc ABC transporter substrate-binding protein ZnuA"]]},{"id":"GO:0008861","l":"formate C-acetyltransferase activity","na":1,"nb":5,"a":[["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"]],"b":[["EC%3A2.3.1.54","formate C-acetyltransferase"],["RHEA%3A11844","formate + acetyl-CoA = pyruvate + CoA"],["GO%3A0008861","formate C-acetyltransferase activity"],["NCBIfam%3ATIGR01255","formate C-acetyltransferase"],["MCSA%3A30","formate C-acetyltransferase"]]},{"id":"GO:0016692","l":"NADH peroxidase activity","na":1,"nb":5,"a":[["environment/aerotolerant.html","aerotolerant"]],"b":[["EC%3A1.11.1.1","NADH peroxidase"],["RHEA%3A18509","H2O2 + NADH + H(+) = NAD(+) + 2 H2O"],["GO%3A0016692","NADH peroxidase activity"],["NCBIfam%3ANF045767","rubrerythrin"],["MCSA%3A895","NADH peroxidase"]]},{"id":"GO:0016920","l":"pyroglutamyl-peptidase activity","na":1,"nb":5,"a":[["physiology/pyrrolidonyl_arylamidase_activity.html","pyrrolidonyl arylamidase activity"]],"b":[["EC%3A3.4.19.3","pyroglutamyl-peptidase I"],["EC%3A3.4.19.6","pyroglutamyl-peptidase II"],["GO%3A0016920","pyroglutamyl-peptidase activity"],["NCBIfam%3ATIGR00504","pyroglutamyl-peptidase I"],["MCSA%3A633","pyroglutamyl-peptidase I"]]},{"id":"GO:0016990","l":"arginine deiminase activity","na":1,"nb":5,"a":[["physiology/arginine_dihydrolase_activity.html","arginine dihydrolase activity"]],"b":[["EC%3A3.5.3.6","arginine deiminase"],["RHEA%3A19597","L-arginine + H2O = L-citrulline + NH4(+)"],["GO%3A0016990","arginine deiminase activity"],["NCBIfam%3ANF002381","arginine deiminase"],["NCBIfam%3ATIGR01078","arginine deiminase"]]},{"id":"GO:0030420","l":"establishment of competence for transformation","na":1,"nb":5,"a":[["physiology/natural_competence.html","natural competence"]],"b":[["GO%3A0030420","establishment of competence for transformation"],["NCBIfam%3ANF008580","ComEC family protein"],["NCBIfam%3ANF040999","competence type IV pilus major pilin ComGC"],["NCBIfam%3ANF018087","competence protein ComK"],["Pfam%3APF06338","ComK protein"]]},{"id":"GO:0030634","l":"carbon fixation by acetyl-CoA pathway","na":5,"nb":1,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"],["physiology/autotrophic.html","autotrophic"]],"b":[["GO%3A0030634","carbon fixation by acetyl-CoA pathway"]]},{"id":"GO:0044096","l":"type IV pilus","na":5,"nb":1,"a":[["ecology/predatory_bacterium.html","predatory bacterium"],["morphology/motile.html","motile"],["morphology/motility.html","motility"],["morphology/twitching_motility.html","twitching motility"],["morphology/type_iv_pilus.html","type IV pilus"]],"b":[["GO%3A0044096","type IV pilus"]]},{"id":"GO:0047646","l":"alkanal monooxygenase (FMN-linked) activity","na":1,"nb":5,"a":[["physiology/bioluminescence.html","bioluminescence"]],"b":[["EC%3A1.14.14.3","bacterial luciferase"],["RHEA%3A17181","a long-chain fatty aldehyde + FMNH2 + O2 = a long-chain fatty acid + hnu + FMN + H2O + 2 H(+)"],["GO%3A0047646","alkanal monooxygenase (FMN-linked) activity"],["InterPro%3AIPR018235","Bacterial luciferase, conserved site"],["MCSA%3A132","alkanal monooxygenase (FMN-linked)"]]},{"id":"GO:0160097","l":"reverse gyrase activity","na":5,"nb":1,"a":[["environment/extreme_hyperthermophilic.html","extreme hyperthermophilic"],["environment/hyperthermophilic.html","hyperthermophilic"],["environment/temperature_optimum_high.html","temperature optimum high"],["environment/temperature_range_high.html","temperature range high"],["environment/thermophilic.html","thermophilic"]],"b":[["GO%3A0160097","reverse gyrase activity"]]},{"id":"InterPro:IPR001425","l":"","na":1,"nb":5,"a":[["physiology/phototrophic.html","phototrophic"]],"b":[["Pfam%3APF01036","Bacteriorhodopsin-like protein"],["PANTHER%3APTHR28286","Archaeal/bacterial/fungal rhodopsins"],["PRINTS%3APR00251","Bacterial opsin signature"],["PROSITE%3APS00950","Bacterial rhodopsins signature 1"],["PROSITE%3APS00327","Bacterial rhodopsins retinal binding site"]]},{"id":"InterPro:IPR006314","l":"","na":1,"nb":5,"a":[["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["Pfam%3APF21105","DyP dimeric alpha+beta barrel domain"],["Pfam%3APF20628","Dyp-type peroxidase, C-terminal"],["Pfam%3APF04261","Dyp-type peroxidase, N-terminal"],["PANTHER%3APTHR30521","DEFERROCHELATASE/PEROXIDASE"],["Pfam%3APF10518","TAT (twin-arginine translocation) pathway signal sequence"]]},{"id":"InterPro:IPR013765","l":"","na":1,"nb":5,"a":[["physiology/natural_competence.html","natural competence"]],"b":[["HAMAP%3AMF_00268","Protein RecA [recA]"],["PANTHER%3APTHR45900","RECA"],["Pfam%3APF14890","Intein splicing domain"],["PRINTS%3APR00142","RecA protein signature"],["PROSITE%3APS00321","recA signature"]]},{"id":"METPO:1000844","l":"Methanogenesis","na":5,"nb":1,"a":[["metabolism/acetoclastic_methanogenesis.html","acetoclastic methanogenesis"],["metabolism/hydrogenotrophic_methanogenesis.html","hydrogenotrophic methanogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/methyl_based_methanogenesis.html","methyl-based methanogenesis"],["metabolism/syntrophy.html","Syntrophy"]],"b":[["METPO%3A1000844","Methanogenesis"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":5,"nb":1,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"],["physiology/hydrogenotrophic.html","hydrogenotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"]],"b":[["TED%3AAF-A0A367PA30-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A367PA30-F1-model_v4_TED01"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":1,"nb":5,"a":[["morphology/gliding.html","gliding"]],"b":[["TED%3AAF-A0A4Y6CF56-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y6CF56-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6CNZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Y6CNZ1-F1-model_v4_TED02"],["TED%3AAF-A0A7Y4IIX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4IIX4-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6B7F9-F1-model_v4_TED01","TED novel fold AF-A0A4Y6B7F9-F1-model_v4_TED01"],["TED%3AAF-A0A7Y4IR70-F1-model_v4_TED01","TED novel fold AF-A0A7Y4IR70-F1-model_v4_TED01"]]},{"id":"NCBITaxon:435","l":"Acetobacter aceti","na":1,"nb":5,"a":[["environment/acidotolerant.html","acidotolerant"]],"b":[["Pfam%3APF13336","Acetyl-CoA hydrolase/transferase C-terminal domain"],["Pfam%3APF02550","Acetyl-CoA hydrolase/transferase N-terminal domain"],["Pfam%3APF13442","Cytochrome C oxidase, cbb3-type, subunit III"],["Pfam%3APF06481","COX Aromatic Rich Motif"],["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"]]},{"id":"NCBITaxon:959","l":"Bdellovibrio bacteriovorus","na":1,"nb":5,"a":[["ecology/predatory_bacterium.html","predatory bacterium"]],"b":[["TED%3AAF-A0A150WJL7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A150WJL7-F1-model_v4_TED01"],["TED%3AAF-A0A150WK21-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A150WK21-F1-model_v4_TED01"],["TED%3AAF-A0A1Z3N7G2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Z3N7G2-F1-model_v4_TED02"],["TED%3AAF-A0A150WR18-F1-model_v4_TED04","TED novel fold AF-A0A150WR18-F1-model_v4_TED04"],["TED%3AAF-A0A162GEG0-F1-model_v4_TED02","TED novel fold AF-A0A162GEG0-F1-model_v4_TED02"]]},{"id":"UniProt:P00807","l":"","na":1,"nb":5,"a":[["physiology/antibiotic_resistance.html","antibiotic resistance"]],"b":[["proteintraitsmech%3AMEROPS_CLEAVAGE_S26_016","SpsB signal peptidase cleavage specificity"],["Pfam%3APF08139","Prokaryotic membrane lipoprotein lipid attachment site"],["proteintraitsmech%3ABIOLIP_CEM","CEM-binding site"],["proteintraitsmech%3ABIOLIP_CO3","CO3-binding site"],["proteintraitsmech%3ABIOLIP_TEM","TEM-binding site"]]},{"id":"UniProt:P0A953","l":"","na":1,"nb":5,"a":[["physiology/homeoviscous_adaptation.html","homeoviscous adaptation"]],"b":[["GO%3A1903966","monounsaturated fatty acid biosynthetic process"],["NCBIfam%3ANF005935","beta-ketoacyl-ACP synthase I"],["CDD%3Acd00834","KAS_I_II"],["MCSA%3A292","beta-ketoacyl-[acyl carrier protein] synthase I"],["proteintraitsmech%3ABIOLIP_6W5","6W5-binding site"]]},{"id":"UniProt:P0ACQ4","l":"","na":1,"nb":5,"a":[["physiology/oxidative_stress_response.html","oxidative stress response"]],"b":[["GO%3A2000142","regulation of DNA-templated transcription initiation"],["GO%3A0051409","response to nitrosative stress"],["NCBIfam%3ANF008361","DNA-binding transcriptional regulator OxyR"],["CDD%3Acd08411","PBP2_OxyR"],["Pfam%3APF00126","Bacterial regulatory helix-turn-helix protein, lysR family"]]},{"id":"UniProt:Q99ZW2","l":"","na":1,"nb":5,"a":[["genomics/crispr_cas_system.html","CRISPR-Cas system"]],"b":[["Pfam%3APF16595","PAM-interacting domain of CRISPR-associated endonuclease Cas9"],["Pfam%3APF22702","Cas9 RuvC domain"],["Pfam%3APF13395","HNH endonuclease"],["Pfam%3APF16593","Bridge helix of CRISPR-associated endonuclease Cas9"],["Pfam%3APF16592","REC lobe of CRISPR-associated endonuclease Cas9"]]},{"id":"CHEBI:16856","l":"glutathione","na":1,"nb":4,"a":[["environment/zinc_tolerant.html","zinc tolerant"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16856","requires glutathione"],["MCSA%3A359","lactoglutathione lyase"],["MCSA%3A32","lactoylglutathione lyase"],["proteintraitsmech%3ABIOLIP_GSH","GSH-binding site"]]},{"id":"CHEBI:25195","l":"","na":1,"nb":4,"a":[["environment/mercury_tolerant.html","mercury tolerant"]],"b":[["proteintraitsmech%3AMETALPDB_HG_DINUCLEAR","dinuclear mercury site"],["proteintraitsmech%3AMETALPDB_HG_MONONUCLEAR","mononuclear mercury site"],["proteintraitsmech%3AMETALPDB_HG_TETRANUCLEAR","tetranuclear mercury site"],["proteintraitsmech%3AMETALPDB_HG_TRINUCLEAR","trinuclear mercury site"]]},{"id":"CHEBI:38201","l":"","na":4,"nb":1,"a":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["physiology/aerobic_anoxygenic_phototrophy.html","aerobic anoxygenic phototrophy"],["physiology/photoheterotrophic.html","photoheterotrophic"],["physiology/phototrophic.html","phototrophic"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:64709","l":"organic acid","na":1,"nb":4,"a":[["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"]],"b":[["TCDB%3A2.A.28","The Bile Acid:Na+ Symporter (BASS) Family"],["TCDB%3A2.A.23","The Dicarboxylate/Amino Acid:Cation (Na+ or H+) Symporter (DAACS) Family"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.25","The Outer Membrane Porin (Opr) Family"]]},{"id":"GO:0004503","l":"tyrosinase activity","na":1,"nb":4,"a":[["morphology/black_pigmented.html","black pigmented"]],"b":[["EC%3A1.14.18.1","tyrosinase"],["RHEA%3A18117","L-tyrosine + O2 = L-dopaquinone + H2O"],["GO%3A0004503","tyrosinase activity"],["NCBIfam%3ANF047834","tyrosinase MelC2"]]},{"id":"GO:0005575","l":"cellular_component","na":1,"nb":4,"a":[["upper/biological_process.html","biological process"]],"b":[["GO%3A0110165","cellular anatomical structure"],["GO%3A0005575","cellular_component"],["GO%3A0032991","protein-containing complex"],["GO%3A0044423","virion component"]]},{"id":"GO:0008923","l":"lysine decarboxylase activity","na":1,"nb":4,"a":[["physiology/lysine_decarboxylase_activity.html","lysine decarboxylase activity"]],"b":[["EC%3A4.1.1.18","lysine decarboxylase"],["RHEA%3A22352","L-lysine + H(+) = cadaverine + CO2"],["GO%3A0008923","lysine decarboxylase activity"],["proteintraitsmech%3ABIOLIP_G4P","G4P-binding site"]]},{"id":"GO:0015386","l":"potassium:proton antiporter activity","na":1,"nb":4,"a":[["environment/ph_optimum_mid2.html","pH optimum mid2"]],"b":[["RHEA%3A29467","K(+)(in) + H(+)(out) = K(+)(out) + H(+)(in)"],["ComplexPortal%3ACPX-3090","Glutathione-regulated potassium-efflux system KefB-KefG complex"],["ComplexPortal%3ACPX-2543","Glutathione-regulated potassium-efflux system KefC-KefF complex"],["GO%3A0015386","potassium:proton antiporter activity"]]},{"id":"GO:0015946","l":"methanol oxidation","na":1,"nb":4,"a":[["metabolism/methanol_oxidation.html","methanol oxidation"]],"b":[["GO%3A0015946","methanol oxidation"],["NCBIfam%3ANF014379","Methanol dehydrogenase beta subunit"],["Pfam%3APF02315","Methanol dehydrogenase beta subunit"],["InterPro%3AIPR036557","Methanol dehydrogenase, beta subunit superfamily"]]},{"id":"GO:0016285","l":"alanyl aminopeptidase activity","na":1,"nb":4,"a":[["physiology/alanine_arylamidase_activity.html","alanine arylamidase activity"]],"b":[["EC%3A3.4.11.14","cytosol alanyl aminopeptidase"],["EC%3A3.4.11.2","membrane alanyl aminopeptidase"],["GO%3A0016285","alanyl aminopeptidase activity"],["proteintraitsmech%3ABIOLIP_37E","37E-binding site"]]},{"id":"GO:0019253","l":"reductive pentose-phosphate cycle","na":4,"nb":1,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["physiology/autotrophic.html","autotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["GO%3A0019253","reductive pentose-phosphate cycle"]]},{"id":"GO:0019333","l":"denitrification pathway","na":1,"nb":4,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"]],"b":[["GO%3A0019333","denitrification pathway"],["NCBIfam%3ATIGR02161","periplasmic nitrate (or nitrite) reductase c-type cytochrome, NapC/NirT family"],["NCBIfam%3ATIGR04244","TAT-dependent nitrous-oxide reductase"],["NCBIfam%3ATIGR04246","Sec-dependent nitrous-oxide reductase"]]},{"id":"GO:0019418","l":"sulfide oxidation","na":1,"nb":4,"a":[["morphology/intracellular_inclusion.html","intracellular inclusion"]],"b":[["GO%3A0019418","sulfide oxidation"],["Reactome%3AR-HSA-1614517","Sulfide oxidation to sulfate"],["NCBIfam%3ATIGR02061","adenylyl-sulfate reductase subunit alpha"],["NCBIfam%3ATIGR02060","adenylyl-sulfate reductase subunit beta"]]},{"id":"GO:0019746","l":"hopanoid biosynthetic process","na":1,"nb":4,"a":[["environment/facultatively_acidophilic.html","facultatively acidophilic"]],"b":[["GO%3A0019746","hopanoid biosynthetic process"],["proteintraitsmech%3ASEED_SUBSYSTEM_Hopanoid_biosynthesis","Hopanoid biosynthesis"],["NCBIfam%3ATIGR04367","hopanoid C-3 methylase HpnR"],["NCBIfam%3ATIGR01507","squalene--hopene cyclase"]]},{"id":"GO:0032196","l":"transposition","na":1,"nb":4,"a":[["genomics/mobile_genetic_element.html","mobile genetic element"]],"b":[["GO%3A0006313","DNA transposition"],["GO%3A0032197","retrotransposition"],["GO%3A0032196","transposition"],["NCBIfam%3ATIGR03783","TraG family conjugative transposon ATPase"]]},{"id":"GO:0033740","l":"hydroxylamine oxidoreductase activity","na":1,"nb":4,"a":[["physiology/lithotrophic.html","lithotrophic"]],"b":[["EC%3A1.7.2.9","hydroxylamine oxidase"],["RHEA%3A45036","hydroxylamine + 3 Fe(III)-[cytochrome c] = nitric oxide + 3 Fe(II)-[cytochrome c] + 3 H(+)"],["GO%3A0033740","hydroxylamine oxidoreductase activity"],["proteintraitsmech%3ABIOLIP_HG1","HG1-binding site"]]},{"id":"GO:0033755","l":"sulfur oxygenase/reductase activity","na":1,"nb":4,"a":[["metabolism/disproportionation.html","Disproportionation"]],"b":[["EC%3A1.13.11.55","sulfur oxygenase/reductase"],["RHEA%3A13957","4 sulfur + O2 + 4 H2O = 2 hydrogen sulfide + 2 sulfite + 6 H(+)"],["GO%3A0033755","sulfur oxygenase/reductase activity"],["NCBIfam%3ANF047630","sulfur oxygenase/reductase"]]},{"id":"GO:0044569","l":"[Ni-Fe] hydrogenase complex","na":1,"nb":4,"a":[["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["ComplexPortal%3ACPX-281","Hydrogenase-1 complex"],["ComplexPortal%3ACPX-282","Hydrogenase-2 complex"],["GO%3A0044569","[Ni-Fe] hydrogenase complex"],["NCBIfam%3ANF053600","membrane-bound hydrogenase complex subunit MbhI"]]},{"id":"GO:0045436","l":"lycopene beta cyclase activity","na":1,"nb":4,"a":[["morphology/orange_pigmented.html","orange pigmented"]],"b":[["RHEA%3A32219","all-trans-lycopene = gamma-carotene"],["GO%3A0045436","lycopene beta cyclase activity"],["NCBIfam%3ATIGR01789","lycopene beta-cyclase CrtY"],["NCBIfam%3ANF045687","lycopene beta cyclase"]]},{"id":"GO:0047154","l":"methylmalonyl-CoA carboxytransferase activity","na":1,"nb":4,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["EC%3A2.1.3.1","methylmalonyl-CoA carboxytransferase"],["RHEA%3A20764","(S)-methylmalonyl-CoA + pyruvate = propanoyl-CoA + oxaloacetate"],["GO%3A0047154","methylmalonyl-CoA carboxytransferase activity"],["proteintraitsmech%3ABIOLIP_MCA","MCA-binding site"]]},{"id":"GO:0050605","l":"superoxide reductase activity","na":1,"nb":4,"a":[["environment/microaerotolerant.html","microaerotolerant"]],"b":[["EC%3A1.15.1.2","superoxide reductase"],["RHEA%3A21324","reduced [rubredoxin] + superoxide + 2 H(+) = oxidized [rubredoxin] + H2O2"],["GO%3A0050605","superoxide reductase activity"],["MCSA%3A660","superoxide reductase"]]},{"id":"InterPro:IPR005936","l":"","na":1,"nb":4,"a":[["environment/temperature_optimum_mid4.html","temperature optimum mid4"]],"b":[["HAMAP%3AMF_01458","ATP-dependent zinc metalloprotease FtsH [ftsH]"],["Pfam%3APF06480","FtsH Extracellular"],["PROSITE%3APS00674","AAA-protein family signature"],["Pfam%3APF21232","Yme1-like, N-terminal"]]},{"id":"InterPro:IPR005977","l":"","na":1,"nb":4,"a":[["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["HAMAP%3AMF_00533","Nitrogenase iron protein [nifH]"],["PROSITE%3APS00746","NifH/frxC family signature 1"],["PROSITE%3APS00692","NifH/frxC family signature 2"]]},{"id":"InterPro:IPR051315","l":"","na":1,"nb":4,"a":[["physiology/chemotaxis.html","chemotaxis"]],"b":[["Pfam%3APF01584","CheW-like domain"],["Pfam%3APF09078","CheY binding"],["Pfam%3APF02895","Signal transducing histidine kinase, homodimeric domain"],["PANTHER%3APTHR43395","SENSOR HISTIDINE KINASE CHEA"]]},{"id":"METPO:1000620","l":"halophilic","na":1,"nb":4,"a":[["environment/halophilic.html","halophilic"]],"b":[["METPO%3A1000628","extremely halophilic"],["METPO%3A1000620","halophilic"],["METPO%3A1000623","moderately halophilic"],["METPO%3A1000625","slightly halophilic"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":1,"nb":4,"a":[["physiology/photoheterotrophic.html","photoheterotrophic"]],"b":[["TED%3AAF-A0A7W3UB61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W3UB61-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F4B3-F1-model_v4_TED01","TED novel fold AF-A0A0D7F4B3-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F6R4-F1-model_v4_TED01","TED novel fold AF-A0A0D7F6R4-F1-model_v4_TED01"],["TED%3AAF-A0A7W3YI15-F1-model_v4_TED02","TED novel fold AF-A0A7W3YI15-F1-model_v4_TED02"]]},{"id":"NCBITaxon:258594","l":"Rhodopseudomonas palustris CGA009","na":1,"nb":4,"a":[["physiology/photoorganoheterotrophic.html","photoorganoheterotrophic"]],"b":[["Pfam%3APF01322","Cytochrome C'"],["PROSITE%3APS00969","Antenna complexes beta subunits signature"],["PROSITE%3APS00936","Ribosomal protein L35 signature"],["PROSITE%3APS01181","Ribosomal protein S21 signature"]]},{"id":"NCBITaxon:2822231","l":"Phanerodontia chrysosporium","na":1,"nb":4,"a":[["metabolism/manganese_oxidation.html","manganese oxidation"]],"b":[["Pfam%3APF18637","Aldos-2-ulose dehydratase/isomerase (AUDH) Cupin domain"],["Pfam%3APF16010","Cytochrome domain of cellobiose dehydrogenase"],["PROSITE%3APS00623","GMC oxidoreductases signature 1"],["Pfam%3APF22301","Aldos-2-ulose dehydratase, beta-propeller domain"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":1,"nb":4,"a":[["ecology/plant_pathogen.html","plant pathogen"]],"b":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"],["TED%3AAF-A0A085UKV7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085UKV7-F1-model_v4_TED01"],["TED%3AAF-A0A4R6IU28-F1-model_v4_TED02","TED novel fold AF-A0A4R6IU28-F1-model_v4_TED02"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans Pd1222","na":1,"nb":4,"a":[["physiology/mixotrophic.html","mixotrophic"]],"b":[["Pfam%3APF27518","Heme exporter protein C"],["Pfam%3APF22039","Imidazolonepropionase-like composite domain, bacteria"],["PROSITE%3APS01181","Ribosomal protein S21 signature"],["Pfam%3APF02239","Cytochrome D1 heme domain"]]},{"id":"NCBITaxon:55601","l":"Vibrio anguillarum","na":1,"nb":4,"a":[["genomics/sspabcd_sspfgh_system.html","SspABCD-SspFGH system"]],"b":[["Pfam%3APF17327","Acyl homoserine lactone synthase"],["PROSITE%3APS00949","Autoinducer synthase family signature"],["TED%3AAF-A0A241NLV5-F1-model_v4_TED03","TED novel fold AF-A0A241NLV5-F1-model_v4_TED03"],["TED%3AAF-A0A290PUC4-F1-model_v4_TED02","TED novel fold AF-A0A290PUC4-F1-model_v4_TED02"]]},{"id":"UniProt:P00459","l":"","na":1,"nb":4,"a":[["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["PROSITE%3APS00746","NifH/frxC family signature 1"],["PROSITE%3APS00692","NifH/frxC family signature 2"],["MCSA%3A212","nitrogenase"]]},{"id":"UniProt:P0C2S5","l":"","na":1,"nb":4,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["EC%3A3.2.1.176","cellulose 1,4-beta-cellobiosidase (reducing end)"],["Pfam%3APF00404","Dockerin type I domain"],["PROSITE%3APS00448","Clostridium cellulosome enzymes repeated domain signature"],["Pfam%3APF02011","Glycosyl hydrolase family 48"]]},{"id":"UniProt:P16033","l":"","na":4,"nb":1,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["proteintraitsmech%3ABIOLIP_PHO","PHO-binding site"]]},{"id":"CHEBI:16170","l":"mercury(0)","na":1,"nb":3,"a":[["environment/mercury_tolerant.html","mercury tolerant"]],"b":[["EC%3A1.16.1.1","mercury(II) reductase"],["RHEA%3A23856","Hg + NADP(+) + H(+) = Hg(2+) + NADPH"],["MCSA%3A277","mercury(II) reductase"]]},{"id":"CHEBI:17203","l":"L-proline","na":1,"nb":3,"a":[["environment/non_halophilic.html","non halophilic"]],"b":[["MCSA%3A403","astacin"],["MCSA%3A379","Xaa-Pro aminopeptidase"],["proteintraitsmech%3ABIOLIP_PRO","PRO-binding site"]]},{"id":"CHEBI:17513","l":"","na":3,"nb":1,"a":[["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/fermentation.html","Fermentation"],["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"]],"b":[["MCSA%3A119","pyruvate:ferredoxin oxidoreducatse"]]},{"id":"CHEBI:49432","l":"","na":1,"nb":3,"a":[["environment/moderately_halophilic.html","moderately halophilic"]],"b":[["TCDB%3A2.A.15","The Betaine/Carnitine/Choline Transporter (BCCT) Family"],["TCDB%3A2.A.56","The Tripartite ATP-independent Periplasmic Transporter (TRAP-T) Family"],["proteintraitsmech%3ABIOLIP_6CS","6CS-binding site"]]},{"id":"CHEBI:50699","l":"oligosaccharide","na":1,"nb":3,"a":[["metabolism/biopolymer_degradation.html","biopolymer degradation"]],"b":[["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"]]},{"id":"CHEBI:72695","l":"","na":3,"nb":1,"a":[["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"],["physiology/heterotrophic.html","heterotrophic"]],"b":[["TCDB%3A1.A.24","The Gap Junction-forming Connexin (Connexin) Family"]]},{"id":"GO:0009505","l":"plant-type cell wall","na":1,"nb":3,"a":[["ecology/plant_pathogen.html","plant pathogen"]],"b":[["GO%3A0009505","plant-type cell wall"],["GO%3A0009530","primary cell wall"],["GO%3A0009531","secondary cell wall"]]},{"id":"GO:0016160","l":"amylase activity","na":1,"nb":3,"a":[["physiology/amylase_activity.html","amylase activity"]],"b":[["GO%3A0004556","alpha-amylase activity"],["GO%3A0016160","amylase activity"],["GO%3A0016161","beta-amylase activity"]]},{"id":"GO:0016690","l":"diarylpropane peroxidase activity","na":1,"nb":3,"a":[["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["EC%3A1.11.1.14","lignin peroxidase"],["RHEA%3A30271","2 (3,4-dimethoxyphenyl)methanol + H2O2 = 2 (3,4-dimethoxyphenyl)methanol radical + 2 H2O"],["GO%3A0016690","diarylpropane peroxidase activity"]]},{"id":"GO:0042763","l":"intracellular immature spore","na":1,"nb":3,"a":[["morphology/spore_forming.html","spore forming"]],"b":[["GO%3A0042764","ascospore-type prospore"],["GO%3A0042601","endospore-forming forespore"],["GO%3A0042763","intracellular immature spore"]]},{"id":"GO:0043158","l":"heterocyst development","na":1,"nb":3,"a":[["morphology/heterocyst.html","heterocyst"]],"b":[["GO%3A0043158","heterocyst development"],["NCBIfam%3ANF045514","heterocyst development glycosyltransferase HepC"],["NCBIfam%3ANF015533","Peptidase family S48"]]},{"id":"GO:0044297","l":"cell body","na":1,"nb":3,"a":[["morphology/spiral_shaped.html","spiral shaped"]],"b":[["GO%3A0044297","cell body"],["GO%3A0043025","neuronal cell body"],["GO%3A1990017","somatic portion of tanycyte"]]},{"id":"GO:0050137","l":"NADPH peroxidase activity","na":1,"nb":3,"a":[["environment/aerotolerant.html","aerotolerant"]],"b":[["EC%3A1.11.1.2","NADPH peroxidase"],["RHEA%3A15173","H2O2 + NADPH + H(+) = NADP(+) + 2 H2O"],["GO%3A0050137","NADPH peroxidase activity"]]},{"id":"GO:0102036","l":"methyltetrahydrofolate:corrinoid/iron-sulfur protein methyltransferase activity","na":1,"nb":3,"a":[["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"]],"b":[["EC%3A2.1.1.258","5-methyltetrahydrofolate:corrinoid/iron-sulfur protein Co-methyltransferase"],["RHEA%3A45200","methyl-Co(III)-[corrinoid Fe-S protein] + (6S)-5,6,7,8-tetrahydrofolate = Co(I)-[corrinoid Fe-S protein] + (6S)-5-methyl-5,6,7,8-tetrahydrofolate + H(+)"],["GO%3A0102036","methyltetrahydrofolate:corrinoid/iron-sulfur protein methyltransferase activity"]]},{"id":"InterPro:IPR005001","l":"","na":1,"nb":3,"a":[["physiology/stress_response.html","stress response"]],"b":[["Pfam%3APF17209","Hfq protein"],["HAMAP%3AMF_00436","RNA-binding protein Hfq [hfq]"],["PANTHER%3APTHR34772","RNA-BINDING PROTEIN HFQ"]]},{"id":"InterPro:IPR020823","l":"","na":1,"nb":3,"a":[["morphology/sarcina_arrangement.html","sarcina arrangement"]],"b":[["Pfam%3APF14450","Cell division protein FtsA"],["HAMAP%3AMF_02033","Cell division protein FtsA [ftsA]"],["Pfam%3APF11983","Cell division protein FtsA, C-terminal"]]},{"id":"InterPro:IPR052028","l":"","na":1,"nb":3,"a":[["physiology/persister_cell_formation.html","persister cell formation"]],"b":[["Pfam%3APF13657","HipA N-terminal domain"],["Pfam%3APF07804","HipA-like C-terminal domain"],["PANTHER%3APTHR37419","SERINE/THREONINE-PROTEIN KINASE TOXIN HIPA"]]},{"id":"InterPro:IPR052159","l":"","na":1,"nb":3,"a":[["physiology/natural_competence.html","natural competence"]],"b":[["Pfam%3APF13567","Domain of unknown function (DUF4131)"],["PANTHER%3APTHR30619","DNA INTERNALIZATION/COMPETENCE PROTEIN COMEC/REC2"],["Pfam%3APF03772","Competence protein"]]},{"id":"METPO:1000622","l":"halotolerant","na":3,"nb":1,"a":[["environment/halotolerant.html","halotolerant"],["environment/nacl_delta_low.html","NaCl delta low"],["environment/slightly_halophilic.html","slightly halophilic"]],"b":[["METPO%3A1000622","halotolerant"]]},{"id":"NCBITaxon:1639","l":"Listeria monocytogenes","na":1,"nb":3,"a":[["environment/psychrotolerant.html","psychrotolerant"]],"b":[["TED%3AAF-A0A6Z1JB74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6Z1JB74-F1-model_v4_TED01"],["TED%3AAF-A0A5Z1VYX2-F1-model_v4_TED01","TED novel fold AF-A0A5Z1VYX2-F1-model_v4_TED01"],["TED%3AAF-A0A823IT06-F1-model_v4_TED02","TED novel fold AF-A0A823IT06-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1665","l":"Arthrobacter globiformis","na":1,"nb":3,"a":[["morphology/gram_variable.html","gram variable"]],"b":[["Pfam%3APF21994","AGAO-like N2 domain"],["Pfam%3APF18835","Beta helix repeat of Inulin fructotransferase"],["TED%3AAF-A0A328HCX7-F1-model_v4_TED02","TED novel fold AF-A0A328HCX7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1708","l":"Cellulomonas fimi","na":1,"nb":3,"a":[["metabolism/biopolymer_degradation.html","biopolymer degradation"]],"b":[["Pfam%3APF00553","Cellulose binding domain"],["PROSITE%3APS00561","CBM2a (carbohydrate-binding type-2) domain signature"],["PROSITE%3APS00591","Glycosyl hydrolases family 10 (GH10) active site"]]},{"id":"NCBITaxon:1717","l":"Corynebacterium diphtheriae","na":1,"nb":3,"a":[["morphology/dumbbell_shaped.html","dumbbell shaped"]],"b":[["Pfam%3APF08051","Erythromycin resistance leader peptide"],["PROSITE%3APS01007","Transposases, Mutator family, signature"],["TED%3AAF-A0A811G0F8-F1-model_v4_TED05","TED novel fold AF-A0A811G0F8-F1-model_v4_TED05"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":1,"nb":3,"a":[["physiology/alkaline_phosphatase_activity.html","alkaline phosphatase activity"]],"b":[["Pfam%3APF03069","Acetamidase/Formamidase family"],["PROSITE%3APS00818","Dps protein family signature 1"],["Pfam%3APF13810","Domain of unknown function (DUF4185)"]]},{"id":"NCBITaxon:2242","l":"Halobacterium salinarum","na":3,"nb":1,"a":[["environment/extremely_halophilic.html","extremely halophilic"],["environment/halophilic.html","halophilic"],["morphology/intracellular_inclusion.html","intracellular inclusion"]],"b":[["Pfam%3APF07232","Putative rep protein (DUF1424)"]]},{"id":"NCBITaxon:2283","l":"Acidianus ambivalens","na":1,"nb":3,"a":[["metabolism/disproportionation.html","Disproportionation"]],"b":[["Pfam%3APF07680","TQO small subunit DoxA"],["Pfam%3APF04173","TQO small subunit DoxD"],["TED%3AAF-O57695-F1-model_v4_TED01","TED highly-symmetric fold AF-O57695-F1-model_v4_TED01"]]},{"id":"NCBITaxon:243233","l":"Methylococcus capsulatus Bath","na":1,"nb":3,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["Pfam%3APF17850","CysA C-terminal regulatory domain"],["Pfam%3APF02461","Ammonia monooxygenase"],["TED%3AAF-Q604F4-F1-model_v4_TED02","TED novel fold AF-Q604F4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:273121","l":"Wolinella succinogenes (strain ATCC 29543 / DSM 1740 / CCUG 13145 / JCM 31913 / LMG 7466 / NCTC 11488 / FDC 602W)","na":1,"nb":3,"a":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]],"b":[["Pfam%3APF26365","Apolipoprotein N-acyltransferase integral membrane domain"],["Pfam%3APF02335","Cytochrome c552"],["PROSITE%3APS00883","Nickel-dependent hydrogenases b-type cytochrome subunit signature 2"]]},{"id":"NCBITaxon:44001","l":"Caldicellulosiruptor saccharolyticus","na":1,"nb":3,"a":[["metabolism/xylan_degradation.html","xylan degradation"]],"b":[["Pfam%3APF12891","Glycoside hydrolase family 44"],["PROSITE%3APS01027","Glycosyl hydrolases family 39 active site"],["Pfam%3APF02011","Glycosyl hydrolase family 48"]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":1,"nb":3,"a":[["other/voges_proskauer_test_positive.html","Voges-Proskauer test positive"]],"b":[["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"],["PROSITE%3APS00896","LacY family proton/sugar symporters signature 1"],["PROSITE%3APS00897","LacY family proton/sugar symporters signature 2"]]},{"id":"NCBITaxon:584","l":"Proteus mirabilis","na":1,"nb":3,"a":[["morphology/swarming_motility.html","swarming motility"]],"b":[["Pfam%3APF05280","Flagellar transcriptional activator (FlhC)"],["TED%3AAF-A0A1Z1SXV6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z1SXV6-F1-model_v4_TED01"],["TED%3AAF-A0A7U1CMJ9-F1-model_v4_TED01","TED novel fold AF-A0A7U1CMJ9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":1,"nb":3,"a":[["morphology/polar_flagellation.html","polar flagellation"]],"b":[["Pfam%3APF04205","FMN-binding domain"],["Pfam%3APF10795","Protein of unknown function (DUF2607)"],["TED%3AAF-A0A1W6U0N2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W6U0N2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:94122","l":"Shewanella sp. ANA-3","na":1,"nb":3,"a":[["metabolism/arsenate_respiration.html","arsenate respiration"]],"b":[["Pfam%3APF03883","Peroxide stress protein YaaA"],["Pfam%3APF04751","Dual-action ribosomal maturation protein DarP"],["Pfam%3APF04356","Protein of unknown function (DUF489)"]]},{"id":"UniProt:P0AAI3","l":"","na":1,"nb":3,"a":[["physiology/heat_shock_response.html","heat shock response"]],"b":[["ComplexPortal%3ACPX-5046","FtsH-HflKC complex"],["NCBIfam%3ANF008004","ATP-dependent zinc metalloprotease FtsH"],["CATH%3A3.30.720.210","CATH homologous superfamily 3.30.720.210"]]},{"id":"UniProt:P0C0Y9","l":"","na":1,"nb":3,"a":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"]],"b":[["proteintraitsmech%3ABIOLIP_BPH","BPH-binding site"],["proteintraitsmech%3ABIOLIP_SPO","SPO-binding site"],["proteintraitsmech%3ABIOLIP_U10","U10-binding site"]]},{"id":"UniProt:P0CJ63","l":"","na":1,"nb":3,"a":[["physiology/quorum_sensing.html","quorum sensing"]],"b":[["EC%3A3.1.1.81","quorum-quenching N-acyl-homoserine lactonase"],["RHEA%3A22576","an N-acyl-L-homoserine lactone + H2O = an N-acyl-L-homoserine + H(+)"],["proteintraitsmech%3ABIOLIP_C6L","C6L-binding site"]]},{"id":"UniProt:P41020","l":"","na":1,"nb":3,"a":[["physiology/urease_activity.html","urease activity"]],"b":[["PROSITE%3APS01120","Urease nickel ligands signature"],["PROSITE%3APS00145","Urease active site"],["proteintraitsmech%3ABIOLIP_HQE","HQE-binding site"]]},{"id":"UniProt:Q8GBW6","l":"","na":1,"nb":3,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["EC%3A2.1.3.1","methylmalonyl-CoA carboxytransferase"],["RHEA%3A20764","(S)-methylmalonyl-CoA + pyruvate = propanoyl-CoA + oxaloacetate"],["proteintraitsmech%3ABIOLIP_MCA","MCA-binding site"]]},{"id":"CHEBI:15350","l":"","na":2,"nb":1,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["proteintraitsmech%3ABIOLIP_UVW","UVW-binding site"]]},{"id":"CHEBI:15539","l":"","na":2,"nb":1,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"],["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"]],"b":[["proteintraitsmech%3ABIOLIP_1VU","1VU-binding site"]]},{"id":"CHEBI:16136","l":"hydrogen sulfide","na":2,"nb":1,"a":[["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/photolithotrophic.html","photolithotrophic"]],"b":[["MCSA%3A398","sulfite reductase (NADPH)"]]},{"id":"CHEBI:16761","l":"","na":1,"nb":2,"a":[["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16761","requires ADP"],["proteintraitsmech%3ABIOLIP_ADP","ADP-binding site"]]},{"id":"CHEBI:26666","l":"","na":1,"nb":2,"a":[["physiology/chemoheterotrophic.html","chemoheterotrophic"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.73","The Short Chain Fatty Acid Uptake (AtoE) Family"]]},{"id":"CHEBI:28265","l":"","na":1,"nb":2,"a":[["metabolism/methanogenesis.html","Methanogenesis"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_28265","requires coenzyme F430"],["proteintraitsmech%3ABIOLIP_F43","F43-binding site"]]},{"id":"CHEBI:49537","l":"","na":2,"nb":1,"a":[["morphology/motility.html","motility"],["morphology/vibrio_shaped.html","vibrio shaped"]],"b":[["proteintraitsmech%3ABIOLIP_C2E","C2E-binding site"]]},{"id":"GO:0005983","l":"starch catabolic process","na":1,"nb":2,"a":[["metabolism/starch_degradation.html","starch degradation"]],"b":[["GO%3A0005983","starch catabolic process"],["NCBIfam%3ATIGR02103","pullulanase-type alpha-1,6-glucosidase"]]},{"id":"GO:0009321","l":"alkyl hydroperoxide reductase complex","na":1,"nb":2,"a":[["environment/microaerophilic.html","microaerophilic"]],"b":[["ComplexPortal%3ACPX-4862","Alkyl hydroperoxide reductase complex"],["GO%3A0009321","alkyl hydroperoxide reductase complex"]]},{"id":"GO:0009594","l":"detection of nutrient","na":1,"nb":2,"a":[["physiology/nutrient_adaptation.html","nutrient adaptation"]],"b":[["GO%3A0031318","detection of folic acid"],["GO%3A0009594","detection of nutrient"]]},{"id":"GO:0015250","l":"water channel activity","na":1,"nb":2,"a":[["environment/stenohaline.html","stenohaline"]],"b":[["GO%3A0015250","water channel activity"],["NCBIfam%3ANF003838","aquaporin Z"]]},{"id":"GO:0016231","l":"beta-N-acetylglucosaminidase activity","na":1,"nb":2,"a":[["metabolism/chitinolysis.html","chitinolysis"]],"b":[["GO%3A0016231","beta-N-acetylglucosaminidase activity"],["NCBIfam%3ANF041654","beta-N-acetylglucosaminidase"]]},{"id":"GO:0019332","l":"aerobic respiration, using nitrite as electron donor","na":2,"nb":1,"a":[["metabolism/complete_ammonia_oxidation.html","complete ammonia oxidation"],["metabolism/nitrification.html","nitrification"]],"b":[["GO%3A0019332","aerobic respiration, using nitrite as electron donor"]]},{"id":"GO:0044674","l":"methyl coenzyme M reductase complex","na":2,"nb":1,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/methanogenesis.html","Methanogenesis"]],"b":[["GO%3A0044674","methyl coenzyme M reductase complex"]]},{"id":"GO:0046358","l":"butyrate biosynthetic process","na":2,"nb":1,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"]],"b":[["GO%3A0046358","butyrate biosynthetic process"]]},{"id":"GO:0102252","l":"cellulose 1,4-beta-cellobiosidase activity (reducing end)","na":1,"nb":2,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["EC%3A3.2.1.176","cellulose 1,4-beta-cellobiosidase (reducing end)"],["GO%3A0102252","cellulose 1,4-beta-cellobiosidase activity (reducing end)"]]},{"id":"InterPro:IPR002102","l":"Cellulosome anchoring protein, cohesin domain","na":1,"nb":2,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["InterPro%3AIPR002102","Cellulosome anchoring protein, cohesin domain"],["Pfam%3APF00963","Cohesin domain"]]},{"id":"InterPro:IPR004596","l":"","na":2,"nb":1,"a":[["morphology/cell_length_large.html","cell length large"],["morphology/filament_shaped.html","filament shaped"]],"b":[["Pfam%3APF03846","Cell division inhibitor SulA"]]},{"id":"InterPro:IPR004753","l":"","na":1,"nb":2,"a":[["morphology/tailed_shaped.html","tailed shaped"]],"b":[["HAMAP%3AMF_02207","Cell shape-determining protein MreB [mreB]"],["PRINTS%3APR01652","Bacterial cell shape determinant MreB/Mbl protein signature"]]},{"id":"InterPro:IPR023028","l":"","na":1,"nb":2,"a":[["physiology/chemoheterotrophic.html","chemoheterotrophic"]],"b":[["HAMAP%3AMF_00196","Mannitol-1-phosphate 5-dehydrogenase [mtlD]"],["PROSITE%3APS00974","Mannitol dehydrogenases signature"]]},{"id":"InterPro:IPR039315","l":"","na":1,"nb":2,"a":[["physiology/chemotaxis.html","chemotaxis"]],"b":[["Pfam%3APF01584","CheW-like domain"],["PANTHER%3APTHR22617","CHEMOTAXIS SENSOR HISTIDINE KINASE-RELATED"]]},{"id":"METPO:1000604","l":"microaerophilic","na":2,"nb":1,"a":[["environment/microaerophilic.html","microaerophilic"],["environment/oxygen_preference.html","oxygen preference"]],"b":[["METPO%3A1000604","microaerophilic"]]},{"id":"METPO:1000609","l":"aerotolerant","na":2,"nb":1,"a":[["environment/aerotolerant.html","aerotolerant"],["environment/oxygen_preference.html","oxygen preference"]],"b":[["METPO%3A1000609","aerotolerant"]]},{"id":"METPO:1000612","l":"facultative oxygen preference","na":2,"nb":1,"a":[["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/oxygen_preference.html","oxygen preference"]],"b":[["METPO%3A1000612","facultative oxygen preference"]]},{"id":"METPO:1000617","l":"hyperthermophilic","na":1,"nb":2,"a":[["environment/hyperthermophilic.html","hyperthermophilic"]],"b":[["METPO%3A1000721","extreme hyperthermophilic"],["METPO%3A1000617","hyperthermophilic"]]},{"id":"METPO:1000632","l":"autotrophic","na":2,"nb":1,"a":[["physiology/autotrophic.html","autotrophic"],["physiology/trophic_type.html","trophic type"]],"b":[["METPO%3A1000632","autotrophic"]]},{"id":"METPO:1000641","l":"chemotrophic","na":2,"nb":1,"a":[["physiology/chemotrophic.html","chemotrophic"],["physiology/trophic_type.html","trophic type"]],"b":[["METPO%3A1000641","chemotrophic"]]},{"id":"METPO:1000642","l":"copiotrophic","na":2,"nb":1,"a":[["physiology/copiotrophic.html","copiotrophic"],["physiology/nutrient_adaptation.html","nutrient adaptation"]],"b":[["METPO%3A1000642","copiotrophic"]]},{"id":"METPO:1000644","l":"heterotrophic","na":2,"nb":1,"a":[["physiology/heterotrophic.html","heterotrophic"],["physiology/trophic_type.html","trophic type"]],"b":[["METPO%3A1000644","heterotrophic"]]},{"id":"METPO:1000654","l":"oligotrophic","na":2,"nb":1,"a":[["physiology/nutrient_adaptation.html","nutrient adaptation"],["physiology/oligotrophic.html","oligotrophic"]],"b":[["METPO%3A1000654","oligotrophic"]]},{"id":"METPO:1000657","l":"photoheterotrophic","na":2,"nb":1,"a":[["physiology/aerobic_anoxygenic_phototrophy.html","aerobic anoxygenic phototrophy"],["physiology/photoheterotrophic.html","photoheterotrophic"]],"b":[["METPO%3A1000657","photoheterotrophic"]]},{"id":"METPO:1000660","l":"phototrophic","na":2,"nb":1,"a":[["physiology/phototrophic.html","phototrophic"],["physiology/trophic_type.html","trophic type"]],"b":[["METPO%3A1000660","phototrophic"]]},{"id":"METPO:1000804","l":"Substrate-level phosphorylation","na":2,"nb":1,"a":[["metabolism/fermentation.html","Fermentation"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["METPO%3A1000804","Substrate-level phosphorylation"]]},{"id":"METPO:1003003","l":"acidophilic","na":1,"nb":2,"a":[["environment/acidophilic.html","acidophilic"]],"b":[["METPO%3A1003003","acidophilic"],["METPO%3A1003006","obligately acidophilic"]]},{"id":"METPO:1003008","l":"acidotolerant","na":2,"nb":1,"a":[["environment/acidotolerant.html","acidotolerant"],["environment/ph_delta.html","pH delta"]],"b":[["METPO%3A1003008","acidotolerant"]]},{"id":"METPO:1005001","l":"nitrification","na":2,"nb":1,"a":[["metabolism/complete_ammonia_oxidation.html","complete ammonia oxidation"],["metabolism/nitrification.html","nitrification"]],"b":[["METPO%3A1005001","nitrification"]]},{"id":"NCBITaxon:1032480","l":"Microlunatus phosphovorus NM-1","na":1,"nb":2,"a":[["morphology/polyphosphate_granule.html","polyphosphate granule"]],"b":[["TED%3AAF-F5XIG6-F1-model_v4_TED02","TED novel fold AF-F5XIG6-F1-model_v4_TED02"],["TED%3AAF-F5XQ24-F1-model_v4_TED04","TED novel fold AF-F5XQ24-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":1,"nb":2,"a":[["physiology/urease_activity.html","urease activity"]],"b":[["PROSITE%3APS01120","Urease nickel ligands signature"],["PROSITE%3APS00145","Urease active site"]]},{"id":"NCBITaxon:2190","l":"Methanocaldococcus jannaschii","na":2,"nb":1,"a":[["metabolism/methanogenesis.html","Methanogenesis"],["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["TED%3AAF-A0A832WL57-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A832WL57-F1-model_v4_TED02"]]},{"id":"NCBITaxon:240292","l":"Trichormus variabilis ATCC 29413","na":1,"nb":2,"a":[["morphology/akinete.html","akinete"]],"b":[["Pfam%3APF18921","Cyanophycin synthase-like N-terminal domain"],["Pfam%3APF13619","KTSC domain"]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":1,"nb":2,"a":[["physiology/alpha_fucosidase_activity.html","alpha-fucosidase activity"]],"b":[["Pfam%3APF21252","Glycosyl hydrolase 109, C-terminal domain"],["TED%3AAF-A0A3P1YJQ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3P1YJQ6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28132","l":"Prevotella melaninogenica","na":1,"nb":2,"a":[["morphology/black_pigmented.html","black pigmented"]],"b":[["TED%3AAF-A0A8B2A6Y8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B2A6Y8-F1-model_v4_TED01"],["TED%3AAF-A0A250KF16-F1-model_v4_TED03","TED novel fold AF-A0A250KF16-F1-model_v4_TED03"]]},{"id":"NCBITaxon:292415","l":"Thiobacillus denitrificans ATCC 25259","na":2,"nb":1,"a":[["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/chemoautotrophic.html","chemoautotrophic"]],"b":[["Pfam%3APF06804","Outer membrane protein assembly factor BamC-like C-terminal domain"]]},{"id":"NCBITaxon:317655","l":"Sphingopyxis alaskensis RB2256","na":2,"nb":1,"a":[["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"]],"b":[["Pfam%3APF10755","Protein of unknown function (DUF2585)"]]},{"id":"NCBITaxon:319224","l":"Shewanella putrefaciens (strain CN-32 / ATCC BAA-453)","na":1,"nb":2,"a":[["morphology/flagellar_arrangement.html","flagellar arrangement"]],"b":[["Pfam%3APF17810","Arginine decarboxylase helical bundle domain"],["Pfam%3APF17944","Arginine decarboxylase C-terminal helical extension"]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":1,"nb":2,"a":[["morphology/yellow_pigmented.html","yellow pigmented"]],"b":[["TED%3AAF-A0A6N3WS12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N3WS12-F1-model_v4_TED01"],["TED%3AAF-A0A3R7GIU2-F1-model_v4_TED02","TED novel fold AF-A0A3R7GIU2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:408","l":"Methylorubrum extorquens","na":2,"nb":1,"a":[["morphology/pink_pigmented.html","pink pigmented"],["physiology/methylotrophic.html","methylotrophic"]],"b":[["Pfam%3APF04476","4-HFC-P synthase"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":1,"nb":2,"a":[["morphology/lateral_flagellation.html","lateral flagellation"]],"b":[["TED%3AAF-B5UAE0-F1-model_v4_TED01","TED highly-symmetric fold AF-B5UAE0-F1-model_v4_TED01"],["TED%3AAF-A0A3E1IF45-F1-model_v4_TED01","TED novel fold AF-A0A3E1IF45-F1-model_v4_TED01"]]},{"id":"NCBITaxon:69","l":"Lysobacter enzymogenes","na":1,"nb":2,"a":[["genomics/gasdermin_system.html","GasderMIN system"]],"b":[["TED%3AAF-A0A1J1E6A8-F1-model_v4_TED02","TED novel fold AF-A0A1J1E6A8-F1-model_v4_TED02"],["TED%3AAF-A0A7T8MLU2-F1-model_v4_TED03","TED novel fold AF-A0A7T8MLU2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:79885","l":"Alkalihalophilus pseudofirmus","na":2,"nb":1,"a":[["environment/alkalotolerant.html","alkalotolerant"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"]],"b":[["TED%3AAF-A0A1Q8TV17-F1-model_v4_TED02","TED novel fold AF-A0A1Q8TV17-F1-model_v4_TED02"]]},{"id":"NCBITaxon:913088","l":"Escherichia coli (strain TW11681)","na":1,"nb":2,"a":[["genomics/cbass_system.html","CBASS system"]],"b":[["Pfam%3APF21713","Cyclic GMP-AMP synthase, C-terminal domain"],["Pfam%3APF21654","Cyclic GMP-AMP synthase DncV-like, nucleotidyltransferase domain"]]},{"id":"UniProt:G1UBD1","l":"","na":1,"nb":2,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["EC%3A1.14.18.3","methane monooxygenase (particulate)"],["RHEA%3A30355","methane + a quinol + O2 = methanol + a quinone + H2O"]]},{"id":"UniProt:O52683","l":"","na":1,"nb":2,"a":[["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"]],"b":[["EC%3A1.12.1.4","hydrogenase (NAD(+), ferredoxin)"],["RHEA%3A30279","2 H2 + 2 oxidized [2Fe-2S]-[ferredoxin] + NAD(+) = 2 reduced [2Fe-2S]-[ferredoxin] + NADH + 3 H(+)"]]},{"id":"UniProt:P06278","l":"","na":1,"nb":2,"a":[["metabolism/starch_degradation.html","starch degradation"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["proteintraitsmech%3ABIOLIP_NA","NA-binding site"]]},{"id":"UniProt:P07254","l":"","na":1,"nb":2,"a":[["metabolism/chitinolysis.html","chitinolysis"]],"b":[["MCSA%3A478","chitinase (GH18, Class II)"],["proteintraitsmech%3ABIOLIP_AMI","AMI-binding site"]]},{"id":"UniProt:P0C916","l":"","na":1,"nb":2,"a":[["physiology/chemolithoautotrophic.html","chemolithoautotrophic"]],"b":[["EC%3A4.1.1.39","ribulose-bisphosphate carboxylase"],["RHEA%3A23124","2 (2R)-3-phosphoglycerate + 2 H(+) = D-ribulose 1,5-bisphosphate + CO2 + H2O"]]},{"id":"UniProt:P12747","l":"","na":2,"nb":1,"a":[["physiology/bioluminescence.html","bioluminescence"],["physiology/quorum_sensing.html","quorum sensing"]],"b":[["PROSITE%3APS00949","Autoinducer synthase family signature"]]},{"id":"UniProt:P16027","l":"","na":1,"nb":2,"a":[["physiology/methylotrophic.html","methylotrophic"]],"b":[["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["PROSITE%3APS00363","Bacterial quinoprotein dehydrogenases signature 1"]]},{"id":"UniProt:P29082","l":"","na":1,"nb":2,"a":[["metabolism/disproportionation.html","Disproportionation"]],"b":[["EC%3A1.13.11.55","sulfur oxygenase/reductase"],["RHEA%3A13957","4 sulfur + O2 + 4 H2O = 2 hydrogen sulfide + 2 sulfite + 6 H(+)"]]},{"id":"UniProt:P31891","l":"","na":1,"nb":2,"a":[["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["proteintraitsmech%3ABIOLIP_NFV","NFV-binding site"],["proteintraitsmech%3ABIOLIP_S3F","S3F-binding site"]]},{"id":"UniProt:P31896","l":"","na":1,"nb":2,"a":[["physiology/carboxydotrophic.html","carboxydotrophic"]],"b":[["proteintraitsmech%3ABIOLIP_RQM","RQM-binding site"],["proteintraitsmech%3AMETALPDB_NI_PENTANUCLEAR","pentanuclear nickel site"]]},{"id":"UniProt:P45574","l":"","na":1,"nb":2,"a":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["proteintraitsmech%3ABIOLIP_SH0","SH0-binding site"],["proteintraitsmech%3ABIOLIP_SRM","SRM-binding site"]]},{"id":"UniProt:Q02567","l":"","na":1,"nb":2,"a":[["metabolism/manganese_oxidation.html","manganese oxidation"]],"b":[["EC%3A1.11.1.13","manganese peroxidase"],["RHEA%3A22776","2 Mn(2+) + H2O2 + 2 H(+) = 2 Mn(3+) + 2 H2O"]]},{"id":"UniProt:Q9S1E5","l":"","na":1,"nb":2,"a":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]],"b":[["Pfam%3APF02335","Cytochrome c552"],["proteintraitsmech%3AMETALPDB_Y_TRINUCLEAR","trinuclear yttrium site"]]},{"id":"CHEBI:16412","l":"","na":1,"nb":1,"a":[["morphology/gram_negative.html","gram negative"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:17794","l":"","na":1,"nb":1,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"]],"b":[["proteintraitsmech%3ABIOLIP_3PG","3PG-binding site"]]},{"id":"CHEBI:193595","l":"","na":1,"nb":1,"a":[["environment/hyperthermophilic.html","hyperthermophilic"]],"b":[["RHEA%3A74675","archaeol + AH2 + 2 S-adenosyl-L-methionine = macrocyclic archaeol + 2 5'-deoxyadenosine + 2 L-methionine + A + 2 H(+)"]]},{"id":"CHEBI:23357","l":"","na":1,"nb":1,"a":[["upper/enzyme.html","enzyme"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_23357","cofactor cofactor class"]]},{"id":"CHEBI:25105","l":"","na":1,"nb":1,"a":[["physiology/antibiotic_resistance.html","antibiotic resistance"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:26710","l":"sodium chloride","na":1,"nb":1,"a":[["environment/halophilic.html","halophilic"]],"b":[["TCDB%3A2.A.30","The Cation-Chloride Cotransporter (CCC) Family"]]},{"id":"CHEBI:29125","l":"arsenate(3-)","na":1,"nb":1,"a":[["environment/arsenic_tolerant.html","arsenic tolerant"]],"b":[["proteintraitsmech%3ABIOLIP_ART","ART-binding site"]]},{"id":"CHEBI:35819","l":"","na":1,"nb":1,"a":[["environment/temperature_optimum_mid1.html","temperature optimum mid1"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:41688","l":"crystal violet","na":1,"nb":1,"a":[["morphology/gram_stain.html","gram stain"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:44747","l":"","na":1,"nb":1,"a":[["morphology/brown_pigmented.html","brown pigmented"]],"b":[["proteintraitsmech%3ABIOLIP_OMD","OMD-binding site"]]},{"id":"CHEBI:46837","l":"","na":1,"nb":1,"a":[["morphology/spore_forming.html","spore forming"]],"b":[["proteintraitsmech%3ABIOLIP_PDC","PDC-binding site"]]},{"id":"GO:0002047","l":"phenazine biosynthetic process","na":1,"nb":1,"a":[["morphology/green_pigmented.html","green pigmented"]],"b":[["GO%3A0002047","phenazine biosynthetic process"]]},{"id":"GO:0009420","l":"bacterial-type flagellum filament","na":1,"nb":1,"a":[["morphology/flagellated.html","flagellated"]],"b":[["GO%3A0009420","bacterial-type flagellum filament"]]},{"id":"GO:0015050","l":"methane monooxygenase complex","na":1,"nb":1,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["GO%3A0015050","methane monooxygenase complex"]]},{"id":"GO:0016218","l":"polyketide synthase activity","na":1,"nb":1,"a":[["morphology/black_pigmented.html","black pigmented"]],"b":[["GO%3A0016218","polyketide synthase activity"]]},{"id":"GO:0019643","l":"reductive tricarboxylic acid cycle","na":1,"nb":1,"a":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"]],"b":[["GO%3A0019643","reductive tricarboxylic acid cycle"]]},{"id":"GO:0019655","l":"pyruvate fermentation to ethanol","na":1,"nb":1,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"]],"b":[["GO%3A0019655","pyruvate fermentation to ethanol"]]},{"id":"GO:0033172","l":"gas vesicle shell","na":1,"nb":1,"a":[["morphology/gas_vesicle.html","gas vesicle"]],"b":[["GO%3A0033172","gas vesicle shell"]]},{"id":"GO:0033355","l":"ascorbate glutathione cycle","na":1,"nb":1,"a":[["environment/aerotolerant.html","aerotolerant"]],"b":[["GO%3A0033355","ascorbate glutathione cycle"]]},{"id":"GO:0042603","l":"capsule","na":1,"nb":1,"a":[["morphology/capsule.html","capsule"]],"b":[["GO%3A0042603","capsule"]]},{"id":"GO:0043263","l":"cellulosome","na":1,"nb":1,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["GO%3A0043263","cellulosome"]]},{"id":"GO:0098689","l":"latency-replication decision","na":1,"nb":1,"a":[["genomics/prophage.html","prophage"]],"b":[["GO%3A0098689","latency-replication decision"]]},{"id":"GO:0140649","l":"symbiont-mediated cell-to-cell migration by invasive hypha","na":1,"nb":1,"a":[["ecology/plant_pathogen.html","plant pathogen"]],"b":[["GO%3A0140649","symbiont-mediated cell-to-cell migration by invasive hypha"]]},{"id":"GO:1901177","l":"lycopene biosynthetic process","na":1,"nb":1,"a":[["morphology/yellow_pigmented.html","yellow pigmented"]],"b":[["GO%3A1901177","lycopene biosynthetic process"]]},{"id":"GO:1901812","l":"beta-carotene biosynthetic process","na":1,"nb":1,"a":[["morphology/pigmentation.html","pigmentation"]],"b":[["GO%3A1901812","beta-carotene biosynthetic process"]]},{"id":"InterPro:IPR000067","l":"","na":1,"nb":1,"a":[["morphology/lophotrichous.html","lophotrichous"]],"b":[["PRINTS%3APR01009","Flagellar M-ring protein signature"]]},{"id":"InterPro:IPR002798","l":"","na":1,"nb":1,"a":[["morphology/spore_forming.html","spore forming"]],"b":[["Pfam%3APF01944","Stage II sporulation protein M"]]},{"id":"InterPro:IPR007439","l":"","na":1,"nb":1,"a":[["physiology/chemotaxis.html","chemotaxis"]],"b":[["Pfam%3APF04344","Chemotaxis phosphatase, CheZ"]]},{"id":"InterPro:IPR011895","l":"","na":1,"nb":1,"a":[["metabolism/fermentation.html","Fermentation"]],"b":[["Pfam%3APF10371","Domain of unknown function"]]},{"id":"InterPro:IPR012609","l":"","na":1,"nb":1,"a":[["morphology/spore_shaped.html","spore shaped"]],"b":[["Pfam%3APF08183","Stage V sporulation protein family"]]},{"id":"InterPro:IPR018901","l":"","na":1,"nb":1,"a":[["morphology/spore_shaped.html","spore shaped"]],"b":[["Pfam%3APF10628","Outer spore coat protein E (CotE)"]]},{"id":"InterPro:IPR030858","l":"","na":1,"nb":1,"a":[["morphology/ovoid_shaped.html","ovoid shaped"]],"b":[["HAMAP%3AMF_01941","Mid-cell-anchored protein Z [mapZ]"]]},{"id":"InterPro:IPR047939","l":"","na":1,"nb":1,"a":[["genomics/brex_system.html","BREX system"]],"b":[["Pfam%3APF07669","Eco57I restriction-modification methylase"]]},{"id":"InterPro:IPR048240","l":"","na":1,"nb":1,"a":[["morphology/filament_shaped.html","filament shaped"]],"b":[["Pfam%3APF28068","Polarized growth protein Scy"]]},{"id":"InterPro:IPR052364","l":"","na":1,"nb":1,"a":[["environment/aerotolerant.html","aerotolerant"]],"b":[["PANTHER%3APTHR43865","RUBRERYTHRIN-RELATED"]]},{"id":"METPO:1000605","l":"facultatively anaerobic","na":1,"nb":1,"a":[["environment/facultatively_anaerobic.html","facultatively anaerobic"]],"b":[["METPO%3A1000605","facultatively anaerobic"]]},{"id":"METPO:1000606","l":"obligately aerobic","na":1,"nb":1,"a":[["environment/obligately_aerobic.html","obligately aerobic"]],"b":[["METPO%3A1000606","obligately aerobic"]]},{"id":"METPO:1000608","l":"facultatively aerobic","na":1,"nb":1,"a":[["environment/facultatively_aerobic.html","facultatively aerobic"]],"b":[["METPO%3A1000608","facultatively aerobic"]]},{"id":"METPO:1000610","l":"microaerotolerant","na":1,"nb":1,"a":[["environment/microaerotolerant.html","microaerotolerant"]],"b":[["METPO%3A1000610","microaerotolerant"]]},{"id":"METPO:1000611","l":"strictly anaerobic","na":1,"nb":1,"a":[["environment/strictly_anaerobic.html","strictly anaerobic"]],"b":[["METPO%3A1000611","strictly anaerobic"]]},{"id":"METPO:1000614","l":"psychrophilic","na":1,"nb":1,"a":[["environment/psychrophilic.html","psychrophilic"]],"b":[["METPO%3A1000614","psychrophilic"]]},{"id":"METPO:1000615","l":"mesophilic","na":1,"nb":1,"a":[["environment/mesophilic.html","mesophilic"]],"b":[["METPO%3A1000615","mesophilic"]]},{"id":"METPO:1000616","l":"thermophilic","na":1,"nb":1,"a":[["environment/thermophilic.html","thermophilic"]],"b":[["METPO%3A1000616","thermophilic"]]},{"id":"METPO:1000618","l":"psychrotolerant","na":1,"nb":1,"a":[["environment/psychrotolerant.html","psychrotolerant"]],"b":[["METPO%3A1000618","psychrotolerant"]]},{"id":"METPO:1000619","l":"thermotolerant","na":1,"nb":1,"a":[["environment/thermotolerant.html","thermotolerant"]],"b":[["METPO%3A1000619","thermotolerant"]]},{"id":"METPO:1000621","l":"haloalkaliphilic","na":1,"nb":1,"a":[["environment/haloalkaliphilic.html","haloalkaliphilic"]],"b":[["METPO%3A1000621","haloalkaliphilic"]]},{"id":"METPO:1000623","l":"moderately halophilic","na":1,"nb":1,"a":[["environment/moderately_halophilic.html","moderately halophilic"]],"b":[["METPO%3A1000623","moderately halophilic"]]},{"id":"METPO:1000624","l":"non halophilic","na":1,"nb":1,"a":[["environment/non_halophilic.html","non halophilic"]],"b":[["METPO%3A1000624","non halophilic"]]},{"id":"METPO:1000625","l":"slightly halophilic","na":1,"nb":1,"a":[["environment/slightly_halophilic.html","slightly halophilic"]],"b":[["METPO%3A1000625","slightly halophilic"]]},{"id":"METPO:1000626","l":"stenohaline","na":1,"nb":1,"a":[["environment/stenohaline.html","stenohaline"]],"b":[["METPO%3A1000626","stenohaline"]]},{"id":"METPO:1000627","l":"euryhaline","na":1,"nb":1,"a":[["environment/euryhaline.html","euryhaline"]],"b":[["METPO%3A1000627","euryhaline"]]},{"id":"METPO:1000628","l":"extremely halophilic","na":1,"nb":1,"a":[["environment/extremely_halophilic.html","extremely halophilic"]],"b":[["METPO%3A1000628","extremely halophilic"]]},{"id":"METPO:1000633","l":"carboxydotrophic","na":1,"nb":1,"a":[["physiology/carboxydotrophic.html","carboxydotrophic"]],"b":[["METPO%3A1000633","carboxydotrophic"]]},{"id":"METPO:1000634","l":"chemoautolithotrophic","na":1,"nb":1,"a":[["physiology/chemoautolithotrophic.html","chemoautolithotrophic"]],"b":[["METPO%3A1000634","chemoautolithotrophic"]]},{"id":"METPO:1000635","l":"chemoautotrophic","na":1,"nb":1,"a":[["physiology/chemoautotrophic.html","chemoautotrophic"]],"b":[["METPO%3A1000635","chemoautotrophic"]]},{"id":"METPO:1000636","l":"chemoheterotrophic","na":1,"nb":1,"a":[["physiology/chemoheterotrophic.html","chemoheterotrophic"]],"b":[["METPO%3A1000636","chemoheterotrophic"]]},{"id":"METPO:1000637","l":"chemolithoautotrophic","na":1,"nb":1,"a":[["physiology/chemolithoautotrophic.html","chemolithoautotrophic"]],"b":[["METPO%3A1000637","chemolithoautotrophic"]]},{"id":"METPO:1000638","l":"chemolithoheterotrophic","na":1,"nb":1,"a":[["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"]],"b":[["METPO%3A1000638","chemolithoheterotrophic"]]},{"id":"METPO:1000639","l":"chemolithotrophic","na":1,"nb":1,"a":[["physiology/chemolithotrophic.html","chemolithotrophic"]],"b":[["METPO%3A1000639","chemolithotrophic"]]},{"id":"METPO:1000640","l":"chemoorganoheterotrophic","na":1,"nb":1,"a":[["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"]],"b":[["METPO%3A1000640","chemoorganoheterotrophic"]]},{"id":"METPO:1000646","l":"hydrogenotrophic","na":1,"nb":1,"a":[["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["METPO%3A1000646","hydrogenotrophic"]]},{"id":"METPO:1000647","l":"lithoautotrophic","na":1,"nb":1,"a":[["physiology/lithoautotrophic.html","lithoautotrophic"]],"b":[["METPO%3A1000647","lithoautotrophic"]]},{"id":"METPO:1000648","l":"lithoheterotrophic","na":1,"nb":1,"a":[["physiology/lithoheterotrophic.html","lithoheterotrophic"]],"b":[["METPO%3A1000648","lithoheterotrophic"]]},{"id":"METPO:1000649","l":"lithotrophic","na":1,"nb":1,"a":[["physiology/lithotrophic.html","lithotrophic"]],"b":[["METPO%3A1000649","lithotrophic"]]},{"id":"METPO:1000650","l":"methanotrophic","na":1,"nb":1,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["METPO%3A1000650","methanotrophic"]]},{"id":"METPO:1000651","l":"methylotrophic","na":1,"nb":1,"a":[["physiology/methylotrophic.html","methylotrophic"]],"b":[["METPO%3A1000651","methylotrophic"]]},{"id":"METPO:1000652","l":"mixotrophic","na":1,"nb":1,"a":[["physiology/mixotrophic.html","mixotrophic"]],"b":[["METPO%3A1000652","mixotrophic"]]},{"id":"METPO:1000655","l":"organotrophic","na":1,"nb":1,"a":[["physiology/organotrophic.html","organotrophic"]],"b":[["METPO%3A1000655","organotrophic"]]},{"id":"METPO:1000656","l":"photoautotrophic","na":1,"nb":1,"a":[["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["METPO%3A1000656","photoautotrophic"]]},{"id":"METPO:1000658","l":"photolithotrophic","na":1,"nb":1,"a":[["physiology/photolithotrophic.html","photolithotrophic"]],"b":[["METPO%3A1000658","photolithotrophic"]]},{"id":"METPO:1000659","l":"photoorganoheterotrophic","na":1,"nb":1,"a":[["physiology/photoorganoheterotrophic.html","photoorganoheterotrophic"]],"b":[["METPO%3A1000659","photoorganoheterotrophic"]]},{"id":"METPO:1000663","l":"chemoorganotrophic","na":1,"nb":1,"a":[["physiology/chemoorganotrophic.html","chemoorganotrophic"]],"b":[["METPO%3A1000663","chemoorganotrophic"]]},{"id":"METPO:1000664","l":"organoheterotrophic","na":1,"nb":1,"a":[["physiology/organoheterotrophic.html","organoheterotrophic"]],"b":[["METPO%3A1000664","organoheterotrophic"]]},{"id":"METPO:1000665","l":"photolithoautotrophic","na":1,"nb":1,"a":[["physiology/photolithoautotrophic.html","photolithoautotrophic"]],"b":[["METPO%3A1000665","photolithoautotrophic"]]},{"id":"METPO:1000720","l":"facultative psychrophilic","na":1,"nb":1,"a":[["environment/facultative_psychrophilic.html","facultative psychrophilic"]],"b":[["METPO%3A1000720","facultative psychrophilic"]]},{"id":"METPO:1000721","l":"extreme hyperthermophilic","na":1,"nb":1,"a":[["environment/extreme_hyperthermophilic.html","extreme hyperthermophilic"]],"b":[["METPO%3A1000721","extreme hyperthermophilic"]]},{"id":"METPO:1000801","l":"Aerobic respiration","na":1,"nb":1,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"]],"b":[["METPO%3A1000801","Aerobic respiration"]]},{"id":"METPO:1000803","l":"Oxidative phosphorylation","na":1,"nb":1,"a":[["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"]],"b":[["METPO%3A1000803","Oxidative phosphorylation"]]},{"id":"METPO:1000805","l":"Electron transfer","na":1,"nb":1,"a":[["metabolism/electron_transfer.html","Electron transfer"]],"b":[["METPO%3A1000805","Electron transfer"]]},{"id":"METPO:1000806","l":"Disproportionation","na":1,"nb":1,"a":[["metabolism/disproportionation.html","Disproportionation"]],"b":[["METPO%3A1000806","Disproportionation"]]},{"id":"METPO:1000846","l":"Homoacetogenesis","na":1,"nb":1,"a":[["metabolism/homoacetogenesis.html","Homoacetogenesis"]],"b":[["METPO%3A1000846","Homoacetogenesis"]]},{"id":"METPO:1002003","l":"Cable bacteria metabolism","na":1,"nb":1,"a":[["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"]],"b":[["METPO%3A1002003","Cable bacteria metabolism"]]},{"id":"METPO:1002006","l":"Syntrophy","na":1,"nb":1,"a":[["metabolism/syntrophy.html","Syntrophy"]],"b":[["METPO%3A1002006","Syntrophy"]]},{"id":"METPO:1003001","l":"neutrophilic","na":1,"nb":1,"a":[["environment/neutrophilic.html","neutrophilic"]],"b":[["METPO%3A1003001","neutrophilic"]]},{"id":"METPO:1003004","l":"obligately alkaliphilic","na":1,"nb":1,"a":[["environment/obligately_alkaphilic.html","obligately alkaliphilic"]],"b":[["METPO%3A1003004","obligately alkaliphilic"]]},{"id":"METPO:1003005","l":"facultatively alkaliphilic","na":1,"nb":1,"a":[["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"]],"b":[["METPO%3A1003005","facultatively alkaliphilic"]]},{"id":"METPO:1003006","l":"obligately acidophilic","na":1,"nb":1,"a":[["environment/obligately_acidophilic.html","obligately acidophilic"]],"b":[["METPO%3A1003006","obligately acidophilic"]]},{"id":"METPO:1003007","l":"facultatively acidophilic","na":1,"nb":1,"a":[["environment/facultatively_acidophilic.html","facultatively acidophilic"]],"b":[["METPO%3A1003007","facultatively acidophilic"]]},{"id":"METPO:1003009","l":"alkalotolerant","na":1,"nb":1,"a":[["environment/alkalotolerant.html","alkalotolerant"]],"b":[["METPO%3A1003009","alkalotolerant"]]},{"id":"METPO:1005011","l":"indole test positive","na":1,"nb":1,"a":[["other/indole_test_positive.html","indole test positive"]],"b":[["METPO%3A1005011","indole test positive"]]},{"id":"METPO:1005012","l":"indole test negative","na":1,"nb":1,"a":[["other/indole_test_negative.html","indole test negative"]],"b":[["METPO%3A1005012","indole test negative"]]},{"id":"METPO:1005014","l":"methyl red test positive","na":1,"nb":1,"a":[["other/methyl_red_test_positive.html","methyl red test positive"]],"b":[["METPO%3A1005014","methyl red test positive"]]},{"id":"METPO:1005015","l":"methyl red test negative","na":1,"nb":1,"a":[["other/methyl_red_test_negative.html","methyl red test negative"]],"b":[["METPO%3A1005015","methyl red test negative"]]},{"id":"METPO:1005017","l":"Voges-Proskauer test positive","na":1,"nb":1,"a":[["other/voges_proskauer_test_positive.html","Voges-Proskauer test positive"]],"b":[["METPO%3A1005017","Voges-Proskauer test positive"]]},{"id":"METPO:1005018","l":"Voges-Proskauer test negative","na":1,"nb":1,"a":[["other/voges_proskauer_test_negative.html","Voges-Proskauer test negative"]],"b":[["METPO%3A1005018","Voges-Proskauer test negative"]]},{"id":"METPO:1005021","l":"capnophilic","na":1,"nb":1,"a":[["environment/capnophilic.html","capnophilic"]],"b":[["METPO%3A1005021","capnophilic"]]},{"id":"METPO:1007073","l":"osmotic tolerance","na":1,"nb":1,"a":[["other/osmotic_tolerance.html","osmotic tolerance"]],"b":[["METPO%3A1007073","osmotic tolerance"]]},{"id":"METPO:1007084","l":"catalase negative","na":1,"nb":1,"a":[["other/catalase_negative.html","catalase negative"]],"b":[["METPO%3A1007084","catalase negative"]]},{"id":"METPO:1007086","l":"oxidase negative","na":1,"nb":1,"a":[["other/oxidase_negative.html","oxidase negative"]],"b":[["METPO%3A1007086","oxidase negative"]]},{"id":"METPO:1007088","l":"urease negative","na":1,"nb":1,"a":[["other/urease_negative.html","urease negative"]],"b":[["METPO%3A1007088","urease negative"]]},{"id":"METPO:1007090","l":"coagulase positive","na":1,"nb":1,"a":[["other/coagulase_positive.html","coagulase positive"]],"b":[["METPO%3A1007090","coagulase positive"]]},{"id":"METPO:1007091","l":"coagulase negative","na":1,"nb":1,"a":[["other/coagulase_negative.html","coagulase negative"]],"b":[["METPO%3A1007091","coagulase negative"]]},{"id":"NCBITaxon:133804","l":"gamma proteobacterium EBAC31A08","na":1,"nb":1,"a":[["metabolism/proteorhodopsin_phototrophy.html","proteorhodopsin phototrophy"]],"b":[["PROSITE%3APS00950","Bacterial rhodopsins signature 1"]]},{"id":"NCBITaxon:1392998","l":"Candidatus Methanoperedens nitratireducens","na":1,"nb":1,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"]],"b":[["TED%3AAF-A0A062V4L1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A062V4L1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1473598","l":"Paludibaculum fermentans","na":1,"nb":1,"a":[["environment/facultatively_acidophilic.html","facultatively acidophilic"]],"b":[["TED%3AAF-A0A7S7NND6-F1-model_v4_TED01","TED novel fold AF-A0A7S7NND6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":1,"nb":1,"a":[["morphology/branched_shaped.html","branched shaped"]],"b":[["TED%3AAF-A0A415C3I8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A415C3I8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1752","l":"Propionibacterium freudenreichii subsp. shermanii","na":1,"nb":1,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["PROSITE%3APS00544","Methylmalonyl-CoA mutase signature"]]},{"id":"NCBITaxon:2306023","l":"Gemmobacter lutimaris","na":1,"nb":1,"a":[["environment/ph_delta_mid3.html","pH delta mid3"]],"b":[["TED%3AAF-A0A398BQ53-F1-model_v4_TED04","TED novel fold AF-A0A398BQ53-F1-model_v4_TED04"]]},{"id":"NCBITaxon:243164","l":"Dehalococcoides mccartyi 195","na":1,"nb":1,"a":[["metabolism/organohalide_respiration.html","organohalide respiration"]],"b":[["Pfam%3APF13486","Reductive dehalogenase subunit"]]},{"id":"NCBITaxon:29339","l":"Bacillus thuringiensis subsp. kurstaki","na":1,"nb":1,"a":[["physiology/quorum_sensing.html","quorum sensing"]],"b":[["Pfam%3APF07029","CryBP1 protein"]]},{"id":"NCBITaxon:296","l":"Pseudomonas fragi","na":1,"nb":1,"a":[["environment/temperature_optimum_low.html","temperature optimum low"]],"b":[["TED%3AAF-A0A449IS41-F1-model_v4_TED01","TED novel fold AF-A0A449IS41-F1-model_v4_TED01"]]},{"id":"NCBITaxon:335541","l":"Syntrophomonas wolfei subsp. wolfei (strain DSM 2245B / Goettingen)","na":1,"nb":1,"a":[["metabolism/syntrophy.html","Syntrophy"]],"b":[["TED%3AAF-Q0AVF9-F1-model_v4_TED01","TED novel fold AF-Q0AVF9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["metabolism/photoferrotrophy.html","photoferrotrophy"]],"b":[["Pfam%3APF13282","Domain of unknown function (DUF4070)"]]},{"id":"NCBITaxon:399549","l":"Metallosphaera sedula DSM 5348","na":1,"nb":1,"a":[["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]],"b":[["Pfam%3APF18195","GatD N-terminal domain"]]},{"id":"NCBITaxon:412955","l":"Pseudomonas sp. SCT","na":1,"nb":1,"a":[["metabolism/iodate_respiration.html","iodate respiration"]],"b":[["Pfam%3APF03150","Di-haem cytochrome c peroxidase"]]},{"id":"NCBITaxon:521674","l":"Planctopirus limnophila DSM 3776","na":1,"nb":1,"a":[["morphology/flask_shaped.html","flask shaped"]],"b":[["TED%3AAF-D5SQH0-F1-model_v4_TED01","TED novel fold AF-D5SQH0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:747","l":"Pasteurella multocida","na":1,"nb":1,"a":[["ecology/animal_pathogen.html","animal pathogen"]],"b":[["TED%3AAF-A0A8A8HHD5-F1-model_v4_TED02","TED novel fold AF-A0A8A8HHD5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:766760","l":"Bacillus paralicheniformis ATCC 9945a","na":1,"nb":1,"a":[["genomics/disarm_system.html","DISARM system"]],"b":[["Pfam%3APF24957","DISARM protein DrmE, C-terminal domain"]]},{"id":"NCBITaxon:863","l":"Syntrophomonas wolfei","na":1,"nb":1,"a":[["metabolism/syntrophy.html","Syntrophy"]],"b":[["TED%3AAF-A0A354YY78-F1-model_v4_TED03","TED novel fold AF-A0A354YY78-F1-model_v4_TED03"]]},{"id":"UniProt:P07984","l":"","na":1,"nb":1,"a":[["metabolism/biopolymer_degradation.html","biopolymer degradation"]],"b":[["PROSITE%3APS00561","CBM2a (carbohydrate-binding type-2) domain signature"]]},{"id":"UniProt:P24559","l":"","na":1,"nb":1,"a":[["morphology/twitching_motility.html","twitching motility"]],"b":[["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]]},{"id":"UniProt:P27709","l":"","na":1,"nb":1,"a":[["morphology/heterocyst.html","heterocyst"]],"b":[["Pfam%3APF18460","Heterocyst differentiation regulator C-terminal Hood domain"]]},{"id":"UniProt:P44413","l":"","na":1,"nb":1,"a":[["genomics/restriction_modification_system.html","restriction-modification system"]],"b":[["Pfam%3APF09226","Restriction endonuclease HincII"]]},{"id":"UniProt:P45573","l":"","na":1,"nb":1,"a":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["Pfam%3APF04358","DsrC like protein"]]},{"id":"UniProt:P9WG29","l":"","na":1,"nb":1,"a":[["physiology/dormancy.html","dormancy"]],"b":[["Pfam%3APF03990","G5-linked-Ubiquitin-like domain"]]},{"id":"UniProt:Q03511","l":"","na":1,"nb":1,"a":[["morphology/carboxysome.html","carboxysome"]],"b":[["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"UniProt:Q9F7P4","l":"","na":1,"nb":1,"a":[["metabolism/proteorhodopsin_phototrophy.html","proteorhodopsin phototrophy"]],"b":[["PROSITE%3APS00950","Bacterial rhodopsins signature 1"]]},{"id":"UniProt:Q9HXT9","l":"","na":1,"nb":1,"a":[["ecology/biofilm_formation.html","biofilm formation"]],"b":[["proteintraitsmech%3ABIOLIP_C2E","C2E-binding site"]]},{"id":"UniProt:S5N020","l":"","na":1,"nb":1,"a":[["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"]],"b":[["proteintraitsmech%3ABIOLIP_1VU","1VU-binding site"]]}]} \ No newline at end of file +{"a":"TraitMech","b":"ProteinTraitsMech","base":{"TraitMech":"https://culturebotai.github.io/TraitMech/pages/traits/","ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record="},"n":707,"by":{"GO":248,"NCBITaxon":136,"METPO":111,"CHEBI":109,"UniProt":56,"InterPro":47},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":65,"nb":145,"a":[["ecology/biosafety_level.html","biosafety level"],["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/host_associated.html","host-associated"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/halophily_preference.html","halophily preference"]],"b":[["IDPO%3A0000033","flexible linker"],["IDPO%3A0000014","order to disorder"],["IDPO%3A0000004","pre-molten globule"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":30,"nb":1616,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"]],"b":[["EC%3A1.1.1.170","3beta-hydroxysteroid-4alpha-carboxylate 3-dehydrogenase (decarboxylating)"],["EC%3A1.1.1.262","4-hydroxythreonine-4-phosphate dehydrogenase"],["EC%3A1.1.1.276","serine 3-dehydrogenase (NADP(+))"],["EC%3A1.1.1.286","isocitrate--homoisocitrate dehydrogenase"],["EC%3A1.1.1.305","UDP-glucuronic acid oxidase (UDP-4-keto-hexauronic acid decarboxylating)"],["EC%3A1.1.1.343","phosphogluconate dehydrogenase (NAD(+)-dependent, decarboxylating)"]]},{"id":"METPO:1000631","l":"trophic type","na":30,"nb":29,"a":[["physiology/autotrophic.html","autotrophic"],["physiology/carboxydotrophic.html","carboxydotrophic"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"]],"b":[["METPO%3A1000632","autotrophic"],["METPO%3A1000633","carboxydotrophic"],["METPO%3A1000634","chemoautolithotrophic"],["METPO%3A1000635","chemoautotrophic"],["METPO%3A1000636","chemoheterotrophic"],["METPO%3A1000637","chemolithoautotrophic"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":26,"nb":17470,"a":[["environment/ph_phenotype_with_numerical_limits.html","pH phenotype with numerical limits"],["environment/temperature_optimum_mid4.html","temperature optimum mid4"],["genomics/rnlab_system.html","RnlAB system"],["metabolism/metabolism.html","metabolism"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/respiration.html","respiration"]],"b":[["EC%3A1.1.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.16.-.-","Oxidizing metal ions"],["EC%3A1.18.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.7.-","With an iron-sulfur protein as acceptor"]]},{"id":"CHEBI:15379","l":"dioxygen","na":25,"nb":3896,"a":[["environment/aerobic.html","aerobic"],["environment/aerotolerant.html","aerotolerant"],["environment/anaerobic.html","anaerobic"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_aerobic.html","facultatively aerobic"],["environment/facultatively_anaerobic.html","facultatively anaerobic"]],"b":[["EC%3A1.1.3.10","pyranose oxidase"],["EC%3A1.1.3.11","L-sorbose oxidase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.3.13","alcohol oxidase"],["EC%3A1.1.3.14","catechol oxidase (dimerizing)"],["EC%3A1.1.3.15","(S)-2-hydroxy-acid oxidase"]]},{"id":"CHEBI:30616","l":"","na":24,"nb":2111,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/fermentation.html","Fermentation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/nitrogen_fixation.html","nitrogen fixation"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_30616","requires ATP(4−)"],["EC%3A1.13.12.7","firefly luciferase"],["EC%3A1.16.99.1","[Co(II) methylated amine-specific corrinoid protein] reductase"],["EC%3A1.18.6.1","nitrogenase"],["EC%3A1.18.6.2","vanadium-dependent nitrogenase"],["EC%3A1.19.6.1","nitrogenase (flavodoxin)"]]},{"id":"METPO:1000059","l":"phenotype","na":117,"nb":18,"a":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/habitat_association.html","habitat association"],["ecology/pathogenic_to_host.html","pathogenic to host"],["ecology/predatory_bacterium.html","predatory bacterium"],["ecology/saprotrophy.html","saprotrophy"],["ecology/symbiosis.html","symbiosis"]],"b":[["METPO%3A1000629","halophily preference"],["METPO%3A1007074","metal tolerance"],["METPO%3A1007073","osmotic tolerance"],["METPO%3A1000601","oxygen preference"],["METPO%3A1003000","pH growth preference"],["METPO%3A1000059","phenotype"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":15,"nb":46,"a":[["ecology/biosafety_level_2.html","biosafety level 2"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/coccus_shaped.html","coccus shaped"]],"b":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF13166","AAA domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF27533","CapK C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"]]},{"id":"GO:0015977","l":"carbon fixation","na":15,"nb":30,"a":[["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]],"b":[["GO%3A0009760","C4 photosynthesis"],["GO%3A0009761","CAM photosynthesis"],["GO%3A0043427","carbon fixation by 3-hydroxypropionate cycle"],["GO%3A0030634","carbon fixation by acetyl-CoA pathway"],["GO%3A0015977","carbon fixation"],["GO%3A0019643","reductive tricarboxylic acid cycle"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":18,"nb":15,"a":[["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/neutrophilic.html","neutrophilic"],["environment/non_halophilic.html","non halophilic"],["genomics/spbk_system.html","SpbK system"]],"b":[["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["Pfam%3APF14562","Restriction endonuclease BglI"],["Pfam%3APF09195","Restriction endonuclease BglII/BglIII"],["Pfam%3APF09208","Restriction endonuclease MspI"]]},{"id":"GO:0051453","l":"regulation of intracellular pH","na":17,"nb":15,"a":[["environment/acidophilic.html","acidophilic"],["environment/acidotolerant.html","acidotolerant"],["environment/alkalotolerant.html","alkalotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"]],"b":[["ComplexPortal%3ACPX-3090","Glutathione-regulated potassium-efflux system KefB-KefG complex"],["ComplexPortal%3ACPX-2543","Glutathione-regulated potassium-efflux system KefC-KefF complex"],["ComplexPortal%3ACPX-26449","Sodium/proton exchanger complex, NHE1-CHP1 variant"],["ComplexPortal%3ACPX-26462","Sodium/proton exchanger complex, NHE1-CHP2 variant"],["ComplexPortal%3ACPX-26464","Sodium/proton exchanger complex, NHE1-CHP3 variant"],["ComplexPortal%3ACPX-26469","Sodium/proton exchanger complex, NHE2-CHP1 variant"]]},{"id":"GO:0045259","l":"proton-transporting ATP synthase complex","na":13,"nb":52,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/fermentation.html","Fermentation"],["metabolism/metabolism.html","metabolism"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/carboxydotrophic.html","carboxydotrophic"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["ComplexPortal%3ACPX-25764","Mitochondrial proton translocating ATP synthase complex"],["ComplexPortal%3ACPX-3281","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-6151","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-8618","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-8619","Mitochondrial proton-transporting ATP synthase complex, testis-specific variant"]]},{"id":"CHEBI:18276","l":"dihydrogen","na":13,"nb":42,"a":[["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/does_not_use_as_electron_donor.html","does not use as electron donor"],["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"]],"b":[["EC%3A1.12.1.2","hydrogen dehydrogenase"],["EC%3A1.12.1.3","hydrogen dehydrogenase (NADP(+))"],["EC%3A1.12.1.4","hydrogenase (NAD(+), ferredoxin)"],["EC%3A1.12.1.5","hydrogen dehydrogenase [NAD(P)(+)]"],["EC%3A1.12.2.1","cytochrome-c3 hydrogenase"],["EC%3A1.12.5.1","hydrogen:quinone oxidoreductase"]]},{"id":"METPO:1000060","l":"metabolism","na":26,"nb":12,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/aromatic_compound_degradation.html","aromatic compound degradation"],["metabolism/arsenite_oxidation.html","arsenite oxidation"],["metabolism/biopolymer_degradation.html","biopolymer degradation"],["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"],["metabolism/carbon_fixation.html","carbon fixation"]],"b":[["METPO%3A1000845","Acetogenesis"],["METPO%3A1002003","Cable bacteria metabolism"],["METPO%3A1000806","Disproportionation"],["METPO%3A1000805","Electron transfer"],["METPO%3A1002005","Fermentation"],["METPO%3A1000846","Homoacetogenesis"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":11,"nb":93,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"],["morphology/carboxysome.html","carboxysome"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17544","requires hydrogencarbonate"],["EC%3A1.13.11.73","methylphosphonate synthase"],["EC%3A1.2.1.27","methylmalonate-semialdehyde dehydrogenase (CoA acylating)"],["EC%3A2.5.1.120","aminodeoxyfutalosine synthase"],["EC%3A2.5.1.143","pyridinium-3,5-biscarboxylic acid mononucleotide synthase"],["EC%3A2.7.2.2","carbamate kinase"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":11,"nb":19,"a":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/aerobic.html","aerobic"],["genomics/avast_system.html","AVAST system"],["genomics/jukab_system.html","JukAB system"],["morphology/motile.html","motile"]],"b":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"],["Pfam%3APF18173","Bacterial HORMA domain 2"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["Pfam%3APF27322","Cap8 HORMA domain"],["Pfam%3APF01526","Tn3 transposase DDE domain"]]},{"id":"GO:0006113","l":"fermentation","na":11,"nb":14,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"],["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["ComplexPortal%3ACPX-281","Hydrogenase-1 complex"],["GO%3A0030645","acetyl-CoA fermentation to butanoate"],["GO%3A0019665","amino acid fermentation"],["GO%3A0019588","anaerobic glycerol catabolic process"],["GO%3A0019658","bifid shunt"],["GO%3A0044577","D-xylose fermentation"]]},{"id":"GO:0004177","l":"aminopeptidase activity","na":10,"nb":58,"a":[["physiology/arginine_arylamidase_activity.html","arginine arylamidase activity"],["physiology/cystine_arylamidase_activity.html","cystine arylamidase activity"],["physiology/glycine_arylamidase_activity.html","glycine arylamidase activity"],["physiology/histidine_arylamidase_activity.html","histidine arylamidase activity"],["physiology/leucine_arylamidase_activity.html","leucine arylamidase activity"],["physiology/phenylalanine_arylamidase_activity.html","phenylalanine arylamidase activity"]],"b":[["EC%3A3.4.11.1","leucyl aminopeptidase"],["EC%3A3.4.11.21","aspartyl aminopeptidase"],["EC%3A3.4.11.22","aminopeptidase I"],["EC%3A3.4.11.5","prolyl aminopeptidase"],["EC%3A3.4.11.6","aminopeptidase B"],["EC%3A3.4.11.9","Xaa-Pro aminopeptidase"]]},{"id":"GO:0022900","l":"electron transport chain","na":10,"nb":50,"a":[["environment/obligately_aerobic.html","obligately aerobic"],["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/electron_transfer.html","Electron transfer"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"]],"b":[["GO%3A0022900","electron transport chain"],["GO%3A0140647","P450-containing electron transport chain"],["GO%3A0009767","photosynthetic electron transport chain"],["GO%3A0022904","respiratory electron transport chain"],["NCBIfam%3ANF058577","4Fe-4S ferredoxin"],["NCBIfam%3ANF042982","8-methylmenaquinol:fumarate reductase flavoprotein subunit"]]},{"id":"GO:0022904","l":"respiratory electron transport chain","na":10,"nb":30,"a":[["metabolism/metabolism.html","metabolism"],["physiology/carboxydotrophic.html","carboxydotrophic"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"]],"b":[["ComplexPortal%3ACPX-865","Electron transfer flavoprotein complex"],["ComplexPortal%3ACPX-2731","Mitochondrial electron transfer flavoprotein complex"],["ComplexPortal%3ACPX-243","Respiratory chain complex I"],["GO%3A0019646","aerobic electron transport chain"],["GO%3A0019645","anaerobic electron transport chain"],["GO%3A0042773","ATP synthesis coupled electron transport"]]},{"id":"METPO:1000601","l":"oxygen preference","na":12,"nb":10,"a":[["environment/aerobic.html","aerobic"],["environment/aerotolerant.html","aerotolerant"],["environment/anaerobic.html","anaerobic"],["environment/capnophilic.html","capnophilic"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_aerobic.html","facultatively aerobic"]],"b":[["METPO%3A1000602","aerobic"],["METPO%3A1000609","aerotolerant"],["METPO%3A1000603","anaerobic"],["METPO%3A1005021","capnophilic"],["METPO%3A1000612","facultative oxygen preference"],["METPO%3A1000608","facultatively aerobic"]]},{"id":"CHEBI:17632","l":"nitrate","na":9,"nb":40,"a":[["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"],["metabolism/does_not_use_as_electron_acceptor.html","does not use as electron acceptor"]],"b":[["EC%3A1.14.12.17","nitric oxide dioxygenase"],["EC%3A1.7.1.1","nitrate reductase (NADH)"],["EC%3A1.7.1.2","nitrate reductase [NAD(P)H]"],["EC%3A1.7.1.3","nitrate reductase (NADPH)"],["EC%3A1.7.5.1","nitrate reductase (quinone)"],["EC%3A1.7.6.1","nitrite dismutase"]]},{"id":"GO:0006970","l":"response to osmotic stress","na":9,"nb":15,"a":[["environment/extremely_halophilic.html","extremely halophilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/halotolerant.html","halotolerant"],["environment/moderately_halophilic.html","moderately halophilic"],["environment/nacl_delta.html","NaCl delta"]],"b":[["GO%3A0071470","cellular response to osmotic stress"],["GO%3A0043575","detection of osmotic stimulus"],["GO%3A0006972","hyperosmotic response"],["GO%3A0006971","hypotonic response"],["GO%3A0010335","response to non-ionic osmotic stress"],["GO%3A0006970","response to osmotic stress"]]},{"id":"GO:0009767","l":"photosynthetic electron transport chain","na":9,"nb":13,"a":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["metabolism/phototrophy.html","phototrophy"],["physiology/photoautotrophic.html","photoautotrophic"],["physiology/photoheterotrophic.html","photoheterotrophic"]],"b":[["GO%3A0009767","photosynthetic electron transport chain"],["GO%3A0009773","photosynthetic electron transport in photosystem I"],["GO%3A0009772","photosynthetic electron transport in photosystem II"],["NCBIfam%3ATIGR01332","cytochrome b559 subunit alpha"],["NCBIfam%3ATIGR01333","cytochrome b559 subunit beta"],["NCBIfam%3ATIGR01156","cytochrome b6-f complex subunit IV"]]},{"id":"CHEBI:15378","l":"hydron","na":8,"nb":14383,"a":[["environment/acidophilic.html","acidophilic"],["environment/acidotolerant.html","acidotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"],["environment/obligately_acidophilic.html","obligately acidophilic"]],"b":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.1.10","L-xylulose reductase"],["EC%3A1.1.1.100","3-oxoacyl-[acyl-carrier-protein] reductase"],["EC%3A1.1.1.101","acylglycerone-phosphate reductase"],["EC%3A1.1.1.102","3-dehydrosphinganine reductase"],["EC%3A1.1.1.103","L-threonine 3-dehydrogenase"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":8,"nb":680,"a":[["environment/aerotolerant.html","aerotolerant"],["environment/microaerophilic.html","microaerophilic"],["environment/microaerotolerant.html","microaerotolerant"],["environment/obligately_aerobic.html","obligately aerobic"],["environment/obligately_anaerobic.html","obligately anaerobic"],["environment/oxygen_preference.html","oxygen preference"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16240","requires hydrogen peroxide"],["EC%3A1.1.3.10","pyranose oxidase"],["EC%3A1.1.3.11","L-sorbose oxidase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.3.13","alcohol oxidase"],["EC%3A1.1.3.15","(S)-2-hydroxy-acid oxidase"]]},{"id":"GO:0009061","l":"anaerobic respiration","na":8,"nb":36,"a":[["environment/anaerobic.html","anaerobic"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["ComplexPortal%3ACPX-4841","Anaerobic glycerol-3-phosphate dehydrogenase complex"],["ComplexPortal%3ACPX-317","Formate hydrogenlyase-H/Hydrogenase-3 complex"],["ComplexPortal%3ACPX-6028","Formate hydrogenlyase-H/Hydrogenase-4 complex"],["ComplexPortal%3ACPX-281","Hydrogenase-1 complex"],["ComplexPortal%3ACPX-282","Hydrogenase-2 complex"],["ComplexPortal%3ACPX-3447","NapAB nitrate reductase complex"]]},{"id":"CHEBI:17750","l":"glycine betaine","na":8,"nb":33,"a":[["environment/euryhaline.html","euryhaline"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/moderately_halophilic.html","moderately halophilic"],["environment/nacl_optimum_mid1.html","NaCl optimum mid1"],["environment/nacl_optimum_mid2.html","NaCl optimum mid2"],["environment/nacl_range_mid2.html","NaCl range mid2"]],"b":[["EC%3A1.1.3.17","choline oxidase"],["EC%3A1.13.11.90","[1-hydroxy-2-(trimethylamino)ethyl]phosphonate dioxygenase (glycine- betaine-forming)"],["EC%3A1.14.13.251","glycine betaine monooxygenase"],["EC%3A1.2.1.8","betaine-aldehyde dehydrogenase"],["EC%3A1.21.4.4","betaine reductase"],["EC%3A2.1.1.157","sarcosine/dimethylglycine N-methyltransferase"]]},{"id":"GO:0009060","l":"aerobic respiration","na":8,"nb":25,"a":[["environment/aerobic.html","aerobic"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_aerobic.html","facultatively aerobic"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/obligately_aerobic.html","obligately aerobic"],["metabolism/aerobic_respiration.html","Aerobic respiration"]],"b":[["ComplexPortal%3ACPX-266","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-577","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-319","Trimethylamine-N-oxide reductase TorAC complex"],["GO%3A0019646","aerobic electron transport chain"],["GO%3A0009060","aerobic respiration"],["GO%3A0019409","aerobic respiration, using ammonia as electron donor"]]},{"id":"METPO:1003000","l":"pH growth preference","na":10,"nb":8,"a":[["environment/acidophilic.html","acidophilic"],["environment/acidotolerant.html","acidotolerant"],["environment/alkalotolerant.html","alkalotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"]],"b":[["METPO%3A1003003","acidophilic"],["METPO%3A1003008","acidotolerant"],["METPO%3A1003002","alkaliphilic"],["METPO%3A1003009","alkalotolerant"],["METPO%3A1003007","facultatively acidophilic"],["METPO%3A1003005","facultatively alkaliphilic"]]},{"id":"METPO:1000613","l":"temperature preference","na":9,"nb":8,"a":[["environment/extreme_hyperthermophilic.html","extreme hyperthermophilic"],["environment/facultative_psychrophilic.html","facultative psychrophilic"],["environment/hyperthermophilic.html","hyperthermophilic"],["environment/mesophilic.html","mesophilic"],["environment/psychrophilic.html","psychrophilic"],["environment/psychrotolerant.html","psychrotolerant"]],"b":[["METPO%3A1000720","facultative psychrophilic"],["METPO%3A1000617","hyperthermophilic"],["METPO%3A1000615","mesophilic"],["METPO%3A1000614","psychrophilic"],["METPO%3A1000618","psychrotolerant"],["METPO%3A1000613","temperature preference"]]},{"id":"CHEBI:15361","l":"pyruvate","na":7,"nb":410,"a":[["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15361","requires pyruvate"],["EC%3A1.1.1.27","L-lactate dehydrogenase"],["EC%3A1.1.1.28","D-lactate dehydrogenase"],["EC%3A1.1.1.38","malate dehydrogenase (oxaloacetate-decarboxylating)"],["EC%3A1.1.1.39","malate dehydrogenase (decarboxylating)"],["EC%3A1.1.1.40","malate dehydrogenase (oxaloacetate-decarboxylating) (NADP(+))"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":7,"nb":396,"a":[["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/iron_oxidation.html","iron oxidation"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29033","requires iron(2+)"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.11","glucoside 3-dehydrogenase (cytochrome c)"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.2.3","L-lactate dehydrogenase (cytochrome)"],["EC%3A1.1.2.4","D-lactate dehydrogenase (cytochrome)"]]},{"id":"CHEBI:29101","l":"sodium(1+)","na":7,"nb":292,"a":[["environment/alkaphilic.html","alkaliphilic"],["environment/euryhaline.html","euryhaline"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/nacl_delta_mid2.html","NaCl delta mid2"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29101","requires sodium(1+)"],["EC%3A7.2.1.1","NADH:ubiquinone reductase (Na(+)-transporting)"],["EC%3A7.2.1.2","ferredoxin--NAD(+) oxidoreductase (Na(+)-transporting)"],["EC%3A7.2.1.4","tetrahydromethanopterin S-methyltransferase"],["EC%3A7.2.2.1","Na(+)-transporting two-sector ATPase"],["EC%3A7.2.2.13","Na(+)/K(+)-exchanging ATPase"]]},{"id":"CHEBI:16189","l":"sulfate","na":7,"nb":133,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"],["metabolism/disproportionation.html","Disproportionation"],["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"],["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16189","requires sulfate"],["EC%3A1.14.11.77","alkyl sulfatase"],["EC%3A1.8.2.1","sulfite dehydrogenase (cytochrome)"],["EC%3A1.8.3.1","sulfite oxidase"],["EC%3A1.8.5.6","sulfite dehydrogenase (quinone)"],["EC%3A2.7.7.4","sulfate adenylyltransferase"]]},{"id":"GO:0009288","l":"bacterial-type flagellum","na":7,"nb":31,"a":[["morphology/amphitrichous.html","amphitrichous"],["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/lophotrichous.html","lophotrichous"],["morphology/monotrichous.html","monotrichous"],["morphology/non_motile.html","non motile"],["morphology/peritrichous.html","peritrichous"]],"b":[["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009288","bacterial-type flagellum"]]},{"id":"GO:0004096","l":"catalase activity","na":7,"nb":20,"a":[["environment/aerotolerant.html","aerotolerant"],["environment/desiccation_tolerant.html","desiccation tolerant"],["environment/microaerophilic.html","microaerophilic"],["environment/oxygen_preference.html","oxygen preference"],["environment/uv_radiation_tolerant.html","UV radiation tolerant"],["other/catalase_negative.html","catalase negative"]],"b":[["EC%3A1.11.1.6","catalase"],["METPO%3A1007084","catalase negative"],["METPO%3A1007083","catalase positive"],["RHEA%3A20309","2 H2O2 = O2 + 2 H2O"],["ComplexPortal%3ACPX-4742","Catalase complex"],["ComplexPortal%3ACPX-4767","Catalase complex"]]},{"id":"METPO:1000629","l":"halophily preference","na":10,"nb":7,"a":[["environment/euryhaline.html","euryhaline"],["environment/extremely_halophilic.html","extremely halophilic"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/halotolerant.html","halotolerant"]],"b":[["METPO%3A1000627","euryhaline"],["METPO%3A1000621","haloalkaliphilic"],["METPO%3A1000620","halophilic"],["METPO%3A1000629","halophily preference"],["METPO%3A1000622","halotolerant"],["METPO%3A1000624","non halophilic"]]},{"id":"CHEBI:65015","l":"","na":7,"nb":7,"a":[["environment/euryhaline.html","euryhaline"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/halotolerant.html","halotolerant"],["environment/nacl_optimum.html","NaCl optimum"]],"b":[["EC%3A1.1.3.43","paromamine 6'-oxidase"],["EC%3A2.4.1.301","2'-deamino-2'-hydroxyneamine 1-alpha-D-kanosaminyltransferase"],["EC%3A3.5.1.112","2'-N-acetylparomamine deacetylase"],["RHEA%3A34031","2'-N-acetylparomamine + H2O = paromamine + acetate"],["RHEA%3A34035","paromamine + O2 = 6'-oxoparomamine + H2O2"],["RHEA%3A35927","paromamine + UDP-alpha-D-glucose = 3'-deamino-3'-hydroxykanamycin C + UDP + H(+)"]]},{"id":"GO:0042710","l":"biofilm formation","na":7,"nb":7,"a":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/host_associated.html","host-associated"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["ecology/plant_pathogen.html","plant pathogen"],["ecology/rhizosphere_association.html","rhizosphere association"]],"b":[["GO%3A0042710","biofilm formation"],["GO%3A0044399","multi-species biofilm formation"],["GO%3A0044010","single-species biofilm formation"],["GO%3A0090605","submerged biofilm formation"],["GO%3A0090604","surface biofilm formation"],["Reactome%3AR-HSA-9931953","Biofilm formation"]]},{"id":"NCBITaxon:1111708","l":"Synechocystis sp. (strain ATCC 27184 / PCC 6803 / Kazusa)","na":6,"nb":61,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/photoautotrophic.html","photoautotrophic"],["physiology/photolithotrophic.html","photolithotrophic"],["physiology/phototrophic.html","phototrophic"]],"b":[["Pfam%3APF07698","7TM receptor with intracellular HD hydrolase"],["Pfam%3APF07697","7TM-HD extracellular"],["Pfam%3APF11266","Long-chain fatty aldehyde decarbonylase"],["Pfam%3APF21571","Arginine dihydrolase ArgZ-like, C-terminal, first region"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF17886","HSP20-like domain found in ArsA"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":6,"nb":30,"a":[["metabolism/butanediol_fermentation.html","2,3-butanediol fermentation"],["metabolism/citrate_fermentation.html","citrate fermentation"],["morphology/capsule.html","capsule"],["morphology/non_motile.html","non motile"],["other/indole_test_negative.html","indole test negative"],["other/methyl_red_test_negative.html","methyl red test negative"]],"b":[["Pfam%3APF08787","Alginate lyase"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF08218","Citrate lyase ligase C-terminal domain"],["Pfam%3APF13727","CoA-binding domain"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["Pfam%3APF20714","DpiA-like helix-turn-helix domain"]]},{"id":"GO:0016117","l":"carotenoid biosynthetic process","na":6,"nb":26,"a":[["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/cream_pigmented.html","cream pigmented"],["morphology/orange_pigmented.html","orange pigmented"],["morphology/pigmentation.html","pigmentation"],["morphology/pink_pigmented.html","pink pigmented"],["morphology/yellow_pigmented.html","yellow pigmented"]],"b":[["GO%3A1901824","alpha-carotene biosynthetic process"],["GO%3A1901821","alpha-zeacarotene biosynthetic process"],["GO%3A1901812","beta-carotene biosynthetic process"],["GO%3A1901818","beta-zeacarotene biosynthetic process"],["GO%3A0016117","carotenoid biosynthetic process"],["GO%3A0016123","xanthophyll biosynthetic process"]]},{"id":"GO:0006754","l":"ATP biosynthetic process","na":6,"nb":22,"a":[["environment/aerobic.html","aerobic"],["environment/ph_range_mid2.html","pH range mid2"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/lithoautotrophic.html","lithoautotrophic"],["physiology/mixotrophic.html","mixotrophic"]],"b":[["GO%3A0006756","AMP phosphorylation"],["GO%3A0006754","ATP biosynthetic process"],["GO%3A0015986","proton motive force-driven ATP synthesis"],["NCBIfam%3ATIGR02546","type III secretion system ATPase SctN"],["InterPro%3AIPR020971","ATP synthase, F1 beta subunit"],["PANTHER%3APTHR11910","ATP SYNTHASE DELTA CHAIN"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":6,"nb":20,"a":[["ecology/free_living.html","free-living"],["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["genomics/transposable_element.html","transposable element"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"]],"b":[["Pfam%3APF14535","AMP-binding enzyme C-terminal domain"],["Pfam%3APF13442","Cytochrome C oxidase, cbb3-type, subunit III"],["Pfam%3APF22247","Catechol 2,3-dioxygenase-like N-terminal domain"],["Pfam%3APF25371","Domain of unknown function (DUF7884)"],["Pfam%3APF19301","LigXa C-terminal domain like"],["Pfam%3APF12729","Four helix bundle sensory module for signal transduction"]]},{"id":"CHEBI:16134","l":"ammonia","na":6,"nb":11,"a":[["environment/ph_delta_mid1.html","pH delta mid1"],["metabolism/nitrogen_fixation.html","nitrogen fixation"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"],["physiology/urease_activity.html","urease activity"]],"b":[["TCDB%3A1.A.11","The Ammonium Transporter Channel (Amt) Family"],["MCSA%3A376","adenosine deaminase"],["MCSA%3A75","aspartate-ammonia ligase"],["MCSA%3A449","cystathionine beta-lyase"],["MCSA%3A97","cytidine deaminase"],["MCSA%3A710","cytosine deaminase (bacterial)"]]},{"id":"NCBITaxon:266264","l":"Cupriavidus metallidurans CH34","na":6,"nb":10,"a":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/copper_tolerant.html","copper tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["environment/zinc_tolerant.html","zinc tolerant"]],"b":[["Pfam%3APF25973","CzcB-like, barrel-sandwich hybrid domain"],["Pfam%3APF09828","ChrB, C-terminal domain"],["Pfam%3APF20229","Protein ChrB, N-terminal"],["Pfam%3APF01923","Cobalamin adenosyltransferase"],["Pfam%3APF25975","CzcB C-terminal circularly permuted SH3-like domain"],["Pfam%3APF25971","CzcB, N-terminal domain"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":6,"nb":10,"a":[["ecology/animal_pathogen.html","animal pathogen"],["ecology/biosafety_level_2.html","biosafety level 2"],["genomics/genomic_island.html","genomic island"],["genomics/prophage.html","prophage"],["morphology/flagellated.html","flagellated"],["morphology/peritrichous.html","peritrichous"]],"b":[["TED%3AAF-A0A5T2E4X7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5T2E4X7-F1-model_v4_TED01"],["TED%3AAF-A0A5Y4BP44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Y4BP44-F1-model_v4_TED01"],["TED%3AAF-A0A623P6F3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A623P6F3-F1-model_v4_TED02"],["TED%3AAF-A0A721BDS7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A721BDS7-F1-model_v4_TED02"],["TED%3AAF-A0A743P324-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A743P324-F1-model_v4_TED01"],["TED%3AAF-A0A757VWR3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A757VWR3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":6,"nb":9,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/oxidase_activity.html","oxidase activity"]],"b":[["Pfam%3APF07835","Bacterial aa3 type cytochrome c oxidase subunit IV"],["Pfam%3APF04828","Glutathione-dependent formaldehyde-activating enzyme"],["Pfam%3APF16448","LapD/MoxY periplasmic domain"],["Pfam%3APF17267","Family of unknown function (DUF5333)"],["Pfam%3APF17272","Family of unknown function (DUF5337)"],["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"]]},{"id":"GO:0009292","l":"horizontal gene transfer","na":6,"nb":7,"a":[["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["genomics/genome_size.html","genome size"],["genomics/genomic_island.html","genomic island"],["genomics/mobile_genetic_element.html","mobile genetic element"],["genomics/pangenome_openness.html","pangenome openness"]],"b":[["GO%3A0009294","DNA-mediated transformation"],["GO%3A0009292","horizontal gene transfer"],["GO%3A0009293","transduction"],["GO%3A0009291","unidirectional conjugation"],["NCBIfam%3ATIGR04359","entry exclusion lipoprotein TrbK"],["NCBIfam%3ATIGR04361","entry exclusion protein TrbK"]]},{"id":"CHEBI:16474","l":"","na":6,"nb":6,"a":[["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16474","requires NADPH"],["MCSA%3A112","dihydrofolate reductase (bacterial)"],["MCSA%3A6","glutathione-disulfide reductase"],["MCSA%3A7","isocitrate dehydrogenase (NADP+)"],["MCSA%3A21","malate dehydrogenase (oxaloacetate-decarboxylating)"],["proteintraitsmech%3ABIOLIP_NDP","NDP-binding site"]]},{"id":"CHEBI:16301","l":"nitrite","na":5,"nb":116,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["EC%3A1.13.11.64","5-nitrosalicylate dioxygenase"],["EC%3A1.13.12.16","nitronate monooxygenase"],["EC%3A1.14.12.23","nitroarene dioxygenase"],["EC%3A1.14.12.24","2,4-dinitrotoluene dioxygenase"],["EC%3A1.14.13.166","4-nitrocatechol 4-monooxygenase"],["EC%3A1.14.13.167","4-nitrophenol 4-monooxygenase"]]},{"id":"GO:0009056","l":"catabolic process","na":5,"nb":109,"a":[["metabolism/metabolism.html","metabolism"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"],["physiology/heterotrophic.html","heterotrophic"],["physiology/organotrophic.html","organotrophic"]],"b":[["GO%3A0018911","1,2,4-trichlorobenzene catabolic process"],["GO%3A0019261","1,4-dichlorobenzene catabolic process"],["GO%3A0046302","2-chloro-N-isopropylacetanilide catabolic process"],["GO%3A1901851","7,8-didemethyl-8-hydroxy-5-deazariboflavin catabolic process"],["GO%3A0006581","acetylcholine catabolic process"],["GO%3A0046185","aldehyde catabolic process"]]},{"id":"GO:0006935","l":"chemotaxis","na":5,"nb":64,"a":[["morphology/flagellated.html","flagellated"],["morphology/motile.html","motile"],["morphology/motility.html","motility"],["physiology/chemotaxis.html","chemotaxis"],["physiology/copiotrophic.html","copiotrophic"]],"b":[["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009454","aerotaxis"]]},{"id":"CHEBI:29103","l":"potassium(1+)","na":5,"nb":32,"a":[["environment/extremely_halophilic.html","extremely halophilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/non_halophilic.html","non halophilic"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29103","requires potassium(1+)"],["EC%3A7.2.2.13","Na(+)/K(+)-exchanging ATPase"],["EC%3A7.2.2.19","H(+)/K(+)-exchanging ATPase"],["EC%3A7.2.2.6","P-type K(+) transporter"],["RHEA%3A18353","2 K(+)(out) + 3 Na(+)(in) + ATP + H2O = 2 K(+)(in) + 3 Na(+)(out) + ADP + phosphate + H(+)"],["RHEA%3A69967","Ca(2+)(out) + K(+)(out) + 4 Na(+)(in) = Ca(2+)(in) + K(+)(in) + 4 Na(+)(out)"]]},{"id":"GO:0004784","l":"superoxide dismutase activity","na":5,"nb":27,"a":[["environment/aerotolerant.html","aerotolerant"],["environment/desiccation_tolerant.html","desiccation tolerant"],["environment/microaerophilic.html","microaerophilic"],["environment/obligately_aerobic.html","obligately aerobic"],["environment/oxygen_preference.html","oxygen preference"]],"b":[["EC%3A1.15.1.1","superoxide dismutase"],["RHEA%3A20696","2 superoxide + 2 H(+) = H2O2 + O2"],["ComplexPortal%3ACPX-21824","CCS-SOD1, oxidative stress response complex"],["ComplexPortal%3ACPX-2896","[Cu-Zn] Superoxide dismutase complex"],["ComplexPortal%3ACPX-2897","[Cu-Zn] Superoxide dismutase complex"],["ComplexPortal%3ACPX-2898","[Cu-Zn] Superoxide dismutase complex"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":5,"nb":23,"a":[["genomics/gabija_system.html","Gabija system"],["genomics/shedu_system.html","Shedu system"],["genomics/thoeris_system.html","Thoeris system"],["physiology/caseinase_activity.html","caseinase activity"],["physiology/lecithinase_activity.html","lecithinase activity"]],"b":[["Pfam%3APF08878","HamA"],["Pfam%3APF05791","Bacillus haemolytic enterotoxin (HBL)"],["Pfam%3APF10803","Spore germination GerPB"],["Pfam%3APF10737","Spore germination protein GerPC"],["Pfam%3APF10970","Spore germination protein GerPE"],["Pfam%3APF07486","Cell Wall Hydrolase"]]},{"id":"CHEBI:15948","l":"","na":5,"nb":20,"a":[["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/orange_pigmented.html","orange pigmented"],["morphology/pink_pigmented.html","pink pigmented"],["morphology/red_pigmented.html","red pigmented"],["morphology/yellow_pigmented.html","yellow pigmented"]],"b":[["EC%3A1.3.99.26","all-trans-zeta-carotene desaturase"],["EC%3A1.3.99.31","phytoene desaturase (lycopene-forming)"],["EC%3A2.5.1.149","lycopene elongase/hydratase (flavuxanthin-forming)"],["EC%3A2.5.1.150","lycopene elongase/hydratase (dihydrobisanhydrobacterioruberin-forming)"],["EC%3A4.2.1.131","carotenoid 1,2-hydratase"],["EC%3A5.2.1.13","prolycopene isomerase"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":13,"a":[["metabolism/chitinolysis.html","chitinolysis"],["morphology/pigmentation.html","pigmentation"],["morphology/red_pigmented.html","red pigmented"],["morphology/white_pigmented.html","white pigmented"],["physiology/beta_n_acetylhexosaminidase_activity.html","beta-N-acetylhexosaminidase activity"]],"b":[["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF03173","Putative carbohydrate binding domain"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"],["Pfam%3APF06438","Heme-binding protein A (HasA)"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF05247","Flagellar transcriptional activator (FlhD)"]]},{"id":"GO:0031470","l":"carboxysome","na":5,"nb":10,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["morphology/carboxysome.html","carboxysome"],["physiology/autotrophic.html","autotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["GO%3A0031470","carboxysome"],["NCBIfam%3ANF053791","alpha-carboxysome major shell protein CsoS1"],["NCBIfam%3ANF049993","beta-carboxysome assembly chaperone CcmS"],["NCBIfam%3ANF053792","beta-carboxysome assembly protein CcmO"],["NCBIfam%3ANF053796","beta-carboxysome protein CcmP"],["NCBIfam%3ANF053793","beta-carboxysome scaffolding protein CcmN"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":5,"nb":10,"a":[["metabolism/dimethyl_sulfoxide_respiration.html","dimethyl sulfoxide respiration"],["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/electron_transfer.html","Electron transfer"]],"b":[["Pfam%3APF27445","Adaptation to cold protein A"],["Pfam%3APF27450","AtcB C-terminal domain"],["Pfam%3APF27486","AtcB N-terminal domain"],["Pfam%3APF02464","CinA C-terminal domain"],["Pfam%3APF13657","HipA N-terminal domain"],["Pfam%3APF01934","Ribonuclease HepT-like"]]},{"id":"GO:0009274","l":"peptidoglycan-based cell wall","na":5,"nb":8,"a":[["morphology/cell_shape.html","cell shape"],["morphology/cell_width.html","cell width"],["morphology/gram_stain.html","gram stain"],["morphology/pleomorphic_shaped.html","pleomorphic shaped"],["morphology/sphere_shaped.html","sphere shaped"]],"b":[["GO%3A0009276","Gram-negative-bacterium-type cell wall"],["GO%3A0009275","Gram-positive-bacterium-type cell wall"],["GO%3A0009274","peptidoglycan-based cell wall"],["NCBIfam%3ANF007061","bifunctional glycosyl transferase/transpeptidase"],["NCBIfam%3ATIGR03656","heme uptake protein IsdC"],["NCBIfam%3ATIGR02070","monofunctional biosynthetic peptidoglycan transglycosylase"]]},{"id":"InterPro:IPR001765","l":"","na":6,"nb":5,"a":[["metabolism/carbon_fixation.html","carbon fixation"],["morphology/carboxysome.html","carboxysome"],["physiology/autotrophic.html","autotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]],"b":[["Pfam%3APF00484","Carbonic anhydrase"],["PANTHER%3APTHR11002","CARBONIC ANHYDRASE"],["PANTHER%3APTHR43175","CARBONIC ANHYDRASE"],["PROSITE%3APS00704","Prokaryotic-type carbonic anhydrases signature 1"],["PROSITE%3APS00705","Prokaryotic-type carbonic anhydrases signature 2"]]},{"id":"NCBITaxon:224308","l":"Bacillus subtilis (strain 168)","na":4,"nb":11310,"a":[["metabolism/proteolysis.html","proteolysis"],["morphology/spore_forming.html","spore forming"],["morphology/spore_shaped.html","spore shaped"],["morphology/sporulation.html","sporulation"]],"b":[["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.10.3.-","With oxygen as acceptor"],["EC%3A1.13.12.-","With incorporation of one atom of oxygen (internal monooxygenases or internal mixed function oxidases)"],["EC%3A1.14.19.-","With oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water"],["EC%3A1.17.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.21.98.-","With other, known acceptors"]]},{"id":"CHEBI:15377","l":"water","na":4,"nb":9376,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["physiology/catalase_activity.html","catalase activity"],["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["EC%3A1.1.1.115","ribose 1-dehydrogenase (NADP(+))"],["EC%3A1.1.1.132","GDP-mannose 6-dehydrogenase"],["EC%3A1.1.1.136","UDP-N-acetylglucosamine 6-dehydrogenase"],["EC%3A1.1.1.186","dTDP-galactose 6-dehydrogenase"],["EC%3A1.1.1.192","long-chain-alcohol dehydrogenase"],["EC%3A1.1.1.205","IMP dehydrogenase"]]},{"id":"GO:0006412","l":"translation","na":4,"nb":455,"a":[["environment/mesophilic.html","mesophilic"],["genomics/codon_usage_bias.html","codon usage bias"],["physiology/cold_shock_response.html","cold shock response"],["physiology/dormancy.html","dormancy"]],"b":[["GO%3A0002181","cytoplasmic translation"],["GO%3A0032543","mitochondrial translation"],["GO%3A0032544","plastid translation"],["GO%3A0140241","translation at synapse"],["GO%3A0006412","translation"],["Reactome%3AR-HSA-72766","Translation"]]},{"id":"CHEBI:30089","l":"acetate","na":4,"nb":302,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["EC%3A1.1.1.318","eugenol synthase"],["EC%3A1.1.1.319","isoeugenol synthase"],["EC%3A1.13.11.50","acetylacetone-cleaving enzyme"],["EC%3A1.13.12.4","lactate 2-monooxygenase"],["EC%3A1.14.13.54","ketosteroid monooxygenase"],["EC%3A1.14.14.19","steroid 17alpha-monooxygenase"]]},{"id":"GO:0009252","l":"peptidoglycan biosynthetic process","na":4,"nb":90,"a":[["morphology/bacillus_shaped.html","bacillus shaped"],["morphology/cell_shape.html","cell shape"],["morphology/coccobacillus_shaped.html","coccobacillus shaped"],["morphology/rod_shaped.html","rod shaped"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["GO%3A0009252","peptidoglycan biosynthetic process"],["GO%3A0018104","peptidoglycan-protein cross-linking"],["NCBIfam%3ATIGR00492","alanine racemase"],["NCBIfam%3ANF007061","bifunctional glycosyl transferase/transpeptidase"],["NCBIfam%3ANF006986","bifunctional UDP-N-acetylglucosamine diphosphorylase/glucosamine-1-phosphate N-acetyltransferase GlmU"]]},{"id":"GO:0051301","l":"cell division","na":4,"nb":86,"a":[["morphology/sarcina_arrangement.html","sarcina arrangement"],["morphology/staphylococcus_arrangement.html","staphylococcus arrangement"],["morphology/streptococcus_arrangement.html","streptococcus arrangement"],["morphology/tetrad_arrangement.html","tetrad arrangement"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["ComplexPortal%3ACPX-5782","Tol-Pal cell envelope complex"],["GO%3A0090510","anticlinal cell division"],["GO%3A0008356","asymmetric cell division"],["GO%3A0007114","cell budding"],["GO%3A0051301","cell division"]]},{"id":"GO:0042597","l":"periplasmic space","na":4,"nb":76,"a":[["morphology/axially_filamented.html","axially filamented"],["morphology/gram_negative.html","gram negative"],["physiology/methylotrophic.html","methylotrophic"],["physiology/natural_competence.html","natural competence"]],"b":[["ComplexPortal%3ACPX-3447","NapAB nitrate reductase complex"],["ComplexPortal%3ACPX-4281","PaoABC periplasmic aldehyde oxidoreductase"],["GO%3A0030287","cell wall-bounded periplasmic space"],["GO%3A0030288","outer membrane-bounded periplasmic space"],["GO%3A0042597","periplasmic space"],["GO%3A0036240","septal periplasm"]]},{"id":"GO:0030001","l":"metal ion transport","na":4,"nb":66,"a":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/metal_tolerant.html","metal tolerant"]],"b":[["GO%3A0015690","aluminum cation transport"],["GO%3A0006816","calcium ion transport"],["GO%3A0015692","lead ion transport"],["GO%3A0010351","lithium ion transport"],["GO%3A0015693","magnesium ion transport"],["GO%3A0030001","metal ion transport"]]},{"id":"GO:0009523","l":"photosystem II","na":4,"nb":59,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["GO%3A0030095","chloroplast photosystem II"],["GO%3A0009523","photosystem II"],["GO%3A0030096","plasma membrane-derived thylakoid photosystem II"],["NCBIfam%3ATIGR01332","cytochrome b559 subunit alpha"],["NCBIfam%3ATIGR01333","cytochrome b559 subunit beta"],["NCBIfam%3ANF012505","Lumenal portion of Cytochrome b559, alpha (gene psbE) subunit"]]},{"id":"CHEBI:17245","l":"carbon monoxide","na":4,"nb":31,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["physiology/carboxydotrophic.html","carboxydotrophic"],["physiology/oxidase_activity.html","oxidase activity"]],"b":[["EC%3A1.13.11.24","quercetin 2,3-dioxygenase"],["EC%3A1.13.11.47","3-hydroxy-4-oxoquinoline 2,4-dioxygenase"],["EC%3A1.13.11.48","3-hydroxy-2-methylquinolin-4-one 2,4-dioxygenase"],["EC%3A1.13.11.53","acireductone dioxygenase (Ni(2+)-requiring)"],["EC%3A1.14.14.18","heme oxygenase (biliverdin-producing)"],["EC%3A1.14.15.20","heme oxygenase (biliverdin-producing, ferredoxin)"]]},{"id":"NCBITaxon:171101","l":"Streptococcus pneumoniae (strain ATCC BAA-255 / R6)","na":4,"nb":31,"a":[["morphology/ellipsoidal.html","ellipsoidal"],["morphology/oval_shaped.html","oval shaped"],["morphology/ovoid_shaped.html","ovoid shaped"],["physiology/natural_competence.html","natural competence"]],"b":[["Pfam%3APF03590","Aspartate-ammonia ligase"],["Pfam%3APF25935","LcnD-like, barrel-sandwich hybrid domain"],["Pfam%3APF24568","Peptidoglycan hydrolase PcsB, coiled-coil domain"],["Pfam%3APF05257","CHAP domain"],["Pfam%3APF27342","ComB N-terminal domain"],["Pfam%3APF26697","Competence protein ComGC, C-terminal domain"]]},{"id":"CHEBI:26833","l":"sulfur atom","na":4,"nb":24,"a":[["metabolism/disproportionation.html","Disproportionation"],["morphology/sulfur_globule.html","sulfur globule"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/photolithotrophic.html","photolithotrophic"]],"b":[["EC%3A1.12.98.4","sulfhydrogenase"],["EC%3A1.13.11.55","sulfur oxygenase/reductase"],["EC%3A1.8.1.18","NAD(P)H sulfur oxidoreductase (CoA-dependent)"],["EC%3A1.8.1.19","sulfide dehydrogenase"],["EC%3A1.8.2.3","sulfide-cytochrome-c reductase (flavocytochrome c)"],["EC%3A1.8.2.7","thiocyanate desulfurase"]]},{"id":"GO:0009372","l":"quorum sensing","na":4,"nb":21,"a":[["ecology/plant_pathogen.html","plant pathogen"],["morphology/green_pigmented.html","green pigmented"],["morphology/swarming_motility.html","swarming motility"],["physiology/quorum_sensing.html","quorum sensing"]],"b":[["ComplexPortal%3ACPX-4315","Autoinducer-2 ABC transporter complex"],["GO%3A0120218","host interaction involved in quorum sensing"],["GO%3A0009372","quorum sensing"],["NCBIfam%3ANF052393","acyl-homoserine-lactone synthase"],["NCBIfam%3ANF008187","autoinducer-2 kinase"],["NCBIfam%3ANF010444","autoinducer-binding transcriptional regulator TraR"]]},{"id":"GO:0009432","l":"SOS response","na":4,"nb":14,"a":[["genomics/prophage.html","prophage"],["morphology/cell_length_large.html","cell length large"],["morphology/filament_shaped.html","filament shaped"],["physiology/sos_response.html","SOS response"]],"b":[["ComplexPortal%3ACPX-5544","DNA polymerase V mutasome complex"],["ComplexPortal%3ACPX-6026","YafNO toxin-antitoxin complex"],["GO%3A0009432","SOS response"],["NCBIfam%3ATIGR01389","DNA helicase RecQ"],["NCBIfam%3ATIGR00611","DNA replication/repair protein RecF"],["NCBIfam%3ANF041583","SOS-induced cell division inhibitor SulA"]]},{"id":"CHEBI:25728","l":"","na":11,"nb":4,"a":[["environment/euryhaline.html","euryhaline"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/halotolerant.html","halotolerant"],["environment/nacl_optimum.html","NaCl optimum"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.A.22","The Large Conductance Mechanosensitive Ion Channel (MscL) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.A.23","The Small Conductance Mechanosensitive Ion Channel (MscS) Family"]]},{"id":"GO:0009326","l":"formate dehydrogenase complex","na":4,"nb":9,"a":[["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/syntrophy.html","Syntrophy"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"],["physiology/methylotrophic.html","methylotrophic"]],"b":[["ComplexPortal%3ACPX-1975","Formate dehydrogenase N complex"],["ComplexPortal%3ACPX-6029","Formate dehydrogenase Z complex"],["ComplexPortal%3ACPX-317","Formate hydrogenlyase-H/Hydrogenase-3 complex"],["ComplexPortal%3ACPX-6028","Formate hydrogenlyase-H/Hydrogenase-4 complex"],["GO%3A0009326","formate dehydrogenase complex"],["NCBIfam%3ATIGR00129","formate dehydrogenase accessory sulfurtransferase FdhD"]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":4,"nb":9,"a":[["morphology/diplococcus_shaped.html","diplococcus shaped"],["morphology/non_motile.html","non motile"],["morphology/sphere_shaped.html","sphere shaped"],["physiology/natural_competence.html","natural competence"]],"b":[["Pfam%3APF19567","Capsular polysaccharide synthesis, CpsB/CapC"],["Pfam%3APF07501","G5 domain"],["Pfam%3APF13551","Winged helix-turn helix"],["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF03047","COMC family"],["Pfam%3APF04556","DpnII restriction endonuclease"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":9,"nb":4,"a":[["environment/euryhaline.html","euryhaline"],["genomics/dartg_system.html","DarTG system"],["genomics/ddmde_system.html","DdmDE system"],["genomics/genomic_island.html","genomic island"],["genomics/lamassu_system.html","Lamassu system"],["genomics/nixi_system.html","NixI system"]],"b":[["Pfam%3APF01375","Heat-labile enterotoxin alpha chain"],["Pfam%3APF09101","Exotoxin A binding"],["Pfam%3APF09009","Exotoxin A catalytic"],["Pfam%3APF09102","Exotoxin A, targeting"]]},{"id":"GO:0006119","l":"oxidative phosphorylation","na":4,"nb":8,"a":[["environment/ph_delta.html","pH delta"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["physiology/organoheterotrophic.html","organoheterotrophic"],["physiology/persister_cell_formation.html","persister cell formation"]],"b":[["ComplexPortal%3ACPX-268","Cytochrome bd-I ubiquinol oxidase complex"],["ComplexPortal%3ACPX-269","Cytochrome bd-II ubiquinol oxidase complex"],["GO%3A0006119","oxidative phosphorylation"],["PANTHER%3APTHR12448","ATP SYNTHASE EPSILON CHAIN, MITOCHONDRIAL"],["PANTHER%3APTHR13080","ATP SYNTHASE F CHAIN, MITOCHONDRIAL-RELATED"],["PANTHER%3APTHR43141","CYTOCHROME BD2 SUBUNIT II"]]},{"id":"GO:0030964","l":"NADH dehydrogenase complex","na":4,"nb":8,"a":[["metabolism/electron_transfer.html","Electron transfer"],["metabolism/respiration.html","respiration"],["physiology/organoheterotrophic.html","organoheterotrophic"],["physiology/organotrophic.html","organotrophic"]],"b":[["GO%3A0030964","NADH dehydrogenase complex"],["GO%3A0071685","NADH dehydrogenase complex (plastoquinone)"],["GO%3A0045271","respiratory chain complex I"],["NCBIfam%3ATIGR00403","NAD(P)H-quinone oxidoreductase subunit I"],["NCBIfam%3ATIGR01957","NADH-quinone oxidoreductase subunit B"],["NCBIfam%3ANF008728","NADH-quinone oxidoreductase subunit C/D"]]},{"id":"InterPro:IPR000158","l":"","na":6,"nb":4,"a":[["morphology/bacillus_shaped.html","bacillus shaped"],["morphology/cell_length_large.html","cell length large"],["morphology/cell_shape.html","cell shape"],["morphology/rod_shaped.html","rod shaped"],["morphology/sarcina_arrangement.html","sarcina arrangement"],["morphology/staphylococcus_arrangement.html","staphylococcus arrangement"]],"b":[["Pfam%3APF12327","FtsZ family, C-terminal domain"],["HAMAP%3AMF_00909","Cell division protein FtsZ [ftsZ]"],["PROSITE%3APS01134","FtsZ protein signature 1"],["PROSITE%3APS01135","FtsZ protein signature 2"]]},{"id":"NCBITaxon:1085","l":"Rhodospirillum rubrum","na":6,"nb":4,"a":[["metabolism/phototrophy.html","phototrophy"],["morphology/spiral_shaped.html","spiral shaped"],["physiology/carboxydotrophic.html","carboxydotrophic"],["physiology/photoheterotrophic.html","photoheterotrophic"],["physiology/photoorganoheterotrophic.html","photoorganoheterotrophic"],["physiology/phototrophic.html","phototrophic"]],"b":[["Pfam%3APF00556","Antenna complex alpha/beta subunit"],["Pfam%3APF09527","Putative F0F1-ATPase subunit Ca2+/Mg2+ transporter"],["Pfam%3APF07357","Dinitrogenase reductase ADP-ribosyltransferase (DRAT)"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"]]},{"id":"NCBITaxon:194439","l":"Chlorobaculum tepidum TLS","na":4,"nb":6,"a":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"],["physiology/photoautotrophic.html","photoautotrophic"],["physiology/photolithoautotrophic.html","photolithoautotrophic"],["physiology/photolithotrophic.html","photolithotrophic"]],"b":[["Pfam%3APF02327","Bacteriochlorophyll A protein"],["Pfam%3APF27499","CsmB chlorosome envelope protein"],["Pfam%3APF28537","Probable trigger factor, FKBP-like domain"],["Pfam%3APF02043","Bacteriochlorophyll C binding protein"],["Pfam%3APF11098","Chlorosome envelope protein C"],["Pfam%3APF10643","Photosystem P840 reaction-centre cytochrome c-551"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":4,"nb":6,"a":[["ecology/mutualism.html","mutualism"],["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["ecology/symbiosis.html","symbiosis"],["genomics/hna_system.html","Hna system"]],"b":[["Pfam%3APF01177","Asp/Glu/Hydantoin racemase"],["Pfam%3APF11339","Protein of unknown function (DUF3141)"],["PROSITE%3APS01303","BCCT family of transporters signature"],["PROSITE%3APS00665","Dihydrodipicolinate synthase signature 1"],["TED%3AAF-A0A2J0YSD4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J0YSD4-F1-model_v4_TED01"],["TED%3AAF-A0A843ZNG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843ZNG8-F1-model_v4_TED01"]]},{"id":"CHEBI:24431","l":"","na":5,"nb":4,"a":[["metabolism/does_not_use_as_nitrogen_source.html","does not use as nitrogen source"],["metabolism/does_not_use_as_sulfur_source.html","does not use as sulfur source"],["metabolism/uses_as_nitrogen_source.html","uses as nitrogen source"],["metabolism/uses_as_sulfur_source.html","uses as sulfur source"],["upper/chemical_entity.html","chemical entity"]],"b":[["EC%3A1.13.12.16","nitronate monooxygenase"],["EC%3A1.17.3.1","pteridine oxidase"],["RHEA%3A12777","2-amino-4-hydroxypteridine + O2 = 2-amino-4,7-dihydroxypteridine + chemical entity"],["RHEA%3A28767","ethylnitronate + O2 = chemical entity + acetaldehyde + nitrite + H(+)"]]},{"id":"GO:0043684","l":"type IV secretion system complex","na":4,"nb":5,"a":[["ecology/animal_pathogen.html","animal pathogen"],["ecology/human_pathogen.html","human pathogen"],["genomics/genomic_island.html","genomic island"],["genomics/mobile_genetic_element.html","mobile genetic element"]],"b":[["GO%3A0043684","type IV secretion system complex"],["NCBIfam%3ANF049884","Dot/Icm T4SS effector Ceg23"],["NCBIfam%3ATIGR02788","P-type DNA transfer ATPase VirB11"],["NCBIfam%3ATIGR02791","P-type DNA transfer protein VirB5"],["NCBIfam%3ANF047983","T4SS effector phosphatidylinositol 3-Kinase RisK1"]]},{"id":"METPO:1000630","l":"biological process","na":4,"nb":5,"a":[["metabolism/metabolism.html","metabolism"],["metabolism/nitrification.html","nitrification"],["upper/biological_process.html","biological process"],["upper/material_entity.html","material entity"]],"b":[["METPO%3A1000630","biological process"],["METPO%3A1005038","denitrification"],["METPO%3A1000060","metabolism"],["METPO%3A1005001","nitrification"],["METPO%3A1005039","nitrogen fixation"]]},{"id":"METPO:2000303","l":"does not show activity of","na":5,"nb":4,"a":[["metabolism/does_not_show_activity_of.html","does not show activity of"],["other/catalase_negative.html","catalase negative"],["other/coagulase_negative.html","coagulase negative"],["other/oxidase_negative.html","oxidase negative"],["other/urease_negative.html","urease negative"]],"b":[["METPO%3A1007084","catalase negative"],["METPO%3A1007091","coagulase negative"],["METPO%3A1007086","oxidase negative"],["METPO%3A1007088","urease negative"]]},{"id":"InterPro:IPR033875","l":"Flagellum site-determining protein FlhG","na":4,"nb":4,"a":[["morphology/amphitrichous.html","amphitrichous"],["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/lophotrichous.html","lophotrichous"],["morphology/monotrichous.html","monotrichous"]],"b":[["GO%3A0044781","bacterial-type flagellum organization"],["CDD%3Acd02038","FlhG-like"],["InterPro%3AIPR033875","Flagellum site-determining protein FlhG"],["Pfam%3APF10609","NUBPL iron-transfer P-loop NTPase"]]},{"id":"GO:0005737","l":"cytoplasm","na":3,"nb":2018,"a":[["environment/ph_range_mid2.html","pH range mid2"],["environment/ph_range_very_low.html","pH range very low"],["morphology/spiral_shaped.html","spiral shaped"]],"b":[["ComplexPortal%3ACPX-3921","2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["ComplexPortal%3ACPX-1599","40S cytosolic small ribosomal subunit"],["ComplexPortal%3ACPX-5223","40S cytosolic small ribosomal subunit"],["ComplexPortal%3ACPX-5261","40S cytosolic small ribosomal subunit"],["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"]]},{"id":"CHEBI:29034","l":"iron(3+)","na":3,"nb":376,"a":[["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/iron_oxidation.html","iron oxidation"],["metabolism/photoferrotrophy.html","photoferrotrophy"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29034","requires iron(3+)"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.11","glucoside 3-dehydrogenase (cytochrome c)"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.2.3","L-lactate dehydrogenase (cytochrome)"],["EC%3A1.1.2.4","D-lactate dehydrogenase (cytochrome)"]]},{"id":"CHEBI:15351","l":"","na":3,"nb":169,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["physiology/autotrophic.html","autotrophic"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15351","requires acetyl-CoA"],["ARO%3A3000341","AAC(2')"],["ARO%3A3007393","AAC(2')-I"],["ARO%3A3002523","AAC(2')-Ia"],["ARO%3A3002524","AAC(2')-Ib"],["ARO%3A3002525","AAC(2')-Ic"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa (strain ATCC 15692 / DSM 22644 / CIP 104116 / JCM 14847 / LMG 12228 / 1C / PRS 101 / PAO1)","na":3,"nb":162,"a":[["ecology/biofilm_formation.html","biofilm formation"],["morphology/twitching_motility.html","twitching motility"],["morphology/type_iv_pilus.html","type IV pilus"]],"b":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF06750","Bacterial Peptidase A24 N-terminal domain"],["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF28403","Aconitase X second domain"],["Pfam%3APF28406","Aconitase X third domain"],["Pfam%3APF04412","Aconitase X first domain"]]},{"id":"GO:0019867","l":"outer membrane","na":3,"nb":143,"a":[["morphology/gram_negative.html","gram negative"],["morphology/gram_stain.html","gram stain"],["morphology/triangular_shaped.html","triangular shaped"]],"b":[["GO%3A0009279","cell outer membrane"],["GO%3A0031968","organelle outer membrane"],["GO%3A0043594","outer endospore membrane"],["GO%3A0019867","outer membrane"],["NCBIfam%3ANF047447","adhesin OmpL37 family surface protein"],["NCBIfam%3ANF007285","AIDA-I family autotransporter adhesin YfaL/EhaC"]]},{"id":"GO:0015948","l":"methanogenesis","na":3,"nb":82,"a":[["metabolism/acetoclastic_methanogenesis.html","acetoclastic methanogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/methyl_based_methanogenesis.html","methyl-based methanogenesis"]],"b":[["GO%3A0019385","methanogenesis, from acetate"],["GO%3A0019386","methanogenesis, from carbon dioxide"],["GO%3A0019387","methanogenesis, from methanol"],["GO%3A0015948","methanogenesis"],["proteintraitsmech%3ASEED_SUBSYSTEM_Methanogenesis","Methanogenesis"],["NCBIfam%3ATIGR03957","5,10-methenyltetrahydromethanopterin hydrogenase cofactor biosynthesis protein HmdB"]]},{"id":"CHEBI:29035","l":"manganese(2+)","na":3,"nb":44,"a":[["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/lignin_degradation.html","lignin degradation"],["metabolism/manganese_oxidation.html","manganese oxidation"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29035","requires manganese(2+)"],["EC%3A1.11.1.13","manganese peroxidase"],["EC%3A1.11.1.16","versatile peroxidase"],["EC%3A1.16.3.3","manganese oxidase"],["EC%3A7.2.2.22","P-type Mn(2+) transporter"],["EC%3A7.2.2.5","ABC-type Mn(2+) transporter"]]},{"id":"GO:0004129","l":"cytochrome-c oxidase activity","na":3,"nb":41,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["other/oxidase_negative.html","oxidase negative"],["physiology/oxidase_activity.html","oxidase activity"]],"b":[["EC%3A7.1.1.9","cytochrome-c oxidase"],["METPO%3A1007086","oxidase negative"],["METPO%3A1007085","oxidase positive"],["RHEA%3A11436","4 Fe(II)-[cytochrome c] + O2 + 8 H(+)(in) = 4 Fe(III)-[cytochrome c] + 2 H2O + 4 H(+)(out)"],["ComplexPortal%3ACPX-1721","Mitochondrial respiratory chain complex IV, COX5A variant"],["ComplexPortal%3ACPX-1722","Mitochondrial respiratory chain complex IV, COX5B variant"]]},{"id":"GO:0009399","l":"nitrogen fixation","na":3,"nb":36,"a":[["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["metabolism/nitrogen_fixation.html","nitrogen fixation"],["morphology/heterocyst.html","heterocyst"]],"b":[["GO%3A0009399","nitrogen fixation"],["proteintraitsmech%3ASEED_SUBSYSTEM_Nitrogen_fixation","Nitrogen fixation"],["NCBIfam%3ATIGR02662","ADP-ribosyl-[dinitrogen reductase] hydrolase"],["NCBIfam%3ATIGR02931","Fe-only nitrogenase subunit beta"],["NCBIfam%3ATIGR02929","Fe-only nitrogenase subunit delta"],["NCBIfam%3ATIGR02000","Fe-S cluster assembly protein NifU"]]},{"id":"GO:0008422","l":"beta-glucosidase activity","na":3,"nb":31,"a":[["metabolism/biopolymer_degradation.html","biopolymer degradation"],["metabolism/cellulolysis.html","cellulolysis"],["physiology/beta_glucosidase_activity.html","beta-glucosidase activity"]],"b":[["EC%3A3.2.1.21","beta-glucosidase"],["RHEA%3A69655","quercetin 3-O-beta-D-glucoside + H2O = quercetin + beta-D-glucose"],["RHEA%3A69647","quercetin 4'-O-beta-D-glucoside + H2O = quercetin + beta-D-glucose"],["GO%3A0080081","4-methylumbelliferyl-beta-D-glucopyranoside beta-glucosidase activity"],["GO%3A0008706","6-phospho-beta-glucosidase activity"],["GO%3A0051993","abscisic acid glucose ester beta-glucosidase activity"]]},{"id":"GO:0022611","l":"dormancy process","na":3,"nb":19,"a":[["physiology/dormancy.html","dormancy"],["physiology/persister_cell_formation.html","persister cell formation"],["physiology/viable_but_nonculturable_state.html","viable but nonculturable state"]],"b":[["GO%3A0097439","acquisition of desiccation tolerance"],["GO%3A0097207","bud dormancy process"],["GO%3A0085014","dormancy entry of symbiont in host"],["GO%3A0085016","dormancy exit of symbiont in host"],["GO%3A0085015","dormancy maintenance of symbiont in host"],["GO%3A0022611","dormancy process"]]},{"id":"CHEBI:17997","l":"dinitrogen","na":3,"nb":18,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["EC%3A1.18.6.1","nitrogenase"],["EC%3A1.18.6.2","vanadium-dependent nitrogenase"],["EC%3A1.19.6.1","nitrogenase (flavodoxin)"],["EC%3A1.7.2.4","nitrous-oxide reductase"],["EC%3A1.7.2.8","hydrazine dehydrogenase"],["RHEA%3A79967","3-diazoavenalumate + NADH + H(+) = avenalumate + N2 + NAD(+)"]]},{"id":"CHEBI:17579","l":"β-carotene","na":3,"nb":16,"a":[["metabolism/proteorhodopsin_phototrophy.html","proteorhodopsin phototrophy"],["morphology/orange_pigmented.html","orange pigmented"],["morphology/yellow_pigmented.html","yellow pigmented"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17579","requires β-carotene"],["EC%3A1.13.11.63","beta-carotene 15,15'-dioxygenase"],["EC%3A1.13.11.71","carotenoid-9',10'-cleaving dioxygenase"],["EC%3A1.14.15.24","beta-carotene 3-hydroxylase"],["EC%3A1.14.99.63","beta-carotene 4-ketolase"],["EC%3A5.2.1.14","beta-carotene isomerase"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":3,"nb":16,"a":[["ecology/rhizosphere_association.html","rhizosphere association"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/psychrotolerant.html","psychrotolerant"]],"b":[["Pfam%3APF16822","SGNH hydrolase-like domain, acetyltransferase AlgX"],["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"],["Pfam%3APF11182","Alginate O-acetyl transferase AlgF"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF27129","Functional amyloid protein FapB/FapC family"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]]},{"id":"CHEBI:16183","l":"methane","na":3,"nb":13,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/methanogenesis.html","Methanogenesis"],["physiology/methanotrophic.html","methanotrophic"]],"b":[["EC%3A1.14.13.25","methane monooxygenase (soluble)"],["EC%3A1.14.18.3","methane monooxygenase (particulate)"],["EC%3A2.8.4.1","coenzyme-B sulfoethylthiotransferase"],["EC%3A4.7.1.1","alpha-D-ribose 1-methylphosphonate 5-phosphate C-P-lyase"],["RHEA%3A34707","alpha-D-ribose 1-methylphosphonate 5-phosphate + AH2 + S-adenosyl-L-methionine = alpha-D-ribose 1,2-cyclic phosphate 5-phosphate + methane + 5'-deoxyadenosine + L-methionine + A + H(+)"],["RHEA%3A12532","coenzyme B + methyl-coenzyme M = methane + coenzyme M-coenzyme B heterodisulfide"]]},{"id":"GO:0060187","l":"cell pole","na":3,"nb":10,"a":[["morphology/amphitrichous.html","amphitrichous"],["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/lophotrichous.html","lophotrichous"]],"b":[["GO%3A0044225","apical pole of neuron"],["GO%3A0044226","basal pole of neuron"],["GO%3A0090712","basal pole of outer hair cell"],["GO%3A0060187","cell pole"],["GO%3A0051286","cell tip"],["GO%3A1990902","new cell pole"]]},{"id":"GO:0009325","l":"nitrate reductase complex","na":3,"nb":9,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]],"b":[["ComplexPortal%3ACPX-3447","NapAB nitrate reductase complex"],["ComplexPortal%3ACPX-5581","Nitrate reductase Z complex"],["GO%3A0044799","NarGHI complex"],["GO%3A0009325","nitrate reductase complex"],["NCBIfam%3ATIGR01580","nitrate reductase subunit alpha"],["NCBIfam%3ATIGR01660","nitrate reductase subunit beta"]]},{"id":"InterPro:IPR033966","l":"","na":9,"nb":3,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["physiology/autotrophic.html","autotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"]],"b":[["SFLD%3ASFLDS00014","RuBisCO"],["PANTHER%3APTHR42704","RIBULOSE BISPHOSPHATE CARBOXYLASE"],["PROSITE%3APS00157","Ribulose bisphosphate carboxylase large chain active site"]]},{"id":"NCBITaxon:210","l":"Helicobacter pylori","na":3,"nb":9,"a":[["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/helical_shaped.html","helical shaped"],["morphology/lophotrichous.html","lophotrichous"]],"b":[["Pfam%3APF18025","Alpha-(1,3)-fucosyltransferase FucT N-terminal domain"],["Pfam%3APF18971","CagA protein"],["Pfam%3APF03507","CagA exotoxin phosphopeptide substrate mimic region"],["Pfam%3APF02691","Vacuolating cyotoxin beta-helical domain"],["TED%3AAF-A0A2T6UWI4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T6UWI4-F1-model_v4_TED01"],["TED%3AAF-A0A1Q9JB12-F1-model_v4_TED01","TED novel fold AF-A0A1Q9JB12-F1-model_v4_TED01"]]},{"id":"GO:0019491","l":"ectoine biosynthetic process","na":3,"nb":8,"a":[["environment/euryhaline.html","euryhaline"],["environment/halotolerant.html","halotolerant"],["environment/slightly_halophilic.html","slightly halophilic"]],"b":[["GO%3A0019491","ectoine biosynthetic process"],["proteintraitsmech%3ASEED_SUBSYSTEM_Ectoine_synthesis","Ectoine synthesis"],["NCBIfam%3ATIGR00709","diaminobutyrate--2-oxoglutarate transaminase family protein"],["NCBIfam%3ATIGR02407","diaminobutyrate--2-oxoglutarate transaminase"],["NCBIfam%3ATIGR02406","diaminobutyrate acetyltransferase"],["NCBIfam%3ANF009806","ectoine synthase"]]},{"id":"GO:0031456","l":"glycine betaine biosynthetic process","na":3,"nb":8,"a":[["environment/euryhaline.html","euryhaline"],["environment/halotolerant.html","halotolerant"],["environment/nacl_range_low.html","NaCl range low"]],"b":[["GO%3A0031456","glycine betaine biosynthetic process"],["NCBIfam%3ANF009725","betaine-aldehyde dehydrogenase"],["NCBIfam%3ATIGR01804","betaine-aldehyde dehydrogenase"],["NCBIfam%3ATIGR03384","choline-binding transcriptional repressor BetI"],["NCBIfam%3ANF053866","choline dehydrogenase"],["NCBIfam%3ATIGR01810","choline dehydrogenase"]]},{"id":"GO:0006636","l":"unsaturated fatty acid biosynthetic process","na":3,"nb":7,"a":[["environment/pressure_range.html","pressure range"],["environment/temperature_delta_high.html","temperature delta high"],["environment/thermotolerant.html","thermotolerant"]],"b":[["GO%3A2001303","lipoxin A4 biosynthetic process"],["GO%3A2001306","lipoxin B4 biosynthetic process"],["GO%3A2001280","positive regulation of unsaturated fatty acid biosynthetic process"],["GO%3A0046457","prostanoid biosynthetic process"],["GO%3A1902609","(R)-2-hydroxy-alpha-linolenic acid biosynthetic process"],["GO%3A2001279","regulation of unsaturated fatty acid biosynthetic process"]]},{"id":"NCBITaxon:1314","l":"Streptococcus pyogenes","na":3,"nb":7,"a":[["environment/aerotolerant.html","aerotolerant"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"],["morphology/streptococcus_arrangement.html","streptococcus arrangement"]],"b":[["Pfam%3APF13585","CHU_C Type IX secretion signal domain"],["Pfam%3APF24547","Domain of unknown function (DUF7601)"],["Pfam%3APF08998","Bacterial epsilon antitoxin"],["Pfam%3APF06280","Fn3-like domain"],["Pfam%3APF02274","Arginine deiminase"],["Pfam%3APF13734","Spi protease inhibitor"]]},{"id":"GO:0070224","l":"sulfide:quinone oxidoreductase activity","na":3,"nb":6,"a":[["metabolism/sulfur_oxidation.html","sulfur oxidation"],["morphology/sulfur_globule.html","sulfur globule"],["physiology/lithoheterotrophic.html","lithoheterotrophic"]],"b":[["EC%3A1.8.5.4","bacterial sulfide:quinone reductase"],["RHEA%3A30239","n a quinone + n hydrogen sulfide + n H(+) = polysulfur(n-2) + n a quinol"],["GO%3A0070224","sulfide:quinone oxidoreductase activity"],["MCSA%3A320","sulfide:quinone oxidoreductase"],["proteintraitsmech%3ABIOLIP_PS9","PS9-binding site"],["proteintraitsmech%3ABIOLIP_S3H","S3H-binding site"]]},{"id":"METPO:1000800","l":"respiration","na":6,"nb":3,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/fermentation.html","Fermentation"],["metabolism/respiration.html","respiration"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"]],"b":[["METPO%3A1000801","Aerobic respiration"],["METPO%3A1000802","Anaerobic respiration"],["METPO%3A1000800","respiration"]]},{"id":"NCBITaxon:381666","l":"Cupriavidus necator H16","na":6,"nb":3,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"],["physiology/autotrophic.html","autotrophic"],["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["Pfam%3APF13473","Cupredoxin-like domain"],["Pfam%3APF10605","3HB-oligomer hydrolase (3HBOH)"],["Pfam%3APF21783","YNCE-like beta-propeller"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":3,"nb":6,"a":[["environment/anaerobic.html","anaerobic"],["environment/strictly_anaerobic.html","strictly anaerobic"],["metabolism/fumarate_respiration.html","fumarate respiration"]],"b":[["Pfam%3APF16376","N-terminal domain of fragilysin"],["TED%3AAF-A0A412XR06-F1-model_v4_TED03","TED novel fold AF-A0A412XR06-F1-model_v4_TED03"],["TED%3AAF-A0A4V1EUI2-F1-model_v4_TED02","TED novel fold AF-A0A4V1EUI2-F1-model_v4_TED02"],["TED%3AAF-A0A5C6IXH5-F1-model_v4_TED01","TED novel fold AF-A0A5C6IXH5-F1-model_v4_TED01"],["TED%3AAF-A0A5C6L6G9-F1-model_v4_TED02","TED novel fold AF-A0A5C6L6G9-F1-model_v4_TED02"],["TED%3AAF-A0A642KY52-F1-model_v4_TED01","TED novel fold AF-A0A642KY52-F1-model_v4_TED01"]]},{"id":"UniProt:P27988","l":"","na":3,"nb":6,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"]],"b":[["Pfam%3APF18537","Carbon monoxide dehydrogenase subunit alpha N-terminal domain"],["proteintraitsmech%3AMETALPDB_CU_HEXANUCLEAR","hexanuclear copper site"],["proteintraitsmech%3AMETALPDB_FE_HEXANUCLEAR","hexanuclear iron site"],["proteintraitsmech%3AMETALPDB_NI_HEXANUCLEAR","hexanuclear nickel site"],["proteintraitsmech%3AMETALPDB_ZN_HEXANUCLEAR","hexanuclear zinc site"],["proteintraitsmech%3AMETALPDB_ZN_PENTANUCLEAR","pentanuclear zinc site"]]},{"id":"NCBITaxon:228410","l":"Nitrosomonas europaea ATCC 19718","na":5,"nb":3,"a":[["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["Pfam%3APF02461","Ammonia monooxygenase"],["Pfam%3APF13435","Cytochrome c554 and c-prime"],["TED%3AAF-Q82SR8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q82SR8-F1-model_v4_TED01"]]},{"id":"GO:0008776","l":"acetate kinase activity","na":3,"nb":4,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["EC%3A2.7.2.1","acetate kinase"],["RHEA%3A11352","acetate + ATP = acetyl phosphate + ADP"],["GO%3A0008776","acetate kinase activity"],["MCSA%3A643","acetate kinase"]]},{"id":"GO:0018597","l":"ammonia monooxygenase activity","na":3,"nb":4,"a":[["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["EC%3A1.14.99.39","ammonia monooxygenase"],["RHEA%3A27341","AH2 + NH4(+) + O2 = hydroxylamine + A + H2O + H(+)"],["GO%3A0018597","ammonia monooxygenase activity"],["NCBIfam%3ANF041557","bacterial ammonia monooxygenase, subunit AmoA"]]},{"id":"InterPro:IPR001182","l":"","na":4,"nb":3,"a":[["morphology/fusiform_shaped.html","fusiform shaped"],["morphology/oval_shaped.html","oval shaped"],["morphology/prosthecate.html","prosthecate"],["morphology/tailed_shaped.html","tailed shaped"]],"b":[["PANTHER%3APTHR30474","CELL CYCLE PROTEIN"],["Pfam%3APF01098","Cell cycle protein"],["PROSITE%3APS00428","Cell cycle proteins ftsW / rodA / spoVE signature"]]},{"id":"NCBITaxon:1525","l":"Neomoorella thermoacetica","na":3,"nb":4,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"]],"b":[["Pfam%3APF25461","Selenocysteine-specific elongation factor, beta-barrel domain"],["Pfam%3APF18537","Carbon monoxide dehydrogenase subunit alpha N-terminal domain"],["Pfam%3APF04060","Putative Fe-S cluster"],["Pfam%3APF03599","CO dehydrogenase/acetyl-CoA synthase delta subunit"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":3,"nb":4,"a":[["ecology/mutualism.html","mutualism"],["physiology/bioluminescence.html","bioluminescence"],["physiology/quorum_sensing.html","quorum sensing"]],"b":[["PROSITE%3APS00949","Autoinducer synthase family signature"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"],["PROSITE%3APS00607","cAMP phosphodiesterases class-II signature"],["TED%3AAF-A0A844NWZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A844NWZ1-F1-model_v4_TED02"]]},{"id":"GO:0016689","l":"manganese peroxidase activity","na":3,"nb":3,"a":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/lignin_degradation.html","lignin degradation"],["metabolism/manganese_oxidation.html","manganese oxidation"]],"b":[["EC%3A1.11.1.13","manganese peroxidase"],["RHEA%3A22776","2 Mn(2+) + H2O2 + 2 H(+) = 2 Mn(3+) + 2 H2O"],["GO%3A0016689","manganese peroxidase activity"]]},{"id":"METPO:1000731","l":"nutrient adaptation","na":3,"nb":3,"a":[["physiology/copiotrophic.html","copiotrophic"],["physiology/nutrient_adaptation.html","nutrient adaptation"],["physiology/oligotrophic.html","oligotrophic"]],"b":[["METPO%3A1000642","copiotrophic"],["METPO%3A1000731","nutrient adaptation"],["METPO%3A1000654","oligotrophic"]]},{"id":"METPO:1005010","l":"indole test","na":3,"nb":3,"a":[["other/indole_test.html","indole test"],["other/indole_test_negative.html","indole test negative"],["other/indole_test_positive.html","indole test positive"]],"b":[["METPO%3A1005010","indole test"],["METPO%3A1005012","indole test negative"],["METPO%3A1005011","indole test positive"]]},{"id":"METPO:1005013","l":"methyl red test","na":3,"nb":3,"a":[["other/methyl_red_test.html","methyl red test"],["other/methyl_red_test_negative.html","methyl red test negative"],["other/methyl_red_test_positive.html","methyl red test positive"]],"b":[["METPO%3A1005013","methyl red test"],["METPO%3A1005015","methyl red test negative"],["METPO%3A1005014","methyl red test positive"]]},{"id":"METPO:1005016","l":"Voges-Proskauer test","na":3,"nb":3,"a":[["other/voges_proskauer_test.html","Voges-Proskauer test"],["other/voges_proskauer_test_negative.html","Voges-Proskauer test negative"],["other/voges_proskauer_test_positive.html","Voges-Proskauer test positive"]],"b":[["METPO%3A1005016","Voges-Proskauer test"],["METPO%3A1005018","Voges-Proskauer test negative"],["METPO%3A1005017","Voges-Proskauer test positive"]]},{"id":"METPO:1007089","l":"coagulase activity","na":3,"nb":3,"a":[["other/coagulase_negative.html","coagulase negative"],["other/coagulase_positive.html","coagulase positive"],["physiology/coagulase_activity.html","coagulase activity"]],"b":[["METPO%3A1007089","coagulase activity"],["METPO%3A1007091","coagulase negative"],["METPO%3A1007090","coagulase positive"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":3,"nb":3,"a":[["ecology/commensalism.html","commensalism"],["genomics/nhi_system.html","Nhi system"],["other/coagulase_negative.html","coagulase negative"]],"b":[["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF08130","Type A lantibiotic family"],["Pfam%3APF04738","Lantibiotic dehydratase, N terminus"]]},{"id":"NCBITaxon:2257","l":"Natronomonas pharaonis","na":3,"nb":3,"a":[["environment/alkaphilic.html","alkaliphilic"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/obligately_alkaphilic.html","obligately alkaliphilic"]],"b":[["Pfam%3APF17909","Htr2 transmembrane domain"],["PROSITE%3APS00950","Bacterial rhodopsins signature 1"],["PROSITE%3APS00327","Bacterial rhodopsins retinal binding site"]]},{"id":"NCBITaxon:431944","l":"Magnetospirillum gryphiswaldense MSR-1","na":3,"nb":3,"a":[["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/magnetosome.html","magnetosome"],["physiology/magnetotaxis.html","magnetotaxis"]],"b":[["Pfam%3APF12728","Helix-turn-helix domain"],["Pfam%3APF04011","LemA family"],["Pfam%3APF07219","HemY protein N-terminus"]]},{"id":"UniProt:P10717","l":"","na":3,"nb":3,"a":[["physiology/photoheterotrophic.html","photoheterotrophic"],["physiology/photoorganoheterotrophic.html","photoorganoheterotrophic"],["physiology/phototrophic.html","phototrophic"]],"b":[["proteintraitsmech%3ABIOLIP_07D","07D-binding site"],["proteintraitsmech%3ABIOLIP_08I","08I-binding site"],["proteintraitsmech%3ABIOLIP_RQ0","RQ0-binding site"]]},{"id":"UniProt:Q04507","l":"","na":3,"nb":3,"a":[["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["EC%3A1.14.99.39","ammonia monooxygenase"],["RHEA%3A27341","AH2 + NH4(+) + O2 = hydroxylamine + A + H2O + H(+)"],["Pfam%3APF02461","Ammonia monooxygenase"]]},{"id":"GO:0009058","l":"biosynthetic process","na":2,"nb":733,"a":[["metabolism/metabolism.html","metabolism"],["physiology/heterotrophic.html","heterotrophic"]],"b":[["GO%3A1901852","7,8-didemethyl-8-hydroxy-5-deazariboflavin biosynthetic process"],["GO%3A0008292","acetylcholine biosynthetic process"],["GO%3A0046184","aldehyde biosynthetic process"],["GO%3A0019428","allantoin biosynthetic process"],["GO%3A0009309","amine biosynthetic process"],["GO%3A0008652","amino acid biosynthetic process"]]},{"id":"CHEBI:17499","l":"","na":2,"nb":633,"a":[["metabolism/electron_transfer.html","Electron transfer"],["metabolism/respiration.html","respiration"]],"b":[["EC%3A1.1.99.1","choline dehydrogenase"],["EC%3A1.1.99.12","sorbose dehydrogenase"],["EC%3A1.1.99.13","glucoside 3-dehydrogenase (acceptor)"],["EC%3A1.1.99.14","glycolate dehydrogenase"],["EC%3A1.1.99.18","cellobiose dehydrogenase (acceptor)"],["EC%3A1.1.99.2","L-2-hydroxyglutarate dehydrogenase"]]},{"id":"GO:0004252","l":"serine-type endopeptidase activity","na":2,"nb":281,"a":[["physiology/alpha_chymotrypsin_activity.html","alpha-chymotrypsin activity"],["physiology/trypsin_activity.html","trypsin activity"]],"b":[["EC%3A3.4.21.1","chymotrypsin"],["EC%3A3.4.21.10","acrosin"],["EC%3A3.4.21.102","C-terminal processing peptidase"],["EC%3A3.4.21.20","cathepsin G"],["EC%3A3.4.21.21","coagulation factor VIIa"],["EC%3A3.4.21.22","coagulation factor IXa"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":2,"nb":212,"a":[["physiology/methanotrophic.html","methanotrophic"],["physiology/methylotrophic.html","methylotrophic"]],"b":[["EC%3A1.1.1.244","methanol dehydrogenase"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.99.37","methanol dehydrogenase (nicotinoprotein)"],["EC%3A1.13.11.94","4-vinylguaiacol dioxygenase"],["EC%3A1.14.11.27","[histone H3]-dimethyl-L-lysine(36) demethylase"]]},{"id":"GO:0008233","l":"peptidase activity","na":2,"nb":141,"a":[["physiology/caseinase_activity.html","caseinase activity"],["physiology/gelatinase_activity.html","gelatinase activity"]],"b":[["ComplexPortal%3ACPX-9002","PA28-alphabeta single-capped 20S proteasome complex"],["ComplexPortal%3ACPX-9022","PA28-gamma double-capped 20S proteasome complex"],["ComplexPortal%3ACPX-9001","PA28-gamma single-capped 20S proteasome complex"],["ComplexPortal%3ACPX-3785","Tryptase alpha/beta-1 complex"],["ComplexPortal%3ACPX-3804","Tryptase alpha/beta-1 complex"],["ComplexPortal%3ACPX-3805","Tryptase beta-2 complex"]]},{"id":"CHEBI:16452","l":"","na":2,"nb":117,"a":[["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["EC%3A1.1.1.299","malate dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.1.37","(S)-malate dehydrogenase (NAD(+), oxaloacetate-forming)"],["EC%3A1.1.1.38","malate dehydrogenase (oxaloacetate-decarboxylating)"],["EC%3A1.1.1.40","malate dehydrogenase (oxaloacetate-decarboxylating) (NADP(+))"],["EC%3A1.1.1.82","malate dehydrogenase (NADP(+))"],["EC%3A1.1.5.4","malate dehydrogenase (quinone)"]]},{"id":"GO:0006099","l":"tricarboxylic acid cycle","na":2,"nb":92,"a":[["physiology/heterotrophic.html","heterotrophic"],["physiology/organoheterotrophic.html","organoheterotrophic"]],"b":[["ComplexPortal%3ACPX-3921","2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-9044","Mitochondrial 2-oxoglutarate dehydrogenase complex,CG1544 variant"],["ComplexPortal%3ACPX-9043","Mitochondrial 2-oxoglutarate dehydrogenase complex, CG33791 variant"],["ComplexPortal%3ACPX-1293","Mitochondrial 2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-9061","Mitochondrial 2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-9042","Mitochondrial 2-oxoglutarate dehydrogenase complex, ODGH variant"]]},{"id":"CHEBI:17790","l":"methanol","na":2,"nb":86,"a":[["physiology/methanotrophic.html","methanotrophic"],["physiology/methylotrophic.html","methylotrophic"]],"b":[["EC%3A1.1.1.244","methanol dehydrogenase"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.99.37","methanol dehydrogenase (nicotinoprotein)"],["EC%3A1.14.13.25","methane monooxygenase (soluble)"],["EC%3A1.14.14.117","aflatoxin B synthase"]]},{"id":"GO:0006302","l":"double-strand break repair","na":2,"nb":85,"a":[["environment/desiccation_tolerant.html","desiccation tolerant"],["environment/ionizing_radiation_tolerant.html","ionizing radiation tolerant"]],"b":[["ComplexPortal%3ACPX-10302","MRN double-strand break repair complex"],["ComplexPortal%3ACPX-1872","MRX double-strand break repair complex"],["ComplexPortal%3ACPX-511","MUS81-EME1 structure-specific endonuclease complex"],["ComplexPortal%3ACPX-585","MUS81-EME1 structure-specific endonuclease complex"],["ComplexPortal%3ACPX-586","MUS81-EME2 structure-specific endonuclease complex"],["ComplexPortal%3ACPX-587","MUS81-EME2 structure-specific endonuclease complex"]]},{"id":"GO:0051607","l":"defense response to virus","na":2,"nb":80,"a":[["genomics/crispr_cas_system.html","CRISPR-Cas system"],["genomics/phage_defense_system.html","phage defense system"]],"b":[["UniProtKB-KW%3AKW-0051","Antiviral defense"],["ComplexPortal%3ACPX-4142","AIM2 inflammasome"],["ComplexPortal%3ACPX-4243","AIM2 inflammasome"],["ComplexPortal%3ACPX-6037","MAVS-TRAF3 E3 ubiquitin ligase complex"],["ComplexPortal%3ACPX-2128","Sting complex"],["ComplexPortal%3ACPX-6018","STING-TRAF3-TBK1 complex"]]},{"id":"GO:0071973","l":"bacterial-type flagellum-dependent cell motility","na":2,"nb":60,"a":[["ecology/soil_dwelling.html","soil-dwelling"],["morphology/swarming_motility.html","swarming motility"]],"b":[["ComplexPortal%3ACPX-4886","DNA-directed RNA polymerase holoenzyme complex, SigmaF variant"],["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["GO%3A0071973","bacterial-type flagellum-dependent cell motility"],["GO%3A0071978","bacterial-type flagellum-dependent swarming motility"]]},{"id":"CHEBI:33542","l":"","na":2,"nb":38,"a":[["metabolism/disproportionation.html","Disproportionation"],["physiology/chemolithotrophic.html","chemolithotrophic"]],"b":[["EC%3A1.8.2.2","thiosulfate dehydrogenase"],["EC%3A1.8.2.5","thiosulfate reductase (cytochrome)"],["EC%3A1.8.5.2","thiosulfate dehydrogenase (quinone)"],["EC%3A1.8.5.5","thiosulfate reductase (quinone)"],["EC%3A2.5.1.144","S-sulfo-L-cysteine synthase (O-acetyl-L-serine-dependent)"],["EC%3A2.8.1.1","thiosulfate sulfurtransferase"]]},{"id":"GO:0004022","l":"alcohol dehydrogenase (NAD+) activity","na":2,"nb":38,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["physiology/nad_dependent_alcohol_dehydrogenase_activity.html","NAD-dependent alcohol dehydrogenase activity"]],"b":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["RHEA%3A10736","a primary alcohol + NAD(+) = an aldehyde + NADH + H(+)"],["RHEA%3A10740","a secondary alcohol + NAD(+) = a ketone + NADH + H(+)"],["GO%3A0106429","11-cis-retinol dehydrogenase (NAD+) activity"],["GO%3A0052676","3-methylbutanal reductase (NADH) activity"],["GO%3A0004022","alcohol dehydrogenase (NAD+) activity"]]},{"id":"GO:0016805","l":"dipeptidase activity","na":2,"nb":36,"a":[["physiology/glutamyl_glutamic_acid_arylamidase_activity.html","glutamyl glutamic acid arylamidase activity"],["physiology/leucyl_glycine_arylamidase_activity.html","leucyl glycine arylamidase activity"]],"b":[["EC%3A3.4.13.18","cytosol non-specific dipeptidase"],["EC%3A3.4.13.19","membrane dipeptidase"],["EC%3A3.4.13.21","dipeptidase E"],["GO%3A0160237","D-Ala-D-Ala dipeptidase activity"],["GO%3A0016805","dipeptidase activity"],["GO%3A0070573","metallodipeptidase activity"]]},{"id":"GO:0016298","l":"lipase activity","na":2,"nb":33,"a":[["metabolism/lipolysis.html","lipolysis"],["physiology/lipase_activity.html","lipase activity"]],"b":[["GO%3A0120516","diacylglycerol lipase activity"],["GO%3A0047714","galactolipase activity"],["GO%3A0016298","lipase activity"],["GO%3A0047372","monoacylglycerol lipase activity"],["GO%3A0120569","phospholipase activity"],["GO%3A0004771","sterol ester esterase activity"]]},{"id":"CHEBI:36242","l":"","na":2,"nb":32,"a":[["morphology/black_pigmented.html","black pigmented"],["morphology/brown_pigmented.html","brown pigmented"]],"b":[["EC%3A1.1.1.110","aromatic 2-oxoacid reductase"],["EC%3A1.1.1.237","hydroxyphenylpyruvate reductase"],["EC%3A1.13.11.27","4-hydroxyphenylpyruvate dioxygenase"],["EC%3A1.13.11.46","4-hydroxymandelate synthase"],["EC%3A1.2.3.13","4-hydroxyphenylpyruvate oxidase"],["EC%3A1.3.1.12","prephenate dehydrogenase"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":2,"nb":32,"a":[["genomics/gc_mid1.html","GC mid1"],["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["Pfam%3APF25848","Rodlin protein"],["Pfam%3APF13420","Acetyltransferase (GNAT) domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF26381","BREX System ATPase PglY protein 5th domain"],["Pfam%3APF26382","BREX System ATPase PglY protein 6th domain"]]},{"id":"CHEBI:16236","l":"ethanol","na":2,"nb":31,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]],"b":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.5.5","alcohol dehydrogenase (quinone)"],["EC%3A1.1.99.36","alcohol dehydrogenase (nicotinoprotein)"],["EC%3A2.3.1.268","ethanol O-acetyltransferase"],["EC%3A3.1.1.113","ethyl acetate hydrolase"],["EC%3A3.1.1.67","fatty-acyl-ethyl-ester synthase"]]},{"id":"NCBITaxon:243273","l":"Mycoplasmoides genitalium (strain ATCC 33530 / DSM 19775 / NCTC 10195 / G37)","na":2,"nb":31,"a":[["genomics/gc_high.html","GC high"],["genomics/genome_size.html","genome size"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF03257","Mycoplasma adhesin P1, C-terminal"],["Pfam%3APF09185","Domain of unknown function (DUF1948)"],["Pfam%3APF09188","Domain of unknown function (DUF1951)"],["Pfam%3APF03072","Domain of unknown function (DUF237)"],["Pfam%3APF03086","Domain of unknown function (DUF240)"]]},{"id":"GO:0008810","l":"cellulase activity","na":2,"nb":28,"a":[["metabolism/biopolymer_degradation.html","biopolymer degradation"],["metabolism/cellulolysis.html","cellulolysis"]],"b":[["EC%3A3.2.1.4","cellulase"],["GO%3A0008810","cellulase activity"],["InterPro%3AIPR005087","Carbohydrate binding module family 11"],["InterPro%3AIPR005086","Carbohydrate binding module family 17/28"],["InterPro%3AIPR004197","Cellulase, Ig-like domain"],["InterPro%3AIPR000334","Glycoside hydrolase, family 45"]]},{"id":"GO:0051139","l":"metal cation:proton antiporter activity","na":2,"nb":26,"a":[["environment/alkalotolerant.html","alkalotolerant"],["environment/neutrophilic.html","neutrophilic"]],"b":[["GO%3A0015369","calcium:proton antiporter activity"],["GO%3A0010348","lithium:proton antiporter activity"],["GO%3A0010486","manganese:proton antiporter activity"],["GO%3A0051139","metal cation:proton antiporter activity"],["GO%3A0015386","potassium:proton antiporter activity"],["GO%3A0015385","sodium:proton antiporter activity"]]},{"id":"GO:1990573","l":"potassium ion import across plasma membrane","na":2,"nb":25,"a":[["environment/nacl_delta.html","NaCl delta"],["environment/nacl_delta_mid1.html","NaCl delta mid1"]],"b":[["ComplexPortal%3ACPX-260","HCN1 channel complex"],["ComplexPortal%3ACPX-142","HCN2 channel complex"],["ComplexPortal%3ACPX-270","HCN3 channel complex"],["ComplexPortal%3ACPX-139","HCN4 channel complex"],["ComplexPortal%3ACPX-186","Inward rectifying potassium channel complex, Kir6.2-SUR1"],["ComplexPortal%3ACPX-194","Inward rectifying potassium channel complex, Kir6.2-SUR1"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":2,"nb":25,"a":[["genomics/ploidy.html","ploidy"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["Pfam%3APF13372","Alginate export"],["Pfam%3APF25965","ALG44 beta-barrel domain"],["Pfam%3APF25964","ALG44, barrel-sandwich hybrid domain"],["Pfam%3APF16844","Dinitrogenase iron-molybdenum cofactor, N-terminal"],["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"]]},{"id":"GO:0004089","l":"carbonate dehydratase activity","na":2,"nb":24,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["physiology/urease_activity.html","urease activity"]],"b":[["EC%3A4.2.1.1","carbonic anhydrase"],["RHEA%3A10748","hydrogencarbonate + H(+) = CO2 + H2O"],["GO%3A0004089","carbonate dehydratase activity"],["NCBIfam%3ANF007756","carbonate dehydratase"],["NCBIfam%3ANF011765","carbonic anhydrase family protein"],["NCBIfam%3ANF040597","carbonic anhydrase"]]},{"id":"UniProt:P0AE67","l":"","na":2,"nb":24,"a":[["morphology/motile.html","motile"],["physiology/chemotaxis.html","chemotaxis"]],"b":[["ComplexPortal%3ACPX-1077","Chemotaxis phosphorelay complex CheA-CheY"],["ComplexPortal%3ACPX-1088","Chemotaxis phosphorelay complex CheY-CheZ"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009433","bacterial-type flagellum basal body, C ring"],["GO%3A0009288","bacterial-type flagellum"],["GO%3A0120107","bacterial-type flagellum rotor complex"]]},{"id":"CHEBI:15429","l":"","na":2,"nb":23,"a":[["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["EC%3A1.14.99.39","ammonia monooxygenase"],["EC%3A1.3.7.8","benzoyl-CoA reductase"],["EC%3A1.7.1.10","hydroxylamine reductase (NADH)"],["EC%3A1.7.1.5","hyponitrite reductase"],["EC%3A1.7.2.6","hydroxylamine dehydrogenase"],["EC%3A1.7.2.9","hydroxylamine oxidase"]]},{"id":"CHEBI:29105","l":"zinc(2+)","na":2,"nb":20,"a":[["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/zinc_tolerant.html","zinc tolerant"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29105","requires zinc(2+)"],["EC%3A7.2.2.12","P-type Zn(2+) transporter"],["EC%3A7.2.2.20","ABC-type Zn(2+) transporter"],["RHEA%3A62264","selenite(out) + Zn(2+)(out) + hydrogencarbonate(out) = selenite(in) + Zn(2+)(in) + hydrogencarbonate(in)"],["RHEA%3A72627","Zn(2+)(in) + 2 H(+)(out) = Zn(2+)(out) + 2 H(+)(in)"],["RHEA%3A20621","Zn(2+)(in) + ATP + H2O = Zn(2+)(out) + ADP + phosphate + H(+)"]]},{"id":"CHEBI:18421","l":"","na":2,"nb":19,"a":[["environment/microaerotolerant.html","microaerotolerant"],["environment/obligately_aerobic.html","obligately aerobic"]],"b":[["EC%3A1.10.3.17","superoxide oxidase"],["EC%3A1.15.1.1","superoxide dismutase"],["EC%3A1.15.1.2","superoxide reductase"],["RHEA%3A80515","2,4,6-trinitrotoluene radical + O2 = 2,4,6-trinitrotoluene + superoxide + H(+)"],["RHEA%3A20696","2 superoxide + 2 H(+) = H2O2 + O2"],["RHEA%3A29179","a menaquinol + 2 O2 = 2 superoxide + a menaquinone + 2 H(+)"]]},{"id":"GO:0009039","l":"urease activity","na":2,"nb":19,"a":[["other/urease_negative.html","urease negative"],["physiology/urease_activity.html","urease activity"]],"b":[["EC%3A3.5.1.5","urease"],["METPO%3A1007088","urease negative"],["METPO%3A1007087","urease positive"],["RHEA%3A20557","urea + 2 H2O + H(+) = hydrogencarbonate + 2 NH4(+)"],["GO%3A0009039","urease activity"],["NCBIfam%3ANF009685","urease subunit alpha"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":2,"nb":19,"a":[["genomics/crispr_cas_system.html","CRISPR-Cas system"],["genomics/phage_defense_system.html","phage defense system"]],"b":[["Pfam%3APF03306","Alpha-acetolactate decarboxylase"],["Pfam%3APF22208","Cas_Csm6 CARF domain"],["Pfam%3APF09659","Cas_Csm6 HEPN domain"],["Pfam%3APF22335","Cas10/Cmr2, second palm domain"],["Pfam%3APF18395","Cas3 C-terminal domain"],["Pfam%3APF18019","Cas3, HD domain"]]},{"id":"GO:0031411","l":"gas vesicle","na":2,"nb":18,"a":[["morphology/gas_vesicle.html","gas vesicle"],["morphology/intracellular_inclusion.html","intracellular inclusion"]],"b":[["GO%3A0031411","gas vesicle"],["NCBIfam%3ANF041667","gas vesicle accessory protein GvpU"],["NCBIfam%3ANF046092","gas vesicle protein GvpA"],["NCBIfam%3ANF045779","gas vesicle protein GvpG"],["NCBIfam%3ANF046090","gas vesicle protein GvpJ"],["NCBIfam%3ANF045778","gas vesicle protein GvpL"]]},{"id":"UniProt:P13445","l":"","na":2,"nb":15,"a":[["physiology/stress_response.html","stress response"],["physiology/viable_but_nonculturable_state.html","viable but nonculturable state"]],"b":[["ComplexPortal%3ACPX-4883","DNA-directed RNA polymerase holoenzyme complex, SigmaS variant"],["ComplexPortal%3ACPX-5024","rpoS-rssB sigma-antisigma complex"],["GO%3A1903865","sigma factor antagonist complex"],["GO%3A0001000","bacterial-type RNA polymerase core enzyme binding"],["GO%3A0016987","sigma factor activity"],["GO%3A0006352","DNA-templated transcription initiation"]]},{"id":"CHEBI:15846","l":"NAD(+)","na":2,"nb":14,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15846","requires NAD+"],["ARO%3A3002846","arr-1"],["ARO%3A3002847","arr-2"],["ARO%3A3002848","arr-3"],["ARO%3A3002849","arr-4"],["ARO%3A3002850","arr-5"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":2,"nb":14,"a":[["morphology/carboxysome.html","carboxysome"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF02224","Cytidylate kinase"],["Pfam%3APF03319","Ethanolamine utilisation protein EutN/carboxysome"],["Pfam%3APF22019","alpha-1,4-glucan branching enzyme GlgB, N-terminal domain"],["Pfam%3APF21714","Circadian clock protein KaiA, N-terminal domain"],["Pfam%3APF07688","KaiA C-terminal domain"]]},{"id":"CHEBI:17045","l":"dinitrogen oxide","na":2,"nb":13,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["physiology/chemolithotrophic.html","chemolithotrophic"]],"b":[["EC%3A1.7.1.14","nitric oxide reductase [NAD(P)(+), nitrous oxide-forming]"],["EC%3A1.7.2.4","nitrous-oxide reductase"],["EC%3A1.7.2.5","nitric-oxide reductase (cytochrome c)"],["EC%3A1.7.5.2","nitric oxide reductase (menaquinol)"],["RHEA%3A30215","a menaquinol + 2 nitric oxide = nitrous oxide + a menaquinone + H2O"],["RHEA%3A43108","N2 + 2 Fe(III)-[cytochrome c] + H2O = nitrous oxide + 2 Fe(II)-[cytochrome c] + 2 H(+)"]]},{"id":"NCBITaxon:272562","l":"Clostridium acetobutylicum (strain ATCC 824 / DSM 792 / JCM 1419 / IAM 19013 / LMG 5710 / NBRC 13948 / NRRL B-527 / VKM B-1787 / 2291 / W)","na":2,"nb":13,"a":[["metabolism/acetone_butanol_ethanol_fermentation.html","acetone-butanol-ethanol fermentation"],["metabolism/fermentation.html","Fermentation"]],"b":[["Pfam%3APF10882","Bacterial PH domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["Pfam%3APF09940","Domain of unknown function (DUF2172)"],["Pfam%3APF16254","Domain of unknown function (DUF4910)"],["Pfam%3APF01183","Glycosyl hydrolases family 25"],["Pfam%3APF16221","winged helix-turn-helix"]]},{"id":"GO:0031469","l":"bacterial microcompartment","na":2,"nb":12,"a":[["morphology/carboxysome.html","carboxysome"],["morphology/intracellular_inclusion.html","intracellular inclusion"]],"b":[["GO%3A0031469","bacterial microcompartment"],["GO%3A0031470","carboxysome"],["GO%3A0031471","ethanolamine degradation polyhedral organelle"],["GO%3A0031472","propanediol degradation polyhedral organelle"],["NCBIfam%3ATIGR02704","carboxysome peptide B"],["NCBIfam%3ANF011934","ethanolamine utilization microcompartment protein EutL"]]},{"id":"NCBITaxon:301447","l":"Streptococcus pyogenes serotype M1","na":2,"nb":12,"a":[["genomics/crispr_cas_system.html","CRISPR-Cas system"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["Pfam%3APF16595","PAM-interacting domain of CRISPR-associated endonuclease Cas9"],["Pfam%3APF22702","Cas9 RuvC domain"],["Pfam%3APF24547","Domain of unknown function (DUF7601)"],["Pfam%3APF22382","Endo-beta-N-acetylglucosaminidase, helical bundle"],["Pfam%3APF20746","Endo-beta-N-acetylglucosaminidase F2, Ig-like domain"],["Pfam%3APF12892","Spy0128-like isopeptide containing domain"]]},{"id":"NCBITaxon:485","l":"Neisseria gonorrhoeae","na":2,"nb":12,"a":[["physiology/oxidase_activity.html","oxidase activity"],["physiology/prolyl_aminopeptidase_activity.html","prolyl aminopeptidase activity"]],"b":[["Pfam%3APF25860","Cryptic plasmid protein A"],["Pfam%3APF12852","Cupin"],["Pfam%3APF17845","FbpC C-terminal regulatory nucleotide binding domain"],["Pfam%3APF22443","FbpC-like, regulatory domain"],["Pfam%3APF18053","DNA gyrase B subunit insert domain"],["Pfam%3APF25885","EMRA, alpha-helical hairpin domain"]]},{"id":"GO:0030641","l":"","na":11,"nb":2,"a":[["environment/acidophilic.html","acidophilic"],["environment/acidotolerant.html","acidotolerant"],["environment/alkalotolerant.html","alkalotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"]],"b":[["PANTHER%3APTHR10110","SODIUM/HYDROGEN EXCHANGER"],["PANTHER%3APTHR12471","VACUOLAR ATP SYNTHASE SUBUNIT S1"]]},{"id":"GO:0035825","l":"homologous recombination","na":2,"nb":11,"a":[["environment/radiotolerant.html","radiotolerant"],["genomics/gc_mid2.html","GC mid2"]],"b":[["ComplexPortal%3ACPX-4426","BRCA1-B complex"],["ComplexPortal%3ACPX-4721","BRCA1-B complex"],["ComplexPortal%3ACPX-4441","BRCA1-C complex"],["ComplexPortal%3ACPX-4722","BRCA1-C complex"],["ComplexPortal%3ACPX-9561","FLIP-FIGNL1 DNA interstrand crosslink repair complex"],["ComplexPortal%3ACPX-1386","Synapsis initiation complex"]]},{"id":"GO:0044403","l":"biological process involved in symbiotic interaction","na":2,"nb":11,"a":[["ecology/plant_pathogen.html","plant pathogen"],["ecology/symbiosis.html","symbiosis"]],"b":[["GO%3A0036377","arbuscular mycorrhizal association"],["GO%3A0051701","biological process involved in interaction with host"],["GO%3A0051702","biological process involved in interaction with symbiont"],["GO%3A0044403","biological process involved in symbiotic interaction"],["GO%3A0075733","intracellular transport of virus"],["GO%3A0044399","multi-species biofilm formation"]]},{"id":"GO:1990586","l":"divisome complex","na":2,"nb":11,"a":[["morphology/coccus_shaped.html","coccus shaped"],["morphology/ellipsoidal.html","ellipsoidal"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["ComplexPortal%3ACPX-3299","FtsBL complex"],["ComplexPortal%3ACPX-3099","FtsQBL complex"],["GO%3A1990586","divisome complex"],["GO%3A1990588","FtsBL complex"],["GO%3A1990587","FtsQBL complex"]]},{"id":"GO:0008976","l":"polyphosphate kinase activity","na":2,"nb":10,"a":[["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/polyphosphate_granule.html","polyphosphate granule"]],"b":[["EC%3A2.7.4.1","ATP-polyphosphate phosphotransferase"],["RHEA%3A19573","[phosphate](n) + ATP = [phosphate](n+1) + ADP"],["GO%3A0008976","polyphosphate kinase activity"],["NCBIfam%3ANF042973","ADP-polyphosphate phosphotransferase"],["NCBIfam%3ATIGR03705","polyphosphate kinase 1"],["NCBIfam%3ATIGR03707","polyphosphate kinase 2"]]},{"id":"GO:0004329","l":"formate-tetrahydrofolate ligase activity","na":2,"nb":9,"a":[["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"]],"b":[["EC%3A6.3.4.3","formate--tetrahydrofolate ligase"],["RHEA%3A20221","(6S)-5,6,7,8-tetrahydrofolate + formate + ATP = (6R)-10-formyltetrahydrofolate + ADP + phosphate"],["GO%3A0004329","formate-tetrahydrofolate ligase activity"],["NCBIfam%3ANF010030","formate--tetrahydrofolate ligase"],["NCBIfam%3ANF010031","formate--tetrahydrofolate ligase"],["NCBIfam%3ANF013436","formate--tetrahydrofolate ligase"]]},{"id":"GO:0019164","l":"pyruvate synthase activity","na":2,"nb":9,"a":[["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"]],"b":[["EC%3A1.2.7.1","pyruvate synthase"],["RHEA%3A12765","2 oxidized [2Fe-2S]-[ferredoxin] + pyruvate + CoA = 2 reduced [2Fe-2S]-[ferredoxin] + acetyl-CoA + CO2 + H(+)"],["GO%3A0019164","pyruvate synthase activity"],["NCBIfam%3ANF041170","2-oxoacid:ferredoxin oxidoreductase subunit alpha"],["NCBIfam%3ANF041171","2-oxoacid:ferredoxin oxidoreductase subunit beta"],["NCBIfam%3ANF040682","pyruvate synthase subunit PorA"]]},{"id":"GO:0031160","l":"spore wall","na":2,"nb":9,"a":[["morphology/spore_forming.html","spore forming"],["morphology/spore_shaped.html","spore shaped"]],"b":[["ComplexPortal%3ACPX-3028","1,3-beta-D-glucan synthase complex, FKS3-RHO1 variant"],["GO%3A0005619","ascospore wall"],["GO%3A0097515","asexual spore wall"],["GO%3A0043591","endospore external encapsulating structure"],["GO%3A0097514","sexual spore wall"],["GO%3A0031160","spore wall"]]},{"id":"NCBITaxon:818","l":"Bacteroides thetaiotaomicron","na":2,"nb":9,"a":[["ecology/gut_associated.html","gut-associated"],["ecology/host_associated.html","host-associated"]],"b":[["Pfam%3APF09093","Lyase, catalytic"],["TED%3AAF-A0A174W9M0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A174W9M0-F1-model_v4_TED01"],["TED%3AAF-A0A679HCU6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A679HCU6-F1-model_v4_TED01"],["TED%3AAF-A0A139L295-F1-model_v4_TED04","TED novel fold AF-A0A139L295-F1-model_v4_TED04"],["TED%3AAF-A0A174QBB7-F1-model_v4_TED02","TED novel fold AF-A0A174QBB7-F1-model_v4_TED02"],["TED%3AAF-A0A679H9T4-F1-model_v4_TED03","TED novel fold AF-A0A679H9T4-F1-model_v4_TED03"]]},{"id":"GO:0000917","l":"division septum assembly","na":2,"nb":8,"a":[["morphology/sarcina_arrangement.html","sarcina arrangement"],["morphology/tetrad_arrangement.html","tetrad arrangement"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["GO%3A0000917","division septum assembly"],["GO%3A0140278","mitotic division septum assembly"],["NCBIfam%3ATIGR02205","cell division protein ZipA"],["NCBIfam%3ATIGR00172","Maf family nucleotide pyrophosphatase"],["PANTHER%3APTHR36419","ARRESTIN FAMILY PROTEIN 1"]]},{"id":"GO:0061579","l":"N-acyl homoserine lactone synthase activity","na":2,"nb":8,"a":[["physiology/bioluminescence.html","bioluminescence"],["physiology/quorum_sensing.html","quorum sensing"]],"b":[["EC%3A2.3.1.184","acyl-homoserine-lactone synthase"],["RHEA%3A10096","a fatty acyl-[ACP] + S-adenosyl-L-methionine = an N-acyl-L-homoserine lactone + S-methyl-5'-thioadenosine + holo-[ACP] + H(+)"],["GO%3A0061579","N-acyl homoserine lactone synthase activity"],["NCBIfam%3ANF052393","acyl-homoserine-lactone synthase"],["NCBIfam%3ANF036435","acyl-homoserine-lactone synthase"],["Pfam%3APF17327","Acyl homoserine lactone synthase"]]},{"id":"NCBITaxon:565050","l":"Caulobacter vibrioides NA1000","na":2,"nb":8,"a":[["morphology/crescent_shaped.html","crescent shaped"],["morphology/tailed_shaped.html","tailed shaped"]],"b":[["Pfam%3APF02767","DNA polymerase III beta subunit, central domain"],["Pfam%3APF02768","DNA polymerase III beta subunit, C-terminal domain"],["Pfam%3APF00712","DNA polymerase III beta subunit, N-terminal domain"],["Pfam%3APF21249","GyrB, hook"],["Pfam%3APF07378","Flagellar protein FlbT"],["Pfam%3APF03748","Flagellar basal body-associated protein FliL"]]},{"id":"GO:0042438","l":"melanin biosynthetic process","na":2,"nb":7,"a":[["morphology/black_pigmented.html","black pigmented"],["morphology/white_pigmented.html","white pigmented"]],"b":[["GO%3A0140614","1,8-dihydroxynaphthalene-melanin biosynthetic process"],["GO%3A0006583","melanin biosynthetic process from tyrosine"],["GO%3A0042438","melanin biosynthetic process"],["Reactome%3AR-HSA-5662702","Melanin biosynthesis"],["NCBIfam%3ANF017995","tyrosinase family oxidase copper chaperone"],["NCBIfam%3ANF047834","tyrosinase MelC2"]]},{"id":"GO:0050304","l":"nitrous-oxide reductase activity","na":2,"nb":7,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"]],"b":[["EC%3A1.7.2.4","nitrous-oxide reductase"],["RHEA%3A43108","N2 + 2 Fe(III)-[cytochrome c] + H2O = nitrous oxide + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["GO%3A0050304","nitrous-oxide reductase activity"],["NCBIfam%3ANF052460","clade III lactonase-type nitrous-oxide reductase"],["NCBIfam%3ATIGR04244","TAT-dependent nitrous-oxide reductase"],["NCBIfam%3ATIGR04246","Sec-dependent nitrous-oxide reductase"]]},{"id":"NCBITaxon:28116","l":"Bacteroides ovatus","na":2,"nb":7,"a":[["metabolism/xylan_degradation.html","xylan degradation"],["physiology/amylase_activity.html","amylase activity"]],"b":[["TED%3AAF-A0A515J030-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A515J030-F1-model_v4_TED01"],["TED%3AAF-A0A5M5C3M7-F1-model_v4_TED01","TED novel fold AF-A0A5M5C3M7-F1-model_v4_TED01"],["TED%3AAF-A0A641PL20-F1-model_v4_TED01","TED novel fold AF-A0A641PL20-F1-model_v4_TED01"],["TED%3AAF-A0A641V3P9-F1-model_v4_TED03","TED novel fold AF-A0A641V3P9-F1-model_v4_TED03"],["TED%3AAF-A0A641VT79-F1-model_v4_TED01","TED novel fold AF-A0A641VT79-F1-model_v4_TED01"],["TED%3AAF-A0A642C648-F1-model_v4_TED01","TED novel fold AF-A0A642C648-F1-model_v4_TED01"]]},{"id":"CHEBI:18246","l":"(1->4)-beta-D-glucan","na":2,"nb":6,"a":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/cellulolysis.html","cellulolysis"]],"b":[["EC%3A2.4.1.12","cellulose synthase (UDP-forming)"],["EC%3A2.4.1.29","cellulose synthase (GDP-forming)"],["EC%3A2.4.1.49","cellodextrin phosphorylase"],["RHEA%3A17797","[(1->4)-beta-D-glucosyl](n) + GDP-alpha-D-glucose = [(1->4)-beta-D-glucosyl](n+1) + GDP + H(+)"],["RHEA%3A23024","[(1->4)-beta-D-glucosyl](n) + phosphate = [(1->4)-beta-D-glucosyl](n-1) + alpha-D-glucose 1-phosphate"],["RHEA%3A19929","[(1->4)-beta-D-glucosyl](n) + UDP-alpha-D-glucose = [(1->4)-beta-D-glucosyl](n+1) + UDP + H(+)"]]},{"id":"CHEBI:27208","l":"","na":6,"nb":2,"a":[["environment/mesophilic.html","mesophilic"],["environment/temperature_delta.html","temperature delta"],["environment/temperature_delta_mid2.html","temperature delta mid2"],["environment/temperature_optimum_mid1.html","temperature optimum mid1"],["environment/temperature_optimum_mid2.html","temperature optimum mid2"],["environment/temperature_optimum_very_low.html","temperature optimum very low"]],"b":[["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"],["TCDB%3A9.A.76","The Omega3 Fatty Acid Desaturase 3/Putative Transporter (FAD3) Family"]]},{"id":"InterPro:IPR012171","l":"","na":2,"nb":6,"a":[["environment/facultative_psychrophilic.html","facultative psychrophilic"],["environment/temperature_preference.html","temperature preference"]],"b":[["Pfam%3APF00173","Cytochrome b5-like Heme/Steroid binding domain"],["Pfam%3APF00487","Fatty acid desaturase"],["PANTHER%3APTHR19353","FATTY ACID DESATURASE 2"],["PANTHER%3APTHR32100","OMEGA-6 FATTY ACID DESATURASE, CHLOROPLASTIC"],["Pfam%3APF11960","Domain of unknown function (DUF3474)"],["PROSITE%3APS00574","Fatty acid desaturases family 2 signature"]]},{"id":"NCBITaxon:727","l":"Haemophilus influenzae","na":2,"nb":6,"a":[["genomics/restriction_modification_system.html","restriction-modification system"],["morphology/coccobacillus_shaped.html","coccobacillus shaped"]],"b":[["Pfam%3APF06808","Tripartite ATP-independent periplasmic transporter, DctM component"],["Pfam%3APF04290","Tripartite ATP-independent periplasmic transporters, DctQ component"],["Pfam%3APF09226","Restriction endonuclease HincII"],["Pfam%3APF09520","Type II restriction endonuclease, HinfI"],["Pfam%3APF24077","Immunoglobulin A1 protease autotransporter domain 2"],["PROSITE%3APS01068","OmpA-like domain"]]},{"id":"CHEBI:16094","l":"thiosulfate(2-)","na":5,"nb":2,"a":[["metabolism/disproportionation.html","Disproportionation"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["proteintraitsmech%3ABIOLIP_THJ","THJ-binding site"]]},{"id":"GO:0009291","l":"unidirectional conjugation","na":2,"nb":5,"a":[["genomics/genomic_island.html","genomic island"],["genomics/plasmid_carriage.html","plasmid carriage"]],"b":[["GO%3A0000762","pheromone-induced unidirectional conjugation"],["GO%3A0009291","unidirectional conjugation"],["NCBIfam%3ATIGR02775","P-type conjugative transfer protein TrbG"],["NCBIfam%3ATIGR02780","P-type conjugative transfer protein TrbJ"],["NCBIfam%3ATIGR02783","P-type conjugative transfer protein TrbL"]]},{"id":"GO:0016610","l":"nitrogenase complex","na":2,"nb":5,"a":[["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["GO%3A0016611","iron-iron nitrogenase complex"],["GO%3A0016612","molybdenum-iron nitrogenase complex"],["GO%3A0016610","nitrogenase complex"],["GO%3A0016613","vanadium-iron nitrogenase complex"],["NCBIfam%3ATIGR01287","nitrogenase iron protein"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":2,"nb":5,"a":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"]],"b":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF02963","Restriction endonuclease EcoRI"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["PROSITE%3APS00974","Mannitol dehydrogenases signature"],["PROSITE%3APS00567","Phosphoribulokinase signature"]]},{"id":"NCBITaxon:920","l":"Acidithiobacillus ferrooxidans","na":5,"nb":2,"a":[["environment/obligately_acidophilic.html","obligately acidophilic"],["environment/ph_range_low.html","pH range low"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["Pfam%3APF20538","Family of unknown function (DUF6753)"],["PROSITE%3APS01007","Transposases, Mutator family, signature"]]},{"id":"CHEBI:16234","l":"","na":2,"nb":4,"a":[["environment/alkalotolerant.html","alkalotolerant"],["physiology/urease_activity.html","urease activity"]],"b":[["TCDB%3A2.A.53","The Sulfate Permease (SulP) Family"],["MCSA%3A172","isoaspartyl dipeptidase"],["MCSA%3A989","Retroviral integrase"],["MCSA%3A965","Viperin"]]},{"id":"GO:0000920","l":"septum digestion after cytokinesis","na":2,"nb":4,"a":[["morphology/diplococcus_shaped.html","diplococcus shaped"],["morphology/dumbbell_shaped.html","dumbbell shaped"]],"b":[["ComplexPortal%3ACPX-1684","CBK1-MOB2 kinase complex"],["ComplexPortal%3ACPX-1712","Gin4 serine/threonine kinase complex"],["ComplexPortal%3ACPX-1426","Myosin class II complex"],["GO%3A0000920","septum digestion after cytokinesis"]]},{"id":"GO:0030115","l":"S-layer","na":2,"nb":4,"a":[["morphology/square_shaped.html","square shaped"],["morphology/triangular_shaped.html","triangular shaped"]],"b":[["GO%3A0030115","S-layer"],["NCBIfam%3ANF041335","ArtA-dependent S-layer glycoprotein"],["NCBIfam%3ANF053619","BT1927 family outer membrane S-layer protein"],["NCBIfam%3ANF041073","S-layer protein SlaA"]]},{"id":"GO:0043107","l":"type IV pilus-dependent motility","na":2,"nb":4,"a":[["morphology/motile.html","motile"],["morphology/twitching_motility.html","twitching motility"]],"b":[["GO%3A0043107","type IV pilus-dependent motility"],["NCBIfam%3ATIGR01420","PilT/PilU family type 4a pilus ATPase"],["NCBIfam%3ANF016253","type 4a pilus biogenesis protein PilO"],["Pfam%3APF04350","Type IVa pilus alignment subcomplex PilO C-terminal domain"]]},{"id":"GO:0043884","l":"CO-methylating acetyl-CoA synthase activity","na":2,"nb":4,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"]],"b":[["EC%3A2.3.1.169","CO-methylating acetyl-CoA synthase"],["RHEA%3A45212","Co(I)-[corrinoid Fe-S protein] + acetyl-CoA + H(+) = methyl-Co(III)-[corrinoid Fe-S protein] + CO + CoA"],["GO%3A0043884","CO-methylating acetyl-CoA synthase activity"],["NCBIfam%3ATIGR00316","CO dehydrogenase/CO-methylating acetyl-CoA synthase complex subunit beta"]]},{"id":"GO:0050338","l":"thiosulfate dehydrogenase activity","na":2,"nb":4,"a":[["metabolism/disproportionation.html","Disproportionation"],["metabolism/sulfur_oxidation.html","sulfur oxidation"]],"b":[["EC%3A1.8.2.2","thiosulfate dehydrogenase"],["RHEA%3A20549","2 thiosulfate + 2 Fe(III)-[cytochrome c] = tetrathionate + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["GO%3A0050338","thiosulfate dehydrogenase activity"],["MCSA%3A986","Thiosulfate dehydrogenase"]]},{"id":"METPO:2000302","l":"shows activity of","na":2,"nb":4,"a":[["metabolism/shows_activity_of.html","shows activity of"],["other/coagulase_positive.html","coagulase positive"]],"b":[["METPO%3A1007083","catalase positive"],["METPO%3A1007090","coagulase positive"],["METPO%3A1007085","oxidase positive"],["METPO%3A1007087","urease positive"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":2,"nb":4,"a":[["genomics/abialpha_system.html","AbiAlpha system"],["physiology/gelatinase_activity.html","gelatinase activity"]],"b":[["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF09711","CRISPR-associated protein (Cas_Csn2)"],["Pfam%3APF06308","23S rRNA methylastransferase leader peptide (ErmCL)"]]},{"id":"GO:0019329","l":"ammonia oxidation","na":2,"nb":3,"a":[["metabolism/complete_ammonia_oxidation.html","complete ammonia oxidation"],["metabolism/nitrification.html","nitrification"]],"b":[["GO%3A0019409","aerobic respiration, using ammonia as electron donor"],["GO%3A0019329","ammonia oxidation"],["GO%3A0019331","anaerobic respiration, using ammonium as electron donor"]]},{"id":"GO:0070088","l":"polyhydroxyalkanoate granule","na":2,"nb":3,"a":[["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]],"b":[["GO%3A0070088","polyhydroxyalkanoate granule"],["NCBIfam%3ANF045536","polyhydroxyalkanoate granule-associated phasin"],["NCBIfam%3ANF045537","polyhydroxyalkanoate granule-associated phasin"]]},{"id":"InterPro:IPR007793","l":"","na":3,"nb":2,"a":[["morphology/ellipsoidal.html","ellipsoidal"],["morphology/filament_shaped.html","filament shaped"],["morphology/ovoid_shaped.html","ovoid shaped"]],"b":[["PANTHER%3APTHR35794","CELL DIVISION PROTEIN DIVIVA"],["Pfam%3APF05103","DivIVA protein"]]},{"id":"InterPro:IPR012761","l":"","na":3,"nb":2,"a":[["physiology/oxidative_stress_response.html","oxidative stress response"],["physiology/stress_response.html","stress response"],["physiology/viable_but_nonculturable_state.html","viable but nonculturable state"]],"b":[["HAMAP%3AMF_00959","RNA polymerase sigma factor RpoS [rpoS]"],["PROSITE%3APS00716","Sigma-70 factors family signature 2"]]},{"id":"InterPro:IPR050077","l":"","na":2,"nb":3,"a":[["genomics/prophage.html","prophage"],["physiology/sos_response.html","SOS response"]],"b":[["Pfam%3APF12840","Helix-turn-helix domain"],["Pfam%3APF01726","LexA DNA binding domain"],["PANTHER%3APTHR33516","LEXA REPRESSOR"]]},{"id":"METPO:1000602","l":"aerobic","na":3,"nb":2,"a":[["environment/aerobic.html","aerobic"],["environment/oxygen_preference.html","oxygen preference"],["physiology/aerobic_anoxygenic_phototrophy.html","aerobic anoxygenic phototrophy"]],"b":[["METPO%3A1000602","aerobic"],["METPO%3A1000606","obligately aerobic"]]},{"id":"METPO:1007080","l":"catalase test","na":2,"nb":3,"a":[["other/catalase_negative.html","catalase negative"],["other/catalase_test.html","catalase test"]],"b":[["METPO%3A1007084","catalase negative"],["METPO%3A1007083","catalase positive"],["METPO%3A1007080","catalase test"]]},{"id":"METPO:1007081","l":"oxidase test","na":2,"nb":3,"a":[["other/oxidase_negative.html","oxidase negative"],["other/oxidase_test.html","oxidase test"]],"b":[["METPO%3A1007086","oxidase negative"],["METPO%3A1007085","oxidase positive"],["METPO%3A1007081","oxidase test"]]},{"id":"METPO:1007082","l":"urease test","na":2,"nb":3,"a":[["other/urease_negative.html","urease negative"],["other/urease_test.html","urease test"]],"b":[["METPO%3A1007088","urease negative"],["METPO%3A1007087","urease positive"],["METPO%3A1007082","urease test"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":3,"nb":2,"a":[["environment/aerobic.html","aerobic"],["environment/obligately_aerobic.html","obligately aerobic"],["morphology/tetrad_arrangement.html","tetrad arrangement"]],"b":[["Pfam%3APF22538","Hexaprenyl diphosphate synthase, small subunit"],["PROSITE%3APS01066","Undecaprenyl pyrophosphate synthase family signature"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":2,"nb":3,"a":[["genomics/wadjet_system.html","Wadjet system"],["morphology/irregular_shaped.html","irregular shaped"]],"b":[["TED%3AAF-A0A142EAM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142EAM9-F1-model_v4_TED03"],["TED%3AAF-A0A1Q3DTY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3DTY6-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3DNE3-F1-model_v4_TED01","TED novel fold AF-A0A1Q3DNE3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:274","l":"Thermus thermophilus","na":2,"nb":3,"a":[["environment/thermophilic.html","thermophilic"],["morphology/cell_width.html","cell width"]],"b":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF01861","Branched-chain polyamine synthase A C-terminal domain"],["Pfam%3APF07736","Chorismate mutase type I"]]},{"id":"UniProt:Q51705","l":"","na":2,"nb":3,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"]],"b":[["Pfam%3APF18793","Nitrous oxide reductase propeller repeat 2"],["Pfam%3APF18764","Nitrous oxide reductase propeller repeat"],["proteintraitsmech%3ABIOLIP_CUA","CUA-binding site"]]},{"id":"GO:0019417","l":"sulfur oxidation","na":2,"nb":2,"a":[["physiology/lithotrophic.html","lithotrophic"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]],"b":[["GO%3A0019417","sulfur oxidation"],["NCBIfam%3ATIGR04484","sulfur oxidation c-type cytochrome SoxA"]]},{"id":"GO:0019649","l":"formaldehyde assimilation","na":2,"nb":2,"a":[["physiology/methanotrophic.html","methanotrophic"],["physiology/methylotrophic.html","methylotrophic"]],"b":[["GO%3A0019649","formaldehyde assimilation"],["NCBIfam%3ATIGR03128","3-hexulose-6-phosphate synthase"]]},{"id":"InterPro:IPR017402","l":"","na":2,"nb":2,"a":[["metabolism/proteorhodopsin_phototrophy.html","proteorhodopsin phototrophy"],["physiology/photoheterotrophic.html","photoheterotrophic"]],"b":[["Pfam%3APF01036","Bacteriorhodopsin-like protein"],["PROSITE%3APS00950","Bacterial rhodopsins signature 1"]]},{"id":"InterPro:IPR017761","l":"","na":2,"nb":2,"a":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["Pfam%3APF00394","Multicopper oxidase"],["PROSITE%3APS00080","Multicopper oxidases signature 2"]]},{"id":"InterPro:IPR023690","l":"","na":2,"nb":2,"a":[["morphology/bacillus_shaped.html","bacillus shaped"],["morphology/fusiform_shaped.html","fusiform shaped"]],"b":[["Pfam%3APF13413","Helix-turn-helix domain"],["HAMAP%3AMF_02017","Cytoskeleton protein RodZ [rodZ]"]]},{"id":"METPO:1000603","l":"anaerobic","na":2,"nb":2,"a":[["environment/anaerobic.html","anaerobic"],["environment/oxygen_preference.html","oxygen preference"]],"b":[["METPO%3A1000603","anaerobic"],["METPO%3A1000607","obligately anaerobic"]]},{"id":"METPO:1000607","l":"obligately anaerobic","na":2,"nb":2,"a":[["environment/obligately_anaerobic.html","obligately anaerobic"],["environment/strictly_anaerobic.html","strictly anaerobic"]],"b":[["METPO%3A1000607","obligately anaerobic"],["METPO%3A1000611","strictly anaerobic"]]},{"id":"METPO:1003002","l":"alkaliphilic","na":2,"nb":2,"a":[["environment/alkaphilic.html","alkaliphilic"],["environment/obligately_alkaphilic.html","obligately alkaliphilic"]],"b":[["METPO%3A1003002","alkaliphilic"],["METPO%3A1003004","obligately alkaliphilic"]]},{"id":"NCBITaxon:1232683","l":"Marinobacterium lacunae","na":2,"nb":2,"a":[["morphology/cell_length_medium.html","cell length medium"],["morphology/cell_width_large.html","cell width large"]],"b":[["TED%3AAF-A0A081FTJ9-F1-model_v4_TED01","TED novel fold AF-A0A081FTJ9-F1-model_v4_TED01"],["TED%3AAF-A0A081FX50-F1-model_v4_TED01","TED novel fold AF-A0A081FX50-F1-model_v4_TED01"]]},{"id":"GO:0046677","l":"response to antibiotic","na":1,"nb":7410,"a":[["physiology/antibiotic_resistance.html","antibiotic resistance"]],"b":[["UniProtKB-KW%3AKW-0046","Antibiotic resistance"],["GO%3A0071236","cellular response to antibiotic"],["GO%3A0072716","response to actinomycin D"],["GO%3A0046677","response to antibiotic"],["GO%3A0046678","response to bacteriocin"],["GO%3A0031001","response to brefeldin A"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii (strain ATCC 43067 / DSM 2661 / JAL-1 / JCM 10045 / NBRC 100440)","na":1,"nb":5181,"a":[["metabolism/methanogenesis.html","Methanogenesis"]],"b":[["EC%3A1.12.99.-","With other acceptors"],["EC%3A1.3.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.3.-.-","Acting on the CH-CH group of donors"],["EC%3A1.8.98.-","With other, known, acceptors"],["EC%3A1.97.1.-","Other oxidoreductases"],["EC%3A2.1.2.-","Hydroxymethyl-, formyl- and related transferases"]]},{"id":"GO:0016020","l":"membrane","na":1,"nb":3003,"a":[["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"]],"b":[["ComplexPortal%3ACPX-1813","1,3-beta-D-glucan synthase complex, FKS2-RHO1 variant"],["ComplexPortal%3ACPX-4313","Aliphatic sulfonate ABC transporter complex"],["ComplexPortal%3ACPX-4314","Arabinose ABC transporter complex"],["ComplexPortal%3ACPX-4318","Arginine ABC transporter complex, artI variant"],["ComplexPortal%3ACPX-4319","Arginine ABC transporter complex, artJ variant"],["ComplexPortal%3ACPX-6308","ATP10B-CDC50A P4-ATPase complex"]]},{"id":"GO:0005886","l":"plasma membrane","na":1,"nb":861,"a":[["environment/desiccation_tolerant.html","desiccation tolerant"]],"b":[["ComplexPortal%3ACPX-2838","3M complex"],["ComplexPortal%3ACPX-850","AHNAK - Annexin A2 - S100-A10 complex"],["ComplexPortal%3ACPX-6581","Alpha-beta T cell receptor complex, TRBC1 variant"],["ComplexPortal%3ACPX-6482","Alpha-beta T cell receptor complex, TRBC2 variant"],["ComplexPortal%3ACPX-2188","Amiloride-sensitive sodium channel complex, alpha-beta-gamma"],["ComplexPortal%3ACPX-3582","AMT1-1 - AMT1-3 heterotrimer, variant 1"]]},{"id":"CHEBI:28938","l":"ammonium","na":1,"nb":837,"a":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_28938","requires ammonium"],["EC%3A1.13.12.15","3,4-dihydroxyphenylalanine oxidative deaminase"],["EC%3A1.13.99.3","tryptophan 2'-dioxygenase"],["EC%3A1.14.11.37","kanamycin B dioxygenase"],["EC%3A1.14.12.1","anthranilate 1,2-dioxygenase (deaminating, decarboxylating)"],["EC%3A1.14.12.14","2-aminobenzenesulfonate 2,3-dioxygenase"]]},{"id":"GO:0016491","l":"oxidoreductase activity","na":1,"nb":695,"a":[["physiology/chemotrophic.html","chemotrophic"]],"b":[["GO%3A0047143","chlorate reductase activity"],["GO%3A0051213","dioxygenase activity"],["GO%3A0043364","glycyl-radical enzyme activating activity"],["GO%3A0004497","monooxygenase activity"],["GO%3A0050781","ortho-trichlorophenol reductive dehalogenase activity"],["GO%3A0016675","oxidoreductase activity, acting on a heme group of donors"]]},{"id":"GO:0003824","l":"catalytic activity","na":1,"nb":663,"a":[["upper/enzyme.html","enzyme"]],"b":[["GO%3A0140640","catalytic activity, acting on a nucleic acid"],["GO%3A0140096","catalytic activity, acting on a protein"],["GO%3A0003824","catalytic activity"],["GO%3A0009975","cyclase activity"],["GO%3A0160215","deacylase activity"],["GO%3A0032451","demethylase activity"]]},{"id":"GO:0071944","l":"cell periphery","na":1,"nb":440,"a":[["morphology/spiral_shaped.html","spiral shaped"]],"b":[["GO%3A0071944","cell periphery"],["PANTHER%3APTHR31468","1,3-BETA-GLUCANOSYLTRANSFERASE GAS1"],["PANTHER%3APTHR28145","12 KDA HEAT SHOCK PROTEIN"],["PANTHER%3APTHR42755","3-DEOXY-MANNO-OCTULOSONATE CYTIDYLYLTRANSFERASE"],["PANTHER%3APTHR46574","43 KDA RECEPTOR-ASSOCIATED PROTEIN OF THE SYNAPSE"],["PANTHER%3APTHR15182","A-KINASE ANCHOR PROTEIN 5-RELATED"]]},{"id":"GO:0005840","l":"ribosome","na":1,"nb":418,"a":[["physiology/dormancy.html","dormancy"]],"b":[["ComplexPortal%3ACPX-2854","Elongation Factor eEF1 complex, variant CAM1"],["ComplexPortal%3ACPX-425","Elongation Factor eEF1 complex, variant TEF4"],["ComplexPortal%3ACPX-427","Eukaryotic translation initiation factor 2 complex"],["ComplexPortal%3ACPX-430","Eukaryotic translation initiation factor 4F complex, variant TIF4631"],["ComplexPortal%3ACPX-431","Eukaryotic translation initiation factor 4F complex, variant TIF4632"],["ComplexPortal%3ACPX-1295","MKT1-PBP1 translation regulation complex"]]},{"id":"GO:0006260","l":"DNA replication","na":1,"nb":311,"a":[["genomics/gc_skew.html","GC skew"]],"b":[["ComplexPortal%3ACPX-6641","ASCC DNA alkylation repair complex"],["ComplexPortal%3ACPX-568","Chromatin assembly factor 1 complex"],["ComplexPortal%3ACPX-2671","CMG helicase complex"],["ComplexPortal%3ACPX-297","CMG helicase complex"],["ComplexPortal%3ACPX-4526","CMG helicase complex"],["ComplexPortal%3ACPX-4541","CMG helicase complex"]]},{"id":"GO:0008800","l":"beta-lactamase activity","na":1,"nb":311,"a":[["physiology/antibiotic_resistance.html","antibiotic resistance"]],"b":[["EC%3A3.5.2.6","beta-lactamase"],["RHEA%3A20401","a beta-lactam + H2O = a substituted beta-amino acid"],["GO%3A0008800","beta-lactamase activity"],["NCBIfam%3ANF038195","AAK family class A beta-lactamase"],["NCBIfam%3ANF000397","ACC family cephalosporin-hydrolyzing class C beta-lactamase"],["NCBIfam%3ANF000448","ACI family class A beta-lactamase"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":297,"a":[["physiology/dormancy.html","dormancy"]],"b":[["IDPO%3A0000002","disorder"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000045","phosphorylation display site"],["IDPO%3A0000059","self-inhibition"],["Pfam%3APF17837","4'-phosphopantetheinyl transferase N-terminal domain"]]},{"id":"GO:0006281","l":"DNA repair","na":1,"nb":272,"a":[["environment/radiotolerant.html","radiotolerant"]],"b":[["ComplexPortal%3ACPX-4426","BRCA1-B complex"],["ComplexPortal%3ACPX-4721","BRCA1-B complex"],["ComplexPortal%3ACPX-568","Chromatin assembly factor 1 complex"],["ComplexPortal%3ACPX-1959","HU complex, variant hupA"],["ComplexPortal%3ACPX-1958","HU complex, variant hupAB"],["ComplexPortal%3ACPX-863","INO80 chromatin remodeling complex"]]},{"id":"GO:0031090","l":"organelle membrane","na":1,"nb":270,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["GO%3A0098588","bounding membrane of organelle"],["GO%3A0005789","endoplasmic reticulum membrane"],["GO%3A0032580","Golgi cisterna membrane"],["GO%3A0110146","magnetosome membrane"],["GO%3A0031966","mitochondrial membrane"],["GO%3A0031965","nuclear membrane"]]},{"id":"GO:0016301","l":"kinase activity","na":1,"nb":246,"a":[["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["GO%3A0050515","4-(cytidine 5'-diphospho)-2-C-methyl-D-erythritol kinase activity"],["GO%3A0140383","4-hydroxytryptamine kinase activity"],["GO%3A0047590","5-dehydro-2-deoxygluconokinase activity"],["GO%3A0047336","5-methyldeoxycytidine-5'-phosphate kinase activity"],["GO%3A0008776","acetate kinase activity"],["GO%3A0047601","acetate kinase (diphosphate) activity"]]},{"id":"GO:0008152","l":"metabolic process","na":1,"nb":224,"a":[["metabolism/metabolism.html","metabolism"]],"b":[["GO%3A0006666","3-keto-sphinganine metabolic process"],["GO%3A0008291","acetylcholine metabolic process"],["GO%3A0006081","aldehyde metabolic process"],["GO%3A0019330","aldoxime metabolic process"],["GO%3A0009820","alkaloid metabolic process"],["GO%3A0000255","allantoin metabolic process"]]},{"id":"CHEBI:15740","l":"formate","na":1,"nb":173,"a":[["metabolism/syntrophy.html","Syntrophy"]],"b":[["EC%3A1.1.98.6","ribonucleoside-triphosphate reductase (formate)"],["EC%3A1.10.3.15","grixazone synthase"],["EC%3A1.13.11.41","2,4'-dihydroxyacetophenone dioxygenase"],["EC%3A1.13.11.53","acireductone dioxygenase (Ni(2+)-requiring)"],["EC%3A1.13.11.54","acireductone dioxygenase (Fe(2+)-requiring)"],["EC%3A1.13.11.72","2-hydroxyethylphosphonate dioxygenase"]]},{"id":"GO:0016791","l":"phosphatase activity","na":1,"nb":171,"a":[["physiology/naphthol_as_bi_phosphohydrolase_activity.html","naphthol-AS-BI-phosphohydrolase activity"]],"b":[["ComplexPortal%3ACPX-120","Prostatic acid phosphatase complex"],["ComplexPortal%3ACPX-121","Prostatic acid phosphatase complex"],["GO%3A0033885","10-hydroxy-9-(phosphonooxy)octadecanoate phosphatase activity"],["GO%3A0047538","2-carboxy-D-arabinitol-1-phosphatase activity"],["GO%3A0043716","2-hydroxy-3-keto-5-methylthiopentenyl-1-phosphate phosphatase activity"],["GO%3A0050532","2-phosphosulfolactate phosphatase activity"]]},{"id":"NCBITaxon:99287","l":"Salmonella typhimurium (strain LT2 / SGSC1412 / ATCC 700720)","na":1,"nb":167,"a":[["metabolism/tetrathionate_respiration.html","tetrathionate respiration"]],"b":[["Pfam%3APF16031","TonB polyproline region"],["Pfam%3APF13521","AAA domain"],["Pfam%3APF26341","tRNA 2-selenouridine synthase AAA domain"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"],["Pfam%3APF09317","Acyl-CoA dehydrogenase, C-terminal, bacterial type"],["Pfam%3APF06315","Isocitrate dehydrogenase kinase/phosphatase (AceK) kinase domain"]]},{"id":"GO:0015979","l":"photosynthesis","na":1,"nb":146,"a":[["metabolism/photosynthesis.html","photosynthesis"]],"b":[["GO%3A0015979","photosynthesis"],["NCBIfam%3ATIGR01337","allophycocyanin subunit beta"],["NCBIfam%3ATIGR03056","alpha/beta fold hydrolase BchO"],["NCBIfam%3ANF013497","Apocytochrome F, C-terminal"],["NCBIfam%3ANF014391","Bacteriochlorophyll A protein"],["NCBIfam%3ANF058502","C-phycocyanin alpha-cysteine-84 phycocyanobilin lyase subunit CpcE"]]},{"id":"NCBITaxon:71421","l":"Haemophilus influenzae (strain ATCC 51907 / DSM 11121 / KW20 / Rd)","na":1,"nb":133,"a":[["genomics/restriction_modification_system.html","restriction-modification system"]],"b":[["Pfam%3APF13521","AAA domain"],["Pfam%3APF13654","LonB-like, AAA domain"],["Pfam%3APF16326","ABC transporter C-terminal domain"],["Pfam%3APF13710","ACT domain"],["Pfam%3APF12633","Adenylate cyclase NT domain"],["Pfam%3APF26690","Adenylate cyclase, class-I, third domain"]]},{"id":"GO:0006457","l":"protein folding","na":1,"nb":129,"a":[["environment/temperature_range_high.html","temperature range high"]],"b":[["ComplexPortal%3ACPX-2156","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-2772","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-6030","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-2113","GroEL-GroES complex"],["ComplexPortal%3ACPX-1671","Prefoldin co-chaperone complex"],["ComplexPortal%3ACPX-2389","Prefoldin co-chaperone complex"]]},{"id":"GO:0030154","l":"cell differentiation","na":1,"nb":108,"a":[["morphology/heterocyst.html","heterocyst"]],"b":[["GO%3A0048657","anther wall tapetum cell differentiation"],["GO%3A0009557","antipodal cell differentiation"],["GO%3A1903498","bundle sheath cell differentiation"],["GO%3A0035051","cardiocyte differentiation"],["GO%3A0030154","cell differentiation"],["GO%3A0021533","cell differentiation in hindbrain"]]},{"id":"CHEBI:15343","l":"acetaldehyde","na":1,"nb":88,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"]],"b":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.5.5","alcohol dehydrogenase (quinone)"],["EC%3A1.1.99.36","alcohol dehydrogenase (nicotinoprotein)"],["EC%3A1.13.11.88","isoeugenol monooxygenase"],["EC%3A1.13.12.16","nitronate monooxygenase"],["EC%3A1.2.1.10","acetaldehyde dehydrogenase (acetylating)"]]},{"id":"GO:0009307","l":"DNA restriction-modification system","na":1,"nb":83,"a":[["genomics/restriction_modification_system.html","restriction-modification system"]],"b":[["ComplexPortal%3ACPX-5285","McrBC 5-methylcytosine-specific restriction endonuclease complex"],["ComplexPortal%3ACPX-5628","Type I restriction-modification EcoKI complex"],["GO%3A0009307","DNA restriction-modification system"],["NCBIfam%3ANF007277","5-methylcytosine-specific restriction endonuclease system specificity protein McrC"],["NCBIfam%3ATIGR02986","Alw26I/Eco31I/Esp3I family type II restriction endonuclease"],["NCBIfam%3ANF020756","AvaI/BsoBI family type II restriction endonuclease"]]},{"id":"CHEBI:15354","l":"choline","na":1,"nb":78,"a":[["environment/euryhaline.html","euryhaline"]],"b":[["EC%3A1.1.3.17","choline oxidase"],["EC%3A1.1.99.1","choline dehydrogenase"],["EC%3A1.14.15.7","choline monooxygenase"],["EC%3A2.3.1.6","choline O-acetyltransferase"],["EC%3A2.3.1.91","sinapoylglucose--choline O-sinapoyltransferase"],["EC%3A2.7.1.32","choline kinase"]]},{"id":"CHEBI:29806","l":"fumarate(2-)","na":1,"nb":76,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["EC%3A1.3.1.6","fumarate reductase (NADH)"],["EC%3A1.3.2.4","fumarate reductase (cytochrome)"],["EC%3A1.3.4.1","fumarate reductase (CoM/CoB)"],["EC%3A1.3.5.1","succinate dehydrogenase"],["EC%3A1.3.98.1","dihydroorotate oxidase (fumarate)"],["EC%3A3.7.1.14","2-hydroxy-6-oxonona-2,4-dienedioate hydrolase"]]},{"id":"GO:0004803","l":"transposase activity","na":1,"nb":73,"a":[["genomics/transposable_element.html","transposable element"]],"b":[["GO%3A0004803","transposase activity"],["NCBIfam%3ANF015365","IS1 family transposase"],["NCBIfam%3ANF033558","IS1 family transposase"],["NCBIfam%3ANF033542","IS110 family RNA-guided transposase"],["NCBIfam%3ANF033551","IS1182 family transposase"],["NCBIfam%3ANF033544","IS1249 family transposase"]]},{"id":"GO:0006413","l":"translational initiation","na":1,"nb":67,"a":[["genomics/codon_usage_bias.html","codon usage bias"]],"b":[["ComplexPortal%3ACPX-427","Eukaryotic translation initiation factor 2 complex"],["ComplexPortal%3ACPX-1831","Eukaryotic translation initiation factor 3 core complex"],["ComplexPortal%3ACPX-3482","Eukaryotic translation initiation factor 4E-Mxt complex"],["ComplexPortal%3ACPX-2666","Eukaryotic translation initiation factor 4F, EIF4A1 and EIF4G1 variant"],["ComplexPortal%3ACPX-5863","Eukaryotic translation initiation factor 4F, EIF4A1 and EIF4G1 variant"],["ComplexPortal%3ACPX-5635","Eukaryotic translation initiation factor 4F, EIF4A1 and EIF4G3 variant"]]},{"id":"GO:0006950","l":"response to stress","na":1,"nb":67,"a":[["physiology/stress_response.html","stress response"]],"b":[["GO%3A0033554","cellular response to stress"],["GO%3A0006952","defense response"],["GO%3A0033555","multicellular organismal response to stress"],["GO%3A0003299","muscle hypertrophy in response to stress"],["GO%3A0009271","phage shock"],["GO%3A0034059","response to anoxia"]]},{"id":"GO:0031012","l":"extracellular matrix","na":1,"nb":64,"a":[["ecology/biofilm_formation.html","biofilm formation"]],"b":[["ComplexPortal%3ACPX-461","155 kDa platelet multimerin complex"],["ComplexPortal%3ACPX-960","Collagen type II trimer"],["ComplexPortal%3ACPX-1749","Collagen type X trimer"],["ComplexPortal%3ACPX-2971","Collagen type X trimer"],["ComplexPortal%3ACPX-1750","Collagen type XI trimer variant 1"],["ComplexPortal%3ACPX-2975","Collagen type XI trimer variant 1"]]},{"id":"GO:0006289","l":"nucleotide-excision repair","na":1,"nb":60,"a":[["environment/uv_radiation_tolerant.html","UV radiation tolerant"]],"b":[["ComplexPortal%3ACPX-2757","CRL4-ERCC8 E3 ubiquitin ligase complex, CUL4A variant"],["ComplexPortal%3ACPX-2758","CRL4-ERCC8 E3 ubiquitin ligase complex, CUL4B variant"],["ComplexPortal%3ACPX-1837","CUL3-HRT1-ELC1-ELA1 ubiquitin ligase complex"],["ComplexPortal%3ACPX-478","ERCC1-XPF endonuclease complex"],["ComplexPortal%3ACPX-491","Ercc1-Xpf endonuclease complex"],["ComplexPortal%3ACPX-1659","General transcription factor TFIIH complex"]]},{"id":"InterPro:IPR000792","l":"Transcription regulator LuxR-like, C-terminal","na":1,"nb":59,"a":[["physiology/quorum_sensing.html","quorum sensing"]],"b":[["GO%3A0071111","cyclic-guanylate-specific phosphodiesterase activity"],["GO%3A0048031","trisaccharide binding"],["GO%3A1990451","cellular stress response to acidic pH"],["GO%3A0000023","maltose metabolic process"],["GO%3A0000160","phosphorelay signal transduction system"],["GO%3A0045913","positive regulation of carbohydrate metabolic process"]]},{"id":"CHEBI:17976","l":"","na":1,"nb":56,"a":[["metabolism/electron_transfer.html","Electron transfer"]],"b":[["EC%3A1.1.5.14","fructose 5-dehydrogenase"],["EC%3A1.1.5.2","quinoprotein glucose dehydrogenase (PQQ, quinone)"],["EC%3A1.1.5.3","glycerol-3-phosphate dehydrogenase"],["EC%3A1.1.5.5","alcohol dehydrogenase (quinone)"],["EC%3A1.10.3.11","ubiquinol oxidase (non-electrogenic)"],["EC%3A1.10.3.17","superoxide oxidase"]]},{"id":"GO:0006979","l":"response to oxidative stress","na":1,"nb":50,"a":[["physiology/oxidative_stress_response.html","oxidative stress response"]],"b":[["ComplexPortal%3ACPX-9082","19S-20S-PA28-alphabeta hybrid proteasome complex"],["ComplexPortal%3ACPX-9085","19S-20S-PA28-gamma hybrid proteasome complex"],["ComplexPortal%3ACPX-8806","20S proteasome complex"],["ComplexPortal%3ACPX-4862","Alkyl hydroperoxide reductase complex"],["ComplexPortal%3ACPX-8842","PA28-alphabeta double-capped 20S proteasome complex"],["ComplexPortal%3ACPX-9002","PA28-alphabeta single-capped 20S proteasome complex"]]},{"id":"CHEBI:16947","l":"citrate(3-)","na":1,"nb":49,"a":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"]],"b":[["EC%3A2.3.3.1","citrate (Si)-synthase"],["EC%3A2.3.3.16","citrate synthase (unknown stereospecificity)"],["EC%3A2.3.3.3","citrate (Re)-synthase"],["EC%3A2.3.3.8","ATP citrate synthase"],["EC%3A2.8.3.10","citrate CoA-transferase"],["EC%3A4.1.3.6","citrate (pro-3S)-lyase"]]},{"id":"CHEBI:16199","l":"urea","na":1,"nb":48,"a":[["physiology/urease_activity.html","urease activity"]],"b":[["EC%3A3.5.1.5","urease"],["EC%3A3.5.1.95","N-malonylurea hydrolase"],["EC%3A3.5.3.1","arginase"],["EC%3A3.5.3.10","D-arginase"],["EC%3A3.5.3.11","agmatinase"],["EC%3A3.5.3.14","amidinoaspartase"]]},{"id":"NCBITaxon:93061","l":"Staphylococcus aureus (strain NCTC 8325 / PS 47)","na":1,"nb":47,"a":[["physiology/catalase_activity.html","catalase activity"]],"b":[["IDPO%3A0000033","flexible linker"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF07694","5TMR of 5TMR-LYT"],["Pfam%3APF01757","Acyltransferase domain"],["Pfam%3APF18719","ArlS sensor domain"],["Pfam%3APF02216","B domain"]]},{"id":"CHEBI:22563","l":"","na":1,"nb":46,"a":[["environment/euryhaline.html","euryhaline"]],"b":[["TCDB%3A1.C.55","The Agrobacterial VirE2 Target Host Cell Membrane Anion Channel (VirE2) Family"],["TCDB%3A1.A.46","The Anion Channel-forming Bestrophin (Bestrophin) Family"],["TCDB%3A1.A.48","The Anion Channel Tweety (Tweety) Family"],["TCDB%3A2.A.31","The Anion Exchanger (AE) Family"],["TCDB%3A2.A.85","The Aromatic Acid Exporter (ArAE) Family"],["TCDB%3A2.A.45","The Arsenite-Antimonite (ArsB) Efflux Family"]]},{"id":"GO:0006313","l":"DNA transposition","na":1,"nb":46,"a":[["genomics/transposable_element.html","transposable element"]],"b":[["GO%3A0006313","DNA transposition"],["GO%3A0098038","non-replicative DNA transposition"],["GO%3A0098039","replicative DNA transposition"],["NCBIfam%3ANF015365","IS1 family transposase"],["NCBIfam%3ANF038385","IS66-like element accessory protein TnpA"],["NCBIfam%3ANF040815","site-specific tyrosine recombinase/integron integrase"]]},{"id":"GO:0042254","l":"ribosome biogenesis","na":1,"nb":44,"a":[["genomics/rrna_operon_copy_number.html","rRNA operon copy number"]],"b":[["ComplexPortal%3ACPX-8940","Ribosome biogenesis complex"],["GO%3A0042254","ribosome biogenesis"],["NCBIfam%3ANF012679","50S ribosomal protein L10"],["NCBIfam%3ANF016308","Gar1/Naf1 RNA binding region"],["NCBIfam%3ANF016057","nucleolar RNA-binding Nop10p family protein"],["NCBIfam%3ATIGR01575","ribosomal protein S18-alanine N-acetyltransferase"]]},{"id":"CHEBI:16480","l":"nitric oxide","na":1,"nb":43,"a":[["ecology/biofilm_formation.html","biofilm formation"]],"b":[["EC%3A1.14.12.17","nitric oxide dioxygenase"],["EC%3A1.14.13.39","nitric-oxide synthase (NADPH)"],["EC%3A1.14.14.47","nitric-oxide synthase (flavodoxin)"],["EC%3A1.14.15.41","L-tryptophan 4-nitrase"],["EC%3A1.14.15.42","L-tyrosine 3-nitrase"],["EC%3A1.7.1.14","nitric oxide reductase [NAD(P)(+), nitrous oxide-forming]"]]},{"id":"GO:0045271","l":"respiratory chain complex I","na":1,"nb":43,"a":[["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"]],"b":[["ComplexPortal%3ACPX-266","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-577","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-8628","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-8638","Mitochondrial respiratory chain complex I, testis-specific variant"],["ComplexPortal%3ACPX-243","Respiratory chain complex I"],["GO%3A0045271","respiratory chain complex I"]]},{"id":"CHEBI:29036","l":"copper(2+)","na":1,"nb":40,"a":[["environment/copper_tolerant.html","copper tolerant"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29036","requires copper(2+)"],["EC%3A1.1.9.1","alcohol dehydrogenase (azurin)"],["EC%3A1.16.3.4","cuproxidase"],["EC%3A1.17.9.1","4-methylphenol dehydrogenase (hydroxylating)"],["EC%3A1.17.9.2","(+)-pinoresinol hydroxylase"],["EC%3A1.20.9.1","arsenate reductase (azurin)"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima (strain ATCC 43589 / DSM 3109 / JCM 10099 / NBRC 100826 / MSB8)","na":1,"nb":39,"a":[["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"]],"b":[["Pfam%3APF02829","3H domain"],["Pfam%3APF13175","AAA ATPase domain"],["Pfam%3APF01958","Aspartate dehydrogenase, C-terminal"],["Pfam%3APF05448","Acetyl xylan esterase (AXE1)"],["Pfam%3APF04509","CheC-like family"],["Pfam%3APF13690","Chemotaxis phosphatase CheX"]]},{"id":"CHEBI:17272","l":"propionate","na":1,"nb":34,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["EC%3A1.3.1.125","acrylate reductase"],["EC%3A2.7.2.15","propionate kinase"],["EC%3A2.8.3.1","propionate CoA-transferase"],["EC%3A2.8.3.27","propanoyl-CoA:succinate CoA transferase"],["EC%3A4.1.3.32","2,3-dimethylmalate lyase"],["EC%3A6.2.1.13","acetate--CoA ligase (ADP-forming)"]]},{"id":"GO:0003674","l":"molecular_function","na":1,"nb":34,"a":[["upper/biological_process.html","biological process"]],"b":[["GO%3A0016209","antioxidant activity"],["GO%3A0140657","ATP-dependent activity"],["GO%3A0005488","binding"],["GO%3A0038024","cargo receptor activity"],["GO%3A0003824","catalytic activity"],["GO%3A0003774","cytoskeletal motor activity"]]},{"id":"CHEBI:17968","l":"butyrate","na":1,"nb":33,"a":[["ecology/gut_associated.html","gut-associated"]],"b":[["EC%3A1.3.1.31","2-enoate reductase"],["EC%3A2.3.1.315","succinyl-CoA:cyclohexane-1-carboxylate CoA transferase"],["EC%3A2.7.2.7","butyrate kinase"],["EC%3A2.8.3.9","butyrate--acetoacetate CoA-transferase"],["EC%3A3.1.1.51","phorbol-diester hydrolase"],["EC%3A3.7.1.7","beta-diketone hydrolase"]]},{"id":"GO:0009522","l":"photosystem I","na":1,"nb":33,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"]],"b":[["GO%3A0030093","chloroplast photosystem I"],["GO%3A0009522","photosystem I"],["GO%3A0030094","plasma membrane-derived photosystem I"],["NCBIfam%3ANF014449","photosystem I assembly protein Ycf4"],["NCBIfam%3ATIGR01336","photosystem I core protein PsaB"],["NCBIfam%3ANF014578","photosystem I reaction center subunit II"]]},{"id":"CHEBI:29748","l":"","na":1,"nb":30,"a":[["morphology/green_pigmented.html","green pigmented"]],"b":[["EC%3A2.6.1.123","4-amino-4-deoxychorismate synthase (2-amino-4-deoxychorismate-forming)"],["EC%3A2.6.1.85","aminodeoxychorismate synthase"],["EC%3A2.6.1.86","2-amino-4-deoxychorismate synthase"],["EC%3A3.3.2.13","chorismatase"],["EC%3A4.1.3.27","anthranilate synthase"],["EC%3A4.1.3.40","chorismate lyase"]]},{"id":"CHEBI:24636","l":"","na":1,"nb":28,"a":[["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"]],"b":[["TCDB%3A3.A.4","The Arsenite-Antimonite (ArsAB) Efflux Family"],["TCDB%3A2.A.61","The C4-dicarboxylate Uptake C (DcuC) Family"],["TCDB%3A2.A.106","The Ca2+:H+ Antiporter-2 (CaCA2) Family"],["TCDB%3A1.A.110","The Channel-forming Otopetrin (OTOP) Family"],["TCDB%3A9.A.14","The G-protein-coupled receptor (GPCR) Family"],["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"]]},{"id":"GO:0004565","l":"beta-galactosidase activity","na":1,"nb":28,"a":[["physiology/beta_galactosidase_activity.html","beta-galactosidase activity"]],"b":[["EC%3A3.2.1.23","beta-galactosidase"],["GO%3A0004565","beta-galactosidase activity"],["GO%3A0033943","galactan 1,3-beta-galactosidase activity"],["NCBIfam%3ANF041004","beta-galactosidase BgaS"],["NCBIfam%3ANF041462","beta-galactosidase GalA"],["NCBIfam%3ANF041463","beta-galactosidase GalB"]]},{"id":"GO:0046148","l":"pigment biosynthetic process","na":1,"nb":27,"a":[["morphology/pigmentation.html","pigmentation"]],"b":[["GO%3A0120577","1,2-dehydro-N-acetyldopamine biosynthetic process"],["GO%3A0120576","1,2-dehydro-N-beta-alanyldopamine biosynthetic process"],["GO%3A0009718","anthocyanin-containing compound biosynthetic process"],["GO%3A0051551","aurone biosynthetic process"],["GO%3A0016117","carotenoid biosynthetic process"],["GO%3A0015995","chlorophyll biosynthetic process"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":1,"nb":26,"a":[["morphology/heterocyst.html","heterocyst"]],"b":[["Pfam%3APF27270","Alr1449"],["Pfam%3APF27301","Alr2735 N-terminal domain"],["Pfam%3APF27288","Alr2735"],["Pfam%3APF21571","Arginine dihydrolase ArgZ-like, C-terminal, first region"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF13205","Bacterial Ig-like domain"]]},{"id":"GO:0000910","l":"cytokinesis","na":1,"nb":24,"a":[["morphology/cell_length.html","cell length"]],"b":[["ComplexPortal%3ACPX-24856","GNAI1-RGS14, Gi-signalling regulatory complex"],["GO%3A0061639","Cdv-dependent cytokinesis"],["GO%3A0000911","cytokinesis by cell plate formation"],["GO%3A0000910","cytokinesis"],["GO%3A0061640","cytoskeleton-dependent cytokinesis"],["GO%3A0043093","FtsZ-dependent cytokinesis"]]},{"id":"GO:0006783","l":"heme biosynthetic process","na":1,"nb":24,"a":[["physiology/catalase_activity.html","catalase activity"]],"b":[["ComplexPortal%3ACPX-8302","ABCB10-ABCB7-FECH ABC transporter"],["GO%3A0006784","heme A biosynthetic process"],["GO%3A0006785","heme B biosynthetic process"],["GO%3A0006783","heme biosynthetic process"],["GO%3A0006786","heme C biosynthetic process"],["GO%3A0048034","heme O biosynthetic process"]]},{"id":"GO:0031412","l":"gas vesicle organization","na":1,"nb":24,"a":[["morphology/gas_vesicle.html","gas vesicle"]],"b":[["GO%3A0031412","gas vesicle organization"],["NCBIfam%3ANF041667","gas vesicle accessory protein GvpU"],["NCBIfam%3ANF046092","gas vesicle protein GvpA"],["NCBIfam%3ANF052351","gas vesicle protein GvpF"],["NCBIfam%3ANF045779","gas vesicle protein GvpG"],["NCBIfam%3ANF046090","gas vesicle protein GvpJ"]]},{"id":"CHEBI:24996","l":"lactate","na":1,"nb":23,"a":[["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]],"b":[["EC%3A1.1.1.436","lactate dehydrogenase (NAD(+),ferredoxin)"],["EC%3A3.5.1.124","protein deglycase"],["RHEA%3A57300","an N(2)-(1-hydroxy-2-oxopropyl)-2'-deoxyguanosine in DNA + H2O = a 2'-deoxyguanosine in DNA + lactate + H(+)"],["RHEA%3A57288","an N(2)-(1-hydroxy-2-oxopropyl)-guanosine in RNA + H2O = a guanosine in RNA + lactate + H(+)"],["RHEA%3A46964","lactate + 2 reduced [2Fe-2S]-[ferredoxin] + 2 NAD(+) = 2 oxidized [2Fe-2S]-[ferredoxin] + pyruvate + 2 NADH"],["RHEA%3A57244","N(2)-(1-hydroxy-2-oxopropyl)-dGTP + H2O = lactate + dGTP + H(+)"]]},{"id":"CHEBI:29242","l":"","na":1,"nb":23,"a":[["environment/arsenic_tolerant.html","arsenic tolerant"]],"b":[["EC%3A1.20.2.1","arsenate reductase (cytochrome c)"],["EC%3A1.20.4.1","arsenate reductase (glutathione/glutaredoxin)"],["EC%3A1.20.4.3","mycoredoxin"],["EC%3A1.20.4.4","arsenate reductase (thioredoxin)"],["EC%3A1.20.9.1","arsenate reductase (azurin)"],["EC%3A1.20.99.1","arsenate reductase (donor)"]]},{"id":"GO:0004563","l":"beta-N-acetylhexosaminidase activity","na":1,"nb":23,"a":[["physiology/beta_n_acetylhexosaminidase_activity.html","beta-N-acetylhexosaminidase activity"]],"b":[["EC%3A3.2.1.52","beta-N-acetylhexosaminidase"],["ComplexPortal%3ACPX-502","Beta-hexosaminidase A complex"],["ComplexPortal%3ACPX-689","Beta-hexosaminidase A complex"],["ComplexPortal%3ACPX-686","Beta-hexosaminidase B complex"],["ComplexPortal%3ACPX-690","Beta-hexosaminidase B complex"],["ComplexPortal%3ACPX-687","Beta-hexosaminidase S complex"]]},{"id":"GO:0008843","l":"endochitinase activity","na":1,"nb":23,"a":[["metabolism/biopolymer_degradation.html","biopolymer degradation"]],"b":[["EC%3A3.2.1.14","chitinase"],["GO%3A0008843","endochitinase activity"],["MCSA%3A819","chitinase C"],["MCSA%3A478","chitinase (GH18, Class II)"],["MCSA%3A817","chitinase (GH18, class II)"],["MCSA%3A475","chitinase (GH19, Class II)"]]},{"id":"GO:0009847","l":"spore germination","na":1,"nb":23,"a":[["physiology/spore_germination.html","spore germination"]],"b":[["GO%3A0120164","conidium germination"],["GO%3A0075226","encysted zoospore germination"],["GO%3A0009847","spore germination"],["proteintraitsmech%3ASEED_SUBSYSTEM_Spore_germination","Spore germination"],["NCBIfam%3ATIGR00912","endospore germination permease"],["NCBIfam%3ATIGR02887","Ger(x)C family spore germination protein"]]},{"id":"NCBITaxon:266834","l":"Rhizobium meliloti (strain 1021)","na":1,"nb":23,"a":[["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"]],"b":[["Pfam%3APF13279","Thioesterase-like superfamily"],["Pfam%3APF26956","ACR family N-terminal ACT domain"],["Pfam%3APF27143","Atu0565 family"],["Pfam%3APF27488","BioS helical-like domain"],["Pfam%3APF05853","beta-keto acid cleavage enzyme"],["Pfam%3APF13746","4Fe-4S dicluster domain"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":1,"nb":23,"a":[["ecology/biosafety_level_3.html","biosafety level 3"]],"b":[["Pfam%3APF09255","Caf1 Capsule antigen"],["Pfam%3APF02611","CDP-diacylglycerol pyrophosphatase"],["Pfam%3APF07411","Domain of unknown function (DUF1508)"],["Pfam%3APF05171","Haemin-degrading HemS.ChuX domain"],["Pfam%3APF21500","DNA polymerase III subunit delta', AAA+ ATPase lid domain"],["Pfam%3APF11004","3-deoxy-D-manno-oct-2-ulosonic acid (Kdo) hydroxylase"]]},{"id":"CHEBI:27547","l":"zeaxanthin","na":1,"nb":22,"a":[["morphology/orange_pigmented.html","orange pigmented"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_27547","requires zeaxanthin"],["EC%3A1.13.11.65","carotenoid isomerooxygenase"],["EC%3A1.13.11.84","crocetin dialdehyde synthase"],["EC%3A1.14.15.21","zeaxanthin epoxidase"],["EC%3A1.14.15.24","beta-carotene 3-hydroxylase"],["EC%3A1.14.99.64","zeaxanthin 4-ketolase"]]},{"id":"GO:0003341","l":"cilium movement","na":1,"nb":21,"a":[["ecology/soil_dwelling.html","soil-dwelling"]],"b":[["ComplexPortal%3ACPX-8086","Nexin-dynein regulatory complex"],["ComplexPortal%3ACPX-2626","Outer dynein arm-docking complex"],["ComplexPortal%3ACPX-8161","Radial spoke complex, ciliiar variant"],["ComplexPortal%3ACPX-8163","Radial spoke complex, ciliiar variant"],["ComplexPortal%3ACPX-8162","Radial spoke complex, flagellar variant"],["GO%3A0003341","cilium movement"]]},{"id":"NCBITaxon:243230","l":"Deinococcus radiodurans (strain ATCC 13939 / DSM 20539 / JCM 16871 / CCUG 27074 / LMG 4051 / NBRC 15346 / NCIMB 9279 / VKM B-1422 / R1)","na":1,"nb":21,"a":[["environment/radiotolerant.html","radiotolerant"]],"b":[["Pfam%3APF07282","Cas12f1-like, TNB domain"],["Pfam%3APF26517","DNA damage response protein D family"],["Pfam%3APF07733","Bacterial DNA polymerase III alpha NTPase domain"],["Pfam%3APF17657","Bacterial DNA polymerase III alpha subunit finger domain"],["Pfam%3APF11638","DnaA N-terminal domain"],["Pfam%3APF09348","Domain of unknown function (DUF1990)"]]},{"id":"CHEBI:18420","l":"","na":1,"nb":20,"a":[["morphology/cell_width_small.html","cell width small"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18420","requires magnesium(2+)"],["EC%3A4.99.1.10","magnesium dechelatase"],["EC%3A6.6.1.1","magnesium chelatase"],["EC%3A7.2.2.14","P-type Mg(2+) transporter"],["RHEA%3A52788","chlorophyll a + 2 H(+) = pheophytin a + Mg(2+)"],["RHEA%3A52792","chlorophyllide a + 2 H(+) = pheophorbide a + Mg(2+)"]]},{"id":"GO:0000725","l":"recombinational repair","na":1,"nb":20,"a":[["genomics/ploidy.html","ploidy"]],"b":[["ComplexPortal%3ACPX-2197","Exodeoxyribonuclease V complex"],["ComplexPortal%3ACPX-1732","Ku70:Ku80 complex"],["ComplexPortal%3ACPX-1993","Ku70:Ku80 complex"],["ComplexPortal%3ACPX-2047","Ku70:Ku80 complex"],["ComplexPortal%3ACPX-2048","Ku70:Ku80 complex"],["ComplexPortal%3ACPX-5124","RuvAB Holliday junction DNA helicase complex"]]},{"id":"GO:0003989","l":"acetyl-CoA carboxylase activity","na":1,"nb":20,"a":[["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"]],"b":[["EC%3A6.4.1.2","acetyl-CoA carboxylase"],["RHEA%3A11308","hydrogencarbonate + acetyl-CoA + ATP = malonyl-CoA + ADP + phosphate + H(+)"],["ComplexPortal%3ACPX-3206","Acetyl-CoA carboxylase complex"],["GO%3A0003989","acetyl-CoA carboxylase activity"],["NCBIfam%3ANF015228","Acetyl co-enzyme A carboxylase carboxyltransferase-like"],["NCBIfam%3ATIGR00531","acetyl-CoA carboxylase biotin carboxyl carrier protein"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":1,"nb":20,"a":[["morphology/s_layer.html","S-layer"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF27529","AMPT"],["Pfam%3APF24856","L-arabinose isomerase central domain"],["Pfam%3APF02610","L-arabinose isomerase N-terminal domain"],["Pfam%3APF11762","L-arabinose isomerase C-terminal domain"],["Pfam%3APF17727","CtsR C-terminal dimerization domain"]]},{"id":"CHEBI:17057","l":"cellobiose","na":1,"nb":19,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["EC%3A1.1.3.5","hexose oxidase"],["EC%3A1.1.99.18","cellobiose dehydrogenase (acceptor)"],["EC%3A2.4.1.20","cellobiose phosphorylase"],["EC%3A2.7.1.205","protein-N(pi)-phosphohistidine--D-cellobiose phosphotransferase"],["EC%3A2.7.1.85","beta-glucoside kinase"],["EC%3A5.1.3.11","cellobiose epimerase"]]},{"id":"GO:0003993","l":"acid phosphatase activity","na":1,"nb":19,"a":[["physiology/acid_phosphatase_activity.html","acid phosphatase activity"]],"b":[["EC%3A3.1.3.2","acid phosphatase"],["ComplexPortal%3ACPX-120","Prostatic acid phosphatase complex"],["ComplexPortal%3ACPX-121","Prostatic acid phosphatase complex"],["GO%3A0003993","acid phosphatase activity"],["NCBIfam%3ATIGR01672","acid phosphatase AphA"],["NCBIfam%3ANF045654","acid phosphatase PhoC"]]},{"id":"GO:0004559","l":"alpha-mannosidase activity","na":1,"nb":19,"a":[["physiology/alpha_mannosidase_activity.html","alpha-mannosidase activity"]],"b":[["EC%3A3.2.1.24","alpha-mannosidase"],["GO%3A0004559","alpha-mannosidase activity"],["GO%3A0004569","glycoprotein endo-alpha-1,2-mannosidase activity"],["GO%3A0033915","mannan 1,2-(1,3)-alpha-mannosidase activity"],["GO%3A0008496","mannan endo-1,6-alpha-mannosidase activity"],["GO%3A0033941","mannan exo-1,2-1,6-alpha-mannosidase activity"]]},{"id":"GO:0008150","l":"biological_process","na":1,"nb":19,"a":[["upper/biological_process.html","biological process"]],"b":[["GO%3A0044848","biological phase"],["GO%3A0008150","biological_process"],["GO%3A0044419","biological process involved in interspecies interaction between organisms"],["GO%3A0051703","biological process involved in intraspecies interaction between organisms"],["GO%3A0065007","biological regulation"],["GO%3A0009987","cellular process"]]},{"id":"GO:0019290","l":"siderophore biosynthetic process","na":1,"nb":19,"a":[["physiology/siderophore_production.html","siderophore production"]],"b":[["GO%3A0140614","1,8-dihydroxynaphthalene-melanin biosynthetic process"],["GO%3A0042861","achromobactin biosynthetic process"],["GO%3A0019540","catechol-containing siderophore biosynthetic process"],["GO%3A0042858","chrysobactin biosynthetic process"],["GO%3A0019539","hydroxymate-containing siderophore biosynthetic process"],["GO%3A0042864","pyochelin biosynthetic process"]]},{"id":"GO:0043885","l":"anaerobic carbon-monoxide dehydrogenase activity","na":1,"nb":19,"a":[["physiology/carboxydotrophic.html","carboxydotrophic"]],"b":[["EC%3A1.2.7.4","anaerobic carbon-monoxide dehydrogenase"],["RHEA%3A21040","CO + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O = 2 reduced [2Fe-2S]-[ferredoxin] + CO2 + 2 H(+)"],["GO%3A0043885","anaerobic carbon-monoxide dehydrogenase activity"],["NCBIfam%3ATIGR02416","aerobic carbon-monoxide dehydrogenase large subunit"],["NCBIfam%3ATIGR01702","anaerobic carbon-monoxide dehydrogenase catalytic subunit"],["NCBIfam%3ATIGR00314","CO dehydrogenase/acetyl-CoA synthase complex subunit alpha"]]},{"id":"GO:0045277","l":"respiratory chain complex IV","na":1,"nb":19,"a":[["physiology/oxidase_activity.html","oxidase activity"]],"b":[["ComplexPortal%3ACPX-1721","Mitochondrial respiratory chain complex IV, COX5A variant"],["ComplexPortal%3ACPX-1722","Mitochondrial respiratory chain complex IV, COX5B variant"],["ComplexPortal%3ACPX-6123","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-8620","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-9641","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-8621","Mitochondrial respiratory chain complex IV, testis-specific variant"]]},{"id":"GO:0045493","l":"xylan catabolic process","na":1,"nb":19,"a":[["metabolism/xylan_degradation.html","xylan degradation"]],"b":[["GO%3A2000888","arabinoxylan-containing compound catabolic process"],["GO%3A2000886","glucuronoxylan catabolic process"],["GO%3A0045493","xylan catabolic process"],["NCBIfam%3ANF042968","acetylxylan esterase AxeA1"],["NCBIfam%3ANF041579","beta-xylosidase"],["NCBIfam%3ANF042969","bifunctional acetylxylan esterase/glucomannan deacetylase AxeC2"]]},{"id":"CHEBI:16838","l":"polyphosphate","na":1,"nb":18,"a":[["environment/zinc_tolerant.html","zinc tolerant"]],"b":[["EC%3A2.7.1.63","polyphosphate--glucose phosphotransferase"],["EC%3A2.7.4.1","ATP-polyphosphate phosphotransferase"],["EC%3A2.7.4.17","3-phosphoglyceroyl-phosphate--polyphosphate phosphotransferase"],["EC%3A2.7.4.20","dolichyl-diphosphate--polyphosphate phosphotransferase"],["EC%3A2.7.4.33","AMP-polyphosphate phosphotransferase"],["EC%3A2.7.4.34","GDP-polyphosphate phosphotransferase"]]},{"id":"CHEBI:16169","l":"","na":1,"nb":17,"a":[["morphology/pigmentation.html","pigmentation"]],"b":[["EC%3A1.13.11.27","4-hydroxyphenylpyruvate dioxygenase"],["EC%3A1.13.11.5","homogentisate 1,2-dioxygenase"],["EC%3A1.14.13.18","4-hydroxyphenylacetate 1-monooxygenase"],["EC%3A1.14.13.63","3-hydroxyphenylacetate 6-hydroxylase"],["EC%3A2.5.1.115","homogentisate phytyltransferase"],["EC%3A2.5.1.116","homogentisate geranylgeranyltransferase"]]},{"id":"GO:0051701","l":"biological process involved in interaction with host","na":1,"nb":17,"a":[["ecology/plant_pathogen.html","plant pathogen"]],"b":[["GO%3A0044002","acquisition of nutrients from host"],["GO%3A0044406","adhesion of symbiont to host"],["GO%3A0051701","biological process involved in interaction with host"],["GO%3A0035891","exit from host cell"],["GO%3A0044001","migration in host"],["GO%3A0075136","response to host"]]},{"id":"GO:0106435","l":"carboxylesterase activity","na":1,"nb":17,"a":[["physiology/carboxylesterase_activity.html","carboxylesterase activity"]],"b":[["EC%3A3.1.1.1","carboxylesterase"],["RHEA%3A63052","1-O-methyl-(5Z,8Z,11Z,14Z)-eicosatetraenoate + H2O = methanol + (5Z,8Z,11Z,14Z)-eicosatetraenoate + H(+)"],["RHEA%3A21164","a carboxylic ester + H2O = an alcohol + a carboxylate + H(+)"],["RHEA%3A59388","a fatty acid ester + H2O = an aliphatic alcohol + a fatty acid + H(+)"],["RHEA%3A50148","a fatty acid ethyl ester + H2O = ethanol + a fatty acid + H(+)"],["RHEA%3A31779","an all-trans-retinyl ester + H2O = 13-cis-retinol + a fatty acid + H(+)"]]},{"id":"GO:0110143","l":"magnetosome","na":1,"nb":17,"a":[["morphology/magnetosome.html","magnetosome"]],"b":[["GO%3A0110143","magnetosome"],["NCBIfam%3ANF040997","liposome tubulation protein MamY"],["NCBIfam%3ANF040917","magnetic particle specific iron-binding protein Mms6"],["NCBIfam%3ANF040986","magnetosome biogenesis transporter MamH"],["NCBIfam%3ANF040989","magnetosome biogenesis transporter MamN"],["NCBIfam%3ANF040998","magnetosome biogenesis transporter MamZ"]]},{"id":"UniProt:P35149","l":"","na":1,"nb":17,"a":[["morphology/spore_shaped.html","spore shaped"]],"b":[["EC%3A3.6.1.-","In phosphorus-containing anhydrides"],["GO%3A0043595","endospore cortex"],["GO%3A0042601","endospore-forming forespore"],["GO%3A0031160","spore wall"],["GO%3A0000270","peptidoglycan metabolic process"],["GO%3A0009847","spore germination"]]},{"id":"CHEBI:48828","l":"cobalt(2+)","na":1,"nb":16,"a":[["environment/cobalt_tolerant.html","cobalt tolerant"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_48828","requires cobalt(2+)"],["EC%3A1.16.99.1","[Co(II) methylated amine-specific corrinoid protein] reductase"],["EC%3A4.99.1.3","sirohydrochlorin cobaltochelatase"],["EC%3A6.6.1.2","cobaltochelatase"],["RHEA%3A65832","2 Co(II)-[dimethylamine-specific corrinoid protein] + AH2 + ATP + H2O = 2 Co(I)-[dimethylamine-specific corrinoid protein] + A + ADP + phosphate + 3 H(+)"],["RHEA%3A65816","2 Co(II)-[methylamine-specific corrinoid protein] + AH2 + ATP + H2O = 2 Co(I)-[methylamine-specific corrinoid protein] + A + ADP + phosphate + 3 H(+)"]]},{"id":"GO:0004556","l":"alpha-amylase activity","na":1,"nb":16,"a":[["metabolism/starch_degradation.html","starch degradation"]],"b":[["EC%3A3.2.1.1","alpha-amylase"],["GO%3A0004556","alpha-amylase activity"],["NCBIfam%3ANF041321","alpha-amylase MalA"],["NCBIfam%3ANF006971","alpha-amylase"],["NCBIfam%3ANF007051","alpha-amylase"],["NCBIfam%3ANF007052","alpha-amylase"]]},{"id":"GO:0004566","l":"beta-glucuronidase activity","na":1,"nb":16,"a":[["physiology/beta_glucuronidase_activity.html","beta-glucuronidase activity"]],"b":[["EC%3A3.2.1.31","beta-glucuronidase"],["RHEA%3A76111","4-methylumbelliferone beta-D-glucuronate + H2O = 4-methylumbelliferone + D-glucuronate"],["RHEA%3A17633","a beta-D-glucuronoside + H2O = D-glucuronate + an alcohol"],["RHEA%3A30475","oroxylin A 7-O-beta-D-glucuronate + H2O = oroxylin A + D-glucuronate + H(+)"],["RHEA%3A28326","wogonin 7-O-beta-D-glucuronate + H2O = wogonin + D-glucuronate + H(+)"],["GO%3A0004566","beta-glucuronidase activity"]]},{"id":"InterPro:IPR002105","l":"Dockerin type I repeat","na":1,"nb":16,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["Pfam%3APF17996","Carbohydrate esterase 2 N-terminal"],["Pfam%3APF02927","Cellulase N-terminal ig-like domain"],["Pfam%3APF00963","Cohesin domain"],["Pfam%3APF00404","Dockerin type I domain"],["Pfam%3APF07554","FIVAR domain"]]},{"id":"GO:0045273","l":"respiratory chain complex II (succinate dehydrogenase)","na":1,"nb":15,"a":[["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"]],"b":[["ComplexPortal%3ACPX-561","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-562","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-564","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-565","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-566","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-8622","Mitochondrial respiratory chain complex II"]]},{"id":"GO:0045490","l":"pectin catabolic process","na":1,"nb":15,"a":[["metabolism/pectin_degradation.html","pectin degradation"]],"b":[["GO%3A0045490","pectin catabolic process"],["NCBIfam%3ANF002091","5-dehydro-4-deoxy-D-glucuronate isomerase"],["NCBIfam%3ANF025934","oligogalacturonate lyase family protein"],["NCBIfam%3ANF041904","pectate disaccharide-lyase PelW"],["NCBIfam%3ANF041903","pectate disaccharide-lyase PelX"],["NCBIfam%3ANF041898","pectate lyase PelI"]]},{"id":"InterPro:IPR028629","l":"","na":1,"nb":15,"a":[["genomics/crispr_cas_system.html","CRISPR-Cas system"]],"b":[["Pfam%3APF18470","Cas9 alpha-helical lobe domain"],["Pfam%3APF17893","CRISPR-associated endonuclease Cas9 beta-hairpin domain"],["Pfam%3APF18525","Cas9 C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"],["Pfam%3APF16595","PAM-interacting domain of CRISPR-associated endonuclease Cas9"],["Pfam%3APF18070","CRISPR-Cas9 PI domain"]]},{"id":"METPO:1000802","l":"Anaerobic respiration","na":15,"nb":1,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/arsenate_respiration.html","arsenate respiration"],["metabolism/chlorate_respiration.html","chlorate respiration"],["metabolism/dimethyl_sulfoxide_respiration.html","dimethyl sulfoxide respiration"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"]],"b":[["METPO%3A1000802","Anaerobic respiration"]]},{"id":"METPO:1002005","l":"Fermentation","na":15,"nb":1,"a":[["metabolism/acetone_butanol_ethanol_fermentation.html","acetone-butanol-ethanol fermentation"],["metabolism/butanediol_fermentation.html","2,3-butanediol fermentation"],["metabolism/butyric_acid_fermentation.html","butyric acid fermentation"],["metabolism/citrate_fermentation.html","citrate fermentation"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"]],"b":[["METPO%3A1002005","Fermentation"]]},{"id":"UniProt:P09373","l":"","na":1,"nb":15,"a":[["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"]],"b":[["EC%3A2.3.1.54","formate C-acetyltransferase"],["RHEA%3A11844","formate + acetyl-CoA = pyruvate + CoA"],["GO%3A0008861","formate C-acetyltransferase activity"],["NCBIfam%3ATIGR01255","formate C-acetyltransferase"],["InterPro%3AIPR019777","Formate C-acetyltransferase glycine radical, conserved site"],["CDD%3Acd01678","PFL1"]]},{"id":"GO:0004629","l":"C-type glycerophospholipase activity","na":1,"nb":14,"a":[["physiology/lecithinase_activity.html","lecithinase activity"]],"b":[["GO%3A0004629","C-type glycerophospholipase activity"],["GO%3A0140335","GPI anchor phospholipase C activity"],["GO%3A0140324","lysophospholipase C activity"],["GO%3A0034480","phosphatidylcholine phospholipase C activity"],["GO%3A0034479","phosphatidylglycerol phospholipase C activity"],["GO%3A0004435","phosphatidylinositol-4,5-bisphosphate phospholipase C activity"]]},{"id":"GO:0009408","l":"response to heat","na":1,"nb":14,"a":[["physiology/heat_shock_response.html","heat shock response"]],"b":[["ComplexPortal%3ACPX-4887","DNA-directed RNA polymerase holoenzyme complex, SigmaH variant"],["ComplexPortal%3ACPX-636","ISW1b chromatin remodeling complex"],["GO%3A0034605","cellular response to heat"],["GO%3A0036168","filamentous growth of a population of unicellular organisms in response to heat"],["GO%3A0010286","heat acclimation"],["GO%3A0009408","response to heat"]]},{"id":"GO:0015891","l":"siderophore transport","na":1,"nb":14,"a":[["physiology/siderophore_production.html","siderophore production"]],"b":[["GO%3A0042935","achromobactin transport"],["GO%3A0042932","chrysobactin transport"],["GO%3A0042930","enterobactin transport"],["GO%3A0044718","siderophore transmembrane transport"],["GO%3A0015891","siderophore transport"],["NCBIfam%3ANF007349","catecholate siderophore receptor Fiu"]]},{"id":"GO:0090599","l":"alpha-glucosidase activity","na":1,"nb":14,"a":[["physiology/alpha_glucosidase_activity.html","alpha-glucosidase activity"]],"b":[["GO%3A0004558","alpha-1,4-glucosidase activity"],["GO%3A0090599","alpha-glucosidase activity"],["GO%3A0004135","amylo-alpha-1,6-glucosidase activity"],["GO%3A0033933","branched-dextran exo-1,2-alpha-glucosidase activity"],["GO%3A0106407","Glc2Man9GlcNAc2 oligosaccharide glucosidase activity"],["GO%3A0004573","Glc3Man9GlcNAc2 oligosaccharide glucosidase activity"]]},{"id":"UniProt:Q58256","l":"","na":1,"nb":14,"a":[["metabolism/methanogenesis.html","Methanogenesis"]],"b":[["GO%3A0050524","coenzyme-B sulfoethylthiotransferase activity"],["GO%3A0015948","methanogenesis"],["NCBIfam%3ATIGR03256","coenzyme-B sulfoethylthiotransferase subunit alpha"],["InterPro%3AIPR009047","Methyl-coenzyme M reductase, alpha subunit, C-terminal"],["InterPro%3AIPR003183","Methyl-coenzyme M reductase, alpha subunit, N-terminal"],["Pfam%3APF02745","Methyl-coenzyme M reductase alpha subunit, N-terminal domain"]]},{"id":"GO:0004781","l":"sulfate adenylyltransferase (ATP) activity","na":1,"nb":13,"a":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["EC%3A2.7.7.4","sulfate adenylyltransferase"],["RHEA%3A18133","sulfate + ATP + H(+) = adenosine 5'-phosphosulfate + diphosphate"],["ComplexPortal%3ACPX-4471","Sulfate adenylyltransferase complex"],["GO%3A0004781","sulfate adenylyltransferase (ATP) activity"],["NCBIfam%3ATIGR02034","sulfate adenylyltransferase, large subunit"],["NCBIfam%3ATIGR02039","sulfate adenylyltransferase, small subunit"]]},{"id":"GO:0016859","l":"cis-trans isomerase activity","na":1,"nb":13,"a":[["environment/temperature_delta_high.html","temperature delta high"]],"b":[["GO%3A0047466","2-chloro-4-carboxymethylenebut-2-en-1,4-olide isomerase activity"],["GO%3A0090471","9,15,9'-tri-cis-zeta-carotene isomerase activity"],["GO%3A0106365","beta-carotene isomerase activity"],["GO%3A0046608","carotenoid isomerase activity"],["GO%3A0016859","cis-trans isomerase activity"],["GO%3A0047885","farnesol 2-isomerase activity"]]},{"id":"GO:0120253","l":"hydrocarbon catabolic process","na":1,"nb":13,"a":[["metabolism/hydrocarbon_degradation.html","hydrocarbon degradation"]],"b":[["GO%3A0043448","alkane catabolic process"],["GO%3A0043451","alkene catabolic process"],["GO%3A0043454","alkyne catabolic process"],["GO%3A1900996","benzene catabolic process"],["GO%3A0018915","ethylbenzene catabolic process"],["GO%3A0019429","fluorene catabolic process"]]},{"id":"InterPro:IPR000673","l":"Signal transduction response regulator, chemotaxis, protein-glutamate methylesterase","na":1,"nb":13,"a":[["physiology/chemotaxis.html","chemotaxis"]],"b":[["GO%3A1990827","deaminase binding"],["GO%3A0008984","protein-glutamate methylesterase activity"],["GO%3A0050568","protein-glutamine glutaminase activity"],["GO%3A0006482","protein demethylation"],["NCBIfam%3ANF001965","chemotaxis-specific protein-glutamate methyltransferase CheB"],["NCBIfam%3ANF009206","chemotaxis-specific protein-glutamate methyltransferase CheB"]]},{"id":"UniProt:P0A7G6","l":"","na":1,"nb":13,"a":[["physiology/sos_response.html","SOS response"]],"b":[["ComplexPortal%3ACPX-5544","DNA polymerase V mutasome complex"],["GO%3A0140664","ATP-dependent DNA damage sensor activity"],["NCBIfam%3ATIGR02012","recombinase RecA"],["InterPro%3AIPR020584","DNA recombination/repair protein RecA, conserved site"],["CDD%3Acd00983","RecA"],["InterPro%3AIPR020587","DNA recombination and repair protein RecA, monomer-monomer interface"]]},{"id":"GO:0004536","l":"DNA nuclease activity","na":1,"nb":12,"a":[["physiology/dnase_activity.html","DNase activity"]],"b":[["GO%3A0004520","DNA endonuclease activity"],["GO%3A0004529","DNA exonuclease activity"],["GO%3A0004536","DNA nuclease activity"],["NCBIfam%3ANF053575","GINS-associated RecJ family nuclease"],["NCBIfam%3ANF053577","Hef-associated nuclease"],["NCBIfam%3ANF053576","RecJ family nuclease"]]},{"id":"GO:0008964","l":"phosphoenolpyruvate carboxylase activity","na":1,"nb":12,"a":[["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"]],"b":[["EC%3A4.1.1.31","phosphoenolpyruvate carboxylase"],["RHEA%3A28370","oxaloacetate + phosphate = phosphoenolpyruvate + hydrogencarbonate"],["GO%3A0008964","phosphoenolpyruvate carboxylase activity"],["NCBIfam%3ANF000584","phosphoenolpyruvate carboxylase"],["NCBIfam%3ANF012532","phosphoenolpyruvate carboxylase"],["NCBIfam%3ANF025376","phosphoenolpyruvate carboxylase"]]},{"id":"GO:0009512","l":"cytochrome b6f complex","na":1,"nb":12,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"]],"b":[["GO%3A0009512","cytochrome b6f complex"],["NCBIfam%3ANF014576","cytochrome b6-f complex subunit PetG"],["NCBIfam%3ANF016971","cytochrome b6-f complex subunit PetL"],["NCBIfam%3ANF015687","cytochrome b6-f complex subunit PetN"],["NCBIfam%3ANF050003","cytochrome b6f subunit PetP"],["NCBIfam%3ANF019653","PetM family cytochrome b6-f complex subunit 7"]]},{"id":"GO:0045275","l":"respiratory chain complex III","na":1,"nb":12,"a":[["physiology/organoheterotrophic.html","organoheterotrophic"]],"b":[["ComplexPortal%3ACPX-560","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-563","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-567","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-8730","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-9308","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-8737","Mitochondrial respiratory chain complex III, testis-specific variant"]]},{"id":"InterPro:IPR000780","l":"MCP methyltransferase, CheR-type","na":1,"nb":12,"a":[["physiology/chemotaxis.html","chemotaxis"]],"b":[["GO%3A0098561","methyl accepting chemotaxis protein complex"],["GO%3A0008983","protein-glutamate O-methyltransferase activity"],["NCBIfam%3ANF007902","protein-glutamate O-methyltransferase CheR"],["InterPro%3AIPR022641","Chemotaxis receptor methyltransferase CheR, N-terminal"],["InterPro%3AIPR000780","MCP methyltransferase, CheR-type"],["InterPro%3AIPR022642","MCP methyltransferase, CheR-type, SAM-binding domain, C-terminal"]]},{"id":"UniProt:P04949","l":"","na":1,"nb":12,"a":[["morphology/flagellated.html","flagellated"]],"b":[["InterPro%3AIPR049365","Flagellin, barrel domain"],["InterPro%3AIPR046358","Flagellin, C-terminal domain"],["InterPro%3AIPR014981","Flagellin D3"],["InterPro%3AIPR001029","Flagellin, N-terminal domain"],["Pfam%3APF08884","Flagellin D3 domain"],["Pfam%3APF21504","Flagellin, barrel domain"]]},{"id":"UniProt:P23874","l":"","na":1,"nb":12,"a":[["physiology/persister_cell_formation.html","persister cell formation"]],"b":[["ComplexPortal%3ACPX-180","HipBA toxin-antitoxin complex"],["GO%3A0001217","DNA-binding transcription repressor activity"],["GO%3A0022611","dormancy process"],["GO%3A0036289","peptidyl-serine autophosphorylation"],["GO%3A0040008","regulation of growth"],["GO%3A0044010","single-species biofilm formation"]]},{"id":"CHEBI:16510","l":"","na":1,"nb":11,"a":[["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"]],"b":[["EC%3A1.1.1.298","3-hydroxypropionate dehydrogenase (NADP(+))"],["EC%3A1.1.1.59","3-hydroxypropionate dehydrogenase"],["EC%3A6.2.1.36","3-hydroxypropionyl-CoA synthase"],["RHEA%3A59432","3-hydroxypropanal + NAD(+) + H2O = 3-hydroxypropanoate + NADH + 2 H(+)"],["RHEA%3A59428","3-hydroxypropanal + NADP(+) + H2O = 3-hydroxypropanoate + NADPH + 2 H(+)"],["RHEA%3A67136","3-hydroxypropanoate + ATP + CoA = 3-hydroxypropanoyl-CoA + ADP + phosphate"]]},{"id":"CHEBI:16724","l":"4-hydroxybutyrate","na":1,"nb":11,"a":[["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]],"b":[["EC%3A1.1.1.61","4-hydroxybutyrate dehydrogenase"],["EC%3A1.1.1.n11","succinic semialdehyde reductase"],["EC%3A1.1.99.24","hydroxyacid-oxoacid transhydrogenase"],["EC%3A6.2.1.40","4-hydroxybutyrate--CoA ligase (AMP-forming)"],["EC%3A6.2.1.56","4-hydroxybutyrate--CoA ligase (ADP-forming)"],["RHEA%3A24734","4-hydroxybutanoate + 2-oxoglutarate = (R)-2-hydroxyglutarate + succinate semialdehyde"]]},{"id":"GO:0004737","l":"pyruvate decarboxylase activity","na":1,"nb":11,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"]],"b":[["EC%3A4.1.1.1","pyruvate decarboxylase"],["RHEA%3A55072","2-oxobutanoate + H(+) = propanal + CO2"],["RHEA%3A50312","2-oxopentanoate + H(+) = butanal + CO2"],["RHEA%3A54356","3-methyl-2-oxobutanoate + H(+) = 2-methylpropanal + CO2"],["RHEA%3A54360","4-methyl-2-oxopentanoate + H(+) = 3-methylbutanal + CO2"],["RHEA%3A11628","a 2-oxocarboxylate + H(+) = an aldehyde + CO2"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":1,"nb":11,"a":[["ecology/opportunistic_pathogen.html","opportunistic pathogen"]],"b":[["Pfam%3APF22829","HphA C-terminal domain"],["Pfam%3APF22828","HphA N-terminal heme-binding domain"],["Pfam%3APF28205","Ciprofloxacin tolerance protein"],["Pfam%3APF19582","Solute-binding protein AdeT 1/2"],["PROSITE%3APS00337","Beta-lactamase class-D active site"],["Pfam%3APF24575","Surface lipoprotein assembly modifier, N-terminal TPR repeats"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":1,"nb":11,"a":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF02085","Class III cytochrome C family"],["Pfam%3APF06397","Desulfoferrodoxin, N-terminal domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["Pfam%3APF12797","4Fe-4S binding domain"],["Pfam%3APF06180","Cobalt chelatase (CbiK)"]]},{"id":"UniProt:P0A7C2","l":"","na":1,"nb":11,"a":[["physiology/sos_response.html","SOS response"]],"b":[["NCBIfam%3ATIGR00498","transcriptional repressor LexA"],["proteintraitsmech%3AMEROPS_CLEAVAGE_S24_001","repressor LexA cleavage specificity"],["CDD%3Acd06529","S24_LexA-like"],["InterPro%3AIPR039418","LexA-like"],["InterPro%3AIPR006199","LexA repressor, DNA-binding domain"],["InterPro%3AIPR015927","Peptidase S24/S26A/S26B/S26C"]]},{"id":"UniProt:P0AEK4","l":"","na":1,"nb":11,"a":[["physiology/homeoviscous_adaptation.html","homeoviscous adaptation"]],"b":[["GO%3A1902494","catalytic complex"],["GO%3A0004318","enoyl-[acyl-carrier-protein] reductase (NADH) activity"],["GO%3A0070404","NADH binding"],["GO%3A0009102","biotin biosynthetic process"],["GO%3A0030497","fatty acid elongation"],["GO%3A0008610","lipid biosynthetic process"]]},{"id":"GO:0004557","l":"alpha-galactosidase activity","na":1,"nb":10,"a":[["physiology/alpha_galactosidase_activity.html","alpha-galactosidase activity"]],"b":[["EC%3A3.2.1.22","alpha-galactosidase"],["RHEA%3A21112","a globoside Gb3Cer (d18:1(4E)) + H2O = a beta-D-Gal-(1->4)-beta-D-Glc-(1<->1)-Cer(d18:1(4E)) + D-galactose"],["RHEA%3A28663","melibiose + H2O = D-galactose + D-glucose"],["GO%3A0004557","alpha-galactosidase activity"],["GO%3A0052692","raffinose alpha-galactosidase activity"],["NCBIfam%3ANF053652","beta-L-arabinopyranosidase"]]},{"id":"GO:0008218","l":"bioluminescence","na":1,"nb":10,"a":[["physiology/bioluminescence.html","bioluminescence"]],"b":[["GO%3A0008218","bioluminescence"],["NCBIfam%3ANF052253","fatty acid reductase transferase subunit LuxD"],["NCBIfam%3ANF052244","long-chain-fatty-acid--protein ligase LuxE"],["NCBIfam%3ANF052254","luciferase subunit alpha"],["NCBIfam%3ANF052255","luciferase subunit beta"],["InterPro%3AIPR007534","Acyl-protein synthetase, LuxE"]]},{"id":"GO:0030313","l":"cell envelope","na":1,"nb":10,"a":[["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"]],"b":[["GO%3A0030313","cell envelope"],["PANTHER%3APTHR39576","ATTACHING AND EFFACING PROTEIN HOMOLOG-RELATED-RELATED"],["PANTHER%3APTHR38762","CRYPTIC OUTER MEMBRANE PORIN BGLH-RELATED"],["PANTHER%3APTHR41164","CURLI PRODUCTION ASSEMBLY/TRANSPORT COMPONENT CSGG"],["PANTHER%3APTHR30036","D-XYLOSE-BINDING PERIPLASMIC PROTEIN"],["PANTHER%3APTHR30532","IRON III DICITRATE-BINDING PERIPLASMIC PROTEIN"]]},{"id":"GO:0035434","l":"copper ion transmembrane transport","na":1,"nb":10,"a":[["environment/copper_tolerant.html","copper tolerant"]],"b":[["ComplexPortal%3ACPX-2254","Cus cation efflux complex"],["GO%3A0140636","copper import into the mitochondrion"],["GO%3A0140145","copper ion export from vacuole"],["GO%3A0060003","copper ion export"],["GO%3A0097430","copper ion import across prospore membrane"],["GO%3A7770057","copper ion import into Golgi lumen"]]},{"id":"GO:0046274","l":"lignin catabolic process","na":1,"nb":10,"a":[["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["GO%3A1990487","anaerobic lignin catabolic process"],["GO%3A1901062","guaiacyl lignin catabolic process"],["GO%3A0046274","lignin catabolic process"],["GO%3A1901059","p-hydroxyphenyl lignin catabolic process"],["GO%3A1901065","syringal lignin catabolic process"],["NCBIfam%3ANF042997","beta-etherase"]]},{"id":"NCBITaxon:192222","l":"Campylobacter jejuni subsp. jejuni NCTC 11168 = ATCC 700819","na":1,"nb":10,"a":[["environment/capnophilic.html","capnophilic"]],"b":[["Pfam%3APF26365","Apolipoprotein N-acyltransferase integral membrane domain"],["Pfam%3APF22131","CRISPR-associated endonuclease CjCas9 PI-CTD domain"],["Pfam%3APF22129","CRISPR-associated endonuclease CjCas9 wedge domain"],["Pfam%3APF02554","Carbon starvation protein CstA"],["Pfam%3APF27310","HrcA C-terminal domain"],["Pfam%3APF05538","Campylobacter major outer membrane protein"]]},{"id":"NCBITaxon:224911","l":"Bradyrhizobium diazoefficiens USDA 110","na":1,"nb":10,"a":[["morphology/subpolar_flagellation.html","subpolar flagellation"]],"b":[["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["Pfam%3APF14715","N-terminal domain of cytochrome oxidase-cbb3, FixP"],["Pfam%3APF03886","ABC-type transport auxiliary lipoprotein component"],["Pfam%3APF10649","Protein of unknown function (DUF2478)"],["Pfam%3APF01924","Hydrogenase formation hypA family"],["PROSITE%3APS00882","Nickel-dependent hydrogenases b-type cytochrome subunit signature 1"]]},{"id":"UniProt:P06534","l":"","na":1,"nb":10,"a":[["morphology/spore_forming.html","spore forming"]],"b":[["GO%3A0090529","cell septum assembly"],["GO%3A0051606","detection of stimulus"],["GO%3A0000160","phosphorelay signal transduction system"],["GO%3A0045881","positive regulation of sporulation resulting in formation of a cellular spore"],["GO%3A0090606","single-species surface biofilm formation"],["NCBIfam%3ATIGR02875","sporulation transcription factor Spo0A"]]},{"id":"UniProt:P0A9X9","l":"","na":1,"nb":10,"a":[["physiology/cold_shock_response.html","cold shock response"]],"b":[["GO%3A0001072","transcription antitermination factor activity, RNA binding"],["GO%3A0060567","negative regulation of termination of DNA-templated transcription"],["NCBIfam%3ANF007679","RNA chaperone/antiterminator CspA"],["NCBIfam%3ANF049933","transcription antiterminator/RNA stability regulator CspE"],["InterPro%3AIPR019844","Cold-shock domain, conserved site"],["CDD%3Acd04458","CSP_CDS"]]},{"id":"CHEBI:17234","l":"glucose","na":9,"nb":1,"a":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/biopolymer_degradation.html","biopolymer degradation"],["metabolism/cellulolysis.html","cellulolysis"],["metabolism/does_not_use_as_carbon_source.html","does not use as carbon source"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/starch_degradation.html","starch degradation"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:48775","l":"cadmium(2+)","na":1,"nb":9,"a":[["environment/cadmium_tolerant.html","cadmium tolerant"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_48775","requires cadmium(2+)"],["EC%3A7.2.2.2","ABC-type Cd(2+) transporter"],["EC%3A7.2.2.21","Cd(2+)-exporting ATPase"],["RHEA%3A12132","Cd(2+)(in) + ATP + H2O = Cd(2+)(out) + ADP + phosphate + H(+)"],["RHEA%3A28707","Cd(2+)(in) = Cd(2+)(out)"],["RHEA%3A28739","Cd(2+)(in) + H(+)(out) = Cd(2+)(out) + H(+)(in)"]]},{"id":"GO:0004324","l":"ferredoxin-NADP+ reductase activity","na":1,"nb":9,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"]],"b":[["EC%3A1.18.1.2","ferredoxin--NADP(+) reductase"],["RHEA%3A20125","2 reduced [2Fe-2S]-[ferredoxin] + NADP(+) + H(+) = 2 oxidized [2Fe-2S]-[ferredoxin] + NADPH"],["GO%3A0004324","ferredoxin-NADP+ reductase activity"],["NCBIfam%3ANF008178","ferredoxin--NADP(+) reductase"],["NCBIfam%3ANF045929","ferredoxin--NADP reductase"],["MCSA%3A142","ferredoxin-NADP+ reductase (adrenodoxin-type)"]]},{"id":"GO:0004560","l":"alpha-L-fucosidase activity","na":1,"nb":9,"a":[["physiology/alpha_fucosidase_activity.html","alpha-fucosidase activity"]],"b":[["EC%3A3.2.1.51","alpha-L-fucosidase"],["RHEA%3A12288","an alpha-L-fucoside + H2O = L-fucose + an alcohol"],["GO%3A0047513","1,2-alpha-L-fucosidase activity"],["GO%3A0033932","1,3-alpha-L-fucosidase activity"],["GO%3A0033938","1,6-alpha-L-fucosidase activity"],["GO%3A0004560","alpha-L-fucosidase activity"]]},{"id":"GO:0004568","l":"chitinase activity","na":1,"nb":9,"a":[["metabolism/chitinolysis.html","chitinolysis"]],"b":[["GO%3A0004568","chitinase activity"],["GO%3A0008843","endochitinase activity"],["GO%3A0035885","exochitinase activity"],["InterPro%3AIPR013540","Chitinase A N-terminal"],["InterPro%3AIPR000726","Glycoside hydrolase, family 19, catalytic"],["NCBIfam%3ANF019930","chitinase N-terminal domain-containing protein"]]},{"id":"GO:0004586","l":"ornithine decarboxylase activity","na":1,"nb":9,"a":[["physiology/ornithine_decarboxylase_activity.html","ornithine decarboxylase activity"]],"b":[["EC%3A4.1.1.17","ornithine decarboxylase"],["RHEA%3A22964","L-ornithine + H(+) = putrescine + CO2"],["GO%3A0004586","ornithine decarboxylase activity"],["NCBIfam%3ATIGR04301","ornithine decarboxylase SpeF"],["MCSA%3A860","ornithine decarboxylase"],["MCSA%3A937","ornithine decarboxylase"]]},{"id":"GO:0006097","l":"glyoxylate cycle","na":1,"nb":9,"a":[["physiology/heterotrophic.html","heterotrophic"]],"b":[["GO%3A0006097","glyoxylate cycle"],["proteintraitsmech%3ASEED_SUBSYSTEM_Glyoxylate_bypass","Glyoxylate bypass"],["NCBIfam%3ATIGR02924","isocitrate dehydrogenase"],["NCBIfam%3ATIGR01344","malate synthase A"],["NCBIfam%3ANF041315","malate synthase AceB"],["NCBIfam%3ANF002825","malate synthase G"]]},{"id":"GO:0009423","l":"chorismate biosynthetic process","na":1,"nb":9,"a":[["morphology/pigmentation.html","pigmentation"]],"b":[["GO%3A0009423","chorismate biosynthetic process"],["proteintraitsmech%3ASEED_SUBSYSTEM_Chorismate_Synthesis","Chorismate Synthesis"],["NCBIfam%3ATIGR01357","3-dehydroquinate synthase"],["NCBIfam%3ATIGR01358","class II 3-deoxy-7-phosphoheptulonate synthase"],["NCBIfam%3ATIGR01920","shikimate kinase"],["NCBIfam%3ATIGR01088","type II 3-dehydroquinate dehydratase"]]},{"id":"GO:0030152","l":"bacteriocin biosynthetic process","na":1,"nb":9,"a":[["physiology/bacteriocin_production.html","bacteriocin production"]],"b":[["GO%3A0030152","bacteriocin biosynthetic process"],["NCBIfam%3ATIGR04067","Apre_1838 family putative sactipeptide bacteriocin"],["NCBIfam%3ATIGR04065","CLI_3235 family bacteriocin precursor"],["NCBIfam%3ATIGR04068","Cys-rich peptide radical SAM maturase CcpM"],["NCBIfam%3ATIGR04064","nif11-like peptide radical SAM maturase"],["NCBIfam%3ATIGR01295","PedC/BrcD family bacteriocin maturation disulfide isomerase"]]},{"id":"GO:0050421","l":"nitrite reductase (NO-forming) activity","na":1,"nb":9,"a":[["metabolism/denitrification.html","denitrification"]],"b":[["EC%3A1.7.2.1","nitrite reductase (NO-forming)"],["RHEA%3A15233","nitric oxide + Fe(III)-[cytochrome c] + H2O = Fe(II)-[cytochrome c] + nitrite + 2 H(+)"],["GO%3A0050421","nitrite reductase (NO-forming) activity"],["NCBIfam%3ATIGR02376","copper-containing nitrite reductase"],["MCSA%3A4","nitrite reductase (copper type)"],["MCSA%3A903","nitrite reductase (cytochrome cd1 type)"]]},{"id":"GO:0052716","l":"hydroquinone:oxygen oxidoreductase activity","na":1,"nb":9,"a":[["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["EC%3A1.10.3.2","laccase"],["RHEA%3A11276","4 hydroquinone + O2 = 4 benzosemiquinone + 2 H2O"],["GO%3A0052716","hydroquinone:oxygen oxidoreductase activity"],["MCSA%3A390","laccase"],["proteintraitsmech%3ABIOLIP_3DM","3DM-binding site"],["proteintraitsmech%3ABIOLIP_D2M","D2M-binding site"]]},{"id":"InterPro:IPR004090","l":"","na":1,"nb":9,"a":[["physiology/chemotaxis.html","chemotaxis"]],"b":[["Pfam%3APF05227","CHASE3 domain"],["Pfam%3APF02743","Cache domain"],["Pfam%3APF08269","Cache domain"],["Pfam%3APF18947","HAMP domain"],["Pfam%3APF18575","HAMP N-terminal domain 3"],["Pfam%3APF17909","Htr2 transmembrane domain"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":9,"a":[["morphology/motility.html","motility"]],"b":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF25954","CusB-like, beta-barrel domain"],["Pfam%3APF13438","Domain of unknown function (DUF4113)"],["Pfam%3APF03767","HAD superfamily, subfamily IIIB (Acid phosphatase)"],["Pfam%3APF03496","ADP-ribosyltransferase exoenzyme"]]},{"id":"UniProt:P09424","l":"","na":1,"nb":9,"a":[["physiology/chemoheterotrophic.html","chemoheterotrophic"]],"b":[["GO%3A0008926","mannitol-1-phosphate 5-dehydrogenase activity"],["GO%3A0019592","mannitol catabolic process"],["NCBIfam%3ANF002646","mannitol-1-phosphate 5-dehydrogenase"],["NCBIfam%3ANF002647","mannitol-1-phosphate 5-dehydrogenase"],["NCBIfam%3ANF002648","mannitol-1-phosphate 5-dehydrogenase"],["NCBIfam%3ANF002650","mannitol-1-phosphate 5-dehydrogenase"]]},{"id":"UniProt:P21458","l":"","na":1,"nb":9,"a":[["morphology/sporulation.html","sporulation"]],"b":[["CDD%3Acd01127","TrwB_TraG_TraD_VirD4"],["InterPro%3AIPR041027","FtsK alpha domain"],["InterPro%3AIPR002543","FtsK domain"],["InterPro%3AIPR018541","FtsK gamma domain"],["Pfam%3APF17854","FtsK alpha domain"],["Pfam%3APF09397","Ftsk gamma domain"]]},{"id":"CHEBI:17029","l":"chitin","na":1,"nb":8,"a":[["metabolism/chitinolysis.html","chitinolysis"]],"b":[["EC%3A2.4.1.16","chitin synthase"],["EC%3A3.5.1.41","chitin deacetylase"],["RHEA%3A85463","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-1)-N-acetyl-alpha-D-glucosamine"],["RHEA%3A50672","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-2) + N,N'-diacetylchitobiose"],["RHEA%3A85003","[(1->4)-N-acetyl-beta-D-glucosaminyl](n)-N-acetyl-alpha-D-glucosamine + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n) + N-acetyl-alpha-D-glucosamine"],["RHEA%3A10464","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + n H2O = chitosan + n acetate"]]},{"id":"GO:0003868","l":"4-hydroxyphenylpyruvate dioxygenase activity","na":1,"nb":8,"a":[["morphology/brown_pigmented.html","brown pigmented"]],"b":[["EC%3A1.13.11.27","4-hydroxyphenylpyruvate dioxygenase"],["RHEA%3A16189","3-(4-hydroxyphenyl)pyruvate + O2 = homogentisate + CO2"],["GO%3A0003868","4-hydroxyphenylpyruvate dioxygenase activity"],["NCBIfam%3ATIGR01263","4-hydroxyphenylpyruvate dioxygenase"],["proteintraitsmech%3ABIOLIP_869","869-binding site"],["proteintraitsmech%3ABIOLIP_AIY","AIY-binding site"]]},{"id":"GO:0006572","l":"L-tyrosine catabolic process","na":1,"nb":8,"a":[["morphology/brown_pigmented.html","brown pigmented"]],"b":[["GO%3A0006572","L-tyrosine catabolic process"],["Reactome%3AR-HSA-8963684","Tyrosine catabolism"],["NCBIfam%3ATIGR01263","4-hydroxyphenylpyruvate dioxygenase"],["NCBIfam%3ATIGR01266","fumarylacetoacetase"],["NCBIfam%3ATIGR01015","homogentisate 1,2-dioxygenase"],["NCBIfam%3ATIGR01262","maleylacetoacetate isomerase"]]},{"id":"GO:0008936","l":"nicotinamidase activity","na":1,"nb":8,"a":[["physiology/pyrazinamidase_activity.html","pyrazinamidase activity"]],"b":[["EC%3A3.5.1.19","nicotinamidase"],["RHEA%3A14545","nicotinamide + H2O = nicotinate + NH4(+)"],["GO%3A0008936","nicotinamidase activity"],["ARO%3A3004267","antibiotic resistant pncA"],["ARO%3A3003394","Mycobacterium tuberculosis pncA mutations conferring resistance to pyrazinamide"],["ARO%3A3003418","Pyrazinamide resistant pncA"]]},{"id":"GO:0009303","l":"rRNA transcription","na":1,"nb":8,"a":[["genomics/rrna_operon_copy_number.html","rRNA operon copy number"]],"b":[["GO%3A0042791","5S class rRNA transcription by RNA polymerase III"],["GO%3A0042790","nucleolar large rRNA transcription by RNA polymerase I"],["GO%3A0042794","plastid rRNA transcription"],["GO%3A0009303","rRNA transcription"],["PANTHER%3APTHR14440","DNA-DIRECTED RNA POLYMERASE I SUBUNIT RPA49"],["PANTHER%3APTHR10535","DNA-DIRECTED RNA POLYMERASES I, II, AND III SUBUNIT RPABC1"]]},{"id":"GO:0016049","l":"cell growth","na":1,"nb":8,"a":[["metabolism/metabolism.html","metabolism"]],"b":[["GO%3A0051211","anisotropic cell growth"],["GO%3A0016049","cell growth"],["GO%3A0048588","developmental cell growth"],["GO%3A0051210","isotropic cell growth"],["GO%3A0009825","multidimensional cell growth"],["GO%3A0007124","pseudohyphal growth"]]},{"id":"GO:0036374","l":"glutathione gamma-glutamate hydrolase","na":1,"nb":8,"a":[["physiology/gamma_glutamyltransferase_activity.html","gamma-glutamyltransferase activity"]],"b":[["EC%3A3.4.19.13","glutathione gamma-glutamate hydrolase"],["RHEA%3A28807","glutathione + H2O = L-cysteinylglycine + L-glutamate"],["ComplexPortal%3ACPX-325","Glutathione hydrolase complex"],["GO%3A0036374","glutathione gamma-glutamate hydrolase"],["NCBIfam%3ANF007187","gamma-glutamyltransferase"],["NCBIfam%3ATIGR00066","gamma-glutamyltransferase"]]},{"id":"GO:0042276","l":"error-prone translesion synthesis","na":1,"nb":8,"a":[["genomics/gc_content.html","GC content"]],"b":[["ComplexPortal%3ACPX-1091","DNA polymerase zeta complex"],["ComplexPortal%3ACPX-2426","DNA polymerase zeta complex"],["ComplexPortal%3ACPX-994","DNA polymerase zeta complex"],["GO%3A0042276","error-prone translesion synthesis"],["Reactome%3AR-HSA-5656121","Translesion synthesis by POLI"],["Reactome%3AR-HSA-5655862","Translesion synthesis by POLK"]]},{"id":"InterPro:IPR001492","l":"","na":1,"nb":8,"a":[["morphology/spirochete_shaped.html","spirochete shaped"]],"b":[["Pfam%3APF00700","Bacterial flagellin C-terminal helical region"],["Pfam%3APF08884","Flagellin D3 domain"],["Pfam%3APF21504","Flagellin, barrel domain"],["Pfam%3APF22370","Flagellin, beta sheet domain"],["PANTHER%3APTHR42792","FLAGELLIN"],["Pfam%3APF00669","Bacterial flagellin N-terminal helical region"]]},{"id":"InterPro:IPR050469","l":"","na":1,"nb":8,"a":[["ecology/biofilm_formation.html","biofilm formation"]],"b":[["Pfam%3APF17151","Periplasmic sensor domain"],["Pfam%3APF13682","Chemoreceptor zinc-binding domain"],["Pfam%3APF20975","DGC-associated coil"],["Pfam%3APF21118","DosC CZB-like middle domain"],["Pfam%3APF00990","Diguanylate cyclase, GGDEF domain"],["PANTHER%3APTHR45138","REGULATORY COMPONENTS OF SENSORY TRANSDUCTION SYSTEM"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":1,"nb":8,"a":[["other/catalase_negative.html","catalase negative"]],"b":[["Pfam%3APF01721","Class II bacteriocin"],["Pfam%3APF13700","Domain of unknown function (DUF4158)"],["Pfam%3APF07478","D-ala D-ala ligase C-terminus"],["Pfam%3APF01820","D-ala D-ala ligase N-terminus"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"],["PROSITE%3APS00843","D-alanine--D-alanine ligase signature 1"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":8,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["Pfam%3APF02927","Cellulase N-terminal ig-like domain"],["Pfam%3APF00404","Dockerin type I domain"],["PROSITE%3APS00448","Clostridium cellulosome enzymes repeated domain signature"],["PROSITE%3APS60032","Glycosyl hydrolases family 9 (GH9) active site signature 1"],["PROSITE%3APS00592","Glycosyl hydrolases family 9 (GH9) active site signature 2"],["PROSITE%3APS00698","Glycosyl hydrolases family 9 (GH9) active site signature 3"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK1622","na":1,"nb":8,"a":[["morphology/gliding.html","gliding"]],"b":[["Pfam%3APF27281","DevT C-terminal domain"],["Pfam%3APF27372","DevT N-terminal domain"],["Pfam%3APF17762","ParB HTH domain"],["Pfam%3APF01930","Domain of unknown function DUF83"],["Pfam%3APF09559","Cas6 Crispr"],["Pfam%3APF01905","CRISPR-associated negative auto-regulator DevR/Csa2"]]},{"id":"UniProt:P04189","l":"","na":1,"nb":8,"a":[["metabolism/proteolysis.html","proteolysis"]],"b":[["GO%3A0009274","peptidoglycan-based cell wall"],["GO%3A0004252","serine-type endopeptidase activity"],["GO%3A0009372","quorum sensing"],["GO%3A0140448","signaling receptor ligand precursor processing"],["InterPro%3AIPR023827","Peptidase S8, subtilisin, Asp-active site"],["InterPro%3AIPR022398","Peptidase S8, subtilisin, His-active site"]]},{"id":"UniProt:P0ABB4","l":"","na":8,"nb":1,"a":[["metabolism/metabolism.html","metabolism"],["metabolism/respiration.html","respiration"],["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"],["physiology/chemotrophic.html","chemotrophic"],["physiology/heterotrophic.html","heterotrophic"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"]]},{"id":"CHEBI:17593","l":"","na":1,"nb":7,"a":[["metabolism/starch_degradation.html","starch degradation"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.B.64","The Brucella Omp2 Porin (B-Omp2) Family"],["TCDB%3A1.B.26","The Cyclodextrin Porin (CDP) Family"],["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["TCDB%3A1.B.3","The Sugar Porin (SP) Family"]]},{"id":"CHEBI:30087","l":"","na":1,"nb":7,"a":[["metabolism/sulfur_oxidation.html","sulfur oxidation"]],"b":[["EC%3A1.14.20.7","2-oxoglutarate/L-arginine monooxygenase/decarboxylase (succinate- forming)"],["RHEA%3A31527","5-hydroxy-L-arginine = guanidine + L-glutamate 5-semialdehyde"],["RHEA%3A79843","6-hydroxy-L-homoarginine = guanidine + (S)-2-amino-6-oxohexanoate"],["RHEA%3A79567","guanidine + H2O = urea + NH4(+)"],["RHEA%3A73883","guanidine(out) = guanidine(in)"],["RHEA%3A31535","L-arginine + 2-oxoglutarate + O2 = guanidine + L-glutamate 5-semialdehyde + succinate + CO2"]]},{"id":"GO:0004411","l":"homogentisate 1,2-dioxygenase activity","na":1,"nb":7,"a":[["morphology/brown_pigmented.html","brown pigmented"]],"b":[["EC%3A1.13.11.5","homogentisate 1,2-dioxygenase"],["RHEA%3A15449","homogentisate + O2 = 4-maleylacetoacetate + H(+)"],["GO%3A0004411","homogentisate 1,2-dioxygenase activity"],["NCBIfam%3ATIGR01015","homogentisate 1,2-dioxygenase"],["NCBIfam%3ANF016125","homogentisate 1,2-dioxygenase domain-containing protein"],["MCSA%3A547","homogentisate 1,2-dioxygenase"]]},{"id":"GO:0004658","l":"propionyl-CoA carboxylase activity","na":1,"nb":7,"a":[["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"]],"b":[["EC%3A6.4.1.3","propionyl-CoA carboxylase"],["RHEA%3A23720","propanoyl-CoA + hydrogencarbonate + ATP = (S)-methylmalonyl-CoA + ADP + phosphate + H(+)"],["ComplexPortal%3ACPX-6169","Mitochondrial propionyl-CoA carboxylase complex"],["GO%3A0004658","propionyl-CoA carboxylase activity"],["NCBIfam%3ANF025192","acyl-CoA carboxylase epsilon subunit"],["Pfam%3APF13822","Acyl-CoA carboxylase epsilon subunit"]]},{"id":"GO:0008804","l":"carbamate kinase activity","na":1,"nb":7,"a":[["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["EC%3A2.7.2.2","carbamate kinase"],["RHEA%3A10152","hydrogencarbonate + NH4(+) + ATP = carbamoyl phosphate + ADP + H2O + H(+)"],["GO%3A0008804","carbamate kinase activity"],["NCBIfam%3ANF006926","carbamate kinase"],["NCBIfam%3ATIGR00746","carbamate kinase"],["MCSA%3A669","carbamate kinase"]]},{"id":"GO:0009424","l":"bacterial-type flagellum hook","na":1,"nb":7,"a":[["morphology/flagellated.html","flagellated"]],"b":[["GO%3A0009424","bacterial-type flagellum hook"],["NCBIfam%3ATIGR02492","flagellar hook-associated protein FlgK"],["NCBIfam%3ATIGR02550","flagellar hook-associated protein FlgL"],["NCBIfam%3ANF007514","flagellar hook length control protein FliK"],["InterPro%3AIPR003481","Flagellar hook-associated protein 2, N-terminal"],["NCBIfam%3ANF014518","flagellar cap protein FliD N-terminal domain-containing protein"]]},{"id":"GO:0009973","l":"adenylyl-sulfate reductase activity","na":1,"nb":7,"a":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["EC%3A1.8.99.2","adenylyl-sulfate reductase"],["RHEA%3A24240","sulfite + A + AMP + 2 H(+) = adenosine 5'-phosphosulfate + AH2"],["GO%3A0009973","adenylyl-sulfate reductase activity"],["NCBIfam%3ATIGR02061","adenylyl-sulfate reductase subunit alpha"],["NCBIfam%3ATIGR02060","adenylyl-sulfate reductase subunit beta"],["NCBIfam%3ATIGR02055","adenylylsulfate reductase, thioredoxin dependent"]]},{"id":"GO:0019420","l":"dissimilatory sulfate reduction","na":1,"nb":7,"a":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["GO%3A0019420","dissimilatory sulfate reduction"],["NCBIfam%3ATIGR02061","adenylyl-sulfate reductase subunit alpha"],["NCBIfam%3ATIGR02060","adenylyl-sulfate reductase subunit beta"],["NCBIfam%3ATIGR02066","dissimilatory-type sulfite reductase subunit beta"],["NCBIfam%3ANF045796","sulfate reduction electron transfer complex DsrMKJOP subunit DsrK"],["NCBIfam%3ANF045797","sulfate reduction electron transfer complex DsrMKJOP subunit DsrO"]]},{"id":"GO:0042744","l":"hydrogen peroxide catabolic process","na":1,"nb":7,"a":[["environment/aerotolerant.html","aerotolerant"]],"b":[["ComplexPortal%3ACPX-4862","Alkyl hydroperoxide reductase complex"],["ComplexPortal%3ACPX-4742","Catalase complex"],["ComplexPortal%3ACPX-4767","Catalase complex"],["ComplexPortal%3ACPX-4768","Catalase complex"],["GO%3A0033355","ascorbate glutathione cycle"],["GO%3A0042744","hydrogen peroxide catabolic process"]]},{"id":"InterPro:IPR018028","l":"","na":1,"nb":7,"a":[["physiology/catalase_activity.html","catalase activity"]],"b":[["Pfam%3APF18011","C-terminal domain found in long catalases"],["Pfam%3APF00199","Catalase"],["PANTHER%3APTHR11465","CATALASE"],["Pfam%3APF06628","Catalase-related immune-responsive"],["PRINTS%3APR00067","Catalase signature"],["PROSITE%3APS00437","Catalase proximal heme-ligand signature"]]},{"id":"InterPro:IPR045087","l":"","na":1,"nb":7,"a":[["metabolism/manganese_oxidation.html","manganese oxidation"]],"b":[["Pfam%3APF07731","Multicopper oxidase"],["Pfam%3APF07732","Multicopper oxidase"],["Pfam%3APF00394","Multicopper oxidase"],["PANTHER%3APTHR48267","CUPREDOXIN SUPERFAMILY PROTEIN"],["PANTHER%3APTHR11709","MULTI-COPPER OXIDASE"],["PROSITE%3APS00079","Multicopper oxidases signature 1"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":7,"nb":1,"a":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/copper_tolerant.html","copper tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["environment/metal_tolerant.html","metal tolerant"]],"b":[["TED%3AAF-A0A132HLN2-F1-model_v4_TED01","TED novel fold AF-A0A132HLN2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":1,"nb":7,"a":[["environment/microaerophilic.html","microaerophilic"]],"b":[["Pfam%3APF04439","Streptomycin adenylyltransferase"],["TED%3AAF-A0A696J2C3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A696J2C3-F1-model_v4_TED01"],["TED%3AAF-A0A825M6H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A825M6H4-F1-model_v4_TED01"],["TED%3AAF-A0A5T0SBG5-F1-model_v4_TED01","TED novel fold AF-A0A5T0SBG5-F1-model_v4_TED01"],["TED%3AAF-A0A698JVM3-F1-model_v4_TED03","TED novel fold AF-A0A698JVM3-F1-model_v4_TED03"],["TED%3AAF-A0A824N1N8-F1-model_v4_TED01","TED novel fold AF-A0A824N1N8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:264203","l":"Zymomonas mobilis subsp. mobilis (strain ATCC 31821 / ZM4 / CP4)","na":1,"nb":7,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"]],"b":[["Pfam%3APF13590","Domain of unknown function (DUF4136)"],["Pfam%3APF08436","1-deoxy-D-xylulose 5-phosphate reductoisomerase C-terminal domain"],["Pfam%3APF13288","DXP reductoisomerase C-terminal domain"],["Pfam%3APF02670","1-deoxy-D-xylulose 5-phosphate reductoisomerase"],["PROSITE%3APS01157","Class A bacterial acid phosphatases signature"],["PROSITE%3APS01320","Uncharacterized protein family UPF0067 signature"]]},{"id":"NCBITaxon:272623","l":"Lactococcus lactis subsp. lactis (strain IL1403)","na":1,"nb":7,"a":[["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]],"b":[["Pfam%3APF25935","LcnD-like, barrel-sandwich hybrid domain"],["Pfam%3APF27342","ComB N-terminal domain"],["Pfam%3APF06993","Protein of unknown function (DUF1304)"],["Pfam%3APF25887","LcnD-like, long helical bundle domain"],["Pfam%3APF13276","HTH-like domain"],["Pfam%3APF25940","LcnD-like, C-terminal domain"]]},{"id":"NCBITaxon:672","l":"Vibrio vulnificus","na":1,"nb":7,"a":[["physiology/viable_but_nonculturable_state.html","viable but nonculturable state"]],"b":[["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF08021","Siderophore-interacting FAD-binding domain"],["Pfam%3APF11575","FhuF 2Fe-2S C-terminal domain"],["Pfam%3APF27349","IcsB middle domain"],["Pfam%3APF21735","C-terminal repeat from RTX toxins"],["Pfam%3APF07634","RtxA repeat"]]},{"id":"NCBITaxon:837","l":"Porphyromonas gingivalis","na":1,"nb":7,"a":[["morphology/black_pigmented.html","black pigmented"]],"b":[["Pfam%3APF07675","Cleaved Adhesin Domain"],["Pfam%3APF22492","FimA4 pilin C-terminal domain"],["Pfam%3APF15495","Major fimbrial subunit protein type IV, Fimbrillin, C-terminal"],["Pfam%3APF26306","FimD protein third domain"],["Pfam%3APF27397","FimE C-terminal domain"],["Pfam%3APF10365","Domain of unknown function (DUF2436)"]]},{"id":"CHEBI:27592","l":"ectoine","na":6,"nb":1,"a":[["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"],["environment/nacl_delta_mid1.html","NaCl delta mid1"],["environment/nacl_optimum_mid2.html","NaCl optimum mid2"],["environment/nacl_range_mid2.html","NaCl range mid2"],["environment/slightly_halophilic.html","slightly halophilic"]],"b":[["proteintraitsmech%3ABIOLIP_4CS","4CS-binding site"]]},{"id":"CHEBI:29041","l":"","na":1,"nb":6,"a":[["metabolism/manganese_oxidation.html","manganese oxidation"]],"b":[["EC%3A1.11.1.13","manganese peroxidase"],["EC%3A1.11.1.16","versatile peroxidase"],["RHEA%3A22776","2 Mn(2+) + H2O2 + 2 H(+) = 2 Mn(3+) + 2 H2O"],["RHEA%3A52244","4 Mn(2+) + O2 + 4 H(+) = 4 Mn(3+) + 2 H2O"],["RHEA%3A52248","4 Mn(3+) + O2 + 6 H2O = 4 MnO2 + 12 H(+)"],["proteintraitsmech%3ABIOLIP_MN3","MN3-binding site"]]},{"id":"CHEBI:71578","l":"","na":6,"nb":1,"a":[["environment/nacl_delta_mid1.html","NaCl delta mid1"],["environment/nacl_delta_mid2.html","NaCl delta mid2"],["environment/nacl_optimum_low.html","NaCl optimum low"],["environment/nacl_range.html","NaCl range"],["environment/nacl_range_low.html","NaCl range low"],["environment/stenohaline.html","stenohaline"]],"b":[["proteintraitsmech%3ABIOLIP_2BA","2BA-binding site"]]},{"id":"GO:0009409","l":"response to cold","na":1,"nb":6,"a":[["physiology/cold_shock_response.html","cold shock response"]],"b":[["GO%3A0070417","cellular response to cold"],["GO%3A0009631","cold acclimation"],["GO%3A0009409","response to cold"],["GO%3A0050826","response to freezing"],["GO%3A0010048","vernalization response"],["NCBIfam%3ANF005952","kdo(2)-lipid IV(A) palmitoleoyltransferase"]]},{"id":"GO:0042279","l":"nitrite reductase (cytochrome, ammonia-forming) activity","na":1,"nb":6,"a":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]],"b":[["EC%3A1.7.2.2","nitrite reductase (cytochrome; ammonia-forming)"],["RHEA%3A13089","6 Fe(III)-[cytochrome c] + NH4(+) + 2 H2O = 6 Fe(II)-[cytochrome c] + nitrite + 8 H(+)"],["GO%3A0042279","nitrite reductase (cytochrome, ammonia-forming) activity"],["NCBIfam%3ANF014398","ammonia-forming cytochrome c nitrite reductase subunit c552"],["NCBIfam%3ATIGR03152","ammonia-forming nitrite reductase cytochrome c552 subunit"],["Pfam%3APF02335","Cytochrome c552"]]},{"id":"GO:0044409","l":"symbiont entry into host","na":1,"nb":6,"a":[["ecology/plant_pathogen.html","plant pathogen"]],"b":[["GO%3A0120326","appressorium-mediated entry into host"],["GO%3A0140717","entry into host through the stromata"],["GO%3A0035635","entry of bacterium into host cell"],["GO%3A0046718","symbiont entry into host cell"],["GO%3A0044409","symbiont entry into host"],["Reactome%3AR-HSA-173107","Binding and entry of HIV virion"]]},{"id":"METPO:1000845","l":"Acetogenesis","na":6,"nb":1,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"],["physiology/heterotrophic.html","heterotrophic"]],"b":[["METPO%3A1000845","Acetogenesis"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":1,"nb":6,"a":[["metabolism/starch_degradation.html","starch degradation"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF10779","Haemolysin XhlA"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF08181","DegQ (SacQ) family"],["Pfam%3APF08057","Erythromycin resistance leader peptide"],["Pfam%3APF14867","Lantibiotic alpha"]]},{"id":"NCBITaxon:272630","l":"Methylorubrum extorquens (strain ATCC 14718 / DSM 1338 / JCM 2805 / NCIMB 9133 / AM1)","na":1,"nb":6,"a":[["physiology/methylotrophic.html","methylotrophic"]],"b":[["Pfam%3APF07726","ATPase family associated with various cellular activities (AAA)"],["Pfam%3APF02741","FTR, proximal lobe"],["Pfam%3APF01913","Formylmethanofuran-tetrahydromethanopterin formyltransferase"],["Pfam%3APF10677","Protein of unknown function (DUF2490)"],["Pfam%3APF08714","Formaldehyde-activating enzyme (Fae)"],["PROSITE%3APS00363","Bacterial quinoprotein dehydrogenases signature 1"]]},{"id":"NCBITaxon:316401","l":"Escherichia coli O78:H11 (strain H10407 / ETEC)","na":1,"nb":6,"a":[["other/indole_test_positive.html","indole test positive"]],"b":[["Pfam%3APF26759","AcfD helical domain"],["Pfam%3APF04449","CS1 type fimbrial major subunit"],["Pfam%3APF13322","Domain of unknown function (DUF4092)"],["PROSITE%3APS01141","Bacterial type II secretion system protein C signature"],["Pfam%3APF16168","Adhesin of bacterial autotransporter system, probable stalk"],["Pfam%3APF24078","PIC/HAP1/IgA0 second beta-solenoid repeat region"]]},{"id":"UniProt:P0A6Y8","l":"","na":1,"nb":6,"a":[["physiology/heat_shock_response.html","heat shock response"]],"b":[["GO%3A0016989","sigma factor antagonist activity"],["GO%3A0043335","protein unfolding"],["GO%3A1990169","stress response to copper ion"],["NCBIfam%3ANF003520","Fe-S protein assembly chaperone HscA"],["NCBIfam%3ATIGR02350","molecular chaperone DnaK"],["CDD%3Acd10234","ASKHA_NBD_HSP70_DnaK-like"]]},{"id":"CHEBI:26672","l":"siderophore","na":1,"nb":5,"a":[["physiology/siderophore_production.html","siderophore production"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_26672","siderophore cofactor class"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.17","The Outer Membrane Factor (OMF) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]]},{"id":"GO:0004035","l":"alkaline phosphatase activity","na":1,"nb":5,"a":[["physiology/alkaline_phosphatase_activity.html","alkaline phosphatase activity"]],"b":[["EC%3A3.1.3.1","alkaline phosphatase"],["GO%3A0004035","alkaline phosphatase activity"],["NCBIfam%3ANF042991","alkaline phosphatase PafA"],["NCBIfam%3ANF058638","alkaline phosphatase PhoD"],["MCSA%3A44","alkaline phosphatase"]]},{"id":"GO:0004309","l":"exopolyphosphatase activity","na":1,"nb":5,"a":[["morphology/polyphosphate_granule.html","polyphosphate granule"]],"b":[["EC%3A3.6.1.11","exopolyphosphatase"],["RHEA%3A21528","[phosphate](n) + H2O = [phosphate](n-1) + phosphate + H(+)"],["GO%3A0004309","exopolyphosphatase activity"],["NCBIfam%3ATIGR03706","exopolyphosphatase"],["InterPro%3AIPR022371","Exopolyphosphatase"]]},{"id":"GO:0004457","l":"lactate dehydrogenase activity","na":1,"nb":5,"a":[["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]],"b":[["GO%3A0047809","D-lactate dehydrogenase activity"],["GO%3A0140171","L-lactate dehydrogenase activity"],["GO%3A0004457","lactate dehydrogenase activity"],["NCBIfam%3ANF033901","FMN-dependent L-lactate dehydrogenase LldD"],["NCBIfam%3ANF045670","L-lactate dehydrogenase (quinone) large subunit LdhH"]]},{"id":"GO:0006829","l":"zinc ion transport","na":1,"nb":5,"a":[["environment/zinc_tolerant.html","zinc tolerant"]],"b":[["GO%3A0071577","zinc ion transmembrane transport"],["GO%3A0006829","zinc ion transport"],["NCBIfam%3ANF002923","CDF family zinc transporter ZitB"],["NCBIfam%3ANF007090","zinc ABC transporter ATP-binding protein ZnuC"],["NCBIfam%3ANF007091","zinc ABC transporter substrate-binding protein ZnuA"]]},{"id":"GO:0008861","l":"formate C-acetyltransferase activity","na":1,"nb":5,"a":[["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"]],"b":[["EC%3A2.3.1.54","formate C-acetyltransferase"],["RHEA%3A11844","formate + acetyl-CoA = pyruvate + CoA"],["GO%3A0008861","formate C-acetyltransferase activity"],["NCBIfam%3ATIGR01255","formate C-acetyltransferase"],["MCSA%3A30","formate C-acetyltransferase"]]},{"id":"GO:0016692","l":"NADH peroxidase activity","na":1,"nb":5,"a":[["environment/aerotolerant.html","aerotolerant"]],"b":[["EC%3A1.11.1.1","NADH peroxidase"],["RHEA%3A18509","H2O2 + NADH + H(+) = NAD(+) + 2 H2O"],["GO%3A0016692","NADH peroxidase activity"],["NCBIfam%3ANF045767","rubrerythrin"],["MCSA%3A895","NADH peroxidase"]]},{"id":"GO:0016920","l":"pyroglutamyl-peptidase activity","na":1,"nb":5,"a":[["physiology/pyrrolidonyl_arylamidase_activity.html","pyrrolidonyl arylamidase activity"]],"b":[["EC%3A3.4.19.3","pyroglutamyl-peptidase I"],["EC%3A3.4.19.6","pyroglutamyl-peptidase II"],["GO%3A0016920","pyroglutamyl-peptidase activity"],["NCBIfam%3ATIGR00504","pyroglutamyl-peptidase I"],["MCSA%3A633","pyroglutamyl-peptidase I"]]},{"id":"GO:0016990","l":"arginine deiminase activity","na":1,"nb":5,"a":[["physiology/arginine_dihydrolase_activity.html","arginine dihydrolase activity"]],"b":[["EC%3A3.5.3.6","arginine deiminase"],["RHEA%3A19597","L-arginine + H2O = L-citrulline + NH4(+)"],["GO%3A0016990","arginine deiminase activity"],["NCBIfam%3ANF002381","arginine deiminase"],["NCBIfam%3ATIGR01078","arginine deiminase"]]},{"id":"GO:0030420","l":"establishment of competence for transformation","na":1,"nb":5,"a":[["physiology/natural_competence.html","natural competence"]],"b":[["GO%3A0030420","establishment of competence for transformation"],["NCBIfam%3ANF008580","ComEC family protein"],["NCBIfam%3ANF040999","competence type IV pilus major pilin ComGC"],["NCBIfam%3ANF018087","competence protein ComK"],["Pfam%3APF06338","ComK protein"]]},{"id":"GO:0030634","l":"carbon fixation by acetyl-CoA pathway","na":5,"nb":1,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"],["physiology/autotrophic.html","autotrophic"]],"b":[["GO%3A0030634","carbon fixation by acetyl-CoA pathway"]]},{"id":"GO:0044096","l":"type IV pilus","na":5,"nb":1,"a":[["ecology/predatory_bacterium.html","predatory bacterium"],["morphology/motile.html","motile"],["morphology/motility.html","motility"],["morphology/twitching_motility.html","twitching motility"],["morphology/type_iv_pilus.html","type IV pilus"]],"b":[["GO%3A0044096","type IV pilus"]]},{"id":"GO:0047646","l":"alkanal monooxygenase (FMN-linked) activity","na":1,"nb":5,"a":[["physiology/bioluminescence.html","bioluminescence"]],"b":[["EC%3A1.14.14.3","bacterial luciferase"],["RHEA%3A17181","a long-chain fatty aldehyde + FMNH2 + O2 = a long-chain fatty acid + hnu + FMN + H2O + 2 H(+)"],["GO%3A0047646","alkanal monooxygenase (FMN-linked) activity"],["InterPro%3AIPR018235","Bacterial luciferase, conserved site"],["MCSA%3A132","alkanal monooxygenase (FMN-linked)"]]},{"id":"GO:0160097","l":"reverse gyrase activity","na":5,"nb":1,"a":[["environment/extreme_hyperthermophilic.html","extreme hyperthermophilic"],["environment/hyperthermophilic.html","hyperthermophilic"],["environment/temperature_optimum_high.html","temperature optimum high"],["environment/temperature_range_high.html","temperature range high"],["environment/thermophilic.html","thermophilic"]],"b":[["GO%3A0160097","reverse gyrase activity"]]},{"id":"InterPro:IPR001425","l":"","na":1,"nb":5,"a":[["physiology/phototrophic.html","phototrophic"]],"b":[["Pfam%3APF01036","Bacteriorhodopsin-like protein"],["PANTHER%3APTHR28286","Archaeal/bacterial/fungal rhodopsins"],["PRINTS%3APR00251","Bacterial opsin signature"],["PROSITE%3APS00950","Bacterial rhodopsins signature 1"],["PROSITE%3APS00327","Bacterial rhodopsins retinal binding site"]]},{"id":"InterPro:IPR006314","l":"","na":1,"nb":5,"a":[["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["Pfam%3APF21105","DyP dimeric alpha+beta barrel domain"],["Pfam%3APF20628","Dyp-type peroxidase, C-terminal"],["Pfam%3APF04261","Dyp-type peroxidase, N-terminal"],["PANTHER%3APTHR30521","DEFERROCHELATASE/PEROXIDASE"],["Pfam%3APF10518","TAT (twin-arginine translocation) pathway signal sequence"]]},{"id":"InterPro:IPR013765","l":"","na":1,"nb":5,"a":[["physiology/natural_competence.html","natural competence"]],"b":[["HAMAP%3AMF_00268","Protein RecA [recA]"],["PANTHER%3APTHR45900","RECA"],["Pfam%3APF14890","Intein splicing domain"],["PRINTS%3APR00142","RecA protein signature"],["PROSITE%3APS00321","recA signature"]]},{"id":"METPO:1000844","l":"Methanogenesis","na":5,"nb":1,"a":[["metabolism/acetoclastic_methanogenesis.html","acetoclastic methanogenesis"],["metabolism/hydrogenotrophic_methanogenesis.html","hydrogenotrophic methanogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/methyl_based_methanogenesis.html","methyl-based methanogenesis"],["metabolism/syntrophy.html","Syntrophy"]],"b":[["METPO%3A1000844","Methanogenesis"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":5,"nb":1,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"],["physiology/hydrogenotrophic.html","hydrogenotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"]],"b":[["TED%3AAF-A0A367PA30-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A367PA30-F1-model_v4_TED01"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":1,"nb":5,"a":[["morphology/gliding.html","gliding"]],"b":[["TED%3AAF-A0A4Y6CF56-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y6CF56-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6CNZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Y6CNZ1-F1-model_v4_TED02"],["TED%3AAF-A0A7Y4IIX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4IIX4-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6B7F9-F1-model_v4_TED01","TED novel fold AF-A0A4Y6B7F9-F1-model_v4_TED01"],["TED%3AAF-A0A7Y4IR70-F1-model_v4_TED01","TED novel fold AF-A0A7Y4IR70-F1-model_v4_TED01"]]},{"id":"NCBITaxon:435","l":"Acetobacter aceti","na":1,"nb":5,"a":[["environment/acidotolerant.html","acidotolerant"]],"b":[["Pfam%3APF13336","Acetyl-CoA hydrolase/transferase C-terminal domain"],["Pfam%3APF02550","Acetyl-CoA hydrolase/transferase N-terminal domain"],["Pfam%3APF13442","Cytochrome C oxidase, cbb3-type, subunit III"],["Pfam%3APF06481","COX Aromatic Rich Motif"],["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"]]},{"id":"NCBITaxon:959","l":"Bdellovibrio bacteriovorus","na":1,"nb":5,"a":[["ecology/predatory_bacterium.html","predatory bacterium"]],"b":[["TED%3AAF-A0A150WJL7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A150WJL7-F1-model_v4_TED01"],["TED%3AAF-A0A150WK21-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A150WK21-F1-model_v4_TED01"],["TED%3AAF-A0A1Z3N7G2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Z3N7G2-F1-model_v4_TED02"],["TED%3AAF-A0A150WR18-F1-model_v4_TED04","TED novel fold AF-A0A150WR18-F1-model_v4_TED04"],["TED%3AAF-A0A162GEG0-F1-model_v4_TED02","TED novel fold AF-A0A162GEG0-F1-model_v4_TED02"]]},{"id":"UniProt:P00807","l":"","na":1,"nb":5,"a":[["physiology/antibiotic_resistance.html","antibiotic resistance"]],"b":[["proteintraitsmech%3AMEROPS_CLEAVAGE_S26_016","SpsB signal peptidase cleavage specificity"],["Pfam%3APF08139","Prokaryotic membrane lipoprotein lipid attachment site"],["proteintraitsmech%3ABIOLIP_CEM","CEM-binding site"],["proteintraitsmech%3ABIOLIP_CO3","CO3-binding site"],["proteintraitsmech%3ABIOLIP_TEM","TEM-binding site"]]},{"id":"UniProt:P0A953","l":"","na":1,"nb":5,"a":[["physiology/homeoviscous_adaptation.html","homeoviscous adaptation"]],"b":[["GO%3A1903966","monounsaturated fatty acid biosynthetic process"],["NCBIfam%3ANF005935","beta-ketoacyl-ACP synthase I"],["CDD%3Acd00834","KAS_I_II"],["MCSA%3A292","beta-ketoacyl-[acyl carrier protein] synthase I"],["proteintraitsmech%3ABIOLIP_6W5","6W5-binding site"]]},{"id":"UniProt:P0ACQ4","l":"","na":1,"nb":5,"a":[["physiology/oxidative_stress_response.html","oxidative stress response"]],"b":[["GO%3A2000142","regulation of DNA-templated transcription initiation"],["GO%3A0051409","response to nitrosative stress"],["NCBIfam%3ANF008361","DNA-binding transcriptional regulator OxyR"],["CDD%3Acd08411","PBP2_OxyR"],["Pfam%3APF00126","Bacterial regulatory helix-turn-helix protein, lysR family"]]},{"id":"UniProt:Q99ZW2","l":"","na":1,"nb":5,"a":[["genomics/crispr_cas_system.html","CRISPR-Cas system"]],"b":[["Pfam%3APF16595","PAM-interacting domain of CRISPR-associated endonuclease Cas9"],["Pfam%3APF22702","Cas9 RuvC domain"],["Pfam%3APF13395","HNH endonuclease"],["Pfam%3APF16593","Bridge helix of CRISPR-associated endonuclease Cas9"],["Pfam%3APF16592","REC lobe of CRISPR-associated endonuclease Cas9"]]},{"id":"CHEBI:16856","l":"glutathione","na":1,"nb":4,"a":[["environment/zinc_tolerant.html","zinc tolerant"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16856","requires glutathione"],["MCSA%3A359","lactoglutathione lyase"],["MCSA%3A32","lactoylglutathione lyase"],["proteintraitsmech%3ABIOLIP_GSH","GSH-binding site"]]},{"id":"CHEBI:25195","l":"","na":1,"nb":4,"a":[["environment/mercury_tolerant.html","mercury tolerant"]],"b":[["proteintraitsmech%3AMETALPDB_HG_DINUCLEAR","dinuclear mercury site"],["proteintraitsmech%3AMETALPDB_HG_MONONUCLEAR","mononuclear mercury site"],["proteintraitsmech%3AMETALPDB_HG_TETRANUCLEAR","tetranuclear mercury site"],["proteintraitsmech%3AMETALPDB_HG_TRINUCLEAR","trinuclear mercury site"]]},{"id":"CHEBI:38201","l":"","na":4,"nb":1,"a":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["physiology/aerobic_anoxygenic_phototrophy.html","aerobic anoxygenic phototrophy"],["physiology/photoheterotrophic.html","photoheterotrophic"],["physiology/phototrophic.html","phototrophic"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:64709","l":"organic acid","na":1,"nb":4,"a":[["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"]],"b":[["TCDB%3A2.A.28","The Bile Acid:Na+ Symporter (BASS) Family"],["TCDB%3A2.A.23","The Dicarboxylate/Amino Acid:Cation (Na+ or H+) Symporter (DAACS) Family"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.25","The Outer Membrane Porin (Opr) Family"]]},{"id":"GO:0004503","l":"tyrosinase activity","na":1,"nb":4,"a":[["morphology/black_pigmented.html","black pigmented"]],"b":[["EC%3A1.14.18.1","tyrosinase"],["RHEA%3A18117","L-tyrosine + O2 = L-dopaquinone + H2O"],["GO%3A0004503","tyrosinase activity"],["NCBIfam%3ANF047834","tyrosinase MelC2"]]},{"id":"GO:0005575","l":"cellular_component","na":1,"nb":4,"a":[["upper/biological_process.html","biological process"]],"b":[["GO%3A0110165","cellular anatomical structure"],["GO%3A0005575","cellular_component"],["GO%3A0032991","protein-containing complex"],["GO%3A0044423","virion component"]]},{"id":"GO:0008923","l":"lysine decarboxylase activity","na":1,"nb":4,"a":[["physiology/lysine_decarboxylase_activity.html","lysine decarboxylase activity"]],"b":[["EC%3A4.1.1.18","lysine decarboxylase"],["RHEA%3A22352","L-lysine + H(+) = cadaverine + CO2"],["GO%3A0008923","lysine decarboxylase activity"],["proteintraitsmech%3ABIOLIP_G4P","G4P-binding site"]]},{"id":"GO:0015386","l":"potassium:proton antiporter activity","na":1,"nb":4,"a":[["environment/ph_optimum_mid2.html","pH optimum mid2"]],"b":[["RHEA%3A29467","K(+)(in) + H(+)(out) = K(+)(out) + H(+)(in)"],["ComplexPortal%3ACPX-3090","Glutathione-regulated potassium-efflux system KefB-KefG complex"],["ComplexPortal%3ACPX-2543","Glutathione-regulated potassium-efflux system KefC-KefF complex"],["GO%3A0015386","potassium:proton antiporter activity"]]},{"id":"GO:0015946","l":"methanol oxidation","na":1,"nb":4,"a":[["metabolism/methanol_oxidation.html","methanol oxidation"]],"b":[["GO%3A0015946","methanol oxidation"],["NCBIfam%3ANF014379","Methanol dehydrogenase beta subunit"],["Pfam%3APF02315","Methanol dehydrogenase beta subunit"],["InterPro%3AIPR036557","Methanol dehydrogenase, beta subunit superfamily"]]},{"id":"GO:0016285","l":"alanyl aminopeptidase activity","na":1,"nb":4,"a":[["physiology/alanine_arylamidase_activity.html","alanine arylamidase activity"]],"b":[["EC%3A3.4.11.14","cytosol alanyl aminopeptidase"],["EC%3A3.4.11.2","membrane alanyl aminopeptidase"],["GO%3A0016285","alanyl aminopeptidase activity"],["proteintraitsmech%3ABIOLIP_37E","37E-binding site"]]},{"id":"GO:0019253","l":"reductive pentose-phosphate cycle","na":4,"nb":1,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["physiology/autotrophic.html","autotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["GO%3A0019253","reductive pentose-phosphate cycle"]]},{"id":"GO:0019333","l":"denitrification pathway","na":1,"nb":4,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"]],"b":[["GO%3A0019333","denitrification pathway"],["NCBIfam%3ATIGR02161","periplasmic nitrate (or nitrite) reductase c-type cytochrome, NapC/NirT family"],["NCBIfam%3ATIGR04244","TAT-dependent nitrous-oxide reductase"],["NCBIfam%3ATIGR04246","Sec-dependent nitrous-oxide reductase"]]},{"id":"GO:0019418","l":"sulfide oxidation","na":1,"nb":4,"a":[["morphology/intracellular_inclusion.html","intracellular inclusion"]],"b":[["GO%3A0019418","sulfide oxidation"],["Reactome%3AR-HSA-1614517","Sulfide oxidation to sulfate"],["NCBIfam%3ATIGR02061","adenylyl-sulfate reductase subunit alpha"],["NCBIfam%3ATIGR02060","adenylyl-sulfate reductase subunit beta"]]},{"id":"GO:0019746","l":"hopanoid biosynthetic process","na":1,"nb":4,"a":[["environment/facultatively_acidophilic.html","facultatively acidophilic"]],"b":[["GO%3A0019746","hopanoid biosynthetic process"],["proteintraitsmech%3ASEED_SUBSYSTEM_Hopanoid_biosynthesis","Hopanoid biosynthesis"],["NCBIfam%3ATIGR04367","hopanoid C-3 methylase HpnR"],["NCBIfam%3ATIGR01507","squalene--hopene cyclase"]]},{"id":"GO:0032196","l":"transposition","na":1,"nb":4,"a":[["genomics/mobile_genetic_element.html","mobile genetic element"]],"b":[["GO%3A0006313","DNA transposition"],["GO%3A0032197","retrotransposition"],["GO%3A0032196","transposition"],["NCBIfam%3ATIGR03783","TraG family conjugative transposon ATPase"]]},{"id":"GO:0033740","l":"hydroxylamine oxidoreductase activity","na":1,"nb":4,"a":[["physiology/lithotrophic.html","lithotrophic"]],"b":[["EC%3A1.7.2.9","hydroxylamine oxidase"],["RHEA%3A45036","hydroxylamine + 3 Fe(III)-[cytochrome c] = nitric oxide + 3 Fe(II)-[cytochrome c] + 3 H(+)"],["GO%3A0033740","hydroxylamine oxidoreductase activity"],["proteintraitsmech%3ABIOLIP_HG1","HG1-binding site"]]},{"id":"GO:0033755","l":"sulfur oxygenase/reductase activity","na":1,"nb":4,"a":[["metabolism/disproportionation.html","Disproportionation"]],"b":[["EC%3A1.13.11.55","sulfur oxygenase/reductase"],["RHEA%3A13957","4 sulfur + O2 + 4 H2O = 2 hydrogen sulfide + 2 sulfite + 6 H(+)"],["GO%3A0033755","sulfur oxygenase/reductase activity"],["NCBIfam%3ANF047630","sulfur oxygenase/reductase"]]},{"id":"GO:0044569","l":"[Ni-Fe] hydrogenase complex","na":1,"nb":4,"a":[["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["ComplexPortal%3ACPX-281","Hydrogenase-1 complex"],["ComplexPortal%3ACPX-282","Hydrogenase-2 complex"],["GO%3A0044569","[Ni-Fe] hydrogenase complex"],["NCBIfam%3ANF053600","membrane-bound hydrogenase complex subunit MbhI"]]},{"id":"GO:0045436","l":"lycopene beta cyclase activity","na":1,"nb":4,"a":[["morphology/orange_pigmented.html","orange pigmented"]],"b":[["RHEA%3A32219","all-trans-lycopene = gamma-carotene"],["GO%3A0045436","lycopene beta cyclase activity"],["NCBIfam%3ATIGR01789","lycopene beta-cyclase CrtY"],["NCBIfam%3ANF045687","lycopene beta cyclase"]]},{"id":"GO:0047154","l":"methylmalonyl-CoA carboxytransferase activity","na":1,"nb":4,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["EC%3A2.1.3.1","methylmalonyl-CoA carboxytransferase"],["RHEA%3A20764","(S)-methylmalonyl-CoA + pyruvate = propanoyl-CoA + oxaloacetate"],["GO%3A0047154","methylmalonyl-CoA carboxytransferase activity"],["proteintraitsmech%3ABIOLIP_MCA","MCA-binding site"]]},{"id":"GO:0050605","l":"superoxide reductase activity","na":1,"nb":4,"a":[["environment/microaerotolerant.html","microaerotolerant"]],"b":[["EC%3A1.15.1.2","superoxide reductase"],["RHEA%3A21324","reduced [rubredoxin] + superoxide + 2 H(+) = oxidized [rubredoxin] + H2O2"],["GO%3A0050605","superoxide reductase activity"],["MCSA%3A660","superoxide reductase"]]},{"id":"InterPro:IPR005936","l":"","na":1,"nb":4,"a":[["environment/temperature_optimum_mid4.html","temperature optimum mid4"]],"b":[["HAMAP%3AMF_01458","ATP-dependent zinc metalloprotease FtsH [ftsH]"],["Pfam%3APF06480","FtsH Extracellular"],["PROSITE%3APS00674","AAA-protein family signature"],["Pfam%3APF21232","Yme1-like, N-terminal"]]},{"id":"InterPro:IPR005977","l":"","na":1,"nb":4,"a":[["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["HAMAP%3AMF_00533","Nitrogenase iron protein [nifH]"],["PROSITE%3APS00746","NifH/frxC family signature 1"],["PROSITE%3APS00692","NifH/frxC family signature 2"]]},{"id":"InterPro:IPR051315","l":"","na":1,"nb":4,"a":[["physiology/chemotaxis.html","chemotaxis"]],"b":[["Pfam%3APF01584","CheW-like domain"],["Pfam%3APF09078","CheY binding"],["Pfam%3APF02895","Signal transducing histidine kinase, homodimeric domain"],["PANTHER%3APTHR43395","SENSOR HISTIDINE KINASE CHEA"]]},{"id":"METPO:1000620","l":"halophilic","na":1,"nb":4,"a":[["environment/halophilic.html","halophilic"]],"b":[["METPO%3A1000628","extremely halophilic"],["METPO%3A1000620","halophilic"],["METPO%3A1000623","moderately halophilic"],["METPO%3A1000625","slightly halophilic"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":1,"nb":4,"a":[["physiology/photoheterotrophic.html","photoheterotrophic"]],"b":[["TED%3AAF-A0A7W3UB61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W3UB61-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F4B3-F1-model_v4_TED01","TED novel fold AF-A0A0D7F4B3-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F6R4-F1-model_v4_TED01","TED novel fold AF-A0A0D7F6R4-F1-model_v4_TED01"],["TED%3AAF-A0A7W3YI15-F1-model_v4_TED02","TED novel fold AF-A0A7W3YI15-F1-model_v4_TED02"]]},{"id":"NCBITaxon:258594","l":"Rhodopseudomonas palustris CGA009","na":1,"nb":4,"a":[["physiology/photoorganoheterotrophic.html","photoorganoheterotrophic"]],"b":[["Pfam%3APF01322","Cytochrome C'"],["PROSITE%3APS00969","Antenna complexes beta subunits signature"],["PROSITE%3APS00936","Ribosomal protein L35 signature"],["PROSITE%3APS01181","Ribosomal protein S21 signature"]]},{"id":"NCBITaxon:2822231","l":"Phanerodontia chrysosporium","na":1,"nb":4,"a":[["metabolism/manganese_oxidation.html","manganese oxidation"]],"b":[["Pfam%3APF18637","Aldos-2-ulose dehydratase/isomerase (AUDH) Cupin domain"],["Pfam%3APF16010","Cytochrome domain of cellobiose dehydrogenase"],["PROSITE%3APS00623","GMC oxidoreductases signature 1"],["Pfam%3APF22301","Aldos-2-ulose dehydratase, beta-propeller domain"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":1,"nb":4,"a":[["ecology/plant_pathogen.html","plant pathogen"]],"b":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"],["TED%3AAF-A0A085UKV7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085UKV7-F1-model_v4_TED01"],["TED%3AAF-A0A4R6IU28-F1-model_v4_TED02","TED novel fold AF-A0A4R6IU28-F1-model_v4_TED02"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans Pd1222","na":1,"nb":4,"a":[["physiology/mixotrophic.html","mixotrophic"]],"b":[["Pfam%3APF27518","Heme exporter protein C"],["Pfam%3APF22039","Imidazolonepropionase-like composite domain, bacteria"],["PROSITE%3APS01181","Ribosomal protein S21 signature"],["Pfam%3APF02239","Cytochrome D1 heme domain"]]},{"id":"NCBITaxon:55601","l":"Vibrio anguillarum","na":1,"nb":4,"a":[["genomics/sspabcd_sspfgh_system.html","SspABCD-SspFGH system"]],"b":[["Pfam%3APF17327","Acyl homoserine lactone synthase"],["PROSITE%3APS00949","Autoinducer synthase family signature"],["TED%3AAF-A0A241NLV5-F1-model_v4_TED03","TED novel fold AF-A0A241NLV5-F1-model_v4_TED03"],["TED%3AAF-A0A290PUC4-F1-model_v4_TED02","TED novel fold AF-A0A290PUC4-F1-model_v4_TED02"]]},{"id":"UniProt:P00459","l":"","na":1,"nb":4,"a":[["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["PROSITE%3APS00746","NifH/frxC family signature 1"],["PROSITE%3APS00692","NifH/frxC family signature 2"],["MCSA%3A212","nitrogenase"]]},{"id":"UniProt:P0C2S5","l":"","na":1,"nb":4,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["EC%3A3.2.1.176","cellulose 1,4-beta-cellobiosidase (reducing end)"],["Pfam%3APF00404","Dockerin type I domain"],["PROSITE%3APS00448","Clostridium cellulosome enzymes repeated domain signature"],["Pfam%3APF02011","Glycosyl hydrolase family 48"]]},{"id":"UniProt:P16033","l":"","na":4,"nb":1,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["proteintraitsmech%3ABIOLIP_PHO","PHO-binding site"]]},{"id":"CHEBI:16170","l":"mercury(0)","na":1,"nb":3,"a":[["environment/mercury_tolerant.html","mercury tolerant"]],"b":[["EC%3A1.16.1.1","mercury(II) reductase"],["RHEA%3A23856","Hg + NADP(+) + H(+) = Hg(2+) + NADPH"],["MCSA%3A277","mercury(II) reductase"]]},{"id":"CHEBI:17203","l":"L-proline","na":1,"nb":3,"a":[["environment/non_halophilic.html","non halophilic"]],"b":[["MCSA%3A403","astacin"],["MCSA%3A379","Xaa-Pro aminopeptidase"],["proteintraitsmech%3ABIOLIP_PRO","PRO-binding site"]]},{"id":"CHEBI:17513","l":"","na":3,"nb":1,"a":[["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/fermentation.html","Fermentation"],["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"]],"b":[["MCSA%3A119","pyruvate:ferredoxin oxidoreducatse"]]},{"id":"CHEBI:49432","l":"","na":1,"nb":3,"a":[["environment/moderately_halophilic.html","moderately halophilic"]],"b":[["TCDB%3A2.A.15","The Betaine/Carnitine/Choline Transporter (BCCT) Family"],["TCDB%3A2.A.56","The Tripartite ATP-independent Periplasmic Transporter (TRAP-T) Family"],["proteintraitsmech%3ABIOLIP_6CS","6CS-binding site"]]},{"id":"CHEBI:50699","l":"oligosaccharide","na":1,"nb":3,"a":[["metabolism/biopolymer_degradation.html","biopolymer degradation"]],"b":[["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"]]},{"id":"CHEBI:72695","l":"","na":3,"nb":1,"a":[["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"],["physiology/heterotrophic.html","heterotrophic"]],"b":[["TCDB%3A1.A.24","The Gap Junction-forming Connexin (Connexin) Family"]]},{"id":"GO:0009505","l":"plant-type cell wall","na":1,"nb":3,"a":[["ecology/plant_pathogen.html","plant pathogen"]],"b":[["GO%3A0009505","plant-type cell wall"],["GO%3A0009530","primary cell wall"],["GO%3A0009531","secondary cell wall"]]},{"id":"GO:0016160","l":"amylase activity","na":1,"nb":3,"a":[["physiology/amylase_activity.html","amylase activity"]],"b":[["GO%3A0004556","alpha-amylase activity"],["GO%3A0016160","amylase activity"],["GO%3A0016161","beta-amylase activity"]]},{"id":"GO:0016690","l":"diarylpropane peroxidase activity","na":1,"nb":3,"a":[["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["EC%3A1.11.1.14","lignin peroxidase"],["RHEA%3A30271","2 (3,4-dimethoxyphenyl)methanol + H2O2 = 2 (3,4-dimethoxyphenyl)methanol radical + 2 H2O"],["GO%3A0016690","diarylpropane peroxidase activity"]]},{"id":"GO:0042763","l":"intracellular immature spore","na":1,"nb":3,"a":[["morphology/spore_forming.html","spore forming"]],"b":[["GO%3A0042764","ascospore-type prospore"],["GO%3A0042601","endospore-forming forespore"],["GO%3A0042763","intracellular immature spore"]]},{"id":"GO:0043158","l":"heterocyst development","na":1,"nb":3,"a":[["morphology/heterocyst.html","heterocyst"]],"b":[["GO%3A0043158","heterocyst development"],["NCBIfam%3ANF045514","heterocyst development glycosyltransferase HepC"],["NCBIfam%3ANF015533","Peptidase family S48"]]},{"id":"GO:0044297","l":"cell body","na":1,"nb":3,"a":[["morphology/spiral_shaped.html","spiral shaped"]],"b":[["GO%3A0044297","cell body"],["GO%3A0043025","neuronal cell body"],["GO%3A1990017","somatic portion of tanycyte"]]},{"id":"GO:0050137","l":"NADPH peroxidase activity","na":1,"nb":3,"a":[["environment/aerotolerant.html","aerotolerant"]],"b":[["EC%3A1.11.1.2","NADPH peroxidase"],["RHEA%3A15173","H2O2 + NADPH + H(+) = NADP(+) + 2 H2O"],["GO%3A0050137","NADPH peroxidase activity"]]},{"id":"GO:0102036","l":"methyltetrahydrofolate:corrinoid/iron-sulfur protein methyltransferase activity","na":1,"nb":3,"a":[["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"]],"b":[["EC%3A2.1.1.258","5-methyltetrahydrofolate:corrinoid/iron-sulfur protein Co-methyltransferase"],["RHEA%3A45200","methyl-Co(III)-[corrinoid Fe-S protein] + (6S)-5,6,7,8-tetrahydrofolate = Co(I)-[corrinoid Fe-S protein] + (6S)-5-methyl-5,6,7,8-tetrahydrofolate + H(+)"],["GO%3A0102036","methyltetrahydrofolate:corrinoid/iron-sulfur protein methyltransferase activity"]]},{"id":"InterPro:IPR005001","l":"","na":1,"nb":3,"a":[["physiology/stress_response.html","stress response"]],"b":[["Pfam%3APF17209","Hfq protein"],["HAMAP%3AMF_00436","RNA-binding protein Hfq [hfq]"],["PANTHER%3APTHR34772","RNA-BINDING PROTEIN HFQ"]]},{"id":"InterPro:IPR020823","l":"","na":1,"nb":3,"a":[["morphology/sarcina_arrangement.html","sarcina arrangement"]],"b":[["Pfam%3APF14450","Cell division protein FtsA"],["HAMAP%3AMF_02033","Cell division protein FtsA [ftsA]"],["Pfam%3APF11983","Cell division protein FtsA, C-terminal"]]},{"id":"InterPro:IPR052028","l":"","na":1,"nb":3,"a":[["physiology/persister_cell_formation.html","persister cell formation"]],"b":[["Pfam%3APF13657","HipA N-terminal domain"],["Pfam%3APF07804","HipA-like C-terminal domain"],["PANTHER%3APTHR37419","SERINE/THREONINE-PROTEIN KINASE TOXIN HIPA"]]},{"id":"InterPro:IPR052159","l":"","na":1,"nb":3,"a":[["physiology/natural_competence.html","natural competence"]],"b":[["Pfam%3APF13567","Domain of unknown function (DUF4131)"],["PANTHER%3APTHR30619","DNA INTERNALIZATION/COMPETENCE PROTEIN COMEC/REC2"],["Pfam%3APF03772","Competence protein"]]},{"id":"METPO:1000622","l":"halotolerant","na":3,"nb":1,"a":[["environment/halotolerant.html","halotolerant"],["environment/nacl_delta_low.html","NaCl delta low"],["environment/slightly_halophilic.html","slightly halophilic"]],"b":[["METPO%3A1000622","halotolerant"]]},{"id":"NCBITaxon:1639","l":"Listeria monocytogenes","na":1,"nb":3,"a":[["environment/psychrotolerant.html","psychrotolerant"]],"b":[["TED%3AAF-A0A6Z1JB74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6Z1JB74-F1-model_v4_TED01"],["TED%3AAF-A0A5Z1VYX2-F1-model_v4_TED01","TED novel fold AF-A0A5Z1VYX2-F1-model_v4_TED01"],["TED%3AAF-A0A823IT06-F1-model_v4_TED02","TED novel fold AF-A0A823IT06-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1665","l":"Arthrobacter globiformis","na":1,"nb":3,"a":[["morphology/gram_variable.html","gram variable"]],"b":[["Pfam%3APF21994","AGAO-like N2 domain"],["Pfam%3APF18835","Beta helix repeat of Inulin fructotransferase"],["TED%3AAF-A0A328HCX7-F1-model_v4_TED02","TED novel fold AF-A0A328HCX7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1708","l":"Cellulomonas fimi","na":1,"nb":3,"a":[["metabolism/biopolymer_degradation.html","biopolymer degradation"]],"b":[["Pfam%3APF00553","Cellulose binding domain"],["PROSITE%3APS00561","CBM2a (carbohydrate-binding type-2) domain signature"],["PROSITE%3APS00591","Glycosyl hydrolases family 10 (GH10) active site"]]},{"id":"NCBITaxon:1717","l":"Corynebacterium diphtheriae","na":1,"nb":3,"a":[["morphology/dumbbell_shaped.html","dumbbell shaped"]],"b":[["Pfam%3APF08051","Erythromycin resistance leader peptide"],["PROSITE%3APS01007","Transposases, Mutator family, signature"],["TED%3AAF-A0A811G0F8-F1-model_v4_TED05","TED novel fold AF-A0A811G0F8-F1-model_v4_TED05"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":1,"nb":3,"a":[["physiology/alkaline_phosphatase_activity.html","alkaline phosphatase activity"]],"b":[["Pfam%3APF03069","Acetamidase/Formamidase family"],["PROSITE%3APS00818","Dps protein family signature 1"],["Pfam%3APF13810","Domain of unknown function (DUF4185)"]]},{"id":"NCBITaxon:2242","l":"Halobacterium salinarum","na":3,"nb":1,"a":[["environment/extremely_halophilic.html","extremely halophilic"],["environment/halophilic.html","halophilic"],["morphology/intracellular_inclusion.html","intracellular inclusion"]],"b":[["Pfam%3APF07232","Putative rep protein (DUF1424)"]]},{"id":"NCBITaxon:2283","l":"Acidianus ambivalens","na":1,"nb":3,"a":[["metabolism/disproportionation.html","Disproportionation"]],"b":[["Pfam%3APF07680","TQO small subunit DoxA"],["Pfam%3APF04173","TQO small subunit DoxD"],["TED%3AAF-O57695-F1-model_v4_TED01","TED highly-symmetric fold AF-O57695-F1-model_v4_TED01"]]},{"id":"NCBITaxon:243233","l":"Methylococcus capsulatus Bath","na":1,"nb":3,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["Pfam%3APF17850","CysA C-terminal regulatory domain"],["Pfam%3APF02461","Ammonia monooxygenase"],["TED%3AAF-Q604F4-F1-model_v4_TED02","TED novel fold AF-Q604F4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:273121","l":"Wolinella succinogenes ATCC 29543","na":1,"nb":3,"a":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]],"b":[["Pfam%3APF26365","Apolipoprotein N-acyltransferase integral membrane domain"],["Pfam%3APF02335","Cytochrome c552"],["PROSITE%3APS00883","Nickel-dependent hydrogenases b-type cytochrome subunit signature 2"]]},{"id":"NCBITaxon:44001","l":"Caldicellulosiruptor saccharolyticus","na":1,"nb":3,"a":[["metabolism/xylan_degradation.html","xylan degradation"]],"b":[["Pfam%3APF12891","Glycoside hydrolase family 44"],["PROSITE%3APS01027","Glycosyl hydrolases family 39 active site"],["Pfam%3APF02011","Glycosyl hydrolase family 48"]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":1,"nb":3,"a":[["other/voges_proskauer_test_positive.html","Voges-Proskauer test positive"]],"b":[["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"],["PROSITE%3APS00896","LacY family proton/sugar symporters signature 1"],["PROSITE%3APS00897","LacY family proton/sugar symporters signature 2"]]},{"id":"NCBITaxon:584","l":"Proteus mirabilis","na":1,"nb":3,"a":[["morphology/swarming_motility.html","swarming motility"]],"b":[["Pfam%3APF05280","Flagellar transcriptional activator (FlhC)"],["TED%3AAF-A0A1Z1SXV6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z1SXV6-F1-model_v4_TED01"],["TED%3AAF-A0A7U1CMJ9-F1-model_v4_TED01","TED novel fold AF-A0A7U1CMJ9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":1,"nb":3,"a":[["morphology/polar_flagellation.html","polar flagellation"]],"b":[["Pfam%3APF04205","FMN-binding domain"],["Pfam%3APF10795","Protein of unknown function (DUF2607)"],["TED%3AAF-A0A1W6U0N2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W6U0N2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:94122","l":"Shewanella sp. ANA-3","na":1,"nb":3,"a":[["metabolism/arsenate_respiration.html","arsenate respiration"]],"b":[["Pfam%3APF03883","Peroxide stress protein YaaA"],["Pfam%3APF04751","Dual-action ribosomal maturation protein DarP"],["Pfam%3APF04356","Protein of unknown function (DUF489)"]]},{"id":"UniProt:P0AAI3","l":"","na":1,"nb":3,"a":[["physiology/heat_shock_response.html","heat shock response"]],"b":[["ComplexPortal%3ACPX-5046","FtsH-HflKC complex"],["NCBIfam%3ANF008004","ATP-dependent zinc metalloprotease FtsH"],["CATH%3A3.30.720.210","CATH homologous superfamily 3.30.720.210"]]},{"id":"UniProt:P0C0Y9","l":"","na":1,"nb":3,"a":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"]],"b":[["proteintraitsmech%3ABIOLIP_BPH","BPH-binding site"],["proteintraitsmech%3ABIOLIP_SPO","SPO-binding site"],["proteintraitsmech%3ABIOLIP_U10","U10-binding site"]]},{"id":"UniProt:P0CJ63","l":"","na":1,"nb":3,"a":[["physiology/quorum_sensing.html","quorum sensing"]],"b":[["EC%3A3.1.1.81","quorum-quenching N-acyl-homoserine lactonase"],["RHEA%3A22576","an N-acyl-L-homoserine lactone + H2O = an N-acyl-L-homoserine + H(+)"],["proteintraitsmech%3ABIOLIP_C6L","C6L-binding site"]]},{"id":"UniProt:P41020","l":"","na":1,"nb":3,"a":[["physiology/urease_activity.html","urease activity"]],"b":[["PROSITE%3APS01120","Urease nickel ligands signature"],["PROSITE%3APS00145","Urease active site"],["proteintraitsmech%3ABIOLIP_HQE","HQE-binding site"]]},{"id":"UniProt:Q8GBW6","l":"","na":1,"nb":3,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["EC%3A2.1.3.1","methylmalonyl-CoA carboxytransferase"],["RHEA%3A20764","(S)-methylmalonyl-CoA + pyruvate = propanoyl-CoA + oxaloacetate"],["proteintraitsmech%3ABIOLIP_MCA","MCA-binding site"]]},{"id":"CHEBI:15350","l":"","na":2,"nb":1,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["proteintraitsmech%3ABIOLIP_UVW","UVW-binding site"]]},{"id":"CHEBI:15539","l":"","na":2,"nb":1,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"],["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"]],"b":[["proteintraitsmech%3ABIOLIP_1VU","1VU-binding site"]]},{"id":"CHEBI:16136","l":"hydrogen sulfide","na":2,"nb":1,"a":[["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/photolithotrophic.html","photolithotrophic"]],"b":[["MCSA%3A398","sulfite reductase (NADPH)"]]},{"id":"CHEBI:16761","l":"","na":1,"nb":2,"a":[["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16761","requires ADP"],["proteintraitsmech%3ABIOLIP_ADP","ADP-binding site"]]},{"id":"CHEBI:26666","l":"","na":1,"nb":2,"a":[["physiology/chemoheterotrophic.html","chemoheterotrophic"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.73","The Short Chain Fatty Acid Uptake (AtoE) Family"]]},{"id":"CHEBI:28265","l":"","na":1,"nb":2,"a":[["metabolism/methanogenesis.html","Methanogenesis"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_28265","requires coenzyme F430"],["proteintraitsmech%3ABIOLIP_F43","F43-binding site"]]},{"id":"CHEBI:49537","l":"","na":2,"nb":1,"a":[["morphology/motility.html","motility"],["morphology/vibrio_shaped.html","vibrio shaped"]],"b":[["proteintraitsmech%3ABIOLIP_C2E","C2E-binding site"]]},{"id":"GO:0005983","l":"starch catabolic process","na":1,"nb":2,"a":[["metabolism/starch_degradation.html","starch degradation"]],"b":[["GO%3A0005983","starch catabolic process"],["NCBIfam%3ATIGR02103","pullulanase-type alpha-1,6-glucosidase"]]},{"id":"GO:0009321","l":"alkyl hydroperoxide reductase complex","na":1,"nb":2,"a":[["environment/microaerophilic.html","microaerophilic"]],"b":[["ComplexPortal%3ACPX-4862","Alkyl hydroperoxide reductase complex"],["GO%3A0009321","alkyl hydroperoxide reductase complex"]]},{"id":"GO:0009594","l":"detection of nutrient","na":1,"nb":2,"a":[["physiology/nutrient_adaptation.html","nutrient adaptation"]],"b":[["GO%3A0031318","detection of folic acid"],["GO%3A0009594","detection of nutrient"]]},{"id":"GO:0015250","l":"water channel activity","na":1,"nb":2,"a":[["environment/stenohaline.html","stenohaline"]],"b":[["GO%3A0015250","water channel activity"],["NCBIfam%3ANF003838","aquaporin Z"]]},{"id":"GO:0016231","l":"beta-N-acetylglucosaminidase activity","na":1,"nb":2,"a":[["metabolism/chitinolysis.html","chitinolysis"]],"b":[["GO%3A0016231","beta-N-acetylglucosaminidase activity"],["NCBIfam%3ANF041654","beta-N-acetylglucosaminidase"]]},{"id":"GO:0019332","l":"aerobic respiration, using nitrite as electron donor","na":2,"nb":1,"a":[["metabolism/complete_ammonia_oxidation.html","complete ammonia oxidation"],["metabolism/nitrification.html","nitrification"]],"b":[["GO%3A0019332","aerobic respiration, using nitrite as electron donor"]]},{"id":"GO:0044674","l":"methyl coenzyme M reductase complex","na":2,"nb":1,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/methanogenesis.html","Methanogenesis"]],"b":[["GO%3A0044674","methyl coenzyme M reductase complex"]]},{"id":"GO:0046358","l":"butyrate biosynthetic process","na":2,"nb":1,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"]],"b":[["GO%3A0046358","butyrate biosynthetic process"]]},{"id":"GO:0102252","l":"cellulose 1,4-beta-cellobiosidase activity (reducing end)","na":1,"nb":2,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["EC%3A3.2.1.176","cellulose 1,4-beta-cellobiosidase (reducing end)"],["GO%3A0102252","cellulose 1,4-beta-cellobiosidase activity (reducing end)"]]},{"id":"InterPro:IPR002102","l":"Cellulosome anchoring protein, cohesin domain","na":1,"nb":2,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["InterPro%3AIPR002102","Cellulosome anchoring protein, cohesin domain"],["Pfam%3APF00963","Cohesin domain"]]},{"id":"InterPro:IPR004596","l":"","na":2,"nb":1,"a":[["morphology/cell_length_large.html","cell length large"],["morphology/filament_shaped.html","filament shaped"]],"b":[["Pfam%3APF03846","Cell division inhibitor SulA"]]},{"id":"InterPro:IPR004753","l":"","na":1,"nb":2,"a":[["morphology/tailed_shaped.html","tailed shaped"]],"b":[["HAMAP%3AMF_02207","Cell shape-determining protein MreB [mreB]"],["PRINTS%3APR01652","Bacterial cell shape determinant MreB/Mbl protein signature"]]},{"id":"InterPro:IPR023028","l":"","na":1,"nb":2,"a":[["physiology/chemoheterotrophic.html","chemoheterotrophic"]],"b":[["HAMAP%3AMF_00196","Mannitol-1-phosphate 5-dehydrogenase [mtlD]"],["PROSITE%3APS00974","Mannitol dehydrogenases signature"]]},{"id":"InterPro:IPR039315","l":"","na":1,"nb":2,"a":[["physiology/chemotaxis.html","chemotaxis"]],"b":[["Pfam%3APF01584","CheW-like domain"],["PANTHER%3APTHR22617","CHEMOTAXIS SENSOR HISTIDINE KINASE-RELATED"]]},{"id":"METPO:1000604","l":"microaerophilic","na":2,"nb":1,"a":[["environment/microaerophilic.html","microaerophilic"],["environment/oxygen_preference.html","oxygen preference"]],"b":[["METPO%3A1000604","microaerophilic"]]},{"id":"METPO:1000609","l":"aerotolerant","na":2,"nb":1,"a":[["environment/aerotolerant.html","aerotolerant"],["environment/oxygen_preference.html","oxygen preference"]],"b":[["METPO%3A1000609","aerotolerant"]]},{"id":"METPO:1000612","l":"facultative oxygen preference","na":2,"nb":1,"a":[["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/oxygen_preference.html","oxygen preference"]],"b":[["METPO%3A1000612","facultative oxygen preference"]]},{"id":"METPO:1000617","l":"hyperthermophilic","na":1,"nb":2,"a":[["environment/hyperthermophilic.html","hyperthermophilic"]],"b":[["METPO%3A1000721","extreme hyperthermophilic"],["METPO%3A1000617","hyperthermophilic"]]},{"id":"METPO:1000632","l":"autotrophic","na":2,"nb":1,"a":[["physiology/autotrophic.html","autotrophic"],["physiology/trophic_type.html","trophic type"]],"b":[["METPO%3A1000632","autotrophic"]]},{"id":"METPO:1000641","l":"chemotrophic","na":2,"nb":1,"a":[["physiology/chemotrophic.html","chemotrophic"],["physiology/trophic_type.html","trophic type"]],"b":[["METPO%3A1000641","chemotrophic"]]},{"id":"METPO:1000642","l":"copiotrophic","na":2,"nb":1,"a":[["physiology/copiotrophic.html","copiotrophic"],["physiology/nutrient_adaptation.html","nutrient adaptation"]],"b":[["METPO%3A1000642","copiotrophic"]]},{"id":"METPO:1000644","l":"heterotrophic","na":2,"nb":1,"a":[["physiology/heterotrophic.html","heterotrophic"],["physiology/trophic_type.html","trophic type"]],"b":[["METPO%3A1000644","heterotrophic"]]},{"id":"METPO:1000654","l":"oligotrophic","na":2,"nb":1,"a":[["physiology/nutrient_adaptation.html","nutrient adaptation"],["physiology/oligotrophic.html","oligotrophic"]],"b":[["METPO%3A1000654","oligotrophic"]]},{"id":"METPO:1000657","l":"photoheterotrophic","na":2,"nb":1,"a":[["physiology/aerobic_anoxygenic_phototrophy.html","aerobic anoxygenic phototrophy"],["physiology/photoheterotrophic.html","photoheterotrophic"]],"b":[["METPO%3A1000657","photoheterotrophic"]]},{"id":"METPO:1000660","l":"phototrophic","na":2,"nb":1,"a":[["physiology/phototrophic.html","phototrophic"],["physiology/trophic_type.html","trophic type"]],"b":[["METPO%3A1000660","phototrophic"]]},{"id":"METPO:1000804","l":"Substrate-level phosphorylation","na":2,"nb":1,"a":[["metabolism/fermentation.html","Fermentation"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["METPO%3A1000804","Substrate-level phosphorylation"]]},{"id":"METPO:1003003","l":"acidophilic","na":1,"nb":2,"a":[["environment/acidophilic.html","acidophilic"]],"b":[["METPO%3A1003003","acidophilic"],["METPO%3A1003006","obligately acidophilic"]]},{"id":"METPO:1003008","l":"acidotolerant","na":2,"nb":1,"a":[["environment/acidotolerant.html","acidotolerant"],["environment/ph_delta.html","pH delta"]],"b":[["METPO%3A1003008","acidotolerant"]]},{"id":"METPO:1005001","l":"nitrification","na":2,"nb":1,"a":[["metabolism/complete_ammonia_oxidation.html","complete ammonia oxidation"],["metabolism/nitrification.html","nitrification"]],"b":[["METPO%3A1005001","nitrification"]]},{"id":"NCBITaxon:1032480","l":"Microlunatus phosphovorus NM-1","na":1,"nb":2,"a":[["morphology/polyphosphate_granule.html","polyphosphate granule"]],"b":[["TED%3AAF-F5XIG6-F1-model_v4_TED02","TED novel fold AF-F5XIG6-F1-model_v4_TED02"],["TED%3AAF-F5XQ24-F1-model_v4_TED04","TED novel fold AF-F5XQ24-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":1,"nb":2,"a":[["physiology/urease_activity.html","urease activity"]],"b":[["PROSITE%3APS01120","Urease nickel ligands signature"],["PROSITE%3APS00145","Urease active site"]]},{"id":"NCBITaxon:2190","l":"Methanocaldococcus jannaschii","na":2,"nb":1,"a":[["metabolism/methanogenesis.html","Methanogenesis"],["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["TED%3AAF-A0A832WL57-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A832WL57-F1-model_v4_TED02"]]},{"id":"NCBITaxon:240292","l":"Trichormus variabilis ATCC 29413","na":1,"nb":2,"a":[["morphology/akinete.html","akinete"]],"b":[["Pfam%3APF18921","Cyanophycin synthase-like N-terminal domain"],["Pfam%3APF13619","KTSC domain"]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":1,"nb":2,"a":[["physiology/alpha_fucosidase_activity.html","alpha-fucosidase activity"]],"b":[["Pfam%3APF21252","Glycosyl hydrolase 109, C-terminal domain"],["TED%3AAF-A0A3P1YJQ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3P1YJQ6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28132","l":"Prevotella melaninogenica","na":1,"nb":2,"a":[["morphology/black_pigmented.html","black pigmented"]],"b":[["TED%3AAF-A0A8B2A6Y8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B2A6Y8-F1-model_v4_TED01"],["TED%3AAF-A0A250KF16-F1-model_v4_TED03","TED novel fold AF-A0A250KF16-F1-model_v4_TED03"]]},{"id":"NCBITaxon:292415","l":"Thiobacillus denitrificans ATCC 25259","na":2,"nb":1,"a":[["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/chemoautotrophic.html","chemoautotrophic"]],"b":[["Pfam%3APF06804","Outer membrane protein assembly factor BamC-like C-terminal domain"]]},{"id":"NCBITaxon:317655","l":"Sphingopyxis alaskensis RB2256","na":2,"nb":1,"a":[["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"]],"b":[["Pfam%3APF10755","Protein of unknown function (DUF2585)"]]},{"id":"NCBITaxon:319224","l":"Shewanella putrefaciens CN-32","na":1,"nb":2,"a":[["morphology/flagellar_arrangement.html","flagellar arrangement"]],"b":[["Pfam%3APF17810","Arginine decarboxylase helical bundle domain"],["Pfam%3APF17944","Arginine decarboxylase C-terminal helical extension"]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":1,"nb":2,"a":[["morphology/yellow_pigmented.html","yellow pigmented"]],"b":[["TED%3AAF-A0A6N3WS12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N3WS12-F1-model_v4_TED01"],["TED%3AAF-A0A3R7GIU2-F1-model_v4_TED02","TED novel fold AF-A0A3R7GIU2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:408","l":"Methylorubrum extorquens","na":2,"nb":1,"a":[["morphology/pink_pigmented.html","pink pigmented"],["physiology/methylotrophic.html","methylotrophic"]],"b":[["Pfam%3APF04476","4-HFC-P synthase"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":1,"nb":2,"a":[["morphology/lateral_flagellation.html","lateral flagellation"]],"b":[["TED%3AAF-B5UAE0-F1-model_v4_TED01","TED highly-symmetric fold AF-B5UAE0-F1-model_v4_TED01"],["TED%3AAF-A0A3E1IF45-F1-model_v4_TED01","TED novel fold AF-A0A3E1IF45-F1-model_v4_TED01"]]},{"id":"NCBITaxon:69","l":"Lysobacter enzymogenes","na":1,"nb":2,"a":[["genomics/gasdermin_system.html","GasderMIN system"]],"b":[["TED%3AAF-A0A1J1E6A8-F1-model_v4_TED02","TED novel fold AF-A0A1J1E6A8-F1-model_v4_TED02"],["TED%3AAF-A0A7T8MLU2-F1-model_v4_TED03","TED novel fold AF-A0A7T8MLU2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:79885","l":"Alkalihalophilus pseudofirmus","na":2,"nb":1,"a":[["environment/alkalotolerant.html","alkalotolerant"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"]],"b":[["TED%3AAF-A0A1Q8TV17-F1-model_v4_TED02","TED novel fold AF-A0A1Q8TV17-F1-model_v4_TED02"]]},{"id":"NCBITaxon:913088","l":"Escherichia coli TW11681","na":1,"nb":2,"a":[["genomics/cbass_system.html","CBASS system"]],"b":[["Pfam%3APF21713","Cyclic GMP-AMP synthase, C-terminal domain"],["Pfam%3APF21654","Cyclic GMP-AMP synthase DncV-like, nucleotidyltransferase domain"]]},{"id":"UniProt:G1UBD1","l":"","na":1,"nb":2,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["EC%3A1.14.18.3","methane monooxygenase (particulate)"],["RHEA%3A30355","methane + a quinol + O2 = methanol + a quinone + H2O"]]},{"id":"UniProt:O52683","l":"","na":1,"nb":2,"a":[["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"]],"b":[["EC%3A1.12.1.4","hydrogenase (NAD(+), ferredoxin)"],["RHEA%3A30279","2 H2 + 2 oxidized [2Fe-2S]-[ferredoxin] + NAD(+) = 2 reduced [2Fe-2S]-[ferredoxin] + NADH + 3 H(+)"]]},{"id":"UniProt:P06278","l":"","na":1,"nb":2,"a":[["metabolism/starch_degradation.html","starch degradation"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["proteintraitsmech%3ABIOLIP_NA","NA-binding site"]]},{"id":"UniProt:P07254","l":"","na":1,"nb":2,"a":[["metabolism/chitinolysis.html","chitinolysis"]],"b":[["MCSA%3A478","chitinase (GH18, Class II)"],["proteintraitsmech%3ABIOLIP_AMI","AMI-binding site"]]},{"id":"UniProt:P0C916","l":"","na":1,"nb":2,"a":[["physiology/chemolithoautotrophic.html","chemolithoautotrophic"]],"b":[["EC%3A4.1.1.39","ribulose-bisphosphate carboxylase"],["RHEA%3A23124","2 (2R)-3-phosphoglycerate + 2 H(+) = D-ribulose 1,5-bisphosphate + CO2 + H2O"]]},{"id":"UniProt:P12747","l":"","na":2,"nb":1,"a":[["physiology/bioluminescence.html","bioluminescence"],["physiology/quorum_sensing.html","quorum sensing"]],"b":[["PROSITE%3APS00949","Autoinducer synthase family signature"]]},{"id":"UniProt:P16027","l":"","na":1,"nb":2,"a":[["physiology/methylotrophic.html","methylotrophic"]],"b":[["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["PROSITE%3APS00363","Bacterial quinoprotein dehydrogenases signature 1"]]},{"id":"UniProt:P29082","l":"","na":1,"nb":2,"a":[["metabolism/disproportionation.html","Disproportionation"]],"b":[["EC%3A1.13.11.55","sulfur oxygenase/reductase"],["RHEA%3A13957","4 sulfur + O2 + 4 H2O = 2 hydrogen sulfide + 2 sulfite + 6 H(+)"]]},{"id":"UniProt:P31891","l":"","na":1,"nb":2,"a":[["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["proteintraitsmech%3ABIOLIP_NFV","NFV-binding site"],["proteintraitsmech%3ABIOLIP_S3F","S3F-binding site"]]},{"id":"UniProt:P31896","l":"","na":1,"nb":2,"a":[["physiology/carboxydotrophic.html","carboxydotrophic"]],"b":[["proteintraitsmech%3ABIOLIP_RQM","RQM-binding site"],["proteintraitsmech%3AMETALPDB_NI_PENTANUCLEAR","pentanuclear nickel site"]]},{"id":"UniProt:P45574","l":"","na":1,"nb":2,"a":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["proteintraitsmech%3ABIOLIP_SH0","SH0-binding site"],["proteintraitsmech%3ABIOLIP_SRM","SRM-binding site"]]},{"id":"UniProt:Q02567","l":"","na":1,"nb":2,"a":[["metabolism/manganese_oxidation.html","manganese oxidation"]],"b":[["EC%3A1.11.1.13","manganese peroxidase"],["RHEA%3A22776","2 Mn(2+) + H2O2 + 2 H(+) = 2 Mn(3+) + 2 H2O"]]},{"id":"UniProt:Q9S1E5","l":"","na":1,"nb":2,"a":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]],"b":[["Pfam%3APF02335","Cytochrome c552"],["proteintraitsmech%3AMETALPDB_Y_TRINUCLEAR","trinuclear yttrium site"]]},{"id":"CHEBI:16412","l":"","na":1,"nb":1,"a":[["morphology/gram_negative.html","gram negative"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:17794","l":"","na":1,"nb":1,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"]],"b":[["proteintraitsmech%3ABIOLIP_3PG","3PG-binding site"]]},{"id":"CHEBI:193595","l":"","na":1,"nb":1,"a":[["environment/hyperthermophilic.html","hyperthermophilic"]],"b":[["RHEA%3A74675","archaeol + AH2 + 2 S-adenosyl-L-methionine = macrocyclic archaeol + 2 5'-deoxyadenosine + 2 L-methionine + A + 2 H(+)"]]},{"id":"CHEBI:23357","l":"","na":1,"nb":1,"a":[["upper/enzyme.html","enzyme"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_23357","cofactor cofactor class"]]},{"id":"CHEBI:25105","l":"","na":1,"nb":1,"a":[["physiology/antibiotic_resistance.html","antibiotic resistance"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:26710","l":"sodium chloride","na":1,"nb":1,"a":[["environment/halophilic.html","halophilic"]],"b":[["TCDB%3A2.A.30","The Cation-Chloride Cotransporter (CCC) Family"]]},{"id":"CHEBI:29125","l":"arsenate(3-)","na":1,"nb":1,"a":[["environment/arsenic_tolerant.html","arsenic tolerant"]],"b":[["proteintraitsmech%3ABIOLIP_ART","ART-binding site"]]},{"id":"CHEBI:35819","l":"","na":1,"nb":1,"a":[["environment/temperature_optimum_mid1.html","temperature optimum mid1"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:41688","l":"crystal violet","na":1,"nb":1,"a":[["morphology/gram_stain.html","gram stain"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:44747","l":"","na":1,"nb":1,"a":[["morphology/brown_pigmented.html","brown pigmented"]],"b":[["proteintraitsmech%3ABIOLIP_OMD","OMD-binding site"]]},{"id":"CHEBI:46837","l":"","na":1,"nb":1,"a":[["morphology/spore_forming.html","spore forming"]],"b":[["proteintraitsmech%3ABIOLIP_PDC","PDC-binding site"]]},{"id":"GO:0002047","l":"phenazine biosynthetic process","na":1,"nb":1,"a":[["morphology/green_pigmented.html","green pigmented"]],"b":[["GO%3A0002047","phenazine biosynthetic process"]]},{"id":"GO:0009420","l":"bacterial-type flagellum filament","na":1,"nb":1,"a":[["morphology/flagellated.html","flagellated"]],"b":[["GO%3A0009420","bacterial-type flagellum filament"]]},{"id":"GO:0015050","l":"methane monooxygenase complex","na":1,"nb":1,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["GO%3A0015050","methane monooxygenase complex"]]},{"id":"GO:0016218","l":"polyketide synthase activity","na":1,"nb":1,"a":[["morphology/black_pigmented.html","black pigmented"]],"b":[["GO%3A0016218","polyketide synthase activity"]]},{"id":"GO:0019643","l":"reductive tricarboxylic acid cycle","na":1,"nb":1,"a":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"]],"b":[["GO%3A0019643","reductive tricarboxylic acid cycle"]]},{"id":"GO:0019655","l":"pyruvate fermentation to ethanol","na":1,"nb":1,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"]],"b":[["GO%3A0019655","pyruvate fermentation to ethanol"]]},{"id":"GO:0033172","l":"gas vesicle shell","na":1,"nb":1,"a":[["morphology/gas_vesicle.html","gas vesicle"]],"b":[["GO%3A0033172","gas vesicle shell"]]},{"id":"GO:0033355","l":"ascorbate glutathione cycle","na":1,"nb":1,"a":[["environment/aerotolerant.html","aerotolerant"]],"b":[["GO%3A0033355","ascorbate glutathione cycle"]]},{"id":"GO:0042603","l":"capsule","na":1,"nb":1,"a":[["morphology/capsule.html","capsule"]],"b":[["GO%3A0042603","capsule"]]},{"id":"GO:0043263","l":"cellulosome","na":1,"nb":1,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["GO%3A0043263","cellulosome"]]},{"id":"GO:0098689","l":"latency-replication decision","na":1,"nb":1,"a":[["genomics/prophage.html","prophage"]],"b":[["GO%3A0098689","latency-replication decision"]]},{"id":"GO:0140649","l":"symbiont-mediated cell-to-cell migration by invasive hypha","na":1,"nb":1,"a":[["ecology/plant_pathogen.html","plant pathogen"]],"b":[["GO%3A0140649","symbiont-mediated cell-to-cell migration by invasive hypha"]]},{"id":"GO:1901177","l":"lycopene biosynthetic process","na":1,"nb":1,"a":[["morphology/yellow_pigmented.html","yellow pigmented"]],"b":[["GO%3A1901177","lycopene biosynthetic process"]]},{"id":"GO:1901812","l":"beta-carotene biosynthetic process","na":1,"nb":1,"a":[["morphology/pigmentation.html","pigmentation"]],"b":[["GO%3A1901812","beta-carotene biosynthetic process"]]},{"id":"InterPro:IPR000067","l":"","na":1,"nb":1,"a":[["morphology/lophotrichous.html","lophotrichous"]],"b":[["PRINTS%3APR01009","Flagellar M-ring protein signature"]]},{"id":"InterPro:IPR002798","l":"","na":1,"nb":1,"a":[["morphology/spore_forming.html","spore forming"]],"b":[["Pfam%3APF01944","Stage II sporulation protein M"]]},{"id":"InterPro:IPR007439","l":"","na":1,"nb":1,"a":[["physiology/chemotaxis.html","chemotaxis"]],"b":[["Pfam%3APF04344","Chemotaxis phosphatase, CheZ"]]},{"id":"InterPro:IPR011895","l":"","na":1,"nb":1,"a":[["metabolism/fermentation.html","Fermentation"]],"b":[["Pfam%3APF10371","Domain of unknown function"]]},{"id":"InterPro:IPR012609","l":"","na":1,"nb":1,"a":[["morphology/spore_shaped.html","spore shaped"]],"b":[["Pfam%3APF08183","Stage V sporulation protein family"]]},{"id":"InterPro:IPR018901","l":"","na":1,"nb":1,"a":[["morphology/spore_shaped.html","spore shaped"]],"b":[["Pfam%3APF10628","Outer spore coat protein E (CotE)"]]},{"id":"InterPro:IPR030858","l":"","na":1,"nb":1,"a":[["morphology/ovoid_shaped.html","ovoid shaped"]],"b":[["HAMAP%3AMF_01941","Mid-cell-anchored protein Z [mapZ]"]]},{"id":"InterPro:IPR047939","l":"","na":1,"nb":1,"a":[["genomics/brex_system.html","BREX system"]],"b":[["Pfam%3APF07669","Eco57I restriction-modification methylase"]]},{"id":"InterPro:IPR048240","l":"","na":1,"nb":1,"a":[["morphology/filament_shaped.html","filament shaped"]],"b":[["Pfam%3APF28068","Polarized growth protein Scy"]]},{"id":"InterPro:IPR052364","l":"","na":1,"nb":1,"a":[["environment/aerotolerant.html","aerotolerant"]],"b":[["PANTHER%3APTHR43865","RUBRERYTHRIN-RELATED"]]},{"id":"METPO:1000605","l":"facultatively anaerobic","na":1,"nb":1,"a":[["environment/facultatively_anaerobic.html","facultatively anaerobic"]],"b":[["METPO%3A1000605","facultatively anaerobic"]]},{"id":"METPO:1000606","l":"obligately aerobic","na":1,"nb":1,"a":[["environment/obligately_aerobic.html","obligately aerobic"]],"b":[["METPO%3A1000606","obligately aerobic"]]},{"id":"METPO:1000608","l":"facultatively aerobic","na":1,"nb":1,"a":[["environment/facultatively_aerobic.html","facultatively aerobic"]],"b":[["METPO%3A1000608","facultatively aerobic"]]},{"id":"METPO:1000610","l":"microaerotolerant","na":1,"nb":1,"a":[["environment/microaerotolerant.html","microaerotolerant"]],"b":[["METPO%3A1000610","microaerotolerant"]]},{"id":"METPO:1000611","l":"strictly anaerobic","na":1,"nb":1,"a":[["environment/strictly_anaerobic.html","strictly anaerobic"]],"b":[["METPO%3A1000611","strictly anaerobic"]]},{"id":"METPO:1000614","l":"psychrophilic","na":1,"nb":1,"a":[["environment/psychrophilic.html","psychrophilic"]],"b":[["METPO%3A1000614","psychrophilic"]]},{"id":"METPO:1000615","l":"mesophilic","na":1,"nb":1,"a":[["environment/mesophilic.html","mesophilic"]],"b":[["METPO%3A1000615","mesophilic"]]},{"id":"METPO:1000616","l":"thermophilic","na":1,"nb":1,"a":[["environment/thermophilic.html","thermophilic"]],"b":[["METPO%3A1000616","thermophilic"]]},{"id":"METPO:1000618","l":"psychrotolerant","na":1,"nb":1,"a":[["environment/psychrotolerant.html","psychrotolerant"]],"b":[["METPO%3A1000618","psychrotolerant"]]},{"id":"METPO:1000619","l":"thermotolerant","na":1,"nb":1,"a":[["environment/thermotolerant.html","thermotolerant"]],"b":[["METPO%3A1000619","thermotolerant"]]},{"id":"METPO:1000621","l":"haloalkaliphilic","na":1,"nb":1,"a":[["environment/haloalkaliphilic.html","haloalkaliphilic"]],"b":[["METPO%3A1000621","haloalkaliphilic"]]},{"id":"METPO:1000623","l":"moderately halophilic","na":1,"nb":1,"a":[["environment/moderately_halophilic.html","moderately halophilic"]],"b":[["METPO%3A1000623","moderately halophilic"]]},{"id":"METPO:1000624","l":"non halophilic","na":1,"nb":1,"a":[["environment/non_halophilic.html","non halophilic"]],"b":[["METPO%3A1000624","non halophilic"]]},{"id":"METPO:1000625","l":"slightly halophilic","na":1,"nb":1,"a":[["environment/slightly_halophilic.html","slightly halophilic"]],"b":[["METPO%3A1000625","slightly halophilic"]]},{"id":"METPO:1000626","l":"stenohaline","na":1,"nb":1,"a":[["environment/stenohaline.html","stenohaline"]],"b":[["METPO%3A1000626","stenohaline"]]},{"id":"METPO:1000627","l":"euryhaline","na":1,"nb":1,"a":[["environment/euryhaline.html","euryhaline"]],"b":[["METPO%3A1000627","euryhaline"]]},{"id":"METPO:1000628","l":"extremely halophilic","na":1,"nb":1,"a":[["environment/extremely_halophilic.html","extremely halophilic"]],"b":[["METPO%3A1000628","extremely halophilic"]]},{"id":"METPO:1000633","l":"carboxydotrophic","na":1,"nb":1,"a":[["physiology/carboxydotrophic.html","carboxydotrophic"]],"b":[["METPO%3A1000633","carboxydotrophic"]]},{"id":"METPO:1000634","l":"chemoautolithotrophic","na":1,"nb":1,"a":[["physiology/chemoautolithotrophic.html","chemoautolithotrophic"]],"b":[["METPO%3A1000634","chemoautolithotrophic"]]},{"id":"METPO:1000635","l":"chemoautotrophic","na":1,"nb":1,"a":[["physiology/chemoautotrophic.html","chemoautotrophic"]],"b":[["METPO%3A1000635","chemoautotrophic"]]},{"id":"METPO:1000636","l":"chemoheterotrophic","na":1,"nb":1,"a":[["physiology/chemoheterotrophic.html","chemoheterotrophic"]],"b":[["METPO%3A1000636","chemoheterotrophic"]]},{"id":"METPO:1000637","l":"chemolithoautotrophic","na":1,"nb":1,"a":[["physiology/chemolithoautotrophic.html","chemolithoautotrophic"]],"b":[["METPO%3A1000637","chemolithoautotrophic"]]},{"id":"METPO:1000638","l":"chemolithoheterotrophic","na":1,"nb":1,"a":[["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"]],"b":[["METPO%3A1000638","chemolithoheterotrophic"]]},{"id":"METPO:1000639","l":"chemolithotrophic","na":1,"nb":1,"a":[["physiology/chemolithotrophic.html","chemolithotrophic"]],"b":[["METPO%3A1000639","chemolithotrophic"]]},{"id":"METPO:1000640","l":"chemoorganoheterotrophic","na":1,"nb":1,"a":[["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"]],"b":[["METPO%3A1000640","chemoorganoheterotrophic"]]},{"id":"METPO:1000646","l":"hydrogenotrophic","na":1,"nb":1,"a":[["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["METPO%3A1000646","hydrogenotrophic"]]},{"id":"METPO:1000647","l":"lithoautotrophic","na":1,"nb":1,"a":[["physiology/lithoautotrophic.html","lithoautotrophic"]],"b":[["METPO%3A1000647","lithoautotrophic"]]},{"id":"METPO:1000648","l":"lithoheterotrophic","na":1,"nb":1,"a":[["physiology/lithoheterotrophic.html","lithoheterotrophic"]],"b":[["METPO%3A1000648","lithoheterotrophic"]]},{"id":"METPO:1000649","l":"lithotrophic","na":1,"nb":1,"a":[["physiology/lithotrophic.html","lithotrophic"]],"b":[["METPO%3A1000649","lithotrophic"]]},{"id":"METPO:1000650","l":"methanotrophic","na":1,"nb":1,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["METPO%3A1000650","methanotrophic"]]},{"id":"METPO:1000651","l":"methylotrophic","na":1,"nb":1,"a":[["physiology/methylotrophic.html","methylotrophic"]],"b":[["METPO%3A1000651","methylotrophic"]]},{"id":"METPO:1000652","l":"mixotrophic","na":1,"nb":1,"a":[["physiology/mixotrophic.html","mixotrophic"]],"b":[["METPO%3A1000652","mixotrophic"]]},{"id":"METPO:1000655","l":"organotrophic","na":1,"nb":1,"a":[["physiology/organotrophic.html","organotrophic"]],"b":[["METPO%3A1000655","organotrophic"]]},{"id":"METPO:1000656","l":"photoautotrophic","na":1,"nb":1,"a":[["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["METPO%3A1000656","photoautotrophic"]]},{"id":"METPO:1000658","l":"photolithotrophic","na":1,"nb":1,"a":[["physiology/photolithotrophic.html","photolithotrophic"]],"b":[["METPO%3A1000658","photolithotrophic"]]},{"id":"METPO:1000659","l":"photoorganoheterotrophic","na":1,"nb":1,"a":[["physiology/photoorganoheterotrophic.html","photoorganoheterotrophic"]],"b":[["METPO%3A1000659","photoorganoheterotrophic"]]},{"id":"METPO:1000663","l":"chemoorganotrophic","na":1,"nb":1,"a":[["physiology/chemoorganotrophic.html","chemoorganotrophic"]],"b":[["METPO%3A1000663","chemoorganotrophic"]]},{"id":"METPO:1000664","l":"organoheterotrophic","na":1,"nb":1,"a":[["physiology/organoheterotrophic.html","organoheterotrophic"]],"b":[["METPO%3A1000664","organoheterotrophic"]]},{"id":"METPO:1000665","l":"photolithoautotrophic","na":1,"nb":1,"a":[["physiology/photolithoautotrophic.html","photolithoautotrophic"]],"b":[["METPO%3A1000665","photolithoautotrophic"]]},{"id":"METPO:1000720","l":"facultative psychrophilic","na":1,"nb":1,"a":[["environment/facultative_psychrophilic.html","facultative psychrophilic"]],"b":[["METPO%3A1000720","facultative psychrophilic"]]},{"id":"METPO:1000721","l":"extreme hyperthermophilic","na":1,"nb":1,"a":[["environment/extreme_hyperthermophilic.html","extreme hyperthermophilic"]],"b":[["METPO%3A1000721","extreme hyperthermophilic"]]},{"id":"METPO:1000801","l":"Aerobic respiration","na":1,"nb":1,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"]],"b":[["METPO%3A1000801","Aerobic respiration"]]},{"id":"METPO:1000803","l":"Oxidative phosphorylation","na":1,"nb":1,"a":[["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"]],"b":[["METPO%3A1000803","Oxidative phosphorylation"]]},{"id":"METPO:1000805","l":"Electron transfer","na":1,"nb":1,"a":[["metabolism/electron_transfer.html","Electron transfer"]],"b":[["METPO%3A1000805","Electron transfer"]]},{"id":"METPO:1000806","l":"Disproportionation","na":1,"nb":1,"a":[["metabolism/disproportionation.html","Disproportionation"]],"b":[["METPO%3A1000806","Disproportionation"]]},{"id":"METPO:1000846","l":"Homoacetogenesis","na":1,"nb":1,"a":[["metabolism/homoacetogenesis.html","Homoacetogenesis"]],"b":[["METPO%3A1000846","Homoacetogenesis"]]},{"id":"METPO:1002003","l":"Cable bacteria metabolism","na":1,"nb":1,"a":[["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"]],"b":[["METPO%3A1002003","Cable bacteria metabolism"]]},{"id":"METPO:1002006","l":"Syntrophy","na":1,"nb":1,"a":[["metabolism/syntrophy.html","Syntrophy"]],"b":[["METPO%3A1002006","Syntrophy"]]},{"id":"METPO:1003001","l":"neutrophilic","na":1,"nb":1,"a":[["environment/neutrophilic.html","neutrophilic"]],"b":[["METPO%3A1003001","neutrophilic"]]},{"id":"METPO:1003004","l":"obligately alkaliphilic","na":1,"nb":1,"a":[["environment/obligately_alkaphilic.html","obligately alkaliphilic"]],"b":[["METPO%3A1003004","obligately alkaliphilic"]]},{"id":"METPO:1003005","l":"facultatively alkaliphilic","na":1,"nb":1,"a":[["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"]],"b":[["METPO%3A1003005","facultatively alkaliphilic"]]},{"id":"METPO:1003006","l":"obligately acidophilic","na":1,"nb":1,"a":[["environment/obligately_acidophilic.html","obligately acidophilic"]],"b":[["METPO%3A1003006","obligately acidophilic"]]},{"id":"METPO:1003007","l":"facultatively acidophilic","na":1,"nb":1,"a":[["environment/facultatively_acidophilic.html","facultatively acidophilic"]],"b":[["METPO%3A1003007","facultatively acidophilic"]]},{"id":"METPO:1003009","l":"alkalotolerant","na":1,"nb":1,"a":[["environment/alkalotolerant.html","alkalotolerant"]],"b":[["METPO%3A1003009","alkalotolerant"]]},{"id":"METPO:1005011","l":"indole test positive","na":1,"nb":1,"a":[["other/indole_test_positive.html","indole test positive"]],"b":[["METPO%3A1005011","indole test positive"]]},{"id":"METPO:1005012","l":"indole test negative","na":1,"nb":1,"a":[["other/indole_test_negative.html","indole test negative"]],"b":[["METPO%3A1005012","indole test negative"]]},{"id":"METPO:1005014","l":"methyl red test positive","na":1,"nb":1,"a":[["other/methyl_red_test_positive.html","methyl red test positive"]],"b":[["METPO%3A1005014","methyl red test positive"]]},{"id":"METPO:1005015","l":"methyl red test negative","na":1,"nb":1,"a":[["other/methyl_red_test_negative.html","methyl red test negative"]],"b":[["METPO%3A1005015","methyl red test negative"]]},{"id":"METPO:1005017","l":"Voges-Proskauer test positive","na":1,"nb":1,"a":[["other/voges_proskauer_test_positive.html","Voges-Proskauer test positive"]],"b":[["METPO%3A1005017","Voges-Proskauer test positive"]]},{"id":"METPO:1005018","l":"Voges-Proskauer test negative","na":1,"nb":1,"a":[["other/voges_proskauer_test_negative.html","Voges-Proskauer test negative"]],"b":[["METPO%3A1005018","Voges-Proskauer test negative"]]},{"id":"METPO:1005021","l":"capnophilic","na":1,"nb":1,"a":[["environment/capnophilic.html","capnophilic"]],"b":[["METPO%3A1005021","capnophilic"]]},{"id":"METPO:1007073","l":"osmotic tolerance","na":1,"nb":1,"a":[["other/osmotic_tolerance.html","osmotic tolerance"]],"b":[["METPO%3A1007073","osmotic tolerance"]]},{"id":"METPO:1007084","l":"catalase negative","na":1,"nb":1,"a":[["other/catalase_negative.html","catalase negative"]],"b":[["METPO%3A1007084","catalase negative"]]},{"id":"METPO:1007086","l":"oxidase negative","na":1,"nb":1,"a":[["other/oxidase_negative.html","oxidase negative"]],"b":[["METPO%3A1007086","oxidase negative"]]},{"id":"METPO:1007088","l":"urease negative","na":1,"nb":1,"a":[["other/urease_negative.html","urease negative"]],"b":[["METPO%3A1007088","urease negative"]]},{"id":"METPO:1007090","l":"coagulase positive","na":1,"nb":1,"a":[["other/coagulase_positive.html","coagulase positive"]],"b":[["METPO%3A1007090","coagulase positive"]]},{"id":"METPO:1007091","l":"coagulase negative","na":1,"nb":1,"a":[["other/coagulase_negative.html","coagulase negative"]],"b":[["METPO%3A1007091","coagulase negative"]]},{"id":"NCBITaxon:133804","l":"gamma proteobacterium EBAC31A08","na":1,"nb":1,"a":[["metabolism/proteorhodopsin_phototrophy.html","proteorhodopsin phototrophy"]],"b":[["PROSITE%3APS00950","Bacterial rhodopsins signature 1"]]},{"id":"NCBITaxon:1392998","l":"Candidatus Methanoperedens nitratireducens","na":1,"nb":1,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"]],"b":[["TED%3AAF-A0A062V4L1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A062V4L1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1473598","l":"Paludibaculum fermentans","na":1,"nb":1,"a":[["environment/facultatively_acidophilic.html","facultatively acidophilic"]],"b":[["TED%3AAF-A0A7S7NND6-F1-model_v4_TED01","TED novel fold AF-A0A7S7NND6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":1,"nb":1,"a":[["morphology/branched_shaped.html","branched shaped"]],"b":[["TED%3AAF-A0A415C3I8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A415C3I8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1752","l":"Propionibacterium freudenreichii subsp. shermanii","na":1,"nb":1,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["PROSITE%3APS00544","Methylmalonyl-CoA mutase signature"]]},{"id":"NCBITaxon:2306023","l":"Gemmobacter lutimaris","na":1,"nb":1,"a":[["environment/ph_delta_mid3.html","pH delta mid3"]],"b":[["TED%3AAF-A0A398BQ53-F1-model_v4_TED04","TED novel fold AF-A0A398BQ53-F1-model_v4_TED04"]]},{"id":"NCBITaxon:243164","l":"Dehalococcoides mccartyi 195","na":1,"nb":1,"a":[["metabolism/organohalide_respiration.html","organohalide respiration"]],"b":[["Pfam%3APF13486","Reductive dehalogenase subunit"]]},{"id":"NCBITaxon:29339","l":"Bacillus thuringiensis serovar kurstaki","na":1,"nb":1,"a":[["physiology/quorum_sensing.html","quorum sensing"]],"b":[["Pfam%3APF07029","CryBP1 protein"]]},{"id":"NCBITaxon:296","l":"Pseudomonas fragi","na":1,"nb":1,"a":[["environment/temperature_optimum_low.html","temperature optimum low"]],"b":[["TED%3AAF-A0A449IS41-F1-model_v4_TED01","TED novel fold AF-A0A449IS41-F1-model_v4_TED01"]]},{"id":"NCBITaxon:335541","l":"Syntrophomonas wolfei subsp. wolfei (strain DSM 2245B / Goettingen)","na":1,"nb":1,"a":[["metabolism/syntrophy.html","Syntrophy"]],"b":[["TED%3AAF-Q0AVF9-F1-model_v4_TED01","TED novel fold AF-Q0AVF9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["metabolism/photoferrotrophy.html","photoferrotrophy"]],"b":[["Pfam%3APF13282","Domain of unknown function (DUF4070)"]]},{"id":"NCBITaxon:399549","l":"Metallosphaera sedula DSM 5348","na":1,"nb":1,"a":[["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]],"b":[["Pfam%3APF18195","GatD N-terminal domain"]]},{"id":"NCBITaxon:412955","l":"Pseudomonas sp. SCT","na":1,"nb":1,"a":[["metabolism/iodate_respiration.html","iodate respiration"]],"b":[["Pfam%3APF03150","Di-haem cytochrome c peroxidase"]]},{"id":"NCBITaxon:521674","l":"Planctopirus limnophila DSM 3776","na":1,"nb":1,"a":[["morphology/flask_shaped.html","flask shaped"]],"b":[["TED%3AAF-D5SQH0-F1-model_v4_TED01","TED novel fold AF-D5SQH0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:747","l":"Pasteurella multocida","na":1,"nb":1,"a":[["ecology/animal_pathogen.html","animal pathogen"]],"b":[["TED%3AAF-A0A8A8HHD5-F1-model_v4_TED02","TED novel fold AF-A0A8A8HHD5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:766760","l":"Bacillus paralicheniformis ATCC 9945a","na":1,"nb":1,"a":[["genomics/disarm_system.html","DISARM system"]],"b":[["Pfam%3APF24957","DISARM protein DrmE, C-terminal domain"]]},{"id":"NCBITaxon:863","l":"Syntrophomonas wolfei","na":1,"nb":1,"a":[["metabolism/syntrophy.html","Syntrophy"]],"b":[["TED%3AAF-A0A354YY78-F1-model_v4_TED03","TED novel fold AF-A0A354YY78-F1-model_v4_TED03"]]},{"id":"UniProt:P07984","l":"","na":1,"nb":1,"a":[["metabolism/biopolymer_degradation.html","biopolymer degradation"]],"b":[["PROSITE%3APS00561","CBM2a (carbohydrate-binding type-2) domain signature"]]},{"id":"UniProt:P24559","l":"","na":1,"nb":1,"a":[["morphology/twitching_motility.html","twitching motility"]],"b":[["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]]},{"id":"UniProt:P27709","l":"","na":1,"nb":1,"a":[["morphology/heterocyst.html","heterocyst"]],"b":[["Pfam%3APF18460","Heterocyst differentiation regulator C-terminal Hood domain"]]},{"id":"UniProt:P44413","l":"","na":1,"nb":1,"a":[["genomics/restriction_modification_system.html","restriction-modification system"]],"b":[["Pfam%3APF09226","Restriction endonuclease HincII"]]},{"id":"UniProt:P45573","l":"","na":1,"nb":1,"a":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["Pfam%3APF04358","DsrC like protein"]]},{"id":"UniProt:P9WG29","l":"","na":1,"nb":1,"a":[["physiology/dormancy.html","dormancy"]],"b":[["Pfam%3APF03990","G5-linked-Ubiquitin-like domain"]]},{"id":"UniProt:Q03511","l":"","na":1,"nb":1,"a":[["morphology/carboxysome.html","carboxysome"]],"b":[["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"UniProt:Q9F7P4","l":"","na":1,"nb":1,"a":[["metabolism/proteorhodopsin_phototrophy.html","proteorhodopsin phototrophy"]],"b":[["PROSITE%3APS00950","Bacterial rhodopsins signature 1"]]},{"id":"UniProt:Q9HXT9","l":"","na":1,"nb":1,"a":[["ecology/biofilm_formation.html","biofilm formation"]],"b":[["proteintraitsmech%3ABIOLIP_C2E","C2E-binding site"]]},{"id":"UniProt:S5N020","l":"","na":1,"nb":1,"a":[["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"]],"b":[["proteintraitsmech%3ABIOLIP_1VU","1VU-binding site"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/TraitMech--TaxonMech.json b/assets/fleet/edges/TraitMech--TaxonMech.json new file mode 100644 index 0000000..d8b1b18 --- /dev/null +++ b/assets/fleet/edges/TraitMech--TaxonMech.json @@ -0,0 +1 @@ +{"a":"TraitMech","b":"TaxonMech","base":{"TraitMech":"https://culturebotai.github.io/TraitMech/pages/traits/","TaxonMech":"https://culturebotai.github.io/TaxonMech/pages/taxon.html?id="},"n":274,"by":{"NCBITaxon":274},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":65,"nb":3868,"a":[["ecology/biosafety_level.html","biosafety level"],["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/host_associated.html","host-associated"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/halophily_preference.html","halophily preference"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A196023","Aeromonas hydrophila subsp. hydrophila"],["NCBITaxon%3A380703","Aeromonas hydrophila subsp. hydrophila ATCC 7966"],["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A35703","Citrobacter amalonaticus"],["NCBITaxon%3A163202","Corynebacterium appendicis"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":26,"nb":39,"a":[["environment/ph_phenotype_with_numerical_limits.html","pH phenotype with numerical limits"],["environment/temperature_optimum_mid4.html","temperature optimum mid4"],["genomics/rnlab_system.html","RnlAB system"],["metabolism/metabolism.html","metabolism"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/respiration.html","respiration"]],"b":[["NCBITaxon%3A679895","Escherichia coli BW25113"],["NCBITaxon%3A595496","Escherichia coli BW2952"],["NCBITaxon%3A1318715","Escherichia coli BW38028"],["NCBITaxon%3A1245474","Escherichia coli ER2796"],["NCBITaxon%3A83333","Escherichia coli K-12"],["NCBITaxon%3A527799","Escherichia coli LW1655F+"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":19,"nb":32,"a":[["environment/aerotolerant.html","aerotolerant"],["genomics/abia_system.html","AbiA system"],["genomics/abib_system.html","AbiB system"],["genomics/abic_system.html","AbiC system"],["genomics/abid_system.html","AbiD system"],["genomics/abie_system.html","AbiE system"]],"b":[["NCBITaxon%3A1359","Lactococcus cremoris"],["NCBITaxon%3A2816960","Lactococcus cremoris subsp. cremoris"],["NCBITaxon%3A1348655","Lactococcus cremoris subsp. cremoris NBRC 100676"],["NCBITaxon%3A1363","Lactococcus garvieae"],["NCBITaxon%3A1358","Lactococcus lactis"],["NCBITaxon%3A2731284","Lactococcus lactis (ex Latorre-Guzman et al. 1977) Schleifer et al. 1986"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":18,"nb":82,"a":[["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/neutrophilic.html","neutrophilic"],["environment/non_halophilic.html","non halophilic"],["genomics/spbk_system.html","SpbK system"]],"b":[["NCBITaxon%3A1390","Bacillus amyloliquefaciens"],["NCBITaxon%3A1452","Bacillus atrophaeus"],["NCBITaxon%3A640707","Bacillus atrophaeus ATCC 9372"],["NCBITaxon%3A483913","Bacillus inaquosorum"],["NCBITaxon%3A1236548","Bacillus inaquosorum KCTC 13429"],["NCBITaxon%3A1402","Bacillus licheniformis"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":15,"nb":4740,"a":[["ecology/biosafety_level_2.html","biosafety level 2"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/coccus_shaped.html","coccus shaped"]],"b":[["NCBITaxon%3A475088","Methanosphaerula palustris"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1389955","Escherichia coli ATCC 35150"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A574","Klebsiella pneumoniae subsp. ozaenae"],["NCBITaxon%3A1218098","Klebsiella pneumoniae subsp. ozaenae NBRC 105683"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":11,"nb":557,"a":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/aerobic.html","aerobic"],["genomics/avast_system.html","AVAST system"],["genomics/jukab_system.html","JukAB system"],["morphology/motile.html","motile"]],"b":[["NCBITaxon%3A2073169","Chromobacterium alticapitis"],["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1454219","Pseudomonas aeruginosa 059A"],["NCBITaxon%3A1421538","Pseudomonas aeruginosa 0812"],["NCBITaxon%3A1421545","Pseudomonas aeruginosa 0822"],["NCBITaxon%3A1421531","Pseudomonas aeruginosa 0C2E"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":9,"nb":287,"a":[["environment/euryhaline.html","euryhaline"],["genomics/dartg_system.html","DarTG system"],["genomics/ddmde_system.html","DdmDE system"],["genomics/genomic_island.html","genomic island"],["genomics/lamassu_system.html","Lamassu system"],["genomics/nixi_system.html","NixI system"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A666","Vibrio cholerae"],["NCBITaxon%3A693741","Vibrio cholerae 0139-ARG"],["NCBITaxon%3A1294144","Vibrio cholerae 01-1751"],["NCBITaxon%3A592313","Vibrio cholerae 12129(1)"],["NCBITaxon%3A412966","Vibrio cholerae 1587"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":6,"nb":5776,"a":[["ecology/animal_pathogen.html","animal pathogen"],["ecology/biosafety_level_2.html","biosafety level 2"],["genomics/genomic_island.html","genomic island"],["genomics/prophage.html","prophage"],["morphology/flagellated.html","flagellated"],["morphology/peritrichous.html","peritrichous"]],"b":[["NCBITaxon%3A54736","Salmonella bongori"],["NCBITaxon%3A218493","Salmonella bongori NCTC 12419"],["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59203","Salmonella enterica subsp. arizonae"],["NCBITaxon%3A2577126","Salmonella enterica subsp. arizonae serovar 11:z4,z23:-"],["NCBITaxon%3A2577127","Salmonella enterica subsp. arizonae serovar 13,22:z4,z23:-"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":6,"nb":422,"a":[["metabolism/butanediol_fermentation.html","2,3-butanediol fermentation"],["metabolism/citrate_fermentation.html","citrate fermentation"],["morphology/capsule.html","capsule"],["morphology/non_motile.html","non motile"],["other/indole_test_negative.html","indole test negative"],["other/methyl_red_test_negative.html","methyl red test negative"]],"b":[["NCBITaxon%3A1653844","Erwinia carnegieana"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A2058152","Klebsiella grimontii"],["NCBITaxon%3A54291","Klebsiella ornithinolytica"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A1443592","Klebsiella pneumoniae 07A044"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":6,"nb":53,"a":[["ecology/free_living.html","free-living"],["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["genomics/transposable_element.html","transposable element"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"]],"b":[["NCBITaxon%3A47920","Acidovorax delafieldii"],["NCBITaxon%3A301","Ectopseudomonas oleovorans"],["NCBITaxon%3A29581","Janthinobacterium lividum"],["NCBITaxon%3A294","Pseudomonas fluorescens"],["NCBITaxon%3A77298","Pseudomonas jessenii"],["NCBITaxon%3A1968891","Pseudomonas jessenii subsp. pseudoputida"]]},{"id":"NCBITaxon:1488","l":"Clostridium acetobutylicum","na":7,"nb":6,"a":[["environment/anaerobic.html","anaerobic"],["environment/obligately_anaerobic.html","obligately anaerobic"],["metabolism/fermentation.html","Fermentation"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"],["morphology/gram_variable.html","gram variable"],["morphology/spindle_shaped.html","spindle shaped"]],"b":[["NCBITaxon%3A1488","Clostridium acetobutylicum"],["NCBITaxon%3A272562","Clostridium acetobutylicum ATCC 824"],["NCBITaxon%3A991791","Clostridium acetobutylicum DSM 1731"],["NCBITaxon%3A863638","Clostridium acetobutylicum EA 2018"],["NCBITaxon%3A1520","Clostridium beijerinckii"],["NCBITaxon%3A1506","Clostridium sp."]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":6,"nb":6,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/oxidase_activity.html","oxidase activity"]],"b":[["NCBITaxon%3A266","Paracoccus denitrificans"],["NCBITaxon%3A1302247","Paracoccus denitrificans JCM 21484"],["NCBITaxon%3A318586","Paracoccus denitrificans PD1222"],["NCBITaxon%3A1051075","Paracoccus denitrificans SD1"],["NCBITaxon%3A82367","Paracoccus pantotrophus"],["NCBITaxon%3A189685","uncultured Paracoccus sp."]]},{"id":"NCBITaxon:1773","l":"Mycobacterium tuberculosis","na":5,"nb":2946,"a":[["ecology/biosafety_level_3.html","biosafety level 3"],["ecology/human_pathogen.html","human pathogen"],["physiology/acid_phosphatase_activity.html","acid phosphatase activity"],["physiology/dormancy.html","dormancy"],["physiology/pyrazinamidase_activity.html","pyrazinamidase activity"]],"b":[["NCBITaxon%3A1773","Mycobacterium tuberculosis"],["NCBITaxon%3A668339","Mycobacterium tuberculosis 00_1695"],["NCBITaxon%3A1455192","Mycobacterium tuberculosis 01-Cr4_ND_3_A"],["NCBITaxon%3A1455078","Mycobacterium tuberculosis 01-Ps1_0_A"],["NCBITaxon%3A515616","Mycobacterium tuberculosis 02_1987"],["NCBITaxon%3A1455200","Mycobacterium tuberculosis 02-Cr4_ND_3_B"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":5,"nb":168,"a":[["genomics/gabija_system.html","Gabija system"],["genomics/shedu_system.html","Shedu system"],["genomics/thoeris_system.html","Thoeris system"],["physiology/caseinase_activity.html","caseinase activity"],["physiology/lecithinase_activity.html","lecithinase activity"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A572264","Bacillus cereus 03BB102"],["NCBITaxon%3A451709","Bacillus cereus 03BB108"],["NCBITaxon%3A526967","Bacillus cereus 172560W"],["NCBITaxon%3A363751","Bacillus cereus 31673"],["NCBITaxon%3A526979","Bacillus cereus 95/8201"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":32,"a":[["metabolism/chitinolysis.html","chitinolysis"],["morphology/pigmentation.html","pigmentation"],["morphology/red_pigmented.html","red pigmented"],["morphology/white_pigmented.html","white pigmented"],["physiology/beta_n_acetylhexosaminidase_activity.html","beta-N-acetylhexosaminidase activity"]],"b":[["NCBITaxon%3A2703793","Serratia bockelmannii"],["NCBITaxon%3A615","Serratia marcescens"],["NCBITaxon%3A1257036","Serratia marcescens 12"],["NCBITaxon%3A1255611","Serratia marcescens 448"],["NCBITaxon%3A1333586","Serratia marcescens AB42556419-isolate1"],["NCBITaxon%3A1400186","Serratia marcescens BIDMC 44"]]},{"id":"NCBITaxon:920","l":"Acidithiobacillus ferrooxidans","na":5,"nb":10,"a":[["environment/obligately_acidophilic.html","obligately acidophilic"],["environment/ph_range_low.html","pH range low"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["NCBITaxon%3A163359","Acidiferrobacter thiooxydans"],["NCBITaxon%3A1232575","Acidithiobacillus ferridurans"],["NCBITaxon%3A920","Acidithiobacillus ferrooxidans"],["NCBITaxon%3A243159","Acidithiobacillus ferrooxidans ATCC 23270"],["NCBITaxon%3A380394","Acidithiobacillus ferrooxidans ATCC 53993"],["NCBITaxon%3A1433292","Acidithiobacillus ferrooxidans BY-3"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":5,"nb":8,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"],["physiology/hydrogenotrophic.html","hydrogenotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"]],"b":[["NCBITaxon%3A119219","Cupriavidus metallidurans"],["NCBITaxon%3A106590","Cupriavidus necator"],["NCBITaxon%3A1304882","Cupriavidus necator A5-1"],["NCBITaxon%3A381666","Cupriavidus necator H16"],["NCBITaxon%3A53482","Cupriavidus necator H850"],["NCBITaxon%3A1042878","Cupriavidus necator N-1"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":7,"nb":5,"a":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/copper_tolerant.html","copper tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["environment/metal_tolerant.html","metal tolerant"]],"b":[["NCBITaxon%3A119219","Cupriavidus metallidurans"],["NCBITaxon%3A266264","Cupriavidus metallidurans CH34"],["NCBITaxon%3A1395123","Cupriavidus metallidurans H1130"],["NCBITaxon%3A1218106","Cupriavidus metallidurans NBRC 101272"],["NCBITaxon%3A1873897","Cupriavidus sp."]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":4,"nb":389,"a":[["morphology/diplococcus_shaped.html","diplococcus shaped"],["morphology/non_motile.html","non motile"],["morphology/sphere_shaped.html","sphere shaped"],["physiology/natural_competence.html","natural competence"]],"b":[["NCBITaxon%3A1503055","Burkholderia territorii"],["NCBITaxon%3A1270","Micrococcus luteus"],["NCBITaxon%3A465515","Micrococcus luteus NCTC 2665"],["NCBITaxon%3A33051","Sphingomonas sanguinis"],["NCBITaxon%3A1219054","Sphingomonas sanguinis NBRC 13937"],["NCBITaxon%3A1313","Streptococcus pneumoniae"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":4,"nb":66,"a":[["ecology/mutualism.html","mutualism"],["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["ecology/symbiosis.html","symbiosis"],["genomics/hna_system.html","Hna system"]],"b":[["NCBITaxon%3A382","Sinorhizobium meliloti"],["NCBITaxon%3A266834","Sinorhizobium meliloti 1021"],["NCBITaxon%3A1194706","Sinorhizobium meliloti 1A42"],["NCBITaxon%3A1286640","Sinorhizobium meliloti 2011"],["NCBITaxon%3A1041151","Sinorhizobium meliloti 4H41"],["NCBITaxon%3A1194707","Sinorhizobium meliloti 5A14"]]},{"id":"NCBITaxon:1148","l":"Synechocystis sp. PCC 6803","na":4,"nb":12,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/trophic_type.html","trophic type"]],"b":[["NCBITaxon%3A1148","Synechocystis sp. PCC 6803"],["NCBITaxon%3A2932627","Synechocystis sp. PCC 6803 subst. PCC-Mn"],["NCBITaxon%3A2932628","Synechocystis sp. PCC 6803 subst. PCC-Pn"],["NCBITaxon%3A2962876","Synechocystis sp. PCC 6803 substr. D1-D170H"],["NCBITaxon%3A1080228","Synechocystis sp. PCC 6803 substr. GT-I"],["NCBITaxon%3A2932626","Synechocystis sp. PCC 6803 substr. GT-In"]]},{"id":"NCBITaxon:155892","l":"Caulobacter vibrioides","na":7,"nb":4,"a":[["ecology/free_living.html","free-living"],["morphology/cell_width.html","cell width"],["morphology/crescent_shaped.html","crescent shaped"],["morphology/curved_shaped.html","curved shaped"],["morphology/holdfast.html","holdfast"],["morphology/monotrichous.html","monotrichous"]],"b":[["NCBITaxon%3A155892","Caulobacter vibrioides"],["NCBITaxon%3A190650","Caulobacter vibrioides CB15"],["NCBITaxon%3A565050","Caulobacter vibrioides NA1000"],["NCBITaxon%3A1292034","Caulobacter vibrioides OR37"]]},{"id":"NCBITaxon:224308","l":"Bacillus subtilis (strain 168)","na":4,"nb":5,"a":[["metabolism/proteolysis.html","proteolysis"],["morphology/spore_forming.html","spore forming"],["morphology/spore_shaped.html","spore shaped"],["morphology/sporulation.html","sporulation"]],"b":[["NCBITaxon%3A1423","Bacillus subtilis"],["NCBITaxon%3A135461","Bacillus subtilis subsp. subtilis"],["NCBITaxon%3A224308","Bacillus subtilis subsp. subtilis str. 168"],["NCBITaxon%3A536088","Bacillus subtilis subsp. subtilis str. L170"],["NCBITaxon%3A536089","Bacillus subtilis subsp. subtilis str. N170"]]},{"id":"NCBITaxon:1314","l":"Streptococcus pyogenes","na":3,"nb":839,"a":[["environment/aerotolerant.html","aerotolerant"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"],["morphology/streptococcus_arrangement.html","streptococcus arrangement"]],"b":[["NCBITaxon%3A45634","Streptococcus cristatus"],["NCBITaxon%3A1314","Streptococcus pyogenes"],["NCBITaxon%3A1050217","Streptococcus pyogenes 005-D5"],["NCBITaxon%3A1210041","Streptococcus pyogenes 06BA18369"],["NCBITaxon%3A1235829","Streptococcus pyogenes A20"],["NCBITaxon%3A562016","Streptococcus pyogenes AA216"]]},{"id":"NCBITaxon:210","l":"Helicobacter pylori","na":3,"nb":631,"a":[["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/helical_shaped.html","helical shaped"],["morphology/lophotrichous.html","lophotrichous"]],"b":[["NCBITaxon%3A210","Helicobacter pylori"],["NCBITaxon%3A1028810","Helicobacter pylori 10700"],["NCBITaxon%3A585532","Helicobacter pylori 118"],["NCBITaxon%3A102610","Helicobacter pylori #12"],["NCBITaxon%3A585533","Helicobacter pylori 120"],["NCBITaxon%3A103187","Helicobacter pylori 15818"]]},{"id":"NCBITaxon:54298","l":"Chroococcidiopsis","na":3,"nb":302,"a":[["environment/desiccation_tolerant.html","desiccation tolerant"],["environment/uv_radiation_tolerant.html","UV radiation tolerant"],["environment/xerophilic.html","xerophilic"]],"b":[["NCBITaxon%3A2138304","Chroococcidiopsis bourrellyana"],["NCBITaxon%3A2138305","Chroococcidiopsis bourrellyana NTLRM1"],["NCBITaxon%3A869946","Chroococcidiopsis cf. cubana CCALA 047"],["NCBITaxon%3A171392","Chroococcidiopsis cubana"],["NCBITaxon%3A3024990","Chroococcidiopsis cubana C108"],["NCBITaxon%3A2942199","Chroococcidiopsis cubana C148"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":3,"nb":118,"a":[["ecology/commensalism.html","commensalism"],["genomics/nhi_system.html","Nhi system"],["other/coagulase_negative.html","coagulase negative"]],"b":[["NCBITaxon%3A69966","Macrococcoides caseolyticum"],["NCBITaxon%3A1822","Nocardia vaccinii"],["NCBITaxon%3A1210098","Nocardia vaccinii NBRC 15922"],["NCBITaxon%3A1282","Staphylococcus epidermidis"],["NCBITaxon%3A1235440","Staphylococcus epidermidis 12142587"],["NCBITaxon%3A1000590","Staphylococcus epidermidis 14.1.R1.SE"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":3,"nb":101,"a":[["environment/anaerobic.html","anaerobic"],["environment/strictly_anaerobic.html","strictly anaerobic"],["metabolism/fumarate_respiration.html","fumarate respiration"]],"b":[["NCBITaxon%3A817","Bacteroides fragilis"],["NCBITaxon%3A457424","Bacteroides fragilis 3_1_12"],["NCBITaxon%3A862962","Bacteroides fragilis 638R"],["NCBITaxon%3A1308728","Bacteroides fragilis ADL-402"],["NCBITaxon%3A1263046","Bacteroides fragilis CAG:47"],["NCBITaxon%3A1263047","Bacteroides fragilis CAG:558"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":3,"nb":79,"a":[["ecology/rhizosphere_association.html","rhizosphere association"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/psychrotolerant.html","psychrotolerant"]],"b":[["NCBITaxon%3A1931223","Caballeronia sp."],["NCBITaxon%3A89065","Pseudomonas abietaniphila"],["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1123912","Pseudomonas auricularis"],["NCBITaxon%3A930166","Pseudomonas brassicacearum"],["NCBITaxon%3A129817","Pseudomonas brenneri"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa (strain ATCC 15692 / DSM 22644 / CIP 104116 / JCM 14847 / LMG 12228 / 1C / PRS 101 / PAO1)","na":3,"nb":23,"a":[["ecology/biofilm_formation.html","biofilm formation"],["morphology/twitching_motility.html","twitching motility"],["morphology/type_iv_pilus.html","type IV pilus"]],"b":[["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1453991","Pseudomonas aeruginosa BK1"],["NCBITaxon%3A1236530","Pseudomonas aeruginosa JCM 14847"],["NCBITaxon%3A1131757","Pseudomonas aeruginosa MPAO1/P1"],["NCBITaxon%3A1131758","Pseudomonas aeruginosa MPAO1/P2"],["NCBITaxon%3A208964","Pseudomonas aeruginosa PAO1"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":3,"nb":15,"a":[["ecology/mutualism.html","mutualism"],["physiology/bioluminescence.html","bioluminescence"],["physiology/quorum_sensing.html","quorum sensing"]],"b":[["NCBITaxon%3A668","Aliivibrio fischeri"],["NCBITaxon%3A617136","Aliivibrio fischeri 1-C10"],["NCBITaxon%3A617138","Aliivibrio fischeri 9ZB36"],["NCBITaxon%3A1298605","Aliivibrio fischeri ATCC 7744 = JCM 18803 = DSM 507"],["NCBITaxon%3A1367486","Aliivibrio fischeri CB37"],["NCBITaxon%3A1367487","Aliivibrio fischeri EM17"]]},{"id":"NCBITaxon:2242","l":"Halobacterium salinarum","na":3,"nb":14,"a":[["environment/extremely_halophilic.html","extremely halophilic"],["environment/halophilic.html","halophilic"],["morphology/intracellular_inclusion.html","intracellular inclusion"]],"b":[["NCBITaxon%3A2242","Halobacterium salinarum"],["NCBITaxon%3A2597657","Halobacterium salinarum DSM 3754"],["NCBITaxon%3A64091","Halobacterium salinarum NRC-1"],["NCBITaxon%3A2886895","Halobacterium salinarum NRC-34001"],["NCBITaxon%3A478009","Halobacterium salinarum R1"],["NCBITaxon%3A2109941","Halobacterium salinarum str. WSR1 (ex H. Halobium)"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":3,"nb":12,"a":[["environment/aerobic.html","aerobic"],["environment/obligately_aerobic.html","obligately aerobic"],["morphology/tetrad_arrangement.html","tetrad arrangement"]],"b":[["NCBITaxon%3A72000","Kocuria rhizophila"],["NCBITaxon%3A378753","Kocuria rhizophila DC2201"],["NCBITaxon%3A1272","Kocuria varians"],["NCBITaxon%3A1270","Micrococcus luteus"],["NCBITaxon%3A1357403","Micrococcus luteus CD1_FAA_NB_1"],["NCBITaxon%3A935864","Micrococcus luteus J28"]]},{"id":"NCBITaxon:1085","l":"Rhodospirillum rubrum","na":6,"nb":3,"a":[["metabolism/phototrophy.html","phototrophy"],["morphology/spiral_shaped.html","spiral shaped"],["physiology/carboxydotrophic.html","carboxydotrophic"],["physiology/photoheterotrophic.html","photoheterotrophic"],["physiology/photoorganoheterotrophic.html","photoorganoheterotrophic"],["physiology/phototrophic.html","phototrophic"]],"b":[["NCBITaxon%3A1085","Rhodospirillum rubrum"],["NCBITaxon%3A269796","Rhodospirillum rubrum ATCC 11170"],["NCBITaxon%3A1036743","Rhodospirillum rubrum F11"]]},{"id":"NCBITaxon:1299","l":"Deinococcus radiodurans","na":6,"nb":3,"a":[["environment/ionizing_radiation_tolerant.html","ionizing radiation tolerant"],["environment/radiotolerant.html","radiotolerant"],["environment/uv_radiation_tolerant.html","UV radiation tolerant"],["environment/xerophilic.html","xerophilic"],["morphology/orange_pigmented.html","orange pigmented"],["physiology/stress_response.html","stress response"]],"b":[["NCBITaxon%3A1299","Deinococcus radiodurans"],["NCBITaxon%3A243230","Deinococcus radiodurans R1 = ATCC 13939 = DSM 20539"],["NCBITaxon%3A47478","Deinococcus sp."]]},{"id":"NCBITaxon:1525","l":"Neomoorella thermoacetica","na":3,"nb":5,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"]],"b":[["NCBITaxon%3A264732","Moorella thermoacetica ATCC 39073"],["NCBITaxon%3A1122242","Moorella thermoacetica DSM 1974"],["NCBITaxon%3A1325331","Moorella thermoacetica Y72"],["NCBITaxon%3A3051332","Neomoorella caeni"],["NCBITaxon%3A1525","Neomoorella thermoacetica"]]},{"id":"NCBITaxon:35554","l":"Geobacter sulfurreducens","na":3,"nb":5,"a":[["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/electron_transfer.html","Electron transfer"]],"b":[["NCBITaxon%3A35554","Geobacter sulfurreducens"],["NCBITaxon%3A663917","Geobacter sulfurreducens KN400"],["NCBITaxon%3A243231","Geobacter sulfurreducens PCA"],["NCBITaxon%3A1260928","Geobacter sulfurreducens subsp. ethanolicus"],["NCBITaxon%3A1649546","Geobacter sulfurreducens subsp. sulfurreducens"]]},{"id":"NCBITaxon:1902","l":"Streptomyces coelicolor","na":3,"nb":3,"a":[["ecology/saprotrophy.html","saprotrophy"],["ecology/soil_dwelling.html","soil-dwelling"],["morphology/mycelial_growth.html","mycelial growth"]],"b":[["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A1902","Streptomyces coelicolor"],["NCBITaxon%3A100226","Streptomyces coelicolor A3(2)"]]},{"id":"NCBITaxon:431944","l":"Magnetospirillum gryphiswaldense MSR-1","na":3,"nb":3,"a":[["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/magnetosome.html","magnetosome"],["physiology/magnetotaxis.html","magnetotaxis"]],"b":[["NCBITaxon%3A55518","Magnetospirillum gryphiswaldense"],["NCBITaxon%3A431944","Magnetospirillum gryphiswaldense MSR-1"],["NCBITaxon%3A1430440","Magnetospirillum gryphiswaldense MSR-1 v2"]]},{"id":"NCBITaxon:9","l":"Buchnera aphidicola","na":2,"nb":539,"a":[["ecology/endosymbiosis.html","endosymbiosis"],["ecology/symbiosis.html","symbiosis"]],"b":[["NCBITaxon%3A9","Buchnera aphidicola"],["NCBITaxon%3A2994845","Buchnera aphidicola (Acyrthosiphon caraganae)"],["NCBITaxon%3A668607","Buchnera aphidicola (Acyrthosiphon kondoi)"],["NCBITaxon%3A1241832","Buchnera aphidicola (Acyrthosiphon lactucae)"],["NCBITaxon%3A118099","Buchnera aphidicola (Acyrthosiphon pisum)"],["NCBITaxon%3A1499971","Buchnera aphidicola (Acyrthosiphon solani)"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":2,"nb":391,"a":[["genomics/abialpha_system.html","AbiAlpha system"],["physiology/gelatinase_activity.html","gelatinase activity"]],"b":[["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A1260363","Enterococcus faecalis 02-MB-BW-10"],["NCBITaxon%3A1260365","Enterococcus faecalis 02-MB-P-10"],["NCBITaxon%3A1260358","Enterococcus faecalis 06-MB-DW-09"],["NCBITaxon%3A1260359","Enterococcus faecalis 06-MB-S-04"],["NCBITaxon%3A1260360","Enterococcus faecalis 06-MB-S-10"]]},{"id":"NCBITaxon:485","l":"Neisseria gonorrhoeae","na":2,"nb":90,"a":[["physiology/oxidase_activity.html","oxidase activity"],["physiology/prolyl_aminopeptidase_activity.html","prolyl aminopeptidase activity"]],"b":[["NCBITaxon%3A485","Neisseria gonorrhoeae"],["NCBITaxon%3A528345","Neisseria gonorrhoeae 1291"],["NCBITaxon%3A1193404","Neisseria gonorrhoeae 3502"],["NCBITaxon%3A528346","Neisseria gonorrhoeae 35/02"],["NCBITaxon%3A1352347","Neisseria gonorrhoeae ALB_2011_01-02"],["NCBITaxon%3A1351778","Neisseria gonorrhoeae ALB_2011_03_03"]]},{"id":"NCBITaxon:32046","l":"Synechococcus elongatus","na":2,"nb":64,"a":[["morphology/carboxysome.html","carboxysome"],["physiology/autotrophic.html","autotrophic"]],"b":[["NCBITaxon%3A326333","Synechococcus cf. elongatus CCMP1379"],["NCBITaxon%3A32046","Synechococcus elongatus"],["NCBITaxon%3A1665532","Synechococcus elongatus 0814_107_005_M13_Fp"],["NCBITaxon%3A2729336","Synechococcus elongatus AARL T012"],["NCBITaxon%3A3073440","Synechococcus elongatus ACC1"],["NCBITaxon%3A1130982","Synechococcus elongatus ARKK1"]]},{"id":"NCBITaxon:727","l":"Haemophilus influenzae","na":2,"nb":43,"a":[["genomics/restriction_modification_system.html","restriction-modification system"],["morphology/coccobacillus_shaped.html","coccobacillus shaped"]],"b":[["NCBITaxon%3A727","Haemophilus influenzae"],["NCBITaxon%3A862964","Haemophilus influenzae 10810"],["NCBITaxon%3A1232659","Haemophilus influenzae 2019"],["NCBITaxon%3A374927","Haemophilus influenzae 22.1-21"],["NCBITaxon%3A520729","Haemophilus influenzae 22.1-24"],["NCBITaxon%3A375063","Haemophilus influenzae 22.4-21"]]},{"id":"NCBITaxon:1021","l":"Beggiatoa","na":2,"nb":33,"a":[["morphology/filament_shaped.html","filament shaped"],["physiology/mixotrophic.html","mixotrophic"]],"b":[["NCBITaxon%3A1022","Beggiatoa alba"],["NCBITaxon%3A395493","Beggiatoa alba B18LD"],["NCBITaxon%3A288004","Beggiatoa leptomitoformis"],["NCBITaxon%3A1962953","Beggiatoa sp."],["NCBITaxon%3A1579656","Beggiatoa sp. 11.1"],["NCBITaxon%3A1579657","Beggiatoa sp. 13.1"]]},{"id":"NCBITaxon:28116","l":"Bacteroides ovatus","na":2,"nb":33,"a":[["metabolism/xylan_degradation.html","xylan degradation"],["physiology/amylase_activity.html","amylase activity"]],"b":[["NCBITaxon%3A28116","Bacteroides ovatus"],["NCBITaxon%3A665954","Bacteroides ovatus 3_8_47FAA"],["NCBITaxon%3A411476","Bacteroides ovatus ATCC 8483"],["NCBITaxon%3A1263050","Bacteroides ovatus CAG:22"],["NCBITaxon%3A997885","Bacteroides ovatus CL02T12C04"],["NCBITaxon%3A997886","Bacteroides ovatus CL03T12C18"]]},{"id":"NCBITaxon:818","l":"Bacteroides thetaiotaomicron","na":2,"nb":32,"a":[["ecology/gut_associated.html","gut-associated"],["ecology/host_associated.html","host-associated"]],"b":[["NCBITaxon%3A47678","Bacteroides caccae"],["NCBITaxon%3A411901","Bacteroides caccae ATCC 43185"],["NCBITaxon%3A29523","Bacteroides sp."],["NCBITaxon%3A818","Bacteroides thetaiotaomicron"],["NCBITaxon%3A1263054","Bacteroides thetaiotaomicron CAG:40"],["NCBITaxon%3A1235785","Bacteroides thetaiotaomicron dnLKV9"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":2,"nb":25,"a":[["genomics/crispr_cas_system.html","CRISPR-Cas system"],["genomics/phage_defense_system.html","phage defense system"]],"b":[["NCBITaxon%3A35783","Enterococcus sp."],["NCBITaxon%3A1308","Streptococcus thermophilus"],["NCBITaxon%3A1435981","Streptococcus thermophilus 1F8CT"],["NCBITaxon%3A1408178","Streptococcus thermophilus ASCC 1275"],["NCBITaxon%3A1263110","Streptococcus thermophilus CAG:236"],["NCBITaxon%3A1042404","Streptococcus thermophilus CNCM I-1630"]]},{"id":"NCBITaxon:43080","l":"Saccharolobus islandicus","na":2,"nb":22,"a":[["environment/temperature_optimum_high.html","temperature optimum high"],["environment/temperature_range_high.html","temperature range high"]],"b":[["NCBITaxon%3A43080","Saccharolobus islandicus"],["NCBITaxon%3A930943","Saccharolobus islandicus HVE10/4"],["NCBITaxon%3A425944","Saccharolobus islandicus L.D.8.5"],["NCBITaxon%3A429572","Saccharolobus islandicus L.S.2.15"],["NCBITaxon%3A1241935","Saccharolobus islandicus LAL14/1"],["NCBITaxon%3A427317","Saccharolobus islandicus M.14.25"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":2,"nb":15,"a":[["genomics/wadjet_system.html","Wadjet system"],["morphology/irregular_shaped.html","irregular shaped"]],"b":[["NCBITaxon%3A38285","Corynebacterium acetoacidophilum"],["NCBITaxon%3A1718","Corynebacterium glutamicum"],["NCBITaxon%3A196627","Corynebacterium glutamicum ATCC 13032"],["NCBITaxon%3A1079988","Corynebacterium glutamicum ATCC 14067"],["NCBITaxon%3A1204414","Corynebacterium glutamicum K051"],["NCBITaxon%3A1310161","Corynebacterium glutamicum MB001"]]},{"id":"NCBITaxon:542","l":"Zymomonas mobilis","na":2,"nb":15,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["physiology/nad_dependent_alcohol_dehydrogenase_activity.html","NAD-dependent alcohol dehydrogenase activity"]],"b":[["NCBITaxon%3A223958","Exiguobacterium oxidotolerans"],["NCBITaxon%3A1397699","Exiguobacterium oxidotolerans JCM 12280"],["NCBITaxon%3A542","Zymomonas mobilis"],["NCBITaxon%3A325472","Zymomonas mobilis subsp. francensis"],["NCBITaxon%3A120045","Zymomonas mobilis subsp. mobilis"],["NCBITaxon%3A555217","Zymomonas mobilis subsp. mobilis ATCC 10988"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":2,"nb":11,"a":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"]],"b":[["NCBITaxon%3A1063","Cereibacter sphaeroides"],["NCBITaxon%3A272943","Cereibacter sphaeroides 2.4.1"],["NCBITaxon%3A349102","Cereibacter sphaeroides ATCC 17025"],["NCBITaxon%3A349101","Cereibacter sphaeroides ATCC 17029"],["NCBITaxon%3A39723","Cereibacter sphaeroides f. sp. denitrificans"],["NCBITaxon%3A633146","Cereibacter sphaeroides GA"]]},{"id":"NCBITaxon:274","l":"Thermus thermophilus","na":2,"nb":8,"a":[["environment/thermophilic.html","thermophilic"],["morphology/cell_width.html","cell width"]],"b":[["NCBITaxon%3A274","Thermus thermophilus"],["NCBITaxon%3A1316935","Thermus thermophilus ATCC 33923"],["NCBITaxon%3A262724","Thermus thermophilus HB27"],["NCBITaxon%3A300852","Thermus thermophilus HB8"],["NCBITaxon%3A798128","Thermus thermophilus JL-18"],["NCBITaxon%3A762633","Thermus thermophilus SG0.5JP17-16"]]},{"id":"NCBITaxon:408","l":"Methylorubrum extorquens","na":2,"nb":7,"a":[["morphology/pink_pigmented.html","pink pigmented"],["physiology/methylotrophic.html","methylotrophic"]],"b":[["NCBITaxon%3A408","Methylorubrum extorquens"],["NCBITaxon%3A272630","Methylorubrum extorquens AM1"],["NCBITaxon%3A440085","Methylorubrum extorquens CM4"],["NCBITaxon%3A661410","Methylorubrum extorquens DM4"],["NCBITaxon%3A882800","Methylorubrum extorquens DSM 13060"],["NCBITaxon%3A419610","Methylorubrum extorquens PA1"]]},{"id":"NCBITaxon:266264","l":"Cupriavidus metallidurans CH34","na":6,"nb":2,"a":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/copper_tolerant.html","copper tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["environment/zinc_tolerant.html","zinc tolerant"]],"b":[["NCBITaxon%3A119219","Cupriavidus metallidurans"],["NCBITaxon%3A266264","Cupriavidus metallidurans CH34"]]},{"id":"NCBITaxon:29471","l":"Pectobacterium atrosepticum","na":2,"nb":6,"a":[["genomics/abortive_infection_system.html","abortive infection system"],["genomics/toxin_system.html","ToxIN system"]],"b":[["NCBITaxon%3A29471","Pectobacterium atrosepticum"],["NCBITaxon%3A1289594","Pectobacterium atrosepticum CFBP 6276"],["NCBITaxon%3A1267546","Pectobacterium atrosepticum [Delta]HAI2-SCRI1043"],["NCBITaxon%3A1076138","Pectobacterium atrosepticum ICMP 1526"],["NCBITaxon%3A218491","Pectobacterium atrosepticum SCRI1043"],["NCBITaxon%3A77097","Vreelandella aquamarina"]]},{"id":"NCBITaxon:381666","l":"Cupriavidus necator H16","na":6,"nb":2,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"],["physiology/autotrophic.html","autotrophic"],["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["NCBITaxon%3A106590","Cupriavidus necator"],["NCBITaxon%3A381666","Cupriavidus necator H16"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":5,"nb":2,"a":[["metabolism/dimethyl_sulfoxide_respiration.html","dimethyl sulfoxide respiration"],["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/electron_transfer.html","Electron transfer"]],"b":[["NCBITaxon%3A70863","Shewanella oneidensis"],["NCBITaxon%3A211586","Shewanella oneidensis MR-1"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":2,"nb":5,"a":[["genomics/ploidy.html","ploidy"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["NCBITaxon%3A354","Azotobacter vinelandii"],["NCBITaxon%3A1283330","Azotobacter vinelandii CA"],["NCBITaxon%3A1283331","Azotobacter vinelandii CA6"],["NCBITaxon%3A322710","Azotobacter vinelandii DJ"],["NCBITaxon%3A1314750","Azotobacter vinelandii NBRC 13581"]]},{"id":"NCBITaxon:36861","l":"Thiobacillus denitrificans","na":2,"nb":5,"a":[["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/chemolithotrophic.html","chemolithotrophic"]],"b":[["NCBITaxon%3A274539","Chlorobaculum parvum"],["NCBITaxon%3A517417","Chlorobaculum parvum NCIB 8327"],["NCBITaxon%3A36861","Thiobacillus denitrificans"],["NCBITaxon%3A292415","Thiobacillus denitrificans ATCC 25259"],["NCBITaxon%3A1123392","Thiobacillus denitrificans DSM 12475"]]},{"id":"NCBITaxon:46632","l":"Picrophilus oshimae","na":5,"nb":2,"a":[["environment/acidophilic.html","acidophilic"],["environment/obligately_acidophilic.html","obligately acidophilic"],["environment/ph_growth_preference.html","pH growth preference"],["environment/ph_optimum_low.html","pH optimum low"],["environment/ph_range_very_low.html","pH range very low"]],"b":[["NCBITaxon%3A46632","Picrophilus oshimae"],["NCBITaxon%3A1122961","Picrophilus oshimae DSM 9789"]]},{"id":"NCBITaxon:915","l":"Nitrosomonas europaea","na":5,"nb":2,"a":[["physiology/autotrophic.html","autotrophic"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["NCBITaxon%3A915","Nitrosomonas europaea"],["NCBITaxon%3A228410","Nitrosomonas europaea ATCC 19718"]]},{"id":"NCBITaxon:171101","l":"Streptococcus pneumoniae (strain ATCC BAA-255 / R6)","na":4,"nb":2,"a":[["morphology/ellipsoidal.html","ellipsoidal"],["morphology/oval_shaped.html","oval shaped"],["morphology/ovoid_shaped.html","ovoid shaped"],["physiology/natural_competence.html","natural competence"]],"b":[["NCBITaxon%3A1165093","Streptococcus pneumoniae CCCB"],["NCBITaxon%3A171101","Streptococcus pneumoniae R6"]]},{"id":"NCBITaxon:194439","l":"Chlorobaculum tepidum TLS","na":4,"nb":2,"a":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"],["physiology/photoautotrophic.html","photoautotrophic"],["physiology/photolithoautotrophic.html","photolithoautotrophic"],["physiology/photolithotrophic.html","photolithotrophic"]],"b":[["NCBITaxon%3A1097","Chlorobaculum tepidum"],["NCBITaxon%3A194439","Chlorobaculum tepidum TLS"]]},{"id":"NCBITaxon:2746","l":"Halomonas elongata","na":4,"nb":2,"a":[["environment/euryhaline.html","euryhaline"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/moderately_halophilic.html","moderately halophilic"]],"b":[["NCBITaxon%3A2746","Halomonas elongata"],["NCBITaxon%3A768066","Halomonas elongata DSM 2581"]]},{"id":"NCBITaxon:301447","l":"Streptococcus pyogenes serotype M1","na":2,"nb":4,"a":[["genomics/crispr_cas_system.html","CRISPR-Cas system"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["NCBITaxon%3A1207470","Streptococcus pyogenes M1 476"],["NCBITaxon%3A160490","Streptococcus pyogenes M1 GAS"],["NCBITaxon%3A293653","Streptococcus pyogenes MGAS5005"],["NCBITaxon%3A301447","Streptococcus pyogenes serotype M1"]]},{"id":"NCBITaxon:70863","l":"Shewanella oneidensis","na":4,"nb":2,"a":[["environment/piezotolerant.html","piezotolerant"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/electron_transfer.html","Electron transfer"]],"b":[["NCBITaxon%3A70863","Shewanella oneidensis"],["NCBITaxon%3A211586","Shewanella oneidensis MR-1"]]},{"id":"NCBITaxon:735518","l":"Lederbergia graminis","na":4,"nb":2,"a":[["environment/nacl_delta.html","NaCl delta"],["environment/nacl_optimum_mid2.html","NaCl optimum mid2"],["environment/ph_delta_mid1.html","pH delta mid1"],["environment/temperature_range.html","temperature range"]],"b":[["NCBITaxon%3A1126234","Salinirubrum litoreum"],["NCBITaxon%3A735518","Lederbergia graminis"]]},{"id":"NCBITaxon:1108","l":"Chloroflexus aurantiacus","na":2,"nb":3,"a":[["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["morphology/green_pigmented.html","green pigmented"]],"b":[["NCBITaxon%3A1108","Chloroflexus aurantiacus"],["NCBITaxon%3A324602","Chloroflexus aurantiacus J-10-fl"],["NCBITaxon%3A480224","Chloroflexus aurantiacus Y-400-fl"]]},{"id":"NCBITaxon:2257","l":"Natronomonas pharaonis","na":3,"nb":2,"a":[["environment/alkaphilic.html","alkaliphilic"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/obligately_alkaphilic.html","obligately alkaliphilic"]],"b":[["NCBITaxon%3A2257","Natronomonas pharaonis"],["NCBITaxon%3A348780","Natronomonas pharaonis DSM 2160"]]},{"id":"NCBITaxon:2261","l":"Pyrococcus furiosus","na":2,"nb":3,"a":[["environment/hyperthermophilic.html","hyperthermophilic"],["environment/temperature_range_high.html","temperature range high"]],"b":[["NCBITaxon%3A2261","Pyrococcus furiosus"],["NCBITaxon%3A1185654","Pyrococcus furiosus COM1"],["NCBITaxon%3A186497","Pyrococcus furiosus DSM 3638"]]},{"id":"NCBITaxon:258224","l":"Corynebacterium resistens","na":2,"nb":3,"a":[["physiology/carboxylesterase_activity.html","carboxylesterase activity"],["physiology/naphthol_as_bi_phosphohydrolase_activity.html","naphthol-AS-BI-phosphohydrolase activity"]],"b":[["NCBITaxon%3A99807","Corynebacterium auriscanis"],["NCBITaxon%3A258224","Corynebacterium resistens"],["NCBITaxon%3A662755","Corynebacterium resistens DSM 45100"]]},{"id":"NCBITaxon:691","l":"Vibrio natriegens","na":2,"nb":3,"a":[["genomics/rrna_operon_copy_number.html","rRNA operon copy number"],["physiology/copiotrophic.html","copiotrophic"]],"b":[["NCBITaxon%3A691","Vibrio natriegens"],["NCBITaxon%3A1219067","Vibrio natriegens NBRC 15636 = ATCC 14048 = DSM 759"],["NCBITaxon%3A28169","Vibrio pelagius"]]},{"id":"NCBITaxon:69823","l":"Selenomonas sputigena","na":2,"nb":3,"a":[["physiology/alpha_galactosidase_activity.html","alpha-galactosidase activity"],["physiology/beta_galactosidase_activity.html","beta-galactosidase activity"]],"b":[["NCBITaxon%3A2053611","Selenomonas sp."],["NCBITaxon%3A69823","Selenomonas sputigena"],["NCBITaxon%3A546271","Selenomonas sputigena ATCC 35185"]]},{"id":"NCBITaxon:74109","l":"Photobacterium profundum","na":2,"nb":3,"a":[["environment/piezophilic.html","piezophilic"],["environment/piezotolerant.html","piezotolerant"]],"b":[["NCBITaxon%3A74109","Photobacterium profundum"],["NCBITaxon%3A314280","Photobacterium profundum 3TCK"],["NCBITaxon%3A298386","Photobacterium profundum SS9"]]},{"id":"NCBITaxon:79885","l":"Alkalihalophilus pseudofirmus","na":2,"nb":3,"a":[["environment/alkalotolerant.html","alkalotolerant"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"]],"b":[["NCBITaxon%3A79885","Alkalihalophilus pseudofirmus"],["NCBITaxon%3A398511","Alkalihalophilus pseudofirmus OF4"],["NCBITaxon%3A83428","uncultured Bacillus sp."]]},{"id":"NCBITaxon:86665","l":"Halalkalibacterium halodurans","na":2,"nb":3,"a":[["environment/alkalotolerant.html","alkalotolerant"],["environment/alkaphilic.html","alkaliphilic"]],"b":[["NCBITaxon%3A86665","Halalkalibacterium halodurans"],["NCBITaxon%3A272558","Halalkalibacterium halodurans C-125"],["NCBITaxon%3A83428","uncultured Bacillus sp."]]},{"id":"NCBITaxon:1097","l":"Chlorobaculum tepidum","na":2,"nb":2,"a":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"],["morphology/green_pigmented.html","green pigmented"]],"b":[["NCBITaxon%3A1097","Chlorobaculum tepidum"],["NCBITaxon%3A194439","Chlorobaculum tepidum TLS"]]},{"id":"NCBITaxon:2069301","l":"Evansella tamaricis","na":2,"nb":2,"a":[["environment/ph_growth_preference.html","pH growth preference"],["environment/ph_range_mid3.html","pH range mid3"]],"b":[["NCBITaxon%3A1505037","Emcibacter nanhaiensis"],["NCBITaxon%3A2069301","Evansella tamaricis"]]},{"id":"NCBITaxon:2190","l":"Methanocaldococcus jannaschii","na":2,"nb":2,"a":[["metabolism/methanogenesis.html","Methanogenesis"],["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["NCBITaxon%3A2190","Methanocaldococcus jannaschii"],["NCBITaxon%3A243232","Methanocaldococcus jannaschii DSM 2661"]]},{"id":"NCBITaxon:243273","l":"Mycoplasmoides genitalium (strain ATCC 33530 / DSM 19775 / NCTC 10195 / G37)","na":2,"nb":2,"a":[["genomics/gc_high.html","GC high"],["genomics/genome_size.html","genome size"]],"b":[["NCBITaxon%3A2097","Mycoplasmoides genitalium"],["NCBITaxon%3A243273","Mycoplasmoides genitalium G37"]]},{"id":"NCBITaxon:272562","l":"Clostridium acetobutylicum (strain ATCC 824 / DSM 792 / JCM 1419 / IAM 19013 / LMG 5710 / NBRC 13948 / NRRL B-527 / VKM B-1787 / 2291 / W)","na":2,"nb":2,"a":[["metabolism/acetone_butanol_ethanol_fermentation.html","acetone-butanol-ethanol fermentation"],["metabolism/fermentation.html","Fermentation"]],"b":[["NCBITaxon%3A1488","Clostridium acetobutylicum"],["NCBITaxon%3A272562","Clostridium acetobutylicum ATCC 824"]]},{"id":"NCBITaxon:317655","l":"Sphingopyxis alaskensis RB2256","na":2,"nb":2,"a":[["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"]],"b":[["NCBITaxon%3A117207","Sphingopyxis alaskensis"],["NCBITaxon%3A317655","Sphingopyxis alaskensis RB2256"]]},{"id":"NCBITaxon:334543","l":"Psychrobacter arcticus","na":2,"nb":2,"a":[["environment/delta_phenotype_with_numerical_limits.html","delta phenotype with numerical limits"],["environment/facultative_psychrophilic.html","facultative psychrophilic"]],"b":[["NCBITaxon%3A334543","Psychrobacter arcticus"],["NCBITaxon%3A259536","Psychrobacter arcticus 273-4"]]},{"id":"NCBITaxon:375929","l":"Natranaerobius thermophilus","na":2,"nb":2,"a":[["environment/growth_range_phenotype_with_numerical_limits.html","growth range phenotype with numerical limits"],["environment/salinity_phenotype_with_numerical_limits.html","salinity phenotype with numerical limits"]],"b":[["NCBITaxon%3A375929","Natranaerobius thermophilus"],["NCBITaxon%3A457570","Natranaerobius thermophilus JW/NM-WN-LF"]]},{"id":"NCBITaxon:504092","l":"Kushneria aurantia","na":2,"nb":2,"a":[["environment/nacl_range.html","NaCl range"],["environment/temperature_delta.html","temperature delta"]],"b":[["NCBITaxon%3A504092","Kushneria aurantia"],["NCBITaxon%3A1122139","Kushneria aurantia DSM 21353"]]},{"id":"NCBITaxon:1126","l":"Microcystis aeruginosa","na":1,"nb":1085,"a":[["morphology/gas_vesicle.html","gas vesicle"]],"b":[["NCBITaxon%3A1126","Microcystis aeruginosa"],["NCBITaxon%3A270630","Microcystis aeruginosa 0BB35S02"],["NCBITaxon%3A270631","Microcystis aeruginosa 0BF29S01"],["NCBITaxon%3A270632","Microcystis aeruginosa 0BF29S03"],["NCBITaxon%3A2358142","Microcystis aeruginosa 11-30S32"],["NCBITaxon%3A3113711","Microcystis aeruginosa 1339"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":1,"nb":1075,"a":[["ecology/opportunistic_pathogen.html","opportunistic pathogen"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A1311139","Acinetobacter baumannii 016901DP_1"],["NCBITaxon%3A1311140","Acinetobacter baumannii 016901DP_2"],["NCBITaxon%3A1310784","Acinetobacter baumannii 1007214"],["NCBITaxon%3A1310751","Acinetobacter baumannii 1022959"],["NCBITaxon%3A1310586","Acinetobacter baumannii 1031433"]]},{"id":"NCBITaxon:165695","l":"Sphingobium","na":1,"nb":663,"a":[["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["NCBITaxon%3A86193","Sphingobium abikonense"],["NCBITaxon%3A1219036","Sphingobium abikonense NBRC 16140"],["NCBITaxon%3A2933566","Sphingobium agri"],["NCBITaxon%3A3341828","Sphingobium agrisoli"],["NCBITaxon%3A2008318","Sphingobium algorifonticola"],["NCBITaxon%3A135719","Sphingobium amiense"]]},{"id":"NCBITaxon:2093","l":"Mycoplasma","na":1,"nb":495,"a":[["morphology/pleomorphic_shaped.html","pleomorphic shaped"]],"b":[["NCBITaxon%3A871300","Candidatus Mycoplasma aoti"],["NCBITaxon%3A762822","Candidatus Mycoplasma erythrocervae"],["NCBITaxon%3A432608","Candidatus Mycoplasma haematobovis"],["NCBITaxon%3A3385516","Candidatus Mycoplasma haematobrackenitadaridae"],["NCBITaxon%3A762824","Candidatus Mycoplasma haematocervi"],["NCBITaxon%3A112247","Candidatus Mycoplasma haematodidelphidis"]]},{"id":"NCBITaxon:1639","l":"Listeria monocytogenes","na":1,"nb":478,"a":[["environment/psychrotolerant.html","psychrotolerant"]],"b":[["NCBITaxon%3A1639","Listeria monocytogenes"],["NCBITaxon%3A1126011","Listeria monocytogenes 07PF0776"],["NCBITaxon%3A653938","Listeria monocytogenes 08-5578"],["NCBITaxon%3A637381","Listeria monocytogenes 08-5923"],["NCBITaxon%3A393133","Listeria monocytogenes 10403S"],["NCBITaxon%3A1380708","Listeria monocytogenes 36-25-1"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":1,"nb":375,"a":[["other/catalase_negative.html","catalase negative"]],"b":[["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A1352","Enterococcus faecium"],["NCBITaxon%3A1391465","Enterococcus faecium 10/96A"],["NCBITaxon%3A1259824","Enterococcus faecium 13.SD.W.09"],["NCBITaxon%3A1429401","Enterococcus faecium 17282"],["NCBITaxon%3A565659","Enterococcus faecium 1,141,733"]]},{"id":"NCBITaxon:173","l":"Leptospira interrogans","na":1,"nb":312,"a":[["morphology/axially_filamented.html","axially filamented"]],"b":[["NCBITaxon%3A173","Leptospira interrogans"],["NCBITaxon%3A860644","Leptospira interrogans serovar Akiyami"],["NCBITaxon%3A428408","Leptospira interrogans serovar Anhui"],["NCBITaxon%3A211882","Leptospira interrogans serovar Australis"],["NCBITaxon%3A1085541","Leptospira interrogans serovar Australis str. 200703203"],["NCBITaxon%3A1308441","Leptospira interrogans serovar Australis str. LT2080"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":1,"nb":287,"a":[["ecology/biosafety_level_3.html","biosafety level 3"]],"b":[["NCBITaxon%3A632","Yersinia pestis"],["NCBITaxon%3A1345710","Yersinia pestis 1045"],["NCBITaxon%3A1330535","Yersinia pestis 113"],["NCBITaxon%3A755859","Yersinia pestis 12"],["NCBITaxon%3A1345703","Yersinia pestis 1412"],["NCBITaxon%3A1345704","Yersinia pestis 1413"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":1,"nb":264,"a":[["morphology/lateral_flagellation.html","lateral flagellation"]],"b":[["NCBITaxon%3A663","Vibrio alginolyticus"],["NCBITaxon%3A29494","Vibrio furnissii"],["NCBITaxon%3A675811","Vibrio furnissii CIP 102972"],["NCBITaxon%3A670","Vibrio parahaemolyticus"],["NCBITaxon%3A1238231","Vibrio parahaemolyticus 10290"],["NCBITaxon%3A1238195","Vibrio parahaemolyticus 10296"]]},{"id":"NCBITaxon:125216","l":"Roseomonas","na":1,"nb":244,"a":[["morphology/pink_pigmented.html","pink pigmented"]],"b":[["NCBITaxon%3A204091","Candidatus Roseomonas massiliae"],["NCBITaxon%3A287609","Neoroseomonas lacus"],["NCBITaxon%3A525371","Pseudoroseomonas cervicalis ATCC 49957"],["NCBITaxon%3A1225642","Roseomonas aceris"],["NCBITaxon%3A2937791","Roseomonas acroporae"],["NCBITaxon%3A2846776","Roseomonas alba"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":1,"nb":216,"a":[["environment/microaerophilic.html","microaerophilic"]],"b":[["NCBITaxon%3A863522","Bryocella elongata"],["NCBITaxon%3A195","Campylobacter coli"],["NCBITaxon%3A197","Campylobacter jejuni"],["NCBITaxon%3A1365653","Campylobacter jejuni 10186"],["NCBITaxon%3A1365189","Campylobacter jejuni 10187"],["NCBITaxon%3A1327986","Campylobacter jejuni 10227"]]},{"id":"NCBITaxon:1219","l":"Prochlorococcus marinus","na":1,"nb":214,"a":[["genomics/genome_streamlining.html","genome streamlining"]],"b":[["NCBITaxon%3A379362","environmental samples"],["NCBITaxon%3A1219","Prochlorococcus marinus"],["NCBITaxon%3A2724906","Prochlorococcus marinus 150NLHA"],["NCBITaxon%3A2724907","Prochlorococcus marinus 150SLHA"],["NCBITaxon%3A2724908","Prochlorococcus marinus 150SLHB"],["NCBITaxon%3A1041938","Prochlorococcus marinus bv. HNLC1"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":1,"nb":183,"a":[["ecology/plant_pathogen.html","plant pathogen"]],"b":[["NCBITaxon%3A86840","Pseudomonas cannabina"],["NCBITaxon%3A53409","Pseudomonas coronafaciens"],["NCBITaxon%3A29438","Pseudomonas savastanoi"],["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A1204471","Pseudomonas syringae BRIP34876"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":176,"a":[["morphology/motility.html","motility"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A90371","Salmonella enterica subsp. enterica serovar Typhimurium"],["NCBITaxon%3A1173928","Salmonella enterica subsp. enterica serovar Typhimurium str. 0052"],["NCBITaxon%3A1114946","Salmonella enterica subsp. enterica serovar Typhimurium str. 00-01036"],["NCBITaxon%3A1173930","Salmonella enterica subsp. enterica serovar Typhimurium str. 0364"]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":1,"nb":88,"a":[["morphology/yellow_pigmented.html","yellow pigmented"]],"b":[["NCBITaxon%3A298","Pseudomonas marginalis"],["NCBITaxon%3A56448","Xanthomonas arboricola"],["NCBITaxon%3A339","Xanthomonas campestris"],["NCBITaxon%3A1281290","Xanthomonas campestris CFBP 5824"],["NCBITaxon%3A1281289","Xanthomonas campestris CFBP 5825"],["NCBITaxon%3A1182783","Xanthomonas campestris JX"]]},{"id":"NCBITaxon:139","l":"Borreliella burgdorferi","na":1,"nb":43,"a":[["genomics/plasmid_carriage.html","plasmid carriage"]],"b":[["NCBITaxon%3A139","Borreliella burgdorferi"],["NCBITaxon%3A476210","Borreliella burgdorferi 118a"],["NCBITaxon%3A445983","Borreliella burgdorferi 156a"],["NCBITaxon%3A521009","Borreliella burgdorferi 297"],["NCBITaxon%3A498738","Borreliella burgdorferi 29805"],["NCBITaxon%3A498740","Borreliella burgdorferi 64b"]]},{"id":"NCBITaxon:747","l":"Pasteurella multocida","na":1,"nb":38,"a":[["ecology/animal_pathogen.html","animal pathogen"]],"b":[["NCBITaxon%3A714","Aggregatibacter actinomycetemcomitans"],["NCBITaxon%3A747","Pasteurella multocida"],["NCBITaxon%3A1298929","Pasteurella multocida 1500C"],["NCBITaxon%3A1298924","Pasteurella multocida 1500E"],["NCBITaxon%3A1298925","Pasteurella multocida 2000"],["NCBITaxon%3A1075089","Pasteurella multocida 36950"]]},{"id":"NCBITaxon:851","l":"Fusobacterium nucleatum","na":1,"nb":35,"a":[["morphology/fusiform_shaped.html","fusiform shaped"]],"b":[["NCBITaxon%3A76859","Fusobacterium animalis"],["NCBITaxon%3A997347","Fusobacterium animalis ATCC 51191"],["NCBITaxon%3A1583098","Fusobacterium hwasookii"],["NCBITaxon%3A1216362","Fusobacterium hwasookii ChDC F128"],["NCBITaxon%3A1307441","Fusobacterium hwasookii ChDC F145"],["NCBITaxon%3A1307442","Fusobacterium hwasookii ChDC F174"]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":1,"nb":31,"a":[["other/voges_proskauer_test_positive.html","Voges-Proskauer test positive"]],"b":[["NCBITaxon%3A571","Klebsiella oxytoca"],["NCBITaxon%3A883116","Klebsiella oxytoca 09-7231"],["NCBITaxon%3A883117","Klebsiella oxytoca 10-5242"],["NCBITaxon%3A883118","Klebsiella oxytoca 10-5243"],["NCBITaxon%3A883119","Klebsiella oxytoca 10-5244"],["NCBITaxon%3A883120","Klebsiella oxytoca 10-5245"]]},{"id":"NCBITaxon:1717","l":"Corynebacterium diphtheriae","na":1,"nb":28,"a":[["morphology/dumbbell_shaped.html","dumbbell shaped"]],"b":[["NCBITaxon%3A1717","Corynebacterium diphtheriae"],["NCBITaxon%3A698966","Corynebacterium diphtheriae 241"],["NCBITaxon%3A698962","Corynebacterium diphtheriae 31A"],["NCBITaxon%3A698973","Corynebacterium diphtheriae BH8"],["NCBITaxon%3A1720349","Corynebacterium diphtheriae bv. gravis"],["NCBITaxon%3A1450521","Corynebacterium diphtheriae bv. gravis str. ISS 4060"]]},{"id":"NCBITaxon:1859128","l":"Candidatus Electrothrix","na":1,"nb":25,"a":[["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"]],"b":[["NCBITaxon%3A1859131","Candidatus Electrothrix aarhusensis"],["NCBITaxon%3A3062594","Candidatus Electrothrix aestuarii"],["NCBITaxon%3A1859133","Candidatus Electrothrix communis"],["NCBITaxon%3A2202844","Candidatus Electrothrix gigas"],["NCBITaxon%3A1859132","Candidatus Electrothrix japonica"],["NCBITaxon%3A3036123","Candidatus Electrothrix laxa"]]},{"id":"NCBITaxon:47951","l":"Vibrio cyclitrophicus","na":1,"nb":23,"a":[["genomics/sspabcd_sspe_system.html","SspABCD-SspE system"]],"b":[["NCBITaxon%3A47951","Vibrio cyclitrophicus"],["NCBITaxon%3A1136156","Vibrio cyclitrophicus 12F01"],["NCBITaxon%3A1136159","Vibrio cyclitrophicus 1F111"],["NCBITaxon%3A1136160","Vibrio cyclitrophicus 1F175"],["NCBITaxon%3A1136161","Vibrio cyclitrophicus 1F273"],["NCBITaxon%3A1136162","Vibrio cyclitrophicus 1F289"]]},{"id":"NCBITaxon:837","l":"Porphyromonas gingivalis","na":1,"nb":22,"a":[["morphology/black_pigmented.html","black pigmented"]],"b":[["NCBITaxon%3A837","Porphyromonas gingivalis"],["NCBITaxon%3A1403335","Porphyromonas gingivalis 381"],["NCBITaxon%3A1403337","Porphyromonas gingivalis A7436"],["NCBITaxon%3A1403338","Porphyromonas gingivalis A7A1-28"],["NCBITaxon%3A1403336","Porphyromonas gingivalis AJW4"],["NCBITaxon%3A431947","Porphyromonas gingivalis ATCC 33277"]]},{"id":"NCBITaxon:1579","l":"Lactobacillus acidophilus","na":1,"nb":20,"a":[["environment/acidotolerant.html","acidotolerant"]],"b":[["NCBITaxon%3A1597","Lacticaseibacillus paracasei"],["NCBITaxon%3A1590","Lactiplantibacillus plantarum"],["NCBITaxon%3A1579","Lactobacillus acidophilus"],["NCBITaxon%3A891391","Lactobacillus acidophilus 30SC"],["NCBITaxon%3A525306","Lactobacillus acidophilus ATCC 4796"],["NCBITaxon%3A1421011","Lactobacillus acidophilus CFH"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":1,"nb":19,"a":[["metabolism/starch_degradation.html","starch degradation"]],"b":[["NCBITaxon%3A1402","Bacillus licheniformis"],["NCBITaxon%3A1169411","Bacillus licheniformis 10-1-A"],["NCBITaxon%3A44097","Bacillus licheniformis 2709"],["NCBITaxon%3A1169412","Bacillus licheniformis 5-2-D"],["NCBITaxon%3A1368424","Bacillus licheniformis CG-B52"],["NCBITaxon%3A1232672","Bacillus licheniformis CGMCC 3963"]]},{"id":"NCBITaxon:672","l":"Vibrio vulnificus","na":1,"nb":19,"a":[["physiology/viable_but_nonculturable_state.html","viable but nonculturable state"]],"b":[["NCBITaxon%3A678","Vibrio sp."],["NCBITaxon%3A672","Vibrio vulnificus"],["NCBITaxon%3A701179","Vibrio vulnificus 06-2450"],["NCBITaxon%3A1246308","Vibrio vulnificus 96-11-17M"],["NCBITaxon%3A1246309","Vibrio vulnificus A1402"],["NCBITaxon%3A1229202","Vibrio vulnificus B2"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":1,"nb":16,"a":[["physiology/lipase_activity.html","lipase activity"]],"b":[["NCBITaxon%3A1408","Bacillus pumilus"],["NCBITaxon%3A536229","Bacillus pumilus ATCC 7061"],["NCBITaxon%3A1227811","Bacillus pumilus BA06"],["NCBITaxon%3A1189615","Bacillus pumilus BL8"],["NCBITaxon%3A1350468","Bacillus pumilus CCMA-560"],["NCBITaxon%3A1330463","Bacillus pumilus CIMFR"]]},{"id":"NCBITaxon:160","l":"Treponema pallidum","na":1,"nb":15,"a":[["morphology/spirochete_shaped.html","spirochete shaped"]],"b":[["NCBITaxon%3A160","Treponema pallidum"],["NCBITaxon%3A1155775","Treponema pallidum str. Fribourg-Blanc"],["NCBITaxon%3A53436","Treponema pallidum subsp. endemicum"],["NCBITaxon%3A1155776","Treponema pallidum subsp. endemicum str. Bosnia A"],["NCBITaxon%3A161","Treponema pallidum subsp. pallidum"],["NCBITaxon%3A491081","Treponema pallidum subsp. pallidum DAL-1"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":1,"nb":15,"a":[["morphology/branched_shaped.html","branched shaped"]],"b":[["NCBITaxon%3A1681","Bifidobacterium bifidum"],["NCBITaxon%3A500634","Bifidobacterium bifidum ATCC 29521 = JCM 1255 = DSM 20456"],["NCBITaxon%3A484020","Bifidobacterium bifidum BGN4"],["NCBITaxon%3A1263058","Bifidobacterium bifidum CAG:234"],["NCBITaxon%3A1173065","Bifidobacterium bifidum CECT 7366"],["NCBITaxon%3A398515","Bifidobacterium bifidum DSM 20215"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":1,"nb":15,"a":[["physiology/alkaline_phosphatase_activity.html","alkaline phosphatase activity"]],"b":[["NCBITaxon%3A175628","Gordonia paraffinivorans"],["NCBITaxon%3A1785","Mycobacterium sp."],["NCBITaxon%3A1772","Mycolicibacterium smegmatis"],["NCBITaxon%3A1455235","Mycolicibacterium smegmatis 30-MsmegS_ND_60_A"],["NCBITaxon%3A1455243","Mycolicibacterium smegmatis 31-MsmegS_CIP_60_A"],["NCBITaxon%3A1455251","Mycolicibacterium smegmatis 32-MsmegS_CIP_30_A"]]},{"id":"NCBITaxon:55601","l":"Vibrio anguillarum","na":1,"nb":15,"a":[["genomics/sspabcd_sspfgh_system.html","SspABCD-SspFGH system"]],"b":[["NCBITaxon%3A1056982","Gordonia phosphorivorans"],["NCBITaxon%3A55601","Vibrio anguillarum"],["NCBITaxon%3A1161910","Vibrio anguillarum 13YK-003"],["NCBITaxon%3A882102","Vibrio anguillarum 775"],["NCBITaxon%3A990314","Vibrio anguillarum 96F"],["NCBITaxon%3A882846","Vibrio anguillarum ATCC 43308"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":1,"nb":14,"a":[["physiology/photoheterotrophic.html","photoheterotrophic"]],"b":[["NCBITaxon%3A1076","Rhodopseudomonas palustris"],["NCBITaxon%3A74570","Rhodopseudomonas palustris ATCC 17001"],["NCBITaxon%3A74573","Rhodopseudomonas palustris ATCC 17007"],["NCBITaxon%3A316055","Rhodopseudomonas palustris BisA53"],["NCBITaxon%3A316056","Rhodopseudomonas palustris BisB18"],["NCBITaxon%3A316057","Rhodopseudomonas palustris BisB5"]]},{"id":"NCBITaxon:28132","l":"Prevotella melaninogenica","na":1,"nb":14,"a":[["morphology/black_pigmented.html","black pigmented"]],"b":[["NCBITaxon%3A840","Hoylesella loescheii"],["NCBITaxon%3A1122985","Hoylesella loescheii DSM 19665 = JCM 12249 = ATCC 15930"],["NCBITaxon%3A28123","Porphyromonas asaccharolytica"],["NCBITaxon%3A837","Porphyromonas gingivalis"],["NCBITaxon%3A28114","Porphyromonas levii"],["NCBITaxon%3A1122973","Porphyromonas levii DSM 23370"]]},{"id":"NCBITaxon:782","l":"Rickettsia prowazekii","na":1,"nb":13,"a":[["ecology/parasitism.html","parasitism"]],"b":[["NCBITaxon%3A782","Rickettsia prowazekii"],["NCBITaxon%3A1290428","Rickettsia prowazekii str. Breinl"],["NCBITaxon%3A1105096","Rickettsia prowazekii str. BuV67-CWPP"],["NCBITaxon%3A1290430","Rickettsia prowazekii str. Cairo 3"],["NCBITaxon%3A1105094","Rickettsia prowazekii str. Chernikova"],["NCBITaxon%3A1105097","Rickettsia prowazekii str. Dachau"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":13,"a":[["physiology/dormancy.html","dormancy"]],"b":[["NCBITaxon%3A1773","Mycobacterium tuberculosis"],["NCBITaxon%3A83332","Mycobacterium tuberculosis H37Rv"],["NCBITaxon%3A747078","Mycobacterium tuberculosis H37Rv_2009"],["NCBITaxon%3A928249","Mycobacterium tuberculosis H37Rv_ideR_mutant_ST22"],["NCBITaxon%3A757417","Mycobacterium tuberculosis H37RvAE"],["NCBITaxon%3A757419","Mycobacterium tuberculosis H37RvCO"]]},{"id":"NCBITaxon:435","l":"Acetobacter aceti","na":1,"nb":12,"a":[["environment/acidotolerant.html","acidotolerant"]],"b":[["NCBITaxon%3A435","Acetobacter aceti"],["NCBITaxon%3A1457393","Acetobacter aceti 1023"],["NCBITaxon%3A663932","Acetobacter aceti ATCC 23746"],["NCBITaxon%3A887700","Acetobacter aceti NBRC 14818"],["NCBITaxon%3A1206747","Acetobacter aceti NRIC 0242"],["NCBITaxon%3A178900","Acetobacter cerevisiae"]]},{"id":"NCBITaxon:54291","l":"Klebsiella ornithinolytica","na":1,"nb":12,"a":[["other/methyl_red_test_positive.html","methyl red test positive"]],"b":[["NCBITaxon%3A54291","Klebsiella ornithinolytica"],["NCBITaxon%3A883121","Klebsiella ornithinolytica 10-5246"],["NCBITaxon%3A1444039","Klebsiella ornithinolytica 2-156-04_S1_C1"],["NCBITaxon%3A1444067","Klebsiella ornithinolytica 2-156-04_S1_C2"],["NCBITaxon%3A1286170","Klebsiella ornithinolytica B6"],["NCBITaxon%3A1357411","Klebsiella ornithinolytica CD1_MRS_4"]]},{"id":"NCBITaxon:584","l":"Proteus mirabilis","na":1,"nb":12,"a":[["morphology/swarming_motility.html","swarming motility"]],"b":[["NCBITaxon%3A584","Proteus mirabilis"],["NCBITaxon%3A1285374","Proteus mirabilis 1014"],["NCBITaxon%3A1308721","Proteus mirabilis ADL-319"],["NCBITaxon%3A1308722","Proteus mirabilis ADL-321"],["NCBITaxon%3A1308723","Proteus mirabilis ADL-401"],["NCBITaxon%3A525369","Proteus mirabilis ATCC 29906"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":1,"nb":10,"a":[["morphology/s_layer.html","S-layer"]],"b":[["NCBITaxon%3A1891658","Geobacillus sp."],["NCBITaxon%3A1422","Geobacillus stearothermophilus"],["NCBITaxon%3A272567","Geobacillus stearothermophilus 10"],["NCBITaxon%3A1366047","Geobacillus stearothermophilus ATCC 12980"],["NCBITaxon%3A937593","Geobacillus stearothermophilus ATCC 7953"],["NCBITaxon%3A664733","Geobacillus stearothermophilus C56-N21"]]},{"id":"NCBITaxon:1599","l":"Latilactobacillus sakei","na":1,"nb":9,"a":[["physiology/arginine_dihydrolase_activity.html","arginine dihydrolase activity"]],"b":[["NCBITaxon%3A1599","Latilactobacillus sakei"],["NCBITaxon%3A1381395","Latilactobacillus sakei dgh6"],["NCBITaxon%3A1634","Latilactobacillus sakei L45"],["NCBITaxon%3A214325","Latilactobacillus sakei subsp. carnosus"],["NCBITaxon%3A525363","Latilactobacillus sakei subsp. carnosus DSM 15831"],["NCBITaxon%3A214326","Latilactobacillus sakei subsp. sakei"]]},{"id":"NCBITaxon:1830","l":"Rhodococcus ruber","na":1,"nb":9,"a":[["morphology/orange_pigmented.html","orange pigmented"]],"b":[["NCBITaxon%3A941184","Nocardia salmonicolor"],["NCBITaxon%3A1830","Rhodococcus ruber"],["NCBITaxon%3A1278076","Rhodococcus ruber BKS 20-38"],["NCBITaxon%3A1240349","Rhodococcus ruber Chol-4"],["NCBITaxon%3A3392186","Rhodococcus ruber IEGM1217"],["NCBITaxon%3A3392194","Rhodococcus ruber IEGM453"]]},{"id":"NCBITaxon:192222","l":"Campylobacter jejuni subsp. jejuni NCTC 11168 = ATCC 700819","na":1,"nb":9,"a":[["environment/capnophilic.html","capnophilic"]],"b":[["NCBITaxon%3A197","Campylobacter jejuni"],["NCBITaxon%3A192222","Campylobacter jejuni subsp. jejuni NCTC 11168 = ATCC 700819"],["NCBITaxon%3A1211776","Campylobacter jejuni subsp. jejuni NCTC 11168-BN148"],["NCBITaxon%3A1385724","Campylobacter jejuni subsp. jejuni NCTC 11168-GSv"],["NCBITaxon%3A1385720","Campylobacter jejuni subsp. jejuni NCTC 11168-K12E5"],["NCBITaxon%3A1385723","Campylobacter jejuni subsp. jejuni NCTC 11168-Kf1"]]},{"id":"NCBITaxon:3029272","l":"Amygdalobacter indicium","na":9,"nb":1,"a":[["physiology/alanine_arylamidase_activity.html","alanine arylamidase activity"],["physiology/alpha_chymotrypsin_activity.html","alpha-chymotrypsin activity"],["physiology/glutamyl_glutamic_acid_arylamidase_activity.html","glutamyl glutamic acid arylamidase activity"],["physiology/glycine_arylamidase_activity.html","glycine arylamidase activity"],["physiology/histidine_arylamidase_activity.html","histidine arylamidase activity"],["physiology/leucyl_glycine_arylamidase_activity.html","leucyl glycine arylamidase activity"]],"b":[["NCBITaxon%3A3029272","Amygdalobacter indicium"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":8,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["NCBITaxon%3A1515","Acetivibrio thermocellus"],["NCBITaxon%3A1138384","Acetivibrio thermocellus AD2"],["NCBITaxon%3A203119","Acetivibrio thermocellus ATCC 27405"],["NCBITaxon%3A1349417","Acetivibrio thermocellus BC1"],["NCBITaxon%3A637887","Acetivibrio thermocellus DSM 1313"],["NCBITaxon%3A572545","Acetivibrio thermocellus DSM 2360"]]},{"id":"NCBITaxon:1744","l":"Propionibacterium freudenreichii","na":1,"nb":8,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["NCBITaxon%3A1591","Lactobacillus sp."],["NCBITaxon%3A1744","Propionibacterium freudenreichii"],["NCBITaxon%3A66712","Propionibacterium freudenreichii subsp. freudenreichii"],["NCBITaxon%3A1408888","Propionibacterium freudenreichii subsp. freudenreichii ITG P20"],["NCBITaxon%3A1219357","Propionibacterium freudenreichii subsp. freudenreichii NBRC 12424"],["NCBITaxon%3A1752","Propionibacterium freudenreichii subsp. shermanii"]]},{"id":"NCBITaxon:3028314","l":"Oceanimonas pelagia","na":8,"nb":1,"a":[["environment/optimum_phenotype_with_numerical_limits.html","optimum phenotype with numerical limits"],["environment/ph_delta.html","pH delta"],["environment/ph_range.html","pH range"],["environment/temperature_optimum.html","temperature optimum"],["environment/temperature_range_mid4.html","temperature range mid4"],["genomics/gc_mid2.html","GC mid2"]],"b":[["NCBITaxon%3A3028314","Oceanimonas pelagia"]]},{"id":"NCBITaxon:99287","l":"Salmonella typhimurium (strain LT2 / SGSC1412 / ATCC 700720)","na":1,"nb":8,"a":[["metabolism/tetrathionate_respiration.html","tetrathionate respiration"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A588858","Salmonella enterica subsp. enterica serovar Typhimurium str. 14028S"],["NCBITaxon%3A1094461","Salmonella enterica subsp. enterica serovar Typhimurium str. G455"],["NCBITaxon%3A99287","Salmonella enterica subsp. enterica serovar Typhimurium str. LT2"],["NCBITaxon%3A1159899","Salmonella enterica subsp. enterica serovar Typhimurium str. LT2-4"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":1,"nb":7,"a":[["morphology/polar_flagellation.html","polar flagellation"]],"b":[["NCBITaxon%3A663","Vibrio alginolyticus"],["NCBITaxon%3A314288","Vibrio alginolyticus 12G01"],["NCBITaxon%3A674977","Vibrio alginolyticus 40B"],["NCBITaxon%3A664","Vibrio alginolyticus chemovar iophagus"],["NCBITaxon%3A1219076","Vibrio alginolyticus NBRC 15630 = ATCC 17749"],["NCBITaxon%3A669","Vibrio harveyi"]]},{"id":"NCBITaxon:1111708","l":"Synechocystis sp. (strain ATCC 27184 / PCC 6803 / Kazusa)","na":6,"nb":1,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/photoautotrophic.html","photoautotrophic"],["physiology/photolithotrophic.html","photolithotrophic"],["physiology/phototrophic.html","phototrophic"]],"b":[["NCBITaxon%3A1111708","Synechocystis sp. PCC 6803 substr. Kazusa"]]},{"id":"NCBITaxon:1377","l":"Aerococcus viridans","na":1,"nb":6,"a":[["morphology/tetrad_arrangement.html","tetrad arrangement"]],"b":[["NCBITaxon%3A1872398","Aerococcus sp."],["NCBITaxon%3A1377","Aerococcus viridans"],["NCBITaxon%3A655812","Aerococcus viridans ATCC 11563 = CCUG 4311"],["NCBITaxon%3A1175629","Aerococcus viridans LL1"],["NCBITaxon%3A1255702","Aerococcus viridans TL327A"],["NCBITaxon%3A1254","Pediococcus acidilactici"]]},{"id":"NCBITaxon:2285","l":"Sulfolobus acidocaldarius","na":1,"nb":6,"a":[["environment/temperature_range_high.html","temperature range high"]],"b":[["NCBITaxon%3A2287","Saccharolobus solfataricus"],["NCBITaxon%3A2285","Sulfolobus acidocaldarius"],["NCBITaxon%3A330779","Sulfolobus acidocaldarius DSM 639"],["NCBITaxon%3A1028566","Sulfolobus acidocaldarius N8"],["NCBITaxon%3A1028567","Sulfolobus acidocaldarius Ron12/I"],["NCBITaxon%3A1435377","Sulfolobus acidocaldarius SUSAZ"]]},{"id":"NCBITaxon:29339","l":"Bacillus thuringiensis serovar kurstaki","na":1,"nb":6,"a":[["physiology/quorum_sensing.html","quorum sensing"]],"b":[["NCBITaxon%3A714359","Bacillus thuringiensis BMB171"],["NCBITaxon%3A29339","Bacillus thuringiensis serovar kurstaki"],["NCBITaxon%3A1279365","Bacillus thuringiensis serovar kurstaki str. HD73"],["NCBITaxon%3A1261129","Bacillus thuringiensis serovar kurstaki str. HD-1"],["NCBITaxon%3A527023","Bacillus thuringiensis serovar kurstaki str. T03a001"],["NCBITaxon%3A570416","Bacillus thuringiensis serovar kurstaki str. YBT-1520"]]},{"id":"NCBITaxon:1513592","l":"Colwellia marinimaniae","na":5,"nb":1,"a":[["environment/obligately_piezophilic.html","obligately piezophilic"],["environment/piezophilic.html","piezophilic"],["environment/pressure_delta.html","pressure delta"],["environment/pressure_optimum.html","pressure optimum"],["environment/pressure_range.html","pressure range"]],"b":[["NCBITaxon%3A1513592","Colwellia marinimaniae"]]},{"id":"NCBITaxon:1665","l":"Arthrobacter globiformis","na":1,"nb":5,"a":[["morphology/gram_variable.html","gram variable"]],"b":[["NCBITaxon%3A1665","Arthrobacter globiformis"],["NCBITaxon%3A1077972","Arthrobacter globiformis NBRC 12137"],["NCBITaxon%3A1667","Arthrobacter sp."],["NCBITaxon%3A169875","Arthrobacter sp. JCM 1339"],["NCBITaxon%3A1701","Brevibacterium sp."]]},{"id":"NCBITaxon:1752","l":"Propionibacterium freudenreichii subsp. shermanii","na":1,"nb":5,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["NCBITaxon%3A1591","Lactobacillus sp."],["NCBITaxon%3A1744","Propionibacterium freudenreichii"],["NCBITaxon%3A1752","Propionibacterium freudenreichii subsp. shermanii"],["NCBITaxon%3A754252","Propionibacterium freudenreichii subsp. shermanii CIRM-BIA1"],["NCBITaxon%3A1445610","Propionibacterium freudenreichii subsp. shermanii SANPR8"]]},{"id":"NCBITaxon:2246","l":"Haloferax volcanii","na":1,"nb":5,"a":[["morphology/disc_shaped.html","disc shaped"]],"b":[["NCBITaxon%3A2246","Haloferax volcanii"],["NCBITaxon%3A309800","Haloferax volcanii DS2"],["NCBITaxon%3A1230452","Haloferax volcanii DSM 14919"],["NCBITaxon%3A1227458","Haloferax volcanii JCM 10717"],["NCBITaxon%3A523840","Haloferax volcanii SB1"]]},{"id":"NCBITaxon:228410","l":"Nitrosomonas europaea ATCC 19718","na":5,"nb":1,"a":[["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["NCBITaxon%3A228410","Nitrosomonas europaea ATCC 19718"]]},{"id":"NCBITaxon:293091","l":"Haloquadratum walsbyi","na":1,"nb":5,"a":[["morphology/square_shaped.html","square shaped"]],"b":[["NCBITaxon%3A293091","Haloquadratum walsbyi"],["NCBITaxon%3A768065","Haloquadratum walsbyi C23"],["NCBITaxon%3A362976","Haloquadratum walsbyi DSM 16790"],["NCBITaxon%3A1238424","Haloquadratum walsbyi J07HQW1"],["NCBITaxon%3A1238425","Haloquadratum walsbyi J07HQW2"]]},{"id":"NCBITaxon:296","l":"Pseudomonas fragi","na":1,"nb":5,"a":[["environment/temperature_optimum_low.html","temperature optimum low"]],"b":[["NCBITaxon%3A296","Pseudomonas fragi"],["NCBITaxon%3A1255586","Pseudomonas fragi 1E26"],["NCBITaxon%3A1134475","Pseudomonas fragi A22"],["NCBITaxon%3A1136138","Pseudomonas fragi B25"],["NCBITaxon%3A1215101","Pseudomonas fragi NBRC 3458"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":1,"nb":5,"a":[["morphology/gliding.html","gliding"]],"b":[["NCBITaxon%3A34","Myxococcus xanthus"],["NCBITaxon%3A246197","Myxococcus xanthus DK 1622"],["NCBITaxon%3A1198133","Myxococcus xanthus DZ2"],["NCBITaxon%3A1198538","Myxococcus xanthus DZF1"],["NCBITaxon%3A675543","Myxococcus xanthus NewJersey2"]]},{"id":"NCBITaxon:575322","l":"Sphingomonas oligoaromativorans","na":5,"nb":1,"a":[["environment/nacl_delta_low.html","NaCl delta low"],["environment/nacl_optimum_low.html","NaCl optimum low"],["environment/nacl_range_low.html","NaCl range low"],["environment/ph_delta_very_low.html","pH delta very low"],["environment/ph_range_mid1.html","pH range mid1"]],"b":[["NCBITaxon%3A575322","Sphingomonas oligoaromativorans"]]},{"id":"NCBITaxon:863","l":"Syntrophomonas wolfei","na":1,"nb":5,"a":[["metabolism/syntrophy.html","Syntrophy"]],"b":[["NCBITaxon%3A863","Syntrophomonas wolfei"],["NCBITaxon%3A378794","Syntrophomonas wolfei subsp. methylbutyratica"],["NCBITaxon%3A373074","Syntrophomonas wolfei subsp. saponavida"],["NCBITaxon%3A370885","Syntrophomonas wolfei subsp. wolfei"],["NCBITaxon%3A335541","Syntrophomonas wolfei subsp. wolfei str. Goettingen G311"]]},{"id":"NCBITaxon:132919","l":"Rhodococcus jostii","na":1,"nb":4,"a":[["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["NCBITaxon%3A1850366","Paenibacillus rhizophilus"],["NCBITaxon%3A132919","Rhodococcus jostii"],["NCBITaxon%3A1219017","Rhodococcus jostii NBRC 16295"],["NCBITaxon%3A101510","Rhodococcus jostii RHA1"]]},{"id":"NCBITaxon:1519","l":"Clostridium tyrobutyricum","na":1,"nb":4,"a":[["metabolism/butyric_acid_fermentation.html","butyric acid fermentation"]],"b":[["NCBITaxon%3A1519","Clostridium tyrobutyricum"],["NCBITaxon%3A1408889","Clostridium tyrobutyricum DIVETGP"],["NCBITaxon%3A1121342","Clostridium tyrobutyricum DSM 2637 = ATCC 25755 = JCM 11008"],["NCBITaxon%3A1212547","Clostridium tyrobutyricum UC7086"]]},{"id":"NCBITaxon:265546","l":"Anoxybacillus ayderensis","na":1,"nb":4,"a":[["environment/facultatively_aerobic.html","facultatively aerobic"]],"b":[["NCBITaxon%3A265546","Anoxybacillus ayderensis"],["NCBITaxon%3A1212546","Anoxybacillus ayderensis G10"],["NCBITaxon%3A529374","Anoxybacillus kamchatkensis subsp. asaccharedens"],["NCBITaxon%3A1872573","Anoxybacillus sp."]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":1,"nb":4,"a":[["physiology/alpha_fucosidase_activity.html","alpha-fucosidase activity"]],"b":[["NCBITaxon%3A28112","Tannerella forsythia"],["NCBITaxon%3A1307832","Tannerella forsythia 3313"],["NCBITaxon%3A203275","Tannerella forsythia 92A2"],["NCBITaxon%3A1307833","Tannerella forsythia KS16"]]},{"id":"NCBITaxon:959","l":"Bdellovibrio bacteriovorus","na":1,"nb":4,"a":[["ecology/predatory_bacterium.html","predatory bacterium"]],"b":[["NCBITaxon%3A959","Bdellovibrio bacteriovorus"],["NCBITaxon%3A264462","Bdellovibrio bacteriovorus HD100"],["NCBITaxon%3A1069642","Bdellovibrio bacteriovorus str. Tiberius"],["NCBITaxon%3A765869","Bdellovibrio bacteriovorus W"]]},{"id":"NCBITaxon:1570","l":"Halobacillus halophilus","na":1,"nb":3,"a":[["environment/halotolerant.html","halotolerant"]],"b":[["NCBITaxon%3A1570","Halobacillus halophilus"],["NCBITaxon%3A866895","Halobacillus halophilus DSM 2266"],["NCBITaxon%3A56800","Halobacillus sp."]]},{"id":"NCBITaxon:157784","l":"Zestomonas thermotolerans","na":1,"nb":3,"a":[["environment/thermotolerant.html","thermotolerant"]],"b":[["NCBITaxon%3A1123021","Pseudomonas thermotolerans DSM 14292"],["NCBITaxon%3A935867","Pseudomonas thermotolerans J53"],["NCBITaxon%3A157784","Zestomonas thermotolerans"]]},{"id":"NCBITaxon:245174","l":"Wallemia ichthyophaga","na":3,"nb":1,"a":[["environment/nacl_delta_high.html","NaCl delta high"],["environment/nacl_optimum.html","NaCl optimum"],["environment/nacl_optimum_high.html","NaCl optimum high"]],"b":[["NCBITaxon%3A245174","Wallemia ichthyophaga"]]},{"id":"NCBITaxon:2593654","l":"Pseudomonas mangiferae","na":3,"nb":1,"a":[["environment/ph_optimum_mid1.html","pH optimum mid1"],["environment/temperature_delta_mid2.html","temperature delta mid2"],["environment/temperature_range_mid2.html","temperature range mid2"]],"b":[["NCBITaxon%3A2593654","Pseudomonas mangiferae"]]},{"id":"NCBITaxon:28264","l":"Arcanobacterium haemolyticum","na":1,"nb":3,"a":[["physiology/alpha_mannosidase_activity.html","alpha-mannosidase activity"]],"b":[["NCBITaxon%3A28264","Arcanobacterium haemolyticum"],["NCBITaxon%3A644284","Arcanobacterium haemolyticum DSM 20595"],["NCBITaxon%3A1328","Streptococcus anginosus"]]},{"id":"NCBITaxon:316401","l":"Escherichia coli O78:H11 (strain H10407 / ETEC)","na":1,"nb":3,"a":[["other/indole_test_positive.html","indole test positive"]],"b":[["NCBITaxon%3A316401","Escherichia coli ETEC H10407"],["NCBITaxon%3A1213735","Escherichia coli H10407_1968"],["NCBITaxon%3A1213736","Escherichia coli H10407_1970"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans Pd1222","na":1,"nb":3,"a":[["physiology/mixotrophic.html","mixotrophic"]],"b":[["NCBITaxon%3A266","Paracoccus denitrificans"],["NCBITaxon%3A1302247","Paracoccus denitrificans JCM 21484"],["NCBITaxon%3A318586","Paracoccus denitrificans PD1222"]]},{"id":"NCBITaxon:335992","l":"Candidatus Pelagibacter ubique HTCC1062","na":3,"nb":1,"a":[["ecology/habitat_association.html","habitat association"],["physiology/nutrient_adaptation.html","nutrient adaptation"],["physiology/oligotrophic.html","oligotrophic"]],"b":[["NCBITaxon%3A335992","Candidatus Pelagibacter ubique HTCC1062"]]},{"id":"NCBITaxon:414","l":"Methylococcus capsulatus","na":1,"nb":3,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["NCBITaxon%3A414","Methylococcus capsulatus"],["NCBITaxon%3A243233","Methylococcus capsulatus str. Bath"],["NCBITaxon%3A1224744","Methylococcus capsulatus str. Texas = ATCC 19069"]]},{"id":"NCBITaxon:75906","l":"Thermocrinis ruber","na":1,"nb":3,"a":[["morphology/polytrichous_flagellation.html","polytrichous flagellation"]],"b":[["NCBITaxon%3A136094","Thermocrinis albus"],["NCBITaxon%3A932678","Thermocrinis albus DSM 12173"],["NCBITaxon%3A75906","Thermocrinis ruber"]]},{"id":"NCBITaxon:93061","l":"Staphylococcus aureus (strain NCTC 8325 / PS 47)","na":1,"nb":3,"a":[["physiology/catalase_activity.html","catalase activity"]],"b":[["NCBITaxon%3A1280","Staphylococcus aureus"],["NCBITaxon%3A93061","Staphylococcus aureus subsp. aureus NCTC 8325"],["NCBITaxon%3A561307","Staphylococcus aureus subsp. aureus RN4220"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":2,"nb":1,"a":[["genomics/gc_mid1.html","GC mid1"],["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["NCBITaxon%3A100226","Streptomyces coelicolor A3(2)"]]},{"id":"NCBITaxon:1032480","l":"Microlunatus phosphovorus NM-1","na":1,"nb":2,"a":[["morphology/polyphosphate_granule.html","polyphosphate granule"]],"b":[["NCBITaxon%3A29405","Microlunatus phosphovorus"],["NCBITaxon%3A1032480","Microlunatus phosphovorus NM-1"]]},{"id":"NCBITaxon:1053","l":"Halorhodospira halophila","na":1,"nb":2,"a":[["environment/haloalkaliphilic.html","haloalkaliphilic"]],"b":[["NCBITaxon%3A1053","Halorhodospira halophila"],["NCBITaxon%3A349124","Halorhodospira halophila SL1"]]},{"id":"NCBITaxon:1111735","l":"Sedimenticola selenatireducens DSM 17993","na":1,"nb":2,"a":[["metabolism/selenate_respiration.html","selenate respiration"]],"b":[["NCBITaxon%3A191960","Sedimenticola selenatireducens"],["NCBITaxon%3A1111735","Sedimenticola selenatireducens DSM 17993"]]},{"id":"NCBITaxon:1123295","l":"Stella vacuolata DSM 5901 = ATCC 43931","na":1,"nb":2,"a":[["morphology/star_shaped.html","star shaped"]],"b":[["NCBITaxon%3A217070","Allostella vacuolata"],["NCBITaxon%3A1123295","Stella vacuolata DSM 5901 = ATCC 43931"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":2,"nb":1,"a":[["morphology/carboxysome.html","carboxysome"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]],"b":[["NCBITaxon%3A1140","Synechococcus elongatus PCC 7942 = FACHB-805"]]},{"id":"NCBITaxon:1182451","l":"Aureivirga marina","na":2,"nb":1,"a":[["environment/nacl_delta_mid1.html","NaCl delta mid1"],["environment/nacl_range_mid2.html","NaCl range mid2"]],"b":[["NCBITaxon%3A1182451","Aureivirga marina"]]},{"id":"NCBITaxon:1232683","l":"Marinobacterium lacunae","na":2,"nb":1,"a":[["morphology/cell_length_medium.html","cell length medium"],["morphology/cell_width_large.html","cell width large"]],"b":[["NCBITaxon%3A1232683","Marinobacterium lacunae"]]},{"id":"NCBITaxon:129958","l":"Carboxydothermus hydrogenoformans","na":1,"nb":2,"a":[["physiology/carboxydotrophic.html","carboxydotrophic"]],"b":[["NCBITaxon%3A129958","Carboxydothermus hydrogenoformans"],["NCBITaxon%3A246194","Carboxydothermus hydrogenoformans Z-2901"]]},{"id":"NCBITaxon:132926","l":"Clostridium psychrophilum","na":2,"nb":1,"a":[["environment/temperature_optimum_very_low.html","temperature optimum very low"],["environment/temperature_preference.html","temperature preference"]],"b":[["NCBITaxon%3A132926","Clostridium psychrophilum"]]},{"id":"NCBITaxon:1385984","l":"Exiguobacterium chiriqhucha","na":1,"nb":2,"a":[["environment/temperature_delta_high.html","temperature delta high"]],"b":[["NCBITaxon%3A1385984","Exiguobacterium chiriqhucha"],["NCBITaxon%3A1345023","Exiguobacterium chiriqhucha RW-2"]]},{"id":"NCBITaxon:1455609","l":"Natrinema thermotolerans A29","na":1,"nb":2,"a":[["genomics/dndcdea_pbeabcd_system.html","DndCDEA-PbeABCD system"]],"b":[["NCBITaxon%3A121872","Natrinema thermotolerans"],["NCBITaxon%3A1455609","Natrinema thermotolerans A29"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":1,"nb":2,"a":[["physiology/urease_activity.html","urease activity"]],"b":[["NCBITaxon%3A1474","Sporosarcina pasteurii"],["NCBITaxon%3A1415631","Sporosarcina pasteurii NCIM 2477"]]},{"id":"NCBITaxon:160233","l":"Ignicoccus hospitalis","na":1,"nb":2,"a":[["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"]],"b":[["NCBITaxon%3A160233","Ignicoccus hospitalis"],["NCBITaxon%3A453591","Ignicoccus hospitalis KIN4/I"]]},{"id":"NCBITaxon:1708","l":"Cellulomonas fimi","na":1,"nb":2,"a":[["metabolism/biopolymer_degradation.html","biopolymer degradation"]],"b":[["NCBITaxon%3A1708","Cellulomonas fimi"],["NCBITaxon%3A590998","Cellulomonas fimi ATCC 484"]]},{"id":"NCBITaxon:1793963","l":"Bacillus nakamurai","na":2,"nb":1,"a":[["environment/temperature_range_mid3.html","temperature range mid3"],["genomics/gc_low.html","GC low"]],"b":[["NCBITaxon%3A1793963","Bacillus nakamurai"]]},{"id":"NCBITaxon:180","l":"Leptospirillum ferrooxidans","na":1,"nb":2,"a":[["metabolism/iron_oxidation.html","iron oxidation"]],"b":[["NCBITaxon%3A180","Leptospirillum ferrooxidans"],["NCBITaxon%3A1162668","Leptospirillum ferrooxidans C2-3"]]},{"id":"NCBITaxon:200904","l":"Paraliobacillus ryukyuensis","na":2,"nb":1,"a":[["environment/nacl_optimum.html","NaCl optimum"],["environment/slightly_halophilic.html","slightly halophilic"]],"b":[["NCBITaxon%3A200904","Paraliobacillus ryukyuensis"]]},{"id":"NCBITaxon:224911","l":"Bradyrhizobium diazoefficiens USDA 110","na":1,"nb":2,"a":[["morphology/subpolar_flagellation.html","subpolar flagellation"]],"b":[["NCBITaxon%3A1355477","Bradyrhizobium diazoefficiens"],["NCBITaxon%3A224911","Bradyrhizobium diazoefficiens USDA 110"]]},{"id":"NCBITaxon:2325","l":"Thermoanaerobacter kivui","na":2,"nb":1,"a":[["environment/temperature_phenotype_with_numerical_limits.html","temperature phenotype with numerical limits"],["environment/temperature_preference.html","temperature preference"]],"b":[["NCBITaxon%3A2325","Thermoanaerobacter kivui"]]},{"id":"NCBITaxon:2336","l":"Thermotoga maritima","na":1,"nb":2,"a":[["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"]],"b":[["NCBITaxon%3A2336","Thermotoga maritima"],["NCBITaxon%3A243274","Thermotoga maritima MSB8"]]},{"id":"NCBITaxon:243159","l":"Acidithiobacillus ferrooxidans ATCC 23270","na":1,"nb":2,"a":[["metabolism/iron_oxidation.html","iron oxidation"]],"b":[["NCBITaxon%3A920","Acidithiobacillus ferrooxidans"],["NCBITaxon%3A243159","Acidithiobacillus ferrooxidans ATCC 23270"]]},{"id":"NCBITaxon:243164","l":"Dehalococcoides mccartyi 195","na":1,"nb":2,"a":[["metabolism/organohalide_respiration.html","organohalide respiration"]],"b":[["NCBITaxon%3A61435","Dehalococcoides mccartyi"],["NCBITaxon%3A243164","Dehalococcoides mccartyi 195"]]},{"id":"NCBITaxon:243230","l":"Deinococcus radiodurans (strain ATCC 13939 / DSM 20539 / JCM 16871 / CCUG 27074 / LMG 4051 / NBRC 15346 / NCIMB 9279 / VKM B-1422 / R1)","na":1,"nb":2,"a":[["environment/radiotolerant.html","radiotolerant"]],"b":[["NCBITaxon%3A1299","Deinococcus radiodurans"],["NCBITaxon%3A243230","Deinococcus radiodurans R1 = ATCC 13939 = DSM 20539"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii (strain ATCC 43067 / DSM 2661 / JAL-1 / JCM 10045 / NBRC 100440)","na":1,"nb":2,"a":[["metabolism/methanogenesis.html","Methanogenesis"]],"b":[["NCBITaxon%3A2190","Methanocaldococcus jannaschii"],["NCBITaxon%3A243232","Methanocaldococcus jannaschii DSM 2661"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima (strain ATCC 43589 / DSM 3109 / JCM 10099 / NBRC 100826 / MSB8)","na":1,"nb":2,"a":[["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"]],"b":[["NCBITaxon%3A2336","Thermotoga maritima"],["NCBITaxon%3A243274","Thermotoga maritima MSB8"]]},{"id":"NCBITaxon:2498453","l":"Geminicoccus harenae","na":2,"nb":1,"a":[["physiology/cystine_arylamidase_activity.html","cystine arylamidase activity"],["physiology/valine_arylamidase_activity.html","valine arylamidase activity"]],"b":[["NCBITaxon%3A2498453","Geminicoccus harenae"]]},{"id":"NCBITaxon:2585141","l":"Flavicella sediminum","na":2,"nb":1,"a":[["environment/nacl_optimum_mid1.html","NaCl optimum mid1"],["morphology/cell_length_very_small.html","cell length very small"]],"b":[["NCBITaxon%3A2585141","Flavicella sediminum"]]},{"id":"NCBITaxon:272630","l":"Methylorubrum extorquens (strain ATCC 14718 / DSM 1338 / JCM 2805 / NCIMB 9133 / AM1)","na":1,"nb":2,"a":[["physiology/methylotrophic.html","methylotrophic"]],"b":[["NCBITaxon%3A408","Methylorubrum extorquens"],["NCBITaxon%3A272630","Methylorubrum extorquens AM1"]]},{"id":"NCBITaxon:273121","l":"Wolinella succinogenes ATCC 29543","na":1,"nb":2,"a":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]],"b":[["NCBITaxon%3A844","Wolinella succinogenes"],["NCBITaxon%3A273121","Wolinella succinogenes DSM 1740"]]},{"id":"NCBITaxon:2781979","l":"Pontibacterium sinense","na":2,"nb":1,"a":[["environment/temperature_delta_mid1.html","temperature delta mid1"],["environment/temperature_optimum_mid2.html","temperature optimum mid2"]],"b":[["NCBITaxon%3A2781979","Pontibacterium sinense"]]},{"id":"NCBITaxon:292415","l":"Thiobacillus denitrificans ATCC 25259","na":2,"nb":1,"a":[["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/chemoautotrophic.html","chemoautotrophic"]],"b":[["NCBITaxon%3A292415","Thiobacillus denitrificans ATCC 25259"]]},{"id":"NCBITaxon:29282","l":"Haloarcula japonica","na":1,"nb":2,"a":[["morphology/triangular_shaped.html","triangular shaped"]],"b":[["NCBITaxon%3A29282","Haloarcula japonica"],["NCBITaxon%3A1227453","Haloarcula japonica DSM 6131"]]},{"id":"NCBITaxon:29405","l":"Microlunatus phosphovorus","na":1,"nb":2,"a":[["morphology/polyphosphate_granule.html","polyphosphate granule"]],"b":[["NCBITaxon%3A29405","Microlunatus phosphovorus"],["NCBITaxon%3A1032480","Microlunatus phosphovorus NM-1"]]},{"id":"NCBITaxon:2974574","l":"Helicobacter zhangjianzhongii","na":2,"nb":1,"a":[["physiology/arginine_arylamidase_activity.html","arginine arylamidase activity"],["physiology/gamma_glutamyltransferase_activity.html","gamma-glutamyltransferase activity"]],"b":[["NCBITaxon%3A2974574","Helicobacter zhangjianzhongii"]]},{"id":"NCBITaxon:3037259","l":"Flexibacterium corallicola","na":2,"nb":1,"a":[["physiology/alpha_glucosidase_activity.html","alpha-glucosidase activity"],["physiology/trypsin_activity.html","trypsin activity"]],"b":[["NCBITaxon%3A3037259","Flexibacterium corallicola"]]},{"id":"NCBITaxon:3080537","l":"Rubellicoccus peritrichatus","na":2,"nb":1,"a":[["environment/ph_optimum_mid2.html","pH optimum mid2"],["environment/temperature_optimum_mid1.html","temperature optimum mid1"]],"b":[["NCBITaxon%3A3080537","Rubellicoccus peritrichatus"]]},{"id":"NCBITaxon:324679","l":"Spirochaeta dissipatitropha","na":2,"nb":1,"a":[["morphology/cell_length_large.html","cell length large"],["morphology/cell_width_very_small.html","cell width very small"]],"b":[["NCBITaxon%3A324679","Spirochaeta dissipatitropha"]]},{"id":"NCBITaxon:33952","l":"Acetobacterium woodii","na":1,"nb":2,"a":[["metabolism/homoacetogenesis.html","Homoacetogenesis"]],"b":[["NCBITaxon%3A33952","Acetobacterium woodii"],["NCBITaxon%3A931626","Acetobacterium woodii DSM 1030"]]},{"id":"NCBITaxon:340184","l":"Escherichia coli B7A","na":2,"nb":1,"a":[["genomics/dnd_system.html","Dnd system"],["genomics/phosphorothioate_defense_system.html","phosphorothioate defense system"]],"b":[["NCBITaxon%3A340184","Escherichia coli B7A"]]},{"id":"NCBITaxon:3447298","l":"Microbaculum mangrovi","na":2,"nb":1,"a":[["environment/ph_delta_mid2.html","pH delta mid2"],["environment/ph_optimum.html","pH optimum"]],"b":[["NCBITaxon%3A3447298","Microbaculum mangrovi"]]},{"id":"NCBITaxon:357794","l":"Psychromonas ingrahamii","na":1,"nb":2,"a":[["environment/temperature_range_very_low.html","temperature range very low"]],"b":[["NCBITaxon%3A357794","Psychromonas ingrahamii"],["NCBITaxon%3A357804","Psychromonas ingrahamii 37"]]},{"id":"NCBITaxon:399549","l":"Metallosphaera sedula DSM 5348","na":1,"nb":2,"a":[["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]],"b":[["NCBITaxon%3A43687","Metallosphaera sedula"],["NCBITaxon%3A399549","Metallosphaera sedula DSM 5348"]]},{"id":"NCBITaxon:43687","l":"Metallosphaera sedula","na":1,"nb":2,"a":[["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]],"b":[["NCBITaxon%3A43687","Metallosphaera sedula"],["NCBITaxon%3A399549","Metallosphaera sedula DSM 5348"]]},{"id":"NCBITaxon:44001","l":"Caldicellulosiruptor saccharolyticus","na":1,"nb":2,"a":[["metabolism/xylan_degradation.html","xylan degradation"]],"b":[["NCBITaxon%3A44001","Caldicellulosiruptor saccharolyticus"],["NCBITaxon%3A351627","Caldicellulosiruptor saccharolyticus DSM 8903"]]},{"id":"NCBITaxon:453591","l":"Ignicoccus hospitalis KIN4/I","na":1,"nb":2,"a":[["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"]],"b":[["NCBITaxon%3A160233","Ignicoccus hospitalis"],["NCBITaxon%3A453591","Ignicoccus hospitalis KIN4/I"]]},{"id":"NCBITaxon:486505","l":"Amycolatopsis flava","na":2,"nb":1,"a":[["environment/nacl_range_high.html","NaCl range high"],["environment/ph_delta_high.html","pH delta high"]],"b":[["NCBITaxon%3A486505","Amycolatopsis flava"]]},{"id":"NCBITaxon:521674","l":"Planctopirus limnophila DSM 3776","na":1,"nb":2,"a":[["morphology/flask_shaped.html","flask shaped"]],"b":[["NCBITaxon%3A120","Planctopirus limnophila"],["NCBITaxon%3A521674","Planctopirus limnophila DSM 3776"]]},{"id":"NCBITaxon:54252","l":"Pyrolobus fumarii","na":1,"nb":2,"a":[["environment/extreme_hyperthermophilic.html","extreme hyperthermophilic"]],"b":[["NCBITaxon%3A54252","Pyrolobus fumarii"],["NCBITaxon%3A694429","Pyrolobus fumarii 1A"]]},{"id":"NCBITaxon:565050","l":"Caulobacter vibrioides NA1000","na":2,"nb":1,"a":[["morphology/crescent_shaped.html","crescent shaped"],["morphology/tailed_shaped.html","tailed shaped"]],"b":[["NCBITaxon%3A565050","Caulobacter vibrioides NA1000"]]},{"id":"NCBITaxon:651","l":"Aeromonas media","na":1,"nb":2,"a":[["morphology/brown_pigmented.html","brown pigmented"]],"b":[["NCBITaxon%3A651","Aeromonas media"],["NCBITaxon%3A1208104","Aeromonas media WS"]]},{"id":"NCBITaxon:65555","l":"Desulfocapsa sulfexigens","na":1,"nb":2,"a":[["metabolism/disproportionation.html","Disproportionation"]],"b":[["NCBITaxon%3A65555","Desulfocapsa sulfexigens"],["NCBITaxon%3A1167006","Desulfocapsa sulfexigens DSM 10523"]]},{"id":"NCBITaxon:69","l":"Lysobacter enzymogenes","na":1,"nb":2,"a":[["genomics/gasdermin_system.html","GasderMIN system"]],"b":[["NCBITaxon%3A69","Lysobacter enzymogenes"],["NCBITaxon%3A262324","Lysobacter gummosus"]]},{"id":"NCBITaxon:844","l":"Wolinella succinogenes","na":1,"nb":2,"a":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]],"b":[["NCBITaxon%3A844","Wolinella succinogenes"],["NCBITaxon%3A273121","Wolinella succinogenes DSM 1740"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":1,"nb":2,"a":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["NCBITaxon%3A881","Nitratidesulfovibrio vulgaris"],["NCBITaxon%3A882","Nitratidesulfovibrio vulgaris str. Hildenborough"]]},{"id":"NCBITaxon:968","l":"Spirillum volutans","na":2,"nb":1,"a":[["morphology/amphitrichous.html","amphitrichous"],["morphology/lophotrichous.html","lophotrichous"]],"b":[["NCBITaxon%3A968","Spirillum volutans"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":1,"nb":1,"a":[["morphology/heterocyst.html","heterocyst"]],"b":[["NCBITaxon%3A103690","Nostoc sp. PCC 7120 = FACHB-418"]]},{"id":"NCBITaxon:1067","l":"Rhodocyclus purpureus","na":1,"nb":1,"a":[["morphology/ring_shaped.html","ring shaped"]],"b":[["NCBITaxon%3A1067","Rhodocyclus purpureus"]]},{"id":"NCBITaxon:1156985","l":"Epibacterium ulvae","na":1,"nb":1,"a":[["other/epibiont_phenotype.html","epibiont phenotype"]],"b":[["NCBITaxon%3A1156985","Epibacterium ulvae"]]},{"id":"NCBITaxon:1222002","l":"Flavobacterium panaciterrae","na":1,"nb":1,"a":[["physiology/beta_glucosidase_activity.html","beta-glucosidase activity"]],"b":[["NCBITaxon%3A1222002","Flavobacterium panaciterrae"]]},{"id":"NCBITaxon:1267","l":"Sarcina ventriculi","na":1,"nb":1,"a":[["morphology/sarcina_arrangement.html","sarcina arrangement"]],"b":[["NCBITaxon%3A1267","Sarcina ventriculi"]]},{"id":"NCBITaxon:133804","l":"gamma proteobacterium EBAC31A08","na":1,"nb":1,"a":[["metabolism/proteorhodopsin_phototrophy.html","proteorhodopsin phototrophy"]],"b":[["NCBITaxon%3A133804","uncultured marine gamma proteobacterium EBAC31A08"]]},{"id":"NCBITaxon:1392998","l":"Candidatus Methanoperedens nitratireducens","na":1,"nb":1,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"]],"b":[["NCBITaxon%3A1392998","Candidatus Methanoperedens nitratireducens"]]},{"id":"NCBITaxon:1463663","l":"Bacillus aequororis","na":1,"nb":1,"a":[["environment/ph_optimum_high.html","pH optimum high"]],"b":[["NCBITaxon%3A1463663","Bacillus aequororis"]]},{"id":"NCBITaxon:1473598","l":"Paludibaculum fermentans","na":1,"nb":1,"a":[["environment/facultatively_acidophilic.html","facultatively acidophilic"]],"b":[["NCBITaxon%3A1473598","Paludibaculum fermentans"]]},{"id":"NCBITaxon:1656892","l":"Nakamurella aerolata","na":1,"nb":1,"a":[["environment/temperature_range_mid1.html","temperature range mid1"]],"b":[["NCBITaxon%3A1656892","Nakamurella aerolata"]]},{"id":"NCBITaxon:167879","l":"Colwellia psychrerythraea 34H","na":1,"nb":1,"a":[["environment/psychrophilic.html","psychrophilic"]],"b":[["NCBITaxon%3A167879","Colwellia psychrerythraea 34H"]]},{"id":"NCBITaxon:1715645","l":"Paracoccus mangrovi","na":1,"nb":1,"a":[["environment/ph_delta_low.html","pH delta low"]],"b":[["NCBITaxon%3A1715645","Paracoccus mangrovi"]]},{"id":"NCBITaxon:1715989","l":"Candidatus Nitrospira inopinata","na":1,"nb":1,"a":[["metabolism/complete_ammonia_oxidation.html","complete ammonia oxidation"]],"b":[["NCBITaxon%3A1715989","Candidatus Nitrospira inopinata"]]},{"id":"NCBITaxon:1847728","l":"Companilactobacillus allii","na":1,"nb":1,"a":[["physiology/leucine_arylamidase_activity.html","leucine arylamidase activity"]],"b":[["NCBITaxon%3A1847728","Companilactobacillus allii"]]},{"id":"NCBITaxon:1880678","l":"Pseudomonas sivasensis","na":1,"nb":1,"a":[["environment/temperature_optimum_low.html","temperature optimum low"]],"b":[["NCBITaxon%3A1880678","Pseudomonas sivasensis"]]},{"id":"NCBITaxon:1979153","l":"Synechococcus sp. YX04-3","na":1,"nb":1,"a":[["environment/stenohaline.html","stenohaline"]],"b":[["NCBITaxon%3A1979153","Synechococcus sp. YX04-3"]]},{"id":"NCBITaxon:2005002","l":"Candidatus Electronema aureum","na":1,"nb":1,"a":[["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"]],"b":[["NCBITaxon%3A2005002","Candidatus Electronema aureum"]]},{"id":"NCBITaxon:2026187","l":"Bacillus pacificus","na":1,"nb":1,"a":[["physiology/dnase_activity.html","DNase activity"]],"b":[["NCBITaxon%3A2026187","Bacillus pacificus"]]},{"id":"NCBITaxon:2086571","l":"Solimonas fluminis","na":1,"nb":1,"a":[["environment/ph_range_mid2.html","pH range mid2"]],"b":[["NCBITaxon%3A2086571","Solimonas fluminis"]]},{"id":"NCBITaxon:2283","l":"Acidianus ambivalens","na":1,"nb":1,"a":[["metabolism/disproportionation.html","Disproportionation"]],"b":[["NCBITaxon%3A2283","Acidianus ambivalens"]]},{"id":"NCBITaxon:2303410","l":"Simulacricoccus ruber","na":1,"nb":1,"a":[["environment/microaerotolerant.html","microaerotolerant"]],"b":[["NCBITaxon%3A2303410","Simulacricoccus ruber"]]},{"id":"NCBITaxon:2306023","l":"Gemmobacter lutimaris","na":1,"nb":1,"a":[["environment/ph_delta_mid3.html","pH delta mid3"]],"b":[["NCBITaxon%3A2306023","Gemmobacter lutimaris"]]},{"id":"NCBITaxon:237727","l":"Erythrobacter sp. NAP1","na":1,"nb":1,"a":[["physiology/aerobic_anoxygenic_phototrophy.html","aerobic anoxygenic phototrophy"]],"b":[["NCBITaxon%3A237727","Erythrobacter sp. NAP1"]]},{"id":"NCBITaxon:240292","l":"Trichormus variabilis ATCC 29413","na":1,"nb":1,"a":[["morphology/akinete.html","akinete"]],"b":[["NCBITaxon%3A240292","Trichormus variabilis ATCC 29413"]]},{"id":"NCBITaxon:243233","l":"Methylococcus capsulatus Bath","na":1,"nb":1,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["NCBITaxon%3A243233","Methylococcus capsulatus str. Bath"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK1622","na":1,"nb":1,"a":[["morphology/gliding.html","gliding"]],"b":[["NCBITaxon%3A246197","Myxococcus xanthus DK 1622"]]},{"id":"NCBITaxon:2547392","l":"Seongchinamella unica","na":1,"nb":1,"a":[["morphology/cream_pigmented.html","cream pigmented"]],"b":[["NCBITaxon%3A2547392","Seongchinamella unica"]]},{"id":"NCBITaxon:258594","l":"Rhodopseudomonas palustris CGA009","na":1,"nb":1,"a":[["physiology/photoorganoheterotrophic.html","photoorganoheterotrophic"]],"b":[["NCBITaxon%3A258594","Rhodopseudomonas palustris CGA009"]]},{"id":"NCBITaxon:264203","l":"Zymomonas mobilis subsp. mobilis (strain ATCC 31821 / ZM4 / CP4)","na":1,"nb":1,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"]],"b":[["NCBITaxon%3A264203","Zymomonas mobilis subsp. mobilis ZM4 = ATCC 31821"]]},{"id":"NCBITaxon:266834","l":"Rhizobium meliloti (strain 1021)","na":1,"nb":1,"a":[["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"]],"b":[["NCBITaxon%3A266834","Sinorhizobium meliloti 1021"]]},{"id":"NCBITaxon:272623","l":"Lactococcus lactis subsp. lactis (strain IL1403)","na":1,"nb":1,"a":[["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]],"b":[["NCBITaxon%3A272623","Lactococcus lactis subsp. lactis Il1403"]]},{"id":"NCBITaxon:2822231","l":"Phanerodontia chrysosporium","na":1,"nb":1,"a":[["metabolism/manganese_oxidation.html","manganese oxidation"]],"b":[["NCBITaxon%3A2822231","Phanerodontia chrysosporium"]]},{"id":"NCBITaxon:2995321","l":"Spongorhabdus nitratireducens","na":1,"nb":1,"a":[["environment/nacl_range_mid1.html","NaCl range mid1"]],"b":[["NCBITaxon%3A2995321","Spongorhabdus nitratireducens"]]},{"id":"NCBITaxon:3073604","l":"Ruixingdingia sedimenti","na":1,"nb":1,"a":[["morphology/cell_width_medium.html","cell width medium"]],"b":[["NCBITaxon%3A3073604","Ruixingdingia sedimenti"]]},{"id":"NCBITaxon:313590","l":"Dokdonia sp. MED134","na":1,"nb":1,"a":[["metabolism/proteorhodopsin_phototrophy.html","proteorhodopsin phototrophy"]],"b":[["NCBITaxon%3A313590","Dokdonia sp. MED134"]]},{"id":"NCBITaxon:319224","l":"Shewanella putrefaciens CN-32","na":1,"nb":1,"a":[["morphology/flagellar_arrangement.html","flagellar arrangement"]],"b":[["NCBITaxon%3A319224","Shewanella putrefaciens CN-32"]]},{"id":"NCBITaxon:3234132","l":"Aestuariibius violaceus","na":1,"nb":1,"a":[["environment/temperature_range_low.html","temperature range low"]],"b":[["NCBITaxon%3A3234132","Aestuariibius violaceus"]]},{"id":"NCBITaxon:335541","l":"Syntrophomonas wolfei subsp. wolfei (strain DSM 2245B / Goettingen)","na":1,"nb":1,"a":[["metabolism/syntrophy.html","Syntrophy"]],"b":[["NCBITaxon%3A335541","Syntrophomonas wolfei subsp. wolfei str. Goettingen G311"]]},{"id":"NCBITaxon:36080","l":"Mucor circinelloides","na":1,"nb":1,"a":[["environment/temperature_optimum_mid3.html","temperature optimum mid3"]],"b":[["NCBITaxon%3A36080","Mucor circinelloides"]]},{"id":"NCBITaxon:36863","l":"Ideonella dechloratans","na":1,"nb":1,"a":[["metabolism/chlorate_respiration.html","chlorate respiration"]],"b":[["NCBITaxon%3A36863","Ideonella dechloratans"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["metabolism/photoferrotrophy.html","photoferrotrophy"]],"b":[["NCBITaxon%3A395960","Rhodopseudomonas palustris TIE-1"]]},{"id":"NCBITaxon:412955","l":"Pseudomonas sp. SCT","na":1,"nb":1,"a":[["metabolism/iodate_respiration.html","iodate respiration"]],"b":[["NCBITaxon%3A412955","Pseudomonas sp. SCT"]]},{"id":"NCBITaxon:449447","l":"Microcystis aeruginosa NIES-843","na":1,"nb":1,"a":[["morphology/gas_vesicle.html","gas vesicle"]],"b":[["NCBITaxon%3A449447","Microcystis aeruginosa NIES-843"]]},{"id":"NCBITaxon:498216","l":"Lacticaseibacillus casei str. Zhang","na":1,"nb":1,"a":[["genomics/brex_system.html","BREX system"]],"b":[["NCBITaxon%3A498216","Lacticaseibacillus casei str. Zhang"]]},{"id":"NCBITaxon:568708","l":"Salmonella enterica subsp. enterica serovar Typhimurium str. D23580","na":1,"nb":1,"a":[["genomics/bsta_system.html","BstA system"]],"b":[["NCBITaxon%3A568708","Salmonella enterica subsp. enterica serovar Typhimurium str. D23580"]]},{"id":"NCBITaxon:71421","l":"Haemophilus influenzae (strain ATCC 51907 / DSM 11121 / KW20 / Rd)","na":1,"nb":1,"a":[["genomics/restriction_modification_system.html","restriction-modification system"]],"b":[["NCBITaxon%3A71421","Haemophilus influenzae Rd KW20"]]},{"id":"NCBITaxon:718002","l":"Peribacillus endoradicis","na":1,"nb":1,"a":[["environment/nacl_delta_mid2.html","NaCl delta mid2"]],"b":[["NCBITaxon%3A718002","Peribacillus endoradicis"]]},{"id":"NCBITaxon:75750","l":"Aspergillus sydowii","na":1,"nb":1,"a":[["environment/nacl_delta_high.html","NaCl delta high"]],"b":[["NCBITaxon%3A75750","Aspergillus sydowii"]]},{"id":"NCBITaxon:766760","l":"Bacillus paralicheniformis ATCC 9945a","na":1,"nb":1,"a":[["genomics/disarm_system.html","DISARM system"]],"b":[["NCBITaxon%3A766760","Bacillus paralicheniformis ATCC 9945a"]]},{"id":"NCBITaxon:89","l":"Leptothrix discophora","na":1,"nb":1,"a":[["metabolism/manganese_oxidation.html","manganese oxidation"]],"b":[["NCBITaxon%3A89","Leptothrix discophora"]]},{"id":"NCBITaxon:90373","l":"Thiomargarita namibiensis","na":1,"nb":1,"a":[["morphology/sulfur_globule.html","sulfur globule"]],"b":[["NCBITaxon%3A90373","Thiomargarita namibiensis"]]},{"id":"NCBITaxon:913088","l":"Escherichia coli TW11681","na":1,"nb":1,"a":[["genomics/cbass_system.html","CBASS system"]],"b":[["NCBITaxon%3A913088","Escherichia coli TW11681"]]},{"id":"NCBITaxon:94122","l":"Shewanella sp. ANA-3","na":1,"nb":1,"a":[["metabolism/arsenate_respiration.html","arsenate respiration"]],"b":[["NCBITaxon%3A94122","Shewanella sp. ANA-3"]]},{"id":"NCBITaxon:99807","l":"Corynebacterium auriscanis","na":1,"nb":1,"a":[["physiology/pyrrolidonyl_arylamidase_activity.html","pyrrolidonyl arylamidase activity"]],"b":[["NCBITaxon%3A99807","Corynebacterium auriscanis"]]}]} \ No newline at end of file diff --git a/mechs.md b/mechs.md index 675c80f..02737a0 100644 --- a/mechs.md +++ b/mechs.md @@ -354,7 +354,7 @@ Each X-Mech is an **autonomous knowledge factory** that curates, validates, and
10autonomous knowledge factories
1,075,481curated entries across the fleet
-
45vocabularies in dated census
+
46vocabularies in dated census
3,744merged PRs
1orchestrator (claw)
@@ -378,7 +378,7 @@ Each X-Mech is an **autonomous knowledge factory** that curates, validates, and
-

This vocabulary census covers nine of the ten Mechs; TaxonMech is a fleet member whose vocabulary has not yet been measured, so it has no row. Counts are prefix occurrences in the canonical record directories (merged recipes for CultureMech, communities and isolate records for CommunityMech, habitat records for HabitatMech) as of 24 September 2026. Columns are ordered by how many Mechs ground anything in each vocabulary, then by the total records citing it across the fleet; PMID and DOI sit at the right because every Mech cites literature. ChEBI binds the chemistry arm (media, ingredients, antibiotics, proteins); NCBITaxon and ENVO bind the organism arm (habitat, community, traits); GO and METPO bridge phenotype, structure and protein.

+

This vocabulary census covers all ten Mechs. Counts are prefix occurrences in the canonical record directories (merged recipes for CultureMech, communities and isolate records for CommunityMech, habitat records for HabitatMech, species-level taxon records for TaxonMech, each carrying its lineage, so a higher taxon is counted once per record under it) as of 24 September 2026. Columns are ordered by how many Mechs ground anything in each vocabulary, then by the total records citing it across the fleet; PMID and DOI sit at the right because every Mech cites literature. ChEBI binds the chemistry arm (media, ingredients, antibiotics, proteins); NCBITaxon and ENVO bind the organism arm (habitat, community, traits); GO and METPO bridge phenotype, structure and protein.

@@ -451,7 +451,7 @@ Each X-Mech is an **autonomous knowledge factory** that curates, validates, and "use strict"; if (document.readyState === "loading") { document.addEventListener("DOMContentLoaded", init); } else { init(); } function init() { - var DATA = {"order":["HabitatMech","CommunityMech","TraitMech","CellStructureMech","ProteinTraitsMech","NaturalProductMech","AntibioticMech","MediaIngredientMech","CultureMech"],"voc":["NCBITaxon","CHEBI","GO","UniProt","ENVO","UBERON","InterPro","PDB","CAS","METPO","KEGG","FOODON","PATO","Pfam","RHEA","ARO","BTO","MIBiG","NPAtlas","GTDB","PMID","DOI"],"heat":{"HabitatMech":{"CHEBI":24,"NCBITaxon":13227,"GO":7,"ENVO":3368,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":4,"UBERON":1123,"FOODON":198,"BTO":1367,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":516,"DOI":116},"CommunityMech":{"CHEBI":2971,"NCBITaxon":4253,"GO":1537,"ENVO":538,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":10,"FOODON":0,"BTO":0,"GTDB":2037,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":7320,"DOI":1223},"TraitMech":{"CHEBI":673,"NCBITaxon":996,"GO":886,"ENVO":22,"METPO":3617,"ARO":0,"UniProt":399,"InterPro":115,"Pfam":0,"RHEA":0,"PDB":0,"PATO":99,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":621,"DOI":7190},"CellStructureMech":{"CHEBI":65,"NCBITaxon":1438,"GO":11688,"ENVO":0,"METPO":14,"ARO":0,"UniProt":337,"InterPro":206,"Pfam":22,"RHEA":0,"PDB":277,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":698,"DOI":6636},"ProteinTraitsMech":{"CHEBI":374424,"NCBITaxon":358320,"GO":421586,"ENVO":0,"METPO":244,"ARO":397717,"UniProt":658574,"InterPro":1480044,"Pfam":521966,"RHEA":613456,"PDB":235957,"PATO":124,"UBERON":43,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":245,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":657527,"DOI":193845},"NaturalProductMech":{"CHEBI":1659,"NCBITaxon":13960,"GO":0,"ENVO":0,"METPO":0,"ARO":0,"UniProt":613,"InterPro":0,"Pfam":0,"RHEA":14,"PDB":0,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":10133,"NPAtlas":1756,"PMID":5703,"DOI":8437},"AntibioticMech":{"CHEBI":22104,"NCBITaxon":1085,"GO":3,"ENVO":0,"METPO":0,"ARO":16653,"UniProt":278,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":6,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":1823,"MIBiG":0,"NPAtlas":0,"PMID":1207,"DOI":216},"MediaIngredientMech":{"CHEBI":8220,"NCBITaxon":1,"GO":0,"ENVO":110,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":23,"FOODON":273,"BTO":3,"GTDB":0,"KEGG":61,"CAS":727,"MIBiG":0,"NPAtlas":0,"PMID":29,"DOI":9},"CultureMech":{"CHEBI":160678,"NCBITaxon":63,"GO":0,"ENVO":13,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":138,"FOODON":223,"BTO":0,"GTDB":0,"KEGG":1406,"CAS":1,"MIBiG":0,"NPAtlas":0,"PMID":68,"DOI":76}},"cells":{"HabitatMech--BTO":587,"HabitatMech--CHEBI":11,"HabitatMech--ENVO":1296,"HabitatMech--FOODON":85,"HabitatMech--GO":2,"HabitatMech--NCBITaxon":896,"HabitatMech--PATO":3,"HabitatMech--UBERON":704,"CommunityMech--CHEBI":357,"CommunityMech--ENVO":408,"CommunityMech--GO":394,"CommunityMech--GTDB":367,"CommunityMech--NCBITaxon":422,"CommunityMech--UBERON":10,"TraitMech--CHEBI":183,"TraitMech--ENVO":14,"TraitMech--GO":292,"TraitMech--InterPro":61,"TraitMech--METPO":749,"TraitMech--NCBITaxon":484,"TraitMech--PATO":49,"TraitMech--UniProt":182,"CellStructureMech--CHEBI":24,"CellStructureMech--GO":535,"CellStructureMech--InterPro":33,"CellStructureMech--METPO":5,"CellStructureMech--NCBITaxon":531,"CellStructureMech--PDB":19,"CellStructureMech--Pfam":8,"CellStructureMech--UniProt":65,"ProteinTraitsMech--ARO":7452,"ProteinTraitsMech--CHEBI":30122,"ProteinTraitsMech--GO":110744,"ProteinTraitsMech--InterPro":120090,"ProteinTraitsMech--KEGG":231,"ProteinTraitsMech--METPO":119,"ProteinTraitsMech--NCBITaxon":98697,"ProteinTraitsMech--PATO":81,"ProteinTraitsMech--PDB":51718,"ProteinTraitsMech--Pfam":107455,"ProteinTraitsMech--RHEA":29550,"ProteinTraitsMech--UBERON":43,"ProteinTraitsMech--UniProt":159595,"NaturalProductMech--CHEBI":405,"NaturalProductMech--MIBiG":3115,"NaturalProductMech--NCBITaxon":3115,"NaturalProductMech--NPAtlas":1740,"NaturalProductMech--RHEA":1,"NaturalProductMech--UniProt":102,"AntibioticMech--ARO":568,"AntibioticMech--CAS":1797,"AntibioticMech--CHEBI":2814,"AntibioticMech--GO":3,"AntibioticMech--NCBITaxon":163,"AntibioticMech--PDB":5,"AntibioticMech--UniProt":47,"MediaIngredientMech--BTO":1,"MediaIngredientMech--CAS":287,"MediaIngredientMech--CHEBI":2232,"MediaIngredientMech--ENVO":26,"MediaIngredientMech--FOODON":99,"MediaIngredientMech--KEGG":58,"MediaIngredientMech--NCBITaxon":1,"MediaIngredientMech--UBERON":10,"CultureMech--CAS":1,"CultureMech--CHEBI":6125,"CultureMech--ENVO":12,"CultureMech--FOODON":203,"CultureMech--KEGG":329,"CultureMech--NCBITaxon":30,"CultureMech--UBERON":72},"vocab_edges":[{"a":"HabitatMech","b":"CommunityMech","n":313,"by":{"NCBITaxon":265,"ENVO":42,"UBERON":4,"CHEBI":2},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"ENVO:00001998","label":"soil"},{"id":"ENVO:01001001","label":"plant-associated environment"}]},{"a":"HabitatMech","b":"TraitMech","n":122,"by":{"NCBITaxon":115,"ENVO":4,"PATO":2,"CHEBI":1},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"HabitatMech","b":"CellStructureMech","n":41,"by":{"NCBITaxon":41},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1117","label":"Cyanobacteriota"}]},{"a":"HabitatMech","b":"ProteinTraitsMech","n":1250,"by":{"NCBITaxon":1234,"UBERON":12,"CHEBI":2,"GO":2},"ex":[{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1869227","label":"bacterium"}]},{"a":"HabitatMech","b":"NaturalProductMech","n":312,"by":{"NCBITaxon":312},"ex":[{"id":"NCBITaxon:56","label":"Sorangium cellulosum"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1931","label":"Streptomyces sp."}]},{"a":"HabitatMech","b":"AntibioticMech","n":32,"by":{"NCBITaxon":32},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:573","label":"Klebsiella pneumoniae"}]},{"a":"HabitatMech","b":"MediaIngredientMech","n":22,"by":{"ENVO":15,"UBERON":4,"CHEBI":3},"ex":[{"id":"ENVO:00002149","label":"sea water"},{"id":"ENVO:00001998","label":"soil"},{"id":"ENVO:00002263","label":"garden soil"}]},{"a":"HabitatMech","b":"CultureMech","n":25,"by":{"NCBITaxon":13,"ENVO":7,"UBERON":4,"FOODON":1},"ex":[{"id":"UBERON:0000948","label":"heart"},{"id":"UBERON:0000955","label":"brain"},{"id":"UBERON:0000178","label":"blood"}]},{"a":"CommunityMech","b":"TraitMech","n":157,"by":{"CHEBI":61,"NCBITaxon":61,"GO":35},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:15379","label":"dioxygen"},{"id":"GO:0015977","label":"carbon fixation"}]},{"a":"CommunityMech","b":"CellStructureMech","n":60,"by":{"NCBITaxon":36,"CHEBI":13,"GO":11},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:2157","label":"Archaea"},{"id":"NCBITaxon:562","label":"Escherichia coli"}]},{"a":"CommunityMech","b":"ProteinTraitsMech","n":689,"by":{"CHEBI":276,"NCBITaxon":226,"GO":186,"UBERON":1},"ex":[{"id":"CHEBI:30089","label":"acetate"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"GO:0015979","label":"photosynthesis"}]},{"a":"CommunityMech","b":"NaturalProductMech","n":128,"by":{"NCBITaxon":123,"CHEBI":5},"ex":[{"id":"NCBITaxon:286","label":"Pseudomonas"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:562","label":"Escherichia coli"}]},{"a":"CommunityMech","b":"AntibioticMech","n":63,"by":{"CHEBI":42,"NCBITaxon":21},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"},{"id":"CHEBI:33709","label":"amino acid"}]},{"a":"CommunityMech","b":"MediaIngredientMech","n":240,"by":{"CHEBI":238,"ENVO":2},"ex":[{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:33709","label":"amino acid"},{"id":"CHEBI:3312","label":"calcium dichloride"}]},{"a":"CommunityMech","b":"CultureMech","n":151,"by":{"CHEBI":138,"NCBITaxon":8,"ENVO":5},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:30089","label":"acetate"}]},{"a":"TraitMech","b":"CellStructureMech","n":114,"by":{"GO":53,"NCBITaxon":40,"CHEBI":7,"UniProt":6,"METPO":5,"InterPro":3},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:83333","label":"Escherichia coli (strain K12)"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"}]},{"a":"TraitMech","b":"ProteinTraitsMech","n":707,"by":{"GO":248,"NCBITaxon":136,"METPO":111,"CHEBI":109,"UniProt":56,"InterPro":47},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"METPO:1000631","label":"trophic type"}]},{"a":"TraitMech","b":"NaturalProductMech","n":57,"by":{"NCBITaxon":53,"CHEBI":4},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"TraitMech","b":"AntibioticMech","n":31,"by":{"NCBITaxon":21,"CHEBI":10},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"TraitMech","b":"MediaIngredientMech","n":59,"by":{"CHEBI":59},"ex":[{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:16526","label":"carbon dioxide"}]},{"a":"TraitMech","b":"CultureMech","n":36,"by":{"CHEBI":26,"NCBITaxon":10},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:17234","label":"glucose"}]},{"a":"CellStructureMech","b":"ProteinTraitsMech","n":1058,"by":{"GO":737,"UniProt":155,"NCBITaxon":77,"InterPro":64,"CHEBI":15,"Pfam":10},"ex":[{"id":"GO:0032991","label":"protein-containing complex"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:3055","label":"Chlamydomonas reinhardtii"}]},{"a":"CellStructureMech","b":"NaturalProductMech","n":23,"by":{"NCBITaxon":23},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:9606","label":"Homo sapiens"}]},{"a":"CellStructureMech","b":"AntibioticMech","n":18,"by":{"NCBITaxon":13,"CHEBI":5},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:4932","label":"Saccharomyces cerevisiae"},{"id":"NCBITaxon:90371","label":"Salmonella enterica subsp. enterica serovar Typhimurium"}]},{"a":"CellStructureMech","b":"MediaIngredientMech","n":14,"by":{"CHEBI":14},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:17029","label":"chitin"},{"id":"CHEBI:33403","label":"elemental sulfur"}]},{"a":"CellStructureMech","b":"CultureMech","n":7,"by":{"CHEBI":4,"NCBITaxon":3},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:16261","label":"chitosan"},{"id":"CHEBI:33403","label":"elemental sulfur"}]},{"a":"ProteinTraitsMech","b":"NaturalProductMech","n":794,"by":{"NCBITaxon":487,"UniProt":156,"CHEBI":148,"RHEA":3},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:100226","label":"Streptomyces coelicolor A3(2)"},{"id":"NCBITaxon:227321","label":"Emericella nidulans (strain FGSC A4 / ATCC 38163 / CBS 112.46 / NRRL 194 / M139)"}]},{"a":"ProteinTraitsMech","b":"AntibioticMech","n":2435,"by":{"ARO":1740,"CHEBI":594,"NCBITaxon":79,"UniProt":20,"GO":2},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:573","label":"Klebsiella pneumoniae"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"}]},{"a":"ProteinTraitsMech","b":"MediaIngredientMech","n":798,"by":{"CHEBI":797,"UBERON":1},"ex":[{"id":"CHEBI:15377","label":"water"},{"id":"CHEBI:15740","label":"formate"},{"id":"CHEBI:33709","label":"amino acid"}]},{"a":"ProteinTraitsMech","b":"CultureMech","n":233,"by":{"CHEBI":221,"NCBITaxon":10,"UBERON":2},"ex":[{"id":"CHEBI:15377","label":"water"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:17754","label":"glycerol"}]},{"a":"NaturalProductMech","b":"AntibioticMech","n":278,"by":{"CHEBI":180,"NCBITaxon":96,"UniProt":2},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"},{"id":"NCBITaxon:330879","label":"Aspergillus fumigatus (strain ATCC MYA-4609 / CBS 101355 / FGSC A1100 / Af293)"}]},{"a":"NaturalProductMech","b":"MediaIngredientMech","n":51,"by":{"CHEBI":51},"ex":[{"id":"CHEBI:15956","label":"biotin"},{"id":"CHEBI:16349","label":"L-citrulline"},{"id":"CHEBI:27592","label":"ectoine"}]},{"a":"NaturalProductMech","b":"CultureMech","n":5,"by":{"CHEBI":3,"NCBITaxon":2},"ex":[{"id":"CHEBI:15956","label":"biotin"},{"id":"CHEBI:16349","label":"L-citrulline"},{"id":"CHEBI:27592","label":"ectoine"}]},{"a":"AntibioticMech","b":"MediaIngredientMech","n":324,"by":{"CHEBI":324},"ex":[{"id":"CHEBI:33709","label":"amino acid"},{"id":"CHEBI:30746","label":"benzoic acid"},{"id":"CHEBI:17334","label":"penicillin"}]},{"a":"AntibioticMech","b":"CultureMech","n":29,"by":{"CHEBI":29},"ex":[{"id":"CHEBI:17334","label":"penicillin"},{"id":"CHEBI:48923","label":"erythromycin"},{"id":"CHEBI:30746","label":"benzoic acid"}]},{"a":"MediaIngredientMech","b":"CultureMech","n":612,"by":{"CHEBI":545,"KEGG":56,"FOODON":6,"UBERON":3,"CAS":1,"ENVO":1},"ex":[{"id":"FOODON:03315426","label":"yeast extract"},{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:2509","label":"agar"}]}]}; + var DATA = {"order":["HabitatMech","CommunityMech","TraitMech","CellStructureMech","ProteinTraitsMech","NaturalProductMech","AntibioticMech","MediaIngredientMech","CultureMech","TaxonMech"],"voc":["NCBITaxon","CHEBI","GO","UniProt","ENVO","UBERON","InterPro","PDB","CAS","METPO","KEGG","FOODON","PATO","GTDB","Pfam","RHEA","ARO","BTO","MIBiG","NPAtlas","PMID","DOI"],"heat":{"HabitatMech":{"CHEBI":24,"NCBITaxon":13227,"GO":7,"ENVO":3368,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":4,"UBERON":1123,"FOODON":198,"BTO":1367,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":516,"DOI":116},"CommunityMech":{"CHEBI":2971,"NCBITaxon":4253,"GO":1537,"ENVO":538,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":10,"FOODON":0,"BTO":0,"GTDB":2037,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":7320,"DOI":1223},"TraitMech":{"CHEBI":673,"NCBITaxon":996,"GO":886,"ENVO":22,"METPO":3617,"ARO":0,"UniProt":399,"InterPro":115,"Pfam":0,"RHEA":0,"PDB":0,"PATO":99,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":621,"DOI":7190},"CellStructureMech":{"CHEBI":65,"NCBITaxon":1438,"GO":11688,"ENVO":0,"METPO":14,"ARO":0,"UniProt":337,"InterPro":206,"Pfam":22,"RHEA":0,"PDB":277,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":698,"DOI":6636},"ProteinTraitsMech":{"CHEBI":374424,"NCBITaxon":358320,"GO":421586,"ENVO":0,"METPO":244,"ARO":397717,"UniProt":658574,"InterPro":1480044,"Pfam":521966,"RHEA":613456,"PDB":235957,"PATO":124,"UBERON":43,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":245,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":657527,"DOI":193845},"NaturalProductMech":{"CHEBI":1659,"NCBITaxon":13960,"GO":0,"ENVO":0,"METPO":0,"ARO":0,"UniProt":613,"InterPro":0,"Pfam":0,"RHEA":14,"PDB":0,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":10133,"NPAtlas":1756,"PMID":5703,"DOI":8437},"AntibioticMech":{"CHEBI":22104,"NCBITaxon":1085,"GO":3,"ENVO":0,"METPO":0,"ARO":16653,"UniProt":278,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":6,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":1823,"MIBiG":0,"NPAtlas":0,"PMID":1207,"DOI":216},"MediaIngredientMech":{"CHEBI":8220,"NCBITaxon":1,"GO":0,"ENVO":110,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":23,"FOODON":273,"BTO":3,"GTDB":0,"KEGG":61,"CAS":727,"MIBiG":0,"NPAtlas":0,"PMID":29,"DOI":9},"CultureMech":{"CHEBI":160678,"NCBITaxon":63,"GO":0,"ENVO":13,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":138,"FOODON":223,"BTO":0,"GTDB":0,"KEGG":1406,"CAS":1,"MIBiG":0,"NPAtlas":0,"PMID":68,"DOI":76},"TaxonMech":{"CHEBI":0,"NCBITaxon":9250364,"GO":0,"ENVO":0,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":648112,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":20558,"DOI":402247}},"cells":{"HabitatMech--BTO":587,"HabitatMech--CHEBI":11,"HabitatMech--ENVO":1296,"HabitatMech--FOODON":85,"HabitatMech--GO":2,"HabitatMech--NCBITaxon":896,"HabitatMech--PATO":3,"HabitatMech--UBERON":704,"CommunityMech--CHEBI":357,"CommunityMech--ENVO":408,"CommunityMech--GO":394,"CommunityMech--GTDB":367,"CommunityMech--NCBITaxon":422,"CommunityMech--UBERON":10,"TraitMech--CHEBI":183,"TraitMech--ENVO":14,"TraitMech--GO":292,"TraitMech--InterPro":61,"TraitMech--METPO":749,"TraitMech--NCBITaxon":484,"TraitMech--PATO":49,"TraitMech--UniProt":182,"CellStructureMech--CHEBI":24,"CellStructureMech--GO":535,"CellStructureMech--InterPro":33,"CellStructureMech--METPO":5,"CellStructureMech--NCBITaxon":531,"CellStructureMech--PDB":19,"CellStructureMech--Pfam":8,"CellStructureMech--UniProt":65,"ProteinTraitsMech--ARO":7452,"ProteinTraitsMech--CHEBI":30122,"ProteinTraitsMech--GO":110744,"ProteinTraitsMech--InterPro":120090,"ProteinTraitsMech--KEGG":231,"ProteinTraitsMech--METPO":119,"ProteinTraitsMech--NCBITaxon":98697,"ProteinTraitsMech--PATO":81,"ProteinTraitsMech--PDB":51718,"ProteinTraitsMech--Pfam":107455,"ProteinTraitsMech--RHEA":29550,"ProteinTraitsMech--UBERON":43,"ProteinTraitsMech--UniProt":159595,"NaturalProductMech--CHEBI":405,"NaturalProductMech--MIBiG":3115,"NaturalProductMech--NCBITaxon":3115,"NaturalProductMech--NPAtlas":1740,"NaturalProductMech--RHEA":1,"NaturalProductMech--UniProt":102,"AntibioticMech--ARO":568,"AntibioticMech--CAS":1797,"AntibioticMech--CHEBI":2814,"AntibioticMech--GO":3,"AntibioticMech--NCBITaxon":163,"AntibioticMech--PDB":5,"AntibioticMech--UniProt":47,"MediaIngredientMech--BTO":1,"MediaIngredientMech--CAS":287,"MediaIngredientMech--CHEBI":2232,"MediaIngredientMech--ENVO":26,"MediaIngredientMech--FOODON":99,"MediaIngredientMech--KEGG":58,"MediaIngredientMech--NCBITaxon":1,"MediaIngredientMech--UBERON":10,"CultureMech--CAS":1,"CultureMech--CHEBI":6125,"CultureMech--ENVO":12,"CultureMech--FOODON":203,"CultureMech--KEGG":329,"CultureMech--NCBITaxon":30,"CultureMech--UBERON":72,"TaxonMech--GTDB":118801,"TaxonMech--NCBITaxon":625960},"vocab_edges":[{"a":"HabitatMech","b":"CommunityMech","n":313,"by":{"NCBITaxon":265,"ENVO":42,"UBERON":4,"CHEBI":2},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"ENVO:00001998","label":"soil"},{"id":"ENVO:01001001","label":"plant-associated environment"}]},{"a":"HabitatMech","b":"TraitMech","n":122,"by":{"NCBITaxon":115,"ENVO":4,"PATO":2,"CHEBI":1},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"HabitatMech","b":"CellStructureMech","n":41,"by":{"NCBITaxon":41},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1117","label":"Cyanobacteriota"}]},{"a":"HabitatMech","b":"ProteinTraitsMech","n":1250,"by":{"NCBITaxon":1234,"UBERON":12,"CHEBI":2,"GO":2},"ex":[{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1869227","label":"bacterium"}]},{"a":"HabitatMech","b":"NaturalProductMech","n":312,"by":{"NCBITaxon":312},"ex":[{"id":"NCBITaxon:56","label":"Sorangium cellulosum"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1931","label":"Streptomyces sp."}]},{"a":"HabitatMech","b":"AntibioticMech","n":32,"by":{"NCBITaxon":32},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:573","label":"Klebsiella pneumoniae"}]},{"a":"HabitatMech","b":"MediaIngredientMech","n":22,"by":{"ENVO":15,"UBERON":4,"CHEBI":3},"ex":[{"id":"ENVO:00002149","label":"sea water"},{"id":"ENVO:00001998","label":"soil"},{"id":"ENVO:00002263","label":"garden soil"}]},{"a":"HabitatMech","b":"CultureMech","n":25,"by":{"NCBITaxon":13,"ENVO":7,"UBERON":4,"FOODON":1},"ex":[{"id":"UBERON:0000948","label":"heart"},{"id":"UBERON:0000955","label":"brain"},{"id":"UBERON:0000178","label":"blood"}]},{"a":"HabitatMech","b":"TaxonMech","n":6423,"by":{"NCBITaxon":6423},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:562","label":"Escherichia coli"}]},{"a":"CommunityMech","b":"TraitMech","n":157,"by":{"CHEBI":61,"NCBITaxon":61,"GO":35},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:15379","label":"dioxygen"},{"id":"GO:0015977","label":"carbon fixation"}]},{"a":"CommunityMech","b":"CellStructureMech","n":60,"by":{"NCBITaxon":36,"CHEBI":13,"GO":11},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:2157","label":"Archaea"},{"id":"NCBITaxon:562","label":"Escherichia coli"}]},{"a":"CommunityMech","b":"ProteinTraitsMech","n":689,"by":{"CHEBI":276,"NCBITaxon":226,"GO":186,"UBERON":1},"ex":[{"id":"CHEBI:30089","label":"acetate"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"GO:0015979","label":"photosynthesis"}]},{"a":"CommunityMech","b":"NaturalProductMech","n":128,"by":{"NCBITaxon":123,"CHEBI":5},"ex":[{"id":"NCBITaxon:286","label":"Pseudomonas"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:562","label":"Escherichia coli"}]},{"a":"CommunityMech","b":"AntibioticMech","n":63,"by":{"CHEBI":42,"NCBITaxon":21},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"},{"id":"CHEBI:33709","label":"amino acid"}]},{"a":"CommunityMech","b":"MediaIngredientMech","n":240,"by":{"CHEBI":238,"ENVO":2},"ex":[{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:33709","label":"amino acid"},{"id":"CHEBI:3312","label":"calcium dichloride"}]},{"a":"CommunityMech","b":"CultureMech","n":151,"by":{"CHEBI":138,"NCBITaxon":8,"ENVO":5},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:30089","label":"acetate"}]},{"a":"CommunityMech","b":"TaxonMech","n":1167,"by":{"NCBITaxon":784,"GTDB":383},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:286","label":"Pseudomonas"},{"id":"NCBITaxon:1386","label":"Bacillus"}]},{"a":"TraitMech","b":"CellStructureMech","n":114,"by":{"GO":53,"NCBITaxon":40,"CHEBI":7,"UniProt":6,"METPO":5,"InterPro":3},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:83333","label":"Escherichia coli (strain K12)"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"}]},{"a":"TraitMech","b":"ProteinTraitsMech","n":707,"by":{"GO":248,"NCBITaxon":136,"METPO":111,"CHEBI":109,"UniProt":56,"InterPro":47},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"METPO:1000631","label":"trophic type"}]},{"a":"TraitMech","b":"NaturalProductMech","n":57,"by":{"NCBITaxon":53,"CHEBI":4},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"TraitMech","b":"AntibioticMech","n":31,"by":{"NCBITaxon":21,"CHEBI":10},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"TraitMech","b":"MediaIngredientMech","n":59,"by":{"CHEBI":59},"ex":[{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:16526","label":"carbon dioxide"}]},{"a":"TraitMech","b":"CultureMech","n":36,"by":{"CHEBI":26,"NCBITaxon":10},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:17234","label":"glucose"}]},{"a":"TraitMech","b":"TaxonMech","n":274,"by":{"NCBITaxon":274},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:83333","label":"Escherichia coli (strain K12)"},{"id":"NCBITaxon:1358","label":"Lactococcus lactis"}]},{"a":"CellStructureMech","b":"ProteinTraitsMech","n":1058,"by":{"GO":737,"UniProt":155,"NCBITaxon":77,"InterPro":64,"CHEBI":15,"Pfam":10},"ex":[{"id":"GO:0032991","label":"protein-containing complex"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:3055","label":"Chlamydomonas reinhardtii"}]},{"a":"CellStructureMech","b":"NaturalProductMech","n":23,"by":{"NCBITaxon":23},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:9606","label":"Homo sapiens"}]},{"a":"CellStructureMech","b":"AntibioticMech","n":18,"by":{"NCBITaxon":13,"CHEBI":5},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:4932","label":"Saccharomyces cerevisiae"},{"id":"NCBITaxon:90371","label":"Salmonella enterica subsp. enterica serovar Typhimurium"}]},{"a":"CellStructureMech","b":"MediaIngredientMech","n":14,"by":{"CHEBI":14},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:17029","label":"chitin"},{"id":"CHEBI:33403","label":"elemental sulfur"}]},{"a":"CellStructureMech","b":"CultureMech","n":7,"by":{"CHEBI":4,"NCBITaxon":3},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:16261","label":"chitosan"},{"id":"CHEBI:33403","label":"elemental sulfur"}]},{"a":"CellStructureMech","b":"TaxonMech","n":124,"by":{"NCBITaxon":124},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:2759","label":"Eukaryota"},{"id":"NCBITaxon:2157","label":"Archaea"}]},{"a":"ProteinTraitsMech","b":"NaturalProductMech","n":794,"by":{"NCBITaxon":487,"UniProt":156,"CHEBI":148,"RHEA":3},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:100226","label":"Streptomyces coelicolor A3(2)"},{"id":"NCBITaxon:227321","label":"Emericella nidulans (strain FGSC A4 / ATCC 38163 / CBS 112.46 / NRRL 194 / M139)"}]},{"a":"ProteinTraitsMech","b":"AntibioticMech","n":2435,"by":{"ARO":1740,"CHEBI":594,"NCBITaxon":79,"UniProt":20,"GO":2},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:573","label":"Klebsiella pneumoniae"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"}]},{"a":"ProteinTraitsMech","b":"MediaIngredientMech","n":798,"by":{"CHEBI":797,"UBERON":1},"ex":[{"id":"CHEBI:15377","label":"water"},{"id":"CHEBI:15740","label":"formate"},{"id":"CHEBI:33709","label":"amino acid"}]},{"a":"ProteinTraitsMech","b":"CultureMech","n":233,"by":{"CHEBI":221,"NCBITaxon":10,"UBERON":2},"ex":[{"id":"CHEBI:15377","label":"water"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:17754","label":"glycerol"}]},{"a":"ProteinTraitsMech","b":"TaxonMech","n":7444,"by":{"NCBITaxon":7444},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:83334","label":"Escherichia coli O157:H7"},{"id":"NCBITaxon:623","label":"Shigella flexneri"}]},{"a":"NaturalProductMech","b":"AntibioticMech","n":278,"by":{"CHEBI":180,"NCBITaxon":96,"UniProt":2},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"},{"id":"NCBITaxon:330879","label":"Aspergillus fumigatus (strain ATCC MYA-4609 / CBS 101355 / FGSC A1100 / Af293)"}]},{"a":"NaturalProductMech","b":"MediaIngredientMech","n":51,"by":{"CHEBI":51},"ex":[{"id":"CHEBI:15956","label":"biotin"},{"id":"CHEBI:16349","label":"L-citrulline"},{"id":"CHEBI:27592","label":"ectoine"}]},{"a":"NaturalProductMech","b":"CultureMech","n":5,"by":{"CHEBI":3,"NCBITaxon":2},"ex":[{"id":"CHEBI:15956","label":"biotin"},{"id":"CHEBI:16349","label":"L-citrulline"},{"id":"CHEBI:27592","label":"ectoine"}]},{"a":"NaturalProductMech","b":"TaxonMech","n":1708,"by":{"NCBITaxon":1708},"ex":[{"id":"NCBITaxon:1883","label":"Streptomyces"},{"id":"NCBITaxon:1873","label":"Micromonospora"},{"id":"NCBITaxon:286","label":"Pseudomonas"}]},{"a":"AntibioticMech","b":"MediaIngredientMech","n":324,"by":{"CHEBI":324},"ex":[{"id":"CHEBI:33709","label":"amino acid"},{"id":"CHEBI:30746","label":"benzoic acid"},{"id":"CHEBI:17334","label":"penicillin"}]},{"a":"AntibioticMech","b":"CultureMech","n":29,"by":{"CHEBI":29},"ex":[{"id":"CHEBI:17334","label":"penicillin"},{"id":"CHEBI:48923","label":"erythromycin"},{"id":"CHEBI:30746","label":"benzoic acid"}]},{"a":"AntibioticMech","b":"TaxonMech","n":109,"by":{"NCBITaxon":109},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:573","label":"Klebsiella pneumoniae"},{"id":"NCBITaxon:470","label":"Acinetobacter baumannii"}]},{"a":"MediaIngredientMech","b":"CultureMech","n":612,"by":{"CHEBI":545,"KEGG":56,"FOODON":6,"UBERON":3,"CAS":1,"ENVO":1},"ex":[{"id":"FOODON:03315426","label":"yeast extract"},{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:2509","label":"agar"}]},{"a":"CultureMech","b":"TaxonMech","n":54,"by":{"NCBITaxon":54},"ex":[{"id":"NCBITaxon:210","label":"Helicobacter pylori"},{"id":"NCBITaxon:823","label":"Parabacteroides distasonis"},{"id":"NCBITaxon:851","label":"Fusobacterium nucleatum"}]}]}; var MANIFEST = {"version":1,"source":{"repository":"CultureBotAI/culturebotai-claw","revision":"2637172e6fdbfacf163f0b12d289a9828dda2f30","url":"https://github.com/CultureBotAI/culturebotai-claw/blob/2637172e6fdbfacf163f0b12d289a9828dda2f30/src/kg_microbe_fleet/fleet.yaml"},"capability_catalogue":{"id_label_validation":{},"curation_history":{},"strict_validation":{},"schema_sync":{},"release_management":{},"build_coordination":{},"documentation":{},"testing":{},"refactoring":{},"coordination_hooks":{},"deep_research":{},"edison_key_discovery":{},"environment_coverage":{"settings":{"record_globs":{"type":"string_list","required_when_enabled":true}}},"knowledge_gap_scan":{"settings":{"window":{"type":"integer","required_when_enabled":true,"minimum":1}}},"vendored_sync":{},"unmapped_inventory_input":{},"source_catalogue":{},"corpus_statistics":{"settings":{"fields":{"type":"string_list","required_when_enabled":true}}},"page_budgets":{"settings":{"site_path":{"type":"string","required_when_enabled":true},"budgets_path":{"type":"string","required_when_enabled":true}}},"kgx_export":{"settings":{"nodes_path":{"type":"string","required_when_enabled":true},"edges_path":{"type":"string","required_when_enabled":true},"extra_prefixes":{"type":"string_list"}}},"source_queue":{"settings":{"queue_path":{"type":"string","required_when_enabled":true},"extensions":{"type":"string_list"},"required_when_adopted":{"type":"string_list"}}},"metpo_proposal":{"settings":{"class_glob":{"type":"string","required_when_enabled":true},"property_glob":{"type":"string"}}},"sssom_export":{"settings":{"mapping_globs":{"type":"string_list","required_when_enabled":true},"extensions":{"type":"string_list"}}},"writer_audit":{"settings":{"search_dirs":{"type":"string_list","required_when_enabled":true},"save_helpers":{"type":"string_list"},"validators":{"type":"string_list"},"curation_markers":{"type":"string_list"},"exclude":{"type":"string_list"}}},"site_contract":{"settings":{"site_path":{"type":"string","required_when_enabled":true},"published_root":{"type":"string"},"allowed_hosts":{"type":"string_list"}}}},"mechs":{"CultureMech":{"key":"culturemech","github":"CultureBotAI/CultureMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"enabled"},"edison_key_discovery":{"status":"enabled"},"environment_coverage":{"status":"enabled","settings":{"record_globs":["data/merge_yaml/merged/*.yaml"]}},"knowledge_gap_scan":{"status":"enabled","settings":{"window":300}},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["source_environment","medium_type"]}},"page_budgets":{"status":"disabled","reason":"Generates a site through .github/workflows/generate-pages.yaml but declares no size or file-count budgets, so nothing watches it grow. Adopting them applies here; the limits are the repository's to set.","reason_claims":{"present":[".github/workflows/generate-pages.yaml"]}},"writer_audit":{"status":"enabled","settings":{"search_dirs":["scripts","src/culturemech"],"save_helpers":["write_validated_recipe"],"exclude":["scripts/audit_writers.py"]}},"sssom_export":{"status":"enabled","settings":{"mapping_globs":["output/*.sssom.tsv"],"extensions":["mapping_method"]}},"metpo_proposal":{"status":"disabled","reason":"Carries .claude/commands/ground-or-propose-metpo.md, so the grounding half is present, but has no proposals/ directory and has never minted a METPO id. Adopting applies once a CultureMech term needs one.","reason_claims":{"absent":["proposals"],"present":[".claude/commands/ground-or-propose-metpo.md"]}},"kgx_export":{"status":"disabled","reason":"scripts/export_kgx.py writes to output/kgx but has produced nothing tracked, so there is no graph for this contract to judge. Adopting it means running the exporter first; the check applies here once it does.","reason_claims":{"present":["scripts/export_kgx.py"],"absent":["output/kgx"]}},"source_queue":{"status":"disabled","reason":"Has no curation/source_queue.tsv. AntibioticMech wrote the pattern and CellStructureMech adapted it; adopting it here means ranking this corpus's own candidate sources and verifying their licences, which is curation work rather than a file copy.","reason_claims":{"absent":["curation/source_queue.tsv"]}},"site_contract":{"status":"disabled","reason":"Publishes a site built in CI, so no directory in the checkout is the output the check would judge; running it on the Jekyll or template sources reports missing .html files that the build creates. Adopting it means running the check on the build product, which applies here and is not yet wired."},"source_catalogue":{"status":"disabled","reason":"Fetches each source from its own script -- scripts/fetch_komodo_base_volumes.py, scripts/fetch_mediadive_solution_volumes.py, scripts/fetch_pubmed_abstracts.py -- with no download.yaml declaring them, so there is no catalogue to validate. Adopting one would apply here; it has not been written.","reason_claims":{"present":["scripts/fetch_komodo_base_volumes.py","scripts/fetch_mediadive_solution_volumes.py","scripts/fetch_pubmed_abstracts.py"],"absent":["download.yaml"]}},"unmapped_inventory_input":{"status":"enabled"}}},"MediaIngredientMech":{"key":"mediaingredientmech","github":"CultureBotAI/MediaIngredientMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"enabled"},"edison_key_discovery":{"status":"enabled"},"environment_coverage":{"status":"enabled","settings":{"record_globs":["data/ingredients/**/*.yaml"]}},"knowledge_gap_scan":{"status":"enabled","settings":{"window":300}},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["ingredient_type","ontology_mapping.mapping_quality"]}},"page_budgets":{"status":"disabled","reason":"Generates a site through .github/workflows/generate-pages.yaml but declares no size or file-count budgets, so nothing watches it grow. Adopting them applies here; the limits are the repository's to set.","reason_claims":{"present":[".github/workflows/generate-pages.yaml"]}},"writer_audit":{"status":"enabled","settings":{"search_dirs":["scripts","src/mediaingredientmech"],"save_helpers":["save_yaml","write_validated_ingredient"],"exclude":["scripts/audit_writers.py"]}},"sssom_export":{"status":"enabled","settings":{"mapping_globs":["mappings/*.sssom.tsv"],"extensions":["source","validation_method"]}},"metpo_proposal":{"status":"not_applicable","reason":"MIM grounds ingredients in ChEBI and FOODON and publishes SSSOM mappings; METPO models microbial phenotypes and processes, which is not the axis this corpus curates."},"kgx_export":{"status":"disabled","reason":"Publishes term mappings rather than a graph; its contribution to kg-microbe is SSSOM. Adopting KGX would apply here only if it starts emitting nodes and edges."},"source_queue":{"status":"disabled","reason":"Has no curation/source_queue.tsv. AntibioticMech wrote the pattern and CellStructureMech adapted it; adopting it here means ranking this corpus's own candidate sources and verifying their licences, which is curation work rather than a file copy.","reason_claims":{"absent":["curation/source_queue.tsv"]}},"site_contract":{"status":"disabled","reason":"Publishes a site built in CI, so no directory in the checkout is the output the check would judge; running it on the Jekyll or template sources reports missing .html files that the build creates. Adopting it means running the check on the build product, which applies here and is not yet wired."},"source_catalogue":{"status":"disabled","reason":"Fetches ontologies through download_ontologies.py rather than a declared catalogue, so there is no download.yaml to validate. Adopting one would apply here; it has not been written.","reason_claims":{"present":["scripts/download_ontologies.py"],"absent":["download.yaml"]}},"unmapped_inventory_input":{"status":"enabled"}}},"CommunityMech":{"key":"communitymech","github":"CultureBotAI/CommunityMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"enabled"},"edison_key_discovery":{"status":"enabled"},"environment_coverage":{"status":"enabled","settings":{"record_globs":["data/isolates/*.yaml"]}},"knowledge_gap_scan":{"status":"enabled","settings":{"window":305}},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["environment_term"]}},"page_budgets":{"status":"disabled","reason":"Generates a site through .github/workflows/generate-pages.yaml but declares no size or file-count budgets, so nothing watches it grow. Adopting them applies here; the limits are the repository's to set.","reason_claims":{"present":[".github/workflows/generate-pages.yaml"]}},"writer_audit":{"status":"enabled","settings":{"search_dirs":["scripts","src/communitymech"],"save_helpers":["write_validated_community"],"curation_markers":["record_curation_event"],"exclude":["scripts/audit_writers.py"]}},"sssom_export":{"status":"not_applicable","reason":"Publishes KGX nodes and edges rather than term mappings; its contribution to kg-microbe is a graph, not a mapping set, so there is no SSSOM file for this contract to judge."},"metpo_proposal":{"status":"enabled","settings":{"class_glob":"proposals/*/metpo_proposal_classes_robot.tsv","property_glob":"proposals/*/metpo_proposal_properties_robot.tsv"}},"kgx_export":{"status":"enabled","settings":{"nodes_path":"output/kgx/nodes.tsv","edges_path":"output/kgx/edges.tsv"}},"source_queue":{"status":"disabled","reason":"Has no curation/source_queue.tsv. AntibioticMech wrote the pattern and CellStructureMech adapted it; adopting it here means ranking this corpus's own candidate sources and verifying their licences, which is curation work rather than a file copy.","reason_claims":{"absent":["curation/source_queue.tsv"]}},"site_contract":{"status":"enabled","settings":{"site_path":"docs"}},"source_catalogue":{"status":"disabled","reason":"Has no download.yaml; its inputs arrive through per-source scripts rather than a declared catalogue. Adopting one would apply here; it has not been written.","reason_claims":{"absent":["download.yaml"]}},"unmapped_inventory_input":{"status":"enabled"}}},"TraitMech":{"key":"traitmech","github":"CultureBotAI/TraitMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"enabled"},"edison_key_discovery":{"status":"enabled"},"environment_coverage":{"status":"not_applicable","reason":"Environment coverage currently compares culture media, ingredients, and microbial communities; trait records are not an environment inventory input."},"knowledge_gap_scan":{"status":"enabled","settings":{"window":300}},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["mapping_status","trait_category"]}},"page_budgets":{"status":"disabled","reason":"Serves 490 tracked pages under pages/ straight from main via GitHub Pages -- it has no generate-pages.yaml, unlike the other four -- and declares no size or file-count budgets, so nothing watches them grow. Adopting them applies here; the limits are the repository's to set.","reason_claims":{"present":["pages"],"absent":[".github/workflows/generate-pages.yaml"]}},"writer_audit":{"status":"enabled","settings":{"search_dirs":["scripts","src/traitmech"],"save_helpers":["write_validated_trait"],"curation_markers":["record_curation"],"exclude":["scripts/audit_writers.py"]}},"sssom_export":{"status":"enabled","settings":{"mapping_globs":["proposals/*/metpo_proposal_mappings.sssom.tsv"]}},"metpo_proposal":{"status":"enabled","settings":{"class_glob":"proposals/*/metpo_proposal_classes_robot.tsv","property_glob":"proposals/*/metpo_proposal_properties_robot.tsv"}},"kgx_export":{"status":"disabled","reason":"Publishes trait records and METPO mapping proposals, not a KGX graph."},"source_queue":{"status":"disabled","reason":"Has no curation/source_queue.tsv. AntibioticMech wrote the pattern and CellStructureMech adapted it; adopting it here means ranking this corpus's own candidate sources and verifying their licences, which is curation work rather than a file copy.","reason_claims":{"absent":["curation/source_queue.tsv"]}},"site_contract":{"status":"enabled","settings":{"site_path":"pages","published_root":".","allowed_hosts":["cdn.jsdelivr.net"]}},"source_catalogue":{"status":"enabled"},"unmapped_inventory_input":{"status":"not_applicable","reason":"The unmapped-ingredient inventory reads culture-media and ingredient corpora; TraitMech curates traits and has no ingredient records, so scripts/inventory_unmapped_ingredients.py defines no loader for it.","reason_claims":{"present":["claw:scripts/inventory_unmapped_ingredients.py"]}}}},"ProteinTraitsMech":{"key":"proteintraitsmech","github":"CultureBotAI/proteintraitsmech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"enabled"},"edison_key_discovery":{"status":"not_applicable","reason":"ProteinTraitsMech does not use an Edison research-provider key; provider integration is configured through its own supported credential surfaces."},"environment_coverage":{"status":"not_applicable","reason":"Environment coverage currently compares culture media, ingredients, and microbial communities; protein-trait records are not an environment inventory input."},"knowledge_gap_scan":{"status":"not_applicable","reason":"Record-level knowledge-gap scanning targets curated per-record discussion text. This corpus is ontology-derived, so there is no per-record gap surface to scan; the repository is correspondingly absent from the knowledge-gap-scan workflow matrix."},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["trait_axis","mapping_status"]}},"page_budgets":{"status":"enabled","settings":{"site_path":"_site","budgets_path":"conf/pages_budgets.json"}},"writer_audit":{"status":"not_applicable","reason":"Its scripts/audit_writers.py shares the name and nothing else -- a different tool built on registered editors and guard tests, ~600 lines apart from the other four. This audit does not describe what that one checks, and consolidating them would mean choosing one model over the other rather than removing a duplicate.","reason_claims":{"present":["scripts/audit_writers.py"]}},"sssom_export":{"status":"disabled","reason":"Grounds protein traits directly in its own records rather than publishing a mapping set. Adopting one would apply here; none has been written."},"metpo_proposal":{"status":"disabled","reason":"Carries METPO-grounded records under data/traits/**/metpo/, so it consumes METPO, but proposes no new terms and has no proposals/ directory. Adopting applies once a protein trait needs a term METPO lacks.","reason_claims":{"absent":["proposals"]}},"kgx_export":{"status":"disabled","reason":"Publishes protein-trait records rather than a graph."},"source_queue":{"status":"disabled","reason":"Has no curation/source_queue.tsv. AntibioticMech wrote the pattern and CellStructureMech adapted it; adopting it here means ranking this corpus's own candidate sources and verifying their licences, which is curation work rather than a file copy.","reason_claims":{"absent":["curation/source_queue.tsv"]}},"site_contract":{"status":"disabled","reason":"Publishes a site built in CI, so no directory in the checkout is the output the check would judge; running it on the Jekyll or template sources reports missing .html files that the build creates. Adopting it means running the check on the build product, which applies here and is not yet wired."},"source_catalogue":{"status":"enabled"},"unmapped_inventory_input":{"status":"not_applicable","reason":"The unmapped-ingredient inventory reads culture-media and ingredient corpora; ProteinTraitsMech curates protein-trait records and has no ingredient corpus, so scripts/inventory_unmapped_ingredients.py defines no loader for it.","reason_claims":{"present":["claw:scripts/inventory_unmapped_ingredients.py"]}}}},"AntibioticMech":{"key":"antibioticmech","github":"CultureBotAI/AntibioticMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"vendored_sync":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"testing":{"status":"enabled"},"documentation":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"disabled","reason":"Has research-antibiotic, research-entity and deep-research-canary recipes and a research/ tree, but no conf/deep_research_provider.yaml -- the profile every deep-research Mech declares and the contract resolves. Enabled on the recipes alone this would assert a profile that does not exist; the recipes are a research route, not the declared provider contract.","reason_claims":{"present":["research"],"absent":["conf/deep_research_provider.yaml"]}},"edison_key_discovery":{"status":"not_applicable","reason":"Research runs through this repository's own research-antibiotic and research-entity recipes; it uses no Edison provider key."},"environment_coverage":{"status":"not_applicable","reason":"Environment coverage compares culture media, ingredients and microbial communities. An antimicrobial-compound corpus is not an environment inventory input."},"unmapped_inventory_input":{"status":"not_applicable","reason":"The unmapped inventory reconciles ingredient names across media corpora; antimicrobial compounds are not one of its sources."},"knowledge_gap_scan":{"status":"disabled","reason":"Records do not carry the shared Discussion section the scan reads, and this repository is not in the knowledge-gap-scan workflow matrix. Enable once records carry it."},"source_catalogue":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["antimicrobial_class","grounding_status"]}},"source_queue":{"status":"enabled","settings":{"queue_path":"curation/source_queue.tsv"}},"site_contract":{"status":"enabled","settings":{"site_path":"pages"}},"page_budgets":{"status":"disabled","reason":"Serves tracked pages under pages/ from main via GitHub Pages and declares no size or file-count budgets, so nothing watches them grow -- 2,956 files and 30.1 MB measured at admission (#230). Adopting them applies here; the limits are this repository's to set.","reason_claims":{"present":["pages"]}},"writer_audit":{"status":"disabled","reason":"Has no scripts/audit_writers.py, so there is no drift between writer copies to remove yet. Adopting it applies once more writers exist.","reason_claims":{"absent":["scripts/audit_writers.py"]}},"sssom_export":{"status":"disabled","reason":"Records carry ChEBI and ARO identifiers inline rather than through a mapping file. Adopting SSSOM applies once a mapping product exists."},"metpo_proposal":{"status":"disabled","reason":"No proposals/ directory and no METPO grounding. Antimicrobial compounds are grounded in ChEBI and ARO inline; adopting applies once a resistance or activity phenotype needs a METPO term.","reason_claims":{"absent":["proposals"]}},"kgx_export":{"status":"disabled","reason":"No exporter and no graph product yet; adopting KGX applies once the corpus is consumed as a graph."}}},"CellStructureMech":{"key":"cellstructuremech","github":"CultureBotAI/CellStructureMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"disabled","reason":"Research so far is source assessment written by hand under research/ with no provider client or research recipe in the justfile; the repository has not decided on a paid research route.","reason_claims":{"present":["research"]}},"edison_key_discovery":{"status":"not_applicable","reason":"CellStructureMech does not use an Edison research-provider key; it has no research provider integration at all."},"environment_coverage":{"status":"not_applicable","reason":"Environment coverage currently compares culture media, ingredients, and microbial communities; cell-structure records are not an environment inventory input."},"knowledge_gap_scan":{"status":"disabled","reason":"Records carry the shared Discussion section, so the scan applies, but the corpus is four records and the repository is not yet in the knowledge-gap-scan workflow matrix; enable once the first tranche of records lands (CellStructureMech#12)."},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["structure_category","mapping_status"]}},"page_budgets":{"status":"disabled","reason":"Serves tracked pages under pages/ straight from main via GitHub Pages -- it has no generate-pages.yaml -- and declares no size or file-count budgets, so nothing watches them grow. Adopting them applies here; the limits are the repository's to set.","reason_claims":{"present":["pages"],"absent":[".github/workflows/generate-pages.yaml"]}},"writer_audit":{"status":"disabled","reason":"Has no scripts/audit_writers.py, so there is no drift to remove yet. Adopting it applies here once the corpus grows; the settings are the repository's to declare.","reason_claims":{"absent":["scripts/audit_writers.py"]}},"sssom_export":{"status":"disabled","reason":"Records carry GO cellular-component identifiers inline rather than through a mapping file, and the corpus is four records. Adopting one applies once it grows."},"metpo_proposal":{"status":"disabled","reason":"Structures are grounded in GO cellular-component terms inline and there is no proposals/ directory. Adopting applies once a structure phenotype needs a METPO term GO does not carry.","reason_claims":{"absent":["proposals"]}},"kgx_export":{"status":"disabled","reason":"Four structure records and no exporter; adopting KGX applies once the corpus grows."},"source_queue":{"status":"enabled","settings":{"queue_path":"curation/source_queue.tsv","extensions":["taxon_link","item_id","script"],"required_when_adopted":["script"]}},"site_contract":{"status":"enabled","settings":{"site_path":"pages","published_root":"."}},"source_catalogue":{"status":"disabled","reason":"The repository keeps its ranked source list as curation/source_queue.tsv, machine-checked by scripts/check_source_queue.py inside its qc gate, rather than a download.yaml in the fleet's catalogue shape; there is no download.yaml to parse. Converging on one shape is open.","reason_claims":{"present":["curation/source_queue.tsv","scripts/check_source_queue.py"],"absent":["download.yaml"]}},"unmapped_inventory_input":{"status":"not_applicable","reason":"The unmapped-ingredient inventory reads culture-media and ingredient corpora; CellStructureMech curates cell structures and has no ingredient records, so scripts/inventory_unmapped_ingredients.py defines no loader for it.","reason_claims":{"present":["claw:scripts/inventory_unmapped_ingredients.py"]}}}},"HabitatMech":{"key":"habitatmech","github":"CultureBotAI/HabitatMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"disabled","reason":"Has research, research-dry and deep-research-canary recipes, a research/ tree and the vendored scripts/deep_research_contract.py, but no conf/deep_research_provider.yaml -- the profile every deep-research Mech declares and the contract resolves. Enabled on the recipes alone this would assert a profile that does not exist.","reason_claims":{"present":["research","scripts/deep_research_contract.py"],"absent":["conf/deep_research_provider.yaml"]}},"edison_key_discovery":{"status":"not_applicable","reason":"HabitatMech does not use an Edison research-provider key; its research recipes run through its own provider surface."},"environment_coverage":{"status":"disabled","reason":"HabitatMech is itself an environment vocabulary: 3,213 habitat records grounded in ENVO, UBERON, FOODON and BTO. Environment coverage compares culture media, ingredients and communities against ENVO and has no loader for HabitatRecord, so it cannot yet read this corpus as either an input or the reference set. Adopting it applies here and is the more valuable direction: teach environment_coverage_dashboard.py to treat habitat records as the reference the other corpora are measured against.","reason_claims":{"present":["claw:scripts/environment_coverage_dashboard.py"]}},"knowledge_gap_scan":{"status":"disabled","reason":"Records carry the shared Discussion section, so the scan applies. The workflow matrix is generated from this manifest, so enabling the capability here with a settings.window is what adds the repository to it. Left disabled until HabitatMech has run the scan once locally and chosen its window."},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["habitat_category","grounding_status","mapping_status"]}},"page_budgets":{"status":"disabled","reason":"Serves 3,404 published HTML pages under pages/ straight from main via GitHub Pages -- it has no generate-pages.yaml -- and declares no size or file-count budgets, so nothing watches them grow. Adopting them applies here; the limits are the repository's to set.","reason_claims":{"present":["pages"],"absent":[".github/workflows/generate-pages.yaml"]}},"writer_audit":{"status":"disabled","reason":"Has no scripts/audit_writers.py. Its writers exist (write_validated_habitat and record_curation_event in the seeder) and records are seeded as build products, so there is drift to audit; adopting it applies here once the audit is written.","reason_claims":{"absent":["scripts/audit_writers.py"]}},"sssom_export":{"status":"disabled","reason":"Grounds each habitat inline on the record (ENVO, UBERON, FOODON, BTO) and keeps its ontology requests as curation/term_requests.tsv rather than publishing a mapping set; there is no SSSOM file for this contract to judge. Adopting one would apply here.","reason_claims":{"present":["curation/term_requests.tsv"]}},"metpo_proposal":{"status":"disabled","reason":"Habitats are grounded in ENVO and the repository raises its gaps through term requests rather than METPO cohorts, so it has no proposals directory. Adopting applies once a habitat-associated phenotype needs a METPO term.","reason_claims":{"absent":["proposals"]}},"kgx_export":{"status":"disabled","reason":"Consumes kg-microbe's KGX as an input -- conf/sources.yaml names the checkout that supplies ENVO, UBERON, FOODON and BTO -- and publishes habitat records, not a graph. Adopting KGX would apply here only if it starts emitting nodes and edges.","reason_claims":{"present":["conf/sources.yaml"]}},"source_queue":{"status":"disabled","reason":"Has no curation/source_queue.tsv; its sources are declared in conf/sources.yaml and the raw payloads in data/raw/MANIFEST.yaml. AntibioticMech wrote the pattern and CellStructureMech adapted it; adopting it here means ranking candidate habitat sources and verifying their licences, which is curation work rather than a file copy.","reason_claims":{"present":["conf/sources.yaml","data/raw/MANIFEST.yaml"],"absent":["curation/source_queue.tsv"]}},"site_contract":{"status":"disabled","reason":"Publishes 3,404 HTML pages under pages/ straight from main, so the check has a directory to judge, but it has not been measured on this site yet. Enable after measuring on joining, as AntibioticMech did, so the contract's numbers keep describing what it runs on.","reason_claims":{"present":["pages"]}},"source_catalogue":{"status":"disabled","reason":"Declares its sources in conf/sources.yaml and the fetched payloads in data/raw/MANIFEST.yaml rather than a download.yaml in the fleet's catalogue shape; there is no download.yaml to parse. Converging on one shape is open.","reason_claims":{"present":["conf/sources.yaml","data/raw/MANIFEST.yaml"],"absent":["download.yaml"]}},"unmapped_inventory_input":{"status":"not_applicable","reason":"The unmapped-ingredient inventory reads culture-media and ingredient corpora; HabitatMech curates habitats and has no ingredient records, so scripts/inventory_unmapped_ingredients.py defines no loader for it.","reason_claims":{"present":["claw:scripts/inventory_unmapped_ingredients.py"]}}}},"NaturalProductMech":{"key":"naturalproductmech","github":"CultureBotAI/NaturalProductMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"disabled","reason":"Vendors the governed curation-history schema and carries a new-history recipe, but has no history directory yet, so no record can append an event. Adopting applies once the tree exists and the recipe is wired into CI.","reason_claims":{"absent":["history"]}},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"disabled","reason":"No conf/deep_research_provider.yaml and no research recipe; sources are assessed through the source queue. Adopting applies once a provider profile exists under claw's contract.","reason_claims":{"absent":["conf/deep_research_provider.yaml"]}},"edison_key_discovery":{"status":"not_applicable","reason":"NaturalProductMech does not use an Edison research-provider key; it has no research provider integration at all."},"environment_coverage":{"status":"not_applicable","reason":"Environment coverage compares culture media, ingredients and microbial communities. A natural-product structure corpus is not one of those inputs."},"knowledge_gap_scan":{"status":"disabled","reason":"Records do not carry the shared Discussion section the scan reads, and this repository is not in the knowledge-gap-scan workflow matrix. Enable once records carry it."},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["np_pathway","np_classification","grounding_status","curation_status"]}},"page_budgets":{"status":"disabled","reason":"Serves tracked pages under pages/ straight from main via GitHub Pages and declares no size or file-count budgets, so no conf/pages_budgets.json exists for the audit to read.","reason_claims":{"present":["pages"],"absent":["conf/pages_budgets.json"]}},"writer_audit":{"status":"disabled","reason":"Has no scripts/audit_writers.py, so there is no drift between writer copies to remove yet. Adopting it applies here once the corpus is edited by more than one writer.","reason_claims":{"absent":["scripts/audit_writers.py"]}},"sssom_export":{"status":"disabled","reason":"Records carry ChEBI, NPAtlas and PubChem identifiers inline rather than through a mapping file. Adopting SSSOM applies once a mapping product exists."},"metpo_proposal":{"status":"disabled","reason":"No proposals directory and no METPO grounding; structures are grounded in ChEBI. Adopting applies once a natural-product phenotype needs a METPO term.","reason_claims":{"absent":["proposals"]}},"kgx_export":{"status":"disabled","reason":"No exporter and no graph product yet; adopting KGX applies once the corpus is consumed as a graph."},"source_queue":{"status":"enabled","settings":{"queue_path":"curation/source_queue.tsv","extensions":["structures"]}},"site_contract":{"status":"enabled","settings":{"site_path":"pages"}},"source_catalogue":{"status":"disabled","reason":"Keeps its ranked source list as curation/source_queue.tsv and fetches each adopted source through its own extract recipe; there is no download.yaml for the catalogue check to read. Adopting means deriving the machine-fetchable half from the queue.","reason_claims":{"present":["curation/source_queue.tsv"],"absent":["download.yaml"]}},"unmapped_inventory_input":{"status":"not_applicable","reason":"The unmapped inventory reconciles ingredient names across media corpora; natural-product structures are not one of its inputs."}}},"TaxonMech":{"key":"taxonmech","github":"CultureBotAI/TaxonMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"disabled","reason":"Vendors scripts/deep_research_contract.py but has no conf/deep_research_provider.yaml or provider recipe. Enable once a research provider is configured and exercised under the shared contract.","reason_claims":{"present":["scripts/deep_research_contract.py"],"absent":["conf/deep_research_provider.yaml"]}},"edison_key_discovery":{"status":"not_applicable","reason":"TaxonMech has no Edison integration or Edison research-provider key."},"environment_coverage":{"status":"not_applicable","reason":"Environment coverage compares culture media, ingredients and microbial communities; taxon identity records are not one of its inputs."},"knowledge_gap_scan":{"status":"disabled","reason":"The schema supports Discussion but no shared scan window or workflow is configured. Enable after adding a durable curated overlay that the generated-corpus pipeline preserves and wiring the scanner to it."},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["taxon_domain","rank","grounding_status","mapping_status"]}},"page_budgets":{"status":"disabled","reason":"Publishes tracked pages under pages/ but has no conf/pages_budgets.json. Enable once explicit size and file-count budgets are configured and measured.","reason_claims":{"present":["pages"],"absent":["conf/pages_budgets.json"]}},"writer_audit":{"status":"disabled","reason":"Has no scripts/audit_writers.py. Records use a native seeder and validated writer, but no shared audit profile has been adopted. Enable after configuring the profile and measuring its writer coverage.","reason_claims":{"absent":["scripts/audit_writers.py"]}},"sssom_export":{"status":"disabled","reason":"Stores taxonomy mappings and cross-references inline; no SSSOM mapping product is emitted. Enable once a validated export exists."},"metpo_proposal":{"status":"disabled","reason":"The schema references METPO but there is no proposals/ directory or proposal cohort. Enable once the repository produces terms under the shared proposal contract.","reason_claims":{"absent":["proposals"]}},"kgx_export":{"status":"disabled","reason":"Consumes kg-microbe KGX as an input but does not emit a graph product. Enable when an exporter produces validated nodes and edges."},"source_queue":{"status":"disabled","reason":"Sources are configured in conf/sources.yaml and inventoried in data/raw/MANIFEST.yaml; no curation/source_queue.tsv ranks candidate sources. Enable once that review queue is adopted.","reason_claims":{"present":["conf/sources.yaml","data/raw/MANIFEST.yaml"],"absent":["curation/source_queue.tsv"]}},"site_contract":{"status":"enabled","settings":{"site_path":"pages"}},"source_catalogue":{"status":"disabled","reason":"Uses conf/sources.yaml and data/raw/MANIFEST.yaml but has no download.yaml in the shared catalogue shape. Enable after adapting the source declarations to that contract.","reason_claims":{"present":["conf/sources.yaml","data/raw/MANIFEST.yaml"],"absent":["download.yaml"]}},"unmapped_inventory_input":{"status":"not_applicable","reason":"The unmapped inventory reconciles ingredient names across media corpora; taxon identity records are not one of its inputs."}}}},"artifact_count":16}; var MECHS = { @@ -469,20 +469,35 @@ Each X-Mech is an **autonomous knowledge factory** that curates, validates, and // Directed cross-references between Mech records, schemas and curation practice. var XREFS = [ - { from: "CultureMech", to: "MediaIngredientMech", kind: "data", what: "Ingredient strings and occurrence counts inform scoped MIM curation; MIM records carry CultureMech:NNNNNN back-links by stable id.", ev: "MIM schema CultureMechReference; claw ingredient_curation_pipeline", url: "https://github.com/CultureBotAI/MediaIngredientMech/blob/main/src/mediaingredientmech/schema/mediaingredientmech.yaml" }, - { from: "MediaIngredientMech", to: "CultureMech", kind: "data", what: "Curated ChEBI/FOODON artifacts support scoped recipe updates; CultureMech vendors MIM's ingredient-role enums and consumes its label index.", ev: "CultureMech src/culturemech/schema/mim_roles.yaml", url: "https://github.com/CultureBotAI/CultureMech/blob/main/src/culturemech/schema/mim_roles.yaml" }, - { from: "CommunityMech", to: "CultureMech", kind: "data", what: "Community records name the medium they were grown in by CultureMech id (through culturemech_id); CultureMech imported media from CommunityMech with their community ids and backfilled recipe source environments through that link.", ev: "CommunityMech docs/cross_repo_linking.md; CultureMech scripts/import_from_communitymech.py, scripts/backfill_source_environment.py", url: "https://github.com/CultureBotAI/CommunityMech/blob/main/docs/cross_repo_linking.md" }, - { from: "CommunityMech", to: "MediaIngredientMech", kind: "data", what: "MIM imported CommunityMech's unmapped growth-media ingredient strings as MIM records (source communitymech-unmapped); CommunityMech's own MIM-id slots are marked vestigial, with chebi_term as the join.", ev: "MIM data/ingredients (communitymech-unmapped); CommunityMech schema GrowthMediaComponent, RelatedIngredient", url: "https://github.com/CultureBotAI/MediaIngredientMech/blob/main/docs/CURIE_STANDARD.md" }, - { from: "TraitMech", to: "CellStructureMech", kind: "data", what: "Structures list the phenotypes they confer as TraitMech / METPO terms; causal-graph node vocabulary is TraitMech's plus STRUCTURE.", ev: "CellStructureMech schema associated_traits", url: "https://github.com/CultureBotAI/CellStructureMech/blob/main/src/cellstructuremech/schema/cellstructuremech.yaml" }, - { from: "CellStructureMech", to: "ProteinTraitsMech", kind: "schema", what: "A single protein is a component, not a record: it grounds to InterPro / UniProtKB and hands off to ProteinTraitsMech.", ev: "CellStructureMech docs/CURATION.md", url: "https://github.com/CultureBotAI/CellStructureMech/blob/main/docs/CURATION.md" }, - { from: "TraitMech", to: "HabitatMech", kind: "schema", what: "Habitat causal graphs reuse most of TraitMech's node vocabulary so graphs stay comparable; a node may be a TraitMech or METPO term.", ev: "HabitatMech schema CausalNode", url: "https://github.com/CultureBotAI/HabitatMech/blob/main/src/habitatmech/schema/habitatmech.yaml" }, - { from: "HabitatMech", to: "CultureMech", kind: "practice", what: "HabitatMech grounds GOLD's culture-media habitat to BTO:0000316 culture medium; the curation decision points to CultureMech for related curation.", ev: "HabitatMech curation/decisions.tsv", url: "https://github.com/CultureBotAI/HabitatMech/blob/main/curation/decisions.tsv" }, - { from: "HabitatMech", to: "TaxonMech", kind: "schema", what: "TaxonMech's schema lets a habitat node in a causal graph be a HabitatMech or ENVO term and declares the habitatmech: prefix; no TaxonMech record has a causal graph yet.", ev: "TaxonMech schema CausalNodeTypeEnum and prefixes", url: "https://github.com/CultureBotAI/TaxonMech/blob/main/src/taxonmech/schema/taxonmech.yaml" }, - { from: "AntibioticMech", to: "NaturalProductMech", kind: "data", what: "Natural products that share an InChIKey with an AntibioticMech structure link to that record and take its antimicrobial class, not its targets or mechanism; NaturalProductMech also adapted AntibioticMech's source-queue pattern.", ev: "NaturalProductMech data/raw/antibioticmech_inchikeys.tsv; .claude/skills/source-queue", url: "https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/raw/antibioticmech_inchikeys.tsv" }, - { from: "AntibioticMech", to: "CellStructureMech", kind: "practice", what: "The licensed source-queue curation pattern was written here and adapted by CellStructureMech.", ev: "claw docs/guides/SOURCE_QUEUE.md", url: "https://github.com/CultureBotAI/culturebotai-claw/blob/main/docs/guides/SOURCE_QUEUE.md" }, - { from: "ProteinTraitsMech", to: "TraitMech", kind: "practice", what: "TraitMech's download.yaml source catalogue follows ProteinTraitsMech's shape, and its check_sources.py validator is adapted from ProteinTraitsMech's.", ev: "TraitMech download.yaml; scripts/check_sources.py", url: "https://github.com/CultureBotAI/TraitMech/blob/main/download.yaml" }, - { from: "TraitMech", to: "ProteinTraitsMech", kind: "schema", what: "ProteinTraitsMech keeps a reviewed snapshot of TraitMech's TraitCategoryEnum; a CI audit reports a non-blocking notice when UPPER or OTHER, the only tokens both vocabularies use, is described differently.", ev: "ProteinTraitsMech conf/traitmech_category_vocabulary.yaml; scripts/audit_cross_mech_categories.py", url: "https://github.com/CultureBotAI/proteintraitsmech/blob/main/conf/traitmech_category_vocabulary.yaml" }, - { from: "TraitMech", to: "TaxonMech", kind: "schema", what: "TaxonMech's schema lets a trait node in a causal graph be a TraitMech or METPO term and declares the traitmech: prefix; no TaxonMech record has a causal graph yet.", ev: "TaxonMech schema CausalNodeTypeEnum and prefixes", url: "https://github.com/CultureBotAI/TaxonMech/blob/main/src/taxonmech/schema/taxonmech.yaml" } + { from: "HabitatMech", to: "TaxonMech", kind: "schema", what: "TaxonMech's causal-graph node types are the same 16 as HabitatMech's. A habitat node may be a HabitatMech or ENVO term, the schema declares the habitatmech: prefix, and TaxonMech's curation-event helper and closed-schema write gate are ported from HabitatMech's and CellStructureMech's; no TaxonMech record has a causal graph yet.", ev: "TaxonMech schema CausalNodeTypeEnum and prefixes; src/taxonmech/curate/curation_event.py, src/taxonmech/validation/write_validated.py", url: "https://github.com/CultureBotAI/TaxonMech/blob/main/src/taxonmech/schema/taxonmech.yaml" }, + { from: "HabitatMech", to: "CellStructureMech", kind: "practice", what: "CellStructureMech's curation-event helper and closed-schema write gate are ported from HabitatMech's modules of the same names, which HabitatMech had itself ported from TraitMech. 17 of CellStructureMech's writer scripts use both.", ev: "CellStructureMech src/cellstructuremech/curate/curation_event.py; validation/write_validated.py", url: "https://github.com/CultureBotAI/CellStructureMech/blob/main/src/cellstructuremech/curate/curation_event.py" }, + { from: "HabitatMech", to: "AntibioticMech", kind: "practice", what: "AntibioticMech's static-site generator is ported from HabitatMech's render_pages.py, including its paged category pages that filter through a JSON index, and its stylesheet is ported from HabitatMech's. Together they render AntibioticMech's whole browser.", ev: "AntibioticMech scripts/render_pages.py; src/antibioticmech/templates/style.css", url: "https://github.com/CultureBotAI/AntibioticMech/blob/main/scripts/render_pages.py" }, + { from: "CommunityMech", to: "TraitMech", kind: "practice", what: "TraitMech's Edison deep-research runner and skill are ports of CommunityMech's research_community_edison.py and deep-research-community skill. Its METPO proposal skill takes CommunityMech's v1 proposal cohort as the worked example to follow, and keeps TraitMech's placeholder ID blocks clear of that cohort's.", ev: "TraitMech scripts/research_trait_edison.py; .claude/skills/deep-research-trait and metpo-proposal", url: "https://github.com/CultureBotAI/TraitMech/blob/main/scripts/research_trait_edison.py" }, + { from: "CommunityMech", to: "MediaIngredientMech", kind: "data", what: "MediaIngredientMech imported 17 growth-media ingredient names that CommunityMech could not match to an existing ingredient. Each record keeps the name as a synonym from communitymech-unmapped and cites its CommunityMech source id (communitymech.ingredient:name). 10 records are still live; the other 7 were merged into existing records.", ev: "MIM data/ingredients (source communitymech-unmapped); CommunityMech reports/ingredient_mapping.csv", url: "https://github.com/CultureBotAI/MediaIngredientMech/blob/main/data/ingredients/mapped/Trace_Element_Solution_SL-10.yaml" }, + { from: "CommunityMech", to: "CultureMech", kind: "data", what: "CultureMech turned CommunityMech growth media into recipes that keep their CommunityMech ids as provenance. It also backfilled recipe source environments from the ENVO terms of CommunityMech records that point at those recipes.", ev: "CultureMech scripts/import_from_communitymech.py, scripts/backfill_source_environment.py; schema SourceData.community_ids", url: "https://github.com/CultureBotAI/CultureMech/blob/main/scripts/import_from_communitymech.py" }, + { from: "TaxonMech", to: "HabitatMech", kind: "practice", what: "TaxonMech's curation rules leave a taxon's habitats and its strains' isolation sources to HabitatMech. A TaxonMech record keeps only source attestation counts, and none of its records carries habitat data.", ev: "TaxonMech docs/CURATION.md (record-scope table, Strains); README Known limitations", url: "https://github.com/CultureBotAI/TaxonMech/blob/main/docs/CURATION.md" }, + { from: "TaxonMech", to: "TraitMech", kind: "practice", what: "TaxonMech's curation rules leave the traits and phenotypes of a taxon or strain to TraitMech, so they are never TaxonMech records. A TaxonMech record keeps only a count of the Madin and BactoTraits trait assertions about the taxon, never the trait values.", ev: "TaxonMech docs/CURATION.md record table; README Known limitations", url: "https://github.com/CultureBotAI/TaxonMech/blob/main/docs/CURATION.md" }, + { from: "TaxonMech", to: "CultureMech", kind: "practice", what: "TaxonMech's curation rules leave a taxon's growth media to CultureMech. A record keeps only a MediaDive count of the media linked to the taxon or to each strain, never the media themselves.", ev: "TaxonMech docs/CURATION.md", url: "https://github.com/CultureBotAI/TaxonMech/blob/main/docs/CURATION.md" }, + { from: "TraitMech", to: "HabitatMech", kind: "schema", what: "Habitat causal graphs reuse most of TraitMech's node types so the graphs stay comparable, and a trait node may be a TraitMech or METPO term (the 10 trait nodes in use are label-only so far). HabitatMech's deep-research runner deliberately follows TraitMech's conventions, and its curation-event and write-validation helpers are ported from TraitMech's.", ev: "HabitatMech schema CausalNodeTypeEnum; scripts/research_habitat.py", url: "https://github.com/CultureBotAI/HabitatMech/blob/main/src/habitatmech/schema/habitatmech.yaml" }, + { from: "TraitMech", to: "CommunityMech", kind: "practice", what: "CommunityMech's /ground-or-propose-metpo curation command is adapted from TraitMech's command of the same name, and treats community interaction graphs as the analog of TraitMech's causal graphs. Its strict validator, writer audit and curation-event helper also name TraitMech as a source, alongside CultureMech and MediaIngredientMech.", ev: "CommunityMech .claude/commands/ground-or-propose-metpo.md; scripts/validate_strict.py, scripts/audit_writers.py", url: "https://github.com/CultureBotAI/CommunityMech/blob/main/.claude/commands/ground-or-propose-metpo.md" }, + { from: "TraitMech", to: "TaxonMech", kind: "schema", what: "TaxonMech's schema lets a trait node in a causal graph be a TraitMech or METPO term and declares the traitmech: prefix; no TaxonMech record has a causal graph yet.", ev: "TaxonMech schema CausalNodeTypeEnum and prefixes", url: "https://github.com/CultureBotAI/TaxonMech/blob/main/src/taxonmech/schema/taxonmech.yaml" }, + { from: "TraitMech", to: "CellStructureMech", kind: "data", what: "Structures list the phenotypes they confer as TraitMech or METPO trait ids, and a CI check tests each id and label against TraitMech's published trait index. The causal-graph node types are TraitMech's plus STRUCTURE.", ev: "CellStructureMech scripts/check_trait_links.py + schema associated_traits", url: "https://github.com/CultureBotAI/CellStructureMech/blob/main/scripts/check_trait_links.py" }, + { from: "TraitMech", to: "ProteinTraitsMech", kind: "schema", what: "ProteinTraitsMech keeps a reviewed snapshot of TraitMech's TraitCategoryEnum. A CI audit that also fetches TraitMech's live schema reports a notice, never a failure, when the snapshot goes stale or when UPPER or OTHER, the only tokens both vocabularies use, is described differently (UPPER currently is). Its fallback history-record scaffolder is adapted from TraitMech's new_history_record.py.", ev: "ProteinTraitsMech conf/traitmech_category_vocabulary.yaml; scripts/audit_cross_mech_categories.py; scripts/new_history_record.py", url: "https://github.com/CultureBotAI/proteintraitsmech/blob/main/conf/traitmech_category_vocabulary.yaml" }, + { from: "TraitMech", to: "MediaIngredientMech", kind: "practice", what: "TraitMech leaves chemicals to MediaIngredientMech: its METPO seeder skips the material-entity subtree, which its docs say belongs in MIM rather than TraitMech. MIM's /ground-or-propose-ingredient curation command is ported from TraitMech's /ground-or-propose-metpo, re-aimed at chemical identity instead of phenotype.", ev: "TraitMech docs/SCHEMA.md, README.md, scripts/seed_from_metpo.py; MIM .claude/commands/ground-or-propose-ingredient.md (MIM#92)", url: "https://github.com/CultureBotAI/MediaIngredientMech/blob/main/.claude/commands/ground-or-propose-ingredient.md" }, + { from: "CellStructureMech", to: "TaxonMech", kind: "practice", what: "TaxonMech's closed-schema write gate and its curation-history helper are ported from CellStructureMech's modules, which the code credits jointly to HabitatMech and CellStructureMech. Every TaxonMech record is written through them.", ev: "TaxonMech src/taxonmech/validation/write_validated.py; src/taxonmech/curate/curation_event.py", url: "https://github.com/CultureBotAI/TaxonMech/blob/main/src/taxonmech/validation/write_validated.py" }, + { from: "CellStructureMech", to: "ProteinTraitsMech", kind: "practice", what: "CellStructureMech's scope rule makes a single protein or protein family a component of a structure, never a record of its own: it grounds to InterPro, Pfam or UniProtKB and is left to ProteinTraitsMech. The schema also declares a proteintraitsmech: prefix, but no record uses it.", ev: "CellStructureMech docs/CURATION.md; schema components slot", url: "https://github.com/CultureBotAI/CellStructureMech/blob/main/docs/CURATION.md" }, + { from: "ProteinTraitsMech", to: "TraitMech", kind: "practice", what: "TraitMech's download.yaml source catalogue follows the shape of ProteinTraitsMech's, and its check_sources.py validator is adapted from ProteinTraitsMech's. Unlike the original, it fails a source that records no licence.", ev: "TraitMech download.yaml; scripts/check_sources.py; justfile sources-check", url: "https://github.com/CultureBotAI/TraitMech/blob/main/download.yaml" }, + { from: "NaturalProductMech", to: "AntibioticMech", kind: "practice", what: "NaturalProductMech leaves antimicrobial mechanism to AntibioticMech. For the 205 compounds that share a structure with an AntibioticMech record, it links to that record and does not copy its targets, resistance determinants or MIC data.", ev: "NaturalProductMech schema molecular_targets; CLAUDE.md; docs/HARMONIZATION.md", url: "https://github.com/CultureBotAI/NaturalProductMech/blob/main/src/naturalproductmech/schema/naturalproductmech.yaml" }, + { from: "AntibioticMech", to: "CellStructureMech", kind: "practice", what: "CellStructureMech's source-queue skill, which ranks the sources in its curation/source_queue.tsv, is adapted from AntibioticMech's skill and keeps its ranking rule and adoption gate. Its stylesheet contract test is ported from AntibioticMech's.", ev: "CellStructureMech .claude/skills/source-queue/SKILL.md; tests/test_stylesheet_contract.py", url: "https://github.com/CultureBotAI/CellStructureMech/blob/main/.claude/skills/source-queue/SKILL.md" }, + { from: "AntibioticMech", to: "NaturalProductMech", kind: "data", what: "NaturalProductMech pins AntibioticMech's structures in an InChIKey inventory. A natural product that shares an InChIKey with an AntibioticMech record links to it and takes its antimicrobial class, but not its targets or resistance data. NaturalProductMech also used AntibioticMech as its template: its source-queue, add-record, curate-record and review-issues skills are adapted from AntibioticMech's.", ev: "NaturalProductMech scripts/extract_antibioticmech.py; data/raw/antibioticmech_inchikeys.tsv; .claude/skills", url: "https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/raw/antibioticmech_inchikeys.tsv" }, + { from: "MediaIngredientMech", to: "HabitatMech", kind: "practice", what: "HabitatMech's seeder checks the label claimed by each upstream kg-microbe isolation-source mapping and, following MediaIngredientMech's SSSOM Rule B4, accepts an exact ontology synonym as well as the canonical label. Per the code, the rule changes no current record.", ev: "HabitatMech src/habitatmech/seed.py verified_mapping_target; tests/test_seed_harmonization.py", url: "https://github.com/CultureBotAI/HabitatMech/blob/main/src/habitatmech/seed.py" }, + { from: "MediaIngredientMech", to: "CommunityMech", kind: "data", what: "CommunityMech growth-media components cite MIM ingredients by id (media_ingredient_mech_id), but they use MIM's retired MediaIngredientMech:NNNNNN scheme, so the ids no longer resolve. Its environment-matching tools read MIM's ingredient records and SSSOM mappings. They join on the exactMatch CHEBI term, which is what MIM's CURIE standard recommends; MIM wrote that standard for CommunityMech (MIM#119).", ev: "CommunityMech schema GrowthMediaComponent, src/communitymech/cross_repo_environment.py; MIM docs/CURIE_STANDARD.md", url: "https://github.com/CultureBotAI/CommunityMech/blob/main/src/communitymech/cross_repo_environment.py" }, + { from: "MediaIngredientMech", to: "TraitMech", kind: "practice", what: "TraitMech ported its write-time validation gate and curation-event helper from CultureMech by way of MediaIngredientMech's versions, and its composite qc target mirrors MIM's. Its FAPROTAX synonym script follows MIM's rule: correct the label and keep the raw string.", ev: "TraitMech src/traitmech/validation/write_validated.py; src/traitmech/curate/curation_event.py; justfile qc; scripts/add_faprotax_synonyms.py", url: "https://github.com/CultureBotAI/TraitMech/blob/main/src/traitmech/validation/write_validated.py" }, + { from: "MediaIngredientMech", to: "ProteinTraitsMech", kind: "practice", what: "ProteinTraitsMech's trait-merge rules, where only an exact identity match is merged and a similar name is only flagged for review, are adapted from MediaIngredientMech's same-ChEBI merge rule. Its oaklib version-pin test is ported from MediaIngredientMech's test of the same name.", ev: "ProteinTraitsMech .claude/skills/merge-traits/SKILL.md (just analyze-merges); tests/test_oaklib_semsql_pin.py", url: "https://github.com/CultureBotAI/proteintraitsmech/blob/main/.claude/skills/merge-traits/SKILL.md" }, + { from: "MediaIngredientMech", to: "CultureMech", kind: "data", what: "About two-thirds of CultureMech recipes link each ingredient to its curated MIM record through mediaingredientmech_chebi_term, and older records keep legacy MediaIngredientMech:NNNNNN ids. CultureMech also resolves ingredient labels against a pinned copy of MIM's label index, types its role slots with MIM's vendored role enums and took over stock solutions from MIM's complex-media list, while MIM's schema leaves recipe bodies to CultureMech.", ev: "CultureMech schema mediaingredientmech_chebi_term, mim_roles.yaml; src/culturemech/ingredients/mim_label_index.py", url: "https://github.com/CultureBotAI/CultureMech/blob/main/src/culturemech/schema/culturemech.yaml" }, + { from: "CultureMech", to: "CommunityMech", kind: "data", what: "Community records name the CultureMech medium they were grown in, or an environment-matched one, by culturemech_id, and CommunityMech's media linker copies CultureMech recipe components into them. CommunityMech also ported CultureMech's schema-validated writer and its Edison deep-research runner.", ev: "CommunityMech schema GrowthMedia/RelatedMedia culturemech_id; scripts/link_growth_media.py; src/communitymech/validation/write_validated.py", url: "https://github.com/CultureBotAI/CommunityMech/blob/main/src/communitymech/schema/communitymech.yaml" }, + { from: "CultureMech", to: "TraitMech", kind: "practice", what: "TraitMech's curation-history helper and its schema-validated YAML writer are ports of CultureMech's, by way of MediaIngredientMech's versions, and nearly every TraitMech write script goes through them. TraitMech's qc recipe also mirrors CultureMech's.", ev: "TraitMech src/traitmech/curate/curation_event.py; src/traitmech/validation/write_validated.py", url: "https://github.com/CultureBotAI/TraitMech/blob/main/src/traitmech/curate/curation_event.py" }, + { from: "CultureMech", to: "MediaIngredientMech", kind: "data", what: "MIM reads CultureMech's ingredient-occurrence table to set each record's occurrence counts, to publish a recipe-membership edge list keyed on CultureMech:NNNNNN ids, and to turn labels it cannot resolve into new records and synonyms. CultureMech leaves questions about an ingredient's chemical form to MIM, and MIM's validated record writer and curation-event helper are ported from CultureMech.", ev: "MIM mappings/culturemech_recipe_membership.tsv, scripts/refresh_occurrence_statistics.py; CultureMech docs/DATA_LAYERS.md", url: "https://github.com/CultureBotAI/MediaIngredientMech/blob/main/scripts/build_culturemech_membership.py" } ]; // Exchange with the central kg-microbe knowledge graph. @@ -719,7 +734,7 @@ Each X-Mech is an **autonomous knowledge factory** that curates, validates, and detail.innerHTML = '

Reading the graph

' + N + ' views of one microbe

' + '

Clockwise from the top the ring walks from the environment a microbe lives in to the medium it is grown in: habitat, community, taxon identity, traits, cell structures, proteins, natural products, antibiotics, ingredients, media. A culture medium is a synthetic habitat, so the ring closes.

' + - '

Dashed arcs outside the ring are direct cross-references, where one Mech\'s records, schema or curation practice name another; spokes tie each Mech to the central kg-microbe graph. Turn on the shared-vocabulary layer to see one colored chord per ontology that two measured Mechs both cite. The September 2026 census covers nine Mechs; TaxonMech is awaiting vocabulary measurement. Hover a node for its detail and click it to open that Mech; click a chord, arc or spoke to see what it carries and to jump to the matching records.

' + + '

Dashed arcs outside the ring are direct cross-references, where one Mech\'s records, schema or curation practice name another; spokes tie each Mech to the central kg-microbe graph. Turn on the shared-vocabulary layer to see one colored chord per ontology that two measured Mechs both cite. The September 2026 census covers all ten Mechs; TaxonMech shares taxon identifiers with most of the others. Hover a node for its detail and click it to open that Mech; click a chord, arc or spoke to see what it carries and to jump to the matching records.

' + '

Strongest shared vocabulary' + (state.voc ? ' (' + esc(state.voc) + ')' : '') + '

' + strongest() + '
'; } function selectNode(m) { @@ -978,23 +993,38 @@ Alongside record browsing, the Mechs publish complementary ways to explore their ## How the Mechs reference each other -Beyond shared vocabulary, Mechs name one another directly, in record fields, in schema slots, and in the curation practices they adopt from each other. Arrows point at the Mech that consumes, or at the one a scope decision defers to. +Beyond shared vocabulary, Mechs name one another directly, in record fields, in schema slots, and in the curation practices they adopt from each other. Arrows point at the Mech that consumes, or at the one a scope decision defers to. Taxa tie TaxonMech to most of the fleet in a different way: the other Mechs cite NCBI Taxonomy identifiers, and most of the species and strains they cite are TaxonMech records. Those links are shared identifiers rather than direct references, so they appear as chords in the graph's shared-vocabulary layer, not as arrows.
-
CultureMech→MediaIngredientMech
Ingredient strings and occurrence counts inform scoped MIM curation; retired collection writers no longer overwrite MIM-owned records from CultureMech aggregates; MIM records link back to recipes by stable id with the CultureMechReference class.Record data · claw ingredient_curation_pipeline
-
MediaIngredientMech→CultureMech
Curated ChEBI and FOODON mapping artifacts support scoped recipe updates. CultureMech vendors MIM's ingredient-role enums and consumes MIM's immutable label index.Record data · src/culturemech/schema/mim_roles.yaml
-
CommunityMech→CultureMech
Community records name the medium they were cultivated in through culturemech_id references. CultureMech imported media from CommunityMech with their community ids, and backfilled recipe source environments through that link.Record data · docs/cross_repo_linking.md; CultureMech scripts/import_from_communitymech.py
-
CommunityMech→MediaIngredientMech
MIM imported CommunityMech's unmapped growth-media ingredient strings as MIM records, citing communitymech-unmapped as their source. CommunityMech's own MIM-id slots (media_ingredient_mech_id, mediaingredientmech_id) are marked vestigial, with chebi_term as the join.Record data · MIM data/ingredients
-
TraitMech→CellStructureMech
A structure lists the phenotypes it confers as TraitMech or METPO terms, and its causal-graph node vocabulary is TraitMech's plus a STRUCTURE node type.Record data · schema slot associated_traits
-
CellStructureMech→ProteinTraitsMech
A single protein is a component of a structure, never a record of its own: it grounds to InterPro or UniProtKB and hands off to ProteinTraitsMech.Scope boundary · docs/CURATION.md
-
TraitMech→HabitatMech
Habitat causal graphs reuse most of TraitMech's node vocabulary so the graphs stay comparable; a node may be a TraitMech or METPO trait.Schema · CausalNodeTypeEnum
-
HabitatMech→CultureMech
HabitatMech grounds GOLD's culture-media habitat to BTO:0000316 culture medium, and the curation decision points to CultureMech for related curation.Curation decision · curation/decisions.tsv
-
HabitatMech→TaxonMech
TaxonMech's schema lets a habitat node in a causal graph be a HabitatMech or ENVO term, and it declares the habitatmech: prefix. No TaxonMech record has a causal graph yet.Schema · CausalNodeTypeEnum
-
AntibioticMech→NaturalProductMech
A natural product that shares an InChIKey with an AntibioticMech structure links to that record and takes its antimicrobial class. Only the class is copied, not AntibioticMech's targets, mode of action or resistance mechanisms. NaturalProductMech also adapted AntibioticMech's licensed source-queue pattern.Record data · data/raw/antibioticmech_inchikeys.tsv
-
AntibioticMech→CellStructureMech
AntibioticMech wrote the licensed source-queue pattern (rank candidate sources, verify licences, record decisions); CellStructureMech adapted it.Practice · claw docs/guides/SOURCE_QUEUE.md
-
ProteinTraitsMech→TraitMech
TraitMech's download.yaml source catalogue follows the shape of ProteinTraitsMech's, so the two can be read side by side. TraitMech's check_sources.py validator is adapted from ProteinTraitsMech's and, unlike the original, fails a source that records no licence.Practice · TraitMech download.yaml and scripts/check_sources.py
-
TraitMech→ProteinTraitsMech
ProteinTraitsMech keeps a reviewed snapshot of TraitMech's TraitCategoryEnum. The two category vocabularies share only UPPER and OTHER. A CI audit reports a notice, never a failure, when either is described differently in the two Mechs.Schema · conf/traitmech_category_vocabulary.yaml
-
TraitMech→TaxonMech
TaxonMech's schema lets a trait node in a causal graph be a TraitMech or METPO term, and it declares the traitmech: prefix. No TaxonMech record has a causal graph yet.Schema · CausalNodeTypeEnum
+
HabitatMech→TaxonMech
TaxonMech's causal-graph node types are the same 16 as HabitatMech's. A habitat node may be a HabitatMech or ENVO term, the schema declares the habitatmech: prefix, and TaxonMech's curation-event helper and closed-schema write gate are ported from HabitatMech's and CellStructureMech's; no TaxonMech record has a causal graph yet.Schema · TaxonMech schema CausalNodeTypeEnum and prefixes; src/taxonmech/curate/curation_event.py, src/taxonmech/validation/write_validated.py
+
HabitatMech→CellStructureMech
CellStructureMech's curation-event helper and closed-schema write gate are ported from HabitatMech's modules of the same names, which HabitatMech had itself ported from TraitMech. 17 of CellStructureMech's writer scripts use both.Practice · CellStructureMech src/cellstructuremech/curate/curation_event.py; validation/write_validated.py
+
HabitatMech→AntibioticMech
AntibioticMech's static-site generator is ported from HabitatMech's render_pages.py, including its paged category pages that filter through a JSON index, and its stylesheet is ported from HabitatMech's. Together they render AntibioticMech's whole browser.Practice · AntibioticMech scripts/render_pages.py; src/antibioticmech/templates/style.css
+
CommunityMech→TraitMech
TraitMech's Edison deep-research runner and skill are ports of CommunityMech's research_community_edison.py and deep-research-community skill. Its METPO proposal skill takes CommunityMech's v1 proposal cohort as the worked example to follow, and keeps TraitMech's placeholder ID blocks clear of that cohort's.Practice · TraitMech scripts/research_trait_edison.py; .claude/skills/deep-research-trait and metpo-proposal
+
CommunityMech→MediaIngredientMech
MediaIngredientMech imported 17 growth-media ingredient names that CommunityMech could not match to an existing ingredient. Each record keeps the name as a synonym from communitymech-unmapped and cites its CommunityMech source id (communitymech.ingredient:name). 10 records are still live; the other 7 were merged into existing records.Record data · MIM data/ingredients (source communitymech-unmapped); CommunityMech reports/ingredient_mapping.csv
+
CommunityMech→CultureMech
CultureMech turned CommunityMech growth media into recipes that keep their CommunityMech ids as provenance. It also backfilled recipe source environments from the ENVO terms of CommunityMech records that point at those recipes.Record data · CultureMech scripts/import_from_communitymech.py, scripts/backfill_source_environment.py; schema SourceData.community_ids
+
TaxonMech→HabitatMech
TaxonMech's curation rules leave a taxon's habitats and its strains' isolation sources to HabitatMech. A TaxonMech record keeps only source attestation counts, and none of its records carries habitat data.Practice · TaxonMech docs/CURATION.md (record-scope table, Strains); README Known limitations
+
TaxonMech→TraitMech
TaxonMech's curation rules leave the traits and phenotypes of a taxon or strain to TraitMech, so they are never TaxonMech records. A TaxonMech record keeps only a count of the Madin and BactoTraits trait assertions about the taxon, never the trait values.Practice · TaxonMech docs/CURATION.md record table; README Known limitations
+
TaxonMech→CultureMech
TaxonMech's curation rules leave a taxon's growth media to CultureMech. A record keeps only a MediaDive count of the media linked to the taxon or to each strain, never the media themselves.Practice · TaxonMech docs/CURATION.md
+
TraitMech→HabitatMech
Habitat causal graphs reuse most of TraitMech's node types so the graphs stay comparable, and a trait node may be a TraitMech or METPO term (the 10 trait nodes in use are label-only so far). HabitatMech's deep-research runner deliberately follows TraitMech's conventions, and its curation-event and write-validation helpers are ported from TraitMech's.Schema · HabitatMech schema CausalNodeTypeEnum; scripts/research_habitat.py
+
TraitMech→CommunityMech
CommunityMech's /ground-or-propose-metpo curation command is adapted from TraitMech's command of the same name, and treats community interaction graphs as the analog of TraitMech's causal graphs. Its strict validator, writer audit and curation-event helper also name TraitMech as a source, alongside CultureMech and MediaIngredientMech.Practice · CommunityMech .claude/commands/ground-or-propose-metpo.md; scripts/validate_strict.py, scripts/audit_writers.py
+
TraitMech→TaxonMech
TaxonMech's schema lets a trait node in a causal graph be a TraitMech or METPO term and declares the traitmech: prefix; no TaxonMech record has a causal graph yet.Schema · TaxonMech schema CausalNodeTypeEnum and prefixes
+
TraitMech→CellStructureMech
Structures list the phenotypes they confer as TraitMech or METPO trait ids, and a CI check tests each id and label against TraitMech's published trait index. The causal-graph node types are TraitMech's plus STRUCTURE.Record data · CellStructureMech scripts/check_trait_links.py + schema associated_traits
+
TraitMech→ProteinTraitsMech
ProteinTraitsMech keeps a reviewed snapshot of TraitMech's TraitCategoryEnum. A CI audit that also fetches TraitMech's live schema reports a notice, never a failure, when the snapshot goes stale or when UPPER or OTHER, the only tokens both vocabularies use, is described differently (UPPER currently is). Its fallback history-record scaffolder is adapted from TraitMech's new_history_record.py.Schema · ProteinTraitsMech conf/traitmech_category_vocabulary.yaml; scripts/audit_cross_mech_categories.py; scripts/new_history_record.py
+
TraitMech→MediaIngredientMech
TraitMech leaves chemicals to MediaIngredientMech: its METPO seeder skips the material-entity subtree, which its docs say belongs in MIM rather than TraitMech. MIM's /ground-or-propose-ingredient curation command is ported from TraitMech's /ground-or-propose-metpo, re-aimed at chemical identity instead of phenotype.Practice · TraitMech docs/SCHEMA.md, README.md, scripts/seed_from_metpo.py; MIM .claude/commands/ground-or-propose-ingredient.md (MIM#92)
+
CellStructureMech→TaxonMech
TaxonMech's closed-schema write gate and its curation-history helper are ported from CellStructureMech's modules, which the code credits jointly to HabitatMech and CellStructureMech. Every TaxonMech record is written through them.Practice · TaxonMech src/taxonmech/validation/write_validated.py; src/taxonmech/curate/curation_event.py
+
CellStructureMech→ProteinTraitsMech
CellStructureMech's scope rule makes a single protein or protein family a component of a structure, never a record of its own: it grounds to InterPro, Pfam or UniProtKB and is left to ProteinTraitsMech. The schema also declares a proteintraitsmech: prefix, but no record uses it.Practice · CellStructureMech docs/CURATION.md; schema components slot
+
ProteinTraitsMech→TraitMech
TraitMech's download.yaml source catalogue follows the shape of ProteinTraitsMech's, and its check_sources.py validator is adapted from ProteinTraitsMech's. Unlike the original, it fails a source that records no licence.Practice · TraitMech download.yaml; scripts/check_sources.py; justfile sources-check
+
NaturalProductMech→AntibioticMech
NaturalProductMech leaves antimicrobial mechanism to AntibioticMech. For the 205 compounds that share a structure with an AntibioticMech record, it links to that record and does not copy its targets, resistance determinants or MIC data.Practice · NaturalProductMech schema molecular_targets; CLAUDE.md; docs/HARMONIZATION.md
+
AntibioticMech→CellStructureMech
CellStructureMech's source-queue skill, which ranks the sources in its curation/source_queue.tsv, is adapted from AntibioticMech's skill and keeps its ranking rule and adoption gate. Its stylesheet contract test is ported from AntibioticMech's.Practice · CellStructureMech .claude/skills/source-queue/SKILL.md; tests/test_stylesheet_contract.py
+
AntibioticMech→NaturalProductMech
NaturalProductMech pins AntibioticMech's structures in an InChIKey inventory. A natural product that shares an InChIKey with an AntibioticMech record links to it and takes its antimicrobial class, but not its targets or resistance data. NaturalProductMech also used AntibioticMech as its template: its source-queue, add-record, curate-record and review-issues skills are adapted from AntibioticMech's.Record data · NaturalProductMech scripts/extract_antibioticmech.py; data/raw/antibioticmech_inchikeys.tsv; .claude/skills
+
MediaIngredientMech→HabitatMech
HabitatMech's seeder checks the label claimed by each upstream kg-microbe isolation-source mapping and, following MediaIngredientMech's SSSOM Rule B4, accepts an exact ontology synonym as well as the canonical label. Per the code, the rule changes no current record.Practice · HabitatMech src/habitatmech/seed.py verified_mapping_target; tests/test_seed_harmonization.py
+
MediaIngredientMech→CommunityMech
CommunityMech growth-media components cite MIM ingredients by id (media_ingredient_mech_id), but they use MIM's retired MediaIngredientMech:NNNNNN scheme, so the ids no longer resolve. Its environment-matching tools read MIM's ingredient records and SSSOM mappings. They join on the exactMatch CHEBI term, which is what MIM's CURIE standard recommends; MIM wrote that standard for CommunityMech (MIM#119).Record data · CommunityMech schema GrowthMediaComponent, src/communitymech/cross_repo_environment.py; MIM docs/CURIE_STANDARD.md
+
MediaIngredientMech→TraitMech
TraitMech ported its write-time validation gate and curation-event helper from CultureMech by way of MediaIngredientMech's versions, and its composite qc target mirrors MIM's. Its FAPROTAX synonym script follows MIM's rule: correct the label and keep the raw string.Practice · TraitMech src/traitmech/validation/write_validated.py; src/traitmech/curate/curation_event.py; justfile qc; scripts/add_faprotax_synonyms.py
+
MediaIngredientMech→ProteinTraitsMech
ProteinTraitsMech's trait-merge rules, where only an exact identity match is merged and a similar name is only flagged for review, are adapted from MediaIngredientMech's same-ChEBI merge rule. Its oaklib version-pin test is ported from MediaIngredientMech's test of the same name.Practice · ProteinTraitsMech .claude/skills/merge-traits/SKILL.md (just analyze-merges); tests/test_oaklib_semsql_pin.py
+
MediaIngredientMech→CultureMech
About two-thirds of CultureMech recipes link each ingredient to its curated MIM record through mediaingredientmech_chebi_term, and older records keep legacy MediaIngredientMech:NNNNNN ids. CultureMech also resolves ingredient labels against a pinned copy of MIM's label index, types its role slots with MIM's vendored role enums and took over stock solutions from MIM's complex-media list, while MIM's schema leaves recipe bodies to CultureMech.Record data · CultureMech schema mediaingredientmech_chebi_term, mim_roles.yaml; src/culturemech/ingredients/mim_label_index.py
+
CultureMech→CommunityMech
Community records name the CultureMech medium they were grown in, or an environment-matched one, by culturemech_id, and CommunityMech's media linker copies CultureMech recipe components into them. CommunityMech also ported CultureMech's schema-validated writer and its Edison deep-research runner.Record data · CommunityMech schema GrowthMedia/RelatedMedia culturemech_id; scripts/link_growth_media.py; src/communitymech/validation/write_validated.py
+
CultureMech→TraitMech
TraitMech's curation-history helper and its schema-validated YAML writer are ports of CultureMech's, by way of MediaIngredientMech's versions, and nearly every TraitMech write script goes through them. TraitMech's qc recipe also mirrors CultureMech's.Practice · TraitMech src/traitmech/curate/curation_event.py; src/traitmech/validation/write_validated.py
+
CultureMech→MediaIngredientMech
MIM reads CultureMech's ingredient-occurrence table to set each record's occurrence counts, to publish a recipe-membership edge list keyed on CultureMech:NNNNNN ids, and to turn labels it cannot resolve into new records and synonyms. CultureMech leaves questions about an ingredient's chemical form to MIM, and MIM's validated record writer and curation-event helper are ported from CultureMech.Record data · MIM mappings/culturemech_recipe_membership.tsv, scripts/refresh_occurrence_statistics.py; CultureMech docs/DATA_LAYERS.md
## Orchestration: culturebotai-claw diff --git a/scripts/fleet/assemble_page.py b/scripts/fleet/assemble_page.py index 58c94c7..228a47e 100644 --- a/scripts/fleet/assemble_page.py +++ b/scripts/fleet/assemble_page.py @@ -128,7 +128,10 @@ def assemble(template, fragment, data, snapshot, stats, census): "": number_word(len(names)), "": f"{sum(counts):,}", "": f"{len(vocabularies):,}", - "": number_word(len(measured_mechs)), + # "all ten Mechs" once the census reaches every member, which it has + # since TaxonMech was added (#87); "nine of the ten Mechs" otherwise. + "": (f"all {number_word(len(names))} Mechs" if len(measured_mechs) == len(names) + else f"{number_word(len(measured_mechs))} of the {number_word(len(names))} Mechs"), # The scan's own run date, carried in the file it writes. Not the file's # mtime: git neither records nor restores those, so a fresh clone would # date the census to the day somebody cloned it. diff --git a/scripts/fleet/build_subsets.py b/scripts/fleet/build_subsets.py index 517b012..8def209 100644 --- a/scripts/fleet/build_subsets.py +++ b/scripts/fleet/build_subsets.py @@ -32,6 +32,9 @@ "AntibioticMech": SITE+"AntibioticMech/pages/", "MediaIngredientMech": GH+"MediaIngredientMech/blob/main/data/ingredients/", "CultureMech": GH+"CultureMech/blob/main/data/merge_yaml/merged/", + # Every taxon renders at taxon.html?id=; the files under + # pages/taxa/ are redirects kept for old URLs. + "TaxonMech": SITE+"TaxonMech/pages/taxon.html?id=", } # Filled by prepare(). mech_root() touches the filesystem and exits on a # missing checkout, so resolving these at import made the module unimportable @@ -95,8 +98,9 @@ def slug_for(m, f, doc_id, doc_label=""): if m=="MediaIngredientMech": return urllib.parse.quote(rel[len("data/ingredients/"):]) if m=="NaturalProductMech": return urllib.parse.quote(rel[len("data/natural_products/"):]) if m=="CultureMech": return urllib.parse.quote(rel[len("data/merge_yaml/merged/"):]) + if m=="TaxonMech": return urllib.parse.quote(doc_id, safe="") if doc_id else None return None -def scan(m, keep=None, cap_cell=300): +def scan(m, keep=None, cap_cell=300, keep_prefixes=()): """Return per-mech index: term -> [(slug,label)], prefix -> (count, first refs), term labels votes.""" cfg=MECHS[m]; root=cfg["root"]; terms=collections.defaultdict(list); cells=collections.defaultdict(lambda:[0,[]]); votes=collections.defaultdict(collections.Counter); nfiles=0; nolink=0 for f in record_paths(m): @@ -113,7 +117,7 @@ def scan(m, keep=None, cap_cell=300): p=NORM.get(p,p) if p not in PREF: continue found.add(p+":"+i) - if keep is not None: found_terms=found & keep + if keep is not None: found_terms={t for t in found if t in keep or t.split(":")[0] in keep_prefixes} else: found_terms=found for t in found_terms: terms[t].append((slug,doc_label)) for p in {t.split(":")[0] for t in found}: @@ -155,11 +159,18 @@ def main(): # commits (#126); taken before the scans and checked after (#122). revisions={m: revision(m) for m in ORDER} idx={} + # ProteinTraitsMech and TaxonMech are the two largest corpora, so each keeps + # only terms another Mech also cites; overlaps need nothing else. The + # proteins also keep every taxon they cite, so their overlap with TaxonMech + # is exact rather than limited to taxa a third Mech happens to share (#87). + LATE=("ProteinTraitsMech","TaxonMech") for m in ORDER: - if m=="ProteinTraitsMech": continue + if m in LATE: continue idx[m]=scan(m) union=set().union(*[set(idx[m]["terms"]) for m in idx]) - idx["ProteinTraitsMech"]=scan("ProteinTraitsMech",keep=union) + idx["ProteinTraitsMech"]=scan("ProteinTraitsMech",keep=union,keep_prefixes=("NCBITaxon","GTDB")) + union|=set(idx["ProteinTraitsMech"]["terms"]) + idx["TaxonMech"]=scan("TaxonMech",keep=union) for m in ORDER: unchanged(m, revisions[m]) # labels labels={} diff --git a/scripts/fleet/mech_stats.py b/scripts/fleet/mech_stats.py index 2d8f916..e8d1dc4 100644 --- a/scripts/fleet/mech_stats.py +++ b/scripts/fleet/mech_stats.py @@ -64,7 +64,7 @@ # Record globs for members the census has not reached yet. Counting reviewed # records needs only a corpus, not a vocabulary scan, so these can be reported # before prefix_census.py and build_subsets.py are rerun to include them. -EXTRA_GLOBS = {"TaxonMech": ["data/taxa/**/*.yaml"]} +EXTRA_GLOBS: dict[str, list[str]] = {} # TaxonMech moved into roots.RECORD_GLOBS (#87) RECORD_GLOBS.update({m: g for m, g in EXTRA_GLOBS.items() if m not in RECORD_GLOBS}) # Top-level only. A nested entry_status or a reviewed: true deeper in the file diff --git a/scripts/fleet/roots.py b/scripts/fleet/roots.py index 508bb56..b149915 100644 --- a/scripts/fleet/roots.py +++ b/scripts/fleet/roots.py @@ -36,6 +36,10 @@ "AntibioticMech": ["data/antibiotics/**/*.yaml"], "MediaIngredientMech": ["data/ingredients/**/*.yaml"], "CultureMech": ["data/merge_yaml/merged/*.yaml"], + # Species-level and infraspecific taxon records, keyed by NCBI Taxonomy id; + # each carries its lineage, so higher taxa are counted once per record under + # them. Measured since #87; before that only mech_stats.py read it. + "TaxonMech": ["data/taxa/**/*.yaml"], } # Paths a record glob sweeps up that are not records. A `**` glob cannot say diff --git a/tests/test_fleet_page.py b/tests/test_fleet_page.py index cc8f061..c2cfc7f 100644 --- a/tests/test_fleet_page.py +++ b/tests/test_fleet_page.py @@ -78,7 +78,7 @@ def test_fleet_size_reads_as_prose_but_the_tile_stays_a_numeral(self): page = self.render() self.assertIn('# X-Mech Suite: ten autonomous knowledge factories', page) self.assertIn('## The ten Mechs', page) - self.assertIn('census covers nine of the ten Mechs', page) + self.assertIn('census covers all ten Mechs', page) self.assertIn('10autonomous knowledge factories', page) self.assertNotIn('The 10 Mechs', page) @@ -120,7 +120,7 @@ def test_census_cannot_reference_unknown_or_unmeasured_members(self): with self.assertRaisesRegex(ValueError, 'Census order'): self.render() self.data['order'].pop() - self.data['vocab_edges'][0]['a'] = 'TaxonMech' + self.data['vocab_edges'][0]['a'] = 'GhostMech' with self.assertRaisesRegex(ValueError, 'Census edges'): self.render() From 8d75442362ddc1dd744854991f5cd07c7c871e5a Mon Sep 17 00:00:00 2001 From: "marcin p. joachimiak" <4625870+realmarcin@users.noreply.github.com> Date: Fri, 25 Sep 2026 01:14:45 -0700 Subject: [PATCH 08/16] Route the arrows so they stay legible, and fix what the review of 102f461 found Geometry. Arcs bowed away from the chord midpoint, which for opposite nodes is the hub: TraitMech's and MediaIngredientMech's arrows collapsed into one straight line through it, and five arcs passed under other nodes (#166). An arc now runs outside the ring, its control point on the bisector of the two node angles and pushed out only as far as the canvas allows until it clears every node; if it cannot, it bows through the interior around the hub. A reverse pair takes a wider lane, or the other side inside. Measured in a browser: every arc clears other nodes by 19 px and the hub by 74 px, none leaves the canvas, and reverse pairs sit 21 px or more apart. Node labels get a halo where arcs pass behind them. The legend now separates dashed record-data arrows from dotted schema and practice ones, and the overview says so (#167). Arrows, now 30. CellStructureMech's scope rule leaves phenotypes to TraitMech, a missing arrow (#158). The helpers AntibioticMech and NaturalProductMech credit to TraitMech match HabitatMech's and AntibioticMech's copies line for line, so the credit goes on those arrows rather than new ones (#159). Fixed: an evidence path that was never committed (#156), "about two-thirds" of recipes, which is 5,696 of 6,288 canonical media (#160), and three skill names that do not exist (#162). _fleet/README.md now states what counts as an arrow. Taxon labels. TaxonMech is now the first NCBITaxon label authority and a taxon it keys a record by takes that record's label, where its one extra vote had split other Mechs' spellings and erased labels (#163): unlabelled overlap terms fall from 3,301 to 1,714. Its chords show species it has records for rather than Bacteria or a genus (#164), and folded YAML labels are read whole (#165). Edge weights and cells are unchanged. Prose. The taxon note says eight of the other nine Mechs (#168); the heat note says species-level and infraspecific and puts taxa in the organism arm (#169); resources.md's Related lines follow the arrows (#170); the partial-coverage wording has a test again and a stale comment is gone (#171). Co-Authored-By: Claude Opus 5.5 (1M context) --- _fleet/README.md | 27 +++++ _fleet/data/fleet_data.json | 2 +- _fleet/data/subsets_summary.json | 48 ++++----- _fleet/fleet_fragment.html | 85 ++++++++++++++-- _fleet/mechs_template.md | 11 ++- assets/fleet/cells/AntibioticMech--ARO.json | 2 +- assets/fleet/cells/AntibioticMech--CAS.json | 2 +- assets/fleet/cells/AntibioticMech--CHEBI.json | 2 +- assets/fleet/cells/CommunityMech--ENVO.json | 2 +- assets/fleet/cells/CommunityMech--GO.json | 2 +- assets/fleet/cells/CommunityMech--GTDB.json | 2 +- .../fleet/cells/CommunityMech--NCBITaxon.json | 2 +- .../AntibioticMech--MediaIngredientMech.json | 2 +- .../edges/AntibioticMech--TaxonMech.json | 2 +- .../CellStructureMech--AntibioticMech.json | 2 +- ...CellStructureMech--NaturalProductMech.json | 2 +- .../CellStructureMech--ProteinTraitsMech.json | 2 +- .../edges/CellStructureMech--TaxonMech.json | 2 +- .../edges/CommunityMech--AntibioticMech.json | 2 +- .../CommunityMech--CellStructureMech.json | 2 +- .../CommunityMech--NaturalProductMech.json | 2 +- .../CommunityMech--ProteinTraitsMech.json | 2 +- .../fleet/edges/CommunityMech--TaxonMech.json | 2 +- .../fleet/edges/CommunityMech--TraitMech.json | 2 +- .../fleet/edges/CultureMech--TaxonMech.json | 2 +- .../edges/HabitatMech--AntibioticMech.json | 2 +- .../edges/HabitatMech--CellStructureMech.json | 2 +- .../edges/HabitatMech--CommunityMech.json | 2 +- .../fleet/edges/HabitatMech--CultureMech.json | 2 +- .../HabitatMech--NaturalProductMech.json | 2 +- .../edges/HabitatMech--ProteinTraitsMech.json | 2 +- .../fleet/edges/HabitatMech--TaxonMech.json | 2 +- .../fleet/edges/HabitatMech--TraitMech.json | 2 +- .../NaturalProductMech--AntibioticMech.json | 2 +- .../edges/NaturalProductMech--TaxonMech.json | 2 +- .../ProteinTraitsMech--AntibioticMech.json | 2 +- .../edges/ProteinTraitsMech--CultureMech.json | 2 +- ...ProteinTraitsMech--NaturalProductMech.json | 2 +- .../edges/ProteinTraitsMech--TaxonMech.json | 2 +- .../edges/TraitMech--AntibioticMech.json | 2 +- .../edges/TraitMech--CellStructureMech.json | 2 +- .../edges/TraitMech--NaturalProductMech.json | 2 +- .../edges/TraitMech--ProteinTraitsMech.json | 2 +- assets/fleet/edges/TraitMech--TaxonMech.json | 2 +- mechs.md | 98 ++++++++++++++++--- resources.md | 4 +- scripts/fleet/assemble_page.py | 4 +- scripts/fleet/build_subsets.py | 23 ++++- tests/test_fleet_page.py | 23 +++++ 49 files changed, 302 insertions(+), 101 deletions(-) diff --git a/_fleet/README.md b/_fleet/README.md index fc68586..94c9a33 100644 --- a/_fleet/README.md +++ b/_fleet/README.md @@ -54,6 +54,33 @@ python3 scripts/fleet/refresh_manifest.py --claw-root /path/to/culturebotai-claw python3 scripts/fleet/assemble_page.py --check ``` +## Cross-reference arrows + +`XREFS` in `fleet_fragment.html` and the "How the Mechs reference each other" list +in `mechs_template.md` hold the same entries, one per ordered pair, and the graph +draws each as an arrow pointing at the Mech that consumes, or at the one a scope +decision defers to. An arrow needs an implemented, committed reference: a record +field or id in the other Mech's namespace, a schema slot, enum or prefix naming it, +a vendored snapshot of its data or vocabulary, code that reads its repository, +data or site, a scope rule in its docs handing a concept over, or a practice +credited to it in the file that implements it. Rules that have come up: + +- Shared ontology identifiers are the vocabulary layer, not arrows; that is how + taxa tie TaxonMech to the fleet. +- Family navigation, sibling lists, and files vendored from culturebotai-claw into + every Mech do not count. Neither does a fleet contract rolled out from claw, + even where a Mech's copy names the others as prior art (#157). +- A credit that exists only in a changelog, a commit message or a plan does not + count (#161). +- Code ported along a chain gets an arrow from the immediate source, judged by + the code rather than an inherited docstring: AntibioticMech's helpers say + "Ported from TraitMech's" but match HabitatMech's copies, so the credit sits on + HabitatMech to AntibioticMech (#159). + +The last full sweep, over records, schemas, scripts, config, vendored data, +curation decisions, docs and site generators in all ten repositories at the +pins, found 30 arrows. + ## Vocabulary census updates Membership updates do not require rescanning the record corpora. The September diff --git a/_fleet/data/fleet_data.json b/_fleet/data/fleet_data.json index a1ce33a..15c0db2 100644 --- a/_fleet/data/fleet_data.json +++ b/_fleet/data/fleet_data.json @@ -1 +1 @@ -{"order":["HabitatMech","CommunityMech","TraitMech","CellStructureMech","ProteinTraitsMech","NaturalProductMech","AntibioticMech","MediaIngredientMech","CultureMech","TaxonMech"],"voc":["NCBITaxon","CHEBI","GO","UniProt","ENVO","UBERON","InterPro","PDB","CAS","METPO","KEGG","FOODON","PATO","GTDB","Pfam","RHEA","ARO","BTO","MIBiG","NPAtlas","PMID","DOI"],"heat":{"HabitatMech":{"CHEBI":24,"NCBITaxon":13227,"GO":7,"ENVO":3368,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":4,"UBERON":1123,"FOODON":198,"BTO":1367,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":516,"DOI":116},"CommunityMech":{"CHEBI":2971,"NCBITaxon":4253,"GO":1537,"ENVO":538,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":10,"FOODON":0,"BTO":0,"GTDB":2037,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":7320,"DOI":1223},"TraitMech":{"CHEBI":673,"NCBITaxon":996,"GO":886,"ENVO":22,"METPO":3617,"ARO":0,"UniProt":399,"InterPro":115,"Pfam":0,"RHEA":0,"PDB":0,"PATO":99,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":621,"DOI":7190},"CellStructureMech":{"CHEBI":65,"NCBITaxon":1438,"GO":11688,"ENVO":0,"METPO":14,"ARO":0,"UniProt":337,"InterPro":206,"Pfam":22,"RHEA":0,"PDB":277,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":698,"DOI":6636},"ProteinTraitsMech":{"CHEBI":374424,"NCBITaxon":358320,"GO":421586,"ENVO":0,"METPO":244,"ARO":397717,"UniProt":658574,"InterPro":1480044,"Pfam":521966,"RHEA":613456,"PDB":235957,"PATO":124,"UBERON":43,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":245,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":657527,"DOI":193845},"NaturalProductMech":{"CHEBI":1659,"NCBITaxon":13960,"GO":0,"ENVO":0,"METPO":0,"ARO":0,"UniProt":613,"InterPro":0,"Pfam":0,"RHEA":14,"PDB":0,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":10133,"NPAtlas":1756,"PMID":5703,"DOI":8437},"AntibioticMech":{"CHEBI":22104,"NCBITaxon":1085,"GO":3,"ENVO":0,"METPO":0,"ARO":16653,"UniProt":278,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":6,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":1823,"MIBiG":0,"NPAtlas":0,"PMID":1207,"DOI":216},"MediaIngredientMech":{"CHEBI":8220,"NCBITaxon":1,"GO":0,"ENVO":110,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":23,"FOODON":273,"BTO":3,"GTDB":0,"KEGG":61,"CAS":727,"MIBiG":0,"NPAtlas":0,"PMID":29,"DOI":9},"CultureMech":{"CHEBI":160678,"NCBITaxon":63,"GO":0,"ENVO":13,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":138,"FOODON":223,"BTO":0,"GTDB":0,"KEGG":1406,"CAS":1,"MIBiG":0,"NPAtlas":0,"PMID":68,"DOI":76},"TaxonMech":{"CHEBI":0,"NCBITaxon":9250364,"GO":0,"ENVO":0,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":648112,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":20558,"DOI":402247}},"cells":{"HabitatMech--BTO":587,"HabitatMech--CHEBI":11,"HabitatMech--ENVO":1296,"HabitatMech--FOODON":85,"HabitatMech--GO":2,"HabitatMech--NCBITaxon":896,"HabitatMech--PATO":3,"HabitatMech--UBERON":704,"CommunityMech--CHEBI":357,"CommunityMech--ENVO":408,"CommunityMech--GO":394,"CommunityMech--GTDB":367,"CommunityMech--NCBITaxon":422,"CommunityMech--UBERON":10,"TraitMech--CHEBI":183,"TraitMech--ENVO":14,"TraitMech--GO":292,"TraitMech--InterPro":61,"TraitMech--METPO":749,"TraitMech--NCBITaxon":484,"TraitMech--PATO":49,"TraitMech--UniProt":182,"CellStructureMech--CHEBI":24,"CellStructureMech--GO":535,"CellStructureMech--InterPro":33,"CellStructureMech--METPO":5,"CellStructureMech--NCBITaxon":531,"CellStructureMech--PDB":19,"CellStructureMech--Pfam":8,"CellStructureMech--UniProt":65,"ProteinTraitsMech--ARO":7452,"ProteinTraitsMech--CHEBI":30122,"ProteinTraitsMech--GO":110744,"ProteinTraitsMech--InterPro":120090,"ProteinTraitsMech--KEGG":231,"ProteinTraitsMech--METPO":119,"ProteinTraitsMech--NCBITaxon":98697,"ProteinTraitsMech--PATO":81,"ProteinTraitsMech--PDB":51718,"ProteinTraitsMech--Pfam":107455,"ProteinTraitsMech--RHEA":29550,"ProteinTraitsMech--UBERON":43,"ProteinTraitsMech--UniProt":159595,"NaturalProductMech--CHEBI":405,"NaturalProductMech--MIBiG":3115,"NaturalProductMech--NCBITaxon":3115,"NaturalProductMech--NPAtlas":1740,"NaturalProductMech--RHEA":1,"NaturalProductMech--UniProt":102,"AntibioticMech--ARO":568,"AntibioticMech--CAS":1797,"AntibioticMech--CHEBI":2814,"AntibioticMech--GO":3,"AntibioticMech--NCBITaxon":163,"AntibioticMech--PDB":5,"AntibioticMech--UniProt":47,"MediaIngredientMech--BTO":1,"MediaIngredientMech--CAS":287,"MediaIngredientMech--CHEBI":2232,"MediaIngredientMech--ENVO":26,"MediaIngredientMech--FOODON":99,"MediaIngredientMech--KEGG":58,"MediaIngredientMech--NCBITaxon":1,"MediaIngredientMech--UBERON":10,"CultureMech--CAS":1,"CultureMech--CHEBI":6125,"CultureMech--ENVO":12,"CultureMech--FOODON":203,"CultureMech--KEGG":329,"CultureMech--NCBITaxon":30,"CultureMech--UBERON":72,"TaxonMech--GTDB":118801,"TaxonMech--NCBITaxon":625960},"vocab_edges":[{"a":"HabitatMech","b":"CommunityMech","n":313,"by":{"NCBITaxon":265,"ENVO":42,"UBERON":4,"CHEBI":2},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"ENVO:00001998","label":"soil"},{"id":"ENVO:01001001","label":"plant-associated environment"}]},{"a":"HabitatMech","b":"TraitMech","n":122,"by":{"NCBITaxon":115,"ENVO":4,"PATO":2,"CHEBI":1},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"HabitatMech","b":"CellStructureMech","n":41,"by":{"NCBITaxon":41},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1117","label":"Cyanobacteriota"}]},{"a":"HabitatMech","b":"ProteinTraitsMech","n":1250,"by":{"NCBITaxon":1234,"UBERON":12,"CHEBI":2,"GO":2},"ex":[{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1869227","label":"bacterium"}]},{"a":"HabitatMech","b":"NaturalProductMech","n":312,"by":{"NCBITaxon":312},"ex":[{"id":"NCBITaxon:56","label":"Sorangium cellulosum"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1931","label":"Streptomyces sp."}]},{"a":"HabitatMech","b":"AntibioticMech","n":32,"by":{"NCBITaxon":32},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:573","label":"Klebsiella pneumoniae"}]},{"a":"HabitatMech","b":"MediaIngredientMech","n":22,"by":{"ENVO":15,"UBERON":4,"CHEBI":3},"ex":[{"id":"ENVO:00002149","label":"sea water"},{"id":"ENVO:00001998","label":"soil"},{"id":"ENVO:00002263","label":"garden soil"}]},{"a":"HabitatMech","b":"CultureMech","n":25,"by":{"NCBITaxon":13,"ENVO":7,"UBERON":4,"FOODON":1},"ex":[{"id":"UBERON:0000948","label":"heart"},{"id":"UBERON:0000955","label":"brain"},{"id":"UBERON:0000178","label":"blood"}]},{"a":"HabitatMech","b":"TaxonMech","n":6423,"by":{"NCBITaxon":6423},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:562","label":"Escherichia coli"}]},{"a":"CommunityMech","b":"TraitMech","n":157,"by":{"CHEBI":61,"NCBITaxon":61,"GO":35},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:15379","label":"dioxygen"},{"id":"GO:0015977","label":"carbon fixation"}]},{"a":"CommunityMech","b":"CellStructureMech","n":60,"by":{"NCBITaxon":36,"CHEBI":13,"GO":11},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:2157","label":"Archaea"},{"id":"NCBITaxon:562","label":"Escherichia coli"}]},{"a":"CommunityMech","b":"ProteinTraitsMech","n":689,"by":{"CHEBI":276,"NCBITaxon":226,"GO":186,"UBERON":1},"ex":[{"id":"CHEBI:30089","label":"acetate"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"GO:0015979","label":"photosynthesis"}]},{"a":"CommunityMech","b":"NaturalProductMech","n":128,"by":{"NCBITaxon":123,"CHEBI":5},"ex":[{"id":"NCBITaxon:286","label":"Pseudomonas"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:562","label":"Escherichia coli"}]},{"a":"CommunityMech","b":"AntibioticMech","n":63,"by":{"CHEBI":42,"NCBITaxon":21},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"},{"id":"CHEBI:33709","label":"amino acid"}]},{"a":"CommunityMech","b":"MediaIngredientMech","n":240,"by":{"CHEBI":238,"ENVO":2},"ex":[{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:33709","label":"amino acid"},{"id":"CHEBI:3312","label":"calcium dichloride"}]},{"a":"CommunityMech","b":"CultureMech","n":151,"by":{"CHEBI":138,"NCBITaxon":8,"ENVO":5},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:30089","label":"acetate"}]},{"a":"CommunityMech","b":"TaxonMech","n":1167,"by":{"NCBITaxon":784,"GTDB":383},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:286","label":"Pseudomonas"},{"id":"NCBITaxon:1386","label":"Bacillus"}]},{"a":"TraitMech","b":"CellStructureMech","n":114,"by":{"GO":53,"NCBITaxon":40,"CHEBI":7,"UniProt":6,"METPO":5,"InterPro":3},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:83333","label":"Escherichia coli (strain K12)"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"}]},{"a":"TraitMech","b":"ProteinTraitsMech","n":707,"by":{"GO":248,"NCBITaxon":136,"METPO":111,"CHEBI":109,"UniProt":56,"InterPro":47},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"METPO:1000631","label":"trophic type"}]},{"a":"TraitMech","b":"NaturalProductMech","n":57,"by":{"NCBITaxon":53,"CHEBI":4},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"TraitMech","b":"AntibioticMech","n":31,"by":{"NCBITaxon":21,"CHEBI":10},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"TraitMech","b":"MediaIngredientMech","n":59,"by":{"CHEBI":59},"ex":[{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:16526","label":"carbon dioxide"}]},{"a":"TraitMech","b":"CultureMech","n":36,"by":{"CHEBI":26,"NCBITaxon":10},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:17234","label":"glucose"}]},{"a":"TraitMech","b":"TaxonMech","n":274,"by":{"NCBITaxon":274},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:83333","label":"Escherichia coli (strain K12)"},{"id":"NCBITaxon:1358","label":"Lactococcus lactis"}]},{"a":"CellStructureMech","b":"ProteinTraitsMech","n":1058,"by":{"GO":737,"UniProt":155,"NCBITaxon":77,"InterPro":64,"CHEBI":15,"Pfam":10},"ex":[{"id":"GO:0032991","label":"protein-containing complex"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:3055","label":"Chlamydomonas reinhardtii"}]},{"a":"CellStructureMech","b":"NaturalProductMech","n":23,"by":{"NCBITaxon":23},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:9606","label":"Homo sapiens"}]},{"a":"CellStructureMech","b":"AntibioticMech","n":18,"by":{"NCBITaxon":13,"CHEBI":5},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:4932","label":"Saccharomyces cerevisiae"},{"id":"NCBITaxon:90371","label":"Salmonella enterica subsp. enterica serovar Typhimurium"}]},{"a":"CellStructureMech","b":"MediaIngredientMech","n":14,"by":{"CHEBI":14},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:17029","label":"chitin"},{"id":"CHEBI:33403","label":"elemental sulfur"}]},{"a":"CellStructureMech","b":"CultureMech","n":7,"by":{"CHEBI":4,"NCBITaxon":3},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:16261","label":"chitosan"},{"id":"CHEBI:33403","label":"elemental sulfur"}]},{"a":"CellStructureMech","b":"TaxonMech","n":124,"by":{"NCBITaxon":124},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:2759","label":"Eukaryota"},{"id":"NCBITaxon:2157","label":"Archaea"}]},{"a":"ProteinTraitsMech","b":"NaturalProductMech","n":794,"by":{"NCBITaxon":487,"UniProt":156,"CHEBI":148,"RHEA":3},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:100226","label":"Streptomyces coelicolor A3(2)"},{"id":"NCBITaxon:227321","label":"Emericella nidulans (strain FGSC A4 / ATCC 38163 / CBS 112.46 / NRRL 194 / M139)"}]},{"a":"ProteinTraitsMech","b":"AntibioticMech","n":2435,"by":{"ARO":1740,"CHEBI":594,"NCBITaxon":79,"UniProt":20,"GO":2},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:573","label":"Klebsiella pneumoniae"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"}]},{"a":"ProteinTraitsMech","b":"MediaIngredientMech","n":798,"by":{"CHEBI":797,"UBERON":1},"ex":[{"id":"CHEBI:15377","label":"water"},{"id":"CHEBI:15740","label":"formate"},{"id":"CHEBI:33709","label":"amino acid"}]},{"a":"ProteinTraitsMech","b":"CultureMech","n":233,"by":{"CHEBI":221,"NCBITaxon":10,"UBERON":2},"ex":[{"id":"CHEBI:15377","label":"water"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:17754","label":"glycerol"}]},{"a":"ProteinTraitsMech","b":"TaxonMech","n":7444,"by":{"NCBITaxon":7444},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:83334","label":"Escherichia coli O157:H7"},{"id":"NCBITaxon:623","label":"Shigella flexneri"}]},{"a":"NaturalProductMech","b":"AntibioticMech","n":278,"by":{"CHEBI":180,"NCBITaxon":96,"UniProt":2},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"},{"id":"NCBITaxon:330879","label":"Aspergillus fumigatus (strain ATCC MYA-4609 / CBS 101355 / FGSC A1100 / Af293)"}]},{"a":"NaturalProductMech","b":"MediaIngredientMech","n":51,"by":{"CHEBI":51},"ex":[{"id":"CHEBI:15956","label":"biotin"},{"id":"CHEBI:16349","label":"L-citrulline"},{"id":"CHEBI:27592","label":"ectoine"}]},{"a":"NaturalProductMech","b":"CultureMech","n":5,"by":{"CHEBI":3,"NCBITaxon":2},"ex":[{"id":"CHEBI:15956","label":"biotin"},{"id":"CHEBI:16349","label":"L-citrulline"},{"id":"CHEBI:27592","label":"ectoine"}]},{"a":"NaturalProductMech","b":"TaxonMech","n":1708,"by":{"NCBITaxon":1708},"ex":[{"id":"NCBITaxon:1883","label":"Streptomyces"},{"id":"NCBITaxon:1873","label":"Micromonospora"},{"id":"NCBITaxon:286","label":"Pseudomonas"}]},{"a":"AntibioticMech","b":"MediaIngredientMech","n":324,"by":{"CHEBI":324},"ex":[{"id":"CHEBI:33709","label":"amino acid"},{"id":"CHEBI:30746","label":"benzoic acid"},{"id":"CHEBI:17334","label":"penicillin"}]},{"a":"AntibioticMech","b":"CultureMech","n":29,"by":{"CHEBI":29},"ex":[{"id":"CHEBI:17334","label":"penicillin"},{"id":"CHEBI:48923","label":"erythromycin"},{"id":"CHEBI:30746","label":"benzoic acid"}]},{"a":"AntibioticMech","b":"TaxonMech","n":109,"by":{"NCBITaxon":109},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:573","label":"Klebsiella pneumoniae"},{"id":"NCBITaxon:470","label":"Acinetobacter baumannii"}]},{"a":"MediaIngredientMech","b":"CultureMech","n":612,"by":{"CHEBI":545,"KEGG":56,"FOODON":6,"UBERON":3,"CAS":1,"ENVO":1},"ex":[{"id":"FOODON:03315426","label":"yeast extract"},{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:2509","label":"agar"}]},{"a":"CultureMech","b":"TaxonMech","n":54,"by":{"NCBITaxon":54},"ex":[{"id":"NCBITaxon:210","label":"Helicobacter pylori"},{"id":"NCBITaxon:823","label":"Parabacteroides distasonis"},{"id":"NCBITaxon:851","label":"Fusobacterium nucleatum"}]}]} \ No newline at end of file +{"order":["HabitatMech","CommunityMech","TraitMech","CellStructureMech","ProteinTraitsMech","NaturalProductMech","AntibioticMech","MediaIngredientMech","CultureMech","TaxonMech"],"voc":["NCBITaxon","CHEBI","GO","UniProt","ENVO","UBERON","InterPro","PDB","CAS","METPO","KEGG","FOODON","PATO","GTDB","Pfam","RHEA","ARO","BTO","MIBiG","NPAtlas","PMID","DOI"],"heat":{"HabitatMech":{"CHEBI":24,"NCBITaxon":13227,"GO":7,"ENVO":3368,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":4,"UBERON":1123,"FOODON":198,"BTO":1367,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":516,"DOI":116},"CommunityMech":{"CHEBI":2971,"NCBITaxon":4253,"GO":1537,"ENVO":538,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":10,"FOODON":0,"BTO":0,"GTDB":2037,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":7320,"DOI":1223},"TraitMech":{"CHEBI":673,"NCBITaxon":996,"GO":886,"ENVO":22,"METPO":3617,"ARO":0,"UniProt":399,"InterPro":115,"Pfam":0,"RHEA":0,"PDB":0,"PATO":99,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":621,"DOI":7190},"CellStructureMech":{"CHEBI":65,"NCBITaxon":1438,"GO":11688,"ENVO":0,"METPO":14,"ARO":0,"UniProt":337,"InterPro":206,"Pfam":22,"RHEA":0,"PDB":277,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":698,"DOI":6636},"ProteinTraitsMech":{"CHEBI":374424,"NCBITaxon":358320,"GO":421586,"ENVO":0,"METPO":244,"ARO":397717,"UniProt":658574,"InterPro":1480044,"Pfam":521966,"RHEA":613456,"PDB":235957,"PATO":124,"UBERON":43,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":245,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":657527,"DOI":193845},"NaturalProductMech":{"CHEBI":1659,"NCBITaxon":13960,"GO":0,"ENVO":0,"METPO":0,"ARO":0,"UniProt":613,"InterPro":0,"Pfam":0,"RHEA":14,"PDB":0,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":10133,"NPAtlas":1756,"PMID":5703,"DOI":8437},"AntibioticMech":{"CHEBI":22104,"NCBITaxon":1085,"GO":3,"ENVO":0,"METPO":0,"ARO":16653,"UniProt":278,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":6,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":1823,"MIBiG":0,"NPAtlas":0,"PMID":1207,"DOI":216},"MediaIngredientMech":{"CHEBI":8220,"NCBITaxon":1,"GO":0,"ENVO":110,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":23,"FOODON":273,"BTO":3,"GTDB":0,"KEGG":61,"CAS":727,"MIBiG":0,"NPAtlas":0,"PMID":29,"DOI":9},"CultureMech":{"CHEBI":160678,"NCBITaxon":63,"GO":0,"ENVO":13,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":138,"FOODON":223,"BTO":0,"GTDB":0,"KEGG":1406,"CAS":1,"MIBiG":0,"NPAtlas":0,"PMID":68,"DOI":76},"TaxonMech":{"CHEBI":0,"NCBITaxon":9250364,"GO":0,"ENVO":0,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":648112,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":20558,"DOI":402247}},"cells":{"HabitatMech--BTO":587,"HabitatMech--CHEBI":11,"HabitatMech--ENVO":1296,"HabitatMech--FOODON":85,"HabitatMech--GO":2,"HabitatMech--NCBITaxon":896,"HabitatMech--PATO":3,"HabitatMech--UBERON":704,"CommunityMech--CHEBI":357,"CommunityMech--ENVO":408,"CommunityMech--GO":394,"CommunityMech--GTDB":367,"CommunityMech--NCBITaxon":422,"CommunityMech--UBERON":10,"TraitMech--CHEBI":183,"TraitMech--ENVO":14,"TraitMech--GO":292,"TraitMech--InterPro":61,"TraitMech--METPO":749,"TraitMech--NCBITaxon":484,"TraitMech--PATO":49,"TraitMech--UniProt":182,"CellStructureMech--CHEBI":24,"CellStructureMech--GO":535,"CellStructureMech--InterPro":33,"CellStructureMech--METPO":5,"CellStructureMech--NCBITaxon":531,"CellStructureMech--PDB":19,"CellStructureMech--Pfam":8,"CellStructureMech--UniProt":65,"ProteinTraitsMech--ARO":7452,"ProteinTraitsMech--CHEBI":30122,"ProteinTraitsMech--GO":110744,"ProteinTraitsMech--InterPro":120090,"ProteinTraitsMech--KEGG":231,"ProteinTraitsMech--METPO":119,"ProteinTraitsMech--NCBITaxon":98697,"ProteinTraitsMech--PATO":81,"ProteinTraitsMech--PDB":51718,"ProteinTraitsMech--Pfam":107455,"ProteinTraitsMech--RHEA":29550,"ProteinTraitsMech--UBERON":43,"ProteinTraitsMech--UniProt":159595,"NaturalProductMech--CHEBI":405,"NaturalProductMech--MIBiG":3115,"NaturalProductMech--NCBITaxon":3115,"NaturalProductMech--NPAtlas":1740,"NaturalProductMech--RHEA":1,"NaturalProductMech--UniProt":102,"AntibioticMech--ARO":568,"AntibioticMech--CAS":1797,"AntibioticMech--CHEBI":2814,"AntibioticMech--GO":3,"AntibioticMech--NCBITaxon":163,"AntibioticMech--PDB":5,"AntibioticMech--UniProt":47,"MediaIngredientMech--BTO":1,"MediaIngredientMech--CAS":287,"MediaIngredientMech--CHEBI":2232,"MediaIngredientMech--ENVO":26,"MediaIngredientMech--FOODON":99,"MediaIngredientMech--KEGG":58,"MediaIngredientMech--NCBITaxon":1,"MediaIngredientMech--UBERON":10,"CultureMech--CAS":1,"CultureMech--CHEBI":6125,"CultureMech--ENVO":12,"CultureMech--FOODON":203,"CultureMech--KEGG":329,"CultureMech--NCBITaxon":30,"CultureMech--UBERON":72,"TaxonMech--GTDB":118801,"TaxonMech--NCBITaxon":625960},"vocab_edges":[{"a":"HabitatMech","b":"CommunityMech","n":313,"by":{"NCBITaxon":265,"ENVO":42,"UBERON":4,"CHEBI":2},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"ENVO:00001998","label":"soil"},{"id":"ENVO:01001001","label":"plant-associated environment"}]},{"a":"HabitatMech","b":"TraitMech","n":122,"by":{"NCBITaxon":115,"ENVO":4,"PATO":2,"CHEBI":1},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"HabitatMech","b":"CellStructureMech","n":41,"by":{"NCBITaxon":41},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1117","label":"Cyanobacteriota"}]},{"a":"HabitatMech","b":"ProteinTraitsMech","n":1250,"by":{"NCBITaxon":1234,"UBERON":12,"CHEBI":2,"GO":2},"ex":[{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1869227","label":"bacterium"}]},{"a":"HabitatMech","b":"NaturalProductMech","n":312,"by":{"NCBITaxon":312},"ex":[{"id":"NCBITaxon:56","label":"Sorangium cellulosum"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1931","label":"Streptomyces sp."}]},{"a":"HabitatMech","b":"AntibioticMech","n":32,"by":{"NCBITaxon":32},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:573","label":"Klebsiella pneumoniae"}]},{"a":"HabitatMech","b":"MediaIngredientMech","n":22,"by":{"ENVO":15,"UBERON":4,"CHEBI":3},"ex":[{"id":"ENVO:00002149","label":"sea water"},{"id":"ENVO:00001998","label":"soil"},{"id":"ENVO:00002263","label":"garden soil"}]},{"a":"HabitatMech","b":"CultureMech","n":25,"by":{"NCBITaxon":13,"ENVO":7,"UBERON":4,"FOODON":1},"ex":[{"id":"UBERON:0000948","label":"heart"},{"id":"UBERON:0000955","label":"brain"},{"id":"UBERON:0000178","label":"blood"}]},{"a":"HabitatMech","b":"TaxonMech","n":6423,"by":{"NCBITaxon":6423},"ex":[{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"CommunityMech","b":"TraitMech","n":157,"by":{"CHEBI":61,"NCBITaxon":61,"GO":35},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:15379","label":"dioxygen"},{"id":"GO:0015977","label":"carbon fixation"}]},{"a":"CommunityMech","b":"CellStructureMech","n":60,"by":{"NCBITaxon":36,"CHEBI":13,"GO":11},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:2157","label":"Archaea"},{"id":"NCBITaxon:562","label":"Escherichia coli"}]},{"a":"CommunityMech","b":"ProteinTraitsMech","n":689,"by":{"CHEBI":276,"NCBITaxon":226,"GO":186,"UBERON":1},"ex":[{"id":"CHEBI:30089","label":"acetate"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"GO:0015979","label":"photosynthesis"}]},{"a":"CommunityMech","b":"NaturalProductMech","n":128,"by":{"NCBITaxon":123,"CHEBI":5},"ex":[{"id":"NCBITaxon:286","label":"Pseudomonas"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:562","label":"Escherichia coli"}]},{"a":"CommunityMech","b":"AntibioticMech","n":63,"by":{"CHEBI":42,"NCBITaxon":21},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"},{"id":"CHEBI:33709","label":"amino acid"}]},{"a":"CommunityMech","b":"MediaIngredientMech","n":240,"by":{"CHEBI":238,"ENVO":2},"ex":[{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:33709","label":"amino acid"},{"id":"CHEBI:3312","label":"calcium dichloride"}]},{"a":"CommunityMech","b":"CultureMech","n":151,"by":{"CHEBI":138,"NCBITaxon":8,"ENVO":5},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:30089","label":"acetate"}]},{"a":"CommunityMech","b":"TaxonMech","n":1167,"by":{"NCBITaxon":784,"GTDB":383},"ex":[{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"TraitMech","b":"CellStructureMech","n":114,"by":{"GO":53,"NCBITaxon":40,"CHEBI":7,"UniProt":6,"METPO":5,"InterPro":3},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:83333","label":"Escherichia coli K-12"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"}]},{"a":"TraitMech","b":"ProteinTraitsMech","n":707,"by":{"GO":248,"NCBITaxon":136,"METPO":111,"CHEBI":109,"UniProt":56,"InterPro":47},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"METPO:1000631","label":"trophic type"}]},{"a":"TraitMech","b":"NaturalProductMech","n":57,"by":{"NCBITaxon":53,"CHEBI":4},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"TraitMech","b":"AntibioticMech","n":31,"by":{"NCBITaxon":21,"CHEBI":10},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"TraitMech","b":"MediaIngredientMech","n":59,"by":{"CHEBI":59},"ex":[{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:16526","label":"carbon dioxide"}]},{"a":"TraitMech","b":"CultureMech","n":36,"by":{"CHEBI":26,"NCBITaxon":10},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:17234","label":"glucose"}]},{"a":"TraitMech","b":"TaxonMech","n":274,"by":{"NCBITaxon":274},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:83333","label":"Escherichia coli K-12"},{"id":"NCBITaxon:1358","label":"Lactococcus lactis"}]},{"a":"CellStructureMech","b":"ProteinTraitsMech","n":1058,"by":{"GO":737,"UniProt":155,"NCBITaxon":77,"InterPro":64,"CHEBI":15,"Pfam":10},"ex":[{"id":"GO:0032991","label":"protein-containing complex"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:3055","label":"Chlamydomonas reinhardtii"}]},{"a":"CellStructureMech","b":"NaturalProductMech","n":23,"by":{"NCBITaxon":23},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:9606","label":"Homo sapiens"}]},{"a":"CellStructureMech","b":"AntibioticMech","n":18,"by":{"NCBITaxon":13,"CHEBI":5},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:4932","label":"Saccharomyces cerevisiae"},{"id":"NCBITaxon:90371","label":"Salmonella enterica subsp. enterica serovar Typhimurium"}]},{"a":"CellStructureMech","b":"MediaIngredientMech","n":14,"by":{"CHEBI":14},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:17029","label":"chitin"},{"id":"CHEBI:33403","label":"elemental sulfur"}]},{"a":"CellStructureMech","b":"CultureMech","n":7,"by":{"CHEBI":4,"NCBITaxon":3},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:16261","label":"chitosan"},{"id":"CHEBI:33403","label":"elemental sulfur"}]},{"a":"CellStructureMech","b":"TaxonMech","n":124,"by":{"NCBITaxon":124},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:90371","label":"Salmonella enterica subsp. enterica serovar Typhimurium"},{"id":"NCBITaxon:83333","label":"Escherichia coli K-12"}]},{"a":"ProteinTraitsMech","b":"NaturalProductMech","n":794,"by":{"NCBITaxon":487,"UniProt":156,"CHEBI":148,"RHEA":3},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:100226","label":"Streptomyces coelicolor A3(2)"},{"id":"NCBITaxon:227321","label":"Emericella nidulans (strain FGSC A4 / ATCC 38163 / CBS 112.46 / NRRL 194 / M139)"}]},{"a":"ProteinTraitsMech","b":"AntibioticMech","n":2435,"by":{"ARO":1740,"CHEBI":594,"NCBITaxon":79,"UniProt":20,"GO":2},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:573","label":"Klebsiella pneumoniae"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"}]},{"a":"ProteinTraitsMech","b":"MediaIngredientMech","n":798,"by":{"CHEBI":797,"UBERON":1},"ex":[{"id":"CHEBI:15377","label":"water"},{"id":"CHEBI:15740","label":"formate"},{"id":"CHEBI:33709","label":"amino acid"}]},{"a":"ProteinTraitsMech","b":"CultureMech","n":233,"by":{"CHEBI":221,"NCBITaxon":10,"UBERON":2},"ex":[{"id":"CHEBI:15377","label":"water"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:17754","label":"glycerol"}]},{"a":"ProteinTraitsMech","b":"TaxonMech","n":7444,"by":{"NCBITaxon":7444},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:83334","label":"Escherichia coli O157:H7"},{"id":"NCBITaxon:623","label":"Shigella flexneri"}]},{"a":"NaturalProductMech","b":"AntibioticMech","n":278,"by":{"CHEBI":180,"NCBITaxon":96,"UniProt":2},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"},{"id":"NCBITaxon:330879","label":"Aspergillus fumigatus (strain ATCC MYA-4609 / CBS 101355 / FGSC A1100 / Af293)"}]},{"a":"NaturalProductMech","b":"MediaIngredientMech","n":51,"by":{"CHEBI":51},"ex":[{"id":"CHEBI:15956","label":"biotin"},{"id":"CHEBI:16349","label":"L-citrulline"},{"id":"CHEBI:27592","label":"ectoine"}]},{"a":"NaturalProductMech","b":"CultureMech","n":5,"by":{"CHEBI":3,"NCBITaxon":2},"ex":[{"id":"CHEBI:15956","label":"biotin"},{"id":"CHEBI:16349","label":"L-citrulline"},{"id":"CHEBI:27592","label":"ectoine"}]},{"a":"NaturalProductMech","b":"TaxonMech","n":1708,"by":{"NCBITaxon":1708},"ex":[{"id":"NCBITaxon:1126","label":"Microcystis aeruginosa"},{"id":"NCBITaxon:1912","label":"Streptomyces hygroscopicus"},{"id":"NCBITaxon:294","label":"Pseudomonas fluorescens"}]},{"a":"AntibioticMech","b":"MediaIngredientMech","n":324,"by":{"CHEBI":324},"ex":[{"id":"CHEBI:33709","label":"amino acid"},{"id":"CHEBI:30746","label":"benzoic acid"},{"id":"CHEBI:17334","label":"penicillin"}]},{"a":"AntibioticMech","b":"CultureMech","n":29,"by":{"CHEBI":29},"ex":[{"id":"CHEBI:17334","label":"penicillin"},{"id":"CHEBI:48923","label":"erythromycin"},{"id":"CHEBI:30746","label":"benzoic acid"}]},{"a":"AntibioticMech","b":"TaxonMech","n":109,"by":{"NCBITaxon":109},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:573","label":"Klebsiella pneumoniae"},{"id":"NCBITaxon:470","label":"Acinetobacter baumannii"}]},{"a":"MediaIngredientMech","b":"CultureMech","n":612,"by":{"CHEBI":545,"KEGG":56,"FOODON":6,"UBERON":3,"CAS":1,"ENVO":1},"ex":[{"id":"FOODON:03315426","label":"yeast extract"},{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:2509","label":"agar"}]},{"a":"CultureMech","b":"TaxonMech","n":54,"by":{"NCBITaxon":54},"ex":[{"id":"NCBITaxon:210","label":"Helicobacter pylori"},{"id":"NCBITaxon:823","label":"Parabacteroides distasonis"},{"id":"NCBITaxon:851","label":"Fusobacterium nucleatum"}]}]} \ No newline at end of file diff --git a/_fleet/data/subsets_summary.json b/_fleet/data/subsets_summary.json index 339173e..1026bd0 100644 --- a/_fleet/data/subsets_summary.json +++ b/_fleet/data/subsets_summary.json @@ -192,10 +192,6 @@ "NCBITaxon": 6423 }, "ex": [ - { - "id": "NCBITaxon:2", - "label": "Bacteria" - }, { "id": "NCBITaxon:1280", "label": "Staphylococcus aureus" @@ -203,6 +199,10 @@ { "id": "NCBITaxon:562", "label": "Escherichia coli" + }, + { + "id": "NCBITaxon:287", + "label": "Pseudomonas aeruginosa" } ] }, @@ -366,16 +366,16 @@ }, "ex": [ { - "id": "NCBITaxon:2", - "label": "Bacteria" + "id": "NCBITaxon:1423", + "label": "Bacillus subtilis" }, { - "id": "NCBITaxon:286", - "label": "Pseudomonas" + "id": "NCBITaxon:562", + "label": "Escherichia coli" }, { - "id": "NCBITaxon:1386", - "label": "Bacillus" + "id": "NCBITaxon:287", + "label": "Pseudomonas aeruginosa" } ] }, @@ -396,7 +396,7 @@ }, { "id": "NCBITaxon:83333", - "label": "Escherichia coli (strain K12)" + "label": "Escherichia coli K-12" }, { "id": "NCBITaxon:1423", @@ -524,7 +524,7 @@ }, { "id": "NCBITaxon:83333", - "label": "Escherichia coli (strain K12)" + "label": "Escherichia coli K-12" }, { "id": "NCBITaxon:1358", @@ -646,16 +646,16 @@ }, "ex": [ { - "id": "NCBITaxon:2", - "label": "Bacteria" + "id": "NCBITaxon:562", + "label": "Escherichia coli" }, { - "id": "NCBITaxon:2759", - "label": "Eukaryota" + "id": "NCBITaxon:90371", + "label": "Salmonella enterica subsp. enterica serovar Typhimurium" }, { - "id": "NCBITaxon:2157", - "label": "Archaea" + "id": "NCBITaxon:83333", + "label": "Escherichia coli K-12" } ] }, @@ -839,16 +839,16 @@ }, "ex": [ { - "id": "NCBITaxon:1883", - "label": "Streptomyces" + "id": "NCBITaxon:1126", + "label": "Microcystis aeruginosa" }, { - "id": "NCBITaxon:1873", - "label": "Micromonospora" + "id": "NCBITaxon:1912", + "label": "Streptomyces hygroscopicus" }, { - "id": "NCBITaxon:286", - "label": "Pseudomonas" + "id": "NCBITaxon:294", + "label": "Pseudomonas fluorescens" } ] }, diff --git a/_fleet/fleet_fragment.html b/_fleet/fleet_fragment.html index 05e1063..e6a8032 100644 --- a/_fleet/fleet_fragment.html +++ b/_fleet/fleet_fragment.html @@ -116,6 +116,8 @@ .fleet-stage .hub-sub { font-size: 9px; fill: var(--muted); } .fleet-stage .node-label { font-size: 13px; font-weight: 700; } .fleet-stage .node-sub { font-size: 10.5px; fill: var(--muted); font-variant-numeric: tabular-nums; } + /* A halo in the card colour keeps labels readable where cross-reference arcs pass behind them. */ + .fleet-stage .node-label, .fleet-stage .node-sub { paint-order: stroke; stroke: var(--card); stroke-width: 4px; stroke-linejoin: round; } .fleet-stage .node { cursor: pointer; } .fleet-stage a.node-link { outline: none; } .fleet-stage a.node-link:hover .node-label, .fleet-stage a.node-link:focus-visible .node-label { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; } @@ -192,6 +194,7 @@ .fleet-legend { display: flex; flex-wrap: wrap; gap: .4rem 1.1rem; padding: .55rem 1rem; font-size: .78rem; color: var(--muted); border-top: 1px solid var(--line); } .fleet-legend i { display: inline-block; width: 26px; height: 0; margin-right: .4rem; vertical-align: middle; border-top: 3px solid var(--fleet-edge); } .fleet-legend i.x { border-top: 2px dashed var(--accent); } + .fleet-legend i.xw { border-top: 2px dotted var(--accent); opacity: .8; } .fleet-legend i.h { border-top: 2px solid var(--accent-2); } .fleet-legend i.g { border-top: 1.5px dashed var(--muted); } @@ -365,7 +368,7 @@

Shared vocabulary

-

This vocabulary census covers . Counts are prefix occurrences in the canonical record directories (merged recipes for CultureMech, communities and isolate records for CommunityMech, habitat records for HabitatMech, species-level taxon records for TaxonMech, each carrying its lineage, so a higher taxon is counted once per record under it) as of . Columns are ordered by how many Mechs ground anything in each vocabulary, then by the total records citing it across the fleet; PMID and DOI sit at the right because every Mech cites literature. ChEBI binds the chemistry arm (media, ingredients, antibiotics, proteins); NCBITaxon and ENVO bind the organism arm (habitat, community, traits); GO and METPO bridge phenotype, structure and protein.

+

This vocabulary census covers . Counts are prefix occurrences in the canonical record directories (merged recipes for CultureMech, communities and isolate records for CommunityMech, habitat records for HabitatMech, species-level and infraspecific taxon records for TaxonMech, each carrying its lineage, so a higher taxon is counted once per record under it) as of . Columns are ordered by how many Mechs ground anything in each vocabulary, then by the total records citing it across the fleet; PMID and DOI sit at the right because every Mech cites literature. ChEBI binds the chemistry arm (media, ingredients, antibiotics, proteins); NCBITaxon and ENVO bind the organism arm (habitat, community, taxa, traits); GO and METPO bridge phenotype, structure and protein.

@@ -426,7 +429,8 @@

Shared vocabulary

shared identifiers, one chord per vocabulary (width = how many): ChEBINCBITaxonGOMETPOENVOAROUniProtcitationsother - direct cross-reference (arrow = who consumes or is deferred to) + direct cross-reference in record data + in a schema or curation practice (arrow = who consumes or is deferred to) export to / input from kg-microbe (dotted = namespace only) fleet manifest membership
@@ -458,9 +462,9 @@

Shared vocabulary

var XREFS = [ { from: "HabitatMech", to: "TaxonMech", kind: "schema", what: "TaxonMech's causal-graph node types are the same 16 as HabitatMech's. A habitat node may be a HabitatMech or ENVO term, the schema declares the habitatmech: prefix, and TaxonMech's curation-event helper and closed-schema write gate are ported from HabitatMech's and CellStructureMech's; no TaxonMech record has a causal graph yet.", ev: "TaxonMech schema CausalNodeTypeEnum and prefixes; src/taxonmech/curate/curation_event.py, src/taxonmech/validation/write_validated.py", url: "https://github.com/CultureBotAI/TaxonMech/blob/main/src/taxonmech/schema/taxonmech.yaml" }, { from: "HabitatMech", to: "CellStructureMech", kind: "practice", what: "CellStructureMech's curation-event helper and closed-schema write gate are ported from HabitatMech's modules of the same names, which HabitatMech had itself ported from TraitMech. 17 of CellStructureMech's writer scripts use both.", ev: "CellStructureMech src/cellstructuremech/curate/curation_event.py; validation/write_validated.py", url: "https://github.com/CultureBotAI/CellStructureMech/blob/main/src/cellstructuremech/curate/curation_event.py" }, - { from: "HabitatMech", to: "AntibioticMech", kind: "practice", what: "AntibioticMech's static-site generator is ported from HabitatMech's render_pages.py, including its paged category pages that filter through a JSON index, and its stylesheet is ported from HabitatMech's. Together they render AntibioticMech's whole browser.", ev: "AntibioticMech scripts/render_pages.py; src/antibioticmech/templates/style.css", url: "https://github.com/CultureBotAI/AntibioticMech/blob/main/scripts/render_pages.py" }, + { from: "HabitatMech", to: "AntibioticMech", kind: "practice", what: "AntibioticMech's static-site generator is ported from HabitatMech's render_pages.py, including its paged category pages that filter through a JSON index, and its stylesheet is ported from HabitatMech's. Together they render AntibioticMech's whole browser. Its curation-event helper and closed-schema write gate are HabitatMech's copies as well; their docstrings still credit TraitMech, which HabitatMech ported them from.", ev: "AntibioticMech scripts/render_pages.py; src/antibioticmech/templates/style.css; src/antibioticmech/curate/curation_event.py", url: "https://github.com/CultureBotAI/AntibioticMech/blob/main/scripts/render_pages.py" }, { from: "CommunityMech", to: "TraitMech", kind: "practice", what: "TraitMech's Edison deep-research runner and skill are ports of CommunityMech's research_community_edison.py and deep-research-community skill. Its METPO proposal skill takes CommunityMech's v1 proposal cohort as the worked example to follow, and keeps TraitMech's placeholder ID blocks clear of that cohort's.", ev: "TraitMech scripts/research_trait_edison.py; .claude/skills/deep-research-trait and metpo-proposal", url: "https://github.com/CultureBotAI/TraitMech/blob/main/scripts/research_trait_edison.py" }, - { from: "CommunityMech", to: "MediaIngredientMech", kind: "data", what: "MediaIngredientMech imported 17 growth-media ingredient names that CommunityMech could not match to an existing ingredient. Each record keeps the name as a synonym from communitymech-unmapped and cites its CommunityMech source id (communitymech.ingredient:name). 10 records are still live; the other 7 were merged into existing records.", ev: "MIM data/ingredients (source communitymech-unmapped); CommunityMech reports/ingredient_mapping.csv", url: "https://github.com/CultureBotAI/MediaIngredientMech/blob/main/data/ingredients/mapped/Trace_Element_Solution_SL-10.yaml" }, + { from: "CommunityMech", to: "MediaIngredientMech", kind: "data", what: "MediaIngredientMech imported 17 growth-media ingredient names that CommunityMech could not match to an existing ingredient. Each record keeps the name as a synonym from communitymech-unmapped and cites its CommunityMech source id (communitymech.ingredient:name). 10 records are still live; the other 7 were merged into existing records.", ev: "MIM data/ingredients (synonym source communitymech-unmapped)", url: "https://github.com/CultureBotAI/MediaIngredientMech/blob/main/data/ingredients/mapped/Trace_Element_Solution_SL-10.yaml" }, { from: "CommunityMech", to: "CultureMech", kind: "data", what: "CultureMech turned CommunityMech growth media into recipes that keep their CommunityMech ids as provenance. It also backfilled recipe source environments from the ENVO terms of CommunityMech records that point at those recipes.", ev: "CultureMech scripts/import_from_communitymech.py, scripts/backfill_source_environment.py; schema SourceData.community_ids", url: "https://github.com/CultureBotAI/CultureMech/blob/main/scripts/import_from_communitymech.py" }, { from: "TaxonMech", to: "HabitatMech", kind: "practice", what: "TaxonMech's curation rules leave a taxon's habitats and its strains' isolation sources to HabitatMech. A TaxonMech record keeps only source attestation counts, and none of its records carries habitat data.", ev: "TaxonMech docs/CURATION.md (record-scope table, Strains); README Known limitations", url: "https://github.com/CultureBotAI/TaxonMech/blob/main/docs/CURATION.md" }, { from: "TaxonMech", to: "TraitMech", kind: "practice", what: "TaxonMech's curation rules leave the traits and phenotypes of a taxon or strain to TraitMech, so they are never TaxonMech records. A TaxonMech record keeps only a count of the Madin and BactoTraits trait assertions about the taxon, never the trait values.", ev: "TaxonMech docs/CURATION.md record table; README Known limitations", url: "https://github.com/CultureBotAI/TaxonMech/blob/main/docs/CURATION.md" }, @@ -472,16 +476,17 @@

Shared vocabulary

{ from: "TraitMech", to: "ProteinTraitsMech", kind: "schema", what: "ProteinTraitsMech keeps a reviewed snapshot of TraitMech's TraitCategoryEnum. A CI audit that also fetches TraitMech's live schema reports a notice, never a failure, when the snapshot goes stale or when UPPER or OTHER, the only tokens both vocabularies use, is described differently (UPPER currently is). Its fallback history-record scaffolder is adapted from TraitMech's new_history_record.py.", ev: "ProteinTraitsMech conf/traitmech_category_vocabulary.yaml; scripts/audit_cross_mech_categories.py; scripts/new_history_record.py", url: "https://github.com/CultureBotAI/proteintraitsmech/blob/main/conf/traitmech_category_vocabulary.yaml" }, { from: "TraitMech", to: "MediaIngredientMech", kind: "practice", what: "TraitMech leaves chemicals to MediaIngredientMech: its METPO seeder skips the material-entity subtree, which its docs say belongs in MIM rather than TraitMech. MIM's /ground-or-propose-ingredient curation command is ported from TraitMech's /ground-or-propose-metpo, re-aimed at chemical identity instead of phenotype.", ev: "TraitMech docs/SCHEMA.md, README.md, scripts/seed_from_metpo.py; MIM .claude/commands/ground-or-propose-ingredient.md (MIM#92)", url: "https://github.com/CultureBotAI/MediaIngredientMech/blob/main/.claude/commands/ground-or-propose-ingredient.md" }, { from: "CellStructureMech", to: "TaxonMech", kind: "practice", what: "TaxonMech's closed-schema write gate and its curation-history helper are ported from CellStructureMech's modules, which the code credits jointly to HabitatMech and CellStructureMech. Every TaxonMech record is written through them.", ev: "TaxonMech src/taxonmech/validation/write_validated.py; src/taxonmech/curate/curation_event.py", url: "https://github.com/CultureBotAI/TaxonMech/blob/main/src/taxonmech/validation/write_validated.py" }, + { from: "CellStructureMech", to: "TraitMech", kind: "practice", what: "CellStructureMech's scope rule leaves the phenotypes a structure confers, such as motile, flagellated or Gram-negative, to TraitMech. They are never CellStructureMech records, only associated_traits links to TraitMech or METPO terms.", ev: "CellStructureMech docs/CURATION.md (record-scope table); schema description", url: "https://github.com/CultureBotAI/CellStructureMech/blob/main/docs/CURATION.md" }, { from: "CellStructureMech", to: "ProteinTraitsMech", kind: "practice", what: "CellStructureMech's scope rule makes a single protein or protein family a component of a structure, never a record of its own: it grounds to InterPro, Pfam or UniProtKB and is left to ProteinTraitsMech. The schema also declares a proteintraitsmech: prefix, but no record uses it.", ev: "CellStructureMech docs/CURATION.md; schema components slot", url: "https://github.com/CultureBotAI/CellStructureMech/blob/main/docs/CURATION.md" }, { from: "ProteinTraitsMech", to: "TraitMech", kind: "practice", what: "TraitMech's download.yaml source catalogue follows the shape of ProteinTraitsMech's, and its check_sources.py validator is adapted from ProteinTraitsMech's. Unlike the original, it fails a source that records no licence.", ev: "TraitMech download.yaml; scripts/check_sources.py; justfile sources-check", url: "https://github.com/CultureBotAI/TraitMech/blob/main/download.yaml" }, { from: "NaturalProductMech", to: "AntibioticMech", kind: "practice", what: "NaturalProductMech leaves antimicrobial mechanism to AntibioticMech. For the 205 compounds that share a structure with an AntibioticMech record, it links to that record and does not copy its targets, resistance determinants or MIC data.", ev: "NaturalProductMech schema molecular_targets; CLAUDE.md; docs/HARMONIZATION.md", url: "https://github.com/CultureBotAI/NaturalProductMech/blob/main/src/naturalproductmech/schema/naturalproductmech.yaml" }, { from: "AntibioticMech", to: "CellStructureMech", kind: "practice", what: "CellStructureMech's source-queue skill, which ranks the sources in its curation/source_queue.tsv, is adapted from AntibioticMech's skill and keeps its ranking rule and adoption gate. Its stylesheet contract test is ported from AntibioticMech's.", ev: "CellStructureMech .claude/skills/source-queue/SKILL.md; tests/test_stylesheet_contract.py", url: "https://github.com/CultureBotAI/CellStructureMech/blob/main/.claude/skills/source-queue/SKILL.md" }, - { from: "AntibioticMech", to: "NaturalProductMech", kind: "data", what: "NaturalProductMech pins AntibioticMech's structures in an InChIKey inventory. A natural product that shares an InChIKey with an AntibioticMech record links to it and takes its antimicrobial class, but not its targets or resistance data. NaturalProductMech also used AntibioticMech as its template: its source-queue, add-record, curate-record and review-issues skills are adapted from AntibioticMech's.", ev: "NaturalProductMech scripts/extract_antibioticmech.py; data/raw/antibioticmech_inchikeys.tsv; .claude/skills", url: "https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/raw/antibioticmech_inchikeys.tsv" }, + { from: "AntibioticMech", to: "NaturalProductMech", kind: "data", what: "NaturalProductMech pins AntibioticMech's structures in an InChIKey inventory. A natural product that shares an InChIKey with an AntibioticMech record links to it and takes its antimicrobial class, but not its targets or resistance data. NaturalProductMech also used AntibioticMech as its template: its source-queue, add-natural-product (from add-antibiotic), curate-yaml-record and review-open-issues skills, its curation-event helper and its closed-schema write gate are adapted from AntibioticMech's.", ev: "NaturalProductMech scripts/extract_antibioticmech.py; data/raw/antibioticmech_inchikeys.tsv; .claude/skills", url: "https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/raw/antibioticmech_inchikeys.tsv" }, { from: "MediaIngredientMech", to: "HabitatMech", kind: "practice", what: "HabitatMech's seeder checks the label claimed by each upstream kg-microbe isolation-source mapping and, following MediaIngredientMech's SSSOM Rule B4, accepts an exact ontology synonym as well as the canonical label. Per the code, the rule changes no current record.", ev: "HabitatMech src/habitatmech/seed.py verified_mapping_target; tests/test_seed_harmonization.py", url: "https://github.com/CultureBotAI/HabitatMech/blob/main/src/habitatmech/seed.py" }, { from: "MediaIngredientMech", to: "CommunityMech", kind: "data", what: "CommunityMech growth-media components cite MIM ingredients by id (media_ingredient_mech_id), but they use MIM's retired MediaIngredientMech:NNNNNN scheme, so the ids no longer resolve. Its environment-matching tools read MIM's ingredient records and SSSOM mappings. They join on the exactMatch CHEBI term, which is what MIM's CURIE standard recommends; MIM wrote that standard for CommunityMech (MIM#119).", ev: "CommunityMech schema GrowthMediaComponent, src/communitymech/cross_repo_environment.py; MIM docs/CURIE_STANDARD.md", url: "https://github.com/CultureBotAI/CommunityMech/blob/main/src/communitymech/cross_repo_environment.py" }, { from: "MediaIngredientMech", to: "TraitMech", kind: "practice", what: "TraitMech ported its write-time validation gate and curation-event helper from CultureMech by way of MediaIngredientMech's versions, and its composite qc target mirrors MIM's. Its FAPROTAX synonym script follows MIM's rule: correct the label and keep the raw string.", ev: "TraitMech src/traitmech/validation/write_validated.py; src/traitmech/curate/curation_event.py; justfile qc; scripts/add_faprotax_synonyms.py", url: "https://github.com/CultureBotAI/TraitMech/blob/main/src/traitmech/validation/write_validated.py" }, { from: "MediaIngredientMech", to: "ProteinTraitsMech", kind: "practice", what: "ProteinTraitsMech's trait-merge rules, where only an exact identity match is merged and a similar name is only flagged for review, are adapted from MediaIngredientMech's same-ChEBI merge rule. Its oaklib version-pin test is ported from MediaIngredientMech's test of the same name.", ev: "ProteinTraitsMech .claude/skills/merge-traits/SKILL.md (just analyze-merges); tests/test_oaklib_semsql_pin.py", url: "https://github.com/CultureBotAI/proteintraitsmech/blob/main/.claude/skills/merge-traits/SKILL.md" }, - { from: "MediaIngredientMech", to: "CultureMech", kind: "data", what: "About two-thirds of CultureMech recipes link each ingredient to its curated MIM record through mediaingredientmech_chebi_term, and older records keep legacy MediaIngredientMech:NNNNNN ids. CultureMech also resolves ingredient labels against a pinned copy of MIM's label index, types its role slots with MIM's vendored role enums and took over stock solutions from MIM's complex-media list, while MIM's schema leaves recipe bodies to CultureMech.", ev: "CultureMech schema mediaingredientmech_chebi_term, mim_roles.yaml; src/culturemech/ingredients/mim_label_index.py", url: "https://github.com/CultureBotAI/CultureMech/blob/main/src/culturemech/schema/culturemech.yaml" }, + { from: "MediaIngredientMech", to: "CultureMech", kind: "data", what: "5,696 of CultureMech's 6,288 canonical media link ingredients to their curated MIM records through mediaingredientmech_chebi_term, about 70% of all ingredient rows, and older records keep legacy MediaIngredientMech:NNNNNN ids. CultureMech also resolves ingredient labels against a pinned copy of MIM's label index, types its role slots with MIM's vendored role enums and took over stock solutions from MIM's complex-media list, while MIM's schema leaves recipe bodies to CultureMech.", ev: "CultureMech schema mediaingredientmech_chebi_term, mim_roles.yaml; src/culturemech/ingredients/mim_label_index.py", url: "https://github.com/CultureBotAI/CultureMech/blob/main/src/culturemech/schema/culturemech.yaml" }, { from: "CultureMech", to: "CommunityMech", kind: "data", what: "Community records name the CultureMech medium they were grown in, or an environment-matched one, by culturemech_id, and CommunityMech's media linker copies CultureMech recipe components into them. CommunityMech also ported CultureMech's schema-validated writer and its Edison deep-research runner.", ev: "CommunityMech schema GrowthMedia/RelatedMedia culturemech_id; scripts/link_growth_media.py; src/communitymech/validation/write_validated.py", url: "https://github.com/CultureBotAI/CommunityMech/blob/main/src/communitymech/schema/communitymech.yaml" }, { from: "CultureMech", to: "TraitMech", kind: "practice", what: "TraitMech's curation-history helper and its schema-validated YAML writer are ports of CultureMech's, by way of MediaIngredientMech's versions, and nearly every TraitMech write script goes through them. TraitMech's qc recipe also mirrors CultureMech's.", ev: "TraitMech src/traitmech/curate/curation_event.py; src/traitmech/validation/write_validated.py", url: "https://github.com/CultureBotAI/TraitMech/blob/main/src/traitmech/curate/curation_event.py" }, { from: "CultureMech", to: "MediaIngredientMech", kind: "data", what: "MIM reads CultureMech's ingredient-occurrence table to set each record's occurrence counts, to publish a recipe-membership edge list keyed on CultureMech:NNNNNN ids, and to turn labels it cannot resolve into new records and synonyms. CultureMech leaves questions about an ingredient's chemical form to MIM, and MIM's validated record writer and curation-event helper are ported from CultureMech.", ev: "MIM mappings/culturemech_recipe_membership.tsv, scripts/refresh_occurrence_statistics.py; CultureMech docs/DATA_LAYERS.md", url: "https://github.com/CultureBotAI/MediaIngredientMech/blob/main/scripts/build_culturemech_membership.py" } @@ -513,6 +518,7 @@

Shared vocabulary

var VOCS = ["CHEBI", "NCBITaxon", "GO", "METPO", "ENVO", "ARO", "UniProt", "DOI"]; var VOC_LABEL = { CHEBI: "ChEBI", NCBITaxon: "NCBITaxon", GO: "GO", METPO: "METPO", ENVO: "ENVO", ARO: "ARO", UniProt: "UniProt", DOI: "citations", other: "other vocabularies" }; var W = 900, H = 760, CX = 450, CY = 372, R = 262; + var HUB_R = 46; // declared here because the cross-reference arcs are routed before the hub is drawn var pos = {}; order.forEach(function (m, i) { var a = -Math.PI / 2 + i * (2 * Math.PI / N); @@ -543,6 +549,67 @@

Shared vocabulary

return "M" + s[0] + "," + s[1] + " Q" + cx + "," + cy + " " + e[0] + "," + e[1]; } + // Cross-reference arcs. Pulling the control point away from the chord midpoint + // (curve() above) fails for opposite nodes, whose midpoint is the hub, and lets + // short arcs dip under their neighbours. So an arc first tries to run outside the + // ring: its control point sits on the bisector of the two node angles, the shorter + // way round, and moves outward until the curve clears every other node, but no + // further than the canvas allows. If that fails, as it always does for opposite + // nodes, the arc bows sideways through the interior, around the hub. The second + // arrow of a reverse pair starts one lane wider, or takes the other side inside. + function arcPath(p, q, c, ra, rb) { + function tow(fx, fy, tx, ty, r) { var ddx = tx - fx, ddy = ty - fy, dd = Math.hypot(ddx, ddy); return [fx + ddx / dd * r, fy + ddy / dd * r]; } + var s0 = tow(p.x, p.y, c[0], c[1], ra), e0 = tow(q.x, q.y, c[0], c[1], rb); + return "M" + s0[0] + "," + s0[1] + " Q" + c[0] + "," + c[1] + " " + e0[0] + "," + e0[1]; + } + function arcClears(a, b, c, inside) { + var p = pos[a], q = pos[b]; + for (var t = 0.04; t < 0.97; t += 0.03) { + var u = 1 - t, x = u * u * p.x + 2 * u * t * c[0] + t * t * q.x, y = u * u * p.y + 2 * u * t * c[1] + t * t * q.y; + if (x < 8 || x > W - 8 || y < 8 || y > H - 8) return false; + var fromHub = Math.hypot(x - CX, y - CY); + if (inside ? fromHub < HUB_R + 22 : fromHub < R - 30) return false; + for (var i = 0; i < order.length; i++) { + var o = order[i]; + if (o !== a && o !== b && Math.hypot(x - pos[o].x, y - pos[o].y) < radius(o) + 10) return false; + } + } + return true; + } + function arcControl(a, b, lane, laneBase) { + var p = pos[a], q = pos[b], diff = q.a - p.a; + while (diff > Math.PI) diff -= 2 * Math.PI; + while (diff < -Math.PI) diff += 2 * Math.PI; + var mid = p.a + diff / 2, half = Math.abs(diff) / 2; + if (Math.abs(half - Math.PI / 2) > 1e-6) { + for (var m = laneBase; m <= 84; m += 6) { + var rc = 2 * (R + m) - R * Math.cos(half); // puts the curve's apex at R + m + var c = [CX + rc * Math.cos(mid), CY + rc * Math.sin(mid)]; + if (arcClears(a, b, c, false)) return { c: c, m: m }; + } + } + // Interior route: bow sideways from the chord, on the lane's side, clear of the hub. + var mx = (p.x + q.x) / 2, my = (p.y + q.y) / 2, dx = q.x - p.x, dy = q.y - p.y, d = Math.hypot(dx, dy); + // The normal is taken from the pair in a fixed order, so swapping the ends of a + // reverse pair does not flip it and the two arrows really take opposite sides. + var flip = a < b ? 1 : -1, nx = -dy / d * flip, ny = dx / d * flip, side = lane ? -1 : 1; + for (var k = 140; k <= 420; k += 20) { + for (var sgn = 0; sgn < 2; sgn++) { + var sd = sgn ? -side : side, c2 = [mx + nx * k * sd, my + ny * k * sd]; + if (arcClears(a, b, c2, true)) return { c: c2, m: null }; + } + } + return { c: [mx + nx * 180 * side, my + ny * 180 * side], m: null }; + } + var arcLanes = {}; + function arcOut(a, b, lane, ra, rb) { + var key = [a, b].sort().join("|"), prior = arcLanes[key]; + var base = lane && prior && prior.m !== null ? prior.m + 20 : 18; + var got = arcControl(a, b, lane, base); + if (!lane) arcLanes[key] = got; + return arcPath(pos[a], pos[b], got.c, ra, rb); + } + var svg = document.getElementById("fleet-svg"); var gGov = document.getElementById("fleet-gov"), gEdges = document.getElementById("fleet-edges"), gXrefs = document.getElementById("fleet-xrefs"), gHubE = document.getElementById("fleet-hubedges"), gHub = document.getElementById("fleet-hub"), gNodes = document.getElementById("fleet-nodes"); var tip = document.getElementById("fleet-tip"), detail = document.getElementById("fleet-detail"); @@ -591,7 +658,7 @@

Shared vocabulary

// ---- Cross-reference arcs ---- var xrefEls = XREFS.map(function (x, i) { var reverse = XREFS.some(function (y, j) { return j < i && y.from === x.to && y.to === x.from; }); - var d = curve(x.from, x.to, reverse ? -0.62 : -0.38, 0, radius(x.from) + 3, radius(x.to) + 5); + var d = arcOut(x.from, x.to, reverse ? 1 : 0, radius(x.from) + 3, radius(x.to) + 5); var path = el("path", { "class": "edge xref" + (x.kind === "data" ? "" : " weak"), d: d, "marker-end": "url(#fleet-arrow)", tabindex: 0, role: "button", "aria-label": x.from + " to " + x.to + ": " + x.what }, gXrefs); var hit = el("path", { "class": "edge hit", d: d }, gXrefs); path.addEventListener("keydown", function (ev) { if (ev.key === "Enter" || ev.key === " ") { ev.preventDefault(); selectXref(rec); } }); @@ -605,7 +672,7 @@

Shared vocabulary

}); // ---- Hub and spokes ---- - var hubR = 46; + var hubR = HUB_R; var hubEls = HUB.map(function (h) { var p = pos[h.mech], dx = CX - p.x, dy = CY - p.y, d = Math.hypot(dx, dy); var ux = dx / d, uy = dy / d, off = h.dir === "out" ? 6 : -6; @@ -721,7 +788,7 @@

Shared vocabulary

detail.innerHTML = '

Reading the graph

' + N + ' views of one microbe

' + '

Clockwise from the top the ring walks from the environment a microbe lives in to the medium it is grown in: habitat, community, taxon identity, traits, cell structures, proteins, natural products, antibiotics, ingredients, media. A culture medium is a synthetic habitat, so the ring closes.

' + - '

Dashed arcs outside the ring are direct cross-references, where one Mech\'s records, schema or curation practice name another; spokes tie each Mech to the central kg-microbe graph. Turn on the shared-vocabulary layer to see one colored chord per ontology that two measured Mechs both cite. The September 2026 census covers ; TaxonMech shares taxon identifiers with most of the others. Hover a node for its detail and click it to open that Mech; click a chord, arc or spoke to see what it carries and to jump to the matching records.

' + + '

Arcs outside the ring are direct cross-references, where one Mech\'s records, schema or curation practice name another, dashed for record data and dotted for schema or practice; spokes tie each Mech to the central kg-microbe graph. Turn on the shared-vocabulary layer to see one colored chord per ontology that two measured Mechs both cite. The September 2026 census covers ; TaxonMech shares taxon identifiers with most of the others. Hover a node for its detail and click it to open that Mech; click a chord, arc or spoke to see what it carries and to jump to the matching records.

' + '

Strongest shared vocabulary' + (state.voc ? ' (' + esc(state.voc) + ')' : '') + '

' + strongest() + '
'; } function selectNode(m) { diff --git a/_fleet/mechs_template.md b/_fleet/mechs_template.md index 4ce78c8..6ba849d 100644 --- a/_fleet/mechs_template.md +++ b/_fleet/mechs_template.md @@ -113,14 +113,14 @@ Alongside record browsing, the Mechs publish complementary ways to explore their ## How the Mechs reference each other -Beyond shared vocabulary, Mechs name one another directly, in record fields, in schema slots, and in the curation practices they adopt from each other. Arrows point at the Mech that consumes, or at the one a scope decision defers to. Taxa tie TaxonMech to most of the fleet in a different way: the other Mechs cite NCBI Taxonomy identifiers, and most of the species and strains they cite are TaxonMech records. Those links are shared identifiers rather than direct references, so they appear as chords in the graph's shared-vocabulary layer, not as arrows. +Beyond shared vocabulary, Mechs name one another directly, in record fields, in schema slots, and in the curation practices they adopt from each other. Arrows point at the Mech that consumes, or at the one a scope decision defers to. Taxa tie TaxonMech to most of the fleet in a different way: eight of the other nine Mechs cite NCBI Taxonomy identifiers (MediaIngredientMech cites none), and most of the species and strains they cite are TaxonMech records. Those links are shared identifiers rather than direct references, so they appear as chords in the graph's shared-vocabulary layer, not as arrows.
HabitatMech→TaxonMech
TaxonMech's causal-graph node types are the same 16 as HabitatMech's. A habitat node may be a HabitatMech or ENVO term, the schema declares the habitatmech: prefix, and TaxonMech's curation-event helper and closed-schema write gate are ported from HabitatMech's and CellStructureMech's; no TaxonMech record has a causal graph yet.Schema · TaxonMech schema CausalNodeTypeEnum and prefixes; src/taxonmech/curate/curation_event.py, src/taxonmech/validation/write_validated.py
HabitatMech→CellStructureMech
CellStructureMech's curation-event helper and closed-schema write gate are ported from HabitatMech's modules of the same names, which HabitatMech had itself ported from TraitMech. 17 of CellStructureMech's writer scripts use both.Practice · CellStructureMech src/cellstructuremech/curate/curation_event.py; validation/write_validated.py
-
HabitatMech→AntibioticMech
AntibioticMech's static-site generator is ported from HabitatMech's render_pages.py, including its paged category pages that filter through a JSON index, and its stylesheet is ported from HabitatMech's. Together they render AntibioticMech's whole browser.Practice · AntibioticMech scripts/render_pages.py; src/antibioticmech/templates/style.css
+
HabitatMech→AntibioticMech
AntibioticMech's static-site generator is ported from HabitatMech's render_pages.py, including its paged category pages that filter through a JSON index, and its stylesheet is ported from HabitatMech's. Together they render AntibioticMech's whole browser. Its curation-event helper and closed-schema write gate are HabitatMech's copies as well; their docstrings still credit TraitMech, which HabitatMech ported them from.Practice · AntibioticMech scripts/render_pages.py; src/antibioticmech/templates/style.css; src/antibioticmech/curate/curation_event.py
CommunityMech→TraitMech
TraitMech's Edison deep-research runner and skill are ports of CommunityMech's research_community_edison.py and deep-research-community skill. Its METPO proposal skill takes CommunityMech's v1 proposal cohort as the worked example to follow, and keeps TraitMech's placeholder ID blocks clear of that cohort's.Practice · TraitMech scripts/research_trait_edison.py; .claude/skills/deep-research-trait and metpo-proposal
-
CommunityMech→MediaIngredientMech
MediaIngredientMech imported 17 growth-media ingredient names that CommunityMech could not match to an existing ingredient. Each record keeps the name as a synonym from communitymech-unmapped and cites its CommunityMech source id (communitymech.ingredient:name). 10 records are still live; the other 7 were merged into existing records.Record data · MIM data/ingredients (source communitymech-unmapped); CommunityMech reports/ingredient_mapping.csv
+
CommunityMech→MediaIngredientMech
MediaIngredientMech imported 17 growth-media ingredient names that CommunityMech could not match to an existing ingredient. Each record keeps the name as a synonym from communitymech-unmapped and cites its CommunityMech source id (communitymech.ingredient:name). 10 records are still live; the other 7 were merged into existing records.Record data · MIM data/ingredients (synonym source communitymech-unmapped)
CommunityMech→CultureMech
CultureMech turned CommunityMech growth media into recipes that keep their CommunityMech ids as provenance. It also backfilled recipe source environments from the ENVO terms of CommunityMech records that point at those recipes.Record data · CultureMech scripts/import_from_communitymech.py, scripts/backfill_source_environment.py; schema SourceData.community_ids
TaxonMech→HabitatMech
TaxonMech's curation rules leave a taxon's habitats and its strains' isolation sources to HabitatMech. A TaxonMech record keeps only source attestation counts, and none of its records carries habitat data.Practice · TaxonMech docs/CURATION.md (record-scope table, Strains); README Known limitations
TaxonMech→TraitMech
TaxonMech's curation rules leave the traits and phenotypes of a taxon or strain to TraitMech, so they are never TaxonMech records. A TaxonMech record keeps only a count of the Madin and BactoTraits trait assertions about the taxon, never the trait values.Practice · TaxonMech docs/CURATION.md record table; README Known limitations
@@ -132,16 +132,17 @@ Beyond shared vocabulary, Mechs name one another directly, in record fields, in
TraitMech→ProteinTraitsMech
ProteinTraitsMech keeps a reviewed snapshot of TraitMech's TraitCategoryEnum. A CI audit that also fetches TraitMech's live schema reports a notice, never a failure, when the snapshot goes stale or when UPPER or OTHER, the only tokens both vocabularies use, is described differently (UPPER currently is). Its fallback history-record scaffolder is adapted from TraitMech's new_history_record.py.Schema · ProteinTraitsMech conf/traitmech_category_vocabulary.yaml; scripts/audit_cross_mech_categories.py; scripts/new_history_record.py
TraitMech→MediaIngredientMech
TraitMech leaves chemicals to MediaIngredientMech: its METPO seeder skips the material-entity subtree, which its docs say belongs in MIM rather than TraitMech. MIM's /ground-or-propose-ingredient curation command is ported from TraitMech's /ground-or-propose-metpo, re-aimed at chemical identity instead of phenotype.Practice · TraitMech docs/SCHEMA.md, README.md, scripts/seed_from_metpo.py; MIM .claude/commands/ground-or-propose-ingredient.md (MIM#92)
CellStructureMech→TaxonMech
TaxonMech's closed-schema write gate and its curation-history helper are ported from CellStructureMech's modules, which the code credits jointly to HabitatMech and CellStructureMech. Every TaxonMech record is written through them.Practice · TaxonMech src/taxonmech/validation/write_validated.py; src/taxonmech/curate/curation_event.py
+
CellStructureMech→TraitMech
CellStructureMech's scope rule leaves the phenotypes a structure confers, such as motile, flagellated or Gram-negative, to TraitMech. They are never CellStructureMech records, only associated_traits links to TraitMech or METPO terms.Practice · CellStructureMech docs/CURATION.md (record-scope table); schema description
CellStructureMech→ProteinTraitsMech
CellStructureMech's scope rule makes a single protein or protein family a component of a structure, never a record of its own: it grounds to InterPro, Pfam or UniProtKB and is left to ProteinTraitsMech. The schema also declares a proteintraitsmech: prefix, but no record uses it.Practice · CellStructureMech docs/CURATION.md; schema components slot
ProteinTraitsMech→TraitMech
TraitMech's download.yaml source catalogue follows the shape of ProteinTraitsMech's, and its check_sources.py validator is adapted from ProteinTraitsMech's. Unlike the original, it fails a source that records no licence.Practice · TraitMech download.yaml; scripts/check_sources.py; justfile sources-check
NaturalProductMech→AntibioticMech
NaturalProductMech leaves antimicrobial mechanism to AntibioticMech. For the 205 compounds that share a structure with an AntibioticMech record, it links to that record and does not copy its targets, resistance determinants or MIC data.Practice · NaturalProductMech schema molecular_targets; CLAUDE.md; docs/HARMONIZATION.md
AntibioticMech→CellStructureMech
CellStructureMech's source-queue skill, which ranks the sources in its curation/source_queue.tsv, is adapted from AntibioticMech's skill and keeps its ranking rule and adoption gate. Its stylesheet contract test is ported from AntibioticMech's.Practice · CellStructureMech .claude/skills/source-queue/SKILL.md; tests/test_stylesheet_contract.py
-
AntibioticMech→NaturalProductMech
NaturalProductMech pins AntibioticMech's structures in an InChIKey inventory. A natural product that shares an InChIKey with an AntibioticMech record links to it and takes its antimicrobial class, but not its targets or resistance data. NaturalProductMech also used AntibioticMech as its template: its source-queue, add-record, curate-record and review-issues skills are adapted from AntibioticMech's.Record data · NaturalProductMech scripts/extract_antibioticmech.py; data/raw/antibioticmech_inchikeys.tsv; .claude/skills
+
AntibioticMech→NaturalProductMech
NaturalProductMech pins AntibioticMech's structures in an InChIKey inventory. A natural product that shares an InChIKey with an AntibioticMech record links to it and takes its antimicrobial class, but not its targets or resistance data. NaturalProductMech also used AntibioticMech as its template: its source-queue, add-natural-product (from add-antibiotic), curate-yaml-record and review-open-issues skills, its curation-event helper and its closed-schema write gate are adapted from AntibioticMech's.Record data · NaturalProductMech scripts/extract_antibioticmech.py; data/raw/antibioticmech_inchikeys.tsv; .claude/skills
MediaIngredientMech→HabitatMech
HabitatMech's seeder checks the label claimed by each upstream kg-microbe isolation-source mapping and, following MediaIngredientMech's SSSOM Rule B4, accepts an exact ontology synonym as well as the canonical label. Per the code, the rule changes no current record.Practice · HabitatMech src/habitatmech/seed.py verified_mapping_target; tests/test_seed_harmonization.py
MediaIngredientMech→CommunityMech
CommunityMech growth-media components cite MIM ingredients by id (media_ingredient_mech_id), but they use MIM's retired MediaIngredientMech:NNNNNN scheme, so the ids no longer resolve. Its environment-matching tools read MIM's ingredient records and SSSOM mappings. They join on the exactMatch CHEBI term, which is what MIM's CURIE standard recommends; MIM wrote that standard for CommunityMech (MIM#119).Record data · CommunityMech schema GrowthMediaComponent, src/communitymech/cross_repo_environment.py; MIM docs/CURIE_STANDARD.md
MediaIngredientMech→TraitMech
TraitMech ported its write-time validation gate and curation-event helper from CultureMech by way of MediaIngredientMech's versions, and its composite qc target mirrors MIM's. Its FAPROTAX synonym script follows MIM's rule: correct the label and keep the raw string.Practice · TraitMech src/traitmech/validation/write_validated.py; src/traitmech/curate/curation_event.py; justfile qc; scripts/add_faprotax_synonyms.py
MediaIngredientMech→ProteinTraitsMech
ProteinTraitsMech's trait-merge rules, where only an exact identity match is merged and a similar name is only flagged for review, are adapted from MediaIngredientMech's same-ChEBI merge rule. Its oaklib version-pin test is ported from MediaIngredientMech's test of the same name.Practice · ProteinTraitsMech .claude/skills/merge-traits/SKILL.md (just analyze-merges); tests/test_oaklib_semsql_pin.py
-
MediaIngredientMech→CultureMech
About two-thirds of CultureMech recipes link each ingredient to its curated MIM record through mediaingredientmech_chebi_term, and older records keep legacy MediaIngredientMech:NNNNNN ids. CultureMech also resolves ingredient labels against a pinned copy of MIM's label index, types its role slots with MIM's vendored role enums and took over stock solutions from MIM's complex-media list, while MIM's schema leaves recipe bodies to CultureMech.Record data · CultureMech schema mediaingredientmech_chebi_term, mim_roles.yaml; src/culturemech/ingredients/mim_label_index.py
+
MediaIngredientMech→CultureMech
5,696 of CultureMech's 6,288 canonical media link ingredients to their curated MIM records through mediaingredientmech_chebi_term, about 70% of all ingredient rows, and older records keep legacy MediaIngredientMech:NNNNNN ids. CultureMech also resolves ingredient labels against a pinned copy of MIM's label index, types its role slots with MIM's vendored role enums and took over stock solutions from MIM's complex-media list, while MIM's schema leaves recipe bodies to CultureMech.Record data · CultureMech schema mediaingredientmech_chebi_term, mim_roles.yaml; src/culturemech/ingredients/mim_label_index.py
CultureMech→CommunityMech
Community records name the CultureMech medium they were grown in, or an environment-matched one, by culturemech_id, and CommunityMech's media linker copies CultureMech recipe components into them. CommunityMech also ported CultureMech's schema-validated writer and its Edison deep-research runner.Record data · CommunityMech schema GrowthMedia/RelatedMedia culturemech_id; scripts/link_growth_media.py; src/communitymech/validation/write_validated.py
CultureMech→TraitMech
TraitMech's curation-history helper and its schema-validated YAML writer are ports of CultureMech's, by way of MediaIngredientMech's versions, and nearly every TraitMech write script goes through them. TraitMech's qc recipe also mirrors CultureMech's.Practice · TraitMech src/traitmech/curate/curation_event.py; src/traitmech/validation/write_validated.py
CultureMech→MediaIngredientMech
MIM reads CultureMech's ingredient-occurrence table to set each record's occurrence counts, to publish a recipe-membership edge list keyed on CultureMech:NNNNNN ids, and to turn labels it cannot resolve into new records and synonyms. CultureMech leaves questions about an ingredient's chemical form to MIM, and MIM's validated record writer and curation-event helper are ported from CultureMech.Record data · MIM mappings/culturemech_recipe_membership.tsv, scripts/refresh_occurrence_statistics.py; CultureMech docs/DATA_LAYERS.md
diff --git a/assets/fleet/cells/AntibioticMech--ARO.json b/assets/fleet/cells/AntibioticMech--ARO.json index 83196d1..a3a3090 100644 --- a/assets/fleet/cells/AntibioticMech--ARO.json +++ b/assets/fleet/cells/AntibioticMech--ARO.json @@ -1 +1 @@ -{"mech":"AntibioticMech","prefix":"ARO","base":"https://culturebotai.github.io/AntibioticMech/pages/","total":568,"records":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/3-6-diaminoacridine.html","3,6-diaminoacridine"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/5-o-mycaminosyltylonolide.html","5-O-mycaminosyltylonolide"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/7-3-aminopyrrolidin-1-yl-1-2-4-difluorophenyl-6-fluoro-4-oxo-1-4-dihyd.html","7-(3-aminopyrrolidin-1-yl)-1-(2,4-difluorophenyl)-6-fluoro-4-oxo-1,4-dihydro-1,8-naphthyridine-3-carboxylic"],["antibacterial/9-fluoro-5-methyl-1-oxo-6-7-dihydro-1h-5h-pyrido-3-2-1-ij-quinoline-2-.html","9-fluoro-5-methyl-1-oxo-6,7-dihydro-1H,5H-pyrido[3,2,1-ij]quinoline-2-carboxylic"],["antibacterial/a201a.html","A201A"],["antibacterial/a47934.html","A47934"],["antibacterial/actinomycin-d.html","actinomycin D"],["antibacterial/albicidin.html","albicidin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/amythiamicin-a.html","amythiamicin A"],["antibacterial/antibiotic-a40926.html","antibiotic A40926"],["antibacterial/aplasmomycin.html","(+)-aplasmomycin"],["antibacterial/apramycin.html","apramycin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/arborcandin-c.html","arborcandin C"],["antibacterial/arsinothricin.html","arsinothricin"],["antibacterial/arsphenamine.html","arsphenamine"],["antibacterial/arylomycin.html","arylomycin"],["antibacterial/aspoxicillin.html","aspoxicillin"],["antibacterial/astromicin.html","astromicin"],["antibacterial/aurodox.html","aurodox"],["antibacterial/avilamycin.html","avilamycin"],["antibacterial/avoparcin.html","avoparcin"],["antibacterial/azalomycin-f.html","azalomycin F"],["antibacterial/azamulin.html","azamulin"],["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/azidocillin.html","azidocillin"],["antibacterial/azithromycin.html","azithromycin"],["antibacterial/azlocillin.html","azlocillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/bacitracin-a.html","bacitracin A"],["antibacterial/bacitracin-b.html","bacitracin B"],["antibacterial/bacitracin-f.html","bacitracin F"],["antibacterial/bacitracin.html","bacitracin"],["antibacterial/bal30072.html","BAL30072"],["antibacterial/balhimycin.html","balhimycin"],["antibacterial/balofloxacin.html","Balofloxacin"],["antibacterial/battacin.html","battacin"],["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/biapenem.html","biapenem"],["antibacterial/bicozamycin.html","bicozamycin"],["antibacterial/bleomycin-a2.html","bleomycin A2"],["antibacterial/bleomycin-b2.html","bleomycin B2"],["antibacterial/bleomycin.html","bleomycin"],["antibacterial/bleomycinic-acid.html","bleomycinic acid"],["antibacterial/boromycin.html","boromycin"],["antibacterial/brefeldin-a.html","brefeldin A"],["antibacterial/brodimoprim.html","brodimoprim"],["antibacterial/butirosin.html","butirosin"],["antibacterial/cadaside-a.html","cadaside A"],["antibacterial/cadaside-b.html","cadaside B"],["antibacterial/calcimycin.html","calcimycin"],["antibacterial/caprazamycin.html","caprazamycin"],["antibacterial/carbenicillin.html","carbenicillin"],["antibacterial/carbomycin.html","carbomycin"],["antibacterial/carrimycin.html","carrimycin"],["antibacterial/carumonam.html","carumonam"],["antibacterial/cefacetrile.html","cefacetrile"],["antibacterial/cefaclor.html","cefaclor"],["antibacterial/cefadroxil.html","cefadroxil"],["antibacterial/cefaloridine.html","cefaloridine"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefamandole.html","cefamandole"],["antibacterial/cefatrizine.html","cefatrizine"],["antibacterial/cefazedone.html","cefazedone"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefbuperazone.html","cefbuperazone"],["antibacterial/cefcapene.html","cefcapene"],["antibacterial/cefdinir.html","cefdinir"],["antibacterial/cefditoren.html","cefditoren"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefetamet.html","cefetamet"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/cefixime.html","cefixime"],["antibacterial/cefmenoxime.html","cefmenoxime"],["antibacterial/cefmetazole.html","cefmetazole"],["antibacterial/cefminox.html","cefminox"],["antibacterial/cefodizime.html","cefodizime"],["antibacterial/cefonicid.html","cefonicid"],["antibacterial/cefoperazone.html","cefoperazone"],["antibacterial/ceforanide.html","ceforanide"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/cefotetan.html","cefotetan"],["antibacterial/cefotiam.html","cefotiam"],["antibacterial/cefovecin.html","cefovecin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/cefozopran.html","cefozopran"],["antibacterial/cefpiramide.html","cefpiramide"],["antibacterial/cefpirome.html","cefpirome"],["antibacterial/cefpodoxime.html","cefpodoxime"],["antibacterial/cefprozil.html","cefprozil"],["antibacterial/cefquinome.html","cefquinome"],["antibacterial/cefroxadine.html","cefroxadine"],["antibacterial/cefsulodin.html","cefsulodin"],["antibacterial/ceftaroline.html","ceftaroline"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/cefteram.html","cefteram"],["antibacterial/ceftezole.html","ceftezole"],["antibacterial/ceftibuten.html","ceftibuten"],["antibacterial/ceftiofur.html","ceftiofur"],["antibacterial/ceftizoxime.html","ceftizoxime"],["antibacterial/ceftobiprole.html","ceftobiprole"],["antibacterial/ceftolozane.html","ceftolozane"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/cefuroxime.html","cefuroxime"],["antibacterial/celesticetin.html","celesticetin"],["antibacterial/cephalexin.html","cephalexin"],["antibacterial/cephapirin.html","cephapirin"],["antibacterial/cephradine.html","cephradine"],["antibacterial/cervimycin-a.html","cervimycin A"],["antibacterial/cervimycin-b.html","cervimycin B"],["antibacterial/cervimycin-c.html","cervimycin C"],["antibacterial/cervimycin-d.html","cervimycin D"],["antibacterial/cervimycin-k1.html","cervimycin K1"],["antibacterial/cervimycin-k2.html","cervimycin K2"],["antibacterial/cervimycin-n.html","cervimycin N"],["antibacterial/cethromycin.html","cethromycin"],["antibacterial/cezomycin.html","cezomycin"],["antibacterial/chalcomycin.html","chalcomycin"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/chloroeremomycin.html","chloroeremomycin"],["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/chrysomycin-a.html","chrysomycin A"],["antibacterial/cinoxacin.html","cinoxacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clerocidin.html","clerocidin"],["antibacterial/clinafloxacin.html","clinafloxacin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/clometocillin.html","clometocillin"],["antibacterial/clorobiocin.html","clorobiocin"],["antibacterial/cloxacillin.html","cloxacillin"],["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"],["antibacterial/contezolid.html","contezolid"],["antibacterial/corbomycin.html","corbomycin"],["antibacterial/cordycepin.html","cordycepin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/cyclomarin-a.html","cyclomarin A"],["antibacterial/cyclomarin-b.html","cyclomarin B"],["antibacterial/cyclomarin-c.html","cyclomarin C"],["antibacterial/dalbavancin.html","dalbavancin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/darobactin-a.html","darobactin A"],["antibacterial/declovanillobiocin.html","declovanillobiocin"],["antibacterial/defensin.html","defensin"],["antibacterial/delafloxacin.html","delafloxacin"],["antibacterial/delamanid.html","delamanid"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/dicloxacillin.html","dicloxacillin"],["antibacterial/diflunisal.html","diflunisal"],["antibacterial/dihydromocimycin.html","dihydromocimycin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/doripenem.html","doripenem"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/dragmacidin-a.html","dragmacidin A"],["antibacterial/dragmacidin-b.html","dragmacidin B"],["antibacterial/dragmacidin-d.html","dragmacidin D"],["antibacterial/dragmacidin-e.html","dragmacidin E"],["antibacterial/dragmacidin-f.html","dragmacidin F"],["antibacterial/edeine-a.html","edeine A"],["antibacterial/edeine-b.html","edeine B"],["antibacterial/edeine-d.html","edeine D"],["antibacterial/edeine-f.html","edeine F"],["antibacterial/efrotomycin.html","efrotomycin"],["antibacterial/enacyloxin-iia.html","enacyloxin IIa"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/enramycin.html","enramycin"],["antibacterial/enrofloxacin.html","enrofloxacin"],["antibacterial/epicillin.html","epicillin"],["antibacterial/epinecidin-1.html","epinecidin-1"],["antibacterial/eravacycline.html","eravacycline"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/evernimicin.html","evernimicin"],["antibacterial/factumycin.html","factumycin"],["antibacterial/faropenem.html","faropenem"],["antibacterial/fasamycin-a.html","fasamycin A"],["antibacterial/fasamycin-b.html","fasamycin B"],["antibacterial/fasamycin-g.html","fasamycin G"],["antibacterial/fasamycin-h.html","fasamycin H"],["antibacterial/fasamycin-i.html","fasamycin I"],["antibacterial/fasamycin-j.html","fasamycin J"],["antibacterial/fasamycin-k.html","fasamycin K"],["antibacterial/fidaxomicin.html","fidaxomicin"],["antibacterial/finafloxacin.html","finafloxacin"],["antibacterial/fleroxacin.html","fleroxacin"],["antibacterial/flomoxef.html","flomoxef"],["antibacterial/florfenicol.html","florfenicol"],["antibacterial/flucloxacillin.html","flucloxacillin"],["antibacterial/formicamycin-a.html","formicamycin A"],["antibacterial/formicamycin-b.html","formicamycin B"],["antibacterial/formicamycin-c.html","formicamycin C"],["antibacterial/formicamycin-d.html","formicamycin D"],["antibacterial/formicamycin-e.html","formicamycin E"],["antibacterial/formicamycin-f.html","formicamycin F"],["antibacterial/formicamycin-g.html","formicamycin G"],["antibacterial/formicamycin-h.html","formicamycin H"],["antibacterial/formicamycin-i.html","formicamycin I"],["antibacterial/formicamycin-j.html","formicamycin J"],["antibacterial/formicamycin-k.html","formicamycin K"],["antibacterial/formicamycin-l.html","formicamycin L"],["antibacterial/formicamycin-m.html","formicamycin M"],["antibacterial/formicamycin-n.html","formicamycin N"],["antibacterial/formicamycin-o.html","formicamycin O"],["antibacterial/formicamycin-p.html","formicamycin P"],["antibacterial/formicamycin-q.html","formicamycin Q"],["antibacterial/formicin.html","formicin"],["antibacterial/fosfomycin.html","fosfomycin"],["antibacterial/fosmidomycin.html","fosmidomycin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/furagin.html","furagin"],["antibacterial/furazolidone.html","furazolidone"],["antibacterial/fusidic-acid.html","fusidic acid"],["antibacterial/g418.html","G418"],["antibacterial/gamithromycin.html","gamithromycin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/ge2270a.html","GE2270A"],["antibacterial/ge37468.html","GE37468"],["antibacterial/gemifloxacin.html","gemifloxacin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/gentamicin-c.html","gentamicin C"],["antibacterial/gentamicin-x.html","gentamicin X"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/gepotidacin.html","gepotidacin"],["antibacterial/gramicidin-a.html","gramicidin A"],["antibacterial/gramicidin-b.html","gramicidin B"],["antibacterial/gramicidin-c.html","gramicidin C"],["antibacterial/gramicidin-d.html","gramicidin D"],["antibacterial/gramicidin-s.html","gramicidin S"],["antibacterial/gramicidin.html","gramicidin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/halolitoralin-a.html","halolitoralin A"],["antibacterial/halolitoralin-b.html","halolitoralin B"],["antibacterial/halolitoralin-c.html","halolitoralin C"],["antibacterial/heneicomycin.html","heneicomycin"],["antibacterial/hetacillin.html","hetacillin"],["antibacterial/hygromycin-a.html","hygromycin A"],["antibacterial/hygromycin-b.html","hygromycin B"],["antibacterial/iboxamycin.html","iboxamycin"],["antibacterial/imazalil.html","imazalil"],["antibacterial/imipenem.html","imipenem"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/isovanillobiocin.html","isovanillobiocin"],["antibacterial/josamycin.html","josamycin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/kirromycin.html","kirromycin"],["antibacterial/kirrothricin.html","kirrothricin"],["antibacterial/klebsazolicin.html","klebsazolicin"],["antibacterial/klebsidin.html","klebsidin"],["antibacterial/l-681-217.html","L-681,217"],["antibacterial/lascufloxacin.html","lascufloxacin"],["antibacterial/lassomycin.html","lassomycin"],["antibacterial/lefamulin.html","lefamulin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/lff571.html","LFF571"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/linoleic-acid.html","linoleic acid"],["antibacterial/loracarbef.html","loracarbef"],["antibacterial/lugdunin.html","lugdunin"],["antibacterial/lys228.html","LYS228"],["antibacterial/lysocin-e.html","lysocin E"],["antibacterial/madumycin-ii.html","madumycin II"],["antibacterial/mafenide.html","mafenide"],["antibacterial/magainin-1.html","magainin 1"],["antibacterial/magainin-2.html","magainin 2"],["antibacterial/magainin-a.html","magainin A"],["antibacterial/magainin-b.html","magainin B"],["antibacterial/magainin-g.html","magainin G"],["antibacterial/magainin-h.html","magainin H"],["antibacterial/malacidin-a.html","malacidin A"],["antibacterial/marbofloxacin.html","marbofloxacin"],["antibacterial/marinomycin-a.html","marinomycin A"],["antibacterial/marinomycin-b.html","marinomycin B"],["antibacterial/marinomycin-c.html","marinomycin C"],["antibacterial/marinomycin-d.html","marinomycin D"],["antibacterial/mecillinam.html","mecillinam"],["antibacterial/megalomycin.html","megalomycin"],["antibacterial/meropenem.html","meropenem"],["antibacterial/methicillin.html","methicillin"],["antibacterial/methymycin.html","methymycin"],["antibacterial/metronidazole.html","metronidazole"],["antibacterial/mezlocillin.html","mezlocillin"],["antibacterial/microcin-j25.html","microcin J25"],["antibacterial/midecamycin.html","midecamycin"],["antibacterial/minocycline.html","minocycline"],["antibacterial/moenomycin-a1.html","moenomycin A1"],["antibacterial/moxalactam.html","moxalactam"]]} \ No newline at end of file +{"mech":"AntibioticMech","prefix":"ARO","base":"https://culturebotai.github.io/AntibioticMech/pages/","total":568,"records":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/3-6-diaminoacridine.html","3,6-diaminoacridine"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/5-o-mycaminosyltylonolide.html","5-O-mycaminosyltylonolide"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/7-3-aminopyrrolidin-1-yl-1-2-4-difluorophenyl-6-fluoro-4-oxo-1-4-dihyd.html","7-(3-aminopyrrolidin-1-yl)-1-(2,4-difluorophenyl)-6-fluoro-4-oxo-1,4-dihydro-1,8-naphthyridine-3-carboxylic acid"],["antibacterial/9-fluoro-5-methyl-1-oxo-6-7-dihydro-1h-5h-pyrido-3-2-1-ij-quinoline-2-.html","9-fluoro-5-methyl-1-oxo-6,7-dihydro-1H,5H-pyrido[3,2,1-ij]quinoline-2-carboxylic acid"],["antibacterial/a201a.html","A201A"],["antibacterial/a47934.html","A47934"],["antibacterial/actinomycin-d.html","actinomycin D"],["antibacterial/albicidin.html","albicidin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/amythiamicin-a.html","amythiamicin A"],["antibacterial/antibiotic-a40926.html","antibiotic A40926"],["antibacterial/aplasmomycin.html","(+)-aplasmomycin"],["antibacterial/apramycin.html","apramycin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/arborcandin-c.html","arborcandin C"],["antibacterial/arsinothricin.html","arsinothricin"],["antibacterial/arsphenamine.html","arsphenamine"],["antibacterial/arylomycin.html","arylomycin"],["antibacterial/aspoxicillin.html","aspoxicillin"],["antibacterial/astromicin.html","astromicin"],["antibacterial/aurodox.html","aurodox"],["antibacterial/avilamycin.html","avilamycin"],["antibacterial/avoparcin.html","avoparcin"],["antibacterial/azalomycin-f.html","azalomycin F"],["antibacterial/azamulin.html","azamulin"],["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/azidocillin.html","azidocillin"],["antibacterial/azithromycin.html","azithromycin"],["antibacterial/azlocillin.html","azlocillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/bacitracin-a.html","bacitracin A"],["antibacterial/bacitracin-b.html","bacitracin B"],["antibacterial/bacitracin-f.html","bacitracin F"],["antibacterial/bacitracin.html","bacitracin"],["antibacterial/bal30072.html","BAL30072"],["antibacterial/balhimycin.html","balhimycin"],["antibacterial/balofloxacin.html","Balofloxacin"],["antibacterial/battacin.html","battacin"],["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/biapenem.html","biapenem"],["antibacterial/bicozamycin.html","bicozamycin"],["antibacterial/bleomycin-a2.html","bleomycin A2"],["antibacterial/bleomycin-b2.html","bleomycin B2"],["antibacterial/bleomycin.html","bleomycin"],["antibacterial/bleomycinic-acid.html","bleomycinic acid"],["antibacterial/boromycin.html","boromycin"],["antibacterial/brefeldin-a.html","brefeldin A"],["antibacterial/brodimoprim.html","brodimoprim"],["antibacterial/butirosin.html","butirosin"],["antibacterial/cadaside-a.html","cadaside A"],["antibacterial/cadaside-b.html","cadaside B"],["antibacterial/calcimycin.html","calcimycin"],["antibacterial/caprazamycin.html","caprazamycin"],["antibacterial/carbenicillin.html","carbenicillin"],["antibacterial/carbomycin.html","carbomycin"],["antibacterial/carrimycin.html","carrimycin"],["antibacterial/carumonam.html","carumonam"],["antibacterial/cefacetrile.html","cefacetrile"],["antibacterial/cefaclor.html","cefaclor"],["antibacterial/cefadroxil.html","cefadroxil"],["antibacterial/cefaloridine.html","cefaloridine"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefamandole.html","cefamandole"],["antibacterial/cefatrizine.html","cefatrizine"],["antibacterial/cefazedone.html","cefazedone"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefbuperazone.html","cefbuperazone"],["antibacterial/cefcapene.html","cefcapene"],["antibacterial/cefdinir.html","cefdinir"],["antibacterial/cefditoren.html","cefditoren"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefetamet.html","cefetamet"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/cefixime.html","cefixime"],["antibacterial/cefmenoxime.html","cefmenoxime"],["antibacterial/cefmetazole.html","cefmetazole"],["antibacterial/cefminox.html","cefminox"],["antibacterial/cefodizime.html","cefodizime"],["antibacterial/cefonicid.html","cefonicid"],["antibacterial/cefoperazone.html","cefoperazone"],["antibacterial/ceforanide.html","ceforanide"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/cefotetan.html","cefotetan"],["antibacterial/cefotiam.html","cefotiam"],["antibacterial/cefovecin.html","cefovecin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/cefozopran.html","cefozopran"],["antibacterial/cefpiramide.html","cefpiramide"],["antibacterial/cefpirome.html","cefpirome"],["antibacterial/cefpodoxime.html","cefpodoxime"],["antibacterial/cefprozil.html","cefprozil"],["antibacterial/cefquinome.html","cefquinome"],["antibacterial/cefroxadine.html","cefroxadine"],["antibacterial/cefsulodin.html","cefsulodin"],["antibacterial/ceftaroline.html","ceftaroline"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/cefteram.html","cefteram"],["antibacterial/ceftezole.html","ceftezole"],["antibacterial/ceftibuten.html","ceftibuten"],["antibacterial/ceftiofur.html","ceftiofur"],["antibacterial/ceftizoxime.html","ceftizoxime"],["antibacterial/ceftobiprole.html","ceftobiprole"],["antibacterial/ceftolozane.html","ceftolozane"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/cefuroxime.html","cefuroxime"],["antibacterial/celesticetin.html","celesticetin"],["antibacterial/cephalexin.html","cephalexin"],["antibacterial/cephapirin.html","cephapirin"],["antibacterial/cephradine.html","cephradine"],["antibacterial/cervimycin-a.html","cervimycin A"],["antibacterial/cervimycin-b.html","cervimycin B"],["antibacterial/cervimycin-c.html","cervimycin C"],["antibacterial/cervimycin-d.html","cervimycin D"],["antibacterial/cervimycin-k1.html","cervimycin K1"],["antibacterial/cervimycin-k2.html","cervimycin K2"],["antibacterial/cervimycin-n.html","cervimycin N"],["antibacterial/cethromycin.html","cethromycin"],["antibacterial/cezomycin.html","cezomycin"],["antibacterial/chalcomycin.html","chalcomycin"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/chloroeremomycin.html","chloroeremomycin"],["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/chrysomycin-a.html","chrysomycin A"],["antibacterial/cinoxacin.html","cinoxacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clerocidin.html","clerocidin"],["antibacterial/clinafloxacin.html","clinafloxacin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/clometocillin.html","clometocillin"],["antibacterial/clorobiocin.html","clorobiocin"],["antibacterial/cloxacillin.html","cloxacillin"],["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"],["antibacterial/contezolid.html","contezolid"],["antibacterial/corbomycin.html","corbomycin"],["antibacterial/cordycepin.html","cordycepin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/cyclomarin-a.html","cyclomarin A"],["antibacterial/cyclomarin-b.html","cyclomarin B"],["antibacterial/cyclomarin-c.html","cyclomarin C"],["antibacterial/dalbavancin.html","dalbavancin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/darobactin-a.html","darobactin A"],["antibacterial/declovanillobiocin.html","declovanillobiocin"],["antibacterial/defensin.html","defensin"],["antibacterial/delafloxacin.html","delafloxacin"],["antibacterial/delamanid.html","delamanid"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/dicloxacillin.html","dicloxacillin"],["antibacterial/diflunisal.html","diflunisal"],["antibacterial/dihydromocimycin.html","dihydromocimycin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/doripenem.html","doripenem"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/dragmacidin-a.html","dragmacidin A"],["antibacterial/dragmacidin-b.html","dragmacidin B"],["antibacterial/dragmacidin-d.html","dragmacidin D"],["antibacterial/dragmacidin-e.html","dragmacidin E"],["antibacterial/dragmacidin-f.html","dragmacidin F"],["antibacterial/edeine-a.html","edeine A"],["antibacterial/edeine-b.html","edeine B"],["antibacterial/edeine-d.html","edeine D"],["antibacterial/edeine-f.html","edeine F"],["antibacterial/efrotomycin.html","efrotomycin"],["antibacterial/enacyloxin-iia.html","enacyloxin IIa"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/enramycin.html","enramycin"],["antibacterial/enrofloxacin.html","enrofloxacin"],["antibacterial/epicillin.html","epicillin"],["antibacterial/epinecidin-1.html","epinecidin-1"],["antibacterial/eravacycline.html","eravacycline"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/evernimicin.html","evernimicin"],["antibacterial/factumycin.html","factumycin"],["antibacterial/faropenem.html","faropenem"],["antibacterial/fasamycin-a.html","fasamycin A"],["antibacterial/fasamycin-b.html","fasamycin B"],["antibacterial/fasamycin-g.html","fasamycin G"],["antibacterial/fasamycin-h.html","fasamycin H"],["antibacterial/fasamycin-i.html","fasamycin I"],["antibacterial/fasamycin-j.html","fasamycin J"],["antibacterial/fasamycin-k.html","fasamycin K"],["antibacterial/fidaxomicin.html","fidaxomicin"],["antibacterial/finafloxacin.html","finafloxacin"],["antibacterial/fleroxacin.html","fleroxacin"],["antibacterial/flomoxef.html","flomoxef"],["antibacterial/florfenicol.html","florfenicol"],["antibacterial/flucloxacillin.html","flucloxacillin"],["antibacterial/formicamycin-a.html","formicamycin A"],["antibacterial/formicamycin-b.html","formicamycin B"],["antibacterial/formicamycin-c.html","formicamycin C"],["antibacterial/formicamycin-d.html","formicamycin D"],["antibacterial/formicamycin-e.html","formicamycin E"],["antibacterial/formicamycin-f.html","formicamycin F"],["antibacterial/formicamycin-g.html","formicamycin G"],["antibacterial/formicamycin-h.html","formicamycin H"],["antibacterial/formicamycin-i.html","formicamycin I"],["antibacterial/formicamycin-j.html","formicamycin J"],["antibacterial/formicamycin-k.html","formicamycin K"],["antibacterial/formicamycin-l.html","formicamycin L"],["antibacterial/formicamycin-m.html","formicamycin M"],["antibacterial/formicamycin-n.html","formicamycin N"],["antibacterial/formicamycin-o.html","formicamycin O"],["antibacterial/formicamycin-p.html","formicamycin P"],["antibacterial/formicamycin-q.html","formicamycin Q"],["antibacterial/formicin.html","formicin"],["antibacterial/fosfomycin.html","fosfomycin"],["antibacterial/fosmidomycin.html","fosmidomycin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/furagin.html","furagin"],["antibacterial/furazolidone.html","furazolidone"],["antibacterial/fusidic-acid.html","fusidic acid"],["antibacterial/g418.html","G418"],["antibacterial/gamithromycin.html","gamithromycin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/ge2270a.html","GE2270A"],["antibacterial/ge37468.html","GE37468"],["antibacterial/gemifloxacin.html","gemifloxacin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/gentamicin-c.html","gentamicin C"],["antibacterial/gentamicin-x.html","gentamicin X"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/gepotidacin.html","gepotidacin"],["antibacterial/gramicidin-a.html","gramicidin A"],["antibacterial/gramicidin-b.html","gramicidin B"],["antibacterial/gramicidin-c.html","gramicidin C"],["antibacterial/gramicidin-d.html","gramicidin D"],["antibacterial/gramicidin-s.html","gramicidin S"],["antibacterial/gramicidin.html","gramicidin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/halolitoralin-a.html","halolitoralin A"],["antibacterial/halolitoralin-b.html","halolitoralin B"],["antibacterial/halolitoralin-c.html","halolitoralin C"],["antibacterial/heneicomycin.html","heneicomycin"],["antibacterial/hetacillin.html","hetacillin"],["antibacterial/hygromycin-a.html","hygromycin A"],["antibacterial/hygromycin-b.html","hygromycin B"],["antibacterial/iboxamycin.html","iboxamycin"],["antibacterial/imazalil.html","imazalil"],["antibacterial/imipenem.html","imipenem"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/isovanillobiocin.html","isovanillobiocin"],["antibacterial/josamycin.html","josamycin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/kirromycin.html","kirromycin"],["antibacterial/kirrothricin.html","kirrothricin"],["antibacterial/klebsazolicin.html","klebsazolicin"],["antibacterial/klebsidin.html","klebsidin"],["antibacterial/l-681-217.html","L-681,217"],["antibacterial/lascufloxacin.html","lascufloxacin"],["antibacterial/lassomycin.html","lassomycin"],["antibacterial/lefamulin.html","lefamulin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/lff571.html","LFF571"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/linoleic-acid.html","linoleic acid"],["antibacterial/loracarbef.html","loracarbef"],["antibacterial/lugdunin.html","lugdunin"],["antibacterial/lys228.html","LYS228"],["antibacterial/lysocin-e.html","lysocin E"],["antibacterial/madumycin-ii.html","madumycin II"],["antibacterial/mafenide.html","mafenide"],["antibacterial/magainin-1.html","magainin 1"],["antibacterial/magainin-2.html","magainin 2"],["antibacterial/magainin-a.html","magainin A"],["antibacterial/magainin-b.html","magainin B"],["antibacterial/magainin-g.html","magainin G"],["antibacterial/magainin-h.html","magainin H"],["antibacterial/malacidin-a.html","malacidin A"],["antibacterial/marbofloxacin.html","marbofloxacin"],["antibacterial/marinomycin-a.html","marinomycin A"],["antibacterial/marinomycin-b.html","marinomycin B"],["antibacterial/marinomycin-c.html","marinomycin C"],["antibacterial/marinomycin-d.html","marinomycin D"],["antibacterial/mecillinam.html","mecillinam"],["antibacterial/megalomycin.html","megalomycin"],["antibacterial/meropenem.html","meropenem"],["antibacterial/methicillin.html","methicillin"],["antibacterial/methymycin.html","methymycin"],["antibacterial/metronidazole.html","metronidazole"],["antibacterial/mezlocillin.html","mezlocillin"],["antibacterial/microcin-j25.html","microcin J25"],["antibacterial/midecamycin.html","midecamycin"],["antibacterial/minocycline.html","minocycline"],["antibacterial/moenomycin-a1.html","moenomycin A1"],["antibacterial/moxalactam.html","moxalactam"]]} \ No newline at end of file diff --git a/assets/fleet/cells/AntibioticMech--CAS.json b/assets/fleet/cells/AntibioticMech--CAS.json index 732424f..8b811bc 100644 --- a/assets/fleet/cells/AntibioticMech--CAS.json +++ b/assets/fleet/cells/AntibioticMech--CAS.json @@ -1 +1 @@ -{"mech":"AntibioticMech","prefix":"CAS","base":"https://culturebotai.github.io/AntibioticMech/pages/","total":1797,"records":[["antibacterial/1-2-dodecanediol.html","1,2-dodecanediol"],["antibacterial/1-6-dihydroxy-2-methyl-9-10-anthraquinone.html","1,6-dihydroxy-2-methyl-9,10-anthraquinone"],["antibacterial/1-carbapenem-3-carboxylic-acid.html","1-carbapenem-3-carboxylic acid"],["antibacterial/1-dodecylguanidine-acetate.html","1-dodecylguanidine acetate"],["antibacterial/1-dodecylguanidine.html","1-dodecylguanidine"],["antibacterial/13r-epi-8-13-epoxylabd-14-ene.html","(13R)-epi-8,13-epoxylabd-14-ene"],["antibacterial/2-deoxystreptamine.html","2-deoxystreptamine"],["antibacterial/2-heptyl-4-hydroxyquinoline.html","2-heptyl-4-hydroxyquinoline"],["antibacterial/2e-hexenal.html","(2E)-hexenal"],["antibacterial/3-3-dimethylquercetin.html","3,3'-dimethylquercetin"],["antibacterial/3-6-9-trihydroxypterocarpan.html","3,6,9-trihydroxypterocarpan"],["antibacterial/3-6-diamino-10-methylacridinium-chloride-hcl.html","3,6-diamino-10-methylacridinium chloride.HCl"],["antibacterial/3-6-diamino-10-methylacridinium-chloride.html","3,6-diamino-10-methylacridinium chloride"],["antibacterial/3-6-diaminoacridine-dihydrochloride.html","3,6-diaminoacridine dihydrochloride"],["antibacterial/3-6-diaminoacridine-monohydrochloride.html","3,6-diaminoacridine monohydrochloride"],["antibacterial/3-6-diaminoacridine.html","3,6-diaminoacridine"],["antibacterial/3-hydroxy-4-methoxybenzoic-acid.html","3-hydroxy-4-methoxybenzoic acid"],["antibacterial/3-methylorsellinic-acid.html","3-methylorsellinic acid"],["antibacterial/3-phenylbutyric-acid.html","3-phenylbutyric acid"],["antibacterial/3-z-2-isocyanovinyl-indole.html","3-[(Z)-2-isocyanovinyl]indole"],["antibacterial/4-hydroxy-2-oxobutanal.html","4-hydroxy-2-oxobutanal"],["antibacterial/4-hydroxycordoin.html","4-hydroxycordoin"],["antibacterial/4-terpineol.html","4-terpineol"],["antibacterial/5-6-7-trimethoxycoumarin.html","5,6,7-trimethoxycoumarin"],["antibacterial/5-7-4-trihydroxy-6-8-diprenylisoflavone.html","5,7,4'-trihydroxy-6,8-diprenylisoflavone"],["antibacterial/5-chloro-7-iodoquinolin-8-ol.html","5-chloro-7-iodoquinolin-8-ol"],["antibacterial/5-methoxyindole-3-acetic-acid.html","5-methoxyindole-3-acetic acid"],["antibacterial/5-o-mycaminosyltylonolide.html","5-O-mycaminosyltylonolide"],["antibacterial/6-8-diprenylnaringenin.html","6,8-diprenylnaringenin"],["antibacterial/6-diazo-5-oxo-l-norleucine.html","6-diazo-5-oxo-L-norleucine"],["antibacterial/6-methoxy-2-benzoxazolinone.html","6-methoxy-2-benzoxazolinone"],["antibacterial/6-tuliposide-b.html","6-tuliposide B"],["antibacterial/7-3-aminopyrrolidin-1-yl-1-2-4-difluorophenyl-6-fluoro-4-oxo-1-4-dihyd.html","7-(3-aminopyrrolidin-1-yl)-1-(2,4-difluorophenyl)-6-fluoro-4-oxo-1,4-dihydro-1,8-naphthyridine-3-carboxylic"],["antibacterial/7-aminocholesterol.html","7-aminocholesterol"],["antibacterial/9-fluoro-5-methyl-1-oxo-6-7-dihydro-1h-5h-pyrido-3-2-1-ij-quinoline-2-.html","9-fluoro-5-methyl-1-oxo-6,7-dihydro-1H,5H-pyrido[3,2,1-ij]quinoline-2-carboxylic"],["antibacterial/9z-12z-15z-octadeca-9-12-15-trien-6-ynoic-acid.html","(9Z,12Z,15Z)-octadeca-9,12,15-trien-6-ynoic acid"],["antibacterial/9z-12z-15z-octadecatrien-1-ol.html","(9Z,12Z,15Z)-octadecatrien-1-ol"],["antibacterial/a47934.html","A47934"],["antibacterial/acteoside.html","acteoside"],["antibacterial/actinodaphnine.html","actinodaphnine"],["antibacterial/actinomycin-d.html","actinomycin D"],["antibacterial/afzelin.html","afzelin"],["antibacterial/albomycin-%CE%B41.html","albomycin δ1"],["antibacterial/alexidine.html","alexidine"],["antibacterial/allicin.html","allicin"],["antibacterial/allyl-alcohol.html","allyl alcohol"],["antibacterial/althiomycin.html","althiomycin"],["antibacterial/amikacin-disulfate.html","amikacin disulfate"],["antibacterial/amikacin.html","amikacin"],["antibacterial/amoxicillin-trihydrate.html","amoxicillin trihydrate"],["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/anacardic-acid.html","anacardic acid"],["antibacterial/anthramycin.html","anthramycin"],["antibacterial/apigenin-7-o-%CE%B2-d-glucoside.html","apigenin 7-O-β-D-glucoside"],["antibacterial/aplasmomycin.html","(+)-aplasmomycin"],["antibacterial/apramycin.html","apramycin"],["antibacterial/arasertaconazole.html","arasertaconazole"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/arjunolic-acid.html","arjunolic acid"],["antibacterial/arsphenamine.html","arsphenamine"],["antibacterial/asperlactone.html","asperlactone"],["antibacterial/aspoxicillin.html","aspoxicillin"],["antibacterial/aspyrone.html","aspyrone"],["antibacterial/astromicin.html","astromicin"],["antibacterial/asukamycin.html","asukamycin"],["antibacterial/atromentin.html","atromentin"],["antibacterial/aurachin-a.html","aurachin A"],["antibacterial/aurachin-c.html","aurachin C"],["antibacterial/aureothin.html","aureothin"],["antibacterial/aureothricin.html","aureothricin"],["antibacterial/avibactam-sodium.html","avibactam sodium"],["antibacterial/avibactam.html","avibactam"],["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/azidocillin.html","azidocillin"],["antibacterial/azithromycin.html","azithromycin"],["antibacterial/azlocillin.html","azlocillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/bacitracin-a.html","bacitracin A"],["antibacterial/baicalein.html","baicalein"],["antibacterial/baicalin.html","baicalin"],["antibacterial/balofloxacin.html","Balofloxacin"],["antibacterial/bay11-7085.html","BAY11-7085"],["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"],["antibacterial/benzethonium-chloride.html","benzethonium chloride"],["antibacterial/benzyl-isothiocyanate.html","benzyl isothiocyanate"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/biapenem.html","biapenem"],["antibacterial/bicozamycin.html","bicozamycin"],["antibacterial/bikaverin.html","bikaverin"],["antibacterial/bleomycin-a2.html","bleomycin A2"],["antibacterial/boromycin.html","boromycin"],["antibacterial/brazilin.html","brazilin"],["antibacterial/brefeldin-a.html","brefeldin A"],["antibacterial/brilliant-green.html","brilliant green"],["antibacterial/brodimoprim.html","brodimoprim"],["antibacterial/bromodeoxytopsentin.html","bromodeoxytopsentin"],["antibacterial/butirosin.html","butirosin"],["antibacterial/calcimycin.html","calcimycin"],["antibacterial/cannabichromenic-acid.html","cannabichromenic acid"],["antibacterial/cannabigerol.html","cannabigerol"],["antibacterial/cannabinolic-acid.html","cannabinolic acid"],["antibacterial/carbapenem-mm22383.html","carbapenem MM22383"],["antibacterial/carbenicillin.html","carbenicillin"],["antibacterial/carumonam.html","carumonam"],["antibacterial/cccp.html","CCCP"],["antibacterial/cefacetrile.html","cefacetrile"],["antibacterial/cefaclor.html","cefaclor"],["antibacterial/cefadroxil.html","cefadroxil"],["antibacterial/cefaloridine.html","cefaloridine"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefamandole-nafate.html","cefamandole nafate"],["antibacterial/cefamandole-sodium.html","cefamandole sodium"],["antibacterial/cefamandole.html","cefamandole"],["antibacterial/cefatrizine.html","cefatrizine"],["antibacterial/cefazedone.html","cefazedone"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefbuperazone.html","cefbuperazone"],["antibacterial/cefcapene.html","cefcapene"],["antibacterial/cefdaloxime.html","cefdaloxime"],["antibacterial/cefdinir.html","cefdinir"],["antibacterial/cefditoren-pivoxil.html","cefditoren pivoxil"],["antibacterial/cefditoren.html","cefditoren"],["antibacterial/cefepime-hydrochloride.html","cefepime hydrochloride"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/cefixime.html","cefixime"],["antibacterial/cefmenoxime.html","cefmenoxime"],["antibacterial/cefmetazole.html","cefmetazole"],["antibacterial/cefminox.html","cefminox"],["antibacterial/cefodizime.html","cefodizime"],["antibacterial/cefonicid.html","cefonicid"],["antibacterial/cefoperazone.html","cefoperazone"],["antibacterial/ceforanide.html","ceforanide"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/cefotetan-disodium.html","cefotetan disodium"],["antibacterial/cefotetan.html","cefotetan"],["antibacterial/cefotiam-dihydrochloride.html","cefotiam dihydrochloride"],["antibacterial/cefotiam-hexetil-dihydrochloride.html","cefotiam hexetil dihydrochloride"],["antibacterial/cefotiam.html","cefotiam"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/cefozopran.html","cefozopran"],["antibacterial/cefpiramide.html","cefpiramide"],["antibacterial/cefpirome.html","cefpirome"],["antibacterial/cefpodoxime-proxetil.html","cefpodoxime proxetil"],["antibacterial/cefpodoxime.html","cefpodoxime"],["antibacterial/cefprozil.html","cefprozil"],["antibacterial/cefroxadine.html","cefroxadine"],["antibacterial/cefsulodin.html","cefsulodin"],["antibacterial/ceftaroline-fosamil-acetate-monohydrate.html","ceftaroline fosamil acetate monohydrate"],["antibacterial/ceftaroline-fosamil-acetate.html","ceftaroline fosamil acetate"],["antibacterial/ceftaroline-fosamil.html","ceftaroline fosamil"],["antibacterial/ceftaroline.html","ceftaroline"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/cefteram.html","cefteram"],["antibacterial/ceftezole.html","ceftezole"],["antibacterial/ceftibuten-dihydrate.html","ceftibuten dihydrate"],["antibacterial/ceftibuten.html","ceftibuten"],["antibacterial/ceftiofur.html","ceftiofur"],["antibacterial/ceftiolene.html","ceftiolene"],["antibacterial/ceftizoxime.html","ceftizoxime"],["antibacterial/ceftobiprole.html","ceftobiprole"],["antibacterial/ceftolozane.html","ceftolozane"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/cefuroxime.html","cefuroxime"],["antibacterial/cefuzonam.html","cefuzonam"],["antibacterial/celesticetin.html","celesticetin"],["antibacterial/cellocidin.html","cellocidin"],["antibacterial/cephalexin-monohydrate.html","cephalexin monohydrate"],["antibacterial/cephalexin.html","cephalexin"],["antibacterial/cephapirin-sodium.html","cephapirin sodium"],["antibacterial/cephapirin.html","cephapirin"],["antibacterial/cephradine.html","cephradine"],["antibacterial/cethromycin.html","cethromycin"],["antibacterial/chalcomycin.html","chalcomycin"],["antibacterial/chelerythrine.html","chelerythrine"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/chlorhexidine-acetate.html","chlorhexidine acetate"],["antibacterial/chlorhexidine-gluconate.html","chlorhexidine gluconate"],["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/chloroeremomycin.html","chloroeremomycin"],["antibacterial/chloroxine.html","chloroxine"],["antibacterial/chlorphenesin.html","chlorphenesin"],["antibacterial/chlorquinaldol.html","chlorquinaldol"],["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/cholesteryl-arachidonate.html","cholesteryl arachidonate"],["antibacterial/chuangxinmycin.html","(−)-chuangxinmycin"],["antibacterial/ciclopirox-olamine.html","ciclopirox olamine"],["antibacterial/ciclopirox.html","ciclopirox"],["antibacterial/cinoxacin.html","cinoxacin"],["antibacterial/ciprofloxacin-hydrochloride-anhydrous.html","ciprofloxacin hydrochloride (anhydrous)"],["antibacterial/ciprofloxacin-hydrochloride-hydrate.html","ciprofloxacin hydrochloride hydrate"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/cis-trans-nepetalactone.html","cis-trans-nepetalactone"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clavulanic-acid.html","clavulanic acid"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/clometocillin.html","clometocillin"],["antibacterial/clomocycline.html","clomocycline"],["antibacterial/cloxacillin.html","cloxacillin"],["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"],["antibacterial/conessine.html","conessine"],["antibacterial/cordycepin.html","cordycepin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/cremeomycin.html","cremeomycin"],["antibacterial/crystal-violet-cation.html","crystal violet cation"],["antibacterial/crystal-violet.html","crystal violet"],["antibacterial/cudraflavone-c.html","cudraflavone C"],["antibacterial/cyclacillin.html","cyclacillin"],["antibacterial/dalbavancin.html","dalbavancin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/dazomet.html","dazomet"],["antibacterial/decanoic-acid.html","decanoic acid"],["antibacterial/dehydroacetic-acid.html","dehydroacetic acid"],["antibacterial/delamanid.html","delamanid"],["antibacterial/demeclocycline-hydrochloride.html","demeclocycline hydrochloride"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/deoxyherqueinone.html","deoxyherqueinone"],["antibacterial/dextrofloxacin.html","dextrofloxacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/dichlorvos.html","dichlorvos"],["antibacterial/dicloxacillin.html","dicloxacillin"],["antibacterial/difloxacin.html","difloxacin"],["antibacterial/diflunisal.html","diflunisal"],["antibacterial/dihydroconiferyl-alcohol.html","dihydroconiferyl alcohol"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/dodecanoic-acid.html","dodecanoic acid"],["antibacterial/doripenem.html","doripenem"],["antibacterial/doxycycline-hyclate.html","doxycycline hyclate"],["antibacterial/doxycycline-monohydrate.html","doxycycline monohydrate"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/drummondin-d.html","drummondin D"],["antibacterial/drummondin-e.html","drummondin E"],["antibacterial/drummondin-f.html","drummondin F"],["antibacterial/durlobactam-sodium.html","durlobactam sodium"],["antibacterial/durlobactam.html","durlobactam"],["antibacterial/e-dodec-2-enal.html","(E)-dodec-2-enal"],["antibacterial/e-roxithromycin.html","(E)-roxithromycin"],["antibacterial/ebselen.html","ebselen"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/enrofloxacin.html","enrofloxacin"],["antibacterial/entrectinib.html","entrectinib"],["antibacterial/epicillin.html","epicillin"],["antibacterial/epidermin.html","epidermin"],["antibacterial/epithienamycin-e.html","epithienamycin E"],["antibacterial/equisetin.html","equisetin"],["antibacterial/erianin.html","erianin"],["antibacterial/ertapenem-sodium.html","ertapenem sodium"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/erybraedin-a.html","erybraedin A"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/ethyl-3-4-dihydroxybenzoate.html","ethyl 3,4-dihydroxybenzoate"],["antibacterial/ethyl-acetoacetate.html","ethyl acetoacetate"],["antibacterial/ethylzingerone.html","ethylzingerone"],["antibacterial/etimicin.html","etimicin"],["antibacterial/etrasimod.html","etrasimod"],["antibacterial/eugenol.html","eugenol"],["antibacterial/fenticonazole-nitrate.html","fenticonazole nitrate"],["antibacterial/ferruginol.html","ferruginol"],["antibacterial/fidaxomicin.html","fidaxomicin"],["antibacterial/finafloxacin.html","finafloxacin"],["antibacterial/fleroxacin.html","fleroxacin"],["antibacterial/flomoxef.html","flomoxef"],["antibacterial/florfenicol.html","florfenicol"],["antibacterial/flucloxacillin.html","flucloxacillin"],["antibacterial/fluopsin-c.html","fluopsin C"],["antibacterial/fluopsin.html","fluopsin"],["antibacterial/fluquinometoate.html","fluquinometoate"],["antibacterial/flurithromycin.html","flurithromycin"],["antibacterial/fonsecinone-a.html","fonsecinone A"],["antibacterial/formic-acid.html","formic acid"],["antibacterial/formicin.html","formicin"],["antibacterial/fosfomycin.html","fosfomycin"],["antibacterial/fosmidomycin.html","fosmidomycin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/fraxetin.html","fraxetin"],["antibacterial/fumagillin.html","fumagillin"],["antibacterial/furagin.html","furagin"],["antibacterial/furaltadone.html","furaltadone"],["antibacterial/furanomycin.html","furanomycin"],["antibacterial/furazolidone.html","furazolidone"],["antibacterial/fusidic-acid.html","fusidic acid"],["antibacterial/gallium-nitrate.html","gallium nitrate"],["antibacterial/gamithromycin.html","gamithromycin"],["antibacterial/gancaonin-i.html","gancaonin I"],["antibacterial/garenoxacin.html","garenoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/gemifloxacin.html","gemifloxacin"],["antibacterial/gentamicin-c.html","gentamicin C"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/geranylgeranyl-acetate.html","geranylgeranyl acetate"],["antibacterial/glycyrin.html","glycyrin"],["antibacterial/gramine.html","gramine"],["antibacterial/grandiflorenic-acid.html","grandiflorenic acid"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/griseofulvin.html","griseofulvin"],["antibacterial/halicin.html","halicin"],["antibacterial/halocarban.html","halocarban"]]} \ No newline at end of file +{"mech":"AntibioticMech","prefix":"CAS","base":"https://culturebotai.github.io/AntibioticMech/pages/","total":1797,"records":[["antibacterial/1-2-dodecanediol.html","1,2-dodecanediol"],["antibacterial/1-6-dihydroxy-2-methyl-9-10-anthraquinone.html","1,6-dihydroxy-2-methyl-9,10-anthraquinone"],["antibacterial/1-carbapenem-3-carboxylic-acid.html","1-carbapenem-3-carboxylic acid"],["antibacterial/1-dodecylguanidine-acetate.html","1-dodecylguanidine acetate"],["antibacterial/1-dodecylguanidine.html","1-dodecylguanidine"],["antibacterial/13r-epi-8-13-epoxylabd-14-ene.html","(13R)-epi-8,13-epoxylabd-14-ene"],["antibacterial/2-deoxystreptamine.html","2-deoxystreptamine"],["antibacterial/2-heptyl-4-hydroxyquinoline.html","2-heptyl-4-hydroxyquinoline"],["antibacterial/2e-hexenal.html","(2E)-hexenal"],["antibacterial/3-3-dimethylquercetin.html","3,3'-dimethylquercetin"],["antibacterial/3-6-9-trihydroxypterocarpan.html","3,6,9-trihydroxypterocarpan"],["antibacterial/3-6-diamino-10-methylacridinium-chloride-hcl.html","3,6-diamino-10-methylacridinium chloride.HCl"],["antibacterial/3-6-diamino-10-methylacridinium-chloride.html","3,6-diamino-10-methylacridinium chloride"],["antibacterial/3-6-diaminoacridine-dihydrochloride.html","3,6-diaminoacridine dihydrochloride"],["antibacterial/3-6-diaminoacridine-monohydrochloride.html","3,6-diaminoacridine monohydrochloride"],["antibacterial/3-6-diaminoacridine.html","3,6-diaminoacridine"],["antibacterial/3-hydroxy-4-methoxybenzoic-acid.html","3-hydroxy-4-methoxybenzoic acid"],["antibacterial/3-methylorsellinic-acid.html","3-methylorsellinic acid"],["antibacterial/3-phenylbutyric-acid.html","3-phenylbutyric acid"],["antibacterial/3-z-2-isocyanovinyl-indole.html","3-[(Z)-2-isocyanovinyl]indole"],["antibacterial/4-hydroxy-2-oxobutanal.html","4-hydroxy-2-oxobutanal"],["antibacterial/4-hydroxycordoin.html","4-hydroxycordoin"],["antibacterial/4-terpineol.html","4-terpineol"],["antibacterial/5-6-7-trimethoxycoumarin.html","5,6,7-trimethoxycoumarin"],["antibacterial/5-7-4-trihydroxy-6-8-diprenylisoflavone.html","5,7,4'-trihydroxy-6,8-diprenylisoflavone"],["antibacterial/5-chloro-7-iodoquinolin-8-ol.html","5-chloro-7-iodoquinolin-8-ol"],["antibacterial/5-methoxyindole-3-acetic-acid.html","5-methoxyindole-3-acetic acid"],["antibacterial/5-o-mycaminosyltylonolide.html","5-O-mycaminosyltylonolide"],["antibacterial/6-8-diprenylnaringenin.html","6,8-diprenylnaringenin"],["antibacterial/6-diazo-5-oxo-l-norleucine.html","6-diazo-5-oxo-L-norleucine"],["antibacterial/6-methoxy-2-benzoxazolinone.html","6-methoxy-2-benzoxazolinone"],["antibacterial/6-tuliposide-b.html","6-tuliposide B"],["antibacterial/7-3-aminopyrrolidin-1-yl-1-2-4-difluorophenyl-6-fluoro-4-oxo-1-4-dihyd.html","7-(3-aminopyrrolidin-1-yl)-1-(2,4-difluorophenyl)-6-fluoro-4-oxo-1,4-dihydro-1,8-naphthyridine-3-carboxylic acid"],["antibacterial/7-aminocholesterol.html","7-aminocholesterol"],["antibacterial/9-fluoro-5-methyl-1-oxo-6-7-dihydro-1h-5h-pyrido-3-2-1-ij-quinoline-2-.html","9-fluoro-5-methyl-1-oxo-6,7-dihydro-1H,5H-pyrido[3,2,1-ij]quinoline-2-carboxylic acid"],["antibacterial/9z-12z-15z-octadeca-9-12-15-trien-6-ynoic-acid.html","(9Z,12Z,15Z)-octadeca-9,12,15-trien-6-ynoic acid"],["antibacterial/9z-12z-15z-octadecatrien-1-ol.html","(9Z,12Z,15Z)-octadecatrien-1-ol"],["antibacterial/a47934.html","A47934"],["antibacterial/acteoside.html","acteoside"],["antibacterial/actinodaphnine.html","actinodaphnine"],["antibacterial/actinomycin-d.html","actinomycin D"],["antibacterial/afzelin.html","afzelin"],["antibacterial/albomycin-%CE%B41.html","albomycin δ1"],["antibacterial/alexidine.html","alexidine"],["antibacterial/allicin.html","allicin"],["antibacterial/allyl-alcohol.html","allyl alcohol"],["antibacterial/althiomycin.html","althiomycin"],["antibacterial/amikacin-disulfate.html","amikacin disulfate"],["antibacterial/amikacin.html","amikacin"],["antibacterial/amoxicillin-trihydrate.html","amoxicillin trihydrate"],["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/anacardic-acid.html","anacardic acid"],["antibacterial/anthramycin.html","anthramycin"],["antibacterial/apigenin-7-o-%CE%B2-d-glucoside.html","apigenin 7-O-β-D-glucoside"],["antibacterial/aplasmomycin.html","(+)-aplasmomycin"],["antibacterial/apramycin.html","apramycin"],["antibacterial/arasertaconazole.html","arasertaconazole"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/arjunolic-acid.html","arjunolic acid"],["antibacterial/arsphenamine.html","arsphenamine"],["antibacterial/asperlactone.html","asperlactone"],["antibacterial/aspoxicillin.html","aspoxicillin"],["antibacterial/aspyrone.html","aspyrone"],["antibacterial/astromicin.html","astromicin"],["antibacterial/asukamycin.html","asukamycin"],["antibacterial/atromentin.html","atromentin"],["antibacterial/aurachin-a.html","aurachin A"],["antibacterial/aurachin-c.html","aurachin C"],["antibacterial/aureothin.html","aureothin"],["antibacterial/aureothricin.html","aureothricin"],["antibacterial/avibactam-sodium.html","avibactam sodium"],["antibacterial/avibactam.html","avibactam"],["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/azidocillin.html","azidocillin"],["antibacterial/azithromycin.html","azithromycin"],["antibacterial/azlocillin.html","azlocillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/bacitracin-a.html","bacitracin A"],["antibacterial/baicalein.html","baicalein"],["antibacterial/baicalin.html","baicalin"],["antibacterial/balofloxacin.html","Balofloxacin"],["antibacterial/bay11-7085.html","BAY11-7085"],["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"],["antibacterial/benzethonium-chloride.html","benzethonium chloride"],["antibacterial/benzyl-isothiocyanate.html","benzyl isothiocyanate"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/biapenem.html","biapenem"],["antibacterial/bicozamycin.html","bicozamycin"],["antibacterial/bikaverin.html","bikaverin"],["antibacterial/bleomycin-a2.html","bleomycin A2"],["antibacterial/boromycin.html","boromycin"],["antibacterial/brazilin.html","brazilin"],["antibacterial/brefeldin-a.html","brefeldin A"],["antibacterial/brilliant-green.html","brilliant green"],["antibacterial/brodimoprim.html","brodimoprim"],["antibacterial/bromodeoxytopsentin.html","bromodeoxytopsentin"],["antibacterial/butirosin.html","butirosin"],["antibacterial/calcimycin.html","calcimycin"],["antibacterial/cannabichromenic-acid.html","cannabichromenic acid"],["antibacterial/cannabigerol.html","cannabigerol"],["antibacterial/cannabinolic-acid.html","cannabinolic acid"],["antibacterial/carbapenem-mm22383.html","carbapenem MM22383"],["antibacterial/carbenicillin.html","carbenicillin"],["antibacterial/carumonam.html","carumonam"],["antibacterial/cccp.html","CCCP"],["antibacterial/cefacetrile.html","cefacetrile"],["antibacterial/cefaclor.html","cefaclor"],["antibacterial/cefadroxil.html","cefadroxil"],["antibacterial/cefaloridine.html","cefaloridine"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefamandole-nafate.html","cefamandole nafate"],["antibacterial/cefamandole-sodium.html","cefamandole sodium"],["antibacterial/cefamandole.html","cefamandole"],["antibacterial/cefatrizine.html","cefatrizine"],["antibacterial/cefazedone.html","cefazedone"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefbuperazone.html","cefbuperazone"],["antibacterial/cefcapene.html","cefcapene"],["antibacterial/cefdaloxime.html","cefdaloxime"],["antibacterial/cefdinir.html","cefdinir"],["antibacterial/cefditoren-pivoxil.html","cefditoren pivoxil"],["antibacterial/cefditoren.html","cefditoren"],["antibacterial/cefepime-hydrochloride.html","cefepime hydrochloride"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/cefixime.html","cefixime"],["antibacterial/cefmenoxime.html","cefmenoxime"],["antibacterial/cefmetazole.html","cefmetazole"],["antibacterial/cefminox.html","cefminox"],["antibacterial/cefodizime.html","cefodizime"],["antibacterial/cefonicid.html","cefonicid"],["antibacterial/cefoperazone.html","cefoperazone"],["antibacterial/ceforanide.html","ceforanide"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/cefotetan-disodium.html","cefotetan disodium"],["antibacterial/cefotetan.html","cefotetan"],["antibacterial/cefotiam-dihydrochloride.html","cefotiam dihydrochloride"],["antibacterial/cefotiam-hexetil-dihydrochloride.html","cefotiam hexetil dihydrochloride"],["antibacterial/cefotiam.html","cefotiam"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/cefozopran.html","cefozopran"],["antibacterial/cefpiramide.html","cefpiramide"],["antibacterial/cefpirome.html","cefpirome"],["antibacterial/cefpodoxime-proxetil.html","cefpodoxime proxetil"],["antibacterial/cefpodoxime.html","cefpodoxime"],["antibacterial/cefprozil.html","cefprozil"],["antibacterial/cefroxadine.html","cefroxadine"],["antibacterial/cefsulodin.html","cefsulodin"],["antibacterial/ceftaroline-fosamil-acetate-monohydrate.html","ceftaroline fosamil acetate monohydrate"],["antibacterial/ceftaroline-fosamil-acetate.html","ceftaroline fosamil acetate"],["antibacterial/ceftaroline-fosamil.html","ceftaroline fosamil"],["antibacterial/ceftaroline.html","ceftaroline"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/cefteram.html","cefteram"],["antibacterial/ceftezole.html","ceftezole"],["antibacterial/ceftibuten-dihydrate.html","ceftibuten dihydrate"],["antibacterial/ceftibuten.html","ceftibuten"],["antibacterial/ceftiofur.html","ceftiofur"],["antibacterial/ceftiolene.html","ceftiolene"],["antibacterial/ceftizoxime.html","ceftizoxime"],["antibacterial/ceftobiprole.html","ceftobiprole"],["antibacterial/ceftolozane.html","ceftolozane"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/cefuroxime.html","cefuroxime"],["antibacterial/cefuzonam.html","cefuzonam"],["antibacterial/celesticetin.html","celesticetin"],["antibacterial/cellocidin.html","cellocidin"],["antibacterial/cephalexin-monohydrate.html","cephalexin monohydrate"],["antibacterial/cephalexin.html","cephalexin"],["antibacterial/cephapirin-sodium.html","cephapirin sodium"],["antibacterial/cephapirin.html","cephapirin"],["antibacterial/cephradine.html","cephradine"],["antibacterial/cethromycin.html","cethromycin"],["antibacterial/chalcomycin.html","chalcomycin"],["antibacterial/chelerythrine.html","chelerythrine"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/chlorhexidine-acetate.html","chlorhexidine acetate"],["antibacterial/chlorhexidine-gluconate.html","chlorhexidine gluconate"],["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/chloroeremomycin.html","chloroeremomycin"],["antibacterial/chloroxine.html","chloroxine"],["antibacterial/chlorphenesin.html","chlorphenesin"],["antibacterial/chlorquinaldol.html","chlorquinaldol"],["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/cholesteryl-arachidonate.html","cholesteryl arachidonate"],["antibacterial/chuangxinmycin.html","(−)-chuangxinmycin"],["antibacterial/ciclopirox-olamine.html","ciclopirox olamine"],["antibacterial/ciclopirox.html","ciclopirox"],["antibacterial/cinoxacin.html","cinoxacin"],["antibacterial/ciprofloxacin-hydrochloride-anhydrous.html","ciprofloxacin hydrochloride (anhydrous)"],["antibacterial/ciprofloxacin-hydrochloride-hydrate.html","ciprofloxacin hydrochloride hydrate"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/cis-trans-nepetalactone.html","cis-trans-nepetalactone"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clavulanic-acid.html","clavulanic acid"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/clometocillin.html","clometocillin"],["antibacterial/clomocycline.html","clomocycline"],["antibacterial/cloxacillin.html","cloxacillin"],["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"],["antibacterial/conessine.html","conessine"],["antibacterial/cordycepin.html","cordycepin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/cremeomycin.html","cremeomycin"],["antibacterial/crystal-violet-cation.html","crystal violet cation"],["antibacterial/crystal-violet.html","crystal violet"],["antibacterial/cudraflavone-c.html","cudraflavone C"],["antibacterial/cyclacillin.html","cyclacillin"],["antibacterial/dalbavancin.html","dalbavancin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/dazomet.html","dazomet"],["antibacterial/decanoic-acid.html","decanoic acid"],["antibacterial/dehydroacetic-acid.html","dehydroacetic acid"],["antibacterial/delamanid.html","delamanid"],["antibacterial/demeclocycline-hydrochloride.html","demeclocycline hydrochloride"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/deoxyherqueinone.html","deoxyherqueinone"],["antibacterial/dextrofloxacin.html","dextrofloxacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/dichlorvos.html","dichlorvos"],["antibacterial/dicloxacillin.html","dicloxacillin"],["antibacterial/difloxacin.html","difloxacin"],["antibacterial/diflunisal.html","diflunisal"],["antibacterial/dihydroconiferyl-alcohol.html","dihydroconiferyl alcohol"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/dodecanoic-acid.html","dodecanoic acid"],["antibacterial/doripenem.html","doripenem"],["antibacterial/doxycycline-hyclate.html","doxycycline hyclate"],["antibacterial/doxycycline-monohydrate.html","doxycycline monohydrate"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/drummondin-d.html","drummondin D"],["antibacterial/drummondin-e.html","drummondin E"],["antibacterial/drummondin-f.html","drummondin F"],["antibacterial/durlobactam-sodium.html","durlobactam sodium"],["antibacterial/durlobactam.html","durlobactam"],["antibacterial/e-dodec-2-enal.html","(E)-dodec-2-enal"],["antibacterial/e-roxithromycin.html","(E)-roxithromycin"],["antibacterial/ebselen.html","ebselen"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/enrofloxacin.html","enrofloxacin"],["antibacterial/entrectinib.html","entrectinib"],["antibacterial/epicillin.html","epicillin"],["antibacterial/epidermin.html","epidermin"],["antibacterial/epithienamycin-e.html","epithienamycin E"],["antibacterial/equisetin.html","equisetin"],["antibacterial/erianin.html","erianin"],["antibacterial/ertapenem-sodium.html","ertapenem sodium"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/erybraedin-a.html","erybraedin A"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/ethyl-3-4-dihydroxybenzoate.html","ethyl 3,4-dihydroxybenzoate"],["antibacterial/ethyl-acetoacetate.html","ethyl acetoacetate"],["antibacterial/ethylzingerone.html","ethylzingerone"],["antibacterial/etimicin.html","etimicin"],["antibacterial/etrasimod.html","etrasimod"],["antibacterial/eugenol.html","eugenol"],["antibacterial/fenticonazole-nitrate.html","fenticonazole nitrate"],["antibacterial/ferruginol.html","ferruginol"],["antibacterial/fidaxomicin.html","fidaxomicin"],["antibacterial/finafloxacin.html","finafloxacin"],["antibacterial/fleroxacin.html","fleroxacin"],["antibacterial/flomoxef.html","flomoxef"],["antibacterial/florfenicol.html","florfenicol"],["antibacterial/flucloxacillin.html","flucloxacillin"],["antibacterial/fluopsin-c.html","fluopsin C"],["antibacterial/fluopsin.html","fluopsin"],["antibacterial/fluquinometoate.html","fluquinometoate"],["antibacterial/flurithromycin.html","flurithromycin"],["antibacterial/fonsecinone-a.html","fonsecinone A"],["antibacterial/formic-acid.html","formic acid"],["antibacterial/formicin.html","formicin"],["antibacterial/fosfomycin.html","fosfomycin"],["antibacterial/fosmidomycin.html","fosmidomycin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/fraxetin.html","fraxetin"],["antibacterial/fumagillin.html","fumagillin"],["antibacterial/furagin.html","furagin"],["antibacterial/furaltadone.html","furaltadone"],["antibacterial/furanomycin.html","furanomycin"],["antibacterial/furazolidone.html","furazolidone"],["antibacterial/fusidic-acid.html","fusidic acid"],["antibacterial/gallium-nitrate.html","gallium nitrate"],["antibacterial/gamithromycin.html","gamithromycin"],["antibacterial/gancaonin-i.html","gancaonin I"],["antibacterial/garenoxacin.html","garenoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/gemifloxacin.html","gemifloxacin"],["antibacterial/gentamicin-c.html","gentamicin C"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/geranylgeranyl-acetate.html","geranylgeranyl acetate"],["antibacterial/glycyrin.html","glycyrin"],["antibacterial/gramine.html","gramine"],["antibacterial/grandiflorenic-acid.html","grandiflorenic acid"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/griseofulvin.html","griseofulvin"],["antibacterial/halicin.html","halicin"],["antibacterial/halocarban.html","halocarban"]]} \ No newline at end of file diff --git a/assets/fleet/cells/AntibioticMech--CHEBI.json b/assets/fleet/cells/AntibioticMech--CHEBI.json index 60ec6f7..1493ded 100644 --- a/assets/fleet/cells/AntibioticMech--CHEBI.json +++ b/assets/fleet/cells/AntibioticMech--CHEBI.json @@ -1 +1 @@ -{"mech":"AntibioticMech","prefix":"CHEBI","base":"https://culturebotai.github.io/AntibioticMech/pages/","total":2814,"records":[["antibacterial/1-2-dodecanediol.html","1,2-dodecanediol"],["antibacterial/1-6-dihydroxy-2-methyl-9-10-anthraquinone.html","1,6-dihydroxy-2-methyl-9,10-anthraquinone"],["antibacterial/1-carbapenem-3-carboxylic-acid.html","1-carbapenem-3-carboxylic acid"],["antibacterial/1-dodecylguanidine-acetate.html","1-dodecylguanidine acetate"],["antibacterial/1-dodecylguanidine.html","1-dodecylguanidine"],["antibacterial/1-hydroxycrisamicin-a.html","1-hydroxycrisamicin A"],["antibacterial/11%CE%B1-hydroxyasiatic-acid.html","11α-hydroxyasiatic acid"],["antibacterial/13r-epi-8-13-epoxylabd-14-ene.html","(13R)-epi-8,13-epoxylabd-14-ene"],["antibacterial/14-norpseurotin-a.html","14-norpseurotin A"],["antibacterial/1%CE%B2-methylcarbapenem.html","1β-methylcarbapenem"],["antibacterial/2-2-3-3-tetrahydroxy-2-3-dihydronaphthalene-1-4-dione.html","2,2,3,3-tetrahydroxy-2,3-dihydronaphthalene-1,4-dione"],["antibacterial/2-4-diamino-6-7-diisopropylpteridine.html","2,4-diamino-6,7-diisopropylpteridine"],["antibacterial/2-4-dihydroxy-3-2-hydroxy-benzyl-6-methoxy-chalcone.html","2',4'-dihydroxy-3'-(2-hydroxy benzyl)-6'-methoxy chalcone"],["antibacterial/2-4-dihydroxy-3-methyl-6-2-oxopropyl-benzaldehyde.html","2,4-dihydroxy-3-methyl-6-(2-oxopropyl)benzaldehyde"],["antibacterial/2-5-dihydroxy-3-methanesulfinylbenzyl-alcohol.html","2,5-dihydroxy-3-methanesulfinylbenzyl alcohol"],["antibacterial/2-deoxystreptamine.html","2-deoxystreptamine"],["antibacterial/2-heptyl-4-hydroxyquinoline.html","2-heptyl-4-hydroxyquinoline"],["antibacterial/2-heptyl-4-quinolone.html","2-heptyl-4-quinolone"],["antibacterial/2-methyldithio-pyridine-n-oxide.html","2-(methyldithio)pyridine-N-oxide"],["antibacterial/2e-6z-13-hydroxy-1-2-hydroxy-5-methoxy-3-methylphenyl-3-7-11-15-tetram.html","(2E,6Z)-13-hydroxy-1-(2-hydroxy-5-methoxy-3-methylphenyl)-3,7,11,15-tetramethylhexadeca-2,6,14-triene-5,12-dione"],["antibacterial/2e-hexenal.html","(2E)-hexenal"],["antibacterial/3-1s-2s-6s-2-2-1s-2r-3r-2-3-ethoxy-3-oxopropyl-3-2-hydroxypropan-2-yl-.html","3-[(1S,2S,6S)-2-{2-[(1S,2R,3R)-2-(3-ethoxy-3-oxopropyl)-3-(2-hydroxypropan-2-yl)-2-methyl-6-methylidenecyclohexyl]ethyl}-1,3-dimethyl-6-(prop-1-en-2-yl)cyclohex-3-en-1-yl]propanoic"],["antibacterial/3-3-dimethylquercetin.html","3,3'-dimethylquercetin"],["antibacterial/3-4-secoisopimara-4-18-7-15-triene-3-oic-acid.html","3,4-secoisopimara-4(18),7,15-triene-3-oic acid"],["antibacterial/3-5-di-o-acetyl-1-o-5%CE%B2-8%CE%B1-9%CE%B2-10%CE%B1-18-oxokaur-16-en-18-yl-%CE%B2-l-arabinofur.html","3,5-di-O-acetyl-1-O-[(5β,8α,9β,10α)-18-oxokaur-16-en-18-yl]-β-L-arabinofuranose"],["antibacterial/3-6-9-trihydroxypterocarpan.html","3,6,9-trihydroxypterocarpan"],["antibacterial/3-6-diamino-10-methylacridinium-chloride-hcl.html","3,6-diamino-10-methylacridinium chloride.HCl"],["antibacterial/3-6-diamino-10-methylacridinium-chloride.html","3,6-diamino-10-methylacridinium chloride"],["antibacterial/3-6-diaminoacridine-dihydrochloride.html","3,6-diaminoacridine dihydrochloride"],["antibacterial/3-6-diaminoacridine-monohydrochloride.html","3,6-diaminoacridine monohydrochloride"],["antibacterial/3-6-diaminoacridine.html","3,6-diaminoacridine"],["antibacterial/3-hydroxy-4-methoxybenzoic-acid.html","3-hydroxy-4-methoxybenzoic acid"],["antibacterial/3-methylarginine.html","3-methylarginine"],["antibacterial/3-methylorsellinic-acid.html","3-methylorsellinic acid"],["antibacterial/3-o-%CE%B2-d-glucopyranosyl-28-o-%CE%B1-l-rhamnopyranosyl-12-%CE%B2-d-glucopyranosyl--68378.html","3-O-[β-D-glucopyranosyl]-28-O-[α-L-rhamnopyranosyl-(1→2)-β-D-glucopyranosyl]arjunolic"],["antibacterial/3-o-%CE%B2-d-glucopyranosyl-28-o-%CE%B1-l-rhamnopyranosyl-12-%CE%B2-d-glucopyranosyl-.html","3-O-[β-D-glucopyranosyl]-28-O-[α-L-rhamnopyranosyl-(1→2)-β-D-glucopyranosyl]maslinic"],["antibacterial/3-phenethylamino-butan-2-one.html","3-(phenethylamino)-butan-2-one"],["antibacterial/3-phenylbutyric-acid.html","3-phenylbutyric acid"],["antibacterial/3-z-2-isocyanovinyl-indole.html","3-[(Z)-2-isocyanovinyl]indole"],["antibacterial/3z-ravenic-acid.html","(3Z)-ravenic acid"],["antibacterial/4-3-4-5-tribromo-1h-pyrrol-2-yl-methyl-phenol.html","4-[(3,4,5-tribromo-1H-pyrrol-2-yl)methyl]phenol"],["antibacterial/4-hydroxy-2-oxobutanal.html","4-hydroxy-2-oxobutanal"],["antibacterial/4-hydroxycordoin.html","4-hydroxycordoin"],["antibacterial/4-terpineol.html","4-terpineol"],["antibacterial/5-6-7-trimethoxycoumarin.html","5,6,7-trimethoxycoumarin"],["antibacterial/5-7-4-trihydroxy-6-8-diprenylisoflavone.html","5,7,4'-trihydroxy-6,8-diprenylisoflavone"],["antibacterial/5-bromo-8-methoxy-1-methyl-%CE%B2-carboline.html","5-bromo-8-methoxy-1-methyl-β-carboline"],["antibacterial/5-chloro-7-iodoquinolin-8-ol.html","5-chloro-7-iodoquinolin-8-ol"],["antibacterial/5-hydroxy-7-2-4-5-tetramethoxyflavone.html","5-hydroxy-7,2',4',5'-tetramethoxyflavone"],["antibacterial/5-indanol.html","5-indanol"],["antibacterial/5-methoxyindole-3-acetic-acid.html","5-methoxyindole-3-acetic acid"],["antibacterial/5-o-mycaminosyltylonolide.html","5-O-mycaminosyltylonolide"],["antibacterial/5e-7-oxozeaenol.html","5E-7-oxozeaenol"],["antibacterial/5z-7-oxozeaenol.html","5Z-7-oxozeaenol"],["antibacterial/5%CE%B1-cholesta-24-en-3%CE%B2-20%CE%B2-diol-23-one.html","5α-cholesta-24-en-3β,20β-diol-23-one"],["antibacterial/5%CE%B1-cholesta-9-11-en-3%CE%B2-20%CE%B2-diol.html","5α-cholesta-9(11)-en-3β, 20β-diol"],["antibacterial/6-8-diprenylnaringenin.html","6,8-diprenylnaringenin"],["antibacterial/6-diazo-5-oxo-l-norleucine.html","6-diazo-5-oxo-L-norleucine"],["antibacterial/6-methoxy-2-benzoxazolinone.html","6-methoxy-2-benzoxazolinone"],["antibacterial/6-tuliposide-b.html","6-tuliposide B"],["antibacterial/6%CE%B1-malonyloxymanoyl-oxide.html","6α-malonyloxymanoyl oxide"],["antibacterial/6%CE%B2-16%CE%B2-diacetoxy-25-hydroxy-3-7-dioxy-29-nordammara-1-17-20-dien-21-oi.html","6β,16β-diacetoxy-25-hydroxy-3,7-dioxy-29-nordammara-1,17(20)-dien-21-oic acid"],["antibacterial/7-3-aminopyrrolidin-1-yl-1-2-4-difluorophenyl-6-fluoro-4-oxo-1-4-dihyd.html","7-(3-aminopyrrolidin-1-yl)-1-(2,4-difluorophenyl)-6-fluoro-4-oxo-1,4-dihydro-1,8-naphthyridine-3-carboxylic"],["antibacterial/7-aminocholesterol.html","7-aminocholesterol"],["antibacterial/7-epiclusianone.html","7-epiclusianone"],["antibacterial/7-hydroxy-5-hydroxymethyl-2h-benzo-1-4-thiazin-3-one.html","7-hydroxy-5-hydroxymethyl-2H-benzo[1,4]thiazin-3-one"],["antibacterial/9-fluoro-5-methyl-1-oxo-6-7-dihydro-1h-5h-pyrido-3-2-1-ij-quinoline-2-.html","9-fluoro-5-methyl-1-oxo-6,7-dihydro-1H,5H-pyrido[3,2,1-ij]quinoline-2-carboxylic"],["antibacterial/9z-12z-15z-octadeca-9-12-15-trien-6-ynoic-acid.html","(9Z,12Z,15Z)-octadeca-9,12,15-trien-6-ynoic acid"],["antibacterial/9z-12z-15z-octadecatrien-1-ol.html","(9Z,12Z,15Z)-octadecatrien-1-ol"],["antibacterial/a201a.html","A201A"],["antibacterial/a47934.html","A47934"],["antibacterial/abaucin.html","Abaucin"],["antibacterial/acteoside.html","acteoside"],["antibacterial/actinodaphnine.html","actinodaphnine"],["antibacterial/actinomycin-d.html","actinomycin D"],["antibacterial/afn-1252.html","AFN-1252"],["antibacterial/afzelin.html","afzelin"],["antibacterial/albicidin.html","albicidin"],["antibacterial/albomycin-%CE%B41.html","albomycin δ1"],["antibacterial/albomycin-%CE%B42.html","albomycin δ2"],["antibacterial/albomycin-%CE%B5.html","albomycin ε"],["antibacterial/alexidine.html","alexidine"],["antibacterial/allicin.html","allicin"],["antibacterial/allyl-alcohol.html","allyl alcohol"],["antibacterial/althiomycin.html","althiomycin"],["antibacterial/ambiguine-h.html","ambiguine H"],["antibacterial/ambiguine-i.html","ambiguine I"],["antibacterial/amikacin-disulfate.html","amikacin disulfate"],["antibacterial/amikacin.html","amikacin"],["antibacterial/amoxicillin-trihydrate.html","amoxicillin trihydrate"],["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/amythiamicin-a.html","amythiamicin A"],["antibacterial/anacardic-acid.html","anacardic acid"],["antibacterial/anthramycin.html","anthramycin"],["antibacterial/apigenin-7-o-%CE%B2-d-glucoside-1.html","apigenin 7-O-β-D-glucoside(1−)"],["antibacterial/apigenin-7-o-%CE%B2-d-glucoside.html","apigenin 7-O-β-D-glucoside"],["antibacterial/aplasmomycin.html","(+)-aplasmomycin"],["antibacterial/apramycin.html","apramycin"],["antibacterial/arasertaconazole.html","arasertaconazole"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/arborcandin-c.html","arborcandin C"],["antibacterial/arjunolic-acid.html","arjunolic acid"],["antibacterial/arsinothricin.html","arsinothricin"],["antibacterial/arsphenamine.html","arsphenamine"],["antibacterial/arugosin-b.html","arugosin B"],["antibacterial/asperlactone.html","asperlactone"],["antibacterial/asphodelin-a-4-o-%CE%B2-glucoside.html","asphodelin A-4'-O-β-glucoside"],["antibacterial/asphodelin-a.html","asphodelin A"],["antibacterial/aspoxicillin.html","aspoxicillin"],["antibacterial/aspyrone.html","aspyrone"],["antibacterial/astromicin.html","astromicin"],["antibacterial/asukamycin.html","asukamycin"],["antibacterial/atromentin.html","atromentin"],["antibacterial/aurachin-a.html","aurachin A"],["antibacterial/aurachin-c.html","aurachin C"],["antibacterial/aureoquinone.html","aureoquinone"],["antibacterial/aureothin.html","aureothin"],["antibacterial/aureothricin.html","aureothricin"],["antibacterial/aurodox.html","aurodox"],["antibacterial/avibactam-sodium.html","avibactam sodium"],["antibacterial/avibactam.html","avibactam"],["antibacterial/avoparcin.html","avoparcin"],["antibacterial/azamulin.html","azamulin"],["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/azidocillin.html","azidocillin"],["antibacterial/azithromycin.html","azithromycin"],["antibacterial/azlocillin.html","azlocillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/bacillaene.html","bacillaene"],["antibacterial/bacilysocin.html","bacilysocin"],["antibacterial/bacitracin-a.html","bacitracin A"],["antibacterial/baicalein.html","baicalein"],["antibacterial/baicalin.html","baicalin"],["antibacterial/balofloxacin.html","Balofloxacin"],["antibacterial/bay11-7085.html","BAY11-7085"],["antibacterial/be-24566b.html","BE-24566B"],["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"],["antibacterial/benzethonium-chloride.html","benzethonium chloride"],["antibacterial/benzyl-isothiocyanate.html","benzyl isothiocyanate"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/biapenem.html","biapenem"],["antibacterial/bicozamycin.html","bicozamycin"],["antibacterial/bikaverin.html","bikaverin"],["antibacterial/bleomycin-a2.html","bleomycin A2"],["antibacterial/bleomycin.html","bleomycin"],["antibacterial/boromycin.html","boromycin"],["antibacterial/brasiliquinone-a.html","brasiliquinone A"],["antibacterial/brasiliquinone-b.html","brasiliquinone B"],["antibacterial/brasiliquinone-c.html","brasiliquinone C"],["antibacterial/brazilein.html","brazilein"],["antibacterial/brazilin.html","brazilin"],["antibacterial/brefeldin-a.html","brefeldin A"],["antibacterial/brilliant-green-cation.html","brilliant green cation"],["antibacterial/brilliant-green.html","brilliant green"],["antibacterial/brodimoprim.html","brodimoprim"],["antibacterial/bromodeoxytopsentin.html","bromodeoxytopsentin"],["antibacterial/bromophycolide-a.html","bromophycolide A"],["antibacterial/butirosin.html","butirosin"],["antibacterial/butremycin.html","butremycin"],["antibacterial/cadaside-a.html","cadaside A"],["antibacterial/cadaside-b.html","cadaside B"],["antibacterial/calcimycin.html","calcimycin"],["antibacterial/callophycoic-acid-a.html","callophycoic acid A"],["antibacterial/callophycoic-acid-b.html","callophycoic acid B"],["antibacterial/callophycoic-acid-c.html","callophycoic acid C"],["antibacterial/callophycoic-acid-d.html","callophycoic acid D"],["antibacterial/callophycoic-acid-e.html","callophycoic acid E"],["antibacterial/callophycoic-acid-f.html","callophycoic acid F"],["antibacterial/callophycoic-acid-g.html","callophycoic acid G"],["antibacterial/callophycoic-acid-h.html","callophycoic acid H"],["antibacterial/callophycol-a.html","callophycol A"],["antibacterial/callophycol-b.html","callophycol B"],["antibacterial/caminoside-a.html","caminoside A"],["antibacterial/cannabichromenic-acid.html","cannabichromenic acid"],["antibacterial/cannabigerol.html","cannabigerol"],["antibacterial/cannabinolic-acid.html","cannabinolic acid"],["antibacterial/canophyllal.html","canophyllal"],["antibacterial/carbapenem-mm22383.html","carbapenem MM22383"],["antibacterial/carbapenem.html","carbapenem"],["antibacterial/carbenicillin.html","carbenicillin"],["antibacterial/carumonam.html","carumonam"],["antibacterial/cccp.html","CCCP"],["antibacterial/cdk9-in-2.html","CDK9-IN-2"],["antibacterial/cefacetrile.html","cefacetrile"],["antibacterial/cefaclor.html","cefaclor"],["antibacterial/cefadroxil.html","cefadroxil"],["antibacterial/cefaloram.html","cefaloram"],["antibacterial/cefaloridine.html","cefaloridine"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefamandole-nafate.html","cefamandole nafate"],["antibacterial/cefamandole-sodium.html","cefamandole sodium"],["antibacterial/cefamandole.html","cefamandole"],["antibacterial/cefatrizine.html","cefatrizine"],["antibacterial/cefazedone.html","cefazedone"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefbuperazone.html","cefbuperazone"],["antibacterial/cefcapene.html","cefcapene"],["antibacterial/cefdaloxime.html","cefdaloxime"],["antibacterial/cefdinir.html","cefdinir"],["antibacterial/cefditoren-pivoxil.html","cefditoren pivoxil"],["antibacterial/cefditoren.html","cefditoren"],["antibacterial/cefepime-hydrochloride.html","cefepime hydrochloride"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefetamet.html","cefetamet"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/cefixime.html","cefixime"],["antibacterial/cefmenoxime.html","cefmenoxime"],["antibacterial/cefmetazole.html","cefmetazole"],["antibacterial/cefminox.html","cefminox"],["antibacterial/cefodizime.html","cefodizime"],["antibacterial/cefonicid.html","cefonicid"],["antibacterial/cefoperazone.html","cefoperazone"],["antibacterial/ceforanide.html","ceforanide"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/cefotetan-disodium.html","cefotetan disodium"],["antibacterial/cefotetan.html","cefotetan"],["antibacterial/cefotiam-dihydrochloride.html","cefotiam dihydrochloride"],["antibacterial/cefotiam-hexetil-dihydrochloride.html","cefotiam hexetil dihydrochloride"],["antibacterial/cefotiam.html","cefotiam"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/cefozopran.html","cefozopran"],["antibacterial/cefpiramide.html","cefpiramide"],["antibacterial/cefpirome.html","cefpirome"],["antibacterial/cefpodoxime-proxetil.html","cefpodoxime proxetil"],["antibacterial/cefpodoxime.html","cefpodoxime"],["antibacterial/cefprozil.html","cefprozil"],["antibacterial/cefroxadine.html","cefroxadine"],["antibacterial/cefsulodin.html","cefsulodin"],["antibacterial/ceftaroline-fosamil-acetate-monohydrate.html","ceftaroline fosamil acetate monohydrate"],["antibacterial/ceftaroline-fosamil-acetate.html","ceftaroline fosamil acetate"],["antibacterial/ceftaroline-fosamil.html","ceftaroline fosamil"],["antibacterial/ceftaroline.html","ceftaroline"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/cefteram.html","cefteram"],["antibacterial/ceftezole.html","ceftezole"],["antibacterial/ceftibuten-dihydrate.html","ceftibuten dihydrate"],["antibacterial/ceftibuten.html","ceftibuten"],["antibacterial/ceftiofur.html","ceftiofur"],["antibacterial/ceftiolene.html","ceftiolene"],["antibacterial/ceftizoxime.html","ceftizoxime"],["antibacterial/ceftobiprole.html","ceftobiprole"],["antibacterial/ceftolozane.html","ceftolozane"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/cefuroxime.html","cefuroxime"],["antibacterial/cefuzonam.html","cefuzonam"],["antibacterial/celesticetin.html","celesticetin"],["antibacterial/cellocidin.html","cellocidin"],["antibacterial/cephalexin-monohydrate.html","cephalexin monohydrate"],["antibacterial/cephalexin.html","cephalexin"],["antibacterial/cephapirin-sodium.html","cephapirin sodium"],["antibacterial/cephapirin.html","cephapirin"],["antibacterial/cephradine.html","cephradine"],["antibacterial/cervimycin-a.html","cervimycin A"],["antibacterial/cervimycin-b.html","cervimycin B"],["antibacterial/cervimycin-c.html","cervimycin C"],["antibacterial/cervimycin-d.html","cervimycin D"],["antibacterial/cethromycin.html","cethromycin"],["antibacterial/cezomycin.html","cezomycin"],["antibacterial/chaetoglocin-a.html","chaetoglocin A"],["antibacterial/chaetoglocin-b.html","chaetoglocin B"],["antibacterial/chalcomycin.html","chalcomycin"],["antibacterial/chelerythrine.html","chelerythrine"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/chlorhexidine-acetate.html","chlorhexidine acetate"],["antibacterial/chlorhexidine-gluconate.html","chlorhexidine gluconate"],["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/chloroeremomycin.html","chloroeremomycin"],["antibacterial/chloroxine.html","chloroxine"],["antibacterial/chlorphenesin.html","chlorphenesin"],["antibacterial/chlorquinaldol.html","chlorquinaldol"],["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/cholesteryl-arachidonate.html","cholesteryl arachidonate"],["antibacterial/chrysomycin-a.html","chrysomycin A"],["antibacterial/chuangxinmycin.html","(−)-chuangxinmycin"],["antibacterial/ciclopirox-olamine.html","ciclopirox olamine"],["antibacterial/ciclopirox.html","ciclopirox"],["antibacterial/cinoxacin.html","cinoxacin"],["antibacterial/ciprofloxacin-dihydrochloride.html","ciprofloxacin dihydrochloride"],["antibacterial/ciprofloxacin-hydrochloride-anhydrous.html","ciprofloxacin hydrochloride (anhydrous)"],["antibacterial/ciprofloxacin-hydrochloride-hydrate.html","ciprofloxacin hydrochloride hydrate"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/cis-trans-nepetalactone.html","cis-trans-nepetalactone"],["antibacterial/cladribine.html","Cladribine"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clavulanic-acid.html","clavulanic acid"],["antibacterial/clerocidin.html","clerocidin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/clometocillin.html","clometocillin"],["antibacterial/clomocycline.html","clomocycline"],["antibacterial/cloxacillin.html","cloxacillin"],["antibacterial/colistimethate-a.html","colistimethate A"],["antibacterial/colistimethate-b.html","colistimethate B"],["antibacterial/colistin-a-sodium-methanesulfonate.html","colistin A sodium methanesulfonate"],["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b-sodium-methanesulfonate.html","colistin B sodium methanesulfonate"],["antibacterial/colistin-b.html","colistin B"],["antibacterial/comazaphilone-c.html","comazaphilone C"],["antibacterial/comazaphilone-d.html","comazaphilone D"],["antibacterial/comazaphilone-e.html","comazaphilone E"]]} \ No newline at end of file +{"mech":"AntibioticMech","prefix":"CHEBI","base":"https://culturebotai.github.io/AntibioticMech/pages/","total":2814,"records":[["antibacterial/1-2-dodecanediol.html","1,2-dodecanediol"],["antibacterial/1-6-dihydroxy-2-methyl-9-10-anthraquinone.html","1,6-dihydroxy-2-methyl-9,10-anthraquinone"],["antibacterial/1-carbapenem-3-carboxylic-acid.html","1-carbapenem-3-carboxylic acid"],["antibacterial/1-dodecylguanidine-acetate.html","1-dodecylguanidine acetate"],["antibacterial/1-dodecylguanidine.html","1-dodecylguanidine"],["antibacterial/1-hydroxycrisamicin-a.html","1-hydroxycrisamicin A"],["antibacterial/11%CE%B1-hydroxyasiatic-acid.html","11α-hydroxyasiatic acid"],["antibacterial/13r-epi-8-13-epoxylabd-14-ene.html","(13R)-epi-8,13-epoxylabd-14-ene"],["antibacterial/14-norpseurotin-a.html","14-norpseurotin A"],["antibacterial/1%CE%B2-methylcarbapenem.html","1β-methylcarbapenem"],["antibacterial/2-2-3-3-tetrahydroxy-2-3-dihydronaphthalene-1-4-dione.html","2,2,3,3-tetrahydroxy-2,3-dihydronaphthalene-1,4-dione"],["antibacterial/2-4-diamino-6-7-diisopropylpteridine.html","2,4-diamino-6,7-diisopropylpteridine"],["antibacterial/2-4-dihydroxy-3-2-hydroxy-benzyl-6-methoxy-chalcone.html","2',4'-dihydroxy-3'-(2-hydroxy benzyl)-6'-methoxy chalcone"],["antibacterial/2-4-dihydroxy-3-methyl-6-2-oxopropyl-benzaldehyde.html","2,4-dihydroxy-3-methyl-6-(2-oxopropyl)benzaldehyde"],["antibacterial/2-5-dihydroxy-3-methanesulfinylbenzyl-alcohol.html","2,5-dihydroxy-3-methanesulfinylbenzyl alcohol"],["antibacterial/2-deoxystreptamine.html","2-deoxystreptamine"],["antibacterial/2-heptyl-4-hydroxyquinoline.html","2-heptyl-4-hydroxyquinoline"],["antibacterial/2-heptyl-4-quinolone.html","2-heptyl-4-quinolone"],["antibacterial/2-methyldithio-pyridine-n-oxide.html","2-(methyldithio)pyridine-N-oxide"],["antibacterial/2e-6z-13-hydroxy-1-2-hydroxy-5-methoxy-3-methylphenyl-3-7-11-15-tetram.html","(2E,6Z)-13-hydroxy-1-(2-hydroxy-5-methoxy-3-methylphenyl)-3,7,11,15-tetramethylhexadeca-2,6,14-triene-5,12-dione"],["antibacterial/2e-hexenal.html","(2E)-hexenal"],["antibacterial/3-1s-2s-6s-2-2-1s-2r-3r-2-3-ethoxy-3-oxopropyl-3-2-hydroxypropan-2-yl-.html","3-[(1S,2S,6S)-2-{2-[(1S,2R,3R)-2-(3-ethoxy-3-oxopropyl)-3-(2-hydroxypropan-2-yl)-2-methyl-6-methylidenecyclohexyl]ethyl}-1,3-dimethyl-6-(prop-1-en-2-yl)cyclohex-3-en-1-yl]propanoic acid"],["antibacterial/3-3-dimethylquercetin.html","3,3'-dimethylquercetin"],["antibacterial/3-4-secoisopimara-4-18-7-15-triene-3-oic-acid.html","3,4-secoisopimara-4(18),7,15-triene-3-oic acid"],["antibacterial/3-5-di-o-acetyl-1-o-5%CE%B2-8%CE%B1-9%CE%B2-10%CE%B1-18-oxokaur-16-en-18-yl-%CE%B2-l-arabinofur.html","3,5-di-O-acetyl-1-O-[(5β,8α,9β,10α)-18-oxokaur-16-en-18-yl]-β-L-arabinofuranose"],["antibacterial/3-6-9-trihydroxypterocarpan.html","3,6,9-trihydroxypterocarpan"],["antibacterial/3-6-diamino-10-methylacridinium-chloride-hcl.html","3,6-diamino-10-methylacridinium chloride.HCl"],["antibacterial/3-6-diamino-10-methylacridinium-chloride.html","3,6-diamino-10-methylacridinium chloride"],["antibacterial/3-6-diaminoacridine-dihydrochloride.html","3,6-diaminoacridine dihydrochloride"],["antibacterial/3-6-diaminoacridine-monohydrochloride.html","3,6-diaminoacridine monohydrochloride"],["antibacterial/3-6-diaminoacridine.html","3,6-diaminoacridine"],["antibacterial/3-hydroxy-4-methoxybenzoic-acid.html","3-hydroxy-4-methoxybenzoic acid"],["antibacterial/3-methylarginine.html","3-methylarginine"],["antibacterial/3-methylorsellinic-acid.html","3-methylorsellinic acid"],["antibacterial/3-o-%CE%B2-d-glucopyranosyl-28-o-%CE%B1-l-rhamnopyranosyl-12-%CE%B2-d-glucopyranosyl--68378.html","3-O-[β-D-glucopyranosyl]-28-O-[α-L-rhamnopyranosyl-(1→2)-β-D-glucopyranosyl]arjunolic acid"],["antibacterial/3-o-%CE%B2-d-glucopyranosyl-28-o-%CE%B1-l-rhamnopyranosyl-12-%CE%B2-d-glucopyranosyl-.html","3-O-[β-D-glucopyranosyl]-28-O-[α-L-rhamnopyranosyl-(1→2)-β-D-glucopyranosyl]maslinic acid"],["antibacterial/3-phenethylamino-butan-2-one.html","3-(phenethylamino)-butan-2-one"],["antibacterial/3-phenylbutyric-acid.html","3-phenylbutyric acid"],["antibacterial/3-z-2-isocyanovinyl-indole.html","3-[(Z)-2-isocyanovinyl]indole"],["antibacterial/3z-ravenic-acid.html","(3Z)-ravenic acid"],["antibacterial/4-3-4-5-tribromo-1h-pyrrol-2-yl-methyl-phenol.html","4-[(3,4,5-tribromo-1H-pyrrol-2-yl)methyl]phenol"],["antibacterial/4-hydroxy-2-oxobutanal.html","4-hydroxy-2-oxobutanal"],["antibacterial/4-hydroxycordoin.html","4-hydroxycordoin"],["antibacterial/4-terpineol.html","4-terpineol"],["antibacterial/5-6-7-trimethoxycoumarin.html","5,6,7-trimethoxycoumarin"],["antibacterial/5-7-4-trihydroxy-6-8-diprenylisoflavone.html","5,7,4'-trihydroxy-6,8-diprenylisoflavone"],["antibacterial/5-bromo-8-methoxy-1-methyl-%CE%B2-carboline.html","5-bromo-8-methoxy-1-methyl-β-carboline"],["antibacterial/5-chloro-7-iodoquinolin-8-ol.html","5-chloro-7-iodoquinolin-8-ol"],["antibacterial/5-hydroxy-7-2-4-5-tetramethoxyflavone.html","5-hydroxy-7,2',4',5'-tetramethoxyflavone"],["antibacterial/5-indanol.html","5-indanol"],["antibacterial/5-methoxyindole-3-acetic-acid.html","5-methoxyindole-3-acetic acid"],["antibacterial/5-o-mycaminosyltylonolide.html","5-O-mycaminosyltylonolide"],["antibacterial/5e-7-oxozeaenol.html","5E-7-oxozeaenol"],["antibacterial/5z-7-oxozeaenol.html","5Z-7-oxozeaenol"],["antibacterial/5%CE%B1-cholesta-24-en-3%CE%B2-20%CE%B2-diol-23-one.html","5α-cholesta-24-en-3β,20β-diol-23-one"],["antibacterial/5%CE%B1-cholesta-9-11-en-3%CE%B2-20%CE%B2-diol.html","5α-cholesta-9(11)-en-3β, 20β-diol"],["antibacterial/6-8-diprenylnaringenin.html","6,8-diprenylnaringenin"],["antibacterial/6-diazo-5-oxo-l-norleucine.html","6-diazo-5-oxo-L-norleucine"],["antibacterial/6-methoxy-2-benzoxazolinone.html","6-methoxy-2-benzoxazolinone"],["antibacterial/6-tuliposide-b.html","6-tuliposide B"],["antibacterial/6%CE%B1-malonyloxymanoyl-oxide.html","6α-malonyloxymanoyl oxide"],["antibacterial/6%CE%B2-16%CE%B2-diacetoxy-25-hydroxy-3-7-dioxy-29-nordammara-1-17-20-dien-21-oi.html","6β,16β-diacetoxy-25-hydroxy-3,7-dioxy-29-nordammara-1,17(20)-dien-21-oic acid"],["antibacterial/7-3-aminopyrrolidin-1-yl-1-2-4-difluorophenyl-6-fluoro-4-oxo-1-4-dihyd.html","7-(3-aminopyrrolidin-1-yl)-1-(2,4-difluorophenyl)-6-fluoro-4-oxo-1,4-dihydro-1,8-naphthyridine-3-carboxylic acid"],["antibacterial/7-aminocholesterol.html","7-aminocholesterol"],["antibacterial/7-epiclusianone.html","7-epiclusianone"],["antibacterial/7-hydroxy-5-hydroxymethyl-2h-benzo-1-4-thiazin-3-one.html","7-hydroxy-5-hydroxymethyl-2H-benzo[1,4]thiazin-3-one"],["antibacterial/9-fluoro-5-methyl-1-oxo-6-7-dihydro-1h-5h-pyrido-3-2-1-ij-quinoline-2-.html","9-fluoro-5-methyl-1-oxo-6,7-dihydro-1H,5H-pyrido[3,2,1-ij]quinoline-2-carboxylic acid"],["antibacterial/9z-12z-15z-octadeca-9-12-15-trien-6-ynoic-acid.html","(9Z,12Z,15Z)-octadeca-9,12,15-trien-6-ynoic acid"],["antibacterial/9z-12z-15z-octadecatrien-1-ol.html","(9Z,12Z,15Z)-octadecatrien-1-ol"],["antibacterial/a201a.html","A201A"],["antibacterial/a47934.html","A47934"],["antibacterial/abaucin.html","Abaucin"],["antibacterial/acteoside.html","acteoside"],["antibacterial/actinodaphnine.html","actinodaphnine"],["antibacterial/actinomycin-d.html","actinomycin D"],["antibacterial/afn-1252.html","AFN-1252"],["antibacterial/afzelin.html","afzelin"],["antibacterial/albicidin.html","albicidin"],["antibacterial/albomycin-%CE%B41.html","albomycin δ1"],["antibacterial/albomycin-%CE%B42.html","albomycin δ2"],["antibacterial/albomycin-%CE%B5.html","albomycin ε"],["antibacterial/alexidine.html","alexidine"],["antibacterial/allicin.html","allicin"],["antibacterial/allyl-alcohol.html","allyl alcohol"],["antibacterial/althiomycin.html","althiomycin"],["antibacterial/ambiguine-h.html","ambiguine H"],["antibacterial/ambiguine-i.html","ambiguine I"],["antibacterial/amikacin-disulfate.html","amikacin disulfate"],["antibacterial/amikacin.html","amikacin"],["antibacterial/amoxicillin-trihydrate.html","amoxicillin trihydrate"],["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/amythiamicin-a.html","amythiamicin A"],["antibacterial/anacardic-acid.html","anacardic acid"],["antibacterial/anthramycin.html","anthramycin"],["antibacterial/apigenin-7-o-%CE%B2-d-glucoside-1.html","apigenin 7-O-β-D-glucoside(1−)"],["antibacterial/apigenin-7-o-%CE%B2-d-glucoside.html","apigenin 7-O-β-D-glucoside"],["antibacterial/aplasmomycin.html","(+)-aplasmomycin"],["antibacterial/apramycin.html","apramycin"],["antibacterial/arasertaconazole.html","arasertaconazole"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/arborcandin-c.html","arborcandin C"],["antibacterial/arjunolic-acid.html","arjunolic acid"],["antibacterial/arsinothricin.html","arsinothricin"],["antibacterial/arsphenamine.html","arsphenamine"],["antibacterial/arugosin-b.html","arugosin B"],["antibacterial/asperlactone.html","asperlactone"],["antibacterial/asphodelin-a-4-o-%CE%B2-glucoside.html","asphodelin A-4'-O-β-glucoside"],["antibacterial/asphodelin-a.html","asphodelin A"],["antibacterial/aspoxicillin.html","aspoxicillin"],["antibacterial/aspyrone.html","aspyrone"],["antibacterial/astromicin.html","astromicin"],["antibacterial/asukamycin.html","asukamycin"],["antibacterial/atromentin.html","atromentin"],["antibacterial/aurachin-a.html","aurachin A"],["antibacterial/aurachin-c.html","aurachin C"],["antibacterial/aureoquinone.html","aureoquinone"],["antibacterial/aureothin.html","aureothin"],["antibacterial/aureothricin.html","aureothricin"],["antibacterial/aurodox.html","aurodox"],["antibacterial/avibactam-sodium.html","avibactam sodium"],["antibacterial/avibactam.html","avibactam"],["antibacterial/avoparcin.html","avoparcin"],["antibacterial/azamulin.html","azamulin"],["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/azidocillin.html","azidocillin"],["antibacterial/azithromycin.html","azithromycin"],["antibacterial/azlocillin.html","azlocillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/bacillaene.html","bacillaene"],["antibacterial/bacilysocin.html","bacilysocin"],["antibacterial/bacitracin-a.html","bacitracin A"],["antibacterial/baicalein.html","baicalein"],["antibacterial/baicalin.html","baicalin"],["antibacterial/balofloxacin.html","Balofloxacin"],["antibacterial/bay11-7085.html","BAY11-7085"],["antibacterial/be-24566b.html","BE-24566B"],["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"],["antibacterial/benzethonium-chloride.html","benzethonium chloride"],["antibacterial/benzyl-isothiocyanate.html","benzyl isothiocyanate"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/biapenem.html","biapenem"],["antibacterial/bicozamycin.html","bicozamycin"],["antibacterial/bikaverin.html","bikaverin"],["antibacterial/bleomycin-a2.html","bleomycin A2"],["antibacterial/bleomycin.html","bleomycin"],["antibacterial/boromycin.html","boromycin"],["antibacterial/brasiliquinone-a.html","brasiliquinone A"],["antibacterial/brasiliquinone-b.html","brasiliquinone B"],["antibacterial/brasiliquinone-c.html","brasiliquinone C"],["antibacterial/brazilein.html","brazilein"],["antibacterial/brazilin.html","brazilin"],["antibacterial/brefeldin-a.html","brefeldin A"],["antibacterial/brilliant-green-cation.html","brilliant green cation"],["antibacterial/brilliant-green.html","brilliant green"],["antibacterial/brodimoprim.html","brodimoprim"],["antibacterial/bromodeoxytopsentin.html","bromodeoxytopsentin"],["antibacterial/bromophycolide-a.html","bromophycolide A"],["antibacterial/butirosin.html","butirosin"],["antibacterial/butremycin.html","butremycin"],["antibacterial/cadaside-a.html","cadaside A"],["antibacterial/cadaside-b.html","cadaside B"],["antibacterial/calcimycin.html","calcimycin"],["antibacterial/callophycoic-acid-a.html","callophycoic acid A"],["antibacterial/callophycoic-acid-b.html","callophycoic acid B"],["antibacterial/callophycoic-acid-c.html","callophycoic acid C"],["antibacterial/callophycoic-acid-d.html","callophycoic acid D"],["antibacterial/callophycoic-acid-e.html","callophycoic acid E"],["antibacterial/callophycoic-acid-f.html","callophycoic acid F"],["antibacterial/callophycoic-acid-g.html","callophycoic acid G"],["antibacterial/callophycoic-acid-h.html","callophycoic acid H"],["antibacterial/callophycol-a.html","callophycol A"],["antibacterial/callophycol-b.html","callophycol B"],["antibacterial/caminoside-a.html","caminoside A"],["antibacterial/cannabichromenic-acid.html","cannabichromenic acid"],["antibacterial/cannabigerol.html","cannabigerol"],["antibacterial/cannabinolic-acid.html","cannabinolic acid"],["antibacterial/canophyllal.html","canophyllal"],["antibacterial/carbapenem-mm22383.html","carbapenem MM22383"],["antibacterial/carbapenem.html","carbapenem"],["antibacterial/carbenicillin.html","carbenicillin"],["antibacterial/carumonam.html","carumonam"],["antibacterial/cccp.html","CCCP"],["antibacterial/cdk9-in-2.html","CDK9-IN-2"],["antibacterial/cefacetrile.html","cefacetrile"],["antibacterial/cefaclor.html","cefaclor"],["antibacterial/cefadroxil.html","cefadroxil"],["antibacterial/cefaloram.html","cefaloram"],["antibacterial/cefaloridine.html","cefaloridine"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefamandole-nafate.html","cefamandole nafate"],["antibacterial/cefamandole-sodium.html","cefamandole sodium"],["antibacterial/cefamandole.html","cefamandole"],["antibacterial/cefatrizine.html","cefatrizine"],["antibacterial/cefazedone.html","cefazedone"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefbuperazone.html","cefbuperazone"],["antibacterial/cefcapene.html","cefcapene"],["antibacterial/cefdaloxime.html","cefdaloxime"],["antibacterial/cefdinir.html","cefdinir"],["antibacterial/cefditoren-pivoxil.html","cefditoren pivoxil"],["antibacterial/cefditoren.html","cefditoren"],["antibacterial/cefepime-hydrochloride.html","cefepime hydrochloride"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefetamet.html","cefetamet"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/cefixime.html","cefixime"],["antibacterial/cefmenoxime.html","cefmenoxime"],["antibacterial/cefmetazole.html","cefmetazole"],["antibacterial/cefminox.html","cefminox"],["antibacterial/cefodizime.html","cefodizime"],["antibacterial/cefonicid.html","cefonicid"],["antibacterial/cefoperazone.html","cefoperazone"],["antibacterial/ceforanide.html","ceforanide"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/cefotetan-disodium.html","cefotetan disodium"],["antibacterial/cefotetan.html","cefotetan"],["antibacterial/cefotiam-dihydrochloride.html","cefotiam dihydrochloride"],["antibacterial/cefotiam-hexetil-dihydrochloride.html","cefotiam hexetil dihydrochloride"],["antibacterial/cefotiam.html","cefotiam"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/cefozopran.html","cefozopran"],["antibacterial/cefpiramide.html","cefpiramide"],["antibacterial/cefpirome.html","cefpirome"],["antibacterial/cefpodoxime-proxetil.html","cefpodoxime proxetil"],["antibacterial/cefpodoxime.html","cefpodoxime"],["antibacterial/cefprozil.html","cefprozil"],["antibacterial/cefroxadine.html","cefroxadine"],["antibacterial/cefsulodin.html","cefsulodin"],["antibacterial/ceftaroline-fosamil-acetate-monohydrate.html","ceftaroline fosamil acetate monohydrate"],["antibacterial/ceftaroline-fosamil-acetate.html","ceftaroline fosamil acetate"],["antibacterial/ceftaroline-fosamil.html","ceftaroline fosamil"],["antibacterial/ceftaroline.html","ceftaroline"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/cefteram.html","cefteram"],["antibacterial/ceftezole.html","ceftezole"],["antibacterial/ceftibuten-dihydrate.html","ceftibuten dihydrate"],["antibacterial/ceftibuten.html","ceftibuten"],["antibacterial/ceftiofur.html","ceftiofur"],["antibacterial/ceftiolene.html","ceftiolene"],["antibacterial/ceftizoxime.html","ceftizoxime"],["antibacterial/ceftobiprole.html","ceftobiprole"],["antibacterial/ceftolozane.html","ceftolozane"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/cefuroxime.html","cefuroxime"],["antibacterial/cefuzonam.html","cefuzonam"],["antibacterial/celesticetin.html","celesticetin"],["antibacterial/cellocidin.html","cellocidin"],["antibacterial/cephalexin-monohydrate.html","cephalexin monohydrate"],["antibacterial/cephalexin.html","cephalexin"],["antibacterial/cephapirin-sodium.html","cephapirin sodium"],["antibacterial/cephapirin.html","cephapirin"],["antibacterial/cephradine.html","cephradine"],["antibacterial/cervimycin-a.html","cervimycin A"],["antibacterial/cervimycin-b.html","cervimycin B"],["antibacterial/cervimycin-c.html","cervimycin C"],["antibacterial/cervimycin-d.html","cervimycin D"],["antibacterial/cethromycin.html","cethromycin"],["antibacterial/cezomycin.html","cezomycin"],["antibacterial/chaetoglocin-a.html","chaetoglocin A"],["antibacterial/chaetoglocin-b.html","chaetoglocin B"],["antibacterial/chalcomycin.html","chalcomycin"],["antibacterial/chelerythrine.html","chelerythrine"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/chlorhexidine-acetate.html","chlorhexidine acetate"],["antibacterial/chlorhexidine-gluconate.html","chlorhexidine gluconate"],["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/chloroeremomycin.html","chloroeremomycin"],["antibacterial/chloroxine.html","chloroxine"],["antibacterial/chlorphenesin.html","chlorphenesin"],["antibacterial/chlorquinaldol.html","chlorquinaldol"],["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/cholesteryl-arachidonate.html","cholesteryl arachidonate"],["antibacterial/chrysomycin-a.html","chrysomycin A"],["antibacterial/chuangxinmycin.html","(−)-chuangxinmycin"],["antibacterial/ciclopirox-olamine.html","ciclopirox olamine"],["antibacterial/ciclopirox.html","ciclopirox"],["antibacterial/cinoxacin.html","cinoxacin"],["antibacterial/ciprofloxacin-dihydrochloride.html","ciprofloxacin dihydrochloride"],["antibacterial/ciprofloxacin-hydrochloride-anhydrous.html","ciprofloxacin hydrochloride (anhydrous)"],["antibacterial/ciprofloxacin-hydrochloride-hydrate.html","ciprofloxacin hydrochloride hydrate"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/cis-trans-nepetalactone.html","cis-trans-nepetalactone"],["antibacterial/cladribine.html","Cladribine"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clavulanic-acid.html","clavulanic acid"],["antibacterial/clerocidin.html","clerocidin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/clometocillin.html","clometocillin"],["antibacterial/clomocycline.html","clomocycline"],["antibacterial/cloxacillin.html","cloxacillin"],["antibacterial/colistimethate-a.html","colistimethate A"],["antibacterial/colistimethate-b.html","colistimethate B"],["antibacterial/colistin-a-sodium-methanesulfonate.html","colistin A sodium methanesulfonate"],["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b-sodium-methanesulfonate.html","colistin B sodium methanesulfonate"],["antibacterial/colistin-b.html","colistin B"],["antibacterial/comazaphilone-c.html","comazaphilone C"],["antibacterial/comazaphilone-d.html","comazaphilone D"],["antibacterial/comazaphilone-e.html","comazaphilone E"]]} \ No newline at end of file diff --git a/assets/fleet/cells/CommunityMech--ENVO.json b/assets/fleet/cells/CommunityMech--ENVO.json index f10c86e..d379db1 100644 --- a/assets/fleet/cells/CommunityMech--ENVO.json +++ b/assets/fleet/cells/CommunityMech--ENVO.json @@ -1 +1 @@ -{"mech":"CommunityMech","prefix":"ENVO","base":"https://culturebotai.github.io/CommunityMech/communities/","total":408,"records":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"],["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Chlorella_Vulgaris_Whey_Coculture.html","Chlorella vulgaris Whey Co-culture"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Clostridial_isoDCA_Mini_Consortium.html","Clostridial isoDCA Mini Consortium"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Cultivated_Meat_Contaminant_SynCom.html","Cultivated Meat Contaminant SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["DVM_Triculture.html","DVM Tri-culture"],["Dairy_Wastewater_Algal_Cyanobacterial_Cultivation_Panel.html","Dairy Wastewater Algal-Cyanobacterial Cultivation Panel"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["FourSpecies_Aerobic_Lung_Microbiome_Model.html","Four-Species Aerobic Lung Microbiome Model"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Horonobe_Mizunami_URL_Subsurface_Microbiome.html","Horonobe and Mizunami Underground Research Laboratory Subsurface Microbiome"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"],["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Komagataella_Ecoli_Coinducible_Biosynthesis_Coculture.html","Komagataella-E. coli Co-inducible Biosynthesis Coculture"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["LBNL_Switchgrass_Soil_SynCom16.html","LBNL Switchgrass Soil SynCom16"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Magnetite_Sulfate_Stress_Anaerobic_Microbiome.html","Magnetite Sulfate-Stress Anaerobic Microbiome"],["Maize_Benzoxazinoid_Metabolizing_SynComs.html","Maize Benzoxazinoid-Metabolizing SynComs"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Mediterranean_AM_Fungal_SixSpecies_SynCom.html","Mediterranean AM Fungal Six-Species SynCom"],["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"],["Meghalaya_Bacillus_Consortia_A22ED9.html","Meghalaya Bacillus Consortia-A22ED9"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"],["Microalgae_Cyanobacteria_Bioactive_Peptide_Consortia.html","Microalgae-Cyanobacteria Bioactive Peptide Consortia"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"],["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"],["Nitratireductor_Gordonia_Z123_LDPE_Degradation_SynCom.html","Nitratireductor-Gordonia Z123 LDPE-Degradation SynCom"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"],["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["PMI_Variovorax_Thermotolerance_Collection.html","PMI Variovorax Thermotolerance Collection"],["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"],["Pelagerythrobacter_Salinicola_PES_Pyrene_Degradation_SynCom.html","Pelagerythrobacter-Salinicola PES Pyrene-Degradation SynCom"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Phosphitivorax_Methanoculleus_Lithosyntrophy_Phosphite_Coculture.html","Phosphitivorax-Methanoculleus Lithosyntrophic Phosphite-Oxidizing Methanogenic Culture"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Pichia_Lactiplantibacillus_CCMA_Plant_Beverage_Coculture.html","Pichia-Lactiplantibacillus CCMA Plant Beverage Coculture"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["QY2S1_Dehalogenimonas_BFR_Bioremediation_Consortium.html","QY2-S1 Dehalogenimonas-Rich Brominated-Flame-Retardant Consortium"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["Rhizorhabdus_Cupriavidus_BDE47_Degradation_SynCom.html","Rhizorhabdus-Cupriavidus BDE-47 Degradation SynCom"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"],["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Rice_Acid_Soil_Bioinoculant_SynCom.html","Rice Acid Soil Bioinoculant SynCom"],["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"],["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]]} \ No newline at end of file +{"mech":"CommunityMech","prefix":"ENVO","base":"https://culturebotai.github.io/CommunityMech/communities/","total":408,"records":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"],["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic Rumen Consortium"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Chlorella_Vulgaris_Whey_Coculture.html","Chlorella vulgaris Whey Co-culture"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Clostridial_isoDCA_Mini_Consortium.html","Clostridial isoDCA Mini Consortium"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Cultivated_Meat_Contaminant_SynCom.html","Cultivated Meat Contaminant SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["DVM_Triculture.html","DVM Tri-culture"],["Dairy_Wastewater_Algal_Cyanobacterial_Cultivation_Panel.html","Dairy Wastewater Algal-Cyanobacterial Cultivation Panel"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["FourSpecies_Aerobic_Lung_Microbiome_Model.html","Four-Species Aerobic Lung Microbiome Model"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Horonobe_Mizunami_URL_Subsurface_Microbiome.html","Horonobe and Mizunami Underground Research Laboratory Subsurface Microbiome"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"],["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Komagataella_Ecoli_Coinducible_Biosynthesis_Coculture.html","Komagataella-E. coli Co-inducible Biosynthesis Coculture"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["LBNL_Switchgrass_Soil_SynCom16.html","LBNL Switchgrass Soil SynCom16"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Magnetite_Sulfate_Stress_Anaerobic_Microbiome.html","Magnetite Sulfate-Stress Anaerobic Microbiome"],["Maize_Benzoxazinoid_Metabolizing_SynComs.html","Maize Benzoxazinoid-Metabolizing SynComs"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Mediterranean_AM_Fungal_SixSpecies_SynCom.html","Mediterranean AM Fungal Six-Species SynCom"],["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"],["Meghalaya_Bacillus_Consortia_A22ED9.html","Meghalaya Bacillus Consortia-A22ED9"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"],["Microalgae_Cyanobacteria_Bioactive_Peptide_Consortia.html","Microalgae-Cyanobacteria Bioactive Peptide Consortia"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"],["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"],["Nitratireductor_Gordonia_Z123_LDPE_Degradation_SynCom.html","Nitratireductor-Gordonia Z123 LDPE-Degradation SynCom"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"],["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["PMI_Variovorax_Thermotolerance_Collection.html","PMI Variovorax Thermotolerance Collection"],["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"],["Pelagerythrobacter_Salinicola_PES_Pyrene_Degradation_SynCom.html","Pelagerythrobacter-Salinicola PES Pyrene-Degradation SynCom"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Phosphitivorax_Methanoculleus_Lithosyntrophy_Phosphite_Coculture.html","Phosphitivorax-Methanoculleus Lithosyntrophic Phosphite-Oxidizing Methanogenic Culture"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Pichia_Lactiplantibacillus_CCMA_Plant_Beverage_Coculture.html","Pichia-Lactiplantibacillus CCMA Plant Beverage Coculture"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["QY2S1_Dehalogenimonas_BFR_Bioremediation_Consortium.html","QY2-S1 Dehalogenimonas-Rich Brominated-Flame-Retardant Consortium"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["Rhizorhabdus_Cupriavidus_BDE47_Degradation_SynCom.html","Rhizorhabdus-Cupriavidus BDE-47 Degradation SynCom"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"],["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Rice_Acid_Soil_Bioinoculant_SynCom.html","Rice Acid Soil Bioinoculant SynCom"],["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"],["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]]} \ No newline at end of file diff --git a/assets/fleet/cells/CommunityMech--GO.json b/assets/fleet/cells/CommunityMech--GO.json index 1e105fe..7ffcc48 100644 --- a/assets/fleet/cells/CommunityMech--GO.json +++ b/assets/fleet/cells/CommunityMech--GO.json @@ -1 +1 @@ -{"mech":"CommunityMech","prefix":"GO","base":"https://culturebotai.github.io/CommunityMech/communities/","total":394,"records":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"],["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Cultivated_Meat_Contaminant_SynCom.html","Cultivated Meat Contaminant SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["DVM_Triculture.html","DVM Tri-culture"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["Horonobe_Mizunami_URL_Subsurface_Microbiome.html","Horonobe and Mizunami Underground Research Laboratory Subsurface Microbiome"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["LBNL_Switchgrass_Soil_SynCom16.html","LBNL Switchgrass Soil SynCom16"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Magnetite_Sulfate_Stress_Anaerobic_Microbiome.html","Magnetite Sulfate-Stress Anaerobic Microbiome"],["Maize_Benzoxazinoid_Metabolizing_SynComs.html","Maize Benzoxazinoid-Metabolizing SynComs"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Mediterranean_AM_Fungal_SixSpecies_SynCom.html","Mediterranean AM Fungal Six-Species SynCom"],["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"],["Nitratireductor_Gordonia_Z123_LDPE_Degradation_SynCom.html","Nitratireductor-Gordonia Z123 LDPE-Degradation SynCom"],["OMM12_Gnotobiotic_Mouse_Gut_Community.html","OMM12 Gnotobiotic Mouse Gut Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"],["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["PMI_Variovorax_Thermotolerance_Collection.html","PMI Variovorax Thermotolerance Collection"],["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Phosphitivorax_Methanoculleus_Lithosyntrophy_Phosphite_Coculture.html","Phosphitivorax-Methanoculleus Lithosyntrophic Phosphite-Oxidizing Methanogenic Culture"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["QY2S1_Dehalogenimonas_BFR_Bioremediation_Consortium.html","QY2-S1 Dehalogenimonas-Rich Brominated-Flame-Retardant Consortium"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["Rhizorhabdus_Cupriavidus_BDE47_Degradation_SynCom.html","Rhizorhabdus-Cupriavidus BDE-47 Degradation SynCom"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"],["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Rice_Acid_Soil_Bioinoculant_SynCom.html","Rice Acid Soil Bioinoculant SynCom"],["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"],["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"],["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"],["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"]]} \ No newline at end of file +{"mech":"CommunityMech","prefix":"GO","base":"https://culturebotai.github.io/CommunityMech/communities/","total":394,"records":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic Rumen Consortium"],["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Cultivated_Meat_Contaminant_SynCom.html","Cultivated Meat Contaminant SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["DVM_Triculture.html","DVM Tri-culture"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["Horonobe_Mizunami_URL_Subsurface_Microbiome.html","Horonobe and Mizunami Underground Research Laboratory Subsurface Microbiome"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["LBNL_Switchgrass_Soil_SynCom16.html","LBNL Switchgrass Soil SynCom16"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Magnetite_Sulfate_Stress_Anaerobic_Microbiome.html","Magnetite Sulfate-Stress Anaerobic Microbiome"],["Maize_Benzoxazinoid_Metabolizing_SynComs.html","Maize Benzoxazinoid-Metabolizing SynComs"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Mediterranean_AM_Fungal_SixSpecies_SynCom.html","Mediterranean AM Fungal Six-Species SynCom"],["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"],["Nitratireductor_Gordonia_Z123_LDPE_Degradation_SynCom.html","Nitratireductor-Gordonia Z123 LDPE-Degradation SynCom"],["OMM12_Gnotobiotic_Mouse_Gut_Community.html","OMM12 Gnotobiotic Mouse Gut Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"],["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["PMI_Variovorax_Thermotolerance_Collection.html","PMI Variovorax Thermotolerance Collection"],["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Phosphitivorax_Methanoculleus_Lithosyntrophy_Phosphite_Coculture.html","Phosphitivorax-Methanoculleus Lithosyntrophic Phosphite-Oxidizing Methanogenic Culture"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["QY2S1_Dehalogenimonas_BFR_Bioremediation_Consortium.html","QY2-S1 Dehalogenimonas-Rich Brominated-Flame-Retardant Consortium"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["Rhizorhabdus_Cupriavidus_BDE47_Degradation_SynCom.html","Rhizorhabdus-Cupriavidus BDE-47 Degradation SynCom"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"],["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Rice_Acid_Soil_Bioinoculant_SynCom.html","Rice Acid Soil Bioinoculant SynCom"],["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"],["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"],["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"],["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"]]} \ No newline at end of file diff --git a/assets/fleet/cells/CommunityMech--GTDB.json b/assets/fleet/cells/CommunityMech--GTDB.json index 9577957..f61d787 100644 --- a/assets/fleet/cells/CommunityMech--GTDB.json +++ b/assets/fleet/cells/CommunityMech--GTDB.json @@ -1 +1 @@ -{"mech":"CommunityMech","prefix":"GTDB","base":"https://culturebotai.github.io/CommunityMech/communities/","total":367,"records":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"],["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Clostridial_isoDCA_Mini_Consortium.html","Clostridial isoDCA Mini Consortium"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"],["Cultivated_Meat_Contaminant_SynCom.html","Cultivated Meat Contaminant SynCom"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["DVM_Triculture.html","DVM Tri-culture"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"],["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Komagataella_Ecoli_Coinducible_Biosynthesis_Coculture.html","Komagataella-E. coli Co-inducible Biosynthesis Coculture"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["LBNL_Switchgrass_Soil_SynCom16.html","LBNL Switchgrass Soil SynCom16"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Magnetite_Sulfate_Stress_Anaerobic_Microbiome.html","Magnetite Sulfate-Stress Anaerobic Microbiome"],["Maize_Benzoxazinoid_Metabolizing_SynComs.html","Maize Benzoxazinoid-Metabolizing SynComs"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"],["Microalgae_Cyanobacteria_Bioactive_Peptide_Consortia.html","Microalgae-Cyanobacteria Bioactive Peptide Consortia"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"],["OMM12_Gnotobiotic_Mouse_Gut_Community.html","OMM12 Gnotobiotic Mouse Gut Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["PMI_Variovorax_Thermotolerance_Collection.html","PMI Variovorax Thermotolerance Collection"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Phosphitivorax_Methanoculleus_Lithosyntrophy_Phosphite_Coculture.html","Phosphitivorax-Methanoculleus Lithosyntrophic Phosphite-Oxidizing Methanogenic Culture"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Pichia_Lactiplantibacillus_CCMA_Plant_Beverage_Coculture.html","Pichia-Lactiplantibacillus CCMA Plant Beverage Coculture"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"],["QY2S1_Dehalogenimonas_BFR_Bioremediation_Consortium.html","QY2-S1 Dehalogenimonas-Rich Brominated-Flame-Retardant Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"],["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Rice_Acid_Soil_Bioinoculant_SynCom.html","Rice Acid Soil Bioinoculant SynCom"],["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"],["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"],["SPRUCE_Peatland_Methane_Cycling_Community.html","SPRUCE Peatland Methane-Cycling Microbial Community"],["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"],["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"],["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"],["Shewanella_Denitrifying_Richness_SynComs.html","Shewanella Denitrifying Richness SynComs"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"],["Shewanella_Pseudomonas_Fe0_Electrosyntrophic_Denitrifying_Consortium.html","Shewanella oneidensis + Pseudomonas aeruginosa Fe0-dependent Electro-syntrophic Denitrifying Consortium"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"],["SkinCom_Synthetic_Skin_Community.html","SkinCom Synthetic Skin Community"],["Soil_BGC_Phylum_Depth_Vegetation_Community.html","Soil Biosynthetic Gene Cluster Phylum-Depth-Vegetation Community"],["Soil_Corrinoid_B12_Reservoir_Community.html","Soil Corrinoid Reservoir Microbial Community"],["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["South_Bay_Salt_Pond_Methane_Restoration_Community.html","South Bay Salt Pond Methane Restoration Microbial Community"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"],["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]]} \ No newline at end of file +{"mech":"CommunityMech","prefix":"GTDB","base":"https://culturebotai.github.io/CommunityMech/communities/","total":367,"records":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic Rumen Consortium"],["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Clostridial_isoDCA_Mini_Consortium.html","Clostridial isoDCA Mini Consortium"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"],["Cultivated_Meat_Contaminant_SynCom.html","Cultivated Meat Contaminant SynCom"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["DVM_Triculture.html","DVM Tri-culture"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"],["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Komagataella_Ecoli_Coinducible_Biosynthesis_Coculture.html","Komagataella-E. coli Co-inducible Biosynthesis Coculture"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["LBNL_Switchgrass_Soil_SynCom16.html","LBNL Switchgrass Soil SynCom16"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Magnetite_Sulfate_Stress_Anaerobic_Microbiome.html","Magnetite Sulfate-Stress Anaerobic Microbiome"],["Maize_Benzoxazinoid_Metabolizing_SynComs.html","Maize Benzoxazinoid-Metabolizing SynComs"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"],["Microalgae_Cyanobacteria_Bioactive_Peptide_Consortia.html","Microalgae-Cyanobacteria Bioactive Peptide Consortia"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"],["OMM12_Gnotobiotic_Mouse_Gut_Community.html","OMM12 Gnotobiotic Mouse Gut Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["PMI_Variovorax_Thermotolerance_Collection.html","PMI Variovorax Thermotolerance Collection"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Phosphitivorax_Methanoculleus_Lithosyntrophy_Phosphite_Coculture.html","Phosphitivorax-Methanoculleus Lithosyntrophic Phosphite-Oxidizing Methanogenic Culture"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Pichia_Lactiplantibacillus_CCMA_Plant_Beverage_Coculture.html","Pichia-Lactiplantibacillus CCMA Plant Beverage Coculture"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"],["QY2S1_Dehalogenimonas_BFR_Bioremediation_Consortium.html","QY2-S1 Dehalogenimonas-Rich Brominated-Flame-Retardant Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"],["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Rice_Acid_Soil_Bioinoculant_SynCom.html","Rice Acid Soil Bioinoculant SynCom"],["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"],["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"],["SPRUCE_Peatland_Methane_Cycling_Community.html","SPRUCE Peatland Methane-Cycling Microbial Community"],["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"],["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"],["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"],["Shewanella_Denitrifying_Richness_SynComs.html","Shewanella Denitrifying Richness SynComs"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"],["Shewanella_Pseudomonas_Fe0_Electrosyntrophic_Denitrifying_Consortium.html","Shewanella oneidensis + Pseudomonas aeruginosa Fe0-dependent Electro-syntrophic Denitrifying Consortium"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"],["SkinCom_Synthetic_Skin_Community.html","SkinCom Synthetic Skin Community"],["Soil_BGC_Phylum_Depth_Vegetation_Community.html","Soil Biosynthetic Gene Cluster Phylum-Depth-Vegetation Community"],["Soil_Corrinoid_B12_Reservoir_Community.html","Soil Corrinoid Reservoir Microbial Community"],["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["South_Bay_Salt_Pond_Methane_Restoration_Community.html","South Bay Salt Pond Methane Restoration Microbial Community"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"],["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]]} \ No newline at end of file diff --git a/assets/fleet/cells/CommunityMech--NCBITaxon.json b/assets/fleet/cells/CommunityMech--NCBITaxon.json index 4828463..b8af034 100644 --- a/assets/fleet/cells/CommunityMech--NCBITaxon.json +++ b/assets/fleet/cells/CommunityMech--NCBITaxon.json @@ -1 +1 @@ -{"mech":"CommunityMech","prefix":"NCBITaxon","base":"https://culturebotai.github.io/CommunityMech/communities/","total":422,"records":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"],["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"],["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Chlorella_Vulgaris_Whey_Coculture.html","Chlorella vulgaris Whey Co-culture"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Clostridial_isoDCA_Mini_Consortium.html","Clostridial isoDCA Mini Consortium"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Cultivated_Meat_Contaminant_SynCom.html","Cultivated Meat Contaminant SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["DVM_Triculture.html","DVM Tri-culture"],["Dairy_Wastewater_Algal_Cyanobacterial_Cultivation_Panel.html","Dairy Wastewater Algal-Cyanobacterial Cultivation Panel"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["FourSpecies_Aerobic_Lung_Microbiome_Model.html","Four-Species Aerobic Lung Microbiome Model"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["Horonobe_Mizunami_URL_Subsurface_Microbiome.html","Horonobe and Mizunami Underground Research Laboratory Subsurface Microbiome"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"],["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Komagataella_Ecoli_Coinducible_Biosynthesis_Coculture.html","Komagataella-E. coli Co-inducible Biosynthesis Coculture"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["LBNL_Switchgrass_Soil_SynCom16.html","LBNL Switchgrass Soil SynCom16"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Magnetite_Sulfate_Stress_Anaerobic_Microbiome.html","Magnetite Sulfate-Stress Anaerobic Microbiome"],["Maize_Benzoxazinoid_Metabolizing_SynComs.html","Maize Benzoxazinoid-Metabolizing SynComs"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Mediterranean_AM_Fungal_SixSpecies_SynCom.html","Mediterranean AM Fungal Six-Species SynCom"],["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"],["Meghalaya_Bacillus_Consortia_A22ED9.html","Meghalaya Bacillus Consortia-A22ED9"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"],["Microalgae_Cyanobacteria_Bioactive_Peptide_Consortia.html","Microalgae-Cyanobacteria Bioactive Peptide Consortia"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"],["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"],["Nitratireductor_Gordonia_Z123_LDPE_Degradation_SynCom.html","Nitratireductor-Gordonia Z123 LDPE-Degradation SynCom"],["OMM12_Gnotobiotic_Mouse_Gut_Community.html","OMM12 Gnotobiotic Mouse Gut Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"],["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["PMI_Variovorax_Thermotolerance_Collection.html","PMI Variovorax Thermotolerance Collection"],["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"],["Pelagerythrobacter_Salinicola_PES_Pyrene_Degradation_SynCom.html","Pelagerythrobacter-Salinicola PES Pyrene-Degradation SynCom"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Phosphitivorax_Methanoculleus_Lithosyntrophy_Phosphite_Coculture.html","Phosphitivorax-Methanoculleus Lithosyntrophic Phosphite-Oxidizing Methanogenic Culture"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Pichia_Lactiplantibacillus_CCMA_Plant_Beverage_Coculture.html","Pichia-Lactiplantibacillus CCMA Plant Beverage Coculture"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"]]} \ No newline at end of file +{"mech":"CommunityMech","prefix":"NCBITaxon","base":"https://culturebotai.github.io/CommunityMech/communities/","total":422,"records":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"],["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic Rumen Consortium"],["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Chlorella_Vulgaris_Whey_Coculture.html","Chlorella vulgaris Whey Co-culture"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Clostridial_isoDCA_Mini_Consortium.html","Clostridial isoDCA Mini Consortium"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Cultivated_Meat_Contaminant_SynCom.html","Cultivated Meat Contaminant SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["DVM_Triculture.html","DVM Tri-culture"],["Dairy_Wastewater_Algal_Cyanobacterial_Cultivation_Panel.html","Dairy Wastewater Algal-Cyanobacterial Cultivation Panel"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["FourSpecies_Aerobic_Lung_Microbiome_Model.html","Four-Species Aerobic Lung Microbiome Model"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["Horonobe_Mizunami_URL_Subsurface_Microbiome.html","Horonobe and Mizunami Underground Research Laboratory Subsurface Microbiome"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"],["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Komagataella_Ecoli_Coinducible_Biosynthesis_Coculture.html","Komagataella-E. coli Co-inducible Biosynthesis Coculture"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["LBNL_Switchgrass_Soil_SynCom16.html","LBNL Switchgrass Soil SynCom16"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Magnetite_Sulfate_Stress_Anaerobic_Microbiome.html","Magnetite Sulfate-Stress Anaerobic Microbiome"],["Maize_Benzoxazinoid_Metabolizing_SynComs.html","Maize Benzoxazinoid-Metabolizing SynComs"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Mediterranean_AM_Fungal_SixSpecies_SynCom.html","Mediterranean AM Fungal Six-Species SynCom"],["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"],["Meghalaya_Bacillus_Consortia_A22ED9.html","Meghalaya Bacillus Consortia-A22ED9"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"],["Microalgae_Cyanobacteria_Bioactive_Peptide_Consortia.html","Microalgae-Cyanobacteria Bioactive Peptide Consortia"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"],["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"],["Nitratireductor_Gordonia_Z123_LDPE_Degradation_SynCom.html","Nitratireductor-Gordonia Z123 LDPE-Degradation SynCom"],["OMM12_Gnotobiotic_Mouse_Gut_Community.html","OMM12 Gnotobiotic Mouse Gut Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"],["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["PMI_Variovorax_Thermotolerance_Collection.html","PMI Variovorax Thermotolerance Collection"],["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"],["Pelagerythrobacter_Salinicola_PES_Pyrene_Degradation_SynCom.html","Pelagerythrobacter-Salinicola PES Pyrene-Degradation SynCom"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Phosphitivorax_Methanoculleus_Lithosyntrophy_Phosphite_Coculture.html","Phosphitivorax-Methanoculleus Lithosyntrophic Phosphite-Oxidizing Methanogenic Culture"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Pichia_Lactiplantibacillus_CCMA_Plant_Beverage_Coculture.html","Pichia-Lactiplantibacillus CCMA Plant Beverage Coculture"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"]]} \ No newline at end of file diff --git a/assets/fleet/edges/AntibioticMech--MediaIngredientMech.json b/assets/fleet/edges/AntibioticMech--MediaIngredientMech.json index 48581c7..0843313 100644 --- a/assets/fleet/edges/AntibioticMech--MediaIngredientMech.json +++ b/assets/fleet/edges/AntibioticMech--MediaIngredientMech.json @@ -1 +1 @@ -{"a":"AntibioticMech","b":"MediaIngredientMech","base":{"AntibioticMech":"https://culturebotai.github.io/AntibioticMech/pages/","MediaIngredientMech":"https://github.com/CultureBotAI/MediaIngredientMech/blob/main/data/ingredients/"},"n":324,"by":{"CHEBI":324},"terms":[{"id":"CHEBI:35505","l":"","na":21,"nb":73,"a":[["antibacterial/amoxicillin-trihydrate.html","amoxicillin trihydrate"],["antibacterial/cefepime-hydrochloride.html","cefepime hydrochloride"],["antibacterial/ceftaroline-fosamil-acetate-monohydrate.html","ceftaroline fosamil acetate monohydrate"],["antibacterial/ceftibuten-dihydrate.html","ceftibuten dihydrate"],["antibacterial/cephalexin-monohydrate.html","cephalexin monohydrate"],["antibacterial/ciprofloxacin-hydrochloride-hydrate.html","ciprofloxacin hydrochloride hydrate"]],"b":[["mapped/2-Deoxyadenosine_Monohydrate.yaml","2-Deoxyadenosine monohydrate"],["mapped/2-Keto-D-gluconic_Acid_Hemicalcium_Salt_Hydrate.yaml","2-Keto-D-gluconic acid hemicalcium salt hydrate"],["mapped/4-Hydroxymandelic_Acid_Monohydrate.yaml","4-Hydroxymandelic acid monohydrate"],["mapped/5-Fluoroorotic_Acid_Hydrate.yaml","5-Fluoroorotic acid hydrate"],["mapped/A-Ketoglutaric_Acid_Disodium_Salt_Hydrate.yaml","a-Ketoglutaric acid disodium salt hydrate"],["mapped/Adenine_Hydrochloride_Hydrate.yaml","Adenine hydrochloride hydrate"]]},{"id":"CHEBI:33709","l":"amino acid","na":8,"nb":54,"a":[["antibacterial/7-3-aminopyrrolidin-1-yl-1-2-4-difluorophenyl-6-fluoro-4-oxo-1-4-dihyd.html","7-(3-aminopyrrolidin-1-yl)-1-(2,4-difluorophenyl)-6-fluoro-4-oxo-1,4-dihydro-1,8-naphthyridine-3-carboxylic"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/pipemidic-acid.html","pipemidic acid"],["antibacterial/trovafloxacin.html","trovafloxacin"],["antifungal/mediomycin-a.html","mediomycin A"],["antifungal/mediomycin-b.html","mediomycin B"]],"b":[["mapped/1-aminocyclopropane-1-carboxylate.yaml","1-aminocyclopropane-1-carboxylate"],["mapped/3-Chloro-L-tyrosine.yaml","3-Chloro-L-tyrosine"],["mapped/3-aminobutyric_Acid.yaml","3-aminobutyric acid"],["mapped/4-azido-L-phenylalanine.yaml","4-azido-L-phenylalanine"],["mapped/5-Aminolevulinic_Acid.yaml","5-Aminolevulinic acid"],["mapped/5-aminovaleric_Acid.yaml","5-Aminovaleric acid"]]},{"id":"CHEBI:26218","l":"","na":3,"nb":2,"a":[["antibacterial/potassium-clavulanate.html","potassium clavulanate"],["antifungal/potassium-hydrogencarbonate.html","potassium hydrogencarbonate"],["biocide/potassium-sorbate.html","potassium sorbate"]],"b":[["mapped/5-Keto-D-Gluconic_Acid_Potassium_Salt.yaml","5-Keto-D-Gluconic Acid potassium salt"],["mapped/D-Saccharic_Acid_Potassium_Salt.yaml","D-Saccharic acid potassium salt"]]},{"id":"CHEBI:30746","l":"benzoic acid","na":2,"nb":2,"a":[["biocide/benzoic-acid.html","benzoic acid"],["biocide/carboxy-ptio.html","carboxy-PTIO"]],"b":[["mapped/4_Carbon_Mix.yaml","4 Carbon Mix"],["mapped/Benzoic_Acid.yaml","benzoic acid"]]},{"id":"CHEBI:23066","l":"","na":66,"nb":1,"a":[["antibacterial/cefacetrile.html","cefacetrile"],["antibacterial/cefaclor.html","cefaclor"],["antibacterial/cefadroxil.html","cefadroxil"],["antibacterial/cefaloram.html","cefaloram"],["antibacterial/cefaloridine.html","cefaloridine"],["antibacterial/cefalotin.html","cefalotin"]],"b":[["mapped/Cephalosporin.yaml","Cephalosporin"]]},{"id":"CHEBI:25105","l":"","na":58,"nb":1,"a":[["antibacterial/5-o-mycaminosyltylonolide.html","5-O-mycaminosyltylonolide"],["antibacterial/aplasmomycin.html","(+)-aplasmomycin"],["antibacterial/azithromycin.html","azithromycin"],["antibacterial/boromycin.html","boromycin"],["antibacterial/brefeldin-a.html","brefeldin A"],["antibacterial/cethromycin.html","cethromycin"]],"b":[["mapped/Macrolide_Antibiotic.yaml","Macrolide Antibiotic"]]},{"id":"CHEBI:17334","l":"penicillin","na":38,"nb":1,"a":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/azidocillin.html","azidocillin"],["antibacterial/azlocillin.html","azlocillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/carbenicillin.html","carbenicillin"]],"b":[["mapped/Penicillin.yaml","Penicillin"]]},{"id":"CHEBI:35358","l":"","na":33,"nb":1,"a":[["antibacterial/prontosil.html","prontosil"],["antibacterial/sulfabenzamide.html","sulfabenzamide"],["antibacterial/sulfabromomethazine.html","sulfabromomethazine"],["antibacterial/sulfachloropyridazine.html","sulfachloropyridazine"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfaethoxypyridazine.html","sulfaethoxypyridazine"]],"b":[["mapped/Sulfonamide.yaml","Sulfonamide"]]},{"id":"CHEBI:25000","l":"","na":22,"nb":1,"a":[["antifungal/callipeltin-a.html","callipeltin A"],["antifungal/eugeniin.html","eugeniin"],["antifungal/fenpicoxamid.html","fenpicoxamid"],["antifungal/multiplolide-a.html","multiplolide A"],["antifungal/multiplolide-b.html","multiplolide B"],["antifungal/neothyonidioside.html","neothyonidioside"]],"b":[["mapped/Lactone.yaml","Lactone"]]},{"id":"CHEBI:87228","l":"","na":22,"nb":1,"a":[["antibacterial/sulfabenzamide.html","sulfabenzamide"],["antibacterial/sulfamerazine.html","sulfamerazine"],["antibacterial/sulfamethazine.html","sulfamethazine"],["antibacterial/sulfamethizole.html","sulfamethizole"],["antibacterial/sulfamethoxazole.html","sulfamethoxazole"],["antibacterial/sulfanilamide.html","sulfanilamide"]],"b":[["mapped/Sulfonamide.yaml","Sulfonamide"]]},{"id":"CHEBI:49322","l":"","na":18,"nb":1,"a":[["antimycobacterial/nothramicin.html","nothramicin"],["unspecified/10-carboxy-13-deoxycarminomycin.html","10-carboxy-13-deoxycarminomycin"],["unspecified/10-carboxy-13-deoxydaunorubicin.html","10-carboxy-13-deoxydaunorubicin"],["unspecified/13-deoxycarminomycin.html","13-deoxycarminomycin"],["unspecified/13r-13-dihydrocarminomycin.html","(13R)-13-dihydrocarminomycin"],["unspecified/4-epidoxorubicin.html","4'-epidoxorubicin"]],"b":[["mapped/Anthracycline_Antibiotic.yaml","Anthracycline Antibiotic"]]},{"id":"CHEBI:22507","l":"","na":17,"nb":1,"a":[["antibacterial/astromicin.html","astromicin"],["antibacterial/etimicin.html","etimicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"],["antibacterial/sisomycin.html","sisomycin"]],"b":[["mapped/Aminoglycoside_Antibiotic.yaml","Aminoglycoside Antibiotic"]]},{"id":"CHEBI:49976","l":"zinc dichloride","na":1,"nb":8,"a":[["biocide/zinc-dichloride.html","zinc dichloride"]],"b":[["mapped/MME_Trace_Minerals.yaml","MME Trace Minerals"],["mapped/Mc_trace_minerals_SO4free.yaml","Mc_trace_minerals_SO4free"],["mapped/P-iv_Metal_Solution.yaml","P-IV Metal Solution"],["mapped/Sulfur-free_DL_Minerals.yaml","Sulfur-free DL minerals"],["mapped/Trace_Element_Solution_SL-10.yaml","Trace element solution SL-10"],["mapped/UW_Concentrated_Base_No_Sulfur.yaml","UW concentrated base no sulfur"]]},{"id":"CHEBI:59062","l":"","na":8,"nb":1,"a":[["antibacterial/colistimethate-a.html","colistimethate A"],["antibacterial/colistimethate-b.html","colistimethate B"],["antibacterial/colistin-a-sodium-methanesulfonate.html","colistin A sodium methanesulfonate"],["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b-sodium-methanesulfonate.html","colistin B sodium methanesulfonate"],["antibacterial/colistin-b.html","colistin B"]],"b":[["mapped/Polymyxin.yaml","Polymyxin"]]},{"id":"CHEBI:30769","l":"citric acid","na":1,"nb":6,"a":[["unspecified/citric-acid.html","citric acid"]],"b":[["mapped/Citric_Acid.yaml","Citric acid"],["mapped/Citric_Acid_X_H2o.yaml","Citric acid x H2O"],["mapped/Citric_Acidh2o.yaml","Citric Acid•H2O"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Na2-citrate.yaml","Na2-citrate"],["mapped/Trisodium_Citrate.yaml","Trisodium citrate"]]},{"id":"CHEBI:48923","l":"erythromycin","na":6,"nb":1,"a":[["antibacterial/erythromycin-a.html","erythromycin A"],["unspecified/erythromycin-b.html","erythromycin B"],["unspecified/erythromycin-c.html","erythromycin C"],["unspecified/erythromycin-d.html","erythromycin D"],["unspecified/erythromycin-e.html","erythromycin E"],["unspecified/erythromycin-n-methyl-14c.html","erythromycin-[N-methyl-14C]"]],"b":[["mapped/Erythromycin.yaml","erythromycin"]]},{"id":"CHEBI:24698","l":"hydroxyflavone","na":5,"nb":1,"a":[["antibacterial/ochnaflavone.html","ochnaflavone"],["antiviral/agathisflavone.html","agathisflavone"],["antiviral/amentoflavone.html","amentoflavone"],["antiviral/ginkgetin.html","ginkgetin"],["antiviral/robustaflavone.html","robustaflavone"]],"b":[["mapped/36-Dihydroxyflavone.yaml","3',6-Dihydroxyflavone"]]},{"id":"CHEBI:28600","l":"farnesol","na":5,"nb":1,"a":[["unspecified/2-cis-6-cis-farnesol.html","(2-cis,6-cis)-farnesol"],["unspecified/2-cis-6-trans-farnesol.html","(2-cis,6-trans)-farnesol"],["unspecified/2-trans-6-cis-farnesol.html","(2-trans,6-cis)-farnesol"],["unspecified/2-trans-6-trans-farnesol.html","(2-trans,6-trans)-farnesol"],["unspecified/farnesol.html","farnesol"]],"b":[["mapped/TransTrans-Farnesol.yaml","Trans,Trans-Farnesol"]]},{"id":"CHEBI:33403","l":"elemental sulfur","na":1,"nb":5,"a":[["antifungal/polysulfur.html","polysulfur"]],"b":[["mapped/GYPS.yaml","GYPS"],["mapped/Sulfur.yaml","Sulfur"],["mapped/Sulfur_Powder.yaml","Sulfur (powder)"],["mapped/Sulphur.yaml","Sulphur"],["mapped/Yeast_Extract_Sulfur.yaml","Yeast Extract + Sulfur"]]},{"id":"CHEBI:35273","l":"quaternary ammonium salt","na":5,"nb":1,"a":[["antibacterial/benzethonium-chloride.html","benzethonium chloride"],["antibacterial/quaternium-15.html","quaternium-15"],["antifungal/rezafungin-acetate.html","rezafungin acetate"],["biocide/benzododecinium-bromide.html","benzododecinium bromide"],["biocide/benzododecinium-chloride.html","benzododecinium chloride"]],"b":[["mapped/Tetramethyl_Ammonium.yaml","Tetramethyl ammonium"]]},{"id":"CHEBI:55429","l":"cephamycin","na":4,"nb":1,"a":[["antibacterial/cefminox.html","cefminox"],["antibacterial/cefotetan.html","cefotetan"],["antibacterial/cefoxitin.html","cefoxitin"],["unspecified/cephamycin-c.html","cephamycin C"]],"b":[["mapped/Cephamycin_A.yaml","Cephamycin A"]]},{"id":"CHEBI:17012","l":"N-acetylneuraminic acid","na":3,"nb":1,"a":[["antiviral/n-acetyl-%CE%B1-neuraminic-acid.html","N-acetyl-α-neuraminic acid"],["antiviral/n-acetyl-%CE%B2-neuraminic-acid.html","N-acetyl-β-neuraminic acid"],["antiviral/n-acetylneuraminic-acid.html","N-acetylneuraminic acid"]],"b":[["mapped/N-acetylneuraminic_Acid.yaml","N-acetylneuraminic acid"]]},{"id":"CHEBI:17580","l":"linalool","na":3,"nb":1,"a":[["unspecified/linalool.html","linalool"],["unspecified/r-linalool.html","(R)-linalool"],["unspecified/s-linalool.html","(S)-linalool"]],"b":[["mapped/Linalool.yaml","Linalool"]]},{"id":"CHEBI:22907","l":"","na":3,"nb":1,"a":[["antibacterial/bleomycin-a2.html","bleomycin A2"],["antibacterial/bleomycin.html","bleomycin"],["unspecified/bleomycin-a5.html","bleomycin A5"]],"b":[["mapped/Bleomycin.yaml","Bleomycin"]]},{"id":"CHEBI:25399","l":"","na":3,"nb":1,"a":[["antifungal/m-cresol.html","m-cresol"],["antifungal/o-cresol.html","o-cresol"],["antifungal/p-cresol.html","p-cresol"]],"b":[["mapped/Cresol.yaml","Cresol"]]},{"id":"CHEBI:34118","l":"oct-1-en-3-ol","na":3,"nb":1,"a":[["unspecified/oct-1-en-3-ol.html","oct-1-en-3-ol"],["unspecified/r-oct-1-en-3-ol.html","(R)-oct-1-en-3-ol"],["unspecified/s-oct-1-en-3-ol.html","(S)-oct-1-en-3-ol"]],"b":[["mapped/1-octen-3-ol.yaml","1-octen-3-ol"]]},{"id":"CHEBI:35825","l":"mandelic acid","na":3,"nb":1,"a":[["antibacterial/mandelic-acid.html","mandelic acid"],["antibacterial/r-mandelic-acid.html","(R)-mandelic acid"],["antibacterial/s-mandelic-acid.html","(S)-mandelic acid"]],"b":[["mapped/Mandelic_Acid.yaml","Mandelic acid"]]},{"id":"CHEBI:38319","l":"usnic acid","na":3,"nb":1,"a":[["antifungal/usnic-acid-38319.html","usnic acid"],["antifungal/usnic-acid-38320.html","(+)-usnic acid"],["antifungal/usnic-acid.html","(−)-usnic acid"]],"b":[["mapped/Usnic_Acid.yaml","Usnic Acid"]]},{"id":"CHEBI:48844","l":"roxithromycin","na":3,"nb":1,"a":[["antibacterial/e-roxithromycin.html","(E)-roxithromycin"],["antibacterial/roxithromycin.html","roxithromycin"],["antibacterial/z-roxithromycin.html","(Z)-roxithromycin"]],"b":[["mapped/Roxithromycin.yaml","Roxithromycin"]]},{"id":"CHEBI:83230","l":"","na":3,"nb":1,"a":[["antifungal/pradimicin-a.html","pradimicin A"],["antifungal/pradimicin-b.html","pradimicin B"],["antifungal/pradimicin-c.html","pradimicin C"]],"b":[["mapped/Pradimicin.yaml","Pradimicin"]]},{"id":"CHEBI:17909","l":"polysulfur","na":1,"nb":2,"a":[["antifungal/polysulfur.html","polysulfur"]],"b":[["mapped/Sulfur_Powder.yaml","Sulfur (powder)"],["mapped/Sulphur.yaml","Sulphur"]]},{"id":"CHEBI:24753","l":"","na":2,"nb":1,"a":[["antibacterial/hygromycin-b.html","hygromycin B"],["unspecified/7-o-phosphohygromycin-b.html","7'-O-phosphohygromycin B"]],"b":[["mapped/Hygromycin.yaml","Hygromycin"]]},{"id":"CHEBI:26401","l":"purines","na":2,"nb":1,"a":[["antiviral/mercaptopurine.html","mercaptopurine"],["antiviral/valganciclovir.html","valganciclovir"]],"b":[["mapped/Purines.yaml","Purines"]]},{"id":"CHEBI:2682","l":"amphotericin B","na":1,"nb":2,"a":[["antifungal/amphotericin-b.html","amphotericin B"]],"b":[["mapped/Amphotericin_B.yaml","Amphotericin B"],["unmapped/Amphotericin.yaml","Amphotericin"]]},{"id":"CHEBI:28034","l":"","na":2,"nb":1,"a":[["antifungal/kaempferol-3-o-%CE%B2-d-galactoside.html","kaempferol 3-O-β-D-galactoside"],["antiviral/acacetin-7-o-%CE%B2-d-galactopyranoside.html","acacetin-7-O-β-D-galactopyranoside"]],"b":[["mapped/Beta-D-galactoside.yaml","Beta-D-galactoside"]]},{"id":"CHEBI:28831","l":"","na":1,"nb":2,"a":[["antifungal/4-5-6-7-tetrachloro-2-benzofuran-1-3h-one.html","4,5,6,7-tetrachloro-2-benzofuran-1(3H)-one"]],"b":[["mapped/1-propanolCO2.yaml","1-propanol+CO2"],["mapped/Propan-1-ol.yaml","Propan-1-ol"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":1,"nb":2,"a":[["antibacterial/daptomycin.html","daptomycin"]],"b":[["mapped/Calcium%282%29.yaml","Calcium(2+)"],["mapped/Calcium.yaml","Calcium"]]},{"id":"CHEBI:32150","l":"sodium thiosulfate pentahydrate","na":1,"nb":2,"a":[["antifungal/sodium-thiosulfate-pentahydrate.html","sodium thiosulfate pentahydrate"]],"b":[["mapped/Na2s2o3_X_5_H2o.yaml","Na2S2O3 x 5 H2O"],["mapped/Sodium_Thiosulfate_Pentahydrate.yaml","Sodium Thiosulfate Pentahydrate"]]},{"id":"CHEBI:3508","l":"ceftazidime","na":1,"nb":2,"a":[["antibacterial/ceftazidime.html","ceftazidime"]],"b":[["mapped/Ceftazidime.yaml","Ceftazidime"],["mapped/Ceftazidime_Hydrate.yaml","Ceftazidime hydrate"]]},{"id":"CHEBI:39207","l":"","na":2,"nb":1,"a":[["unspecified/spinosyn-a.html","spinosyn A"],["unspecified/spinosyn-d.html","spinosyn D"]],"b":[["mapped/Spinosyn.yaml","Spinosyn"]]},{"id":"CHEBI:44976","l":"phosphonic acid","na":2,"nb":1,"a":[["antifungal/glyphosate.html","glyphosate"],["antifungal/phosphonic-acid.html","phosphonic acid"]],"b":[["mapped/KH2PO3.yaml","KH2PO3"]]},{"id":"CHEBI:45285","l":"pyrazinecarboxamide","na":2,"nb":1,"a":[["antimycobacterial/n-butyl-5-4-hydroxyphenyl-6-oxo-1-6-dihydropyrazine-2-carboxamide.html","N-butyl-5-(4-hydroxyphenyl)-6-oxo-1,6-dihydropyrazine-2-carboxamide"],["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]],"b":[["mapped/Pyrazinamide.yaml","Pyrazinamide"]]},{"id":"CHEBI:4917","l":"eugenol","na":2,"nb":1,"a":[["antibacterial/dihydroconiferyl-alcohol.html","dihydroconiferyl alcohol"],["antibacterial/eugenol.html","eugenol"]],"b":[["mapped/Eugenol.yaml","Eugenol"]]},{"id":"CHEBI:73908","l":"2,4-diamino-6,7-diisopropylpteridine","na":1,"nb":2,"a":[["antibacterial/2-4-diamino-6-7-diisopropylpteridine.html","2,4-diamino-6,7-diisopropylpteridine"]],"b":[["mapped/24-diamino-67-di-iso-propylpteridine_phosphate.yaml","2,4-diamino-6,7-di-iso-propylpteridine phosphate"],["mapped/Vibriostat.yaml","Vibriostat"]]},{"id":"CHEBI:7524","l":"nerolidol","na":2,"nb":1,"a":[["antifungal/6z-nerolidol.html","(6Z)-nerolidol"],["antifungal/nerolidol.html","nerolidol"]],"b":[["mapped/Nerolidol.yaml","Nerolidol"]]},{"id":"CHEBI:100147","l":"nalidixic acid","na":1,"nb":1,"a":[["antibacterial/nalidixic-acid.html","nalidixic acid"]],"b":[["mapped/Nalidixic_Acid_Sodium_Salt.yaml","Nalidixic acid sodium salt"]]},{"id":"CHEBI:100241","l":"ciprofloxacin","na":1,"nb":1,"a":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]],"b":[["mapped/Ciprofloxacin.yaml","Ciprofloxacin"]]},{"id":"CHEBI:100246","l":"norfloxacin","na":1,"nb":1,"a":[["antibacterial/norfloxacin.html","norfloxacin"]],"b":[["mapped/Norfloxacin.yaml","Norfloxacin"]]},{"id":"CHEBI:102130","l":"sulfamerazine","na":1,"nb":1,"a":[["antibacterial/sulfamerazine.html","sulfamerazine"]],"b":[["mapped/Sulfamerazine.yaml","Sulfamerazine"]]},{"id":"CHEBI:102265","l":"sulfamethazine","na":1,"nb":1,"a":[["antibacterial/sulfamethazine.html","sulfamethazine"]],"b":[["mapped/Sulfamethazine_Sodium_Salt.yaml","Sulfamethazine sodium salt"]]},{"id":"CHEBI:102484","l":"sulfisoxazole","na":1,"nb":1,"a":[["antibacterial/sulfisoxazole.html","sulfisoxazole"]],"b":[["mapped/Sulfisoxazole.yaml","Sulfisoxazole"]]},{"id":"CHEBI:113455","l":"sodium benzoate","na":1,"nb":1,"a":[["biocide/sodium-benzoate.html","sodium benzoate"]],"b":[["mapped/Na-benzoate.yaml","Na-benzoate"]]},{"id":"CHEBI:116278","l":"lomefloxacin","na":1,"nb":1,"a":[["antimycobacterial/lomefloxacin.html","lomefloxacin"]],"b":[["mapped/Lomefloxacin.yaml","Lomefloxacin"]]},{"id":"CHEBI:124991","l":"cefalotin","na":1,"nb":1,"a":[["antibacterial/cefalotin.html","cefalotin"]],"b":[["mapped/Cefalotin.yaml","Cefalotin"]]},{"id":"CHEBI:132106","l":"sodium propionate","na":1,"nb":1,"a":[["antifungal/sodium-propionate.html","sodium propionate"]],"b":[["mapped/Na-propionate.yaml","Na-propionate"]]},{"id":"CHEBI:132112","l":"sodium thiosulfate","na":1,"nb":1,"a":[["antifungal/sodium-thiosulfate.html","sodium thiosulfate"]],"b":[["mapped/Na2s2o3.yaml","Na2S2O3"]]},{"id":"CHEBI:134107","l":"CHIR-090","na":1,"nb":1,"a":[["unspecified/chir-090.html","CHIR-090"]],"b":[["mapped/CHIR-090.yaml","CHIR-090"]]},{"id":"CHEBI:134606","l":"toyocamycin","na":1,"nb":1,"a":[["antifungal/toyocamycin.html","toyocamycin"]],"b":[["mapped/Toyocamycin.yaml","Toyocamycin"]]},{"id":"CHEBI:134742","l":"delamanid","na":1,"nb":1,"a":[["antibacterial/delamanid.html","delamanid"]],"b":[["mapped/Delamanid.yaml","Delamanid"]]},{"id":"CHEBI:135817","l":"cefminox","na":1,"nb":1,"a":[["antibacterial/cefminox.html","cefminox"]],"b":[["mapped/Cefminox.yaml","Cefminox"]]},{"id":"CHEBI:135928","l":"doripenem","na":1,"nb":1,"a":[["antibacterial/doripenem.html","doripenem"]],"b":[["mapped/Doripenem.yaml","Doripenem"]]},{"id":"CHEBI:136609","l":"theaflavin","na":1,"nb":1,"a":[["antibacterial/theaflavin.html","theaflavin"]],"b":[["mapped/Theaflavin.yaml","Theaflavin"]]},{"id":"CHEBI:141155","l":"dimetridazole","na":1,"nb":1,"a":[["antiprotozoal/dimetridazole.html","dimetridazole"]],"b":[["mapped/Dimetridazole.yaml","Dimetridazole"]]},{"id":"CHEBI:141991","l":"cinnamycin","na":1,"nb":1,"a":[["unspecified/cinnamycin.html","cinnamycin"]],"b":[["mapped/Cinnamycin.yaml","Cinnamycin"]]},{"id":"CHEBI:143552","l":"hexanol","na":1,"nb":1,"a":[["antibacterial/hexan-1-ol.html","hexan-1-ol"]],"b":[["mapped/Hexanol.yaml","hexanol"]]},{"id":"CHEBI:149836","l":"tigecycline","na":1,"nb":1,"a":[["antibacterial/tigecycline.html","tigecycline"]],"b":[["mapped/Tigecycline.yaml","Tigecycline"]]},{"id":"CHEBI:15353","l":"blasticidin S","na":1,"nb":1,"a":[["antifungal/blasticidin-s.html","blasticidin S"]],"b":[["mapped/Blasticidin_S.yaml","Blasticidin S"]]},{"id":"CHEBI:15366","l":"acetic acid","na":1,"nb":1,"a":[["biocide/acetic-acid.html","acetic acid"]],"b":[["mapped/Acetic_Acid.yaml","Acetic acid"]]},{"id":"CHEBI:15369","l":"actinomycin","na":1,"nb":1,"a":[["antibacterial/actinomycin-d.html","actinomycin D"]],"b":[["mapped/Actinomycin_A.yaml","Actinomycin A"]]},{"id":"CHEBI:15399","l":"(+)-carvone","na":1,"nb":1,"a":[["antifungal/carvone.html","(+)-carvone"]],"b":[["mapped/D_-carvone.yaml","D(+)-Carvone"]]},{"id":"CHEBI:156387","l":"aspyrone","na":1,"nb":1,"a":[["antibacterial/aspyrone.html","aspyrone"]],"b":[["mapped/4-hydroxyphenyl_Acetic_Acid.yaml","4-Hydroxyphenyl acetic acid"]]},{"id":"CHEBI:156421","l":"","na":1,"nb":1,"a":[["antibacterial/celesticetin.html","celesticetin"]],"b":[["mapped/Celesticetin.yaml","Celesticetin"]]},{"id":"CHEBI:156450","l":"thiolutin","na":1,"nb":1,"a":[["antibacterial/thiolutin.html","thiolutin"]],"b":[["mapped/Thiolutin.yaml","Thiolutin"]]},{"id":"CHEBI:156452","l":"aureothricin","na":1,"nb":1,"a":[["antibacterial/aureothricin.html","aureothricin"]],"b":[["mapped/Aureothricin.yaml","Aureothricin"]]},{"id":"CHEBI:156550","l":"pyrrolomycin A","na":1,"nb":1,"a":[["antibacterial/pyrrolomycin-a.html","pyrrolomycin A"]],"b":[["mapped/Pyrrolomycin_A.yaml","Pyrrolomycin A"]]},{"id":"CHEBI:157175","l":"enoxacin","na":1,"nb":1,"a":[["antibacterial/enoxacin.html","enoxacin"]],"b":[["mapped/Enoxacin.yaml","Enoxacin"]]},{"id":"CHEBI:15756","l":"palmitic acid","na":1,"nb":1,"a":[["antibacterial/palmitic-acid.html","palmitic acid"]],"b":[["mapped/Palmitic_Acid.yaml","Palmitic acid"]]},{"id":"CHEBI:157683","l":"althiomycin","na":1,"nb":1,"a":[["antibacterial/althiomycin.html","althiomycin"]],"b":[["mapped/Althiomycin.yaml","Althiomycin"]]},{"id":"CHEBI:15782","l":"viomycin","na":1,"nb":1,"a":[["antimycobacterial/viomycin.html","viomycin"]],"b":[["mapped/Viomycin.yaml","Viomycin"]]},{"id":"CHEBI:15837","l":"isoamylol","na":1,"nb":1,"a":[["antifungal/isoamylol.html","isoamylol"]],"b":[["mapped/3-methyl-1-butanol.yaml","3-methyl-1-butanol"]]},{"id":"CHEBI:15882","l":"phenol","na":1,"nb":1,"a":[["biocide/phenol.html","phenol"]],"b":[["mapped/Phenol.yaml","Phenol"]]},{"id":"CHEBI:16016","l":"dihydroxyacetone","na":1,"nb":1,"a":[["antifungal/dihydroxyacetone.html","dihydroxyacetone"]],"b":[["mapped/Dihydroxyacetone.yaml","Dihydroxyacetone"]]},{"id":"CHEBI:16118","l":"berberine","na":1,"nb":1,"a":[["antifungal/berberine.html","berberine"]],"b":[["mapped/Berberine.yaml","Berberine"]]},{"id":"CHEBI:161680","l":"aztreonam","na":1,"nb":1,"a":[["antibacterial/aztreonam.html","aztreonam"]],"b":[["mapped/Aztreonam.yaml","Aztreonam"]]},{"id":"CHEBI:16196","l":"oleic acid","na":1,"nb":1,"a":[["antibacterial/oleic-acid.html","oleic acid"]],"b":[["mapped/Oleic_Acid.yaml","Oleic acid"]]},{"id":"CHEBI:16236","l":"ethanol","na":1,"nb":1,"a":[["biocide/ethanol.html","ethanol"]],"b":[["mapped/Ethanol.yaml","Ethanol"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":1,"nb":1,"a":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]],"b":[["mapped/Hydrogen_Peroxide.yaml","Hydrogen peroxide"]]},{"id":"CHEBI:16243","l":"quercetin","na":1,"nb":1,"a":[["antibacterial/quercetin.html","quercetin"]],"b":[["mapped/Quercetin.yaml","Quercetin"]]},{"id":"CHEBI:16247","l":"","na":1,"nb":1,"a":[["antifungal/miltefosine.html","miltefosine"]],"b":[["mapped/Bacto_Soytone.yaml","Bacto Soytone"]]},{"id":"CHEBI:164200","l":"triclosan","na":1,"nb":1,"a":[["antibacterial/triclosan.html","triclosan"]],"b":[["mapped/Irgasan.yaml","Irgasan"]]},{"id":"CHEBI:16547","l":"coniferyl aldehyde","na":1,"nb":1,"a":[["antifungal/coniferyl-aldehyde.html","coniferyl aldehyde"]],"b":[["mapped/Coniferyl_Aldehyde.yaml","coniferyl aldehyde"]]},{"id":"CHEBI:16619","l":"(2-trans,6-trans)-farnesol","na":1,"nb":1,"a":[["unspecified/2-trans-6-trans-farnesol.html","(2-trans,6-trans)-farnesol"]],"b":[["mapped/TransTrans-Farnesol.yaml","Trans,Trans-Farnesol"]]},{"id":"CHEBI:166872","l":"nucleocidin","na":1,"nb":1,"a":[["antibacterial/nucleocidin.html","nucleocidin"]],"b":[["mapped/Nucleocidin.yaml","Nucleocidin"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":1,"nb":1,"a":[["biocide/formaldehyde.html","formaldehyde"]],"b":[["mapped/Formaldehyde.yaml","Formaldehyde"]]},{"id":"CHEBI:16869","l":"oleandomycin","na":1,"nb":1,"a":[["antibacterial/oleandomycin.html","oleandomycin"]],"b":[["mapped/Oleandomycin.yaml","Oleandomycin"]]},{"id":"CHEBI:16914","l":"salicylic acid","na":1,"nb":1,"a":[["antifungal/salicylic-acid.html","salicylic acid"]],"b":[["mapped/Salicylic_Acid.yaml","Salicylic acid"]]},{"id":"CHEBI:16976","l":"hygromycin B","na":1,"nb":1,"a":[["antibacterial/hygromycin-b.html","hygromycin B"]],"b":[["mapped/Hygromycin_B.yaml","Hygromycin B"]]},{"id":"CHEBI:17043","l":"biphenyl-2-ol","na":1,"nb":1,"a":[["antifungal/biphenyl-2-ol.html","biphenyl-2-ol"]],"b":[["mapped/11-Biphenyl-2-ol.yaml","[1,1′-Biphenyl]-2-ol"]]},{"id":"CHEBI:17076","l":"streptomycin","na":1,"nb":1,"a":[["antibacterial/streptomycin.html","streptomycin"]],"b":[["mapped/Streptomycin.yaml","Streptomycin"]]},{"id":"CHEBI:17097","l":"biphenyl","na":1,"nb":1,"a":[["antifungal/biphenyl.html","biphenyl"]],"b":[["mapped/Biphenyl.yaml","Biphenyl"]]},{"id":"CHEBI:171741","l":"cerulenin","na":1,"nb":1,"a":[["antifungal/cerulenin.html","cerulenin"]],"b":[["mapped/Cerulenin.yaml","Cerulenin"]]},{"id":"CHEBI:17484","l":"benzyl isothiocyanate","na":1,"nb":1,"a":[["antibacterial/benzyl-isothiocyanate.html","benzyl isothiocyanate"]],"b":[["mapped/Benzyl_Isothiocyanate.yaml","Benzyl isothiocyanate"]]},{"id":"CHEBI:17642","l":"pentachlorophenol","na":1,"nb":1,"a":[["antifungal/pentachlorophenol.html","pentachlorophenol"]],"b":[["mapped/Pentachlorophenol.yaml","Pentachlorophenol"]]},{"id":"CHEBI:17698","l":"chloramphenicol","na":1,"nb":1,"a":[["antibacterial/chloramphenicol.html","chloramphenicol"]],"b":[["mapped/Chloramphenicol.yaml","Chloramphenicol"]]},{"id":"CHEBI:17833","l":"","na":1,"nb":1,"a":[["antibacterial/gentamycin-a.html","gentamycin A"]],"b":[["mapped/Gentamicin.yaml","Gentamicin"]]},{"id":"CHEBI:17847","l":"p-cresol","na":1,"nb":1,"a":[["antifungal/p-cresol.html","p-cresol"]],"b":[["mapped/4-Cresol.yaml","4-Cresol"]]},{"id":"CHEBI:17939","l":"puromycin","na":1,"nb":1,"a":[["antibacterial/puromycin.html","puromycin"]],"b":[["mapped/Puromycin.yaml","Puromycin"]]},{"id":"CHEBI:18145","l":"(R,R,R)-α-tocopherol","na":1,"nb":1,"a":[["antiviral/r-r-r-%CE%B1-tocopherol.html","(R,R,R)-α-tocopherol"]],"b":[["mapped/Alpha-Tocopherol.yaml","alpha-Tocopherol"]]},{"id":"CHEBI:193161","l":"isovanillin","na":1,"nb":1,"a":[["antifungal/isovanillin.html","isovanillin"]],"b":[["mapped/Isovanillin.yaml","Isovanillin"]]},{"id":"CHEBI:197511","l":"","na":1,"nb":1,"a":[["antiviral/docosan-1-ol.html","docosan-1-ol"]],"b":[["mapped/Docosanol.yaml","Docosanol"]]},{"id":"CHEBI:201898","l":"Magainin I","na":1,"nb":1,"a":[["antibacterial/magainin-1.html","magainin 1"]],"b":[["mapped/Magainin_I.yaml","Magainin I"]]},{"id":"CHEBI:204928","l":"cefotaxime","na":1,"nb":1,"a":[["antibacterial/cefotaxime.html","cefotaxime"]],"b":[["mapped/Cefotaxime.yaml","Cefotaxime"]]},{"id":"CHEBI:209807","l":"cefoxitin","na":1,"nb":1,"a":[["antibacterial/cefoxitin.html","cefoxitin"]],"b":[["mapped/Cefoxitin.yaml","Cefoxitin"]]},{"id":"CHEBI:220052","l":"Pyrrolomycin B","na":1,"nb":1,"a":[["antibacterial/pyrrolomycin-b.html","pyrrolomycin B"]],"b":[["mapped/Pyrrolomycin_B.yaml","Pyrrolomycin B"]]},{"id":"CHEBI:24536","l":"hexachlorocyclohexane","na":1,"nb":1,"a":[["antibacterial/%CE%B3-hexachlorocyclohexane.html","γ-hexachlorocyclohexane"]],"b":[["mapped/Hexachlorocyclo-hexane.yaml","Hexachlorocyclo-hexane"]]},{"id":"CHEBI:24750","l":"","na":1,"nb":1,"a":[["unspecified/5-hydroxystreptomycin.html","5'-hydroxystreptomycin"]],"b":[["mapped/Hydroxystreptomycin.yaml","Hydroxystreptomycin"]]},{"id":"CHEBI:2596","l":"alliin","na":1,"nb":1,"a":[["unspecified/alliin.html","alliin"]],"b":[["mapped/L-alliin.yaml","L-alliin"]]},{"id":"CHEBI:2637","l":"amikacin","na":1,"nb":1,"a":[["antibacterial/amikacin.html","amikacin"]],"b":[["mapped/Amikacin.yaml","Amikacin"]]},{"id":"CHEBI:2638","l":"amikacin disulfate","na":1,"nb":1,"a":[["antibacterial/amikacin-disulfate.html","amikacin disulfate"]],"b":[["mapped/Amikacin_Disulfate_Salt.yaml","Amikacin disulfate salt"]]},{"id":"CHEBI:2676","l":"amoxicillin","na":1,"nb":1,"a":[["antibacterial/amoxicillin.html","amoxicillin"]],"b":[["mapped/Amoxicillin.yaml","Amoxicillin"]]},{"id":"CHEBI:27446","l":"phenoxymethylpenicillin","na":1,"nb":1,"a":[["antibacterial/phenoxymethylpenicillin.html","phenoxymethylpenicillin"]],"b":[["mapped/Phenoxymethylpenicillin.yaml","Phenoxymethylpenicillin"]]},{"id":"CHEBI:27565","l":"4-aminosalicylic acid","na":1,"nb":1,"a":[["antimycobacterial/4-aminosalicylic-acid.html","4-aminosalicylic acid"]],"b":[["mapped/Para-aminosalicylic_Acid.yaml","para-aminosalicylic acid"]]},{"id":"CHEBI:27617","l":"monensin A","na":1,"nb":1,"a":[["antifungal/monensin-a.html","monensin A"]],"b":[["mapped/Monensin.yaml","Monensin"]]},{"id":"CHEBI:2762","l":"antimycin A","na":1,"nb":1,"a":[["antifungal/antimycin-a.html","antimycin A"]],"b":[["mapped/Antimycin_A.yaml","Antimycin A"]]},{"id":"CHEBI:27641","l":"cycloheximide","na":1,"nb":1,"a":[["antifungal/cycloheximide.html","cycloheximide"]],"b":[["mapped/Cycloheximid.yaml","Cycloheximid"]]},{"id":"CHEBI:27644","l":"chlortetracycline","na":1,"nb":1,"a":[["antibacterial/chlortetracycline.html","chlortetracycline"]],"b":[["mapped/Chlortetracycline.yaml","Chlortetracycline"]]},{"id":"CHEBI:2766","l":"aphidicolin","na":1,"nb":1,"a":[["antiviral/aphidicolin.html","aphidicolin"]],"b":[["mapped/Aphidicolin.yaml","Aphidicolin"]]},{"id":"CHEBI:27666","l":"actinomycin D","na":1,"nb":1,"a":[["antibacterial/actinomycin-d.html","actinomycin D"]],"b":[["mapped/Actinomycin_D.yaml","Actinomycin D"]]},{"id":"CHEBI:27701","l":"oxytetracycline","na":1,"nb":1,"a":[["antibacterial/oxytetracycline.html","oxytetracycline"]],"b":[["mapped/Oxytetracycline.yaml","Oxytetracycline"]]},{"id":"CHEBI:278547","l":"sodium azide","na":1,"nb":1,"a":[["antibacterial/sodium-azide.html","sodium azide"]],"b":[["mapped/Sodium_Azide.yaml","Sodium azide"]]},{"id":"CHEBI:27856","l":"","na":1,"nb":1,"a":[["unspecified/acetylblasticidin-s.html","acetylblasticidin S"]],"b":[["mapped/Acetamide.yaml","Acetamide"]]},{"id":"CHEBI:27864","l":"2,6-dichloro-4-nitroaniline","na":1,"nb":1,"a":[["antifungal/2-6-dichloro-4-nitroaniline.html","2,6-dichloro-4-nitroaniline"]],"b":[["mapped/Dichloran_02_in_ethanol.yaml","Dichloran (0.2% in ethanol)"]]},{"id":"CHEBI:2790","l":"apramycin","na":1,"nb":1,"a":[["antibacterial/apramycin.html","apramycin"]],"b":[["mapped/Apramycin.yaml","Apramycin"]]},{"id":"CHEBI:27902","l":"tetracycline","na":1,"nb":1,"a":[["antibacterial/tetracycline.html","tetracycline"]],"b":[["mapped/Tetracycline.yaml","Tetracycline"]]},{"id":"CHEBI:27949","l":"(E)-sinapaldehyde","na":1,"nb":1,"a":[["antifungal/e-sinapaldehyde.html","(E)-sinapaldehyde"]],"b":[["mapped/Sinapinaldehyde.yaml","sinapinaldehyde"]]},{"id":"CHEBI:27965","l":"conessine","na":1,"nb":1,"a":[["antibacterial/conessine.html","conessine"]],"b":[["mapped/Conessine.yaml","Conessine"]]},{"id":"CHEBI:28001","l":"vancomycin","na":1,"nb":1,"a":[["antibacterial/vancomycin.html","vancomycin"]],"b":[["mapped/Vancomycin.yaml","Vancomycin"]]},{"id":"CHEBI:28077","l":"rifampicin","na":1,"nb":1,"a":[["antimycobacterial/rifampicin.html","rifampicin"]],"b":[["mapped/Rifampicin.yaml","Rifampicin"]]},{"id":"CHEBI:28121","l":"harmine","na":1,"nb":1,"a":[["antiviral/harmine.html","harmine"]],"b":[["mapped/Harmine.yaml","Harmine"]]},{"id":"CHEBI:28196","l":"erythromycin B","na":1,"nb":1,"a":[["unspecified/erythromycin-b.html","erythromycin B"]],"b":[["mapped/Erythromycin_B.yaml","Erythromycin B"]]},{"id":"CHEBI:28368","l":"novobiocin","na":1,"nb":1,"a":[["antibacterial/novobiocin.html","novobiocin"]],"b":[["mapped/Novobiocin.yaml","Novobiocin"]]},{"id":"CHEBI:28460","l":"maltotetraose","na":1,"nb":1,"a":[["antibacterial/maltotetraose.html","maltotetraose"]],"b":[["mapped/Maltotetraose.yaml","Maltotetraose"]]},{"id":"CHEBI:28591","l":"guaiacol","na":1,"nb":1,"a":[["biocide/guaiacol.html","guaiacol"]],"b":[["mapped/Guaiacol.yaml","Guaiacol"]]},{"id":"CHEBI:28631","l":"3-phenylpropionic acid","na":1,"nb":1,"a":[["antifungal/3-phenylpropionic-acid.html","3-phenylpropionic acid"]],"b":[["mapped/Phenyl_Propionic_Acid.yaml","Phenyl propionic acid"]]},{"id":"CHEBI:28748","l":"doxorubicin","na":1,"nb":1,"a":[["unspecified/doxorubicin.html","doxorubicin"]],"b":[["mapped/Doxorubicin.yaml","Doxorubicin"]]},{"id":"CHEBI:28837","l":"octanoic acid","na":1,"nb":1,"a":[["antibacterial/octanoic-acid.html","octanoic acid"]],"b":[["mapped/Octanoic_Acid.yaml","Octanoic acid"]]},{"id":"CHEBI:28864","l":"tobramycin","na":1,"nb":1,"a":[["antibacterial/tobramycin.html","tobramycin"]],"b":[["mapped/Tobramycin.yaml","Tobramycin"]]},{"id":"CHEBI:28908","l":"bambermycin","na":1,"nb":1,"a":[["unspecified/bambermycin.html","bambermycin"]],"b":[["mapped/Flavomycin.yaml","Flavomycin"]]},{"id":"CHEBI:28915","l":"fosfomycin","na":1,"nb":1,"a":[["antibacterial/fosfomycin.html","fosfomycin"]],"b":[["mapped/Fosfomycin.yaml","Fosfomycin"]]},{"id":"CHEBI:28948","l":"gramine","na":1,"nb":1,"a":[["antibacterial/gramine.html","gramine"]],"b":[["mapped/Gramine.yaml","Gramine"]]},{"id":"CHEBI:28971","l":"ampicillin","na":1,"nb":1,"a":[["antibacterial/ampicillin.html","ampicillin"]],"b":[["mapped/Ampicillin.yaml","Ampicillin"]]},{"id":"CHEBI:29007","l":"ceftriaxone","na":1,"nb":1,"a":[["antibacterial/ceftriaxone.html","ceftriaxone"]],"b":[["mapped/Ceftriaxone.yaml","Ceftriaxone"]]},{"id":"CHEBI:29013","l":"fusidic acid","na":1,"nb":1,"a":[["antibacterial/fusidic-acid.html","fusidic acid"]],"b":[["mapped/Fusidic_Acid_Sodium_Salt.yaml","Fusidic acid sodium salt"]]},{"id":"CHEBI:2955","l":"azithromycin","na":1,"nb":1,"a":[["antibacterial/azithromycin.html","azithromycin"]],"b":[["mapped/Azithromycin.yaml","Azithromycin"]]},{"id":"CHEBI:2956","l":"azlocillin","na":1,"nb":1,"a":[["antibacterial/azlocillin.html","azlocillin"]],"b":[["mapped/Azlocillin.yaml","azlocillin"]]},{"id":"CHEBI:29582","l":"ascomycin","na":1,"nb":1,"a":[["antifungal/ascomycin.html","ascomycin"]],"b":[["mapped/Ascomycin.yaml","Ascomycin"]]},{"id":"CHEBI:29649","l":"narbomycin","na":1,"nb":1,"a":[["antibacterial/narbomycin.html","narbomycin"]],"b":[["mapped/Narbomycin.yaml","Narbomycin"]]},{"id":"CHEBI:29670","l":"Ramoplanin","na":1,"nb":1,"a":[["antibacterial/ramoplanin.html","ramoplanin"]],"b":[["mapped/Ramoplanin.yaml","Ramoplanin"]]},{"id":"CHEBI:29673","l":"rifamycin SV","na":1,"nb":1,"a":[["antimycobacterial/rifamycin-sv.html","rifamycin SV"]],"b":[["mapped/Rifamycin_Sv.yaml","Rifamycin Sv"]]},{"id":"CHEBI:29678","l":"sodium arsenite","na":1,"nb":1,"a":[["antibacterial/sodium-arsenite.html","sodium arsenite"]],"b":[["mapped/Sodium_M-arsenite.yaml","Sodium m-arsenite"]]},{"id":"CHEBI:29687","l":"","na":1,"nb":1,"a":[["antibacterial/teicoplanin.html","teicoplanin"]],"b":[["mapped/Teicoplanin.yaml","Teicoplanin"]]},{"id":"CHEBI:29693","l":"thiostrepton","na":1,"nb":1,"a":[["antibacterial/thiostrepton.html","thiostrepton"]],"b":[["mapped/Thiostrepton.yaml","Thiostrepton"]]},{"id":"CHEBI:29699","l":"","na":1,"nb":1,"a":[["antibacterial/tunicamycin.html","tunicamycin"]],"b":[["mapped/Tunicamycin.yaml","Tunicamycin"]]},{"id":"CHEBI:2979","l":"baicalein","na":1,"nb":1,"a":[["antibacterial/baicalein.html","baicalein"]],"b":[["mapped/Baicalein.yaml","Baicalein"]]},{"id":"CHEBI:3020","l":"","na":1,"nb":1,"a":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"]],"b":[["mapped/Benzalkonium_Chloride.yaml","Benzalkonium Chloride"]]},{"id":"CHEBI:30751","l":"formic acid","na":1,"nb":1,"a":[["antibacterial/formic-acid.html","formic acid"]],"b":[["mapped/Formic_Acid.yaml","Formic acid"]]},{"id":"CHEBI:30768","l":"propionic acid","na":1,"nb":1,"a":[["antifungal/propionic-acid.html","propionic acid"]],"b":[["mapped/Propionic_Acid.yaml","Propionic acid"]]},{"id":"CHEBI:30805","l":"dodecanoic acid","na":1,"nb":1,"a":[["antibacterial/dodecanoic-acid.html","dodecanoic acid"]],"b":[["mapped/Lauric_Acid.yaml","Lauric acid"]]},{"id":"CHEBI:30813","l":"decanoic acid","na":1,"nb":1,"a":[["antibacterial/decanoic-acid.html","decanoic acid"]],"b":[["mapped/Decanoic_Acid.yaml","Decanoic acid"]]},{"id":"CHEBI:31168","l":"spiramycin II","na":1,"nb":1,"a":[["antibacterial/spiramycin-ii.html","spiramycin II"]],"b":[["mapped/Spiramycin_II.yaml","Spiramycin II"]]},{"id":"CHEBI:31264","l":"benzethonium chloride","na":1,"nb":1,"a":[["antibacterial/benzethonium-chloride.html","benzethonium chloride"]],"b":[["mapped/Benzethonium_Chloride.yaml","Benzethonium chloride"]]},{"id":"CHEBI:31359","l":"carminomycin","na":1,"nb":1,"a":[["unspecified/carminomycin.html","carminomycin"]],"b":[["mapped/Carminomycin.yaml","Carminomycin"]]},{"id":"CHEBI:31810","l":"fleroxacin","na":1,"nb":1,"a":[["antibacterial/fleroxacin.html","fleroxacin"]],"b":[["mapped/Fleroxacin.yaml","Fleroxacin"]]},{"id":"CHEBI:31845","l":"Midecamycin","na":1,"nb":1,"a":[["antibacterial/midecamycin.html","midecamycin"]],"b":[["mapped/Midecamycin.yaml","Midecamycin"]]},{"id":"CHEBI:31908","l":"Niddamycin","na":1,"nb":1,"a":[["antibacterial/niddamycin.html","niddamycin"]],"b":[["mapped/Niddamycin.yaml","Niddamycin"]]},{"id":"CHEBI:32146","l":"sodium hypochlorite","na":1,"nb":1,"a":[["biocide/sodium-hypochlorite.html","sodium hypochlorite"]],"b":[["mapped/Sodium_Hypochlorite.yaml","Sodium hypochlorite"]]},{"id":"CHEBI:32161","l":"sulfadimethoxine","na":1,"nb":1,"a":[["unspecified/sulfadimethoxine.html","sulfadimethoxine"]],"b":[["mapped/Sulfadimethoxine.yaml","Sulfadimethoxine"]]},{"id":"CHEBI:3259","l":"CCCP","na":1,"nb":1,"a":[["antibacterial/cccp.html","CCCP"]],"b":[["mapped/CCCP.yaml","CCCP"]]},{"id":"CHEBI:327119","l":"azetidin-2-one","na":1,"nb":1,"a":[["unspecified/azetidin-2-one.html","azetidin-2-one"]],"b":[["mapped/2-Azetidinone.yaml","2-Azetidinone"]]},{"id":"CHEBI:32800","l":"(S)-mandelic acid","na":1,"nb":1,"a":[["antibacterial/s-mandelic-acid.html","(S)-mandelic acid"]],"b":[["mapped/%28S%29-mandelic_Acid.yaml","(S)-mandelic Acid"]]},{"id":"CHEBI:338412","l":"(-)-anisomycin","na":1,"nb":1,"a":[["antiviral/anisomycin.html","(−)-anisomycin"]],"b":[["mapped/%28-%29-anisomycin.yaml","(-)-anisomycin"]]},{"id":"CHEBI:3393","l":"carbenicillin","na":1,"nb":1,"a":[["antibacterial/carbenicillin.html","carbenicillin"]],"b":[["mapped/Carbenicillin.yaml","Carbenicillin"]]},{"id":"CHEBI:34730","l":"doxycycline hyclate","na":1,"nb":1,"a":[["antibacterial/doxycycline-hyclate.html","doxycycline hyclate"]],"b":[["mapped/Doxycycline_Hyclate.yaml","Doxycycline hyclate"]]},{"id":"CHEBI:3478","l":"cefaclor","na":1,"nb":1,"a":[["antibacterial/cefaclor.html","cefaclor"]],"b":[["mapped/Cefaclor.yaml","Cefaclor"]]},{"id":"CHEBI:3479","l":"cefadroxil","na":1,"nb":1,"a":[["antibacterial/cefadroxil.html","cefadroxil"]],"b":[["mapped/Cefadroxil.yaml","Cefadroxil"]]},{"id":"CHEBI:3480","l":"cefamandole","na":1,"nb":1,"a":[["antibacterial/cefamandole.html","cefamandole"]],"b":[["mapped/Cefamandole.yaml","Cefamandole"]]},{"id":"CHEBI:3489","l":"cefmetazole","na":1,"nb":1,"a":[["antibacterial/cefmetazole.html","cefmetazole"]],"b":[["mapped/Cefmetazole.yaml","Cefmetazole"]]},{"id":"CHEBI:3493","l":"cefoperazone","na":1,"nb":1,"a":[["antibacterial/cefoperazone.html","cefoperazone"]],"b":[["mapped/Cefoperazone.yaml","Cefoperazone"]]},{"id":"CHEBI:3499","l":"cefotetan","na":1,"nb":1,"a":[["antibacterial/cefotetan.html","cefotetan"]],"b":[["mapped/Cefotetan.yaml","Cefotetan"]]},{"id":"CHEBI:3504","l":"cefpodoxime","na":1,"nb":1,"a":[["antibacterial/cefpodoxime.html","cefpodoxime"]],"b":[["mapped/Cefpodoxime.yaml","Cefpodoxime"]]},{"id":"CHEBI:3506","l":"cefprozil","na":1,"nb":1,"a":[["antibacterial/cefprozil.html","cefprozil"]],"b":[["mapped/Cefprozil.yaml","Cefprozil"]]},{"id":"CHEBI:3515","l":"cefuroxime","na":1,"nb":1,"a":[["antibacterial/cefuroxime.html","cefuroxime"]],"b":[["mapped/Cefuroxime.yaml","Cefuroxime"]]},{"id":"CHEBI:3534","l":"cephalexin","na":1,"nb":1,"a":[["antibacterial/cephalexin.html","cephalexin"]],"b":[["mapped/Cephalexin.yaml","Cephalexin"]]},{"id":"CHEBI:3537","l":"cefaloridine","na":1,"nb":1,"a":[["antibacterial/cefaloridine.html","cefaloridine"]],"b":[["mapped/Cefaloridine.yaml","Cefaloridine"]]},{"id":"CHEBI:3547","l":"cephradine","na":1,"nb":1,"a":[["antibacterial/cephradine.html","cephradine"]],"b":[["mapped/Cephradine.yaml","Cephradine"]]},{"id":"CHEBI:355510","l":"cefotiam","na":1,"nb":1,"a":[["antibacterial/cefotiam.html","cefotiam"]],"b":[["mapped/Cefotiam.yaml","Cefotiam"]]},{"id":"CHEBI:35720","l":"enrofloxacin","na":1,"nb":1,"a":[["antibacterial/enrofloxacin.html","enrofloxacin"]],"b":[["mapped/Enrofloxacin.yaml","Enrofloxacin"]]},{"id":"CHEBI:36336","l":"","na":1,"nb":1,"a":[["antiprotozoal/suramin.html","suramin"]],"b":[["mapped/Naphthalene_Sulfonic_Acid.yaml","Naphthalene sulfonic acid"]]},{"id":"CHEBI:3649","l":"chlorpromazine hydrochloride","na":1,"nb":1,"a":[["antiviral/chlorpromazine-hydrochloride.html","chlorpromazine hydrochloride"]],"b":[["mapped/Chlorpromazine_Hydrochloride.yaml","Chlorpromazine hydrochloride"]]},{"id":"CHEBI:3687","l":"chrysophanol","na":1,"nb":1,"a":[["antiviral/chrysophanol.html","chrysophanol"]],"b":[["mapped/Chrysophanol.yaml","Chrysophanol"]]},{"id":"CHEBI:3716","l":"cinoxacin","na":1,"nb":1,"a":[["antibacterial/cinoxacin.html","cinoxacin"]],"b":[["mapped/Cinoxacin.yaml","Cinoxacin"]]},{"id":"CHEBI:3732","l":"clarithromycin","na":1,"nb":1,"a":[["antibacterial/clarithromycin.html","clarithromycin"]],"b":[["mapped/Clarithromycin.yaml","Clarithromycin"]]},{"id":"CHEBI:3745","l":"clindamycin","na":1,"nb":1,"a":[["antibacterial/clindamycin.html","clindamycin"]],"b":[["mapped/Clindamycin.yaml","Clindamycin"]]},{"id":"CHEBI:3749","l":"clofazimine","na":1,"nb":1,"a":[["antimycobacterial/clofazimine.html","clofazimine"]],"b":[["mapped/Clofazimine.yaml","Clofazimine"]]},{"id":"CHEBI:3764","l":"clotrimazole","na":1,"nb":1,"a":[["antifungal/clotrimazole.html","clotrimazole"]],"b":[["mapped/Clotrimazole.yaml","Clotrimazole"]]},{"id":"CHEBI:37868","l":"octanol","na":1,"nb":1,"a":[["antifungal/octan-1-ol.html","octan-1-ol"]],"b":[["mapped/Octanol.yaml","octanol"]]},{"id":"CHEBI:37923","l":"astromicin","na":1,"nb":1,"a":[["antibacterial/astromicin.html","astromicin"]],"b":[["mapped/Astromicin.yaml","Astromicin"]]},{"id":"CHEBI:38167","l":"physcion","na":1,"nb":1,"a":[["antibacterial/physcion.html","physcion"]],"b":[["mapped/Physcion.yaml","Physcion"]]},{"id":"CHEBI:38291","l":"dihydrostreptomycin","na":1,"nb":1,"a":[["unspecified/dihydrostreptomycin.html","dihydrostreptomycin"]],"b":[["mapped/Dihydrostreptomycin.yaml","Dihydrostreptomycin"]]},{"id":"CHEBI:3962","l":"curcumin","na":1,"nb":1,"a":[["antifungal/curcumin.html","curcumin"]],"b":[["mapped/Curcumin.yaml","Curcumin"]]},{"id":"CHEBI:40009","l":"D-cycloserine","na":1,"nb":1,"a":[["antimycobacterial/d-cycloserine.html","D-cycloserine"]],"b":[["mapped/D-Cycloserine.yaml","D-Cycloserine"]]},{"id":"CHEBI:404903","l":"ertapenem","na":1,"nb":1,"a":[["antibacterial/ertapenem.html","ertapenem"]],"b":[["mapped/Ertapenem.yaml","Ertapenem"]]},{"id":"CHEBI:41688","l":"crystal violet","na":1,"nb":1,"a":[["antibacterial/crystal-violet.html","crystal violet"]],"b":[["mapped/Crystal_Violet.yaml","Crystal Violet"]]},{"id":"CHEBI:41977","l":"daunorubicin","na":1,"nb":1,"a":[["unspecified/daunorubicin.html","daunorubicin"]],"b":[["mapped/Daunorubicin.yaml","Daunorubicin"]]},{"id":"CHEBI:42355","l":"erythromycin A","na":1,"nb":1,"a":[["antibacterial/erythromycin-a.html","erythromycin A"]],"b":[["mapped/Erythromycin_A.yaml","Erythromycin A"]]},{"id":"CHEBI:42768","l":"geneticin","na":1,"nb":1,"a":[["antiprotozoal/geneticin.html","geneticin"]],"b":[["mapped/Geneticin_G418.yaml","Geneticin G418"]]},{"id":"CHEBI:43968","l":"meropenem","na":1,"nb":1,"a":[["antibacterial/meropenem.html","meropenem"]],"b":[["mapped/Meropenem.yaml","Meropenem"]]},{"id":"CHEBI:44137","l":"tiamulin","na":1,"nb":1,"a":[["antibacterial/tiamulin.html","tiamulin"]],"b":[["mapped/Tiamulin.yaml","Tiamulin"]]},{"id":"CHEBI:44368","l":"nitrofurazone","na":1,"nb":1,"a":[["antibacterial/nitrofurazone.html","nitrofurazone"]],"b":[["mapped/Nitrofurazone.yaml","Nitrofurazone"]]},{"id":"CHEBI:44401","l":"lawsone","na":1,"nb":1,"a":[["antifungal/lawsone.html","lawsone"]],"b":[["mapped/Lawsone.yaml","Lawsone"]]},{"id":"CHEBI:44504","l":"nogalamycin","na":1,"nb":1,"a":[["unspecified/nogalamycin.html","nogalamycin"]],"b":[["mapped/Nogalamycin.yaml","Nogalamycin"]]},{"id":"CHEBI:45367","l":"rifabutin","na":1,"nb":1,"a":[["antibacterial/rifabutin.html","rifabutin"]],"b":[["mapped/Rifabutin.yaml","Rifabutin"]]},{"id":"CHEBI:45373","l":"sulfanilamide","na":1,"nb":1,"a":[["antibacterial/sulfanilamide.html","sulfanilamide"]],"b":[["mapped/Sulfanilamide.yaml","Sulfanilamide"]]},{"id":"CHEBI:45395","l":"pyrithiamine pyrophosphate","na":1,"nb":1,"a":[["unspecified/pyrithiamine-pyrophosphate.html","pyrithiamine pyrophosphate"]],"b":[["mapped/Thiamine_pyrophosphate.yaml","Thiamine pyrophosphate"]]},{"id":"CHEBI:45735","l":"troleandomycin","na":1,"nb":1,"a":[["unspecified/troleandomycin.html","troleandomycin"]],"b":[["mapped/Troleandomycin.yaml","Troleandomycin"]]},{"id":"CHEBI:45773","l":"streptolydigin","na":1,"nb":1,"a":[["unspecified/streptolydigin.html","streptolydigin"]],"b":[["mapped/Streptolydigin.yaml","Streptolydigin"]]},{"id":"CHEBI:45924","l":"trimethoprim","na":1,"nb":1,"a":[["antibacterial/trimethoprim.html","trimethoprim"]],"b":[["mapped/Trimethoprim.yaml","Trimethoprim"]]},{"id":"CHEBI:4629","l":"diosgenin","na":1,"nb":1,"a":[["antiviral/diosgenin.html","diosgenin"]],"b":[["mapped/Diosgenin.yaml","Diosgenin"]]},{"id":"CHEBI:46345","l":"5-fluorouracil","na":1,"nb":1,"a":[["antifungal/5-fluorouracil.html","5-Fluorouracil"]],"b":[["mapped/5-fluorouracil.yaml","5-fluorouracil"]]},{"id":"CHEBI:46742","l":"Nutlin-3","na":1,"nb":1,"a":[["antiviral/nutlin-3.html","Nutlin-3"]],"b":[["mapped/Trypticase-glucose-yeast_Extract.yaml","Trypticase-glucose-yeast Extract"]]},{"id":"CHEBI:471744","l":"imipenem","na":1,"nb":1,"a":[["antibacterial/imipenem.html","imipenem"]],"b":[["mapped/Imipenem.yaml","Imipenem"]]},{"id":"CHEBI:472657","l":"cefixime","na":1,"nb":1,"a":[["antibacterial/cefixime.html","cefixime"]],"b":[["mapped/Cefixime.yaml","Cefixime"]]},{"id":"CHEBI:474053","l":"cefazolin","na":1,"nb":1,"a":[["antibacterial/cefazolin.html","cefazolin"]],"b":[["mapped/Cefazolin.yaml","Cefazolin"]]},{"id":"CHEBI:478164","l":"cefepime","na":1,"nb":1,"a":[["antibacterial/cefepime.html","cefepime"]],"b":[["mapped/Cefepime.yaml","Cefepime"]]},{"id":"CHEBI:48131","l":"nonanedioic acid","na":1,"nb":1,"a":[["antibacterial/nonanedioic-acid.html","nonanedioic acid"]],"b":[["mapped/Azelaic_Acid.yaml","Azelaic acid"]]},{"id":"CHEBI:48267","l":"tubercidin","na":1,"nb":1,"a":[["antifungal/tubercidin.html","tubercidin"]],"b":[["mapped/Tubercidin.yaml","Tubercidin"]]},{"id":"CHEBI:4877","l":"ethambutol","na":1,"nb":1,"a":[["antimycobacterial/ethambutol.html","ethambutol"]],"b":[["mapped/Ethambutol.yaml","Ethambutol"]]},{"id":"CHEBI:4878","l":"ethambutol dihydrochloride","na":1,"nb":1,"a":[["antimycobacterial/ethambutol-dihydrochloride.html","ethambutol dihydrochloride"]],"b":[["mapped/Ethambutol_Dihydrochloride.yaml","Ethambutol dihydrochloride"]]},{"id":"CHEBI:4883","l":"ethidium bromide","na":1,"nb":1,"a":[["antiprotozoal/ethidium-bromide.html","ethidium bromide"]],"b":[["mapped/Ethidium_Bromide.yaml","Ethidium Bromide"]]},{"id":"CHEBI:4885","l":"ethionamide","na":1,"nb":1,"a":[["antimycobacterial/ethionamide.html","ethionamide"]],"b":[["mapped/Ethionamide.yaml","Ethionamide"]]},{"id":"CHEBI:48947","l":"clavulanic acid","na":1,"nb":1,"a":[["antibacterial/clavulanic-acid.html","clavulanic acid"]],"b":[["mapped/Clavulanic_Acid.yaml","Clavulanic Acid"]]},{"id":"CHEBI:49566","l":"cloxacillin","na":1,"nb":1,"a":[["antibacterial/cloxacillin.html","cloxacillin"]],"b":[["mapped/Cloxacillin.yaml","Cloxacillin"]]},{"id":"CHEBI:50199","l":"pefloxacin","na":1,"nb":1,"a":[["antibacterial/pefloxacin.html","pefloxacin"]],"b":[["mapped/Pefloxacin.yaml","Pefloxacin"]]},{"id":"CHEBI:50694","l":"minocycline","na":1,"nb":1,"a":[["antibacterial/minocycline.html","minocycline"]],"b":[["mapped/Minocycline.yaml","Minocycline"]]},{"id":"CHEBI:50845","l":"doxycycline","na":1,"nb":1,"a":[["antibacterial/doxycycline.html","doxycycline"]],"b":[["mapped/Doxycycline.yaml","Doxycycline"]]},{"id":"CHEBI:5098","l":"flucloxacillin","na":1,"nb":1,"a":[["antibacterial/flucloxacillin.html","flucloxacillin"]],"b":[["mapped/Flucloxacillin.yaml","flucloxacillin"]]},{"id":"CHEBI:51208","l":"mecillinam","na":1,"nb":1,"a":[["antibacterial/mecillinam.html","mecillinam"]],"b":[["mapped/Mecillinam.yaml","Mecillinam"]]},{"id":"CHEBI:5169","l":"fraxetin","na":1,"nb":1,"a":[["antibacterial/fraxetin.html","fraxetin"]],"b":[["mapped/Fraxetin.yaml","Fraxetin"]]},{"id":"CHEBI:51799","l":"imipenem hydrate","na":1,"nb":1,"a":[["antibacterial/imipenem-hydrate.html","imipenem hydrate"]],"b":[["mapped/Impenum_Monohydrate.yaml","Impenum monohydrate"]]},{"id":"CHEBI:5195","l":"furazolidone","na":1,"nb":1,"a":[["antibacterial/furazolidone.html","furazolidone"]],"b":[["mapped/Furazolidone.yaml","Furazolidone"]]},{"id":"CHEBI:51963","l":"","na":1,"nb":1,"a":[["unspecified/bacteriohopane-32-33-34-35-tetrol.html","bacteriohopane-32,33,34,35-tetrol"]],"b":[["mapped/Hopanoid.yaml","Hopanoid"]]},{"id":"CHEBI:53620","l":"methylisothiazolinone","na":1,"nb":1,"a":[["antifungal/methylisothiazolinone.html","methylisothiazolinone"]],"b":[["mapped/2-methyl-4-isothizaolin-3-one.yaml","2-methyl-4-isothizaolin-3-one"]]},{"id":"CHEBI:53727","l":"sulfamethoxydiazine","na":1,"nb":1,"a":[["antimycobacterial/sulfamethoxydiazine.html","sulfamethoxydiazine"]],"b":[["mapped/Sulfamethoxydiazine.yaml","Sulfamethoxydiazine"]]},{"id":"CHEBI:5533","l":"granaticin","na":1,"nb":1,"a":[["unspecified/granaticin.html","granaticin"]],"b":[["mapped/Granaticin.yaml","Granaticin"]]},{"id":"CHEBI:556075","l":"radicicol","na":1,"nb":1,"a":[["antifungal/radicicol.html","radicicol"]],"b":[["mapped/Radicicol.yaml","Radicicol"]]},{"id":"CHEBI:5623","l":"harman","na":1,"nb":1,"a":[["antiviral/harman.html","harman"]],"b":[["mapped/Harmane.yaml","Harmane"]]},{"id":"CHEBI:59936","l":"ciprofloxacin hydrochloride hydrate","na":1,"nb":1,"a":[["antibacterial/ciprofloxacin-hydrochloride-hydrate.html","ciprofloxacin hydrochloride hydrate"]],"b":[["mapped/Ciprofloxacin_Hydrochloride.yaml","Ciprofloxacin Hydrochloride"]]},{"id":"CHEBI:600103","l":"daptomycin","na":1,"nb":1,"a":[["antibacterial/daptomycin.html","daptomycin"]],"b":[["mapped/Daptomycin.yaml","Daptomycin"]]},{"id":"CHEBI:6030","l":"isoniazide","na":1,"nb":1,"a":[["antimycobacterial/isoniazide.html","isoniazide"]],"b":[["mapped/Isoniazid.yaml","Isoniazid"]]},{"id":"CHEBI:60584","l":"bicozamycin","na":1,"nb":1,"a":[["antibacterial/bicozamycin.html","bicozamycin"]],"b":[["mapped/Bicyclomycin.yaml","Bicyclomycin"]]},{"id":"CHEBI:6109","l":"kanamycin A sulfate","na":1,"nb":1,"a":[["antibacterial/kanamycin-a-sulfate.html","kanamycin A sulfate"]],"b":[["mapped/Kanamycin_Sulfate.yaml","Kanamycin sulfate"]]},{"id":"CHEBI:62412","l":"phenazine-1-carboxylic acid","na":1,"nb":1,"a":[["antifungal/phenazine-1-carboxylic-acid.html","phenazine-1-carboxylic acid"]],"b":[["mapped/Phenazine-1-carboxylic_Acid.yaml","Phenazine-1-carboxylic acid"]]},{"id":"CHEBI:63598","l":"levofloxacin","na":1,"nb":1,"a":[["antibacterial/levofloxacin.html","levofloxacin"]],"b":[["mapped/Levofloxacin.yaml","Levofloxacin"]]},{"id":"CHEBI:63607","l":"linezolid","na":1,"nb":1,"a":[["antibacterial/linezolid.html","linezolid"]],"b":[["mapped/Linezolid.yaml","Linezolid"]]},{"id":"CHEBI:63611","l":"moxifloxacin","na":1,"nb":1,"a":[["antibacterial/moxifloxacin.html","moxifloxacin"]],"b":[["mapped/Moxifloxacin.yaml","Moxifloxacin"]]},{"id":"CHEBI:6377","l":"lapachol","na":1,"nb":1,"a":[["antibacterial/lapachol.html","lapachol"]],"b":[["mapped/Lapachol.yaml","Lapachol"]]},{"id":"CHEBI:64276","l":"glutaraldehyde","na":1,"nb":1,"a":[["biocide/glutaraldehyde.html","glutaraldehyde"]],"b":[["mapped/Glutaraldehyde.yaml","Glutaraldehyde"]]},{"id":"CHEBI:6472","l":"lincomycin","na":1,"nb":1,"a":[["antibacterial/lincomycin.html","lincomycin"]],"b":[["mapped/Lincomycin.yaml","Lincomycin"]]},{"id":"CHEBI:6518","l":"lomefloxacin hydrochloride","na":1,"nb":1,"a":[["antimycobacterial/lomefloxacin-hydrochloride.html","lomefloxacin hydrochloride"]],"b":[["mapped/Lomefloxacin_Hydrochloride.yaml","Lomefloxacin hydrochloride"]]},{"id":"CHEBI:65408","l":"andrographolide","na":1,"nb":1,"a":[["antiviral/andrographolide.html","andrographolide"]],"b":[["mapped/Andrographolide.yaml","Andrographolide"]]},{"id":"CHEBI:65585","l":"carnosic acid","na":1,"nb":1,"a":[["antiviral/carnosic-acid.html","carnosic acid"]],"b":[["mapped/Carnosic_Acid.yaml","Carnosic Acid"]]},{"id":"CHEBI:66279","l":"tubelactomicin A","na":1,"nb":1,"a":[["antimycobacterial/tubelactomicin-a.html","tubelactomicin A"]],"b":[["mapped/Tubelactomicin_A.yaml","Tubelactomicin A"]]},{"id":"CHEBI:67121","l":"nitroxoline","na":1,"nb":1,"a":[["antifungal/nitroxoline.html","nitroxoline"]],"b":[["mapped/8-hydroxy-nitroquinoline.yaml","8-hydroxy-nitroquinoline"]]},{"id":"CHEBI:67135","l":"2-nitroimidazole","na":1,"nb":1,"a":[["antimycobacterial/2-nitroimidazole.html","2-nitroimidazole"]],"b":[["mapped/Azomycin.yaml","Azomycin"]]},{"id":"CHEBI:6770","l":"meropenem trihydrate","na":1,"nb":1,"a":[["antibacterial/meropenem-trihydrate.html","meropenem trihydrate"]],"b":[["mapped/Meropenem.yaml","Meropenem"]]},{"id":"CHEBI:6805","l":"methacycline","na":1,"nb":1,"a":[["antibacterial/methacycline.html","methacycline"]],"b":[["mapped/Methacycline.yaml","Methacycline"]]},{"id":"CHEBI:6827","l":"methicillin","na":1,"nb":1,"a":[["antibacterial/methicillin.html","methicillin"]],"b":[["mapped/Methicillin.yaml","Methicillin"]]},{"id":"CHEBI:68590","l":"fidaxomicin","na":1,"nb":1,"a":[["antibacterial/fidaxomicin.html","fidaxomicin"]],"b":[["mapped/Fidaxomicin.yaml","Fidaxomicin"]]},{"id":"CHEBI:6872","l":"methylene blue","na":1,"nb":1,"a":[["antiprotozoal/methylene-blue.html","methylene blue"]],"b":[["mapped/Methylene_Blue.yaml","Methylene blue"]]},{"id":"CHEBI:6909","l":"metronidazole","na":1,"nb":1,"a":[["antibacterial/metronidazole.html","metronidazole"]],"b":[["mapped/Metronidazole.yaml","Metronidazole"]]},{"id":"CHEBI:6919","l":"mezlocillin","na":1,"nb":1,"a":[["antibacterial/mezlocillin.html","mezlocillin"]],"b":[["mapped/Mezlocillin.yaml","Mezlocillin"]]},{"id":"CHEBI:69196","l":"brazilein","na":1,"nb":1,"a":[["antibacterial/brazilein.html","brazilein"]],"b":[["mapped/Brazilein.yaml","Brazilein"]]},{"id":"CHEBI:69414","l":"hygromycin A","na":1,"nb":1,"a":[["antibacterial/hygromycin-a.html","hygromycin A"]],"b":[["mapped/Hygromycin_A.yaml","Hygromycin A"]]},{"id":"CHEBI:71415","l":"nitrofurantoin","na":1,"nb":1,"a":[["antibacterial/nitrofurantoin.html","nitrofurantoin"]],"b":[["mapped/Nitrofurantoin.yaml","Nitrofurantoin"]]},{"id":"CHEBI:71629","l":"nisin","na":1,"nb":1,"a":[["antibacterial/nisin.html","nisin"]],"b":[["mapped/Nisin.yaml","Nisin"]]},{"id":"CHEBI:71987","l":"curamycin A","na":1,"nb":1,"a":[["unspecified/curamycin-a.html","curamycin A"]],"b":[["mapped/Curamycin_A.yaml","Curamycin A"]]},{"id":"CHEBI:72292","l":"bedaquiline","na":1,"nb":1,"a":[["antimycobacterial/bedaquiline.html","bedaquiline"]],"b":[["mapped/Bedaquiline.yaml","Bedaquiline"]]},{"id":"CHEBI:72346","l":"roseoflavin","na":1,"nb":1,"a":[["unspecified/roseoflavin.html","roseoflavin"]],"b":[["mapped/Roseoflavin.yaml","Roseoflavin"]]},{"id":"CHEBI:72449","l":"malachite green","na":1,"nb":1,"a":[["antibacterial/malachite-green.html","malachite green"]],"b":[["mapped/Malachite_Green.yaml","Malachite green"]]},{"id":"CHEBI:74846","l":"azaserine","na":1,"nb":1,"a":[["antifungal/azaserine.html","azaserine"]],"b":[["mapped/Azaserine.yaml","Azaserine"]]},{"id":"CHEBI:7488","l":"natamycin","na":1,"nb":1,"a":[["antifungal/natamycin.html","natamycin"]],"b":[["mapped/Natamycin.yaml","Natamycin"]]},{"id":"CHEBI:7508","l":"framycetin","na":1,"nb":1,"a":[["antibacterial/framycetin.html","framycetin"]],"b":[["mapped/Framycetin.yaml","Framycetin"]]},{"id":"CHEBI:75092","l":"morin","na":1,"nb":1,"a":[["antibacterial/morin.html","morin"]],"b":[["mapped/Morin.yaml","Morin"]]},{"id":"CHEBI:7528","l":"netilmycin","na":1,"nb":1,"a":[["antibacterial/netilmycin.html","netilmycin"]],"b":[["mapped/Netilmycin.yaml","Netilmycin"]]},{"id":"CHEBI:7660","l":"","na":1,"nb":1,"a":[["antifungal/nystatin.html","nystatin"]],"b":[["mapped/Nystatin.yaml","Nystatin"]]},{"id":"CHEBI:7731","l":"","na":1,"nb":1,"a":[["antibacterial/ofloxacin.html","ofloxacin"]],"b":[["mapped/Ofloxacin.yaml","Ofloxacin"]]},{"id":"CHEBI:77543","l":"ebselen","na":1,"nb":1,"a":[["antibacterial/ebselen.html","ebselen"]],"b":[["mapped/Ebselen.yaml","Ebselen"]]},{"id":"CHEBI:77735","l":"ossamycin","na":1,"nb":1,"a":[["unspecified/ossamycin.html","ossamycin"]],"b":[["mapped/Ossamycin.yaml","Ossamycin"]]},{"id":"CHEBI:7809","l":"oxacillin","na":1,"nb":1,"a":[["antibacterial/oxacillin.html","oxacillin"]],"b":[["mapped/Oxacillin.yaml","Oxacillin"]]},{"id":"CHEBI:78661","l":"borrelidin","na":1,"nb":1,"a":[["antifungal/borrelidin.html","borrelidin"]],"b":[["mapped/Borrelidin.yaml","Borrelidin"]]},{"id":"CHEBI:78870","l":"sodium nitrite","na":1,"nb":1,"a":[["biocide/sodium-nitrite.html","sodium nitrite"]],"b":[["mapped/Nano2.yaml","NaNO2"]]},{"id":"CHEBI:7934","l":"paromomycin","na":1,"nb":1,"a":[["antibacterial/paromomycin.html","paromomycin"]],"b":[["mapped/Paromomycin.yaml","Paromomycin"]]},{"id":"CHEBI:7935","l":"paromomycin sulfate","na":1,"nb":1,"a":[["antibacterial/paromomycin-sulfate.html","paromomycin sulfate"]],"b":[["mapped/Paromomycin_Sulfate_Salt.yaml","Paromomycin sulfate salt"]]},{"id":"CHEBI:79394","l":"indolmycin","na":1,"nb":1,"a":[["antibacterial/indolmycin.html","indolmycin"]],"b":[["mapped/Indolmycin.yaml","Indolmycin"]]},{"id":"CHEBI:80025","l":"Salinomycin","na":1,"nb":1,"a":[["antibacterial/salinomycin.html","salinomycin"]],"b":[["mapped/Salinomycin.yaml","Salinomycin"]]},{"id":"CHEBI:81419","l":"kasugamycin","na":1,"nb":1,"a":[["antifungal/kasugamycin.html","kasugamycin"]],"b":[["mapped/Kasugamycin.yaml","Kasugamycin"]]},{"id":"CHEBI:81711","l":"chlorhexidine acetate","na":1,"nb":1,"a":[["antibacterial/chlorhexidine-acetate.html","chlorhexidine acetate"]],"b":[["mapped/Chlorhexidine_Diacetate_Salt_Hydrate.yaml","Chlorhexidine diacetate salt hydrate"]]},{"id":"CHEBI:81862","l":"potassium hydrogencarbonate","na":1,"nb":1,"a":[["antifungal/potassium-hydrogencarbonate.html","potassium hydrogencarbonate"]],"b":[["mapped/Khco3.yaml","KHCO3"]]},{"id":"CHEBI:8232","l":"piperacillin","na":1,"nb":1,"a":[["antibacterial/piperacillin.html","piperacillin"]],"b":[["mapped/Piperacillin.yaml","Piperacillin"]]},{"id":"CHEBI:85129","l":"ristocetin","na":1,"nb":1,"a":[["antibacterial/ristocetin.html","ristocetin"]],"b":[["mapped/Ristocetin_B.yaml","Ristocetin B"]]},{"id":"CHEBI:86431","l":"sodium fluorophosphate","na":1,"nb":1,"a":[["antibacterial/sodium-fluorophosphate.html","sodium fluorophosphate"]],"b":[["mapped/Sodium_Fluorophosphate.yaml","Sodium Fluorophosphate"]]},{"id":"CHEBI:8653","l":"pyocyanine","na":1,"nb":1,"a":[["antibacterial/pyocyanine.html","pyocyanine"]],"b":[["mapped/Pyocyanin.yaml","Pyocyanin"]]},{"id":"CHEBI:8673","l":"pyrimethamine","na":1,"nb":1,"a":[["antiprotozoal/pyrimethamine.html","pyrimethamine"]],"b":[["mapped/Pyrimethamine.yaml","Pyrimethamine"]]},{"id":"CHEBI:86904","l":"4-coumaric acid methyl ester","na":1,"nb":1,"a":[["antifungal/4-coumaric-acid-methyl-ester.html","4-coumaric acid methyl ester"]],"b":[["mapped/Methyl-cis-p-coumarate.yaml","methyl-cis-p-coumarate"]]},{"id":"CHEBI:87084","l":"rosaramicin","na":1,"nb":1,"a":[["antibacterial/rosaramicin.html","rosaramicin"]],"b":[["mapped/Rosaramicin.yaml","Rosaramicin"]]},{"id":"CHEBI:9215","l":"spectinomycin","na":1,"nb":1,"a":[["antibacterial/spectinomycin.html","spectinomycin"]],"b":[["mapped/Spectinomycin.yaml","Spectinomycin"]]},{"id":"CHEBI:9217","l":"spectinomycin hydrochloride hydrate","na":1,"nb":1,"a":[["antibacterial/spectinomycin-hydrochloride-hydrate.html","spectinomycin hydrochloride hydrate"]],"b":[["mapped/Spectinomycin_Dihydrochloride_Pentahydrate.yaml","Spectinomycin dihydrochloride pentahydrate"]]},{"id":"CHEBI:9287","l":"streptonigrin","na":1,"nb":1,"a":[["unspecified/streptonigrin.html","streptonigrin"]],"b":[["mapped/Streptonigrin.yaml","Streptonigrin"]]},{"id":"CHEBI:9321","l":"sulbactam","na":1,"nb":1,"a":[["unspecified/sulbactam.html","sulbactam"]],"b":[["mapped/Sulbactam.yaml","Sulbactam"]]},{"id":"CHEBI:9331","l":"sulfamethizole","na":1,"nb":1,"a":[["antibacterial/sulfamethizole.html","sulfamethizole"]],"b":[["mapped/Sulfamethizole.yaml","Sulfamethizole"]]},{"id":"CHEBI:9332","l":"sulfamethoxazole","na":1,"nb":1,"a":[["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]],"b":[["mapped/Sulfamethoxazole.yaml","Sulfamethoxazole"]]},{"id":"CHEBI:9334","l":"sulfasalazine","na":1,"nb":1,"a":[["antibacterial/sulfasalazine.html","sulfasalazine"]],"b":[["mapped/Sulfasalazine.yaml","Sulfasalazine"]]},{"id":"CHEBI:9421","l":"tazobactam","na":1,"nb":1,"a":[["unspecified/tazobactam.html","tazobactam"]],"b":[["mapped/Tazobactam.yaml","Tazobactam"]]},{"id":"CHEBI:9587","l":"ticarcillin","na":1,"nb":1,"a":[["antibacterial/ticarcillin.html","ticarcillin"]],"b":[["mapped/Ticarcillin.yaml","Ticarcillin"]]}]} \ No newline at end of file +{"a":"AntibioticMech","b":"MediaIngredientMech","base":{"AntibioticMech":"https://culturebotai.github.io/AntibioticMech/pages/","MediaIngredientMech":"https://github.com/CultureBotAI/MediaIngredientMech/blob/main/data/ingredients/"},"n":324,"by":{"CHEBI":324},"terms":[{"id":"CHEBI:35505","l":"","na":21,"nb":73,"a":[["antibacterial/amoxicillin-trihydrate.html","amoxicillin trihydrate"],["antibacterial/cefepime-hydrochloride.html","cefepime hydrochloride"],["antibacterial/ceftaroline-fosamil-acetate-monohydrate.html","ceftaroline fosamil acetate monohydrate"],["antibacterial/ceftibuten-dihydrate.html","ceftibuten dihydrate"],["antibacterial/cephalexin-monohydrate.html","cephalexin monohydrate"],["antibacterial/ciprofloxacin-hydrochloride-hydrate.html","ciprofloxacin hydrochloride hydrate"]],"b":[["mapped/2-Deoxyadenosine_Monohydrate.yaml","2-Deoxyadenosine monohydrate"],["mapped/2-Keto-D-gluconic_Acid_Hemicalcium_Salt_Hydrate.yaml","2-Keto-D-gluconic acid hemicalcium salt hydrate"],["mapped/4-Hydroxymandelic_Acid_Monohydrate.yaml","4-Hydroxymandelic acid monohydrate"],["mapped/5-Fluoroorotic_Acid_Hydrate.yaml","5-Fluoroorotic acid hydrate"],["mapped/A-Ketoglutaric_Acid_Disodium_Salt_Hydrate.yaml","a-Ketoglutaric acid disodium salt hydrate"],["mapped/Adenine_Hydrochloride_Hydrate.yaml","Adenine hydrochloride hydrate"]]},{"id":"CHEBI:33709","l":"amino acid","na":8,"nb":54,"a":[["antibacterial/7-3-aminopyrrolidin-1-yl-1-2-4-difluorophenyl-6-fluoro-4-oxo-1-4-dihyd.html","7-(3-aminopyrrolidin-1-yl)-1-(2,4-difluorophenyl)-6-fluoro-4-oxo-1,4-dihydro-1,8-naphthyridine-3-carboxylic acid"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/pipemidic-acid.html","pipemidic acid"],["antibacterial/trovafloxacin.html","trovafloxacin"],["antifungal/mediomycin-a.html","mediomycin A"],["antifungal/mediomycin-b.html","mediomycin B"]],"b":[["mapped/1-aminocyclopropane-1-carboxylate.yaml","1-aminocyclopropane-1-carboxylate"],["mapped/3-Chloro-L-tyrosine.yaml","3-Chloro-L-tyrosine"],["mapped/3-aminobutyric_Acid.yaml","3-aminobutyric acid"],["mapped/4-azido-L-phenylalanine.yaml","4-azido-L-phenylalanine"],["mapped/5-Aminolevulinic_Acid.yaml","5-Aminolevulinic acid"],["mapped/5-aminovaleric_Acid.yaml","5-Aminovaleric acid"]]},{"id":"CHEBI:26218","l":"","na":3,"nb":2,"a":[["antibacterial/potassium-clavulanate.html","potassium clavulanate"],["antifungal/potassium-hydrogencarbonate.html","potassium hydrogencarbonate"],["biocide/potassium-sorbate.html","potassium sorbate"]],"b":[["mapped/5-Keto-D-Gluconic_Acid_Potassium_Salt.yaml","5-Keto-D-Gluconic Acid potassium salt"],["mapped/D-Saccharic_Acid_Potassium_Salt.yaml","D-Saccharic acid potassium salt"]]},{"id":"CHEBI:30746","l":"benzoic acid","na":2,"nb":2,"a":[["biocide/benzoic-acid.html","benzoic acid"],["biocide/carboxy-ptio.html","carboxy-PTIO"]],"b":[["mapped/4_Carbon_Mix.yaml","4 Carbon Mix"],["mapped/Benzoic_Acid.yaml","benzoic acid"]]},{"id":"CHEBI:23066","l":"","na":66,"nb":1,"a":[["antibacterial/cefacetrile.html","cefacetrile"],["antibacterial/cefaclor.html","cefaclor"],["antibacterial/cefadroxil.html","cefadroxil"],["antibacterial/cefaloram.html","cefaloram"],["antibacterial/cefaloridine.html","cefaloridine"],["antibacterial/cefalotin.html","cefalotin"]],"b":[["mapped/Cephalosporin.yaml","Cephalosporin"]]},{"id":"CHEBI:25105","l":"","na":58,"nb":1,"a":[["antibacterial/5-o-mycaminosyltylonolide.html","5-O-mycaminosyltylonolide"],["antibacterial/aplasmomycin.html","(+)-aplasmomycin"],["antibacterial/azithromycin.html","azithromycin"],["antibacterial/boromycin.html","boromycin"],["antibacterial/brefeldin-a.html","brefeldin A"],["antibacterial/cethromycin.html","cethromycin"]],"b":[["mapped/Macrolide_Antibiotic.yaml","Macrolide Antibiotic"]]},{"id":"CHEBI:17334","l":"penicillin","na":38,"nb":1,"a":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/azidocillin.html","azidocillin"],["antibacterial/azlocillin.html","azlocillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/carbenicillin.html","carbenicillin"]],"b":[["mapped/Penicillin.yaml","Penicillin"]]},{"id":"CHEBI:35358","l":"","na":33,"nb":1,"a":[["antibacterial/prontosil.html","prontosil"],["antibacterial/sulfabenzamide.html","sulfabenzamide"],["antibacterial/sulfabromomethazine.html","sulfabromomethazine"],["antibacterial/sulfachloropyridazine.html","sulfachloropyridazine"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfaethoxypyridazine.html","sulfaethoxypyridazine"]],"b":[["mapped/Sulfonamide.yaml","Sulfonamide"]]},{"id":"CHEBI:25000","l":"","na":22,"nb":1,"a":[["antifungal/callipeltin-a.html","callipeltin A"],["antifungal/eugeniin.html","eugeniin"],["antifungal/fenpicoxamid.html","fenpicoxamid"],["antifungal/multiplolide-a.html","multiplolide A"],["antifungal/multiplolide-b.html","multiplolide B"],["antifungal/neothyonidioside.html","neothyonidioside"]],"b":[["mapped/Lactone.yaml","Lactone"]]},{"id":"CHEBI:87228","l":"","na":22,"nb":1,"a":[["antibacterial/sulfabenzamide.html","sulfabenzamide"],["antibacterial/sulfamerazine.html","sulfamerazine"],["antibacterial/sulfamethazine.html","sulfamethazine"],["antibacterial/sulfamethizole.html","sulfamethizole"],["antibacterial/sulfamethoxazole.html","sulfamethoxazole"],["antibacterial/sulfanilamide.html","sulfanilamide"]],"b":[["mapped/Sulfonamide.yaml","Sulfonamide"]]},{"id":"CHEBI:49322","l":"","na":18,"nb":1,"a":[["antimycobacterial/nothramicin.html","nothramicin"],["unspecified/10-carboxy-13-deoxycarminomycin.html","10-carboxy-13-deoxycarminomycin"],["unspecified/10-carboxy-13-deoxydaunorubicin.html","10-carboxy-13-deoxydaunorubicin"],["unspecified/13-deoxycarminomycin.html","13-deoxycarminomycin"],["unspecified/13r-13-dihydrocarminomycin.html","(13R)-13-dihydrocarminomycin"],["unspecified/4-epidoxorubicin.html","4'-epidoxorubicin"]],"b":[["mapped/Anthracycline_Antibiotic.yaml","Anthracycline Antibiotic"]]},{"id":"CHEBI:22507","l":"","na":17,"nb":1,"a":[["antibacterial/astromicin.html","astromicin"],["antibacterial/etimicin.html","etimicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"],["antibacterial/sisomycin.html","sisomycin"]],"b":[["mapped/Aminoglycoside_Antibiotic.yaml","Aminoglycoside Antibiotic"]]},{"id":"CHEBI:49976","l":"zinc dichloride","na":1,"nb":8,"a":[["biocide/zinc-dichloride.html","zinc dichloride"]],"b":[["mapped/MME_Trace_Minerals.yaml","MME Trace Minerals"],["mapped/Mc_trace_minerals_SO4free.yaml","Mc_trace_minerals_SO4free"],["mapped/P-iv_Metal_Solution.yaml","P-IV Metal Solution"],["mapped/Sulfur-free_DL_Minerals.yaml","Sulfur-free DL minerals"],["mapped/Trace_Element_Solution_SL-10.yaml","Trace element solution SL-10"],["mapped/UW_Concentrated_Base_No_Sulfur.yaml","UW concentrated base no sulfur"]]},{"id":"CHEBI:59062","l":"","na":8,"nb":1,"a":[["antibacterial/colistimethate-a.html","colistimethate A"],["antibacterial/colistimethate-b.html","colistimethate B"],["antibacterial/colistin-a-sodium-methanesulfonate.html","colistin A sodium methanesulfonate"],["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b-sodium-methanesulfonate.html","colistin B sodium methanesulfonate"],["antibacterial/colistin-b.html","colistin B"]],"b":[["mapped/Polymyxin.yaml","Polymyxin"]]},{"id":"CHEBI:30769","l":"citric acid","na":1,"nb":6,"a":[["unspecified/citric-acid.html","citric acid"]],"b":[["mapped/Citric_Acid.yaml","Citric acid"],["mapped/Citric_Acid_X_H2o.yaml","Citric acid x H2O"],["mapped/Citric_Acidh2o.yaml","Citric Acid•H2O"],["mapped/NLDM_metabolites.yaml","NLDM_metabolites"],["mapped/Na2-citrate.yaml","Na2-citrate"],["mapped/Trisodium_Citrate.yaml","Trisodium citrate"]]},{"id":"CHEBI:48923","l":"erythromycin","na":6,"nb":1,"a":[["antibacterial/erythromycin-a.html","erythromycin A"],["unspecified/erythromycin-b.html","erythromycin B"],["unspecified/erythromycin-c.html","erythromycin C"],["unspecified/erythromycin-d.html","erythromycin D"],["unspecified/erythromycin-e.html","erythromycin E"],["unspecified/erythromycin-n-methyl-14c.html","erythromycin-[N-methyl-14C]"]],"b":[["mapped/Erythromycin.yaml","erythromycin"]]},{"id":"CHEBI:24698","l":"hydroxyflavone","na":5,"nb":1,"a":[["antibacterial/ochnaflavone.html","ochnaflavone"],["antiviral/agathisflavone.html","agathisflavone"],["antiviral/amentoflavone.html","amentoflavone"],["antiviral/ginkgetin.html","ginkgetin"],["antiviral/robustaflavone.html","robustaflavone"]],"b":[["mapped/36-Dihydroxyflavone.yaml","3',6-Dihydroxyflavone"]]},{"id":"CHEBI:28600","l":"farnesol","na":5,"nb":1,"a":[["unspecified/2-cis-6-cis-farnesol.html","(2-cis,6-cis)-farnesol"],["unspecified/2-cis-6-trans-farnesol.html","(2-cis,6-trans)-farnesol"],["unspecified/2-trans-6-cis-farnesol.html","(2-trans,6-cis)-farnesol"],["unspecified/2-trans-6-trans-farnesol.html","(2-trans,6-trans)-farnesol"],["unspecified/farnesol.html","farnesol"]],"b":[["mapped/TransTrans-Farnesol.yaml","Trans,Trans-Farnesol"]]},{"id":"CHEBI:33403","l":"elemental sulfur","na":1,"nb":5,"a":[["antifungal/polysulfur.html","polysulfur"]],"b":[["mapped/GYPS.yaml","GYPS"],["mapped/Sulfur.yaml","Sulfur"],["mapped/Sulfur_Powder.yaml","Sulfur (powder)"],["mapped/Sulphur.yaml","Sulphur"],["mapped/Yeast_Extract_Sulfur.yaml","Yeast Extract + Sulfur"]]},{"id":"CHEBI:35273","l":"quaternary ammonium salt","na":5,"nb":1,"a":[["antibacterial/benzethonium-chloride.html","benzethonium chloride"],["antibacterial/quaternium-15.html","quaternium-15"],["antifungal/rezafungin-acetate.html","rezafungin acetate"],["biocide/benzododecinium-bromide.html","benzododecinium bromide"],["biocide/benzododecinium-chloride.html","benzododecinium chloride"]],"b":[["mapped/Tetramethyl_Ammonium.yaml","Tetramethyl ammonium"]]},{"id":"CHEBI:55429","l":"cephamycin","na":4,"nb":1,"a":[["antibacterial/cefminox.html","cefminox"],["antibacterial/cefotetan.html","cefotetan"],["antibacterial/cefoxitin.html","cefoxitin"],["unspecified/cephamycin-c.html","cephamycin C"]],"b":[["mapped/Cephamycin_A.yaml","Cephamycin A"]]},{"id":"CHEBI:17012","l":"N-acetylneuraminic acid","na":3,"nb":1,"a":[["antiviral/n-acetyl-%CE%B1-neuraminic-acid.html","N-acetyl-α-neuraminic acid"],["antiviral/n-acetyl-%CE%B2-neuraminic-acid.html","N-acetyl-β-neuraminic acid"],["antiviral/n-acetylneuraminic-acid.html","N-acetylneuraminic acid"]],"b":[["mapped/N-acetylneuraminic_Acid.yaml","N-acetylneuraminic acid"]]},{"id":"CHEBI:17580","l":"linalool","na":3,"nb":1,"a":[["unspecified/linalool.html","linalool"],["unspecified/r-linalool.html","(R)-linalool"],["unspecified/s-linalool.html","(S)-linalool"]],"b":[["mapped/Linalool.yaml","Linalool"]]},{"id":"CHEBI:22907","l":"","na":3,"nb":1,"a":[["antibacterial/bleomycin-a2.html","bleomycin A2"],["antibacterial/bleomycin.html","bleomycin"],["unspecified/bleomycin-a5.html","bleomycin A5"]],"b":[["mapped/Bleomycin.yaml","Bleomycin"]]},{"id":"CHEBI:25399","l":"","na":3,"nb":1,"a":[["antifungal/m-cresol.html","m-cresol"],["antifungal/o-cresol.html","o-cresol"],["antifungal/p-cresol.html","p-cresol"]],"b":[["mapped/Cresol.yaml","Cresol"]]},{"id":"CHEBI:34118","l":"oct-1-en-3-ol","na":3,"nb":1,"a":[["unspecified/oct-1-en-3-ol.html","oct-1-en-3-ol"],["unspecified/r-oct-1-en-3-ol.html","(R)-oct-1-en-3-ol"],["unspecified/s-oct-1-en-3-ol.html","(S)-oct-1-en-3-ol"]],"b":[["mapped/1-octen-3-ol.yaml","1-octen-3-ol"]]},{"id":"CHEBI:35825","l":"mandelic acid","na":3,"nb":1,"a":[["antibacterial/mandelic-acid.html","mandelic acid"],["antibacterial/r-mandelic-acid.html","(R)-mandelic acid"],["antibacterial/s-mandelic-acid.html","(S)-mandelic acid"]],"b":[["mapped/Mandelic_Acid.yaml","Mandelic acid"]]},{"id":"CHEBI:38319","l":"usnic acid","na":3,"nb":1,"a":[["antifungal/usnic-acid-38319.html","usnic acid"],["antifungal/usnic-acid-38320.html","(+)-usnic acid"],["antifungal/usnic-acid.html","(−)-usnic acid"]],"b":[["mapped/Usnic_Acid.yaml","Usnic Acid"]]},{"id":"CHEBI:48844","l":"roxithromycin","na":3,"nb":1,"a":[["antibacterial/e-roxithromycin.html","(E)-roxithromycin"],["antibacterial/roxithromycin.html","roxithromycin"],["antibacterial/z-roxithromycin.html","(Z)-roxithromycin"]],"b":[["mapped/Roxithromycin.yaml","Roxithromycin"]]},{"id":"CHEBI:83230","l":"","na":3,"nb":1,"a":[["antifungal/pradimicin-a.html","pradimicin A"],["antifungal/pradimicin-b.html","pradimicin B"],["antifungal/pradimicin-c.html","pradimicin C"]],"b":[["mapped/Pradimicin.yaml","Pradimicin"]]},{"id":"CHEBI:17909","l":"polysulfur","na":1,"nb":2,"a":[["antifungal/polysulfur.html","polysulfur"]],"b":[["mapped/Sulfur_Powder.yaml","Sulfur (powder)"],["mapped/Sulphur.yaml","Sulphur"]]},{"id":"CHEBI:24753","l":"","na":2,"nb":1,"a":[["antibacterial/hygromycin-b.html","hygromycin B"],["unspecified/7-o-phosphohygromycin-b.html","7'-O-phosphohygromycin B"]],"b":[["mapped/Hygromycin.yaml","Hygromycin"]]},{"id":"CHEBI:26401","l":"purines","na":2,"nb":1,"a":[["antiviral/mercaptopurine.html","mercaptopurine"],["antiviral/valganciclovir.html","valganciclovir"]],"b":[["mapped/Purines.yaml","Purines"]]},{"id":"CHEBI:2682","l":"amphotericin B","na":1,"nb":2,"a":[["antifungal/amphotericin-b.html","amphotericin B"]],"b":[["mapped/Amphotericin_B.yaml","Amphotericin B"],["unmapped/Amphotericin.yaml","Amphotericin"]]},{"id":"CHEBI:28034","l":"","na":2,"nb":1,"a":[["antifungal/kaempferol-3-o-%CE%B2-d-galactoside.html","kaempferol 3-O-β-D-galactoside"],["antiviral/acacetin-7-o-%CE%B2-d-galactopyranoside.html","acacetin-7-O-β-D-galactopyranoside"]],"b":[["mapped/Beta-D-galactoside.yaml","Beta-D-galactoside"]]},{"id":"CHEBI:28831","l":"","na":1,"nb":2,"a":[["antifungal/4-5-6-7-tetrachloro-2-benzofuran-1-3h-one.html","4,5,6,7-tetrachloro-2-benzofuran-1(3H)-one"]],"b":[["mapped/1-propanolCO2.yaml","1-propanol+CO2"],["mapped/Propan-1-ol.yaml","Propan-1-ol"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":1,"nb":2,"a":[["antibacterial/daptomycin.html","daptomycin"]],"b":[["mapped/Calcium%282%29.yaml","Calcium(2+)"],["mapped/Calcium.yaml","Calcium"]]},{"id":"CHEBI:32150","l":"sodium thiosulfate pentahydrate","na":1,"nb":2,"a":[["antifungal/sodium-thiosulfate-pentahydrate.html","sodium thiosulfate pentahydrate"]],"b":[["mapped/Na2s2o3_X_5_H2o.yaml","Na2S2O3 x 5 H2O"],["mapped/Sodium_Thiosulfate_Pentahydrate.yaml","Sodium Thiosulfate Pentahydrate"]]},{"id":"CHEBI:3508","l":"ceftazidime","na":1,"nb":2,"a":[["antibacterial/ceftazidime.html","ceftazidime"]],"b":[["mapped/Ceftazidime.yaml","Ceftazidime"],["mapped/Ceftazidime_Hydrate.yaml","Ceftazidime hydrate"]]},{"id":"CHEBI:39207","l":"","na":2,"nb":1,"a":[["unspecified/spinosyn-a.html","spinosyn A"],["unspecified/spinosyn-d.html","spinosyn D"]],"b":[["mapped/Spinosyn.yaml","Spinosyn"]]},{"id":"CHEBI:44976","l":"phosphonic acid","na":2,"nb":1,"a":[["antifungal/glyphosate.html","glyphosate"],["antifungal/phosphonic-acid.html","phosphonic acid"]],"b":[["mapped/KH2PO3.yaml","KH2PO3"]]},{"id":"CHEBI:45285","l":"pyrazinecarboxamide","na":2,"nb":1,"a":[["antimycobacterial/n-butyl-5-4-hydroxyphenyl-6-oxo-1-6-dihydropyrazine-2-carboxamide.html","N-butyl-5-(4-hydroxyphenyl)-6-oxo-1,6-dihydropyrazine-2-carboxamide"],["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]],"b":[["mapped/Pyrazinamide.yaml","Pyrazinamide"]]},{"id":"CHEBI:4917","l":"eugenol","na":2,"nb":1,"a":[["antibacterial/dihydroconiferyl-alcohol.html","dihydroconiferyl alcohol"],["antibacterial/eugenol.html","eugenol"]],"b":[["mapped/Eugenol.yaml","Eugenol"]]},{"id":"CHEBI:73908","l":"2,4-diamino-6,7-diisopropylpteridine","na":1,"nb":2,"a":[["antibacterial/2-4-diamino-6-7-diisopropylpteridine.html","2,4-diamino-6,7-diisopropylpteridine"]],"b":[["mapped/24-diamino-67-di-iso-propylpteridine_phosphate.yaml","2,4-diamino-6,7-di-iso-propylpteridine phosphate"],["mapped/Vibriostat.yaml","Vibriostat"]]},{"id":"CHEBI:7524","l":"nerolidol","na":2,"nb":1,"a":[["antifungal/6z-nerolidol.html","(6Z)-nerolidol"],["antifungal/nerolidol.html","nerolidol"]],"b":[["mapped/Nerolidol.yaml","Nerolidol"]]},{"id":"CHEBI:100147","l":"nalidixic acid","na":1,"nb":1,"a":[["antibacterial/nalidixic-acid.html","nalidixic acid"]],"b":[["mapped/Nalidixic_Acid_Sodium_Salt.yaml","Nalidixic acid sodium salt"]]},{"id":"CHEBI:100241","l":"ciprofloxacin","na":1,"nb":1,"a":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]],"b":[["mapped/Ciprofloxacin.yaml","Ciprofloxacin"]]},{"id":"CHEBI:100246","l":"norfloxacin","na":1,"nb":1,"a":[["antibacterial/norfloxacin.html","norfloxacin"]],"b":[["mapped/Norfloxacin.yaml","Norfloxacin"]]},{"id":"CHEBI:102130","l":"sulfamerazine","na":1,"nb":1,"a":[["antibacterial/sulfamerazine.html","sulfamerazine"]],"b":[["mapped/Sulfamerazine.yaml","Sulfamerazine"]]},{"id":"CHEBI:102265","l":"sulfamethazine","na":1,"nb":1,"a":[["antibacterial/sulfamethazine.html","sulfamethazine"]],"b":[["mapped/Sulfamethazine_Sodium_Salt.yaml","Sulfamethazine sodium salt"]]},{"id":"CHEBI:102484","l":"sulfisoxazole","na":1,"nb":1,"a":[["antibacterial/sulfisoxazole.html","sulfisoxazole"]],"b":[["mapped/Sulfisoxazole.yaml","Sulfisoxazole"]]},{"id":"CHEBI:113455","l":"sodium benzoate","na":1,"nb":1,"a":[["biocide/sodium-benzoate.html","sodium benzoate"]],"b":[["mapped/Na-benzoate.yaml","Na-benzoate"]]},{"id":"CHEBI:116278","l":"lomefloxacin","na":1,"nb":1,"a":[["antimycobacterial/lomefloxacin.html","lomefloxacin"]],"b":[["mapped/Lomefloxacin.yaml","Lomefloxacin"]]},{"id":"CHEBI:124991","l":"cefalotin","na":1,"nb":1,"a":[["antibacterial/cefalotin.html","cefalotin"]],"b":[["mapped/Cefalotin.yaml","Cefalotin"]]},{"id":"CHEBI:132106","l":"sodium propionate","na":1,"nb":1,"a":[["antifungal/sodium-propionate.html","sodium propionate"]],"b":[["mapped/Na-propionate.yaml","Na-propionate"]]},{"id":"CHEBI:132112","l":"sodium thiosulfate","na":1,"nb":1,"a":[["antifungal/sodium-thiosulfate.html","sodium thiosulfate"]],"b":[["mapped/Na2s2o3.yaml","Na2S2O3"]]},{"id":"CHEBI:134107","l":"CHIR-090","na":1,"nb":1,"a":[["unspecified/chir-090.html","CHIR-090"]],"b":[["mapped/CHIR-090.yaml","CHIR-090"]]},{"id":"CHEBI:134606","l":"toyocamycin","na":1,"nb":1,"a":[["antifungal/toyocamycin.html","toyocamycin"]],"b":[["mapped/Toyocamycin.yaml","Toyocamycin"]]},{"id":"CHEBI:134742","l":"delamanid","na":1,"nb":1,"a":[["antibacterial/delamanid.html","delamanid"]],"b":[["mapped/Delamanid.yaml","Delamanid"]]},{"id":"CHEBI:135817","l":"cefminox","na":1,"nb":1,"a":[["antibacterial/cefminox.html","cefminox"]],"b":[["mapped/Cefminox.yaml","Cefminox"]]},{"id":"CHEBI:135928","l":"doripenem","na":1,"nb":1,"a":[["antibacterial/doripenem.html","doripenem"]],"b":[["mapped/Doripenem.yaml","Doripenem"]]},{"id":"CHEBI:136609","l":"theaflavin","na":1,"nb":1,"a":[["antibacterial/theaflavin.html","theaflavin"]],"b":[["mapped/Theaflavin.yaml","Theaflavin"]]},{"id":"CHEBI:141155","l":"dimetridazole","na":1,"nb":1,"a":[["antiprotozoal/dimetridazole.html","dimetridazole"]],"b":[["mapped/Dimetridazole.yaml","Dimetridazole"]]},{"id":"CHEBI:141991","l":"cinnamycin","na":1,"nb":1,"a":[["unspecified/cinnamycin.html","cinnamycin"]],"b":[["mapped/Cinnamycin.yaml","Cinnamycin"]]},{"id":"CHEBI:143552","l":"hexanol","na":1,"nb":1,"a":[["antibacterial/hexan-1-ol.html","hexan-1-ol"]],"b":[["mapped/Hexanol.yaml","hexanol"]]},{"id":"CHEBI:149836","l":"tigecycline","na":1,"nb":1,"a":[["antibacterial/tigecycline.html","tigecycline"]],"b":[["mapped/Tigecycline.yaml","Tigecycline"]]},{"id":"CHEBI:15353","l":"blasticidin S","na":1,"nb":1,"a":[["antifungal/blasticidin-s.html","blasticidin S"]],"b":[["mapped/Blasticidin_S.yaml","Blasticidin S"]]},{"id":"CHEBI:15366","l":"acetic acid","na":1,"nb":1,"a":[["biocide/acetic-acid.html","acetic acid"]],"b":[["mapped/Acetic_Acid.yaml","Acetic acid"]]},{"id":"CHEBI:15369","l":"actinomycin","na":1,"nb":1,"a":[["antibacterial/actinomycin-d.html","actinomycin D"]],"b":[["mapped/Actinomycin_A.yaml","Actinomycin A"]]},{"id":"CHEBI:15399","l":"(+)-carvone","na":1,"nb":1,"a":[["antifungal/carvone.html","(+)-carvone"]],"b":[["mapped/D_-carvone.yaml","D(+)-Carvone"]]},{"id":"CHEBI:156387","l":"aspyrone","na":1,"nb":1,"a":[["antibacterial/aspyrone.html","aspyrone"]],"b":[["mapped/4-hydroxyphenyl_Acetic_Acid.yaml","4-Hydroxyphenyl acetic acid"]]},{"id":"CHEBI:156421","l":"","na":1,"nb":1,"a":[["antibacterial/celesticetin.html","celesticetin"]],"b":[["mapped/Celesticetin.yaml","Celesticetin"]]},{"id":"CHEBI:156450","l":"thiolutin","na":1,"nb":1,"a":[["antibacterial/thiolutin.html","thiolutin"]],"b":[["mapped/Thiolutin.yaml","Thiolutin"]]},{"id":"CHEBI:156452","l":"aureothricin","na":1,"nb":1,"a":[["antibacterial/aureothricin.html","aureothricin"]],"b":[["mapped/Aureothricin.yaml","Aureothricin"]]},{"id":"CHEBI:156550","l":"pyrrolomycin A","na":1,"nb":1,"a":[["antibacterial/pyrrolomycin-a.html","pyrrolomycin A"]],"b":[["mapped/Pyrrolomycin_A.yaml","Pyrrolomycin A"]]},{"id":"CHEBI:157175","l":"enoxacin","na":1,"nb":1,"a":[["antibacterial/enoxacin.html","enoxacin"]],"b":[["mapped/Enoxacin.yaml","Enoxacin"]]},{"id":"CHEBI:15756","l":"palmitic acid","na":1,"nb":1,"a":[["antibacterial/palmitic-acid.html","palmitic acid"]],"b":[["mapped/Palmitic_Acid.yaml","Palmitic acid"]]},{"id":"CHEBI:157683","l":"althiomycin","na":1,"nb":1,"a":[["antibacterial/althiomycin.html","althiomycin"]],"b":[["mapped/Althiomycin.yaml","Althiomycin"]]},{"id":"CHEBI:15782","l":"viomycin","na":1,"nb":1,"a":[["antimycobacterial/viomycin.html","viomycin"]],"b":[["mapped/Viomycin.yaml","Viomycin"]]},{"id":"CHEBI:15837","l":"isoamylol","na":1,"nb":1,"a":[["antifungal/isoamylol.html","isoamylol"]],"b":[["mapped/3-methyl-1-butanol.yaml","3-methyl-1-butanol"]]},{"id":"CHEBI:15882","l":"phenol","na":1,"nb":1,"a":[["biocide/phenol.html","phenol"]],"b":[["mapped/Phenol.yaml","Phenol"]]},{"id":"CHEBI:16016","l":"dihydroxyacetone","na":1,"nb":1,"a":[["antifungal/dihydroxyacetone.html","dihydroxyacetone"]],"b":[["mapped/Dihydroxyacetone.yaml","Dihydroxyacetone"]]},{"id":"CHEBI:16118","l":"berberine","na":1,"nb":1,"a":[["antifungal/berberine.html","berberine"]],"b":[["mapped/Berberine.yaml","Berberine"]]},{"id":"CHEBI:161680","l":"aztreonam","na":1,"nb":1,"a":[["antibacterial/aztreonam.html","aztreonam"]],"b":[["mapped/Aztreonam.yaml","Aztreonam"]]},{"id":"CHEBI:16196","l":"oleic acid","na":1,"nb":1,"a":[["antibacterial/oleic-acid.html","oleic acid"]],"b":[["mapped/Oleic_Acid.yaml","Oleic acid"]]},{"id":"CHEBI:16236","l":"ethanol","na":1,"nb":1,"a":[["biocide/ethanol.html","ethanol"]],"b":[["mapped/Ethanol.yaml","Ethanol"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":1,"nb":1,"a":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]],"b":[["mapped/Hydrogen_Peroxide.yaml","Hydrogen peroxide"]]},{"id":"CHEBI:16243","l":"quercetin","na":1,"nb":1,"a":[["antibacterial/quercetin.html","quercetin"]],"b":[["mapped/Quercetin.yaml","Quercetin"]]},{"id":"CHEBI:16247","l":"","na":1,"nb":1,"a":[["antifungal/miltefosine.html","miltefosine"]],"b":[["mapped/Bacto_Soytone.yaml","Bacto Soytone"]]},{"id":"CHEBI:164200","l":"triclosan","na":1,"nb":1,"a":[["antibacterial/triclosan.html","triclosan"]],"b":[["mapped/Irgasan.yaml","Irgasan"]]},{"id":"CHEBI:16547","l":"coniferyl aldehyde","na":1,"nb":1,"a":[["antifungal/coniferyl-aldehyde.html","coniferyl aldehyde"]],"b":[["mapped/Coniferyl_Aldehyde.yaml","coniferyl aldehyde"]]},{"id":"CHEBI:16619","l":"(2-trans,6-trans)-farnesol","na":1,"nb":1,"a":[["unspecified/2-trans-6-trans-farnesol.html","(2-trans,6-trans)-farnesol"]],"b":[["mapped/TransTrans-Farnesol.yaml","Trans,Trans-Farnesol"]]},{"id":"CHEBI:166872","l":"nucleocidin","na":1,"nb":1,"a":[["antibacterial/nucleocidin.html","nucleocidin"]],"b":[["mapped/Nucleocidin.yaml","Nucleocidin"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":1,"nb":1,"a":[["biocide/formaldehyde.html","formaldehyde"]],"b":[["mapped/Formaldehyde.yaml","Formaldehyde"]]},{"id":"CHEBI:16869","l":"oleandomycin","na":1,"nb":1,"a":[["antibacterial/oleandomycin.html","oleandomycin"]],"b":[["mapped/Oleandomycin.yaml","Oleandomycin"]]},{"id":"CHEBI:16914","l":"salicylic acid","na":1,"nb":1,"a":[["antifungal/salicylic-acid.html","salicylic acid"]],"b":[["mapped/Salicylic_Acid.yaml","Salicylic acid"]]},{"id":"CHEBI:16976","l":"hygromycin B","na":1,"nb":1,"a":[["antibacterial/hygromycin-b.html","hygromycin B"]],"b":[["mapped/Hygromycin_B.yaml","Hygromycin B"]]},{"id":"CHEBI:17043","l":"biphenyl-2-ol","na":1,"nb":1,"a":[["antifungal/biphenyl-2-ol.html","biphenyl-2-ol"]],"b":[["mapped/11-Biphenyl-2-ol.yaml","[1,1′-Biphenyl]-2-ol"]]},{"id":"CHEBI:17076","l":"streptomycin","na":1,"nb":1,"a":[["antibacterial/streptomycin.html","streptomycin"]],"b":[["mapped/Streptomycin.yaml","Streptomycin"]]},{"id":"CHEBI:17097","l":"biphenyl","na":1,"nb":1,"a":[["antifungal/biphenyl.html","biphenyl"]],"b":[["mapped/Biphenyl.yaml","Biphenyl"]]},{"id":"CHEBI:171741","l":"cerulenin","na":1,"nb":1,"a":[["antifungal/cerulenin.html","cerulenin"]],"b":[["mapped/Cerulenin.yaml","Cerulenin"]]},{"id":"CHEBI:17484","l":"benzyl isothiocyanate","na":1,"nb":1,"a":[["antibacterial/benzyl-isothiocyanate.html","benzyl isothiocyanate"]],"b":[["mapped/Benzyl_Isothiocyanate.yaml","Benzyl isothiocyanate"]]},{"id":"CHEBI:17642","l":"pentachlorophenol","na":1,"nb":1,"a":[["antifungal/pentachlorophenol.html","pentachlorophenol"]],"b":[["mapped/Pentachlorophenol.yaml","Pentachlorophenol"]]},{"id":"CHEBI:17698","l":"chloramphenicol","na":1,"nb":1,"a":[["antibacterial/chloramphenicol.html","chloramphenicol"]],"b":[["mapped/Chloramphenicol.yaml","Chloramphenicol"]]},{"id":"CHEBI:17833","l":"","na":1,"nb":1,"a":[["antibacterial/gentamycin-a.html","gentamycin A"]],"b":[["mapped/Gentamicin.yaml","Gentamicin"]]},{"id":"CHEBI:17847","l":"p-cresol","na":1,"nb":1,"a":[["antifungal/p-cresol.html","p-cresol"]],"b":[["mapped/4-Cresol.yaml","4-Cresol"]]},{"id":"CHEBI:17939","l":"puromycin","na":1,"nb":1,"a":[["antibacterial/puromycin.html","puromycin"]],"b":[["mapped/Puromycin.yaml","Puromycin"]]},{"id":"CHEBI:18145","l":"(R,R,R)-α-tocopherol","na":1,"nb":1,"a":[["antiviral/r-r-r-%CE%B1-tocopherol.html","(R,R,R)-α-tocopherol"]],"b":[["mapped/Alpha-Tocopherol.yaml","alpha-Tocopherol"]]},{"id":"CHEBI:193161","l":"isovanillin","na":1,"nb":1,"a":[["antifungal/isovanillin.html","isovanillin"]],"b":[["mapped/Isovanillin.yaml","Isovanillin"]]},{"id":"CHEBI:197511","l":"","na":1,"nb":1,"a":[["antiviral/docosan-1-ol.html","docosan-1-ol"]],"b":[["mapped/Docosanol.yaml","Docosanol"]]},{"id":"CHEBI:201898","l":"Magainin I","na":1,"nb":1,"a":[["antibacterial/magainin-1.html","magainin 1"]],"b":[["mapped/Magainin_I.yaml","Magainin I"]]},{"id":"CHEBI:204928","l":"cefotaxime","na":1,"nb":1,"a":[["antibacterial/cefotaxime.html","cefotaxime"]],"b":[["mapped/Cefotaxime.yaml","Cefotaxime"]]},{"id":"CHEBI:209807","l":"cefoxitin","na":1,"nb":1,"a":[["antibacterial/cefoxitin.html","cefoxitin"]],"b":[["mapped/Cefoxitin.yaml","Cefoxitin"]]},{"id":"CHEBI:220052","l":"Pyrrolomycin B","na":1,"nb":1,"a":[["antibacterial/pyrrolomycin-b.html","pyrrolomycin B"]],"b":[["mapped/Pyrrolomycin_B.yaml","Pyrrolomycin B"]]},{"id":"CHEBI:24536","l":"hexachlorocyclohexane","na":1,"nb":1,"a":[["antibacterial/%CE%B3-hexachlorocyclohexane.html","γ-hexachlorocyclohexane"]],"b":[["mapped/Hexachlorocyclo-hexane.yaml","Hexachlorocyclo-hexane"]]},{"id":"CHEBI:24750","l":"","na":1,"nb":1,"a":[["unspecified/5-hydroxystreptomycin.html","5'-hydroxystreptomycin"]],"b":[["mapped/Hydroxystreptomycin.yaml","Hydroxystreptomycin"]]},{"id":"CHEBI:2596","l":"alliin","na":1,"nb":1,"a":[["unspecified/alliin.html","alliin"]],"b":[["mapped/L-alliin.yaml","L-alliin"]]},{"id":"CHEBI:2637","l":"amikacin","na":1,"nb":1,"a":[["antibacterial/amikacin.html","amikacin"]],"b":[["mapped/Amikacin.yaml","Amikacin"]]},{"id":"CHEBI:2638","l":"amikacin disulfate","na":1,"nb":1,"a":[["antibacterial/amikacin-disulfate.html","amikacin disulfate"]],"b":[["mapped/Amikacin_Disulfate_Salt.yaml","Amikacin disulfate salt"]]},{"id":"CHEBI:2676","l":"amoxicillin","na":1,"nb":1,"a":[["antibacterial/amoxicillin.html","amoxicillin"]],"b":[["mapped/Amoxicillin.yaml","Amoxicillin"]]},{"id":"CHEBI:27446","l":"phenoxymethylpenicillin","na":1,"nb":1,"a":[["antibacterial/phenoxymethylpenicillin.html","phenoxymethylpenicillin"]],"b":[["mapped/Phenoxymethylpenicillin.yaml","Phenoxymethylpenicillin"]]},{"id":"CHEBI:27565","l":"4-aminosalicylic acid","na":1,"nb":1,"a":[["antimycobacterial/4-aminosalicylic-acid.html","4-aminosalicylic acid"]],"b":[["mapped/Para-aminosalicylic_Acid.yaml","para-aminosalicylic acid"]]},{"id":"CHEBI:27617","l":"monensin A","na":1,"nb":1,"a":[["antifungal/monensin-a.html","monensin A"]],"b":[["mapped/Monensin.yaml","Monensin"]]},{"id":"CHEBI:2762","l":"antimycin A","na":1,"nb":1,"a":[["antifungal/antimycin-a.html","antimycin A"]],"b":[["mapped/Antimycin_A.yaml","Antimycin A"]]},{"id":"CHEBI:27641","l":"cycloheximide","na":1,"nb":1,"a":[["antifungal/cycloheximide.html","cycloheximide"]],"b":[["mapped/Cycloheximid.yaml","Cycloheximid"]]},{"id":"CHEBI:27644","l":"chlortetracycline","na":1,"nb":1,"a":[["antibacterial/chlortetracycline.html","chlortetracycline"]],"b":[["mapped/Chlortetracycline.yaml","Chlortetracycline"]]},{"id":"CHEBI:2766","l":"aphidicolin","na":1,"nb":1,"a":[["antiviral/aphidicolin.html","aphidicolin"]],"b":[["mapped/Aphidicolin.yaml","Aphidicolin"]]},{"id":"CHEBI:27666","l":"actinomycin D","na":1,"nb":1,"a":[["antibacterial/actinomycin-d.html","actinomycin D"]],"b":[["mapped/Actinomycin_D.yaml","Actinomycin D"]]},{"id":"CHEBI:27701","l":"oxytetracycline","na":1,"nb":1,"a":[["antibacterial/oxytetracycline.html","oxytetracycline"]],"b":[["mapped/Oxytetracycline.yaml","Oxytetracycline"]]},{"id":"CHEBI:278547","l":"sodium azide","na":1,"nb":1,"a":[["antibacterial/sodium-azide.html","sodium azide"]],"b":[["mapped/Sodium_Azide.yaml","Sodium azide"]]},{"id":"CHEBI:27856","l":"","na":1,"nb":1,"a":[["unspecified/acetylblasticidin-s.html","acetylblasticidin S"]],"b":[["mapped/Acetamide.yaml","Acetamide"]]},{"id":"CHEBI:27864","l":"2,6-dichloro-4-nitroaniline","na":1,"nb":1,"a":[["antifungal/2-6-dichloro-4-nitroaniline.html","2,6-dichloro-4-nitroaniline"]],"b":[["mapped/Dichloran_02_in_ethanol.yaml","Dichloran (0.2% in ethanol)"]]},{"id":"CHEBI:2790","l":"apramycin","na":1,"nb":1,"a":[["antibacterial/apramycin.html","apramycin"]],"b":[["mapped/Apramycin.yaml","Apramycin"]]},{"id":"CHEBI:27902","l":"tetracycline","na":1,"nb":1,"a":[["antibacterial/tetracycline.html","tetracycline"]],"b":[["mapped/Tetracycline.yaml","Tetracycline"]]},{"id":"CHEBI:27949","l":"(E)-sinapaldehyde","na":1,"nb":1,"a":[["antifungal/e-sinapaldehyde.html","(E)-sinapaldehyde"]],"b":[["mapped/Sinapinaldehyde.yaml","sinapinaldehyde"]]},{"id":"CHEBI:27965","l":"conessine","na":1,"nb":1,"a":[["antibacterial/conessine.html","conessine"]],"b":[["mapped/Conessine.yaml","Conessine"]]},{"id":"CHEBI:28001","l":"vancomycin","na":1,"nb":1,"a":[["antibacterial/vancomycin.html","vancomycin"]],"b":[["mapped/Vancomycin.yaml","Vancomycin"]]},{"id":"CHEBI:28077","l":"rifampicin","na":1,"nb":1,"a":[["antimycobacterial/rifampicin.html","rifampicin"]],"b":[["mapped/Rifampicin.yaml","Rifampicin"]]},{"id":"CHEBI:28121","l":"harmine","na":1,"nb":1,"a":[["antiviral/harmine.html","harmine"]],"b":[["mapped/Harmine.yaml","Harmine"]]},{"id":"CHEBI:28196","l":"erythromycin B","na":1,"nb":1,"a":[["unspecified/erythromycin-b.html","erythromycin B"]],"b":[["mapped/Erythromycin_B.yaml","Erythromycin B"]]},{"id":"CHEBI:28368","l":"novobiocin","na":1,"nb":1,"a":[["antibacterial/novobiocin.html","novobiocin"]],"b":[["mapped/Novobiocin.yaml","Novobiocin"]]},{"id":"CHEBI:28460","l":"maltotetraose","na":1,"nb":1,"a":[["antibacterial/maltotetraose.html","maltotetraose"]],"b":[["mapped/Maltotetraose.yaml","Maltotetraose"]]},{"id":"CHEBI:28591","l":"guaiacol","na":1,"nb":1,"a":[["biocide/guaiacol.html","guaiacol"]],"b":[["mapped/Guaiacol.yaml","Guaiacol"]]},{"id":"CHEBI:28631","l":"3-phenylpropionic acid","na":1,"nb":1,"a":[["antifungal/3-phenylpropionic-acid.html","3-phenylpropionic acid"]],"b":[["mapped/Phenyl_Propionic_Acid.yaml","Phenyl propionic acid"]]},{"id":"CHEBI:28748","l":"doxorubicin","na":1,"nb":1,"a":[["unspecified/doxorubicin.html","doxorubicin"]],"b":[["mapped/Doxorubicin.yaml","Doxorubicin"]]},{"id":"CHEBI:28837","l":"octanoic acid","na":1,"nb":1,"a":[["antibacterial/octanoic-acid.html","octanoic acid"]],"b":[["mapped/Octanoic_Acid.yaml","Octanoic acid"]]},{"id":"CHEBI:28864","l":"tobramycin","na":1,"nb":1,"a":[["antibacterial/tobramycin.html","tobramycin"]],"b":[["mapped/Tobramycin.yaml","Tobramycin"]]},{"id":"CHEBI:28908","l":"bambermycin","na":1,"nb":1,"a":[["unspecified/bambermycin.html","bambermycin"]],"b":[["mapped/Flavomycin.yaml","Flavomycin"]]},{"id":"CHEBI:28915","l":"fosfomycin","na":1,"nb":1,"a":[["antibacterial/fosfomycin.html","fosfomycin"]],"b":[["mapped/Fosfomycin.yaml","Fosfomycin"]]},{"id":"CHEBI:28948","l":"gramine","na":1,"nb":1,"a":[["antibacterial/gramine.html","gramine"]],"b":[["mapped/Gramine.yaml","Gramine"]]},{"id":"CHEBI:28971","l":"ampicillin","na":1,"nb":1,"a":[["antibacterial/ampicillin.html","ampicillin"]],"b":[["mapped/Ampicillin.yaml","Ampicillin"]]},{"id":"CHEBI:29007","l":"ceftriaxone","na":1,"nb":1,"a":[["antibacterial/ceftriaxone.html","ceftriaxone"]],"b":[["mapped/Ceftriaxone.yaml","Ceftriaxone"]]},{"id":"CHEBI:29013","l":"fusidic acid","na":1,"nb":1,"a":[["antibacterial/fusidic-acid.html","fusidic acid"]],"b":[["mapped/Fusidic_Acid_Sodium_Salt.yaml","Fusidic acid sodium salt"]]},{"id":"CHEBI:2955","l":"azithromycin","na":1,"nb":1,"a":[["antibacterial/azithromycin.html","azithromycin"]],"b":[["mapped/Azithromycin.yaml","Azithromycin"]]},{"id":"CHEBI:2956","l":"azlocillin","na":1,"nb":1,"a":[["antibacterial/azlocillin.html","azlocillin"]],"b":[["mapped/Azlocillin.yaml","azlocillin"]]},{"id":"CHEBI:29582","l":"ascomycin","na":1,"nb":1,"a":[["antifungal/ascomycin.html","ascomycin"]],"b":[["mapped/Ascomycin.yaml","Ascomycin"]]},{"id":"CHEBI:29649","l":"narbomycin","na":1,"nb":1,"a":[["antibacterial/narbomycin.html","narbomycin"]],"b":[["mapped/Narbomycin.yaml","Narbomycin"]]},{"id":"CHEBI:29670","l":"Ramoplanin","na":1,"nb":1,"a":[["antibacterial/ramoplanin.html","ramoplanin"]],"b":[["mapped/Ramoplanin.yaml","Ramoplanin"]]},{"id":"CHEBI:29673","l":"rifamycin SV","na":1,"nb":1,"a":[["antimycobacterial/rifamycin-sv.html","rifamycin SV"]],"b":[["mapped/Rifamycin_Sv.yaml","Rifamycin Sv"]]},{"id":"CHEBI:29678","l":"sodium arsenite","na":1,"nb":1,"a":[["antibacterial/sodium-arsenite.html","sodium arsenite"]],"b":[["mapped/Sodium_M-arsenite.yaml","Sodium m-arsenite"]]},{"id":"CHEBI:29687","l":"","na":1,"nb":1,"a":[["antibacterial/teicoplanin.html","teicoplanin"]],"b":[["mapped/Teicoplanin.yaml","Teicoplanin"]]},{"id":"CHEBI:29693","l":"thiostrepton","na":1,"nb":1,"a":[["antibacterial/thiostrepton.html","thiostrepton"]],"b":[["mapped/Thiostrepton.yaml","Thiostrepton"]]},{"id":"CHEBI:29699","l":"","na":1,"nb":1,"a":[["antibacterial/tunicamycin.html","tunicamycin"]],"b":[["mapped/Tunicamycin.yaml","Tunicamycin"]]},{"id":"CHEBI:2979","l":"baicalein","na":1,"nb":1,"a":[["antibacterial/baicalein.html","baicalein"]],"b":[["mapped/Baicalein.yaml","Baicalein"]]},{"id":"CHEBI:3020","l":"","na":1,"nb":1,"a":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"]],"b":[["mapped/Benzalkonium_Chloride.yaml","Benzalkonium Chloride"]]},{"id":"CHEBI:30751","l":"formic acid","na":1,"nb":1,"a":[["antibacterial/formic-acid.html","formic acid"]],"b":[["mapped/Formic_Acid.yaml","Formic acid"]]},{"id":"CHEBI:30768","l":"propionic acid","na":1,"nb":1,"a":[["antifungal/propionic-acid.html","propionic acid"]],"b":[["mapped/Propionic_Acid.yaml","Propionic acid"]]},{"id":"CHEBI:30805","l":"dodecanoic acid","na":1,"nb":1,"a":[["antibacterial/dodecanoic-acid.html","dodecanoic acid"]],"b":[["mapped/Lauric_Acid.yaml","Lauric acid"]]},{"id":"CHEBI:30813","l":"decanoic acid","na":1,"nb":1,"a":[["antibacterial/decanoic-acid.html","decanoic acid"]],"b":[["mapped/Decanoic_Acid.yaml","Decanoic acid"]]},{"id":"CHEBI:31168","l":"spiramycin II","na":1,"nb":1,"a":[["antibacterial/spiramycin-ii.html","spiramycin II"]],"b":[["mapped/Spiramycin_II.yaml","Spiramycin II"]]},{"id":"CHEBI:31264","l":"benzethonium chloride","na":1,"nb":1,"a":[["antibacterial/benzethonium-chloride.html","benzethonium chloride"]],"b":[["mapped/Benzethonium_Chloride.yaml","Benzethonium chloride"]]},{"id":"CHEBI:31359","l":"carminomycin","na":1,"nb":1,"a":[["unspecified/carminomycin.html","carminomycin"]],"b":[["mapped/Carminomycin.yaml","Carminomycin"]]},{"id":"CHEBI:31810","l":"fleroxacin","na":1,"nb":1,"a":[["antibacterial/fleroxacin.html","fleroxacin"]],"b":[["mapped/Fleroxacin.yaml","Fleroxacin"]]},{"id":"CHEBI:31845","l":"Midecamycin","na":1,"nb":1,"a":[["antibacterial/midecamycin.html","midecamycin"]],"b":[["mapped/Midecamycin.yaml","Midecamycin"]]},{"id":"CHEBI:31908","l":"Niddamycin","na":1,"nb":1,"a":[["antibacterial/niddamycin.html","niddamycin"]],"b":[["mapped/Niddamycin.yaml","Niddamycin"]]},{"id":"CHEBI:32146","l":"sodium hypochlorite","na":1,"nb":1,"a":[["biocide/sodium-hypochlorite.html","sodium hypochlorite"]],"b":[["mapped/Sodium_Hypochlorite.yaml","Sodium hypochlorite"]]},{"id":"CHEBI:32161","l":"sulfadimethoxine","na":1,"nb":1,"a":[["unspecified/sulfadimethoxine.html","sulfadimethoxine"]],"b":[["mapped/Sulfadimethoxine.yaml","Sulfadimethoxine"]]},{"id":"CHEBI:3259","l":"CCCP","na":1,"nb":1,"a":[["antibacterial/cccp.html","CCCP"]],"b":[["mapped/CCCP.yaml","CCCP"]]},{"id":"CHEBI:327119","l":"azetidin-2-one","na":1,"nb":1,"a":[["unspecified/azetidin-2-one.html","azetidin-2-one"]],"b":[["mapped/2-Azetidinone.yaml","2-Azetidinone"]]},{"id":"CHEBI:32800","l":"(S)-mandelic acid","na":1,"nb":1,"a":[["antibacterial/s-mandelic-acid.html","(S)-mandelic acid"]],"b":[["mapped/%28S%29-mandelic_Acid.yaml","(S)-mandelic Acid"]]},{"id":"CHEBI:338412","l":"(-)-anisomycin","na":1,"nb":1,"a":[["antiviral/anisomycin.html","(−)-anisomycin"]],"b":[["mapped/%28-%29-anisomycin.yaml","(-)-anisomycin"]]},{"id":"CHEBI:3393","l":"carbenicillin","na":1,"nb":1,"a":[["antibacterial/carbenicillin.html","carbenicillin"]],"b":[["mapped/Carbenicillin.yaml","Carbenicillin"]]},{"id":"CHEBI:34730","l":"doxycycline hyclate","na":1,"nb":1,"a":[["antibacterial/doxycycline-hyclate.html","doxycycline hyclate"]],"b":[["mapped/Doxycycline_Hyclate.yaml","Doxycycline hyclate"]]},{"id":"CHEBI:3478","l":"cefaclor","na":1,"nb":1,"a":[["antibacterial/cefaclor.html","cefaclor"]],"b":[["mapped/Cefaclor.yaml","Cefaclor"]]},{"id":"CHEBI:3479","l":"cefadroxil","na":1,"nb":1,"a":[["antibacterial/cefadroxil.html","cefadroxil"]],"b":[["mapped/Cefadroxil.yaml","Cefadroxil"]]},{"id":"CHEBI:3480","l":"cefamandole","na":1,"nb":1,"a":[["antibacterial/cefamandole.html","cefamandole"]],"b":[["mapped/Cefamandole.yaml","Cefamandole"]]},{"id":"CHEBI:3489","l":"cefmetazole","na":1,"nb":1,"a":[["antibacterial/cefmetazole.html","cefmetazole"]],"b":[["mapped/Cefmetazole.yaml","Cefmetazole"]]},{"id":"CHEBI:3493","l":"cefoperazone","na":1,"nb":1,"a":[["antibacterial/cefoperazone.html","cefoperazone"]],"b":[["mapped/Cefoperazone.yaml","Cefoperazone"]]},{"id":"CHEBI:3499","l":"cefotetan","na":1,"nb":1,"a":[["antibacterial/cefotetan.html","cefotetan"]],"b":[["mapped/Cefotetan.yaml","Cefotetan"]]},{"id":"CHEBI:3504","l":"cefpodoxime","na":1,"nb":1,"a":[["antibacterial/cefpodoxime.html","cefpodoxime"]],"b":[["mapped/Cefpodoxime.yaml","Cefpodoxime"]]},{"id":"CHEBI:3506","l":"cefprozil","na":1,"nb":1,"a":[["antibacterial/cefprozil.html","cefprozil"]],"b":[["mapped/Cefprozil.yaml","Cefprozil"]]},{"id":"CHEBI:3515","l":"cefuroxime","na":1,"nb":1,"a":[["antibacterial/cefuroxime.html","cefuroxime"]],"b":[["mapped/Cefuroxime.yaml","Cefuroxime"]]},{"id":"CHEBI:3534","l":"cephalexin","na":1,"nb":1,"a":[["antibacterial/cephalexin.html","cephalexin"]],"b":[["mapped/Cephalexin.yaml","Cephalexin"]]},{"id":"CHEBI:3537","l":"cefaloridine","na":1,"nb":1,"a":[["antibacterial/cefaloridine.html","cefaloridine"]],"b":[["mapped/Cefaloridine.yaml","Cefaloridine"]]},{"id":"CHEBI:3547","l":"cephradine","na":1,"nb":1,"a":[["antibacterial/cephradine.html","cephradine"]],"b":[["mapped/Cephradine.yaml","Cephradine"]]},{"id":"CHEBI:355510","l":"cefotiam","na":1,"nb":1,"a":[["antibacterial/cefotiam.html","cefotiam"]],"b":[["mapped/Cefotiam.yaml","Cefotiam"]]},{"id":"CHEBI:35720","l":"enrofloxacin","na":1,"nb":1,"a":[["antibacterial/enrofloxacin.html","enrofloxacin"]],"b":[["mapped/Enrofloxacin.yaml","Enrofloxacin"]]},{"id":"CHEBI:36336","l":"","na":1,"nb":1,"a":[["antiprotozoal/suramin.html","suramin"]],"b":[["mapped/Naphthalene_Sulfonic_Acid.yaml","Naphthalene sulfonic acid"]]},{"id":"CHEBI:3649","l":"chlorpromazine hydrochloride","na":1,"nb":1,"a":[["antiviral/chlorpromazine-hydrochloride.html","chlorpromazine hydrochloride"]],"b":[["mapped/Chlorpromazine_Hydrochloride.yaml","Chlorpromazine hydrochloride"]]},{"id":"CHEBI:3687","l":"chrysophanol","na":1,"nb":1,"a":[["antiviral/chrysophanol.html","chrysophanol"]],"b":[["mapped/Chrysophanol.yaml","Chrysophanol"]]},{"id":"CHEBI:3716","l":"cinoxacin","na":1,"nb":1,"a":[["antibacterial/cinoxacin.html","cinoxacin"]],"b":[["mapped/Cinoxacin.yaml","Cinoxacin"]]},{"id":"CHEBI:3732","l":"clarithromycin","na":1,"nb":1,"a":[["antibacterial/clarithromycin.html","clarithromycin"]],"b":[["mapped/Clarithromycin.yaml","Clarithromycin"]]},{"id":"CHEBI:3745","l":"clindamycin","na":1,"nb":1,"a":[["antibacterial/clindamycin.html","clindamycin"]],"b":[["mapped/Clindamycin.yaml","Clindamycin"]]},{"id":"CHEBI:3749","l":"clofazimine","na":1,"nb":1,"a":[["antimycobacterial/clofazimine.html","clofazimine"]],"b":[["mapped/Clofazimine.yaml","Clofazimine"]]},{"id":"CHEBI:3764","l":"clotrimazole","na":1,"nb":1,"a":[["antifungal/clotrimazole.html","clotrimazole"]],"b":[["mapped/Clotrimazole.yaml","Clotrimazole"]]},{"id":"CHEBI:37868","l":"octanol","na":1,"nb":1,"a":[["antifungal/octan-1-ol.html","octan-1-ol"]],"b":[["mapped/Octanol.yaml","octanol"]]},{"id":"CHEBI:37923","l":"astromicin","na":1,"nb":1,"a":[["antibacterial/astromicin.html","astromicin"]],"b":[["mapped/Astromicin.yaml","Astromicin"]]},{"id":"CHEBI:38167","l":"physcion","na":1,"nb":1,"a":[["antibacterial/physcion.html","physcion"]],"b":[["mapped/Physcion.yaml","Physcion"]]},{"id":"CHEBI:38291","l":"dihydrostreptomycin","na":1,"nb":1,"a":[["unspecified/dihydrostreptomycin.html","dihydrostreptomycin"]],"b":[["mapped/Dihydrostreptomycin.yaml","Dihydrostreptomycin"]]},{"id":"CHEBI:3962","l":"curcumin","na":1,"nb":1,"a":[["antifungal/curcumin.html","curcumin"]],"b":[["mapped/Curcumin.yaml","Curcumin"]]},{"id":"CHEBI:40009","l":"D-cycloserine","na":1,"nb":1,"a":[["antimycobacterial/d-cycloserine.html","D-cycloserine"]],"b":[["mapped/D-Cycloserine.yaml","D-Cycloserine"]]},{"id":"CHEBI:404903","l":"ertapenem","na":1,"nb":1,"a":[["antibacterial/ertapenem.html","ertapenem"]],"b":[["mapped/Ertapenem.yaml","Ertapenem"]]},{"id":"CHEBI:41688","l":"crystal violet","na":1,"nb":1,"a":[["antibacterial/crystal-violet.html","crystal violet"]],"b":[["mapped/Crystal_Violet.yaml","Crystal Violet"]]},{"id":"CHEBI:41977","l":"daunorubicin","na":1,"nb":1,"a":[["unspecified/daunorubicin.html","daunorubicin"]],"b":[["mapped/Daunorubicin.yaml","Daunorubicin"]]},{"id":"CHEBI:42355","l":"erythromycin A","na":1,"nb":1,"a":[["antibacterial/erythromycin-a.html","erythromycin A"]],"b":[["mapped/Erythromycin_A.yaml","Erythromycin A"]]},{"id":"CHEBI:42768","l":"geneticin","na":1,"nb":1,"a":[["antiprotozoal/geneticin.html","geneticin"]],"b":[["mapped/Geneticin_G418.yaml","Geneticin G418"]]},{"id":"CHEBI:43968","l":"meropenem","na":1,"nb":1,"a":[["antibacterial/meropenem.html","meropenem"]],"b":[["mapped/Meropenem.yaml","Meropenem"]]},{"id":"CHEBI:44137","l":"tiamulin","na":1,"nb":1,"a":[["antibacterial/tiamulin.html","tiamulin"]],"b":[["mapped/Tiamulin.yaml","Tiamulin"]]},{"id":"CHEBI:44368","l":"nitrofurazone","na":1,"nb":1,"a":[["antibacterial/nitrofurazone.html","nitrofurazone"]],"b":[["mapped/Nitrofurazone.yaml","Nitrofurazone"]]},{"id":"CHEBI:44401","l":"lawsone","na":1,"nb":1,"a":[["antifungal/lawsone.html","lawsone"]],"b":[["mapped/Lawsone.yaml","Lawsone"]]},{"id":"CHEBI:44504","l":"nogalamycin","na":1,"nb":1,"a":[["unspecified/nogalamycin.html","nogalamycin"]],"b":[["mapped/Nogalamycin.yaml","Nogalamycin"]]},{"id":"CHEBI:45367","l":"rifabutin","na":1,"nb":1,"a":[["antibacterial/rifabutin.html","rifabutin"]],"b":[["mapped/Rifabutin.yaml","Rifabutin"]]},{"id":"CHEBI:45373","l":"sulfanilamide","na":1,"nb":1,"a":[["antibacterial/sulfanilamide.html","sulfanilamide"]],"b":[["mapped/Sulfanilamide.yaml","Sulfanilamide"]]},{"id":"CHEBI:45395","l":"pyrithiamine pyrophosphate","na":1,"nb":1,"a":[["unspecified/pyrithiamine-pyrophosphate.html","pyrithiamine pyrophosphate"]],"b":[["mapped/Thiamine_pyrophosphate.yaml","Thiamine pyrophosphate"]]},{"id":"CHEBI:45735","l":"troleandomycin","na":1,"nb":1,"a":[["unspecified/troleandomycin.html","troleandomycin"]],"b":[["mapped/Troleandomycin.yaml","Troleandomycin"]]},{"id":"CHEBI:45773","l":"streptolydigin","na":1,"nb":1,"a":[["unspecified/streptolydigin.html","streptolydigin"]],"b":[["mapped/Streptolydigin.yaml","Streptolydigin"]]},{"id":"CHEBI:45924","l":"trimethoprim","na":1,"nb":1,"a":[["antibacterial/trimethoprim.html","trimethoprim"]],"b":[["mapped/Trimethoprim.yaml","Trimethoprim"]]},{"id":"CHEBI:4629","l":"diosgenin","na":1,"nb":1,"a":[["antiviral/diosgenin.html","diosgenin"]],"b":[["mapped/Diosgenin.yaml","Diosgenin"]]},{"id":"CHEBI:46345","l":"5-fluorouracil","na":1,"nb":1,"a":[["antifungal/5-fluorouracil.html","5-Fluorouracil"]],"b":[["mapped/5-fluorouracil.yaml","5-fluorouracil"]]},{"id":"CHEBI:46742","l":"Nutlin-3","na":1,"nb":1,"a":[["antiviral/nutlin-3.html","Nutlin-3"]],"b":[["mapped/Trypticase-glucose-yeast_Extract.yaml","Trypticase-glucose-yeast Extract"]]},{"id":"CHEBI:471744","l":"imipenem","na":1,"nb":1,"a":[["antibacterial/imipenem.html","imipenem"]],"b":[["mapped/Imipenem.yaml","Imipenem"]]},{"id":"CHEBI:472657","l":"cefixime","na":1,"nb":1,"a":[["antibacterial/cefixime.html","cefixime"]],"b":[["mapped/Cefixime.yaml","Cefixime"]]},{"id":"CHEBI:474053","l":"cefazolin","na":1,"nb":1,"a":[["antibacterial/cefazolin.html","cefazolin"]],"b":[["mapped/Cefazolin.yaml","Cefazolin"]]},{"id":"CHEBI:478164","l":"cefepime","na":1,"nb":1,"a":[["antibacterial/cefepime.html","cefepime"]],"b":[["mapped/Cefepime.yaml","Cefepime"]]},{"id":"CHEBI:48131","l":"nonanedioic acid","na":1,"nb":1,"a":[["antibacterial/nonanedioic-acid.html","nonanedioic acid"]],"b":[["mapped/Azelaic_Acid.yaml","Azelaic acid"]]},{"id":"CHEBI:48267","l":"tubercidin","na":1,"nb":1,"a":[["antifungal/tubercidin.html","tubercidin"]],"b":[["mapped/Tubercidin.yaml","Tubercidin"]]},{"id":"CHEBI:4877","l":"ethambutol","na":1,"nb":1,"a":[["antimycobacterial/ethambutol.html","ethambutol"]],"b":[["mapped/Ethambutol.yaml","Ethambutol"]]},{"id":"CHEBI:4878","l":"ethambutol dihydrochloride","na":1,"nb":1,"a":[["antimycobacterial/ethambutol-dihydrochloride.html","ethambutol dihydrochloride"]],"b":[["mapped/Ethambutol_Dihydrochloride.yaml","Ethambutol dihydrochloride"]]},{"id":"CHEBI:4883","l":"ethidium bromide","na":1,"nb":1,"a":[["antiprotozoal/ethidium-bromide.html","ethidium bromide"]],"b":[["mapped/Ethidium_Bromide.yaml","Ethidium Bromide"]]},{"id":"CHEBI:4885","l":"ethionamide","na":1,"nb":1,"a":[["antimycobacterial/ethionamide.html","ethionamide"]],"b":[["mapped/Ethionamide.yaml","Ethionamide"]]},{"id":"CHEBI:48947","l":"clavulanic acid","na":1,"nb":1,"a":[["antibacterial/clavulanic-acid.html","clavulanic acid"]],"b":[["mapped/Clavulanic_Acid.yaml","Clavulanic Acid"]]},{"id":"CHEBI:49566","l":"cloxacillin","na":1,"nb":1,"a":[["antibacterial/cloxacillin.html","cloxacillin"]],"b":[["mapped/Cloxacillin.yaml","Cloxacillin"]]},{"id":"CHEBI:50199","l":"pefloxacin","na":1,"nb":1,"a":[["antibacterial/pefloxacin.html","pefloxacin"]],"b":[["mapped/Pefloxacin.yaml","Pefloxacin"]]},{"id":"CHEBI:50694","l":"minocycline","na":1,"nb":1,"a":[["antibacterial/minocycline.html","minocycline"]],"b":[["mapped/Minocycline.yaml","Minocycline"]]},{"id":"CHEBI:50845","l":"doxycycline","na":1,"nb":1,"a":[["antibacterial/doxycycline.html","doxycycline"]],"b":[["mapped/Doxycycline.yaml","Doxycycline"]]},{"id":"CHEBI:5098","l":"flucloxacillin","na":1,"nb":1,"a":[["antibacterial/flucloxacillin.html","flucloxacillin"]],"b":[["mapped/Flucloxacillin.yaml","flucloxacillin"]]},{"id":"CHEBI:51208","l":"mecillinam","na":1,"nb":1,"a":[["antibacterial/mecillinam.html","mecillinam"]],"b":[["mapped/Mecillinam.yaml","Mecillinam"]]},{"id":"CHEBI:5169","l":"fraxetin","na":1,"nb":1,"a":[["antibacterial/fraxetin.html","fraxetin"]],"b":[["mapped/Fraxetin.yaml","Fraxetin"]]},{"id":"CHEBI:51799","l":"imipenem hydrate","na":1,"nb":1,"a":[["antibacterial/imipenem-hydrate.html","imipenem hydrate"]],"b":[["mapped/Impenum_Monohydrate.yaml","Impenum monohydrate"]]},{"id":"CHEBI:5195","l":"furazolidone","na":1,"nb":1,"a":[["antibacterial/furazolidone.html","furazolidone"]],"b":[["mapped/Furazolidone.yaml","Furazolidone"]]},{"id":"CHEBI:51963","l":"","na":1,"nb":1,"a":[["unspecified/bacteriohopane-32-33-34-35-tetrol.html","bacteriohopane-32,33,34,35-tetrol"]],"b":[["mapped/Hopanoid.yaml","Hopanoid"]]},{"id":"CHEBI:53620","l":"methylisothiazolinone","na":1,"nb":1,"a":[["antifungal/methylisothiazolinone.html","methylisothiazolinone"]],"b":[["mapped/2-methyl-4-isothizaolin-3-one.yaml","2-methyl-4-isothizaolin-3-one"]]},{"id":"CHEBI:53727","l":"sulfamethoxydiazine","na":1,"nb":1,"a":[["antimycobacterial/sulfamethoxydiazine.html","sulfamethoxydiazine"]],"b":[["mapped/Sulfamethoxydiazine.yaml","Sulfamethoxydiazine"]]},{"id":"CHEBI:5533","l":"granaticin","na":1,"nb":1,"a":[["unspecified/granaticin.html","granaticin"]],"b":[["mapped/Granaticin.yaml","Granaticin"]]},{"id":"CHEBI:556075","l":"radicicol","na":1,"nb":1,"a":[["antifungal/radicicol.html","radicicol"]],"b":[["mapped/Radicicol.yaml","Radicicol"]]},{"id":"CHEBI:5623","l":"harman","na":1,"nb":1,"a":[["antiviral/harman.html","harman"]],"b":[["mapped/Harmane.yaml","Harmane"]]},{"id":"CHEBI:59936","l":"ciprofloxacin hydrochloride hydrate","na":1,"nb":1,"a":[["antibacterial/ciprofloxacin-hydrochloride-hydrate.html","ciprofloxacin hydrochloride hydrate"]],"b":[["mapped/Ciprofloxacin_Hydrochloride.yaml","Ciprofloxacin Hydrochloride"]]},{"id":"CHEBI:600103","l":"daptomycin","na":1,"nb":1,"a":[["antibacterial/daptomycin.html","daptomycin"]],"b":[["mapped/Daptomycin.yaml","Daptomycin"]]},{"id":"CHEBI:6030","l":"isoniazide","na":1,"nb":1,"a":[["antimycobacterial/isoniazide.html","isoniazide"]],"b":[["mapped/Isoniazid.yaml","Isoniazid"]]},{"id":"CHEBI:60584","l":"bicozamycin","na":1,"nb":1,"a":[["antibacterial/bicozamycin.html","bicozamycin"]],"b":[["mapped/Bicyclomycin.yaml","Bicyclomycin"]]},{"id":"CHEBI:6109","l":"kanamycin A sulfate","na":1,"nb":1,"a":[["antibacterial/kanamycin-a-sulfate.html","kanamycin A sulfate"]],"b":[["mapped/Kanamycin_Sulfate.yaml","Kanamycin sulfate"]]},{"id":"CHEBI:62412","l":"phenazine-1-carboxylic acid","na":1,"nb":1,"a":[["antifungal/phenazine-1-carboxylic-acid.html","phenazine-1-carboxylic acid"]],"b":[["mapped/Phenazine-1-carboxylic_Acid.yaml","Phenazine-1-carboxylic acid"]]},{"id":"CHEBI:63598","l":"levofloxacin","na":1,"nb":1,"a":[["antibacterial/levofloxacin.html","levofloxacin"]],"b":[["mapped/Levofloxacin.yaml","Levofloxacin"]]},{"id":"CHEBI:63607","l":"linezolid","na":1,"nb":1,"a":[["antibacterial/linezolid.html","linezolid"]],"b":[["mapped/Linezolid.yaml","Linezolid"]]},{"id":"CHEBI:63611","l":"moxifloxacin","na":1,"nb":1,"a":[["antibacterial/moxifloxacin.html","moxifloxacin"]],"b":[["mapped/Moxifloxacin.yaml","Moxifloxacin"]]},{"id":"CHEBI:6377","l":"lapachol","na":1,"nb":1,"a":[["antibacterial/lapachol.html","lapachol"]],"b":[["mapped/Lapachol.yaml","Lapachol"]]},{"id":"CHEBI:64276","l":"glutaraldehyde","na":1,"nb":1,"a":[["biocide/glutaraldehyde.html","glutaraldehyde"]],"b":[["mapped/Glutaraldehyde.yaml","Glutaraldehyde"]]},{"id":"CHEBI:6472","l":"lincomycin","na":1,"nb":1,"a":[["antibacterial/lincomycin.html","lincomycin"]],"b":[["mapped/Lincomycin.yaml","Lincomycin"]]},{"id":"CHEBI:6518","l":"lomefloxacin hydrochloride","na":1,"nb":1,"a":[["antimycobacterial/lomefloxacin-hydrochloride.html","lomefloxacin hydrochloride"]],"b":[["mapped/Lomefloxacin_Hydrochloride.yaml","Lomefloxacin hydrochloride"]]},{"id":"CHEBI:65408","l":"andrographolide","na":1,"nb":1,"a":[["antiviral/andrographolide.html","andrographolide"]],"b":[["mapped/Andrographolide.yaml","Andrographolide"]]},{"id":"CHEBI:65585","l":"carnosic acid","na":1,"nb":1,"a":[["antiviral/carnosic-acid.html","carnosic acid"]],"b":[["mapped/Carnosic_Acid.yaml","Carnosic Acid"]]},{"id":"CHEBI:66279","l":"tubelactomicin A","na":1,"nb":1,"a":[["antimycobacterial/tubelactomicin-a.html","tubelactomicin A"]],"b":[["mapped/Tubelactomicin_A.yaml","Tubelactomicin A"]]},{"id":"CHEBI:67121","l":"nitroxoline","na":1,"nb":1,"a":[["antifungal/nitroxoline.html","nitroxoline"]],"b":[["mapped/8-hydroxy-nitroquinoline.yaml","8-hydroxy-nitroquinoline"]]},{"id":"CHEBI:67135","l":"2-nitroimidazole","na":1,"nb":1,"a":[["antimycobacterial/2-nitroimidazole.html","2-nitroimidazole"]],"b":[["mapped/Azomycin.yaml","Azomycin"]]},{"id":"CHEBI:6770","l":"meropenem trihydrate","na":1,"nb":1,"a":[["antibacterial/meropenem-trihydrate.html","meropenem trihydrate"]],"b":[["mapped/Meropenem.yaml","Meropenem"]]},{"id":"CHEBI:6805","l":"methacycline","na":1,"nb":1,"a":[["antibacterial/methacycline.html","methacycline"]],"b":[["mapped/Methacycline.yaml","Methacycline"]]},{"id":"CHEBI:6827","l":"methicillin","na":1,"nb":1,"a":[["antibacterial/methicillin.html","methicillin"]],"b":[["mapped/Methicillin.yaml","Methicillin"]]},{"id":"CHEBI:68590","l":"fidaxomicin","na":1,"nb":1,"a":[["antibacterial/fidaxomicin.html","fidaxomicin"]],"b":[["mapped/Fidaxomicin.yaml","Fidaxomicin"]]},{"id":"CHEBI:6872","l":"methylene blue","na":1,"nb":1,"a":[["antiprotozoal/methylene-blue.html","methylene blue"]],"b":[["mapped/Methylene_Blue.yaml","Methylene blue"]]},{"id":"CHEBI:6909","l":"metronidazole","na":1,"nb":1,"a":[["antibacterial/metronidazole.html","metronidazole"]],"b":[["mapped/Metronidazole.yaml","Metronidazole"]]},{"id":"CHEBI:6919","l":"mezlocillin","na":1,"nb":1,"a":[["antibacterial/mezlocillin.html","mezlocillin"]],"b":[["mapped/Mezlocillin.yaml","Mezlocillin"]]},{"id":"CHEBI:69196","l":"brazilein","na":1,"nb":1,"a":[["antibacterial/brazilein.html","brazilein"]],"b":[["mapped/Brazilein.yaml","Brazilein"]]},{"id":"CHEBI:69414","l":"hygromycin A","na":1,"nb":1,"a":[["antibacterial/hygromycin-a.html","hygromycin A"]],"b":[["mapped/Hygromycin_A.yaml","Hygromycin A"]]},{"id":"CHEBI:71415","l":"nitrofurantoin","na":1,"nb":1,"a":[["antibacterial/nitrofurantoin.html","nitrofurantoin"]],"b":[["mapped/Nitrofurantoin.yaml","Nitrofurantoin"]]},{"id":"CHEBI:71629","l":"nisin","na":1,"nb":1,"a":[["antibacterial/nisin.html","nisin"]],"b":[["mapped/Nisin.yaml","Nisin"]]},{"id":"CHEBI:71987","l":"curamycin A","na":1,"nb":1,"a":[["unspecified/curamycin-a.html","curamycin A"]],"b":[["mapped/Curamycin_A.yaml","Curamycin A"]]},{"id":"CHEBI:72292","l":"bedaquiline","na":1,"nb":1,"a":[["antimycobacterial/bedaquiline.html","bedaquiline"]],"b":[["mapped/Bedaquiline.yaml","Bedaquiline"]]},{"id":"CHEBI:72346","l":"roseoflavin","na":1,"nb":1,"a":[["unspecified/roseoflavin.html","roseoflavin"]],"b":[["mapped/Roseoflavin.yaml","Roseoflavin"]]},{"id":"CHEBI:72449","l":"malachite green","na":1,"nb":1,"a":[["antibacterial/malachite-green.html","malachite green"]],"b":[["mapped/Malachite_Green.yaml","Malachite green"]]},{"id":"CHEBI:74846","l":"azaserine","na":1,"nb":1,"a":[["antifungal/azaserine.html","azaserine"]],"b":[["mapped/Azaserine.yaml","Azaserine"]]},{"id":"CHEBI:7488","l":"natamycin","na":1,"nb":1,"a":[["antifungal/natamycin.html","natamycin"]],"b":[["mapped/Natamycin.yaml","Natamycin"]]},{"id":"CHEBI:7508","l":"framycetin","na":1,"nb":1,"a":[["antibacterial/framycetin.html","framycetin"]],"b":[["mapped/Framycetin.yaml","Framycetin"]]},{"id":"CHEBI:75092","l":"morin","na":1,"nb":1,"a":[["antibacterial/morin.html","morin"]],"b":[["mapped/Morin.yaml","Morin"]]},{"id":"CHEBI:7528","l":"netilmycin","na":1,"nb":1,"a":[["antibacterial/netilmycin.html","netilmycin"]],"b":[["mapped/Netilmycin.yaml","Netilmycin"]]},{"id":"CHEBI:7660","l":"","na":1,"nb":1,"a":[["antifungal/nystatin.html","nystatin"]],"b":[["mapped/Nystatin.yaml","Nystatin"]]},{"id":"CHEBI:7731","l":"","na":1,"nb":1,"a":[["antibacterial/ofloxacin.html","ofloxacin"]],"b":[["mapped/Ofloxacin.yaml","Ofloxacin"]]},{"id":"CHEBI:77543","l":"ebselen","na":1,"nb":1,"a":[["antibacterial/ebselen.html","ebselen"]],"b":[["mapped/Ebselen.yaml","Ebselen"]]},{"id":"CHEBI:77735","l":"ossamycin","na":1,"nb":1,"a":[["unspecified/ossamycin.html","ossamycin"]],"b":[["mapped/Ossamycin.yaml","Ossamycin"]]},{"id":"CHEBI:7809","l":"oxacillin","na":1,"nb":1,"a":[["antibacterial/oxacillin.html","oxacillin"]],"b":[["mapped/Oxacillin.yaml","Oxacillin"]]},{"id":"CHEBI:78661","l":"borrelidin","na":1,"nb":1,"a":[["antifungal/borrelidin.html","borrelidin"]],"b":[["mapped/Borrelidin.yaml","Borrelidin"]]},{"id":"CHEBI:78870","l":"sodium nitrite","na":1,"nb":1,"a":[["biocide/sodium-nitrite.html","sodium nitrite"]],"b":[["mapped/Nano2.yaml","NaNO2"]]},{"id":"CHEBI:7934","l":"paromomycin","na":1,"nb":1,"a":[["antibacterial/paromomycin.html","paromomycin"]],"b":[["mapped/Paromomycin.yaml","Paromomycin"]]},{"id":"CHEBI:7935","l":"paromomycin sulfate","na":1,"nb":1,"a":[["antibacterial/paromomycin-sulfate.html","paromomycin sulfate"]],"b":[["mapped/Paromomycin_Sulfate_Salt.yaml","Paromomycin sulfate salt"]]},{"id":"CHEBI:79394","l":"indolmycin","na":1,"nb":1,"a":[["antibacterial/indolmycin.html","indolmycin"]],"b":[["mapped/Indolmycin.yaml","Indolmycin"]]},{"id":"CHEBI:80025","l":"Salinomycin","na":1,"nb":1,"a":[["antibacterial/salinomycin.html","salinomycin"]],"b":[["mapped/Salinomycin.yaml","Salinomycin"]]},{"id":"CHEBI:81419","l":"kasugamycin","na":1,"nb":1,"a":[["antifungal/kasugamycin.html","kasugamycin"]],"b":[["mapped/Kasugamycin.yaml","Kasugamycin"]]},{"id":"CHEBI:81711","l":"chlorhexidine acetate","na":1,"nb":1,"a":[["antibacterial/chlorhexidine-acetate.html","chlorhexidine acetate"]],"b":[["mapped/Chlorhexidine_Diacetate_Salt_Hydrate.yaml","Chlorhexidine diacetate salt hydrate"]]},{"id":"CHEBI:81862","l":"potassium hydrogencarbonate","na":1,"nb":1,"a":[["antifungal/potassium-hydrogencarbonate.html","potassium hydrogencarbonate"]],"b":[["mapped/Khco3.yaml","KHCO3"]]},{"id":"CHEBI:8232","l":"piperacillin","na":1,"nb":1,"a":[["antibacterial/piperacillin.html","piperacillin"]],"b":[["mapped/Piperacillin.yaml","Piperacillin"]]},{"id":"CHEBI:85129","l":"ristocetin","na":1,"nb":1,"a":[["antibacterial/ristocetin.html","ristocetin"]],"b":[["mapped/Ristocetin_B.yaml","Ristocetin B"]]},{"id":"CHEBI:86431","l":"sodium fluorophosphate","na":1,"nb":1,"a":[["antibacterial/sodium-fluorophosphate.html","sodium fluorophosphate"]],"b":[["mapped/Sodium_Fluorophosphate.yaml","Sodium Fluorophosphate"]]},{"id":"CHEBI:8653","l":"pyocyanine","na":1,"nb":1,"a":[["antibacterial/pyocyanine.html","pyocyanine"]],"b":[["mapped/Pyocyanin.yaml","Pyocyanin"]]},{"id":"CHEBI:8673","l":"pyrimethamine","na":1,"nb":1,"a":[["antiprotozoal/pyrimethamine.html","pyrimethamine"]],"b":[["mapped/Pyrimethamine.yaml","Pyrimethamine"]]},{"id":"CHEBI:86904","l":"4-coumaric acid methyl ester","na":1,"nb":1,"a":[["antifungal/4-coumaric-acid-methyl-ester.html","4-coumaric acid methyl ester"]],"b":[["mapped/Methyl-cis-p-coumarate.yaml","methyl-cis-p-coumarate"]]},{"id":"CHEBI:87084","l":"rosaramicin","na":1,"nb":1,"a":[["antibacterial/rosaramicin.html","rosaramicin"]],"b":[["mapped/Rosaramicin.yaml","Rosaramicin"]]},{"id":"CHEBI:9215","l":"spectinomycin","na":1,"nb":1,"a":[["antibacterial/spectinomycin.html","spectinomycin"]],"b":[["mapped/Spectinomycin.yaml","Spectinomycin"]]},{"id":"CHEBI:9217","l":"spectinomycin hydrochloride hydrate","na":1,"nb":1,"a":[["antibacterial/spectinomycin-hydrochloride-hydrate.html","spectinomycin hydrochloride hydrate"]],"b":[["mapped/Spectinomycin_Dihydrochloride_Pentahydrate.yaml","Spectinomycin dihydrochloride pentahydrate"]]},{"id":"CHEBI:9287","l":"streptonigrin","na":1,"nb":1,"a":[["unspecified/streptonigrin.html","streptonigrin"]],"b":[["mapped/Streptonigrin.yaml","Streptonigrin"]]},{"id":"CHEBI:9321","l":"sulbactam","na":1,"nb":1,"a":[["unspecified/sulbactam.html","sulbactam"]],"b":[["mapped/Sulbactam.yaml","Sulbactam"]]},{"id":"CHEBI:9331","l":"sulfamethizole","na":1,"nb":1,"a":[["antibacterial/sulfamethizole.html","sulfamethizole"]],"b":[["mapped/Sulfamethizole.yaml","Sulfamethizole"]]},{"id":"CHEBI:9332","l":"sulfamethoxazole","na":1,"nb":1,"a":[["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]],"b":[["mapped/Sulfamethoxazole.yaml","Sulfamethoxazole"]]},{"id":"CHEBI:9334","l":"sulfasalazine","na":1,"nb":1,"a":[["antibacterial/sulfasalazine.html","sulfasalazine"]],"b":[["mapped/Sulfasalazine.yaml","Sulfasalazine"]]},{"id":"CHEBI:9421","l":"tazobactam","na":1,"nb":1,"a":[["unspecified/tazobactam.html","tazobactam"]],"b":[["mapped/Tazobactam.yaml","Tazobactam"]]},{"id":"CHEBI:9587","l":"ticarcillin","na":1,"nb":1,"a":[["antibacterial/ticarcillin.html","ticarcillin"]],"b":[["mapped/Ticarcillin.yaml","Ticarcillin"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/AntibioticMech--TaxonMech.json b/assets/fleet/edges/AntibioticMech--TaxonMech.json index e6b07ce..983d149 100644 --- a/assets/fleet/edges/AntibioticMech--TaxonMech.json +++ b/assets/fleet/edges/AntibioticMech--TaxonMech.json @@ -1 +1 @@ -{"a":"AntibioticMech","b":"TaxonMech","base":{"AntibioticMech":"https://culturebotai.github.io/AntibioticMech/pages/","TaxonMech":"https://culturebotai.github.io/TaxonMech/pages/taxon.html?id="},"n":109,"by":{"NCBITaxon":109},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":30,"nb":3868,"a":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A196023","Aeromonas hydrophila subsp. hydrophila"],["NCBITaxon%3A380703","Aeromonas hydrophila subsp. hydrophila ATCC 7966"],["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A35703","Citrobacter amalonaticus"],["NCBITaxon%3A163202","Corynebacterium appendicis"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":22,"nb":422,"a":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"]],"b":[["NCBITaxon%3A1653844","Erwinia carnegieana"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A2058152","Klebsiella grimontii"],["NCBITaxon%3A54291","Klebsiella ornithinolytica"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A1443592","Klebsiella pneumoniae 07A044"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":15,"nb":1075,"a":[["antibacterial/amikacin.html","amikacin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A1311139","Acinetobacter baumannii 016901DP_1"],["NCBITaxon%3A1311140","Acinetobacter baumannii 016901DP_2"],["NCBITaxon%3A1310784","Acinetobacter baumannii 1007214"],["NCBITaxon%3A1310751","Acinetobacter baumannii 1022959"],["NCBITaxon%3A1310586","Acinetobacter baumannii 1031433"]]},{"id":"NCBITaxon:354276","l":"Enterobacter cloacae complex","na":15,"nb":1032,"a":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"]],"b":[["NCBITaxon%3A61645","Enterobacter asburiae"],["NCBITaxon%3A1330532","Enterobacter asburiae B1-3"],["NCBITaxon%3A1330533","Enterobacter asburiae B5-60"],["NCBITaxon%3A1442602","Enterobacter asburiae C1"],["NCBITaxon%3A1298604","Enterobacter asburiae JCM 6051"],["NCBITaxon%3A1421338","Enterobacter asburiae L1"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":13,"nb":4740,"a":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/bromodeoxytopsentin.html","bromodeoxytopsentin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"]],"b":[["NCBITaxon%3A475088","Methanosphaerula palustris"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1389955","Escherichia coli ATCC 35150"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A574","Klebsiella pneumoniae subsp. ozaenae"],["NCBITaxon%3A1218098","Klebsiella pneumoniae subsp. ozaenae NBRC 105683"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":12,"nb":557,"a":[["antibacterial/amikacin.html","amikacin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"]],"b":[["NCBITaxon%3A2073169","Chromobacterium alticapitis"],["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1454219","Pseudomonas aeruginosa 059A"],["NCBITaxon%3A1421538","Pseudomonas aeruginosa 0812"],["NCBITaxon%3A1421545","Pseudomonas aeruginosa 0822"],["NCBITaxon%3A1421531","Pseudomonas aeruginosa 0C2E"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":8,"nb":8,"a":[["antifungal/anidulafungin.html","anidulafungin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/caspofungin.html","caspofungin"],["antifungal/cycloheximide.html","cycloheximide"],["antifungal/micafungin.html","micafungin"],["antifungal/oligomycin-a.html","oligomycin A"]],"b":[["NCBITaxon%3A4932","Saccharomyces cerevisiae"],["NCBITaxon%3A1266529","Saccharomyces cerevisiae BY4743"],["NCBITaxon%3A1218710","Saccharomyces cerevisiae CBS 1585"],["NCBITaxon%3A764102","Saccharomyces cerevisiae FostersB"],["NCBITaxon%3A764101","Saccharomyces cerevisiae FostersO"],["NCBITaxon%3A1220494","Saccharomyces cerevisiae PE-2"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":7,"nb":375,"a":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/vancomycin.html","vancomycin"]],"b":[["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A1352","Enterococcus faecium"],["NCBITaxon%3A1391465","Enterococcus faecium 10/96A"],["NCBITaxon%3A1259824","Enterococcus faecium 13.SD.W.09"],["NCBITaxon%3A1429401","Enterococcus faecium 17282"],["NCBITaxon%3A565659","Enterococcus faecium 1,141,733"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":7,"nb":176,"a":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A90371","Salmonella enterica subsp. enterica serovar Typhimurium"],["NCBITaxon%3A1173928","Salmonella enterica subsp. enterica serovar Typhimurium str. 0052"],["NCBITaxon%3A1114946","Salmonella enterica subsp. enterica serovar Typhimurium str. 00-01036"],["NCBITaxon%3A1173930","Salmonella enterica subsp. enterica serovar Typhimurium str. 0364"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":6,"nb":391,"a":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]],"b":[["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A1260363","Enterococcus faecalis 02-MB-BW-10"],["NCBITaxon%3A1260365","Enterococcus faecalis 02-MB-P-10"],["NCBITaxon%3A1260358","Enterococcus faecalis 06-MB-DW-09"],["NCBITaxon%3A1260359","Enterococcus faecalis 06-MB-S-04"],["NCBITaxon%3A1260360","Enterococcus faecalis 06-MB-S-10"]]},{"id":"NCBITaxon:485","l":"Neisseria gonorrhoeae","na":5,"nb":90,"a":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/tetracycline.html","tetracycline"]],"b":[["NCBITaxon%3A485","Neisseria gonorrhoeae"],["NCBITaxon%3A528345","Neisseria gonorrhoeae 1291"],["NCBITaxon%3A1193404","Neisseria gonorrhoeae 3502"],["NCBITaxon%3A528346","Neisseria gonorrhoeae 35/02"],["NCBITaxon%3A1352347","Neisseria gonorrhoeae ALB_2011_01-02"],["NCBITaxon%3A1351778","Neisseria gonorrhoeae ALB_2011_03_03"]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":5,"nb":20,"a":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/imipenem.html","imipenem"]],"b":[["NCBITaxon%3A548","Klebsiella aerogenes"],["NCBITaxon%3A1308731","Klebsiella aerogenes ADL-323"],["NCBITaxon%3A935296","Klebsiella aerogenes EA1509E"],["NCBITaxon%3A685445","Klebsiella aerogenes FGI35"],["NCBITaxon%3A1028307","Klebsiella aerogenes KCTC 2190"],["NCBITaxon%3A1439320","Klebsiella aerogenes MGH 61"]]},{"id":"NCBITaxon:1283","l":"Staphylococcus haemolyticus","na":5,"nb":7,"a":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/oxacillin.html","oxacillin"]],"b":[["NCBITaxon%3A1283","Staphylococcus haemolyticus"],["NCBITaxon%3A1308739","Staphylococcus haemolyticus ADL-104"],["NCBITaxon%3A1308735","Staphylococcus haemolyticus ADL-204"],["NCBITaxon%3A1095104","Staphylococcus haemolyticus BL-2"],["NCBITaxon%3A1401071","Staphylococcus haemolyticus DNF00585"],["NCBITaxon%3A279808","Staphylococcus haemolyticus JCSC1435"]]},{"id":"NCBITaxon:5207","l":"Cryptococcus neoformans","na":4,"nb":256,"a":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfanilamide.html","sulfanilamide"],["antifungal/fluconazole.html","fluconazole"],["antifungal/voriconazole.html","voriconazole"]],"b":[["NCBITaxon%3A5207","Cryptococcus neoformans"],["NCBITaxon%3A1423905","Cryptococcus neoformans 102-14"],["NCBITaxon%3A1423895","Cryptococcus neoformans 1033"],["NCBITaxon%3A1423910","Cryptococcus neoformans 1035"],["NCBITaxon%3A1423911","Cryptococcus neoformans 1052"],["NCBITaxon%3A1423908","Cryptococcus neoformans 1054"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":4,"nb":118,"a":[["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/oxacillin.html","oxacillin"]],"b":[["NCBITaxon%3A69966","Macrococcoides caseolyticum"],["NCBITaxon%3A1822","Nocardia vaccinii"],["NCBITaxon%3A1210098","Nocardia vaccinii NBRC 15922"],["NCBITaxon%3A1282","Staphylococcus epidermidis"],["NCBITaxon%3A1235440","Staphylococcus epidermidis 12142587"],["NCBITaxon%3A1000590","Staphylococcus epidermidis 14.1.R1.SE"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":4,"nb":51,"a":[["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/trimethoprim.html","trimethoprim"],["antiprotozoal/suramin.html","suramin"],["antiviral/tilorone.html","tilorone"]],"b":[["NCBITaxon%3A1392","Bacillus anthracis"],["NCBITaxon%3A1412844","Bacillus anthracis 52-G"],["NCBITaxon%3A1412843","Bacillus anthracis 8903-G"],["NCBITaxon%3A1412842","Bacillus anthracis 9080-G"],["NCBITaxon%3A1420588","Bacillus anthracis CVCC 40048"],["NCBITaxon%3A1439874","Bacillus anthracis CZC5"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":3,"nb":82,"a":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]],"b":[["NCBITaxon%3A1390","Bacillus amyloliquefaciens"],["NCBITaxon%3A1452","Bacillus atrophaeus"],["NCBITaxon%3A640707","Bacillus atrophaeus ATCC 9372"],["NCBITaxon%3A483913","Bacillus inaquosorum"],["NCBITaxon%3A1236548","Bacillus inaquosorum KCTC 13429"],["NCBITaxon%3A1402","Bacillus licheniformis"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":3,"nb":27,"a":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"]],"b":[["NCBITaxon%3A57706","Citrobacter braakii"],["NCBITaxon%3A1914243","Citrobacter europaeus"],["NCBITaxon%3A546","Citrobacter freundii"],["NCBITaxon%3A1173724","Citrobacter freundii 47N"],["NCBITaxon%3A742730","Citrobacter freundii 4_7_47CFAA"],["NCBITaxon%3A1444046","Citrobacter freundii 5-172-05_S1_C1"]]},{"id":"NCBITaxon:274","l":"Thermus thermophilus","na":3,"nb":8,"a":[["antibacterial/fusidic-acid.html","fusidic acid"],["antibacterial/streptomycin.html","streptomycin"],["unspecified/streptolydigin.html","streptolydigin"]],"b":[["NCBITaxon%3A274","Thermus thermophilus"],["NCBITaxon%3A1316935","Thermus thermophilus ATCC 33923"],["NCBITaxon%3A262724","Thermus thermophilus HB27"],["NCBITaxon%3A300852","Thermus thermophilus HB8"],["NCBITaxon%3A798128","Thermus thermophilus JL-18"],["NCBITaxon%3A762633","Thermus thermophilus SG0.5JP17-16"]]},{"id":"NCBITaxon:1890","l":"Streptomyces antibioticus","na":3,"nb":7,"a":[["antibacterial/indanomycin.html","indanomycin"],["unspecified/oviedomycin.html","oviedomycin"],["unspecified/pentostatin.html","pentostatin"]],"b":[["NCBITaxon%3A67255","Streptomyces achromogenes"],["NCBITaxon%3A67256","Streptomyces achromogenes subsp. achromogenes"],["NCBITaxon%3A1890","Streptomyces antibioticus"],["NCBITaxon%3A1306178","Streptomyces antibioticus JCM 4620"],["NCBITaxon%3A2713664","Streptomyces antibioticus subsp. yamensis"],["NCBITaxon%3A67315","Streptomyces lavenduligriseus"]]},{"id":"NCBITaxon:1047171","l":"Zymoseptoria tritici","na":4,"nb":3,"a":[["antifungal/carboxin.html","carboxin"],["antifungal/fenpicoxamid.html","fenpicoxamid"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/iprodione.html","iprodione"]],"b":[["NCBITaxon%3A1047171","Zymoseptoria tritici"],["NCBITaxon%3A1276532","Zymoseptoria tritici ST99CH_1E4"],["NCBITaxon%3A1276537","Zymoseptoria tritici ST99CH_3D1"]]},{"id":"NCBITaxon:5480","l":"Lodderomyces parapsilosis","na":3,"nb":4,"a":[["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/voriconazole.html","voriconazole"]],"b":[["NCBITaxon%3A48076","Marinobacterium iners"],["NCBITaxon%3A5480","Lodderomyces parapsilosis"],["NCBITaxon%3A1231521","Lodderomyces parapsilosis CAB50-2638"],["NCBITaxon%3A578454","Lodderomyces parapsilosis CDC317"]]},{"id":"NCBITaxon:746128","l":"Aspergillus fumigatus","na":4,"nb":3,"a":[["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/terbinafine.html","terbinafine"],["antifungal/voriconazole.html","voriconazole"]],"b":[["NCBITaxon%3A746128","Aspergillus fumigatus"],["NCBITaxon%3A451804","Aspergillus fumigatus A1163"],["NCBITaxon%3A41122","Aspergillus fumigatus var. fumigatus"]]},{"id":"NCBITaxon:1773","l":"Mycobacterium tuberculosis","na":2,"nb":2946,"a":[["antibacterial/sulfanilamide.html","sulfanilamide"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]],"b":[["NCBITaxon%3A1773","Mycobacterium tuberculosis"],["NCBITaxon%3A668339","Mycobacterium tuberculosis 00_1695"],["NCBITaxon%3A1455192","Mycobacterium tuberculosis 01-Cr4_ND_3_A"],["NCBITaxon%3A1455078","Mycobacterium tuberculosis 01-Ps1_0_A"],["NCBITaxon%3A515616","Mycobacterium tuberculosis 02_1987"],["NCBITaxon%3A1455200","Mycobacterium tuberculosis 02-Cr4_ND_3_B"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":2,"nb":79,"a":[["antibacterial/mupirocin.html","mupirocin"],["antifungal/2-4-diacetylphloroglucinol.html","2,4-diacetylphloroglucinol"]],"b":[["NCBITaxon%3A1931223","Caballeronia sp."],["NCBITaxon%3A89065","Pseudomonas abietaniphila"],["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1123912","Pseudomonas auricularis"],["NCBITaxon%3A930166","Pseudomonas brassicacearum"],["NCBITaxon%3A129817","Pseudomonas brenneri"]]},{"id":"NCBITaxon:58346","l":"Streptomyces platensis","na":2,"nb":8,"a":[["antibacterial/platencin.html","platencin"],["antibacterial/platensimycin.html","platensimycin"]],"b":[["NCBITaxon%3A249580","Streptomyces glebosus"],["NCBITaxon%3A249582","Streptomyces libani subsp. rufus"],["NCBITaxon%3A1920","Streptomyces nigrescens"],["NCBITaxon%3A58346","Streptomyces platensis"],["NCBITaxon%3A1649334","Streptomyces platensis subsp. clarensis"],["NCBITaxon%3A285579","Streptomyces platensis subsp. malvinus"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":7,"nb":2,"a":[["antibacterial/brefeldin-a.html","brefeldin A"],["antifungal/anidulafungin.html","anidulafungin"],["antifungal/caspofungin.html","caspofungin"],["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/micafungin.html","micafungin"]],"b":[["NCBITaxon%3A5476","Candida albicans"],["NCBITaxon%3A1182531","Candida albicans 3153A"]]},{"id":"NCBITaxon:40559","l":"Botrytis cinerea","na":4,"nb":2,"a":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/iprodione.html","iprodione"],["antifungal/pyrisoxazole.html","pyrisoxazole"]],"b":[["NCBITaxon%3A40559","Botrytis cinerea"],["NCBITaxon%3A999810","Botrytis cinerea T4"]]},{"id":"NCBITaxon:405948","l":"Saccharopolyspora erythraea NRRL 2338","na":4,"nb":2,"a":[["antibacterial/erythromycin-a.html","erythromycin A"],["unspecified/erythromycin-b.html","erythromycin B"],["unspecified/erythromycin-c.html","erythromycin C"],["unspecified/erythromycin-d.html","erythromycin D"]],"b":[["NCBITaxon%3A1836","Saccharopolyspora erythraea"],["NCBITaxon%3A405948","Saccharopolyspora erythraea NRRL 2338"]]},{"id":"NCBITaxon:1299","l":"Deinococcus radiodurans","na":2,"nb":3,"a":[["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/linezolid.html","linezolid"]],"b":[["NCBITaxon%3A1299","Deinococcus radiodurans"],["NCBITaxon%3A243230","Deinococcus radiodurans R1 = ATCC 13939 = DSM 20539"],["NCBITaxon%3A47478","Deinococcus sp."]]},{"id":"NCBITaxon:1867","l":"Actinoplanes teichomyceticus","na":3,"nb":2,"a":[["antibacterial/teicoplanin.html","teicoplanin"],["unspecified/teicoplanin-a2-2.html","teicoplanin A2-2"],["unspecified/teicoplanin-a2-3.html","teicoplanin A2-3"]],"b":[["NCBITaxon%3A1867","Actinoplanes teichomyceticus"],["NCBITaxon%3A457423","Actinoplanes teichomyceticus ATCC 31121"]]},{"id":"NCBITaxon:1223523","l":"Streptomyces mobaraensis NBRC 13819 = DSM 40847","na":2,"nb":2,"a":[["antibacterial/bleomycin-a2.html","bleomycin A2"],["antibacterial/bleomycin-b2.html","bleomycin B2"]],"b":[["NCBITaxon%3A35621","Streptomyces mobaraensis"],["NCBITaxon%3A1223523","Streptomyces mobaraensis NBRC 13819 = DSM 40847"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":2,"nb":2,"a":[["antibacterial/streptothricin-f.html","streptothricin F"],["unspecified/streptothricin-d.html","streptothricin D"]],"b":[["NCBITaxon%3A1928","Streptomyces rochei"],["NCBITaxon%3A885435","Streptomyces rochei subsp. volubilis"]]},{"id":"NCBITaxon:5482","l":"Candida tropicalis","na":2,"nb":2,"a":[["antifungal/fluconazole.html","fluconazole"],["antifungal/voriconazole.html","voriconazole"]],"b":[["NCBITaxon%3A5482","Candida tropicalis"],["NCBITaxon%3A1312901","Candida tropicalis ATCC 200956"]]},{"id":"NCBITaxon:1496","l":"Clostridioides difficile","na":1,"nb":296,"a":[["antibacterial/fidaxomicin.html","fidaxomicin"]],"b":[["NCBITaxon%3A1496","Clostridioides difficile"],["NCBITaxon%3A997827","Clostridioides difficile 002-P50-2011"],["NCBITaxon%3A997828","Clostridioides difficile 050-P50-2011"],["NCBITaxon%3A699033","Clostridioides difficile 2007855"],["NCBITaxon%3A1151306","Clostridioides difficile 342"],["NCBITaxon%3A1151307","Clostridioides difficile 360"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":1,"nb":287,"a":[["unspecified/%CE%B1-mangostin.html","α-mangostin"]],"b":[["NCBITaxon%3A632","Yersinia pestis"],["NCBITaxon%3A1345710","Yersinia pestis 1045"],["NCBITaxon%3A1330535","Yersinia pestis 113"],["NCBITaxon%3A755859","Yersinia pestis 12"],["NCBITaxon%3A1345703","Yersinia pestis 1412"],["NCBITaxon%3A1345704","Yersinia pestis 1413"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":1,"nb":183,"a":[["antibacterial/fosfomycin.html","fosfomycin"]],"b":[["NCBITaxon%3A86840","Pseudomonas cannabina"],["NCBITaxon%3A53409","Pseudomonas coronafaciens"],["NCBITaxon%3A29438","Pseudomonas savastanoi"],["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A1204471","Pseudomonas syringae BRIP34876"]]},{"id":"NCBITaxon:263","l":"Francisella tularensis","na":1,"nb":117,"a":[["unspecified/%CE%B1-mangostin.html","α-mangostin"]],"b":[["NCBITaxon%3A984129","Francisella cf. novicida Fx1"],["NCBITaxon%3A676032","Francisella cf. tularensis subsp. novicida 3523"],["NCBITaxon%3A263","Francisella tularensis"],["NCBITaxon%3A1367846","Francisella tularensis 99A-2628"],["NCBITaxon%3A545771","Francisella tularensis B-SA"],["NCBITaxon%3A1410527","Francisella tularensis FSC069"]]},{"id":"NCBITaxon:1764","l":"Mycobacterium avium","na":1,"nb":76,"a":[["antibacterial/trimethoprim.html","trimethoprim"]],"b":[["NCBITaxon%3A1764","Mycobacterium avium"],["NCBITaxon%3A1392002","Mycobacterium avium 05-4293"],["NCBITaxon%3A1392001","Mycobacterium avium 09-5983"],["NCBITaxon%3A1235987","Mycobacterium avium 100"],["NCBITaxon%3A1235988","Mycobacterium avium 101"],["NCBITaxon%3A243243","Mycobacterium avium 104"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":1,"nb":47,"a":[["unspecified/chir-090.html","CHIR-090"]],"b":[["NCBITaxon%3A630","Yersinia enterocolitica"],["NCBITaxon%3A947561","Yersinia enterocolitica IP2222"],["NCBITaxon%3A1243181","Yersinia enterocolitica IP 10393"],["NCBITaxon%3A1443113","Yersinia enterocolitica LC20"],["NCBITaxon%3A947557","Yersinia enterocolitica NFO"],["NCBITaxon%3A150052","Yersinia enterocolitica subsp. enterocolitica"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":1,"nb":32,"a":[["antibacterial/althiomycin.html","althiomycin"]],"b":[["NCBITaxon%3A2703793","Serratia bockelmannii"],["NCBITaxon%3A615","Serratia marcescens"],["NCBITaxon%3A1257036","Serratia marcescens 12"],["NCBITaxon%3A1255611","Serratia marcescens 448"],["NCBITaxon%3A1333586","Serratia marcescens AB42556419-isolate1"],["NCBITaxon%3A1400186","Serratia marcescens BIDMC 44"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":13,"a":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]],"b":[["NCBITaxon%3A1773","Mycobacterium tuberculosis"],["NCBITaxon%3A83332","Mycobacterium tuberculosis H37Rv"],["NCBITaxon%3A747078","Mycobacterium tuberculosis H37Rv_2009"],["NCBITaxon%3A928249","Mycobacterium tuberculosis H37Rv_ideR_mutant_ST22"],["NCBITaxon%3A757417","Mycobacterium tuberculosis H37RvAE"],["NCBITaxon%3A757419","Mycobacterium tuberculosis H37RvCO"]]},{"id":"NCBITaxon:53446","l":"Streptomyces cinnamoneus","na":1,"nb":11,"a":[["antibacterial/bicozamycin.html","bicozamycin"]],"b":[["NCBITaxon%3A53446","Streptomyces cinnamoneus"],["NCBITaxon%3A173776","Streptomyces cinnamoneus subsp. albosporus"],["NCBITaxon%3A173777","Streptomyces cinnamoneus subsp. azacoluta"],["NCBITaxon%3A173778","Streptomyces cinnamoneus subsp. lanosus"],["NCBITaxon%3A1521191","Streptomyces cinnamoneus subsp. monicae"],["NCBITaxon%3A173779","Streptomyces cinnamoneus subsp. sparsus"]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":1,"nb":6,"a":[["antibacterial/fosfomycin.html","fosfomycin"]],"b":[["NCBITaxon%3A1906","Streptomyces fradiae"],["NCBITaxon%3A1319510","Streptomyces fradiae ATCC 10745 = DSM 40063"],["NCBITaxon%3A285449","Streptomyces fradiae subsp. acinicolor"],["NCBITaxon%3A2871172","Streptomyces fradiae V-1-3"],["NCBITaxon%3A66894","Streptomyces griseobrunneus"],["NCBITaxon%3A1909","Streptomyces griseolus"]]},{"id":"NCBITaxon:37326","l":"Nocardia brasiliensis","na":1,"nb":6,"a":[["antibacterial/brasiliquinone-b.html","brasiliquinone B"]],"b":[["NCBITaxon%3A1824","Nocardia asteroides"],["NCBITaxon%3A37326","Nocardia brasiliensis"],["NCBITaxon%3A1133849","Nocardia brasiliensis ATCC 700358"],["NCBITaxon%3A1406859","Nocardia brasiliensis IFM 10847"],["NCBITaxon%3A1206724","Nocardia brasiliensis NBRC 14402"],["NCBITaxon%3A37328","Nocardia carnea"]]},{"id":"NCBITaxon:68280","l":"Streptomyces violaceusniger","na":1,"nb":6,"a":[["antibacterial/nigericin.html","nigericin"]],"b":[["NCBITaxon%3A1912","Streptomyces hygroscopicus"],["NCBITaxon%3A68042","Streptomyces hygroscopicus subsp. hygroscopicus"],["NCBITaxon%3A33900","Streptomyces murinus"],["NCBITaxon%3A114686","Streptomyces phaeoluteigriseus"],["NCBITaxon%3A68280","Streptomyces violaceusniger"],["NCBITaxon%3A653045","Streptomyces violaceusniger Tu 4113"]]},{"id":"NCBITaxon:271","l":"Thermus aquaticus","na":1,"nb":5,"a":[["antimycobacterial/rifampicin.html","rifampicin"]],"b":[["NCBITaxon%3A271","Thermus aquaticus"],["NCBITaxon%3A1123387","Thermus aquaticus DSM 625"],["NCBITaxon%3A498848","Thermus aquaticus Y51MC23"],["NCBITaxon%3A274","Thermus thermophilus"],["NCBITaxon%3A300852","Thermus thermophilus HB8"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":1,"nb":5,"a":[["antibacterial/althiomycin.html","althiomycin"]],"b":[["NCBITaxon%3A34","Myxococcus xanthus"],["NCBITaxon%3A246197","Myxococcus xanthus DK 1622"],["NCBITaxon%3A1198133","Myxococcus xanthus DZ2"],["NCBITaxon%3A1198538","Myxococcus xanthus DZF1"],["NCBITaxon%3A675543","Myxococcus xanthus NewJersey2"]]},{"id":"NCBITaxon:536","l":"Chromobacterium violaceum","na":1,"nb":5,"a":[["unspecified/romidepsin.html","romidepsin"]],"b":[["NCBITaxon%3A1382803","Chromobacterium amazonense"],["NCBITaxon%3A686831","Chromobacterium piscinae"],["NCBITaxon%3A3055134","Chromobacterium sp. CCUG 30098"],["NCBITaxon%3A536","Chromobacterium violaceum"],["NCBITaxon%3A243365","Chromobacterium violaceum ATCC 12472"]]},{"id":"NCBITaxon:5478","l":"Nakaseomyces glabratus","na":1,"nb":5,"a":[["antifungal/fluconazole.html","fluconazole"]],"b":[["NCBITaxon%3A5478","Nakaseomyces glabratus"],["NCBITaxon%3A1231519","Nakaseomyces glabratus CAB52-4041"],["NCBITaxon%3A1406948","Nakaseomyces glabratus CCTCC M202019"],["NCBITaxon%3A1398155","Nakaseomyces glabratus M202019"],["NCBITaxon%3A1403403","Nakaseomyces glabratus UOB301"]]},{"id":"NCBITaxon:5518","l":"Fusarium graminearum","na":5,"nb":1,"a":[["antifungal/carbendazim.html","carbendazim"],["antifungal/difenoconazole.html","difenoconazole"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/prochloraz.html","prochloraz"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]],"b":[["NCBITaxon%3A5518","Fusarium graminearum"]]},{"id":"NCBITaxon:318829","l":"Magnaporthe oryzae","na":4,"nb":1,"a":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/carboxin.html","carboxin"],["antifungal/carpropamid.html","carpropamid"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]],"b":[["NCBITaxon%3A318829","Pyricularia oryzae"]]},{"id":"NCBITaxon:117187","l":"Fusarium verticillioides","na":3,"nb":1,"a":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/fludioxonil.html","fludioxonil"]],"b":[["NCBITaxon%3A117187","Fusarium verticillioides"]]},{"id":"NCBITaxon:162425","l":"Aspergillus nidulans","na":1,"nb":3,"a":[["antifungal/thiabendazole.html","thiabendazole"]],"b":[["NCBITaxon%3A162425","Aspergillus nidulans"],["NCBITaxon%3A286159","Aspergillus nidulans var. acristatus"],["NCBITaxon%3A286160","Aspergillus nidulans var. dentatus"]]},{"id":"NCBITaxon:451804","l":"Aspergillus fumigatus (strain CBS 144.89 / FGSC A1163 / CEA10)","na":3,"nb":1,"a":[["antifungal/itraconazole.html","itraconazole"],["antifungal/terbinafine.html","terbinafine"],["antifungal/voriconazole.html","voriconazole"]],"b":[["NCBITaxon%3A451804","Aspergillus fumigatus A1163"]]},{"id":"NCBITaxon:46429","l":"Sphingobium chlorophenolicum","na":1,"nb":3,"a":[["antifungal/pentachlorophenol.html","pentachlorophenol"]],"b":[["NCBITaxon%3A46429","Sphingobium chlorophenolicum"],["NCBITaxon%3A690566","Sphingobium chlorophenolicum L-1"],["NCBITaxon%3A1219044","Sphingobium chlorophenolicum NBRC 16172"]]},{"id":"NCBITaxon:54571","l":"Streptomyces venezuelae","na":1,"nb":3,"a":[["antibacterial/methymycin.html","methymycin"]],"b":[["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A54571","Streptomyces venezuelae"],["NCBITaxon%3A953739","Streptomyces venezuelae ATCC 10712"]]},{"id":"NCBITaxon:578454","l":"","na":3,"nb":1,"a":[["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/voriconazole.html","voriconazole"]],"b":[["NCBITaxon%3A578454","Lodderomyces parapsilosis CDC317"]]},{"id":"NCBITaxon:67283","l":"Streptomyces candidus","na":1,"nb":3,"a":[["unspecified/pirazofurin.html","pirazofurin"]],"b":[["NCBITaxon%3A76021","Amycolatopsis coloradensis"],["NCBITaxon%3A67283","Streptomyces candidus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:690256","l":"Colletotrichum gloeosporioides","na":3,"nb":1,"a":[["antifungal/difenoconazole.html","difenoconazole"],["antifungal/prochloraz.html","prochloraz"],["antifungal/propiconazole.html","propiconazole"]],"b":[["NCBITaxon%3A690256","Colletotrichum fructicola"]]},{"id":"NCBITaxon:1079985","l":"Streptomyces chartreusis NRRL 3882","na":1,"nb":2,"a":[["unspecified/tunicamycin-b1.html","tunicamycin B1"]],"b":[["NCBITaxon%3A1969","Streptomyces chartreusis"],["NCBITaxon%3A1079985","Streptomyces chartreusis NRRL 3882"]]},{"id":"NCBITaxon:1310114","l":"Mycobacterium tuberculosis CAS/NITR204","na":2,"nb":1,"a":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfanilamide.html","sulfanilamide"]],"b":[["NCBITaxon%3A1310114","Mycobacterium tuberculosis CAS/NITR204"]]},{"id":"NCBITaxon:212423","l":"Streptomyces kaniharaensis","na":2,"nb":1,"a":[["unspecified/coformycin.html","coformycin"],["unspecified/formycin-a.html","formycin A"]],"b":[["NCBITaxon%3A212423","Streptomyces kaniharaensis"]]},{"id":"NCBITaxon:316284","l":"Streptomyces noursei ATCC 11455","na":1,"nb":2,"a":[["antifungal/nystatin-a1.html","nystatin A1"]],"b":[["NCBITaxon%3A1971","Streptomyces noursei"],["NCBITaxon%3A316284","Streptomyces noursei ATCC 11455"]]},{"id":"NCBITaxon:36651","l":"Penicillium digitatum","na":2,"nb":1,"a":[["antifungal/pyrifenox.html","pyrifenox"],["antifungal/triflumizole.html","triflumizole"]],"b":[["NCBITaxon%3A36651","Penicillium digitatum"]]},{"id":"NCBITaxon:412963","l":"","na":1,"nb":2,"a":[["unspecified/rhizoxin.html","rhizoxin"]],"b":[["NCBITaxon%3A412963","Mycetohabitans rhizoxinica"],["NCBITaxon%3A882378","Mycetohabitans rhizoxinica HKI 454"]]},{"id":"NCBITaxon:43658","l":"Pseudoalteromonas rubra","na":1,"nb":2,"a":[["unspecified/prodigiosin.html","prodigiosin"]],"b":[["NCBITaxon%3A43658","Pseudoalteromonas rubra"],["NCBITaxon%3A1117318","Pseudoalteromonas rubra DSM 6842"]]},{"id":"NCBITaxon:467194","l":"Streptomyces sp. CNQ-418","na":2,"nb":1,"a":[["antibacterial/marinopyrrole-a.html","(−)-marinopyrrole A"],["antibacterial/marinopyrrole-b.html","(−)-marinopyrrole B"]],"b":[["NCBITaxon%3A467194","Streptomyces sp. CNQ-418"]]},{"id":"NCBITaxon:47763","l":"Streptomyces lydicus","na":1,"nb":2,"a":[["unspecified/streptolydigin.html","streptolydigin"]],"b":[["NCBITaxon%3A47763","Streptomyces lydicus"],["NCBITaxon%3A1382545","Streptomyces lydicus A01"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":1,"nb":2,"a":[["antifungal/voriconazole.html","voriconazole"]],"b":[["NCBITaxon%3A5059","Aspergillus flavus"],["NCBITaxon%3A332952","Aspergillus flavus NRRL3357"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":1,"nb":2,"a":[["antifungal/carboxin.html","carboxin"]],"b":[["NCBITaxon%3A5062","Aspergillus oryzae"],["NCBITaxon%3A510516","Aspergillus oryzae RIB40"]]},{"id":"NCBITaxon:5074","l":"Penicillium brevicompactum","na":1,"nb":2,"a":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]],"b":[["NCBITaxon%3A1337893","Streptomyces bernensis"],["NCBITaxon%3A5074","Penicillium brevicompactum"]]},{"id":"NCBITaxon:5141","l":"Neurospora crassa","na":1,"nb":2,"a":[["antifungal/carbendazim.html","carbendazim"]],"b":[["NCBITaxon%3A5141","Neurospora crassa"],["NCBITaxon%3A367110","Neurospora crassa OR74A"]]},{"id":"NCBITaxon:527005","l":"Yersinia ruckeri ATCC 29473","na":1,"nb":2,"a":[["antibacterial/holomycin.html","holomycin"]],"b":[["NCBITaxon%3A29486","Yersinia ruckeri"],["NCBITaxon%3A527005","Yersinia ruckeri ATCC 29473"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":1,"nb":2,"a":[["antiprotozoal/emetine.html","emetine"]],"b":[["NCBITaxon%3A5833","Plasmodium falciparum"],["NCBITaxon%3A5843","Plasmodium falciparum NF54"]]},{"id":"NCBITaxon:68214","l":"Streptomyces griseochromogenes","na":1,"nb":2,"a":[["antifungal/blasticidin-s.html","blasticidin S"]],"b":[["NCBITaxon%3A68214","Streptomyces griseochromogenes"],["NCBITaxon%3A285477","Streptomyces griseochromogenes subsp. suitaensis"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":2,"a":[["antibacterial/lysocin-e.html","lysocin E"]],"b":[["NCBITaxon%3A72226","Lysobacter sp."],["NCBITaxon%3A1645665","Solilutibacter silvestris"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":1,"nb":1,"a":[["antibacterial/nocardamine.html","nocardamine"]],"b":[["NCBITaxon%3A100226","Streptomyces coelicolor A3(2)"]]},{"id":"NCBITaxon:112498","l":"Ramularia collo-cygni","na":1,"nb":1,"a":[["antifungal/carboxin.html","carboxin"]],"b":[["NCBITaxon%3A112498","Ramularia collo-cygni"]]},{"id":"NCBITaxon:1156913","l":"","na":1,"nb":1,"a":[["antibacterial/vancomycin.html","vancomycin"]],"b":[["NCBITaxon%3A1156913","Amycolatopsis orientalis HCCB10007"]]},{"id":"NCBITaxon:1159556","l":"Ustilaginoidea virens","na":1,"nb":1,"a":[["antifungal/azoxystrobin.html","azoxystrobin"]],"b":[["NCBITaxon%3A1159556","Ustilaginoidea virens"]]},{"id":"NCBITaxon:1352936","l":"Streptomyces roseochromogenus subsp. oscitans DS 12.976","na":1,"nb":1,"a":[["antibacterial/clorobiocin.html","clorobiocin"]],"b":[["NCBITaxon%3A1352936","Streptomyces roseochromogenus subsp. oscitans DS 12.976"]]},{"id":"NCBITaxon:1433842","l":"Hapalosiphon welwitschii UTEX B 1830","na":1,"nb":1,"a":[["antibacterial/3-z-2-isocyanovinyl-indole.html","3-[(Z)-2-isocyanovinyl]indole"]],"b":[["NCBITaxon%3A1433842","Hapalosiphon welwitschii UTEX B 1830"]]},{"id":"NCBITaxon:1469403","l":"Streptomyces sp. ZJ306","na":1,"nb":1,"a":[["antiprotozoal/ikarugamycin.html","ikarugamycin"]],"b":[["NCBITaxon%3A1469403","Streptomyces sp. ZJ306"]]},{"id":"NCBITaxon:1654360","l":"Photobacterium galatheae","na":1,"nb":1,"a":[["antibacterial/holomycin.html","holomycin"]],"b":[["NCBITaxon%3A1654360","Photobacterium galatheae"]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":1,"nb":1,"a":[["antibacterial/clavulanic-acid.html","clavulanic acid"]],"b":[["NCBITaxon%3A1901","Streptomyces clavuligerus"]]},{"id":"NCBITaxon:1907","l":"Streptomyces glaucescens","na":1,"nb":1,"a":[["antibacterial/tetracenomycin-c.html","tetracenomycin C"]],"b":[["NCBITaxon%3A1907","Streptomyces glaucescens"]]},{"id":"NCBITaxon:1979465","l":"Phoma betae","na":1,"nb":1,"a":[["antiviral/aphidicolin.html","aphidicolin"]],"b":[["NCBITaxon%3A1979465","Neocamarosporium betae"]]},{"id":"NCBITaxon:2583819","l":"Streptomyces sp. DASNCL29","na":1,"nb":1,"a":[["antibacterial/nigericin.html","nigericin"]],"b":[["NCBITaxon%3A2583819","Streptomyces sp. DASNCL29"]]},{"id":"NCBITaxon:264951","l":"Paecilomyces variotii","na":1,"nb":1,"a":[["antibacterial/m-viriditoxin.html","(M)-viriditoxin"]],"b":[["NCBITaxon%3A264951","Paecilomyces variotii"]]},{"id":"NCBITaxon:27337","l":"Verticillium dahliae","na":1,"nb":1,"a":[["antifungal/carbendazim.html","carbendazim"]],"b":[["NCBITaxon%3A27337","Verticillium dahliae"]]},{"id":"NCBITaxon:2878388","l":"Streptomyces sp. SCSIO 03032","na":1,"nb":1,"a":[["unspecified/piericidin-a.html","piericidin A"]],"b":[["NCBITaxon%3A2878388","Streptomyces marincola"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":1,"nb":1,"a":[["antifungal/voriconazole.html","voriconazole"]],"b":[["NCBITaxon%3A332952","Aspergillus flavus NRRL3357"]]},{"id":"NCBITaxon:36650","l":"Penicillium aethiopicum","na":1,"nb":1,"a":[["unspecified/viridicatumtoxin.html","viridicatumtoxin"]],"b":[["NCBITaxon%3A36650","Penicillium aethiopicum"]]},{"id":"NCBITaxon:367110","l":"Neurospora crassa (strain ATCC 24698 / 74-OR23-1A / CBS 708.71 / DSM 1257 / FGSC 987)","na":1,"nb":1,"a":[["antifungal/carbendazim.html","carbendazim"]],"b":[["NCBITaxon%3A367110","Neurospora crassa OR74A"]]},{"id":"NCBITaxon:41951","l":"Streptomyces argillaceus","na":1,"nb":1,"a":[["unspecified/mithramycin.html","mithramycin"]],"b":[["NCBITaxon%3A41951","Streptomyces argillaceus"]]},{"id":"NCBITaxon:4754","l":"Pneumocystis carinii","na":1,"nb":1,"a":[["antibacterial/trimethoprim.html","trimethoprim"]],"b":[["NCBITaxon%3A4754","Pneumocystis carinii"]]},{"id":"NCBITaxon:5076","l":"Penicillium chrysogenum","na":1,"nb":1,"a":[["unspecified/isopenicillin-n.html","isopenicillin N"]],"b":[["NCBITaxon%3A5076","Penicillium chrysogenum"]]},{"id":"NCBITaxon:5082","l":"Penicillium roqueforti","na":1,"nb":1,"a":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]],"b":[["NCBITaxon%3A5082","Penicillium roqueforti"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae (strain ATCC 42149 / RIB 40)","na":1,"nb":1,"a":[["antifungal/carboxin.html","carboxin"]],"b":[["NCBITaxon%3A510516","Aspergillus oryzae RIB40"]]},{"id":"NCBITaxon:5127","l":"Fusarium fujikuroi","na":1,"nb":1,"a":[["antifungal/carbendazim.html","carbendazim"]],"b":[["NCBITaxon%3A5127","Fusarium fujikuroi"]]},{"id":"NCBITaxon:52","l":"Chondromyces crocatus","na":1,"nb":1,"a":[["unspecified/chondrochloren-a.html","chondrochloren A"]],"b":[["NCBITaxon%3A52","Chondromyces crocatus"]]},{"id":"NCBITaxon:5270","l":"","na":1,"nb":1,"a":[["antifungal/carboxin.html","carboxin"]],"b":[["NCBITaxon%3A5270","Mycosarcoma maydis"]]},{"id":"NCBITaxon:5661","l":"Leishmania donovani","na":1,"nb":1,"a":[["antiprotozoal/dihydrobetulinic-acid.html","dihydrobetulinic acid"]],"b":[["NCBITaxon%3A5661","Leishmania donovani"]]},{"id":"NCBITaxon:668825","l":"Streptomyces sp. ATCC 700974","na":1,"nb":1,"a":[["antibacterial/albomycin-%CE%B41.html","albomycin δ1"]],"b":[["NCBITaxon%3A668825","Streptomyces sp. ATCC 700974"]]},{"id":"NCBITaxon:67593","l":"Phytophthora sojae","na":1,"nb":1,"a":[["antifungal/borrelidin.html","borrelidin"]],"b":[["NCBITaxon%3A67593","Phytophthora sojae"]]},{"id":"NCBITaxon:68264","l":"Streptomyces rishiriensis","na":1,"nb":1,"a":[["antibacterial/coumermycin-a1.html","coumermycin A1"]],"b":[["NCBITaxon%3A68264","Streptomyces rishiriensis"]]},{"id":"NCBITaxon:686309","l":"Micromonospora haikouensis","na":1,"nb":1,"a":[["unspecified/coformycin.html","coformycin"]],"b":[["NCBITaxon%3A686309","Micromonospora haikouensis"]]},{"id":"NCBITaxon:889487","l":"Streptomyces sp. S4","na":1,"nb":1,"a":[["antifungal/antimycin-a.html","antimycin A"]],"b":[["NCBITaxon%3A889487","Streptomyces sp. S4"]]}]} \ No newline at end of file +{"a":"AntibioticMech","b":"TaxonMech","base":{"AntibioticMech":"https://culturebotai.github.io/AntibioticMech/pages/","TaxonMech":"https://culturebotai.github.io/TaxonMech/pages/taxon.html?id="},"n":109,"by":{"NCBITaxon":109},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":30,"nb":3868,"a":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A196023","Aeromonas hydrophila subsp. hydrophila"],["NCBITaxon%3A380703","Aeromonas hydrophila subsp. hydrophila ATCC 7966"],["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A35703","Citrobacter amalonaticus"],["NCBITaxon%3A163202","Corynebacterium appendicis"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":22,"nb":422,"a":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"]],"b":[["NCBITaxon%3A1653844","Erwinia carnegieana"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A2058152","Klebsiella grimontii"],["NCBITaxon%3A54291","Klebsiella ornithinolytica"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A1443592","Klebsiella pneumoniae 07A044"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":15,"nb":1075,"a":[["antibacterial/amikacin.html","amikacin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A1311139","Acinetobacter baumannii 016901DP_1"],["NCBITaxon%3A1311140","Acinetobacter baumannii 016901DP_2"],["NCBITaxon%3A1310784","Acinetobacter baumannii 1007214"],["NCBITaxon%3A1310751","Acinetobacter baumannii 1022959"],["NCBITaxon%3A1310586","Acinetobacter baumannii 1031433"]]},{"id":"NCBITaxon:354276","l":"Enterobacter cloacae complex","na":15,"nb":1032,"a":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"]],"b":[["NCBITaxon%3A61645","Enterobacter asburiae"],["NCBITaxon%3A1330532","Enterobacter asburiae B1-3"],["NCBITaxon%3A1330533","Enterobacter asburiae B5-60"],["NCBITaxon%3A1442602","Enterobacter asburiae C1"],["NCBITaxon%3A1298604","Enterobacter asburiae JCM 6051"],["NCBITaxon%3A1421338","Enterobacter asburiae L1"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":13,"nb":4740,"a":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/bromodeoxytopsentin.html","bromodeoxytopsentin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"]],"b":[["NCBITaxon%3A475088","Methanosphaerula palustris"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1389955","Escherichia coli ATCC 35150"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A574","Klebsiella pneumoniae subsp. ozaenae"],["NCBITaxon%3A1218098","Klebsiella pneumoniae subsp. ozaenae NBRC 105683"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":12,"nb":557,"a":[["antibacterial/amikacin.html","amikacin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"]],"b":[["NCBITaxon%3A2073169","Chromobacterium alticapitis"],["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1454219","Pseudomonas aeruginosa 059A"],["NCBITaxon%3A1421538","Pseudomonas aeruginosa 0812"],["NCBITaxon%3A1421545","Pseudomonas aeruginosa 0822"],["NCBITaxon%3A1421531","Pseudomonas aeruginosa 0C2E"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":8,"nb":8,"a":[["antifungal/anidulafungin.html","anidulafungin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/caspofungin.html","caspofungin"],["antifungal/cycloheximide.html","cycloheximide"],["antifungal/micafungin.html","micafungin"],["antifungal/oligomycin-a.html","oligomycin A"]],"b":[["NCBITaxon%3A4932","Saccharomyces cerevisiae"],["NCBITaxon%3A1266529","Saccharomyces cerevisiae BY4743"],["NCBITaxon%3A1218710","Saccharomyces cerevisiae CBS 1585"],["NCBITaxon%3A764102","Saccharomyces cerevisiae FostersB"],["NCBITaxon%3A764101","Saccharomyces cerevisiae FostersO"],["NCBITaxon%3A1220494","Saccharomyces cerevisiae PE-2"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":7,"nb":375,"a":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/vancomycin.html","vancomycin"]],"b":[["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A1352","Enterococcus faecium"],["NCBITaxon%3A1391465","Enterococcus faecium 10/96A"],["NCBITaxon%3A1259824","Enterococcus faecium 13.SD.W.09"],["NCBITaxon%3A1429401","Enterococcus faecium 17282"],["NCBITaxon%3A565659","Enterococcus faecium 1,141,733"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":7,"nb":176,"a":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A90371","Salmonella enterica subsp. enterica serovar Typhimurium"],["NCBITaxon%3A1173928","Salmonella enterica subsp. enterica serovar Typhimurium str. 0052"],["NCBITaxon%3A1114946","Salmonella enterica subsp. enterica serovar Typhimurium str. 00-01036"],["NCBITaxon%3A1173930","Salmonella enterica subsp. enterica serovar Typhimurium str. 0364"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":6,"nb":391,"a":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]],"b":[["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A1260363","Enterococcus faecalis 02-MB-BW-10"],["NCBITaxon%3A1260365","Enterococcus faecalis 02-MB-P-10"],["NCBITaxon%3A1260358","Enterococcus faecalis 06-MB-DW-09"],["NCBITaxon%3A1260359","Enterococcus faecalis 06-MB-S-04"],["NCBITaxon%3A1260360","Enterococcus faecalis 06-MB-S-10"]]},{"id":"NCBITaxon:485","l":"Neisseria gonorrhoeae","na":5,"nb":90,"a":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/tetracycline.html","tetracycline"]],"b":[["NCBITaxon%3A485","Neisseria gonorrhoeae"],["NCBITaxon%3A528345","Neisseria gonorrhoeae 1291"],["NCBITaxon%3A1193404","Neisseria gonorrhoeae 3502"],["NCBITaxon%3A528346","Neisseria gonorrhoeae 35/02"],["NCBITaxon%3A1352347","Neisseria gonorrhoeae ALB_2011_01-02"],["NCBITaxon%3A1351778","Neisseria gonorrhoeae ALB_2011_03_03"]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":5,"nb":20,"a":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/imipenem.html","imipenem"]],"b":[["NCBITaxon%3A548","Klebsiella aerogenes"],["NCBITaxon%3A1308731","Klebsiella aerogenes ADL-323"],["NCBITaxon%3A935296","Klebsiella aerogenes EA1509E"],["NCBITaxon%3A685445","Klebsiella aerogenes FGI35"],["NCBITaxon%3A1028307","Klebsiella aerogenes KCTC 2190"],["NCBITaxon%3A1439320","Klebsiella aerogenes MGH 61"]]},{"id":"NCBITaxon:1283","l":"Staphylococcus haemolyticus","na":5,"nb":7,"a":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/oxacillin.html","oxacillin"]],"b":[["NCBITaxon%3A1283","Staphylococcus haemolyticus"],["NCBITaxon%3A1308739","Staphylococcus haemolyticus ADL-104"],["NCBITaxon%3A1308735","Staphylococcus haemolyticus ADL-204"],["NCBITaxon%3A1095104","Staphylococcus haemolyticus BL-2"],["NCBITaxon%3A1401071","Staphylococcus haemolyticus DNF00585"],["NCBITaxon%3A279808","Staphylococcus haemolyticus JCSC1435"]]},{"id":"NCBITaxon:5207","l":"Cryptococcus neoformans","na":4,"nb":256,"a":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfanilamide.html","sulfanilamide"],["antifungal/fluconazole.html","fluconazole"],["antifungal/voriconazole.html","voriconazole"]],"b":[["NCBITaxon%3A5207","Cryptococcus neoformans"],["NCBITaxon%3A1423905","Cryptococcus neoformans 102-14"],["NCBITaxon%3A1423895","Cryptococcus neoformans 1033"],["NCBITaxon%3A1423910","Cryptococcus neoformans 1035"],["NCBITaxon%3A1423911","Cryptococcus neoformans 1052"],["NCBITaxon%3A1423908","Cryptococcus neoformans 1054"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":4,"nb":118,"a":[["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/oxacillin.html","oxacillin"]],"b":[["NCBITaxon%3A69966","Macrococcoides caseolyticum"],["NCBITaxon%3A1822","Nocardia vaccinii"],["NCBITaxon%3A1210098","Nocardia vaccinii NBRC 15922"],["NCBITaxon%3A1282","Staphylococcus epidermidis"],["NCBITaxon%3A1235440","Staphylococcus epidermidis 12142587"],["NCBITaxon%3A1000590","Staphylococcus epidermidis 14.1.R1.SE"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":4,"nb":51,"a":[["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/trimethoprim.html","trimethoprim"],["antiprotozoal/suramin.html","suramin"],["antiviral/tilorone.html","tilorone"]],"b":[["NCBITaxon%3A1392","Bacillus anthracis"],["NCBITaxon%3A1412844","Bacillus anthracis 52-G"],["NCBITaxon%3A1412843","Bacillus anthracis 8903-G"],["NCBITaxon%3A1412842","Bacillus anthracis 9080-G"],["NCBITaxon%3A1420588","Bacillus anthracis CVCC 40048"],["NCBITaxon%3A1439874","Bacillus anthracis CZC5"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":3,"nb":82,"a":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]],"b":[["NCBITaxon%3A1390","Bacillus amyloliquefaciens"],["NCBITaxon%3A1452","Bacillus atrophaeus"],["NCBITaxon%3A640707","Bacillus atrophaeus ATCC 9372"],["NCBITaxon%3A483913","Bacillus inaquosorum"],["NCBITaxon%3A1236548","Bacillus inaquosorum KCTC 13429"],["NCBITaxon%3A1402","Bacillus licheniformis"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":3,"nb":27,"a":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"]],"b":[["NCBITaxon%3A57706","Citrobacter braakii"],["NCBITaxon%3A1914243","Citrobacter europaeus"],["NCBITaxon%3A546","Citrobacter freundii"],["NCBITaxon%3A1173724","Citrobacter freundii 47N"],["NCBITaxon%3A742730","Citrobacter freundii 4_7_47CFAA"],["NCBITaxon%3A1444046","Citrobacter freundii 5-172-05_S1_C1"]]},{"id":"NCBITaxon:274","l":"Thermus thermophilus","na":3,"nb":8,"a":[["antibacterial/fusidic-acid.html","fusidic acid"],["antibacterial/streptomycin.html","streptomycin"],["unspecified/streptolydigin.html","streptolydigin"]],"b":[["NCBITaxon%3A274","Thermus thermophilus"],["NCBITaxon%3A1316935","Thermus thermophilus ATCC 33923"],["NCBITaxon%3A262724","Thermus thermophilus HB27"],["NCBITaxon%3A300852","Thermus thermophilus HB8"],["NCBITaxon%3A798128","Thermus thermophilus JL-18"],["NCBITaxon%3A762633","Thermus thermophilus SG0.5JP17-16"]]},{"id":"NCBITaxon:1890","l":"Streptomyces antibioticus","na":3,"nb":7,"a":[["antibacterial/indanomycin.html","indanomycin"],["unspecified/oviedomycin.html","oviedomycin"],["unspecified/pentostatin.html","pentostatin"]],"b":[["NCBITaxon%3A67255","Streptomyces achromogenes"],["NCBITaxon%3A67256","Streptomyces achromogenes subsp. achromogenes"],["NCBITaxon%3A1890","Streptomyces antibioticus"],["NCBITaxon%3A1306178","Streptomyces antibioticus JCM 4620"],["NCBITaxon%3A2713664","Streptomyces antibioticus subsp. yamensis"],["NCBITaxon%3A67315","Streptomyces lavenduligriseus"]]},{"id":"NCBITaxon:1047171","l":"Zymoseptoria tritici","na":4,"nb":3,"a":[["antifungal/carboxin.html","carboxin"],["antifungal/fenpicoxamid.html","fenpicoxamid"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/iprodione.html","iprodione"]],"b":[["NCBITaxon%3A1047171","Zymoseptoria tritici"],["NCBITaxon%3A1276532","Zymoseptoria tritici ST99CH_1E4"],["NCBITaxon%3A1276537","Zymoseptoria tritici ST99CH_3D1"]]},{"id":"NCBITaxon:5480","l":"Lodderomyces parapsilosis","na":3,"nb":4,"a":[["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/voriconazole.html","voriconazole"]],"b":[["NCBITaxon%3A48076","Marinobacterium iners"],["NCBITaxon%3A5480","Lodderomyces parapsilosis"],["NCBITaxon%3A1231521","Lodderomyces parapsilosis CAB50-2638"],["NCBITaxon%3A578454","Lodderomyces parapsilosis CDC317"]]},{"id":"NCBITaxon:746128","l":"Aspergillus fumigatus","na":4,"nb":3,"a":[["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/terbinafine.html","terbinafine"],["antifungal/voriconazole.html","voriconazole"]],"b":[["NCBITaxon%3A746128","Aspergillus fumigatus"],["NCBITaxon%3A451804","Aspergillus fumigatus A1163"],["NCBITaxon%3A41122","Aspergillus fumigatus var. fumigatus"]]},{"id":"NCBITaxon:1773","l":"Mycobacterium tuberculosis","na":2,"nb":2946,"a":[["antibacterial/sulfanilamide.html","sulfanilamide"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]],"b":[["NCBITaxon%3A1773","Mycobacterium tuberculosis"],["NCBITaxon%3A668339","Mycobacterium tuberculosis 00_1695"],["NCBITaxon%3A1455192","Mycobacterium tuberculosis 01-Cr4_ND_3_A"],["NCBITaxon%3A1455078","Mycobacterium tuberculosis 01-Ps1_0_A"],["NCBITaxon%3A515616","Mycobacterium tuberculosis 02_1987"],["NCBITaxon%3A1455200","Mycobacterium tuberculosis 02-Cr4_ND_3_B"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":2,"nb":79,"a":[["antibacterial/mupirocin.html","mupirocin"],["antifungal/2-4-diacetylphloroglucinol.html","2,4-diacetylphloroglucinol"]],"b":[["NCBITaxon%3A1931223","Caballeronia sp."],["NCBITaxon%3A89065","Pseudomonas abietaniphila"],["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1123912","Pseudomonas auricularis"],["NCBITaxon%3A930166","Pseudomonas brassicacearum"],["NCBITaxon%3A129817","Pseudomonas brenneri"]]},{"id":"NCBITaxon:58346","l":"Streptomyces platensis","na":2,"nb":8,"a":[["antibacterial/platencin.html","platencin"],["antibacterial/platensimycin.html","platensimycin"]],"b":[["NCBITaxon%3A249580","Streptomyces glebosus"],["NCBITaxon%3A249582","Streptomyces libani subsp. rufus"],["NCBITaxon%3A1920","Streptomyces nigrescens"],["NCBITaxon%3A58346","Streptomyces platensis"],["NCBITaxon%3A1649334","Streptomyces platensis subsp. clarensis"],["NCBITaxon%3A285579","Streptomyces platensis subsp. malvinus"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":7,"nb":2,"a":[["antibacterial/brefeldin-a.html","brefeldin A"],["antifungal/anidulafungin.html","anidulafungin"],["antifungal/caspofungin.html","caspofungin"],["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/micafungin.html","micafungin"]],"b":[["NCBITaxon%3A5476","Candida albicans"],["NCBITaxon%3A1182531","Candida albicans 3153A"]]},{"id":"NCBITaxon:40559","l":"Botrytis cinerea","na":4,"nb":2,"a":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/iprodione.html","iprodione"],["antifungal/pyrisoxazole.html","pyrisoxazole"]],"b":[["NCBITaxon%3A40559","Botrytis cinerea"],["NCBITaxon%3A999810","Botrytis cinerea T4"]]},{"id":"NCBITaxon:405948","l":"Saccharopolyspora erythraea NRRL 2338","na":4,"nb":2,"a":[["antibacterial/erythromycin-a.html","erythromycin A"],["unspecified/erythromycin-b.html","erythromycin B"],["unspecified/erythromycin-c.html","erythromycin C"],["unspecified/erythromycin-d.html","erythromycin D"]],"b":[["NCBITaxon%3A1836","Saccharopolyspora erythraea"],["NCBITaxon%3A405948","Saccharopolyspora erythraea NRRL 2338"]]},{"id":"NCBITaxon:1299","l":"Deinococcus radiodurans","na":2,"nb":3,"a":[["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/linezolid.html","linezolid"]],"b":[["NCBITaxon%3A1299","Deinococcus radiodurans"],["NCBITaxon%3A243230","Deinococcus radiodurans R1 = ATCC 13939 = DSM 20539"],["NCBITaxon%3A47478","Deinococcus sp."]]},{"id":"NCBITaxon:1867","l":"Actinoplanes teichomyceticus","na":3,"nb":2,"a":[["antibacterial/teicoplanin.html","teicoplanin"],["unspecified/teicoplanin-a2-2.html","teicoplanin A2-2"],["unspecified/teicoplanin-a2-3.html","teicoplanin A2-3"]],"b":[["NCBITaxon%3A1867","Actinoplanes teichomyceticus"],["NCBITaxon%3A457423","Actinoplanes teichomyceticus ATCC 31121"]]},{"id":"NCBITaxon:1223523","l":"Streptomyces mobaraensis NBRC 13819 = DSM 40847","na":2,"nb":2,"a":[["antibacterial/bleomycin-a2.html","bleomycin A2"],["antibacterial/bleomycin-b2.html","bleomycin B2"]],"b":[["NCBITaxon%3A35621","Streptomyces mobaraensis"],["NCBITaxon%3A1223523","Streptomyces mobaraensis NBRC 13819 = DSM 40847"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":2,"nb":2,"a":[["antibacterial/streptothricin-f.html","streptothricin F"],["unspecified/streptothricin-d.html","streptothricin D"]],"b":[["NCBITaxon%3A1928","Streptomyces rochei"],["NCBITaxon%3A885435","Streptomyces rochei subsp. volubilis"]]},{"id":"NCBITaxon:5482","l":"Candida tropicalis","na":2,"nb":2,"a":[["antifungal/fluconazole.html","fluconazole"],["antifungal/voriconazole.html","voriconazole"]],"b":[["NCBITaxon%3A5482","Candida tropicalis"],["NCBITaxon%3A1312901","Candida tropicalis ATCC 200956"]]},{"id":"NCBITaxon:1496","l":"Clostridioides difficile","na":1,"nb":296,"a":[["antibacterial/fidaxomicin.html","fidaxomicin"]],"b":[["NCBITaxon%3A1496","Clostridioides difficile"],["NCBITaxon%3A997827","Clostridioides difficile 002-P50-2011"],["NCBITaxon%3A997828","Clostridioides difficile 050-P50-2011"],["NCBITaxon%3A699033","Clostridioides difficile 2007855"],["NCBITaxon%3A1151306","Clostridioides difficile 342"],["NCBITaxon%3A1151307","Clostridioides difficile 360"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":1,"nb":287,"a":[["unspecified/%CE%B1-mangostin.html","α-mangostin"]],"b":[["NCBITaxon%3A632","Yersinia pestis"],["NCBITaxon%3A1345710","Yersinia pestis 1045"],["NCBITaxon%3A1330535","Yersinia pestis 113"],["NCBITaxon%3A755859","Yersinia pestis 12"],["NCBITaxon%3A1345703","Yersinia pestis 1412"],["NCBITaxon%3A1345704","Yersinia pestis 1413"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":1,"nb":183,"a":[["antibacterial/fosfomycin.html","fosfomycin"]],"b":[["NCBITaxon%3A86840","Pseudomonas cannabina"],["NCBITaxon%3A53409","Pseudomonas coronafaciens"],["NCBITaxon%3A29438","Pseudomonas savastanoi"],["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A1204471","Pseudomonas syringae BRIP34876"]]},{"id":"NCBITaxon:263","l":"Francisella tularensis","na":1,"nb":117,"a":[["unspecified/%CE%B1-mangostin.html","α-mangostin"]],"b":[["NCBITaxon%3A984129","Francisella cf. novicida Fx1"],["NCBITaxon%3A676032","Francisella cf. tularensis subsp. novicida 3523"],["NCBITaxon%3A263","Francisella tularensis"],["NCBITaxon%3A1367846","Francisella tularensis 99A-2628"],["NCBITaxon%3A545771","Francisella tularensis B-SA"],["NCBITaxon%3A1410527","Francisella tularensis FSC069"]]},{"id":"NCBITaxon:1764","l":"Mycobacterium avium","na":1,"nb":76,"a":[["antibacterial/trimethoprim.html","trimethoprim"]],"b":[["NCBITaxon%3A1764","Mycobacterium avium"],["NCBITaxon%3A1392002","Mycobacterium avium 05-4293"],["NCBITaxon%3A1392001","Mycobacterium avium 09-5983"],["NCBITaxon%3A1235987","Mycobacterium avium 100"],["NCBITaxon%3A1235988","Mycobacterium avium 101"],["NCBITaxon%3A243243","Mycobacterium avium 104"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":1,"nb":47,"a":[["unspecified/chir-090.html","CHIR-090"]],"b":[["NCBITaxon%3A630","Yersinia enterocolitica"],["NCBITaxon%3A947561","Yersinia enterocolitica IP2222"],["NCBITaxon%3A1243181","Yersinia enterocolitica IP 10393"],["NCBITaxon%3A1443113","Yersinia enterocolitica LC20"],["NCBITaxon%3A947557","Yersinia enterocolitica NFO"],["NCBITaxon%3A150052","Yersinia enterocolitica subsp. enterocolitica"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":1,"nb":32,"a":[["antibacterial/althiomycin.html","althiomycin"]],"b":[["NCBITaxon%3A2703793","Serratia bockelmannii"],["NCBITaxon%3A615","Serratia marcescens"],["NCBITaxon%3A1257036","Serratia marcescens 12"],["NCBITaxon%3A1255611","Serratia marcescens 448"],["NCBITaxon%3A1333586","Serratia marcescens AB42556419-isolate1"],["NCBITaxon%3A1400186","Serratia marcescens BIDMC 44"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis H37Rv","na":1,"nb":13,"a":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]],"b":[["NCBITaxon%3A1773","Mycobacterium tuberculosis"],["NCBITaxon%3A83332","Mycobacterium tuberculosis H37Rv"],["NCBITaxon%3A747078","Mycobacterium tuberculosis H37Rv_2009"],["NCBITaxon%3A928249","Mycobacterium tuberculosis H37Rv_ideR_mutant_ST22"],["NCBITaxon%3A757417","Mycobacterium tuberculosis H37RvAE"],["NCBITaxon%3A757419","Mycobacterium tuberculosis H37RvCO"]]},{"id":"NCBITaxon:53446","l":"Streptomyces cinnamoneus","na":1,"nb":11,"a":[["antibacterial/bicozamycin.html","bicozamycin"]],"b":[["NCBITaxon%3A53446","Streptomyces cinnamoneus"],["NCBITaxon%3A173776","Streptomyces cinnamoneus subsp. albosporus"],["NCBITaxon%3A173777","Streptomyces cinnamoneus subsp. azacoluta"],["NCBITaxon%3A173778","Streptomyces cinnamoneus subsp. lanosus"],["NCBITaxon%3A1521191","Streptomyces cinnamoneus subsp. monicae"],["NCBITaxon%3A173779","Streptomyces cinnamoneus subsp. sparsus"]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":1,"nb":6,"a":[["antibacterial/fosfomycin.html","fosfomycin"]],"b":[["NCBITaxon%3A1906","Streptomyces fradiae"],["NCBITaxon%3A1319510","Streptomyces fradiae ATCC 10745 = DSM 40063"],["NCBITaxon%3A285449","Streptomyces fradiae subsp. acinicolor"],["NCBITaxon%3A2871172","Streptomyces fradiae V-1-3"],["NCBITaxon%3A66894","Streptomyces griseobrunneus"],["NCBITaxon%3A1909","Streptomyces griseolus"]]},{"id":"NCBITaxon:37326","l":"Nocardia brasiliensis","na":1,"nb":6,"a":[["antibacterial/brasiliquinone-b.html","brasiliquinone B"]],"b":[["NCBITaxon%3A1824","Nocardia asteroides"],["NCBITaxon%3A37326","Nocardia brasiliensis"],["NCBITaxon%3A1133849","Nocardia brasiliensis ATCC 700358"],["NCBITaxon%3A1406859","Nocardia brasiliensis IFM 10847"],["NCBITaxon%3A1206724","Nocardia brasiliensis NBRC 14402"],["NCBITaxon%3A37328","Nocardia carnea"]]},{"id":"NCBITaxon:68280","l":"Streptomyces violaceusniger","na":1,"nb":6,"a":[["antibacterial/nigericin.html","nigericin"]],"b":[["NCBITaxon%3A1912","Streptomyces hygroscopicus"],["NCBITaxon%3A68042","Streptomyces hygroscopicus subsp. hygroscopicus"],["NCBITaxon%3A33900","Streptomyces murinus"],["NCBITaxon%3A114686","Streptomyces phaeoluteigriseus"],["NCBITaxon%3A68280","Streptomyces violaceusniger"],["NCBITaxon%3A653045","Streptomyces violaceusniger Tu 4113"]]},{"id":"NCBITaxon:271","l":"Thermus aquaticus","na":1,"nb":5,"a":[["antimycobacterial/rifampicin.html","rifampicin"]],"b":[["NCBITaxon%3A271","Thermus aquaticus"],["NCBITaxon%3A1123387","Thermus aquaticus DSM 625"],["NCBITaxon%3A498848","Thermus aquaticus Y51MC23"],["NCBITaxon%3A274","Thermus thermophilus"],["NCBITaxon%3A300852","Thermus thermophilus HB8"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":1,"nb":5,"a":[["antibacterial/althiomycin.html","althiomycin"]],"b":[["NCBITaxon%3A34","Myxococcus xanthus"],["NCBITaxon%3A246197","Myxococcus xanthus DK 1622"],["NCBITaxon%3A1198133","Myxococcus xanthus DZ2"],["NCBITaxon%3A1198538","Myxococcus xanthus DZF1"],["NCBITaxon%3A675543","Myxococcus xanthus NewJersey2"]]},{"id":"NCBITaxon:536","l":"Chromobacterium violaceum","na":1,"nb":5,"a":[["unspecified/romidepsin.html","romidepsin"]],"b":[["NCBITaxon%3A1382803","Chromobacterium amazonense"],["NCBITaxon%3A686831","Chromobacterium piscinae"],["NCBITaxon%3A3055134","Chromobacterium sp. CCUG 30098"],["NCBITaxon%3A536","Chromobacterium violaceum"],["NCBITaxon%3A243365","Chromobacterium violaceum ATCC 12472"]]},{"id":"NCBITaxon:5478","l":"Nakaseomyces glabratus","na":1,"nb":5,"a":[["antifungal/fluconazole.html","fluconazole"]],"b":[["NCBITaxon%3A5478","Nakaseomyces glabratus"],["NCBITaxon%3A1231519","Nakaseomyces glabratus CAB52-4041"],["NCBITaxon%3A1406948","Nakaseomyces glabratus CCTCC M202019"],["NCBITaxon%3A1398155","Nakaseomyces glabratus M202019"],["NCBITaxon%3A1403403","Nakaseomyces glabratus UOB301"]]},{"id":"NCBITaxon:5518","l":"Fusarium graminearum","na":5,"nb":1,"a":[["antifungal/carbendazim.html","carbendazim"],["antifungal/difenoconazole.html","difenoconazole"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/prochloraz.html","prochloraz"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]],"b":[["NCBITaxon%3A5518","Fusarium graminearum"]]},{"id":"NCBITaxon:318829","l":"Pyricularia oryzae","na":4,"nb":1,"a":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/carboxin.html","carboxin"],["antifungal/carpropamid.html","carpropamid"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]],"b":[["NCBITaxon%3A318829","Pyricularia oryzae"]]},{"id":"NCBITaxon:117187","l":"Fusarium verticillioides","na":3,"nb":1,"a":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/fludioxonil.html","fludioxonil"]],"b":[["NCBITaxon%3A117187","Fusarium verticillioides"]]},{"id":"NCBITaxon:162425","l":"Aspergillus nidulans","na":1,"nb":3,"a":[["antifungal/thiabendazole.html","thiabendazole"]],"b":[["NCBITaxon%3A162425","Aspergillus nidulans"],["NCBITaxon%3A286159","Aspergillus nidulans var. acristatus"],["NCBITaxon%3A286160","Aspergillus nidulans var. dentatus"]]},{"id":"NCBITaxon:451804","l":"Aspergillus fumigatus A1163","na":3,"nb":1,"a":[["antifungal/itraconazole.html","itraconazole"],["antifungal/terbinafine.html","terbinafine"],["antifungal/voriconazole.html","voriconazole"]],"b":[["NCBITaxon%3A451804","Aspergillus fumigatus A1163"]]},{"id":"NCBITaxon:46429","l":"Sphingobium chlorophenolicum","na":1,"nb":3,"a":[["antifungal/pentachlorophenol.html","pentachlorophenol"]],"b":[["NCBITaxon%3A46429","Sphingobium chlorophenolicum"],["NCBITaxon%3A690566","Sphingobium chlorophenolicum L-1"],["NCBITaxon%3A1219044","Sphingobium chlorophenolicum NBRC 16172"]]},{"id":"NCBITaxon:54571","l":"Streptomyces venezuelae","na":1,"nb":3,"a":[["antibacterial/methymycin.html","methymycin"]],"b":[["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A54571","Streptomyces venezuelae"],["NCBITaxon%3A953739","Streptomyces venezuelae ATCC 10712"]]},{"id":"NCBITaxon:578454","l":"Lodderomyces parapsilosis CDC317","na":3,"nb":1,"a":[["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/voriconazole.html","voriconazole"]],"b":[["NCBITaxon%3A578454","Lodderomyces parapsilosis CDC317"]]},{"id":"NCBITaxon:67283","l":"Streptomyces candidus","na":1,"nb":3,"a":[["unspecified/pirazofurin.html","pirazofurin"]],"b":[["NCBITaxon%3A76021","Amycolatopsis coloradensis"],["NCBITaxon%3A67283","Streptomyces candidus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:690256","l":"Colletotrichum fructicola","na":3,"nb":1,"a":[["antifungal/difenoconazole.html","difenoconazole"],["antifungal/prochloraz.html","prochloraz"],["antifungal/propiconazole.html","propiconazole"]],"b":[["NCBITaxon%3A690256","Colletotrichum fructicola"]]},{"id":"NCBITaxon:1079985","l":"Streptomyces chartreusis NRRL 3882","na":1,"nb":2,"a":[["unspecified/tunicamycin-b1.html","tunicamycin B1"]],"b":[["NCBITaxon%3A1969","Streptomyces chartreusis"],["NCBITaxon%3A1079985","Streptomyces chartreusis NRRL 3882"]]},{"id":"NCBITaxon:1310114","l":"Mycobacterium tuberculosis CAS/NITR204","na":2,"nb":1,"a":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfanilamide.html","sulfanilamide"]],"b":[["NCBITaxon%3A1310114","Mycobacterium tuberculosis CAS/NITR204"]]},{"id":"NCBITaxon:212423","l":"Streptomyces kaniharaensis","na":2,"nb":1,"a":[["unspecified/coformycin.html","coformycin"],["unspecified/formycin-a.html","formycin A"]],"b":[["NCBITaxon%3A212423","Streptomyces kaniharaensis"]]},{"id":"NCBITaxon:316284","l":"Streptomyces noursei ATCC 11455","na":1,"nb":2,"a":[["antifungal/nystatin-a1.html","nystatin A1"]],"b":[["NCBITaxon%3A1971","Streptomyces noursei"],["NCBITaxon%3A316284","Streptomyces noursei ATCC 11455"]]},{"id":"NCBITaxon:36651","l":"Penicillium digitatum","na":2,"nb":1,"a":[["antifungal/pyrifenox.html","pyrifenox"],["antifungal/triflumizole.html","triflumizole"]],"b":[["NCBITaxon%3A36651","Penicillium digitatum"]]},{"id":"NCBITaxon:412963","l":"Mycetohabitans rhizoxinica","na":1,"nb":2,"a":[["unspecified/rhizoxin.html","rhizoxin"]],"b":[["NCBITaxon%3A412963","Mycetohabitans rhizoxinica"],["NCBITaxon%3A882378","Mycetohabitans rhizoxinica HKI 454"]]},{"id":"NCBITaxon:43658","l":"Pseudoalteromonas rubra","na":1,"nb":2,"a":[["unspecified/prodigiosin.html","prodigiosin"]],"b":[["NCBITaxon%3A43658","Pseudoalteromonas rubra"],["NCBITaxon%3A1117318","Pseudoalteromonas rubra DSM 6842"]]},{"id":"NCBITaxon:467194","l":"Streptomyces sp. CNQ-418","na":2,"nb":1,"a":[["antibacterial/marinopyrrole-a.html","(−)-marinopyrrole A"],["antibacterial/marinopyrrole-b.html","(−)-marinopyrrole B"]],"b":[["NCBITaxon%3A467194","Streptomyces sp. CNQ-418"]]},{"id":"NCBITaxon:47763","l":"Streptomyces lydicus","na":1,"nb":2,"a":[["unspecified/streptolydigin.html","streptolydigin"]],"b":[["NCBITaxon%3A47763","Streptomyces lydicus"],["NCBITaxon%3A1382545","Streptomyces lydicus A01"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":1,"nb":2,"a":[["antifungal/voriconazole.html","voriconazole"]],"b":[["NCBITaxon%3A5059","Aspergillus flavus"],["NCBITaxon%3A332952","Aspergillus flavus NRRL3357"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":1,"nb":2,"a":[["antifungal/carboxin.html","carboxin"]],"b":[["NCBITaxon%3A5062","Aspergillus oryzae"],["NCBITaxon%3A510516","Aspergillus oryzae RIB40"]]},{"id":"NCBITaxon:5074","l":"Penicillium brevicompactum","na":1,"nb":2,"a":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]],"b":[["NCBITaxon%3A1337893","Streptomyces bernensis"],["NCBITaxon%3A5074","Penicillium brevicompactum"]]},{"id":"NCBITaxon:5141","l":"Neurospora crassa","na":1,"nb":2,"a":[["antifungal/carbendazim.html","carbendazim"]],"b":[["NCBITaxon%3A5141","Neurospora crassa"],["NCBITaxon%3A367110","Neurospora crassa OR74A"]]},{"id":"NCBITaxon:527005","l":"Yersinia ruckeri ATCC 29473","na":1,"nb":2,"a":[["antibacterial/holomycin.html","holomycin"]],"b":[["NCBITaxon%3A29486","Yersinia ruckeri"],["NCBITaxon%3A527005","Yersinia ruckeri ATCC 29473"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":1,"nb":2,"a":[["antiprotozoal/emetine.html","emetine"]],"b":[["NCBITaxon%3A5833","Plasmodium falciparum"],["NCBITaxon%3A5843","Plasmodium falciparum NF54"]]},{"id":"NCBITaxon:68214","l":"Streptomyces griseochromogenes","na":1,"nb":2,"a":[["antifungal/blasticidin-s.html","blasticidin S"]],"b":[["NCBITaxon%3A68214","Streptomyces griseochromogenes"],["NCBITaxon%3A285477","Streptomyces griseochromogenes subsp. suitaensis"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":2,"a":[["antibacterial/lysocin-e.html","lysocin E"]],"b":[["NCBITaxon%3A72226","Lysobacter sp."],["NCBITaxon%3A1645665","Solilutibacter silvestris"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":1,"nb":1,"a":[["antibacterial/nocardamine.html","nocardamine"]],"b":[["NCBITaxon%3A100226","Streptomyces coelicolor A3(2)"]]},{"id":"NCBITaxon:112498","l":"Ramularia collo-cygni","na":1,"nb":1,"a":[["antifungal/carboxin.html","carboxin"]],"b":[["NCBITaxon%3A112498","Ramularia collo-cygni"]]},{"id":"NCBITaxon:1156913","l":"Amycolatopsis orientalis HCCB10007","na":1,"nb":1,"a":[["antibacterial/vancomycin.html","vancomycin"]],"b":[["NCBITaxon%3A1156913","Amycolatopsis orientalis HCCB10007"]]},{"id":"NCBITaxon:1159556","l":"Ustilaginoidea virens","na":1,"nb":1,"a":[["antifungal/azoxystrobin.html","azoxystrobin"]],"b":[["NCBITaxon%3A1159556","Ustilaginoidea virens"]]},{"id":"NCBITaxon:1352936","l":"Streptomyces roseochromogenus subsp. oscitans DS 12.976","na":1,"nb":1,"a":[["antibacterial/clorobiocin.html","clorobiocin"]],"b":[["NCBITaxon%3A1352936","Streptomyces roseochromogenus subsp. oscitans DS 12.976"]]},{"id":"NCBITaxon:1433842","l":"Hapalosiphon welwitschii UTEX B 1830","na":1,"nb":1,"a":[["antibacterial/3-z-2-isocyanovinyl-indole.html","3-[(Z)-2-isocyanovinyl]indole"]],"b":[["NCBITaxon%3A1433842","Hapalosiphon welwitschii UTEX B 1830"]]},{"id":"NCBITaxon:1469403","l":"Streptomyces sp. ZJ306","na":1,"nb":1,"a":[["antiprotozoal/ikarugamycin.html","ikarugamycin"]],"b":[["NCBITaxon%3A1469403","Streptomyces sp. ZJ306"]]},{"id":"NCBITaxon:1654360","l":"Photobacterium galatheae","na":1,"nb":1,"a":[["antibacterial/holomycin.html","holomycin"]],"b":[["NCBITaxon%3A1654360","Photobacterium galatheae"]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":1,"nb":1,"a":[["antibacterial/clavulanic-acid.html","clavulanic acid"]],"b":[["NCBITaxon%3A1901","Streptomyces clavuligerus"]]},{"id":"NCBITaxon:1907","l":"Streptomyces glaucescens","na":1,"nb":1,"a":[["antibacterial/tetracenomycin-c.html","tetracenomycin C"]],"b":[["NCBITaxon%3A1907","Streptomyces glaucescens"]]},{"id":"NCBITaxon:1979465","l":"Neocamarosporium betae","na":1,"nb":1,"a":[["antiviral/aphidicolin.html","aphidicolin"]],"b":[["NCBITaxon%3A1979465","Neocamarosporium betae"]]},{"id":"NCBITaxon:2583819","l":"Streptomyces sp. DASNCL29","na":1,"nb":1,"a":[["antibacterial/nigericin.html","nigericin"]],"b":[["NCBITaxon%3A2583819","Streptomyces sp. DASNCL29"]]},{"id":"NCBITaxon:264951","l":"Paecilomyces variotii","na":1,"nb":1,"a":[["antibacterial/m-viriditoxin.html","(M)-viriditoxin"]],"b":[["NCBITaxon%3A264951","Paecilomyces variotii"]]},{"id":"NCBITaxon:27337","l":"Verticillium dahliae","na":1,"nb":1,"a":[["antifungal/carbendazim.html","carbendazim"]],"b":[["NCBITaxon%3A27337","Verticillium dahliae"]]},{"id":"NCBITaxon:2878388","l":"Streptomyces marincola","na":1,"nb":1,"a":[["unspecified/piericidin-a.html","piericidin A"]],"b":[["NCBITaxon%3A2878388","Streptomyces marincola"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":1,"nb":1,"a":[["antifungal/voriconazole.html","voriconazole"]],"b":[["NCBITaxon%3A332952","Aspergillus flavus NRRL3357"]]},{"id":"NCBITaxon:36650","l":"Penicillium aethiopicum","na":1,"nb":1,"a":[["unspecified/viridicatumtoxin.html","viridicatumtoxin"]],"b":[["NCBITaxon%3A36650","Penicillium aethiopicum"]]},{"id":"NCBITaxon:367110","l":"Neurospora crassa OR74A","na":1,"nb":1,"a":[["antifungal/carbendazim.html","carbendazim"]],"b":[["NCBITaxon%3A367110","Neurospora crassa OR74A"]]},{"id":"NCBITaxon:41951","l":"Streptomyces argillaceus","na":1,"nb":1,"a":[["unspecified/mithramycin.html","mithramycin"]],"b":[["NCBITaxon%3A41951","Streptomyces argillaceus"]]},{"id":"NCBITaxon:4754","l":"Pneumocystis carinii","na":1,"nb":1,"a":[["antibacterial/trimethoprim.html","trimethoprim"]],"b":[["NCBITaxon%3A4754","Pneumocystis carinii"]]},{"id":"NCBITaxon:5076","l":"Penicillium chrysogenum","na":1,"nb":1,"a":[["unspecified/isopenicillin-n.html","isopenicillin N"]],"b":[["NCBITaxon%3A5076","Penicillium chrysogenum"]]},{"id":"NCBITaxon:5082","l":"Penicillium roqueforti","na":1,"nb":1,"a":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]],"b":[["NCBITaxon%3A5082","Penicillium roqueforti"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae RIB40","na":1,"nb":1,"a":[["antifungal/carboxin.html","carboxin"]],"b":[["NCBITaxon%3A510516","Aspergillus oryzae RIB40"]]},{"id":"NCBITaxon:5127","l":"Fusarium fujikuroi","na":1,"nb":1,"a":[["antifungal/carbendazim.html","carbendazim"]],"b":[["NCBITaxon%3A5127","Fusarium fujikuroi"]]},{"id":"NCBITaxon:52","l":"Chondromyces crocatus","na":1,"nb":1,"a":[["unspecified/chondrochloren-a.html","chondrochloren A"]],"b":[["NCBITaxon%3A52","Chondromyces crocatus"]]},{"id":"NCBITaxon:5270","l":"Mycosarcoma maydis","na":1,"nb":1,"a":[["antifungal/carboxin.html","carboxin"]],"b":[["NCBITaxon%3A5270","Mycosarcoma maydis"]]},{"id":"NCBITaxon:5661","l":"Leishmania donovani","na":1,"nb":1,"a":[["antiprotozoal/dihydrobetulinic-acid.html","dihydrobetulinic acid"]],"b":[["NCBITaxon%3A5661","Leishmania donovani"]]},{"id":"NCBITaxon:668825","l":"Streptomyces sp. ATCC 700974","na":1,"nb":1,"a":[["antibacterial/albomycin-%CE%B41.html","albomycin δ1"]],"b":[["NCBITaxon%3A668825","Streptomyces sp. ATCC 700974"]]},{"id":"NCBITaxon:67593","l":"Phytophthora sojae","na":1,"nb":1,"a":[["antifungal/borrelidin.html","borrelidin"]],"b":[["NCBITaxon%3A67593","Phytophthora sojae"]]},{"id":"NCBITaxon:68264","l":"Streptomyces rishiriensis","na":1,"nb":1,"a":[["antibacterial/coumermycin-a1.html","coumermycin A1"]],"b":[["NCBITaxon%3A68264","Streptomyces rishiriensis"]]},{"id":"NCBITaxon:686309","l":"Micromonospora haikouensis","na":1,"nb":1,"a":[["unspecified/coformycin.html","coformycin"]],"b":[["NCBITaxon%3A686309","Micromonospora haikouensis"]]},{"id":"NCBITaxon:889487","l":"Streptomyces sp. S4","na":1,"nb":1,"a":[["antifungal/antimycin-a.html","antimycin A"]],"b":[["NCBITaxon%3A889487","Streptomyces sp. S4"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/CellStructureMech--AntibioticMech.json b/assets/fleet/edges/CellStructureMech--AntibioticMech.json index 5d2679a..d1d36e4 100644 --- a/assets/fleet/edges/CellStructureMech--AntibioticMech.json +++ b/assets/fleet/edges/CellStructureMech--AntibioticMech.json @@ -1 +1 @@ -{"a":"CellStructureMech","b":"AntibioticMech","base":{"CellStructureMech":"https://culturebotai.github.io/CellStructureMech/pages/structures/","AntibioticMech":"https://culturebotai.github.io/AntibioticMech/pages/"},"n":18,"by":{"NCBITaxon":13,"CHEBI":5},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":31,"nb":30,"a":[["appendage/curli.html","curli"],["appendage/p_pilus.html","P pilus"],["appendage/pilus.html","pilus"],["appendage/type_i_pilus.html","type I pilus"],["cytoskeleton/parm_filament.html","ParM filament"],["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":190,"nb":8,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"],["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/septin_ring.html","septin ring"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"],["cytoskeleton/spindle_pole_body.html","spindle pole body"]],"b":[["antifungal/anidulafungin.html","anidulafungin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/caspofungin.html","caspofungin"],["antifungal/cycloheximide.html","cycloheximide"],["antifungal/micafungin.html","micafungin"],["antifungal/oligomycin-a.html","oligomycin A"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":15,"nb":7,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":14,"nb":3,"a":[["cytoskeleton/alfa_filament.html","AlfA filament"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":3,"nb":12,"a":[["appendage/type_iv_pilus.html","type IV pilus"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"NCBITaxon:274","l":"Thermus thermophilus","na":3,"nb":3,"a":[["energy_complex/respiratory_chain_complex_i.html","respiratory chain complex I"],["ribonucleoprotein/ribosome.html","ribosome"],["ribonucleoprotein/small_ribosomal_subunit.html","small ribosomal subunit"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"],["antibacterial/streptomycin.html","streptomycin"],["unspecified/streptolydigin.html","streptolydigin"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":13,"a":[["envelope/periplasmic_space.html","periplasmic space"],["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/bromodeoxytopsentin.html","bromodeoxytopsentin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"NCBITaxon:5207","l":"Cryptococcus neoformans","na":2,"nb":4,"a":[["envelope/capsule.html","capsule"],["envelope/fungal_type_cell_wall.html","fungal-type cell wall"]],"b":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfanilamide.html","sulfanilamide"],["antifungal/fluconazole.html","fluconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":9,"nb":1,"a":[["membrane_organelle/apicoplast.html","apicoplast"],["membrane_organelle/apicoplast_membrane.html","apicoplast membrane"],["membrane_organelle/exoneme.html","exoneme"],["membrane_organelle/food_vacuole.html","food vacuole"],["membrane_organelle/inner_membrane_pellicle_complex.html","inner membrane pellicle complex"],["membrane_organelle/maurer_s_cleft.html","Maurer's cleft"]],"b":[["antiprotozoal/emetine.html","emetine"]]},{"id":"NCBITaxon:5141","l":"Neurospora crassa","na":6,"nb":1,"a":[["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysomal_membrane.html","glyoxysomal membrane"],["membrane_organelle/glyoxysome.html","glyoxysome"],["membrane_organelle/woronin_body.html","Woronin body"],["other/polarisome.html","polarisome"],["other/spitzenkorper.html","spitzenkorper"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":5,"nb":1,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"],["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":4,"a":[["spore/exosporium.html","exosporium"]],"b":[["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/trimethoprim.html","trimethoprim"],["antiprotozoal/suramin.html","suramin"],["antiviral/tilorone.html","tilorone"]]},{"id":"NCBITaxon:1773","l":"Mycobacterium tuberculosis","na":1,"nb":2,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]],"b":[["antibacterial/sulfanilamide.html","sulfanilamide"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"CHEBI:16247","l":"","na":1,"nb":1,"a":[["inclusion/monolayer_surrounded_lipid_storage_body_outer_lipid_monolayer.html","monolayer-surrounded lipid storage body outer lipid monolayer"]],"b":[["antifungal/miltefosine.html","miltefosine"]]},{"id":"CHEBI:17855","l":"triglyceride","na":1,"nb":1,"a":[["inclusion/lipid_droplet.html","lipid droplet"]],"b":[["antifungal/triacetin.html","triacetin"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":1,"nb":1,"a":[["membrane_organelle/trichocyst.html","trichocyst"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"CHEBI:33403","l":"elemental sulfur","na":1,"nb":1,"a":[["inclusion/sulfur_globule.html","sulfur globule"]],"b":[["antifungal/polysulfur.html","polysulfur"]]},{"id":"CHEBI:35915","l":"","na":1,"nb":1,"a":[["inclusion/lipid_droplet.html","lipid droplet"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]}]} \ No newline at end of file +{"a":"CellStructureMech","b":"AntibioticMech","base":{"CellStructureMech":"https://culturebotai.github.io/CellStructureMech/pages/structures/","AntibioticMech":"https://culturebotai.github.io/AntibioticMech/pages/"},"n":18,"by":{"NCBITaxon":13,"CHEBI":5},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":31,"nb":30,"a":[["appendage/curli.html","curli"],["appendage/p_pilus.html","P pilus"],["appendage/pilus.html","pilus"],["appendage/type_i_pilus.html","type I pilus"],["cytoskeleton/parm_filament.html","ParM filament"],["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":190,"nb":8,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"],["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/septin_ring.html","septin ring"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"],["cytoskeleton/spindle_pole_body.html","spindle pole body"]],"b":[["antifungal/anidulafungin.html","anidulafungin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/caspofungin.html","caspofungin"],["antifungal/cycloheximide.html","cycloheximide"],["antifungal/micafungin.html","micafungin"],["antifungal/oligomycin-a.html","oligomycin A"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":15,"nb":7,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":14,"nb":3,"a":[["cytoskeleton/alfa_filament.html","AlfA filament"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":3,"nb":12,"a":[["appendage/type_iv_pilus.html","type IV pilus"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"NCBITaxon:274","l":"Thermus thermophilus","na":3,"nb":3,"a":[["energy_complex/respiratory_chain_complex_i.html","respiratory chain complex I"],["ribonucleoprotein/ribosome.html","ribosome"],["ribonucleoprotein/small_ribosomal_subunit.html","small ribosomal subunit"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"],["antibacterial/streptomycin.html","streptomycin"],["unspecified/streptolydigin.html","streptolydigin"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":13,"a":[["envelope/periplasmic_space.html","periplasmic space"],["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/bromodeoxytopsentin.html","bromodeoxytopsentin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"NCBITaxon:5207","l":"Cryptococcus neoformans","na":2,"nb":4,"a":[["envelope/capsule.html","capsule"],["envelope/fungal_type_cell_wall.html","fungal-type cell wall"]],"b":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfanilamide.html","sulfanilamide"],["antifungal/fluconazole.html","fluconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":9,"nb":1,"a":[["membrane_organelle/apicoplast.html","apicoplast"],["membrane_organelle/apicoplast_membrane.html","apicoplast membrane"],["membrane_organelle/exoneme.html","exoneme"],["membrane_organelle/food_vacuole.html","food vacuole"],["membrane_organelle/inner_membrane_pellicle_complex.html","inner membrane pellicle complex"],["membrane_organelle/maurer_s_cleft.html","Maurer's cleft"]],"b":[["antiprotozoal/emetine.html","emetine"]]},{"id":"NCBITaxon:5141","l":"Neurospora crassa","na":6,"nb":1,"a":[["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysomal_membrane.html","glyoxysomal membrane"],["membrane_organelle/glyoxysome.html","glyoxysome"],["membrane_organelle/woronin_body.html","Woronin body"],["other/polarisome.html","polarisome"],["other/spitzenkorper.html","spitzenkorper"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis H37Rv","na":5,"nb":1,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"],["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":4,"a":[["spore/exosporium.html","exosporium"]],"b":[["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/trimethoprim.html","trimethoprim"],["antiprotozoal/suramin.html","suramin"],["antiviral/tilorone.html","tilorone"]]},{"id":"NCBITaxon:1773","l":"Mycobacterium tuberculosis","na":1,"nb":2,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]],"b":[["antibacterial/sulfanilamide.html","sulfanilamide"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"CHEBI:16247","l":"","na":1,"nb":1,"a":[["inclusion/monolayer_surrounded_lipid_storage_body_outer_lipid_monolayer.html","monolayer-surrounded lipid storage body outer lipid monolayer"]],"b":[["antifungal/miltefosine.html","miltefosine"]]},{"id":"CHEBI:17855","l":"triglyceride","na":1,"nb":1,"a":[["inclusion/lipid_droplet.html","lipid droplet"]],"b":[["antifungal/triacetin.html","triacetin"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":1,"nb":1,"a":[["membrane_organelle/trichocyst.html","trichocyst"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"CHEBI:33403","l":"elemental sulfur","na":1,"nb":1,"a":[["inclusion/sulfur_globule.html","sulfur globule"]],"b":[["antifungal/polysulfur.html","polysulfur"]]},{"id":"CHEBI:35915","l":"","na":1,"nb":1,"a":[["inclusion/lipid_droplet.html","lipid droplet"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/CellStructureMech--NaturalProductMech.json b/assets/fleet/edges/CellStructureMech--NaturalProductMech.json index 2d12f00..77c0e02 100644 --- a/assets/fleet/edges/CellStructureMech--NaturalProductMech.json +++ b/assets/fleet/edges/CellStructureMech--NaturalProductMech.json @@ -1 +1 @@ -{"a":"CellStructureMech","b":"NaturalProductMech","base":{"CellStructureMech":"https://culturebotai.github.io/CellStructureMech/pages/structures/","NaturalProductMech":"https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/natural_products/"},"n":23,"by":{"NCBITaxon":23},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":31,"nb":24,"a":[["appendage/curli.html","curli"],["appendage/p_pilus.html","P pilus"],["appendage/pilus.html","pilus"],["appendage/type_i_pilus.html","type I pilus"],["cytoskeleton/parm_filament.html","ParM filament"],["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":14,"nb":16,"a":[["cytoskeleton/alfa_filament.html","AlfA filament"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["amino_acids_and_peptides/ericin-s.yaml","ericin S"],["amino_acids_and_peptides/iturin.yaml","iturin"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":8,"nb":13,"a":[["other/ap_5_adaptor_complex.html","AP-5 adaptor complex"],["ribonucleoprotein/u11_snrnp.html","U11 snRNP"],["ribonucleoprotein/u11_u12_snrnp.html","U11/U12 snRNP"],["ribonucleoprotein/u12_snrnp.html","U12 snRNP"],["ribonucleoprotein/u4atac_snrnp.html","U4atac snRNP"],["ribonucleoprotein/u4atac_u6atac_snrnp.html","U4atac/U6atac snRNP"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/congocidine.yaml","congocidine"],["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":15,"nb":3,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]],"b":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"],["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"],["unclassified/telomestatin.yaml","telomestatin"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":3,"nb":12,"a":[["appendage/type_iv_pilus.html","type IV pilus"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":6,"nb":2,"a":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"],["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"],["secretion_system/type_vi_secretion_system_baseplate.html","type VI secretion system baseplate"],["secretion_system/type_vi_secretion_system_contractile_sheath.html","type VI secretion system contractile sheath"],["secretion_system/type_vi_secretion_system_hcp_tube.html","type VI secretion system Hcp tube"],["secretion_system/type_vi_secretion_system_vgrg_paar_spike_complex.html","type VI secretion system VgrG/PAAR spike complex"]],"b":[["alkaloids/vibriobactin-2.yaml","vibriobactin"],["alkaloids/vibriobactin.yaml","vibriobactin"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":5,"a":[["envelope/periplasmic_space.html","periplasmic space"],["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"],["unclassified/leuvalin.yaml","leuvalin"],["unclassified/phevalin.yaml","phevalin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":4,"nb":2,"a":[["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"],["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]],"b":[["alkaloids/agrobactin.yaml","agrobactin"],["amino_acids_and_peptides/aztreonam.yaml","aztreonam"]]},{"id":"NCBITaxon:224308","l":"Bacillus subtilis (strain 168)","na":3,"nb":2,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["division_machinery/divisome_complex.html","divisome complex"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]],"b":[["unclassified/corynebactin.yaml","corynebactin"],["unclassified/pulcherriminic-acid.yaml","pulcherriminic acid"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":2,"nb":2,"a":[["cytoskeleton/tubz_filament.html","TubZ filament"],["inclusion/parasporal_crystal.html","parasporal crystal"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["unclassified/andalusicin-a.yaml","andalusicin A"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":190,"nb":1,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"],["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/septin_ring.html","septin ring"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"],["cytoskeleton/spindle_pole_body.html","spindle pole body"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:4751","l":"Fungi","na":11,"nb":1,"a":[["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/septin_ring.html","septin ring"],["envelope/capsule.html","capsule"],["envelope/eisosome_membrane_domain_mcc.html","eisosome membrane domain/MCC"],["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["envelope/plasma_membrane.html","plasma membrane"]],"b":[["shikimates_and_phenylpropanoids/atromentin.yaml","atromentin"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":9,"nb":1,"a":[["membrane_organelle/apicoplast.html","apicoplast"],["membrane_organelle/apicoplast_membrane.html","apicoplast membrane"],["membrane_organelle/exoneme.html","exoneme"],["membrane_organelle/food_vacuole.html","food vacuole"],["membrane_organelle/inner_membrane_pellicle_complex.html","inner membrane pellicle complex"],["membrane_organelle/maurer_s_cleft.html","Maurer's cleft"]],"b":[["alkaloids/congocidine.yaml","congocidine"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":7,"nb":1,"a":[["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/rc_lh1_pufx_core_complex.html","RC-LH1-PufX core complex"],["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":1,"nb":5,"a":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"]],"b":[["alkaloids/aminochelin.yaml","aminochelin"],["alkaloids/azotochelin.yaml","azotochelin"],["alkaloids/protochelin.yaml","protochelin"],["amino_acids_and_peptides/azotobactin-d.yaml","azotobactin D"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":5,"nb":1,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"],["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]],"b":[["unclassified/mycobactin.yaml","mycobactin"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":3,"nb":1,"a":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":2,"a":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":1,"a":[["spore/exosporium.html","exosporium"]],"b":[["alkaloids/petrobactin.yaml","petrobactin"]]},{"id":"NCBITaxon:243277","l":"Vibrio cholerae serotype O1 (strain ATCC 39315 / El Tor Inaba N16961)","na":1,"nb":1,"a":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"]],"b":[["alkaloids/vibriobactin-2.yaml","vibriobactin"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":1,"a":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]],"b":[["alkaloids/parabactin.yaml","parabactin"]]},{"id":"NCBITaxon:381666","l":"Cupriavidus necator H16","na":1,"nb":1,"a":[["inclusion/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]],"b":[["amino_acids_and_peptides/cupriachelin.yaml","cupriachelin"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":1,"nb":1,"a":[["microcompartment/bacterial_microcompartment.html","bacterial microcompartment"]],"b":[["polyketides/haliamide.yaml","haliamide"]]}]} \ No newline at end of file +{"a":"CellStructureMech","b":"NaturalProductMech","base":{"CellStructureMech":"https://culturebotai.github.io/CellStructureMech/pages/structures/","NaturalProductMech":"https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/natural_products/"},"n":23,"by":{"NCBITaxon":23},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":31,"nb":24,"a":[["appendage/curli.html","curli"],["appendage/p_pilus.html","P pilus"],["appendage/pilus.html","pilus"],["appendage/type_i_pilus.html","type I pilus"],["cytoskeleton/parm_filament.html","ParM filament"],["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":14,"nb":16,"a":[["cytoskeleton/alfa_filament.html","AlfA filament"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["amino_acids_and_peptides/ericin-s.yaml","ericin S"],["amino_acids_and_peptides/iturin.yaml","iturin"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":8,"nb":13,"a":[["other/ap_5_adaptor_complex.html","AP-5 adaptor complex"],["ribonucleoprotein/u11_snrnp.html","U11 snRNP"],["ribonucleoprotein/u11_u12_snrnp.html","U11/U12 snRNP"],["ribonucleoprotein/u12_snrnp.html","U12 snRNP"],["ribonucleoprotein/u4atac_snrnp.html","U4atac snRNP"],["ribonucleoprotein/u4atac_u6atac_snrnp.html","U4atac/U6atac snRNP"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/congocidine.yaml","congocidine"],["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli K-12","na":15,"nb":3,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]],"b":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"],["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"],["unclassified/telomestatin.yaml","telomestatin"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":3,"nb":12,"a":[["appendage/type_iv_pilus.html","type IV pilus"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":6,"nb":2,"a":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"],["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"],["secretion_system/type_vi_secretion_system_baseplate.html","type VI secretion system baseplate"],["secretion_system/type_vi_secretion_system_contractile_sheath.html","type VI secretion system contractile sheath"],["secretion_system/type_vi_secretion_system_hcp_tube.html","type VI secretion system Hcp tube"],["secretion_system/type_vi_secretion_system_vgrg_paar_spike_complex.html","type VI secretion system VgrG/PAAR spike complex"]],"b":[["alkaloids/vibriobactin-2.yaml","vibriobactin"],["alkaloids/vibriobactin.yaml","vibriobactin"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":5,"a":[["envelope/periplasmic_space.html","periplasmic space"],["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"],["unclassified/leuvalin.yaml","leuvalin"],["unclassified/phevalin.yaml","phevalin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":4,"nb":2,"a":[["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"],["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]],"b":[["alkaloids/agrobactin.yaml","agrobactin"],["amino_acids_and_peptides/aztreonam.yaml","aztreonam"]]},{"id":"NCBITaxon:224308","l":"Bacillus subtilis subsp. subtilis str. 168","na":3,"nb":2,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["division_machinery/divisome_complex.html","divisome complex"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]],"b":[["unclassified/corynebactin.yaml","corynebactin"],["unclassified/pulcherriminic-acid.yaml","pulcherriminic acid"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":2,"nb":2,"a":[["cytoskeleton/tubz_filament.html","TubZ filament"],["inclusion/parasporal_crystal.html","parasporal crystal"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["unclassified/andalusicin-a.yaml","andalusicin A"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":190,"nb":1,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"],["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/septin_ring.html","septin ring"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"],["cytoskeleton/spindle_pole_body.html","spindle pole body"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:4751","l":"Fungi","na":11,"nb":1,"a":[["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/septin_ring.html","septin ring"],["envelope/capsule.html","capsule"],["envelope/eisosome_membrane_domain_mcc.html","eisosome membrane domain/MCC"],["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["envelope/plasma_membrane.html","plasma membrane"]],"b":[["shikimates_and_phenylpropanoids/atromentin.yaml","atromentin"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":9,"nb":1,"a":[["membrane_organelle/apicoplast.html","apicoplast"],["membrane_organelle/apicoplast_membrane.html","apicoplast membrane"],["membrane_organelle/exoneme.html","exoneme"],["membrane_organelle/food_vacuole.html","food vacuole"],["membrane_organelle/inner_membrane_pellicle_complex.html","inner membrane pellicle complex"],["membrane_organelle/maurer_s_cleft.html","Maurer's cleft"]],"b":[["alkaloids/congocidine.yaml","congocidine"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":7,"nb":1,"a":[["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/rc_lh1_pufx_core_complex.html","RC-LH1-PufX core complex"],["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":1,"nb":5,"a":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"]],"b":[["alkaloids/aminochelin.yaml","aminochelin"],["alkaloids/azotochelin.yaml","azotochelin"],["alkaloids/protochelin.yaml","protochelin"],["amino_acids_and_peptides/azotobactin-d.yaml","azotobactin D"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis H37Rv","na":5,"nb":1,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"],["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]],"b":[["unclassified/mycobactin.yaml","mycobactin"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. PCC 7120 = FACHB-418","na":3,"nb":1,"a":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":2,"a":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":1,"a":[["spore/exosporium.html","exosporium"]],"b":[["alkaloids/petrobactin.yaml","petrobactin"]]},{"id":"NCBITaxon:243277","l":"Vibrio cholerae O1 biovar El Tor str. N16961","na":1,"nb":1,"a":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"]],"b":[["alkaloids/vibriobactin-2.yaml","vibriobactin"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":1,"a":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]],"b":[["alkaloids/parabactin.yaml","parabactin"]]},{"id":"NCBITaxon:381666","l":"Cupriavidus necator H16","na":1,"nb":1,"a":[["inclusion/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]],"b":[["amino_acids_and_peptides/cupriachelin.yaml","cupriachelin"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":1,"nb":1,"a":[["microcompartment/bacterial_microcompartment.html","bacterial microcompartment"]],"b":[["polyketides/haliamide.yaml","haliamide"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/CellStructureMech--ProteinTraitsMech.json b/assets/fleet/edges/CellStructureMech--ProteinTraitsMech.json index 7a308e7..7b4558c 100644 --- a/assets/fleet/edges/CellStructureMech--ProteinTraitsMech.json +++ b/assets/fleet/edges/CellStructureMech--ProteinTraitsMech.json @@ -1 +1 @@ -{"a":"CellStructureMech","b":"ProteinTraitsMech","base":{"CellStructureMech":"https://culturebotai.github.io/CellStructureMech/pages/structures/","ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record="},"n":1058,"by":{"GO":737,"UniProt":155,"NCBITaxon":77,"InterPro":64,"CHEBI":15,"Pfam":10},"terms":[{"id":"GO:0032991","l":"protein-containing complex","na":37,"nb":17037,"a":[["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/stalk_crossband.html","stalk crossband"],["cytoskeleton/eisosome_filament.html","eisosome filament"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["other/chaperonin_containing_t_complex.html","chaperonin-containing T-complex"],["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["ComplexPortal%3ACPX-5225","28S mitochondrial small ribosomal subunit"],["ComplexPortal%3ACPX-5301","28S mitochondrial small ribosomal subunit"],["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["ComplexPortal%3ACPX-10315","37S mitochondrial small ribosomal subunit"],["ComplexPortal%3ACPX-1603","37S mitochondrial small ribosomal subunit"],["ComplexPortal%3ACPX-5226","39S mitochondrial large ribosomal subunit"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":31,"nb":145,"a":[["appendage/curli.html","curli"],["appendage/p_pilus.html","P pilus"],["appendage/pilus.html","pilus"],["appendage/type_i_pilus.html","type I pilus"],["cytoskeleton/parm_filament.html","ParM filament"],["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]],"b":[["IDPO%3A0000033","flexible linker"],["IDPO%3A0000014","order to disorder"],["IDPO%3A0000004","pre-molten globule"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"]]},{"id":"NCBITaxon:3055","l":"Chlamydomonas reinhardtii","na":58,"nb":27,"a":[["appendage/ciliary_membrane.html","ciliary membrane"],["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"],["appendage/mastigoneme.html","mastigoneme"],["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_a_tubule_inner_sheath.html","axonemal A tubule inner sheath"]],"b":[["Pfam%3APF01333","Apocytochrome F, C-terminal"],["Pfam%3APF16639","Apocytochrome F, N-terminal"],["Pfam%3APF00430","ATP synthase B/B' CF(0)"],["Pfam%3APF00401","ATP synthase, Delta/Epsilon chain, long alpha-helix domain"],["Pfam%3APF21771","CFAP58 central coiled coil"],["Pfam%3APF27956","CFAP99 V-shaped coiled-coil domain"]]},{"id":"GO:0016020","l":"membrane","na":23,"nb":3003,"a":[["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["envelope/cell_outer_membrane.html","cell outer membrane"],["envelope/cellular_bud_membrane.html","cellular bud membrane"],["envelope/plasma_membrane.html","plasma membrane"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"]],"b":[["ComplexPortal%3ACPX-1813","1,3-beta-D-glucan synthase complex, FKS2-RHO1 variant"],["ComplexPortal%3ACPX-4313","Aliphatic sulfonate ABC transporter complex"],["ComplexPortal%3ACPX-4314","Arabinose ABC transporter complex"],["ComplexPortal%3ACPX-4318","Arginine ABC transporter complex, artI variant"],["ComplexPortal%3ACPX-4319","Arginine ABC transporter complex, artJ variant"],["ComplexPortal%3ACPX-6308","ATP10B-CDC50A P4-ATPase complex"]]},{"id":"GO:0043231","l":"intracellular membrane-bounded organelle","na":22,"nb":930,"a":[["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"],["membrane_organelle/exoneme.html","exoneme"],["membrane_organelle/ferrosome.html","ferrosome"],["membrane_organelle/golgi_apparatus.html","Golgi apparatus"]],"b":[["GO%3A0020022","acidocalcisome"],["GO%3A0044222","anammoxosome"],["GO%3A0033099","attachment organelle"],["GO%3A0005801","cis-Golgi network"],["GO%3A0005783","endoplasmic reticulum"],["GO%3A0005793","endoplasmic reticulum-Golgi intermediate compartment"]]},{"id":"NCBITaxon:99287","l":"Salmonella typhimurium (strain LT2 / SGSC1412 / ATCC 700720)","na":16,"nb":167,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"],["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"]],"b":[["Pfam%3APF16031","TonB polyproline region"],["Pfam%3APF13521","AAA domain"],["Pfam%3APF26341","tRNA 2-selenouridine synthase AAA domain"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"],["Pfam%3APF09317","Acyl-CoA dehydrogenase, C-terminal, bacterial type"],["Pfam%3APF06315","Isocitrate dehydrogenase kinase/phosphatase (AceK) kinase domain"]]},{"id":"GO:0005856","l":"cytoskeleton","na":16,"nb":148,"a":[["cytoskeleton/alfa_filament.html","AlfA filament"],["cytoskeleton/bactofilin_filament.html","bactofilin filament"],["cytoskeleton/bilobe_structure.html","bilobe structure"],["cytoskeleton/btubab_bacterial_microtubule.html","BtubAB bacterial microtubule"],["cytoskeleton/cetz_filament.html","CetZ filament"],["cytoskeleton/ciliary_basal_body.html","ciliary basal body"]],"b":[["GO%3A0015629","actin cytoskeleton"],["GO%3A0030863","cortical cytoskeleton"],["GO%3A0005856","cytoskeleton"],["GO%3A0045111","intermediate filament cytoskeleton"],["GO%3A0015630","microtubule cytoskeleton"],["GO%3A0033011","perinuclear theca"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":15,"nb":17470,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]],"b":[["EC%3A1.1.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.16.-.-","Oxidizing metal ions"],["EC%3A1.18.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.7.-","With an iron-sulfur protein as acceptor"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":14,"nb":15,"a":[["cytoskeleton/alfa_filament.html","AlfA filament"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]],"b":[["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["Pfam%3APF14562","Restriction endonuclease BglI"],["Pfam%3APF09195","Restriction endonuclease BglII/BglIII"],["Pfam%3APF09208","Restriction endonuclease MspI"]]},{"id":"GO:0005737","l":"cytoplasm","na":13,"nb":2018,"a":[["envelope/plasma_membrane.html","plasma membrane"],["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"],["membrane_organelle/mitosome.html","mitosome"]],"b":[["ComplexPortal%3ACPX-3921","2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["ComplexPortal%3ACPX-1599","40S cytosolic small ribosomal subunit"],["ComplexPortal%3ACPX-5223","40S cytosolic small ribosomal subunit"],["ComplexPortal%3ACPX-5261","40S cytosolic small ribosomal subunit"],["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"]]},{"id":"GO:0005789","l":"endoplasmic reticulum membrane","na":13,"nb":218,"a":[["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"],["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"],["membrane_organelle/endoplasmic_reticulum_lumen.html","endoplasmic reticulum lumen"],["membrane_organelle/endoplasmic_reticulum_membrane.html","endoplasmic reticulum membrane"],["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"],["other/copii_vesicle_coat.html","COPII vesicle coat"]],"b":[["ComplexPortal%3ACPX-8021","BOS complex, NOMO1 variant"],["ComplexPortal%3ACPX-8022","BOS complex, NOMO2 variant"],["ComplexPortal%3ACPX-8023","BOS complex, NOMO3 variant"],["ComplexPortal%3ACPX-2211","Commander complex"],["ComplexPortal%3ACPX-6701","Dehydrodolichyl diphosphate synthase complex"],["ComplexPortal%3ACPX-6268","Dolichol-phosphate mannosyltransferase complex"]]},{"id":"GO:0005743","l":"mitochondrial inner membrane","na":13,"nb":108,"a":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"],["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrial_intermembrane_space.html","mitochondrial intermembrane space"],["membrane_organelle/mitochondrial_matrix.html","mitochondrial matrix"]],"b":[["ComplexPortal%3ACPX-5225","28S mitochondrial small ribosomal subunit"],["ComplexPortal%3ACPX-5301","28S mitochondrial small ribosomal subunit"],["ComplexPortal%3ACPX-1603","37S mitochondrial small ribosomal subunit"],["ComplexPortal%3ACPX-5226","39S mitochondrial large ribosomal subunit"],["ComplexPortal%3ACPX-5302","39S mitochondrial large ribosomal subunit"],["ComplexPortal%3ACPX-1602","54S mitochondrial large ribosomal subunit"]]},{"id":"GO:0010008","l":"endosome membrane","na":13,"nb":60,"a":[["membrane_organelle/early_endosome_membrane.html","early endosome membrane"],["membrane_organelle/endosome.html","endosome"],["membrane_organelle/endosome_lumen.html","endosome lumen"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/late_endosome_membrane.html","late endosome membrane"]],"b":[["ComplexPortal%3ACPX-2211","Commander complex"],["ComplexPortal%3ACPX-5424","Endosomal SNARE complex PEP12-VTI1-SYN8-SNC1"],["ComplexPortal%3ACPX-5461","Endosomal SNARE complex PEP12-VTI1-SYN8-SNC2"],["ComplexPortal%3ACPX-5421","Endosomal SNARE complex PEP12-VTI1-SYN8-YKT6"],["ComplexPortal%3ACPX-5423","Endosomal SNARE complex PEP12-VTI1-TLG1-SNC1"],["ComplexPortal%3ACPX-5462","Endosomal SNARE complex PEP12-VTI1-TLG1-SNC2"]]},{"id":"GO:0009767","l":"photosynthetic electron transport chain","na":13,"nb":13,"a":[["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/photosystem_i.html","photosystem I"],["energy_complex/photosystem_ii.html","photosystem II"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]],"b":[["GO%3A0009767","photosynthetic electron transport chain"],["GO%3A0009773","photosynthetic electron transport in photosystem I"],["GO%3A0009772","photosynthetic electron transport in photosystem II"],["NCBIfam%3ATIGR01332","cytochrome b559 subunit alpha"],["NCBIfam%3ATIGR01333","cytochrome b559 subunit beta"],["NCBIfam%3ATIGR01156","cytochrome b6-f complex subunit IV"]]},{"id":"GO:0000139","l":"Golgi membrane","na":12,"nb":67,"a":[["membrane_organelle/cis_golgi_network_membrane.html","cis-Golgi network membrane"],["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/golgi_apparatus.html","Golgi apparatus"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"]],"b":[["ComplexPortal%3ACPX-7803","COPI vesicle coat complex, COPG1-COPZ1 variant"],["ComplexPortal%3ACPX-7970","COPI vesicle coat complex, COPG1-COPZ2 variant"],["ComplexPortal%3ACPX-7969","COPI vesicle coat complex, COPG2-COPZ1 variant"],["ComplexPortal%3ACPX-5424","Endosomal SNARE complex PEP12-VTI1-SYN8-SNC1"],["ComplexPortal%3ACPX-5461","Endosomal SNARE complex PEP12-VTI1-SYN8-SNC2"],["ComplexPortal%3ACPX-5421","Endosomal SNARE complex PEP12-VTI1-SYN8-YKT6"]]},{"id":"GO:0005768","l":"endosome","na":12,"nb":50,"a":[["membrane_organelle/early_endosome.html","early endosome"],["membrane_organelle/endosome.html","endosome"],["membrane_organelle/endosome_lumen.html","endosome lumen"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/recycling_endosome.html","recycling endosome"]],"b":[["ComplexPortal%3ACPX-1153","BLOC-1 complex"],["ComplexPortal%3ACPX-6241","CHEVI tethering complex"],["ComplexPortal%3ACPX-362","Heparanase complex"],["GO%3A0005769","early endosome"],["GO%3A0036019","endolysosome"],["GO%3A0005768","endosome"]]},{"id":"GO:0005930","l":"axoneme","na":12,"nb":26,"a":[["appendage/cilium.html","cilium"],["appendage/paraflagellar_rod.html","paraflagellar rod"],["cytoskeleton/axonemal_central_apparatus.html","axonemal central apparatus"],["cytoskeleton/axonemal_doublet_microtubule.html","axonemal doublet microtubule"],["cytoskeleton/axonemal_dynein_complex.html","axonemal dynein complex"],["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"]],"b":[["ComplexPortal%3ACPX-8086","Nexin-dynein regulatory complex"],["ComplexPortal%3ACPX-2626","Outer dynein arm-docking complex"],["ComplexPortal%3ACPX-8163","Radial spoke complex, ciliiar variant"],["GO%3A0005930","axoneme"],["Pfam%3APF24161","Coiled-coil domain-containing protein 39"],["PANTHER%3APTHR46625","72 KDA INOSITOL POLYPHOSPHATE 5-PHOSPHATASE"]]},{"id":"GO:0030659","l":"cytoplasmic vesicle membrane","na":12,"nb":24,"a":[["membrane_organelle/autophagosome_membrane.html","autophagosome membrane"],["membrane_organelle/clathrin_coated_vesicle_membrane.html","clathrin-coated vesicle membrane"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"],["membrane_organelle/cvt_vesicle_membrane.html","Cvt vesicle membrane"],["membrane_organelle/cytoplasmic_vesicle.html","cytoplasmic vesicle"],["membrane_organelle/cytoplasmic_vesicle_lumen.html","cytoplasmic vesicle lumen"]],"b":[["ComplexPortal%3ACPX-8427","ZNT1-ZNT3 proton-coupled zinc antiporter complex"],["ComplexPortal%3ACPX-8428","ZNT2-ZNT3 proton-coupled zinc antiporter complex"],["GO%3A0032578","aleurone grain membrane"],["GO%3A0030661","chitosome membrane"],["GO%3A0030662","coated vesicle membrane"],["GO%3A0031164","contractile vacuolar membrane"]]},{"id":"GO:0097525","l":"spliceosomal snRNP complex","na":12,"nb":18,"a":[["ribonucleoprotein/u11_snrnp.html","U11 snRNP"],["ribonucleoprotein/u11_u12_snrnp.html","U11/U12 snRNP"],["ribonucleoprotein/u12_snrnp.html","U12 snRNP"],["ribonucleoprotein/u1_snrnp.html","U1 snRNP"],["ribonucleoprotein/u2_snrnp.html","U2 snRNP"],["ribonucleoprotein/u4_snrnp.html","U4 snRNP"]],"b":[["GO%3A0071003","penta-snRNP complex"],["GO%3A0071024","SL snRNP"],["GO%3A0097525","spliceosomal snRNP complex"],["GO%3A0097526","spliceosomal tri-snRNP complex"],["GO%3A0005685","U1 snRNP"],["GO%3A0005692","U11 snRNP"]]},{"id":"GO:0042651","l":"thylakoid membrane","na":12,"nb":14,"a":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/phycobilisome.html","phycobilisome"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"]],"b":[["GO%3A0070118","organellar chromatophore thylakoid membrane"],["GO%3A0031676","plasma membrane-derived thylakoid membrane"],["GO%3A0055035","plastid thylakoid membrane"],["GO%3A0042651","thylakoid membrane"],["NCBIfam%3ANF013497","Apocytochrome F, C-terminal"],["NCBIfam%3ATIGR01156","cytochrome b6-f complex subunit IV"]]},{"id":"GO:0031410","l":"cytoplasmic vesicle","na":11,"nb":138,"a":[["membrane_organelle/chitosome.html","chitosome"],["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/cvt_vesicle.html","Cvt vesicle"],["membrane_organelle/cytoplasmic_vesicle.html","cytoplasmic vesicle"],["membrane_organelle/cytoplasmic_vesicle_lumen.html","cytoplasmic vesicle lumen"],["membrane_organelle/cytoplasmic_vesicle_membrane.html","cytoplasmic vesicle membrane"]],"b":[["GO%3A0033095","aleurone grain"],["GO%3A1990006","amorphous vesicle"],["GO%3A0043702","carotenoid vesicle"],["GO%3A0045009","chitosome"],["GO%3A0062247","chloroplast vesicle"],["GO%3A0097721","ciliary vesicle"]]},{"id":"GO:0043233","l":"organelle lumen","na":11,"nb":36,"a":[["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/endoplasmic_reticulum_lumen.html","endoplasmic reticulum lumen"],["membrane_organelle/esterosome_lumen.html","esterosome lumen"],["membrane_organelle/glycosome_lumen.html","glycosome lumen"],["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/hydrogenosome_lumen.html","hydrogenosome lumen"]],"b":[["GO%3A0070013","intracellular organelle lumen"],["GO%3A0043233","organelle lumen"],["GO%3A0034591","rhoptry lumen"],["GO%3A0120203","rod photoreceptor disc lumen"],["GO%3A0031983","vesicle lumen"],["PANTHER%3APTHR13457","BAP28"]]},{"id":"GO:0005886","l":"plasma membrane","na":10,"nb":861,"a":[["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["appendage/prostheca.html","prostheca"],["envelope/cellular_bud_membrane.html","cellular bud membrane"],["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"],["envelope/plasma_membrane.html","plasma membrane"]],"b":[["ComplexPortal%3ACPX-2838","3M complex"],["ComplexPortal%3ACPX-850","AHNAK - Annexin A2 - S100-A10 complex"],["ComplexPortal%3ACPX-6581","Alpha-beta T cell receptor complex, TRBC1 variant"],["ComplexPortal%3ACPX-6482","Alpha-beta T cell receptor complex, TRBC2 variant"],["ComplexPortal%3ACPX-2188","Amiloride-sensitive sodium channel complex, alpha-beta-gamma"],["ComplexPortal%3ACPX-3582","AMT1-1 - AMT1-3 heterotrimer, variant 1"]]},{"id":"GO:0005794","l":"Golgi apparatus","na":10,"nb":93,"a":[["membrane_organelle/cis_golgi_network.html","cis-Golgi network"],["membrane_organelle/cis_golgi_network_membrane.html","cis-Golgi network membrane"],["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"],["membrane_organelle/golgi_apparatus.html","Golgi apparatus"],["membrane_organelle/golgi_cisterna.html","Golgi cisterna"],["membrane_organelle/golgi_cisterna_membrane.html","Golgi cisterna membrane"]],"b":[["ComplexPortal%3ACPX-26603","ATP9A-DOP1B-MON2, golgi transporter complex"],["ComplexPortal%3ACPX-26602","DOP1A-MON2, golgi-endosome traffic complex"],["ComplexPortal%3ACPX-8422","HAS1-HAS2 hyaluronan biosynthesis complex"],["ComplexPortal%3ACPX-8410","HAS1-HAS3 hyaluronan biosynthesis complex"],["ComplexPortal%3ACPX-8481","HAS1 hyaluronan biosynthesis complex"],["ComplexPortal%3ACPX-8424","HAS2-HAS3 hyaluronan biosynthesis complex"]]},{"id":"GO:0000776","l":"kinetochore","na":10,"nb":59,"a":[["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"],["other/cbf3_complex.html","CBF3 complex"],["other/coma_complex.html","COMA complex"],["other/dash_complex.html","DASH complex"],["other/kinetochore.html","kinetochore"]],"b":[["ComplexPortal%3ACPX-1898","CBF3 complex"],["ComplexPortal%3ACPX-1156","Central kinetochore CTF19 complex"],["ComplexPortal%3ACPX-10081","DASH complex"],["ComplexPortal%3ACPX-5644","Kinetochore KNL1 complex"],["ComplexPortal%3ACPX-5702","Kinetochore KNL1 complex"],["ComplexPortal%3ACPX-1186","Kinetochore MIS12 complex"]]},{"id":"GO:0005874","l":"microtubule","na":10,"nb":50,"a":[["cytoskeleton/ciliary_basal_body.html","ciliary basal body"],["cytoskeleton/funis.html","funis"],["cytoskeleton/intraconoid_microtubule.html","intraconoid microtubule"],["cytoskeleton/median_body.html","median body"],["cytoskeleton/microtubule.html","microtubule"],["cytoskeleton/mitotic_spindle.html","mitotic spindle"]],"b":[["ComplexPortal%3ACPX-806","Ndc80 complex"],["ComplexPortal%3ACPX-4143","Pyrin inflammasome"],["ComplexPortal%3ACPX-4244","Pyrin inflammasome"],["ComplexPortal%3ACPX-811","Ska1 complex"],["ComplexPortal%3ACPX-2572","Tubulin polyglutamylase complex"],["GO%3A0005881","cytoplasmic microtubule"]]},{"id":"GO:0009536","l":"plastid","na":10,"nb":33,"a":[["membrane_organelle/apicoplast.html","apicoplast"],["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/nucleomorph.html","nucleomorph"],["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/plastid.html","plastid"]],"b":[["GO%3A0009501","amyloplast"],["GO%3A0020011","apicoplast"],["GO%3A0009507","chloroplast"],["GO%3A0009509","chromoplast"],["GO%3A0009842","cyanelle"],["GO%3A0009513","etioplast"]]},{"id":"GO:0072583","l":"clathrin-dependent endocytosis","na":10,"nb":18,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle.html","clathrin-coated endocytic vesicle"],["membrane_organelle/clathrin_coated_endocytic_vesicle_membrane.html","clathrin-coated endocytic vesicle membrane"],["membrane_organelle/clathrin_coated_vesicle.html","clathrin-coated vesicle"],["other/ap_2_adaptor_complex.html","AP-2 adaptor complex"],["other/clathrin_coat.html","clathrin coat"],["other/clathrin_coat_of_coated_pit.html","clathrin coat of coated pit"]],"b":[["ComplexPortal%3ACPX-5149","AP-2 Adaptor complex, alpha1 variant"],["ComplexPortal%3ACPX-5152","AP-2 Adaptor complex, alpha1 variant"],["ComplexPortal%3ACPX-5150","AP-2 Adaptor complex, alpha2 variant"],["ComplexPortal%3ACPX-5153","AP-2 Adaptor complex, alpha2 variant"],["ComplexPortal%3ACPX-26725","Clathrin, endocytosis-mediating complex, CLTA-CLTB mixed lattice variant"],["ComplexPortal%3ACPX-26726","Clathrin, endocytosis-mediating complex, CLTA-CLTB mixed lattice variant"]]},{"id":"GO:0005682","l":"U5 snRNP","na":10,"nb":13,"a":[["ribonucleoprotein/u12_type_catalytic_step_1_spliceosome.html","U12-type catalytic step 1 spliceosome"],["ribonucleoprotein/u12_type_catalytic_step_2_spliceosome.html","U12-type catalytic step 2 spliceosome"],["ribonucleoprotein/u12_type_post_mrna_release_spliceosomal_complex.html","U12-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u12_type_post_spliceosomal_complex.html","U12-type post-spliceosomal complex"],["ribonucleoprotein/u2_type_catalytic_step_1_spliceosome.html","U2-type catalytic step 1 spliceosome"],["ribonucleoprotein/u2_type_catalytic_step_2_spliceosome.html","U2-type catalytic step 2 spliceosome"]],"b":[["ComplexPortal%3ACPX-43","Sm complex"],["ComplexPortal%3ACPX-6033","Sm complex"],["ComplexPortal%3ACPX-26421","U5 small nuclear ribonucleoprotein complete complex"],["ComplexPortal%3ACPX-26552","U5 small nuclear ribonucleoprotein complex, AAR2 variant"],["ComplexPortal%3ACPX-30","U5 small nuclear ribonucleoprotein complex, AAR2 variant"],["ComplexPortal%3ACPX-29","U5 small nuclear ribonucleoprotein complex"]]},{"id":"NCBITaxon:44689","l":"Dictyostelium discoideum","na":9,"nb":151,"a":[["membrane_organelle/contractile_vacuole.html","contractile vacuole"],["membrane_organelle/contractile_vacuole_complex.html","contractile vacuole complex"],["membrane_organelle/esterosome.html","esterosome"],["membrane_organelle/esterosome_lumen.html","esterosome lumen"],["membrane_organelle/esterosome_membrane.html","esterosome membrane"],["membrane_organelle/phagocytic_vesicle.html","phagocytic vesicle"]],"b":[["IDPO%3A0000002","disorder"],["IDPO%3A0000030","entropic chain"],["IDPO%3A0000006","order"],["IDPO%3A0000058","self-activation"],["Pfam%3APF23297","Highly reducing polyketide synthase sdgA, C-terminal ACP domain"],["Pfam%3APF09192","Actin-fragmin kinase, catalytic"]]},{"id":"GO:0005643","l":"nuclear pore","na":9,"nb":41,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nucleus.html","nucleus"],["other/nuclear_pore.html","nuclear pore"],["other/nuclear_pore_central_transport_channel.html","nuclear pore central transport channel"],["other/nuclear_pore_cytoplasmic_filaments.html","nuclear pore cytoplasmic filaments"],["other/nuclear_pore_inner_ring.html","nuclear pore inner ring"]],"b":[["ComplexPortal%3ACPX-4747","E3 ligase (RANBP2) complex"],["ComplexPortal%3ACPX-4921","E3 ligase (RANBP2) complex"],["ComplexPortal%3ACPX-2568","Nuclear pore complex"],["ComplexPortal%3ACPX-4474","Nuclear pore complex"],["ComplexPortal%3ACPX-824","Nuclear pore complex"],["ComplexPortal%3ACPX-873","Nuclear pore complex"]]},{"id":"GO:0019684","l":"photosynthesis, light reaction","na":9,"nb":39,"a":[["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"]],"b":[["GO%3A0019684","photosynthesis, light reaction"],["NCBIfam%3ANF058510","bifunctional rod-capping linker CpcD/ferredoxin--NADP reductase PetH"],["NCBIfam%3ATIGR01332","cytochrome b559 subunit alpha"],["NCBIfam%3ATIGR01333","cytochrome b559 subunit beta"],["NCBIfam%3ANF043009","cytochrome c-554 Puf2C"],["NCBIfam%3ANF040862","light-harvesting antenna LH1, beta subunit"]]},{"id":"GO:0060205","l":"cytoplasmic vesicle lumen","na":9,"nb":18,"a":[["membrane_organelle/autophagosome_lumen.html","autophagosome lumen"],["membrane_organelle/clathrin_coated_vesicle_lumen.html","clathrin-coated vesicle lumen"],["membrane_organelle/copi_coated_vesicle_lumen.html","COPI-coated vesicle lumen"],["membrane_organelle/copii_coated_vesicle_lumen.html","COPII-coated vesicle lumen"],["membrane_organelle/cvt_vesicle_lumen.html","Cvt vesicle lumen"],["membrane_organelle/cytoplasmic_vesicle.html","cytoplasmic vesicle"]],"b":[["GO%3A0034422","aleurone grain lumen"],["GO%3A0060202","clathrin-sculpted acetylcholine transport vesicle lumen"],["GO%3A0061201","clathrin-sculpted gamma-aminobutyric acid transport vesicle lumen"],["GO%3A0060204","clathrin-sculpted glutamate transport vesicle lumen"],["GO%3A0070082","clathrin-sculpted monoamine transport vesicle lumen"],["GO%3A0106172","COPI-coated vesicle lumen"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":15,"nb":9,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]],"b":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF25954","CusB-like, beta-barrel domain"],["Pfam%3APF13438","Domain of unknown function (DUF4113)"],["Pfam%3APF03767","HAD superfamily, subfamily IIIB (Acid phosphatase)"],["Pfam%3APF03496","ADP-ribosyltransferase exoenzyme"]]},{"id":"GO:0009941","l":"chloroplast envelope","na":9,"nb":12,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_inner_membrane.html","chloroplast inner membrane"],["membrane_organelle/chloroplast_intermembrane_space.html","chloroplast intermembrane space"],["membrane_organelle/chloroplast_membrane.html","chloroplast membrane"],["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"]],"b":[["GO%3A0009941","chloroplast envelope"],["PANTHER%3APTHR47283","ENT-KAURENE OXIDASE, CHLOROPLASTIC"],["PANTHER%3APTHR36737","EXPRESSED PROTEIN"],["PANTHER%3APTHR31038","EXPRESSED PROTEIN-RELATED"],["PANTHER%3APTHR34048","LOW-DENSITY RECEPTOR-LIKE PROTEIN"],["PANTHER%3APTHR34809","MALTOSE EXCESS PROTEIN 1, CHLOROPLASTIC-RELATED"]]},{"id":"GO:0030119","l":"AP-type membrane coat adaptor complex","na":9,"nb":12,"a":[["other/ap_3_adaptor_complex.html","AP-3 adaptor complex"],["other/ap_4_adaptor_complex.html","AP-4 adaptor complex"],["other/ap_5_adaptor_complex.html","AP-5 adaptor complex"],["other/ap_type_membrane_coat_adaptor_complex.html","AP-type membrane coat adaptor complex"],["other/clathrin_coat.html","clathrin coat"],["other/clathrin_coat_of_endocytic_vesicle.html","clathrin coat of endocytic vesicle"]],"b":[["GO%3A0030123","AP-3 adaptor complex"],["GO%3A0030124","AP-4 adaptor complex"],["GO%3A0044599","AP-5 adaptor complex"],["GO%3A0030119","AP-type membrane coat adaptor complex"],["GO%3A0030131","clathrin adaptor complex"],["PANTHER%3APTHR22780","ADAPTIN, ALPHA/GAMMA/EPSILON"]]},{"id":"GO:0009425","l":"bacterial-type flagellum basal body","na":10,"nb":9,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"],["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"]],"b":[["GO%3A0009425","bacterial-type flagellum basal body"],["NCBIfam%3ANF005435","flagellar basal body-associated protein FliL"],["NCBIfam%3ANF005995","flagellar motor switch phosphatase FliY"],["NCBIfam%3ANF005194","flagellar motor switch protein FliM"],["NCBIfam%3ANF006273","flagellar motor switch protein FliN"],["NCBIfam%3ANF006272","flagellar motor switch protein FliY"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":8,"nb":49554,"a":[["other/ap_5_adaptor_complex.html","AP-5 adaptor complex"],["ribonucleoprotein/u11_snrnp.html","U11 snRNP"],["ribonucleoprotein/u11_u12_snrnp.html","U11/U12 snRNP"],["ribonucleoprotein/u12_snrnp.html","U12 snRNP"],["ribonucleoprotein/u4atac_snrnp.html","U4atac snRNP"],["ribonucleoprotein/u4atac_u6atac_snrnp.html","U4atac/U6atac snRNP"]],"b":[["EC%3A1.1.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.1.98.-","With other, known, acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"]]},{"id":"GO:0031090","l":"organelle membrane","na":8,"nb":270,"a":[["membrane_organelle/apicomplexan_dense_granule_membrane.html","apicomplexan dense granule membrane"],["membrane_organelle/microneme_membrane.html","microneme membrane"],["membrane_organelle/mitosome_inner_membrane.html","mitosome inner membrane"],["membrane_organelle/mitosome_outer_membrane.html","mitosome outer membrane"],["membrane_organelle/nuclear_inner_membrane.html","nuclear inner membrane"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"]],"b":[["GO%3A0098588","bounding membrane of organelle"],["GO%3A0005789","endoplasmic reticulum membrane"],["GO%3A0032580","Golgi cisterna membrane"],["GO%3A0110146","magnetosome membrane"],["GO%3A0031966","mitochondrial membrane"],["GO%3A0031965","nuclear membrane"]]},{"id":"GO:0005783","l":"endoplasmic reticulum","na":8,"nb":226,"a":[["membrane_organelle/cis_golgi_network.html","cis-Golgi network"],["membrane_organelle/cis_golgi_network_membrane.html","cis-Golgi network membrane"],["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"],["membrane_organelle/endoplasmic_reticulum_lumen.html","endoplasmic reticulum lumen"],["membrane_organelle/endoplasmic_reticulum_membrane.html","endoplasmic reticulum membrane"]],"b":[["ComplexPortal%3ACPX-2360","COPII vesicle coat complex"],["ComplexPortal%3ACPX-2400","COPII vesicle coat complex"],["ComplexPortal%3ACPX-2523","COPII vesicle coat complex"],["ComplexPortal%3ACPX-26602","DOP1A-MON2, golgi-endosome traffic complex"],["ComplexPortal%3ACPX-8736","ERAP1-ERAP2 endoplasmic reticulum aminopeptidase complex"],["ComplexPortal%3ACPX-4236","Gamma-secretase complex, Aph1a-Psen2 variant"]]},{"id":"GO:0009279","l":"cell outer membrane","na":8,"nb":67,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/prostheca.html","prostheca"],["envelope/cell_outer_membrane.html","cell outer membrane"],["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["envelope/mycolate_outer_membrane.html","mycolate outer membrane"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"]],"b":[["ComplexPortal%3ACPX-1083","Cobalamin outer membrane transporter complex"],["ComplexPortal%3ACPX-4743","Curli secretion complex"],["ComplexPortal%3ACPX-1093","LptDE outer membrane translocon complex"],["ComplexPortal%3ACPX-5890","Translocation and assembly module complex"],["GO%3A0009279","cell outer membrane"],["GO%3A0036407","mycolate outer membrane"]]},{"id":"GO:0005741","l":"mitochondrial outer membrane","na":8,"nb":38,"a":[["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_intermembrane_space.html","mitochondrial intermembrane space"],["membrane_organelle/mitochondrial_membrane.html","mitochondrial membrane"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"],["other/ermes_complex.html","ERMES complex"]],"b":[["ComplexPortal%3ACPX-1989","BAK1 oligomer"],["ComplexPortal%3ACPX-2033","BAK1 oligomer"],["ComplexPortal%3ACPX-2034","BAK1 oligomer"],["ComplexPortal%3ACPX-6133","SAM mitochondrial sorting and assembly machinery complex"],["ComplexPortal%3ACPX-6101","SARS-CoV 9b complex"],["ComplexPortal%3ACPX-6121","TOM40 mitochondrial outer membrane translocase complex"]]},{"id":"GO:0009288","l":"bacterial-type flagellum","na":8,"nb":31,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009288","bacterial-type flagellum"]]},{"id":"GO:0005774","l":"vacuolar membrane","na":8,"nb":23,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v0_domain.html","vacuolar proton-transporting V-type ATPase, V0 domain"],["membrane_organelle/contractile_vacuolar_membrane.html","contractile vacuolar membrane"],["membrane_organelle/fungal_type_vacuole_membrane.html","fungal-type vacuole membrane"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"],["membrane_organelle/vacuolar_lumen.html","vacuolar lumen"]],"b":[["ComplexPortal%3ACPX-26523","GATOR1 complex"],["ComplexPortal%3ACPX-3231","SEA complex"],["ComplexPortal%3ACPX-5401","Vacuolar SNARE complex VAM3-VTI1-VAM7-NYV1"],["ComplexPortal%3ACPX-1887","Vacuolar SNARE complex VAM3-VTI1-VAM7-YKT6"],["GO%3A0000421","autophagosome membrane"],["GO%3A0031164","contractile vacuolar membrane"]]},{"id":"GO:0030126","l":"COPI vesicle coat","na":8,"nb":19,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"],["membrane_organelle/golgi_membrane.html","Golgi membrane"]],"b":[["ComplexPortal%3ACPX-7803","COPI vesicle coat complex, COPG1-COPZ1 variant"],["ComplexPortal%3ACPX-7970","COPI vesicle coat complex, COPG1-COPZ2 variant"],["ComplexPortal%3ACPX-7969","COPI vesicle coat complex, COPG2-COPZ1 variant"],["ComplexPortal%3ACPX-1652","COPI vesicle coat complex"],["ComplexPortal%3ACPX-2820","COPI vesicle coat complex"],["GO%3A0030126","COPI vesicle coat"]]},{"id":"GO:0098803","l":"respiratory chain complex","na":8,"nb":14,"a":[["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"],["energy_complex/cytochrome_o_ubiquinol_oxidase_complex.html","cytochrome o ubiquinol oxidase complex"],["energy_complex/fumarate_reductase_complex.html","fumarate reductase complex"],["energy_complex/respiratory_chain_complex_i.html","respiratory chain complex I"],["energy_complex/respiratory_chain_complex_ii_succinate_dehydrogenase.html","respiratory chain complex II (succinate dehydrogenase)"],["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"]],"b":[["GO%3A0009319","cytochrome o ubiquinol oxidase complex"],["GO%3A0045283","fumarate reductase complex"],["GO%3A0044799","NarGHI complex"],["GO%3A0045259","proton-transporting ATP synthase complex"],["GO%3A0098803","respiratory chain complex"],["GO%3A0045271","respiratory chain complex I"]]},{"id":"GO:0030125","l":"clathrin vesicle coat","na":8,"nb":9,"a":[["membrane_organelle/clathrin_coated_vesicle.html","clathrin-coated vesicle"],["membrane_organelle/clathrin_coated_vesicle_membrane.html","clathrin-coated vesicle membrane"],["membrane_organelle/coated_vesicle.html","coated vesicle"],["other/clathrin_coat.html","clathrin coat"],["other/clathrin_coat_of_endocytic_vesicle.html","clathrin coat of endocytic vesicle"],["other/clathrin_coat_of_trans_golgi_network_vesicle.html","clathrin coat of trans-Golgi network vesicle"]],"b":[["ComplexPortal%3ACPX-2792","Clathrin complex"],["GO%3A0030128","clathrin coat of endocytic vesicle"],["GO%3A0030129","clathrin coat of synaptic vesicle"],["GO%3A0030130","clathrin coat of trans-Golgi network vesicle"],["GO%3A0030125","clathrin vesicle coat"],["PANTHER%3APTHR16156","AFTIPHILIN A-RELATED"]]},{"id":"GO:0000329","l":"fungal-type vacuole membrane","na":8,"nb":8,"a":[["membrane_organelle/fungal_type_vacuole.html","fungal-type vacuole"],["membrane_organelle/fungal_type_vacuole_lumen.html","fungal-type vacuole lumen"],["membrane_organelle/fungal_type_vacuole_membrane.html","fungal-type vacuole membrane"],["membrane_organelle/vacuole.html","vacuole"],["other/gator1_complex.html","GATOR1 complex"],["other/gtr1_gtr2_gtpase_complex.html","Gtr1-Gtr2 GTPase complex"]],"b":[["ComplexPortal%3ACPX-3172","EGO complex"],["ComplexPortal%3ACPX-869","FET5-FTH1 high affinity iron exporter complex"],["ComplexPortal%3ACPX-1304","MYO2-VAC17-VAC8 transport complex"],["ComplexPortal%3ACPX-1193","Vacuolar proton translocating ATPase complex, vacuole variant"],["ComplexPortal%3ACPX-5521","Vacuolar SNARE complex SSO1-SEC9-NYV1"],["GO%3A0000329","fungal-type vacuole membrane"]]},{"id":"GO:0098796","l":"membrane protein complex","na":7,"nb":234,"a":[["other/ap_type_membrane_coat_adaptor_complex.html","AP-type membrane coat adaptor complex"],["other/emc_complex.html","EMC complex"],["other/hops_complex.html","HOPS complex"],["other/membrane_coat.html","membrane coat"],["other/retromer_cargo_selective_complex.html","retromer, cargo-selective complex"],["other/retromer_complex.html","retromer complex"]],"b":[["GO%3A0002180","5-lipoxygenase complex"],["GO%3A0170014","ankyrin-1 complex"],["GO%3A0030119","AP-type membrane coat adaptor complex"],["GO%3A0097658","Asi complex"],["GO%3A0062079","ATG2-ATG18 complex"],["GO%3A1990063","Bam protein complex"]]},{"id":"GO:0000813","l":"ESCRT I complex","na":7,"nb":27,"a":[["membrane_organelle/endosome.html","endosome"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/multivesicular_body.html","multivesicular body"],["other/escrt_0_complex.html","ESCRT-0 complex"],["other/escrt_complex.html","ESCRT complex"]],"b":[["ComplexPortal%3ACPX-940","ESCRT-I complex"],["ComplexPortal%3ACPX-7162","ESCRT-I complex, VPS37A-MVB12A variant"],["ComplexPortal%3ACPX-7146","ESCRT-I complex, VPS37A-MVB12B variant"],["ComplexPortal%3ACPX-7181","ESCRT-I complex, VPS37A-UBAP1 variant"],["ComplexPortal%3ACPX-2460","ESCRT-I complex, Vps37A variant"],["ComplexPortal%3ACPX-2505","ESCRT-I complex, VPS37B-MVB12A variant"]]},{"id":"GO:0030120","l":"vesicle coat","na":7,"nb":18,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"],["other/clathrin_vesicle_coat.html","clathrin vesicle coat"],["other/copi_vesicle_coat.html","COPI vesicle coat"],["other/copii_vesicle_coat.html","COPII vesicle coat"],["other/membrane_coat.html","membrane coat"]],"b":[["GO%3A0030125","clathrin vesicle coat"],["GO%3A0030126","COPI vesicle coat"],["GO%3A0030127","COPII vesicle coat"],["GO%3A0030120","vesicle coat"],["PANTHER%3APTHR16156","AFTIPHILIN A-RELATED"],["PANTHER%3APTHR15463","AP1 GAMMA SUBUNIT BINDING PROTEIN 1"]]},{"id":"GO:0009526","l":"plastid envelope","na":7,"nb":11,"a":[["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/plastid_envelope.html","plastid envelope"],["membrane_organelle/plastid_inner_membrane.html","plastid inner membrane"],["membrane_organelle/plastid_intermembrane_space.html","plastid intermembrane space"],["membrane_organelle/plastid_membrane.html","plastid membrane"]],"b":[["GO%3A0033096","amyloplast envelope"],["GO%3A0009941","chloroplast envelope"],["GO%3A0031898","chromoplast envelope"],["GO%3A0033112","cyanelle envelope"],["GO%3A0034425","etioplast envelope"],["GO%3A0009526","plastid envelope"]]},{"id":"GO:0009579","l":"thylakoid","na":7,"nb":11,"a":[["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_lumen.html","plasma membrane-derived thylakoid lumen"],["membrane_organelle/plastid_thylakoid.html","plastid thylakoid"]],"b":[["GO%3A0030075","bacterial thylakoid"],["GO%3A0070116","organellar chromatophore thylakoid"],["GO%3A0031976","plastid thylakoid"],["GO%3A0009579","thylakoid"],["NCBIfam%3ANF014449","photosystem I assembly protein Ycf4"],["NCBIfam%3ATIGR01336","photosystem I core protein PsaB"]]},{"id":"GO:0030136","l":"clathrin-coated vesicle","na":7,"nb":10,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle.html","clathrin-coated endocytic vesicle"],["membrane_organelle/clathrin_coated_endocytic_vesicle_lumen.html","clathrin-coated endocytic vesicle lumen"],["membrane_organelle/clathrin_coated_vesicle.html","clathrin-coated vesicle"],["membrane_organelle/clathrin_coated_vesicle_lumen.html","clathrin-coated vesicle lumen"],["membrane_organelle/clathrin_coated_vesicle_membrane.html","clathrin-coated vesicle membrane"],["membrane_organelle/coated_vesicle.html","coated vesicle"]],"b":[["GO%3A0045334","clathrin-coated endocytic vesicle"],["GO%3A0030136","clathrin-coated vesicle"],["GO%3A0060198","clathrin-sculpted vesicle"],["GO%3A0030140","trans-Golgi network transport vesicle"],["GO%3A0033093","Weibel-Palade body"],["PANTHER%3APTHR10639","CLATHRIN LIGHT CHAIN"]]},{"id":"GO:0009532","l":"plastid stroma","na":7,"nb":9,"a":[["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"],["membrane_organelle/plastid.html","plastid"],["membrane_organelle/plastid_envelope.html","plastid envelope"],["membrane_organelle/plastid_inner_membrane.html","plastid inner membrane"],["membrane_organelle/plastid_stroma.html","plastid stroma"]],"b":[["GO%3A0009570","chloroplast stroma"],["GO%3A0009575","chromoplast stroma"],["GO%3A0034060","cyanelle stroma"],["GO%3A0009577","elaioplast stroma"],["GO%3A0009578","etioplast stroma"],["GO%3A1905506","gerontoplast stroma"]]},{"id":"GO:0009535","l":"chloroplast thylakoid membrane","na":7,"nb":9,"a":[["inclusion/plastoglobule.html","plastoglobule"],["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_membrane.html","chloroplast membrane"],["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"],["membrane_organelle/chloroplast_thylakoid_lumen.html","chloroplast thylakoid lumen"],["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"]],"b":[["GO%3A0009535","chloroplast thylakoid membrane"],["PANTHER%3APTHR34048","LOW-DENSITY RECEPTOR-LIKE PROTEIN"],["PANTHER%3APTHR35733","OS02G0307800 PROTEIN"],["PANTHER%3APTHR36814","PHOTOSYSTEM I REACTION CENTER SUBUNIT N, CHLOROPLASTIC"],["PANTHER%3APTHR34787","PHOTOSYSTEM I REACTION CENTER SUBUNIT VI-2, CHLOROPLASTIC"],["PANTHER%3APTHR33149","PHOTOSYSTEM II PROTEIN D1"]]},{"id":"GO:0030137","l":"COPI-coated vesicle","na":7,"nb":9,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/copi_coated_vesicle_lumen.html","COPI-coated vesicle lumen"],["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"]],"b":[["GO%3A0030142","COPI-coated Golgi to ER transport vesicle"],["GO%3A0030143","COPI-coated inter-Golgi transport vesicle"],["GO%3A0030137","COPI-coated vesicle"],["PANTHER%3APTHR19876","COATOMER"],["PANTHER%3APTHR10635","COATOMER SUBUNIT BETA"],["PANTHER%3APTHR10121","COATOMER SUBUNIT DELTA"]]},{"id":"GO:0009274","l":"peptidoglycan-based cell wall","na":7,"nb":8,"a":[["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"],["appendage/prostheca.html","prostheca"],["division_machinery/elongasome.html","elongasome"],["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]],"b":[["GO%3A0009276","Gram-negative-bacterium-type cell wall"],["GO%3A0009275","Gram-positive-bacterium-type cell wall"],["GO%3A0009274","peptidoglycan-based cell wall"],["NCBIfam%3ANF007061","bifunctional glycosyl transferase/transpeptidase"],["NCBIfam%3ATIGR03656","heme uptake protein IsdC"],["NCBIfam%3ATIGR02070","monofunctional biosynthetic peptidoglycan transglycosylase"]]},{"id":"NCBITaxon:565050","l":"Caulobacter vibrioides NA1000","na":7,"nb":8,"a":[["appendage/prostheca.html","prostheca"],["appendage/stalk_crossband.html","stalk crossband"],["appendage/tad_pilus.html","Tad pilus"],["cytoskeleton/bactofilin_filament.html","bactofilin filament"],["cytoskeleton/cytoophidium.html","cytoophidium"],["other/holdfast.html","holdfast"]],"b":[["Pfam%3APF02767","DNA polymerase III beta subunit, central domain"],["Pfam%3APF02768","DNA polymerase III beta subunit, C-terminal domain"],["Pfam%3APF00712","DNA polymerase III beta subunit, N-terminal domain"],["Pfam%3APF21249","GyrB, hook"],["Pfam%3APF07378","Flagellar protein FlbT"],["Pfam%3APF03748","Flagellar basal body-associated protein FliL"]]},{"id":"GO:0030665","l":"clathrin-coated vesicle membrane","na":7,"nb":7,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle_membrane.html","clathrin-coated endocytic vesicle membrane"],["membrane_organelle/clathrin_coated_vesicle.html","clathrin-coated vesicle"],["membrane_organelle/clathrin_coated_vesicle_lumen.html","clathrin-coated vesicle lumen"],["membrane_organelle/clathrin_coated_vesicle_membrane.html","clathrin-coated vesicle membrane"],["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"]],"b":[["GO%3A0030669","clathrin-coated endocytic vesicle membrane"],["GO%3A0030665","clathrin-coated vesicle membrane"],["GO%3A0060201","clathrin-sculpted acetylcholine transport vesicle membrane"],["GO%3A0061202","clathrin-sculpted gamma-aminobutyric acid transport vesicle membrane"],["GO%3A0060203","clathrin-sculpted glutamate transport vesicle membrane"],["GO%3A0070083","clathrin-sculpted monoamine transport vesicle membrane"]]},{"id":"GO:0098800","l":"inner mitochondrial membrane protein complex","na":6,"nb":88,"a":[["other/micos_complex.html","MICOS complex"],["other/mitochondrial_inner_membrane_peptidase_complex.html","mitochondrial inner membrane peptidase complex"],["other/mitochondrial_prohibitin_complex.html","mitochondrial prohibitin complex"],["other/pam_complex_tim23_associated_import_motor.html","PAM complex, Tim23 associated import motor"],["other/tim22_mitochondrial_import_inner_membrane_insertion_complex.html","TIM22 mitochondrial import inner membrane insertion complex"],["other/tim23_mitochondrial_import_inner_membrane_translocase_complex.html","TIM23 mitochondrial import inner membrane translocase complex"]],"b":[["ComplexPortal%3ACPX-6154","Mitochondrial pyruvate carrier complex"],["ComplexPortal%3ACPX-8068","Mitochondrial pyruvate carrier complex"],["ComplexPortal%3ACPX-8062","Mitochondrial pyruvate carrier complex, testis variant"],["ComplexPortal%3ACPX-302","Mitochondrial pyruvate carrier, fermentative isoform"],["ComplexPortal%3ACPX-303","Mitochondrial pyruvate carrier, respiratory isoform"],["GO%3A0032478","heterotetrameric polyprenyl diphosphate synthase complex"]]},{"id":"GO:0005740","l":"mitochondrial envelope","na":6,"nb":54,"a":[["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrial_intermembrane_space.html","mitochondrial intermembrane space"],["membrane_organelle/mitochondrial_membrane.html","mitochondrial membrane"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"]],"b":[["GO%3A0005740","mitochondrial envelope"],["Pfam%3APF01215","Cytochrome c oxidase subunit Vb"],["PANTHER%3APTHR15487","ADP-RIBOSYLATION FACTOR-LIKE PROTEIN 2-BINDING PROTEIN"],["PANTHER%3APTHR36959","ALTERED INHERITANCE OF MITOCHONDRIA PROTEIN 24, MITOCHONDRIAL"],["PANTHER%3APTHR28202","ASSEMBLY FACTOR CBP4"],["PANTHER%3APTHR37278","AUTOPHAGY-RELATED PROTEIN 33-RELATED"]]},{"id":"GO:0009507","l":"chloroplast","na":6,"nb":32,"a":[["inclusion/plastoglobule.html","plastoglobule"],["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"],["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"],["other/pyrenoid.html","pyrenoid"]],"b":[["ComplexPortal%3ACPX-1337","WHY1 complex"],["ComplexPortal%3ACPX-3586","WHY3 complex"],["GO%3A0009507","chloroplast"],["NCBIfam%3ANF018787","photosystem II reaction center protein PsbW"],["PANTHER%3APTHR31899","BETA-CAROTENE 3-HYDROXYLASE 1, CHLOROPLASTIC"],["PANTHER%3APTHR36404","EMBRYO DEFECTIVE 2737"]]},{"id":"GO:0005802","l":"trans-Golgi network","na":6,"nb":24,"a":[["membrane_organelle/trans_golgi_network.html","trans-Golgi network"],["membrane_organelle/trans_golgi_network_membrane.html","trans-Golgi network membrane"],["membrane_organelle/trans_golgi_network_transport_vesicle_membrane.html","trans-Golgi network transport vesicle membrane"],["other/clathrin_coat_of_trans_golgi_network_vesicle.html","clathrin coat of trans-Golgi network vesicle"],["other/exomer_complex.html","exomer complex"],["other/garp_complex.html","GARP complex"]],"b":[["ComplexPortal%3ACPX-5151","AP-4 Adaptor complex"],["ComplexPortal%3ACPX-5154","AP-4 Adaptor complex"],["ComplexPortal%3ACPX-8167","OSBPL9-OSBPL10 oxysterol-binding protein-related complex"],["ComplexPortal%3ACPX-8168","OSBPL9-OSBPL11 oxysterol-binding protein-related complex"],["GO%3A0005802","trans-Golgi network"],["InterPro%3AIPR028129","Consortin, C-terminal domain"]]},{"id":"GO:0042995","l":"cell projection","na":6,"nb":18,"a":[["appendage/archaeal_cannula.html","archaeal cannula"],["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/attachment_organelle.html","attachment organelle"],["appendage/hamus.html","hamus"],["appendage/prostheca.html","prostheca"]],"b":[["GO%3A0097589","archaeal-type flagellum"],["GO%3A0009288","bacterial-type flagellum"],["GO%3A0042995","cell projection"],["GO%3A0085035","haustorium"],["GO%3A0009289","pilus"],["GO%3A0090395","plant cell papilla"]]},{"id":"GO:0030150","l":"protein import into mitochondrial matrix","na":6,"nb":17,"a":[["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"],["other/mitochondrial_outer_membrane_translocase_complex.html","mitochondrial outer membrane translocase complex"],["other/pam_complex_tim23_associated_import_motor.html","PAM complex, Tim23 associated import motor"],["other/tim23_mitochondrial_import_inner_membrane_translocase_complex.html","TIM23 mitochondrial import inner membrane translocase complex"]],"b":[["ComplexPortal%3ACPX-1744","Mitochondrial sorting and assembly machinery complex"],["ComplexPortal%3ACPX-6127","TIM23 mitochondrial inner membrane pre-sequence translocase complex, sort variant"],["GO%3A0030150","protein import into mitochondrial matrix"],["Pfam%3APF02064","MAS20 protein import receptor"],["Pfam%3APF08294","TIM21"],["PANTHER%3APTHR20922","DNL-TYPE ZINC FINGER PROTEIN"]]},{"id":"GO:0005635","l":"nuclear envelope","na":6,"nb":16,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nuclear_envelope_lumen.html","nuclear envelope lumen"],["membrane_organelle/nuclear_inner_membrane.html","nuclear inner membrane"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"],["membrane_organelle/nucleus.html","nucleus"],["other/nuclear_pore.html","nuclear pore"]],"b":[["ComplexPortal%3ACPX-1068","Importin complex, KAP60-KAP95"],["ComplexPortal%3ACPX-1287","MPS2-BBP1 spindle pole body anchor complex"],["ComplexPortal%3ACPX-2568","Nuclear pore complex"],["ComplexPortal%3ACPX-4474","Nuclear pore complex"],["ComplexPortal%3ACPX-824","Nuclear pore complex"],["ComplexPortal%3ACPX-873","Nuclear pore complex"]]},{"id":"GO:0005742","l":"mitochondrial outer membrane translocase complex","na":6,"nb":16,"a":[["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"],["other/mitochondrial_outer_membrane_translocase_complex.html","mitochondrial outer membrane translocase complex"],["other/sam_complex.html","SAM complex"],["other/tim23_mitochondrial_import_inner_membrane_translocase_complex.html","TIM23 mitochondrial import inner membrane translocase complex"]],"b":[["ComplexPortal%3ACPX-473","TOM40 mitochondrial outer membrane translocase core complex"],["ComplexPortal%3ACPX-474","TOM40 mitochondrial outer membrane translocase holocomplex"],["GO%3A0005742","mitochondrial outer membrane translocase complex"],["GO%3A0001401","SAM complex"],["GO%3A0140596","TOM complex"],["Pfam%3APF02064","MAS20 protein import receptor"]]},{"id":"GO:0030127","l":"COPII vesicle coat","na":6,"nb":16,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"],["membrane_organelle/endoplasmic_reticulum_membrane.html","endoplasmic reticulum membrane"],["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"],["other/copii_vesicle_coat.html","COPII vesicle coat"],["other/vesicle_coat.html","vesicle coat"]],"b":[["ComplexPortal%3ACPX-2360","COPII vesicle coat complex"],["ComplexPortal%3ACPX-2400","COPII vesicle coat complex"],["ComplexPortal%3ACPX-2523","COPII vesicle coat complex"],["ComplexPortal%3ACPX-1341","SEC23-LST1 COPII cargo recruitment complex"],["GO%3A0030127","COPII vesicle coat"],["NCBIfam%3ANF016683","Sec23/Sec24 zinc finger-containing protein"]]},{"id":"GO:0005686","l":"U2 snRNP","na":6,"nb":14,"a":[["ribonucleoprotein/u2_snrnp.html","U2 snRNP"],["ribonucleoprotein/u2_type_catalytic_step_1_spliceosome.html","U2-type catalytic step 1 spliceosome"],["ribonucleoprotein/u2_type_catalytic_step_2_spliceosome.html","U2-type catalytic step 2 spliceosome"],["ribonucleoprotein/u2_type_post_mrna_release_spliceosomal_complex.html","U2-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u2_type_precatalytic_spliceosome.html","U2-type precatalytic spliceosome"],["ribonucleoprotein/u2_type_prespliceosome.html","U2-type prespliceosome"]],"b":[["ComplexPortal%3ACPX-43","Sm complex"],["ComplexPortal%3ACPX-6033","Sm complex"],["ComplexPortal%3ACPX-2539","U2 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-26","U2 small nuclear ribonucleoprotein complex"],["GO%3A0005686","U2 snRNP"],["PANTHER%3APTHR13120","PHD FINGER-LIKE DOMAIN-CONTAINING PROTEIN 5A"]]},{"id":"GO:0071985","l":"multivesicular body sorting pathway","na":14,"nb":6,"a":[["membrane_organelle/endosome_lumen.html","endosome lumen"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/late_endosome_lumen.html","late endosome lumen"],["membrane_organelle/late_endosome_membrane.html","late endosome membrane"],["membrane_organelle/multivesicular_body.html","multivesicular body"]],"b":[["ComplexPortal%3ACPX-329","ESCRT-III complex"],["ComplexPortal%3ACPX-332","ESCRT-III complex, variant Chmp1b1"],["ComplexPortal%3ACPX-333","ESCRT-III complex, variant Chmp1b2"],["GO%3A0032509","endosome transport via multivesicular body sorting pathway"],["GO%3A0071985","multivesicular body sorting pathway"],["Pfam%3APF05871","ESCRT-II complex subunit"]]},{"id":"GO:0005689","l":"U12-type spliceosomal complex","na":6,"nb":13,"a":[["ribonucleoprotein/u12_type_catalytic_step_1_spliceosome.html","U12-type catalytic step 1 spliceosome"],["ribonucleoprotein/u12_type_catalytic_step_2_spliceosome.html","U12-type catalytic step 2 spliceosome"],["ribonucleoprotein/u12_type_post_mrna_release_spliceosomal_complex.html","U12-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u12_type_post_spliceosomal_complex.html","U12-type post-spliceosomal complex"],["ribonucleoprotein/u12_type_precatalytic_spliceosome.html","U12-type precatalytic spliceosome"],["ribonucleoprotein/u12_type_prespliceosome.html","U12-type prespliceosome"]],"b":[["ComplexPortal%3ACPX-26485","U11 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-26487","U12 small nuclear ribonucleoprotein complex"],["GO%3A0071017","U12-type catalytic step 1 spliceosome"],["GO%3A0071018","U12-type catalytic step 2 spliceosome"],["GO%3A0071019","U12-type post-mRNA release spliceosomal complex"],["GO%3A0071022","U12-type post-spliceosomal complex"]]},{"id":"GO:0033104","l":"type VI protein secretion system complex","na":6,"nb":13,"a":[["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"],["secretion_system/type_vi_secretion_system_baseplate.html","type VI secretion system baseplate"],["secretion_system/type_vi_secretion_system_contractile_sheath.html","type VI secretion system contractile sheath"],["secretion_system/type_vi_secretion_system_hcp_tube.html","type VI secretion system Hcp tube"],["secretion_system/type_vi_secretion_system_membrane_complex.html","type VI secretion system membrane complex"],["secretion_system/type_vi_secretion_system_vgrg_paar_spike_complex.html","type VI secretion system VgrG/PAAR spike complex"]],"b":[["GO%3A0033104","type VI protein secretion system complex"],["NCBIfam%3ANF053769","CIS1 family contractile injection system inner tube protein"],["NCBIfam%3ANF053768","CIS12 family contractile injection system protein"],["NCBIfam%3ANF053767","CIS13 family contractile injection system protein"],["NCBIfam%3ANF053770","CIS5 family contractile injection system inner tube adaptor"],["NCBIfam%3ATIGR03345","type VI secretion system ATPase TssH"]]},{"id":"GO:0042170","l":"plastid membrane","na":6,"nb":13,"a":[["membrane_organelle/chloroplast_membrane.html","chloroplast membrane"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/plastid.html","plastid"],["membrane_organelle/plastid_inner_membrane.html","plastid inner membrane"],["membrane_organelle/plastid_membrane.html","plastid membrane"],["membrane_organelle/plastid_outer_membrane.html","plastid outer membrane"]],"b":[["GO%3A0033097","amyloplast membrane"],["GO%3A0160211","apicoplast membrane"],["GO%3A0031969","chloroplast membrane"],["GO%3A0046862","chromoplast membrane"],["GO%3A0033113","cyanelle membrane"],["GO%3A7770040","epiplastidial membrane"]]},{"id":"GO:0005775","l":"vacuolar lumen","na":6,"nb":10,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["membrane_organelle/contractile_vacuole_lumen.html","contractile vacuole lumen"],["membrane_organelle/fungal_type_vacuole_lumen.html","fungal-type vacuole lumen"],["membrane_organelle/vacuolar_lumen.html","vacuolar lumen"],["membrane_organelle/vacuolar_membrane.html","vacuolar membrane"],["membrane_organelle/vacuole.html","vacuole"]],"b":[["GO%3A0120282","autolysosome lumen"],["GO%3A0034423","autophagosome lumen"],["GO%3A0035578","azurophil granule lumen"],["GO%3A1904856","cytolytic granule lumen"],["GO%3A0160318","endolysosomal intralumenal vesicle lumen"],["GO%3A0000328","fungal-type vacuole lumen"]]},{"id":"NCBITaxon:2762","l":"Cyanophora paradoxa","na":10,"nb":6,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"]],"b":[["Pfam%3APF06799","Conserved in the green lineage and diatoms 27"],["Pfam%3APF06868","Protein of unknown function (DUF1257)"],["Pfam%3APF10693","Protein of unknown function (DUF2499)"],["Pfam%3APF10726","Protein of function (DUF2518)"],["Pfam%3APF04481","Protein of unknown function (DUF561)"],["Pfam%3APF05421","Protein of unknown function (DUF751)"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":9,"nb":6,"a":[["membrane_organelle/apicoplast.html","apicoplast"],["membrane_organelle/apicoplast_membrane.html","apicoplast membrane"],["membrane_organelle/exoneme.html","exoneme"],["membrane_organelle/food_vacuole.html","food vacuole"],["membrane_organelle/inner_membrane_pellicle_complex.html","inner membrane pellicle complex"],["membrane_organelle/maurer_s_cleft.html","Maurer's cleft"]],"b":[["IDPO%3A0000037","molecular recognition display site"],["Pfam%3APF05403","Plasmodium histidine-rich protein (HRPII/III)"],["Pfam%3APF17986","EMP3-KAHRP-like N-terminal domain"],["Pfam%3APF03805","Cytoadherence-linked asexual protein"],["Pfam%3APF06589","Circumsporozoite-related antigen (CRA)"],["TED%3AAF-Q9U431-F1-model_v4_TED01","TED novel fold AF-Q9U431-F1-model_v4_TED01"]]},{"id":"GO:0038202","l":"TORC1 signaling","na":6,"nb":7,"a":[["other/gator1_complex.html","GATOR1 complex"],["other/gator2_complex.html","GATOR2 complex"],["other/gtr1_gtr2_gtpase_complex.html","Gtr1-Gtr2 GTPase complex"],["other/ragulator_complex.html","Ragulator complex"],["other/seh1_associated_complex.html","Seh1-associated complex"],["other/torc1_complex.html","TORC1 complex"]],"b":[["ComplexPortal%3ACPX-26528","Ragulator complex"],["ComplexPortal%3ACPX-2709","Ragulator complex"],["ComplexPortal%3ACPX-4741","Ragulator complex"],["ComplexPortal%3ACPX-4761","Ragulator complex"],["ComplexPortal%3ACPX-2265","TORC1 complex"],["GO%3A0038202","TORC1 signaling"]]},{"id":"GO:0005784","l":"Sec61 translocon complex","na":6,"nb":6,"a":[["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"],["membrane_organelle/endoplasmic_reticulum_lumen.html","endoplasmic reticulum lumen"],["membrane_organelle/endoplasmic_reticulum_membrane.html","endoplasmic reticulum membrane"],["other/emc_complex.html","EMC complex"],["other/endoplasmic_reticulum_sec_complex.html","endoplasmic reticulum Sec complex"],["other/sec61_translocon_complex.html","Sec61 translocon complex"]],"b":[["ComplexPortal%3ACPX-1833","SEC61 protein-conducting channel complex"],["ComplexPortal%3ACPX-8073","SEC61 protein-conducting channel complex, SEC1A1 variant"],["ComplexPortal%3ACPX-8169","SEC61 protein-conducting channel complex, SEC1A2 variant"],["ComplexPortal%3ACPX-2647","SEC61 translocon complex, SEC61G1 variant"],["ComplexPortal%3ACPX-2650","SEC61 translocon complex, SEC61G2 variant"],["GO%3A0005784","Sec61 translocon complex"]]},{"id":"GO:0009706","l":"chloroplast inner membrane","na":6,"nb":6,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_inner_membrane.html","chloroplast inner membrane"],["membrane_organelle/chloroplast_intermembrane_space.html","chloroplast intermembrane space"],["membrane_organelle/chloroplast_membrane.html","chloroplast membrane"],["other/tic_complex.html","Tic complex"]],"b":[["GO%3A0009706","chloroplast inner membrane"],["PANTHER%3APTHR31038","EXPRESSED PROTEIN-RELATED"],["PANTHER%3APTHR34048","LOW-DENSITY RECEPTOR-LIKE PROTEIN"],["PANTHER%3APTHR36317","PROTEIN MULTIPLE CHLOROPLAST DIVISION SITE 1"],["PANTHER%3APTHR47296","PROTEIN TIC 40, CHLOROPLASTIC"],["PANTHER%3APTHR37755","PROTEIN TIC 56, CHLOROPLASTIC"]]},{"id":"GO:0030662","l":"coated vesicle membrane","na":6,"nb":6,"a":[["membrane_organelle/clathrin_coated_vesicle_membrane.html","clathrin-coated vesicle membrane"],["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"],["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"],["other/vesicle_coat.html","vesicle coat"]],"b":[["GO%3A0030665","clathrin-coated vesicle membrane"],["GO%3A0030662","coated vesicle membrane"],["GO%3A0030663","COPI-coated vesicle membrane"],["GO%3A0012507","ER to Golgi transport vesicle membrane"],["PANTHER%3APTHR45837","VESICLE-TRAFFICKING PROTEIN SEC22B"],["PANTHER%3APTHR21230","VESICLE TRANSPORT V-SNARE PROTEIN VTI1-RELATED"]]},{"id":"GO:0036452","l":"ESCRT complex","na":6,"nb":6,"a":[["other/escrt_0_complex.html","ESCRT-0 complex"],["other/escrt_complex.html","ESCRT complex"],["other/escrt_i_complex.html","ESCRT I complex"],["other/escrt_ii_complex.html","ESCRT II complex"],["other/escrt_iii_complex.html","ESCRT III complex"],["other/escrt_iv_complex.html","ESCRT IV complex"]],"b":[["GO%3A0033565","ESCRT-0 complex"],["GO%3A0036452","ESCRT complex"],["GO%3A0000813","ESCRT I complex"],["GO%3A0000814","ESCRT II complex"],["GO%3A0000815","ESCRT III complex"],["GO%3A1990621","ESCRT IV complex"]]},{"id":"NCBITaxon:5693","l":"Trypanosoma cruzi","na":6,"nb":6,"a":[["membrane_organelle/contractile_vacuole.html","contractile vacuole"],["membrane_organelle/early_endosome.html","early endosome"],["membrane_organelle/early_endosome_lumen.html","early endosome lumen"],["membrane_organelle/early_endosome_membrane.html","early endosome membrane"],["membrane_organelle/reservosome.html","reservosome"],["other/cytostome.html","cytostome"]],"b":[["Pfam%3APF22592","FCaBP EF-hand domain"],["Pfam%3APF09394","Chagasin family peptidase inhibitor I42"],["Pfam%3APF12131","Protein of unknown function (DUF3586)"],["Pfam%3APF11052","Trans-sialidase of Trypanosoma hydrophobic C-terminal"],["Pfam%3APF13859","BNR repeat-like domain"],["TED%3AAF-A0A2V2XJY2-F1-model_v4_TED02","TED novel fold AF-A0A2V2XJY2-F1-model_v4_TED02"]]},{"id":"GO:0005634","l":"nucleus","na":5,"nb":1580,"a":[["membrane_organelle/macronucleus.html","macronucleus"],["membrane_organelle/micronucleus.html","micronucleus"],["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nuclear_lumen.html","nuclear lumen"],["membrane_organelle/nucleus.html","nucleus"]],"b":[["ComplexPortal%3ACPX-9003","20S immunoproteasome complex"],["ComplexPortal%3ACPX-2829","ACF chromatin remodeling complex"],["ComplexPortal%3ACPX-434","ACF chromatin remodeling complex"],["ComplexPortal%3ACPX-444","ACF chromatin remodeling complex"],["ComplexPortal%3ACPX-2824","ADA complex"],["ComplexPortal%3ACPX-608","ADA complex"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":5,"nb":297,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"],["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]],"b":[["IDPO%3A0000002","disorder"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000045","phosphorylation display site"],["IDPO%3A0000059","self-inhibition"],["Pfam%3APF17837","4'-phosphopantetheinyl transferase N-terminal domain"]]},{"id":"GO:0043232","l":"intracellular membraneless organelle","na":5,"nb":237,"a":[["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/contractile_vacuole_complex.html","contractile vacuole complex"],["microcompartment/bacterial_microcompartment.html","bacterial microcompartment"],["other/phage_nucleus.html","phage nucleus"],["other/pyrenoid.html","pyrenoid"]],"b":[["GO%3A0098682","arciform density"],["GO%3A0005818","aster"],["GO%3A0031469","bacterial microcompartment"],["GO%3A0043590","bacterial nucleoid"],["GO%3A0097727","blepharoplast"],["GO%3A0005814","centriole"]]},{"id":"GO:0005739","l":"mitochondrion","na":5,"nb":233,"a":[["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_matrix.html","mitochondrial matrix"],["membrane_organelle/mitochondrial_membrane.html","mitochondrial membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"],["nucleoid/kinetoplast.html","kinetoplast"]],"b":[["ComplexPortal%3ACPX-3034","Acetolactate synthase complex"],["ComplexPortal%3ACPX-1331","bI3 intron splicing factor complex"],["ComplexPortal%3ACPX-1314","bI4 intron splicing factor complex"],["ComplexPortal%3ACPX-6928","BOL1-GRX5 iron-sulfur cluster assembly complex"],["ComplexPortal%3ACPX-6930","BOL3-GRX5 iron-sulfur cluster assembly complex"],["ComplexPortal%3ACPX-384","CBP3-CBP6 complex"]]},{"id":"GO:0015979","l":"photosynthesis","na":5,"nb":146,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"],["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"]],"b":[["GO%3A0015979","photosynthesis"],["NCBIfam%3ATIGR01337","allophycocyanin subunit beta"],["NCBIfam%3ATIGR03056","alpha/beta fold hydrolase BchO"],["NCBIfam%3ANF013497","Apocytochrome F, C-terminal"],["NCBIfam%3ANF014391","Bacteriochlorophyll A protein"],["NCBIfam%3ANF058502","C-phycocyanin alpha-cysteine-84 phycocyanobilin lyase subunit CpcE"]]},{"id":"GO:0070013","l":"intracellular organelle lumen","na":5,"nb":124,"a":[["membrane_organelle/endosome_lumen.html","endosome lumen"],["membrane_organelle/golgi_lumen.html","Golgi lumen"],["membrane_organelle/mitochondrial_matrix.html","mitochondrial matrix"],["membrane_organelle/nuclear_lumen.html","nuclear lumen"],["membrane_organelle/vacuolar_lumen.html","vacuolar lumen"]],"b":[["GO%3A0033985","acidocalcisome lumen"],["GO%3A0060205","cytoplasmic vesicle lumen"],["GO%3A0071682","endocytic vesicle lumen"],["GO%3A0005788","endoplasmic reticulum lumen"],["GO%3A0160315","endosomal intralumenal vesicle lumen"],["GO%3A0031904","endosome lumen"]]},{"id":"GO:0005929","l":"cilium","na":5,"nb":101,"a":[["appendage/ciliary_membrane.html","ciliary membrane"],["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"],["appendage/mastigoneme.html","mastigoneme"],["cytoskeleton/ciliary_basal_body.html","ciliary basal body"]],"b":[["ComplexPortal%3ACPX-2747","BBSome complex"],["ComplexPortal%3ACPX-428","BBSome complex"],["ComplexPortal%3ACPX-5001","CPLANE complex"],["ComplexPortal%3ACPX-5026","CPLANE complex"],["ComplexPortal%3ACPX-26357","Dynein-2 complex, light-chain variant 1"],["ComplexPortal%3ACPX-26360","Dynein-2 complex, light-chain variant 2"]]},{"id":"GO:0005759","l":"mitochondrial matrix","na":5,"nb":55,"a":[["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrial_matrix.html","mitochondrial matrix"],["membrane_organelle/mitochondrion.html","mitochondrion"],["nucleoid/mitochondrial_nucleoid.html","mitochondrial nucleoid"],["other/pam_complex_tim23_associated_import_motor.html","PAM complex, Tim23 associated import motor"]],"b":[["ComplexPortal%3ACPX-865","Electron transfer flavoprotein complex"],["ComplexPortal%3ACPX-6957","GRX5 iron-sulfur cluster assembly homodimer complex"],["ComplexPortal%3ACPX-6236","Methylcrotonyl-CoA carboxylase complex"],["ComplexPortal%3ACPX-2216","Mitochondrial 2-oxoisovalerate dehydrogenase complex"],["ComplexPortal%3ACPX-26685","Mitochondrial 2-oxoisovalerate dehydrogenase complex"],["ComplexPortal%3ACPX-949","Mitochondrial 3-oxoacyl-[acyl-carrier-protein] reductase"]]},{"id":"GO:0045259","l":"proton-transporting ATP synthase complex","na":5,"nb":52,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["ComplexPortal%3ACPX-25764","Mitochondrial proton translocating ATP synthase complex"],["ComplexPortal%3ACPX-3281","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-6151","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-8618","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-8619","Mitochondrial proton-transporting ATP synthase complex, testis-specific variant"]]},{"id":"GO:0005777","l":"peroxisome","na":5,"nb":34,"a":[["membrane_organelle/glycosome.html","glycosome"],["membrane_organelle/glyoxysome.html","glyoxysome"],["membrane_organelle/peroxisomal_matrix.html","peroxisomal matrix"],["membrane_organelle/peroxisomal_membrane.html","peroxisomal membrane"],["membrane_organelle/peroxisome.html","peroxisome"]],"b":[["ComplexPortal%3ACPX-4742","Catalase complex"],["ComplexPortal%3ACPX-4767","Catalase complex"],["ComplexPortal%3ACPX-4768","Catalase complex"],["GO%3A0020015","glycosome"],["GO%3A0009514","glyoxysome"],["GO%3A0042580","mannosome"]]},{"id":"GO:0009289","l":"pilus","na":5,"nb":31,"a":[["appendage/curli.html","curli"],["appendage/p_pilus.html","P pilus"],["appendage/pilus.html","pilus"],["appendage/type_i_pilus.html","type I pilus"],["appendage/type_iv_pilus.html","type IV pilus"]],"b":[["GO%3A0098774","curli"],["GO%3A0009289","pilus"],["GO%3A0140621","type I pilus"],["GO%3A0044096","type IV pilus"],["NCBIfam%3ANF058558","amyloid-like fimbrin subunit FapC"],["NCBIfam%3ANF016344","CS1 type fimbrial major subunit"]]},{"id":"GO:0005778","l":"peroxisomal membrane","na":5,"nb":29,"a":[["membrane_organelle/glycosome_membrane.html","glycosome membrane"],["membrane_organelle/glyoxysomal_membrane.html","glyoxysomal membrane"],["membrane_organelle/peroxisomal_matrix.html","peroxisomal matrix"],["membrane_organelle/peroxisomal_membrane.html","peroxisomal membrane"],["membrane_organelle/peroxisome.html","peroxisome"]],"b":[["ComplexPortal%3ACPX-1730","Peroxisomal ABC transporter complex PXA1-PXA2"],["ComplexPortal%3ACPX-10001","Peroxisomal PEX13-PEX14 docking complex"],["ComplexPortal%3ACPX-10021","Peroxisomal PEX13-PEX14 docking complex"],["ComplexPortal%3ACPX-1904","Peroxisomal PEX13-PEX14-PEX17 docking complex"],["ComplexPortal%3ACPX-1905","Peroxisomal PEX7-PEX18 receptor complex"],["ComplexPortal%3ACPX-1906","Peroxisomal PEX7-PEX21 receptor complex"]]},{"id":"GO:0000228","l":"nuclear chromosome","na":5,"nb":26,"a":[["membrane_organelle/macronucleus.html","macronucleus"],["membrane_organelle/micronucleus.html","micronucleus"],["membrane_organelle/nuclear_lumen.html","nuclear lumen"],["other/coma_complex.html","COMA complex"],["other/nuclear_chromosome.html","nuclear chromosome"]],"b":[["ComplexPortal%3ACPX-2340","Male specific lethal complex"],["ComplexPortal%3ACPX-1288","MEI5-SAE3 recombination assembly factor complex"],["ComplexPortal%3ACPX-26610","slx1-slx4 structure-specific endonuclease complex"],["ComplexPortal%3ACPX-3159","SLX1-SLX4 structure-specific endonuclease complex"],["ComplexPortal%3ACPX-8175","SLX1-SLX4 structure-specific endonuclease complex"],["ComplexPortal%3ACPX-8093","SWI5-SFR1 recombination accessory factor complex"]]},{"id":"GO:0005684","l":"U2-type spliceosomal complex","na":5,"nb":26,"a":[["ribonucleoprotein/u2_type_catalytic_step_1_spliceosome.html","U2-type catalytic step 1 spliceosome"],["ribonucleoprotein/u2_type_catalytic_step_2_spliceosome.html","U2-type catalytic step 2 spliceosome"],["ribonucleoprotein/u2_type_post_mrna_release_spliceosomal_complex.html","U2-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u2_type_precatalytic_spliceosome.html","U2-type precatalytic spliceosome"],["ribonucleoprotein/u2_type_prespliceosome.html","U2-type prespliceosome"]],"b":[["ComplexPortal%3ACPX-2565","SF3A complex"],["ComplexPortal%3ACPX-1647","SF3B complex"],["ComplexPortal%3ACPX-2227","SF3B complex"],["GO%3A0000243","commitment complex"],["GO%3A0071006","U2-type catalytic step 1 spliceosome"],["GO%3A0071007","U2-type catalytic step 2 spliceosome"]]},{"id":"NCBITaxon:5811","l":"Toxoplasma gondii","na":18,"nb":5,"a":[["cytoskeleton/conoid.html","conoid"],["cytoskeleton/intraconoid_microtubule.html","intraconoid microtubule"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["cytoskeleton/subpellicular_microtubule.html","subpellicular microtubule"],["membrane_organelle/apicomplexan_dense_granule.html","apicomplexan dense granule"],["membrane_organelle/apicomplexan_dense_granule_membrane.html","apicomplexan dense granule membrane"]],"b":[["Pfam%3APF24633","Domain of unknown function (DUF7630)"],["Pfam%3APF24634","Domain of unknown function (DUF7631)"],["Pfam%3APF05084","Granule antigen protein (GRA6)"],["Pfam%3APF14531","Kinase-like"],["Pfam%3APF10564","Sialic-acid binding micronemal adhesive repeat"]]},{"id":"GO:0005758","l":"mitochondrial intermembrane space","na":5,"nb":17,"a":[["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrial_intermembrane_space.html","mitochondrial intermembrane space"],["membrane_organelle/mitochondrial_membrane.html","mitochondrial membrane"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"]],"b":[["ComplexPortal%3ACPX-2371","TIM8-TIM13 mitochondrial intermembrane space protein transporter complex"],["ComplexPortal%3ACPX-6131","TIM8A-TIM13 mitochondrial intermembrane space protein transporter complex"],["ComplexPortal%3ACPX-6132","TIM8B-TIM13 mitochondrial intermembrane space protein transporter complex"],["ComplexPortal%3ACPX-2268","TIM9-TIM10 mitochondrial intermembrane space protein transporter complex"],["ComplexPortal%3ACPX-6125","TIM9-TIM10 mitochondrial intermembrane space protein transporter complex"],["ComplexPortal%3ACPX-6126","TIM9-TIM10-TIM10B mitochondrial intermembrane space protein transporter complex"]]},{"id":"GO:0009512","l":"cytochrome b6f complex","na":5,"nb":12,"a":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["GO%3A0009512","cytochrome b6f complex"],["NCBIfam%3ANF014576","cytochrome b6-f complex subunit PetG"],["NCBIfam%3ANF016971","cytochrome b6-f complex subunit PetL"],["NCBIfam%3ANF015687","cytochrome b6-f complex subunit PetN"],["NCBIfam%3ANF050003","cytochrome b6f subunit PetP"],["NCBIfam%3ANF019653","PetM family cytochrome b6-f complex subunit 7"]]},{"id":"GO:0005637","l":"nuclear inner membrane","na":5,"nb":11,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nuclear_envelope_lumen.html","nuclear envelope lumen"],["membrane_organelle/nuclear_inner_membrane.html","nuclear inner membrane"],["membrane_organelle/nuclear_lumen.html","nuclear lumen"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"]],"b":[["ComplexPortal%3ACPX-3248","Asi ubiquitin ligase complex"],["GO%3A0005637","nuclear inner membrane"],["InterPro%3AIPR018861","Transmembrane protein 201, C-terminal"],["NCBIfam%3ANF021959","DUF2448 domain-containing protein"],["PANTHER%3APTHR38044","BOUQUET FORMATION PROTEIN 4"],["PANTHER%3APTHR31488","DPY-19-LIKE 1, LIKE (H. SAPIENS)"]]},{"id":"GO:0005688","l":"U6 snRNP","na":5,"nb":10,"a":[["ribonucleoprotein/u2_type_catalytic_step_1_spliceosome.html","U2-type catalytic step 1 spliceosome"],["ribonucleoprotein/u2_type_catalytic_step_2_spliceosome.html","U2-type catalytic step 2 spliceosome"],["ribonucleoprotein/u2_type_post_mrna_release_spliceosomal_complex.html","U2-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u4_u6_snrnp.html","U4/U6 snRNP"],["ribonucleoprotein/u6_snrnp.html","U6 snRNP"]],"b":[["ComplexPortal%3ACPX-44","LSM2-8 complex"],["ComplexPortal%3ACPX-24","U6 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-26411","U6 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-26415","U6 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-26483","U6 small nuclear ribonucleoprotein complex"],["GO%3A0005688","U6 snRNP"]]},{"id":"GO:0005879","l":"axonemal microtubule","na":5,"nb":10,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"],["cytoskeleton/b_axonemal_microtubule.html","B axonemal microtubule"],["cytoskeleton/c1_axonemal_microtubule.html","C1 axonemal microtubule"],["cytoskeleton/c2_axonemal_microtubule.html","C2 axonemal microtubule"]],"b":[["GO%3A0097649","A axonemal microtubule"],["GO%3A0005879","axonemal microtubule"],["GO%3A0097650","B axonemal microtubule"],["GO%3A1990719","C1 axonemal microtubule"],["GO%3A1990720","C2 axonemal microtubule"],["NCBIfam%3ANF026242","microtubule wall 1/2 piercer family protein"]]},{"id":"GO:0016471","l":"vacuolar proton-transporting V-type ATPase complex","na":5,"nb":9,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v0_domain.html","vacuolar proton-transporting V-type ATPase, V0 domain"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v1_domain.html","vacuolar proton-transporting V-type ATPase, V1 domain"],["membrane_organelle/fungal_type_vacuole_membrane.html","fungal-type vacuole membrane"],["membrane_organelle/vacuolar_membrane.html","vacuolar membrane"]],"b":[["ComplexPortal%3ACPX-1193","Vacuolar proton translocating ATPase complex, vacuole variant"],["GO%3A0046611","lysosomal proton-transporting V-type ATPase complex"],["GO%3A0016471","vacuolar proton-transporting V-type ATPase complex"],["NCBIfam%3ATIGR01042","V-type ATPase subunit A"],["NCBIfam%3ATIGR01040","V-type ATPase subunit B"],["NCBIfam%3ATIGR01100","V-type ATPase subunit C"]]},{"id":"GO:0030135","l":"coated vesicle","na":5,"nb":9,"a":[["membrane_organelle/clathrin_coated_vesicle.html","clathrin-coated vesicle"],["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"],["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"]],"b":[["GO%3A0030136","clathrin-coated vesicle"],["GO%3A0030135","coated vesicle"],["GO%3A0030137","COPI-coated vesicle"],["GO%3A0030134","COPII-coated ER to Golgi transport vesicle"],["PANTHER%3APTHR31975","BUD SITE SELECTION PROTEIN 7-RELATED"],["PANTHER%3APTHR10261","COATOMER SUBUNIT GAMMA"]]},{"id":"GO:0031904","l":"endosome lumen","na":8,"nb":5,"a":[["membrane_organelle/early_endosome_lumen.html","early endosome lumen"],["membrane_organelle/endosome.html","endosome"],["membrane_organelle/endosome_lumen.html","endosome lumen"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/late_endosome_lumen.html","late endosome lumen"]],"b":[["GO%3A0031905","early endosome lumen"],["GO%3A0036021","endolysosome lumen"],["GO%3A0031904","endosome lumen"],["GO%3A0031906","late endosome lumen"],["GO%3A0034777","recycling endosome lumen"]]},{"id":"GO:0009528","l":"plastid inner membrane","na":7,"nb":5,"a":[["membrane_organelle/chloroplast_inner_membrane.html","chloroplast inner membrane"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/organellar_chromatophore_inner_membrane.html","organellar chromatophore inner membrane"],["membrane_organelle/plastid_envelope.html","plastid envelope"],["membrane_organelle/plastid_inner_membrane.html","plastid inner membrane"],["membrane_organelle/plastid_intermembrane_space.html","plastid intermembrane space"]],"b":[["GO%3A0033098","amyloplast inner membrane"],["GO%3A0009706","chloroplast inner membrane"],["GO%3A0031899","chromoplast inner membrane"],["GO%3A0036012","cyanelle inner membrane"],["GO%3A0009528","plastid inner membrane"]]},{"id":"GO:0009570","l":"chloroplast stroma","na":7,"nb":5,"a":[["inclusion/plastoglobule.html","plastoglobule"],["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_inner_membrane.html","chloroplast inner membrane"],["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"],["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"]],"b":[["GO%3A0009570","chloroplast stroma"],["PANTHER%3APTHR34113","INACTIVE PURPLE ACID PHOSPHATASE-LIKE PROTEIN"],["PANTHER%3APTHR36803","PROTEIN CHLORORESPIRATORY REDUCTION 7, CHLOROPLASTIC"],["PANTHER%3APTHR47317","PROTEIN LHCP TRANSLOCATION DEFECT"],["PANTHER%3APTHR34669","THIOREDOXIN-LIKE FOLD DOMAIN-CONTAINING PROTEIN MRL7L, CHLOROPLASTIC"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":7,"nb":5,"a":[["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/rc_lh1_pufx_core_complex.html","RC-LH1-PufX core complex"],["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"]],"b":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF02963","Restriction endonuclease EcoRI"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["PROSITE%3APS00974","Mannitol dehydrogenases signature"],["PROSITE%3APS00567","Phosphoribulokinase signature"]]},{"id":"GO:0000324","l":"fungal-type vacuole","na":6,"nb":5,"a":[["membrane_organelle/autophagosome.html","autophagosome"],["membrane_organelle/cvt_vesicle.html","Cvt vesicle"],["membrane_organelle/fungal_type_vacuole.html","fungal-type vacuole"],["membrane_organelle/fungal_type_vacuole_lumen.html","fungal-type vacuole lumen"],["membrane_organelle/fungal_type_vacuole_membrane.html","fungal-type vacuole membrane"],["membrane_organelle/vacuole.html","vacuole"]],"b":[["ComplexPortal%3ACPX-1278","LMA1 complex, TRX1 variant"],["ComplexPortal%3ACPX-1279","LMA1 complex, TRX2 variant"],["GO%3A0000324","fungal-type vacuole"],["InterPro%3AIPR033819","Saccharopepsin"],["PANTHER%3APTHR36819","REGULATOR OF PHOSPHOLIPASE D SRF1"]]},{"id":"GO:0030076","l":"light-harvesting complex","na":5,"nb":6,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/phycobilisome.html","phycobilisome"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"]],"b":[["GO%3A0030076","light-harvesting complex"],["GO%3A0030089","phycobilisome"],["GO%3A0030077","plasma membrane light-harvesting complex"],["GO%3A0009503","thylakoid light-harvesting complex"],["Pfam%3APF02429","Peridinin-chlorophyll A binding protein"],["InterPro%3AIPR036550","Peridinin-chlorophyll A binding superfamily"]]},{"id":"GO:0030694","l":"bacterial-type flagellum basal body, rod","na":6,"nb":5,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"],["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"],["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"]],"b":[["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["GO%3A0030694","bacterial-type flagellum basal body, rod"],["NCBIfam%3ATIGR01396","flagellar basal body rod protein FlgB"],["NCBIfam%3ATIGR01395","flagellar basal body rod protein FlgC"],["NCBIfam%3ATIGR02490","flagellar basal-body rod protein FlgF"]]},{"id":"GO:0000814","l":"ESCRT II complex","na":5,"nb":5,"a":[["membrane_organelle/endosome.html","endosome"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/multivesicular_body.html","multivesicular body"],["other/escrt_complex.html","ESCRT complex"],["other/escrt_ii_complex.html","ESCRT II complex"]],"b":[["ComplexPortal%3ACPX-1623","ESCRT-II complex"],["ComplexPortal%3ACPX-2458","ESCRT-II complex"],["ComplexPortal%3ACPX-2506","ESCRT-II complex"],["GO%3A0000814","ESCRT II complex"],["Pfam%3APF05871","ESCRT-II complex subunit"]]},{"id":"GO:0030134","l":"COPII-coated ER to Golgi transport vesicle","na":5,"nb":5,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"],["membrane_organelle/copii_coated_vesicle_lumen.html","COPII-coated vesicle lumen"],["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"],["other/copii_vesicle_coat.html","COPII vesicle coat"]],"b":[["GO%3A0030134","COPII-coated ER to Golgi transport vesicle"],["PANTHER%3APTHR10984","ENDOPLASMIC RETICULUM-GOLGI INTERMEDIATE COMPARTMENT PROTEIN"],["PANTHER%3APTHR15858","IMMEDIATE EARLY RESPONSE 3-INTERACTING PROTEIN 1"],["PANTHER%3APTHR13144","TEX261 PROTEIN"],["PANTHER%3APTHR14083","YIP1 INTERACTING FACTOR HOMOLOG YIF1 PROTEIN"]]},{"id":"GO:0090114","l":"COPII-coated vesicle budding","na":5,"nb":5,"a":[["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"],["membrane_organelle/endoplasmic_reticulum_membrane.html","endoplasmic reticulum membrane"],["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"],["other/copii_vesicle_coat.html","COPII vesicle coat"],["other/vesicle_coat.html","vesicle coat"]],"b":[["GO%3A0090114","COPII-coated vesicle budding"],["InterPro%3AIPR037550","Sec23, C-terminal"],["PANTHER%3APTHR11141","PROTEIN TRANSPORT PROTEIN SEC23"],["PANTHER%3APTHR13803","SEC24-RELATED PROTEIN"],["PANTHER%3APTHR13923","SEC31-RELATED PROTEIN"]]},{"id":"GO:0140535","l":"intracellular protein-containing complex","na":4,"nb":262,"a":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"],["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"],["other/exodeoxyribonuclease_v_complex.html","exodeoxyribonuclease V complex"],["other/proteasome_complex.html","proteasome complex"]],"b":[["ComplexPortal%3ACPX-15604","VCP-remodelling complex"],["GO%3A0032144","4-aminobutyrate transaminase complex"],["GO%3A0034977","ABIN2-NFKB1-MAP3K8 complex"],["GO%3A0030929","ADPG pyrophosphorylase complex"],["GO%3A0017101","aminoacyl-tRNA synthetase multienzyme complex"],["GO%3A0009356","aminodeoxychorismate synthase complex"]]},{"id":"GO:0031981","l":"nuclear lumen","na":4,"nb":147,"a":[["membrane_organelle/nuclear_lumen.html","nuclear lumen"],["membrane_organelle/nucleus.html","nucleus"],["other/nuclear_chromosome.html","nuclear chromosome"],["other/nucleolus.html","nucleolus"]],"b":[["GO%3A0031981","nuclear lumen"],["PANTHER%3APTHR28028","60S RIBOSOMAL SUBUNIT ASSEMBLY/EXPORT PROTEIN LOC1"],["PANTHER%3APTHR15565","AATF PROTEIN APOPTOSIS ANTAGONIZING TRANSCRIPTION FACTOR"],["PANTHER%3APTHR12311","ACTIVATOR OF BASAL TRANSCRIPTION 1"],["PANTHER%3APTHR31454","ACTIVE REGULATOR OF SIRT1"],["PANTHER%3APTHR46627","AMINOPEPTIDASE O"]]},{"id":"GO:0060271","l":"cilium assembly","na":4,"nb":94,"a":[["appendage/ciliary_membrane.html","ciliary membrane"],["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"],["cytoskeleton/ciliary_basal_body.html","ciliary basal body"]],"b":[["ComplexPortal%3ACPX-1908","BBSome complex"],["ComplexPortal%3ACPX-1909","BBSome complex"],["ComplexPortal%3ACPX-2747","BBSome complex"],["ComplexPortal%3ACPX-428","BBSome complex"],["ComplexPortal%3ACPX-2789","CEP290 complex"],["ComplexPortal%3ACPX-1289","Intraflagellar transport complex A"]]},{"id":"GO:0071973","l":"bacterial-type flagellum-dependent cell motility","na":4,"nb":60,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/periplasmic_flagellum.html","periplasmic flagellum"]],"b":[["ComplexPortal%3ACPX-4886","DNA-directed RNA polymerase holoenzyme complex, SigmaF variant"],["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["GO%3A0071973","bacterial-type flagellum-dependent cell motility"],["GO%3A0071978","bacterial-type flagellum-dependent swarming motility"]]},{"id":"GO:0036064","l":"ciliary basal body","na":4,"nb":42,"a":[["appendage/cilium.html","cilium"],["cytoskeleton/ciliary_basal_body.html","ciliary basal body"],["cytoskeleton/ciliary_rootlet.html","ciliary rootlet"],["cytoskeleton/tripartite_attachment_complex.html","tripartite attachment complex"]],"b":[["GO%3A0036064","ciliary basal body"],["GO%3A1902636","kinociliary basal body"],["GO%3A1902671","left anterior basal body"],["GO%3A1902677","left caudal basal body"],["GO%3A1902673","left posteriolateral basal body"],["GO%3A1902675","left ventral basal body"]]},{"id":"GO:0009522","l":"photosystem I","na":4,"nb":33,"a":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/photosystem_i.html","photosystem I"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["GO%3A0030093","chloroplast photosystem I"],["GO%3A0009522","photosystem I"],["GO%3A0030094","plasma membrane-derived photosystem I"],["NCBIfam%3ANF014449","photosystem I assembly protein Ycf4"],["NCBIfam%3ATIGR01336","photosystem I core protein PsaB"],["NCBIfam%3ANF014578","photosystem I reaction center subunit II"]]},{"id":"GO:0031967","l":"organelle envelope","na":4,"nb":31,"a":[["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitosome_envelope.html","mitosome envelope"],["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/plastid_envelope.html","plastid envelope"]],"b":[["GO%3A0005740","mitochondrial envelope"],["GO%3A0005635","nuclear envelope"],["GO%3A0031967","organelle envelope"],["GO%3A0009526","plastid envelope"],["GO%3A0070732","spindle envelope"],["PANTHER%3APTHR36959","ALTERED INHERITANCE OF MITOCHONDRIA PROTEIN 24, MITOCHONDRIAL"]]},{"id":"GO:0006890","l":"retrograde vesicle-mediated transport, Golgi to endoplasmic reticulum","na":4,"nb":30,"a":[["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["other/copi_vesicle_coat.html","COPI vesicle coat"],["other/dsl1_nzr_complex.html","Dsl1/NZR complex"]],"b":[["ComplexPortal%3ACPX-7803","COPI vesicle coat complex, COPG1-COPZ1 variant"],["ComplexPortal%3ACPX-7970","COPI vesicle coat complex, COPG1-COPZ2 variant"],["ComplexPortal%3ACPX-7969","COPI vesicle coat complex, COPG2-COPZ1 variant"],["ComplexPortal%3ACPX-1652","COPI vesicle coat complex"],["ComplexPortal%3ACPX-2820","COPI vesicle coat complex"],["ComplexPortal%3ACPX-1786","Dsl1 tethering complex"]]},{"id":"GO:0005773","l":"vacuole","na":4,"nb":29,"a":[["membrane_organelle/fungal_type_vacuole.html","fungal-type vacuole"],["membrane_organelle/vacuolar_lumen.html","vacuolar lumen"],["membrane_organelle/vacuolar_membrane.html","vacuolar membrane"],["membrane_organelle/vacuole.html","vacuole"]],"b":[["GO%3A0005776","autophagosome"],["GO%3A0000331","contractile vacuole"],["GO%3A0000323","lytic vacuole"],["GO%3A0000325","plant-type vacuole"],["GO%3A0032195","post-lysosomal vacuole"],["GO%3A0000322","storage vacuole"]]},{"id":"GO:0005770","l":"late endosome","na":4,"nb":27,"a":[["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/late_endosome_lumen.html","late endosome lumen"],["membrane_organelle/late_endosome_membrane.html","late endosome membrane"],["membrane_organelle/multivesicular_body.html","multivesicular body"]],"b":[["ComplexPortal%3ACPX-5181","AP-5 Adaptor complex"],["ComplexPortal%3ACPX-5182","AP-5 Adaptor complex"],["ComplexPortal%3ACPX-20045","AP5-Spastizin-spatacsin complex"],["ComplexPortal%3ACPX-3233","GSE complex"],["ComplexPortal%3ACPX-8153","MON1-CCZ1 guanyl-nucleotide exchange factor complex, MON1A variant"],["ComplexPortal%3ACPX-8152","MON1-CCZ1 guanyl-nucleotide exchange factor complex, MON1B variant"]]},{"id":"GO:0099023","l":"vesicle tethering complex","na":4,"nb":20,"a":[["other/cog_complex.html","COG complex"],["other/corvet_complex.html","CORVET complex"],["other/dsl1_nzr_complex.html","Dsl1/NZR complex"],["other/garp_complex.html","GARP complex"]],"b":[["ComplexPortal%3ACPX-6241","CHEVI tethering complex"],["GO%3A0017119","COG complex"],["GO%3A0106103","COPII vesicles tethering complex"],["GO%3A0033263","CORVET complex"],["GO%3A0070939","Dsl1/NZR complex"],["GO%3A0000145","exocyst"]]},{"id":"GO:0110143","l":"magnetosome","na":4,"nb":17,"a":[["cytoskeleton/mamk_filament.html","MamK filament"],["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]],"b":[["GO%3A0110143","magnetosome"],["NCBIfam%3ANF040997","liposome tubulation protein MamY"],["NCBIfam%3ANF040917","magnetic particle specific iron-binding protein Mms6"],["NCBIfam%3ANF040986","magnetosome biogenesis transporter MamH"],["NCBIfam%3ANF040989","magnetosome biogenesis transporter MamN"],["NCBIfam%3ANF040998","magnetosome biogenesis transporter MamZ"]]},{"id":"GO:0005788","l":"endoplasmic reticulum lumen","na":4,"nb":15,"a":[["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"],["membrane_organelle/endoplasmic_reticulum_lumen.html","endoplasmic reticulum lumen"],["membrane_organelle/endoplasmic_reticulum_membrane.html","endoplasmic reticulum membrane"],["membrane_organelle/nuclear_envelope_lumen.html","nuclear envelope lumen"]],"b":[["ComplexPortal%3ACPX-6822","Glucosidase II complex"],["ComplexPortal%3ACPX-1283","HTM1-PDI1 exomannosidase complex"],["GO%3A0099021","cortical endoplasmic reticulum lumen"],["GO%3A0005788","endoplasmic reticulum lumen"],["GO%3A0099020","perinuclear endoplasmic reticulum lumen"],["GO%3A0048237","rough endoplasmic reticulum lumen"]]},{"id":"GO:0030117","l":"membrane coat","na":4,"nb":13,"a":[["other/ap_type_membrane_coat_adaptor_complex.html","AP-type membrane coat adaptor complex"],["other/clathrin_coat.html","clathrin coat"],["other/membrane_coat.html","membrane coat"],["other/vesicle_coat.html","vesicle coat"]],"b":[["GO%3A0030118","clathrin coat"],["GO%3A0030117","membrane coat"],["GO%3A0030120","vesicle coat"],["InterPro%3AIPR000804","Clathrin adaptor complex, small chain"],["InterPro%3AIPR002553","Clathrin/coatomer adaptor, adaptin-like, N-terminal"],["InterPro%3AIPR006692","COPA/B, second beta-propeller domain"]]},{"id":"GO:0031469","l":"bacterial microcompartment","na":4,"nb":12,"a":[["microcompartment/bacterial_microcompartment.html","bacterial microcompartment"],["microcompartment/carboxysome.html","carboxysome"],["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"],["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]],"b":[["GO%3A0031469","bacterial microcompartment"],["GO%3A0031470","carboxysome"],["GO%3A0031471","ethanolamine degradation polyhedral organelle"],["GO%3A0031472","propanediol degradation polyhedral organelle"],["NCBIfam%3ATIGR02704","carboxysome peptide B"],["NCBIfam%3ANF011934","ethanolamine utilization microcompartment protein EutL"]]},{"id":"GO:0030139","l":"endocytic vesicle","na":4,"nb":11,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle.html","clathrin-coated endocytic vesicle"],["membrane_organelle/endocytic_vesicle.html","endocytic vesicle"],["membrane_organelle/endocytic_vesicle_lumen.html","endocytic vesicle lumen"],["membrane_organelle/endocytic_vesicle_membrane.html","endocytic vesicle membrane"]],"b":[["ComplexPortal%3ACPX-5774","Cubam cobalamin uptake receptor complex"],["ComplexPortal%3ACPX-5847","Cubam cobalamin uptake receptor complex"],["GO%3A0045334","clathrin-coated endocytic vesicle"],["GO%3A0030139","endocytic vesicle"],["GO%3A0045335","phagocytic vesicle"],["GO%3A0032195","post-lysosomal vacuole"]]},{"id":"GO:0030660","l":"Golgi-associated vesicle membrane","na":4,"nb":11,"a":[["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"],["membrane_organelle/trans_golgi_network_transport_vesicle_membrane.html","trans-Golgi network transport vesicle membrane"]],"b":[["GO%3A0030663","COPI-coated vesicle membrane"],["GO%3A0030660","Golgi-associated vesicle membrane"],["GO%3A0012510","trans-Golgi network transport vesicle membrane"],["PANTHER%3APTHR16156","AFTIPHILIN A-RELATED"],["PANTHER%3APTHR15463","AP1 GAMMA SUBUNIT BINDING PROTEIN 1"],["PANTHER%3APTHR19876","COATOMER"]]},{"id":"NCBITaxon:5741","l":"Giardia intestinalis","na":11,"nb":4,"a":[["cytoskeleton/funis.html","funis"],["cytoskeleton/median_body.html","median body"],["cytoskeleton/microtubule.html","microtubule"],["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_crossbridge.html","ventral disc crossbridge"],["cytoskeleton/ventral_disc_dorsal_microribbon.html","ventral disc dorsal microribbon"]],"b":[["Pfam%3APF22293","Annexin E1, fourth repeat"],["Pfam%3APF17529","Family of unknown function (DUF5450)"],["TED%3AAF-V6TFM4-F1-model_v4_TED01","TED novel fold AF-V6TFM4-F1-model_v4_TED01"],["TED%3AAF-V6TNW5-F1-model_v4_TED02","TED novel fold AF-V6TNW5-F1-model_v4_TED02"]]},{"id":"GO:0000815","l":"ESCRT III complex","na":10,"nb":4,"a":[["membrane_organelle/endosome.html","endosome"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/multivesicular_body.html","multivesicular body"],["membrane_organelle/multivesicular_body_intraluminal_vesicle.html","multivesicular body intraluminal vesicle"],["membrane_organelle/multivesicular_body_membrane.html","multivesicular body membrane"]],"b":[["ComplexPortal%3ACPX-1624","ESCRT-III complex"],["ComplexPortal%3ACPX-2459","ESCRT-III complex"],["ComplexPortal%3ACPX-329","ESCRT-III complex"],["GO%3A0000815","ESCRT III complex"]]},{"id":"GO:0000940","l":"outer kinetochore","na":4,"nb":10,"a":[["other/dash_complex.html","DASH complex"],["other/mis12_mind_type_complex.html","MIS12/MIND type complex"],["other/ndc80_complex.html","Ndc80 complex"],["other/outer_kinetochore.html","outer kinetochore"]],"b":[["GO%3A0000444","MIS12/MIND type complex"],["GO%3A0000940","outer kinetochore"],["PANTHER%3APTHR14778","KINETOCHORE-ASSOCIATED PROTEIN DSN1 HOMOLOG"],["PANTHER%3APTHR31749","KINETOCHORE-ASSOCIATED PROTEIN NSL1 HOMOLOG"],["PANTHER%3APTHR10643","KINETOCHORE PROTEIN NDC80"],["PANTHER%3APTHR14281","KINETOCHORE PROTEIN SPC25-RELATED"]]},{"id":"GO:0009295","l":"nucleoid","na":4,"nb":10,"a":[["nucleoid/mitochondrial_nucleoid.html","mitochondrial nucleoid"],["nucleoid/nucleoid.html","nucleoid"],["nucleoid/plastid_nucleoid.html","plastid nucleoid"],["other/single_stranded_dna_binding_protein_complex.html","single-stranded DNA-binding protein complex"]],"b":[["GO%3A0043590","bacterial nucleoid"],["GO%3A0042645","mitochondrial nucleoid"],["GO%3A0009295","nucleoid"],["GO%3A0042646","plastid nucleoid"],["NCBIfam%3ANF016217","MukB N-terminal"],["NCBIfam%3ANF001557","nucleoid-associated protein YejK"]]},{"id":"GO:0005816","l":"spindle pole body","na":4,"nb":9,"a":[["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"],["cytoskeleton/spindle_pole_body.html","spindle pole body"],["spore/prospore_membrane_spindle_pole_body_attachment_site.html","prospore membrane spindle pole body attachment site"]],"b":[["ComplexPortal%3ACPX-1198","Gamma tubulin small complex"],["ComplexPortal%3ACPX-1287","MPS2-BBP1 spindle pole body anchor complex"],["ComplexPortal%3ACPX-26510","SID2-MOB1 protein kinase complex"],["GO%3A0035974","meiotic spindle pole body"],["GO%3A0044732","mitotic spindle pole body"],["GO%3A0005816","spindle pole body"]]},{"id":"GO:0031160","l":"spore wall","na":4,"nb":9,"a":[["spore/microsporidian_type_endospore.html","microsporidian-type endospore"],["spore/microsporidian_type_exospore.html","microsporidian-type exospore"],["spore/polar_tube_anchoring_disc.html","polar tube anchoring disc"],["spore/spore_wall.html","spore wall"]],"b":[["ComplexPortal%3ACPX-3028","1,3-beta-D-glucan synthase complex, FKS3-RHO1 variant"],["GO%3A0005619","ascospore wall"],["GO%3A0097515","asexual spore wall"],["GO%3A0043591","endospore external encapsulating structure"],["GO%3A0097514","sexual spore wall"],["GO%3A0031160","spore wall"]]},{"id":"GO:0001534","l":"radial spoke","na":4,"nb":8,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_central_pair_projection.html","axonemal central pair projection"],["cytoskeleton/axoneme.html","axoneme"],["cytoskeleton/radial_spoke.html","radial spoke"]],"b":[["ComplexPortal%3ACPX-8161","Radial spoke complex, ciliiar variant"],["ComplexPortal%3ACPX-8162","Radial spoke complex, flagellar variant"],["ComplexPortal%3ACPX-8164","Radial spoke complex, flagellar variant"],["GO%3A0120333","radial spoke 1"],["GO%3A0120334","radial spoke 2"],["GO%3A0120335","radial spoke 3"]]},{"id":"GO:0006119","l":"oxidative phosphorylation","na":4,"nb":8,"a":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"]],"b":[["ComplexPortal%3ACPX-268","Cytochrome bd-I ubiquinol oxidase complex"],["ComplexPortal%3ACPX-269","Cytochrome bd-II ubiquinol oxidase complex"],["GO%3A0006119","oxidative phosphorylation"],["PANTHER%3APTHR12448","ATP SYNTHASE EPSILON CHAIN, MITOCHONDRIAL"],["PANTHER%3APTHR13080","ATP SYNTHASE F CHAIN, MITOCHONDRIAL-RELATED"],["PANTHER%3APTHR43141","CYTOCHROME BD2 SUBUNIT II"]]},{"id":"InterPro:IPR001492","l":"","na":4,"nb":8,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["Pfam%3APF00700","Bacterial flagellin C-terminal helical region"],["Pfam%3APF08884","Flagellin D3 domain"],["Pfam%3APF21504","Flagellin, barrel domain"],["Pfam%3APF22370","Flagellin, beta sheet domain"],["PANTHER%3APTHR42792","FLAGELLIN"],["Pfam%3APF00669","Bacterial flagellin N-terminal helical region"]]},{"id":"GO:0009424","l":"bacterial-type flagellum hook","na":4,"nb":7,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["GO%3A0009424","bacterial-type flagellum hook"],["NCBIfam%3ATIGR02492","flagellar hook-associated protein FlgK"],["NCBIfam%3ATIGR02550","flagellar hook-associated protein FlgL"],["NCBIfam%3ANF007514","flagellar hook length control protein FliK"],["InterPro%3AIPR003481","Flagellar hook-associated protein 2, N-terminal"],["NCBIfam%3ANF014518","flagellar cap protein FliD N-terminal domain-containing protein"]]},{"id":"GO:0009527","l":"plastid outer membrane","na":7,"nb":4,"a":[["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"],["membrane_organelle/organellar_chromatophore_outer_membrane.html","organellar chromatophore outer membrane"],["membrane_organelle/plastid_envelope.html","plastid envelope"],["membrane_organelle/plastid_intermembrane_space.html","plastid intermembrane space"],["membrane_organelle/plastid_membrane.html","plastid membrane"]],"b":[["GO%3A0009707","chloroplast outer membrane"],["GO%3A0031900","chromoplast outer membrane"],["GO%3A0036013","cyanelle outer membrane"],["GO%3A0009527","plastid outer membrane"]]},{"id":"GO:0009529","l":"plastid intermembrane space","na":7,"nb":4,"a":[["membrane_organelle/chloroplast_intermembrane_space.html","chloroplast intermembrane space"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/organellar_chromatophore_intermembrane_space.html","organellar chromatophore intermembrane space"],["membrane_organelle/plastid_envelope.html","plastid envelope"],["membrane_organelle/plastid_inner_membrane.html","plastid inner membrane"],["membrane_organelle/plastid_intermembrane_space.html","plastid intermembrane space"]],"b":[["GO%3A0031972","chloroplast intermembrane space"],["GO%3A0031973","chromoplast intermembrane space"],["GO%3A0036014","cyanelle intermembrane space"],["GO%3A0009529","plastid intermembrane space"]]},{"id":"GO:0012507","l":"ER to Golgi transport vesicle membrane","na":4,"nb":7,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"],["membrane_organelle/copii_coated_vesicle_lumen.html","COPII-coated vesicle lumen"],["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"]],"b":[["GO%3A0012507","ER to Golgi transport vesicle membrane"],["PANTHER%3APTHR11141","PROTEIN TRANSPORT PROTEIN SEC23"],["PANTHER%3APTHR45684","RE74312P"],["PANTHER%3APTHR13803","SEC24-RELATED PROTEIN"],["PANTHER%3APTHR13923","SEC31-RELATED PROTEIN"],["PANTHER%3APTHR45837","VESICLE-TRAFFICKING PROTEIN SEC22B"]]},{"id":"GO:0031985","l":"Golgi cisterna","na":4,"nb":7,"a":[["membrane_organelle/golgi_apparatus.html","Golgi apparatus"],["membrane_organelle/golgi_cisterna.html","Golgi cisterna"],["membrane_organelle/golgi_cisterna_membrane.html","Golgi cisterna membrane"],["membrane_organelle/golgi_membrane.html","Golgi membrane"]],"b":[["GO%3A0000137","Golgi cis cisterna"],["GO%3A0031985","Golgi cisterna"],["GO%3A0005797","Golgi medial cisterna"],["GO%3A0000138","Golgi trans cisterna"],["PANTHER%3APTHR13815","GOLGIN-84"],["PANTHER%3APTHR21094","GOS-28 SNARE- RELATED"]]},{"id":"GO:0055035","l":"plastid thylakoid membrane","na":7,"nb":4,"a":[["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"],["membrane_organelle/plastid_membrane.html","plastid membrane"],["membrane_organelle/plastid_thylakoid.html","plastid thylakoid"],["membrane_organelle/plastid_thylakoid_lumen.html","plastid thylakoid lumen"]],"b":[["GO%3A0009535","chloroplast thylakoid membrane"],["GO%3A0033115","cyanelle thylakoid membrane"],["GO%3A0055035","plastid thylakoid membrane"],["GO%3A0042650","prothylakoid membrane"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":4,"nb":7,"a":[["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"],["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]],"b":[["Pfam%3APF19443","DAHL domain"],["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"],["Pfam%3APF03524","Conjugal transfer protein"],["Pfam%3APF27439","Chaperone protein DnaJ C-terminal region"],["Pfam%3APF10907","Protein of unknown function (DUF2749)"],["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]]},{"id":"GO:0009534","l":"chloroplast thylakoid","na":4,"nb":6,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"],["membrane_organelle/chloroplast_thylakoid_lumen.html","chloroplast thylakoid lumen"],["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"]],"b":[["GO%3A0009533","chloroplast stromal thylakoid"],["GO%3A0009534","chloroplast thylakoid"],["GO%3A0009515","granal stacked thylakoid"],["PANTHER%3APTHR47862","PEPTIDYL-PROLYL CIS-TRANS ISOMERASE FKBP18, CHLOROPLASTIC"],["PANTHER%3APTHR34790","PHOTOSYSTEM II CORE COMPLEX PROTEINS PSBY, CHLOROPLASTIC"],["PANTHER%3APTHR36734","YCF37-LIKE PROTEIN"]]},{"id":"GO:0030663","l":"COPI-coated vesicle membrane","na":6,"nb":4,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"],["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/copi_coated_vesicle_lumen.html","COPI-coated vesicle lumen"],["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"]],"b":[["ComplexPortal%3ACPX-1303","MST27-MST28 vesicle formation complex"],["GO%3A0030663","COPI-coated vesicle membrane"],["GO%3A0012508","Golgi to ER transport vesicle membrane"],["GO%3A0012509","inter-Golgi transport vesicle membrane"]]},{"id":"GO:0070112","l":"organellar chromatophore membrane","na":6,"nb":4,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_inner_membrane.html","organellar chromatophore inner membrane"],["membrane_organelle/organellar_chromatophore_membrane.html","organellar chromatophore membrane"],["membrane_organelle/organellar_chromatophore_outer_membrane.html","organellar chromatophore outer membrane"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"],["membrane_organelle/plasma_membrane_derived_chromatophore_membrane.html","plasma membrane-derived chromatophore membrane"]],"b":[["GO%3A0070113","organellar chromatophore inner membrane"],["GO%3A0070112","organellar chromatophore membrane"],["GO%3A0070114","organellar chromatophore outer membrane"],["GO%3A0070118","organellar chromatophore thylakoid membrane"]]},{"id":"NCBITaxon:5759","l":"Entamoeba histolytica","na":6,"nb":4,"a":[["membrane_organelle/mitosome.html","mitosome"],["membrane_organelle/mitosome_envelope.html","mitosome envelope"],["membrane_organelle/mitosome_inner_membrane.html","mitosome inner membrane"],["membrane_organelle/mitosome_intermembrane_space.html","mitosome intermembrane space"],["membrane_organelle/mitosome_matrix.html","mitosome matrix"],["membrane_organelle/mitosome_outer_membrane.html","mitosome outer membrane"]],"b":[["IDPO%3A0000012","molten globule to order"],["TED%3AAF-C4LXE1-F1-model_v4_TED01","TED highly-symmetric fold AF-C4LXE1-F1-model_v4_TED01"],["TED%3AAF-C4LXH3-F1-model_v4_TED02","TED novel fold AF-C4LXH3-F1-model_v4_TED02"],["TED%3AAF-C4MBN2-F1-model_v4_TED03","TED novel fold AF-C4MBN2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":6,"nb":4,"a":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"],["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"],["secretion_system/type_vi_secretion_system_baseplate.html","type VI secretion system baseplate"],["secretion_system/type_vi_secretion_system_contractile_sheath.html","type VI secretion system contractile sheath"],["secretion_system/type_vi_secretion_system_hcp_tube.html","type VI secretion system Hcp tube"],["secretion_system/type_vi_secretion_system_vgrg_paar_spike_complex.html","type VI secretion system VgrG/PAAR spike complex"]],"b":[["Pfam%3APF01375","Heat-labile enterotoxin alpha chain"],["Pfam%3APF09101","Exotoxin A binding"],["Pfam%3APF09009","Exotoxin A catalytic"],["Pfam%3APF09102","Exotoxin A, targeting"]]},{"id":"GO:0009421","l":"bacterial-type flagellum filament cap","na":4,"nb":5,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["GO%3A0009421","bacterial-type flagellum filament cap"],["NCBIfam%3ANF005955","flagellar filament capping protein FliD"],["NCBIfam%3ANF006282","flagellar filament capping protein FliD"],["NCBIfam%3ANF006435","flagellar filament capping protein FliD"],["NCBIfam%3ANF009400","flagellar filament capping protein FliD"]]},{"id":"GO:0030130","l":"clathrin coat of trans-Golgi network vesicle","na":4,"nb":5,"a":[["membrane_organelle/trans_golgi_network_transport_vesicle_membrane.html","trans-Golgi network transport vesicle membrane"],["other/ap_1_adaptor_complex.html","AP-1 adaptor complex"],["other/clathrin_coat_of_endocytic_vesicle.html","clathrin coat of endocytic vesicle"],["other/clathrin_coat_of_trans_golgi_network_vesicle.html","clathrin coat of trans-Golgi network vesicle"]],"b":[["GO%3A0030130","clathrin coat of trans-Golgi network vesicle"],["InterPro%3AIPR015348","Clathrin, heavy chain, linker, core motif"],["Pfam%3APF01086","Clathrin light chain"],["InterPro%3AIPR016025","Clathrin heavy chain, N-terminal"],["Pfam%3APF09268","Clathrin, heavy-chain linker"]]},{"id":"GO:0030132","l":"clathrin coat of coated pit","na":4,"nb":5,"a":[["other/ap_2_adaptor_complex.html","AP-2 adaptor complex"],["other/clathrin_coat.html","clathrin coat"],["other/clathrin_coat_of_coated_pit.html","clathrin coat of coated pit"],["other/clathrin_coated_pit.html","clathrin-coated pit"]],"b":[["GO%3A0030132","clathrin coat of coated pit"],["InterPro%3AIPR015348","Clathrin, heavy chain, linker, core motif"],["Pfam%3APF01086","Clathrin light chain"],["InterPro%3AIPR016025","Clathrin heavy chain, N-terminal"],["Pfam%3APF09268","Clathrin, heavy-chain linker"]]},{"id":"GO:0031976","l":"plastid thylakoid","na":5,"nb":4,"a":[["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/plastid_thylakoid.html","plastid thylakoid"],["membrane_organelle/plastid_thylakoid_lumen.html","plastid thylakoid lumen"],["membrane_organelle/plastid_thylakoid_membrane.html","plastid thylakoid membrane"]],"b":[["GO%3A0009534","chloroplast thylakoid"],["GO%3A0009843","cyanelle thylakoid"],["GO%3A0031976","plastid thylakoid"],["GO%3A0042649","prothylakoid"]]},{"id":"GO:0061700","l":"GATOR2 complex","na":5,"nb":4,"a":[["other/gator1_complex.html","GATOR1 complex"],["other/gator2_complex.html","GATOR2 complex"],["other/gtr1_gtr2_gtpase_complex.html","Gtr1-Gtr2 GTPase complex"],["other/seh1_associated_complex.html","Seh1-associated complex"],["other/torc1_complex.html","TORC1 complex"]],"b":[["ComplexPortal%3ACPX-26527","GATOR2 complex"],["ComplexPortal%3ACPX-2664","GATOR2 complex"],["ComplexPortal%3ACPX-6227","GATOR2 complex"],["GO%3A0061700","GATOR2 complex"]]},{"id":"GO:1990130","l":"GATOR1 complex","na":5,"nb":4,"a":[["other/gator1_complex.html","GATOR1 complex"],["other/gator2_complex.html","GATOR2 complex"],["other/gtr1_gtr2_gtpase_complex.html","Gtr1-Gtr2 GTPase complex"],["other/seh1_associated_complex.html","Seh1-associated complex"],["other/torc1_complex.html","TORC1 complex"]],"b":[["ComplexPortal%3ACPX-26523","GATOR1 complex"],["ComplexPortal%3ACPX-2781","GATOR1 complex"],["ComplexPortal%3ACPX-6226","GATOR1 complex"],["GO%3A1990130","GATOR1 complex"]]},{"id":"GO:0030096","l":"plasma membrane-derived thylakoid photosystem II","na":4,"nb":4,"a":[["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["GO%3A0030096","plasma membrane-derived thylakoid photosystem II"],["NCBIfam%3ANF040894","photosynthetic complex putative assembly protein PuhB"],["NCBIfam%3ATIGR03069","photosystem II electron transport protein, Sll1252 family"],["NCBIfam%3ATIGR03042","photosystem II protein PsbQ"]]},{"id":"GO:0030666","l":"endocytic vesicle membrane","na":4,"nb":4,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle_membrane.html","clathrin-coated endocytic vesicle membrane"],["membrane_organelle/endocytic_vesicle.html","endocytic vesicle"],["membrane_organelle/endocytic_vesicle_lumen.html","endocytic vesicle lumen"],["membrane_organelle/endocytic_vesicle_membrane.html","endocytic vesicle membrane"]],"b":[["GO%3A0030669","clathrin-coated endocytic vesicle membrane"],["GO%3A0030666","endocytic vesicle membrane"],["GO%3A0043661","peribacteroid membrane"],["GO%3A0030670","phagocytic vesicle membrane"]]},{"id":"GO:0032585","l":"multivesicular body membrane","na":4,"nb":4,"a":[["membrane_organelle/multivesicular_body.html","multivesicular body"],["membrane_organelle/multivesicular_body_intraluminal_vesicle.html","multivesicular body intraluminal vesicle"],["membrane_organelle/multivesicular_body_lumen.html","multivesicular body lumen"],["membrane_organelle/multivesicular_body_membrane.html","multivesicular body membrane"]],"b":[["ComplexPortal%3ACPX-329","ESCRT-III complex"],["ComplexPortal%3ACPX-332","ESCRT-III complex, variant Chmp1b1"],["ComplexPortal%3ACPX-333","ESCRT-III complex, variant Chmp1b2"],["GO%3A0032585","multivesicular body membrane"]]},{"id":"GO:0097589","l":"archaeal-type flagellum","na":4,"nb":4,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/cilium.html","cilium"]],"b":[["GO%3A0097589","archaeal-type flagellum"],["NCBIfam%3ANF052589","archaellum protein ArlH"],["NCBIfam%3ANF052590","archaellum stator protein ArlF"],["NCBIfam%3ANF052591","archaellum stator protein ArlG"]]},{"id":"NCBITaxon:224308","l":"Bacillus subtilis (strain 168)","na":3,"nb":11310,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["division_machinery/divisome_complex.html","divisome complex"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]],"b":[["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.10.3.-","With oxygen as acceptor"],["EC%3A1.13.12.-","With incorporation of one atom of oxygen (internal monooxygenases or internal mixed function oxidases)"],["EC%3A1.14.19.-","With oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water"],["EC%3A1.17.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.21.98.-","With other, known acceptors"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":3,"nb":1616,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"],["other/pyrenoid.html","pyrenoid"]],"b":[["EC%3A1.1.1.170","3beta-hydroxysteroid-4alpha-carboxylate 3-dehydrogenase (decarboxylating)"],["EC%3A1.1.1.262","4-hydroxythreonine-4-phosphate dehydrogenase"],["EC%3A1.1.1.276","serine 3-dehydrogenase (NADP(+))"],["EC%3A1.1.1.286","isocitrate--homoisocitrate dehydrogenase"],["EC%3A1.1.1.305","UDP-glucuronic acid oxidase (UDP-4-keto-hexauronic acid decarboxylating)"],["EC%3A1.1.1.343","phosphogluconate dehydrogenase (NAD(+)-dependent, decarboxylating)"]]},{"id":"GO:0140513","l":"nuclear protein-containing complex","na":3,"nb":495,"a":[["other/cbf3_complex.html","CBF3 complex"],["other/coma_complex.html","COMA complex"],["other/dash_complex.html","DASH complex"]],"b":[["GO%3A0002180","5-lipoxygenase complex"],["GO%3A1990354","activated SUMO-E1 ligase complex"],["GO%3A0030895","apolipoprotein B mRNA editing enzyme complex"],["GO%3A0033167","ARC complex"],["GO%3A0070310","ATR-ATRIP complex"],["GO%3A0072589","box H/ACA scaRNP complex"]]},{"id":"GO:0005840","l":"ribosome","na":3,"nb":418,"a":[["ribonucleoprotein/large_ribosomal_subunit.html","large ribosomal subunit"],["ribonucleoprotein/ribosome.html","ribosome"],["ribonucleoprotein/small_ribosomal_subunit.html","small ribosomal subunit"]],"b":[["ComplexPortal%3ACPX-2854","Elongation Factor eEF1 complex, variant CAM1"],["ComplexPortal%3ACPX-425","Elongation Factor eEF1 complex, variant TEF4"],["ComplexPortal%3ACPX-427","Eukaryotic translation initiation factor 2 complex"],["ComplexPortal%3ACPX-430","Eukaryotic translation initiation factor 4F complex, variant TIF4631"],["ComplexPortal%3ACPX-431","Eukaryotic translation initiation factor 4F complex, variant TIF4632"],["ComplexPortal%3ACPX-1295","MKT1-PBP1 translation regulation complex"]]},{"id":"GO:0140534","l":"endoplasmic reticulum protein-containing complex","na":3,"nb":72,"a":[["other/endoplasmic_reticulum_sec_complex.html","endoplasmic reticulum Sec complex"],["other/get_complex.html","GET complex"],["other/sec62_sec63_complex.html","Sec62/Sec63 complex"]],"b":[["GO%3A0036513","Derlin-1 retrotranslocation complex"],["GO%3A0036502","Derlin-1-VIMP complex"],["GO%3A0031502","dolichyl-phosphate-mannose-protein mannosyltransferase complex"],["GO%3A0070939","Dsl1/NZR complex"],["GO%3A0070385","egasyn-beta-glucuronidase complex"],["GO%3A0072546","EMC complex"]]},{"id":"GO:0030288","l":"outer membrane-bounded periplasmic space","na":3,"nb":62,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"],["envelope/periplasmic_space.html","periplasmic space"]],"b":[["ComplexPortal%3ACPX-319","Trimethylamine-N-oxide reductase TorAC complex"],["GO%3A0030288","outer membrane-bounded periplasmic space"],["NCBIfam%3ATIGR03227","2-aminoethylphosphonate ABC transporter substrate-binding protein"],["NCBIfam%3ANF000397","ACC family cephalosporin-hydrolyzing class C beta-lactamase"],["NCBIfam%3ATIGR01672","acid phosphatase AphA"],["NCBIfam%3ANF000385","ACT family cephalosporin-hydrolyzing class C beta-lactamase"]]},{"id":"GO:0009523","l":"photosystem II","na":3,"nb":59,"a":[["energy_complex/photosystem_ii.html","photosystem II"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["GO%3A0030095","chloroplast photosystem II"],["GO%3A0009523","photosystem II"],["GO%3A0030096","plasma membrane-derived thylakoid photosystem II"],["NCBIfam%3ATIGR01332","cytochrome b559 subunit alpha"],["NCBIfam%3ATIGR01333","cytochrome b559 subunit beta"],["NCBIfam%3ANF012505","Lumenal portion of Cytochrome b559, alpha (gene psbE) subunit"]]},{"id":"GO:0007059","l":"chromosome segregation","na":3,"nb":58,"a":[["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"],["other/kinetochore.html","kinetochore"]],"b":[["ComplexPortal%3ACPX-26706","CLTA-CLTC-CKAP5-TACC3, mitotic spindle organizing complex"],["ComplexPortal%3ACPX-26711","CLTB-CLTC-CKAP5-TACC3, mitotic spindle organizing complex"],["ComplexPortal%3ACPX-2533","Kinetochore CCAN complex"],["ComplexPortal%3ACPX-5646","Kinetochore CCAN complex"],["ComplexPortal%3ACPX-5704","Kinetochore CCAN complex"],["ComplexPortal%3ACPX-26614","NDC80 complex"]]},{"id":"GO:0016236","l":"macroautophagy","na":3,"nb":53,"a":[["membrane_organelle/autophagosome.html","autophagosome"],["membrane_organelle/autophagosome_membrane.html","autophagosome membrane"],["other/trappiii_protein_complex.html","TRAPPIII protein complex"]],"b":[["ComplexPortal%3ACPX-3863","atg-5-atg-12-atg-16.1-atg-16.2 complex"],["ComplexPortal%3ACPX-3865","atg-5-atg-12-atg-16.1 complex"],["ComplexPortal%3ACPX-3866","atg-5-atg-12-atg-16.2 complex"],["ComplexPortal%3ACPX-1849","ATG12-ATG5-ATG16 complex"],["ComplexPortal%3ACPX-200","ATG12-ATG5-ATG16L1 complex"],["ComplexPortal%3ACPX-328","Atg12-Atg5-Atg16l1 complex"]]},{"id":"GO:0005938","l":"cell cortex","na":3,"nb":49,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"],["cytoskeleton/septin_ring.html","septin ring"],["other/cell_cortex.html","cell cortex"]],"b":[["ComplexPortal%3ACPX-977","CDC24-FAR1-Gbetagamma complex"],["ComplexPortal%3ACPX-26690","Cortical microtubule stabilization complex, KANK1 variant"],["ComplexPortal%3ACPX-20447","Cortical microtubule stabilization complex, KANK2 variant"],["ComplexPortal%3ACPX-3381","Egg-3/4/5 MBK-2 complex"],["ComplexPortal%3ACPX-26666","GNAI1-GPSM2-NUMA1, spindle orientation complex"],["ComplexPortal%3ACPX-4027","gpr-1-gpr-2-lin-5 complex"]]},{"id":"GO:0005769","l":"early endosome","na":3,"nb":44,"a":[["membrane_organelle/early_endosome.html","early endosome"],["membrane_organelle/early_endosome_lumen.html","early endosome lumen"],["membrane_organelle/early_endosome_membrane.html","early endosome membrane"]],"b":[["ComplexPortal%3ACPX-5044","BLOC-2 complex"],["ComplexPortal%3ACPX-5084","BLOC-2 complex"],["ComplexPortal%3ACPX-2540","FERRY RAB5 effector complex"],["ComplexPortal%3ACPX-11549","Huntingtin-HAP40 endosomal complex"],["ComplexPortal%3ACPX-26674","Huntingtin-HAP40 endosomal complex"],["ComplexPortal%3ACPX-5055","Neuronal AP-3 Adaptor complex, sigma3a variant"]]},{"id":"GO:0000502","l":"proteasome complex","na":3,"nb":27,"a":[["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"]],"b":[["ComplexPortal%3ACPX-9082","19S-20S-PA28-alphabeta hybrid proteasome complex"],["ComplexPortal%3ACPX-9085","19S-20S-PA28-gamma hybrid proteasome complex"],["ComplexPortal%3ACPX-9003","20S immunoproteasome complex"],["ComplexPortal%3ACPX-8806","20S proteasome complex"],["ComplexPortal%3ACPX-9004","20S thymoproteasome complex"],["ComplexPortal%3ACPX-2262","26S proteasome complex"]]},{"id":"GO:0030089","l":"phycobilisome","na":3,"nb":26,"a":[["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["GO%3A0030089","phycobilisome"],["NCBIfam%3ATIGR01337","allophycocyanin subunit beta"],["NCBIfam%3ANF058510","bifunctional rod-capping linker CpcD/ferredoxin--NADP reductase PetH"],["NCBIfam%3ATIGR01338","C-phycocyanin subunit alpha"],["NCBIfam%3ATIGR01339","C-phycocyanin subunit beta"],["NCBIfam%3ANF058511","phycobilisome rod-core linker protein CpcG1"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":3,"nb":26,"a":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]],"b":[["Pfam%3APF27270","Alr1449"],["Pfam%3APF27301","Alr2735 N-terminal domain"],["Pfam%3APF27288","Alr2735"],["Pfam%3APF21571","Arginine dihydrolase ArgZ-like, C-terminal, first region"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF13205","Bacterial Ig-like domain"]]},{"id":"GO:0031901","l":"early endosome membrane","na":3,"nb":25,"a":[["membrane_organelle/early_endosome.html","early endosome"],["membrane_organelle/early_endosome_lumen.html","early endosome lumen"],["membrane_organelle/early_endosome_membrane.html","early endosome membrane"]],"b":[["ComplexPortal%3ACPX-6311","ATP11B-CDC50A P4-ATPase complex"],["ComplexPortal%3ACPX-1137","CORVET tethering complex"],["ComplexPortal%3ACPX-1626","CORVET tethering complex"],["ComplexPortal%3ACPX-2562","WASH complex"],["ComplexPortal%3ACPX-1173","WASH complex, variant WASH2P/WASHC2A"],["ComplexPortal%3ACPX-1168","WASH complex, variant WASH2P/WASHC2C"]]},{"id":"GO:0005618","l":"cell wall","na":3,"nb":24,"a":[["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["spore/exosporium.html","exosporium"],["spore/spore_wall.html","spore wall"]],"b":[["GO%3A0005618","cell wall"],["GO%3A0097570","cyst wall"],["GO%3A0009277","fungal-type cell wall"],["GO%3A0009274","peptidoglycan-based cell wall"],["GO%3A0009505","plant-type cell wall"],["GO%3A0031160","spore wall"]]},{"id":"GO:0098791","l":"Golgi apparatus subcompartment","na":3,"nb":22,"a":[["membrane_organelle/cis_golgi_network.html","cis-Golgi network"],["membrane_organelle/golgi_cisterna.html","Golgi cisterna"],["membrane_organelle/trans_golgi_network.html","trans-Golgi network"]],"b":[["GO%3A0098791","Golgi apparatus subcompartment"],["GO%3A0031985","Golgi cisterna"],["GO%3A0005795","Golgi stack"],["GO%3A0005802","trans-Golgi network"],["PANTHER%3APTHR47180","ADP-RIBOSYLATION FACTOR-BINDING PROTEIN GGA1-RELATED"],["PANTHER%3APTHR21514","AP-4 COMPLEX ACCESSORY SUBUNIT TEPSIN"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":3,"nb":19,"a":[["appendage/type_iv_pilus.html","type IV pilus"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]],"b":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"],["Pfam%3APF18173","Bacterial HORMA domain 2"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["Pfam%3APF27322","Cap8 HORMA domain"],["Pfam%3APF01526","Tn3 transposase DDE domain"]]},{"id":"GO:0016234","l":"inclusion body","na":3,"nb":15,"a":[["inclusion/parasporal_crystal.html","parasporal crystal"],["inclusion/r_body.html","R-body"],["inclusion/sulfur_globule.html","sulfur globule"]],"b":[["GO%3A0016235","aggresome"],["GO%3A0097407","Bunina body"],["GO%3A0097408","fibrillary inclusion"],["GO%3A0097409","glial cytoplasmic inclusion"],["GO%3A0097412","hyaline inclusion"],["GO%3A0016234","inclusion body"]]},{"id":"GO:0031966","l":"mitochondrial membrane","na":3,"nb":15,"a":[["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrial_membrane.html","mitochondrial membrane"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"]],"b":[["ComplexPortal%3ACPX-8302","ABCB10-ABCB7-FECH ABC transporter"],["ComplexPortal%3ACPX-1721","Mitochondrial respiratory chain complex IV, COX5A variant"],["ComplexPortal%3ACPX-1722","Mitochondrial respiratory chain complex IV, COX5B variant"],["ComplexPortal%3ACPX-6123","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-8620","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-9641","Mitochondrial respiratory chain complex IV"]]},{"id":"GO:0009277","l":"fungal-type cell wall","na":3,"nb":14,"a":[["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["other/1_3_beta_d_glucan_synthase_complex.html","1,3-beta-D-glucan synthase complex"],["spore/ascospore_wall.html","ascospore wall"]],"b":[["ComplexPortal%3ACPX-1812","1,3-beta-D-glucan synthase complex, FKS1-RHO1 variant"],["GO%3A0005619","ascospore wall"],["GO%3A0009277","fungal-type cell wall"],["GO%3A0030446","hyphal cell wall"],["GO%3A0030445","yeast-form cell wall"],["InterPro%3AIPR019778","Class I Hydrophobin, conserved site"]]},{"id":"GO:0030008","l":"TRAPP complex","na":3,"nb":14,"a":[["other/trappi_protein_complex.html","TRAPPI protein complex"],["other/trappii_protein_complex.html","TRAPPII protein complex"],["other/trappiii_protein_complex.html","TRAPPIII protein complex"]],"b":[["GO%3A0030008","TRAPP complex"],["GO%3A1990070","TRAPPI protein complex"],["GO%3A1990071","TRAPPII protein complex"],["GO%3A1990072","TRAPPIII protein complex"],["PANTHER%3APTHR20902","41-2 PROTEIN ANTIGEN-RELATED"],["PANTHER%3APTHR13251","EPILEPSY HOLOPROSENCEPHALY CANDIDATE 1/TMEM1"]]},{"id":"GO:0055037","l":"recycling endosome","na":3,"nb":14,"a":[["membrane_organelle/recycling_endosome.html","recycling endosome"],["membrane_organelle/recycling_endosome_lumen.html","recycling endosome lumen"],["membrane_organelle/recycling_endosome_membrane.html","recycling endosome membrane"]],"b":[["ComplexPortal%3ACPX-6207","EARP tethering complex"],["GO%3A0090653","apical recycling endosome"],["GO%3A0090654","basolateral recycling endosome"],["GO%3A0098832","peri-centrosomal recycling endosome"],["GO%3A0098837","postsynaptic recycling endosome"],["GO%3A0055037","recycling endosome"]]},{"id":"GO:0000421","l":"autophagosome membrane","na":3,"nb":13,"a":[["membrane_organelle/autophagosome.html","autophagosome"],["membrane_organelle/autophagosome_lumen.html","autophagosome lumen"],["membrane_organelle/autophagosome_membrane.html","autophagosome membrane"]],"b":[["ComplexPortal%3ACPX-25783","SNARE complex STX17-SNAP29-VAMP7"],["ComplexPortal%3ACPX-25782","SNARE complex STX17-SNAP29-VAMP8"],["ComplexPortal%3ACPX-26400","SNARE complex STX17-SNAP47-VAMP7"],["ComplexPortal%3ACPX-26401","SNARE complex STX17-SNAP47-VAMP8"],["ComplexPortal%3ACPX-26524","SNARE complex STX4-SNAP29-SEC22b"],["ComplexPortal%3ACPX-25786","SNARE priming complex STX17-SNAP29-YKT6"]]},{"id":"GO:0005776","l":"autophagosome","na":3,"nb":12,"a":[["membrane_organelle/autophagosome.html","autophagosome"],["membrane_organelle/autophagosome_lumen.html","autophagosome lumen"],["membrane_organelle/autophagosome_membrane.html","autophagosome membrane"]],"b":[["ComplexPortal%3ACPX-362","Heparanase complex"],["ComplexPortal%3ACPX-363","Heparanase complex"],["ComplexPortal%3ACPX-4821","unc-51-atg-13 complex"],["GO%3A0044753","amphisome"],["GO%3A0005776","autophagosome"],["PANTHER%3APTHR13038","APG9 AUTOPHAGY 9"]]},{"id":"GO:0005940","l":"septin ring","na":3,"nb":12,"a":[["cytoskeleton/septin_ring.html","septin ring"],["other/cell_cortex.html","cell cortex"],["other/cellular_bud_neck.html","cellular bud neck"]],"b":[["ComplexPortal%3ACPX-26526","Septin1-Septin2-pnut complex"],["ComplexPortal%3ACPX-26529","Septin4-Septin5-pnut complex"],["GO%3A0000144","cellular bud neck septin ring"],["GO%3A0032172","germ tube septin ring"],["GO%3A0032168","hyphal septin ring"],["GO%3A0032175","mating projection septin ring"]]},{"id":"GO:0060170","l":"ciliary membrane","na":3,"nb":12,"a":[["appendage/ciliary_membrane.html","ciliary membrane"],["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"]],"b":[["ComplexPortal%3ACPX-1908","BBSome complex"],["ComplexPortal%3ACPX-1909","BBSome complex"],["GO%3A0060170","ciliary membrane"],["GO%3A0020018","ciliary pocket membrane"],["GO%3A0120201","cone photoreceptor disc membrane"],["GO%3A0098804","non-motile cilium membrane"]]},{"id":"GO:0061617","l":"MICOS complex","na":3,"nb":12,"a":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"],["other/micos_complex.html","MICOS complex"]],"b":[["ComplexPortal%3ACPX-140","MICOS mitochondrial contact site and cristae organizing system complex"],["ComplexPortal%3ACPX-25732","MICOS mitochondrial contact site and cristae organizing system complex, MIC10A variant"],["ComplexPortal%3ACPX-25733","MICOS mitochondrial contact site and cristae organizing system complex, MIC10B variant"],["ComplexPortal%3ACPX-25735","MICOS mitochondrial contact site and cristae organizing system complex, MIC10C variant"],["ComplexPortal%3ACPX-6141","MICOS mitochondrial contact site and cristae organizing system complex"],["GO%3A0061617","MICOS complex"]]},{"id":"GO:0005685","l":"U1 snRNP","na":3,"nb":11,"a":[["ribonucleoprotein/u1_snrnp.html","U1 snRNP"],["ribonucleoprotein/u2_type_precatalytic_spliceosome.html","U2-type precatalytic spliceosome"],["ribonucleoprotein/u2_type_prespliceosome.html","U2-type prespliceosome"]],"b":[["ComplexPortal%3ACPX-43","Sm complex"],["ComplexPortal%3ACPX-6033","Sm complex"],["ComplexPortal%3ACPX-23","U1 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-2392","U1 small nuclear ribonucleoprotein complex"],["GO%3A0005685","U1 snRNP"],["PANTHER%3APTHR11864","PRE-MRNA-PROCESSING PROTEIN PRP40"]]},{"id":"GO:0031262","l":"Ndc80 complex","na":3,"nb":11,"a":[["other/kinetochore.html","kinetochore"],["other/ndc80_complex.html","Ndc80 complex"],["other/outer_kinetochore.html","outer kinetochore"]],"b":[["ComplexPortal%3ACPX-26614","NDC80 complex"],["ComplexPortal%3ACPX-548","NDC80 complex"],["ComplexPortal%3ACPX-549","Ndc80 complex"],["ComplexPortal%3ACPX-550","Ndc80 complex"],["ComplexPortal%3ACPX-551","Ndc80 complex"],["ComplexPortal%3ACPX-806","Ndc80 complex"]]},{"id":"GO:0000444","l":"MIS12/MIND type complex","na":3,"nb":10,"a":[["other/kinetochore.html","kinetochore"],["other/mis12_mind_type_complex.html","MIS12/MIND type complex"],["other/outer_kinetochore.html","outer kinetochore"]],"b":[["ComplexPortal%3ACPX-1186","Kinetochore MIS12 complex"],["ComplexPortal%3ACPX-5643","Kinetochore MIS12 complex"],["ComplexPortal%3ACPX-5701","Kinetochore MIS12 complex"],["ComplexPortal%3ACPX-807","Kinetochore Mis12 complex"],["ComplexPortal%3ACPX-7681","Kinetochore MIS12 complex, Nnf1a variant"],["ComplexPortal%3ACPX-8928","Kinetochore MIS12 complex, Nnf1b variant"]]},{"id":"GO:0009427","l":"bacterial-type flagellum basal body, distal rod, L ring","na":3,"nb":10,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]],"b":[["GO%3A0009427","bacterial-type flagellum basal body, distal rod, L ring"],["NCBIfam%3ANF001301","flagellar basal body L-ring protein FlgH"],["NCBIfam%3ANF001304","flagellar basal body L-ring protein FlgH"],["NCBIfam%3ANF001305","flagellar basal body L-ring protein FlgH"],["NCBIfam%3ANF009072","flagellar basal body L-ring protein FlgH"],["NCBIfam%3ANF009337","flagellar basal body L-ring protein FlgH"]]},{"id":"GO:0071986","l":"Ragulator complex","na":3,"nb":10,"a":[["other/gtr1_gtr2_gtpase_complex.html","Gtr1-Gtr2 GTPase complex"],["other/ragulator_complex.html","Ragulator complex"],["other/torc1_complex.html","TORC1 complex"]],"b":[["ComplexPortal%3ACPX-3172","EGO complex"],["ComplexPortal%3ACPX-3233","GSE complex"],["ComplexPortal%3ACPX-26528","Ragulator complex"],["ComplexPortal%3ACPX-2709","Ragulator complex"],["ComplexPortal%3ACPX-4741","Ragulator complex"],["ComplexPortal%3ACPX-4761","Ragulator complex"]]},{"id":"GO:0005839","l":"proteasome core complex","na":3,"nb":9,"a":[["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"]],"b":[["ComplexPortal%3ACPX-8806","20S proteasome complex"],["GO%3A0031603","cytosolic proteasome core complex"],["GO%3A0031601","nuclear proteasome core complex"],["GO%3A0005839","proteasome core complex"],["NCBIfam%3ATIGR03634","archaeal proteasome endopeptidase complex subunit beta"],["NCBIfam%3ATIGR03690","proteasome subunit beta"]]},{"id":"GO:0007035","l":"vacuolar acidification","na":3,"nb":9,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["membrane_organelle/fungal_type_vacuole_membrane.html","fungal-type vacuole membrane"],["membrane_organelle/vacuolar_membrane.html","vacuolar membrane"]],"b":[["ComplexPortal%3ACPX-10301","RAVE complex, DMXL1 variant"],["ComplexPortal%3ACPX-10303","RAVE complex, DMXL2 variant"],["ComplexPortal%3ACPX-6905","Vacuolar proton translocating ATPase complex, ATP6V0A3 variant"],["ComplexPortal%3ACPX-1193","Vacuolar proton translocating ATPase complex, vacuole variant"],["GO%3A0007042","lysosomal lumen acidification"],["GO%3A0007035","vacuolar acidification"]]},{"id":"CHEBI:17029","l":"chitin","na":3,"nb":8,"a":[["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["membrane_organelle/chitosome.html","chitosome"],["spore/microsporidian_type_endospore.html","microsporidian-type endospore"]],"b":[["EC%3A2.4.1.16","chitin synthase"],["EC%3A3.5.1.41","chitin deacetylase"],["RHEA%3A85463","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-1)-N-acetyl-alpha-D-glucosamine"],["RHEA%3A50672","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-2) + N,N'-diacetylchitobiose"],["RHEA%3A85003","[(1->4)-N-acetyl-beta-D-glucosaminyl](n)-N-acetyl-alpha-D-glucosamine + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n) + N-acetyl-alpha-D-glucosamine"],["RHEA%3A10464","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + n H2O = chitosan + n acetate"]]},{"id":"GO:0005798","l":"Golgi-associated vesicle","na":3,"nb":8,"a":[["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"]],"b":[["ComplexPortal%3ACPX-1698","EMP24 complex"],["GO%3A0030137","COPI-coated vesicle"],["GO%3A0005798","Golgi-associated vesicle"],["GO%3A0030140","trans-Golgi network transport vesicle"],["PANTHER%3APTHR31975","BUD SITE SELECTION PROTEIN 7-RELATED"],["PANTHER%3APTHR10261","COATOMER SUBUNIT GAMMA"]]},{"id":"GO:0031969","l":"chloroplast membrane","na":3,"nb":8,"a":[["membrane_organelle/chloroplast_inner_membrane.html","chloroplast inner membrane"],["membrane_organelle/chloroplast_membrane.html","chloroplast membrane"],["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"]],"b":[["GO%3A0009706","chloroplast inner membrane"],["GO%3A0031969","chloroplast membrane"],["GO%3A0009707","chloroplast outer membrane"],["PANTHER%3APTHR31038","EXPRESSED PROTEIN-RELATED"],["PANTHER%3APTHR34048","LOW-DENSITY RECEPTOR-LIKE PROTEIN"],["PANTHER%3APTHR36317","PROTEIN MULTIPLE CHLOROPLAST DIVISION SITE 1"]]},{"id":"GO:0045335","l":"phagocytic vesicle","na":3,"nb":8,"a":[["membrane_organelle/phagocytic_vesicle.html","phagocytic vesicle"],["membrane_organelle/phagocytic_vesicle_lumen.html","phagocytic vesicle lumen"],["membrane_organelle/phagocytic_vesicle_membrane.html","phagocytic vesicle membrane"]],"b":[["GO%3A0045336","clathrin-coated phagocytic vesicle"],["GO%3A0032009","early phagosome"],["GO%3A1990457","pexophagosome"],["GO%3A0045335","phagocytic vesicle"],["GO%3A0032010","phagolysosome"],["PANTHER%3APTHR31093","CELL SURFACE GLYCOPROTEIN GP138-RELATED-RELATED"]]},{"id":"GO:0098799","l":"outer mitochondrial membrane protein complex","na":3,"nb":8,"a":[["other/ermes_complex.html","ERMES complex"],["other/mitochondrial_outer_membrane_translocase_complex.html","mitochondrial outer membrane translocase complex"],["other/sam_complex.html","SAM complex"]],"b":[["ComplexPortal%3ACPX-3196","ERMES complex"],["ComplexPortal%3ACPX-6100","SARS-CoV-2 9b complex"],["ComplexPortal%3ACPX-6101","SARS-CoV 9b complex"],["GO%3A0036266","Cdc48p-Npl4p-Vms1p AAA ATPase complex"],["GO%3A0032865","ERMES complex"],["GO%3A0140595","MIM complex"]]},{"id":"GO:0030112","l":"glycocalyx","na":3,"nb":7,"a":[["envelope/capsule.html","capsule"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]],"b":[["GO%3A0042603","capsule"],["GO%3A0030112","glycocalyx"],["GO%3A0120240","platelet glycocalyx"],["GO%3A0030114","slime layer"],["GO%3A0120238","sperm glycocalyx"],["GO%3A0120234","stereocilium coat"]]},{"id":"GO:0035859","l":"Seh1-associated complex","na":3,"nb":7,"a":[["other/gator1_complex.html","GATOR1 complex"],["other/gator2_complex.html","GATOR2 complex"],["other/seh1_associated_complex.html","Seh1-associated complex"]],"b":[["ComplexPortal%3ACPX-3231","SEA complex"],["GO%3A0035859","Seh1-associated complex"],["PANTHER%3APTHR13153","CGTHBA PROTEIN -14 GENE PROTEIN"],["PANTHER%3APTHR13179","DEP DOMAIN CONTAINING PROTEIN 5"],["PANTHER%3APTHR46200","GATOR COMPLEX PROTEIN WDR24"],["PANTHER%3APTHR46170","GATOR COMPLEX PROTEIN WDR59"]]},{"id":"GO:0044284","l":"mitochondrial crista junction","na":3,"nb":7,"a":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"],["other/micos_complex.html","MICOS complex"]],"b":[["ComplexPortal%3ACPX-140","MICOS mitochondrial contact site and cristae organizing system complex"],["ComplexPortal%3ACPX-25732","MICOS mitochondrial contact site and cristae organizing system complex, MIC10A variant"],["ComplexPortal%3ACPX-25733","MICOS mitochondrial contact site and cristae organizing system complex, MIC10B variant"],["ComplexPortal%3ACPX-25735","MICOS mitochondrial contact site and cristae organizing system complex, MIC10C variant"],["ComplexPortal%3ACPX-6141","MICOS mitochondrial contact site and cristae organizing system complex"],["GO%3A0044284","mitochondrial crista junction"]]},{"id":"GO:0120115","l":"Lsm2-8 complex","na":3,"nb":7,"a":[["ribonucleoprotein/u4atac_u6atac_snrnp.html","U4atac/U6atac snRNP"],["ribonucleoprotein/u6_snrnp.html","U6 snRNP"],["ribonucleoprotein/u6atac_snrnp.html","U6atac snRNP"]],"b":[["ComplexPortal%3ACPX-26553","LSM2-8 complex"],["ComplexPortal%3ACPX-26555","LSM2-8 complex"],["ComplexPortal%3ACPX-1309","LSM2-8 complex, variant LSM3A-LSM6A"],["ComplexPortal%3ACPX-1352","LSM2-8 complex, variant LSM3A-LSM6B"],["ComplexPortal%3ACPX-1353","LSM2-8 complex, variant LSM3B-LSM6A"],["ComplexPortal%3ACPX-1354","LSM2-8 complex, variant LSM3B-LSM6B"]]},{"id":"GO:1990131","l":"Gtr1-Gtr2 GTPase complex","na":3,"nb":7,"a":[["other/gtr1_gtr2_gtpase_complex.html","Gtr1-Gtr2 GTPase complex"],["other/ragulator_complex.html","Ragulator complex"],["other/torc1_complex.html","TORC1 complex"]],"b":[["ComplexPortal%3ACPX-26516","RAG guanosine triphosphatase complex"],["ComplexPortal%3ACPX-26517","RAG guanosine triphosphatase complex"],["ComplexPortal%3ACPX-2542","RAG guanosine triphosphatase complex, RAGA-RAGC variant"],["ComplexPortal%3ACPX-2513","RAG guanosine triphosphatase complex, RAGA-RAGD variant"],["ComplexPortal%3ACPX-2514","RAG guanosine triphosphatase complex, RAGB-RAGC variant"],["ComplexPortal%3ACPX-767","RAG guanosine triphosphatase complex, RAGB-RAGD variant"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":3,"nb":7,"a":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"]],"b":[["Pfam%3APF04439","Streptomycin adenylyltransferase"],["TED%3AAF-A0A696J2C3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A696J2C3-F1-model_v4_TED01"],["TED%3AAF-A0A825M6H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A825M6H4-F1-model_v4_TED01"],["TED%3AAF-A0A5T0SBG5-F1-model_v4_TED01","TED novel fold AF-A0A5T0SBG5-F1-model_v4_TED01"],["TED%3AAF-A0A698JVM3-F1-model_v4_TED03","TED novel fold AF-A0A698JVM3-F1-model_v4_TED03"],["TED%3AAF-A0A824N1N8-F1-model_v4_TED01","TED novel fold AF-A0A824N1N8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:5722","l":"Trichomonas vaginalis","na":3,"nb":7,"a":[["membrane_organelle/hydrogenosomal_membrane.html","hydrogenosomal membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/hydrogenosome_lumen.html","hydrogenosome lumen"]],"b":[["TED%3AAF-A2F3M7-F1-model_v4_TED03","TED highly-symmetric fold AF-A2F3M7-F1-model_v4_TED03"],["TED%3AAF-A2HEW4-F1-model_v4_TED01","TED highly-symmetric fold AF-A2HEW4-F1-model_v4_TED01"],["TED%3AAF-A2DT59-F1-model_v4_TED01","TED novel fold AF-A2DT59-F1-model_v4_TED01"],["TED%3AAF-A2E7I9-F1-model_v4_TED02","TED novel fold AF-A2E7I9-F1-model_v4_TED02"],["TED%3AAF-A2F6I8-F1-model_v4_TED02","TED novel fold AF-A2F6I8-F1-model_v4_TED02"],["TED%3AAF-A2FV33-F1-model_v4_TED01","TED novel fold AF-A2FV33-F1-model_v4_TED01"]]},{"id":"GO:0005628","l":"prospore membrane","na":6,"nb":3,"a":[["spore/ascospore_wall.html","ascospore wall"],["spore/endospore_forming_forespore.html","endospore-forming forespore"],["spore/prospore_membrane.html","prospore membrane"],["spore/prospore_membrane_leading_edge.html","prospore membrane leading edge"],["spore/prospore_membrane_spindle_pole_body_attachment_site.html","prospore membrane spindle pole body attachment site"],["spore/spore_inner_membrane.html","spore inner membrane"]],"b":[["ComplexPortal%3ACPX-5464","Vesicular SNARE complex SSO1-SPO20-SNC1"],["ComplexPortal%3ACPX-5466","Vesicular SNARE complex SSO1-SPO20-SNC2"],["GO%3A0005628","prospore membrane"]]},{"id":"GO:0030122","l":"AP-2 adaptor complex","na":3,"nb":6,"a":[["other/ap_2_adaptor_complex.html","AP-2 adaptor complex"],["other/clathrin_coat_of_coated_pit.html","clathrin coat of coated pit"],["other/clathrin_coat_of_endocytic_vesicle.html","clathrin coat of endocytic vesicle"]],"b":[["ComplexPortal%3ACPX-534","Adapter complex AP-2"],["ComplexPortal%3ACPX-5149","AP-2 Adaptor complex, alpha1 variant"],["ComplexPortal%3ACPX-5152","AP-2 Adaptor complex, alpha1 variant"],["ComplexPortal%3ACPX-5150","AP-2 Adaptor complex, alpha2 variant"],["ComplexPortal%3ACPX-5153","AP-2 Adaptor complex, alpha2 variant"],["GO%3A0030122","AP-2 adaptor complex"]]},{"id":"GO:0031978","l":"plastid thylakoid lumen","na":6,"nb":3,"a":[["membrane_organelle/chloroplast_thylakoid_lumen.html","chloroplast thylakoid lumen"],["membrane_organelle/cyanelle_thylakoid_lumen.html","cyanelle thylakoid lumen"],["membrane_organelle/organellar_chromatophore_thylakoid_lumen.html","organellar chromatophore thylakoid lumen"],["membrane_organelle/plastid_thylakoid.html","plastid thylakoid"],["membrane_organelle/plastid_thylakoid_lumen.html","plastid thylakoid lumen"],["membrane_organelle/plastid_thylakoid_membrane.html","plastid thylakoid membrane"]],"b":[["GO%3A0009543","chloroplast thylakoid lumen"],["GO%3A0033114","cyanelle thylakoid lumen"],["GO%3A0031978","plastid thylakoid lumen"]]},{"id":"GO:1990072","l":"TRAPPIII protein complex","na":3,"nb":6,"a":[["other/trappi_protein_complex.html","TRAPPI protein complex"],["other/trappii_protein_complex.html","TRAPPII protein complex"],["other/trappiii_protein_complex.html","TRAPPIII protein complex"]],"b":[["ComplexPortal%3ACPX-4766","TRAPP III complex"],["ComplexPortal%3ACPX-4750","TRAPP III complex, TRAPPC2 variant"],["ComplexPortal%3ACPX-6903","TRAPP III complex, TRAPPC2B variant"],["ComplexPortal%3ACPX-2279","TRAPPIII complex"],["ComplexPortal%3ACPX-1383","TRAPPIII protein complex"],["GO%3A1990072","TRAPPIII protein complex"]]},{"id":"NCBITaxon:284813","l":"Encephalitozoon cuniculi (strain GB-M1)","na":3,"nb":6,"a":[["spore/microsporidian_type_endospore.html","microsporidian-type endospore"],["spore/microsporidian_type_exospore.html","microsporidian-type exospore"],["spore/polar_tube_anchoring_disc.html","polar tube anchoring disc"]],"b":[["Pfam%3APF17027","Histone-fold protein"],["Pfam%3APF10455","Bin/amphiphysin/Rvs domain for vesicular trafficking"],["Pfam%3APF07753","Protein of unknown function (DUF1609)"],["Pfam%3APF09591","Protein of unknown function (DUF2463)"],["Pfam%3APF12376","Protein of unknown function (DUF3654)"],["TED%3AAF-Q8SVN2-F1-model_v4_TED01","TED novel fold AF-Q8SVN2-F1-model_v4_TED01"]]},{"id":"GO:0009431","l":"bacterial-type flagellum basal body, MS ring","na":5,"nb":3,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"],["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"],["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["GO%3A0009431","bacterial-type flagellum basal body, MS ring"],["NCBIfam%3ATIGR00206","flagellar basal-body MS-ring/collar protein FliF"],["NCBIfam%3ATIGR00205","flagellar hook-basal body complex protein FliE"]]},{"id":"GO:0030118","l":"clathrin coat","na":5,"nb":3,"a":[["other/clathrin_coat.html","clathrin coat"],["other/clathrin_coat_of_coated_pit.html","clathrin coat of coated pit"],["other/clathrin_coat_of_endocytic_vesicle.html","clathrin coat of endocytic vesicle"],["other/clathrin_coat_of_trans_golgi_network_vesicle.html","clathrin coat of trans-Golgi network vesicle"],["other/membrane_coat.html","membrane coat"]],"b":[["GO%3A0030118","clathrin coat"],["GO%3A0030132","clathrin coat of coated pit"],["GO%3A0030125","clathrin vesicle coat"]]},{"id":"GO:0030904","l":"retromer complex","na":3,"nb":5,"a":[["other/retromer_cargo_selective_complex.html","retromer, cargo-selective complex"],["other/retromer_complex.html","retromer complex"],["other/retromer_tubulation_complex.html","retromer, tubulation complex"]],"b":[["ComplexPortal%3ACPX-1653","Retromer complex"],["ComplexPortal%3ACPX-2610","Retromer complex"],["ComplexPortal%3ACPX-26687","Retromer complex"],["GO%3A0030904","retromer complex"],["InterPro%3AIPR037918","SNX2, PX domain"]]},{"id":"GO:0033113","l":"cyanelle membrane","na":5,"nb":3,"a":[["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"],["membrane_organelle/plastid_membrane.html","plastid membrane"]],"b":[["GO%3A0036012","cyanelle inner membrane"],["GO%3A0033113","cyanelle membrane"],["GO%3A0036013","cyanelle outer membrane"]]},{"id":"GO:0045037","l":"protein import into chloroplast stroma","na":5,"nb":3,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"],["other/tic_complex.html","Tic complex"],["other/toc_complex.html","Toc complex"]],"b":[["GO%3A0045037","protein import into chloroplast stroma"],["PANTHER%3APTHR47296","PROTEIN TIC 40, CHLOROPLASTIC"],["PANTHER%3APTHR37755","PROTEIN TIC 56, CHLOROPLASTIC"]]},{"id":"InterPro:IPR020013","l":"","na":3,"nb":5,"a":[["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"]],"b":[["Pfam%3APF06429","Flagellar basal body rod FlgEFG protein C-terminal"],["Pfam%3APF22367","Flagellar hook protein FlgE, third domain"],["Pfam%3APF07559","Flagellar basal body protein FlaE D2 domain"],["Pfam%3APF00460","Flagella basal body rod protein"],["PROSITE%3APS00588","Flagella basal body rod proteins signature"]]},{"id":"GO:0005782","l":"peroxisomal matrix","na":3,"nb":4,"a":[["membrane_organelle/peroxisomal_matrix.html","peroxisomal matrix"],["membrane_organelle/peroxisomal_membrane.html","peroxisomal membrane"],["membrane_organelle/peroxisome.html","peroxisome"]],"b":[["GO%3A0034468","glycosome lumen"],["GO%3A0031908","glyoxysomal lumen"],["GO%3A0005782","peroxisomal matrix"],["PANTHER%3APTHR46027","PEROXISOMAL TARGETING SIGNAL 2 RECEPTOR"]]},{"id":"GO:0005858","l":"axonemal dynein complex","na":3,"nb":4,"a":[["cytoskeleton/axonemal_dynein_complex.html","axonemal dynein complex"],["cytoskeleton/inner_dynein_arm.html","inner dynein arm"],["cytoskeleton/outer_dynein_arm.html","outer dynein arm"]],"b":[["GO%3A0005858","axonemal dynein complex"],["GO%3A0036156","inner dynein arm"],["GO%3A0036157","outer dynein arm"],["PANTHER%3APTHR46532","MALE FERTILITY FACTOR KL5"]]},{"id":"GO:0009428","l":"bacterial-type flagellum basal body, distal rod, P ring","na":3,"nb":4,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]],"b":[["GO%3A0009428","bacterial-type flagellum basal body, distal rod, P ring"],["NCBIfam%3ATIGR03170","flagellar basal body P-ring formation chaperone FlgA"],["NCBIfam%3ANF014206","flagellar basal body P-ring protein FlgI"],["Pfam%3APF02119","Flagellar P-ring protein"]]},{"id":"GO:0009433","l":"bacterial-type flagellum basal body, C ring","na":4,"nb":3,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"]],"b":[["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009433","bacterial-type flagellum basal body, C ring"]]},{"id":"GO:0009765","l":"photosynthesis, light harvesting","na":3,"nb":4,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"]],"b":[["GO%3A0009765","photosynthesis, light harvesting"],["GO%3A0009768","photosynthesis, light harvesting in photosystem I"],["GO%3A0009769","photosynthesis, light harvesting in photosystem II"],["NCBIfam%3ATIGR03041","chlorophyll a/b binding light-harvesting protein"]]},{"id":"GO:0030670","l":"phagocytic vesicle membrane","na":3,"nb":4,"a":[["membrane_organelle/phagocytic_vesicle.html","phagocytic vesicle"],["membrane_organelle/phagocytic_vesicle_lumen.html","phagocytic vesicle lumen"],["membrane_organelle/phagocytic_vesicle_membrane.html","phagocytic vesicle membrane"]],"b":[["GO%3A0030671","clathrin-coated phagocytic vesicle membrane"],["GO%3A0036186","early phagosome membrane"],["GO%3A0030670","phagocytic vesicle membrane"],["GO%3A0061474","phagolysosome membrane"]]},{"id":"GO:0071682","l":"endocytic vesicle lumen","na":4,"nb":3,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle_lumen.html","clathrin-coated endocytic vesicle lumen"],["membrane_organelle/endocytic_vesicle.html","endocytic vesicle"],["membrane_organelle/endocytic_vesicle_lumen.html","endocytic vesicle lumen"],["membrane_organelle/endocytic_vesicle_membrane.html","endocytic vesicle membrane"]],"b":[["GO%3A0106176","clathrin-coated endocytic vesicle lumen"],["GO%3A0071682","endocytic vesicle lumen"],["GO%3A0097013","phagocytic vesicle lumen"]]},{"id":"NCBITaxon:431944","l":"Magnetospirillum gryphiswaldense MSR-1","na":4,"nb":3,"a":[["cytoskeleton/mamk_filament.html","MamK filament"],["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]],"b":[["Pfam%3APF12728","Helix-turn-helix domain"],["Pfam%3APF04011","LemA family"],["Pfam%3APF07219","HemY protein N-terminus"]]},{"id":"GO:0034357","l":"photosynthetic membrane","na":3,"nb":3,"a":[["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"],["membrane_organelle/plasma_membrane_derived_chromatophore_membrane.html","plasma membrane-derived chromatophore membrane"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["GO%3A0034357","photosynthetic membrane"],["GO%3A0042717","plasma membrane-derived chromatophore membrane"],["GO%3A0042651","thylakoid membrane"]]},{"id":"GO:0051012","l":"microtubule sliding","na":3,"nb":3,"a":[["cytoskeleton/axonemal_dynein_complex.html","axonemal dynein complex"],["cytoskeleton/inner_dynein_arm.html","inner dynein arm"],["cytoskeleton/outer_dynein_arm.html","outer dynein arm"]],"b":[["GO%3A0051012","microtubule sliding"],["GO%3A0031534","minus-end directed microtubule sliding"],["GO%3A0031535","plus-end directed microtubule sliding"]]},{"id":"GO:0055038","l":"recycling endosome membrane","na":3,"nb":3,"a":[["membrane_organelle/recycling_endosome.html","recycling endosome"],["membrane_organelle/recycling_endosome_lumen.html","recycling endosome lumen"],["membrane_organelle/recycling_endosome_membrane.html","recycling endosome membrane"]],"b":[["GO%3A0055038","recycling endosome membrane"],["PANTHER%3APTHR15726","RAB11-FAMILY INTERACTING PROTEIN"],["PANTHER%3APTHR10687","SECRETORY CARRIER-ASSOCIATED MEMBRANE PROTEIN SCAMP"]]},{"id":"GO:0097013","l":"phagocytic vesicle lumen","na":3,"nb":3,"a":[["membrane_organelle/phagocytic_vesicle.html","phagocytic vesicle"],["membrane_organelle/phagocytic_vesicle_lumen.html","phagocytic vesicle lumen"],["membrane_organelle/phagocytic_vesicle_membrane.html","phagocytic vesicle membrane"]],"b":[["GO%3A0062113","early phagosome lumen"],["GO%3A0097013","phagocytic vesicle lumen"],["GO%3A0106174","phagolysosome vesicle lumen"]]},{"id":"NCBITaxon:274","l":"Thermus thermophilus","na":3,"nb":3,"a":[["energy_complex/respiratory_chain_complex_i.html","respiratory chain complex I"],["ribonucleoprotein/ribosome.html","ribosome"],["ribonucleoprotein/small_ribosomal_subunit.html","small ribosomal subunit"]],"b":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF01861","Branched-chain polyamine synthase A C-terminal domain"],["Pfam%3APF07736","Chorismate mutase type I"]]},{"id":"GO:0110165","l":"cellular anatomical structure","na":2,"nb":1312,"a":[["other/phagophore_assembly_site.html","phagophore assembly site"],["other/popz_polar_microdomain.html","PopZ polar microdomain"]],"b":[["GO%3A0031672","A band"],["GO%3A0036063","acroblast"],["GO%3A0043159","acrosomal matrix"],["GO%3A0099079","actin body"],["GO%3A0030478","actin cap"],["GO%3A0061834","actin filament branch point"]]},{"id":"GO:0006260","l":"DNA replication","na":2,"nb":311,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"],["other/single_stranded_dna_binding_protein_complex.html","single-stranded DNA-binding protein complex"]],"b":[["ComplexPortal%3ACPX-6641","ASCC DNA alkylation repair complex"],["ComplexPortal%3ACPX-568","Chromatin assembly factor 1 complex"],["ComplexPortal%3ACPX-2671","CMG helicase complex"],["ComplexPortal%3ACPX-297","CMG helicase complex"],["ComplexPortal%3ACPX-4526","CMG helicase complex"],["ComplexPortal%3ACPX-4541","CMG helicase complex"]]},{"id":"GO:0098797","l":"plasma membrane protein complex","na":2,"nb":216,"a":[["division_machinery/elongasome.html","elongasome"],["other/ap_2_adaptor_complex.html","AP-2 adaptor complex"]],"b":[["ComplexPortal%3ACPX-850","AHNAK - Annexin A2 - S100-A10 complex"],["ComplexPortal%3ACPX-905","AHNAK - Annexin A2 - S100-A10 complex"],["ComplexPortal%3ACPX-853","Annexin A2 - S100-A10 complex"],["ComplexPortal%3ACPX-898","Annexin A2 - S100-A10 complex"],["ComplexPortal%3ACPX-9322","B-T lymphocyte attenuator, BTLA-TNFRSF14 complex"],["ComplexPortal%3ACPX-4602","FtsEX ABC cell division complex"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":190,"nb":2,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"],["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/septin_ring.html","septin ring"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"],["cytoskeleton/spindle_pole_body.html","spindle pole body"]],"b":[["PROSITE%3APS00820","Glucoamylase active site region signature"],["TED%3AAF-A0A7I9G6Y3-F1-model_v4_TED02","TED novel fold AF-A0A7I9G6Y3-F1-model_v4_TED02"]]},{"id":"GO:0015934","l":"large ribosomal subunit","na":2,"nb":130,"a":[["ribonucleoprotein/large_ribosomal_subunit.html","large ribosomal subunit"],["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["GO%3A0022625","cytosolic large ribosomal subunit"],["GO%3A0015934","large ribosomal subunit"],["GO%3A0000315","organellar large ribosomal subunit"],["NCBIfam%3ATIGR01169","50S ribosomal protein L1"],["NCBIfam%3ANF000955","50S ribosomal protein L10"],["NCBIfam%3ATIGR01077","50S ribosomal protein L13"]]},{"id":"NCBITaxon:83334","l":"Escherichia coli O157:H7","na":2,"nb":130,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"]],"b":[["IDPO%3A0000011","disorder to order"],["IDPO%3A0000014","order to disorder"],["Pfam%3APF12343","DeaD helicase C-terminal disordered region"],["Pfam%3APF26539","YhiD C-terminal ACT domain"],["Pfam%3APF01081","KDPG and KHG aldolase"],["Pfam%3APF10423","Bacterial AMP nucleoside phosphorylase N-terminus"]]},{"id":"GO:0005730","l":"nucleolus","na":2,"nb":121,"a":[["membrane_organelle/nuclear_lumen.html","nuclear lumen"],["other/nucleolus.html","nucleolus"]],"b":[["ComplexPortal%3ACPX-1099","B-WICH chromatin remodelling complex"],["ComplexPortal%3ACPX-1133","B-WICH chromatin remodelling complex"],["ComplexPortal%3ACPX-26423","Box C/D snoRNA-guided RNP methyltransferase complex, FBL variant"],["ComplexPortal%3ACPX-26377","Box C/D snoRNA-Guided RNP methyltransferase complex, FBLL1 variant"],["ComplexPortal%3ACPX-3905","Caspase-2 PIDDosome"],["ComplexPortal%3ACPX-3963","Caspase-2 PIDDosome"]]},{"id":"GO:0015935","l":"small ribosomal subunit","na":2,"nb":113,"a":[["ribonucleoprotein/ribosome.html","ribosome"],["ribonucleoprotein/small_ribosomal_subunit.html","small ribosomal subunit"]],"b":[["GO%3A0022627","cytosolic small ribosomal subunit"],["GO%3A0000314","organellar small ribosomal subunit"],["GO%3A0015935","small ribosomal subunit"],["NCBIfam%3ATIGR01046","30S ribosomal protein S10"],["NCBIfam%3ATIGR00981","30S ribosomal protein S12"],["NCBIfam%3ATIGR00982","30S ribosomal protein S12"]]},{"id":"GO:0003918","l":"DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) activity","na":2,"nb":109,"a":[["other/dna_gyrase_complex.html","DNA gyrase complex"],["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["EC%3A5.6.2.2","DNA topoisomerase (ATP-hydrolyzing)"],["ComplexPortal%3ACPX-2177","GyrA-GyrB DNA Gyrase complex"],["ComplexPortal%3ACPX-26662","SPO11 DNA endo-reduplication complex"],["ComplexPortal%3ACPX-26657","SPO11 meiotic recombination initiation complex"],["ComplexPortal%3ACPX-26658","SPO11 meiotic recombination initiation complex"],["ComplexPortal%3ACPX-26659","SPO11 meiotic recombination initiation complex"]]},{"id":"GO:0012505","l":"endomembrane system","na":2,"nb":109,"a":[["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"],["membrane_organelle/golgi_apparatus.html","Golgi apparatus"]],"b":[["ComplexPortal%3ACPX-1627","RAVE complex"],["ComplexPortal%3ACPX-25781","RAVE complex"],["ComplexPortal%3ACPX-1653","Retromer complex"],["ComplexPortal%3ACPX-2610","Retromer complex"],["ComplexPortal%3ACPX-26687","Retromer complex"],["GO%3A0012505","endomembrane system"]]},{"id":"GO:0098588","l":"bounding membrane of organelle","na":2,"nb":94,"a":[["appendage/ciliary_membrane.html","ciliary membrane"],["membrane_organelle/endocytic_vesicle_membrane.html","endocytic vesicle membrane"]],"b":[["GO%3A0033102","acidocalcisome membrane"],["GO%3A0032578","aleurone grain membrane"],["GO%3A0033111","attachment organelle membrane"],["GO%3A0098588","bounding membrane of organelle"],["GO%3A0030661","chitosome membrane"],["GO%3A0060170","ciliary membrane"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":2,"nb":93,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17544","requires hydrogencarbonate"],["EC%3A1.13.11.73","methylphosphonate synthase"],["EC%3A1.2.1.27","methylmalonate-semialdehyde dehydrogenase (CoA acylating)"],["EC%3A2.5.1.120","aminodeoxyfutalosine synthase"],["EC%3A2.5.1.143","pyridinium-3,5-biscarboxylic acid mononucleotide synthase"],["EC%3A2.7.2.2","carbamate kinase"]]},{"id":"GO:0009252","l":"peptidoglycan biosynthetic process","na":2,"nb":90,"a":[["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/elongasome.html","elongasome"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["GO%3A0009252","peptidoglycan biosynthetic process"],["GO%3A0018104","peptidoglycan-protein cross-linking"],["NCBIfam%3ATIGR00492","alanine racemase"],["NCBIfam%3ANF007061","bifunctional glycosyl transferase/transpeptidase"],["NCBIfam%3ANF006986","bifunctional UDP-N-acetylglucosamine diphosphorylase/glucosamine-1-phosphate N-acetyltransferase GlmU"]]},{"id":"GO:0042597","l":"periplasmic space","na":2,"nb":76,"a":[["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"],["envelope/periplasmic_space.html","periplasmic space"]],"b":[["ComplexPortal%3ACPX-3447","NapAB nitrate reductase complex"],["ComplexPortal%3ACPX-4281","PaoABC periplasmic aldehyde oxidoreductase"],["GO%3A0030287","cell wall-bounded periplasmic space"],["GO%3A0030288","outer membrane-bounded periplasmic space"],["GO%3A0042597","periplasmic space"],["GO%3A0036240","septal periplasm"]]},{"id":"GO:0006888","l":"endoplasmic reticulum to Golgi vesicle-mediated transport","na":2,"nb":60,"a":[["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"],["other/trappi_protein_complex.html","TRAPPI protein complex"]],"b":[["ComplexPortal%3ACPX-1698","EMP24 complex"],["ComplexPortal%3ACPX-7221","ERGIC2-ERGIC3 retrograde receptor complex"],["ComplexPortal%3ACPX-1854","Golgi SNARE complex SED5-BOS1-BET1-SEC22"],["ComplexPortal%3ACPX-1855","Golgi SNARE complex SED5-GOS1-SFT1-YKT6"],["ComplexPortal%3ACPX-8001","LMAN1-MCFD2 cargo receptor complex"],["ComplexPortal%3ACPX-4764","TRAPP II complex"]]},{"id":"GO:0010498","l":"proteasomal protein catabolic process","na":2,"nb":60,"a":[["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"]],"b":[["ComplexPortal%3ACPX-9003","20S immunoproteasome complex"],["ComplexPortal%3ACPX-8806","20S proteasome complex"],["ComplexPortal%3ACPX-9021","20S spermatoproteasome complex"],["ComplexPortal%3ACPX-9004","20S thymoproteasome complex"],["ComplexPortal%3ACPX-9077","26S proteasome complex"],["ComplexPortal%3ACPX-9087","26S proteasome complex, testis-specific variant"]]},{"id":"GO:0051276","l":"chromosome organization","na":2,"nb":49,"a":[["nucleoid/nucleoid.html","nucleoid"],["other/nuclear_chromosome.html","nuclear chromosome"]],"b":[["ComplexPortal%3ACPX-1249","SDS22-GLC7 phosphatase complex"],["ComplexPortal%3ACPX-1260","SDS22-GLC7-YPI1 phosphatase complex"],["GO%3A0036386","bacterial nucleoid DNA packaging"],["GO%3A0141112","broken chromosome clustering"],["GO%3A0030261","chromosome condensation"],["GO%3A0051276","chromosome organization"]]},{"id":"GO:0000932","l":"P-body","na":2,"nb":48,"a":[["ribonucleoprotein/cytoplasmic_stress_granule.html","cytoplasmic stress granule"],["ribonucleoprotein/p_body.html","P-body"]],"b":[["ComplexPortal%3ACPX-1185","DCS1-DCS2 regulator of decapping scavenger complex"],["ComplexPortal%3ACPX-45","LSM1-7 complex"],["ComplexPortal%3ACPX-112","LSM1-7-PAT1 complex"],["ComplexPortal%3ACPX-1308","LSM1-7-PAT1 complex, variant LSM1A-LSM3A-LSM6A-PAT1"],["ComplexPortal%3ACPX-1391","LSM1-7-PAT1 complex, variant LSM1A-LSM3A-LSM6A-PAT1H1"],["ComplexPortal%3ACPX-1399","LSM1-7-PAT1 complex, variant LSM1A-LSM3A-LSM6A-PAT1H2"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":46,"a":[["envelope/periplasmic_space.html","periplasmic space"],["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"]],"b":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF13166","AAA domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF27533","CapK C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"]]},{"id":"GO:0042147","l":"retrograde transport, endosome to Golgi","na":2,"nb":41,"a":[["other/garp_complex.html","GARP complex"],["other/retromer_complex.html","retromer complex"]],"b":[["ComplexPortal%3ACPX-5322","Endosomal SNARE complex TLG2-VTI1-TLG1-SNC1"],["ComplexPortal%3ACPX-5321","Endosomal SNARE complex TLG2-VTI1-TLG1-SNC2"],["ComplexPortal%3ACPX-1718","GARP tethering complex"],["ComplexPortal%3ACPX-365","GARP tethering complex"],["ComplexPortal%3ACPX-6208","GARP tethering complex"],["ComplexPortal%3ACPX-2788","GARP tethering complex, Vps50 variant"]]},{"id":"GO:0006402","l":"mRNA catabolic process","na":2,"nb":39,"a":[["ribonucleoprotein/bacterial_degradosome.html","bacterial degradosome"],["ribonucleoprotein/p_body.html","P-body"]],"b":[["ComplexPortal%3ACPX-2771","CCR4-NOT mRNA deadenylase complex"],["ComplexPortal%3ACPX-11781","Lyric-SND1 RNA regulator complex"],["ComplexPortal%3ACPX-2733","miRNA RISC complex"],["ComplexPortal%3ACPX-1040","SKI complex"],["GO%3A0141065","maternal mRNA clearance"],["GO%3A0000958","mitochondrial mRNA catabolic process"]]},{"id":"NCBITaxon:272634","l":"Mycoplasmoides pneumoniae (strain ATCC 29342 / M129 / Subtype 1)","na":2,"nb":38,"a":[["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"]],"b":[["Pfam%3APF01812","5-formyltetrahydrofolate cyclo-ligase family"],["Pfam%3APF03257","Mycoplasma adhesin P1, C-terminal"],["Pfam%3APF22509","CARDS D2, beta trefoil domain"],["Pfam%3APF22346","ADP-ribosylating toxin CARDS, C-terminal beta-trefoil domain"],["Pfam%3APF21694","DNA polymerase III delta subunit, C-terminal domain"],["Pfam%3APF01519","Protein of unknown function DUF16"]]},{"id":"GO:0008360","l":"regulation of cell shape","na":2,"nb":35,"a":[["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/elongasome.html","elongasome"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["ComplexPortal%3ACPX-2499","Erythrocyte spectrin complex"],["GO%3A0071963","establishment or maintenance of cell polarity regulating cell shape"],["GO%3A0008360","regulation of cell shape"],["GO%3A0061389","regulation of direction of cell growth"],["GO%3A0016476","regulation of embryonic cell shape"]]},{"id":"GO:0030141","l":"secretory granule","na":2,"nb":33,"a":[["membrane_organelle/apicomplexan_dense_granule.html","apicomplexan dense granule"],["membrane_organelle/mucocyst.html","mucocyst"]],"b":[["GO%3A0001669","acrosomal vesicle"],["GO%3A0020026","apicomplexan dense granule"],["GO%3A0042582","azurophil granule"],["GO%3A0042583","chromaffin granule"],["GO%3A0060473","cortical granule"],["GO%3A0031045","dense core granule"]]},{"id":"GO:0015977","l":"carbon fixation","na":2,"nb":30,"a":[["microcompartment/carboxysome.html","carboxysome"],["other/pyrenoid.html","pyrenoid"]],"b":[["GO%3A0009760","C4 photosynthesis"],["GO%3A0009761","CAM photosynthesis"],["GO%3A0043427","carbon fixation by 3-hydroxypropionate cycle"],["GO%3A0030634","carbon fixation by acetyl-CoA pathway"],["GO%3A0015977","carbon fixation"],["GO%3A0019643","reductive tricarboxylic acid cycle"]]},{"id":"GO:0071013","l":"catalytic step 2 spliceosome","na":2,"nb":29,"a":[["ribonucleoprotein/u12_type_catalytic_step_2_spliceosome.html","U12-type catalytic step 2 spliceosome"],["ribonucleoprotein/u2_type_catalytic_step_2_spliceosome.html","U2-type catalytic step 2 spliceosome"]],"b":[["GO%3A0071013","catalytic step 2 spliceosome"],["GO%3A0071018","U12-type catalytic step 2 spliceosome"],["GO%3A0071007","U2-type catalytic step 2 spliceosome"],["PANTHER%3APTHR13296","BCAS2 PROTEIN"],["PANTHER%3APTHR12718","CELL CYCLE CONTROL PROTEIN CWF15"],["PANTHER%3APTHR12940","ES-2 PROTEIN - RELATED"]]},{"id":"GO:0046961","l":"proton-transporting ATPase activity, rotational mechanism","na":2,"nb":26,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v1_domain.html","vacuolar proton-transporting V-type ATPase, V1 domain"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["ComplexPortal%3ACPX-2470","Vacuolar proton translocating ATPase complex, ATP6V0A1 variant"],["ComplexPortal%3ACPX-6904","Vacuolar proton translocating ATPase complex, ATP6V0A2 variant"],["ComplexPortal%3ACPX-6905","Vacuolar proton translocating ATPase complex, ATP6V0A3 variant"],["ComplexPortal%3ACPX-6912","Vacuolar proton translocating ATPase complex, ATP6V0A4 variant"],["ComplexPortal%3ACPX-1192","Vacuolar proton translocating ATPase complex, Golgi variant"]]},{"id":"GO:0000145","l":"exocyst","na":2,"nb":25,"a":[["other/cellular_bud_tip.html","cellular bud tip"],["other/exocyst.html","exocyst"]],"b":[["ComplexPortal%3ACPX-1890","Exocyst complex"],["ComplexPortal%3ACPX-26496","Exocyst complex"],["ComplexPortal%3ACPX-2465","Exocyst"],["ComplexPortal%3ACPX-712","Exocyst"],["ComplexPortal%3ACPX-4943","Exocyst, EXOC6 variant"],["ComplexPortal%3ACPX-4982","Exocyst, Exoc6 variant"]]},{"id":"GO:0071011","l":"precatalytic spliceosome","na":2,"nb":24,"a":[["ribonucleoprotein/u12_type_precatalytic_spliceosome.html","U12-type precatalytic spliceosome"],["ribonucleoprotein/u2_type_precatalytic_spliceosome.html","U2-type precatalytic spliceosome"]],"b":[["ComplexPortal%3ACPX-26435","Major Spliceosomal B complex"],["ComplexPortal%3ACPX-26429","Major Spliceosomal Pre-B complex"],["GO%3A0071011","precatalytic spliceosome"],["GO%3A0071016","U12-type precatalytic spliceosome"],["GO%3A0071005","U2-type precatalytic spliceosome"],["PANTHER%3APTHR46589","APOPTOTIC CHROMATIN CONDENSATION INDUCER IN THE NUCLEUS"]]},{"id":"GO:0072686","l":"mitotic spindle","na":2,"nb":24,"a":[["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"]],"b":[["ComplexPortal%3ACPX-1041","DASH complex"],["ComplexPortal%3ACPX-4027","gpr-1-gpr-2-lin-5 complex"],["GO%3A0072686","mitotic spindle"],["PANTHER%3APTHR46930","CDK5 REGULATORY SUBUNIT-ASSOCIATED PROTEIN 2"],["PANTHER%3APTHR47078","CYTOSKELETON-ASSOCIATED PROTEIN 2-LIKE"],["PANTHER%3APTHR28036","DASH COMPLEX SUBUNIT DAD2"]]},{"id":"GO:0005819","l":"spindle","na":2,"nb":20,"a":[["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"]],"b":[["ComplexPortal%3ACPX-3463","Central spindlin complex"],["GO%3A0072687","meiotic spindle"],["GO%3A0072686","mitotic spindle"],["GO%3A0005819","spindle"],["PANTHER%3APTHR31022","CENTRIOLE, CILIA AND SPINDLE-ASSOCIATED PROTEIN"],["PANTHER%3APTHR46725","COILED-COIL DOMAIN-CONTAINING PROTEIN 57"]]},{"id":"GO:0030658","l":"transport vesicle membrane","na":2,"nb":20,"a":[["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"],["membrane_organelle/trans_golgi_network_transport_vesicle_membrane.html","trans-Golgi network transport vesicle membrane"]],"b":[["GO%3A0060201","clathrin-sculpted acetylcholine transport vesicle membrane"],["GO%3A0060203","clathrin-sculpted glutamate transport vesicle membrane"],["GO%3A0070083","clathrin-sculpted monoamine transport vesicle membrane"],["GO%3A0012507","ER to Golgi transport vesicle membrane"],["GO%3A0099501","exocytic vesicle membrane"],["GO%3A0012508","Golgi to ER transport vesicle membrane"]]},{"id":"GO:0000048","l":"peptidyltransferase activity","na":2,"nb":18,"a":[["ribonucleoprotein/large_ribosomal_subunit.html","large ribosomal subunit"],["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["EC%3A2.3.2.12","peptidyltransferase"],["ComplexPortal%3ACPX-5226","39S mitochondrial large ribosomal subunit"],["ComplexPortal%3ACPX-5302","39S mitochondrial large ribosomal subunit"],["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["ComplexPortal%3ACPX-1602","54S mitochondrial large ribosomal subunit"],["ComplexPortal%3ACPX-1601","60S cytosolic large ribosomal subunit"]]},{"id":"GO:0005876","l":"spindle microtubule","na":2,"nb":18,"a":[["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"]],"b":[["GO%3A0000235","astral microtubule"],["GO%3A0005828","kinetochore microtubule"],["GO%3A1990498","mitotic spindle microtubule"],["GO%3A0005827","polar microtubule"],["GO%3A0005876","spindle microtubule"],["PANTHER%3APTHR46725","COILED-COIL DOMAIN-CONTAINING PROTEIN 57"]]},{"id":"GO:0031411","l":"gas vesicle","na":2,"nb":18,"a":[["inclusion/gas_vesicle.html","gas vesicle"],["inclusion/gas_vesicle_shell.html","gas vesicle shell"]],"b":[["GO%3A0031411","gas vesicle"],["NCBIfam%3ANF041667","gas vesicle accessory protein GvpU"],["NCBIfam%3ANF046092","gas vesicle protein GvpA"],["NCBIfam%3ANF045779","gas vesicle protein GvpG"],["NCBIfam%3ANF046090","gas vesicle protein GvpJ"],["NCBIfam%3ANF045778","gas vesicle protein GvpL"]]},{"id":"GO:0031982","l":"vesicle","na":2,"nb":18,"a":[["membrane_organelle/cytoplasmic_vesicle.html","cytoplasmic vesicle"],["membrane_organelle/multivesicular_body_intraluminal_vesicle.html","multivesicular body intraluminal vesicle"]],"b":[["GO%3A1903561","extracellular vesicle"],["GO%3A0097708","intracellular vesicle"],["GO%3A0031982","vesicle"],["PANTHER%3APTHR47395","BPI FOLD-CONTAINING FAMILY B MEMBER 1"],["PANTHER%3APTHR15152","CD70 ANTIGEN"],["PANTHER%3APTHR44314","CILIA- AND FLAGELLA-ASSOCIATED PROTEIN 70"]]},{"id":"GO:0046540","l":"U4/U6 x U5 tri-snRNP complex","na":2,"nb":18,"a":[["ribonucleoprotein/u2_type_precatalytic_spliceosome.html","U2-type precatalytic spliceosome"],["ribonucleoprotein/u4_u6_x_u5_tri_snrnp_complex.html","U4/U6 x U5 tri-snRNP complex"]],"b":[["ComplexPortal%3ACPX-2391","U4/U6.U5 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-25","U4/U6.U5 tri-small nuclear ribonucleoprotein complex"],["GO%3A0046540","U4/U6 x U5 tri-snRNP complex"],["NCBIfam%3ANF014962","Mitosis protein DIM1"],["InterPro%3AIPR045347","HIND motif"],["InterPro%3AIPR034103","Sm-like protein Lsm8"]]},{"id":"GO:0033103","l":"protein secretion by the type VI secretion system","na":2,"nb":17,"a":[["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"],["secretion_system/type_vi_secretion_system_contractile_sheath.html","type VI secretion system contractile sheath"]],"b":[["GO%3A0033103","protein secretion by the type VI secretion system"],["NCBIfam%3ATIGR03354","type VI secretion system-associated FHA domain protein TagH"],["NCBIfam%3ATIGR03345","type VI secretion system ATPase TssH"],["NCBIfam%3ATIGR03357","type VI secretion system baseplate subunit TssE"],["NCBIfam%3ATIGR03359","type VI secretion system baseplate subunit TssF"],["NCBIfam%3ATIGR03347","type VI secretion system baseplate subunit TssG"]]},{"id":"GO:0035869","l":"ciliary transition zone","na":2,"nb":17,"a":[["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"]],"b":[["ComplexPortal%3ACPX-2789","CEP290 complex"],["ComplexPortal%3ACPX-2536","CEP290-NPHP5 transition zone complex"],["ComplexPortal%3ACPX-2339","MKS complex"],["ComplexPortal%3ACPX-2531","MKS transition zone complex"],["ComplexPortal%3ACPX-2806","NPHP transition zone complex"],["GO%3A0035869","ciliary transition zone"]]},{"id":"NCBITaxon:5888","l":"Paramecium tetraurelia","na":2,"nb":17,"a":[["cytoskeleton/ciliary_rootlet.html","ciliary rootlet"],["membrane_organelle/trichocyst.html","trichocyst"]],"b":[["Pfam%3APF14926","Cilia- and flagella-associated protein 300"],["TED%3AAF-A0C038-F1-model_v4_TED07","TED highly-symmetric fold AF-A0C038-F1-model_v4_TED07"],["TED%3AAF-A0CFS1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0CFS1-F1-model_v4_TED02"],["TED%3AAF-A0CHQ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0CHQ8-F1-model_v4_TED01"],["TED%3AAF-A0CHQ8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0CHQ8-F1-model_v4_TED02"],["TED%3AAF-A0CHR9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0CHR9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":2,"nb":16,"a":[["cytoskeleton/tubz_filament.html","TubZ filament"],["inclusion/parasporal_crystal.html","parasporal crystal"]],"b":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF28265","Lipoprotein N-acylation protein LnsA-like"],["Pfam%3APF16403","Bacterial surface protein, Ig-like domain"],["Pfam%3APF03944","delta endotoxin"],["Pfam%3APF03945","delta endotoxin, N-terminal domain"],["Pfam%3APF06355","Aegerolysin"]]},{"id":"GO:0005811","l":"lipid droplet","na":2,"nb":15,"a":[["inclusion/lipid_droplet.html","lipid droplet"],["inclusion/monolayer_surrounded_lipid_storage_body_outer_lipid_monolayer.html","monolayer-surrounded lipid storage body outer lipid monolayer"]],"b":[["ComplexPortal%3ACPX-2148","Phosphatidylinositol transporter complex"],["ComplexPortal%3ACPX-3342","Seipin complex"],["GO%3A0005633","ascus lipid droplet"],["GO%3A0005811","lipid droplet"],["GO%3A0012511","monolayer-surrounded lipid storage body"],["NCBIfam%3ATIGR04278","antiviral radical SAM protein viperin"]]},{"id":"GO:0031902","l":"late endosome membrane","na":2,"nb":15,"a":[["membrane_organelle/late_endosome_lumen.html","late endosome lumen"],["membrane_organelle/late_endosome_membrane.html","late endosome membrane"]],"b":[["ComplexPortal%3ACPX-6308","ATP10B-CDC50A P4-ATPase complex"],["ComplexPortal%3ACPX-4741","Ragulator complex"],["ComplexPortal%3ACPX-4761","Ragulator complex"],["GO%3A0031902","late endosome membrane"],["GO%3A0032585","multivesicular body membrane"],["PANTHER%3APTHR12897","COLON CANCER-ASSOCIATED PROTEIN MIC1"]]},{"id":"GO:0032588","l":"trans-Golgi network membrane","na":2,"nb":14,"a":[["membrane_organelle/trans_golgi_network.html","trans-Golgi network"],["membrane_organelle/trans_golgi_network_membrane.html","trans-Golgi network membrane"]],"b":[["ComplexPortal%3ACPX-5050","Endothelial AP-1 Adaptor complex, sigma1a variant"],["ComplexPortal%3ACPX-5144","Endothelial AP-1 Adaptor complex, sigma1a variant"],["ComplexPortal%3ACPX-5047","Ubiquitous AP-1 Adaptor complex, sigma1a variant"],["ComplexPortal%3ACPX-5141","Ubiquitous AP-1 Adaptor complex, sigma1a variant"],["ComplexPortal%3ACPX-5048","Ubiquitous AP-1 Adaptor complex, sigma1b variant"],["ComplexPortal%3ACPX-5142","Ubiquitous AP-1 Adaptor complex, sigma1b variant"]]},{"id":"GO:0097526","l":"spliceosomal tri-snRNP complex","na":2,"nb":14,"a":[["ribonucleoprotein/u4_u6_x_u5_tri_snrnp_complex.html","U4/U6 x U5 tri-snRNP complex"],["ribonucleoprotein/u4atac_u6atac_x_u5_tri_snrnp_complex.html","U4atac/U6atac x U5 tri-snRNP complex"]],"b":[["GO%3A0097526","spliceosomal tri-snRNP complex"],["GO%3A0046540","U4/U6 x U5 tri-snRNP complex"],["GO%3A0071009","U4atac/U6atac x U5 tri-snRNP complex"],["PANTHER%3APTHR13904","PRE-MRNA SPLICING FACTOR PRP31"],["PANTHER%3APTHR13007","PRE-MRNA SPLICING FACTOR-RELATED"],["PANTHER%3APTHR11193","SMALL NUCLEAR RIBONUCLEOPROTEIN E"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":2,"nb":14,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF02224","Cytidylate kinase"],["Pfam%3APF03319","Ethanolamine utilisation protein EutN/carboxysome"],["Pfam%3APF22019","alpha-1,4-glucan branching enzyme GlgB, N-terminal domain"],["Pfam%3APF21714","Circadian clock protein KaiA, N-terminal domain"],["Pfam%3APF07688","KaiA C-terminal domain"]]},{"id":"GO:0005744","l":"TIM23 mitochondrial import inner membrane translocase complex","na":2,"nb":13,"a":[["other/pam_complex_tim23_associated_import_motor.html","PAM complex, Tim23 associated import motor"],["other/tim23_mitochondrial_import_inner_membrane_translocase_complex.html","TIM23 mitochondrial import inner membrane translocase complex"]],"b":[["ComplexPortal%3ACPX-540","Mitochondrial inner membrane pre-sequence translocase complex"],["ComplexPortal%3ACPX-539","TIM23 mitochondrial inner membrane pre-sequence translocase complex, motor variant"],["ComplexPortal%3ACPX-6127","TIM23 mitochondrial inner membrane pre-sequence translocase complex, sort variant"],["ComplexPortal%3ACPX-6129","TIM23 mitochondrial inner membrane pre-sequence translocase complex, TIM17A variant"],["ComplexPortal%3ACPX-6130","TIM23 mitochondrial inner membrane pre-sequence translocase complex, TIM17B variant"],["GO%3A0005744","TIM23 mitochondrial import inner membrane translocase complex"]]},{"id":"GO:0007007","l":"inner mitochondrial membrane organization","na":2,"nb":13,"a":[["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"],["other/micos_complex.html","MICOS complex"]],"b":[["GO%3A0042407","cristae formation"],["GO%3A0007007","inner mitochondrial membrane organization"],["GO%3A1990627","mitochondrial inner membrane fusion"],["GO%3A0032979","protein insertion into mitochondrial inner membrane from matrix"],["GO%3A0045039","protein insertion into mitochondrial inner membrane"],["PANTHER%3APTHR36959","ALTERED INHERITANCE OF MITOCHONDRIA PROTEIN 24, MITOCHONDRIAL"]]},{"id":"GO:0032153","l":"cell division site","na":2,"nb":13,"a":[["division_machinery/divisome_complex.html","divisome complex"],["envelope/division_septum.html","division septum"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["GO%3A0032153","cell division site"],["PANTHER%3APTHR36419","ARRESTIN FAMILY PROTEIN 1"],["PANTHER%3APTHR30474","CELL CYCLE PROTEIN"],["PANTHER%3APTHR37479","CELL DIVISION PROTEIN FTSL"],["PANTHER%3APTHR30314","CELL DIVISION PROTEIN FTSZ-RELATED"]]},{"id":"GO:0006913","l":"nucleocytoplasmic transport","na":2,"nb":12,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nucleus.html","nucleus"]],"b":[["ComplexPortal%3ACPX-2568","Nuclear pore complex"],["ComplexPortal%3ACPX-4474","Nuclear pore complex"],["ComplexPortal%3ACPX-824","Nuclear pore complex"],["ComplexPortal%3ACPX-873","Nuclear pore complex"],["GO%3A0051170","import into nucleus"],["GO%3A0051168","nuclear export"]]},{"id":"GO:1990586","l":"divisome complex","na":2,"nb":11,"a":[["division_machinery/divisome_complex.html","divisome complex"],["envelope/division_septum.html","division septum"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["ComplexPortal%3ACPX-3299","FtsBL complex"],["ComplexPortal%3ACPX-3099","FtsQBL complex"],["GO%3A1990586","divisome complex"],["GO%3A1990588","FtsBL complex"],["GO%3A1990587","FtsQBL complex"]]},{"id":"GO:0009330","l":"DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) complex","na":2,"nb":10,"a":[["other/dna_gyrase_complex.html","DNA gyrase complex"],["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["ComplexPortal%3ACPX-26662","SPO11 DNA endo-reduplication complex"],["ComplexPortal%3ACPX-26657","SPO11 meiotic recombination initiation complex"],["ComplexPortal%3ACPX-26658","SPO11 meiotic recombination initiation complex"],["ComplexPortal%3ACPX-26659","SPO11 meiotic recombination initiation complex"],["ComplexPortal%3ACPX-26664","SPO11, meiotic recombination initiation complex"],["ComplexPortal%3ACPX-1104","Topoisomerase IV"]]},{"id":"GO:0030428","l":"cell septum","na":2,"nb":10,"a":[["envelope/division_septum.html","division septum"],["membrane_organelle/chitosome.html","chitosome"]],"b":[["GO%3A0000933","adventitious septum"],["GO%3A0030428","cell septum"],["GO%3A0000935","division septum"],["GO%3A0000934","porous cell septum"],["NCBIfam%3ANF008641","cell division protein DedD"],["NCBIfam%3ATIGR00172","Maf family nucleotide pyrophosphatase"]]},{"id":"GO:0031470","l":"carboxysome","na":2,"nb":10,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["GO%3A0031470","carboxysome"],["NCBIfam%3ANF053791","alpha-carboxysome major shell protein CsoS1"],["NCBIfam%3ANF049993","beta-carboxysome assembly chaperone CcmS"],["NCBIfam%3ANF053792","beta-carboxysome assembly protein CcmO"],["NCBIfam%3ANF053796","beta-carboxysome protein CcmP"],["NCBIfam%3ANF053793","beta-carboxysome scaffolding protein CcmN"]]},{"id":"GO:0071014","l":"post-mRNA release spliceosomal complex","na":2,"nb":10,"a":[["ribonucleoprotein/u12_type_post_mrna_release_spliceosomal_complex.html","U12-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u2_type_post_mrna_release_spliceosomal_complex.html","U2-type post-mRNA release spliceosomal complex"]],"b":[["ComplexPortal%3ACPX-26480","Intron Lariat Spliceosome, type 1 complex"],["ComplexPortal%3ACPX-26481","Intron Lariat Spliceosome, type 2 complex"],["GO%3A0071014","post-mRNA release spliceosomal complex"],["GO%3A0071019","U12-type post-mRNA release spliceosomal complex"],["GO%3A0071008","U2-type post-mRNA release spliceosomal complex"],["PANTHER%3APTHR12072","CWF19, CELL CYCLE CONTROL PROTEIN"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":2,"nb":10,"a":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["TED%3AAF-A0A5T2E4X7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5T2E4X7-F1-model_v4_TED01"],["TED%3AAF-A0A5Y4BP44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Y4BP44-F1-model_v4_TED01"],["TED%3AAF-A0A623P6F3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A623P6F3-F1-model_v4_TED02"],["TED%3AAF-A0A721BDS7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A721BDS7-F1-model_v4_TED02"],["TED%3AAF-A0A743P324-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A743P324-F1-model_v4_TED01"],["TED%3AAF-A0A757VWR3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A757VWR3-F1-model_v4_TED02"]]},{"id":"GO:0005935","l":"cellular bud neck","na":2,"nb":9,"a":[["other/cellular_bud.html","cellular bud"],["other/cellular_bud_neck.html","cellular bud neck"]],"b":[["ComplexPortal%3ACPX-1684","CBK1-MOB2 kinase complex"],["ComplexPortal%3ACPX-1140","HICS complex"],["ComplexPortal%3ACPX-36","Kelch-containing Formin Regulatory Complex"],["ComplexPortal%3ACPX-1426","Myosin class II complex"],["ComplexPortal%3ACPX-1695","PCL1-PHO85 kinase complex"],["ComplexPortal%3ACPX-1694","PCL2-PHO85 kinase complex"]]},{"id":"GO:0006097","l":"glyoxylate cycle","na":2,"nb":9,"a":[["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysome.html","glyoxysome"]],"b":[["GO%3A0006097","glyoxylate cycle"],["proteintraitsmech%3ASEED_SUBSYSTEM_Glyoxylate_bypass","Glyoxylate bypass"],["NCBIfam%3ATIGR02924","isocitrate dehydrogenase"],["NCBIfam%3ATIGR01344","malate synthase A"],["NCBIfam%3ANF041315","malate synthase AceB"],["NCBIfam%3ANF002825","malate synthase G"]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":2,"nb":9,"a":[["envelope/capsule.html","capsule"],["envelope/glycocalyx.html","glycocalyx"]],"b":[["Pfam%3APF19567","Capsular polysaccharide synthesis, CpsB/CapC"],["Pfam%3APF07501","G5 domain"],["Pfam%3APF13551","Winged helix-turn helix"],["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF03047","COMC family"],["Pfam%3APF04556","DpnII restriction endonuclease"]]},{"id":"GO:0003352","l":"regulation of cilium movement","na":2,"nb":8,"a":[["cytoskeleton/axonemal_nexin_link.html","axonemal nexin link"],["cytoskeleton/radial_spoke.html","radial spoke"]],"b":[["GO%3A0120221","maintenance of ciliary planar beating movement pattern"],["GO%3A0003354","negative regulation of cilium movement"],["GO%3A0003353","positive regulation of cilium movement"],["GO%3A0003356","regulation of cilium beat frequency"],["GO%3A0003352","regulation of cilium movement"],["GO%3A0060295","regulation of cilium movement involved in cell motility"]]},{"id":"GO:0005801","l":"cis-Golgi network","na":2,"nb":8,"a":[["membrane_organelle/cis_golgi_network.html","cis-Golgi network"],["membrane_organelle/cis_golgi_network_membrane.html","cis-Golgi network membrane"]],"b":[["ComplexPortal%3ACPX-6092","GRASP55-GM45 Golgi stacking complex"],["ComplexPortal%3ACPX-874","GRASP65-GM130 Golgi stacking complex"],["GO%3A0005801","cis-Golgi network"],["InterPro%3AIPR043937","Golgin subfamily A , C-terminal binding motif"],["PANTHER%3APTHR14759","STOP PROTEIN"],["PANTHER%3APTHR13048","TRAFFICKING PROTEIN PARTICLE COMPLEX SUBUNIT 3"]]},{"id":"GO:0030131","l":"clathrin adaptor complex","na":2,"nb":8,"a":[["other/ap_1_adaptor_complex.html","AP-1 adaptor complex"],["other/ap_2_adaptor_complex.html","AP-2 adaptor complex"]],"b":[["GO%3A0030121","AP-1 adaptor complex"],["GO%3A0030122","AP-2 adaptor complex"],["GO%3A0030131","clathrin adaptor complex"],["InterPro%3AIPR018240","Clathrin adaptor, mu subunit, conserved site"],["InterPro%3AIPR015151","Beta-adaptin appendage, C-terminal subdomain"],["InterPro%3AIPR003164","Clathrin adaptor, alpha-adaptin, appendage, C-terminal subdomain"]]},{"id":"GO:0031931","l":"TORC1 complex","na":2,"nb":8,"a":[["other/torc1_complex.html","TORC1 complex"],["other/torc2_complex.html","TORC2 complex"]],"b":[["ComplexPortal%3ACPX-4473","mTORC1 complex"],["ComplexPortal%3ACPX-503","mTORC1 complex"],["ComplexPortal%3ACPX-2265","TORC1 complex"],["ComplexPortal%3ACPX-26512","TORC1 serine/threonine protein kinase complex"],["ComplexPortal%3ACPX-1715","TORC1 serine/threonine-protein kinase complex, TOR1 variant"],["ComplexPortal%3ACPX-1716","TORC1 serine/threonine-protein kinase complex, TOR2 variant"]]},{"id":"GO:0033176","l":"proton-transporting V-type ATPase complex","na":2,"nb":8,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["other/rave_complex.html","RAVE complex"]],"b":[["ComplexPortal%3ACPX-2470","Vacuolar proton translocating ATPase complex, ATP6V0A1 variant"],["ComplexPortal%3ACPX-6904","Vacuolar proton translocating ATPase complex, ATP6V0A2 variant"],["ComplexPortal%3ACPX-6905","Vacuolar proton translocating ATPase complex, ATP6V0A3 variant"],["ComplexPortal%3ACPX-6912","Vacuolar proton translocating ATPase complex, ATP6V0A4 variant"],["ComplexPortal%3ACPX-1192","Vacuolar proton translocating ATPase complex, Golgi variant"],["GO%3A0033181","plasma membrane proton-transporting V-type ATPase complex"]]},{"id":"GO:1903561","l":"extracellular vesicle","na":2,"nb":8,"a":[["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"],["other/bacterial_outer_membrane_vesicle.html","bacterial outer membrane vesicle"]],"b":[["GO%3A0097189","apoptotic body"],["GO%3A0097691","bacterial extracellular vesicle"],["GO%3A0061701","bacterial outer membrane vesicle"],["GO%3A0160014","exopher"],["GO%3A0070062","extracellular exosome"],["GO%3A1903561","extracellular vesicle"]]},{"id":"GO:0005687","l":"U4 snRNP","na":2,"nb":7,"a":[["ribonucleoprotein/u4_snrnp.html","U4 snRNP"],["ribonucleoprotein/u4_u6_snrnp.html","U4/U6 snRNP"]],"b":[["ComplexPortal%3ACPX-43","Sm complex"],["ComplexPortal%3ACPX-6033","Sm complex"],["ComplexPortal%3ACPX-26417","U4 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-31","U4 small nuclear ribonucleoprotein complex"],["GO%3A0005687","U4 snRNP"],["PANTHER%3APTHR13904","PRE-MRNA SPLICING FACTOR PRP31"]]},{"id":"GO:0009276","l":"Gram-negative-bacterium-type cell wall","na":2,"nb":7,"a":[["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"]],"b":[["GO%3A0009276","Gram-negative-bacterium-type cell wall"],["NCBIfam%3ATIGR02208","lauroyl-Kdo(2)-lipid IV(A) myristoyltransferase"],["NCBIfam%3ATIGR02314","methionine ABC transporter ATP-binding protein MetN"],["NCBIfam%3ATIGR01937","NADH:ubiquinone reductase (Na(+)-transporting) subunit B"],["NCBIfam%3ATIGR02162","pentaheme c-type cytochrome TorC"],["NCBIfam%3ATIGR01709","type II secretion system protein GspL"]]},{"id":"GO:0030479","l":"actin cortical patch","na":2,"nb":7,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"],["other/cell_cortex.html","cell cortex"]],"b":[["ComplexPortal%3ACPX-3541","AIM21-TDA2 actin assembly regulator complex"],["ComplexPortal%3ACPX-1500","Myosin class I complex, MYO3 variant"],["ComplexPortal%3ACPX-1470","Myosin class I complex, MYO5 variant"],["ComplexPortal%3ACPX-1335","RVS161-RVS167 amphiphysin complex"],["GO%3A0030479","actin cortical patch"],["PANTHER%3APTHR47789","LAS SEVENTEEN-BINDING PROTEIN 5"]]},{"id":"GO:0030905","l":"retromer, tubulation complex","na":2,"nb":7,"a":[["other/retromer_complex.html","retromer complex"],["other/retromer_tubulation_complex.html","retromer, tubulation complex"]],"b":[["ComplexPortal%3ACPX-8837","SNX1-SNX32 sorting nexin complex"],["ComplexPortal%3ACPX-8823","SNX1-SNX5 sorting nexin complex"],["ComplexPortal%3ACPX-8835","SNX1-SNX6 sorting nexin complex"],["ComplexPortal%3ACPX-8840","SNX2-SNX32 sorting nexin complex"],["ComplexPortal%3ACPX-8838","SNX2-SNX5 sorting nexin complex"],["ComplexPortal%3ACPX-8839","SNX2-SNX6 sorting nexin complex"]]},{"id":"GO:0033179","l":"proton-transporting V-type ATPase, V0 domain","na":2,"nb":7,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_v0_domain.html","vacuolar proton-transporting V-type ATPase, V0 domain"],["other/rave_complex.html","RAVE complex"]],"b":[["GO%3A0000222","plasma membrane proton-transporting V-type ATPase, V0 domain"],["GO%3A0033179","proton-transporting V-type ATPase, V0 domain"],["GO%3A0000220","vacuolar proton-transporting V-type ATPase, V0 domain"],["NCBIfam%3ATIGR02923","ATP synthase A1 subunit C"],["NCBIfam%3ANF013647","V-type ATPase 116kDa subunit family protein"],["Pfam%3APF05493","ATP synthase subunit H"]]},{"id":"GO:0071004","l":"U2-type prespliceosome","na":2,"nb":7,"a":[["ribonucleoprotein/u2_type_precatalytic_spliceosome.html","U2-type precatalytic spliceosome"],["ribonucleoprotein/u2_type_prespliceosome.html","U2-type prespliceosome"]],"b":[["ComplexPortal%3ACPX-1648","SF3A complex"],["GO%3A0071004","U2-type prespliceosome"],["PANTHER%3APTHR11864","PRE-MRNA-PROCESSING PROTEIN PRP40"],["PANTHER%3APTHR12375","RNA-BINDING PROTEIN LUC7-RELATED"],["PANTHER%3APTHR15316","SPLICEOSOME ASSOCIATED PROTEIN 114/SWAP SPLICING FACTOR-RELATED"],["PANTHER%3APTHR23205","SPLICING FACTOR 3A SUBUNIT 2"]]},{"id":"NCBITaxon:555778","l":"","na":2,"nb":7,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["Pfam%3APF08936","Carboxysome Shell Carbonic Anhydrase, C-terminal"],["Pfam%3APF20686","Carboxysome Shell Carbonic Anhydrase, catalytic domain"],["Pfam%3APF20687","Carboxysome Shell Carbonic Anhydrase, N-terminal"],["Pfam%3APF12288","Carboxysome shell peptide mid-region"],["Pfam%3APF10070","Probable inorganic carbon transporter subunit DabA"],["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"GO:0005619","l":"ascospore wall","na":6,"nb":2,"a":[["spore/ascospore_wall.html","ascospore wall"],["spore/chitosan_layer_of_spore_wall.html","chitosan layer of spore wall"],["spore/dityrosine_layer_of_spore_wall.html","dityrosine layer of spore wall"],["spore/inner_layer_of_spore_wall.html","inner layer of spore wall"],["spore/isp3_layer_of_spore_wall.html","Isp3 layer of spore wall"],["spore/spore_wall.html","spore wall"]],"b":[["ComplexPortal%3ACPX-1675","Septin complex"],["GO%3A0005619","ascospore wall"]]},{"id":"GO:0005691","l":"U6atac snRNP","na":6,"nb":2,"a":[["ribonucleoprotein/u12_type_catalytic_step_1_spliceosome.html","U12-type catalytic step 1 spliceosome"],["ribonucleoprotein/u12_type_catalytic_step_2_spliceosome.html","U12-type catalytic step 2 spliceosome"],["ribonucleoprotein/u12_type_post_mrna_release_spliceosomal_complex.html","U12-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u12_type_post_spliceosomal_complex.html","U12-type post-spliceosomal complex"],["ribonucleoprotein/u4atac_u6atac_snrnp.html","U4atac/U6atac snRNP"],["ribonucleoprotein/u6atac_snrnp.html","U6atac snRNP"]],"b":[["ComplexPortal%3ACPX-26499","U6atac small nuclear ribonucleoprotein complex"],["GO%3A0005691","U6atac snRNP"]]},{"id":"GO:0009521","l":"photosystem","na":2,"nb":6,"a":[["energy_complex/photosystem_i.html","photosystem I"],["energy_complex/photosystem_ii.html","photosystem II"]],"b":[["GO%3A0009521","photosystem"],["GO%3A0009522","photosystem I"],["GO%3A0009523","photosystem II"],["NCBIfam%3ANF012637","Photosystem II protein"],["Pfam%3APF00421","Photosystem II protein"],["InterPro%3AIPR036001","Photosystem antenna protein-like superfamily"]]},{"id":"GO:0009707","l":"chloroplast outer membrane","na":6,"nb":2,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_intermembrane_space.html","chloroplast intermembrane space"],["membrane_organelle/chloroplast_membrane.html","chloroplast membrane"],["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"],["other/toc_complex.html","Toc complex"]],"b":[["GO%3A0009707","chloroplast outer membrane"],["PANTHER%3APTHR47283","ENT-KAURENE OXIDASE, CHLOROPLASTIC"]]},{"id":"GO:0030140","l":"trans-Golgi network transport vesicle","na":2,"nb":6,"a":[["membrane_organelle/trans_golgi_network_transport_vesicle_membrane.html","trans-Golgi network transport vesicle membrane"],["other/clathrin_coat_of_trans_golgi_network_vesicle.html","clathrin coat of trans-Golgi network vesicle"]],"b":[["GO%3A0030140","trans-Golgi network transport vesicle"],["PANTHER%3APTHR16156","AFTIPHILIN A-RELATED"],["PANTHER%3APTHR15463","AP1 GAMMA SUBUNIT BINDING PROTEIN 1"],["PANTHER%3APTHR31975","BUD SITE SELECTION PROTEIN 7-RELATED"],["PANTHER%3APTHR47351","CHITIN BIOSYNTHESIS PROTEIN CHS5"],["PANTHER%3APTHR16528","GOLGI-ASSOCIATED PDZ AND COILED-COIL MOTIF-CONTAINING"]]},{"id":"GO:0031932","l":"TORC2 complex","na":2,"nb":6,"a":[["other/torc1_complex.html","TORC1 complex"],["other/torc2_complex.html","TORC2 complex"]],"b":[["ComplexPortal%3ACPX-4402","mTORC2 complex"],["ComplexPortal%3ACPX-4472","mTORC2 complex"],["ComplexPortal%3ACPX-1717","TORC2 complex"],["ComplexPortal%3ACPX-2269","TORC2 complex"],["ComplexPortal%3ACPX-26513","TORC2 serine/threonine protein kinase complex"],["GO%3A0031932","TORC2 complex"]]},{"id":"GO:0032580","l":"Golgi cisterna membrane","na":2,"nb":6,"a":[["membrane_organelle/golgi_cisterna.html","Golgi cisterna"],["membrane_organelle/golgi_cisterna_membrane.html","Golgi cisterna membrane"]],"b":[["GO%3A1990674","Golgi cis cisterna membrane"],["GO%3A0032580","Golgi cisterna membrane"],["GO%3A1990675","Golgi medial cisterna membrane"],["GO%3A1990676","Golgi trans cisterna membrane"],["NCBIfam%3ANF017491","Chondroitin N-acetylgalactosaminyltransferase"],["Pfam%3APF05679","Chondroitin N-acetylgalactosaminyltransferase"]]},{"id":"GO:0033565","l":"ESCRT-0 complex","na":2,"nb":6,"a":[["other/escrt_0_complex.html","ESCRT-0 complex"],["other/escrt_complex.html","ESCRT complex"]],"b":[["ComplexPortal%3ACPX-1622","ESCRT-0 complex"],["ComplexPortal%3ACPX-2452","ESCRT-0 complex"],["ComplexPortal%3ACPX-26631","ESCRT-0 complex"],["ComplexPortal%3ACPX-2825","ESCRT-0 complex, STAM variant"],["ComplexPortal%3ACPX-7143","ESCRT-0 complex, STAM2 variant"],["GO%3A0033565","ESCRT-0 complex"]]},{"id":"GO:0045334","l":"clathrin-coated endocytic vesicle","na":6,"nb":2,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle.html","clathrin-coated endocytic vesicle"],["membrane_organelle/clathrin_coated_endocytic_vesicle_lumen.html","clathrin-coated endocytic vesicle lumen"],["membrane_organelle/clathrin_coated_endocytic_vesicle_membrane.html","clathrin-coated endocytic vesicle membrane"],["membrane_organelle/endocytic_vesicle.html","endocytic vesicle"],["other/clathrin_coat_of_endocytic_vesicle.html","clathrin coat of endocytic vesicle"],["other/clathrin_coated_pit.html","clathrin-coated pit"]],"b":[["GO%3A0045334","clathrin-coated endocytic vesicle"],["GO%3A0045336","clathrin-coated phagocytic vesicle"]]},{"id":"GO:0071006","l":"U2-type catalytic step 1 spliceosome","na":2,"nb":6,"a":[["ribonucleoprotein/u2_type_catalytic_step_1_spliceosome.html","U2-type catalytic step 1 spliceosome"],["ribonucleoprotein/u2_type_catalytic_step_2_spliceosome.html","U2-type catalytic step 2 spliceosome"]],"b":[["ComplexPortal%3ACPX-26463","Major Spliceosomal C complex"],["ComplexPortal%3ACPX-26458","Major Spliceosomal Post-B-act complex"],["ComplexPortal%3ACPX-26441","Major Spliceosomal Pre-B-act complex"],["ComplexPortal%3ACPX-26465","Major Spliceosomal Pre-C*-I complex"],["ComplexPortal%3ACPX-26467","Major Spliceosomal Pre-C*-II complex"],["GO%3A0071006","U2-type catalytic step 1 spliceosome"]]},{"id":"GO:1990071","l":"TRAPPII protein complex","na":2,"nb":6,"a":[["other/trappi_protein_complex.html","TRAPPI protein complex"],["other/trappii_protein_complex.html","TRAPPII protein complex"]],"b":[["ComplexPortal%3ACPX-1939","TRAPP II complex"],["ComplexPortal%3ACPX-4764","TRAPP II complex"],["ComplexPortal%3ACPX-4749","TRAPP II complex, TRAPPC2 variant"],["ComplexPortal%3ACPX-6902","TRAPP II complex, TRAPPC2B variant"],["ComplexPortal%3ACPX-2271","TRAPPII complex"],["GO%3A1990071","TRAPPII protein complex"]]},{"id":"NCBITaxon:194439","l":"Chlorobaculum tepidum TLS","na":2,"nb":6,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["membrane_organelle/chlorosome.html","chlorosome"]],"b":[["Pfam%3APF02327","Bacteriochlorophyll A protein"],["Pfam%3APF27499","CsmB chlorosome envelope protein"],["Pfam%3APF28537","Probable trigger factor, FKBP-like domain"],["Pfam%3APF02043","Bacteriochlorophyll C binding protein"],["Pfam%3APF11098","Chlorosome envelope protein C"],["Pfam%3APF10643","Photosystem P840 reaction-centre cytochrome c-551"]]},{"id":"GO:0000221","l":"vacuolar proton-transporting V-type ATPase, V1 domain","na":2,"nb":5,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v1_domain.html","vacuolar proton-transporting V-type ATPase, V1 domain"]],"b":[["GO%3A0046612","lysosomal proton-transporting V-type ATPase, V1 domain"],["GO%3A0000221","vacuolar proton-transporting V-type ATPase, V1 domain"],["InterPro%3AIPR011987","ATPase, V1 complex, subunit H, C-terminal"],["Pfam%3APF11698","V-ATPase subunit H"],["Pfam%3APF03224","V-ATPase subunit H"]]},{"id":"GO:0005640","l":"nuclear outer membrane","na":5,"nb":2,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nuclear_envelope_lumen.html","nuclear envelope lumen"],["membrane_organelle/nuclear_inner_membrane.html","nuclear inner membrane"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"],["membrane_organelle/vacuolar_membrane.html","vacuolar membrane"]],"b":[["ComplexPortal%3ACPX-1381","NVJ1-VAC8 nucleus-vacuole junction complex"],["GO%3A0005640","nuclear outer membrane"]]},{"id":"GO:0009426","l":"bacterial-type flagellum basal body, distal rod","na":5,"nb":2,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"],["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"]],"b":[["GO%3A0009426","bacterial-type flagellum basal body, distal rod"],["NCBIfam%3ATIGR02488","flagellar basal-body rod protein FlgG"]]},{"id":"GO:0030669","l":"clathrin-coated endocytic vesicle membrane","na":5,"nb":2,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle.html","clathrin-coated endocytic vesicle"],["membrane_organelle/clathrin_coated_endocytic_vesicle_lumen.html","clathrin-coated endocytic vesicle lumen"],["membrane_organelle/clathrin_coated_endocytic_vesicle_membrane.html","clathrin-coated endocytic vesicle membrane"],["membrane_organelle/endocytic_vesicle_membrane.html","endocytic vesicle membrane"],["other/clathrin_coat_of_endocytic_vesicle.html","clathrin coat of endocytic vesicle"]],"b":[["GO%3A0030669","clathrin-coated endocytic vesicle membrane"],["GO%3A0030671","clathrin-coated phagocytic vesicle membrane"]]},{"id":"GO:0031207","l":"Sec62/Sec63 complex","na":2,"nb":5,"a":[["other/endoplasmic_reticulum_sec_complex.html","endoplasmic reticulum Sec complex"],["other/sec62_sec63_complex.html","Sec62/Sec63 complex"]],"b":[["ComplexPortal%3ACPX-26617","SEC62-SEC63 complex"],["ComplexPortal%3ACPX-26618","SEC62-SEC63 complex"],["ComplexPortal%3ACPX-3056","SEC62-SEC63 complex"],["GO%3A0031207","Sec62/Sec63 complex"],["Pfam%3APF09802","Preprotein translocase subunit Sec66"]]},{"id":"GO:0033180","l":"proton-transporting V-type ATPase, V1 domain","na":2,"nb":5,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_v1_domain.html","vacuolar proton-transporting V-type ATPase, V1 domain"],["other/rave_complex.html","RAVE complex"]],"b":[["GO%3A0000223","plasma membrane proton-transporting V-type ATPase, V1 domain"],["GO%3A0033180","proton-transporting V-type ATPase, V1 domain"],["GO%3A0000221","vacuolar proton-transporting V-type ATPase, V1 domain"],["Pfam%3APF03223","V-ATPase subunit C"],["InterPro%3AIPR036132","Vacuolar ATP synthase subunit C superfamily"]]},{"id":"GO:0042717","l":"plasma membrane-derived chromatophore membrane","na":5,"nb":2,"a":[["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/rc_lh1_pufx_core_complex.html","RC-LH1-PufX core complex"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"],["membrane_organelle/plasma_membrane_derived_chromatophore_membrane.html","plasma membrane-derived chromatophore membrane"]],"b":[["GO%3A0042717","plasma membrane-derived chromatophore membrane"],["GO%3A0031676","plasma membrane-derived thylakoid membrane"]]},{"id":"GO:0043593","l":"endospore coat","na":5,"nb":2,"a":[["spore/endospore_coat.html","endospore coat"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"],["spore/exosporium.html","exosporium"],["spore/outer_endospore_membrane.html","outer endospore membrane"],["spore/spore_wall.html","spore wall"]],"b":[["GO%3A0043593","endospore coat"],["NCBIfam%3ANF022572","CotD family spore coat protein"]]},{"id":"GO:0044222","l":"anammoxosome","na":2,"nb":5,"a":[["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"]],"b":[["GO%3A0044222","anammoxosome"],["NCBIfam%3ANF052343","hydrazine dehydrogenase"],["NCBIfam%3ANF052339","hydrazine synthase subunit alpha"],["NCBIfam%3ANF052340","hydrazine synthase subunit beta"],["NCBIfam%3ANF052341","hydrazine synthase subunit gamma"]]},{"id":"GO:0110146","l":"magnetosome membrane","na":2,"nb":5,"a":[["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]],"b":[["GO%3A0110146","magnetosome membrane"],["NCBIfam%3ANF040960","magnetosome formation protease MamE"],["NCBIfam%3ANF040959","magnetosome protein MamA"],["NCBIfam%3ANF040961","magnetosome protein MamO"],["NCBIfam%3ANF040966","magnetosome protein MamQ"]]},{"id":"GO:1990716","l":"axonemal central apparatus","na":5,"nb":2,"a":[["cytoskeleton/axonemal_central_apparatus.html","axonemal central apparatus"],["cytoskeleton/axonemal_central_bridge.html","axonemal central bridge"],["cytoskeleton/axonemal_central_pair.html","axonemal central pair"],["cytoskeleton/axonemal_central_pair_projection.html","axonemal central pair projection"],["cytoskeleton/axoneme.html","axoneme"]],"b":[["GO%3A1990716","axonemal central apparatus"],["PANTHER%3APTHR21963","PF6"]]},{"id":"UniProt:P27434","l":"","na":2,"nb":5,"a":[["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/elongasome.html","elongasome"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["NCBIfam%3ANF008109","cytoskeleton protein RodZ"],["InterPro%3AIPR025194","Cytoskeleton protein RodZ-like, C-terminal domain"],["Pfam%3APF13413","Helix-turn-helix domain"],["Pfam%3APF13464","RodZ C-terminal domain"]]},{"id":"GO:0030906","l":"retromer, cargo-selective complex","na":2,"nb":4,"a":[["other/retromer_cargo_selective_complex.html","retromer, cargo-selective complex"],["other/retromer_complex.html","retromer complex"]],"b":[["ComplexPortal%3ACPX-7842","Retromer complex, VPS26A variant"],["ComplexPortal%3ACPX-7843","Retromer complex, VPS26B variant"],["GO%3A0030906","retromer, cargo-selective complex"],["Pfam%3APF03635","Vacuolar protein sorting-associated protein 35"]]},{"id":"GO:0031970","l":"organelle envelope lumen","na":2,"nb":4,"a":[["membrane_organelle/mitochondrial_intermembrane_space.html","mitochondrial intermembrane space"],["membrane_organelle/nuclear_envelope_lumen.html","nuclear envelope lumen"]],"b":[["GO%3A0005758","mitochondrial intermembrane space"],["GO%3A0005641","nuclear envelope lumen"],["GO%3A0031970","organelle envelope lumen"],["GO%3A0009529","plastid intermembrane space"]]},{"id":"GO:0097590","l":"archaeal-type flagellum-dependent cell motility","na":2,"nb":4,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"]],"b":[["GO%3A0097590","archaeal-type flagellum-dependent cell motility"],["NCBIfam%3ANF052589","archaellum protein ArlH"],["NCBIfam%3ANF052590","archaellum stator protein ArlF"],["NCBIfam%3ANF052591","archaellum stator protein ArlG"]]},{"id":"GO:0120101","l":"bacterial-type flagellum stator complex","na":4,"nb":2,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"]],"b":[["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["GO%3A0120101","bacterial-type flagellum stator complex"]]},{"id":"NCBITaxon:32053","l":"Thermostichus vulcanus","na":2,"nb":4,"a":[["energy_complex/photosystem_ii.html","photosystem II"],["energy_complex/phycobilisome.html","phycobilisome"]],"b":[["Pfam%3APF14495","Cytochrome c-550 domain"],["Pfam%3APF00283","Cytochrome b559, alpha (gene psbE) and beta (gene psbF)subunits"],["Pfam%3APF00284","Lumenal portion of Cytochrome b559, alpha (gene psbE) subunit"],["PROSITE%3APS00537","Cytochrome b559 subunits heme-binding site signature"]]},{"id":"Pfam:PF00741","l":"Gas vesicle protein","na":2,"nb":4,"a":[["inclusion/gas_vesicle.html","gas vesicle"],["inclusion/gas_vesicle_shell.html","gas vesicle shell"]],"b":[["Pfam%3APF05121","Gas vesicle protein K"],["Pfam%3APF00741","Gas vesicle protein"],["PROSITE%3APS00234","Gas vesicles protein GVPa signature 1"],["PROSITE%3APS00669","Gas vesicles protein GVPa signature 2"]]},{"id":"GO:0000220","l":"vacuolar proton-transporting V-type ATPase, V0 domain","na":3,"nb":2,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v0_domain.html","vacuolar proton-transporting V-type ATPase, V0 domain"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v1_domain.html","vacuolar proton-transporting V-type ATPase, V1 domain"]],"b":[["GO%3A0046610","lysosomal proton-transporting V-type ATPase, V0 domain"],["GO%3A0000220","vacuolar proton-transporting V-type ATPase, V0 domain"]]},{"id":"GO:0005934","l":"cellular bud tip","na":2,"nb":3,"a":[["other/cellular_bud.html","cellular bud"],["other/cellular_bud_tip.html","cellular bud tip"]],"b":[["ComplexPortal%3ACPX-1684","CBK1-MOB2 kinase complex"],["ComplexPortal%3ACPX-36","Kelch-containing Formin Regulatory Complex"],["GO%3A0005934","cellular bud tip"]]},{"id":"GO:0020022","l":"acidocalcisome","na":3,"nb":2,"a":[["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"]],"b":[["GO%3A0020022","acidocalcisome"],["GO%3A0106117","acidocalcisome organization"]]},{"id":"GO:0022624","l":"proteasome accessory complex","na":2,"nb":3,"a":[["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"]],"b":[["ComplexPortal%3ACPX-8962","19S proteasome regulatory complex"],["ComplexPortal%3ACPX-8964","19S proteasome regulatory complex"],["GO%3A0022624","proteasome accessory complex"]]},{"id":"GO:0031905","l":"early endosome lumen","na":3,"nb":2,"a":[["membrane_organelle/early_endosome.html","early endosome"],["membrane_organelle/early_endosome_lumen.html","early endosome lumen"],["membrane_organelle/early_endosome_membrane.html","early endosome membrane"]],"b":[["ComplexPortal%3ACPX-1059","Sorf-1-Sorf-2 complex"],["GO%3A0031905","early endosome lumen"]]},{"id":"GO:0031906","l":"late endosome lumen","na":2,"nb":3,"a":[["membrane_organelle/late_endosome_lumen.html","late endosome lumen"],["membrane_organelle/late_endosome_membrane.html","late endosome membrane"]],"b":[["ComplexPortal%3ACPX-1059","Sorf-1-Sorf-2 complex"],["GO%3A0031906","late endosome lumen"],["GO%3A0097486","multivesicular body lumen"]]},{"id":"GO:0034693","l":"U11/U12 snRNP","na":3,"nb":2,"a":[["ribonucleoprotein/u11_u12_snrnp.html","U11/U12 snRNP"],["ribonucleoprotein/u12_type_precatalytic_spliceosome.html","U12-type precatalytic spliceosome"],["ribonucleoprotein/u12_type_prespliceosome.html","U12-type prespliceosome"]],"b":[["ComplexPortal%3ACPX-26489","U11/U12 di-small nuclear ribonucleoprotein complex"],["GO%3A0034693","U11/U12 snRNP"]]},{"id":"GO:0042646","l":"plastid nucleoid","na":2,"nb":3,"a":[["nucleoid/chloroplast_nucleoid.html","chloroplast nucleoid"],["nucleoid/plastid_nucleoid.html","plastid nucleoid"]],"b":[["GO%3A0042644","chloroplast nucleoid"],["GO%3A0042646","plastid nucleoid"],["GO%3A0042647","proplastid nucleoid"]]},{"id":"GO:0071001","l":"U4/U6 snRNP","na":2,"nb":3,"a":[["ribonucleoprotein/u4_u6_snrnp.html","U4/U6 snRNP"],["ribonucleoprotein/u4_u6_x_u5_tri_snrnp_complex.html","U4/U6 x U5 tri-snRNP complex"]],"b":[["ComplexPortal%3ACPX-26418","U4/U6 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-32","U4/U6 small nuclear ribonucleoprotein complex"],["GO%3A0071001","U4/U6 snRNP"]]},{"id":"GO:0071010","l":"prespliceosome","na":2,"nb":3,"a":[["ribonucleoprotein/u12_type_prespliceosome.html","U12-type prespliceosome"],["ribonucleoprotein/u2_type_prespliceosome.html","U2-type prespliceosome"]],"b":[["GO%3A0071010","prespliceosome"],["GO%3A0071015","U12-type prespliceosome"],["GO%3A0071004","U2-type prespliceosome"]]},{"id":"GO:0120107","l":"bacterial-type flagellum rotor complex","na":2,"nb":3,"a":[["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"]],"b":[["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0120107","bacterial-type flagellum rotor complex"]]},{"id":"NCBITaxon:174633","l":"","na":2,"nb":3,"a":[["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"]],"b":[["Pfam%3APF22142","Hydroxylamine oxidoreductase, C-terminal domain"],["Pfam%3APF18582","Hydrazine synthase alpha subunit middle domain"],["Pfam%3APF21783","YNCE-like beta-propeller"]]},{"id":"NCBITaxon:243231","l":"Geobacter sulfurreducens PCA","na":3,"nb":2,"a":[["appendage/omce_cytochrome_nanowire.html","OmcE cytochrome nanowire"],["appendage/omcs_cytochrome_nanowire.html","OmcS cytochrome nanowire"],["appendage/omcz_cytochrome_nanowire.html","OmcZ cytochrome nanowire"]],"b":[["Pfam%3APF01930","Domain of unknown function DUF83"],["Pfam%3APF13435","Cytochrome c554 and c-prime"]]},{"id":"NCBITaxon:342108","l":"","na":2,"nb":3,"a":[["cytoskeleton/mamk_filament.html","MamK filament"],["membrane_organelle/magnetosome.html","magnetosome"]],"b":[["Pfam%3APF08269","Cache domain"],["Pfam%3APF08849","BrxA"],["Pfam%3APF04011","LemA family"]]},{"id":"NCBITaxon:4922","l":"Komagataella pastoris","na":2,"nb":3,"a":[["membrane_organelle/cis_golgi_network.html","cis-Golgi network"],["membrane_organelle/cis_golgi_network_membrane.html","cis-Golgi network membrane"]],"b":[["Pfam%3APF26001","Peroxin 8 protein-like, N-terminal domain"],["Pfam%3APF27812","PEX8 central TPR-like domain"],["TED%3AAF-A0A1B2J8F2-F1-model_v4_TED02","TED novel fold AF-A0A1B2J8F2-F1-model_v4_TED02"]]},{"id":"GO:0000817","l":"COMA complex","na":2,"nb":2,"a":[["other/coma_complex.html","COMA complex"],["other/kinetochore.html","kinetochore"]],"b":[["ComplexPortal%3ACPX-1187","COMA complex"],["GO%3A0000817","COMA complex"]]},{"id":"GO:0005690","l":"U4atac snRNP","na":2,"nb":2,"a":[["ribonucleoprotein/u4atac_snrnp.html","U4atac snRNP"],["ribonucleoprotein/u4atac_u6atac_snrnp.html","U4atac/U6atac snRNP"]],"b":[["ComplexPortal%3ACPX-26495","U4atac small nuclear ribonucleoprotein complex"],["GO%3A0005690","U4atac snRNP"]]},{"id":"GO:0005931","l":"axonemal nexin link","na":2,"nb":2,"a":[["cytoskeleton/axonemal_nexin_link.html","axonemal nexin link"],["cytoskeleton/axoneme.html","axoneme"]],"b":[["ComplexPortal%3ACPX-8086","Nexin-dynein regulatory complex"],["GO%3A0005931","axonemal nexin link"]]},{"id":"GO:0033106","l":"cis-Golgi network membrane","na":2,"nb":2,"a":[["membrane_organelle/cis_golgi_network.html","cis-Golgi network"],["membrane_organelle/cis_golgi_network_membrane.html","cis-Golgi network membrane"]],"b":[["ComplexPortal%3ACPX-1125","BUG1-GRH1 complex"],["GO%3A0033106","cis-Golgi network membrane"]]},{"id":"GO:0071002","l":"U4atac/U6atac snRNP","na":2,"nb":2,"a":[["ribonucleoprotein/u4atac_u6atac_snrnp.html","U4atac/U6atac snRNP"],["ribonucleoprotein/u4atac_u6atac_x_u5_tri_snrnp_complex.html","U4atac/U6atac x U5 tri-snRNP complex"]],"b":[["ComplexPortal%3ACPX-26500","U4atac/U6atac small nuclear ribonucleoprotein complex"],["GO%3A0071002","U4atac/U6atac snRNP"]]},{"id":"GO:0071009","l":"U4atac/U6atac x U5 tri-snRNP complex","na":2,"nb":2,"a":[["ribonucleoprotein/u12_type_precatalytic_spliceosome.html","U12-type precatalytic spliceosome"],["ribonucleoprotein/u4atac_u6atac_x_u5_tri_snrnp_complex.html","U4atac/U6atac x U5 tri-snRNP complex"]],"b":[["ComplexPortal%3ACPX-26502","U4atac/U6atac.U5 small nuclear ribonucleoprotein complex"],["GO%3A0071009","U4atac/U6atac x U5 tri-snRNP complex"]]},{"id":"GO:0071016","l":"U12-type precatalytic spliceosome","na":2,"nb":2,"a":[["ribonucleoprotein/u12_type_catalytic_step_1_spliceosome.html","U12-type catalytic step 1 spliceosome"],["ribonucleoprotein/u12_type_precatalytic_spliceosome.html","U12-type precatalytic spliceosome"]],"b":[["ComplexPortal%3ACPX-26506","Minor Spliceosomal Pre-B complex"],["GO%3A0071016","U12-type precatalytic spliceosome"]]},{"id":"GO:0090382","l":"phagosome maturation","na":2,"nb":2,"a":[["membrane_organelle/phagocytic_vesicle.html","phagocytic vesicle"],["membrane_organelle/phagocytic_vesicle_membrane.html","phagocytic vesicle membrane"]],"b":[["GO%3A0090382","phagosome maturation"],["GO%3A0090386","phagosome maturation involved in apoptotic cell clearance"]]},{"id":"GO:0120102","l":"bacterial-type flagellum secretion apparatus","na":2,"nb":2,"a":[["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"],["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["ComplexPortal%3ACPX-5885","Flagellar export complex"],["GO%3A0120102","bacterial-type flagellum secretion apparatus"]]},{"id":"GO:1990621","l":"ESCRT IV complex","na":2,"nb":2,"a":[["other/escrt_complex.html","ESCRT complex"],["other/escrt_iv_complex.html","ESCRT IV complex"]],"b":[["ComplexPortal%3ACPX-2462","VPS4-VTA1 compex"],["GO%3A1990621","ESCRT IV complex"]]},{"id":"InterPro:IPR006300","l":"","na":2,"nb":2,"a":[["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"]],"b":[["Pfam%3APF00460","Flagella basal body rod protein"],["PROSITE%3APS00588","Flagella basal body rod proteins signature"]]},{"id":"InterPro:IPR012834","l":"","na":2,"nb":2,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"]],"b":[["Pfam%3APF06429","Flagellar basal body rod FlgEFG protein C-terminal"],["PROSITE%3APS00588","Flagella basal body rod proteins signature"]]},{"id":"InterPro:IPR028245","l":"","na":2,"nb":2,"a":[["cytoskeleton/eisosome_filament.html","eisosome filament"],["other/eisosome.html","eisosome"]],"b":[["PANTHER%3APTHR31962","SPHINGOLIPID LONG CHAIN BASE-RESPONSIVE PROTEIN PIL1"],["Pfam%3APF13805","Eisosome component PIL1"]]},{"id":"Pfam:PF01304","l":"Gas vesicles protein GVPc repeated domain","na":2,"nb":2,"a":[["inclusion/gas_vesicle.html","gas vesicle"],["inclusion/gas_vesicle_shell.html","gas vesicle shell"]],"b":[["PROSITE%3APS00235","Gas vesicles protein GVPc repeated domain signature"],["Pfam%3APF01304","Gas vesicles protein GVPc repeated domain"]]},{"id":"UniProt:P06179","l":"","na":2,"nb":2,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"]],"b":[["Pfam%3APF08884","Flagellin D3 domain"],["Pfam%3APF21504","Flagellin, barrel domain"]]},{"id":"GO:0005576","l":"extracellular region","na":1,"nb":472,"a":[["envelope/periplasmic_space.html","periplasmic space"]],"b":[["ComplexPortal%3ACPX-4984","Complement C1 complex, C1ra-C1sa variant"],["ComplexPortal%3ACPX-4985","Complement C1 complex, C1rb-C1sb variant"],["ComplexPortal%3ACPX-1920","Complement C1 complex"],["ComplexPortal%3ACPX-1919","Complement component C1q complex"],["ComplexPortal%3ACPX-4981","Complement component C1q complex"],["ComplexPortal%3ACPX-7321","Crotoxin complex, aCA1/2/4-bCA1-CBa variant"]]},{"id":"GO:0003735","l":"structural constituent of ribosome","na":1,"nb":466,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["GO%3A0003735","structural constituent of ribosome"],["NCBIfam%3ANF004951","30S ribosomal protein S1"],["NCBIfam%3ANF004954","30S ribosomal protein S1"],["NCBIfam%3ANF004955","30S ribosomal protein S1"],["NCBIfam%3ATIGR00717","30S ribosomal protein S1"],["NCBIfam%3ANF001861","30S ribosomal protein S10"]]},{"id":"GO:0005829","l":"cytosol","na":1,"nb":457,"a":[["other/chaperonin_containing_t_complex.html","chaperonin-containing T-complex"]],"b":[["ComplexPortal%3ACPX-9082","19S-20S-PA28-alphabeta hybrid proteasome complex"],["ComplexPortal%3ACPX-9085","19S-20S-PA28-gamma hybrid proteasome complex"],["ComplexPortal%3ACPX-26562","Anamorsin-NDOR1 complex"],["ComplexPortal%3ACPX-1848","ATG12-ATG5 complex"],["ComplexPortal%3ACPX-3864","ATG12-ATG5 complex"],["ComplexPortal%3ACPX-132","BAT3 complex"]]},{"id":"GO:0006412","l":"translation","na":1,"nb":455,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["GO%3A0002181","cytoplasmic translation"],["GO%3A0032543","mitochondrial translation"],["GO%3A0032544","plastid translation"],["GO%3A0140241","translation at synapse"],["GO%3A0006412","translation"],["Reactome%3AR-HSA-72766","Translation"]]},{"id":"GO:0071944","l":"cell periphery","na":1,"nb":440,"a":[["envelope/plasma_membrane.html","plasma membrane"]],"b":[["GO%3A0071944","cell periphery"],["PANTHER%3APTHR31468","1,3-BETA-GLUCANOSYLTRANSFERASE GAS1"],["PANTHER%3APTHR28145","12 KDA HEAT SHOCK PROTEIN"],["PANTHER%3APTHR42755","3-DEOXY-MANNO-OCTULOSONATE CYTIDYLYLTRANSFERASE"],["PANTHER%3APTHR46574","43 KDA RECEPTOR-ASSOCIATED PROTEIN OF THE SYNAPSE"],["PANTHER%3APTHR15182","A-KINASE ANCHOR PROTEIN 5-RELATED"]]},{"id":"GO:0055085","l":"transmembrane transport","na":1,"nb":439,"a":[["envelope/plasma_membrane.html","plasma membrane"]],"b":[["ComplexPortal%3ACPX-271","5-hydroxytryptamine-3A/B receptor complex"],["ComplexPortal%3ACPX-275","5-hydroxytryptamine-3A/B receptor complex"],["ComplexPortal%3ACPX-277","5-hydroxytryptamine-3A/B receptor complex"],["ComplexPortal%3ACPX-276","5-hydroxytryptamine-3A/C receptor complex"],["ComplexPortal%3ACPX-272","5-hydroxytryptamine-3A/D receptor complex"],["ComplexPortal%3ACPX-273","5-hydroxytryptamine-3A/E receptor complex"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":1,"nb":396,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29033","requires iron(2+)"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.11","glucoside 3-dehydrogenase (cytochrome c)"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.2.3","L-lactate dehydrogenase (cytochrome)"],["EC%3A1.1.2.4","D-lactate dehydrogenase (cytochrome)"]]},{"id":"GO:0016887","l":"ATP hydrolysis activity","na":1,"nb":375,"a":[["other/escrt_iv_complex.html","ESCRT IV complex"]],"b":[["RHEA%3A13065","ATP + H2O = ADP + phosphate + H(+)"],["ComplexPortal%3ACPX-2262","26S proteasome complex"],["ComplexPortal%3ACPX-5993","26S proteasome complex"],["ComplexPortal%3ACPX-4314","Arabinose ABC transporter complex"],["ComplexPortal%3ACPX-6307","ATP10A-CDC50A P4-ATPase complex"],["ComplexPortal%3ACPX-6308","ATP10B-CDC50A P4-ATPase complex"]]},{"id":"GO:1902494","l":"catalytic complex","na":1,"nb":320,"a":[["other/exodeoxyribonuclease_v_complex.html","exodeoxyribonuclease V complex"]],"b":[["ComplexPortal%3ACPX-2581","2-(3-amino-3-carboxypropyl)histidine synthase complex"],["ComplexPortal%3ACPX-7849","2-(3-amino-3-carboxypropyl)histidine synthase complex"],["ComplexPortal%3ACPX-7850","2-(3-amino-3-carboxypropyl)histidine synthase complex"],["ComplexPortal%3ACPX-2833","Camalexin biosynthetic metabolon complex"],["ComplexPortal%3ACPX-2345","Cholera toxin"],["ComplexPortal%3ACPX-944","DNA (cytosine-5)-methyltransferase 3A complex"]]},{"id":"GO:0016192","l":"vesicle-mediated transport","na":1,"nb":172,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"]],"b":[["ComplexPortal%3ACPX-2510","Adaptor complex AP-1"],["ComplexPortal%3ACPX-26626","Adaptor complex AP-2"],["ComplexPortal%3ACPX-2725","Adaptor complex AP-2"],["ComplexPortal%3ACPX-26627","Adaptor complex AP-3"],["ComplexPortal%3ACPX-2727","Adaptor complex AP-3"],["ComplexPortal%3ACPX-5149","AP-2 Adaptor complex, alpha1 variant"]]},{"id":"GO:0003887","l":"DNA-directed DNA polymerase activity","na":1,"nb":153,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"]],"b":[["EC%3A2.7.7.7","DNA-directed DNA polymerase"],["ComplexPortal%3ACPX-1556","CMG-Pol epsilon complex"],["ComplexPortal%3ACPX-2097","DNA polymerase delta complex"],["ComplexPortal%3ACPX-2098","DNA polymerase delta complex"],["ComplexPortal%3ACPX-2099","DNA polymerase delta complex"],["ComplexPortal%3ACPX-2100","DNA polymerase delta complex"]]},{"id":"GO:0006364","l":"rRNA processing","na":1,"nb":139,"a":[["other/nucleolus.html","nucleolus"]],"b":[["ComplexPortal%3ACPX-44","LSM2-8 complex"],["ComplexPortal%3ACPX-885","MTERF4-NSUN4 mitochondrial ribosomal assembly complex"],["ComplexPortal%3ACPX-1862","PeBoW complex"],["ComplexPortal%3ACPX-2846","PeBoW complex"],["GO%3A1901259","chloroplast rRNA processing"],["GO%3A0000450","cleavage of bicistronic rRNA transcript (SSU-rRNA, LSU-rRNA)"]]},{"id":"GO:0006396","l":"RNA processing","na":1,"nb":131,"a":[["ribonucleoprotein/exosome_rnase_complex.html","exosome (RNase complex)"]],"b":[["ComplexPortal%3ACPX-603","Cytoplasmic exosome complex, DIS3 variant"],["ComplexPortal%3ACPX-600","Cytoplasmic exosome complex, DIS3L-EXOSC10 variant"],["ComplexPortal%3ACPX-601","Cytoplasmic exosome complex, Dis3l-Exosc10 variant"],["ComplexPortal%3ACPX-592","Cytoplasmic exosome complex, DIS3L variant"],["ComplexPortal%3ACPX-596","Cytoplasmic exosome complex, Dis3l variant"],["ComplexPortal%3ACPX-593","Exosome complex, DIS3 variant"]]},{"id":"GO:0006457","l":"protein folding","na":1,"nb":129,"a":[["other/chaperonin_containing_t_complex.html","chaperonin-containing T-complex"]],"b":[["ComplexPortal%3ACPX-2156","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-2772","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-6030","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-2113","GroEL-GroES complex"],["ComplexPortal%3ACPX-1671","Prefoldin co-chaperone complex"],["ComplexPortal%3ACPX-2389","Prefoldin co-chaperone complex"]]},{"id":"GO:0003697","l":"single-stranded DNA binding","na":1,"nb":119,"a":[["other/single_stranded_dna_binding_protein_complex.html","single-stranded DNA-binding protein complex"]],"b":[["ComplexPortal%3ACPX-2363","BCDX2 complex"],["ComplexPortal%3ACPX-1005","Cascade complex"],["ComplexPortal%3ACPX-2671","CMG helicase complex"],["ComplexPortal%3ACPX-297","CMG helicase complex"],["ComplexPortal%3ACPX-4526","CMG helicase complex"],["ComplexPortal%3ACPX-4541","CMG helicase complex"]]},{"id":"GO:1990234","l":"transferase complex","na":1,"nb":109,"a":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]],"b":[["ComplexPortal%3ACPX-1848","ATG12-ATG5 complex"],["ComplexPortal%3ACPX-3864","ATG12-ATG5 complex"],["ComplexPortal%3ACPX-356","ATG5-ATG12 complex"],["ComplexPortal%3ACPX-357","Atg5-Atg12 complex"],["ComplexPortal%3ACPX-6231","Coagulation factor XIIIa complex"],["ComplexPortal%3ACPX-2634","Dha Kinase"]]},{"id":"GO:0005694","l":"chromosome","na":1,"nb":101,"a":[["other/nuclear_chromosome.html","nuclear chromosome"]],"b":[["ComplexPortal%3ACPX-26662","SPO11 DNA endo-reduplication complex"],["ComplexPortal%3ACPX-26657","SPO11 meiotic recombination initiation complex"],["ComplexPortal%3ACPX-26658","SPO11 meiotic recombination initiation complex"],["ComplexPortal%3ACPX-26659","SPO11 meiotic recombination initiation complex"],["ComplexPortal%3ACPX-26664","SPO11, meiotic recombination initiation complex"],["ComplexPortal%3ACPX-3388","Synaptonemal complex"]]},{"id":"GO:0015986","l":"proton motive force-driven ATP synthesis","na":1,"nb":96,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-25764","Mitochondrial proton translocating ATP synthase complex"],["ComplexPortal%3ACPX-3281","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-6151","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-8618","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-8619","Mitochondrial proton-transporting ATP synthase complex, testis-specific variant"],["GO%3A0015986","proton motive force-driven ATP synthesis"]]},{"id":"NCBITaxon:2","l":"Bacteria","na":89,"nb":1,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2","Bacteria orthologous groups (OrthoDB)"]]},{"id":"GO:0051301","l":"cell division","na":1,"nb":86,"a":[["division_machinery/divisome_complex.html","divisome complex"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["ComplexPortal%3ACPX-5782","Tol-Pal cell envelope complex"],["GO%3A0090510","anticlinal cell division"],["GO%3A0008356","asymmetric cell division"],["GO%3A0007114","cell budding"],["GO%3A0051301","cell division"]]},{"id":"GO:0030254","l":"protein secretion by the type III secretion system","na":1,"nb":85,"a":[["secretion_system/type_iii_protein_secretion_system_complex.html","type III protein secretion system complex"]],"b":[["ComplexPortal%3ACPX-5885","Flagellar export complex"],["GO%3A0030254","protein secretion by the type III secretion system"],["NCBIfam%3ANF041307","AvrBs1/Avra family type III secretion system effector"],["NCBIfam%3ATIGR02501","EscE/YscE/SsaE family type III secretion system needle protein co-chaperone"],["NCBIfam%3ANF005535","flagellar protein export ATPase FliI"],["NCBIfam%3ANF006290","flagellar protein export ATPase FliI"]]},{"id":"GO:0006401","l":"RNA catabolic process","na":1,"nb":76,"a":[["ribonucleoprotein/exosome_rnase_complex.html","exosome (RNase complex)"]],"b":[["ComplexPortal%3ACPX-603","Cytoplasmic exosome complex, DIS3 variant"],["ComplexPortal%3ACPX-600","Cytoplasmic exosome complex, DIS3L-EXOSC10 variant"],["ComplexPortal%3ACPX-601","Cytoplasmic exosome complex, Dis3l-Exosc10 variant"],["ComplexPortal%3ACPX-592","Cytoplasmic exosome complex, DIS3L variant"],["ComplexPortal%3ACPX-596","Cytoplasmic exosome complex, Dis3l variant"],["ComplexPortal%3ACPX-2596","Cytoplasmic exosome"]]},{"id":"GO:0048193","l":"Golgi vesicle transport","na":1,"nb":70,"a":[["other/cog_complex.html","COG complex"]],"b":[["GO%3A0034498","early endosome to Golgi transport"],["GO%3A0006888","endoplasmic reticulum to Golgi vesicle-mediated transport"],["GO%3A0048193","Golgi vesicle transport"],["GO%3A0006891","intra-Golgi vesicle-mediated transport"],["GO%3A0034499","late endosome to Golgi transport"],["GO%3A0006892","post-Golgi vesicle-mediated transport"]]},{"id":"CHEBI:15422","l":"ATP","na":1,"nb":68,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15422","requires ATP"],["ARO%3A3002628","aad(6)"],["ARO%3A3002601","aadA"],["ARO%3A3004692","aadA10"],["ARO%3A3002611","aadA11"],["ARO%3A3002612","aadA12"]]},{"id":"NCBITaxon:246196","l":"Mycolicibacterium smegmatis (strain ATCC 700084 / mc(2)155)","na":1,"nb":66,"a":[["secretion_system/esx_3_type_vii_secretion_system_membrane_complex.html","ESX-3 type VII secretion system membrane complex"]],"b":[["Pfam%3APF12806","Acetyl-CoA dehydrogenase C-terminal like"],["Pfam%3APF12897","Aspartate amino-transferase"],["Pfam%3APF05088","Bacterial NAD-glutamate dehydrogenase, catalytic domain"],["Pfam%3APF26519","Biotin synthase auxiliary protein family"],["Pfam%3APF21095","CarD, C-terminal domain"],["Pfam%3APF24607","Arabinofuranosyltransferase D, third carbohydrate binding module"]]},{"id":"GO:0006935","l":"chemotaxis","na":1,"nb":64,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009454","aerotaxis"]]},{"id":"GO:0031012","l":"extracellular matrix","na":1,"nb":64,"a":[["other/holdfast.html","holdfast"]],"b":[["ComplexPortal%3ACPX-461","155 kDa platelet multimerin complex"],["ComplexPortal%3ACPX-960","Collagen type II trimer"],["ComplexPortal%3ACPX-1749","Collagen type X trimer"],["ComplexPortal%3ACPX-2971","Collagen type X trimer"],["ComplexPortal%3ACPX-1750","Collagen type XI trimer variant 1"],["ComplexPortal%3ACPX-2975","Collagen type XI trimer variant 1"]]},{"id":"GO:1990204","l":"oxidoreductase complex","na":1,"nb":63,"a":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"]],"b":[["ComplexPortal%3ACPX-1020","BLI-3/DOXA-1/TSP-15 dual oxidase complex"],["ComplexPortal%3ACPX-6573","L-lactate dehydrogenase A complex"],["ComplexPortal%3ACPX-6599","L-lactate dehydrogenase B complex"],["ComplexPortal%3ACPX-6602","L-lactate dehydrogenase C complex"],["ComplexPortal%3ACPX-6598","L-lactate dehydrogenase complex, A1B3 variant"],["ComplexPortal%3ACPX-6594","L-lactate dehydrogenase complex, A2B2 variant"]]},{"id":"GO:0015629","l":"actin cytoskeleton","na":1,"nb":61,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"]],"b":[["ComplexPortal%3ACPX-2586","Actin-related protein 2/3 complex, ARPC1A-ACTR3-ARPC5 variant"],["ComplexPortal%3ACPX-2592","Actin-related protein 2/3 complex, ARPC1A-ACTR3-ARPC5L variant"],["ComplexPortal%3ACPX-2490","Actin-related protein 2/3 complex, ARPC1A-ACTR3B-ARPC5 variant"],["ComplexPortal%3ACPX-2579","Actin-related protein 2/3 complex, ARPC1B-ACTR3-ARPC5 variant"],["ComplexPortal%3ACPX-2663","Actin-related protein 2/3 complex, ARPC1B-ACTR3-ARPC5L variant"],["ComplexPortal%3ACPX-2583","Actin-related protein 2/3 complex, ARPC1B-ACTR3B-ARPC5 variant"]]},{"id":"InterPro:IPR001460","l":"Penicillin-binding protein, transpeptidase","na":1,"nb":61,"a":[["envelope/peptidoglycan_based_cell_wall.html","peptidoglycan-based cell wall"]],"b":[["GO%3A0009274","peptidoglycan-based cell wall"],["GO%3A0008800","beta-lactamase activity"],["GO%3A0008658","penicillin binding"],["GO%3A0008955","peptidoglycan glycosyltransferase activity"],["GO%3A0071972","peptidoglycan L,D-transpeptidase activity"],["GO%3A0009002","serine-type D-Ala-D-Ala carboxypeptidase activity"]]},{"id":"NCBITaxon:1111708","l":"Synechocystis sp. (strain ATCC 27184 / PCC 6803 / Kazusa)","na":1,"nb":61,"a":[["energy_complex/phycobilisome.html","phycobilisome"]],"b":[["Pfam%3APF07698","7TM receptor with intracellular HD hydrolase"],["Pfam%3APF07697","7TM-HD extracellular"],["Pfam%3APF11266","Long-chain fatty aldehyde decarbonylase"],["Pfam%3APF21571","Arginine dihydrolase ArgZ-like, C-terminal, first region"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF17886","HSP20-like domain found in ArsA"]]},{"id":"GO:0016197","l":"endosomal transport","na":1,"nb":60,"a":[["membrane_organelle/endosome.html","endosome"]],"b":[["ComplexPortal%3ACPX-479","Bloc-1 complex"],["ComplexPortal%3ACPX-11549","Huntingtin-HAP40 endosomal complex"],["ComplexPortal%3ACPX-26674","Huntingtin-HAP40 endosomal complex"],["ComplexPortal%3ACPX-1059","Sorf-1-Sorf-2 complex"],["ComplexPortal%3ACPX-2562","WASH complex"],["ComplexPortal%3ACPX-1173","WASH complex, variant WASH2P/WASHC2A"]]},{"id":"GO:1990904","l":"ribonucleoprotein complex","na":1,"nb":58,"a":[["ribonucleoprotein/signal_recognition_particle.html","signal recognition particle"]],"b":[["ComplexPortal%3ACPX-10181","Vault ribonucleoprotein complex"],["GO%3A0070993","cytosolic translation preinitiation complex"],["GO%3A0071204","histone pre-mRNA 3'end processing complex"],["GO%3A0033620","Mei2 nuclear dot complex"],["GO%3A0180053","mitochondrial translation preinitiation complex"],["GO%3A0043614","multi-eIF complex"]]},{"id":"GO:0008137","l":"NADH dehydrogenase (ubiquinone) activity","na":1,"nb":53,"a":[["energy_complex/respiratory_chain_complex_i.html","respiratory chain complex I"]],"b":[["EC%3A7.1.1.2","NADH:ubiquinone reductase (H(+)-translocating)"],["RHEA%3A29091","a ubiquinone + NADH + 5 H(+)(in) = a ubiquinol + NAD(+) + 4 H(+)(out)"],["ComplexPortal%3ACPX-266","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-577","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-8628","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-8638","Mitochondrial respiratory chain complex I, testis-specific variant"]]},{"id":"GO:0007005","l":"mitochondrion organization","na":1,"nb":50,"a":[["other/mitochondrial_prohibitin_complex.html","mitochondrial prohibitin complex"]],"b":[["ComplexPortal%3ACPX-3196","ERMES complex"],["ComplexPortal%3ACPX-1703","Prohibitin complex"],["ComplexPortal%3ACPX-4114","Prohibitin complex"],["ComplexPortal%3ACPX-5741","Prohibitin complex"],["ComplexPortal%3ACPX-5743","Prohibitin complex"],["GO%3A0008637","apoptotic mitochondrial changes"]]},{"id":"NCBITaxon:2759","l":"Eukaryota","na":49,"nb":1,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"],["cytoskeleton/conoid.html","conoid"],["cytoskeleton/cytoophidium.html","cytoophidium"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2759","Eukaryota orthologous groups (OrthoDB)"]]},{"id":"GO:0006897","l":"endocytosis","na":1,"nb":44,"a":[["membrane_organelle/endocytic_vesicle.html","endocytic vesicle"]],"b":[["ComplexPortal%3ACPX-5322","Endosomal SNARE complex TLG2-VTI1-TLG1-SNC1"],["ComplexPortal%3ACPX-5321","Endosomal SNARE complex TLG2-VTI1-TLG1-SNC2"],["ComplexPortal%3ACPX-4024","MTM6-MTM9 myotubularin lipid phosphatase complex"],["ComplexPortal%3ACPX-1500","Myosin class I complex, MYO3 variant"],["ComplexPortal%3ACPX-1470","Myosin class I complex, MYO5 variant"],["ComplexPortal%3ACPX-426","PAN1 actin cytoskeleton-regulatory complex"]]},{"id":"GO:0042254","l":"ribosome biogenesis","na":1,"nb":44,"a":[["other/nucleolus.html","nucleolus"]],"b":[["ComplexPortal%3ACPX-8940","Ribosome biogenesis complex"],["GO%3A0042254","ribosome biogenesis"],["NCBIfam%3ANF012679","50S ribosomal protein L10"],["NCBIfam%3ANF016308","Gar1/Naf1 RNA binding region"],["NCBIfam%3ANF016057","nucleolar RNA-binding Nop10p family protein"],["NCBIfam%3ATIGR01575","ribosomal protein S18-alanine N-acetyltransferase"]]},{"id":"NCBITaxon:243277","l":"Vibrio cholerae serotype O1 (strain ATCC 39315 / El Tor Inaba N16961)","na":1,"nb":44,"a":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"]],"b":[["IDPO%3A0000011","disorder to order"],["IDPO%3A0000014","order to disorder"],["Pfam%3APF16671","Actin cross-linking domain"],["Pfam%3APF00842","Alanine racemase, C-terminal domain"],["Pfam%3APF06228","Haem utilisation ChuX/HutX"],["Pfam%3APF19425","Csd3 second domain"]]},{"id":"GO:0045271","l":"respiratory chain complex I","na":1,"nb":43,"a":[["energy_complex/respiratory_chain_complex_i.html","respiratory chain complex I"]],"b":[["ComplexPortal%3ACPX-266","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-577","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-8628","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-8638","Mitochondrial respiratory chain complex I, testis-specific variant"],["ComplexPortal%3ACPX-243","Respiratory chain complex I"],["GO%3A0045271","respiratory chain complex I"]]},{"id":"GO:0004129","l":"cytochrome-c oxidase activity","na":1,"nb":41,"a":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]],"b":[["EC%3A7.1.1.9","cytochrome-c oxidase"],["METPO%3A1007086","oxidase negative"],["METPO%3A1007085","oxidase positive"],["RHEA%3A11436","4 Fe(II)-[cytochrome c] + O2 + 8 H(+)(in) = 4 Fe(III)-[cytochrome c] + 2 H2O + 4 H(+)(out)"],["ComplexPortal%3ACPX-1721","Mitochondrial respiratory chain complex IV, COX5A variant"],["ComplexPortal%3ACPX-1722","Mitochondrial respiratory chain complex IV, COX5B variant"]]},{"id":"GO:0000045","l":"autophagosome assembly","na":1,"nb":40,"a":[["other/phagophore_assembly_site.html","phagophore assembly site"]],"b":[["ComplexPortal%3ACPX-3863","atg-5-atg-12-atg-16.1-atg-16.2 complex"],["ComplexPortal%3ACPX-3865","atg-5-atg-12-atg-16.1 complex"],["ComplexPortal%3ACPX-3866","atg-5-atg-12-atg-16.2 complex"],["ComplexPortal%3ACPX-2745","ATG1 protein kinase complex"],["ComplexPortal%3ACPX-1676","ATG1/ULK1 protein kinase complex"],["ComplexPortal%3ACPX-1849","ATG12-ATG5-ATG16 complex"]]},{"id":"GO:0019866","l":"organelle inner membrane","na":1,"nb":40,"a":[["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"]],"b":[["GO%3A0005743","mitochondrial inner membrane"],["GO%3A0005637","nuclear inner membrane"],["GO%3A0019866","organelle inner membrane"],["GO%3A0009528","plastid inner membrane"],["InterPro%3AIPR002361","Antenna complex, alpha subunit conserved site"],["InterPro%3AIPR010974","Phosphotransferase system, N-acetylglucosamine-specific IIBC component"]]},{"id":"GO:0036503","l":"ERAD pathway","na":1,"nb":39,"a":[["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"]],"b":[["ComplexPortal%3ACPX-6597","bZIP transcription factor complex, ATF6-XBP1"],["ComplexPortal%3ACPX-2946","CDC48-NPL4-UFD1 AAA ATPase complex"],["ComplexPortal%3ACPX-1323","CDC48-RAD23-UFD2 complex"],["ComplexPortal%3ACPX-2948","CUE1-UBC7 ubiquitin-conjugating enzyme complex"],["ComplexPortal%3ACPX-3074","Doa10 E3 ubiquitin ligase complex"],["ComplexPortal%3ACPX-7121","ERLIN1-ERLIN2 complex"]]},{"id":"NCBITaxon:2157","l":"Archaea","na":39,"nb":1,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2157","Archaea orthologous groups (OrthoDB)"]]},{"id":"CHEBI:17855","l":"triglyceride","na":1,"nb":34,"a":[["inclusion/lipid_droplet.html","lipid droplet"]],"b":[["EC%3A2.3.1.158","phospholipid:diacylglycerol acyltransferase"],["EC%3A2.3.1.77","triacylglycerol--sterol O-acyltransferase"],["EC%3A3.1.1.3","triacylglycerol lipase"],["EC%3A3.1.1.34","lipoprotein lipase"],["EC%3A3.1.1.79","hormone-sensitive lipase"],["RHEA%3A77987","9-hydroxy-octadecanoate + a triacylglycerol = 9-(acyloxy)-octadecanoate + a 1,3-diacylglycerol"]]},{"id":"GO:0030312","l":"external encapsulating structure","na":1,"nb":34,"a":[["envelope/glycocalyx.html","glycocalyx"]],"b":[["GO%3A0009279","cell outer membrane"],["GO%3A0005618","cell wall"],["GO%3A0140143","collagenous component of basement membrane"],["GO%3A0140152","collagenous component of interstitial matrix"],["GO%3A0042600","egg chorion"],["GO%3A0030312","external encapsulating structure"]]},{"id":"GO:0008608","l":"attachment of spindle microtubules to kinetochore","na":1,"nb":33,"a":[["other/dash_complex.html","DASH complex"]],"b":[["ComplexPortal%3ACPX-1156","Central kinetochore CTF19 complex"],["ComplexPortal%3ACPX-1187","COMA complex"],["ComplexPortal%3ACPX-1186","Kinetochore MIS12 complex"],["ComplexPortal%3ACPX-5643","Kinetochore MIS12 complex"],["ComplexPortal%3ACPX-5701","Kinetochore MIS12 complex"],["ComplexPortal%3ACPX-807","Kinetochore Mis12 complex"]]},{"id":"GO:0032040","l":"small-subunit processome","na":1,"nb":33,"a":[["other/nucleolus.html","nucleolus"]],"b":[["ComplexPortal%3ACPX-1604","Small ribosomal subunit processome"],["ComplexPortal%3ACPX-2511","Small ribosomal subunit processome"],["GO%3A0032040","small-subunit processome"],["NCBIfam%3ANF016770","Fcf1"],["InterPro%3AIPR013934","U3 small nucleolar RNA-associated protein 13, C-terminal"],["InterPro%3AIPR007319","WDR36/Utp21, C-terminal domain"]]},{"id":"GO:0006635","l":"fatty acid beta-oxidation","na":1,"nb":32,"a":[["membrane_organelle/peroxisomal_matrix.html","peroxisomal matrix"]],"b":[["ComplexPortal%3ACPX-3964","fadBA fatty acid oxidation complex, aerobic conditions"],["ComplexPortal%3ACPX-3966","fadJI fatty acid oxidation complex, anaerobic conditions"],["ComplexPortal%3ACPX-6245","Mitochondrial trifunctional enzyme complex"],["GO%3A0006635","fatty acid beta-oxidation"],["GO%3A0033539","fatty acid beta-oxidation using acyl-CoA dehydrogenase"],["GO%3A0033540","fatty acid beta-oxidation using acyl-CoA oxidase"]]},{"id":"GO:0015630","l":"microtubule cytoskeleton","na":1,"nb":32,"a":[["cytoskeleton/microtubule.html","microtubule"]],"b":[["ComplexPortal%3ACPX-116","Chromosomal passenger complex, AURKB variant"],["ComplexPortal%3ACPX-20753","Chromosomal passenger complex, AURKC variant"],["ComplexPortal%3ACPX-119","Chromosomal passenger complex"],["ComplexPortal%3ACPX-3461","Chromosomal passenger complex"],["ComplexPortal%3ACPX-6365","Katanin complex, KATNA1-KATNB1 variant"],["ComplexPortal%3ACPX-6366","Katanin complex, KATNA1-KATNBL1 variant"]]},{"id":"GO:0050524","l":"coenzyme-B sulfoethylthiotransferase activity","na":1,"nb":32,"a":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]],"b":[["EC%3A2.8.4.1","coenzyme-B sulfoethylthiotransferase"],["RHEA%3A12532","coenzyme B + methyl-coenzyme M = methane + coenzyme M-coenzyme B heterodisulfide"],["GO%3A0050524","coenzyme-B sulfoethylthiotransferase activity"],["NCBIfam%3ATIGR03256","coenzyme-B sulfoethylthiotransferase subunit alpha"],["NCBIfam%3ATIGR03257","coenzyme-B sulfoethylthiotransferase subunit beta"],["NCBIfam%3ANF014313","coenzyme-B sulfoethylthiotransferase subunit gamma"]]},{"id":"UniProt:P07363","l":"","na":1,"nb":32,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["ComplexPortal%3ACPX-1077","Chemotaxis phosphorelay complex CheA-CheY"],["GO%3A0098561","methyl accepting chemotaxis protein complex"],["GO%3A0004673","protein histidine kinase activity"],["GO%3A0009454","aerotaxis"],["GO%3A0071977","bacterial-type flagellum-dependent swimming motility"],["GO%3A0051649","establishment of localization in cell"]]},{"id":"GO:0009360","l":"DNA polymerase III complex","na":1,"nb":31,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"]],"b":[["ComplexPortal%3ACPX-1924","DNA polymerase III holoenzyme complex"],["GO%3A0009360","DNA polymerase III complex"],["NCBIfam%3ANF014787","DNA polymerase III beta subunit, C-terminal domain"],["NCBIfam%3ANF012915","DNA polymerase III beta subunit, N-terminal domain"],["NCBIfam%3ANF017911","DNA polymerase III, delta subunit"],["NCBIfam%3ATIGR01405","DNA polymerase III subunit alpha"]]},{"id":"GO:0004298","l":"threonine-type endopeptidase activity","na":1,"nb":30,"a":[["other/proteasome_core_complex.html","proteasome core complex"]],"b":[["ComplexPortal%3ACPX-9082","19S-20S-PA28-alphabeta hybrid proteasome complex"],["ComplexPortal%3ACPX-9085","19S-20S-PA28-gamma hybrid proteasome complex"],["ComplexPortal%3ACPX-9021","20S spermatoproteasome complex"],["ComplexPortal%3ACPX-9004","20S thymoproteasome complex"],["ComplexPortal%3ACPX-2262","26S proteasome complex"],["ComplexPortal%3ACPX-5993","26S proteasome complex"]]},{"id":"GO:0006887","l":"exocytosis","na":1,"nb":30,"a":[["other/exocyst.html","exocyst"]],"b":[["GO%3A0160192","autophagosome-dependent secretion"],["GO%3A0045054","constitutive secretory pathway"],["GO%3A0098967","exocytic insertion of neurotransmitter receptor to postsynaptic membrane"],["GO%3A0006887","exocytosis"],["GO%3A1990182","exosomal secretion"],["GO%3A0045055","regulated exocytosis"]]},{"id":"GO:0090148","l":"membrane fission","na":1,"nb":30,"a":[["other/escrt_iii_complex.html","ESCRT III complex"]],"b":[["ComplexPortal%3ACPX-2452","ESCRT-0 complex"],["ComplexPortal%3ACPX-2825","ESCRT-0 complex, STAM variant"],["ComplexPortal%3ACPX-7143","ESCRT-0 complex, STAM2 variant"],["ComplexPortal%3ACPX-7162","ESCRT-I complex, VPS37A-MVB12A variant"],["ComplexPortal%3ACPX-7146","ESCRT-I complex, VPS37A-MVB12B variant"],["ComplexPortal%3ACPX-7181","ESCRT-I complex, VPS37A-UBAP1 variant"]]},{"id":"GO:0099513","l":"polymeric cytoskeletal fiber","na":1,"nb":29,"a":[["cytoskeleton/microtubule.html","microtubule"]],"b":[["GO%3A0005884","actin filament"],["GO%3A0005882","intermediate filament"],["GO%3A0005874","microtubule"],["GO%3A0001520","outer dense fiber"],["GO%3A0099513","polymeric cytoskeletal fiber"],["PANTHER%3APTHR12607","ADENOMATOUS POLYPOSIS COLI PROTEIN FAMILY"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":29,"a":[["spore/exosporium.html","exosporium"]],"b":[["Pfam%3APF09156","Anthrax toxin lethal factor, middle domain"],["Pfam%3APF08401","N-terminal domain of anti-restriction factor ArdC"],["Pfam%3APF07737","Anthrax toxin lethal factor, N- and C-terminal domain"],["Pfam%3APF27053","Bacillus anthracis plasmid pXO2 protein 26"],["Pfam%3APF13205","Bacterial Ig-like domain"],["Pfam%3APF17475","Clostridial binary toxin B/anthrax toxin PA domain 2"]]},{"id":"GO:1905370","l":"serine-type endopeptidase complex","na":1,"nb":28,"a":[["other/mitochondrial_inner_membrane_peptidase_complex.html","mitochondrial inner membrane peptidase complex"]],"b":[["ComplexPortal%3ACPX-6224","Active Protein C complex"],["ComplexPortal%3ACPX-6222","alpha-thrombin complex"],["ComplexPortal%3ACPX-6181","CL-LK-MASP1 lectin-protease complex"],["ComplexPortal%3ACPX-6240","CL-LK-MASP2 lectin-protease complex"],["ComplexPortal%3ACPX-6221","Coagulation factor Va-Xa complex"],["ComplexPortal%3ACPX-279","Coagulation factor VIIa - tissue factor complex"]]},{"id":"Pfam:PF00015","l":"Methyl-accepting chemotaxis protein (MCP) signalling domain","na":1,"nb":28,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["GO%3A0009454","aerotaxis"],["CDD%3Acd01068","globin_sensor"],["CDD%3Acd19411","MCP2201-like_sensor"],["CDD%3Acd11386","MCP_signal"],["InterPro%3AIPR007891","CHASE3"],["InterPro%3AIPR024478","Chemotaxis methyl-accepting receptor HlyB-like, 4HB MCP domain"]]},{"id":"GO:0015627","l":"type II protein secretion system complex","na":1,"nb":26,"a":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"]],"b":[["GO%3A0015627","type II protein secretion system complex"],["NCBIfam%3ATIGR02533","type II secretion system ATPase GspE"],["NCBIfam%3ATIGR02120","type II secretion system inner membrane protein GspF"],["NCBIfam%3ATIGR01710","type II secretion system major pseudopilin GspG"],["NCBIfam%3ATIGR01708","type II secretion system minor pseudopilin GspH"],["NCBIfam%3ATIGR01707","type II secretion system minor pseudopilin GspI"]]},{"id":"UniProt:P0AES6","l":"","na":1,"nb":26,"a":[["other/dna_gyrase_complex.html","DNA gyrase complex"]],"b":[["ComplexPortal%3ACPX-2177","GyrA-GyrB DNA Gyrase complex"],["GO%3A0009330","DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) complex"],["GO%3A0034335","DNA negative supercoiling activity"],["GO%3A0003918","DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) activity"],["NCBIfam%3ANF004189","DNA gyrase subunit B"],["NCBIfam%3ANF011501","DNA gyrase subunit B"]]},{"id":"GO:0005885","l":"Arp2/3 protein complex","na":1,"nb":25,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"]],"b":[["ComplexPortal%3ACPX-2586","Actin-related protein 2/3 complex, ARPC1A-ACTR3-ARPC5 variant"],["ComplexPortal%3ACPX-2592","Actin-related protein 2/3 complex, ARPC1A-ACTR3-ARPC5L variant"],["ComplexPortal%3ACPX-2490","Actin-related protein 2/3 complex, ARPC1A-ACTR3B-ARPC5 variant"],["ComplexPortal%3ACPX-2579","Actin-related protein 2/3 complex, ARPC1B-ACTR3-ARPC5 variant"],["ComplexPortal%3ACPX-2663","Actin-related protein 2/3 complex, ARPC1B-ACTR3-ARPC5L variant"],["ComplexPortal%3ACPX-2583","Actin-related protein 2/3 complex, ARPC1B-ACTR3B-ARPC5 variant"]]},{"id":"GO:0016163","l":"nitrogenase activity","na":1,"nb":25,"a":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"]],"b":[["EC%3A1.18.6.1","nitrogenase"],["EC%3A1.18.6.2","vanadium-dependent nitrogenase"],["RHEA%3A21448","N2 + 8 reduced [2Fe-2S]-[ferredoxin] + 16 ATP + 16 H2O = H2 + 8 oxidized [2Fe-2S]-[ferredoxin] + 2 NH4(+) + 16 ADP + 16 phosphate + 6 H(+)"],["GO%3A0016163","nitrogenase activity"],["NCBIfam%3ATIGR02931","Fe-only nitrogenase subunit beta"],["NCBIfam%3ATIGR02929","Fe-only nitrogenase subunit delta"]]},{"id":"GO:1902555","l":"endoribonuclease complex","na":1,"nb":25,"a":[["ribonucleoprotein/ribonuclease_mrp_complex.html","ribonuclease MRP complex"]],"b":[["ComplexPortal%3ACPX-4629","C3PO endoribonuclease complex"],["ComplexPortal%3ACPX-890","C3PO endoribonuclease complex"],["ComplexPortal%3ACPX-5785","MERS-CoV NSP15 complex"],["ComplexPortal%3ACPX-2240","Mitochondrial RNase Z complex"],["ComplexPortal%3ACPX-8565","PUCH ribonuclease complex, slfl-3 variant"],["ComplexPortal%3ACPX-8569","PUCH ribonuclease complex, slfl-4 variant"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":1,"nb":25,"a":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"]],"b":[["Pfam%3APF13372","Alginate export"],["Pfam%3APF25965","ALG44 beta-barrel domain"],["Pfam%3APF25964","ALG44, barrel-sandwich hybrid domain"],["Pfam%3APF16844","Dinitrogenase iron-molybdenum cofactor, N-terminal"],["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"]]},{"id":"GO:0006893","l":"Golgi to plasma membrane transport","na":1,"nb":24,"a":[["other/exomer_complex.html","exomer complex"]],"b":[["ComplexPortal%3ACPX-1719","Exomer complex"],["ComplexPortal%3ACPX-26504","Exomer complex"],["ComplexPortal%3ACPX-1365","Vesicular SNARE complex SSO1-SEC9-SNC1"],["ComplexPortal%3ACPX-5463","Vesicular SNARE complex SSO1-SEC9-SNC2"],["ComplexPortal%3ACPX-1369","Vesicular SNARE complex SSO2-SEC9-SNC1"],["ComplexPortal%3ACPX-5465","Vesicular SNARE complex SSO2-SEC9-SNC2"]]},{"id":"GO:0031968","l":"organelle outer membrane","na":1,"nb":24,"a":[["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"]],"b":[["GO%3A0009535","chloroplast thylakoid membrane"],["GO%3A0005741","mitochondrial outer membrane"],["GO%3A0005640","nuclear outer membrane"],["GO%3A0031968","organelle outer membrane"],["GO%3A0009527","plastid outer membrane"],["PANTHER%3APTHR37278","AUTOPHAGY-RELATED PROTEIN 33-RELATED"]]},{"id":"UniProt:P0AES4","l":"","na":1,"nb":24,"a":[["other/dna_gyrase_complex.html","DNA gyrase complex"]],"b":[["ComplexPortal%3ACPX-5906","CcdB-poisoned gyrase complex"],["ComplexPortal%3ACPX-2177","GyrA-GyrB DNA Gyrase complex"],["GO%3A0009330","DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) complex"],["GO%3A0008094","ATP-dependent activity, acting on DNA"],["GO%3A0034335","DNA negative supercoiling activity"],["GO%3A0003918","DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) activity"]]},{"id":"GO:0097729","l":"9+2 motile cilium","na":1,"nb":23,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["ComplexPortal%3ACPX-8161","Radial spoke complex, ciliiar variant"],["ComplexPortal%3ACPX-8163","Radial spoke complex, ciliiar variant"],["ComplexPortal%3ACPX-8162","Radial spoke complex, flagellar variant"],["ComplexPortal%3ACPX-8164","Radial spoke complex, flagellar variant"],["GO%3A0097729","9+2 motile cilium"],["GO%3A0097554","left anterior flagellum"]]},{"id":"GO:0000775","l":"chromosome, centromeric region","na":1,"nb":22,"a":[["other/cbf3_complex.html","CBF3 complex"]],"b":[["ComplexPortal%3ACPX-26413","CENP-A recruiting complex"],["ComplexPortal%3ACPX-3272","CENP-A recruiting complex"],["ComplexPortal%3ACPX-3273","CENP-A recruiting complex"],["GO%3A0000775","chromosome, centromeric region"],["GO%3A0000779","condensed chromosome, centromeric region"],["InterPro%3AIPR009361","Centromere/kinetochore protein zw10, N-terminal"]]},{"id":"GO:0006891","l":"intra-Golgi vesicle-mediated transport","na":1,"nb":22,"a":[["other/trappii_protein_complex.html","TRAPPII protein complex"]],"b":[["ComplexPortal%3ACPX-1939","TRAPP II complex"],["GO%3A0045057","cisternal progression"],["GO%3A0048219","inter-Golgi cisterna vesicle-mediated transport"],["GO%3A0006891","intra-Golgi vesicle-mediated transport"],["GO%3A0000301","retrograde transport, vesicle recycling within Golgi"],["InterPro%3AIPR012955","CASP, C-terminal"]]},{"id":"GO:0008121","l":"quinol-cytochrome-c reductase activity","na":1,"nb":22,"a":[["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"]],"b":[["EC%3A7.1.1.8","quinol--cytochrome-c reductase"],["RHEA%3A11484","a quinol + 2 Fe(III)-[cytochrome c](out) = a quinone + 2 Fe(II)-[cytochrome c](out) + 2 H(+)(out)"],["ComplexPortal%3ACPX-560","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-563","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-567","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-8730","Mitochondrial respiratory chain complex III"]]},{"id":"GO:0019953","l":"sexual reproduction","na":1,"nb":22,"a":[["membrane_organelle/micronucleus.html","micronucleus"]],"b":[["GO%3A0000747","conjugation with cellular fusion"],["GO%3A0000748","conjugation with mutual genetic exchange"],["GO%3A0019953","sexual reproduction"],["InterPro%3AIPR007689","A-alpha-Y mating type-dependent binding domain"],["PANTHER%3APTHR22655","ATP-DEPENDENT RNA HELICASE TDRD12-RELATED"],["PANTHER%3APTHR47193","CATION CHANNEL SPERM-ASSOCIATED PROTEIN 1"]]},{"id":"GO:0030286","l":"dynein complex","na":1,"nb":22,"a":[["cytoskeleton/axonemal_dynein_complex.html","axonemal dynein complex"]],"b":[["ComplexPortal%3ACPX-5699","Cytoplasmic dynein complex, variant 1"],["ComplexPortal%3ACPX-26357","Dynein-2 complex, light-chain variant 1"],["ComplexPortal%3ACPX-26360","Dynein-2 complex, light-chain variant 2"],["ComplexPortal%3ACPX-26361","Dynein-2 complex, light-chain variant 3"],["ComplexPortal%3ACPX-26362","Dynein-2 complex, light-chain variant 4"],["ComplexPortal%3ACPX-26363","Dynein-2 complex, light-chain variant 5"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":1,"nb":21,"a":[["membrane_organelle/trichocyst.html","trichocyst"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29108","requires calcium(2+)"],["EC%3A1.13.12.24","calcium-regulated photoprotein"],["EC%3A7.2.2.10","P-type Ca(2+) transporter"],["RHEA%3A72631","3 Li(+)(out) + Ca(2+)(in) = 3 Li(+)(in) + Ca(2+)(out)"],["RHEA%3A55884","[aequorin] + 3 Ca(2+) = [aequorin]--dioxetanone"],["RHEA%3A55888","[aequorin]--dioxetanone = excited state-[aequorin] + CO2"]]},{"id":"GO:0016682","l":"oxidoreductase activity, acting on diphenols and related substances as donors, oxygen as acceptor","na":1,"nb":21,"a":[["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]],"b":[["ComplexPortal%3ACPX-268","Cytochrome bd-I ubiquinol oxidase complex"],["ComplexPortal%3ACPX-269","Cytochrome bd-II ubiquinol oxidase complex"],["GO%3A0047561","3-hydroxyanthranilate oxidase activity"],["GO%3A0009916","alternative oxidase activity"],["GO%3A0004097","catechol oxidase activity"],["GO%3A0052716","hydroquinone:oxygen oxidoreductase activity"]]},{"id":"GO:0042729","l":"DASH complex","na":1,"nb":21,"a":[["other/dash_complex.html","DASH complex"]],"b":[["ComplexPortal%3ACPX-10081","DASH complex"],["ComplexPortal%3ACPX-1041","DASH complex"],["GO%3A0042729","DASH complex"],["PANTHER%3APTHR28200","DASH COMPLEX SUBUNIT ASK1"],["PANTHER%3APTHR28025","DASH COMPLEX SUBUNIT DAD1"],["PANTHER%3APTHR28036","DASH COMPLEX SUBUNIT DAD2"]]},{"id":"UniProt:P06710","l":"","na":1,"nb":21,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"]],"b":[["ComplexPortal%3ACPX-1926","DNA polymerase III clamp loader complex"],["GO%3A0043846","DNA polymerase III, clamp loader complex"],["GO%3A0009360","DNA polymerase III complex"],["GO%3A0044776","DNA polymerase III, core complex"],["GO%3A0003689","DNA clamp loader activity"],["GO%3A0030337","DNA polymerase processivity factor activity"]]},{"id":"GO:0008177","l":"succinate dehydrogenase (quinone) activity","na":1,"nb":20,"a":[["energy_complex/respiratory_chain_complex_ii_succinate_dehydrogenase.html","respiratory chain complex II (succinate dehydrogenase)"]],"b":[["EC%3A1.3.5.1","succinate dehydrogenase"],["RHEA%3A27834","a menaquinone + succinate = a menaquinol + fumarate"],["RHEA%3A40523","a quinone + succinate = fumarate + a quinol"],["RHEA%3A75711","a rhodoquinone + succinate = a rhodoquinol + fumarate"],["RHEA%3A13713","a ubiquinone + succinate = a ubiquinol + fumarate"],["ComplexPortal%3ACPX-561","Mitochondrial respiratory chain complex II"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":1,"nb":20,"a":[["envelope/s_layer.html","S-layer"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF27529","AMPT"],["Pfam%3APF24856","L-arabinose isomerase central domain"],["Pfam%3APF02610","L-arabinose isomerase N-terminal domain"],["Pfam%3APF11762","L-arabinose isomerase C-terminal domain"],["Pfam%3APF17727","CtsR C-terminal dimerization domain"]]},{"id":"GO:0000178","l":"exosome (RNase complex)","na":1,"nb":19,"a":[["ribonucleoprotein/exosome_rnase_complex.html","exosome (RNase complex)"]],"b":[["ComplexPortal%3ACPX-603","Cytoplasmic exosome complex, DIS3 variant"],["ComplexPortal%3ACPX-2596","Cytoplasmic exosome"],["ComplexPortal%3ACPX-593","Exosome complex, DIS3 variant"],["ComplexPortal%3ACPX-598","Exosome complex, Dis3 variant"],["ComplexPortal%3ACPX-2595","Nuclear exosome"],["ComplexPortal%3ACPX-599","Nuclear/nucleolar exosome complex, DIS3-RRP6 variant"]]},{"id":"GO:0030677","l":"ribonuclease P complex","na":1,"nb":19,"a":[["ribonucleoprotein/dimeric_ribonuclease_p_complex.html","dimeric ribonuclease P complex"]],"b":[["GO%3A0030680","dimeric ribonuclease P complex"],["GO%3A0030678","mitochondrial ribonuclease P complex"],["GO%3A0030681","multimeric ribonuclease P complex"],["GO%3A0030677","ribonuclease P complex"],["NCBIfam%3ANF046110","ribonuclease P protein component 1"],["NCBIfam%3ANF046108","ribonuclease P protein component 3"]]},{"id":"GO:0044232","l":"organelle membrane contact site","na":1,"nb":19,"a":[["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"]],"b":[["GO%3A0140284","endoplasmic reticulum-endosome membrane contact site"],["GO%3A0140268","endoplasmic reticulum-plasma membrane contact site"],["GO%3A0160258","endoplasmic reticulum-trans-Golgi network membrane contact site"],["GO%3A0098853","endoplasmic reticulum-vacuole membrane contact site"],["GO%3A0044233","mitochondria-associated endoplasmic reticulum membrane contact site"],["GO%3A0044284","mitochondrial crista junction"]]},{"id":"GO:0045277","l":"respiratory chain complex IV","na":1,"nb":19,"a":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]],"b":[["ComplexPortal%3ACPX-1721","Mitochondrial respiratory chain complex IV, COX5A variant"],["ComplexPortal%3ACPX-1722","Mitochondrial respiratory chain complex IV, COX5B variant"],["ComplexPortal%3ACPX-6123","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-8620","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-9641","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-8621","Mitochondrial respiratory chain complex IV, testis-specific variant"]]},{"id":"GO:0070069","l":"cytochrome complex","na":1,"nb":19,"a":[["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]],"b":[["ComplexPortal%3ACPX-268","Cytochrome bd-I ubiquinol oxidase complex"],["ComplexPortal%3ACPX-269","Cytochrome bd-II ubiquinol oxidase complex"],["GO%3A0009512","cytochrome b6f complex"],["GO%3A0070069","cytochrome complex"],["GO%3A0009319","cytochrome o ubiquinol oxidase complex"],["GO%3A0045275","respiratory chain complex III"]]},{"id":"GO:0099512","l":"supramolecular fiber","na":1,"nb":19,"a":[["cytoskeleton/cytoophidium.html","cytoophidium"]],"b":[["GO%3A0098647","collagen beaded filament"],["GO%3A0043292","contractile muscle fiber"],["GO%3A0097268","cytoophidium"],["GO%3A0071953","elastic fiber"],["GO%3A0061800","fibronectin fibril"],["GO%3A0061836","intranuclear rod"]]},{"id":"InterPro:IPR006317","l":"Ubiquinol-cytochrome c reductase, iron-sulphur subunit","na":1,"nb":19,"a":[["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"]],"b":[["GO%3A0008121","quinol-cytochrome-c reductase activity"],["NCBIfam%3ATIGR01416","ubiquinol-cytochrome c reductase iron-sulfur subunit"],["CDD%3Acd03470","Rieske_cytochrome_bc1"],["InterPro%3AIPR004192","Cytochrome b-c1 complex subunit Rieske, transmembrane domain"],["InterPro%3AIPR017941","Rieske [2Fe-2S] iron-sulphur domain"],["InterPro%3AIPR005805","Rieske iron-sulphur protein, C-terminal"]]},{"id":"NCBITaxon:330779","l":"Sulfolobus acidocaldarius (strain ATCC 33909 / DSM 639 / JCM 8929 / NBRC 15157 / NCIMB 11770)","na":1,"nb":19,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"]],"b":[["Pfam%3APF12846","AAA-like domain"],["Pfam%3APF27338","Cytochrome b558/566 subunit B"],["Pfam%3APF18822","CdvA-like coiled-coil domain"],["Pfam%3APF27303","Cell division protein CdvB, C-terminal HTH domain"],["Pfam%3APF27251","DNA import protein CedA1"],["Pfam%3APF18533","Domain of unknown function (DUF5622)"]]},{"id":"UniProt:P02942","l":"","na":1,"nb":19,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["GO%3A0098561","methyl accepting chemotaxis protein complex"],["GO%3A0009593","detection of chemical stimulus"],["GO%3A1902021","regulation of bacterial-type flagellum-dependent cell motility"],["NCBIfam%3ANF011615","methyl-accepting chemotaxis protein"],["CDD%3Acd06225","HAMP"],["CDD%3Acd19407","Tar_Tsr_sensor"]]},{"id":"UniProt:P07017","l":"","na":1,"nb":19,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["GO%3A0098561","methyl accepting chemotaxis protein complex"],["GO%3A0043424","protein histidine kinase binding"],["GO%3A0009593","detection of chemical stimulus"],["NCBIfam%3ANF011622","methyl-accepting chemotaxis protein II"],["CDD%3Acd06225","HAMP"],["CDD%3Acd19407","Tar_Tsr_sensor"]]},{"id":"UniProt:P60723","l":"Large ribosomal subunit protein uL4","na":1,"nb":19,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["GO%3A0022625","cytosolic large ribosomal subunit"],["GO%3A0015934","large ribosomal subunit"],["GO%3A0060698","endoribonuclease inhibitor activity"],["GO%3A0048027","mRNA 5'-UTR binding"],["GO%3A0001070","RNA-binding transcription regulator activity"]]},{"id":"CHEBI:16838","l":"polyphosphate","na":1,"nb":18,"a":[["membrane_organelle/acidocalcisome.html","acidocalcisome"]],"b":[["EC%3A2.7.1.63","polyphosphate--glucose phosphotransferase"],["EC%3A2.7.4.1","ATP-polyphosphate phosphotransferase"],["EC%3A2.7.4.17","3-phosphoglyceroyl-phosphate--polyphosphate phosphotransferase"],["EC%3A2.7.4.20","dolichyl-diphosphate--polyphosphate phosphotransferase"],["EC%3A2.7.4.33","AMP-polyphosphate phosphotransferase"],["EC%3A2.7.4.34","GDP-polyphosphate phosphotransferase"]]},{"id":"GO:0030257","l":"type III protein secretion system complex","na":1,"nb":18,"a":[["secretion_system/type_iii_protein_secretion_system_complex.html","type III protein secretion system complex"]],"b":[["ComplexPortal%3ACPX-5885","Flagellar export complex"],["GO%3A0030257","type III protein secretion system complex"],["NCBIfam%3ANF006290","flagellar protein export ATPase FliI"],["NCBIfam%3ATIGR03498","flagellar protein export ATPase FliI"],["NCBIfam%3ATIGR01026","FliI/YscN family ATPase"],["NCBIfam%3ATIGR02554","PrgH/EprH family type III secretion apparatus protein"]]},{"id":"GO:0031253","l":"cell projection membrane","na":1,"nb":18,"a":[["appendage/ciliary_membrane.html","ciliary membrane"]],"b":[["GO%3A0031526","brush border membrane"],["GO%3A0031253","cell projection membrane"],["GO%3A0060170","ciliary membrane"],["GO%3A0031527","filopodium membrane"],["GO%3A0031258","lamellipodium membrane"],["GO%3A0070686","macropinocytic cup membrane"]]},{"id":"GO:0045048","l":"protein insertion into ER membrane","na":1,"nb":18,"a":[["other/emc_complex.html","EMC complex"]],"b":[["ComplexPortal%3ACPX-6464","GET complex"],["ComplexPortal%3ACPX-956","GET complex"],["ComplexPortal%3ACPX-7020","PAT intramembrane chaperone complex"],["GO%3A0160063","multi-pass transmembrane protein insertion into ER membrane"],["GO%3A0045051","protein insertion into ER membrane by internal uncleaved signal-anchor sequence"],["GO%3A0045049","protein insertion into ER membrane by N-terminal cleaved signal sequence"]]},{"id":"GO:0140737","l":"encapsulin nanocompartment","na":1,"nb":18,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]],"b":[["GO%3A0140737","encapsulin nanocompartment"],["NCBIfam%3ATIGR04535","encapsulin-associated ferritin-like protein"],["NCBIfam%3ANF058680","encapsulin nanocompartment cargo ferric reductase EncD"],["NCBIfam%3ANF058678","encapsulin nanocompartment ferritin-like cargo protein EncB"],["NCBIfam%3ANF058679","encapsulin nanocompartment ferritin-likeEncB family encapsulin nanocompartment ferritin-like cargo protein cargo protein"],["NCBIfam%3ANF041155","family 1 encapsulin nanocompartment shell protein"]]},{"id":"GO:0160303","l":"protein secretion by the type IX secretion system","na":1,"nb":18,"a":[["secretion_system/type_ix_protein_secretion_system_complex.html","type IX protein secretion system complex"]],"b":[["GO%3A0160303","protein secretion by the type IX secretion system"],["NCBIfam%3ANF052230","PorE family type IX secretion system protein"],["NCBIfam%3ATIGR03519","PorP/SprF family type IX secretion system membrane protein"],["NCBIfam%3ANF052314","PorY family sensor histidine kinase"],["NCBIfam%3ATIGR04189","T9SS outer membrane translocon Sov/SprA"],["NCBIfam%3ANF052313","T9SS response regulator signal transducer PorX"]]},{"id":"InterPro:IPR014222","l":"Cytochrome c oxidase, subunit II","na":1,"nb":18,"a":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]],"b":[["GO%3A0098803","respiratory chain complex"],["GO%3A0004129","cytochrome-c oxidase activity"],["NCBIfam%3ATIGR02866","cytochrome c oxidase subunit II"],["InterPro%3AIPR001505","Copper centre Cu(A)"],["CDD%3Acd13912","CcO_II_C"],["CDD%3Acd04213","CuRO_CcO_Caa3_II"]]},{"id":"UniProt:P24073","l":"","na":1,"nb":18,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["EC%3A3.-.-.-","Hydrolases"],["GO%3A0009425","bacterial-type flagellum basal body"],["GO%3A0003774","cytoskeletal motor activity"],["GO%3A0044780","bacterial-type flagellum assembly"],["GO%3A0071978","bacterial-type flagellum-dependent swarming motility"],["GO%3A0016311","dephosphorylation"]]},{"id":"GO:0000407","l":"phagophore assembly site","na":1,"nb":17,"a":[["other/phagophore_assembly_site.html","phagophore assembly site"]],"b":[["ComplexPortal%3ACPX-1383","TRAPPIII protein complex"],["ComplexPortal%3ACPX-373","ULK1-ATG13-RB1CC1-ATG101 autophagy initiation complex"],["ComplexPortal%3ACPX-380","ULK1-ATG13-RB1CC1-ATG101 autophagy initiation complex"],["GO%3A0000407","phagophore assembly site"],["PANTHER%3APTHR13038","APG9 AUTOPHAGY 9"],["PANTHER%3APTHR13385","AUTOPHAGY PROTEIN 12"]]},{"id":"GO:0003689","l":"DNA clamp loader activity","na":1,"nb":17,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"]],"b":[["ComplexPortal%3ACPX-1926","DNA polymerase III clamp loader complex"],["ComplexPortal%3ACPX-472","DNA replication factor C complex"],["ComplexPortal%3ACPX-26445","DNA replication factor C complex, ctf18 variant"],["ComplexPortal%3ACPX-2441","DNA replication factor C complex, elg1 variant"],["ComplexPortal%3ACPX-26452","DNA replication factor C complex, elg1 variant"],["ComplexPortal%3ACPX-26444","DNA replication factor C complex, rad17 variant"]]},{"id":"GO:0030863","l":"cortical cytoskeleton","na":1,"nb":17,"a":[["cytoskeleton/eisosome_filament.html","eisosome filament"]],"b":[["ComplexPortal%3ACPX-658","Actin junctional complex"],["GO%3A0030864","cortical actin cytoskeleton"],["GO%3A0030863","cortical cytoskeleton"],["GO%3A0030981","cortical microtubule cytoskeleton"],["GO%3A0048788","cytoskeleton of presynaptic active zone"],["PANTHER%3APTHR15012","APICAL PROTEIN/SHROOM-RELATED"]]},{"id":"GO:0072546","l":"EMC complex","na":1,"nb":17,"a":[["other/emc_complex.html","EMC complex"]],"b":[["ComplexPortal%3ACPX-307","Endoplasmic Reticulum Membrane Complex"],["ComplexPortal%3ACPX-2445","Endoplasmic reticulum membrane complex, EMC2A variant"],["ComplexPortal%3ACPX-2451","Endoplasmic reticulum membrane complex, EMC2B variant"],["ComplexPortal%3ACPX-5848","Endoplasmic reticulum membrane complex, EMC8 variant"],["ComplexPortal%3ACPX-5882","Endoplasmic reticulum membrane complex, EMC8 variant"],["ComplexPortal%3ACPX-5881","Endoplasmic reticulum membrane complex, EMC9 variant"]]},{"id":"GO:1905369","l":"endopeptidase complex","na":1,"nb":17,"a":[["other/proteasome_complex.html","proteasome complex"]],"b":[["ComplexPortal%3ACPX-3905","Caspase-2 PIDDosome"],["ComplexPortal%3ACPX-3963","Caspase-2 PIDDosome"],["ComplexPortal%3ACPX-5777","MERS-CoV main protease complex"],["ComplexPortal%3ACPX-5685","SARS-CoV-2 main protease complex"],["ComplexPortal%3ACPX-5706","SARS-CoV main protease complex"],["GO%3A0008303","caspase complex"]]},{"id":"NCBITaxon:208963","l":"Pseudomonas aeruginosa (strain UCBPP-PA14)","na":1,"nb":17,"a":[["inclusion/r_body.html","R-body"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF21384","CRISPR-associated nuclease/helicase Cas3, I-F/YPEST, Cas2 domain"],["Pfam%3APF21802","CRISPR-associated Cas3 subtype I-F/YPEST-like, C-terminal domain"],["Pfam%3APF20975","DGC-associated coil"],["Pfam%3APF19502","Nucleotidyltransferase of unknown function (DUF6036)"]]},{"id":"Pfam:PF01584","l":"CheW-like domain","na":1,"nb":17,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["GO%3A0098561","methyl accepting chemotaxis protein complex"],["GO%3A0009454","aerotaxis"],["GO%3A0042333","chemotaxis to oxidizable substrate"],["GO%3A0051649","establishment of localization in cell"],["NCBIfam%3ANF007903","chemotaxis protein CheW"],["CDD%3Acd00732","CheW"]]},{"id":"UniProt:P0A7V8","l":"Small ribosomal subunit protein uS4","na":1,"nb":17,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["GO%3A1990145","maintenance of translational fidelity"],["GO%3A0000028","ribosomal small subunit assembly"],["GO%3A0031564","transcription antitermination"],["NCBIfam%3ANF003717","30S ribosomal protein S4"],["NCBIfam%3ATIGR01017","30S ribosomal protein S4"]]},{"id":"UniProt:P0AFI2","l":"","na":1,"nb":17,"a":[["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["ComplexPortal%3ACPX-1104","Topoisomerase IV"],["GO%3A0009330","DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) complex"],["GO%3A0030541","plasmid partitioning"],["NCBIfam%3ANF004044","DNA topoisomerase (ATP-hydrolyzing)"],["NCBIfam%3ATIGR01062","DNA topoisomerase IV subunit A"],["CDD%3Acd00187","TOP4c"]]},{"id":"UniProt:P35149","l":"","na":1,"nb":17,"a":[["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]],"b":[["EC%3A3.6.1.-","In phosphorus-containing anhydrides"],["GO%3A0043595","endospore cortex"],["GO%3A0042601","endospore-forming forespore"],["GO%3A0031160","spore wall"],["GO%3A0000270","peptidoglycan metabolic process"],["GO%3A0009847","spore germination"]]},{"id":"CHEBI:16247","l":"","na":1,"nb":16,"a":[["inclusion/monolayer_surrounded_lipid_storage_body_outer_lipid_monolayer.html","monolayer-surrounded lipid storage body outer lipid monolayer"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.A.79","The Autophagosomal Phospholipid Transmembrane Translocase (Atg9) Family"],["TCDB%3A9.A.36","The Ca2+-dependent Phospholipid Scramblase (Scramblase) Family"],["TCDB%3A1.A.17","The Calcium-dependent Chloride Channel (Ca-ClC) Family"],["TCDB%3A9.B.27","The Death Effector Domain A (DedA) Family"],["TCDB%3A8.A.97","The EPG-3/VMP1 (EPG/VPM) Scramblase Family"]]},{"id":"GO:0004526","l":"ribonuclease P activity","na":1,"nb":16,"a":[["ribonucleoprotein/dimeric_ribonuclease_p_complex.html","dimeric ribonuclease P complex"]],"b":[["EC%3A3.1.26.5","ribonuclease P"],["ComplexPortal%3ACPX-1294","Mitochondrial ribonuclease P complex"],["ComplexPortal%3ACPX-2632","Mitochondrial ribonuclease P complex"],["ComplexPortal%3ACPX-6155","Mitochondrial ribonuclease P complex"],["ComplexPortal%3ACPX-1873","Nucleolar ribonuclease P complex"],["ComplexPortal%3ACPX-2637","Nucleolar ribonuclease P complex"]]},{"id":"GO:0030968","l":"endoplasmic reticulum unfolded protein response","na":1,"nb":16,"a":[["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"]],"b":[["GO%3A0036500","ATF6-mediated unfolded protein response"],["GO%3A0030968","endoplasmic reticulum unfolded protein response"],["GO%3A0036498","IRE1-mediated unfolded protein response"],["GO%3A0036499","PERK-mediated unfolded protein response"],["Reactome%3AR-HSA-8874177","ATF6B (ATF6-beta) activates chaperones"],["Reactome%3AR-HSA-381119","Unfolded Protein Response (UPR)"]]},{"id":"GO:1904262","l":"negative regulation of TORC1 signaling","na":1,"nb":16,"a":[["other/gator1_complex.html","GATOR1 complex"]],"b":[["ComplexPortal%3ACPX-2665","CASTOR1 arginine-sensing complex"],["ComplexPortal%3ACPX-2667","CASTOR1-CASTOR2 arginine binding complex"],["ComplexPortal%3ACPX-26523","GATOR1 complex"],["ComplexPortal%3ACPX-2781","GATOR1 complex"],["ComplexPortal%3ACPX-6226","GATOR1 complex"],["ComplexPortal%3ACPX-26527","GATOR2 complex"]]},{"id":"GO:1904263","l":"positive regulation of TORC1 signaling","na":1,"nb":16,"a":[["other/gator2_complex.html","GATOR2 complex"]],"b":[["ComplexPortal%3ACPX-26527","GATOR2 complex"],["ComplexPortal%3ACPX-6227","GATOR2 complex"],["ComplexPortal%3ACPX-26516","RAG guanosine triphosphatase complex"],["ComplexPortal%3ACPX-26517","RAG guanosine triphosphatase complex"],["ComplexPortal%3ACPX-2542","RAG guanosine triphosphatase complex, RAGA-RAGC variant"],["ComplexPortal%3ACPX-2513","RAG guanosine triphosphatase complex, RAGA-RAGD variant"]]},{"id":"UniProt:P0A7S3","l":"Small ribosomal subunit protein uS12","na":1,"nb":16,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["GO%3A0022627","cytosolic small ribosomal subunit"],["GO%3A0005840","ribosome"],["GO%3A0034336","misfolded RNA binding"],["GO%3A0019843","rRNA binding"],["GO%3A0000049","tRNA binding"]]},{"id":"UniProt:P20083","l":"","na":1,"nb":16,"a":[["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["ComplexPortal%3ACPX-1104","Topoisomerase IV"],["GO%3A0030541","plasmid partitioning"],["NCBIfam%3ATIGR01055","DNA topoisomerase IV subunit B"],["InterPro%3AIPR018522","DNA topoisomerase, type IIA, conserved site"],["CDD%3Acd16928","HATPase_GyrB-like"],["CDD%3Acd00822","TopoII_Trans_DNA_gyrase"]]},{"id":"GO:0000479","l":"endonucleolytic cleavage of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)","na":1,"nb":15,"a":[["ribonucleoprotein/ribonuclease_mrp_complex.html","ribonuclease MRP complex"]],"b":[["GO%3A0000448","cleavage in ITS2 between 5.8S rRNA and LSU-rRNA of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)"],["GO%3A0000471","endonucleolytic cleavage in 3'-ETS of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)"],["GO%3A0000480","endonucleolytic cleavage in 5'-ETS of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)"],["GO%3A0000447","endonucleolytic cleavage in ITS1 to separate SSU-rRNA from 5.8S rRNA and LSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)"],["GO%3A0000464","endonucleolytic cleavage in ITS1 upstream of 5.8S rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)"],["GO%3A0000479","endonucleolytic cleavage of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)"]]},{"id":"GO:0005881","l":"cytoplasmic microtubule","na":1,"nb":15,"a":[["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"]],"b":[["GO%3A0000235","astral microtubule"],["GO%3A0005879","axonemal microtubule"],["GO%3A0055028","cortical microtubule"],["GO%3A0005881","cytoplasmic microtubule"],["PANTHER%3APTHR12607","ADENOMATOUS POLYPOSIS COLI PROTEIN FAMILY"],["PANTHER%3APTHR34031","CENTROSOMAL PROTEIN OF 162 KDA"]]},{"id":"GO:0009486","l":"cytochrome bo3 ubiquinol oxidase activity","na":1,"nb":15,"a":[["energy_complex/cytochrome_o_ubiquinol_oxidase_complex.html","cytochrome o ubiquinol oxidase complex"]],"b":[["EC%3A7.1.1.3","ubiquinol oxidase (H(+)-transporting)"],["RHEA%3A30251","2 a ubiquinol + O2 + n H(+)(in) = 2 a ubiquinone + 2 H2O + n H(+)(out)"],["ComplexPortal%3ACPX-2102","Cytochrome bo3 ubiquinol oxidase complex"],["GO%3A0009486","cytochrome bo3 ubiquinol oxidase activity"],["NCBIfam%3ATIGR01432","cytochrome aa3 quinol oxidase subunit II"],["NCBIfam%3ATIGR02843","cytochrome o ubiquinol oxidase subunit I"]]},{"id":"GO:0030121","l":"AP-1 adaptor complex","na":1,"nb":15,"a":[["other/ap_1_adaptor_complex.html","AP-1 adaptor complex"]],"b":[["ComplexPortal%3ACPX-2510","Adaptor complex AP-1"],["ComplexPortal%3ACPX-26625","Adaptor complex AP-1"],["ComplexPortal%3ACPX-532","Adaptor complex AP-1"],["ComplexPortal%3ACPX-533","Adaptor complex AP-1R"],["ComplexPortal%3ACPX-26626","Adaptor complex AP-2"],["ComplexPortal%3ACPX-2725","Adaptor complex AP-2"]]},{"id":"GO:0042575","l":"DNA polymerase complex","na":1,"nb":15,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"]],"b":[["GO%3A0005658","alpha DNA polymerase:primase complex"],["GO%3A0043625","delta DNA polymerase complex"],["GO%3A0042575","DNA polymerase complex"],["GO%3A0009360","DNA polymerase III complex"],["GO%3A0009355","DNA polymerase V complex"],["GO%3A0008622","epsilon DNA polymerase complex"]]},{"id":"GO:0045039","l":"protein insertion into mitochondrial inner membrane","na":1,"nb":15,"a":[["other/tim22_mitochondrial_import_inner_membrane_insertion_complex.html","TIM22 mitochondrial import inner membrane insertion complex"]],"b":[["ComplexPortal%3ACPX-1629","TIM22 mitochondrial inner membrane twin-pore carrier translocase complex"],["ComplexPortal%3ACPX-6124","TIM22 mitochondrial inner membrane twin-pore carrier translocase complex"],["ComplexPortal%3ACPX-6127","TIM23 mitochondrial inner membrane pre-sequence translocase complex, sort variant"],["ComplexPortal%3ACPX-2371","TIM8-TIM13 mitochondrial intermembrane space protein transporter complex"],["ComplexPortal%3ACPX-6131","TIM8A-TIM13 mitochondrial intermembrane space protein transporter complex"],["ComplexPortal%3ACPX-6132","TIM8B-TIM13 mitochondrial intermembrane space protein transporter complex"]]},{"id":"GO:0045273","l":"respiratory chain complex II (succinate dehydrogenase)","na":1,"nb":15,"a":[["energy_complex/respiratory_chain_complex_ii_succinate_dehydrogenase.html","respiratory chain complex II (succinate dehydrogenase)"]],"b":[["ComplexPortal%3ACPX-561","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-562","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-564","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-565","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-566","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-8622","Mitochondrial respiratory chain complex II"]]},{"id":"GO:0048500","l":"signal recognition particle","na":1,"nb":15,"a":[["ribonucleoprotein/signal_recognition_particle.html","signal recognition particle"]],"b":[["GO%3A0080085","signal recognition particle, chloroplast targeting"],["GO%3A0005786","signal recognition particle, endoplasmic reticulum targeting"],["GO%3A0048500","signal recognition particle"],["GO%3A0048501","signal recognition particle, plasma membrane targeting"],["NCBIfam%3ANF014032","signal recognition particle subunit SRP19/SEC65 family protein"],["NCBIfam%3ANF045758","YlxM family DNA-binding protein"]]},{"id":"UniProt:P0A7J7","l":"Large ribosomal subunit protein uL11","na":1,"nb":15,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["GO%3A0015968","stringent response"],["GO%3A0006415","translational termination"],["NCBIfam%3ATIGR01632","50S ribosomal protein L11"],["InterPro%3AIPR020785","Large ribosomal subunit protein uL11, conserved site"],["CDD%3Acd00349","Ribosomal_L11"]]},{"id":"GO:0000172","l":"ribonuclease MRP complex","na":1,"nb":14,"a":[["ribonucleoprotein/ribonuclease_mrp_complex.html","ribonuclease MRP complex"]],"b":[["ComplexPortal%3ACPX-2629","Ribonuclease MRP complex"],["ComplexPortal%3ACPX-26688","Ribonuclease MRP complex"],["ComplexPortal%3ACPX-2876","Ribonuclease MRP complex"],["ComplexPortal%3ACPX-3284","Ribonuclease MRP complex"],["GO%3A0000172","ribonuclease MRP complex"],["InterPro%3AIPR047204","RNase MRP protein 1, RNA binding domain"]]},{"id":"GO:0001682","l":"","na":1,"nb":14,"a":[["ribonucleoprotein/dimeric_ribonuclease_p_complex.html","dimeric ribonuclease P complex"]],"b":[["ComplexPortal%3ACPX-1294","Mitochondrial ribonuclease P complex"],["ComplexPortal%3ACPX-1873","Nucleolar ribonuclease P complex"],["ComplexPortal%3ACPX-2637","Nucleolar ribonuclease P complex"],["ComplexPortal%3ACPX-2877","Nucleolar ribonuclease P complex"],["GO%3A0001682","tRNA 5'-leader removal"],["NCBIfam%3ANF046110","ribonuclease P protein component 1"]]},{"id":"GO:0003843","l":"1,3-beta-D-glucan synthase activity","na":1,"nb":14,"a":[["other/1_3_beta_d_glucan_synthase_complex.html","1,3-beta-D-glucan synthase complex"]],"b":[["EC%3A2.4.1.34","1,3-beta-glucan synthase"],["RHEA%3A21476","[(1->3)-beta-D-glucosyl](n) + UDP-alpha-D-glucose = [(1->3)-beta-D-glucosyl](n+1) + UDP + H(+)"],["ComplexPortal%3ACPX-1812","1,3-beta-D-glucan synthase complex, FKS1-RHO1 variant"],["ComplexPortal%3ACPX-1813","1,3-beta-D-glucan synthase complex, FKS2-RHO1 variant"],["ComplexPortal%3ACPX-3028","1,3-beta-D-glucan synthase complex, FKS3-RHO1 variant"],["GO%3A0003843","1,3-beta-D-glucan synthase activity"]]},{"id":"GO:0006360","l":"transcription by RNA polymerase I","na":1,"nb":14,"a":[["other/nucleolus.html","nucleolus"]],"b":[["GO%3A0042790","nucleolar large rRNA transcription by RNA polymerase I"],["GO%3A0006360","transcription by RNA polymerase I"],["Reactome%3AR-HSA-73864","RNA Polymerase I Transcription"],["PANTHER%3APTHR14440","DNA-DIRECTED RNA POLYMERASE I SUBUNIT RPA49"],["PANTHER%3APTHR47227","DNA-DIRECTED RNA POLYMERASE SUBUNIT K"],["PANTHER%3APTHR10535","DNA-DIRECTED RNA POLYMERASES I, II, AND III SUBUNIT RPABC1"]]},{"id":"GO:0010494","l":"cytoplasmic stress granule","na":1,"nb":14,"a":[["ribonucleoprotein/cytoplasmic_stress_granule.html","cytoplasmic stress granule"]],"b":[["ComplexPortal%3ACPX-21432","CAPRIN1-G3BP1, stress granules assembly regulating complex"],["ComplexPortal%3ACPX-18979","CAPRIN1-G3BP2, stress granules assembly regulating complex"],["ComplexPortal%3ACPX-8306","FMR1-FXR1 RNA-binding complex"],["ComplexPortal%3ACPX-8322","FMR1-FXR2 RNA-binding complex"],["ComplexPortal%3ACPX-8305","FMR1 RNA-binding homodimer"],["ComplexPortal%3ACPX-8342","FXR1-FXR2 RNA-binding complex"]]},{"id":"GO:0030123","l":"AP-3 adaptor complex","na":1,"nb":14,"a":[["other/ap_3_adaptor_complex.html","AP-3 adaptor complex"]],"b":[["ComplexPortal%3ACPX-535","Adapter complex AP-3"],["ComplexPortal%3ACPX-26627","Adaptor complex AP-3"],["ComplexPortal%3ACPX-2727","Adaptor complex AP-3"],["ComplexPortal%3ACPX-5055","Neuronal AP-3 Adaptor complex, sigma3a variant"],["ComplexPortal%3ACPX-5147","Neuronal AP-3 Adaptor complex, sigma3a variant"],["ComplexPortal%3ACPX-5053","Neuronal AP-3 Adaptor complex, sigma3b variant"]]},{"id":"UniProt:P0A7R5","l":"Small ribosomal subunit protein uS10","na":1,"nb":14,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["ComplexPortal%3ACPX-5780","lambdaN-dependent processive transcription antitermination complex"],["ComplexPortal%3ACPX-5674","Transcription elongation complex"],["GO%3A0001072","transcription antitermination factor activity, RNA binding"],["GO%3A0032784","regulation of DNA-templated transcription elongation"],["GO%3A0031564","transcription antitermination"]]},{"id":"UniProt:P23446","l":"","na":1,"nb":14,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0030694","bacterial-type flagellum basal body, rod"],["GO%3A0009424","bacterial-type flagellum hook"],["NCBIfam%3ATIGR02490","flagellar basal-body rod protein FlgF"],["NCBIfam%3ANF009278","flagellar basal body rod protein FlgG"],["NCBIfam%3ATIGR03506","flagellar hook-basal body complex protein"],["InterPro%3AIPR019776","Flagellar basal body rod protein, conserved site"]]},{"id":"GO:0030990","l":"intraciliary transport particle","na":1,"nb":13,"a":[["appendage/cilium.html","cilium"]],"b":[["GO%3A0030990","intraciliary transport particle"],["PANTHER%3APTHR16011","IFT57/HIPPI"],["PANTHER%3APTHR31978","INTRAFLAGELLAR TRANSPORT PROTEIN 20 HOMOLOG"],["PANTHER%3APTHR33724","INTRAFLAGELLAR TRANSPORT PROTEIN 43 HOMOLOG"],["PANTHER%3APTHR13376","INTRAFLAGELLAR TRANSPORT PROTEIN 46 HOMOLOG"],["PANTHER%3APTHR14781","INTRAFLAGELLAR TRANSPORT PROTEIN 56"]]},{"id":"UniProt:P0A7L8","l":"Large ribosomal subunit protein bL27","na":1,"nb":13,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["GO%3A0022625","cytosolic large ribosomal subunit"],["GO%3A0043022","ribosome binding"],["GO%3A0000049","tRNA binding"],["GO%3A1902626","assembly of large subunit precursor of preribosome"],["GO%3A0002181","cytoplasmic translation"]]},{"id":"UniProt:P0AG67","l":"Small ribosomal subunit protein bS1","na":1,"nb":13,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ANF004951","30S ribosomal protein S1"],["NCBIfam%3ANF004952","30S ribosomal protein S1"],["NCBIfam%3ANF004954","30S ribosomal protein S1"],["NCBIfam%3ATIGR00717","30S ribosomal protein S1"],["proteintraitsmech%3AMEROPS_CLEAVAGE_A02_011","human endogenous retrovirus K retropepsin cleavage specificity"]]},{"id":"UniProt:P0AGA2","l":"","na":1,"nb":13,"a":[["secretion_system/secyeg_translocon_complex.html","SecYEG translocon complex"]],"b":[["ComplexPortal%3ACPX-1095","Holo-translocon SecYEG-SecDF-YajC-YidC complex"],["ComplexPortal%3ACPX-1096","Protein-conducting channel SecYEG complex"],["GO%3A0031522","cell envelope Sec protein transport complex"],["GO%3A0005048","signal sequence receptor activity"],["GO%3A0043952","protein transport by the Sec complex"],["GO%3A0006616","SRP-dependent cotranslational protein targeting to membrane, translocation"]]},{"id":"UniProt:P61175","l":"Large ribosomal subunit protein uL22","na":1,"nb":13,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["GO%3A0015934","large ribosomal subunit"],["GO%3A0070180","large ribosomal subunit rRNA binding"],["GO%3A1902626","assembly of large subunit precursor of preribosome"],["GO%3A0042256","cytosolic ribosome assembly"],["GO%3A0042255","ribosome assembly"]]},{"id":"GO:0017119","l":"COG complex","na":1,"nb":12,"a":[["other/cog_complex.html","COG complex"]],"b":[["ComplexPortal%3ACPX-1840","COG Golgi transport complex"],["ComplexPortal%3ACPX-2794","COG tethering complex"],["ComplexPortal%3ACPX-6199","COG tethering complex"],["GO%3A0017119","COG complex"],["PANTHER%3APTHR21506","COMPONENT OF OLIGOMERIC GOLGI COMPLEX 6"],["PANTHER%3APTHR12961","CONSERVED OLIGOMERIC GOLGI COMPLEX COMPONENT 2"]]},{"id":"GO:0045040","l":"protein insertion into mitochondrial outer membrane","na":1,"nb":12,"a":[["other/sam_complex.html","SAM complex"]],"b":[["ComplexPortal%3ACPX-2281","MIM mitochondrial import complex"],["ComplexPortal%3ACPX-26566","MIM mitochondrial import complex"],["ComplexPortal%3ACPX-6133","SAM mitochondrial sorting and assembly machinery complex"],["ComplexPortal%3ACPX-6121","TOM40 mitochondrial outer membrane translocase complex"],["ComplexPortal%3ACPX-8921","TOM40 mitochondrial outer membrane translocase complex"],["ComplexPortal%3ACPX-8926","TOM40 mitochondrial outer membrane translocase complex, testis-specific variant"]]},{"id":"GO:0045275","l":"respiratory chain complex III","na":1,"nb":12,"a":[["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"]],"b":[["ComplexPortal%3ACPX-560","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-563","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-567","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-8730","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-9308","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-8737","Mitochondrial respiratory chain complex III, testis-specific variant"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus ATCC 27405","na":1,"nb":12,"a":[["other/cellulosome.html","cellulosome"]],"b":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["Pfam%3APF00942","Cellulose binding domain"],["Pfam%3APF17996","Carbohydrate esterase 2 N-terminal"],["Pfam%3APF00963","Cohesin domain"],["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF00404","Dockerin type I domain"]]},{"id":"NCBITaxon:224326","l":"Borreliella burgdorferi (strain ATCC 35210 / DSM 4680 / CIP 102532 / B31)","na":1,"nb":12,"a":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]],"b":[["Pfam%3APF09822","ABC-type uncharacterized transport system"],["Pfam%3APF02352","Decorin binding protein"],["Pfam%3APF23357","Domain of unknown function (DUF7088)"],["Pfam%3APF27167","GRAD helix-turn-helix domain"],["Pfam%3APF28090","BB0208-like"],["Pfam%3APF02999","Borrelia orf-D family"]]},{"id":"NCBITaxon:5691","l":"Trypanosoma brucei","na":12,"nb":1,"a":[["cytoskeleton/bilobe_structure.html","bilobe structure"],["cytoskeleton/ciliary_pocket_collar.html","ciliary pocket collar"],["cytoskeleton/flagellum_attachment_zone.html","flagellum attachment zone"],["cytoskeleton/tripartite_attachment_complex.html","tripartite attachment complex"],["membrane_organelle/flagellar_pocket.html","flagellar pocket"],["membrane_organelle/glycosome.html","glycosome"]],"b":[["TED%3AAF-A0A1J0R543-F1-model_v4_TED02","TED novel fold AF-A0A1J0R543-F1-model_v4_TED02"]]},{"id":"NCBITaxon:5702","l":"Trypanosoma brucei brucei","na":1,"nb":12,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF05887","Procyclic acidic repetitive protein (PARP)"],["Pfam%3APF18526","Thymine dioxygenase JBP1 DNA-binding domain"],["Pfam%3APF22592","FCaBP EF-hand domain"],["Pfam%3APF12131","Protein of unknown function (DUF3586)"]]},{"id":"UniProt:P0A7R1","l":"Large ribosomal subunit protein bL9","na":1,"nb":12,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00158","50S ribosomal protein L9"],["InterPro%3AIPR020069","Large ribosomal subunit protein bL9, C-terminal"],["InterPro%3AIPR020070","Large ribosomal subunit protein bL9, N-terminal"],["Pfam%3APF03948","Ribosomal protein L9, C-terminal domain"],["Pfam%3APF01281","Ribosomal protein L9, N-terminal domain"]]},{"id":"UniProt:P0AG96","l":"","na":1,"nb":12,"a":[["secretion_system/secyeg_translocon_complex.html","SecYEG translocon complex"]],"b":[["ComplexPortal%3ACPX-1095","Holo-translocon SecYEG-SecDF-YajC-YidC complex"],["ComplexPortal%3ACPX-1096","Protein-conducting channel SecYEG complex"],["GO%3A0031522","cell envelope Sec protein transport complex"],["GO%3A0043952","protein transport by the Sec complex"],["GO%3A0006616","SRP-dependent cotranslational protein targeting to membrane, translocation"],["NCBIfam%3ANF004372","preprotein translocase subunit SecE"]]},{"id":"UniProt:P23448","l":"","na":1,"nb":12,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0009425","bacterial-type flagellum basal body"],["GO%3A0071973","bacterial-type flagellum-dependent cell motility"],["GO%3A0071978","bacterial-type flagellum-dependent swarming motility"],["NCBIfam%3ATIGR00207","flagellar motor switch protein FliG"],["InterPro%3AIPR023087","Flagellar motor switch protein FliG, C-terminal"],["InterPro%3AIPR032779","Flagellar motor switch protein FliG, middle domain"]]},{"id":"UniProt:P60422","l":"Large ribosomal subunit protein uL2","na":1,"nb":12,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["ComplexPortal%3ACPX-1944","DnaA-L2 DNA replication initiation inhibitory complex"],["GO%3A0032297","negative regulation of DNA-templated DNA replication initiation"],["NCBIfam%3ATIGR01171","50S ribosomal protein L2"],["InterPro%3AIPR022671","Large ribosomal subunit protein uL2, conserved site"],["InterPro%3AIPR022669","Large ribosomal subunit protein uL2, C-terminal"]]},{"id":"GO:0006612","l":"protein targeting to membrane","na":1,"nb":11,"a":[["ribonucleoprotein/signal_recognition_particle.html","signal recognition particle"]],"b":[["GO%3A0006613","cotranslational protein targeting to membrane"],["GO%3A0006620","post-translational protein targeting to endoplasmic reticulum membrane"],["GO%3A0006612","protein targeting to membrane"],["GO%3A0044395","protein targeting to vacuolar membrane"],["PANTHER%3APTHR13254","GOLGI AUTOANTIGEN, GOLGIN SUBFAMILY A, 7"],["PANTHER%3APTHR45831","LD24721P"]]},{"id":"GO:0042601","l":"endospore-forming forespore","na":1,"nb":11,"a":[["spore/endospore_forming_forespore.html","endospore-forming forespore"]],"b":[["GO%3A0042601","endospore-forming forespore"],["NCBIfam%3ANF019784","small acid-soluble spore protein K"],["NCBIfam%3ATIGR03091","small, acid-soluble spore protein K"],["NCBIfam%3ANF019785","small acid-soluble spore protein N"],["NCBIfam%3ATIGR02864","small acid-soluble spore protein SspO"],["NCBIfam%3ANF053738","stage II sporulation protein SpoIIQ"]]},{"id":"UniProt:O32062","l":"","na":1,"nb":11,"a":[["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]],"b":[["GO%3A0043595","endospore cortex"],["GO%3A0042763","intracellular immature spore"],["GO%3A0008932","lytic endotransglycosylase activity"],["CDD%3Acd00118","LysM"],["InterPro%3AIPR018392","LysM domain"],["InterPro%3AIPR014248","Spore coat assembly protein SafA"]]},{"id":"UniProt:P02359","l":"Small ribosomal subunit protein uS7","na":1,"nb":11,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["GO%3A0022627","cytosolic small ribosomal subunit"],["GO%3A0000028","ribosomal small subunit assembly"],["NCBIfam%3ATIGR01029","30S ribosomal protein S7"],["InterPro%3AIPR020606","Small ribosomal subunit protein uS7, conserved site"],["CDD%3Acd14869","uS7_Bacteria"]]},{"id":"UniProt:P0A6E6","l":"","na":1,"nb":11,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["NCBIfam%3ATIGR01216","ATP synthase F1 subunit epsilon"],["NCBIfam%3ANF001847","F0F1 ATP synthase subunit epsilon"],["CDD%3Acd12152","F1-ATPase_delta"],["InterPro%3AIPR020547","ATP synthase epsilon subunit, C-terminal domain"],["InterPro%3AIPR020546","ATP synthase, F1 complex, delta/epsilon subunit, N-terminal"]]},{"id":"UniProt:P0A7J3","l":"Large ribosomal subunit protein uL10","na":1,"nb":11,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ANF000955","50S ribosomal protein L10"],["InterPro%3AIPR002363","Large ribosomal subunit protein uL10, conserved site, bacteria"],["CDD%3Acd05797","Ribosomal_L10"],["InterPro%3AIPR001790","Large ribosomal subunit protein uL10, N-terminal"],["Pfam%3APF00466","Ribosomal protein L10"]]},{"id":"UniProt:P0A7K2","l":"Large ribosomal subunit protein bL12","na":1,"nb":11,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00855","50S ribosomal protein L7/L12"],["CDD%3Acd00387","Ribosomal_L7_L12"],["InterPro%3AIPR013823","Large ribosomal subunit protein bL12, C-terminal"],["InterPro%3AIPR008932","Large ribosomal subunit protein bL12, oligomerization"],["Pfam%3APF16320","Ribosomal protein L7/L12 dimerisation domain"]]},{"id":"UniProt:P68699","l":"","na":1,"nb":11,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["RHEA%3A57720","ATP + H2O + 4 H(+)(in) = ADP + phosphate + 5 H(+)(out)"],["ComplexPortal%3ACPX-4022","ATP synthase complex"],["GO%3A0033177","proton-transporting two-sector ATPase complex, proton-transporting domain"],["GO%3A0042777","proton motive force-driven plasma membrane ATP synthesis"],["NCBIfam%3ATIGR01260","ATP synthase F0 subunit C"],["NCBIfam%3ANF005363","F0F1 ATP synthase subunit C"]]},{"id":"GO:0005736","l":"RNA polymerase I complex","na":1,"nb":10,"a":[["other/nucleolus.html","nucleolus"]],"b":[["ComplexPortal%3ACPX-1664","DNA-directed RNA Polymerase I complex"],["ComplexPortal%3ACPX-2386","DNA-directed RNA polymerase I complex"],["ComplexPortal%3ACPX-2602","DNA-directed RNA polymerase I complex"],["ComplexPortal%3ACPX-8907","DNA-directed RNA polymerase I complex"],["ComplexPortal%3ACPX-8913","DNA-directed RNA polymerase I complex"],["GO%3A0005736","RNA polymerase I complex"]]},{"id":"GO:0005771","l":"multivesicular body","na":10,"nb":1,"a":[["membrane_organelle/endosome.html","endosome"],["membrane_organelle/endosome_lumen.html","endosome lumen"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/late_endosome_lumen.html","late endosome lumen"],["membrane_organelle/late_endosome_membrane.html","late endosome membrane"]],"b":[["GO%3A0005771","multivesicular body"]]},{"id":"GO:0043952","l":"protein transport by the Sec complex","na":1,"nb":10,"a":[["secretion_system/secyeg_translocon_complex.html","SecYEG translocon complex"]],"b":[["ComplexPortal%3ACPX-1095","Holo-translocon SecYEG-SecDF-YajC-YidC complex"],["ComplexPortal%3ACPX-1096","Protein-conducting channel SecYEG complex"],["GO%3A0043952","protein transport by the Sec complex"],["NCBIfam%3ATIGR00963","preprotein translocase subunit SecA"],["NCBIfam%3ATIGR00964","preprotein translocase subunit SecE"],["NCBIfam%3ATIGR00967","preprotein translocase subunit SecY"]]},{"id":"GO:0097545","l":"axonemal doublet microtubule","na":10,"nb":1,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_doublet_microtubule.html","axonemal doublet microtubule"],["cytoskeleton/axonemal_dynein_complex.html","axonemal dynein complex"],["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"],["cytoskeleton/axonemal_microtubule_doublet_inner_junction.html","axonemal microtubule doublet inner junction"],["cytoskeleton/axonemal_microtubule_doublet_inner_sheath.html","axonemal microtubule doublet inner sheath"]],"b":[["GO%3A0097545","axonemal doublet microtubule"]]},{"id":"NCBITaxon:190650","l":"Caulobacter vibrioides (strain ATCC 19089 / CIP 103742 / CB 15)","na":1,"nb":10,"a":[["cytoskeleton/cytoophidium.html","cytoophidium"]],"b":[["IDPO%3A0000060","self-assembly"],["Pfam%3APF27198","FlaEY third domain"],["Pfam%3APF22367","Flagellar hook protein FlgE, third domain"],["Pfam%3APF03799","Cell division protein FtsQ/DivIB, C-terminal"],["Pfam%3APF27294","HfaA"],["Pfam%3APF27277","Holdfast attachment protein D"]]},{"id":"NCBITaxon:345073","l":"Vibrio cholerae serotype O1 (strain ATCC 39541 / Classical Ogawa 395 / O395)","na":1,"nb":10,"a":[["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"]],"b":[["IDPO%3A0000048","limited proteolysis display site"],["Pfam%3APF16671","Actin cross-linking domain"],["Pfam%3APF26759","AcfD helical domain"],["Pfam%3APF00165","Bacterial regulatory helix-turn-helix proteins, AraC family"],["Pfam%3APF08328","Adenylosuccinate lyase C-terminal"],["Pfam%3APF07208","Protein of unknown function (DUF1414)"]]},{"id":"Pfam:PF03023","l":"Lipid II flippase MurJ","na":1,"nb":10,"a":[["envelope/peptidoglycan_based_cell_wall.html","peptidoglycan-based cell wall"]],"b":[["GO%3A0000935","division septum"],["GO%3A0015648","lipid-linked peptidoglycan transporter activity"],["GO%3A0034203","glycolipid translocation"],["GO%3A0015836","lipid-linked peptidoglycan transport"],["GO%3A0034204","lipid translocation"],["GO%3A0009252","peptidoglycan biosynthetic process"]]},{"id":"UniProt:P0A7L0","l":"Large ribosomal subunit protein uL1","na":1,"nb":10,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01169","50S ribosomal protein L1"],["InterPro%3AIPR023673","Large ribosomal subunit protein uL1, conserved site"],["CDD%3Acd00403","Ribosomal_L1"],["Pfam%3APF00687","Ribosomal protein L1p/L10e family"],["InterPro%3AIPR016095","Large ribosomal subunit protein uL1, 3-layer alpha/beta-sandwich domain"]]},{"id":"UniProt:P0A7M9","l":"Large ribosomal subunit protein bL31","na":1,"nb":10,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["GO%3A1904689","negative regulation of cytoplasmic translational initiation"],["NCBIfam%3ANF000612","50S ribosomal protein L31"],["NCBIfam%3ANF001809","50S ribosomal protein L31"],["NCBIfam%3ATIGR00105","50S ribosomal protein L31"],["Pfam%3APF01197","Ribosomal protein L31"]]},{"id":"UniProt:P0A7S9","l":"Small ribosomal subunit protein uS13","na":1,"nb":10,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR03631","30S ribosomal protein S13"],["InterPro%3AIPR018269","Small ribosomal subunit protein uS13, conserved site"],["Pfam%3APF00416","Ribosomal protein S13/S18"],["InterPro%3AIPR027437","Small ribosomal subunit protein uS13, C-terminal"],["InterPro%3AIPR010979","Small ribosomal subunit protein uS13-like, H2TH"]]},{"id":"UniProt:P0A7V3","l":"Small ribosomal subunit protein uS3","na":1,"nb":10,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR01009","30S ribosomal protein S3"],["InterPro%3AIPR018280","Small ribosomal subunit protein uS3, conserved site"],["CDD%3Acd02412","KH-II_30S_S3"],["InterPro%3AIPR001351","Small ribosomal subunit protein uS3, C-terminal"],["Pfam%3APF07650","KH domain"]]},{"id":"UniProt:P0A964","l":"","na":1,"nb":10,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["GO%3A0098561","methyl accepting chemotaxis protein complex"],["GO%3A0009454","aerotaxis"],["GO%3A0051649","establishment of localization in cell"],["NCBIfam%3ANF007903","chemotaxis protein CheW"],["CDD%3Acd00732","CheW"],["InterPro%3AIPR002545","CheW-like domain"]]},{"id":"UniProt:P0AB98","l":"","na":1,"nb":10,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["NCBIfam%3ANF004477","F0F1 ATP synthase subunit A"],["NCBIfam%3ATIGR01131","F0F1 ATP synthase subunit A"],["InterPro%3AIPR023011","ATP synthase, F0 complex, subunit A, active site"],["CDD%3Acd00310","ATP-synt_Fo_a_6"],["Pfam%3APF00119","ATP synthase A chain"]]},{"id":"UniProt:P0ABA6","l":"","na":1,"nb":10,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["GO%3A0042777","proton motive force-driven plasma membrane ATP synthesis"],["NCBIfam%3ATIGR01146","ATP synthase F1 subunit gamma"],["NCBIfam%3ANF004144","F0F1 ATP synthase subunit gamma"],["InterPro%3AIPR023632","ATP synthase, F1 complex, gamma subunit conserved site"],["CDD%3Acd12151","F1-ATPase_gamma"]]},{"id":"UniProt:P0ABB0","l":"","na":1,"nb":10,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["NCBIfam%3ANF009884","F0F1 ATP synthase subunit alpha"],["NCBIfam%3ATIGR00962","F0F1 ATP synthase subunit alpha"],["CDD%3Acd18113","ATP-synt_F1_alpha_C"],["CDD%3Acd18116","ATP-synt_F1_alpha_N"],["CDD%3Acd01132","F1-ATPase_alpha_CD"]]},{"id":"UniProt:P0AD65","l":"","na":1,"nb":10,"a":[["division_machinery/elongasome.html","elongasome"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["GO%3A0071972","peptidoglycan L,D-transpeptidase activity"],["NCBIfam%3ATIGR03423","penicillin-binding protein 2"],["NCBIfam%3ANF008061","peptidoglycan DD-transpeptidase MrdA"],["InterPro%3AIPR005311","Penicillin-binding protein, dimerisation domain"],["Pfam%3APF03717","Penicillin-binding Protein dimerisation domain"]]},{"id":"UniProt:P0ADY7","l":"Large ribosomal subunit protein uL16","na":1,"nb":10,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01164","50S ribosomal protein L16"],["InterPro%3AIPR020798","Large ribosomal subunit protein uL16, conserved site"],["CDD%3Acd01433","Ribosomal_L16_L10e"],["InterPro%3AIPR016180","Large ribosomal subunit protein uL16 domain"],["Pfam%3APF00252","Ribosomal protein L16p/L10e"]]},{"id":"UniProt:P28612","l":"","na":1,"nb":10,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0120101","bacterial-type flagellum stator complex"],["NCBIfam%3ANF005831","flagellar motor protein MotB"],["CDD%3Acd07185","OmpA_C-like"],["InterPro%3AIPR025713","Motility protein B-like, N-terminal domain"],["InterPro%3AIPR006665","OmpA-like domain"],["Pfam%3APF13677","Membrane MotB of proton-channel complex MotA/MotB"]]},{"id":"UniProt:P35620","l":"","na":1,"nb":10,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["NCBIfam%3ATIGR01398","flagellar biosynthesis protein FlhA"],["InterPro%3AIPR025505","FHIPEP conserved site"],["Pfam%3APF00771","FHIPEP family"],["InterPro%3AIPR042194","FHIPEP, domain 1"],["InterPro%3AIPR042193","FHIPEP, domain 3"],["InterPro%3AIPR042196","FHIPEP, domain 4"]]},{"id":"UniProt:P39064","l":"","na":1,"nb":10,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0120101","bacterial-type flagellum stator complex"],["NCBIfam%3ANF005382","flagellar motor protein MotS"],["CDD%3Acd07185","OmpA_C-like"],["InterPro%3AIPR025713","Motility protein B-like, N-terminal domain"],["InterPro%3AIPR006665","OmpA-like domain"],["Pfam%3APF13677","Membrane MotB of proton-channel complex MotA/MotB"]]},{"id":"UniProt:P62399","l":"Large ribosomal subunit protein uL5","na":1,"nb":10,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ANF000585","50S ribosomal protein L5"],["InterPro%3AIPR020929","Large ribosomal subunit protein uL5, conserved site"],["InterPro%3AIPR031309","Large ribosomal subunit protein uL5, C-terminal"],["InterPro%3AIPR031310","Large ribosomal subunit protein uL5, N-terminal"],["Pfam%3APF00673","ribosomal L5P family C-terminus"]]},{"id":"CHEBI:18248","l":"iron atom","na":1,"nb":9,"a":[["membrane_organelle/magnetosome.html","magnetosome"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18248","requires Fe"],["proteintraitsmech%3AMETALPDB_FE_DINUCLEAR","dinuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_HEPTANUCLEAR","heptanuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_HEXANUCLEAR","hexanuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_MONONUCLEAR","mononuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_OCTANUCLEAR","octanuclear iron site"]]},{"id":"GO:0008854","l":"exodeoxyribonuclease V activity","na":1,"nb":9,"a":[["other/exodeoxyribonuclease_v_complex.html","exodeoxyribonuclease V complex"]],"b":[["EC%3A3.1.11.5","exodeoxyribonuclease V"],["ComplexPortal%3ACPX-2197","Exodeoxyribonuclease V complex"],["GO%3A0008854","exodeoxyribonuclease V activity"],["NCBIfam%3ANF008127","exodeoxyribonuclease V subunit alpha"],["NCBIfam%3ATIGR01447","exodeoxyribonuclease V subunit alpha"],["NCBIfam%3ANF008128","exodeoxyribonuclease V subunit beta"]]},{"id":"GO:0016255","l":"attachment of GPI anchor to protein","na":1,"nb":9,"a":[["other/gpi_anchor_transamidase_complex.html","GPI-anchor transamidase complex"]],"b":[["ComplexPortal%3ACPX-10141","GPI-anchor transamidase complex"],["ComplexPortal%3ACPX-1275","GPI-anchor transamidase complex"],["ComplexPortal%3ACPX-2687","GPI-anchor transamidase complex"],["ComplexPortal%3ACPX-6503","GPI-anchor transamidase complex"],["GO%3A0016255","attachment of GPI anchor to protein"],["Reactome%3AR-HSA-162791","Attachment of GPI anchor to uPAR"]]},{"id":"GO:0020007","l":"apical complex","na":9,"nb":1,"a":[["cytoskeleton/conoid.html","conoid"],["cytoskeleton/intraconoid_microtubule.html","intraconoid microtubule"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["cytoskeleton/subpellicular_microtubule.html","subpellicular microtubule"],["membrane_organelle/exoneme.html","exoneme"],["membrane_organelle/microneme.html","microneme"]],"b":[["GO%3A0020007","apical complex"]]},{"id":"GO:0031105","l":"septin complex","na":1,"nb":9,"a":[["cytoskeleton/septin_ring.html","septin ring"]],"b":[["ComplexPortal%3ACPX-1675","Septin complex"],["ComplexPortal%3ACPX-25766","Septin complex, hexamer variant, SEPT2-SEPT6-SEPT-7"],["ComplexPortal%3ACPX-25761","Septin complex, octamer variant, SEPT2-SEPT6-SEPT-7-SEPT3"],["ComplexPortal%3ACPX-25758","Septin complex, octamer variant, SEPT2-SEPT6-SEPT-7-SEPT9"],["ComplexPortal%3ACPX-26526","Septin1-Septin2-pnut complex"],["ComplexPortal%3ACPX-26529","Septin4-Septin5-pnut complex"]]},{"id":"GO:0042144","l":"vacuole fusion, non-autophagic","na":1,"nb":9,"a":[["other/hops_complex.html","HOPS complex"]],"b":[["ComplexPortal%3ACPX-1136","HOPS tethering complex"],["ComplexPortal%3ACPX-1625","HOPS tethering complex"],["ComplexPortal%3ACPX-1278","LMA1 complex, TRX1 variant"],["ComplexPortal%3ACPX-1279","LMA1 complex, TRX2 variant"],["ComplexPortal%3ACPX-5401","Vacuolar SNARE complex VAM3-VTI1-VAM7-NYV1"],["GO%3A0042144","vacuole fusion, non-autophagic"]]},{"id":"GO:0042407","l":"cristae formation","na":1,"nb":9,"a":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"]],"b":[["ComplexPortal%3ACPX-140","MICOS mitochondrial contact site and cristae organizing system complex"],["ComplexPortal%3ACPX-25732","MICOS mitochondrial contact site and cristae organizing system complex, MIC10A variant"],["ComplexPortal%3ACPX-25733","MICOS mitochondrial contact site and cristae organizing system complex, MIC10B variant"],["ComplexPortal%3ACPX-25735","MICOS mitochondrial contact site and cristae organizing system complex, MIC10C variant"],["ComplexPortal%3ACPX-6141","MICOS mitochondrial contact site and cristae organizing system complex"],["GO%3A0042407","cristae formation"]]},{"id":"GO:0042765","l":"GPI-anchor transamidase complex","na":1,"nb":9,"a":[["other/gpi_anchor_transamidase_complex.html","GPI-anchor transamidase complex"]],"b":[["ComplexPortal%3ACPX-10141","GPI-anchor transamidase complex"],["ComplexPortal%3ACPX-1275","GPI-anchor transamidase complex"],["ComplexPortal%3ACPX-2687","GPI-anchor transamidase complex"],["ComplexPortal%3ACPX-6503","GPI-anchor transamidase complex"],["GO%3A0042765","GPI-anchor transamidase complex"],["Pfam%3APF04113","Gpi16 subunit, GPI transamidase component"]]},{"id":"GO:0097546","l":"ciliary base","na":1,"nb":9,"a":[["appendage/cilium.html","cilium"]],"b":[["GO%3A0097546","ciliary base"],["PANTHER%3APTHR38326","CHROMOSOME 11 OPEN READING FRAME 97"],["PANTHER%3APTHR31978","INTRAFLAGELLAR TRANSPORT PROTEIN 20 HOMOLOG"],["PANTHER%3APTHR14781","INTRAFLAGELLAR TRANSPORT PROTEIN 56"],["PANTHER%3APTHR44117","INTRAFLAGELLAR TRANSPORT PROTEIN 88 HOMOLOG"],["PANTHER%3APTHR21532","PHOSPHODIESTERASE HL"]]},{"id":"GO:1905354","l":"exoribonuclease complex","na":1,"nb":9,"a":[["ribonucleoprotein/exosome_rnase_complex.html","exosome (RNase complex)"]],"b":[["ComplexPortal%3ACPX-5783","MERS-CoV 3'-5' exoribonuclease proof-reading complex"],["ComplexPortal%3ACPX-5692","SARS-CoV-2 3'-5' exoribonuclease proof-reading complex"],["ComplexPortal%3ACPX-5707","SARS-CoV 3'-5' exoribonuclease proof-reading complex"],["GO%3A1905354","exoribonuclease complex"],["GO%3A0000178","exosome (RNase complex)"],["GO%3A0090730","Las1 complex"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":9,"a":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]],"b":[["Pfam%3APF07835","Bacterial aa3 type cytochrome c oxidase subunit IV"],["Pfam%3APF04828","Glutathione-dependent formaldehyde-activating enzyme"],["Pfam%3APF16448","LapD/MoxY periplasmic domain"],["Pfam%3APF17267","Family of unknown function (DUF5333)"],["Pfam%3APF17272","Family of unknown function (DUF5337)"],["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"]]},{"id":"NCBITaxon:79929","l":"Methanothermobacter marburgensis (strain ATCC BAA-927 / DSM 2133 / JCM 14651 / NBRC 100331 / OCM 82 / Marburg)","na":1,"nb":9,"a":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]],"b":[["Pfam%3APF23902","PRS2 AAA+ lid C-terminal domain"],["Pfam%3APF02754","Cysteine-rich domain"],["Pfam%3APF12798","4Fe-4S binding domain"],["Pfam%3APF13183","4Fe-4S dicluster domain"],["Pfam%3APF22616","HMD N-terminal domain"],["Pfam%3APF03201","H2-forming N5,N10-methylene-tetrahydromethanopterin dehydrogenase"]]},{"id":"UniProt:P02358","l":"Small ribosomal subunit protein bS6","na":1,"nb":9,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR00166","30S ribosomal protein S6"],["InterPro%3AIPR020815","Small ribosomal subunit protein bS6, conserved site"],["CDD%3Acd00473","bS6"],["Pfam%3APF01250","Ribosomal protein S6"],["InterPro%3AIPR035980","Small ribosomal subunit protein bS6 superfamily"]]},{"id":"UniProt:P0A7L3","l":"Large ribosomal subunit protein bL20","na":1,"nb":9,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01032","50S ribosomal protein L20"],["InterPro%3AIPR049946","Large ribosomal subunit protein bL20, conserved site"],["CDD%3Acd07026","Ribosomal_L20"],["Pfam%3APF00453","Ribosomal protein L20"],["InterPro%3AIPR035566","Ribosomal protein bL20, C-terminal"]]},{"id":"UniProt:P0A9X4","l":"","na":1,"nb":9,"a":[["cytoskeleton/mreb_filament.html","MreB filament"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["GO%3A0099513","polymeric cytoskeletal fiber"],["GO%3A0043093","FtsZ-dependent cytokinesis"],["GO%3A0009252","peptidoglycan biosynthetic process"],["GO%3A0051983","regulation of chromosome segregation"],["NCBIfam%3ATIGR00904","MreB/Mrl family cell shape determining protein"]]},{"id":"UniProt:P0AA10","l":"Large ribosomal subunit protein uL13","na":1,"nb":9,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["GO%3A0070180","large ribosomal subunit rRNA binding"],["NCBIfam%3ATIGR01066","50S ribosomal protein L13"],["InterPro%3AIPR023563","Large ribosomal subunit protein uL13, conserved site"],["CDD%3Acd00392","Ribosomal_L13"],["Pfam%3APF00572","Ribosomal protein L13"]]},{"id":"UniProt:P0ADZ4","l":"Small ribosomal subunit protein uS15","na":1,"nb":9,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["GO%3A0070181","small ribosomal subunit rRNA binding"],["NCBIfam%3ATIGR00952","30S ribosomal protein S15"],["CDD%3Acd00353","Ribosomal_S15p_S13e"],["Pfam%3APF00312","Ribosomal protein S15"],["InterPro%3AIPR009068","uS15/NS1, RNA-binding domain superfamily"]]},{"id":"UniProt:P23453","l":"","na":1,"nb":9,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0009425","bacterial-type flagellum basal body"],["NCBIfam%3ATIGR01397","flagellar motor switch protein FliM"],["CDD%3Acd17908","FliM"],["InterPro%3AIPR001543","Flagellar motor switch protein FliN-like, C-terminal domain"],["Pfam%3APF02154","Flagellar motor switch protein FliM"],["InterPro%3AIPR028976","CheC-like superfamily"]]},{"id":"GO:0000917","l":"division septum assembly","na":1,"nb":8,"a":[["division_machinery/divisome_complex.html","divisome complex"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["GO%3A0000917","division septum assembly"],["GO%3A0140278","mitotic division septum assembly"],["NCBIfam%3ATIGR02205","cell division protein ZipA"],["NCBIfam%3ATIGR00172","Maf family nucleotide pyrophosphatase"],["PANTHER%3APTHR36419","ARRESTIN FAMILY PROTEIN 1"]]},{"id":"GO:0043591","l":"endospore external encapsulating structure","na":8,"nb":1,"a":[["spore/endospore_coat.html","endospore coat"],["spore/endospore_core.html","endospore core"],["spore/endospore_cortex.html","endospore cortex"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"],["spore/exosporium.html","exosporium"],["spore/microsporidian_type_endospore.html","microsporidian-type endospore"]],"b":[["GO%3A0043591","endospore external encapsulating structure"]]},{"id":"GO:0071816","l":"tail-anchored membrane protein insertion into ER membrane","na":1,"nb":8,"a":[["other/get_complex.html","GET complex"]],"b":[["ComplexPortal%3ACPX-2445","Endoplasmic reticulum membrane complex, EMC2A variant"],["ComplexPortal%3ACPX-2451","Endoplasmic reticulum membrane complex, EMC2B variant"],["ComplexPortal%3ACPX-5848","Endoplasmic reticulum membrane complex, EMC8 variant"],["ComplexPortal%3ACPX-5882","Endoplasmic reticulum membrane complex, EMC8 variant"],["ComplexPortal%3ACPX-5881","Endoplasmic reticulum membrane complex, EMC9 variant"],["ComplexPortal%3ACPX-5883","Endoplasmic reticulum membrane complex, EMC9 variant"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":8,"a":[["other/cellulosome.html","cellulosome"]],"b":[["Pfam%3APF02927","Cellulase N-terminal ig-like domain"],["Pfam%3APF00404","Dockerin type I domain"],["PROSITE%3APS00448","Clostridium cellulosome enzymes repeated domain signature"],["PROSITE%3APS60032","Glycosyl hydrolases family 9 (GH9) active site signature 1"],["PROSITE%3APS00592","Glycosyl hydrolases family 9 (GH9) active site signature 2"],["PROSITE%3APS00698","Glycosyl hydrolases family 9 (GH9) active site signature 3"]]},{"id":"NCBITaxon:572477","l":"Allochromatium vinosum (strain ATCC 17899 / DSM 180 / NBRC 103801 / NCIMB 10441 / D)","na":1,"nb":8,"a":[["inclusion/sulfur_globule.html","sulfur globule"]],"b":[["Pfam%3APF01322","Cytochrome C'"],["Pfam%3APF02635","DsrE/DsrF-like family"],["Pfam%3APF21706","Sulfide dehydrogenase [flavocytochrome c] flavoprotein chain, central"],["Pfam%3APF09242","Flavocytochrome c sulphide dehydrogenase, flavin-binding"],["Pfam%3APF01355","High potential iron-sulfur protein"],["Pfam%3APF13686","DsrE/DsrF/DrsH-like family"]]},{"id":"UniProt:P05704","l":"","na":1,"nb":8,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["GO%3A0098561","methyl accepting chemotaxis protein complex"],["CDD%3Acd19407","Tar_Tsr_sensor"],["InterPro%3AIPR003122","Chemotaxis methyl-accepting receptor Tar-related, ligand-binding"],["Pfam%3APF02203","Tar ligand binding domain homologue"],["InterPro%3AIPR035440","Methyl-accepting chemotaxis protein, four helix bundle domain superfamily"],["PROSITE%3APS00538","Bacterial chemotaxis sensory transducers signature"]]},{"id":"UniProt:P07018","l":"","na":1,"nb":8,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["NCBIfam%3ANF007309","methyl-accepting chemotaxis protein IV"],["CDD%3Acd19407","Tar_Tsr_sensor"],["InterPro%3AIPR003122","Chemotaxis methyl-accepting receptor Tar-related, ligand-binding"],["Pfam%3APF02203","Tar ligand binding domain homologue"],["InterPro%3AIPR035440","Methyl-accepting chemotaxis protein, four helix bundle domain superfamily"],["PROSITE%3APS00538","Bacterial chemotaxis sensory transducers signature"]]},{"id":"UniProt:P0A7M6","l":"Large ribosomal subunit protein uL29","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00012","50S ribosomal protein L29"],["InterPro%3AIPR018254","Large ribosomal subunit protein uL29, conserved site"],["CDD%3Acd00427","Ribosomal_L29_HIP"],["Pfam%3APF00831","Ribosomal L29 protein"],["InterPro%3AIPR036049","Large ribosomal subunit protein uL29 superfamily"]]},{"id":"UniProt:P0A7N9","l":"Large ribosomal subunit protein bL33","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ANF001860","50S ribosomal protein L33"],["NCBIfam%3ATIGR01023","50S ribosomal protein L33"],["InterPro%3AIPR018264","Large ribosomal subunit protein bL33, conserved site"],["Pfam%3APF00471","Ribosomal protein L33"],["InterPro%3AIPR038584","Large ribosomal subunit protein bL33 superfamily"]]},{"id":"UniProt:P0A7R9","l":"Small ribosomal subunit protein uS11","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ANF003698","30S ribosomal protein S11"],["NCBIfam%3ATIGR03632","30S ribosomal protein S11"],["InterPro%3AIPR018102","Small ribosomal subunit protein uS11, conserved site"],["Pfam%3APF00411","Ribosomal protein S11"],["InterPro%3AIPR036967","Small ribosomal subunit protein uS11 superfamily"]]},{"id":"UniProt:P0A7W1","l":"Small ribosomal subunit protein uS5","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR01021","30S ribosomal protein S5"],["InterPro%3AIPR018192","Small ribosomal subunit protein uS5, N-terminal, conserved site"],["InterPro%3AIPR005324","Small ribosomal subunit protein uS5, C-terminal"],["InterPro%3AIPR013810","Small ribosomal subunit protein uS5, N-terminal"],["Pfam%3APF03719","Ribosomal protein S5, C-terminal domain"]]},{"id":"UniProt:P0A7W7","l":"Small ribosomal subunit protein uS8","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ANF001109","30S ribosomal protein S8"],["InterPro%3AIPR047863","Small ribosomal subunit protein uS8, conserved site"],["Pfam%3APF00410","Ribosomal protein S8"],["InterPro%3AIPR035987","Small ribosomal subunit protein uS8 superfamily"],["PROSITE%3APS00053","Ribosomal protein S8 signature"]]},{"id":"UniProt:P0A7Y8","l":"","na":1,"nb":8,"a":[["ribonucleoprotein/dimeric_ribonuclease_p_complex.html","dimeric ribonuclease P complex"]],"b":[["GO%3A0030677","ribonuclease P complex"],["GO%3A0042781","3'-tRNA processing endoribonuclease activity"],["NCBIfam%3ATIGR00188","ribonuclease P protein component"],["InterPro%3AIPR020539","Ribonuclease P, conserved site"],["Pfam%3APF00825","Ribonuclease P"],["InterPro%3AIPR014721","Small ribosomal subunit protein uS5 domain 2-type fold, subgroup"]]},{"id":"UniProt:P0ABA0","l":"","na":1,"nb":8,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["NCBIfam%3ANF004411","F0F1 ATP synthase subunit B"],["NCBIfam%3ANF004413","F0F1 ATP synthase subunit B"],["NCBIfam%3ATIGR01144","F0F1 ATP synthase subunit B"],["CDD%3Acd06503","ATP-synt_Fo_b"],["Pfam%3APF00430","ATP synthase B/B' CF(0)"]]},{"id":"UniProt:P0ABA4","l":"","na":1,"nb":8,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["NCBIfam%3ATIGR01145","ATP synthase F1 subunit delta"],["NCBIfam%3ANF004402","F0F1 ATP synthase subunit delta"],["NCBIfam%3ANF004404","F0F1 ATP synthase subunit delta"],["InterPro%3AIPR020781","ATPase, OSCP/delta subunit, conserved site"],["Pfam%3APF00213","ATP synthase delta (OSCP) subunit"]]},{"id":"UniProt:P0ABG7","l":"","na":1,"nb":8,"a":[["division_machinery/elongasome.html","elongasome"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["GO%3A0015648","lipid-linked peptidoglycan transporter activity"],["GO%3A0031504","peptidoglycan-based cell wall organization"],["NCBIfam%3ANF008060","peptidoglycan glycosyltransferase MrdB"],["NCBIfam%3ATIGR02210","rod shape-determining protein RodA"],["InterPro%3AIPR018365","Cell cycle, FtsW / RodA / SpoVE, conserved site"]]},{"id":"UniProt:P0ABH0","l":"","na":1,"nb":8,"a":[["division_machinery/divisome_complex.html","divisome complex"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["NCBIfam%3ANF007009","cell division protein FtsA"],["NCBIfam%3ATIGR01174","cell division protein FtsA"],["CDD%3Acd24048","ASKHA_NBD_FtsA"],["InterPro%3AIPR003494","SHS2 domain inserted in FtsA"],["Pfam%3APF14450","Cell division protein FtsA"]]},{"id":"UniProt:P0ABJ6","l":"","na":1,"nb":8,"a":[["energy_complex/cytochrome_o_ubiquinol_oxidase_complex.html","cytochrome o ubiquinol oxidase complex"]],"b":[["ComplexPortal%3ACPX-2102","Cytochrome bo3 ubiquinol oxidase complex"],["GO%3A0009319","cytochrome o ubiquinol oxidase complex"],["GO%3A0009486","cytochrome bo3 ubiquinol oxidase activity"],["GO%3A0015453","oxidoreduction-driven active transmembrane transporter activity"],["GO%3A0015990","electron transport coupled proton transport"],["NCBIfam%3ANF007878","cytochrome o ubiquinol oxidase subunit IV"]]},{"id":"UniProt:P0ADY3","l":"Large ribosomal subunit protein uL14","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01067","50S ribosomal protein L14"],["InterPro%3AIPR019972","Large ribosomal subunit protein uL14, conserved site"],["CDD%3Acd00337","Ribosomal_uL14"],["Pfam%3APF00238","Ribosomal protein L14p/L23e"],["InterPro%3AIPR036853","Large ribosomal subunit protein uL14 superfamily"]]},{"id":"UniProt:P0AG51","l":"Large ribosomal subunit protein uL30","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01308","50S ribosomal protein L30"],["InterPro%3AIPR018038","Large ribosomal subunit protein uL30, conserved site"],["CDD%3Acd01658","Ribosomal_L30"],["InterPro%3AIPR016082","Large ribosomal subunit protein uL30-like, ferredoxin-like fold domain"],["Pfam%3APF00327","Ribosomal protein L30p/L7e"]]},{"id":"UniProt:P0AG55","l":"Large ribosomal subunit protein uL6","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR03654","50S ribosomal protein L6"],["InterPro%3AIPR002358","Large ribosomal subunit protein uL6, conserved site"],["InterPro%3AIPR020040","Large ribosomal subunit protein uL6, alpha-beta domain"],["Pfam%3APF00347","Ribosomal protein L6"],["InterPro%3AIPR036789","Large ribosomal subunit protein uL6-like, alpha-beta domain superfamily"]]},{"id":"UniProt:P16926","l":"","na":1,"nb":8,"a":[["division_machinery/elongasome.html","elongasome"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["NCBIfam%3ATIGR00219","rod shape-determining protein MreC"],["InterPro%3AIPR055342","Rod shape-determining protein MreC, beta-barrel core"],["Pfam%3APF04085","Rod shape-determining protein MreC, barrel core"],["InterPro%3AIPR042177","Cell/Rod shape-determining protein MreC, domain 1"],["InterPro%3AIPR042175","Cell/Rod shape-determining protein MreC, domain 2"]]},{"id":"UniProt:P60624","l":"Large ribosomal subunit protein uL24","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01079","50S ribosomal protein L24"],["InterPro%3AIPR005825","Large ribosomal subunit protein uL24, conserved site"],["CDD%3Acd06089","KOW_RPL26"],["InterPro%3AIPR057264","Large ribosomal subunit protein uL24, C-terminal domain"],["InterPro%3AIPR041988","Large ribosomal subunit protein uL24, KOW domain"]]},{"id":"UniProt:P68919","l":"Large ribosomal subunit protein bL25","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ANF004612","50S ribosomal protein L25"],["CDD%3Acd00495","Ribosomal_L25_TL5_CTC"],["InterPro%3AIPR029751","Large ribosomal subunit protein bL25, L25 domain"],["Pfam%3APF01386","Ribosomal L25p family"],["InterPro%3AIPR011035","Large ribosomal subunit protein bL25/Gln-tRNA synthetase, anti-codon-binding domain superfamily"]]},{"id":"GO:0006901","l":"vesicle coat assembly","na":1,"nb":7,"a":[["other/vesicle_coat.html","vesicle coat"]],"b":[["ComplexPortal%3ACPX-4764","TRAPP II complex"],["ComplexPortal%3ACPX-4749","TRAPP II complex, TRAPPC2 variant"],["ComplexPortal%3ACPX-6902","TRAPP II complex, TRAPPC2B variant"],["GO%3A0048208","COPII vesicle coat assembly"],["GO%3A0048200","Golgi transport vesicle coating"],["GO%3A0016183","synaptic vesicle coating"]]},{"id":"GO:0009338","l":"exodeoxyribonuclease V complex","na":1,"nb":7,"a":[["other/exodeoxyribonuclease_v_complex.html","exodeoxyribonuclease V complex"]],"b":[["ComplexPortal%3ACPX-2197","Exodeoxyribonuclease V complex"],["GO%3A0009338","exodeoxyribonuclease V complex"],["NCBIfam%3ANF008127","exodeoxyribonuclease V subunit alpha"],["NCBIfam%3ATIGR01447","exodeoxyribonuclease V subunit alpha"],["NCBIfam%3ATIGR00609","exodeoxyribonuclease V subunit beta"],["NCBIfam%3ANF008289","exodeoxyribonuclease V subunit gamma"]]},{"id":"GO:0030128","l":"clathrin coat of endocytic vesicle","na":7,"nb":1,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle.html","clathrin-coated endocytic vesicle"],["membrane_organelle/clathrin_coated_endocytic_vesicle_membrane.html","clathrin-coated endocytic vesicle membrane"],["membrane_organelle/endocytic_vesicle.html","endocytic vesicle"],["membrane_organelle/endocytic_vesicle_membrane.html","endocytic vesicle membrane"],["other/ap_2_adaptor_complex.html","AP-2 adaptor complex"],["other/clathrin_coat_of_coated_pit.html","clathrin coat of coated pit"]],"b":[["GO%3A0030128","clathrin coat of endocytic vesicle"]]},{"id":"GO:0030897","l":"HOPS complex","na":1,"nb":7,"a":[["other/hops_complex.html","HOPS complex"]],"b":[["ComplexPortal%3ACPX-1136","HOPS tethering complex"],["ComplexPortal%3ACPX-1625","HOPS tethering complex"],["ComplexPortal%3ACPX-6212","HOPS tethering complex"],["ComplexPortal%3ACPX-936","HOPS tethering complex"],["GO%3A0030897","HOPS complex"],["GO%3A1902502","multivesicular body HOPS complex"]]},{"id":"GO:0032156","l":"septin cytoskeleton","na":1,"nb":7,"a":[["cytoskeleton/septin_ring.html","septin ring"]],"b":[["GO%3A0150050","postsynaptic septin cytoskeleton"],["GO%3A0032159","septin cap"],["GO%3A0032173","septin collar"],["GO%3A0032156","septin cytoskeleton"],["GO%3A0032160","septin filament array"],["GO%3A0005940","septin ring"]]},{"id":"GO:0033115","l":"cyanelle thylakoid membrane","na":7,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/cyanelle_thylakoid_lumen.html","cyanelle thylakoid lumen"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"]],"b":[["GO%3A0033115","cyanelle thylakoid membrane"]]},{"id":"GO:0035964","l":"COPI-coated vesicle budding","na":7,"nb":1,"a":[["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"],["membrane_organelle/golgi_membrane.html","Golgi membrane"],["other/copi_vesicle_coat.html","COPI vesicle coat"]],"b":[["GO%3A0035964","COPI-coated vesicle budding"]]},{"id":"GO:0043953","l":"protein transport by the Tat complex","na":1,"nb":7,"a":[["secretion_system/tat_protein_transport_complex.html","TAT protein transport complex"]],"b":[["ComplexPortal%3ACPX-3445","Twin-arginine translocation complex"],["GO%3A0043953","protein transport by the Tat complex"],["NCBIfam%3ANF001854","Sec-independent protein translocase subunit TatA"],["NCBIfam%3ANF002813","Sec-independent protein translocase subunit TatA"],["NCBIfam%3ATIGR01912","Sec-independent protein translocase TatC"],["NCBIfam%3ANF001940","twin-arginine translocase TatA/TatE family subunit"]]},{"id":"GO:0097540","l":"axonemal central pair","na":7,"nb":1,"a":[["cytoskeleton/axonemal_central_apparatus.html","axonemal central apparatus"],["cytoskeleton/axonemal_central_pair.html","axonemal central pair"],["cytoskeleton/axonemal_central_pair_projection.html","axonemal central pair projection"],["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"],["cytoskeleton/c1_axonemal_microtubule.html","C1 axonemal microtubule"],["cytoskeleton/c2_axonemal_microtubule.html","C2 axonemal microtubule"]],"b":[["GO%3A0097540","axonemal central pair"]]},{"id":"GO:0097597","l":"ventral disc","na":7,"nb":1,"a":[["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_crossbridge.html","ventral disc crossbridge"],["cytoskeleton/ventral_disc_dorsal_microribbon.html","ventral disc dorsal microribbon"],["cytoskeleton/ventral_disc_lateral_crest.html","ventral disc lateral crest"],["cytoskeleton/ventral_disc_microtubule_array.html","ventral disc microtubule array"],["cytoskeleton/ventral_disc_overlap_zone.html","ventral disc overlap zone"]],"b":[["GO%3A0097597","ventral disc"]]},{"id":"GO:0097649","l":"A axonemal microtubule","na":7,"nb":1,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_a_tubule_inner_sheath.html","axonemal A tubule inner sheath"],["cytoskeleton/axonemal_doublet_microtubule.html","axonemal doublet microtubule"],["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"],["cytoskeleton/axonemal_microtubule_doublet_inner_junction.html","axonemal microtubule doublet inner junction"],["cytoskeleton/axonemal_microtubule_doublet_outer_junction.html","axonemal microtubule doublet outer junction"]],"b":[["GO%3A0097649","A axonemal microtubule"]]},{"id":"GO:0097650","l":"B axonemal microtubule","na":7,"nb":1,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_b_tubule_inner_sheath.html","axonemal B tubule inner sheath"],["cytoskeleton/axonemal_doublet_microtubule.html","axonemal doublet microtubule"],["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"],["cytoskeleton/axonemal_microtubule_doublet_inner_junction.html","axonemal microtubule doublet inner junction"],["cytoskeleton/axonemal_microtubule_doublet_outer_junction.html","axonemal microtubule doublet outer junction"]],"b":[["GO%3A0097650","B axonemal microtubule"]]},{"id":"InterPro:IPR001119","l":"S-layer homology domain","na":1,"nb":7,"a":[["envelope/s_layer.html","S-layer"]],"b":[["InterPro%3AIPR011459","Domain of unknown function DUF1565"],["InterPro%3AIPR001119","S-layer homology domain"],["Pfam%3APF13205","Bacterial Ig-like domain"],["Pfam%3APF03424","Carbohydrate binding domain (family 17/28)"],["Pfam%3APF06452","Carbohydrate family 9 binding domain-like"],["Pfam%3APF07602","Protein of unknown function (DUF1565)"]]},{"id":"InterPro:IPR001241","l":"","na":1,"nb":7,"a":[["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["Pfam%3APF00204","DNA gyrase B"],["Pfam%3APF00521","DNA gyrase/topoisomerase IV, subunit A"],["Pfam%3APF21249","GyrB, hook"],["Pfam%3APF18053","DNA gyrase B subunit insert domain"],["Pfam%3APF00986","DNA gyrase B subunit, carboxyl terminus"],["Pfam%3APF08070","DTHCT (NUC029) region"]]},{"id":"InterPro:IPR004489","l":"","na":1,"nb":7,"a":[["energy_complex/fumarate_reductase_complex.html","fumarate reductase complex"]],"b":[["Pfam%3APF02754","Cysteine-rich domain"],["Pfam%3APF13085","2Fe-2S iron-sulfur cluster binding domain"],["Pfam%3APF13237","4Fe-4S dicluster domain"],["Pfam%3APF13534","4Fe-4S dicluster domain"],["Pfam%3APF13183","4Fe-4S dicluster domain"],["PROSITE%3APS00197","2Fe-2S ferredoxin-type iron-sulfur binding region signature"]]},{"id":"NCBITaxon:837","l":"Porphyromonas gingivalis","na":1,"nb":7,"a":[["secretion_system/type_ix_protein_secretion_system_complex.html","type IX protein secretion system complex"]],"b":[["Pfam%3APF07675","Cleaved Adhesin Domain"],["Pfam%3APF22492","FimA4 pilin C-terminal domain"],["Pfam%3APF15495","Major fimbrial subunit protein type IV, Fimbrillin, C-terminal"],["Pfam%3APF26306","FimD protein third domain"],["Pfam%3APF27397","FimE C-terminal domain"],["Pfam%3APF10365","Domain of unknown function (DUF2436)"]]},{"id":"Pfam:PF04728","l":"Lipoprotein leucine-zipper","na":1,"nb":7,"a":[["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"]],"b":[["GO%3A0043580","periplasmic space organization"],["NCBIfam%3ANF007428","lipoprotein YqhH"],["NCBIfam%3ANF040598","Lpp/OprI family alanine-zipper lipoprotein"],["NCBIfam%3ANF011925","major outer membrane lipoprotein"],["InterPro%3AIPR006817","Lipoprotein leucine-zipper"],["Pfam%3APF04728","Lipoprotein leucine-zipper"]]},{"id":"UniProt:P0A7K6","l":"Large ribosomal subunit protein bL19","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01024","50S ribosomal protein L19"],["InterPro%3AIPR018257","Large ribosomal subunit protein bL19, conserved site"],["Pfam%3APF01245","Ribosomal protein L19"],["InterPro%3AIPR038657","Large ribosomal subunit protein bL19 superfamily"],["PROSITE%3APS01015","Ribosomal protein L19 signature"]]},{"id":"UniProt:P0A7N1","l":"Large ribosomal subunit protein bL31B","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00105","50S ribosomal protein L31"],["NCBIfam%3ANF002462","type B 50S ribosomal protein L31"],["Pfam%3APF01197","Ribosomal protein L31"],["InterPro%3AIPR042105","Large ribosomal subunit protein bL31 superfamily"],["PROSITE%3APS01143","Ribosomal protein L31 signature"]]},{"id":"UniProt:P0A7Q1","l":"Large ribosomal subunit protein bL35","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00001","50S ribosomal protein L35"],["InterPro%3AIPR018265","Large ribosomal subunit protein bL35, conserved site"],["Pfam%3APF01632","Ribosomal protein L35"],["InterPro%3AIPR037229","Large ribosomal subunit protein bL35 superfamily"],["PROSITE%3APS00936","Ribosomal protein L35 signature"]]},{"id":"UniProt:P0A7T3","l":"Small ribosomal subunit protein bS16","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR00002","30S ribosomal protein S16"],["InterPro%3AIPR020592","Small ribosomal subunit protein bS16, conserved site"],["Pfam%3APF00886","Ribosomal protein S16"],["InterPro%3AIPR023803","Small ribosomal subunit protein bS16 domain superfamily"],["PROSITE%3APS00732","Ribosomal protein S16 signature"]]},{"id":"UniProt:P0A7T7","l":"Small ribosomal subunit protein bS18","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR00165","30S ribosomal protein S18"],["InterPro%3AIPR018275","Small ribosomal subunit protein bS18, conserved site"],["Pfam%3APF01084","Ribosomal protein S18"],["InterPro%3AIPR036870","Small ribosomal subunit protein bS18 superfamily"],["PROSITE%3APS00057","Ribosomal protein S18 signature"]]},{"id":"UniProt:P0A7U3","l":"Small ribosomal subunit protein uS19","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR01050","30S ribosomal protein S19"],["InterPro%3AIPR020934","Small ribosomal subunit protein uS19, conserved site"],["Pfam%3APF00203","Ribosomal protein S19"],["InterPro%3AIPR023575","Small ribosomal subunit protein uS19, superfamily"],["PROSITE%3APS00323","Ribosomal protein S19 signature"]]},{"id":"UniProt:P0A7U7","l":"Small ribosomal subunit protein bS20","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["GO%3A0008073","ornithine decarboxylase inhibitor activity"],["GO%3A0070181","small ribosomal subunit rRNA binding"],["NCBIfam%3ATIGR00029","30S ribosomal protein S20"],["Pfam%3APF01649","Ribosomal protein S20"],["InterPro%3AIPR036510","Small ribosomal subunit protein bS20 superfamily"]]},{"id":"UniProt:P0A9A6","l":"","na":1,"nb":7,"a":[["division_machinery/divisome_complex.html","divisome complex"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["NCBIfam%3ATIGR00065","cell division protein FtsZ"],["InterPro%3AIPR020805","Cell division protein FtsZ, conserved site"],["CDD%3Acd02201","FtsZ_type1"],["InterPro%3AIPR024757","Cell division protein FtsZ, C-terminal"],["PROSITE%3APS01134","FtsZ protein signature 1"]]},{"id":"UniProt:P0AG44","l":"Large ribosomal subunit protein bL17","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00059","50S ribosomal protein L17"],["InterPro%3AIPR047859","Large ribosomal subunit protein bL17, conserved site"],["Pfam%3APF01196","Ribosomal protein L17"],["InterPro%3AIPR036373","Large ribosomal subunit protein bL17 superfamily"],["PROSITE%3APS01167","Ribosomal protein L17 signature"]]},{"id":"UniProt:P0AG63","l":"Small ribosomal subunit protein uS17","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ANF004123","30S ribosomal protein S17"],["NCBIfam%3ATIGR03635","30S ribosomal protein S17"],["InterPro%3AIPR019979","Small ribosomal subunit protein uS17, conserved site"],["CDD%3Acd00364","Ribosomal_uS17"],["Pfam%3APF00366","Ribosomal protein S17"]]},{"id":"UniProt:P0AGE0","l":"","na":1,"nb":7,"a":[["other/single_stranded_dna_binding_protein_complex.html","single-stranded DNA-binding protein complex"]],"b":[["ComplexPortal%3ACPX-1928","SSB single-stranded DNA binding complex"],["GO%3A0044777","single-stranded DNA-binding protein complex"],["NCBIfam%3ANF006533","single-stranded DNA-binding protein"],["NCBIfam%3ATIGR00621","single-stranded DNA-binding protein"],["CDD%3Acd04496","SSB_OBF"],["Pfam%3APF00436","Single-strand binding protein family"]]},{"id":"UniProt:P23447","l":"","na":1,"nb":7,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0009431","bacterial-type flagellum basal body, MS ring"],["NCBIfam%3ATIGR00206","flagellar basal-body MS-ring/collar protein FliF"],["InterPro%3AIPR013556","Flagellar M-ring C-terminal"],["InterPro%3AIPR006182","Flagellar M-ring, N-terminal"],["Pfam%3APF08345","Flagellar M-ring protein C-terminal"],["Pfam%3APF01514","Secretory protein of YscJ/FliF RBM domain"]]},{"id":"UniProt:P28611","l":"","na":1,"nb":7,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["NCBIfam%3ANF005997","flagellar motor stator protein MotA"],["InterPro%3AIPR000540","Flagellar motor protein MotA, conserved site"],["InterPro%3AIPR002898","MotA/TolQ/ExbB proton channel"],["InterPro%3AIPR046786","Motility protein A, N-terminal"],["Pfam%3APF20560","Motility protein A N-terminal"],["Pfam%3APF01618","MotA/TolQ/ExbB proton channel family"]]},{"id":"UniProt:P68679","l":"Small ribosomal subunit protein bS21","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR00030","30S ribosomal protein S21"],["InterPro%3AIPR018278","Small ribosomal subunit protein bS21, conserved site"],["Pfam%3APF01165","Ribosomal protein S21"],["InterPro%3AIPR038380","Small ribosomal subunit protein bS21 superfamily"],["PROSITE%3APS01181","Ribosomal protein S21 signature"]]},{"id":"UniProt:P77173","l":"","na":1,"nb":7,"a":[["division_machinery/divisome_complex.html","divisome complex"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["NCBIfam%3ATIGR02205","cell division protein ZipA"],["CDD%3Acd00231","ZipA"],["InterPro%3AIPR007449","ZipA, C-terminal FtsZ-binding domain"],["Pfam%3APF04354","ZipA, C-terminal FtsZ-binding domain"],["InterPro%3AIPR036765","ZipA, C-terminal FtsZ-binding domain superfamily"]]},{"id":"CHEBI:35915","l":"","na":1,"nb":6,"a":[["inclusion/lipid_droplet.html","lipid droplet"]],"b":[["EC%3A2.3.1.43","phosphatidylcholine--sterol O-acyltransferase"],["EC%3A2.3.1.73","diacylglycerol--sterol O-acyltransferase"],["EC%3A3.1.1.13","sterol esterase"],["RHEA%3A21204","a sterol + a 1,2-diacyl-sn-glycero-3-phosphocholine = a sterol ester + a 1-acyl-sn-glycero-3-phosphocholine"],["RHEA%3A13301","a sterol + a 1,2-diacyl-sn-glycerol = a sterol ester + a 1-acyl-sn-glycerol"],["RHEA%3A10100","a sterol ester + H2O = a sterol + a fatty acid + H(+)"]]},{"id":"GO:0000133","l":"polarisome","na":1,"nb":6,"a":[["other/polarisome.html","polarisome"]],"b":[["ComplexPortal%3ACPX-3188","Polarisome"],["GO%3A0031560","cellular bud neck polarisome"],["GO%3A0031561","cellular bud tip polarisome"],["GO%3A0031562","hyphal tip polarisome"],["GO%3A0031563","mating projection tip polarisome"],["GO%3A0000133","polarisome"]]},{"id":"GO:0000148","l":"1,3-beta-D-glucan synthase complex","na":1,"nb":6,"a":[["other/1_3_beta_d_glucan_synthase_complex.html","1,3-beta-D-glucan synthase complex"]],"b":[["ComplexPortal%3ACPX-1812","1,3-beta-D-glucan synthase complex, FKS1-RHO1 variant"],["ComplexPortal%3ACPX-1813","1,3-beta-D-glucan synthase complex, FKS2-RHO1 variant"],["ComplexPortal%3ACPX-3028","1,3-beta-D-glucan synthase complex, FKS3-RHO1 variant"],["GO%3A0000148","1,3-beta-D-glucan synthase complex"],["InterPro%3AIPR003440","Glycosyl transferase 48 domain"],["Pfam%3APF02364","1,3-beta-glucan synthase component"]]},{"id":"GO:0000938","l":"GARP complex","na":1,"nb":6,"a":[["other/garp_complex.html","GARP complex"]],"b":[["ComplexPortal%3ACPX-1718","GARP tethering complex"],["ComplexPortal%3ACPX-365","GARP tethering complex"],["ComplexPortal%3ACPX-6208","GARP tethering complex"],["ComplexPortal%3ACPX-2788","GARP tethering complex, Vps50 variant"],["ComplexPortal%3ACPX-2793","GARP tethering complex, Vps54 variant"],["GO%3A0000938","GARP complex"]]},{"id":"GO:0001401","l":"SAM complex","na":1,"nb":6,"a":[["other/sam_complex.html","SAM complex"]],"b":[["ComplexPortal%3ACPX-1744","Mitochondrial sorting and assembly machinery complex"],["ComplexPortal%3ACPX-6133","SAM mitochondrial sorting and assembly machinery complex"],["GO%3A0001401","SAM complex"],["InterPro%3AIPR019564","Mitochondrial outer membrane transport complex Sam37/metaxin, N-terminal domain"],["NCBIfam%3ANF022041","Tom37 metaxin N-terminal-like domain-containing protein"],["Pfam%3APF10568","Outer mitochondrial membrane transport complex protein"]]},{"id":"GO:0005693","l":"U12 snRNP","na":6,"nb":1,"a":[["ribonucleoprotein/u11_u12_snrnp.html","U11/U12 snRNP"],["ribonucleoprotein/u12_snrnp.html","U12 snRNP"],["ribonucleoprotein/u12_type_catalytic_step_1_spliceosome.html","U12-type catalytic step 1 spliceosome"],["ribonucleoprotein/u12_type_catalytic_step_2_spliceosome.html","U12-type catalytic step 2 spliceosome"],["ribonucleoprotein/u12_type_post_mrna_release_spliceosomal_complex.html","U12-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u12_type_post_spliceosomal_complex.html","U12-type post-spliceosomal complex"]],"b":[["GO%3A0005693","U12 snRNP"]]},{"id":"GO:0006797","l":"polyphosphate metabolic process","na":1,"nb":6,"a":[["membrane_organelle/acidocalcisome.html","acidocalcisome"]],"b":[["GO%3A0006799","polyphosphate biosynthetic process"],["GO%3A0006798","polyphosphate catabolic process"],["GO%3A0006797","polyphosphate metabolic process"],["NCBIfam%3ANF042973","ADP-polyphosphate phosphotransferase"],["NCBIfam%3ATIGR03708","polyphosphate:AMP phosphotransferase"],["NCBIfam%3ATIGR03709","PPK2 family polyphosphate kinase"]]},{"id":"GO:0006998","l":"nuclear envelope organization","na":1,"nb":6,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"]],"b":[["ComplexPortal%3ACPX-1787","Nem1-Spo7 phosphatase complex"],["GO%3A0006998","nuclear envelope organization"],["GO%3A0018985","pronuclear envelope synthesis"],["PANTHER%3APTHR47808","INNER NUCLEAR MEMBRANE PROTEIN HEH2-RELATED"],["PANTHER%3APTHR28538","INTEGRAL INNER NUCLEAR MEMBRANE PROTEIN IMA1"],["PANTHER%3APTHR28136","NUCLEUS EXPORT PROTEIN BRR6"]]},{"id":"GO:0009843","l":"cyanelle thylakoid","na":6,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/cyanelle_thylakoid_lumen.html","cyanelle thylakoid lumen"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"],["membrane_organelle/plastid_thylakoid.html","plastid thylakoid"]],"b":[["GO%3A0009843","cyanelle thylakoid"]]},{"id":"GO:0020008","l":"rhoptry","na":6,"nb":1,"a":[["membrane_organelle/mononeme.html","mononeme"],["membrane_organelle/rhoptry.html","rhoptry"],["membrane_organelle/rhoptry_lumen.html","rhoptry lumen"],["membrane_organelle/rhoptry_membrane.html","rhoptry membrane"],["membrane_organelle/rhoptry_neck.html","rhoptry neck"],["other/apical_complex.html","apical complex"]],"b":[["GO%3A0020008","rhoptry"]]},{"id":"GO:0033112","l":"cyanelle envelope","na":6,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"]],"b":[["GO%3A0033112","cyanelle envelope"]]},{"id":"GO:0033114","l":"cyanelle thylakoid lumen","na":6,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/cyanelle_thylakoid_lumen.html","cyanelle thylakoid lumen"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"],["membrane_organelle/plastid_thylakoid_lumen.html","plastid thylakoid lumen"]],"b":[["GO%3A0033114","cyanelle thylakoid lumen"]]},{"id":"GO:0036012","l":"cyanelle inner membrane","na":6,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"]],"b":[["GO%3A0036012","cyanelle inner membrane"]]},{"id":"GO:0038203","l":"TORC2 signaling","na":1,"nb":6,"a":[["other/torc2_complex.html","TORC2 complex"]],"b":[["ComplexPortal%3ACPX-2269","TORC2 complex"],["ComplexPortal%3ACPX-26513","TORC2 serine/threonine protein kinase complex"],["GO%3A0038203","TORC2 signaling"],["PANTHER%3APTHR13298","CYTOSOLIC REGULATOR PIANISSIMO"],["PANTHER%3APTHR32428","TARGET OF RAPAMYCIN COMPLEX 2 SUBUNIT BIT61-RELATED"],["PANTHER%3APTHR13335","TARGET OF RAPAMYCIN COMPLEX 2 SUBUNIT MAPKAP1"]]},{"id":"GO:0043264","l":"extracellular membraneless organelle","na":1,"nb":6,"a":[["other/cellulosome.html","cellulosome"]],"b":[["GO%3A0043263","cellulosome"],["GO%3A0043264","extracellular membraneless organelle"],["GO%3A0140644","neutrophil extracellular trap"],["GO%3A0055040","periplasmic flagellum"],["GO%3A0055039","trichocyst"],["GO%3A0085026","tubovesicular membrane network"]]},{"id":"GO:0043595","l":"endospore cortex","na":6,"nb":1,"a":[["spore/endospore_coat.html","endospore coat"],["spore/endospore_core.html","endospore core"],["spore/endospore_cortex.html","endospore cortex"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"],["spore/outer_endospore_membrane.html","outer endospore membrane"],["spore/spore_inner_membrane.html","spore inner membrane"]],"b":[["GO%3A0043595","endospore cortex"]]},{"id":"GO:0070111","l":"organellar chromatophore","na":6,"nb":1,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_inner_membrane.html","organellar chromatophore inner membrane"],["membrane_organelle/organellar_chromatophore_intermembrane_space.html","organellar chromatophore intermembrane space"],["membrane_organelle/organellar_chromatophore_membrane.html","organellar chromatophore membrane"],["membrane_organelle/organellar_chromatophore_outer_membrane.html","organellar chromatophore outer membrane"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"]],"b":[["GO%3A0070111","organellar chromatophore"]]},{"id":"GO:0070118","l":"organellar chromatophore thylakoid membrane","na":6,"nb":1,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_membrane.html","organellar chromatophore membrane"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"],["membrane_organelle/organellar_chromatophore_thylakoid_lumen.html","organellar chromatophore thylakoid lumen"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"],["membrane_organelle/plastid_thylakoid_membrane.html","plastid thylakoid membrane"]],"b":[["GO%3A0070118","organellar chromatophore thylakoid membrane"]]},{"id":"NCBITaxon:1430","l":"Bacillus thuringiensis subsp. israelensis","na":1,"nb":6,"a":[["inclusion/parasporal_crystal.html","parasporal crystal"]],"b":[["Pfam%3APF01338","Bacillus thuringiensis toxin"],["Pfam%3APF17997","Insecticidal delta-endotoxin CryIA(c) domain 5"],["Pfam%3APF21463","Cry1Ac, domain VII"],["Pfam%3APF03944","delta endotoxin"],["Pfam%3APF03945","delta endotoxin, N-terminal domain"],["Pfam%3APF00555","delta endotoxin"]]},{"id":"NCBITaxon:5141","l":"Neurospora crassa","na":6,"nb":1,"a":[["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysomal_membrane.html","glyoxysomal membrane"],["membrane_organelle/glyoxysome.html","glyoxysome"],["membrane_organelle/woronin_body.html","Woronin body"],["other/polarisome.html","polarisome"],["other/spitzenkorper.html","spitzenkorper"]],"b":[["TED%3AAF-A0A0B0E1R4-F1-model_v4_TED01","TED novel fold AF-A0A0B0E1R4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:5911","l":"Tetrahymena thermophila","na":6,"nb":1,"a":[["cytoskeleton/axonemal_microtubule_doublet_outer_junction.html","axonemal microtubule doublet outer junction"],["membrane_organelle/macronucleus.html","macronucleus"],["membrane_organelle/micronucleus.html","micronucleus"],["membrane_organelle/mucocyst.html","mucocyst"],["other/ap_3_adaptor_complex.html","AP-3 adaptor complex"],["other/ap_type_membrane_coat_adaptor_complex.html","AP-type membrane coat adaptor complex"]],"b":[["Pfam%3APF10699","Male gamete fusion factor"]]},{"id":"UniProt:P02968","l":"","na":1,"nb":6,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["NCBIfam%3ANF009446","flagellin Hag"],["InterPro%3AIPR046358","Flagellin, C-terminal domain"],["InterPro%3AIPR001029","Flagellin, N-terminal domain"],["Pfam%3APF00700","Bacterial flagellin C-terminal helical region"],["Pfam%3APF00669","Bacterial flagellin N-terminal helical region"],["CATH%3A1.20.1330.10","f41 fragment of flagellin, N-terminal domain"]]},{"id":"UniProt:P0A7M2","l":"Large ribosomal subunit protein bL28","na":1,"nb":6,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00009","50S ribosomal protein L28"],["Pfam%3APF00830","Ribosomal L28 family"],["InterPro%3AIPR034704","Large ribosomal subunit protein bL28/bL31-like superfamily"],["InterPro%3AIPR037147","Large ribosomal subunit protein bL28 superfamily"],["CATH%3A2.30.170.40","Ribosomal protein L28/L24"]]},{"id":"UniProt:P0A7P5","l":"Large ribosomal subunit protein bL34","na":1,"nb":6,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01030","50S ribosomal protein L34"],["InterPro%3AIPR020939","Large ribosomal subunit protein bL34, conserved site"],["Pfam%3APF00468","Ribosomal protein L34"],["PROSITE%3APS00784","Ribosomal protein L34 signature"],["CATH%3A1.10.287.3980","CATH homologous superfamily 1.10.287.3980"]]},{"id":"UniProt:P0ADZ0","l":"Large ribosomal subunit protein uL23","na":1,"nb":6,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ANF004358","50S ribosomal protein L23"],["NCBIfam%3ANF004359","50S ribosomal protein L23"],["NCBIfam%3ANF004363","50S ribosomal protein L23"],["InterPro%3AIPR001014","Large ribosomal subunit protein uL23, conserved site"],["PROSITE%3APS00050","Ribosomal protein L23 signature"]]},{"id":"UniProt:P0AG48","l":"Large ribosomal subunit protein bL21","na":1,"nb":6,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00061","50S ribosomal protein L21"],["InterPro%3AIPR018258","Large ribosomal subunit protein bL21, conserved site"],["Pfam%3APF00829","Ribosomal prokaryotic L21 protein"],["InterPro%3AIPR036164","Large ribosomal subunit protein bL21-like superfamily"],["PROSITE%3APS01169","Ribosomal protein L21 signature"]]},{"id":"UniProt:P0AG59","l":"Small ribosomal subunit protein uS14","na":1,"nb":6,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ANF006477","30S ribosomal protein S14"],["InterPro%3AIPR018271","Small ribosomal subunit protein uS14, conserved site"],["Pfam%3APF00253","Ribosomal protein S14p/S29e"],["PROSITE%3APS00527","Ribosomal protein S14 signature"],["CATH%3A1.10.287.1480","CATH homologous superfamily 1.10.287.1480"]]},{"id":"UniProt:P24500","l":"","na":1,"nb":6,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0030694","bacterial-type flagellum basal body, rod"],["NCBIfam%3ATIGR01396","flagellar basal body rod protein FlgB"],["InterPro%3AIPR019776","Flagellar basal body rod protein, conserved site"],["InterPro%3AIPR001444","Flagellar basal body rod protein, N-terminal"],["Pfam%3APF00460","Flagella basal body rod protein"],["PROSITE%3APS00588","Flagella basal body rod proteins signature"]]},{"id":"UniProt:P35528","l":"","na":1,"nb":6,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0009425","bacterial-type flagellum basal body"],["NCBIfam%3ANF009438","EscR/YscR/HrcR family type III secretion system export apparatus protein"],["NCBIfam%3ATIGR01103","flagellar type III secretion system pore protein FliP"],["Pfam%3APF00813","FliP family"],["PROSITE%3APS01060","Flagella transport protein fliP family signature 1"],["PROSITE%3APS01061","Flagella transport protein fliP family signature 2"]]},{"id":"UniProt:P69776","l":"","na":1,"nb":6,"a":[["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"]],"b":[["GO%3A0043580","periplasmic space organization"],["NCBIfam%3ANF040598","Lpp/OprI family alanine-zipper lipoprotein"],["NCBIfam%3ANF011925","major outer membrane lipoprotein"],["proteintraitsmech%3AMEROPS_CLEAVAGE_A08_001","signal peptidase II cleavage specificity"],["InterPro%3AIPR006817","Lipoprotein leucine-zipper"],["Pfam%3APF04728","Lipoprotein leucine-zipper"]]},{"id":"GO:0000171","l":"ribonuclease MRP activity","na":1,"nb":5,"a":[["ribonucleoprotein/ribonuclease_mrp_complex.html","ribonuclease MRP complex"]],"b":[["ComplexPortal%3ACPX-2629","Ribonuclease MRP complex"],["ComplexPortal%3ACPX-26688","Ribonuclease MRP complex"],["ComplexPortal%3ACPX-2876","Ribonuclease MRP complex"],["ComplexPortal%3ACPX-3284","Ribonuclease MRP complex"],["GO%3A0000171","ribonuclease MRP activity"]]},{"id":"GO:0005630","l":"dityrosine layer of spore wall","na":5,"nb":1,"a":[["spore/ascospore_wall.html","ascospore wall"],["spore/chitosan_layer_of_spore_wall.html","chitosan layer of spore wall"],["spore/dityrosine_layer_of_spore_wall.html","dityrosine layer of spore wall"],["spore/inner_layer_of_spore_wall.html","inner layer of spore wall"],["spore/isp3_layer_of_spore_wall.html","Isp3 layer of spore wall"]],"b":[["GO%3A0005630","dityrosine layer of spore wall"]]},{"id":"GO:0005631","l":"chitosan layer of spore wall","na":5,"nb":1,"a":[["spore/ascospore_wall.html","ascospore wall"],["spore/chitosan_layer_of_spore_wall.html","chitosan layer of spore wall"],["spore/dityrosine_layer_of_spore_wall.html","dityrosine layer of spore wall"],["spore/inner_layer_of_spore_wall.html","inner layer of spore wall"],["spore/isp3_layer_of_spore_wall.html","Isp3 layer of spore wall"]],"b":[["GO%3A0005631","chitosan layer of spore wall"]]},{"id":"GO:0009420","l":"bacterial-type flagellum filament","na":5,"nb":1,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["GO%3A0009420","bacterial-type flagellum filament"]]},{"id":"GO:0016610","l":"nitrogenase complex","na":1,"nb":5,"a":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"]],"b":[["GO%3A0016611","iron-iron nitrogenase complex"],["GO%3A0016612","molybdenum-iron nitrogenase complex"],["GO%3A0016610","nitrogenase complex"],["GO%3A0016613","vanadium-iron nitrogenase complex"],["NCBIfam%3ATIGR01287","nitrogenase iron protein"]]},{"id":"GO:0020009","l":"microneme","na":5,"nb":1,"a":[["membrane_organelle/microneme.html","microneme"],["membrane_organelle/microneme_lumen.html","microneme lumen"],["membrane_organelle/microneme_membrane.html","microneme membrane"],["membrane_organelle/mononeme.html","mononeme"],["other/apical_complex.html","apical complex"]],"b":[["GO%3A0020009","microneme"]]},{"id":"GO:0030075","l":"bacterial thylakoid","na":5,"nb":1,"a":[["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_lumen.html","plasma membrane-derived thylakoid lumen"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"]],"b":[["GO%3A0030075","bacterial thylakoid"]]},{"id":"GO:0031522","l":"cell envelope Sec protein transport complex","na":1,"nb":5,"a":[["secretion_system/secyeg_translocon_complex.html","SecYEG translocon complex"]],"b":[["ComplexPortal%3ACPX-1095","Holo-translocon SecYEG-SecDF-YajC-YidC complex"],["ComplexPortal%3ACPX-1096","Protein-conducting channel SecYEG complex"],["GO%3A0031522","cell envelope Sec protein transport complex"],["NCBIfam%3ATIGR01129","protein translocase subunit SecD"],["NCBIfam%3ATIGR00966","protein translocase subunit SecF"]]},{"id":"GO:0031676","l":"plasma membrane-derived thylakoid membrane","na":5,"nb":1,"a":[["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_lumen.html","plasma membrane-derived thylakoid lumen"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"]],"b":[["GO%3A0031676","plasma membrane-derived thylakoid membrane"]]},{"id":"GO:0033263","l":"CORVET complex","na":1,"nb":5,"a":[["other/corvet_complex.html","CORVET complex"]],"b":[["ComplexPortal%3ACPX-1137","CORVET tethering complex"],["ComplexPortal%3ACPX-1626","CORVET tethering complex"],["ComplexPortal%3ACPX-6213","CORVET tethering complex"],["ComplexPortal%3ACPX-8877","CORVET tethering complex"],["GO%3A0033263","CORVET complex"]]},{"id":"GO:0034982","l":"mitochondrial protein processing","na":1,"nb":5,"a":[["other/mitochondrial_inner_membrane_peptidase_complex.html","mitochondrial inner membrane peptidase complex"]],"b":[["ComplexPortal%3ACPX-10319","m-AAA protease complex, AFG3L2-SPG7 variant"],["ComplexPortal%3ACPX-10318","m-AAA protease complex, AFG3L2 variant"],["GO%3A0034982","mitochondrial protein processing"],["PANTHER%3APTHR21711","MITOCHONDRIAL INNER MEMBRANE PROTEASE"],["PANTHER%3APTHR46041","MITOCHONDRIAL INNER MEMBRANE PROTEASE SUBUNIT 2"]]},{"id":"GO:0035632","l":"mitochondrial prohibitin complex","na":1,"nb":5,"a":[["other/mitochondrial_prohibitin_complex.html","mitochondrial prohibitin complex"]],"b":[["ComplexPortal%3ACPX-1703","Prohibitin complex"],["ComplexPortal%3ACPX-4114","Prohibitin complex"],["ComplexPortal%3ACPX-5741","Prohibitin complex"],["ComplexPortal%3ACPX-5743","Prohibitin complex"],["GO%3A0035632","mitochondrial prohibitin complex"]]},{"id":"GO:0036013","l":"cyanelle outer membrane","na":5,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"]],"b":[["GO%3A0036013","cyanelle outer membrane"]]},{"id":"GO:0036014","l":"cyanelle intermembrane space","na":5,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"]],"b":[["GO%3A0036014","cyanelle intermembrane space"]]},{"id":"GO:0043291","l":"RAVE complex","na":1,"nb":5,"a":[["other/rave_complex.html","RAVE complex"]],"b":[["ComplexPortal%3ACPX-1627","RAVE complex"],["ComplexPortal%3ACPX-25781","RAVE complex"],["ComplexPortal%3ACPX-10301","RAVE complex, DMXL1 variant"],["ComplexPortal%3ACPX-10303","RAVE complex, DMXL2 variant"],["GO%3A0043291","RAVE complex"]]},{"id":"GO:0043684","l":"type IV secretion system complex","na":1,"nb":5,"a":[["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]],"b":[["GO%3A0043684","type IV secretion system complex"],["NCBIfam%3ANF049884","Dot/Icm T4SS effector Ceg23"],["NCBIfam%3ATIGR02788","P-type DNA transfer ATPase VirB11"],["NCBIfam%3ATIGR02791","P-type DNA transfer protein VirB5"],["NCBIfam%3ANF047983","T4SS effector phosphatidylinositol 3-Kinase RisK1"]]},{"id":"GO:0046336","l":"ethanolamine catabolic process","na":1,"nb":5,"a":[["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"]],"b":[["ComplexPortal%3ACPX-2313","Ethanolamine ammonia-lyase complex"],["GO%3A0046336","ethanolamine catabolic process"],["NCBIfam%3ATIGR04502","ethanolamine utilization microcompartment protein EutL"],["NCBIfam%3ATIGR02526","ethanolamine utilization microcompartment shell protein"],["NCBIfam%3ATIGR02528","EutP/PduV family microcompartment system protein"]]},{"id":"GO:0050215","l":"propanediol dehydratase activity","na":1,"nb":5,"a":[["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]],"b":[["EC%3A4.2.1.28","propanediol dehydratase"],["RHEA%3A14569","propane-1,2-diol = propanal + H2O"],["GO%3A0050215","propanediol dehydratase activity"],["MCSA%3A494","propanediol dehydratase"],["proteintraitsmech%3ABIOLIP_FWK","FWK-binding site"]]},{"id":"GO:0071256","l":"translocon complex","na":1,"nb":5,"a":[["other/ssh1_translocon_complex.html","Ssh1 translocon complex"]],"b":[["ComplexPortal%3ACPX-8024","Translocon-associated protein complex"],["ComplexPortal%3ACPX-3055","Translocon complex"],["GO%3A0005784","Sec61 translocon complex"],["GO%3A0071261","Ssh1 translocon complex"],["GO%3A0071256","translocon complex"]]},{"id":"GO:0097593","l":"ventral disc microtubule array","na":5,"nb":1,"a":[["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_dorsal_microribbon.html","ventral disc dorsal microribbon"],["cytoskeleton/ventral_disc_microtubule_array.html","ventral disc microtubule array"],["cytoskeleton/ventral_disc_overlap_zone.html","ventral disc overlap zone"],["cytoskeleton/ventral_disc_supernumerary_microtubule_array.html","ventral disc supernumerary microtubule array"]],"b":[["GO%3A0097593","ventral disc microtubule array"]]},{"id":"GO:1990717","l":"axonemal central bridge","na":5,"nb":1,"a":[["cytoskeleton/axonemal_central_apparatus.html","axonemal central apparatus"],["cytoskeleton/axonemal_central_bridge.html","axonemal central bridge"],["cytoskeleton/axonemal_central_pair.html","axonemal central pair"],["cytoskeleton/c1_axonemal_microtubule.html","C1 axonemal microtubule"],["cytoskeleton/c2_axonemal_microtubule.html","C2 axonemal microtubule"]],"b":[["GO%3A1990717","axonemal central bridge"]]},{"id":"GO:1990719","l":"C1 axonemal microtubule","na":5,"nb":1,"a":[["cytoskeleton/axonemal_central_bridge.html","axonemal central bridge"],["cytoskeleton/axonemal_central_pair.html","axonemal central pair"],["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"],["cytoskeleton/c1_axonemal_microtubule.html","C1 axonemal microtubule"],["cytoskeleton/c2_axonemal_microtubule.html","C2 axonemal microtubule"]],"b":[["GO%3A1990719","C1 axonemal microtubule"]]},{"id":"GO:1990720","l":"C2 axonemal microtubule","na":5,"nb":1,"a":[["cytoskeleton/axonemal_central_bridge.html","axonemal central bridge"],["cytoskeleton/axonemal_central_pair.html","axonemal central pair"],["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"],["cytoskeleton/c1_axonemal_microtubule.html","C1 axonemal microtubule"],["cytoskeleton/c2_axonemal_microtubule.html","C2 axonemal microtubule"]],"b":[["GO%3A1990720","C2 axonemal microtubule"]]},{"id":"InterPro:IPR000090","l":"","na":1,"nb":5,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]],"b":[["Pfam%3APF01706","FliG C-terminal domain"],["PANTHER%3APTHR30534","FLAGELLAR MOTOR SWITCH PROTEIN FLIG"],["Pfam%3APF14841","FliG middle domain"],["Pfam%3APF14842","FliG N-terminal domain"],["PRINTS%3APR00954","Flagellar motor switch protein FliG signature"]]},{"id":"InterPro:IPR045187","l":"","na":1,"nb":5,"a":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]],"b":[["Pfam%3APF00116","Cytochrome C oxidase subunit II, periplasmic domain"],["PANTHER%3APTHR22888","CYTOCHROME C OXIDASE, SUBUNIT II"],["Pfam%3APF02790","Cytochrome C oxidase subunit II, transmembrane domain"],["Pfam%3APF06481","COX Aromatic Rich Motif"],["PROSITE%3APS00078","CO II and nitrous oxide reductase dinuclear copper centers signature"]]},{"id":"UniProt:I6WZG6","l":"","na":1,"nb":5,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]],"b":[["IEDB%3A197918","epitope AARTFKRHIAGRRVV"],["IEDB%3A213387","epitope KPLVRLRVPFTLSRN"],["IEDB%3A218534","epitope RTIFEGYSAASIEGI"],["IEDB%3A219874","epitope TEAAWAEIELEAART"],["Pfam%3APF04454","Encapsulating protein for peroxidase"]]},{"id":"UniProt:I6Y4U9","l":"","na":1,"nb":5,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]],"b":[["IEDB%3A200082","epitope AGSCYVHVQKYVHDM"],["IEDB%3A203626","epitope AVTGGLFFSPTIDFL"],["IEDB%3A205003","epitope DGTERKIVRHNMPFG"],["IEDB%3A211489","epitope HGFRFFDNRDLLGFV"],["IEDB%3A212746","epitope IVRHNMPFGEVGKGE"]]},{"id":"UniProt:P02413","l":"Large ribosomal subunit protein uL15","na":1,"nb":5,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01071","50S ribosomal protein L15"],["InterPro%3AIPR001196","Large ribosomal subunit protein uL15, conserved site"],["Pfam%3APF00828","Ribosomal proteins 50S-L15, 50S-L18e, 60S-L27A"],["PROSITE%3APS00475","Ribosomal protein L15 signature"]]},{"id":"UniProt:P0A7Q6","l":"Large ribosomal subunit protein bL36A","na":1,"nb":5,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01022","50S ribosomal protein L36"],["Pfam%3APF00444","Ribosomal protein L36"],["InterPro%3AIPR035977","Large ribosomal subunit protein bL36 superfamily"],["PROSITE%3APS00828","Ribosomal protein L36 signature"]]},{"id":"UniProt:P0A7X3","l":"Small ribosomal subunit protein uS9","na":1,"nb":5,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ANF001099","30S ribosomal protein S9"],["InterPro%3AIPR020574","Small ribosomal subunit protein uS9, conserved site"],["Pfam%3APF00380","Ribosomal protein S9/S16"],["PROSITE%3APS00360","Ribosomal protein S9 signature"]]},{"id":"UniProt:P24501","l":"","na":1,"nb":5,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0030694","bacterial-type flagellum basal body, rod"],["NCBIfam%3ATIGR01395","flagellar basal body rod protein FlgC"],["InterPro%3AIPR019776","Flagellar basal body rod protein, conserved site"],["InterPro%3AIPR010930","Flagellar basal-body/hook protein, C-terminal domain"],["InterPro%3AIPR001444","Flagellar basal body rod protein, N-terminal"]]},{"id":"UniProt:P35538","l":"","na":1,"nb":5,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["NCBIfam%3ATIGR00328","flagellar biosynthesis protein FlhB"],["Pfam%3APF01312","FlhB HrpN YscU SpaS Family"],["InterPro%3AIPR029025","Type III secretion system substrate exporter, C-terminal"],["CATH%3A6.10.250.2080","CATH homologous superfamily 6.10.250.2080"],["CATH%3A3.40.1690.10","secretion proteins EscU"]]},{"id":"UniProt:P39063","l":"","na":1,"nb":5,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["NCBIfam%3ANF005383","flagellar motor protein MotP"],["InterPro%3AIPR000540","Flagellar motor protein MotA, conserved site"],["InterPro%3AIPR002898","MotA/TolQ/ExbB proton channel"],["Pfam%3APF01618","MotA/TolQ/ExbB proton channel family"],["PROSITE%3APS01307","Flagellar motor protein motA family signature"]]},{"id":"UniProt:P60438","l":"Large ribosomal subunit protein uL3","na":1,"nb":5,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR03625","50S ribosomal protein L3"],["InterPro%3AIPR019926","Large ribosomal subunit protein uL3, conserved site"],["Pfam%3APF00297","Ribosomal protein L3"],["CATH%3A3.30.160.810","CATH homologous superfamily 3.30.160.810"]]},{"id":"GO:0000328","l":"fungal-type vacuole lumen","na":4,"nb":1,"a":[["membrane_organelle/fungal_type_vacuole.html","fungal-type vacuole"],["membrane_organelle/fungal_type_vacuole_lumen.html","fungal-type vacuole lumen"],["membrane_organelle/fungal_type_vacuole_membrane.html","fungal-type vacuole membrane"],["membrane_organelle/vacuole.html","vacuole"]],"b":[["GO%3A0000328","fungal-type vacuole lumen"]]},{"id":"GO:0000331","l":"contractile vacuole","na":4,"nb":1,"a":[["membrane_organelle/contractile_vacuolar_membrane.html","contractile vacuolar membrane"],["membrane_organelle/contractile_vacuole.html","contractile vacuole"],["membrane_organelle/contractile_vacuole_complex.html","contractile vacuole complex"],["membrane_organelle/contractile_vacuole_lumen.html","contractile vacuole lumen"]],"b":[["GO%3A0000331","contractile vacuole"]]},{"id":"GO:0000935","l":"division septum","na":1,"nb":4,"a":[["envelope/division_septum.html","division septum"]],"b":[["ComplexPortal%3ACPX-4602","FtsEX ABC cell division complex"],["GO%3A0000935","division septum"],["GO%3A0000936","primary cell septum"],["GO%3A0051077","secondary cell septum"]]},{"id":"GO:0001535","l":"radial spoke head","na":1,"nb":4,"a":[["cytoskeleton/radial_spoke.html","radial spoke"]],"b":[["GO%3A0120336","radial spoke head 1"],["GO%3A0120337","radial spoke head 2"],["GO%3A0120338","radial spoke head 3"],["GO%3A0001535","radial spoke head"]]},{"id":"GO:0005641","l":"nuclear envelope lumen","na":4,"nb":1,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nuclear_envelope_lumen.html","nuclear envelope lumen"],["membrane_organelle/nuclear_inner_membrane.html","nuclear inner membrane"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"]],"b":[["GO%3A0005641","nuclear envelope lumen"]]},{"id":"GO:0005832","l":"chaperonin-containing T-complex","na":1,"nb":4,"a":[["other/chaperonin_containing_t_complex.html","chaperonin-containing T-complex"]],"b":[["ComplexPortal%3ACPX-2156","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-2772","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-6030","Chaperonin-containing T-complex"],["GO%3A0005832","chaperonin-containing T-complex"]]},{"id":"GO:0005933","l":"cellular bud","na":4,"nb":1,"a":[["envelope/cellular_bud_membrane.html","cellular bud membrane"],["other/cellular_bud.html","cellular bud"],["other/cellular_bud_neck.html","cellular bud neck"],["other/cellular_bud_tip.html","cellular bud tip"]],"b":[["GO%3A0005933","cellular bud"]]},{"id":"GO:0006909","l":"phagocytosis","na":1,"nb":4,"a":[["membrane_organelle/phagocytic_vesicle.html","phagocytic vesicle"]],"b":[["GO%3A0043277","apoptotic cell clearance"],["GO%3A0006909","phagocytosis"],["Reactome%3AR-HSA-9664417","Leishmania phagocytosis"],["InterPro%3AIPR034889","Neutrophil cytosol factor 2, SH3 domain"]]},{"id":"GO:0009543","l":"chloroplast thylakoid lumen","na":4,"nb":1,"a":[["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"],["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"],["membrane_organelle/chloroplast_thylakoid_lumen.html","chloroplast thylakoid lumen"],["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"]],"b":[["GO%3A0009543","chloroplast thylakoid lumen"]]},{"id":"GO:0009842","l":"cyanelle","na":4,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"]],"b":[["GO%3A0009842","cyanelle"]]},{"id":"GO:0010006","l":"Toc complex","na":4,"nb":1,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["other/tic_complex.html","Tic complex"],["other/toc_complex.html","Toc complex"]],"b":[["GO%3A0010006","Toc complex"]]},{"id":"GO:0020031","l":"polar ring of apical complex","na":4,"nb":1,"a":[["cytoskeleton/intraconoid_microtubule.html","intraconoid microtubule"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["cytoskeleton/subpellicular_microtubule.html","subpellicular microtubule"],["other/apical_complex.html","apical complex"]],"b":[["GO%3A0020031","polar ring of apical complex"]]},{"id":"GO:0030094","l":"plasma membrane-derived photosystem I","na":4,"nb":1,"a":[["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["GO%3A0030094","plasma membrane-derived photosystem I"]]},{"id":"GO:0030115","l":"S-layer","na":1,"nb":4,"a":[["envelope/s_layer.html","S-layer"]],"b":[["GO%3A0030115","S-layer"],["NCBIfam%3ANF041335","ArtA-dependent S-layer glycoprotein"],["NCBIfam%3ANF053619","BT1927 family outer membrane S-layer protein"],["NCBIfam%3ANF041073","S-layer protein SlaA"]]},{"id":"GO:0030476","l":"ascospore wall assembly","na":1,"nb":4,"a":[["spore/ascospore_wall.html","ascospore wall"]],"b":[["ComplexPortal%3ACPX-1812","1,3-beta-D-glucan synthase complex, FKS1-RHO1 variant"],["ComplexPortal%3ACPX-1813","1,3-beta-D-glucan synthase complex, FKS2-RHO1 variant"],["ComplexPortal%3ACPX-3028","1,3-beta-D-glucan synthase complex, FKS3-RHO1 variant"],["GO%3A0030476","ascospore wall assembly"]]},{"id":"GO:0030678","l":"mitochondrial ribonuclease P complex","na":1,"nb":4,"a":[["ribonucleoprotein/dimeric_ribonuclease_p_complex.html","dimeric ribonuclease P complex"]],"b":[["ComplexPortal%3ACPX-1294","Mitochondrial ribonuclease P complex"],["ComplexPortal%3ACPX-2632","Mitochondrial ribonuclease P complex"],["ComplexPortal%3ACPX-6155","Mitochondrial ribonuclease P complex"],["GO%3A0030678","mitochondrial ribonuclease P complex"]]},{"id":"GO:0031429","l":"box H/ACA snoRNP complex","na":1,"nb":4,"a":[["other/nucleolus.html","nucleolus"]],"b":[["ComplexPortal%3ACPX-26592","Box H/ACA ribonucleoprotein complex"],["ComplexPortal%3ACPX-2675","Box H/ACA ribonucleoprotein complex"],["ComplexPortal%3ACPX-737","Box H/ACA ribonucleoprotein complex"],["GO%3A0031429","box H/ACA snoRNP complex"]]},{"id":"GO:0031897","l":"Tic complex","na":4,"nb":1,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["other/tic_complex.html","Tic complex"],["other/toc_complex.html","Toc complex"]],"b":[["GO%3A0031897","Tic complex"]]},{"id":"GO:0031972","l":"chloroplast intermembrane space","na":4,"nb":1,"a":[["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_inner_membrane.html","chloroplast inner membrane"],["membrane_organelle/chloroplast_intermembrane_space.html","chloroplast intermembrane space"],["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"]],"b":[["GO%3A0031972","chloroplast intermembrane space"]]},{"id":"GO:0031977","l":"thylakoid lumen","na":1,"nb":4,"a":[["membrane_organelle/plastid_thylakoid_lumen.html","plastid thylakoid lumen"]],"b":[["GO%3A0070117","organellar chromatophore thylakoid lumen"],["GO%3A0031979","plasma membrane-derived thylakoid lumen"],["GO%3A0031978","plastid thylakoid lumen"],["GO%3A0031977","thylakoid lumen"]]},{"id":"GO:0032865","l":"ERMES complex","na":1,"nb":4,"a":[["other/ermes_complex.html","ERMES complex"]],"b":[["ComplexPortal%3ACPX-3196","ERMES complex"],["GO%3A0032865","ERMES complex"],["Pfam%3APF26544","Mitochondrial distribution and morphology protein 12"],["Pfam%3APF12519","Mitochondrial distribution and morphology protein 10"]]},{"id":"GO:0033962","l":"P-body assembly","na":1,"nb":4,"a":[["ribonucleoprotein/p_body.html","P-body"]],"b":[["GO%3A0033962","P-body assembly"],["PANTHER%3APTHR13612","ENHANCER OF MRNA-DECAPPING PROTEIN 3"],["PANTHER%3APTHR21551","TOPOISOMERASE II-ASSOCIATED PROTEIN PAT1"],["PANTHER%3APTHR13110","U6 SNRNA-ASSOCIATED SM-LIKE PROTEIN LSM3"]]},{"id":"GO:0034060","l":"cyanelle stroma","na":4,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"]],"b":[["GO%3A0034060","cyanelle stroma"]]},{"id":"GO:0036156","l":"inner dynein arm","na":4,"nb":1,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_dynein_complex.html","axonemal dynein complex"],["cytoskeleton/axoneme.html","axoneme"],["cytoskeleton/inner_dynein_arm.html","inner dynein arm"]],"b":[["GO%3A0036156","inner dynein arm"]]},{"id":"GO:0036157","l":"outer dynein arm","na":4,"nb":1,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_dynein_complex.html","axonemal dynein complex"],["cytoskeleton/axoneme.html","axoneme"],["cytoskeleton/outer_dynein_arm.html","outer dynein arm"]],"b":[["GO%3A0036157","outer dynein arm"]]},{"id":"GO:0042720","l":"mitochondrial inner membrane peptidase complex","na":1,"nb":4,"a":[["other/mitochondrial_inner_membrane_peptidase_complex.html","mitochondrial inner membrane peptidase complex"]],"b":[["ComplexPortal%3ACPX-1892","Mitochondrial inner membrane peptidase complex"],["ComplexPortal%3ACPX-6244","Mitochondrial inner membrane peptidase complex"],["GO%3A0042720","mitochondrial inner membrane peptidase complex"],["Pfam%3APF11093","Mitochondrial export protein Som1"]]},{"id":"GO:0042721","l":"TIM22 mitochondrial import inner membrane insertion complex","na":1,"nb":4,"a":[["other/tim22_mitochondrial_import_inner_membrane_insertion_complex.html","TIM22 mitochondrial import inner membrane insertion complex"]],"b":[["ComplexPortal%3ACPX-1629","TIM22 mitochondrial inner membrane twin-pore carrier translocase complex"],["ComplexPortal%3ACPX-6124","TIM22 mitochondrial inner membrane twin-pore carrier translocase complex"],["GO%3A0042721","TIM22 mitochondrial import inner membrane insertion complex"],["Pfam%3APF10171","Translocase of the Inner Mitochondrial membrane 29"]]},{"id":"GO:0043107","l":"type IV pilus-dependent motility","na":1,"nb":4,"a":[["appendage/type_iv_pilus.html","type IV pilus"]],"b":[["GO%3A0043107","type IV pilus-dependent motility"],["NCBIfam%3ATIGR01420","PilT/PilU family type 4a pilus ATPase"],["NCBIfam%3ANF016253","type 4a pilus biogenesis protein PilO"],["Pfam%3APF04350","Type IVa pilus alignment subcomplex PilO C-terminal domain"]]},{"id":"GO:0044099","l":"polar tube","na":4,"nb":1,"a":[["membrane_organelle/microsporidian_posterior_vacuole.html","microsporidian posterior vacuole"],["membrane_organelle/polaroplast.html","polaroplast"],["spore/polar_tube.html","polar tube"],["spore/polar_tube_anchoring_disc.html","polar tube anchoring disc"]],"b":[["GO%3A0044099","polar tube"]]},{"id":"GO:0044853","l":"plasma membrane raft","na":1,"nb":4,"a":[["envelope/eisosome_membrane_domain_mcc.html","eisosome membrane domain/MCC"]],"b":[["GO%3A0005901","caveola"],["GO%3A0090512","eisosome membrane domain/MCC"],["GO%3A0044853","plasma membrane raft"],["PANTHER%3APTHR16529","CD177 ANTIGEN"]]},{"id":"GO:0060285","l":"cilium-dependent cell motility","na":1,"nb":4,"a":[["appendage/cilium.html","cilium"]],"b":[["GO%3A0060285","cilium-dependent cell motility"],["GO%3A0030317","flagellated sperm motility"],["PANTHER%3APTHR18962","COILED-COIL DOMAIN-CONTAINING PROTEIN 39"],["PANTHER%3APTHR21625","NYD-SP28 PROTEIN"]]},{"id":"GO:0070113","l":"organellar chromatophore inner membrane","na":4,"nb":1,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_inner_membrane.html","organellar chromatophore inner membrane"],["membrane_organelle/organellar_chromatophore_intermembrane_space.html","organellar chromatophore intermembrane space"],["membrane_organelle/organellar_chromatophore_membrane.html","organellar chromatophore membrane"]],"b":[["GO%3A0070113","organellar chromatophore inner membrane"]]},{"id":"GO:0070114","l":"organellar chromatophore outer membrane","na":4,"nb":1,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_intermembrane_space.html","organellar chromatophore intermembrane space"],["membrane_organelle/organellar_chromatophore_membrane.html","organellar chromatophore membrane"],["membrane_organelle/organellar_chromatophore_outer_membrane.html","organellar chromatophore outer membrane"]],"b":[["GO%3A0070114","organellar chromatophore outer membrane"]]},{"id":"GO:0070116","l":"organellar chromatophore thylakoid","na":4,"nb":1,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"],["membrane_organelle/organellar_chromatophore_thylakoid_lumen.html","organellar chromatophore thylakoid lumen"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"]],"b":[["GO%3A0070116","organellar chromatophore thylakoid"]]},{"id":"GO:0070117","l":"organellar chromatophore thylakoid lumen","na":4,"nb":1,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"],["membrane_organelle/organellar_chromatophore_thylakoid_lumen.html","organellar chromatophore thylakoid lumen"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"]],"b":[["GO%3A0070117","organellar chromatophore thylakoid lumen"]]},{"id":"GO:0070939","l":"Dsl1/NZR complex","na":1,"nb":4,"a":[["other/dsl1_nzr_complex.html","Dsl1/NZR complex"]],"b":[["ComplexPortal%3ACPX-1786","Dsl1 tethering complex"],["ComplexPortal%3ACPX-6201","NRZ tethering complex"],["GO%3A0070939","Dsl1/NZR complex"],["Pfam%3APF04437","RINT-1/TIP-1 family"]]},{"id":"GO:0071020","l":"post-spliceosomal complex","na":1,"nb":4,"a":[["ribonucleoprotein/u12_type_post_spliceosomal_complex.html","U12-type post-spliceosomal complex"]],"b":[["ComplexPortal%3ACPX-26479","Major Post-catalytic P Spliceosome complex"],["GO%3A0071020","post-spliceosomal complex"],["GO%3A0071022","U12-type post-spliceosomal complex"],["GO%3A0071021","U2-type post-spliceosomal complex"]]},{"id":"GO:0090642","l":"microsporidian-type exospore","na":4,"nb":1,"a":[["spore/exosporium.html","exosporium"],["spore/microsporidian_type_endospore.html","microsporidian-type endospore"],["spore/microsporidian_type_exospore.html","microsporidian-type exospore"],["spore/spore_wall.html","spore wall"]],"b":[["GO%3A0090642","microsporidian-type exospore"]]},{"id":"GO:0097594","l":"ventral disc dorsal microribbon","na":4,"nb":1,"a":[["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_crossbridge.html","ventral disc crossbridge"],["cytoskeleton/ventral_disc_dorsal_microribbon.html","ventral disc dorsal microribbon"],["cytoskeleton/ventral_disc_microtubule_array.html","ventral disc microtubule array"]],"b":[["GO%3A0097594","ventral disc dorsal microribbon"]]},{"id":"GO:0120100","l":"bacterial-type flagellum motor","na":4,"nb":1,"a":[["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"],["appendage/periplasmic_flagellum.html","periplasmic flagellum"]],"b":[["GO%3A0120100","bacterial-type flagellum motor"]]},{"id":"GO:0160110","l":"axonemal microtubule doublet inner sheath","na":4,"nb":1,"a":[["cytoskeleton/axonemal_a_tubule_inner_sheath.html","axonemal A tubule inner sheath"],["cytoskeleton/axonemal_b_tubule_inner_sheath.html","axonemal B tubule inner sheath"],["cytoskeleton/axonemal_doublet_microtubule.html","axonemal doublet microtubule"],["cytoskeleton/axonemal_microtubule_doublet_inner_sheath.html","axonemal microtubule doublet inner sheath"]],"b":[["GO%3A0160110","axonemal microtubule doublet inner sheath"]]},{"id":"GO:0160113","l":"axonemal microtubule doublet inner junction","na":4,"nb":1,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_doublet_microtubule.html","axonemal doublet microtubule"],["cytoskeleton/axonemal_microtubule_doublet_inner_junction.html","axonemal microtubule doublet inner junction"],["cytoskeleton/b_axonemal_microtubule.html","B axonemal microtubule"]],"b":[["GO%3A0160113","axonemal microtubule doublet inner junction"]]},{"id":"GO:0160114","l":"axonemal microtubule doublet outer junction","na":4,"nb":1,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_doublet_microtubule.html","axonemal doublet microtubule"],["cytoskeleton/axonemal_microtubule_doublet_outer_junction.html","axonemal microtubule doublet outer junction"],["cytoskeleton/b_axonemal_microtubule.html","B axonemal microtubule"]],"b":[["GO%3A0160114","axonemal microtubule doublet outer junction"]]},{"id":"InterPro:IPR000100","l":"","na":1,"nb":4,"a":[["ribonucleoprotein/dimeric_ribonuclease_p_complex.html","dimeric ribonuclease P complex"]],"b":[["HAMAP%3AMF_00227","Ribonuclease P protein component [rnpA]"],["PANTHER%3APTHR33992","RIBONUCLEASE P PROTEIN COMPONENT"],["Pfam%3APF00825","Ribonuclease P"],["PROSITE%3APS00648","Bacterial ribonuclease P protein component signature"]]},{"id":"InterPro:IPR000527","l":"","na":1,"nb":4,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"]],"b":[["HAMAP%3AMF_00415","Flagellar L-ring protein [flgH]"],["PANTHER%3APTHR34933","FLAGELLAR L-RING PROTEIN"],["Pfam%3APF02107","Flagellar L-ring protein"],["PRINTS%3APR01008","Flagellar L-ring protein signature"]]},{"id":"InterPro:IPR001782","l":"","na":1,"nb":4,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]],"b":[["HAMAP%3AMF_00416","Flagellar P-ring protein [flgI]"],["PANTHER%3APTHR30381","FLAGELLAR P-RING PERIPLASMIC PROTEIN FLGI"],["Pfam%3APF02119","Flagellar P-ring protein"],["PRINTS%3APR01010","Flagellar P-ring protein signature"]]},{"id":"InterPro:IPR005837","l":"","na":1,"nb":4,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF00813","FliP family"],["PRINTS%3APR00951","Flagellar biosynthetic protein FliP signature"],["PROSITE%3APS01060","Flagella transport protein fliP family signature 1"],["PROSITE%3APS01061","Flagella transport protein fliP family signature 2"]]},{"id":"InterPro:IPR011557","l":"","na":1,"nb":4,"a":[["other/dna_gyrase_complex.html","DNA gyrase complex"]],"b":[["Pfam%3APF21249","GyrB, hook"],["Pfam%3APF18053","DNA gyrase B subunit insert domain"],["HAMAP%3AMF_01898","DNA gyrase subunit B [gyrB]"],["Pfam%3APF00986","DNA gyrase B subunit, carboxyl terminus"]]},{"id":"InterPro:IPR040026","l":"","na":1,"nb":4,"a":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"]],"b":[["PANTHER%3APTHR30288","FLAGELLAR CAP/ASSEMBLY PROTEIN FLID"],["Pfam%3APF07195","Flagellar hook-associated protein 2 C-terminus"],["Pfam%3APF02465","Flagellar hook-associated protein 2 N-terminus"],["Pfam%3APF07196","Flagellin hook IN motif"]]},{"id":"UniProt:P0A7N4","l":"Large ribosomal subunit protein bL32","na":1,"nb":4,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01031","50S ribosomal protein L32"],["Pfam%3APF01783","Ribosomal L32p protein family"],["InterPro%3AIPR011332","Zinc-binding ribosomal protein"]]},{"id":"UniProt:P0A7V0","l":"Small ribosomal subunit protein uS2","na":1,"nb":4,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR01011","30S ribosomal protein S2"],["CDD%3Acd01425","RPS2"],["CATH%3A1.10.287.610","Helix hairpin bin"]]},{"id":"UniProt:P0ABH4","l":"","na":1,"nb":4,"a":[["division_machinery/elongasome.html","elongasome"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["NCBIfam%3ANF008282","rod shape-determining protein MreD"],["NCBIfam%3ATIGR03426","rod shape-determining protein MreD"],["Pfam%3APF04093","rod shape-determining protein MreD"]]},{"id":"UniProt:P0C2S5","l":"","na":1,"nb":4,"a":[["other/cellulosome.html","cellulosome"]],"b":[["EC%3A3.2.1.176","cellulose 1,4-beta-cellobiosidase (reducing end)"],["Pfam%3APF00404","Dockerin type I domain"],["PROSITE%3APS00448","Clostridium cellulosome enzymes repeated domain signature"],["Pfam%3APF02011","Glycosyl hydrolase family 48"]]},{"id":"UniProt:Q1PX48","l":"","na":1,"nb":4,"a":[["membrane_organelle/anammoxosome.html","anammoxosome"]],"b":[["EC%3A1.7.2.9","hydroxylamine oxidase"],["RHEA%3A45036","hydroxylamine + 3 Fe(III)-[cytochrome c] = nitric oxide + 3 Fe(II)-[cytochrome c] + 3 H(+)"],["Pfam%3APF22142","Hydroxylamine oxidoreductase, C-terminal domain"],["proteintraitsmech%3ABIOLIP_HG1","HG1-binding site"]]},{"id":"GO:0000002","l":"","na":1,"nb":3,"a":[["nucleoid/mitochondrial_nucleoid.html","mitochondrial nucleoid"]],"b":[["PANTHER%3APTHR45829","MITOCHONDRIAL CARRIER PROTEIN RIM2"],["PANTHER%3APTHR32198","MITOCHONDRIAL ESCAPE PROTEIN 2"],["PANTHER%3APTHR31404","MITOCHONDRIAL GENOME MAINTENANCE PROTEIN MGM101"]]},{"id":"GO:0005632","l":"inner layer of spore wall","na":3,"nb":1,"a":[["spore/ascospore_wall.html","ascospore wall"],["spore/chitosan_layer_of_spore_wall.html","chitosan layer of spore wall"],["spore/inner_layer_of_spore_wall.html","inner layer of spore wall"]],"b":[["GO%3A0005632","inner layer of spore wall"]]},{"id":"GO:0005796","l":"Golgi lumen","na":1,"nb":3,"a":[["membrane_organelle/golgi_lumen.html","Golgi lumen"]],"b":[["GO%3A0005796","Golgi lumen"],["GO%3A0034469","Golgi stack lumen"],["GO%3A0098564","trans-Golgi network transport vesicle lumen"]]},{"id":"GO:0005826","l":"actomyosin contractile ring","na":1,"nb":3,"a":[["cytoskeleton/actomyosin_contractile_ring.html","actomyosin contractile ring"]],"b":[["GO%3A0005826","actomyosin contractile ring"],["GO%3A0110086","meiotic actomyosin contractile ring"],["GO%3A0110085","mitotic actomyosin contractile ring"]]},{"id":"GO:0009290","l":"DNA import into cell involved in transformation","na":1,"nb":3,"a":[["appendage/type_iv_pilus.html","type IV pilus"]],"b":[["GO%3A0009290","DNA import into cell involved in transformation"],["NCBIfam%3ANF041796","DNA import protein CedA"],["NCBIfam%3ATIGR00361","DNA internalization-related competence protein ComEC/Rec2"]]},{"id":"GO:0009422","l":"bacterial-type flagellum hook-filament junction","na":3,"nb":1,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["GO%3A0009422","bacterial-type flagellum hook-filament junction"]]},{"id":"GO:0009429","l":"bacterial-type flagellum basal body, proximal rod","na":3,"nb":1,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"]],"b":[["GO%3A0009429","bacterial-type flagellum basal body, proximal rod"]]},{"id":"GO:0009514","l":"glyoxysome","na":3,"nb":1,"a":[["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysomal_membrane.html","glyoxysomal membrane"],["membrane_organelle/glyoxysome.html","glyoxysome"]],"b":[["GO%3A0009514","glyoxysome"]]},{"id":"GO:0012510","l":"trans-Golgi network transport vesicle membrane","na":3,"nb":1,"a":[["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"],["membrane_organelle/trans_golgi_network_transport_vesicle_membrane.html","trans-Golgi network transport vesicle membrane"],["other/clathrin_coat_of_trans_golgi_network_vesicle.html","clathrin coat of trans-Golgi network vesicle"]],"b":[["GO%3A0012510","trans-Golgi network transport vesicle membrane"]]},{"id":"GO:0020010","l":"conoid","na":3,"nb":1,"a":[["cytoskeleton/conoid.html","conoid"],["cytoskeleton/intraconoid_microtubule.html","intraconoid microtubule"],["other/apical_complex.html","apical complex"]],"b":[["GO%3A0020010","conoid"]]},{"id":"GO:0020015","l":"glycosome","na":3,"nb":1,"a":[["membrane_organelle/glycosome.html","glycosome"],["membrane_organelle/glycosome_lumen.html","glycosome lumen"],["membrane_organelle/glycosome_membrane.html","glycosome membrane"]],"b":[["GO%3A0020015","glycosome"]]},{"id":"GO:0020026","l":"apicomplexan dense granule","na":3,"nb":1,"a":[["membrane_organelle/apicomplexan_dense_granule.html","apicomplexan dense granule"],["membrane_organelle/apicomplexan_dense_granule_membrane.html","apicomplexan dense granule membrane"],["membrane_organelle/mononeme.html","mononeme"]],"b":[["GO%3A0020026","apicomplexan dense granule"]]},{"id":"GO:0030061","l":"mitochondrial crista","na":3,"nb":1,"a":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"],["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"]],"b":[["GO%3A0030061","mitochondrial crista"]]},{"id":"GO:0030124","l":"AP-4 adaptor complex","na":1,"nb":3,"a":[["other/ap_4_adaptor_complex.html","AP-4 adaptor complex"]],"b":[["ComplexPortal%3ACPX-5151","AP-4 Adaptor complex"],["ComplexPortal%3ACPX-5154","AP-4 Adaptor complex"],["GO%3A0030124","AP-4 adaptor complex"]]},{"id":"GO:0030256","l":"type I protein secretion system complex","na":1,"nb":3,"a":[["secretion_system/type_i_protein_secretion_system_complex.html","type I protein secretion system complex"]],"b":[["GO%3A0030256","type I protein secretion system complex"],["NCBIfam%3ATIGR01842","type I secretion system permease/ATPase"],["NCBIfam%3ATIGR01846","type I secretion system permease/ATPase"]]},{"id":"GO:0030681","l":"multimeric ribonuclease P complex","na":1,"nb":3,"a":[["ribonucleoprotein/dimeric_ribonuclease_p_complex.html","dimeric ribonuclease P complex"]],"b":[["GO%3A0030679","cyanelle ribonuclease P complex"],["GO%3A0030681","multimeric ribonuclease P complex"],["GO%3A0005655","nucleolar ribonuclease P complex"]]},{"id":"GO:0030874","l":"nucleolar chromatin","na":1,"nb":3,"a":[["other/nucleolus.html","nucleolus"]],"b":[["GO%3A0030874","nucleolar chromatin"],["GO%3A0097424","nucleolus-associated heterochromatin"],["GO%3A0005731","nucleolus organizer region"]]},{"id":"GO:0031164","l":"contractile vacuolar membrane","na":3,"nb":1,"a":[["membrane_organelle/contractile_vacuolar_membrane.html","contractile vacuolar membrane"],["membrane_organelle/contractile_vacuole.html","contractile vacuole"],["membrane_organelle/contractile_vacuole_lumen.html","contractile vacuole lumen"]],"b":[["GO%3A0031164","contractile vacuolar membrane"]]},{"id":"GO:0031321","l":"ascospore-type prospore assembly","na":1,"nb":3,"a":[["spore/prospore_membrane.html","prospore membrane"]],"b":[["ComplexPortal%3ACPX-5464","Vesicular SNARE complex SSO1-SPO20-SNC1"],["ComplexPortal%3ACPX-5466","Vesicular SNARE complex SSO1-SPO20-SNC2"],["GO%3A0031321","ascospore-type prospore assembly"]]},{"id":"GO:0031908","l":"glyoxysomal lumen","na":3,"nb":1,"a":[["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysomal_membrane.html","glyoxysomal membrane"],["membrane_organelle/glyoxysome.html","glyoxysome"]],"b":[["GO%3A0031908","glyoxysomal lumen"]]},{"id":"GO:0031979","l":"plasma membrane-derived thylakoid lumen","na":3,"nb":1,"a":[["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_lumen.html","plasma membrane-derived thylakoid lumen"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"]],"b":[["GO%3A0031979","plasma membrane-derived thylakoid lumen"]]},{"id":"GO:0031983","l":"vesicle lumen","na":1,"nb":3,"a":[["membrane_organelle/cytoplasmic_vesicle_lumen.html","cytoplasmic vesicle lumen"]],"b":[["GO%3A0060205","cytoplasmic vesicle lumen"],["GO%3A0097489","multivesicular body, internal vesicle lumen"],["GO%3A0031983","vesicle lumen"]]},{"id":"GO:0032047","l":"mitosome","na":3,"nb":1,"a":[["membrane_organelle/mitosome.html","mitosome"],["membrane_organelle/mitosome_envelope.html","mitosome envelope"],["membrane_organelle/mitosome_matrix.html","mitosome matrix"]],"b":[["GO%3A0032047","mitosome"]]},{"id":"GO:0032126","l":"eisosome","na":3,"nb":1,"a":[["cytoskeleton/eisosome_filament.html","eisosome filament"],["envelope/eisosome_membrane_domain_mcc.html","eisosome membrane domain/MCC"],["other/eisosome.html","eisosome"]],"b":[["GO%3A0032126","eisosome"]]},{"id":"GO:0033016","l":"rhoptry membrane","na":3,"nb":1,"a":[["membrane_organelle/rhoptry.html","rhoptry"],["membrane_organelle/rhoptry_lumen.html","rhoptry lumen"],["membrane_organelle/rhoptry_membrane.html","rhoptry membrane"]],"b":[["GO%3A0033016","rhoptry membrane"]]},{"id":"GO:0033107","l":"Cvt vesicle","na":3,"nb":1,"a":[["membrane_organelle/cvt_vesicle.html","Cvt vesicle"],["membrane_organelle/cvt_vesicle_lumen.html","Cvt vesicle lumen"],["membrane_organelle/cvt_vesicle_membrane.html","Cvt vesicle membrane"]],"b":[["GO%3A0033107","Cvt vesicle"]]},{"id":"GO:0033110","l":"Cvt vesicle membrane","na":3,"nb":1,"a":[["membrane_organelle/cvt_vesicle.html","Cvt vesicle"],["membrane_organelle/cvt_vesicle_lumen.html","Cvt vesicle lumen"],["membrane_organelle/cvt_vesicle_membrane.html","Cvt vesicle membrane"]],"b":[["GO%3A0033110","Cvt vesicle membrane"]]},{"id":"GO:0033117","l":"esterosome","na":3,"nb":1,"a":[["membrane_organelle/esterosome.html","esterosome"],["membrane_organelle/esterosome_lumen.html","esterosome lumen"],["membrane_organelle/esterosome_membrane.html","esterosome membrane"]],"b":[["GO%3A0033117","esterosome"]]},{"id":"GO:0033118","l":"esterosome membrane","na":3,"nb":1,"a":[["membrane_organelle/esterosome.html","esterosome"],["membrane_organelle/esterosome_lumen.html","esterosome lumen"],["membrane_organelle/esterosome_membrane.html","esterosome membrane"]],"b":[["GO%3A0033118","esterosome membrane"]]},{"id":"GO:0033163","l":"microneme membrane","na":3,"nb":1,"a":[["membrane_organelle/microneme.html","microneme"],["membrane_organelle/microneme_lumen.html","microneme lumen"],["membrane_organelle/microneme_membrane.html","microneme membrane"]],"b":[["GO%3A0033163","microneme membrane"]]},{"id":"GO:0033281","l":"TAT protein transport complex","na":1,"nb":3,"a":[["secretion_system/tat_protein_transport_complex.html","TAT protein transport complex"]],"b":[["ComplexPortal%3ACPX-3445","Twin-arginine translocation complex"],["GO%3A0033281","TAT protein transport complex"],["NCBIfam%3ATIGR01912","Sec-independent protein translocase TatC"]]},{"id":"GO:0034044","l":"exomer complex","na":1,"nb":3,"a":[["other/exomer_complex.html","exomer complex"]],"b":[["ComplexPortal%3ACPX-1719","Exomer complex"],["ComplexPortal%3ACPX-26504","Exomer complex"],["GO%3A0034044","exomer complex"]]},{"id":"GO:0034423","l":"autophagosome lumen","na":3,"nb":1,"a":[["membrane_organelle/autophagosome.html","autophagosome"],["membrane_organelle/autophagosome_lumen.html","autophagosome lumen"],["membrane_organelle/autophagosome_membrane.html","autophagosome membrane"]],"b":[["GO%3A0034423","autophagosome lumen"]]},{"id":"GO:0034430","l":"monolayer-surrounded lipid storage body outer lipid monolayer","na":3,"nb":1,"a":[["inclusion/lipid_droplet.html","lipid droplet"],["inclusion/monolayer_surrounded_lipid_storage_body_outer_lipid_monolayer.html","monolayer-surrounded lipid storage body outer lipid monolayer"],["inclusion/plastoglobule.html","plastoglobule"]],"b":[["GO%3A0034430","monolayer-surrounded lipid storage body outer lipid monolayer"]]},{"id":"GO:0034467","l":"esterosome lumen","na":3,"nb":1,"a":[["membrane_organelle/esterosome.html","esterosome"],["membrane_organelle/esterosome_lumen.html","esterosome lumen"],["membrane_organelle/esterosome_membrane.html","esterosome membrane"]],"b":[["GO%3A0034467","esterosome lumen"]]},{"id":"GO:0034468","l":"glycosome lumen","na":3,"nb":1,"a":[["membrane_organelle/glycosome.html","glycosome"],["membrane_organelle/glycosome_lumen.html","glycosome lumen"],["membrane_organelle/glycosome_membrane.html","glycosome membrane"]],"b":[["GO%3A0034468","glycosome lumen"]]},{"id":"GO:0034492","l":"hydrogenosome lumen","na":3,"nb":1,"a":[["membrane_organelle/hydrogenosomal_membrane.html","hydrogenosomal membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/hydrogenosome_lumen.html","hydrogenosome lumen"]],"b":[["GO%3A0034492","hydrogenosome lumen"]]},{"id":"GO:0034494","l":"microneme lumen","na":3,"nb":1,"a":[["membrane_organelle/microneme.html","microneme"],["membrane_organelle/microneme_lumen.html","microneme lumen"],["membrane_organelle/microneme_membrane.html","microneme membrane"]],"b":[["GO%3A0034494","microneme lumen"]]},{"id":"GO:0034591","l":"rhoptry lumen","na":3,"nb":1,"a":[["membrane_organelle/rhoptry.html","rhoptry"],["membrane_organelle/rhoptry_lumen.html","rhoptry lumen"],["membrane_organelle/rhoptry_membrane.html","rhoptry membrane"]],"b":[["GO%3A0034591","rhoptry lumen"]]},{"id":"GO:0034777","l":"recycling endosome lumen","na":3,"nb":1,"a":[["membrane_organelle/recycling_endosome.html","recycling endosome"],["membrane_organelle/recycling_endosome_lumen.html","recycling endosome lumen"],["membrane_organelle/recycling_endosome_membrane.html","recycling endosome membrane"]],"b":[["GO%3A0034777","recycling endosome lumen"]]},{"id":"GO:0036286","l":"eisosome filament","na":3,"nb":1,"a":[["cytoskeleton/eisosome_filament.html","eisosome filament"],["envelope/eisosome_membrane_domain_mcc.html","eisosome membrane domain/MCC"],["other/eisosome.html","eisosome"]],"b":[["GO%3A0036286","eisosome filament"]]},{"id":"GO:0042566","l":"hydrogenosome","na":3,"nb":1,"a":[["membrane_organelle/hydrogenosomal_membrane.html","hydrogenosomal membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/hydrogenosome_lumen.html","hydrogenosome lumen"]],"b":[["GO%3A0042566","hydrogenosome"]]},{"id":"GO:0042603","l":"capsule","na":3,"nb":1,"a":[["envelope/capsule.html","capsule"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]],"b":[["GO%3A0042603","capsule"]]},{"id":"GO:0042763","l":"intracellular immature spore","na":1,"nb":3,"a":[["spore/endospore_forming_forespore.html","endospore-forming forespore"]],"b":[["GO%3A0042764","ascospore-type prospore"],["GO%3A0042601","endospore-forming forespore"],["GO%3A0042763","intracellular immature spore"]]},{"id":"GO:0043529","l":"GET complex","na":1,"nb":3,"a":[["other/get_complex.html","GET complex"]],"b":[["ComplexPortal%3ACPX-6464","GET complex"],["ComplexPortal%3ACPX-956","GET complex"],["GO%3A0043529","GET complex"]]},{"id":"GO:0043594","l":"outer endospore membrane","na":3,"nb":1,"a":[["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"],["spore/outer_endospore_membrane.html","outer endospore membrane"],["spore/spore_inner_membrane.html","spore inner membrane"]],"b":[["GO%3A0043594","outer endospore membrane"]]},{"id":"GO:0044599","l":"AP-5 adaptor complex","na":1,"nb":3,"a":[["other/ap_5_adaptor_complex.html","AP-5 adaptor complex"]],"b":[["ComplexPortal%3ACPX-5181","AP-5 Adaptor complex"],["ComplexPortal%3ACPX-5182","AP-5 Adaptor complex"],["GO%3A0044599","AP-5 adaptor complex"]]},{"id":"GO:0046858","l":"chlorosome","na":3,"nb":1,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"]],"b":[["GO%3A0046858","chlorosome"]]},{"id":"GO:0046859","l":"hydrogenosomal membrane","na":3,"nb":1,"a":[["membrane_organelle/hydrogenosomal_membrane.html","hydrogenosomal membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/hydrogenosome_lumen.html","hydrogenosome lumen"]],"b":[["GO%3A0046859","hydrogenosomal membrane"]]},{"id":"GO:0046860","l":"glycosome membrane","na":3,"nb":1,"a":[["membrane_organelle/glycosome.html","glycosome"],["membrane_organelle/glycosome_lumen.html","glycosome lumen"],["membrane_organelle/glycosome_membrane.html","glycosome membrane"]],"b":[["GO%3A0046860","glycosome membrane"]]},{"id":"GO:0046861","l":"glyoxysomal membrane","na":3,"nb":1,"a":[["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysomal_membrane.html","glyoxysomal membrane"],["membrane_organelle/glyoxysome.html","glyoxysome"]],"b":[["GO%3A0046861","glyoxysomal membrane"]]},{"id":"GO:0048492","l":"ribulose bisphosphate carboxylase complex","na":1,"nb":3,"a":[["other/pyrenoid.html","pyrenoid"]],"b":[["GO%3A0009573","chloroplast ribulose bisphosphate carboxylase complex"],["GO%3A0048494","chromatophore ribulose bisphosphate carboxylase complex"],["GO%3A0048492","ribulose bisphosphate carboxylase complex"]]},{"id":"GO:0062159","l":"contractile vacuole complex","na":3,"nb":1,"a":[["membrane_organelle/contractile_vacuole.html","contractile vacuole"],["membrane_organelle/contractile_vacuole_complex.html","contractile vacuole complex"],["membrane_organelle/spongiome.html","spongiome"]],"b":[["GO%3A0062159","contractile vacuole complex"]]},{"id":"GO:0070088","l":"polyhydroxyalkanoate granule","na":1,"nb":3,"a":[["inclusion/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]],"b":[["GO%3A0070088","polyhydroxyalkanoate granule"],["NCBIfam%3ANF045536","polyhydroxyalkanoate granule-associated phasin"],["NCBIfam%3ANF045537","polyhydroxyalkanoate granule-associated phasin"]]},{"id":"GO:0070115","l":"organellar chromatophore intermembrane space","na":3,"nb":1,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_inner_membrane.html","organellar chromatophore inner membrane"],["membrane_organelle/organellar_chromatophore_intermembrane_space.html","organellar chromatophore intermembrane space"]],"b":[["GO%3A0070115","organellar chromatophore intermembrane space"]]},{"id":"GO:0071008","l":"U2-type post-mRNA release spliceosomal complex","na":1,"nb":3,"a":[["ribonucleoprotein/u2_type_post_mrna_release_spliceosomal_complex.html","U2-type post-mRNA release spliceosomal complex"]],"b":[["ComplexPortal%3ACPX-1886","Post-mRNA release spliceosomal complex"],["GO%3A0071008","U2-type post-mRNA release spliceosomal complex"],["Pfam%3APF15458","Nineteen complex-related protein 2"]]},{"id":"GO:0071012","l":"catalytic step 1 spliceosome","na":1,"nb":3,"a":[["ribonucleoprotein/u12_type_catalytic_step_1_spliceosome.html","U12-type catalytic step 1 spliceosome"]],"b":[["GO%3A0071012","catalytic step 1 spliceosome"],["GO%3A0071017","U12-type catalytic step 1 spliceosome"],["GO%3A0071006","U2-type catalytic step 1 spliceosome"]]},{"id":"GO:0090512","l":"eisosome membrane domain/MCC","na":3,"nb":1,"a":[["cytoskeleton/eisosome_filament.html","eisosome filament"],["envelope/eisosome_membrane_domain_mcc.html","eisosome membrane domain/MCC"],["other/eisosome.html","eisosome"]],"b":[["GO%3A0090512","eisosome membrane domain/MCC"]]},{"id":"GO:0090641","l":"microsporidian-type endospore","na":3,"nb":1,"a":[["spore/microsporidian_type_endospore.html","microsporidian-type endospore"],["spore/microsporidian_type_exospore.html","microsporidian-type exospore"],["spore/spore_wall.html","spore wall"]],"b":[["GO%3A0090641","microsporidian-type endospore"]]},{"id":"GO:0097595","l":"ventral disc crossbridge","na":3,"nb":1,"a":[["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_crossbridge.html","ventral disc crossbridge"],["cytoskeleton/ventral_disc_dorsal_microribbon.html","ventral disc dorsal microribbon"]],"b":[["GO%3A0097595","ventral disc crossbridge"]]},{"id":"GO:0106234","l":"outer membrane protein complex","na":1,"nb":3,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["GO%3A0106234","outer membrane protein complex"],["NCBIfam%3ANF033942","outer membrane porin GjpA"],["NCBIfam%3ANF053618","PopA family porin-like outer membrane protein"]]},{"id":"GO:0160111","l":"axonemal A tubule inner sheath","na":3,"nb":1,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_a_tubule_inner_sheath.html","axonemal A tubule inner sheath"],["cytoskeleton/axonemal_microtubule_doublet_inner_sheath.html","axonemal microtubule doublet inner sheath"]],"b":[["GO%3A0160111","axonemal A tubule inner sheath"]]},{"id":"GO:0160112","l":"axonemal B tubule inner sheath","na":3,"nb":1,"a":[["cytoskeleton/axonemal_b_tubule_inner_sheath.html","axonemal B tubule inner sheath"],["cytoskeleton/axonemal_microtubule_doublet_inner_sheath.html","axonemal microtubule doublet inner sheath"],["cytoskeleton/b_axonemal_microtubule.html","B axonemal microtubule"]],"b":[["GO%3A0160112","axonemal B tubule inner sheath"]]},{"id":"GO:0160211","l":"apicoplast membrane","na":3,"nb":1,"a":[["membrane_organelle/apicoplast.html","apicoplast"],["membrane_organelle/apicoplast_membrane.html","apicoplast membrane"],["membrane_organelle/plastid_membrane.html","plastid membrane"]],"b":[["GO%3A0160211","apicoplast membrane"]]},{"id":"GO:1990718","l":"axonemal central pair projection","na":3,"nb":1,"a":[["cytoskeleton/axonemal_central_apparatus.html","axonemal central apparatus"],["cytoskeleton/axonemal_central_pair.html","axonemal central pair"],["cytoskeleton/axonemal_central_pair_projection.html","axonemal central pair projection"]],"b":[["GO%3A1990718","axonemal central pair projection"]]},{"id":"GO:1990900","l":"ciliary pocket collar","na":3,"nb":1,"a":[["cytoskeleton/bilobe_structure.html","bilobe structure"],["cytoskeleton/ciliary_pocket_collar.html","ciliary pocket collar"],["membrane_organelle/flagellar_pocket.html","flagellar pocket"]],"b":[["GO%3A1990900","ciliary pocket collar"]]},{"id":"GO:1990916","l":"Isp3 layer of spore wall","na":3,"nb":1,"a":[["spore/ascospore_wall.html","ascospore wall"],["spore/dityrosine_layer_of_spore_wall.html","dityrosine layer of spore wall"],["spore/isp3_layer_of_spore_wall.html","Isp3 layer of spore wall"]],"b":[["GO%3A1990916","Isp3 layer of spore wall"]]},{"id":"InterPro:IPR001182","l":"","na":1,"nb":3,"a":[["envelope/peptidoglycan_based_cell_wall.html","peptidoglycan-based cell wall"]],"b":[["PANTHER%3APTHR30474","CELL CYCLE PROTEIN"],["Pfam%3APF01098","Cell cycle protein"],["PROSITE%3APS00428","Cell cycle proteins ftsW / rodA / spoVE signature"]]},{"id":"InterPro:IPR001689","l":"","na":1,"nb":3,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]],"b":[["Pfam%3APF02154","Flagellar motor switch protein FliM"],["Pfam%3APF01052","Type III flagellar switch regulator (C-ring) FliN C-term"],["PRINTS%3APR00955","Flagellar motor switch protein FliM signature"]]},{"id":"InterPro:IPR002326","l":"","na":1,"nb":3,"a":[["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"]],"b":[["PANTHER%3APTHR10266","CYTOCHROME C1"],["Pfam%3APF02167","Cytochrome C1 family"],["PRINTS%3APR00603","Cytochrome C1 signature"]]},{"id":"InterPro:IPR003418","l":"","na":1,"nb":3,"a":[["energy_complex/fumarate_reductase_complex.html","fumarate reductase complex"]],"b":[["GO%3A0045283","fumarate reductase complex"],["Pfam%3APF02313","Fumarate reductase subunit D"],["HAMAP%3AMF_00709","Fumarate reductase subunit D [frdD]"]]},{"id":"InterPro:IPR003510","l":"","na":1,"nb":3,"a":[["energy_complex/fumarate_reductase_complex.html","fumarate reductase complex"]],"b":[["GO%3A0045283","fumarate reductase complex"],["Pfam%3APF02300","Fumarate reductase subunit C"],["HAMAP%3AMF_00708","Fumarate reductase subunit C [frdC]"]]},{"id":"InterPro:IPR005737","l":"","na":1,"nb":3,"a":[["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["HAMAP%3AMF_00938","DNA topoisomerase 4 subunit B [parE]"],["Pfam%3APF00986","DNA gyrase B subunit, carboxyl terminus"],["PRINTS%3APR01098","Topoisomerase IV subunit B signature"]]},{"id":"InterPro:IPR005743","l":"","na":1,"nb":3,"a":[["other/dna_gyrase_complex.html","DNA gyrase complex"]],"b":[["Pfam%3APF00521","DNA gyrase/topoisomerase IV, subunit A"],["HAMAP%3AMF_01897","DNA gyrase subunit A [gyrA]"],["Pfam%3APF03989","DNA gyrase C-terminal domain, beta-propeller"]]},{"id":"InterPro:IPR010204","l":"","na":1,"nb":3,"a":[["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"]],"b":[["Pfam%3APF04205","FMN-binding domain"],["HAMAP%3AMF_00427","Na(+)-translocating NADH-quinone reductase subunit C [nqrC]"],["PANTHER%3APTHR37838","NA(+)-TRANSLOCATING NADH-QUINONE REDUCTASE SUBUNIT C"]]},{"id":"InterPro:IPR012826","l":"","na":1,"nb":3,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]],"b":[["Pfam%3APF04509","CheC-like family"],["Pfam%3APF01052","Type III flagellar switch regulator (C-ring) FliN C-term"],["Pfam%3APF16973","Flagellar motor switch protein FliN N-terminal"]]},{"id":"InterPro:IPR026592","l":"","na":1,"nb":3,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["Pfam%3APF04355","Outer membrane protein assembly factor BamE domain"],["HAMAP%3AMF_00925","Outer membrane protein assembly factor BamE [bamE]"],["PANTHER%3APTHR37482","OUTER MEMBRANE PROTEIN ASSEMBLY FACTOR BAME"]]},{"id":"InterPro:IPR050220","l":"","na":1,"nb":3,"a":[["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["Pfam%3APF00521","DNA gyrase/topoisomerase IV, subunit A"],["PANTHER%3APTHR43493","DNA GYRASE/TOPOISOMERASE SUBUNIT A"],["Pfam%3APF03989","DNA gyrase C-terminal domain, beta-propeller"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":3,"a":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]],"b":[["TED%3AAF-A0A142EAM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142EAM9-F1-model_v4_TED03"],["TED%3AAF-A0A1Q3DTY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3DTY6-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3DNE3-F1-model_v4_TED01","TED novel fold AF-A0A1Q3DNE3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":1,"nb":3,"a":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]],"b":[["Pfam%3APF03069","Acetamidase/Formamidase family"],["PROSITE%3APS00818","Dps protein family signature 1"],["Pfam%3APF13810","Domain of unknown function (DUF4185)"]]},{"id":"NCBITaxon:243233","l":"Methylococcus capsulatus Bath","na":1,"nb":3,"a":[["membrane_organelle/methane_oxidizing_organelle.html","methane-oxidizing organelle"]],"b":[["Pfam%3APF17850","CysA C-terminal regulatory domain"],["Pfam%3APF02461","Ammonia monooxygenase"],["TED%3AAF-Q604F4-F1-model_v4_TED02","TED novel fold AF-Q604F4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:381666","l":"Cupriavidus necator H16","na":1,"nb":3,"a":[["inclusion/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]],"b":[["Pfam%3APF13473","Cupredoxin-like domain"],["Pfam%3APF10605","3HB-oligomer hydrolase (3HBOH)"],["Pfam%3APF21783","YNCE-like beta-propeller"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":1,"nb":3,"a":[["microcompartment/bacterial_microcompartment.html","bacterial microcompartment"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF22277","EncFtn-like"],["TED%3AAF-D0LJ11-F1-model_v4_TED04","TED highly-symmetric fold AF-D0LJ11-F1-model_v4_TED04"]]},{"id":"NCBITaxon:5334","l":"Schizophyllum commune","na":1,"nb":3,"a":[["envelope/dolipore_septum.html","dolipore septum"]],"b":[["Pfam%3APF04611","Mating type protein A alpha Y mating type dependent binding region"],["Pfam%3APF01185","Fungal hydrophobin"],["PROSITE%3APS00956","Fungal hydrophobins signature"]]},{"id":"NCBITaxon:55529","l":"Guillardia theta","na":1,"nb":3,"a":[["membrane_organelle/nucleomorph.html","nucleomorph"]],"b":[["Pfam%3APF06868","Protein of unknown function (DUF1257)"],["Pfam%3APF05421","Protein of unknown function (DUF751)"],["TED%3AAF-A0A7S4PQE0-F1-model_v4_TED01","TED novel fold AF-A0A7S4PQE0-F1-model_v4_TED01"]]},{"id":"UniProt:O31728","l":"","na":1,"nb":3,"a":[["division_machinery/divisome_complex.html","divisome complex"]],"b":[["Pfam%3APF04472","Cell division protein SepF"],["InterPro%3AIPR038594","SepF-like superfamily"],["CATH%3A3.30.110.150","SepF-like protein"]]},{"id":"UniProt:P0C018","l":"Large ribosomal subunit protein uL18","na":1,"nb":3,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00060","50S ribosomal protein L18"],["Pfam%3APF00861","Ribosomal L18 of archaea, bacteria, mitoch. and chloroplast"]]},{"id":"UniProt:P35535","l":"","na":1,"nb":3,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0009425","bacterial-type flagellum basal body"],["NCBIfam%3ATIGR01402","flagellar biosynthesis protein FliQ"],["Pfam%3APF01313","Bacterial export proteins, family 3"]]},{"id":"UniProt:P35537","l":"","na":1,"nb":3,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0009425","bacterial-type flagellum basal body"],["NCBIfam%3ATIGR01400","flagellar biosynthetic protein FliR"],["Pfam%3APF01311","Bacterial export proteins, family 1"]]},{"id":"UniProt:P54700","l":"","na":1,"nb":3,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF00813","FliP family"],["PROSITE%3APS01060","Flagella transport protein fliP family signature 1"],["PROSITE%3APS01061","Flagella transport protein fliP family signature 2"]]},{"id":"UniProt:Q9ZFU8","l":"","na":1,"nb":3,"a":[["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"]],"b":[["Pfam%3APF00936","BMC domain"],["Pfam%3APF16365","Ethanolamine utilization protein EutK C-terminus"],["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"CHEBI:16261","l":"chitosan","na":2,"nb":1,"a":[["spore/ascospore_wall.html","ascospore wall"],["spore/chitosan_layer_of_spore_wall.html","chitosan layer of spore wall"]],"b":[["proteintraitsmech%3ABIOLIP_GCS","GCS-binding site"]]},{"id":"CHEBI:16412","l":"","na":2,"nb":1,"a":[["envelope/cell_outer_membrane.html","cell outer membrane"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:25438","l":"","na":1,"nb":2,"a":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]]},{"id":"GO:0000934","l":"porous cell septum","na":1,"nb":2,"a":[["envelope/dolipore_septum.html","dolipore septum"]],"b":[["GO%3A0000937","dolipore septum"],["GO%3A0000934","porous cell septum"]]},{"id":"GO:0001405","l":"PAM complex, Tim23 associated import motor","na":1,"nb":2,"a":[["other/pam_complex_tim23_associated_import_motor.html","PAM complex, Tim23 associated import motor"]],"b":[["GO%3A0001405","PAM complex, Tim23 associated import motor"],["Pfam%3APF08566","Mitochondrial import protein Pam17"]]},{"id":"GO:0005692","l":"U11 snRNP","na":2,"nb":1,"a":[["ribonucleoprotein/u11_snrnp.html","U11 snRNP"],["ribonucleoprotein/u11_u12_snrnp.html","U11/U12 snRNP"]],"b":[["GO%3A0005692","U11 snRNP"]]},{"id":"GO:0005905","l":"clathrin-coated pit","na":2,"nb":1,"a":[["other/clathrin_coat_of_coated_pit.html","clathrin coat of coated pit"],["other/clathrin_coated_pit.html","clathrin-coated pit"]],"b":[["GO%3A0005905","clathrin-coated pit"]]},{"id":"GO:0009319","l":"cytochrome o ubiquinol oxidase complex","na":1,"nb":2,"a":[["energy_complex/cytochrome_o_ubiquinol_oxidase_complex.html","cytochrome o ubiquinol oxidase complex"]],"b":[["ComplexPortal%3ACPX-2102","Cytochrome bo3 ubiquinol oxidase complex"],["GO%3A0009319","cytochrome o ubiquinol oxidase complex"]]},{"id":"GO:0009340","l":"DNA topoisomerase IV complex","na":1,"nb":2,"a":[["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["GO%3A0009340","DNA topoisomerase IV complex"],["NCBIfam%3ATIGR01062","DNA topoisomerase IV subunit A"]]},{"id":"GO:0010287","l":"plastoglobule","na":2,"nb":1,"a":[["inclusion/plastoglobule.html","plastoglobule"],["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"]],"b":[["GO%3A0010287","plastoglobule"]]},{"id":"GO:0020005","l":"symbiont-containing vacuole membrane","na":2,"nb":1,"a":[["membrane_organelle/parasitophorous_vacuole.html","parasitophorous vacuole"],["membrane_organelle/parasitophorous_vacuole_membrane.html","parasitophorous vacuole membrane"]],"b":[["GO%3A0020005","symbiont-containing vacuole membrane"]]},{"id":"GO:0020011","l":"apicoplast","na":2,"nb":1,"a":[["membrane_organelle/apicoplast.html","apicoplast"],["membrane_organelle/apicoplast_membrane.html","apicoplast membrane"]],"b":[["GO%3A0020011","apicoplast"]]},{"id":"GO:0020016","l":"flagellar pocket","na":2,"nb":1,"a":[["cytoskeleton/ciliary_pocket_collar.html","ciliary pocket collar"],["membrane_organelle/flagellar_pocket.html","flagellar pocket"]],"b":[["GO%3A0020016","ciliary pocket"]]},{"id":"GO:0020023","l":"kinetoplast","na":1,"nb":2,"a":[["nucleoid/kinetoplast.html","kinetoplast"]],"b":[["GO%3A0140525","antipodal site"],["GO%3A0020023","kinetoplast"]]},{"id":"GO:0020025","l":"subpellicular microtubule","na":2,"nb":1,"a":[["cytoskeleton/subpellicular_microtubule.html","subpellicular microtubule"],["membrane_organelle/mononeme.html","mononeme"]],"b":[["GO%3A0020025","subpellicular microtubule"]]},{"id":"GO:0030114","l":"slime layer","na":2,"nb":1,"a":[["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]],"b":[["GO%3A0030114","slime layer"]]},{"id":"GO:0030668","l":"apicomplexan dense granule membrane","na":2,"nb":1,"a":[["membrane_organelle/apicomplexan_dense_granule.html","apicomplexan dense granule"],["membrane_organelle/apicomplexan_dense_granule_membrane.html","apicomplexan dense granule membrane"]],"b":[["GO%3A0030668","apicomplexan dense granule membrane"]]},{"id":"GO:0031205","l":"endoplasmic reticulum Sec complex","na":2,"nb":1,"a":[["other/endoplasmic_reticulum_sec_complex.html","endoplasmic reticulum Sec complex"],["other/sec62_sec63_complex.html","Sec62/Sec63 complex"]],"b":[["GO%3A0031205","endoplasmic reticulum Sec complex"]]},{"id":"GO:0031518","l":"CBF3 complex","na":1,"nb":2,"a":[["other/cbf3_complex.html","CBF3 complex"]],"b":[["ComplexPortal%3ACPX-1898","CBF3 complex"],["GO%3A0031518","CBF3 complex"]]},{"id":"GO:0031561","l":"cellular bud tip polarisome","na":2,"nb":1,"a":[["other/cellular_bud_tip.html","cellular bud tip"],["other/polarisome.html","polarisome"]],"b":[["GO%3A0031561","cellular bud tip polarisome"]]},{"id":"GO:0031903","l":"microbody membrane","na":1,"nb":2,"a":[["membrane_organelle/peroxisomal_membrane.html","peroxisomal membrane"]],"b":[["GO%3A0031903","microbody membrane"],["GO%3A0005778","peroxisomal membrane"]]},{"id":"GO:0031907","l":"microbody lumen","na":1,"nb":2,"a":[["membrane_organelle/peroxisomal_matrix.html","peroxisomal matrix"]],"b":[["GO%3A0031907","microbody lumen"],["GO%3A0005782","peroxisomal matrix"]]},{"id":"GO:0031910","l":"cytostome","na":2,"nb":1,"a":[["membrane_organelle/early_endosome.html","early endosome"],["other/cytostome.html","cytostome"]],"b":[["GO%3A0031910","cytostome"]]},{"id":"GO:0032010","l":"phagolysosome","na":1,"nb":2,"a":[["membrane_organelle/phagocytic_vesicle.html","phagocytic vesicle"]],"b":[["GO%3A0020020","food vacuole"],["GO%3A0032010","phagolysosome"]]},{"id":"GO:0032258","l":"cytoplasm to vacuole targeting by the Cvt pathway","na":2,"nb":1,"a":[["membrane_organelle/cvt_vesicle.html","Cvt vesicle"],["membrane_organelle/cvt_vesicle_membrane.html","Cvt vesicle membrane"]],"b":[["GO%3A0032258","cytoplasm to vacuole targeting by the Cvt pathway"]]},{"id":"GO:0033099","l":"attachment organelle","na":2,"nb":1,"a":[["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"]],"b":[["GO%3A0033099","attachment organelle"]]},{"id":"GO:0033101","l":"cellular bud membrane","na":2,"nb":1,"a":[["envelope/cellular_bud_membrane.html","cellular bud membrane"],["other/cellular_bud.html","cellular bud"]],"b":[["GO%3A0033101","cellular bud membrane"]]},{"id":"GO:0033102","l":"acidocalcisome membrane","na":2,"nb":1,"a":[["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"]],"b":[["GO%3A0033102","acidocalcisome membrane"]]},{"id":"GO:0033105","l":"chlorosome envelope","na":2,"nb":1,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"]],"b":[["GO%3A0033105","chlorosome envelope"]]},{"id":"GO:0033111","l":"attachment organelle membrane","na":2,"nb":1,"a":[["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"]],"b":[["GO%3A0033111","attachment organelle membrane"]]},{"id":"GO:0033551","l":"monopolin complex","na":1,"nb":2,"a":[["other/monopolin_complex.html","monopolin complex"]],"b":[["ComplexPortal%3ACPX-1681","Monopolin complex"],["GO%3A0033551","monopolin complex"]]},{"id":"GO:0034063","l":"stress granule assembly","na":1,"nb":2,"a":[["ribonucleoprotein/cytoplasmic_stress_granule.html","cytoplasmic stress granule"]],"b":[["ComplexPortal%3ACPX-1412","UBP3-BRE5 ubiquitin hydrolase complex"],["GO%3A0034063","stress granule assembly"]]},{"id":"GO:0034270","l":"Cvt complex","na":2,"nb":1,"a":[["membrane_organelle/cvt_vesicle.html","Cvt vesicle"],["membrane_organelle/cvt_vesicle_membrane.html","Cvt vesicle membrane"]],"b":[["GO%3A0034270","Cvt complex"]]},{"id":"GO:0034335","l":"DNA negative supercoiling activity","na":1,"nb":2,"a":[["other/dna_gyrase_complex.html","DNA gyrase complex"]],"b":[["ComplexPortal%3ACPX-2177","GyrA-GyrB DNA Gyrase complex"],["GO%3A0034335","DNA negative supercoiling activity"]]},{"id":"GO:0042644","l":"chloroplast nucleoid","na":2,"nb":1,"a":[["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"],["nucleoid/chloroplast_nucleoid.html","chloroplast nucleoid"]],"b":[["GO%3A0042644","chloroplast nucleoid"]]},{"id":"GO:0042764","l":"ascospore-type prospore","na":2,"nb":1,"a":[["spore/endospore_forming_forespore.html","endospore-forming forespore"],["spore/prospore_membrane.html","prospore membrane"]],"b":[["GO%3A0042764","ascospore-type prospore"]]},{"id":"GO:0043592","l":"exosporium","na":1,"nb":2,"a":[["spore/exosporium.html","exosporium"]],"b":[["GO%3A0043592","exosporium"],["NCBIfam%3ATIGR03720","exosporium leader peptide-containing protein"]]},{"id":"GO:0043846","l":"DNA polymerase III, clamp loader complex","na":1,"nb":2,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"]],"b":[["ComplexPortal%3ACPX-1926","DNA polymerase III clamp loader complex"],["GO%3A0043846","DNA polymerase III, clamp loader complex"]]},{"id":"GO:0044096","l":"type IV pilus","na":2,"nb":1,"a":[["appendage/tad_pilus.html","Tad pilus"],["appendage/type_iv_pilus.html","type IV pilus"]],"b":[["GO%3A0044096","type IV pilus"]]},{"id":"GO:0044315","l":"protein secretion by the type VII secretion system","na":2,"nb":1,"a":[["secretion_system/esx_3_type_vii_secretion_system_membrane_complex.html","ESX-3 type VII secretion system membrane complex"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]],"b":[["GO%3A0044315","protein secretion by the type VII secretion system"]]},{"id":"GO:0044775","l":"DNA polymerase III, beta sliding clamp processivity factor complex","na":1,"nb":2,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"]],"b":[["ComplexPortal%3ACPX-1927","DNA polymerase III, beta sliding clamp processivity factor complex"],["GO%3A0044775","DNA polymerase III, beta sliding clamp processivity factor complex"]]},{"id":"GO:0044776","l":"DNA polymerase III, core complex","na":1,"nb":2,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"]],"b":[["ComplexPortal%3ACPX-1925","DNA polymerase III core complex"],["GO%3A0044776","DNA polymerase III, core complex"]]},{"id":"GO:0044777","l":"single-stranded DNA-binding protein complex","na":1,"nb":2,"a":[["other/single_stranded_dna_binding_protein_complex.html","single-stranded DNA-binding protein complex"]],"b":[["ComplexPortal%3ACPX-1928","SSB single-stranded DNA binding complex"],["GO%3A0044777","single-stranded DNA-binding protein complex"]]},{"id":"GO:0045283","l":"fumarate reductase complex","na":1,"nb":2,"a":[["energy_complex/fumarate_reductase_complex.html","fumarate reductase complex"]],"b":[["ComplexPortal%3ACPX-1967","Plasma membrane fumarate reductase complex"],["GO%3A0045283","fumarate reductase complex"]]},{"id":"GO:0051144","l":"1,2-propanediol catabolic process","na":1,"nb":2,"a":[["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]],"b":[["GO%3A0051144","1,2-propanediol catabolic process"],["NCBIfam%3ANF047788","transcriptional regulator PocR"]]},{"id":"GO:0055040","l":"periplasmic flagellum","na":1,"nb":2,"a":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]],"b":[["GO%3A0055040","periplasmic flagellum"],["NCBIfam%3ANF047448","flagellar coiling protein FcpA"]]},{"id":"GO:0061701","l":"bacterial outer membrane vesicle","na":1,"nb":2,"a":[["other/bacterial_outer_membrane_vesicle.html","bacterial outer membrane vesicle"]],"b":[["GO%3A0061701","bacterial outer membrane vesicle"],["NCBIfam%3ANF049843","BAR domain-like protein A BdpA"]]},{"id":"GO:0062155","l":"curli secretion complex","na":1,"nb":2,"a":[["appendage/curli.html","curli"]],"b":[["ComplexPortal%3ACPX-4743","Curli secretion complex"],["GO%3A0062155","curli secretion complex"]]},{"id":"GO:0062160","l":"spongiome","na":2,"nb":1,"a":[["membrane_organelle/contractile_vacuole_complex.html","contractile vacuole complex"],["membrane_organelle/spongiome.html","spongiome"]],"b":[["GO%3A0062160","spongiome"]]},{"id":"GO:0070056","l":"prospore membrane leading edge","na":2,"nb":1,"a":[["spore/prospore_membrane.html","prospore membrane"],["spore/prospore_membrane_leading_edge.html","prospore membrane leading edge"]],"b":[["GO%3A0070056","prospore membrane leading edge"]]},{"id":"GO:0070057","l":"prospore membrane spindle pole body attachment site","na":2,"nb":1,"a":[["spore/prospore_membrane.html","prospore membrane"],["spore/prospore_membrane_spindle_pole_body_attachment_site.html","prospore membrane spindle pole body attachment site"]],"b":[["GO%3A0070057","prospore membrane spindle pole body attachment site"]]},{"id":"GO:0070070","l":"proton-transporting V-type ATPase complex assembly","na":1,"nb":2,"a":[["other/rave_complex.html","RAVE complex"]],"b":[["GO%3A0070070","proton-transporting V-type ATPase complex assembly"],["GO%3A0070072","vacuolar proton-transporting V-type ATPase complex assembly"]]},{"id":"GO:0070258","l":"inner membrane pellicle complex","na":2,"nb":1,"a":[["cytoskeleton/subpellicular_microtubule.html","subpellicular microtubule"],["membrane_organelle/inner_membrane_pellicle_complex.html","inner membrane pellicle complex"]],"b":[["GO%3A0070258","inner membrane pellicle complex"]]},{"id":"GO:0070477","l":"endospore core","na":2,"nb":1,"a":[["spore/endospore_core.html","endospore core"],["spore/spore_inner_membrane.html","spore inner membrane"]],"b":[["GO%3A0070477","endospore core"]]},{"id":"GO:0071005","l":"U2-type precatalytic spliceosome","na":2,"nb":1,"a":[["ribonucleoprotein/u2_type_catalytic_step_1_spliceosome.html","U2-type catalytic step 1 spliceosome"],["ribonucleoprotein/u2_type_precatalytic_spliceosome.html","U2-type precatalytic spliceosome"]],"b":[["GO%3A0071005","U2-type precatalytic spliceosome"]]},{"id":"GO:0071007","l":"U2-type catalytic step 2 spliceosome","na":1,"nb":2,"a":[["ribonucleoprotein/u2_type_catalytic_step_2_spliceosome.html","U2-type catalytic step 2 spliceosome"]],"b":[["ComplexPortal%3ACPX-26472","Major Spliceosomal C* complex"],["GO%3A0071007","U2-type catalytic step 2 spliceosome"]]},{"id":"GO:0071015","l":"U12-type prespliceosome","na":2,"nb":1,"a":[["ribonucleoprotein/u12_type_precatalytic_spliceosome.html","U12-type precatalytic spliceosome"],["ribonucleoprotein/u12_type_prespliceosome.html","U12-type prespliceosome"]],"b":[["GO%3A0071015","U12-type prespliceosome"]]},{"id":"GO:0071017","l":"U12-type catalytic step 1 spliceosome","na":2,"nb":1,"a":[["ribonucleoprotein/u12_type_catalytic_step_1_spliceosome.html","U12-type catalytic step 1 spliceosome"],["ribonucleoprotein/u12_type_catalytic_step_2_spliceosome.html","U12-type catalytic step 2 spliceosome"]],"b":[["GO%3A0071017","U12-type catalytic step 1 spliceosome"]]},{"id":"GO:0071018","l":"U12-type catalytic step 2 spliceosome","na":1,"nb":2,"a":[["ribonucleoprotein/u12_type_catalytic_step_2_spliceosome.html","U12-type catalytic step 2 spliceosome"]],"b":[["ComplexPortal%3ACPX-26509","Minor Spliceosomal B-act complex"],["GO%3A0071018","U12-type catalytic step 2 spliceosome"]]},{"id":"GO:0071019","l":"U12-type post-mRNA release spliceosomal complex","na":2,"nb":1,"a":[["ribonucleoprotein/u12_type_post_mrna_release_spliceosomal_complex.html","U12-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u12_type_post_spliceosomal_complex.html","U12-type post-spliceosomal complex"]],"b":[["GO%3A0071019","U12-type post-mRNA release spliceosomal complex"]]},{"id":"GO:0071261","l":"Ssh1 translocon complex","na":1,"nb":2,"a":[["other/ssh1_translocon_complex.html","Ssh1 translocon complex"]],"b":[["ComplexPortal%3ACPX-1834","SSH1 translocon complex"],["GO%3A0071261","Ssh1 translocon complex"]]},{"id":"GO:0071970","l":"fungal-type cell wall (1->3)-beta-D-glucan biosynthetic process","na":1,"nb":2,"a":[["other/1_3_beta_d_glucan_synthase_complex.html","1,3-beta-D-glucan synthase complex"]],"b":[["GO%3A0034413","ascospore wall (1->3)-beta-D-glucan biosynthetic process"],["GO%3A0071970","fungal-type cell wall (1->3)-beta-D-glucan biosynthetic process"]]},{"id":"GO:0090383","l":"phagosome acidification","na":1,"nb":2,"a":[["membrane_organelle/phagocytic_vesicle_lumen.html","phagocytic vesicle lumen"]],"b":[["GO%3A0090383","phagosome acidification"],["GO%3A0090390","phagosome acidification involved in apoptotic cell clearance"]]},{"id":"GO:0097002","l":"mitochondrial inner boundary membrane","na":2,"nb":1,"a":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"]],"b":[["GO%3A0097002","mitochondrial inner boundary membrane"]]},{"id":"GO:0097591","l":"ventral disc lateral crest","na":2,"nb":1,"a":[["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_lateral_crest.html","ventral disc lateral crest"]],"b":[["GO%3A0097591","ventral disc lateral crest"]]},{"id":"GO:0097592","l":"ventral disc overlap zone","na":2,"nb":1,"a":[["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_overlap_zone.html","ventral disc overlap zone"]],"b":[["GO%3A0097592","ventral disc overlap zone"]]},{"id":"GO:0097596","l":"ventral disc supernumerary microtubule array","na":2,"nb":1,"a":[["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_supernumerary_microtubule_array.html","ventral disc supernumerary microtubule array"]],"b":[["GO%3A0097596","ventral disc supernumerary microtubule array"]]},{"id":"GO:0098775","l":"curli assembly","na":1,"nb":2,"a":[["appendage/curli.html","curli"]],"b":[["ComplexPortal%3ACPX-4743","Curli secretion complex"],["GO%3A0098775","curli assembly"]]},{"id":"GO:0106176","l":"clathrin-coated endocytic vesicle lumen","na":2,"nb":1,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle_lumen.html","clathrin-coated endocytic vesicle lumen"],["membrane_organelle/endocytic_vesicle_lumen.html","endocytic vesicle lumen"]],"b":[["GO%3A0106176","clathrin-coated endocytic vesicle lumen"]]},{"id":"GO:0120119","l":"flagellum attachment zone","na":2,"nb":1,"a":[["cytoskeleton/bilobe_structure.html","bilobe structure"],["cytoskeleton/flagellum_attachment_zone.html","flagellum attachment zone"]],"b":[["GO%3A0120119","flagellum attachment zone"]]},{"id":"GO:0120217","l":"DNA gyrase complex","na":1,"nb":2,"a":[["other/dna_gyrase_complex.html","DNA gyrase complex"]],"b":[["ComplexPortal%3ACPX-2177","GyrA-GyrB DNA Gyrase complex"],["GO%3A0120217","DNA gyrase complex"]]},{"id":"GO:0140549","l":"spore inner membrane","na":2,"nb":1,"a":[["spore/endospore_core.html","endospore core"],["spore/spore_inner_membrane.html","spore inner membrane"]],"b":[["GO%3A0140549","spore inner membrane"]]},{"id":"GO:0160115","l":"axonemal microtubule doublet ribbon","na":2,"nb":1,"a":[["cytoskeleton/axonemal_doublet_microtubule.html","axonemal doublet microtubule"],["cytoskeleton/axonemal_microtubule_doublet_ribbon.html","axonemal microtubule doublet ribbon"]],"b":[["GO%3A0160115","axonemal microtubule doublet ribbon"]]},{"id":"GO:0160223","l":"pyrenoid tubule","na":2,"nb":1,"a":[["membrane_organelle/pyrenoid_tubule.html","pyrenoid tubule"],["other/pyrenoid.html","pyrenoid"]],"b":[["GO%3A0160223","pyrenoid tubule"]]},{"id":"GO:1990061","l":"bacterial degradosome","na":1,"nb":2,"a":[["ribonucleoprotein/bacterial_degradosome.html","bacterial degradosome"]],"b":[["ComplexPortal%3ACPX-403","RNA degradosome"],["GO%3A1990061","bacterial degradosome"]]},{"id":"GO:1990063","l":"Bam protein complex","na":1,"nb":2,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["ComplexPortal%3ACPX-1923","BAM complex"],["GO%3A1990063","Bam protein complex"]]},{"id":"GO:1990070","l":"TRAPPI protein complex","na":1,"nb":2,"a":[["other/trappi_protein_complex.html","TRAPPI protein complex"]],"b":[["ComplexPortal%3ACPX-1940","TRAPPI protein complex"],["GO%3A1990070","TRAPPI protein complex"]]},{"id":"GO:1990732","l":"pyrenoid","na":2,"nb":1,"a":[["membrane_organelle/pyrenoid_tubule.html","pyrenoid tubule"],["other/pyrenoid.html","pyrenoid"]],"b":[["GO%3A1990732","pyrenoid"]]},{"id":"InterPro:IPR000563","l":"","na":1,"nb":2,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF02108","Flagellar assembly protein FliH"],["PRINTS%3APR01003","Flagellar assembly protein FliH signature"]]},{"id":"InterPro:IPR002585","l":"","na":1,"nb":2,"a":[["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]],"b":[["PANTHER%3APTHR30365","CYTOCHROME D UBIQUINOL OXIDASE"],["Pfam%3APF01654","Cytochrome bd terminal oxidase subunit I"]]},{"id":"InterPro:IPR003317","l":"","na":1,"nb":2,"a":[["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]],"b":[["PANTHER%3APTHR43141","CYTOCHROME BD2 SUBUNIT II"],["Pfam%3APF02322","Cytochrome bd terminal oxidase subunit II"]]},{"id":"InterPro:IPR005742","l":"","na":1,"nb":2,"a":[["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["HAMAP%3AMF_00936","DNA topoisomerase 4 subunit A [parC]"],["Pfam%3APF03989","DNA gyrase C-terminal domain, beta-propeller"]]},{"id":"InterPro:IPR006301","l":"","na":1,"nb":2,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF00771","FHIPEP family"],["PROSITE%3APS00994","Bacterial export FHIPEP family signature"]]},{"id":"InterPro:IPR006333","l":"","na":1,"nb":2,"a":[["energy_complex/cytochrome_o_ubiquinol_oxidase_complex.html","cytochrome o ubiquinol oxidase complex"]],"b":[["Pfam%3APF00116","Cytochrome C oxidase subunit II, periplasmic domain"],["Pfam%3APF06481","COX Aromatic Rich Motif"]]},{"id":"InterPro:IPR006344","l":"","na":1,"nb":2,"a":[["other/exodeoxyribonuclease_v_complex.html","exodeoxyribonuclease V complex"]],"b":[["Pfam%3APF13245","AAA domain"],["HAMAP%3AMF_01487","RecBCD enzyme subunit RecD [recD]"]]},{"id":"InterPro:IPR008703","l":"","na":1,"nb":2,"a":[["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"]],"b":[["HAMAP%3AMF_00425","Na(+)-translocating NADH-quinone reductase subunit A [nqrA]"],["PANTHER%3APTHR37839","NA(+)-TRANSLOCATING NADH-QUINONE REDUCTASE SUBUNIT A"]]},{"id":"InterPro:IPR011344","l":"","na":1,"nb":2,"a":[["other/single_stranded_dna_binding_protein_complex.html","single-stranded DNA-binding protein complex"]],"b":[["HAMAP%3AMF_00984","Single-stranded DNA-binding protein"],["PANTHER%3APTHR10302","SINGLE-STRANDED DNA-BINDING PROTEIN"]]},{"id":"InterPro:IPR012422","l":"Cytochrome c oxidase, subunit IV, bacterial aa3 type","na":1,"nb":2,"a":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]],"b":[["InterPro%3AIPR012422","Cytochrome c oxidase, subunit IV, bacterial aa3 type"],["Pfam%3APF07835","Bacterial aa3 type cytochrome c oxidase subunit IV"]]},{"id":"InterPro:IPR014524","l":"","na":1,"nb":2,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["Pfam%3APF06804","Outer membrane protein assembly factor BamC-like C-terminal domain"],["HAMAP%3AMF_00924","Outer membrane protein assembly factor BamC [bamC]"]]},{"id":"InterPro:IPR017687","l":"","na":1,"nb":2,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["HAMAP%3AMF_00923","Outer membrane protein assembly factor BamB [bamB]"],["Pfam%3APF13360","Outer membrane protein assembly factor BamB"]]},{"id":"InterPro:IPR017689","l":"","na":1,"nb":2,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["HAMAP%3AMF_00922","Outer membrane protein assembly factor BamD [bamD]"],["Pfam%3APF13525","Outer membrane lipoprotein"]]},{"id":"InterPro:IPR024791","l":"","na":1,"nb":2,"a":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]],"b":[["Pfam%3APF00510","Cytochrome c oxidase subunit III"],["PANTHER%3APTHR11403","CYTOCHROME C OXIDASE SUBUNIT III"]]},{"id":"InterPro:IPR030689","l":"","na":1,"nb":2,"a":[["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"]],"b":[["Pfam%3APF00032","Cytochrome b(C-terminal)/b6/petD"],["Pfam%3APF00033","Cytochrome b/b6/petB"]]},{"id":"InterPro:IPR040747","l":"BILBO1, N-terminal domain","na":1,"nb":2,"a":[["cytoskeleton/ciliary_pocket_collar.html","ciliary pocket collar"]],"b":[["InterPro%3AIPR040747","BILBO1, N-terminal domain"],["Pfam%3APF18281","BILBO1 N-terminal domain"]]},{"id":"NCBITaxon:198110","l":"Pseudomonas phage 201phi2-1","na":2,"nb":1,"a":[["cytoskeleton/phuz_spindle.html","PhuZ spindle"],["other/phage_nucleus.html","phage nucleus"]],"b":[["Pfam%3APF25677","Phikzvirus chimallin family"]]},{"id":"NCBITaxon:264462","l":"Bdellovibrio bacteriovorus HD100","na":1,"nb":2,"a":[["appendage/type_iv_pilus.html","type IV pilus"]],"b":[["TED%3AAF-Q6MMM6-F1-model_v4_TED01","TED novel fold AF-Q6MMM6-F1-model_v4_TED01"],["TED%3AAF-Q6MPT8-F1-model_v4_TED01","TED novel fold AF-Q6MPT8-F1-model_v4_TED01"]]},{"id":"Pfam:PF04454","l":"Encapsulating protein for peroxidase","na":1,"nb":2,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]],"b":[["Pfam%3APF04454","Encapsulating protein for peroxidase"],["proteintraitsmech%3AINTERFACE_PF04454_PF04454","Linocin_M18–Linocin_M18 domain interface"]]},{"id":"Pfam:PF06386","l":"Gas vesicle synthesis protein GvpL/GvpF","na":1,"nb":2,"a":[["inclusion/gas_vesicle.html","gas vesicle"]],"b":[["Pfam%3APF06386","Gas vesicle synthesis protein GvpL/GvpF"],["proteintraitsmech%3AINTERFACE_PF06386_PF06386","GvpL_GvpF–GvpL_GvpF domain interface"]]},{"id":"Pfam:PF18281","l":"BILBO1 N-terminal domain","na":1,"nb":2,"a":[["cytoskeleton/ciliary_pocket_collar.html","ciliary pocket collar"]],"b":[["Pfam%3APF18281","BILBO1 N-terminal domain"],["proteintraitsmech%3AINTERFACE_PF18281_PF18281","BILBO1_N–BILBO1_N domain interface"]]},{"id":"UniProt:P11558","l":"","na":1,"nb":2,"a":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]],"b":[["RHEA%3A12532","coenzyme B + methyl-coenzyme M = methane + coenzyme M-coenzyme B heterodisulfide"],["MCSA%3A156","coenzyme-B sulfoethylthiotransferase"]]},{"id":"UniProt:P16328","l":"","na":1,"nb":2,"a":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"]],"b":[["Pfam%3APF07195","Flagellar hook-associated protein 2 C-terminus"],["Pfam%3APF02465","Flagellar hook-associated protein 2 N-terminus"]]},{"id":"UniProt:P26462","l":"","na":2,"nb":1,"a":[["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"]],"b":[["Pfam%3APF02049","Flagellar hook-basal body complex protein FliE"]]},{"id":"UniProt:P37093","l":"","na":1,"nb":2,"a":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"]],"b":[["Pfam%3APF22341","GSPII protein E, N1E domain"],["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]]},{"id":"UniProt:P45689","l":"","na":2,"nb":1,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"UniProt:P52616","l":"","na":2,"nb":1,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"]],"b":[["Pfam%3APF21504","Flagellin, barrel domain"]]},{"id":"UniProt:Q03511","l":"","na":2,"nb":1,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"UniProt:Q03512","l":"","na":2,"nb":1,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["Pfam%3APF03319","Ethanolamine utilisation protein EutN/carboxysome"]]},{"id":"UniProt:Q31QW7","l":"","na":2,"nb":1,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"]]},{"id":"CHEBI:30033","l":"","na":1,"nb":1,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"]],"b":[["proteintraitsmech%3ABIOLIP_BCL","BCL-binding site"]]},{"id":"GO:0000147","l":"actin cortical patch assembly","na":1,"nb":1,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"]],"b":[["GO%3A0000147","actin cortical patch assembly"]]},{"id":"GO:0000937","l":"dolipore septum","na":1,"nb":1,"a":[["envelope/dolipore_septum.html","dolipore septum"]],"b":[["GO%3A0000937","dolipore septum"]]},{"id":"GO:0001411","l":"hyphal tip","na":1,"nb":1,"a":[["other/spitzenkorper.html","spitzenkorper"]],"b":[["GO%3A0001411","hyphal tip"]]},{"id":"GO:0001536","l":"radial spoke stalk","na":1,"nb":1,"a":[["cytoskeleton/radial_spoke.html","radial spoke"]],"b":[["GO%3A0001536","radial spoke stalk"]]},{"id":"GO:0020003","l":"symbiont-containing vacuole","na":1,"nb":1,"a":[["membrane_organelle/parasitophorous_vacuole.html","parasitophorous vacuole"]],"b":[["GO%3A0020003","symbiont-containing vacuole"]]},{"id":"GO:0020004","l":"symbiont-containing vacuolar space","na":1,"nb":1,"a":[["membrane_organelle/parasitophorous_vacuole_lumen.html","parasitophorous vacuole lumen"]],"b":[["GO%3A0020004","symbiont-containing vacuolar space"]]},{"id":"GO:0020018","l":"ciliary pocket membrane","na":1,"nb":1,"a":[["membrane_organelle/flagellar_pocket.html","flagellar pocket"]],"b":[["GO%3A0020018","ciliary pocket membrane"]]},{"id":"GO:0020020","l":"food vacuole","na":1,"nb":1,"a":[["membrane_organelle/food_vacuole.html","food vacuole"]],"b":[["GO%3A0020020","food vacuole"]]},{"id":"GO:0020036","l":"","na":1,"nb":1,"a":[["membrane_organelle/maurer_s_cleft.html","Maurer's cleft"]],"b":[["GO%3A0020036","Maurer's cleft"]]},{"id":"GO:0030680","l":"dimeric ribonuclease P complex","na":1,"nb":1,"a":[["ribonucleoprotein/dimeric_ribonuclease_p_complex.html","dimeric ribonuclease P complex"]],"b":[["GO%3A0030680","dimeric ribonuclease P complex"]]},{"id":"GO:0031039","l":"macronucleus","na":1,"nb":1,"a":[["membrane_organelle/macronucleus.html","macronucleus"]],"b":[["GO%3A0031039","macronucleus"]]},{"id":"GO:0031040","l":"micronucleus","na":1,"nb":1,"a":[["membrane_organelle/micronucleus.html","micronucleus"]],"b":[["GO%3A0031040","micronucleus"]]},{"id":"GO:0031080","l":"nuclear pore outer ring","na":1,"nb":1,"a":[["other/nuclear_pore_outer_ring.html","nuclear pore outer ring"]],"b":[["GO%3A0031080","nuclear pore outer ring"]]},{"id":"GO:0031471","l":"ethanolamine degradation polyhedral organelle","na":1,"nb":1,"a":[["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"]],"b":[["GO%3A0031471","ethanolamine degradation polyhedral organelle"]]},{"id":"GO:0031472","l":"propanediol degradation polyhedral organelle","na":1,"nb":1,"a":[["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]],"b":[["GO%3A0031472","propanediol degradation polyhedral organelle"]]},{"id":"GO:0031521","l":"spitzenkorper","na":1,"nb":1,"a":[["other/spitzenkorper.html","spitzenkorper"]],"b":[["GO%3A0031521","spitzenkorper"]]},{"id":"GO:0031560","l":"cellular bud neck polarisome","na":1,"nb":1,"a":[["other/polarisome.html","polarisome"]],"b":[["GO%3A0031560","cellular bud neck polarisome"]]},{"id":"GO:0031562","l":"hyphal tip polarisome","na":1,"nb":1,"a":[["other/polarisome.html","polarisome"]],"b":[["GO%3A0031562","hyphal tip polarisome"]]},{"id":"GO:0031563","l":"mating projection tip polarisome","na":1,"nb":1,"a":[["other/polarisome.html","polarisome"]],"b":[["GO%3A0031563","mating projection tip polarisome"]]},{"id":"GO:0032009","l":"early phagosome","na":1,"nb":1,"a":[["membrane_organelle/phagocytic_vesicle.html","phagocytic vesicle"]],"b":[["GO%3A0032009","early phagosome"]]},{"id":"GO:0032120","l":"ascospore-type prospore membrane formation","na":1,"nb":1,"a":[["spore/prospore_membrane.html","prospore membrane"]],"b":[["GO%3A0032120","ascospore-type prospore membrane formation"]]},{"id":"GO:0033009","l":"nucleomorph","na":1,"nb":1,"a":[["membrane_organelle/nucleomorph.html","nucleomorph"]],"b":[["GO%3A0033009","nucleomorph"]]},{"id":"GO:0033172","l":"gas vesicle shell","na":1,"nb":1,"a":[["inclusion/gas_vesicle_shell.html","gas vesicle shell"]],"b":[["GO%3A0033172","gas vesicle shell"]]},{"id":"GO:0033289","l":"intraconoid microtubule","na":1,"nb":1,"a":[["cytoskeleton/intraconoid_microtubule.html","intraconoid microtubule"]],"b":[["GO%3A0033289","intraconoid microtubule"]]},{"id":"GO:0033985","l":"acidocalcisome lumen","na":1,"nb":1,"a":[["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"]],"b":[["GO%3A0033985","acidocalcisome lumen"]]},{"id":"GO:0035253","l":"ciliary rootlet","na":1,"nb":1,"a":[["cytoskeleton/ciliary_rootlet.html","ciliary rootlet"]],"b":[["GO%3A0035253","ciliary rootlet"]]},{"id":"GO:0036000","l":"mucocyst","na":1,"nb":1,"a":[["membrane_organelle/mucocyst.html","mucocyst"]],"b":[["GO%3A0036000","mucocyst"]]},{"id":"GO:0036407","l":"mycolate outer membrane","na":1,"nb":1,"a":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]],"b":[["GO%3A0036407","mycolate outer membrane"]]},{"id":"GO:0042645","l":"mitochondrial nucleoid","na":1,"nb":1,"a":[["nucleoid/mitochondrial_nucleoid.html","mitochondrial nucleoid"]],"b":[["GO%3A0042645","mitochondrial nucleoid"]]},{"id":"GO:0043263","l":"cellulosome","na":1,"nb":1,"a":[["other/cellulosome.html","cellulosome"]],"b":[["GO%3A0043263","cellulosome"]]},{"id":"GO:0044227","l":"methane-oxidizing organelle","na":1,"nb":1,"a":[["membrane_organelle/methane_oxidizing_organelle.html","methane-oxidizing organelle"]],"b":[["GO%3A0044227","methane-oxidizing organelle"]]},{"id":"GO:0044311","l":"exoneme","na":1,"nb":1,"a":[["membrane_organelle/exoneme.html","exoneme"]],"b":[["GO%3A0044311","exoneme"]]},{"id":"GO:0044611","l":"nuclear pore inner ring","na":1,"nb":1,"a":[["other/nuclear_pore_inner_ring.html","nuclear pore inner ring"]],"b":[["GO%3A0044611","nuclear pore inner ring"]]},{"id":"GO:0044612","l":"nuclear pore linkers","na":1,"nb":1,"a":[["other/nuclear_pore_linkers.html","nuclear pore linkers"]],"b":[["GO%3A0044612","nuclear pore linkers"]]},{"id":"GO:0044613","l":"nuclear pore central transport channel","na":1,"nb":1,"a":[["other/nuclear_pore_central_transport_channel.html","nuclear pore central transport channel"]],"b":[["GO%3A0044613","nuclear pore central transport channel"]]},{"id":"GO:0044614","l":"nuclear pore cytoplasmic filaments","na":1,"nb":1,"a":[["other/nuclear_pore_cytoplasmic_filaments.html","nuclear pore cytoplasmic filaments"]],"b":[["GO%3A0044614","nuclear pore cytoplasmic filaments"]]},{"id":"GO:0044615","l":"nuclear pore nuclear basket","na":1,"nb":1,"a":[["other/nuclear_pore_nuclear_basket.html","nuclear pore nuclear basket"]],"b":[["GO%3A0044615","nuclear pore nuclear basket"]]},{"id":"GO:0044674","l":"methyl coenzyme M reductase complex","na":1,"nb":1,"a":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]],"b":[["GO%3A0044674","methyl coenzyme M reductase complex"]]},{"id":"GO:0045009","l":"chitosome","na":1,"nb":1,"a":[["membrane_organelle/chitosome.html","chitosome"]],"b":[["GO%3A0045009","chitosome"]]},{"id":"GO:0046188","l":"methane catabolic process","na":1,"nb":1,"a":[["membrane_organelle/methane_oxidizing_organelle.html","methane-oxidizing organelle"]],"b":[["GO%3A0046188","methane catabolic process"]]},{"id":"GO:0055039","l":"trichocyst","na":1,"nb":1,"a":[["membrane_organelle/trichocyst.html","trichocyst"]],"b":[["GO%3A0055039","trichocyst"]]},{"id":"GO:0061909","l":"autophagosome-lysosome fusion","na":1,"nb":1,"a":[["membrane_organelle/autophagosome.html","autophagosome"]],"b":[["GO%3A0061909","autophagosome-lysosome fusion"]]},{"id":"GO:0061927","l":"TOC-TIC supercomplex I","na":1,"nb":1,"a":[["membrane_organelle/chloroplast.html","chloroplast"]],"b":[["GO%3A0061927","TOC-TIC supercomplex I"]]},{"id":"GO:0070074","l":"mononeme","na":1,"nb":1,"a":[["membrane_organelle/mononeme.html","mononeme"]],"b":[["GO%3A0070074","mononeme"]]},{"id":"GO:0070676","l":"intralumenal vesicle formation","na":1,"nb":1,"a":[["other/escrt_iv_complex.html","ESCRT IV complex"]],"b":[["GO%3A0070676","intralumenal vesicle formation"]]},{"id":"GO:0071022","l":"U12-type post-spliceosomal complex","na":1,"nb":1,"a":[["ribonucleoprotein/u12_type_post_spliceosomal_complex.html","U12-type post-spliceosomal complex"]],"b":[["GO%3A0071022","U12-type post-spliceosomal complex"]]},{"id":"GO:0097268","l":"cytoophidium","na":1,"nb":1,"a":[["cytoskeleton/cytoophidium.html","cytoophidium"]],"b":[["GO%3A0097268","cytoophidium"]]},{"id":"GO:0097568","l":"median body","na":1,"nb":1,"a":[["cytoskeleton/median_body.html","median body"]],"b":[["GO%3A0097568","median body"]]},{"id":"GO:0097691","l":"bacterial extracellular vesicle","na":1,"nb":1,"a":[["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"]],"b":[["GO%3A0097691","bacterial extracellular vesicle"]]},{"id":"GO:0097740","l":"paraflagellar rod","na":1,"nb":1,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["GO%3A0097740","paraflagellar rod"]]},{"id":"GO:0097741","l":"mastigoneme","na":1,"nb":1,"a":[["appendage/mastigoneme.html","mastigoneme"]],"b":[["GO%3A0097741","mastigoneme"]]},{"id":"GO:0098561","l":"methyl accepting chemotaxis protein complex","na":1,"nb":1,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["GO%3A0098561","methyl accepting chemotaxis protein complex"]]},{"id":"GO:0098774","l":"curli","na":1,"nb":1,"a":[["appendage/curli.html","curli"]],"b":[["GO%3A0098774","curli"]]},{"id":"GO:0110145","l":"magnetosome lumen","na":1,"nb":1,"a":[["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"]],"b":[["GO%3A0110145","magnetosome lumen"]]},{"id":"GO:0120120","l":"bilobe structure","na":1,"nb":1,"a":[["cytoskeleton/bilobe_structure.html","bilobe structure"]],"b":[["GO%3A0120120","bilobe structure"]]},{"id":"GO:0120121","l":"tripartite attachment complex","na":1,"nb":1,"a":[["cytoskeleton/tripartite_attachment_complex.html","tripartite attachment complex"]],"b":[["GO%3A0120121","tripartite attachment complex"]]},{"id":"GO:0120234","l":"stereocilium coat","na":1,"nb":1,"a":[["envelope/glycocalyx.html","glycocalyx"]],"b":[["GO%3A0120234","stereocilium coat"]]},{"id":"GO:0120238","l":"sperm glycocalyx","na":1,"nb":1,"a":[["envelope/glycocalyx.html","glycocalyx"]],"b":[["GO%3A0120238","sperm glycocalyx"]]},{"id":"GO:0120239","l":"vascular endothelial glycocalyx","na":1,"nb":1,"a":[["envelope/glycocalyx.html","glycocalyx"]],"b":[["GO%3A0120239","vascular endothelial glycocalyx"]]},{"id":"GO:0120240","l":"platelet glycocalyx","na":1,"nb":1,"a":[["envelope/glycocalyx.html","glycocalyx"]],"b":[["GO%3A0120240","platelet glycocalyx"]]},{"id":"GO:0120343","l":"radial spoke neck","na":1,"nb":1,"a":[["cytoskeleton/radial_spoke.html","radial spoke"]],"b":[["GO%3A0120343","radial spoke neck"]]},{"id":"GO:0140266","l":"Woronin body","na":1,"nb":1,"a":[["membrane_organelle/woronin_body.html","Woronin body"]],"b":[["GO%3A0140266","Woronin body"]]},{"id":"GO:0140621","l":"type I pilus","na":1,"nb":1,"a":[["appendage/type_i_pilus.html","type I pilus"]],"b":[["GO%3A0140621","type I pilus"]]},{"id":"GO:0140623","l":"type I pilus assembly","na":1,"nb":1,"a":[["appendage/type_i_pilus.html","type I pilus"]],"b":[["GO%3A0140623","type I pilus assembly"]]},{"id":"GO:0160201","l":"polaroplast","na":1,"nb":1,"a":[["membrane_organelle/polaroplast.html","polaroplast"]],"b":[["GO%3A0160201","polaroplast"]]},{"id":"GO:0160202","l":"polar tube anchoring disc","na":1,"nb":1,"a":[["spore/polar_tube_anchoring_disc.html","polar tube anchoring disc"]],"b":[["GO%3A0160202","polar tube anchoring disc"]]},{"id":"GO:0160292","l":"sodium-translocating NADH:quinone reductase complex","na":1,"nb":1,"a":[["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"]],"b":[["GO%3A0160292","sodium-translocating NADH:quinone reductase complex"]]},{"id":"GO:1990131)","l":"","na":1,"nb":1,"a":[["other/ragulator_complex.html","Ragulator complex"]],"b":[["GO%3A0071986","Ragulator complex"]]},{"id":"GO:1990225","l":"rhoptry neck","na":1,"nb":1,"a":[["membrane_organelle/rhoptry_neck.html","rhoptry neck"]],"b":[["GO%3A1990225","rhoptry neck"]]},{"id":"GO:1990413","l":"eyespot apparatus","na":1,"nb":1,"a":[["membrane_organelle/eyespot_apparatus.html","eyespot apparatus"]],"b":[["GO%3A1990413","eyespot apparatus"]]},{"id":"InterPro:IPR000067","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"]],"b":[["PRINTS%3APR01009","Flagellar M-ring protein signature"]]},{"id":"InterPro:IPR003178","l":"","na":1,"nb":1,"a":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]],"b":[["Pfam%3APF02240","Methyl-coenzyme M reductase gamma subunit"]]},{"id":"InterPro:IPR004586","l":"","na":1,"nb":1,"a":[["other/exodeoxyribonuclease_v_complex.html","exodeoxyribonuclease V complex"]],"b":[["HAMAP%3AMF_01485","RecBCD enzyme subunit RecB [recB]"]]},{"id":"InterPro:IPR005884","l":"","na":1,"nb":1,"a":[["energy_complex/fumarate_reductase_complex.html","fumarate reductase complex"]],"b":[["PROSITE%3APS00504","Fumarate reductase / succinate dehydrogenase FAD-binding site"]]},{"id":"InterPro:IPR006136","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF01312","FlhB HrpN YscU SpaS Family"]]},{"id":"InterPro:IPR006303","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF01311","Bacterial export proteins, family 1"]]},{"id":"InterPro:IPR006305","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF01313","Bacterial export proteins, family 3"]]},{"id":"InterPro:IPR006697","l":"","na":1,"nb":1,"a":[["other/exodeoxyribonuclease_v_complex.html","exodeoxyribonuclease V complex"]],"b":[["HAMAP%3AMF_01486","RecBCD enzyme subunit RecC [recC]"]]},{"id":"InterPro:IPR007824","l":"","na":1,"nb":1,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["Pfam%3APF05149","Paraflagellar rod protein"]]},{"id":"InterPro:IPR010205","l":"","na":1,"nb":1,"a":[["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"]],"b":[["HAMAP%3AMF_00430","Na(+)-translocating NADH-quinone reductase subunit F [nqrF]"]]},{"id":"InterPro:IPR010966","l":"","na":1,"nb":1,"a":[["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"]],"b":[["HAMAP%3AMF_00426","Na(+)-translocating NADH-quinone reductase subunit B [nqrB]"]]},{"id":"InterPro:IPR010967","l":"","na":1,"nb":1,"a":[["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"]],"b":[["HAMAP%3AMF_00429","Na(+)-translocating NADH-quinone reductase subunit E [nqrE]"]]},{"id":"InterPro:IPR011292","l":"","na":1,"nb":1,"a":[["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"]],"b":[["HAMAP%3AMF_00428","Na(+)-translocating NADH-quinone reductase subunit D [nqrD]"]]},{"id":"InterPro:IPR012823","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF02050","Flagellar FliJ protein"]]},{"id":"InterPro:IPR014207","l":"","na":1,"nb":1,"a":[["energy_complex/cytochrome_o_ubiquinol_oxidase_complex.html","cytochrome o ubiquinol oxidase complex"]],"b":[["PROSITE%3APS00077","Heme-copper oxidase catalytic subunit, copper B binding region signature"]]},{"id":"InterPro:IPR014210","l":"","na":1,"nb":1,"a":[["energy_complex/cytochrome_o_ubiquinol_oxidase_complex.html","cytochrome o ubiquinol oxidase complex"]],"b":[["Pfam%3APF03626","Prokaryotic Cytochrome C oxidase subunit IV"]]},{"id":"InterPro:IPR023707","l":"","na":1,"nb":1,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["HAMAP%3AMF_01430","Outer membrane protein assembly factor BamA [bamA]"]]},{"id":"InterPro:IPR047743","l":"","na":1,"nb":1,"a":[["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]],"b":[["Pfam%3APF28012","Membrane protein YnhF-like"]]},{"id":"Pfam:PF05149","l":"Paraflagellar rod protein","na":1,"nb":1,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["Pfam%3APF05149","Paraflagellar rod protein"]]},{"id":"UniProt:A0QQ46","l":"","na":1,"nb":1,"a":[["secretion_system/esx_3_type_vii_secretion_system_membrane_complex.html","ESX-3 type VII secretion system membrane complex"]],"b":[["Pfam%3APF19053","EccD-like transmembrane domain"]]},{"id":"UniProt:O85041","l":"","na":1,"nb":1,"a":[["microcompartment/carboxysome.html","carboxysome"]],"b":[["Pfam%3APF12288","Carboxysome shell peptide mid-region"]]},{"id":"UniProt:P0A1C7","l":"","na":1,"nb":1,"a":[["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]],"b":[["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"UniProt:P0A1K1","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF02050","Flagellar FliJ protein"]]},{"id":"UniProt:P0A1N8","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"]],"b":[["proteintraitsmech%3ABIOLIP_TQN","TQN-binding site"]]},{"id":"UniProt:P0A314","l":"","na":1,"nb":1,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"]],"b":[["Pfam%3APF02043","Bacteriochlorophyll C binding protein"]]},{"id":"UniProt:P0A3F8","l":"","na":1,"nb":1,"a":[["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]],"b":[["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]]},{"id":"UniProt:P0A3W0","l":"","na":1,"nb":1,"a":[["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]],"b":[["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"]]},{"id":"UniProt:P0A8Q0.","l":"","na":1,"nb":1,"a":[["energy_complex/fumarate_reductase_complex.html","fumarate reductase complex"]],"b":[["proteintraitsmech%3ABIOLIP_MQ7","MQ7-binding site"]]},{"id":"UniProt:P0ABB4","l":"","na":1,"nb":1,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"]]},{"id":"UniProt:P11560","l":"","na":1,"nb":1,"a":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]],"b":[["MCSA%3A156","coenzyme-B sulfoethylthiotransferase"]]},{"id":"UniProt:P11562","l":"","na":1,"nb":1,"a":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]],"b":[["MCSA%3A156","coenzyme-B sulfoethylthiotransferase"]]},{"id":"UniProt:P14016","l":"","na":1,"nb":1,"a":[["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]],"b":[["Pfam%3APF10628","Outer spore coat protein E (CotE)"]]},{"id":"UniProt:P22225","l":"","na":1,"nb":1,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["Pfam%3APF05149","Paraflagellar rod protein"]]},{"id":"UniProt:P26418","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]],"b":[["Pfam%3APF02154","Flagellar motor switch protein FliM"]]},{"id":"UniProt:P26419","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]],"b":[["Pfam%3APF16973","Flagellar motor switch protein FliN N-terminal"]]},{"id":"UniProt:P27134","l":"","na":1,"nb":1,"a":[["microcompartment/carboxysome.html","carboxysome"]],"b":[["PROSITE%3APS00704","Prokaryotic-type carbonic anhydrases signature 1"]]},{"id":"UniProt:P40727","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF01312","FlhB HrpN YscU SpaS Family"]]},{"id":"UniProt:P41784","l":"","na":1,"nb":1,"a":[["secretion_system/type_iii_protein_secretion_system_complex.html","type III protein secretion system complex"]],"b":[["proteintraitsmech%3ABIOLIP_DXC","DXC-binding site"]]},{"id":"UniProt:P41791","l":"","na":1,"nb":1,"a":[["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"]],"b":[["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"UniProt:P41792","l":"","na":1,"nb":1,"a":[["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"]],"b":[["Pfam%3APF03319","Ethanolamine utilisation protein EutN/carboxysome"]]},{"id":"UniProt:P54702","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF01311","Bacterial export proteins, family 1"]]},{"id":"UniProt:P70856","l":"","na":1,"nb":1,"a":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]],"b":[["Pfam%3APF04620","Flagellar filament outer layer protein Flaa"]]},{"id":"UniProt:P75471","l":"","na":1,"nb":1,"a":[["appendage/attachment_organelle.html","attachment organelle"]],"b":[["Pfam%3APF27734","Cytadherence high molecular weight protein 2"]]},{"id":"UniProt:P9WHT9","l":"","na":1,"nb":1,"a":[["other/proteasome_core_complex.html","proteasome core complex"]],"b":[["proteintraitsmech%3ABIOLIP_SA6","SA6-binding site"]]},{"id":"UniProt:Q06851","l":"","na":1,"nb":1,"a":[["other/cellulosome.html","cellulosome"]],"b":[["Pfam%3APF00963","Cohesin domain"]]},{"id":"UniProt:Q26789","l":"","na":1,"nb":1,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["Pfam%3APF05149","Paraflagellar rod protein"]]},{"id":"UniProt:Q46367","l":"","na":1,"nb":1,"a":[["membrane_organelle/chlorosome.html","chlorosome"]],"b":[["Pfam%3APF11098","Chlorosome envelope protein C"]]},{"id":"UniProt:Q46383","l":"","na":1,"nb":1,"a":[["membrane_organelle/chlorosome.html","chlorosome"]],"b":[["Pfam%3APF27499","CsmB chlorosome envelope protein"]]},{"id":"UniProt:Q46386","l":"","na":1,"nb":1,"a":[["membrane_organelle/chlorosome.html","chlorosome"]],"b":[["Pfam%3APF02043","Bacteriochlorophyll C binding protein"]]},{"id":"UniProt:Q9XDM8","l":"","na":1,"nb":1,"a":[["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]],"b":[["Pfam%3APF00936","BMC domain"]]}]} \ No newline at end of file +{"a":"CellStructureMech","b":"ProteinTraitsMech","base":{"CellStructureMech":"https://culturebotai.github.io/CellStructureMech/pages/structures/","ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record="},"n":1058,"by":{"GO":737,"UniProt":155,"NCBITaxon":77,"InterPro":64,"CHEBI":15,"Pfam":10},"terms":[{"id":"GO:0032991","l":"protein-containing complex","na":37,"nb":17037,"a":[["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/stalk_crossband.html","stalk crossband"],["cytoskeleton/eisosome_filament.html","eisosome filament"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["other/chaperonin_containing_t_complex.html","chaperonin-containing T-complex"],["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["ComplexPortal%3ACPX-5225","28S mitochondrial small ribosomal subunit"],["ComplexPortal%3ACPX-5301","28S mitochondrial small ribosomal subunit"],["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["ComplexPortal%3ACPX-10315","37S mitochondrial small ribosomal subunit"],["ComplexPortal%3ACPX-1603","37S mitochondrial small ribosomal subunit"],["ComplexPortal%3ACPX-5226","39S mitochondrial large ribosomal subunit"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":31,"nb":145,"a":[["appendage/curli.html","curli"],["appendage/p_pilus.html","P pilus"],["appendage/pilus.html","pilus"],["appendage/type_i_pilus.html","type I pilus"],["cytoskeleton/parm_filament.html","ParM filament"],["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]],"b":[["IDPO%3A0000033","flexible linker"],["IDPO%3A0000014","order to disorder"],["IDPO%3A0000004","pre-molten globule"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"]]},{"id":"NCBITaxon:3055","l":"Chlamydomonas reinhardtii","na":58,"nb":27,"a":[["appendage/ciliary_membrane.html","ciliary membrane"],["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"],["appendage/mastigoneme.html","mastigoneme"],["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_a_tubule_inner_sheath.html","axonemal A tubule inner sheath"]],"b":[["Pfam%3APF01333","Apocytochrome F, C-terminal"],["Pfam%3APF16639","Apocytochrome F, N-terminal"],["Pfam%3APF00430","ATP synthase B/B' CF(0)"],["Pfam%3APF00401","ATP synthase, Delta/Epsilon chain, long alpha-helix domain"],["Pfam%3APF21771","CFAP58 central coiled coil"],["Pfam%3APF27956","CFAP99 V-shaped coiled-coil domain"]]},{"id":"GO:0016020","l":"membrane","na":23,"nb":3003,"a":[["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["envelope/cell_outer_membrane.html","cell outer membrane"],["envelope/cellular_bud_membrane.html","cellular bud membrane"],["envelope/plasma_membrane.html","plasma membrane"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"]],"b":[["ComplexPortal%3ACPX-1813","1,3-beta-D-glucan synthase complex, FKS2-RHO1 variant"],["ComplexPortal%3ACPX-4313","Aliphatic sulfonate ABC transporter complex"],["ComplexPortal%3ACPX-4314","Arabinose ABC transporter complex"],["ComplexPortal%3ACPX-4318","Arginine ABC transporter complex, artI variant"],["ComplexPortal%3ACPX-4319","Arginine ABC transporter complex, artJ variant"],["ComplexPortal%3ACPX-6308","ATP10B-CDC50A P4-ATPase complex"]]},{"id":"GO:0043231","l":"intracellular membrane-bounded organelle","na":22,"nb":930,"a":[["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"],["membrane_organelle/exoneme.html","exoneme"],["membrane_organelle/ferrosome.html","ferrosome"],["membrane_organelle/golgi_apparatus.html","Golgi apparatus"]],"b":[["GO%3A0020022","acidocalcisome"],["GO%3A0044222","anammoxosome"],["GO%3A0033099","attachment organelle"],["GO%3A0005801","cis-Golgi network"],["GO%3A0005783","endoplasmic reticulum"],["GO%3A0005793","endoplasmic reticulum-Golgi intermediate compartment"]]},{"id":"NCBITaxon:99287","l":"Salmonella enterica subsp. enterica serovar Typhimurium str. LT2","na":16,"nb":167,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"],["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"]],"b":[["Pfam%3APF16031","TonB polyproline region"],["Pfam%3APF13521","AAA domain"],["Pfam%3APF26341","tRNA 2-selenouridine synthase AAA domain"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"],["Pfam%3APF09317","Acyl-CoA dehydrogenase, C-terminal, bacterial type"],["Pfam%3APF06315","Isocitrate dehydrogenase kinase/phosphatase (AceK) kinase domain"]]},{"id":"GO:0005856","l":"cytoskeleton","na":16,"nb":148,"a":[["cytoskeleton/alfa_filament.html","AlfA filament"],["cytoskeleton/bactofilin_filament.html","bactofilin filament"],["cytoskeleton/bilobe_structure.html","bilobe structure"],["cytoskeleton/btubab_bacterial_microtubule.html","BtubAB bacterial microtubule"],["cytoskeleton/cetz_filament.html","CetZ filament"],["cytoskeleton/ciliary_basal_body.html","ciliary basal body"]],"b":[["GO%3A0015629","actin cytoskeleton"],["GO%3A0030863","cortical cytoskeleton"],["GO%3A0005856","cytoskeleton"],["GO%3A0045111","intermediate filament cytoskeleton"],["GO%3A0015630","microtubule cytoskeleton"],["GO%3A0033011","perinuclear theca"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli K-12","na":15,"nb":17470,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]],"b":[["EC%3A1.1.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.16.-.-","Oxidizing metal ions"],["EC%3A1.18.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.7.-","With an iron-sulfur protein as acceptor"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":14,"nb":15,"a":[["cytoskeleton/alfa_filament.html","AlfA filament"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]],"b":[["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["Pfam%3APF14562","Restriction endonuclease BglI"],["Pfam%3APF09195","Restriction endonuclease BglII/BglIII"],["Pfam%3APF09208","Restriction endonuclease MspI"]]},{"id":"GO:0005737","l":"cytoplasm","na":13,"nb":2018,"a":[["envelope/plasma_membrane.html","plasma membrane"],["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"],["membrane_organelle/mitosome.html","mitosome"]],"b":[["ComplexPortal%3ACPX-3921","2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["ComplexPortal%3ACPX-1599","40S cytosolic small ribosomal subunit"],["ComplexPortal%3ACPX-5223","40S cytosolic small ribosomal subunit"],["ComplexPortal%3ACPX-5261","40S cytosolic small ribosomal subunit"],["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"]]},{"id":"GO:0005789","l":"endoplasmic reticulum membrane","na":13,"nb":218,"a":[["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"],["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"],["membrane_organelle/endoplasmic_reticulum_lumen.html","endoplasmic reticulum lumen"],["membrane_organelle/endoplasmic_reticulum_membrane.html","endoplasmic reticulum membrane"],["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"],["other/copii_vesicle_coat.html","COPII vesicle coat"]],"b":[["ComplexPortal%3ACPX-8021","BOS complex, NOMO1 variant"],["ComplexPortal%3ACPX-8022","BOS complex, NOMO2 variant"],["ComplexPortal%3ACPX-8023","BOS complex, NOMO3 variant"],["ComplexPortal%3ACPX-2211","Commander complex"],["ComplexPortal%3ACPX-6701","Dehydrodolichyl diphosphate synthase complex"],["ComplexPortal%3ACPX-6268","Dolichol-phosphate mannosyltransferase complex"]]},{"id":"GO:0005743","l":"mitochondrial inner membrane","na":13,"nb":108,"a":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"],["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrial_intermembrane_space.html","mitochondrial intermembrane space"],["membrane_organelle/mitochondrial_matrix.html","mitochondrial matrix"]],"b":[["ComplexPortal%3ACPX-5225","28S mitochondrial small ribosomal subunit"],["ComplexPortal%3ACPX-5301","28S mitochondrial small ribosomal subunit"],["ComplexPortal%3ACPX-1603","37S mitochondrial small ribosomal subunit"],["ComplexPortal%3ACPX-5226","39S mitochondrial large ribosomal subunit"],["ComplexPortal%3ACPX-5302","39S mitochondrial large ribosomal subunit"],["ComplexPortal%3ACPX-1602","54S mitochondrial large ribosomal subunit"]]},{"id":"GO:0010008","l":"endosome membrane","na":13,"nb":60,"a":[["membrane_organelle/early_endosome_membrane.html","early endosome membrane"],["membrane_organelle/endosome.html","endosome"],["membrane_organelle/endosome_lumen.html","endosome lumen"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/late_endosome_membrane.html","late endosome membrane"]],"b":[["ComplexPortal%3ACPX-2211","Commander complex"],["ComplexPortal%3ACPX-5424","Endosomal SNARE complex PEP12-VTI1-SYN8-SNC1"],["ComplexPortal%3ACPX-5461","Endosomal SNARE complex PEP12-VTI1-SYN8-SNC2"],["ComplexPortal%3ACPX-5421","Endosomal SNARE complex PEP12-VTI1-SYN8-YKT6"],["ComplexPortal%3ACPX-5423","Endosomal SNARE complex PEP12-VTI1-TLG1-SNC1"],["ComplexPortal%3ACPX-5462","Endosomal SNARE complex PEP12-VTI1-TLG1-SNC2"]]},{"id":"GO:0009767","l":"photosynthetic electron transport chain","na":13,"nb":13,"a":[["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/photosystem_i.html","photosystem I"],["energy_complex/photosystem_ii.html","photosystem II"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]],"b":[["GO%3A0009767","photosynthetic electron transport chain"],["GO%3A0009773","photosynthetic electron transport in photosystem I"],["GO%3A0009772","photosynthetic electron transport in photosystem II"],["NCBIfam%3ATIGR01332","cytochrome b559 subunit alpha"],["NCBIfam%3ATIGR01333","cytochrome b559 subunit beta"],["NCBIfam%3ATIGR01156","cytochrome b6-f complex subunit IV"]]},{"id":"GO:0000139","l":"Golgi membrane","na":12,"nb":67,"a":[["membrane_organelle/cis_golgi_network_membrane.html","cis-Golgi network membrane"],["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/golgi_apparatus.html","Golgi apparatus"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"]],"b":[["ComplexPortal%3ACPX-7803","COPI vesicle coat complex, COPG1-COPZ1 variant"],["ComplexPortal%3ACPX-7970","COPI vesicle coat complex, COPG1-COPZ2 variant"],["ComplexPortal%3ACPX-7969","COPI vesicle coat complex, COPG2-COPZ1 variant"],["ComplexPortal%3ACPX-5424","Endosomal SNARE complex PEP12-VTI1-SYN8-SNC1"],["ComplexPortal%3ACPX-5461","Endosomal SNARE complex PEP12-VTI1-SYN8-SNC2"],["ComplexPortal%3ACPX-5421","Endosomal SNARE complex PEP12-VTI1-SYN8-YKT6"]]},{"id":"GO:0005768","l":"endosome","na":12,"nb":50,"a":[["membrane_organelle/early_endosome.html","early endosome"],["membrane_organelle/endosome.html","endosome"],["membrane_organelle/endosome_lumen.html","endosome lumen"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/recycling_endosome.html","recycling endosome"]],"b":[["ComplexPortal%3ACPX-1153","BLOC-1 complex"],["ComplexPortal%3ACPX-6241","CHEVI tethering complex"],["ComplexPortal%3ACPX-362","Heparanase complex"],["GO%3A0005769","early endosome"],["GO%3A0036019","endolysosome"],["GO%3A0005768","endosome"]]},{"id":"GO:0005930","l":"axoneme","na":12,"nb":26,"a":[["appendage/cilium.html","cilium"],["appendage/paraflagellar_rod.html","paraflagellar rod"],["cytoskeleton/axonemal_central_apparatus.html","axonemal central apparatus"],["cytoskeleton/axonemal_doublet_microtubule.html","axonemal doublet microtubule"],["cytoskeleton/axonemal_dynein_complex.html","axonemal dynein complex"],["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"]],"b":[["ComplexPortal%3ACPX-8086","Nexin-dynein regulatory complex"],["ComplexPortal%3ACPX-2626","Outer dynein arm-docking complex"],["ComplexPortal%3ACPX-8163","Radial spoke complex, ciliiar variant"],["GO%3A0005930","axoneme"],["Pfam%3APF24161","Coiled-coil domain-containing protein 39"],["PANTHER%3APTHR46625","72 KDA INOSITOL POLYPHOSPHATE 5-PHOSPHATASE"]]},{"id":"GO:0030659","l":"cytoplasmic vesicle membrane","na":12,"nb":24,"a":[["membrane_organelle/autophagosome_membrane.html","autophagosome membrane"],["membrane_organelle/clathrin_coated_vesicle_membrane.html","clathrin-coated vesicle membrane"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"],["membrane_organelle/cvt_vesicle_membrane.html","Cvt vesicle membrane"],["membrane_organelle/cytoplasmic_vesicle.html","cytoplasmic vesicle"],["membrane_organelle/cytoplasmic_vesicle_lumen.html","cytoplasmic vesicle lumen"]],"b":[["ComplexPortal%3ACPX-8427","ZNT1-ZNT3 proton-coupled zinc antiporter complex"],["ComplexPortal%3ACPX-8428","ZNT2-ZNT3 proton-coupled zinc antiporter complex"],["GO%3A0032578","aleurone grain membrane"],["GO%3A0030661","chitosome membrane"],["GO%3A0030662","coated vesicle membrane"],["GO%3A0031164","contractile vacuolar membrane"]]},{"id":"GO:0097525","l":"spliceosomal snRNP complex","na":12,"nb":18,"a":[["ribonucleoprotein/u11_snrnp.html","U11 snRNP"],["ribonucleoprotein/u11_u12_snrnp.html","U11/U12 snRNP"],["ribonucleoprotein/u12_snrnp.html","U12 snRNP"],["ribonucleoprotein/u1_snrnp.html","U1 snRNP"],["ribonucleoprotein/u2_snrnp.html","U2 snRNP"],["ribonucleoprotein/u4_snrnp.html","U4 snRNP"]],"b":[["GO%3A0071003","penta-snRNP complex"],["GO%3A0071024","SL snRNP"],["GO%3A0097525","spliceosomal snRNP complex"],["GO%3A0097526","spliceosomal tri-snRNP complex"],["GO%3A0005685","U1 snRNP"],["GO%3A0005692","U11 snRNP"]]},{"id":"GO:0042651","l":"thylakoid membrane","na":12,"nb":14,"a":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/phycobilisome.html","phycobilisome"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"]],"b":[["GO%3A0070118","organellar chromatophore thylakoid membrane"],["GO%3A0031676","plasma membrane-derived thylakoid membrane"],["GO%3A0055035","plastid thylakoid membrane"],["GO%3A0042651","thylakoid membrane"],["NCBIfam%3ANF013497","Apocytochrome F, C-terminal"],["NCBIfam%3ATIGR01156","cytochrome b6-f complex subunit IV"]]},{"id":"GO:0031410","l":"cytoplasmic vesicle","na":11,"nb":138,"a":[["membrane_organelle/chitosome.html","chitosome"],["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/cvt_vesicle.html","Cvt vesicle"],["membrane_organelle/cytoplasmic_vesicle.html","cytoplasmic vesicle"],["membrane_organelle/cytoplasmic_vesicle_lumen.html","cytoplasmic vesicle lumen"],["membrane_organelle/cytoplasmic_vesicle_membrane.html","cytoplasmic vesicle membrane"]],"b":[["GO%3A0033095","aleurone grain"],["GO%3A1990006","amorphous vesicle"],["GO%3A0043702","carotenoid vesicle"],["GO%3A0045009","chitosome"],["GO%3A0062247","chloroplast vesicle"],["GO%3A0097721","ciliary vesicle"]]},{"id":"GO:0043233","l":"organelle lumen","na":11,"nb":36,"a":[["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/endoplasmic_reticulum_lumen.html","endoplasmic reticulum lumen"],["membrane_organelle/esterosome_lumen.html","esterosome lumen"],["membrane_organelle/glycosome_lumen.html","glycosome lumen"],["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/hydrogenosome_lumen.html","hydrogenosome lumen"]],"b":[["GO%3A0070013","intracellular organelle lumen"],["GO%3A0043233","organelle lumen"],["GO%3A0034591","rhoptry lumen"],["GO%3A0120203","rod photoreceptor disc lumen"],["GO%3A0031983","vesicle lumen"],["PANTHER%3APTHR13457","BAP28"]]},{"id":"GO:0005886","l":"plasma membrane","na":10,"nb":861,"a":[["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["appendage/prostheca.html","prostheca"],["envelope/cellular_bud_membrane.html","cellular bud membrane"],["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"],["envelope/plasma_membrane.html","plasma membrane"]],"b":[["ComplexPortal%3ACPX-2838","3M complex"],["ComplexPortal%3ACPX-850","AHNAK - Annexin A2 - S100-A10 complex"],["ComplexPortal%3ACPX-6581","Alpha-beta T cell receptor complex, TRBC1 variant"],["ComplexPortal%3ACPX-6482","Alpha-beta T cell receptor complex, TRBC2 variant"],["ComplexPortal%3ACPX-2188","Amiloride-sensitive sodium channel complex, alpha-beta-gamma"],["ComplexPortal%3ACPX-3582","AMT1-1 - AMT1-3 heterotrimer, variant 1"]]},{"id":"GO:0005794","l":"Golgi apparatus","na":10,"nb":93,"a":[["membrane_organelle/cis_golgi_network.html","cis-Golgi network"],["membrane_organelle/cis_golgi_network_membrane.html","cis-Golgi network membrane"],["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"],["membrane_organelle/golgi_apparatus.html","Golgi apparatus"],["membrane_organelle/golgi_cisterna.html","Golgi cisterna"],["membrane_organelle/golgi_cisterna_membrane.html","Golgi cisterna membrane"]],"b":[["ComplexPortal%3ACPX-26603","ATP9A-DOP1B-MON2, golgi transporter complex"],["ComplexPortal%3ACPX-26602","DOP1A-MON2, golgi-endosome traffic complex"],["ComplexPortal%3ACPX-8422","HAS1-HAS2 hyaluronan biosynthesis complex"],["ComplexPortal%3ACPX-8410","HAS1-HAS3 hyaluronan biosynthesis complex"],["ComplexPortal%3ACPX-8481","HAS1 hyaluronan biosynthesis complex"],["ComplexPortal%3ACPX-8424","HAS2-HAS3 hyaluronan biosynthesis complex"]]},{"id":"GO:0000776","l":"kinetochore","na":10,"nb":59,"a":[["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"],["other/cbf3_complex.html","CBF3 complex"],["other/coma_complex.html","COMA complex"],["other/dash_complex.html","DASH complex"],["other/kinetochore.html","kinetochore"]],"b":[["ComplexPortal%3ACPX-1898","CBF3 complex"],["ComplexPortal%3ACPX-1156","Central kinetochore CTF19 complex"],["ComplexPortal%3ACPX-10081","DASH complex"],["ComplexPortal%3ACPX-5644","Kinetochore KNL1 complex"],["ComplexPortal%3ACPX-5702","Kinetochore KNL1 complex"],["ComplexPortal%3ACPX-1186","Kinetochore MIS12 complex"]]},{"id":"GO:0005874","l":"microtubule","na":10,"nb":50,"a":[["cytoskeleton/ciliary_basal_body.html","ciliary basal body"],["cytoskeleton/funis.html","funis"],["cytoskeleton/intraconoid_microtubule.html","intraconoid microtubule"],["cytoskeleton/median_body.html","median body"],["cytoskeleton/microtubule.html","microtubule"],["cytoskeleton/mitotic_spindle.html","mitotic spindle"]],"b":[["ComplexPortal%3ACPX-806","Ndc80 complex"],["ComplexPortal%3ACPX-4143","Pyrin inflammasome"],["ComplexPortal%3ACPX-4244","Pyrin inflammasome"],["ComplexPortal%3ACPX-811","Ska1 complex"],["ComplexPortal%3ACPX-2572","Tubulin polyglutamylase complex"],["GO%3A0005881","cytoplasmic microtubule"]]},{"id":"GO:0009536","l":"plastid","na":10,"nb":33,"a":[["membrane_organelle/apicoplast.html","apicoplast"],["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/nucleomorph.html","nucleomorph"],["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/plastid.html","plastid"]],"b":[["GO%3A0009501","amyloplast"],["GO%3A0020011","apicoplast"],["GO%3A0009507","chloroplast"],["GO%3A0009509","chromoplast"],["GO%3A0009842","cyanelle"],["GO%3A0009513","etioplast"]]},{"id":"GO:0072583","l":"clathrin-dependent endocytosis","na":10,"nb":18,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle.html","clathrin-coated endocytic vesicle"],["membrane_organelle/clathrin_coated_endocytic_vesicle_membrane.html","clathrin-coated endocytic vesicle membrane"],["membrane_organelle/clathrin_coated_vesicle.html","clathrin-coated vesicle"],["other/ap_2_adaptor_complex.html","AP-2 adaptor complex"],["other/clathrin_coat.html","clathrin coat"],["other/clathrin_coat_of_coated_pit.html","clathrin coat of coated pit"]],"b":[["ComplexPortal%3ACPX-5149","AP-2 Adaptor complex, alpha1 variant"],["ComplexPortal%3ACPX-5152","AP-2 Adaptor complex, alpha1 variant"],["ComplexPortal%3ACPX-5150","AP-2 Adaptor complex, alpha2 variant"],["ComplexPortal%3ACPX-5153","AP-2 Adaptor complex, alpha2 variant"],["ComplexPortal%3ACPX-26725","Clathrin, endocytosis-mediating complex, CLTA-CLTB mixed lattice variant"],["ComplexPortal%3ACPX-26726","Clathrin, endocytosis-mediating complex, CLTA-CLTB mixed lattice variant"]]},{"id":"GO:0005682","l":"U5 snRNP","na":10,"nb":13,"a":[["ribonucleoprotein/u12_type_catalytic_step_1_spliceosome.html","U12-type catalytic step 1 spliceosome"],["ribonucleoprotein/u12_type_catalytic_step_2_spliceosome.html","U12-type catalytic step 2 spliceosome"],["ribonucleoprotein/u12_type_post_mrna_release_spliceosomal_complex.html","U12-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u12_type_post_spliceosomal_complex.html","U12-type post-spliceosomal complex"],["ribonucleoprotein/u2_type_catalytic_step_1_spliceosome.html","U2-type catalytic step 1 spliceosome"],["ribonucleoprotein/u2_type_catalytic_step_2_spliceosome.html","U2-type catalytic step 2 spliceosome"]],"b":[["ComplexPortal%3ACPX-43","Sm complex"],["ComplexPortal%3ACPX-6033","Sm complex"],["ComplexPortal%3ACPX-26421","U5 small nuclear ribonucleoprotein complete complex"],["ComplexPortal%3ACPX-26552","U5 small nuclear ribonucleoprotein complex, AAR2 variant"],["ComplexPortal%3ACPX-30","U5 small nuclear ribonucleoprotein complex, AAR2 variant"],["ComplexPortal%3ACPX-29","U5 small nuclear ribonucleoprotein complex"]]},{"id":"NCBITaxon:44689","l":"Dictyostelium discoideum","na":9,"nb":151,"a":[["membrane_organelle/contractile_vacuole.html","contractile vacuole"],["membrane_organelle/contractile_vacuole_complex.html","contractile vacuole complex"],["membrane_organelle/esterosome.html","esterosome"],["membrane_organelle/esterosome_lumen.html","esterosome lumen"],["membrane_organelle/esterosome_membrane.html","esterosome membrane"],["membrane_organelle/phagocytic_vesicle.html","phagocytic vesicle"]],"b":[["IDPO%3A0000002","disorder"],["IDPO%3A0000030","entropic chain"],["IDPO%3A0000006","order"],["IDPO%3A0000058","self-activation"],["Pfam%3APF23297","Highly reducing polyketide synthase sdgA, C-terminal ACP domain"],["Pfam%3APF09192","Actin-fragmin kinase, catalytic"]]},{"id":"GO:0005643","l":"nuclear pore","na":9,"nb":41,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nucleus.html","nucleus"],["other/nuclear_pore.html","nuclear pore"],["other/nuclear_pore_central_transport_channel.html","nuclear pore central transport channel"],["other/nuclear_pore_cytoplasmic_filaments.html","nuclear pore cytoplasmic filaments"],["other/nuclear_pore_inner_ring.html","nuclear pore inner ring"]],"b":[["ComplexPortal%3ACPX-4747","E3 ligase (RANBP2) complex"],["ComplexPortal%3ACPX-4921","E3 ligase (RANBP2) complex"],["ComplexPortal%3ACPX-2568","Nuclear pore complex"],["ComplexPortal%3ACPX-4474","Nuclear pore complex"],["ComplexPortal%3ACPX-824","Nuclear pore complex"],["ComplexPortal%3ACPX-873","Nuclear pore complex"]]},{"id":"GO:0019684","l":"photosynthesis, light reaction","na":9,"nb":39,"a":[["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"]],"b":[["GO%3A0019684","photosynthesis, light reaction"],["NCBIfam%3ANF058510","bifunctional rod-capping linker CpcD/ferredoxin--NADP reductase PetH"],["NCBIfam%3ATIGR01332","cytochrome b559 subunit alpha"],["NCBIfam%3ATIGR01333","cytochrome b559 subunit beta"],["NCBIfam%3ANF043009","cytochrome c-554 Puf2C"],["NCBIfam%3ANF040862","light-harvesting antenna LH1, beta subunit"]]},{"id":"GO:0060205","l":"cytoplasmic vesicle lumen","na":9,"nb":18,"a":[["membrane_organelle/autophagosome_lumen.html","autophagosome lumen"],["membrane_organelle/clathrin_coated_vesicle_lumen.html","clathrin-coated vesicle lumen"],["membrane_organelle/copi_coated_vesicle_lumen.html","COPI-coated vesicle lumen"],["membrane_organelle/copii_coated_vesicle_lumen.html","COPII-coated vesicle lumen"],["membrane_organelle/cvt_vesicle_lumen.html","Cvt vesicle lumen"],["membrane_organelle/cytoplasmic_vesicle.html","cytoplasmic vesicle"]],"b":[["GO%3A0034422","aleurone grain lumen"],["GO%3A0060202","clathrin-sculpted acetylcholine transport vesicle lumen"],["GO%3A0061201","clathrin-sculpted gamma-aminobutyric acid transport vesicle lumen"],["GO%3A0060204","clathrin-sculpted glutamate transport vesicle lumen"],["GO%3A0070082","clathrin-sculpted monoamine transport vesicle lumen"],["GO%3A0106172","COPI-coated vesicle lumen"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":15,"nb":9,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]],"b":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF25954","CusB-like, beta-barrel domain"],["Pfam%3APF13438","Domain of unknown function (DUF4113)"],["Pfam%3APF03767","HAD superfamily, subfamily IIIB (Acid phosphatase)"],["Pfam%3APF03496","ADP-ribosyltransferase exoenzyme"]]},{"id":"GO:0009941","l":"chloroplast envelope","na":9,"nb":12,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_inner_membrane.html","chloroplast inner membrane"],["membrane_organelle/chloroplast_intermembrane_space.html","chloroplast intermembrane space"],["membrane_organelle/chloroplast_membrane.html","chloroplast membrane"],["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"]],"b":[["GO%3A0009941","chloroplast envelope"],["PANTHER%3APTHR47283","ENT-KAURENE OXIDASE, CHLOROPLASTIC"],["PANTHER%3APTHR36737","EXPRESSED PROTEIN"],["PANTHER%3APTHR31038","EXPRESSED PROTEIN-RELATED"],["PANTHER%3APTHR34048","LOW-DENSITY RECEPTOR-LIKE PROTEIN"],["PANTHER%3APTHR34809","MALTOSE EXCESS PROTEIN 1, CHLOROPLASTIC-RELATED"]]},{"id":"GO:0030119","l":"AP-type membrane coat adaptor complex","na":9,"nb":12,"a":[["other/ap_3_adaptor_complex.html","AP-3 adaptor complex"],["other/ap_4_adaptor_complex.html","AP-4 adaptor complex"],["other/ap_5_adaptor_complex.html","AP-5 adaptor complex"],["other/ap_type_membrane_coat_adaptor_complex.html","AP-type membrane coat adaptor complex"],["other/clathrin_coat.html","clathrin coat"],["other/clathrin_coat_of_endocytic_vesicle.html","clathrin coat of endocytic vesicle"]],"b":[["GO%3A0030123","AP-3 adaptor complex"],["GO%3A0030124","AP-4 adaptor complex"],["GO%3A0044599","AP-5 adaptor complex"],["GO%3A0030119","AP-type membrane coat adaptor complex"],["GO%3A0030131","clathrin adaptor complex"],["PANTHER%3APTHR22780","ADAPTIN, ALPHA/GAMMA/EPSILON"]]},{"id":"GO:0009425","l":"bacterial-type flagellum basal body","na":10,"nb":9,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"],["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"]],"b":[["GO%3A0009425","bacterial-type flagellum basal body"],["NCBIfam%3ANF005435","flagellar basal body-associated protein FliL"],["NCBIfam%3ANF005995","flagellar motor switch phosphatase FliY"],["NCBIfam%3ANF005194","flagellar motor switch protein FliM"],["NCBIfam%3ANF006273","flagellar motor switch protein FliN"],["NCBIfam%3ANF006272","flagellar motor switch protein FliY"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":8,"nb":49554,"a":[["other/ap_5_adaptor_complex.html","AP-5 adaptor complex"],["ribonucleoprotein/u11_snrnp.html","U11 snRNP"],["ribonucleoprotein/u11_u12_snrnp.html","U11/U12 snRNP"],["ribonucleoprotein/u12_snrnp.html","U12 snRNP"],["ribonucleoprotein/u4atac_snrnp.html","U4atac snRNP"],["ribonucleoprotein/u4atac_u6atac_snrnp.html","U4atac/U6atac snRNP"]],"b":[["EC%3A1.1.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.1.98.-","With other, known, acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"]]},{"id":"GO:0031090","l":"organelle membrane","na":8,"nb":270,"a":[["membrane_organelle/apicomplexan_dense_granule_membrane.html","apicomplexan dense granule membrane"],["membrane_organelle/microneme_membrane.html","microneme membrane"],["membrane_organelle/mitosome_inner_membrane.html","mitosome inner membrane"],["membrane_organelle/mitosome_outer_membrane.html","mitosome outer membrane"],["membrane_organelle/nuclear_inner_membrane.html","nuclear inner membrane"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"]],"b":[["GO%3A0098588","bounding membrane of organelle"],["GO%3A0005789","endoplasmic reticulum membrane"],["GO%3A0032580","Golgi cisterna membrane"],["GO%3A0110146","magnetosome membrane"],["GO%3A0031966","mitochondrial membrane"],["GO%3A0031965","nuclear membrane"]]},{"id":"GO:0005783","l":"endoplasmic reticulum","na":8,"nb":226,"a":[["membrane_organelle/cis_golgi_network.html","cis-Golgi network"],["membrane_organelle/cis_golgi_network_membrane.html","cis-Golgi network membrane"],["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"],["membrane_organelle/endoplasmic_reticulum_lumen.html","endoplasmic reticulum lumen"],["membrane_organelle/endoplasmic_reticulum_membrane.html","endoplasmic reticulum membrane"]],"b":[["ComplexPortal%3ACPX-2360","COPII vesicle coat complex"],["ComplexPortal%3ACPX-2400","COPII vesicle coat complex"],["ComplexPortal%3ACPX-2523","COPII vesicle coat complex"],["ComplexPortal%3ACPX-26602","DOP1A-MON2, golgi-endosome traffic complex"],["ComplexPortal%3ACPX-8736","ERAP1-ERAP2 endoplasmic reticulum aminopeptidase complex"],["ComplexPortal%3ACPX-4236","Gamma-secretase complex, Aph1a-Psen2 variant"]]},{"id":"GO:0009279","l":"cell outer membrane","na":8,"nb":67,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/prostheca.html","prostheca"],["envelope/cell_outer_membrane.html","cell outer membrane"],["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["envelope/mycolate_outer_membrane.html","mycolate outer membrane"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"]],"b":[["ComplexPortal%3ACPX-1083","Cobalamin outer membrane transporter complex"],["ComplexPortal%3ACPX-4743","Curli secretion complex"],["ComplexPortal%3ACPX-1093","LptDE outer membrane translocon complex"],["ComplexPortal%3ACPX-5890","Translocation and assembly module complex"],["GO%3A0009279","cell outer membrane"],["GO%3A0036407","mycolate outer membrane"]]},{"id":"GO:0005741","l":"mitochondrial outer membrane","na":8,"nb":38,"a":[["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_intermembrane_space.html","mitochondrial intermembrane space"],["membrane_organelle/mitochondrial_membrane.html","mitochondrial membrane"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"],["other/ermes_complex.html","ERMES complex"]],"b":[["ComplexPortal%3ACPX-1989","BAK1 oligomer"],["ComplexPortal%3ACPX-2033","BAK1 oligomer"],["ComplexPortal%3ACPX-2034","BAK1 oligomer"],["ComplexPortal%3ACPX-6133","SAM mitochondrial sorting and assembly machinery complex"],["ComplexPortal%3ACPX-6101","SARS-CoV 9b complex"],["ComplexPortal%3ACPX-6121","TOM40 mitochondrial outer membrane translocase complex"]]},{"id":"GO:0009288","l":"bacterial-type flagellum","na":8,"nb":31,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009288","bacterial-type flagellum"]]},{"id":"GO:0005774","l":"vacuolar membrane","na":8,"nb":23,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v0_domain.html","vacuolar proton-transporting V-type ATPase, V0 domain"],["membrane_organelle/contractile_vacuolar_membrane.html","contractile vacuolar membrane"],["membrane_organelle/fungal_type_vacuole_membrane.html","fungal-type vacuole membrane"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"],["membrane_organelle/vacuolar_lumen.html","vacuolar lumen"]],"b":[["ComplexPortal%3ACPX-26523","GATOR1 complex"],["ComplexPortal%3ACPX-3231","SEA complex"],["ComplexPortal%3ACPX-5401","Vacuolar SNARE complex VAM3-VTI1-VAM7-NYV1"],["ComplexPortal%3ACPX-1887","Vacuolar SNARE complex VAM3-VTI1-VAM7-YKT6"],["GO%3A0000421","autophagosome membrane"],["GO%3A0031164","contractile vacuolar membrane"]]},{"id":"GO:0030126","l":"COPI vesicle coat","na":8,"nb":19,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"],["membrane_organelle/golgi_membrane.html","Golgi membrane"]],"b":[["ComplexPortal%3ACPX-7803","COPI vesicle coat complex, COPG1-COPZ1 variant"],["ComplexPortal%3ACPX-7970","COPI vesicle coat complex, COPG1-COPZ2 variant"],["ComplexPortal%3ACPX-7969","COPI vesicle coat complex, COPG2-COPZ1 variant"],["ComplexPortal%3ACPX-1652","COPI vesicle coat complex"],["ComplexPortal%3ACPX-2820","COPI vesicle coat complex"],["GO%3A0030126","COPI vesicle coat"]]},{"id":"GO:0098803","l":"respiratory chain complex","na":8,"nb":14,"a":[["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"],["energy_complex/cytochrome_o_ubiquinol_oxidase_complex.html","cytochrome o ubiquinol oxidase complex"],["energy_complex/fumarate_reductase_complex.html","fumarate reductase complex"],["energy_complex/respiratory_chain_complex_i.html","respiratory chain complex I"],["energy_complex/respiratory_chain_complex_ii_succinate_dehydrogenase.html","respiratory chain complex II (succinate dehydrogenase)"],["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"]],"b":[["GO%3A0009319","cytochrome o ubiquinol oxidase complex"],["GO%3A0045283","fumarate reductase complex"],["GO%3A0044799","NarGHI complex"],["GO%3A0045259","proton-transporting ATP synthase complex"],["GO%3A0098803","respiratory chain complex"],["GO%3A0045271","respiratory chain complex I"]]},{"id":"GO:0030125","l":"clathrin vesicle coat","na":8,"nb":9,"a":[["membrane_organelle/clathrin_coated_vesicle.html","clathrin-coated vesicle"],["membrane_organelle/clathrin_coated_vesicle_membrane.html","clathrin-coated vesicle membrane"],["membrane_organelle/coated_vesicle.html","coated vesicle"],["other/clathrin_coat.html","clathrin coat"],["other/clathrin_coat_of_endocytic_vesicle.html","clathrin coat of endocytic vesicle"],["other/clathrin_coat_of_trans_golgi_network_vesicle.html","clathrin coat of trans-Golgi network vesicle"]],"b":[["ComplexPortal%3ACPX-2792","Clathrin complex"],["GO%3A0030128","clathrin coat of endocytic vesicle"],["GO%3A0030129","clathrin coat of synaptic vesicle"],["GO%3A0030130","clathrin coat of trans-Golgi network vesicle"],["GO%3A0030125","clathrin vesicle coat"],["PANTHER%3APTHR16156","AFTIPHILIN A-RELATED"]]},{"id":"GO:0000329","l":"fungal-type vacuole membrane","na":8,"nb":8,"a":[["membrane_organelle/fungal_type_vacuole.html","fungal-type vacuole"],["membrane_organelle/fungal_type_vacuole_lumen.html","fungal-type vacuole lumen"],["membrane_organelle/fungal_type_vacuole_membrane.html","fungal-type vacuole membrane"],["membrane_organelle/vacuole.html","vacuole"],["other/gator1_complex.html","GATOR1 complex"],["other/gtr1_gtr2_gtpase_complex.html","Gtr1-Gtr2 GTPase complex"]],"b":[["ComplexPortal%3ACPX-3172","EGO complex"],["ComplexPortal%3ACPX-869","FET5-FTH1 high affinity iron exporter complex"],["ComplexPortal%3ACPX-1304","MYO2-VAC17-VAC8 transport complex"],["ComplexPortal%3ACPX-1193","Vacuolar proton translocating ATPase complex, vacuole variant"],["ComplexPortal%3ACPX-5521","Vacuolar SNARE complex SSO1-SEC9-NYV1"],["GO%3A0000329","fungal-type vacuole membrane"]]},{"id":"GO:0098796","l":"membrane protein complex","na":7,"nb":234,"a":[["other/ap_type_membrane_coat_adaptor_complex.html","AP-type membrane coat adaptor complex"],["other/emc_complex.html","EMC complex"],["other/hops_complex.html","HOPS complex"],["other/membrane_coat.html","membrane coat"],["other/retromer_cargo_selective_complex.html","retromer, cargo-selective complex"],["other/retromer_complex.html","retromer complex"]],"b":[["GO%3A0002180","5-lipoxygenase complex"],["GO%3A0170014","ankyrin-1 complex"],["GO%3A0030119","AP-type membrane coat adaptor complex"],["GO%3A0097658","Asi complex"],["GO%3A0062079","ATG2-ATG18 complex"],["GO%3A1990063","Bam protein complex"]]},{"id":"GO:0000813","l":"ESCRT I complex","na":7,"nb":27,"a":[["membrane_organelle/endosome.html","endosome"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/multivesicular_body.html","multivesicular body"],["other/escrt_0_complex.html","ESCRT-0 complex"],["other/escrt_complex.html","ESCRT complex"]],"b":[["ComplexPortal%3ACPX-940","ESCRT-I complex"],["ComplexPortal%3ACPX-7162","ESCRT-I complex, VPS37A-MVB12A variant"],["ComplexPortal%3ACPX-7146","ESCRT-I complex, VPS37A-MVB12B variant"],["ComplexPortal%3ACPX-7181","ESCRT-I complex, VPS37A-UBAP1 variant"],["ComplexPortal%3ACPX-2460","ESCRT-I complex, Vps37A variant"],["ComplexPortal%3ACPX-2505","ESCRT-I complex, VPS37B-MVB12A variant"]]},{"id":"GO:0030120","l":"vesicle coat","na":7,"nb":18,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"],["other/clathrin_vesicle_coat.html","clathrin vesicle coat"],["other/copi_vesicle_coat.html","COPI vesicle coat"],["other/copii_vesicle_coat.html","COPII vesicle coat"],["other/membrane_coat.html","membrane coat"]],"b":[["GO%3A0030125","clathrin vesicle coat"],["GO%3A0030126","COPI vesicle coat"],["GO%3A0030127","COPII vesicle coat"],["GO%3A0030120","vesicle coat"],["PANTHER%3APTHR16156","AFTIPHILIN A-RELATED"],["PANTHER%3APTHR15463","AP1 GAMMA SUBUNIT BINDING PROTEIN 1"]]},{"id":"GO:0009526","l":"plastid envelope","na":7,"nb":11,"a":[["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/plastid_envelope.html","plastid envelope"],["membrane_organelle/plastid_inner_membrane.html","plastid inner membrane"],["membrane_organelle/plastid_intermembrane_space.html","plastid intermembrane space"],["membrane_organelle/plastid_membrane.html","plastid membrane"]],"b":[["GO%3A0033096","amyloplast envelope"],["GO%3A0009941","chloroplast envelope"],["GO%3A0031898","chromoplast envelope"],["GO%3A0033112","cyanelle envelope"],["GO%3A0034425","etioplast envelope"],["GO%3A0009526","plastid envelope"]]},{"id":"GO:0009579","l":"thylakoid","na":7,"nb":11,"a":[["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_lumen.html","plasma membrane-derived thylakoid lumen"],["membrane_organelle/plastid_thylakoid.html","plastid thylakoid"]],"b":[["GO%3A0030075","bacterial thylakoid"],["GO%3A0070116","organellar chromatophore thylakoid"],["GO%3A0031976","plastid thylakoid"],["GO%3A0009579","thylakoid"],["NCBIfam%3ANF014449","photosystem I assembly protein Ycf4"],["NCBIfam%3ATIGR01336","photosystem I core protein PsaB"]]},{"id":"GO:0030136","l":"clathrin-coated vesicle","na":7,"nb":10,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle.html","clathrin-coated endocytic vesicle"],["membrane_organelle/clathrin_coated_endocytic_vesicle_lumen.html","clathrin-coated endocytic vesicle lumen"],["membrane_organelle/clathrin_coated_vesicle.html","clathrin-coated vesicle"],["membrane_organelle/clathrin_coated_vesicle_lumen.html","clathrin-coated vesicle lumen"],["membrane_organelle/clathrin_coated_vesicle_membrane.html","clathrin-coated vesicle membrane"],["membrane_organelle/coated_vesicle.html","coated vesicle"]],"b":[["GO%3A0045334","clathrin-coated endocytic vesicle"],["GO%3A0030136","clathrin-coated vesicle"],["GO%3A0060198","clathrin-sculpted vesicle"],["GO%3A0030140","trans-Golgi network transport vesicle"],["GO%3A0033093","Weibel-Palade body"],["PANTHER%3APTHR10639","CLATHRIN LIGHT CHAIN"]]},{"id":"GO:0009532","l":"plastid stroma","na":7,"nb":9,"a":[["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"],["membrane_organelle/plastid.html","plastid"],["membrane_organelle/plastid_envelope.html","plastid envelope"],["membrane_organelle/plastid_inner_membrane.html","plastid inner membrane"],["membrane_organelle/plastid_stroma.html","plastid stroma"]],"b":[["GO%3A0009570","chloroplast stroma"],["GO%3A0009575","chromoplast stroma"],["GO%3A0034060","cyanelle stroma"],["GO%3A0009577","elaioplast stroma"],["GO%3A0009578","etioplast stroma"],["GO%3A1905506","gerontoplast stroma"]]},{"id":"GO:0009535","l":"chloroplast thylakoid membrane","na":7,"nb":9,"a":[["inclusion/plastoglobule.html","plastoglobule"],["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_membrane.html","chloroplast membrane"],["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"],["membrane_organelle/chloroplast_thylakoid_lumen.html","chloroplast thylakoid lumen"],["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"]],"b":[["GO%3A0009535","chloroplast thylakoid membrane"],["PANTHER%3APTHR34048","LOW-DENSITY RECEPTOR-LIKE PROTEIN"],["PANTHER%3APTHR35733","OS02G0307800 PROTEIN"],["PANTHER%3APTHR36814","PHOTOSYSTEM I REACTION CENTER SUBUNIT N, CHLOROPLASTIC"],["PANTHER%3APTHR34787","PHOTOSYSTEM I REACTION CENTER SUBUNIT VI-2, CHLOROPLASTIC"],["PANTHER%3APTHR33149","PHOTOSYSTEM II PROTEIN D1"]]},{"id":"GO:0030137","l":"COPI-coated vesicle","na":7,"nb":9,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/copi_coated_vesicle_lumen.html","COPI-coated vesicle lumen"],["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"]],"b":[["GO%3A0030142","COPI-coated Golgi to ER transport vesicle"],["GO%3A0030143","COPI-coated inter-Golgi transport vesicle"],["GO%3A0030137","COPI-coated vesicle"],["PANTHER%3APTHR19876","COATOMER"],["PANTHER%3APTHR10635","COATOMER SUBUNIT BETA"],["PANTHER%3APTHR10121","COATOMER SUBUNIT DELTA"]]},{"id":"GO:0009274","l":"peptidoglycan-based cell wall","na":7,"nb":8,"a":[["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"],["appendage/prostheca.html","prostheca"],["division_machinery/elongasome.html","elongasome"],["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]],"b":[["GO%3A0009276","Gram-negative-bacterium-type cell wall"],["GO%3A0009275","Gram-positive-bacterium-type cell wall"],["GO%3A0009274","peptidoglycan-based cell wall"],["NCBIfam%3ANF007061","bifunctional glycosyl transferase/transpeptidase"],["NCBIfam%3ATIGR03656","heme uptake protein IsdC"],["NCBIfam%3ATIGR02070","monofunctional biosynthetic peptidoglycan transglycosylase"]]},{"id":"NCBITaxon:565050","l":"Caulobacter vibrioides NA1000","na":7,"nb":8,"a":[["appendage/prostheca.html","prostheca"],["appendage/stalk_crossband.html","stalk crossband"],["appendage/tad_pilus.html","Tad pilus"],["cytoskeleton/bactofilin_filament.html","bactofilin filament"],["cytoskeleton/cytoophidium.html","cytoophidium"],["other/holdfast.html","holdfast"]],"b":[["Pfam%3APF02767","DNA polymerase III beta subunit, central domain"],["Pfam%3APF02768","DNA polymerase III beta subunit, C-terminal domain"],["Pfam%3APF00712","DNA polymerase III beta subunit, N-terminal domain"],["Pfam%3APF21249","GyrB, hook"],["Pfam%3APF07378","Flagellar protein FlbT"],["Pfam%3APF03748","Flagellar basal body-associated protein FliL"]]},{"id":"GO:0030665","l":"clathrin-coated vesicle membrane","na":7,"nb":7,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle_membrane.html","clathrin-coated endocytic vesicle membrane"],["membrane_organelle/clathrin_coated_vesicle.html","clathrin-coated vesicle"],["membrane_organelle/clathrin_coated_vesicle_lumen.html","clathrin-coated vesicle lumen"],["membrane_organelle/clathrin_coated_vesicle_membrane.html","clathrin-coated vesicle membrane"],["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"]],"b":[["GO%3A0030669","clathrin-coated endocytic vesicle membrane"],["GO%3A0030665","clathrin-coated vesicle membrane"],["GO%3A0060201","clathrin-sculpted acetylcholine transport vesicle membrane"],["GO%3A0061202","clathrin-sculpted gamma-aminobutyric acid transport vesicle membrane"],["GO%3A0060203","clathrin-sculpted glutamate transport vesicle membrane"],["GO%3A0070083","clathrin-sculpted monoamine transport vesicle membrane"]]},{"id":"GO:0098800","l":"inner mitochondrial membrane protein complex","na":6,"nb":88,"a":[["other/micos_complex.html","MICOS complex"],["other/mitochondrial_inner_membrane_peptidase_complex.html","mitochondrial inner membrane peptidase complex"],["other/mitochondrial_prohibitin_complex.html","mitochondrial prohibitin complex"],["other/pam_complex_tim23_associated_import_motor.html","PAM complex, Tim23 associated import motor"],["other/tim22_mitochondrial_import_inner_membrane_insertion_complex.html","TIM22 mitochondrial import inner membrane insertion complex"],["other/tim23_mitochondrial_import_inner_membrane_translocase_complex.html","TIM23 mitochondrial import inner membrane translocase complex"]],"b":[["ComplexPortal%3ACPX-6154","Mitochondrial pyruvate carrier complex"],["ComplexPortal%3ACPX-8068","Mitochondrial pyruvate carrier complex"],["ComplexPortal%3ACPX-8062","Mitochondrial pyruvate carrier complex, testis variant"],["ComplexPortal%3ACPX-302","Mitochondrial pyruvate carrier, fermentative isoform"],["ComplexPortal%3ACPX-303","Mitochondrial pyruvate carrier, respiratory isoform"],["GO%3A0032478","heterotetrameric polyprenyl diphosphate synthase complex"]]},{"id":"GO:0005740","l":"mitochondrial envelope","na":6,"nb":54,"a":[["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrial_intermembrane_space.html","mitochondrial intermembrane space"],["membrane_organelle/mitochondrial_membrane.html","mitochondrial membrane"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"]],"b":[["GO%3A0005740","mitochondrial envelope"],["Pfam%3APF01215","Cytochrome c oxidase subunit Vb"],["PANTHER%3APTHR15487","ADP-RIBOSYLATION FACTOR-LIKE PROTEIN 2-BINDING PROTEIN"],["PANTHER%3APTHR36959","ALTERED INHERITANCE OF MITOCHONDRIA PROTEIN 24, MITOCHONDRIAL"],["PANTHER%3APTHR28202","ASSEMBLY FACTOR CBP4"],["PANTHER%3APTHR37278","AUTOPHAGY-RELATED PROTEIN 33-RELATED"]]},{"id":"GO:0009507","l":"chloroplast","na":6,"nb":32,"a":[["inclusion/plastoglobule.html","plastoglobule"],["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"],["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"],["other/pyrenoid.html","pyrenoid"]],"b":[["ComplexPortal%3ACPX-1337","WHY1 complex"],["ComplexPortal%3ACPX-3586","WHY3 complex"],["GO%3A0009507","chloroplast"],["NCBIfam%3ANF018787","photosystem II reaction center protein PsbW"],["PANTHER%3APTHR31899","BETA-CAROTENE 3-HYDROXYLASE 1, CHLOROPLASTIC"],["PANTHER%3APTHR36404","EMBRYO DEFECTIVE 2737"]]},{"id":"GO:0005802","l":"trans-Golgi network","na":6,"nb":24,"a":[["membrane_organelle/trans_golgi_network.html","trans-Golgi network"],["membrane_organelle/trans_golgi_network_membrane.html","trans-Golgi network membrane"],["membrane_organelle/trans_golgi_network_transport_vesicle_membrane.html","trans-Golgi network transport vesicle membrane"],["other/clathrin_coat_of_trans_golgi_network_vesicle.html","clathrin coat of trans-Golgi network vesicle"],["other/exomer_complex.html","exomer complex"],["other/garp_complex.html","GARP complex"]],"b":[["ComplexPortal%3ACPX-5151","AP-4 Adaptor complex"],["ComplexPortal%3ACPX-5154","AP-4 Adaptor complex"],["ComplexPortal%3ACPX-8167","OSBPL9-OSBPL10 oxysterol-binding protein-related complex"],["ComplexPortal%3ACPX-8168","OSBPL9-OSBPL11 oxysterol-binding protein-related complex"],["GO%3A0005802","trans-Golgi network"],["InterPro%3AIPR028129","Consortin, C-terminal domain"]]},{"id":"GO:0042995","l":"cell projection","na":6,"nb":18,"a":[["appendage/archaeal_cannula.html","archaeal cannula"],["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/attachment_organelle.html","attachment organelle"],["appendage/hamus.html","hamus"],["appendage/prostheca.html","prostheca"]],"b":[["GO%3A0097589","archaeal-type flagellum"],["GO%3A0009288","bacterial-type flagellum"],["GO%3A0042995","cell projection"],["GO%3A0085035","haustorium"],["GO%3A0009289","pilus"],["GO%3A0090395","plant cell papilla"]]},{"id":"GO:0030150","l":"protein import into mitochondrial matrix","na":6,"nb":17,"a":[["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"],["other/mitochondrial_outer_membrane_translocase_complex.html","mitochondrial outer membrane translocase complex"],["other/pam_complex_tim23_associated_import_motor.html","PAM complex, Tim23 associated import motor"],["other/tim23_mitochondrial_import_inner_membrane_translocase_complex.html","TIM23 mitochondrial import inner membrane translocase complex"]],"b":[["ComplexPortal%3ACPX-1744","Mitochondrial sorting and assembly machinery complex"],["ComplexPortal%3ACPX-6127","TIM23 mitochondrial inner membrane pre-sequence translocase complex, sort variant"],["GO%3A0030150","protein import into mitochondrial matrix"],["Pfam%3APF02064","MAS20 protein import receptor"],["Pfam%3APF08294","TIM21"],["PANTHER%3APTHR20922","DNL-TYPE ZINC FINGER PROTEIN"]]},{"id":"GO:0005635","l":"nuclear envelope","na":6,"nb":16,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nuclear_envelope_lumen.html","nuclear envelope lumen"],["membrane_organelle/nuclear_inner_membrane.html","nuclear inner membrane"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"],["membrane_organelle/nucleus.html","nucleus"],["other/nuclear_pore.html","nuclear pore"]],"b":[["ComplexPortal%3ACPX-1068","Importin complex, KAP60-KAP95"],["ComplexPortal%3ACPX-1287","MPS2-BBP1 spindle pole body anchor complex"],["ComplexPortal%3ACPX-2568","Nuclear pore complex"],["ComplexPortal%3ACPX-4474","Nuclear pore complex"],["ComplexPortal%3ACPX-824","Nuclear pore complex"],["ComplexPortal%3ACPX-873","Nuclear pore complex"]]},{"id":"GO:0005742","l":"mitochondrial outer membrane translocase complex","na":6,"nb":16,"a":[["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"],["other/mitochondrial_outer_membrane_translocase_complex.html","mitochondrial outer membrane translocase complex"],["other/sam_complex.html","SAM complex"],["other/tim23_mitochondrial_import_inner_membrane_translocase_complex.html","TIM23 mitochondrial import inner membrane translocase complex"]],"b":[["ComplexPortal%3ACPX-473","TOM40 mitochondrial outer membrane translocase core complex"],["ComplexPortal%3ACPX-474","TOM40 mitochondrial outer membrane translocase holocomplex"],["GO%3A0005742","mitochondrial outer membrane translocase complex"],["GO%3A0001401","SAM complex"],["GO%3A0140596","TOM complex"],["Pfam%3APF02064","MAS20 protein import receptor"]]},{"id":"GO:0030127","l":"COPII vesicle coat","na":6,"nb":16,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"],["membrane_organelle/endoplasmic_reticulum_membrane.html","endoplasmic reticulum membrane"],["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"],["other/copii_vesicle_coat.html","COPII vesicle coat"],["other/vesicle_coat.html","vesicle coat"]],"b":[["ComplexPortal%3ACPX-2360","COPII vesicle coat complex"],["ComplexPortal%3ACPX-2400","COPII vesicle coat complex"],["ComplexPortal%3ACPX-2523","COPII vesicle coat complex"],["ComplexPortal%3ACPX-1341","SEC23-LST1 COPII cargo recruitment complex"],["GO%3A0030127","COPII vesicle coat"],["NCBIfam%3ANF016683","Sec23/Sec24 zinc finger-containing protein"]]},{"id":"GO:0005686","l":"U2 snRNP","na":6,"nb":14,"a":[["ribonucleoprotein/u2_snrnp.html","U2 snRNP"],["ribonucleoprotein/u2_type_catalytic_step_1_spliceosome.html","U2-type catalytic step 1 spliceosome"],["ribonucleoprotein/u2_type_catalytic_step_2_spliceosome.html","U2-type catalytic step 2 spliceosome"],["ribonucleoprotein/u2_type_post_mrna_release_spliceosomal_complex.html","U2-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u2_type_precatalytic_spliceosome.html","U2-type precatalytic spliceosome"],["ribonucleoprotein/u2_type_prespliceosome.html","U2-type prespliceosome"]],"b":[["ComplexPortal%3ACPX-43","Sm complex"],["ComplexPortal%3ACPX-6033","Sm complex"],["ComplexPortal%3ACPX-2539","U2 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-26","U2 small nuclear ribonucleoprotein complex"],["GO%3A0005686","U2 snRNP"],["PANTHER%3APTHR13120","PHD FINGER-LIKE DOMAIN-CONTAINING PROTEIN 5A"]]},{"id":"GO:0071985","l":"multivesicular body sorting pathway","na":14,"nb":6,"a":[["membrane_organelle/endosome_lumen.html","endosome lumen"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/late_endosome_lumen.html","late endosome lumen"],["membrane_organelle/late_endosome_membrane.html","late endosome membrane"],["membrane_organelle/multivesicular_body.html","multivesicular body"]],"b":[["ComplexPortal%3ACPX-329","ESCRT-III complex"],["ComplexPortal%3ACPX-332","ESCRT-III complex, variant Chmp1b1"],["ComplexPortal%3ACPX-333","ESCRT-III complex, variant Chmp1b2"],["GO%3A0032509","endosome transport via multivesicular body sorting pathway"],["GO%3A0071985","multivesicular body sorting pathway"],["Pfam%3APF05871","ESCRT-II complex subunit"]]},{"id":"GO:0005689","l":"U12-type spliceosomal complex","na":6,"nb":13,"a":[["ribonucleoprotein/u12_type_catalytic_step_1_spliceosome.html","U12-type catalytic step 1 spliceosome"],["ribonucleoprotein/u12_type_catalytic_step_2_spliceosome.html","U12-type catalytic step 2 spliceosome"],["ribonucleoprotein/u12_type_post_mrna_release_spliceosomal_complex.html","U12-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u12_type_post_spliceosomal_complex.html","U12-type post-spliceosomal complex"],["ribonucleoprotein/u12_type_precatalytic_spliceosome.html","U12-type precatalytic spliceosome"],["ribonucleoprotein/u12_type_prespliceosome.html","U12-type prespliceosome"]],"b":[["ComplexPortal%3ACPX-26485","U11 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-26487","U12 small nuclear ribonucleoprotein complex"],["GO%3A0071017","U12-type catalytic step 1 spliceosome"],["GO%3A0071018","U12-type catalytic step 2 spliceosome"],["GO%3A0071019","U12-type post-mRNA release spliceosomal complex"],["GO%3A0071022","U12-type post-spliceosomal complex"]]},{"id":"GO:0033104","l":"type VI protein secretion system complex","na":6,"nb":13,"a":[["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"],["secretion_system/type_vi_secretion_system_baseplate.html","type VI secretion system baseplate"],["secretion_system/type_vi_secretion_system_contractile_sheath.html","type VI secretion system contractile sheath"],["secretion_system/type_vi_secretion_system_hcp_tube.html","type VI secretion system Hcp tube"],["secretion_system/type_vi_secretion_system_membrane_complex.html","type VI secretion system membrane complex"],["secretion_system/type_vi_secretion_system_vgrg_paar_spike_complex.html","type VI secretion system VgrG/PAAR spike complex"]],"b":[["GO%3A0033104","type VI protein secretion system complex"],["NCBIfam%3ANF053769","CIS1 family contractile injection system inner tube protein"],["NCBIfam%3ANF053768","CIS12 family contractile injection system protein"],["NCBIfam%3ANF053767","CIS13 family contractile injection system protein"],["NCBIfam%3ANF053770","CIS5 family contractile injection system inner tube adaptor"],["NCBIfam%3ATIGR03345","type VI secretion system ATPase TssH"]]},{"id":"GO:0042170","l":"plastid membrane","na":6,"nb":13,"a":[["membrane_organelle/chloroplast_membrane.html","chloroplast membrane"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/plastid.html","plastid"],["membrane_organelle/plastid_inner_membrane.html","plastid inner membrane"],["membrane_organelle/plastid_membrane.html","plastid membrane"],["membrane_organelle/plastid_outer_membrane.html","plastid outer membrane"]],"b":[["GO%3A0033097","amyloplast membrane"],["GO%3A0160211","apicoplast membrane"],["GO%3A0031969","chloroplast membrane"],["GO%3A0046862","chromoplast membrane"],["GO%3A0033113","cyanelle membrane"],["GO%3A7770040","epiplastidial membrane"]]},{"id":"GO:0005775","l":"vacuolar lumen","na":6,"nb":10,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["membrane_organelle/contractile_vacuole_lumen.html","contractile vacuole lumen"],["membrane_organelle/fungal_type_vacuole_lumen.html","fungal-type vacuole lumen"],["membrane_organelle/vacuolar_lumen.html","vacuolar lumen"],["membrane_organelle/vacuolar_membrane.html","vacuolar membrane"],["membrane_organelle/vacuole.html","vacuole"]],"b":[["GO%3A0120282","autolysosome lumen"],["GO%3A0034423","autophagosome lumen"],["GO%3A0035578","azurophil granule lumen"],["GO%3A1904856","cytolytic granule lumen"],["GO%3A0160318","endolysosomal intralumenal vesicle lumen"],["GO%3A0000328","fungal-type vacuole lumen"]]},{"id":"NCBITaxon:2762","l":"Cyanophora paradoxa","na":10,"nb":6,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"]],"b":[["Pfam%3APF06799","Conserved in the green lineage and diatoms 27"],["Pfam%3APF06868","Protein of unknown function (DUF1257)"],["Pfam%3APF10693","Protein of unknown function (DUF2499)"],["Pfam%3APF10726","Protein of function (DUF2518)"],["Pfam%3APF04481","Protein of unknown function (DUF561)"],["Pfam%3APF05421","Protein of unknown function (DUF751)"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":9,"nb":6,"a":[["membrane_organelle/apicoplast.html","apicoplast"],["membrane_organelle/apicoplast_membrane.html","apicoplast membrane"],["membrane_organelle/exoneme.html","exoneme"],["membrane_organelle/food_vacuole.html","food vacuole"],["membrane_organelle/inner_membrane_pellicle_complex.html","inner membrane pellicle complex"],["membrane_organelle/maurer_s_cleft.html","Maurer's cleft"]],"b":[["IDPO%3A0000037","molecular recognition display site"],["Pfam%3APF05403","Plasmodium histidine-rich protein (HRPII/III)"],["Pfam%3APF17986","EMP3-KAHRP-like N-terminal domain"],["Pfam%3APF03805","Cytoadherence-linked asexual protein"],["Pfam%3APF06589","Circumsporozoite-related antigen (CRA)"],["TED%3AAF-Q9U431-F1-model_v4_TED01","TED novel fold AF-Q9U431-F1-model_v4_TED01"]]},{"id":"GO:0038202","l":"TORC1 signaling","na":6,"nb":7,"a":[["other/gator1_complex.html","GATOR1 complex"],["other/gator2_complex.html","GATOR2 complex"],["other/gtr1_gtr2_gtpase_complex.html","Gtr1-Gtr2 GTPase complex"],["other/ragulator_complex.html","Ragulator complex"],["other/seh1_associated_complex.html","Seh1-associated complex"],["other/torc1_complex.html","TORC1 complex"]],"b":[["ComplexPortal%3ACPX-26528","Ragulator complex"],["ComplexPortal%3ACPX-2709","Ragulator complex"],["ComplexPortal%3ACPX-4741","Ragulator complex"],["ComplexPortal%3ACPX-4761","Ragulator complex"],["ComplexPortal%3ACPX-2265","TORC1 complex"],["GO%3A0038202","TORC1 signaling"]]},{"id":"GO:0005784","l":"Sec61 translocon complex","na":6,"nb":6,"a":[["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"],["membrane_organelle/endoplasmic_reticulum_lumen.html","endoplasmic reticulum lumen"],["membrane_organelle/endoplasmic_reticulum_membrane.html","endoplasmic reticulum membrane"],["other/emc_complex.html","EMC complex"],["other/endoplasmic_reticulum_sec_complex.html","endoplasmic reticulum Sec complex"],["other/sec61_translocon_complex.html","Sec61 translocon complex"]],"b":[["ComplexPortal%3ACPX-1833","SEC61 protein-conducting channel complex"],["ComplexPortal%3ACPX-8073","SEC61 protein-conducting channel complex, SEC1A1 variant"],["ComplexPortal%3ACPX-8169","SEC61 protein-conducting channel complex, SEC1A2 variant"],["ComplexPortal%3ACPX-2647","SEC61 translocon complex, SEC61G1 variant"],["ComplexPortal%3ACPX-2650","SEC61 translocon complex, SEC61G2 variant"],["GO%3A0005784","Sec61 translocon complex"]]},{"id":"GO:0009706","l":"chloroplast inner membrane","na":6,"nb":6,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_inner_membrane.html","chloroplast inner membrane"],["membrane_organelle/chloroplast_intermembrane_space.html","chloroplast intermembrane space"],["membrane_organelle/chloroplast_membrane.html","chloroplast membrane"],["other/tic_complex.html","Tic complex"]],"b":[["GO%3A0009706","chloroplast inner membrane"],["PANTHER%3APTHR31038","EXPRESSED PROTEIN-RELATED"],["PANTHER%3APTHR34048","LOW-DENSITY RECEPTOR-LIKE PROTEIN"],["PANTHER%3APTHR36317","PROTEIN MULTIPLE CHLOROPLAST DIVISION SITE 1"],["PANTHER%3APTHR47296","PROTEIN TIC 40, CHLOROPLASTIC"],["PANTHER%3APTHR37755","PROTEIN TIC 56, CHLOROPLASTIC"]]},{"id":"GO:0030662","l":"coated vesicle membrane","na":6,"nb":6,"a":[["membrane_organelle/clathrin_coated_vesicle_membrane.html","clathrin-coated vesicle membrane"],["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"],["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"],["other/vesicle_coat.html","vesicle coat"]],"b":[["GO%3A0030665","clathrin-coated vesicle membrane"],["GO%3A0030662","coated vesicle membrane"],["GO%3A0030663","COPI-coated vesicle membrane"],["GO%3A0012507","ER to Golgi transport vesicle membrane"],["PANTHER%3APTHR45837","VESICLE-TRAFFICKING PROTEIN SEC22B"],["PANTHER%3APTHR21230","VESICLE TRANSPORT V-SNARE PROTEIN VTI1-RELATED"]]},{"id":"GO:0036452","l":"ESCRT complex","na":6,"nb":6,"a":[["other/escrt_0_complex.html","ESCRT-0 complex"],["other/escrt_complex.html","ESCRT complex"],["other/escrt_i_complex.html","ESCRT I complex"],["other/escrt_ii_complex.html","ESCRT II complex"],["other/escrt_iii_complex.html","ESCRT III complex"],["other/escrt_iv_complex.html","ESCRT IV complex"]],"b":[["GO%3A0033565","ESCRT-0 complex"],["GO%3A0036452","ESCRT complex"],["GO%3A0000813","ESCRT I complex"],["GO%3A0000814","ESCRT II complex"],["GO%3A0000815","ESCRT III complex"],["GO%3A1990621","ESCRT IV complex"]]},{"id":"NCBITaxon:5693","l":"Trypanosoma cruzi","na":6,"nb":6,"a":[["membrane_organelle/contractile_vacuole.html","contractile vacuole"],["membrane_organelle/early_endosome.html","early endosome"],["membrane_organelle/early_endosome_lumen.html","early endosome lumen"],["membrane_organelle/early_endosome_membrane.html","early endosome membrane"],["membrane_organelle/reservosome.html","reservosome"],["other/cytostome.html","cytostome"]],"b":[["Pfam%3APF22592","FCaBP EF-hand domain"],["Pfam%3APF09394","Chagasin family peptidase inhibitor I42"],["Pfam%3APF12131","Protein of unknown function (DUF3586)"],["Pfam%3APF11052","Trans-sialidase of Trypanosoma hydrophobic C-terminal"],["Pfam%3APF13859","BNR repeat-like domain"],["TED%3AAF-A0A2V2XJY2-F1-model_v4_TED02","TED novel fold AF-A0A2V2XJY2-F1-model_v4_TED02"]]},{"id":"GO:0005634","l":"nucleus","na":5,"nb":1580,"a":[["membrane_organelle/macronucleus.html","macronucleus"],["membrane_organelle/micronucleus.html","micronucleus"],["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nuclear_lumen.html","nuclear lumen"],["membrane_organelle/nucleus.html","nucleus"]],"b":[["ComplexPortal%3ACPX-9003","20S immunoproteasome complex"],["ComplexPortal%3ACPX-2829","ACF chromatin remodeling complex"],["ComplexPortal%3ACPX-434","ACF chromatin remodeling complex"],["ComplexPortal%3ACPX-444","ACF chromatin remodeling complex"],["ComplexPortal%3ACPX-2824","ADA complex"],["ComplexPortal%3ACPX-608","ADA complex"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis H37Rv","na":5,"nb":297,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"],["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]],"b":[["IDPO%3A0000002","disorder"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000045","phosphorylation display site"],["IDPO%3A0000059","self-inhibition"],["Pfam%3APF17837","4'-phosphopantetheinyl transferase N-terminal domain"]]},{"id":"GO:0043232","l":"intracellular membraneless organelle","na":5,"nb":237,"a":[["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/contractile_vacuole_complex.html","contractile vacuole complex"],["microcompartment/bacterial_microcompartment.html","bacterial microcompartment"],["other/phage_nucleus.html","phage nucleus"],["other/pyrenoid.html","pyrenoid"]],"b":[["GO%3A0098682","arciform density"],["GO%3A0005818","aster"],["GO%3A0031469","bacterial microcompartment"],["GO%3A0043590","bacterial nucleoid"],["GO%3A0097727","blepharoplast"],["GO%3A0005814","centriole"]]},{"id":"GO:0005739","l":"mitochondrion","na":5,"nb":233,"a":[["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_matrix.html","mitochondrial matrix"],["membrane_organelle/mitochondrial_membrane.html","mitochondrial membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"],["nucleoid/kinetoplast.html","kinetoplast"]],"b":[["ComplexPortal%3ACPX-3034","Acetolactate synthase complex"],["ComplexPortal%3ACPX-1331","bI3 intron splicing factor complex"],["ComplexPortal%3ACPX-1314","bI4 intron splicing factor complex"],["ComplexPortal%3ACPX-6928","BOL1-GRX5 iron-sulfur cluster assembly complex"],["ComplexPortal%3ACPX-6930","BOL3-GRX5 iron-sulfur cluster assembly complex"],["ComplexPortal%3ACPX-384","CBP3-CBP6 complex"]]},{"id":"GO:0015979","l":"photosynthesis","na":5,"nb":146,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"],["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"]],"b":[["GO%3A0015979","photosynthesis"],["NCBIfam%3ATIGR01337","allophycocyanin subunit beta"],["NCBIfam%3ATIGR03056","alpha/beta fold hydrolase BchO"],["NCBIfam%3ANF013497","Apocytochrome F, C-terminal"],["NCBIfam%3ANF014391","Bacteriochlorophyll A protein"],["NCBIfam%3ANF058502","C-phycocyanin alpha-cysteine-84 phycocyanobilin lyase subunit CpcE"]]},{"id":"GO:0070013","l":"intracellular organelle lumen","na":5,"nb":124,"a":[["membrane_organelle/endosome_lumen.html","endosome lumen"],["membrane_organelle/golgi_lumen.html","Golgi lumen"],["membrane_organelle/mitochondrial_matrix.html","mitochondrial matrix"],["membrane_organelle/nuclear_lumen.html","nuclear lumen"],["membrane_organelle/vacuolar_lumen.html","vacuolar lumen"]],"b":[["GO%3A0033985","acidocalcisome lumen"],["GO%3A0060205","cytoplasmic vesicle lumen"],["GO%3A0071682","endocytic vesicle lumen"],["GO%3A0005788","endoplasmic reticulum lumen"],["GO%3A0160315","endosomal intralumenal vesicle lumen"],["GO%3A0031904","endosome lumen"]]},{"id":"GO:0005929","l":"cilium","na":5,"nb":101,"a":[["appendage/ciliary_membrane.html","ciliary membrane"],["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"],["appendage/mastigoneme.html","mastigoneme"],["cytoskeleton/ciliary_basal_body.html","ciliary basal body"]],"b":[["ComplexPortal%3ACPX-2747","BBSome complex"],["ComplexPortal%3ACPX-428","BBSome complex"],["ComplexPortal%3ACPX-5001","CPLANE complex"],["ComplexPortal%3ACPX-5026","CPLANE complex"],["ComplexPortal%3ACPX-26357","Dynein-2 complex, light-chain variant 1"],["ComplexPortal%3ACPX-26360","Dynein-2 complex, light-chain variant 2"]]},{"id":"GO:0005759","l":"mitochondrial matrix","na":5,"nb":55,"a":[["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrial_matrix.html","mitochondrial matrix"],["membrane_organelle/mitochondrion.html","mitochondrion"],["nucleoid/mitochondrial_nucleoid.html","mitochondrial nucleoid"],["other/pam_complex_tim23_associated_import_motor.html","PAM complex, Tim23 associated import motor"]],"b":[["ComplexPortal%3ACPX-865","Electron transfer flavoprotein complex"],["ComplexPortal%3ACPX-6957","GRX5 iron-sulfur cluster assembly homodimer complex"],["ComplexPortal%3ACPX-6236","Methylcrotonyl-CoA carboxylase complex"],["ComplexPortal%3ACPX-2216","Mitochondrial 2-oxoisovalerate dehydrogenase complex"],["ComplexPortal%3ACPX-26685","Mitochondrial 2-oxoisovalerate dehydrogenase complex"],["ComplexPortal%3ACPX-949","Mitochondrial 3-oxoacyl-[acyl-carrier-protein] reductase"]]},{"id":"GO:0045259","l":"proton-transporting ATP synthase complex","na":5,"nb":52,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["ComplexPortal%3ACPX-25764","Mitochondrial proton translocating ATP synthase complex"],["ComplexPortal%3ACPX-3281","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-6151","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-8618","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-8619","Mitochondrial proton-transporting ATP synthase complex, testis-specific variant"]]},{"id":"GO:0005777","l":"peroxisome","na":5,"nb":34,"a":[["membrane_organelle/glycosome.html","glycosome"],["membrane_organelle/glyoxysome.html","glyoxysome"],["membrane_organelle/peroxisomal_matrix.html","peroxisomal matrix"],["membrane_organelle/peroxisomal_membrane.html","peroxisomal membrane"],["membrane_organelle/peroxisome.html","peroxisome"]],"b":[["ComplexPortal%3ACPX-4742","Catalase complex"],["ComplexPortal%3ACPX-4767","Catalase complex"],["ComplexPortal%3ACPX-4768","Catalase complex"],["GO%3A0020015","glycosome"],["GO%3A0009514","glyoxysome"],["GO%3A0042580","mannosome"]]},{"id":"GO:0009289","l":"pilus","na":5,"nb":31,"a":[["appendage/curli.html","curli"],["appendage/p_pilus.html","P pilus"],["appendage/pilus.html","pilus"],["appendage/type_i_pilus.html","type I pilus"],["appendage/type_iv_pilus.html","type IV pilus"]],"b":[["GO%3A0098774","curli"],["GO%3A0009289","pilus"],["GO%3A0140621","type I pilus"],["GO%3A0044096","type IV pilus"],["NCBIfam%3ANF058558","amyloid-like fimbrin subunit FapC"],["NCBIfam%3ANF016344","CS1 type fimbrial major subunit"]]},{"id":"GO:0005778","l":"peroxisomal membrane","na":5,"nb":29,"a":[["membrane_organelle/glycosome_membrane.html","glycosome membrane"],["membrane_organelle/glyoxysomal_membrane.html","glyoxysomal membrane"],["membrane_organelle/peroxisomal_matrix.html","peroxisomal matrix"],["membrane_organelle/peroxisomal_membrane.html","peroxisomal membrane"],["membrane_organelle/peroxisome.html","peroxisome"]],"b":[["ComplexPortal%3ACPX-1730","Peroxisomal ABC transporter complex PXA1-PXA2"],["ComplexPortal%3ACPX-10001","Peroxisomal PEX13-PEX14 docking complex"],["ComplexPortal%3ACPX-10021","Peroxisomal PEX13-PEX14 docking complex"],["ComplexPortal%3ACPX-1904","Peroxisomal PEX13-PEX14-PEX17 docking complex"],["ComplexPortal%3ACPX-1905","Peroxisomal PEX7-PEX18 receptor complex"],["ComplexPortal%3ACPX-1906","Peroxisomal PEX7-PEX21 receptor complex"]]},{"id":"GO:0000228","l":"nuclear chromosome","na":5,"nb":26,"a":[["membrane_organelle/macronucleus.html","macronucleus"],["membrane_organelle/micronucleus.html","micronucleus"],["membrane_organelle/nuclear_lumen.html","nuclear lumen"],["other/coma_complex.html","COMA complex"],["other/nuclear_chromosome.html","nuclear chromosome"]],"b":[["ComplexPortal%3ACPX-2340","Male specific lethal complex"],["ComplexPortal%3ACPX-1288","MEI5-SAE3 recombination assembly factor complex"],["ComplexPortal%3ACPX-26610","slx1-slx4 structure-specific endonuclease complex"],["ComplexPortal%3ACPX-3159","SLX1-SLX4 structure-specific endonuclease complex"],["ComplexPortal%3ACPX-8175","SLX1-SLX4 structure-specific endonuclease complex"],["ComplexPortal%3ACPX-8093","SWI5-SFR1 recombination accessory factor complex"]]},{"id":"GO:0005684","l":"U2-type spliceosomal complex","na":5,"nb":26,"a":[["ribonucleoprotein/u2_type_catalytic_step_1_spliceosome.html","U2-type catalytic step 1 spliceosome"],["ribonucleoprotein/u2_type_catalytic_step_2_spliceosome.html","U2-type catalytic step 2 spliceosome"],["ribonucleoprotein/u2_type_post_mrna_release_spliceosomal_complex.html","U2-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u2_type_precatalytic_spliceosome.html","U2-type precatalytic spliceosome"],["ribonucleoprotein/u2_type_prespliceosome.html","U2-type prespliceosome"]],"b":[["ComplexPortal%3ACPX-2565","SF3A complex"],["ComplexPortal%3ACPX-1647","SF3B complex"],["ComplexPortal%3ACPX-2227","SF3B complex"],["GO%3A0000243","commitment complex"],["GO%3A0071006","U2-type catalytic step 1 spliceosome"],["GO%3A0071007","U2-type catalytic step 2 spliceosome"]]},{"id":"NCBITaxon:5811","l":"Toxoplasma gondii","na":18,"nb":5,"a":[["cytoskeleton/conoid.html","conoid"],["cytoskeleton/intraconoid_microtubule.html","intraconoid microtubule"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["cytoskeleton/subpellicular_microtubule.html","subpellicular microtubule"],["membrane_organelle/apicomplexan_dense_granule.html","apicomplexan dense granule"],["membrane_organelle/apicomplexan_dense_granule_membrane.html","apicomplexan dense granule membrane"]],"b":[["Pfam%3APF24633","Domain of unknown function (DUF7630)"],["Pfam%3APF24634","Domain of unknown function (DUF7631)"],["Pfam%3APF05084","Granule antigen protein (GRA6)"],["Pfam%3APF14531","Kinase-like"],["Pfam%3APF10564","Sialic-acid binding micronemal adhesive repeat"]]},{"id":"GO:0005758","l":"mitochondrial intermembrane space","na":5,"nb":17,"a":[["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrial_intermembrane_space.html","mitochondrial intermembrane space"],["membrane_organelle/mitochondrial_membrane.html","mitochondrial membrane"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"]],"b":[["ComplexPortal%3ACPX-2371","TIM8-TIM13 mitochondrial intermembrane space protein transporter complex"],["ComplexPortal%3ACPX-6131","TIM8A-TIM13 mitochondrial intermembrane space protein transporter complex"],["ComplexPortal%3ACPX-6132","TIM8B-TIM13 mitochondrial intermembrane space protein transporter complex"],["ComplexPortal%3ACPX-2268","TIM9-TIM10 mitochondrial intermembrane space protein transporter complex"],["ComplexPortal%3ACPX-6125","TIM9-TIM10 mitochondrial intermembrane space protein transporter complex"],["ComplexPortal%3ACPX-6126","TIM9-TIM10-TIM10B mitochondrial intermembrane space protein transporter complex"]]},{"id":"GO:0009512","l":"cytochrome b6f complex","na":5,"nb":12,"a":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["GO%3A0009512","cytochrome b6f complex"],["NCBIfam%3ANF014576","cytochrome b6-f complex subunit PetG"],["NCBIfam%3ANF016971","cytochrome b6-f complex subunit PetL"],["NCBIfam%3ANF015687","cytochrome b6-f complex subunit PetN"],["NCBIfam%3ANF050003","cytochrome b6f subunit PetP"],["NCBIfam%3ANF019653","PetM family cytochrome b6-f complex subunit 7"]]},{"id":"GO:0005637","l":"nuclear inner membrane","na":5,"nb":11,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nuclear_envelope_lumen.html","nuclear envelope lumen"],["membrane_organelle/nuclear_inner_membrane.html","nuclear inner membrane"],["membrane_organelle/nuclear_lumen.html","nuclear lumen"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"]],"b":[["ComplexPortal%3ACPX-3248","Asi ubiquitin ligase complex"],["GO%3A0005637","nuclear inner membrane"],["InterPro%3AIPR018861","Transmembrane protein 201, C-terminal"],["NCBIfam%3ANF021959","DUF2448 domain-containing protein"],["PANTHER%3APTHR38044","BOUQUET FORMATION PROTEIN 4"],["PANTHER%3APTHR31488","DPY-19-LIKE 1, LIKE (H. SAPIENS)"]]},{"id":"GO:0005688","l":"U6 snRNP","na":5,"nb":10,"a":[["ribonucleoprotein/u2_type_catalytic_step_1_spliceosome.html","U2-type catalytic step 1 spliceosome"],["ribonucleoprotein/u2_type_catalytic_step_2_spliceosome.html","U2-type catalytic step 2 spliceosome"],["ribonucleoprotein/u2_type_post_mrna_release_spliceosomal_complex.html","U2-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u4_u6_snrnp.html","U4/U6 snRNP"],["ribonucleoprotein/u6_snrnp.html","U6 snRNP"]],"b":[["ComplexPortal%3ACPX-44","LSM2-8 complex"],["ComplexPortal%3ACPX-24","U6 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-26411","U6 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-26415","U6 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-26483","U6 small nuclear ribonucleoprotein complex"],["GO%3A0005688","U6 snRNP"]]},{"id":"GO:0005879","l":"axonemal microtubule","na":5,"nb":10,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"],["cytoskeleton/b_axonemal_microtubule.html","B axonemal microtubule"],["cytoskeleton/c1_axonemal_microtubule.html","C1 axonemal microtubule"],["cytoskeleton/c2_axonemal_microtubule.html","C2 axonemal microtubule"]],"b":[["GO%3A0097649","A axonemal microtubule"],["GO%3A0005879","axonemal microtubule"],["GO%3A0097650","B axonemal microtubule"],["GO%3A1990719","C1 axonemal microtubule"],["GO%3A1990720","C2 axonemal microtubule"],["NCBIfam%3ANF026242","microtubule wall 1/2 piercer family protein"]]},{"id":"GO:0016471","l":"vacuolar proton-transporting V-type ATPase complex","na":5,"nb":9,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v0_domain.html","vacuolar proton-transporting V-type ATPase, V0 domain"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v1_domain.html","vacuolar proton-transporting V-type ATPase, V1 domain"],["membrane_organelle/fungal_type_vacuole_membrane.html","fungal-type vacuole membrane"],["membrane_organelle/vacuolar_membrane.html","vacuolar membrane"]],"b":[["ComplexPortal%3ACPX-1193","Vacuolar proton translocating ATPase complex, vacuole variant"],["GO%3A0046611","lysosomal proton-transporting V-type ATPase complex"],["GO%3A0016471","vacuolar proton-transporting V-type ATPase complex"],["NCBIfam%3ATIGR01042","V-type ATPase subunit A"],["NCBIfam%3ATIGR01040","V-type ATPase subunit B"],["NCBIfam%3ATIGR01100","V-type ATPase subunit C"]]},{"id":"GO:0030135","l":"coated vesicle","na":5,"nb":9,"a":[["membrane_organelle/clathrin_coated_vesicle.html","clathrin-coated vesicle"],["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"],["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"]],"b":[["GO%3A0030136","clathrin-coated vesicle"],["GO%3A0030135","coated vesicle"],["GO%3A0030137","COPI-coated vesicle"],["GO%3A0030134","COPII-coated ER to Golgi transport vesicle"],["PANTHER%3APTHR31975","BUD SITE SELECTION PROTEIN 7-RELATED"],["PANTHER%3APTHR10261","COATOMER SUBUNIT GAMMA"]]},{"id":"GO:0031904","l":"endosome lumen","na":8,"nb":5,"a":[["membrane_organelle/early_endosome_lumen.html","early endosome lumen"],["membrane_organelle/endosome.html","endosome"],["membrane_organelle/endosome_lumen.html","endosome lumen"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/late_endosome_lumen.html","late endosome lumen"]],"b":[["GO%3A0031905","early endosome lumen"],["GO%3A0036021","endolysosome lumen"],["GO%3A0031904","endosome lumen"],["GO%3A0031906","late endosome lumen"],["GO%3A0034777","recycling endosome lumen"]]},{"id":"GO:0009528","l":"plastid inner membrane","na":7,"nb":5,"a":[["membrane_organelle/chloroplast_inner_membrane.html","chloroplast inner membrane"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/organellar_chromatophore_inner_membrane.html","organellar chromatophore inner membrane"],["membrane_organelle/plastid_envelope.html","plastid envelope"],["membrane_organelle/plastid_inner_membrane.html","plastid inner membrane"],["membrane_organelle/plastid_intermembrane_space.html","plastid intermembrane space"]],"b":[["GO%3A0033098","amyloplast inner membrane"],["GO%3A0009706","chloroplast inner membrane"],["GO%3A0031899","chromoplast inner membrane"],["GO%3A0036012","cyanelle inner membrane"],["GO%3A0009528","plastid inner membrane"]]},{"id":"GO:0009570","l":"chloroplast stroma","na":7,"nb":5,"a":[["inclusion/plastoglobule.html","plastoglobule"],["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_inner_membrane.html","chloroplast inner membrane"],["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"],["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"]],"b":[["GO%3A0009570","chloroplast stroma"],["PANTHER%3APTHR34113","INACTIVE PURPLE ACID PHOSPHATASE-LIKE PROTEIN"],["PANTHER%3APTHR36803","PROTEIN CHLORORESPIRATORY REDUCTION 7, CHLOROPLASTIC"],["PANTHER%3APTHR47317","PROTEIN LHCP TRANSLOCATION DEFECT"],["PANTHER%3APTHR34669","THIOREDOXIN-LIKE FOLD DOMAIN-CONTAINING PROTEIN MRL7L, CHLOROPLASTIC"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":7,"nb":5,"a":[["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/rc_lh1_pufx_core_complex.html","RC-LH1-PufX core complex"],["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"]],"b":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF02963","Restriction endonuclease EcoRI"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["PROSITE%3APS00974","Mannitol dehydrogenases signature"],["PROSITE%3APS00567","Phosphoribulokinase signature"]]},{"id":"GO:0000324","l":"fungal-type vacuole","na":6,"nb":5,"a":[["membrane_organelle/autophagosome.html","autophagosome"],["membrane_organelle/cvt_vesicle.html","Cvt vesicle"],["membrane_organelle/fungal_type_vacuole.html","fungal-type vacuole"],["membrane_organelle/fungal_type_vacuole_lumen.html","fungal-type vacuole lumen"],["membrane_organelle/fungal_type_vacuole_membrane.html","fungal-type vacuole membrane"],["membrane_organelle/vacuole.html","vacuole"]],"b":[["ComplexPortal%3ACPX-1278","LMA1 complex, TRX1 variant"],["ComplexPortal%3ACPX-1279","LMA1 complex, TRX2 variant"],["GO%3A0000324","fungal-type vacuole"],["InterPro%3AIPR033819","Saccharopepsin"],["PANTHER%3APTHR36819","REGULATOR OF PHOSPHOLIPASE D SRF1"]]},{"id":"GO:0030076","l":"light-harvesting complex","na":5,"nb":6,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/phycobilisome.html","phycobilisome"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"]],"b":[["GO%3A0030076","light-harvesting complex"],["GO%3A0030089","phycobilisome"],["GO%3A0030077","plasma membrane light-harvesting complex"],["GO%3A0009503","thylakoid light-harvesting complex"],["Pfam%3APF02429","Peridinin-chlorophyll A binding protein"],["InterPro%3AIPR036550","Peridinin-chlorophyll A binding superfamily"]]},{"id":"GO:0030694","l":"bacterial-type flagellum basal body, rod","na":6,"nb":5,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"],["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"],["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"]],"b":[["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["GO%3A0030694","bacterial-type flagellum basal body, rod"],["NCBIfam%3ATIGR01396","flagellar basal body rod protein FlgB"],["NCBIfam%3ATIGR01395","flagellar basal body rod protein FlgC"],["NCBIfam%3ATIGR02490","flagellar basal-body rod protein FlgF"]]},{"id":"GO:0000814","l":"ESCRT II complex","na":5,"nb":5,"a":[["membrane_organelle/endosome.html","endosome"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/multivesicular_body.html","multivesicular body"],["other/escrt_complex.html","ESCRT complex"],["other/escrt_ii_complex.html","ESCRT II complex"]],"b":[["ComplexPortal%3ACPX-1623","ESCRT-II complex"],["ComplexPortal%3ACPX-2458","ESCRT-II complex"],["ComplexPortal%3ACPX-2506","ESCRT-II complex"],["GO%3A0000814","ESCRT II complex"],["Pfam%3APF05871","ESCRT-II complex subunit"]]},{"id":"GO:0030134","l":"COPII-coated ER to Golgi transport vesicle","na":5,"nb":5,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"],["membrane_organelle/copii_coated_vesicle_lumen.html","COPII-coated vesicle lumen"],["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"],["other/copii_vesicle_coat.html","COPII vesicle coat"]],"b":[["GO%3A0030134","COPII-coated ER to Golgi transport vesicle"],["PANTHER%3APTHR10984","ENDOPLASMIC RETICULUM-GOLGI INTERMEDIATE COMPARTMENT PROTEIN"],["PANTHER%3APTHR15858","IMMEDIATE EARLY RESPONSE 3-INTERACTING PROTEIN 1"],["PANTHER%3APTHR13144","TEX261 PROTEIN"],["PANTHER%3APTHR14083","YIP1 INTERACTING FACTOR HOMOLOG YIF1 PROTEIN"]]},{"id":"GO:0090114","l":"COPII-coated vesicle budding","na":5,"nb":5,"a":[["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"],["membrane_organelle/endoplasmic_reticulum_membrane.html","endoplasmic reticulum membrane"],["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"],["other/copii_vesicle_coat.html","COPII vesicle coat"],["other/vesicle_coat.html","vesicle coat"]],"b":[["GO%3A0090114","COPII-coated vesicle budding"],["InterPro%3AIPR037550","Sec23, C-terminal"],["PANTHER%3APTHR11141","PROTEIN TRANSPORT PROTEIN SEC23"],["PANTHER%3APTHR13803","SEC24-RELATED PROTEIN"],["PANTHER%3APTHR13923","SEC31-RELATED PROTEIN"]]},{"id":"GO:0140535","l":"intracellular protein-containing complex","na":4,"nb":262,"a":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"],["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"],["other/exodeoxyribonuclease_v_complex.html","exodeoxyribonuclease V complex"],["other/proteasome_complex.html","proteasome complex"]],"b":[["ComplexPortal%3ACPX-15604","VCP-remodelling complex"],["GO%3A0032144","4-aminobutyrate transaminase complex"],["GO%3A0034977","ABIN2-NFKB1-MAP3K8 complex"],["GO%3A0030929","ADPG pyrophosphorylase complex"],["GO%3A0017101","aminoacyl-tRNA synthetase multienzyme complex"],["GO%3A0009356","aminodeoxychorismate synthase complex"]]},{"id":"GO:0031981","l":"nuclear lumen","na":4,"nb":147,"a":[["membrane_organelle/nuclear_lumen.html","nuclear lumen"],["membrane_organelle/nucleus.html","nucleus"],["other/nuclear_chromosome.html","nuclear chromosome"],["other/nucleolus.html","nucleolus"]],"b":[["GO%3A0031981","nuclear lumen"],["PANTHER%3APTHR28028","60S RIBOSOMAL SUBUNIT ASSEMBLY/EXPORT PROTEIN LOC1"],["PANTHER%3APTHR15565","AATF PROTEIN APOPTOSIS ANTAGONIZING TRANSCRIPTION FACTOR"],["PANTHER%3APTHR12311","ACTIVATOR OF BASAL TRANSCRIPTION 1"],["PANTHER%3APTHR31454","ACTIVE REGULATOR OF SIRT1"],["PANTHER%3APTHR46627","AMINOPEPTIDASE O"]]},{"id":"GO:0060271","l":"cilium assembly","na":4,"nb":94,"a":[["appendage/ciliary_membrane.html","ciliary membrane"],["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"],["cytoskeleton/ciliary_basal_body.html","ciliary basal body"]],"b":[["ComplexPortal%3ACPX-1908","BBSome complex"],["ComplexPortal%3ACPX-1909","BBSome complex"],["ComplexPortal%3ACPX-2747","BBSome complex"],["ComplexPortal%3ACPX-428","BBSome complex"],["ComplexPortal%3ACPX-2789","CEP290 complex"],["ComplexPortal%3ACPX-1289","Intraflagellar transport complex A"]]},{"id":"GO:0071973","l":"bacterial-type flagellum-dependent cell motility","na":4,"nb":60,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/periplasmic_flagellum.html","periplasmic flagellum"]],"b":[["ComplexPortal%3ACPX-4886","DNA-directed RNA polymerase holoenzyme complex, SigmaF variant"],["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["GO%3A0071973","bacterial-type flagellum-dependent cell motility"],["GO%3A0071978","bacterial-type flagellum-dependent swarming motility"]]},{"id":"GO:0036064","l":"ciliary basal body","na":4,"nb":42,"a":[["appendage/cilium.html","cilium"],["cytoskeleton/ciliary_basal_body.html","ciliary basal body"],["cytoskeleton/ciliary_rootlet.html","ciliary rootlet"],["cytoskeleton/tripartite_attachment_complex.html","tripartite attachment complex"]],"b":[["GO%3A0036064","ciliary basal body"],["GO%3A1902636","kinociliary basal body"],["GO%3A1902671","left anterior basal body"],["GO%3A1902677","left caudal basal body"],["GO%3A1902673","left posteriolateral basal body"],["GO%3A1902675","left ventral basal body"]]},{"id":"GO:0009522","l":"photosystem I","na":4,"nb":33,"a":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/photosystem_i.html","photosystem I"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["GO%3A0030093","chloroplast photosystem I"],["GO%3A0009522","photosystem I"],["GO%3A0030094","plasma membrane-derived photosystem I"],["NCBIfam%3ANF014449","photosystem I assembly protein Ycf4"],["NCBIfam%3ATIGR01336","photosystem I core protein PsaB"],["NCBIfam%3ANF014578","photosystem I reaction center subunit II"]]},{"id":"GO:0031967","l":"organelle envelope","na":4,"nb":31,"a":[["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitosome_envelope.html","mitosome envelope"],["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/plastid_envelope.html","plastid envelope"]],"b":[["GO%3A0005740","mitochondrial envelope"],["GO%3A0005635","nuclear envelope"],["GO%3A0031967","organelle envelope"],["GO%3A0009526","plastid envelope"],["GO%3A0070732","spindle envelope"],["PANTHER%3APTHR36959","ALTERED INHERITANCE OF MITOCHONDRIA PROTEIN 24, MITOCHONDRIAL"]]},{"id":"GO:0006890","l":"retrograde vesicle-mediated transport, Golgi to endoplasmic reticulum","na":4,"nb":30,"a":[["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["other/copi_vesicle_coat.html","COPI vesicle coat"],["other/dsl1_nzr_complex.html","Dsl1/NZR complex"]],"b":[["ComplexPortal%3ACPX-7803","COPI vesicle coat complex, COPG1-COPZ1 variant"],["ComplexPortal%3ACPX-7970","COPI vesicle coat complex, COPG1-COPZ2 variant"],["ComplexPortal%3ACPX-7969","COPI vesicle coat complex, COPG2-COPZ1 variant"],["ComplexPortal%3ACPX-1652","COPI vesicle coat complex"],["ComplexPortal%3ACPX-2820","COPI vesicle coat complex"],["ComplexPortal%3ACPX-1786","Dsl1 tethering complex"]]},{"id":"GO:0005773","l":"vacuole","na":4,"nb":29,"a":[["membrane_organelle/fungal_type_vacuole.html","fungal-type vacuole"],["membrane_organelle/vacuolar_lumen.html","vacuolar lumen"],["membrane_organelle/vacuolar_membrane.html","vacuolar membrane"],["membrane_organelle/vacuole.html","vacuole"]],"b":[["GO%3A0005776","autophagosome"],["GO%3A0000331","contractile vacuole"],["GO%3A0000323","lytic vacuole"],["GO%3A0000325","plant-type vacuole"],["GO%3A0032195","post-lysosomal vacuole"],["GO%3A0000322","storage vacuole"]]},{"id":"GO:0005770","l":"late endosome","na":4,"nb":27,"a":[["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/late_endosome_lumen.html","late endosome lumen"],["membrane_organelle/late_endosome_membrane.html","late endosome membrane"],["membrane_organelle/multivesicular_body.html","multivesicular body"]],"b":[["ComplexPortal%3ACPX-5181","AP-5 Adaptor complex"],["ComplexPortal%3ACPX-5182","AP-5 Adaptor complex"],["ComplexPortal%3ACPX-20045","AP5-Spastizin-spatacsin complex"],["ComplexPortal%3ACPX-3233","GSE complex"],["ComplexPortal%3ACPX-8153","MON1-CCZ1 guanyl-nucleotide exchange factor complex, MON1A variant"],["ComplexPortal%3ACPX-8152","MON1-CCZ1 guanyl-nucleotide exchange factor complex, MON1B variant"]]},{"id":"GO:0099023","l":"vesicle tethering complex","na":4,"nb":20,"a":[["other/cog_complex.html","COG complex"],["other/corvet_complex.html","CORVET complex"],["other/dsl1_nzr_complex.html","Dsl1/NZR complex"],["other/garp_complex.html","GARP complex"]],"b":[["ComplexPortal%3ACPX-6241","CHEVI tethering complex"],["GO%3A0017119","COG complex"],["GO%3A0106103","COPII vesicles tethering complex"],["GO%3A0033263","CORVET complex"],["GO%3A0070939","Dsl1/NZR complex"],["GO%3A0000145","exocyst"]]},{"id":"GO:0110143","l":"magnetosome","na":4,"nb":17,"a":[["cytoskeleton/mamk_filament.html","MamK filament"],["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]],"b":[["GO%3A0110143","magnetosome"],["NCBIfam%3ANF040997","liposome tubulation protein MamY"],["NCBIfam%3ANF040917","magnetic particle specific iron-binding protein Mms6"],["NCBIfam%3ANF040986","magnetosome biogenesis transporter MamH"],["NCBIfam%3ANF040989","magnetosome biogenesis transporter MamN"],["NCBIfam%3ANF040998","magnetosome biogenesis transporter MamZ"]]},{"id":"GO:0005788","l":"endoplasmic reticulum lumen","na":4,"nb":15,"a":[["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"],["membrane_organelle/endoplasmic_reticulum_lumen.html","endoplasmic reticulum lumen"],["membrane_organelle/endoplasmic_reticulum_membrane.html","endoplasmic reticulum membrane"],["membrane_organelle/nuclear_envelope_lumen.html","nuclear envelope lumen"]],"b":[["ComplexPortal%3ACPX-6822","Glucosidase II complex"],["ComplexPortal%3ACPX-1283","HTM1-PDI1 exomannosidase complex"],["GO%3A0099021","cortical endoplasmic reticulum lumen"],["GO%3A0005788","endoplasmic reticulum lumen"],["GO%3A0099020","perinuclear endoplasmic reticulum lumen"],["GO%3A0048237","rough endoplasmic reticulum lumen"]]},{"id":"GO:0030117","l":"membrane coat","na":4,"nb":13,"a":[["other/ap_type_membrane_coat_adaptor_complex.html","AP-type membrane coat adaptor complex"],["other/clathrin_coat.html","clathrin coat"],["other/membrane_coat.html","membrane coat"],["other/vesicle_coat.html","vesicle coat"]],"b":[["GO%3A0030118","clathrin coat"],["GO%3A0030117","membrane coat"],["GO%3A0030120","vesicle coat"],["InterPro%3AIPR000804","Clathrin adaptor complex, small chain"],["InterPro%3AIPR002553","Clathrin/coatomer adaptor, adaptin-like, N-terminal"],["InterPro%3AIPR006692","COPA/B, second beta-propeller domain"]]},{"id":"GO:0031469","l":"bacterial microcompartment","na":4,"nb":12,"a":[["microcompartment/bacterial_microcompartment.html","bacterial microcompartment"],["microcompartment/carboxysome.html","carboxysome"],["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"],["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]],"b":[["GO%3A0031469","bacterial microcompartment"],["GO%3A0031470","carboxysome"],["GO%3A0031471","ethanolamine degradation polyhedral organelle"],["GO%3A0031472","propanediol degradation polyhedral organelle"],["NCBIfam%3ATIGR02704","carboxysome peptide B"],["NCBIfam%3ANF011934","ethanolamine utilization microcompartment protein EutL"]]},{"id":"GO:0030139","l":"endocytic vesicle","na":4,"nb":11,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle.html","clathrin-coated endocytic vesicle"],["membrane_organelle/endocytic_vesicle.html","endocytic vesicle"],["membrane_organelle/endocytic_vesicle_lumen.html","endocytic vesicle lumen"],["membrane_organelle/endocytic_vesicle_membrane.html","endocytic vesicle membrane"]],"b":[["ComplexPortal%3ACPX-5774","Cubam cobalamin uptake receptor complex"],["ComplexPortal%3ACPX-5847","Cubam cobalamin uptake receptor complex"],["GO%3A0045334","clathrin-coated endocytic vesicle"],["GO%3A0030139","endocytic vesicle"],["GO%3A0045335","phagocytic vesicle"],["GO%3A0032195","post-lysosomal vacuole"]]},{"id":"GO:0030660","l":"Golgi-associated vesicle membrane","na":4,"nb":11,"a":[["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"],["membrane_organelle/trans_golgi_network_transport_vesicle_membrane.html","trans-Golgi network transport vesicle membrane"]],"b":[["GO%3A0030663","COPI-coated vesicle membrane"],["GO%3A0030660","Golgi-associated vesicle membrane"],["GO%3A0012510","trans-Golgi network transport vesicle membrane"],["PANTHER%3APTHR16156","AFTIPHILIN A-RELATED"],["PANTHER%3APTHR15463","AP1 GAMMA SUBUNIT BINDING PROTEIN 1"],["PANTHER%3APTHR19876","COATOMER"]]},{"id":"NCBITaxon:5741","l":"Giardia duodenalis","na":11,"nb":4,"a":[["cytoskeleton/funis.html","funis"],["cytoskeleton/median_body.html","median body"],["cytoskeleton/microtubule.html","microtubule"],["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_crossbridge.html","ventral disc crossbridge"],["cytoskeleton/ventral_disc_dorsal_microribbon.html","ventral disc dorsal microribbon"]],"b":[["Pfam%3APF22293","Annexin E1, fourth repeat"],["Pfam%3APF17529","Family of unknown function (DUF5450)"],["TED%3AAF-V6TFM4-F1-model_v4_TED01","TED novel fold AF-V6TFM4-F1-model_v4_TED01"],["TED%3AAF-V6TNW5-F1-model_v4_TED02","TED novel fold AF-V6TNW5-F1-model_v4_TED02"]]},{"id":"GO:0000815","l":"ESCRT III complex","na":10,"nb":4,"a":[["membrane_organelle/endosome.html","endosome"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/multivesicular_body.html","multivesicular body"],["membrane_organelle/multivesicular_body_intraluminal_vesicle.html","multivesicular body intraluminal vesicle"],["membrane_organelle/multivesicular_body_membrane.html","multivesicular body membrane"]],"b":[["ComplexPortal%3ACPX-1624","ESCRT-III complex"],["ComplexPortal%3ACPX-2459","ESCRT-III complex"],["ComplexPortal%3ACPX-329","ESCRT-III complex"],["GO%3A0000815","ESCRT III complex"]]},{"id":"GO:0000940","l":"outer kinetochore","na":4,"nb":10,"a":[["other/dash_complex.html","DASH complex"],["other/mis12_mind_type_complex.html","MIS12/MIND type complex"],["other/ndc80_complex.html","Ndc80 complex"],["other/outer_kinetochore.html","outer kinetochore"]],"b":[["GO%3A0000444","MIS12/MIND type complex"],["GO%3A0000940","outer kinetochore"],["PANTHER%3APTHR14778","KINETOCHORE-ASSOCIATED PROTEIN DSN1 HOMOLOG"],["PANTHER%3APTHR31749","KINETOCHORE-ASSOCIATED PROTEIN NSL1 HOMOLOG"],["PANTHER%3APTHR10643","KINETOCHORE PROTEIN NDC80"],["PANTHER%3APTHR14281","KINETOCHORE PROTEIN SPC25-RELATED"]]},{"id":"GO:0009295","l":"nucleoid","na":4,"nb":10,"a":[["nucleoid/mitochondrial_nucleoid.html","mitochondrial nucleoid"],["nucleoid/nucleoid.html","nucleoid"],["nucleoid/plastid_nucleoid.html","plastid nucleoid"],["other/single_stranded_dna_binding_protein_complex.html","single-stranded DNA-binding protein complex"]],"b":[["GO%3A0043590","bacterial nucleoid"],["GO%3A0042645","mitochondrial nucleoid"],["GO%3A0009295","nucleoid"],["GO%3A0042646","plastid nucleoid"],["NCBIfam%3ANF016217","MukB N-terminal"],["NCBIfam%3ANF001557","nucleoid-associated protein YejK"]]},{"id":"GO:0005816","l":"spindle pole body","na":4,"nb":9,"a":[["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"],["cytoskeleton/spindle_pole_body.html","spindle pole body"],["spore/prospore_membrane_spindle_pole_body_attachment_site.html","prospore membrane spindle pole body attachment site"]],"b":[["ComplexPortal%3ACPX-1198","Gamma tubulin small complex"],["ComplexPortal%3ACPX-1287","MPS2-BBP1 spindle pole body anchor complex"],["ComplexPortal%3ACPX-26510","SID2-MOB1 protein kinase complex"],["GO%3A0035974","meiotic spindle pole body"],["GO%3A0044732","mitotic spindle pole body"],["GO%3A0005816","spindle pole body"]]},{"id":"GO:0031160","l":"spore wall","na":4,"nb":9,"a":[["spore/microsporidian_type_endospore.html","microsporidian-type endospore"],["spore/microsporidian_type_exospore.html","microsporidian-type exospore"],["spore/polar_tube_anchoring_disc.html","polar tube anchoring disc"],["spore/spore_wall.html","spore wall"]],"b":[["ComplexPortal%3ACPX-3028","1,3-beta-D-glucan synthase complex, FKS3-RHO1 variant"],["GO%3A0005619","ascospore wall"],["GO%3A0097515","asexual spore wall"],["GO%3A0043591","endospore external encapsulating structure"],["GO%3A0097514","sexual spore wall"],["GO%3A0031160","spore wall"]]},{"id":"GO:0001534","l":"radial spoke","na":4,"nb":8,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_central_pair_projection.html","axonemal central pair projection"],["cytoskeleton/axoneme.html","axoneme"],["cytoskeleton/radial_spoke.html","radial spoke"]],"b":[["ComplexPortal%3ACPX-8161","Radial spoke complex, ciliiar variant"],["ComplexPortal%3ACPX-8162","Radial spoke complex, flagellar variant"],["ComplexPortal%3ACPX-8164","Radial spoke complex, flagellar variant"],["GO%3A0120333","radial spoke 1"],["GO%3A0120334","radial spoke 2"],["GO%3A0120335","radial spoke 3"]]},{"id":"GO:0006119","l":"oxidative phosphorylation","na":4,"nb":8,"a":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"]],"b":[["ComplexPortal%3ACPX-268","Cytochrome bd-I ubiquinol oxidase complex"],["ComplexPortal%3ACPX-269","Cytochrome bd-II ubiquinol oxidase complex"],["GO%3A0006119","oxidative phosphorylation"],["PANTHER%3APTHR12448","ATP SYNTHASE EPSILON CHAIN, MITOCHONDRIAL"],["PANTHER%3APTHR13080","ATP SYNTHASE F CHAIN, MITOCHONDRIAL-RELATED"],["PANTHER%3APTHR43141","CYTOCHROME BD2 SUBUNIT II"]]},{"id":"InterPro:IPR001492","l":"","na":4,"nb":8,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["Pfam%3APF00700","Bacterial flagellin C-terminal helical region"],["Pfam%3APF08884","Flagellin D3 domain"],["Pfam%3APF21504","Flagellin, barrel domain"],["Pfam%3APF22370","Flagellin, beta sheet domain"],["PANTHER%3APTHR42792","FLAGELLIN"],["Pfam%3APF00669","Bacterial flagellin N-terminal helical region"]]},{"id":"GO:0009424","l":"bacterial-type flagellum hook","na":4,"nb":7,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["GO%3A0009424","bacterial-type flagellum hook"],["NCBIfam%3ATIGR02492","flagellar hook-associated protein FlgK"],["NCBIfam%3ATIGR02550","flagellar hook-associated protein FlgL"],["NCBIfam%3ANF007514","flagellar hook length control protein FliK"],["InterPro%3AIPR003481","Flagellar hook-associated protein 2, N-terminal"],["NCBIfam%3ANF014518","flagellar cap protein FliD N-terminal domain-containing protein"]]},{"id":"GO:0009527","l":"plastid outer membrane","na":7,"nb":4,"a":[["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"],["membrane_organelle/organellar_chromatophore_outer_membrane.html","organellar chromatophore outer membrane"],["membrane_organelle/plastid_envelope.html","plastid envelope"],["membrane_organelle/plastid_intermembrane_space.html","plastid intermembrane space"],["membrane_organelle/plastid_membrane.html","plastid membrane"]],"b":[["GO%3A0009707","chloroplast outer membrane"],["GO%3A0031900","chromoplast outer membrane"],["GO%3A0036013","cyanelle outer membrane"],["GO%3A0009527","plastid outer membrane"]]},{"id":"GO:0009529","l":"plastid intermembrane space","na":7,"nb":4,"a":[["membrane_organelle/chloroplast_intermembrane_space.html","chloroplast intermembrane space"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/organellar_chromatophore_intermembrane_space.html","organellar chromatophore intermembrane space"],["membrane_organelle/plastid_envelope.html","plastid envelope"],["membrane_organelle/plastid_inner_membrane.html","plastid inner membrane"],["membrane_organelle/plastid_intermembrane_space.html","plastid intermembrane space"]],"b":[["GO%3A0031972","chloroplast intermembrane space"],["GO%3A0031973","chromoplast intermembrane space"],["GO%3A0036014","cyanelle intermembrane space"],["GO%3A0009529","plastid intermembrane space"]]},{"id":"GO:0012507","l":"ER to Golgi transport vesicle membrane","na":4,"nb":7,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"],["membrane_organelle/copii_coated_vesicle_lumen.html","COPII-coated vesicle lumen"],["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"]],"b":[["GO%3A0012507","ER to Golgi transport vesicle membrane"],["PANTHER%3APTHR11141","PROTEIN TRANSPORT PROTEIN SEC23"],["PANTHER%3APTHR45684","RE74312P"],["PANTHER%3APTHR13803","SEC24-RELATED PROTEIN"],["PANTHER%3APTHR13923","SEC31-RELATED PROTEIN"],["PANTHER%3APTHR45837","VESICLE-TRAFFICKING PROTEIN SEC22B"]]},{"id":"GO:0031985","l":"Golgi cisterna","na":4,"nb":7,"a":[["membrane_organelle/golgi_apparatus.html","Golgi apparatus"],["membrane_organelle/golgi_cisterna.html","Golgi cisterna"],["membrane_organelle/golgi_cisterna_membrane.html","Golgi cisterna membrane"],["membrane_organelle/golgi_membrane.html","Golgi membrane"]],"b":[["GO%3A0000137","Golgi cis cisterna"],["GO%3A0031985","Golgi cisterna"],["GO%3A0005797","Golgi medial cisterna"],["GO%3A0000138","Golgi trans cisterna"],["PANTHER%3APTHR13815","GOLGIN-84"],["PANTHER%3APTHR21094","GOS-28 SNARE- RELATED"]]},{"id":"GO:0055035","l":"plastid thylakoid membrane","na":7,"nb":4,"a":[["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"],["membrane_organelle/plastid_membrane.html","plastid membrane"],["membrane_organelle/plastid_thylakoid.html","plastid thylakoid"],["membrane_organelle/plastid_thylakoid_lumen.html","plastid thylakoid lumen"]],"b":[["GO%3A0009535","chloroplast thylakoid membrane"],["GO%3A0033115","cyanelle thylakoid membrane"],["GO%3A0055035","plastid thylakoid membrane"],["GO%3A0042650","prothylakoid membrane"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":4,"nb":7,"a":[["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"],["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]],"b":[["Pfam%3APF19443","DAHL domain"],["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"],["Pfam%3APF03524","Conjugal transfer protein"],["Pfam%3APF27439","Chaperone protein DnaJ C-terminal region"],["Pfam%3APF10907","Protein of unknown function (DUF2749)"],["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]]},{"id":"GO:0009534","l":"chloroplast thylakoid","na":4,"nb":6,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"],["membrane_organelle/chloroplast_thylakoid_lumen.html","chloroplast thylakoid lumen"],["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"]],"b":[["GO%3A0009533","chloroplast stromal thylakoid"],["GO%3A0009534","chloroplast thylakoid"],["GO%3A0009515","granal stacked thylakoid"],["PANTHER%3APTHR47862","PEPTIDYL-PROLYL CIS-TRANS ISOMERASE FKBP18, CHLOROPLASTIC"],["PANTHER%3APTHR34790","PHOTOSYSTEM II CORE COMPLEX PROTEINS PSBY, CHLOROPLASTIC"],["PANTHER%3APTHR36734","YCF37-LIKE PROTEIN"]]},{"id":"GO:0030663","l":"COPI-coated vesicle membrane","na":6,"nb":4,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"],["membrane_organelle/coated_vesicle_membrane.html","coated vesicle membrane"],["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/copi_coated_vesicle_lumen.html","COPI-coated vesicle lumen"],["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"]],"b":[["ComplexPortal%3ACPX-1303","MST27-MST28 vesicle formation complex"],["GO%3A0030663","COPI-coated vesicle membrane"],["GO%3A0012508","Golgi to ER transport vesicle membrane"],["GO%3A0012509","inter-Golgi transport vesicle membrane"]]},{"id":"GO:0070112","l":"organellar chromatophore membrane","na":6,"nb":4,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_inner_membrane.html","organellar chromatophore inner membrane"],["membrane_organelle/organellar_chromatophore_membrane.html","organellar chromatophore membrane"],["membrane_organelle/organellar_chromatophore_outer_membrane.html","organellar chromatophore outer membrane"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"],["membrane_organelle/plasma_membrane_derived_chromatophore_membrane.html","plasma membrane-derived chromatophore membrane"]],"b":[["GO%3A0070113","organellar chromatophore inner membrane"],["GO%3A0070112","organellar chromatophore membrane"],["GO%3A0070114","organellar chromatophore outer membrane"],["GO%3A0070118","organellar chromatophore thylakoid membrane"]]},{"id":"NCBITaxon:5759","l":"Entamoeba histolytica","na":6,"nb":4,"a":[["membrane_organelle/mitosome.html","mitosome"],["membrane_organelle/mitosome_envelope.html","mitosome envelope"],["membrane_organelle/mitosome_inner_membrane.html","mitosome inner membrane"],["membrane_organelle/mitosome_intermembrane_space.html","mitosome intermembrane space"],["membrane_organelle/mitosome_matrix.html","mitosome matrix"],["membrane_organelle/mitosome_outer_membrane.html","mitosome outer membrane"]],"b":[["IDPO%3A0000012","molten globule to order"],["TED%3AAF-C4LXE1-F1-model_v4_TED01","TED highly-symmetric fold AF-C4LXE1-F1-model_v4_TED01"],["TED%3AAF-C4LXH3-F1-model_v4_TED02","TED novel fold AF-C4LXH3-F1-model_v4_TED02"],["TED%3AAF-C4MBN2-F1-model_v4_TED03","TED novel fold AF-C4MBN2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":6,"nb":4,"a":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"],["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"],["secretion_system/type_vi_secretion_system_baseplate.html","type VI secretion system baseplate"],["secretion_system/type_vi_secretion_system_contractile_sheath.html","type VI secretion system contractile sheath"],["secretion_system/type_vi_secretion_system_hcp_tube.html","type VI secretion system Hcp tube"],["secretion_system/type_vi_secretion_system_vgrg_paar_spike_complex.html","type VI secretion system VgrG/PAAR spike complex"]],"b":[["Pfam%3APF01375","Heat-labile enterotoxin alpha chain"],["Pfam%3APF09101","Exotoxin A binding"],["Pfam%3APF09009","Exotoxin A catalytic"],["Pfam%3APF09102","Exotoxin A, targeting"]]},{"id":"GO:0009421","l":"bacterial-type flagellum filament cap","na":4,"nb":5,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["GO%3A0009421","bacterial-type flagellum filament cap"],["NCBIfam%3ANF005955","flagellar filament capping protein FliD"],["NCBIfam%3ANF006282","flagellar filament capping protein FliD"],["NCBIfam%3ANF006435","flagellar filament capping protein FliD"],["NCBIfam%3ANF009400","flagellar filament capping protein FliD"]]},{"id":"GO:0030130","l":"clathrin coat of trans-Golgi network vesicle","na":4,"nb":5,"a":[["membrane_organelle/trans_golgi_network_transport_vesicle_membrane.html","trans-Golgi network transport vesicle membrane"],["other/ap_1_adaptor_complex.html","AP-1 adaptor complex"],["other/clathrin_coat_of_endocytic_vesicle.html","clathrin coat of endocytic vesicle"],["other/clathrin_coat_of_trans_golgi_network_vesicle.html","clathrin coat of trans-Golgi network vesicle"]],"b":[["GO%3A0030130","clathrin coat of trans-Golgi network vesicle"],["InterPro%3AIPR015348","Clathrin, heavy chain, linker, core motif"],["Pfam%3APF01086","Clathrin light chain"],["InterPro%3AIPR016025","Clathrin heavy chain, N-terminal"],["Pfam%3APF09268","Clathrin, heavy-chain linker"]]},{"id":"GO:0030132","l":"clathrin coat of coated pit","na":4,"nb":5,"a":[["other/ap_2_adaptor_complex.html","AP-2 adaptor complex"],["other/clathrin_coat.html","clathrin coat"],["other/clathrin_coat_of_coated_pit.html","clathrin coat of coated pit"],["other/clathrin_coated_pit.html","clathrin-coated pit"]],"b":[["GO%3A0030132","clathrin coat of coated pit"],["InterPro%3AIPR015348","Clathrin, heavy chain, linker, core motif"],["Pfam%3APF01086","Clathrin light chain"],["InterPro%3AIPR016025","Clathrin heavy chain, N-terminal"],["Pfam%3APF09268","Clathrin, heavy-chain linker"]]},{"id":"GO:0031976","l":"plastid thylakoid","na":5,"nb":4,"a":[["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/plastid_thylakoid.html","plastid thylakoid"],["membrane_organelle/plastid_thylakoid_lumen.html","plastid thylakoid lumen"],["membrane_organelle/plastid_thylakoid_membrane.html","plastid thylakoid membrane"]],"b":[["GO%3A0009534","chloroplast thylakoid"],["GO%3A0009843","cyanelle thylakoid"],["GO%3A0031976","plastid thylakoid"],["GO%3A0042649","prothylakoid"]]},{"id":"GO:0061700","l":"GATOR2 complex","na":5,"nb":4,"a":[["other/gator1_complex.html","GATOR1 complex"],["other/gator2_complex.html","GATOR2 complex"],["other/gtr1_gtr2_gtpase_complex.html","Gtr1-Gtr2 GTPase complex"],["other/seh1_associated_complex.html","Seh1-associated complex"],["other/torc1_complex.html","TORC1 complex"]],"b":[["ComplexPortal%3ACPX-26527","GATOR2 complex"],["ComplexPortal%3ACPX-2664","GATOR2 complex"],["ComplexPortal%3ACPX-6227","GATOR2 complex"],["GO%3A0061700","GATOR2 complex"]]},{"id":"GO:1990130","l":"GATOR1 complex","na":5,"nb":4,"a":[["other/gator1_complex.html","GATOR1 complex"],["other/gator2_complex.html","GATOR2 complex"],["other/gtr1_gtr2_gtpase_complex.html","Gtr1-Gtr2 GTPase complex"],["other/seh1_associated_complex.html","Seh1-associated complex"],["other/torc1_complex.html","TORC1 complex"]],"b":[["ComplexPortal%3ACPX-26523","GATOR1 complex"],["ComplexPortal%3ACPX-2781","GATOR1 complex"],["ComplexPortal%3ACPX-6226","GATOR1 complex"],["GO%3A1990130","GATOR1 complex"]]},{"id":"GO:0030096","l":"plasma membrane-derived thylakoid photosystem II","na":4,"nb":4,"a":[["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["GO%3A0030096","plasma membrane-derived thylakoid photosystem II"],["NCBIfam%3ANF040894","photosynthetic complex putative assembly protein PuhB"],["NCBIfam%3ATIGR03069","photosystem II electron transport protein, Sll1252 family"],["NCBIfam%3ATIGR03042","photosystem II protein PsbQ"]]},{"id":"GO:0030666","l":"endocytic vesicle membrane","na":4,"nb":4,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle_membrane.html","clathrin-coated endocytic vesicle membrane"],["membrane_organelle/endocytic_vesicle.html","endocytic vesicle"],["membrane_organelle/endocytic_vesicle_lumen.html","endocytic vesicle lumen"],["membrane_organelle/endocytic_vesicle_membrane.html","endocytic vesicle membrane"]],"b":[["GO%3A0030669","clathrin-coated endocytic vesicle membrane"],["GO%3A0030666","endocytic vesicle membrane"],["GO%3A0043661","peribacteroid membrane"],["GO%3A0030670","phagocytic vesicle membrane"]]},{"id":"GO:0032585","l":"multivesicular body membrane","na":4,"nb":4,"a":[["membrane_organelle/multivesicular_body.html","multivesicular body"],["membrane_organelle/multivesicular_body_intraluminal_vesicle.html","multivesicular body intraluminal vesicle"],["membrane_organelle/multivesicular_body_lumen.html","multivesicular body lumen"],["membrane_organelle/multivesicular_body_membrane.html","multivesicular body membrane"]],"b":[["ComplexPortal%3ACPX-329","ESCRT-III complex"],["ComplexPortal%3ACPX-332","ESCRT-III complex, variant Chmp1b1"],["ComplexPortal%3ACPX-333","ESCRT-III complex, variant Chmp1b2"],["GO%3A0032585","multivesicular body membrane"]]},{"id":"GO:0097589","l":"archaeal-type flagellum","na":4,"nb":4,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/cilium.html","cilium"]],"b":[["GO%3A0097589","archaeal-type flagellum"],["NCBIfam%3ANF052589","archaellum protein ArlH"],["NCBIfam%3ANF052590","archaellum stator protein ArlF"],["NCBIfam%3ANF052591","archaellum stator protein ArlG"]]},{"id":"NCBITaxon:224308","l":"Bacillus subtilis subsp. subtilis str. 168","na":3,"nb":11310,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["division_machinery/divisome_complex.html","divisome complex"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]],"b":[["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.10.3.-","With oxygen as acceptor"],["EC%3A1.13.12.-","With incorporation of one atom of oxygen (internal monooxygenases or internal mixed function oxidases)"],["EC%3A1.14.19.-","With oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water"],["EC%3A1.17.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.21.98.-","With other, known acceptors"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":3,"nb":1616,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"],["other/pyrenoid.html","pyrenoid"]],"b":[["EC%3A1.1.1.170","3beta-hydroxysteroid-4alpha-carboxylate 3-dehydrogenase (decarboxylating)"],["EC%3A1.1.1.262","4-hydroxythreonine-4-phosphate dehydrogenase"],["EC%3A1.1.1.276","serine 3-dehydrogenase (NADP(+))"],["EC%3A1.1.1.286","isocitrate--homoisocitrate dehydrogenase"],["EC%3A1.1.1.305","UDP-glucuronic acid oxidase (UDP-4-keto-hexauronic acid decarboxylating)"],["EC%3A1.1.1.343","phosphogluconate dehydrogenase (NAD(+)-dependent, decarboxylating)"]]},{"id":"GO:0140513","l":"nuclear protein-containing complex","na":3,"nb":495,"a":[["other/cbf3_complex.html","CBF3 complex"],["other/coma_complex.html","COMA complex"],["other/dash_complex.html","DASH complex"]],"b":[["GO%3A0002180","5-lipoxygenase complex"],["GO%3A1990354","activated SUMO-E1 ligase complex"],["GO%3A0030895","apolipoprotein B mRNA editing enzyme complex"],["GO%3A0033167","ARC complex"],["GO%3A0070310","ATR-ATRIP complex"],["GO%3A0072589","box H/ACA scaRNP complex"]]},{"id":"GO:0005840","l":"ribosome","na":3,"nb":418,"a":[["ribonucleoprotein/large_ribosomal_subunit.html","large ribosomal subunit"],["ribonucleoprotein/ribosome.html","ribosome"],["ribonucleoprotein/small_ribosomal_subunit.html","small ribosomal subunit"]],"b":[["ComplexPortal%3ACPX-2854","Elongation Factor eEF1 complex, variant CAM1"],["ComplexPortal%3ACPX-425","Elongation Factor eEF1 complex, variant TEF4"],["ComplexPortal%3ACPX-427","Eukaryotic translation initiation factor 2 complex"],["ComplexPortal%3ACPX-430","Eukaryotic translation initiation factor 4F complex, variant TIF4631"],["ComplexPortal%3ACPX-431","Eukaryotic translation initiation factor 4F complex, variant TIF4632"],["ComplexPortal%3ACPX-1295","MKT1-PBP1 translation regulation complex"]]},{"id":"GO:0140534","l":"endoplasmic reticulum protein-containing complex","na":3,"nb":72,"a":[["other/endoplasmic_reticulum_sec_complex.html","endoplasmic reticulum Sec complex"],["other/get_complex.html","GET complex"],["other/sec62_sec63_complex.html","Sec62/Sec63 complex"]],"b":[["GO%3A0036513","Derlin-1 retrotranslocation complex"],["GO%3A0036502","Derlin-1-VIMP complex"],["GO%3A0031502","dolichyl-phosphate-mannose-protein mannosyltransferase complex"],["GO%3A0070939","Dsl1/NZR complex"],["GO%3A0070385","egasyn-beta-glucuronidase complex"],["GO%3A0072546","EMC complex"]]},{"id":"GO:0030288","l":"outer membrane-bounded periplasmic space","na":3,"nb":62,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"],["envelope/periplasmic_space.html","periplasmic space"]],"b":[["ComplexPortal%3ACPX-319","Trimethylamine-N-oxide reductase TorAC complex"],["GO%3A0030288","outer membrane-bounded periplasmic space"],["NCBIfam%3ATIGR03227","2-aminoethylphosphonate ABC transporter substrate-binding protein"],["NCBIfam%3ANF000397","ACC family cephalosporin-hydrolyzing class C beta-lactamase"],["NCBIfam%3ATIGR01672","acid phosphatase AphA"],["NCBIfam%3ANF000385","ACT family cephalosporin-hydrolyzing class C beta-lactamase"]]},{"id":"GO:0009523","l":"photosystem II","na":3,"nb":59,"a":[["energy_complex/photosystem_ii.html","photosystem II"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["GO%3A0030095","chloroplast photosystem II"],["GO%3A0009523","photosystem II"],["GO%3A0030096","plasma membrane-derived thylakoid photosystem II"],["NCBIfam%3ATIGR01332","cytochrome b559 subunit alpha"],["NCBIfam%3ATIGR01333","cytochrome b559 subunit beta"],["NCBIfam%3ANF012505","Lumenal portion of Cytochrome b559, alpha (gene psbE) subunit"]]},{"id":"GO:0007059","l":"chromosome segregation","na":3,"nb":58,"a":[["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"],["other/kinetochore.html","kinetochore"]],"b":[["ComplexPortal%3ACPX-26706","CLTA-CLTC-CKAP5-TACC3, mitotic spindle organizing complex"],["ComplexPortal%3ACPX-26711","CLTB-CLTC-CKAP5-TACC3, mitotic spindle organizing complex"],["ComplexPortal%3ACPX-2533","Kinetochore CCAN complex"],["ComplexPortal%3ACPX-5646","Kinetochore CCAN complex"],["ComplexPortal%3ACPX-5704","Kinetochore CCAN complex"],["ComplexPortal%3ACPX-26614","NDC80 complex"]]},{"id":"GO:0016236","l":"macroautophagy","na":3,"nb":53,"a":[["membrane_organelle/autophagosome.html","autophagosome"],["membrane_organelle/autophagosome_membrane.html","autophagosome membrane"],["other/trappiii_protein_complex.html","TRAPPIII protein complex"]],"b":[["ComplexPortal%3ACPX-3863","atg-5-atg-12-atg-16.1-atg-16.2 complex"],["ComplexPortal%3ACPX-3865","atg-5-atg-12-atg-16.1 complex"],["ComplexPortal%3ACPX-3866","atg-5-atg-12-atg-16.2 complex"],["ComplexPortal%3ACPX-1849","ATG12-ATG5-ATG16 complex"],["ComplexPortal%3ACPX-200","ATG12-ATG5-ATG16L1 complex"],["ComplexPortal%3ACPX-328","Atg12-Atg5-Atg16l1 complex"]]},{"id":"GO:0005938","l":"cell cortex","na":3,"nb":49,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"],["cytoskeleton/septin_ring.html","septin ring"],["other/cell_cortex.html","cell cortex"]],"b":[["ComplexPortal%3ACPX-977","CDC24-FAR1-Gbetagamma complex"],["ComplexPortal%3ACPX-26690","Cortical microtubule stabilization complex, KANK1 variant"],["ComplexPortal%3ACPX-20447","Cortical microtubule stabilization complex, KANK2 variant"],["ComplexPortal%3ACPX-3381","Egg-3/4/5 MBK-2 complex"],["ComplexPortal%3ACPX-26666","GNAI1-GPSM2-NUMA1, spindle orientation complex"],["ComplexPortal%3ACPX-4027","gpr-1-gpr-2-lin-5 complex"]]},{"id":"GO:0005769","l":"early endosome","na":3,"nb":44,"a":[["membrane_organelle/early_endosome.html","early endosome"],["membrane_organelle/early_endosome_lumen.html","early endosome lumen"],["membrane_organelle/early_endosome_membrane.html","early endosome membrane"]],"b":[["ComplexPortal%3ACPX-5044","BLOC-2 complex"],["ComplexPortal%3ACPX-5084","BLOC-2 complex"],["ComplexPortal%3ACPX-2540","FERRY RAB5 effector complex"],["ComplexPortal%3ACPX-11549","Huntingtin-HAP40 endosomal complex"],["ComplexPortal%3ACPX-26674","Huntingtin-HAP40 endosomal complex"],["ComplexPortal%3ACPX-5055","Neuronal AP-3 Adaptor complex, sigma3a variant"]]},{"id":"GO:0000502","l":"proteasome complex","na":3,"nb":27,"a":[["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"]],"b":[["ComplexPortal%3ACPX-9082","19S-20S-PA28-alphabeta hybrid proteasome complex"],["ComplexPortal%3ACPX-9085","19S-20S-PA28-gamma hybrid proteasome complex"],["ComplexPortal%3ACPX-9003","20S immunoproteasome complex"],["ComplexPortal%3ACPX-8806","20S proteasome complex"],["ComplexPortal%3ACPX-9004","20S thymoproteasome complex"],["ComplexPortal%3ACPX-2262","26S proteasome complex"]]},{"id":"GO:0030089","l":"phycobilisome","na":3,"nb":26,"a":[["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["GO%3A0030089","phycobilisome"],["NCBIfam%3ATIGR01337","allophycocyanin subunit beta"],["NCBIfam%3ANF058510","bifunctional rod-capping linker CpcD/ferredoxin--NADP reductase PetH"],["NCBIfam%3ATIGR01338","C-phycocyanin subunit alpha"],["NCBIfam%3ATIGR01339","C-phycocyanin subunit beta"],["NCBIfam%3ANF058511","phycobilisome rod-core linker protein CpcG1"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. PCC 7120 = FACHB-418","na":3,"nb":26,"a":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]],"b":[["Pfam%3APF27270","Alr1449"],["Pfam%3APF27301","Alr2735 N-terminal domain"],["Pfam%3APF27288","Alr2735"],["Pfam%3APF21571","Arginine dihydrolase ArgZ-like, C-terminal, first region"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF13205","Bacterial Ig-like domain"]]},{"id":"GO:0031901","l":"early endosome membrane","na":3,"nb":25,"a":[["membrane_organelle/early_endosome.html","early endosome"],["membrane_organelle/early_endosome_lumen.html","early endosome lumen"],["membrane_organelle/early_endosome_membrane.html","early endosome membrane"]],"b":[["ComplexPortal%3ACPX-6311","ATP11B-CDC50A P4-ATPase complex"],["ComplexPortal%3ACPX-1137","CORVET tethering complex"],["ComplexPortal%3ACPX-1626","CORVET tethering complex"],["ComplexPortal%3ACPX-2562","WASH complex"],["ComplexPortal%3ACPX-1173","WASH complex, variant WASH2P/WASHC2A"],["ComplexPortal%3ACPX-1168","WASH complex, variant WASH2P/WASHC2C"]]},{"id":"GO:0005618","l":"cell wall","na":3,"nb":24,"a":[["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["spore/exosporium.html","exosporium"],["spore/spore_wall.html","spore wall"]],"b":[["GO%3A0005618","cell wall"],["GO%3A0097570","cyst wall"],["GO%3A0009277","fungal-type cell wall"],["GO%3A0009274","peptidoglycan-based cell wall"],["GO%3A0009505","plant-type cell wall"],["GO%3A0031160","spore wall"]]},{"id":"GO:0098791","l":"Golgi apparatus subcompartment","na":3,"nb":22,"a":[["membrane_organelle/cis_golgi_network.html","cis-Golgi network"],["membrane_organelle/golgi_cisterna.html","Golgi cisterna"],["membrane_organelle/trans_golgi_network.html","trans-Golgi network"]],"b":[["GO%3A0098791","Golgi apparatus subcompartment"],["GO%3A0031985","Golgi cisterna"],["GO%3A0005795","Golgi stack"],["GO%3A0005802","trans-Golgi network"],["PANTHER%3APTHR47180","ADP-RIBOSYLATION FACTOR-BINDING PROTEIN GGA1-RELATED"],["PANTHER%3APTHR21514","AP-4 COMPLEX ACCESSORY SUBUNIT TEPSIN"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":3,"nb":19,"a":[["appendage/type_iv_pilus.html","type IV pilus"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]],"b":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"],["Pfam%3APF18173","Bacterial HORMA domain 2"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["Pfam%3APF27322","Cap8 HORMA domain"],["Pfam%3APF01526","Tn3 transposase DDE domain"]]},{"id":"GO:0016234","l":"inclusion body","na":3,"nb":15,"a":[["inclusion/parasporal_crystal.html","parasporal crystal"],["inclusion/r_body.html","R-body"],["inclusion/sulfur_globule.html","sulfur globule"]],"b":[["GO%3A0016235","aggresome"],["GO%3A0097407","Bunina body"],["GO%3A0097408","fibrillary inclusion"],["GO%3A0097409","glial cytoplasmic inclusion"],["GO%3A0097412","hyaline inclusion"],["GO%3A0016234","inclusion body"]]},{"id":"GO:0031966","l":"mitochondrial membrane","na":3,"nb":15,"a":[["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrial_membrane.html","mitochondrial membrane"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"]],"b":[["ComplexPortal%3ACPX-8302","ABCB10-ABCB7-FECH ABC transporter"],["ComplexPortal%3ACPX-1721","Mitochondrial respiratory chain complex IV, COX5A variant"],["ComplexPortal%3ACPX-1722","Mitochondrial respiratory chain complex IV, COX5B variant"],["ComplexPortal%3ACPX-6123","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-8620","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-9641","Mitochondrial respiratory chain complex IV"]]},{"id":"GO:0009277","l":"fungal-type cell wall","na":3,"nb":14,"a":[["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["other/1_3_beta_d_glucan_synthase_complex.html","1,3-beta-D-glucan synthase complex"],["spore/ascospore_wall.html","ascospore wall"]],"b":[["ComplexPortal%3ACPX-1812","1,3-beta-D-glucan synthase complex, FKS1-RHO1 variant"],["GO%3A0005619","ascospore wall"],["GO%3A0009277","fungal-type cell wall"],["GO%3A0030446","hyphal cell wall"],["GO%3A0030445","yeast-form cell wall"],["InterPro%3AIPR019778","Class I Hydrophobin, conserved site"]]},{"id":"GO:0030008","l":"TRAPP complex","na":3,"nb":14,"a":[["other/trappi_protein_complex.html","TRAPPI protein complex"],["other/trappii_protein_complex.html","TRAPPII protein complex"],["other/trappiii_protein_complex.html","TRAPPIII protein complex"]],"b":[["GO%3A0030008","TRAPP complex"],["GO%3A1990070","TRAPPI protein complex"],["GO%3A1990071","TRAPPII protein complex"],["GO%3A1990072","TRAPPIII protein complex"],["PANTHER%3APTHR20902","41-2 PROTEIN ANTIGEN-RELATED"],["PANTHER%3APTHR13251","EPILEPSY HOLOPROSENCEPHALY CANDIDATE 1/TMEM1"]]},{"id":"GO:0055037","l":"recycling endosome","na":3,"nb":14,"a":[["membrane_organelle/recycling_endosome.html","recycling endosome"],["membrane_organelle/recycling_endosome_lumen.html","recycling endosome lumen"],["membrane_organelle/recycling_endosome_membrane.html","recycling endosome membrane"]],"b":[["ComplexPortal%3ACPX-6207","EARP tethering complex"],["GO%3A0090653","apical recycling endosome"],["GO%3A0090654","basolateral recycling endosome"],["GO%3A0098832","peri-centrosomal recycling endosome"],["GO%3A0098837","postsynaptic recycling endosome"],["GO%3A0055037","recycling endosome"]]},{"id":"GO:0000421","l":"autophagosome membrane","na":3,"nb":13,"a":[["membrane_organelle/autophagosome.html","autophagosome"],["membrane_organelle/autophagosome_lumen.html","autophagosome lumen"],["membrane_organelle/autophagosome_membrane.html","autophagosome membrane"]],"b":[["ComplexPortal%3ACPX-25783","SNARE complex STX17-SNAP29-VAMP7"],["ComplexPortal%3ACPX-25782","SNARE complex STX17-SNAP29-VAMP8"],["ComplexPortal%3ACPX-26400","SNARE complex STX17-SNAP47-VAMP7"],["ComplexPortal%3ACPX-26401","SNARE complex STX17-SNAP47-VAMP8"],["ComplexPortal%3ACPX-26524","SNARE complex STX4-SNAP29-SEC22b"],["ComplexPortal%3ACPX-25786","SNARE priming complex STX17-SNAP29-YKT6"]]},{"id":"GO:0005776","l":"autophagosome","na":3,"nb":12,"a":[["membrane_organelle/autophagosome.html","autophagosome"],["membrane_organelle/autophagosome_lumen.html","autophagosome lumen"],["membrane_organelle/autophagosome_membrane.html","autophagosome membrane"]],"b":[["ComplexPortal%3ACPX-362","Heparanase complex"],["ComplexPortal%3ACPX-363","Heparanase complex"],["ComplexPortal%3ACPX-4821","unc-51-atg-13 complex"],["GO%3A0044753","amphisome"],["GO%3A0005776","autophagosome"],["PANTHER%3APTHR13038","APG9 AUTOPHAGY 9"]]},{"id":"GO:0005940","l":"septin ring","na":3,"nb":12,"a":[["cytoskeleton/septin_ring.html","septin ring"],["other/cell_cortex.html","cell cortex"],["other/cellular_bud_neck.html","cellular bud neck"]],"b":[["ComplexPortal%3ACPX-26526","Septin1-Septin2-pnut complex"],["ComplexPortal%3ACPX-26529","Septin4-Septin5-pnut complex"],["GO%3A0000144","cellular bud neck septin ring"],["GO%3A0032172","germ tube septin ring"],["GO%3A0032168","hyphal septin ring"],["GO%3A0032175","mating projection septin ring"]]},{"id":"GO:0060170","l":"ciliary membrane","na":3,"nb":12,"a":[["appendage/ciliary_membrane.html","ciliary membrane"],["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"]],"b":[["ComplexPortal%3ACPX-1908","BBSome complex"],["ComplexPortal%3ACPX-1909","BBSome complex"],["GO%3A0060170","ciliary membrane"],["GO%3A0020018","ciliary pocket membrane"],["GO%3A0120201","cone photoreceptor disc membrane"],["GO%3A0098804","non-motile cilium membrane"]]},{"id":"GO:0061617","l":"MICOS complex","na":3,"nb":12,"a":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"],["other/micos_complex.html","MICOS complex"]],"b":[["ComplexPortal%3ACPX-140","MICOS mitochondrial contact site and cristae organizing system complex"],["ComplexPortal%3ACPX-25732","MICOS mitochondrial contact site and cristae organizing system complex, MIC10A variant"],["ComplexPortal%3ACPX-25733","MICOS mitochondrial contact site and cristae organizing system complex, MIC10B variant"],["ComplexPortal%3ACPX-25735","MICOS mitochondrial contact site and cristae organizing system complex, MIC10C variant"],["ComplexPortal%3ACPX-6141","MICOS mitochondrial contact site and cristae organizing system complex"],["GO%3A0061617","MICOS complex"]]},{"id":"GO:0005685","l":"U1 snRNP","na":3,"nb":11,"a":[["ribonucleoprotein/u1_snrnp.html","U1 snRNP"],["ribonucleoprotein/u2_type_precatalytic_spliceosome.html","U2-type precatalytic spliceosome"],["ribonucleoprotein/u2_type_prespliceosome.html","U2-type prespliceosome"]],"b":[["ComplexPortal%3ACPX-43","Sm complex"],["ComplexPortal%3ACPX-6033","Sm complex"],["ComplexPortal%3ACPX-23","U1 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-2392","U1 small nuclear ribonucleoprotein complex"],["GO%3A0005685","U1 snRNP"],["PANTHER%3APTHR11864","PRE-MRNA-PROCESSING PROTEIN PRP40"]]},{"id":"GO:0031262","l":"Ndc80 complex","na":3,"nb":11,"a":[["other/kinetochore.html","kinetochore"],["other/ndc80_complex.html","Ndc80 complex"],["other/outer_kinetochore.html","outer kinetochore"]],"b":[["ComplexPortal%3ACPX-26614","NDC80 complex"],["ComplexPortal%3ACPX-548","NDC80 complex"],["ComplexPortal%3ACPX-549","Ndc80 complex"],["ComplexPortal%3ACPX-550","Ndc80 complex"],["ComplexPortal%3ACPX-551","Ndc80 complex"],["ComplexPortal%3ACPX-806","Ndc80 complex"]]},{"id":"GO:0000444","l":"MIS12/MIND type complex","na":3,"nb":10,"a":[["other/kinetochore.html","kinetochore"],["other/mis12_mind_type_complex.html","MIS12/MIND type complex"],["other/outer_kinetochore.html","outer kinetochore"]],"b":[["ComplexPortal%3ACPX-1186","Kinetochore MIS12 complex"],["ComplexPortal%3ACPX-5643","Kinetochore MIS12 complex"],["ComplexPortal%3ACPX-5701","Kinetochore MIS12 complex"],["ComplexPortal%3ACPX-807","Kinetochore Mis12 complex"],["ComplexPortal%3ACPX-7681","Kinetochore MIS12 complex, Nnf1a variant"],["ComplexPortal%3ACPX-8928","Kinetochore MIS12 complex, Nnf1b variant"]]},{"id":"GO:0009427","l":"bacterial-type flagellum basal body, distal rod, L ring","na":3,"nb":10,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]],"b":[["GO%3A0009427","bacterial-type flagellum basal body, distal rod, L ring"],["NCBIfam%3ANF001301","flagellar basal body L-ring protein FlgH"],["NCBIfam%3ANF001304","flagellar basal body L-ring protein FlgH"],["NCBIfam%3ANF001305","flagellar basal body L-ring protein FlgH"],["NCBIfam%3ANF009072","flagellar basal body L-ring protein FlgH"],["NCBIfam%3ANF009337","flagellar basal body L-ring protein FlgH"]]},{"id":"GO:0071986","l":"Ragulator complex","na":3,"nb":10,"a":[["other/gtr1_gtr2_gtpase_complex.html","Gtr1-Gtr2 GTPase complex"],["other/ragulator_complex.html","Ragulator complex"],["other/torc1_complex.html","TORC1 complex"]],"b":[["ComplexPortal%3ACPX-3172","EGO complex"],["ComplexPortal%3ACPX-3233","GSE complex"],["ComplexPortal%3ACPX-26528","Ragulator complex"],["ComplexPortal%3ACPX-2709","Ragulator complex"],["ComplexPortal%3ACPX-4741","Ragulator complex"],["ComplexPortal%3ACPX-4761","Ragulator complex"]]},{"id":"GO:0005839","l":"proteasome core complex","na":3,"nb":9,"a":[["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"]],"b":[["ComplexPortal%3ACPX-8806","20S proteasome complex"],["GO%3A0031603","cytosolic proteasome core complex"],["GO%3A0031601","nuclear proteasome core complex"],["GO%3A0005839","proteasome core complex"],["NCBIfam%3ATIGR03634","archaeal proteasome endopeptidase complex subunit beta"],["NCBIfam%3ATIGR03690","proteasome subunit beta"]]},{"id":"GO:0007035","l":"vacuolar acidification","na":3,"nb":9,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["membrane_organelle/fungal_type_vacuole_membrane.html","fungal-type vacuole membrane"],["membrane_organelle/vacuolar_membrane.html","vacuolar membrane"]],"b":[["ComplexPortal%3ACPX-10301","RAVE complex, DMXL1 variant"],["ComplexPortal%3ACPX-10303","RAVE complex, DMXL2 variant"],["ComplexPortal%3ACPX-6905","Vacuolar proton translocating ATPase complex, ATP6V0A3 variant"],["ComplexPortal%3ACPX-1193","Vacuolar proton translocating ATPase complex, vacuole variant"],["GO%3A0007042","lysosomal lumen acidification"],["GO%3A0007035","vacuolar acidification"]]},{"id":"CHEBI:17029","l":"chitin","na":3,"nb":8,"a":[["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["membrane_organelle/chitosome.html","chitosome"],["spore/microsporidian_type_endospore.html","microsporidian-type endospore"]],"b":[["EC%3A2.4.1.16","chitin synthase"],["EC%3A3.5.1.41","chitin deacetylase"],["RHEA%3A85463","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-1)-N-acetyl-alpha-D-glucosamine"],["RHEA%3A50672","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-2) + N,N'-diacetylchitobiose"],["RHEA%3A85003","[(1->4)-N-acetyl-beta-D-glucosaminyl](n)-N-acetyl-alpha-D-glucosamine + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n) + N-acetyl-alpha-D-glucosamine"],["RHEA%3A10464","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + n H2O = chitosan + n acetate"]]},{"id":"GO:0005798","l":"Golgi-associated vesicle","na":3,"nb":8,"a":[["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"]],"b":[["ComplexPortal%3ACPX-1698","EMP24 complex"],["GO%3A0030137","COPI-coated vesicle"],["GO%3A0005798","Golgi-associated vesicle"],["GO%3A0030140","trans-Golgi network transport vesicle"],["PANTHER%3APTHR31975","BUD SITE SELECTION PROTEIN 7-RELATED"],["PANTHER%3APTHR10261","COATOMER SUBUNIT GAMMA"]]},{"id":"GO:0031969","l":"chloroplast membrane","na":3,"nb":8,"a":[["membrane_organelle/chloroplast_inner_membrane.html","chloroplast inner membrane"],["membrane_organelle/chloroplast_membrane.html","chloroplast membrane"],["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"]],"b":[["GO%3A0009706","chloroplast inner membrane"],["GO%3A0031969","chloroplast membrane"],["GO%3A0009707","chloroplast outer membrane"],["PANTHER%3APTHR31038","EXPRESSED PROTEIN-RELATED"],["PANTHER%3APTHR34048","LOW-DENSITY RECEPTOR-LIKE PROTEIN"],["PANTHER%3APTHR36317","PROTEIN MULTIPLE CHLOROPLAST DIVISION SITE 1"]]},{"id":"GO:0045335","l":"phagocytic vesicle","na":3,"nb":8,"a":[["membrane_organelle/phagocytic_vesicle.html","phagocytic vesicle"],["membrane_organelle/phagocytic_vesicle_lumen.html","phagocytic vesicle lumen"],["membrane_organelle/phagocytic_vesicle_membrane.html","phagocytic vesicle membrane"]],"b":[["GO%3A0045336","clathrin-coated phagocytic vesicle"],["GO%3A0032009","early phagosome"],["GO%3A1990457","pexophagosome"],["GO%3A0045335","phagocytic vesicle"],["GO%3A0032010","phagolysosome"],["PANTHER%3APTHR31093","CELL SURFACE GLYCOPROTEIN GP138-RELATED-RELATED"]]},{"id":"GO:0098799","l":"outer mitochondrial membrane protein complex","na":3,"nb":8,"a":[["other/ermes_complex.html","ERMES complex"],["other/mitochondrial_outer_membrane_translocase_complex.html","mitochondrial outer membrane translocase complex"],["other/sam_complex.html","SAM complex"]],"b":[["ComplexPortal%3ACPX-3196","ERMES complex"],["ComplexPortal%3ACPX-6100","SARS-CoV-2 9b complex"],["ComplexPortal%3ACPX-6101","SARS-CoV 9b complex"],["GO%3A0036266","Cdc48p-Npl4p-Vms1p AAA ATPase complex"],["GO%3A0032865","ERMES complex"],["GO%3A0140595","MIM complex"]]},{"id":"GO:0030112","l":"glycocalyx","na":3,"nb":7,"a":[["envelope/capsule.html","capsule"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]],"b":[["GO%3A0042603","capsule"],["GO%3A0030112","glycocalyx"],["GO%3A0120240","platelet glycocalyx"],["GO%3A0030114","slime layer"],["GO%3A0120238","sperm glycocalyx"],["GO%3A0120234","stereocilium coat"]]},{"id":"GO:0035859","l":"Seh1-associated complex","na":3,"nb":7,"a":[["other/gator1_complex.html","GATOR1 complex"],["other/gator2_complex.html","GATOR2 complex"],["other/seh1_associated_complex.html","Seh1-associated complex"]],"b":[["ComplexPortal%3ACPX-3231","SEA complex"],["GO%3A0035859","Seh1-associated complex"],["PANTHER%3APTHR13153","CGTHBA PROTEIN -14 GENE PROTEIN"],["PANTHER%3APTHR13179","DEP DOMAIN CONTAINING PROTEIN 5"],["PANTHER%3APTHR46200","GATOR COMPLEX PROTEIN WDR24"],["PANTHER%3APTHR46170","GATOR COMPLEX PROTEIN WDR59"]]},{"id":"GO:0044284","l":"mitochondrial crista junction","na":3,"nb":7,"a":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"],["other/micos_complex.html","MICOS complex"]],"b":[["ComplexPortal%3ACPX-140","MICOS mitochondrial contact site and cristae organizing system complex"],["ComplexPortal%3ACPX-25732","MICOS mitochondrial contact site and cristae organizing system complex, MIC10A variant"],["ComplexPortal%3ACPX-25733","MICOS mitochondrial contact site and cristae organizing system complex, MIC10B variant"],["ComplexPortal%3ACPX-25735","MICOS mitochondrial contact site and cristae organizing system complex, MIC10C variant"],["ComplexPortal%3ACPX-6141","MICOS mitochondrial contact site and cristae organizing system complex"],["GO%3A0044284","mitochondrial crista junction"]]},{"id":"GO:0120115","l":"Lsm2-8 complex","na":3,"nb":7,"a":[["ribonucleoprotein/u4atac_u6atac_snrnp.html","U4atac/U6atac snRNP"],["ribonucleoprotein/u6_snrnp.html","U6 snRNP"],["ribonucleoprotein/u6atac_snrnp.html","U6atac snRNP"]],"b":[["ComplexPortal%3ACPX-26553","LSM2-8 complex"],["ComplexPortal%3ACPX-26555","LSM2-8 complex"],["ComplexPortal%3ACPX-1309","LSM2-8 complex, variant LSM3A-LSM6A"],["ComplexPortal%3ACPX-1352","LSM2-8 complex, variant LSM3A-LSM6B"],["ComplexPortal%3ACPX-1353","LSM2-8 complex, variant LSM3B-LSM6A"],["ComplexPortal%3ACPX-1354","LSM2-8 complex, variant LSM3B-LSM6B"]]},{"id":"GO:1990131","l":"Gtr1-Gtr2 GTPase complex","na":3,"nb":7,"a":[["other/gtr1_gtr2_gtpase_complex.html","Gtr1-Gtr2 GTPase complex"],["other/ragulator_complex.html","Ragulator complex"],["other/torc1_complex.html","TORC1 complex"]],"b":[["ComplexPortal%3ACPX-26516","RAG guanosine triphosphatase complex"],["ComplexPortal%3ACPX-26517","RAG guanosine triphosphatase complex"],["ComplexPortal%3ACPX-2542","RAG guanosine triphosphatase complex, RAGA-RAGC variant"],["ComplexPortal%3ACPX-2513","RAG guanosine triphosphatase complex, RAGA-RAGD variant"],["ComplexPortal%3ACPX-2514","RAG guanosine triphosphatase complex, RAGB-RAGC variant"],["ComplexPortal%3ACPX-767","RAG guanosine triphosphatase complex, RAGB-RAGD variant"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":3,"nb":7,"a":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"]],"b":[["Pfam%3APF04439","Streptomycin adenylyltransferase"],["TED%3AAF-A0A696J2C3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A696J2C3-F1-model_v4_TED01"],["TED%3AAF-A0A825M6H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A825M6H4-F1-model_v4_TED01"],["TED%3AAF-A0A5T0SBG5-F1-model_v4_TED01","TED novel fold AF-A0A5T0SBG5-F1-model_v4_TED01"],["TED%3AAF-A0A698JVM3-F1-model_v4_TED03","TED novel fold AF-A0A698JVM3-F1-model_v4_TED03"],["TED%3AAF-A0A824N1N8-F1-model_v4_TED01","TED novel fold AF-A0A824N1N8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:5722","l":"Trichomonas vaginalis","na":3,"nb":7,"a":[["membrane_organelle/hydrogenosomal_membrane.html","hydrogenosomal membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/hydrogenosome_lumen.html","hydrogenosome lumen"]],"b":[["TED%3AAF-A2F3M7-F1-model_v4_TED03","TED highly-symmetric fold AF-A2F3M7-F1-model_v4_TED03"],["TED%3AAF-A2HEW4-F1-model_v4_TED01","TED highly-symmetric fold AF-A2HEW4-F1-model_v4_TED01"],["TED%3AAF-A2DT59-F1-model_v4_TED01","TED novel fold AF-A2DT59-F1-model_v4_TED01"],["TED%3AAF-A2E7I9-F1-model_v4_TED02","TED novel fold AF-A2E7I9-F1-model_v4_TED02"],["TED%3AAF-A2F6I8-F1-model_v4_TED02","TED novel fold AF-A2F6I8-F1-model_v4_TED02"],["TED%3AAF-A2FV33-F1-model_v4_TED01","TED novel fold AF-A2FV33-F1-model_v4_TED01"]]},{"id":"GO:0005628","l":"prospore membrane","na":6,"nb":3,"a":[["spore/ascospore_wall.html","ascospore wall"],["spore/endospore_forming_forespore.html","endospore-forming forespore"],["spore/prospore_membrane.html","prospore membrane"],["spore/prospore_membrane_leading_edge.html","prospore membrane leading edge"],["spore/prospore_membrane_spindle_pole_body_attachment_site.html","prospore membrane spindle pole body attachment site"],["spore/spore_inner_membrane.html","spore inner membrane"]],"b":[["ComplexPortal%3ACPX-5464","Vesicular SNARE complex SSO1-SPO20-SNC1"],["ComplexPortal%3ACPX-5466","Vesicular SNARE complex SSO1-SPO20-SNC2"],["GO%3A0005628","prospore membrane"]]},{"id":"GO:0030122","l":"AP-2 adaptor complex","na":3,"nb":6,"a":[["other/ap_2_adaptor_complex.html","AP-2 adaptor complex"],["other/clathrin_coat_of_coated_pit.html","clathrin coat of coated pit"],["other/clathrin_coat_of_endocytic_vesicle.html","clathrin coat of endocytic vesicle"]],"b":[["ComplexPortal%3ACPX-534","Adapter complex AP-2"],["ComplexPortal%3ACPX-5149","AP-2 Adaptor complex, alpha1 variant"],["ComplexPortal%3ACPX-5152","AP-2 Adaptor complex, alpha1 variant"],["ComplexPortal%3ACPX-5150","AP-2 Adaptor complex, alpha2 variant"],["ComplexPortal%3ACPX-5153","AP-2 Adaptor complex, alpha2 variant"],["GO%3A0030122","AP-2 adaptor complex"]]},{"id":"GO:0031978","l":"plastid thylakoid lumen","na":6,"nb":3,"a":[["membrane_organelle/chloroplast_thylakoid_lumen.html","chloroplast thylakoid lumen"],["membrane_organelle/cyanelle_thylakoid_lumen.html","cyanelle thylakoid lumen"],["membrane_organelle/organellar_chromatophore_thylakoid_lumen.html","organellar chromatophore thylakoid lumen"],["membrane_organelle/plastid_thylakoid.html","plastid thylakoid"],["membrane_organelle/plastid_thylakoid_lumen.html","plastid thylakoid lumen"],["membrane_organelle/plastid_thylakoid_membrane.html","plastid thylakoid membrane"]],"b":[["GO%3A0009543","chloroplast thylakoid lumen"],["GO%3A0033114","cyanelle thylakoid lumen"],["GO%3A0031978","plastid thylakoid lumen"]]},{"id":"GO:1990072","l":"TRAPPIII protein complex","na":3,"nb":6,"a":[["other/trappi_protein_complex.html","TRAPPI protein complex"],["other/trappii_protein_complex.html","TRAPPII protein complex"],["other/trappiii_protein_complex.html","TRAPPIII protein complex"]],"b":[["ComplexPortal%3ACPX-4766","TRAPP III complex"],["ComplexPortal%3ACPX-4750","TRAPP III complex, TRAPPC2 variant"],["ComplexPortal%3ACPX-6903","TRAPP III complex, TRAPPC2B variant"],["ComplexPortal%3ACPX-2279","TRAPPIII complex"],["ComplexPortal%3ACPX-1383","TRAPPIII protein complex"],["GO%3A1990072","TRAPPIII protein complex"]]},{"id":"NCBITaxon:284813","l":"Encephalitozoon cuniculi GB-M1","na":3,"nb":6,"a":[["spore/microsporidian_type_endospore.html","microsporidian-type endospore"],["spore/microsporidian_type_exospore.html","microsporidian-type exospore"],["spore/polar_tube_anchoring_disc.html","polar tube anchoring disc"]],"b":[["Pfam%3APF17027","Histone-fold protein"],["Pfam%3APF10455","Bin/amphiphysin/Rvs domain for vesicular trafficking"],["Pfam%3APF07753","Protein of unknown function (DUF1609)"],["Pfam%3APF09591","Protein of unknown function (DUF2463)"],["Pfam%3APF12376","Protein of unknown function (DUF3654)"],["TED%3AAF-Q8SVN2-F1-model_v4_TED01","TED novel fold AF-Q8SVN2-F1-model_v4_TED01"]]},{"id":"GO:0009431","l":"bacterial-type flagellum basal body, MS ring","na":5,"nb":3,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"],["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"],["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["GO%3A0009431","bacterial-type flagellum basal body, MS ring"],["NCBIfam%3ATIGR00206","flagellar basal-body MS-ring/collar protein FliF"],["NCBIfam%3ATIGR00205","flagellar hook-basal body complex protein FliE"]]},{"id":"GO:0030118","l":"clathrin coat","na":5,"nb":3,"a":[["other/clathrin_coat.html","clathrin coat"],["other/clathrin_coat_of_coated_pit.html","clathrin coat of coated pit"],["other/clathrin_coat_of_endocytic_vesicle.html","clathrin coat of endocytic vesicle"],["other/clathrin_coat_of_trans_golgi_network_vesicle.html","clathrin coat of trans-Golgi network vesicle"],["other/membrane_coat.html","membrane coat"]],"b":[["GO%3A0030118","clathrin coat"],["GO%3A0030132","clathrin coat of coated pit"],["GO%3A0030125","clathrin vesicle coat"]]},{"id":"GO:0030904","l":"retromer complex","na":3,"nb":5,"a":[["other/retromer_cargo_selective_complex.html","retromer, cargo-selective complex"],["other/retromer_complex.html","retromer complex"],["other/retromer_tubulation_complex.html","retromer, tubulation complex"]],"b":[["ComplexPortal%3ACPX-1653","Retromer complex"],["ComplexPortal%3ACPX-2610","Retromer complex"],["ComplexPortal%3ACPX-26687","Retromer complex"],["GO%3A0030904","retromer complex"],["InterPro%3AIPR037918","SNX2, PX domain"]]},{"id":"GO:0033113","l":"cyanelle membrane","na":5,"nb":3,"a":[["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"],["membrane_organelle/plastid_membrane.html","plastid membrane"]],"b":[["GO%3A0036012","cyanelle inner membrane"],["GO%3A0033113","cyanelle membrane"],["GO%3A0036013","cyanelle outer membrane"]]},{"id":"GO:0045037","l":"protein import into chloroplast stroma","na":5,"nb":3,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"],["other/tic_complex.html","Tic complex"],["other/toc_complex.html","Toc complex"]],"b":[["GO%3A0045037","protein import into chloroplast stroma"],["PANTHER%3APTHR47296","PROTEIN TIC 40, CHLOROPLASTIC"],["PANTHER%3APTHR37755","PROTEIN TIC 56, CHLOROPLASTIC"]]},{"id":"InterPro:IPR020013","l":"","na":3,"nb":5,"a":[["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"]],"b":[["Pfam%3APF06429","Flagellar basal body rod FlgEFG protein C-terminal"],["Pfam%3APF22367","Flagellar hook protein FlgE, third domain"],["Pfam%3APF07559","Flagellar basal body protein FlaE D2 domain"],["Pfam%3APF00460","Flagella basal body rod protein"],["PROSITE%3APS00588","Flagella basal body rod proteins signature"]]},{"id":"GO:0005782","l":"peroxisomal matrix","na":3,"nb":4,"a":[["membrane_organelle/peroxisomal_matrix.html","peroxisomal matrix"],["membrane_organelle/peroxisomal_membrane.html","peroxisomal membrane"],["membrane_organelle/peroxisome.html","peroxisome"]],"b":[["GO%3A0034468","glycosome lumen"],["GO%3A0031908","glyoxysomal lumen"],["GO%3A0005782","peroxisomal matrix"],["PANTHER%3APTHR46027","PEROXISOMAL TARGETING SIGNAL 2 RECEPTOR"]]},{"id":"GO:0005858","l":"axonemal dynein complex","na":3,"nb":4,"a":[["cytoskeleton/axonemal_dynein_complex.html","axonemal dynein complex"],["cytoskeleton/inner_dynein_arm.html","inner dynein arm"],["cytoskeleton/outer_dynein_arm.html","outer dynein arm"]],"b":[["GO%3A0005858","axonemal dynein complex"],["GO%3A0036156","inner dynein arm"],["GO%3A0036157","outer dynein arm"],["PANTHER%3APTHR46532","MALE FERTILITY FACTOR KL5"]]},{"id":"GO:0009428","l":"bacterial-type flagellum basal body, distal rod, P ring","na":3,"nb":4,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]],"b":[["GO%3A0009428","bacterial-type flagellum basal body, distal rod, P ring"],["NCBIfam%3ATIGR03170","flagellar basal body P-ring formation chaperone FlgA"],["NCBIfam%3ANF014206","flagellar basal body P-ring protein FlgI"],["Pfam%3APF02119","Flagellar P-ring protein"]]},{"id":"GO:0009433","l":"bacterial-type flagellum basal body, C ring","na":4,"nb":3,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"]],"b":[["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009433","bacterial-type flagellum basal body, C ring"]]},{"id":"GO:0009765","l":"photosynthesis, light harvesting","na":3,"nb":4,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"]],"b":[["GO%3A0009765","photosynthesis, light harvesting"],["GO%3A0009768","photosynthesis, light harvesting in photosystem I"],["GO%3A0009769","photosynthesis, light harvesting in photosystem II"],["NCBIfam%3ATIGR03041","chlorophyll a/b binding light-harvesting protein"]]},{"id":"GO:0030670","l":"phagocytic vesicle membrane","na":3,"nb":4,"a":[["membrane_organelle/phagocytic_vesicle.html","phagocytic vesicle"],["membrane_organelle/phagocytic_vesicle_lumen.html","phagocytic vesicle lumen"],["membrane_organelle/phagocytic_vesicle_membrane.html","phagocytic vesicle membrane"]],"b":[["GO%3A0030671","clathrin-coated phagocytic vesicle membrane"],["GO%3A0036186","early phagosome membrane"],["GO%3A0030670","phagocytic vesicle membrane"],["GO%3A0061474","phagolysosome membrane"]]},{"id":"GO:0071682","l":"endocytic vesicle lumen","na":4,"nb":3,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle_lumen.html","clathrin-coated endocytic vesicle lumen"],["membrane_organelle/endocytic_vesicle.html","endocytic vesicle"],["membrane_organelle/endocytic_vesicle_lumen.html","endocytic vesicle lumen"],["membrane_organelle/endocytic_vesicle_membrane.html","endocytic vesicle membrane"]],"b":[["GO%3A0106176","clathrin-coated endocytic vesicle lumen"],["GO%3A0071682","endocytic vesicle lumen"],["GO%3A0097013","phagocytic vesicle lumen"]]},{"id":"NCBITaxon:431944","l":"Magnetospirillum gryphiswaldense MSR-1","na":4,"nb":3,"a":[["cytoskeleton/mamk_filament.html","MamK filament"],["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]],"b":[["Pfam%3APF12728","Helix-turn-helix domain"],["Pfam%3APF04011","LemA family"],["Pfam%3APF07219","HemY protein N-terminus"]]},{"id":"GO:0034357","l":"photosynthetic membrane","na":3,"nb":3,"a":[["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"],["membrane_organelle/plasma_membrane_derived_chromatophore_membrane.html","plasma membrane-derived chromatophore membrane"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["GO%3A0034357","photosynthetic membrane"],["GO%3A0042717","plasma membrane-derived chromatophore membrane"],["GO%3A0042651","thylakoid membrane"]]},{"id":"GO:0051012","l":"microtubule sliding","na":3,"nb":3,"a":[["cytoskeleton/axonemal_dynein_complex.html","axonemal dynein complex"],["cytoskeleton/inner_dynein_arm.html","inner dynein arm"],["cytoskeleton/outer_dynein_arm.html","outer dynein arm"]],"b":[["GO%3A0051012","microtubule sliding"],["GO%3A0031534","minus-end directed microtubule sliding"],["GO%3A0031535","plus-end directed microtubule sliding"]]},{"id":"GO:0055038","l":"recycling endosome membrane","na":3,"nb":3,"a":[["membrane_organelle/recycling_endosome.html","recycling endosome"],["membrane_organelle/recycling_endosome_lumen.html","recycling endosome lumen"],["membrane_organelle/recycling_endosome_membrane.html","recycling endosome membrane"]],"b":[["GO%3A0055038","recycling endosome membrane"],["PANTHER%3APTHR15726","RAB11-FAMILY INTERACTING PROTEIN"],["PANTHER%3APTHR10687","SECRETORY CARRIER-ASSOCIATED MEMBRANE PROTEIN SCAMP"]]},{"id":"GO:0097013","l":"phagocytic vesicle lumen","na":3,"nb":3,"a":[["membrane_organelle/phagocytic_vesicle.html","phagocytic vesicle"],["membrane_organelle/phagocytic_vesicle_lumen.html","phagocytic vesicle lumen"],["membrane_organelle/phagocytic_vesicle_membrane.html","phagocytic vesicle membrane"]],"b":[["GO%3A0062113","early phagosome lumen"],["GO%3A0097013","phagocytic vesicle lumen"],["GO%3A0106174","phagolysosome vesicle lumen"]]},{"id":"NCBITaxon:274","l":"Thermus thermophilus","na":3,"nb":3,"a":[["energy_complex/respiratory_chain_complex_i.html","respiratory chain complex I"],["ribonucleoprotein/ribosome.html","ribosome"],["ribonucleoprotein/small_ribosomal_subunit.html","small ribosomal subunit"]],"b":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF01861","Branched-chain polyamine synthase A C-terminal domain"],["Pfam%3APF07736","Chorismate mutase type I"]]},{"id":"GO:0110165","l":"cellular anatomical structure","na":2,"nb":1312,"a":[["other/phagophore_assembly_site.html","phagophore assembly site"],["other/popz_polar_microdomain.html","PopZ polar microdomain"]],"b":[["GO%3A0031672","A band"],["GO%3A0036063","acroblast"],["GO%3A0043159","acrosomal matrix"],["GO%3A0099079","actin body"],["GO%3A0030478","actin cap"],["GO%3A0061834","actin filament branch point"]]},{"id":"GO:0006260","l":"DNA replication","na":2,"nb":311,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"],["other/single_stranded_dna_binding_protein_complex.html","single-stranded DNA-binding protein complex"]],"b":[["ComplexPortal%3ACPX-6641","ASCC DNA alkylation repair complex"],["ComplexPortal%3ACPX-568","Chromatin assembly factor 1 complex"],["ComplexPortal%3ACPX-2671","CMG helicase complex"],["ComplexPortal%3ACPX-297","CMG helicase complex"],["ComplexPortal%3ACPX-4526","CMG helicase complex"],["ComplexPortal%3ACPX-4541","CMG helicase complex"]]},{"id":"GO:0098797","l":"plasma membrane protein complex","na":2,"nb":216,"a":[["division_machinery/elongasome.html","elongasome"],["other/ap_2_adaptor_complex.html","AP-2 adaptor complex"]],"b":[["ComplexPortal%3ACPX-850","AHNAK - Annexin A2 - S100-A10 complex"],["ComplexPortal%3ACPX-905","AHNAK - Annexin A2 - S100-A10 complex"],["ComplexPortal%3ACPX-853","Annexin A2 - S100-A10 complex"],["ComplexPortal%3ACPX-898","Annexin A2 - S100-A10 complex"],["ComplexPortal%3ACPX-9322","B-T lymphocyte attenuator, BTLA-TNFRSF14 complex"],["ComplexPortal%3ACPX-4602","FtsEX ABC cell division complex"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":190,"nb":2,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"],["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/septin_ring.html","septin ring"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"],["cytoskeleton/spindle_pole_body.html","spindle pole body"]],"b":[["PROSITE%3APS00820","Glucoamylase active site region signature"],["TED%3AAF-A0A7I9G6Y3-F1-model_v4_TED02","TED novel fold AF-A0A7I9G6Y3-F1-model_v4_TED02"]]},{"id":"GO:0015934","l":"large ribosomal subunit","na":2,"nb":130,"a":[["ribonucleoprotein/large_ribosomal_subunit.html","large ribosomal subunit"],["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["GO%3A0022625","cytosolic large ribosomal subunit"],["GO%3A0015934","large ribosomal subunit"],["GO%3A0000315","organellar large ribosomal subunit"],["NCBIfam%3ATIGR01169","50S ribosomal protein L1"],["NCBIfam%3ANF000955","50S ribosomal protein L10"],["NCBIfam%3ATIGR01077","50S ribosomal protein L13"]]},{"id":"NCBITaxon:83334","l":"Escherichia coli O157:H7","na":2,"nb":130,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"]],"b":[["IDPO%3A0000011","disorder to order"],["IDPO%3A0000014","order to disorder"],["Pfam%3APF12343","DeaD helicase C-terminal disordered region"],["Pfam%3APF26539","YhiD C-terminal ACT domain"],["Pfam%3APF01081","KDPG and KHG aldolase"],["Pfam%3APF10423","Bacterial AMP nucleoside phosphorylase N-terminus"]]},{"id":"GO:0005730","l":"nucleolus","na":2,"nb":121,"a":[["membrane_organelle/nuclear_lumen.html","nuclear lumen"],["other/nucleolus.html","nucleolus"]],"b":[["ComplexPortal%3ACPX-1099","B-WICH chromatin remodelling complex"],["ComplexPortal%3ACPX-1133","B-WICH chromatin remodelling complex"],["ComplexPortal%3ACPX-26423","Box C/D snoRNA-guided RNP methyltransferase complex, FBL variant"],["ComplexPortal%3ACPX-26377","Box C/D snoRNA-Guided RNP methyltransferase complex, FBLL1 variant"],["ComplexPortal%3ACPX-3905","Caspase-2 PIDDosome"],["ComplexPortal%3ACPX-3963","Caspase-2 PIDDosome"]]},{"id":"GO:0015935","l":"small ribosomal subunit","na":2,"nb":113,"a":[["ribonucleoprotein/ribosome.html","ribosome"],["ribonucleoprotein/small_ribosomal_subunit.html","small ribosomal subunit"]],"b":[["GO%3A0022627","cytosolic small ribosomal subunit"],["GO%3A0000314","organellar small ribosomal subunit"],["GO%3A0015935","small ribosomal subunit"],["NCBIfam%3ATIGR01046","30S ribosomal protein S10"],["NCBIfam%3ATIGR00981","30S ribosomal protein S12"],["NCBIfam%3ATIGR00982","30S ribosomal protein S12"]]},{"id":"GO:0003918","l":"DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) activity","na":2,"nb":109,"a":[["other/dna_gyrase_complex.html","DNA gyrase complex"],["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["EC%3A5.6.2.2","DNA topoisomerase (ATP-hydrolyzing)"],["ComplexPortal%3ACPX-2177","GyrA-GyrB DNA Gyrase complex"],["ComplexPortal%3ACPX-26662","SPO11 DNA endo-reduplication complex"],["ComplexPortal%3ACPX-26657","SPO11 meiotic recombination initiation complex"],["ComplexPortal%3ACPX-26658","SPO11 meiotic recombination initiation complex"],["ComplexPortal%3ACPX-26659","SPO11 meiotic recombination initiation complex"]]},{"id":"GO:0012505","l":"endomembrane system","na":2,"nb":109,"a":[["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"],["membrane_organelle/golgi_apparatus.html","Golgi apparatus"]],"b":[["ComplexPortal%3ACPX-1627","RAVE complex"],["ComplexPortal%3ACPX-25781","RAVE complex"],["ComplexPortal%3ACPX-1653","Retromer complex"],["ComplexPortal%3ACPX-2610","Retromer complex"],["ComplexPortal%3ACPX-26687","Retromer complex"],["GO%3A0012505","endomembrane system"]]},{"id":"GO:0098588","l":"bounding membrane of organelle","na":2,"nb":94,"a":[["appendage/ciliary_membrane.html","ciliary membrane"],["membrane_organelle/endocytic_vesicle_membrane.html","endocytic vesicle membrane"]],"b":[["GO%3A0033102","acidocalcisome membrane"],["GO%3A0032578","aleurone grain membrane"],["GO%3A0033111","attachment organelle membrane"],["GO%3A0098588","bounding membrane of organelle"],["GO%3A0030661","chitosome membrane"],["GO%3A0060170","ciliary membrane"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":2,"nb":93,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17544","requires hydrogencarbonate"],["EC%3A1.13.11.73","methylphosphonate synthase"],["EC%3A1.2.1.27","methylmalonate-semialdehyde dehydrogenase (CoA acylating)"],["EC%3A2.5.1.120","aminodeoxyfutalosine synthase"],["EC%3A2.5.1.143","pyridinium-3,5-biscarboxylic acid mononucleotide synthase"],["EC%3A2.7.2.2","carbamate kinase"]]},{"id":"GO:0009252","l":"peptidoglycan biosynthetic process","na":2,"nb":90,"a":[["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/elongasome.html","elongasome"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["GO%3A0009252","peptidoglycan biosynthetic process"],["GO%3A0018104","peptidoglycan-protein cross-linking"],["NCBIfam%3ATIGR00492","alanine racemase"],["NCBIfam%3ANF007061","bifunctional glycosyl transferase/transpeptidase"],["NCBIfam%3ANF006986","bifunctional UDP-N-acetylglucosamine diphosphorylase/glucosamine-1-phosphate N-acetyltransferase GlmU"]]},{"id":"GO:0042597","l":"periplasmic space","na":2,"nb":76,"a":[["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"],["envelope/periplasmic_space.html","periplasmic space"]],"b":[["ComplexPortal%3ACPX-3447","NapAB nitrate reductase complex"],["ComplexPortal%3ACPX-4281","PaoABC periplasmic aldehyde oxidoreductase"],["GO%3A0030287","cell wall-bounded periplasmic space"],["GO%3A0030288","outer membrane-bounded periplasmic space"],["GO%3A0042597","periplasmic space"],["GO%3A0036240","septal periplasm"]]},{"id":"GO:0006888","l":"endoplasmic reticulum to Golgi vesicle-mediated transport","na":2,"nb":60,"a":[["membrane_organelle/copii_coated_er_to_golgi_transport_vesicle.html","COPII-coated ER to Golgi transport vesicle"],["other/trappi_protein_complex.html","TRAPPI protein complex"]],"b":[["ComplexPortal%3ACPX-1698","EMP24 complex"],["ComplexPortal%3ACPX-7221","ERGIC2-ERGIC3 retrograde receptor complex"],["ComplexPortal%3ACPX-1854","Golgi SNARE complex SED5-BOS1-BET1-SEC22"],["ComplexPortal%3ACPX-1855","Golgi SNARE complex SED5-GOS1-SFT1-YKT6"],["ComplexPortal%3ACPX-8001","LMAN1-MCFD2 cargo receptor complex"],["ComplexPortal%3ACPX-4764","TRAPP II complex"]]},{"id":"GO:0010498","l":"proteasomal protein catabolic process","na":2,"nb":60,"a":[["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"]],"b":[["ComplexPortal%3ACPX-9003","20S immunoproteasome complex"],["ComplexPortal%3ACPX-8806","20S proteasome complex"],["ComplexPortal%3ACPX-9021","20S spermatoproteasome complex"],["ComplexPortal%3ACPX-9004","20S thymoproteasome complex"],["ComplexPortal%3ACPX-9077","26S proteasome complex"],["ComplexPortal%3ACPX-9087","26S proteasome complex, testis-specific variant"]]},{"id":"GO:0051276","l":"chromosome organization","na":2,"nb":49,"a":[["nucleoid/nucleoid.html","nucleoid"],["other/nuclear_chromosome.html","nuclear chromosome"]],"b":[["ComplexPortal%3ACPX-1249","SDS22-GLC7 phosphatase complex"],["ComplexPortal%3ACPX-1260","SDS22-GLC7-YPI1 phosphatase complex"],["GO%3A0036386","bacterial nucleoid DNA packaging"],["GO%3A0141112","broken chromosome clustering"],["GO%3A0030261","chromosome condensation"],["GO%3A0051276","chromosome organization"]]},{"id":"GO:0000932","l":"P-body","na":2,"nb":48,"a":[["ribonucleoprotein/cytoplasmic_stress_granule.html","cytoplasmic stress granule"],["ribonucleoprotein/p_body.html","P-body"]],"b":[["ComplexPortal%3ACPX-1185","DCS1-DCS2 regulator of decapping scavenger complex"],["ComplexPortal%3ACPX-45","LSM1-7 complex"],["ComplexPortal%3ACPX-112","LSM1-7-PAT1 complex"],["ComplexPortal%3ACPX-1308","LSM1-7-PAT1 complex, variant LSM1A-LSM3A-LSM6A-PAT1"],["ComplexPortal%3ACPX-1391","LSM1-7-PAT1 complex, variant LSM1A-LSM3A-LSM6A-PAT1H1"],["ComplexPortal%3ACPX-1399","LSM1-7-PAT1 complex, variant LSM1A-LSM3A-LSM6A-PAT1H2"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":46,"a":[["envelope/periplasmic_space.html","periplasmic space"],["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"]],"b":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF13166","AAA domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF27533","CapK C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"]]},{"id":"GO:0042147","l":"retrograde transport, endosome to Golgi","na":2,"nb":41,"a":[["other/garp_complex.html","GARP complex"],["other/retromer_complex.html","retromer complex"]],"b":[["ComplexPortal%3ACPX-5322","Endosomal SNARE complex TLG2-VTI1-TLG1-SNC1"],["ComplexPortal%3ACPX-5321","Endosomal SNARE complex TLG2-VTI1-TLG1-SNC2"],["ComplexPortal%3ACPX-1718","GARP tethering complex"],["ComplexPortal%3ACPX-365","GARP tethering complex"],["ComplexPortal%3ACPX-6208","GARP tethering complex"],["ComplexPortal%3ACPX-2788","GARP tethering complex, Vps50 variant"]]},{"id":"GO:0006402","l":"mRNA catabolic process","na":2,"nb":39,"a":[["ribonucleoprotein/bacterial_degradosome.html","bacterial degradosome"],["ribonucleoprotein/p_body.html","P-body"]],"b":[["ComplexPortal%3ACPX-2771","CCR4-NOT mRNA deadenylase complex"],["ComplexPortal%3ACPX-11781","Lyric-SND1 RNA regulator complex"],["ComplexPortal%3ACPX-2733","miRNA RISC complex"],["ComplexPortal%3ACPX-1040","SKI complex"],["GO%3A0141065","maternal mRNA clearance"],["GO%3A0000958","mitochondrial mRNA catabolic process"]]},{"id":"NCBITaxon:272634","l":"Mycoplasmoides pneumoniae M129","na":2,"nb":38,"a":[["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"]],"b":[["Pfam%3APF01812","5-formyltetrahydrofolate cyclo-ligase family"],["Pfam%3APF03257","Mycoplasma adhesin P1, C-terminal"],["Pfam%3APF22509","CARDS D2, beta trefoil domain"],["Pfam%3APF22346","ADP-ribosylating toxin CARDS, C-terminal beta-trefoil domain"],["Pfam%3APF21694","DNA polymerase III delta subunit, C-terminal domain"],["Pfam%3APF01519","Protein of unknown function DUF16"]]},{"id":"GO:0008360","l":"regulation of cell shape","na":2,"nb":35,"a":[["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/elongasome.html","elongasome"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["ComplexPortal%3ACPX-2499","Erythrocyte spectrin complex"],["GO%3A0071963","establishment or maintenance of cell polarity regulating cell shape"],["GO%3A0008360","regulation of cell shape"],["GO%3A0061389","regulation of direction of cell growth"],["GO%3A0016476","regulation of embryonic cell shape"]]},{"id":"GO:0030141","l":"secretory granule","na":2,"nb":33,"a":[["membrane_organelle/apicomplexan_dense_granule.html","apicomplexan dense granule"],["membrane_organelle/mucocyst.html","mucocyst"]],"b":[["GO%3A0001669","acrosomal vesicle"],["GO%3A0020026","apicomplexan dense granule"],["GO%3A0042582","azurophil granule"],["GO%3A0042583","chromaffin granule"],["GO%3A0060473","cortical granule"],["GO%3A0031045","dense core granule"]]},{"id":"GO:0015977","l":"carbon fixation","na":2,"nb":30,"a":[["microcompartment/carboxysome.html","carboxysome"],["other/pyrenoid.html","pyrenoid"]],"b":[["GO%3A0009760","C4 photosynthesis"],["GO%3A0009761","CAM photosynthesis"],["GO%3A0043427","carbon fixation by 3-hydroxypropionate cycle"],["GO%3A0030634","carbon fixation by acetyl-CoA pathway"],["GO%3A0015977","carbon fixation"],["GO%3A0019643","reductive tricarboxylic acid cycle"]]},{"id":"GO:0071013","l":"catalytic step 2 spliceosome","na":2,"nb":29,"a":[["ribonucleoprotein/u12_type_catalytic_step_2_spliceosome.html","U12-type catalytic step 2 spliceosome"],["ribonucleoprotein/u2_type_catalytic_step_2_spliceosome.html","U2-type catalytic step 2 spliceosome"]],"b":[["GO%3A0071013","catalytic step 2 spliceosome"],["GO%3A0071018","U12-type catalytic step 2 spliceosome"],["GO%3A0071007","U2-type catalytic step 2 spliceosome"],["PANTHER%3APTHR13296","BCAS2 PROTEIN"],["PANTHER%3APTHR12718","CELL CYCLE CONTROL PROTEIN CWF15"],["PANTHER%3APTHR12940","ES-2 PROTEIN - RELATED"]]},{"id":"GO:0046961","l":"proton-transporting ATPase activity, rotational mechanism","na":2,"nb":26,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v1_domain.html","vacuolar proton-transporting V-type ATPase, V1 domain"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["ComplexPortal%3ACPX-2470","Vacuolar proton translocating ATPase complex, ATP6V0A1 variant"],["ComplexPortal%3ACPX-6904","Vacuolar proton translocating ATPase complex, ATP6V0A2 variant"],["ComplexPortal%3ACPX-6905","Vacuolar proton translocating ATPase complex, ATP6V0A3 variant"],["ComplexPortal%3ACPX-6912","Vacuolar proton translocating ATPase complex, ATP6V0A4 variant"],["ComplexPortal%3ACPX-1192","Vacuolar proton translocating ATPase complex, Golgi variant"]]},{"id":"GO:0000145","l":"exocyst","na":2,"nb":25,"a":[["other/cellular_bud_tip.html","cellular bud tip"],["other/exocyst.html","exocyst"]],"b":[["ComplexPortal%3ACPX-1890","Exocyst complex"],["ComplexPortal%3ACPX-26496","Exocyst complex"],["ComplexPortal%3ACPX-2465","Exocyst"],["ComplexPortal%3ACPX-712","Exocyst"],["ComplexPortal%3ACPX-4943","Exocyst, EXOC6 variant"],["ComplexPortal%3ACPX-4982","Exocyst, Exoc6 variant"]]},{"id":"GO:0071011","l":"precatalytic spliceosome","na":2,"nb":24,"a":[["ribonucleoprotein/u12_type_precatalytic_spliceosome.html","U12-type precatalytic spliceosome"],["ribonucleoprotein/u2_type_precatalytic_spliceosome.html","U2-type precatalytic spliceosome"]],"b":[["ComplexPortal%3ACPX-26435","Major Spliceosomal B complex"],["ComplexPortal%3ACPX-26429","Major Spliceosomal Pre-B complex"],["GO%3A0071011","precatalytic spliceosome"],["GO%3A0071016","U12-type precatalytic spliceosome"],["GO%3A0071005","U2-type precatalytic spliceosome"],["PANTHER%3APTHR46589","APOPTOTIC CHROMATIN CONDENSATION INDUCER IN THE NUCLEUS"]]},{"id":"GO:0072686","l":"mitotic spindle","na":2,"nb":24,"a":[["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"]],"b":[["ComplexPortal%3ACPX-1041","DASH complex"],["ComplexPortal%3ACPX-4027","gpr-1-gpr-2-lin-5 complex"],["GO%3A0072686","mitotic spindle"],["PANTHER%3APTHR46930","CDK5 REGULATORY SUBUNIT-ASSOCIATED PROTEIN 2"],["PANTHER%3APTHR47078","CYTOSKELETON-ASSOCIATED PROTEIN 2-LIKE"],["PANTHER%3APTHR28036","DASH COMPLEX SUBUNIT DAD2"]]},{"id":"GO:0005819","l":"spindle","na":2,"nb":20,"a":[["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"]],"b":[["ComplexPortal%3ACPX-3463","Central spindlin complex"],["GO%3A0072687","meiotic spindle"],["GO%3A0072686","mitotic spindle"],["GO%3A0005819","spindle"],["PANTHER%3APTHR31022","CENTRIOLE, CILIA AND SPINDLE-ASSOCIATED PROTEIN"],["PANTHER%3APTHR46725","COILED-COIL DOMAIN-CONTAINING PROTEIN 57"]]},{"id":"GO:0030658","l":"transport vesicle membrane","na":2,"nb":20,"a":[["membrane_organelle/er_to_golgi_transport_vesicle_membrane.html","ER to Golgi transport vesicle membrane"],["membrane_organelle/trans_golgi_network_transport_vesicle_membrane.html","trans-Golgi network transport vesicle membrane"]],"b":[["GO%3A0060201","clathrin-sculpted acetylcholine transport vesicle membrane"],["GO%3A0060203","clathrin-sculpted glutamate transport vesicle membrane"],["GO%3A0070083","clathrin-sculpted monoamine transport vesicle membrane"],["GO%3A0012507","ER to Golgi transport vesicle membrane"],["GO%3A0099501","exocytic vesicle membrane"],["GO%3A0012508","Golgi to ER transport vesicle membrane"]]},{"id":"GO:0000048","l":"peptidyltransferase activity","na":2,"nb":18,"a":[["ribonucleoprotein/large_ribosomal_subunit.html","large ribosomal subunit"],["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["EC%3A2.3.2.12","peptidyltransferase"],["ComplexPortal%3ACPX-5226","39S mitochondrial large ribosomal subunit"],["ComplexPortal%3ACPX-5302","39S mitochondrial large ribosomal subunit"],["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["ComplexPortal%3ACPX-1602","54S mitochondrial large ribosomal subunit"],["ComplexPortal%3ACPX-1601","60S cytosolic large ribosomal subunit"]]},{"id":"GO:0005876","l":"spindle microtubule","na":2,"nb":18,"a":[["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"]],"b":[["GO%3A0000235","astral microtubule"],["GO%3A0005828","kinetochore microtubule"],["GO%3A1990498","mitotic spindle microtubule"],["GO%3A0005827","polar microtubule"],["GO%3A0005876","spindle microtubule"],["PANTHER%3APTHR46725","COILED-COIL DOMAIN-CONTAINING PROTEIN 57"]]},{"id":"GO:0031411","l":"gas vesicle","na":2,"nb":18,"a":[["inclusion/gas_vesicle.html","gas vesicle"],["inclusion/gas_vesicle_shell.html","gas vesicle shell"]],"b":[["GO%3A0031411","gas vesicle"],["NCBIfam%3ANF041667","gas vesicle accessory protein GvpU"],["NCBIfam%3ANF046092","gas vesicle protein GvpA"],["NCBIfam%3ANF045779","gas vesicle protein GvpG"],["NCBIfam%3ANF046090","gas vesicle protein GvpJ"],["NCBIfam%3ANF045778","gas vesicle protein GvpL"]]},{"id":"GO:0031982","l":"vesicle","na":2,"nb":18,"a":[["membrane_organelle/cytoplasmic_vesicle.html","cytoplasmic vesicle"],["membrane_organelle/multivesicular_body_intraluminal_vesicle.html","multivesicular body intraluminal vesicle"]],"b":[["GO%3A1903561","extracellular vesicle"],["GO%3A0097708","intracellular vesicle"],["GO%3A0031982","vesicle"],["PANTHER%3APTHR47395","BPI FOLD-CONTAINING FAMILY B MEMBER 1"],["PANTHER%3APTHR15152","CD70 ANTIGEN"],["PANTHER%3APTHR44314","CILIA- AND FLAGELLA-ASSOCIATED PROTEIN 70"]]},{"id":"GO:0046540","l":"U4/U6 x U5 tri-snRNP complex","na":2,"nb":18,"a":[["ribonucleoprotein/u2_type_precatalytic_spliceosome.html","U2-type precatalytic spliceosome"],["ribonucleoprotein/u4_u6_x_u5_tri_snrnp_complex.html","U4/U6 x U5 tri-snRNP complex"]],"b":[["ComplexPortal%3ACPX-2391","U4/U6.U5 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-25","U4/U6.U5 tri-small nuclear ribonucleoprotein complex"],["GO%3A0046540","U4/U6 x U5 tri-snRNP complex"],["NCBIfam%3ANF014962","Mitosis protein DIM1"],["InterPro%3AIPR045347","HIND motif"],["InterPro%3AIPR034103","Sm-like protein Lsm8"]]},{"id":"GO:0033103","l":"protein secretion by the type VI secretion system","na":2,"nb":17,"a":[["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"],["secretion_system/type_vi_secretion_system_contractile_sheath.html","type VI secretion system contractile sheath"]],"b":[["GO%3A0033103","protein secretion by the type VI secretion system"],["NCBIfam%3ATIGR03354","type VI secretion system-associated FHA domain protein TagH"],["NCBIfam%3ATIGR03345","type VI secretion system ATPase TssH"],["NCBIfam%3ATIGR03357","type VI secretion system baseplate subunit TssE"],["NCBIfam%3ATIGR03359","type VI secretion system baseplate subunit TssF"],["NCBIfam%3ATIGR03347","type VI secretion system baseplate subunit TssG"]]},{"id":"GO:0035869","l":"ciliary transition zone","na":2,"nb":17,"a":[["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"]],"b":[["ComplexPortal%3ACPX-2789","CEP290 complex"],["ComplexPortal%3ACPX-2536","CEP290-NPHP5 transition zone complex"],["ComplexPortal%3ACPX-2339","MKS complex"],["ComplexPortal%3ACPX-2531","MKS transition zone complex"],["ComplexPortal%3ACPX-2806","NPHP transition zone complex"],["GO%3A0035869","ciliary transition zone"]]},{"id":"NCBITaxon:5888","l":"Paramecium tetraurelia","na":2,"nb":17,"a":[["cytoskeleton/ciliary_rootlet.html","ciliary rootlet"],["membrane_organelle/trichocyst.html","trichocyst"]],"b":[["Pfam%3APF14926","Cilia- and flagella-associated protein 300"],["TED%3AAF-A0C038-F1-model_v4_TED07","TED highly-symmetric fold AF-A0C038-F1-model_v4_TED07"],["TED%3AAF-A0CFS1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0CFS1-F1-model_v4_TED02"],["TED%3AAF-A0CHQ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0CHQ8-F1-model_v4_TED01"],["TED%3AAF-A0CHQ8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0CHQ8-F1-model_v4_TED02"],["TED%3AAF-A0CHR9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0CHR9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":2,"nb":16,"a":[["cytoskeleton/tubz_filament.html","TubZ filament"],["inclusion/parasporal_crystal.html","parasporal crystal"]],"b":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF28265","Lipoprotein N-acylation protein LnsA-like"],["Pfam%3APF16403","Bacterial surface protein, Ig-like domain"],["Pfam%3APF03944","delta endotoxin"],["Pfam%3APF03945","delta endotoxin, N-terminal domain"],["Pfam%3APF06355","Aegerolysin"]]},{"id":"GO:0005811","l":"lipid droplet","na":2,"nb":15,"a":[["inclusion/lipid_droplet.html","lipid droplet"],["inclusion/monolayer_surrounded_lipid_storage_body_outer_lipid_monolayer.html","monolayer-surrounded lipid storage body outer lipid monolayer"]],"b":[["ComplexPortal%3ACPX-2148","Phosphatidylinositol transporter complex"],["ComplexPortal%3ACPX-3342","Seipin complex"],["GO%3A0005633","ascus lipid droplet"],["GO%3A0005811","lipid droplet"],["GO%3A0012511","monolayer-surrounded lipid storage body"],["NCBIfam%3ATIGR04278","antiviral radical SAM protein viperin"]]},{"id":"GO:0031902","l":"late endosome membrane","na":2,"nb":15,"a":[["membrane_organelle/late_endosome_lumen.html","late endosome lumen"],["membrane_organelle/late_endosome_membrane.html","late endosome membrane"]],"b":[["ComplexPortal%3ACPX-6308","ATP10B-CDC50A P4-ATPase complex"],["ComplexPortal%3ACPX-4741","Ragulator complex"],["ComplexPortal%3ACPX-4761","Ragulator complex"],["GO%3A0031902","late endosome membrane"],["GO%3A0032585","multivesicular body membrane"],["PANTHER%3APTHR12897","COLON CANCER-ASSOCIATED PROTEIN MIC1"]]},{"id":"GO:0032588","l":"trans-Golgi network membrane","na":2,"nb":14,"a":[["membrane_organelle/trans_golgi_network.html","trans-Golgi network"],["membrane_organelle/trans_golgi_network_membrane.html","trans-Golgi network membrane"]],"b":[["ComplexPortal%3ACPX-5050","Endothelial AP-1 Adaptor complex, sigma1a variant"],["ComplexPortal%3ACPX-5144","Endothelial AP-1 Adaptor complex, sigma1a variant"],["ComplexPortal%3ACPX-5047","Ubiquitous AP-1 Adaptor complex, sigma1a variant"],["ComplexPortal%3ACPX-5141","Ubiquitous AP-1 Adaptor complex, sigma1a variant"],["ComplexPortal%3ACPX-5048","Ubiquitous AP-1 Adaptor complex, sigma1b variant"],["ComplexPortal%3ACPX-5142","Ubiquitous AP-1 Adaptor complex, sigma1b variant"]]},{"id":"GO:0097526","l":"spliceosomal tri-snRNP complex","na":2,"nb":14,"a":[["ribonucleoprotein/u4_u6_x_u5_tri_snrnp_complex.html","U4/U6 x U5 tri-snRNP complex"],["ribonucleoprotein/u4atac_u6atac_x_u5_tri_snrnp_complex.html","U4atac/U6atac x U5 tri-snRNP complex"]],"b":[["GO%3A0097526","spliceosomal tri-snRNP complex"],["GO%3A0046540","U4/U6 x U5 tri-snRNP complex"],["GO%3A0071009","U4atac/U6atac x U5 tri-snRNP complex"],["PANTHER%3APTHR13904","PRE-MRNA SPLICING FACTOR PRP31"],["PANTHER%3APTHR13007","PRE-MRNA SPLICING FACTOR-RELATED"],["PANTHER%3APTHR11193","SMALL NUCLEAR RIBONUCLEOPROTEIN E"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":2,"nb":14,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF02224","Cytidylate kinase"],["Pfam%3APF03319","Ethanolamine utilisation protein EutN/carboxysome"],["Pfam%3APF22019","alpha-1,4-glucan branching enzyme GlgB, N-terminal domain"],["Pfam%3APF21714","Circadian clock protein KaiA, N-terminal domain"],["Pfam%3APF07688","KaiA C-terminal domain"]]},{"id":"GO:0005744","l":"TIM23 mitochondrial import inner membrane translocase complex","na":2,"nb":13,"a":[["other/pam_complex_tim23_associated_import_motor.html","PAM complex, Tim23 associated import motor"],["other/tim23_mitochondrial_import_inner_membrane_translocase_complex.html","TIM23 mitochondrial import inner membrane translocase complex"]],"b":[["ComplexPortal%3ACPX-540","Mitochondrial inner membrane pre-sequence translocase complex"],["ComplexPortal%3ACPX-539","TIM23 mitochondrial inner membrane pre-sequence translocase complex, motor variant"],["ComplexPortal%3ACPX-6127","TIM23 mitochondrial inner membrane pre-sequence translocase complex, sort variant"],["ComplexPortal%3ACPX-6129","TIM23 mitochondrial inner membrane pre-sequence translocase complex, TIM17A variant"],["ComplexPortal%3ACPX-6130","TIM23 mitochondrial inner membrane pre-sequence translocase complex, TIM17B variant"],["GO%3A0005744","TIM23 mitochondrial import inner membrane translocase complex"]]},{"id":"GO:0007007","l":"inner mitochondrial membrane organization","na":2,"nb":13,"a":[["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"],["other/micos_complex.html","MICOS complex"]],"b":[["GO%3A0042407","cristae formation"],["GO%3A0007007","inner mitochondrial membrane organization"],["GO%3A1990627","mitochondrial inner membrane fusion"],["GO%3A0032979","protein insertion into mitochondrial inner membrane from matrix"],["GO%3A0045039","protein insertion into mitochondrial inner membrane"],["PANTHER%3APTHR36959","ALTERED INHERITANCE OF MITOCHONDRIA PROTEIN 24, MITOCHONDRIAL"]]},{"id":"GO:0032153","l":"cell division site","na":2,"nb":13,"a":[["division_machinery/divisome_complex.html","divisome complex"],["envelope/division_septum.html","division septum"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["GO%3A0032153","cell division site"],["PANTHER%3APTHR36419","ARRESTIN FAMILY PROTEIN 1"],["PANTHER%3APTHR30474","CELL CYCLE PROTEIN"],["PANTHER%3APTHR37479","CELL DIVISION PROTEIN FTSL"],["PANTHER%3APTHR30314","CELL DIVISION PROTEIN FTSZ-RELATED"]]},{"id":"GO:0006913","l":"nucleocytoplasmic transport","na":2,"nb":12,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nucleus.html","nucleus"]],"b":[["ComplexPortal%3ACPX-2568","Nuclear pore complex"],["ComplexPortal%3ACPX-4474","Nuclear pore complex"],["ComplexPortal%3ACPX-824","Nuclear pore complex"],["ComplexPortal%3ACPX-873","Nuclear pore complex"],["GO%3A0051170","import into nucleus"],["GO%3A0051168","nuclear export"]]},{"id":"GO:1990586","l":"divisome complex","na":2,"nb":11,"a":[["division_machinery/divisome_complex.html","divisome complex"],["envelope/division_septum.html","division septum"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["ComplexPortal%3ACPX-3299","FtsBL complex"],["ComplexPortal%3ACPX-3099","FtsQBL complex"],["GO%3A1990586","divisome complex"],["GO%3A1990588","FtsBL complex"],["GO%3A1990587","FtsQBL complex"]]},{"id":"GO:0009330","l":"DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) complex","na":2,"nb":10,"a":[["other/dna_gyrase_complex.html","DNA gyrase complex"],["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["ComplexPortal%3ACPX-26662","SPO11 DNA endo-reduplication complex"],["ComplexPortal%3ACPX-26657","SPO11 meiotic recombination initiation complex"],["ComplexPortal%3ACPX-26658","SPO11 meiotic recombination initiation complex"],["ComplexPortal%3ACPX-26659","SPO11 meiotic recombination initiation complex"],["ComplexPortal%3ACPX-26664","SPO11, meiotic recombination initiation complex"],["ComplexPortal%3ACPX-1104","Topoisomerase IV"]]},{"id":"GO:0030428","l":"cell septum","na":2,"nb":10,"a":[["envelope/division_septum.html","division septum"],["membrane_organelle/chitosome.html","chitosome"]],"b":[["GO%3A0000933","adventitious septum"],["GO%3A0030428","cell septum"],["GO%3A0000935","division septum"],["GO%3A0000934","porous cell septum"],["NCBIfam%3ANF008641","cell division protein DedD"],["NCBIfam%3ATIGR00172","Maf family nucleotide pyrophosphatase"]]},{"id":"GO:0031470","l":"carboxysome","na":2,"nb":10,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["GO%3A0031470","carboxysome"],["NCBIfam%3ANF053791","alpha-carboxysome major shell protein CsoS1"],["NCBIfam%3ANF049993","beta-carboxysome assembly chaperone CcmS"],["NCBIfam%3ANF053792","beta-carboxysome assembly protein CcmO"],["NCBIfam%3ANF053796","beta-carboxysome protein CcmP"],["NCBIfam%3ANF053793","beta-carboxysome scaffolding protein CcmN"]]},{"id":"GO:0071014","l":"post-mRNA release spliceosomal complex","na":2,"nb":10,"a":[["ribonucleoprotein/u12_type_post_mrna_release_spliceosomal_complex.html","U12-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u2_type_post_mrna_release_spliceosomal_complex.html","U2-type post-mRNA release spliceosomal complex"]],"b":[["ComplexPortal%3ACPX-26480","Intron Lariat Spliceosome, type 1 complex"],["ComplexPortal%3ACPX-26481","Intron Lariat Spliceosome, type 2 complex"],["GO%3A0071014","post-mRNA release spliceosomal complex"],["GO%3A0071019","U12-type post-mRNA release spliceosomal complex"],["GO%3A0071008","U2-type post-mRNA release spliceosomal complex"],["PANTHER%3APTHR12072","CWF19, CELL CYCLE CONTROL PROTEIN"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":2,"nb":10,"a":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["TED%3AAF-A0A5T2E4X7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5T2E4X7-F1-model_v4_TED01"],["TED%3AAF-A0A5Y4BP44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Y4BP44-F1-model_v4_TED01"],["TED%3AAF-A0A623P6F3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A623P6F3-F1-model_v4_TED02"],["TED%3AAF-A0A721BDS7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A721BDS7-F1-model_v4_TED02"],["TED%3AAF-A0A743P324-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A743P324-F1-model_v4_TED01"],["TED%3AAF-A0A757VWR3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A757VWR3-F1-model_v4_TED02"]]},{"id":"GO:0005935","l":"cellular bud neck","na":2,"nb":9,"a":[["other/cellular_bud.html","cellular bud"],["other/cellular_bud_neck.html","cellular bud neck"]],"b":[["ComplexPortal%3ACPX-1684","CBK1-MOB2 kinase complex"],["ComplexPortal%3ACPX-1140","HICS complex"],["ComplexPortal%3ACPX-36","Kelch-containing Formin Regulatory Complex"],["ComplexPortal%3ACPX-1426","Myosin class II complex"],["ComplexPortal%3ACPX-1695","PCL1-PHO85 kinase complex"],["ComplexPortal%3ACPX-1694","PCL2-PHO85 kinase complex"]]},{"id":"GO:0006097","l":"glyoxylate cycle","na":2,"nb":9,"a":[["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysome.html","glyoxysome"]],"b":[["GO%3A0006097","glyoxylate cycle"],["proteintraitsmech%3ASEED_SUBSYSTEM_Glyoxylate_bypass","Glyoxylate bypass"],["NCBIfam%3ATIGR02924","isocitrate dehydrogenase"],["NCBIfam%3ATIGR01344","malate synthase A"],["NCBIfam%3ANF041315","malate synthase AceB"],["NCBIfam%3ANF002825","malate synthase G"]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":2,"nb":9,"a":[["envelope/capsule.html","capsule"],["envelope/glycocalyx.html","glycocalyx"]],"b":[["Pfam%3APF19567","Capsular polysaccharide synthesis, CpsB/CapC"],["Pfam%3APF07501","G5 domain"],["Pfam%3APF13551","Winged helix-turn helix"],["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF03047","COMC family"],["Pfam%3APF04556","DpnII restriction endonuclease"]]},{"id":"GO:0003352","l":"regulation of cilium movement","na":2,"nb":8,"a":[["cytoskeleton/axonemal_nexin_link.html","axonemal nexin link"],["cytoskeleton/radial_spoke.html","radial spoke"]],"b":[["GO%3A0120221","maintenance of ciliary planar beating movement pattern"],["GO%3A0003354","negative regulation of cilium movement"],["GO%3A0003353","positive regulation of cilium movement"],["GO%3A0003356","regulation of cilium beat frequency"],["GO%3A0003352","regulation of cilium movement"],["GO%3A0060295","regulation of cilium movement involved in cell motility"]]},{"id":"GO:0005801","l":"cis-Golgi network","na":2,"nb":8,"a":[["membrane_organelle/cis_golgi_network.html","cis-Golgi network"],["membrane_organelle/cis_golgi_network_membrane.html","cis-Golgi network membrane"]],"b":[["ComplexPortal%3ACPX-6092","GRASP55-GM45 Golgi stacking complex"],["ComplexPortal%3ACPX-874","GRASP65-GM130 Golgi stacking complex"],["GO%3A0005801","cis-Golgi network"],["InterPro%3AIPR043937","Golgin subfamily A , C-terminal binding motif"],["PANTHER%3APTHR14759","STOP PROTEIN"],["PANTHER%3APTHR13048","TRAFFICKING PROTEIN PARTICLE COMPLEX SUBUNIT 3"]]},{"id":"GO:0030131","l":"clathrin adaptor complex","na":2,"nb":8,"a":[["other/ap_1_adaptor_complex.html","AP-1 adaptor complex"],["other/ap_2_adaptor_complex.html","AP-2 adaptor complex"]],"b":[["GO%3A0030121","AP-1 adaptor complex"],["GO%3A0030122","AP-2 adaptor complex"],["GO%3A0030131","clathrin adaptor complex"],["InterPro%3AIPR018240","Clathrin adaptor, mu subunit, conserved site"],["InterPro%3AIPR015151","Beta-adaptin appendage, C-terminal subdomain"],["InterPro%3AIPR003164","Clathrin adaptor, alpha-adaptin, appendage, C-terminal subdomain"]]},{"id":"GO:0031931","l":"TORC1 complex","na":2,"nb":8,"a":[["other/torc1_complex.html","TORC1 complex"],["other/torc2_complex.html","TORC2 complex"]],"b":[["ComplexPortal%3ACPX-4473","mTORC1 complex"],["ComplexPortal%3ACPX-503","mTORC1 complex"],["ComplexPortal%3ACPX-2265","TORC1 complex"],["ComplexPortal%3ACPX-26512","TORC1 serine/threonine protein kinase complex"],["ComplexPortal%3ACPX-1715","TORC1 serine/threonine-protein kinase complex, TOR1 variant"],["ComplexPortal%3ACPX-1716","TORC1 serine/threonine-protein kinase complex, TOR2 variant"]]},{"id":"GO:0033176","l":"proton-transporting V-type ATPase complex","na":2,"nb":8,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["other/rave_complex.html","RAVE complex"]],"b":[["ComplexPortal%3ACPX-2470","Vacuolar proton translocating ATPase complex, ATP6V0A1 variant"],["ComplexPortal%3ACPX-6904","Vacuolar proton translocating ATPase complex, ATP6V0A2 variant"],["ComplexPortal%3ACPX-6905","Vacuolar proton translocating ATPase complex, ATP6V0A3 variant"],["ComplexPortal%3ACPX-6912","Vacuolar proton translocating ATPase complex, ATP6V0A4 variant"],["ComplexPortal%3ACPX-1192","Vacuolar proton translocating ATPase complex, Golgi variant"],["GO%3A0033181","plasma membrane proton-transporting V-type ATPase complex"]]},{"id":"GO:1903561","l":"extracellular vesicle","na":2,"nb":8,"a":[["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"],["other/bacterial_outer_membrane_vesicle.html","bacterial outer membrane vesicle"]],"b":[["GO%3A0097189","apoptotic body"],["GO%3A0097691","bacterial extracellular vesicle"],["GO%3A0061701","bacterial outer membrane vesicle"],["GO%3A0160014","exopher"],["GO%3A0070062","extracellular exosome"],["GO%3A1903561","extracellular vesicle"]]},{"id":"GO:0005687","l":"U4 snRNP","na":2,"nb":7,"a":[["ribonucleoprotein/u4_snrnp.html","U4 snRNP"],["ribonucleoprotein/u4_u6_snrnp.html","U4/U6 snRNP"]],"b":[["ComplexPortal%3ACPX-43","Sm complex"],["ComplexPortal%3ACPX-6033","Sm complex"],["ComplexPortal%3ACPX-26417","U4 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-31","U4 small nuclear ribonucleoprotein complex"],["GO%3A0005687","U4 snRNP"],["PANTHER%3APTHR13904","PRE-MRNA SPLICING FACTOR PRP31"]]},{"id":"GO:0009276","l":"Gram-negative-bacterium-type cell wall","na":2,"nb":7,"a":[["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"]],"b":[["GO%3A0009276","Gram-negative-bacterium-type cell wall"],["NCBIfam%3ATIGR02208","lauroyl-Kdo(2)-lipid IV(A) myristoyltransferase"],["NCBIfam%3ATIGR02314","methionine ABC transporter ATP-binding protein MetN"],["NCBIfam%3ATIGR01937","NADH:ubiquinone reductase (Na(+)-transporting) subunit B"],["NCBIfam%3ATIGR02162","pentaheme c-type cytochrome TorC"],["NCBIfam%3ATIGR01709","type II secretion system protein GspL"]]},{"id":"GO:0030479","l":"actin cortical patch","na":2,"nb":7,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"],["other/cell_cortex.html","cell cortex"]],"b":[["ComplexPortal%3ACPX-3541","AIM21-TDA2 actin assembly regulator complex"],["ComplexPortal%3ACPX-1500","Myosin class I complex, MYO3 variant"],["ComplexPortal%3ACPX-1470","Myosin class I complex, MYO5 variant"],["ComplexPortal%3ACPX-1335","RVS161-RVS167 amphiphysin complex"],["GO%3A0030479","actin cortical patch"],["PANTHER%3APTHR47789","LAS SEVENTEEN-BINDING PROTEIN 5"]]},{"id":"GO:0030905","l":"retromer, tubulation complex","na":2,"nb":7,"a":[["other/retromer_complex.html","retromer complex"],["other/retromer_tubulation_complex.html","retromer, tubulation complex"]],"b":[["ComplexPortal%3ACPX-8837","SNX1-SNX32 sorting nexin complex"],["ComplexPortal%3ACPX-8823","SNX1-SNX5 sorting nexin complex"],["ComplexPortal%3ACPX-8835","SNX1-SNX6 sorting nexin complex"],["ComplexPortal%3ACPX-8840","SNX2-SNX32 sorting nexin complex"],["ComplexPortal%3ACPX-8838","SNX2-SNX5 sorting nexin complex"],["ComplexPortal%3ACPX-8839","SNX2-SNX6 sorting nexin complex"]]},{"id":"GO:0033179","l":"proton-transporting V-type ATPase, V0 domain","na":2,"nb":7,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_v0_domain.html","vacuolar proton-transporting V-type ATPase, V0 domain"],["other/rave_complex.html","RAVE complex"]],"b":[["GO%3A0000222","plasma membrane proton-transporting V-type ATPase, V0 domain"],["GO%3A0033179","proton-transporting V-type ATPase, V0 domain"],["GO%3A0000220","vacuolar proton-transporting V-type ATPase, V0 domain"],["NCBIfam%3ATIGR02923","ATP synthase A1 subunit C"],["NCBIfam%3ANF013647","V-type ATPase 116kDa subunit family protein"],["Pfam%3APF05493","ATP synthase subunit H"]]},{"id":"GO:0071004","l":"U2-type prespliceosome","na":2,"nb":7,"a":[["ribonucleoprotein/u2_type_precatalytic_spliceosome.html","U2-type precatalytic spliceosome"],["ribonucleoprotein/u2_type_prespliceosome.html","U2-type prespliceosome"]],"b":[["ComplexPortal%3ACPX-1648","SF3A complex"],["GO%3A0071004","U2-type prespliceosome"],["PANTHER%3APTHR11864","PRE-MRNA-PROCESSING PROTEIN PRP40"],["PANTHER%3APTHR12375","RNA-BINDING PROTEIN LUC7-RELATED"],["PANTHER%3APTHR15316","SPLICEOSOME ASSOCIATED PROTEIN 114/SWAP SPLICING FACTOR-RELATED"],["PANTHER%3APTHR23205","SPLICING FACTOR 3A SUBUNIT 2"]]},{"id":"NCBITaxon:555778","l":"Halothiobacillus neapolitanus c2","na":2,"nb":7,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["Pfam%3APF08936","Carboxysome Shell Carbonic Anhydrase, C-terminal"],["Pfam%3APF20686","Carboxysome Shell Carbonic Anhydrase, catalytic domain"],["Pfam%3APF20687","Carboxysome Shell Carbonic Anhydrase, N-terminal"],["Pfam%3APF12288","Carboxysome shell peptide mid-region"],["Pfam%3APF10070","Probable inorganic carbon transporter subunit DabA"],["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"GO:0005619","l":"ascospore wall","na":6,"nb":2,"a":[["spore/ascospore_wall.html","ascospore wall"],["spore/chitosan_layer_of_spore_wall.html","chitosan layer of spore wall"],["spore/dityrosine_layer_of_spore_wall.html","dityrosine layer of spore wall"],["spore/inner_layer_of_spore_wall.html","inner layer of spore wall"],["spore/isp3_layer_of_spore_wall.html","Isp3 layer of spore wall"],["spore/spore_wall.html","spore wall"]],"b":[["ComplexPortal%3ACPX-1675","Septin complex"],["GO%3A0005619","ascospore wall"]]},{"id":"GO:0005691","l":"U6atac snRNP","na":6,"nb":2,"a":[["ribonucleoprotein/u12_type_catalytic_step_1_spliceosome.html","U12-type catalytic step 1 spliceosome"],["ribonucleoprotein/u12_type_catalytic_step_2_spliceosome.html","U12-type catalytic step 2 spliceosome"],["ribonucleoprotein/u12_type_post_mrna_release_spliceosomal_complex.html","U12-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u12_type_post_spliceosomal_complex.html","U12-type post-spliceosomal complex"],["ribonucleoprotein/u4atac_u6atac_snrnp.html","U4atac/U6atac snRNP"],["ribonucleoprotein/u6atac_snrnp.html","U6atac snRNP"]],"b":[["ComplexPortal%3ACPX-26499","U6atac small nuclear ribonucleoprotein complex"],["GO%3A0005691","U6atac snRNP"]]},{"id":"GO:0009521","l":"photosystem","na":2,"nb":6,"a":[["energy_complex/photosystem_i.html","photosystem I"],["energy_complex/photosystem_ii.html","photosystem II"]],"b":[["GO%3A0009521","photosystem"],["GO%3A0009522","photosystem I"],["GO%3A0009523","photosystem II"],["NCBIfam%3ANF012637","Photosystem II protein"],["Pfam%3APF00421","Photosystem II protein"],["InterPro%3AIPR036001","Photosystem antenna protein-like superfamily"]]},{"id":"GO:0009707","l":"chloroplast outer membrane","na":6,"nb":2,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_intermembrane_space.html","chloroplast intermembrane space"],["membrane_organelle/chloroplast_membrane.html","chloroplast membrane"],["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"],["other/toc_complex.html","Toc complex"]],"b":[["GO%3A0009707","chloroplast outer membrane"],["PANTHER%3APTHR47283","ENT-KAURENE OXIDASE, CHLOROPLASTIC"]]},{"id":"GO:0030140","l":"trans-Golgi network transport vesicle","na":2,"nb":6,"a":[["membrane_organelle/trans_golgi_network_transport_vesicle_membrane.html","trans-Golgi network transport vesicle membrane"],["other/clathrin_coat_of_trans_golgi_network_vesicle.html","clathrin coat of trans-Golgi network vesicle"]],"b":[["GO%3A0030140","trans-Golgi network transport vesicle"],["PANTHER%3APTHR16156","AFTIPHILIN A-RELATED"],["PANTHER%3APTHR15463","AP1 GAMMA SUBUNIT BINDING PROTEIN 1"],["PANTHER%3APTHR31975","BUD SITE SELECTION PROTEIN 7-RELATED"],["PANTHER%3APTHR47351","CHITIN BIOSYNTHESIS PROTEIN CHS5"],["PANTHER%3APTHR16528","GOLGI-ASSOCIATED PDZ AND COILED-COIL MOTIF-CONTAINING"]]},{"id":"GO:0031932","l":"TORC2 complex","na":2,"nb":6,"a":[["other/torc1_complex.html","TORC1 complex"],["other/torc2_complex.html","TORC2 complex"]],"b":[["ComplexPortal%3ACPX-4402","mTORC2 complex"],["ComplexPortal%3ACPX-4472","mTORC2 complex"],["ComplexPortal%3ACPX-1717","TORC2 complex"],["ComplexPortal%3ACPX-2269","TORC2 complex"],["ComplexPortal%3ACPX-26513","TORC2 serine/threonine protein kinase complex"],["GO%3A0031932","TORC2 complex"]]},{"id":"GO:0032580","l":"Golgi cisterna membrane","na":2,"nb":6,"a":[["membrane_organelle/golgi_cisterna.html","Golgi cisterna"],["membrane_organelle/golgi_cisterna_membrane.html","Golgi cisterna membrane"]],"b":[["GO%3A1990674","Golgi cis cisterna membrane"],["GO%3A0032580","Golgi cisterna membrane"],["GO%3A1990675","Golgi medial cisterna membrane"],["GO%3A1990676","Golgi trans cisterna membrane"],["NCBIfam%3ANF017491","Chondroitin N-acetylgalactosaminyltransferase"],["Pfam%3APF05679","Chondroitin N-acetylgalactosaminyltransferase"]]},{"id":"GO:0033565","l":"ESCRT-0 complex","na":2,"nb":6,"a":[["other/escrt_0_complex.html","ESCRT-0 complex"],["other/escrt_complex.html","ESCRT complex"]],"b":[["ComplexPortal%3ACPX-1622","ESCRT-0 complex"],["ComplexPortal%3ACPX-2452","ESCRT-0 complex"],["ComplexPortal%3ACPX-26631","ESCRT-0 complex"],["ComplexPortal%3ACPX-2825","ESCRT-0 complex, STAM variant"],["ComplexPortal%3ACPX-7143","ESCRT-0 complex, STAM2 variant"],["GO%3A0033565","ESCRT-0 complex"]]},{"id":"GO:0045334","l":"clathrin-coated endocytic vesicle","na":6,"nb":2,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle.html","clathrin-coated endocytic vesicle"],["membrane_organelle/clathrin_coated_endocytic_vesicle_lumen.html","clathrin-coated endocytic vesicle lumen"],["membrane_organelle/clathrin_coated_endocytic_vesicle_membrane.html","clathrin-coated endocytic vesicle membrane"],["membrane_organelle/endocytic_vesicle.html","endocytic vesicle"],["other/clathrin_coat_of_endocytic_vesicle.html","clathrin coat of endocytic vesicle"],["other/clathrin_coated_pit.html","clathrin-coated pit"]],"b":[["GO%3A0045334","clathrin-coated endocytic vesicle"],["GO%3A0045336","clathrin-coated phagocytic vesicle"]]},{"id":"GO:0071006","l":"U2-type catalytic step 1 spliceosome","na":2,"nb":6,"a":[["ribonucleoprotein/u2_type_catalytic_step_1_spliceosome.html","U2-type catalytic step 1 spliceosome"],["ribonucleoprotein/u2_type_catalytic_step_2_spliceosome.html","U2-type catalytic step 2 spliceosome"]],"b":[["ComplexPortal%3ACPX-26463","Major Spliceosomal C complex"],["ComplexPortal%3ACPX-26458","Major Spliceosomal Post-B-act complex"],["ComplexPortal%3ACPX-26441","Major Spliceosomal Pre-B-act complex"],["ComplexPortal%3ACPX-26465","Major Spliceosomal Pre-C*-I complex"],["ComplexPortal%3ACPX-26467","Major Spliceosomal Pre-C*-II complex"],["GO%3A0071006","U2-type catalytic step 1 spliceosome"]]},{"id":"GO:1990071","l":"TRAPPII protein complex","na":2,"nb":6,"a":[["other/trappi_protein_complex.html","TRAPPI protein complex"],["other/trappii_protein_complex.html","TRAPPII protein complex"]],"b":[["ComplexPortal%3ACPX-1939","TRAPP II complex"],["ComplexPortal%3ACPX-4764","TRAPP II complex"],["ComplexPortal%3ACPX-4749","TRAPP II complex, TRAPPC2 variant"],["ComplexPortal%3ACPX-6902","TRAPP II complex, TRAPPC2B variant"],["ComplexPortal%3ACPX-2271","TRAPPII complex"],["GO%3A1990071","TRAPPII protein complex"]]},{"id":"NCBITaxon:194439","l":"Chlorobaculum tepidum TLS","na":2,"nb":6,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["membrane_organelle/chlorosome.html","chlorosome"]],"b":[["Pfam%3APF02327","Bacteriochlorophyll A protein"],["Pfam%3APF27499","CsmB chlorosome envelope protein"],["Pfam%3APF28537","Probable trigger factor, FKBP-like domain"],["Pfam%3APF02043","Bacteriochlorophyll C binding protein"],["Pfam%3APF11098","Chlorosome envelope protein C"],["Pfam%3APF10643","Photosystem P840 reaction-centre cytochrome c-551"]]},{"id":"GO:0000221","l":"vacuolar proton-transporting V-type ATPase, V1 domain","na":2,"nb":5,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v1_domain.html","vacuolar proton-transporting V-type ATPase, V1 domain"]],"b":[["GO%3A0046612","lysosomal proton-transporting V-type ATPase, V1 domain"],["GO%3A0000221","vacuolar proton-transporting V-type ATPase, V1 domain"],["InterPro%3AIPR011987","ATPase, V1 complex, subunit H, C-terminal"],["Pfam%3APF11698","V-ATPase subunit H"],["Pfam%3APF03224","V-ATPase subunit H"]]},{"id":"GO:0005640","l":"nuclear outer membrane","na":5,"nb":2,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nuclear_envelope_lumen.html","nuclear envelope lumen"],["membrane_organelle/nuclear_inner_membrane.html","nuclear inner membrane"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"],["membrane_organelle/vacuolar_membrane.html","vacuolar membrane"]],"b":[["ComplexPortal%3ACPX-1381","NVJ1-VAC8 nucleus-vacuole junction complex"],["GO%3A0005640","nuclear outer membrane"]]},{"id":"GO:0009426","l":"bacterial-type flagellum basal body, distal rod","na":5,"nb":2,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"],["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"]],"b":[["GO%3A0009426","bacterial-type flagellum basal body, distal rod"],["NCBIfam%3ATIGR02488","flagellar basal-body rod protein FlgG"]]},{"id":"GO:0030669","l":"clathrin-coated endocytic vesicle membrane","na":5,"nb":2,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle.html","clathrin-coated endocytic vesicle"],["membrane_organelle/clathrin_coated_endocytic_vesicle_lumen.html","clathrin-coated endocytic vesicle lumen"],["membrane_organelle/clathrin_coated_endocytic_vesicle_membrane.html","clathrin-coated endocytic vesicle membrane"],["membrane_organelle/endocytic_vesicle_membrane.html","endocytic vesicle membrane"],["other/clathrin_coat_of_endocytic_vesicle.html","clathrin coat of endocytic vesicle"]],"b":[["GO%3A0030669","clathrin-coated endocytic vesicle membrane"],["GO%3A0030671","clathrin-coated phagocytic vesicle membrane"]]},{"id":"GO:0031207","l":"Sec62/Sec63 complex","na":2,"nb":5,"a":[["other/endoplasmic_reticulum_sec_complex.html","endoplasmic reticulum Sec complex"],["other/sec62_sec63_complex.html","Sec62/Sec63 complex"]],"b":[["ComplexPortal%3ACPX-26617","SEC62-SEC63 complex"],["ComplexPortal%3ACPX-26618","SEC62-SEC63 complex"],["ComplexPortal%3ACPX-3056","SEC62-SEC63 complex"],["GO%3A0031207","Sec62/Sec63 complex"],["Pfam%3APF09802","Preprotein translocase subunit Sec66"]]},{"id":"GO:0033180","l":"proton-transporting V-type ATPase, V1 domain","na":2,"nb":5,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_v1_domain.html","vacuolar proton-transporting V-type ATPase, V1 domain"],["other/rave_complex.html","RAVE complex"]],"b":[["GO%3A0000223","plasma membrane proton-transporting V-type ATPase, V1 domain"],["GO%3A0033180","proton-transporting V-type ATPase, V1 domain"],["GO%3A0000221","vacuolar proton-transporting V-type ATPase, V1 domain"],["Pfam%3APF03223","V-ATPase subunit C"],["InterPro%3AIPR036132","Vacuolar ATP synthase subunit C superfamily"]]},{"id":"GO:0042717","l":"plasma membrane-derived chromatophore membrane","na":5,"nb":2,"a":[["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/rc_lh1_pufx_core_complex.html","RC-LH1-PufX core complex"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"],["membrane_organelle/plasma_membrane_derived_chromatophore_membrane.html","plasma membrane-derived chromatophore membrane"]],"b":[["GO%3A0042717","plasma membrane-derived chromatophore membrane"],["GO%3A0031676","plasma membrane-derived thylakoid membrane"]]},{"id":"GO:0043593","l":"endospore coat","na":5,"nb":2,"a":[["spore/endospore_coat.html","endospore coat"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"],["spore/exosporium.html","exosporium"],["spore/outer_endospore_membrane.html","outer endospore membrane"],["spore/spore_wall.html","spore wall"]],"b":[["GO%3A0043593","endospore coat"],["NCBIfam%3ANF022572","CotD family spore coat protein"]]},{"id":"GO:0044222","l":"anammoxosome","na":2,"nb":5,"a":[["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"]],"b":[["GO%3A0044222","anammoxosome"],["NCBIfam%3ANF052343","hydrazine dehydrogenase"],["NCBIfam%3ANF052339","hydrazine synthase subunit alpha"],["NCBIfam%3ANF052340","hydrazine synthase subunit beta"],["NCBIfam%3ANF052341","hydrazine synthase subunit gamma"]]},{"id":"GO:0110146","l":"magnetosome membrane","na":2,"nb":5,"a":[["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]],"b":[["GO%3A0110146","magnetosome membrane"],["NCBIfam%3ANF040960","magnetosome formation protease MamE"],["NCBIfam%3ANF040959","magnetosome protein MamA"],["NCBIfam%3ANF040961","magnetosome protein MamO"],["NCBIfam%3ANF040966","magnetosome protein MamQ"]]},{"id":"GO:1990716","l":"axonemal central apparatus","na":5,"nb":2,"a":[["cytoskeleton/axonemal_central_apparatus.html","axonemal central apparatus"],["cytoskeleton/axonemal_central_bridge.html","axonemal central bridge"],["cytoskeleton/axonemal_central_pair.html","axonemal central pair"],["cytoskeleton/axonemal_central_pair_projection.html","axonemal central pair projection"],["cytoskeleton/axoneme.html","axoneme"]],"b":[["GO%3A1990716","axonemal central apparatus"],["PANTHER%3APTHR21963","PF6"]]},{"id":"UniProt:P27434","l":"","na":2,"nb":5,"a":[["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/elongasome.html","elongasome"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["NCBIfam%3ANF008109","cytoskeleton protein RodZ"],["InterPro%3AIPR025194","Cytoskeleton protein RodZ-like, C-terminal domain"],["Pfam%3APF13413","Helix-turn-helix domain"],["Pfam%3APF13464","RodZ C-terminal domain"]]},{"id":"GO:0030906","l":"retromer, cargo-selective complex","na":2,"nb":4,"a":[["other/retromer_cargo_selective_complex.html","retromer, cargo-selective complex"],["other/retromer_complex.html","retromer complex"]],"b":[["ComplexPortal%3ACPX-7842","Retromer complex, VPS26A variant"],["ComplexPortal%3ACPX-7843","Retromer complex, VPS26B variant"],["GO%3A0030906","retromer, cargo-selective complex"],["Pfam%3APF03635","Vacuolar protein sorting-associated protein 35"]]},{"id":"GO:0031970","l":"organelle envelope lumen","na":2,"nb":4,"a":[["membrane_organelle/mitochondrial_intermembrane_space.html","mitochondrial intermembrane space"],["membrane_organelle/nuclear_envelope_lumen.html","nuclear envelope lumen"]],"b":[["GO%3A0005758","mitochondrial intermembrane space"],["GO%3A0005641","nuclear envelope lumen"],["GO%3A0031970","organelle envelope lumen"],["GO%3A0009529","plastid intermembrane space"]]},{"id":"GO:0097590","l":"archaeal-type flagellum-dependent cell motility","na":2,"nb":4,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"]],"b":[["GO%3A0097590","archaeal-type flagellum-dependent cell motility"],["NCBIfam%3ANF052589","archaellum protein ArlH"],["NCBIfam%3ANF052590","archaellum stator protein ArlF"],["NCBIfam%3ANF052591","archaellum stator protein ArlG"]]},{"id":"GO:0120101","l":"bacterial-type flagellum stator complex","na":4,"nb":2,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"]],"b":[["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["GO%3A0120101","bacterial-type flagellum stator complex"]]},{"id":"NCBITaxon:32053","l":"Thermostichus vulcanus","na":2,"nb":4,"a":[["energy_complex/photosystem_ii.html","photosystem II"],["energy_complex/phycobilisome.html","phycobilisome"]],"b":[["Pfam%3APF14495","Cytochrome c-550 domain"],["Pfam%3APF00283","Cytochrome b559, alpha (gene psbE) and beta (gene psbF)subunits"],["Pfam%3APF00284","Lumenal portion of Cytochrome b559, alpha (gene psbE) subunit"],["PROSITE%3APS00537","Cytochrome b559 subunits heme-binding site signature"]]},{"id":"Pfam:PF00741","l":"Gas vesicle protein","na":2,"nb":4,"a":[["inclusion/gas_vesicle.html","gas vesicle"],["inclusion/gas_vesicle_shell.html","gas vesicle shell"]],"b":[["Pfam%3APF05121","Gas vesicle protein K"],["Pfam%3APF00741","Gas vesicle protein"],["PROSITE%3APS00234","Gas vesicles protein GVPa signature 1"],["PROSITE%3APS00669","Gas vesicles protein GVPa signature 2"]]},{"id":"GO:0000220","l":"vacuolar proton-transporting V-type ATPase, V0 domain","na":3,"nb":2,"a":[["energy_complex/vacuolar_proton_transporting_v_type_atpase_complex.html","vacuolar proton-transporting V-type ATPase complex"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v0_domain.html","vacuolar proton-transporting V-type ATPase, V0 domain"],["energy_complex/vacuolar_proton_transporting_v_type_atpase_v1_domain.html","vacuolar proton-transporting V-type ATPase, V1 domain"]],"b":[["GO%3A0046610","lysosomal proton-transporting V-type ATPase, V0 domain"],["GO%3A0000220","vacuolar proton-transporting V-type ATPase, V0 domain"]]},{"id":"GO:0005934","l":"cellular bud tip","na":2,"nb":3,"a":[["other/cellular_bud.html","cellular bud"],["other/cellular_bud_tip.html","cellular bud tip"]],"b":[["ComplexPortal%3ACPX-1684","CBK1-MOB2 kinase complex"],["ComplexPortal%3ACPX-36","Kelch-containing Formin Regulatory Complex"],["GO%3A0005934","cellular bud tip"]]},{"id":"GO:0020022","l":"acidocalcisome","na":3,"nb":2,"a":[["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"]],"b":[["GO%3A0020022","acidocalcisome"],["GO%3A0106117","acidocalcisome organization"]]},{"id":"GO:0022624","l":"proteasome accessory complex","na":2,"nb":3,"a":[["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"]],"b":[["ComplexPortal%3ACPX-8962","19S proteasome regulatory complex"],["ComplexPortal%3ACPX-8964","19S proteasome regulatory complex"],["GO%3A0022624","proteasome accessory complex"]]},{"id":"GO:0031905","l":"early endosome lumen","na":3,"nb":2,"a":[["membrane_organelle/early_endosome.html","early endosome"],["membrane_organelle/early_endosome_lumen.html","early endosome lumen"],["membrane_organelle/early_endosome_membrane.html","early endosome membrane"]],"b":[["ComplexPortal%3ACPX-1059","Sorf-1-Sorf-2 complex"],["GO%3A0031905","early endosome lumen"]]},{"id":"GO:0031906","l":"late endosome lumen","na":2,"nb":3,"a":[["membrane_organelle/late_endosome_lumen.html","late endosome lumen"],["membrane_organelle/late_endosome_membrane.html","late endosome membrane"]],"b":[["ComplexPortal%3ACPX-1059","Sorf-1-Sorf-2 complex"],["GO%3A0031906","late endosome lumen"],["GO%3A0097486","multivesicular body lumen"]]},{"id":"GO:0034693","l":"U11/U12 snRNP","na":3,"nb":2,"a":[["ribonucleoprotein/u11_u12_snrnp.html","U11/U12 snRNP"],["ribonucleoprotein/u12_type_precatalytic_spliceosome.html","U12-type precatalytic spliceosome"],["ribonucleoprotein/u12_type_prespliceosome.html","U12-type prespliceosome"]],"b":[["ComplexPortal%3ACPX-26489","U11/U12 di-small nuclear ribonucleoprotein complex"],["GO%3A0034693","U11/U12 snRNP"]]},{"id":"GO:0042646","l":"plastid nucleoid","na":2,"nb":3,"a":[["nucleoid/chloroplast_nucleoid.html","chloroplast nucleoid"],["nucleoid/plastid_nucleoid.html","plastid nucleoid"]],"b":[["GO%3A0042644","chloroplast nucleoid"],["GO%3A0042646","plastid nucleoid"],["GO%3A0042647","proplastid nucleoid"]]},{"id":"GO:0071001","l":"U4/U6 snRNP","na":2,"nb":3,"a":[["ribonucleoprotein/u4_u6_snrnp.html","U4/U6 snRNP"],["ribonucleoprotein/u4_u6_x_u5_tri_snrnp_complex.html","U4/U6 x U5 tri-snRNP complex"]],"b":[["ComplexPortal%3ACPX-26418","U4/U6 small nuclear ribonucleoprotein complex"],["ComplexPortal%3ACPX-32","U4/U6 small nuclear ribonucleoprotein complex"],["GO%3A0071001","U4/U6 snRNP"]]},{"id":"GO:0071010","l":"prespliceosome","na":2,"nb":3,"a":[["ribonucleoprotein/u12_type_prespliceosome.html","U12-type prespliceosome"],["ribonucleoprotein/u2_type_prespliceosome.html","U2-type prespliceosome"]],"b":[["GO%3A0071010","prespliceosome"],["GO%3A0071015","U12-type prespliceosome"],["GO%3A0071004","U2-type prespliceosome"]]},{"id":"GO:0120107","l":"bacterial-type flagellum rotor complex","na":2,"nb":3,"a":[["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"]],"b":[["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0120107","bacterial-type flagellum rotor complex"]]},{"id":"NCBITaxon:174633","l":"Candidatus Kuenenia stuttgartensis","na":2,"nb":3,"a":[["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"]],"b":[["Pfam%3APF22142","Hydroxylamine oxidoreductase, C-terminal domain"],["Pfam%3APF18582","Hydrazine synthase alpha subunit middle domain"],["Pfam%3APF21783","YNCE-like beta-propeller"]]},{"id":"NCBITaxon:243231","l":"Geobacter sulfurreducens PCA","na":3,"nb":2,"a":[["appendage/omce_cytochrome_nanowire.html","OmcE cytochrome nanowire"],["appendage/omcs_cytochrome_nanowire.html","OmcS cytochrome nanowire"],["appendage/omcz_cytochrome_nanowire.html","OmcZ cytochrome nanowire"]],"b":[["Pfam%3APF01930","Domain of unknown function DUF83"],["Pfam%3APF13435","Cytochrome c554 and c-prime"]]},{"id":"NCBITaxon:342108","l":"Paramagnetospirillum magneticum AMB-1","na":2,"nb":3,"a":[["cytoskeleton/mamk_filament.html","MamK filament"],["membrane_organelle/magnetosome.html","magnetosome"]],"b":[["Pfam%3APF08269","Cache domain"],["Pfam%3APF08849","BrxA"],["Pfam%3APF04011","LemA family"]]},{"id":"NCBITaxon:4922","l":"Komagataella pastoris","na":2,"nb":3,"a":[["membrane_organelle/cis_golgi_network.html","cis-Golgi network"],["membrane_organelle/cis_golgi_network_membrane.html","cis-Golgi network membrane"]],"b":[["Pfam%3APF26001","Peroxin 8 protein-like, N-terminal domain"],["Pfam%3APF27812","PEX8 central TPR-like domain"],["TED%3AAF-A0A1B2J8F2-F1-model_v4_TED02","TED novel fold AF-A0A1B2J8F2-F1-model_v4_TED02"]]},{"id":"GO:0000817","l":"COMA complex","na":2,"nb":2,"a":[["other/coma_complex.html","COMA complex"],["other/kinetochore.html","kinetochore"]],"b":[["ComplexPortal%3ACPX-1187","COMA complex"],["GO%3A0000817","COMA complex"]]},{"id":"GO:0005690","l":"U4atac snRNP","na":2,"nb":2,"a":[["ribonucleoprotein/u4atac_snrnp.html","U4atac snRNP"],["ribonucleoprotein/u4atac_u6atac_snrnp.html","U4atac/U6atac snRNP"]],"b":[["ComplexPortal%3ACPX-26495","U4atac small nuclear ribonucleoprotein complex"],["GO%3A0005690","U4atac snRNP"]]},{"id":"GO:0005931","l":"axonemal nexin link","na":2,"nb":2,"a":[["cytoskeleton/axonemal_nexin_link.html","axonemal nexin link"],["cytoskeleton/axoneme.html","axoneme"]],"b":[["ComplexPortal%3ACPX-8086","Nexin-dynein regulatory complex"],["GO%3A0005931","axonemal nexin link"]]},{"id":"GO:0033106","l":"cis-Golgi network membrane","na":2,"nb":2,"a":[["membrane_organelle/cis_golgi_network.html","cis-Golgi network"],["membrane_organelle/cis_golgi_network_membrane.html","cis-Golgi network membrane"]],"b":[["ComplexPortal%3ACPX-1125","BUG1-GRH1 complex"],["GO%3A0033106","cis-Golgi network membrane"]]},{"id":"GO:0071002","l":"U4atac/U6atac snRNP","na":2,"nb":2,"a":[["ribonucleoprotein/u4atac_u6atac_snrnp.html","U4atac/U6atac snRNP"],["ribonucleoprotein/u4atac_u6atac_x_u5_tri_snrnp_complex.html","U4atac/U6atac x U5 tri-snRNP complex"]],"b":[["ComplexPortal%3ACPX-26500","U4atac/U6atac small nuclear ribonucleoprotein complex"],["GO%3A0071002","U4atac/U6atac snRNP"]]},{"id":"GO:0071009","l":"U4atac/U6atac x U5 tri-snRNP complex","na":2,"nb":2,"a":[["ribonucleoprotein/u12_type_precatalytic_spliceosome.html","U12-type precatalytic spliceosome"],["ribonucleoprotein/u4atac_u6atac_x_u5_tri_snrnp_complex.html","U4atac/U6atac x U5 tri-snRNP complex"]],"b":[["ComplexPortal%3ACPX-26502","U4atac/U6atac.U5 small nuclear ribonucleoprotein complex"],["GO%3A0071009","U4atac/U6atac x U5 tri-snRNP complex"]]},{"id":"GO:0071016","l":"U12-type precatalytic spliceosome","na":2,"nb":2,"a":[["ribonucleoprotein/u12_type_catalytic_step_1_spliceosome.html","U12-type catalytic step 1 spliceosome"],["ribonucleoprotein/u12_type_precatalytic_spliceosome.html","U12-type precatalytic spliceosome"]],"b":[["ComplexPortal%3ACPX-26506","Minor Spliceosomal Pre-B complex"],["GO%3A0071016","U12-type precatalytic spliceosome"]]},{"id":"GO:0090382","l":"phagosome maturation","na":2,"nb":2,"a":[["membrane_organelle/phagocytic_vesicle.html","phagocytic vesicle"],["membrane_organelle/phagocytic_vesicle_membrane.html","phagocytic vesicle membrane"]],"b":[["GO%3A0090382","phagosome maturation"],["GO%3A0090386","phagosome maturation involved in apoptotic cell clearance"]]},{"id":"GO:0120102","l":"bacterial-type flagellum secretion apparatus","na":2,"nb":2,"a":[["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"],["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["ComplexPortal%3ACPX-5885","Flagellar export complex"],["GO%3A0120102","bacterial-type flagellum secretion apparatus"]]},{"id":"GO:1990621","l":"ESCRT IV complex","na":2,"nb":2,"a":[["other/escrt_complex.html","ESCRT complex"],["other/escrt_iv_complex.html","ESCRT IV complex"]],"b":[["ComplexPortal%3ACPX-2462","VPS4-VTA1 compex"],["GO%3A1990621","ESCRT IV complex"]]},{"id":"InterPro:IPR006300","l":"","na":2,"nb":2,"a":[["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"]],"b":[["Pfam%3APF00460","Flagella basal body rod protein"],["PROSITE%3APS00588","Flagella basal body rod proteins signature"]]},{"id":"InterPro:IPR012834","l":"","na":2,"nb":2,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"]],"b":[["Pfam%3APF06429","Flagellar basal body rod FlgEFG protein C-terminal"],["PROSITE%3APS00588","Flagella basal body rod proteins signature"]]},{"id":"InterPro:IPR028245","l":"","na":2,"nb":2,"a":[["cytoskeleton/eisosome_filament.html","eisosome filament"],["other/eisosome.html","eisosome"]],"b":[["PANTHER%3APTHR31962","SPHINGOLIPID LONG CHAIN BASE-RESPONSIVE PROTEIN PIL1"],["Pfam%3APF13805","Eisosome component PIL1"]]},{"id":"Pfam:PF01304","l":"Gas vesicles protein GVPc repeated domain","na":2,"nb":2,"a":[["inclusion/gas_vesicle.html","gas vesicle"],["inclusion/gas_vesicle_shell.html","gas vesicle shell"]],"b":[["PROSITE%3APS00235","Gas vesicles protein GVPc repeated domain signature"],["Pfam%3APF01304","Gas vesicles protein GVPc repeated domain"]]},{"id":"UniProt:P06179","l":"","na":2,"nb":2,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"]],"b":[["Pfam%3APF08884","Flagellin D3 domain"],["Pfam%3APF21504","Flagellin, barrel domain"]]},{"id":"GO:0005576","l":"extracellular region","na":1,"nb":472,"a":[["envelope/periplasmic_space.html","periplasmic space"]],"b":[["ComplexPortal%3ACPX-4984","Complement C1 complex, C1ra-C1sa variant"],["ComplexPortal%3ACPX-4985","Complement C1 complex, C1rb-C1sb variant"],["ComplexPortal%3ACPX-1920","Complement C1 complex"],["ComplexPortal%3ACPX-1919","Complement component C1q complex"],["ComplexPortal%3ACPX-4981","Complement component C1q complex"],["ComplexPortal%3ACPX-7321","Crotoxin complex, aCA1/2/4-bCA1-CBa variant"]]},{"id":"GO:0003735","l":"structural constituent of ribosome","na":1,"nb":466,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["GO%3A0003735","structural constituent of ribosome"],["NCBIfam%3ANF004951","30S ribosomal protein S1"],["NCBIfam%3ANF004954","30S ribosomal protein S1"],["NCBIfam%3ANF004955","30S ribosomal protein S1"],["NCBIfam%3ATIGR00717","30S ribosomal protein S1"],["NCBIfam%3ANF001861","30S ribosomal protein S10"]]},{"id":"GO:0005829","l":"cytosol","na":1,"nb":457,"a":[["other/chaperonin_containing_t_complex.html","chaperonin-containing T-complex"]],"b":[["ComplexPortal%3ACPX-9082","19S-20S-PA28-alphabeta hybrid proteasome complex"],["ComplexPortal%3ACPX-9085","19S-20S-PA28-gamma hybrid proteasome complex"],["ComplexPortal%3ACPX-26562","Anamorsin-NDOR1 complex"],["ComplexPortal%3ACPX-1848","ATG12-ATG5 complex"],["ComplexPortal%3ACPX-3864","ATG12-ATG5 complex"],["ComplexPortal%3ACPX-132","BAT3 complex"]]},{"id":"GO:0006412","l":"translation","na":1,"nb":455,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["GO%3A0002181","cytoplasmic translation"],["GO%3A0032543","mitochondrial translation"],["GO%3A0032544","plastid translation"],["GO%3A0140241","translation at synapse"],["GO%3A0006412","translation"],["Reactome%3AR-HSA-72766","Translation"]]},{"id":"GO:0071944","l":"cell periphery","na":1,"nb":440,"a":[["envelope/plasma_membrane.html","plasma membrane"]],"b":[["GO%3A0071944","cell periphery"],["PANTHER%3APTHR31468","1,3-BETA-GLUCANOSYLTRANSFERASE GAS1"],["PANTHER%3APTHR28145","12 KDA HEAT SHOCK PROTEIN"],["PANTHER%3APTHR42755","3-DEOXY-MANNO-OCTULOSONATE CYTIDYLYLTRANSFERASE"],["PANTHER%3APTHR46574","43 KDA RECEPTOR-ASSOCIATED PROTEIN OF THE SYNAPSE"],["PANTHER%3APTHR15182","A-KINASE ANCHOR PROTEIN 5-RELATED"]]},{"id":"GO:0055085","l":"transmembrane transport","na":1,"nb":439,"a":[["envelope/plasma_membrane.html","plasma membrane"]],"b":[["ComplexPortal%3ACPX-271","5-hydroxytryptamine-3A/B receptor complex"],["ComplexPortal%3ACPX-275","5-hydroxytryptamine-3A/B receptor complex"],["ComplexPortal%3ACPX-277","5-hydroxytryptamine-3A/B receptor complex"],["ComplexPortal%3ACPX-276","5-hydroxytryptamine-3A/C receptor complex"],["ComplexPortal%3ACPX-272","5-hydroxytryptamine-3A/D receptor complex"],["ComplexPortal%3ACPX-273","5-hydroxytryptamine-3A/E receptor complex"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":1,"nb":396,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29033","requires iron(2+)"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.11","glucoside 3-dehydrogenase (cytochrome c)"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.2.3","L-lactate dehydrogenase (cytochrome)"],["EC%3A1.1.2.4","D-lactate dehydrogenase (cytochrome)"]]},{"id":"GO:0016887","l":"ATP hydrolysis activity","na":1,"nb":375,"a":[["other/escrt_iv_complex.html","ESCRT IV complex"]],"b":[["RHEA%3A13065","ATP + H2O = ADP + phosphate + H(+)"],["ComplexPortal%3ACPX-2262","26S proteasome complex"],["ComplexPortal%3ACPX-5993","26S proteasome complex"],["ComplexPortal%3ACPX-4314","Arabinose ABC transporter complex"],["ComplexPortal%3ACPX-6307","ATP10A-CDC50A P4-ATPase complex"],["ComplexPortal%3ACPX-6308","ATP10B-CDC50A P4-ATPase complex"]]},{"id":"GO:1902494","l":"catalytic complex","na":1,"nb":320,"a":[["other/exodeoxyribonuclease_v_complex.html","exodeoxyribonuclease V complex"]],"b":[["ComplexPortal%3ACPX-2581","2-(3-amino-3-carboxypropyl)histidine synthase complex"],["ComplexPortal%3ACPX-7849","2-(3-amino-3-carboxypropyl)histidine synthase complex"],["ComplexPortal%3ACPX-7850","2-(3-amino-3-carboxypropyl)histidine synthase complex"],["ComplexPortal%3ACPX-2833","Camalexin biosynthetic metabolon complex"],["ComplexPortal%3ACPX-2345","Cholera toxin"],["ComplexPortal%3ACPX-944","DNA (cytosine-5)-methyltransferase 3A complex"]]},{"id":"GO:0016192","l":"vesicle-mediated transport","na":1,"nb":172,"a":[["membrane_organelle/coated_vesicle.html","coated vesicle"]],"b":[["ComplexPortal%3ACPX-2510","Adaptor complex AP-1"],["ComplexPortal%3ACPX-26626","Adaptor complex AP-2"],["ComplexPortal%3ACPX-2725","Adaptor complex AP-2"],["ComplexPortal%3ACPX-26627","Adaptor complex AP-3"],["ComplexPortal%3ACPX-2727","Adaptor complex AP-3"],["ComplexPortal%3ACPX-5149","AP-2 Adaptor complex, alpha1 variant"]]},{"id":"GO:0003887","l":"DNA-directed DNA polymerase activity","na":1,"nb":153,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"]],"b":[["EC%3A2.7.7.7","DNA-directed DNA polymerase"],["ComplexPortal%3ACPX-1556","CMG-Pol epsilon complex"],["ComplexPortal%3ACPX-2097","DNA polymerase delta complex"],["ComplexPortal%3ACPX-2098","DNA polymerase delta complex"],["ComplexPortal%3ACPX-2099","DNA polymerase delta complex"],["ComplexPortal%3ACPX-2100","DNA polymerase delta complex"]]},{"id":"GO:0006364","l":"rRNA processing","na":1,"nb":139,"a":[["other/nucleolus.html","nucleolus"]],"b":[["ComplexPortal%3ACPX-44","LSM2-8 complex"],["ComplexPortal%3ACPX-885","MTERF4-NSUN4 mitochondrial ribosomal assembly complex"],["ComplexPortal%3ACPX-1862","PeBoW complex"],["ComplexPortal%3ACPX-2846","PeBoW complex"],["GO%3A1901259","chloroplast rRNA processing"],["GO%3A0000450","cleavage of bicistronic rRNA transcript (SSU-rRNA, LSU-rRNA)"]]},{"id":"GO:0006396","l":"RNA processing","na":1,"nb":131,"a":[["ribonucleoprotein/exosome_rnase_complex.html","exosome (RNase complex)"]],"b":[["ComplexPortal%3ACPX-603","Cytoplasmic exosome complex, DIS3 variant"],["ComplexPortal%3ACPX-600","Cytoplasmic exosome complex, DIS3L-EXOSC10 variant"],["ComplexPortal%3ACPX-601","Cytoplasmic exosome complex, Dis3l-Exosc10 variant"],["ComplexPortal%3ACPX-592","Cytoplasmic exosome complex, DIS3L variant"],["ComplexPortal%3ACPX-596","Cytoplasmic exosome complex, Dis3l variant"],["ComplexPortal%3ACPX-593","Exosome complex, DIS3 variant"]]},{"id":"GO:0006457","l":"protein folding","na":1,"nb":129,"a":[["other/chaperonin_containing_t_complex.html","chaperonin-containing T-complex"]],"b":[["ComplexPortal%3ACPX-2156","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-2772","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-6030","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-2113","GroEL-GroES complex"],["ComplexPortal%3ACPX-1671","Prefoldin co-chaperone complex"],["ComplexPortal%3ACPX-2389","Prefoldin co-chaperone complex"]]},{"id":"GO:0003697","l":"single-stranded DNA binding","na":1,"nb":119,"a":[["other/single_stranded_dna_binding_protein_complex.html","single-stranded DNA-binding protein complex"]],"b":[["ComplexPortal%3ACPX-2363","BCDX2 complex"],["ComplexPortal%3ACPX-1005","Cascade complex"],["ComplexPortal%3ACPX-2671","CMG helicase complex"],["ComplexPortal%3ACPX-297","CMG helicase complex"],["ComplexPortal%3ACPX-4526","CMG helicase complex"],["ComplexPortal%3ACPX-4541","CMG helicase complex"]]},{"id":"GO:1990234","l":"transferase complex","na":1,"nb":109,"a":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]],"b":[["ComplexPortal%3ACPX-1848","ATG12-ATG5 complex"],["ComplexPortal%3ACPX-3864","ATG12-ATG5 complex"],["ComplexPortal%3ACPX-356","ATG5-ATG12 complex"],["ComplexPortal%3ACPX-357","Atg5-Atg12 complex"],["ComplexPortal%3ACPX-6231","Coagulation factor XIIIa complex"],["ComplexPortal%3ACPX-2634","Dha Kinase"]]},{"id":"GO:0005694","l":"chromosome","na":1,"nb":101,"a":[["other/nuclear_chromosome.html","nuclear chromosome"]],"b":[["ComplexPortal%3ACPX-26662","SPO11 DNA endo-reduplication complex"],["ComplexPortal%3ACPX-26657","SPO11 meiotic recombination initiation complex"],["ComplexPortal%3ACPX-26658","SPO11 meiotic recombination initiation complex"],["ComplexPortal%3ACPX-26659","SPO11 meiotic recombination initiation complex"],["ComplexPortal%3ACPX-26664","SPO11, meiotic recombination initiation complex"],["ComplexPortal%3ACPX-3388","Synaptonemal complex"]]},{"id":"GO:0015986","l":"proton motive force-driven ATP synthesis","na":1,"nb":96,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-25764","Mitochondrial proton translocating ATP synthase complex"],["ComplexPortal%3ACPX-3281","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-6151","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-8618","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-8619","Mitochondrial proton-transporting ATP synthase complex, testis-specific variant"],["GO%3A0015986","proton motive force-driven ATP synthesis"]]},{"id":"NCBITaxon:2","l":"Bacteria","na":89,"nb":1,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2","Bacteria orthologous groups (OrthoDB)"]]},{"id":"GO:0051301","l":"cell division","na":1,"nb":86,"a":[["division_machinery/divisome_complex.html","divisome complex"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["ComplexPortal%3ACPX-5782","Tol-Pal cell envelope complex"],["GO%3A0090510","anticlinal cell division"],["GO%3A0008356","asymmetric cell division"],["GO%3A0007114","cell budding"],["GO%3A0051301","cell division"]]},{"id":"GO:0030254","l":"protein secretion by the type III secretion system","na":1,"nb":85,"a":[["secretion_system/type_iii_protein_secretion_system_complex.html","type III protein secretion system complex"]],"b":[["ComplexPortal%3ACPX-5885","Flagellar export complex"],["GO%3A0030254","protein secretion by the type III secretion system"],["NCBIfam%3ANF041307","AvrBs1/Avra family type III secretion system effector"],["NCBIfam%3ATIGR02501","EscE/YscE/SsaE family type III secretion system needle protein co-chaperone"],["NCBIfam%3ANF005535","flagellar protein export ATPase FliI"],["NCBIfam%3ANF006290","flagellar protein export ATPase FliI"]]},{"id":"GO:0006401","l":"RNA catabolic process","na":1,"nb":76,"a":[["ribonucleoprotein/exosome_rnase_complex.html","exosome (RNase complex)"]],"b":[["ComplexPortal%3ACPX-603","Cytoplasmic exosome complex, DIS3 variant"],["ComplexPortal%3ACPX-600","Cytoplasmic exosome complex, DIS3L-EXOSC10 variant"],["ComplexPortal%3ACPX-601","Cytoplasmic exosome complex, Dis3l-Exosc10 variant"],["ComplexPortal%3ACPX-592","Cytoplasmic exosome complex, DIS3L variant"],["ComplexPortal%3ACPX-596","Cytoplasmic exosome complex, Dis3l variant"],["ComplexPortal%3ACPX-2596","Cytoplasmic exosome"]]},{"id":"GO:0048193","l":"Golgi vesicle transport","na":1,"nb":70,"a":[["other/cog_complex.html","COG complex"]],"b":[["GO%3A0034498","early endosome to Golgi transport"],["GO%3A0006888","endoplasmic reticulum to Golgi vesicle-mediated transport"],["GO%3A0048193","Golgi vesicle transport"],["GO%3A0006891","intra-Golgi vesicle-mediated transport"],["GO%3A0034499","late endosome to Golgi transport"],["GO%3A0006892","post-Golgi vesicle-mediated transport"]]},{"id":"CHEBI:15422","l":"ATP","na":1,"nb":68,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15422","requires ATP"],["ARO%3A3002628","aad(6)"],["ARO%3A3002601","aadA"],["ARO%3A3004692","aadA10"],["ARO%3A3002611","aadA11"],["ARO%3A3002612","aadA12"]]},{"id":"NCBITaxon:246196","l":"Mycolicibacterium smegmatis MC2 155","na":1,"nb":66,"a":[["secretion_system/esx_3_type_vii_secretion_system_membrane_complex.html","ESX-3 type VII secretion system membrane complex"]],"b":[["Pfam%3APF12806","Acetyl-CoA dehydrogenase C-terminal like"],["Pfam%3APF12897","Aspartate amino-transferase"],["Pfam%3APF05088","Bacterial NAD-glutamate dehydrogenase, catalytic domain"],["Pfam%3APF26519","Biotin synthase auxiliary protein family"],["Pfam%3APF21095","CarD, C-terminal domain"],["Pfam%3APF24607","Arabinofuranosyltransferase D, third carbohydrate binding module"]]},{"id":"GO:0006935","l":"chemotaxis","na":1,"nb":64,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009454","aerotaxis"]]},{"id":"GO:0031012","l":"extracellular matrix","na":1,"nb":64,"a":[["other/holdfast.html","holdfast"]],"b":[["ComplexPortal%3ACPX-461","155 kDa platelet multimerin complex"],["ComplexPortal%3ACPX-960","Collagen type II trimer"],["ComplexPortal%3ACPX-1749","Collagen type X trimer"],["ComplexPortal%3ACPX-2971","Collagen type X trimer"],["ComplexPortal%3ACPX-1750","Collagen type XI trimer variant 1"],["ComplexPortal%3ACPX-2975","Collagen type XI trimer variant 1"]]},{"id":"GO:1990204","l":"oxidoreductase complex","na":1,"nb":63,"a":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"]],"b":[["ComplexPortal%3ACPX-1020","BLI-3/DOXA-1/TSP-15 dual oxidase complex"],["ComplexPortal%3ACPX-6573","L-lactate dehydrogenase A complex"],["ComplexPortal%3ACPX-6599","L-lactate dehydrogenase B complex"],["ComplexPortal%3ACPX-6602","L-lactate dehydrogenase C complex"],["ComplexPortal%3ACPX-6598","L-lactate dehydrogenase complex, A1B3 variant"],["ComplexPortal%3ACPX-6594","L-lactate dehydrogenase complex, A2B2 variant"]]},{"id":"GO:0015629","l":"actin cytoskeleton","na":1,"nb":61,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"]],"b":[["ComplexPortal%3ACPX-2586","Actin-related protein 2/3 complex, ARPC1A-ACTR3-ARPC5 variant"],["ComplexPortal%3ACPX-2592","Actin-related protein 2/3 complex, ARPC1A-ACTR3-ARPC5L variant"],["ComplexPortal%3ACPX-2490","Actin-related protein 2/3 complex, ARPC1A-ACTR3B-ARPC5 variant"],["ComplexPortal%3ACPX-2579","Actin-related protein 2/3 complex, ARPC1B-ACTR3-ARPC5 variant"],["ComplexPortal%3ACPX-2663","Actin-related protein 2/3 complex, ARPC1B-ACTR3-ARPC5L variant"],["ComplexPortal%3ACPX-2583","Actin-related protein 2/3 complex, ARPC1B-ACTR3B-ARPC5 variant"]]},{"id":"InterPro:IPR001460","l":"Penicillin-binding protein, transpeptidase","na":1,"nb":61,"a":[["envelope/peptidoglycan_based_cell_wall.html","peptidoglycan-based cell wall"]],"b":[["GO%3A0009274","peptidoglycan-based cell wall"],["GO%3A0008800","beta-lactamase activity"],["GO%3A0008658","penicillin binding"],["GO%3A0008955","peptidoglycan glycosyltransferase activity"],["GO%3A0071972","peptidoglycan L,D-transpeptidase activity"],["GO%3A0009002","serine-type D-Ala-D-Ala carboxypeptidase activity"]]},{"id":"NCBITaxon:1111708","l":"Synechocystis sp. PCC 6803 substr. Kazusa","na":1,"nb":61,"a":[["energy_complex/phycobilisome.html","phycobilisome"]],"b":[["Pfam%3APF07698","7TM receptor with intracellular HD hydrolase"],["Pfam%3APF07697","7TM-HD extracellular"],["Pfam%3APF11266","Long-chain fatty aldehyde decarbonylase"],["Pfam%3APF21571","Arginine dihydrolase ArgZ-like, C-terminal, first region"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF17886","HSP20-like domain found in ArsA"]]},{"id":"GO:0016197","l":"endosomal transport","na":1,"nb":60,"a":[["membrane_organelle/endosome.html","endosome"]],"b":[["ComplexPortal%3ACPX-479","Bloc-1 complex"],["ComplexPortal%3ACPX-11549","Huntingtin-HAP40 endosomal complex"],["ComplexPortal%3ACPX-26674","Huntingtin-HAP40 endosomal complex"],["ComplexPortal%3ACPX-1059","Sorf-1-Sorf-2 complex"],["ComplexPortal%3ACPX-2562","WASH complex"],["ComplexPortal%3ACPX-1173","WASH complex, variant WASH2P/WASHC2A"]]},{"id":"GO:1990904","l":"ribonucleoprotein complex","na":1,"nb":58,"a":[["ribonucleoprotein/signal_recognition_particle.html","signal recognition particle"]],"b":[["ComplexPortal%3ACPX-10181","Vault ribonucleoprotein complex"],["GO%3A0070993","cytosolic translation preinitiation complex"],["GO%3A0071204","histone pre-mRNA 3'end processing complex"],["GO%3A0033620","Mei2 nuclear dot complex"],["GO%3A0180053","mitochondrial translation preinitiation complex"],["GO%3A0043614","multi-eIF complex"]]},{"id":"GO:0008137","l":"NADH dehydrogenase (ubiquinone) activity","na":1,"nb":53,"a":[["energy_complex/respiratory_chain_complex_i.html","respiratory chain complex I"]],"b":[["EC%3A7.1.1.2","NADH:ubiquinone reductase (H(+)-translocating)"],["RHEA%3A29091","a ubiquinone + NADH + 5 H(+)(in) = a ubiquinol + NAD(+) + 4 H(+)(out)"],["ComplexPortal%3ACPX-266","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-577","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-8628","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-8638","Mitochondrial respiratory chain complex I, testis-specific variant"]]},{"id":"GO:0007005","l":"mitochondrion organization","na":1,"nb":50,"a":[["other/mitochondrial_prohibitin_complex.html","mitochondrial prohibitin complex"]],"b":[["ComplexPortal%3ACPX-3196","ERMES complex"],["ComplexPortal%3ACPX-1703","Prohibitin complex"],["ComplexPortal%3ACPX-4114","Prohibitin complex"],["ComplexPortal%3ACPX-5741","Prohibitin complex"],["ComplexPortal%3ACPX-5743","Prohibitin complex"],["GO%3A0008637","apoptotic mitochondrial changes"]]},{"id":"NCBITaxon:2759","l":"Eukaryota","na":49,"nb":1,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"],["cytoskeleton/conoid.html","conoid"],["cytoskeleton/cytoophidium.html","cytoophidium"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2759","Eukaryota orthologous groups (OrthoDB)"]]},{"id":"GO:0006897","l":"endocytosis","na":1,"nb":44,"a":[["membrane_organelle/endocytic_vesicle.html","endocytic vesicle"]],"b":[["ComplexPortal%3ACPX-5322","Endosomal SNARE complex TLG2-VTI1-TLG1-SNC1"],["ComplexPortal%3ACPX-5321","Endosomal SNARE complex TLG2-VTI1-TLG1-SNC2"],["ComplexPortal%3ACPX-4024","MTM6-MTM9 myotubularin lipid phosphatase complex"],["ComplexPortal%3ACPX-1500","Myosin class I complex, MYO3 variant"],["ComplexPortal%3ACPX-1470","Myosin class I complex, MYO5 variant"],["ComplexPortal%3ACPX-426","PAN1 actin cytoskeleton-regulatory complex"]]},{"id":"GO:0042254","l":"ribosome biogenesis","na":1,"nb":44,"a":[["other/nucleolus.html","nucleolus"]],"b":[["ComplexPortal%3ACPX-8940","Ribosome biogenesis complex"],["GO%3A0042254","ribosome biogenesis"],["NCBIfam%3ANF012679","50S ribosomal protein L10"],["NCBIfam%3ANF016308","Gar1/Naf1 RNA binding region"],["NCBIfam%3ANF016057","nucleolar RNA-binding Nop10p family protein"],["NCBIfam%3ATIGR01575","ribosomal protein S18-alanine N-acetyltransferase"]]},{"id":"NCBITaxon:243277","l":"Vibrio cholerae O1 biovar El Tor str. N16961","na":1,"nb":44,"a":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"]],"b":[["IDPO%3A0000011","disorder to order"],["IDPO%3A0000014","order to disorder"],["Pfam%3APF16671","Actin cross-linking domain"],["Pfam%3APF00842","Alanine racemase, C-terminal domain"],["Pfam%3APF06228","Haem utilisation ChuX/HutX"],["Pfam%3APF19425","Csd3 second domain"]]},{"id":"GO:0045271","l":"respiratory chain complex I","na":1,"nb":43,"a":[["energy_complex/respiratory_chain_complex_i.html","respiratory chain complex I"]],"b":[["ComplexPortal%3ACPX-266","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-577","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-8628","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-8638","Mitochondrial respiratory chain complex I, testis-specific variant"],["ComplexPortal%3ACPX-243","Respiratory chain complex I"],["GO%3A0045271","respiratory chain complex I"]]},{"id":"GO:0004129","l":"cytochrome-c oxidase activity","na":1,"nb":41,"a":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]],"b":[["EC%3A7.1.1.9","cytochrome-c oxidase"],["METPO%3A1007086","oxidase negative"],["METPO%3A1007085","oxidase positive"],["RHEA%3A11436","4 Fe(II)-[cytochrome c] + O2 + 8 H(+)(in) = 4 Fe(III)-[cytochrome c] + 2 H2O + 4 H(+)(out)"],["ComplexPortal%3ACPX-1721","Mitochondrial respiratory chain complex IV, COX5A variant"],["ComplexPortal%3ACPX-1722","Mitochondrial respiratory chain complex IV, COX5B variant"]]},{"id":"GO:0000045","l":"autophagosome assembly","na":1,"nb":40,"a":[["other/phagophore_assembly_site.html","phagophore assembly site"]],"b":[["ComplexPortal%3ACPX-3863","atg-5-atg-12-atg-16.1-atg-16.2 complex"],["ComplexPortal%3ACPX-3865","atg-5-atg-12-atg-16.1 complex"],["ComplexPortal%3ACPX-3866","atg-5-atg-12-atg-16.2 complex"],["ComplexPortal%3ACPX-2745","ATG1 protein kinase complex"],["ComplexPortal%3ACPX-1676","ATG1/ULK1 protein kinase complex"],["ComplexPortal%3ACPX-1849","ATG12-ATG5-ATG16 complex"]]},{"id":"GO:0019866","l":"organelle inner membrane","na":1,"nb":40,"a":[["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"]],"b":[["GO%3A0005743","mitochondrial inner membrane"],["GO%3A0005637","nuclear inner membrane"],["GO%3A0019866","organelle inner membrane"],["GO%3A0009528","plastid inner membrane"],["InterPro%3AIPR002361","Antenna complex, alpha subunit conserved site"],["InterPro%3AIPR010974","Phosphotransferase system, N-acetylglucosamine-specific IIBC component"]]},{"id":"GO:0036503","l":"ERAD pathway","na":1,"nb":39,"a":[["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"]],"b":[["ComplexPortal%3ACPX-6597","bZIP transcription factor complex, ATF6-XBP1"],["ComplexPortal%3ACPX-2946","CDC48-NPL4-UFD1 AAA ATPase complex"],["ComplexPortal%3ACPX-1323","CDC48-RAD23-UFD2 complex"],["ComplexPortal%3ACPX-2948","CUE1-UBC7 ubiquitin-conjugating enzyme complex"],["ComplexPortal%3ACPX-3074","Doa10 E3 ubiquitin ligase complex"],["ComplexPortal%3ACPX-7121","ERLIN1-ERLIN2 complex"]]},{"id":"NCBITaxon:2157","l":"Archaea","na":39,"nb":1,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2157","Archaea orthologous groups (OrthoDB)"]]},{"id":"CHEBI:17855","l":"triglyceride","na":1,"nb":34,"a":[["inclusion/lipid_droplet.html","lipid droplet"]],"b":[["EC%3A2.3.1.158","phospholipid:diacylglycerol acyltransferase"],["EC%3A2.3.1.77","triacylglycerol--sterol O-acyltransferase"],["EC%3A3.1.1.3","triacylglycerol lipase"],["EC%3A3.1.1.34","lipoprotein lipase"],["EC%3A3.1.1.79","hormone-sensitive lipase"],["RHEA%3A77987","9-hydroxy-octadecanoate + a triacylglycerol = 9-(acyloxy)-octadecanoate + a 1,3-diacylglycerol"]]},{"id":"GO:0030312","l":"external encapsulating structure","na":1,"nb":34,"a":[["envelope/glycocalyx.html","glycocalyx"]],"b":[["GO%3A0009279","cell outer membrane"],["GO%3A0005618","cell wall"],["GO%3A0140143","collagenous component of basement membrane"],["GO%3A0140152","collagenous component of interstitial matrix"],["GO%3A0042600","egg chorion"],["GO%3A0030312","external encapsulating structure"]]},{"id":"GO:0008608","l":"attachment of spindle microtubules to kinetochore","na":1,"nb":33,"a":[["other/dash_complex.html","DASH complex"]],"b":[["ComplexPortal%3ACPX-1156","Central kinetochore CTF19 complex"],["ComplexPortal%3ACPX-1187","COMA complex"],["ComplexPortal%3ACPX-1186","Kinetochore MIS12 complex"],["ComplexPortal%3ACPX-5643","Kinetochore MIS12 complex"],["ComplexPortal%3ACPX-5701","Kinetochore MIS12 complex"],["ComplexPortal%3ACPX-807","Kinetochore Mis12 complex"]]},{"id":"GO:0032040","l":"small-subunit processome","na":1,"nb":33,"a":[["other/nucleolus.html","nucleolus"]],"b":[["ComplexPortal%3ACPX-1604","Small ribosomal subunit processome"],["ComplexPortal%3ACPX-2511","Small ribosomal subunit processome"],["GO%3A0032040","small-subunit processome"],["NCBIfam%3ANF016770","Fcf1"],["InterPro%3AIPR013934","U3 small nucleolar RNA-associated protein 13, C-terminal"],["InterPro%3AIPR007319","WDR36/Utp21, C-terminal domain"]]},{"id":"GO:0006635","l":"fatty acid beta-oxidation","na":1,"nb":32,"a":[["membrane_organelle/peroxisomal_matrix.html","peroxisomal matrix"]],"b":[["ComplexPortal%3ACPX-3964","fadBA fatty acid oxidation complex, aerobic conditions"],["ComplexPortal%3ACPX-3966","fadJI fatty acid oxidation complex, anaerobic conditions"],["ComplexPortal%3ACPX-6245","Mitochondrial trifunctional enzyme complex"],["GO%3A0006635","fatty acid beta-oxidation"],["GO%3A0033539","fatty acid beta-oxidation using acyl-CoA dehydrogenase"],["GO%3A0033540","fatty acid beta-oxidation using acyl-CoA oxidase"]]},{"id":"GO:0015630","l":"microtubule cytoskeleton","na":1,"nb":32,"a":[["cytoskeleton/microtubule.html","microtubule"]],"b":[["ComplexPortal%3ACPX-116","Chromosomal passenger complex, AURKB variant"],["ComplexPortal%3ACPX-20753","Chromosomal passenger complex, AURKC variant"],["ComplexPortal%3ACPX-119","Chromosomal passenger complex"],["ComplexPortal%3ACPX-3461","Chromosomal passenger complex"],["ComplexPortal%3ACPX-6365","Katanin complex, KATNA1-KATNB1 variant"],["ComplexPortal%3ACPX-6366","Katanin complex, KATNA1-KATNBL1 variant"]]},{"id":"GO:0050524","l":"coenzyme-B sulfoethylthiotransferase activity","na":1,"nb":32,"a":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]],"b":[["EC%3A2.8.4.1","coenzyme-B sulfoethylthiotransferase"],["RHEA%3A12532","coenzyme B + methyl-coenzyme M = methane + coenzyme M-coenzyme B heterodisulfide"],["GO%3A0050524","coenzyme-B sulfoethylthiotransferase activity"],["NCBIfam%3ATIGR03256","coenzyme-B sulfoethylthiotransferase subunit alpha"],["NCBIfam%3ATIGR03257","coenzyme-B sulfoethylthiotransferase subunit beta"],["NCBIfam%3ANF014313","coenzyme-B sulfoethylthiotransferase subunit gamma"]]},{"id":"UniProt:P07363","l":"","na":1,"nb":32,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["ComplexPortal%3ACPX-1077","Chemotaxis phosphorelay complex CheA-CheY"],["GO%3A0098561","methyl accepting chemotaxis protein complex"],["GO%3A0004673","protein histidine kinase activity"],["GO%3A0009454","aerotaxis"],["GO%3A0071977","bacterial-type flagellum-dependent swimming motility"],["GO%3A0051649","establishment of localization in cell"]]},{"id":"GO:0009360","l":"DNA polymerase III complex","na":1,"nb":31,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"]],"b":[["ComplexPortal%3ACPX-1924","DNA polymerase III holoenzyme complex"],["GO%3A0009360","DNA polymerase III complex"],["NCBIfam%3ANF014787","DNA polymerase III beta subunit, C-terminal domain"],["NCBIfam%3ANF012915","DNA polymerase III beta subunit, N-terminal domain"],["NCBIfam%3ANF017911","DNA polymerase III, delta subunit"],["NCBIfam%3ATIGR01405","DNA polymerase III subunit alpha"]]},{"id":"GO:0004298","l":"threonine-type endopeptidase activity","na":1,"nb":30,"a":[["other/proteasome_core_complex.html","proteasome core complex"]],"b":[["ComplexPortal%3ACPX-9082","19S-20S-PA28-alphabeta hybrid proteasome complex"],["ComplexPortal%3ACPX-9085","19S-20S-PA28-gamma hybrid proteasome complex"],["ComplexPortal%3ACPX-9021","20S spermatoproteasome complex"],["ComplexPortal%3ACPX-9004","20S thymoproteasome complex"],["ComplexPortal%3ACPX-2262","26S proteasome complex"],["ComplexPortal%3ACPX-5993","26S proteasome complex"]]},{"id":"GO:0006887","l":"exocytosis","na":1,"nb":30,"a":[["other/exocyst.html","exocyst"]],"b":[["GO%3A0160192","autophagosome-dependent secretion"],["GO%3A0045054","constitutive secretory pathway"],["GO%3A0098967","exocytic insertion of neurotransmitter receptor to postsynaptic membrane"],["GO%3A0006887","exocytosis"],["GO%3A1990182","exosomal secretion"],["GO%3A0045055","regulated exocytosis"]]},{"id":"GO:0090148","l":"membrane fission","na":1,"nb":30,"a":[["other/escrt_iii_complex.html","ESCRT III complex"]],"b":[["ComplexPortal%3ACPX-2452","ESCRT-0 complex"],["ComplexPortal%3ACPX-2825","ESCRT-0 complex, STAM variant"],["ComplexPortal%3ACPX-7143","ESCRT-0 complex, STAM2 variant"],["ComplexPortal%3ACPX-7162","ESCRT-I complex, VPS37A-MVB12A variant"],["ComplexPortal%3ACPX-7146","ESCRT-I complex, VPS37A-MVB12B variant"],["ComplexPortal%3ACPX-7181","ESCRT-I complex, VPS37A-UBAP1 variant"]]},{"id":"GO:0099513","l":"polymeric cytoskeletal fiber","na":1,"nb":29,"a":[["cytoskeleton/microtubule.html","microtubule"]],"b":[["GO%3A0005884","actin filament"],["GO%3A0005882","intermediate filament"],["GO%3A0005874","microtubule"],["GO%3A0001520","outer dense fiber"],["GO%3A0099513","polymeric cytoskeletal fiber"],["PANTHER%3APTHR12607","ADENOMATOUS POLYPOSIS COLI PROTEIN FAMILY"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":29,"a":[["spore/exosporium.html","exosporium"]],"b":[["Pfam%3APF09156","Anthrax toxin lethal factor, middle domain"],["Pfam%3APF08401","N-terminal domain of anti-restriction factor ArdC"],["Pfam%3APF07737","Anthrax toxin lethal factor, N- and C-terminal domain"],["Pfam%3APF27053","Bacillus anthracis plasmid pXO2 protein 26"],["Pfam%3APF13205","Bacterial Ig-like domain"],["Pfam%3APF17475","Clostridial binary toxin B/anthrax toxin PA domain 2"]]},{"id":"GO:1905370","l":"serine-type endopeptidase complex","na":1,"nb":28,"a":[["other/mitochondrial_inner_membrane_peptidase_complex.html","mitochondrial inner membrane peptidase complex"]],"b":[["ComplexPortal%3ACPX-6224","Active Protein C complex"],["ComplexPortal%3ACPX-6222","alpha-thrombin complex"],["ComplexPortal%3ACPX-6181","CL-LK-MASP1 lectin-protease complex"],["ComplexPortal%3ACPX-6240","CL-LK-MASP2 lectin-protease complex"],["ComplexPortal%3ACPX-6221","Coagulation factor Va-Xa complex"],["ComplexPortal%3ACPX-279","Coagulation factor VIIa - tissue factor complex"]]},{"id":"Pfam:PF00015","l":"Methyl-accepting chemotaxis protein (MCP) signalling domain","na":1,"nb":28,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["GO%3A0009454","aerotaxis"],["CDD%3Acd01068","globin_sensor"],["CDD%3Acd19411","MCP2201-like_sensor"],["CDD%3Acd11386","MCP_signal"],["InterPro%3AIPR007891","CHASE3"],["InterPro%3AIPR024478","Chemotaxis methyl-accepting receptor HlyB-like, 4HB MCP domain"]]},{"id":"GO:0015627","l":"type II protein secretion system complex","na":1,"nb":26,"a":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"]],"b":[["GO%3A0015627","type II protein secretion system complex"],["NCBIfam%3ATIGR02533","type II secretion system ATPase GspE"],["NCBIfam%3ATIGR02120","type II secretion system inner membrane protein GspF"],["NCBIfam%3ATIGR01710","type II secretion system major pseudopilin GspG"],["NCBIfam%3ATIGR01708","type II secretion system minor pseudopilin GspH"],["NCBIfam%3ATIGR01707","type II secretion system minor pseudopilin GspI"]]},{"id":"UniProt:P0AES6","l":"","na":1,"nb":26,"a":[["other/dna_gyrase_complex.html","DNA gyrase complex"]],"b":[["ComplexPortal%3ACPX-2177","GyrA-GyrB DNA Gyrase complex"],["GO%3A0009330","DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) complex"],["GO%3A0034335","DNA negative supercoiling activity"],["GO%3A0003918","DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) activity"],["NCBIfam%3ANF004189","DNA gyrase subunit B"],["NCBIfam%3ANF011501","DNA gyrase subunit B"]]},{"id":"GO:0005885","l":"Arp2/3 protein complex","na":1,"nb":25,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"]],"b":[["ComplexPortal%3ACPX-2586","Actin-related protein 2/3 complex, ARPC1A-ACTR3-ARPC5 variant"],["ComplexPortal%3ACPX-2592","Actin-related protein 2/3 complex, ARPC1A-ACTR3-ARPC5L variant"],["ComplexPortal%3ACPX-2490","Actin-related protein 2/3 complex, ARPC1A-ACTR3B-ARPC5 variant"],["ComplexPortal%3ACPX-2579","Actin-related protein 2/3 complex, ARPC1B-ACTR3-ARPC5 variant"],["ComplexPortal%3ACPX-2663","Actin-related protein 2/3 complex, ARPC1B-ACTR3-ARPC5L variant"],["ComplexPortal%3ACPX-2583","Actin-related protein 2/3 complex, ARPC1B-ACTR3B-ARPC5 variant"]]},{"id":"GO:0016163","l":"nitrogenase activity","na":1,"nb":25,"a":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"]],"b":[["EC%3A1.18.6.1","nitrogenase"],["EC%3A1.18.6.2","vanadium-dependent nitrogenase"],["RHEA%3A21448","N2 + 8 reduced [2Fe-2S]-[ferredoxin] + 16 ATP + 16 H2O = H2 + 8 oxidized [2Fe-2S]-[ferredoxin] + 2 NH4(+) + 16 ADP + 16 phosphate + 6 H(+)"],["GO%3A0016163","nitrogenase activity"],["NCBIfam%3ATIGR02931","Fe-only nitrogenase subunit beta"],["NCBIfam%3ATIGR02929","Fe-only nitrogenase subunit delta"]]},{"id":"GO:1902555","l":"endoribonuclease complex","na":1,"nb":25,"a":[["ribonucleoprotein/ribonuclease_mrp_complex.html","ribonuclease MRP complex"]],"b":[["ComplexPortal%3ACPX-4629","C3PO endoribonuclease complex"],["ComplexPortal%3ACPX-890","C3PO endoribonuclease complex"],["ComplexPortal%3ACPX-5785","MERS-CoV NSP15 complex"],["ComplexPortal%3ACPX-2240","Mitochondrial RNase Z complex"],["ComplexPortal%3ACPX-8565","PUCH ribonuclease complex, slfl-3 variant"],["ComplexPortal%3ACPX-8569","PUCH ribonuclease complex, slfl-4 variant"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":1,"nb":25,"a":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"]],"b":[["Pfam%3APF13372","Alginate export"],["Pfam%3APF25965","ALG44 beta-barrel domain"],["Pfam%3APF25964","ALG44, barrel-sandwich hybrid domain"],["Pfam%3APF16844","Dinitrogenase iron-molybdenum cofactor, N-terminal"],["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"]]},{"id":"GO:0006893","l":"Golgi to plasma membrane transport","na":1,"nb":24,"a":[["other/exomer_complex.html","exomer complex"]],"b":[["ComplexPortal%3ACPX-1719","Exomer complex"],["ComplexPortal%3ACPX-26504","Exomer complex"],["ComplexPortal%3ACPX-1365","Vesicular SNARE complex SSO1-SEC9-SNC1"],["ComplexPortal%3ACPX-5463","Vesicular SNARE complex SSO1-SEC9-SNC2"],["ComplexPortal%3ACPX-1369","Vesicular SNARE complex SSO2-SEC9-SNC1"],["ComplexPortal%3ACPX-5465","Vesicular SNARE complex SSO2-SEC9-SNC2"]]},{"id":"GO:0031968","l":"organelle outer membrane","na":1,"nb":24,"a":[["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"]],"b":[["GO%3A0009535","chloroplast thylakoid membrane"],["GO%3A0005741","mitochondrial outer membrane"],["GO%3A0005640","nuclear outer membrane"],["GO%3A0031968","organelle outer membrane"],["GO%3A0009527","plastid outer membrane"],["PANTHER%3APTHR37278","AUTOPHAGY-RELATED PROTEIN 33-RELATED"]]},{"id":"UniProt:P0AES4","l":"","na":1,"nb":24,"a":[["other/dna_gyrase_complex.html","DNA gyrase complex"]],"b":[["ComplexPortal%3ACPX-5906","CcdB-poisoned gyrase complex"],["ComplexPortal%3ACPX-2177","GyrA-GyrB DNA Gyrase complex"],["GO%3A0009330","DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) complex"],["GO%3A0008094","ATP-dependent activity, acting on DNA"],["GO%3A0034335","DNA negative supercoiling activity"],["GO%3A0003918","DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) activity"]]},{"id":"GO:0097729","l":"9+2 motile cilium","na":1,"nb":23,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["ComplexPortal%3ACPX-8161","Radial spoke complex, ciliiar variant"],["ComplexPortal%3ACPX-8163","Radial spoke complex, ciliiar variant"],["ComplexPortal%3ACPX-8162","Radial spoke complex, flagellar variant"],["ComplexPortal%3ACPX-8164","Radial spoke complex, flagellar variant"],["GO%3A0097729","9+2 motile cilium"],["GO%3A0097554","left anterior flagellum"]]},{"id":"GO:0000775","l":"chromosome, centromeric region","na":1,"nb":22,"a":[["other/cbf3_complex.html","CBF3 complex"]],"b":[["ComplexPortal%3ACPX-26413","CENP-A recruiting complex"],["ComplexPortal%3ACPX-3272","CENP-A recruiting complex"],["ComplexPortal%3ACPX-3273","CENP-A recruiting complex"],["GO%3A0000775","chromosome, centromeric region"],["GO%3A0000779","condensed chromosome, centromeric region"],["InterPro%3AIPR009361","Centromere/kinetochore protein zw10, N-terminal"]]},{"id":"GO:0006891","l":"intra-Golgi vesicle-mediated transport","na":1,"nb":22,"a":[["other/trappii_protein_complex.html","TRAPPII protein complex"]],"b":[["ComplexPortal%3ACPX-1939","TRAPP II complex"],["GO%3A0045057","cisternal progression"],["GO%3A0048219","inter-Golgi cisterna vesicle-mediated transport"],["GO%3A0006891","intra-Golgi vesicle-mediated transport"],["GO%3A0000301","retrograde transport, vesicle recycling within Golgi"],["InterPro%3AIPR012955","CASP, C-terminal"]]},{"id":"GO:0008121","l":"quinol-cytochrome-c reductase activity","na":1,"nb":22,"a":[["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"]],"b":[["EC%3A7.1.1.8","quinol--cytochrome-c reductase"],["RHEA%3A11484","a quinol + 2 Fe(III)-[cytochrome c](out) = a quinone + 2 Fe(II)-[cytochrome c](out) + 2 H(+)(out)"],["ComplexPortal%3ACPX-560","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-563","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-567","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-8730","Mitochondrial respiratory chain complex III"]]},{"id":"GO:0019953","l":"sexual reproduction","na":1,"nb":22,"a":[["membrane_organelle/micronucleus.html","micronucleus"]],"b":[["GO%3A0000747","conjugation with cellular fusion"],["GO%3A0000748","conjugation with mutual genetic exchange"],["GO%3A0019953","sexual reproduction"],["InterPro%3AIPR007689","A-alpha-Y mating type-dependent binding domain"],["PANTHER%3APTHR22655","ATP-DEPENDENT RNA HELICASE TDRD12-RELATED"],["PANTHER%3APTHR47193","CATION CHANNEL SPERM-ASSOCIATED PROTEIN 1"]]},{"id":"GO:0030286","l":"dynein complex","na":1,"nb":22,"a":[["cytoskeleton/axonemal_dynein_complex.html","axonemal dynein complex"]],"b":[["ComplexPortal%3ACPX-5699","Cytoplasmic dynein complex, variant 1"],["ComplexPortal%3ACPX-26357","Dynein-2 complex, light-chain variant 1"],["ComplexPortal%3ACPX-26360","Dynein-2 complex, light-chain variant 2"],["ComplexPortal%3ACPX-26361","Dynein-2 complex, light-chain variant 3"],["ComplexPortal%3ACPX-26362","Dynein-2 complex, light-chain variant 4"],["ComplexPortal%3ACPX-26363","Dynein-2 complex, light-chain variant 5"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":1,"nb":21,"a":[["membrane_organelle/trichocyst.html","trichocyst"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29108","requires calcium(2+)"],["EC%3A1.13.12.24","calcium-regulated photoprotein"],["EC%3A7.2.2.10","P-type Ca(2+) transporter"],["RHEA%3A72631","3 Li(+)(out) + Ca(2+)(in) = 3 Li(+)(in) + Ca(2+)(out)"],["RHEA%3A55884","[aequorin] + 3 Ca(2+) = [aequorin]--dioxetanone"],["RHEA%3A55888","[aequorin]--dioxetanone = excited state-[aequorin] + CO2"]]},{"id":"GO:0016682","l":"oxidoreductase activity, acting on diphenols and related substances as donors, oxygen as acceptor","na":1,"nb":21,"a":[["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]],"b":[["ComplexPortal%3ACPX-268","Cytochrome bd-I ubiquinol oxidase complex"],["ComplexPortal%3ACPX-269","Cytochrome bd-II ubiquinol oxidase complex"],["GO%3A0047561","3-hydroxyanthranilate oxidase activity"],["GO%3A0009916","alternative oxidase activity"],["GO%3A0004097","catechol oxidase activity"],["GO%3A0052716","hydroquinone:oxygen oxidoreductase activity"]]},{"id":"GO:0042729","l":"DASH complex","na":1,"nb":21,"a":[["other/dash_complex.html","DASH complex"]],"b":[["ComplexPortal%3ACPX-10081","DASH complex"],["ComplexPortal%3ACPX-1041","DASH complex"],["GO%3A0042729","DASH complex"],["PANTHER%3APTHR28200","DASH COMPLEX SUBUNIT ASK1"],["PANTHER%3APTHR28025","DASH COMPLEX SUBUNIT DAD1"],["PANTHER%3APTHR28036","DASH COMPLEX SUBUNIT DAD2"]]},{"id":"UniProt:P06710","l":"","na":1,"nb":21,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"]],"b":[["ComplexPortal%3ACPX-1926","DNA polymerase III clamp loader complex"],["GO%3A0043846","DNA polymerase III, clamp loader complex"],["GO%3A0009360","DNA polymerase III complex"],["GO%3A0044776","DNA polymerase III, core complex"],["GO%3A0003689","DNA clamp loader activity"],["GO%3A0030337","DNA polymerase processivity factor activity"]]},{"id":"GO:0008177","l":"succinate dehydrogenase (quinone) activity","na":1,"nb":20,"a":[["energy_complex/respiratory_chain_complex_ii_succinate_dehydrogenase.html","respiratory chain complex II (succinate dehydrogenase)"]],"b":[["EC%3A1.3.5.1","succinate dehydrogenase"],["RHEA%3A27834","a menaquinone + succinate = a menaquinol + fumarate"],["RHEA%3A40523","a quinone + succinate = fumarate + a quinol"],["RHEA%3A75711","a rhodoquinone + succinate = a rhodoquinol + fumarate"],["RHEA%3A13713","a ubiquinone + succinate = a ubiquinol + fumarate"],["ComplexPortal%3ACPX-561","Mitochondrial respiratory chain complex II"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":1,"nb":20,"a":[["envelope/s_layer.html","S-layer"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF27529","AMPT"],["Pfam%3APF24856","L-arabinose isomerase central domain"],["Pfam%3APF02610","L-arabinose isomerase N-terminal domain"],["Pfam%3APF11762","L-arabinose isomerase C-terminal domain"],["Pfam%3APF17727","CtsR C-terminal dimerization domain"]]},{"id":"GO:0000178","l":"exosome (RNase complex)","na":1,"nb":19,"a":[["ribonucleoprotein/exosome_rnase_complex.html","exosome (RNase complex)"]],"b":[["ComplexPortal%3ACPX-603","Cytoplasmic exosome complex, DIS3 variant"],["ComplexPortal%3ACPX-2596","Cytoplasmic exosome"],["ComplexPortal%3ACPX-593","Exosome complex, DIS3 variant"],["ComplexPortal%3ACPX-598","Exosome complex, Dis3 variant"],["ComplexPortal%3ACPX-2595","Nuclear exosome"],["ComplexPortal%3ACPX-599","Nuclear/nucleolar exosome complex, DIS3-RRP6 variant"]]},{"id":"GO:0030677","l":"ribonuclease P complex","na":1,"nb":19,"a":[["ribonucleoprotein/dimeric_ribonuclease_p_complex.html","dimeric ribonuclease P complex"]],"b":[["GO%3A0030680","dimeric ribonuclease P complex"],["GO%3A0030678","mitochondrial ribonuclease P complex"],["GO%3A0030681","multimeric ribonuclease P complex"],["GO%3A0030677","ribonuclease P complex"],["NCBIfam%3ANF046110","ribonuclease P protein component 1"],["NCBIfam%3ANF046108","ribonuclease P protein component 3"]]},{"id":"GO:0044232","l":"organelle membrane contact site","na":1,"nb":19,"a":[["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"]],"b":[["GO%3A0140284","endoplasmic reticulum-endosome membrane contact site"],["GO%3A0140268","endoplasmic reticulum-plasma membrane contact site"],["GO%3A0160258","endoplasmic reticulum-trans-Golgi network membrane contact site"],["GO%3A0098853","endoplasmic reticulum-vacuole membrane contact site"],["GO%3A0044233","mitochondria-associated endoplasmic reticulum membrane contact site"],["GO%3A0044284","mitochondrial crista junction"]]},{"id":"GO:0045277","l":"respiratory chain complex IV","na":1,"nb":19,"a":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]],"b":[["ComplexPortal%3ACPX-1721","Mitochondrial respiratory chain complex IV, COX5A variant"],["ComplexPortal%3ACPX-1722","Mitochondrial respiratory chain complex IV, COX5B variant"],["ComplexPortal%3ACPX-6123","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-8620","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-9641","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-8621","Mitochondrial respiratory chain complex IV, testis-specific variant"]]},{"id":"GO:0070069","l":"cytochrome complex","na":1,"nb":19,"a":[["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]],"b":[["ComplexPortal%3ACPX-268","Cytochrome bd-I ubiquinol oxidase complex"],["ComplexPortal%3ACPX-269","Cytochrome bd-II ubiquinol oxidase complex"],["GO%3A0009512","cytochrome b6f complex"],["GO%3A0070069","cytochrome complex"],["GO%3A0009319","cytochrome o ubiquinol oxidase complex"],["GO%3A0045275","respiratory chain complex III"]]},{"id":"GO:0099512","l":"supramolecular fiber","na":1,"nb":19,"a":[["cytoskeleton/cytoophidium.html","cytoophidium"]],"b":[["GO%3A0098647","collagen beaded filament"],["GO%3A0043292","contractile muscle fiber"],["GO%3A0097268","cytoophidium"],["GO%3A0071953","elastic fiber"],["GO%3A0061800","fibronectin fibril"],["GO%3A0061836","intranuclear rod"]]},{"id":"InterPro:IPR006317","l":"Ubiquinol-cytochrome c reductase, iron-sulphur subunit","na":1,"nb":19,"a":[["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"]],"b":[["GO%3A0008121","quinol-cytochrome-c reductase activity"],["NCBIfam%3ATIGR01416","ubiquinol-cytochrome c reductase iron-sulfur subunit"],["CDD%3Acd03470","Rieske_cytochrome_bc1"],["InterPro%3AIPR004192","Cytochrome b-c1 complex subunit Rieske, transmembrane domain"],["InterPro%3AIPR017941","Rieske [2Fe-2S] iron-sulphur domain"],["InterPro%3AIPR005805","Rieske iron-sulphur protein, C-terminal"]]},{"id":"NCBITaxon:330779","l":"Sulfolobus acidocaldarius DSM 639","na":1,"nb":19,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"]],"b":[["Pfam%3APF12846","AAA-like domain"],["Pfam%3APF27338","Cytochrome b558/566 subunit B"],["Pfam%3APF18822","CdvA-like coiled-coil domain"],["Pfam%3APF27303","Cell division protein CdvB, C-terminal HTH domain"],["Pfam%3APF27251","DNA import protein CedA1"],["Pfam%3APF18533","Domain of unknown function (DUF5622)"]]},{"id":"UniProt:P02942","l":"","na":1,"nb":19,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["GO%3A0098561","methyl accepting chemotaxis protein complex"],["GO%3A0009593","detection of chemical stimulus"],["GO%3A1902021","regulation of bacterial-type flagellum-dependent cell motility"],["NCBIfam%3ANF011615","methyl-accepting chemotaxis protein"],["CDD%3Acd06225","HAMP"],["CDD%3Acd19407","Tar_Tsr_sensor"]]},{"id":"UniProt:P07017","l":"","na":1,"nb":19,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["GO%3A0098561","methyl accepting chemotaxis protein complex"],["GO%3A0043424","protein histidine kinase binding"],["GO%3A0009593","detection of chemical stimulus"],["NCBIfam%3ANF011622","methyl-accepting chemotaxis protein II"],["CDD%3Acd06225","HAMP"],["CDD%3Acd19407","Tar_Tsr_sensor"]]},{"id":"UniProt:P60723","l":"Large ribosomal subunit protein uL4","na":1,"nb":19,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["GO%3A0022625","cytosolic large ribosomal subunit"],["GO%3A0015934","large ribosomal subunit"],["GO%3A0060698","endoribonuclease inhibitor activity"],["GO%3A0048027","mRNA 5'-UTR binding"],["GO%3A0001070","RNA-binding transcription regulator activity"]]},{"id":"CHEBI:16838","l":"polyphosphate","na":1,"nb":18,"a":[["membrane_organelle/acidocalcisome.html","acidocalcisome"]],"b":[["EC%3A2.7.1.63","polyphosphate--glucose phosphotransferase"],["EC%3A2.7.4.1","ATP-polyphosphate phosphotransferase"],["EC%3A2.7.4.17","3-phosphoglyceroyl-phosphate--polyphosphate phosphotransferase"],["EC%3A2.7.4.20","dolichyl-diphosphate--polyphosphate phosphotransferase"],["EC%3A2.7.4.33","AMP-polyphosphate phosphotransferase"],["EC%3A2.7.4.34","GDP-polyphosphate phosphotransferase"]]},{"id":"GO:0030257","l":"type III protein secretion system complex","na":1,"nb":18,"a":[["secretion_system/type_iii_protein_secretion_system_complex.html","type III protein secretion system complex"]],"b":[["ComplexPortal%3ACPX-5885","Flagellar export complex"],["GO%3A0030257","type III protein secretion system complex"],["NCBIfam%3ANF006290","flagellar protein export ATPase FliI"],["NCBIfam%3ATIGR03498","flagellar protein export ATPase FliI"],["NCBIfam%3ATIGR01026","FliI/YscN family ATPase"],["NCBIfam%3ATIGR02554","PrgH/EprH family type III secretion apparatus protein"]]},{"id":"GO:0031253","l":"cell projection membrane","na":1,"nb":18,"a":[["appendage/ciliary_membrane.html","ciliary membrane"]],"b":[["GO%3A0031526","brush border membrane"],["GO%3A0031253","cell projection membrane"],["GO%3A0060170","ciliary membrane"],["GO%3A0031527","filopodium membrane"],["GO%3A0031258","lamellipodium membrane"],["GO%3A0070686","macropinocytic cup membrane"]]},{"id":"GO:0045048","l":"protein insertion into ER membrane","na":1,"nb":18,"a":[["other/emc_complex.html","EMC complex"]],"b":[["ComplexPortal%3ACPX-6464","GET complex"],["ComplexPortal%3ACPX-956","GET complex"],["ComplexPortal%3ACPX-7020","PAT intramembrane chaperone complex"],["GO%3A0160063","multi-pass transmembrane protein insertion into ER membrane"],["GO%3A0045051","protein insertion into ER membrane by internal uncleaved signal-anchor sequence"],["GO%3A0045049","protein insertion into ER membrane by N-terminal cleaved signal sequence"]]},{"id":"GO:0140737","l":"encapsulin nanocompartment","na":1,"nb":18,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]],"b":[["GO%3A0140737","encapsulin nanocompartment"],["NCBIfam%3ATIGR04535","encapsulin-associated ferritin-like protein"],["NCBIfam%3ANF058680","encapsulin nanocompartment cargo ferric reductase EncD"],["NCBIfam%3ANF058678","encapsulin nanocompartment ferritin-like cargo protein EncB"],["NCBIfam%3ANF058679","encapsulin nanocompartment ferritin-likeEncB family encapsulin nanocompartment ferritin-like cargo protein cargo protein"],["NCBIfam%3ANF041155","family 1 encapsulin nanocompartment shell protein"]]},{"id":"GO:0160303","l":"protein secretion by the type IX secretion system","na":1,"nb":18,"a":[["secretion_system/type_ix_protein_secretion_system_complex.html","type IX protein secretion system complex"]],"b":[["GO%3A0160303","protein secretion by the type IX secretion system"],["NCBIfam%3ANF052230","PorE family type IX secretion system protein"],["NCBIfam%3ATIGR03519","PorP/SprF family type IX secretion system membrane protein"],["NCBIfam%3ANF052314","PorY family sensor histidine kinase"],["NCBIfam%3ATIGR04189","T9SS outer membrane translocon Sov/SprA"],["NCBIfam%3ANF052313","T9SS response regulator signal transducer PorX"]]},{"id":"InterPro:IPR014222","l":"Cytochrome c oxidase, subunit II","na":1,"nb":18,"a":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]],"b":[["GO%3A0098803","respiratory chain complex"],["GO%3A0004129","cytochrome-c oxidase activity"],["NCBIfam%3ATIGR02866","cytochrome c oxidase subunit II"],["InterPro%3AIPR001505","Copper centre Cu(A)"],["CDD%3Acd13912","CcO_II_C"],["CDD%3Acd04213","CuRO_CcO_Caa3_II"]]},{"id":"UniProt:P24073","l":"","na":1,"nb":18,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["EC%3A3.-.-.-","Hydrolases"],["GO%3A0009425","bacterial-type flagellum basal body"],["GO%3A0003774","cytoskeletal motor activity"],["GO%3A0044780","bacterial-type flagellum assembly"],["GO%3A0071978","bacterial-type flagellum-dependent swarming motility"],["GO%3A0016311","dephosphorylation"]]},{"id":"GO:0000407","l":"phagophore assembly site","na":1,"nb":17,"a":[["other/phagophore_assembly_site.html","phagophore assembly site"]],"b":[["ComplexPortal%3ACPX-1383","TRAPPIII protein complex"],["ComplexPortal%3ACPX-373","ULK1-ATG13-RB1CC1-ATG101 autophagy initiation complex"],["ComplexPortal%3ACPX-380","ULK1-ATG13-RB1CC1-ATG101 autophagy initiation complex"],["GO%3A0000407","phagophore assembly site"],["PANTHER%3APTHR13038","APG9 AUTOPHAGY 9"],["PANTHER%3APTHR13385","AUTOPHAGY PROTEIN 12"]]},{"id":"GO:0003689","l":"DNA clamp loader activity","na":1,"nb":17,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"]],"b":[["ComplexPortal%3ACPX-1926","DNA polymerase III clamp loader complex"],["ComplexPortal%3ACPX-472","DNA replication factor C complex"],["ComplexPortal%3ACPX-26445","DNA replication factor C complex, ctf18 variant"],["ComplexPortal%3ACPX-2441","DNA replication factor C complex, elg1 variant"],["ComplexPortal%3ACPX-26452","DNA replication factor C complex, elg1 variant"],["ComplexPortal%3ACPX-26444","DNA replication factor C complex, rad17 variant"]]},{"id":"GO:0030863","l":"cortical cytoskeleton","na":1,"nb":17,"a":[["cytoskeleton/eisosome_filament.html","eisosome filament"]],"b":[["ComplexPortal%3ACPX-658","Actin junctional complex"],["GO%3A0030864","cortical actin cytoskeleton"],["GO%3A0030863","cortical cytoskeleton"],["GO%3A0030981","cortical microtubule cytoskeleton"],["GO%3A0048788","cytoskeleton of presynaptic active zone"],["PANTHER%3APTHR15012","APICAL PROTEIN/SHROOM-RELATED"]]},{"id":"GO:0072546","l":"EMC complex","na":1,"nb":17,"a":[["other/emc_complex.html","EMC complex"]],"b":[["ComplexPortal%3ACPX-307","Endoplasmic Reticulum Membrane Complex"],["ComplexPortal%3ACPX-2445","Endoplasmic reticulum membrane complex, EMC2A variant"],["ComplexPortal%3ACPX-2451","Endoplasmic reticulum membrane complex, EMC2B variant"],["ComplexPortal%3ACPX-5848","Endoplasmic reticulum membrane complex, EMC8 variant"],["ComplexPortal%3ACPX-5882","Endoplasmic reticulum membrane complex, EMC8 variant"],["ComplexPortal%3ACPX-5881","Endoplasmic reticulum membrane complex, EMC9 variant"]]},{"id":"GO:1905369","l":"endopeptidase complex","na":1,"nb":17,"a":[["other/proteasome_complex.html","proteasome complex"]],"b":[["ComplexPortal%3ACPX-3905","Caspase-2 PIDDosome"],["ComplexPortal%3ACPX-3963","Caspase-2 PIDDosome"],["ComplexPortal%3ACPX-5777","MERS-CoV main protease complex"],["ComplexPortal%3ACPX-5685","SARS-CoV-2 main protease complex"],["ComplexPortal%3ACPX-5706","SARS-CoV main protease complex"],["GO%3A0008303","caspase complex"]]},{"id":"NCBITaxon:208963","l":"Pseudomonas aeruginosa UCBPP-PA14","na":1,"nb":17,"a":[["inclusion/r_body.html","R-body"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF21384","CRISPR-associated nuclease/helicase Cas3, I-F/YPEST, Cas2 domain"],["Pfam%3APF21802","CRISPR-associated Cas3 subtype I-F/YPEST-like, C-terminal domain"],["Pfam%3APF20975","DGC-associated coil"],["Pfam%3APF19502","Nucleotidyltransferase of unknown function (DUF6036)"]]},{"id":"Pfam:PF01584","l":"CheW-like domain","na":1,"nb":17,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["GO%3A0098561","methyl accepting chemotaxis protein complex"],["GO%3A0009454","aerotaxis"],["GO%3A0042333","chemotaxis to oxidizable substrate"],["GO%3A0051649","establishment of localization in cell"],["NCBIfam%3ANF007903","chemotaxis protein CheW"],["CDD%3Acd00732","CheW"]]},{"id":"UniProt:P0A7V8","l":"Small ribosomal subunit protein uS4","na":1,"nb":17,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["GO%3A1990145","maintenance of translational fidelity"],["GO%3A0000028","ribosomal small subunit assembly"],["GO%3A0031564","transcription antitermination"],["NCBIfam%3ANF003717","30S ribosomal protein S4"],["NCBIfam%3ATIGR01017","30S ribosomal protein S4"]]},{"id":"UniProt:P0AFI2","l":"","na":1,"nb":17,"a":[["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["ComplexPortal%3ACPX-1104","Topoisomerase IV"],["GO%3A0009330","DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) complex"],["GO%3A0030541","plasmid partitioning"],["NCBIfam%3ANF004044","DNA topoisomerase (ATP-hydrolyzing)"],["NCBIfam%3ATIGR01062","DNA topoisomerase IV subunit A"],["CDD%3Acd00187","TOP4c"]]},{"id":"UniProt:P35149","l":"","na":1,"nb":17,"a":[["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]],"b":[["EC%3A3.6.1.-","In phosphorus-containing anhydrides"],["GO%3A0043595","endospore cortex"],["GO%3A0042601","endospore-forming forespore"],["GO%3A0031160","spore wall"],["GO%3A0000270","peptidoglycan metabolic process"],["GO%3A0009847","spore germination"]]},{"id":"CHEBI:16247","l":"","na":1,"nb":16,"a":[["inclusion/monolayer_surrounded_lipid_storage_body_outer_lipid_monolayer.html","monolayer-surrounded lipid storage body outer lipid monolayer"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.A.79","The Autophagosomal Phospholipid Transmembrane Translocase (Atg9) Family"],["TCDB%3A9.A.36","The Ca2+-dependent Phospholipid Scramblase (Scramblase) Family"],["TCDB%3A1.A.17","The Calcium-dependent Chloride Channel (Ca-ClC) Family"],["TCDB%3A9.B.27","The Death Effector Domain A (DedA) Family"],["TCDB%3A8.A.97","The EPG-3/VMP1 (EPG/VPM) Scramblase Family"]]},{"id":"GO:0004526","l":"ribonuclease P activity","na":1,"nb":16,"a":[["ribonucleoprotein/dimeric_ribonuclease_p_complex.html","dimeric ribonuclease P complex"]],"b":[["EC%3A3.1.26.5","ribonuclease P"],["ComplexPortal%3ACPX-1294","Mitochondrial ribonuclease P complex"],["ComplexPortal%3ACPX-2632","Mitochondrial ribonuclease P complex"],["ComplexPortal%3ACPX-6155","Mitochondrial ribonuclease P complex"],["ComplexPortal%3ACPX-1873","Nucleolar ribonuclease P complex"],["ComplexPortal%3ACPX-2637","Nucleolar ribonuclease P complex"]]},{"id":"GO:0030968","l":"endoplasmic reticulum unfolded protein response","na":1,"nb":16,"a":[["membrane_organelle/endoplasmic_reticulum.html","endoplasmic reticulum"]],"b":[["GO%3A0036500","ATF6-mediated unfolded protein response"],["GO%3A0030968","endoplasmic reticulum unfolded protein response"],["GO%3A0036498","IRE1-mediated unfolded protein response"],["GO%3A0036499","PERK-mediated unfolded protein response"],["Reactome%3AR-HSA-8874177","ATF6B (ATF6-beta) activates chaperones"],["Reactome%3AR-HSA-381119","Unfolded Protein Response (UPR)"]]},{"id":"GO:1904262","l":"negative regulation of TORC1 signaling","na":1,"nb":16,"a":[["other/gator1_complex.html","GATOR1 complex"]],"b":[["ComplexPortal%3ACPX-2665","CASTOR1 arginine-sensing complex"],["ComplexPortal%3ACPX-2667","CASTOR1-CASTOR2 arginine binding complex"],["ComplexPortal%3ACPX-26523","GATOR1 complex"],["ComplexPortal%3ACPX-2781","GATOR1 complex"],["ComplexPortal%3ACPX-6226","GATOR1 complex"],["ComplexPortal%3ACPX-26527","GATOR2 complex"]]},{"id":"GO:1904263","l":"positive regulation of TORC1 signaling","na":1,"nb":16,"a":[["other/gator2_complex.html","GATOR2 complex"]],"b":[["ComplexPortal%3ACPX-26527","GATOR2 complex"],["ComplexPortal%3ACPX-6227","GATOR2 complex"],["ComplexPortal%3ACPX-26516","RAG guanosine triphosphatase complex"],["ComplexPortal%3ACPX-26517","RAG guanosine triphosphatase complex"],["ComplexPortal%3ACPX-2542","RAG guanosine triphosphatase complex, RAGA-RAGC variant"],["ComplexPortal%3ACPX-2513","RAG guanosine triphosphatase complex, RAGA-RAGD variant"]]},{"id":"UniProt:P0A7S3","l":"Small ribosomal subunit protein uS12","na":1,"nb":16,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["GO%3A0022627","cytosolic small ribosomal subunit"],["GO%3A0005840","ribosome"],["GO%3A0034336","misfolded RNA binding"],["GO%3A0019843","rRNA binding"],["GO%3A0000049","tRNA binding"]]},{"id":"UniProt:P20083","l":"","na":1,"nb":16,"a":[["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["ComplexPortal%3ACPX-1104","Topoisomerase IV"],["GO%3A0030541","plasmid partitioning"],["NCBIfam%3ATIGR01055","DNA topoisomerase IV subunit B"],["InterPro%3AIPR018522","DNA topoisomerase, type IIA, conserved site"],["CDD%3Acd16928","HATPase_GyrB-like"],["CDD%3Acd00822","TopoII_Trans_DNA_gyrase"]]},{"id":"GO:0000479","l":"endonucleolytic cleavage of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)","na":1,"nb":15,"a":[["ribonucleoprotein/ribonuclease_mrp_complex.html","ribonuclease MRP complex"]],"b":[["GO%3A0000448","cleavage in ITS2 between 5.8S rRNA and LSU-rRNA of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)"],["GO%3A0000471","endonucleolytic cleavage in 3'-ETS of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)"],["GO%3A0000480","endonucleolytic cleavage in 5'-ETS of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)"],["GO%3A0000447","endonucleolytic cleavage in ITS1 to separate SSU-rRNA from 5.8S rRNA and LSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)"],["GO%3A0000464","endonucleolytic cleavage in ITS1 upstream of 5.8S rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)"],["GO%3A0000479","endonucleolytic cleavage of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)"]]},{"id":"GO:0005881","l":"cytoplasmic microtubule","na":1,"nb":15,"a":[["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"]],"b":[["GO%3A0000235","astral microtubule"],["GO%3A0005879","axonemal microtubule"],["GO%3A0055028","cortical microtubule"],["GO%3A0005881","cytoplasmic microtubule"],["PANTHER%3APTHR12607","ADENOMATOUS POLYPOSIS COLI PROTEIN FAMILY"],["PANTHER%3APTHR34031","CENTROSOMAL PROTEIN OF 162 KDA"]]},{"id":"GO:0009486","l":"cytochrome bo3 ubiquinol oxidase activity","na":1,"nb":15,"a":[["energy_complex/cytochrome_o_ubiquinol_oxidase_complex.html","cytochrome o ubiquinol oxidase complex"]],"b":[["EC%3A7.1.1.3","ubiquinol oxidase (H(+)-transporting)"],["RHEA%3A30251","2 a ubiquinol + O2 + n H(+)(in) = 2 a ubiquinone + 2 H2O + n H(+)(out)"],["ComplexPortal%3ACPX-2102","Cytochrome bo3 ubiquinol oxidase complex"],["GO%3A0009486","cytochrome bo3 ubiquinol oxidase activity"],["NCBIfam%3ATIGR01432","cytochrome aa3 quinol oxidase subunit II"],["NCBIfam%3ATIGR02843","cytochrome o ubiquinol oxidase subunit I"]]},{"id":"GO:0030121","l":"AP-1 adaptor complex","na":1,"nb":15,"a":[["other/ap_1_adaptor_complex.html","AP-1 adaptor complex"]],"b":[["ComplexPortal%3ACPX-2510","Adaptor complex AP-1"],["ComplexPortal%3ACPX-26625","Adaptor complex AP-1"],["ComplexPortal%3ACPX-532","Adaptor complex AP-1"],["ComplexPortal%3ACPX-533","Adaptor complex AP-1R"],["ComplexPortal%3ACPX-26626","Adaptor complex AP-2"],["ComplexPortal%3ACPX-2725","Adaptor complex AP-2"]]},{"id":"GO:0042575","l":"DNA polymerase complex","na":1,"nb":15,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"]],"b":[["GO%3A0005658","alpha DNA polymerase:primase complex"],["GO%3A0043625","delta DNA polymerase complex"],["GO%3A0042575","DNA polymerase complex"],["GO%3A0009360","DNA polymerase III complex"],["GO%3A0009355","DNA polymerase V complex"],["GO%3A0008622","epsilon DNA polymerase complex"]]},{"id":"GO:0045039","l":"protein insertion into mitochondrial inner membrane","na":1,"nb":15,"a":[["other/tim22_mitochondrial_import_inner_membrane_insertion_complex.html","TIM22 mitochondrial import inner membrane insertion complex"]],"b":[["ComplexPortal%3ACPX-1629","TIM22 mitochondrial inner membrane twin-pore carrier translocase complex"],["ComplexPortal%3ACPX-6124","TIM22 mitochondrial inner membrane twin-pore carrier translocase complex"],["ComplexPortal%3ACPX-6127","TIM23 mitochondrial inner membrane pre-sequence translocase complex, sort variant"],["ComplexPortal%3ACPX-2371","TIM8-TIM13 mitochondrial intermembrane space protein transporter complex"],["ComplexPortal%3ACPX-6131","TIM8A-TIM13 mitochondrial intermembrane space protein transporter complex"],["ComplexPortal%3ACPX-6132","TIM8B-TIM13 mitochondrial intermembrane space protein transporter complex"]]},{"id":"GO:0045273","l":"respiratory chain complex II (succinate dehydrogenase)","na":1,"nb":15,"a":[["energy_complex/respiratory_chain_complex_ii_succinate_dehydrogenase.html","respiratory chain complex II (succinate dehydrogenase)"]],"b":[["ComplexPortal%3ACPX-561","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-562","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-564","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-565","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-566","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-8622","Mitochondrial respiratory chain complex II"]]},{"id":"GO:0048500","l":"signal recognition particle","na":1,"nb":15,"a":[["ribonucleoprotein/signal_recognition_particle.html","signal recognition particle"]],"b":[["GO%3A0080085","signal recognition particle, chloroplast targeting"],["GO%3A0005786","signal recognition particle, endoplasmic reticulum targeting"],["GO%3A0048500","signal recognition particle"],["GO%3A0048501","signal recognition particle, plasma membrane targeting"],["NCBIfam%3ANF014032","signal recognition particle subunit SRP19/SEC65 family protein"],["NCBIfam%3ANF045758","YlxM family DNA-binding protein"]]},{"id":"UniProt:P0A7J7","l":"Large ribosomal subunit protein uL11","na":1,"nb":15,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["GO%3A0015968","stringent response"],["GO%3A0006415","translational termination"],["NCBIfam%3ATIGR01632","50S ribosomal protein L11"],["InterPro%3AIPR020785","Large ribosomal subunit protein uL11, conserved site"],["CDD%3Acd00349","Ribosomal_L11"]]},{"id":"GO:0000172","l":"ribonuclease MRP complex","na":1,"nb":14,"a":[["ribonucleoprotein/ribonuclease_mrp_complex.html","ribonuclease MRP complex"]],"b":[["ComplexPortal%3ACPX-2629","Ribonuclease MRP complex"],["ComplexPortal%3ACPX-26688","Ribonuclease MRP complex"],["ComplexPortal%3ACPX-2876","Ribonuclease MRP complex"],["ComplexPortal%3ACPX-3284","Ribonuclease MRP complex"],["GO%3A0000172","ribonuclease MRP complex"],["InterPro%3AIPR047204","RNase MRP protein 1, RNA binding domain"]]},{"id":"GO:0001682","l":"","na":1,"nb":14,"a":[["ribonucleoprotein/dimeric_ribonuclease_p_complex.html","dimeric ribonuclease P complex"]],"b":[["ComplexPortal%3ACPX-1294","Mitochondrial ribonuclease P complex"],["ComplexPortal%3ACPX-1873","Nucleolar ribonuclease P complex"],["ComplexPortal%3ACPX-2637","Nucleolar ribonuclease P complex"],["ComplexPortal%3ACPX-2877","Nucleolar ribonuclease P complex"],["GO%3A0001682","tRNA 5'-leader removal"],["NCBIfam%3ANF046110","ribonuclease P protein component 1"]]},{"id":"GO:0003843","l":"1,3-beta-D-glucan synthase activity","na":1,"nb":14,"a":[["other/1_3_beta_d_glucan_synthase_complex.html","1,3-beta-D-glucan synthase complex"]],"b":[["EC%3A2.4.1.34","1,3-beta-glucan synthase"],["RHEA%3A21476","[(1->3)-beta-D-glucosyl](n) + UDP-alpha-D-glucose = [(1->3)-beta-D-glucosyl](n+1) + UDP + H(+)"],["ComplexPortal%3ACPX-1812","1,3-beta-D-glucan synthase complex, FKS1-RHO1 variant"],["ComplexPortal%3ACPX-1813","1,3-beta-D-glucan synthase complex, FKS2-RHO1 variant"],["ComplexPortal%3ACPX-3028","1,3-beta-D-glucan synthase complex, FKS3-RHO1 variant"],["GO%3A0003843","1,3-beta-D-glucan synthase activity"]]},{"id":"GO:0006360","l":"transcription by RNA polymerase I","na":1,"nb":14,"a":[["other/nucleolus.html","nucleolus"]],"b":[["GO%3A0042790","nucleolar large rRNA transcription by RNA polymerase I"],["GO%3A0006360","transcription by RNA polymerase I"],["Reactome%3AR-HSA-73864","RNA Polymerase I Transcription"],["PANTHER%3APTHR14440","DNA-DIRECTED RNA POLYMERASE I SUBUNIT RPA49"],["PANTHER%3APTHR47227","DNA-DIRECTED RNA POLYMERASE SUBUNIT K"],["PANTHER%3APTHR10535","DNA-DIRECTED RNA POLYMERASES I, II, AND III SUBUNIT RPABC1"]]},{"id":"GO:0010494","l":"cytoplasmic stress granule","na":1,"nb":14,"a":[["ribonucleoprotein/cytoplasmic_stress_granule.html","cytoplasmic stress granule"]],"b":[["ComplexPortal%3ACPX-21432","CAPRIN1-G3BP1, stress granules assembly regulating complex"],["ComplexPortal%3ACPX-18979","CAPRIN1-G3BP2, stress granules assembly regulating complex"],["ComplexPortal%3ACPX-8306","FMR1-FXR1 RNA-binding complex"],["ComplexPortal%3ACPX-8322","FMR1-FXR2 RNA-binding complex"],["ComplexPortal%3ACPX-8305","FMR1 RNA-binding homodimer"],["ComplexPortal%3ACPX-8342","FXR1-FXR2 RNA-binding complex"]]},{"id":"GO:0030123","l":"AP-3 adaptor complex","na":1,"nb":14,"a":[["other/ap_3_adaptor_complex.html","AP-3 adaptor complex"]],"b":[["ComplexPortal%3ACPX-535","Adapter complex AP-3"],["ComplexPortal%3ACPX-26627","Adaptor complex AP-3"],["ComplexPortal%3ACPX-2727","Adaptor complex AP-3"],["ComplexPortal%3ACPX-5055","Neuronal AP-3 Adaptor complex, sigma3a variant"],["ComplexPortal%3ACPX-5147","Neuronal AP-3 Adaptor complex, sigma3a variant"],["ComplexPortal%3ACPX-5053","Neuronal AP-3 Adaptor complex, sigma3b variant"]]},{"id":"UniProt:P0A7R5","l":"Small ribosomal subunit protein uS10","na":1,"nb":14,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["ComplexPortal%3ACPX-5780","lambdaN-dependent processive transcription antitermination complex"],["ComplexPortal%3ACPX-5674","Transcription elongation complex"],["GO%3A0001072","transcription antitermination factor activity, RNA binding"],["GO%3A0032784","regulation of DNA-templated transcription elongation"],["GO%3A0031564","transcription antitermination"]]},{"id":"UniProt:P23446","l":"","na":1,"nb":14,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0030694","bacterial-type flagellum basal body, rod"],["GO%3A0009424","bacterial-type flagellum hook"],["NCBIfam%3ATIGR02490","flagellar basal-body rod protein FlgF"],["NCBIfam%3ANF009278","flagellar basal body rod protein FlgG"],["NCBIfam%3ATIGR03506","flagellar hook-basal body complex protein"],["InterPro%3AIPR019776","Flagellar basal body rod protein, conserved site"]]},{"id":"GO:0030990","l":"intraciliary transport particle","na":1,"nb":13,"a":[["appendage/cilium.html","cilium"]],"b":[["GO%3A0030990","intraciliary transport particle"],["PANTHER%3APTHR16011","IFT57/HIPPI"],["PANTHER%3APTHR31978","INTRAFLAGELLAR TRANSPORT PROTEIN 20 HOMOLOG"],["PANTHER%3APTHR33724","INTRAFLAGELLAR TRANSPORT PROTEIN 43 HOMOLOG"],["PANTHER%3APTHR13376","INTRAFLAGELLAR TRANSPORT PROTEIN 46 HOMOLOG"],["PANTHER%3APTHR14781","INTRAFLAGELLAR TRANSPORT PROTEIN 56"]]},{"id":"UniProt:P0A7L8","l":"Large ribosomal subunit protein bL27","na":1,"nb":13,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["GO%3A0022625","cytosolic large ribosomal subunit"],["GO%3A0043022","ribosome binding"],["GO%3A0000049","tRNA binding"],["GO%3A1902626","assembly of large subunit precursor of preribosome"],["GO%3A0002181","cytoplasmic translation"]]},{"id":"UniProt:P0AG67","l":"Small ribosomal subunit protein bS1","na":1,"nb":13,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ANF004951","30S ribosomal protein S1"],["NCBIfam%3ANF004952","30S ribosomal protein S1"],["NCBIfam%3ANF004954","30S ribosomal protein S1"],["NCBIfam%3ATIGR00717","30S ribosomal protein S1"],["proteintraitsmech%3AMEROPS_CLEAVAGE_A02_011","human endogenous retrovirus K retropepsin cleavage specificity"]]},{"id":"UniProt:P0AGA2","l":"","na":1,"nb":13,"a":[["secretion_system/secyeg_translocon_complex.html","SecYEG translocon complex"]],"b":[["ComplexPortal%3ACPX-1095","Holo-translocon SecYEG-SecDF-YajC-YidC complex"],["ComplexPortal%3ACPX-1096","Protein-conducting channel SecYEG complex"],["GO%3A0031522","cell envelope Sec protein transport complex"],["GO%3A0005048","signal sequence receptor activity"],["GO%3A0043952","protein transport by the Sec complex"],["GO%3A0006616","SRP-dependent cotranslational protein targeting to membrane, translocation"]]},{"id":"UniProt:P61175","l":"Large ribosomal subunit protein uL22","na":1,"nb":13,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["GO%3A0015934","large ribosomal subunit"],["GO%3A0070180","large ribosomal subunit rRNA binding"],["GO%3A1902626","assembly of large subunit precursor of preribosome"],["GO%3A0042256","cytosolic ribosome assembly"],["GO%3A0042255","ribosome assembly"]]},{"id":"GO:0017119","l":"COG complex","na":1,"nb":12,"a":[["other/cog_complex.html","COG complex"]],"b":[["ComplexPortal%3ACPX-1840","COG Golgi transport complex"],["ComplexPortal%3ACPX-2794","COG tethering complex"],["ComplexPortal%3ACPX-6199","COG tethering complex"],["GO%3A0017119","COG complex"],["PANTHER%3APTHR21506","COMPONENT OF OLIGOMERIC GOLGI COMPLEX 6"],["PANTHER%3APTHR12961","CONSERVED OLIGOMERIC GOLGI COMPLEX COMPONENT 2"]]},{"id":"GO:0045040","l":"protein insertion into mitochondrial outer membrane","na":1,"nb":12,"a":[["other/sam_complex.html","SAM complex"]],"b":[["ComplexPortal%3ACPX-2281","MIM mitochondrial import complex"],["ComplexPortal%3ACPX-26566","MIM mitochondrial import complex"],["ComplexPortal%3ACPX-6133","SAM mitochondrial sorting and assembly machinery complex"],["ComplexPortal%3ACPX-6121","TOM40 mitochondrial outer membrane translocase complex"],["ComplexPortal%3ACPX-8921","TOM40 mitochondrial outer membrane translocase complex"],["ComplexPortal%3ACPX-8926","TOM40 mitochondrial outer membrane translocase complex, testis-specific variant"]]},{"id":"GO:0045275","l":"respiratory chain complex III","na":1,"nb":12,"a":[["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"]],"b":[["ComplexPortal%3ACPX-560","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-563","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-567","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-8730","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-9308","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-8737","Mitochondrial respiratory chain complex III, testis-specific variant"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus ATCC 27405","na":1,"nb":12,"a":[["other/cellulosome.html","cellulosome"]],"b":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["Pfam%3APF00942","Cellulose binding domain"],["Pfam%3APF17996","Carbohydrate esterase 2 N-terminal"],["Pfam%3APF00963","Cohesin domain"],["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF00404","Dockerin type I domain"]]},{"id":"NCBITaxon:224326","l":"Borreliella burgdorferi B31","na":1,"nb":12,"a":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]],"b":[["Pfam%3APF09822","ABC-type uncharacterized transport system"],["Pfam%3APF02352","Decorin binding protein"],["Pfam%3APF23357","Domain of unknown function (DUF7088)"],["Pfam%3APF27167","GRAD helix-turn-helix domain"],["Pfam%3APF28090","BB0208-like"],["Pfam%3APF02999","Borrelia orf-D family"]]},{"id":"NCBITaxon:5691","l":"Trypanosoma brucei","na":12,"nb":1,"a":[["cytoskeleton/bilobe_structure.html","bilobe structure"],["cytoskeleton/ciliary_pocket_collar.html","ciliary pocket collar"],["cytoskeleton/flagellum_attachment_zone.html","flagellum attachment zone"],["cytoskeleton/tripartite_attachment_complex.html","tripartite attachment complex"],["membrane_organelle/flagellar_pocket.html","flagellar pocket"],["membrane_organelle/glycosome.html","glycosome"]],"b":[["TED%3AAF-A0A1J0R543-F1-model_v4_TED02","TED novel fold AF-A0A1J0R543-F1-model_v4_TED02"]]},{"id":"NCBITaxon:5702","l":"Trypanosoma brucei brucei","na":1,"nb":12,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF05887","Procyclic acidic repetitive protein (PARP)"],["Pfam%3APF18526","Thymine dioxygenase JBP1 DNA-binding domain"],["Pfam%3APF22592","FCaBP EF-hand domain"],["Pfam%3APF12131","Protein of unknown function (DUF3586)"]]},{"id":"UniProt:P0A7R1","l":"Large ribosomal subunit protein bL9","na":1,"nb":12,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00158","50S ribosomal protein L9"],["InterPro%3AIPR020069","Large ribosomal subunit protein bL9, C-terminal"],["InterPro%3AIPR020070","Large ribosomal subunit protein bL9, N-terminal"],["Pfam%3APF03948","Ribosomal protein L9, C-terminal domain"],["Pfam%3APF01281","Ribosomal protein L9, N-terminal domain"]]},{"id":"UniProt:P0AG96","l":"","na":1,"nb":12,"a":[["secretion_system/secyeg_translocon_complex.html","SecYEG translocon complex"]],"b":[["ComplexPortal%3ACPX-1095","Holo-translocon SecYEG-SecDF-YajC-YidC complex"],["ComplexPortal%3ACPX-1096","Protein-conducting channel SecYEG complex"],["GO%3A0031522","cell envelope Sec protein transport complex"],["GO%3A0043952","protein transport by the Sec complex"],["GO%3A0006616","SRP-dependent cotranslational protein targeting to membrane, translocation"],["NCBIfam%3ANF004372","preprotein translocase subunit SecE"]]},{"id":"UniProt:P23448","l":"","na":1,"nb":12,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0009425","bacterial-type flagellum basal body"],["GO%3A0071973","bacterial-type flagellum-dependent cell motility"],["GO%3A0071978","bacterial-type flagellum-dependent swarming motility"],["NCBIfam%3ATIGR00207","flagellar motor switch protein FliG"],["InterPro%3AIPR023087","Flagellar motor switch protein FliG, C-terminal"],["InterPro%3AIPR032779","Flagellar motor switch protein FliG, middle domain"]]},{"id":"UniProt:P60422","l":"Large ribosomal subunit protein uL2","na":1,"nb":12,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["ComplexPortal%3ACPX-1944","DnaA-L2 DNA replication initiation inhibitory complex"],["GO%3A0032297","negative regulation of DNA-templated DNA replication initiation"],["NCBIfam%3ATIGR01171","50S ribosomal protein L2"],["InterPro%3AIPR022671","Large ribosomal subunit protein uL2, conserved site"],["InterPro%3AIPR022669","Large ribosomal subunit protein uL2, C-terminal"]]},{"id":"GO:0006612","l":"protein targeting to membrane","na":1,"nb":11,"a":[["ribonucleoprotein/signal_recognition_particle.html","signal recognition particle"]],"b":[["GO%3A0006613","cotranslational protein targeting to membrane"],["GO%3A0006620","post-translational protein targeting to endoplasmic reticulum membrane"],["GO%3A0006612","protein targeting to membrane"],["GO%3A0044395","protein targeting to vacuolar membrane"],["PANTHER%3APTHR13254","GOLGI AUTOANTIGEN, GOLGIN SUBFAMILY A, 7"],["PANTHER%3APTHR45831","LD24721P"]]},{"id":"GO:0042601","l":"endospore-forming forespore","na":1,"nb":11,"a":[["spore/endospore_forming_forespore.html","endospore-forming forespore"]],"b":[["GO%3A0042601","endospore-forming forespore"],["NCBIfam%3ANF019784","small acid-soluble spore protein K"],["NCBIfam%3ATIGR03091","small, acid-soluble spore protein K"],["NCBIfam%3ANF019785","small acid-soluble spore protein N"],["NCBIfam%3ATIGR02864","small acid-soluble spore protein SspO"],["NCBIfam%3ANF053738","stage II sporulation protein SpoIIQ"]]},{"id":"UniProt:O32062","l":"","na":1,"nb":11,"a":[["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]],"b":[["GO%3A0043595","endospore cortex"],["GO%3A0042763","intracellular immature spore"],["GO%3A0008932","lytic endotransglycosylase activity"],["CDD%3Acd00118","LysM"],["InterPro%3AIPR018392","LysM domain"],["InterPro%3AIPR014248","Spore coat assembly protein SafA"]]},{"id":"UniProt:P02359","l":"Small ribosomal subunit protein uS7","na":1,"nb":11,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["GO%3A0022627","cytosolic small ribosomal subunit"],["GO%3A0000028","ribosomal small subunit assembly"],["NCBIfam%3ATIGR01029","30S ribosomal protein S7"],["InterPro%3AIPR020606","Small ribosomal subunit protein uS7, conserved site"],["CDD%3Acd14869","uS7_Bacteria"]]},{"id":"UniProt:P0A6E6","l":"","na":1,"nb":11,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["NCBIfam%3ATIGR01216","ATP synthase F1 subunit epsilon"],["NCBIfam%3ANF001847","F0F1 ATP synthase subunit epsilon"],["CDD%3Acd12152","F1-ATPase_delta"],["InterPro%3AIPR020547","ATP synthase epsilon subunit, C-terminal domain"],["InterPro%3AIPR020546","ATP synthase, F1 complex, delta/epsilon subunit, N-terminal"]]},{"id":"UniProt:P0A7J3","l":"Large ribosomal subunit protein uL10","na":1,"nb":11,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ANF000955","50S ribosomal protein L10"],["InterPro%3AIPR002363","Large ribosomal subunit protein uL10, conserved site, bacteria"],["CDD%3Acd05797","Ribosomal_L10"],["InterPro%3AIPR001790","Large ribosomal subunit protein uL10, N-terminal"],["Pfam%3APF00466","Ribosomal protein L10"]]},{"id":"UniProt:P0A7K2","l":"Large ribosomal subunit protein bL12","na":1,"nb":11,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00855","50S ribosomal protein L7/L12"],["CDD%3Acd00387","Ribosomal_L7_L12"],["InterPro%3AIPR013823","Large ribosomal subunit protein bL12, C-terminal"],["InterPro%3AIPR008932","Large ribosomal subunit protein bL12, oligomerization"],["Pfam%3APF16320","Ribosomal protein L7/L12 dimerisation domain"]]},{"id":"UniProt:P68699","l":"","na":1,"nb":11,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["RHEA%3A57720","ATP + H2O + 4 H(+)(in) = ADP + phosphate + 5 H(+)(out)"],["ComplexPortal%3ACPX-4022","ATP synthase complex"],["GO%3A0033177","proton-transporting two-sector ATPase complex, proton-transporting domain"],["GO%3A0042777","proton motive force-driven plasma membrane ATP synthesis"],["NCBIfam%3ATIGR01260","ATP synthase F0 subunit C"],["NCBIfam%3ANF005363","F0F1 ATP synthase subunit C"]]},{"id":"GO:0005736","l":"RNA polymerase I complex","na":1,"nb":10,"a":[["other/nucleolus.html","nucleolus"]],"b":[["ComplexPortal%3ACPX-1664","DNA-directed RNA Polymerase I complex"],["ComplexPortal%3ACPX-2386","DNA-directed RNA polymerase I complex"],["ComplexPortal%3ACPX-2602","DNA-directed RNA polymerase I complex"],["ComplexPortal%3ACPX-8907","DNA-directed RNA polymerase I complex"],["ComplexPortal%3ACPX-8913","DNA-directed RNA polymerase I complex"],["GO%3A0005736","RNA polymerase I complex"]]},{"id":"GO:0005771","l":"multivesicular body","na":10,"nb":1,"a":[["membrane_organelle/endosome.html","endosome"],["membrane_organelle/endosome_lumen.html","endosome lumen"],["membrane_organelle/endosome_membrane.html","endosome membrane"],["membrane_organelle/late_endosome.html","late endosome"],["membrane_organelle/late_endosome_lumen.html","late endosome lumen"],["membrane_organelle/late_endosome_membrane.html","late endosome membrane"]],"b":[["GO%3A0005771","multivesicular body"]]},{"id":"GO:0043952","l":"protein transport by the Sec complex","na":1,"nb":10,"a":[["secretion_system/secyeg_translocon_complex.html","SecYEG translocon complex"]],"b":[["ComplexPortal%3ACPX-1095","Holo-translocon SecYEG-SecDF-YajC-YidC complex"],["ComplexPortal%3ACPX-1096","Protein-conducting channel SecYEG complex"],["GO%3A0043952","protein transport by the Sec complex"],["NCBIfam%3ATIGR00963","preprotein translocase subunit SecA"],["NCBIfam%3ATIGR00964","preprotein translocase subunit SecE"],["NCBIfam%3ATIGR00967","preprotein translocase subunit SecY"]]},{"id":"GO:0097545","l":"axonemal doublet microtubule","na":10,"nb":1,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_doublet_microtubule.html","axonemal doublet microtubule"],["cytoskeleton/axonemal_dynein_complex.html","axonemal dynein complex"],["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"],["cytoskeleton/axonemal_microtubule_doublet_inner_junction.html","axonemal microtubule doublet inner junction"],["cytoskeleton/axonemal_microtubule_doublet_inner_sheath.html","axonemal microtubule doublet inner sheath"]],"b":[["GO%3A0097545","axonemal doublet microtubule"]]},{"id":"NCBITaxon:190650","l":"Caulobacter vibrioides CB15","na":1,"nb":10,"a":[["cytoskeleton/cytoophidium.html","cytoophidium"]],"b":[["IDPO%3A0000060","self-assembly"],["Pfam%3APF27198","FlaEY third domain"],["Pfam%3APF22367","Flagellar hook protein FlgE, third domain"],["Pfam%3APF03799","Cell division protein FtsQ/DivIB, C-terminal"],["Pfam%3APF27294","HfaA"],["Pfam%3APF27277","Holdfast attachment protein D"]]},{"id":"NCBITaxon:345073","l":"Vibrio cholerae O395","na":1,"nb":10,"a":[["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"]],"b":[["IDPO%3A0000048","limited proteolysis display site"],["Pfam%3APF16671","Actin cross-linking domain"],["Pfam%3APF26759","AcfD helical domain"],["Pfam%3APF00165","Bacterial regulatory helix-turn-helix proteins, AraC family"],["Pfam%3APF08328","Adenylosuccinate lyase C-terminal"],["Pfam%3APF07208","Protein of unknown function (DUF1414)"]]},{"id":"Pfam:PF03023","l":"Lipid II flippase MurJ","na":1,"nb":10,"a":[["envelope/peptidoglycan_based_cell_wall.html","peptidoglycan-based cell wall"]],"b":[["GO%3A0000935","division septum"],["GO%3A0015648","lipid-linked peptidoglycan transporter activity"],["GO%3A0034203","glycolipid translocation"],["GO%3A0015836","lipid-linked peptidoglycan transport"],["GO%3A0034204","lipid translocation"],["GO%3A0009252","peptidoglycan biosynthetic process"]]},{"id":"UniProt:P0A7L0","l":"Large ribosomal subunit protein uL1","na":1,"nb":10,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01169","50S ribosomal protein L1"],["InterPro%3AIPR023673","Large ribosomal subunit protein uL1, conserved site"],["CDD%3Acd00403","Ribosomal_L1"],["Pfam%3APF00687","Ribosomal protein L1p/L10e family"],["InterPro%3AIPR016095","Large ribosomal subunit protein uL1, 3-layer alpha/beta-sandwich domain"]]},{"id":"UniProt:P0A7M9","l":"Large ribosomal subunit protein bL31","na":1,"nb":10,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["GO%3A1904689","negative regulation of cytoplasmic translational initiation"],["NCBIfam%3ANF000612","50S ribosomal protein L31"],["NCBIfam%3ANF001809","50S ribosomal protein L31"],["NCBIfam%3ATIGR00105","50S ribosomal protein L31"],["Pfam%3APF01197","Ribosomal protein L31"]]},{"id":"UniProt:P0A7S9","l":"Small ribosomal subunit protein uS13","na":1,"nb":10,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR03631","30S ribosomal protein S13"],["InterPro%3AIPR018269","Small ribosomal subunit protein uS13, conserved site"],["Pfam%3APF00416","Ribosomal protein S13/S18"],["InterPro%3AIPR027437","Small ribosomal subunit protein uS13, C-terminal"],["InterPro%3AIPR010979","Small ribosomal subunit protein uS13-like, H2TH"]]},{"id":"UniProt:P0A7V3","l":"Small ribosomal subunit protein uS3","na":1,"nb":10,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR01009","30S ribosomal protein S3"],["InterPro%3AIPR018280","Small ribosomal subunit protein uS3, conserved site"],["CDD%3Acd02412","KH-II_30S_S3"],["InterPro%3AIPR001351","Small ribosomal subunit protein uS3, C-terminal"],["Pfam%3APF07650","KH domain"]]},{"id":"UniProt:P0A964","l":"","na":1,"nb":10,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["GO%3A0098561","methyl accepting chemotaxis protein complex"],["GO%3A0009454","aerotaxis"],["GO%3A0051649","establishment of localization in cell"],["NCBIfam%3ANF007903","chemotaxis protein CheW"],["CDD%3Acd00732","CheW"],["InterPro%3AIPR002545","CheW-like domain"]]},{"id":"UniProt:P0AB98","l":"","na":1,"nb":10,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["NCBIfam%3ANF004477","F0F1 ATP synthase subunit A"],["NCBIfam%3ATIGR01131","F0F1 ATP synthase subunit A"],["InterPro%3AIPR023011","ATP synthase, F0 complex, subunit A, active site"],["CDD%3Acd00310","ATP-synt_Fo_a_6"],["Pfam%3APF00119","ATP synthase A chain"]]},{"id":"UniProt:P0ABA6","l":"","na":1,"nb":10,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["GO%3A0042777","proton motive force-driven plasma membrane ATP synthesis"],["NCBIfam%3ATIGR01146","ATP synthase F1 subunit gamma"],["NCBIfam%3ANF004144","F0F1 ATP synthase subunit gamma"],["InterPro%3AIPR023632","ATP synthase, F1 complex, gamma subunit conserved site"],["CDD%3Acd12151","F1-ATPase_gamma"]]},{"id":"UniProt:P0ABB0","l":"","na":1,"nb":10,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["NCBIfam%3ANF009884","F0F1 ATP synthase subunit alpha"],["NCBIfam%3ATIGR00962","F0F1 ATP synthase subunit alpha"],["CDD%3Acd18113","ATP-synt_F1_alpha_C"],["CDD%3Acd18116","ATP-synt_F1_alpha_N"],["CDD%3Acd01132","F1-ATPase_alpha_CD"]]},{"id":"UniProt:P0AD65","l":"","na":1,"nb":10,"a":[["division_machinery/elongasome.html","elongasome"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["GO%3A0071972","peptidoglycan L,D-transpeptidase activity"],["NCBIfam%3ATIGR03423","penicillin-binding protein 2"],["NCBIfam%3ANF008061","peptidoglycan DD-transpeptidase MrdA"],["InterPro%3AIPR005311","Penicillin-binding protein, dimerisation domain"],["Pfam%3APF03717","Penicillin-binding Protein dimerisation domain"]]},{"id":"UniProt:P0ADY7","l":"Large ribosomal subunit protein uL16","na":1,"nb":10,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01164","50S ribosomal protein L16"],["InterPro%3AIPR020798","Large ribosomal subunit protein uL16, conserved site"],["CDD%3Acd01433","Ribosomal_L16_L10e"],["InterPro%3AIPR016180","Large ribosomal subunit protein uL16 domain"],["Pfam%3APF00252","Ribosomal protein L16p/L10e"]]},{"id":"UniProt:P28612","l":"","na":1,"nb":10,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0120101","bacterial-type flagellum stator complex"],["NCBIfam%3ANF005831","flagellar motor protein MotB"],["CDD%3Acd07185","OmpA_C-like"],["InterPro%3AIPR025713","Motility protein B-like, N-terminal domain"],["InterPro%3AIPR006665","OmpA-like domain"],["Pfam%3APF13677","Membrane MotB of proton-channel complex MotA/MotB"]]},{"id":"UniProt:P35620","l":"","na":1,"nb":10,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["NCBIfam%3ATIGR01398","flagellar biosynthesis protein FlhA"],["InterPro%3AIPR025505","FHIPEP conserved site"],["Pfam%3APF00771","FHIPEP family"],["InterPro%3AIPR042194","FHIPEP, domain 1"],["InterPro%3AIPR042193","FHIPEP, domain 3"],["InterPro%3AIPR042196","FHIPEP, domain 4"]]},{"id":"UniProt:P39064","l":"","na":1,"nb":10,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0120101","bacterial-type flagellum stator complex"],["NCBIfam%3ANF005382","flagellar motor protein MotS"],["CDD%3Acd07185","OmpA_C-like"],["InterPro%3AIPR025713","Motility protein B-like, N-terminal domain"],["InterPro%3AIPR006665","OmpA-like domain"],["Pfam%3APF13677","Membrane MotB of proton-channel complex MotA/MotB"]]},{"id":"UniProt:P62399","l":"Large ribosomal subunit protein uL5","na":1,"nb":10,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ANF000585","50S ribosomal protein L5"],["InterPro%3AIPR020929","Large ribosomal subunit protein uL5, conserved site"],["InterPro%3AIPR031309","Large ribosomal subunit protein uL5, C-terminal"],["InterPro%3AIPR031310","Large ribosomal subunit protein uL5, N-terminal"],["Pfam%3APF00673","ribosomal L5P family C-terminus"]]},{"id":"CHEBI:18248","l":"iron atom","na":1,"nb":9,"a":[["membrane_organelle/magnetosome.html","magnetosome"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18248","requires Fe"],["proteintraitsmech%3AMETALPDB_FE_DINUCLEAR","dinuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_HEPTANUCLEAR","heptanuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_HEXANUCLEAR","hexanuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_MONONUCLEAR","mononuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_OCTANUCLEAR","octanuclear iron site"]]},{"id":"GO:0008854","l":"exodeoxyribonuclease V activity","na":1,"nb":9,"a":[["other/exodeoxyribonuclease_v_complex.html","exodeoxyribonuclease V complex"]],"b":[["EC%3A3.1.11.5","exodeoxyribonuclease V"],["ComplexPortal%3ACPX-2197","Exodeoxyribonuclease V complex"],["GO%3A0008854","exodeoxyribonuclease V activity"],["NCBIfam%3ANF008127","exodeoxyribonuclease V subunit alpha"],["NCBIfam%3ATIGR01447","exodeoxyribonuclease V subunit alpha"],["NCBIfam%3ANF008128","exodeoxyribonuclease V subunit beta"]]},{"id":"GO:0016255","l":"attachment of GPI anchor to protein","na":1,"nb":9,"a":[["other/gpi_anchor_transamidase_complex.html","GPI-anchor transamidase complex"]],"b":[["ComplexPortal%3ACPX-10141","GPI-anchor transamidase complex"],["ComplexPortal%3ACPX-1275","GPI-anchor transamidase complex"],["ComplexPortal%3ACPX-2687","GPI-anchor transamidase complex"],["ComplexPortal%3ACPX-6503","GPI-anchor transamidase complex"],["GO%3A0016255","attachment of GPI anchor to protein"],["Reactome%3AR-HSA-162791","Attachment of GPI anchor to uPAR"]]},{"id":"GO:0020007","l":"apical complex","na":9,"nb":1,"a":[["cytoskeleton/conoid.html","conoid"],["cytoskeleton/intraconoid_microtubule.html","intraconoid microtubule"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["cytoskeleton/subpellicular_microtubule.html","subpellicular microtubule"],["membrane_organelle/exoneme.html","exoneme"],["membrane_organelle/microneme.html","microneme"]],"b":[["GO%3A0020007","apical complex"]]},{"id":"GO:0031105","l":"septin complex","na":1,"nb":9,"a":[["cytoskeleton/septin_ring.html","septin ring"]],"b":[["ComplexPortal%3ACPX-1675","Septin complex"],["ComplexPortal%3ACPX-25766","Septin complex, hexamer variant, SEPT2-SEPT6-SEPT-7"],["ComplexPortal%3ACPX-25761","Septin complex, octamer variant, SEPT2-SEPT6-SEPT-7-SEPT3"],["ComplexPortal%3ACPX-25758","Septin complex, octamer variant, SEPT2-SEPT6-SEPT-7-SEPT9"],["ComplexPortal%3ACPX-26526","Septin1-Septin2-pnut complex"],["ComplexPortal%3ACPX-26529","Septin4-Septin5-pnut complex"]]},{"id":"GO:0042144","l":"vacuole fusion, non-autophagic","na":1,"nb":9,"a":[["other/hops_complex.html","HOPS complex"]],"b":[["ComplexPortal%3ACPX-1136","HOPS tethering complex"],["ComplexPortal%3ACPX-1625","HOPS tethering complex"],["ComplexPortal%3ACPX-1278","LMA1 complex, TRX1 variant"],["ComplexPortal%3ACPX-1279","LMA1 complex, TRX2 variant"],["ComplexPortal%3ACPX-5401","Vacuolar SNARE complex VAM3-VTI1-VAM7-NYV1"],["GO%3A0042144","vacuole fusion, non-autophagic"]]},{"id":"GO:0042407","l":"cristae formation","na":1,"nb":9,"a":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"]],"b":[["ComplexPortal%3ACPX-140","MICOS mitochondrial contact site and cristae organizing system complex"],["ComplexPortal%3ACPX-25732","MICOS mitochondrial contact site and cristae organizing system complex, MIC10A variant"],["ComplexPortal%3ACPX-25733","MICOS mitochondrial contact site and cristae organizing system complex, MIC10B variant"],["ComplexPortal%3ACPX-25735","MICOS mitochondrial contact site and cristae organizing system complex, MIC10C variant"],["ComplexPortal%3ACPX-6141","MICOS mitochondrial contact site and cristae organizing system complex"],["GO%3A0042407","cristae formation"]]},{"id":"GO:0042765","l":"GPI-anchor transamidase complex","na":1,"nb":9,"a":[["other/gpi_anchor_transamidase_complex.html","GPI-anchor transamidase complex"]],"b":[["ComplexPortal%3ACPX-10141","GPI-anchor transamidase complex"],["ComplexPortal%3ACPX-1275","GPI-anchor transamidase complex"],["ComplexPortal%3ACPX-2687","GPI-anchor transamidase complex"],["ComplexPortal%3ACPX-6503","GPI-anchor transamidase complex"],["GO%3A0042765","GPI-anchor transamidase complex"],["Pfam%3APF04113","Gpi16 subunit, GPI transamidase component"]]},{"id":"GO:0097546","l":"ciliary base","na":1,"nb":9,"a":[["appendage/cilium.html","cilium"]],"b":[["GO%3A0097546","ciliary base"],["PANTHER%3APTHR38326","CHROMOSOME 11 OPEN READING FRAME 97"],["PANTHER%3APTHR31978","INTRAFLAGELLAR TRANSPORT PROTEIN 20 HOMOLOG"],["PANTHER%3APTHR14781","INTRAFLAGELLAR TRANSPORT PROTEIN 56"],["PANTHER%3APTHR44117","INTRAFLAGELLAR TRANSPORT PROTEIN 88 HOMOLOG"],["PANTHER%3APTHR21532","PHOSPHODIESTERASE HL"]]},{"id":"GO:1905354","l":"exoribonuclease complex","na":1,"nb":9,"a":[["ribonucleoprotein/exosome_rnase_complex.html","exosome (RNase complex)"]],"b":[["ComplexPortal%3ACPX-5783","MERS-CoV 3'-5' exoribonuclease proof-reading complex"],["ComplexPortal%3ACPX-5692","SARS-CoV-2 3'-5' exoribonuclease proof-reading complex"],["ComplexPortal%3ACPX-5707","SARS-CoV 3'-5' exoribonuclease proof-reading complex"],["GO%3A1905354","exoribonuclease complex"],["GO%3A0000178","exosome (RNase complex)"],["GO%3A0090730","Las1 complex"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":9,"a":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]],"b":[["Pfam%3APF07835","Bacterial aa3 type cytochrome c oxidase subunit IV"],["Pfam%3APF04828","Glutathione-dependent formaldehyde-activating enzyme"],["Pfam%3APF16448","LapD/MoxY periplasmic domain"],["Pfam%3APF17267","Family of unknown function (DUF5333)"],["Pfam%3APF17272","Family of unknown function (DUF5337)"],["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"]]},{"id":"NCBITaxon:79929","l":"Methanothermobacter marburgensis str. Marburg","na":1,"nb":9,"a":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]],"b":[["Pfam%3APF23902","PRS2 AAA+ lid C-terminal domain"],["Pfam%3APF02754","Cysteine-rich domain"],["Pfam%3APF12798","4Fe-4S binding domain"],["Pfam%3APF13183","4Fe-4S dicluster domain"],["Pfam%3APF22616","HMD N-terminal domain"],["Pfam%3APF03201","H2-forming N5,N10-methylene-tetrahydromethanopterin dehydrogenase"]]},{"id":"UniProt:P02358","l":"Small ribosomal subunit protein bS6","na":1,"nb":9,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR00166","30S ribosomal protein S6"],["InterPro%3AIPR020815","Small ribosomal subunit protein bS6, conserved site"],["CDD%3Acd00473","bS6"],["Pfam%3APF01250","Ribosomal protein S6"],["InterPro%3AIPR035980","Small ribosomal subunit protein bS6 superfamily"]]},{"id":"UniProt:P0A7L3","l":"Large ribosomal subunit protein bL20","na":1,"nb":9,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01032","50S ribosomal protein L20"],["InterPro%3AIPR049946","Large ribosomal subunit protein bL20, conserved site"],["CDD%3Acd07026","Ribosomal_L20"],["Pfam%3APF00453","Ribosomal protein L20"],["InterPro%3AIPR035566","Ribosomal protein bL20, C-terminal"]]},{"id":"UniProt:P0A9X4","l":"","na":1,"nb":9,"a":[["cytoskeleton/mreb_filament.html","MreB filament"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["GO%3A0099513","polymeric cytoskeletal fiber"],["GO%3A0043093","FtsZ-dependent cytokinesis"],["GO%3A0009252","peptidoglycan biosynthetic process"],["GO%3A0051983","regulation of chromosome segregation"],["NCBIfam%3ATIGR00904","MreB/Mrl family cell shape determining protein"]]},{"id":"UniProt:P0AA10","l":"Large ribosomal subunit protein uL13","na":1,"nb":9,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["GO%3A0070180","large ribosomal subunit rRNA binding"],["NCBIfam%3ATIGR01066","50S ribosomal protein L13"],["InterPro%3AIPR023563","Large ribosomal subunit protein uL13, conserved site"],["CDD%3Acd00392","Ribosomal_L13"],["Pfam%3APF00572","Ribosomal protein L13"]]},{"id":"UniProt:P0ADZ4","l":"Small ribosomal subunit protein uS15","na":1,"nb":9,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["GO%3A0070181","small ribosomal subunit rRNA binding"],["NCBIfam%3ATIGR00952","30S ribosomal protein S15"],["CDD%3Acd00353","Ribosomal_S15p_S13e"],["Pfam%3APF00312","Ribosomal protein S15"],["InterPro%3AIPR009068","uS15/NS1, RNA-binding domain superfamily"]]},{"id":"UniProt:P23453","l":"","na":1,"nb":9,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0009425","bacterial-type flagellum basal body"],["NCBIfam%3ATIGR01397","flagellar motor switch protein FliM"],["CDD%3Acd17908","FliM"],["InterPro%3AIPR001543","Flagellar motor switch protein FliN-like, C-terminal domain"],["Pfam%3APF02154","Flagellar motor switch protein FliM"],["InterPro%3AIPR028976","CheC-like superfamily"]]},{"id":"GO:0000917","l":"division septum assembly","na":1,"nb":8,"a":[["division_machinery/divisome_complex.html","divisome complex"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["GO%3A0000917","division septum assembly"],["GO%3A0140278","mitotic division septum assembly"],["NCBIfam%3ATIGR02205","cell division protein ZipA"],["NCBIfam%3ATIGR00172","Maf family nucleotide pyrophosphatase"],["PANTHER%3APTHR36419","ARRESTIN FAMILY PROTEIN 1"]]},{"id":"GO:0043591","l":"endospore external encapsulating structure","na":8,"nb":1,"a":[["spore/endospore_coat.html","endospore coat"],["spore/endospore_core.html","endospore core"],["spore/endospore_cortex.html","endospore cortex"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"],["spore/exosporium.html","exosporium"],["spore/microsporidian_type_endospore.html","microsporidian-type endospore"]],"b":[["GO%3A0043591","endospore external encapsulating structure"]]},{"id":"GO:0071816","l":"tail-anchored membrane protein insertion into ER membrane","na":1,"nb":8,"a":[["other/get_complex.html","GET complex"]],"b":[["ComplexPortal%3ACPX-2445","Endoplasmic reticulum membrane complex, EMC2A variant"],["ComplexPortal%3ACPX-2451","Endoplasmic reticulum membrane complex, EMC2B variant"],["ComplexPortal%3ACPX-5848","Endoplasmic reticulum membrane complex, EMC8 variant"],["ComplexPortal%3ACPX-5882","Endoplasmic reticulum membrane complex, EMC8 variant"],["ComplexPortal%3ACPX-5881","Endoplasmic reticulum membrane complex, EMC9 variant"],["ComplexPortal%3ACPX-5883","Endoplasmic reticulum membrane complex, EMC9 variant"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":8,"a":[["other/cellulosome.html","cellulosome"]],"b":[["Pfam%3APF02927","Cellulase N-terminal ig-like domain"],["Pfam%3APF00404","Dockerin type I domain"],["PROSITE%3APS00448","Clostridium cellulosome enzymes repeated domain signature"],["PROSITE%3APS60032","Glycosyl hydrolases family 9 (GH9) active site signature 1"],["PROSITE%3APS00592","Glycosyl hydrolases family 9 (GH9) active site signature 2"],["PROSITE%3APS00698","Glycosyl hydrolases family 9 (GH9) active site signature 3"]]},{"id":"NCBITaxon:572477","l":"Allochromatium vinosum DSM 180","na":1,"nb":8,"a":[["inclusion/sulfur_globule.html","sulfur globule"]],"b":[["Pfam%3APF01322","Cytochrome C'"],["Pfam%3APF02635","DsrE/DsrF-like family"],["Pfam%3APF21706","Sulfide dehydrogenase [flavocytochrome c] flavoprotein chain, central"],["Pfam%3APF09242","Flavocytochrome c sulphide dehydrogenase, flavin-binding"],["Pfam%3APF01355","High potential iron-sulfur protein"],["Pfam%3APF13686","DsrE/DsrF/DrsH-like family"]]},{"id":"UniProt:P05704","l":"","na":1,"nb":8,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["GO%3A0098561","methyl accepting chemotaxis protein complex"],["CDD%3Acd19407","Tar_Tsr_sensor"],["InterPro%3AIPR003122","Chemotaxis methyl-accepting receptor Tar-related, ligand-binding"],["Pfam%3APF02203","Tar ligand binding domain homologue"],["InterPro%3AIPR035440","Methyl-accepting chemotaxis protein, four helix bundle domain superfamily"],["PROSITE%3APS00538","Bacterial chemotaxis sensory transducers signature"]]},{"id":"UniProt:P07018","l":"","na":1,"nb":8,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["NCBIfam%3ANF007309","methyl-accepting chemotaxis protein IV"],["CDD%3Acd19407","Tar_Tsr_sensor"],["InterPro%3AIPR003122","Chemotaxis methyl-accepting receptor Tar-related, ligand-binding"],["Pfam%3APF02203","Tar ligand binding domain homologue"],["InterPro%3AIPR035440","Methyl-accepting chemotaxis protein, four helix bundle domain superfamily"],["PROSITE%3APS00538","Bacterial chemotaxis sensory transducers signature"]]},{"id":"UniProt:P0A7M6","l":"Large ribosomal subunit protein uL29","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00012","50S ribosomal protein L29"],["InterPro%3AIPR018254","Large ribosomal subunit protein uL29, conserved site"],["CDD%3Acd00427","Ribosomal_L29_HIP"],["Pfam%3APF00831","Ribosomal L29 protein"],["InterPro%3AIPR036049","Large ribosomal subunit protein uL29 superfamily"]]},{"id":"UniProt:P0A7N9","l":"Large ribosomal subunit protein bL33","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ANF001860","50S ribosomal protein L33"],["NCBIfam%3ATIGR01023","50S ribosomal protein L33"],["InterPro%3AIPR018264","Large ribosomal subunit protein bL33, conserved site"],["Pfam%3APF00471","Ribosomal protein L33"],["InterPro%3AIPR038584","Large ribosomal subunit protein bL33 superfamily"]]},{"id":"UniProt:P0A7R9","l":"Small ribosomal subunit protein uS11","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ANF003698","30S ribosomal protein S11"],["NCBIfam%3ATIGR03632","30S ribosomal protein S11"],["InterPro%3AIPR018102","Small ribosomal subunit protein uS11, conserved site"],["Pfam%3APF00411","Ribosomal protein S11"],["InterPro%3AIPR036967","Small ribosomal subunit protein uS11 superfamily"]]},{"id":"UniProt:P0A7W1","l":"Small ribosomal subunit protein uS5","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR01021","30S ribosomal protein S5"],["InterPro%3AIPR018192","Small ribosomal subunit protein uS5, N-terminal, conserved site"],["InterPro%3AIPR005324","Small ribosomal subunit protein uS5, C-terminal"],["InterPro%3AIPR013810","Small ribosomal subunit protein uS5, N-terminal"],["Pfam%3APF03719","Ribosomal protein S5, C-terminal domain"]]},{"id":"UniProt:P0A7W7","l":"Small ribosomal subunit protein uS8","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ANF001109","30S ribosomal protein S8"],["InterPro%3AIPR047863","Small ribosomal subunit protein uS8, conserved site"],["Pfam%3APF00410","Ribosomal protein S8"],["InterPro%3AIPR035987","Small ribosomal subunit protein uS8 superfamily"],["PROSITE%3APS00053","Ribosomal protein S8 signature"]]},{"id":"UniProt:P0A7Y8","l":"","na":1,"nb":8,"a":[["ribonucleoprotein/dimeric_ribonuclease_p_complex.html","dimeric ribonuclease P complex"]],"b":[["GO%3A0030677","ribonuclease P complex"],["GO%3A0042781","3'-tRNA processing endoribonuclease activity"],["NCBIfam%3ATIGR00188","ribonuclease P protein component"],["InterPro%3AIPR020539","Ribonuclease P, conserved site"],["Pfam%3APF00825","Ribonuclease P"],["InterPro%3AIPR014721","Small ribosomal subunit protein uS5 domain 2-type fold, subgroup"]]},{"id":"UniProt:P0ABA0","l":"","na":1,"nb":8,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["NCBIfam%3ANF004411","F0F1 ATP synthase subunit B"],["NCBIfam%3ANF004413","F0F1 ATP synthase subunit B"],["NCBIfam%3ATIGR01144","F0F1 ATP synthase subunit B"],["CDD%3Acd06503","ATP-synt_Fo_b"],["Pfam%3APF00430","ATP synthase B/B' CF(0)"]]},{"id":"UniProt:P0ABA4","l":"","na":1,"nb":8,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["NCBIfam%3ATIGR01145","ATP synthase F1 subunit delta"],["NCBIfam%3ANF004402","F0F1 ATP synthase subunit delta"],["NCBIfam%3ANF004404","F0F1 ATP synthase subunit delta"],["InterPro%3AIPR020781","ATPase, OSCP/delta subunit, conserved site"],["Pfam%3APF00213","ATP synthase delta (OSCP) subunit"]]},{"id":"UniProt:P0ABG7","l":"","na":1,"nb":8,"a":[["division_machinery/elongasome.html","elongasome"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["GO%3A0015648","lipid-linked peptidoglycan transporter activity"],["GO%3A0031504","peptidoglycan-based cell wall organization"],["NCBIfam%3ANF008060","peptidoglycan glycosyltransferase MrdB"],["NCBIfam%3ATIGR02210","rod shape-determining protein RodA"],["InterPro%3AIPR018365","Cell cycle, FtsW / RodA / SpoVE, conserved site"]]},{"id":"UniProt:P0ABH0","l":"","na":1,"nb":8,"a":[["division_machinery/divisome_complex.html","divisome complex"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["NCBIfam%3ANF007009","cell division protein FtsA"],["NCBIfam%3ATIGR01174","cell division protein FtsA"],["CDD%3Acd24048","ASKHA_NBD_FtsA"],["InterPro%3AIPR003494","SHS2 domain inserted in FtsA"],["Pfam%3APF14450","Cell division protein FtsA"]]},{"id":"UniProt:P0ABJ6","l":"","na":1,"nb":8,"a":[["energy_complex/cytochrome_o_ubiquinol_oxidase_complex.html","cytochrome o ubiquinol oxidase complex"]],"b":[["ComplexPortal%3ACPX-2102","Cytochrome bo3 ubiquinol oxidase complex"],["GO%3A0009319","cytochrome o ubiquinol oxidase complex"],["GO%3A0009486","cytochrome bo3 ubiquinol oxidase activity"],["GO%3A0015453","oxidoreduction-driven active transmembrane transporter activity"],["GO%3A0015990","electron transport coupled proton transport"],["NCBIfam%3ANF007878","cytochrome o ubiquinol oxidase subunit IV"]]},{"id":"UniProt:P0ADY3","l":"Large ribosomal subunit protein uL14","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01067","50S ribosomal protein L14"],["InterPro%3AIPR019972","Large ribosomal subunit protein uL14, conserved site"],["CDD%3Acd00337","Ribosomal_uL14"],["Pfam%3APF00238","Ribosomal protein L14p/L23e"],["InterPro%3AIPR036853","Large ribosomal subunit protein uL14 superfamily"]]},{"id":"UniProt:P0AG51","l":"Large ribosomal subunit protein uL30","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01308","50S ribosomal protein L30"],["InterPro%3AIPR018038","Large ribosomal subunit protein uL30, conserved site"],["CDD%3Acd01658","Ribosomal_L30"],["InterPro%3AIPR016082","Large ribosomal subunit protein uL30-like, ferredoxin-like fold domain"],["Pfam%3APF00327","Ribosomal protein L30p/L7e"]]},{"id":"UniProt:P0AG55","l":"Large ribosomal subunit protein uL6","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR03654","50S ribosomal protein L6"],["InterPro%3AIPR002358","Large ribosomal subunit protein uL6, conserved site"],["InterPro%3AIPR020040","Large ribosomal subunit protein uL6, alpha-beta domain"],["Pfam%3APF00347","Ribosomal protein L6"],["InterPro%3AIPR036789","Large ribosomal subunit protein uL6-like, alpha-beta domain superfamily"]]},{"id":"UniProt:P16926","l":"","na":1,"nb":8,"a":[["division_machinery/elongasome.html","elongasome"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["NCBIfam%3ATIGR00219","rod shape-determining protein MreC"],["InterPro%3AIPR055342","Rod shape-determining protein MreC, beta-barrel core"],["Pfam%3APF04085","Rod shape-determining protein MreC, barrel core"],["InterPro%3AIPR042177","Cell/Rod shape-determining protein MreC, domain 1"],["InterPro%3AIPR042175","Cell/Rod shape-determining protein MreC, domain 2"]]},{"id":"UniProt:P60624","l":"Large ribosomal subunit protein uL24","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01079","50S ribosomal protein L24"],["InterPro%3AIPR005825","Large ribosomal subunit protein uL24, conserved site"],["CDD%3Acd06089","KOW_RPL26"],["InterPro%3AIPR057264","Large ribosomal subunit protein uL24, C-terminal domain"],["InterPro%3AIPR041988","Large ribosomal subunit protein uL24, KOW domain"]]},{"id":"UniProt:P68919","l":"Large ribosomal subunit protein bL25","na":1,"nb":8,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ANF004612","50S ribosomal protein L25"],["CDD%3Acd00495","Ribosomal_L25_TL5_CTC"],["InterPro%3AIPR029751","Large ribosomal subunit protein bL25, L25 domain"],["Pfam%3APF01386","Ribosomal L25p family"],["InterPro%3AIPR011035","Large ribosomal subunit protein bL25/Gln-tRNA synthetase, anti-codon-binding domain superfamily"]]},{"id":"GO:0006901","l":"vesicle coat assembly","na":1,"nb":7,"a":[["other/vesicle_coat.html","vesicle coat"]],"b":[["ComplexPortal%3ACPX-4764","TRAPP II complex"],["ComplexPortal%3ACPX-4749","TRAPP II complex, TRAPPC2 variant"],["ComplexPortal%3ACPX-6902","TRAPP II complex, TRAPPC2B variant"],["GO%3A0048208","COPII vesicle coat assembly"],["GO%3A0048200","Golgi transport vesicle coating"],["GO%3A0016183","synaptic vesicle coating"]]},{"id":"GO:0009338","l":"exodeoxyribonuclease V complex","na":1,"nb":7,"a":[["other/exodeoxyribonuclease_v_complex.html","exodeoxyribonuclease V complex"]],"b":[["ComplexPortal%3ACPX-2197","Exodeoxyribonuclease V complex"],["GO%3A0009338","exodeoxyribonuclease V complex"],["NCBIfam%3ANF008127","exodeoxyribonuclease V subunit alpha"],["NCBIfam%3ATIGR01447","exodeoxyribonuclease V subunit alpha"],["NCBIfam%3ATIGR00609","exodeoxyribonuclease V subunit beta"],["NCBIfam%3ANF008289","exodeoxyribonuclease V subunit gamma"]]},{"id":"GO:0030128","l":"clathrin coat of endocytic vesicle","na":7,"nb":1,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle.html","clathrin-coated endocytic vesicle"],["membrane_organelle/clathrin_coated_endocytic_vesicle_membrane.html","clathrin-coated endocytic vesicle membrane"],["membrane_organelle/endocytic_vesicle.html","endocytic vesicle"],["membrane_organelle/endocytic_vesicle_membrane.html","endocytic vesicle membrane"],["other/ap_2_adaptor_complex.html","AP-2 adaptor complex"],["other/clathrin_coat_of_coated_pit.html","clathrin coat of coated pit"]],"b":[["GO%3A0030128","clathrin coat of endocytic vesicle"]]},{"id":"GO:0030897","l":"HOPS complex","na":1,"nb":7,"a":[["other/hops_complex.html","HOPS complex"]],"b":[["ComplexPortal%3ACPX-1136","HOPS tethering complex"],["ComplexPortal%3ACPX-1625","HOPS tethering complex"],["ComplexPortal%3ACPX-6212","HOPS tethering complex"],["ComplexPortal%3ACPX-936","HOPS tethering complex"],["GO%3A0030897","HOPS complex"],["GO%3A1902502","multivesicular body HOPS complex"]]},{"id":"GO:0032156","l":"septin cytoskeleton","na":1,"nb":7,"a":[["cytoskeleton/septin_ring.html","septin ring"]],"b":[["GO%3A0150050","postsynaptic septin cytoskeleton"],["GO%3A0032159","septin cap"],["GO%3A0032173","septin collar"],["GO%3A0032156","septin cytoskeleton"],["GO%3A0032160","septin filament array"],["GO%3A0005940","septin ring"]]},{"id":"GO:0033115","l":"cyanelle thylakoid membrane","na":7,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/cyanelle_thylakoid_lumen.html","cyanelle thylakoid lumen"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"]],"b":[["GO%3A0033115","cyanelle thylakoid membrane"]]},{"id":"GO:0035964","l":"COPI-coated vesicle budding","na":7,"nb":1,"a":[["membrane_organelle/copi_coated_vesicle.html","COPI-coated vesicle"],["membrane_organelle/copi_coated_vesicle_membrane.html","COPI-coated vesicle membrane"],["membrane_organelle/golgi_associated_vesicle.html","Golgi-associated vesicle"],["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"],["membrane_organelle/golgi_membrane.html","Golgi membrane"],["other/copi_vesicle_coat.html","COPI vesicle coat"]],"b":[["GO%3A0035964","COPI-coated vesicle budding"]]},{"id":"GO:0043953","l":"protein transport by the Tat complex","na":1,"nb":7,"a":[["secretion_system/tat_protein_transport_complex.html","TAT protein transport complex"]],"b":[["ComplexPortal%3ACPX-3445","Twin-arginine translocation complex"],["GO%3A0043953","protein transport by the Tat complex"],["NCBIfam%3ANF001854","Sec-independent protein translocase subunit TatA"],["NCBIfam%3ANF002813","Sec-independent protein translocase subunit TatA"],["NCBIfam%3ATIGR01912","Sec-independent protein translocase TatC"],["NCBIfam%3ANF001940","twin-arginine translocase TatA/TatE family subunit"]]},{"id":"GO:0097540","l":"axonemal central pair","na":7,"nb":1,"a":[["cytoskeleton/axonemal_central_apparatus.html","axonemal central apparatus"],["cytoskeleton/axonemal_central_pair.html","axonemal central pair"],["cytoskeleton/axonemal_central_pair_projection.html","axonemal central pair projection"],["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"],["cytoskeleton/c1_axonemal_microtubule.html","C1 axonemal microtubule"],["cytoskeleton/c2_axonemal_microtubule.html","C2 axonemal microtubule"]],"b":[["GO%3A0097540","axonemal central pair"]]},{"id":"GO:0097597","l":"ventral disc","na":7,"nb":1,"a":[["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_crossbridge.html","ventral disc crossbridge"],["cytoskeleton/ventral_disc_dorsal_microribbon.html","ventral disc dorsal microribbon"],["cytoskeleton/ventral_disc_lateral_crest.html","ventral disc lateral crest"],["cytoskeleton/ventral_disc_microtubule_array.html","ventral disc microtubule array"],["cytoskeleton/ventral_disc_overlap_zone.html","ventral disc overlap zone"]],"b":[["GO%3A0097597","ventral disc"]]},{"id":"GO:0097649","l":"A axonemal microtubule","na":7,"nb":1,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_a_tubule_inner_sheath.html","axonemal A tubule inner sheath"],["cytoskeleton/axonemal_doublet_microtubule.html","axonemal doublet microtubule"],["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"],["cytoskeleton/axonemal_microtubule_doublet_inner_junction.html","axonemal microtubule doublet inner junction"],["cytoskeleton/axonemal_microtubule_doublet_outer_junction.html","axonemal microtubule doublet outer junction"]],"b":[["GO%3A0097649","A axonemal microtubule"]]},{"id":"GO:0097650","l":"B axonemal microtubule","na":7,"nb":1,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_b_tubule_inner_sheath.html","axonemal B tubule inner sheath"],["cytoskeleton/axonemal_doublet_microtubule.html","axonemal doublet microtubule"],["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"],["cytoskeleton/axonemal_microtubule_doublet_inner_junction.html","axonemal microtubule doublet inner junction"],["cytoskeleton/axonemal_microtubule_doublet_outer_junction.html","axonemal microtubule doublet outer junction"]],"b":[["GO%3A0097650","B axonemal microtubule"]]},{"id":"InterPro:IPR001119","l":"S-layer homology domain","na":1,"nb":7,"a":[["envelope/s_layer.html","S-layer"]],"b":[["InterPro%3AIPR011459","Domain of unknown function DUF1565"],["InterPro%3AIPR001119","S-layer homology domain"],["Pfam%3APF13205","Bacterial Ig-like domain"],["Pfam%3APF03424","Carbohydrate binding domain (family 17/28)"],["Pfam%3APF06452","Carbohydrate family 9 binding domain-like"],["Pfam%3APF07602","Protein of unknown function (DUF1565)"]]},{"id":"InterPro:IPR001241","l":"","na":1,"nb":7,"a":[["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["Pfam%3APF00204","DNA gyrase B"],["Pfam%3APF00521","DNA gyrase/topoisomerase IV, subunit A"],["Pfam%3APF21249","GyrB, hook"],["Pfam%3APF18053","DNA gyrase B subunit insert domain"],["Pfam%3APF00986","DNA gyrase B subunit, carboxyl terminus"],["Pfam%3APF08070","DTHCT (NUC029) region"]]},{"id":"InterPro:IPR004489","l":"","na":1,"nb":7,"a":[["energy_complex/fumarate_reductase_complex.html","fumarate reductase complex"]],"b":[["Pfam%3APF02754","Cysteine-rich domain"],["Pfam%3APF13085","2Fe-2S iron-sulfur cluster binding domain"],["Pfam%3APF13237","4Fe-4S dicluster domain"],["Pfam%3APF13534","4Fe-4S dicluster domain"],["Pfam%3APF13183","4Fe-4S dicluster domain"],["PROSITE%3APS00197","2Fe-2S ferredoxin-type iron-sulfur binding region signature"]]},{"id":"NCBITaxon:837","l":"Porphyromonas gingivalis","na":1,"nb":7,"a":[["secretion_system/type_ix_protein_secretion_system_complex.html","type IX protein secretion system complex"]],"b":[["Pfam%3APF07675","Cleaved Adhesin Domain"],["Pfam%3APF22492","FimA4 pilin C-terminal domain"],["Pfam%3APF15495","Major fimbrial subunit protein type IV, Fimbrillin, C-terminal"],["Pfam%3APF26306","FimD protein third domain"],["Pfam%3APF27397","FimE C-terminal domain"],["Pfam%3APF10365","Domain of unknown function (DUF2436)"]]},{"id":"Pfam:PF04728","l":"Lipoprotein leucine-zipper","na":1,"nb":7,"a":[["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"]],"b":[["GO%3A0043580","periplasmic space organization"],["NCBIfam%3ANF007428","lipoprotein YqhH"],["NCBIfam%3ANF040598","Lpp/OprI family alanine-zipper lipoprotein"],["NCBIfam%3ANF011925","major outer membrane lipoprotein"],["InterPro%3AIPR006817","Lipoprotein leucine-zipper"],["Pfam%3APF04728","Lipoprotein leucine-zipper"]]},{"id":"UniProt:P0A7K6","l":"Large ribosomal subunit protein bL19","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01024","50S ribosomal protein L19"],["InterPro%3AIPR018257","Large ribosomal subunit protein bL19, conserved site"],["Pfam%3APF01245","Ribosomal protein L19"],["InterPro%3AIPR038657","Large ribosomal subunit protein bL19 superfamily"],["PROSITE%3APS01015","Ribosomal protein L19 signature"]]},{"id":"UniProt:P0A7N1","l":"Large ribosomal subunit protein bL31B","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00105","50S ribosomal protein L31"],["NCBIfam%3ANF002462","type B 50S ribosomal protein L31"],["Pfam%3APF01197","Ribosomal protein L31"],["InterPro%3AIPR042105","Large ribosomal subunit protein bL31 superfamily"],["PROSITE%3APS01143","Ribosomal protein L31 signature"]]},{"id":"UniProt:P0A7Q1","l":"Large ribosomal subunit protein bL35","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00001","50S ribosomal protein L35"],["InterPro%3AIPR018265","Large ribosomal subunit protein bL35, conserved site"],["Pfam%3APF01632","Ribosomal protein L35"],["InterPro%3AIPR037229","Large ribosomal subunit protein bL35 superfamily"],["PROSITE%3APS00936","Ribosomal protein L35 signature"]]},{"id":"UniProt:P0A7T3","l":"Small ribosomal subunit protein bS16","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR00002","30S ribosomal protein S16"],["InterPro%3AIPR020592","Small ribosomal subunit protein bS16, conserved site"],["Pfam%3APF00886","Ribosomal protein S16"],["InterPro%3AIPR023803","Small ribosomal subunit protein bS16 domain superfamily"],["PROSITE%3APS00732","Ribosomal protein S16 signature"]]},{"id":"UniProt:P0A7T7","l":"Small ribosomal subunit protein bS18","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR00165","30S ribosomal protein S18"],["InterPro%3AIPR018275","Small ribosomal subunit protein bS18, conserved site"],["Pfam%3APF01084","Ribosomal protein S18"],["InterPro%3AIPR036870","Small ribosomal subunit protein bS18 superfamily"],["PROSITE%3APS00057","Ribosomal protein S18 signature"]]},{"id":"UniProt:P0A7U3","l":"Small ribosomal subunit protein uS19","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR01050","30S ribosomal protein S19"],["InterPro%3AIPR020934","Small ribosomal subunit protein uS19, conserved site"],["Pfam%3APF00203","Ribosomal protein S19"],["InterPro%3AIPR023575","Small ribosomal subunit protein uS19, superfamily"],["PROSITE%3APS00323","Ribosomal protein S19 signature"]]},{"id":"UniProt:P0A7U7","l":"Small ribosomal subunit protein bS20","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["GO%3A0008073","ornithine decarboxylase inhibitor activity"],["GO%3A0070181","small ribosomal subunit rRNA binding"],["NCBIfam%3ATIGR00029","30S ribosomal protein S20"],["Pfam%3APF01649","Ribosomal protein S20"],["InterPro%3AIPR036510","Small ribosomal subunit protein bS20 superfamily"]]},{"id":"UniProt:P0A9A6","l":"","na":1,"nb":7,"a":[["division_machinery/divisome_complex.html","divisome complex"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["NCBIfam%3ATIGR00065","cell division protein FtsZ"],["InterPro%3AIPR020805","Cell division protein FtsZ, conserved site"],["CDD%3Acd02201","FtsZ_type1"],["InterPro%3AIPR024757","Cell division protein FtsZ, C-terminal"],["PROSITE%3APS01134","FtsZ protein signature 1"]]},{"id":"UniProt:P0AG44","l":"Large ribosomal subunit protein bL17","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00059","50S ribosomal protein L17"],["InterPro%3AIPR047859","Large ribosomal subunit protein bL17, conserved site"],["Pfam%3APF01196","Ribosomal protein L17"],["InterPro%3AIPR036373","Large ribosomal subunit protein bL17 superfamily"],["PROSITE%3APS01167","Ribosomal protein L17 signature"]]},{"id":"UniProt:P0AG63","l":"Small ribosomal subunit protein uS17","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ANF004123","30S ribosomal protein S17"],["NCBIfam%3ATIGR03635","30S ribosomal protein S17"],["InterPro%3AIPR019979","Small ribosomal subunit protein uS17, conserved site"],["CDD%3Acd00364","Ribosomal_uS17"],["Pfam%3APF00366","Ribosomal protein S17"]]},{"id":"UniProt:P0AGE0","l":"","na":1,"nb":7,"a":[["other/single_stranded_dna_binding_protein_complex.html","single-stranded DNA-binding protein complex"]],"b":[["ComplexPortal%3ACPX-1928","SSB single-stranded DNA binding complex"],["GO%3A0044777","single-stranded DNA-binding protein complex"],["NCBIfam%3ANF006533","single-stranded DNA-binding protein"],["NCBIfam%3ATIGR00621","single-stranded DNA-binding protein"],["CDD%3Acd04496","SSB_OBF"],["Pfam%3APF00436","Single-strand binding protein family"]]},{"id":"UniProt:P23447","l":"","na":1,"nb":7,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0009431","bacterial-type flagellum basal body, MS ring"],["NCBIfam%3ATIGR00206","flagellar basal-body MS-ring/collar protein FliF"],["InterPro%3AIPR013556","Flagellar M-ring C-terminal"],["InterPro%3AIPR006182","Flagellar M-ring, N-terminal"],["Pfam%3APF08345","Flagellar M-ring protein C-terminal"],["Pfam%3APF01514","Secretory protein of YscJ/FliF RBM domain"]]},{"id":"UniProt:P28611","l":"","na":1,"nb":7,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["NCBIfam%3ANF005997","flagellar motor stator protein MotA"],["InterPro%3AIPR000540","Flagellar motor protein MotA, conserved site"],["InterPro%3AIPR002898","MotA/TolQ/ExbB proton channel"],["InterPro%3AIPR046786","Motility protein A, N-terminal"],["Pfam%3APF20560","Motility protein A N-terminal"],["Pfam%3APF01618","MotA/TolQ/ExbB proton channel family"]]},{"id":"UniProt:P68679","l":"Small ribosomal subunit protein bS21","na":1,"nb":7,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR00030","30S ribosomal protein S21"],["InterPro%3AIPR018278","Small ribosomal subunit protein bS21, conserved site"],["Pfam%3APF01165","Ribosomal protein S21"],["InterPro%3AIPR038380","Small ribosomal subunit protein bS21 superfamily"],["PROSITE%3APS01181","Ribosomal protein S21 signature"]]},{"id":"UniProt:P77173","l":"","na":1,"nb":7,"a":[["division_machinery/divisome_complex.html","divisome complex"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["NCBIfam%3ATIGR02205","cell division protein ZipA"],["CDD%3Acd00231","ZipA"],["InterPro%3AIPR007449","ZipA, C-terminal FtsZ-binding domain"],["Pfam%3APF04354","ZipA, C-terminal FtsZ-binding domain"],["InterPro%3AIPR036765","ZipA, C-terminal FtsZ-binding domain superfamily"]]},{"id":"CHEBI:35915","l":"","na":1,"nb":6,"a":[["inclusion/lipid_droplet.html","lipid droplet"]],"b":[["EC%3A2.3.1.43","phosphatidylcholine--sterol O-acyltransferase"],["EC%3A2.3.1.73","diacylglycerol--sterol O-acyltransferase"],["EC%3A3.1.1.13","sterol esterase"],["RHEA%3A21204","a sterol + a 1,2-diacyl-sn-glycero-3-phosphocholine = a sterol ester + a 1-acyl-sn-glycero-3-phosphocholine"],["RHEA%3A13301","a sterol + a 1,2-diacyl-sn-glycerol = a sterol ester + a 1-acyl-sn-glycerol"],["RHEA%3A10100","a sterol ester + H2O = a sterol + a fatty acid + H(+)"]]},{"id":"GO:0000133","l":"polarisome","na":1,"nb":6,"a":[["other/polarisome.html","polarisome"]],"b":[["ComplexPortal%3ACPX-3188","Polarisome"],["GO%3A0031560","cellular bud neck polarisome"],["GO%3A0031561","cellular bud tip polarisome"],["GO%3A0031562","hyphal tip polarisome"],["GO%3A0031563","mating projection tip polarisome"],["GO%3A0000133","polarisome"]]},{"id":"GO:0000148","l":"1,3-beta-D-glucan synthase complex","na":1,"nb":6,"a":[["other/1_3_beta_d_glucan_synthase_complex.html","1,3-beta-D-glucan synthase complex"]],"b":[["ComplexPortal%3ACPX-1812","1,3-beta-D-glucan synthase complex, FKS1-RHO1 variant"],["ComplexPortal%3ACPX-1813","1,3-beta-D-glucan synthase complex, FKS2-RHO1 variant"],["ComplexPortal%3ACPX-3028","1,3-beta-D-glucan synthase complex, FKS3-RHO1 variant"],["GO%3A0000148","1,3-beta-D-glucan synthase complex"],["InterPro%3AIPR003440","Glycosyl transferase 48 domain"],["Pfam%3APF02364","1,3-beta-glucan synthase component"]]},{"id":"GO:0000938","l":"GARP complex","na":1,"nb":6,"a":[["other/garp_complex.html","GARP complex"]],"b":[["ComplexPortal%3ACPX-1718","GARP tethering complex"],["ComplexPortal%3ACPX-365","GARP tethering complex"],["ComplexPortal%3ACPX-6208","GARP tethering complex"],["ComplexPortal%3ACPX-2788","GARP tethering complex, Vps50 variant"],["ComplexPortal%3ACPX-2793","GARP tethering complex, Vps54 variant"],["GO%3A0000938","GARP complex"]]},{"id":"GO:0001401","l":"SAM complex","na":1,"nb":6,"a":[["other/sam_complex.html","SAM complex"]],"b":[["ComplexPortal%3ACPX-1744","Mitochondrial sorting and assembly machinery complex"],["ComplexPortal%3ACPX-6133","SAM mitochondrial sorting and assembly machinery complex"],["GO%3A0001401","SAM complex"],["InterPro%3AIPR019564","Mitochondrial outer membrane transport complex Sam37/metaxin, N-terminal domain"],["NCBIfam%3ANF022041","Tom37 metaxin N-terminal-like domain-containing protein"],["Pfam%3APF10568","Outer mitochondrial membrane transport complex protein"]]},{"id":"GO:0005693","l":"U12 snRNP","na":6,"nb":1,"a":[["ribonucleoprotein/u11_u12_snrnp.html","U11/U12 snRNP"],["ribonucleoprotein/u12_snrnp.html","U12 snRNP"],["ribonucleoprotein/u12_type_catalytic_step_1_spliceosome.html","U12-type catalytic step 1 spliceosome"],["ribonucleoprotein/u12_type_catalytic_step_2_spliceosome.html","U12-type catalytic step 2 spliceosome"],["ribonucleoprotein/u12_type_post_mrna_release_spliceosomal_complex.html","U12-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u12_type_post_spliceosomal_complex.html","U12-type post-spliceosomal complex"]],"b":[["GO%3A0005693","U12 snRNP"]]},{"id":"GO:0006797","l":"polyphosphate metabolic process","na":1,"nb":6,"a":[["membrane_organelle/acidocalcisome.html","acidocalcisome"]],"b":[["GO%3A0006799","polyphosphate biosynthetic process"],["GO%3A0006798","polyphosphate catabolic process"],["GO%3A0006797","polyphosphate metabolic process"],["NCBIfam%3ANF042973","ADP-polyphosphate phosphotransferase"],["NCBIfam%3ATIGR03708","polyphosphate:AMP phosphotransferase"],["NCBIfam%3ATIGR03709","PPK2 family polyphosphate kinase"]]},{"id":"GO:0006998","l":"nuclear envelope organization","na":1,"nb":6,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"]],"b":[["ComplexPortal%3ACPX-1787","Nem1-Spo7 phosphatase complex"],["GO%3A0006998","nuclear envelope organization"],["GO%3A0018985","pronuclear envelope synthesis"],["PANTHER%3APTHR47808","INNER NUCLEAR MEMBRANE PROTEIN HEH2-RELATED"],["PANTHER%3APTHR28538","INTEGRAL INNER NUCLEAR MEMBRANE PROTEIN IMA1"],["PANTHER%3APTHR28136","NUCLEUS EXPORT PROTEIN BRR6"]]},{"id":"GO:0009843","l":"cyanelle thylakoid","na":6,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/cyanelle_thylakoid_lumen.html","cyanelle thylakoid lumen"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"],["membrane_organelle/plastid_thylakoid.html","plastid thylakoid"]],"b":[["GO%3A0009843","cyanelle thylakoid"]]},{"id":"GO:0020008","l":"rhoptry","na":6,"nb":1,"a":[["membrane_organelle/mononeme.html","mononeme"],["membrane_organelle/rhoptry.html","rhoptry"],["membrane_organelle/rhoptry_lumen.html","rhoptry lumen"],["membrane_organelle/rhoptry_membrane.html","rhoptry membrane"],["membrane_organelle/rhoptry_neck.html","rhoptry neck"],["other/apical_complex.html","apical complex"]],"b":[["GO%3A0020008","rhoptry"]]},{"id":"GO:0033112","l":"cyanelle envelope","na":6,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"]],"b":[["GO%3A0033112","cyanelle envelope"]]},{"id":"GO:0033114","l":"cyanelle thylakoid lumen","na":6,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/cyanelle_thylakoid_lumen.html","cyanelle thylakoid lumen"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"],["membrane_organelle/plastid_thylakoid_lumen.html","plastid thylakoid lumen"]],"b":[["GO%3A0033114","cyanelle thylakoid lumen"]]},{"id":"GO:0036012","l":"cyanelle inner membrane","na":6,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"]],"b":[["GO%3A0036012","cyanelle inner membrane"]]},{"id":"GO:0038203","l":"TORC2 signaling","na":1,"nb":6,"a":[["other/torc2_complex.html","TORC2 complex"]],"b":[["ComplexPortal%3ACPX-2269","TORC2 complex"],["ComplexPortal%3ACPX-26513","TORC2 serine/threonine protein kinase complex"],["GO%3A0038203","TORC2 signaling"],["PANTHER%3APTHR13298","CYTOSOLIC REGULATOR PIANISSIMO"],["PANTHER%3APTHR32428","TARGET OF RAPAMYCIN COMPLEX 2 SUBUNIT BIT61-RELATED"],["PANTHER%3APTHR13335","TARGET OF RAPAMYCIN COMPLEX 2 SUBUNIT MAPKAP1"]]},{"id":"GO:0043264","l":"extracellular membraneless organelle","na":1,"nb":6,"a":[["other/cellulosome.html","cellulosome"]],"b":[["GO%3A0043263","cellulosome"],["GO%3A0043264","extracellular membraneless organelle"],["GO%3A0140644","neutrophil extracellular trap"],["GO%3A0055040","periplasmic flagellum"],["GO%3A0055039","trichocyst"],["GO%3A0085026","tubovesicular membrane network"]]},{"id":"GO:0043595","l":"endospore cortex","na":6,"nb":1,"a":[["spore/endospore_coat.html","endospore coat"],["spore/endospore_core.html","endospore core"],["spore/endospore_cortex.html","endospore cortex"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"],["spore/outer_endospore_membrane.html","outer endospore membrane"],["spore/spore_inner_membrane.html","spore inner membrane"]],"b":[["GO%3A0043595","endospore cortex"]]},{"id":"GO:0070111","l":"organellar chromatophore","na":6,"nb":1,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_inner_membrane.html","organellar chromatophore inner membrane"],["membrane_organelle/organellar_chromatophore_intermembrane_space.html","organellar chromatophore intermembrane space"],["membrane_organelle/organellar_chromatophore_membrane.html","organellar chromatophore membrane"],["membrane_organelle/organellar_chromatophore_outer_membrane.html","organellar chromatophore outer membrane"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"]],"b":[["GO%3A0070111","organellar chromatophore"]]},{"id":"GO:0070118","l":"organellar chromatophore thylakoid membrane","na":6,"nb":1,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_membrane.html","organellar chromatophore membrane"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"],["membrane_organelle/organellar_chromatophore_thylakoid_lumen.html","organellar chromatophore thylakoid lumen"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"],["membrane_organelle/plastid_thylakoid_membrane.html","plastid thylakoid membrane"]],"b":[["GO%3A0070118","organellar chromatophore thylakoid membrane"]]},{"id":"NCBITaxon:1430","l":"Bacillus thuringiensis serovar israelensis","na":1,"nb":6,"a":[["inclusion/parasporal_crystal.html","parasporal crystal"]],"b":[["Pfam%3APF01338","Bacillus thuringiensis toxin"],["Pfam%3APF17997","Insecticidal delta-endotoxin CryIA(c) domain 5"],["Pfam%3APF21463","Cry1Ac, domain VII"],["Pfam%3APF03944","delta endotoxin"],["Pfam%3APF03945","delta endotoxin, N-terminal domain"],["Pfam%3APF00555","delta endotoxin"]]},{"id":"NCBITaxon:5141","l":"Neurospora crassa","na":6,"nb":1,"a":[["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysomal_membrane.html","glyoxysomal membrane"],["membrane_organelle/glyoxysome.html","glyoxysome"],["membrane_organelle/woronin_body.html","Woronin body"],["other/polarisome.html","polarisome"],["other/spitzenkorper.html","spitzenkorper"]],"b":[["TED%3AAF-A0A0B0E1R4-F1-model_v4_TED01","TED novel fold AF-A0A0B0E1R4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:5911","l":"Tetrahymena thermophila","na":6,"nb":1,"a":[["cytoskeleton/axonemal_microtubule_doublet_outer_junction.html","axonemal microtubule doublet outer junction"],["membrane_organelle/macronucleus.html","macronucleus"],["membrane_organelle/micronucleus.html","micronucleus"],["membrane_organelle/mucocyst.html","mucocyst"],["other/ap_3_adaptor_complex.html","AP-3 adaptor complex"],["other/ap_type_membrane_coat_adaptor_complex.html","AP-type membrane coat adaptor complex"]],"b":[["Pfam%3APF10699","Male gamete fusion factor"]]},{"id":"UniProt:P02968","l":"","na":1,"nb":6,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["NCBIfam%3ANF009446","flagellin Hag"],["InterPro%3AIPR046358","Flagellin, C-terminal domain"],["InterPro%3AIPR001029","Flagellin, N-terminal domain"],["Pfam%3APF00700","Bacterial flagellin C-terminal helical region"],["Pfam%3APF00669","Bacterial flagellin N-terminal helical region"],["CATH%3A1.20.1330.10","f41 fragment of flagellin, N-terminal domain"]]},{"id":"UniProt:P0A7M2","l":"Large ribosomal subunit protein bL28","na":1,"nb":6,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00009","50S ribosomal protein L28"],["Pfam%3APF00830","Ribosomal L28 family"],["InterPro%3AIPR034704","Large ribosomal subunit protein bL28/bL31-like superfamily"],["InterPro%3AIPR037147","Large ribosomal subunit protein bL28 superfamily"],["CATH%3A2.30.170.40","Ribosomal protein L28/L24"]]},{"id":"UniProt:P0A7P5","l":"Large ribosomal subunit protein bL34","na":1,"nb":6,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01030","50S ribosomal protein L34"],["InterPro%3AIPR020939","Large ribosomal subunit protein bL34, conserved site"],["Pfam%3APF00468","Ribosomal protein L34"],["PROSITE%3APS00784","Ribosomal protein L34 signature"],["CATH%3A1.10.287.3980","CATH homologous superfamily 1.10.287.3980"]]},{"id":"UniProt:P0ADZ0","l":"Large ribosomal subunit protein uL23","na":1,"nb":6,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ANF004358","50S ribosomal protein L23"],["NCBIfam%3ANF004359","50S ribosomal protein L23"],["NCBIfam%3ANF004363","50S ribosomal protein L23"],["InterPro%3AIPR001014","Large ribosomal subunit protein uL23, conserved site"],["PROSITE%3APS00050","Ribosomal protein L23 signature"]]},{"id":"UniProt:P0AG48","l":"Large ribosomal subunit protein bL21","na":1,"nb":6,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00061","50S ribosomal protein L21"],["InterPro%3AIPR018258","Large ribosomal subunit protein bL21, conserved site"],["Pfam%3APF00829","Ribosomal prokaryotic L21 protein"],["InterPro%3AIPR036164","Large ribosomal subunit protein bL21-like superfamily"],["PROSITE%3APS01169","Ribosomal protein L21 signature"]]},{"id":"UniProt:P0AG59","l":"Small ribosomal subunit protein uS14","na":1,"nb":6,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ANF006477","30S ribosomal protein S14"],["InterPro%3AIPR018271","Small ribosomal subunit protein uS14, conserved site"],["Pfam%3APF00253","Ribosomal protein S14p/S29e"],["PROSITE%3APS00527","Ribosomal protein S14 signature"],["CATH%3A1.10.287.1480","CATH homologous superfamily 1.10.287.1480"]]},{"id":"UniProt:P24500","l":"","na":1,"nb":6,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0030694","bacterial-type flagellum basal body, rod"],["NCBIfam%3ATIGR01396","flagellar basal body rod protein FlgB"],["InterPro%3AIPR019776","Flagellar basal body rod protein, conserved site"],["InterPro%3AIPR001444","Flagellar basal body rod protein, N-terminal"],["Pfam%3APF00460","Flagella basal body rod protein"],["PROSITE%3APS00588","Flagella basal body rod proteins signature"]]},{"id":"UniProt:P35528","l":"","na":1,"nb":6,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0009425","bacterial-type flagellum basal body"],["NCBIfam%3ANF009438","EscR/YscR/HrcR family type III secretion system export apparatus protein"],["NCBIfam%3ATIGR01103","flagellar type III secretion system pore protein FliP"],["Pfam%3APF00813","FliP family"],["PROSITE%3APS01060","Flagella transport protein fliP family signature 1"],["PROSITE%3APS01061","Flagella transport protein fliP family signature 2"]]},{"id":"UniProt:P69776","l":"","na":1,"nb":6,"a":[["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"]],"b":[["GO%3A0043580","periplasmic space organization"],["NCBIfam%3ANF040598","Lpp/OprI family alanine-zipper lipoprotein"],["NCBIfam%3ANF011925","major outer membrane lipoprotein"],["proteintraitsmech%3AMEROPS_CLEAVAGE_A08_001","signal peptidase II cleavage specificity"],["InterPro%3AIPR006817","Lipoprotein leucine-zipper"],["Pfam%3APF04728","Lipoprotein leucine-zipper"]]},{"id":"GO:0000171","l":"ribonuclease MRP activity","na":1,"nb":5,"a":[["ribonucleoprotein/ribonuclease_mrp_complex.html","ribonuclease MRP complex"]],"b":[["ComplexPortal%3ACPX-2629","Ribonuclease MRP complex"],["ComplexPortal%3ACPX-26688","Ribonuclease MRP complex"],["ComplexPortal%3ACPX-2876","Ribonuclease MRP complex"],["ComplexPortal%3ACPX-3284","Ribonuclease MRP complex"],["GO%3A0000171","ribonuclease MRP activity"]]},{"id":"GO:0005630","l":"dityrosine layer of spore wall","na":5,"nb":1,"a":[["spore/ascospore_wall.html","ascospore wall"],["spore/chitosan_layer_of_spore_wall.html","chitosan layer of spore wall"],["spore/dityrosine_layer_of_spore_wall.html","dityrosine layer of spore wall"],["spore/inner_layer_of_spore_wall.html","inner layer of spore wall"],["spore/isp3_layer_of_spore_wall.html","Isp3 layer of spore wall"]],"b":[["GO%3A0005630","dityrosine layer of spore wall"]]},{"id":"GO:0005631","l":"chitosan layer of spore wall","na":5,"nb":1,"a":[["spore/ascospore_wall.html","ascospore wall"],["spore/chitosan_layer_of_spore_wall.html","chitosan layer of spore wall"],["spore/dityrosine_layer_of_spore_wall.html","dityrosine layer of spore wall"],["spore/inner_layer_of_spore_wall.html","inner layer of spore wall"],["spore/isp3_layer_of_spore_wall.html","Isp3 layer of spore wall"]],"b":[["GO%3A0005631","chitosan layer of spore wall"]]},{"id":"GO:0009420","l":"bacterial-type flagellum filament","na":5,"nb":1,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["GO%3A0009420","bacterial-type flagellum filament"]]},{"id":"GO:0016610","l":"nitrogenase complex","na":1,"nb":5,"a":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"]],"b":[["GO%3A0016611","iron-iron nitrogenase complex"],["GO%3A0016612","molybdenum-iron nitrogenase complex"],["GO%3A0016610","nitrogenase complex"],["GO%3A0016613","vanadium-iron nitrogenase complex"],["NCBIfam%3ATIGR01287","nitrogenase iron protein"]]},{"id":"GO:0020009","l":"microneme","na":5,"nb":1,"a":[["membrane_organelle/microneme.html","microneme"],["membrane_organelle/microneme_lumen.html","microneme lumen"],["membrane_organelle/microneme_membrane.html","microneme membrane"],["membrane_organelle/mononeme.html","mononeme"],["other/apical_complex.html","apical complex"]],"b":[["GO%3A0020009","microneme"]]},{"id":"GO:0030075","l":"bacterial thylakoid","na":5,"nb":1,"a":[["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_lumen.html","plasma membrane-derived thylakoid lumen"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"]],"b":[["GO%3A0030075","bacterial thylakoid"]]},{"id":"GO:0031522","l":"cell envelope Sec protein transport complex","na":1,"nb":5,"a":[["secretion_system/secyeg_translocon_complex.html","SecYEG translocon complex"]],"b":[["ComplexPortal%3ACPX-1095","Holo-translocon SecYEG-SecDF-YajC-YidC complex"],["ComplexPortal%3ACPX-1096","Protein-conducting channel SecYEG complex"],["GO%3A0031522","cell envelope Sec protein transport complex"],["NCBIfam%3ATIGR01129","protein translocase subunit SecD"],["NCBIfam%3ATIGR00966","protein translocase subunit SecF"]]},{"id":"GO:0031676","l":"plasma membrane-derived thylakoid membrane","na":5,"nb":1,"a":[["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_lumen.html","plasma membrane-derived thylakoid lumen"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"]],"b":[["GO%3A0031676","plasma membrane-derived thylakoid membrane"]]},{"id":"GO:0033263","l":"CORVET complex","na":1,"nb":5,"a":[["other/corvet_complex.html","CORVET complex"]],"b":[["ComplexPortal%3ACPX-1137","CORVET tethering complex"],["ComplexPortal%3ACPX-1626","CORVET tethering complex"],["ComplexPortal%3ACPX-6213","CORVET tethering complex"],["ComplexPortal%3ACPX-8877","CORVET tethering complex"],["GO%3A0033263","CORVET complex"]]},{"id":"GO:0034982","l":"mitochondrial protein processing","na":1,"nb":5,"a":[["other/mitochondrial_inner_membrane_peptidase_complex.html","mitochondrial inner membrane peptidase complex"]],"b":[["ComplexPortal%3ACPX-10319","m-AAA protease complex, AFG3L2-SPG7 variant"],["ComplexPortal%3ACPX-10318","m-AAA protease complex, AFG3L2 variant"],["GO%3A0034982","mitochondrial protein processing"],["PANTHER%3APTHR21711","MITOCHONDRIAL INNER MEMBRANE PROTEASE"],["PANTHER%3APTHR46041","MITOCHONDRIAL INNER MEMBRANE PROTEASE SUBUNIT 2"]]},{"id":"GO:0035632","l":"mitochondrial prohibitin complex","na":1,"nb":5,"a":[["other/mitochondrial_prohibitin_complex.html","mitochondrial prohibitin complex"]],"b":[["ComplexPortal%3ACPX-1703","Prohibitin complex"],["ComplexPortal%3ACPX-4114","Prohibitin complex"],["ComplexPortal%3ACPX-5741","Prohibitin complex"],["ComplexPortal%3ACPX-5743","Prohibitin complex"],["GO%3A0035632","mitochondrial prohibitin complex"]]},{"id":"GO:0036013","l":"cyanelle outer membrane","na":5,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"]],"b":[["GO%3A0036013","cyanelle outer membrane"]]},{"id":"GO:0036014","l":"cyanelle intermembrane space","na":5,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"]],"b":[["GO%3A0036014","cyanelle intermembrane space"]]},{"id":"GO:0043291","l":"RAVE complex","na":1,"nb":5,"a":[["other/rave_complex.html","RAVE complex"]],"b":[["ComplexPortal%3ACPX-1627","RAVE complex"],["ComplexPortal%3ACPX-25781","RAVE complex"],["ComplexPortal%3ACPX-10301","RAVE complex, DMXL1 variant"],["ComplexPortal%3ACPX-10303","RAVE complex, DMXL2 variant"],["GO%3A0043291","RAVE complex"]]},{"id":"GO:0043684","l":"type IV secretion system complex","na":1,"nb":5,"a":[["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]],"b":[["GO%3A0043684","type IV secretion system complex"],["NCBIfam%3ANF049884","Dot/Icm T4SS effector Ceg23"],["NCBIfam%3ATIGR02788","P-type DNA transfer ATPase VirB11"],["NCBIfam%3ATIGR02791","P-type DNA transfer protein VirB5"],["NCBIfam%3ANF047983","T4SS effector phosphatidylinositol 3-Kinase RisK1"]]},{"id":"GO:0046336","l":"ethanolamine catabolic process","na":1,"nb":5,"a":[["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"]],"b":[["ComplexPortal%3ACPX-2313","Ethanolamine ammonia-lyase complex"],["GO%3A0046336","ethanolamine catabolic process"],["NCBIfam%3ATIGR04502","ethanolamine utilization microcompartment protein EutL"],["NCBIfam%3ATIGR02526","ethanolamine utilization microcompartment shell protein"],["NCBIfam%3ATIGR02528","EutP/PduV family microcompartment system protein"]]},{"id":"GO:0050215","l":"propanediol dehydratase activity","na":1,"nb":5,"a":[["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]],"b":[["EC%3A4.2.1.28","propanediol dehydratase"],["RHEA%3A14569","propane-1,2-diol = propanal + H2O"],["GO%3A0050215","propanediol dehydratase activity"],["MCSA%3A494","propanediol dehydratase"],["proteintraitsmech%3ABIOLIP_FWK","FWK-binding site"]]},{"id":"GO:0071256","l":"translocon complex","na":1,"nb":5,"a":[["other/ssh1_translocon_complex.html","Ssh1 translocon complex"]],"b":[["ComplexPortal%3ACPX-8024","Translocon-associated protein complex"],["ComplexPortal%3ACPX-3055","Translocon complex"],["GO%3A0005784","Sec61 translocon complex"],["GO%3A0071261","Ssh1 translocon complex"],["GO%3A0071256","translocon complex"]]},{"id":"GO:0097593","l":"ventral disc microtubule array","na":5,"nb":1,"a":[["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_dorsal_microribbon.html","ventral disc dorsal microribbon"],["cytoskeleton/ventral_disc_microtubule_array.html","ventral disc microtubule array"],["cytoskeleton/ventral_disc_overlap_zone.html","ventral disc overlap zone"],["cytoskeleton/ventral_disc_supernumerary_microtubule_array.html","ventral disc supernumerary microtubule array"]],"b":[["GO%3A0097593","ventral disc microtubule array"]]},{"id":"GO:1990717","l":"axonemal central bridge","na":5,"nb":1,"a":[["cytoskeleton/axonemal_central_apparatus.html","axonemal central apparatus"],["cytoskeleton/axonemal_central_bridge.html","axonemal central bridge"],["cytoskeleton/axonemal_central_pair.html","axonemal central pair"],["cytoskeleton/c1_axonemal_microtubule.html","C1 axonemal microtubule"],["cytoskeleton/c2_axonemal_microtubule.html","C2 axonemal microtubule"]],"b":[["GO%3A1990717","axonemal central bridge"]]},{"id":"GO:1990719","l":"C1 axonemal microtubule","na":5,"nb":1,"a":[["cytoskeleton/axonemal_central_bridge.html","axonemal central bridge"],["cytoskeleton/axonemal_central_pair.html","axonemal central pair"],["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"],["cytoskeleton/c1_axonemal_microtubule.html","C1 axonemal microtubule"],["cytoskeleton/c2_axonemal_microtubule.html","C2 axonemal microtubule"]],"b":[["GO%3A1990719","C1 axonemal microtubule"]]},{"id":"GO:1990720","l":"C2 axonemal microtubule","na":5,"nb":1,"a":[["cytoskeleton/axonemal_central_bridge.html","axonemal central bridge"],["cytoskeleton/axonemal_central_pair.html","axonemal central pair"],["cytoskeleton/axonemal_microtubule.html","axonemal microtubule"],["cytoskeleton/c1_axonemal_microtubule.html","C1 axonemal microtubule"],["cytoskeleton/c2_axonemal_microtubule.html","C2 axonemal microtubule"]],"b":[["GO%3A1990720","C2 axonemal microtubule"]]},{"id":"InterPro:IPR000090","l":"","na":1,"nb":5,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]],"b":[["Pfam%3APF01706","FliG C-terminal domain"],["PANTHER%3APTHR30534","FLAGELLAR MOTOR SWITCH PROTEIN FLIG"],["Pfam%3APF14841","FliG middle domain"],["Pfam%3APF14842","FliG N-terminal domain"],["PRINTS%3APR00954","Flagellar motor switch protein FliG signature"]]},{"id":"InterPro:IPR045187","l":"","na":1,"nb":5,"a":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]],"b":[["Pfam%3APF00116","Cytochrome C oxidase subunit II, periplasmic domain"],["PANTHER%3APTHR22888","CYTOCHROME C OXIDASE, SUBUNIT II"],["Pfam%3APF02790","Cytochrome C oxidase subunit II, transmembrane domain"],["Pfam%3APF06481","COX Aromatic Rich Motif"],["PROSITE%3APS00078","CO II and nitrous oxide reductase dinuclear copper centers signature"]]},{"id":"UniProt:I6WZG6","l":"","na":1,"nb":5,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]],"b":[["IEDB%3A197918","epitope AARTFKRHIAGRRVV"],["IEDB%3A213387","epitope KPLVRLRVPFTLSRN"],["IEDB%3A218534","epitope RTIFEGYSAASIEGI"],["IEDB%3A219874","epitope TEAAWAEIELEAART"],["Pfam%3APF04454","Encapsulating protein for peroxidase"]]},{"id":"UniProt:I6Y4U9","l":"","na":1,"nb":5,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]],"b":[["IEDB%3A200082","epitope AGSCYVHVQKYVHDM"],["IEDB%3A203626","epitope AVTGGLFFSPTIDFL"],["IEDB%3A205003","epitope DGTERKIVRHNMPFG"],["IEDB%3A211489","epitope HGFRFFDNRDLLGFV"],["IEDB%3A212746","epitope IVRHNMPFGEVGKGE"]]},{"id":"UniProt:P02413","l":"Large ribosomal subunit protein uL15","na":1,"nb":5,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01071","50S ribosomal protein L15"],["InterPro%3AIPR001196","Large ribosomal subunit protein uL15, conserved site"],["Pfam%3APF00828","Ribosomal proteins 50S-L15, 50S-L18e, 60S-L27A"],["PROSITE%3APS00475","Ribosomal protein L15 signature"]]},{"id":"UniProt:P0A7Q6","l":"Large ribosomal subunit protein bL36A","na":1,"nb":5,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01022","50S ribosomal protein L36"],["Pfam%3APF00444","Ribosomal protein L36"],["InterPro%3AIPR035977","Large ribosomal subunit protein bL36 superfamily"],["PROSITE%3APS00828","Ribosomal protein L36 signature"]]},{"id":"UniProt:P0A7X3","l":"Small ribosomal subunit protein uS9","na":1,"nb":5,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ANF001099","30S ribosomal protein S9"],["InterPro%3AIPR020574","Small ribosomal subunit protein uS9, conserved site"],["Pfam%3APF00380","Ribosomal protein S9/S16"],["PROSITE%3APS00360","Ribosomal protein S9 signature"]]},{"id":"UniProt:P24501","l":"","na":1,"nb":5,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0030694","bacterial-type flagellum basal body, rod"],["NCBIfam%3ATIGR01395","flagellar basal body rod protein FlgC"],["InterPro%3AIPR019776","Flagellar basal body rod protein, conserved site"],["InterPro%3AIPR010930","Flagellar basal-body/hook protein, C-terminal domain"],["InterPro%3AIPR001444","Flagellar basal body rod protein, N-terminal"]]},{"id":"UniProt:P35538","l":"","na":1,"nb":5,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["NCBIfam%3ATIGR00328","flagellar biosynthesis protein FlhB"],["Pfam%3APF01312","FlhB HrpN YscU SpaS Family"],["InterPro%3AIPR029025","Type III secretion system substrate exporter, C-terminal"],["CATH%3A6.10.250.2080","CATH homologous superfamily 6.10.250.2080"],["CATH%3A3.40.1690.10","secretion proteins EscU"]]},{"id":"UniProt:P39063","l":"","na":1,"nb":5,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["NCBIfam%3ANF005383","flagellar motor protein MotP"],["InterPro%3AIPR000540","Flagellar motor protein MotA, conserved site"],["InterPro%3AIPR002898","MotA/TolQ/ExbB proton channel"],["Pfam%3APF01618","MotA/TolQ/ExbB proton channel family"],["PROSITE%3APS01307","Flagellar motor protein motA family signature"]]},{"id":"UniProt:P60438","l":"Large ribosomal subunit protein uL3","na":1,"nb":5,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR03625","50S ribosomal protein L3"],["InterPro%3AIPR019926","Large ribosomal subunit protein uL3, conserved site"],["Pfam%3APF00297","Ribosomal protein L3"],["CATH%3A3.30.160.810","CATH homologous superfamily 3.30.160.810"]]},{"id":"GO:0000328","l":"fungal-type vacuole lumen","na":4,"nb":1,"a":[["membrane_organelle/fungal_type_vacuole.html","fungal-type vacuole"],["membrane_organelle/fungal_type_vacuole_lumen.html","fungal-type vacuole lumen"],["membrane_organelle/fungal_type_vacuole_membrane.html","fungal-type vacuole membrane"],["membrane_organelle/vacuole.html","vacuole"]],"b":[["GO%3A0000328","fungal-type vacuole lumen"]]},{"id":"GO:0000331","l":"contractile vacuole","na":4,"nb":1,"a":[["membrane_organelle/contractile_vacuolar_membrane.html","contractile vacuolar membrane"],["membrane_organelle/contractile_vacuole.html","contractile vacuole"],["membrane_organelle/contractile_vacuole_complex.html","contractile vacuole complex"],["membrane_organelle/contractile_vacuole_lumen.html","contractile vacuole lumen"]],"b":[["GO%3A0000331","contractile vacuole"]]},{"id":"GO:0000935","l":"division septum","na":1,"nb":4,"a":[["envelope/division_septum.html","division septum"]],"b":[["ComplexPortal%3ACPX-4602","FtsEX ABC cell division complex"],["GO%3A0000935","division septum"],["GO%3A0000936","primary cell septum"],["GO%3A0051077","secondary cell septum"]]},{"id":"GO:0001535","l":"radial spoke head","na":1,"nb":4,"a":[["cytoskeleton/radial_spoke.html","radial spoke"]],"b":[["GO%3A0120336","radial spoke head 1"],["GO%3A0120337","radial spoke head 2"],["GO%3A0120338","radial spoke head 3"],["GO%3A0001535","radial spoke head"]]},{"id":"GO:0005641","l":"nuclear envelope lumen","na":4,"nb":1,"a":[["membrane_organelle/nuclear_envelope.html","nuclear envelope"],["membrane_organelle/nuclear_envelope_lumen.html","nuclear envelope lumen"],["membrane_organelle/nuclear_inner_membrane.html","nuclear inner membrane"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"]],"b":[["GO%3A0005641","nuclear envelope lumen"]]},{"id":"GO:0005832","l":"chaperonin-containing T-complex","na":1,"nb":4,"a":[["other/chaperonin_containing_t_complex.html","chaperonin-containing T-complex"]],"b":[["ComplexPortal%3ACPX-2156","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-2772","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-6030","Chaperonin-containing T-complex"],["GO%3A0005832","chaperonin-containing T-complex"]]},{"id":"GO:0005933","l":"cellular bud","na":4,"nb":1,"a":[["envelope/cellular_bud_membrane.html","cellular bud membrane"],["other/cellular_bud.html","cellular bud"],["other/cellular_bud_neck.html","cellular bud neck"],["other/cellular_bud_tip.html","cellular bud tip"]],"b":[["GO%3A0005933","cellular bud"]]},{"id":"GO:0006909","l":"phagocytosis","na":1,"nb":4,"a":[["membrane_organelle/phagocytic_vesicle.html","phagocytic vesicle"]],"b":[["GO%3A0043277","apoptotic cell clearance"],["GO%3A0006909","phagocytosis"],["Reactome%3AR-HSA-9664417","Leishmania phagocytosis"],["InterPro%3AIPR034889","Neutrophil cytosol factor 2, SH3 domain"]]},{"id":"GO:0009543","l":"chloroplast thylakoid lumen","na":4,"nb":1,"a":[["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"],["membrane_organelle/chloroplast_thylakoid.html","chloroplast thylakoid"],["membrane_organelle/chloroplast_thylakoid_lumen.html","chloroplast thylakoid lumen"],["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"]],"b":[["GO%3A0009543","chloroplast thylakoid lumen"]]},{"id":"GO:0009842","l":"cyanelle","na":4,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"]],"b":[["GO%3A0009842","cyanelle"]]},{"id":"GO:0010006","l":"Toc complex","na":4,"nb":1,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["other/tic_complex.html","Tic complex"],["other/toc_complex.html","Toc complex"]],"b":[["GO%3A0010006","Toc complex"]]},{"id":"GO:0020031","l":"polar ring of apical complex","na":4,"nb":1,"a":[["cytoskeleton/intraconoid_microtubule.html","intraconoid microtubule"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["cytoskeleton/subpellicular_microtubule.html","subpellicular microtubule"],["other/apical_complex.html","apical complex"]],"b":[["GO%3A0020031","polar ring of apical complex"]]},{"id":"GO:0030094","l":"plasma membrane-derived photosystem I","na":4,"nb":1,"a":[["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["GO%3A0030094","plasma membrane-derived photosystem I"]]},{"id":"GO:0030115","l":"S-layer","na":1,"nb":4,"a":[["envelope/s_layer.html","S-layer"]],"b":[["GO%3A0030115","S-layer"],["NCBIfam%3ANF041335","ArtA-dependent S-layer glycoprotein"],["NCBIfam%3ANF053619","BT1927 family outer membrane S-layer protein"],["NCBIfam%3ANF041073","S-layer protein SlaA"]]},{"id":"GO:0030476","l":"ascospore wall assembly","na":1,"nb":4,"a":[["spore/ascospore_wall.html","ascospore wall"]],"b":[["ComplexPortal%3ACPX-1812","1,3-beta-D-glucan synthase complex, FKS1-RHO1 variant"],["ComplexPortal%3ACPX-1813","1,3-beta-D-glucan synthase complex, FKS2-RHO1 variant"],["ComplexPortal%3ACPX-3028","1,3-beta-D-glucan synthase complex, FKS3-RHO1 variant"],["GO%3A0030476","ascospore wall assembly"]]},{"id":"GO:0030678","l":"mitochondrial ribonuclease P complex","na":1,"nb":4,"a":[["ribonucleoprotein/dimeric_ribonuclease_p_complex.html","dimeric ribonuclease P complex"]],"b":[["ComplexPortal%3ACPX-1294","Mitochondrial ribonuclease P complex"],["ComplexPortal%3ACPX-2632","Mitochondrial ribonuclease P complex"],["ComplexPortal%3ACPX-6155","Mitochondrial ribonuclease P complex"],["GO%3A0030678","mitochondrial ribonuclease P complex"]]},{"id":"GO:0031429","l":"box H/ACA snoRNP complex","na":1,"nb":4,"a":[["other/nucleolus.html","nucleolus"]],"b":[["ComplexPortal%3ACPX-26592","Box H/ACA ribonucleoprotein complex"],["ComplexPortal%3ACPX-2675","Box H/ACA ribonucleoprotein complex"],["ComplexPortal%3ACPX-737","Box H/ACA ribonucleoprotein complex"],["GO%3A0031429","box H/ACA snoRNP complex"]]},{"id":"GO:0031897","l":"Tic complex","na":4,"nb":1,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["other/tic_complex.html","Tic complex"],["other/toc_complex.html","Toc complex"]],"b":[["GO%3A0031897","Tic complex"]]},{"id":"GO:0031972","l":"chloroplast intermembrane space","na":4,"nb":1,"a":[["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_inner_membrane.html","chloroplast inner membrane"],["membrane_organelle/chloroplast_intermembrane_space.html","chloroplast intermembrane space"],["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"]],"b":[["GO%3A0031972","chloroplast intermembrane space"]]},{"id":"GO:0031977","l":"thylakoid lumen","na":1,"nb":4,"a":[["membrane_organelle/plastid_thylakoid_lumen.html","plastid thylakoid lumen"]],"b":[["GO%3A0070117","organellar chromatophore thylakoid lumen"],["GO%3A0031979","plasma membrane-derived thylakoid lumen"],["GO%3A0031978","plastid thylakoid lumen"],["GO%3A0031977","thylakoid lumen"]]},{"id":"GO:0032865","l":"ERMES complex","na":1,"nb":4,"a":[["other/ermes_complex.html","ERMES complex"]],"b":[["ComplexPortal%3ACPX-3196","ERMES complex"],["GO%3A0032865","ERMES complex"],["Pfam%3APF26544","Mitochondrial distribution and morphology protein 12"],["Pfam%3APF12519","Mitochondrial distribution and morphology protein 10"]]},{"id":"GO:0033962","l":"P-body assembly","na":1,"nb":4,"a":[["ribonucleoprotein/p_body.html","P-body"]],"b":[["GO%3A0033962","P-body assembly"],["PANTHER%3APTHR13612","ENHANCER OF MRNA-DECAPPING PROTEIN 3"],["PANTHER%3APTHR21551","TOPOISOMERASE II-ASSOCIATED PROTEIN PAT1"],["PANTHER%3APTHR13110","U6 SNRNA-ASSOCIATED SM-LIKE PROTEIN LSM3"]]},{"id":"GO:0034060","l":"cyanelle stroma","na":4,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_stroma.html","cyanelle stroma"]],"b":[["GO%3A0034060","cyanelle stroma"]]},{"id":"GO:0036156","l":"inner dynein arm","na":4,"nb":1,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_dynein_complex.html","axonemal dynein complex"],["cytoskeleton/axoneme.html","axoneme"],["cytoskeleton/inner_dynein_arm.html","inner dynein arm"]],"b":[["GO%3A0036156","inner dynein arm"]]},{"id":"GO:0036157","l":"outer dynein arm","na":4,"nb":1,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_dynein_complex.html","axonemal dynein complex"],["cytoskeleton/axoneme.html","axoneme"],["cytoskeleton/outer_dynein_arm.html","outer dynein arm"]],"b":[["GO%3A0036157","outer dynein arm"]]},{"id":"GO:0042720","l":"mitochondrial inner membrane peptidase complex","na":1,"nb":4,"a":[["other/mitochondrial_inner_membrane_peptidase_complex.html","mitochondrial inner membrane peptidase complex"]],"b":[["ComplexPortal%3ACPX-1892","Mitochondrial inner membrane peptidase complex"],["ComplexPortal%3ACPX-6244","Mitochondrial inner membrane peptidase complex"],["GO%3A0042720","mitochondrial inner membrane peptidase complex"],["Pfam%3APF11093","Mitochondrial export protein Som1"]]},{"id":"GO:0042721","l":"TIM22 mitochondrial import inner membrane insertion complex","na":1,"nb":4,"a":[["other/tim22_mitochondrial_import_inner_membrane_insertion_complex.html","TIM22 mitochondrial import inner membrane insertion complex"]],"b":[["ComplexPortal%3ACPX-1629","TIM22 mitochondrial inner membrane twin-pore carrier translocase complex"],["ComplexPortal%3ACPX-6124","TIM22 mitochondrial inner membrane twin-pore carrier translocase complex"],["GO%3A0042721","TIM22 mitochondrial import inner membrane insertion complex"],["Pfam%3APF10171","Translocase of the Inner Mitochondrial membrane 29"]]},{"id":"GO:0043107","l":"type IV pilus-dependent motility","na":1,"nb":4,"a":[["appendage/type_iv_pilus.html","type IV pilus"]],"b":[["GO%3A0043107","type IV pilus-dependent motility"],["NCBIfam%3ATIGR01420","PilT/PilU family type 4a pilus ATPase"],["NCBIfam%3ANF016253","type 4a pilus biogenesis protein PilO"],["Pfam%3APF04350","Type IVa pilus alignment subcomplex PilO C-terminal domain"]]},{"id":"GO:0044099","l":"polar tube","na":4,"nb":1,"a":[["membrane_organelle/microsporidian_posterior_vacuole.html","microsporidian posterior vacuole"],["membrane_organelle/polaroplast.html","polaroplast"],["spore/polar_tube.html","polar tube"],["spore/polar_tube_anchoring_disc.html","polar tube anchoring disc"]],"b":[["GO%3A0044099","polar tube"]]},{"id":"GO:0044853","l":"plasma membrane raft","na":1,"nb":4,"a":[["envelope/eisosome_membrane_domain_mcc.html","eisosome membrane domain/MCC"]],"b":[["GO%3A0005901","caveola"],["GO%3A0090512","eisosome membrane domain/MCC"],["GO%3A0044853","plasma membrane raft"],["PANTHER%3APTHR16529","CD177 ANTIGEN"]]},{"id":"GO:0060285","l":"cilium-dependent cell motility","na":1,"nb":4,"a":[["appendage/cilium.html","cilium"]],"b":[["GO%3A0060285","cilium-dependent cell motility"],["GO%3A0030317","flagellated sperm motility"],["PANTHER%3APTHR18962","COILED-COIL DOMAIN-CONTAINING PROTEIN 39"],["PANTHER%3APTHR21625","NYD-SP28 PROTEIN"]]},{"id":"GO:0070113","l":"organellar chromatophore inner membrane","na":4,"nb":1,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_inner_membrane.html","organellar chromatophore inner membrane"],["membrane_organelle/organellar_chromatophore_intermembrane_space.html","organellar chromatophore intermembrane space"],["membrane_organelle/organellar_chromatophore_membrane.html","organellar chromatophore membrane"]],"b":[["GO%3A0070113","organellar chromatophore inner membrane"]]},{"id":"GO:0070114","l":"organellar chromatophore outer membrane","na":4,"nb":1,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_intermembrane_space.html","organellar chromatophore intermembrane space"],["membrane_organelle/organellar_chromatophore_membrane.html","organellar chromatophore membrane"],["membrane_organelle/organellar_chromatophore_outer_membrane.html","organellar chromatophore outer membrane"]],"b":[["GO%3A0070114","organellar chromatophore outer membrane"]]},{"id":"GO:0070116","l":"organellar chromatophore thylakoid","na":4,"nb":1,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"],["membrane_organelle/organellar_chromatophore_thylakoid_lumen.html","organellar chromatophore thylakoid lumen"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"]],"b":[["GO%3A0070116","organellar chromatophore thylakoid"]]},{"id":"GO:0070117","l":"organellar chromatophore thylakoid lumen","na":4,"nb":1,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"],["membrane_organelle/organellar_chromatophore_thylakoid_lumen.html","organellar chromatophore thylakoid lumen"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"]],"b":[["GO%3A0070117","organellar chromatophore thylakoid lumen"]]},{"id":"GO:0070939","l":"Dsl1/NZR complex","na":1,"nb":4,"a":[["other/dsl1_nzr_complex.html","Dsl1/NZR complex"]],"b":[["ComplexPortal%3ACPX-1786","Dsl1 tethering complex"],["ComplexPortal%3ACPX-6201","NRZ tethering complex"],["GO%3A0070939","Dsl1/NZR complex"],["Pfam%3APF04437","RINT-1/TIP-1 family"]]},{"id":"GO:0071020","l":"post-spliceosomal complex","na":1,"nb":4,"a":[["ribonucleoprotein/u12_type_post_spliceosomal_complex.html","U12-type post-spliceosomal complex"]],"b":[["ComplexPortal%3ACPX-26479","Major Post-catalytic P Spliceosome complex"],["GO%3A0071020","post-spliceosomal complex"],["GO%3A0071022","U12-type post-spliceosomal complex"],["GO%3A0071021","U2-type post-spliceosomal complex"]]},{"id":"GO:0090642","l":"microsporidian-type exospore","na":4,"nb":1,"a":[["spore/exosporium.html","exosporium"],["spore/microsporidian_type_endospore.html","microsporidian-type endospore"],["spore/microsporidian_type_exospore.html","microsporidian-type exospore"],["spore/spore_wall.html","spore wall"]],"b":[["GO%3A0090642","microsporidian-type exospore"]]},{"id":"GO:0097594","l":"ventral disc dorsal microribbon","na":4,"nb":1,"a":[["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_crossbridge.html","ventral disc crossbridge"],["cytoskeleton/ventral_disc_dorsal_microribbon.html","ventral disc dorsal microribbon"],["cytoskeleton/ventral_disc_microtubule_array.html","ventral disc microtubule array"]],"b":[["GO%3A0097594","ventral disc dorsal microribbon"]]},{"id":"GO:0120100","l":"bacterial-type flagellum motor","na":4,"nb":1,"a":[["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_rotor_complex.html","bacterial-type flagellum rotor complex"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"],["appendage/periplasmic_flagellum.html","periplasmic flagellum"]],"b":[["GO%3A0120100","bacterial-type flagellum motor"]]},{"id":"GO:0160110","l":"axonemal microtubule doublet inner sheath","na":4,"nb":1,"a":[["cytoskeleton/axonemal_a_tubule_inner_sheath.html","axonemal A tubule inner sheath"],["cytoskeleton/axonemal_b_tubule_inner_sheath.html","axonemal B tubule inner sheath"],["cytoskeleton/axonemal_doublet_microtubule.html","axonemal doublet microtubule"],["cytoskeleton/axonemal_microtubule_doublet_inner_sheath.html","axonemal microtubule doublet inner sheath"]],"b":[["GO%3A0160110","axonemal microtubule doublet inner sheath"]]},{"id":"GO:0160113","l":"axonemal microtubule doublet inner junction","na":4,"nb":1,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_doublet_microtubule.html","axonemal doublet microtubule"],["cytoskeleton/axonemal_microtubule_doublet_inner_junction.html","axonemal microtubule doublet inner junction"],["cytoskeleton/b_axonemal_microtubule.html","B axonemal microtubule"]],"b":[["GO%3A0160113","axonemal microtubule doublet inner junction"]]},{"id":"GO:0160114","l":"axonemal microtubule doublet outer junction","na":4,"nb":1,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_doublet_microtubule.html","axonemal doublet microtubule"],["cytoskeleton/axonemal_microtubule_doublet_outer_junction.html","axonemal microtubule doublet outer junction"],["cytoskeleton/b_axonemal_microtubule.html","B axonemal microtubule"]],"b":[["GO%3A0160114","axonemal microtubule doublet outer junction"]]},{"id":"InterPro:IPR000100","l":"","na":1,"nb":4,"a":[["ribonucleoprotein/dimeric_ribonuclease_p_complex.html","dimeric ribonuclease P complex"]],"b":[["HAMAP%3AMF_00227","Ribonuclease P protein component [rnpA]"],["PANTHER%3APTHR33992","RIBONUCLEASE P PROTEIN COMPONENT"],["Pfam%3APF00825","Ribonuclease P"],["PROSITE%3APS00648","Bacterial ribonuclease P protein component signature"]]},{"id":"InterPro:IPR000527","l":"","na":1,"nb":4,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"]],"b":[["HAMAP%3AMF_00415","Flagellar L-ring protein [flgH]"],["PANTHER%3APTHR34933","FLAGELLAR L-RING PROTEIN"],["Pfam%3APF02107","Flagellar L-ring protein"],["PRINTS%3APR01008","Flagellar L-ring protein signature"]]},{"id":"InterPro:IPR001782","l":"","na":1,"nb":4,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]],"b":[["HAMAP%3AMF_00416","Flagellar P-ring protein [flgI]"],["PANTHER%3APTHR30381","FLAGELLAR P-RING PERIPLASMIC PROTEIN FLGI"],["Pfam%3APF02119","Flagellar P-ring protein"],["PRINTS%3APR01010","Flagellar P-ring protein signature"]]},{"id":"InterPro:IPR005837","l":"","na":1,"nb":4,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF00813","FliP family"],["PRINTS%3APR00951","Flagellar biosynthetic protein FliP signature"],["PROSITE%3APS01060","Flagella transport protein fliP family signature 1"],["PROSITE%3APS01061","Flagella transport protein fliP family signature 2"]]},{"id":"InterPro:IPR011557","l":"","na":1,"nb":4,"a":[["other/dna_gyrase_complex.html","DNA gyrase complex"]],"b":[["Pfam%3APF21249","GyrB, hook"],["Pfam%3APF18053","DNA gyrase B subunit insert domain"],["HAMAP%3AMF_01898","DNA gyrase subunit B [gyrB]"],["Pfam%3APF00986","DNA gyrase B subunit, carboxyl terminus"]]},{"id":"InterPro:IPR040026","l":"","na":1,"nb":4,"a":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"]],"b":[["PANTHER%3APTHR30288","FLAGELLAR CAP/ASSEMBLY PROTEIN FLID"],["Pfam%3APF07195","Flagellar hook-associated protein 2 C-terminus"],["Pfam%3APF02465","Flagellar hook-associated protein 2 N-terminus"],["Pfam%3APF07196","Flagellin hook IN motif"]]},{"id":"UniProt:P0A7N4","l":"Large ribosomal subunit protein bL32","na":1,"nb":4,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR01031","50S ribosomal protein L32"],["Pfam%3APF01783","Ribosomal L32p protein family"],["InterPro%3AIPR011332","Zinc-binding ribosomal protein"]]},{"id":"UniProt:P0A7V0","l":"Small ribosomal subunit protein uS2","na":1,"nb":4,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["NCBIfam%3ATIGR01011","30S ribosomal protein S2"],["CDD%3Acd01425","RPS2"],["CATH%3A1.10.287.610","Helix hairpin bin"]]},{"id":"UniProt:P0ABH4","l":"","na":1,"nb":4,"a":[["division_machinery/elongasome.html","elongasome"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["NCBIfam%3ANF008282","rod shape-determining protein MreD"],["NCBIfam%3ATIGR03426","rod shape-determining protein MreD"],["Pfam%3APF04093","rod shape-determining protein MreD"]]},{"id":"UniProt:P0C2S5","l":"","na":1,"nb":4,"a":[["other/cellulosome.html","cellulosome"]],"b":[["EC%3A3.2.1.176","cellulose 1,4-beta-cellobiosidase (reducing end)"],["Pfam%3APF00404","Dockerin type I domain"],["PROSITE%3APS00448","Clostridium cellulosome enzymes repeated domain signature"],["Pfam%3APF02011","Glycosyl hydrolase family 48"]]},{"id":"UniProt:Q1PX48","l":"","na":1,"nb":4,"a":[["membrane_organelle/anammoxosome.html","anammoxosome"]],"b":[["EC%3A1.7.2.9","hydroxylamine oxidase"],["RHEA%3A45036","hydroxylamine + 3 Fe(III)-[cytochrome c] = nitric oxide + 3 Fe(II)-[cytochrome c] + 3 H(+)"],["Pfam%3APF22142","Hydroxylamine oxidoreductase, C-terminal domain"],["proteintraitsmech%3ABIOLIP_HG1","HG1-binding site"]]},{"id":"GO:0000002","l":"","na":1,"nb":3,"a":[["nucleoid/mitochondrial_nucleoid.html","mitochondrial nucleoid"]],"b":[["PANTHER%3APTHR45829","MITOCHONDRIAL CARRIER PROTEIN RIM2"],["PANTHER%3APTHR32198","MITOCHONDRIAL ESCAPE PROTEIN 2"],["PANTHER%3APTHR31404","MITOCHONDRIAL GENOME MAINTENANCE PROTEIN MGM101"]]},{"id":"GO:0005632","l":"inner layer of spore wall","na":3,"nb":1,"a":[["spore/ascospore_wall.html","ascospore wall"],["spore/chitosan_layer_of_spore_wall.html","chitosan layer of spore wall"],["spore/inner_layer_of_spore_wall.html","inner layer of spore wall"]],"b":[["GO%3A0005632","inner layer of spore wall"]]},{"id":"GO:0005796","l":"Golgi lumen","na":1,"nb":3,"a":[["membrane_organelle/golgi_lumen.html","Golgi lumen"]],"b":[["GO%3A0005796","Golgi lumen"],["GO%3A0034469","Golgi stack lumen"],["GO%3A0098564","trans-Golgi network transport vesicle lumen"]]},{"id":"GO:0005826","l":"actomyosin contractile ring","na":1,"nb":3,"a":[["cytoskeleton/actomyosin_contractile_ring.html","actomyosin contractile ring"]],"b":[["GO%3A0005826","actomyosin contractile ring"],["GO%3A0110086","meiotic actomyosin contractile ring"],["GO%3A0110085","mitotic actomyosin contractile ring"]]},{"id":"GO:0009290","l":"DNA import into cell involved in transformation","na":1,"nb":3,"a":[["appendage/type_iv_pilus.html","type IV pilus"]],"b":[["GO%3A0009290","DNA import into cell involved in transformation"],["NCBIfam%3ANF041796","DNA import protein CedA"],["NCBIfam%3ATIGR00361","DNA internalization-related competence protein ComEC/Rec2"]]},{"id":"GO:0009422","l":"bacterial-type flagellum hook-filament junction","na":3,"nb":1,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["GO%3A0009422","bacterial-type flagellum hook-filament junction"]]},{"id":"GO:0009429","l":"bacterial-type flagellum basal body, proximal rod","na":3,"nb":1,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"]],"b":[["GO%3A0009429","bacterial-type flagellum basal body, proximal rod"]]},{"id":"GO:0009514","l":"glyoxysome","na":3,"nb":1,"a":[["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysomal_membrane.html","glyoxysomal membrane"],["membrane_organelle/glyoxysome.html","glyoxysome"]],"b":[["GO%3A0009514","glyoxysome"]]},{"id":"GO:0012510","l":"trans-Golgi network transport vesicle membrane","na":3,"nb":1,"a":[["membrane_organelle/golgi_associated_vesicle_membrane.html","Golgi-associated vesicle membrane"],["membrane_organelle/trans_golgi_network_transport_vesicle_membrane.html","trans-Golgi network transport vesicle membrane"],["other/clathrin_coat_of_trans_golgi_network_vesicle.html","clathrin coat of trans-Golgi network vesicle"]],"b":[["GO%3A0012510","trans-Golgi network transport vesicle membrane"]]},{"id":"GO:0020010","l":"conoid","na":3,"nb":1,"a":[["cytoskeleton/conoid.html","conoid"],["cytoskeleton/intraconoid_microtubule.html","intraconoid microtubule"],["other/apical_complex.html","apical complex"]],"b":[["GO%3A0020010","conoid"]]},{"id":"GO:0020015","l":"glycosome","na":3,"nb":1,"a":[["membrane_organelle/glycosome.html","glycosome"],["membrane_organelle/glycosome_lumen.html","glycosome lumen"],["membrane_organelle/glycosome_membrane.html","glycosome membrane"]],"b":[["GO%3A0020015","glycosome"]]},{"id":"GO:0020026","l":"apicomplexan dense granule","na":3,"nb":1,"a":[["membrane_organelle/apicomplexan_dense_granule.html","apicomplexan dense granule"],["membrane_organelle/apicomplexan_dense_granule_membrane.html","apicomplexan dense granule membrane"],["membrane_organelle/mononeme.html","mononeme"]],"b":[["GO%3A0020026","apicomplexan dense granule"]]},{"id":"GO:0030061","l":"mitochondrial crista","na":3,"nb":1,"a":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"],["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"]],"b":[["GO%3A0030061","mitochondrial crista"]]},{"id":"GO:0030124","l":"AP-4 adaptor complex","na":1,"nb":3,"a":[["other/ap_4_adaptor_complex.html","AP-4 adaptor complex"]],"b":[["ComplexPortal%3ACPX-5151","AP-4 Adaptor complex"],["ComplexPortal%3ACPX-5154","AP-4 Adaptor complex"],["GO%3A0030124","AP-4 adaptor complex"]]},{"id":"GO:0030256","l":"type I protein secretion system complex","na":1,"nb":3,"a":[["secretion_system/type_i_protein_secretion_system_complex.html","type I protein secretion system complex"]],"b":[["GO%3A0030256","type I protein secretion system complex"],["NCBIfam%3ATIGR01842","type I secretion system permease/ATPase"],["NCBIfam%3ATIGR01846","type I secretion system permease/ATPase"]]},{"id":"GO:0030681","l":"multimeric ribonuclease P complex","na":1,"nb":3,"a":[["ribonucleoprotein/dimeric_ribonuclease_p_complex.html","dimeric ribonuclease P complex"]],"b":[["GO%3A0030679","cyanelle ribonuclease P complex"],["GO%3A0030681","multimeric ribonuclease P complex"],["GO%3A0005655","nucleolar ribonuclease P complex"]]},{"id":"GO:0030874","l":"nucleolar chromatin","na":1,"nb":3,"a":[["other/nucleolus.html","nucleolus"]],"b":[["GO%3A0030874","nucleolar chromatin"],["GO%3A0097424","nucleolus-associated heterochromatin"],["GO%3A0005731","nucleolus organizer region"]]},{"id":"GO:0031164","l":"contractile vacuolar membrane","na":3,"nb":1,"a":[["membrane_organelle/contractile_vacuolar_membrane.html","contractile vacuolar membrane"],["membrane_organelle/contractile_vacuole.html","contractile vacuole"],["membrane_organelle/contractile_vacuole_lumen.html","contractile vacuole lumen"]],"b":[["GO%3A0031164","contractile vacuolar membrane"]]},{"id":"GO:0031321","l":"ascospore-type prospore assembly","na":1,"nb":3,"a":[["spore/prospore_membrane.html","prospore membrane"]],"b":[["ComplexPortal%3ACPX-5464","Vesicular SNARE complex SSO1-SPO20-SNC1"],["ComplexPortal%3ACPX-5466","Vesicular SNARE complex SSO1-SPO20-SNC2"],["GO%3A0031321","ascospore-type prospore assembly"]]},{"id":"GO:0031908","l":"glyoxysomal lumen","na":3,"nb":1,"a":[["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysomal_membrane.html","glyoxysomal membrane"],["membrane_organelle/glyoxysome.html","glyoxysome"]],"b":[["GO%3A0031908","glyoxysomal lumen"]]},{"id":"GO:0031979","l":"plasma membrane-derived thylakoid lumen","na":3,"nb":1,"a":[["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_lumen.html","plasma membrane-derived thylakoid lumen"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"]],"b":[["GO%3A0031979","plasma membrane-derived thylakoid lumen"]]},{"id":"GO:0031983","l":"vesicle lumen","na":1,"nb":3,"a":[["membrane_organelle/cytoplasmic_vesicle_lumen.html","cytoplasmic vesicle lumen"]],"b":[["GO%3A0060205","cytoplasmic vesicle lumen"],["GO%3A0097489","multivesicular body, internal vesicle lumen"],["GO%3A0031983","vesicle lumen"]]},{"id":"GO:0032047","l":"mitosome","na":3,"nb":1,"a":[["membrane_organelle/mitosome.html","mitosome"],["membrane_organelle/mitosome_envelope.html","mitosome envelope"],["membrane_organelle/mitosome_matrix.html","mitosome matrix"]],"b":[["GO%3A0032047","mitosome"]]},{"id":"GO:0032126","l":"eisosome","na":3,"nb":1,"a":[["cytoskeleton/eisosome_filament.html","eisosome filament"],["envelope/eisosome_membrane_domain_mcc.html","eisosome membrane domain/MCC"],["other/eisosome.html","eisosome"]],"b":[["GO%3A0032126","eisosome"]]},{"id":"GO:0033016","l":"rhoptry membrane","na":3,"nb":1,"a":[["membrane_organelle/rhoptry.html","rhoptry"],["membrane_organelle/rhoptry_lumen.html","rhoptry lumen"],["membrane_organelle/rhoptry_membrane.html","rhoptry membrane"]],"b":[["GO%3A0033016","rhoptry membrane"]]},{"id":"GO:0033107","l":"Cvt vesicle","na":3,"nb":1,"a":[["membrane_organelle/cvt_vesicle.html","Cvt vesicle"],["membrane_organelle/cvt_vesicle_lumen.html","Cvt vesicle lumen"],["membrane_organelle/cvt_vesicle_membrane.html","Cvt vesicle membrane"]],"b":[["GO%3A0033107","Cvt vesicle"]]},{"id":"GO:0033110","l":"Cvt vesicle membrane","na":3,"nb":1,"a":[["membrane_organelle/cvt_vesicle.html","Cvt vesicle"],["membrane_organelle/cvt_vesicle_lumen.html","Cvt vesicle lumen"],["membrane_organelle/cvt_vesicle_membrane.html","Cvt vesicle membrane"]],"b":[["GO%3A0033110","Cvt vesicle membrane"]]},{"id":"GO:0033117","l":"esterosome","na":3,"nb":1,"a":[["membrane_organelle/esterosome.html","esterosome"],["membrane_organelle/esterosome_lumen.html","esterosome lumen"],["membrane_organelle/esterosome_membrane.html","esterosome membrane"]],"b":[["GO%3A0033117","esterosome"]]},{"id":"GO:0033118","l":"esterosome membrane","na":3,"nb":1,"a":[["membrane_organelle/esterosome.html","esterosome"],["membrane_organelle/esterosome_lumen.html","esterosome lumen"],["membrane_organelle/esterosome_membrane.html","esterosome membrane"]],"b":[["GO%3A0033118","esterosome membrane"]]},{"id":"GO:0033163","l":"microneme membrane","na":3,"nb":1,"a":[["membrane_organelle/microneme.html","microneme"],["membrane_organelle/microneme_lumen.html","microneme lumen"],["membrane_organelle/microneme_membrane.html","microneme membrane"]],"b":[["GO%3A0033163","microneme membrane"]]},{"id":"GO:0033281","l":"TAT protein transport complex","na":1,"nb":3,"a":[["secretion_system/tat_protein_transport_complex.html","TAT protein transport complex"]],"b":[["ComplexPortal%3ACPX-3445","Twin-arginine translocation complex"],["GO%3A0033281","TAT protein transport complex"],["NCBIfam%3ATIGR01912","Sec-independent protein translocase TatC"]]},{"id":"GO:0034044","l":"exomer complex","na":1,"nb":3,"a":[["other/exomer_complex.html","exomer complex"]],"b":[["ComplexPortal%3ACPX-1719","Exomer complex"],["ComplexPortal%3ACPX-26504","Exomer complex"],["GO%3A0034044","exomer complex"]]},{"id":"GO:0034423","l":"autophagosome lumen","na":3,"nb":1,"a":[["membrane_organelle/autophagosome.html","autophagosome"],["membrane_organelle/autophagosome_lumen.html","autophagosome lumen"],["membrane_organelle/autophagosome_membrane.html","autophagosome membrane"]],"b":[["GO%3A0034423","autophagosome lumen"]]},{"id":"GO:0034430","l":"monolayer-surrounded lipid storage body outer lipid monolayer","na":3,"nb":1,"a":[["inclusion/lipid_droplet.html","lipid droplet"],["inclusion/monolayer_surrounded_lipid_storage_body_outer_lipid_monolayer.html","monolayer-surrounded lipid storage body outer lipid monolayer"],["inclusion/plastoglobule.html","plastoglobule"]],"b":[["GO%3A0034430","monolayer-surrounded lipid storage body outer lipid monolayer"]]},{"id":"GO:0034467","l":"esterosome lumen","na":3,"nb":1,"a":[["membrane_organelle/esterosome.html","esterosome"],["membrane_organelle/esterosome_lumen.html","esterosome lumen"],["membrane_organelle/esterosome_membrane.html","esterosome membrane"]],"b":[["GO%3A0034467","esterosome lumen"]]},{"id":"GO:0034468","l":"glycosome lumen","na":3,"nb":1,"a":[["membrane_organelle/glycosome.html","glycosome"],["membrane_organelle/glycosome_lumen.html","glycosome lumen"],["membrane_organelle/glycosome_membrane.html","glycosome membrane"]],"b":[["GO%3A0034468","glycosome lumen"]]},{"id":"GO:0034492","l":"hydrogenosome lumen","na":3,"nb":1,"a":[["membrane_organelle/hydrogenosomal_membrane.html","hydrogenosomal membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/hydrogenosome_lumen.html","hydrogenosome lumen"]],"b":[["GO%3A0034492","hydrogenosome lumen"]]},{"id":"GO:0034494","l":"microneme lumen","na":3,"nb":1,"a":[["membrane_organelle/microneme.html","microneme"],["membrane_organelle/microneme_lumen.html","microneme lumen"],["membrane_organelle/microneme_membrane.html","microneme membrane"]],"b":[["GO%3A0034494","microneme lumen"]]},{"id":"GO:0034591","l":"rhoptry lumen","na":3,"nb":1,"a":[["membrane_organelle/rhoptry.html","rhoptry"],["membrane_organelle/rhoptry_lumen.html","rhoptry lumen"],["membrane_organelle/rhoptry_membrane.html","rhoptry membrane"]],"b":[["GO%3A0034591","rhoptry lumen"]]},{"id":"GO:0034777","l":"recycling endosome lumen","na":3,"nb":1,"a":[["membrane_organelle/recycling_endosome.html","recycling endosome"],["membrane_organelle/recycling_endosome_lumen.html","recycling endosome lumen"],["membrane_organelle/recycling_endosome_membrane.html","recycling endosome membrane"]],"b":[["GO%3A0034777","recycling endosome lumen"]]},{"id":"GO:0036286","l":"eisosome filament","na":3,"nb":1,"a":[["cytoskeleton/eisosome_filament.html","eisosome filament"],["envelope/eisosome_membrane_domain_mcc.html","eisosome membrane domain/MCC"],["other/eisosome.html","eisosome"]],"b":[["GO%3A0036286","eisosome filament"]]},{"id":"GO:0042566","l":"hydrogenosome","na":3,"nb":1,"a":[["membrane_organelle/hydrogenosomal_membrane.html","hydrogenosomal membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/hydrogenosome_lumen.html","hydrogenosome lumen"]],"b":[["GO%3A0042566","hydrogenosome"]]},{"id":"GO:0042603","l":"capsule","na":3,"nb":1,"a":[["envelope/capsule.html","capsule"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]],"b":[["GO%3A0042603","capsule"]]},{"id":"GO:0042763","l":"intracellular immature spore","na":1,"nb":3,"a":[["spore/endospore_forming_forespore.html","endospore-forming forespore"]],"b":[["GO%3A0042764","ascospore-type prospore"],["GO%3A0042601","endospore-forming forespore"],["GO%3A0042763","intracellular immature spore"]]},{"id":"GO:0043529","l":"GET complex","na":1,"nb":3,"a":[["other/get_complex.html","GET complex"]],"b":[["ComplexPortal%3ACPX-6464","GET complex"],["ComplexPortal%3ACPX-956","GET complex"],["GO%3A0043529","GET complex"]]},{"id":"GO:0043594","l":"outer endospore membrane","na":3,"nb":1,"a":[["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"],["spore/outer_endospore_membrane.html","outer endospore membrane"],["spore/spore_inner_membrane.html","spore inner membrane"]],"b":[["GO%3A0043594","outer endospore membrane"]]},{"id":"GO:0044599","l":"AP-5 adaptor complex","na":1,"nb":3,"a":[["other/ap_5_adaptor_complex.html","AP-5 adaptor complex"]],"b":[["ComplexPortal%3ACPX-5181","AP-5 Adaptor complex"],["ComplexPortal%3ACPX-5182","AP-5 Adaptor complex"],["GO%3A0044599","AP-5 adaptor complex"]]},{"id":"GO:0046858","l":"chlorosome","na":3,"nb":1,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"]],"b":[["GO%3A0046858","chlorosome"]]},{"id":"GO:0046859","l":"hydrogenosomal membrane","na":3,"nb":1,"a":[["membrane_organelle/hydrogenosomal_membrane.html","hydrogenosomal membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/hydrogenosome_lumen.html","hydrogenosome lumen"]],"b":[["GO%3A0046859","hydrogenosomal membrane"]]},{"id":"GO:0046860","l":"glycosome membrane","na":3,"nb":1,"a":[["membrane_organelle/glycosome.html","glycosome"],["membrane_organelle/glycosome_lumen.html","glycosome lumen"],["membrane_organelle/glycosome_membrane.html","glycosome membrane"]],"b":[["GO%3A0046860","glycosome membrane"]]},{"id":"GO:0046861","l":"glyoxysomal membrane","na":3,"nb":1,"a":[["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysomal_membrane.html","glyoxysomal membrane"],["membrane_organelle/glyoxysome.html","glyoxysome"]],"b":[["GO%3A0046861","glyoxysomal membrane"]]},{"id":"GO:0048492","l":"ribulose bisphosphate carboxylase complex","na":1,"nb":3,"a":[["other/pyrenoid.html","pyrenoid"]],"b":[["GO%3A0009573","chloroplast ribulose bisphosphate carboxylase complex"],["GO%3A0048494","chromatophore ribulose bisphosphate carboxylase complex"],["GO%3A0048492","ribulose bisphosphate carboxylase complex"]]},{"id":"GO:0062159","l":"contractile vacuole complex","na":3,"nb":1,"a":[["membrane_organelle/contractile_vacuole.html","contractile vacuole"],["membrane_organelle/contractile_vacuole_complex.html","contractile vacuole complex"],["membrane_organelle/spongiome.html","spongiome"]],"b":[["GO%3A0062159","contractile vacuole complex"]]},{"id":"GO:0070088","l":"polyhydroxyalkanoate granule","na":1,"nb":3,"a":[["inclusion/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]],"b":[["GO%3A0070088","polyhydroxyalkanoate granule"],["NCBIfam%3ANF045536","polyhydroxyalkanoate granule-associated phasin"],["NCBIfam%3ANF045537","polyhydroxyalkanoate granule-associated phasin"]]},{"id":"GO:0070115","l":"organellar chromatophore intermembrane space","na":3,"nb":1,"a":[["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"],["membrane_organelle/organellar_chromatophore_inner_membrane.html","organellar chromatophore inner membrane"],["membrane_organelle/organellar_chromatophore_intermembrane_space.html","organellar chromatophore intermembrane space"]],"b":[["GO%3A0070115","organellar chromatophore intermembrane space"]]},{"id":"GO:0071008","l":"U2-type post-mRNA release spliceosomal complex","na":1,"nb":3,"a":[["ribonucleoprotein/u2_type_post_mrna_release_spliceosomal_complex.html","U2-type post-mRNA release spliceosomal complex"]],"b":[["ComplexPortal%3ACPX-1886","Post-mRNA release spliceosomal complex"],["GO%3A0071008","U2-type post-mRNA release spliceosomal complex"],["Pfam%3APF15458","Nineteen complex-related protein 2"]]},{"id":"GO:0071012","l":"catalytic step 1 spliceosome","na":1,"nb":3,"a":[["ribonucleoprotein/u12_type_catalytic_step_1_spliceosome.html","U12-type catalytic step 1 spliceosome"]],"b":[["GO%3A0071012","catalytic step 1 spliceosome"],["GO%3A0071017","U12-type catalytic step 1 spliceosome"],["GO%3A0071006","U2-type catalytic step 1 spliceosome"]]},{"id":"GO:0090512","l":"eisosome membrane domain/MCC","na":3,"nb":1,"a":[["cytoskeleton/eisosome_filament.html","eisosome filament"],["envelope/eisosome_membrane_domain_mcc.html","eisosome membrane domain/MCC"],["other/eisosome.html","eisosome"]],"b":[["GO%3A0090512","eisosome membrane domain/MCC"]]},{"id":"GO:0090641","l":"microsporidian-type endospore","na":3,"nb":1,"a":[["spore/microsporidian_type_endospore.html","microsporidian-type endospore"],["spore/microsporidian_type_exospore.html","microsporidian-type exospore"],["spore/spore_wall.html","spore wall"]],"b":[["GO%3A0090641","microsporidian-type endospore"]]},{"id":"GO:0097595","l":"ventral disc crossbridge","na":3,"nb":1,"a":[["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_crossbridge.html","ventral disc crossbridge"],["cytoskeleton/ventral_disc_dorsal_microribbon.html","ventral disc dorsal microribbon"]],"b":[["GO%3A0097595","ventral disc crossbridge"]]},{"id":"GO:0106234","l":"outer membrane protein complex","na":1,"nb":3,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["GO%3A0106234","outer membrane protein complex"],["NCBIfam%3ANF033942","outer membrane porin GjpA"],["NCBIfam%3ANF053618","PopA family porin-like outer membrane protein"]]},{"id":"GO:0160111","l":"axonemal A tubule inner sheath","na":3,"nb":1,"a":[["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_a_tubule_inner_sheath.html","axonemal A tubule inner sheath"],["cytoskeleton/axonemal_microtubule_doublet_inner_sheath.html","axonemal microtubule doublet inner sheath"]],"b":[["GO%3A0160111","axonemal A tubule inner sheath"]]},{"id":"GO:0160112","l":"axonemal B tubule inner sheath","na":3,"nb":1,"a":[["cytoskeleton/axonemal_b_tubule_inner_sheath.html","axonemal B tubule inner sheath"],["cytoskeleton/axonemal_microtubule_doublet_inner_sheath.html","axonemal microtubule doublet inner sheath"],["cytoskeleton/b_axonemal_microtubule.html","B axonemal microtubule"]],"b":[["GO%3A0160112","axonemal B tubule inner sheath"]]},{"id":"GO:0160211","l":"apicoplast membrane","na":3,"nb":1,"a":[["membrane_organelle/apicoplast.html","apicoplast"],["membrane_organelle/apicoplast_membrane.html","apicoplast membrane"],["membrane_organelle/plastid_membrane.html","plastid membrane"]],"b":[["GO%3A0160211","apicoplast membrane"]]},{"id":"GO:1990718","l":"axonemal central pair projection","na":3,"nb":1,"a":[["cytoskeleton/axonemal_central_apparatus.html","axonemal central apparatus"],["cytoskeleton/axonemal_central_pair.html","axonemal central pair"],["cytoskeleton/axonemal_central_pair_projection.html","axonemal central pair projection"]],"b":[["GO%3A1990718","axonemal central pair projection"]]},{"id":"GO:1990900","l":"ciliary pocket collar","na":3,"nb":1,"a":[["cytoskeleton/bilobe_structure.html","bilobe structure"],["cytoskeleton/ciliary_pocket_collar.html","ciliary pocket collar"],["membrane_organelle/flagellar_pocket.html","flagellar pocket"]],"b":[["GO%3A1990900","ciliary pocket collar"]]},{"id":"GO:1990916","l":"Isp3 layer of spore wall","na":3,"nb":1,"a":[["spore/ascospore_wall.html","ascospore wall"],["spore/dityrosine_layer_of_spore_wall.html","dityrosine layer of spore wall"],["spore/isp3_layer_of_spore_wall.html","Isp3 layer of spore wall"]],"b":[["GO%3A1990916","Isp3 layer of spore wall"]]},{"id":"InterPro:IPR001182","l":"","na":1,"nb":3,"a":[["envelope/peptidoglycan_based_cell_wall.html","peptidoglycan-based cell wall"]],"b":[["PANTHER%3APTHR30474","CELL CYCLE PROTEIN"],["Pfam%3APF01098","Cell cycle protein"],["PROSITE%3APS00428","Cell cycle proteins ftsW / rodA / spoVE signature"]]},{"id":"InterPro:IPR001689","l":"","na":1,"nb":3,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]],"b":[["Pfam%3APF02154","Flagellar motor switch protein FliM"],["Pfam%3APF01052","Type III flagellar switch regulator (C-ring) FliN C-term"],["PRINTS%3APR00955","Flagellar motor switch protein FliM signature"]]},{"id":"InterPro:IPR002326","l":"","na":1,"nb":3,"a":[["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"]],"b":[["PANTHER%3APTHR10266","CYTOCHROME C1"],["Pfam%3APF02167","Cytochrome C1 family"],["PRINTS%3APR00603","Cytochrome C1 signature"]]},{"id":"InterPro:IPR003418","l":"","na":1,"nb":3,"a":[["energy_complex/fumarate_reductase_complex.html","fumarate reductase complex"]],"b":[["GO%3A0045283","fumarate reductase complex"],["Pfam%3APF02313","Fumarate reductase subunit D"],["HAMAP%3AMF_00709","Fumarate reductase subunit D [frdD]"]]},{"id":"InterPro:IPR003510","l":"","na":1,"nb":3,"a":[["energy_complex/fumarate_reductase_complex.html","fumarate reductase complex"]],"b":[["GO%3A0045283","fumarate reductase complex"],["Pfam%3APF02300","Fumarate reductase subunit C"],["HAMAP%3AMF_00708","Fumarate reductase subunit C [frdC]"]]},{"id":"InterPro:IPR005737","l":"","na":1,"nb":3,"a":[["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["HAMAP%3AMF_00938","DNA topoisomerase 4 subunit B [parE]"],["Pfam%3APF00986","DNA gyrase B subunit, carboxyl terminus"],["PRINTS%3APR01098","Topoisomerase IV subunit B signature"]]},{"id":"InterPro:IPR005743","l":"","na":1,"nb":3,"a":[["other/dna_gyrase_complex.html","DNA gyrase complex"]],"b":[["Pfam%3APF00521","DNA gyrase/topoisomerase IV, subunit A"],["HAMAP%3AMF_01897","DNA gyrase subunit A [gyrA]"],["Pfam%3APF03989","DNA gyrase C-terminal domain, beta-propeller"]]},{"id":"InterPro:IPR010204","l":"","na":1,"nb":3,"a":[["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"]],"b":[["Pfam%3APF04205","FMN-binding domain"],["HAMAP%3AMF_00427","Na(+)-translocating NADH-quinone reductase subunit C [nqrC]"],["PANTHER%3APTHR37838","NA(+)-TRANSLOCATING NADH-QUINONE REDUCTASE SUBUNIT C"]]},{"id":"InterPro:IPR012826","l":"","na":1,"nb":3,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]],"b":[["Pfam%3APF04509","CheC-like family"],["Pfam%3APF01052","Type III flagellar switch regulator (C-ring) FliN C-term"],["Pfam%3APF16973","Flagellar motor switch protein FliN N-terminal"]]},{"id":"InterPro:IPR026592","l":"","na":1,"nb":3,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["Pfam%3APF04355","Outer membrane protein assembly factor BamE domain"],["HAMAP%3AMF_00925","Outer membrane protein assembly factor BamE [bamE]"],["PANTHER%3APTHR37482","OUTER MEMBRANE PROTEIN ASSEMBLY FACTOR BAME"]]},{"id":"InterPro:IPR050220","l":"","na":1,"nb":3,"a":[["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["Pfam%3APF00521","DNA gyrase/topoisomerase IV, subunit A"],["PANTHER%3APTHR43493","DNA GYRASE/TOPOISOMERASE SUBUNIT A"],["Pfam%3APF03989","DNA gyrase C-terminal domain, beta-propeller"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":3,"a":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]],"b":[["TED%3AAF-A0A142EAM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142EAM9-F1-model_v4_TED03"],["TED%3AAF-A0A1Q3DTY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3DTY6-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3DNE3-F1-model_v4_TED01","TED novel fold AF-A0A1Q3DNE3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":1,"nb":3,"a":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]],"b":[["Pfam%3APF03069","Acetamidase/Formamidase family"],["PROSITE%3APS00818","Dps protein family signature 1"],["Pfam%3APF13810","Domain of unknown function (DUF4185)"]]},{"id":"NCBITaxon:243233","l":"Methylococcus capsulatus str. Bath","na":1,"nb":3,"a":[["membrane_organelle/methane_oxidizing_organelle.html","methane-oxidizing organelle"]],"b":[["Pfam%3APF17850","CysA C-terminal regulatory domain"],["Pfam%3APF02461","Ammonia monooxygenase"],["TED%3AAF-Q604F4-F1-model_v4_TED02","TED novel fold AF-Q604F4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:381666","l":"Cupriavidus necator H16","na":1,"nb":3,"a":[["inclusion/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]],"b":[["Pfam%3APF13473","Cupredoxin-like domain"],["Pfam%3APF10605","3HB-oligomer hydrolase (3HBOH)"],["Pfam%3APF21783","YNCE-like beta-propeller"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":1,"nb":3,"a":[["microcompartment/bacterial_microcompartment.html","bacterial microcompartment"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF22277","EncFtn-like"],["TED%3AAF-D0LJ11-F1-model_v4_TED04","TED highly-symmetric fold AF-D0LJ11-F1-model_v4_TED04"]]},{"id":"NCBITaxon:5334","l":"Schizophyllum commune","na":1,"nb":3,"a":[["envelope/dolipore_septum.html","dolipore septum"]],"b":[["Pfam%3APF04611","Mating type protein A alpha Y mating type dependent binding region"],["Pfam%3APF01185","Fungal hydrophobin"],["PROSITE%3APS00956","Fungal hydrophobins signature"]]},{"id":"NCBITaxon:55529","l":"Guillardia theta","na":1,"nb":3,"a":[["membrane_organelle/nucleomorph.html","nucleomorph"]],"b":[["Pfam%3APF06868","Protein of unknown function (DUF1257)"],["Pfam%3APF05421","Protein of unknown function (DUF751)"],["TED%3AAF-A0A7S4PQE0-F1-model_v4_TED01","TED novel fold AF-A0A7S4PQE0-F1-model_v4_TED01"]]},{"id":"UniProt:O31728","l":"","na":1,"nb":3,"a":[["division_machinery/divisome_complex.html","divisome complex"]],"b":[["Pfam%3APF04472","Cell division protein SepF"],["InterPro%3AIPR038594","SepF-like superfamily"],["CATH%3A3.30.110.150","SepF-like protein"]]},{"id":"UniProt:P0C018","l":"Large ribosomal subunit protein uL18","na":1,"nb":3,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"],["NCBIfam%3ATIGR00060","50S ribosomal protein L18"],["Pfam%3APF00861","Ribosomal L18 of archaea, bacteria, mitoch. and chloroplast"]]},{"id":"UniProt:P35535","l":"","na":1,"nb":3,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0009425","bacterial-type flagellum basal body"],["NCBIfam%3ATIGR01402","flagellar biosynthesis protein FliQ"],["Pfam%3APF01313","Bacterial export proteins, family 3"]]},{"id":"UniProt:P35537","l":"","na":1,"nb":3,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["GO%3A0009425","bacterial-type flagellum basal body"],["NCBIfam%3ATIGR01400","flagellar biosynthetic protein FliR"],["Pfam%3APF01311","Bacterial export proteins, family 1"]]},{"id":"UniProt:P54700","l":"","na":1,"nb":3,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF00813","FliP family"],["PROSITE%3APS01060","Flagella transport protein fliP family signature 1"],["PROSITE%3APS01061","Flagella transport protein fliP family signature 2"]]},{"id":"UniProt:Q9ZFU8","l":"","na":1,"nb":3,"a":[["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"]],"b":[["Pfam%3APF00936","BMC domain"],["Pfam%3APF16365","Ethanolamine utilization protein EutK C-terminus"],["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"CHEBI:16261","l":"chitosan","na":2,"nb":1,"a":[["spore/ascospore_wall.html","ascospore wall"],["spore/chitosan_layer_of_spore_wall.html","chitosan layer of spore wall"]],"b":[["proteintraitsmech%3ABIOLIP_GCS","GCS-binding site"]]},{"id":"CHEBI:16412","l":"","na":2,"nb":1,"a":[["envelope/cell_outer_membrane.html","cell outer membrane"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:25438","l":"","na":1,"nb":2,"a":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]]},{"id":"GO:0000934","l":"porous cell septum","na":1,"nb":2,"a":[["envelope/dolipore_septum.html","dolipore septum"]],"b":[["GO%3A0000937","dolipore septum"],["GO%3A0000934","porous cell septum"]]},{"id":"GO:0001405","l":"PAM complex, Tim23 associated import motor","na":1,"nb":2,"a":[["other/pam_complex_tim23_associated_import_motor.html","PAM complex, Tim23 associated import motor"]],"b":[["GO%3A0001405","PAM complex, Tim23 associated import motor"],["Pfam%3APF08566","Mitochondrial import protein Pam17"]]},{"id":"GO:0005692","l":"U11 snRNP","na":2,"nb":1,"a":[["ribonucleoprotein/u11_snrnp.html","U11 snRNP"],["ribonucleoprotein/u11_u12_snrnp.html","U11/U12 snRNP"]],"b":[["GO%3A0005692","U11 snRNP"]]},{"id":"GO:0005905","l":"clathrin-coated pit","na":2,"nb":1,"a":[["other/clathrin_coat_of_coated_pit.html","clathrin coat of coated pit"],["other/clathrin_coated_pit.html","clathrin-coated pit"]],"b":[["GO%3A0005905","clathrin-coated pit"]]},{"id":"GO:0009319","l":"cytochrome o ubiquinol oxidase complex","na":1,"nb":2,"a":[["energy_complex/cytochrome_o_ubiquinol_oxidase_complex.html","cytochrome o ubiquinol oxidase complex"]],"b":[["ComplexPortal%3ACPX-2102","Cytochrome bo3 ubiquinol oxidase complex"],["GO%3A0009319","cytochrome o ubiquinol oxidase complex"]]},{"id":"GO:0009340","l":"DNA topoisomerase IV complex","na":1,"nb":2,"a":[["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["GO%3A0009340","DNA topoisomerase IV complex"],["NCBIfam%3ATIGR01062","DNA topoisomerase IV subunit A"]]},{"id":"GO:0010287","l":"plastoglobule","na":2,"nb":1,"a":[["inclusion/plastoglobule.html","plastoglobule"],["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"]],"b":[["GO%3A0010287","plastoglobule"]]},{"id":"GO:0020005","l":"symbiont-containing vacuole membrane","na":2,"nb":1,"a":[["membrane_organelle/parasitophorous_vacuole.html","parasitophorous vacuole"],["membrane_organelle/parasitophorous_vacuole_membrane.html","parasitophorous vacuole membrane"]],"b":[["GO%3A0020005","symbiont-containing vacuole membrane"]]},{"id":"GO:0020011","l":"apicoplast","na":2,"nb":1,"a":[["membrane_organelle/apicoplast.html","apicoplast"],["membrane_organelle/apicoplast_membrane.html","apicoplast membrane"]],"b":[["GO%3A0020011","apicoplast"]]},{"id":"GO:0020016","l":"flagellar pocket","na":2,"nb":1,"a":[["cytoskeleton/ciliary_pocket_collar.html","ciliary pocket collar"],["membrane_organelle/flagellar_pocket.html","flagellar pocket"]],"b":[["GO%3A0020016","ciliary pocket"]]},{"id":"GO:0020023","l":"kinetoplast","na":1,"nb":2,"a":[["nucleoid/kinetoplast.html","kinetoplast"]],"b":[["GO%3A0140525","antipodal site"],["GO%3A0020023","kinetoplast"]]},{"id":"GO:0020025","l":"subpellicular microtubule","na":2,"nb":1,"a":[["cytoskeleton/subpellicular_microtubule.html","subpellicular microtubule"],["membrane_organelle/mononeme.html","mononeme"]],"b":[["GO%3A0020025","subpellicular microtubule"]]},{"id":"GO:0030114","l":"slime layer","na":2,"nb":1,"a":[["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]],"b":[["GO%3A0030114","slime layer"]]},{"id":"GO:0030668","l":"apicomplexan dense granule membrane","na":2,"nb":1,"a":[["membrane_organelle/apicomplexan_dense_granule.html","apicomplexan dense granule"],["membrane_organelle/apicomplexan_dense_granule_membrane.html","apicomplexan dense granule membrane"]],"b":[["GO%3A0030668","apicomplexan dense granule membrane"]]},{"id":"GO:0031205","l":"endoplasmic reticulum Sec complex","na":2,"nb":1,"a":[["other/endoplasmic_reticulum_sec_complex.html","endoplasmic reticulum Sec complex"],["other/sec62_sec63_complex.html","Sec62/Sec63 complex"]],"b":[["GO%3A0031205","endoplasmic reticulum Sec complex"]]},{"id":"GO:0031518","l":"CBF3 complex","na":1,"nb":2,"a":[["other/cbf3_complex.html","CBF3 complex"]],"b":[["ComplexPortal%3ACPX-1898","CBF3 complex"],["GO%3A0031518","CBF3 complex"]]},{"id":"GO:0031561","l":"cellular bud tip polarisome","na":2,"nb":1,"a":[["other/cellular_bud_tip.html","cellular bud tip"],["other/polarisome.html","polarisome"]],"b":[["GO%3A0031561","cellular bud tip polarisome"]]},{"id":"GO:0031903","l":"microbody membrane","na":1,"nb":2,"a":[["membrane_organelle/peroxisomal_membrane.html","peroxisomal membrane"]],"b":[["GO%3A0031903","microbody membrane"],["GO%3A0005778","peroxisomal membrane"]]},{"id":"GO:0031907","l":"microbody lumen","na":1,"nb":2,"a":[["membrane_organelle/peroxisomal_matrix.html","peroxisomal matrix"]],"b":[["GO%3A0031907","microbody lumen"],["GO%3A0005782","peroxisomal matrix"]]},{"id":"GO:0031910","l":"cytostome","na":2,"nb":1,"a":[["membrane_organelle/early_endosome.html","early endosome"],["other/cytostome.html","cytostome"]],"b":[["GO%3A0031910","cytostome"]]},{"id":"GO:0032010","l":"phagolysosome","na":1,"nb":2,"a":[["membrane_organelle/phagocytic_vesicle.html","phagocytic vesicle"]],"b":[["GO%3A0020020","food vacuole"],["GO%3A0032010","phagolysosome"]]},{"id":"GO:0032258","l":"cytoplasm to vacuole targeting by the Cvt pathway","na":2,"nb":1,"a":[["membrane_organelle/cvt_vesicle.html","Cvt vesicle"],["membrane_organelle/cvt_vesicle_membrane.html","Cvt vesicle membrane"]],"b":[["GO%3A0032258","cytoplasm to vacuole targeting by the Cvt pathway"]]},{"id":"GO:0033099","l":"attachment organelle","na":2,"nb":1,"a":[["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"]],"b":[["GO%3A0033099","attachment organelle"]]},{"id":"GO:0033101","l":"cellular bud membrane","na":2,"nb":1,"a":[["envelope/cellular_bud_membrane.html","cellular bud membrane"],["other/cellular_bud.html","cellular bud"]],"b":[["GO%3A0033101","cellular bud membrane"]]},{"id":"GO:0033102","l":"acidocalcisome membrane","na":2,"nb":1,"a":[["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"]],"b":[["GO%3A0033102","acidocalcisome membrane"]]},{"id":"GO:0033105","l":"chlorosome envelope","na":2,"nb":1,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"]],"b":[["GO%3A0033105","chlorosome envelope"]]},{"id":"GO:0033111","l":"attachment organelle membrane","na":2,"nb":1,"a":[["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"]],"b":[["GO%3A0033111","attachment organelle membrane"]]},{"id":"GO:0033551","l":"monopolin complex","na":1,"nb":2,"a":[["other/monopolin_complex.html","monopolin complex"]],"b":[["ComplexPortal%3ACPX-1681","Monopolin complex"],["GO%3A0033551","monopolin complex"]]},{"id":"GO:0034063","l":"stress granule assembly","na":1,"nb":2,"a":[["ribonucleoprotein/cytoplasmic_stress_granule.html","cytoplasmic stress granule"]],"b":[["ComplexPortal%3ACPX-1412","UBP3-BRE5 ubiquitin hydrolase complex"],["GO%3A0034063","stress granule assembly"]]},{"id":"GO:0034270","l":"Cvt complex","na":2,"nb":1,"a":[["membrane_organelle/cvt_vesicle.html","Cvt vesicle"],["membrane_organelle/cvt_vesicle_membrane.html","Cvt vesicle membrane"]],"b":[["GO%3A0034270","Cvt complex"]]},{"id":"GO:0034335","l":"DNA negative supercoiling activity","na":1,"nb":2,"a":[["other/dna_gyrase_complex.html","DNA gyrase complex"]],"b":[["ComplexPortal%3ACPX-2177","GyrA-GyrB DNA Gyrase complex"],["GO%3A0034335","DNA negative supercoiling activity"]]},{"id":"GO:0042644","l":"chloroplast nucleoid","na":2,"nb":1,"a":[["membrane_organelle/chloroplast_stroma.html","chloroplast stroma"],["nucleoid/chloroplast_nucleoid.html","chloroplast nucleoid"]],"b":[["GO%3A0042644","chloroplast nucleoid"]]},{"id":"GO:0042764","l":"ascospore-type prospore","na":2,"nb":1,"a":[["spore/endospore_forming_forespore.html","endospore-forming forespore"],["spore/prospore_membrane.html","prospore membrane"]],"b":[["GO%3A0042764","ascospore-type prospore"]]},{"id":"GO:0043592","l":"exosporium","na":1,"nb":2,"a":[["spore/exosporium.html","exosporium"]],"b":[["GO%3A0043592","exosporium"],["NCBIfam%3ATIGR03720","exosporium leader peptide-containing protein"]]},{"id":"GO:0043846","l":"DNA polymerase III, clamp loader complex","na":1,"nb":2,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"]],"b":[["ComplexPortal%3ACPX-1926","DNA polymerase III clamp loader complex"],["GO%3A0043846","DNA polymerase III, clamp loader complex"]]},{"id":"GO:0044096","l":"type IV pilus","na":2,"nb":1,"a":[["appendage/tad_pilus.html","Tad pilus"],["appendage/type_iv_pilus.html","type IV pilus"]],"b":[["GO%3A0044096","type IV pilus"]]},{"id":"GO:0044315","l":"protein secretion by the type VII secretion system","na":2,"nb":1,"a":[["secretion_system/esx_3_type_vii_secretion_system_membrane_complex.html","ESX-3 type VII secretion system membrane complex"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]],"b":[["GO%3A0044315","protein secretion by the type VII secretion system"]]},{"id":"GO:0044775","l":"DNA polymerase III, beta sliding clamp processivity factor complex","na":1,"nb":2,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"]],"b":[["ComplexPortal%3ACPX-1927","DNA polymerase III, beta sliding clamp processivity factor complex"],["GO%3A0044775","DNA polymerase III, beta sliding clamp processivity factor complex"]]},{"id":"GO:0044776","l":"DNA polymerase III, core complex","na":1,"nb":2,"a":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"]],"b":[["ComplexPortal%3ACPX-1925","DNA polymerase III core complex"],["GO%3A0044776","DNA polymerase III, core complex"]]},{"id":"GO:0044777","l":"single-stranded DNA-binding protein complex","na":1,"nb":2,"a":[["other/single_stranded_dna_binding_protein_complex.html","single-stranded DNA-binding protein complex"]],"b":[["ComplexPortal%3ACPX-1928","SSB single-stranded DNA binding complex"],["GO%3A0044777","single-stranded DNA-binding protein complex"]]},{"id":"GO:0045283","l":"fumarate reductase complex","na":1,"nb":2,"a":[["energy_complex/fumarate_reductase_complex.html","fumarate reductase complex"]],"b":[["ComplexPortal%3ACPX-1967","Plasma membrane fumarate reductase complex"],["GO%3A0045283","fumarate reductase complex"]]},{"id":"GO:0051144","l":"1,2-propanediol catabolic process","na":1,"nb":2,"a":[["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]],"b":[["GO%3A0051144","1,2-propanediol catabolic process"],["NCBIfam%3ANF047788","transcriptional regulator PocR"]]},{"id":"GO:0055040","l":"periplasmic flagellum","na":1,"nb":2,"a":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]],"b":[["GO%3A0055040","periplasmic flagellum"],["NCBIfam%3ANF047448","flagellar coiling protein FcpA"]]},{"id":"GO:0061701","l":"bacterial outer membrane vesicle","na":1,"nb":2,"a":[["other/bacterial_outer_membrane_vesicle.html","bacterial outer membrane vesicle"]],"b":[["GO%3A0061701","bacterial outer membrane vesicle"],["NCBIfam%3ANF049843","BAR domain-like protein A BdpA"]]},{"id":"GO:0062155","l":"curli secretion complex","na":1,"nb":2,"a":[["appendage/curli.html","curli"]],"b":[["ComplexPortal%3ACPX-4743","Curli secretion complex"],["GO%3A0062155","curli secretion complex"]]},{"id":"GO:0062160","l":"spongiome","na":2,"nb":1,"a":[["membrane_organelle/contractile_vacuole_complex.html","contractile vacuole complex"],["membrane_organelle/spongiome.html","spongiome"]],"b":[["GO%3A0062160","spongiome"]]},{"id":"GO:0070056","l":"prospore membrane leading edge","na":2,"nb":1,"a":[["spore/prospore_membrane.html","prospore membrane"],["spore/prospore_membrane_leading_edge.html","prospore membrane leading edge"]],"b":[["GO%3A0070056","prospore membrane leading edge"]]},{"id":"GO:0070057","l":"prospore membrane spindle pole body attachment site","na":2,"nb":1,"a":[["spore/prospore_membrane.html","prospore membrane"],["spore/prospore_membrane_spindle_pole_body_attachment_site.html","prospore membrane spindle pole body attachment site"]],"b":[["GO%3A0070057","prospore membrane spindle pole body attachment site"]]},{"id":"GO:0070070","l":"proton-transporting V-type ATPase complex assembly","na":1,"nb":2,"a":[["other/rave_complex.html","RAVE complex"]],"b":[["GO%3A0070070","proton-transporting V-type ATPase complex assembly"],["GO%3A0070072","vacuolar proton-transporting V-type ATPase complex assembly"]]},{"id":"GO:0070258","l":"inner membrane pellicle complex","na":2,"nb":1,"a":[["cytoskeleton/subpellicular_microtubule.html","subpellicular microtubule"],["membrane_organelle/inner_membrane_pellicle_complex.html","inner membrane pellicle complex"]],"b":[["GO%3A0070258","inner membrane pellicle complex"]]},{"id":"GO:0070477","l":"endospore core","na":2,"nb":1,"a":[["spore/endospore_core.html","endospore core"],["spore/spore_inner_membrane.html","spore inner membrane"]],"b":[["GO%3A0070477","endospore core"]]},{"id":"GO:0071005","l":"U2-type precatalytic spliceosome","na":2,"nb":1,"a":[["ribonucleoprotein/u2_type_catalytic_step_1_spliceosome.html","U2-type catalytic step 1 spliceosome"],["ribonucleoprotein/u2_type_precatalytic_spliceosome.html","U2-type precatalytic spliceosome"]],"b":[["GO%3A0071005","U2-type precatalytic spliceosome"]]},{"id":"GO:0071007","l":"U2-type catalytic step 2 spliceosome","na":1,"nb":2,"a":[["ribonucleoprotein/u2_type_catalytic_step_2_spliceosome.html","U2-type catalytic step 2 spliceosome"]],"b":[["ComplexPortal%3ACPX-26472","Major Spliceosomal C* complex"],["GO%3A0071007","U2-type catalytic step 2 spliceosome"]]},{"id":"GO:0071015","l":"U12-type prespliceosome","na":2,"nb":1,"a":[["ribonucleoprotein/u12_type_precatalytic_spliceosome.html","U12-type precatalytic spliceosome"],["ribonucleoprotein/u12_type_prespliceosome.html","U12-type prespliceosome"]],"b":[["GO%3A0071015","U12-type prespliceosome"]]},{"id":"GO:0071017","l":"U12-type catalytic step 1 spliceosome","na":2,"nb":1,"a":[["ribonucleoprotein/u12_type_catalytic_step_1_spliceosome.html","U12-type catalytic step 1 spliceosome"],["ribonucleoprotein/u12_type_catalytic_step_2_spliceosome.html","U12-type catalytic step 2 spliceosome"]],"b":[["GO%3A0071017","U12-type catalytic step 1 spliceosome"]]},{"id":"GO:0071018","l":"U12-type catalytic step 2 spliceosome","na":1,"nb":2,"a":[["ribonucleoprotein/u12_type_catalytic_step_2_spliceosome.html","U12-type catalytic step 2 spliceosome"]],"b":[["ComplexPortal%3ACPX-26509","Minor Spliceosomal B-act complex"],["GO%3A0071018","U12-type catalytic step 2 spliceosome"]]},{"id":"GO:0071019","l":"U12-type post-mRNA release spliceosomal complex","na":2,"nb":1,"a":[["ribonucleoprotein/u12_type_post_mrna_release_spliceosomal_complex.html","U12-type post-mRNA release spliceosomal complex"],["ribonucleoprotein/u12_type_post_spliceosomal_complex.html","U12-type post-spliceosomal complex"]],"b":[["GO%3A0071019","U12-type post-mRNA release spliceosomal complex"]]},{"id":"GO:0071261","l":"Ssh1 translocon complex","na":1,"nb":2,"a":[["other/ssh1_translocon_complex.html","Ssh1 translocon complex"]],"b":[["ComplexPortal%3ACPX-1834","SSH1 translocon complex"],["GO%3A0071261","Ssh1 translocon complex"]]},{"id":"GO:0071970","l":"fungal-type cell wall (1->3)-beta-D-glucan biosynthetic process","na":1,"nb":2,"a":[["other/1_3_beta_d_glucan_synthase_complex.html","1,3-beta-D-glucan synthase complex"]],"b":[["GO%3A0034413","ascospore wall (1->3)-beta-D-glucan biosynthetic process"],["GO%3A0071970","fungal-type cell wall (1->3)-beta-D-glucan biosynthetic process"]]},{"id":"GO:0090383","l":"phagosome acidification","na":1,"nb":2,"a":[["membrane_organelle/phagocytic_vesicle_lumen.html","phagocytic vesicle lumen"]],"b":[["GO%3A0090383","phagosome acidification"],["GO%3A0090390","phagosome acidification involved in apoptotic cell clearance"]]},{"id":"GO:0097002","l":"mitochondrial inner boundary membrane","na":2,"nb":1,"a":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_crista_junction.html","mitochondrial crista junction"]],"b":[["GO%3A0097002","mitochondrial inner boundary membrane"]]},{"id":"GO:0097591","l":"ventral disc lateral crest","na":2,"nb":1,"a":[["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_lateral_crest.html","ventral disc lateral crest"]],"b":[["GO%3A0097591","ventral disc lateral crest"]]},{"id":"GO:0097592","l":"ventral disc overlap zone","na":2,"nb":1,"a":[["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_overlap_zone.html","ventral disc overlap zone"]],"b":[["GO%3A0097592","ventral disc overlap zone"]]},{"id":"GO:0097596","l":"ventral disc supernumerary microtubule array","na":2,"nb":1,"a":[["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_supernumerary_microtubule_array.html","ventral disc supernumerary microtubule array"]],"b":[["GO%3A0097596","ventral disc supernumerary microtubule array"]]},{"id":"GO:0098775","l":"curli assembly","na":1,"nb":2,"a":[["appendage/curli.html","curli"]],"b":[["ComplexPortal%3ACPX-4743","Curli secretion complex"],["GO%3A0098775","curli assembly"]]},{"id":"GO:0106176","l":"clathrin-coated endocytic vesicle lumen","na":2,"nb":1,"a":[["membrane_organelle/clathrin_coated_endocytic_vesicle_lumen.html","clathrin-coated endocytic vesicle lumen"],["membrane_organelle/endocytic_vesicle_lumen.html","endocytic vesicle lumen"]],"b":[["GO%3A0106176","clathrin-coated endocytic vesicle lumen"]]},{"id":"GO:0120119","l":"flagellum attachment zone","na":2,"nb":1,"a":[["cytoskeleton/bilobe_structure.html","bilobe structure"],["cytoskeleton/flagellum_attachment_zone.html","flagellum attachment zone"]],"b":[["GO%3A0120119","flagellum attachment zone"]]},{"id":"GO:0120217","l":"DNA gyrase complex","na":1,"nb":2,"a":[["other/dna_gyrase_complex.html","DNA gyrase complex"]],"b":[["ComplexPortal%3ACPX-2177","GyrA-GyrB DNA Gyrase complex"],["GO%3A0120217","DNA gyrase complex"]]},{"id":"GO:0140549","l":"spore inner membrane","na":2,"nb":1,"a":[["spore/endospore_core.html","endospore core"],["spore/spore_inner_membrane.html","spore inner membrane"]],"b":[["GO%3A0140549","spore inner membrane"]]},{"id":"GO:0160115","l":"axonemal microtubule doublet ribbon","na":2,"nb":1,"a":[["cytoskeleton/axonemal_doublet_microtubule.html","axonemal doublet microtubule"],["cytoskeleton/axonemal_microtubule_doublet_ribbon.html","axonemal microtubule doublet ribbon"]],"b":[["GO%3A0160115","axonemal microtubule doublet ribbon"]]},{"id":"GO:0160223","l":"pyrenoid tubule","na":2,"nb":1,"a":[["membrane_organelle/pyrenoid_tubule.html","pyrenoid tubule"],["other/pyrenoid.html","pyrenoid"]],"b":[["GO%3A0160223","pyrenoid tubule"]]},{"id":"GO:1990061","l":"bacterial degradosome","na":1,"nb":2,"a":[["ribonucleoprotein/bacterial_degradosome.html","bacterial degradosome"]],"b":[["ComplexPortal%3ACPX-403","RNA degradosome"],["GO%3A1990061","bacterial degradosome"]]},{"id":"GO:1990063","l":"Bam protein complex","na":1,"nb":2,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["ComplexPortal%3ACPX-1923","BAM complex"],["GO%3A1990063","Bam protein complex"]]},{"id":"GO:1990070","l":"TRAPPI protein complex","na":1,"nb":2,"a":[["other/trappi_protein_complex.html","TRAPPI protein complex"]],"b":[["ComplexPortal%3ACPX-1940","TRAPPI protein complex"],["GO%3A1990070","TRAPPI protein complex"]]},{"id":"GO:1990732","l":"pyrenoid","na":2,"nb":1,"a":[["membrane_organelle/pyrenoid_tubule.html","pyrenoid tubule"],["other/pyrenoid.html","pyrenoid"]],"b":[["GO%3A1990732","pyrenoid"]]},{"id":"InterPro:IPR000563","l":"","na":1,"nb":2,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF02108","Flagellar assembly protein FliH"],["PRINTS%3APR01003","Flagellar assembly protein FliH signature"]]},{"id":"InterPro:IPR002585","l":"","na":1,"nb":2,"a":[["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]],"b":[["PANTHER%3APTHR30365","CYTOCHROME D UBIQUINOL OXIDASE"],["Pfam%3APF01654","Cytochrome bd terminal oxidase subunit I"]]},{"id":"InterPro:IPR003317","l":"","na":1,"nb":2,"a":[["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]],"b":[["PANTHER%3APTHR43141","CYTOCHROME BD2 SUBUNIT II"],["Pfam%3APF02322","Cytochrome bd terminal oxidase subunit II"]]},{"id":"InterPro:IPR005742","l":"","na":1,"nb":2,"a":[["other/dna_topoisomerase_iv_complex.html","DNA topoisomerase IV complex"]],"b":[["HAMAP%3AMF_00936","DNA topoisomerase 4 subunit A [parC]"],["Pfam%3APF03989","DNA gyrase C-terminal domain, beta-propeller"]]},{"id":"InterPro:IPR006301","l":"","na":1,"nb":2,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF00771","FHIPEP family"],["PROSITE%3APS00994","Bacterial export FHIPEP family signature"]]},{"id":"InterPro:IPR006333","l":"","na":1,"nb":2,"a":[["energy_complex/cytochrome_o_ubiquinol_oxidase_complex.html","cytochrome o ubiquinol oxidase complex"]],"b":[["Pfam%3APF00116","Cytochrome C oxidase subunit II, periplasmic domain"],["Pfam%3APF06481","COX Aromatic Rich Motif"]]},{"id":"InterPro:IPR006344","l":"","na":1,"nb":2,"a":[["other/exodeoxyribonuclease_v_complex.html","exodeoxyribonuclease V complex"]],"b":[["Pfam%3APF13245","AAA domain"],["HAMAP%3AMF_01487","RecBCD enzyme subunit RecD [recD]"]]},{"id":"InterPro:IPR008703","l":"","na":1,"nb":2,"a":[["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"]],"b":[["HAMAP%3AMF_00425","Na(+)-translocating NADH-quinone reductase subunit A [nqrA]"],["PANTHER%3APTHR37839","NA(+)-TRANSLOCATING NADH-QUINONE REDUCTASE SUBUNIT A"]]},{"id":"InterPro:IPR011344","l":"","na":1,"nb":2,"a":[["other/single_stranded_dna_binding_protein_complex.html","single-stranded DNA-binding protein complex"]],"b":[["HAMAP%3AMF_00984","Single-stranded DNA-binding protein"],["PANTHER%3APTHR10302","SINGLE-STRANDED DNA-BINDING PROTEIN"]]},{"id":"InterPro:IPR012422","l":"Cytochrome c oxidase, subunit IV, bacterial aa3 type","na":1,"nb":2,"a":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]],"b":[["InterPro%3AIPR012422","Cytochrome c oxidase, subunit IV, bacterial aa3 type"],["Pfam%3APF07835","Bacterial aa3 type cytochrome c oxidase subunit IV"]]},{"id":"InterPro:IPR014524","l":"","na":1,"nb":2,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["Pfam%3APF06804","Outer membrane protein assembly factor BamC-like C-terminal domain"],["HAMAP%3AMF_00924","Outer membrane protein assembly factor BamC [bamC]"]]},{"id":"InterPro:IPR017687","l":"","na":1,"nb":2,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["HAMAP%3AMF_00923","Outer membrane protein assembly factor BamB [bamB]"],["Pfam%3APF13360","Outer membrane protein assembly factor BamB"]]},{"id":"InterPro:IPR017689","l":"","na":1,"nb":2,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["HAMAP%3AMF_00922","Outer membrane protein assembly factor BamD [bamD]"],["Pfam%3APF13525","Outer membrane lipoprotein"]]},{"id":"InterPro:IPR024791","l":"","na":1,"nb":2,"a":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]],"b":[["Pfam%3APF00510","Cytochrome c oxidase subunit III"],["PANTHER%3APTHR11403","CYTOCHROME C OXIDASE SUBUNIT III"]]},{"id":"InterPro:IPR030689","l":"","na":1,"nb":2,"a":[["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"]],"b":[["Pfam%3APF00032","Cytochrome b(C-terminal)/b6/petD"],["Pfam%3APF00033","Cytochrome b/b6/petB"]]},{"id":"InterPro:IPR040747","l":"BILBO1, N-terminal domain","na":1,"nb":2,"a":[["cytoskeleton/ciliary_pocket_collar.html","ciliary pocket collar"]],"b":[["InterPro%3AIPR040747","BILBO1, N-terminal domain"],["Pfam%3APF18281","BILBO1 N-terminal domain"]]},{"id":"NCBITaxon:198110","l":"Pseudomonas phage 201phi2-1","na":2,"nb":1,"a":[["cytoskeleton/phuz_spindle.html","PhuZ spindle"],["other/phage_nucleus.html","phage nucleus"]],"b":[["Pfam%3APF25677","Phikzvirus chimallin family"]]},{"id":"NCBITaxon:264462","l":"Bdellovibrio bacteriovorus HD100","na":1,"nb":2,"a":[["appendage/type_iv_pilus.html","type IV pilus"]],"b":[["TED%3AAF-Q6MMM6-F1-model_v4_TED01","TED novel fold AF-Q6MMM6-F1-model_v4_TED01"],["TED%3AAF-Q6MPT8-F1-model_v4_TED01","TED novel fold AF-Q6MPT8-F1-model_v4_TED01"]]},{"id":"Pfam:PF04454","l":"Encapsulating protein for peroxidase","na":1,"nb":2,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]],"b":[["Pfam%3APF04454","Encapsulating protein for peroxidase"],["proteintraitsmech%3AINTERFACE_PF04454_PF04454","Linocin_M18–Linocin_M18 domain interface"]]},{"id":"Pfam:PF06386","l":"Gas vesicle synthesis protein GvpL/GvpF","na":1,"nb":2,"a":[["inclusion/gas_vesicle.html","gas vesicle"]],"b":[["Pfam%3APF06386","Gas vesicle synthesis protein GvpL/GvpF"],["proteintraitsmech%3AINTERFACE_PF06386_PF06386","GvpL_GvpF–GvpL_GvpF domain interface"]]},{"id":"Pfam:PF18281","l":"BILBO1 N-terminal domain","na":1,"nb":2,"a":[["cytoskeleton/ciliary_pocket_collar.html","ciliary pocket collar"]],"b":[["Pfam%3APF18281","BILBO1 N-terminal domain"],["proteintraitsmech%3AINTERFACE_PF18281_PF18281","BILBO1_N–BILBO1_N domain interface"]]},{"id":"UniProt:P11558","l":"","na":1,"nb":2,"a":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]],"b":[["RHEA%3A12532","coenzyme B + methyl-coenzyme M = methane + coenzyme M-coenzyme B heterodisulfide"],["MCSA%3A156","coenzyme-B sulfoethylthiotransferase"]]},{"id":"UniProt:P16328","l":"","na":1,"nb":2,"a":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"]],"b":[["Pfam%3APF07195","Flagellar hook-associated protein 2 C-terminus"],["Pfam%3APF02465","Flagellar hook-associated protein 2 N-terminus"]]},{"id":"UniProt:P26462","l":"","na":2,"nb":1,"a":[["appendage/bacterial_type_flagellum_basal_body_proximal_rod.html","bacterial-type flagellum basal body, proximal rod"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"]],"b":[["Pfam%3APF02049","Flagellar hook-basal body complex protein FliE"]]},{"id":"UniProt:P37093","l":"","na":1,"nb":2,"a":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"]],"b":[["Pfam%3APF22341","GSPII protein E, N1E domain"],["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]]},{"id":"UniProt:P45689","l":"","na":2,"nb":1,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"UniProt:P52616","l":"","na":2,"nb":1,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"]],"b":[["Pfam%3APF21504","Flagellin, barrel domain"]]},{"id":"UniProt:Q03511","l":"","na":2,"nb":1,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"UniProt:Q03512","l":"","na":2,"nb":1,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["Pfam%3APF03319","Ethanolamine utilisation protein EutN/carboxysome"]]},{"id":"UniProt:Q31QW7","l":"","na":2,"nb":1,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"]]},{"id":"CHEBI:30033","l":"","na":1,"nb":1,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"]],"b":[["proteintraitsmech%3ABIOLIP_BCL","BCL-binding site"]]},{"id":"GO:0000147","l":"actin cortical patch assembly","na":1,"nb":1,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"]],"b":[["GO%3A0000147","actin cortical patch assembly"]]},{"id":"GO:0000937","l":"dolipore septum","na":1,"nb":1,"a":[["envelope/dolipore_septum.html","dolipore septum"]],"b":[["GO%3A0000937","dolipore septum"]]},{"id":"GO:0001411","l":"hyphal tip","na":1,"nb":1,"a":[["other/spitzenkorper.html","spitzenkorper"]],"b":[["GO%3A0001411","hyphal tip"]]},{"id":"GO:0001536","l":"radial spoke stalk","na":1,"nb":1,"a":[["cytoskeleton/radial_spoke.html","radial spoke"]],"b":[["GO%3A0001536","radial spoke stalk"]]},{"id":"GO:0020003","l":"symbiont-containing vacuole","na":1,"nb":1,"a":[["membrane_organelle/parasitophorous_vacuole.html","parasitophorous vacuole"]],"b":[["GO%3A0020003","symbiont-containing vacuole"]]},{"id":"GO:0020004","l":"symbiont-containing vacuolar space","na":1,"nb":1,"a":[["membrane_organelle/parasitophorous_vacuole_lumen.html","parasitophorous vacuole lumen"]],"b":[["GO%3A0020004","symbiont-containing vacuolar space"]]},{"id":"GO:0020018","l":"ciliary pocket membrane","na":1,"nb":1,"a":[["membrane_organelle/flagellar_pocket.html","flagellar pocket"]],"b":[["GO%3A0020018","ciliary pocket membrane"]]},{"id":"GO:0020020","l":"food vacuole","na":1,"nb":1,"a":[["membrane_organelle/food_vacuole.html","food vacuole"]],"b":[["GO%3A0020020","food vacuole"]]},{"id":"GO:0020036","l":"","na":1,"nb":1,"a":[["membrane_organelle/maurer_s_cleft.html","Maurer's cleft"]],"b":[["GO%3A0020036","Maurer's cleft"]]},{"id":"GO:0030680","l":"dimeric ribonuclease P complex","na":1,"nb":1,"a":[["ribonucleoprotein/dimeric_ribonuclease_p_complex.html","dimeric ribonuclease P complex"]],"b":[["GO%3A0030680","dimeric ribonuclease P complex"]]},{"id":"GO:0031039","l":"macronucleus","na":1,"nb":1,"a":[["membrane_organelle/macronucleus.html","macronucleus"]],"b":[["GO%3A0031039","macronucleus"]]},{"id":"GO:0031040","l":"micronucleus","na":1,"nb":1,"a":[["membrane_organelle/micronucleus.html","micronucleus"]],"b":[["GO%3A0031040","micronucleus"]]},{"id":"GO:0031080","l":"nuclear pore outer ring","na":1,"nb":1,"a":[["other/nuclear_pore_outer_ring.html","nuclear pore outer ring"]],"b":[["GO%3A0031080","nuclear pore outer ring"]]},{"id":"GO:0031471","l":"ethanolamine degradation polyhedral organelle","na":1,"nb":1,"a":[["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"]],"b":[["GO%3A0031471","ethanolamine degradation polyhedral organelle"]]},{"id":"GO:0031472","l":"propanediol degradation polyhedral organelle","na":1,"nb":1,"a":[["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]],"b":[["GO%3A0031472","propanediol degradation polyhedral organelle"]]},{"id":"GO:0031521","l":"spitzenkorper","na":1,"nb":1,"a":[["other/spitzenkorper.html","spitzenkorper"]],"b":[["GO%3A0031521","spitzenkorper"]]},{"id":"GO:0031560","l":"cellular bud neck polarisome","na":1,"nb":1,"a":[["other/polarisome.html","polarisome"]],"b":[["GO%3A0031560","cellular bud neck polarisome"]]},{"id":"GO:0031562","l":"hyphal tip polarisome","na":1,"nb":1,"a":[["other/polarisome.html","polarisome"]],"b":[["GO%3A0031562","hyphal tip polarisome"]]},{"id":"GO:0031563","l":"mating projection tip polarisome","na":1,"nb":1,"a":[["other/polarisome.html","polarisome"]],"b":[["GO%3A0031563","mating projection tip polarisome"]]},{"id":"GO:0032009","l":"early phagosome","na":1,"nb":1,"a":[["membrane_organelle/phagocytic_vesicle.html","phagocytic vesicle"]],"b":[["GO%3A0032009","early phagosome"]]},{"id":"GO:0032120","l":"ascospore-type prospore membrane formation","na":1,"nb":1,"a":[["spore/prospore_membrane.html","prospore membrane"]],"b":[["GO%3A0032120","ascospore-type prospore membrane formation"]]},{"id":"GO:0033009","l":"nucleomorph","na":1,"nb":1,"a":[["membrane_organelle/nucleomorph.html","nucleomorph"]],"b":[["GO%3A0033009","nucleomorph"]]},{"id":"GO:0033172","l":"gas vesicle shell","na":1,"nb":1,"a":[["inclusion/gas_vesicle_shell.html","gas vesicle shell"]],"b":[["GO%3A0033172","gas vesicle shell"]]},{"id":"GO:0033289","l":"intraconoid microtubule","na":1,"nb":1,"a":[["cytoskeleton/intraconoid_microtubule.html","intraconoid microtubule"]],"b":[["GO%3A0033289","intraconoid microtubule"]]},{"id":"GO:0033985","l":"acidocalcisome lumen","na":1,"nb":1,"a":[["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"]],"b":[["GO%3A0033985","acidocalcisome lumen"]]},{"id":"GO:0035253","l":"ciliary rootlet","na":1,"nb":1,"a":[["cytoskeleton/ciliary_rootlet.html","ciliary rootlet"]],"b":[["GO%3A0035253","ciliary rootlet"]]},{"id":"GO:0036000","l":"mucocyst","na":1,"nb":1,"a":[["membrane_organelle/mucocyst.html","mucocyst"]],"b":[["GO%3A0036000","mucocyst"]]},{"id":"GO:0036407","l":"mycolate outer membrane","na":1,"nb":1,"a":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]],"b":[["GO%3A0036407","mycolate outer membrane"]]},{"id":"GO:0042645","l":"mitochondrial nucleoid","na":1,"nb":1,"a":[["nucleoid/mitochondrial_nucleoid.html","mitochondrial nucleoid"]],"b":[["GO%3A0042645","mitochondrial nucleoid"]]},{"id":"GO:0043263","l":"cellulosome","na":1,"nb":1,"a":[["other/cellulosome.html","cellulosome"]],"b":[["GO%3A0043263","cellulosome"]]},{"id":"GO:0044227","l":"methane-oxidizing organelle","na":1,"nb":1,"a":[["membrane_organelle/methane_oxidizing_organelle.html","methane-oxidizing organelle"]],"b":[["GO%3A0044227","methane-oxidizing organelle"]]},{"id":"GO:0044311","l":"exoneme","na":1,"nb":1,"a":[["membrane_organelle/exoneme.html","exoneme"]],"b":[["GO%3A0044311","exoneme"]]},{"id":"GO:0044611","l":"nuclear pore inner ring","na":1,"nb":1,"a":[["other/nuclear_pore_inner_ring.html","nuclear pore inner ring"]],"b":[["GO%3A0044611","nuclear pore inner ring"]]},{"id":"GO:0044612","l":"nuclear pore linkers","na":1,"nb":1,"a":[["other/nuclear_pore_linkers.html","nuclear pore linkers"]],"b":[["GO%3A0044612","nuclear pore linkers"]]},{"id":"GO:0044613","l":"nuclear pore central transport channel","na":1,"nb":1,"a":[["other/nuclear_pore_central_transport_channel.html","nuclear pore central transport channel"]],"b":[["GO%3A0044613","nuclear pore central transport channel"]]},{"id":"GO:0044614","l":"nuclear pore cytoplasmic filaments","na":1,"nb":1,"a":[["other/nuclear_pore_cytoplasmic_filaments.html","nuclear pore cytoplasmic filaments"]],"b":[["GO%3A0044614","nuclear pore cytoplasmic filaments"]]},{"id":"GO:0044615","l":"nuclear pore nuclear basket","na":1,"nb":1,"a":[["other/nuclear_pore_nuclear_basket.html","nuclear pore nuclear basket"]],"b":[["GO%3A0044615","nuclear pore nuclear basket"]]},{"id":"GO:0044674","l":"methyl coenzyme M reductase complex","na":1,"nb":1,"a":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]],"b":[["GO%3A0044674","methyl coenzyme M reductase complex"]]},{"id":"GO:0045009","l":"chitosome","na":1,"nb":1,"a":[["membrane_organelle/chitosome.html","chitosome"]],"b":[["GO%3A0045009","chitosome"]]},{"id":"GO:0046188","l":"methane catabolic process","na":1,"nb":1,"a":[["membrane_organelle/methane_oxidizing_organelle.html","methane-oxidizing organelle"]],"b":[["GO%3A0046188","methane catabolic process"]]},{"id":"GO:0055039","l":"trichocyst","na":1,"nb":1,"a":[["membrane_organelle/trichocyst.html","trichocyst"]],"b":[["GO%3A0055039","trichocyst"]]},{"id":"GO:0061909","l":"autophagosome-lysosome fusion","na":1,"nb":1,"a":[["membrane_organelle/autophagosome.html","autophagosome"]],"b":[["GO%3A0061909","autophagosome-lysosome fusion"]]},{"id":"GO:0061927","l":"TOC-TIC supercomplex I","na":1,"nb":1,"a":[["membrane_organelle/chloroplast.html","chloroplast"]],"b":[["GO%3A0061927","TOC-TIC supercomplex I"]]},{"id":"GO:0070074","l":"mononeme","na":1,"nb":1,"a":[["membrane_organelle/mononeme.html","mononeme"]],"b":[["GO%3A0070074","mononeme"]]},{"id":"GO:0070676","l":"intralumenal vesicle formation","na":1,"nb":1,"a":[["other/escrt_iv_complex.html","ESCRT IV complex"]],"b":[["GO%3A0070676","intralumenal vesicle formation"]]},{"id":"GO:0071022","l":"U12-type post-spliceosomal complex","na":1,"nb":1,"a":[["ribonucleoprotein/u12_type_post_spliceosomal_complex.html","U12-type post-spliceosomal complex"]],"b":[["GO%3A0071022","U12-type post-spliceosomal complex"]]},{"id":"GO:0097268","l":"cytoophidium","na":1,"nb":1,"a":[["cytoskeleton/cytoophidium.html","cytoophidium"]],"b":[["GO%3A0097268","cytoophidium"]]},{"id":"GO:0097568","l":"median body","na":1,"nb":1,"a":[["cytoskeleton/median_body.html","median body"]],"b":[["GO%3A0097568","median body"]]},{"id":"GO:0097691","l":"bacterial extracellular vesicle","na":1,"nb":1,"a":[["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"]],"b":[["GO%3A0097691","bacterial extracellular vesicle"]]},{"id":"GO:0097740","l":"paraflagellar rod","na":1,"nb":1,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["GO%3A0097740","paraflagellar rod"]]},{"id":"GO:0097741","l":"mastigoneme","na":1,"nb":1,"a":[["appendage/mastigoneme.html","mastigoneme"]],"b":[["GO%3A0097741","mastigoneme"]]},{"id":"GO:0098561","l":"methyl accepting chemotaxis protein complex","na":1,"nb":1,"a":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]],"b":[["GO%3A0098561","methyl accepting chemotaxis protein complex"]]},{"id":"GO:0098774","l":"curli","na":1,"nb":1,"a":[["appendage/curli.html","curli"]],"b":[["GO%3A0098774","curli"]]},{"id":"GO:0110145","l":"magnetosome lumen","na":1,"nb":1,"a":[["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"]],"b":[["GO%3A0110145","magnetosome lumen"]]},{"id":"GO:0120120","l":"bilobe structure","na":1,"nb":1,"a":[["cytoskeleton/bilobe_structure.html","bilobe structure"]],"b":[["GO%3A0120120","bilobe structure"]]},{"id":"GO:0120121","l":"tripartite attachment complex","na":1,"nb":1,"a":[["cytoskeleton/tripartite_attachment_complex.html","tripartite attachment complex"]],"b":[["GO%3A0120121","tripartite attachment complex"]]},{"id":"GO:0120234","l":"stereocilium coat","na":1,"nb":1,"a":[["envelope/glycocalyx.html","glycocalyx"]],"b":[["GO%3A0120234","stereocilium coat"]]},{"id":"GO:0120238","l":"sperm glycocalyx","na":1,"nb":1,"a":[["envelope/glycocalyx.html","glycocalyx"]],"b":[["GO%3A0120238","sperm glycocalyx"]]},{"id":"GO:0120239","l":"vascular endothelial glycocalyx","na":1,"nb":1,"a":[["envelope/glycocalyx.html","glycocalyx"]],"b":[["GO%3A0120239","vascular endothelial glycocalyx"]]},{"id":"GO:0120240","l":"platelet glycocalyx","na":1,"nb":1,"a":[["envelope/glycocalyx.html","glycocalyx"]],"b":[["GO%3A0120240","platelet glycocalyx"]]},{"id":"GO:0120343","l":"radial spoke neck","na":1,"nb":1,"a":[["cytoskeleton/radial_spoke.html","radial spoke"]],"b":[["GO%3A0120343","radial spoke neck"]]},{"id":"GO:0140266","l":"Woronin body","na":1,"nb":1,"a":[["membrane_organelle/woronin_body.html","Woronin body"]],"b":[["GO%3A0140266","Woronin body"]]},{"id":"GO:0140621","l":"type I pilus","na":1,"nb":1,"a":[["appendage/type_i_pilus.html","type I pilus"]],"b":[["GO%3A0140621","type I pilus"]]},{"id":"GO:0140623","l":"type I pilus assembly","na":1,"nb":1,"a":[["appendage/type_i_pilus.html","type I pilus"]],"b":[["GO%3A0140623","type I pilus assembly"]]},{"id":"GO:0160201","l":"polaroplast","na":1,"nb":1,"a":[["membrane_organelle/polaroplast.html","polaroplast"]],"b":[["GO%3A0160201","polaroplast"]]},{"id":"GO:0160202","l":"polar tube anchoring disc","na":1,"nb":1,"a":[["spore/polar_tube_anchoring_disc.html","polar tube anchoring disc"]],"b":[["GO%3A0160202","polar tube anchoring disc"]]},{"id":"GO:0160292","l":"sodium-translocating NADH:quinone reductase complex","na":1,"nb":1,"a":[["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"]],"b":[["GO%3A0160292","sodium-translocating NADH:quinone reductase complex"]]},{"id":"GO:1990131)","l":"","na":1,"nb":1,"a":[["other/ragulator_complex.html","Ragulator complex"]],"b":[["GO%3A0071986","Ragulator complex"]]},{"id":"GO:1990225","l":"rhoptry neck","na":1,"nb":1,"a":[["membrane_organelle/rhoptry_neck.html","rhoptry neck"]],"b":[["GO%3A1990225","rhoptry neck"]]},{"id":"GO:1990413","l":"eyespot apparatus","na":1,"nb":1,"a":[["membrane_organelle/eyespot_apparatus.html","eyespot apparatus"]],"b":[["GO%3A1990413","eyespot apparatus"]]},{"id":"InterPro:IPR000067","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"]],"b":[["PRINTS%3APR01009","Flagellar M-ring protein signature"]]},{"id":"InterPro:IPR003178","l":"","na":1,"nb":1,"a":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]],"b":[["Pfam%3APF02240","Methyl-coenzyme M reductase gamma subunit"]]},{"id":"InterPro:IPR004586","l":"","na":1,"nb":1,"a":[["other/exodeoxyribonuclease_v_complex.html","exodeoxyribonuclease V complex"]],"b":[["HAMAP%3AMF_01485","RecBCD enzyme subunit RecB [recB]"]]},{"id":"InterPro:IPR005884","l":"","na":1,"nb":1,"a":[["energy_complex/fumarate_reductase_complex.html","fumarate reductase complex"]],"b":[["PROSITE%3APS00504","Fumarate reductase / succinate dehydrogenase FAD-binding site"]]},{"id":"InterPro:IPR006136","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF01312","FlhB HrpN YscU SpaS Family"]]},{"id":"InterPro:IPR006303","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF01311","Bacterial export proteins, family 1"]]},{"id":"InterPro:IPR006305","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF01313","Bacterial export proteins, family 3"]]},{"id":"InterPro:IPR006697","l":"","na":1,"nb":1,"a":[["other/exodeoxyribonuclease_v_complex.html","exodeoxyribonuclease V complex"]],"b":[["HAMAP%3AMF_01486","RecBCD enzyme subunit RecC [recC]"]]},{"id":"InterPro:IPR007824","l":"","na":1,"nb":1,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["Pfam%3APF05149","Paraflagellar rod protein"]]},{"id":"InterPro:IPR010205","l":"","na":1,"nb":1,"a":[["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"]],"b":[["HAMAP%3AMF_00430","Na(+)-translocating NADH-quinone reductase subunit F [nqrF]"]]},{"id":"InterPro:IPR010966","l":"","na":1,"nb":1,"a":[["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"]],"b":[["HAMAP%3AMF_00426","Na(+)-translocating NADH-quinone reductase subunit B [nqrB]"]]},{"id":"InterPro:IPR010967","l":"","na":1,"nb":1,"a":[["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"]],"b":[["HAMAP%3AMF_00429","Na(+)-translocating NADH-quinone reductase subunit E [nqrE]"]]},{"id":"InterPro:IPR011292","l":"","na":1,"nb":1,"a":[["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"]],"b":[["HAMAP%3AMF_00428","Na(+)-translocating NADH-quinone reductase subunit D [nqrD]"]]},{"id":"InterPro:IPR012823","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF02050","Flagellar FliJ protein"]]},{"id":"InterPro:IPR014207","l":"","na":1,"nb":1,"a":[["energy_complex/cytochrome_o_ubiquinol_oxidase_complex.html","cytochrome o ubiquinol oxidase complex"]],"b":[["PROSITE%3APS00077","Heme-copper oxidase catalytic subunit, copper B binding region signature"]]},{"id":"InterPro:IPR014210","l":"","na":1,"nb":1,"a":[["energy_complex/cytochrome_o_ubiquinol_oxidase_complex.html","cytochrome o ubiquinol oxidase complex"]],"b":[["Pfam%3APF03626","Prokaryotic Cytochrome C oxidase subunit IV"]]},{"id":"InterPro:IPR023707","l":"","na":1,"nb":1,"a":[["other/bam_protein_complex.html","Bam protein complex"]],"b":[["HAMAP%3AMF_01430","Outer membrane protein assembly factor BamA [bamA]"]]},{"id":"InterPro:IPR047743","l":"","na":1,"nb":1,"a":[["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]],"b":[["Pfam%3APF28012","Membrane protein YnhF-like"]]},{"id":"Pfam:PF05149","l":"Paraflagellar rod protein","na":1,"nb":1,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["Pfam%3APF05149","Paraflagellar rod protein"]]},{"id":"UniProt:A0QQ46","l":"","na":1,"nb":1,"a":[["secretion_system/esx_3_type_vii_secretion_system_membrane_complex.html","ESX-3 type VII secretion system membrane complex"]],"b":[["Pfam%3APF19053","EccD-like transmembrane domain"]]},{"id":"UniProt:O85041","l":"","na":1,"nb":1,"a":[["microcompartment/carboxysome.html","carboxysome"]],"b":[["Pfam%3APF12288","Carboxysome shell peptide mid-region"]]},{"id":"UniProt:P0A1C7","l":"","na":1,"nb":1,"a":[["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]],"b":[["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"UniProt:P0A1K1","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF02050","Flagellar FliJ protein"]]},{"id":"UniProt:P0A1N8","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"]],"b":[["proteintraitsmech%3ABIOLIP_TQN","TQN-binding site"]]},{"id":"UniProt:P0A314","l":"","na":1,"nb":1,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"]],"b":[["Pfam%3APF02043","Bacteriochlorophyll C binding protein"]]},{"id":"UniProt:P0A3F8","l":"","na":1,"nb":1,"a":[["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]],"b":[["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]]},{"id":"UniProt:P0A3W0","l":"","na":1,"nb":1,"a":[["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]],"b":[["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"]]},{"id":"UniProt:P0A8Q0.","l":"","na":1,"nb":1,"a":[["energy_complex/fumarate_reductase_complex.html","fumarate reductase complex"]],"b":[["proteintraitsmech%3ABIOLIP_MQ7","MQ7-binding site"]]},{"id":"UniProt:P0ABB4","l":"","na":1,"nb":1,"a":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"]]},{"id":"UniProt:P11560","l":"","na":1,"nb":1,"a":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]],"b":[["MCSA%3A156","coenzyme-B sulfoethylthiotransferase"]]},{"id":"UniProt:P11562","l":"","na":1,"nb":1,"a":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]],"b":[["MCSA%3A156","coenzyme-B sulfoethylthiotransferase"]]},{"id":"UniProt:P14016","l":"","na":1,"nb":1,"a":[["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]],"b":[["Pfam%3APF10628","Outer spore coat protein E (CotE)"]]},{"id":"UniProt:P22225","l":"","na":1,"nb":1,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["Pfam%3APF05149","Paraflagellar rod protein"]]},{"id":"UniProt:P26418","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]],"b":[["Pfam%3APF02154","Flagellar motor switch protein FliM"]]},{"id":"UniProt:P26419","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]],"b":[["Pfam%3APF16973","Flagellar motor switch protein FliN N-terminal"]]},{"id":"UniProt:P27134","l":"","na":1,"nb":1,"a":[["microcompartment/carboxysome.html","carboxysome"]],"b":[["PROSITE%3APS00704","Prokaryotic-type carbonic anhydrases signature 1"]]},{"id":"UniProt:P40727","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF01312","FlhB HrpN YscU SpaS Family"]]},{"id":"UniProt:P41784","l":"","na":1,"nb":1,"a":[["secretion_system/type_iii_protein_secretion_system_complex.html","type III protein secretion system complex"]],"b":[["proteintraitsmech%3ABIOLIP_DXC","DXC-binding site"]]},{"id":"UniProt:P41791","l":"","na":1,"nb":1,"a":[["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"]],"b":[["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"UniProt:P41792","l":"","na":1,"nb":1,"a":[["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"]],"b":[["Pfam%3APF03319","Ethanolamine utilisation protein EutN/carboxysome"]]},{"id":"UniProt:P54702","l":"","na":1,"nb":1,"a":[["appendage/bacterial_type_flagellum_secretion_apparatus.html","bacterial-type flagellum secretion apparatus"]],"b":[["Pfam%3APF01311","Bacterial export proteins, family 1"]]},{"id":"UniProt:P70856","l":"","na":1,"nb":1,"a":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]],"b":[["Pfam%3APF04620","Flagellar filament outer layer protein Flaa"]]},{"id":"UniProt:P75471","l":"","na":1,"nb":1,"a":[["appendage/attachment_organelle.html","attachment organelle"]],"b":[["Pfam%3APF27734","Cytadherence high molecular weight protein 2"]]},{"id":"UniProt:P9WHT9","l":"","na":1,"nb":1,"a":[["other/proteasome_core_complex.html","proteasome core complex"]],"b":[["proteintraitsmech%3ABIOLIP_SA6","SA6-binding site"]]},{"id":"UniProt:Q06851","l":"","na":1,"nb":1,"a":[["other/cellulosome.html","cellulosome"]],"b":[["Pfam%3APF00963","Cohesin domain"]]},{"id":"UniProt:Q26789","l":"","na":1,"nb":1,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["Pfam%3APF05149","Paraflagellar rod protein"]]},{"id":"UniProt:Q46367","l":"","na":1,"nb":1,"a":[["membrane_organelle/chlorosome.html","chlorosome"]],"b":[["Pfam%3APF11098","Chlorosome envelope protein C"]]},{"id":"UniProt:Q46383","l":"","na":1,"nb":1,"a":[["membrane_organelle/chlorosome.html","chlorosome"]],"b":[["Pfam%3APF27499","CsmB chlorosome envelope protein"]]},{"id":"UniProt:Q46386","l":"","na":1,"nb":1,"a":[["membrane_organelle/chlorosome.html","chlorosome"]],"b":[["Pfam%3APF02043","Bacteriochlorophyll C binding protein"]]},{"id":"UniProt:Q9XDM8","l":"","na":1,"nb":1,"a":[["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]],"b":[["Pfam%3APF00936","BMC domain"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/CellStructureMech--TaxonMech.json b/assets/fleet/edges/CellStructureMech--TaxonMech.json index 54be663..b0e18e0 100644 --- a/assets/fleet/edges/CellStructureMech--TaxonMech.json +++ b/assets/fleet/edges/CellStructureMech--TaxonMech.json @@ -1 +1 @@ -{"a":"CellStructureMech","b":"TaxonMech","base":{"CellStructureMech":"https://culturebotai.github.io/CellStructureMech/pages/structures/","TaxonMech":"https://culturebotai.github.io/TaxonMech/pages/taxon.html?id="},"n":124,"by":{"NCBITaxon":124},"terms":[{"id":"NCBITaxon:2","l":"Bacteria","na":89,"nb":605695,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["NCBITaxon%3A119160","2,3-D degrading bacterium NHC2"],["NCBITaxon%3A119159","2,3-D degrading bacterium NHG3"],["NCBITaxon%3A103498","2,4-D-degrading bacterium 001"],["NCBITaxon%3A103499","2,4-D-degrading bacterium 007"],["NCBITaxon%3A103492","2,4-D-degrading bacterium 010"],["NCBITaxon%3A103495","2,4-D-degrading bacterium 012"]]},{"id":"NCBITaxon:2759","l":"Eukaryota","na":49,"nb":6243,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"],["cytoskeleton/conoid.html","conoid"],["cytoskeleton/cytoophidium.html","cytoophidium"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"]],"b":[["NCBITaxon%3A1450171","Aaosphaeria arxii"],["NCBITaxon%3A749232","Abeoforma whisleri"],["NCBITaxon%3A137743","Abortiporus biennis"],["NCBITaxon%3A420591","Absidia anomala"],["NCBITaxon%3A90261","Absidia caerulea"],["NCBITaxon%3A327741","Absidia californica"]]},{"id":"NCBITaxon:2157","l":"Archaea","na":39,"nb":14013,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]],"b":[["NCBITaxon%3A3879924","Abyssiniarchaeum dallolvicinus (SeqCode)"],["NCBITaxon%3A3693715","Acidarchaeum fankouense (SeqCode)"],["NCBITaxon%3A2283","Acidianus ambivalens"],["NCBITaxon%3A41673","Acidianus brierleyi"],["NCBITaxon%3A269667","Acidianus convivator"],["NCBITaxon%3A563177","Acidianus hospitalis"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":31,"nb":3868,"a":[["appendage/curli.html","curli"],["appendage/p_pilus.html","P pilus"],["appendage/pilus.html","pilus"],["appendage/type_i_pilus.html","type I pilus"],["cytoskeleton/parm_filament.html","ParM filament"],["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A196023","Aeromonas hydrophila subsp. hydrophila"],["NCBITaxon%3A380703","Aeromonas hydrophila subsp. hydrophila ATCC 7966"],["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A35703","Citrobacter amalonaticus"],["NCBITaxon%3A163202","Corynebacterium appendicis"]]},{"id":"NCBITaxon:5794","l":"Apicomplexa","na":18,"nb":79,"a":[["cytoskeleton/conoid.html","conoid"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["membrane_organelle/apicomplexan_dense_granule.html","apicomplexan dense granule"],["membrane_organelle/apicomplexan_dense_granule_membrane.html","apicomplexan dense granule membrane"],["membrane_organelle/apicoplast.html","apicoplast"],["membrane_organelle/apicoplast_membrane.html","apicoplast membrane"]],"b":[["NCBITaxon%3A158379","Ascogregarina taiwanensis"],["NCBITaxon%3A5866","Babesia bigemina"],["NCBITaxon%3A5865","Babesia bovis"],["NCBITaxon%3A32595","Babesia divergens"],["NCBITaxon%3A323732","Babesia duncani"],["NCBITaxon%3A5868","Babesia microti"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":15,"nb":176,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A90371","Salmonella enterica subsp. enterica serovar Typhimurium"],["NCBITaxon%3A1173928","Salmonella enterica subsp. enterica serovar Typhimurium str. 0052"],["NCBITaxon%3A1114946","Salmonella enterica subsp. enterica serovar Typhimurium str. 00-01036"],["NCBITaxon%3A1173930","Salmonella enterica subsp. enterica serovar Typhimurium str. 0364"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":15,"nb":39,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]],"b":[["NCBITaxon%3A679895","Escherichia coli BW25113"],["NCBITaxon%3A595496","Escherichia coli BW2952"],["NCBITaxon%3A1318715","Escherichia coli BW38028"],["NCBITaxon%3A1245474","Escherichia coli ER2796"],["NCBITaxon%3A83333","Escherichia coli K-12"],["NCBITaxon%3A527799","Escherichia coli LW1655F+"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":14,"nb":82,"a":[["cytoskeleton/alfa_filament.html","AlfA filament"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]],"b":[["NCBITaxon%3A1390","Bacillus amyloliquefaciens"],["NCBITaxon%3A1452","Bacillus atrophaeus"],["NCBITaxon%3A640707","Bacillus atrophaeus ATCC 9372"],["NCBITaxon%3A483913","Bacillus inaquosorum"],["NCBITaxon%3A1236548","Bacillus inaquosorum KCTC 13429"],["NCBITaxon%3A1402","Bacillus licheniformis"]]},{"id":"NCBITaxon:1117","l":"Cyanobacteriota","na":13,"nb":36120,"a":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/photosystem_i.html","photosystem I"],["energy_complex/photosystem_ii.html","photosystem II"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]],"b":[["NCBITaxon%3A3106961","Acaryochloridaceae cyanobacterium"],["NCBITaxon%3A2720417","Acaryochloridaceae cyanobacterium CSU_3_4"],["NCBITaxon%3A2720418","Acaryochloridaceae cyanobacterium CSU_5_19"],["NCBITaxon%3A2964578","Acaryochloridaceae cyanobacterium OTE_25_metabat_464"],["NCBITaxon%3A2964579","Acaryochloridaceae cyanobacterium OTE_75_metabat_521"],["NCBITaxon%3A2720424","Acaryochloridaceae cyanobacterium RL_2_7"]]},{"id":"NCBITaxon:4751","l":"Fungi","na":11,"nb":5527,"a":[["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/septin_ring.html","septin ring"],["envelope/capsule.html","capsule"],["envelope/eisosome_membrane_domain_mcc.html","eisosome membrane domain/MCC"],["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["envelope/plasma_membrane.html","plasma membrane"]],"b":[["NCBITaxon%3A1450171","Aaosphaeria arxii"],["NCBITaxon%3A137743","Abortiporus biennis"],["NCBITaxon%3A420591","Absidia anomala"],["NCBITaxon%3A90261","Absidia caerulea"],["NCBITaxon%3A327741","Absidia californica"],["NCBITaxon%3A420592","Absidia cuneospora"]]},{"id":"NCBITaxon:1148","l":"Synechocystis sp. PCC 6803","na":11,"nb":12,"a":[["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["inclusion/cyanophycin_granule.html","cyanophycin granule"],["inclusion/glycogen_granule.html","glycogen granule"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"]],"b":[["NCBITaxon%3A1148","Synechocystis sp. PCC 6803"],["NCBITaxon%3A2932627","Synechocystis sp. PCC 6803 subst. PCC-Mn"],["NCBITaxon%3A2932628","Synechocystis sp. PCC 6803 subst. PCC-Pn"],["NCBITaxon%3A2962876","Synechocystis sp. PCC 6803 substr. D1-D170H"],["NCBITaxon%3A1080228","Synechocystis sp. PCC 6803 substr. GT-I"],["NCBITaxon%3A2932626","Synechocystis sp. PCC 6803 substr. GT-In"]]},{"id":"NCBITaxon:1239","l":"Bacillota","na":9,"nb":96113,"a":[["spore/endospore_coat.html","endospore coat"],["spore/endospore_core.html","endospore core"],["spore/endospore_cortex.html","endospore cortex"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"],["spore/endospore_forming_forespore.html","endospore-forming forespore"],["spore/exosporium.html","exosporium"]],"b":[["NCBITaxon%3A46125","Abiotrophia defectiva"],["NCBITaxon%3A592010","Abiotrophia defectiva ATCC 49176"],["NCBITaxon%3A1410024","Abiotrophia defectiva HMP_JCVI_SC0171"],["NCBITaxon%3A1410025","Abiotrophia defectiva HMP_JCVI_SC0235"],["NCBITaxon%3A191553","Abiotrophia para-adiacens"],["NCBITaxon%3A76631","Abiotrophia sp."]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":190,"nb":8,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"],["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/septin_ring.html","septin ring"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"],["cytoskeleton/spindle_pole_body.html","spindle pole body"]],"b":[["NCBITaxon%3A4932","Saccharomyces cerevisiae"],["NCBITaxon%3A1266529","Saccharomyces cerevisiae BY4743"],["NCBITaxon%3A1218710","Saccharomyces cerevisiae CBS 1585"],["NCBITaxon%3A764102","Saccharomyces cerevisiae FostersB"],["NCBITaxon%3A764101","Saccharomyces cerevisiae FostersO"],["NCBITaxon%3A1220494","Saccharomyces cerevisiae PE-2"]]},{"id":"NCBITaxon:6029","l":"Microsporidia","na":8,"nb":29,"a":[["membrane_organelle/microsporidian_posterior_vacuole.html","microsporidian posterior vacuole"],["membrane_organelle/mitosome.html","mitosome"],["membrane_organelle/polaroplast.html","polaroplast"],["spore/microsporidian_type_endospore.html","microsporidian-type endospore"],["spore/microsporidian_type_exospore.html","microsporidian-type exospore"],["spore/polar_tube.html","polar tube"]],"b":[["NCBITaxon%3A67680","Anncaliia algerae"],["NCBITaxon%3A278021","Antonospora locustae"],["NCBITaxon%3A164912","Astathelohania contejeani"],["NCBITaxon%3A658444","Cucumispora dikerogammari"],["NCBITaxon%3A279532","Dictyocoela muelleri"],["NCBITaxon%3A288439","Dictyocoela roeselum"]]},{"id":"NCBITaxon:99287","l":"Salmonella typhimurium (strain LT2 / SGSC1412 / ATCC 700720)","na":16,"nb":8,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"],["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A588858","Salmonella enterica subsp. enterica serovar Typhimurium str. 14028S"],["NCBITaxon%3A1094461","Salmonella enterica subsp. enterica serovar Typhimurium str. G455"],["NCBITaxon%3A99287","Salmonella enterica subsp. enterica serovar Typhimurium str. LT2"],["NCBITaxon%3A1159899","Salmonella enterica subsp. enterica serovar Typhimurium str. LT2-4"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":7,"nb":11,"a":[["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/rc_lh1_pufx_core_complex.html","RC-LH1-PufX core complex"],["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"]],"b":[["NCBITaxon%3A1063","Cereibacter sphaeroides"],["NCBITaxon%3A272943","Cereibacter sphaeroides 2.4.1"],["NCBITaxon%3A349102","Cereibacter sphaeroides ATCC 17025"],["NCBITaxon%3A349101","Cereibacter sphaeroides ATCC 17029"],["NCBITaxon%3A39723","Cereibacter sphaeroides f. sp. denitrificans"],["NCBITaxon%3A633146","Cereibacter sphaeroides GA"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":6,"nb":287,"a":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"],["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"],["secretion_system/type_vi_secretion_system_baseplate.html","type VI secretion system baseplate"],["secretion_system/type_vi_secretion_system_contractile_sheath.html","type VI secretion system contractile sheath"],["secretion_system/type_vi_secretion_system_hcp_tube.html","type VI secretion system Hcp tube"],["secretion_system/type_vi_secretion_system_vgrg_paar_spike_complex.html","type VI secretion system VgrG/PAAR spike complex"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A666","Vibrio cholerae"],["NCBITaxon%3A693741","Vibrio cholerae 0139-ARG"],["NCBITaxon%3A1294144","Vibrio cholerae 01-1751"],["NCBITaxon%3A592313","Vibrio cholerae 12129(1)"],["NCBITaxon%3A412966","Vibrio cholerae 1587"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":5,"nb":13,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"],["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]],"b":[["NCBITaxon%3A1773","Mycobacterium tuberculosis"],["NCBITaxon%3A83332","Mycobacterium tuberculosis H37Rv"],["NCBITaxon%3A747078","Mycobacterium tuberculosis H37Rv_2009"],["NCBITaxon%3A928249","Mycobacterium tuberculosis H37Rv_ideR_mutant_ST22"],["NCBITaxon%3A757417","Mycobacterium tuberculosis H37RvAE"],["NCBITaxon%3A757419","Mycobacterium tuberculosis H37RvCO"]]},{"id":"NCBITaxon:5653","l":"Kinetoplastea","na":4,"nb":58,"a":[["membrane_organelle/glycosome.html","glycosome"],["membrane_organelle/glycosome_lumen.html","glycosome lumen"],["membrane_organelle/glycosome_membrane.html","glycosome membrane"],["nucleoid/kinetoplast.html","kinetoplast"]],"b":[["NCBITaxon%3A59799","Angomonas deanei"],["NCBITaxon%3A75058","Bodo saltans"],["NCBITaxon%3A59798","Crithidia acanthocephali"],["NCBITaxon%3A288676","Crithidia bombi"],["NCBITaxon%3A796354","Crithidia expoeki"],["NCBITaxon%3A5656","Crithidia fasciculata"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":4,"nb":35,"a":[["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"],["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]],"b":[["NCBITaxon%3A1183421","Agrobacterium fabacearum CFBP 5771"],["NCBITaxon%3A1300224","Agrobacterium fabacearum P4"],["NCBITaxon%3A1183429","Agrobacterium fabacearum S56"],["NCBITaxon%3A1368455","Agrobacterium fabacearum str. Foundi"],["NCBITaxon%3A1183430","Agrobacterium fabacearum TT111"],["NCBITaxon%3A1176649","Agrobacterium fabrum"]]},{"id":"NCBITaxon:5811","l":"Toxoplasma gondii","na":18,"nb":4,"a":[["cytoskeleton/conoid.html","conoid"],["cytoskeleton/intraconoid_microtubule.html","intraconoid microtubule"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["cytoskeleton/subpellicular_microtubule.html","subpellicular microtubule"],["membrane_organelle/apicomplexan_dense_granule.html","apicomplexan dense granule"],["membrane_organelle/apicomplexan_dense_granule_membrane.html","apicomplexan dense granule membrane"]],"b":[["NCBITaxon%3A5811","Toxoplasma gondii"],["NCBITaxon%3A1073826","Toxoplasma gondii GUY-DOS"],["NCBITaxon%3A1073827","Toxoplasma gondii GUY-MAT"],["NCBITaxon%3A1073830","Toxoplasma gondii TgCkGy2"]]},{"id":"NCBITaxon:5691","l":"Trypanosoma brucei","na":12,"nb":4,"a":[["cytoskeleton/bilobe_structure.html","bilobe structure"],["cytoskeleton/ciliary_pocket_collar.html","ciliary pocket collar"],["cytoskeleton/flagellum_attachment_zone.html","flagellum attachment zone"],["cytoskeleton/tripartite_attachment_complex.html","tripartite attachment complex"],["membrane_organelle/flagellar_pocket.html","flagellar pocket"],["membrane_organelle/glycosome.html","glycosome"]],"b":[["NCBITaxon%3A5702","Trypanosoma brucei brucei"],["NCBITaxon%3A185431","Trypanosoma brucei brucei TREU927"],["NCBITaxon%3A630700","Trypanosoma brucei equiperdum"],["NCBITaxon%3A31286","Trypanosoma brucei rhodesiense"]]},{"id":"NCBITaxon:155892","l":"Caulobacter vibrioides","na":9,"nb":4,"a":[["appendage/prostheca.html","prostheca"],["appendage/stalk_crossband.html","stalk crossband"],["appendage/tad_pilus.html","Tad pilus"],["cytoskeleton/bactofilin_filament.html","bactofilin filament"],["cytoskeleton/crescentin_filament.html","crescentin filament"],["cytoskeleton/cytoophidium.html","cytoophidium"]],"b":[["NCBITaxon%3A155892","Caulobacter vibrioides"],["NCBITaxon%3A190650","Caulobacter vibrioides CB15"],["NCBITaxon%3A565050","Caulobacter vibrioides NA1000"],["NCBITaxon%3A1292034","Caulobacter vibrioides OR37"]]},{"id":"NCBITaxon:5693","l":"Trypanosoma cruzi","na":6,"nb":4,"a":[["membrane_organelle/contractile_vacuole.html","contractile vacuole"],["membrane_organelle/early_endosome.html","early endosome"],["membrane_organelle/early_endosome_lumen.html","early endosome lumen"],["membrane_organelle/early_endosome_membrane.html","early endosome membrane"],["membrane_organelle/reservosome.html","reservosome"],["other/cytostome.html","cytostome"]],"b":[["NCBITaxon%3A5693","Trypanosoma cruzi"],["NCBITaxon%3A85057","Trypanosoma cruzi cruzi"],["NCBITaxon%3A353153","Trypanosoma cruzi strain CL Brener"],["NCBITaxon%3A366581","Trypanosoma cruzi strain Esmeraldo"]]},{"id":"NCBITaxon:1224","l":"Pseudomonadota","na":3,"nb":251482,"a":[["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["microcompartment/carboxysome.html","carboxysome"],["ribonucleoprotein/bacterial_degradosome.html","bacterial degradosome"]],"b":[["NCBITaxon%3A119160","2,3-D degrading bacterium NHC2"],["NCBITaxon%3A119159","2,3-D degrading bacterium NHG3"],["NCBITaxon%3A103498","2,4-D-degrading bacterium 001"],["NCBITaxon%3A103499","2,4-D-degrading bacterium 007"],["NCBITaxon%3A103492","2,4-D-degrading bacterium 010"],["NCBITaxon%3A103495","2,4-D-degrading bacterium 012"]]},{"id":"NCBITaxon:201174","l":"Actinomycetota","na":3,"nb":99340,"a":[["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"]],"b":[["NCBITaxon%3A291968","Acaricomes phytoseiuli"],["NCBITaxon%3A1120917","Acaricomes phytoseiuli DSM 14247"],["NCBITaxon%3A1872088","Acaricomes sp."],["NCBITaxon%3A1026830","Acaricomes sp. RHF117"],["NCBITaxon%3A298618","acid streamer iron-oxidizing bacterium CS11"],["NCBITaxon%3A298616","acid streamer iron-oxidizing bacterium KP1"]]},{"id":"NCBITaxon:28211","l":"Alphaproteobacteria","na":3,"nb":72845,"a":[["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]],"b":[["NCBITaxon%3A119160","2,3-D degrading bacterium NHC2"],["NCBITaxon%3A119159","2,3-D degrading bacterium NHG3"],["NCBITaxon%3A103494","2,4-D-degrading bacterium 022"],["NCBITaxon%3A83493","2,4-D degrading bacterium 2,4-D1"],["NCBITaxon%3A103496","2,4-D-degrading bacterium 524"],["NCBITaxon%3A83492","2,4-D degrading bacterium B6-10"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":3,"nb":557,"a":[["appendage/type_iv_pilus.html","type IV pilus"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]],"b":[["NCBITaxon%3A2073169","Chromobacterium alticapitis"],["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1454219","Pseudomonas aeruginosa 059A"],["NCBITaxon%3A1421538","Pseudomonas aeruginosa 0812"],["NCBITaxon%3A1421545","Pseudomonas aeruginosa 0822"],["NCBITaxon%3A1421531","Pseudomonas aeruginosa 0C2E"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":3,"nb":216,"a":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"]],"b":[["NCBITaxon%3A863522","Bryocella elongata"],["NCBITaxon%3A195","Campylobacter coli"],["NCBITaxon%3A197","Campylobacter jejuni"],["NCBITaxon%3A1365653","Campylobacter jejuni 10186"],["NCBITaxon%3A1365189","Campylobacter jejuni 10187"],["NCBITaxon%3A1327986","Campylobacter jejuni 10227"]]},{"id":"NCBITaxon:38254","l":"Glaucocystophyceae","na":13,"nb":3,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"]],"b":[["NCBITaxon%3A2762","Cyanophora paradoxa"],["NCBITaxon%3A77922","Cyanoptyche gloeocystis"],["NCBITaxon%3A38269","Gloeochaete wittrockiana"]]},{"id":"NCBITaxon:274","l":"Thermus thermophilus","na":3,"nb":8,"a":[["energy_complex/respiratory_chain_complex_i.html","respiratory chain complex I"],["ribonucleoprotein/ribosome.html","ribosome"],["ribonucleoprotein/small_ribosomal_subunit.html","small ribosomal subunit"]],"b":[["NCBITaxon%3A274","Thermus thermophilus"],["NCBITaxon%3A1316935","Thermus thermophilus ATCC 33923"],["NCBITaxon%3A262724","Thermus thermophilus HB27"],["NCBITaxon%3A300852","Thermus thermophilus HB8"],["NCBITaxon%3A798128","Thermus thermophilus JL-18"],["NCBITaxon%3A762633","Thermus thermophilus SG0.5JP17-16"]]},{"id":"NCBITaxon:224308","l":"Bacillus subtilis (strain 168)","na":3,"nb":5,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["division_machinery/divisome_complex.html","divisome complex"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]],"b":[["NCBITaxon%3A1423","Bacillus subtilis"],["NCBITaxon%3A135461","Bacillus subtilis subsp. subtilis"],["NCBITaxon%3A224308","Bacillus subtilis subsp. subtilis str. 168"],["NCBITaxon%3A536088","Bacillus subtilis subsp. subtilis str. L170"],["NCBITaxon%3A536089","Bacillus subtilis subsp. subtilis str. N170"]]},{"id":"NCBITaxon:431944","l":"Magnetospirillum gryphiswaldense MSR-1","na":4,"nb":3,"a":[["cytoskeleton/mamk_filament.html","MamK filament"],["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]],"b":[["NCBITaxon%3A55518","Magnetospirillum gryphiswaldense"],["NCBITaxon%3A431944","Magnetospirillum gryphiswaldense MSR-1"],["NCBITaxon%3A1430440","Magnetospirillum gryphiswaldense MSR-1 v2"]]},{"id":"NCBITaxon:1108","l":"Chloroflexus aurantiacus","na":3,"nb":3,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"]],"b":[["NCBITaxon%3A1108","Chloroflexus aurantiacus"],["NCBITaxon%3A324602","Chloroflexus aurantiacus J-10-fl"],["NCBITaxon%3A480224","Chloroflexus aurantiacus Y-400-fl"]]},{"id":"NCBITaxon:243231","l":"Geobacter sulfurreducens PCA","na":3,"nb":3,"a":[["appendage/omce_cytochrome_nanowire.html","OmcE cytochrome nanowire"],["appendage/omcs_cytochrome_nanowire.html","OmcS cytochrome nanowire"],["appendage/omcz_cytochrome_nanowire.html","OmcZ cytochrome nanowire"]],"b":[["NCBITaxon%3A35554","Geobacter sulfurreducens"],["NCBITaxon%3A243231","Geobacter sulfurreducens PCA"],["NCBITaxon%3A1649546","Geobacter sulfurreducens subsp. sulfurreducens"]]},{"id":"NCBITaxon:1236","l":"Gammaproteobacteria","na":2,"nb":145676,"a":[["membrane_organelle/magnetosome.html","magnetosome"],["secretion_system/type_iii_protein_secretion_system_complex.html","type III protein secretion system complex"]],"b":[["NCBITaxon%3A103492","2,4-D-degrading bacterium 010"],["NCBITaxon%3A103493","2,4-D-degrading bacterium 030"],["NCBITaxon%3A120969","abyssal strain AIII3*"],["NCBITaxon%3A2182787","Abyssibacter profundi"],["NCBITaxon%3A2320200","Abyssibacter sp."],["NCBITaxon%3A596095","Abyssogena phaseoliformis symbiont"]]},{"id":"NCBITaxon:1763","l":"Mycobacterium","na":2,"nb":7532,"a":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]],"b":[["NCBITaxon%3A3110407","Candidatus Mycobacterium methanica"],["NCBITaxon%3A2943498","Candidatus Mycobacterium methanotrophicum"],["NCBITaxon%3A3027808","Candidatus Mycobacterium wuenschmannii"],["NCBITaxon%3A1682113","Mycobacterium adipatum"],["NCBITaxon%3A470075","Mycobacterium aemonae"],["NCBITaxon%3A1964395","Mycobacterium ahvazicum"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":2,"nb":5776,"a":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["NCBITaxon%3A54736","Salmonella bongori"],["NCBITaxon%3A218493","Salmonella bongori NCTC 12419"],["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59203","Salmonella enterica subsp. arizonae"],["NCBITaxon%3A2577126","Salmonella enterica subsp. arizonae serovar 11:z4,z23:-"],["NCBITaxon%3A2577127","Salmonella enterica subsp. arizonae serovar 13,22:z4,z23:-"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":4740,"a":[["envelope/periplasmic_space.html","periplasmic space"],["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"]],"b":[["NCBITaxon%3A475088","Methanosphaerula palustris"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1389955","Escherichia coli ATCC 35150"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A574","Klebsiella pneumoniae subsp. ozaenae"],["NCBITaxon%3A1218098","Klebsiella pneumoniae subsp. ozaenae NBRC 105683"]]},{"id":"NCBITaxon:31969","l":"Mollicutes","na":2,"nb":3830,"a":[["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"]],"b":[["NCBITaxon%3A358730","Abarque(Iran) eggplant big bud phytoplasma"],["NCBITaxon%3A3108182","'Abelmoschus esculentus' big bud and virescence disease phytoplasma"],["NCBITaxon%3A926989","'Abelmoschus esculentus' bunchy top phytoplasma"],["NCBITaxon%3A3344481","'Abutilon indicum' phytoplasma"],["NCBITaxon%3A2849181","'Acacia arabica' phytoplasma"],["NCBITaxon%3A2940219","'Acacia confusa' witches'-broom phytoplasma"]]},{"id":"NCBITaxon:4890","l":"Ascomycota","na":2,"nb":3631,"a":[["other/nuclear_pore_central_transport_channel.html","nuclear pore central transport channel"],["other/nuclear_pore_linkers.html","nuclear pore linkers"]],"b":[["NCBITaxon%3A1450171","Aaosphaeria arxii"],["NCBITaxon%3A1307806","Acarospora strigata"],["NCBITaxon%3A886606","Acephala macrosclerotiorum"],["NCBITaxon%3A1934374","Achaetomiella virescens"],["NCBITaxon%3A79813","Achaetomium macrosporum"],["NCBITaxon%3A43968","Aciculoconidium aculeatum"]]},{"id":"NCBITaxon:203682","l":"Planctomycetota","na":2,"nb":1406,"a":[["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"]],"b":[["NCBITaxon%3A1930276","Adhaeretor mobilis"],["NCBITaxon%3A2862453","Adhaeretor sp."],["NCBITaxon%3A3454464","Aeoliella fuhlenseeensis"],["NCBITaxon%3A2527972","Aeoliella mucimassa"],["NCBITaxon%3A2795800","Aeoliella sp."],["NCBITaxon%3A2954799","Aeoliella straminimaris"]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":2,"nb":389,"a":[["envelope/capsule.html","capsule"],["envelope/glycocalyx.html","glycocalyx"]],"b":[["NCBITaxon%3A1503055","Burkholderia territorii"],["NCBITaxon%3A1270","Micrococcus luteus"],["NCBITaxon%3A465515","Micrococcus luteus NCTC 2665"],["NCBITaxon%3A33051","Sphingomonas sanguinis"],["NCBITaxon%3A1219054","Sphingomonas sanguinis NBRC 13937"],["NCBITaxon%3A1313","Streptococcus pneumoniae"]]},{"id":"NCBITaxon:5207","l":"Cryptococcus neoformans","na":2,"nb":256,"a":[["envelope/capsule.html","capsule"],["envelope/fungal_type_cell_wall.html","fungal-type cell wall"]],"b":[["NCBITaxon%3A5207","Cryptococcus neoformans"],["NCBITaxon%3A1423905","Cryptococcus neoformans 102-14"],["NCBITaxon%3A1423895","Cryptococcus neoformans 1033"],["NCBITaxon%3A1423910","Cryptococcus neoformans 1035"],["NCBITaxon%3A1423911","Cryptococcus neoformans 1052"],["NCBITaxon%3A1423908","Cryptococcus neoformans 1054"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":2,"nb":156,"a":[["cytoskeleton/tubz_filament.html","TubZ filament"],["inclusion/parasporal_crystal.html","parasporal crystal"]],"b":[["NCBITaxon%3A1428","Bacillus thuringiensis"],["NCBITaxon%3A1340496","Bacillus thuringiensis AKS-7"],["NCBITaxon%3A714359","Bacillus thuringiensis BMB171"],["NCBITaxon%3A1423143","Bacillus thuringiensis Bt18247"],["NCBITaxon%3A1423142","Bacillus thuringiensis Bt18679"],["NCBITaxon%3A527021","Bacillus thuringiensis Bt407"]]},{"id":"NCBITaxon:83334","l":"Escherichia coli O157:H7","na":2,"nb":140,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"]],"b":[["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1389955","Escherichia coli ATCC 35150"],["NCBITaxon%3A83334","Escherichia coli O157:H7"],["NCBITaxon%3A1446609","Escherichia coli O157:H7 str. 06-3745"],["NCBITaxon%3A1446610","Escherichia coli O157:H7 str. 06-4039"],["NCBITaxon%3A1446611","Escherichia coli O157:H7 str. 07-3091"]]},{"id":"NCBITaxon:3027","l":"Cryptophyceae","na":2,"nb":42,"a":[["membrane_organelle/nucleomorph.html","nucleomorph"],["other/ejectisome.html","ejectisome"]],"b":[["NCBITaxon%3A2571260","Baffinella frigidus"],["NCBITaxon%3A478117","Chroomonas cf. mesostigmatica"],["NCBITaxon%3A356657","Chroomonas dispersa"],["NCBITaxon%3A195502","Chroomonas nordstedtii"],["NCBITaxon%3A354589","Chroomonas sp. CCMP270"],["NCBITaxon%3A233190","Cryptomonas borealis"]]},{"id":"NCBITaxon:2763","l":"Rhodophyta","na":2,"nb":27,"a":[["energy_complex/phycobilisome.html","phycobilisome"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["NCBITaxon%3A260499","Asparagopsis taxiformis"],["NCBITaxon%3A31354","Compsopogon caeruleus"],["NCBITaxon%3A2690220","Cyanidiococcus yangmingshanensis"],["NCBITaxon%3A45157","Cyanidioschyzon merolae"],["NCBITaxon%3A280699","Cyanidioschyzon merolae strain 10D"],["NCBITaxon%3A945030","Digenea simplex"]]},{"id":"NCBITaxon:5741","l":"Giardia intestinalis","na":11,"nb":2,"a":[["cytoskeleton/funis.html","funis"],["cytoskeleton/median_body.html","median body"],["cytoskeleton/microtubule.html","microtubule"],["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_crossbridge.html","ventral disc crossbridge"],["cytoskeleton/ventral_disc_dorsal_microribbon.html","ventral disc dorsal microribbon"]],"b":[["NCBITaxon%3A5741","Giardia duodenalis"],["NCBITaxon%3A598745","Giardia duodenalis ATCC 50581"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":9,"nb":2,"a":[["membrane_organelle/apicoplast.html","apicoplast"],["membrane_organelle/apicoplast_membrane.html","apicoplast membrane"],["membrane_organelle/exoneme.html","exoneme"],["membrane_organelle/food_vacuole.html","food vacuole"],["membrane_organelle/inner_membrane_pellicle_complex.html","inner membrane pellicle complex"],["membrane_organelle/maurer_s_cleft.html","Maurer's cleft"]],"b":[["NCBITaxon%3A5833","Plasmodium falciparum"],["NCBITaxon%3A5843","Plasmodium falciparum NF54"]]},{"id":"NCBITaxon:2285","l":"Sulfolobus acidocaldarius","na":2,"nb":6,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"]],"b":[["NCBITaxon%3A2287","Saccharolobus solfataricus"],["NCBITaxon%3A2285","Sulfolobus acidocaldarius"],["NCBITaxon%3A330779","Sulfolobus acidocaldarius DSM 639"],["NCBITaxon%3A1028566","Sulfolobus acidocaldarius N8"],["NCBITaxon%3A1028567","Sulfolobus acidocaldarius Ron12/I"],["NCBITaxon%3A1435377","Sulfolobus acidocaldarius SUSAZ"]]},{"id":"NCBITaxon:5141","l":"Neurospora crassa","na":6,"nb":2,"a":[["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysomal_membrane.html","glyoxysomal membrane"],["membrane_organelle/glyoxysome.html","glyoxysome"],["membrane_organelle/woronin_body.html","Woronin body"],["other/polarisome.html","polarisome"],["other/spitzenkorper.html","spitzenkorper"]],"b":[["NCBITaxon%3A5141","Neurospora crassa"],["NCBITaxon%3A367110","Neurospora crassa OR74A"]]},{"id":"NCBITaxon:5911","l":"Tetrahymena thermophila","na":6,"nb":2,"a":[["cytoskeleton/axonemal_microtubule_doublet_outer_junction.html","axonemal microtubule doublet outer junction"],["membrane_organelle/macronucleus.html","macronucleus"],["membrane_organelle/micronucleus.html","micronucleus"],["membrane_organelle/mucocyst.html","mucocyst"],["other/ap_3_adaptor_complex.html","AP-3 adaptor complex"],["other/ap_type_membrane_coat_adaptor_complex.html","AP-type membrane coat adaptor complex"]],"b":[["NCBITaxon%3A5911","Tetrahymena thermophila"],["NCBITaxon%3A312017","Tetrahymena thermophila SB210"]]},{"id":"NCBITaxon:32053","l":"Thermostichus vulcanus","na":2,"nb":5,"a":[["energy_complex/photosystem_ii.html","photosystem II"],["energy_complex/phycobilisome.html","phycobilisome"]],"b":[["NCBITaxon%3A32053","Thermostichus vulcanus"],["NCBITaxon%3A2005468","Thermostichus vulcanus NIES-2134"],["NCBITaxon%3A1048443","Thermostichus vulcanus RKN"],["NCBITaxon%3A455064","Thermostichus vulcanus str. Copeland"],["NCBITaxon%3A2813851","Thermostichus vulcanus str. 'Rupite'"]]},{"id":"NCBITaxon:1097","l":"Chlorobaculum tepidum","na":4,"nb":2,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"]],"b":[["NCBITaxon%3A1097","Chlorobaculum tepidum"],["NCBITaxon%3A194439","Chlorobaculum tepidum TLS"]]},{"id":"NCBITaxon:174633","l":"","na":2,"nb":4,"a":[["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"]],"b":[["NCBITaxon%3A174633","Candidatus Kuenenia stuttgartensis"],["NCBITaxon%3A1230344","Candidatus Kuenenia stuttgartiensis enrichment culture clone CH1"],["NCBITaxon%3A1230345","Candidatus Kuenenia stuttgartiensis enrichment culture clone RU1"],["NCBITaxon%3A1230346","environmental samples"]]},{"id":"NCBITaxon:6035","l":"Encephalitozoon cuniculi","na":4,"nb":2,"a":[["spore/microsporidian_type_endospore.html","microsporidian-type endospore"],["spore/microsporidian_type_exospore.html","microsporidian-type exospore"],["spore/polar_tube_anchoring_disc.html","polar tube anchoring disc"],["spore/spore_wall.html","spore wall"]],"b":[["NCBITaxon%3A986730","Encephalitozoon cuniculi EC1"],["NCBITaxon%3A284813","Encephalitozoon cuniculi GB-M1"]]},{"id":"NCBITaxon:2261","l":"Pyrococcus furiosus","na":2,"nb":3,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"]],"b":[["NCBITaxon%3A2261","Pyrococcus furiosus"],["NCBITaxon%3A1185654","Pyrococcus furiosus COM1"],["NCBITaxon%3A186497","Pyrococcus furiosus DSM 3638"]]},{"id":"NCBITaxon:5888","l":"Paramecium tetraurelia","na":2,"nb":3,"a":[["cytoskeleton/ciliary_rootlet.html","ciliary rootlet"],["membrane_organelle/trichocyst.html","trichocyst"]],"b":[["NCBITaxon%3A28907","Caedibacter taeniospiralis"],["NCBITaxon%3A5888","Paramecium tetraurelia"],["NCBITaxon%3A412030","Paramecium tetraurelia strain d4-2"]]},{"id":"NCBITaxon:194439","l":"Chlorobaculum tepidum TLS","na":2,"nb":2,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["membrane_organelle/chlorosome.html","chlorosome"]],"b":[["NCBITaxon%3A1097","Chlorobaculum tepidum"],["NCBITaxon%3A194439","Chlorobaculum tepidum TLS"]]},{"id":"NCBITaxon:272634","l":"Mycoplasmoides pneumoniae (strain ATCC 29342 / M129 / Subtype 1)","na":2,"nb":2,"a":[["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"]],"b":[["NCBITaxon%3A2104","Mycoplasmoides pneumoniae"],["NCBITaxon%3A272634","Mycoplasmoides pneumoniae M129"]]},{"id":"NCBITaxon:4922","l":"Komagataella pastoris","na":2,"nb":2,"a":[["membrane_organelle/cis_golgi_network.html","cis-Golgi network"],["membrane_organelle/cis_golgi_network_membrane.html","cis-Golgi network membrane"]],"b":[["NCBITaxon%3A4922","Komagataella pastoris"],["NCBITaxon%3A638632","Komagataella pastoris DSMZ 70382"]]},{"id":"NCBITaxon:555778","l":"","na":2,"nb":2,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["NCBITaxon%3A927","Halothiobacillus neapolitanus"],["NCBITaxon%3A555778","Halothiobacillus neapolitanus c2"]]},{"id":"NCBITaxon:667126","l":"Methanocaldococcus villosus","na":2,"nb":2,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"]],"b":[["NCBITaxon%3A667126","Methanocaldococcus villosus"],["NCBITaxon%3A1069083","Methanocaldococcus villosus KIN24-T80"]]},{"id":"NCBITaxon:927","l":"Halothiobacillus neapolitanus","na":2,"nb":2,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["NCBITaxon%3A927","Halothiobacillus neapolitanus"],["NCBITaxon%3A555778","Halothiobacillus neapolitanus c2"]]},{"id":"NCBITaxon:976","l":"Bacteroidota","na":1,"nb":25542,"a":[["secretion_system/type_ix_protein_secretion_system_complex.html","type IX protein secretion system complex"]],"b":[["NCBITaxon%3A120971","abyssal strain AII3"],["NCBITaxon%3A120972","abyssal strain AIII4"],["NCBITaxon%3A2967091","Abyssalbus sp."],["NCBITaxon%3A2926907","Abyssalbus ytuae"],["NCBITaxon%3A979970","Acetobacteroides hydrogenigenes"],["NCBITaxon%3A1872095","Acetobacteroides sp."]]},{"id":"NCBITaxon:203691","l":"Spirochaetota","na":1,"nb":3862,"a":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]],"b":[["NCBITaxon%3A46356","Alkalispirochaeta alkalica"],["NCBITaxon%3A942938","Alkalispirochaeta alkalica DSM 8900"],["NCBITaxon%3A159291","Alkalispirochaeta americana"],["NCBITaxon%3A1410329","Alkalispirochaeta cellulosivorans"],["NCBITaxon%3A1329640","Alkalispirochaeta odontotermitis"],["NCBITaxon%3A2024959","Alkalispirochaeta sp."]]},{"id":"NCBITaxon:1773","l":"Mycobacterium tuberculosis","na":1,"nb":2946,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]],"b":[["NCBITaxon%3A1773","Mycobacterium tuberculosis"],["NCBITaxon%3A668339","Mycobacterium tuberculosis 00_1695"],["NCBITaxon%3A1455192","Mycobacterium tuberculosis 01-Cr4_ND_3_A"],["NCBITaxon%3A1455078","Mycobacterium tuberculosis 01-Ps1_0_A"],["NCBITaxon%3A515616","Mycobacterium tuberculosis 02_1987"],["NCBITaxon%3A1455200","Mycobacterium tuberculosis 02-Cr4_ND_3_B"]]},{"id":"NCBITaxon:147538","l":"Pezizomycotina","na":1,"nb":2475,"a":[["membrane_organelle/woronin_body.html","Woronin body"]],"b":[["NCBITaxon%3A1450171","Aaosphaeria arxii"],["NCBITaxon%3A1307806","Acarospora strigata"],["NCBITaxon%3A886606","Acephala macrosclerotiorum"],["NCBITaxon%3A1934374","Achaetomiella virescens"],["NCBITaxon%3A79813","Achaetomium macrosporum"],["NCBITaxon%3A245562","Acidomyces sp. 'richmondensis'"]]},{"id":"NCBITaxon:5302","l":"Agaricomycotina","na":1,"nb":1134,"a":[["envelope/dolipore_septum.html","dolipore septum"]],"b":[["NCBITaxon%3A137743","Abortiporus biennis"],["NCBITaxon%3A1333626","Adustoporia sinuosa"],["NCBITaxon%3A2819351","Agaricus alboumbonatus"],["NCBITaxon%3A1606717","Agaricus argenteus"],["NCBITaxon%3A535738","Agaricus aristocratus"],["NCBITaxon%3A34428","Agaricus arvensis"]]},{"id":"NCBITaxon:32046","l":"Synechococcus elongatus","na":1,"nb":64,"a":[["energy_complex/photosystem_i.html","photosystem I"]],"b":[["NCBITaxon%3A326333","Synechococcus cf. elongatus CCMP1379"],["NCBITaxon%3A32046","Synechococcus elongatus"],["NCBITaxon%3A1665532","Synechococcus elongatus 0814_107_005_M13_Fp"],["NCBITaxon%3A2729336","Synechococcus elongatus AARL T012"],["NCBITaxon%3A3073440","Synechococcus elongatus ACC1"],["NCBITaxon%3A1130982","Synechococcus elongatus ARKK1"]]},{"id":"NCBITaxon:33682","l":"Euglenozoa","na":1,"nb":62,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["NCBITaxon%3A59799","Angomonas deanei"],["NCBITaxon%3A75058","Bodo saltans"],["NCBITaxon%3A59798","Crithidia acanthocephali"],["NCBITaxon%3A288676","Crithidia bombi"],["NCBITaxon%3A796354","Crithidia expoeki"],["NCBITaxon%3A5656","Crithidia fasciculata"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":51,"a":[["spore/exosporium.html","exosporium"]],"b":[["NCBITaxon%3A1392","Bacillus anthracis"],["NCBITaxon%3A1412844","Bacillus anthracis 52-G"],["NCBITaxon%3A1412843","Bacillus anthracis 8903-G"],["NCBITaxon%3A1412842","Bacillus anthracis 9080-G"],["NCBITaxon%3A1420588","Bacillus anthracis CVCC 40048"],["NCBITaxon%3A1439874","Bacillus anthracis CZC5"]]},{"id":"NCBITaxon:2830","l":"Haptophyta","na":1,"nb":44,"a":[["appendage/haptonema.html","haptonema"]],"b":[["NCBITaxon%3A127549","Calcidiscus leptoporus"],["NCBITaxon%3A412156","Chrysochromulina leadbeateri"],["NCBITaxon%3A127563","Chrysochromulina parva"],["NCBITaxon%3A412157","Chrysochromulina rotalis"],["NCBITaxon%3A412158","Chrysochromulina simplex"],["NCBITaxon%3A1460289","Chrysochromulina tobinii"]]},{"id":"NCBITaxon:139","l":"Borreliella burgdorferi","na":1,"nb":43,"a":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]],"b":[["NCBITaxon%3A139","Borreliella burgdorferi"],["NCBITaxon%3A476210","Borreliella burgdorferi 118a"],["NCBITaxon%3A445983","Borreliella burgdorferi 156a"],["NCBITaxon%3A521009","Borreliella burgdorferi 297"],["NCBITaxon%3A498738","Borreliella burgdorferi 29805"],["NCBITaxon%3A498740","Borreliella burgdorferi 64b"]]},{"id":"NCBITaxon:33090","l":"Viridiplantae","na":22,"nb":1,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_inner_membrane.html","chloroplast inner membrane"],["membrane_organelle/chloroplast_intermembrane_space.html","chloroplast intermembrane space"],["membrane_organelle/chloroplast_membrane.html","chloroplast membrane"],["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"]],"b":[["NCBITaxon%3A2812611","Micromonas sp."]]},{"id":"NCBITaxon:837","l":"Porphyromonas gingivalis","na":1,"nb":22,"a":[["secretion_system/type_ix_protein_secretion_system_complex.html","type IX protein secretion system complex"]],"b":[["NCBITaxon%3A837","Porphyromonas gingivalis"],["NCBITaxon%3A1403335","Porphyromonas gingivalis 381"],["NCBITaxon%3A1403337","Porphyromonas gingivalis A7436"],["NCBITaxon%3A1403338","Porphyromonas gingivalis A7A1-28"],["NCBITaxon%3A1403336","Porphyromonas gingivalis AJW4"],["NCBITaxon%3A431947","Porphyromonas gingivalis ATCC 33277"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":15,"a":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]],"b":[["NCBITaxon%3A38285","Corynebacterium acetoacidophilum"],["NCBITaxon%3A1718","Corynebacterium glutamicum"],["NCBITaxon%3A196627","Corynebacterium glutamicum ATCC 13032"],["NCBITaxon%3A1079988","Corynebacterium glutamicum ATCC 14067"],["NCBITaxon%3A1204414","Corynebacterium glutamicum K051"],["NCBITaxon%3A1310161","Corynebacterium glutamicum MB001"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":1,"nb":15,"a":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]],"b":[["NCBITaxon%3A175628","Gordonia paraffinivorans"],["NCBITaxon%3A1785","Mycobacterium sp."],["NCBITaxon%3A1772","Mycolicibacterium smegmatis"],["NCBITaxon%3A1455235","Mycolicibacterium smegmatis 30-MsmegS_ND_60_A"],["NCBITaxon%3A1455243","Mycolicibacterium smegmatis 31-MsmegS_CIP_60_A"],["NCBITaxon%3A1455251","Mycolicibacterium smegmatis 32-MsmegS_CIP_30_A"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":1,"nb":10,"a":[["envelope/s_layer.html","S-layer"]],"b":[["NCBITaxon%3A1891658","Geobacillus sp."],["NCBITaxon%3A1422","Geobacillus stearothermophilus"],["NCBITaxon%3A272567","Geobacillus stearothermophilus 10"],["NCBITaxon%3A1366047","Geobacillus stearothermophilus ATCC 12980"],["NCBITaxon%3A937593","Geobacillus stearothermophilus ATCC 7953"],["NCBITaxon%3A664733","Geobacillus stearothermophilus C56-N21"]]},{"id":"NCBITaxon:2762","l":"Cyanophora paradoxa","na":10,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"]],"b":[["NCBITaxon%3A2762","Cyanophora paradoxa"]]},{"id":"NCBITaxon:29197","l":"Chlorarachniophyceae","na":1,"nb":9,"a":[["membrane_organelle/nucleomorph.html","nucleomorph"]],"b":[["NCBITaxon%3A1561963","Amorphochlora amoebiformis"],["NCBITaxon%3A552665","Bigelowiella longifila"],["NCBITaxon%3A227086","Bigelowiella natans"],["NCBITaxon%3A753081","Bigelowiella natans CCMP2755"],["NCBITaxon%3A29199","Chlorarachnion reptans"],["NCBITaxon%3A91324","Lotharella globosa"]]},{"id":"NCBITaxon:44689","l":"Dictyostelium discoideum","na":9,"nb":1,"a":[["membrane_organelle/contractile_vacuole.html","contractile vacuole"],["membrane_organelle/contractile_vacuole_complex.html","contractile vacuole complex"],["membrane_organelle/esterosome.html","esterosome"],["membrane_organelle/esterosome_lumen.html","esterosome lumen"],["membrane_organelle/esterosome_membrane.html","esterosome membrane"],["membrane_organelle/phagocytic_vesicle.html","phagocytic vesicle"]],"b":[["NCBITaxon%3A44689","Dictyostelium discoideum"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":8,"a":[["other/cellulosome.html","cellulosome"]],"b":[["NCBITaxon%3A1515","Acetivibrio thermocellus"],["NCBITaxon%3A1138384","Acetivibrio thermocellus AD2"],["NCBITaxon%3A203119","Acetivibrio thermocellus ATCC 27405"],["NCBITaxon%3A1349417","Acetivibrio thermocellus BC1"],["NCBITaxon%3A637887","Acetivibrio thermocellus DSM 1313"],["NCBITaxon%3A572545","Acetivibrio thermocellus DSM 2360"]]},{"id":"NCBITaxon:565050","l":"Caulobacter vibrioides NA1000","na":7,"nb":1,"a":[["appendage/prostheca.html","prostheca"],["appendage/stalk_crossband.html","stalk crossband"],["appendage/tad_pilus.html","Tad pilus"],["cytoskeleton/bactofilin_filament.html","bactofilin filament"],["cytoskeleton/cytoophidium.html","cytoophidium"],["other/holdfast.html","holdfast"]],"b":[["NCBITaxon%3A565050","Caulobacter vibrioides NA1000"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":6,"a":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]],"b":[["NCBITaxon%3A266","Paracoccus denitrificans"],["NCBITaxon%3A1302247","Paracoccus denitrificans JCM 21484"],["NCBITaxon%3A318586","Paracoccus denitrificans PD1222"],["NCBITaxon%3A1051075","Paracoccus denitrificans SD1"],["NCBITaxon%3A82367","Paracoccus pantotrophus"],["NCBITaxon%3A189685","uncultured Paracoccus sp."]]},{"id":"NCBITaxon:5759","l":"Entamoeba histolytica","na":6,"nb":1,"a":[["membrane_organelle/mitosome.html","mitosome"],["membrane_organelle/mitosome_envelope.html","mitosome envelope"],["membrane_organelle/mitosome_inner_membrane.html","mitosome inner membrane"],["membrane_organelle/mitosome_intermembrane_space.html","mitosome intermembrane space"],["membrane_organelle/mitosome_matrix.html","mitosome matrix"],["membrane_organelle/mitosome_outer_membrane.html","mitosome outer membrane"]],"b":[["NCBITaxon%3A5759","Entamoeba histolytica"]]},{"id":"NCBITaxon:2246","l":"Haloferax volcanii","na":1,"nb":5,"a":[["cytoskeleton/cetz_filament.html","CetZ filament"]],"b":[["NCBITaxon%3A2246","Haloferax volcanii"],["NCBITaxon%3A309800","Haloferax volcanii DS2"],["NCBITaxon%3A1230452","Haloferax volcanii DSM 14919"],["NCBITaxon%3A1227458","Haloferax volcanii JCM 10717"],["NCBITaxon%3A523840","Haloferax volcanii SB1"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":1,"nb":5,"a":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"]],"b":[["NCBITaxon%3A354","Azotobacter vinelandii"],["NCBITaxon%3A1283330","Azotobacter vinelandii CA"],["NCBITaxon%3A1283331","Azotobacter vinelandii CA6"],["NCBITaxon%3A322710","Azotobacter vinelandii DJ"],["NCBITaxon%3A1314750","Azotobacter vinelandii NBRC 13581"]]},{"id":"NCBITaxon:2238","l":"Haloarcula marismortui","na":1,"nb":4,"a":[["ribonucleoprotein/large_ribosomal_subunit.html","large ribosomal subunit"]],"b":[["NCBITaxon%3A2238","Haloarcula marismortui"],["NCBITaxon%3A662475","Haloarcula marismortui ATCC 33799"],["NCBITaxon%3A662476","Haloarcula marismortui ATCC 33800"],["NCBITaxon%3A272569","Haloarcula marismortui ATCC 43049"]]},{"id":"NCBITaxon:3028","l":"Chroomonas","na":1,"nb":4,"a":[["other/ejectisome.html","ejectisome"]],"b":[["NCBITaxon%3A478117","Chroomonas cf. mesostigmatica"],["NCBITaxon%3A356657","Chroomonas dispersa"],["NCBITaxon%3A195502","Chroomonas nordstedtii"],["NCBITaxon%3A354589","Chroomonas sp. CCMP270"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":3,"nb":1,"a":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]],"b":[["NCBITaxon%3A103690","Nostoc sp. PCC 7120 = FACHB-418"]]},{"id":"NCBITaxon:284813","l":"Encephalitozoon cuniculi (strain GB-M1)","na":3,"nb":1,"a":[["spore/microsporidian_type_endospore.html","microsporidian-type endospore"],["spore/microsporidian_type_exospore.html","microsporidian-type exospore"],["spore/polar_tube_anchoring_disc.html","polar tube anchoring disc"]],"b":[["NCBITaxon%3A284813","Encephalitozoon cuniculi GB-M1"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":2,"nb":1,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["NCBITaxon%3A1140","Synechococcus elongatus PCC 7942 = FACHB-805"]]},{"id":"NCBITaxon:1430","l":"Bacillus thuringiensis subsp. israelensis","na":1,"nb":2,"a":[["inclusion/parasporal_crystal.html","parasporal crystal"]],"b":[["NCBITaxon%3A1430","Bacillus thuringiensis serovar israelensis"],["NCBITaxon%3A339854","Bacillus thuringiensis serovar israelensis ATCC 35646"]]},{"id":"NCBITaxon:190650","l":"Caulobacter vibrioides (strain ATCC 19089 / CIP 103742 / CB 15)","na":1,"nb":2,"a":[["cytoskeleton/cytoophidium.html","cytoophidium"]],"b":[["NCBITaxon%3A155892","Caulobacter vibrioides"],["NCBITaxon%3A190650","Caulobacter vibrioides CB15"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus ATCC 27405","na":1,"nb":2,"a":[["other/cellulosome.html","cellulosome"]],"b":[["NCBITaxon%3A1515","Acetivibrio thermocellus"],["NCBITaxon%3A203119","Acetivibrio thermocellus ATCC 27405"]]},{"id":"NCBITaxon:224326","l":"Borreliella burgdorferi (strain ATCC 35210 / DSM 4680 / CIP 102532 / B31)","na":1,"nb":2,"a":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]],"b":[["NCBITaxon%3A139","Borreliella burgdorferi"],["NCBITaxon%3A224326","Borreliella burgdorferi B31"]]},{"id":"NCBITaxon:227086","l":"Bigelowiella natans","na":1,"nb":2,"a":[["membrane_organelle/nucleomorph.html","nucleomorph"]],"b":[["NCBITaxon%3A227086","Bigelowiella natans"],["NCBITaxon%3A753081","Bigelowiella natans CCMP2755"]]},{"id":"NCBITaxon:243277","l":"Vibrio cholerae serotype O1 (strain ATCC 39315 / El Tor Inaba N16961)","na":1,"nb":2,"a":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"]],"b":[["NCBITaxon%3A666","Vibrio cholerae"],["NCBITaxon%3A243277","Vibrio cholerae O1 biovar El Tor str. N16961"]]},{"id":"NCBITaxon:264462","l":"Bdellovibrio bacteriovorus HD100","na":1,"nb":2,"a":[["appendage/type_iv_pilus.html","type IV pilus"]],"b":[["NCBITaxon%3A959","Bdellovibrio bacteriovorus"],["NCBITaxon%3A264462","Bdellovibrio bacteriovorus HD100"]]},{"id":"NCBITaxon:315271","l":"Dolichospermum flos-aquae CCAP 1403/13F","na":2,"nb":1,"a":[["inclusion/gas_vesicle.html","gas vesicle"],["inclusion/gas_vesicle_shell.html","gas vesicle shell"]],"b":[["NCBITaxon%3A315271","Dolichospermum flos-aquae CCAP 1403/13F"]]},{"id":"NCBITaxon:330779","l":"Sulfolobus acidocaldarius (strain ATCC 33909 / DSM 639 / JCM 8929 / NBRC 15157 / NCIMB 11770)","na":1,"nb":2,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"]],"b":[["NCBITaxon%3A2285","Sulfolobus acidocaldarius"],["NCBITaxon%3A330779","Sulfolobus acidocaldarius DSM 639"]]},{"id":"NCBITaxon:342108","l":"","na":2,"nb":1,"a":[["cytoskeleton/mamk_filament.html","MamK filament"],["membrane_organelle/magnetosome.html","magnetosome"]],"b":[["NCBITaxon%3A342108","Paramagnetospirillum magneticum AMB-1"]]},{"id":"NCBITaxon:381666","l":"Cupriavidus necator H16","na":1,"nb":2,"a":[["inclusion/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]],"b":[["NCBITaxon%3A106590","Cupriavidus necator"],["NCBITaxon%3A381666","Cupriavidus necator H16"]]},{"id":"NCBITaxon:4896","l":"Schizosaccharomyces pombe","na":2,"nb":1,"a":[["cytoskeleton/actomyosin_contractile_ring.html","actomyosin contractile ring"],["spore/isp3_layer_of_spore_wall.html","Isp3 layer of spore wall"]],"b":[["NCBITaxon%3A4896","Schizosaccharomyces pombe"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":1,"nb":2,"a":[["microcompartment/bacterial_microcompartment.html","bacterial microcompartment"]],"b":[["NCBITaxon%3A80816","Haliangium ochraceum"],["NCBITaxon%3A502025","Haliangium ochraceum DSM 14365"]]},{"id":"NCBITaxon:5334","l":"Schizophyllum commune","na":1,"nb":2,"a":[["envelope/dolipore_septum.html","dolipore septum"]],"b":[["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A5334","Schizophyllum commune"]]},{"id":"NCBITaxon:54256","l":"Pyrodictium abyssi","na":1,"nb":2,"a":[["appendage/archaeal_cannula.html","archaeal cannula"]],"b":[["NCBITaxon%3A54256","Pyrodictium abyssi"],["NCBITaxon%3A391605","Pyrodictium abyssi DSM 6158"]]},{"id":"NCBITaxon:5702","l":"Trypanosoma brucei brucei","na":1,"nb":2,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["NCBITaxon%3A5702","Trypanosoma brucei brucei"],["NCBITaxon%3A185431","Trypanosoma brucei brucei TREU927"]]},{"id":"NCBITaxon:572477","l":"Allochromatium vinosum (strain ATCC 17899 / DSM 180 / NBRC 103801 / NCIMB 10441 / D)","na":1,"nb":2,"a":[["inclusion/sulfur_globule.html","sulfur globule"]],"b":[["NCBITaxon%3A1049","Allochromatium vinosum"],["NCBITaxon%3A572477","Allochromatium vinosum DSM 180"]]},{"id":"NCBITaxon:573370","l":"Solidesulfovibrio magneticus RS-1","na":1,"nb":2,"a":[["membrane_organelle/ferrosome.html","ferrosome"]],"b":[["NCBITaxon%3A184917","Solidesulfovibrio magneticus"],["NCBITaxon%3A573370","Solidesulfovibrio magneticus RS-1"]]},{"id":"NCBITaxon:79929","l":"Methanothermobacter marburgensis (strain ATCC BAA-927 / DSM 2133 / JCM 14651 / NBRC 100331 / OCM 82 / Marburg)","na":1,"nb":2,"a":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]],"b":[["NCBITaxon%3A145263","Methanothermobacter marburgensis"],["NCBITaxon%3A79929","Methanothermobacter marburgensis str. Marburg"]]},{"id":"NCBITaxon:1111708","l":"Synechocystis sp. (strain ATCC 27184 / PCC 6803 / Kazusa)","na":1,"nb":1,"a":[["energy_complex/phycobilisome.html","phycobilisome"]],"b":[["NCBITaxon%3A1111708","Synechocystis sp. PCC 6803 substr. Kazusa"]]},{"id":"NCBITaxon:1803513","l":"Candidatus Altarchaeum hamiconexum","na":1,"nb":1,"a":[["appendage/hamus.html","hamus"]],"b":[["NCBITaxon%3A1803513","Candidatus Altarchaeum hamiconexum"]]},{"id":"NCBITaxon:208963","l":"Pseudomonas aeruginosa (strain UCBPP-PA14)","na":1,"nb":1,"a":[["inclusion/r_body.html","R-body"]],"b":[["NCBITaxon%3A208963","Pseudomonas aeruginosa UCBPP-PA14"]]},{"id":"NCBITaxon:243233","l":"Methylococcus capsulatus Bath","na":1,"nb":1,"a":[["membrane_organelle/methane_oxidizing_organelle.html","methane-oxidizing organelle"]],"b":[["NCBITaxon%3A243233","Methylococcus capsulatus str. Bath"]]},{"id":"NCBITaxon:246196","l":"Mycolicibacterium smegmatis (strain ATCC 700084 / mc(2)155)","na":1,"nb":1,"a":[["secretion_system/esx_3_type_vii_secretion_system_membrane_complex.html","ESX-3 type VII secretion system membrane complex"]],"b":[["NCBITaxon%3A246196","Mycolicibacterium smegmatis MC2 155"]]},{"id":"NCBITaxon:28907","l":"Caedibacter taeniospiralis","na":1,"nb":1,"a":[["inclusion/r_body.html","R-body"]],"b":[["NCBITaxon%3A28907","Caedibacter taeniospiralis"]]},{"id":"NCBITaxon:345073","l":"Vibrio cholerae serotype O1 (strain ATCC 39541 / Classical Ogawa 395 / O395)","na":1,"nb":1,"a":[["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"]],"b":[["NCBITaxon%3A345073","Vibrio cholerae O395"]]},{"id":"NCBITaxon:45610","l":"Psychrobacter urativorans","na":1,"nb":1,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["NCBITaxon%3A45610","Psychrobacter urativorans"]]},{"id":"NCBITaxon:48466","l":"Prosthecobacter vanneervenii","na":1,"nb":1,"a":[["cytoskeleton/btubab_bacterial_microtubule.html","BtubAB bacterial microtubule"]],"b":[["NCBITaxon%3A48466","Prosthecobacter vanneervenii"]]},{"id":"NCBITaxon:55529","l":"Guillardia theta","na":1,"nb":1,"a":[["membrane_organelle/nucleomorph.html","nucleomorph"]],"b":[["NCBITaxon%3A905079","Guillardia theta CCMP2712"]]},{"id":"NCBITaxon:5665","l":"Leishmania mexicana","na":1,"nb":1,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["NCBITaxon%3A5665","Leishmania mexicana"]]}]} \ No newline at end of file +{"a":"CellStructureMech","b":"TaxonMech","base":{"CellStructureMech":"https://culturebotai.github.io/CellStructureMech/pages/structures/","TaxonMech":"https://culturebotai.github.io/TaxonMech/pages/taxon.html?id="},"n":124,"by":{"NCBITaxon":124},"terms":[{"id":"NCBITaxon:2","l":"Bacteria","na":89,"nb":605695,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]],"b":[["NCBITaxon%3A119160","2,3-D degrading bacterium NHC2"],["NCBITaxon%3A119159","2,3-D degrading bacterium NHG3"],["NCBITaxon%3A103498","2,4-D-degrading bacterium 001"],["NCBITaxon%3A103499","2,4-D-degrading bacterium 007"],["NCBITaxon%3A103492","2,4-D-degrading bacterium 010"],["NCBITaxon%3A103495","2,4-D-degrading bacterium 012"]]},{"id":"NCBITaxon:2759","l":"Eukaryota","na":49,"nb":6243,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"],["cytoskeleton/conoid.html","conoid"],["cytoskeleton/cytoophidium.html","cytoophidium"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"]],"b":[["NCBITaxon%3A1450171","Aaosphaeria arxii"],["NCBITaxon%3A749232","Abeoforma whisleri"],["NCBITaxon%3A137743","Abortiporus biennis"],["NCBITaxon%3A420591","Absidia anomala"],["NCBITaxon%3A90261","Absidia caerulea"],["NCBITaxon%3A327741","Absidia californica"]]},{"id":"NCBITaxon:2157","l":"Archaea","na":39,"nb":14013,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]],"b":[["NCBITaxon%3A3879924","Abyssiniarchaeum dallolvicinus (SeqCode)"],["NCBITaxon%3A3693715","Acidarchaeum fankouense (SeqCode)"],["NCBITaxon%3A2283","Acidianus ambivalens"],["NCBITaxon%3A41673","Acidianus brierleyi"],["NCBITaxon%3A269667","Acidianus convivator"],["NCBITaxon%3A563177","Acidianus hospitalis"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":31,"nb":3868,"a":[["appendage/curli.html","curli"],["appendage/p_pilus.html","P pilus"],["appendage/pilus.html","pilus"],["appendage/type_i_pilus.html","type I pilus"],["cytoskeleton/parm_filament.html","ParM filament"],["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A196023","Aeromonas hydrophila subsp. hydrophila"],["NCBITaxon%3A380703","Aeromonas hydrophila subsp. hydrophila ATCC 7966"],["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A35703","Citrobacter amalonaticus"],["NCBITaxon%3A163202","Corynebacterium appendicis"]]},{"id":"NCBITaxon:5794","l":"Apicomplexa","na":18,"nb":79,"a":[["cytoskeleton/conoid.html","conoid"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["membrane_organelle/apicomplexan_dense_granule.html","apicomplexan dense granule"],["membrane_organelle/apicomplexan_dense_granule_membrane.html","apicomplexan dense granule membrane"],["membrane_organelle/apicoplast.html","apicoplast"],["membrane_organelle/apicoplast_membrane.html","apicoplast membrane"]],"b":[["NCBITaxon%3A158379","Ascogregarina taiwanensis"],["NCBITaxon%3A5866","Babesia bigemina"],["NCBITaxon%3A5865","Babesia bovis"],["NCBITaxon%3A32595","Babesia divergens"],["NCBITaxon%3A323732","Babesia duncani"],["NCBITaxon%3A5868","Babesia microti"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":15,"nb":176,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A90371","Salmonella enterica subsp. enterica serovar Typhimurium"],["NCBITaxon%3A1173928","Salmonella enterica subsp. enterica serovar Typhimurium str. 0052"],["NCBITaxon%3A1114946","Salmonella enterica subsp. enterica serovar Typhimurium str. 00-01036"],["NCBITaxon%3A1173930","Salmonella enterica subsp. enterica serovar Typhimurium str. 0364"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli K-12","na":15,"nb":39,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]],"b":[["NCBITaxon%3A679895","Escherichia coli BW25113"],["NCBITaxon%3A595496","Escherichia coli BW2952"],["NCBITaxon%3A1318715","Escherichia coli BW38028"],["NCBITaxon%3A1245474","Escherichia coli ER2796"],["NCBITaxon%3A83333","Escherichia coli K-12"],["NCBITaxon%3A527799","Escherichia coli LW1655F+"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":14,"nb":82,"a":[["cytoskeleton/alfa_filament.html","AlfA filament"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]],"b":[["NCBITaxon%3A1390","Bacillus amyloliquefaciens"],["NCBITaxon%3A1452","Bacillus atrophaeus"],["NCBITaxon%3A640707","Bacillus atrophaeus ATCC 9372"],["NCBITaxon%3A483913","Bacillus inaquosorum"],["NCBITaxon%3A1236548","Bacillus inaquosorum KCTC 13429"],["NCBITaxon%3A1402","Bacillus licheniformis"]]},{"id":"NCBITaxon:1117","l":"Cyanobacteriota","na":13,"nb":36120,"a":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/photosystem_i.html","photosystem I"],["energy_complex/photosystem_ii.html","photosystem II"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]],"b":[["NCBITaxon%3A3106961","Acaryochloridaceae cyanobacterium"],["NCBITaxon%3A2720417","Acaryochloridaceae cyanobacterium CSU_3_4"],["NCBITaxon%3A2720418","Acaryochloridaceae cyanobacterium CSU_5_19"],["NCBITaxon%3A2964578","Acaryochloridaceae cyanobacterium OTE_25_metabat_464"],["NCBITaxon%3A2964579","Acaryochloridaceae cyanobacterium OTE_75_metabat_521"],["NCBITaxon%3A2720424","Acaryochloridaceae cyanobacterium RL_2_7"]]},{"id":"NCBITaxon:4751","l":"Fungi","na":11,"nb":5527,"a":[["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/septin_ring.html","septin ring"],["envelope/capsule.html","capsule"],["envelope/eisosome_membrane_domain_mcc.html","eisosome membrane domain/MCC"],["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["envelope/plasma_membrane.html","plasma membrane"]],"b":[["NCBITaxon%3A1450171","Aaosphaeria arxii"],["NCBITaxon%3A137743","Abortiporus biennis"],["NCBITaxon%3A420591","Absidia anomala"],["NCBITaxon%3A90261","Absidia caerulea"],["NCBITaxon%3A327741","Absidia californica"],["NCBITaxon%3A420592","Absidia cuneospora"]]},{"id":"NCBITaxon:1148","l":"Synechocystis sp. PCC 6803","na":11,"nb":12,"a":[["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["inclusion/cyanophycin_granule.html","cyanophycin granule"],["inclusion/glycogen_granule.html","glycogen granule"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"]],"b":[["NCBITaxon%3A1148","Synechocystis sp. PCC 6803"],["NCBITaxon%3A2932627","Synechocystis sp. PCC 6803 subst. PCC-Mn"],["NCBITaxon%3A2932628","Synechocystis sp. PCC 6803 subst. PCC-Pn"],["NCBITaxon%3A2962876","Synechocystis sp. PCC 6803 substr. D1-D170H"],["NCBITaxon%3A1080228","Synechocystis sp. PCC 6803 substr. GT-I"],["NCBITaxon%3A2932626","Synechocystis sp. PCC 6803 substr. GT-In"]]},{"id":"NCBITaxon:1239","l":"Bacillota","na":9,"nb":96113,"a":[["spore/endospore_coat.html","endospore coat"],["spore/endospore_core.html","endospore core"],["spore/endospore_cortex.html","endospore cortex"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"],["spore/endospore_forming_forespore.html","endospore-forming forespore"],["spore/exosporium.html","exosporium"]],"b":[["NCBITaxon%3A46125","Abiotrophia defectiva"],["NCBITaxon%3A592010","Abiotrophia defectiva ATCC 49176"],["NCBITaxon%3A1410024","Abiotrophia defectiva HMP_JCVI_SC0171"],["NCBITaxon%3A1410025","Abiotrophia defectiva HMP_JCVI_SC0235"],["NCBITaxon%3A191553","Abiotrophia para-adiacens"],["NCBITaxon%3A76631","Abiotrophia sp."]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":190,"nb":8,"a":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"],["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/septin_ring.html","septin ring"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"],["cytoskeleton/spindle_pole_body.html","spindle pole body"]],"b":[["NCBITaxon%3A4932","Saccharomyces cerevisiae"],["NCBITaxon%3A1266529","Saccharomyces cerevisiae BY4743"],["NCBITaxon%3A1218710","Saccharomyces cerevisiae CBS 1585"],["NCBITaxon%3A764102","Saccharomyces cerevisiae FostersB"],["NCBITaxon%3A764101","Saccharomyces cerevisiae FostersO"],["NCBITaxon%3A1220494","Saccharomyces cerevisiae PE-2"]]},{"id":"NCBITaxon:6029","l":"Microsporidia","na":8,"nb":29,"a":[["membrane_organelle/microsporidian_posterior_vacuole.html","microsporidian posterior vacuole"],["membrane_organelle/mitosome.html","mitosome"],["membrane_organelle/polaroplast.html","polaroplast"],["spore/microsporidian_type_endospore.html","microsporidian-type endospore"],["spore/microsporidian_type_exospore.html","microsporidian-type exospore"],["spore/polar_tube.html","polar tube"]],"b":[["NCBITaxon%3A67680","Anncaliia algerae"],["NCBITaxon%3A278021","Antonospora locustae"],["NCBITaxon%3A164912","Astathelohania contejeani"],["NCBITaxon%3A658444","Cucumispora dikerogammari"],["NCBITaxon%3A279532","Dictyocoela muelleri"],["NCBITaxon%3A288439","Dictyocoela roeselum"]]},{"id":"NCBITaxon:99287","l":"Salmonella enterica subsp. enterica serovar Typhimurium str. LT2","na":16,"nb":8,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"],["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A588858","Salmonella enterica subsp. enterica serovar Typhimurium str. 14028S"],["NCBITaxon%3A1094461","Salmonella enterica subsp. enterica serovar Typhimurium str. G455"],["NCBITaxon%3A99287","Salmonella enterica subsp. enterica serovar Typhimurium str. LT2"],["NCBITaxon%3A1159899","Salmonella enterica subsp. enterica serovar Typhimurium str. LT2-4"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":7,"nb":11,"a":[["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/rc_lh1_pufx_core_complex.html","RC-LH1-PufX core complex"],["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"]],"b":[["NCBITaxon%3A1063","Cereibacter sphaeroides"],["NCBITaxon%3A272943","Cereibacter sphaeroides 2.4.1"],["NCBITaxon%3A349102","Cereibacter sphaeroides ATCC 17025"],["NCBITaxon%3A349101","Cereibacter sphaeroides ATCC 17029"],["NCBITaxon%3A39723","Cereibacter sphaeroides f. sp. denitrificans"],["NCBITaxon%3A633146","Cereibacter sphaeroides GA"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":6,"nb":287,"a":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"],["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"],["secretion_system/type_vi_secretion_system_baseplate.html","type VI secretion system baseplate"],["secretion_system/type_vi_secretion_system_contractile_sheath.html","type VI secretion system contractile sheath"],["secretion_system/type_vi_secretion_system_hcp_tube.html","type VI secretion system Hcp tube"],["secretion_system/type_vi_secretion_system_vgrg_paar_spike_complex.html","type VI secretion system VgrG/PAAR spike complex"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A666","Vibrio cholerae"],["NCBITaxon%3A693741","Vibrio cholerae 0139-ARG"],["NCBITaxon%3A1294144","Vibrio cholerae 01-1751"],["NCBITaxon%3A592313","Vibrio cholerae 12129(1)"],["NCBITaxon%3A412966","Vibrio cholerae 1587"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis H37Rv","na":5,"nb":13,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"],["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]],"b":[["NCBITaxon%3A1773","Mycobacterium tuberculosis"],["NCBITaxon%3A83332","Mycobacterium tuberculosis H37Rv"],["NCBITaxon%3A747078","Mycobacterium tuberculosis H37Rv_2009"],["NCBITaxon%3A928249","Mycobacterium tuberculosis H37Rv_ideR_mutant_ST22"],["NCBITaxon%3A757417","Mycobacterium tuberculosis H37RvAE"],["NCBITaxon%3A757419","Mycobacterium tuberculosis H37RvCO"]]},{"id":"NCBITaxon:5653","l":"Kinetoplastea","na":4,"nb":58,"a":[["membrane_organelle/glycosome.html","glycosome"],["membrane_organelle/glycosome_lumen.html","glycosome lumen"],["membrane_organelle/glycosome_membrane.html","glycosome membrane"],["nucleoid/kinetoplast.html","kinetoplast"]],"b":[["NCBITaxon%3A59799","Angomonas deanei"],["NCBITaxon%3A75058","Bodo saltans"],["NCBITaxon%3A59798","Crithidia acanthocephali"],["NCBITaxon%3A288676","Crithidia bombi"],["NCBITaxon%3A796354","Crithidia expoeki"],["NCBITaxon%3A5656","Crithidia fasciculata"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":4,"nb":35,"a":[["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"],["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]],"b":[["NCBITaxon%3A1183421","Agrobacterium fabacearum CFBP 5771"],["NCBITaxon%3A1300224","Agrobacterium fabacearum P4"],["NCBITaxon%3A1183429","Agrobacterium fabacearum S56"],["NCBITaxon%3A1368455","Agrobacterium fabacearum str. Foundi"],["NCBITaxon%3A1183430","Agrobacterium fabacearum TT111"],["NCBITaxon%3A1176649","Agrobacterium fabrum"]]},{"id":"NCBITaxon:5811","l":"Toxoplasma gondii","na":18,"nb":4,"a":[["cytoskeleton/conoid.html","conoid"],["cytoskeleton/intraconoid_microtubule.html","intraconoid microtubule"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["cytoskeleton/subpellicular_microtubule.html","subpellicular microtubule"],["membrane_organelle/apicomplexan_dense_granule.html","apicomplexan dense granule"],["membrane_organelle/apicomplexan_dense_granule_membrane.html","apicomplexan dense granule membrane"]],"b":[["NCBITaxon%3A5811","Toxoplasma gondii"],["NCBITaxon%3A1073826","Toxoplasma gondii GUY-DOS"],["NCBITaxon%3A1073827","Toxoplasma gondii GUY-MAT"],["NCBITaxon%3A1073830","Toxoplasma gondii TgCkGy2"]]},{"id":"NCBITaxon:5691","l":"Trypanosoma brucei","na":12,"nb":4,"a":[["cytoskeleton/bilobe_structure.html","bilobe structure"],["cytoskeleton/ciliary_pocket_collar.html","ciliary pocket collar"],["cytoskeleton/flagellum_attachment_zone.html","flagellum attachment zone"],["cytoskeleton/tripartite_attachment_complex.html","tripartite attachment complex"],["membrane_organelle/flagellar_pocket.html","flagellar pocket"],["membrane_organelle/glycosome.html","glycosome"]],"b":[["NCBITaxon%3A5702","Trypanosoma brucei brucei"],["NCBITaxon%3A185431","Trypanosoma brucei brucei TREU927"],["NCBITaxon%3A630700","Trypanosoma brucei equiperdum"],["NCBITaxon%3A31286","Trypanosoma brucei rhodesiense"]]},{"id":"NCBITaxon:155892","l":"Caulobacter vibrioides","na":9,"nb":4,"a":[["appendage/prostheca.html","prostheca"],["appendage/stalk_crossband.html","stalk crossband"],["appendage/tad_pilus.html","Tad pilus"],["cytoskeleton/bactofilin_filament.html","bactofilin filament"],["cytoskeleton/crescentin_filament.html","crescentin filament"],["cytoskeleton/cytoophidium.html","cytoophidium"]],"b":[["NCBITaxon%3A155892","Caulobacter vibrioides"],["NCBITaxon%3A190650","Caulobacter vibrioides CB15"],["NCBITaxon%3A565050","Caulobacter vibrioides NA1000"],["NCBITaxon%3A1292034","Caulobacter vibrioides OR37"]]},{"id":"NCBITaxon:5693","l":"Trypanosoma cruzi","na":6,"nb":4,"a":[["membrane_organelle/contractile_vacuole.html","contractile vacuole"],["membrane_organelle/early_endosome.html","early endosome"],["membrane_organelle/early_endosome_lumen.html","early endosome lumen"],["membrane_organelle/early_endosome_membrane.html","early endosome membrane"],["membrane_organelle/reservosome.html","reservosome"],["other/cytostome.html","cytostome"]],"b":[["NCBITaxon%3A5693","Trypanosoma cruzi"],["NCBITaxon%3A85057","Trypanosoma cruzi cruzi"],["NCBITaxon%3A353153","Trypanosoma cruzi strain CL Brener"],["NCBITaxon%3A366581","Trypanosoma cruzi strain Esmeraldo"]]},{"id":"NCBITaxon:1224","l":"Pseudomonadota","na":3,"nb":251482,"a":[["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["microcompartment/carboxysome.html","carboxysome"],["ribonucleoprotein/bacterial_degradosome.html","bacterial degradosome"]],"b":[["NCBITaxon%3A119160","2,3-D degrading bacterium NHC2"],["NCBITaxon%3A119159","2,3-D degrading bacterium NHG3"],["NCBITaxon%3A103498","2,4-D-degrading bacterium 001"],["NCBITaxon%3A103499","2,4-D-degrading bacterium 007"],["NCBITaxon%3A103492","2,4-D-degrading bacterium 010"],["NCBITaxon%3A103495","2,4-D-degrading bacterium 012"]]},{"id":"NCBITaxon:201174","l":"Actinomycetota","na":3,"nb":99340,"a":[["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"]],"b":[["NCBITaxon%3A291968","Acaricomes phytoseiuli"],["NCBITaxon%3A1120917","Acaricomes phytoseiuli DSM 14247"],["NCBITaxon%3A1872088","Acaricomes sp."],["NCBITaxon%3A1026830","Acaricomes sp. RHF117"],["NCBITaxon%3A298618","acid streamer iron-oxidizing bacterium CS11"],["NCBITaxon%3A298616","acid streamer iron-oxidizing bacterium KP1"]]},{"id":"NCBITaxon:28211","l":"Alphaproteobacteria","na":3,"nb":72845,"a":[["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]],"b":[["NCBITaxon%3A119160","2,3-D degrading bacterium NHC2"],["NCBITaxon%3A119159","2,3-D degrading bacterium NHG3"],["NCBITaxon%3A103494","2,4-D-degrading bacterium 022"],["NCBITaxon%3A83493","2,4-D degrading bacterium 2,4-D1"],["NCBITaxon%3A103496","2,4-D-degrading bacterium 524"],["NCBITaxon%3A83492","2,4-D degrading bacterium B6-10"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":3,"nb":557,"a":[["appendage/type_iv_pilus.html","type IV pilus"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]],"b":[["NCBITaxon%3A2073169","Chromobacterium alticapitis"],["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1454219","Pseudomonas aeruginosa 059A"],["NCBITaxon%3A1421538","Pseudomonas aeruginosa 0812"],["NCBITaxon%3A1421545","Pseudomonas aeruginosa 0822"],["NCBITaxon%3A1421531","Pseudomonas aeruginosa 0C2E"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":3,"nb":216,"a":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"]],"b":[["NCBITaxon%3A863522","Bryocella elongata"],["NCBITaxon%3A195","Campylobacter coli"],["NCBITaxon%3A197","Campylobacter jejuni"],["NCBITaxon%3A1365653","Campylobacter jejuni 10186"],["NCBITaxon%3A1365189","Campylobacter jejuni 10187"],["NCBITaxon%3A1327986","Campylobacter jejuni 10227"]]},{"id":"NCBITaxon:38254","l":"Glaucocystophyceae","na":13,"nb":3,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"]],"b":[["NCBITaxon%3A2762","Cyanophora paradoxa"],["NCBITaxon%3A77922","Cyanoptyche gloeocystis"],["NCBITaxon%3A38269","Gloeochaete wittrockiana"]]},{"id":"NCBITaxon:274","l":"Thermus thermophilus","na":3,"nb":8,"a":[["energy_complex/respiratory_chain_complex_i.html","respiratory chain complex I"],["ribonucleoprotein/ribosome.html","ribosome"],["ribonucleoprotein/small_ribosomal_subunit.html","small ribosomal subunit"]],"b":[["NCBITaxon%3A274","Thermus thermophilus"],["NCBITaxon%3A1316935","Thermus thermophilus ATCC 33923"],["NCBITaxon%3A262724","Thermus thermophilus HB27"],["NCBITaxon%3A300852","Thermus thermophilus HB8"],["NCBITaxon%3A798128","Thermus thermophilus JL-18"],["NCBITaxon%3A762633","Thermus thermophilus SG0.5JP17-16"]]},{"id":"NCBITaxon:224308","l":"Bacillus subtilis subsp. subtilis str. 168","na":3,"nb":5,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["division_machinery/divisome_complex.html","divisome complex"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]],"b":[["NCBITaxon%3A1423","Bacillus subtilis"],["NCBITaxon%3A135461","Bacillus subtilis subsp. subtilis"],["NCBITaxon%3A224308","Bacillus subtilis subsp. subtilis str. 168"],["NCBITaxon%3A536088","Bacillus subtilis subsp. subtilis str. L170"],["NCBITaxon%3A536089","Bacillus subtilis subsp. subtilis str. N170"]]},{"id":"NCBITaxon:431944","l":"Magnetospirillum gryphiswaldense MSR-1","na":4,"nb":3,"a":[["cytoskeleton/mamk_filament.html","MamK filament"],["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]],"b":[["NCBITaxon%3A55518","Magnetospirillum gryphiswaldense"],["NCBITaxon%3A431944","Magnetospirillum gryphiswaldense MSR-1"],["NCBITaxon%3A1430440","Magnetospirillum gryphiswaldense MSR-1 v2"]]},{"id":"NCBITaxon:1108","l":"Chloroflexus aurantiacus","na":3,"nb":3,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"]],"b":[["NCBITaxon%3A1108","Chloroflexus aurantiacus"],["NCBITaxon%3A324602","Chloroflexus aurantiacus J-10-fl"],["NCBITaxon%3A480224","Chloroflexus aurantiacus Y-400-fl"]]},{"id":"NCBITaxon:243231","l":"Geobacter sulfurreducens PCA","na":3,"nb":3,"a":[["appendage/omce_cytochrome_nanowire.html","OmcE cytochrome nanowire"],["appendage/omcs_cytochrome_nanowire.html","OmcS cytochrome nanowire"],["appendage/omcz_cytochrome_nanowire.html","OmcZ cytochrome nanowire"]],"b":[["NCBITaxon%3A35554","Geobacter sulfurreducens"],["NCBITaxon%3A243231","Geobacter sulfurreducens PCA"],["NCBITaxon%3A1649546","Geobacter sulfurreducens subsp. sulfurreducens"]]},{"id":"NCBITaxon:1236","l":"Gammaproteobacteria","na":2,"nb":145676,"a":[["membrane_organelle/magnetosome.html","magnetosome"],["secretion_system/type_iii_protein_secretion_system_complex.html","type III protein secretion system complex"]],"b":[["NCBITaxon%3A103492","2,4-D-degrading bacterium 010"],["NCBITaxon%3A103493","2,4-D-degrading bacterium 030"],["NCBITaxon%3A120969","abyssal strain AIII3*"],["NCBITaxon%3A2182787","Abyssibacter profundi"],["NCBITaxon%3A2320200","Abyssibacter sp."],["NCBITaxon%3A596095","Abyssogena phaseoliformis symbiont"]]},{"id":"NCBITaxon:1763","l":"Mycobacterium","na":2,"nb":7532,"a":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]],"b":[["NCBITaxon%3A3110407","Candidatus Mycobacterium methanica"],["NCBITaxon%3A2943498","Candidatus Mycobacterium methanotrophicum"],["NCBITaxon%3A3027808","Candidatus Mycobacterium wuenschmannii"],["NCBITaxon%3A1682113","Mycobacterium adipatum"],["NCBITaxon%3A470075","Mycobacterium aemonae"],["NCBITaxon%3A1964395","Mycobacterium ahvazicum"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":2,"nb":5776,"a":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]],"b":[["NCBITaxon%3A54736","Salmonella bongori"],["NCBITaxon%3A218493","Salmonella bongori NCTC 12419"],["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59203","Salmonella enterica subsp. arizonae"],["NCBITaxon%3A2577126","Salmonella enterica subsp. arizonae serovar 11:z4,z23:-"],["NCBITaxon%3A2577127","Salmonella enterica subsp. arizonae serovar 13,22:z4,z23:-"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":4740,"a":[["envelope/periplasmic_space.html","periplasmic space"],["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"]],"b":[["NCBITaxon%3A475088","Methanosphaerula palustris"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1389955","Escherichia coli ATCC 35150"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A574","Klebsiella pneumoniae subsp. ozaenae"],["NCBITaxon%3A1218098","Klebsiella pneumoniae subsp. ozaenae NBRC 105683"]]},{"id":"NCBITaxon:31969","l":"Mollicutes","na":2,"nb":3830,"a":[["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"]],"b":[["NCBITaxon%3A358730","Abarque(Iran) eggplant big bud phytoplasma"],["NCBITaxon%3A3108182","'Abelmoschus esculentus' big bud and virescence disease phytoplasma"],["NCBITaxon%3A926989","'Abelmoschus esculentus' bunchy top phytoplasma"],["NCBITaxon%3A3344481","'Abutilon indicum' phytoplasma"],["NCBITaxon%3A2849181","'Acacia arabica' phytoplasma"],["NCBITaxon%3A2940219","'Acacia confusa' witches'-broom phytoplasma"]]},{"id":"NCBITaxon:4890","l":"Ascomycota","na":2,"nb":3631,"a":[["other/nuclear_pore_central_transport_channel.html","nuclear pore central transport channel"],["other/nuclear_pore_linkers.html","nuclear pore linkers"]],"b":[["NCBITaxon%3A1450171","Aaosphaeria arxii"],["NCBITaxon%3A1307806","Acarospora strigata"],["NCBITaxon%3A886606","Acephala macrosclerotiorum"],["NCBITaxon%3A1934374","Achaetomiella virescens"],["NCBITaxon%3A79813","Achaetomium macrosporum"],["NCBITaxon%3A43968","Aciculoconidium aculeatum"]]},{"id":"NCBITaxon:203682","l":"Planctomycetota","na":2,"nb":1406,"a":[["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"]],"b":[["NCBITaxon%3A1930276","Adhaeretor mobilis"],["NCBITaxon%3A2862453","Adhaeretor sp."],["NCBITaxon%3A3454464","Aeoliella fuhlenseeensis"],["NCBITaxon%3A2527972","Aeoliella mucimassa"],["NCBITaxon%3A2795800","Aeoliella sp."],["NCBITaxon%3A2954799","Aeoliella straminimaris"]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":2,"nb":389,"a":[["envelope/capsule.html","capsule"],["envelope/glycocalyx.html","glycocalyx"]],"b":[["NCBITaxon%3A1503055","Burkholderia territorii"],["NCBITaxon%3A1270","Micrococcus luteus"],["NCBITaxon%3A465515","Micrococcus luteus NCTC 2665"],["NCBITaxon%3A33051","Sphingomonas sanguinis"],["NCBITaxon%3A1219054","Sphingomonas sanguinis NBRC 13937"],["NCBITaxon%3A1313","Streptococcus pneumoniae"]]},{"id":"NCBITaxon:5207","l":"Cryptococcus neoformans","na":2,"nb":256,"a":[["envelope/capsule.html","capsule"],["envelope/fungal_type_cell_wall.html","fungal-type cell wall"]],"b":[["NCBITaxon%3A5207","Cryptococcus neoformans"],["NCBITaxon%3A1423905","Cryptococcus neoformans 102-14"],["NCBITaxon%3A1423895","Cryptococcus neoformans 1033"],["NCBITaxon%3A1423910","Cryptococcus neoformans 1035"],["NCBITaxon%3A1423911","Cryptococcus neoformans 1052"],["NCBITaxon%3A1423908","Cryptococcus neoformans 1054"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":2,"nb":156,"a":[["cytoskeleton/tubz_filament.html","TubZ filament"],["inclusion/parasporal_crystal.html","parasporal crystal"]],"b":[["NCBITaxon%3A1428","Bacillus thuringiensis"],["NCBITaxon%3A1340496","Bacillus thuringiensis AKS-7"],["NCBITaxon%3A714359","Bacillus thuringiensis BMB171"],["NCBITaxon%3A1423143","Bacillus thuringiensis Bt18247"],["NCBITaxon%3A1423142","Bacillus thuringiensis Bt18679"],["NCBITaxon%3A527021","Bacillus thuringiensis Bt407"]]},{"id":"NCBITaxon:83334","l":"Escherichia coli O157:H7","na":2,"nb":140,"a":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"]],"b":[["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1389955","Escherichia coli ATCC 35150"],["NCBITaxon%3A83334","Escherichia coli O157:H7"],["NCBITaxon%3A1446609","Escherichia coli O157:H7 str. 06-3745"],["NCBITaxon%3A1446610","Escherichia coli O157:H7 str. 06-4039"],["NCBITaxon%3A1446611","Escherichia coli O157:H7 str. 07-3091"]]},{"id":"NCBITaxon:3027","l":"Cryptophyceae","na":2,"nb":42,"a":[["membrane_organelle/nucleomorph.html","nucleomorph"],["other/ejectisome.html","ejectisome"]],"b":[["NCBITaxon%3A2571260","Baffinella frigidus"],["NCBITaxon%3A478117","Chroomonas cf. mesostigmatica"],["NCBITaxon%3A356657","Chroomonas dispersa"],["NCBITaxon%3A195502","Chroomonas nordstedtii"],["NCBITaxon%3A354589","Chroomonas sp. CCMP270"],["NCBITaxon%3A233190","Cryptomonas borealis"]]},{"id":"NCBITaxon:2763","l":"Rhodophyta","na":2,"nb":27,"a":[["energy_complex/phycobilisome.html","phycobilisome"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]],"b":[["NCBITaxon%3A260499","Asparagopsis taxiformis"],["NCBITaxon%3A31354","Compsopogon caeruleus"],["NCBITaxon%3A2690220","Cyanidiococcus yangmingshanensis"],["NCBITaxon%3A45157","Cyanidioschyzon merolae"],["NCBITaxon%3A280699","Cyanidioschyzon merolae strain 10D"],["NCBITaxon%3A945030","Digenea simplex"]]},{"id":"NCBITaxon:5741","l":"Giardia duodenalis","na":11,"nb":2,"a":[["cytoskeleton/funis.html","funis"],["cytoskeleton/median_body.html","median body"],["cytoskeleton/microtubule.html","microtubule"],["cytoskeleton/ventral_disc.html","ventral disc"],["cytoskeleton/ventral_disc_crossbridge.html","ventral disc crossbridge"],["cytoskeleton/ventral_disc_dorsal_microribbon.html","ventral disc dorsal microribbon"]],"b":[["NCBITaxon%3A5741","Giardia duodenalis"],["NCBITaxon%3A598745","Giardia duodenalis ATCC 50581"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":9,"nb":2,"a":[["membrane_organelle/apicoplast.html","apicoplast"],["membrane_organelle/apicoplast_membrane.html","apicoplast membrane"],["membrane_organelle/exoneme.html","exoneme"],["membrane_organelle/food_vacuole.html","food vacuole"],["membrane_organelle/inner_membrane_pellicle_complex.html","inner membrane pellicle complex"],["membrane_organelle/maurer_s_cleft.html","Maurer's cleft"]],"b":[["NCBITaxon%3A5833","Plasmodium falciparum"],["NCBITaxon%3A5843","Plasmodium falciparum NF54"]]},{"id":"NCBITaxon:2285","l":"Sulfolobus acidocaldarius","na":2,"nb":6,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"]],"b":[["NCBITaxon%3A2287","Saccharolobus solfataricus"],["NCBITaxon%3A2285","Sulfolobus acidocaldarius"],["NCBITaxon%3A330779","Sulfolobus acidocaldarius DSM 639"],["NCBITaxon%3A1028566","Sulfolobus acidocaldarius N8"],["NCBITaxon%3A1028567","Sulfolobus acidocaldarius Ron12/I"],["NCBITaxon%3A1435377","Sulfolobus acidocaldarius SUSAZ"]]},{"id":"NCBITaxon:5141","l":"Neurospora crassa","na":6,"nb":2,"a":[["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysomal_membrane.html","glyoxysomal membrane"],["membrane_organelle/glyoxysome.html","glyoxysome"],["membrane_organelle/woronin_body.html","Woronin body"],["other/polarisome.html","polarisome"],["other/spitzenkorper.html","spitzenkorper"]],"b":[["NCBITaxon%3A5141","Neurospora crassa"],["NCBITaxon%3A367110","Neurospora crassa OR74A"]]},{"id":"NCBITaxon:5911","l":"Tetrahymena thermophila","na":6,"nb":2,"a":[["cytoskeleton/axonemal_microtubule_doublet_outer_junction.html","axonemal microtubule doublet outer junction"],["membrane_organelle/macronucleus.html","macronucleus"],["membrane_organelle/micronucleus.html","micronucleus"],["membrane_organelle/mucocyst.html","mucocyst"],["other/ap_3_adaptor_complex.html","AP-3 adaptor complex"],["other/ap_type_membrane_coat_adaptor_complex.html","AP-type membrane coat adaptor complex"]],"b":[["NCBITaxon%3A5911","Tetrahymena thermophila"],["NCBITaxon%3A312017","Tetrahymena thermophila SB210"]]},{"id":"NCBITaxon:32053","l":"Thermostichus vulcanus","na":2,"nb":5,"a":[["energy_complex/photosystem_ii.html","photosystem II"],["energy_complex/phycobilisome.html","phycobilisome"]],"b":[["NCBITaxon%3A32053","Thermostichus vulcanus"],["NCBITaxon%3A2005468","Thermostichus vulcanus NIES-2134"],["NCBITaxon%3A1048443","Thermostichus vulcanus RKN"],["NCBITaxon%3A455064","Thermostichus vulcanus str. Copeland"],["NCBITaxon%3A2813851","Thermostichus vulcanus str. 'Rupite'"]]},{"id":"NCBITaxon:1097","l":"Chlorobaculum tepidum","na":4,"nb":2,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"]],"b":[["NCBITaxon%3A1097","Chlorobaculum tepidum"],["NCBITaxon%3A194439","Chlorobaculum tepidum TLS"]]},{"id":"NCBITaxon:174633","l":"Candidatus Kuenenia stuttgartensis","na":2,"nb":4,"a":[["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"]],"b":[["NCBITaxon%3A174633","Candidatus Kuenenia stuttgartensis"],["NCBITaxon%3A1230344","Candidatus Kuenenia stuttgartiensis enrichment culture clone CH1"],["NCBITaxon%3A1230345","Candidatus Kuenenia stuttgartiensis enrichment culture clone RU1"],["NCBITaxon%3A1230346","environmental samples"]]},{"id":"NCBITaxon:6035","l":"Encephalitozoon cuniculi","na":4,"nb":2,"a":[["spore/microsporidian_type_endospore.html","microsporidian-type endospore"],["spore/microsporidian_type_exospore.html","microsporidian-type exospore"],["spore/polar_tube_anchoring_disc.html","polar tube anchoring disc"],["spore/spore_wall.html","spore wall"]],"b":[["NCBITaxon%3A986730","Encephalitozoon cuniculi EC1"],["NCBITaxon%3A284813","Encephalitozoon cuniculi GB-M1"]]},{"id":"NCBITaxon:2261","l":"Pyrococcus furiosus","na":2,"nb":3,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"]],"b":[["NCBITaxon%3A2261","Pyrococcus furiosus"],["NCBITaxon%3A1185654","Pyrococcus furiosus COM1"],["NCBITaxon%3A186497","Pyrococcus furiosus DSM 3638"]]},{"id":"NCBITaxon:5888","l":"Paramecium tetraurelia","na":2,"nb":3,"a":[["cytoskeleton/ciliary_rootlet.html","ciliary rootlet"],["membrane_organelle/trichocyst.html","trichocyst"]],"b":[["NCBITaxon%3A28907","Caedibacter taeniospiralis"],["NCBITaxon%3A5888","Paramecium tetraurelia"],["NCBITaxon%3A412030","Paramecium tetraurelia strain d4-2"]]},{"id":"NCBITaxon:194439","l":"Chlorobaculum tepidum TLS","na":2,"nb":2,"a":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["membrane_organelle/chlorosome.html","chlorosome"]],"b":[["NCBITaxon%3A1097","Chlorobaculum tepidum"],["NCBITaxon%3A194439","Chlorobaculum tepidum TLS"]]},{"id":"NCBITaxon:272634","l":"Mycoplasmoides pneumoniae M129","na":2,"nb":2,"a":[["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"]],"b":[["NCBITaxon%3A2104","Mycoplasmoides pneumoniae"],["NCBITaxon%3A272634","Mycoplasmoides pneumoniae M129"]]},{"id":"NCBITaxon:4922","l":"Komagataella pastoris","na":2,"nb":2,"a":[["membrane_organelle/cis_golgi_network.html","cis-Golgi network"],["membrane_organelle/cis_golgi_network_membrane.html","cis-Golgi network membrane"]],"b":[["NCBITaxon%3A4922","Komagataella pastoris"],["NCBITaxon%3A638632","Komagataella pastoris DSMZ 70382"]]},{"id":"NCBITaxon:555778","l":"Halothiobacillus neapolitanus c2","na":2,"nb":2,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["NCBITaxon%3A927","Halothiobacillus neapolitanus"],["NCBITaxon%3A555778","Halothiobacillus neapolitanus c2"]]},{"id":"NCBITaxon:667126","l":"Methanocaldococcus villosus","na":2,"nb":2,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"]],"b":[["NCBITaxon%3A667126","Methanocaldococcus villosus"],["NCBITaxon%3A1069083","Methanocaldococcus villosus KIN24-T80"]]},{"id":"NCBITaxon:927","l":"Halothiobacillus neapolitanus","na":2,"nb":2,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["NCBITaxon%3A927","Halothiobacillus neapolitanus"],["NCBITaxon%3A555778","Halothiobacillus neapolitanus c2"]]},{"id":"NCBITaxon:976","l":"Bacteroidota","na":1,"nb":25542,"a":[["secretion_system/type_ix_protein_secretion_system_complex.html","type IX protein secretion system complex"]],"b":[["NCBITaxon%3A120971","abyssal strain AII3"],["NCBITaxon%3A120972","abyssal strain AIII4"],["NCBITaxon%3A2967091","Abyssalbus sp."],["NCBITaxon%3A2926907","Abyssalbus ytuae"],["NCBITaxon%3A979970","Acetobacteroides hydrogenigenes"],["NCBITaxon%3A1872095","Acetobacteroides sp."]]},{"id":"NCBITaxon:203691","l":"Spirochaetota","na":1,"nb":3862,"a":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]],"b":[["NCBITaxon%3A46356","Alkalispirochaeta alkalica"],["NCBITaxon%3A942938","Alkalispirochaeta alkalica DSM 8900"],["NCBITaxon%3A159291","Alkalispirochaeta americana"],["NCBITaxon%3A1410329","Alkalispirochaeta cellulosivorans"],["NCBITaxon%3A1329640","Alkalispirochaeta odontotermitis"],["NCBITaxon%3A2024959","Alkalispirochaeta sp."]]},{"id":"NCBITaxon:1773","l":"Mycobacterium tuberculosis","na":1,"nb":2946,"a":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]],"b":[["NCBITaxon%3A1773","Mycobacterium tuberculosis"],["NCBITaxon%3A668339","Mycobacterium tuberculosis 00_1695"],["NCBITaxon%3A1455192","Mycobacterium tuberculosis 01-Cr4_ND_3_A"],["NCBITaxon%3A1455078","Mycobacterium tuberculosis 01-Ps1_0_A"],["NCBITaxon%3A515616","Mycobacterium tuberculosis 02_1987"],["NCBITaxon%3A1455200","Mycobacterium tuberculosis 02-Cr4_ND_3_B"]]},{"id":"NCBITaxon:147538","l":"Pezizomycotina","na":1,"nb":2475,"a":[["membrane_organelle/woronin_body.html","Woronin body"]],"b":[["NCBITaxon%3A1450171","Aaosphaeria arxii"],["NCBITaxon%3A1307806","Acarospora strigata"],["NCBITaxon%3A886606","Acephala macrosclerotiorum"],["NCBITaxon%3A1934374","Achaetomiella virescens"],["NCBITaxon%3A79813","Achaetomium macrosporum"],["NCBITaxon%3A245562","Acidomyces sp. 'richmondensis'"]]},{"id":"NCBITaxon:5302","l":"Agaricomycotina","na":1,"nb":1134,"a":[["envelope/dolipore_septum.html","dolipore septum"]],"b":[["NCBITaxon%3A137743","Abortiporus biennis"],["NCBITaxon%3A1333626","Adustoporia sinuosa"],["NCBITaxon%3A2819351","Agaricus alboumbonatus"],["NCBITaxon%3A1606717","Agaricus argenteus"],["NCBITaxon%3A535738","Agaricus aristocratus"],["NCBITaxon%3A34428","Agaricus arvensis"]]},{"id":"NCBITaxon:32046","l":"Synechococcus elongatus","na":1,"nb":64,"a":[["energy_complex/photosystem_i.html","photosystem I"]],"b":[["NCBITaxon%3A326333","Synechococcus cf. elongatus CCMP1379"],["NCBITaxon%3A32046","Synechococcus elongatus"],["NCBITaxon%3A1665532","Synechococcus elongatus 0814_107_005_M13_Fp"],["NCBITaxon%3A2729336","Synechococcus elongatus AARL T012"],["NCBITaxon%3A3073440","Synechococcus elongatus ACC1"],["NCBITaxon%3A1130982","Synechococcus elongatus ARKK1"]]},{"id":"NCBITaxon:33682","l":"Euglenozoa","na":1,"nb":62,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["NCBITaxon%3A59799","Angomonas deanei"],["NCBITaxon%3A75058","Bodo saltans"],["NCBITaxon%3A59798","Crithidia acanthocephali"],["NCBITaxon%3A288676","Crithidia bombi"],["NCBITaxon%3A796354","Crithidia expoeki"],["NCBITaxon%3A5656","Crithidia fasciculata"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":51,"a":[["spore/exosporium.html","exosporium"]],"b":[["NCBITaxon%3A1392","Bacillus anthracis"],["NCBITaxon%3A1412844","Bacillus anthracis 52-G"],["NCBITaxon%3A1412843","Bacillus anthracis 8903-G"],["NCBITaxon%3A1412842","Bacillus anthracis 9080-G"],["NCBITaxon%3A1420588","Bacillus anthracis CVCC 40048"],["NCBITaxon%3A1439874","Bacillus anthracis CZC5"]]},{"id":"NCBITaxon:2830","l":"Haptophyta","na":1,"nb":44,"a":[["appendage/haptonema.html","haptonema"]],"b":[["NCBITaxon%3A127549","Calcidiscus leptoporus"],["NCBITaxon%3A412156","Chrysochromulina leadbeateri"],["NCBITaxon%3A127563","Chrysochromulina parva"],["NCBITaxon%3A412157","Chrysochromulina rotalis"],["NCBITaxon%3A412158","Chrysochromulina simplex"],["NCBITaxon%3A1460289","Chrysochromulina tobinii"]]},{"id":"NCBITaxon:139","l":"Borreliella burgdorferi","na":1,"nb":43,"a":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]],"b":[["NCBITaxon%3A139","Borreliella burgdorferi"],["NCBITaxon%3A476210","Borreliella burgdorferi 118a"],["NCBITaxon%3A445983","Borreliella burgdorferi 156a"],["NCBITaxon%3A521009","Borreliella burgdorferi 297"],["NCBITaxon%3A498738","Borreliella burgdorferi 29805"],["NCBITaxon%3A498740","Borreliella burgdorferi 64b"]]},{"id":"NCBITaxon:33090","l":"Viridiplantae","na":22,"nb":1,"a":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chloroplast_envelope.html","chloroplast envelope"],["membrane_organelle/chloroplast_inner_membrane.html","chloroplast inner membrane"],["membrane_organelle/chloroplast_intermembrane_space.html","chloroplast intermembrane space"],["membrane_organelle/chloroplast_membrane.html","chloroplast membrane"],["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"]],"b":[["NCBITaxon%3A2812611","Micromonas sp."]]},{"id":"NCBITaxon:837","l":"Porphyromonas gingivalis","na":1,"nb":22,"a":[["secretion_system/type_ix_protein_secretion_system_complex.html","type IX protein secretion system complex"]],"b":[["NCBITaxon%3A837","Porphyromonas gingivalis"],["NCBITaxon%3A1403335","Porphyromonas gingivalis 381"],["NCBITaxon%3A1403337","Porphyromonas gingivalis A7436"],["NCBITaxon%3A1403338","Porphyromonas gingivalis A7A1-28"],["NCBITaxon%3A1403336","Porphyromonas gingivalis AJW4"],["NCBITaxon%3A431947","Porphyromonas gingivalis ATCC 33277"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":15,"a":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]],"b":[["NCBITaxon%3A38285","Corynebacterium acetoacidophilum"],["NCBITaxon%3A1718","Corynebacterium glutamicum"],["NCBITaxon%3A196627","Corynebacterium glutamicum ATCC 13032"],["NCBITaxon%3A1079988","Corynebacterium glutamicum ATCC 14067"],["NCBITaxon%3A1204414","Corynebacterium glutamicum K051"],["NCBITaxon%3A1310161","Corynebacterium glutamicum MB001"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":1,"nb":15,"a":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]],"b":[["NCBITaxon%3A175628","Gordonia paraffinivorans"],["NCBITaxon%3A1785","Mycobacterium sp."],["NCBITaxon%3A1772","Mycolicibacterium smegmatis"],["NCBITaxon%3A1455235","Mycolicibacterium smegmatis 30-MsmegS_ND_60_A"],["NCBITaxon%3A1455243","Mycolicibacterium smegmatis 31-MsmegS_CIP_60_A"],["NCBITaxon%3A1455251","Mycolicibacterium smegmatis 32-MsmegS_CIP_30_A"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":1,"nb":10,"a":[["envelope/s_layer.html","S-layer"]],"b":[["NCBITaxon%3A1891658","Geobacillus sp."],["NCBITaxon%3A1422","Geobacillus stearothermophilus"],["NCBITaxon%3A272567","Geobacillus stearothermophilus 10"],["NCBITaxon%3A1366047","Geobacillus stearothermophilus ATCC 12980"],["NCBITaxon%3A937593","Geobacillus stearothermophilus ATCC 7953"],["NCBITaxon%3A664733","Geobacillus stearothermophilus C56-N21"]]},{"id":"NCBITaxon:2762","l":"Cyanophora paradoxa","na":10,"nb":1,"a":[["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/cyanelle_envelope.html","cyanelle envelope"],["membrane_organelle/cyanelle_inner_membrane.html","cyanelle inner membrane"],["membrane_organelle/cyanelle_intermembrane_space.html","cyanelle intermembrane space"],["membrane_organelle/cyanelle_membrane.html","cyanelle membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"]],"b":[["NCBITaxon%3A2762","Cyanophora paradoxa"]]},{"id":"NCBITaxon:29197","l":"Chlorarachniophyceae","na":1,"nb":9,"a":[["membrane_organelle/nucleomorph.html","nucleomorph"]],"b":[["NCBITaxon%3A1561963","Amorphochlora amoebiformis"],["NCBITaxon%3A552665","Bigelowiella longifila"],["NCBITaxon%3A227086","Bigelowiella natans"],["NCBITaxon%3A753081","Bigelowiella natans CCMP2755"],["NCBITaxon%3A29199","Chlorarachnion reptans"],["NCBITaxon%3A91324","Lotharella globosa"]]},{"id":"NCBITaxon:44689","l":"Dictyostelium discoideum","na":9,"nb":1,"a":[["membrane_organelle/contractile_vacuole.html","contractile vacuole"],["membrane_organelle/contractile_vacuole_complex.html","contractile vacuole complex"],["membrane_organelle/esterosome.html","esterosome"],["membrane_organelle/esterosome_lumen.html","esterosome lumen"],["membrane_organelle/esterosome_membrane.html","esterosome membrane"],["membrane_organelle/phagocytic_vesicle.html","phagocytic vesicle"]],"b":[["NCBITaxon%3A44689","Dictyostelium discoideum"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":8,"a":[["other/cellulosome.html","cellulosome"]],"b":[["NCBITaxon%3A1515","Acetivibrio thermocellus"],["NCBITaxon%3A1138384","Acetivibrio thermocellus AD2"],["NCBITaxon%3A203119","Acetivibrio thermocellus ATCC 27405"],["NCBITaxon%3A1349417","Acetivibrio thermocellus BC1"],["NCBITaxon%3A637887","Acetivibrio thermocellus DSM 1313"],["NCBITaxon%3A572545","Acetivibrio thermocellus DSM 2360"]]},{"id":"NCBITaxon:565050","l":"Caulobacter vibrioides NA1000","na":7,"nb":1,"a":[["appendage/prostheca.html","prostheca"],["appendage/stalk_crossband.html","stalk crossband"],["appendage/tad_pilus.html","Tad pilus"],["cytoskeleton/bactofilin_filament.html","bactofilin filament"],["cytoskeleton/cytoophidium.html","cytoophidium"],["other/holdfast.html","holdfast"]],"b":[["NCBITaxon%3A565050","Caulobacter vibrioides NA1000"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":6,"a":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]],"b":[["NCBITaxon%3A266","Paracoccus denitrificans"],["NCBITaxon%3A1302247","Paracoccus denitrificans JCM 21484"],["NCBITaxon%3A318586","Paracoccus denitrificans PD1222"],["NCBITaxon%3A1051075","Paracoccus denitrificans SD1"],["NCBITaxon%3A82367","Paracoccus pantotrophus"],["NCBITaxon%3A189685","uncultured Paracoccus sp."]]},{"id":"NCBITaxon:5759","l":"Entamoeba histolytica","na":6,"nb":1,"a":[["membrane_organelle/mitosome.html","mitosome"],["membrane_organelle/mitosome_envelope.html","mitosome envelope"],["membrane_organelle/mitosome_inner_membrane.html","mitosome inner membrane"],["membrane_organelle/mitosome_intermembrane_space.html","mitosome intermembrane space"],["membrane_organelle/mitosome_matrix.html","mitosome matrix"],["membrane_organelle/mitosome_outer_membrane.html","mitosome outer membrane"]],"b":[["NCBITaxon%3A5759","Entamoeba histolytica"]]},{"id":"NCBITaxon:2246","l":"Haloferax volcanii","na":1,"nb":5,"a":[["cytoskeleton/cetz_filament.html","CetZ filament"]],"b":[["NCBITaxon%3A2246","Haloferax volcanii"],["NCBITaxon%3A309800","Haloferax volcanii DS2"],["NCBITaxon%3A1230452","Haloferax volcanii DSM 14919"],["NCBITaxon%3A1227458","Haloferax volcanii JCM 10717"],["NCBITaxon%3A523840","Haloferax volcanii SB1"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":1,"nb":5,"a":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"]],"b":[["NCBITaxon%3A354","Azotobacter vinelandii"],["NCBITaxon%3A1283330","Azotobacter vinelandii CA"],["NCBITaxon%3A1283331","Azotobacter vinelandii CA6"],["NCBITaxon%3A322710","Azotobacter vinelandii DJ"],["NCBITaxon%3A1314750","Azotobacter vinelandii NBRC 13581"]]},{"id":"NCBITaxon:2238","l":"Haloarcula marismortui","na":1,"nb":4,"a":[["ribonucleoprotein/large_ribosomal_subunit.html","large ribosomal subunit"]],"b":[["NCBITaxon%3A2238","Haloarcula marismortui"],["NCBITaxon%3A662475","Haloarcula marismortui ATCC 33799"],["NCBITaxon%3A662476","Haloarcula marismortui ATCC 33800"],["NCBITaxon%3A272569","Haloarcula marismortui ATCC 43049"]]},{"id":"NCBITaxon:3028","l":"Chroomonas","na":1,"nb":4,"a":[["other/ejectisome.html","ejectisome"]],"b":[["NCBITaxon%3A478117","Chroomonas cf. mesostigmatica"],["NCBITaxon%3A356657","Chroomonas dispersa"],["NCBITaxon%3A195502","Chroomonas nordstedtii"],["NCBITaxon%3A354589","Chroomonas sp. CCMP270"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. PCC 7120 = FACHB-418","na":3,"nb":1,"a":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]],"b":[["NCBITaxon%3A103690","Nostoc sp. PCC 7120 = FACHB-418"]]},{"id":"NCBITaxon:284813","l":"Encephalitozoon cuniculi GB-M1","na":3,"nb":1,"a":[["spore/microsporidian_type_endospore.html","microsporidian-type endospore"],["spore/microsporidian_type_exospore.html","microsporidian-type exospore"],["spore/polar_tube_anchoring_disc.html","polar tube anchoring disc"]],"b":[["NCBITaxon%3A284813","Encephalitozoon cuniculi GB-M1"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":2,"nb":1,"a":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]],"b":[["NCBITaxon%3A1140","Synechococcus elongatus PCC 7942 = FACHB-805"]]},{"id":"NCBITaxon:1430","l":"Bacillus thuringiensis serovar israelensis","na":1,"nb":2,"a":[["inclusion/parasporal_crystal.html","parasporal crystal"]],"b":[["NCBITaxon%3A1430","Bacillus thuringiensis serovar israelensis"],["NCBITaxon%3A339854","Bacillus thuringiensis serovar israelensis ATCC 35646"]]},{"id":"NCBITaxon:190650","l":"Caulobacter vibrioides CB15","na":1,"nb":2,"a":[["cytoskeleton/cytoophidium.html","cytoophidium"]],"b":[["NCBITaxon%3A155892","Caulobacter vibrioides"],["NCBITaxon%3A190650","Caulobacter vibrioides CB15"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus ATCC 27405","na":1,"nb":2,"a":[["other/cellulosome.html","cellulosome"]],"b":[["NCBITaxon%3A1515","Acetivibrio thermocellus"],["NCBITaxon%3A203119","Acetivibrio thermocellus ATCC 27405"]]},{"id":"NCBITaxon:224326","l":"Borreliella burgdorferi B31","na":1,"nb":2,"a":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]],"b":[["NCBITaxon%3A139","Borreliella burgdorferi"],["NCBITaxon%3A224326","Borreliella burgdorferi B31"]]},{"id":"NCBITaxon:227086","l":"Bigelowiella natans","na":1,"nb":2,"a":[["membrane_organelle/nucleomorph.html","nucleomorph"]],"b":[["NCBITaxon%3A227086","Bigelowiella natans"],["NCBITaxon%3A753081","Bigelowiella natans CCMP2755"]]},{"id":"NCBITaxon:243277","l":"Vibrio cholerae O1 biovar El Tor str. N16961","na":1,"nb":2,"a":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"]],"b":[["NCBITaxon%3A666","Vibrio cholerae"],["NCBITaxon%3A243277","Vibrio cholerae O1 biovar El Tor str. N16961"]]},{"id":"NCBITaxon:264462","l":"Bdellovibrio bacteriovorus HD100","na":1,"nb":2,"a":[["appendage/type_iv_pilus.html","type IV pilus"]],"b":[["NCBITaxon%3A959","Bdellovibrio bacteriovorus"],["NCBITaxon%3A264462","Bdellovibrio bacteriovorus HD100"]]},{"id":"NCBITaxon:315271","l":"Dolichospermum flos-aquae CCAP 1403/13F","na":2,"nb":1,"a":[["inclusion/gas_vesicle.html","gas vesicle"],["inclusion/gas_vesicle_shell.html","gas vesicle shell"]],"b":[["NCBITaxon%3A315271","Dolichospermum flos-aquae CCAP 1403/13F"]]},{"id":"NCBITaxon:330779","l":"Sulfolobus acidocaldarius DSM 639","na":1,"nb":2,"a":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"]],"b":[["NCBITaxon%3A2285","Sulfolobus acidocaldarius"],["NCBITaxon%3A330779","Sulfolobus acidocaldarius DSM 639"]]},{"id":"NCBITaxon:342108","l":"Paramagnetospirillum magneticum AMB-1","na":2,"nb":1,"a":[["cytoskeleton/mamk_filament.html","MamK filament"],["membrane_organelle/magnetosome.html","magnetosome"]],"b":[["NCBITaxon%3A342108","Paramagnetospirillum magneticum AMB-1"]]},{"id":"NCBITaxon:381666","l":"Cupriavidus necator H16","na":1,"nb":2,"a":[["inclusion/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]],"b":[["NCBITaxon%3A106590","Cupriavidus necator"],["NCBITaxon%3A381666","Cupriavidus necator H16"]]},{"id":"NCBITaxon:4896","l":"Schizosaccharomyces pombe","na":2,"nb":1,"a":[["cytoskeleton/actomyosin_contractile_ring.html","actomyosin contractile ring"],["spore/isp3_layer_of_spore_wall.html","Isp3 layer of spore wall"]],"b":[["NCBITaxon%3A4896","Schizosaccharomyces pombe"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":1,"nb":2,"a":[["microcompartment/bacterial_microcompartment.html","bacterial microcompartment"]],"b":[["NCBITaxon%3A80816","Haliangium ochraceum"],["NCBITaxon%3A502025","Haliangium ochraceum DSM 14365"]]},{"id":"NCBITaxon:5334","l":"Schizophyllum commune","na":1,"nb":2,"a":[["envelope/dolipore_septum.html","dolipore septum"]],"b":[["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A5334","Schizophyllum commune"]]},{"id":"NCBITaxon:54256","l":"Pyrodictium abyssi","na":1,"nb":2,"a":[["appendage/archaeal_cannula.html","archaeal cannula"]],"b":[["NCBITaxon%3A54256","Pyrodictium abyssi"],["NCBITaxon%3A391605","Pyrodictium abyssi DSM 6158"]]},{"id":"NCBITaxon:5702","l":"Trypanosoma brucei brucei","na":1,"nb":2,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["NCBITaxon%3A5702","Trypanosoma brucei brucei"],["NCBITaxon%3A185431","Trypanosoma brucei brucei TREU927"]]},{"id":"NCBITaxon:572477","l":"Allochromatium vinosum DSM 180","na":1,"nb":2,"a":[["inclusion/sulfur_globule.html","sulfur globule"]],"b":[["NCBITaxon%3A1049","Allochromatium vinosum"],["NCBITaxon%3A572477","Allochromatium vinosum DSM 180"]]},{"id":"NCBITaxon:573370","l":"Solidesulfovibrio magneticus RS-1","na":1,"nb":2,"a":[["membrane_organelle/ferrosome.html","ferrosome"]],"b":[["NCBITaxon%3A184917","Solidesulfovibrio magneticus"],["NCBITaxon%3A573370","Solidesulfovibrio magneticus RS-1"]]},{"id":"NCBITaxon:79929","l":"Methanothermobacter marburgensis str. Marburg","na":1,"nb":2,"a":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]],"b":[["NCBITaxon%3A145263","Methanothermobacter marburgensis"],["NCBITaxon%3A79929","Methanothermobacter marburgensis str. Marburg"]]},{"id":"NCBITaxon:1111708","l":"Synechocystis sp. PCC 6803 substr. Kazusa","na":1,"nb":1,"a":[["energy_complex/phycobilisome.html","phycobilisome"]],"b":[["NCBITaxon%3A1111708","Synechocystis sp. PCC 6803 substr. Kazusa"]]},{"id":"NCBITaxon:1803513","l":"Candidatus Altarchaeum hamiconexum","na":1,"nb":1,"a":[["appendage/hamus.html","hamus"]],"b":[["NCBITaxon%3A1803513","Candidatus Altarchaeum hamiconexum"]]},{"id":"NCBITaxon:208963","l":"Pseudomonas aeruginosa UCBPP-PA14","na":1,"nb":1,"a":[["inclusion/r_body.html","R-body"]],"b":[["NCBITaxon%3A208963","Pseudomonas aeruginosa UCBPP-PA14"]]},{"id":"NCBITaxon:243233","l":"Methylococcus capsulatus str. Bath","na":1,"nb":1,"a":[["membrane_organelle/methane_oxidizing_organelle.html","methane-oxidizing organelle"]],"b":[["NCBITaxon%3A243233","Methylococcus capsulatus str. Bath"]]},{"id":"NCBITaxon:246196","l":"Mycolicibacterium smegmatis MC2 155","na":1,"nb":1,"a":[["secretion_system/esx_3_type_vii_secretion_system_membrane_complex.html","ESX-3 type VII secretion system membrane complex"]],"b":[["NCBITaxon%3A246196","Mycolicibacterium smegmatis MC2 155"]]},{"id":"NCBITaxon:28907","l":"Caedibacter taeniospiralis","na":1,"nb":1,"a":[["inclusion/r_body.html","R-body"]],"b":[["NCBITaxon%3A28907","Caedibacter taeniospiralis"]]},{"id":"NCBITaxon:345073","l":"Vibrio cholerae O395","na":1,"nb":1,"a":[["energy_complex/sodium_translocating_nadh_quinone_reductase_complex.html","sodium-translocating NADH:quinone reductase complex"]],"b":[["NCBITaxon%3A345073","Vibrio cholerae O395"]]},{"id":"NCBITaxon:45610","l":"Psychrobacter urativorans","na":1,"nb":1,"a":[["ribonucleoprotein/ribosome.html","ribosome"]],"b":[["NCBITaxon%3A45610","Psychrobacter urativorans"]]},{"id":"NCBITaxon:48466","l":"Prosthecobacter vanneervenii","na":1,"nb":1,"a":[["cytoskeleton/btubab_bacterial_microtubule.html","BtubAB bacterial microtubule"]],"b":[["NCBITaxon%3A48466","Prosthecobacter vanneervenii"]]},{"id":"NCBITaxon:55529","l":"Guillardia theta","na":1,"nb":1,"a":[["membrane_organelle/nucleomorph.html","nucleomorph"]],"b":[["NCBITaxon%3A905079","Guillardia theta CCMP2712"]]},{"id":"NCBITaxon:5665","l":"Leishmania mexicana","na":1,"nb":1,"a":[["appendage/paraflagellar_rod.html","paraflagellar rod"]],"b":[["NCBITaxon%3A5665","Leishmania mexicana"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/CommunityMech--AntibioticMech.json b/assets/fleet/edges/CommunityMech--AntibioticMech.json index 99d4008..50890f8 100644 --- a/assets/fleet/edges/CommunityMech--AntibioticMech.json +++ b/assets/fleet/edges/CommunityMech--AntibioticMech.json @@ -1 +1 @@ -{"a":"CommunityMech","b":"AntibioticMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","AntibioticMech":"https://culturebotai.github.io/AntibioticMech/pages/"},"n":63,"by":{"CHEBI":42,"NCBITaxon":21},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":14,"nb":30,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":9,"nb":12,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"CHEBI:33709","l":"amino acid","na":14,"nb":8,"a":[["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["antibacterial/7-3-aminopyrrolidin-1-yl-1-2-4-difluorophenyl-6-fluoro-4-oxo-1-4-dihyd.html","7-(3-aminopyrrolidin-1-yl)-1-(2,4-difluorophenyl)-6-fluoro-4-oxo-1,4-dihydro-1,8-naphthyridine-3-carboxylic"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/pipemidic-acid.html","pipemidic acid"],["antibacterial/trovafloxacin.html","trovafloxacin"],["antifungal/mediomycin-a.html","mediomycin A"],["antifungal/mediomycin-b.html","mediomycin B"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":8,"nb":8,"a":[["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"],["Sedimenting_Arabinose_Glucose_Saccharomyces_Coculture.html","Sedimenting Arabinose-Glucose Saccharomyces Coculture"]],"b":[["antifungal/anidulafungin.html","anidulafungin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/caspofungin.html","caspofungin"],["antifungal/cycloheximide.html","cycloheximide"],["antifungal/micafungin.html","micafungin"],["antifungal/oligomycin-a.html","oligomycin A"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":3,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":3,"nb":6,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":2,"nb":15,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":13,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/bromodeoxytopsentin.html","bromodeoxytopsentin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":2,"nb":7,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["antibacterial/brefeldin-a.html","brefeldin A"],["antifungal/anidulafungin.html","anidulafungin"],["antifungal/caspofungin.html","caspofungin"],["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/micafungin.html","micafungin"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":2,"nb":7,"a":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":6,"nb":2,"a":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["antibacterial/mupirocin.html","mupirocin"],["antifungal/2-4-diacetylphloroglucinol.html","2,4-diacetylphloroglucinol"]]},{"id":"CHEBI:30746","l":"benzoic acid","na":5,"nb":2,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["biocide/benzoic-acid.html","benzoic acid"],["biocide/carboxy-ptio.html","carboxy-PTIO"]]},{"id":"CHEBI:26523","l":"reactive oxygen species","na":2,"nb":2,"a":[["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"],["biocide/ozone.html","ozone"]]},{"id":"CHEBI:33282","l":"antibacterial agent","na":1,"nb":496,"a":[["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"]],"b":[["antibacterial/1-2-dodecanediol.html","1,2-dodecanediol"],["antibacterial/1-6-dihydroxy-2-methyl-9-10-anthraquinone.html","1,6-dihydroxy-2-methyl-9,10-anthraquinone"],["antibacterial/1-carbapenem-3-carboxylic-acid.html","1-carbapenem-3-carboxylic acid"],["antibacterial/1-dodecylguanidine-acetate.html","1-dodecylguanidine acetate"],["antibacterial/1-dodecylguanidine.html","1-dodecylguanidine"],["antibacterial/1-hydroxycrisamicin-a.html","1-hydroxycrisamicin A"]]},{"id":"CHEBI:16236","l":"ethanol","na":25,"nb":1,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["biocide/ethanol.html","ethanol"]]},{"id":"CHEBI:22315","l":"alkaloid","na":1,"nb":21,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["antibacterial/14-norpseurotin-a.html","14-norpseurotin A"],["antibacterial/5-bromo-8-methoxy-1-methyl-%CE%B2-carboline.html","5-bromo-8-methoxy-1-methyl-β-carboline"],["antibacterial/undecylprodigiosin.html","undecylprodigiosin"],["antifungal/feruloylagmatine.html","feruloylagmatine"],["antifungal/pyrrolnitrin.html","pyrrolnitrin"],["antifungal/sampangine.html","sampangine"]]},{"id":"CHEBI:33575","l":"carboxylic acid","na":1,"nb":11,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"]],"b":[["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefatrizine.html","cefatrizine"],["antibacterial/cefazedone.html","cefazedone"],["antibacterial/cefcapene.html","cefcapene"],["antibacterial/cefditoren.html","cefditoren"],["antibacterial/cefiderocol.html","cefiderocol"]]},{"id":"CHEBI:15366","l":"acetic acid","na":8,"nb":1,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["biocide/acetic-acid.html","acetic acid"]]},{"id":"NCBITaxon:2697049","l":"Severe acute respiratory syndrome coronavirus 2","na":1,"nb":8,"a":[["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"]],"b":[["antibacterial/3-6-diaminoacridine.html","3,6-diaminoacridine"],["antibacterial/anacardic-acid.html","anacardic acid"],["antibacterial/baicalein.html","baicalein"],["antibacterial/ebselen.html","ebselen"],["antibacterial/hexachlorophene.html","hexachlorophene"],["antifungal/disulfiram.html","disulfiram"]]},{"id":"CHEBI:30769","l":"citric acid","na":5,"nb":1,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["unspecified/citric-acid.html","citric acid"]]},{"id":"CHEBI:15904","l":"long-chain fatty acid","na":1,"nb":4,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["antibacterial/9z-12z-15z-octadeca-9-12-15-trien-6-ynoic-acid.html","(9Z,12Z,15Z)-octadeca-9,12,15-trien-6-ynoic acid"],["antifungal/10e-15z-9-12-13-trihydroxy-10-15-octadecadienoic-acid.html","(10E,15Z)-9,12,13-trihydroxy-10,15-octadecadienoic acid"],["antimycobacterial/scleropyric-acid.html","scleropyric acid"],["antiprotozoal/minquartynoic-acid.html","minquartynoic acid"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":4,"nb":1,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"CHEBI:16670","l":"peptide","na":4,"nb":1,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["antibacterial/cefbuperazone.html","cefbuperazone"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":1,"nb":4,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/oxacillin.html","oxacillin"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":3,"nb":1,"a":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["biocide/formaldehyde.html","formaldehyde"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":3,"nb":1,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"CHEBI:60004","l":"mixture","na":1,"nb":3,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["antifungal/dimethomorph.html","dimethomorph"],["antifungal/flumorph.html","flumorph"],["biocide/urea-hydrogen-peroxide.html","urea hydrogen peroxide"]]},{"id":"CHEBI:87393","l":"hexan-1-ol","na":3,"nb":1,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["antibacterial/hexan-1-ol.html","hexan-1-ol"]]},{"id":"NCBITaxon:117187","l":"Fusarium verticillioides","na":1,"nb":3,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/fludioxonil.html","fludioxonil"]]},{"id":"NCBITaxon:5180","l":"Sclerotinia sclerotiorum","na":1,"nb":3,"a":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]],"b":[["antifungal/carboxin.html","carboxin"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/iprodione.html","iprodione"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":3,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"NCBITaxon:5480","l":"Lodderomyces parapsilosis","na":1,"nb":3,"a":[["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"CHEBI:132106","l":"sodium propionate","na":2,"nb":1,"a":[["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["antifungal/sodium-propionate.html","sodium propionate"]]},{"id":"CHEBI:15882","l":"phenol","na":2,"nb":1,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]],"b":[["biocide/phenol.html","phenol"]]},{"id":"CHEBI:16914","l":"salicylic acid","na":2,"nb":1,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"]],"b":[["antifungal/salicylic-acid.html","salicylic acid"]]},{"id":"CHEBI:26401","l":"purines","na":1,"nb":2,"a":[["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"]],"b":[["antiviral/mercaptopurine.html","mercaptopurine"],["antiviral/valganciclovir.html","valganciclovir"]]},{"id":"CHEBI:28837","l":"octanoic acid","na":2,"nb":1,"a":[["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["antibacterial/octanoic-acid.html","octanoic acid"]]},{"id":"CHEBI:30751","l":"formic acid","na":2,"nb":1,"a":[["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["antibacterial/formic-acid.html","formic acid"]]},{"id":"CHEBI:30768","l":"propionic acid","na":2,"nb":1,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["antifungal/propionic-acid.html","propionic acid"]]},{"id":"CHEBI:62412","l":"phenazine-1-carboxylic acid","na":2,"nb":1,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"]],"b":[["antifungal/phenazine-1-carboxylic-acid.html","phenazine-1-carboxylic acid"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":1,"nb":2,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"],["unspecified/streptothricin-d.html","streptothricin D"]]},{"id":"CHEBI:16188","l":"octan-1-ol","na":1,"nb":1,"a":[["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["antifungal/octan-1-ol.html","octan-1-ol"]]},{"id":"CHEBI:17642","l":"pentachlorophenol","na":1,"nb":1,"a":[["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["antifungal/pentachlorophenol.html","pentachlorophenol"]]},{"id":"CHEBI:17698","l":"chloramphenicol","na":1,"nb":1,"a":[["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"CHEBI:17847","l":"p-cresol","na":1,"nb":1,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["antifungal/p-cresol.html","p-cresol"]]},{"id":"CHEBI:17855","l":"triglyceride","na":1,"nb":1,"a":[["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["antifungal/triacetin.html","triacetin"]]},{"id":"CHEBI:195240","l":"6-methoxy-2-benzoxazolinone","na":1,"nb":1,"a":[["Maize_Benzoxazinoid_Metabolizing_SynComs.html","Maize Benzoxazinoid-Metabolizing SynComs"]],"b":[["antibacterial/6-methoxy-2-benzoxazolinone.html","6-methoxy-2-benzoxazolinone"]]},{"id":"CHEBI:22470","l":"alpha-tocopherol","na":1,"nb":1,"a":[["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"]],"b":[["antiviral/r-r-r-%CE%B1-tocopherol.html","(R,R,R)-α-tocopherol"]]},{"id":"CHEBI:23252","l":"cinnamic acids","na":1,"nb":1,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"]],"b":[["antiviral/stibavirin.html","stibavirin"]]},{"id":"CHEBI:27744","l":"glyphosate","na":1,"nb":1,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["antifungal/glyphosate.html","glyphosate"]]},{"id":"CHEBI:32079","l":"pyrrolnitrin","na":1,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["antifungal/pyrrolnitrin.html","pyrrolnitrin"]]},{"id":"CHEBI:33403","l":"elemental sulfur","na":1,"nb":1,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["antifungal/polysulfur.html","polysulfur"]]},{"id":"CHEBI:47696","l":"2,4,6-tribromophenol","na":1,"nb":1,"a":[["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]],"b":[["antifungal/2-4-6-tribromophenol.html","2,4,6-tribromophenol"]]},{"id":"CHEBI:48347","l":"triclocarban","na":1,"nb":1,"a":[["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"]],"b":[["biocide/triclocarban.html","triclocarban"]]},{"id":"CHEBI:61121","l":"oxylipin","na":1,"nb":1,"a":[["Tomato_Oxylipin_SynCom3.html","Tomato Oxylipin-Protective SynCom3"]],"b":[["antifungal/10e-15z-9-12-13-trihydroxy-10-15-octadecadienoic-acid.html","(10E,15Z)-9,12,13-trihydroxy-10,15-octadecadienoic acid"]]},{"id":"CHEBI:6824","l":"hexamethylenetetramine","na":1,"nb":1,"a":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"]],"b":[["antibacterial/hexamethylenetetramine.html","hexamethylenetetramine"]]},{"id":"CHEBI:78688","l":"2,4-diacetylphloroglucinol","na":1,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["antifungal/2-4-diacetylphloroglucinol.html","2,4-diacetylphloroglucinol"]]},{"id":"CHEBI:8269","l":"Pleuromutilin","na":1,"nb":1,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]],"b":[["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"CHEBI:8653","l":"pyocyanine","na":1,"nb":1,"a":[["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["antibacterial/pyocyanine.html","pyocyanine"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":1,"nb":1,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["antibacterial/nocardamine.html","nocardamine"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":1,"nb":1,"a":[["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":1,"nb":1,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"NCBITaxon:68264","l":"Streptomyces rishiriensis","na":1,"nb":1,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["antibacterial/coumermycin-a1.html","coumermycin A1"]]}]} \ No newline at end of file +{"a":"CommunityMech","b":"AntibioticMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","AntibioticMech":"https://culturebotai.github.io/AntibioticMech/pages/"},"n":63,"by":{"CHEBI":42,"NCBITaxon":21},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":14,"nb":30,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":9,"nb":12,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"CHEBI:33709","l":"amino acid","na":14,"nb":8,"a":[["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["antibacterial/7-3-aminopyrrolidin-1-yl-1-2-4-difluorophenyl-6-fluoro-4-oxo-1-4-dihyd.html","7-(3-aminopyrrolidin-1-yl)-1-(2,4-difluorophenyl)-6-fluoro-4-oxo-1,4-dihydro-1,8-naphthyridine-3-carboxylic acid"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/pipemidic-acid.html","pipemidic acid"],["antibacterial/trovafloxacin.html","trovafloxacin"],["antifungal/mediomycin-a.html","mediomycin A"],["antifungal/mediomycin-b.html","mediomycin B"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":8,"nb":8,"a":[["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"],["Sedimenting_Arabinose_Glucose_Saccharomyces_Coculture.html","Sedimenting Arabinose-Glucose Saccharomyces Coculture"]],"b":[["antifungal/anidulafungin.html","anidulafungin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/caspofungin.html","caspofungin"],["antifungal/cycloheximide.html","cycloheximide"],["antifungal/micafungin.html","micafungin"],["antifungal/oligomycin-a.html","oligomycin A"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":3,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":3,"nb":6,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":2,"nb":15,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":13,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/bromodeoxytopsentin.html","bromodeoxytopsentin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":2,"nb":7,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["antibacterial/brefeldin-a.html","brefeldin A"],["antifungal/anidulafungin.html","anidulafungin"],["antifungal/caspofungin.html","caspofungin"],["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/micafungin.html","micafungin"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":2,"nb":7,"a":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":6,"nb":2,"a":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["antibacterial/mupirocin.html","mupirocin"],["antifungal/2-4-diacetylphloroglucinol.html","2,4-diacetylphloroglucinol"]]},{"id":"CHEBI:30746","l":"benzoic acid","na":5,"nb":2,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["biocide/benzoic-acid.html","benzoic acid"],["biocide/carboxy-ptio.html","carboxy-PTIO"]]},{"id":"CHEBI:26523","l":"reactive oxygen species","na":2,"nb":2,"a":[["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"],["biocide/ozone.html","ozone"]]},{"id":"CHEBI:33282","l":"antibacterial agent","na":1,"nb":496,"a":[["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"]],"b":[["antibacterial/1-2-dodecanediol.html","1,2-dodecanediol"],["antibacterial/1-6-dihydroxy-2-methyl-9-10-anthraquinone.html","1,6-dihydroxy-2-methyl-9,10-anthraquinone"],["antibacterial/1-carbapenem-3-carboxylic-acid.html","1-carbapenem-3-carboxylic acid"],["antibacterial/1-dodecylguanidine-acetate.html","1-dodecylguanidine acetate"],["antibacterial/1-dodecylguanidine.html","1-dodecylguanidine"],["antibacterial/1-hydroxycrisamicin-a.html","1-hydroxycrisamicin A"]]},{"id":"CHEBI:16236","l":"ethanol","na":25,"nb":1,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["biocide/ethanol.html","ethanol"]]},{"id":"CHEBI:22315","l":"alkaloid","na":1,"nb":21,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["antibacterial/14-norpseurotin-a.html","14-norpseurotin A"],["antibacterial/5-bromo-8-methoxy-1-methyl-%CE%B2-carboline.html","5-bromo-8-methoxy-1-methyl-β-carboline"],["antibacterial/undecylprodigiosin.html","undecylprodigiosin"],["antifungal/feruloylagmatine.html","feruloylagmatine"],["antifungal/pyrrolnitrin.html","pyrrolnitrin"],["antifungal/sampangine.html","sampangine"]]},{"id":"CHEBI:33575","l":"carboxylic acid","na":1,"nb":11,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"]],"b":[["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefatrizine.html","cefatrizine"],["antibacterial/cefazedone.html","cefazedone"],["antibacterial/cefcapene.html","cefcapene"],["antibacterial/cefditoren.html","cefditoren"],["antibacterial/cefiderocol.html","cefiderocol"]]},{"id":"CHEBI:15366","l":"acetic acid","na":8,"nb":1,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["biocide/acetic-acid.html","acetic acid"]]},{"id":"NCBITaxon:2697049","l":"Severe acute respiratory syndrome coronavirus 2","na":1,"nb":8,"a":[["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"]],"b":[["antibacterial/3-6-diaminoacridine.html","3,6-diaminoacridine"],["antibacterial/anacardic-acid.html","anacardic acid"],["antibacterial/baicalein.html","baicalein"],["antibacterial/ebselen.html","ebselen"],["antibacterial/hexachlorophene.html","hexachlorophene"],["antifungal/disulfiram.html","disulfiram"]]},{"id":"CHEBI:30769","l":"citric acid","na":5,"nb":1,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["unspecified/citric-acid.html","citric acid"]]},{"id":"CHEBI:15904","l":"long-chain fatty acid","na":1,"nb":4,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["antibacterial/9z-12z-15z-octadeca-9-12-15-trien-6-ynoic-acid.html","(9Z,12Z,15Z)-octadeca-9,12,15-trien-6-ynoic acid"],["antifungal/10e-15z-9-12-13-trihydroxy-10-15-octadecadienoic-acid.html","(10E,15Z)-9,12,13-trihydroxy-10,15-octadecadienoic acid"],["antimycobacterial/scleropyric-acid.html","scleropyric acid"],["antiprotozoal/minquartynoic-acid.html","minquartynoic acid"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":4,"nb":1,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"CHEBI:16670","l":"peptide","na":4,"nb":1,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["antibacterial/cefbuperazone.html","cefbuperazone"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":1,"nb":4,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/oxacillin.html","oxacillin"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":3,"nb":1,"a":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["biocide/formaldehyde.html","formaldehyde"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":3,"nb":1,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"CHEBI:60004","l":"mixture","na":1,"nb":3,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["antifungal/dimethomorph.html","dimethomorph"],["antifungal/flumorph.html","flumorph"],["biocide/urea-hydrogen-peroxide.html","urea hydrogen peroxide"]]},{"id":"CHEBI:87393","l":"hexan-1-ol","na":3,"nb":1,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["antibacterial/hexan-1-ol.html","hexan-1-ol"]]},{"id":"NCBITaxon:117187","l":"Fusarium verticillioides","na":1,"nb":3,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/fludioxonil.html","fludioxonil"]]},{"id":"NCBITaxon:5180","l":"Sclerotinia sclerotiorum","na":1,"nb":3,"a":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]],"b":[["antifungal/carboxin.html","carboxin"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/iprodione.html","iprodione"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":3,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"NCBITaxon:5480","l":"Lodderomyces parapsilosis","na":1,"nb":3,"a":[["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"CHEBI:132106","l":"sodium propionate","na":2,"nb":1,"a":[["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["antifungal/sodium-propionate.html","sodium propionate"]]},{"id":"CHEBI:15882","l":"phenol","na":2,"nb":1,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]],"b":[["biocide/phenol.html","phenol"]]},{"id":"CHEBI:16914","l":"salicylic acid","na":2,"nb":1,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"]],"b":[["antifungal/salicylic-acid.html","salicylic acid"]]},{"id":"CHEBI:26401","l":"purines","na":1,"nb":2,"a":[["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"]],"b":[["antiviral/mercaptopurine.html","mercaptopurine"],["antiviral/valganciclovir.html","valganciclovir"]]},{"id":"CHEBI:28837","l":"octanoic acid","na":2,"nb":1,"a":[["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["antibacterial/octanoic-acid.html","octanoic acid"]]},{"id":"CHEBI:30751","l":"formic acid","na":2,"nb":1,"a":[["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["antibacterial/formic-acid.html","formic acid"]]},{"id":"CHEBI:30768","l":"propionic acid","na":2,"nb":1,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["antifungal/propionic-acid.html","propionic acid"]]},{"id":"CHEBI:62412","l":"phenazine-1-carboxylic acid","na":2,"nb":1,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"]],"b":[["antifungal/phenazine-1-carboxylic-acid.html","phenazine-1-carboxylic acid"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":1,"nb":2,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"],["unspecified/streptothricin-d.html","streptothricin D"]]},{"id":"CHEBI:16188","l":"octan-1-ol","na":1,"nb":1,"a":[["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["antifungal/octan-1-ol.html","octan-1-ol"]]},{"id":"CHEBI:17642","l":"pentachlorophenol","na":1,"nb":1,"a":[["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["antifungal/pentachlorophenol.html","pentachlorophenol"]]},{"id":"CHEBI:17698","l":"chloramphenicol","na":1,"nb":1,"a":[["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"CHEBI:17847","l":"p-cresol","na":1,"nb":1,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["antifungal/p-cresol.html","p-cresol"]]},{"id":"CHEBI:17855","l":"triglyceride","na":1,"nb":1,"a":[["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["antifungal/triacetin.html","triacetin"]]},{"id":"CHEBI:195240","l":"6-methoxy-2-benzoxazolinone","na":1,"nb":1,"a":[["Maize_Benzoxazinoid_Metabolizing_SynComs.html","Maize Benzoxazinoid-Metabolizing SynComs"]],"b":[["antibacterial/6-methoxy-2-benzoxazolinone.html","6-methoxy-2-benzoxazolinone"]]},{"id":"CHEBI:22470","l":"alpha-tocopherol","na":1,"nb":1,"a":[["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"]],"b":[["antiviral/r-r-r-%CE%B1-tocopherol.html","(R,R,R)-α-tocopherol"]]},{"id":"CHEBI:23252","l":"cinnamic acids","na":1,"nb":1,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"]],"b":[["antiviral/stibavirin.html","stibavirin"]]},{"id":"CHEBI:27744","l":"glyphosate","na":1,"nb":1,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["antifungal/glyphosate.html","glyphosate"]]},{"id":"CHEBI:32079","l":"pyrrolnitrin","na":1,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["antifungal/pyrrolnitrin.html","pyrrolnitrin"]]},{"id":"CHEBI:33403","l":"elemental sulfur","na":1,"nb":1,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["antifungal/polysulfur.html","polysulfur"]]},{"id":"CHEBI:47696","l":"2,4,6-tribromophenol","na":1,"nb":1,"a":[["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]],"b":[["antifungal/2-4-6-tribromophenol.html","2,4,6-tribromophenol"]]},{"id":"CHEBI:48347","l":"triclocarban","na":1,"nb":1,"a":[["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"]],"b":[["biocide/triclocarban.html","triclocarban"]]},{"id":"CHEBI:61121","l":"oxylipin","na":1,"nb":1,"a":[["Tomato_Oxylipin_SynCom3.html","Tomato Oxylipin-Protective SynCom3"]],"b":[["antifungal/10e-15z-9-12-13-trihydroxy-10-15-octadecadienoic-acid.html","(10E,15Z)-9,12,13-trihydroxy-10,15-octadecadienoic acid"]]},{"id":"CHEBI:6824","l":"hexamethylenetetramine","na":1,"nb":1,"a":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"]],"b":[["antibacterial/hexamethylenetetramine.html","hexamethylenetetramine"]]},{"id":"CHEBI:78688","l":"2,4-diacetylphloroglucinol","na":1,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["antifungal/2-4-diacetylphloroglucinol.html","2,4-diacetylphloroglucinol"]]},{"id":"CHEBI:8269","l":"Pleuromutilin","na":1,"nb":1,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]],"b":[["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"CHEBI:8653","l":"pyocyanine","na":1,"nb":1,"a":[["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["antibacterial/pyocyanine.html","pyocyanine"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":1,"nb":1,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["antibacterial/nocardamine.html","nocardamine"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":1,"nb":1,"a":[["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":1,"nb":1,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"NCBITaxon:68264","l":"Streptomyces rishiriensis","na":1,"nb":1,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["antibacterial/coumermycin-a1.html","coumermycin A1"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/CommunityMech--CellStructureMech.json b/assets/fleet/edges/CommunityMech--CellStructureMech.json index e1eef46..7e69537 100644 --- a/assets/fleet/edges/CommunityMech--CellStructureMech.json +++ b/assets/fleet/edges/CommunityMech--CellStructureMech.json @@ -1 +1 @@ -{"a":"CommunityMech","b":"CellStructureMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","CellStructureMech":"https://culturebotai.github.io/CellStructureMech/pages/structures/"},"n":60,"by":{"NCBITaxon":36,"CHEBI":13,"GO":11},"terms":[{"id":"NCBITaxon:2","l":"Bacteria","na":56,"nb":89,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"]],"b":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]]},{"id":"NCBITaxon:2157","l":"Archaea","na":15,"nb":39,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"]],"b":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":14,"nb":31,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]],"b":[["appendage/curli.html","curli"],["appendage/p_pilus.html","P pilus"],["appendage/pilus.html","pilus"],["appendage/type_i_pilus.html","type I pilus"],["cytoskeleton/parm_filament.html","ParM filament"],["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":14,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["cytoskeleton/alfa_filament.html","AlfA filament"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":8,"nb":190,"a":[["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"],["Sedimenting_Arabinose_Glucose_Saccharomyces_Coculture.html","Sedimenting Arabinose-Glucose Saccharomyces Coculture"]],"b":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"],["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/septin_ring.html","septin ring"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"],["cytoskeleton/spindle_pole_body.html","spindle pole body"]]},{"id":"NCBITaxon:1239","l":"Bacillota","na":6,"nb":9,"a":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["Thermophilic_ExSitu_Biomethanation_Mixed_Culture.html","Thermophilic Ex-Situ Biomethanation Mixed Culture"]],"b":[["spore/endospore_coat.html","endospore coat"],["spore/endospore_core.html","endospore core"],["spore/endospore_cortex.html","endospore cortex"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"],["spore/endospore_forming_forespore.html","endospore-forming forespore"],["spore/exosporium.html","exosporium"]]},{"id":"GO:0015979","l":"photosynthesis","na":44,"nb":5,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"],["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":75,"nb":3,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"],["other/pyrenoid.html","pyrenoid"]]},{"id":"NCBITaxon:3055","l":"Chlamydomonas reinhardtii","na":3,"nb":58,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]],"b":[["appendage/ciliary_membrane.html","ciliary membrane"],["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"],["appendage/mastigoneme.html","mastigoneme"],["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_a_tubule_inner_sheath.html","axonemal A tubule inner sheath"]]},{"id":"NCBITaxon:201174","l":"Actinomycetota","na":10,"nb":3,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":9,"nb":3,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"]],"b":[["appendage/type_iv_pilus.html","type IV pilus"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]]},{"id":"NCBITaxon:1224","l":"Pseudomonadota","na":8,"nb":3,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"]],"b":[["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["microcompartment/carboxysome.html","carboxysome"],["ribonucleoprotein/bacterial_degradosome.html","bacterial degradosome"]]},{"id":"CHEBI:17029","l":"chitin","na":4,"nb":3,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]],"b":[["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["membrane_organelle/chitosome.html","chitosome"],["spore/microsporidian_type_endospore.html","microsporidian-type endospore"]]},{"id":"GO:0015977","l":"carbon fixation","na":33,"nb":2,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["other/pyrenoid.html","pyrenoid"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":2,"nb":15,"a":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]]},{"id":"NCBITaxon:1117","l":"Cyanobacteriota","na":2,"nb":13,"a":[["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]],"b":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/photosystem_i.html","photosystem I"],["energy_complex/photosystem_ii.html","photosystem II"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]]},{"id":"NCBITaxon:1148","l":"Synechocystis sp. PCC 6803","na":2,"nb":11,"a":[["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["inclusion/cyanophycin_granule.html","cyanophycin granule"],["inclusion/glycogen_granule.html","glycogen granule"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"]]},{"id":"GO:0019684","l":"photosynthesis, light reaction","na":2,"nb":9,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]],"b":[["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":6,"nb":2,"a":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":2,"nb":4,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"],["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]]},{"id":"NCBITaxon:203682","l":"Planctomycetota","na":3,"nb":2,"a":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"]],"b":[["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"]]},{"id":"NCBITaxon:28211","l":"Alphaproteobacteria","na":2,"nb":3,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]]},{"id":"GO:0033103","l":"protein secretion by the type VI secretion system","na":2,"nb":2,"a":[["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"]],"b":[["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"],["secretion_system/type_vi_secretion_system_contractile_sheath.html","type VI secretion system contractile sheath"]]},{"id":"NCBITaxon:1236","l":"Gammaproteobacteria","na":2,"nb":2,"a":[["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"],["secretion_system/type_iii_protein_secretion_system_complex.html","type III protein secretion system complex"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":2,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["envelope/periplasmic_space.html","periplasmic space"],["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":2,"nb":2,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["cytoskeleton/tubz_filament.html","TubZ filament"],["inclusion/parasporal_crystal.html","parasporal crystal"]]},{"id":"NCBITaxon:1763","l":"Mycobacterium","na":2,"nb":2,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]]},{"id":"NCBITaxon:2759","l":"Eukaryota","na":1,"nb":49,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"]],"b":[["appendage/paraflagellar_rod.html","paraflagellar rod"],["cytoskeleton/conoid.html","conoid"],["cytoskeleton/cytoophidium.html","cytoophidium"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":21,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":1,"nb":15,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]]},{"id":"NCBITaxon:4751","l":"Fungi","na":1,"nb":11,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/septin_ring.html","septin ring"],["envelope/capsule.html","capsule"],["envelope/eisosome_membrane_domain_mcc.html","eisosome membrane domain/MCC"],["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["envelope/plasma_membrane.html","plasma membrane"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":1,"nb":8,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["other/ap_5_adaptor_complex.html","AP-5 adaptor complex"],["ribonucleoprotein/u11_snrnp.html","U11 snRNP"],["ribonucleoprotein/u11_u12_snrnp.html","U11/U12 snRNP"],["ribonucleoprotein/u12_snrnp.html","U12 snRNP"],["ribonucleoprotein/u4atac_snrnp.html","U4atac snRNP"],["ribonucleoprotein/u4atac_u6atac_snrnp.html","U4atac/U6atac snRNP"]]},{"id":"NCBITaxon:976","l":"Bacteroidota","na":7,"nb":1,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["secretion_system/type_ix_protein_secretion_system_complex.html","type IX protein secretion system complex"]]},{"id":"NCBITaxon:32046","l":"Synechococcus elongatus","na":6,"nb":1,"a":[["Synechococcus_Bacillus_SPC.html","Synechococcus-Bacillus Synthetic Photosynthetic Consortium"],["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"],["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"],["Synechococcus_Saccharomyces_SPC.html","Synechococcus-Saccharomyces Synthetic Photosynthetic Consortium"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["energy_complex/photosystem_i.html","photosystem I"]]},{"id":"GO:0006635","l":"fatty acid beta-oxidation","na":5,"nb":1,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["membrane_organelle/peroxisomal_matrix.html","peroxisomal matrix"]]},{"id":"GO:0006935","l":"chemotaxis","na":5,"nb":1,"a":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["SynCom_MetG2_Rhizobacteria_Sugarcane_Stress_Resilience.html","SynCom MetG2 Rhizobacteria Sugarcane Stress Resilience"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"],["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]]},{"id":"GO:0071973","l":"bacterial-type flagellum-dependent cell motility","na":1,"nb":4,"a":[["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/periplasmic_flagellum.html","periplasmic flagellum"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":3,"nb":1,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["membrane_organelle/trichocyst.html","trichocyst"]]},{"id":"CHEBI:46726","l":"magnetite","na":3,"nb":1,"a":[["Magnetite_Sulfate_Stress_Anaerobic_Microbiome.html","Magnetite Sulfate-Stress Anaerobic Microbiome"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Tropidoatractus_Magnetotacticus_Tripartite_Syntrophy.html","Tropidoatractus magnetotacticus Magnetotactic Ciliate Tripartite Syntrophy"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"]]},{"id":"NCBITaxon:5722","l":"Trichomonas vaginalis","na":1,"nb":3,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["membrane_organelle/hydrogenosomal_membrane.html","hydrogenosomal membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/hydrogenosome_lumen.html","hydrogenosome lumen"]]},{"id":"CHEBI:15422","l":"ATP","na":2,"nb":1,"a":[["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]]},{"id":"GO:0006260","l":"DNA replication","na":1,"nb":2,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"],["other/single_stranded_dna_binding_protein_complex.html","single-stranded DNA-binding protein complex"]]},{"id":"GO:0009252","l":"peptidoglycan biosynthetic process","na":1,"nb":2,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"]],"b":[["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/elongasome.html","elongasome"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":1,"nb":2,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":2,"nb":1,"a":[["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]],"b":[["other/cellulosome.html","cellulosome"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus ATCC 27405","na":2,"nb":1,"a":[["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["other/cellulosome.html","cellulosome"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":2,"nb":1,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"]],"b":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":1,"nb":2,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]]},{"id":"NCBITaxon:4890","l":"Ascomycota","na":1,"nb":2,"a":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["other/nuclear_pore_central_transport_channel.html","nuclear pore central transport channel"],["other/nuclear_pore_linkers.html","nuclear pore linkers"]]},{"id":"CHEBI:16838","l":"polyphosphate","na":1,"nb":1,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"]],"b":[["membrane_organelle/acidocalcisome.html","acidocalcisome"]]},{"id":"CHEBI:17855","l":"triglyceride","na":1,"nb":1,"a":[["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["inclusion/lipid_droplet.html","lipid droplet"]]},{"id":"CHEBI:18248","l":"iron atom","na":1,"nb":1,"a":[["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"]]},{"id":"CHEBI:28087","l":"glycogen","na":1,"nb":1,"a":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]],"b":[["inclusion/glycogen_granule.html","glycogen granule"]]},{"id":"CHEBI:33403","l":"elemental sulfur","na":1,"nb":1,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["inclusion/sulfur_globule.html","sulfur globule"]]},{"id":"CHEBI:53388","l":"poly(hydroxybutyrate)","na":1,"nb":1,"a":[["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"]],"b":[["inclusion/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]]},{"id":"GO:0006412","l":"translation","na":1,"nb":1,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["ribonucleoprotein/ribosome.html","ribosome"]]},{"id":"GO:0055085","l":"transmembrane transport","na":1,"nb":1,"a":[["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"]],"b":[["envelope/plasma_membrane.html","plasma membrane"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":1,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]],"b":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]]},{"id":"NCBITaxon:203691","l":"Spirochaetota","na":1,"nb":1,"a":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":1,"nb":1,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"]]}]} \ No newline at end of file +{"a":"CommunityMech","b":"CellStructureMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","CellStructureMech":"https://culturebotai.github.io/CellStructureMech/pages/structures/"},"n":60,"by":{"NCBITaxon":36,"CHEBI":13,"GO":11},"terms":[{"id":"NCBITaxon:2","l":"Bacteria","na":56,"nb":89,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"]],"b":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]]},{"id":"NCBITaxon:2157","l":"Archaea","na":15,"nb":39,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"]],"b":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":14,"nb":31,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]],"b":[["appendage/curli.html","curli"],["appendage/p_pilus.html","P pilus"],["appendage/pilus.html","pilus"],["appendage/type_i_pilus.html","type I pilus"],["cytoskeleton/parm_filament.html","ParM filament"],["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":14,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["cytoskeleton/alfa_filament.html","AlfA filament"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":8,"nb":190,"a":[["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"],["Sedimenting_Arabinose_Glucose_Saccharomyces_Coculture.html","Sedimenting Arabinose-Glucose Saccharomyces Coculture"]],"b":[["cytoskeleton/actin_cortical_patch.html","actin cortical patch"],["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/mitotic_spindle.html","mitotic spindle"],["cytoskeleton/septin_ring.html","septin ring"],["cytoskeleton/spindle_microtubule.html","spindle microtubule"],["cytoskeleton/spindle_pole_body.html","spindle pole body"]]},{"id":"NCBITaxon:1239","l":"Bacillota","na":6,"nb":9,"a":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["Thermophilic_ExSitu_Biomethanation_Mixed_Culture.html","Thermophilic Ex-Situ Biomethanation Mixed Culture"]],"b":[["spore/endospore_coat.html","endospore coat"],["spore/endospore_core.html","endospore core"],["spore/endospore_cortex.html","endospore cortex"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"],["spore/endospore_forming_forespore.html","endospore-forming forespore"],["spore/exosporium.html","exosporium"]]},{"id":"GO:0015979","l":"photosynthesis","na":44,"nb":5,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"],["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":75,"nb":3,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"],["other/pyrenoid.html","pyrenoid"]]},{"id":"NCBITaxon:3055","l":"Chlamydomonas reinhardtii","na":3,"nb":58,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]],"b":[["appendage/ciliary_membrane.html","ciliary membrane"],["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"],["appendage/mastigoneme.html","mastigoneme"],["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_a_tubule_inner_sheath.html","axonemal A tubule inner sheath"]]},{"id":"NCBITaxon:201174","l":"Actinomycetota","na":10,"nb":3,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":9,"nb":3,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"]],"b":[["appendage/type_iv_pilus.html","type IV pilus"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]]},{"id":"NCBITaxon:1224","l":"Pseudomonadota","na":8,"nb":3,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"]],"b":[["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["microcompartment/carboxysome.html","carboxysome"],["ribonucleoprotein/bacterial_degradosome.html","bacterial degradosome"]]},{"id":"CHEBI:17029","l":"chitin","na":4,"nb":3,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]],"b":[["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["membrane_organelle/chitosome.html","chitosome"],["spore/microsporidian_type_endospore.html","microsporidian-type endospore"]]},{"id":"GO:0015977","l":"carbon fixation","na":33,"nb":2,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["other/pyrenoid.html","pyrenoid"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":2,"nb":15,"a":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]]},{"id":"NCBITaxon:1117","l":"Cyanobacteriota","na":2,"nb":13,"a":[["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]],"b":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/photosystem_i.html","photosystem I"],["energy_complex/photosystem_ii.html","photosystem II"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]]},{"id":"NCBITaxon:1148","l":"Synechocystis sp. PCC 6803","na":2,"nb":11,"a":[["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["inclusion/cyanophycin_granule.html","cyanophycin granule"],["inclusion/glycogen_granule.html","glycogen granule"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"]]},{"id":"GO:0019684","l":"photosynthesis, light reaction","na":2,"nb":9,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]],"b":[["membrane_organelle/chloroplast_thylakoid_membrane.html","chloroplast thylakoid membrane"],["membrane_organelle/cyanelle_thylakoid.html","cyanelle thylakoid"],["membrane_organelle/cyanelle_thylakoid_membrane.html","cyanelle thylakoid membrane"],["membrane_organelle/organellar_chromatophore_thylakoid.html","organellar chromatophore thylakoid"],["membrane_organelle/organellar_chromatophore_thylakoid_membrane.html","organellar chromatophore thylakoid membrane"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":6,"nb":2,"a":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":2,"nb":4,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"],["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]]},{"id":"NCBITaxon:203682","l":"Planctomycetota","na":3,"nb":2,"a":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"]],"b":[["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"]]},{"id":"NCBITaxon:28211","l":"Alphaproteobacteria","na":2,"nb":3,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]]},{"id":"GO:0033103","l":"protein secretion by the type VI secretion system","na":2,"nb":2,"a":[["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"]],"b":[["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"],["secretion_system/type_vi_secretion_system_contractile_sheath.html","type VI secretion system contractile sheath"]]},{"id":"NCBITaxon:1236","l":"Gammaproteobacteria","na":2,"nb":2,"a":[["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"],["secretion_system/type_iii_protein_secretion_system_complex.html","type III protein secretion system complex"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":2,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["envelope/periplasmic_space.html","periplasmic space"],["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":2,"nb":2,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["cytoskeleton/tubz_filament.html","TubZ filament"],["inclusion/parasporal_crystal.html","parasporal crystal"]]},{"id":"NCBITaxon:1763","l":"Mycobacterium","na":2,"nb":2,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]]},{"id":"NCBITaxon:2759","l":"Eukaryota","na":1,"nb":49,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"]],"b":[["appendage/paraflagellar_rod.html","paraflagellar rod"],["cytoskeleton/conoid.html","conoid"],["cytoskeleton/cytoophidium.html","cytoophidium"],["cytoskeleton/polar_ring_of_apical_complex.html","polar ring of apical complex"],["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":21,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli K-12","na":1,"nb":15,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]]},{"id":"NCBITaxon:4751","l":"Fungi","na":1,"nb":11,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["cytoskeleton/eisosome_filament.html","eisosome filament"],["cytoskeleton/septin_ring.html","septin ring"],["envelope/capsule.html","capsule"],["envelope/eisosome_membrane_domain_mcc.html","eisosome membrane domain/MCC"],["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["envelope/plasma_membrane.html","plasma membrane"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":1,"nb":8,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["other/ap_5_adaptor_complex.html","AP-5 adaptor complex"],["ribonucleoprotein/u11_snrnp.html","U11 snRNP"],["ribonucleoprotein/u11_u12_snrnp.html","U11/U12 snRNP"],["ribonucleoprotein/u12_snrnp.html","U12 snRNP"],["ribonucleoprotein/u4atac_snrnp.html","U4atac snRNP"],["ribonucleoprotein/u4atac_u6atac_snrnp.html","U4atac/U6atac snRNP"]]},{"id":"NCBITaxon:976","l":"Bacteroidota","na":7,"nb":1,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["secretion_system/type_ix_protein_secretion_system_complex.html","type IX protein secretion system complex"]]},{"id":"NCBITaxon:32046","l":"Synechococcus elongatus","na":6,"nb":1,"a":[["Synechococcus_Bacillus_SPC.html","Synechococcus-Bacillus Synthetic Photosynthetic Consortium"],["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"],["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"],["Synechococcus_Saccharomyces_SPC.html","Synechococcus-Saccharomyces Synthetic Photosynthetic Consortium"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["energy_complex/photosystem_i.html","photosystem I"]]},{"id":"GO:0006635","l":"fatty acid beta-oxidation","na":5,"nb":1,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["membrane_organelle/peroxisomal_matrix.html","peroxisomal matrix"]]},{"id":"GO:0006935","l":"chemotaxis","na":5,"nb":1,"a":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["SynCom_MetG2_Rhizobacteria_Sugarcane_Stress_Resilience.html","SynCom MetG2 Rhizobacteria Sugarcane Stress Resilience"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"],["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]]},{"id":"GO:0071973","l":"bacterial-type flagellum-dependent cell motility","na":1,"nb":4,"a":[["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/periplasmic_flagellum.html","periplasmic flagellum"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":3,"nb":1,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["membrane_organelle/trichocyst.html","trichocyst"]]},{"id":"CHEBI:46726","l":"magnetite","na":3,"nb":1,"a":[["Magnetite_Sulfate_Stress_Anaerobic_Microbiome.html","Magnetite Sulfate-Stress Anaerobic Microbiome"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Tropidoatractus_Magnetotacticus_Tripartite_Syntrophy.html","Tropidoatractus magnetotacticus Magnetotactic Ciliate Tripartite Syntrophy"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"]]},{"id":"NCBITaxon:5722","l":"Trichomonas vaginalis","na":1,"nb":3,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["membrane_organelle/hydrogenosomal_membrane.html","hydrogenosomal membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/hydrogenosome_lumen.html","hydrogenosome lumen"]]},{"id":"CHEBI:15422","l":"ATP","na":2,"nb":1,"a":[["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]]},{"id":"GO:0006260","l":"DNA replication","na":1,"nb":2,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"],["other/single_stranded_dna_binding_protein_complex.html","single-stranded DNA-binding protein complex"]]},{"id":"GO:0009252","l":"peptidoglycan biosynthetic process","na":1,"nb":2,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"]],"b":[["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/elongasome.html","elongasome"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":1,"nb":2,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":2,"nb":1,"a":[["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]],"b":[["other/cellulosome.html","cellulosome"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus ATCC 27405","na":2,"nb":1,"a":[["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["other/cellulosome.html","cellulosome"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":2,"nb":1,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"]],"b":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":1,"nb":2,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]]},{"id":"NCBITaxon:4890","l":"Ascomycota","na":1,"nb":2,"a":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["other/nuclear_pore_central_transport_channel.html","nuclear pore central transport channel"],["other/nuclear_pore_linkers.html","nuclear pore linkers"]]},{"id":"CHEBI:16838","l":"polyphosphate","na":1,"nb":1,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"]],"b":[["membrane_organelle/acidocalcisome.html","acidocalcisome"]]},{"id":"CHEBI:17855","l":"triglyceride","na":1,"nb":1,"a":[["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["inclusion/lipid_droplet.html","lipid droplet"]]},{"id":"CHEBI:18248","l":"iron atom","na":1,"nb":1,"a":[["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"]]},{"id":"CHEBI:28087","l":"glycogen","na":1,"nb":1,"a":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]],"b":[["inclusion/glycogen_granule.html","glycogen granule"]]},{"id":"CHEBI:33403","l":"elemental sulfur","na":1,"nb":1,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["inclusion/sulfur_globule.html","sulfur globule"]]},{"id":"CHEBI:53388","l":"poly(hydroxybutyrate)","na":1,"nb":1,"a":[["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"]],"b":[["inclusion/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]]},{"id":"GO:0006412","l":"translation","na":1,"nb":1,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["ribonucleoprotein/ribosome.html","ribosome"]]},{"id":"GO:0055085","l":"transmembrane transport","na":1,"nb":1,"a":[["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"]],"b":[["envelope/plasma_membrane.html","plasma membrane"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":1,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]],"b":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]]},{"id":"NCBITaxon:203691","l":"Spirochaetota","na":1,"nb":1,"a":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":1,"nb":1,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/CommunityMech--NaturalProductMech.json b/assets/fleet/edges/CommunityMech--NaturalProductMech.json index 600b374..fd7d8ee 100644 --- a/assets/fleet/edges/CommunityMech--NaturalProductMech.json +++ b/assets/fleet/edges/CommunityMech--NaturalProductMech.json @@ -1 +1 @@ -{"a":"CommunityMech","b":"NaturalProductMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","NaturalProductMech":"https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/natural_products/"},"n":128,"by":{"NCBITaxon":123,"CHEBI":5},"terms":[{"id":"NCBITaxon:286","l":"Pseudomonas","na":18,"nb":41,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"]],"b":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["alkaloids/tioguanine.yaml","tioguanine"],["amino_acids_and_peptides/napsamycin-c.yaml","napsamycin C"],["amino_acids_and_peptides/napsamycin-d.yaml","napsamycin D"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":16,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["amino_acids_and_peptides/ericin-s.yaml","ericin S"],["amino_acids_and_peptides/iturin.yaml","iturin"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":14,"nb":24,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":11,"nb":13,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["unclassified/bananamide-d.yaml","bananamide D"],["unclassified/bananamide-e.yaml","bananamide E"],["unclassified/bananamide-f.yaml","bananamide F"],["unclassified/bananamide-g.yaml","bananamide G"],["unclassified/lokisin.yaml","lokisin"],["unclassified/pseudodesmin-a.yaml","pseudodesmin A"]]},{"id":"NCBITaxon:1386","l":"Bacillus","na":16,"nb":9,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bogorol-a.yaml","bogorol A"],["amino_acids_and_peptides/koranimine.yaml","koranimine"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"],["amino_acids_and_peptides/rhizocticin-a.yaml","rhizocticin A"],["polyketides/difficidin.yaml","difficidin"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":9,"nb":12,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:492670","l":"Bacillus velezensis","na":8,"nb":8,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["polyketides/bacillaene.yaml","bacillaene"],["polyketides/difficidin.yaml","difficidin"],["polyketides/macrolactin-h.yaml","macrolactin H"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":6,"nb":116,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["alkaloids/altemicidin.yaml","altemicidin"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"],["alkaloids/aurachin-ss.yaml","aurachin SS"],["alkaloids/berninamycin-j.yaml","berninamycin J"],["alkaloids/berninamycin-k.yaml","berninamycin K"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":6,"nb":27,"a":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["alkaloids/pseudomonine.yaml","pseudomonine"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyreudione-c.yaml","pyreudione C"],["alkaloids/quinolobactin.yaml","quinolobactin"]]},{"id":"NCBITaxon:1883","l":"Streptomyces","na":5,"nb":438,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["Wheat_Consortium_C6.html","Wheat Synthetic Consortium C6"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/7-prenylisatin.yaml","7-prenylisatin"],["alkaloids/9-methylstreptimidone.yaml","9-methylstreptimidone"],["alkaloids/anisomycin.yaml","(−)-anisomycin"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":9,"nb":5,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]],"b":[["alkaloids/promysalin.yaml","promysalin"],["polyketides/pseudopyronine-a.yaml","pseudopyronine A"],["polyketides/pseudopyronine-b.yaml","pseudopyronine B"],["unclassified/putisolvin-iii.yaml","putisolvin III"],["unclassified/putisolvin-v.yaml","putisolvin V"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":7,"nb":4,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["alkaloids/zwittermicin-a.yaml","zwittermicin A"],["amino_acids_and_peptides/livipeptin.yaml","Livipeptin"],["carbohydrates/tunicamycin.yaml","tunicamycin"],["unclassified/cereulide.yaml","cereulide"]]},{"id":"NCBITaxon:32008","l":"Burkholderia","na":4,"nb":6,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["polyketides/necroxime-a.yaml","necroxime A"],["polyketides/necroxime-c.yaml","necroxime C"],["polyketides/necroxime-d.yaml","necroxime D"],["polyketides/thailanstatin-a.yaml","thailanstatin A"],["unclassified/necroxime-b.yaml","necroxime B"],["unclassified/spliceostatin.yaml","spliceostatin"]]},{"id":"NCBITaxon:5052","l":"Aspergillus","na":3,"nb":18,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["alkaloids/psychrophilin-e.yaml","psychrophilin E"],["alkaloids/terrequinone-a.yaml","terrequinone A"],["fatty_acids/himeic-acid-a.yaml","himeic acid A"],["polyketides/asperlin.yaml","(+)-asperlin"],["polyketides/geodin.yaml","geodin"],["polyketides/mycophenolic-acid.yaml","mycophenolic acid"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":3,"nb":11,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["amino_acids_and_peptides/ferrichrome.yaml","ferrichrome"],["polyketides/1-2-3-5-10-tetrahydroxy-7-methoxy-4-oxo-1-2-3-4-tetrahydroanthracen-2-yl-pentane.yaml","1-(2,3,5,10-tetrahydroxy-7-methoxy-4-oxo-1,2,3,4-tetrahydroanthracen-2-yl)pentane-2,4-dione"],["polyketides/azanigerone-a.yaml","azanigerone A"],["polyketides/campyrone-b.yaml","campyrone B"],["polyketides/desmethyl-tan-1612.yaml","desmethyl TAN-1612"],["polyketides/fumonisin-b2.yaml","fumonisin B2"]]},{"id":"NCBITaxon:5544","l":"Trichoderma harzianum","na":5,"nb":3,"a":[["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"],["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"],["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["polyketides/1-2-dehydropenicillide.yaml","1,2-dehydropenicillide"],["polyketides/harziphilone.yaml","harziphilone"],["unclassified/harzianopyridone.yaml","harzianopyridone"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":4,"nb":3,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]],"b":[["unclassified/leuvalin.yaml","leuvalin"],["unclassified/mutanocyclin.yaml","mutanocyclin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":4,"nb":3,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"],["amino_acids_and_peptides/lacticin-z.yaml","lacticin Z"],["amino_acids_and_peptides/nisin-a.yaml","nisin A"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":3,"nb":3,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["amino_acids_and_peptides/polymyxin-b.yaml","polymyxin B"],["amino_acids_and_peptides/polymyxin.yaml","polymyxin"],["unclassified/fusaricidin-b.yaml","fusaricidin B"]]},{"id":"NCBITaxon:5507","l":"Fusarium oxysporum","na":2,"nb":11,"a":[["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["alkaloids/fusaric-acid.yaml","fusaric acid"],["polyketides/bikaverin.yaml","bikaverin"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"],["polyketides/fumonisin-c1.yaml","Fumonisin C1"],["polyketides/fumonisin-c2.yaml","Fumonisin C2"],["polyketides/fumonisin-c3.yaml","Fumonisin C3"]]},{"id":"NCBITaxon:3702","l":"Arabidopsis thaliana","na":2,"nb":10,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/itaconic-acid.yaml","itaconic acid"],["terpenoids/ent-quiannulatene.yaml","(-)-ent-quiannulatene"],["terpenoids/euphol.yaml","euphol"],["terpenoids/marneral.yaml","marneral"],["terpenoids/thaliandiol.yaml","thaliandiol"]]},{"id":"NCBITaxon:4577","l":"Zea mays","na":2,"nb":6,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"]],"b":[["alkaloids/dimboa.yaml","DIMBOA"],["polyketides/emodin.yaml","emodin"],["terpenoids/zealexin-a1.yaml","zealexin A1"],["terpenoids/zealexin-b3.yaml","zealexin B3"],["terpenoids/zealexin-c2.yaml","zealexin C2"],["unclassified/aflatoxin.yaml","aflatoxin"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":5,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"],["unclassified/leuvalin.yaml","leuvalin"],["unclassified/phevalin.yaml","phevalin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:1521","l":"Ruminiclostridium cellulolyticum","na":4,"nb":2,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["alkaloids/closthioamide.yaml","closthioamide"],["amino_acids_and_peptides/rc-aip1.yaml","Rc-AIP1"]]},{"id":"NCBITaxon:1889","l":"Streptomyces ambofaciens","na":2,"nb":4,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["alkaloids/congocidine.yaml","congocidine"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["polyketides/spiramycin.yaml","spiramycin"],["polyketides/stambomycin-a.yaml","stambomycin A"]]},{"id":"NCBITaxon:32049","l":"Picosynechococcus sp. PCC 7002","na":2,"nb":4,"a":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"]],"b":[["alkaloids/synechobactin-a.yaml","synechobactin A"],["alkaloids/synechobactin-b.yaml","synechobactin B"],["alkaloids/synechobactin-c.yaml","synechobactin C"],["fatty_acids/nonadec-1-ene.yaml","nonadec-1-ene"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":3,"nb":2,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"],["carbohydrates/oxetanocin-a.yaml","oxetanocin A"]]},{"id":"NCBITaxon:149698","l":"Massilia","na":3,"nb":2,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]],"b":[["unclassified/empedopeptin.yaml","empedopeptin"],["unclassified/massiliachelin.yaml","Massiliachelin"]]},{"id":"NCBITaxon:379","l":"Rhizobium","na":3,"nb":2,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["alkaloids/sesbanimide-c.yaml","sesbanimide C"],["amino_acids_and_peptides/syringolin-a-2.yaml","syringolin A"]]},{"id":"NCBITaxon:44249","l":"Paenibacillus","na":3,"nb":2,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["alkaloids/paenilamicin.yaml","paenilamicin"],["unclassified/paenibacterin.yaml","paenibacterin"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":3,"nb":2,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["terpenoids/mk-8.yaml","MK-8"]]},{"id":"NCBITaxon:55080","l":"Brevibacillus","na":3,"nb":2,"a":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"]],"b":[["alkaloids/ulbactin-f.yaml","ulbactin F"],["alkaloids/ulbactin-g.yaml","ulbactin G"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":2,"nb":2,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]],"b":[["alkaloids/biotin.yaml","biotin"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":2,"nb":2,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["unclassified/andalusicin-a.yaml","andalusicin A"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":2,"nb":2,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["alkaloids/agrobactin.yaml","agrobactin"],["amino_acids_and_peptides/aztreonam.yaml","aztreonam"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":2,"nb":2,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["alkaloids/acinetobactin.yaml","acinetobactin"],["amino_acids_and_peptides/fimsbactin-a.yaml","fimsbactin A"]]},{"id":"NCBITaxon:1873","l":"Micromonospora","na":1,"nb":49,"a":[["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"]],"b":[["alkaloids/diazaquinomycin-h.yaml","diazaquinomycin H"],["alkaloids/diazaquinomycin-j.yaml","diazaquinomycin J"],["alkaloids/diazepinomicin.yaml","diazepinomicin"],["alkaloids/microansamycin-i.yaml","microansamycin I"],["alkaloids/staurosporine.yaml","staurosporine"],["alkaloids/streptonigrin.yaml","streptonigrin"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":1,"nb":30,"a":[["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["amino_acids_and_peptides/ditryptophenaline.yaml","(-)-ditryptophenaline"],["amino_acids_and_peptides/imizoquin-a.yaml","imizoquin A"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":1,"nb":23,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/melanin.yaml","melanin"],["alkaloids/undecylprodigiosin.yaml","undecylprodigiosin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/sapb.yaml","SapB"]]},{"id":"NCBITaxon:5073","l":"Penicillium","na":1,"nb":20,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["alkaloids/citridone-a.yaml","citridone A"],["alkaloids/citridone-b-2.yaml","citridone B'"],["alkaloids/citridone-b.yaml","citridone B"],["alkaloids/communesin-b.yaml","communesin B"],["alkaloids/communesin-c.yaml","communesin C"],["alkaloids/communesin-d.yaml","communesin D"]]},{"id":"NCBITaxon:69488","l":"Penicillium simplicissimum","na":1,"nb":14,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"]],"b":[["polyketides/citreoviridin.yaml","citreoviridin"],["unclassified/andrastin-a.yaml","andrastin A"],["unclassified/okaramine-b.yaml","okaramine B"],["unclassified/okaramine-d.yaml","okaramine D"],["unclassified/paraherquamide.yaml","paraherquamide"],["unclassified/paraherquonin.yaml","paraherquonin"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":1,"nb":13,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/congocidine.yaml","congocidine"],["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]]},{"id":"NCBITaxon:1163","l":"Anabaena","na":1,"nb":11,"a":[["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"]],"b":[["alkaloids/anatoxin-a.yaml","anatoxin-a"],["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"],["alkaloids/saxitoxin.yaml","saxitoxin"],["alkaloids/schizokinen.yaml","schizokinen"],["amino_acids_and_peptides/anabaenopeptin.yaml","anabaenopeptin"],["amino_acids_and_peptides/anacyclamide-a10.yaml","anacyclamide A10"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":1,"nb":10,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["amino_acids_and_peptides/lipopeptide-8d1-1.yaml","lipopeptide 8D1-1"],["amino_acids_and_peptides/lipopeptide-8d1-2.yaml","lipopeptide 8D1-2"],["carbohydrates/amicetin.yaml","amicetin"],["carbohydrates/streptothricin-c.yaml","streptothricin C"],["carbohydrates/streptothricin-d.yaml","streptothricin D"],["carbohydrates/streptothricin-e.yaml","streptothricin E"]]},{"id":"NCBITaxon:1988","l":"Actinomadura","na":1,"nb":9,"a":[["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"]],"b":[["alkaloids/k-252a.yaml","K-252a"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["carbohydrates/2-chloropentostatin.yaml","2'-chloropentostatin"],["polyketides/actinospirol-a.yaml","actinospirol A"],["polyketides/actinospirol-b.yaml","actinospirol B"],["polyketides/maduralactomycin-a.yaml","maduralactomycin A"]]},{"id":"NCBITaxon:117187","l":"Fusarium verticillioides","na":1,"nb":8,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]],"b":[["alkaloids/dihydrofusarin-c.yaml","dihydrofusarin C"],["alkaloids/epi-fusarin-c.yaml","epi-fusarin C"],["alkaloids/fusaric-acid.yaml","fusaric acid"],["alkaloids/fusarin-c.yaml","fusarin C"],["alkaloids/fusarin-d.yaml","fusarin D"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"]]},{"id":"NCBITaxon:1827","l":"Rhodococcus","na":8,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]],"b":[["alkaloids/corynecin-iii.yaml","corynecin III"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":8,"nb":1,"a":[["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"],["Sedimenting_Arabinose_Glucose_Saccharomyces_Coculture.html","Sedimenting Arabinose-Glucose Saccharomyces Coculture"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":1,"nb":8,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["amino_acids_and_peptides/ferrichrome-2.yaml","ferrichrome"],["polyketides/2-acetyl-1-3-6-8-tetrahydroxynaphthalene.yaml","2-acetyl-1,3,6,8-tetrahydroxynaphthalene"],["polyketides/kojic-acid.yaml","kojic acid"],["terpenoids/aphidicolin.yaml","aphidicolin"],["unclassified/2-oxocyclopiazonic-acid.yaml","2-oxocyclopiazonic acid"],["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"NCBITaxon:1269","l":"Micrococcus","na":1,"nb":6,"a":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["alkaloids/limazepine-a.yaml","limazepine A"],["alkaloids/limazepine-c.yaml","limazepine C"],["alkaloids/limazepine-d.yaml","limazepine D"],["alkaloids/limazepine-e.yaml","limazepine E"],["alkaloids/limazepine-f.yaml","limazepine F"],["terpenoids/mk-8.yaml","MK-8"]]},{"id":"NCBITaxon:1920","l":"Streptomyces nigrescens","na":1,"nb":6,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["alkaloids/5athq-10a.yaml","5aTHQ-10a"],["alkaloids/5athq-9i.yaml","5aTHQ-9i"],["alkaloids/5athq-9n.yaml","5aTHQ-9n"],["alkaloids/stams-9i.yaml","STAMs-9i"],["alkaloids/stams-9n.yaml","STAMs-9n"],["polyketides/phoslactomycin-b.yaml","phoslactomycin B"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":1,"nb":5,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["alkaloids/aminochelin.yaml","aminochelin"],["alkaloids/azotochelin.yaml","azotochelin"],["alkaloids/protochelin.yaml","protochelin"],["amino_acids_and_peptides/azotobactin-d.yaml","azotobactin D"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":1,"nb":5,"a":[["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/andrimid.yaml","andrimid"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/pantocin-a.yaml","pantocin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:101028","l":"Fusarium pseudograminearum","na":1,"nb":4,"a":[["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["alkaloids/8-oxo-fusatin.yaml","8-oxo-fusatin"],["alkaloids/8-oxo-isopentenyladenine.yaml","8-oxo-isopentenyladenine"],["alkaloids/fusatin.yaml","fusatin"],["alkaloids/fusatinic-acid.yaml","fusatinic acid"]]},{"id":"NCBITaxon:1179","l":"Desmonostoc muscorum","na":1,"nb":4,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["amino_acids_and_peptides/muscoride-a.yaml","muscoride A"],["unclassified/desmamide-a.yaml","desmamide A"],["unclassified/desmamide-b.yaml","desmamide B"],["unclassified/desmamide-c.yaml","desmamide C"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":4,"nb":1,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"],["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":4,"nb":1,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["amino_acids_and_peptides/bacitracin.yaml","bacitracin"]]},{"id":"NCBITaxon:237","l":"Flavobacterium","na":4,"nb":1,"a":[["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"]]},{"id":"NCBITaxon:2745","l":"Halomonas","na":1,"nb":4,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["amino_acids_and_peptides/potashchelin-a.yaml","potashchelin A"],["amino_acids_and_peptides/potashchelin-b.yaml","potashchelin B"],["amino_acids_and_peptides/potashchelin-c.yaml","potashchelin C"],["amino_acids_and_peptides/potashchelin-d.yaml","potashchelin D"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":1,"nb":4,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["unclassified/vacidobactin-a.yaml","vacidobactin A"],["unclassified/vacidobactin-b.yaml","vacidobactin B"],["unclassified/variobactin-a.yaml","variobactin A"],["unclassified/variobactin-b.yaml","variobactin B"]]},{"id":"NCBITaxon:414878","l":"Catenulispora","na":1,"nb":4,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"]],"b":[["polyketides/catenulisporolide-a.yaml","catenulisporolide A"],["polyketides/catenulisporolide-b.yaml","catenulisporolide B"],["polyketides/catenulisporolide-c.yaml","catenulisporolide C"],["polyketides/catenulisporolide-d.yaml","catenulisporolide D"]]},{"id":"NCBITaxon:6239","l":"Caenorhabditis elegans","na":1,"nb":4,"a":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"]],"b":[["alkaloids/biotin.yaml","biotin"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/itaconic-acid.yaml","itaconic acid"],["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":4,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["fatty_acids/galactosylceramide.yaml","α-galactosylceramide"]]},{"id":"CHEBI:15956","l":"biotin","na":3,"nb":1,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"NCBITaxon:1125","l":"Microcystis","na":1,"nb":3,"a":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"]],"b":[["amino_acids_and_peptides/microcystin-lr.yaml","microcystin-LR"],["amino_acids_and_peptides/piricyclamide-7005e1.yaml","piricyclamide 7005E1"],["unclassified/cyanopeptolin.yaml","cyanopeptolin"]]},{"id":"NCBITaxon:1129","l":"Synechococcus","na":1,"nb":3,"a":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]],"b":[["alkaloids/synechobactin-a.yaml","synechobactin A"],["alkaloids/synechobactin-b.yaml","synechobactin B"],["alkaloids/synechobactin-c.yaml","synechobactin C"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":1,"nb":3,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["amino_acids_and_peptides/epidermin.yaml","epidermin"],["amino_acids_and_peptides/epilancin-15x.yaml","epilancin 15x"],["amino_acids_and_peptides/pep5.yaml","pep5"]]},{"id":"NCBITaxon:22","l":"Shewanella","na":3,"nb":1,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Shewanella_Denitrifying_Richness_SynComs.html","Shewanella Denitrifying Richness SynComs"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"NCBITaxon:222","l":"Achromobacter","na":3,"nb":1,"a":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":1,"nb":3,"a":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"]],"b":[["alkaloids/cepaciachelin.yaml","cepaciachelin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["terpenoids/hopene.yaml","hopene"]]},{"id":"NCBITaxon:29442","l":"Pseudomonas tolaasii","na":1,"nb":3,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["unclassified/tolaasin-a.yaml","tolaasin A"],["unclassified/tolaasin-f.yaml","tolaasin F"],["unclassified/tolaasin-i.yaml","tolaasin I"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":3,"nb":1,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"NCBITaxon:34305","l":"Lotus japonicus","na":1,"nb":3,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["amino_acids_and_peptides/linamarin.yaml","linamarin"],["amino_acids_and_peptides/lotaustralin.yaml","lotaustralin"],["terpenoids/lupeol.yaml","lupeol"]]},{"id":"NCBITaxon:380021","l":"Pseudomonas protegens","na":1,"nb":3,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"],["unclassified/pf-5-pyoverdine.yaml","Pf-5 pyoverdine"]]},{"id":"NCBITaxon:3847","l":"Glycine max","na":1,"nb":3,"a":[["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["alkaloids/biotin.yaml","biotin"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]]},{"id":"NCBITaxon:4081","l":"Solanum lycopersicum","na":1,"nb":3,"a":[["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["fatty_acids/falcarindiol.yaml","falcarindiol"],["terpenoids/lycosantalonol.yaml","lycosantalonol"],["terpenoids/phellandrene.yaml","β-phellandrene"]]},{"id":"NCBITaxon:4530","l":"Oryza sativa","na":1,"nb":3,"a":[["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/nonadec-1-ene.yaml","nonadec-1-ene"],["terpenoids/phytocassane.yaml","phytocassane"]]},{"id":"NCBITaxon:547","l":"Enterobacter","na":3,"nb":1,"a":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["amino_acids_and_peptides/andrimid.yaml","andrimid"]]},{"id":"NCBITaxon:587753","l":"Pseudomonas chlororaphis","na":3,"nb":1,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"NCBITaxon:68239","l":"Streptomyces mirabilis","na":1,"nb":3,"a":[["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["alkaloids/azodyrecin-a.yaml","Azodyrecin A"],["alkaloids/azodyrecin-b.yaml","Azodyrecin B"],["alkaloids/azodyrecin-c.yaml","Azodyrecin C"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":1,"nb":3,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"],["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"],["unclassified/telomestatin.yaml","telomestatin"]]},{"id":"NCBITaxon:1091494","l":"Methylotuvimicrobium alcaliphilum 20Z","na":2,"nb":1,"a":[["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:132919","l":"Rhodococcus jostii","na":1,"nb":2,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["amino_acids_and_peptides/lariatin.yaml","lariatin"],["unclassified/rhodochelin.yaml","rhodochelin"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":2,"nb":1,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]]},{"id":"NCBITaxon:1663","l":"Arthrobacter","na":2,"nb":1,"a":[["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["unclassified/ws9326a.yaml","WS9326A"]]},{"id":"NCBITaxon:1696","l":"Brevibacterium","na":2,"nb":1,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["alkaloids/1-6-phenazinedimethanol.yaml","1,6-phenazinedimethanol"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":2,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":2,"nb":1,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"]],"b":[["alkaloids/parabactin.yaml","parabactin"]]},{"id":"NCBITaxon:269797","l":"Methanosarcina barkeri str. Fusaro","na":2,"nb":1,"a":[["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["alkaloids/coenzyme-f430.yaml","coenzyme F430"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":2,"nb":1,"a":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:29305","l":"Streptomyces griseoincarnatus","na":1,"nb":2,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["polyketides/grincamycin.yaml","grincamycin"],["polyketides/resistomycin.yaml","resistomycin"]]},{"id":"NCBITaxon:391619","l":"Phaeobacter inhibens DSM 17395","na":1,"nb":2,"a":[["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"]],"b":[["shikimates_and_phenylpropanoids/hydroxytropodithietic-acid.yaml","hydroxytropodithietic acid"],["shikimates_and_phenylpropanoids/tropodithietic-acid.yaml","tropodithietic acid"]]},{"id":"NCBITaxon:511145","l":"Escherichia coli str. K-12 substr. MG1655","na":2,"nb":1,"a":[["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["unclassified/enterobactin.yaml","enterobactin"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":2,"nb":1,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["unclassified/antimycin-a1b.yaml","antimycin A1B"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":1,"nb":2,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["amino_acids_and_peptides/aerobactin.yaml","aerobactin"],["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:613","l":"Serratia","na":1,"nb":2,"a":[["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["alkaloids/serratiochelin-b.yaml","serratiochelin B"],["alkaloids/serratiochelin-c.yaml","serratiochelin C"]]},{"id":"NCBITaxon:644","l":"Aeromonas hydrophila","na":2,"nb":1,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["amino_acids_and_peptides/amonabactin-p-750.yaml","amonabactin P 750"]]},{"id":"NCBITaxon:67356","l":"Streptomyces resistomycificus","na":1,"nb":2,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["polyketides/resistoflavine.yaml","resistoflavine"],["polyketides/resistomycin.yaml","resistomycin"]]},{"id":"NCBITaxon:68","l":"Lysobacter","na":1,"nb":2,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["unclassified/lysobactin.yaml","lysobactin"],["unclassified/lysocin-e.yaml","lysocin E"]]},{"id":"NCBITaxon:68264","l":"Streptomyces rishiriensis","na":1,"nb":2,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["shikimates_and_phenylpropanoids/coumermycin-a1.yaml","coumermycin A1"],["unclassified/lactonamycin.yaml","lactonamycin"]]},{"id":"NCBITaxon:80866","l":"Delftia acidovorans","na":1,"nb":2,"a":[["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["amino_acids_and_peptides/delftibactin-a.yaml","delftibactin A"],["amino_acids_and_peptides/delftibactin-b.yaml","delftibactin B"]]},{"id":"CHEBI:134612","l":"staphyloferrin B","na":1,"nb":1,"a":[["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"]]},{"id":"CHEBI:32079","l":"pyrrolnitrin","na":1,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"CHEBI:78688","l":"2,4-diacetylphloroglucinol","na":1,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"]]},{"id":"CHEBI:8653","l":"pyocyanine","na":1,"nb":1,"a":[["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["alkaloids/pyocyanine.yaml","pyocyanine"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":1,"nb":1,"a":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["unclassified/rhodochelin.yaml","rhodochelin"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":1,"nb":1,"a":[["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"]],"b":[["alkaloids/molybdenum-cofactor.yaml","molybdenum cofactor"]]},{"id":"NCBITaxon:1142","l":"Synechocystis","na":1,"nb":1,"a":[["Dairy_Wastewater_Algal_Cyanobacterial_Cultivation_Panel.html","Dairy Wastewater Algal-Cyanobacterial Cultivation Panel"]],"b":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]]},{"id":"NCBITaxon:1165","l":"Anabaena cylindrica","na":1,"nb":1,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["amino_acids_and_peptides/anachelin.yaml","anachelin"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":1,"nb":1,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["amino_acids_and_peptides/salivaricin-d.yaml","salivaricin D"]]},{"id":"NCBITaxon:135461","l":"Bacillus subtilis subsp. subtilis","na":1,"nb":1,"a":[["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["unclassified/fengycin.yaml","fengycin"]]},{"id":"NCBITaxon:1501433","l":"Kamptonema","na":1,"nb":1,"a":[["Microalgae_Cyanobacteria_Bioactive_Peptide_Consortia.html","Microalgae-Cyanobacteria Bioactive Peptide Consortia"]],"b":[["amino_acids_and_peptides/landornamide-a.yaml","landornamide A"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":1,"nb":1,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["amino_acids_and_peptides/cutimycin.yaml","cutimycin"]]},{"id":"NCBITaxon:226","l":"Alteromonas","na":1,"nb":1,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["unclassified/marinostatin.yaml","marinostatin"]]},{"id":"NCBITaxon:2433","l":"Roseobacter","na":1,"nb":1,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["shikimates_and_phenylpropanoids/tropodithietic-acid.yaml","tropodithietic acid"]]},{"id":"NCBITaxon:4097","l":"Nicotiana tabacum","na":1,"nb":1,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"]],"b":[["terpenoids/capsidiol.yaml","capsidiol"]]},{"id":"NCBITaxon:4547","l":"Saccharum officinarum","na":1,"nb":1,"a":[["SynCom_MetG2_Rhizobacteria_Sugarcane_Stress_Resilience.html","SynCom MetG2 Rhizobacteria Sugarcane Stress Resilience"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"]]},{"id":"NCBITaxon:47251","l":"Leptolyngbya","na":1,"nb":1,"a":[["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"]]},{"id":"NCBITaxon:4751","l":"Fungi","na":1,"nb":1,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["shikimates_and_phenylpropanoids/atromentin.yaml","atromentin"]]},{"id":"NCBITaxon:5094","l":"Talaromyces","na":1,"nb":1,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["unclassified/chrodrimanin-b.yaml","chrodrimanin B"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":1,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:61624","l":"Paenibacillus mucilaginosus","na":1,"nb":1,"a":[["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["amino_acids_and_peptides/bacillopaline.yaml","bacillopaline"]]},{"id":"NCBITaxon:648","l":"Aeromonas caviae","na":1,"nb":1,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:67372","l":"Streptomyces variabilis","na":1,"nb":1,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["polyketides/resistomycin.yaml","resistomycin"]]},{"id":"NCBITaxon:68274","l":"Streptomyces tauricus","na":1,"nb":1,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["polyketides/cinerubin-b.yaml","cinerubin B"]]},{"id":"NCBITaxon:86265","l":"Pseudomonas thivervalensis","na":1,"nb":1,"a":[["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"]],"b":[["amino_acids_and_peptides/histicorrugatin.yaml","histicorrugatin"]]},{"id":"NCBITaxon:96241","l":"Bacillus spizizenii","na":1,"nb":1,"a":[["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"]],"b":[["amino_acids_and_peptides/entianin.yaml","entianin"]]},{"id":"NCBITaxon:986","l":"Flavobacterium johnsoniae","na":1,"nb":1,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["polyketides/flexirubin.yaml","flexirubin"]]}]} \ No newline at end of file +{"a":"CommunityMech","b":"NaturalProductMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","NaturalProductMech":"https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/natural_products/"},"n":128,"by":{"NCBITaxon":123,"CHEBI":5},"terms":[{"id":"NCBITaxon:286","l":"Pseudomonas","na":18,"nb":41,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"]],"b":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["alkaloids/tioguanine.yaml","tioguanine"],["amino_acids_and_peptides/napsamycin-c.yaml","napsamycin C"],["amino_acids_and_peptides/napsamycin-d.yaml","napsamycin D"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":16,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["amino_acids_and_peptides/ericin-s.yaml","ericin S"],["amino_acids_and_peptides/iturin.yaml","iturin"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":14,"nb":24,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":11,"nb":13,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["unclassified/bananamide-d.yaml","bananamide D"],["unclassified/bananamide-e.yaml","bananamide E"],["unclassified/bananamide-f.yaml","bananamide F"],["unclassified/bananamide-g.yaml","bananamide G"],["unclassified/lokisin.yaml","lokisin"],["unclassified/pseudodesmin-a.yaml","pseudodesmin A"]]},{"id":"NCBITaxon:1386","l":"Bacillus","na":16,"nb":9,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bogorol-a.yaml","bogorol A"],["amino_acids_and_peptides/koranimine.yaml","koranimine"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"],["amino_acids_and_peptides/rhizocticin-a.yaml","rhizocticin A"],["polyketides/difficidin.yaml","difficidin"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":9,"nb":12,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:492670","l":"Bacillus velezensis","na":8,"nb":8,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["polyketides/bacillaene.yaml","bacillaene"],["polyketides/difficidin.yaml","difficidin"],["polyketides/macrolactin-h.yaml","macrolactin H"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":6,"nb":116,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["alkaloids/altemicidin.yaml","altemicidin"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"],["alkaloids/aurachin-ss.yaml","aurachin SS"],["alkaloids/berninamycin-j.yaml","berninamycin J"],["alkaloids/berninamycin-k.yaml","berninamycin K"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":6,"nb":27,"a":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["alkaloids/pseudomonine.yaml","pseudomonine"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyreudione-c.yaml","pyreudione C"],["alkaloids/quinolobactin.yaml","quinolobactin"]]},{"id":"NCBITaxon:1883","l":"Streptomyces","na":5,"nb":438,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["Wheat_Consortium_C6.html","Wheat Synthetic Consortium C6"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/7-prenylisatin.yaml","7-prenylisatin"],["alkaloids/9-methylstreptimidone.yaml","9-methylstreptimidone"],["alkaloids/anisomycin.yaml","(−)-anisomycin"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":9,"nb":5,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]],"b":[["alkaloids/promysalin.yaml","promysalin"],["polyketides/pseudopyronine-a.yaml","pseudopyronine A"],["polyketides/pseudopyronine-b.yaml","pseudopyronine B"],["unclassified/putisolvin-iii.yaml","putisolvin III"],["unclassified/putisolvin-v.yaml","putisolvin V"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":7,"nb":4,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["alkaloids/zwittermicin-a.yaml","zwittermicin A"],["amino_acids_and_peptides/livipeptin.yaml","Livipeptin"],["carbohydrates/tunicamycin.yaml","tunicamycin"],["unclassified/cereulide.yaml","cereulide"]]},{"id":"NCBITaxon:32008","l":"Burkholderia","na":4,"nb":6,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["polyketides/necroxime-a.yaml","necroxime A"],["polyketides/necroxime-c.yaml","necroxime C"],["polyketides/necroxime-d.yaml","necroxime D"],["polyketides/thailanstatin-a.yaml","thailanstatin A"],["unclassified/necroxime-b.yaml","necroxime B"],["unclassified/spliceostatin.yaml","spliceostatin"]]},{"id":"NCBITaxon:5052","l":"Aspergillus","na":3,"nb":18,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["alkaloids/psychrophilin-e.yaml","psychrophilin E"],["alkaloids/terrequinone-a.yaml","terrequinone A"],["fatty_acids/himeic-acid-a.yaml","himeic acid A"],["polyketides/asperlin.yaml","(+)-asperlin"],["polyketides/geodin.yaml","geodin"],["polyketides/mycophenolic-acid.yaml","mycophenolic acid"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":3,"nb":11,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["amino_acids_and_peptides/ferrichrome.yaml","ferrichrome"],["polyketides/1-2-3-5-10-tetrahydroxy-7-methoxy-4-oxo-1-2-3-4-tetrahydroanthracen-2-yl-pentane.yaml","1-(2,3,5,10-tetrahydroxy-7-methoxy-4-oxo-1,2,3,4-tetrahydroanthracen-2-yl)pentane-2,4-dione"],["polyketides/azanigerone-a.yaml","azanigerone A"],["polyketides/campyrone-b.yaml","campyrone B"],["polyketides/desmethyl-tan-1612.yaml","desmethyl TAN-1612"],["polyketides/fumonisin-b2.yaml","fumonisin B2"]]},{"id":"NCBITaxon:5544","l":"Trichoderma harzianum","na":5,"nb":3,"a":[["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"],["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"],["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["polyketides/1-2-dehydropenicillide.yaml","1,2-dehydropenicillide"],["polyketides/harziphilone.yaml","harziphilone"],["unclassified/harzianopyridone.yaml","harzianopyridone"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":4,"nb":3,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]],"b":[["unclassified/leuvalin.yaml","leuvalin"],["unclassified/mutanocyclin.yaml","mutanocyclin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":4,"nb":3,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"],["amino_acids_and_peptides/lacticin-z.yaml","lacticin Z"],["amino_acids_and_peptides/nisin-a.yaml","nisin A"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":3,"nb":3,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["amino_acids_and_peptides/polymyxin-b.yaml","polymyxin B"],["amino_acids_and_peptides/polymyxin.yaml","polymyxin"],["unclassified/fusaricidin-b.yaml","fusaricidin B"]]},{"id":"NCBITaxon:5507","l":"Fusarium oxysporum","na":2,"nb":11,"a":[["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["alkaloids/fusaric-acid.yaml","fusaric acid"],["polyketides/bikaverin.yaml","bikaverin"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"],["polyketides/fumonisin-c1.yaml","Fumonisin C1"],["polyketides/fumonisin-c2.yaml","Fumonisin C2"],["polyketides/fumonisin-c3.yaml","Fumonisin C3"]]},{"id":"NCBITaxon:3702","l":"Arabidopsis thaliana","na":2,"nb":10,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/itaconic-acid.yaml","itaconic acid"],["terpenoids/ent-quiannulatene.yaml","(-)-ent-quiannulatene"],["terpenoids/euphol.yaml","euphol"],["terpenoids/marneral.yaml","marneral"],["terpenoids/thaliandiol.yaml","thaliandiol"]]},{"id":"NCBITaxon:4577","l":"Zea mays","na":2,"nb":6,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"]],"b":[["alkaloids/dimboa.yaml","DIMBOA"],["polyketides/emodin.yaml","emodin"],["terpenoids/zealexin-a1.yaml","zealexin A1"],["terpenoids/zealexin-b3.yaml","zealexin B3"],["terpenoids/zealexin-c2.yaml","zealexin C2"],["unclassified/aflatoxin.yaml","aflatoxin"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":5,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"],["unclassified/leuvalin.yaml","leuvalin"],["unclassified/phevalin.yaml","phevalin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:1521","l":"Ruminiclostridium cellulolyticum","na":4,"nb":2,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["alkaloids/closthioamide.yaml","closthioamide"],["amino_acids_and_peptides/rc-aip1.yaml","Rc-AIP1"]]},{"id":"NCBITaxon:1889","l":"Streptomyces ambofaciens","na":2,"nb":4,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["alkaloids/congocidine.yaml","congocidine"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["polyketides/spiramycin.yaml","spiramycin"],["polyketides/stambomycin-a.yaml","stambomycin A"]]},{"id":"NCBITaxon:32049","l":"Picosynechococcus sp. PCC 7002","na":2,"nb":4,"a":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"]],"b":[["alkaloids/synechobactin-a.yaml","synechobactin A"],["alkaloids/synechobactin-b.yaml","synechobactin B"],["alkaloids/synechobactin-c.yaml","synechobactin C"],["fatty_acids/nonadec-1-ene.yaml","nonadec-1-ene"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":3,"nb":2,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"],["carbohydrates/oxetanocin-a.yaml","oxetanocin A"]]},{"id":"NCBITaxon:149698","l":"Massilia","na":3,"nb":2,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]],"b":[["unclassified/empedopeptin.yaml","empedopeptin"],["unclassified/massiliachelin.yaml","Massiliachelin"]]},{"id":"NCBITaxon:379","l":"Rhizobium","na":3,"nb":2,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["alkaloids/sesbanimide-c.yaml","sesbanimide C"],["amino_acids_and_peptides/syringolin-a-2.yaml","syringolin A"]]},{"id":"NCBITaxon:44249","l":"Paenibacillus","na":3,"nb":2,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["alkaloids/paenilamicin.yaml","paenilamicin"],["unclassified/paenibacterin.yaml","paenibacterin"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":3,"nb":2,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["terpenoids/mk-8.yaml","MK-8"]]},{"id":"NCBITaxon:55080","l":"Brevibacillus","na":3,"nb":2,"a":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"]],"b":[["alkaloids/ulbactin-f.yaml","ulbactin F"],["alkaloids/ulbactin-g.yaml","ulbactin G"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":2,"nb":2,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]],"b":[["alkaloids/biotin.yaml","biotin"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":2,"nb":2,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["unclassified/andalusicin-a.yaml","andalusicin A"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":2,"nb":2,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["alkaloids/agrobactin.yaml","agrobactin"],["amino_acids_and_peptides/aztreonam.yaml","aztreonam"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":2,"nb":2,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["alkaloids/acinetobactin.yaml","acinetobactin"],["amino_acids_and_peptides/fimsbactin-a.yaml","fimsbactin A"]]},{"id":"NCBITaxon:1873","l":"Micromonospora","na":1,"nb":49,"a":[["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"]],"b":[["alkaloids/diazaquinomycin-h.yaml","diazaquinomycin H"],["alkaloids/diazaquinomycin-j.yaml","diazaquinomycin J"],["alkaloids/diazepinomicin.yaml","diazepinomicin"],["alkaloids/microansamycin-i.yaml","microansamycin I"],["alkaloids/staurosporine.yaml","staurosporine"],["alkaloids/streptonigrin.yaml","streptonigrin"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":1,"nb":30,"a":[["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["amino_acids_and_peptides/ditryptophenaline.yaml","(-)-ditryptophenaline"],["amino_acids_and_peptides/imizoquin-a.yaml","imizoquin A"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":1,"nb":23,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/melanin.yaml","melanin"],["alkaloids/undecylprodigiosin.yaml","undecylprodigiosin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/sapb.yaml","SapB"]]},{"id":"NCBITaxon:5073","l":"Penicillium","na":1,"nb":20,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["alkaloids/citridone-a.yaml","citridone A"],["alkaloids/citridone-b-2.yaml","citridone B'"],["alkaloids/citridone-b.yaml","citridone B"],["alkaloids/communesin-b.yaml","communesin B"],["alkaloids/communesin-c.yaml","communesin C"],["alkaloids/communesin-d.yaml","communesin D"]]},{"id":"NCBITaxon:69488","l":"Penicillium simplicissimum","na":1,"nb":14,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"]],"b":[["polyketides/citreoviridin.yaml","citreoviridin"],["unclassified/andrastin-a.yaml","andrastin A"],["unclassified/okaramine-b.yaml","okaramine B"],["unclassified/okaramine-d.yaml","okaramine D"],["unclassified/paraherquamide.yaml","paraherquamide"],["unclassified/paraherquonin.yaml","paraherquonin"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":1,"nb":13,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/congocidine.yaml","congocidine"],["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]]},{"id":"NCBITaxon:1163","l":"Anabaena","na":1,"nb":11,"a":[["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"]],"b":[["alkaloids/anatoxin-a.yaml","anatoxin-a"],["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"],["alkaloids/saxitoxin.yaml","saxitoxin"],["alkaloids/schizokinen.yaml","schizokinen"],["amino_acids_and_peptides/anabaenopeptin.yaml","anabaenopeptin"],["amino_acids_and_peptides/anacyclamide-a10.yaml","anacyclamide A10"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":1,"nb":10,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["amino_acids_and_peptides/lipopeptide-8d1-1.yaml","lipopeptide 8D1-1"],["amino_acids_and_peptides/lipopeptide-8d1-2.yaml","lipopeptide 8D1-2"],["carbohydrates/amicetin.yaml","amicetin"],["carbohydrates/streptothricin-c.yaml","streptothricin C"],["carbohydrates/streptothricin-d.yaml","streptothricin D"],["carbohydrates/streptothricin-e.yaml","streptothricin E"]]},{"id":"NCBITaxon:1988","l":"Actinomadura","na":1,"nb":9,"a":[["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"]],"b":[["alkaloids/k-252a.yaml","K-252a"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["carbohydrates/2-chloropentostatin.yaml","2'-chloropentostatin"],["polyketides/actinospirol-a.yaml","actinospirol A"],["polyketides/actinospirol-b.yaml","actinospirol B"],["polyketides/maduralactomycin-a.yaml","maduralactomycin A"]]},{"id":"NCBITaxon:117187","l":"Fusarium verticillioides","na":1,"nb":8,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]],"b":[["alkaloids/dihydrofusarin-c.yaml","dihydrofusarin C"],["alkaloids/epi-fusarin-c.yaml","epi-fusarin C"],["alkaloids/fusaric-acid.yaml","fusaric acid"],["alkaloids/fusarin-c.yaml","fusarin C"],["alkaloids/fusarin-d.yaml","fusarin D"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"]]},{"id":"NCBITaxon:1827","l":"Rhodococcus","na":8,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]],"b":[["alkaloids/corynecin-iii.yaml","corynecin III"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":8,"nb":1,"a":[["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"],["Sedimenting_Arabinose_Glucose_Saccharomyces_Coculture.html","Sedimenting Arabinose-Glucose Saccharomyces Coculture"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":1,"nb":8,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["amino_acids_and_peptides/ferrichrome-2.yaml","ferrichrome"],["polyketides/2-acetyl-1-3-6-8-tetrahydroxynaphthalene.yaml","2-acetyl-1,3,6,8-tetrahydroxynaphthalene"],["polyketides/kojic-acid.yaml","kojic acid"],["terpenoids/aphidicolin.yaml","aphidicolin"],["unclassified/2-oxocyclopiazonic-acid.yaml","2-oxocyclopiazonic acid"],["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"NCBITaxon:1269","l":"Micrococcus","na":1,"nb":6,"a":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["alkaloids/limazepine-a.yaml","limazepine A"],["alkaloids/limazepine-c.yaml","limazepine C"],["alkaloids/limazepine-d.yaml","limazepine D"],["alkaloids/limazepine-e.yaml","limazepine E"],["alkaloids/limazepine-f.yaml","limazepine F"],["terpenoids/mk-8.yaml","MK-8"]]},{"id":"NCBITaxon:1920","l":"Streptomyces nigrescens","na":1,"nb":6,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["alkaloids/5athq-10a.yaml","5aTHQ-10a"],["alkaloids/5athq-9i.yaml","5aTHQ-9i"],["alkaloids/5athq-9n.yaml","5aTHQ-9n"],["alkaloids/stams-9i.yaml","STAMs-9i"],["alkaloids/stams-9n.yaml","STAMs-9n"],["polyketides/phoslactomycin-b.yaml","phoslactomycin B"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":1,"nb":5,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["alkaloids/aminochelin.yaml","aminochelin"],["alkaloids/azotochelin.yaml","azotochelin"],["alkaloids/protochelin.yaml","protochelin"],["amino_acids_and_peptides/azotobactin-d.yaml","azotobactin D"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":1,"nb":5,"a":[["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/andrimid.yaml","andrimid"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/pantocin-a.yaml","pantocin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:101028","l":"Fusarium pseudograminearum","na":1,"nb":4,"a":[["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["alkaloids/8-oxo-fusatin.yaml","8-oxo-fusatin"],["alkaloids/8-oxo-isopentenyladenine.yaml","8-oxo-isopentenyladenine"],["alkaloids/fusatin.yaml","fusatin"],["alkaloids/fusatinic-acid.yaml","fusatinic acid"]]},{"id":"NCBITaxon:1179","l":"Desmonostoc muscorum","na":1,"nb":4,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["amino_acids_and_peptides/muscoride-a.yaml","muscoride A"],["unclassified/desmamide-a.yaml","desmamide A"],["unclassified/desmamide-b.yaml","desmamide B"],["unclassified/desmamide-c.yaml","desmamide C"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":4,"nb":1,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"],["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":4,"nb":1,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["amino_acids_and_peptides/bacitracin.yaml","bacitracin"]]},{"id":"NCBITaxon:237","l":"Flavobacterium","na":4,"nb":1,"a":[["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"]]},{"id":"NCBITaxon:2745","l":"Halomonas","na":1,"nb":4,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["amino_acids_and_peptides/potashchelin-a.yaml","potashchelin A"],["amino_acids_and_peptides/potashchelin-b.yaml","potashchelin B"],["amino_acids_and_peptides/potashchelin-c.yaml","potashchelin C"],["amino_acids_and_peptides/potashchelin-d.yaml","potashchelin D"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":1,"nb":4,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["unclassified/vacidobactin-a.yaml","vacidobactin A"],["unclassified/vacidobactin-b.yaml","vacidobactin B"],["unclassified/variobactin-a.yaml","variobactin A"],["unclassified/variobactin-b.yaml","variobactin B"]]},{"id":"NCBITaxon:414878","l":"Catenulispora","na":1,"nb":4,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"]],"b":[["polyketides/catenulisporolide-a.yaml","catenulisporolide A"],["polyketides/catenulisporolide-b.yaml","catenulisporolide B"],["polyketides/catenulisporolide-c.yaml","catenulisporolide C"],["polyketides/catenulisporolide-d.yaml","catenulisporolide D"]]},{"id":"NCBITaxon:6239","l":"Caenorhabditis elegans","na":1,"nb":4,"a":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"]],"b":[["alkaloids/biotin.yaml","biotin"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/itaconic-acid.yaml","itaconic acid"],["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":4,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["fatty_acids/galactosylceramide.yaml","α-galactosylceramide"]]},{"id":"CHEBI:15956","l":"biotin","na":3,"nb":1,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"NCBITaxon:1125","l":"Microcystis","na":1,"nb":3,"a":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"]],"b":[["amino_acids_and_peptides/microcystin-lr.yaml","microcystin-LR"],["amino_acids_and_peptides/piricyclamide-7005e1.yaml","piricyclamide 7005E1"],["unclassified/cyanopeptolin.yaml","cyanopeptolin"]]},{"id":"NCBITaxon:1129","l":"Synechococcus","na":1,"nb":3,"a":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]],"b":[["alkaloids/synechobactin-a.yaml","synechobactin A"],["alkaloids/synechobactin-b.yaml","synechobactin B"],["alkaloids/synechobactin-c.yaml","synechobactin C"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":1,"nb":3,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["amino_acids_and_peptides/epidermin.yaml","epidermin"],["amino_acids_and_peptides/epilancin-15x.yaml","epilancin 15x"],["amino_acids_and_peptides/pep5.yaml","pep5"]]},{"id":"NCBITaxon:22","l":"Shewanella","na":3,"nb":1,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Shewanella_Denitrifying_Richness_SynComs.html","Shewanella Denitrifying Richness SynComs"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"NCBITaxon:222","l":"Achromobacter","na":3,"nb":1,"a":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":1,"nb":3,"a":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"]],"b":[["alkaloids/cepaciachelin.yaml","cepaciachelin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["terpenoids/hopene.yaml","hopene"]]},{"id":"NCBITaxon:29442","l":"Pseudomonas tolaasii","na":1,"nb":3,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["unclassified/tolaasin-a.yaml","tolaasin A"],["unclassified/tolaasin-f.yaml","tolaasin F"],["unclassified/tolaasin-i.yaml","tolaasin I"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":3,"nb":1,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"NCBITaxon:34305","l":"Lotus japonicus","na":1,"nb":3,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["amino_acids_and_peptides/linamarin.yaml","linamarin"],["amino_acids_and_peptides/lotaustralin.yaml","lotaustralin"],["terpenoids/lupeol.yaml","lupeol"]]},{"id":"NCBITaxon:380021","l":"Pseudomonas protegens","na":1,"nb":3,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"],["unclassified/pf-5-pyoverdine.yaml","Pf-5 pyoverdine"]]},{"id":"NCBITaxon:3847","l":"Glycine max","na":1,"nb":3,"a":[["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["alkaloids/biotin.yaml","biotin"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]]},{"id":"NCBITaxon:4081","l":"Solanum lycopersicum","na":1,"nb":3,"a":[["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["fatty_acids/falcarindiol.yaml","falcarindiol"],["terpenoids/lycosantalonol.yaml","lycosantalonol"],["terpenoids/phellandrene.yaml","β-phellandrene"]]},{"id":"NCBITaxon:4530","l":"Oryza sativa","na":1,"nb":3,"a":[["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/nonadec-1-ene.yaml","nonadec-1-ene"],["terpenoids/phytocassane.yaml","phytocassane"]]},{"id":"NCBITaxon:547","l":"Enterobacter","na":3,"nb":1,"a":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["amino_acids_and_peptides/andrimid.yaml","andrimid"]]},{"id":"NCBITaxon:587753","l":"Pseudomonas chlororaphis","na":3,"nb":1,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"NCBITaxon:68239","l":"Streptomyces mirabilis","na":1,"nb":3,"a":[["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["alkaloids/azodyrecin-a.yaml","Azodyrecin A"],["alkaloids/azodyrecin-b.yaml","Azodyrecin B"],["alkaloids/azodyrecin-c.yaml","Azodyrecin C"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli K-12","na":1,"nb":3,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"],["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"],["unclassified/telomestatin.yaml","telomestatin"]]},{"id":"NCBITaxon:1091494","l":"Methylotuvimicrobium alcaliphilum 20Z","na":2,"nb":1,"a":[["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:132919","l":"Rhodococcus jostii","na":1,"nb":2,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["amino_acids_and_peptides/lariatin.yaml","lariatin"],["unclassified/rhodochelin.yaml","rhodochelin"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":2,"nb":1,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]]},{"id":"NCBITaxon:1663","l":"Arthrobacter","na":2,"nb":1,"a":[["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["unclassified/ws9326a.yaml","WS9326A"]]},{"id":"NCBITaxon:1696","l":"Brevibacterium","na":2,"nb":1,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["alkaloids/1-6-phenazinedimethanol.yaml","1,6-phenazinedimethanol"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":2,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":2,"nb":1,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"]],"b":[["alkaloids/parabactin.yaml","parabactin"]]},{"id":"NCBITaxon:269797","l":"Methanosarcina barkeri str. Fusaro","na":2,"nb":1,"a":[["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["alkaloids/coenzyme-f430.yaml","coenzyme F430"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":2,"nb":1,"a":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:29305","l":"Streptomyces griseoincarnatus","na":1,"nb":2,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["polyketides/grincamycin.yaml","grincamycin"],["polyketides/resistomycin.yaml","resistomycin"]]},{"id":"NCBITaxon:391619","l":"Phaeobacter inhibens DSM 17395","na":1,"nb":2,"a":[["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"]],"b":[["shikimates_and_phenylpropanoids/hydroxytropodithietic-acid.yaml","hydroxytropodithietic acid"],["shikimates_and_phenylpropanoids/tropodithietic-acid.yaml","tropodithietic acid"]]},{"id":"NCBITaxon:511145","l":"Escherichia coli str. K-12 substr. MG1655","na":2,"nb":1,"a":[["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["unclassified/enterobactin.yaml","enterobactin"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":2,"nb":1,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["unclassified/antimycin-a1b.yaml","antimycin A1B"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":1,"nb":2,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["amino_acids_and_peptides/aerobactin.yaml","aerobactin"],["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:613","l":"Serratia","na":1,"nb":2,"a":[["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["alkaloids/serratiochelin-b.yaml","serratiochelin B"],["alkaloids/serratiochelin-c.yaml","serratiochelin C"]]},{"id":"NCBITaxon:644","l":"Aeromonas hydrophila","na":2,"nb":1,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["amino_acids_and_peptides/amonabactin-p-750.yaml","amonabactin P 750"]]},{"id":"NCBITaxon:67356","l":"Streptomyces resistomycificus","na":1,"nb":2,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["polyketides/resistoflavine.yaml","resistoflavine"],["polyketides/resistomycin.yaml","resistomycin"]]},{"id":"NCBITaxon:68","l":"Lysobacter","na":1,"nb":2,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["unclassified/lysobactin.yaml","lysobactin"],["unclassified/lysocin-e.yaml","lysocin E"]]},{"id":"NCBITaxon:68264","l":"Streptomyces rishiriensis","na":1,"nb":2,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["shikimates_and_phenylpropanoids/coumermycin-a1.yaml","coumermycin A1"],["unclassified/lactonamycin.yaml","lactonamycin"]]},{"id":"NCBITaxon:80866","l":"Delftia acidovorans","na":1,"nb":2,"a":[["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["amino_acids_and_peptides/delftibactin-a.yaml","delftibactin A"],["amino_acids_and_peptides/delftibactin-b.yaml","delftibactin B"]]},{"id":"CHEBI:134612","l":"staphyloferrin B","na":1,"nb":1,"a":[["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"]]},{"id":"CHEBI:32079","l":"pyrrolnitrin","na":1,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"CHEBI:78688","l":"2,4-diacetylphloroglucinol","na":1,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"]]},{"id":"CHEBI:8653","l":"pyocyanine","na":1,"nb":1,"a":[["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["alkaloids/pyocyanine.yaml","pyocyanine"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":1,"nb":1,"a":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["unclassified/rhodochelin.yaml","rhodochelin"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":1,"nb":1,"a":[["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"]],"b":[["alkaloids/molybdenum-cofactor.yaml","molybdenum cofactor"]]},{"id":"NCBITaxon:1142","l":"Synechocystis","na":1,"nb":1,"a":[["Dairy_Wastewater_Algal_Cyanobacterial_Cultivation_Panel.html","Dairy Wastewater Algal-Cyanobacterial Cultivation Panel"]],"b":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]]},{"id":"NCBITaxon:1165","l":"Anabaena cylindrica","na":1,"nb":1,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["amino_acids_and_peptides/anachelin.yaml","anachelin"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":1,"nb":1,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["amino_acids_and_peptides/salivaricin-d.yaml","salivaricin D"]]},{"id":"NCBITaxon:135461","l":"Bacillus subtilis subsp. subtilis","na":1,"nb":1,"a":[["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["unclassified/fengycin.yaml","fengycin"]]},{"id":"NCBITaxon:1501433","l":"Kamptonema","na":1,"nb":1,"a":[["Microalgae_Cyanobacteria_Bioactive_Peptide_Consortia.html","Microalgae-Cyanobacteria Bioactive Peptide Consortia"]],"b":[["amino_acids_and_peptides/landornamide-a.yaml","landornamide A"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":1,"nb":1,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["amino_acids_and_peptides/cutimycin.yaml","cutimycin"]]},{"id":"NCBITaxon:226","l":"Alteromonas","na":1,"nb":1,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["unclassified/marinostatin.yaml","marinostatin"]]},{"id":"NCBITaxon:2433","l":"Roseobacter","na":1,"nb":1,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["shikimates_and_phenylpropanoids/tropodithietic-acid.yaml","tropodithietic acid"]]},{"id":"NCBITaxon:4097","l":"Nicotiana tabacum","na":1,"nb":1,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"]],"b":[["terpenoids/capsidiol.yaml","capsidiol"]]},{"id":"NCBITaxon:4547","l":"Saccharum officinarum","na":1,"nb":1,"a":[["SynCom_MetG2_Rhizobacteria_Sugarcane_Stress_Resilience.html","SynCom MetG2 Rhizobacteria Sugarcane Stress Resilience"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"]]},{"id":"NCBITaxon:47251","l":"Leptolyngbya","na":1,"nb":1,"a":[["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"]]},{"id":"NCBITaxon:4751","l":"Fungi","na":1,"nb":1,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["shikimates_and_phenylpropanoids/atromentin.yaml","atromentin"]]},{"id":"NCBITaxon:5094","l":"Talaromyces","na":1,"nb":1,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["unclassified/chrodrimanin-b.yaml","chrodrimanin B"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":1,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:61624","l":"Paenibacillus mucilaginosus","na":1,"nb":1,"a":[["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["amino_acids_and_peptides/bacillopaline.yaml","bacillopaline"]]},{"id":"NCBITaxon:648","l":"Aeromonas caviae","na":1,"nb":1,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:67372","l":"Streptomyces variabilis","na":1,"nb":1,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["polyketides/resistomycin.yaml","resistomycin"]]},{"id":"NCBITaxon:68274","l":"Streptomyces tauricus","na":1,"nb":1,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["polyketides/cinerubin-b.yaml","cinerubin B"]]},{"id":"NCBITaxon:86265","l":"Pseudomonas thivervalensis","na":1,"nb":1,"a":[["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"]],"b":[["amino_acids_and_peptides/histicorrugatin.yaml","histicorrugatin"]]},{"id":"NCBITaxon:96241","l":"Bacillus spizizenii","na":1,"nb":1,"a":[["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"]],"b":[["amino_acids_and_peptides/entianin.yaml","entianin"]]},{"id":"NCBITaxon:986","l":"Flavobacterium johnsoniae","na":1,"nb":1,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["polyketides/flexirubin.yaml","flexirubin"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/CommunityMech--ProteinTraitsMech.json b/assets/fleet/edges/CommunityMech--ProteinTraitsMech.json index 3454ea5..73a3769 100644 --- a/assets/fleet/edges/CommunityMech--ProteinTraitsMech.json +++ b/assets/fleet/edges/CommunityMech--ProteinTraitsMech.json @@ -1 +1 @@ -{"a":"CommunityMech","b":"ProteinTraitsMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record="},"n":689,"by":{"CHEBI":276,"NCBITaxon":226,"GO":186,"UBERON":1},"terms":[{"id":"CHEBI:30089","l":"acetate","na":78,"nb":302,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"]],"b":[["EC%3A1.1.1.318","eugenol synthase"],["EC%3A1.1.1.319","isoeugenol synthase"],["EC%3A1.13.11.50","acetylacetone-cleaving enzyme"],["EC%3A1.13.12.4","lactate 2-monooxygenase"],["EC%3A1.14.13.54","ketosteroid monooxygenase"],["EC%3A1.14.14.19","steroid 17alpha-monooxygenase"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":75,"nb":1616,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]],"b":[["EC%3A1.1.1.170","3beta-hydroxysteroid-4alpha-carboxylate 3-dehydrogenase (decarboxylating)"],["EC%3A1.1.1.262","4-hydroxythreonine-4-phosphate dehydrogenase"],["EC%3A1.1.1.276","serine 3-dehydrogenase (NADP(+))"],["EC%3A1.1.1.286","isocitrate--homoisocitrate dehydrogenase"],["EC%3A1.1.1.305","UDP-glucuronic acid oxidase (UDP-4-keto-hexauronic acid decarboxylating)"],["EC%3A1.1.1.343","phosphogluconate dehydrogenase (NAD(+)-dependent, decarboxylating)"]]},{"id":"GO:0015979","l":"photosynthesis","na":44,"nb":146,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["GO%3A0015979","photosynthesis"],["NCBIfam%3ATIGR01337","allophycocyanin subunit beta"],["NCBIfam%3ATIGR03056","alpha/beta fold hydrolase BchO"],["NCBIfam%3ANF013497","Apocytochrome F, C-terminal"],["NCBIfam%3ANF014391","Bacteriochlorophyll A protein"],["NCBIfam%3ANF058502","C-phycocyanin alpha-cysteine-84 phycocyanobilin lyase subunit CpcE"]]},{"id":"GO:0015948","l":"methanogenesis","na":44,"nb":82,"a":[["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"]],"b":[["GO%3A0019385","methanogenesis, from acetate"],["GO%3A0019386","methanogenesis, from carbon dioxide"],["GO%3A0019387","methanogenesis, from methanol"],["GO%3A0015948","methanogenesis"],["proteintraitsmech%3ASEED_SUBSYSTEM_Methanogenesis","Methanogenesis"],["NCBIfam%3ATIGR03957","5,10-methenyltetrahydromethanopterin hydrogenase cofactor biosynthesis protein HmdB"]]},{"id":"CHEBI:18276","l":"dihydrogen","na":58,"nb":42,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"]],"b":[["EC%3A1.12.1.2","hydrogen dehydrogenase"],["EC%3A1.12.1.3","hydrogen dehydrogenase (NADP(+))"],["EC%3A1.12.1.4","hydrogenase (NAD(+), ferredoxin)"],["EC%3A1.12.1.5","hydrogen dehydrogenase [NAD(P)(+)]"],["EC%3A1.12.2.1","cytochrome-c3 hydrogenase"],["EC%3A1.12.5.1","hydrogen:quinone oxidoreductase"]]},{"id":"GO:0015977","l":"carbon fixation","na":33,"nb":30,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["GO%3A0009760","C4 photosynthesis"],["GO%3A0009761","CAM photosynthesis"],["GO%3A0043427","carbon fixation by 3-hydroxypropionate cycle"],["GO%3A0030634","carbon fixation by acetyl-CoA pathway"],["GO%3A0015977","carbon fixation"],["GO%3A0019643","reductive tricarboxylic acid cycle"]]},{"id":"CHEBI:17632","l":"nitrate","na":28,"nb":40,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["EC%3A1.14.12.17","nitric oxide dioxygenase"],["EC%3A1.7.1.1","nitrate reductase (NADH)"],["EC%3A1.7.1.2","nitrate reductase [NAD(P)H]"],["EC%3A1.7.1.3","nitrate reductase (NADPH)"],["EC%3A1.7.5.1","nitrate reductase (quinone)"],["EC%3A1.7.6.1","nitrite dismutase"]]},{"id":"CHEBI:15379","l":"dioxygen","na":25,"nb":3896,"a":[["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["EC%3A1.1.3.10","pyranose oxidase"],["EC%3A1.1.3.11","L-sorbose oxidase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.3.13","alcohol oxidase"],["EC%3A1.1.3.14","catechol oxidase (dimerizing)"],["EC%3A1.1.3.15","(S)-2-hydroxy-acid oxidase"]]},{"id":"CHEBI:16189","l":"sulfate","na":25,"nb":133,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16189","requires sulfate"],["EC%3A1.14.11.77","alkyl sulfatase"],["EC%3A1.8.2.1","sulfite dehydrogenase (cytochrome)"],["EC%3A1.8.3.1","sulfite oxidase"],["EC%3A1.8.5.6","sulfite dehydrogenase (quinone)"],["EC%3A2.7.7.4","sulfate adenylyltransferase"]]},{"id":"CHEBI:16236","l":"ethanol","na":25,"nb":31,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.5.5","alcohol dehydrogenase (quinone)"],["EC%3A1.1.99.36","alcohol dehydrogenase (nicotinoprotein)"],["EC%3A2.3.1.268","ethanol O-acetyltransferase"],["EC%3A3.1.1.113","ethyl acetate hydrolase"],["EC%3A3.1.1.67","fatty-acyl-ethyl-ester synthase"]]},{"id":"GO:0009399","l":"nitrogen fixation","na":24,"nb":36,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"]],"b":[["GO%3A0009399","nitrogen fixation"],["proteintraitsmech%3ASEED_SUBSYSTEM_Nitrogen_fixation","Nitrogen fixation"],["NCBIfam%3ATIGR02662","ADP-ribosyl-[dinitrogen reductase] hydrolase"],["NCBIfam%3ATIGR02931","Fe-only nitrogenase subunit beta"],["NCBIfam%3ATIGR02929","Fe-only nitrogenase subunit delta"],["NCBIfam%3ATIGR02000","Fe-S cluster assembly protein NifU"]]},{"id":"CHEBI:15740","l":"formate","na":23,"nb":173,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"]],"b":[["EC%3A1.1.98.6","ribonucleoside-triphosphate reductase (formate)"],["EC%3A1.10.3.15","grixazone synthase"],["EC%3A1.13.11.41","2,4'-dihydroxyacetophenone dioxygenase"],["EC%3A1.13.11.53","acireductone dioxygenase (Ni(2+)-requiring)"],["EC%3A1.13.11.54","acireductone dioxygenase (Fe(2+)-requiring)"],["EC%3A1.13.11.72","2-hydroxyethylphosphonate dioxygenase"]]},{"id":"CHEBI:24996","l":"lactate","na":22,"nb":23,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["EC%3A1.1.1.436","lactate dehydrogenase (NAD(+),ferredoxin)"],["EC%3A3.5.1.124","protein deglycase"],["RHEA%3A57300","an N(2)-(1-hydroxy-2-oxopropyl)-2'-deoxyguanosine in DNA + H2O = a 2'-deoxyguanosine in DNA + lactate + H(+)"],["RHEA%3A57288","an N(2)-(1-hydroxy-2-oxopropyl)-guanosine in RNA + H2O = a guanosine in RNA + lactate + H(+)"],["RHEA%3A46964","lactate + 2 reduced [2Fe-2S]-[ferredoxin] + 2 NAD(+) = 2 oxidized [2Fe-2S]-[ferredoxin] + pyruvate + 2 NADH"],["RHEA%3A57244","N(2)-(1-hydroxy-2-oxopropyl)-dGTP + H2O = lactate + dGTP + H(+)"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":21,"nb":396,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29033","requires iron(2+)"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.11","glucoside 3-dehydrogenase (cytochrome c)"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.2.3","L-lactate dehydrogenase (cytochrome)"],["EC%3A1.1.2.4","D-lactate dehydrogenase (cytochrome)"]]},{"id":"CHEBI:29034","l":"iron(3+)","na":21,"nb":376,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29034","requires iron(3+)"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.11","glucoside 3-dehydrogenase (cytochrome c)"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.2.3","L-lactate dehydrogenase (cytochrome)"],["EC%3A1.1.2.4","D-lactate dehydrogenase (cytochrome)"]]},{"id":"CHEBI:28938","l":"ammonium","na":19,"nb":837,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_28938","requires ammonium"],["EC%3A1.13.12.15","3,4-dihydroxyphenylalanine oxidative deaminase"],["EC%3A1.13.99.3","tryptophan 2'-dioxygenase"],["EC%3A1.14.11.37","kanamycin B dioxygenase"],["EC%3A1.14.12.1","anthranilate 1,2-dioxygenase (deaminating, decarboxylating)"],["EC%3A1.14.12.14","2-aminobenzenesulfonate 2,3-dioxygenase"]]},{"id":"CHEBI:17968","l":"butyrate","na":19,"nb":33,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"]],"b":[["EC%3A1.3.1.31","2-enoate reductase"],["EC%3A2.3.1.315","succinyl-CoA:cyclohexane-1-carboxylate CoA transferase"],["EC%3A2.7.2.7","butyrate kinase"],["EC%3A2.8.3.9","butyrate--acetoacetate CoA-transferase"],["EC%3A3.1.1.51","phorbol-diester hydrolase"],["EC%3A3.7.1.7","beta-diketone hydrolase"]]},{"id":"GO:0044419","l":"biological process involved in interspecies interaction between organisms","na":148,"nb":18,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]],"b":[["GO%3A0044419","biological process involved in interspecies interaction between organisms"],["GO%3A0044403","biological process involved in symbiotic interaction"],["GO%3A0141060","disruption of anatomical structure in another organism"],["GO%3A0044111","formation of structure involved in a symbiotic process"],["GO%3A0140106","hematophagy"],["GO%3A0035821","modulation of process of another organism"]]},{"id":"GO:0030245","l":"cellulose catabolic process","na":30,"nb":18,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"]],"b":[["GO%3A1990488","anaerobic cellulose catabolic process"],["GO%3A0030245","cellulose catabolic process"],["GO%3A0052785","cellulose catabolism by endo-processive cellulases"],["NCBIfam%3ANF049990","cellulose 1,4-beta-cellobiosidase"],["NCBIfam%3ANF041611","exoglucanase CbhB"],["NCBIfam%3ATIGR03356","GH1 family beta-glucosidase"]]},{"id":"CHEBI:16301","l":"nitrite","na":17,"nb":116,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["EC%3A1.13.11.64","5-nitrosalicylate dioxygenase"],["EC%3A1.13.12.16","nitronate monooxygenase"],["EC%3A1.14.12.23","nitroarene dioxygenase"],["EC%3A1.14.12.24","2,4-dinitrotoluene dioxygenase"],["EC%3A1.14.13.166","4-nitrocatechol 4-monooxygenase"],["EC%3A1.14.13.167","4-nitrophenol 4-monooxygenase"]]},{"id":"GO:0006805","l":"xenobiotic metabolic process","na":17,"nb":38,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"]],"b":[["GO%3A0018872","arsonoacetate metabolic process"],["GO%3A0018890","cyanamide metabolic process"],["GO%3A0018892","cyclohexylsulfamate metabolic process"],["GO%3A0018905","dimethyl ether metabolic process"],["GO%3A0018909","dodecyl sulfate metabolic process"],["GO%3A0042197","halogenated hydrocarbon metabolic process"]]},{"id":"GO:0006826","l":"iron ion transport","na":17,"nb":26,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"]],"b":[["GO%3A1901678","iron coordination entity transport"],["GO%3A0033212","iron import into cell"],["GO%3A0034755","iron ion transmembrane transport"],["GO%3A0006826","iron ion transport"],["GO%3A0033571","lactoferrin transport"],["GO%3A0033572","transferrin transport"]]},{"id":"GO:0005975","l":"carbohydrate metabolic process","na":15,"nb":401,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"]],"b":[["GO%3A0016051","carbohydrate biosynthetic process"],["GO%3A0016052","carbohydrate catabolic process"],["GO%3A0005975","carbohydrate metabolic process"],["GO%3A0046835","carbohydrate phosphorylation"],["GO%3A0042836","D-glucarate metabolic process"],["GO%3A0019521","D-gluconate metabolic process"]]},{"id":"GO:0022900","l":"electron transport chain","na":15,"nb":50,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"]],"b":[["GO%3A0022900","electron transport chain"],["GO%3A0140647","P450-containing electron transport chain"],["GO%3A0009767","photosynthetic electron transport chain"],["GO%3A0022904","respiratory electron transport chain"],["NCBIfam%3ANF058577","4Fe-4S ferredoxin"],["NCBIfam%3ANF042982","8-methylmenaquinol:fumarate reductase flavoprotein subunit"]]},{"id":"CHEBI:17992","l":"sucrose","na":15,"nb":49,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"]],"b":[["EC%3A1.1.99.13","glucoside 3-dehydrogenase (acceptor)"],["EC%3A2.4.1.10","levansucrase"],["EC%3A2.4.1.125","sucrose--1,6-alpha-glucan 3(6)-alpha-glucosyltransferase"],["EC%3A2.4.1.13","sucrose synthase"],["EC%3A2.4.1.166","raffinose--raffinose alpha-galactosyltransferase"],["EC%3A2.4.1.167","sucrose 6(F)-alpha-galactosyltransferase"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":15,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["Pfam%3APF14562","Restriction endonuclease BglI"],["Pfam%3APF09195","Restriction endonuclease BglII/BglIII"],["Pfam%3APF09208","Restriction endonuclease MspI"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":14,"nb":145,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]],"b":[["IDPO%3A0000033","flexible linker"],["IDPO%3A0000014","order to disorder"],["IDPO%3A0000004","pre-molten globule"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"]]},{"id":"GO:0006113","l":"fermentation","na":43,"nb":14,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"]],"b":[["ComplexPortal%3ACPX-281","Hydrogenase-1 complex"],["GO%3A0030645","acetyl-CoA fermentation to butanoate"],["GO%3A0019665","amino acid fermentation"],["GO%3A0019588","anaerobic glycerol catabolic process"],["GO%3A0019658","bifid shunt"],["GO%3A0044577","D-xylose fermentation"]]},{"id":"GO:0006790","l":"sulfur compound metabolic process","na":13,"nb":113,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"]],"b":[["GO%3A0050427","3'-phosphoadenosine 5'-phosphosulfate metabolic process"],["GO%3A0018887","4-carboxy-4'-sulfoazobenzene metabolic process"],["GO%3A0006637","acyl-CoA metabolic process"],["GO%3A0019694","alkanesulfonate metabolic process"],["GO%3A0006768","biotin metabolic process"],["GO%3A1901266","cephalosporin C metabolic process"]]},{"id":"CHEBI:16183","l":"methane","na":62,"nb":13,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"]],"b":[["EC%3A1.14.13.25","methane monooxygenase (soluble)"],["EC%3A1.14.18.3","methane monooxygenase (particulate)"],["EC%3A2.8.4.1","coenzyme-B sulfoethylthiotransferase"],["EC%3A4.7.1.1","alpha-D-ribose 1-methylphosphonate 5-phosphate C-P-lyase"],["RHEA%3A34707","alpha-D-ribose 1-methylphosphonate 5-phosphate + AH2 + S-adenosyl-L-methionine = alpha-D-ribose 1,2-cyclic phosphate 5-phosphate + methane + 5'-deoxyadenosine + L-methionine + A + H(+)"],["RHEA%3A12532","coenzyme B + methyl-coenzyme M = methane + coenzyme M-coenzyme B heterodisulfide"]]},{"id":"CHEBI:26833","l":"sulfur atom","na":12,"nb":24,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["EC%3A1.12.98.4","sulfhydrogenase"],["EC%3A1.13.11.55","sulfur oxygenase/reductase"],["EC%3A1.8.1.18","NAD(P)H sulfur oxidoreductase (CoA-dependent)"],["EC%3A1.8.1.19","sulfide dehydrogenase"],["EC%3A1.8.2.3","sulfide-cytochrome-c reductase (flavocytochrome c)"],["EC%3A1.8.2.7","thiocyanate desulfurase"]]},{"id":"CHEBI:17997","l":"dinitrogen","na":12,"nb":18,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["EC%3A1.18.6.1","nitrogenase"],["EC%3A1.18.6.2","vanadium-dependent nitrogenase"],["EC%3A1.19.6.1","nitrogenase (flavodoxin)"],["EC%3A1.7.2.4","nitrous-oxide reductase"],["EC%3A1.7.2.8","hydrazine dehydrogenase"],["RHEA%3A79967","3-diazoavenalumate + NADH + H(+) = avenalumate + N2 + NAD(+)"]]},{"id":"CHEBI:17272","l":"propionate","na":11,"nb":34,"a":[["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"]],"b":[["EC%3A1.3.1.125","acrylate reductase"],["EC%3A2.7.2.15","propionate kinase"],["EC%3A2.8.3.1","propionate CoA-transferase"],["EC%3A2.8.3.27","propanoyl-CoA:succinate CoA transferase"],["EC%3A4.1.3.32","2,3-dimethylmalate lyase"],["EC%3A6.2.1.13","acetate--CoA ligase (ADP-forming)"]]},{"id":"GO:0044403","l":"biological process involved in symbiotic interaction","na":20,"nb":11,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["GO%3A0036377","arbuscular mycorrhizal association"],["GO%3A0051701","biological process involved in interaction with host"],["GO%3A0051702","biological process involved in interaction with symbiont"],["GO%3A0044403","biological process involved in symbiotic interaction"],["GO%3A0075733","intracellular transport of virus"],["GO%3A0044399","multi-species biofilm formation"]]},{"id":"GO:0045493","l":"xylan catabolic process","na":11,"nb":19,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["GO%3A2000888","arabinoxylan-containing compound catabolic process"],["GO%3A2000886","glucuronoxylan catabolic process"],["GO%3A0045493","xylan catabolic process"],["NCBIfam%3ANF042968","acetylxylan esterase AxeA1"],["NCBIfam%3ANF041579","beta-xylosidase"],["NCBIfam%3ANF042969","bifunctional acetylxylan esterase/glucomannan deacetylase AxeC2"]]},{"id":"GO:0050832","l":"defense response to fungus","na":11,"nb":15,"a":[["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"]],"b":[["GO%3A0019732","antifungal humoral response"],["GO%3A0061760","antifungal innate immune response"],["GO%3A0050832","defense response to fungus"],["NCBIfam%3ANF013159","Barwin family"],["InterPro%3AIPR018226","Barwin, conserved site"],["InterPro%3AIPR001153","Barwin domain"]]},{"id":"CHEBI:16134","l":"ammonia","na":14,"nb":11,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]],"b":[["TCDB%3A1.A.11","The Ammonium Transporter Channel (Amt) Family"],["MCSA%3A376","adenosine deaminase"],["MCSA%3A75","aspartate-ammonia ligase"],["MCSA%3A449","cystathionine beta-lyase"],["MCSA%3A97","cytidine deaminase"],["MCSA%3A710","cytosine deaminase (bacterial)"]]},{"id":"CHEBI:17790","l":"methanol","na":10,"nb":86,"a":[["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"]],"b":[["EC%3A1.1.1.244","methanol dehydrogenase"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.99.37","methanol dehydrogenase (nicotinoprotein)"],["EC%3A1.14.13.25","methane monooxygenase (soluble)"],["EC%3A1.14.14.117","aflatoxin B synthase"]]},{"id":"CHEBI:29036","l":"copper(2+)","na":10,"nb":40,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29036","requires copper(2+)"],["EC%3A1.1.9.1","alcohol dehydrogenase (azurin)"],["EC%3A1.16.3.4","cuproxidase"],["EC%3A1.17.9.1","4-methylphenol dehydrogenase (hydroxylating)"],["EC%3A1.17.9.2","(+)-pinoresinol hydroxylase"],["EC%3A1.20.9.1","arsenate reductase (azurin)"]]},{"id":"GO:0042742","l":"defense response to bacterium","na":9,"nb":53,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["ComplexPortal%3ACPX-10317","Interleukin-26 complex"],["GO%3A0019731","antibacterial humoral response"],["GO%3A0140367","antibacterial innate immune response"],["GO%3A0042742","defense response to bacterium"],["GO%3A0050829","defense response to Gram-negative bacterium"],["GO%3A0050830","defense response to Gram-positive bacterium"]]},{"id":"GO:0009372","l":"quorum sensing","na":9,"nb":21,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["ComplexPortal%3ACPX-4315","Autoinducer-2 ABC transporter complex"],["GO%3A0120218","host interaction involved in quorum sensing"],["GO%3A0009372","quorum sensing"],["NCBIfam%3ANF052393","acyl-homoserine-lactone synthase"],["NCBIfam%3ANF008187","autoinducer-2 kinase"],["NCBIfam%3ANF010444","autoinducer-binding transcriptional regulator TraR"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":9,"nb":20,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]],"b":[["Pfam%3APF14535","AMP-binding enzyme C-terminal domain"],["Pfam%3APF13442","Cytochrome C oxidase, cbb3-type, subunit III"],["Pfam%3APF22247","Catechol 2,3-dioxygenase-like N-terminal domain"],["Pfam%3APF25371","Domain of unknown function (DUF7884)"],["Pfam%3APF19301","LigXa C-terminal domain like"],["Pfam%3APF12729","Four helix bundle sensory module for signal transduction"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":9,"nb":19,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"]],"b":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"],["Pfam%3APF18173","Bacterial HORMA domain 2"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["Pfam%3APF27322","Cap8 HORMA domain"],["Pfam%3APF01526","Tn3 transposase DDE domain"]]},{"id":"CHEBI:28885","l":"butan-1-ol","na":9,"nb":16,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["EC%3A1.1.2.9","1-butanol dehydrogenase (cytochrome c)"],["EC%3A1.1.5.11","1-butanol dehydrogenase (quinone)"],["EC%3A1.14.13.230","butane monooxygenase (soluble)"],["RHEA%3A64672","2-(methylsulfanyl)acetyl-CoA + butan-1-ol = butyl 2-(methylsulfanyl)acetate + CoA"],["RHEA%3A64676","3-(methylsulfanyl)propanoyl-CoA + butan-1-ol = butyl 3-(methylsulfanyl)propanoate + CoA"],["RHEA%3A43432","butan-1-ol + 2 Fe(III)-[cytochrome c] = butanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"]]},{"id":"CHEBI:15361","l":"pyruvate","na":8,"nb":410,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15361","requires pyruvate"],["EC%3A1.1.1.27","L-lactate dehydrogenase"],["EC%3A1.1.1.28","D-lactate dehydrogenase"],["EC%3A1.1.1.38","malate dehydrogenase (oxaloacetate-decarboxylating)"],["EC%3A1.1.1.39","malate dehydrogenase (decarboxylating)"],["EC%3A1.1.1.40","malate dehydrogenase (oxaloacetate-decarboxylating) (NADP(+))"]]},{"id":"GO:0009061","l":"anaerobic respiration","na":8,"nb":36,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["ComplexPortal%3ACPX-4841","Anaerobic glycerol-3-phosphate dehydrogenase complex"],["ComplexPortal%3ACPX-317","Formate hydrogenlyase-H/Hydrogenase-3 complex"],["ComplexPortal%3ACPX-6028","Formate hydrogenlyase-H/Hydrogenase-4 complex"],["ComplexPortal%3ACPX-281","Hydrogenase-1 complex"],["ComplexPortal%3ACPX-282","Hydrogenase-2 complex"],["ComplexPortal%3ACPX-3447","NapAB nitrate reductase complex"]]},{"id":"GO:0010038","l":"response to metal ion","na":8,"nb":34,"a":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["GO%3A0071248","cellular response to metal ion"],["GO%3A0010044","response to aluminum ion"],["GO%3A0046686","response to cadmium ion"],["GO%3A0051592","response to calcium ion"],["GO%3A0010164","response to cesium ion"],["GO%3A0032025","response to cobalt ion"]]},{"id":"CHEBI:18385","l":"thiamine(1+)","na":8,"nb":19,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["EC%3A1.1.3.23","thiamine oxidase"],["EC%3A2.5.1.2","thiamine pyridinylase"],["EC%3A2.7.1.89","thiamine kinase"],["EC%3A2.7.6.2","thiamine diphosphokinase"],["EC%3A3.1.3.100","thiamine phosphate phosphatase"],["EC%3A3.5.99.2","aminopyrimidine aminohydrolase"]]},{"id":"CHEBI:33709","l":"amino acid","na":14,"nb":8,"a":[["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.23","The Dicarboxylate/Amino Acid:Cation (Na+ or H+) Symporter (DAACS) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A1.V.1","The Filamentous Cyanobacterial Septal Pore (Septum) Family"],["TCDB%3A1.A.24","The Gap Junction-forming Connexin (Connexin) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"GO:0015947","l":"methane metabolic process","na":11,"nb":8,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"]],"b":[["GO%3A0046188","methane catabolic process"],["GO%3A0015947","methane metabolic process"],["GO%3A0015948","methanogenesis"],["NCBIfam%3ANF014960","Methane monooxygenase, hydrolase gamma chain"],["Pfam%3APF02964","Methane monooxygenase, hydrolase gamma chain"],["InterPro%3AIPR015952","Methane monooxygenase, gamma chain, domain 1"]]},{"id":"GO:0046274","l":"lignin catabolic process","na":8,"nb":10,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"]],"b":[["GO%3A1990487","anaerobic lignin catabolic process"],["GO%3A1901062","guaiacyl lignin catabolic process"],["GO%3A0046274","lignin catabolic process"],["GO%3A1901059","p-hydroxyphenyl lignin catabolic process"],["GO%3A1901065","syringal lignin catabolic process"],["NCBIfam%3ANF042997","beta-etherase"]]},{"id":"GO:0040007","l":"growth","na":36,"nb":7,"a":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Cultivated_Meat_Contaminant_SynCom.html","Cultivated Meat Contaminant SynCom"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["GO%3A0007117","budding cell bud growth"],["GO%3A0016049","cell growth"],["GO%3A0048589","developmental growth"],["GO%3A0030447","filamentous growth"],["GO%3A0040007","growth"],["GO%3A0080190","lateral growth"]]},{"id":"GO:0042710","l":"biofilm formation","na":29,"nb":7,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["GO%3A0042710","biofilm formation"],["GO%3A0044399","multi-species biofilm formation"],["GO%3A0044010","single-species biofilm formation"],["GO%3A0090605","submerged biofilm formation"],["GO%3A0090604","surface biofilm formation"],["Reactome%3AR-HSA-9931953","Biofilm formation"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":7,"nb":23,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["Pfam%3APF08878","HamA"],["Pfam%3APF05791","Bacillus haemolytic enterotoxin (HBL)"],["Pfam%3APF10803","Spore germination GerPB"],["Pfam%3APF10737","Spore germination protein GerPC"],["Pfam%3APF10970","Spore germination protein GerPE"],["Pfam%3APF07486","Cell Wall Hydrolase"]]},{"id":"CHEBI:17057","l":"cellobiose","na":7,"nb":19,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["EC%3A1.1.3.5","hexose oxidase"],["EC%3A1.1.99.18","cellobiose dehydrogenase (acceptor)"],["EC%3A2.4.1.20","cellobiose phosphorylase"],["EC%3A2.7.1.205","protein-N(pi)-phosphohistidine--D-cellobiose phosphotransferase"],["EC%3A2.7.1.85","beta-glucoside kinase"],["EC%3A5.1.3.11","cellobiose epimerase"]]},{"id":"GO:0019420","l":"dissimilatory sulfate reduction","na":17,"nb":7,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["DVM_Triculture.html","DVM Tri-culture"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"]],"b":[["GO%3A0019420","dissimilatory sulfate reduction"],["NCBIfam%3ATIGR02061","adenylyl-sulfate reductase subunit alpha"],["NCBIfam%3ATIGR02060","adenylyl-sulfate reductase subunit beta"],["NCBIfam%3ATIGR02066","dissimilatory-type sulfite reductase subunit beta"],["NCBIfam%3ANF045796","sulfate reduction electron transfer complex DsrMKJOP subunit DsrK"],["NCBIfam%3ANF045797","sulfate reduction electron transfer complex DsrMKJOP subunit DsrO"]]},{"id":"CHEBI:49786","l":"nickel(2+)","na":7,"nb":10,"a":[["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_49786","requires nickel(2+)"],["EC%3A4.99.1.11","sirohydrochlorin nickelchelatase"],["EC%3A4.99.1.12","pyridinium-3,5-bisthiocarboxylic acid mononucleotide nickel chelatase"],["EC%3A7.2.2.11","ABC-type Ni(2+) transporter"],["RHEA%3A29831","Ni(2+)(in) = Ni(2+)(out)"],["RHEA%3A15557","Ni(2+)(out) + ATP + H2O = Ni(2+)(in) + ADP + phosphate + H(+)"]]},{"id":"NCBITaxon:818","l":"Bacteroides thetaiotaomicron","na":7,"nb":9,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["Pfam%3APF09093","Lyase, catalytic"],["TED%3AAF-A0A174W9M0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A174W9M0-F1-model_v4_TED01"],["TED%3AAF-A0A679HCU6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A679HCU6-F1-model_v4_TED01"],["TED%3AAF-A0A139L295-F1-model_v4_TED04","TED novel fold AF-A0A139L295-F1-model_v4_TED04"],["TED%3AAF-A0A174QBB7-F1-model_v4_TED02","TED novel fold AF-A0A174QBB7-F1-model_v4_TED02"],["TED%3AAF-A0A679H9T4-F1-model_v4_TED03","TED novel fold AF-A0A679H9T4-F1-model_v4_TED03"]]},{"id":"GO:0009056","l":"catabolic process","na":6,"nb":109,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"],["Wetland_Oxygen_Sulfate_GHG_Microcosm_Community.html","Wetland Oxygen-Sulfate Greenhouse Gas Microcosm Community"]],"b":[["GO%3A0018911","1,2,4-trichlorobenzene catabolic process"],["GO%3A0019261","1,4-dichlorobenzene catabolic process"],["GO%3A0046302","2-chloro-N-isopropylacetanilide catabolic process"],["GO%3A1901851","7,8-didemethyl-8-hydroxy-5-deazariboflavin catabolic process"],["GO%3A0006581","acetylcholine catabolic process"],["GO%3A0046185","aldehyde catabolic process"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":6,"nb":93,"a":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17544","requires hydrogencarbonate"],["EC%3A1.13.11.73","methylphosphonate synthase"],["EC%3A1.2.1.27","methylmalonate-semialdehyde dehydrogenase (CoA acylating)"],["EC%3A2.5.1.120","aminodeoxyfutalosine synthase"],["EC%3A2.5.1.143","pyridinium-3,5-biscarboxylic acid mononucleotide synthase"],["EC%3A2.7.2.2","carbamate kinase"]]},{"id":"GO:0006979","l":"response to oxidative stress","na":6,"nb":50,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["ComplexPortal%3ACPX-9082","19S-20S-PA28-alphabeta hybrid proteasome complex"],["ComplexPortal%3ACPX-9085","19S-20S-PA28-gamma hybrid proteasome complex"],["ComplexPortal%3ACPX-8806","20S proteasome complex"],["ComplexPortal%3ACPX-4862","Alkyl hydroperoxide reductase complex"],["ComplexPortal%3ACPX-8842","PA28-alphabeta double-capped 20S proteasome complex"],["ComplexPortal%3ACPX-9002","PA28-alphabeta single-capped 20S proteasome complex"]]},{"id":"CHEBI:17245","l":"carbon monoxide","na":6,"nb":31,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Subsurface_Carboxydocella_CO_Aquifer_Community.html","Subsurface Carboxydocella CO-Oxidation Aquifer Community"]],"b":[["EC%3A1.13.11.24","quercetin 2,3-dioxygenase"],["EC%3A1.13.11.47","3-hydroxy-4-oxoquinoline 2,4-dioxygenase"],["EC%3A1.13.11.48","3-hydroxy-2-methylquinolin-4-one 2,4-dioxygenase"],["EC%3A1.13.11.53","acireductone dioxygenase (Ni(2+)-requiring)"],["EC%3A1.14.14.18","heme oxygenase (biliverdin-producing)"],["EC%3A1.14.15.20","heme oxygenase (biliverdin-producing, ferredoxin)"]]},{"id":"CHEBI:18246","l":"(1->4)-beta-D-glucan","na":27,"nb":6,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["EC%3A2.4.1.12","cellulose synthase (UDP-forming)"],["EC%3A2.4.1.29","cellulose synthase (GDP-forming)"],["EC%3A2.4.1.49","cellodextrin phosphorylase"],["RHEA%3A17797","[(1->4)-beta-D-glucosyl](n) + GDP-alpha-D-glucose = [(1->4)-beta-D-glucosyl](n+1) + GDP + H(+)"],["RHEA%3A23024","[(1->4)-beta-D-glucosyl](n) + phosphate = [(1->4)-beta-D-glucosyl](n-1) + alpha-D-glucose 1-phosphate"],["RHEA%3A19929","[(1->4)-beta-D-glucosyl](n) + UDP-alpha-D-glucose = [(1->4)-beta-D-glucosyl](n+1) + UDP + H(+)"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":6,"nb":16,"a":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["Pfam%3APF16822","SGNH hydrolase-like domain, acetyltransferase AlgX"],["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"],["Pfam%3APF11182","Alginate O-acetyl transferase AlgF"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF27129","Functional amyloid protein FapB/FapC family"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":6,"nb":11,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF02085","Class III cytochrome C family"],["Pfam%3APF06397","Desulfoferrodoxin, N-terminal domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["Pfam%3APF12797","4Fe-4S binding domain"],["Pfam%3APF06180","Cobalt chelatase (CbiK)"]]},{"id":"GO:0009877","l":"nodulation","na":6,"nb":8,"a":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"],["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["GO%3A0009877","nodulation"],["NCBIfam%3ATIGR04243","chitooligosaccharide deacetylase NodB"],["NCBIfam%3ATIGR04242","chitooligosaccharide synthase NodC"],["NCBIfam%3ANF017620","HrpF/NolX family T3SS translocon protein"],["NCBIfam%3ATIGR04245","NodA family N-acyltransferase"],["NCBIfam%3ANF014526","Nodulation protein A (NodA)"]]},{"id":"GO:0071941","l":"nitrogen cycle metabolic process","na":6,"nb":8,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"]],"b":[["GO%3A0019409","aerobic respiration, using ammonia as electron donor"],["GO%3A0019331","anaerobic respiration, using ammonium as electron donor"],["GO%3A0019333","denitrification pathway"],["GO%3A0042128","nitrate assimilation"],["GO%3A0071941","nitrogen cycle metabolic process"],["GO%3A0009399","nitrogen fixation"]]},{"id":"CHEBI:18153","l":"ethene","na":7,"nb":6,"a":[["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"]],"b":[["EC%3A1.13.12.19","2-oxoglutarate dioxygenase (ethylene-forming)"],["EC%3A1.14.17.4","aminocyclopropanecarboxylate oxidase"],["RHEA%3A23640","1-aminocyclopropane-1-carboxylate + L-ascorbate + O2 = ethene + L-dehydroascorbate + hydrogen cyanide + CO2 + 2 H2O"],["RHEA%3A81439","2-(methylsulfanyl)ethanol + AH2 = ethene + methanethiol + A + H2O"],["RHEA%3A31523","2-oxoglutarate + O2 + 2 H(+) = ethene + 3 CO2 + H2O"],["RHEA%3A68004","chloroethene + AH2 = ethene + chloride + A + H(+)"]]},{"id":"NCBITaxon:40324","l":"Stenotrophomonas maltophilia","na":7,"nb":6,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]],"b":[["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["TED%3AAF-A0A2U4H7T5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2U4H7T5-F1-model_v4_TED02"],["TED%3AAF-A0A2W6G5X3-F1-model_v4_TED01","TED novel fold AF-A0A2W6G5X3-F1-model_v4_TED01"],["TED%3AAF-A0A2W6IKS3-F1-model_v4_TED02","TED novel fold AF-A0A2W6IKS3-F1-model_v4_TED02"],["TED%3AAF-A0A7D0KRT5-F1-model_v4_TED03","TED novel fold AF-A0A7D0KRT5-F1-model_v4_TED03"],["TED%3AAF-A0A7T8PWR1-F1-model_v4_TED05","TED novel fold AF-A0A7T8PWR1-F1-model_v4_TED05"]]},{"id":"CHEBI:17754","l":"glycerol","na":5,"nb":95,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"]],"b":[["EC%3A1.1.1.156","glycerol 2-dehydrogenase (NADP(+))"],["EC%3A1.1.1.372","D/L-glyceraldehyde reductase"],["EC%3A1.1.1.6","glycerol dehydrogenase"],["EC%3A1.1.1.72","glycerol dehydrogenase (NADP(+))"],["EC%3A1.1.99.22","glycerol dehydrogenase (acceptor)"],["EC%3A2.4.1.332","1,2-alpha-glucosylglycerol phosphorylase"]]},{"id":"GO:0006629","l":"lipid metabolic process","na":5,"nb":81,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"]],"b":[["ComplexPortal%3ACPX-1381","NVJ1-VAC8 nucleus-vacuole junction complex"],["GO%3A0046485","ether lipid metabolic process"],["GO%3A1901568","fatty acid derivative metabolic process"],["GO%3A0006631","fatty acid metabolic process"],["GO%3A0046486","glycerolipid metabolic process"],["GO%3A0006720","isoprenoid metabolic process"]]},{"id":"GO:0009236","l":"cobalamin biosynthetic process","na":5,"nb":75,"a":[["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["GO%3A0009236","cobalamin biosynthetic process"],["proteintraitsmech%3ASEED_SUBSYSTEM_Cobalamin_synthesis","Cobalamin synthesis"],["NCBIfam%3ATIGR02476","5,6-dimethylbenzimidazole synthase"],["NCBIfam%3ANF011580","adenosylcobalamin/alpha-ribazole phosphatase"],["NCBIfam%3ANF014685","adenosylcobinamide-GDP ribazoletransferase"],["NCBIfam%3ATIGR00317","adenosylcobinamide-GDP ribazoletransferase"]]},{"id":"GO:0006935","l":"chemotaxis","na":5,"nb":64,"a":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["SynCom_MetG2_Rhizobacteria_Sugarcane_Stress_Resilience.html","SynCom MetG2 Rhizobacteria Sugarcane Stress Resilience"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"],["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009454","aerotaxis"]]},{"id":"GO:0006635","l":"fatty acid beta-oxidation","na":5,"nb":32,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["ComplexPortal%3ACPX-3964","fadBA fatty acid oxidation complex, aerobic conditions"],["ComplexPortal%3ACPX-3966","fadJI fatty acid oxidation complex, anaerobic conditions"],["ComplexPortal%3ACPX-6245","Mitochondrial trifunctional enzyme complex"],["GO%3A0006635","fatty acid beta-oxidation"],["GO%3A0033539","fatty acid beta-oxidation using acyl-CoA dehydrogenase"],["GO%3A0033540","fatty acid beta-oxidation using acyl-CoA oxidase"]]},{"id":"GO:0009060","l":"aerobic respiration","na":5,"nb":25,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Soil_CPR_Nanoarchaea_Rare_Biosphere_Community.html","Soil CPR Bacteria and Nanoarchaea Rare-Biosphere Community"]],"b":[["ComplexPortal%3ACPX-266","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-577","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-319","Trimethylamine-N-oxide reductase TorAC complex"],["GO%3A0019646","aerobic electron transport chain"],["GO%3A0009060","aerobic respiration"],["GO%3A0019409","aerobic respiration, using ammonia as electron donor"]]},{"id":"GO:0005986","l":"sucrose biosynthetic process","na":7,"nb":5,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"],["Synechococcus_Bacillus_SPC.html","Synechococcus-Bacillus Synthetic Photosynthetic Consortium"],["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"],["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"],["Synechococcus_Saccharomyces_SPC.html","Synechococcus-Saccharomyces Synthetic Photosynthetic Consortium"]],"b":[["GO%3A0005986","sucrose biosynthetic process"],["NCBIfam%3ANF020061","Sucrose-6-phosphate phosphohydrolase C-terminal"],["NCBIfam%3ATIGR01485","sucrose-phosphate phosphatase"],["InterPro%3AIPR013679","Sucrose-phosphatase, C-terminal"],["Pfam%3APF08472","Sucrose-6-phosphate phosphohydrolase C-terminal"]]},{"id":"CHEBI:18310","l":"alkane","na":5,"nb":5,"a":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"]],"b":[["EC%3A4.99.1.2","alkylmercury lyase"],["RHEA%3A18777","an alkylmercury + H(+) = an alkane + Hg(2+)"],["MCSA%3A297","alkylmercury lyase"],["MCSA%3A248","chloride peroxidase (cofactor free)"],["MCSA%3A250","chloride peroxidase (heme dependent)"]]},{"id":"CHEBI:15377","l":"water","na":4,"nb":9376,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["EC%3A1.1.1.115","ribose 1-dehydrogenase (NADP(+))"],["EC%3A1.1.1.132","GDP-mannose 6-dehydrogenase"],["EC%3A1.1.1.136","UDP-N-acetylglucosamine 6-dehydrogenase"],["EC%3A1.1.1.186","dTDP-galactose 6-dehydrogenase"],["EC%3A1.1.1.192","long-chain-alcohol dehydrogenase"],["EC%3A1.1.1.205","IMP dehydrogenase"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":4,"nb":680,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16240","requires hydrogen peroxide"],["EC%3A1.1.3.10","pyranose oxidase"],["EC%3A1.1.3.11","L-sorbose oxidase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.3.13","alcohol oxidase"],["EC%3A1.1.3.15","(S)-2-hydroxy-acid oxidase"]]},{"id":"GO:0006952","l":"defense response","na":4,"nb":62,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["ComplexPortal%3ACPX-2833","Camalexin biosynthetic metabolon complex"],["ComplexPortal%3ACPX-25769","TAP antigen peptide transporter complex"],["GO%3A0002209","behavioral defense response"],["GO%3A0006968","cellular defense response"],["GO%3A0052542","defense response by callose deposition"],["GO%3A0052482","defense response by cell wall thickening"]]},{"id":"GO:0008610","l":"lipid biosynthetic process","na":4,"nb":61,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"],["Yarrowia_lipolytica_Division_of_Labor_Lipid_Consortium.html","Yarrowia lipolytica Division-of-Labor Lipid Consortium"]],"b":[["GO%3A1900557","emericellamide biosynthetic process"],["GO%3A0008611","ether lipid biosynthetic process"],["GO%3A0006633","fatty acid biosynthetic process"],["GO%3A1901570","fatty acid derivative biosynthetic process"],["GO%3A0045017","glycerolipid biosynthetic process"],["GO%3A0009247","glycolipid biosynthetic process"]]},{"id":"CHEBI:16199","l":"urea","na":4,"nb":48,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["EC%3A3.5.1.5","urease"],["EC%3A3.5.1.95","N-malonylurea hydrolase"],["EC%3A3.5.3.1","arginase"],["EC%3A3.5.3.10","D-arginase"],["EC%3A3.5.3.11","agmatinase"],["EC%3A3.5.3.14","amidinoaspartase"]]},{"id":"CHEBI:29105","l":"zinc(2+)","na":4,"nb":20,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29105","requires zinc(2+)"],["EC%3A7.2.2.12","P-type Zn(2+) transporter"],["EC%3A7.2.2.20","ABC-type Zn(2+) transporter"],["RHEA%3A62264","selenite(out) + Zn(2+)(out) + hydrogencarbonate(out) = selenite(in) + Zn(2+)(in) + hydrogencarbonate(in)"],["RHEA%3A72627","Zn(2+)(in) + 2 H(+)(out) = Zn(2+)(out) + 2 H(+)(in)"],["RHEA%3A20621","Zn(2+)(in) + ATP + H2O = Zn(2+)(out) + ADP + phosphate + H(+)"]]},{"id":"GO:0044003","l":"symbiont-mediated perturbation of host process","na":4,"nb":20,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"]],"b":[["GO%3A0140418","effector-mediated perturbation of host process by symbiont"],["GO%3A0098676","symbiont-mediated modulation of host virulence"],["GO%3A0044068","symbiont-mediated perturbation of host cellular process"],["GO%3A0052031","symbiont-mediated perturbation of host defense response"],["GO%3A0044003","symbiont-mediated perturbation of host process"],["GO%3A0033635","symbiont-mediated perturbation of host response to abiotic stimulus"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":4,"nb":19,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["Pfam%3APF03306","Alpha-acetolactate decarboxylase"],["Pfam%3APF22208","Cas_Csm6 CARF domain"],["Pfam%3APF09659","Cas_Csm6 HEPN domain"],["Pfam%3APF22335","Cas10/Cmr2, second palm domain"],["Pfam%3APF18395","Cas3 C-terminal domain"],["Pfam%3APF18019","Cas3, HD domain"]]},{"id":"CHEBI:16899","l":"D-mannitol","na":4,"nb":17,"a":[["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["EC%3A1.1.1.138","mannitol 2-dehydrogenase (NADP(+))"],["EC%3A1.1.1.255","mannitol dehydrogenase"],["EC%3A1.1.1.67","mannitol 2-dehydrogenase"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.3.40","D-mannitol oxidase"],["EC%3A2.7.1.197","protein-N(pi)-phosphohistidine--D-mannitol phosphotransferase"]]},{"id":"GO:0019333","l":"denitrification pathway","na":13,"nb":4,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"]],"b":[["GO%3A0019333","denitrification pathway"],["NCBIfam%3ATIGR02161","periplasmic nitrate (or nitrite) reductase c-type cytochrome, NapC/NirT family"],["NCBIfam%3ATIGR04244","TAT-dependent nitrous-oxide reductase"],["NCBIfam%3ATIGR04246","Sec-dependent nitrous-oxide reductase"]]},{"id":"GO:0019543","l":"propionate catabolic process","na":4,"nb":11,"a":[["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["GO%3A0019543","propionate catabolic process"],["NCBIfam%3ATIGR02334","2-methylaconitate cis-trans isomerase PrpF"],["NCBIfam%3ATIGR02330","2-methylcitrate dehydratase"],["NCBIfam%3ANF006943","bifunctional 2-methylcitrate dehydratase/aconitate hydratase"],["NCBIfam%3ANF009006","bifunctional 2-methylcitrate synthase/citrate synthase"],["NCBIfam%3ATIGR02333","Fe/S-dependent 2-methylisocitrate dehydratase AcnD"]]},{"id":"CHEBI:48775","l":"cadmium(2+)","na":4,"nb":9,"a":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Meghalaya_Bacillus_Consortia_A22ED9.html","Meghalaya Bacillus Consortia-A22ED9"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["SynCom_Pseudomonas_Rahnella_Artemisia_Phytoremediation.html","Pseudomonas-Rahnella native rhizosphere SynCom for Artemisia argyi phytoremediation"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_48775","requires cadmium(2+)"],["EC%3A7.2.2.2","ABC-type Cd(2+) transporter"],["EC%3A7.2.2.21","Cd(2+)-exporting ATPase"],["RHEA%3A12132","Cd(2+)(in) + ATP + H2O = Cd(2+)(out) + ADP + phosphate + H(+)"],["RHEA%3A28707","Cd(2+)(in) = Cd(2+)(out)"],["RHEA%3A28739","Cd(2+)(in) + H(+)(out) = Cd(2+)(out) + H(+)(in)"]]},{"id":"CHEBI:17029","l":"chitin","na":4,"nb":8,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]],"b":[["EC%3A2.4.1.16","chitin synthase"],["EC%3A3.5.1.41","chitin deacetylase"],["RHEA%3A85463","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-1)-N-acetyl-alpha-D-glucosamine"],["RHEA%3A50672","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-2) + N,N'-diacetylchitobiose"],["RHEA%3A85003","[(1->4)-N-acetyl-beta-D-glucosaminyl](n)-N-acetyl-alpha-D-glucosamine + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n) + N-acetyl-alpha-D-glucosamine"],["RHEA%3A10464","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + n H2O = chitosan + n acetate"]]},{"id":"CHEBI:30411","l":"cobalamin","na":8,"nb":4,"a":[["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_30411","requires cobalamin"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.A.54","The Lysosomal Cobalamin (B12) Transporter (L-B12T) Family"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]]},{"id":"CHEBI:64709","l":"organic acid","na":7,"nb":4,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["TCDB%3A2.A.28","The Bile Acid:Na+ Symporter (BASS) Family"],["TCDB%3A2.A.23","The Dicarboxylate/Amino Acid:Cation (Na+ or H+) Symporter (DAACS) Family"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.25","The Outer Membrane Porin (Opr) Family"]]},{"id":"CHEBI:28509","l":"chloroethene","na":6,"nb":4,"a":[["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["RHEA%3A68000","1,1-dichloroethene + AH2 = chloroethene + chloride + A + H(+)"],["RHEA%3A68004","chloroethene + AH2 = ethene + chloride + A + H(+)"],["RHEA%3A83555","chloroethene + reduced [NADPH--hemoprotein reductase] + O2 = chloroethylene oxide + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A67996","(Z)-1,2-dichloroethene + AH2 = chloroethene + chloride + A + H(+)"]]},{"id":"GO:1903457","l":"lactate catabolic process","na":6,"nb":4,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["GO%3A1990484","aerobic lactate catabolic process"],["GO%3A1990485","anaerobic lactate catabolic process"],["GO%3A1903457","lactate catabolic process"],["NCBIfam%3ANF049975","D-2-hydroxyglutarate dehydrogenase YdiJ"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":4,"nb":6,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF10779","Haemolysin XhlA"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF08181","DegQ (SacQ) family"],["Pfam%3APF08057","Erythromycin resistance leader peptide"],["Pfam%3APF14867","Lantibiotic alpha"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":4,"nb":6,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["Pfam%3APF16376","N-terminal domain of fragilysin"],["TED%3AAF-A0A412XR06-F1-model_v4_TED03","TED novel fold AF-A0A412XR06-F1-model_v4_TED03"],["TED%3AAF-A0A4V1EUI2-F1-model_v4_TED02","TED novel fold AF-A0A4V1EUI2-F1-model_v4_TED02"],["TED%3AAF-A0A5C6IXH5-F1-model_v4_TED01","TED novel fold AF-A0A5C6IXH5-F1-model_v4_TED01"],["TED%3AAF-A0A5C6L6G9-F1-model_v4_TED02","TED novel fold AF-A0A5C6L6G9-F1-model_v4_TED02"],["TED%3AAF-A0A642KY52-F1-model_v4_TED01","TED novel fold AF-A0A642KY52-F1-model_v4_TED01"]]},{"id":"CHEBI:16670","l":"peptide","na":4,"nb":5,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A9.B.46","The Staphylococcus aureus Putative Quorum Sensing Peptide Exporter, AgrB (AgrB) Family"],["TCDB%3A3.A.25","The Symbiont-specific ERAD-like Machinery (SELMA) Family"],["proteintraitsmech%3ABIOLIP_PEPTIDE","peptide-binding site"]]},{"id":"NCBITaxon:5544","l":"Trichoderma harzianum","na":5,"nb":4,"a":[["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"],["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"],["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["Pfam%3APF00840","Glycosyl hydrolase family 7"],["Pfam%3APF12708","Rhamnogalacturonase A/epimerase, pectate lyase-like"],["TED%3AAF-A0A0F9XDU3-F1-model_v4_TED01","TED novel fold AF-A0A0F9XDU3-F1-model_v4_TED01"],["TED%3AAF-A0A0G0ASL4-F1-model_v4_TED01","TED novel fold AF-A0A0G0ASL4-F1-model_v4_TED01"]]},{"id":"CHEBI:18154","l":"polysaccharide","na":4,"nb":4,"a":[["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Wollastonite_Ramichloridium_Talaromyces_Fungal_Consortium.html","Wollastonite Ramichloridium-Talaromyces Fungal Consortium"]],"b":[["TCDB%3A9.B.97","The Acyltransferase-3/Putative Acetyl-CoA Transporter (AT3AT) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.18","The Outer Membrane Auxiliary (OMA) Protein Family"]]},{"id":"GO:0019541","l":"propionate metabolic process","na":4,"nb":4,"a":[["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["GO%3A0019542","propionate biosynthetic process"],["GO%3A0019543","propionate catabolic process"],["GO%3A0019541","propionate metabolic process"],["GO%3A0019657","pyruvate fermentation to propionate"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":3,"nb":212,"a":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["EC%3A1.1.1.244","methanol dehydrogenase"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.99.37","methanol dehydrogenase (nicotinoprotein)"],["EC%3A1.13.11.94","4-vinylguaiacol dioxygenase"],["EC%3A1.14.11.27","[histone H3]-dimethyl-L-lysine(36) demethylase"]]},{"id":"GO:0006520","l":"amino acid metabolic process","na":3,"nb":155,"a":[["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["GO%3A0043038","amino acid activation"],["GO%3A0008652","amino acid biosynthetic process"],["GO%3A0009063","amino acid catabolic process"],["GO%3A0006520","amino acid metabolic process"],["GO%3A0006525","arginine metabolic process"],["GO%3A0009072","aromatic amino acid metabolic process"]]},{"id":"CHEBI:17359","l":"sulfite","na":3,"nb":109,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"]],"b":[["EC%3A1.13.11.18","persulfide dioxygenase"],["EC%3A1.13.11.55","sulfur oxygenase/reductase"],["EC%3A1.14.11.17","taurine dioxygenase"],["EC%3A1.14.12.8","4-sulfobenzoate 3,4-dioxygenase"],["EC%3A1.14.13.111","methanesulfonate monooxygenase (NADH)"],["EC%3A1.14.14.181","sulfoquinovose monooxygenase"]]},{"id":"GO:0007155","l":"cell adhesion","na":3,"nb":102,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"]],"b":[["ComplexPortal%3ACPX-12912","BCAR1-CRK-SH2D3C, focal adhesion regulator complex"],["ComplexPortal%3ACPX-1737","Collagen type VII trimer"],["ComplexPortal%3ACPX-2966","Collagen type VII trimer"],["ComplexPortal%3ACPX-2855","Fimbrial Tip Complex FimFGH"],["ComplexPortal%3ACPX-450","Multimerin-2 complex"],["ComplexPortal%3ACPX-451","Multimerin-2 complex"]]},{"id":"GO:0008652","l":"amino acid biosynthetic process","na":3,"nb":69,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"]],"b":[["GO%3A0008153","4-aminobenzoate biosynthetic process"],["GO%3A0006523","alanine biosynthetic process"],["GO%3A0008652","amino acid biosynthetic process"],["GO%3A0043102","amino acid salvage"],["GO%3A0019483","beta-alanine biosynthetic process"],["GO%3A0035499","carnosine biosynthetic process"]]},{"id":"GO:0030001","l":"metal ion transport","na":3,"nb":66,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["GO%3A0015690","aluminum cation transport"],["GO%3A0006816","calcium ion transport"],["GO%3A0015692","lead ion transport"],["GO%3A0010351","lithium ion transport"],["GO%3A0015693","magnesium ion transport"],["GO%3A0030001","metal ion transport"]]},{"id":"CHEBI:29035","l":"manganese(2+)","na":3,"nb":44,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29035","requires manganese(2+)"],["EC%3A1.11.1.13","manganese peroxidase"],["EC%3A1.11.1.16","versatile peroxidase"],["EC%3A1.16.3.3","manganese oxidase"],["EC%3A7.2.2.22","P-type Mn(2+) transporter"],["EC%3A7.2.2.5","ABC-type Mn(2+) transporter"]]},{"id":"GO:0010467","l":"gene expression","na":3,"nb":41,"a":[["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["GO%3A0001816","cytokine production"],["GO%3A0010467","gene expression"],["GO%3A1901148","gene expression involved in extracellular matrix organization"],["GO%3A0140053","mitochondrial gene expression"],["GO%3A0036162","oxytocin production"],["GO%3A0140899","plastid gene expression"]]},{"id":"CHEBI:17750","l":"glycine betaine","na":3,"nb":33,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["EC%3A1.1.3.17","choline oxidase"],["EC%3A1.13.11.90","[1-hydroxy-2-(trimethylamino)ethyl]phosphonate dioxygenase (glycine- betaine-forming)"],["EC%3A1.14.13.251","glycine betaine monooxygenase"],["EC%3A1.2.1.8","betaine-aldehyde dehydrogenase"],["EC%3A1.21.4.4","betaine reductase"],["EC%3A2.1.1.157","sarcosine/dimethylglycine N-methyltransferase"]]},{"id":"CHEBI:29103","l":"potassium(1+)","na":3,"nb":32,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29103","requires potassium(1+)"],["EC%3A7.2.2.13","Na(+)/K(+)-exchanging ATPase"],["EC%3A7.2.2.19","H(+)/K(+)-exchanging ATPase"],["EC%3A7.2.2.6","P-type K(+) transporter"],["RHEA%3A18353","2 K(+)(out) + 3 Na(+)(in) + ATP + H2O = 2 K(+)(in) + 3 Na(+)(out) + ADP + phosphate + H(+)"],["RHEA%3A69967","Ca(2+)(out) + K(+)(out) + 4 Na(+)(in) = Ca(2+)(in) + K(+)(in) + 4 Na(+)(out)"]]},{"id":"NCBITaxon:3055","l":"Chlamydomonas reinhardtii","na":3,"nb":27,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]],"b":[["Pfam%3APF01333","Apocytochrome F, C-terminal"],["Pfam%3APF16639","Apocytochrome F, N-terminal"],["Pfam%3APF00430","ATP synthase B/B' CF(0)"],["Pfam%3APF00401","ATP synthase, Delta/Epsilon chain, long alpha-helix domain"],["Pfam%3APF21771","CFAP58 central coiled coil"],["Pfam%3APF27956","CFAP99 V-shaped coiled-coil domain"]]},{"id":"GO:0031347","l":"regulation of defense response","na":3,"nb":25,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"],["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["GO%3A0031348","negative regulation of defense response"],["GO%3A0031349","positive regulation of defense response"],["GO%3A0002759","regulation of antimicrobial humoral response"],["GO%3A2000822","regulation of behavioral fear response"],["GO%3A0010185","regulation of cellular defense response"],["GO%3A2000071","regulation of defense response by callose deposition"]]},{"id":"GO:0000162","l":"L-tryptophan biosynthetic process","na":3,"nb":22,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"]],"b":[["ComplexPortal%3ACPX-1850","Anthranilate synthase complex"],["ComplexPortal%3ACPX-4783","Anthranilate synthase complex"],["ComplexPortal%3ACPX-3446","TrpAB tryptophan synthase complex"],["GO%3A0000162","L-tryptophan biosynthetic process"],["NCBIfam%3ANF010081","anthranilate synthase component I"],["NCBIfam%3ANF010086","anthranilate synthase component I"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":3,"nb":21,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29108","requires calcium(2+)"],["EC%3A1.13.12.24","calcium-regulated photoprotein"],["EC%3A7.2.2.10","P-type Ca(2+) transporter"],["RHEA%3A72631","3 Li(+)(out) + Ca(2+)(in) = 3 Li(+)(in) + Ca(2+)(out)"],["RHEA%3A55884","[aequorin] + 3 Ca(2+) = [aequorin]--dioxetanone"],["RHEA%3A55888","[aequorin]--dioxetanone = excited state-[aequorin] + CO2"]]},{"id":"CHEBI:17716","l":"lactose","na":3,"nb":20,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"]],"b":[["EC%3A2.4.1.22","lactose synthase"],["EC%3A2.7.1.207","protein-N(pi)-phosphohistidine--lactose phosphotransferase"],["EC%3A3.2.1.108","lactase"],["EC%3A3.2.1.140","lacto-N-biosidase"],["EC%3A3.2.1.227","N-acetyllactosaminidase"],["RHEA%3A86923","a beta-D-Gal-(1->4)-beta-D-Glc-(1<->1)-Cer(d18:1(4E)) + H2O = lactose + an N-acylsphing-4-enine"]]},{"id":"GO:0045088","l":"regulation of innate immune response","na":3,"nb":19,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["GO%3A0045824","negative regulation of innate immune response"],["GO%3A0045089","positive regulation of innate immune response"],["GO%3A1904248","regulation of age-related resistance"],["GO%3A1905034","regulation of antifungal innate immune response"],["GO%3A0030451","regulation of complement activation, alternative pathway"],["GO%3A0001868","regulation of complement activation, lectin pathway"]]},{"id":"CHEBI:48828","l":"cobalt(2+)","na":3,"nb":16,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_48828","requires cobalt(2+)"],["EC%3A1.16.99.1","[Co(II) methylated amine-specific corrinoid protein] reductase"],["EC%3A4.99.1.3","sirohydrochlorin cobaltochelatase"],["EC%3A6.6.1.2","cobaltochelatase"],["RHEA%3A65832","2 Co(II)-[dimethylamine-specific corrinoid protein] + AH2 + ATP + H2O = 2 Co(I)-[dimethylamine-specific corrinoid protein] + A + ADP + phosphate + 3 H(+)"],["RHEA%3A65816","2 Co(II)-[methylamine-specific corrinoid protein] + AH2 + ATP + H2O = 2 Co(I)-[methylamine-specific corrinoid protein] + A + ADP + phosphate + 3 H(+)"]]},{"id":"CHEBI:17045","l":"dinitrogen oxide","na":3,"nb":13,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"]],"b":[["EC%3A1.7.1.14","nitric oxide reductase [NAD(P)(+), nitrous oxide-forming]"],["EC%3A1.7.2.4","nitrous-oxide reductase"],["EC%3A1.7.2.5","nitric-oxide reductase (cytochrome c)"],["EC%3A1.7.5.2","nitric oxide reductase (menaquinol)"],["RHEA%3A30215","a menaquinol + 2 nitric oxide = nitrous oxide + a menaquinone + H2O"],["RHEA%3A43108","N2 + 2 Fe(III)-[cytochrome c] + H2O = nitrous oxide + 2 Fe(II)-[cytochrome c] + 2 H(+)"]]},{"id":"CHEBI:26271","l":"proline","na":3,"nb":12,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.15","The Betaine/Carnitine/Choline Transporter (BCCT) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"]]},{"id":"GO:0006083","l":"acetate metabolic process","na":3,"nb":12,"a":[["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["GO%3A0019413","acetate biosynthetic process"],["GO%3A0045733","acetate catabolic process"],["GO%3A0006083","acetate metabolic process"],["GO%3A0045122","aflatoxin biosynthetic process"],["GO%3A0019658","bifid shunt"],["GO%3A0019475","L-lysine fermentation"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":11,"nb":3,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["Pfam%3APF14864","Alkyl sulfatase C-terminal"],["Pfam%3APF13816","Haem-containing dehydratase"],["Pfam%3APF14863","Alkyl sulfatase dimerisation"]]},{"id":"GO:0019329","l":"ammonia oxidation","na":10,"nb":3,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"]],"b":[["GO%3A0019409","aerobic respiration, using ammonia as electron donor"],["GO%3A0019329","ammonia oxidation"],["GO%3A0019331","anaerobic respiration, using ammonium as electron donor"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":3,"nb":10,"a":[["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["Pfam%3APF27445","Adaptation to cold protein A"],["Pfam%3APF27450","AtcB C-terminal domain"],["Pfam%3APF27486","AtcB N-terminal domain"],["Pfam%3APF02464","CinA C-terminal domain"],["Pfam%3APF13657","HipA N-terminal domain"],["Pfam%3APF01934","Ribonuclease HepT-like"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":3,"nb":10,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF09081","Glucan 1,4-alpha-maltotetraohydrolase, domain C"],["Pfam%3APF09459","Ethylbenzene dehydrogenase"],["Pfam%3APF08406","CbbQ/NirQ/NorQ C-terminal"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"],["Pfam%3APF18793","Nitrous oxide reductase propeller repeat 2"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":3,"nb":10,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["Pfam%3APF17433","Glycosyl hydrolase family 49 N-terminal Ig-like domain"],["PROSITE%3APS00820","Glucoamylase active site region signature"],["PROSITE%3APS00920","Nitrilases / cyanide hydratase signature 1"],["PROSITE%3APS00502","Polygalacturonase active site"],["Pfam%3APF18841","Beta solenoid repeat from Dextranase"],["Pfam%3APF03718","Glycosyl hydrolase family 49"]]},{"id":"NCBITaxon:853","l":"Faecalibacterium prausnitzii","na":3,"nb":10,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"]],"b":[["TED%3AAF-A0A2A7AJ69-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A7AJ69-F1-model_v4_TED01"],["TED%3AAF-A0A329UNG0-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A329UNG0-F1-model_v4_TED05"],["TED%3AAF-A0A3F3JVN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3F3JVN3-F1-model_v4_TED01"],["TED%3AAF-A0A564SWB8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A564SWB8-F1-model_v4_TED02"],["TED%3AAF-A0A173SIF7-F1-model_v4_TED01","TED novel fold AF-A0A173SIF7-F1-model_v4_TED01"],["TED%3AAF-A0A173WYP6-F1-model_v4_TED01","TED novel fold AF-A0A173WYP6-F1-model_v4_TED01"]]},{"id":"CHEBI:16602","l":"trichloroethene","na":9,"nb":3,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["EC%3A1.21.99.5","tetrachloroethene reductive dehalogenase"],["RHEA%3A67992","trichloroethene + AH2 = (Z)-1,2-dichloroethene + chloride + A + H(+)"],["RHEA%3A20353","trichloroethene + chloride + A + H(+) = tetrachloroethene + AH2"]]},{"id":"CHEBI:18367","l":"phosphate(3-)","na":9,"nb":3,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["proteintraitsmech%3ABIOLIP_PO4","PO4-binding site"]]},{"id":"CHEBI:87393","l":"hexan-1-ol","na":3,"nb":9,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["RHEA%3A65480","2-methylbutanoyl-CoA + hexan-1-ol = hexyl 2-methylbutanoate + CoA"],["RHEA%3A79331","hexan-1-ol + 2 Fe(III)-[cytochrome c] = hexanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A65460","hexan-1-ol + acetyl-CoA = hexyl acetate + CoA"],["RHEA%3A65444","hexan-1-ol + butanoyl-CoA = hexyl butanoate + CoA"],["RHEA%3A65484","hexan-1-ol + hexanoyl-CoA = hexyl hexanoate + CoA"],["RHEA%3A60972","hexan-1-ol + NAD(+) = hexanal + NADH + H(+)"]]},{"id":"GO:1990748","l":"cellular detoxification","na":3,"nb":9,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["GO%3A1990748","cellular detoxification"],["GO%3A0140977","cellular detoxification of acetone"],["GO%3A0110095","cellular detoxification of aldehyde"],["GO%3A0140114","cellular detoxification of fluoride"],["GO%3A0140961","cellular detoxification of metal ion"],["GO%3A0070458","cellular detoxification of nitrogen compound"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":3,"nb":8,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["Pfam%3APF01890","Cobalamin synthesis G C-terminus"],["Pfam%3APF11761","Cobalamin biosynthesis central region"],["Pfam%3APF11760","Cobalamin synthesis G N-terminal"],["Pfam%3APF02570","Precorrin-8X methylmutase"],["PROSITE%3APS00304","Small, acid-soluble spore proteins, alpha/beta type, signature 1"],["PROSITE%3APS00684","Small, acid-soluble spore proteins, alpha/beta type, signature 2"]]},{"id":"CHEBI:30742","l":"ethylene glycol","na":3,"nb":7,"a":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"]],"b":[["EC%3A3.1.1.102","mono(ethylene terephthalate) hydrolase"],["RHEA%3A42648","(2,5-ethylene furandicarboxylate)(n) + 2 H2O = (2,5-ethylene furandicarboxylate)(n-1) + 2,5-dicarboxyfuran + ethylene glycol + 2 H(+)"],["RHEA%3A49532","4-[(2-hydroxyethoxy)carbonyl]benzoate + H2O = terephthalate + ethylene glycol + H(+)"],["RHEA%3A80759","bis(2-hydroxyethyl) terephthalate + H2O = 4-[(2-hydroxyethoxy)carbonyl]benzoate + ethylene glycol + H(+)"],["RHEA%3A27630","ethylene glycol + NAD(+) = glycolaldehyde + NADH + H(+)"],["MCSA%3A847","epoxide hydrolase"]]},{"id":"NCBITaxon:28116","l":"Bacteroides ovatus","na":3,"nb":7,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["TED%3AAF-A0A515J030-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A515J030-F1-model_v4_TED01"],["TED%3AAF-A0A5M5C3M7-F1-model_v4_TED01","TED novel fold AF-A0A5M5C3M7-F1-model_v4_TED01"],["TED%3AAF-A0A641PL20-F1-model_v4_TED01","TED novel fold AF-A0A641PL20-F1-model_v4_TED01"],["TED%3AAF-A0A641V3P9-F1-model_v4_TED03","TED novel fold AF-A0A641V3P9-F1-model_v4_TED03"],["TED%3AAF-A0A641VT79-F1-model_v4_TED01","TED novel fold AF-A0A641VT79-F1-model_v4_TED01"],["TED%3AAF-A0A642C648-F1-model_v4_TED01","TED novel fold AF-A0A642C648-F1-model_v4_TED01"]]},{"id":"CHEBI:15890","l":"5,6-dimethylbenzimidazole","na":3,"nb":6,"a":[["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["EC%3A1.13.11.79","aerobic 5,6-dimethylbenzimidazole synthase"],["EC%3A2.4.2.21","nicotinate-nucleotide--dimethylbenzimidazole phosphoribosyltransferase"],["RHEA%3A11196","5,6-dimethylbenzimidazole + nicotinate beta-D-ribonucleotide = alpha-ribazole 5'-phosphate + nicotinate + H(+)"],["RHEA%3A27345","FMNH2 + O2 = dialurate + 5,6-dimethylbenzimidazole + D-erythrose 4-phosphate + H(+)"],["MCSA%3A79","nicotinate-nucleotide-dimethylbenzimidazole phosphoribosyltransferase"],["proteintraitsmech%3ABIOLIP_DMD","DMD-binding site"]]},{"id":"CHEBI:27266","l":"valine","na":3,"nb":6,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.26","The Branched Chain Amino Acid:Cation Symporter (LIVCS) Family"],["TCDB%3A2.A.78","The Branched Chain Amino Acid Exporter (LIV-E) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:55474","l":"N-acyl-L-homoserine lactone","na":3,"nb":6,"a":[["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["EC%3A2.3.1.184","acyl-homoserine-lactone synthase"],["EC%3A3.1.1.81","quorum-quenching N-acyl-homoserine lactonase"],["EC%3A3.5.1.97","acyl-homoserine-lactone acylase"],["RHEA%3A10096","a fatty acyl-[ACP] + S-adenosyl-L-methionine = an N-acyl-L-homoserine lactone + S-methyl-5'-thioadenosine + holo-[ACP] + H(+)"],["RHEA%3A22576","an N-acyl-L-homoserine lactone + H2O = an N-acyl-L-homoserine + H(+)"],["RHEA%3A18937","an N-acyl-L-homoserine lactone + H2O = L-homoserine lactone + a carboxylate"]]},{"id":"NCBITaxon:1390","l":"Bacillus amyloliquefaciens","na":3,"nb":6,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]],"b":[["Pfam%3APF02923","Restriction endonuclease BamHI"],["Pfam%3APF01337","Barstar (barnase inhibitor)"],["Pfam%3APF22148","Fervidolysin N-terminal prodomain"],["PROSITE%3APS00093","N-4 cytosine-specific DNA methylases signature"],["PROSITE%3APS01334","Pyrrolidone-carboxylate peptidase cysteine active site"],["PROSITE%3APS01333","Pyrrolidone-carboxylate peptidase glutamic acid active site"]]},{"id":"CHEBI:17015","l":"riboflavin","na":5,"nb":3,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17015","requires riboflavin"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_RBF","RBF-binding site"]]},{"id":"CHEBI:26672","l":"siderophore","na":3,"nb":5,"a":[["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_26672","siderophore cofactor class"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.17","The Outer Membrane Factor (OMF) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]]},{"id":"GO:0005987","l":"sucrose catabolic process","na":5,"nb":3,"a":[["Synechococcus_Bacillus_SPC.html","Synechococcus-Bacillus Synthetic Photosynthetic Consortium"],["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"],["Synechococcus_Saccharomyces_SPC.html","Synechococcus-Saccharomyces Synthetic Photosynthetic Consortium"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["GO%3A0061704","glycolytic process from sucrose"],["GO%3A0005987","sucrose catabolic process"],["NCBIfam%3ANF006957","fructokinase"]]},{"id":"GO:0006766","l":"vitamin metabolic process","na":3,"nb":5,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["GO%3A0042816","vitamin B6 metabolic process"],["GO%3A0009110","vitamin biosynthetic process"],["GO%3A0009111","vitamin catabolic process"],["GO%3A0006766","vitamin metabolic process"],["Reactome%3AR-HSA-211916","Vitamins"]]},{"id":"GO:0009410","l":"response to xenobiotic stimulus","na":3,"nb":5,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["SkinCom_Synthetic_Skin_Community.html","SkinCom Synthetic Skin Community"]],"b":[["GO%3A0071466","cellular response to xenobiotic stimulus"],["GO%3A0009410","response to xenobiotic stimulus"],["NCBIfam%3ATIGR00957","multi drug resistance-associated protein (MRP)"],["NCBIfam%3ANF018181","R67 dihydrofolate reductase"],["Pfam%3APF06442","R67 dihydrofolate reductase"]]},{"id":"NCBITaxon:1667","l":"Arthrobacter sp.","na":3,"nb":5,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["Pfam%3APF14031","Putative serine dehydratase domain"],["Pfam%3APF02449","Beta-galactosidase"],["Pfam%3APF08533","Beta-galactosidase C-terminal domain"],["Pfam%3APF08532","Beta-galactosidase trimerisation domain"],["TED%3AAF-A0A3C2BWN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C2BWN3-F1-model_v4_TED01"]]},{"id":"CHEBI:17191","l":"L-isoleucine","na":3,"nb":4,"a":[["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"]],"b":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.26","The Branched Chain Amino Acid:Cation Symporter (LIVCS) Family"],["proteintraitsmech%3ABIOLIP_ILE","ILE-binding site"]]},{"id":"CHEBI:18237","l":"glutamic acid","na":4,"nb":3,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:72813","l":"exopolysaccharide","na":4,"nb":3,"a":[["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.18","The Outer Membrane Auxiliary (OMA) Protein Family"]]},{"id":"GO:0019386","l":"methanogenesis, from carbon dioxide","na":3,"nb":4,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Tropidoatractus_Magnetotacticus_Tripartite_Syntrophy.html","Tropidoatractus magnetotacticus Magnetotactic Ciliate Tripartite Syntrophy"]],"b":[["GO%3A0019386","methanogenesis, from carbon dioxide"],["NCBIfam%3ATIGR01723","5,10-methenyltetrahydromethanopterin hydrogenase"],["NCBIfam%3ATIGR01112","tetrahydromethanopterin S-methyltransferase subunit D"],["NCBIfam%3ATIGR01113","tetrahydromethanopterin S-methyltransferase subunit E"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":3,"nb":4,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF09711","CRISPR-associated protein (Cas_Csn2)"],["Pfam%3APF06308","23S rRNA methylastransferase leader peptide (ErmCL)"]]},{"id":"NCBITaxon:3076","l":"Chlorella sorokiniana","na":3,"nb":4,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Dairy_Wastewater_Algal_Cyanobacterial_Cultivation_Panel.html","Dairy Wastewater Algal-Cyanobacterial Cultivation Panel"],["SynCom_Chlorella_sorokiniana_Biogas_Slurry_Coupling_System.html","SynCom + Chlorella sorokiniana Biogas-slurry Coupling System"]],"b":[["TED%3AAF-A0A2P6TR54-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P6TR54-F1-model_v4_TED01"],["TED%3AAF-A0A2P6TVK6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P6TVK6-F1-model_v4_TED01"],["TED%3AAF-A0A2P6TZ25-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2P6TZ25-F1-model_v4_TED02"],["TED%3AAF-A0A2P6TLT0-F1-model_v4_TED05","TED novel fold AF-A0A2P6TLT0-F1-model_v4_TED05"]]},{"id":"NCBITaxon:33038","l":"Mediterraneibacter gnavus","na":4,"nb":3,"a":[["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Clostridial_isoDCA_Mini_Consortium.html","Clostridial isoDCA Mini Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["Pfam%3APF16874","Glycosyl hydrolase family 36 C-terminal domain"],["Pfam%3APF16875","Glycosyl hydrolase family 36 N-terminal domain"],["Pfam%3APF04604","Type-A lantibiotic"]]},{"id":"CHEBI:16482","l":"naphthalene","na":3,"nb":3,"a":[["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"]],"b":[["EC%3A1.14.12.12","naphthalene 1,2-dioxygenase"],["RHEA%3A19173","naphthalene + NADH + O2 + H(+) = (1R,2S)-1,2-dihydronaphthalene-1,2-diol + NAD(+)"],["MCSA%3A130","naphthalene 1,2-dioxygenase"]]},{"id":"GO:0009110","l":"vitamin biosynthetic process","na":3,"nb":3,"a":[["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["GO%3A0042362","fat-soluble vitamin biosynthetic process"],["GO%3A0009110","vitamin biosynthetic process"],["GO%3A0042364","water-soluble vitamin biosynthetic process"]]},{"id":"GO:0098743","l":"cell aggregation","na":3,"nb":3,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["GO%3A0098630","aggregation of unicellular organisms"],["GO%3A0001502","cartilage condensation"],["GO%3A0098743","cell aggregation"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":3,"nb":3,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["Pfam%3APF03423","Carbohydrate binding domain (family 25)"],["Pfam%3APF03422","Carbohydrate binding module (family 6)"],["TED%3AAF-A0A7X5SGP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X5SGP7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:3702","l":"Arabidopsis thaliana","na":2,"nb":18772,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["EC%3A1.1.99.-","With other acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.14.11.-","With 2-oxoglutarate as one donor, and incorporation of one atom each of oxygen into both donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.14.-","With reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen"]]},{"id":"CHEBI:30031","l":"succinate(2-)","na":2,"nb":502,"a":[["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["EC%3A1.14.11.1","gamma-butyrobetaine dioxygenase"],["EC%3A1.14.11.10","pyrimidine-deoxynucleoside 1'-dioxygenase"],["EC%3A1.14.11.11","hyoscyamine (6S)-dioxygenase"],["EC%3A1.14.11.12","gibberellin-44 dioxygenase"],["EC%3A1.14.11.13","gibberellin 2beta-dioxygenase"],["EC%3A1.14.11.15","gibberellin 3beta-dioxygenase"]]},{"id":"GO:0010468","l":"regulation of gene expression","na":2,"nb":394,"a":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["ComplexPortal%3ACPX-1129","Atk-1/Akt-2/Sgk-1 protein kinase complex"],["ComplexPortal%3ACPX-5666","CCAAT-binding factor complex, nfya-1 variant"],["ComplexPortal%3ACPX-5667","CCAAT-binding factor complex, nfya-2 variant"],["ComplexPortal%3ACPX-4305","DHIC complex"],["ComplexPortal%3ACPX-3885","sir-2.1-ftt-2 complex"],["ComplexPortal%3ACPX-3886","sir-2.1-par-5 complex"]]},{"id":"CHEBI:4167","l":"D-glucopyranose","na":2,"nb":217,"a":[["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["EC%3A1.1.1.118","glucose 1-dehydrogenase (NAD(+))"],["EC%3A1.1.1.119","glucose 1-dehydrogenase (NADP(+))"],["EC%3A1.1.1.359","aldose 1-dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.1.360","glucose/galactose 1-dehydrogenase"],["EC%3A1.1.1.432","6-dehydroglucose reductase"],["EC%3A1.1.1.47","glucose 1-dehydrogenase [NAD(P)(+)]"]]},{"id":"CHEBI:17996","l":"chloride","na":2,"nb":196,"a":[["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17996","requires chloride"],["EC%3A1.11.2.2","myeloperoxidase"],["EC%3A1.13.11.49","chlorite O2-lyase"],["EC%3A1.14.12.13","2-halobenzoate 1,2-dioxygenase"],["EC%3A1.14.12.9","4-chlorophenylacetate 3,4-dioxygenase"],["EC%3A1.14.13.50","pentachlorophenol monooxygenase"]]},{"id":"GO:0016032","l":"viral process","na":2,"nb":113,"a":[["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"]],"b":[["GO%3A0075526","cap snatching"],["GO%3A0099015","degradation of host chromosome by virus"],["GO%3A0019043","establishment of viral latency"],["GO%3A0039674","exit of virus from host cell nucleus"],["GO%3A0039700","fusion of viral membrane with host outer nuclear membrane"],["GO%3A0075522","IRES-dependent viral translational initiation"]]},{"id":"GO:0006099","l":"tricarboxylic acid cycle","na":2,"nb":92,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["ComplexPortal%3ACPX-3921","2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-9044","Mitochondrial 2-oxoglutarate dehydrogenase complex,CG1544 variant"],["ComplexPortal%3ACPX-9043","Mitochondrial 2-oxoglutarate dehydrogenase complex, CG33791 variant"],["ComplexPortal%3ACPX-1293","Mitochondrial 2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-9061","Mitochondrial 2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-9042","Mitochondrial 2-oxoglutarate dehydrogenase complex, ODGH variant"]]},{"id":"GO:0009733","l":"response to auxin","na":2,"nb":89,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["ComplexPortal%3ACPX-1523","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK10"],["ComplexPortal%3ACPX-1524","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK11"],["ComplexPortal%3ACPX-1525","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK12"],["ComplexPortal%3ACPX-1526","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK13"],["ComplexPortal%3ACPX-1527","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK14"],["ComplexPortal%3ACPX-1528","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK15"]]},{"id":"GO:0016053","l":"obsolete organic acid biosynthetic process","na":2,"nb":83,"a":[["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Wollastonite_Ramichloridium_Talaromyces_Fungal_Consortium.html","Wollastonite Ramichloridium-Talaromyces Fungal Consortium"]],"b":[["PANTHER%3APTHR43090","1-(5-PHOSPHORIBOSYL)-5-[(5-PHOSPHORIBOSYLAMINO)METHYLIDENEAMINO] IMIDAZOLE-4-CARBOXAMIDE ISOMERASE"],["PANTHER%3APTHR43699","3-DEHYDROQUINATE DEHYDRATASE"],["PANTHER%3APTHR42979","3-ISOPROPYLMALATE DEHYDROGENASE"],["PANTHER%3APTHR20881","3-METHYL-2-OXOBUTANOATE HYDROXYMETHYLTRANSFERASE"],["PANTHER%3APTHR46832","5'-METHYLTHIOADENOSINE/S-ADENOSYLHOMOCYSTEINE NUCLEOSIDASE"],["PANTHER%3APTHR31242","ACETOLACTATE SYNTHASE SMALL SUBUNIT, MITOCHONDRIAL"]]},{"id":"CHEBI:15354","l":"choline","na":2,"nb":78,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["EC%3A1.1.3.17","choline oxidase"],["EC%3A1.1.99.1","choline dehydrogenase"],["EC%3A1.14.15.7","choline monooxygenase"],["EC%3A2.3.1.6","choline O-acetyltransferase"],["EC%3A2.3.1.91","sinapoylglucose--choline O-sinapoyltransferase"],["EC%3A2.7.1.32","choline kinase"]]},{"id":"CHEBI:29806","l":"fumarate(2-)","na":2,"nb":76,"a":[["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["EC%3A1.3.1.6","fumarate reductase (NADH)"],["EC%3A1.3.2.4","fumarate reductase (cytochrome)"],["EC%3A1.3.4.1","fumarate reductase (CoM/CoB)"],["EC%3A1.3.5.1","succinate dehydrogenase"],["EC%3A1.3.98.1","dihydroorotate oxidase (fumarate)"],["EC%3A3.7.1.14","2-hydroxy-6-oxonona-2,4-dienedioate hydrolase"]]},{"id":"CHEBI:15422","l":"ATP","na":2,"nb":68,"a":[["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15422","requires ATP"],["ARO%3A3002628","aad(6)"],["ARO%3A3002601","aadA"],["ARO%3A3004692","aadA10"],["ARO%3A3002611","aadA11"],["ARO%3A3002612","aadA12"]]},{"id":"CHEBI:16947","l":"citrate(3-)","na":2,"nb":49,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["EC%3A2.3.3.1","citrate (Si)-synthase"],["EC%3A2.3.3.16","citrate synthase (unknown stereospecificity)"],["EC%3A2.3.3.3","citrate (Re)-synthase"],["EC%3A2.3.3.8","ATP citrate synthase"],["EC%3A2.8.3.10","citrate CoA-transferase"],["EC%3A4.1.3.6","citrate (pro-3S)-lyase"]]},{"id":"GO:0009063","l":"amino acid catabolic process","na":2,"nb":47,"a":[["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"]],"b":[["ComplexPortal%3ACPX-865","Electron transfer flavoprotein complex"],["ComplexPortal%3ACPX-2731","Mitochondrial electron transfer flavoprotein complex"],["GO%3A0042217","1-aminocyclopropane-1-carboxylate catabolic process"],["GO%3A0009063","amino acid catabolic process"],["GO%3A0019665","amino acid fermentation"],["GO%3A0019484","beta-alanine catabolic process"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":46,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF13166","AAA domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF27533","CapK C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"]]},{"id":"CHEBI:16480","l":"nitric oxide","na":2,"nb":43,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"]],"b":[["EC%3A1.14.12.17","nitric oxide dioxygenase"],["EC%3A1.14.13.39","nitric-oxide synthase (NADPH)"],["EC%3A1.14.14.47","nitric-oxide synthase (flavodoxin)"],["EC%3A1.14.15.41","L-tryptophan 4-nitrase"],["EC%3A1.14.15.42","L-tyrosine 3-nitrase"],["EC%3A1.7.1.14","nitric oxide reductase [NAD(P)(+), nitrous oxide-forming]"]]},{"id":"GO:0030163","l":"protein catabolic process","na":2,"nb":40,"a":[["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"]],"b":[["ComplexPortal%3ACPX-1655","i-AAA complex"],["ComplexPortal%3ACPX-1654","m-AAA protease complex"],["GO%3A0002077","acrosome matrix dispersal"],["GO%3A0061684","chaperone-mediated autophagy"],["GO%3A0007174","epidermal growth factor catabolic process"],["GO%3A0006516","glycoprotein catabolic process"]]},{"id":"GO:0019684","l":"photosynthesis, light reaction","na":2,"nb":39,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]],"b":[["GO%3A0019684","photosynthesis, light reaction"],["NCBIfam%3ANF058510","bifunctional rod-capping linker CpcD/ferredoxin--NADP reductase PetH"],["NCBIfam%3ATIGR01332","cytochrome b559 subunit alpha"],["NCBIfam%3ATIGR01333","cytochrome b559 subunit beta"],["NCBIfam%3ANF043009","cytochrome c-554 Puf2C"],["NCBIfam%3ANF040862","light-harvesting antenna LH1, beta subunit"]]},{"id":"GO:0006006","l":"glucose metabolic process","na":2,"nb":38,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["GO%3A0006094","gluconeogenesis"],["GO%3A0006007","glucose catabolic process"],["GO%3A0006006","glucose metabolic process"],["Reactome%3AR-HSA-70326","Glucose metabolism"],["NCBIfam%3ANF033735","ArsJ-associated glyceraldehyde-3-phosphate dehydrogenase"],["NCBIfam%3ANF045551","ATP-dependent glucokinase"]]},{"id":"GO:0008643","l":"carbohydrate transport","na":2,"nb":38,"a":[["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["ComplexPortal%3ACPX-5990","sgcABC sugar permease enzyme II complex"],["GO%3A0033231","carbohydrate export"],["GO%3A0034219","carbohydrate transmembrane transport"],["GO%3A0008643","carbohydrate transport"],["GO%3A0015772","oligosaccharide transport"],["GO%3A0015774","polysaccharide transport"]]},{"id":"CHEBI:16150","l":"benzoate","na":2,"nb":36,"a":[["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["EC%3A1.14.12.10","benzoate 1,2-dioxygenase"],["EC%3A1.14.14.92","benzoate 4-monooxygenase"],["EC%3A1.2.1.28","benzaldehyde dehydrogenase (NAD(+))"],["EC%3A1.2.1.7","benzaldehyde dehydrogenase (NADP(+))"],["EC%3A2.1.1.273","benzoate O-methyltransferase"],["EC%3A3.1.1.84","cocaine esterase"]]},{"id":"GO:0000272","l":"polysaccharide catabolic process","na":2,"nb":36,"a":[["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["GO%3A0042122","alginic acid catabolic process"],["GO%3A0031222","arabinan catabolic process"],["GO%3A0030995","cell septum edging catabolic process"],["GO%3A0044347","cell wall polysaccharide catabolic process"],["GO%3A0010147","fructan catabolic process"],["GO%3A2000885","galactoglucomannan catabolic process"]]},{"id":"GO:0009628","l":"response to abiotic stimulus","na":2,"nb":34,"a":[["South_Bay_Salt_Pond_Methane_Restoration_Community.html","South Bay Salt Pond Methane Restoration Microbial Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"]],"b":[["GO%3A0071214","cellular response to abiotic stimulus"],["GO%3A0009582","detection of abiotic stimulus"],["GO%3A0097318","invasive growth in response to abiotic stimulus"],["GO%3A0009628","response to abiotic stimulus"],["GO%3A0051602","response to electrical stimulus"],["GO%3A0009629","response to gravity"]]},{"id":"GO:0007154","l":"cell communication","na":2,"nb":32,"a":[["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["GO%3A0007412","axon target recognition"],["GO%3A0007267","cell-cell signaling"],["GO%3A0010643","cell communication by chemical coupling"],["GO%3A0010644","cell communication by electrical coupling"],["GO%3A0007154","cell communication"],["GO%3A0086065","cell communication involved in cardiac conduction"]]},{"id":"GO:0009228","l":"thiamine biosynthetic process","na":2,"nb":32,"a":[["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"],["Variovorax_Cryptococcus_Vitamin_Mutualism_Microcosm.html","Variovorax-Cryptococcus Vitamin Cross-Feeding Microcosm"]],"b":[["ComplexPortal%3ACPX-2140","iscS-thiI sulfurtransferase complex"],["GO%3A0009228","thiamine biosynthetic process"],["GO%3A0036172","thiamine salvage"],["NCBIfam%3ATIGR00204","1-deoxy-D-xylulose-5-phosphate synthase"],["NCBIfam%3ATIGR02351","2-iminoacetate synthase ThiH"],["NCBIfam%3ANF009078","bifunctional hydroxymethylpyrimidine kinase/phosphomethylpyrimidine kinase"]]},{"id":"CHEBI:15882","l":"phenol","na":2,"nb":31,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]],"b":[["EC%3A1.14.13.244","phenol 2-monooxygenase (NADH)"],["EC%3A1.14.13.7","phenol 2-monooxygenase (NADPH)"],["EC%3A1.14.14.20","phenol 2-monooxygenase (FADH2)"],["EC%3A2.1.1.25","phenol O-methyltransferase"],["EC%3A2.4.2.55","nicotinate D-ribonucleotide:phenol phospho-D-ribosyltransferase"],["EC%3A2.7.1.238","phenol phosphorylase"]]},{"id":"CHEBI:15347","l":"acetone","na":2,"nb":27,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["EC%3A1.1.1.80","isopropanol dehydrogenase (NADP(+))"],["EC%3A1.14.13.226","acetone monooxygenase (methyl acetate-forming)"],["EC%3A1.14.14.141","psoralen synthase"],["EC%3A1.14.14.148","angelicin synthase"],["EC%3A2.6.3.1","oximinotransferase"],["EC%3A4.1.1.4","acetoacetate decarboxylase"]]},{"id":"CHEBI:57586","l":"biotinate","na":2,"nb":24,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_57586","requires biotinate"],["EC%3A2.8.1.6","biotin synthase"],["EC%3A3.5.1.12","biotinidase"],["EC%3A6.2.1.11","biotin--CoA ligase"],["EC%3A6.3.4.10","biotin--[propionyl-CoA-carboxylase (ATP-hydrolyzing)] ligase"],["EC%3A6.3.4.11","biotin--[methylcrotonoyl-CoA-carboxylase] ligase"]]},{"id":"NCBITaxon:160488","l":"Pseudomonas putida (strain ATCC 47054 / DSM 6125 / CFBP 8728 / NCIMB 11950 / KT2440)","na":2,"nb":24,"a":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"]],"b":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF00842","Alanine racemase, C-terminal domain"],["Pfam%3APF01168","Alanine racemase, N-terminal domain"],["Pfam%3APF13372","Alginate export"],["Pfam%3APF03705","CheR methyltransferase, all-alpha domain"],["Pfam%3APF01739","CheR methyltransferase, SAM binding domain"]]},{"id":"GO:0045333","l":"cellular respiration","na":2,"nb":21,"a":[["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"]],"b":[["ComplexPortal%3ACPX-560","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-563","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-567","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-9308","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-1721","Mitochondrial respiratory chain complex IV, COX5A variant"],["ComplexPortal%3ACPX-1722","Mitochondrial respiratory chain complex IV, COX5B variant"]]},{"id":"GO:0071248","l":"cellular response to metal ion","na":2,"nb":21,"a":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["GO%3A0071275","cellular response to aluminum ion"],["GO%3A0071276","cellular response to cadmium ion"],["GO%3A0071277","cellular response to calcium ion"],["GO%3A0071278","cellular response to cesium ion"],["GO%3A0071279","cellular response to cobalt ion"],["GO%3A0071280","cellular response to copper ion"]]},{"id":"GO:0006089","l":"lactate metabolic process","na":2,"nb":20,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"]],"b":[["ComplexPortal%3ACPX-6573","L-lactate dehydrogenase A complex"],["ComplexPortal%3ACPX-6599","L-lactate dehydrogenase B complex"],["ComplexPortal%3ACPX-6602","L-lactate dehydrogenase C complex"],["ComplexPortal%3ACPX-6598","L-lactate dehydrogenase complex, A1B3 variant"],["ComplexPortal%3ACPX-6594","L-lactate dehydrogenase complex, A2B2 variant"],["ComplexPortal%3ACPX-6592","L-lactate dehydrogenase complex, A3B1 variant"]]},{"id":"CHEBI:16750","l":"guanosine","na":2,"nb":19,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["EC%3A2.4.2.1","purine-nucleoside phosphorylase"],["EC%3A2.4.2.15","guanosine phosphorylase"],["EC%3A2.7.1.73","inosine kinase"],["EC%3A3.5.4.15","guanosine deaminase"],["RHEA%3A27862","3'-GMP + H2O = guanosine + phosphate"],["RHEA%3A27714","GMP + H2O = guanosine + phosphate"]]},{"id":"GO:0009636","l":"response to toxic substance","na":2,"nb":18,"a":[["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"]],"b":[["ComplexPortal%3ACPX-2254","Cus cation efflux complex"],["GO%3A0097237","cellular response to toxic substance"],["GO%3A0060992","response to fungicide"],["GO%3A0009635","response to herbicide"],["GO%3A0017085","response to insecticide"],["GO%3A0010188","response to microbial phytotoxin"]]},{"id":"NCBITaxon:4577","l":"Zea mays","na":2,"nb":18,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"]],"b":[["IDPO%3A0000002","disorder"],["Pfam%3APF14861","Plant antimicrobial peptide"],["Pfam%3APF02041","Auxin binding protein"],["Pfam%3APF25436","BSD2 cysteine rich domain"],["Pfam%3APF23493","Cysteinyl-tRNA ligase anticodon binding domain"],["Pfam%3APF03330","Lytic transglycolase"]]},{"id":"GO:0033103","l":"protein secretion by the type VI secretion system","na":2,"nb":17,"a":[["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"]],"b":[["GO%3A0033103","protein secretion by the type VI secretion system"],["NCBIfam%3ATIGR03354","type VI secretion system-associated FHA domain protein TagH"],["NCBIfam%3ATIGR03345","type VI secretion system ATPase TssH"],["NCBIfam%3ATIGR03357","type VI secretion system baseplate subunit TssE"],["NCBIfam%3ATIGR03359","type VI secretion system baseplate subunit TssF"],["NCBIfam%3ATIGR03347","type VI secretion system baseplate subunit TssG"]]},{"id":"GO:0051707","l":"response to other organism","na":2,"nb":17,"a":[["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0002213","defense response to insect"],["GO%3A0002215","defense response to nematode"],["GO%3A0098542","defense response to other organism"],["GO%3A0098543","detection of other organism"],["GO%3A0009617","response to bacterium"],["GO%3A0009620","response to fungus"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":2,"nb":16,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF28265","Lipoprotein N-acylation protein LnsA-like"],["Pfam%3APF16403","Bacterial surface protein, Ig-like domain"],["Pfam%3APF03944","delta endotoxin"],["Pfam%3APF03945","delta endotoxin, N-terminal domain"],["Pfam%3APF06355","Aegerolysin"]]},{"id":"GO:0006970","l":"response to osmotic stress","na":2,"nb":15,"a":[["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["GO%3A0071470","cellular response to osmotic stress"],["GO%3A0043575","detection of osmotic stimulus"],["GO%3A0006972","hyperosmotic response"],["GO%3A0006971","hypotonic response"],["GO%3A0010335","response to non-ionic osmotic stress"],["GO%3A0006970","response to osmotic stress"]]},{"id":"GO:0019645","l":"anaerobic electron transport chain","na":2,"nb":15,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["ComplexPortal%3ACPX-320","DmaABC DMSO reductase complex"],["ComplexPortal%3ACPX-1975","Formate dehydrogenase N complex"],["ComplexPortal%3ACPX-6029","Formate dehydrogenase Z complex"],["ComplexPortal%3ACPX-317","Formate hydrogenlyase-H/Hydrogenase-3 complex"],["ComplexPortal%3ACPX-6028","Formate hydrogenlyase-H/Hydrogenase-4 complex"],["ComplexPortal%3ACPX-281","Hydrogenase-1 complex"]]},{"id":"GO:0009408","l":"response to heat","na":2,"nb":14,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["PMI_Variovorax_Thermotolerance_Collection.html","PMI Variovorax Thermotolerance Collection"]],"b":[["ComplexPortal%3ACPX-4887","DNA-directed RNA polymerase holoenzyme complex, SigmaH variant"],["ComplexPortal%3ACPX-636","ISW1b chromatin remodeling complex"],["GO%3A0034605","cellular response to heat"],["GO%3A0036168","filamentous growth of a population of unicellular organisms in response to heat"],["GO%3A0010286","heat acclimation"],["GO%3A0009408","response to heat"]]},{"id":"GO:0006032","l":"chitin catabolic process","na":2,"nb":13,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["GO%3A0006032","chitin catabolic process"],["NCBIfam%3ANF052619","chitinase ChiD"],["NCBIfam%3ANF041127","exo-beta-D-glucosaminidase"],["NCBIfam%3ANF041128","glucosamine-6-phosphate deaminase"],["NCBIfam%3ATIGR03851","N-acetylglucosamine/diacetylchitobiose ABC transporter substrate-binding protein"],["InterPro%3AIPR005089","Carbohydrate-binding module family 19"]]},{"id":"NCBITaxon:272562","l":"Clostridium acetobutylicum (strain ATCC 824 / DSM 792 / JCM 1419 / IAM 19013 / LMG 5710 / NBRC 13948 / NRRL B-527 / VKM B-1787 / 2291 / W)","na":2,"nb":13,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["Pfam%3APF10882","Bacterial PH domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["Pfam%3APF09940","Domain of unknown function (DUF2172)"],["Pfam%3APF16254","Domain of unknown function (DUF4910)"],["Pfam%3APF01183","Glycosyl hydrolases family 25"],["Pfam%3APF16221","winged helix-turn-helix"]]},{"id":"NCBITaxon:644","l":"Aeromonas hydrophila","na":2,"nb":13,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["Pfam%3APF01117","Aerolysin toxin"],["Pfam%3APF03440","Aerolysin/Pertussis toxin (APT) domain"],["Pfam%3APF21327","GspA, peptidase C39-like domain"],["Pfam%3APF04231","Endonuclease I"],["PROSITE%3APS01092","Adenylate cyclase class-I signature 1"],["PROSITE%3APS01093","Adenylate cyclase class-I signature 2"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus ATCC 27405","na":2,"nb":12,"a":[["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["Pfam%3APF00942","Cellulose binding domain"],["Pfam%3APF17996","Carbohydrate esterase 2 N-terminal"],["Pfam%3APF00963","Cohesin domain"],["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF00404","Dockerin type I domain"]]},{"id":"NCBITaxon:51453","l":"Trichoderma reesei","na":2,"nb":12,"a":[["Trichoderma_Ecoli_Cellulosic_Isobutanol_Coculture.html","Trichoderma-E. coli Cellulosic Isobutanol Coculture"],["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["Pfam%3APF28347","ACE1 small beta sheet domain"],["Pfam%3APF28329","Zinc finger transcription factor ace1 N-terminal domain"],["Pfam%3APF00150","Cellulase (glycosyl hydrolase family 5)"],["Pfam%3APF22514","EXPB1-like domain 1"],["Pfam%3APF01341","Glycosyl hydrolases family 6"],["Pfam%3APF00840","Glycosyl hydrolase family 7"]]},{"id":"GO:0015889","l":"cobalamin transport","na":2,"nb":11,"a":[["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["ComplexPortal%3ACPX-2105","Cobalamin ABC transporter complex"],["ComplexPortal%3ACPX-1083","Cobalamin outer membrane transporter complex"],["ComplexPortal%3ACPX-5774","Cubam cobalamin uptake receptor complex"],["ComplexPortal%3ACPX-5847","Cubam cobalamin uptake receptor complex"],["GO%3A0015889","cobalamin transport"],["Reactome%3AR-HSA-9758890","Transport of RCbl within the body"]]},{"id":"GO:0019605","l":"butyrate metabolic process","na":2,"nb":11,"a":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["GO%3A0030645","acetyl-CoA fermentation to butanoate"],["GO%3A0046358","butyrate biosynthetic process"],["GO%3A0046359","butyrate catabolic process"],["GO%3A0019605","butyrate metabolic process"],["GO%3A0019475","L-lysine fermentation"],["GO%3A0044813","pyruvate fermentation to butanoate"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":2,"nb":11,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["Pfam%3APF22829","HphA C-terminal domain"],["Pfam%3APF22828","HphA N-terminal heme-binding domain"],["Pfam%3APF28205","Ciprofloxacin tolerance protein"],["Pfam%3APF19582","Solute-binding protein AdeT 1/2"],["PROSITE%3APS00337","Beta-lactamase class-D active site"],["Pfam%3APF24575","Surface lipoprotein assembly modifier, N-terminal TPR repeats"]]},{"id":"CHEBI:3098","l":"bile acid","na":2,"nb":9,"a":[["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.28","The Bile Acid:Na+ Symporter (BASS) Family"],["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"],["TCDB%3A9.A.19","The Lipid Intermediate Transporter (Arv1) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":2,"nb":9,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"]],"b":[["Pfam%3APF07835","Bacterial aa3 type cytochrome c oxidase subunit IV"],["Pfam%3APF04828","Glutathione-dependent formaldehyde-activating enzyme"],["Pfam%3APF16448","LapD/MoxY periplasmic domain"],["Pfam%3APF17267","Family of unknown function (DUF5333)"],["Pfam%3APF17272","Family of unknown function (DUF5337)"],["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":2,"nb":9,"a":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF25954","CusB-like, beta-barrel domain"],["Pfam%3APF13438","Domain of unknown function (DUF4113)"],["Pfam%3APF03767","HAD superfamily, subfamily IIIB (Acid phosphatase)"],["Pfam%3APF03496","ADP-ribosyltransferase exoenzyme"]]},{"id":"CHEBI:15366","l":"acetic acid","na":8,"nb":2,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["MCSA%3A431","acetylxylan esterase"],["MCSA%3A996","Peptidoglycan-N-acetylglucosamine deacetylase Bc1960"]]},{"id":"CHEBI:16793","l":"mercury(2+)","na":2,"nb":8,"a":[["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["EC%3A1.16.1.1","mercury(II) reductase"],["EC%3A4.99.1.2","alkylmercury lyase"],["RHEA%3A18777","an alkylmercury + H(+) = an alkane + Hg(2+)"],["RHEA%3A32815","Hg(2+)(in) = Hg(2+)(out)"],["RHEA%3A23856","Hg + NADP(+) + H(+) = Hg(2+) + NADPH"],["MCSA%3A297","alkylmercury lyase"]]},{"id":"GO:0009651","l":"response to salt stress","na":2,"nb":8,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"]],"b":[["GO%3A0071472","cellular response to salt stress"],["GO%3A0042538","hyperosmotic salinity response"],["GO%3A0042539","hypotonic salinity response"],["GO%3A0072342","response to anion stress"],["GO%3A0043157","response to cation stress"],["GO%3A0009651","response to salt stress"]]},{"id":"GO:0033013","l":"tetrapyrrole metabolic process","na":2,"nb":8,"a":[["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["GO%3A0009235","cobalamin metabolic process"],["GO%3A0006778","porphyrin-containing compound metabolic process"],["GO%3A0033014","tetrapyrrole biosynthetic process"],["GO%3A0033015","tetrapyrrole catabolic process"],["GO%3A0033013","tetrapyrrole metabolic process"],["NCBIfam%3ANF047825","tryptophan-rich sensory protein TspO"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":2,"nb":8,"a":[["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]],"b":[["Pfam%3APF02927","Cellulase N-terminal ig-like domain"],["Pfam%3APF00404","Dockerin type I domain"],["PROSITE%3APS00448","Clostridium cellulosome enzymes repeated domain signature"],["PROSITE%3APS60032","Glycosyl hydrolases family 9 (GH9) active site signature 1"],["PROSITE%3APS00592","Glycosyl hydrolases family 9 (GH9) active site signature 2"],["PROSITE%3APS00698","Glycosyl hydrolases family 9 (GH9) active site signature 3"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":8,"nb":2,"a":[["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"],["Sedimenting_Arabinose_Glucose_Saccharomyces_Coculture.html","Sedimenting Arabinose-Glucose Saccharomyces Coculture"]],"b":[["PROSITE%3APS00820","Glucoamylase active site region signature"],["TED%3AAF-A0A7I9G6Y3-F1-model_v4_TED02","TED novel fold AF-A0A7I9G6Y3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:920","l":"Acidithiobacillus ferrooxidans","na":8,"nb":2,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["Pfam%3APF20538","Family of unknown function (DUF6753)"],["PROSITE%3APS01007","Transposases, Mutator family, signature"]]},{"id":"CHEBI:17824","l":"propan-2-ol","na":2,"nb":7,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"]],"b":[["EC%3A1.1.1.80","isopropanol dehydrogenase (NADP(+))"],["EC%3A1.14.13.227","propane 2-monooxygenase"],["RHEA%3A62196","propan-2-ol + 2 Fe(III)-[cytochrome c] = acetone + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A41984","propan-2-ol + NAD(+) = acetone + NADH + H(+)"],["RHEA%3A21792","propan-2-ol + NADP(+) = acetone + NADPH + H(+)"],["RHEA%3A49992","propane + NADH + O2 + H(+) = propan-2-ol + NAD(+) + H2O"]]},{"id":"CHEBI:49713","l":"lithium(1+)","na":2,"nb":7,"a":[["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["RHEA%3A72631","3 Li(+)(out) + Ca(2+)(in) = 3 Li(+)(in) + Ca(2+)(out)"],["RHEA%3A70431","Li(+)(in) + 2 H(+)(out) = Li(+)(out) + 2 H(+)(in)"],["RHEA%3A75063","Li(+)(in) + 2 hydrogencarbonate(in) + chloride(out) = Li(+)(out) + 2 hydrogencarbonate(out) + chloride(in)"],["RHEA%3A78551","Li(+)(in) = Li(+)(out)"],["RHEA%3A72415","Li(+)(in) + Na(+)(out) = Li(+)(out) + Na(+)(in)"],["RHEA%3A72407","Li(+)(out) + H(+)(in) = Li(+)(in) + H(+)(out)"]]},{"id":"GO:0043448","l":"alkane catabolic process","na":7,"nb":2,"a":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Nitratireductor_Gordonia_Z123_LDPE_Degradation_SynCom.html","Nitratireductor-Gordonia Z123 LDPE-Degradation SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"]],"b":[["GO%3A0043448","alkane catabolic process"],["GO%3A0046188","methane catabolic process"]]},{"id":"NCBITaxon:1305","l":"Streptococcus sanguinis","na":2,"nb":7,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["Pfam%3APF09254","FokI, cleavage domain"],["Pfam%3APF02981","FokI, recognition domain, subdomain 1"],["Pfam%3APF02980","FokI, recognition domain, subdomain 2"],["Pfam%3APF07501","G5 domain"],["Pfam%3APF07581","The GLUG motif"],["TED%3AAF-A0A7H8V358-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H8V358-F1-model_v4_TED01"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":2,"nb":7,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["Pfam%3APF19443","DAHL domain"],["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"],["Pfam%3APF03524","Conjugal transfer protein"],["Pfam%3APF27439","Chaperone protein DnaJ C-terminal region"],["Pfam%3APF10907","Protein of unknown function (DUF2749)"],["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":2,"nb":7,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["Pfam%3APF11766","Agglutinin-like protein, N-terminal domain"],["Pfam%3APF16856","Cell division control protein 4 dimerisation domain"],["Pfam%3APF18325","Fatty acid synthase subunit alpha Acyl carrier domain"],["Pfam%3APF18314","Fatty acid synthase type I helical domain"],["Pfam%3APF17828","N-terminal domain in fatty acid synthase subunit beta"],["Pfam%3APF05388","Carboxypeptidase Y pro-peptide"]]},{"id":"CHEBI:16457","l":"S,S-dimethyl-beta-propiothetin","na":2,"nb":6,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["EC%3A2.1.1.269","dimethylsulfoniopropionate demethylase"],["EC%3A4.4.1.3","dimethylpropiothetin dethiomethylase"],["RHEA%3A35467","S,S-dimethyl-beta-propiothetin + (6S)-5,6,7,8-tetrahydrofolate = 3-(methylsulfanyl)propanoate + (6S)-5-methyl-5,6,7,8-tetrahydrofolate + H(+)"],["RHEA%3A19965","S,S-dimethyl-beta-propiothetin = acrylate + dimethyl sulfide + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.15","The Betaine/Carnitine/Choline Transporter (BCCT) Family"]]},{"id":"CHEBI:30772","l":"butyric acid","na":6,"nb":2,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["MCSA%3A900","para-nitrobenzyl esterase"],["proteintraitsmech%3ABIOLIP_BUA","BUA-binding site"]]},{"id":"GO:0009235","l":"cobalamin metabolic process","na":2,"nb":6,"a":[["Soil_Corrinoid_B12_Reservoir_Community.html","Soil Corrinoid Reservoir Microbial Community"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["GO%3A0009236","cobalamin biosynthetic process"],["GO%3A0042366","cobalamin catabolic process"],["GO%3A0009235","cobalamin metabolic process"],["Reactome%3AR-HSA-9759218","Cobalamin (Cbl) metabolism"],["NCBIfam%3ANF021725","methylmalonic aciduria and homocystinuria type D protein"],["Pfam%3APF10229","Methylmalonic aciduria and homocystinuria type D protein"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":2,"nb":6,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]],"b":[["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF03744","6-carboxyhexanoate--CoA ligase"],["PROSITE%3APS00836","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 1"],["PROSITE%3APS00837","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 2"],["TED%3AAF-A0A2S5D092-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5D092-F1-model_v4_TED01"],["TED%3AAF-A0A2S0JW09-F1-model_v4_TED01","TED novel fold AF-A0A2S0JW09-F1-model_v4_TED01"]]},{"id":"NCBITaxon:32049","l":"Picosynechococcus sp. PCC 7002","na":2,"nb":6,"a":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"]],"b":[["Pfam%3APF09367","CpeS-like protein"],["Pfam%3APF06206","CpeT/CpcT family (DUF1001)"],["Pfam%3APF12965","Domain of unknown function (DUF3854)"],["Pfam%3APF19928","Domain of unknown function (DUF6391)"],["Pfam%3APF09366","Protein of unknown function (DUF1997)"],["Pfam%3APF14870","Photosynthesis system II assembly factor YCF48"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":2,"nb":6,"a":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["Pfam%3APF01177","Asp/Glu/Hydantoin racemase"],["Pfam%3APF11339","Protein of unknown function (DUF3141)"],["PROSITE%3APS01303","BCCT family of transporters signature"],["PROSITE%3APS00665","Dihydrodipicolinate synthase signature 1"],["TED%3AAF-A0A2J0YSD4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J0YSD4-F1-model_v4_TED01"],["TED%3AAF-A0A843ZNG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843ZNG8-F1-model_v4_TED01"]]},{"id":"CHEBI:16865","l":"gamma-aminobutyric acid","na":2,"nb":5,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A2.A.42","The Hydroxy/Aromatic Amino Acid Permease (HAAAP) Family"],["TCDB%3A2.A.22","The Neurotransmitter:Sodium Symporter (NSS) Family"],["proteintraitsmech%3ABIOLIP_ABU","ABU-binding site"]]},{"id":"NCBITaxon:3039","l":"Euglena gracilis","na":2,"nb":5,"a":[["Dairy_Wastewater_Algal_Cyanobacterial_Cultivation_Panel.html","Dairy Wastewater Algal-Cyanobacterial Cultivation Panel"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"]],"b":[["Pfam%3APF01333","Apocytochrome F, C-terminal"],["Pfam%3APF16639","Apocytochrome F, N-terminal"],["Pfam%3APF04940","Sensors of blue-light using FAD"],["Pfam%3APF10371","Domain of unknown function"],["PROSITE%3APS00938","Initiation factor 3 signature"]]},{"id":"NCBITaxon:5507","l":"Fusarium oxysporum","na":2,"nb":5,"a":[["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["Pfam%3APF02015","Glycosyl hydrolase family 45"],["PROSITE%3APS01140","Glycosyl hydrolases family 45 active site"],["TED%3AAF-A0A2H3TJY2-F1-model_v4_TED01","TED novel fold AF-A0A2H3TJY2-F1-model_v4_TED01"],["TED%3AAF-A0A420N954-F1-model_v4_TED01","TED novel fold AF-A0A420N954-F1-model_v4_TED01"],["TED%3AAF-A0A420P6J4-F1-model_v4_TED01","TED novel fold AF-A0A420P6J4-F1-model_v4_TED01"]]},{"id":"CHEBI:16995","l":"oxalic acid","na":4,"nb":2,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Wollastonite_Ramichloridium_Talaromyces_Fungal_Consortium.html","Wollastonite Ramichloridium-Talaromyces Fungal Consortium"]],"b":[["TCDB%3A2.A.53","The Sulfate Permease (SulP) Family"],["proteintraitsmech%3ABIOLIP_OXD","OXD-binding site"]]},{"id":"CHEBI:33363","l":"palladium atom","na":2,"nb":4,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_PD_DINUCLEAR","dinuclear palladium site"],["proteintraitsmech%3AMETALPDB_PD_MONONUCLEAR","mononuclear palladium site"],["proteintraitsmech%3AMETALPDB_PD_TETRANUCLEAR","tetranuclear palladium site"],["proteintraitsmech%3AMETALPDB_PD_TRINUCLEAR","trinuclear palladium site"]]},{"id":"GO:0018874","l":"benzoate metabolic process","na":4,"nb":2,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["GO%3A0043639","benzoate catabolic process"],["GO%3A0018874","benzoate metabolic process"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":2,"nb":4,"a":[["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["TED%3AAF-A0A7W3UB61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W3UB61-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F4B3-F1-model_v4_TED01","TED novel fold AF-A0A0D7F4B3-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F6R4-F1-model_v4_TED01","TED novel fold AF-A0A0D7F6R4-F1-model_v4_TED01"],["TED%3AAF-A0A7W3YI15-F1-model_v4_TED02","TED novel fold AF-A0A7W3YI15-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":4,"nb":2,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"],["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["Pfam%3APF22538","Hexaprenyl diphosphate synthase, small subunit"],["PROSITE%3APS01066","Undecaprenyl pyrophosphate synthase family signature"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":4,"nb":2,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]],"b":[["Pfam%3APF02052","Gallidermin"],["Pfam%3APF04604","Type-A lantibiotic"]]},{"id":"NCBITaxon:269797","l":"Methanosarcina barkeri str. Fusaro","na":2,"nb":4,"a":[["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["Pfam%3APF27274","Coenzyme F430 synthetase CfbE, C-terminal domain"],["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"],["Pfam%3APF09505","Dimethylamine methyltransferase (Dimeth_PyL)"],["PROSITE%3APS00507","Nickel-dependent hydrogenases large subunit signature 1"]]},{"id":"NCBITaxon:2822231","l":"Phanerodontia chrysosporium","na":2,"nb":4,"a":[["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"]],"b":[["Pfam%3APF18637","Aldos-2-ulose dehydratase/isomerase (AUDH) Cupin domain"],["Pfam%3APF16010","Cytochrome domain of cellobiose dehydrogenase"],["PROSITE%3APS00623","GMC oxidoreductases signature 1"],["Pfam%3APF22301","Aldos-2-ulose dehydratase, beta-propeller domain"]]},{"id":"NCBITaxon:37919","l":"Rhodococcus opacus","na":4,"nb":2,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"],["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["Pfam%3APF11794","4-hydroxyphenylacetate 3-hydroxylase N terminal"],["Pfam%3APF03241","4-hydroxyphenylacetate 3-hydroxylase C terminal"]]},{"id":"CHEBI:15741","l":"succinic acid","na":3,"nb":2,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_SIN","SIN-binding site"]]},{"id":"CHEBI:15956","l":"biotin","na":3,"nb":2,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15956","requires biotin"],["proteintraitsmech%3ABIOLIP_BTN","BTN-binding site"]]},{"id":"CHEBI:24898","l":"isoleucine","na":2,"nb":3,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["MCSA%3A906","gelatinase A"]]},{"id":"CHEBI:49470","l":"aluminium(3+)","na":2,"nb":3,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Rice_Acid_Soil_Bioinoculant_SynCom.html","Rice Acid Soil Bioinoculant SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["proteintraitsmech%3ABIOLIP_AL","AL-binding site"]]},{"id":"CHEBI:5199","l":"Fusaric acid","na":2,"nb":3,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["TCDB%3A2.A.85","The Aromatic Acid Exporter (ArAE) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.17","The Outer Membrane Factor (OMF) Family"]]},{"id":"CHEBI:58187","l":"alginate","na":2,"nb":3,"a":[["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["EC%3A5.1.3.37","mannuronan 5-epimerase"],["RHEA%3A45572","[(1->4)-beta-D-mannuronosyl](n) = [alginate](n)"],["RHEA%3A15637","[alginate](n) + GDP-alpha-D-mannuronate = [alginate](n+1) + GDP + H(+)"]]},{"id":"GO:0006068","l":"ethanol catabolic process","na":2,"nb":3,"a":[["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["GO%3A0006068","ethanol catabolic process"],["Reactome%3AR-HSA-71384","Ethanol oxidation"],["NCBIfam%3ANF050026","acetaldehyde dehydrogenase ExaC"]]},{"id":"GO:0019385","l":"methanogenesis, from acetate","na":2,"nb":3,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["GO%3A0019385","methanogenesis, from acetate"],["NCBIfam%3ANF014596","carbon monoxide dehydrogenase beta subunit family protein"],["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"]]},{"id":"NCBITaxon:1492","l":"Clostridium butyricum","na":2,"nb":3,"a":[["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["Pfam%3APF00302","Chloramphenicol acetyltransferase"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["PROSITE%3APS00100","Chloramphenicol acetyltransferase active site"]]},{"id":"NCBITaxon:166486","l":"Roseburia intestinalis","na":3,"nb":2,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["TED%3AAF-A0A3R6HE72-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R6HE72-F1-model_v4_TED01"],["TED%3AAF-A0A6L6XJA4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L6XJA4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:239935","l":"Akkermansia muciniphila","na":3,"nb":2,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["TED%3AAF-A0A2N8IJN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N8IJN7-F1-model_v4_TED01"],["TED%3AAF-A0A6N2UM07-F1-model_v4_TED01","TED novel fold AF-A0A6N2UM07-F1-model_v4_TED01"]]},{"id":"NCBITaxon:253","l":"Chryseobacterium indologenes","na":2,"nb":3,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"]],"b":[["PROSITE%3APS00744","Beta-lactamases class B signature 2"],["TED%3AAF-A0A7T8U7T3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T8U7T3-F1-model_v4_TED01"],["TED%3AAF-A0A0N0ZUI2-F1-model_v4_TED01","TED novel fold AF-A0A0N0ZUI2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28108","l":"Alteromonas macleodii","na":2,"nb":3,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["TED%3AAF-A0A6C5N007-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6C5N007-F1-model_v4_TED01"],["TED%3AAF-A0A126Q0V0-F1-model_v4_TED01","TED novel fold AF-A0A126Q0V0-F1-model_v4_TED01"],["TED%3AAF-A0A6T9Y0H6-F1-model_v4_TED01","TED novel fold AF-A0A6T9Y0H6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:33035","l":"Blautia producta","na":3,"nb":2,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["TED%3AAF-A0A2S4GEH6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S4GEH6-F1-model_v4_TED01"],["TED%3AAF-A0A7G5MNY0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G5MNY0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:357809","l":"Lachnoclostridium phytofermentans ISDg","na":2,"nb":3,"a":[["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"]],"b":[["Pfam%3APF09508","Lacto-N-biose phosphorylase N-terminal TIM barrel domain"],["Pfam%3APF17386","Lacto-N-biose phosphorylase C-terminal domain"],["Pfam%3APF17385","Lacto-N-biose phosphorylase central domain"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":3,"nb":2,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["PROSITE%3APS00336","Beta-lactamase class-C active site"],["TED%3AAF-A0A155XQ59-F1-model_v4_TED02","TED novel fold AF-A0A155XQ59-F1-model_v4_TED02"]]},{"id":"NCBITaxon:561879","l":"Bacillus safensis","na":2,"nb":3,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"]],"b":[["Pfam%3APF09221","Bacteriocin class IId cyclical uberolysin-like"],["TED%3AAF-A0A1L6ZPA6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6ZPA6-F1-model_v4_TED01"],["TED%3AAF-A0A1L6ZPC9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6ZPC9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:587753","l":"Pseudomonas chlororaphis","na":3,"nb":2,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["TED%3AAF-A0A8A9Z2C4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A8A9Z2C4-F1-model_v4_TED03"],["TED%3AAF-A0A0A6DEM6-F1-model_v4_TED01","TED novel fold AF-A0A0A6DEM6-F1-model_v4_TED01"]]},{"id":"CHEBI:15930","l":"atrazine","na":2,"nb":2,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["EC%3A3.8.1.8","atrazine chlorohydrolase"],["RHEA%3A11312","atrazine + H2O = hydroxyatrazine + chloride + H(+)"]]},{"id":"CHEBI:16094","l":"thiosulfate(2-)","na":2,"nb":2,"a":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["proteintraitsmech%3ABIOLIP_THJ","THJ-binding site"]]},{"id":"CHEBI:17300","l":"tetrachloroethene","na":2,"nb":2,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["EC%3A1.21.99.5","tetrachloroethene reductive dehalogenase"],["RHEA%3A20353","trichloroethene + chloride + A + H(+) = tetrachloroethene + AH2"]]},{"id":"CHEBI:231672","l":"bis(2-hydroxyethyl) terephthalate","na":2,"nb":2,"a":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["RHEA%3A80759","bis(2-hydroxyethyl) terephthalate + H2O = 4-[(2-hydroxyethoxy)carbonyl]benzoate + ethylene glycol + H(+)"],["proteintraitsmech%3ABIOLIP_C8X","C8X-binding site"]]},{"id":"CHEBI:27518","l":"acetylene","na":2,"nb":2,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"]],"b":[["EC%3A4.2.1.112","acetylene hydratase"],["RHEA%3A17885","acetaldehyde = acetylene + H2O"]]},{"id":"CHEBI:30046","l":"oxidovanadium(2+)","na":2,"nb":2,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["RHEA%3A75007","VO(2+)(out) + H(+)(out) = VO(2+)(in) + H(+)(in)"],["proteintraitsmech%3ABIOLIP_VVO","VVO-binding site"]]},{"id":"CHEBI:30751","l":"formic acid","na":2,"nb":2,"a":[["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["MCSA%3A38","GTP cyclohydrolase I"],["proteintraitsmech%3ABIOLIP_FMT","FMT-binding site"]]},{"id":"CHEBI:47916","l":"flavonoid","na":2,"nb":2,"a":[["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]]},{"id":"CHEBI:48782","l":"cerium(3+)","na":2,"nb":2,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_48782","requires cerium(3+)"],["proteintraitsmech%3ABIOLIP_CE","CE-binding site"]]},{"id":"CHEBI:49701","l":"lanthanum(3+)","na":2,"nb":2,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_49701","requires lanthanum(3+)"],["proteintraitsmech%3ABIOLIP_LA","LA-binding site"]]},{"id":"CHEBI:8005","l":"peptidoglycan","na":2,"nb":2,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.17","The Proton-dependent Oligopeptide Transporter (POT/PTR) Family"]]},{"id":"GO:0005983","l":"starch catabolic process","na":2,"nb":2,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"]],"b":[["GO%3A0005983","starch catabolic process"],["NCBIfam%3ATIGR02103","pullulanase-type alpha-1,6-glucosidase"]]},{"id":"NCBITaxon:145262","l":"Methanothermobacter thermautotrophicus","na":2,"nb":2,"a":[["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]],"b":[["Pfam%3APF12686","Protein of unknown function (DUF3800)"],["PROSITE%3APS00093","N-4 cytosine-specific DNA methylases signature"]]},{"id":"NCBITaxon:2162","l":"Methanobacterium formicicum","na":2,"nb":2,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"]],"b":[["Pfam%3APF04432","Coenzyme F420 hydrogenase/dehydrogenase, beta subunit C terminus"],["Pfam%3APF04422","Coenzyme F420 hydrogenase/dehydrogenase, beta subunit N-term"]]},{"id":"NCBITaxon:2223","l":"Methanothrix soehngenii","na":2,"nb":2,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"],["TED%3AAF-A0A7K4AJW5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K4AJW5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:39152","l":"Methanococcus maripaludis","na":2,"nb":2,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"]],"b":[["Pfam%3APF02571","Precorrin-6x reductase CbiJ/CobK"],["TED%3AAF-A0A7J9PSA9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J9PSA9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:39488","l":"Anaerobutyricum hallii","na":2,"nb":2,"a":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["TED%3AAF-A0A414B1Y3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A414B1Y3-F1-model_v4_TED01"],["TED%3AAF-A0A415G3S7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A415G3S7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:4952","l":"Yarrowia lipolytica","na":2,"nb":2,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Yarrowia_lipolytica_Division_of_Labor_Lipid_Consortium.html","Yarrowia lipolytica Division-of-Labor Lipid Consortium"]],"b":[["TED%3AAF-A0A7H0KE04-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H0KE04-F1-model_v4_TED01"],["TED%3AAF-A0A371C7L0-F1-model_v4_TED02","TED novel fold AF-A0A371C7L0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:84022","l":"Andreesenella acetica","na":2,"nb":2,"a":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"]],"b":[["TED%3AAF-A0A0D8IAM1-F1-model_v4_TED01","TED novel fold AF-A0A0D8IAM1-F1-model_v4_TED01"],["TED%3AAF-A0A0D8IBN9-F1-model_v4_TED02","TED novel fold AF-A0A0D8IBN9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":1,"nb":49554,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["EC%3A1.1.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.1.98.-","With other, known, acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":1,"nb":17470,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["EC%3A1.1.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.16.-.-","Oxidizing metal ions"],["EC%3A1.18.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.7.-","With an iron-sulfur protein as acceptor"]]},{"id":"CHEBI:15378","l":"hydron","na":1,"nb":14383,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.1.10","L-xylulose reductase"],["EC%3A1.1.1.100","3-oxoacyl-[acyl-carrier-protein] reductase"],["EC%3A1.1.1.101","acylglycerone-phosphate reductase"],["EC%3A1.1.1.102","3-dehydrosphinganine reductase"],["EC%3A1.1.1.103","L-threonine 3-dehydrogenase"]]},{"id":"NCBITaxon:7227","l":"Drosophila melanogaster","na":1,"nb":11343,"a":[["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.14.15.-","With reduced iron-sulfur protein as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.17.-","With reduced ascorbate as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.-.-","Acting on paired donors, with incorporation or reduction of molecular oxygen. The oxygen incorporated need not be derived from O2"],["EC%3A1.2.4.-","With a disulfide as acceptor"],["EC%3A1.6.99.-","With other acceptors"]]},{"id":"NCBITaxon:6239","l":"Caenorhabditis elegans","na":1,"nb":9682,"a":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"]],"b":[["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.14.14.-","With reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.17.-","With reduced ascorbate as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.19.-","With oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water"],["EC%3A1.14.99.-","Miscellaneous"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii (strain ATCC 43067 / DSM 2661 / JAL-1 / JCM 10045 / NBRC 100440)","na":1,"nb":5181,"a":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]],"b":[["EC%3A1.12.99.-","With other acceptors"],["EC%3A1.3.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.3.-.-","Acting on the CH-CH group of donors"],["EC%3A1.8.98.-","With other, known, acceptors"],["EC%3A1.97.1.-","Other oxidoreductases"],["EC%3A2.1.2.-","Hydroxymethyl-, formyl- and related transferases"]]},{"id":"GO:0006355","l":"regulation of DNA-templated transcription","na":1,"nb":1131,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["ComplexPortal%3ACPX-2829","ACF chromatin remodeling complex"],["ComplexPortal%3ACPX-2742","ATAC histone acetyltransferase complex"],["ComplexPortal%3ACPX-8344","BRE1 E3 ubiquitin ligase complex"],["ComplexPortal%3ACPX-1830","CCAAT-binding factor complex"],["ComplexPortal%3ACPX-2767","CCAAT-binding factor complex"],["ComplexPortal%3ACPX-2771","CCR4-NOT mRNA deadenylase complex"]]},{"id":"CHEBI:16810","l":"2-oxoglutarate(2-)","na":1,"nb":672,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"]],"b":[["EC%3A1.1.1.286","isocitrate--homoisocitrate dehydrogenase"],["EC%3A1.1.1.399","2-oxoglutarate reductase"],["EC%3A1.1.1.41","isocitrate dehydrogenase (NAD(+))"],["EC%3A1.1.1.42","isocitrate dehydrogenase (NADP(+))"],["EC%3A1.1.5.13","(S)-2-hydroxyglutarate dehydrogenase"],["EC%3A1.1.99.2","L-2-hydroxyglutarate dehydrogenase"]]},{"id":"GO:0006412","l":"translation","na":1,"nb":455,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["GO%3A0002181","cytoplasmic translation"],["GO%3A0032543","mitochondrial translation"],["GO%3A0032544","plastid translation"],["GO%3A0140241","translation at synapse"],["GO%3A0006412","translation"],["Reactome%3AR-HSA-72766","Translation"]]},{"id":"GO:0055085","l":"transmembrane transport","na":1,"nb":439,"a":[["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"]],"b":[["ComplexPortal%3ACPX-271","5-hydroxytryptamine-3A/B receptor complex"],["ComplexPortal%3ACPX-275","5-hydroxytryptamine-3A/B receptor complex"],["ComplexPortal%3ACPX-277","5-hydroxytryptamine-3A/B receptor complex"],["ComplexPortal%3ACPX-276","5-hydroxytryptamine-3A/C receptor complex"],["ComplexPortal%3ACPX-272","5-hydroxytryptamine-3A/D receptor complex"],["ComplexPortal%3ACPX-273","5-hydroxytryptamine-3A/E receptor complex"]]},{"id":"CHEBI:29985","l":"L-glutamate(1-)","na":1,"nb":426,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["EC%3A1.14.11.76","L-glutamate 3(R)-hydroxylase"],["EC%3A1.2.1.88","L-glutamate gamma-semialdehyde dehydrogenase"],["EC%3A1.4.1.13","glutamate synthase (NADPH)"],["EC%3A1.4.1.14","glutamate synthase (NADH)"],["EC%3A1.4.1.2","glutamate dehydrogenase"],["EC%3A1.4.1.3","glutamate dehydrogenase [NAD(P)(+)]"]]},{"id":"GO:0006508","l":"proteolysis","na":1,"nb":393,"a":[["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"]],"b":[["ComplexPortal%3ACPX-6224","Active Protein C complex"],["ComplexPortal%3ACPX-6222","alpha-thrombin complex"],["ComplexPortal%3ACPX-3663","Caspase-8 complex"],["ComplexPortal%3ACPX-975","Caspase-8 complex"],["ComplexPortal%3ACPX-6221","Coagulation factor Va-Xa complex"],["ComplexPortal%3ACPX-279","Coagulation factor VIIa - tissue factor complex"]]},{"id":"GO:0006260","l":"DNA replication","na":1,"nb":311,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["ComplexPortal%3ACPX-6641","ASCC DNA alkylation repair complex"],["ComplexPortal%3ACPX-568","Chromatin assembly factor 1 complex"],["ComplexPortal%3ACPX-2671","CMG helicase complex"],["ComplexPortal%3ACPX-297","CMG helicase complex"],["ComplexPortal%3ACPX-4526","CMG helicase complex"],["ComplexPortal%3ACPX-4541","CMG helicase complex"]]},{"id":"CHEBI:29101","l":"sodium(1+)","na":1,"nb":292,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29101","requires sodium(1+)"],["EC%3A7.2.1.1","NADH:ubiquinone reductase (Na(+)-transporting)"],["EC%3A7.2.1.2","ferredoxin--NAD(+) oxidoreductase (Na(+)-transporting)"],["EC%3A7.2.1.4","tetrahydromethanopterin S-methyltransferase"],["EC%3A7.2.2.1","Na(+)-transporting two-sector ATPase"],["EC%3A7.2.2.13","Na(+)/K(+)-exchanging ATPase"]]},{"id":"GO:0006096","l":"glycolytic process","na":1,"nb":117,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["ComplexPortal%3ACPX-1992","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-2039","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-2040","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-1994","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"],["ComplexPortal%3ACPX-2041","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"],["ComplexPortal%3ACPX-2042","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"]]},{"id":"GO:0042221","l":"response to chemical","na":1,"nb":104,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0070887","cellular response to chemical stimulus"],["GO%3A0036503","ERAD pathway"],["GO%3A1904612","response to 2,3,7,8-tetrachlorodibenzodioxine"],["GO%3A1904610","response to 3,3',4,4',5-pentachlorobiphenyl"],["GO%3A0036275","response to 5-fluorouracil"],["GO%3A0001101","response to acid chemical"]]},{"id":"GO:0009252","l":"peptidoglycan biosynthetic process","na":1,"nb":90,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["GO%3A0009252","peptidoglycan biosynthetic process"],["GO%3A0018104","peptidoglycan-protein cross-linking"],["NCBIfam%3ATIGR00492","alanine racemase"],["NCBIfam%3ANF007061","bifunctional glycosyl transferase/transpeptidase"],["NCBIfam%3ANF006986","bifunctional UDP-N-acetylglucosamine diphosphorylase/glucosamine-1-phosphate N-acetyltransferase GlmU"]]},{"id":"GO:0009306","l":"protein secretion","na":1,"nb":84,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["GO%3A0070162","adiponectin secretion"],["GO%3A0036394","amylase secretion"],["GO%3A0110010","basolateral protein secretion"],["GO%3A0038055","BMP secretion"],["GO%3A0030073","insulin secretion"],["GO%3A1990773","matrix metallopeptidase secretion"]]},{"id":"GO:0006796","l":"phosphate-containing compound metabolic process","na":1,"nb":72,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"]],"b":[["GO%3A0016311","dephosphorylation"],["GO%3A0006796","phosphate-containing compound metabolic process"],["GO%3A0016310","phosphorylation"],["NCBIfam%3ANF053626","ATP-dependent ribose-1-phosphate kinase"],["NCBIfam%3ANF002317","inorganic diphosphatase"],["NCBIfam%3ATIGR02966","phosphate regulon sensor histidine kinase PhoR"]]},{"id":"GO:0048519","l":"negative regulation of biological process","na":1,"nb":72,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["GO%3A1905869","negative regulation of 3'-UTR-mediated mRNA stabilization"],["GO%3A0045759","negative regulation of action potential"],["GO%3A0048519","negative regulation of biological process"],["GO%3A0030712","negative regulation of border follicle cell delamination"],["GO%3A1903780","negative regulation of cardiac conduction"],["GO%3A0048523","negative regulation of cellular process"]]},{"id":"GO:0006631","l":"fatty acid metabolic process","na":1,"nb":71,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["ComplexPortal%3ACPX-6169","Mitochondrial propionyl-CoA carboxylase complex"],["ComplexPortal%3ACPX-1038","PIP2-OAF1 transcription factor complex"],["ComplexPortal%3ACPX-25756","SREBP-SCAP transcription regulator complex"],["GO%3A0006633","fatty acid biosynthetic process"],["GO%3A0009062","fatty acid catabolic process"],["GO%3A0006631","fatty acid metabolic process"]]},{"id":"GO:0006955","l":"immune response","na":1,"nb":69,"a":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"]],"b":[["ComplexPortal%3ACPX-381","Interleukin-12 complex"],["ComplexPortal%3ACPX-387","Interleukin-12 complex"],["ComplexPortal%3ACPX-382","Interleukin-12-receptor ligand complex"],["ComplexPortal%3ACPX-3290","Interleukin-23 complex"],["ComplexPortal%3ACPX-389","Interleukin-23-receptor complex"],["ComplexPortal%3ACPX-383","Interleukin-23 receptor-ligand complex"]]},{"id":"GO:0006814","l":"sodium ion transport","na":1,"nb":67,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"]],"b":[["GO%3A0003096","renal sodium ion transport"],["GO%3A0035725","sodium ion transmembrane transport"],["GO%3A0006814","sodium ion transport"],["NCBIfam%3ANF050096","bicarbonate transporter BicA"],["NCBIfam%3ATIGR02711","cation/acetate symporter ActP"],["NCBIfam%3ANF047943","citrate/sodium symporter CitS"]]},{"id":"GO:0006950","l":"response to stress","na":1,"nb":67,"a":[["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"]],"b":[["GO%3A0033554","cellular response to stress"],["GO%3A0006952","defense response"],["GO%3A0033555","multicellular organismal response to stress"],["GO%3A0003299","muscle hypertrophy in response to stress"],["GO%3A0009271","phage shock"],["GO%3A0034059","response to anoxia"]]},{"id":"GO:0000271","l":"polysaccharide biosynthetic process","na":1,"nb":66,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"]],"b":[["ComplexPortal%3ACPX-417","Glucosidase II complex"],["GO%3A0051072","4,6-pyruvylated galactose residue biosynthetic process"],["GO%3A0042121","alginic acid biosynthetic process"],["GO%3A0035884","arabinan biosynthetic process"],["GO%3A0045227","capsule polysaccharide biosynthetic process"],["GO%3A0070592","cell wall polysaccharide biosynthetic process"]]},{"id":"GO:0044282","l":"small molecule catabolic process","na":1,"nb":63,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"]],"b":[["GO%3A0046164","alcohol catabolic process"],["GO%3A0046395","carboxylic acid catabolic process"],["GO%3A0019341","dibenzo-p-dioxin catabolic process"],["GO%3A0046294","formaldehyde catabolic process"],["GO%3A0046952","ketone body catabolic process"],["GO%3A0042182","ketone catabolic process"]]},{"id":"GO:0071973","l":"bacterial-type flagellum-dependent cell motility","na":1,"nb":60,"a":[["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"]],"b":[["ComplexPortal%3ACPX-4886","DNA-directed RNA polymerase holoenzyme complex, SigmaF variant"],["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["GO%3A0071973","bacterial-type flagellum-dependent cell motility"],["GO%3A0071978","bacterial-type flagellum-dependent swarming motility"]]},{"id":"GO:0019752","l":"carboxylic acid metabolic process","na":1,"nb":59,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"]],"b":[["GO%3A1902056","(25S)-Delta(7)-dafachronate metabolic process"],["GO%3A0006525","arginine metabolic process"],["GO%3A0009072","aromatic amino acid metabolic process"],["GO%3A0018872","arsonoacetate metabolic process"],["GO%3A0120552","branched-chain alpha-keto acid decarboxylation to branched-chain acyl-CoA"],["GO%3A0009081","branched-chain amino acid metabolic process"]]},{"id":"CHEBI:17879","l":"4-hydroxybenzoate","na":1,"nb":57,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["EC%3A1.13.11.41","2,4'-dihydroxyacetophenone dioxygenase"],["EC%3A1.14.13.2","4-hydroxybenzoate 3-monooxygenase"],["EC%3A1.14.13.33","4-hydroxybenzoate 3-monooxygenase [NAD(P)H]"],["EC%3A1.14.13.64","4-hydroxybenzoate 1-hydroxylase"],["EC%3A1.14.14.92","benzoate 4-monooxygenase"],["EC%3A1.14.19.55","4-hydroxybenzoate brominase (decarboxylating)"]]},{"id":"CHEBI:15589","l":"(S)-malate(2-)","na":1,"nb":56,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["EC%3A1.1.1.299","malate dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.1.37","(S)-malate dehydrogenase (NAD(+), oxaloacetate-forming)"],["EC%3A1.1.1.38","malate dehydrogenase (oxaloacetate-decarboxylating)"],["EC%3A1.1.1.39","malate dehydrogenase (decarboxylating)"],["EC%3A1.1.1.40","malate dehydrogenase (oxaloacetate-decarboxylating) (NADP(+))"],["EC%3A1.1.1.82","malate dehydrogenase (NADP(+))"]]},{"id":"NCBITaxon:2","l":"Bacteria","na":56,"nb":1,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2","Bacteria orthologous groups (OrthoDB)"]]},{"id":"GO:0046394","l":"carboxylic acid biosynthetic process","na":1,"nb":55,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["GO%3A0042861","achromobactin biosynthetic process"],["GO%3A1901112","actinorhodin biosynthetic process"],["GO%3A0006523","alanine biosynthetic process"],["GO%3A0019578","aldaric acid biosynthetic process"],["GO%3A0042121","alginic acid biosynthetic process"],["GO%3A0009073","aromatic amino acid biosynthetic process"]]},{"id":"GO:0006094","l":"gluconeogenesis","na":1,"nb":52,"a":[["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"]],"b":[["ComplexPortal%3ACPX-1992","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-2039","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-2040","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-1994","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"],["ComplexPortal%3ACPX-2041","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"],["ComplexPortal%3ACPX-2042","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"]]},{"id":"GO:0006865","l":"amino acid transport","na":1,"nb":52,"a":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"]],"b":[["GO%3A0015800","acidic amino acid transport"],["GO%3A0043090","amino acid import"],["GO%3A0051933","amino acid neurotransmitter reuptake"],["GO%3A0003333","amino acid transmembrane transport"],["GO%3A0006865","amino acid transport"],["GO%3A0015802","basic amino acid transport"]]},{"id":"GO:0009117","l":"nucleotide metabolic process","na":1,"nb":50,"a":[["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"]],"b":[["GO%3A0009394","2'-deoxyribonucleotide metabolic process"],["GO%3A0009187","cyclic nucleotide metabolic process"],["GO%3A0015959","diadenosine polyphosphate metabolic process"],["GO%3A0072387","flavin adenine dinucleotide metabolic process"],["GO%3A0046496","nicotinamide nucleotide metabolic process"],["GO%3A0009165","nucleotide biosynthetic process"]]},{"id":"GO:0044550","l":"secondary metabolite biosynthetic process","na":1,"nb":46,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["GO%3A1900581","(17Z)-protosta-17(20),24-dien-3beta-ol biosynthetic process"],["GO%3A0009821","alkaloid biosynthetic process"],["GO%3A1900587","arugosin biosynthetic process"],["GO%3A0036184","asperthecin biosynthetic process"],["GO%3A0062032","cichorine biosynthetic process"],["GO%3A1900799","cordyol C biosynthetic process"]]},{"id":"CHEBI:30212","l":"photon","na":1,"nb":45,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["EC%3A1.10.3.9","photosystem II"],["EC%3A1.13.12.13","Oplophorus-luciferin 2-monooxygenase"],["EC%3A1.13.12.18","dinoflagellate luciferase"],["EC%3A1.13.12.5","Renilla-type luciferase"],["EC%3A1.13.12.6","Cypridina-luciferin 2-monooxygenase"],["EC%3A1.13.12.7","firefly luciferase"]]},{"id":"CHEBI:506227","l":"N-acetyl-D-glucosamine","na":1,"nb":44,"a":[["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["EC%3A1.1.3.29","N-acylhexosamine oxidase"],["EC%3A2.3.1.3","glucosamine N-acetyltransferase"],["EC%3A2.4.1.211","1,3-beta-galactosyl-N-acetylhexosamine phosphorylase"],["EC%3A2.4.1.280","N,N'-diacetylchitobiose phosphorylase"],["EC%3A2.4.1.320","1,4-beta-mannosyl-N-acetylglucosamine phosphorylase"],["EC%3A2.4.1.90","N-acetyllactosamine synthase"]]},{"id":"GO:0042178","l":"xenobiotic catabolic process","na":1,"nb":42,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["GO%3A0046230","2-aminobenzenesulfonate catabolic process"],["GO%3A0046304","2-nitropropane catabolic process"],["GO%3A0019610","3-hydroxyphenylacetate catabolic process"],["GO%3A0019380","3-phenylpropionate catabolic process"],["GO%3A0046196","4-nitrophenol catabolic process"],["GO%3A0019639","6-hydroxycineole catabolic process"]]},{"id":"GO:0030198","l":"extracellular matrix organization","na":1,"nb":41,"a":[["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]],"b":[["ComplexPortal%3ACPX-1801","Integrin alpha2-beta1 complex"],["ComplexPortal%3ACPX-3115","Integrin alpha2-beta1 complex"],["ComplexPortal%3ACPX-4423","Matrilin-1 complex"],["ComplexPortal%3ACPX-4463","Matrilin-1 complex"],["ComplexPortal%3ACPX-4521","Matrilin-1 complex"],["ComplexPortal%3ACPX-4503","Matrilin-1 - Matrilin-3 complex"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima (strain ATCC 43589 / DSM 3109 / JCM 10099 / NBRC 100826 / MSB8)","na":1,"nb":39,"a":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]],"b":[["Pfam%3APF02829","3H domain"],["Pfam%3APF13175","AAA ATPase domain"],["Pfam%3APF01958","Aspartate dehydrogenase, C-terminal"],["Pfam%3APF05448","Acetyl xylan esterase (AXE1)"],["Pfam%3APF04509","CheC-like family"],["Pfam%3APF13690","Chemotaxis phosphatase CheX"]]},{"id":"GO:0006954","l":"inflammatory response","na":1,"nb":38,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["ComplexPortal%3ACPX-2862","Caspase-7 complex"],["ComplexPortal%3ACPX-3947","Caspase-7 complex"],["ComplexPortal%3ACPX-363","Heparanase complex"],["ComplexPortal%3ACPX-10322","IL33 receptor-ligand complex"],["ComplexPortal%3ACPX-9301","Interleukin-17A complex"],["ComplexPortal%3ACPX-10317","Interleukin-26 complex"]]},{"id":"GO:0007267","l":"cell-cell signaling","na":1,"nb":38,"a":[["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["ComplexPortal%3ACPX-10317","Interleukin-26 complex"],["GO%3A0035425","autocrine signaling"],["GO%3A0061939","c-di-GMP signaling"],["GO%3A0007267","cell-cell signaling"],["GO%3A0045168","cell-cell signaling involved in cell fate commitment"],["GO%3A0060764","cell-cell signaling involved in mammary gland development"]]},{"id":"GO:0008283","l":"cell population proliferation","na":1,"nb":37,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["ComplexPortal%3ACPX-2799","CRL4-DCAF4 E3 ubiquitin ligase complex, CUL4A variant"],["ComplexPortal%3ACPX-2859","CRL4-DCAF4 E3 ubiquitin ligase complex, CUL4B variant"],["GO%3A0008283","cell population proliferation"],["GO%3A0071838","cell proliferation in bone marrow"],["GO%3A0035736","cell proliferation involved in compound eye morphogenesis"],["GO%3A0060722","cell proliferation involved in embryonic placenta development"]]},{"id":"GO:0009231","l":"riboflavin biosynthetic process","na":1,"nb":36,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["GO%3A0009231","riboflavin biosynthetic process"],["NCBIfam%3ANF000814","6,7-dimethyl-8-ribityllumazine synthase"],["NCBIfam%3ANF009084","6,7-dimethyl-8-ribityllumazine synthase"],["NCBIfam%3ANF013081","6,7-dimethyl-8-ribityllumazine synthase"],["NCBIfam%3ATIGR00114","6,7-dimethyl-8-ribityllumazine synthase"],["NCBIfam%3ANF006803","bifunctional 3,4-dihydroxy-2-butanone-4-phosphate synthase/GTP cyclohydrolase II"]]},{"id":"GO:1900376","l":"regulation of secondary metabolite biosynthetic process","na":1,"nb":36,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"]],"b":[["GO%3A1900377","negative regulation of secondary metabolite biosynthetic process"],["GO%3A1900378","positive regulation of secondary metabolite biosynthetic process"],["GO%3A1900177","regulation of aflatoxin biosynthetic process"],["GO%3A1900626","regulation of arugosin biosynthetic process"],["GO%3A1900379","regulation of asperthecin biosynthetic process"],["GO%3A1900861","regulation of cordyol C biosynthetic process"]]},{"id":"NCBITaxon:1898203","l":"Lachnospiraceae bacterium","na":1,"nb":35,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]],"b":[["TED%3AAF-A0A2G3Q064-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G3Q064-F1-model_v4_TED01"],["TED%3AAF-A0A316PVU3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A316PVU3-F1-model_v4_TED02"],["TED%3AAF-A0A349YHB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349YHB4-F1-model_v4_TED01"],["TED%3AAF-A0A349ZVK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349ZVK2-F1-model_v4_TED01"],["TED%3AAF-A0A354ID29-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A354ID29-F1-model_v4_TED04"],["TED%3AAF-A0A355NJL5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A355NJL5-F1-model_v4_TED02"]]},{"id":"CHEBI:17855","l":"triglyceride","na":1,"nb":34,"a":[["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["EC%3A2.3.1.158","phospholipid:diacylglycerol acyltransferase"],["EC%3A2.3.1.77","triacylglycerol--sterol O-acyltransferase"],["EC%3A3.1.1.3","triacylglycerol lipase"],["EC%3A3.1.1.34","lipoprotein lipase"],["EC%3A3.1.1.79","hormone-sensitive lipase"],["RHEA%3A77987","9-hydroxy-octadecanoate + a triacylglycerol = 9-(acyloxy)-octadecanoate + a 1,3-diacylglycerol"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":1,"nb":32,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["Pfam%3APF25848","Rodlin protein"],["Pfam%3APF13420","Acetyltransferase (GNAT) domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF26381","BREX System ATPase PglY protein 5th domain"],["Pfam%3APF26382","BREX System ATPase PglY protein 6th domain"]]},{"id":"GO:0044780","l":"bacterial-type flagellum assembly","na":1,"nb":30,"a":[["SynCom_MetG2_Rhizobacteria_Sugarcane_Stress_Resilience.html","SynCom MetG2 Rhizobacteria Sugarcane Stress Resilience"]],"b":[["ComplexPortal%3ACPX-4886","DNA-directed RNA polymerase holoenzyme complex, SigmaF variant"],["GO%3A0044780","bacterial-type flagellum assembly"],["NCBIfam%3ANF007836","flagella biosynthesis regulatory protein FliT"],["NCBIfam%3ANF006281","flagella length regulator FlaG"],["NCBIfam%3ANF047373","flagellar assembly lytic transglycosylase"],["NCBIfam%3ATIGR02541","flagellar assembly peptidoglycan hydrolase FlgJ"]]},{"id":"GO:0046718","l":"symbiont entry into host cell","na":1,"nb":30,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["ComplexPortal%3ACPX-5768","MERS-CoV Spike - human DPP4 receptor complex"],["ComplexPortal%3ACPX-5769","MERS-CoV Spike - human DPP4 receptor complex"],["ComplexPortal%3ACPX-5683","SARS-CoV-2 Spike - human ACE2 receptor complex"],["ComplexPortal%3ACPX-6761","SARS-CoV-2 Spike - human CLEC4M lectin complex"],["ComplexPortal%3ACPX-5695","SARS-CoV Spike - human ACE2 receptor complex"],["ComplexPortal%3ACPX-5696","SARS-CoV Spike - human CLEC4M lectin complex"]]},{"id":"GO:0006526","l":"L-arginine biosynthetic process","na":1,"nb":28,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["ComplexPortal%3ACPX-579","Carbamoyl-phosphate synthase arginine-specific"],["ComplexPortal%3ACPX-1937","Carbamoyl phosphate synthetase complex"],["ComplexPortal%3ACPX-1151","N-acetylglutamate synthase NAGS/NAGK complex"],["GO%3A0006526","L-arginine biosynthetic process"],["NCBIfam%3ANF003474","acetylornithine deacetylase"],["NCBIfam%3ATIGR01892","acetylornithine deacetylase"]]},{"id":"CHEBI:16235","l":"guanine","na":1,"nb":27,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["EC%3A2.4.2.1","purine-nucleoside phosphorylase"],["EC%3A2.4.2.15","guanosine phosphorylase"],["EC%3A2.4.2.29","tRNA-guanosine(34) preQ1 transglycosylase"],["EC%3A2.4.2.48","tRNA-guanine(15) transglycosylase"],["EC%3A2.4.2.64","tRNA-guanosine(34) queuine transglycosylase"],["EC%3A2.4.2.8","hypoxanthine phosphoribosyltransferase"]]},{"id":"CHEBI:17234","l":"glucose","na":26,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:16007","l":"methanethiol","na":1,"nb":25,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["EC%3A1.14.13.131","dissimilatory dimethyl-sulfide monooxygenase"],["EC%3A1.8.1.21","dissimilatory dimethyldisulfide reductase"],["EC%3A1.8.3.4","methanethiol oxidase"],["EC%3A2.1.1.251","methylated-thiol--coenzyme M methyltransferase"],["EC%3A2.1.1.334","methanethiol S-methyltransferase"],["EC%3A2.5.1.49","O-acetylhomoserine aminocarboxypropyltransferase"]]},{"id":"CHEBI:18346","l":"vanillin","na":1,"nb":25,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"]],"b":[["EC%3A1.1.3.38","vanillyl-alcohol oxidase"],["EC%3A1.11.1.16","versatile peroxidase"],["EC%3A1.13.11.43","lignostilbene alphabeta-dioxygenase"],["EC%3A1.13.11.88","isoeugenol monooxygenase"],["EC%3A1.13.11.94","4-vinylguaiacol dioxygenase"],["EC%3A1.2.1.67","vanillin dehydrogenase"]]},{"id":"NCBITaxon:226186","l":"Bacteroides thetaiotaomicron (strain ATCC 29148 / DSM 2079 / JCM 5827 / CCUG 10774 / NCTC 10582 / VPI-5482 / E50)","na":1,"nb":25,"a":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"]],"b":[["Pfam%3APF06439","3-keto-alpha-glucoside-1,2-lyase-like domain"],["Pfam%3APF13444","Acetyltransferase (GNAT) domain"],["Pfam%3APF19576","Acyltransferase"],["Pfam%3APF23764","GLAA-B beta-barrel domain II"],["Pfam%3APF13715","CarboxypepD_reg-like domain"],["Pfam%3APF26120","SusF, first starch specific CBM"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":1,"nb":25,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["Pfam%3APF13372","Alginate export"],["Pfam%3APF25965","ALG44 beta-barrel domain"],["Pfam%3APF25964","ALG44, barrel-sandwich hybrid domain"],["Pfam%3APF16844","Dinitrogenase iron-molybdenum cofactor, N-terminal"],["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"]]},{"id":"GO:0002221","l":"pattern recognition receptor signaling pathway","na":1,"nb":24,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["ComplexPortal%3ACPX-4242","Caspase-1 complex"],["ComplexPortal%3ACPX-952","Caspase-1 complex"],["ComplexPortal%3ACPX-4144","NLRC4 inflammasome"],["ComplexPortal%3ACPX-4082","NLRP1 inflammasome"],["ComplexPortal%3ACPX-4947","NLRP1 inflammasome, variant 1"],["ComplexPortal%3ACPX-4948","NLRP1 inflammasome, variant 2"]]},{"id":"GO:0018958","l":"phenol-containing compound metabolic process","na":1,"nb":24,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["GO%3A0031147","1-(3,5-dichloro-2,6-dihydroxy-4-methoxyphenyl)hexan-1-one metabolic process"],["GO%3A0018921","3-hydroxybenzyl alcohol metabolic process"],["GO%3A1901022","4-hydroxyphenylacetate metabolic process"],["GO%3A0018960","4-nitrophenol metabolic process"],["GO%3A0042215","anaerobic phenol-containing compound metabolic process"],["GO%3A0036182","asperthecin metabolic process"]]},{"id":"GO:0006221","l":"pyrimidine nucleotide biosynthetic process","na":1,"nb":22,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["ComplexPortal%3ACPX-579","Carbamoyl-phosphate synthase arginine-specific"],["GO%3A0009221","pyrimidine deoxyribonucleotide biosynthetic process"],["GO%3A0006221","pyrimidine nucleotide biosynthetic process"],["GO%3A0032262","pyrimidine nucleotide salvage"],["GO%3A0009220","pyrimidine ribonucleotide biosynthetic process"],["NCBIfam%3ANF018158","CTP synthase N-terminus"]]},{"id":"CHEBI:17437","l":"dimethyl sulfide","na":1,"nb":21,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["EC%3A1.14.13.131","dissimilatory dimethyl-sulfide monooxygenase"],["EC%3A1.14.13.245","assimilatory dimethylsulfide S-monooxygenase"],["EC%3A1.8.2.4","dimethyl sulfide:cytochrome c2 reductase"],["EC%3A1.8.5.3","respiratory dimethylsulfoxide reductase"],["EC%3A2.1.1.19","trimethylsulfonium--tetrahydrofolate N-methyltransferase"],["EC%3A2.1.1.334","methanethiol S-methyltransferase"]]},{"id":"GO:0006817","l":"phosphate ion transport","na":1,"nb":21,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["GO%3A0035435","phosphate ion transmembrane transport"],["GO%3A0006817","phosphate ion transport"],["GO%3A0044341","sodium-dependent phosphate transport"],["NCBIfam%3ANF033774","inorganic phosphate transporter PitA"],["NCBIfam%3ATIGR00972","phosphate ABC transporter ATP-binding protein PstB"],["NCBIfam%3ANF023916","phosphate ABC transporter permease family protein"]]},{"id":"CHEBI:16411","l":"indole-3-acetic acid","na":20,"nb":1,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_IAC","IAC-binding site"]]},{"id":"CHEBI:2181","l":"L-fucopyranose","na":1,"nb":20,"a":[["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"]],"b":[["EC%3A1.1.1.122","D-threo-aldose 1-dehydrogenase"],["EC%3A3.2.1.51","alpha-L-fucosidase"],["EC%3A3.2.1.63","1,2-alpha-L-fucosidase"],["EC%3A5.3.1.25","L-fucose isomerase"],["RHEA%3A49308","a neolactoside IV(2)-alpha-Fuc-nLc4Cer(d18:0) + H2O = a neolactoside nLc4Cer(d18:0) + L-fucose"],["RHEA%3A48224","a neolactoside IV(2)-alpha-Fuc-nLc4Cer(d18:1(4E)) + H2O = a neolactoside nLc4Cer(d18:1(4E)) + L-fucose"]]},{"id":"GO:0052031","l":"symbiont-mediated perturbation of host defense response","na":1,"nb":20,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["GO%3A0140415","effector-mediated perturbation of host defenses by symbiont"],["GO%3A0140424","symbiont-mediated activation of blood coagulation, intrinsic pathway"],["GO%3A0039587","symbiont-mediated-mediated suppression of host tetherin activity"],["GO%3A0052084","symbiont-mediated modulation of host ethylene-mediated defense response"],["GO%3A0052031","symbiont-mediated perturbation of host defense response"],["GO%3A0052553","symbiont-mediated perturbation of host immune response"]]},{"id":"CHEBI:18022","l":"thiocyanate","na":1,"nb":19,"a":[["Thiocyanate_Afipia_Thiobacillus_Bioreactor_Community.html","Thiocyanate-Degrading Afipia and Thiobacillus Bioreactor Community"]],"b":[["EC%3A1.8.2.7","thiocyanate desulfurase"],["EC%3A2.1.1.n4","thiocyanate methyltransferase"],["EC%3A2.8.1.1","thiosulfate sulfurtransferase"],["EC%3A3.5.5.8","thiocyanate hydrolase"],["RHEA%3A63880","thiocyanate + 2 Fe(III)-[cytochrome c] + H2O = cyanate + sulfur + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A21464","thiocyanate + H2O + 2 H(+) = carbonyl sulfide + NH4(+)"]]},{"id":"GO:0019319","l":"hexose biosynthetic process","na":1,"nb":19,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["GO%3A0019315","D-allose biosynthetic process"],["GO%3A0046370","fructose biosynthetic process"],["GO%3A0042353","fucose biosynthetic process"],["GO%3A0046369","galactose biosynthetic process"],["GO%3A0006094","gluconeogenesis"],["GO%3A0019319","hexose biosynthetic process"]]},{"id":"CHEBI:16838","l":"polyphosphate","na":1,"nb":18,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"]],"b":[["EC%3A2.7.1.63","polyphosphate--glucose phosphotransferase"],["EC%3A2.7.4.1","ATP-polyphosphate phosphotransferase"],["EC%3A2.7.4.17","3-phosphoglyceroyl-phosphate--polyphosphate phosphotransferase"],["EC%3A2.7.4.20","dolichyl-diphosphate--polyphosphate phosphotransferase"],["EC%3A2.7.4.33","AMP-polyphosphate phosphotransferase"],["EC%3A2.7.4.34","GDP-polyphosphate phosphotransferase"]]},{"id":"NCBITaxon:2697049","l":"Severe acute respiratory syndrome coronavirus 2","na":1,"nb":18,"a":[["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"]],"b":[["IDPO%3A0000002","disorder"],["IDPO%3A0000033","flexible linker"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000041","glycosylation display site"],["IDPO%3A0000048","limited proteolysis display site"],["IDPO%3A0000037","molecular recognition display site"]]},{"id":"CHEBI:16881","l":"1H-indole","na":1,"nb":17,"a":[["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"]],"b":[["EC%3A1.13.11.17","indole 2,3-dioxygenase"],["EC%3A1.14.14.153","indole-2-monooxygenase"],["EC%3A4.1.1.92","indole-3-carboxylate decarboxylase"],["EC%3A4.1.2.8","indole-3-glycerol-phosphate lyase"],["EC%3A4.1.99.1","tryptophanase"],["EC%3A4.2.1.122","tryptophan synthase (indole-salvaging)"]]},{"id":"CHEBI:17120","l":"hexanoate","na":1,"nb":17,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"]],"b":[["EC%3A3.5.1.39","alkylamidase"],["RHEA%3A53496","1-hexanoyl-2-acyl-sn-glycero-3-phosphocholine + H2O = hexanoate + a 2-acyl-sn-glycero-3-phosphocholine + H(+)"],["RHEA%3A54464","1-octadecanoyl-2-hexanoyl-sn-glycero-3-phosphocholine + H2O = hexanoate + 1-octadecanoyl-sn-glycero-3-phosphocholine + H(+)"],["RHEA%3A47352","a hexanoate ester + H2O = an aliphatic alcohol + hexanoate + H(+)"],["RHEA%3A79351","hexanal + 2 Fe(III)-[cytochrome c] + H2O = hexanoate + 2 Fe(II)-[cytochrome c] + 3 H(+)"],["RHEA%3A67276","hexanal + NAD(+) + H2O = hexanoate + NADH + 2 H(+)"]]},{"id":"GO:0015940","l":"pantothenate biosynthetic process","na":1,"nb":17,"a":[["Variovorax_Cryptococcus_Vitamin_Mutualism_Microcosm.html","Variovorax-Cryptococcus Vitamin Cross-Feeding Microcosm"]],"b":[["GO%3A0015940","pantothenate biosynthetic process"],["NCBIfam%3ANF005087","2-dehydropantoate 2-reductase"],["NCBIfam%3ANF005092","2-dehydropantoate 2-reductase"],["NCBIfam%3ANF005093","2-dehydropantoate 2-reductase"],["NCBIfam%3ANF005094","2-dehydropantoate 2-reductase"],["NCBIfam%3ANF006083","2-dehydropantoate 2-reductase"]]},{"id":"GO:0006090","l":"pyruvate metabolic process","na":1,"nb":16,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"]],"b":[["GO%3A0061678","Entner-Doudoroff pathway"],["GO%3A0061718","glucose catabolic process to pyruvate"],["GO%3A0006096","glycolytic process"],["GO%3A0033508","L-glutamate fermentation"],["GO%3A0019617","protocatechuate catabolic process, meta-cleavage"],["GO%3A0042866","pyruvate biosynthetic process"]]},{"id":"GO:0006527","l":"L-arginine catabolic process","na":1,"nb":16,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["GO%3A0006527","L-arginine catabolic process"],["NCBIfam%3ATIGR01273","arginine decarboxylase"],["NCBIfam%3ANF002381","arginine deiminase"],["NCBIfam%3ATIGR01078","arginine deiminase"],["NCBIfam%3ANF007770","arginine N-succinyltransferase"],["NCBIfam%3ATIGR03244","arginine N-succinyltransferase"]]},{"id":"NCBITaxon:3847","l":"Glycine max","na":1,"nb":16,"a":[["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["Pfam%3APF02095","Extensin-like protein"],["Pfam%3APF00477","Small hydrophilic plant seed protein"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF08027","Albumin I chain b"],["Pfam%3APF10539","Development and cell death domain"],["Pfam%3APF03386","Early nodulin 93 ENOD93 protein"]]},{"id":"CHEBI:36080","l":"protein","na":1,"nb":15,"a":[["Wollastonite_Ramichloridium_Talaromyces_Fungal_Consortium.html","Wollastonite Ramichloridium-Talaromyces Fungal Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A3.A.16","The Endoplasmic Reticular Retrotranslocon (ER-RT) Family"],["TCDB%3A3.A.27","The Endoplasmic Reticulum Membrane Protein Insertion Complex (EMC) Family"],["TCDB%3A9.A.57","The Extended-Synaptotagmin (E-Syt) Family"],["TCDB%3A3.A.13","The Filamentous Phage Exporter (FPhE) Family"],["TCDB%3A9.A.37","The Nuclear Import Tax Protein (Tax) Family"]]},{"id":"GO:0044010","l":"single-species biofilm formation","na":1,"nb":15,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"]],"b":[["ComplexPortal%3ACPX-4063","ChpBS toxin-antitoxin complex"],["ComplexPortal%3ACPX-4743","Curli secretion complex"],["ComplexPortal%3ACPX-1079","DinJ-YafQ toxin-antitoxin complex"],["ComplexPortal%3ACPX-3296","Fucose-binding lectin II complex"],["ComplexPortal%3ACPX-1086","MazEF toxin-antitoxin complex"],["ComplexPortal%3ACPX-1084","MqsRA toxin-antitoxin complex"]]},{"id":"GO:0051453","l":"regulation of intracellular pH","na":1,"nb":15,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["ComplexPortal%3ACPX-3090","Glutathione-regulated potassium-efflux system KefB-KefG complex"],["ComplexPortal%3ACPX-2543","Glutathione-regulated potassium-efflux system KefC-KefF complex"],["ComplexPortal%3ACPX-26449","Sodium/proton exchanger complex, NHE1-CHP1 variant"],["ComplexPortal%3ACPX-26462","Sodium/proton exchanger complex, NHE1-CHP2 variant"],["ComplexPortal%3ACPX-26464","Sodium/proton exchanger complex, NHE1-CHP3 variant"],["ComplexPortal%3ACPX-26469","Sodium/proton exchanger complex, NHE2-CHP1 variant"]]},{"id":"NCBITaxon:2157","l":"Archaea","na":15,"nb":1,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2157","Archaea orthologous groups (OrthoDB)"]]},{"id":"GO:0009607","l":"response to biotic stimulus","na":1,"nb":14,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["GO%3A0071216","cellular response to biotic stimulus"],["GO%3A0009595","detection of biotic stimulus"],["GO%3A0036180","filamentous growth of a population of unicellular organisms in response to biotic stimulus"],["GO%3A0009607","response to biotic stimulus"],["GO%3A0043207","response to external biotic stimulus"],["GO%3A1990840","response to lectin"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":1,"nb":14,"a":[["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"]],"b":[["Pfam%3APF03703","Bacterial PH domain"],["Pfam%3APF01322","Cytochrome C'"],["Pfam%3APF03139","Vanadium/alternative nitrogenase delta subunit"],["Pfam%3APF09527","Putative F0F1-ATPase subunit Ca2+/Mg2+ transporter"],["Pfam%3APF03270","Protein of unknown function, DUF269"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":1,"nb":14,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF02224","Cytidylate kinase"],["Pfam%3APF03319","Ethanolamine utilisation protein EutN/carboxysome"],["Pfam%3APF22019","alpha-1,4-glucan branching enzyme GlgB, N-terminal domain"],["Pfam%3APF21714","Circadian clock protein KaiA, N-terminal domain"],["Pfam%3APF07688","KaiA C-terminal domain"]]},{"id":"CHEBI:15428","l":"glycine","na":1,"nb":13,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["MCSA%3A718","caspase-1"],["MCSA%3A599","dipeptidase E"],["MCSA%3A906","gelatinase A"],["MCSA%3A762","glycine C-acetyltransferase"],["MCSA%3A746","L-peptidase"],["MCSA%3A477","picornain 3C"]]},{"id":"GO:0019076","l":"viral release from host cell","na":1,"nb":13,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0046753","non-lytic viral release"],["GO%3A0044659","viral release from host cell by cytolysis"],["GO%3A0019076","viral release from host cell"],["Reactome%3AR-HSA-168298","Release"],["NCBIfam%3ANF037577","Rz1-like spanin outer membrane subunit"],["NCBIfam%3ANF012767","Vpu"]]},{"id":"GO:2000145","l":"regulation of cell motility","na":1,"nb":13,"a":[["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["GO%3A2000146","negative regulation of cell motility"],["GO%3A2000147","positive regulation of cell motility"],["GO%3A1905416","regulation of amoeboid sperm motility"],["GO%3A1902021","regulation of bacterial-type flagellum-dependent cell motility"],["GO%3A0030334","regulation of cell migration"],["GO%3A2000145","regulation of cell motility"]]},{"id":"NCBITaxon:165179","l":"Segatella copri","na":1,"nb":13,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["TED%3AAF-A0A3R6DW71-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3R6DW71-F1-model_v4_TED02"],["TED%3AAF-A0A3R6EGS2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R6EGS2-F1-model_v4_TED01"],["TED%3AAF-A0A5Q5FTM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Q5FTM4-F1-model_v4_TED01"],["TED%3AAF-A0A3R5WNG5-F1-model_v4_TED02","TED novel fold AF-A0A3R5WNG5-F1-model_v4_TED02"],["TED%3AAF-A0A3R5YKW9-F1-model_v4_TED01","TED novel fold AF-A0A3R5YKW9-F1-model_v4_TED01"],["TED%3AAF-A0A3R6FRY2-F1-model_v4_TED01","TED novel fold AF-A0A3R6FRY2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:239","l":"Flavobacterium sp.","na":1,"nb":13,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["Pfam%3APF21331","Isoamylase, C-terminal"],["TED%3AAF-A0A2E4PC55-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E4PC55-F1-model_v4_TED02"],["TED%3AAF-A0A2E4PGC5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4PGC5-F1-model_v4_TED01"],["TED%3AAF-A0A2E4PMB7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E4PMB7-F1-model_v4_TED02"],["TED%3AAF-A0A355BEV2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A355BEV2-F1-model_v4_TED02"],["TED%3AAF-A0A519QLA6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A519QLA6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:267377","l":"Methanococcus maripaludis (strain DSM 14266 / JCM 13030 / NBRC 101832 / S2 / LL)","na":1,"nb":13,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"]],"b":[["Pfam%3APF09171","N-glycosylase/DNA lyase"],["Pfam%3APF06847","Archaeal Peptidase A24 C-terminus Type II"],["Pfam%3APF06819","Archaeal Peptidase A24 C-terminal Domain"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF26558","3-dehydroquinate synthase II C-terminal domain"],["Pfam%3APF01959","3-dehydroquinate synthase II N-terminal domain"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":13,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["Pfam%3APF07832","Cfr10I/Bse634I restriction endonuclease"],["Pfam%3APF22348","Colicin-A N-terminal domain"],["Pfam%3APF01024","Colicin pore forming domain"],["Pfam%3APF18427","DD-reactivating factor swiveling domain"],["Pfam%3APF02286","Dehydratase large subunit"],["Pfam%3APF02288","Dehydratase medium subunit"]]},{"id":"CHEBI:16136","l":"hydrogen sulfide","na":12,"nb":1,"a":[["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["MCSA%3A398","sulfite reductase (NADPH)"]]},{"id":"CHEBI:16188","l":"octan-1-ol","na":1,"nb":12,"a":[["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["EC%3A1.1.1.73","octanol dehydrogenase"],["EC%3A1.14.15.3","alkane 1-monooxygenase"],["RHEA%3A79323","octan-1-ol + 2 Fe(III)-[cytochrome c] = octanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A64628","octan-1-ol + acetyl-CoA = octyl acetate + CoA"],["RHEA%3A64852","octan-1-ol + benzoyl-CoA = octyl benzoate + CoA"],["RHEA%3A44064","octan-1-ol + hexadecanoyl-CoA = octyl hexadecanoate + CoA"]]},{"id":"GO:0043419","l":"urea catabolic process","na":1,"nb":12,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"]],"b":[["ComplexPortal%3ACPX-1296","Urease activation complex"],["GO%3A0043419","urea catabolic process"],["NCBIfam%3ANF010592","urease subunit alpha"],["NCBIfam%3ANF009682","urease subunit beta"],["NCBIfam%3ANF010591","urease subunit beta"],["NCBIfam%3ANF009712","urease subunit gamma"]]},{"id":"GO:0061687","l":"detoxification of inorganic compound","na":1,"nb":12,"a":[["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["GO%3A0140114","cellular detoxification of fluoride"],["GO%3A0140961","cellular detoxification of metal ion"],["GO%3A0140982","detoxification of aluminum ion"],["GO%3A0071585","detoxification of cadmium ion"],["GO%3A0010299","detoxification of cobalt ion"],["GO%3A0010273","detoxification of copper ion"]]},{"id":"CHEBI:16918","l":"gallate","na":1,"nb":11,"a":[["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["EC%3A1.13.11.57","gallate dioxygenase"],["EC%3A2.1.1.341","vanillate/3-O-methylgallate O-demethylase"],["EC%3A2.4.1.136","gallate 1-beta-glucosyltransferase"],["EC%3A3.1.1.20","tannase"],["EC%3A4.1.1.59","gallate decarboxylase"],["RHEA%3A12749","3,4,5-trihydroxybenzoate + H(+) = 1,2,3-trihydroxybenzene + CO2"]]},{"id":"CHEBI:17847","l":"p-cresol","na":1,"nb":11,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["EC%3A1.14.13.236","toluene 4-monooxygenase"],["EC%3A1.17.9.1","4-methylphenol dehydrogenase (hydroxylating)"],["EC%3A4.1.1.83","4-hydroxyphenylacetate decarboxylase"],["EC%3A4.1.99.19","2-iminoacetate synthase"],["RHEA%3A22732","4-hydroxyphenylacetate + H(+) = 4-methylphenol + CO2"],["RHEA%3A56976","4-methylphenol + 2 oxidized [azurin] + H2O = 4-hydroxybenzyl alcohol + 2 reduced [azurin] + 2 H(+)"]]},{"id":"CHEBI:18212","l":"selenite(2-)","na":1,"nb":11,"a":[["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"]],"b":[["EC%3A1.97.1.14","selenate reductase (quinol)"],["EC%3A1.97.1.9","selenate reductase (cytochrome c)"],["RHEA%3A80603","selenite + 2 Fe(III)-[cytochrome c] + H2O = 2 Fe(II)-[cytochrome] + selenate + 2 H(+)"],["RHEA%3A34903","selenite + 4 glutathione + 2 H(+) = selenodiglutathione + glutathione disulfide + 3 H2O"],["RHEA%3A14029","selenite + A + H2O = selenate + AH2"],["RHEA%3A51636","selenite + a quinone + H2O = selenate + a quinol"]]},{"id":"CHEBI:28009","l":"N-acetyl-beta-D-glucosamine","na":1,"nb":11,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]],"b":[["RHEA%3A85211","alpha-di-N-acetylchitobiose + H2O = N-acetyl-beta-D-glucosamine + N-acetyl-alpha-D-glucosamine"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"],["TCDB%3A4.A.6","The PTS Mannose-Fructose-Sorbose (Man) Family"]]},{"id":"CHEBI:28685","l":"molybdenum atom","na":1,"nb":11,"a":[["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_MO","MO-binding site"],["proteintraitsmech%3AMETALPDB_MO_DINUCLEAR","dinuclear molybdenum site"],["proteintraitsmech%3AMETALPDB_MO_HEPTANUCLEAR","heptanuclear molybdenum site"],["proteintraitsmech%3AMETALPDB_MO_HEXANUCLEAR","hexanuclear molybdenum site"],["proteintraitsmech%3AMETALPDB_MO_MONONUCLEAR","mononuclear molybdenum site"],["proteintraitsmech%3AMETALPDB_MO_MULTINUCLEAR","multinuclear molybdenum site"]]},{"id":"CHEBI:49807","l":"lead(2+)","na":1,"nb":11,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_49807","requires lead(2+)"],["RHEA%3A52580","Pb(2+)(in) + ATP + H2O = Pb(2+)(out) + ADP + phosphate + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.4","The Cation Diffusion Facilitator (CDF) Family"],["TCDB%3A2.A.11","The Citrate-Mg2+:H+ (CitM) Citrate-Ca2+:H+ (CitH) Symporter (CitMHS) Family"],["TCDB%3A1.A.87","The Mechanosensitive Calcium Channel (MCA) Family"]]},{"id":"CHEBI:15075","l":"selenate","na":1,"nb":10,"a":[["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"]],"b":[["EC%3A1.97.1.14","selenate reductase (quinol)"],["EC%3A1.97.1.9","selenate reductase (cytochrome c)"],["RHEA%3A34887","selenate(in) = selenate(out)"],["RHEA%3A72079","selenate(out) + 3 Na(+)(out) = selenate(in) + 3 Na(+)(in)"],["RHEA%3A34883","selenate(out) + ATP + H2O = selenate(in) + ADP + phosphate + H(+)"],["RHEA%3A80603","selenite + 2 Fe(III)-[cytochrome c] + H2O = 2 Fe(II)-[cytochrome] + selenate + 2 H(+)"]]},{"id":"CHEBI:15688","l":"acetoin","na":1,"nb":10,"a":[["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"]],"b":[["EC%3A2.2.1.4","acetoin--ribose-5-phosphate transaldolase"],["EC%3A2.3.1.190","acetoin dehydrogenase system"],["RHEA%3A54364","2 acetaldehyde = acetoin"],["RHEA%3A76879","3-aminobutan-2-ol + NAD(+) + H2O = acetoin + NH4(+) + NADH + H(+)"],["RHEA%3A76931","3-aminobutan-2-ol + NADP(+) + H2O = acetoin + NH4(+) + NADPH + H(+)"],["RHEA%3A54368","acetaldehyde + pyruvate + H(+) = acetoin + CO2"]]},{"id":"CHEBI:16581","l":"pregnenolone","na":1,"nb":10,"a":[["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"]],"b":[["EC%3A1.14.14.19","steroid 17alpha-monooxygenase"],["EC%3A1.14.15.6","cholesterol monooxygenase (side-chain-cleaving)"],["RHEA%3A34343","(20R,22R)-20,22-dihydroxycholesterol + 2 reduced [adrenodoxin] + O2 + 2 H(+) = 4-methylpentanal + pregnenolone + 2 oxidized [adrenodoxin] + 2 H2O"],["RHEA%3A35739","6 reduced [adrenodoxin] + cholesterol + 3 O2 + 6 H(+) = 4-methylpentanal + pregnenolone + 6 oxidized [adrenodoxin] + 4 H2O"],["RHEA%3A52356","pregnenolone + 3'-phosphoadenylyl sulfate = pregnenolone sulfate + adenosine 3',5'-bisphosphate + H(+)"],["RHEA%3A43924","pregnenolone + NAD(+) = pregn-5-ene-3,20-dione + NADH + H(+)"]]},{"id":"CHEBI:16738","l":"2,4-dichlorophenol","na":1,"nb":10,"a":[["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"]],"b":[["EC%3A1.14.11.43","(S)-dichlorprop dioxygenase (2-oxoglutarate)"],["EC%3A1.14.11.44","(R)-dichlorprop dioxygenase (2-oxoglutarate)"],["EC%3A1.14.13.20","2,4-dichlorophenol 6-monooxygenase"],["RHEA%3A86719","2,4-dichlorophenol + AH2 = 4-chlorophenol + chloride + A + H(+)"],["RHEA%3A80611","2,4-dichlorophenol + NADH + O2 + H(+) = 3,5-dichlorocatechol + NAD(+) + H2O"],["RHEA%3A20920","2,4-dichlorophenol + NADPH + O2 + H(+) = 3,5-dichlorocatechol + NADP(+) + H2O"]]},{"id":"CHEBI:17051","l":"fluoride","na":1,"nb":10,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["EC%3A2.5.1.63","adenosyl-fluoride synthase"],["EC%3A3.8.1.3","haloacetate dehalogenase"],["EC%3A3.8.2.2","diisopropyl-fluorophosphatase"],["RHEA%3A24100","diisopropyl fluorophosphate + H2O = diisopropyl phosphate + fluoride + 2 H(+)"],["RHEA%3A76159","fluoride(in) = fluoride(out)"],["RHEA%3A16661","fluoride + S-adenosyl-L-methionine = 5'-deoxy-5'-fluoroadenosine + L-methionine"]]},{"id":"CHEBI:17698","l":"chloramphenicol","na":1,"nb":10,"a":[["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"]],"b":[["EC%3A1.14.99.67","alpha-N-dichloroacetyl-p-aminophenylserinol N-oxygenase"],["EC%3A2.3.1.28","chloramphenicol O-acetyltransferase"],["RHEA%3A58884","alpha-N-dichloroacetyl-p-aminophenylserinol + AH2 + 2 O2 = chloramphenicol + A + 2 H2O"],["RHEA%3A18421","chloramphenicol + acetyl-CoA = chloramphenicol 3-acetate + CoA"],["RHEA%3A35287","chloramphenicol(in) + ATP + H2O = chloramphenicol(out) + ADP + phosphate + H(+)"],["RHEA%3A35059","chloramphenicol(in) + H(+)(out) = chloramphenicol(out) + H(+)(in)"]]},{"id":"GO:0006548","l":"L-histidine catabolic process","na":1,"nb":10,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["GO%3A0006548","L-histidine catabolic process"],["Reactome%3AR-HSA-70921","Histidine catabolism"],["proteintraitsmech%3ASEED_SUBSYSTEM_Histidine_Degradation","Histidine Degradation"],["NCBIfam%3ATIGR01227","formimidoylglutamase"],["NCBIfam%3ATIGR02022","formimidoylglutamate deiminase"],["NCBIfam%3ATIGR02024","glutamate formimidoyltransferase"]]},{"id":"GO:0070482","l":"response to oxygen levels","na":1,"nb":10,"a":[["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"]],"b":[["ComplexPortal%3ACPX-3982","dosPC diguanylate cyclase/c-di-GMP phosphodiesterase complex"],["ComplexPortal%3ACPX-1882","HAP1 transcriptional repressor complex, SSA1 variant"],["ComplexPortal%3ACPX-1883","HAP1 transcriptional repressor complex, SSA2 variant"],["ComplexPortal%3ACPX-1276","HMC complex"],["GO%3A0071453","cellular response to oxygen levels"],["GO%3A0003032","detection of oxygen"]]},{"id":"GO:2000146","l":"negative regulation of cell motility","na":1,"nb":10,"a":[["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["GO%3A1905417","negative regulation of amoeboid sperm motility"],["GO%3A1902201","negative regulation of bacterial-type flagellum-dependent cell motility"],["GO%3A0030336","negative regulation of cell migration"],["GO%3A2000146","negative regulation of cell motility"],["GO%3A1902020","negative regulation of cilium-dependent cell motility"],["PANTHER%3APTHR28616","COILED-COIL DOMAIN-CONTAINING PROTEIN 125"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":1,"nb":10,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["TED%3AAF-A0A5T2E4X7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5T2E4X7-F1-model_v4_TED01"],["TED%3AAF-A0A5Y4BP44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Y4BP44-F1-model_v4_TED01"],["TED%3AAF-A0A623P6F3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A623P6F3-F1-model_v4_TED02"],["TED%3AAF-A0A721BDS7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A721BDS7-F1-model_v4_TED02"],["TED%3AAF-A0A743P324-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A743P324-F1-model_v4_TED01"],["TED%3AAF-A0A757VWR3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A757VWR3-F1-model_v4_TED02"]]},{"id":"CHEBI:18248","l":"iron atom","na":1,"nb":9,"a":[["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18248","requires Fe"],["proteintraitsmech%3AMETALPDB_FE_DINUCLEAR","dinuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_HEPTANUCLEAR","heptanuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_HEXANUCLEAR","hexanuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_MONONUCLEAR","mononuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_OCTANUCLEAR","octanuclear iron site"]]},{"id":"CHEBI:26710","l":"sodium chloride","na":9,"nb":1,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["TCDB%3A2.A.30","The Cation-Chloride Cotransporter (CCC) Family"]]},{"id":"GO:0009266","l":"response to temperature stimulus","na":1,"nb":9,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["GO%3A0071502","cellular response to temperature stimulus"],["GO%3A0016048","detection of temperature stimulus"],["GO%3A0009409","response to cold"],["GO%3A0009408","response to heat"],["GO%3A0009266","response to temperature stimulus"],["GO%3A0010378","temperature compensation of the circadian clock"]]},{"id":"GO:0043903","l":"regulation of biological process involved in symbiotic interaction","na":1,"nb":9,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["GO%3A0052372","modulation by symbiont of entry into host"],["GO%3A0140471","positive regulation of transepithelial migration of symbiont in host"],["GO%3A0043903","regulation of biological process involved in symbiotic interaction"],["GO%3A0075045","regulation of formation by symbiont of haustorium for nutrient acquisition from host"],["GO%3A1901252","regulation of intracellular transport of viral material"],["GO%3A0070949","regulation of neutrophil mediated killing of symbiont cell"]]},{"id":"NCBITaxon:1344414","l":"Trichoderma reesei RUT C-30","na":1,"nb":9,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["Pfam%3APF00457","Glycosyl hydrolases family 11"],["Pfam%3APF01341","Glycosyl hydrolases family 6"],["PROSITE%3APS00155","Cutinase, serine active site"],["PROSITE%3APS00776","Glycosyl hydrolases family 11 (GH11) active site signature 1"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"],["PROSITE%3APS00655","Glycosyl hydrolases family 6 signature 1"]]},{"id":"NCBITaxon:2903","l":"Emiliania huxleyi","na":1,"nb":9,"a":[["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"]],"b":[["TED%3AAF-A0A7S3RZJ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3RZJ4-F1-model_v4_TED01"],["TED%3AAF-A0A7S3W933-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3W933-F1-model_v4_TED01"],["TED%3AAF-A0A7S3W9Q3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3W9Q3-F1-model_v4_TED01"],["TED%3AAF-R1DPG1-F1-model_v4_TED01","TED highly-symmetric fold AF-R1DPG1-F1-model_v4_TED01"],["TED%3AAF-A0A7S3TQB6-F1-model_v4_TED02","TED novel fold AF-A0A7S3TQB6-F1-model_v4_TED02"],["TED%3AAF-R1BEB4-F1-model_v4_TED01","TED novel fold AF-R1BEB4-F1-model_v4_TED01"]]},{"id":"CHEBI:27698","l":"vanadium atom","na":1,"nb":8,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_V_DECANUCLEAR","decanuclear vanadium site"],["proteintraitsmech%3AMETALPDB_V_DINUCLEAR","dinuclear vanadium site"],["proteintraitsmech%3AMETALPDB_V_HEPTANUCLEAR","heptanuclear vanadium site"],["proteintraitsmech%3AMETALPDB_V_HEXANUCLEAR","hexanuclear vanadium site"],["proteintraitsmech%3AMETALPDB_V_MONONUCLEAR","mononuclear vanadium site"],["proteintraitsmech%3AMETALPDB_V_OCTANUCLEAR","octanuclear vanadium site"]]},{"id":"CHEBI:37166","l":"xylan","na":8,"nb":1,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"GO:0042436","l":"indole-containing compound catabolic process","na":1,"nb":8,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["GO%3A0042433","indole catabolic process"],["GO%3A0042436","indole-containing compound catabolic process"],["GO%3A0042344","indole glucosinolate catabolic process"],["GO%3A0046216","indole phytoalexin catabolic process"],["GO%3A0042437","indoleacetic acid catabolic process"],["GO%3A0006569","L-tryptophan catabolic process"]]},{"id":"NCBITaxon:4081","l":"Solanum lycopersicum","na":1,"nb":8,"a":[["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF02977","Carboxypeptidase A inhibitor"],["Pfam%3APF26410","GH family 5 beta-mannosidase-like"],["Pfam%3APF02496","ABA/WDS induced protein"],["Pfam%3APF17302","Family of unknown function (DUF5351)"],["PROSITE%3APS00502","Polygalacturonase active site"]]},{"id":"NCBITaxon:492670","l":"Bacillus velezensis","na":8,"nb":1,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"]],"b":[["TED%3AAF-A0A7S9EWF1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S9EWF1-F1-model_v4_TED02"]]},{"id":"CHEBI:25017","l":"leucine","na":1,"nb":7,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.78","The Branched Chain Amino Acid Exporter (LIV-E) Family"],["TCDB%3A2.A.76","The Resistance to Homoserine/Threonine (RhtB) Family"],["MCSA%3A172","isoaspartyl dipeptidase"]]},{"id":"CHEBI:29195","l":"cyanate","na":1,"nb":7,"a":[["Thiocyanate_Afipia_Thiobacillus_Bioreactor_Community.html","Thiocyanate-Degrading Afipia and Thiobacillus Bioreactor Community"]],"b":[["EC%3A1.8.2.7","thiocyanate desulfurase"],["EC%3A4.2.1.104","cyanase"],["RHEA%3A11120","cyanate + hydrogencarbonate + 3 H(+) = NH4(+) + 2 CO2"],["RHEA%3A18489","cyanate + hydrogencarbonate + H(+) = carbamate + CO2"],["RHEA%3A29231","cyanate(in) = cyanate(out)"],["RHEA%3A63880","thiocyanate + 2 Fe(III)-[cytochrome c] + H2O = cyanate + sulfur + 2 Fe(II)-[cytochrome c] + 2 H(+)"]]},{"id":"CHEBI:32379","l":"cis,cis-muconate","na":1,"nb":7,"a":[["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["EC%3A1.13.11.1","catechol 1,2-dioxygenase"],["EC%3A5.5.1.1","muconate cycloisomerase"],["RHEA%3A23852","catechol + O2 = cis,cis-muconate + 2 H(+)"],["RHEA%3A30031","(S)-muconolactone = cis,cis-muconate + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["MCSA%3A959","muconate cycloisomerase (anti)"]]},{"id":"GO:0009292","l":"horizontal gene transfer","na":1,"nb":7,"a":[["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"]],"b":[["GO%3A0009294","DNA-mediated transformation"],["GO%3A0009292","horizontal gene transfer"],["GO%3A0009293","transduction"],["GO%3A0009291","unidirectional conjugation"],["NCBIfam%3ATIGR04359","entry exclusion lipoprotein TrbK"],["NCBIfam%3ATIGR04361","entry exclusion protein TrbK"]]},{"id":"GO:0040011","l":"locomotion","na":1,"nb":7,"a":[["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"]],"b":[["GO%3A0033058","directional locomotion"],["GO%3A0060361","flight"],["GO%3A0040011","locomotion"],["GO%3A0031987","locomotion involved in locomotory behavior"],["GO%3A0071965","multicellular organismal locomotion"],["GO%3A0036268","swimming"]]},{"id":"GO:0075136","l":"response to host","na":1,"nb":7,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0075136","response to host"],["GO%3A0075139","response to host iron concentration"],["GO%3A0075000","response to host osmotic environment"],["GO%3A0075138","response to host oxygen tension environment"],["GO%3A0075293","response to host pH environment"],["GO%3A0075137","response to host redox environment"]]},{"id":"NCBITaxon:2030806","l":"Burkholderiaceae bacterium","na":1,"nb":7,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["TED%3AAF-A0A5C7NHS1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7NHS1-F1-model_v4_TED01"],["TED%3AAF-A0A5C7Q2S0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A5C7Q2S0-F1-model_v4_TED04"],["TED%3AAF-A0A7L5Y4H7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7L5Y4H7-F1-model_v4_TED02"],["TED%3AAF-A0A520VNE1-F1-model_v4_TED02","TED novel fold AF-A0A520VNE1-F1-model_v4_TED02"],["TED%3AAF-A0A522SAF0-F1-model_v4_TED01","TED novel fold AF-A0A522SAF0-F1-model_v4_TED01"],["TED%3AAF-A0A5C7NTX8-F1-model_v4_TED02","TED novel fold AF-A0A5C7NTX8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:5722","l":"Trichomonas vaginalis","na":1,"nb":7,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["TED%3AAF-A2F3M7-F1-model_v4_TED03","TED highly-symmetric fold AF-A2F3M7-F1-model_v4_TED03"],["TED%3AAF-A2HEW4-F1-model_v4_TED01","TED highly-symmetric fold AF-A2HEW4-F1-model_v4_TED01"],["TED%3AAF-A2DT59-F1-model_v4_TED01","TED novel fold AF-A2DT59-F1-model_v4_TED01"],["TED%3AAF-A2E7I9-F1-model_v4_TED02","TED novel fold AF-A2E7I9-F1-model_v4_TED02"],["TED%3AAF-A2F6I8-F1-model_v4_TED02","TED novel fold AF-A2F6I8-F1-model_v4_TED02"],["TED%3AAF-A2FV33-F1-model_v4_TED01","TED novel fold AF-A2FV33-F1-model_v4_TED01"]]},{"id":"CHEBI:32139","l":"sodium hydrogencarbonate","na":6,"nb":1,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["TCDB%3A2.A.31","The Anion Exchanger (AE) Family"]]},{"id":"GO:0009268","l":"response to pH","na":1,"nb":6,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["GO%3A0071467","cellular response to pH"],["GO%3A0036177","filamentous growth of a population of unicellular organisms in response to pH"],["GO%3A0010447","response to acidic pH"],["GO%3A0010446","response to alkaline pH"],["GO%3A0036176","response to neutral pH"],["GO%3A0009268","response to pH"]]},{"id":"GO:0009684","l":"indoleacetic acid biosynthetic process","na":6,"nb":1,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["GO%3A0009684","indoleacetic acid biosynthetic process"]]},{"id":"GO:0044409","l":"symbiont entry into host","na":1,"nb":6,"a":[["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"]],"b":[["GO%3A0120326","appressorium-mediated entry into host"],["GO%3A0140717","entry into host through the stromata"],["GO%3A0035635","entry of bacterium into host cell"],["GO%3A0046718","symbiont entry into host cell"],["GO%3A0044409","symbiont entry into host"],["Reactome%3AR-HSA-173107","Binding and entry of HIV virion"]]},{"id":"GO:0045733","l":"acetate catabolic process","na":6,"nb":1,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"],["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]],"b":[["GO%3A0045733","acetate catabolic process"]]},{"id":"GO:0140253","l":"cell-cell fusion","na":1,"nb":6,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["ComplexPortal%3ACPX-3089","EFF-1 complex"],["GO%3A0140253","cell-cell fusion"],["GO%3A0000755","cytogamy"],["GO%3A0000768","syncytium formation by cell-cell fusion"],["PANTHER%3APTHR37415","EFF-1A"],["PANTHER%3APTHR41686","MYOMIXER"]]},{"id":"GO:1900190","l":"regulation of single-species biofilm formation","na":1,"nb":6,"a":[["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["ComplexPortal%3ACPX-4681","YiaMNO tripartite ATP-independent periplasmic transporter complex"],["GO%3A1900191","negative regulation of single-species biofilm formation"],["GO%3A1900192","positive regulation of single-species biofilm formation"],["GO%3A1900190","regulation of single-species biofilm formation"],["GO%3A1900228","regulation of single-species biofilm formation in or on host organism"],["GO%3A1900231","regulation of single-species biofilm formation on inanimate substrate"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":6,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["Pfam%3APF03437","BtpA family"]]},{"id":"NCBITaxon:2268204","l":"Thermoplasmatales archaeon","na":1,"nb":6,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["TED%3AAF-A0A7C2AKF2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7C2AKF2-F1-model_v4_TED03"],["TED%3AAF-A0A7J2S4D8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7J2S4D8-F1-model_v4_TED03"],["TED%3AAF-A0A7J3TK18-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7J3TK18-F1-model_v4_TED02"],["TED%3AAF-A0A7C1E5G8-F1-model_v4_TED01","TED novel fold AF-A0A7C1E5G8-F1-model_v4_TED01"],["TED%3AAF-A0A842X889-F1-model_v4_TED01","TED novel fold AF-A0A842X889-F1-model_v4_TED01"],["TED%3AAF-A0A842X9F6-F1-model_v4_TED01","TED novel fold AF-A0A842X9F6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":1,"nb":6,"a":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"]],"b":[["Pfam%3APF14525","AraC-binding-like domain"],["Pfam%3APF06139","BphX-like"],["Pfam%3APF13340","Putative transposase of IS4/5 family (DUF4096)"],["Pfam%3APF11794","4-hydroxyphenylacetate 3-hydroxylase N terminal"],["Pfam%3APF03241","4-hydroxyphenylacetate 3-hydroxylase C terminal"],["TED%3AAF-A0A4S3H3T1-F1-model_v4_TED02","TED novel fold AF-A0A4S3H3T1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:4097","l":"Nicotiana tabacum","na":1,"nb":6,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"]],"b":[["Pfam%3APF02041","Auxin binding protein"],["Pfam%3APF12481","Aluminium induced protein"],["Pfam%3APF11995","Domain of unknown function (DUF3490)"],["Pfam%3APF07172","Glycine rich protein family"],["PROSITE%3APS00157","Ribulose bisphosphate carboxylase large chain active site"],["TED%3AAF-A0A1S4A696-F1-model_v4_TED01","TED novel fold AF-A0A1S4A696-F1-model_v4_TED01"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":1,"nb":6,"a":[["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["Pfam%3APF02929","Beta galactosidase small chain"],["Pfam%3APF27279","Fumarate--diaminopropanoate ligase C-terminal domain"],["Pfam%3APF18024","Helix-turn-helix domain"],["Pfam%3APF16353","Beta-galactosidase, domain 4"],["PROSITE%3APS00594","Aromatic amino acids permeases signature"],["PROSITE%3APS00853","Beta-eliminating lyases pyridoxal-phosphate attachment site"]]},{"id":"CHEBI:15702","l":"terephthalic acid","na":5,"nb":1,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["proteintraitsmech%3ABIOLIP_UB7","UB7-binding site"]]},{"id":"CHEBI:16828","l":"L-tryptophan","na":5,"nb":1,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["proteintraitsmech%3ABIOLIP_TRP","TRP-binding site"]]},{"id":"CHEBI:17439","l":"cyanocob(III)alamin","na":1,"nb":5,"a":[["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["EC%3A1.16.1.6","cyanocobalamin reductase"],["RHEA%3A16113","2 cob(II)alamin-[cyanocobalamin reductase] + 2 hydrogen cyanide + NADP(+) = 2 cyanocob(III)alamin + 2 apo-[cyanocobalamin reductase] + NADPH + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["TCDB%3A9.B.87","The Selenoprotein P Receptor (SelP-Receptor) Family"]]},{"id":"CHEBI:24875","l":"iron cation","na":1,"nb":5,"a":[["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_24875","requires iron cation"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.S.6","The Bacterial/Archaeal Nanocompartment Encapsulin Shell Protein1 (BANC-SP1) Family"],["TCDB%3A2.A.55","The Metal Ion (Mn2+-iron) Transporter (Nramp) Family"],["TCDB%3A5.B.1","The Phagocyte (gp91phox) NADPH Oxidase Family"]]},{"id":"CHEBI:27750","l":"ethyl acetate","na":1,"nb":5,"a":[["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["EC%3A2.3.1.268","ethanol O-acetyltransferase"],["EC%3A3.1.1.113","ethyl acetate hydrolase"],["RHEA%3A55972","ethanol + acetyl-CoA = ethyl acetate + CoA"],["RHEA%3A58148","ethyl acetate + H2O = ethanol + acetate + H(+)"],["proteintraitsmech%3ABIOLIP_EEE","EEE-binding site"]]},{"id":"CHEBI:30746","l":"benzoic acid","na":5,"nb":1,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_BEZ","BEZ-binding site"]]},{"id":"CHEBI:30769","l":"citric acid","na":5,"nb":1,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["proteintraitsmech%3ABIOLIP_CIT","CIT-binding site"]]},{"id":"CHEBI:30776","l":"hexanoic acid","na":5,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["proteintraitsmech%3ABIOLIP_6NA","6NA-binding site"]]},{"id":"CHEBI:33364","l":"platinum atom","na":1,"nb":5,"a":[["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_PT_DINUCLEAR","dinuclear platinum site"],["proteintraitsmech%3AMETALPDB_PT_HEXANUCLEAR","hexanuclear platinum site"],["proteintraitsmech%3AMETALPDB_PT_MONONUCLEAR","mononuclear platinum site"],["proteintraitsmech%3AMETALPDB_PT_TETRANUCLEAR","tetranuclear platinum site"],["proteintraitsmech%3AMETALPDB_PT_TRINUCLEAR","trinuclear platinum site"]]},{"id":"CHEBI:35899","l":"crotonate","na":1,"nb":5,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["EC%3A1.3.1.31","2-enoate reductase"],["RHEA%3A74903","(2E)-2-butenoate + ATP + H(+) = (2E)-but-2-enoyl-AMP + diphosphate"],["RHEA%3A74899","(2E)-2-butenoate + holo-[ACP] + ATP = (2E)-butenoyl-[ACP] + AMP + diphosphate"],["RHEA%3A10200","butanoate + NAD(+) = (2E)-2-butenoate + NADH + H(+)"],["RHEA%3A69172","N(6)-(2E)-butenoyl-L-lysyl-[protein] + H2O = (2E)-2-butenoate + L-lysyl-[protein]"]]},{"id":"CHEBI:37671","l":"(1->3)-beta-D-glucan","na":1,"nb":5,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"]],"b":[["EC%3A2.4.1.30","1,3-beta-oligoglucan phosphorylase"],["EC%3A2.4.1.34","1,3-beta-glucan synthase"],["EC%3A2.4.1.97","1,3-beta-D-glucan phosphorylase"],["RHEA%3A16041","[(1->3)-beta-D-glucosyl](n) + phosphate = [(1->3)-beta-D-glucosyl](n-1) + alpha-D-glucose 1-phosphate"],["RHEA%3A21476","[(1->3)-beta-D-glucosyl](n) + UDP-alpha-D-glucose = [(1->3)-beta-D-glucosyl](n+1) + UDP + H(+)"]]},{"id":"CHEBI:81666","l":"4-methyl-5-nitrocatechol","na":1,"nb":5,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["EC%3A1.14.12.24","2,4-dinitrotoluene dioxygenase"],["EC%3A1.14.13.210","4-methyl-5-nitrocatechol 5-monooxygenase"],["RHEA%3A46760","2,4-dinitrotoluene + NADH + O2 = 4-methyl-5-nitrocatechol + nitrite + NAD(+)"],["RHEA%3A48016","4-methyl-5-nitrocatechol + NADH + O2 = 2-hydroxy-5-methylquinone + nitrite + NAD(+) + H2O + H(+)"],["RHEA%3A48012","4-methyl-5-nitrocatechol + NADPH + O2 = 2-hydroxy-5-methylquinone + nitrite + NADP(+) + H2O + H(+)"]]},{"id":"CHEBI:86471","l":"pyrite","na":5,"nb":1,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"GO:0015945","l":"methanol metabolic process","na":1,"nb":5,"a":[["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"]],"b":[["GO%3A0019387","methanogenesis, from methanol"],["GO%3A0046169","methanol biosynthetic process"],["GO%3A0046170","methanol catabolic process"],["GO%3A0015945","methanol metabolic process"],["GO%3A0015946","methanol oxidation"]]},{"id":"GO:0098869","l":"cellular oxidant detoxification","na":1,"nb":5,"a":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["GO%3A0061692","cellular detoxification of hydrogen peroxide"],["GO%3A0098869","cellular oxidant detoxification"],["GO%3A0019430","removal of superoxide radicals"],["NCBIfam%3ANF009668","peroxiredoxin"],["Pfam%3APF24980","Response to Low Sulfur (LSU) family"]]},{"id":"NCBITaxon:10239","l":"Viruses","na":5,"nb":1,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_10239","Viruses orthologous groups (OrthoDB)"]]},{"id":"NCBITaxon:1598","l":"Limosilactobacillus reuteri","na":1,"nb":5,"a":[["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"]],"b":[["TED%3AAF-A0A6N1EMN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N1EMN7-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2V3C3-F1-model_v4_TED01","TED novel fold AF-A0A1Y2V3C3-F1-model_v4_TED01"],["TED%3AAF-A0A848BUA9-F1-model_v4_TED01","TED novel fold AF-A0A848BUA9-F1-model_v4_TED01"],["TED%3AAF-A0A855XJ18-F1-model_v4_TED01","TED novel fold AF-A0A855XJ18-F1-model_v4_TED01"],["TED%3AAF-Q6WUB1-F1-model_v4_TED03","TED novel fold AF-Q6WUB1-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1872427","l":"Alcanivorax sp.","na":1,"nb":5,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["TED%3AAF-A0A3C1HS87-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A3C1HS87-F1-model_v4_TED05"],["TED%3AAF-A0A2E8G0K2-F1-model_v4_TED02","TED novel fold AF-A0A2E8G0K2-F1-model_v4_TED02"],["TED%3AAF-A0A2E8G2P9-F1-model_v4_TED01","TED novel fold AF-A0A2E8G2P9-F1-model_v4_TED01"],["TED%3AAF-A0A3B8PCI6-F1-model_v4_TED01","TED novel fold AF-A0A3B8PCI6-F1-model_v4_TED01"],["TED%3AAF-A0A3C0M083-F1-model_v4_TED02","TED novel fold AF-A0A3C0M083-F1-model_v4_TED02"]]},{"id":"NCBITaxon:552","l":"Erwinia amylovora","na":1,"nb":5,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]],"b":[["Pfam%3APF09008","Head binding"],["Pfam%3APF11725","AvrE-family Type-III effector proteins (T3Es)"],["Pfam%3APF03608","PTS system enzyme II sorbitol-specific factor"],["Pfam%3APF07663","Sorbitol phosphotransferase enzyme II C-terminus"],["Pfam%3APF03612","Sorbitol phosphotransferase enzyme II N-terminus"]]},{"id":"NCBITaxon:74969","l":"Ferroplasma acidiphilum","na":5,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["TED%3AAF-A0A7K4FNL3-F1-model_v4_TED01","TED novel fold AF-A0A7K4FNL3-F1-model_v4_TED01"]]},{"id":"CHEBI:15603","l":"L-leucine","na":4,"nb":1,"a":[["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"]],"b":[["proteintraitsmech%3ABIOLIP_LEU","LEU-binding site"]]},{"id":"CHEBI:16109","l":"propane-1,3-diol","na":1,"nb":4,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["EC%3A1.1.1.202","1,3-propanediol dehydrogenase"],["RHEA%3A23188","propane-1,3-diol + NAD(+) = 3-hydroxypropanal + NADH + H(+)"],["RHEA%3A35599","propane-1,3-diol + NADP(+) = 3-hydroxypropanal + NADPH + H(+)"],["proteintraitsmech%3ABIOLIP_PDO","PDO-binding site"]]},{"id":"CHEBI:16646","l":"carbohydrate","na":4,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16646","requires pantothenate"]]},{"id":"CHEBI:16811","l":"methionine","na":4,"nb":1,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"]]},{"id":"CHEBI:16856","l":"glutathione","na":1,"nb":4,"a":[["Zymomonas_Ecoli_Exometabolomics_Obligate_Mutualism.html","Zymomonas-E. coli Exometabolomics-Designed Obligate Mutualism"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16856","requires glutathione"],["MCSA%3A359","lactoglutathione lyase"],["MCSA%3A32","lactoylglutathione lyase"],["proteintraitsmech%3ABIOLIP_GSH","GSH-binding site"]]},{"id":"CHEBI:17115","l":"L-serine","na":1,"nb":4,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["MCSA%3A609","alpha-lytic endopeptidase"],["MCSA%3A238","assemblin"],["MCSA%3A688","classical-complement-pathway C3/C5 convertase"],["proteintraitsmech%3ABIOLIP_SER","SER-binding site"]]},{"id":"CHEBI:17634","l":"D-glucose","na":4,"nb":1,"a":[["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"]],"b":[["MCSA%3A976","α‑glucosidase maltase-glucoamylase"]]},{"id":"CHEBI:18050","l":"L-glutamine","na":1,"nb":4,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["MCSA%3A596","deuterolysin"],["MCSA%3A477","picornain 3C"],["MCSA%3A763","picornain 3C"],["proteintraitsmech%3ABIOLIP_GLN","GLN-binding site"]]},{"id":"CHEBI:18059","l":"lipid","na":4,"nb":1,"a":[["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"],["Yarrowia_lipolytica_Division_of_Labor_Lipid_Consortium.html","Yarrowia lipolytica Division-of-Labor Lipid Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:22315","l":"alkaloid","na":1,"nb":4,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]]},{"id":"CHEBI:23681","l":"dibenzothiophene","na":1,"nb":4,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["EC%3A1.14.14.21","dibenzothiophene monooxygenase"],["RHEA%3A49072","dibenzothiophene + 2 FMNH2 + 2 O2 = dibenzothiophene 5,5-dioxide + 2 FMN + 2 H2O + 2 H(+)"],["RHEA%3A49076","dibenzothiophene + FMNH2 + O2 = dibenzothiophene 5-oxide + FMN + H2O + H(+)"],["MCSA%3A973","DszC protein"]]},{"id":"CHEBI:28984","l":"aluminium atom","na":1,"nb":4,"a":[["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_AL_DINUCLEAR","dinuclear aluminium site"],["proteintraitsmech%3AMETALPDB_AL_MONONUCLEAR","mononuclear aluminium site"],["proteintraitsmech%3AMETALPDB_AL_TETRANUCLEAR","tetranuclear aluminium site"],["proteintraitsmech%3AMETALPDB_AL_TRINUCLEAR","trinuclear aluminium site"]]},{"id":"CHEBI:33575","l":"carboxylic acid","na":1,"nb":4,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"]],"b":[["MCSA%3A105","aldehyde dehydrogenase (FAD-independent)"],["MCSA%3A803","aldehyde dehydrogenase (NAD+) (class 2)"],["MCSA%3A556","esterase (estA)"],["MCSA%3A755","lysophospholipase"]]},{"id":"CHEBI:34768","l":"furfural","na":1,"nb":4,"a":[["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"]],"b":[["RHEA%3A77519","furfural + hydrogen cyanide = (2R)-2-(furan-2-yl)-2-hydroxyacetonitrile"],["RHEA%3A76667","furfural + NAD(+) + H2O = 2-furoate + NADH + 2 H(+)"],["RHEA%3A76671","furfural + NADP(+) + H2O = 2-furoate + NADPH + 2 H(+)"],["TCDB%3A1.C.113","The Hemolysin III (Hly III) Family"]]},{"id":"CHEBI:490095","l":"esculetin","na":1,"nb":4,"a":[["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["EC%3A2.5.1.138","coumarin 8-geranyltransferase"],["RHEA%3A51864","esculetin + (2E)-geranyl diphosphate = 8-geranylesculetin + diphosphate"],["RHEA%3A68944","esculetin + S-adenosyl-L-methionine = isoscopoletin + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A68948","esculetin + S-adenosyl-L-methionine = scopoletin + S-adenosyl-L-homocysteine + H(+)"]]},{"id":"GO:0009809","l":"lignin biosynthetic process","na":1,"nb":4,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"]],"b":[["GO%3A1901063","guaiacyl lignin biosynthetic process"],["GO%3A0009809","lignin biosynthetic process"],["GO%3A1901060","p-hydroxyphenyl lignin biosynthetic process"],["GO%3A1901066","syringal lignin biosynthetic process"]]},{"id":"GO:0015694","l":"mercury ion transport","na":1,"nb":4,"a":[["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["GO%3A0015694","mercury ion transport"],["Pfam%3APF03203","MerC mercury resistance protein"],["Pfam%3APF05052","MerE protein"],["Pfam%3APF02411","MerT mercuric transport protein"]]},{"id":"GO:0015976","l":"carbon utilization","na":1,"nb":4,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["GO%3A0015976","carbon utilization"],["NCBIfam%3ANF010378","bifunctional acetaldehyde-CoA/alcohol dehydrogenase"],["NCBIfam%3ANF007756","carbonate dehydratase"],["InterPro%3AIPR015892","Carbonic anhydrase, prokaryotic-like, conserved site"]]},{"id":"GO:0061692","l":"cellular detoxification of hydrogen peroxide","na":1,"nb":4,"a":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["ComplexPortal%3ACPX-4742","Catalase complex"],["ComplexPortal%3ACPX-4767","Catalase complex"],["ComplexPortal%3ACPX-4768","Catalase complex"],["GO%3A0061692","cellular detoxification of hydrogen peroxide"]]},{"id":"GO:1902074","l":"response to salt","na":1,"nb":4,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["GO%3A1902075","cellular response to salt"],["GO%3A1902074","response to salt"],["GO%3A1903935","response to sodium arsenite"],["GO%3A1904383","response to sodium phosphate"]]},{"id":"NCBITaxon:1401","l":"Paenibacillus lautus","na":1,"nb":4,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"]],"b":[["Pfam%3APF18448","Carbohydrate binding domain"],["Pfam%3APF12891","Glycoside hydrolase family 44"],["TED%3AAF-A0A328VZ83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A328VZ83-F1-model_v4_TED01"],["TED%3AAF-A0A385TU82-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A385TU82-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1451","l":"Paenibacillus amylolyticus","na":1,"nb":4,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"]],"b":[["Pfam%3APF03211","Pectate lyase"],["TED%3AAF-A0A117I1X0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A117I1X0-F1-model_v4_TED01"],["TED%3AAF-A0A1R1DDF3-F1-model_v4_TED01","TED novel fold AF-A0A1R1DDF3-F1-model_v4_TED01"],["TED%3AAF-A0A4V3B7H8-F1-model_v4_TED01","TED novel fold AF-A0A4V3B7H8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1501","l":"Clostridium pasteurianum","na":1,"nb":4,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["Pfam%3APF22609","Iron hydrogenase 1-like, iron-sulfur centre-binding domain"],["Pfam%3APF09582","Iron only nitrogenase protein AnfO (AnfO_nitrog)"],["PROSITE%3APS00746","NifH/frxC family signature 1"],["PROSITE%3APS00699","Nitrogenases component 1 alpha and beta subunits signature 1"]]},{"id":"NCBITaxon:1534","l":"Clostridium kluyveri","na":4,"nb":1,"a":[["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["TED%3AAF-A0A1L5FEG9-F1-model_v4_TED01","TED novel fold AF-A0A1L5FEG9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1590","l":"Lactiplantibacillus plantarum","na":4,"nb":1,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Pichia_Lactiplantibacillus_CCMA_Plant_Beverage_Coculture.html","Pichia-Lactiplantibacillus CCMA Plant Beverage Coculture"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["Pfam%3APF06314","Acetoacetate decarboxylase (ADC)"]]},{"id":"NCBITaxon:243164","l":"Dehalococcoides mccartyi 195","na":4,"nb":1,"a":[["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["Pfam%3APF13486","Reductive dehalogenase subunit"]]},{"id":"NCBITaxon:258594","l":"Rhodopseudomonas palustris CGA009","na":1,"nb":4,"a":[["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"]],"b":[["Pfam%3APF01322","Cytochrome C'"],["PROSITE%3APS00969","Antenna complexes beta subunits signature"],["PROSITE%3APS00936","Ribosomal protein L35 signature"],["PROSITE%3APS01181","Ribosomal protein S21 signature"]]},{"id":"NCBITaxon:28037","l":"Streptococcus mitis","na":1,"nb":4,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["Pfam%3APF03047","COMC family"],["TED%3AAF-A0A1X1L9U5-F1-model_v4_TED02","TED novel fold AF-A0A1X1L9U5-F1-model_v4_TED02"],["TED%3AAF-A0A428B8X0-F1-model_v4_TED01","TED novel fold AF-A0A428B8X0-F1-model_v4_TED01"],["TED%3AAF-A0A6L5H4V3-F1-model_v4_TED03","TED novel fold AF-A0A6L5H4V3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:285","l":"Comamonas testosteroni","na":1,"nb":4,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["Pfam%3APF02900","Catalytic LigB subunit of aromatic ring-opening dioxygenase"],["Pfam%3APF19301","LigXa C-terminal domain like"],["TED%3AAF-A0A096HND0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A096HND0-F1-model_v4_TED01"],["TED%3AAF-A0A1Y1JCM1-F1-model_v4_TED01","TED novel fold AF-A0A1Y1JCM1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:34305","l":"Lotus japonicus","na":1,"nb":4,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["Pfam%3APF06241","Castor and Pollux, part of voltage-gated ion channel"],["Pfam%3APF23654","E3 ubiquitin-protein ligase LIN-like, ARM repeat"],["Pfam%3APF23628","Putative E3 ubiquitin-protein ligase LIN, ARM-like domain"],["Pfam%3APF23568","E3 ubiquitin-protein ligase LIN-like, ARM repeat"]]},{"id":"NCBITaxon:40520","l":"Blautia obeum","na":1,"nb":4,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]],"b":[["TED%3AAF-A0A174PFW9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A174PFW9-F1-model_v4_TED01"],["TED%3AAF-A0A174PHS9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A174PHS9-F1-model_v4_TED02"],["TED%3AAF-A0A415LGR0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A415LGR0-F1-model_v4_TED01"],["TED%3AAF-A0A414KHY7-F1-model_v4_TED02","TED novel fold AF-A0A414KHY7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":1,"nb":4,"a":[["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["Pfam%3APF11720","Peptidase inhibitor I78 family"],["Pfam%3APF12296","Hydrophobic surface binding protein A"],["TED%3AAF-A0A3M7JGA1-F1-model_v4_TED02","TED novel fold AF-A0A3M7JGA1-F1-model_v4_TED02"],["TED%3AAF-A0A7G5JNS3-F1-model_v4_TED03","TED novel fold AF-A0A7G5JNS3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:863","l":"Syntrophomonas wolfei","na":4,"nb":1,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["TED%3AAF-A0A354YY78-F1-model_v4_TED03","TED novel fold AF-A0A354YY78-F1-model_v4_TED03"]]},{"id":"CHEBI:147155","l":"","na":3,"nb":1,"a":[["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["RHEA%3A64016","alpha-L-Fuc-(1->2)-beta-D-Gal-(1->4)-D-Glc + GDP-beta-L-fucose = alpha-L-Fuc-(1->2)-beta-D-Gal-(1->4)-[alpha-L-Fuc-(1->3)]-D-Glc + GDP + H(+)"]]},{"id":"CHEBI:15356","l":"cysteine","na":3,"nb":1,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:16015","l":"L-glutamic acid","na":1,"nb":3,"a":[["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]],"b":[["MCSA%3A747","gamma-glutamyl hydrolase"],["proteintraitsmech%3ABIOLIP_GGL","GGL-binding site"],["proteintraitsmech%3ABIOLIP_GLU","GLU-binding site"]]},{"id":"CHEBI:16170","l":"mercury(0)","na":1,"nb":3,"a":[["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["EC%3A1.16.1.1","mercury(II) reductase"],["RHEA%3A23856","Hg + NADP(+) + H(+) = Hg(2+) + NADPH"],["MCSA%3A277","mercury(II) reductase"]]},{"id":"CHEBI:16467","l":"L-arginine","na":1,"nb":3,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["MCSA%3A688","classical-complement-pathway C3/C5 convertase"],["MCSA%3A425","plasmin"],["MCSA%3A798","t-plasminogen activator"]]},{"id":"CHEBI:16982","l":"(R,R)-butane-2,3-diol","na":1,"nb":3,"a":[["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"]],"b":[["EC%3A1.1.1.4","(R,R)-butanediol dehydrogenase"],["RHEA%3A24340","(R,R)-butane-2,3-diol + NAD(+) = (R)-acetoin + NADH + H(+)"],["proteintraitsmech%3ABIOLIP_BU3","BU3-binding site"]]},{"id":"CHEBI:17203","l":"L-proline","na":1,"nb":3,"a":[["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["MCSA%3A403","astacin"],["MCSA%3A379","Xaa-Pro aminopeptidase"],["proteintraitsmech%3ABIOLIP_PRO","PRO-binding site"]]},{"id":"CHEBI:17561","l":"L-cysteine","na":3,"nb":1,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["proteintraitsmech%3ABIOLIP_CYS","CYS-binding site"]]},{"id":"CHEBI:2365","l":"(+)-abscisic acid","na":1,"nb":3,"a":[["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.17","The Proton-dependent Oligopeptide Transporter (POT/PTR) Family"],["proteintraitsmech%3ABIOLIP_A8S","A8S-binding site"]]},{"id":"CHEBI:28805","l":"cis-1,2-dichloroethene","na":1,"nb":3,"a":[["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"]],"b":[["RHEA%3A67992","trichloroethene + AH2 = (Z)-1,2-dichloroethene + chloride + A + H(+)"],["RHEA%3A67996","(Z)-1,2-dichloroethene + AH2 = chloroethene + chloride + A + H(+)"],["proteintraitsmech%3ABIOLIP_JYF","JYF-binding site"]]},{"id":"CHEBI:30803","l":"isophthalate(2-)","na":1,"nb":3,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["EC%3A6.2.1.58","isophthalate--CoA ligase"],["RHEA%3A61636","isophthalate + ATP + CoA = isophthalyl-CoA + AMP + diphosphate"],["TCDB%3A2.A.80","The Tricarboxylate Transporter (TTT) Family"]]},{"id":"CHEBI:31725","l":"isoamyl acetate","na":1,"nb":3,"a":[["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["EC%3A3.1.1.112","isoamyl acetate esterase"],["RHEA%3A65236","3-methylbutan-1-ol + acetyl-CoA = 3-methylbutyl acetate + CoA"],["RHEA%3A60436","3-methylbutyl acetate + H2O = 3-methylbutan-1-ol + acetate + H(+)"]]},{"id":"CHEBI:32816","l":"pyruvic acid","na":1,"nb":3,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_32816","requires pyruvic acid"],["MCSA%3A449","cystathionine beta-lyase"],["proteintraitsmech%3ABIOLIP_PYR","PYR-binding site"]]},{"id":"CHEBI:32879","l":"propane","na":1,"nb":3,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["EC%3A1.14.13.227","propane 2-monooxygenase"],["RHEA%3A49992","propane + NADH + O2 + H(+) = propan-2-ol + NAD(+) + H2O"],["proteintraitsmech%3ABIOLIP_TME","TME-binding site"]]},{"id":"CHEBI:33229","l":"vitamin (role)","na":1,"nb":3,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.21","The Solute:Sodium Symporter (SSS) Family"]]},{"id":"CHEBI:33359","l":"rhodium atom","na":1,"nb":3,"a":[["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_RH_DINUCLEAR","dinuclear rhodium site"],["proteintraitsmech%3AMETALPDB_RH_MONONUCLEAR","mononuclear rhodium site"],["proteintraitsmech%3AMETALPDB_RH_TRINUCLEAR","trinuclear rhodium site"]]},{"id":"CHEBI:33377","l":"dysprosium atom","na":1,"nb":3,"a":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_33377","requires Tb"],["proteintraitsmech%3AMETALPDB_DY_DINUCLEAR","dinuclear dysprosium site"],["proteintraitsmech%3AMETALPDB_DY_MONONUCLEAR","mononuclear dysprosium site"]]},{"id":"CHEBI:35780","l":"phosphate ion","na":3,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"]]},{"id":"CHEBI:412516","l":"5-hydroxymethylfurfural","na":1,"nb":3,"a":[["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"]],"b":[["EC%3A1.1.3.47","5-(hydroxymethyl)furfural oxidase"],["RHEA%3A32683","5-hydroxymethylfurfural + 3 O2 + 2 H2O = 2,5-dicarboxyfuran + 3 H2O2 + 2 H(+)"],["RHEA%3A43504","5-hydroxymethylfurfural + O2 = 2,5-diformylfuran + H2O2"]]},{"id":"CHEBI:49631","l":"gallium atom","na":1,"nb":3,"a":[["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_GA_DINUCLEAR","dinuclear gallium site"],["proteintraitsmech%3AMETALPDB_GA_MONONUCLEAR","mononuclear gallium site"],["proteintraitsmech%3AMETALPDB_GA_TETRANUCLEAR","tetranuclear gallium site"]]},{"id":"CHEBI:50699","l":"oligosaccharide","na":1,"nb":3,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"]]},{"id":"CHEBI:920","l":"2,4-dinitrotoluene","na":1,"nb":3,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["EC%3A1.14.12.24","2,4-dinitrotoluene dioxygenase"],["RHEA%3A80191","2,4-dinitrotoluene + 2 NADPH + 2 H(+) = 4-hydroxylamino-2-nitrotoluene + 2 NADP(+) + H2O"],["RHEA%3A46760","2,4-dinitrotoluene + NADH + O2 = 4-methyl-5-nitrocatechol + nitrite + NAD(+)"]]},{"id":"GO:0005982","l":"starch metabolic process","na":1,"nb":3,"a":[["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"]],"b":[["GO%3A0019252","starch biosynthetic process"],["GO%3A0005983","starch catabolic process"],["GO%3A0005982","starch metabolic process"]]},{"id":"GO:0019563","l":"glycerol catabolic process","na":1,"nb":3,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["GO%3A0019588","anaerobic glycerol catabolic process"],["GO%3A0019563","glycerol catabolic process"],["NCBIfam%3ANF008478","dihydroxyacetone kinase phosphoryl donor subunit DhaM"]]},{"id":"GO:0044002","l":"acquisition of nutrients from host","na":1,"nb":3,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0044002","acquisition of nutrients from host"],["GO%3A0044847","iron acquisition from host"],["GO%3A0052091","modulation of nutrient release by host"]]},{"id":"GO:1902422","l":"hydrogen biosynthetic process","na":1,"nb":3,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["GO%3A1902422","hydrogen biosynthetic process"],["GO%3A0044817","hydrogen generation via biophotolysis"],["GO%3A0044835","hydrogen generation via nitrogenase"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":1,"nb":3,"a":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["Pfam%3APF05258","Dna[CI] antecedent, DciA"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"],["TED%3AAF-Q0RZW9-F1-model_v4_TED03","TED highly-symmetric fold AF-Q0RZW9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":1,"nb":3,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF08130","Type A lantibiotic family"],["Pfam%3APF04738","Lantibiotic dehydratase, N terminus"]]},{"id":"NCBITaxon:1587","l":"Lactobacillus helveticus","na":1,"nb":3,"a":[["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"]],"b":[["Pfam%3APF18008","Replication initiator protein A C-terminal domain"],["Pfam%3APF20956","Domain of unknown function (DUF4931) C-terminal domain"],["Pfam%3APF17312","Bacteriocin helveticin-J"]]},{"id":"NCBITaxon:1589","l":"Lactiplantibacillus pentosus","na":1,"nb":3,"a":[["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["PROSITE%3APS60002","Phosphoketolase signature 1"],["PROSITE%3APS60003","Phosphoketolase signature 2"],["TED%3AAF-A0A2K9I3V8-F1-model_v4_TED01","TED novel fold AF-A0A2K9I3V8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1624","l":"Ligilactobacillus salivarius","na":1,"nb":3,"a":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]],"b":[["TED%3AAF-A0A7X2SS58-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X2SS58-F1-model_v4_TED01"],["TED%3AAF-A0A089QBS8-F1-model_v4_TED02","TED novel fold AF-A0A089QBS8-F1-model_v4_TED02"],["TED%3AAF-A0A2A2XCA8-F1-model_v4_TED01","TED novel fold AF-A0A2A2XCA8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1680","l":"Bifidobacterium adolescentis","na":1,"nb":3,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]],"b":[["TED%3AAF-A0A1X2Z2R7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1X2Z2R7-F1-model_v4_TED02"],["TED%3AAF-A0A1X2Z7X6-F1-model_v4_TED02","TED novel fold AF-A0A1X2Z7X6-F1-model_v4_TED02"],["TED%3AAF-A0A1X2ZNR8-F1-model_v4_TED04","TED novel fold AF-A0A1X2ZNR8-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":3,"nb":1,"a":[["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["TED%3AAF-A0A415C3I8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A415C3I8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1708","l":"Cellulomonas fimi","na":1,"nb":3,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["Pfam%3APF00553","Cellulose binding domain"],["PROSITE%3APS00561","CBM2a (carbohydrate-binding type-2) domain signature"],["PROSITE%3APS00591","Glycosyl hydrolases family 10 (GH10) active site"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":3,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]],"b":[["TED%3AAF-A0A142EAM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142EAM9-F1-model_v4_TED03"],["TED%3AAF-A0A1Q3DTY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3DTY6-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3DNE3-F1-model_v4_TED01","TED novel fold AF-A0A1Q3DNE3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:192","l":"Azospirillum brasilense","na":1,"nb":3,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"]],"b":[["Pfam%3APF24931","ACR9-like, ACT-like domain"],["Pfam%3APF27444","Uridylyltransferase GlnD third domain"],["TED%3AAF-A0A235H319-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A235H319-F1-model_v4_TED01"]]},{"id":"NCBITaxon:198620","l":"Pseudomonas koreensis","na":3,"nb":1,"a":[["FourSpecies_Aerobic_Lung_Microbiome_Model.html","Four-Species Aerobic Lung Microbiome Model"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["TED%3AAF-A0A1G7ALV2-F1-model_v4_TED02","TED novel fold AF-A0A1G7ALV2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:203124","l":"Trichodesmium erythraeum IMS101","na":1,"nb":3,"a":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["Pfam%3APF06206","CpeT/CpcT family (DUF1001)"],["Pfam%3APF18460","Heterocyst differentiation regulator C-terminal Hood domain"],["TED%3AAF-Q10WG6-F1-model_v4_TED05","TED highly-symmetric fold AF-Q10WG6-F1-model_v4_TED05"]]},{"id":"NCBITaxon:216816","l":"Bifidobacterium longum","na":3,"nb":1,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["TED%3AAF-A0A413ACI9-F1-model_v4_TED01","TED novel fold AF-A0A413ACI9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2208","l":"Methanosarcina barkeri","na":3,"nb":1,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["Pfam%3APF09505","Dimethylamine methyltransferase (Dimeth_PyL)"]]},{"id":"NCBITaxon:33039","l":"Mediterraneibacter torques","na":1,"nb":3,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["TED%3AAF-A0A174ZX33-F1-model_v4_TED01","TED novel fold AF-A0A174ZX33-F1-model_v4_TED01"],["TED%3AAF-A0A6N3EHF6-F1-model_v4_TED02","TED novel fold AF-A0A6N3EHF6-F1-model_v4_TED02"],["TED%3AAF-A0A6N3EHH7-F1-model_v4_TED01","TED novel fold AF-A0A6N3EHH7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":1,"nb":3,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"],["TED%3AAF-A0A7H8I034-F1-model_v4_TED01","TED novel fold AF-A0A7H8I034-F1-model_v4_TED01"]]},{"id":"NCBITaxon:582","l":"Morganella morganii","na":1,"nb":3,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["PROSITE%3APS01157","Class A bacterial acid phosphatases signature"],["TED%3AAF-A0A2C5TPE5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2C5TPE5-F1-model_v4_TED01"],["TED%3AAF-A0A0A2RJY1-F1-model_v4_TED02","TED novel fold AF-A0A0A2RJY1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:70448","l":"Ostreococcus tauri","na":1,"nb":3,"a":[["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"]],"b":[["TED%3AAF-A0A090M1U3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A090M1U3-F1-model_v4_TED02"],["TED%3AAF-A0A090M3Z3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A090M3Z3-F1-model_v4_TED01"],["TED%3AAF-A0A1Y5INV9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y5INV9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:831","l":"Butyrivibrio fibrisolvens","na":1,"nb":3,"a":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"]],"b":[["Pfam%3APF16738","Starch-binding module 26"],["Pfam%3APF18318","Glutamine synthetase C-terminal domain"],["Pfam%3APF12437","Glutamine synthetase type III N terminal"]]},{"id":"NCBITaxon:94130","l":"Rhizophagus clarus","na":1,"nb":3,"a":[["Mediterranean_AM_Fungal_SixSpecies_SynCom.html","Mediterranean AM Fungal Six-Species SynCom"]],"b":[["TED%3AAF-A0A2Z6R1J4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z6R1J4-F1-model_v4_TED01"],["TED%3AAF-A0A2Z6SKM0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z6SKM0-F1-model_v4_TED01"],["TED%3AAF-A0A2Z6S4T9-F1-model_v4_TED04","TED novel fold AF-A0A2Z6S4T9-F1-model_v4_TED04"]]},{"id":"CHEBI:134612","l":"staphyloferrin B","na":1,"nb":2,"a":[["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_134612","requires staphyloferrin B"],["proteintraitsmech%3ABIOLIP_SE8","SE8-binding site"]]},{"id":"CHEBI:15729","l":"L-ornithine","na":1,"nb":2,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["MCSA%3A12","ornithine carbamoyltransferase"],["proteintraitsmech%3ABIOLIP_ORN","ORN-binding site"]]},{"id":"CHEBI:15904","l":"long-chain fatty acid","na":1,"nb":2,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:15940","l":"nicotinic acid","na":1,"nb":2,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15940","requires nicotinic acid"],["proteintraitsmech%3ABIOLIP_NIO","NIO-binding site"]]},{"id":"CHEBI:15982","l":"cob(I)alamin","na":2,"nb":1,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15982","requires cob(I)alamin"]]},{"id":"CHEBI:16830","l":"methylamine","na":2,"nb":1,"a":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"]],"b":[["proteintraitsmech%3ABIOLIP_NME","NME-binding site"]]},{"id":"CHEBI:16914","l":"salicylic acid","na":2,"nb":1,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"]],"b":[["proteintraitsmech%3ABIOLIP_SAL","SAL-binding site"]]},{"id":"CHEBI:17747","l":"bis(2-ethylhexyl) phthalate","na":1,"nb":2,"a":[["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"]],"b":[["EC%3A3.1.1.60","bis(2-ethylhexyl)phthalate esterase"],["RHEA%3A15529","bis(2-ethylhexyl)phthalate + H2O = 2-ethylhexan-1-ol + 2-ethylhexyl phthalate + H(+)"]]},{"id":"CHEBI:179252","l":"4-Ethyl-2-methoxyphenol","na":2,"nb":1,"a":[["Sichuan_Shai_Vinegar_Yeast_Flavor_SynCom.html","Sichuan Shai Vinegar Yeast Flavor SynCom"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["RHEA%3A73959","2-methoxy-4-vinylphenol + NADH + H(+) = 4-ethyl-2-methoxyphenol + NAD(+)"]]},{"id":"CHEBI:18053","l":"1-aminocyclopropanecarboxylic acid","na":2,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["proteintraitsmech%3ABIOLIP_1AC","1AC-binding site"]]},{"id":"CHEBI:229785","l":"neodymium(3+)","na":2,"nb":1,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_ND","ND-binding site"]]},{"id":"CHEBI:23530","l":"cytokinin","na":1,"nb":2,"a":[["Staged_Cattle_Manure_Ensifer_Bacillus_SynCom.html","Staged Ensifer-Bacillus Cattle-Manure Wastewater SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"]]},{"id":"CHEBI:28073","l":"chromium atom","na":1,"nb":2,"a":[["Meghalaya_Bacillus_Consortia_A22ED9.html","Meghalaya Bacillus Consortia-A22ED9"]],"b":[["proteintraitsmech%3AMETALPDB_CR_DINUCLEAR","dinuclear chromium site"],["proteintraitsmech%3AMETALPDB_CR_MONONUCLEAR","mononuclear chromium site"]]},{"id":"CHEBI:28757","l":"fructose","na":1,"nb":2,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["GO%3A0070061","fructose binding"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:28817","l":"dodecane","na":1,"nb":2,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["RHEA%3A76739","dodecane + reduced [NADPH--hemoprotein reductase] + O2 = 5-dodecanol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["proteintraitsmech%3ABIOLIP_D12","D12-binding site"]]},{"id":"CHEBI:28837","l":"octanoic acid","na":2,"nb":1,"a":[["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["proteintraitsmech%3ABIOLIP_OCA","OCA-binding site"]]},{"id":"CHEBI:29016","l":"arginine","na":1,"nb":2,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:29073","l":"L-ascorbic acid","na":1,"nb":2,"a":[["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29073","requires L-ascorbic acid"],["proteintraitsmech%3ABIOLIP_ASC","ASC-binding site"]]},{"id":"CHEBI:29681","l":"surfactin","na":1,"nb":2,"a":[["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]]},{"id":"CHEBI:30832","l":"adipic acid","na":1,"nb":2,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["proteintraitsmech%3ABIOLIP_0L1","0L1-binding site"]]},{"id":"CHEBI:32588","l":"potassium chloride","na":2,"nb":1,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"]],"b":[["TCDB%3A2.A.30","The Cation-Chloride Cotransporter (CCC) Family"]]},{"id":"CHEBI:33284","l":"nutrient","na":2,"nb":1,"a":[["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["TCDB%3A1.A.91","The Cytoadherence-linked Asexual Protein 3.2 of Plasmodium falciparum (Clag3) Family"]]},{"id":"CHEBI:33848","l":"polycyclic arene","na":2,"nb":1,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Pelagerythrobacter_Salinicola_PES_Pyrene_Degradation_SynCom.html","Pelagerythrobacter-Salinicola PES Pyrene-Degradation SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:33913","l":"corrinoid","na":2,"nb":1,"a":[["Soil_Corrinoid_B12_Reservoir_Community.html","Soil Corrinoid Reservoir Microbial Community"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_33913","requires corrinoid"]]},{"id":"CHEBI:35381","l":"monosaccharide","na":2,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:35404","l":"chromate(2-)","na":2,"nb":1,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"]],"b":[["RHEA%3A32819","chromate(in) = chromate(out)"]]},{"id":"CHEBI:36219","l":"alpha-lactose","na":2,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"]],"b":[["RHEA%3A84479","alpha-lactose = lactulose"]]},{"id":"CHEBI:40646","l":"autoinducer-2","na":1,"nb":2,"a":[["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.86","The Autoinducer-2 Exporter (AI-2E) Family (Formerly the PerM Family, TC #9.B.22)"]]},{"id":"CHEBI:42111","l":"(R)-lactic acid","na":2,"nb":1,"a":[["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_LAC","LAC-binding site"]]},{"id":"CHEBI:44534","l":"N-(3-oxododecanoyl)-L-homoserine lactone","na":2,"nb":1,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["proteintraitsmech%3ABIOLIP_OHN","OHN-binding site"]]},{"id":"CHEBI:46442","l":"vanadate(3-)","na":2,"nb":1,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["proteintraitsmech%3ABIOLIP_VO4","VO4-binding site"]]},{"id":"CHEBI:47381","l":"diclofenac","na":1,"nb":2,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["proteintraitsmech%3ABIOLIP_DIF","DIF-binding site"]]},{"id":"CHEBI:49544","l":"chromium(3+)","na":1,"nb":2,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["RHEA%3A44372","Cr(6+) + 2 NADH + O2 = Cr(3+) + superoxide + 2 NAD(+) + 2 H(+)"],["RHEA%3A44368","Cr(6+) + 2 NADPH + O2 = Cr(3+) + superoxide + 2 NADP(+) + 2 H(+)"]]},{"id":"CHEBI:53650","l":"guaiacylglycerol-beta-guaiacyl ether","na":1,"nb":2,"a":[["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["EC%3A1.11.1.16","versatile peroxidase"],["RHEA%3A22396","1-(4-hydroxy-3-methoxyphenyl)-2-(2-methoxyphenoxy)propane-1,3-diol + H2O2 = guaiacol + vanillin + glycolaldehyde + H2O"]]},{"id":"CHEBI:61448","l":"isopropyl beta-D-thiogalactopyranoside","na":1,"nb":2,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_IPT","IPT-binding site"]]},{"id":"CHEBI:82420","l":"1-chloro-3-nitrobenzene","na":1,"nb":2,"a":[["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]],"b":[["RHEA%3A57808","1-chloro-3-nitrobenzene + NADH + O2 = 3-chlorocatechol + nitrite + NAD(+)"],["RHEA%3A57804","1-chloro-3-nitrobenzene + NADH + O2 = 4-chlorocatechol + nitrite + NAD(+)"]]},{"id":"CHEBI:84046","l":"pyoverdine","na":1,"nb":2,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_84046","requires pyoverdine"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"GO:0006568","l":"obsolete L-tryptophan metabolic process","na":1,"nb":2,"a":[["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"]],"b":[["Pfam%3APF00697","N-(5'phosphoribosyl)anthranilate (PRA) isomerase"],["Pfam%3APF00290","Tryptophan synthase alpha chain"]]},{"id":"GO:0006995","l":"cellular response to nitrogen starvation","na":1,"nb":2,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["GO%3A0006995","cellular response to nitrogen starvation"],["GO%3A0031142","induction of conjugation upon nitrogen starvation"]]},{"id":"GO:0010025","l":"wax biosynthetic process","na":1,"nb":2,"a":[["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"]],"b":[["GO%3A0010025","wax biosynthetic process"],["Reactome%3AR-HSA-9640463","Wax biosynthesis"]]},{"id":"GO:0019417","l":"sulfur oxidation","na":1,"nb":2,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["GO%3A0019417","sulfur oxidation"],["NCBIfam%3ATIGR04484","sulfur oxidation c-type cytochrome SoxA"]]},{"id":"GO:0019676","l":"ammonia assimilation cycle","na":1,"nb":2,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]],"b":[["ComplexPortal%3ACPX-5041","Glutamate synthase [NADPH] complex"],["GO%3A0019676","ammonia assimilation cycle"]]},{"id":"GO:0046359","l":"butyrate catabolic process","na":2,"nb":1,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["GO%3A0046359","butyrate catabolic process"]]},{"id":"GO:0071466","l":"cellular response to xenobiotic stimulus","na":1,"nb":2,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["ComplexPortal%3ACPX-2121","EmrE multidrug transporter complex"],["GO%3A0071466","cellular response to xenobiotic stimulus"]]},{"id":"GO:0141082","l":"symbiont-mediated detoxification of host-generated reactive oxygen species","na":1,"nb":2,"a":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["GO%3A0141082","symbiont-mediated detoxification of host-generated reactive oxygen species"],["Reactome%3AR-HSA-1222538","Tolerance by Mtb to nitric oxide produced by macrophages"]]},{"id":"NCBITaxon:105841","l":"Anaerostipes caccae","na":2,"nb":1,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["TED%3AAF-A0A6N2WKG2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N2WKG2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1245","l":"Leuconostoc mesenteroides","na":1,"nb":2,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["Pfam%3APF08951","Bacteriocin immunity protein family"],["TED%3AAF-A0A8B5R1X5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B5R1X5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1249","l":"Weissella paramesenteroides","na":1,"nb":2,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["Pfam%3APF01874","ATP:dephospho-CoA triphosphoribosyl transferase"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"]]},{"id":"NCBITaxon:1303","l":"Streptococcus oralis","na":1,"nb":2,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["Pfam%3APF03047","COMC family"],["TED%3AAF-A0A139PPG4-F1-model_v4_TED02","TED novel fold AF-A0A139PPG4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1317","l":"Streptococcus downei","na":2,"nb":1,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"],["FourSpecies_Aerobic_Lung_Microbiome_Model.html","Four-Species Aerobic Lung Microbiome Model"]],"b":[["Pfam%3APF13199","Glycosyl hydrolase family 66"]]},{"id":"NCBITaxon:1335","l":"Streptococcus equinus","na":2,"nb":1,"a":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"]],"b":[["TED%3AAF-A0A1V0GLT7-F1-model_v4_TED01","TED novel fold AF-A0A1V0GLT7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1582","l":"Lacticaseibacillus casei","na":1,"nb":2,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["Pfam%3APF07475","HPr Serine kinase C-terminal domain"],["PROSITE%3APS01163","Galactose-1-phosphate uridyl transferase family 2 signature"]]},{"id":"NCBITaxon:158836","l":"Enterobacter hormaechei","na":1,"nb":2,"a":[["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["TED%3AAF-A0A431SE22-F1-model_v4_TED01","TED novel fold AF-A0A431SE22-F1-model_v4_TED01"],["TED%3AAF-A0A8B5ZRS3-F1-model_v4_TED01","TED novel fold AF-A0A8B5ZRS3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1597","l":"Lacticaseibacillus paracasei","na":1,"nb":2,"a":[["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["Pfam%3APF09136","Glucodextranase, domain B"],["Pfam%3APF08109","Lactocin 705 family"]]},{"id":"NCBITaxon:1655","l":"Actinomyces naeslundii","na":1,"nb":2,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["Pfam%3APF16555","Gram-positive pilin subunit D1, N-terminal domain"],["TED%3AAF-A0A2Z5QNH6-F1-model_v4_TED02","TED novel fold AF-A0A2Z5QNH6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1871043","l":"Variovorax sp.","na":2,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]],"b":[["TED%3AAF-A0A2E9BKC8-F1-model_v4_TED02","TED novel fold AF-A0A2E9BKC8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1908224","l":"Sphingopyxis sp.","na":2,"nb":1,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["TED%3AAF-A0A2G2D229-F1-model_v4_TED01","TED novel fold AF-A0A2G2D229-F1-model_v4_TED01"]]},{"id":"NCBITaxon:244366","l":"Klebsiella variicola","na":2,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["TED%3AAF-A0A2N4Z4E2-F1-model_v4_TED01","TED novel fold AF-A0A2N4Z4E2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:246200","l":"Ruegeria pomeroyi DSS-3","na":1,"nb":2,"a":[["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["Pfam%3APF16867","Dimethlysulfonioproprionate lyase"],["Pfam%3APF09347","Domain of unknown function (DUF1989)"]]},{"id":"NCBITaxon:252970","l":"Paraburkholderia phenoliruptrix","na":1,"nb":2,"a":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]],"b":[["TED%3AAF-A0A6J5BF93-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6J5BF93-F1-model_v4_TED01"],["TED%3AAF-A0A6J5BWX8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6J5BWX8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":2,"nb":1,"a":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]],"b":[["PROSITE%3APS01322","Phosphotriesterase family signature 1"]]},{"id":"NCBITaxon:29466","l":"Veillonella parvula","na":2,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]],"b":[["TED%3AAF-A0A134BYG5-F1-model_v4_TED01","TED novel fold AF-A0A134BYG5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:299767","l":"Enterobacter ludwigii","na":2,"nb":1,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["TED%3AAF-W0BYN9-F1-model_v4_TED01","TED highly-symmetric fold AF-W0BYN9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:323259","l":"Methanospirillum hungatei JF-1","na":2,"nb":1,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["Pfam%3APF01864","CDP-archaeol synthase"]]},{"id":"NCBITaxon:33959","l":"Lactobacillus johnsonii","na":2,"nb":1,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]],"b":[["Pfam%3APF13518","Helix-turn-helix domain"]]},{"id":"NCBITaxon:375","l":"Bradyrhizobium japonicum","na":1,"nb":2,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"]],"b":[["TED%3AAF-A0A1L3FD53-F1-model_v4_TED02","TED novel fold AF-A0A1L3FD53-F1-model_v4_TED02"],["TED%3AAF-A0A1L3FDV4-F1-model_v4_TED02","TED novel fold AF-A0A1L3FDV4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:3818","l":"Arachis hypogaea","na":1,"nb":2,"a":[["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["TED%3AAF-A0A445AVV9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A445AVV9-F1-model_v4_TED02"],["TED%3AAF-A0A444Z3U3-F1-model_v4_TED01","TED novel fold AF-A0A444Z3U3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:40214","l":"Acinetobacter johnsonii","na":1,"nb":2,"a":[["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["Pfam%3APF12973","ChrR Cupin-like domain"],["Pfam%3APF13807","G-rich domain on putative tyrosine kinase"]]},{"id":"NCBITaxon:4530","l":"Oryza sativa","na":1,"nb":2,"a":[["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"]],"b":[["Pfam%3APF10839","Protein of unknown function (DUF2647)"],["PROSITE%3APS00937","Ribosomal protein L20 signature"]]},{"id":"NCBITaxon:582702","l":"Rhodanobacter glycinis","na":1,"nb":2,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"]],"b":[["TED%3AAF-A0A1I4G4N7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I4G4N7-F1-model_v4_TED02"],["TED%3AAF-A0A502CFB8-F1-model_v4_TED01","TED novel fold AF-A0A502CFB8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:64104","l":"Bacillus pseudomycoides","na":1,"nb":2,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["TED%3AAF-A0A1Y3MB62-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y3MB62-F1-model_v4_TED01"],["TED%3AAF-A0A2C4USY5-F1-model_v4_TED01","TED novel fold AF-A0A2C4USY5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:659243","l":"Bacillus siamensis","na":2,"nb":1,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"]],"b":[["TED%3AAF-A0A853L550-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A853L550-F1-model_v4_TED02"]]},{"id":"NCBITaxon:82380","l":"Microbacterium oxydans","na":2,"nb":1,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]],"b":[["TED%3AAF-A0A4Y4GD74-F1-model_v4_TED02","TED novel fold AF-A0A4Y4GD74-F1-model_v4_TED02"]]},{"id":"NCBITaxon:94626","l":"Brucella tritici","na":1,"nb":2,"a":[["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]],"b":[["TED%3AAF-A0A7X6FRR6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X6FRR6-F1-model_v4_TED01"],["TED%3AAF-A0A7X6JC90-F1-model_v4_TED01","TED novel fold AF-A0A7X6JC90-F1-model_v4_TED01"]]},{"id":"NCBITaxon:971","l":"Pseudoselenomonas ruminantium","na":1,"nb":2,"a":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"]],"b":[["TED%3AAF-A0A1H0QI16-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H0QI16-F1-model_v4_TED02"],["TED%3AAF-A0A1I6XHL5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I6XHL5-F1-model_v4_TED01"]]},{"id":"UBERON:0002097","l":"skin of body","na":1,"nb":2,"a":[["SkinCom_Synthetic_Skin_Community.html","SkinCom Synthetic Skin Community"]],"b":[["GO%3A0043588","skin development"],["GO%3A0043589","skin morphogenesis"]]},{"id":"CHEBI:15517","l":"butyryl-CoA","na":1,"nb":1,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_BCO","BCO-binding site"]]},{"id":"CHEBI:15859","l":"N-carbamoyl-L-aspartic acid","na":1,"nb":1,"a":[["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:16119","l":"shikimic acid","na":1,"nb":1,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["proteintraitsmech%3ABIOLIP_SKM","SKM-binding site"]]},{"id":"CHEBI:16449","l":"alanine","na":1,"nb":1,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["MCSA%3A724","repressor LexA"]]},{"id":"CHEBI:16988","l":"D-ribose","na":1,"nb":1,"a":[["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:16991","l":"deoxyribonucleic acid","na":1,"nb":1,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_DNA","DNA-binding site"]]},{"id":"CHEBI:17089","l":"glycoprotein","na":1,"nb":1,"a":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"]],"b":[["TCDB%3A9.B.417","The MCFD2/LMAN1 Complex Receptor (MLM-CR) Family"]]},{"id":"CHEBI:17359)","l":"","na":1,"nb":1,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"]],"b":[["RHEA%3A12945","2'-hydroxybiphenyl-2-sulfinate + H2O = biphenyl-2-ol + sulfite + H(+)"]]},{"id":"CHEBI:17418","l":"valeric acid","na":1,"nb":1,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_LEA","LEA-binding site"]]},{"id":"CHEBI:17642","l":"pentachlorophenol","na":1,"nb":1,"a":[["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_PCI","PCI-binding site"]]},{"id":"CHEBI:18012","l":"fumaric acid","na":1,"nb":1,"a":[["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["proteintraitsmech%3ABIOLIP_FUM","FUM-binding site"]]},{"id":"CHEBI:18186","l":"tyrosine","na":1,"nb":1,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["MCSA%3A668","leishmanolysin"]]},{"id":"CHEBI:22660","l":"aspartic acid","na":1,"nb":1,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"]]},{"id":"CHEBI:24632","l":"hydrocarbon","na":1,"nb":1,"a":[["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"]],"b":[["TCDB%3A1.B.9","The FadL Outer Membrane Protein (FadL) Family"]]},{"id":"CHEBI:26401","l":"purines","na":1,"nb":1,"a":[["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:27570","l":"histidine","na":1,"nb":1,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:28260","l":"galactose","na":1,"nb":1,"a":[["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:28808","l":"mannan","na":1,"nb":1,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"]],"b":[["TCDB%3A4.A.3","The PTS Lactose-N,N'-Diacetylchitobiose-β-glucoside (Lac) Family"]]},{"id":"CHEBI:30531","l":"pimelic acid","na":1,"nb":1,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["proteintraitsmech%3ABIOLIP_PML","PML-binding site"]]},{"id":"CHEBI:30778","l":"gallic acid","na":1,"nb":1,"a":[["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_GDE","GDE-binding site"]]},{"id":"CHEBI:32079","l":"pyrrolnitrin","na":1,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["RHEA%3A46136","aminopyrrolnitrin + NADPH + 2 O2 + H(+) = pyrrolnitrin + NADP(+) + 2 H2O"]]},{"id":"CHEBI:33198","l":"D-gluconic acid","na":1,"nb":1,"a":[["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"]],"b":[["proteintraitsmech%3ABIOLIP_GCO","GCO-binding site"]]},{"id":"CHEBI:34031","l":"1,1-dichloroethene","na":1,"nb":1,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["RHEA%3A68000","1,1-dichloroethene + AH2 = chloroethene + chloride + A + H(+)"]]},{"id":"CHEBI:34631","l":"chlorpyrifos","na":1,"nb":1,"a":[["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:35366","l":"fatty acid","na":1,"nb":1,"a":[["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:36976","l":"nucleotide","na":1,"nb":1,"a":[["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"]],"b":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"]]},{"id":"CHEBI:38155","l":"phytosiderophore","na":1,"nb":1,"a":[["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["TCDB%3A2.A.67","The Oligopeptide Transporter (OPT) Family"]]},{"id":"CHEBI:38372","l":"cis-2-dodecenoic acid","na":1,"nb":1,"a":[["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_GEY","GEY-binding site"]]},{"id":"CHEBI:41131","l":"crotonic acid","na":1,"nb":1,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_BEO","BEO-binding site"]]},{"id":"CHEBI:45441","l":"N-acetyl-L-serine","na":1,"nb":1,"a":[["Watermelon_Rhizosphere_Fusarium_SynCom8.html","Watermelon Rhizosphere Fusarium-Protective SynCom8"]],"b":[["proteintraitsmech%3ABIOLIP_SAC","SAC-binding site"]]},{"id":"CHEBI:46645","l":"isobutanol","na":1,"nb":1,"a":[["Trichoderma_Ecoli_Cellulosic_Isobutanol_Coculture.html","Trichoderma-E. coli Cellulosic Isobutanol Coculture"]],"b":[["RHEA%3A64692","isobutanol + NAD(+) = 2-methylpropanal + NADH + H(+)"]]},{"id":"CHEBI:49017","l":"3-methylthiopropanal","na":1,"nb":1,"a":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["RHEA%3A55076","4-methylsulfanyl-2-oxobutanoate + H(+) = 3-methylsulfanylpropanal + CO2"]]},{"id":"CHEBI:49890","l":"samarium(3+)","na":1,"nb":1,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_SM","SM-binding site"]]},{"id":"CHEBI:49980","l":"ytterbium(3+)","na":1,"nb":1,"a":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["proteintraitsmech%3ABIOLIP_YB","YB-binding site"]]},{"id":"CHEBI:7476","l":"naproxen","na":1,"nb":1,"a":[["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"]],"b":[["proteintraitsmech%3ABIOLIP_NPS","NPS-binding site"]]},{"id":"CHEBI:84043","l":"gallium(3+)","na":1,"nb":1,"a":[["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"GO:0006046","l":"N-acetylglucosamine catabolic process","na":1,"nb":1,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]],"b":[["GO%3A0006046","N-acetylglucosamine catabolic process"]]},{"id":"GO:0006082","l":"obsolete organic acid metabolic process","na":1,"nb":1,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["PANTHER%3APTHR43680","NITRATE REDUCTASE MOLYBDENUM COFACTOR ASSEMBLY CHAPERONE"]]},{"id":"GO:0019249","l":"lactate biosynthetic process","na":1,"nb":1,"a":[["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["GO%3A0019249","lactate biosynthetic process"]]},{"id":"GO:0019253","l":"reductive pentose-phosphate cycle","na":1,"nb":1,"a":[["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["GO%3A0019253","reductive pentose-phosphate cycle"]]},{"id":"GO:0019332","l":"aerobic respiration, using nitrite as electron donor","na":1,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"]],"b":[["GO%3A0019332","aerobic respiration, using nitrite as electron donor"]]},{"id":"GO:0022622","l":"root system development","na":1,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["GO%3A0022622","root system development"]]},{"id":"GO:0042192","l":"methylmercury biosynthetic process","na":1,"nb":1,"a":[["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"]],"b":[["GO%3A0042192","methylmercury biosynthetic process"]]},{"id":"GO:0051850","l":"acquisition of nutrients from symbiont","na":1,"nb":1,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0051850","acquisition of nutrients from symbiont"]]},{"id":"GO:0140923","l":"magnetosome assembly","na":1,"nb":1,"a":[["Tropidoatractus_Magnetotacticus_Tripartite_Syntrophy.html","Tropidoatractus magnetotacticus Magnetotactic Ciliate Tripartite Syntrophy"]],"b":[["GO%3A0140923","magnetosome assembly"]]},{"id":"GO:1902087","l":"dimethylsulfoniopropionate catabolic process","na":1,"nb":1,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["GO%3A1902087","dimethylsulfoniopropionate catabolic process"]]},{"id":"NCBITaxon:101028","l":"Fusarium pseudograminearum","na":1,"nb":1,"a":[["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["TED%3AAF-A0A7S8DXW2-F1-model_v4_TED02","TED novel fold AF-A0A7S8DXW2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1072583","l":"Vreelandella boliviensis LC1","na":1,"nb":1,"a":[["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"]],"b":[["TED%3AAF-A0A265DTH2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A265DTH2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1165","l":"Anabaena cylindrica","na":1,"nb":1,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["Pfam%3APF17275","Family of unknown function (DUF5340)"]]},{"id":"NCBITaxon:118127","l":"Chryseobacterium proteolyticum","na":1,"nb":1,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["Pfam%3APF18626","Glutaminase"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":1,"nb":1,"a":[["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["TED%3AAF-A0A132HLN2-F1-model_v4_TED01","TED novel fold AF-A0A132HLN2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1215089","l":"Planococcus halocryophilus","na":1,"nb":1,"a":[["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"]],"b":[["TED%3AAF-A0A1C7DVM0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C7DVM0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":1,"nb":1,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["PROSITE%3APS01043","Transposases, IS30 family, signature"]]},{"id":"NCBITaxon:134","l":"Methylocystis parvus","na":1,"nb":1,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"]],"b":[["TED%3AAF-A0A6B8M6B0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6B8M6B0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:138074","l":"Serratia symbiotica","na":1,"nb":1,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"]],"b":[["TED%3AAF-A0A068YYP3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A068YYP3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1399","l":"Cytobacillus firmus","na":1,"nb":1,"a":[["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"]],"b":[["TED%3AAF-A0A800NFK9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A800NFK9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1520","l":"Clostridium beijerinckii","na":1,"nb":1,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"]],"b":[["TED%3AAF-A0A0B5QQV4-F1-model_v4_TED02","TED novel fold AF-A0A0B5QQV4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1547","l":"Thomasclavelia ramosa","na":1,"nb":1,"a":[["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["TED%3AAF-A0A3E3E4C4-F1-model_v4_TED02","TED novel fold AF-A0A3E3E4C4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1585","l":"Lactobacillus delbrueckii subsp. bulgaricus","na":1,"nb":1,"a":[["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["TED%3AAF-A0A809EIY6-F1-model_v4_TED02","TED novel fold AF-A0A809EIY6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:159743","l":"Paenibacillus terrae","na":1,"nb":1,"a":[["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"]],"b":[["TED%3AAF-A0A0D7WXS4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D7WXS4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1673428","l":"Cuniculiplasma divulgatum","na":1,"nb":1,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["TED%3AAF-A0A1N5S5J2-F1-model_v4_TED02","TED novel fold AF-A0A1N5S5J2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":1,"nb":1,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["Pfam%3APF08124","Polysaccharide lyase family 8, N terminal alpha-helical domain"]]},{"id":"NCBITaxon:1920","l":"Streptomyces nigrescens","na":1,"nb":1,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["Pfam%3APF03995","Peptidase inhibitor family I36"]]},{"id":"NCBITaxon:1979961","l":"Wenzhouxiangella sp.","na":1,"nb":1,"a":[["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["TED%3AAF-A0A5Q4GWL5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Q4GWL5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:216778","l":"Stenotrophomonas rhizophila","na":1,"nb":1,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"]],"b":[["TED%3AAF-A0A023XYG6-F1-model_v4_TED02","TED novel fold AF-A0A023XYG6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2209","l":"Methanosarcina mazei","na":1,"nb":1,"a":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"]],"b":[["TED%3AAF-A0A0F8CQX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F8CQX7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:223967","l":"Methylorubrum populi","na":1,"nb":1,"a":[["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"]],"b":[["TED%3AAF-A0A161JLG1-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A161JLG1-F1-model_v4_TED04"]]},{"id":"NCBITaxon:250","l":"Chryseobacterium gleum","na":1,"nb":1,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["TED%3AAF-A0A448B167-F1-model_v4_TED02","TED novel fold AF-A0A448B167-F1-model_v4_TED02"]]},{"id":"NCBITaxon:258","l":"Sphingobacterium spiritivorum","na":1,"nb":1,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["TED%3AAF-A0A380CHI8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A380CHI8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:264198","l":"Cupriavidus pinatubonensis JMP134","na":1,"nb":1,"a":[["Rhizorhabdus_Cupriavidus_BDE47_Degradation_SynCom.html","Rhizorhabdus-Cupriavidus BDE-47 Degradation SynCom"]],"b":[["TED%3AAF-Q476D1-F1-model_v4_TED02","TED highly-symmetric fold AF-Q476D1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:270351","l":"Methylobacterium aquaticum","na":1,"nb":1,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["TED%3AAF-A0A0J6S4M9-F1-model_v4_TED02","TED novel fold AF-A0A0J6S4M9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2759","l":"Eukaryota","na":1,"nb":1,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2759","Eukaryota orthologous groups (OrthoDB)"]]},{"id":"NCBITaxon:294710","l":"Proteiniphilum acetatigenes","na":1,"nb":1,"a":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"]],"b":[["TED%3AAF-A0A101HH48-F1-model_v4_TED02","TED novel fold AF-A0A101HH48-F1-model_v4_TED02"]]},{"id":"NCBITaxon:29875","l":"Trichoderma virens","na":1,"nb":1,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"]],"b":[["Pfam%3APF07249","Cerato-platanin"]]},{"id":"NCBITaxon:316385","l":"Escherichia coli str. K-12 substr. DH10B","na":1,"nb":1,"a":[["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["Pfam%3APF06392","Acid shock protein"]]},{"id":"NCBITaxon:33905","l":"Bifidobacterium thermophilum","na":1,"nb":1,"a":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["TED%3AAF-A0A2N3QE79-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3QE79-F1-model_v4_TED01"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":1,"nb":1,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["TED%3AAF-A0A679J1E9-F1-model_v4_TED01","TED novel fold AF-A0A679J1E9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:3747","l":"Fragaria x ananassa","na":1,"nb":1,"a":[["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["PROSITE%3APS00451","Pathogenesis-related proteins Bet v I family signature"]]},{"id":"NCBITaxon:37929","l":"Glutamicibacter nicotianae","na":1,"nb":1,"a":[["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"]],"b":[["Pfam%3APF16701","Adenylate cyclase regulatory domain"]]},{"id":"NCBITaxon:38304","l":"Corynebacterium tuberculostearicum","na":1,"nb":1,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["TED%3AAF-A0A7U0H937-F1-model_v4_TED01","TED novel fold AF-A0A7U0H937-F1-model_v4_TED01"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"]],"b":[["Pfam%3APF13282","Domain of unknown function (DUF4070)"]]},{"id":"NCBITaxon:40216","l":"Acinetobacter radioresistens","na":1,"nb":1,"a":[["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["TED%3AAF-A0A7D7YF26-F1-model_v4_TED02","TED novel fold AF-A0A7D7YF26-F1-model_v4_TED02"]]},{"id":"NCBITaxon:4054","l":"Panax ginseng","na":1,"nb":1,"a":[["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"]],"b":[["Pfam%3APF26168","Glycosyltransferase, N-terminal domain"]]},{"id":"NCBITaxon:408","l":"Methylorubrum extorquens","na":1,"nb":1,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["Pfam%3APF04476","4-HFC-P synthase"]]},{"id":"NCBITaxon:453960","l":"Sulfobacillus benefaciens","na":1,"nb":1,"a":[["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"]],"b":[["TED%3AAF-A0A2T2WWZ6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2T2WWZ6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:47715","l":"Lacticaseibacillus rhamnosus","na":1,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["Pfam%3APF04914","DltD protein"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":1,"nb":1,"a":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]],"b":[["TED%3AAF-A0A4R6CRR7-F1-model_v4_TED01","TED novel fold AF-A0A4R6CRR7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:4909","l":"Pichia kudriavzevii","na":1,"nb":1,"a":[["Sichuan_Shai_Vinegar_Yeast_Flavor_SynCom.html","Sichuan Shai Vinegar Yeast Flavor SynCom"]],"b":[["TED%3AAF-A0A099P804-F1-model_v4_TED01","TED novel fold AF-A0A099P804-F1-model_v4_TED01"]]},{"id":"NCBITaxon:4911","l":"Kluyveromyces marxianus","na":1,"nb":1,"a":[["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["Pfam%3APF04684","BAF1 / ABF1 chromatin reorganising factor"]]},{"id":"NCBITaxon:5007","l":"Brettanomyces bruxellensis","na":1,"nb":1,"a":[["Sichuan_Shai_Vinegar_Yeast_Flavor_SynCom.html","Sichuan Shai Vinegar Yeast Flavor SynCom"]],"b":[["TED%3AAF-A0A7D9CWH5-F1-model_v4_TED01","TED novel fold AF-A0A7D9CWH5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":1,"nb":1,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["Pfam%3APF07335","Fungal chitosanase of glycosyl hydrolase group 75"]]},{"id":"NCBITaxon:5547","l":"Trichoderma viride","na":1,"nb":1,"a":[["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["Pfam%3APF14587","O-Glycosyl hydrolase family 30"]]},{"id":"NCBITaxon:61435","l":"Dehalococcoides mccartyi","na":1,"nb":1,"a":[["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"]],"b":[["TED%3AAF-A0A2J1E0L6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J1E0L6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:68239","l":"Streptomyces mirabilis","na":1,"nb":1,"a":[["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["TED%3AAF-A0A1I2Y4U7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2Y4U7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:72360","l":"Bacillus mojavensis","na":1,"nb":1,"a":[["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["Pfam%3APF05952","Bacillus competence pheromone ComX"]]},{"id":"NCBITaxon:82367","l":"Paracoccus pantotrophus","na":1,"nb":1,"a":[["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"]],"b":[["Pfam%3APF17805","AsnC-like ligand binding domain"]]},{"id":"NCBITaxon:901","l":"Desulfovibrio piger","na":1,"nb":1,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["TED%3AAF-A0A848CHH4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A848CHH4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:96241","l":"Bacillus spizizenii","na":1,"nb":1,"a":[["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"]],"b":[["Pfam%3APF05952","Bacillus competence pheromone ComX"]]},{"id":"NCBITaxon:986","l":"Flavobacterium johnsoniae","na":1,"nb":1,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["TED%3AAF-A0A1J7BWE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1J7BWE6-F1-model_v4_TED01"]]}]} \ No newline at end of file +{"a":"CommunityMech","b":"ProteinTraitsMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record="},"n":689,"by":{"CHEBI":276,"NCBITaxon":226,"GO":186,"UBERON":1},"terms":[{"id":"CHEBI:30089","l":"acetate","na":78,"nb":302,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"]],"b":[["EC%3A1.1.1.318","eugenol synthase"],["EC%3A1.1.1.319","isoeugenol synthase"],["EC%3A1.13.11.50","acetylacetone-cleaving enzyme"],["EC%3A1.13.12.4","lactate 2-monooxygenase"],["EC%3A1.14.13.54","ketosteroid monooxygenase"],["EC%3A1.14.14.19","steroid 17alpha-monooxygenase"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":75,"nb":1616,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]],"b":[["EC%3A1.1.1.170","3beta-hydroxysteroid-4alpha-carboxylate 3-dehydrogenase (decarboxylating)"],["EC%3A1.1.1.262","4-hydroxythreonine-4-phosphate dehydrogenase"],["EC%3A1.1.1.276","serine 3-dehydrogenase (NADP(+))"],["EC%3A1.1.1.286","isocitrate--homoisocitrate dehydrogenase"],["EC%3A1.1.1.305","UDP-glucuronic acid oxidase (UDP-4-keto-hexauronic acid decarboxylating)"],["EC%3A1.1.1.343","phosphogluconate dehydrogenase (NAD(+)-dependent, decarboxylating)"]]},{"id":"GO:0015979","l":"photosynthesis","na":44,"nb":146,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["GO%3A0015979","photosynthesis"],["NCBIfam%3ATIGR01337","allophycocyanin subunit beta"],["NCBIfam%3ATIGR03056","alpha/beta fold hydrolase BchO"],["NCBIfam%3ANF013497","Apocytochrome F, C-terminal"],["NCBIfam%3ANF014391","Bacteriochlorophyll A protein"],["NCBIfam%3ANF058502","C-phycocyanin alpha-cysteine-84 phycocyanobilin lyase subunit CpcE"]]},{"id":"GO:0015948","l":"methanogenesis","na":44,"nb":82,"a":[["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"]],"b":[["GO%3A0019385","methanogenesis, from acetate"],["GO%3A0019386","methanogenesis, from carbon dioxide"],["GO%3A0019387","methanogenesis, from methanol"],["GO%3A0015948","methanogenesis"],["proteintraitsmech%3ASEED_SUBSYSTEM_Methanogenesis","Methanogenesis"],["NCBIfam%3ATIGR03957","5,10-methenyltetrahydromethanopterin hydrogenase cofactor biosynthesis protein HmdB"]]},{"id":"CHEBI:18276","l":"dihydrogen","na":58,"nb":42,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"]],"b":[["EC%3A1.12.1.2","hydrogen dehydrogenase"],["EC%3A1.12.1.3","hydrogen dehydrogenase (NADP(+))"],["EC%3A1.12.1.4","hydrogenase (NAD(+), ferredoxin)"],["EC%3A1.12.1.5","hydrogen dehydrogenase [NAD(P)(+)]"],["EC%3A1.12.2.1","cytochrome-c3 hydrogenase"],["EC%3A1.12.5.1","hydrogen:quinone oxidoreductase"]]},{"id":"GO:0015977","l":"carbon fixation","na":33,"nb":30,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["GO%3A0009760","C4 photosynthesis"],["GO%3A0009761","CAM photosynthesis"],["GO%3A0043427","carbon fixation by 3-hydroxypropionate cycle"],["GO%3A0030634","carbon fixation by acetyl-CoA pathway"],["GO%3A0015977","carbon fixation"],["GO%3A0019643","reductive tricarboxylic acid cycle"]]},{"id":"CHEBI:17632","l":"nitrate","na":28,"nb":40,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["EC%3A1.14.12.17","nitric oxide dioxygenase"],["EC%3A1.7.1.1","nitrate reductase (NADH)"],["EC%3A1.7.1.2","nitrate reductase [NAD(P)H]"],["EC%3A1.7.1.3","nitrate reductase (NADPH)"],["EC%3A1.7.5.1","nitrate reductase (quinone)"],["EC%3A1.7.6.1","nitrite dismutase"]]},{"id":"CHEBI:15379","l":"dioxygen","na":25,"nb":3896,"a":[["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["EC%3A1.1.3.10","pyranose oxidase"],["EC%3A1.1.3.11","L-sorbose oxidase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.3.13","alcohol oxidase"],["EC%3A1.1.3.14","catechol oxidase (dimerizing)"],["EC%3A1.1.3.15","(S)-2-hydroxy-acid oxidase"]]},{"id":"CHEBI:16189","l":"sulfate","na":25,"nb":133,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16189","requires sulfate"],["EC%3A1.14.11.77","alkyl sulfatase"],["EC%3A1.8.2.1","sulfite dehydrogenase (cytochrome)"],["EC%3A1.8.3.1","sulfite oxidase"],["EC%3A1.8.5.6","sulfite dehydrogenase (quinone)"],["EC%3A2.7.7.4","sulfate adenylyltransferase"]]},{"id":"CHEBI:16236","l":"ethanol","na":25,"nb":31,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.5.5","alcohol dehydrogenase (quinone)"],["EC%3A1.1.99.36","alcohol dehydrogenase (nicotinoprotein)"],["EC%3A2.3.1.268","ethanol O-acetyltransferase"],["EC%3A3.1.1.113","ethyl acetate hydrolase"],["EC%3A3.1.1.67","fatty-acyl-ethyl-ester synthase"]]},{"id":"GO:0009399","l":"nitrogen fixation","na":24,"nb":36,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"]],"b":[["GO%3A0009399","nitrogen fixation"],["proteintraitsmech%3ASEED_SUBSYSTEM_Nitrogen_fixation","Nitrogen fixation"],["NCBIfam%3ATIGR02662","ADP-ribosyl-[dinitrogen reductase] hydrolase"],["NCBIfam%3ATIGR02931","Fe-only nitrogenase subunit beta"],["NCBIfam%3ATIGR02929","Fe-only nitrogenase subunit delta"],["NCBIfam%3ATIGR02000","Fe-S cluster assembly protein NifU"]]},{"id":"CHEBI:15740","l":"formate","na":23,"nb":173,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"]],"b":[["EC%3A1.1.98.6","ribonucleoside-triphosphate reductase (formate)"],["EC%3A1.10.3.15","grixazone synthase"],["EC%3A1.13.11.41","2,4'-dihydroxyacetophenone dioxygenase"],["EC%3A1.13.11.53","acireductone dioxygenase (Ni(2+)-requiring)"],["EC%3A1.13.11.54","acireductone dioxygenase (Fe(2+)-requiring)"],["EC%3A1.13.11.72","2-hydroxyethylphosphonate dioxygenase"]]},{"id":"CHEBI:24996","l":"lactate","na":22,"nb":23,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["EC%3A1.1.1.436","lactate dehydrogenase (NAD(+),ferredoxin)"],["EC%3A3.5.1.124","protein deglycase"],["RHEA%3A57300","an N(2)-(1-hydroxy-2-oxopropyl)-2'-deoxyguanosine in DNA + H2O = a 2'-deoxyguanosine in DNA + lactate + H(+)"],["RHEA%3A57288","an N(2)-(1-hydroxy-2-oxopropyl)-guanosine in RNA + H2O = a guanosine in RNA + lactate + H(+)"],["RHEA%3A46964","lactate + 2 reduced [2Fe-2S]-[ferredoxin] + 2 NAD(+) = 2 oxidized [2Fe-2S]-[ferredoxin] + pyruvate + 2 NADH"],["RHEA%3A57244","N(2)-(1-hydroxy-2-oxopropyl)-dGTP + H2O = lactate + dGTP + H(+)"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":21,"nb":396,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29033","requires iron(2+)"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.11","glucoside 3-dehydrogenase (cytochrome c)"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.2.3","L-lactate dehydrogenase (cytochrome)"],["EC%3A1.1.2.4","D-lactate dehydrogenase (cytochrome)"]]},{"id":"CHEBI:29034","l":"iron(3+)","na":21,"nb":376,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29034","requires iron(3+)"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.11","glucoside 3-dehydrogenase (cytochrome c)"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.2.3","L-lactate dehydrogenase (cytochrome)"],["EC%3A1.1.2.4","D-lactate dehydrogenase (cytochrome)"]]},{"id":"CHEBI:28938","l":"ammonium","na":19,"nb":837,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_28938","requires ammonium"],["EC%3A1.13.12.15","3,4-dihydroxyphenylalanine oxidative deaminase"],["EC%3A1.13.99.3","tryptophan 2'-dioxygenase"],["EC%3A1.14.11.37","kanamycin B dioxygenase"],["EC%3A1.14.12.1","anthranilate 1,2-dioxygenase (deaminating, decarboxylating)"],["EC%3A1.14.12.14","2-aminobenzenesulfonate 2,3-dioxygenase"]]},{"id":"CHEBI:17968","l":"butyrate","na":19,"nb":33,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"]],"b":[["EC%3A1.3.1.31","2-enoate reductase"],["EC%3A2.3.1.315","succinyl-CoA:cyclohexane-1-carboxylate CoA transferase"],["EC%3A2.7.2.7","butyrate kinase"],["EC%3A2.8.3.9","butyrate--acetoacetate CoA-transferase"],["EC%3A3.1.1.51","phorbol-diester hydrolase"],["EC%3A3.7.1.7","beta-diketone hydrolase"]]},{"id":"GO:0044419","l":"biological process involved in interspecies interaction between organisms","na":148,"nb":18,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]],"b":[["GO%3A0044419","biological process involved in interspecies interaction between organisms"],["GO%3A0044403","biological process involved in symbiotic interaction"],["GO%3A0141060","disruption of anatomical structure in another organism"],["GO%3A0044111","formation of structure involved in a symbiotic process"],["GO%3A0140106","hematophagy"],["GO%3A0035821","modulation of process of another organism"]]},{"id":"GO:0030245","l":"cellulose catabolic process","na":30,"nb":18,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic Rumen Consortium"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"]],"b":[["GO%3A1990488","anaerobic cellulose catabolic process"],["GO%3A0030245","cellulose catabolic process"],["GO%3A0052785","cellulose catabolism by endo-processive cellulases"],["NCBIfam%3ANF049990","cellulose 1,4-beta-cellobiosidase"],["NCBIfam%3ANF041611","exoglucanase CbhB"],["NCBIfam%3ATIGR03356","GH1 family beta-glucosidase"]]},{"id":"CHEBI:16301","l":"nitrite","na":17,"nb":116,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["EC%3A1.13.11.64","5-nitrosalicylate dioxygenase"],["EC%3A1.13.12.16","nitronate monooxygenase"],["EC%3A1.14.12.23","nitroarene dioxygenase"],["EC%3A1.14.12.24","2,4-dinitrotoluene dioxygenase"],["EC%3A1.14.13.166","4-nitrocatechol 4-monooxygenase"],["EC%3A1.14.13.167","4-nitrophenol 4-monooxygenase"]]},{"id":"GO:0006805","l":"xenobiotic metabolic process","na":17,"nb":38,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"]],"b":[["GO%3A0018872","arsonoacetate metabolic process"],["GO%3A0018890","cyanamide metabolic process"],["GO%3A0018892","cyclohexylsulfamate metabolic process"],["GO%3A0018905","dimethyl ether metabolic process"],["GO%3A0018909","dodecyl sulfate metabolic process"],["GO%3A0042197","halogenated hydrocarbon metabolic process"]]},{"id":"GO:0006826","l":"iron ion transport","na":17,"nb":26,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"]],"b":[["GO%3A1901678","iron coordination entity transport"],["GO%3A0033212","iron import into cell"],["GO%3A0034755","iron ion transmembrane transport"],["GO%3A0006826","iron ion transport"],["GO%3A0033571","lactoferrin transport"],["GO%3A0033572","transferrin transport"]]},{"id":"GO:0005975","l":"carbohydrate metabolic process","na":15,"nb":401,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"]],"b":[["GO%3A0016051","carbohydrate biosynthetic process"],["GO%3A0016052","carbohydrate catabolic process"],["GO%3A0005975","carbohydrate metabolic process"],["GO%3A0046835","carbohydrate phosphorylation"],["GO%3A0042836","D-glucarate metabolic process"],["GO%3A0019521","D-gluconate metabolic process"]]},{"id":"GO:0022900","l":"electron transport chain","na":15,"nb":50,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"]],"b":[["GO%3A0022900","electron transport chain"],["GO%3A0140647","P450-containing electron transport chain"],["GO%3A0009767","photosynthetic electron transport chain"],["GO%3A0022904","respiratory electron transport chain"],["NCBIfam%3ANF058577","4Fe-4S ferredoxin"],["NCBIfam%3ANF042982","8-methylmenaquinol:fumarate reductase flavoprotein subunit"]]},{"id":"CHEBI:17992","l":"sucrose","na":15,"nb":49,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"]],"b":[["EC%3A1.1.99.13","glucoside 3-dehydrogenase (acceptor)"],["EC%3A2.4.1.10","levansucrase"],["EC%3A2.4.1.125","sucrose--1,6-alpha-glucan 3(6)-alpha-glucosyltransferase"],["EC%3A2.4.1.13","sucrose synthase"],["EC%3A2.4.1.166","raffinose--raffinose alpha-galactosyltransferase"],["EC%3A2.4.1.167","sucrose 6(F)-alpha-galactosyltransferase"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":15,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["Pfam%3APF14562","Restriction endonuclease BglI"],["Pfam%3APF09195","Restriction endonuclease BglII/BglIII"],["Pfam%3APF09208","Restriction endonuclease MspI"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":14,"nb":145,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]],"b":[["IDPO%3A0000033","flexible linker"],["IDPO%3A0000014","order to disorder"],["IDPO%3A0000004","pre-molten globule"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"]]},{"id":"GO:0006113","l":"fermentation","na":43,"nb":14,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"]],"b":[["ComplexPortal%3ACPX-281","Hydrogenase-1 complex"],["GO%3A0030645","acetyl-CoA fermentation to butanoate"],["GO%3A0019665","amino acid fermentation"],["GO%3A0019588","anaerobic glycerol catabolic process"],["GO%3A0019658","bifid shunt"],["GO%3A0044577","D-xylose fermentation"]]},{"id":"GO:0006790","l":"sulfur compound metabolic process","na":13,"nb":113,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"]],"b":[["GO%3A0050427","3'-phosphoadenosine 5'-phosphosulfate metabolic process"],["GO%3A0018887","4-carboxy-4'-sulfoazobenzene metabolic process"],["GO%3A0006637","acyl-CoA metabolic process"],["GO%3A0019694","alkanesulfonate metabolic process"],["GO%3A0006768","biotin metabolic process"],["GO%3A1901266","cephalosporin C metabolic process"]]},{"id":"CHEBI:16183","l":"methane","na":62,"nb":13,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"]],"b":[["EC%3A1.14.13.25","methane monooxygenase (soluble)"],["EC%3A1.14.18.3","methane monooxygenase (particulate)"],["EC%3A2.8.4.1","coenzyme-B sulfoethylthiotransferase"],["EC%3A4.7.1.1","alpha-D-ribose 1-methylphosphonate 5-phosphate C-P-lyase"],["RHEA%3A34707","alpha-D-ribose 1-methylphosphonate 5-phosphate + AH2 + S-adenosyl-L-methionine = alpha-D-ribose 1,2-cyclic phosphate 5-phosphate + methane + 5'-deoxyadenosine + L-methionine + A + H(+)"],["RHEA%3A12532","coenzyme B + methyl-coenzyme M = methane + coenzyme M-coenzyme B heterodisulfide"]]},{"id":"CHEBI:26833","l":"sulfur atom","na":12,"nb":24,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["EC%3A1.12.98.4","sulfhydrogenase"],["EC%3A1.13.11.55","sulfur oxygenase/reductase"],["EC%3A1.8.1.18","NAD(P)H sulfur oxidoreductase (CoA-dependent)"],["EC%3A1.8.1.19","sulfide dehydrogenase"],["EC%3A1.8.2.3","sulfide-cytochrome-c reductase (flavocytochrome c)"],["EC%3A1.8.2.7","thiocyanate desulfurase"]]},{"id":"CHEBI:17997","l":"dinitrogen","na":12,"nb":18,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["EC%3A1.18.6.1","nitrogenase"],["EC%3A1.18.6.2","vanadium-dependent nitrogenase"],["EC%3A1.19.6.1","nitrogenase (flavodoxin)"],["EC%3A1.7.2.4","nitrous-oxide reductase"],["EC%3A1.7.2.8","hydrazine dehydrogenase"],["RHEA%3A79967","3-diazoavenalumate + NADH + H(+) = avenalumate + N2 + NAD(+)"]]},{"id":"CHEBI:17272","l":"propionate","na":11,"nb":34,"a":[["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"]],"b":[["EC%3A1.3.1.125","acrylate reductase"],["EC%3A2.7.2.15","propionate kinase"],["EC%3A2.8.3.1","propionate CoA-transferase"],["EC%3A2.8.3.27","propanoyl-CoA:succinate CoA transferase"],["EC%3A4.1.3.32","2,3-dimethylmalate lyase"],["EC%3A6.2.1.13","acetate--CoA ligase (ADP-forming)"]]},{"id":"GO:0044403","l":"biological process involved in symbiotic interaction","na":20,"nb":11,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["GO%3A0036377","arbuscular mycorrhizal association"],["GO%3A0051701","biological process involved in interaction with host"],["GO%3A0051702","biological process involved in interaction with symbiont"],["GO%3A0044403","biological process involved in symbiotic interaction"],["GO%3A0075733","intracellular transport of virus"],["GO%3A0044399","multi-species biofilm formation"]]},{"id":"GO:0045493","l":"xylan catabolic process","na":11,"nb":19,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["GO%3A2000888","arabinoxylan-containing compound catabolic process"],["GO%3A2000886","glucuronoxylan catabolic process"],["GO%3A0045493","xylan catabolic process"],["NCBIfam%3ANF042968","acetylxylan esterase AxeA1"],["NCBIfam%3ANF041579","beta-xylosidase"],["NCBIfam%3ANF042969","bifunctional acetylxylan esterase/glucomannan deacetylase AxeC2"]]},{"id":"GO:0050832","l":"defense response to fungus","na":11,"nb":15,"a":[["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"]],"b":[["GO%3A0019732","antifungal humoral response"],["GO%3A0061760","antifungal innate immune response"],["GO%3A0050832","defense response to fungus"],["NCBIfam%3ANF013159","Barwin family"],["InterPro%3AIPR018226","Barwin, conserved site"],["InterPro%3AIPR001153","Barwin domain"]]},{"id":"CHEBI:16134","l":"ammonia","na":14,"nb":11,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]],"b":[["TCDB%3A1.A.11","The Ammonium Transporter Channel (Amt) Family"],["MCSA%3A376","adenosine deaminase"],["MCSA%3A75","aspartate-ammonia ligase"],["MCSA%3A449","cystathionine beta-lyase"],["MCSA%3A97","cytidine deaminase"],["MCSA%3A710","cytosine deaminase (bacterial)"]]},{"id":"CHEBI:17790","l":"methanol","na":10,"nb":86,"a":[["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"]],"b":[["EC%3A1.1.1.244","methanol dehydrogenase"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.99.37","methanol dehydrogenase (nicotinoprotein)"],["EC%3A1.14.13.25","methane monooxygenase (soluble)"],["EC%3A1.14.14.117","aflatoxin B synthase"]]},{"id":"CHEBI:29036","l":"copper(2+)","na":10,"nb":40,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29036","requires copper(2+)"],["EC%3A1.1.9.1","alcohol dehydrogenase (azurin)"],["EC%3A1.16.3.4","cuproxidase"],["EC%3A1.17.9.1","4-methylphenol dehydrogenase (hydroxylating)"],["EC%3A1.17.9.2","(+)-pinoresinol hydroxylase"],["EC%3A1.20.9.1","arsenate reductase (azurin)"]]},{"id":"GO:0042742","l":"defense response to bacterium","na":9,"nb":53,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["ComplexPortal%3ACPX-10317","Interleukin-26 complex"],["GO%3A0019731","antibacterial humoral response"],["GO%3A0140367","antibacterial innate immune response"],["GO%3A0042742","defense response to bacterium"],["GO%3A0050829","defense response to Gram-negative bacterium"],["GO%3A0050830","defense response to Gram-positive bacterium"]]},{"id":"GO:0009372","l":"quorum sensing","na":9,"nb":21,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["ComplexPortal%3ACPX-4315","Autoinducer-2 ABC transporter complex"],["GO%3A0120218","host interaction involved in quorum sensing"],["GO%3A0009372","quorum sensing"],["NCBIfam%3ANF052393","acyl-homoserine-lactone synthase"],["NCBIfam%3ANF008187","autoinducer-2 kinase"],["NCBIfam%3ANF010444","autoinducer-binding transcriptional regulator TraR"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":9,"nb":20,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]],"b":[["Pfam%3APF14535","AMP-binding enzyme C-terminal domain"],["Pfam%3APF13442","Cytochrome C oxidase, cbb3-type, subunit III"],["Pfam%3APF22247","Catechol 2,3-dioxygenase-like N-terminal domain"],["Pfam%3APF25371","Domain of unknown function (DUF7884)"],["Pfam%3APF19301","LigXa C-terminal domain like"],["Pfam%3APF12729","Four helix bundle sensory module for signal transduction"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":9,"nb":19,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"]],"b":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"],["Pfam%3APF18173","Bacterial HORMA domain 2"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["Pfam%3APF27322","Cap8 HORMA domain"],["Pfam%3APF01526","Tn3 transposase DDE domain"]]},{"id":"CHEBI:28885","l":"butan-1-ol","na":9,"nb":16,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["EC%3A1.1.2.9","1-butanol dehydrogenase (cytochrome c)"],["EC%3A1.1.5.11","1-butanol dehydrogenase (quinone)"],["EC%3A1.14.13.230","butane monooxygenase (soluble)"],["RHEA%3A64672","2-(methylsulfanyl)acetyl-CoA + butan-1-ol = butyl 2-(methylsulfanyl)acetate + CoA"],["RHEA%3A64676","3-(methylsulfanyl)propanoyl-CoA + butan-1-ol = butyl 3-(methylsulfanyl)propanoate + CoA"],["RHEA%3A43432","butan-1-ol + 2 Fe(III)-[cytochrome c] = butanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"]]},{"id":"CHEBI:15361","l":"pyruvate","na":8,"nb":410,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15361","requires pyruvate"],["EC%3A1.1.1.27","L-lactate dehydrogenase"],["EC%3A1.1.1.28","D-lactate dehydrogenase"],["EC%3A1.1.1.38","malate dehydrogenase (oxaloacetate-decarboxylating)"],["EC%3A1.1.1.39","malate dehydrogenase (decarboxylating)"],["EC%3A1.1.1.40","malate dehydrogenase (oxaloacetate-decarboxylating) (NADP(+))"]]},{"id":"GO:0009061","l":"anaerobic respiration","na":8,"nb":36,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["ComplexPortal%3ACPX-4841","Anaerobic glycerol-3-phosphate dehydrogenase complex"],["ComplexPortal%3ACPX-317","Formate hydrogenlyase-H/Hydrogenase-3 complex"],["ComplexPortal%3ACPX-6028","Formate hydrogenlyase-H/Hydrogenase-4 complex"],["ComplexPortal%3ACPX-281","Hydrogenase-1 complex"],["ComplexPortal%3ACPX-282","Hydrogenase-2 complex"],["ComplexPortal%3ACPX-3447","NapAB nitrate reductase complex"]]},{"id":"GO:0010038","l":"response to metal ion","na":8,"nb":34,"a":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["GO%3A0071248","cellular response to metal ion"],["GO%3A0010044","response to aluminum ion"],["GO%3A0046686","response to cadmium ion"],["GO%3A0051592","response to calcium ion"],["GO%3A0010164","response to cesium ion"],["GO%3A0032025","response to cobalt ion"]]},{"id":"CHEBI:18385","l":"thiamine(1+)","na":8,"nb":19,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["EC%3A1.1.3.23","thiamine oxidase"],["EC%3A2.5.1.2","thiamine pyridinylase"],["EC%3A2.7.1.89","thiamine kinase"],["EC%3A2.7.6.2","thiamine diphosphokinase"],["EC%3A3.1.3.100","thiamine phosphate phosphatase"],["EC%3A3.5.99.2","aminopyrimidine aminohydrolase"]]},{"id":"CHEBI:33709","l":"amino acid","na":14,"nb":8,"a":[["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.23","The Dicarboxylate/Amino Acid:Cation (Na+ or H+) Symporter (DAACS) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A1.V.1","The Filamentous Cyanobacterial Septal Pore (Septum) Family"],["TCDB%3A1.A.24","The Gap Junction-forming Connexin (Connexin) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"GO:0015947","l":"methane metabolic process","na":11,"nb":8,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"]],"b":[["GO%3A0046188","methane catabolic process"],["GO%3A0015947","methane metabolic process"],["GO%3A0015948","methanogenesis"],["NCBIfam%3ANF014960","Methane monooxygenase, hydrolase gamma chain"],["Pfam%3APF02964","Methane monooxygenase, hydrolase gamma chain"],["InterPro%3AIPR015952","Methane monooxygenase, gamma chain, domain 1"]]},{"id":"GO:0046274","l":"lignin catabolic process","na":8,"nb":10,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"]],"b":[["GO%3A1990487","anaerobic lignin catabolic process"],["GO%3A1901062","guaiacyl lignin catabolic process"],["GO%3A0046274","lignin catabolic process"],["GO%3A1901059","p-hydroxyphenyl lignin catabolic process"],["GO%3A1901065","syringal lignin catabolic process"],["NCBIfam%3ANF042997","beta-etherase"]]},{"id":"GO:0040007","l":"growth","na":36,"nb":7,"a":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Cultivated_Meat_Contaminant_SynCom.html","Cultivated Meat Contaminant SynCom"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["GO%3A0007117","budding cell bud growth"],["GO%3A0016049","cell growth"],["GO%3A0048589","developmental growth"],["GO%3A0030447","filamentous growth"],["GO%3A0040007","growth"],["GO%3A0080190","lateral growth"]]},{"id":"GO:0042710","l":"biofilm formation","na":29,"nb":7,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["GO%3A0042710","biofilm formation"],["GO%3A0044399","multi-species biofilm formation"],["GO%3A0044010","single-species biofilm formation"],["GO%3A0090605","submerged biofilm formation"],["GO%3A0090604","surface biofilm formation"],["Reactome%3AR-HSA-9931953","Biofilm formation"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":7,"nb":23,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["Pfam%3APF08878","HamA"],["Pfam%3APF05791","Bacillus haemolytic enterotoxin (HBL)"],["Pfam%3APF10803","Spore germination GerPB"],["Pfam%3APF10737","Spore germination protein GerPC"],["Pfam%3APF10970","Spore germination protein GerPE"],["Pfam%3APF07486","Cell Wall Hydrolase"]]},{"id":"CHEBI:17057","l":"cellobiose","na":7,"nb":19,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["EC%3A1.1.3.5","hexose oxidase"],["EC%3A1.1.99.18","cellobiose dehydrogenase (acceptor)"],["EC%3A2.4.1.20","cellobiose phosphorylase"],["EC%3A2.7.1.205","protein-N(pi)-phosphohistidine--D-cellobiose phosphotransferase"],["EC%3A2.7.1.85","beta-glucoside kinase"],["EC%3A5.1.3.11","cellobiose epimerase"]]},{"id":"GO:0019420","l":"dissimilatory sulfate reduction","na":17,"nb":7,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["DVM_Triculture.html","DVM Tri-culture"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"]],"b":[["GO%3A0019420","dissimilatory sulfate reduction"],["NCBIfam%3ATIGR02061","adenylyl-sulfate reductase subunit alpha"],["NCBIfam%3ATIGR02060","adenylyl-sulfate reductase subunit beta"],["NCBIfam%3ATIGR02066","dissimilatory-type sulfite reductase subunit beta"],["NCBIfam%3ANF045796","sulfate reduction electron transfer complex DsrMKJOP subunit DsrK"],["NCBIfam%3ANF045797","sulfate reduction electron transfer complex DsrMKJOP subunit DsrO"]]},{"id":"CHEBI:49786","l":"nickel(2+)","na":7,"nb":10,"a":[["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_49786","requires nickel(2+)"],["EC%3A4.99.1.11","sirohydrochlorin nickelchelatase"],["EC%3A4.99.1.12","pyridinium-3,5-bisthiocarboxylic acid mononucleotide nickel chelatase"],["EC%3A7.2.2.11","ABC-type Ni(2+) transporter"],["RHEA%3A29831","Ni(2+)(in) = Ni(2+)(out)"],["RHEA%3A15557","Ni(2+)(out) + ATP + H2O = Ni(2+)(in) + ADP + phosphate + H(+)"]]},{"id":"NCBITaxon:818","l":"Bacteroides thetaiotaomicron","na":7,"nb":9,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["Pfam%3APF09093","Lyase, catalytic"],["TED%3AAF-A0A174W9M0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A174W9M0-F1-model_v4_TED01"],["TED%3AAF-A0A679HCU6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A679HCU6-F1-model_v4_TED01"],["TED%3AAF-A0A139L295-F1-model_v4_TED04","TED novel fold AF-A0A139L295-F1-model_v4_TED04"],["TED%3AAF-A0A174QBB7-F1-model_v4_TED02","TED novel fold AF-A0A174QBB7-F1-model_v4_TED02"],["TED%3AAF-A0A679H9T4-F1-model_v4_TED03","TED novel fold AF-A0A679H9T4-F1-model_v4_TED03"]]},{"id":"GO:0009056","l":"catabolic process","na":6,"nb":109,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"],["Wetland_Oxygen_Sulfate_GHG_Microcosm_Community.html","Wetland Oxygen-Sulfate Greenhouse Gas Microcosm Community"]],"b":[["GO%3A0018911","1,2,4-trichlorobenzene catabolic process"],["GO%3A0019261","1,4-dichlorobenzene catabolic process"],["GO%3A0046302","2-chloro-N-isopropylacetanilide catabolic process"],["GO%3A1901851","7,8-didemethyl-8-hydroxy-5-deazariboflavin catabolic process"],["GO%3A0006581","acetylcholine catabolic process"],["GO%3A0046185","aldehyde catabolic process"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":6,"nb":93,"a":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17544","requires hydrogencarbonate"],["EC%3A1.13.11.73","methylphosphonate synthase"],["EC%3A1.2.1.27","methylmalonate-semialdehyde dehydrogenase (CoA acylating)"],["EC%3A2.5.1.120","aminodeoxyfutalosine synthase"],["EC%3A2.5.1.143","pyridinium-3,5-biscarboxylic acid mononucleotide synthase"],["EC%3A2.7.2.2","carbamate kinase"]]},{"id":"GO:0006979","l":"response to oxidative stress","na":6,"nb":50,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["ComplexPortal%3ACPX-9082","19S-20S-PA28-alphabeta hybrid proteasome complex"],["ComplexPortal%3ACPX-9085","19S-20S-PA28-gamma hybrid proteasome complex"],["ComplexPortal%3ACPX-8806","20S proteasome complex"],["ComplexPortal%3ACPX-4862","Alkyl hydroperoxide reductase complex"],["ComplexPortal%3ACPX-8842","PA28-alphabeta double-capped 20S proteasome complex"],["ComplexPortal%3ACPX-9002","PA28-alphabeta single-capped 20S proteasome complex"]]},{"id":"CHEBI:17245","l":"carbon monoxide","na":6,"nb":31,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Subsurface_Carboxydocella_CO_Aquifer_Community.html","Subsurface Carboxydocella CO-Oxidation Aquifer Community"]],"b":[["EC%3A1.13.11.24","quercetin 2,3-dioxygenase"],["EC%3A1.13.11.47","3-hydroxy-4-oxoquinoline 2,4-dioxygenase"],["EC%3A1.13.11.48","3-hydroxy-2-methylquinolin-4-one 2,4-dioxygenase"],["EC%3A1.13.11.53","acireductone dioxygenase (Ni(2+)-requiring)"],["EC%3A1.14.14.18","heme oxygenase (biliverdin-producing)"],["EC%3A1.14.15.20","heme oxygenase (biliverdin-producing, ferredoxin)"]]},{"id":"CHEBI:18246","l":"(1->4)-beta-D-glucan","na":27,"nb":6,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["EC%3A2.4.1.12","cellulose synthase (UDP-forming)"],["EC%3A2.4.1.29","cellulose synthase (GDP-forming)"],["EC%3A2.4.1.49","cellodextrin phosphorylase"],["RHEA%3A17797","[(1->4)-beta-D-glucosyl](n) + GDP-alpha-D-glucose = [(1->4)-beta-D-glucosyl](n+1) + GDP + H(+)"],["RHEA%3A23024","[(1->4)-beta-D-glucosyl](n) + phosphate = [(1->4)-beta-D-glucosyl](n-1) + alpha-D-glucose 1-phosphate"],["RHEA%3A19929","[(1->4)-beta-D-glucosyl](n) + UDP-alpha-D-glucose = [(1->4)-beta-D-glucosyl](n+1) + UDP + H(+)"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":6,"nb":16,"a":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["Pfam%3APF16822","SGNH hydrolase-like domain, acetyltransferase AlgX"],["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"],["Pfam%3APF11182","Alginate O-acetyl transferase AlgF"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF27129","Functional amyloid protein FapB/FapC family"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":6,"nb":11,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF02085","Class III cytochrome C family"],["Pfam%3APF06397","Desulfoferrodoxin, N-terminal domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["Pfam%3APF12797","4Fe-4S binding domain"],["Pfam%3APF06180","Cobalt chelatase (CbiK)"]]},{"id":"GO:0009877","l":"nodulation","na":6,"nb":8,"a":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"],["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["GO%3A0009877","nodulation"],["NCBIfam%3ATIGR04243","chitooligosaccharide deacetylase NodB"],["NCBIfam%3ATIGR04242","chitooligosaccharide synthase NodC"],["NCBIfam%3ANF017620","HrpF/NolX family T3SS translocon protein"],["NCBIfam%3ATIGR04245","NodA family N-acyltransferase"],["NCBIfam%3ANF014526","Nodulation protein A (NodA)"]]},{"id":"GO:0071941","l":"nitrogen cycle metabolic process","na":6,"nb":8,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"]],"b":[["GO%3A0019409","aerobic respiration, using ammonia as electron donor"],["GO%3A0019331","anaerobic respiration, using ammonium as electron donor"],["GO%3A0019333","denitrification pathway"],["GO%3A0042128","nitrate assimilation"],["GO%3A0071941","nitrogen cycle metabolic process"],["GO%3A0009399","nitrogen fixation"]]},{"id":"CHEBI:18153","l":"ethene","na":7,"nb":6,"a":[["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"]],"b":[["EC%3A1.13.12.19","2-oxoglutarate dioxygenase (ethylene-forming)"],["EC%3A1.14.17.4","aminocyclopropanecarboxylate oxidase"],["RHEA%3A23640","1-aminocyclopropane-1-carboxylate + L-ascorbate + O2 = ethene + L-dehydroascorbate + hydrogen cyanide + CO2 + 2 H2O"],["RHEA%3A81439","2-(methylsulfanyl)ethanol + AH2 = ethene + methanethiol + A + H2O"],["RHEA%3A31523","2-oxoglutarate + O2 + 2 H(+) = ethene + 3 CO2 + H2O"],["RHEA%3A68004","chloroethene + AH2 = ethene + chloride + A + H(+)"]]},{"id":"NCBITaxon:40324","l":"Stenotrophomonas maltophilia","na":7,"nb":6,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]],"b":[["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["TED%3AAF-A0A2U4H7T5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2U4H7T5-F1-model_v4_TED02"],["TED%3AAF-A0A2W6G5X3-F1-model_v4_TED01","TED novel fold AF-A0A2W6G5X3-F1-model_v4_TED01"],["TED%3AAF-A0A2W6IKS3-F1-model_v4_TED02","TED novel fold AF-A0A2W6IKS3-F1-model_v4_TED02"],["TED%3AAF-A0A7D0KRT5-F1-model_v4_TED03","TED novel fold AF-A0A7D0KRT5-F1-model_v4_TED03"],["TED%3AAF-A0A7T8PWR1-F1-model_v4_TED05","TED novel fold AF-A0A7T8PWR1-F1-model_v4_TED05"]]},{"id":"CHEBI:17754","l":"glycerol","na":5,"nb":95,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"]],"b":[["EC%3A1.1.1.156","glycerol 2-dehydrogenase (NADP(+))"],["EC%3A1.1.1.372","D/L-glyceraldehyde reductase"],["EC%3A1.1.1.6","glycerol dehydrogenase"],["EC%3A1.1.1.72","glycerol dehydrogenase (NADP(+))"],["EC%3A1.1.99.22","glycerol dehydrogenase (acceptor)"],["EC%3A2.4.1.332","1,2-alpha-glucosylglycerol phosphorylase"]]},{"id":"GO:0006629","l":"lipid metabolic process","na":5,"nb":81,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"]],"b":[["ComplexPortal%3ACPX-1381","NVJ1-VAC8 nucleus-vacuole junction complex"],["GO%3A0046485","ether lipid metabolic process"],["GO%3A1901568","fatty acid derivative metabolic process"],["GO%3A0006631","fatty acid metabolic process"],["GO%3A0046486","glycerolipid metabolic process"],["GO%3A0006720","isoprenoid metabolic process"]]},{"id":"GO:0009236","l":"cobalamin biosynthetic process","na":5,"nb":75,"a":[["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["GO%3A0009236","cobalamin biosynthetic process"],["proteintraitsmech%3ASEED_SUBSYSTEM_Cobalamin_synthesis","Cobalamin synthesis"],["NCBIfam%3ATIGR02476","5,6-dimethylbenzimidazole synthase"],["NCBIfam%3ANF011580","adenosylcobalamin/alpha-ribazole phosphatase"],["NCBIfam%3ANF014685","adenosylcobinamide-GDP ribazoletransferase"],["NCBIfam%3ATIGR00317","adenosylcobinamide-GDP ribazoletransferase"]]},{"id":"GO:0006935","l":"chemotaxis","na":5,"nb":64,"a":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["SynCom_MetG2_Rhizobacteria_Sugarcane_Stress_Resilience.html","SynCom MetG2 Rhizobacteria Sugarcane Stress Resilience"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"],["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009454","aerotaxis"]]},{"id":"GO:0006635","l":"fatty acid beta-oxidation","na":5,"nb":32,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["ComplexPortal%3ACPX-3964","fadBA fatty acid oxidation complex, aerobic conditions"],["ComplexPortal%3ACPX-3966","fadJI fatty acid oxidation complex, anaerobic conditions"],["ComplexPortal%3ACPX-6245","Mitochondrial trifunctional enzyme complex"],["GO%3A0006635","fatty acid beta-oxidation"],["GO%3A0033539","fatty acid beta-oxidation using acyl-CoA dehydrogenase"],["GO%3A0033540","fatty acid beta-oxidation using acyl-CoA oxidase"]]},{"id":"GO:0009060","l":"aerobic respiration","na":5,"nb":25,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Soil_CPR_Nanoarchaea_Rare_Biosphere_Community.html","Soil CPR Bacteria and Nanoarchaea Rare-Biosphere Community"]],"b":[["ComplexPortal%3ACPX-266","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-577","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-319","Trimethylamine-N-oxide reductase TorAC complex"],["GO%3A0019646","aerobic electron transport chain"],["GO%3A0009060","aerobic respiration"],["GO%3A0019409","aerobic respiration, using ammonia as electron donor"]]},{"id":"GO:0005986","l":"sucrose biosynthetic process","na":7,"nb":5,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"],["Synechococcus_Bacillus_SPC.html","Synechococcus-Bacillus Synthetic Photosynthetic Consortium"],["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"],["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"],["Synechococcus_Saccharomyces_SPC.html","Synechococcus-Saccharomyces Synthetic Photosynthetic Consortium"]],"b":[["GO%3A0005986","sucrose biosynthetic process"],["NCBIfam%3ANF020061","Sucrose-6-phosphate phosphohydrolase C-terminal"],["NCBIfam%3ATIGR01485","sucrose-phosphate phosphatase"],["InterPro%3AIPR013679","Sucrose-phosphatase, C-terminal"],["Pfam%3APF08472","Sucrose-6-phosphate phosphohydrolase C-terminal"]]},{"id":"CHEBI:18310","l":"alkane","na":5,"nb":5,"a":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"]],"b":[["EC%3A4.99.1.2","alkylmercury lyase"],["RHEA%3A18777","an alkylmercury + H(+) = an alkane + Hg(2+)"],["MCSA%3A297","alkylmercury lyase"],["MCSA%3A248","chloride peroxidase (cofactor free)"],["MCSA%3A250","chloride peroxidase (heme dependent)"]]},{"id":"CHEBI:15377","l":"water","na":4,"nb":9376,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["EC%3A1.1.1.115","ribose 1-dehydrogenase (NADP(+))"],["EC%3A1.1.1.132","GDP-mannose 6-dehydrogenase"],["EC%3A1.1.1.136","UDP-N-acetylglucosamine 6-dehydrogenase"],["EC%3A1.1.1.186","dTDP-galactose 6-dehydrogenase"],["EC%3A1.1.1.192","long-chain-alcohol dehydrogenase"],["EC%3A1.1.1.205","IMP dehydrogenase"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":4,"nb":680,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16240","requires hydrogen peroxide"],["EC%3A1.1.3.10","pyranose oxidase"],["EC%3A1.1.3.11","L-sorbose oxidase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.3.13","alcohol oxidase"],["EC%3A1.1.3.15","(S)-2-hydroxy-acid oxidase"]]},{"id":"GO:0006952","l":"defense response","na":4,"nb":62,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["ComplexPortal%3ACPX-2833","Camalexin biosynthetic metabolon complex"],["ComplexPortal%3ACPX-25769","TAP antigen peptide transporter complex"],["GO%3A0002209","behavioral defense response"],["GO%3A0006968","cellular defense response"],["GO%3A0052542","defense response by callose deposition"],["GO%3A0052482","defense response by cell wall thickening"]]},{"id":"GO:0008610","l":"lipid biosynthetic process","na":4,"nb":61,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"],["Yarrowia_lipolytica_Division_of_Labor_Lipid_Consortium.html","Yarrowia lipolytica Division-of-Labor Lipid Consortium"]],"b":[["GO%3A1900557","emericellamide biosynthetic process"],["GO%3A0008611","ether lipid biosynthetic process"],["GO%3A0006633","fatty acid biosynthetic process"],["GO%3A1901570","fatty acid derivative biosynthetic process"],["GO%3A0045017","glycerolipid biosynthetic process"],["GO%3A0009247","glycolipid biosynthetic process"]]},{"id":"CHEBI:16199","l":"urea","na":4,"nb":48,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["EC%3A3.5.1.5","urease"],["EC%3A3.5.1.95","N-malonylurea hydrolase"],["EC%3A3.5.3.1","arginase"],["EC%3A3.5.3.10","D-arginase"],["EC%3A3.5.3.11","agmatinase"],["EC%3A3.5.3.14","amidinoaspartase"]]},{"id":"CHEBI:29105","l":"zinc(2+)","na":4,"nb":20,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29105","requires zinc(2+)"],["EC%3A7.2.2.12","P-type Zn(2+) transporter"],["EC%3A7.2.2.20","ABC-type Zn(2+) transporter"],["RHEA%3A62264","selenite(out) + Zn(2+)(out) + hydrogencarbonate(out) = selenite(in) + Zn(2+)(in) + hydrogencarbonate(in)"],["RHEA%3A72627","Zn(2+)(in) + 2 H(+)(out) = Zn(2+)(out) + 2 H(+)(in)"],["RHEA%3A20621","Zn(2+)(in) + ATP + H2O = Zn(2+)(out) + ADP + phosphate + H(+)"]]},{"id":"GO:0044003","l":"symbiont-mediated perturbation of host process","na":4,"nb":20,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"]],"b":[["GO%3A0140418","effector-mediated perturbation of host process by symbiont"],["GO%3A0098676","symbiont-mediated modulation of host virulence"],["GO%3A0044068","symbiont-mediated perturbation of host cellular process"],["GO%3A0052031","symbiont-mediated perturbation of host defense response"],["GO%3A0044003","symbiont-mediated perturbation of host process"],["GO%3A0033635","symbiont-mediated perturbation of host response to abiotic stimulus"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":4,"nb":19,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["Pfam%3APF03306","Alpha-acetolactate decarboxylase"],["Pfam%3APF22208","Cas_Csm6 CARF domain"],["Pfam%3APF09659","Cas_Csm6 HEPN domain"],["Pfam%3APF22335","Cas10/Cmr2, second palm domain"],["Pfam%3APF18395","Cas3 C-terminal domain"],["Pfam%3APF18019","Cas3, HD domain"]]},{"id":"CHEBI:16899","l":"D-mannitol","na":4,"nb":17,"a":[["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["EC%3A1.1.1.138","mannitol 2-dehydrogenase (NADP(+))"],["EC%3A1.1.1.255","mannitol dehydrogenase"],["EC%3A1.1.1.67","mannitol 2-dehydrogenase"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.3.40","D-mannitol oxidase"],["EC%3A2.7.1.197","protein-N(pi)-phosphohistidine--D-mannitol phosphotransferase"]]},{"id":"GO:0019333","l":"denitrification pathway","na":13,"nb":4,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"]],"b":[["GO%3A0019333","denitrification pathway"],["NCBIfam%3ATIGR02161","periplasmic nitrate (or nitrite) reductase c-type cytochrome, NapC/NirT family"],["NCBIfam%3ATIGR04244","TAT-dependent nitrous-oxide reductase"],["NCBIfam%3ATIGR04246","Sec-dependent nitrous-oxide reductase"]]},{"id":"GO:0019543","l":"propionate catabolic process","na":4,"nb":11,"a":[["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["GO%3A0019543","propionate catabolic process"],["NCBIfam%3ATIGR02334","2-methylaconitate cis-trans isomerase PrpF"],["NCBIfam%3ATIGR02330","2-methylcitrate dehydratase"],["NCBIfam%3ANF006943","bifunctional 2-methylcitrate dehydratase/aconitate hydratase"],["NCBIfam%3ANF009006","bifunctional 2-methylcitrate synthase/citrate synthase"],["NCBIfam%3ATIGR02333","Fe/S-dependent 2-methylisocitrate dehydratase AcnD"]]},{"id":"CHEBI:48775","l":"cadmium(2+)","na":4,"nb":9,"a":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Meghalaya_Bacillus_Consortia_A22ED9.html","Meghalaya Bacillus Consortia-A22ED9"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["SynCom_Pseudomonas_Rahnella_Artemisia_Phytoremediation.html","Pseudomonas-Rahnella native rhizosphere SynCom for Artemisia argyi phytoremediation"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_48775","requires cadmium(2+)"],["EC%3A7.2.2.2","ABC-type Cd(2+) transporter"],["EC%3A7.2.2.21","Cd(2+)-exporting ATPase"],["RHEA%3A12132","Cd(2+)(in) + ATP + H2O = Cd(2+)(out) + ADP + phosphate + H(+)"],["RHEA%3A28707","Cd(2+)(in) = Cd(2+)(out)"],["RHEA%3A28739","Cd(2+)(in) + H(+)(out) = Cd(2+)(out) + H(+)(in)"]]},{"id":"CHEBI:17029","l":"chitin","na":4,"nb":8,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]],"b":[["EC%3A2.4.1.16","chitin synthase"],["EC%3A3.5.1.41","chitin deacetylase"],["RHEA%3A85463","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-1)-N-acetyl-alpha-D-glucosamine"],["RHEA%3A50672","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-2) + N,N'-diacetylchitobiose"],["RHEA%3A85003","[(1->4)-N-acetyl-beta-D-glucosaminyl](n)-N-acetyl-alpha-D-glucosamine + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n) + N-acetyl-alpha-D-glucosamine"],["RHEA%3A10464","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + n H2O = chitosan + n acetate"]]},{"id":"CHEBI:30411","l":"cobalamin","na":8,"nb":4,"a":[["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_30411","requires cobalamin"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.A.54","The Lysosomal Cobalamin (B12) Transporter (L-B12T) Family"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]]},{"id":"CHEBI:64709","l":"organic acid","na":7,"nb":4,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["TCDB%3A2.A.28","The Bile Acid:Na+ Symporter (BASS) Family"],["TCDB%3A2.A.23","The Dicarboxylate/Amino Acid:Cation (Na+ or H+) Symporter (DAACS) Family"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.25","The Outer Membrane Porin (Opr) Family"]]},{"id":"CHEBI:28509","l":"chloroethene","na":6,"nb":4,"a":[["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["RHEA%3A68000","1,1-dichloroethene + AH2 = chloroethene + chloride + A + H(+)"],["RHEA%3A68004","chloroethene + AH2 = ethene + chloride + A + H(+)"],["RHEA%3A83555","chloroethene + reduced [NADPH--hemoprotein reductase] + O2 = chloroethylene oxide + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A67996","(Z)-1,2-dichloroethene + AH2 = chloroethene + chloride + A + H(+)"]]},{"id":"GO:1903457","l":"lactate catabolic process","na":6,"nb":4,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["GO%3A1990484","aerobic lactate catabolic process"],["GO%3A1990485","anaerobic lactate catabolic process"],["GO%3A1903457","lactate catabolic process"],["NCBIfam%3ANF049975","D-2-hydroxyglutarate dehydrogenase YdiJ"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":4,"nb":6,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF10779","Haemolysin XhlA"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF08181","DegQ (SacQ) family"],["Pfam%3APF08057","Erythromycin resistance leader peptide"],["Pfam%3APF14867","Lantibiotic alpha"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":4,"nb":6,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["Pfam%3APF16376","N-terminal domain of fragilysin"],["TED%3AAF-A0A412XR06-F1-model_v4_TED03","TED novel fold AF-A0A412XR06-F1-model_v4_TED03"],["TED%3AAF-A0A4V1EUI2-F1-model_v4_TED02","TED novel fold AF-A0A4V1EUI2-F1-model_v4_TED02"],["TED%3AAF-A0A5C6IXH5-F1-model_v4_TED01","TED novel fold AF-A0A5C6IXH5-F1-model_v4_TED01"],["TED%3AAF-A0A5C6L6G9-F1-model_v4_TED02","TED novel fold AF-A0A5C6L6G9-F1-model_v4_TED02"],["TED%3AAF-A0A642KY52-F1-model_v4_TED01","TED novel fold AF-A0A642KY52-F1-model_v4_TED01"]]},{"id":"CHEBI:16670","l":"peptide","na":4,"nb":5,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A9.B.46","The Staphylococcus aureus Putative Quorum Sensing Peptide Exporter, AgrB (AgrB) Family"],["TCDB%3A3.A.25","The Symbiont-specific ERAD-like Machinery (SELMA) Family"],["proteintraitsmech%3ABIOLIP_PEPTIDE","peptide-binding site"]]},{"id":"NCBITaxon:5544","l":"Trichoderma harzianum","na":5,"nb":4,"a":[["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"],["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"],["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["Pfam%3APF00840","Glycosyl hydrolase family 7"],["Pfam%3APF12708","Rhamnogalacturonase A/epimerase, pectate lyase-like"],["TED%3AAF-A0A0F9XDU3-F1-model_v4_TED01","TED novel fold AF-A0A0F9XDU3-F1-model_v4_TED01"],["TED%3AAF-A0A0G0ASL4-F1-model_v4_TED01","TED novel fold AF-A0A0G0ASL4-F1-model_v4_TED01"]]},{"id":"CHEBI:18154","l":"polysaccharide","na":4,"nb":4,"a":[["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Wollastonite_Ramichloridium_Talaromyces_Fungal_Consortium.html","Wollastonite Ramichloridium-Talaromyces Fungal Consortium"]],"b":[["TCDB%3A9.B.97","The Acyltransferase-3/Putative Acetyl-CoA Transporter (AT3AT) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.18","The Outer Membrane Auxiliary (OMA) Protein Family"]]},{"id":"GO:0019541","l":"propionate metabolic process","na":4,"nb":4,"a":[["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["GO%3A0019542","propionate biosynthetic process"],["GO%3A0019543","propionate catabolic process"],["GO%3A0019541","propionate metabolic process"],["GO%3A0019657","pyruvate fermentation to propionate"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":3,"nb":212,"a":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["EC%3A1.1.1.244","methanol dehydrogenase"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.99.37","methanol dehydrogenase (nicotinoprotein)"],["EC%3A1.13.11.94","4-vinylguaiacol dioxygenase"],["EC%3A1.14.11.27","[histone H3]-dimethyl-L-lysine(36) demethylase"]]},{"id":"GO:0006520","l":"amino acid metabolic process","na":3,"nb":155,"a":[["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["GO%3A0043038","amino acid activation"],["GO%3A0008652","amino acid biosynthetic process"],["GO%3A0009063","amino acid catabolic process"],["GO%3A0006520","amino acid metabolic process"],["GO%3A0006525","arginine metabolic process"],["GO%3A0009072","aromatic amino acid metabolic process"]]},{"id":"CHEBI:17359","l":"sulfite","na":3,"nb":109,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"]],"b":[["EC%3A1.13.11.18","persulfide dioxygenase"],["EC%3A1.13.11.55","sulfur oxygenase/reductase"],["EC%3A1.14.11.17","taurine dioxygenase"],["EC%3A1.14.12.8","4-sulfobenzoate 3,4-dioxygenase"],["EC%3A1.14.13.111","methanesulfonate monooxygenase (NADH)"],["EC%3A1.14.14.181","sulfoquinovose monooxygenase"]]},{"id":"GO:0007155","l":"cell adhesion","na":3,"nb":102,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"]],"b":[["ComplexPortal%3ACPX-12912","BCAR1-CRK-SH2D3C, focal adhesion regulator complex"],["ComplexPortal%3ACPX-1737","Collagen type VII trimer"],["ComplexPortal%3ACPX-2966","Collagen type VII trimer"],["ComplexPortal%3ACPX-2855","Fimbrial Tip Complex FimFGH"],["ComplexPortal%3ACPX-450","Multimerin-2 complex"],["ComplexPortal%3ACPX-451","Multimerin-2 complex"]]},{"id":"GO:0008652","l":"amino acid biosynthetic process","na":3,"nb":69,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"]],"b":[["GO%3A0008153","4-aminobenzoate biosynthetic process"],["GO%3A0006523","alanine biosynthetic process"],["GO%3A0008652","amino acid biosynthetic process"],["GO%3A0043102","amino acid salvage"],["GO%3A0019483","beta-alanine biosynthetic process"],["GO%3A0035499","carnosine biosynthetic process"]]},{"id":"GO:0030001","l":"metal ion transport","na":3,"nb":66,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["GO%3A0015690","aluminum cation transport"],["GO%3A0006816","calcium ion transport"],["GO%3A0015692","lead ion transport"],["GO%3A0010351","lithium ion transport"],["GO%3A0015693","magnesium ion transport"],["GO%3A0030001","metal ion transport"]]},{"id":"CHEBI:29035","l":"manganese(2+)","na":3,"nb":44,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29035","requires manganese(2+)"],["EC%3A1.11.1.13","manganese peroxidase"],["EC%3A1.11.1.16","versatile peroxidase"],["EC%3A1.16.3.3","manganese oxidase"],["EC%3A7.2.2.22","P-type Mn(2+) transporter"],["EC%3A7.2.2.5","ABC-type Mn(2+) transporter"]]},{"id":"GO:0010467","l":"gene expression","na":3,"nb":41,"a":[["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["GO%3A0001816","cytokine production"],["GO%3A0010467","gene expression"],["GO%3A1901148","gene expression involved in extracellular matrix organization"],["GO%3A0140053","mitochondrial gene expression"],["GO%3A0036162","oxytocin production"],["GO%3A0140899","plastid gene expression"]]},{"id":"CHEBI:17750","l":"glycine betaine","na":3,"nb":33,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["EC%3A1.1.3.17","choline oxidase"],["EC%3A1.13.11.90","[1-hydroxy-2-(trimethylamino)ethyl]phosphonate dioxygenase (glycine- betaine-forming)"],["EC%3A1.14.13.251","glycine betaine monooxygenase"],["EC%3A1.2.1.8","betaine-aldehyde dehydrogenase"],["EC%3A1.21.4.4","betaine reductase"],["EC%3A2.1.1.157","sarcosine/dimethylglycine N-methyltransferase"]]},{"id":"CHEBI:29103","l":"potassium(1+)","na":3,"nb":32,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29103","requires potassium(1+)"],["EC%3A7.2.2.13","Na(+)/K(+)-exchanging ATPase"],["EC%3A7.2.2.19","H(+)/K(+)-exchanging ATPase"],["EC%3A7.2.2.6","P-type K(+) transporter"],["RHEA%3A18353","2 K(+)(out) + 3 Na(+)(in) + ATP + H2O = 2 K(+)(in) + 3 Na(+)(out) + ADP + phosphate + H(+)"],["RHEA%3A69967","Ca(2+)(out) + K(+)(out) + 4 Na(+)(in) = Ca(2+)(in) + K(+)(in) + 4 Na(+)(out)"]]},{"id":"NCBITaxon:3055","l":"Chlamydomonas reinhardtii","na":3,"nb":27,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]],"b":[["Pfam%3APF01333","Apocytochrome F, C-terminal"],["Pfam%3APF16639","Apocytochrome F, N-terminal"],["Pfam%3APF00430","ATP synthase B/B' CF(0)"],["Pfam%3APF00401","ATP synthase, Delta/Epsilon chain, long alpha-helix domain"],["Pfam%3APF21771","CFAP58 central coiled coil"],["Pfam%3APF27956","CFAP99 V-shaped coiled-coil domain"]]},{"id":"GO:0031347","l":"regulation of defense response","na":3,"nb":25,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"],["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["GO%3A0031348","negative regulation of defense response"],["GO%3A0031349","positive regulation of defense response"],["GO%3A0002759","regulation of antimicrobial humoral response"],["GO%3A2000822","regulation of behavioral fear response"],["GO%3A0010185","regulation of cellular defense response"],["GO%3A2000071","regulation of defense response by callose deposition"]]},{"id":"GO:0000162","l":"L-tryptophan biosynthetic process","na":3,"nb":22,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"]],"b":[["ComplexPortal%3ACPX-1850","Anthranilate synthase complex"],["ComplexPortal%3ACPX-4783","Anthranilate synthase complex"],["ComplexPortal%3ACPX-3446","TrpAB tryptophan synthase complex"],["GO%3A0000162","L-tryptophan biosynthetic process"],["NCBIfam%3ANF010081","anthranilate synthase component I"],["NCBIfam%3ANF010086","anthranilate synthase component I"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":3,"nb":21,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29108","requires calcium(2+)"],["EC%3A1.13.12.24","calcium-regulated photoprotein"],["EC%3A7.2.2.10","P-type Ca(2+) transporter"],["RHEA%3A72631","3 Li(+)(out) + Ca(2+)(in) = 3 Li(+)(in) + Ca(2+)(out)"],["RHEA%3A55884","[aequorin] + 3 Ca(2+) = [aequorin]--dioxetanone"],["RHEA%3A55888","[aequorin]--dioxetanone = excited state-[aequorin] + CO2"]]},{"id":"CHEBI:17716","l":"lactose","na":3,"nb":20,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"]],"b":[["EC%3A2.4.1.22","lactose synthase"],["EC%3A2.7.1.207","protein-N(pi)-phosphohistidine--lactose phosphotransferase"],["EC%3A3.2.1.108","lactase"],["EC%3A3.2.1.140","lacto-N-biosidase"],["EC%3A3.2.1.227","N-acetyllactosaminidase"],["RHEA%3A86923","a beta-D-Gal-(1->4)-beta-D-Glc-(1<->1)-Cer(d18:1(4E)) + H2O = lactose + an N-acylsphing-4-enine"]]},{"id":"GO:0045088","l":"regulation of innate immune response","na":3,"nb":19,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["GO%3A0045824","negative regulation of innate immune response"],["GO%3A0045089","positive regulation of innate immune response"],["GO%3A1904248","regulation of age-related resistance"],["GO%3A1905034","regulation of antifungal innate immune response"],["GO%3A0030451","regulation of complement activation, alternative pathway"],["GO%3A0001868","regulation of complement activation, lectin pathway"]]},{"id":"CHEBI:48828","l":"cobalt(2+)","na":3,"nb":16,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_48828","requires cobalt(2+)"],["EC%3A1.16.99.1","[Co(II) methylated amine-specific corrinoid protein] reductase"],["EC%3A4.99.1.3","sirohydrochlorin cobaltochelatase"],["EC%3A6.6.1.2","cobaltochelatase"],["RHEA%3A65832","2 Co(II)-[dimethylamine-specific corrinoid protein] + AH2 + ATP + H2O = 2 Co(I)-[dimethylamine-specific corrinoid protein] + A + ADP + phosphate + 3 H(+)"],["RHEA%3A65816","2 Co(II)-[methylamine-specific corrinoid protein] + AH2 + ATP + H2O = 2 Co(I)-[methylamine-specific corrinoid protein] + A + ADP + phosphate + 3 H(+)"]]},{"id":"CHEBI:17045","l":"dinitrogen oxide","na":3,"nb":13,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"]],"b":[["EC%3A1.7.1.14","nitric oxide reductase [NAD(P)(+), nitrous oxide-forming]"],["EC%3A1.7.2.4","nitrous-oxide reductase"],["EC%3A1.7.2.5","nitric-oxide reductase (cytochrome c)"],["EC%3A1.7.5.2","nitric oxide reductase (menaquinol)"],["RHEA%3A30215","a menaquinol + 2 nitric oxide = nitrous oxide + a menaquinone + H2O"],["RHEA%3A43108","N2 + 2 Fe(III)-[cytochrome c] + H2O = nitrous oxide + 2 Fe(II)-[cytochrome c] + 2 H(+)"]]},{"id":"CHEBI:26271","l":"proline","na":3,"nb":12,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.15","The Betaine/Carnitine/Choline Transporter (BCCT) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"]]},{"id":"GO:0006083","l":"acetate metabolic process","na":3,"nb":12,"a":[["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["GO%3A0019413","acetate biosynthetic process"],["GO%3A0045733","acetate catabolic process"],["GO%3A0006083","acetate metabolic process"],["GO%3A0045122","aflatoxin biosynthetic process"],["GO%3A0019658","bifid shunt"],["GO%3A0019475","L-lysine fermentation"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":11,"nb":3,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["Pfam%3APF14864","Alkyl sulfatase C-terminal"],["Pfam%3APF13816","Haem-containing dehydratase"],["Pfam%3APF14863","Alkyl sulfatase dimerisation"]]},{"id":"GO:0019329","l":"ammonia oxidation","na":10,"nb":3,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"]],"b":[["GO%3A0019409","aerobic respiration, using ammonia as electron donor"],["GO%3A0019329","ammonia oxidation"],["GO%3A0019331","anaerobic respiration, using ammonium as electron donor"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":3,"nb":10,"a":[["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["Pfam%3APF27445","Adaptation to cold protein A"],["Pfam%3APF27450","AtcB C-terminal domain"],["Pfam%3APF27486","AtcB N-terminal domain"],["Pfam%3APF02464","CinA C-terminal domain"],["Pfam%3APF13657","HipA N-terminal domain"],["Pfam%3APF01934","Ribonuclease HepT-like"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":3,"nb":10,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF09081","Glucan 1,4-alpha-maltotetraohydrolase, domain C"],["Pfam%3APF09459","Ethylbenzene dehydrogenase"],["Pfam%3APF08406","CbbQ/NirQ/NorQ C-terminal"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"],["Pfam%3APF18793","Nitrous oxide reductase propeller repeat 2"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":3,"nb":10,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["Pfam%3APF17433","Glycosyl hydrolase family 49 N-terminal Ig-like domain"],["PROSITE%3APS00820","Glucoamylase active site region signature"],["PROSITE%3APS00920","Nitrilases / cyanide hydratase signature 1"],["PROSITE%3APS00502","Polygalacturonase active site"],["Pfam%3APF18841","Beta solenoid repeat from Dextranase"],["Pfam%3APF03718","Glycosyl hydrolase family 49"]]},{"id":"NCBITaxon:853","l":"Faecalibacterium prausnitzii","na":3,"nb":10,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"]],"b":[["TED%3AAF-A0A2A7AJ69-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A7AJ69-F1-model_v4_TED01"],["TED%3AAF-A0A329UNG0-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A329UNG0-F1-model_v4_TED05"],["TED%3AAF-A0A3F3JVN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3F3JVN3-F1-model_v4_TED01"],["TED%3AAF-A0A564SWB8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A564SWB8-F1-model_v4_TED02"],["TED%3AAF-A0A173SIF7-F1-model_v4_TED01","TED novel fold AF-A0A173SIF7-F1-model_v4_TED01"],["TED%3AAF-A0A173WYP6-F1-model_v4_TED01","TED novel fold AF-A0A173WYP6-F1-model_v4_TED01"]]},{"id":"CHEBI:16602","l":"trichloroethene","na":9,"nb":3,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["EC%3A1.21.99.5","tetrachloroethene reductive dehalogenase"],["RHEA%3A67992","trichloroethene + AH2 = (Z)-1,2-dichloroethene + chloride + A + H(+)"],["RHEA%3A20353","trichloroethene + chloride + A + H(+) = tetrachloroethene + AH2"]]},{"id":"CHEBI:18367","l":"phosphate(3-)","na":9,"nb":3,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["proteintraitsmech%3ABIOLIP_PO4","PO4-binding site"]]},{"id":"CHEBI:87393","l":"hexan-1-ol","na":3,"nb":9,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["RHEA%3A65480","2-methylbutanoyl-CoA + hexan-1-ol = hexyl 2-methylbutanoate + CoA"],["RHEA%3A79331","hexan-1-ol + 2 Fe(III)-[cytochrome c] = hexanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A65460","hexan-1-ol + acetyl-CoA = hexyl acetate + CoA"],["RHEA%3A65444","hexan-1-ol + butanoyl-CoA = hexyl butanoate + CoA"],["RHEA%3A65484","hexan-1-ol + hexanoyl-CoA = hexyl hexanoate + CoA"],["RHEA%3A60972","hexan-1-ol + NAD(+) = hexanal + NADH + H(+)"]]},{"id":"GO:1990748","l":"cellular detoxification","na":3,"nb":9,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["GO%3A1990748","cellular detoxification"],["GO%3A0140977","cellular detoxification of acetone"],["GO%3A0110095","cellular detoxification of aldehyde"],["GO%3A0140114","cellular detoxification of fluoride"],["GO%3A0140961","cellular detoxification of metal ion"],["GO%3A0070458","cellular detoxification of nitrogen compound"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":3,"nb":8,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["Pfam%3APF01890","Cobalamin synthesis G C-terminus"],["Pfam%3APF11761","Cobalamin biosynthesis central region"],["Pfam%3APF11760","Cobalamin synthesis G N-terminal"],["Pfam%3APF02570","Precorrin-8X methylmutase"],["PROSITE%3APS00304","Small, acid-soluble spore proteins, alpha/beta type, signature 1"],["PROSITE%3APS00684","Small, acid-soluble spore proteins, alpha/beta type, signature 2"]]},{"id":"CHEBI:30742","l":"ethylene glycol","na":3,"nb":7,"a":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"]],"b":[["EC%3A3.1.1.102","mono(ethylene terephthalate) hydrolase"],["RHEA%3A42648","(2,5-ethylene furandicarboxylate)(n) + 2 H2O = (2,5-ethylene furandicarboxylate)(n-1) + 2,5-dicarboxyfuran + ethylene glycol + 2 H(+)"],["RHEA%3A49532","4-[(2-hydroxyethoxy)carbonyl]benzoate + H2O = terephthalate + ethylene glycol + H(+)"],["RHEA%3A80759","bis(2-hydroxyethyl) terephthalate + H2O = 4-[(2-hydroxyethoxy)carbonyl]benzoate + ethylene glycol + H(+)"],["RHEA%3A27630","ethylene glycol + NAD(+) = glycolaldehyde + NADH + H(+)"],["MCSA%3A847","epoxide hydrolase"]]},{"id":"NCBITaxon:28116","l":"Bacteroides ovatus","na":3,"nb":7,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["TED%3AAF-A0A515J030-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A515J030-F1-model_v4_TED01"],["TED%3AAF-A0A5M5C3M7-F1-model_v4_TED01","TED novel fold AF-A0A5M5C3M7-F1-model_v4_TED01"],["TED%3AAF-A0A641PL20-F1-model_v4_TED01","TED novel fold AF-A0A641PL20-F1-model_v4_TED01"],["TED%3AAF-A0A641V3P9-F1-model_v4_TED03","TED novel fold AF-A0A641V3P9-F1-model_v4_TED03"],["TED%3AAF-A0A641VT79-F1-model_v4_TED01","TED novel fold AF-A0A641VT79-F1-model_v4_TED01"],["TED%3AAF-A0A642C648-F1-model_v4_TED01","TED novel fold AF-A0A642C648-F1-model_v4_TED01"]]},{"id":"CHEBI:15890","l":"5,6-dimethylbenzimidazole","na":3,"nb":6,"a":[["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["EC%3A1.13.11.79","aerobic 5,6-dimethylbenzimidazole synthase"],["EC%3A2.4.2.21","nicotinate-nucleotide--dimethylbenzimidazole phosphoribosyltransferase"],["RHEA%3A11196","5,6-dimethylbenzimidazole + nicotinate beta-D-ribonucleotide = alpha-ribazole 5'-phosphate + nicotinate + H(+)"],["RHEA%3A27345","FMNH2 + O2 = dialurate + 5,6-dimethylbenzimidazole + D-erythrose 4-phosphate + H(+)"],["MCSA%3A79","nicotinate-nucleotide-dimethylbenzimidazole phosphoribosyltransferase"],["proteintraitsmech%3ABIOLIP_DMD","DMD-binding site"]]},{"id":"CHEBI:27266","l":"valine","na":3,"nb":6,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.26","The Branched Chain Amino Acid:Cation Symporter (LIVCS) Family"],["TCDB%3A2.A.78","The Branched Chain Amino Acid Exporter (LIV-E) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:55474","l":"N-acyl-L-homoserine lactone","na":3,"nb":6,"a":[["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["EC%3A2.3.1.184","acyl-homoserine-lactone synthase"],["EC%3A3.1.1.81","quorum-quenching N-acyl-homoserine lactonase"],["EC%3A3.5.1.97","acyl-homoserine-lactone acylase"],["RHEA%3A10096","a fatty acyl-[ACP] + S-adenosyl-L-methionine = an N-acyl-L-homoserine lactone + S-methyl-5'-thioadenosine + holo-[ACP] + H(+)"],["RHEA%3A22576","an N-acyl-L-homoserine lactone + H2O = an N-acyl-L-homoserine + H(+)"],["RHEA%3A18937","an N-acyl-L-homoserine lactone + H2O = L-homoserine lactone + a carboxylate"]]},{"id":"NCBITaxon:1390","l":"Bacillus amyloliquefaciens","na":3,"nb":6,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]],"b":[["Pfam%3APF02923","Restriction endonuclease BamHI"],["Pfam%3APF01337","Barstar (barnase inhibitor)"],["Pfam%3APF22148","Fervidolysin N-terminal prodomain"],["PROSITE%3APS00093","N-4 cytosine-specific DNA methylases signature"],["PROSITE%3APS01334","Pyrrolidone-carboxylate peptidase cysteine active site"],["PROSITE%3APS01333","Pyrrolidone-carboxylate peptidase glutamic acid active site"]]},{"id":"CHEBI:17015","l":"riboflavin","na":5,"nb":3,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17015","requires riboflavin"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_RBF","RBF-binding site"]]},{"id":"CHEBI:26672","l":"siderophore","na":3,"nb":5,"a":[["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_26672","siderophore cofactor class"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.17","The Outer Membrane Factor (OMF) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]]},{"id":"GO:0005987","l":"sucrose catabolic process","na":5,"nb":3,"a":[["Synechococcus_Bacillus_SPC.html","Synechococcus-Bacillus Synthetic Photosynthetic Consortium"],["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"],["Synechococcus_Saccharomyces_SPC.html","Synechococcus-Saccharomyces Synthetic Photosynthetic Consortium"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["GO%3A0061704","glycolytic process from sucrose"],["GO%3A0005987","sucrose catabolic process"],["NCBIfam%3ANF006957","fructokinase"]]},{"id":"GO:0006766","l":"vitamin metabolic process","na":3,"nb":5,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["GO%3A0042816","vitamin B6 metabolic process"],["GO%3A0009110","vitamin biosynthetic process"],["GO%3A0009111","vitamin catabolic process"],["GO%3A0006766","vitamin metabolic process"],["Reactome%3AR-HSA-211916","Vitamins"]]},{"id":"GO:0009410","l":"response to xenobiotic stimulus","na":3,"nb":5,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["SkinCom_Synthetic_Skin_Community.html","SkinCom Synthetic Skin Community"]],"b":[["GO%3A0071466","cellular response to xenobiotic stimulus"],["GO%3A0009410","response to xenobiotic stimulus"],["NCBIfam%3ATIGR00957","multi drug resistance-associated protein (MRP)"],["NCBIfam%3ANF018181","R67 dihydrofolate reductase"],["Pfam%3APF06442","R67 dihydrofolate reductase"]]},{"id":"NCBITaxon:1667","l":"Arthrobacter sp.","na":3,"nb":5,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["Pfam%3APF14031","Putative serine dehydratase domain"],["Pfam%3APF02449","Beta-galactosidase"],["Pfam%3APF08533","Beta-galactosidase C-terminal domain"],["Pfam%3APF08532","Beta-galactosidase trimerisation domain"],["TED%3AAF-A0A3C2BWN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C2BWN3-F1-model_v4_TED01"]]},{"id":"CHEBI:17191","l":"L-isoleucine","na":3,"nb":4,"a":[["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"]],"b":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.26","The Branched Chain Amino Acid:Cation Symporter (LIVCS) Family"],["proteintraitsmech%3ABIOLIP_ILE","ILE-binding site"]]},{"id":"CHEBI:18237","l":"glutamic acid","na":4,"nb":3,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:72813","l":"exopolysaccharide","na":4,"nb":3,"a":[["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.18","The Outer Membrane Auxiliary (OMA) Protein Family"]]},{"id":"GO:0019386","l":"methanogenesis, from carbon dioxide","na":3,"nb":4,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Tropidoatractus_Magnetotacticus_Tripartite_Syntrophy.html","Tropidoatractus magnetotacticus Magnetotactic Ciliate Tripartite Syntrophy"]],"b":[["GO%3A0019386","methanogenesis, from carbon dioxide"],["NCBIfam%3ATIGR01723","5,10-methenyltetrahydromethanopterin hydrogenase"],["NCBIfam%3ATIGR01112","tetrahydromethanopterin S-methyltransferase subunit D"],["NCBIfam%3ATIGR01113","tetrahydromethanopterin S-methyltransferase subunit E"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":3,"nb":4,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF09711","CRISPR-associated protein (Cas_Csn2)"],["Pfam%3APF06308","23S rRNA methylastransferase leader peptide (ErmCL)"]]},{"id":"NCBITaxon:3076","l":"Chlorella sorokiniana","na":3,"nb":4,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Dairy_Wastewater_Algal_Cyanobacterial_Cultivation_Panel.html","Dairy Wastewater Algal-Cyanobacterial Cultivation Panel"],["SynCom_Chlorella_sorokiniana_Biogas_Slurry_Coupling_System.html","SynCom + Chlorella sorokiniana Biogas-slurry Coupling System"]],"b":[["TED%3AAF-A0A2P6TR54-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P6TR54-F1-model_v4_TED01"],["TED%3AAF-A0A2P6TVK6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P6TVK6-F1-model_v4_TED01"],["TED%3AAF-A0A2P6TZ25-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2P6TZ25-F1-model_v4_TED02"],["TED%3AAF-A0A2P6TLT0-F1-model_v4_TED05","TED novel fold AF-A0A2P6TLT0-F1-model_v4_TED05"]]},{"id":"NCBITaxon:33038","l":"Mediterraneibacter gnavus","na":4,"nb":3,"a":[["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Clostridial_isoDCA_Mini_Consortium.html","Clostridial isoDCA Mini Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["Pfam%3APF16874","Glycosyl hydrolase family 36 C-terminal domain"],["Pfam%3APF16875","Glycosyl hydrolase family 36 N-terminal domain"],["Pfam%3APF04604","Type-A lantibiotic"]]},{"id":"CHEBI:16482","l":"naphthalene","na":3,"nb":3,"a":[["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"]],"b":[["EC%3A1.14.12.12","naphthalene 1,2-dioxygenase"],["RHEA%3A19173","naphthalene + NADH + O2 + H(+) = (1R,2S)-1,2-dihydronaphthalene-1,2-diol + NAD(+)"],["MCSA%3A130","naphthalene 1,2-dioxygenase"]]},{"id":"GO:0009110","l":"vitamin biosynthetic process","na":3,"nb":3,"a":[["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["GO%3A0042362","fat-soluble vitamin biosynthetic process"],["GO%3A0009110","vitamin biosynthetic process"],["GO%3A0042364","water-soluble vitamin biosynthetic process"]]},{"id":"GO:0098743","l":"cell aggregation","na":3,"nb":3,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["GO%3A0098630","aggregation of unicellular organisms"],["GO%3A0001502","cartilage condensation"],["GO%3A0098743","cell aggregation"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":3,"nb":3,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["Pfam%3APF03423","Carbohydrate binding domain (family 25)"],["Pfam%3APF03422","Carbohydrate binding module (family 6)"],["TED%3AAF-A0A7X5SGP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X5SGP7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:3702","l":"Arabidopsis thaliana","na":2,"nb":18772,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["EC%3A1.1.99.-","With other acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.14.11.-","With 2-oxoglutarate as one donor, and incorporation of one atom each of oxygen into both donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.14.-","With reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen"]]},{"id":"CHEBI:30031","l":"succinate(2-)","na":2,"nb":502,"a":[["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["EC%3A1.14.11.1","gamma-butyrobetaine dioxygenase"],["EC%3A1.14.11.10","pyrimidine-deoxynucleoside 1'-dioxygenase"],["EC%3A1.14.11.11","hyoscyamine (6S)-dioxygenase"],["EC%3A1.14.11.12","gibberellin-44 dioxygenase"],["EC%3A1.14.11.13","gibberellin 2beta-dioxygenase"],["EC%3A1.14.11.15","gibberellin 3beta-dioxygenase"]]},{"id":"GO:0010468","l":"regulation of gene expression","na":2,"nb":394,"a":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["ComplexPortal%3ACPX-1129","Atk-1/Akt-2/Sgk-1 protein kinase complex"],["ComplexPortal%3ACPX-5666","CCAAT-binding factor complex, nfya-1 variant"],["ComplexPortal%3ACPX-5667","CCAAT-binding factor complex, nfya-2 variant"],["ComplexPortal%3ACPX-4305","DHIC complex"],["ComplexPortal%3ACPX-3885","sir-2.1-ftt-2 complex"],["ComplexPortal%3ACPX-3886","sir-2.1-par-5 complex"]]},{"id":"CHEBI:4167","l":"D-glucopyranose","na":2,"nb":217,"a":[["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["EC%3A1.1.1.118","glucose 1-dehydrogenase (NAD(+))"],["EC%3A1.1.1.119","glucose 1-dehydrogenase (NADP(+))"],["EC%3A1.1.1.359","aldose 1-dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.1.360","glucose/galactose 1-dehydrogenase"],["EC%3A1.1.1.432","6-dehydroglucose reductase"],["EC%3A1.1.1.47","glucose 1-dehydrogenase [NAD(P)(+)]"]]},{"id":"CHEBI:17996","l":"chloride","na":2,"nb":196,"a":[["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17996","requires chloride"],["EC%3A1.11.2.2","myeloperoxidase"],["EC%3A1.13.11.49","chlorite O2-lyase"],["EC%3A1.14.12.13","2-halobenzoate 1,2-dioxygenase"],["EC%3A1.14.12.9","4-chlorophenylacetate 3,4-dioxygenase"],["EC%3A1.14.13.50","pentachlorophenol monooxygenase"]]},{"id":"GO:0016032","l":"viral process","na":2,"nb":113,"a":[["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"]],"b":[["GO%3A0075526","cap snatching"],["GO%3A0099015","degradation of host chromosome by virus"],["GO%3A0019043","establishment of viral latency"],["GO%3A0039674","exit of virus from host cell nucleus"],["GO%3A0039700","fusion of viral membrane with host outer nuclear membrane"],["GO%3A0075522","IRES-dependent viral translational initiation"]]},{"id":"GO:0006099","l":"tricarboxylic acid cycle","na":2,"nb":92,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["ComplexPortal%3ACPX-3921","2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-9044","Mitochondrial 2-oxoglutarate dehydrogenase complex,CG1544 variant"],["ComplexPortal%3ACPX-9043","Mitochondrial 2-oxoglutarate dehydrogenase complex, CG33791 variant"],["ComplexPortal%3ACPX-1293","Mitochondrial 2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-9061","Mitochondrial 2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-9042","Mitochondrial 2-oxoglutarate dehydrogenase complex, ODGH variant"]]},{"id":"GO:0009733","l":"response to auxin","na":2,"nb":89,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["ComplexPortal%3ACPX-1523","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK10"],["ComplexPortal%3ACPX-1524","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK11"],["ComplexPortal%3ACPX-1525","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK12"],["ComplexPortal%3ACPX-1526","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK13"],["ComplexPortal%3ACPX-1527","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK14"],["ComplexPortal%3ACPX-1528","SCF(TIR1) ubiquitin ligase complex, variant CUL1-RBX1A-ASK15"]]},{"id":"GO:0016053","l":"obsolete organic acid biosynthetic process","na":2,"nb":83,"a":[["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Wollastonite_Ramichloridium_Talaromyces_Fungal_Consortium.html","Wollastonite Ramichloridium-Talaromyces Fungal Consortium"]],"b":[["PANTHER%3APTHR43090","1-(5-PHOSPHORIBOSYL)-5-[(5-PHOSPHORIBOSYLAMINO)METHYLIDENEAMINO] IMIDAZOLE-4-CARBOXAMIDE ISOMERASE"],["PANTHER%3APTHR43699","3-DEHYDROQUINATE DEHYDRATASE"],["PANTHER%3APTHR42979","3-ISOPROPYLMALATE DEHYDROGENASE"],["PANTHER%3APTHR20881","3-METHYL-2-OXOBUTANOATE HYDROXYMETHYLTRANSFERASE"],["PANTHER%3APTHR46832","5'-METHYLTHIOADENOSINE/S-ADENOSYLHOMOCYSTEINE NUCLEOSIDASE"],["PANTHER%3APTHR31242","ACETOLACTATE SYNTHASE SMALL SUBUNIT, MITOCHONDRIAL"]]},{"id":"CHEBI:15354","l":"choline","na":2,"nb":78,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["EC%3A1.1.3.17","choline oxidase"],["EC%3A1.1.99.1","choline dehydrogenase"],["EC%3A1.14.15.7","choline monooxygenase"],["EC%3A2.3.1.6","choline O-acetyltransferase"],["EC%3A2.3.1.91","sinapoylglucose--choline O-sinapoyltransferase"],["EC%3A2.7.1.32","choline kinase"]]},{"id":"CHEBI:29806","l":"fumarate(2-)","na":2,"nb":76,"a":[["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["EC%3A1.3.1.6","fumarate reductase (NADH)"],["EC%3A1.3.2.4","fumarate reductase (cytochrome)"],["EC%3A1.3.4.1","fumarate reductase (CoM/CoB)"],["EC%3A1.3.5.1","succinate dehydrogenase"],["EC%3A1.3.98.1","dihydroorotate oxidase (fumarate)"],["EC%3A3.7.1.14","2-hydroxy-6-oxonona-2,4-dienedioate hydrolase"]]},{"id":"CHEBI:15422","l":"ATP","na":2,"nb":68,"a":[["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15422","requires ATP"],["ARO%3A3002628","aad(6)"],["ARO%3A3002601","aadA"],["ARO%3A3004692","aadA10"],["ARO%3A3002611","aadA11"],["ARO%3A3002612","aadA12"]]},{"id":"CHEBI:16947","l":"citrate(3-)","na":2,"nb":49,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["EC%3A2.3.3.1","citrate (Si)-synthase"],["EC%3A2.3.3.16","citrate synthase (unknown stereospecificity)"],["EC%3A2.3.3.3","citrate (Re)-synthase"],["EC%3A2.3.3.8","ATP citrate synthase"],["EC%3A2.8.3.10","citrate CoA-transferase"],["EC%3A4.1.3.6","citrate (pro-3S)-lyase"]]},{"id":"GO:0009063","l":"amino acid catabolic process","na":2,"nb":47,"a":[["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"]],"b":[["ComplexPortal%3ACPX-865","Electron transfer flavoprotein complex"],["ComplexPortal%3ACPX-2731","Mitochondrial electron transfer flavoprotein complex"],["GO%3A0042217","1-aminocyclopropane-1-carboxylate catabolic process"],["GO%3A0009063","amino acid catabolic process"],["GO%3A0019665","amino acid fermentation"],["GO%3A0019484","beta-alanine catabolic process"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":46,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF13166","AAA domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF27533","CapK C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"]]},{"id":"CHEBI:16480","l":"nitric oxide","na":2,"nb":43,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"]],"b":[["EC%3A1.14.12.17","nitric oxide dioxygenase"],["EC%3A1.14.13.39","nitric-oxide synthase (NADPH)"],["EC%3A1.14.14.47","nitric-oxide synthase (flavodoxin)"],["EC%3A1.14.15.41","L-tryptophan 4-nitrase"],["EC%3A1.14.15.42","L-tyrosine 3-nitrase"],["EC%3A1.7.1.14","nitric oxide reductase [NAD(P)(+), nitrous oxide-forming]"]]},{"id":"GO:0030163","l":"protein catabolic process","na":2,"nb":40,"a":[["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"]],"b":[["ComplexPortal%3ACPX-1655","i-AAA complex"],["ComplexPortal%3ACPX-1654","m-AAA protease complex"],["GO%3A0002077","acrosome matrix dispersal"],["GO%3A0061684","chaperone-mediated autophagy"],["GO%3A0007174","epidermal growth factor catabolic process"],["GO%3A0006516","glycoprotein catabolic process"]]},{"id":"GO:0019684","l":"photosynthesis, light reaction","na":2,"nb":39,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]],"b":[["GO%3A0019684","photosynthesis, light reaction"],["NCBIfam%3ANF058510","bifunctional rod-capping linker CpcD/ferredoxin--NADP reductase PetH"],["NCBIfam%3ATIGR01332","cytochrome b559 subunit alpha"],["NCBIfam%3ATIGR01333","cytochrome b559 subunit beta"],["NCBIfam%3ANF043009","cytochrome c-554 Puf2C"],["NCBIfam%3ANF040862","light-harvesting antenna LH1, beta subunit"]]},{"id":"GO:0006006","l":"glucose metabolic process","na":2,"nb":38,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["GO%3A0006094","gluconeogenesis"],["GO%3A0006007","glucose catabolic process"],["GO%3A0006006","glucose metabolic process"],["Reactome%3AR-HSA-70326","Glucose metabolism"],["NCBIfam%3ANF033735","ArsJ-associated glyceraldehyde-3-phosphate dehydrogenase"],["NCBIfam%3ANF045551","ATP-dependent glucokinase"]]},{"id":"GO:0008643","l":"carbohydrate transport","na":2,"nb":38,"a":[["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["ComplexPortal%3ACPX-5990","sgcABC sugar permease enzyme II complex"],["GO%3A0033231","carbohydrate export"],["GO%3A0034219","carbohydrate transmembrane transport"],["GO%3A0008643","carbohydrate transport"],["GO%3A0015772","oligosaccharide transport"],["GO%3A0015774","polysaccharide transport"]]},{"id":"CHEBI:16150","l":"benzoate","na":2,"nb":36,"a":[["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["EC%3A1.14.12.10","benzoate 1,2-dioxygenase"],["EC%3A1.14.14.92","benzoate 4-monooxygenase"],["EC%3A1.2.1.28","benzaldehyde dehydrogenase (NAD(+))"],["EC%3A1.2.1.7","benzaldehyde dehydrogenase (NADP(+))"],["EC%3A2.1.1.273","benzoate O-methyltransferase"],["EC%3A3.1.1.84","cocaine esterase"]]},{"id":"GO:0000272","l":"polysaccharide catabolic process","na":2,"nb":36,"a":[["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["GO%3A0042122","alginic acid catabolic process"],["GO%3A0031222","arabinan catabolic process"],["GO%3A0030995","cell septum edging catabolic process"],["GO%3A0044347","cell wall polysaccharide catabolic process"],["GO%3A0010147","fructan catabolic process"],["GO%3A2000885","galactoglucomannan catabolic process"]]},{"id":"GO:0009628","l":"response to abiotic stimulus","na":2,"nb":34,"a":[["South_Bay_Salt_Pond_Methane_Restoration_Community.html","South Bay Salt Pond Methane Restoration Microbial Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"]],"b":[["GO%3A0071214","cellular response to abiotic stimulus"],["GO%3A0009582","detection of abiotic stimulus"],["GO%3A0097318","invasive growth in response to abiotic stimulus"],["GO%3A0009628","response to abiotic stimulus"],["GO%3A0051602","response to electrical stimulus"],["GO%3A0009629","response to gravity"]]},{"id":"GO:0007154","l":"cell communication","na":2,"nb":32,"a":[["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["GO%3A0007412","axon target recognition"],["GO%3A0007267","cell-cell signaling"],["GO%3A0010643","cell communication by chemical coupling"],["GO%3A0010644","cell communication by electrical coupling"],["GO%3A0007154","cell communication"],["GO%3A0086065","cell communication involved in cardiac conduction"]]},{"id":"GO:0009228","l":"thiamine biosynthetic process","na":2,"nb":32,"a":[["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"],["Variovorax_Cryptococcus_Vitamin_Mutualism_Microcosm.html","Variovorax-Cryptococcus Vitamin Cross-Feeding Microcosm"]],"b":[["ComplexPortal%3ACPX-2140","iscS-thiI sulfurtransferase complex"],["GO%3A0009228","thiamine biosynthetic process"],["GO%3A0036172","thiamine salvage"],["NCBIfam%3ATIGR00204","1-deoxy-D-xylulose-5-phosphate synthase"],["NCBIfam%3ATIGR02351","2-iminoacetate synthase ThiH"],["NCBIfam%3ANF009078","bifunctional hydroxymethylpyrimidine kinase/phosphomethylpyrimidine kinase"]]},{"id":"CHEBI:15882","l":"phenol","na":2,"nb":31,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]],"b":[["EC%3A1.14.13.244","phenol 2-monooxygenase (NADH)"],["EC%3A1.14.13.7","phenol 2-monooxygenase (NADPH)"],["EC%3A1.14.14.20","phenol 2-monooxygenase (FADH2)"],["EC%3A2.1.1.25","phenol O-methyltransferase"],["EC%3A2.4.2.55","nicotinate D-ribonucleotide:phenol phospho-D-ribosyltransferase"],["EC%3A2.7.1.238","phenol phosphorylase"]]},{"id":"CHEBI:15347","l":"acetone","na":2,"nb":27,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["EC%3A1.1.1.80","isopropanol dehydrogenase (NADP(+))"],["EC%3A1.14.13.226","acetone monooxygenase (methyl acetate-forming)"],["EC%3A1.14.14.141","psoralen synthase"],["EC%3A1.14.14.148","angelicin synthase"],["EC%3A2.6.3.1","oximinotransferase"],["EC%3A4.1.1.4","acetoacetate decarboxylase"]]},{"id":"CHEBI:57586","l":"biotinate","na":2,"nb":24,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_57586","requires biotinate"],["EC%3A2.8.1.6","biotin synthase"],["EC%3A3.5.1.12","biotinidase"],["EC%3A6.2.1.11","biotin--CoA ligase"],["EC%3A6.3.4.10","biotin--[propionyl-CoA-carboxylase (ATP-hydrolyzing)] ligase"],["EC%3A6.3.4.11","biotin--[methylcrotonoyl-CoA-carboxylase] ligase"]]},{"id":"NCBITaxon:160488","l":"Pseudomonas putida KT2440","na":2,"nb":24,"a":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"]],"b":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF00842","Alanine racemase, C-terminal domain"],["Pfam%3APF01168","Alanine racemase, N-terminal domain"],["Pfam%3APF13372","Alginate export"],["Pfam%3APF03705","CheR methyltransferase, all-alpha domain"],["Pfam%3APF01739","CheR methyltransferase, SAM binding domain"]]},{"id":"GO:0045333","l":"cellular respiration","na":2,"nb":21,"a":[["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"]],"b":[["ComplexPortal%3ACPX-560","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-563","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-567","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-9308","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-1721","Mitochondrial respiratory chain complex IV, COX5A variant"],["ComplexPortal%3ACPX-1722","Mitochondrial respiratory chain complex IV, COX5B variant"]]},{"id":"GO:0071248","l":"cellular response to metal ion","na":2,"nb":21,"a":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["GO%3A0071275","cellular response to aluminum ion"],["GO%3A0071276","cellular response to cadmium ion"],["GO%3A0071277","cellular response to calcium ion"],["GO%3A0071278","cellular response to cesium ion"],["GO%3A0071279","cellular response to cobalt ion"],["GO%3A0071280","cellular response to copper ion"]]},{"id":"GO:0006089","l":"lactate metabolic process","na":2,"nb":20,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"]],"b":[["ComplexPortal%3ACPX-6573","L-lactate dehydrogenase A complex"],["ComplexPortal%3ACPX-6599","L-lactate dehydrogenase B complex"],["ComplexPortal%3ACPX-6602","L-lactate dehydrogenase C complex"],["ComplexPortal%3ACPX-6598","L-lactate dehydrogenase complex, A1B3 variant"],["ComplexPortal%3ACPX-6594","L-lactate dehydrogenase complex, A2B2 variant"],["ComplexPortal%3ACPX-6592","L-lactate dehydrogenase complex, A3B1 variant"]]},{"id":"CHEBI:16750","l":"guanosine","na":2,"nb":19,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["EC%3A2.4.2.1","purine-nucleoside phosphorylase"],["EC%3A2.4.2.15","guanosine phosphorylase"],["EC%3A2.7.1.73","inosine kinase"],["EC%3A3.5.4.15","guanosine deaminase"],["RHEA%3A27862","3'-GMP + H2O = guanosine + phosphate"],["RHEA%3A27714","GMP + H2O = guanosine + phosphate"]]},{"id":"GO:0009636","l":"response to toxic substance","na":2,"nb":18,"a":[["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"]],"b":[["ComplexPortal%3ACPX-2254","Cus cation efflux complex"],["GO%3A0097237","cellular response to toxic substance"],["GO%3A0060992","response to fungicide"],["GO%3A0009635","response to herbicide"],["GO%3A0017085","response to insecticide"],["GO%3A0010188","response to microbial phytotoxin"]]},{"id":"NCBITaxon:4577","l":"Zea mays","na":2,"nb":18,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"]],"b":[["IDPO%3A0000002","disorder"],["Pfam%3APF14861","Plant antimicrobial peptide"],["Pfam%3APF02041","Auxin binding protein"],["Pfam%3APF25436","BSD2 cysteine rich domain"],["Pfam%3APF23493","Cysteinyl-tRNA ligase anticodon binding domain"],["Pfam%3APF03330","Lytic transglycolase"]]},{"id":"GO:0033103","l":"protein secretion by the type VI secretion system","na":2,"nb":17,"a":[["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"]],"b":[["GO%3A0033103","protein secretion by the type VI secretion system"],["NCBIfam%3ATIGR03354","type VI secretion system-associated FHA domain protein TagH"],["NCBIfam%3ATIGR03345","type VI secretion system ATPase TssH"],["NCBIfam%3ATIGR03357","type VI secretion system baseplate subunit TssE"],["NCBIfam%3ATIGR03359","type VI secretion system baseplate subunit TssF"],["NCBIfam%3ATIGR03347","type VI secretion system baseplate subunit TssG"]]},{"id":"GO:0051707","l":"response to other organism","na":2,"nb":17,"a":[["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0002213","defense response to insect"],["GO%3A0002215","defense response to nematode"],["GO%3A0098542","defense response to other organism"],["GO%3A0098543","detection of other organism"],["GO%3A0009617","response to bacterium"],["GO%3A0009620","response to fungus"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":2,"nb":16,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF28265","Lipoprotein N-acylation protein LnsA-like"],["Pfam%3APF16403","Bacterial surface protein, Ig-like domain"],["Pfam%3APF03944","delta endotoxin"],["Pfam%3APF03945","delta endotoxin, N-terminal domain"],["Pfam%3APF06355","Aegerolysin"]]},{"id":"GO:0006970","l":"response to osmotic stress","na":2,"nb":15,"a":[["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["GO%3A0071470","cellular response to osmotic stress"],["GO%3A0043575","detection of osmotic stimulus"],["GO%3A0006972","hyperosmotic response"],["GO%3A0006971","hypotonic response"],["GO%3A0010335","response to non-ionic osmotic stress"],["GO%3A0006970","response to osmotic stress"]]},{"id":"GO:0019645","l":"anaerobic electron transport chain","na":2,"nb":15,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["ComplexPortal%3ACPX-320","DmaABC DMSO reductase complex"],["ComplexPortal%3ACPX-1975","Formate dehydrogenase N complex"],["ComplexPortal%3ACPX-6029","Formate dehydrogenase Z complex"],["ComplexPortal%3ACPX-317","Formate hydrogenlyase-H/Hydrogenase-3 complex"],["ComplexPortal%3ACPX-6028","Formate hydrogenlyase-H/Hydrogenase-4 complex"],["ComplexPortal%3ACPX-281","Hydrogenase-1 complex"]]},{"id":"GO:0009408","l":"response to heat","na":2,"nb":14,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["PMI_Variovorax_Thermotolerance_Collection.html","PMI Variovorax Thermotolerance Collection"]],"b":[["ComplexPortal%3ACPX-4887","DNA-directed RNA polymerase holoenzyme complex, SigmaH variant"],["ComplexPortal%3ACPX-636","ISW1b chromatin remodeling complex"],["GO%3A0034605","cellular response to heat"],["GO%3A0036168","filamentous growth of a population of unicellular organisms in response to heat"],["GO%3A0010286","heat acclimation"],["GO%3A0009408","response to heat"]]},{"id":"GO:0006032","l":"chitin catabolic process","na":2,"nb":13,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["GO%3A0006032","chitin catabolic process"],["NCBIfam%3ANF052619","chitinase ChiD"],["NCBIfam%3ANF041127","exo-beta-D-glucosaminidase"],["NCBIfam%3ANF041128","glucosamine-6-phosphate deaminase"],["NCBIfam%3ATIGR03851","N-acetylglucosamine/diacetylchitobiose ABC transporter substrate-binding protein"],["InterPro%3AIPR005089","Carbohydrate-binding module family 19"]]},{"id":"NCBITaxon:272562","l":"Clostridium acetobutylicum ATCC 824","na":2,"nb":13,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["Pfam%3APF10882","Bacterial PH domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["Pfam%3APF09940","Domain of unknown function (DUF2172)"],["Pfam%3APF16254","Domain of unknown function (DUF4910)"],["Pfam%3APF01183","Glycosyl hydrolases family 25"],["Pfam%3APF16221","winged helix-turn-helix"]]},{"id":"NCBITaxon:644","l":"Aeromonas hydrophila","na":2,"nb":13,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["Pfam%3APF01117","Aerolysin toxin"],["Pfam%3APF03440","Aerolysin/Pertussis toxin (APT) domain"],["Pfam%3APF21327","GspA, peptidase C39-like domain"],["Pfam%3APF04231","Endonuclease I"],["PROSITE%3APS01092","Adenylate cyclase class-I signature 1"],["PROSITE%3APS01093","Adenylate cyclase class-I signature 2"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus ATCC 27405","na":2,"nb":12,"a":[["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["Pfam%3APF00942","Cellulose binding domain"],["Pfam%3APF17996","Carbohydrate esterase 2 N-terminal"],["Pfam%3APF00963","Cohesin domain"],["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF00404","Dockerin type I domain"]]},{"id":"NCBITaxon:51453","l":"Trichoderma reesei","na":2,"nb":12,"a":[["Trichoderma_Ecoli_Cellulosic_Isobutanol_Coculture.html","Trichoderma-E. coli Cellulosic Isobutanol Coculture"],["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["Pfam%3APF28347","ACE1 small beta sheet domain"],["Pfam%3APF28329","Zinc finger transcription factor ace1 N-terminal domain"],["Pfam%3APF00150","Cellulase (glycosyl hydrolase family 5)"],["Pfam%3APF22514","EXPB1-like domain 1"],["Pfam%3APF01341","Glycosyl hydrolases family 6"],["Pfam%3APF00840","Glycosyl hydrolase family 7"]]},{"id":"GO:0015889","l":"cobalamin transport","na":2,"nb":11,"a":[["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["ComplexPortal%3ACPX-2105","Cobalamin ABC transporter complex"],["ComplexPortal%3ACPX-1083","Cobalamin outer membrane transporter complex"],["ComplexPortal%3ACPX-5774","Cubam cobalamin uptake receptor complex"],["ComplexPortal%3ACPX-5847","Cubam cobalamin uptake receptor complex"],["GO%3A0015889","cobalamin transport"],["Reactome%3AR-HSA-9758890","Transport of RCbl within the body"]]},{"id":"GO:0019605","l":"butyrate metabolic process","na":2,"nb":11,"a":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["GO%3A0030645","acetyl-CoA fermentation to butanoate"],["GO%3A0046358","butyrate biosynthetic process"],["GO%3A0046359","butyrate catabolic process"],["GO%3A0019605","butyrate metabolic process"],["GO%3A0019475","L-lysine fermentation"],["GO%3A0044813","pyruvate fermentation to butanoate"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":2,"nb":11,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["Pfam%3APF22829","HphA C-terminal domain"],["Pfam%3APF22828","HphA N-terminal heme-binding domain"],["Pfam%3APF28205","Ciprofloxacin tolerance protein"],["Pfam%3APF19582","Solute-binding protein AdeT 1/2"],["PROSITE%3APS00337","Beta-lactamase class-D active site"],["Pfam%3APF24575","Surface lipoprotein assembly modifier, N-terminal TPR repeats"]]},{"id":"CHEBI:3098","l":"bile acid","na":2,"nb":9,"a":[["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.28","The Bile Acid:Na+ Symporter (BASS) Family"],["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"],["TCDB%3A9.A.19","The Lipid Intermediate Transporter (Arv1) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":2,"nb":9,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"]],"b":[["Pfam%3APF07835","Bacterial aa3 type cytochrome c oxidase subunit IV"],["Pfam%3APF04828","Glutathione-dependent formaldehyde-activating enzyme"],["Pfam%3APF16448","LapD/MoxY periplasmic domain"],["Pfam%3APF17267","Family of unknown function (DUF5333)"],["Pfam%3APF17272","Family of unknown function (DUF5337)"],["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":2,"nb":9,"a":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF25954","CusB-like, beta-barrel domain"],["Pfam%3APF13438","Domain of unknown function (DUF4113)"],["Pfam%3APF03767","HAD superfamily, subfamily IIIB (Acid phosphatase)"],["Pfam%3APF03496","ADP-ribosyltransferase exoenzyme"]]},{"id":"CHEBI:15366","l":"acetic acid","na":8,"nb":2,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["MCSA%3A431","acetylxylan esterase"],["MCSA%3A996","Peptidoglycan-N-acetylglucosamine deacetylase Bc1960"]]},{"id":"CHEBI:16793","l":"mercury(2+)","na":2,"nb":8,"a":[["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["EC%3A1.16.1.1","mercury(II) reductase"],["EC%3A4.99.1.2","alkylmercury lyase"],["RHEA%3A18777","an alkylmercury + H(+) = an alkane + Hg(2+)"],["RHEA%3A32815","Hg(2+)(in) = Hg(2+)(out)"],["RHEA%3A23856","Hg + NADP(+) + H(+) = Hg(2+) + NADPH"],["MCSA%3A297","alkylmercury lyase"]]},{"id":"GO:0009651","l":"response to salt stress","na":2,"nb":8,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"]],"b":[["GO%3A0071472","cellular response to salt stress"],["GO%3A0042538","hyperosmotic salinity response"],["GO%3A0042539","hypotonic salinity response"],["GO%3A0072342","response to anion stress"],["GO%3A0043157","response to cation stress"],["GO%3A0009651","response to salt stress"]]},{"id":"GO:0033013","l":"tetrapyrrole metabolic process","na":2,"nb":8,"a":[["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["GO%3A0009235","cobalamin metabolic process"],["GO%3A0006778","porphyrin-containing compound metabolic process"],["GO%3A0033014","tetrapyrrole biosynthetic process"],["GO%3A0033015","tetrapyrrole catabolic process"],["GO%3A0033013","tetrapyrrole metabolic process"],["NCBIfam%3ANF047825","tryptophan-rich sensory protein TspO"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":2,"nb":8,"a":[["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]],"b":[["Pfam%3APF02927","Cellulase N-terminal ig-like domain"],["Pfam%3APF00404","Dockerin type I domain"],["PROSITE%3APS00448","Clostridium cellulosome enzymes repeated domain signature"],["PROSITE%3APS60032","Glycosyl hydrolases family 9 (GH9) active site signature 1"],["PROSITE%3APS00592","Glycosyl hydrolases family 9 (GH9) active site signature 2"],["PROSITE%3APS00698","Glycosyl hydrolases family 9 (GH9) active site signature 3"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":8,"nb":2,"a":[["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"],["Sedimenting_Arabinose_Glucose_Saccharomyces_Coculture.html","Sedimenting Arabinose-Glucose Saccharomyces Coculture"]],"b":[["PROSITE%3APS00820","Glucoamylase active site region signature"],["TED%3AAF-A0A7I9G6Y3-F1-model_v4_TED02","TED novel fold AF-A0A7I9G6Y3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:920","l":"Acidithiobacillus ferrooxidans","na":8,"nb":2,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["Pfam%3APF20538","Family of unknown function (DUF6753)"],["PROSITE%3APS01007","Transposases, Mutator family, signature"]]},{"id":"CHEBI:17824","l":"propan-2-ol","na":2,"nb":7,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"]],"b":[["EC%3A1.1.1.80","isopropanol dehydrogenase (NADP(+))"],["EC%3A1.14.13.227","propane 2-monooxygenase"],["RHEA%3A62196","propan-2-ol + 2 Fe(III)-[cytochrome c] = acetone + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A41984","propan-2-ol + NAD(+) = acetone + NADH + H(+)"],["RHEA%3A21792","propan-2-ol + NADP(+) = acetone + NADPH + H(+)"],["RHEA%3A49992","propane + NADH + O2 + H(+) = propan-2-ol + NAD(+) + H2O"]]},{"id":"CHEBI:49713","l":"lithium(1+)","na":2,"nb":7,"a":[["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["RHEA%3A72631","3 Li(+)(out) + Ca(2+)(in) = 3 Li(+)(in) + Ca(2+)(out)"],["RHEA%3A70431","Li(+)(in) + 2 H(+)(out) = Li(+)(out) + 2 H(+)(in)"],["RHEA%3A75063","Li(+)(in) + 2 hydrogencarbonate(in) + chloride(out) = Li(+)(out) + 2 hydrogencarbonate(out) + chloride(in)"],["RHEA%3A78551","Li(+)(in) = Li(+)(out)"],["RHEA%3A72415","Li(+)(in) + Na(+)(out) = Li(+)(out) + Na(+)(in)"],["RHEA%3A72407","Li(+)(out) + H(+)(in) = Li(+)(in) + H(+)(out)"]]},{"id":"GO:0043448","l":"alkane catabolic process","na":7,"nb":2,"a":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Nitratireductor_Gordonia_Z123_LDPE_Degradation_SynCom.html","Nitratireductor-Gordonia Z123 LDPE-Degradation SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"]],"b":[["GO%3A0043448","alkane catabolic process"],["GO%3A0046188","methane catabolic process"]]},{"id":"NCBITaxon:1305","l":"Streptococcus sanguinis","na":2,"nb":7,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["Pfam%3APF09254","FokI, cleavage domain"],["Pfam%3APF02981","FokI, recognition domain, subdomain 1"],["Pfam%3APF02980","FokI, recognition domain, subdomain 2"],["Pfam%3APF07501","G5 domain"],["Pfam%3APF07581","The GLUG motif"],["TED%3AAF-A0A7H8V358-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H8V358-F1-model_v4_TED01"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":2,"nb":7,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["Pfam%3APF19443","DAHL domain"],["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"],["Pfam%3APF03524","Conjugal transfer protein"],["Pfam%3APF27439","Chaperone protein DnaJ C-terminal region"],["Pfam%3APF10907","Protein of unknown function (DUF2749)"],["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":2,"nb":7,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["Pfam%3APF11766","Agglutinin-like protein, N-terminal domain"],["Pfam%3APF16856","Cell division control protein 4 dimerisation domain"],["Pfam%3APF18325","Fatty acid synthase subunit alpha Acyl carrier domain"],["Pfam%3APF18314","Fatty acid synthase type I helical domain"],["Pfam%3APF17828","N-terminal domain in fatty acid synthase subunit beta"],["Pfam%3APF05388","Carboxypeptidase Y pro-peptide"]]},{"id":"CHEBI:16457","l":"S,S-dimethyl-beta-propiothetin","na":2,"nb":6,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["EC%3A2.1.1.269","dimethylsulfoniopropionate demethylase"],["EC%3A4.4.1.3","dimethylpropiothetin dethiomethylase"],["RHEA%3A35467","S,S-dimethyl-beta-propiothetin + (6S)-5,6,7,8-tetrahydrofolate = 3-(methylsulfanyl)propanoate + (6S)-5-methyl-5,6,7,8-tetrahydrofolate + H(+)"],["RHEA%3A19965","S,S-dimethyl-beta-propiothetin = acrylate + dimethyl sulfide + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.15","The Betaine/Carnitine/Choline Transporter (BCCT) Family"]]},{"id":"CHEBI:30772","l":"butyric acid","na":6,"nb":2,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["MCSA%3A900","para-nitrobenzyl esterase"],["proteintraitsmech%3ABIOLIP_BUA","BUA-binding site"]]},{"id":"GO:0009235","l":"cobalamin metabolic process","na":2,"nb":6,"a":[["Soil_Corrinoid_B12_Reservoir_Community.html","Soil Corrinoid Reservoir Microbial Community"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["GO%3A0009236","cobalamin biosynthetic process"],["GO%3A0042366","cobalamin catabolic process"],["GO%3A0009235","cobalamin metabolic process"],["Reactome%3AR-HSA-9759218","Cobalamin (Cbl) metabolism"],["NCBIfam%3ANF021725","methylmalonic aciduria and homocystinuria type D protein"],["Pfam%3APF10229","Methylmalonic aciduria and homocystinuria type D protein"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":2,"nb":6,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]],"b":[["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF03744","6-carboxyhexanoate--CoA ligase"],["PROSITE%3APS00836","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 1"],["PROSITE%3APS00837","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 2"],["TED%3AAF-A0A2S5D092-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5D092-F1-model_v4_TED01"],["TED%3AAF-A0A2S0JW09-F1-model_v4_TED01","TED novel fold AF-A0A2S0JW09-F1-model_v4_TED01"]]},{"id":"NCBITaxon:32049","l":"Picosynechococcus sp. PCC 7002","na":2,"nb":6,"a":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"]],"b":[["Pfam%3APF09367","CpeS-like protein"],["Pfam%3APF06206","CpeT/CpcT family (DUF1001)"],["Pfam%3APF12965","Domain of unknown function (DUF3854)"],["Pfam%3APF19928","Domain of unknown function (DUF6391)"],["Pfam%3APF09366","Protein of unknown function (DUF1997)"],["Pfam%3APF14870","Photosynthesis system II assembly factor YCF48"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":2,"nb":6,"a":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["Pfam%3APF01177","Asp/Glu/Hydantoin racemase"],["Pfam%3APF11339","Protein of unknown function (DUF3141)"],["PROSITE%3APS01303","BCCT family of transporters signature"],["PROSITE%3APS00665","Dihydrodipicolinate synthase signature 1"],["TED%3AAF-A0A2J0YSD4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J0YSD4-F1-model_v4_TED01"],["TED%3AAF-A0A843ZNG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843ZNG8-F1-model_v4_TED01"]]},{"id":"CHEBI:16865","l":"gamma-aminobutyric acid","na":2,"nb":5,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A2.A.42","The Hydroxy/Aromatic Amino Acid Permease (HAAAP) Family"],["TCDB%3A2.A.22","The Neurotransmitter:Sodium Symporter (NSS) Family"],["proteintraitsmech%3ABIOLIP_ABU","ABU-binding site"]]},{"id":"NCBITaxon:3039","l":"Euglena gracilis","na":2,"nb":5,"a":[["Dairy_Wastewater_Algal_Cyanobacterial_Cultivation_Panel.html","Dairy Wastewater Algal-Cyanobacterial Cultivation Panel"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"]],"b":[["Pfam%3APF01333","Apocytochrome F, C-terminal"],["Pfam%3APF16639","Apocytochrome F, N-terminal"],["Pfam%3APF04940","Sensors of blue-light using FAD"],["Pfam%3APF10371","Domain of unknown function"],["PROSITE%3APS00938","Initiation factor 3 signature"]]},{"id":"NCBITaxon:5507","l":"Fusarium oxysporum","na":2,"nb":5,"a":[["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["Pfam%3APF02015","Glycosyl hydrolase family 45"],["PROSITE%3APS01140","Glycosyl hydrolases family 45 active site"],["TED%3AAF-A0A2H3TJY2-F1-model_v4_TED01","TED novel fold AF-A0A2H3TJY2-F1-model_v4_TED01"],["TED%3AAF-A0A420N954-F1-model_v4_TED01","TED novel fold AF-A0A420N954-F1-model_v4_TED01"],["TED%3AAF-A0A420P6J4-F1-model_v4_TED01","TED novel fold AF-A0A420P6J4-F1-model_v4_TED01"]]},{"id":"CHEBI:16995","l":"oxalic acid","na":4,"nb":2,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Wollastonite_Ramichloridium_Talaromyces_Fungal_Consortium.html","Wollastonite Ramichloridium-Talaromyces Fungal Consortium"]],"b":[["TCDB%3A2.A.53","The Sulfate Permease (SulP) Family"],["proteintraitsmech%3ABIOLIP_OXD","OXD-binding site"]]},{"id":"CHEBI:33363","l":"palladium atom","na":2,"nb":4,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_PD_DINUCLEAR","dinuclear palladium site"],["proteintraitsmech%3AMETALPDB_PD_MONONUCLEAR","mononuclear palladium site"],["proteintraitsmech%3AMETALPDB_PD_TETRANUCLEAR","tetranuclear palladium site"],["proteintraitsmech%3AMETALPDB_PD_TRINUCLEAR","trinuclear palladium site"]]},{"id":"GO:0018874","l":"benzoate metabolic process","na":4,"nb":2,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["GO%3A0043639","benzoate catabolic process"],["GO%3A0018874","benzoate metabolic process"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":2,"nb":4,"a":[["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["TED%3AAF-A0A7W3UB61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W3UB61-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F4B3-F1-model_v4_TED01","TED novel fold AF-A0A0D7F4B3-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F6R4-F1-model_v4_TED01","TED novel fold AF-A0A0D7F6R4-F1-model_v4_TED01"],["TED%3AAF-A0A7W3YI15-F1-model_v4_TED02","TED novel fold AF-A0A7W3YI15-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":4,"nb":2,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"],["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["Pfam%3APF22538","Hexaprenyl diphosphate synthase, small subunit"],["PROSITE%3APS01066","Undecaprenyl pyrophosphate synthase family signature"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":4,"nb":2,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]],"b":[["Pfam%3APF02052","Gallidermin"],["Pfam%3APF04604","Type-A lantibiotic"]]},{"id":"NCBITaxon:269797","l":"Methanosarcina barkeri str. Fusaro","na":2,"nb":4,"a":[["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["Pfam%3APF27274","Coenzyme F430 synthetase CfbE, C-terminal domain"],["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"],["Pfam%3APF09505","Dimethylamine methyltransferase (Dimeth_PyL)"],["PROSITE%3APS00507","Nickel-dependent hydrogenases large subunit signature 1"]]},{"id":"NCBITaxon:2822231","l":"Phanerodontia chrysosporium","na":2,"nb":4,"a":[["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"]],"b":[["Pfam%3APF18637","Aldos-2-ulose dehydratase/isomerase (AUDH) Cupin domain"],["Pfam%3APF16010","Cytochrome domain of cellobiose dehydrogenase"],["PROSITE%3APS00623","GMC oxidoreductases signature 1"],["Pfam%3APF22301","Aldos-2-ulose dehydratase, beta-propeller domain"]]},{"id":"NCBITaxon:37919","l":"Rhodococcus opacus","na":4,"nb":2,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"],["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["Pfam%3APF11794","4-hydroxyphenylacetate 3-hydroxylase N terminal"],["Pfam%3APF03241","4-hydroxyphenylacetate 3-hydroxylase C terminal"]]},{"id":"CHEBI:15741","l":"succinic acid","na":3,"nb":2,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_SIN","SIN-binding site"]]},{"id":"CHEBI:15956","l":"biotin","na":3,"nb":2,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15956","requires biotin"],["proteintraitsmech%3ABIOLIP_BTN","BTN-binding site"]]},{"id":"CHEBI:24898","l":"isoleucine","na":2,"nb":3,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["MCSA%3A906","gelatinase A"]]},{"id":"CHEBI:49470","l":"aluminium(3+)","na":2,"nb":3,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Rice_Acid_Soil_Bioinoculant_SynCom.html","Rice Acid Soil Bioinoculant SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["proteintraitsmech%3ABIOLIP_AL","AL-binding site"]]},{"id":"CHEBI:5199","l":"Fusaric acid","na":2,"nb":3,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["TCDB%3A2.A.85","The Aromatic Acid Exporter (ArAE) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.17","The Outer Membrane Factor (OMF) Family"]]},{"id":"CHEBI:58187","l":"alginate","na":2,"nb":3,"a":[["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["EC%3A5.1.3.37","mannuronan 5-epimerase"],["RHEA%3A45572","[(1->4)-beta-D-mannuronosyl](n) = [alginate](n)"],["RHEA%3A15637","[alginate](n) + GDP-alpha-D-mannuronate = [alginate](n+1) + GDP + H(+)"]]},{"id":"GO:0006068","l":"ethanol catabolic process","na":2,"nb":3,"a":[["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["GO%3A0006068","ethanol catabolic process"],["Reactome%3AR-HSA-71384","Ethanol oxidation"],["NCBIfam%3ANF050026","acetaldehyde dehydrogenase ExaC"]]},{"id":"GO:0019385","l":"methanogenesis, from acetate","na":2,"nb":3,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["GO%3A0019385","methanogenesis, from acetate"],["NCBIfam%3ANF014596","carbon monoxide dehydrogenase beta subunit family protein"],["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"]]},{"id":"NCBITaxon:1492","l":"Clostridium butyricum","na":2,"nb":3,"a":[["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["Pfam%3APF00302","Chloramphenicol acetyltransferase"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["PROSITE%3APS00100","Chloramphenicol acetyltransferase active site"]]},{"id":"NCBITaxon:166486","l":"Roseburia intestinalis","na":3,"nb":2,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["TED%3AAF-A0A3R6HE72-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R6HE72-F1-model_v4_TED01"],["TED%3AAF-A0A6L6XJA4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L6XJA4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:239935","l":"Akkermansia muciniphila","na":3,"nb":2,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["TED%3AAF-A0A2N8IJN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N8IJN7-F1-model_v4_TED01"],["TED%3AAF-A0A6N2UM07-F1-model_v4_TED01","TED novel fold AF-A0A6N2UM07-F1-model_v4_TED01"]]},{"id":"NCBITaxon:253","l":"Chryseobacterium indologenes","na":2,"nb":3,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"]],"b":[["PROSITE%3APS00744","Beta-lactamases class B signature 2"],["TED%3AAF-A0A7T8U7T3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T8U7T3-F1-model_v4_TED01"],["TED%3AAF-A0A0N0ZUI2-F1-model_v4_TED01","TED novel fold AF-A0A0N0ZUI2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28108","l":"Alteromonas macleodii","na":2,"nb":3,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["TED%3AAF-A0A6C5N007-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6C5N007-F1-model_v4_TED01"],["TED%3AAF-A0A126Q0V0-F1-model_v4_TED01","TED novel fold AF-A0A126Q0V0-F1-model_v4_TED01"],["TED%3AAF-A0A6T9Y0H6-F1-model_v4_TED01","TED novel fold AF-A0A6T9Y0H6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:33035","l":"Blautia producta","na":3,"nb":2,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["TED%3AAF-A0A2S4GEH6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S4GEH6-F1-model_v4_TED01"],["TED%3AAF-A0A7G5MNY0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G5MNY0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:357809","l":"Lachnoclostridium phytofermentans ISDg","na":2,"nb":3,"a":[["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"]],"b":[["Pfam%3APF09508","Lacto-N-biose phosphorylase N-terminal TIM barrel domain"],["Pfam%3APF17386","Lacto-N-biose phosphorylase C-terminal domain"],["Pfam%3APF17385","Lacto-N-biose phosphorylase central domain"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":3,"nb":2,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["PROSITE%3APS00336","Beta-lactamase class-C active site"],["TED%3AAF-A0A155XQ59-F1-model_v4_TED02","TED novel fold AF-A0A155XQ59-F1-model_v4_TED02"]]},{"id":"NCBITaxon:561879","l":"Bacillus safensis","na":2,"nb":3,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"]],"b":[["Pfam%3APF09221","Bacteriocin class IId cyclical uberolysin-like"],["TED%3AAF-A0A1L6ZPA6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6ZPA6-F1-model_v4_TED01"],["TED%3AAF-A0A1L6ZPC9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6ZPC9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:587753","l":"Pseudomonas chlororaphis","na":3,"nb":2,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["TED%3AAF-A0A8A9Z2C4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A8A9Z2C4-F1-model_v4_TED03"],["TED%3AAF-A0A0A6DEM6-F1-model_v4_TED01","TED novel fold AF-A0A0A6DEM6-F1-model_v4_TED01"]]},{"id":"CHEBI:15930","l":"atrazine","na":2,"nb":2,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["EC%3A3.8.1.8","atrazine chlorohydrolase"],["RHEA%3A11312","atrazine + H2O = hydroxyatrazine + chloride + H(+)"]]},{"id":"CHEBI:16094","l":"thiosulfate(2-)","na":2,"nb":2,"a":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["proteintraitsmech%3ABIOLIP_THJ","THJ-binding site"]]},{"id":"CHEBI:17300","l":"tetrachloroethene","na":2,"nb":2,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["EC%3A1.21.99.5","tetrachloroethene reductive dehalogenase"],["RHEA%3A20353","trichloroethene + chloride + A + H(+) = tetrachloroethene + AH2"]]},{"id":"CHEBI:231672","l":"bis(2-hydroxyethyl) terephthalate","na":2,"nb":2,"a":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["RHEA%3A80759","bis(2-hydroxyethyl) terephthalate + H2O = 4-[(2-hydroxyethoxy)carbonyl]benzoate + ethylene glycol + H(+)"],["proteintraitsmech%3ABIOLIP_C8X","C8X-binding site"]]},{"id":"CHEBI:27518","l":"acetylene","na":2,"nb":2,"a":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"]],"b":[["EC%3A4.2.1.112","acetylene hydratase"],["RHEA%3A17885","acetaldehyde = acetylene + H2O"]]},{"id":"CHEBI:30046","l":"oxidovanadium(2+)","na":2,"nb":2,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["RHEA%3A75007","VO(2+)(out) + H(+)(out) = VO(2+)(in) + H(+)(in)"],["proteintraitsmech%3ABIOLIP_VVO","VVO-binding site"]]},{"id":"CHEBI:30751","l":"formic acid","na":2,"nb":2,"a":[["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["MCSA%3A38","GTP cyclohydrolase I"],["proteintraitsmech%3ABIOLIP_FMT","FMT-binding site"]]},{"id":"CHEBI:47916","l":"flavonoid","na":2,"nb":2,"a":[["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]]},{"id":"CHEBI:48782","l":"cerium(3+)","na":2,"nb":2,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_48782","requires cerium(3+)"],["proteintraitsmech%3ABIOLIP_CE","CE-binding site"]]},{"id":"CHEBI:49701","l":"lanthanum(3+)","na":2,"nb":2,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_49701","requires lanthanum(3+)"],["proteintraitsmech%3ABIOLIP_LA","LA-binding site"]]},{"id":"CHEBI:8005","l":"peptidoglycan","na":2,"nb":2,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.17","The Proton-dependent Oligopeptide Transporter (POT/PTR) Family"]]},{"id":"GO:0005983","l":"starch catabolic process","na":2,"nb":2,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"]],"b":[["GO%3A0005983","starch catabolic process"],["NCBIfam%3ATIGR02103","pullulanase-type alpha-1,6-glucosidase"]]},{"id":"NCBITaxon:145262","l":"Methanothermobacter thermautotrophicus","na":2,"nb":2,"a":[["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]],"b":[["Pfam%3APF12686","Protein of unknown function (DUF3800)"],["PROSITE%3APS00093","N-4 cytosine-specific DNA methylases signature"]]},{"id":"NCBITaxon:2162","l":"Methanobacterium formicicum","na":2,"nb":2,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"]],"b":[["Pfam%3APF04432","Coenzyme F420 hydrogenase/dehydrogenase, beta subunit C terminus"],["Pfam%3APF04422","Coenzyme F420 hydrogenase/dehydrogenase, beta subunit N-term"]]},{"id":"NCBITaxon:2223","l":"Methanothrix soehngenii","na":2,"nb":2,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"],["TED%3AAF-A0A7K4AJW5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K4AJW5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:39152","l":"Methanococcus maripaludis","na":2,"nb":2,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"]],"b":[["Pfam%3APF02571","Precorrin-6x reductase CbiJ/CobK"],["TED%3AAF-A0A7J9PSA9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J9PSA9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:39488","l":"Anaerobutyricum hallii","na":2,"nb":2,"a":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["TED%3AAF-A0A414B1Y3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A414B1Y3-F1-model_v4_TED01"],["TED%3AAF-A0A415G3S7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A415G3S7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:4952","l":"Yarrowia lipolytica","na":2,"nb":2,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Yarrowia_lipolytica_Division_of_Labor_Lipid_Consortium.html","Yarrowia lipolytica Division-of-Labor Lipid Consortium"]],"b":[["TED%3AAF-A0A7H0KE04-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H0KE04-F1-model_v4_TED01"],["TED%3AAF-A0A371C7L0-F1-model_v4_TED02","TED novel fold AF-A0A371C7L0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:84022","l":"Andreesenella acetica","na":2,"nb":2,"a":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"]],"b":[["TED%3AAF-A0A0D8IAM1-F1-model_v4_TED01","TED novel fold AF-A0A0D8IAM1-F1-model_v4_TED01"],["TED%3AAF-A0A0D8IBN9-F1-model_v4_TED02","TED novel fold AF-A0A0D8IBN9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":1,"nb":49554,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["EC%3A1.1.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.1.98.-","With other, known, acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli K-12","na":1,"nb":17470,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["EC%3A1.1.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.16.-.-","Oxidizing metal ions"],["EC%3A1.18.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.7.-","With an iron-sulfur protein as acceptor"]]},{"id":"CHEBI:15378","l":"hydron","na":1,"nb":14383,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.1.10","L-xylulose reductase"],["EC%3A1.1.1.100","3-oxoacyl-[acyl-carrier-protein] reductase"],["EC%3A1.1.1.101","acylglycerone-phosphate reductase"],["EC%3A1.1.1.102","3-dehydrosphinganine reductase"],["EC%3A1.1.1.103","L-threonine 3-dehydrogenase"]]},{"id":"NCBITaxon:7227","l":"Drosophila melanogaster","na":1,"nb":11343,"a":[["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.14.15.-","With reduced iron-sulfur protein as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.17.-","With reduced ascorbate as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.-.-","Acting on paired donors, with incorporation or reduction of molecular oxygen. The oxygen incorporated need not be derived from O2"],["EC%3A1.2.4.-","With a disulfide as acceptor"],["EC%3A1.6.99.-","With other acceptors"]]},{"id":"NCBITaxon:6239","l":"Caenorhabditis elegans","na":1,"nb":9682,"a":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"]],"b":[["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.14.14.-","With reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.17.-","With reduced ascorbate as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.19.-","With oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water"],["EC%3A1.14.99.-","Miscellaneous"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii DSM 2661","na":1,"nb":5181,"a":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]],"b":[["EC%3A1.12.99.-","With other acceptors"],["EC%3A1.3.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.3.-.-","Acting on the CH-CH group of donors"],["EC%3A1.8.98.-","With other, known, acceptors"],["EC%3A1.97.1.-","Other oxidoreductases"],["EC%3A2.1.2.-","Hydroxymethyl-, formyl- and related transferases"]]},{"id":"GO:0006355","l":"regulation of DNA-templated transcription","na":1,"nb":1131,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["ComplexPortal%3ACPX-2829","ACF chromatin remodeling complex"],["ComplexPortal%3ACPX-2742","ATAC histone acetyltransferase complex"],["ComplexPortal%3ACPX-8344","BRE1 E3 ubiquitin ligase complex"],["ComplexPortal%3ACPX-1830","CCAAT-binding factor complex"],["ComplexPortal%3ACPX-2767","CCAAT-binding factor complex"],["ComplexPortal%3ACPX-2771","CCR4-NOT mRNA deadenylase complex"]]},{"id":"CHEBI:16810","l":"2-oxoglutarate(2-)","na":1,"nb":672,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"]],"b":[["EC%3A1.1.1.286","isocitrate--homoisocitrate dehydrogenase"],["EC%3A1.1.1.399","2-oxoglutarate reductase"],["EC%3A1.1.1.41","isocitrate dehydrogenase (NAD(+))"],["EC%3A1.1.1.42","isocitrate dehydrogenase (NADP(+))"],["EC%3A1.1.5.13","(S)-2-hydroxyglutarate dehydrogenase"],["EC%3A1.1.99.2","L-2-hydroxyglutarate dehydrogenase"]]},{"id":"GO:0006412","l":"translation","na":1,"nb":455,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["GO%3A0002181","cytoplasmic translation"],["GO%3A0032543","mitochondrial translation"],["GO%3A0032544","plastid translation"],["GO%3A0140241","translation at synapse"],["GO%3A0006412","translation"],["Reactome%3AR-HSA-72766","Translation"]]},{"id":"GO:0055085","l":"transmembrane transport","na":1,"nb":439,"a":[["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"]],"b":[["ComplexPortal%3ACPX-271","5-hydroxytryptamine-3A/B receptor complex"],["ComplexPortal%3ACPX-275","5-hydroxytryptamine-3A/B receptor complex"],["ComplexPortal%3ACPX-277","5-hydroxytryptamine-3A/B receptor complex"],["ComplexPortal%3ACPX-276","5-hydroxytryptamine-3A/C receptor complex"],["ComplexPortal%3ACPX-272","5-hydroxytryptamine-3A/D receptor complex"],["ComplexPortal%3ACPX-273","5-hydroxytryptamine-3A/E receptor complex"]]},{"id":"CHEBI:29985","l":"L-glutamate(1-)","na":1,"nb":426,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["EC%3A1.14.11.76","L-glutamate 3(R)-hydroxylase"],["EC%3A1.2.1.88","L-glutamate gamma-semialdehyde dehydrogenase"],["EC%3A1.4.1.13","glutamate synthase (NADPH)"],["EC%3A1.4.1.14","glutamate synthase (NADH)"],["EC%3A1.4.1.2","glutamate dehydrogenase"],["EC%3A1.4.1.3","glutamate dehydrogenase [NAD(P)(+)]"]]},{"id":"GO:0006508","l":"proteolysis","na":1,"nb":393,"a":[["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"]],"b":[["ComplexPortal%3ACPX-6224","Active Protein C complex"],["ComplexPortal%3ACPX-6222","alpha-thrombin complex"],["ComplexPortal%3ACPX-3663","Caspase-8 complex"],["ComplexPortal%3ACPX-975","Caspase-8 complex"],["ComplexPortal%3ACPX-6221","Coagulation factor Va-Xa complex"],["ComplexPortal%3ACPX-279","Coagulation factor VIIa - tissue factor complex"]]},{"id":"GO:0006260","l":"DNA replication","na":1,"nb":311,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["ComplexPortal%3ACPX-6641","ASCC DNA alkylation repair complex"],["ComplexPortal%3ACPX-568","Chromatin assembly factor 1 complex"],["ComplexPortal%3ACPX-2671","CMG helicase complex"],["ComplexPortal%3ACPX-297","CMG helicase complex"],["ComplexPortal%3ACPX-4526","CMG helicase complex"],["ComplexPortal%3ACPX-4541","CMG helicase complex"]]},{"id":"CHEBI:29101","l":"sodium(1+)","na":1,"nb":292,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29101","requires sodium(1+)"],["EC%3A7.2.1.1","NADH:ubiquinone reductase (Na(+)-transporting)"],["EC%3A7.2.1.2","ferredoxin--NAD(+) oxidoreductase (Na(+)-transporting)"],["EC%3A7.2.1.4","tetrahydromethanopterin S-methyltransferase"],["EC%3A7.2.2.1","Na(+)-transporting two-sector ATPase"],["EC%3A7.2.2.13","Na(+)/K(+)-exchanging ATPase"]]},{"id":"GO:0006096","l":"glycolytic process","na":1,"nb":117,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["ComplexPortal%3ACPX-1992","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-2039","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-2040","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-1994","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"],["ComplexPortal%3ACPX-2041","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"],["ComplexPortal%3ACPX-2042","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"]]},{"id":"GO:0042221","l":"response to chemical","na":1,"nb":104,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0070887","cellular response to chemical stimulus"],["GO%3A0036503","ERAD pathway"],["GO%3A1904612","response to 2,3,7,8-tetrachlorodibenzodioxine"],["GO%3A1904610","response to 3,3',4,4',5-pentachlorobiphenyl"],["GO%3A0036275","response to 5-fluorouracil"],["GO%3A0001101","response to acid chemical"]]},{"id":"GO:0009252","l":"peptidoglycan biosynthetic process","na":1,"nb":90,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["GO%3A0009252","peptidoglycan biosynthetic process"],["GO%3A0018104","peptidoglycan-protein cross-linking"],["NCBIfam%3ATIGR00492","alanine racemase"],["NCBIfam%3ANF007061","bifunctional glycosyl transferase/transpeptidase"],["NCBIfam%3ANF006986","bifunctional UDP-N-acetylglucosamine diphosphorylase/glucosamine-1-phosphate N-acetyltransferase GlmU"]]},{"id":"GO:0009306","l":"protein secretion","na":1,"nb":84,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["GO%3A0070162","adiponectin secretion"],["GO%3A0036394","amylase secretion"],["GO%3A0110010","basolateral protein secretion"],["GO%3A0038055","BMP secretion"],["GO%3A0030073","insulin secretion"],["GO%3A1990773","matrix metallopeptidase secretion"]]},{"id":"GO:0006796","l":"phosphate-containing compound metabolic process","na":1,"nb":72,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"]],"b":[["GO%3A0016311","dephosphorylation"],["GO%3A0006796","phosphate-containing compound metabolic process"],["GO%3A0016310","phosphorylation"],["NCBIfam%3ANF053626","ATP-dependent ribose-1-phosphate kinase"],["NCBIfam%3ANF002317","inorganic diphosphatase"],["NCBIfam%3ATIGR02966","phosphate regulon sensor histidine kinase PhoR"]]},{"id":"GO:0048519","l":"negative regulation of biological process","na":1,"nb":72,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["GO%3A1905869","negative regulation of 3'-UTR-mediated mRNA stabilization"],["GO%3A0045759","negative regulation of action potential"],["GO%3A0048519","negative regulation of biological process"],["GO%3A0030712","negative regulation of border follicle cell delamination"],["GO%3A1903780","negative regulation of cardiac conduction"],["GO%3A0048523","negative regulation of cellular process"]]},{"id":"GO:0006631","l":"fatty acid metabolic process","na":1,"nb":71,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["ComplexPortal%3ACPX-6169","Mitochondrial propionyl-CoA carboxylase complex"],["ComplexPortal%3ACPX-1038","PIP2-OAF1 transcription factor complex"],["ComplexPortal%3ACPX-25756","SREBP-SCAP transcription regulator complex"],["GO%3A0006633","fatty acid biosynthetic process"],["GO%3A0009062","fatty acid catabolic process"],["GO%3A0006631","fatty acid metabolic process"]]},{"id":"GO:0006955","l":"immune response","na":1,"nb":69,"a":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"]],"b":[["ComplexPortal%3ACPX-381","Interleukin-12 complex"],["ComplexPortal%3ACPX-387","Interleukin-12 complex"],["ComplexPortal%3ACPX-382","Interleukin-12-receptor ligand complex"],["ComplexPortal%3ACPX-3290","Interleukin-23 complex"],["ComplexPortal%3ACPX-389","Interleukin-23-receptor complex"],["ComplexPortal%3ACPX-383","Interleukin-23 receptor-ligand complex"]]},{"id":"GO:0006814","l":"sodium ion transport","na":1,"nb":67,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"]],"b":[["GO%3A0003096","renal sodium ion transport"],["GO%3A0035725","sodium ion transmembrane transport"],["GO%3A0006814","sodium ion transport"],["NCBIfam%3ANF050096","bicarbonate transporter BicA"],["NCBIfam%3ATIGR02711","cation/acetate symporter ActP"],["NCBIfam%3ANF047943","citrate/sodium symporter CitS"]]},{"id":"GO:0006950","l":"response to stress","na":1,"nb":67,"a":[["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"]],"b":[["GO%3A0033554","cellular response to stress"],["GO%3A0006952","defense response"],["GO%3A0033555","multicellular organismal response to stress"],["GO%3A0003299","muscle hypertrophy in response to stress"],["GO%3A0009271","phage shock"],["GO%3A0034059","response to anoxia"]]},{"id":"GO:0000271","l":"polysaccharide biosynthetic process","na":1,"nb":66,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"]],"b":[["ComplexPortal%3ACPX-417","Glucosidase II complex"],["GO%3A0051072","4,6-pyruvylated galactose residue biosynthetic process"],["GO%3A0042121","alginic acid biosynthetic process"],["GO%3A0035884","arabinan biosynthetic process"],["GO%3A0045227","capsule polysaccharide biosynthetic process"],["GO%3A0070592","cell wall polysaccharide biosynthetic process"]]},{"id":"GO:0044282","l":"small molecule catabolic process","na":1,"nb":63,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"]],"b":[["GO%3A0046164","alcohol catabolic process"],["GO%3A0046395","carboxylic acid catabolic process"],["GO%3A0019341","dibenzo-p-dioxin catabolic process"],["GO%3A0046294","formaldehyde catabolic process"],["GO%3A0046952","ketone body catabolic process"],["GO%3A0042182","ketone catabolic process"]]},{"id":"GO:0071973","l":"bacterial-type flagellum-dependent cell motility","na":1,"nb":60,"a":[["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"]],"b":[["ComplexPortal%3ACPX-4886","DNA-directed RNA polymerase holoenzyme complex, SigmaF variant"],["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["GO%3A0071973","bacterial-type flagellum-dependent cell motility"],["GO%3A0071978","bacterial-type flagellum-dependent swarming motility"]]},{"id":"GO:0019752","l":"carboxylic acid metabolic process","na":1,"nb":59,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"]],"b":[["GO%3A1902056","(25S)-Delta(7)-dafachronate metabolic process"],["GO%3A0006525","arginine metabolic process"],["GO%3A0009072","aromatic amino acid metabolic process"],["GO%3A0018872","arsonoacetate metabolic process"],["GO%3A0120552","branched-chain alpha-keto acid decarboxylation to branched-chain acyl-CoA"],["GO%3A0009081","branched-chain amino acid metabolic process"]]},{"id":"CHEBI:17879","l":"4-hydroxybenzoate","na":1,"nb":57,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["EC%3A1.13.11.41","2,4'-dihydroxyacetophenone dioxygenase"],["EC%3A1.14.13.2","4-hydroxybenzoate 3-monooxygenase"],["EC%3A1.14.13.33","4-hydroxybenzoate 3-monooxygenase [NAD(P)H]"],["EC%3A1.14.13.64","4-hydroxybenzoate 1-hydroxylase"],["EC%3A1.14.14.92","benzoate 4-monooxygenase"],["EC%3A1.14.19.55","4-hydroxybenzoate brominase (decarboxylating)"]]},{"id":"CHEBI:15589","l":"(S)-malate(2-)","na":1,"nb":56,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["EC%3A1.1.1.299","malate dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.1.37","(S)-malate dehydrogenase (NAD(+), oxaloacetate-forming)"],["EC%3A1.1.1.38","malate dehydrogenase (oxaloacetate-decarboxylating)"],["EC%3A1.1.1.39","malate dehydrogenase (decarboxylating)"],["EC%3A1.1.1.40","malate dehydrogenase (oxaloacetate-decarboxylating) (NADP(+))"],["EC%3A1.1.1.82","malate dehydrogenase (NADP(+))"]]},{"id":"NCBITaxon:2","l":"Bacteria","na":56,"nb":1,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2","Bacteria orthologous groups (OrthoDB)"]]},{"id":"GO:0046394","l":"carboxylic acid biosynthetic process","na":1,"nb":55,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["GO%3A0042861","achromobactin biosynthetic process"],["GO%3A1901112","actinorhodin biosynthetic process"],["GO%3A0006523","alanine biosynthetic process"],["GO%3A0019578","aldaric acid biosynthetic process"],["GO%3A0042121","alginic acid biosynthetic process"],["GO%3A0009073","aromatic amino acid biosynthetic process"]]},{"id":"GO:0006094","l":"gluconeogenesis","na":1,"nb":52,"a":[["PSY_Transgenic_Rice_Rhizosphere_Methane_Community.html","PSY Transgenic Rice Rhizosphere Methane-Mitigating Community"]],"b":[["ComplexPortal%3ACPX-1992","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-2039","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-2040","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex"],["ComplexPortal%3ACPX-1994","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"],["ComplexPortal%3ACPX-2041","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"],["ComplexPortal%3ACPX-2042","6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 2 complex"]]},{"id":"GO:0006865","l":"amino acid transport","na":1,"nb":52,"a":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"]],"b":[["GO%3A0015800","acidic amino acid transport"],["GO%3A0043090","amino acid import"],["GO%3A0051933","amino acid neurotransmitter reuptake"],["GO%3A0003333","amino acid transmembrane transport"],["GO%3A0006865","amino acid transport"],["GO%3A0015802","basic amino acid transport"]]},{"id":"GO:0009117","l":"nucleotide metabolic process","na":1,"nb":50,"a":[["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"]],"b":[["GO%3A0009394","2'-deoxyribonucleotide metabolic process"],["GO%3A0009187","cyclic nucleotide metabolic process"],["GO%3A0015959","diadenosine polyphosphate metabolic process"],["GO%3A0072387","flavin adenine dinucleotide metabolic process"],["GO%3A0046496","nicotinamide nucleotide metabolic process"],["GO%3A0009165","nucleotide biosynthetic process"]]},{"id":"GO:0044550","l":"secondary metabolite biosynthetic process","na":1,"nb":46,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["GO%3A1900581","(17Z)-protosta-17(20),24-dien-3beta-ol biosynthetic process"],["GO%3A0009821","alkaloid biosynthetic process"],["GO%3A1900587","arugosin biosynthetic process"],["GO%3A0036184","asperthecin biosynthetic process"],["GO%3A0062032","cichorine biosynthetic process"],["GO%3A1900799","cordyol C biosynthetic process"]]},{"id":"CHEBI:30212","l":"photon","na":1,"nb":45,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["EC%3A1.10.3.9","photosystem II"],["EC%3A1.13.12.13","Oplophorus-luciferin 2-monooxygenase"],["EC%3A1.13.12.18","dinoflagellate luciferase"],["EC%3A1.13.12.5","Renilla-type luciferase"],["EC%3A1.13.12.6","Cypridina-luciferin 2-monooxygenase"],["EC%3A1.13.12.7","firefly luciferase"]]},{"id":"CHEBI:506227","l":"N-acetyl-D-glucosamine","na":1,"nb":44,"a":[["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["EC%3A1.1.3.29","N-acylhexosamine oxidase"],["EC%3A2.3.1.3","glucosamine N-acetyltransferase"],["EC%3A2.4.1.211","1,3-beta-galactosyl-N-acetylhexosamine phosphorylase"],["EC%3A2.4.1.280","N,N'-diacetylchitobiose phosphorylase"],["EC%3A2.4.1.320","1,4-beta-mannosyl-N-acetylglucosamine phosphorylase"],["EC%3A2.4.1.90","N-acetyllactosamine synthase"]]},{"id":"GO:0042178","l":"xenobiotic catabolic process","na":1,"nb":42,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["GO%3A0046230","2-aminobenzenesulfonate catabolic process"],["GO%3A0046304","2-nitropropane catabolic process"],["GO%3A0019610","3-hydroxyphenylacetate catabolic process"],["GO%3A0019380","3-phenylpropionate catabolic process"],["GO%3A0046196","4-nitrophenol catabolic process"],["GO%3A0019639","6-hydroxycineole catabolic process"]]},{"id":"GO:0030198","l":"extracellular matrix organization","na":1,"nb":41,"a":[["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]],"b":[["ComplexPortal%3ACPX-1801","Integrin alpha2-beta1 complex"],["ComplexPortal%3ACPX-3115","Integrin alpha2-beta1 complex"],["ComplexPortal%3ACPX-4423","Matrilin-1 complex"],["ComplexPortal%3ACPX-4463","Matrilin-1 complex"],["ComplexPortal%3ACPX-4521","Matrilin-1 complex"],["ComplexPortal%3ACPX-4503","Matrilin-1 - Matrilin-3 complex"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima MSB8","na":1,"nb":39,"a":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]],"b":[["Pfam%3APF02829","3H domain"],["Pfam%3APF13175","AAA ATPase domain"],["Pfam%3APF01958","Aspartate dehydrogenase, C-terminal"],["Pfam%3APF05448","Acetyl xylan esterase (AXE1)"],["Pfam%3APF04509","CheC-like family"],["Pfam%3APF13690","Chemotaxis phosphatase CheX"]]},{"id":"GO:0006954","l":"inflammatory response","na":1,"nb":38,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["ComplexPortal%3ACPX-2862","Caspase-7 complex"],["ComplexPortal%3ACPX-3947","Caspase-7 complex"],["ComplexPortal%3ACPX-363","Heparanase complex"],["ComplexPortal%3ACPX-10322","IL33 receptor-ligand complex"],["ComplexPortal%3ACPX-9301","Interleukin-17A complex"],["ComplexPortal%3ACPX-10317","Interleukin-26 complex"]]},{"id":"GO:0007267","l":"cell-cell signaling","na":1,"nb":38,"a":[["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["ComplexPortal%3ACPX-10317","Interleukin-26 complex"],["GO%3A0035425","autocrine signaling"],["GO%3A0061939","c-di-GMP signaling"],["GO%3A0007267","cell-cell signaling"],["GO%3A0045168","cell-cell signaling involved in cell fate commitment"],["GO%3A0060764","cell-cell signaling involved in mammary gland development"]]},{"id":"GO:0008283","l":"cell population proliferation","na":1,"nb":37,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["ComplexPortal%3ACPX-2799","CRL4-DCAF4 E3 ubiquitin ligase complex, CUL4A variant"],["ComplexPortal%3ACPX-2859","CRL4-DCAF4 E3 ubiquitin ligase complex, CUL4B variant"],["GO%3A0008283","cell population proliferation"],["GO%3A0071838","cell proliferation in bone marrow"],["GO%3A0035736","cell proliferation involved in compound eye morphogenesis"],["GO%3A0060722","cell proliferation involved in embryonic placenta development"]]},{"id":"GO:0009231","l":"riboflavin biosynthetic process","na":1,"nb":36,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["GO%3A0009231","riboflavin biosynthetic process"],["NCBIfam%3ANF000814","6,7-dimethyl-8-ribityllumazine synthase"],["NCBIfam%3ANF009084","6,7-dimethyl-8-ribityllumazine synthase"],["NCBIfam%3ANF013081","6,7-dimethyl-8-ribityllumazine synthase"],["NCBIfam%3ATIGR00114","6,7-dimethyl-8-ribityllumazine synthase"],["NCBIfam%3ANF006803","bifunctional 3,4-dihydroxy-2-butanone-4-phosphate synthase/GTP cyclohydrolase II"]]},{"id":"GO:1900376","l":"regulation of secondary metabolite biosynthetic process","na":1,"nb":36,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"]],"b":[["GO%3A1900377","negative regulation of secondary metabolite biosynthetic process"],["GO%3A1900378","positive regulation of secondary metabolite biosynthetic process"],["GO%3A1900177","regulation of aflatoxin biosynthetic process"],["GO%3A1900626","regulation of arugosin biosynthetic process"],["GO%3A1900379","regulation of asperthecin biosynthetic process"],["GO%3A1900861","regulation of cordyol C biosynthetic process"]]},{"id":"NCBITaxon:1898203","l":"Lachnospiraceae bacterium","na":1,"nb":35,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]],"b":[["TED%3AAF-A0A2G3Q064-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G3Q064-F1-model_v4_TED01"],["TED%3AAF-A0A316PVU3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A316PVU3-F1-model_v4_TED02"],["TED%3AAF-A0A349YHB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349YHB4-F1-model_v4_TED01"],["TED%3AAF-A0A349ZVK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349ZVK2-F1-model_v4_TED01"],["TED%3AAF-A0A354ID29-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A354ID29-F1-model_v4_TED04"],["TED%3AAF-A0A355NJL5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A355NJL5-F1-model_v4_TED02"]]},{"id":"CHEBI:17855","l":"triglyceride","na":1,"nb":34,"a":[["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["EC%3A2.3.1.158","phospholipid:diacylglycerol acyltransferase"],["EC%3A2.3.1.77","triacylglycerol--sterol O-acyltransferase"],["EC%3A3.1.1.3","triacylglycerol lipase"],["EC%3A3.1.1.34","lipoprotein lipase"],["EC%3A3.1.1.79","hormone-sensitive lipase"],["RHEA%3A77987","9-hydroxy-octadecanoate + a triacylglycerol = 9-(acyloxy)-octadecanoate + a 1,3-diacylglycerol"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":1,"nb":32,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["Pfam%3APF25848","Rodlin protein"],["Pfam%3APF13420","Acetyltransferase (GNAT) domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF26381","BREX System ATPase PglY protein 5th domain"],["Pfam%3APF26382","BREX System ATPase PglY protein 6th domain"]]},{"id":"GO:0044780","l":"bacterial-type flagellum assembly","na":1,"nb":30,"a":[["SynCom_MetG2_Rhizobacteria_Sugarcane_Stress_Resilience.html","SynCom MetG2 Rhizobacteria Sugarcane Stress Resilience"]],"b":[["ComplexPortal%3ACPX-4886","DNA-directed RNA polymerase holoenzyme complex, SigmaF variant"],["GO%3A0044780","bacterial-type flagellum assembly"],["NCBIfam%3ANF007836","flagella biosynthesis regulatory protein FliT"],["NCBIfam%3ANF006281","flagella length regulator FlaG"],["NCBIfam%3ANF047373","flagellar assembly lytic transglycosylase"],["NCBIfam%3ATIGR02541","flagellar assembly peptidoglycan hydrolase FlgJ"]]},{"id":"GO:0046718","l":"symbiont entry into host cell","na":1,"nb":30,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["ComplexPortal%3ACPX-5768","MERS-CoV Spike - human DPP4 receptor complex"],["ComplexPortal%3ACPX-5769","MERS-CoV Spike - human DPP4 receptor complex"],["ComplexPortal%3ACPX-5683","SARS-CoV-2 Spike - human ACE2 receptor complex"],["ComplexPortal%3ACPX-6761","SARS-CoV-2 Spike - human CLEC4M lectin complex"],["ComplexPortal%3ACPX-5695","SARS-CoV Spike - human ACE2 receptor complex"],["ComplexPortal%3ACPX-5696","SARS-CoV Spike - human CLEC4M lectin complex"]]},{"id":"GO:0006526","l":"L-arginine biosynthetic process","na":1,"nb":28,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["ComplexPortal%3ACPX-579","Carbamoyl-phosphate synthase arginine-specific"],["ComplexPortal%3ACPX-1937","Carbamoyl phosphate synthetase complex"],["ComplexPortal%3ACPX-1151","N-acetylglutamate synthase NAGS/NAGK complex"],["GO%3A0006526","L-arginine biosynthetic process"],["NCBIfam%3ANF003474","acetylornithine deacetylase"],["NCBIfam%3ATIGR01892","acetylornithine deacetylase"]]},{"id":"CHEBI:16235","l":"guanine","na":1,"nb":27,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["EC%3A2.4.2.1","purine-nucleoside phosphorylase"],["EC%3A2.4.2.15","guanosine phosphorylase"],["EC%3A2.4.2.29","tRNA-guanosine(34) preQ1 transglycosylase"],["EC%3A2.4.2.48","tRNA-guanine(15) transglycosylase"],["EC%3A2.4.2.64","tRNA-guanosine(34) queuine transglycosylase"],["EC%3A2.4.2.8","hypoxanthine phosphoribosyltransferase"]]},{"id":"CHEBI:17234","l":"glucose","na":26,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:16007","l":"methanethiol","na":1,"nb":25,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["EC%3A1.14.13.131","dissimilatory dimethyl-sulfide monooxygenase"],["EC%3A1.8.1.21","dissimilatory dimethyldisulfide reductase"],["EC%3A1.8.3.4","methanethiol oxidase"],["EC%3A2.1.1.251","methylated-thiol--coenzyme M methyltransferase"],["EC%3A2.1.1.334","methanethiol S-methyltransferase"],["EC%3A2.5.1.49","O-acetylhomoserine aminocarboxypropyltransferase"]]},{"id":"CHEBI:18346","l":"vanillin","na":1,"nb":25,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"]],"b":[["EC%3A1.1.3.38","vanillyl-alcohol oxidase"],["EC%3A1.11.1.16","versatile peroxidase"],["EC%3A1.13.11.43","lignostilbene alphabeta-dioxygenase"],["EC%3A1.13.11.88","isoeugenol monooxygenase"],["EC%3A1.13.11.94","4-vinylguaiacol dioxygenase"],["EC%3A1.2.1.67","vanillin dehydrogenase"]]},{"id":"NCBITaxon:226186","l":"Bacteroides thetaiotaomicron VPI-5482","na":1,"nb":25,"a":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"]],"b":[["Pfam%3APF06439","3-keto-alpha-glucoside-1,2-lyase-like domain"],["Pfam%3APF13444","Acetyltransferase (GNAT) domain"],["Pfam%3APF19576","Acyltransferase"],["Pfam%3APF23764","GLAA-B beta-barrel domain II"],["Pfam%3APF13715","CarboxypepD_reg-like domain"],["Pfam%3APF26120","SusF, first starch specific CBM"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":1,"nb":25,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["Pfam%3APF13372","Alginate export"],["Pfam%3APF25965","ALG44 beta-barrel domain"],["Pfam%3APF25964","ALG44, barrel-sandwich hybrid domain"],["Pfam%3APF16844","Dinitrogenase iron-molybdenum cofactor, N-terminal"],["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"]]},{"id":"GO:0002221","l":"pattern recognition receptor signaling pathway","na":1,"nb":24,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["ComplexPortal%3ACPX-4242","Caspase-1 complex"],["ComplexPortal%3ACPX-952","Caspase-1 complex"],["ComplexPortal%3ACPX-4144","NLRC4 inflammasome"],["ComplexPortal%3ACPX-4082","NLRP1 inflammasome"],["ComplexPortal%3ACPX-4947","NLRP1 inflammasome, variant 1"],["ComplexPortal%3ACPX-4948","NLRP1 inflammasome, variant 2"]]},{"id":"GO:0018958","l":"phenol-containing compound metabolic process","na":1,"nb":24,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["GO%3A0031147","1-(3,5-dichloro-2,6-dihydroxy-4-methoxyphenyl)hexan-1-one metabolic process"],["GO%3A0018921","3-hydroxybenzyl alcohol metabolic process"],["GO%3A1901022","4-hydroxyphenylacetate metabolic process"],["GO%3A0018960","4-nitrophenol metabolic process"],["GO%3A0042215","anaerobic phenol-containing compound metabolic process"],["GO%3A0036182","asperthecin metabolic process"]]},{"id":"GO:0006221","l":"pyrimidine nucleotide biosynthetic process","na":1,"nb":22,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["ComplexPortal%3ACPX-579","Carbamoyl-phosphate synthase arginine-specific"],["GO%3A0009221","pyrimidine deoxyribonucleotide biosynthetic process"],["GO%3A0006221","pyrimidine nucleotide biosynthetic process"],["GO%3A0032262","pyrimidine nucleotide salvage"],["GO%3A0009220","pyrimidine ribonucleotide biosynthetic process"],["NCBIfam%3ANF018158","CTP synthase N-terminus"]]},{"id":"CHEBI:17437","l":"dimethyl sulfide","na":1,"nb":21,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["EC%3A1.14.13.131","dissimilatory dimethyl-sulfide monooxygenase"],["EC%3A1.14.13.245","assimilatory dimethylsulfide S-monooxygenase"],["EC%3A1.8.2.4","dimethyl sulfide:cytochrome c2 reductase"],["EC%3A1.8.5.3","respiratory dimethylsulfoxide reductase"],["EC%3A2.1.1.19","trimethylsulfonium--tetrahydrofolate N-methyltransferase"],["EC%3A2.1.1.334","methanethiol S-methyltransferase"]]},{"id":"GO:0006817","l":"phosphate ion transport","na":1,"nb":21,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["GO%3A0035435","phosphate ion transmembrane transport"],["GO%3A0006817","phosphate ion transport"],["GO%3A0044341","sodium-dependent phosphate transport"],["NCBIfam%3ANF033774","inorganic phosphate transporter PitA"],["NCBIfam%3ATIGR00972","phosphate ABC transporter ATP-binding protein PstB"],["NCBIfam%3ANF023916","phosphate ABC transporter permease family protein"]]},{"id":"CHEBI:16411","l":"indole-3-acetic acid","na":20,"nb":1,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_IAC","IAC-binding site"]]},{"id":"CHEBI:2181","l":"L-fucopyranose","na":1,"nb":20,"a":[["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"]],"b":[["EC%3A1.1.1.122","D-threo-aldose 1-dehydrogenase"],["EC%3A3.2.1.51","alpha-L-fucosidase"],["EC%3A3.2.1.63","1,2-alpha-L-fucosidase"],["EC%3A5.3.1.25","L-fucose isomerase"],["RHEA%3A49308","a neolactoside IV(2)-alpha-Fuc-nLc4Cer(d18:0) + H2O = a neolactoside nLc4Cer(d18:0) + L-fucose"],["RHEA%3A48224","a neolactoside IV(2)-alpha-Fuc-nLc4Cer(d18:1(4E)) + H2O = a neolactoside nLc4Cer(d18:1(4E)) + L-fucose"]]},{"id":"GO:0052031","l":"symbiont-mediated perturbation of host defense response","na":1,"nb":20,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["GO%3A0140415","effector-mediated perturbation of host defenses by symbiont"],["GO%3A0140424","symbiont-mediated activation of blood coagulation, intrinsic pathway"],["GO%3A0039587","symbiont-mediated-mediated suppression of host tetherin activity"],["GO%3A0052084","symbiont-mediated modulation of host ethylene-mediated defense response"],["GO%3A0052031","symbiont-mediated perturbation of host defense response"],["GO%3A0052553","symbiont-mediated perturbation of host immune response"]]},{"id":"CHEBI:18022","l":"thiocyanate","na":1,"nb":19,"a":[["Thiocyanate_Afipia_Thiobacillus_Bioreactor_Community.html","Thiocyanate-Degrading Afipia and Thiobacillus Bioreactor Community"]],"b":[["EC%3A1.8.2.7","thiocyanate desulfurase"],["EC%3A2.1.1.n4","thiocyanate methyltransferase"],["EC%3A2.8.1.1","thiosulfate sulfurtransferase"],["EC%3A3.5.5.8","thiocyanate hydrolase"],["RHEA%3A63880","thiocyanate + 2 Fe(III)-[cytochrome c] + H2O = cyanate + sulfur + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A21464","thiocyanate + H2O + 2 H(+) = carbonyl sulfide + NH4(+)"]]},{"id":"GO:0019319","l":"hexose biosynthetic process","na":1,"nb":19,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["GO%3A0019315","D-allose biosynthetic process"],["GO%3A0046370","fructose biosynthetic process"],["GO%3A0042353","fucose biosynthetic process"],["GO%3A0046369","galactose biosynthetic process"],["GO%3A0006094","gluconeogenesis"],["GO%3A0019319","hexose biosynthetic process"]]},{"id":"CHEBI:16838","l":"polyphosphate","na":1,"nb":18,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"]],"b":[["EC%3A2.7.1.63","polyphosphate--glucose phosphotransferase"],["EC%3A2.7.4.1","ATP-polyphosphate phosphotransferase"],["EC%3A2.7.4.17","3-phosphoglyceroyl-phosphate--polyphosphate phosphotransferase"],["EC%3A2.7.4.20","dolichyl-diphosphate--polyphosphate phosphotransferase"],["EC%3A2.7.4.33","AMP-polyphosphate phosphotransferase"],["EC%3A2.7.4.34","GDP-polyphosphate phosphotransferase"]]},{"id":"NCBITaxon:2697049","l":"Severe acute respiratory syndrome coronavirus 2","na":1,"nb":18,"a":[["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"]],"b":[["IDPO%3A0000002","disorder"],["IDPO%3A0000033","flexible linker"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000041","glycosylation display site"],["IDPO%3A0000048","limited proteolysis display site"],["IDPO%3A0000037","molecular recognition display site"]]},{"id":"CHEBI:16881","l":"1H-indole","na":1,"nb":17,"a":[["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"]],"b":[["EC%3A1.13.11.17","indole 2,3-dioxygenase"],["EC%3A1.14.14.153","indole-2-monooxygenase"],["EC%3A4.1.1.92","indole-3-carboxylate decarboxylase"],["EC%3A4.1.2.8","indole-3-glycerol-phosphate lyase"],["EC%3A4.1.99.1","tryptophanase"],["EC%3A4.2.1.122","tryptophan synthase (indole-salvaging)"]]},{"id":"CHEBI:17120","l":"hexanoate","na":1,"nb":17,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"]],"b":[["EC%3A3.5.1.39","alkylamidase"],["RHEA%3A53496","1-hexanoyl-2-acyl-sn-glycero-3-phosphocholine + H2O = hexanoate + a 2-acyl-sn-glycero-3-phosphocholine + H(+)"],["RHEA%3A54464","1-octadecanoyl-2-hexanoyl-sn-glycero-3-phosphocholine + H2O = hexanoate + 1-octadecanoyl-sn-glycero-3-phosphocholine + H(+)"],["RHEA%3A47352","a hexanoate ester + H2O = an aliphatic alcohol + hexanoate + H(+)"],["RHEA%3A79351","hexanal + 2 Fe(III)-[cytochrome c] + H2O = hexanoate + 2 Fe(II)-[cytochrome c] + 3 H(+)"],["RHEA%3A67276","hexanal + NAD(+) + H2O = hexanoate + NADH + 2 H(+)"]]},{"id":"GO:0015940","l":"pantothenate biosynthetic process","na":1,"nb":17,"a":[["Variovorax_Cryptococcus_Vitamin_Mutualism_Microcosm.html","Variovorax-Cryptococcus Vitamin Cross-Feeding Microcosm"]],"b":[["GO%3A0015940","pantothenate biosynthetic process"],["NCBIfam%3ANF005087","2-dehydropantoate 2-reductase"],["NCBIfam%3ANF005092","2-dehydropantoate 2-reductase"],["NCBIfam%3ANF005093","2-dehydropantoate 2-reductase"],["NCBIfam%3ANF005094","2-dehydropantoate 2-reductase"],["NCBIfam%3ANF006083","2-dehydropantoate 2-reductase"]]},{"id":"GO:0006090","l":"pyruvate metabolic process","na":1,"nb":16,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"]],"b":[["GO%3A0061678","Entner-Doudoroff pathway"],["GO%3A0061718","glucose catabolic process to pyruvate"],["GO%3A0006096","glycolytic process"],["GO%3A0033508","L-glutamate fermentation"],["GO%3A0019617","protocatechuate catabolic process, meta-cleavage"],["GO%3A0042866","pyruvate biosynthetic process"]]},{"id":"GO:0006527","l":"L-arginine catabolic process","na":1,"nb":16,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["GO%3A0006527","L-arginine catabolic process"],["NCBIfam%3ATIGR01273","arginine decarboxylase"],["NCBIfam%3ANF002381","arginine deiminase"],["NCBIfam%3ATIGR01078","arginine deiminase"],["NCBIfam%3ANF007770","arginine N-succinyltransferase"],["NCBIfam%3ATIGR03244","arginine N-succinyltransferase"]]},{"id":"NCBITaxon:3847","l":"Glycine max","na":1,"nb":16,"a":[["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["Pfam%3APF02095","Extensin-like protein"],["Pfam%3APF00477","Small hydrophilic plant seed protein"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF08027","Albumin I chain b"],["Pfam%3APF10539","Development and cell death domain"],["Pfam%3APF03386","Early nodulin 93 ENOD93 protein"]]},{"id":"CHEBI:36080","l":"protein","na":1,"nb":15,"a":[["Wollastonite_Ramichloridium_Talaromyces_Fungal_Consortium.html","Wollastonite Ramichloridium-Talaromyces Fungal Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A3.A.16","The Endoplasmic Reticular Retrotranslocon (ER-RT) Family"],["TCDB%3A3.A.27","The Endoplasmic Reticulum Membrane Protein Insertion Complex (EMC) Family"],["TCDB%3A9.A.57","The Extended-Synaptotagmin (E-Syt) Family"],["TCDB%3A3.A.13","The Filamentous Phage Exporter (FPhE) Family"],["TCDB%3A9.A.37","The Nuclear Import Tax Protein (Tax) Family"]]},{"id":"GO:0044010","l":"single-species biofilm formation","na":1,"nb":15,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"]],"b":[["ComplexPortal%3ACPX-4063","ChpBS toxin-antitoxin complex"],["ComplexPortal%3ACPX-4743","Curli secretion complex"],["ComplexPortal%3ACPX-1079","DinJ-YafQ toxin-antitoxin complex"],["ComplexPortal%3ACPX-3296","Fucose-binding lectin II complex"],["ComplexPortal%3ACPX-1086","MazEF toxin-antitoxin complex"],["ComplexPortal%3ACPX-1084","MqsRA toxin-antitoxin complex"]]},{"id":"GO:0051453","l":"regulation of intracellular pH","na":1,"nb":15,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["ComplexPortal%3ACPX-3090","Glutathione-regulated potassium-efflux system KefB-KefG complex"],["ComplexPortal%3ACPX-2543","Glutathione-regulated potassium-efflux system KefC-KefF complex"],["ComplexPortal%3ACPX-26449","Sodium/proton exchanger complex, NHE1-CHP1 variant"],["ComplexPortal%3ACPX-26462","Sodium/proton exchanger complex, NHE1-CHP2 variant"],["ComplexPortal%3ACPX-26464","Sodium/proton exchanger complex, NHE1-CHP3 variant"],["ComplexPortal%3ACPX-26469","Sodium/proton exchanger complex, NHE2-CHP1 variant"]]},{"id":"NCBITaxon:2157","l":"Archaea","na":15,"nb":1,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2157","Archaea orthologous groups (OrthoDB)"]]},{"id":"GO:0009607","l":"response to biotic stimulus","na":1,"nb":14,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["GO%3A0071216","cellular response to biotic stimulus"],["GO%3A0009595","detection of biotic stimulus"],["GO%3A0036180","filamentous growth of a population of unicellular organisms in response to biotic stimulus"],["GO%3A0009607","response to biotic stimulus"],["GO%3A0043207","response to external biotic stimulus"],["GO%3A1990840","response to lectin"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":1,"nb":14,"a":[["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"]],"b":[["Pfam%3APF03703","Bacterial PH domain"],["Pfam%3APF01322","Cytochrome C'"],["Pfam%3APF03139","Vanadium/alternative nitrogenase delta subunit"],["Pfam%3APF09527","Putative F0F1-ATPase subunit Ca2+/Mg2+ transporter"],["Pfam%3APF03270","Protein of unknown function, DUF269"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":1,"nb":14,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF02224","Cytidylate kinase"],["Pfam%3APF03319","Ethanolamine utilisation protein EutN/carboxysome"],["Pfam%3APF22019","alpha-1,4-glucan branching enzyme GlgB, N-terminal domain"],["Pfam%3APF21714","Circadian clock protein KaiA, N-terminal domain"],["Pfam%3APF07688","KaiA C-terminal domain"]]},{"id":"CHEBI:15428","l":"glycine","na":1,"nb":13,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["MCSA%3A718","caspase-1"],["MCSA%3A599","dipeptidase E"],["MCSA%3A906","gelatinase A"],["MCSA%3A762","glycine C-acetyltransferase"],["MCSA%3A746","L-peptidase"],["MCSA%3A477","picornain 3C"]]},{"id":"GO:0019076","l":"viral release from host cell","na":1,"nb":13,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0046753","non-lytic viral release"],["GO%3A0044659","viral release from host cell by cytolysis"],["GO%3A0019076","viral release from host cell"],["Reactome%3AR-HSA-168298","Release"],["NCBIfam%3ANF037577","Rz1-like spanin outer membrane subunit"],["NCBIfam%3ANF012767","Vpu"]]},{"id":"GO:2000145","l":"regulation of cell motility","na":1,"nb":13,"a":[["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["GO%3A2000146","negative regulation of cell motility"],["GO%3A2000147","positive regulation of cell motility"],["GO%3A1905416","regulation of amoeboid sperm motility"],["GO%3A1902021","regulation of bacterial-type flagellum-dependent cell motility"],["GO%3A0030334","regulation of cell migration"],["GO%3A2000145","regulation of cell motility"]]},{"id":"NCBITaxon:165179","l":"Segatella copri","na":1,"nb":13,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["TED%3AAF-A0A3R6DW71-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3R6DW71-F1-model_v4_TED02"],["TED%3AAF-A0A3R6EGS2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R6EGS2-F1-model_v4_TED01"],["TED%3AAF-A0A5Q5FTM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Q5FTM4-F1-model_v4_TED01"],["TED%3AAF-A0A3R5WNG5-F1-model_v4_TED02","TED novel fold AF-A0A3R5WNG5-F1-model_v4_TED02"],["TED%3AAF-A0A3R5YKW9-F1-model_v4_TED01","TED novel fold AF-A0A3R5YKW9-F1-model_v4_TED01"],["TED%3AAF-A0A3R6FRY2-F1-model_v4_TED01","TED novel fold AF-A0A3R6FRY2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:239","l":"Flavobacterium sp.","na":1,"nb":13,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["Pfam%3APF21331","Isoamylase, C-terminal"],["TED%3AAF-A0A2E4PC55-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E4PC55-F1-model_v4_TED02"],["TED%3AAF-A0A2E4PGC5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4PGC5-F1-model_v4_TED01"],["TED%3AAF-A0A2E4PMB7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E4PMB7-F1-model_v4_TED02"],["TED%3AAF-A0A355BEV2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A355BEV2-F1-model_v4_TED02"],["TED%3AAF-A0A519QLA6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A519QLA6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:267377","l":"Methanococcus maripaludis S2","na":1,"nb":13,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"]],"b":[["Pfam%3APF09171","N-glycosylase/DNA lyase"],["Pfam%3APF06847","Archaeal Peptidase A24 C-terminus Type II"],["Pfam%3APF06819","Archaeal Peptidase A24 C-terminal Domain"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF26558","3-dehydroquinate synthase II C-terminal domain"],["Pfam%3APF01959","3-dehydroquinate synthase II N-terminal domain"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":13,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["Pfam%3APF07832","Cfr10I/Bse634I restriction endonuclease"],["Pfam%3APF22348","Colicin-A N-terminal domain"],["Pfam%3APF01024","Colicin pore forming domain"],["Pfam%3APF18427","DD-reactivating factor swiveling domain"],["Pfam%3APF02286","Dehydratase large subunit"],["Pfam%3APF02288","Dehydratase medium subunit"]]},{"id":"CHEBI:16136","l":"hydrogen sulfide","na":12,"nb":1,"a":[["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["MCSA%3A398","sulfite reductase (NADPH)"]]},{"id":"CHEBI:16188","l":"octan-1-ol","na":1,"nb":12,"a":[["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["EC%3A1.1.1.73","octanol dehydrogenase"],["EC%3A1.14.15.3","alkane 1-monooxygenase"],["RHEA%3A79323","octan-1-ol + 2 Fe(III)-[cytochrome c] = octanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A64628","octan-1-ol + acetyl-CoA = octyl acetate + CoA"],["RHEA%3A64852","octan-1-ol + benzoyl-CoA = octyl benzoate + CoA"],["RHEA%3A44064","octan-1-ol + hexadecanoyl-CoA = octyl hexadecanoate + CoA"]]},{"id":"GO:0043419","l":"urea catabolic process","na":1,"nb":12,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"]],"b":[["ComplexPortal%3ACPX-1296","Urease activation complex"],["GO%3A0043419","urea catabolic process"],["NCBIfam%3ANF010592","urease subunit alpha"],["NCBIfam%3ANF009682","urease subunit beta"],["NCBIfam%3ANF010591","urease subunit beta"],["NCBIfam%3ANF009712","urease subunit gamma"]]},{"id":"GO:0061687","l":"detoxification of inorganic compound","na":1,"nb":12,"a":[["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["GO%3A0140114","cellular detoxification of fluoride"],["GO%3A0140961","cellular detoxification of metal ion"],["GO%3A0140982","detoxification of aluminum ion"],["GO%3A0071585","detoxification of cadmium ion"],["GO%3A0010299","detoxification of cobalt ion"],["GO%3A0010273","detoxification of copper ion"]]},{"id":"CHEBI:16918","l":"gallate","na":1,"nb":11,"a":[["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["EC%3A1.13.11.57","gallate dioxygenase"],["EC%3A2.1.1.341","vanillate/3-O-methylgallate O-demethylase"],["EC%3A2.4.1.136","gallate 1-beta-glucosyltransferase"],["EC%3A3.1.1.20","tannase"],["EC%3A4.1.1.59","gallate decarboxylase"],["RHEA%3A12749","3,4,5-trihydroxybenzoate + H(+) = 1,2,3-trihydroxybenzene + CO2"]]},{"id":"CHEBI:17847","l":"p-cresol","na":1,"nb":11,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["EC%3A1.14.13.236","toluene 4-monooxygenase"],["EC%3A1.17.9.1","4-methylphenol dehydrogenase (hydroxylating)"],["EC%3A4.1.1.83","4-hydroxyphenylacetate decarboxylase"],["EC%3A4.1.99.19","2-iminoacetate synthase"],["RHEA%3A22732","4-hydroxyphenylacetate + H(+) = 4-methylphenol + CO2"],["RHEA%3A56976","4-methylphenol + 2 oxidized [azurin] + H2O = 4-hydroxybenzyl alcohol + 2 reduced [azurin] + 2 H(+)"]]},{"id":"CHEBI:18212","l":"selenite(2-)","na":1,"nb":11,"a":[["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"]],"b":[["EC%3A1.97.1.14","selenate reductase (quinol)"],["EC%3A1.97.1.9","selenate reductase (cytochrome c)"],["RHEA%3A80603","selenite + 2 Fe(III)-[cytochrome c] + H2O = 2 Fe(II)-[cytochrome] + selenate + 2 H(+)"],["RHEA%3A34903","selenite + 4 glutathione + 2 H(+) = selenodiglutathione + glutathione disulfide + 3 H2O"],["RHEA%3A14029","selenite + A + H2O = selenate + AH2"],["RHEA%3A51636","selenite + a quinone + H2O = selenate + a quinol"]]},{"id":"CHEBI:28009","l":"N-acetyl-beta-D-glucosamine","na":1,"nb":11,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]],"b":[["RHEA%3A85211","alpha-di-N-acetylchitobiose + H2O = N-acetyl-beta-D-glucosamine + N-acetyl-alpha-D-glucosamine"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"],["TCDB%3A4.A.6","The PTS Mannose-Fructose-Sorbose (Man) Family"]]},{"id":"CHEBI:28685","l":"molybdenum atom","na":1,"nb":11,"a":[["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_MO","MO-binding site"],["proteintraitsmech%3AMETALPDB_MO_DINUCLEAR","dinuclear molybdenum site"],["proteintraitsmech%3AMETALPDB_MO_HEPTANUCLEAR","heptanuclear molybdenum site"],["proteintraitsmech%3AMETALPDB_MO_HEXANUCLEAR","hexanuclear molybdenum site"],["proteintraitsmech%3AMETALPDB_MO_MONONUCLEAR","mononuclear molybdenum site"],["proteintraitsmech%3AMETALPDB_MO_MULTINUCLEAR","multinuclear molybdenum site"]]},{"id":"CHEBI:49807","l":"lead(2+)","na":1,"nb":11,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_49807","requires lead(2+)"],["RHEA%3A52580","Pb(2+)(in) + ATP + H2O = Pb(2+)(out) + ADP + phosphate + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.4","The Cation Diffusion Facilitator (CDF) Family"],["TCDB%3A2.A.11","The Citrate-Mg2+:H+ (CitM) Citrate-Ca2+:H+ (CitH) Symporter (CitMHS) Family"],["TCDB%3A1.A.87","The Mechanosensitive Calcium Channel (MCA) Family"]]},{"id":"CHEBI:15075","l":"selenate","na":1,"nb":10,"a":[["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"]],"b":[["EC%3A1.97.1.14","selenate reductase (quinol)"],["EC%3A1.97.1.9","selenate reductase (cytochrome c)"],["RHEA%3A34887","selenate(in) = selenate(out)"],["RHEA%3A72079","selenate(out) + 3 Na(+)(out) = selenate(in) + 3 Na(+)(in)"],["RHEA%3A34883","selenate(out) + ATP + H2O = selenate(in) + ADP + phosphate + H(+)"],["RHEA%3A80603","selenite + 2 Fe(III)-[cytochrome c] + H2O = 2 Fe(II)-[cytochrome] + selenate + 2 H(+)"]]},{"id":"CHEBI:15688","l":"acetoin","na":1,"nb":10,"a":[["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"]],"b":[["EC%3A2.2.1.4","acetoin--ribose-5-phosphate transaldolase"],["EC%3A2.3.1.190","acetoin dehydrogenase system"],["RHEA%3A54364","2 acetaldehyde = acetoin"],["RHEA%3A76879","3-aminobutan-2-ol + NAD(+) + H2O = acetoin + NH4(+) + NADH + H(+)"],["RHEA%3A76931","3-aminobutan-2-ol + NADP(+) + H2O = acetoin + NH4(+) + NADPH + H(+)"],["RHEA%3A54368","acetaldehyde + pyruvate + H(+) = acetoin + CO2"]]},{"id":"CHEBI:16581","l":"pregnenolone","na":1,"nb":10,"a":[["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"]],"b":[["EC%3A1.14.14.19","steroid 17alpha-monooxygenase"],["EC%3A1.14.15.6","cholesterol monooxygenase (side-chain-cleaving)"],["RHEA%3A34343","(20R,22R)-20,22-dihydroxycholesterol + 2 reduced [adrenodoxin] + O2 + 2 H(+) = 4-methylpentanal + pregnenolone + 2 oxidized [adrenodoxin] + 2 H2O"],["RHEA%3A35739","6 reduced [adrenodoxin] + cholesterol + 3 O2 + 6 H(+) = 4-methylpentanal + pregnenolone + 6 oxidized [adrenodoxin] + 4 H2O"],["RHEA%3A52356","pregnenolone + 3'-phosphoadenylyl sulfate = pregnenolone sulfate + adenosine 3',5'-bisphosphate + H(+)"],["RHEA%3A43924","pregnenolone + NAD(+) = pregn-5-ene-3,20-dione + NADH + H(+)"]]},{"id":"CHEBI:16738","l":"2,4-dichlorophenol","na":1,"nb":10,"a":[["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"]],"b":[["EC%3A1.14.11.43","(S)-dichlorprop dioxygenase (2-oxoglutarate)"],["EC%3A1.14.11.44","(R)-dichlorprop dioxygenase (2-oxoglutarate)"],["EC%3A1.14.13.20","2,4-dichlorophenol 6-monooxygenase"],["RHEA%3A86719","2,4-dichlorophenol + AH2 = 4-chlorophenol + chloride + A + H(+)"],["RHEA%3A80611","2,4-dichlorophenol + NADH + O2 + H(+) = 3,5-dichlorocatechol + NAD(+) + H2O"],["RHEA%3A20920","2,4-dichlorophenol + NADPH + O2 + H(+) = 3,5-dichlorocatechol + NADP(+) + H2O"]]},{"id":"CHEBI:17051","l":"fluoride","na":1,"nb":10,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["EC%3A2.5.1.63","adenosyl-fluoride synthase"],["EC%3A3.8.1.3","haloacetate dehalogenase"],["EC%3A3.8.2.2","diisopropyl-fluorophosphatase"],["RHEA%3A24100","diisopropyl fluorophosphate + H2O = diisopropyl phosphate + fluoride + 2 H(+)"],["RHEA%3A76159","fluoride(in) = fluoride(out)"],["RHEA%3A16661","fluoride + S-adenosyl-L-methionine = 5'-deoxy-5'-fluoroadenosine + L-methionine"]]},{"id":"CHEBI:17698","l":"chloramphenicol","na":1,"nb":10,"a":[["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"]],"b":[["EC%3A1.14.99.67","alpha-N-dichloroacetyl-p-aminophenylserinol N-oxygenase"],["EC%3A2.3.1.28","chloramphenicol O-acetyltransferase"],["RHEA%3A58884","alpha-N-dichloroacetyl-p-aminophenylserinol + AH2 + 2 O2 = chloramphenicol + A + 2 H2O"],["RHEA%3A18421","chloramphenicol + acetyl-CoA = chloramphenicol 3-acetate + CoA"],["RHEA%3A35287","chloramphenicol(in) + ATP + H2O = chloramphenicol(out) + ADP + phosphate + H(+)"],["RHEA%3A35059","chloramphenicol(in) + H(+)(out) = chloramphenicol(out) + H(+)(in)"]]},{"id":"GO:0006548","l":"L-histidine catabolic process","na":1,"nb":10,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["GO%3A0006548","L-histidine catabolic process"],["Reactome%3AR-HSA-70921","Histidine catabolism"],["proteintraitsmech%3ASEED_SUBSYSTEM_Histidine_Degradation","Histidine Degradation"],["NCBIfam%3ATIGR01227","formimidoylglutamase"],["NCBIfam%3ATIGR02022","formimidoylglutamate deiminase"],["NCBIfam%3ATIGR02024","glutamate formimidoyltransferase"]]},{"id":"GO:0070482","l":"response to oxygen levels","na":1,"nb":10,"a":[["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"]],"b":[["ComplexPortal%3ACPX-3982","dosPC diguanylate cyclase/c-di-GMP phosphodiesterase complex"],["ComplexPortal%3ACPX-1882","HAP1 transcriptional repressor complex, SSA1 variant"],["ComplexPortal%3ACPX-1883","HAP1 transcriptional repressor complex, SSA2 variant"],["ComplexPortal%3ACPX-1276","HMC complex"],["GO%3A0071453","cellular response to oxygen levels"],["GO%3A0003032","detection of oxygen"]]},{"id":"GO:2000146","l":"negative regulation of cell motility","na":1,"nb":10,"a":[["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["GO%3A1905417","negative regulation of amoeboid sperm motility"],["GO%3A1902201","negative regulation of bacterial-type flagellum-dependent cell motility"],["GO%3A0030336","negative regulation of cell migration"],["GO%3A2000146","negative regulation of cell motility"],["GO%3A1902020","negative regulation of cilium-dependent cell motility"],["PANTHER%3APTHR28616","COILED-COIL DOMAIN-CONTAINING PROTEIN 125"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":1,"nb":10,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["TED%3AAF-A0A5T2E4X7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5T2E4X7-F1-model_v4_TED01"],["TED%3AAF-A0A5Y4BP44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Y4BP44-F1-model_v4_TED01"],["TED%3AAF-A0A623P6F3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A623P6F3-F1-model_v4_TED02"],["TED%3AAF-A0A721BDS7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A721BDS7-F1-model_v4_TED02"],["TED%3AAF-A0A743P324-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A743P324-F1-model_v4_TED01"],["TED%3AAF-A0A757VWR3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A757VWR3-F1-model_v4_TED02"]]},{"id":"CHEBI:18248","l":"iron atom","na":1,"nb":9,"a":[["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18248","requires Fe"],["proteintraitsmech%3AMETALPDB_FE_DINUCLEAR","dinuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_HEPTANUCLEAR","heptanuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_HEXANUCLEAR","hexanuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_MONONUCLEAR","mononuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_OCTANUCLEAR","octanuclear iron site"]]},{"id":"CHEBI:26710","l":"sodium chloride","na":9,"nb":1,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["TCDB%3A2.A.30","The Cation-Chloride Cotransporter (CCC) Family"]]},{"id":"GO:0009266","l":"response to temperature stimulus","na":1,"nb":9,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["GO%3A0071502","cellular response to temperature stimulus"],["GO%3A0016048","detection of temperature stimulus"],["GO%3A0009409","response to cold"],["GO%3A0009408","response to heat"],["GO%3A0009266","response to temperature stimulus"],["GO%3A0010378","temperature compensation of the circadian clock"]]},{"id":"GO:0043903","l":"regulation of biological process involved in symbiotic interaction","na":1,"nb":9,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["GO%3A0052372","modulation by symbiont of entry into host"],["GO%3A0140471","positive regulation of transepithelial migration of symbiont in host"],["GO%3A0043903","regulation of biological process involved in symbiotic interaction"],["GO%3A0075045","regulation of formation by symbiont of haustorium for nutrient acquisition from host"],["GO%3A1901252","regulation of intracellular transport of viral material"],["GO%3A0070949","regulation of neutrophil mediated killing of symbiont cell"]]},{"id":"NCBITaxon:1344414","l":"Trichoderma reesei RUT C-30","na":1,"nb":9,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["Pfam%3APF00457","Glycosyl hydrolases family 11"],["Pfam%3APF01341","Glycosyl hydrolases family 6"],["PROSITE%3APS00155","Cutinase, serine active site"],["PROSITE%3APS00776","Glycosyl hydrolases family 11 (GH11) active site signature 1"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"],["PROSITE%3APS00655","Glycosyl hydrolases family 6 signature 1"]]},{"id":"NCBITaxon:2903","l":"Emiliania huxleyi","na":1,"nb":9,"a":[["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"]],"b":[["TED%3AAF-A0A7S3RZJ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3RZJ4-F1-model_v4_TED01"],["TED%3AAF-A0A7S3W933-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3W933-F1-model_v4_TED01"],["TED%3AAF-A0A7S3W9Q3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3W9Q3-F1-model_v4_TED01"],["TED%3AAF-R1DPG1-F1-model_v4_TED01","TED highly-symmetric fold AF-R1DPG1-F1-model_v4_TED01"],["TED%3AAF-A0A7S3TQB6-F1-model_v4_TED02","TED novel fold AF-A0A7S3TQB6-F1-model_v4_TED02"],["TED%3AAF-R1BEB4-F1-model_v4_TED01","TED novel fold AF-R1BEB4-F1-model_v4_TED01"]]},{"id":"CHEBI:27698","l":"vanadium atom","na":1,"nb":8,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_V_DECANUCLEAR","decanuclear vanadium site"],["proteintraitsmech%3AMETALPDB_V_DINUCLEAR","dinuclear vanadium site"],["proteintraitsmech%3AMETALPDB_V_HEPTANUCLEAR","heptanuclear vanadium site"],["proteintraitsmech%3AMETALPDB_V_HEXANUCLEAR","hexanuclear vanadium site"],["proteintraitsmech%3AMETALPDB_V_MONONUCLEAR","mononuclear vanadium site"],["proteintraitsmech%3AMETALPDB_V_OCTANUCLEAR","octanuclear vanadium site"]]},{"id":"CHEBI:37166","l":"xylan","na":8,"nb":1,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"GO:0042436","l":"indole-containing compound catabolic process","na":1,"nb":8,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["GO%3A0042433","indole catabolic process"],["GO%3A0042436","indole-containing compound catabolic process"],["GO%3A0042344","indole glucosinolate catabolic process"],["GO%3A0046216","indole phytoalexin catabolic process"],["GO%3A0042437","indoleacetic acid catabolic process"],["GO%3A0006569","L-tryptophan catabolic process"]]},{"id":"NCBITaxon:4081","l":"Solanum lycopersicum","na":1,"nb":8,"a":[["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF02977","Carboxypeptidase A inhibitor"],["Pfam%3APF26410","GH family 5 beta-mannosidase-like"],["Pfam%3APF02496","ABA/WDS induced protein"],["Pfam%3APF17302","Family of unknown function (DUF5351)"],["PROSITE%3APS00502","Polygalacturonase active site"]]},{"id":"NCBITaxon:492670","l":"Bacillus velezensis","na":8,"nb":1,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"]],"b":[["TED%3AAF-A0A7S9EWF1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S9EWF1-F1-model_v4_TED02"]]},{"id":"CHEBI:25017","l":"leucine","na":1,"nb":7,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.78","The Branched Chain Amino Acid Exporter (LIV-E) Family"],["TCDB%3A2.A.76","The Resistance to Homoserine/Threonine (RhtB) Family"],["MCSA%3A172","isoaspartyl dipeptidase"]]},{"id":"CHEBI:29195","l":"cyanate","na":1,"nb":7,"a":[["Thiocyanate_Afipia_Thiobacillus_Bioreactor_Community.html","Thiocyanate-Degrading Afipia and Thiobacillus Bioreactor Community"]],"b":[["EC%3A1.8.2.7","thiocyanate desulfurase"],["EC%3A4.2.1.104","cyanase"],["RHEA%3A11120","cyanate + hydrogencarbonate + 3 H(+) = NH4(+) + 2 CO2"],["RHEA%3A18489","cyanate + hydrogencarbonate + H(+) = carbamate + CO2"],["RHEA%3A29231","cyanate(in) = cyanate(out)"],["RHEA%3A63880","thiocyanate + 2 Fe(III)-[cytochrome c] + H2O = cyanate + sulfur + 2 Fe(II)-[cytochrome c] + 2 H(+)"]]},{"id":"CHEBI:32379","l":"cis,cis-muconate","na":1,"nb":7,"a":[["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["EC%3A1.13.11.1","catechol 1,2-dioxygenase"],["EC%3A5.5.1.1","muconate cycloisomerase"],["RHEA%3A23852","catechol + O2 = cis,cis-muconate + 2 H(+)"],["RHEA%3A30031","(S)-muconolactone = cis,cis-muconate + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["MCSA%3A959","muconate cycloisomerase (anti)"]]},{"id":"GO:0009292","l":"horizontal gene transfer","na":1,"nb":7,"a":[["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"]],"b":[["GO%3A0009294","DNA-mediated transformation"],["GO%3A0009292","horizontal gene transfer"],["GO%3A0009293","transduction"],["GO%3A0009291","unidirectional conjugation"],["NCBIfam%3ATIGR04359","entry exclusion lipoprotein TrbK"],["NCBIfam%3ATIGR04361","entry exclusion protein TrbK"]]},{"id":"GO:0040011","l":"locomotion","na":1,"nb":7,"a":[["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"]],"b":[["GO%3A0033058","directional locomotion"],["GO%3A0060361","flight"],["GO%3A0040011","locomotion"],["GO%3A0031987","locomotion involved in locomotory behavior"],["GO%3A0071965","multicellular organismal locomotion"],["GO%3A0036268","swimming"]]},{"id":"GO:0075136","l":"response to host","na":1,"nb":7,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0075136","response to host"],["GO%3A0075139","response to host iron concentration"],["GO%3A0075000","response to host osmotic environment"],["GO%3A0075138","response to host oxygen tension environment"],["GO%3A0075293","response to host pH environment"],["GO%3A0075137","response to host redox environment"]]},{"id":"NCBITaxon:2030806","l":"Burkholderiaceae bacterium","na":1,"nb":7,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["TED%3AAF-A0A5C7NHS1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7NHS1-F1-model_v4_TED01"],["TED%3AAF-A0A5C7Q2S0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A5C7Q2S0-F1-model_v4_TED04"],["TED%3AAF-A0A7L5Y4H7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7L5Y4H7-F1-model_v4_TED02"],["TED%3AAF-A0A520VNE1-F1-model_v4_TED02","TED novel fold AF-A0A520VNE1-F1-model_v4_TED02"],["TED%3AAF-A0A522SAF0-F1-model_v4_TED01","TED novel fold AF-A0A522SAF0-F1-model_v4_TED01"],["TED%3AAF-A0A5C7NTX8-F1-model_v4_TED02","TED novel fold AF-A0A5C7NTX8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:5722","l":"Trichomonas vaginalis","na":1,"nb":7,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["TED%3AAF-A2F3M7-F1-model_v4_TED03","TED highly-symmetric fold AF-A2F3M7-F1-model_v4_TED03"],["TED%3AAF-A2HEW4-F1-model_v4_TED01","TED highly-symmetric fold AF-A2HEW4-F1-model_v4_TED01"],["TED%3AAF-A2DT59-F1-model_v4_TED01","TED novel fold AF-A2DT59-F1-model_v4_TED01"],["TED%3AAF-A2E7I9-F1-model_v4_TED02","TED novel fold AF-A2E7I9-F1-model_v4_TED02"],["TED%3AAF-A2F6I8-F1-model_v4_TED02","TED novel fold AF-A2F6I8-F1-model_v4_TED02"],["TED%3AAF-A2FV33-F1-model_v4_TED01","TED novel fold AF-A2FV33-F1-model_v4_TED01"]]},{"id":"CHEBI:32139","l":"sodium hydrogencarbonate","na":6,"nb":1,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["TCDB%3A2.A.31","The Anion Exchanger (AE) Family"]]},{"id":"GO:0009268","l":"response to pH","na":1,"nb":6,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["GO%3A0071467","cellular response to pH"],["GO%3A0036177","filamentous growth of a population of unicellular organisms in response to pH"],["GO%3A0010447","response to acidic pH"],["GO%3A0010446","response to alkaline pH"],["GO%3A0036176","response to neutral pH"],["GO%3A0009268","response to pH"]]},{"id":"GO:0009684","l":"indoleacetic acid biosynthetic process","na":6,"nb":1,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["GO%3A0009684","indoleacetic acid biosynthetic process"]]},{"id":"GO:0044409","l":"symbiont entry into host","na":1,"nb":6,"a":[["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"]],"b":[["GO%3A0120326","appressorium-mediated entry into host"],["GO%3A0140717","entry into host through the stromata"],["GO%3A0035635","entry of bacterium into host cell"],["GO%3A0046718","symbiont entry into host cell"],["GO%3A0044409","symbiont entry into host"],["Reactome%3AR-HSA-173107","Binding and entry of HIV virion"]]},{"id":"GO:0045733","l":"acetate catabolic process","na":6,"nb":1,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"],["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]],"b":[["GO%3A0045733","acetate catabolic process"]]},{"id":"GO:0140253","l":"cell-cell fusion","na":1,"nb":6,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["ComplexPortal%3ACPX-3089","EFF-1 complex"],["GO%3A0140253","cell-cell fusion"],["GO%3A0000755","cytogamy"],["GO%3A0000768","syncytium formation by cell-cell fusion"],["PANTHER%3APTHR37415","EFF-1A"],["PANTHER%3APTHR41686","MYOMIXER"]]},{"id":"GO:1900190","l":"regulation of single-species biofilm formation","na":1,"nb":6,"a":[["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["ComplexPortal%3ACPX-4681","YiaMNO tripartite ATP-independent periplasmic transporter complex"],["GO%3A1900191","negative regulation of single-species biofilm formation"],["GO%3A1900192","positive regulation of single-species biofilm formation"],["GO%3A1900190","regulation of single-species biofilm formation"],["GO%3A1900228","regulation of single-species biofilm formation in or on host organism"],["GO%3A1900231","regulation of single-species biofilm formation on inanimate substrate"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":6,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["Pfam%3APF03437","BtpA family"]]},{"id":"NCBITaxon:2268204","l":"Thermoplasmatales archaeon","na":1,"nb":6,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["TED%3AAF-A0A7C2AKF2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7C2AKF2-F1-model_v4_TED03"],["TED%3AAF-A0A7J2S4D8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7J2S4D8-F1-model_v4_TED03"],["TED%3AAF-A0A7J3TK18-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7J3TK18-F1-model_v4_TED02"],["TED%3AAF-A0A7C1E5G8-F1-model_v4_TED01","TED novel fold AF-A0A7C1E5G8-F1-model_v4_TED01"],["TED%3AAF-A0A842X889-F1-model_v4_TED01","TED novel fold AF-A0A842X889-F1-model_v4_TED01"],["TED%3AAF-A0A842X9F6-F1-model_v4_TED01","TED novel fold AF-A0A842X9F6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":1,"nb":6,"a":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"]],"b":[["Pfam%3APF14525","AraC-binding-like domain"],["Pfam%3APF06139","BphX-like"],["Pfam%3APF13340","Putative transposase of IS4/5 family (DUF4096)"],["Pfam%3APF11794","4-hydroxyphenylacetate 3-hydroxylase N terminal"],["Pfam%3APF03241","4-hydroxyphenylacetate 3-hydroxylase C terminal"],["TED%3AAF-A0A4S3H3T1-F1-model_v4_TED02","TED novel fold AF-A0A4S3H3T1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:4097","l":"Nicotiana tabacum","na":1,"nb":6,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"]],"b":[["Pfam%3APF02041","Auxin binding protein"],["Pfam%3APF12481","Aluminium induced protein"],["Pfam%3APF11995","Domain of unknown function (DUF3490)"],["Pfam%3APF07172","Glycine rich protein family"],["PROSITE%3APS00157","Ribulose bisphosphate carboxylase large chain active site"],["TED%3AAF-A0A1S4A696-F1-model_v4_TED01","TED novel fold AF-A0A1S4A696-F1-model_v4_TED01"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":1,"nb":6,"a":[["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["Pfam%3APF02929","Beta galactosidase small chain"],["Pfam%3APF27279","Fumarate--diaminopropanoate ligase C-terminal domain"],["Pfam%3APF18024","Helix-turn-helix domain"],["Pfam%3APF16353","Beta-galactosidase, domain 4"],["PROSITE%3APS00594","Aromatic amino acids permeases signature"],["PROSITE%3APS00853","Beta-eliminating lyases pyridoxal-phosphate attachment site"]]},{"id":"CHEBI:15702","l":"terephthalic acid","na":5,"nb":1,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Pseudomonas_putida_PpTE_Rhodococcus_RDK17_Terephthalic_Acid_Consortium.html","Pseudomonas putida Pp-TE + Rhodococcus sp. RDK17 Terephthalic-acid Consortium"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["proteintraitsmech%3ABIOLIP_UB7","UB7-binding site"]]},{"id":"CHEBI:16828","l":"L-tryptophan","na":5,"nb":1,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"],["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"],["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["proteintraitsmech%3ABIOLIP_TRP","TRP-binding site"]]},{"id":"CHEBI:17439","l":"cyanocob(III)alamin","na":1,"nb":5,"a":[["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["EC%3A1.16.1.6","cyanocobalamin reductase"],["RHEA%3A16113","2 cob(II)alamin-[cyanocobalamin reductase] + 2 hydrogen cyanide + NADP(+) = 2 cyanocob(III)alamin + 2 apo-[cyanocobalamin reductase] + NADPH + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["TCDB%3A9.B.87","The Selenoprotein P Receptor (SelP-Receptor) Family"]]},{"id":"CHEBI:24875","l":"iron cation","na":1,"nb":5,"a":[["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_24875","requires iron cation"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.S.6","The Bacterial/Archaeal Nanocompartment Encapsulin Shell Protein1 (BANC-SP1) Family"],["TCDB%3A2.A.55","The Metal Ion (Mn2+-iron) Transporter (Nramp) Family"],["TCDB%3A5.B.1","The Phagocyte (gp91phox) NADPH Oxidase Family"]]},{"id":"CHEBI:27750","l":"ethyl acetate","na":1,"nb":5,"a":[["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["EC%3A2.3.1.268","ethanol O-acetyltransferase"],["EC%3A3.1.1.113","ethyl acetate hydrolase"],["RHEA%3A55972","ethanol + acetyl-CoA = ethyl acetate + CoA"],["RHEA%3A58148","ethyl acetate + H2O = ethanol + acetate + H(+)"],["proteintraitsmech%3ABIOLIP_EEE","EEE-binding site"]]},{"id":"CHEBI:30746","l":"benzoic acid","na":5,"nb":1,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_BEZ","BEZ-binding site"]]},{"id":"CHEBI:30769","l":"citric acid","na":5,"nb":1,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["proteintraitsmech%3ABIOLIP_CIT","CIT-binding site"]]},{"id":"CHEBI:30776","l":"hexanoic acid","na":5,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["proteintraitsmech%3ABIOLIP_6NA","6NA-binding site"]]},{"id":"CHEBI:33364","l":"platinum atom","na":1,"nb":5,"a":[["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_PT_DINUCLEAR","dinuclear platinum site"],["proteintraitsmech%3AMETALPDB_PT_HEXANUCLEAR","hexanuclear platinum site"],["proteintraitsmech%3AMETALPDB_PT_MONONUCLEAR","mononuclear platinum site"],["proteintraitsmech%3AMETALPDB_PT_TETRANUCLEAR","tetranuclear platinum site"],["proteintraitsmech%3AMETALPDB_PT_TRINUCLEAR","trinuclear platinum site"]]},{"id":"CHEBI:35899","l":"crotonate","na":1,"nb":5,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["EC%3A1.3.1.31","2-enoate reductase"],["RHEA%3A74903","(2E)-2-butenoate + ATP + H(+) = (2E)-but-2-enoyl-AMP + diphosphate"],["RHEA%3A74899","(2E)-2-butenoate + holo-[ACP] + ATP = (2E)-butenoyl-[ACP] + AMP + diphosphate"],["RHEA%3A10200","butanoate + NAD(+) = (2E)-2-butenoate + NADH + H(+)"],["RHEA%3A69172","N(6)-(2E)-butenoyl-L-lysyl-[protein] + H2O = (2E)-2-butenoate + L-lysyl-[protein]"]]},{"id":"CHEBI:37671","l":"(1->3)-beta-D-glucan","na":1,"nb":5,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"]],"b":[["EC%3A2.4.1.30","1,3-beta-oligoglucan phosphorylase"],["EC%3A2.4.1.34","1,3-beta-glucan synthase"],["EC%3A2.4.1.97","1,3-beta-D-glucan phosphorylase"],["RHEA%3A16041","[(1->3)-beta-D-glucosyl](n) + phosphate = [(1->3)-beta-D-glucosyl](n-1) + alpha-D-glucose 1-phosphate"],["RHEA%3A21476","[(1->3)-beta-D-glucosyl](n) + UDP-alpha-D-glucose = [(1->3)-beta-D-glucosyl](n+1) + UDP + H(+)"]]},{"id":"CHEBI:81666","l":"4-methyl-5-nitrocatechol","na":1,"nb":5,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["EC%3A1.14.12.24","2,4-dinitrotoluene dioxygenase"],["EC%3A1.14.13.210","4-methyl-5-nitrocatechol 5-monooxygenase"],["RHEA%3A46760","2,4-dinitrotoluene + NADH + O2 = 4-methyl-5-nitrocatechol + nitrite + NAD(+)"],["RHEA%3A48016","4-methyl-5-nitrocatechol + NADH + O2 = 2-hydroxy-5-methylquinone + nitrite + NAD(+) + H2O + H(+)"],["RHEA%3A48012","4-methyl-5-nitrocatechol + NADPH + O2 = 2-hydroxy-5-methylquinone + nitrite + NADP(+) + H2O + H(+)"]]},{"id":"CHEBI:86471","l":"pyrite","na":5,"nb":1,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"GO:0015945","l":"methanol metabolic process","na":1,"nb":5,"a":[["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"]],"b":[["GO%3A0019387","methanogenesis, from methanol"],["GO%3A0046169","methanol biosynthetic process"],["GO%3A0046170","methanol catabolic process"],["GO%3A0015945","methanol metabolic process"],["GO%3A0015946","methanol oxidation"]]},{"id":"GO:0098869","l":"cellular oxidant detoxification","na":1,"nb":5,"a":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["GO%3A0061692","cellular detoxification of hydrogen peroxide"],["GO%3A0098869","cellular oxidant detoxification"],["GO%3A0019430","removal of superoxide radicals"],["NCBIfam%3ANF009668","peroxiredoxin"],["Pfam%3APF24980","Response to Low Sulfur (LSU) family"]]},{"id":"NCBITaxon:10239","l":"Viruses","na":5,"nb":1,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_10239","Viruses orthologous groups (OrthoDB)"]]},{"id":"NCBITaxon:1598","l":"Limosilactobacillus reuteri","na":1,"nb":5,"a":[["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"]],"b":[["TED%3AAF-A0A6N1EMN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N1EMN7-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2V3C3-F1-model_v4_TED01","TED novel fold AF-A0A1Y2V3C3-F1-model_v4_TED01"],["TED%3AAF-A0A848BUA9-F1-model_v4_TED01","TED novel fold AF-A0A848BUA9-F1-model_v4_TED01"],["TED%3AAF-A0A855XJ18-F1-model_v4_TED01","TED novel fold AF-A0A855XJ18-F1-model_v4_TED01"],["TED%3AAF-Q6WUB1-F1-model_v4_TED03","TED novel fold AF-Q6WUB1-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1872427","l":"Alcanivorax sp.","na":1,"nb":5,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["TED%3AAF-A0A3C1HS87-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A3C1HS87-F1-model_v4_TED05"],["TED%3AAF-A0A2E8G0K2-F1-model_v4_TED02","TED novel fold AF-A0A2E8G0K2-F1-model_v4_TED02"],["TED%3AAF-A0A2E8G2P9-F1-model_v4_TED01","TED novel fold AF-A0A2E8G2P9-F1-model_v4_TED01"],["TED%3AAF-A0A3B8PCI6-F1-model_v4_TED01","TED novel fold AF-A0A3B8PCI6-F1-model_v4_TED01"],["TED%3AAF-A0A3C0M083-F1-model_v4_TED02","TED novel fold AF-A0A3C0M083-F1-model_v4_TED02"]]},{"id":"NCBITaxon:552","l":"Erwinia amylovora","na":1,"nb":5,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]],"b":[["Pfam%3APF09008","Head binding"],["Pfam%3APF11725","AvrE-family Type-III effector proteins (T3Es)"],["Pfam%3APF03608","PTS system enzyme II sorbitol-specific factor"],["Pfam%3APF07663","Sorbitol phosphotransferase enzyme II C-terminus"],["Pfam%3APF03612","Sorbitol phosphotransferase enzyme II N-terminus"]]},{"id":"NCBITaxon:74969","l":"Ferroplasma acidiphilum","na":5,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["TED%3AAF-A0A7K4FNL3-F1-model_v4_TED01","TED novel fold AF-A0A7K4FNL3-F1-model_v4_TED01"]]},{"id":"CHEBI:15603","l":"L-leucine","na":4,"nb":1,"a":[["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"]],"b":[["proteintraitsmech%3ABIOLIP_LEU","LEU-binding site"]]},{"id":"CHEBI:16109","l":"propane-1,3-diol","na":1,"nb":4,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["EC%3A1.1.1.202","1,3-propanediol dehydrogenase"],["RHEA%3A23188","propane-1,3-diol + NAD(+) = 3-hydroxypropanal + NADH + H(+)"],["RHEA%3A35599","propane-1,3-diol + NADP(+) = 3-hydroxypropanal + NADPH + H(+)"],["proteintraitsmech%3ABIOLIP_PDO","PDO-binding site"]]},{"id":"CHEBI:16646","l":"carbohydrate","na":4,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16646","requires pantothenate"]]},{"id":"CHEBI:16811","l":"methionine","na":4,"nb":1,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"]]},{"id":"CHEBI:16856","l":"glutathione","na":1,"nb":4,"a":[["Zymomonas_Ecoli_Exometabolomics_Obligate_Mutualism.html","Zymomonas-E. coli Exometabolomics-Designed Obligate Mutualism"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16856","requires glutathione"],["MCSA%3A359","lactoglutathione lyase"],["MCSA%3A32","lactoylglutathione lyase"],["proteintraitsmech%3ABIOLIP_GSH","GSH-binding site"]]},{"id":"CHEBI:17115","l":"L-serine","na":1,"nb":4,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["MCSA%3A609","alpha-lytic endopeptidase"],["MCSA%3A238","assemblin"],["MCSA%3A688","classical-complement-pathway C3/C5 convertase"],["proteintraitsmech%3ABIOLIP_SER","SER-binding site"]]},{"id":"CHEBI:17634","l":"D-glucose","na":4,"nb":1,"a":[["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"]],"b":[["MCSA%3A976","α‑glucosidase maltase-glucoamylase"]]},{"id":"CHEBI:18050","l":"L-glutamine","na":1,"nb":4,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["MCSA%3A596","deuterolysin"],["MCSA%3A477","picornain 3C"],["MCSA%3A763","picornain 3C"],["proteintraitsmech%3ABIOLIP_GLN","GLN-binding site"]]},{"id":"CHEBI:18059","l":"lipid","na":4,"nb":1,"a":[["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"],["Yarrowia_lipolytica_Division_of_Labor_Lipid_Consortium.html","Yarrowia lipolytica Division-of-Labor Lipid Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:22315","l":"alkaloid","na":1,"nb":4,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]]},{"id":"CHEBI:23681","l":"dibenzothiophene","na":1,"nb":4,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["EC%3A1.14.14.21","dibenzothiophene monooxygenase"],["RHEA%3A49072","dibenzothiophene + 2 FMNH2 + 2 O2 = dibenzothiophene 5,5-dioxide + 2 FMN + 2 H2O + 2 H(+)"],["RHEA%3A49076","dibenzothiophene + FMNH2 + O2 = dibenzothiophene 5-oxide + FMN + H2O + H(+)"],["MCSA%3A973","DszC protein"]]},{"id":"CHEBI:28984","l":"aluminium atom","na":1,"nb":4,"a":[["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_AL_DINUCLEAR","dinuclear aluminium site"],["proteintraitsmech%3AMETALPDB_AL_MONONUCLEAR","mononuclear aluminium site"],["proteintraitsmech%3AMETALPDB_AL_TETRANUCLEAR","tetranuclear aluminium site"],["proteintraitsmech%3AMETALPDB_AL_TRINUCLEAR","trinuclear aluminium site"]]},{"id":"CHEBI:33575","l":"carboxylic acid","na":1,"nb":4,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"]],"b":[["MCSA%3A105","aldehyde dehydrogenase (FAD-independent)"],["MCSA%3A803","aldehyde dehydrogenase (NAD+) (class 2)"],["MCSA%3A556","esterase (estA)"],["MCSA%3A755","lysophospholipase"]]},{"id":"CHEBI:34768","l":"furfural","na":1,"nb":4,"a":[["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"]],"b":[["RHEA%3A77519","furfural + hydrogen cyanide = (2R)-2-(furan-2-yl)-2-hydroxyacetonitrile"],["RHEA%3A76667","furfural + NAD(+) + H2O = 2-furoate + NADH + 2 H(+)"],["RHEA%3A76671","furfural + NADP(+) + H2O = 2-furoate + NADPH + 2 H(+)"],["TCDB%3A1.C.113","The Hemolysin III (Hly III) Family"]]},{"id":"CHEBI:490095","l":"esculetin","na":1,"nb":4,"a":[["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["EC%3A2.5.1.138","coumarin 8-geranyltransferase"],["RHEA%3A51864","esculetin + (2E)-geranyl diphosphate = 8-geranylesculetin + diphosphate"],["RHEA%3A68944","esculetin + S-adenosyl-L-methionine = isoscopoletin + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A68948","esculetin + S-adenosyl-L-methionine = scopoletin + S-adenosyl-L-homocysteine + H(+)"]]},{"id":"GO:0009809","l":"lignin biosynthetic process","na":1,"nb":4,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"]],"b":[["GO%3A1901063","guaiacyl lignin biosynthetic process"],["GO%3A0009809","lignin biosynthetic process"],["GO%3A1901060","p-hydroxyphenyl lignin biosynthetic process"],["GO%3A1901066","syringal lignin biosynthetic process"]]},{"id":"GO:0015694","l":"mercury ion transport","na":1,"nb":4,"a":[["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["GO%3A0015694","mercury ion transport"],["Pfam%3APF03203","MerC mercury resistance protein"],["Pfam%3APF05052","MerE protein"],["Pfam%3APF02411","MerT mercuric transport protein"]]},{"id":"GO:0015976","l":"carbon utilization","na":1,"nb":4,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["GO%3A0015976","carbon utilization"],["NCBIfam%3ANF010378","bifunctional acetaldehyde-CoA/alcohol dehydrogenase"],["NCBIfam%3ANF007756","carbonate dehydratase"],["InterPro%3AIPR015892","Carbonic anhydrase, prokaryotic-like, conserved site"]]},{"id":"GO:0061692","l":"cellular detoxification of hydrogen peroxide","na":1,"nb":4,"a":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["ComplexPortal%3ACPX-4742","Catalase complex"],["ComplexPortal%3ACPX-4767","Catalase complex"],["ComplexPortal%3ACPX-4768","Catalase complex"],["GO%3A0061692","cellular detoxification of hydrogen peroxide"]]},{"id":"GO:1902074","l":"response to salt","na":1,"nb":4,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["GO%3A1902075","cellular response to salt"],["GO%3A1902074","response to salt"],["GO%3A1903935","response to sodium arsenite"],["GO%3A1904383","response to sodium phosphate"]]},{"id":"NCBITaxon:1401","l":"Paenibacillus lautus","na":1,"nb":4,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"]],"b":[["Pfam%3APF18448","Carbohydrate binding domain"],["Pfam%3APF12891","Glycoside hydrolase family 44"],["TED%3AAF-A0A328VZ83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A328VZ83-F1-model_v4_TED01"],["TED%3AAF-A0A385TU82-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A385TU82-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1451","l":"Paenibacillus amylolyticus","na":1,"nb":4,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"]],"b":[["Pfam%3APF03211","Pectate lyase"],["TED%3AAF-A0A117I1X0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A117I1X0-F1-model_v4_TED01"],["TED%3AAF-A0A1R1DDF3-F1-model_v4_TED01","TED novel fold AF-A0A1R1DDF3-F1-model_v4_TED01"],["TED%3AAF-A0A4V3B7H8-F1-model_v4_TED01","TED novel fold AF-A0A4V3B7H8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1501","l":"Clostridium pasteurianum","na":1,"nb":4,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["Pfam%3APF22609","Iron hydrogenase 1-like, iron-sulfur centre-binding domain"],["Pfam%3APF09582","Iron only nitrogenase protein AnfO (AnfO_nitrog)"],["PROSITE%3APS00746","NifH/frxC family signature 1"],["PROSITE%3APS00699","Nitrogenases component 1 alpha and beta subunits signature 1"]]},{"id":"NCBITaxon:1534","l":"Clostridium kluyveri","na":4,"nb":1,"a":[["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["TED%3AAF-A0A1L5FEG9-F1-model_v4_TED01","TED novel fold AF-A0A1L5FEG9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1590","l":"Lactiplantibacillus plantarum","na":4,"nb":1,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Pichia_Lactiplantibacillus_CCMA_Plant_Beverage_Coculture.html","Pichia-Lactiplantibacillus CCMA Plant Beverage Coculture"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["Pfam%3APF06314","Acetoacetate decarboxylase (ADC)"]]},{"id":"NCBITaxon:243164","l":"Dehalococcoides mccartyi 195","na":4,"nb":1,"a":[["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["Pfam%3APF13486","Reductive dehalogenase subunit"]]},{"id":"NCBITaxon:258594","l":"Rhodopseudomonas palustris CGA009","na":1,"nb":4,"a":[["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"]],"b":[["Pfam%3APF01322","Cytochrome C'"],["PROSITE%3APS00969","Antenna complexes beta subunits signature"],["PROSITE%3APS00936","Ribosomal protein L35 signature"],["PROSITE%3APS01181","Ribosomal protein S21 signature"]]},{"id":"NCBITaxon:28037","l":"Streptococcus mitis","na":1,"nb":4,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["Pfam%3APF03047","COMC family"],["TED%3AAF-A0A1X1L9U5-F1-model_v4_TED02","TED novel fold AF-A0A1X1L9U5-F1-model_v4_TED02"],["TED%3AAF-A0A428B8X0-F1-model_v4_TED01","TED novel fold AF-A0A428B8X0-F1-model_v4_TED01"],["TED%3AAF-A0A6L5H4V3-F1-model_v4_TED03","TED novel fold AF-A0A6L5H4V3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:285","l":"Comamonas testosteroni","na":1,"nb":4,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["Pfam%3APF02900","Catalytic LigB subunit of aromatic ring-opening dioxygenase"],["Pfam%3APF19301","LigXa C-terminal domain like"],["TED%3AAF-A0A096HND0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A096HND0-F1-model_v4_TED01"],["TED%3AAF-A0A1Y1JCM1-F1-model_v4_TED01","TED novel fold AF-A0A1Y1JCM1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:34305","l":"Lotus japonicus","na":1,"nb":4,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["Pfam%3APF06241","Castor and Pollux, part of voltage-gated ion channel"],["Pfam%3APF23654","E3 ubiquitin-protein ligase LIN-like, ARM repeat"],["Pfam%3APF23628","Putative E3 ubiquitin-protein ligase LIN, ARM-like domain"],["Pfam%3APF23568","E3 ubiquitin-protein ligase LIN-like, ARM repeat"]]},{"id":"NCBITaxon:40520","l":"Blautia obeum","na":1,"nb":4,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]],"b":[["TED%3AAF-A0A174PFW9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A174PFW9-F1-model_v4_TED01"],["TED%3AAF-A0A174PHS9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A174PHS9-F1-model_v4_TED02"],["TED%3AAF-A0A415LGR0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A415LGR0-F1-model_v4_TED01"],["TED%3AAF-A0A414KHY7-F1-model_v4_TED02","TED novel fold AF-A0A414KHY7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":1,"nb":4,"a":[["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["Pfam%3APF11720","Peptidase inhibitor I78 family"],["Pfam%3APF12296","Hydrophobic surface binding protein A"],["TED%3AAF-A0A3M7JGA1-F1-model_v4_TED02","TED novel fold AF-A0A3M7JGA1-F1-model_v4_TED02"],["TED%3AAF-A0A7G5JNS3-F1-model_v4_TED03","TED novel fold AF-A0A7G5JNS3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:863","l":"Syntrophomonas wolfei","na":4,"nb":1,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["TED%3AAF-A0A354YY78-F1-model_v4_TED03","TED novel fold AF-A0A354YY78-F1-model_v4_TED03"]]},{"id":"CHEBI:147155","l":"","na":3,"nb":1,"a":[["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["RHEA%3A64016","alpha-L-Fuc-(1->2)-beta-D-Gal-(1->4)-D-Glc + GDP-beta-L-fucose = alpha-L-Fuc-(1->2)-beta-D-Gal-(1->4)-[alpha-L-Fuc-(1->3)]-D-Glc + GDP + H(+)"]]},{"id":"CHEBI:15356","l":"cysteine","na":3,"nb":1,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:16015","l":"L-glutamic acid","na":1,"nb":3,"a":[["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]],"b":[["MCSA%3A747","gamma-glutamyl hydrolase"],["proteintraitsmech%3ABIOLIP_GGL","GGL-binding site"],["proteintraitsmech%3ABIOLIP_GLU","GLU-binding site"]]},{"id":"CHEBI:16170","l":"mercury(0)","na":1,"nb":3,"a":[["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["EC%3A1.16.1.1","mercury(II) reductase"],["RHEA%3A23856","Hg + NADP(+) + H(+) = Hg(2+) + NADPH"],["MCSA%3A277","mercury(II) reductase"]]},{"id":"CHEBI:16467","l":"L-arginine","na":1,"nb":3,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["MCSA%3A688","classical-complement-pathway C3/C5 convertase"],["MCSA%3A425","plasmin"],["MCSA%3A798","t-plasminogen activator"]]},{"id":"CHEBI:16982","l":"(R,R)-butane-2,3-diol","na":1,"nb":3,"a":[["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"]],"b":[["EC%3A1.1.1.4","(R,R)-butanediol dehydrogenase"],["RHEA%3A24340","(R,R)-butane-2,3-diol + NAD(+) = (R)-acetoin + NADH + H(+)"],["proteintraitsmech%3ABIOLIP_BU3","BU3-binding site"]]},{"id":"CHEBI:17203","l":"L-proline","na":1,"nb":3,"a":[["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["MCSA%3A403","astacin"],["MCSA%3A379","Xaa-Pro aminopeptidase"],["proteintraitsmech%3ABIOLIP_PRO","PRO-binding site"]]},{"id":"CHEBI:17561","l":"L-cysteine","na":3,"nb":1,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["proteintraitsmech%3ABIOLIP_CYS","CYS-binding site"]]},{"id":"CHEBI:2365","l":"(+)-abscisic acid","na":1,"nb":3,"a":[["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.17","The Proton-dependent Oligopeptide Transporter (POT/PTR) Family"],["proteintraitsmech%3ABIOLIP_A8S","A8S-binding site"]]},{"id":"CHEBI:28805","l":"cis-1,2-dichloroethene","na":1,"nb":3,"a":[["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"]],"b":[["RHEA%3A67992","trichloroethene + AH2 = (Z)-1,2-dichloroethene + chloride + A + H(+)"],["RHEA%3A67996","(Z)-1,2-dichloroethene + AH2 = chloroethene + chloride + A + H(+)"],["proteintraitsmech%3ABIOLIP_JYF","JYF-binding site"]]},{"id":"CHEBI:30803","l":"isophthalate(2-)","na":1,"nb":3,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["EC%3A6.2.1.58","isophthalate--CoA ligase"],["RHEA%3A61636","isophthalate + ATP + CoA = isophthalyl-CoA + AMP + diphosphate"],["TCDB%3A2.A.80","The Tricarboxylate Transporter (TTT) Family"]]},{"id":"CHEBI:31725","l":"isoamyl acetate","na":1,"nb":3,"a":[["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["EC%3A3.1.1.112","isoamyl acetate esterase"],["RHEA%3A65236","3-methylbutan-1-ol + acetyl-CoA = 3-methylbutyl acetate + CoA"],["RHEA%3A60436","3-methylbutyl acetate + H2O = 3-methylbutan-1-ol + acetate + H(+)"]]},{"id":"CHEBI:32816","l":"pyruvic acid","na":1,"nb":3,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_32816","requires pyruvic acid"],["MCSA%3A449","cystathionine beta-lyase"],["proteintraitsmech%3ABIOLIP_PYR","PYR-binding site"]]},{"id":"CHEBI:32879","l":"propane","na":1,"nb":3,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["EC%3A1.14.13.227","propane 2-monooxygenase"],["RHEA%3A49992","propane + NADH + O2 + H(+) = propan-2-ol + NAD(+) + H2O"],["proteintraitsmech%3ABIOLIP_TME","TME-binding site"]]},{"id":"CHEBI:33229","l":"vitamin (role)","na":1,"nb":3,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.21","The Solute:Sodium Symporter (SSS) Family"]]},{"id":"CHEBI:33359","l":"rhodium atom","na":1,"nb":3,"a":[["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_RH_DINUCLEAR","dinuclear rhodium site"],["proteintraitsmech%3AMETALPDB_RH_MONONUCLEAR","mononuclear rhodium site"],["proteintraitsmech%3AMETALPDB_RH_TRINUCLEAR","trinuclear rhodium site"]]},{"id":"CHEBI:33377","l":"dysprosium atom","na":1,"nb":3,"a":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_33377","requires Tb"],["proteintraitsmech%3AMETALPDB_DY_DINUCLEAR","dinuclear dysprosium site"],["proteintraitsmech%3AMETALPDB_DY_MONONUCLEAR","mononuclear dysprosium site"]]},{"id":"CHEBI:35780","l":"phosphate ion","na":3,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"]]},{"id":"CHEBI:412516","l":"5-hydroxymethylfurfural","na":1,"nb":3,"a":[["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"]],"b":[["EC%3A1.1.3.47","5-(hydroxymethyl)furfural oxidase"],["RHEA%3A32683","5-hydroxymethylfurfural + 3 O2 + 2 H2O = 2,5-dicarboxyfuran + 3 H2O2 + 2 H(+)"],["RHEA%3A43504","5-hydroxymethylfurfural + O2 = 2,5-diformylfuran + H2O2"]]},{"id":"CHEBI:49631","l":"gallium atom","na":1,"nb":3,"a":[["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"]],"b":[["proteintraitsmech%3AMETALPDB_GA_DINUCLEAR","dinuclear gallium site"],["proteintraitsmech%3AMETALPDB_GA_MONONUCLEAR","mononuclear gallium site"],["proteintraitsmech%3AMETALPDB_GA_TETRANUCLEAR","tetranuclear gallium site"]]},{"id":"CHEBI:50699","l":"oligosaccharide","na":1,"nb":3,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"]]},{"id":"CHEBI:920","l":"2,4-dinitrotoluene","na":1,"nb":3,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["EC%3A1.14.12.24","2,4-dinitrotoluene dioxygenase"],["RHEA%3A80191","2,4-dinitrotoluene + 2 NADPH + 2 H(+) = 4-hydroxylamino-2-nitrotoluene + 2 NADP(+) + H2O"],["RHEA%3A46760","2,4-dinitrotoluene + NADH + O2 = 4-methyl-5-nitrocatechol + nitrite + NAD(+)"]]},{"id":"GO:0005982","l":"starch metabolic process","na":1,"nb":3,"a":[["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"]],"b":[["GO%3A0019252","starch biosynthetic process"],["GO%3A0005983","starch catabolic process"],["GO%3A0005982","starch metabolic process"]]},{"id":"GO:0019563","l":"glycerol catabolic process","na":1,"nb":3,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["GO%3A0019588","anaerobic glycerol catabolic process"],["GO%3A0019563","glycerol catabolic process"],["NCBIfam%3ANF008478","dihydroxyacetone kinase phosphoryl donor subunit DhaM"]]},{"id":"GO:0044002","l":"acquisition of nutrients from host","na":1,"nb":3,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0044002","acquisition of nutrients from host"],["GO%3A0044847","iron acquisition from host"],["GO%3A0052091","modulation of nutrient release by host"]]},{"id":"GO:1902422","l":"hydrogen biosynthetic process","na":1,"nb":3,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["GO%3A1902422","hydrogen biosynthetic process"],["GO%3A0044817","hydrogen generation via biophotolysis"],["GO%3A0044835","hydrogen generation via nitrogenase"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":1,"nb":3,"a":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["Pfam%3APF05258","Dna[CI] antecedent, DciA"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"],["TED%3AAF-Q0RZW9-F1-model_v4_TED03","TED highly-symmetric fold AF-Q0RZW9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":1,"nb":3,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF08130","Type A lantibiotic family"],["Pfam%3APF04738","Lantibiotic dehydratase, N terminus"]]},{"id":"NCBITaxon:1587","l":"Lactobacillus helveticus","na":1,"nb":3,"a":[["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"]],"b":[["Pfam%3APF18008","Replication initiator protein A C-terminal domain"],["Pfam%3APF20956","Domain of unknown function (DUF4931) C-terminal domain"],["Pfam%3APF17312","Bacteriocin helveticin-J"]]},{"id":"NCBITaxon:1589","l":"Lactiplantibacillus pentosus","na":1,"nb":3,"a":[["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["PROSITE%3APS60002","Phosphoketolase signature 1"],["PROSITE%3APS60003","Phosphoketolase signature 2"],["TED%3AAF-A0A2K9I3V8-F1-model_v4_TED01","TED novel fold AF-A0A2K9I3V8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1624","l":"Ligilactobacillus salivarius","na":1,"nb":3,"a":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]],"b":[["TED%3AAF-A0A7X2SS58-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X2SS58-F1-model_v4_TED01"],["TED%3AAF-A0A089QBS8-F1-model_v4_TED02","TED novel fold AF-A0A089QBS8-F1-model_v4_TED02"],["TED%3AAF-A0A2A2XCA8-F1-model_v4_TED01","TED novel fold AF-A0A2A2XCA8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1680","l":"Bifidobacterium adolescentis","na":1,"nb":3,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]],"b":[["TED%3AAF-A0A1X2Z2R7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1X2Z2R7-F1-model_v4_TED02"],["TED%3AAF-A0A1X2Z7X6-F1-model_v4_TED02","TED novel fold AF-A0A1X2Z7X6-F1-model_v4_TED02"],["TED%3AAF-A0A1X2ZNR8-F1-model_v4_TED04","TED novel fold AF-A0A1X2ZNR8-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":3,"nb":1,"a":[["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["TED%3AAF-A0A415C3I8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A415C3I8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1708","l":"Cellulomonas fimi","na":1,"nb":3,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["Pfam%3APF00553","Cellulose binding domain"],["PROSITE%3APS00561","CBM2a (carbohydrate-binding type-2) domain signature"],["PROSITE%3APS00591","Glycosyl hydrolases family 10 (GH10) active site"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":3,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]],"b":[["TED%3AAF-A0A142EAM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142EAM9-F1-model_v4_TED03"],["TED%3AAF-A0A1Q3DTY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3DTY6-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3DNE3-F1-model_v4_TED01","TED novel fold AF-A0A1Q3DNE3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:192","l":"Azospirillum brasilense","na":1,"nb":3,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"]],"b":[["Pfam%3APF24931","ACR9-like, ACT-like domain"],["Pfam%3APF27444","Uridylyltransferase GlnD third domain"],["TED%3AAF-A0A235H319-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A235H319-F1-model_v4_TED01"]]},{"id":"NCBITaxon:198620","l":"Pseudomonas koreensis","na":3,"nb":1,"a":[["FourSpecies_Aerobic_Lung_Microbiome_Model.html","Four-Species Aerobic Lung Microbiome Model"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["TED%3AAF-A0A1G7ALV2-F1-model_v4_TED02","TED novel fold AF-A0A1G7ALV2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:203124","l":"Trichodesmium erythraeum IMS101","na":1,"nb":3,"a":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["Pfam%3APF06206","CpeT/CpcT family (DUF1001)"],["Pfam%3APF18460","Heterocyst differentiation regulator C-terminal Hood domain"],["TED%3AAF-Q10WG6-F1-model_v4_TED05","TED highly-symmetric fold AF-Q10WG6-F1-model_v4_TED05"]]},{"id":"NCBITaxon:216816","l":"Bifidobacterium longum","na":3,"nb":1,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["TED%3AAF-A0A413ACI9-F1-model_v4_TED01","TED novel fold AF-A0A413ACI9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2208","l":"Methanosarcina barkeri","na":3,"nb":1,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["Pfam%3APF09505","Dimethylamine methyltransferase (Dimeth_PyL)"]]},{"id":"NCBITaxon:33039","l":"Mediterraneibacter torques","na":1,"nb":3,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["TED%3AAF-A0A174ZX33-F1-model_v4_TED01","TED novel fold AF-A0A174ZX33-F1-model_v4_TED01"],["TED%3AAF-A0A6N3EHF6-F1-model_v4_TED02","TED novel fold AF-A0A6N3EHF6-F1-model_v4_TED02"],["TED%3AAF-A0A6N3EHH7-F1-model_v4_TED01","TED novel fold AF-A0A6N3EHH7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":1,"nb":3,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"],["TED%3AAF-A0A7H8I034-F1-model_v4_TED01","TED novel fold AF-A0A7H8I034-F1-model_v4_TED01"]]},{"id":"NCBITaxon:582","l":"Morganella morganii","na":1,"nb":3,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["PROSITE%3APS01157","Class A bacterial acid phosphatases signature"],["TED%3AAF-A0A2C5TPE5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2C5TPE5-F1-model_v4_TED01"],["TED%3AAF-A0A0A2RJY1-F1-model_v4_TED02","TED novel fold AF-A0A0A2RJY1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:70448","l":"Ostreococcus tauri","na":1,"nb":3,"a":[["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"]],"b":[["TED%3AAF-A0A090M1U3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A090M1U3-F1-model_v4_TED02"],["TED%3AAF-A0A090M3Z3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A090M3Z3-F1-model_v4_TED01"],["TED%3AAF-A0A1Y5INV9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y5INV9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:831","l":"Butyrivibrio fibrisolvens","na":1,"nb":3,"a":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic Rumen Consortium"]],"b":[["Pfam%3APF16738","Starch-binding module 26"],["Pfam%3APF18318","Glutamine synthetase C-terminal domain"],["Pfam%3APF12437","Glutamine synthetase type III N terminal"]]},{"id":"NCBITaxon:94130","l":"Rhizophagus clarus","na":1,"nb":3,"a":[["Mediterranean_AM_Fungal_SixSpecies_SynCom.html","Mediterranean AM Fungal Six-Species SynCom"]],"b":[["TED%3AAF-A0A2Z6R1J4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z6R1J4-F1-model_v4_TED01"],["TED%3AAF-A0A2Z6SKM0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z6SKM0-F1-model_v4_TED01"],["TED%3AAF-A0A2Z6S4T9-F1-model_v4_TED04","TED novel fold AF-A0A2Z6S4T9-F1-model_v4_TED04"]]},{"id":"CHEBI:134612","l":"staphyloferrin B","na":1,"nb":2,"a":[["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_134612","requires staphyloferrin B"],["proteintraitsmech%3ABIOLIP_SE8","SE8-binding site"]]},{"id":"CHEBI:15729","l":"L-ornithine","na":1,"nb":2,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["MCSA%3A12","ornithine carbamoyltransferase"],["proteintraitsmech%3ABIOLIP_ORN","ORN-binding site"]]},{"id":"CHEBI:15904","l":"long-chain fatty acid","na":1,"nb":2,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:15940","l":"nicotinic acid","na":1,"nb":2,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15940","requires nicotinic acid"],["proteintraitsmech%3ABIOLIP_NIO","NIO-binding site"]]},{"id":"CHEBI:15982","l":"cob(I)alamin","na":2,"nb":1,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15982","requires cob(I)alamin"]]},{"id":"CHEBI:16830","l":"methylamine","na":2,"nb":1,"a":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"]],"b":[["proteintraitsmech%3ABIOLIP_NME","NME-binding site"]]},{"id":"CHEBI:16914","l":"salicylic acid","na":2,"nb":1,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Peanut_Seed_Bacterial_CS_SynCom.html","Peanut Seed Bacterial CS SynCom"]],"b":[["proteintraitsmech%3ABIOLIP_SAL","SAL-binding site"]]},{"id":"CHEBI:17747","l":"bis(2-ethylhexyl) phthalate","na":1,"nb":2,"a":[["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"]],"b":[["EC%3A3.1.1.60","bis(2-ethylhexyl)phthalate esterase"],["RHEA%3A15529","bis(2-ethylhexyl)phthalate + H2O = 2-ethylhexan-1-ol + 2-ethylhexyl phthalate + H(+)"]]},{"id":"CHEBI:179252","l":"4-Ethyl-2-methoxyphenol","na":2,"nb":1,"a":[["Sichuan_Shai_Vinegar_Yeast_Flavor_SynCom.html","Sichuan Shai Vinegar Yeast Flavor SynCom"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["RHEA%3A73959","2-methoxy-4-vinylphenol + NADH + H(+) = 4-ethyl-2-methoxyphenol + NAD(+)"]]},{"id":"CHEBI:18053","l":"1-aminocyclopropanecarboxylic acid","na":2,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["proteintraitsmech%3ABIOLIP_1AC","1AC-binding site"]]},{"id":"CHEBI:229785","l":"neodymium(3+)","na":2,"nb":1,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_ND","ND-binding site"]]},{"id":"CHEBI:23530","l":"cytokinin","na":1,"nb":2,"a":[["Staged_Cattle_Manure_Ensifer_Bacillus_SynCom.html","Staged Ensifer-Bacillus Cattle-Manure Wastewater SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"]]},{"id":"CHEBI:28073","l":"chromium atom","na":1,"nb":2,"a":[["Meghalaya_Bacillus_Consortia_A22ED9.html","Meghalaya Bacillus Consortia-A22ED9"]],"b":[["proteintraitsmech%3AMETALPDB_CR_DINUCLEAR","dinuclear chromium site"],["proteintraitsmech%3AMETALPDB_CR_MONONUCLEAR","mononuclear chromium site"]]},{"id":"CHEBI:28757","l":"fructose","na":1,"nb":2,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["GO%3A0070061","fructose binding"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:28817","l":"dodecane","na":1,"nb":2,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["RHEA%3A76739","dodecane + reduced [NADPH--hemoprotein reductase] + O2 = 5-dodecanol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["proteintraitsmech%3ABIOLIP_D12","D12-binding site"]]},{"id":"CHEBI:28837","l":"octanoic acid","na":2,"nb":1,"a":[["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["proteintraitsmech%3ABIOLIP_OCA","OCA-binding site"]]},{"id":"CHEBI:29016","l":"arginine","na":1,"nb":2,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:29073","l":"L-ascorbic acid","na":1,"nb":2,"a":[["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29073","requires L-ascorbic acid"],["proteintraitsmech%3ABIOLIP_ASC","ASC-binding site"]]},{"id":"CHEBI:29681","l":"surfactin","na":1,"nb":2,"a":[["Rice_Duckweed_Bacillus_SynCom.html","Rice-Duckweed Bacillus Biocontrol SynCom"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]]},{"id":"CHEBI:30832","l":"adipic acid","na":1,"nb":2,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["proteintraitsmech%3ABIOLIP_0L1","0L1-binding site"]]},{"id":"CHEBI:32588","l":"potassium chloride","na":2,"nb":1,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"]],"b":[["TCDB%3A2.A.30","The Cation-Chloride Cotransporter (CCC) Family"]]},{"id":"CHEBI:33284","l":"nutrient","na":2,"nb":1,"a":[["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["TCDB%3A1.A.91","The Cytoadherence-linked Asexual Protein 3.2 of Plasmodium falciparum (Clag3) Family"]]},{"id":"CHEBI:33848","l":"polycyclic arene","na":2,"nb":1,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Pelagerythrobacter_Salinicola_PES_Pyrene_Degradation_SynCom.html","Pelagerythrobacter-Salinicola PES Pyrene-Degradation SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:33913","l":"corrinoid","na":2,"nb":1,"a":[["Soil_Corrinoid_B12_Reservoir_Community.html","Soil Corrinoid Reservoir Microbial Community"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_33913","requires corrinoid"]]},{"id":"CHEBI:35381","l":"monosaccharide","na":2,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:35404","l":"chromate(2-)","na":2,"nb":1,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"]],"b":[["RHEA%3A32819","chromate(in) = chromate(out)"]]},{"id":"CHEBI:36219","l":"alpha-lactose","na":2,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"]],"b":[["RHEA%3A84479","alpha-lactose = lactulose"]]},{"id":"CHEBI:40646","l":"autoinducer-2","na":1,"nb":2,"a":[["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.86","The Autoinducer-2 Exporter (AI-2E) Family (Formerly the PerM Family, TC #9.B.22)"]]},{"id":"CHEBI:42111","l":"(R)-lactic acid","na":2,"nb":1,"a":[["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_LAC","LAC-binding site"]]},{"id":"CHEBI:44534","l":"N-(3-oxododecanoyl)-L-homoserine lactone","na":2,"nb":1,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["proteintraitsmech%3ABIOLIP_OHN","OHN-binding site"]]},{"id":"CHEBI:46442","l":"vanadate(3-)","na":2,"nb":1,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["proteintraitsmech%3ABIOLIP_VO4","VO4-binding site"]]},{"id":"CHEBI:47381","l":"diclofenac","na":1,"nb":2,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["proteintraitsmech%3ABIOLIP_DIF","DIF-binding site"]]},{"id":"CHEBI:49544","l":"chromium(3+)","na":1,"nb":2,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["RHEA%3A44372","Cr(6+) + 2 NADH + O2 = Cr(3+) + superoxide + 2 NAD(+) + 2 H(+)"],["RHEA%3A44368","Cr(6+) + 2 NADPH + O2 = Cr(3+) + superoxide + 2 NADP(+) + 2 H(+)"]]},{"id":"CHEBI:53650","l":"guaiacylglycerol-beta-guaiacyl ether","na":1,"nb":2,"a":[["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["EC%3A1.11.1.16","versatile peroxidase"],["RHEA%3A22396","1-(4-hydroxy-3-methoxyphenyl)-2-(2-methoxyphenoxy)propane-1,3-diol + H2O2 = guaiacol + vanillin + glycolaldehyde + H2O"]]},{"id":"CHEBI:61448","l":"isopropyl beta-D-thiogalactopyranoside","na":1,"nb":2,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_IPT","IPT-binding site"]]},{"id":"CHEBI:82420","l":"1-chloro-3-nitrobenzene","na":1,"nb":2,"a":[["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]],"b":[["RHEA%3A57808","1-chloro-3-nitrobenzene + NADH + O2 = 3-chlorocatechol + nitrite + NAD(+)"],["RHEA%3A57804","1-chloro-3-nitrobenzene + NADH + O2 = 4-chlorocatechol + nitrite + NAD(+)"]]},{"id":"CHEBI:84046","l":"pyoverdine","na":1,"nb":2,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_84046","requires pyoverdine"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"GO:0006568","l":"obsolete L-tryptophan metabolic process","na":1,"nb":2,"a":[["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"]],"b":[["Pfam%3APF00697","N-(5'phosphoribosyl)anthranilate (PRA) isomerase"],["Pfam%3APF00290","Tryptophan synthase alpha chain"]]},{"id":"GO:0006995","l":"cellular response to nitrogen starvation","na":1,"nb":2,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["GO%3A0006995","cellular response to nitrogen starvation"],["GO%3A0031142","induction of conjugation upon nitrogen starvation"]]},{"id":"GO:0010025","l":"wax biosynthetic process","na":1,"nb":2,"a":[["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"]],"b":[["GO%3A0010025","wax biosynthetic process"],["Reactome%3AR-HSA-9640463","Wax biosynthesis"]]},{"id":"GO:0019417","l":"sulfur oxidation","na":1,"nb":2,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["GO%3A0019417","sulfur oxidation"],["NCBIfam%3ATIGR04484","sulfur oxidation c-type cytochrome SoxA"]]},{"id":"GO:0019676","l":"ammonia assimilation cycle","na":1,"nb":2,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]],"b":[["ComplexPortal%3ACPX-5041","Glutamate synthase [NADPH] complex"],["GO%3A0019676","ammonia assimilation cycle"]]},{"id":"GO:0046359","l":"butyrate catabolic process","na":2,"nb":1,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"]],"b":[["GO%3A0046359","butyrate catabolic process"]]},{"id":"GO:0071466","l":"cellular response to xenobiotic stimulus","na":1,"nb":2,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["ComplexPortal%3ACPX-2121","EmrE multidrug transporter complex"],["GO%3A0071466","cellular response to xenobiotic stimulus"]]},{"id":"GO:0141082","l":"symbiont-mediated detoxification of host-generated reactive oxygen species","na":1,"nb":2,"a":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["GO%3A0141082","symbiont-mediated detoxification of host-generated reactive oxygen species"],["Reactome%3AR-HSA-1222538","Tolerance by Mtb to nitric oxide produced by macrophages"]]},{"id":"NCBITaxon:105841","l":"Anaerostipes caccae","na":2,"nb":1,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["TED%3AAF-A0A6N2WKG2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N2WKG2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1245","l":"Leuconostoc mesenteroides","na":1,"nb":2,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["Pfam%3APF08951","Bacteriocin immunity protein family"],["TED%3AAF-A0A8B5R1X5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B5R1X5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1249","l":"Weissella paramesenteroides","na":1,"nb":2,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["Pfam%3APF01874","ATP:dephospho-CoA triphosphoribosyl transferase"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"]]},{"id":"NCBITaxon:1303","l":"Streptococcus oralis","na":1,"nb":2,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["Pfam%3APF03047","COMC family"],["TED%3AAF-A0A139PPG4-F1-model_v4_TED02","TED novel fold AF-A0A139PPG4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1317","l":"Streptococcus downei","na":2,"nb":1,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"],["FourSpecies_Aerobic_Lung_Microbiome_Model.html","Four-Species Aerobic Lung Microbiome Model"]],"b":[["Pfam%3APF13199","Glycosyl hydrolase family 66"]]},{"id":"NCBITaxon:1335","l":"Streptococcus equinus","na":2,"nb":1,"a":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"]],"b":[["TED%3AAF-A0A1V0GLT7-F1-model_v4_TED01","TED novel fold AF-A0A1V0GLT7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1582","l":"Lacticaseibacillus casei","na":1,"nb":2,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["Pfam%3APF07475","HPr Serine kinase C-terminal domain"],["PROSITE%3APS01163","Galactose-1-phosphate uridyl transferase family 2 signature"]]},{"id":"NCBITaxon:158836","l":"Enterobacter hormaechei","na":1,"nb":2,"a":[["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["TED%3AAF-A0A431SE22-F1-model_v4_TED01","TED novel fold AF-A0A431SE22-F1-model_v4_TED01"],["TED%3AAF-A0A8B5ZRS3-F1-model_v4_TED01","TED novel fold AF-A0A8B5ZRS3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1597","l":"Lacticaseibacillus paracasei","na":1,"nb":2,"a":[["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["Pfam%3APF09136","Glucodextranase, domain B"],["Pfam%3APF08109","Lactocin 705 family"]]},{"id":"NCBITaxon:1655","l":"Actinomyces naeslundii","na":1,"nb":2,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["Pfam%3APF16555","Gram-positive pilin subunit D1, N-terminal domain"],["TED%3AAF-A0A2Z5QNH6-F1-model_v4_TED02","TED novel fold AF-A0A2Z5QNH6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1871043","l":"Variovorax sp.","na":2,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]],"b":[["TED%3AAF-A0A2E9BKC8-F1-model_v4_TED02","TED novel fold AF-A0A2E9BKC8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1908224","l":"Sphingopyxis sp.","na":2,"nb":1,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["TED%3AAF-A0A2G2D229-F1-model_v4_TED01","TED novel fold AF-A0A2G2D229-F1-model_v4_TED01"]]},{"id":"NCBITaxon:244366","l":"Klebsiella variicola","na":2,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["TED%3AAF-A0A2N4Z4E2-F1-model_v4_TED01","TED novel fold AF-A0A2N4Z4E2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:246200","l":"Ruegeria pomeroyi DSS-3","na":1,"nb":2,"a":[["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["Pfam%3APF16867","Dimethlysulfonioproprionate lyase"],["Pfam%3APF09347","Domain of unknown function (DUF1989)"]]},{"id":"NCBITaxon:252970","l":"Paraburkholderia phenoliruptrix","na":1,"nb":2,"a":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]],"b":[["TED%3AAF-A0A6J5BF93-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6J5BF93-F1-model_v4_TED01"],["TED%3AAF-A0A6J5BWX8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6J5BWX8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":2,"nb":1,"a":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]],"b":[["PROSITE%3APS01322","Phosphotriesterase family signature 1"]]},{"id":"NCBITaxon:29466","l":"Veillonella parvula","na":2,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]],"b":[["TED%3AAF-A0A134BYG5-F1-model_v4_TED01","TED novel fold AF-A0A134BYG5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:299767","l":"Enterobacter ludwigii","na":2,"nb":1,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["TED%3AAF-W0BYN9-F1-model_v4_TED01","TED highly-symmetric fold AF-W0BYN9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:323259","l":"Methanospirillum hungatei JF-1","na":2,"nb":1,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["Pfam%3APF01864","CDP-archaeol synthase"]]},{"id":"NCBITaxon:33959","l":"Lactobacillus johnsonii","na":2,"nb":1,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]],"b":[["Pfam%3APF13518","Helix-turn-helix domain"]]},{"id":"NCBITaxon:375","l":"Bradyrhizobium japonicum","na":1,"nb":2,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"]],"b":[["TED%3AAF-A0A1L3FD53-F1-model_v4_TED02","TED novel fold AF-A0A1L3FD53-F1-model_v4_TED02"],["TED%3AAF-A0A1L3FDV4-F1-model_v4_TED02","TED novel fold AF-A0A1L3FDV4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:3818","l":"Arachis hypogaea","na":1,"nb":2,"a":[["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["TED%3AAF-A0A445AVV9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A445AVV9-F1-model_v4_TED02"],["TED%3AAF-A0A444Z3U3-F1-model_v4_TED01","TED novel fold AF-A0A444Z3U3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:40214","l":"Acinetobacter johnsonii","na":1,"nb":2,"a":[["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["Pfam%3APF12973","ChrR Cupin-like domain"],["Pfam%3APF13807","G-rich domain on putative tyrosine kinase"]]},{"id":"NCBITaxon:4530","l":"Oryza sativa","na":1,"nb":2,"a":[["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"]],"b":[["Pfam%3APF10839","Protein of unknown function (DUF2647)"],["PROSITE%3APS00937","Ribosomal protein L20 signature"]]},{"id":"NCBITaxon:582702","l":"Rhodanobacter glycinis","na":1,"nb":2,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"]],"b":[["TED%3AAF-A0A1I4G4N7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I4G4N7-F1-model_v4_TED02"],["TED%3AAF-A0A502CFB8-F1-model_v4_TED01","TED novel fold AF-A0A502CFB8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:64104","l":"Bacillus pseudomycoides","na":1,"nb":2,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["TED%3AAF-A0A1Y3MB62-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y3MB62-F1-model_v4_TED01"],["TED%3AAF-A0A2C4USY5-F1-model_v4_TED01","TED novel fold AF-A0A2C4USY5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:659243","l":"Bacillus siamensis","na":2,"nb":1,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"]],"b":[["TED%3AAF-A0A853L550-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A853L550-F1-model_v4_TED02"]]},{"id":"NCBITaxon:82380","l":"Microbacterium oxydans","na":2,"nb":1,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]],"b":[["TED%3AAF-A0A4Y4GD74-F1-model_v4_TED02","TED novel fold AF-A0A4Y4GD74-F1-model_v4_TED02"]]},{"id":"NCBITaxon:94626","l":"Brucella tritici","na":1,"nb":2,"a":[["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]],"b":[["TED%3AAF-A0A7X6FRR6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X6FRR6-F1-model_v4_TED01"],["TED%3AAF-A0A7X6JC90-F1-model_v4_TED01","TED novel fold AF-A0A7X6JC90-F1-model_v4_TED01"]]},{"id":"NCBITaxon:971","l":"Pseudoselenomonas ruminantium","na":1,"nb":2,"a":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic Rumen Consortium"]],"b":[["TED%3AAF-A0A1H0QI16-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H0QI16-F1-model_v4_TED02"],["TED%3AAF-A0A1I6XHL5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I6XHL5-F1-model_v4_TED01"]]},{"id":"UBERON:0002097","l":"skin of body","na":1,"nb":2,"a":[["SkinCom_Synthetic_Skin_Community.html","SkinCom Synthetic Skin Community"]],"b":[["GO%3A0043588","skin development"],["GO%3A0043589","skin morphogenesis"]]},{"id":"CHEBI:15517","l":"butyryl-CoA","na":1,"nb":1,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_BCO","BCO-binding site"]]},{"id":"CHEBI:15859","l":"N-carbamoyl-L-aspartic acid","na":1,"nb":1,"a":[["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:16119","l":"shikimic acid","na":1,"nb":1,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["proteintraitsmech%3ABIOLIP_SKM","SKM-binding site"]]},{"id":"CHEBI:16449","l":"alanine","na":1,"nb":1,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["MCSA%3A724","repressor LexA"]]},{"id":"CHEBI:16988","l":"D-ribose","na":1,"nb":1,"a":[["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:16991","l":"deoxyribonucleic acid","na":1,"nb":1,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_DNA","DNA-binding site"]]},{"id":"CHEBI:17089","l":"glycoprotein","na":1,"nb":1,"a":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"]],"b":[["TCDB%3A9.B.417","The MCFD2/LMAN1 Complex Receptor (MLM-CR) Family"]]},{"id":"CHEBI:17359)","l":"","na":1,"nb":1,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"]],"b":[["RHEA%3A12945","2'-hydroxybiphenyl-2-sulfinate + H2O = biphenyl-2-ol + sulfite + H(+)"]]},{"id":"CHEBI:17418","l":"valeric acid","na":1,"nb":1,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_LEA","LEA-binding site"]]},{"id":"CHEBI:17642","l":"pentachlorophenol","na":1,"nb":1,"a":[["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_PCI","PCI-binding site"]]},{"id":"CHEBI:18012","l":"fumaric acid","na":1,"nb":1,"a":[["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["proteintraitsmech%3ABIOLIP_FUM","FUM-binding site"]]},{"id":"CHEBI:18186","l":"tyrosine","na":1,"nb":1,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["MCSA%3A668","leishmanolysin"]]},{"id":"CHEBI:22660","l":"aspartic acid","na":1,"nb":1,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"]]},{"id":"CHEBI:24632","l":"hydrocarbon","na":1,"nb":1,"a":[["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"]],"b":[["TCDB%3A1.B.9","The FadL Outer Membrane Protein (FadL) Family"]]},{"id":"CHEBI:26401","l":"purines","na":1,"nb":1,"a":[["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:27570","l":"histidine","na":1,"nb":1,"a":[["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:28260","l":"galactose","na":1,"nb":1,"a":[["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:28808","l":"mannan","na":1,"nb":1,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"]],"b":[["TCDB%3A4.A.3","The PTS Lactose-N,N'-Diacetylchitobiose-β-glucoside (Lac) Family"]]},{"id":"CHEBI:30531","l":"pimelic acid","na":1,"nb":1,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["proteintraitsmech%3ABIOLIP_PML","PML-binding site"]]},{"id":"CHEBI:30778","l":"gallic acid","na":1,"nb":1,"a":[["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_GDE","GDE-binding site"]]},{"id":"CHEBI:32079","l":"pyrrolnitrin","na":1,"nb":1,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["RHEA%3A46136","aminopyrrolnitrin + NADPH + 2 O2 + H(+) = pyrrolnitrin + NADP(+) + 2 H2O"]]},{"id":"CHEBI:33198","l":"D-gluconic acid","na":1,"nb":1,"a":[["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"]],"b":[["proteintraitsmech%3ABIOLIP_GCO","GCO-binding site"]]},{"id":"CHEBI:34031","l":"1,1-dichloroethene","na":1,"nb":1,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["RHEA%3A68000","1,1-dichloroethene + AH2 = chloroethene + chloride + A + H(+)"]]},{"id":"CHEBI:34631","l":"chlorpyrifos","na":1,"nb":1,"a":[["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:35366","l":"fatty acid","na":1,"nb":1,"a":[["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:36976","l":"nucleotide","na":1,"nb":1,"a":[["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"]],"b":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"]]},{"id":"CHEBI:38155","l":"phytosiderophore","na":1,"nb":1,"a":[["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"]],"b":[["TCDB%3A2.A.67","The Oligopeptide Transporter (OPT) Family"]]},{"id":"CHEBI:38372","l":"cis-2-dodecenoic acid","na":1,"nb":1,"a":[["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_GEY","GEY-binding site"]]},{"id":"CHEBI:41131","l":"crotonic acid","na":1,"nb":1,"a":[["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"]],"b":[["proteintraitsmech%3ABIOLIP_BEO","BEO-binding site"]]},{"id":"CHEBI:45441","l":"N-acetyl-L-serine","na":1,"nb":1,"a":[["Watermelon_Rhizosphere_Fusarium_SynCom8.html","Watermelon Rhizosphere Fusarium-Protective SynCom8"]],"b":[["proteintraitsmech%3ABIOLIP_SAC","SAC-binding site"]]},{"id":"CHEBI:46645","l":"isobutanol","na":1,"nb":1,"a":[["Trichoderma_Ecoli_Cellulosic_Isobutanol_Coculture.html","Trichoderma-E. coli Cellulosic Isobutanol Coculture"]],"b":[["RHEA%3A64692","isobutanol + NAD(+) = 2-methylpropanal + NADH + H(+)"]]},{"id":"CHEBI:49017","l":"3-methylthiopropanal","na":1,"nb":1,"a":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["RHEA%3A55076","4-methylsulfanyl-2-oxobutanoate + H(+) = 3-methylsulfanylpropanal + CO2"]]},{"id":"CHEBI:49890","l":"samarium(3+)","na":1,"nb":1,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["proteintraitsmech%3ABIOLIP_SM","SM-binding site"]]},{"id":"CHEBI:49980","l":"ytterbium(3+)","na":1,"nb":1,"a":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["proteintraitsmech%3ABIOLIP_YB","YB-binding site"]]},{"id":"CHEBI:7476","l":"naproxen","na":1,"nb":1,"a":[["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"]],"b":[["proteintraitsmech%3ABIOLIP_NPS","NPS-binding site"]]},{"id":"CHEBI:84043","l":"gallium(3+)","na":1,"nb":1,"a":[["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"GO:0006046","l":"N-acetylglucosamine catabolic process","na":1,"nb":1,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]],"b":[["GO%3A0006046","N-acetylglucosamine catabolic process"]]},{"id":"GO:0006082","l":"obsolete organic acid metabolic process","na":1,"nb":1,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["PANTHER%3APTHR43680","NITRATE REDUCTASE MOLYBDENUM COFACTOR ASSEMBLY CHAPERONE"]]},{"id":"GO:0019249","l":"lactate biosynthetic process","na":1,"nb":1,"a":[["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["GO%3A0019249","lactate biosynthetic process"]]},{"id":"GO:0019253","l":"reductive pentose-phosphate cycle","na":1,"nb":1,"a":[["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["GO%3A0019253","reductive pentose-phosphate cycle"]]},{"id":"GO:0019332","l":"aerobic respiration, using nitrite as electron donor","na":1,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"]],"b":[["GO%3A0019332","aerobic respiration, using nitrite as electron donor"]]},{"id":"GO:0022622","l":"root system development","na":1,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["GO%3A0022622","root system development"]]},{"id":"GO:0042192","l":"methylmercury biosynthetic process","na":1,"nb":1,"a":[["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"]],"b":[["GO%3A0042192","methylmercury biosynthetic process"]]},{"id":"GO:0051850","l":"acquisition of nutrients from symbiont","na":1,"nb":1,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["GO%3A0051850","acquisition of nutrients from symbiont"]]},{"id":"GO:0140923","l":"magnetosome assembly","na":1,"nb":1,"a":[["Tropidoatractus_Magnetotacticus_Tripartite_Syntrophy.html","Tropidoatractus magnetotacticus Magnetotactic Ciliate Tripartite Syntrophy"]],"b":[["GO%3A0140923","magnetosome assembly"]]},{"id":"GO:1902087","l":"dimethylsulfoniopropionate catabolic process","na":1,"nb":1,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["GO%3A1902087","dimethylsulfoniopropionate catabolic process"]]},{"id":"NCBITaxon:101028","l":"Fusarium pseudograminearum","na":1,"nb":1,"a":[["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["TED%3AAF-A0A7S8DXW2-F1-model_v4_TED02","TED novel fold AF-A0A7S8DXW2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1072583","l":"Vreelandella boliviensis LC1","na":1,"nb":1,"a":[["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"]],"b":[["TED%3AAF-A0A265DTH2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A265DTH2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1165","l":"Anabaena cylindrica","na":1,"nb":1,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["Pfam%3APF17275","Family of unknown function (DUF5340)"]]},{"id":"NCBITaxon:118127","l":"Chryseobacterium proteolyticum","na":1,"nb":1,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["Pfam%3APF18626","Glutaminase"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":1,"nb":1,"a":[["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["TED%3AAF-A0A132HLN2-F1-model_v4_TED01","TED novel fold AF-A0A132HLN2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1215089","l":"Planococcus halocryophilus","na":1,"nb":1,"a":[["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"]],"b":[["TED%3AAF-A0A1C7DVM0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C7DVM0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":1,"nb":1,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["PROSITE%3APS01043","Transposases, IS30 family, signature"]]},{"id":"NCBITaxon:134","l":"Methylocystis parvus","na":1,"nb":1,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"]],"b":[["TED%3AAF-A0A6B8M6B0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6B8M6B0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:138074","l":"Serratia symbiotica","na":1,"nb":1,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"]],"b":[["TED%3AAF-A0A068YYP3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A068YYP3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1399","l":"Cytobacillus firmus","na":1,"nb":1,"a":[["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"]],"b":[["TED%3AAF-A0A800NFK9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A800NFK9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1520","l":"Clostridium beijerinckii","na":1,"nb":1,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"]],"b":[["TED%3AAF-A0A0B5QQV4-F1-model_v4_TED02","TED novel fold AF-A0A0B5QQV4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1547","l":"Thomasclavelia ramosa","na":1,"nb":1,"a":[["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["TED%3AAF-A0A3E3E4C4-F1-model_v4_TED02","TED novel fold AF-A0A3E3E4C4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1585","l":"Lactobacillus delbrueckii subsp. bulgaricus","na":1,"nb":1,"a":[["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["TED%3AAF-A0A809EIY6-F1-model_v4_TED02","TED novel fold AF-A0A809EIY6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:159743","l":"Paenibacillus terrae","na":1,"nb":1,"a":[["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"]],"b":[["TED%3AAF-A0A0D7WXS4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D7WXS4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1673428","l":"Cuniculiplasma divulgatum","na":1,"nb":1,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["TED%3AAF-A0A1N5S5J2-F1-model_v4_TED02","TED novel fold AF-A0A1N5S5J2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":1,"nb":1,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["Pfam%3APF08124","Polysaccharide lyase family 8, N terminal alpha-helical domain"]]},{"id":"NCBITaxon:1920","l":"Streptomyces nigrescens","na":1,"nb":1,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["Pfam%3APF03995","Peptidase inhibitor family I36"]]},{"id":"NCBITaxon:1979961","l":"Wenzhouxiangella sp.","na":1,"nb":1,"a":[["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["TED%3AAF-A0A5Q4GWL5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Q4GWL5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:216778","l":"Stenotrophomonas rhizophila","na":1,"nb":1,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"]],"b":[["TED%3AAF-A0A023XYG6-F1-model_v4_TED02","TED novel fold AF-A0A023XYG6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2209","l":"Methanosarcina mazei","na":1,"nb":1,"a":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"]],"b":[["TED%3AAF-A0A0F8CQX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F8CQX7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:223967","l":"Methylorubrum populi","na":1,"nb":1,"a":[["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"]],"b":[["TED%3AAF-A0A161JLG1-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A161JLG1-F1-model_v4_TED04"]]},{"id":"NCBITaxon:250","l":"Chryseobacterium gleum","na":1,"nb":1,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["TED%3AAF-A0A448B167-F1-model_v4_TED02","TED novel fold AF-A0A448B167-F1-model_v4_TED02"]]},{"id":"NCBITaxon:258","l":"Sphingobacterium spiritivorum","na":1,"nb":1,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["TED%3AAF-A0A380CHI8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A380CHI8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:264198","l":"Cupriavidus pinatubonensis JMP134","na":1,"nb":1,"a":[["Rhizorhabdus_Cupriavidus_BDE47_Degradation_SynCom.html","Rhizorhabdus-Cupriavidus BDE-47 Degradation SynCom"]],"b":[["TED%3AAF-Q476D1-F1-model_v4_TED02","TED highly-symmetric fold AF-Q476D1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:270351","l":"Methylobacterium aquaticum","na":1,"nb":1,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["TED%3AAF-A0A0J6S4M9-F1-model_v4_TED02","TED novel fold AF-A0A0J6S4M9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2759","l":"Eukaryota","na":1,"nb":1,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2759","Eukaryota orthologous groups (OrthoDB)"]]},{"id":"NCBITaxon:294710","l":"Proteiniphilum acetatigenes","na":1,"nb":1,"a":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"]],"b":[["TED%3AAF-A0A101HH48-F1-model_v4_TED02","TED novel fold AF-A0A101HH48-F1-model_v4_TED02"]]},{"id":"NCBITaxon:29875","l":"Trichoderma virens","na":1,"nb":1,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"]],"b":[["Pfam%3APF07249","Cerato-platanin"]]},{"id":"NCBITaxon:316385","l":"Escherichia coli str. K-12 substr. DH10B","na":1,"nb":1,"a":[["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["Pfam%3APF06392","Acid shock protein"]]},{"id":"NCBITaxon:33905","l":"Bifidobacterium thermophilum","na":1,"nb":1,"a":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["TED%3AAF-A0A2N3QE79-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3QE79-F1-model_v4_TED01"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":1,"nb":1,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["TED%3AAF-A0A679J1E9-F1-model_v4_TED01","TED novel fold AF-A0A679J1E9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:3747","l":"Fragaria x ananassa","na":1,"nb":1,"a":[["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["PROSITE%3APS00451","Pathogenesis-related proteins Bet v I family signature"]]},{"id":"NCBITaxon:37929","l":"Glutamicibacter nicotianae","na":1,"nb":1,"a":[["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"]],"b":[["Pfam%3APF16701","Adenylate cyclase regulatory domain"]]},{"id":"NCBITaxon:38304","l":"Corynebacterium tuberculostearicum","na":1,"nb":1,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["TED%3AAF-A0A7U0H937-F1-model_v4_TED01","TED novel fold AF-A0A7U0H937-F1-model_v4_TED01"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"]],"b":[["Pfam%3APF13282","Domain of unknown function (DUF4070)"]]},{"id":"NCBITaxon:40216","l":"Acinetobacter radioresistens","na":1,"nb":1,"a":[["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["TED%3AAF-A0A7D7YF26-F1-model_v4_TED02","TED novel fold AF-A0A7D7YF26-F1-model_v4_TED02"]]},{"id":"NCBITaxon:4054","l":"Panax ginseng","na":1,"nb":1,"a":[["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"]],"b":[["Pfam%3APF26168","Glycosyltransferase, N-terminal domain"]]},{"id":"NCBITaxon:408","l":"Methylorubrum extorquens","na":1,"nb":1,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["Pfam%3APF04476","4-HFC-P synthase"]]},{"id":"NCBITaxon:453960","l":"Sulfobacillus benefaciens","na":1,"nb":1,"a":[["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"]],"b":[["TED%3AAF-A0A2T2WWZ6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2T2WWZ6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:47715","l":"Lacticaseibacillus rhamnosus","na":1,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["Pfam%3APF04914","DltD protein"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":1,"nb":1,"a":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]],"b":[["TED%3AAF-A0A4R6CRR7-F1-model_v4_TED01","TED novel fold AF-A0A4R6CRR7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:4909","l":"Pichia kudriavzevii","na":1,"nb":1,"a":[["Sichuan_Shai_Vinegar_Yeast_Flavor_SynCom.html","Sichuan Shai Vinegar Yeast Flavor SynCom"]],"b":[["TED%3AAF-A0A099P804-F1-model_v4_TED01","TED novel fold AF-A0A099P804-F1-model_v4_TED01"]]},{"id":"NCBITaxon:4911","l":"Kluyveromyces marxianus","na":1,"nb":1,"a":[["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["Pfam%3APF04684","BAF1 / ABF1 chromatin reorganising factor"]]},{"id":"NCBITaxon:5007","l":"Brettanomyces bruxellensis","na":1,"nb":1,"a":[["Sichuan_Shai_Vinegar_Yeast_Flavor_SynCom.html","Sichuan Shai Vinegar Yeast Flavor SynCom"]],"b":[["TED%3AAF-A0A7D9CWH5-F1-model_v4_TED01","TED novel fold AF-A0A7D9CWH5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":1,"nb":1,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["Pfam%3APF07335","Fungal chitosanase of glycosyl hydrolase group 75"]]},{"id":"NCBITaxon:5547","l":"Trichoderma viride","na":1,"nb":1,"a":[["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["Pfam%3APF14587","O-Glycosyl hydrolase family 30"]]},{"id":"NCBITaxon:61435","l":"Dehalococcoides mccartyi","na":1,"nb":1,"a":[["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"]],"b":[["TED%3AAF-A0A2J1E0L6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J1E0L6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:68239","l":"Streptomyces mirabilis","na":1,"nb":1,"a":[["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["TED%3AAF-A0A1I2Y4U7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2Y4U7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:72360","l":"Bacillus mojavensis","na":1,"nb":1,"a":[["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["Pfam%3APF05952","Bacillus competence pheromone ComX"]]},{"id":"NCBITaxon:82367","l":"Paracoccus pantotrophus","na":1,"nb":1,"a":[["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"]],"b":[["Pfam%3APF17805","AsnC-like ligand binding domain"]]},{"id":"NCBITaxon:901","l":"Desulfovibrio piger","na":1,"nb":1,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["TED%3AAF-A0A848CHH4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A848CHH4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:96241","l":"Bacillus spizizenii","na":1,"nb":1,"a":[["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"]],"b":[["Pfam%3APF05952","Bacillus competence pheromone ComX"]]},{"id":"NCBITaxon:986","l":"Flavobacterium johnsoniae","na":1,"nb":1,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["TED%3AAF-A0A1J7BWE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1J7BWE6-F1-model_v4_TED01"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/CommunityMech--TaxonMech.json b/assets/fleet/edges/CommunityMech--TaxonMech.json index c097287..3e02156 100644 --- a/assets/fleet/edges/CommunityMech--TaxonMech.json +++ b/assets/fleet/edges/CommunityMech--TaxonMech.json @@ -1 +1 @@ -{"a":"CommunityMech","b":"TaxonMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","TaxonMech":"https://culturebotai.github.io/TaxonMech/pages/taxon.html?id="},"n":1167,"by":{"NCBITaxon":784,"GTDB":383},"terms":[{"id":"NCBITaxon:2","l":"Bacteria","na":56,"nb":605695,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"]],"b":[["NCBITaxon%3A119160","2,3-D degrading bacterium NHC2"],["NCBITaxon%3A119159","2,3-D degrading bacterium NHG3"],["NCBITaxon%3A103498","2,4-D-degrading bacterium 001"],["NCBITaxon%3A103499","2,4-D-degrading bacterium 007"],["NCBITaxon%3A103492","2,4-D-degrading bacterium 010"],["NCBITaxon%3A103495","2,4-D-degrading bacterium 012"]]},{"id":"NCBITaxon:286","l":"Pseudomonas","na":18,"nb":33485,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"]],"b":[["NCBITaxon%3A196824","Arctic sea ice associated bacterium ARK10142"],["NCBITaxon%3A196823","Arctic sea ice bacterium ARK10061"],["NCBITaxon%3A196825","Arctic sea ice bacterium ARK9971"],["NCBITaxon%3A196826","Arctic sea ice bacterium ARK9995"],["NCBITaxon%3A215583","bacterium G5"],["NCBITaxon%3A1871086","Brevundimonas sp."]]},{"id":"GTDB:s__Escherichia_coli","l":"","na":18,"nb":2002,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["NCBITaxon%3A2099680","Methanobacteriaceae archaeon"],["NCBITaxon%3A2585118","Alistipes communis"],["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A2212467","Bacteroidaceae bacterium"],["NCBITaxon%3A2030927","Bacteroidales bacterium"],["NCBITaxon%3A195","Campylobacter coli"]]},{"id":"NCBITaxon:1386","l":"Bacillus","na":16,"nb":33976,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["NCBITaxon%3A208551","alkaliphilic bacterium AF112"],["NCBITaxon%3A33934","Anoxybacillus flavithermus"],["NCBITaxon%3A1185649","Anoxybacillus flavithermus subsp. flavithermus"],["NCBITaxon%3A28030","Bacillus acidopullulyticus"],["NCBITaxon%3A33017","Bacillus acidovorans"],["NCBITaxon%3A203540","Bacillus aeolius"]]},{"id":"NCBITaxon:2157","l":"Archaea","na":15,"nb":14013,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"]],"b":[["NCBITaxon%3A3879924","Abyssiniarchaeum dallolvicinus (SeqCode)"],["NCBITaxon%3A3693715","Acidarchaeum fankouense (SeqCode)"],["NCBITaxon%3A2283","Acidianus ambivalens"],["NCBITaxon%3A41673","Acidianus brierleyi"],["NCBITaxon%3A269667","Acidianus convivator"],["NCBITaxon%3A563177","Acidianus hospitalis"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":82,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["NCBITaxon%3A1390","Bacillus amyloliquefaciens"],["NCBITaxon%3A1452","Bacillus atrophaeus"],["NCBITaxon%3A640707","Bacillus atrophaeus ATCC 9372"],["NCBITaxon%3A483913","Bacillus inaquosorum"],["NCBITaxon%3A1236548","Bacillus inaquosorum KCTC 13429"],["NCBITaxon%3A1402","Bacillus licheniformis"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":14,"nb":3868,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A196023","Aeromonas hydrophila subsp. hydrophila"],["NCBITaxon%3A380703","Aeromonas hydrophila subsp. hydrophila ATCC 7966"],["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A35703","Citrobacter amalonaticus"],["NCBITaxon%3A163202","Corynebacterium appendicis"]]},{"id":"GTDB:s__Bacillus_subtilis","l":"","na":14,"nb":129,"a":[["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"]],"b":[["NCBITaxon%3A79881","Alkalicoccobacillus gibsonii"],["NCBITaxon%3A171685","Alkalicoccobacillus murimartini"],["NCBITaxon%3A1889774","Bacillaceae bacterium"],["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A2922309","Bacillus sp. 1006-3"],["NCBITaxon%3A3096766","Bacillus sp. 204(2023)"]]},{"id":"NCBITaxon:131567","l":"cellular organisms","na":11,"nb":625951,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Horonobe_Mizunami_URL_Subsurface_Microbiome.html","Horonobe and Mizunami Underground Research Laboratory Subsurface Microbiome"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["NCBITaxon%3A3879924","Abyssiniarchaeum dallolvicinus (SeqCode)"],["NCBITaxon%3A3693715","Acidarchaeum fankouense (SeqCode)"],["NCBITaxon%3A2283","Acidianus ambivalens"],["NCBITaxon%3A41673","Acidianus brierleyi"],["NCBITaxon%3A269667","Acidianus convivator"],["NCBITaxon%3A563177","Acidianus hospitalis"]]},{"id":"NCBITaxon:201174","l":"Actinomycetota","na":10,"nb":99340,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["NCBITaxon%3A291968","Acaricomes phytoseiuli"],["NCBITaxon%3A1120917","Acaricomes phytoseiuli DSM 14247"],["NCBITaxon%3A1872088","Acaricomes sp."],["NCBITaxon%3A1026830","Acaricomes sp. RHF117"],["NCBITaxon%3A298618","acid streamer iron-oxidizing bacterium CS11"],["NCBITaxon%3A298616","acid streamer iron-oxidizing bacterium KP1"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":9,"nb":557,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"]],"b":[["NCBITaxon%3A2073169","Chromobacterium alticapitis"],["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1454219","Pseudomonas aeruginosa 059A"],["NCBITaxon%3A1421538","Pseudomonas aeruginosa 0812"],["NCBITaxon%3A1421545","Pseudomonas aeruginosa 0822"],["NCBITaxon%3A1421531","Pseudomonas aeruginosa 0C2E"]]},{"id":"GTDB:s__Bacillus_A_cereus","l":"","na":9,"nb":479,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]],"b":[["NCBITaxon%3A1889774","Bacillaceae bacterium"],["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A2026189","Bacillus albus"],["NCBITaxon%3A658666","Bacillus bombysepticus"],["NCBITaxon%3A1330043","Bacillus bombysepticus str. Wang"],["NCBITaxon%3A1396","Bacillus cereus"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":9,"nb":53,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]],"b":[["NCBITaxon%3A47920","Acidovorax delafieldii"],["NCBITaxon%3A301","Ectopseudomonas oleovorans"],["NCBITaxon%3A29581","Janthinobacterium lividum"],["NCBITaxon%3A294","Pseudomonas fluorescens"],["NCBITaxon%3A77298","Pseudomonas jessenii"],["NCBITaxon%3A1968891","Pseudomonas jessenii subsp. pseudoputida"]]},{"id":"NCBITaxon:1224","l":"Pseudomonadota","na":8,"nb":251482,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"]],"b":[["NCBITaxon%3A119160","2,3-D degrading bacterium NHC2"],["NCBITaxon%3A119159","2,3-D degrading bacterium NHG3"],["NCBITaxon%3A103498","2,4-D-degrading bacterium 001"],["NCBITaxon%3A103499","2,4-D-degrading bacterium 007"],["NCBITaxon%3A103492","2,4-D-degrading bacterium 010"],["NCBITaxon%3A103495","2,4-D-degrading bacterium 012"]]},{"id":"NCBITaxon:1827","l":"Rhodococcus","na":8,"nb":3197,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]],"b":[["NCBITaxon%3A179179","bromate-reducing bacterium B7"],["NCBITaxon%3A179180","bromate-reducing bacterium B8"],["NCBITaxon%3A983873","Dietzia aurantiaca"],["NCBITaxon%3A84096","Gordonia alkanivorans"],["NCBITaxon%3A178933","PAH-contaminated sludge bacterium PB-32"],["NCBITaxon%3A43767","Prescottella equi"]]},{"id":"NCBITaxon:34072","l":"Variovorax","na":8,"nb":1193,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["PMI_Variovorax_Thermotolerance_Collection.html","PMI Variovorax Thermotolerance Collection"]],"b":[["NCBITaxon%3A160241","bacterium C2+6"],["NCBITaxon%3A62670","uncultured proteobacterium OCS98"],["NCBITaxon%3A114708","uncultured Variovorax sp."],["NCBITaxon%3A350651","uncultured Variovorax sp. FR059"],["NCBITaxon%3A140988","uncultured Variovorax sp. M16"],["NCBITaxon%3A129716","uncultured Variovorax VV1"]]},{"id":"GTDB:s__Pseudomonas_aeruginosa","l":"","na":8,"nb":353,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A1977087","Pseudomonadota bacterium"],["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1421531","Pseudomonas aeruginosa 0C2E"],["NCBITaxon%3A1339263","Pseudomonas aeruginosa 148"],["NCBITaxon%3A1286151","Pseudomonas aeruginosa 18A"]]},{"id":"GTDB:s__Bacillus_A_anthracis","l":"","na":8,"nb":326,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1392","Bacillus anthracis"],["NCBITaxon%3A1412844","Bacillus anthracis 52-G"],["NCBITaxon%3A1412843","Bacillus anthracis 8903-G"],["NCBITaxon%3A1412842","Bacillus anthracis 9080-G"],["NCBITaxon%3A1248431","Bacillus anthracis str. 3154"],["NCBITaxon%3A1248436","Bacillus anthracis str. 3166"]]},{"id":"GTDB:s__Bacillus_A_paranthracis","l":"","na":8,"nb":194,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A2654284","Bacillaceae bacterium C02"],["NCBITaxon%3A2654326","Bacillaceae bacterium C05"],["NCBITaxon%3A1392","Bacillus anthracis"],["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A405534","Bacillus cereus AH187"],["NCBITaxon%3A1053166","Bacillus cereus AND1407"]]},{"id":"GTDB:s__Bacillus_A_thuringiensis_S","l":"","na":8,"nb":79,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A1053170","Bacillus cereus BAG1X1-1"],["NCBITaxon%3A1053171","Bacillus cereus BAG1X1-2"],["NCBITaxon%3A1053173","Bacillus cereus BAG1X2-1"],["NCBITaxon%3A1053175","Bacillus cereus BAG1X2-3"],["NCBITaxon%3A1053176","Bacillus cereus BAG2O-1"]]},{"id":"GTDB:s__Bacillus_A_mycoides","l":"","na":8,"nb":73,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A526976","Bacillus cereus BDRD-ST196"],["NCBITaxon%3A2920307","Bacillus cereus group sp. BfR-BA-01331"],["NCBITaxon%3A2920371","Bacillus cereus group sp. BfR-BA-01523"],["NCBITaxon%3A3040247","Bacillus cereus group sp. MG9"],["NCBITaxon%3A2794593","Bacillus cereus group sp. N28"]]},{"id":"GTDB:s__Bacillus_A_tropicus","l":"","na":8,"nb":63,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1392","Bacillus anthracis"],["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A526977","Bacillus cereus ATCC 4342"],["NCBITaxon%3A269801","Bacillus cereus G9241"],["NCBITaxon%3A3445193","Bacillus cereus group sp. BceL035"],["NCBITaxon%3A3444975","Bacillus cereus group sp. BceL310"]]},{"id":"GTDB:s__Bacillus_A_toyonensis","l":"","na":8,"nb":48,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A3445245","Bacillus cereus group sp. Bce021"],["NCBITaxon%3A3445166","Bacillus cereus group sp. BceL062"],["NCBITaxon%3A3018086","Bacillus cereus group sp. BY112LC"],["NCBITaxon%3A3040246","Bacillus cereus group sp. MG6"],["NCBITaxon%3A3450679","Bacillus cereus group sp. MYBK150-2"]]},{"id":"GTDB:s__Bacillus_A_pacificus","l":"","na":8,"nb":46,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1392","Bacillus anthracis"],["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A222523","Bacillus cereus ATCC 10987"],["NCBITaxon%3A1126681","Bacillus cereus F"],["NCBITaxon%3A1217984","Bacillus cereus FRI-35"],["NCBITaxon%3A3018130","Bacillus cereus group sp. Bc002"]]},{"id":"NCBITaxon:492670","l":"Bacillus velezensis","na":8,"nb":18,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"]],"b":[["NCBITaxon%3A492670","Bacillus velezensis"],["NCBITaxon%3A2517241","Bacillus velezensis A3"],["NCBITaxon%3A1225788","Bacillus velezensis AS43.3"],["NCBITaxon%3A1239834","Bacillus velezensis At1"],["NCBITaxon%3A1114958","Bacillus velezensis CAU B946"],["NCBITaxon%3A2853458","Bacillus velezensis EYE_388"]]},{"id":"GTDB:s__Bacillus_A_thuringiensis_K","l":"","na":8,"nb":11,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A2920310","Bacillus cereus group sp. BfR-BA-01347"],["NCBITaxon%3A3450663","Bacillus cereus group sp. MYBK216-1"],["NCBITaxon%3A3450662","Bacillus cereus group sp. MYBK216-2"],["NCBITaxon%3A1053223","Bacillus cereus VD014"],["NCBITaxon%3A1053239","Bacillus cereus VD156"]]},{"id":"GTDB:s__Acidithiobacillus_ferrooxidans","l":"","na":8,"nb":10,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["NCBITaxon%3A920","Acidithiobacillus ferrooxidans"],["NCBITaxon%3A243159","Acidithiobacillus ferrooxidans ATCC 23270"],["NCBITaxon%3A380394","Acidithiobacillus ferrooxidans ATCC 53993"],["NCBITaxon%3A1433292","Acidithiobacillus ferrooxidans BY-3"],["NCBITaxon%3A3063953","Acidithiobacillus ferrooxidans F221"],["NCBITaxon%3A2801579","Acidithiobacillus sp. MC2.2"]]},{"id":"NCBITaxon:920","l":"Acidithiobacillus ferrooxidans","na":8,"nb":10,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["NCBITaxon%3A163359","Acidiferrobacter thiooxydans"],["NCBITaxon%3A1232575","Acidithiobacillus ferridurans"],["NCBITaxon%3A920","Acidithiobacillus ferrooxidans"],["NCBITaxon%3A243159","Acidithiobacillus ferrooxidans ATCC 23270"],["NCBITaxon%3A380394","Acidithiobacillus ferrooxidans ATCC 53993"],["NCBITaxon%3A1433292","Acidithiobacillus ferrooxidans BY-3"]]},{"id":"GTDB:s__Nitratidesulfovibrio_vulgaris","l":"","na":9,"nb":8,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["DVM_Triculture.html","DVM Tri-culture"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"]],"b":[["NCBITaxon%3A876","Desulfovibrio desulfuricans"],["NCBITaxon%3A885","Desulfovibrio sp."],["NCBITaxon%3A2049043","Desulfovibrionaceae bacterium"],["NCBITaxon%3A881","Nitratidesulfovibrio vulgaris"],["NCBITaxon%3A391774","Nitratidesulfovibrio vulgaris DP4"],["NCBITaxon%3A573059","Nitratidesulfovibrio vulgaris RCH1"]]},{"id":"GTDB:s__Synechococcus_elongatus","l":"","na":8,"nb":9,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"],["Synechococcus_Bacillus_SPC.html","Synechococcus-Bacillus Synthetic Photosynthetic Consortium"],["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"],["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"],["Synechococcus_Saccharomyces_SPC.html","Synechococcus-Saccharomyces Synthetic Photosynthetic Consortium"]],"b":[["NCBITaxon%3A32046","Synechococcus elongatus"],["NCBITaxon%3A2692912","Synechococcus elongatus FACHB-1061"],["NCBITaxon%3A1357541","Synechococcus elongatus FACHB-242"],["NCBITaxon%3A269084","Synechococcus elongatus PCC 6301"],["NCBITaxon%3A2883261","Synechococcus elongatus PCC 6311"],["NCBITaxon%3A1140","Synechococcus elongatus PCC 7942 = FACHB-805"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":8,"nb":8,"a":[["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"],["Sedimenting_Arabinose_Glucose_Saccharomyces_Coculture.html","Sedimenting Arabinose-Glucose Saccharomyces Coculture"]],"b":[["NCBITaxon%3A4932","Saccharomyces cerevisiae"],["NCBITaxon%3A1266529","Saccharomyces cerevisiae BY4743"],["NCBITaxon%3A1218710","Saccharomyces cerevisiae CBS 1585"],["NCBITaxon%3A764102","Saccharomyces cerevisiae FostersB"],["NCBITaxon%3A764101","Saccharomyces cerevisiae FostersO"],["NCBITaxon%3A1220494","Saccharomyces cerevisiae PE-2"]]},{"id":"NCBITaxon:976","l":"Bacteroidota","na":7,"nb":25542,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["NCBITaxon%3A120971","abyssal strain AII3"],["NCBITaxon%3A120972","abyssal strain AIII4"],["NCBITaxon%3A2967091","Abyssalbus sp."],["NCBITaxon%3A2926907","Abyssalbus ytuae"],["NCBITaxon%3A979970","Acetobacteroides hydrogenigenes"],["NCBITaxon%3A1872095","Acetobacteroides sp."]]},{"id":"NCBITaxon:40323","l":"Stenotrophomonas","na":7,"nb":3947,"a":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"]],"b":[["NCBITaxon%3A255","[Flavobacterium] lutescens"],["NCBITaxon%3A178909","PAH-contaminated sludge bacterium PB-8"],["NCBITaxon%3A178910","PAH-contaminated sludge bacterium PB-9"],["NCBITaxon%3A128780","Stenotrophomonas acidaminiphila"],["NCBITaxon%3A1292134","Stenotrophomonas africana"],["NCBITaxon%3A1212488","Stenotrophomonas africana MGB"]]},{"id":"NCBITaxon:1783273","l":"Patescibacteria group","na":7,"nb":3035,"a":[["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["Soil_BGC_Phylum_Depth_Vegetation_Community.html","Soil Biosynthetic Gene Cluster Phylum-Depth-Vegetation Community"],["Soil_CPR_Nanoarchaea_Rare_Biosphere_Community.html","Soil CPR Bacteria and Nanoarchaea Rare-Biosphere Community"]],"b":[["NCBITaxon%3A1932010","Candidatus Adlerbacteria bacterium"],["NCBITaxon%3A1618605","Candidatus Adlerbacteria bacterium GW2011_GWA1_54_10"],["NCBITaxon%3A1618606","Candidatus Adlerbacteria bacterium GW2011_GWA2_54_12"],["NCBITaxon%3A1618607","Candidatus Adlerbacteria bacterium GW2011_GWB1_54_7"],["NCBITaxon%3A1618608","Candidatus Adlerbacteria bacterium GW2011_GWC1_50_9"],["NCBITaxon%3A1797239","Candidatus Adlerbacteria bacterium RIFCSPHIGHO2_01_FULL_54_23"]]},{"id":"GTDB:s__Bacillus_velezensis","l":"","na":7,"nb":169,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"]],"b":[["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A1390","Bacillus amyloliquefaciens"],["NCBITaxon%3A1412898","Bacillus amyloliquefaciens CC178"],["NCBITaxon%3A1198291","Bacillus amyloliquefaciens DC-12"],["NCBITaxon%3A1457158","Bacillus amyloliquefaciens EBL11"],["NCBITaxon%3A1390372","Bacillus amyloliquefaciens EGD-AQ14"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":7,"nb":168,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A572264","Bacillus cereus 03BB102"],["NCBITaxon%3A451709","Bacillus cereus 03BB108"],["NCBITaxon%3A526967","Bacillus cereus 172560W"],["NCBITaxon%3A363751","Bacillus cereus 31673"],["NCBITaxon%3A526979","Bacillus cereus 95/8201"]]},{"id":"NCBITaxon:40324","l":"Stenotrophomonas maltophilia","na":7,"nb":44,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]],"b":[["NCBITaxon%3A13689","Sphingomonas paucimobilis"],["NCBITaxon%3A1292134","Stenotrophomonas africana"],["NCBITaxon%3A3384461","Stenotrophomonas beteli"],["NCBITaxon%3A86189","Stenotrophomonas hibiscicola"],["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A1288954","Stenotrophomonas maltophilia 503"]]},{"id":"NCBITaxon:818","l":"Bacteroides thetaiotaomicron","na":7,"nb":32,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A47678","Bacteroides caccae"],["NCBITaxon%3A411901","Bacteroides caccae ATCC 43185"],["NCBITaxon%3A29523","Bacteroides sp."],["NCBITaxon%3A818","Bacteroides thetaiotaomicron"],["NCBITaxon%3A1263054","Bacteroides thetaiotaomicron CAG:40"],["NCBITaxon%3A1235785","Bacteroides thetaiotaomicron dnLKV9"]]},{"id":"GTDB:s__Bacteroides_thetaiotaomicron","l":"","na":7,"nb":20,"a":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A3077420","Acutalibacteraceae bacterium"],["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A1201742","bacterium NLAE-zl-H412"],["NCBITaxon%3A1201743","bacterium NLAE-zl-H413"],["NCBITaxon%3A817","Bacteroides fragilis"],["NCBITaxon%3A29523","Bacteroides sp."]]},{"id":"GTDB:s__Bacillus_A_cereus_U","l":"","na":7,"nb":15,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A1053189","Bacillus cereus BAG5X1-1"],["NCBITaxon%3A1053193","Bacillus cereus BAG6O-2"],["NCBITaxon%3A1053218","Bacillus cereus MC118"],["NCBITaxon%3A1053219","Bacillus cereus MC67"],["NCBITaxon%3A1053231","Bacillus cereus VD118"]]},{"id":"GTDB:s__Bacillus_A_pseudomycoides","l":"","na":7,"nb":15,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A2920292","Bacillus cereus group sp. BfR-BA-01315"],["NCBITaxon%3A2794591","Bacillus cereus group sp. N21"],["NCBITaxon%3A1053234","Bacillus cereus VD136"],["NCBITaxon%3A1085379","Bacillus cereus VDM006"],["NCBITaxon%3A1085386","Bacillus cereus VDM021"],["NCBITaxon%3A1405","Bacillus mycoides"]]},{"id":"GTDB:s__Bacillus_A_mobilis","l":"","na":7,"nb":13,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A526992","Bacillus cereus AH1271"],["NCBITaxon%3A2920286","Bacillus cereus group sp. BfR-BA-01309"],["NCBITaxon%3A2920323","Bacillus cereus group sp. BfR-BA-01379"],["NCBITaxon%3A3094884","Bacillus cereus group sp. BfR-BA-01700"],["NCBITaxon%3A3018060","Bacillus cereus group sp. TH152-1LC"]]},{"id":"GTDB:s__Bacillus_A_sp003400245","l":"","na":7,"nb":13,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A1085389","Bacillus cereus B5-2"],["NCBITaxon%3A1053178","Bacillus cereus BAG2O-3"],["NCBITaxon%3A1085388","Bacillus cereus BAG3O-1"],["NCBITaxon%3A3040259","Bacillus cereus group sp. RP37"],["NCBITaxon%3A2034282","Bacillus sp. AFS075960"]]},{"id":"GTDB:s__Bacillus_A_nitratireducens","l":"","na":7,"nb":11,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A526993","Bacillus cereus AH1272"],["NCBITaxon%3A526994","Bacillus cereus AH1273"],["NCBITaxon%3A1053167","Bacillus cereus BAG1O-1"],["NCBITaxon%3A1053172","Bacillus cereus BAG1X1-3"],["NCBITaxon%3A1053183","Bacillus cereus BAG3X2-1"]]},{"id":"GTDB:s__Bacillus_A_paramycoides","l":"","na":7,"nb":8,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A2920287","Bacillus cereus group sp. BfR-BA-01310"],["NCBITaxon%3A3450636","Bacillus cereus group sp. MYBK30-1"],["NCBITaxon%3A3450635","Bacillus cereus group sp. MYBK30-2"],["NCBITaxon%3A1053229","Bacillus cereus VD107"],["NCBITaxon%3A2026194","Bacillus paramycoides"]]},{"id":"NCBITaxon:1239","l":"Bacillota","na":6,"nb":96113,"a":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["Thermophilic_ExSitu_Biomethanation_Mixed_Culture.html","Thermophilic Ex-Situ Biomethanation Mixed Culture"]],"b":[["NCBITaxon%3A46125","Abiotrophia defectiva"],["NCBITaxon%3A592010","Abiotrophia defectiva ATCC 49176"],["NCBITaxon%3A1410024","Abiotrophia defectiva HMP_JCVI_SC0171"],["NCBITaxon%3A1410025","Abiotrophia defectiva HMP_JCVI_SC0235"],["NCBITaxon%3A191553","Abiotrophia para-adiacens"],["NCBITaxon%3A76631","Abiotrophia sp."]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":6,"nb":79,"a":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["NCBITaxon%3A1931223","Caballeronia sp."],["NCBITaxon%3A89065","Pseudomonas abietaniphila"],["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1123912","Pseudomonas auricularis"],["NCBITaxon%3A930166","Pseudomonas brassicacearum"],["NCBITaxon%3A129817","Pseudomonas brenneri"]]},{"id":"NCBITaxon:32046","l":"Synechococcus elongatus","na":6,"nb":64,"a":[["Synechococcus_Bacillus_SPC.html","Synechococcus-Bacillus Synthetic Photosynthetic Consortium"],["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"],["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"],["Synechococcus_Saccharomyces_SPC.html","Synechococcus-Saccharomyces Synthetic Photosynthetic Consortium"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["NCBITaxon%3A326333","Synechococcus cf. elongatus CCMP1379"],["NCBITaxon%3A32046","Synechococcus elongatus"],["NCBITaxon%3A1665532","Synechococcus elongatus 0814_107_005_M13_Fp"],["NCBITaxon%3A2729336","Synechococcus elongatus AARL T012"],["NCBITaxon%3A3073440","Synechococcus elongatus ACC1"],["NCBITaxon%3A1130982","Synechococcus elongatus ARKK1"]]},{"id":"GTDB:s__Stenotrophomonas_sepilia","l":"","na":6,"nb":29,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A1977087","Pseudomonadota bacterium"],["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A1235458","Stenotrophomonas maltophilia AU12-09"],["NCBITaxon%3A3111513","Stenotrophomonas maltophilia group sp. CASM10"],["NCBITaxon%3A3111514","Stenotrophomonas maltophilia group sp. CASM26"],["NCBITaxon%3A3111515","Stenotrophomonas maltophilia group sp. CASM55"]]},{"id":"GTDB:s__Stenotrophomonas_muris","l":"","na":6,"nb":27,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A1926873","Lysobacteraceae bacterium"],["NCBITaxon%3A1977087","Pseudomonadota bacterium"],["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A1163399","Stenotrophomonas maltophilia D457"],["NCBITaxon%3A1451188","Stenotrophomonas maltophilia M30"],["NCBITaxon%3A2963283","Stenotrophomonas muris"]]},{"id":"GTDB:s__Stenotrophomonas_maltophilia","l":"","na":6,"nb":23,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A1977087","Pseudomonadota bacterium"],["NCBITaxon%3A36746","Pseudomonas cichorii"],["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A1183154","Stenotrophomonas maltophilia Ab55555"],["NCBITaxon%3A1190567","Stenotrophomonas maltophilia EPM1"],["NCBITaxon%3A522373","Stenotrophomonas maltophilia K279a"]]},{"id":"GTDB:s__Stenotrophomonas_indicatrix","l":"","na":6,"nb":20,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A1954209","bacterium AM6"],["NCBITaxon%3A86188","Stenotrophomonas geniculata"],["NCBITaxon%3A2045451","Stenotrophomonas indicatrix"],["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A1429851","Stenotrophomonas maltophilia 5BA-I-2"],["NCBITaxon%3A2940566","Stenotrophomonas sp. 1278"]]},{"id":"GTDB:s__Stenotrophomonas_geniculata","l":"","na":6,"nb":15,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A86188","Stenotrophomonas geniculata"],["NCBITaxon%3A1336242","Stenotrophomonas geniculata ATCC 19374 = JCM 13324"],["NCBITaxon%3A1167641","Stenotrophomonas geniculata N1"],["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A69392","Stenotrophomonas sp."]]},{"id":"GTDB:s__Stenotrophomonas_hibiscicola","l":"","na":6,"nb":14,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A1926873","Lysobacteraceae bacterium"],["NCBITaxon%3A1977087","Pseudomonadota bacterium"],["NCBITaxon%3A86189","Stenotrophomonas hibiscicola"],["NCBITaxon%3A1279018","Stenotrophomonas hibiscicola ATCC 19867"],["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A3061099","Stenotrophomonas maltophilia group sp. msm1"]]},{"id":"GTDB:s__Stenotrophomonas_bentonitica_A","l":"","na":6,"nb":13,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A1926873","Lysobacteraceae bacterium"],["NCBITaxon%3A1977087","Pseudomonadota bacterium"],["NCBITaxon%3A1450134","Stenotrophomonas bentonitica"],["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A1118235","Stenotrophomonas maltophilia PML168"],["NCBITaxon%3A216778","Stenotrophomonas rhizophila"]]},{"id":"GTDB:s__Stenotrophomonas_nematodicola","l":"","na":6,"nb":9,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A1210005","Stenotrophomonas maltophilia S028"],["NCBITaxon%3A2656746","Stenotrophomonas nematodicola"],["NCBITaxon%3A216778","Stenotrophomonas rhizophila"],["NCBITaxon%3A69392","Stenotrophomonas sp."],["NCBITaxon%3A2972779","Stenotrophomonas sp. Marseille-Q5258"]]},{"id":"GTDB:s__Leptospirillum_A_rubarum","l":"","na":6,"nb":7,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["NCBITaxon%3A178606","Leptospirillum ferriphilum"],["NCBITaxon%3A1048260","Leptospirillum ferriphilum ML-04"],["NCBITaxon%3A1441628","Leptospirillum ferriphilum YSK"],["NCBITaxon%3A419542","Leptospirillum rubarum"],["NCBITaxon%3A1159328","Leptospirillum sp. Group II 'C75'"],["NCBITaxon%3A1660083","Leptospirillum sp. Group II 'CF-1'"]]},{"id":"GTDB:s__Geobacter_sulfurreducens","l":"","na":6,"nb":6,"a":[["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"]],"b":[["NCBITaxon%3A3080755","Geobacter sp. 60473"],["NCBITaxon%3A1961403","Geobacter sp. UBA7696"],["NCBITaxon%3A35554","Geobacter sulfurreducens"],["NCBITaxon%3A663917","Geobacter sulfurreducens KN400"],["NCBITaxon%3A243231","Geobacter sulfurreducens PCA"],["NCBITaxon%3A1260928","Geobacter sulfurreducens subsp. ethanolicus"]]},{"id":"NCBITaxon:1883","l":"Streptomyces","na":5,"nb":31267,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["Wheat_Consortium_C6.html","Wheat Synthetic Consortium C6"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A208445","Amycolatopsis tolypomycina"],["NCBITaxon%3A1470348","Candidatus Streptomyces massiliensis"],["NCBITaxon%3A1211820","Candidatus Streptomyces massiliensis AP10"],["NCBITaxon%3A371608","Candidatus Streptomyces philanthi"],["NCBITaxon%3A1563718","Candidatus Streptomyces philanthi bv. albopilosus"],["NCBITaxon%3A371609","Candidatus Streptomyces philanthi bv. barbiger"]]},{"id":"NCBITaxon:374","l":"Bradyrhizobium","na":5,"nb":9860,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"],["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["NCBITaxon%3A2683706","Bradyrhizobium acaciae"],["NCBITaxon%3A2734909","Bradyrhizobium aeschynomenes"],["NCBITaxon%3A2751811","Bradyrhizobium agreste"],["NCBITaxon%3A634784","Bradyrhizobium algeriense"],["NCBITaxon%3A1571202","Bradyrhizobium altum"],["NCBITaxon%3A1300045","Bradyrhizobium americanum"]]},{"id":"NCBITaxon:1578","l":"Lactobacillus","na":5,"nb":2379,"a":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"],["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["NCBITaxon%3A2838636","Candidatus Lactobacillus pullistercoris"],["NCBITaxon%3A2838724","Candidatus Paralactobacillus gallistercoris"],["NCBITaxon%3A1612","Companilactobacillus farciminis"],["NCBITaxon%3A3435293","Faecalibacterium langellae"],["NCBITaxon%3A1614","Fructilactobacillus fructivorans"],["NCBITaxon%3A1597","Lacticaseibacillus paracasei"]]},{"id":"NCBITaxon:57723","l":"Acidobacteriota","na":5,"nb":1245,"a":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["SPRUCE_Peatland_Methane_Cycling_Community.html","SPRUCE Peatland Methane-Cycling Microbial Community"]],"b":[["NCBITaxon%3A442870","Acanthopleuribacter pedis"],["NCBITaxon%3A1872087","Acanthopleuribacter sp."],["NCBITaxon%3A2696471","Acanthopleuribacteraceae bacterium"],["NCBITaxon%3A1335627","Acidicapsa acidiphila"],["NCBITaxon%3A1615681","Acidicapsa acidisoli"],["NCBITaxon%3A946336","Acidicapsa borealis"]]},{"id":"NCBITaxon:106591","l":"Ensifer","na":5,"nb":902,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Staged_Cattle_Manure_Ensifer_Bacillus_SynCom.html","Staged Ensifer-Bacillus Cattle-Manure Wastewater SynCom"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A106592","Ensifer adhaerens"],["NCBITaxon%3A1416753","Ensifer adhaerens OV14"],["NCBITaxon%3A1708715","Ensifer aridi"],["NCBITaxon%3A555315","Ensifer canadensis"],["NCBITaxon%3A1806200","Ensifer collicola"],["NCBITaxon%3A1664424","Ensifer genomosp. I"]]},{"id":"NCBITaxon:1822464","l":"Paraburkholderia","na":5,"nb":416,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["NCBITaxon%3A1034313","Candidatus Paraburkholderia andongensis"],["NCBITaxon%3A242161","Candidatus Paraburkholderia calva"],["NCBITaxon%3A1069529","Candidatus Paraburkholderia hispidae"],["NCBITaxon%3A198822","Candidatus Paraburkholderia kirkii"],["NCBITaxon%3A1055526","Candidatus Paraburkholderia kirkii UZHbot1"],["NCBITaxon%3A242162","Candidatus Paraburkholderia nigropunctata"]]},{"id":"GTDB:s__Methanospirillum_hungatei","l":"","na":8,"nb":5,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"]],"b":[["NCBITaxon%3A1852878","Euryarchaeota archaeon ADurb.Bin294"],["NCBITaxon%3A1915702","Methanomicrobiales archaeon UBA81"],["NCBITaxon%3A2203","Methanospirillum hungatei"],["NCBITaxon%3A323259","Methanospirillum hungatei JF-1"],["NCBITaxon%3A45200","Methanospirillum sp."]]},{"id":"GTDB:s__Bacillus_A_luti","l":"","na":7,"nb":5,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A526968","Bacillus cereus R309803"],["NCBITaxon%3A2026191","Bacillus luti"],["NCBITaxon%3A2217834","Bacillus sp. SH5-2"],["NCBITaxon%3A1428","Bacillus thuringiensis"]]},{"id":"GTDB:s__Bacillus_A_sp018966865","l":"","na":7,"nb":5,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1053206","Bacillus cereus HuA4-10"],["NCBITaxon%3A2846779","Bacillus sp. NP247"],["NCBITaxon%3A3346273","Bacillus sp. NPDC057893"],["NCBITaxon%3A3347061","Bacillus sp. NPDC060175"],["NCBITaxon%3A1428","Bacillus thuringiensis"]]},{"id":"GTDB:s__Hungateiclostridium_thermocellum","l":"","na":5,"nb":7,"a":[["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["NCBITaxon%3A1515","Acetivibrio thermocellus"],["NCBITaxon%3A1138384","Acetivibrio thermocellus AD2"],["NCBITaxon%3A203119","Acetivibrio thermocellus ATCC 27405"],["NCBITaxon%3A1349417","Acetivibrio thermocellus BC1"],["NCBITaxon%3A637887","Acetivibrio thermocellus DSM 1313"],["NCBITaxon%3A572545","Acetivibrio thermocellus DSM 2360"]]},{"id":"GTDB:s__Stenotrophomonas_sp002192255","l":"","na":5,"nb":7,"a":[["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A868597","Stenotrophomonas maltophilia JV3"],["NCBITaxon%3A69392","Stenotrophomonas sp."],["NCBITaxon%3A2183909","Stenotrophomonas sp. AG209"],["NCBITaxon%3A3162882","Stenotrophomonas sp. NRRL B-14846"],["NCBITaxon%3A1641707","Stenotrophomonas sp. TD3"]]},{"id":"NCBITaxon:35554","l":"Geobacter sulfurreducens","na":6,"nb":5,"a":[["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"]],"b":[["NCBITaxon%3A35554","Geobacter sulfurreducens"],["NCBITaxon%3A663917","Geobacter sulfurreducens KN400"],["NCBITaxon%3A243231","Geobacter sulfurreducens PCA"],["NCBITaxon%3A1260928","Geobacter sulfurreducens subsp. ethanolicus"],["NCBITaxon%3A1649546","Geobacter sulfurreducens subsp. sulfurreducens"]]},{"id":"GTDB:s__Dehalococcoides_mccartyi","l":"","na":5,"nb":5,"a":[["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"]],"b":[["NCBITaxon%3A61435","Dehalococcoides mccartyi"],["NCBITaxon%3A243164","Dehalococcoides mccartyi 195"],["NCBITaxon%3A1432060","Dehalococcoides mccartyi CG4"],["NCBITaxon%3A1966486","Dehalococcoides sp."],["NCBITaxon%3A3348344","Dehalococcoides sp. THU4"]]},{"id":"NCBITaxon:32008","l":"Burkholderia","na":4,"nb":7299,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["NCBITaxon%3A2015348","Burkholderia aenigmatica"],["NCBITaxon%3A2683677","Burkholderia alba"],["NCBITaxon%3A152480","Burkholderia ambifaria"],["NCBITaxon%3A339670","Burkholderia ambifaria AMMD"],["NCBITaxon%3A396596","Burkholderia ambifaria IOP40-10"],["NCBITaxon%3A398577","Burkholderia ambifaria MC40-6"]]},{"id":"NCBITaxon:13687","l":"Sphingomonas","na":4,"nb":4913,"a":[["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"],["Wheat_Consortium_C6.html","Wheat Synthetic Consortium C6"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["NCBITaxon%3A196160","Arctic sea ice bacterium ARK10016"],["NCBITaxon%3A3121369","Candidatus Sphingomonas colombiensis"],["NCBITaxon%3A2838760","Candidatus Sphingomonas excrementigallinarum"],["NCBITaxon%3A3121370","Candidatus Sphingomonas phytovorans"],["NCBITaxon%3A1996","Microtetraspora glauca"],["NCBITaxon%3A135719","Sphingobium amiense"]]},{"id":"NCBITaxon:570","l":"Klebsiella","na":4,"nb":4683,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"]],"b":[["NCBITaxon%3A548","Klebsiella aerogenes"],["NCBITaxon%3A1308731","Klebsiella aerogenes ADL-323"],["NCBITaxon%3A935296","Klebsiella aerogenes EA1509E"],["NCBITaxon%3A685445","Klebsiella aerogenes FGI35"],["NCBITaxon%3A1028307","Klebsiella aerogenes KCTC 2190"],["NCBITaxon%3A1439320","Klebsiella aerogenes MGH 61"]]},{"id":"NCBITaxon:237","l":"Flavobacterium","na":4,"nb":4449,"a":[["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["NCBITaxon%3A196875","Arctic sea ice associated bacterium ARK10272"],["NCBITaxon%3A196870","Arctic sea ice bacterium ARK10104"],["NCBITaxon%3A196871","Arctic sea ice bacterium ARK10159"],["NCBITaxon%3A196872","Arctic sea ice bacterium ARK10161"],["NCBITaxon%3A196873","Arctic sea ice bacterium ARK10164"],["NCBITaxon%3A196874","Arctic sea ice bacterium ARK10270"]]},{"id":"NCBITaxon:68287","l":"Mesorhizobium","na":4,"nb":3794,"a":[["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A325218","alpha proteobacterium WG1"],["NCBITaxon%3A102683","Biserrula isolate"],["NCBITaxon%3A1209958","Mesorhizobium abyssinicae"],["NCBITaxon%3A1326083","Mesorhizobium acaciae"],["NCBITaxon%3A3072314","Mesorhizobium album"],["NCBITaxon%3A2448478","Mesorhizobium alexandrii"]]},{"id":"NCBITaxon:1485","l":"Clostridium","na":4,"nb":3036,"a":[["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["QY2S1_Dehalogenimonas_BFR_Bioremediation_Consortium.html","QY2-S1 Dehalogenimonas-Rich Brominated-Flame-Retardant Consortium"],["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]],"b":[["NCBITaxon%3A288965","Acetivibrio clariflavus"],["NCBITaxon%3A720554","Acetivibrio clariflavus DSM 19732"],["NCBITaxon%3A461876","Alkaliphilus oremlandii"],["NCBITaxon%3A259063","Anaerocolumna jejuensis"],["NCBITaxon%3A1121322","Anaerocolumna jejuensis DSM 15929"],["NCBITaxon%3A264463","Anaerosporobacter mobilis"]]},{"id":"NCBITaxon:200795","l":"Chloroflexota","na":4,"nb":1565,"a":[["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["Soil_BGC_Phylum_Depth_Vegetation_Community.html","Soil Biosynthetic Gene Cluster Phylum-Depth-Vegetation Community"]],"b":[["NCBITaxon%3A913108","Aggregatilinea lenta"],["NCBITaxon%3A2806333","Aggregatilinea sp."],["NCBITaxon%3A2952881","Aggregatilineaceae bacterium"],["NCBITaxon%3A2952883","Aggregatilineales bacterium"],["NCBITaxon%3A3117437","Aggregatilineales bacterium SYSU G02658"],["NCBITaxon%3A2738567","Anaerolinaceae bacterium JGI_KA33_A04_032"]]},{"id":"NCBITaxon:816","l":"Bacteroides","na":4,"nb":1027,"a":[["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]],"b":[["NCBITaxon%3A85831","Bacteroides acidifaciens"],["NCBITaxon%3A1235814","Bacteroides acidifaciens JCM 10556"],["NCBITaxon%3A1841855","Bacteroides bouchesdurhonensis"],["NCBITaxon%3A47678","Bacteroides caccae"],["NCBITaxon%3A411901","Bacteroides caccae ATCC 43185"],["NCBITaxon%3A1263037","Bacteroides caccae CAG:21"]]},{"id":"NCBITaxon:1678","l":"Bifidobacterium","na":4,"nb":993,"a":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]],"b":[["NCBITaxon%3A638619","Bifidobacterium actinocoloniiforme"],["NCBITaxon%3A1437605","Bifidobacterium actinocoloniiforme DSM 22766"],["NCBITaxon%3A1680","Bifidobacterium adolescentis"],["NCBITaxon%3A367928","Bifidobacterium adolescentis ATCC 15703"],["NCBITaxon%3A1263057","Bifidobacterium adolescentis CAG:119"],["NCBITaxon%3A1410644","Bifidobacterium adolescentis DSM 20087"]]},{"id":"NCBITaxon:165695","l":"Sphingobium","na":4,"nb":663,"a":[["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["Sphingobium_Nitrososphaera_Phenanthrene_Carbon_SynCom.html","Sphingobium-Nitrososphaera Phenanthrene-Carbon SynCom"],["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["NCBITaxon%3A86193","Sphingobium abikonense"],["NCBITaxon%3A1219036","Sphingobium abikonense NBRC 16140"],["NCBITaxon%3A2933566","Sphingobium agri"],["NCBITaxon%3A3341828","Sphingobium agrisoli"],["NCBITaxon%3A2008318","Sphingobium algorifonticola"],["NCBITaxon%3A135719","Sphingobium amiense"]]},{"id":"NCBITaxon:872","l":"Desulfovibrio","na":4,"nb":600,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["NCBITaxon%3A2838532","Candidatus Desulfovibrio faecigallinarum"],["NCBITaxon%3A2838533","Candidatus Desulfovibrio gallistercoris"],["NCBITaxon%3A2838534","Candidatus Desulfovibrio intestinavium"],["NCBITaxon%3A2838535","Candidatus Desulfovibrio intestinigallinarum"],["NCBITaxon%3A2838536","Candidatus Desulfovibrio intestinipullorum"],["NCBITaxon%3A2696086","Candidatus Desulfovibrio kirbyi"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":4,"nb":178,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]],"b":[["NCBITaxon%3A150055","Streptococcus lutetiensis"],["NCBITaxon%3A1309","Streptococcus mutans"],["NCBITaxon%3A857155","Streptococcus mutans 11A1"],["NCBITaxon%3A857147","Streptococcus mutans 11SSST2"],["NCBITaxon%3A857143","Streptococcus mutans 11VS1"],["NCBITaxon%3A857113","Streptococcus mutans 14D"]]},{"id":"GTDB:s__Streptococcus_mutans","l":"","na":4,"nb":165,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]],"b":[["NCBITaxon%3A1993866","Lactobacillales bacterium"],["NCBITaxon%3A1309","Streptococcus mutans"],["NCBITaxon%3A857155","Streptococcus mutans 11A1"],["NCBITaxon%3A857147","Streptococcus mutans 11SSST2"],["NCBITaxon%3A857143","Streptococcus mutans 11VS1"],["NCBITaxon%3A857113","Streptococcus mutans 14D"]]},{"id":"NCBITaxon:28231","l":"Geobacter","na":4,"nb":102,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["Waste_Sludge_Electrofermentation_Biofilm_Suspension_Community.html","Waste-Sludge Electro-Fermentation Biofilm-Suspension Community"]],"b":[["NCBITaxon%3A1340425","Geobacter anodireducens"],["NCBITaxon%3A345631","Geobacter argillaceus"],["NCBITaxon%3A2815309","Geobacter benzoatilyticus"],["NCBITaxon%3A155042","Geobacter grbiciae"],["NCBITaxon%3A293884","Geobacter hephaestius"],["NCBITaxon%3A225193","Geobacter humireducens"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":4,"nb":101,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A817","Bacteroides fragilis"],["NCBITaxon%3A457424","Bacteroides fragilis 3_1_12"],["NCBITaxon%3A862962","Bacteroides fragilis 638R"],["NCBITaxon%3A1308728","Bacteroides fragilis ADL-402"],["NCBITaxon%3A1263046","Bacteroides fragilis CAG:47"],["NCBITaxon%3A1263047","Bacteroides fragilis CAG:558"]]},{"id":"GTDB:s__Bacteroides_fragilis","l":"","na":4,"nb":92,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A3077420","Acutalibacteraceae bacterium"],["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A817","Bacteroides fragilis"],["NCBITaxon%3A862962","Bacteroides fragilis 638R"],["NCBITaxon%3A1263046","Bacteroides fragilis CAG:47"],["NCBITaxon%3A997878","Bacteroides fragilis CL03T00C08"]]},{"id":"GTDB:s__Bacteroides_ovatus","l":"","na":4,"nb":38,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A1339286","Bacteroides fragilis str. 3725 D9 ii"],["NCBITaxon%3A28116","Bacteroides ovatus"],["NCBITaxon%3A665954","Bacteroides ovatus 3_8_47FAA"],["NCBITaxon%3A411476","Bacteroides ovatus ATCC 8483"],["NCBITaxon%3A1263050","Bacteroides ovatus CAG:22"],["NCBITaxon%3A997885","Bacteroides ovatus CL02T12C04"]]},{"id":"NCBITaxon:1590","l":"Lactiplantibacillus plantarum","na":4,"nb":36,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Pichia_Lactiplantibacillus_CCMA_Plant_Beverage_Coculture.html","Pichia-Lactiplantibacillus CCMA Plant Beverage Coculture"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["NCBITaxon%3A271881","Lactiplantibacillus argentoratensis"],["NCBITaxon%3A1423831","Lactiplantibacillus argentoratensis DSM 16365"],["NCBITaxon%3A60520","Lactiplantibacillus paraplantarum"],["NCBITaxon%3A1590","Lactiplantibacillus plantarum"],["NCBITaxon%3A1327988","Lactiplantibacillus plantarum 16"],["NCBITaxon%3A1399793","Lactiplantibacillus plantarum 19L3"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":4,"nb":32,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["NCBITaxon%3A1359","Lactococcus cremoris"],["NCBITaxon%3A2816960","Lactococcus cremoris subsp. cremoris"],["NCBITaxon%3A1348655","Lactococcus cremoris subsp. cremoris NBRC 100676"],["NCBITaxon%3A1363","Lactococcus garvieae"],["NCBITaxon%3A1358","Lactococcus lactis"],["NCBITaxon%3A2731284","Lactococcus lactis (ex Latorre-Guzman et al. 1977) Schleifer et al. 1986"]]},{"id":"GTDB:s__Streptococcus_thermophilus","l":"","na":4,"nb":30,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["NCBITaxon%3A1903720","Bacilli bacterium"],["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A1306","Streptococcus sp."],["NCBITaxon%3A2921366","Streptococcus sp. FSL E2-3488"],["NCBITaxon%3A2954729","Streptococcus sp. FSL E2-3494"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":4,"nb":25,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["NCBITaxon%3A35783","Enterococcus sp."],["NCBITaxon%3A1308","Streptococcus thermophilus"],["NCBITaxon%3A1435981","Streptococcus thermophilus 1F8CT"],["NCBITaxon%3A1408178","Streptococcus thermophilus ASCC 1275"],["NCBITaxon%3A1263110","Streptococcus thermophilus CAG:236"],["NCBITaxon%3A1042404","Streptococcus thermophilus CNCM I-1630"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":4,"nb":19,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["NCBITaxon%3A1402","Bacillus licheniformis"],["NCBITaxon%3A1169411","Bacillus licheniformis 10-1-A"],["NCBITaxon%3A44097","Bacillus licheniformis 2709"],["NCBITaxon%3A1169412","Bacillus licheniformis 5-2-D"],["NCBITaxon%3A1368424","Bacillus licheniformis CG-B52"],["NCBITaxon%3A1232672","Bacillus licheniformis CGMCC 3963"]]},{"id":"GTDB:s__Bacteroides_hominis","l":"","na":4,"nb":17,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A3077420","Acutalibacteraceae bacterium"],["NCBITaxon%3A817","Bacteroides fragilis"],["NCBITaxon%3A457424","Bacteroides fragilis 3_1_12"],["NCBITaxon%3A1263047","Bacteroides fragilis CAG:558"],["NCBITaxon%3A1073386","Bacteroides fragilis HMW 610"],["NCBITaxon%3A1073388","Bacteroides fragilis HMW 616"]]},{"id":"NCBITaxon:33038","l":"Mediterraneibacter gnavus","na":4,"nb":13,"a":[["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Clostridial_isoDCA_Mini_Consortium.html","Clostridial isoDCA Mini Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A33038","Mediterraneibacter gnavus"],["NCBITaxon%3A1384063","Mediterraneibacter gnavus AGR2154"],["NCBITaxon%3A411470","Mediterraneibacter gnavus ATCC 29149"],["NCBITaxon%3A1263106","Mediterraneibacter gnavus CAG:126"],["NCBITaxon%3A1073375","Mediterraneibacter gnavus CC55_001C"],["NCBITaxon%3A935582","Mediterraneibacter gnavus E1"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":4,"nb":12,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"],["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["NCBITaxon%3A72000","Kocuria rhizophila"],["NCBITaxon%3A378753","Kocuria rhizophila DC2201"],["NCBITaxon%3A1272","Kocuria varians"],["NCBITaxon%3A1270","Micrococcus luteus"],["NCBITaxon%3A1357403","Micrococcus luteus CD1_FAA_NB_1"],["NCBITaxon%3A935864","Micrococcus luteus J28"]]},{"id":"GTDB:s__Bifidobacterium_infantis","l":"","na":4,"nb":9,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["NCBITaxon%3A2569485","Bifidobacteriaceae bacterium MCC01971"],["NCBITaxon%3A216816","Bifidobacterium longum"],["NCBITaxon%3A1682","Bifidobacterium longum subsp. infantis"],["NCBITaxon%3A391904","Bifidobacterium longum subsp. infantis ATCC 15697 = JCM 1222 = DSM 20088"],["NCBITaxon%3A1457183","Bifidobacterium longum subsp. infantis EK3"],["NCBITaxon%3A1695","Bifidobacterium longum subsp. suis"]]},{"id":"NCBITaxon:37919","l":"Rhodococcus opacus","na":4,"nb":9,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"],["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["NCBITaxon%3A1833","Rhodococcus erythropolis"],["NCBITaxon%3A37919","Rhodococcus opacus"],["NCBITaxon%3A632772","Rhodococcus opacus B4"],["NCBITaxon%3A1129896","Rhodococcus opacus M213"],["NCBITaxon%3A1219021","Rhodococcus opacus NBRC 100626"],["NCBITaxon%3A543736","Rhodococcus opacus PD630"]]},{"id":"GTDB:s__Acidithiobacillus_thiooxidans","l":"","na":4,"nb":7,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["NCBITaxon%3A119978","Acidithiobacillus albertensis"],["NCBITaxon%3A1872118","Acidithiobacillus sp."],["NCBITaxon%3A2697656","Acidithiobacillus sp. HP-11"],["NCBITaxon%3A930","Acidithiobacillus thiooxidans"],["NCBITaxon%3A1432062","Acidithiobacillus thiooxidans A01"],["NCBITaxon%3A637390","Acidithiobacillus thiooxidans ATCC 19377"]]},{"id":"GTDB:s__Bacillus_A_cereus_K","l":"","na":7,"nb":4,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A1053179","Bacillus cereus BAG2X1-1"],["NCBITaxon%3A1053181","Bacillus cereus BAG2X1-3"],["NCBITaxon%3A1890302","Bacillus wiedmannii"]]},{"id":"GTDB:s__Geobacter_metallireducens","l":"","na":5,"nb":4,"a":[["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"]],"b":[["NCBITaxon%3A155042","Geobacter grbiciae"],["NCBITaxon%3A28232","Geobacter metallireducens"],["NCBITaxon%3A269799","Geobacter metallireducens GS-15"],["NCBITaxon%3A691164","Geobacter metallireducens RCH3"]]},{"id":"NCBITaxon:863","l":"Syntrophomonas wolfei","na":4,"nb":5,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["NCBITaxon%3A863","Syntrophomonas wolfei"],["NCBITaxon%3A378794","Syntrophomonas wolfei subsp. methylbutyratica"],["NCBITaxon%3A373074","Syntrophomonas wolfei subsp. saponavida"],["NCBITaxon%3A370885","Syntrophomonas wolfei subsp. wolfei"],["NCBITaxon%3A335541","Syntrophomonas wolfei subsp. wolfei str. Goettingen G311"]]},{"id":"NCBITaxon:930","l":"Acidithiobacillus thiooxidans","na":4,"nb":4,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["NCBITaxon%3A3063952","Acidithiobacillus concretivorus"],["NCBITaxon%3A930","Acidithiobacillus thiooxidans"],["NCBITaxon%3A1432062","Acidithiobacillus thiooxidans A01"],["NCBITaxon%3A637390","Acidithiobacillus thiooxidans ATCC 19377"]]},{"id":"NCBITaxon:547","l":"Enterobacter","na":3,"nb":6599,"a":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["NCBITaxon%3A3142537","Enterobacter adelaidei"],["NCBITaxon%3A61645","Enterobacter asburiae"],["NCBITaxon%3A1330532","Enterobacter asburiae B1-3"],["NCBITaxon%3A1330533","Enterobacter asburiae B5-60"],["NCBITaxon%3A1442602","Enterobacter asburiae C1"],["NCBITaxon%3A1298604","Enterobacter asburiae JCM 6051"]]},{"id":"NCBITaxon:379","l":"Rhizobium","na":3,"nb":5539,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["NCBITaxon%3A2934936","Allorhizobium sonneratiae"],["NCBITaxon%3A2041385","Arminella tumorigenes"],["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A1355477","Bradyrhizobium diazoefficiens"],["NCBITaxon%3A224911","Bradyrhizobium diazoefficiens USDA 110"],["NCBITaxon%3A29448","Bradyrhizobium elkanii"]]},{"id":"NCBITaxon:44249","l":"Paenibacillus","na":3,"nb":5352,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["NCBITaxon%3A1531483","Candidatus Paenibacillus aerius"],["NCBITaxon%3A1531475","Candidatus Paenibacillus castillanus"],["NCBITaxon%3A1515745","Candidatus Paenibacillus guadalajarensis"],["NCBITaxon%3A1531482","Candidatus Paenibacillus hispaniensis"],["NCBITaxon%3A1531476","Candidatus Paenibacillus hominis"],["NCBITaxon%3A1515744","Candidatus Paenibacillus ilicicola"]]},{"id":"NCBITaxon:407","l":"Methylobacterium","na":3,"nb":2522,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["NCBITaxon%3A56818","Methylobacillus sp."],["NCBITaxon%3A333297","Methylobacterium adhaesivum"],["NCBITaxon%3A418708","Methylobacterium aerolatum"],["NCBITaxon%3A2738439","Methylobacterium ajmalii"],["NCBITaxon%3A3344826","Methylobacterium alsaeris"],["NCBITaxon%3A3071472","Methylobacterium amylolyticum"]]},{"id":"NCBITaxon:22","l":"Shewanella","na":3,"nb":2330,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Shewanella_Denitrifying_Richness_SynComs.html","Shewanella Denitrifying Richness SynComs"]],"b":[["NCBITaxon%3A196819","Arctic sea ice bacterium ARK10035"],["NCBITaxon%3A259291","cf. Shewanella SAR-1"],["NCBITaxon%3A259292","cf. Shewanella SAR-2"],["NCBITaxon%3A73131","Mariana eubacterium no. 11"],["NCBITaxon%3A73132","Mariana eubacterium no. 13"],["NCBITaxon%3A73133","Mariana eubacterium no. 24"]]},{"id":"NCBITaxon:53335","l":"Pantoea","na":3,"nb":2056,"a":[["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["NCBITaxon%3A2080494","Candidatus Pantoea alvi"],["NCBITaxon%3A1947042","Candidatus Pantoea astica"],["NCBITaxon%3A3108221","Candidatus Pantoea bathycoeliae"],["NCBITaxon%3A2831036","Candidatus Pantoea bituminis"],["NCBITaxon%3A1947044","Candidatus Pantoea borealis"],["NCBITaxon%3A1235990","Candidatus Pantoea carbekii"]]},{"id":"NCBITaxon:2742","l":"Marinobacter","na":3,"nb":1792,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["NCBITaxon%3A196838","Arctic sea ice bacterium ARK10228"],["NCBITaxon%3A196839","Arctic sea ice bacterium ARK10244"],["NCBITaxon%3A196840","Arctic sea ice bacterium ARK10251"],["NCBITaxon%3A196841","Arctic sea ice bacterium ARK10296"],["NCBITaxon%3A127731","endocytic bacterium Noc10"],["NCBITaxon%3A127732","endocytic bacterium Noc11"]]},{"id":"NCBITaxon:203682","l":"Planctomycetota","na":3,"nb":1406,"a":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"]],"b":[["NCBITaxon%3A1930276","Adhaeretor mobilis"],["NCBITaxon%3A2862453","Adhaeretor sp."],["NCBITaxon%3A3454464","Aeoliella fuhlenseeensis"],["NCBITaxon%3A2527972","Aeoliella mucimassa"],["NCBITaxon%3A2795800","Aeoliella sp."],["NCBITaxon%3A2954799","Aeoliella straminimaris"]]},{"id":"NCBITaxon:528","l":"Ochrobactrum","na":3,"nb":1276,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"]],"b":[["NCBITaxon%3A529","Brucella anthropi"],["NCBITaxon%3A659015","Brucella daejeonensis"],["NCBITaxon%3A52132","Brucella sp."],["NCBITaxon%3A246569","marine bacterium 13737"],["NCBITaxon%3A259359","microbial fuel cell bacterium ISO1"],["NCBITaxon%3A2993941","Ochrobactrum chromiisoli"]]},{"id":"NCBITaxon:222","l":"Achromobacter","na":3,"nb":1173,"a":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"]],"b":[["NCBITaxon%3A1287736","Achromobacter aegrifaciens"],["NCBITaxon%3A1783500","Achromobacter agile"],["NCBITaxon%3A1353888","Achromobacter agilis"],["NCBITaxon%3A1750518","Achromobacter aloeverae"],["NCBITaxon%3A1389935","Achromobacter animicus"],["NCBITaxon%3A1287737","Achromobacter anxifer"]]},{"id":"NCBITaxon:55080","l":"Brevibacillus","na":3,"nb":774,"a":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"]],"b":[["NCBITaxon%3A51101","Brevibacillus agri"],["NCBITaxon%3A1444307","Brevibacillus agri 5-2"],["NCBITaxon%3A1246477","Brevibacillus agri BAB-2500"],["NCBITaxon%3A2570228","Brevibacillus antibioticus"],["NCBITaxon%3A927786","Brevibacillus aydinogluensis"],["NCBITaxon%3A45462","Brevibacillus borstelensis"]]},{"id":"NCBITaxon:149698","l":"Massilia","na":3,"nb":707,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]],"b":[["NCBITaxon%3A1904440","Duganella sp."],["NCBITaxon%3A453817","Massilia aerilata"],["NCBITaxon%3A1811226","Massilia agilis"],["NCBITaxon%3A1886785","Massilia agri"],["NCBITaxon%3A2892444","Massilia agrisoli"],["NCBITaxon%3A286638","Massilia alkalitolerans"]]},{"id":"GTDB:s__Enterococcus_faecalis","l":"","na":3,"nb":615,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A363922","bacterium spbL1type3-1"],["NCBITaxon%3A2291321","Enterococcaceae bacterium"],["NCBITaxon%3A1951731","Enterococcaceae bacterium UBA3893"],["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A1260363","Enterococcus faecalis 02-MB-BW-10"]]},{"id":"NCBITaxon:85413","l":"Allobosea","na":3,"nb":605,"a":[["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]],"b":[["NCBITaxon%3A132928","Allobosea aff. thiooxidans 1.10"],["NCBITaxon%3A3068632","Allobosea beijingensis"],["NCBITaxon%3A2763117","Allobosea caraganae"],["NCBITaxon%3A151454","Allobosea eneae"],["NCBITaxon%3A1211774","Allobosea eneae 34614"],["NCBITaxon%3A1036778","Allobosea lathyri"]]},{"id":"NCBITaxon:165697","l":"Sphingopyxis","na":3,"nb":494,"a":[["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"]],"b":[["NCBITaxon%3A28214","Sphingomonas sp."],["NCBITaxon%3A117207","Sphingopyxis alaskensis"],["NCBITaxon%3A317655","Sphingopyxis alaskensis RB2256"],["NCBITaxon%3A651663","Sphingopyxis bauzanensis"],["NCBITaxon%3A180400","Sphingopyxis chilensis"],["NCBITaxon%3A1507287","Sphingopyxis flava"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":3,"nb":391,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A1260363","Enterococcus faecalis 02-MB-BW-10"],["NCBITaxon%3A1260365","Enterococcus faecalis 02-MB-P-10"],["NCBITaxon%3A1260358","Enterococcus faecalis 06-MB-DW-09"],["NCBITaxon%3A1260359","Enterococcus faecalis 06-MB-S-04"],["NCBITaxon%3A1260360","Enterococcus faecalis 06-MB-S-10"]]},{"id":"NCBITaxon:213118","l":"Desulfobacterales","na":3,"nb":389,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"]],"b":[["NCBITaxon%3A318481","Algorimarina butyrica"],["NCBITaxon%3A2841697","Candidatus Desulfaltia bathyphila"],["NCBITaxon%3A3060595","Candidatus Desulfaltia sp."],["NCBITaxon%3A2487131","Candidatus Desulfarcum epimagneticum"],["NCBITaxon%3A2841695","Candidatus Desulfatibia profunda"],["NCBITaxon%3A3101189","Candidatus Desulfatibia sp."]]},{"id":"NCBITaxon:1783276","l":"Nanobdellati","na":3,"nb":356,"a":[["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["Soil_CPR_Nanoarchaea_Rare_Biosphere_Community.html","Soil CPR Bacteria and Nanoarchaea Rare-Biosphere Community"]],"b":[["NCBITaxon%3A3138763","Asbonarchaeaceae archaeon (SeqCode)"],["NCBITaxon%3A3138746","Asbonarchaeum danakilense (SeqCode)"],["NCBITaxon%3A2898728","Candidatus Acidifodinimicrobium mancum"],["NCBITaxon%3A3101490","Candidatus Acidifodinimicrobium sp."],["NCBITaxon%3A1974382","Candidatus Aenigmarchaeota archaeon CG01_land_8_20_14_3_00_37_9"],["NCBITaxon%3A1974383","Candidatus Aenigmarchaeota archaeon CG15_BIG_FIL_POST_REV_8_21_14_020_37_27"]]},{"id":"NCBITaxon:5052","l":"Aspergillus","na":3,"nb":320,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["NCBITaxon%3A1904037","Aspergillus acidohumus"],["NCBITaxon%3A487661","Aspergillus aculeatinus"],["NCBITaxon%3A1070780","Aspergillus affinis"],["NCBITaxon%3A657433","Aspergillus alabamensis"],["NCBITaxon%3A1612426","Aspergillus allahabadii"],["NCBITaxon%3A209559","Aspergillus alliaceus"]]},{"id":"GTDB:s__Enterobacter_hormaechei_C","l":"","na":3,"nb":263,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A1260277","Enterobacter cancerogenus YZ1"],["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A2027919","Enterobacter cloacae complex sp."],["NCBITaxon%3A2998100","Enterobacter cloacae complex sp. 2022EL-00747"],["NCBITaxon%3A2998099","Enterobacter cloacae complex sp. 2022EL-00759"]]},{"id":"NCBITaxon:45989","l":"Methanoculleus","na":3,"nb":223,"a":[["Magnetite_Sulfate_Stress_Anaerobic_Microbiome.html","Magnetite Sulfate-Stress Anaerobic Microbiome"],["Phosphitivorax_Methanoculleus_Lithosyntrophy_Phosphite_Coculture.html","Phosphitivorax-Methanoculleus Lithosyntrophic Phosphite-Oxidizing Methanogenic Culture"],["QY2S1_Dehalogenimonas_BFR_Bioremediation_Consortium.html","QY2-S1 Dehalogenimonas-Rich Brominated-Flame-Retardant Consortium"]],"b":[["NCBITaxon%3A1671625","Candidatus Methanoculleus thermohydrogenotrophicum"],["NCBITaxon%3A83986","Methanoculleus bourgensis"],["NCBITaxon%3A1201294","Methanoculleus bourgensis MS2"],["NCBITaxon%3A2937282","Methanoculleus bovis"],["NCBITaxon%3A2651577","Methanoculleus caldifontis"],["NCBITaxon%3A118126","Methanoculleus chikugoensis"]]},{"id":"NCBITaxon:2301","l":"Thermoplasmatales","na":3,"nb":163,"a":[["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]],"b":[["NCBITaxon%3A507754","Acidiplasma aeolicum"],["NCBITaxon%3A312540","Acidiplasma cupricumulans"],["NCBITaxon%3A1295373","Acidiplasma cupricumulans JCM 13668 = DSM 16651"],["NCBITaxon%3A1872114","Acidiplasma sp."],["NCBITaxon%3A3402690","Acidiplasma sp. BR-02"],["NCBITaxon%3A1293648","Acidiplasma sp. MBA-1"]]},{"id":"NCBITaxon:919","l":"Thiobacillus","na":3,"nb":91,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Thiocyanate_Afipia_Thiobacillus_Bioreactor_Community.html","Thiocyanate-Degrading Afipia and Thiobacillus Bioreactor Community"]],"b":[["NCBITaxon%3A34007","Paracoccus versutus"],["NCBITaxon%3A54272","Thiobacillus baregensis"],["NCBITaxon%3A36861","Thiobacillus denitrificans"],["NCBITaxon%3A292415","Thiobacillus denitrificans ATCC 25259"],["NCBITaxon%3A1123392","Thiobacillus denitrificans DSM 12475"],["NCBITaxon%3A373389","Thiobacillus sajanensis"]]},{"id":"NCBITaxon:216816","l":"Bifidobacterium longum","na":3,"nb":69,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["NCBITaxon%3A1680","Bifidobacterium adolescentis"],["NCBITaxon%3A216816","Bifidobacterium longum"],["NCBITaxon%3A1000567","Bifidobacterium longum 3_1_37DFAAB"],["NCBITaxon%3A1280702","Bifidobacterium longum AGR2137"],["NCBITaxon%3A478445","Bifidobacterium longum BORI"],["NCBITaxon%3A1263059","Bifidobacterium longum CAG:69"]]},{"id":"GTDB:s__Bifidobacterium_longum","l":"","na":3,"nb":60,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["NCBITaxon%3A1883427","Actinomycetes bacterium"],["NCBITaxon%3A3077420","Acutalibacteraceae bacterium"],["NCBITaxon%3A328813","Alistipes onderdonkii"],["NCBITaxon%3A46506","Bacteroides stercoris"],["NCBITaxon%3A2291324","Bifidobacteriaceae bacterium"],["NCBITaxon%3A2569487","Bifidobacteriaceae bacterium MCC01972"]]},{"id":"NCBITaxon:190972","l":"Sedimentibacter","na":3,"nb":56,"a":[["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["QY2S1_Dehalogenimonas_BFR_Bioremediation_Consortium.html","QY2-S1 Dehalogenimonas-Rich Brominated-Flame-Retardant Consortium"],["Waste_Sludge_Electrofermentation_Biofilm_Suspension_Community.html","Waste-Sludge Electro-Fermentation Biofilm-Suspension Community"]],"b":[["NCBITaxon%3A913099","Sedimentibacter acidaminivorans"],["NCBITaxon%3A178338","Sedimentibacter hongkongensis"],["NCBITaxon%3A29345","Sedimentibacter hydroxybenzoicus"],["NCBITaxon%3A1123245","Sedimentibacter hydroxybenzoicus DSM 7310"],["NCBITaxon%3A130788","Sedimentibacter saalensis"],["NCBITaxon%3A1123246","Sedimentibacter saalensis DSM 13558"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":3,"nb":56,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A61645","Enterobacter asburiae"],["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A1328422","Enterobacter cloacae BIDMC 33A"],["NCBITaxon%3A1439324","Enterobacter cloacae BIDMC 66"],["NCBITaxon%3A1439325","Enterobacter cloacae BIDMC 67"],["NCBITaxon%3A1329846","Enterobacter cloacae BIDMC 8"]]},{"id":"NCBITaxon:821","l":"Phocaeicola vulgatus","na":3,"nb":49,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A820","Bacteroides uniformis"],["NCBITaxon%3A411479","Bacteroides uniformis ATCC 8492"],["NCBITaxon%3A821","Phocaeicola vulgatus"],["NCBITaxon%3A1125631","Phocaeicola vulgatus 274-1D4"],["NCBITaxon%3A435590","Phocaeicola vulgatus ATCC 8482"],["NCBITaxon%3A1263056","Phocaeicola vulgatus CAG:6"]]},{"id":"GTDB:s__Bifidobacterium_breve","l":"","na":3,"nb":46,"a":[["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["NCBITaxon%3A1697798","Actinobacteria bacterium UC5.1-1C2"],["NCBITaxon%3A2569493","Bifidobacteriaceae bacterium MCC01950"],["NCBITaxon%3A2569494","Bifidobacteriaceae bacterium MCC01951"],["NCBITaxon%3A2569500","Bifidobacteriaceae bacterium MCC01953"],["NCBITaxon%3A2569498","Bifidobacteriaceae bacterium MCC01954"],["NCBITaxon%3A2569501","Bifidobacteriaceae bacterium MCC01957"]]},{"id":"GTDB:s__Phocaeicola_vulgatus","l":"","na":3,"nb":44,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A3077420","Acutalibacteraceae bacterium"],["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A1146296","bacterium NLAE-zl-P430"],["NCBITaxon%3A2212467","Bacteroidaceae bacterium"],["NCBITaxon%3A29523","Bacteroides sp."],["NCBITaxon%3A469593","Bacteroides sp. 3_1_40A"]]},{"id":"GTDB:s__Lactococcus_lactis","l":"","na":3,"nb":40,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]],"b":[["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A1359","Lactococcus cremoris"],["NCBITaxon%3A1358","Lactococcus lactis"],["NCBITaxon%3A1408188","Lactococcus lactis RTB018"],["NCBITaxon%3A203404","Lactococcus lactis subsp. hordniae"],["NCBITaxon%3A1348656","Lactococcus lactis subsp. hordniae NBRC 100931"]]},{"id":"GTDB:s__Enterobacter_kobei","l":"","na":3,"nb":38,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A2027919","Enterobacter cloacae complex sp."],["NCBITaxon%3A3415634","Enterobacter cloacae complex sp. 2025EL-00065"],["NCBITaxon%3A3395858","Enterobacter cloacae complex sp. 310G5"],["NCBITaxon%3A3395837","Enterobacter cloacae complex sp. 330C8"],["NCBITaxon%3A3412325","Enterobacter cloacae complex sp. BZL2004"]]},{"id":"GTDB:s__Lactiplantibacillus_plantarum","l":"","na":3,"nb":37,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Pichia_Lactiplantibacillus_CCMA_Plant_Beverage_Coculture.html","Pichia-Lactiplantibacillus CCMA Plant Beverage Coculture"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["NCBITaxon%3A271881","Lactiplantibacillus argentoratensis"],["NCBITaxon%3A1423831","Lactiplantibacillus argentoratensis DSM 16365"],["NCBITaxon%3A1590","Lactiplantibacillus plantarum"],["NCBITaxon%3A1327988","Lactiplantibacillus plantarum 16"],["NCBITaxon%3A1399793","Lactiplantibacillus plantarum 19L3"],["NCBITaxon%3A1385856","Lactiplantibacillus plantarum 2025"]]},{"id":"NCBITaxon:4919","l":"Pichia","na":3,"nb":37,"a":[["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["NCBITaxon%3A266127","Sphingomonas soli"],["NCBITaxon%3A1219055","Sphingomonas soli NBRC 100801"],["NCBITaxon%3A551772","Pichia awuae"],["NCBITaxon%3A1249861","Pichia cabralensis"],["NCBITaxon%3A53657","Pichia cactophila"],["NCBITaxon%3A460514","Pichia californica"]]},{"id":"NCBITaxon:1685","l":"Bifidobacterium breve","na":3,"nb":34,"a":[["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["NCBITaxon%3A1681","Bifidobacterium bifidum"],["NCBITaxon%3A1685","Bifidobacterium breve"],["NCBITaxon%3A1385938","Bifidobacterium breve 12L"],["NCBITaxon%3A1385943","Bifidobacterium breve 2L"],["NCBITaxon%3A1385944","Bifidobacterium breve 31L"],["NCBITaxon%3A1385942","Bifidobacterium breve 689b"]]},{"id":"GTDB:s__Enterobacter_roggenkampii","l":"","na":3,"nb":33,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A2887193","Enterobacter cloacae complex sp. 2021EL-01169"],["NCBITaxon%3A3374272","Enterobacter cloacae complex sp. 2024EL-00227"],["NCBITaxon%3A3412324","Enterobacter cloacae complex sp. BZL2003"],["NCBITaxon%3A3412326","Enterobacter cloacae complex sp. BZL2005"],["NCBITaxon%3A2080664","Enterobacter cloacae complex sp. ECNIH14"]]},{"id":"NCBITaxon:28116","l":"Bacteroides ovatus","na":3,"nb":33,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["NCBITaxon%3A28116","Bacteroides ovatus"],["NCBITaxon%3A665954","Bacteroides ovatus 3_8_47FAA"],["NCBITaxon%3A411476","Bacteroides ovatus ATCC 8483"],["NCBITaxon%3A1263050","Bacteroides ovatus CAG:22"],["NCBITaxon%3A997885","Bacteroides ovatus CL02T12C04"],["NCBITaxon%3A997886","Bacteroides ovatus CL03T12C18"]]},{"id":"GTDB:s__Enterobacter_chengduensis","l":"","na":3,"nb":32,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A61645","Enterobacter asburiae"],["NCBITaxon%3A2494701","Enterobacter chengduensis"],["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A1439328","Enterobacter cloacae BWH 43"],["NCBITaxon%3A2913213","Enterobacter cloacae complex sp. ECC445"],["NCBITaxon%3A3412361","Enterobacter cloacae complex sp. IR5414"]]},{"id":"GTDB:s__Enterobacter_cloacae","l":"","na":3,"nb":29,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A3027862","Enterobacter cloacae complex sp. 2022EL-00981"],["NCBITaxon%3A3395880","Enterobacter cloacae complex sp. 275J9"],["NCBITaxon%3A3395873","Enterobacter cloacae complex sp. 277I4"],["NCBITaxon%3A3395830","Enterobacter cloacae complex sp. 292E8"],["NCBITaxon%3A3395879","Enterobacter cloacae complex sp. 309I3"]]},{"id":"NCBITaxon:1390","l":"Bacillus amyloliquefaciens","na":3,"nb":29,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]],"b":[["NCBITaxon%3A1390","Bacillus amyloliquefaciens"],["NCBITaxon%3A1421566","Bacillus amyloliquefaciens AB01"],["NCBITaxon%3A1421569","Bacillus amyloliquefaciens AP143"],["NCBITaxon%3A1421570","Bacillus amyloliquefaciens AP193"],["NCBITaxon%3A1421567","Bacillus amyloliquefaciens AP71"],["NCBITaxon%3A1421568","Bacillus amyloliquefaciens AP79"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":3,"nb":28,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["NCBITaxon%3A729","Haemophilus parainfluenzae"],["NCBITaxon%3A43306","Pseudomonas denitrificans (nom. rej.)"],["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A203192","Stutzerimonas chloritidismutans"],["NCBITaxon%3A3022791","Stutzerimonas decontaminans"]]},{"id":"GTDB:s__Kosakonia_cowanii","l":"","na":3,"nb":22,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A565","Atlantibacter hermannii"],["NCBITaxon%3A3041781","Atlantibacter sp. SORGH_AS_0304"],["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A1399146","Enterobacter cloacae S611"],["NCBITaxon%3A1951672","Enterobacteriaceae bacterium UBA3128"],["NCBITaxon%3A1951678","Enterobacteriaceae bacterium UBA3398"]]},{"id":"GTDB:s__Bifidobacterium_bifidum","l":"","na":3,"nb":19,"a":[["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["NCBITaxon%3A1883427","Actinomycetes bacterium"],["NCBITaxon%3A2569486","Bifidobacteriaceae bacterium MCC01946"],["NCBITaxon%3A2569503","Bifidobacteriaceae bacterium MCC01958"],["NCBITaxon%3A2569497","Bifidobacteriaceae bacterium MCC02030"],["NCBITaxon%3A1681","Bifidobacterium bifidum"],["NCBITaxon%3A500634","Bifidobacterium bifidum ATCC 29521 = JCM 1255 = DSM 20456"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":3,"nb":16,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["NCBITaxon%3A114136","Paenibacillus jamilae"],["NCBITaxon%3A225917","Paenibacillus massiliensis"],["NCBITaxon%3A1406","Paenibacillus polymyxa"],["NCBITaxon%3A1333863","Paenibacillus polymyxa 1-43"],["NCBITaxon%3A1414587","Paenibacillus polymyxa A18"],["NCBITaxon%3A1206104","Paenibacillus polymyxa ATCC 12321"]]},{"id":"NCBITaxon:587753","l":"Pseudomonas chlororaphis","na":3,"nb":16,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["NCBITaxon%3A587753","Pseudomonas chlororaphis"],["NCBITaxon%3A1343078","Pseudomonas chlororaphis HT66"],["NCBITaxon%3A1037915","Pseudomonas chlororaphis O6"],["NCBITaxon%3A1400530","Pseudomonas chlororaphis PCYL_1"],["NCBITaxon%3A86192","Pseudomonas chlororaphis subsp. aurantiaca"],["NCBITaxon%3A1415170","Pseudomonas chlororaphis subsp. aurantiaca PB-St2"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":3,"nb":15,"a":[["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["NCBITaxon%3A1681","Bifidobacterium bifidum"],["NCBITaxon%3A500634","Bifidobacterium bifidum ATCC 29521 = JCM 1255 = DSM 20456"],["NCBITaxon%3A484020","Bifidobacterium bifidum BGN4"],["NCBITaxon%3A1263058","Bifidobacterium bifidum CAG:234"],["NCBITaxon%3A1173065","Bifidobacterium bifidum CECT 7366"],["NCBITaxon%3A398515","Bifidobacterium bifidum DSM 20215"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":3,"nb":14,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["NCBITaxon%3A72360","Bacillus mojavensis"],["NCBITaxon%3A1051501","Bacillus mojavensis RO-H-1 = KCTC 3706"],["NCBITaxon%3A1478","Peribacillus simplex"],["NCBITaxon%3A86664","Priestia flexa"],["NCBITaxon%3A1404","Priestia megaterium"],["NCBITaxon%3A592022","Priestia megaterium DSM 319"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":11,"nb":3,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["NCBITaxon%3A2219225","Pseudomonas asiatica"],["NCBITaxon%3A1628086","Pseudomonas kribbensis"],["NCBITaxon%3A306","Pseudomonas sp."]]},{"id":"GTDB:s__Enterobacter_sichuanensis","l":"","na":3,"nb":10,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A1449089","Enterobacter cloacae subsp. cloacae SY-70"],["NCBITaxon%3A2071710","Enterobacter sichuanensis"],["NCBITaxon%3A42895","Enterobacter sp."],["NCBITaxon%3A1594172","Enterobacter sp. BIDMC92"],["NCBITaxon%3A2678687","Enterobacter sp. HSTU-ASh6"]]},{"id":"NCBITaxon:336809","l":"Candidatus Karelsulcia","na":3,"nb":10,"a":[["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"]],"b":[["NCBITaxon%3A336810","Candidatus Karelsulcia muelleri"],["NCBITaxon%3A706194","Candidatus Karelsulcia muelleri CARI"],["NCBITaxon%3A641892","Candidatus Karelsulcia muelleri DMIN"],["NCBITaxon%3A444179","Candidatus Karelsulcia muelleri GWSS"],["NCBITaxon%3A1189303","Candidatus Karelsulcia muelleri PSPU"],["NCBITaxon%3A595499","Candidatus Karelsulcia muelleri SMDSEM"]]},{"id":"NCBITaxon:2208","l":"Methanosarcina barkeri","na":3,"nb":9,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["NCBITaxon%3A2208","Methanosarcina barkeri"],["NCBITaxon%3A1434106","Methanosarcina barkeri 227"],["NCBITaxon%3A1434107","Methanosarcina barkeri 3"],["NCBITaxon%3A796385","Methanosarcina barkeri CM1"],["NCBITaxon%3A1298606","Methanosarcina barkeri JCM 10043"],["NCBITaxon%3A1434108","Methanosarcina barkeri MS"]]},{"id":"GTDB:s__Enterobacter_dissolvens","l":"","na":3,"nb":8,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A2969431","Enterobacter cloacae complex sp. R_G8"],["NCBITaxon%3A336306","Enterobacter cloacae subsp. cloacae"],["NCBITaxon%3A69219","Enterobacter cloacae subsp. dissolvens"],["NCBITaxon%3A1104326","Enterobacter cloacae subsp. dissolvens SDM"],["NCBITaxon%3A42895","Enterobacter sp."]]},{"id":"GTDB:s__Bacillus_A_cereus_S","l":"","na":7,"nb":3,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A526986","Bacillus cereus Rock3-44"],["NCBITaxon%3A1405","Bacillus mycoides"]]},{"id":"GTDB:s__Bacillus_A_hominis","l":"","na":7,"nb":3,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1053195","Bacillus cereus BAG6X1-2"],["NCBITaxon%3A2817478","Bacillus hominis"],["NCBITaxon%3A1405","Bacillus mycoides"]]},{"id":"GTDB:s__Methanococcus_maripaludis","l":"","na":3,"nb":6,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"]],"b":[["NCBITaxon%3A39152","Methanococcus maripaludis"],["NCBITaxon%3A637914","Methanococcus maripaludis KA1"],["NCBITaxon%3A637915","Methanococcus maripaludis OS7"],["NCBITaxon%3A267377","Methanococcus maripaludis S2"],["NCBITaxon%3A1053692","Methanococcus maripaludis X1"],["NCBITaxon%3A2690208","Methanococcus sp."]]},{"id":"GTDB:s__Methanosarcina_barkeri","l":"","na":3,"nb":6,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["NCBITaxon%3A2208","Methanosarcina barkeri"],["NCBITaxon%3A1434106","Methanosarcina barkeri 227"],["NCBITaxon%3A796385","Methanosarcina barkeri CM1"],["NCBITaxon%3A1298606","Methanosarcina barkeri JCM 10043"],["NCBITaxon%3A1434108","Methanosarcina barkeri MS"],["NCBITaxon%3A1860098","Methanosarcina sp. A14"]]},{"id":"GTDB:s__Stenotrophomonas_maltophilia_L","l":"","na":6,"nb":3,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A391008","Stenotrophomonas maltophilia R551-3"],["NCBITaxon%3A1118157","Stenotrophomonas maltophilia RA8"]]},{"id":"NCBITaxon:166486","l":"Roseburia intestinalis","na":3,"nb":6,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A166486","Roseburia intestinalis"],["NCBITaxon%3A1263104","Roseburia intestinalis CAG:13"],["NCBITaxon%3A536231","Roseburia intestinalis L1-82"],["NCBITaxon%3A657315","Roseburia intestinalis M50/1"],["NCBITaxon%3A1339593","Roseburia intestinalis TSDC19.2-1.1"],["NCBITaxon%3A718255","Roseburia intestinalis XB6B4"]]},{"id":"NCBITaxon:178606","l":"Leptospirillum ferriphilum","na":6,"nb":3,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["NCBITaxon%3A178606","Leptospirillum ferriphilum"],["NCBITaxon%3A1048260","Leptospirillum ferriphilum ML-04"],["NCBITaxon%3A1441628","Leptospirillum ferriphilum YSK"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":3,"nb":6,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["NCBITaxon%3A547018","Zhihengliuella alba"],["NCBITaxon%3A5061","Aspergillus niger"],["NCBITaxon%3A380704","Aspergillus niger ATCC 1015"],["NCBITaxon%3A1353008","Aspergillus niger ATCC 13496"],["NCBITaxon%3A1450533","Aspergillus niger CBS 101883"],["NCBITaxon%3A425011","Aspergillus niger CBS 513.88"]]},{"id":"NCBITaxon:853","l":"Faecalibacterium prausnitzii","na":3,"nb":6,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"]],"b":[["NCBITaxon%3A748224","Faecalibacterium cf. prausnitzii KLE1255"],["NCBITaxon%3A411483","Faecalibacterium duncaniae"],["NCBITaxon%3A853","Faecalibacterium prausnitzii"],["NCBITaxon%3A718252","Faecalibacterium prausnitzii L2-6"],["NCBITaxon%3A411485","Faecalibacterium prausnitzii M21/2"],["NCBITaxon%3A657322","Faecalibacterium prausnitzii SL3/3"]]},{"id":"NCBITaxon:881","l":"Nitratidesulfovibrio vulgaris","na":3,"nb":6,"a":[["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["DVM_Triculture.html","DVM Tri-culture"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"]],"b":[["NCBITaxon%3A32016","Nitratidesulfovibrio oxamicus"],["NCBITaxon%3A881","Nitratidesulfovibrio vulgaris"],["NCBITaxon%3A391774","Nitratidesulfovibrio vulgaris DP4"],["NCBITaxon%3A573059","Nitratidesulfovibrio vulgaris RCH1"],["NCBITaxon%3A882","Nitratidesulfovibrio vulgaris str. Hildenborough"],["NCBITaxon%3A883","Nitratidesulfovibrio vulgaris str. 'Miyazaki F'"]]},{"id":"GTDB:s__Clostridium_B_ljungdahlii","l":"","na":3,"nb":5,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["NCBITaxon%3A84023","Clostridium autoethanogenum"],["NCBITaxon%3A1341692","Clostridium autoethanogenum DSM 10061"],["NCBITaxon%3A1705578","Clostridium coskatii"],["NCBITaxon%3A1538","Clostridium ljungdahlii"],["NCBITaxon%3A748727","Clostridium ljungdahlii DSM 13528"]]},{"id":"NCBITaxon:28232","l":"Geobacter metallireducens","na":5,"nb":3,"a":[["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"]],"b":[["NCBITaxon%3A28232","Geobacter metallireducens"],["NCBITaxon%3A269799","Geobacter metallireducens GS-15"],["NCBITaxon%3A691164","Geobacter metallireducens RCH3"]]},{"id":"GTDB:s__Rhodopseudomonas_palustris_F","l":"","na":4,"nb":3,"a":[["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["NCBITaxon%3A1076","Rhodopseudomonas palustris"],["NCBITaxon%3A258594","Rhodopseudomonas palustris CGA009"],["NCBITaxon%3A395960","Rhodopseudomonas palustris TIE-1"]]},{"id":"GTDB:s__Syntrophomonas_methylbutyratica","l":"","na":4,"nb":3,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["NCBITaxon%3A2093811","Syntrophomonadaceae bacterium"],["NCBITaxon%3A863","Syntrophomonas wolfei"],["NCBITaxon%3A378794","Syntrophomonas wolfei subsp. methylbutyratica"]]},{"id":"NCBITaxon:1534","l":"Clostridium kluyveri","na":4,"nb":3,"a":[["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["NCBITaxon%3A1534","Clostridium kluyveri"],["NCBITaxon%3A431943","Clostridium kluyveri DSM 555"],["NCBITaxon%3A583346","Clostridium kluyveri NBRC 12016"]]},{"id":"NCBITaxon:239935","l":"Akkermansia muciniphila","na":3,"nb":3,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A239935","Akkermansia muciniphila"],["NCBITaxon%3A349741","Akkermansia muciniphila ATCC BAA-835"],["NCBITaxon%3A1263034","Akkermansia muciniphila CAG:154"]]},{"id":"NCBITaxon:1236","l":"Gammaproteobacteria","na":2,"nb":145676,"a":[["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["NCBITaxon%3A103492","2,4-D-degrading bacterium 010"],["NCBITaxon%3A103493","2,4-D-degrading bacterium 030"],["NCBITaxon%3A120969","abyssal strain AIII3*"],["NCBITaxon%3A2182787","Abyssibacter profundi"],["NCBITaxon%3A2320200","Abyssibacter sp."],["NCBITaxon%3A596095","Abyssogena phaseoliformis symbiont"]]},{"id":"NCBITaxon:28211","l":"Alphaproteobacteria","na":2,"nb":72845,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["NCBITaxon%3A119160","2,3-D degrading bacterium NHC2"],["NCBITaxon%3A119159","2,3-D degrading bacterium NHG3"],["NCBITaxon%3A103494","2,4-D-degrading bacterium 022"],["NCBITaxon%3A83493","2,4-D degrading bacterium 2,4-D1"],["NCBITaxon%3A103496","2,4-D-degrading bacterium 524"],["NCBITaxon%3A83492","2,4-D degrading bacterium B6-10"]]},{"id":"NCBITaxon:1117","l":"Cyanobacteriota","na":2,"nb":36120,"a":[["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]],"b":[["NCBITaxon%3A3106961","Acaryochloridaceae cyanobacterium"],["NCBITaxon%3A2720417","Acaryochloridaceae cyanobacterium CSU_3_4"],["NCBITaxon%3A2720418","Acaryochloridaceae cyanobacterium CSU_5_19"],["NCBITaxon%3A2964578","Acaryochloridaceae cyanobacterium OTE_25_metabat_464"],["NCBITaxon%3A2964579","Acaryochloridaceae cyanobacterium OTE_75_metabat_521"],["NCBITaxon%3A2720424","Acaryochloridaceae cyanobacterium RL_2_7"]]},{"id":"NCBITaxon:28216","l":"Betaproteobacteria","na":2,"nb":31526,"a":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]],"b":[["NCBITaxon%3A103498","2,4-D-degrading bacterium 001"],["NCBITaxon%3A103499","2,4-D-degrading bacterium 007"],["NCBITaxon%3A103495","2,4-D-degrading bacterium 012"],["NCBITaxon%3A103500","2,4-D-degrading bacterium 017"],["NCBITaxon%3A103501","2,4-D-degrading bacterium 018"],["NCBITaxon%3A103502","2,4-D-degrading bacterium 019"]]},{"id":"NCBITaxon:28890","l":"Methanobacteriota","na":2,"nb":8091,"a":[["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Thermophilic_ExSitu_Biomethanation_Mixed_Culture.html","Thermophilic Ex-Situ Biomethanation Mixed Culture"]],"b":[["NCBITaxon%3A3879924","Abyssiniarchaeum dallolvicinus (SeqCode)"],["NCBITaxon%3A3138747","Afararchaeum irisae (SeqCode)"],["NCBITaxon%3A81399","anaerobic hyperthermophile Gorda1"],["NCBITaxon%3A2056317","ANME-2 cluster archaeon"],["NCBITaxon%3A114585","archaeal str. vp183"],["NCBITaxon%3A114587","archaeal str. vp21"]]},{"id":"NCBITaxon:1763","l":"Mycobacterium","na":2,"nb":7532,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["NCBITaxon%3A3110407","Candidatus Mycobacterium methanica"],["NCBITaxon%3A2943498","Candidatus Mycobacterium methanotrophicum"],["NCBITaxon%3A3027808","Candidatus Mycobacterium wuenschmannii"],["NCBITaxon%3A1682113","Mycobacterium adipatum"],["NCBITaxon%3A470075","Mycobacterium aemonae"],["NCBITaxon%3A1964395","Mycobacterium ahvazicum"]]},{"id":"NCBITaxon:1663","l":"Arthrobacter","na":2,"nb":6277,"a":[["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A132932","Acetobacterium tundrae"],["NCBITaxon%3A37921","Arthrobacter agilis"],["NCBITaxon%3A369936","Arthrobacter alkaliphilus"],["NCBITaxon%3A656366","Arthrobacter alpinus"],["NCBITaxon%3A3046203","Arthrobacter antibioticus"],["NCBITaxon%3A2895818","Arthrobacter antioxidans"]]},{"id":"NCBITaxon:33882","l":"Microbacterium","na":2,"nb":5935,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A196883","Arctic sea ice bacterium ARK10030"],["NCBITaxon%3A3121366","Candidatus Microbacterium colombiense"],["NCBITaxon%3A3121374","Candidatus Microbacterium phytovorans"],["NCBITaxon%3A2838696","Candidatus Microbacterium pullistercoris"],["NCBITaxon%3A2838697","Candidatus Microbacterium stercoravium"],["NCBITaxon%3A272239","Gulosibacter bifidus"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":4740,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["NCBITaxon%3A475088","Methanosphaerula palustris"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1389955","Escherichia coli ATCC 35150"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A574","Klebsiella pneumoniae subsp. ozaenae"],["NCBITaxon%3A1218098","Klebsiella pneumoniae subsp. ozaenae NBRC 105683"]]},{"id":"GTDB:s__Staphylococcus_aureus","l":"","na":2,"nb":4208,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A548","Klebsiella aerogenes"],["NCBITaxon%3A1280","Staphylococcus aureus"],["NCBITaxon%3A703339","Staphylococcus aureus 04-02981"],["NCBITaxon%3A1413350","Staphylococcus aureus 07-03450"],["NCBITaxon%3A1413351","Staphylococcus aureus 07-03451"]]},{"id":"GTDB:s__Salmonella_enterica","l":"","na":2,"nb":3879,"a":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["NCBITaxon%3A2572084","Campylobacter sp. CFSAN093238"],["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59203","Salmonella enterica subsp. arizonae"],["NCBITaxon%3A1192839","Salmonella enterica subsp. arizonae serovar 18:z4,z23:-"],["NCBITaxon%3A1395115","Salmonella enterica subsp. arizonae serovar 18:z4,z23:- str. CVM N23850"],["NCBITaxon%3A1395109","Salmonella enterica subsp. arizonae serovar 18:z4,z23:- str. CVM N7307"]]},{"id":"NCBITaxon:200940","l":"Thermodesulfobacteriota","na":2,"nb":2781,"a":[["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["Tropidoatractus_Magnetotacticus_Tripartite_Syntrophy.html","Tropidoatractus magnetotacticus Magnetotactic Ciliate Tripartite Syntrophy"]],"b":[["NCBITaxon%3A318481","Algorimarina butyrica"],["NCBITaxon%3A293256","Alkalidesulfovibrio alkalitolerans"],["NCBITaxon%3A1121439","Alkalidesulfovibrio alkalitolerans DSM 16529"],["NCBITaxon%3A340094","anaerobic syntrophic bacterium NE23-3"],["NCBITaxon%3A1929485","Bilophila sp."],["NCBITaxon%3A693988","Bilophila sp. 4_1_30"]]},{"id":"NCBITaxon:5204","l":"Basidiomycota","na":2,"nb":1376,"a":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"]],"b":[["NCBITaxon%3A137743","Abortiporus biennis"],["NCBITaxon%3A215250","Acaromyces ingoldii"],["NCBITaxon%3A1333626","Adustoporia sinuosa"],["NCBITaxon%3A2819351","Agaricus alboumbonatus"],["NCBITaxon%3A1606717","Agaricus argenteus"],["NCBITaxon%3A535738","Agaricus aristocratus"]]},{"id":"NCBITaxon:2034","l":"Curtobacterium","na":2,"nb":1258,"a":[["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"]],"b":[["NCBITaxon%3A1708","Cellulomonas fimi"],["NCBITaxon%3A590998","Cellulomonas fimi ATCC 484"],["NCBITaxon%3A41988","Cryobacterium psychrophilum"],["NCBITaxon%3A2841594","Curtobacterium aetherium"],["NCBITaxon%3A395387","Curtobacterium ammoniigenes"],["NCBITaxon%3A1223517","Curtobacterium ammoniigenes NBRC 101786"]]},{"id":"NCBITaxon:28889","l":"Thermoproteota","na":2,"nb":1242,"a":[["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Soil_Corrinoid_B12_Reservoir_Community.html","Soil Corrinoid Reservoir Microbial Community"]],"b":[["NCBITaxon%3A2283","Acidianus ambivalens"],["NCBITaxon%3A41673","Acidianus brierleyi"],["NCBITaxon%3A269667","Acidianus convivator"],["NCBITaxon%3A563177","Acidianus hospitalis"],["NCBITaxon%3A933801","Acidianus hospitalis W1"],["NCBITaxon%3A12915","Acidianus infernus"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":2,"nb":1075,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A1311139","Acinetobacter baumannii 016901DP_1"],["NCBITaxon%3A1311140","Acinetobacter baumannii 016901DP_2"],["NCBITaxon%3A1310784","Acinetobacter baumannii 1007214"],["NCBITaxon%3A1310751","Acinetobacter baumannii 1022959"],["NCBITaxon%3A1310586","Acinetobacter baumannii 1031433"]]},{"id":"NCBITaxon:84567","l":"Pedobacter","na":2,"nb":889,"a":[["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A3121371","Candidatus Pedobacter colombiensis"],["NCBITaxon%3A2807681","Nubsella sp. EM7"],["NCBITaxon%3A1325323","Nubsella sp. EsD18"],["NCBITaxon%3A1362345","Nubsella sp. Ri3Pt_4400"],["NCBITaxon%3A151894","Pedobacter africanus"],["NCBITaxon%3A454586","Pedobacter agri"]]},{"id":"NCBITaxon:12916","l":"Acidovorax","na":2,"nb":822,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["NCBITaxon%3A192388","Acidovorax aerodenitrificans"],["NCBITaxon%3A2976702","Acidovorax bellezanensis"],["NCBITaxon%3A2987520","Acidovorax benzenivorans"],["NCBITaxon%3A553814","Acidovorax carolinensis"],["NCBITaxon%3A1675792","Acidovorax cavernicola"],["NCBITaxon%3A86669","Acidovorax defluvii"]]},{"id":"NCBITaxon:1696","l":"Brevibacterium","na":2,"nb":794,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["NCBITaxon%3A943903","bacterium Osw"],["NCBITaxon%3A417948","Brevibacterium album"],["NCBITaxon%3A1121122","Brevibacterium album DSM 18261"],["NCBITaxon%3A1046555","Brevibacterium ammoniilyticum"],["NCBITaxon%3A2683611","Brevibacterium anseongense"],["NCBITaxon%3A239268","Brevibacterium antarcticum"]]},{"id":"GTDB:s__Acinetobacter_baumannii","l":"","na":2,"nb":782,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A1310784","Acinetobacter baumannii 1007214"],["NCBITaxon%3A1310751","Acinetobacter baumannii 1022959"],["NCBITaxon%3A1310586","Acinetobacter baumannii 1031433"],["NCBITaxon%3A1310571","Acinetobacter baumannii 1032241"],["NCBITaxon%3A1310572","Acinetobacter baumannii 1032359"]]},{"id":"NCBITaxon:75","l":"Caulobacter","na":2,"nb":704,"a":[["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["NCBITaxon%3A1871086","Brevundimonas sp."],["NCBITaxon%3A1249558","Caulobacter daechungensis"],["NCBITaxon%3A2172652","Caulobacter endophyticus"],["NCBITaxon%3A459277","Caulobacter endosymbiont of Tamarixia radiata"],["NCBITaxon%3A312030","Caulobacter endosymbiont of Tetranychus urticae"],["NCBITaxon%3A1679497","Caulobacter flavus"]]},{"id":"NCBITaxon:2053","l":"Gordonia","na":2,"nb":680,"a":[["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Nitratireductor_Gordonia_Z123_LDPE_Degradation_SynCom.html","Nitratireductor-Gordonia Z123 LDPE-Degradation SynCom"]],"b":[["NCBITaxon%3A3022769","Gordonia abscondita"],["NCBITaxon%3A36820","Gordonia aichiensis"],["NCBITaxon%3A1220583","Gordonia aichiensis NBRC 108223"],["NCBITaxon%3A1292359","Gordonia ajococcus"],["NCBITaxon%3A1053547","Gordonia alkaliphila"],["NCBITaxon%3A84096","Gordonia alkanivorans"]]},{"id":"NCBITaxon:52972","l":"Polaromonas","na":2,"nb":514,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["NCBITaxon%3A332657","Polaromonas aquatica"],["NCBITaxon%3A866565","Polaromonas cryoconiti"],["NCBITaxon%3A1614635","Polaromonas eurypsychrophila"],["NCBITaxon%3A363842","Polaromonas ginsengisoli"],["NCBITaxon%3A866564","Polaromonas glacialis"],["NCBITaxon%3A335476","Polaromonas hydrogenivorans"]]},{"id":"NCBITaxon:46913","l":"Devosia","na":2,"nb":421,"a":[["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["NCBITaxon%3A196772","Arctic sea ice bacterium ARK10037"],["NCBITaxon%3A223181","Candidatus Devosia euplotis"],["NCBITaxon%3A3121372","Candidatus Devosia phytovorans"],["NCBITaxon%3A2911541","Candidatus Devosia symbiotica"],["NCBITaxon%3A3152360","Devosia alba"],["NCBITaxon%3A429726","Devosia albogilva"]]},{"id":"NCBITaxon:423349","l":"Mucilaginibacter","na":2,"nb":352,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["NCBITaxon%3A2599294","Mucilaginibacter achroorhodeus"],["NCBITaxon%3A2695265","Mucilaginibacter agri"],["NCBITaxon%3A1815558","Mucilaginibacter amnicola"],["NCBITaxon%3A869718","Mucilaginibacter angelicae"],["NCBITaxon%3A1855725","Mucilaginibacter antarcticus"],["NCBITaxon%3A1187081","Mucilaginibacter aquaedulcis"]]},{"id":"NCBITaxon:79328","l":"Chitinophaga","na":2,"nb":284,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A2703787","Chitinophaga agri"],["NCBITaxon%3A2607653","Chitinophaga agrisoli"],["NCBITaxon%3A2203219","Chitinophaga alhagiae"],["NCBITaxon%3A29529","Chitinophaga arvensicola"],["NCBITaxon%3A2675051","Chitinophaga aurantiaca"],["NCBITaxon%3A1647451","Chitinophaga barathri"]]},{"id":"NCBITaxon:2207","l":"Methanosarcina","na":2,"nb":269,"a":[["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Thermophilic_ExSitu_Biomethanation_Mixed_Culture.html","Thermophilic Ex-Situ Biomethanation Mixed Culture"]],"b":[["NCBITaxon%3A2214","Methanosarcina acetivorans"],["NCBITaxon%3A188937","Methanosarcina acetivorans C2A"],["NCBITaxon%3A3073890","Methanosarcina baikalica"],["NCBITaxon%3A109046","Methanosarcina baltica"],["NCBITaxon%3A1434105","Methanosarcina baltica GS1-A"],["NCBITaxon%3A2208","Methanosarcina barkeri"]]},{"id":"NCBITaxon:75654","l":"Duganella","na":2,"nb":259,"a":[["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["NCBITaxon%3A2703883","Duganella aceris"],["NCBITaxon%3A132929","Duganella aff. zoogloeoides 14.15"],["NCBITaxon%3A2666081","Duganella alba"],["NCBITaxon%3A2666082","Duganella aquatilis"],["NCBITaxon%3A2885762","Duganella caerulea"],["NCBITaxon%3A2561932","Duganella callida"]]},{"id":"NCBITaxon:142182","l":"Gemmatimonadota","na":2,"nb":249,"a":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"]],"b":[["NCBITaxon%3A234666","bacterium Ellin5220"],["NCBITaxon%3A234674","bacterium Ellin5290"],["NCBITaxon%3A234675","bacterium Ellin5301"],["NCBITaxon%3A3056743","Candidatus Benthicola azotiphorus"],["NCBITaxon%3A3056742","Candidatus Benthicola marisminoris"],["NCBITaxon%3A3101352","Candidatus Benthicola sp."]]},{"id":"NCBITaxon:118562","l":"Limnospira platensis","na":2,"nb":241,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Microalgae_Cyanobacteria_Bioactive_Peptide_Consortia.html","Microalgae-Cyanobacteria Bioactive Peptide Consortia"]],"b":[["NCBITaxon%3A2692892","Arthrospira platensis FACHB-835"],["NCBITaxon%3A118562","Limnospira platensis"],["NCBITaxon%3A1473217","Limnospira platensis 1TEX"],["NCBITaxon%3A2866638","Limnospira platensis 3SAE"],["NCBITaxon%3A1229390","Limnospira platensis 540"],["NCBITaxon%3A2184488","Limnospira platensis A"]]},{"id":"NCBITaxon:1234","l":"Nitrospira","na":2,"nb":181,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"]],"b":[["NCBITaxon%3A3020900","Candidatus Nitrospira allomarina"],["NCBITaxon%3A463288","Candidatus Nitrospira bockiana"],["NCBITaxon%3A1715989","Candidatus Nitrospira inopinata"],["NCBITaxon%3A3721632","Candidatus Nitrospira jureiensis"],["NCBITaxon%3A2652173","Candidatus Nitrospira kreftii"],["NCBITaxon%3A3020899","Candidatus Nitrospira neomarina"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":2,"nb":176,"a":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A90371","Salmonella enterica subsp. enterica serovar Typhimurium"],["NCBITaxon%3A1173928","Salmonella enterica subsp. enterica serovar Typhimurium str. 0052"],["NCBITaxon%3A1114946","Salmonella enterica subsp. enterica serovar Typhimurium str. 00-01036"],["NCBITaxon%3A1173930","Salmonella enterica subsp. enterica serovar Typhimurium str. 0364"]]},{"id":"NCBITaxon:2160","l":"Methanobacterium","na":2,"nb":162,"a":[["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"]],"b":[["NCBITaxon%3A256826","Methanobacterium aarhusense"],["NCBITaxon%3A1615586","Methanobacterium aggregans"],["NCBITaxon%3A392018","Methanobacterium alcaliphilum"],["NCBITaxon%3A2731220","Methanobacterium alkalithermotolerans"],["NCBITaxon%3A386456","Methanobacterium arcticum"],["NCBITaxon%3A2584467","Methanobacterium aridiramus"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":2,"nb":156,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["NCBITaxon%3A1428","Bacillus thuringiensis"],["NCBITaxon%3A1340496","Bacillus thuringiensis AKS-7"],["NCBITaxon%3A714359","Bacillus thuringiensis BMB171"],["NCBITaxon%3A1423143","Bacillus thuringiensis Bt18247"],["NCBITaxon%3A1423142","Bacillus thuringiensis Bt18679"],["NCBITaxon%3A527021","Bacillus thuringiensis Bt407"]]},{"id":"NCBITaxon:79206","l":"Desulfosporosinus","na":2,"nb":154,"a":[["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"]],"b":[["NCBITaxon%3A2043169","Candidatus Desulfosporosinus infrequens"],["NCBITaxon%3A3401928","Candidatus Desulfosporosinus nitrosoreducens"],["NCBITaxon%3A476652","Desulfosporosinus acididurans"],["NCBITaxon%3A885581","Desulfosporosinus acidiphilus"],["NCBITaxon%3A646529","Desulfosporosinus acidiphilus SJ4"],["NCBITaxon%3A56760","Desulfosporosinus auripigmenti"]]},{"id":"NCBITaxon:522","l":"Acidiphilium","na":2,"nb":149,"a":[["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"]],"b":[["NCBITaxon%3A76588","Acidiphilium acidophilum"],["NCBITaxon%3A1307921","Acidiphilium acidophilum DSM 700"],["NCBITaxon%3A523","Acidiphilium angustum"],["NCBITaxon%3A1408418","Acidiphilium angustum ATCC 35903"],["NCBITaxon%3A524","Acidiphilium cryptum"],["NCBITaxon%3A349163","Acidiphilium cryptum JF-5"]]},{"id":"NCBITaxon:40222","l":"Methylophaga","na":2,"nb":131,"a":[["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"]],"b":[["NCBITaxon%3A182774","Methylophaga alcalica"],["NCBITaxon%3A754477","Methylophaga frappieri"],["NCBITaxon%3A999151","Methylophaga lonarensis"],["NCBITaxon%3A1286106","Methylophaga lonarensis MPL"],["NCBITaxon%3A45495","Methylophaga marina"],["NCBITaxon%3A1122235","Methylophaga marina DSM 5689"]]},{"id":"GTDB:s__Klebsiella_variicola","l":"","na":2,"nb":95,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["NCBITaxon%3A1442122","bacterium CSR-63"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1134687","Klebsiella michiganensis"],["NCBITaxon%3A571","Klebsiella oxytoca"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A1463165","Klebsiella quasipneumoniae"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":2,"nb":66,"a":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["NCBITaxon%3A382","Sinorhizobium meliloti"],["NCBITaxon%3A266834","Sinorhizobium meliloti 1021"],["NCBITaxon%3A1194706","Sinorhizobium meliloti 1A42"],["NCBITaxon%3A1286640","Sinorhizobium meliloti 2011"],["NCBITaxon%3A1041151","Sinorhizobium meliloti 4H41"],["NCBITaxon%3A1194707","Sinorhizobium meliloti 5A14"]]},{"id":"GTDB:s__Bacillus_A_wiedmannii","l":"","na":2,"nb":47,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A2920296","Bacillus cereus group sp. BfR-BA-01319"],["NCBITaxon%3A2920300","Bacillus cereus group sp. BfR-BA-01324"],["NCBITaxon%3A3040244","Bacillus cereus group sp. MG4"],["NCBITaxon%3A3040245","Bacillus cereus group sp. MG7w"],["NCBITaxon%3A3041344","Bacillus cereus group sp. MS39"]]},{"id":"GTDB:s__Limnospira_fusiformis","l":"","na":2,"nb":44,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Microalgae_Cyanobacteria_Bioactive_Peptide_Consortia.html","Microalgae-Cyanobacteria Bioactive Peptide Consortia"]],"b":[["NCBITaxon%3A1982223","Arthrospira sp. O9.13F"],["NCBITaxon%3A1640536","Arthrospira sp. TJSD091"],["NCBITaxon%3A2153484","Arthrospira sp. TJSD092"],["NCBITaxon%3A1118279","Limnoraphis robusta"],["NCBITaxon%3A2759955","Limnospira fusiformis KN01"],["NCBITaxon%3A3076243","Limnospira fusiformis LS22"]]},{"id":"NCBITaxon:644","l":"Aeromonas hydrophila","na":2,"nb":44,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["NCBITaxon%3A105751","Aeromonas bestiarum"],["NCBITaxon%3A648","Aeromonas caviae"],["NCBITaxon%3A196024","Aeromonas dhakensis"],["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A1073378","Aeromonas hydrophila 07-345-3437"],["NCBITaxon%3A1268075","Aeromonas hydrophila 116"]]},{"id":"GTDB:s__Agrobacterium_leguminum","l":"","na":2,"nb":37,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["NCBITaxon%3A1183412","Agrobacterium deltae"],["NCBITaxon%3A1183425","Agrobacterium deltaense NCPPB 1641"],["NCBITaxon%3A1183426","Agrobacterium deltaense RV3"],["NCBITaxon%3A1183427","Agrobacterium deltaense Zutra 3/1"],["NCBITaxon%3A2792015","Agrobacterium leguminum"],["NCBITaxon%3A362","Agrobacterium radiobacter"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":2,"nb":35,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["NCBITaxon%3A1183421","Agrobacterium fabacearum CFBP 5771"],["NCBITaxon%3A1300224","Agrobacterium fabacearum P4"],["NCBITaxon%3A1183429","Agrobacterium fabacearum S56"],["NCBITaxon%3A1368455","Agrobacterium fabacearum str. Foundi"],["NCBITaxon%3A1183430","Agrobacterium fabacearum TT111"],["NCBITaxon%3A1176649","Agrobacterium fabrum"]]},{"id":"GTDB:s__Aeromonas_hydrophila","l":"","na":2,"nb":34,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["NCBITaxon%3A648","Aeromonas caviae"],["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A1268078","Aeromonas hydrophila 226"],["NCBITaxon%3A1453502","Aeromonas hydrophila AD9"],["NCBITaxon%3A1419584","Aeromonas hydrophila J-1"],["NCBITaxon%3A1288394","Aeromonas hydrophila ML09-119"]]},{"id":"NCBITaxon:4930","l":"Saccharomyces","na":2,"nb":34,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["NCBITaxon%3A4932","Saccharomyces cerevisiae"],["NCBITaxon%3A1266529","Saccharomyces cerevisiae BY4743"],["NCBITaxon%3A1218710","Saccharomyces cerevisiae CBS 1585"],["NCBITaxon%3A764102","Saccharomyces cerevisiae FostersB"],["NCBITaxon%3A764101","Saccharomyces cerevisiae FostersO"],["NCBITaxon%3A1220494","Saccharomyces cerevisiae PE-2"]]},{"id":"GTDB:s__Agrobacterium_pusense","l":"","na":2,"nb":32,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["NCBITaxon%3A1183436","Agrobacterium genomosp. 2 str. CFBP 5494"],["NCBITaxon%3A648995","Agrobacterium pusense"],["NCBITaxon%3A361","Agrobacterium sp."],["NCBITaxon%3A1279031","Agrobacterium sp. 33MFTa1.1"],["NCBITaxon%3A3128901","Agrobacterium sp. CMT1"],["NCBITaxon%3A2420311","Agrobacterium sp. FDAARGOS_525"]]},{"id":"NCBITaxon:395331","l":"Methanoregula","na":2,"nb":31,"a":[["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Tropidoatractus_Magnetotacticus_Tripartite_Syntrophy.html","Tropidoatractus magnetotacticus Magnetotactic Ciliate Tripartite Syntrophy"]],"b":[["NCBITaxon%3A358766","Methanoregula boonei"],["NCBITaxon%3A456442","Methanoregula boonei 6A8"],["NCBITaxon%3A3118214","Methanoregula endosymbiont of Brachonella contorta"],["NCBITaxon%3A3118215","Methanoregula endosymbiont of Brachonella pulchra"],["NCBITaxon%3A3118216","Methanoregula endosymbiont of Caenomorpha medusula"],["NCBITaxon%3A3118221","Methanoregula endosymbiont of Longitaenia gibba"]]},{"id":"GTDB:s__Sinorhizobium_meliloti","l":"","na":2,"nb":30,"a":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["NCBITaxon%3A2572900","Ensifer sp. SEMIA 134"],["NCBITaxon%3A2572901","Ensifer sp. SEMIA 135"],["NCBITaxon%3A2039285","Ensifer sp. T2_8"],["NCBITaxon%3A381","Mesorhizobium loti"],["NCBITaxon%3A158892","Sinorhizobium kummerowiae"],["NCBITaxon%3A382","Sinorhizobium meliloti"]]},{"id":"GTDB:s__Akkermansia_muciniphila","l":"","na":2,"nb":29,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A3077420","Acutalibacteraceae bacterium"],["NCBITaxon%3A239935","Akkermansia muciniphila"],["NCBITaxon%3A349741","Akkermansia muciniphila ATCC BAA-835"],["NCBITaxon%3A1263034","Akkermansia muciniphila CAG:154"],["NCBITaxon%3A1872421","Akkermansia sp."],["NCBITaxon%3A1896967","Akkermansia sp. 54_46"]]},{"id":"NCBITaxon:1305","l":"Streptococcus sanguinis","na":2,"nb":27,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1302","Streptococcus gordonii"],["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1305","Streptococcus sanguinis"],["NCBITaxon%3A1247655","Streptococcus sanguinis ATCC 15914"],["NCBITaxon%3A997356","Streptococcus sanguinis ATCC 29667"],["NCBITaxon%3A1073373","Streptococcus sanguinis CC94A"]]},{"id":"NCBITaxon:1335","l":"Streptococcus equinus","na":2,"nb":27,"a":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"]],"b":[["NCBITaxon%3A1335","Streptococcus equinus"],["NCBITaxon%3A1410675","Streptococcus equinus 2B"],["NCBITaxon%3A1210006","Streptococcus equinus ATCC 33317"],["NCBITaxon%3A864569","Streptococcus equinus ATCC 700338"],["NCBITaxon%3A525379","Streptococcus equinus ATCC 9812"],["NCBITaxon%3A1280690","Streptococcus equinus B315"]]},{"id":"NCBITaxon:5507","l":"Fusarium oxysporum","na":2,"nb":27,"a":[["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["NCBITaxon%3A5507","Fusarium oxysporum"],["NCBITaxon%3A72712","Fusarium oxysporum f. sp. albedinis"],["NCBITaxon%3A396571","Fusarium oxysporum f. sp. cepae"],["NCBITaxon%3A62683","Fusarium oxysporum f. sp. ciceris"],["NCBITaxon%3A100902","Fusarium oxysporum f. sp. conglutinans"],["NCBITaxon%3A660025","Fusarium oxysporum f. sp. conglutinans Fo5176"]]},{"id":"GTDB:s__Alteromonas_macleodii","l":"","na":2,"nb":26,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["NCBITaxon%3A2719013","Alteromonadaceae bacterium A_SAG1"],["NCBITaxon%3A2719014","Alteromonadaceae bacterium A_SAG2"],["NCBITaxon%3A1955811","Alteromonadales bacterium"],["NCBITaxon%3A28108","Alteromonas macleodii"],["NCBITaxon%3A529120","Alteromonas macleodii ATCC 27126"],["NCBITaxon%3A1004787","Alteromonas macleodii str. 'Balearic Sea AD45'"]]},{"id":"GTDB:s__Bacillus_A_albus","l":"","na":2,"nb":26,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["NCBITaxon%3A2026189","Bacillus albus"],["NCBITaxon%3A1392","Bacillus anthracis"],["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A3018122","Bacillus cereus group sp. Bc025"],["NCBITaxon%3A3018114","Bacillus cereus group sp. Bc177"],["NCBITaxon%3A3018112","Bacillus cereus group sp. Bc200"]]},{"id":"NCBITaxon:2173","l":"Methanobrevibacter smithii","na":2,"nb":26,"a":[["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"]],"b":[["NCBITaxon%3A2173","Methanobrevibacter smithii"],["NCBITaxon%3A420247","Methanobrevibacter smithii ATCC 35061"],["NCBITaxon%3A1263088","Methanobrevibacter smithii CAG:186"],["NCBITaxon%3A521001","Methanobrevibacter smithii DSM 11975"],["NCBITaxon%3A521002","Methanobrevibacter smithii DSM 2374"],["NCBITaxon%3A483214","Methanobrevibacter smithii DSM 2375"]]},{"id":"GTDB:s__Priestia_zanthoxyli","l":"","na":2,"nb":25,"a":[["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["NCBITaxon%3A1292019","Bacillus sp. 278922_107"],["NCBITaxon%3A1202456","Bacillus sp. Aph1"],["NCBITaxon%3A1895009","Bacillus sp. FJAT-26377"],["NCBITaxon%3A2930532","Bacillus sp. H8-1"],["NCBITaxon%3A671602","Bacillus sp. MB95"],["NCBITaxon%3A2744255","Bacillus sp. ME40"]]},{"id":"GTDB:s__Limnospira_platensis","l":"","na":2,"nb":19,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Microalgae_Cyanobacteria_Bioactive_Peptide_Consortia.html","Microalgae-Cyanobacteria Bioactive Peptide Consortia"]],"b":[["NCBITaxon%3A2692892","Arthrospira platensis FACHB-835"],["NCBITaxon%3A1982224","Arthrospira sp. PCC 8006"],["NCBITaxon%3A147317","Arthrospira sp. PCC 9108"],["NCBITaxon%3A2599626","Arthrospira sp. PLM2.Bin9"],["NCBITaxon%3A2828282","Arthrospira sp. SH-MAG29"],["NCBITaxon%3A1982226","Limnospira fusiformis CCALA 023"]]},{"id":"GTDB:s__Clostridium_butyricum","l":"","na":2,"nb":18,"a":[["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A1492","Clostridium butyricum"],["NCBITaxon%3A447214","Clostridium butyricum 5521"],["NCBITaxon%3A997898","Clostridium butyricum 60E.3"],["NCBITaxon%3A1280693","Clostridium butyricum AGR2140"],["NCBITaxon%3A1321950","Clostridium butyricum CWBI1009"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":2,"nb":16,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["NCBITaxon%3A1408","Bacillus pumilus"],["NCBITaxon%3A536229","Bacillus pumilus ATCC 7061"],["NCBITaxon%3A1227811","Bacillus pumilus BA06"],["NCBITaxon%3A1189615","Bacillus pumilus BL8"],["NCBITaxon%3A1350468","Bacillus pumilus CCMA-560"],["NCBITaxon%3A1330463","Bacillus pumilus CIMFR"]]},{"id":"NCBITaxon:244366","l":"Klebsiella variicola","na":2,"nb":16,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A576","Klebsiella sp."],["NCBITaxon%3A244366","Klebsiella variicola"],["NCBITaxon%3A507522","Klebsiella variicola 342"],["NCBITaxon%3A640131","Klebsiella variicola At-22"],["NCBITaxon%3A1438700","Klebsiella variicola BIDMC 61"]]},{"id":"GTDB:s__Stutzerimonas_stutzeri","l":"","na":2,"nb":15,"a":[["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["NCBITaxon%3A1914538","Pseudomonadaceae bacterium"],["NCBITaxon%3A1802004","Pseudomonadales bacterium RIFCSPHIGHO2_01_FULL_64_12"],["NCBITaxon%3A1977087","Pseudomonadota bacterium"],["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A2929472","Pseudomonas sp. JI-2"],["NCBITaxon%3A2717474","Pseudomonas sp. WS 5018"]]},{"id":"NCBITaxon:1492","l":"Clostridium butyricum","na":2,"nb":15,"a":[["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["NCBITaxon%3A1520","Clostridium beijerinckii"],["NCBITaxon%3A1492","Clostridium butyricum"],["NCBITaxon%3A634501","Clostridium butyricum 2CR37"],["NCBITaxon%3A447214","Clostridium butyricum 5521"],["NCBITaxon%3A997898","Clostridium butyricum 60E.3"],["NCBITaxon%3A1280693","Clostridium butyricum AGR2140"]]},{"id":"GTDB:s__Streptococcus_sanguinis","l":"","na":2,"nb":14,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1304","Streptococcus salivarius"],["NCBITaxon%3A1305","Streptococcus sanguinis"],["NCBITaxon%3A1073373","Streptococcus sanguinis CC94A"],["NCBITaxon%3A888821","Streptococcus sanguinis SK1057"],["NCBITaxon%3A888822","Streptococcus sanguinis SK1058"],["NCBITaxon%3A888823","Streptococcus sanguinis SK1059"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":2,"nb":14,"a":[["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["NCBITaxon%3A1076","Rhodopseudomonas palustris"],["NCBITaxon%3A74570","Rhodopseudomonas palustris ATCC 17001"],["NCBITaxon%3A74573","Rhodopseudomonas palustris ATCC 17007"],["NCBITaxon%3A316055","Rhodopseudomonas palustris BisA53"],["NCBITaxon%3A316056","Rhodopseudomonas palustris BisB18"],["NCBITaxon%3A316057","Rhodopseudomonas palustris BisB5"]]},{"id":"NCBITaxon:29466","l":"Veillonella parvula","na":2,"nb":14,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]],"b":[["NCBITaxon%3A39777","Veillonella atypica"],["NCBITaxon%3A29466","Veillonella parvula"],["NCBITaxon%3A1357417","Veillonella parvula AC2_8_11_AN_NA_2"],["NCBITaxon%3A768727","Veillonella parvula ACS-068-V-Sch12"],["NCBITaxon%3A686660","Veillonella parvula ATCC 17745"],["NCBITaxon%3A479436","Veillonella parvula DSM 2008"]]},{"id":"NCBITaxon:5498","l":"Cladosporium","na":2,"nb":14,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"]],"b":[["NCBITaxon%3A1338630","Cladosporium allicinum"],["NCBITaxon%3A29917","Cladosporium cladosporioides"],["NCBITaxon%3A643907","Cladosporium colombiae"],["NCBITaxon%3A1052093","Cladosporium fusiforme"],["NCBITaxon%3A1052096","Cladosporium halotolerans"],["NCBITaxon%3A29918","Cladosporium herbarum"]]},{"id":"GTDB:s__Priestia_megaterium","l":"","na":2,"nb":13,"a":[["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["NCBITaxon%3A3378802","Bacillus sp. Wb"],["NCBITaxon%3A412384","Priestia aryabhattai"],["NCBITaxon%3A1404","Priestia megaterium"],["NCBITaxon%3A592022","Priestia megaterium DSM 319"],["NCBITaxon%3A1348623","Priestia megaterium NBRC 15308 = ATCC 14581"],["NCBITaxon%3A1138452","Priestia megaterium NCT-2"]]},{"id":"GTDB:s__Roseburia_intestinalis","l":"","na":2,"nb":13,"a":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A3077420","Acutalibacteraceae bacterium"],["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A1689","Bifidobacterium dentium"],["NCBITaxon%3A2704657","Bulleidia sp."],["NCBITaxon%3A1898203","Lachnospiraceae bacterium"],["NCBITaxon%3A2485925","Oscillospiraceae bacterium"]]},{"id":"GTDB:s__Methanothrix_soehngenii","l":"","na":2,"nb":12,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["NCBITaxon%3A2026739","Methanobacteriota archaeon"],["NCBITaxon%3A1915557","Methanosaeta sp. UBA243"],["NCBITaxon%3A1915558","Methanosaeta sp. UBA332"],["NCBITaxon%3A1915559","Methanosaeta sp. UBA356"],["NCBITaxon%3A1915560","Methanosaeta sp. UBA372"],["NCBITaxon%3A1915561","Methanosaeta sp. UBA458"]]},{"id":"NCBITaxon:1148","l":"Synechocystis sp. PCC 6803","na":2,"nb":12,"a":[["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["NCBITaxon%3A1148","Synechocystis sp. PCC 6803"],["NCBITaxon%3A2932627","Synechocystis sp. PCC 6803 subst. PCC-Mn"],["NCBITaxon%3A2932628","Synechocystis sp. PCC 6803 subst. PCC-Pn"],["NCBITaxon%3A2962876","Synechocystis sp. PCC 6803 substr. D1-D170H"],["NCBITaxon%3A1080228","Synechocystis sp. PCC 6803 substr. GT-I"],["NCBITaxon%3A2932626","Synechocystis sp. PCC 6803 substr. GT-In"]]},{"id":"GTDB:s__Stutzerimonas_nitrititolerans","l":"","na":2,"nb":11,"a":[["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["NCBITaxon%3A1914538","Pseudomonadaceae bacterium"],["NCBITaxon%3A3003241","Pseudomonadaceae bacterium T75"],["NCBITaxon%3A1977087","Pseudomonadota bacterium"],["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A2479850","Pseudomonas sp. s199"],["NCBITaxon%3A1729723","Pseudomonas sp. TTU2014-066ASC"]]},{"id":"NCBITaxon:293387","l":"Bacillus altitudinis","na":2,"nb":10,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"]],"b":[["NCBITaxon%3A293387","Bacillus altitudinis"],["NCBITaxon%3A1255572","Bacillus altitudinis 263"],["NCBITaxon%3A1178544","Bacillus altitudinis 41KF2b"],["NCBITaxon%3A1326972","Bacillus altitudinis A23-8"],["NCBITaxon%3A1326971","Bacillus altitudinis C101"],["NCBITaxon%3A1326970","Bacillus altitudinis C16B11"]]},{"id":"NCBITaxon:29388","l":"Staphylococcus capitis","na":2,"nb":10,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"],["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["NCBITaxon%3A29388","Staphylococcus capitis"],["NCBITaxon%3A1441378","Staphylococcus capitis AYP1020"],["NCBITaxon%3A435838","Staphylococcus capitis C87"],["NCBITaxon%3A1296619","Staphylococcus capitis CR01"],["NCBITaxon%3A1394901","Staphylococcus capitis HOJ2SBS02"],["NCBITaxon%3A1189311","Staphylococcus capitis QN1"]]},{"id":"NCBITaxon:33959","l":"Lactobacillus johnsonii","na":2,"nb":10,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]],"b":[["NCBITaxon%3A1596","Lactobacillus gasseri"],["NCBITaxon%3A33959","Lactobacillus johnsonii"],["NCBITaxon%3A572503","Lactobacillus johnsonii 135-1-CHN"],["NCBITaxon%3A1033983","Lactobacillus johnsonii 16"],["NCBITaxon%3A525330","Lactobacillus johnsonii ATCC 33200"],["NCBITaxon%3A909954","Lactobacillus johnsonii DPC 6026"]]},{"id":"NCBITaxon:561879","l":"Bacillus safensis","na":2,"nb":10,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"]],"b":[["NCBITaxon%3A1408","Bacillus pumilus"],["NCBITaxon%3A561879","Bacillus safensis"],["NCBITaxon%3A1326975","Bacillus safensis B204-B1-5"],["NCBITaxon%3A1326976","Bacillus safensis D95"],["NCBITaxon%3A1178541","Bacillus safensis FO-36b"],["NCBITaxon%3A1326974","Bacillus safensis NH21E_2"]]},{"id":"GTDB:s__Anaerobutyricum_hallii","l":"","na":2,"nb":9,"a":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A39488","Anaerobutyricum hallii"],["NCBITaxon%3A1263078","Anaerobutyricum hallii CAG:12"],["NCBITaxon%3A411469","Anaerobutyricum hallii DSM 3353"],["NCBITaxon%3A2569098","Anaerobutyricum sp."],["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A1869227","bacterium"]]},{"id":"GTDB:s__Lysinibacillus_sp006864135","l":"","na":2,"nb":9,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]],"b":[["NCBITaxon%3A2936682","Lysinibacillus sp. Ag94"],["NCBITaxon%3A3028148","Lysinibacillus sp. CNPSo 3705"],["NCBITaxon%3A3364130","Lysinibacillus sp. NPDC086135"],["NCBITaxon%3A3364134","Lysinibacillus sp. NPDC095746"],["NCBITaxon%3A3390583","Lysinibacillus sp. NPDC096259"],["NCBITaxon%3A3364136","Lysinibacillus sp. NPDC096382"]]},{"id":"GTDB:s__Shewanella_oneidensis","l":"","na":9,"nb":2,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"],["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"],["Shewanella_Pseudomonas_Fe0_Electrosyntrophic_Denitrifying_Consortium.html","Shewanella oneidensis + Pseudomonas aeruginosa Fe0-dependent Electro-syntrophic Denitrifying Consortium"]],"b":[["NCBITaxon%3A70863","Shewanella oneidensis"],["NCBITaxon%3A211586","Shewanella oneidensis MR-1"]]},{"id":"GTDB:s__Streptococcus_equinus","l":"","na":2,"nb":9,"a":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"]],"b":[["NCBITaxon%3A1335","Streptococcus equinus"],["NCBITaxon%3A1410675","Streptococcus equinus 2B"],["NCBITaxon%3A1210006","Streptococcus equinus ATCC 33317"],["NCBITaxon%3A525379","Streptococcus equinus ATCC 9812"],["NCBITaxon%3A1280690","Streptococcus equinus B315"],["NCBITaxon%3A1280704","Streptococcus equinus SN033"]]},{"id":"GTDB:s__Streptococcus_pasteurianus","l":"","na":2,"nb":9,"a":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"]],"b":[["NCBITaxon%3A2291322","Streptococcaceae bacterium"],["NCBITaxon%3A864569","Streptococcus equinus ATCC 700338"],["NCBITaxon%3A315405","Streptococcus gallolyticus"],["NCBITaxon%3A59310","Streptococcus macedonicus"],["NCBITaxon%3A197614","Streptococcus pasteurianus"],["NCBITaxon%3A981540","Streptococcus pasteurianus ATCC 43144"]]},{"id":"GTDB:s__Streptococcus_ruminicola","l":"","na":2,"nb":9,"a":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"]],"b":[["NCBITaxon%3A1335","Streptococcus equinus"],["NCBITaxon%3A1294274","Streptococcus equinus JB1"],["NCBITaxon%3A102684","Streptococcus infantarius"],["NCBITaxon%3A150055","Streptococcus lutetiensis"],["NCBITaxon%3A2686210","Streptococcus ruminicola"],["NCBITaxon%3A1855326","Streptococcus sp. 45"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":2,"nb":9,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]],"b":[["NCBITaxon%3A28031","Lysinibacillus fusiformis"],["NCBITaxon%3A1130819","Lysinibacillus mangiferihumi"],["NCBITaxon%3A1421","Lysinibacillus sphaericus"],["NCBITaxon%3A444177","Lysinibacillus sphaericus C3-41"],["NCBITaxon%3A1400869","Lysinibacillus sphaericus CBAM5"],["NCBITaxon%3A1354027","Lysinibacillus sphaericus KCTC 3346"]]},{"id":"NCBITaxon:39152","l":"Methanococcus maripaludis","na":2,"nb":9,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"]],"b":[["NCBITaxon%3A39152","Methanococcus maripaludis"],["NCBITaxon%3A402880","Methanococcus maripaludis C5"],["NCBITaxon%3A444158","Methanococcus maripaludis C6"],["NCBITaxon%3A426368","Methanococcus maripaludis C7"],["NCBITaxon%3A637914","Methanococcus maripaludis KA1"],["NCBITaxon%3A637915","Methanococcus maripaludis OS7"]]},{"id":"GTDB:s__Acidiphilium_multivorum","l":"","na":2,"nb":8,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["NCBITaxon%3A349163","Acidiphilium cryptum JF-5"],["NCBITaxon%3A62140","Acidiphilium multivorum"],["NCBITaxon%3A926570","Acidiphilium multivorum AIU301"],["NCBITaxon%3A527","Acidiphilium sp."],["NCBITaxon%3A1464546","Acidiphilium sp. JA12-A1"],["NCBITaxon%3A1043206","Acidiphilium sp. PM"]]},{"id":"GTDB:s__Dehalococcoides_mccartyi_B","l":"","na":2,"nb":8,"a":[["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"]],"b":[["NCBITaxon%3A61435","Dehalococcoides mccartyi"],["NCBITaxon%3A1193806","Dehalococcoides mccartyi BTF08"],["NCBITaxon%3A255470","Dehalococcoides mccartyi CBDB1"],["NCBITaxon%3A1432061","Dehalococcoides mccartyi CG5"],["NCBITaxon%3A1193807","Dehalococcoides mccartyi DCMB5"],["NCBITaxon%3A1407653","Dehalococcoides mccartyi IBARAKI"]]},{"id":"GTDB:s__Stutzerimonas_stutzeri_AC","l":"","na":2,"nb":8,"a":[["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["NCBITaxon%3A3140475","Pseudomonas sp. E45-MNA-CIBAN-0222"],["NCBITaxon%3A2975386","Pseudomonas sp. GD03855"],["NCBITaxon%3A2975387","Pseudomonas sp. GD03856"],["NCBITaxon%3A2975404","Pseudomonas sp. GD03909"],["NCBITaxon%3A1729726","Pseudomonas sp. TTU2014-105ASC"],["NCBITaxon%3A1211807","Stutzerimonas kunmingensis"]]},{"id":"GTDB:s__Virgibacillus_salarius","l":"","na":2,"nb":8,"a":[["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["NCBITaxon%3A1431249","Agaribacter marinus"],["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A1348908","Priestia megaterium MSP20.1"],["NCBITaxon%3A417355","uncultured Virgibacillus sp."],["NCBITaxon%3A447199","Virgibacillus salarius"],["NCBITaxon%3A2812055","Virgibacillus sp. AGTR"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":2,"nb":8,"a":[["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]],"b":[["NCBITaxon%3A1515","Acetivibrio thermocellus"],["NCBITaxon%3A1138384","Acetivibrio thermocellus AD2"],["NCBITaxon%3A203119","Acetivibrio thermocellus ATCC 27405"],["NCBITaxon%3A1349417","Acetivibrio thermocellus BC1"],["NCBITaxon%3A637887","Acetivibrio thermocellus DSM 1313"],["NCBITaxon%3A572545","Acetivibrio thermocellus DSM 2360"]]},{"id":"GTDB:s__Bacillus_siamensis","l":"","na":2,"nb":7,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"]],"b":[["NCBITaxon%3A659243","Bacillus siamensis"],["NCBITaxon%3A1177185","Bacillus siamensis KCTC 13613"],["NCBITaxon%3A2770510","Bacillus sp. 1021"],["NCBITaxon%3A1679193","Bacillus sp. JFL15"],["NCBITaxon%3A1774743","Bacillus sp. SDLI1"],["NCBITaxon%3A3237485","Bacillus sp. YAF8"]]},{"id":"GTDB:s__Nitrosomonas_europaea","l":"","na":2,"nb":7,"a":[["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["NCBITaxon%3A2575678","Betaproteobacteria bacterium PRO5"],["NCBITaxon%3A915","Nitrosomonas europaea"],["NCBITaxon%3A228410","Nitrosomonas europaea ATCC 19718"],["NCBITaxon%3A42353","Nitrosomonas sp."],["NCBITaxon%3A2741553","Nitrosomonas sp. H1_AOB3"],["NCBITaxon%3A1977087","Pseudomonadota bacterium"]]},{"id":"GTDB:s__Veillonella_parvula_A","l":"","na":2,"nb":7,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]],"b":[["NCBITaxon%3A1519439","Oscillibacter sp. ER4"],["NCBITaxon%3A29466","Veillonella parvula"],["NCBITaxon%3A768727","Veillonella parvula ACS-068-V-Sch12"],["NCBITaxon%3A1316254","Veillonella parvula HSIVP1"],["NCBITaxon%3A1926307","Veillonella sp."],["NCBITaxon%3A457416","Veillonella sp. 3_1_44"]]},{"id":"NCBITaxon:28108","l":"Alteromonas macleodii","na":2,"nb":7,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["NCBITaxon%3A28108","Alteromonas macleodii"],["NCBITaxon%3A529120","Alteromonas macleodii ATCC 27126"],["NCBITaxon%3A1004787","Alteromonas macleodii str. 'Balearic Sea AD45'"],["NCBITaxon%3A1004785","Alteromonas macleodii str. 'Black Sea 11'"],["NCBITaxon%3A1004788","Alteromonas macleodii str. 'English Channel 673'"],["NCBITaxon%3A160763","Alteromonas macleodii subsp. abyssi"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":2,"nb":7,"a":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]],"b":[["NCBITaxon%3A293","Brevundimonas diminuta"],["NCBITaxon%3A1255603","Brevundimonas diminuta 3F5N"],["NCBITaxon%3A1035191","Brevundimonas diminuta 470-4"],["NCBITaxon%3A751586","Brevundimonas diminuta ATCC 11568"],["NCBITaxon%3A588932","Brevundimonas naejangsanensis"],["NCBITaxon%3A1325724","Brevundimonas vancanneytii"]]},{"id":"GTDB:s__Anaerostipes_caccae","l":"","na":2,"nb":6,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["NCBITaxon%3A105841","Anaerostipes caccae"],["NCBITaxon%3A411490","Anaerostipes caccae L1-92"],["NCBITaxon%3A1872530","Anaerostipes sp."],["NCBITaxon%3A2292912","Anaerostipes sp. AF04-45"],["NCBITaxon%3A1262699","Anaerostipes sp. CAG:276"],["NCBITaxon%3A244328","uncultured Clostridia bacterium"]]},{"id":"GTDB:s__Lysinibacillus_sphaericus","l":"","na":2,"nb":6,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]],"b":[["NCBITaxon%3A2796169","Lysinibacillus sp. C5.1"],["NCBITaxon%3A2896845","Lysinibacillus sp. GJ-1"],["NCBITaxon%3A1421","Lysinibacillus sphaericus"],["NCBITaxon%3A1354027","Lysinibacillus sphaericus KCTC 3346"],["NCBITaxon%3A1173107","Lysinibacillus tabacifolii"],["NCBITaxon%3A1145276","Lysinibacillus varians"]]},{"id":"GTDB:s__Methanobacterium_formicicum","l":"","na":2,"nb":6,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"]],"b":[["NCBITaxon%3A2026739","Methanobacteriota archaeon"],["NCBITaxon%3A2162","Methanobacterium formicicum"],["NCBITaxon%3A1300163","Methanobacterium formicicum JCM 10132"],["NCBITaxon%3A2164","Methanobacterium sp."],["NCBITaxon%3A1641383","Methanobacterium sp. 42_16"],["NCBITaxon%3A1915470","Methanobacterium sp. UBA74"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":6,"nb":2,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["NCBITaxon%3A324833","Streptomyces lasalocidi"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:2203","l":"Methanospirillum hungatei","na":6,"nb":2,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["NCBITaxon%3A2203","Methanospirillum hungatei"],["NCBITaxon%3A323259","Methanospirillum hungatei JF-1"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":2,"nb":6,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"]],"b":[["NCBITaxon%3A266","Paracoccus denitrificans"],["NCBITaxon%3A1302247","Paracoccus denitrificans JCM 21484"],["NCBITaxon%3A318586","Paracoccus denitrificans PD1222"],["NCBITaxon%3A1051075","Paracoccus denitrificans SD1"],["NCBITaxon%3A82367","Paracoccus pantotrophus"],["NCBITaxon%3A189685","uncultured Paracoccus sp."]]},{"id":"NCBITaxon:70863","l":"Shewanella oneidensis","na":6,"nb":2,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"],["Shewanella_Pseudomonas_Fe0_Electrosyntrophic_Denitrifying_Consortium.html","Shewanella oneidensis + Pseudomonas aeruginosa Fe0-dependent Electro-syntrophic Denitrifying Consortium"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["NCBITaxon%3A70863","Shewanella oneidensis"],["NCBITaxon%3A211586","Shewanella oneidensis MR-1"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":6,"nb":2,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["NCBITaxon%3A881","Nitratidesulfovibrio vulgaris"],["NCBITaxon%3A882","Nitratidesulfovibrio vulgaris str. Hildenborough"]]},{"id":"GTDB:s__Acinetobacter_baylyi","l":"","na":2,"nb":5,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"]],"b":[["NCBITaxon%3A202950","Acinetobacter baylyi"],["NCBITaxon%3A62977","Acinetobacter baylyi ADP1"],["NCBITaxon%3A1120924","Acinetobacter baylyi DSM 14961 = CIP 107474"],["NCBITaxon%3A1221291","Acinetobacter baylyi TG19579"],["NCBITaxon%3A472","Acinetobacter sp."]]},{"id":"GTDB:s__Clostridium_S_acetobutylicum","l":"","na":2,"nb":5,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["NCBITaxon%3A1488","Clostridium acetobutylicum"],["NCBITaxon%3A272562","Clostridium acetobutylicum ATCC 824"],["NCBITaxon%3A991791","Clostridium acetobutylicum DSM 1731"],["NCBITaxon%3A863638","Clostridium acetobutylicum EA 2018"],["NCBITaxon%3A2126737","Clostridium sp. NJ4"]]},{"id":"GTDB:s__Methanothermobacter_thermautotrophicus","l":"","na":2,"nb":5,"a":[["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]],"b":[["NCBITaxon%3A49339","Methanothermobacter defluvii"],["NCBITaxon%3A1884223","Methanothermobacter sp."],["NCBITaxon%3A2017966","Methanothermobacter sp. EMTCatA1"],["NCBITaxon%3A145262","Methanothermobacter thermautotrophicus"],["NCBITaxon%3A187420","Methanothermobacter thermautotrophicus str. Delta H"]]},{"id":"GTDB:s__Novosphingobium_subterraneum","l":"","na":2,"nb":5,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["NCBITaxon%3A1768752","Novosphingobium sp. CCH12-A3"],["NCBITaxon%3A2780074","Novosphingobium sp. ES2-1"],["NCBITaxon%3A48936","Novosphingobium subterraneum"],["NCBITaxon%3A1219057","Novosphingobium subterraneum NBRC 16086"],["NCBITaxon%3A1977087","Pseudomonadota bacterium"]]},{"id":"GTDB:s__Streptococcus_sanguinis_H","l":"","na":2,"nb":5,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1305","Streptococcus sanguinis"],["NCBITaxon%3A888815","Streptococcus sanguinis SK353"],["NCBITaxon%3A388919","Streptococcus sanguinis SK36"],["NCBITaxon%3A888809","Streptococcus sanguinis SK72"],["NCBITaxon%3A888825","Streptococcus sanguinis VMC66"]]},{"id":"GTDB:s__Streptococcus_sanguinis_R","l":"","na":2,"nb":5,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1305","Streptococcus sanguinis"],["NCBITaxon%3A1304891","Streptococcus sanguinis OH0843"],["NCBITaxon%3A888824","Streptococcus sanguinis SK1087"],["NCBITaxon%3A3003644","Streptococcus sp. 27098_8_134"],["NCBITaxon%3A83427","uncultured Streptococcus sp."]]},{"id":"GTDB:s__Stutzerimonas_stutzeri_AE","l":"","na":2,"nb":5,"a":[["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["NCBITaxon%3A2013805","Gammaproteobacteria bacterium HGW-Gammaproteobacteria-9"],["NCBITaxon%3A1883453","Pseudomonas sp. CO183"],["NCBITaxon%3A412955","Pseudomonas sp. SCT"],["NCBITaxon%3A316","Stutzerimonas stutzeri"],["NCBITaxon%3A644801","Stutzerimonas stutzeri RCH2"]]},{"id":"GTDB:s__Stutzerimonas_stutzeri_G","l":"","na":2,"nb":5,"a":[["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A3035478","Pseudomonas sp. FeN3W"],["NCBITaxon%3A1211807","Stutzerimonas kunmingensis"],["NCBITaxon%3A316","Stutzerimonas stutzeri"],["NCBITaxon%3A1212548","Stutzerimonas stutzeri NF13"]]},{"id":"NCBITaxon:202950","l":"Acinetobacter baylyi","na":2,"nb":5,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"]],"b":[["NCBITaxon%3A202950","Acinetobacter baylyi"],["NCBITaxon%3A62977","Acinetobacter baylyi ADP1"],["NCBITaxon%3A1198992","Acinetobacter baylyi BD4"],["NCBITaxon%3A1120924","Acinetobacter baylyi DSM 14961 = CIP 107474"],["NCBITaxon%3A1221291","Acinetobacter baylyi TG19579"]]},{"id":"NCBITaxon:28034","l":"Sulfobacillus thermosulfidooxidans","na":2,"nb":5,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["NCBITaxon%3A28034","Sulfobacillus thermosulfidooxidans"],["NCBITaxon%3A929705","Sulfobacillus thermosulfidooxidans DSM 9293"],["NCBITaxon%3A1366420","Sulfobacillus thermosulfidooxidans ST"],["NCBITaxon%3A1214914","Sulfobacillus thermosulfidooxidans str. Cutipay"],["NCBITaxon%3A108014","Sulfobacillus thermosulfidooxidans subsp. asporogenes"]]},{"id":"NCBITaxon:33059","l":"Acidithiobacillus caldus","na":2,"nb":5,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["NCBITaxon%3A33059","Acidithiobacillus caldus"],["NCBITaxon%3A637389","Acidithiobacillus caldus ATCC 51756"],["NCBITaxon%3A990288","Acidithiobacillus caldus SM-1"],["NCBITaxon%3A184426","environmental samples"],["NCBITaxon%3A184427","uncultured Acidithiobacillus caldus"]]},{"id":"GTDB:s__Acidithiobacillus_A_caldus","l":"","na":2,"nb":4,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["NCBITaxon%3A33059","Acidithiobacillus caldus"],["NCBITaxon%3A637389","Acidithiobacillus caldus ATCC 51756"],["NCBITaxon%3A990288","Acidithiobacillus caldus SM-1"],["NCBITaxon%3A1872118","Acidithiobacillus sp."]]},{"id":"GTDB:s__Clostridium_B_kluyveri","l":"","na":4,"nb":2,"a":[["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["NCBITaxon%3A431943","Clostridium kluyveri DSM 555"],["NCBITaxon%3A583346","Clostridium kluyveri NBRC 12016"]]},{"id":"GTDB:s__Lysinibacillus_sphaericus_B","l":"","na":2,"nb":4,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]],"b":[["NCBITaxon%3A1405","Bacillus mycoides"],["NCBITaxon%3A3411039","Lysinibacillus sp. UGB7"],["NCBITaxon%3A1421","Lysinibacillus sphaericus"],["NCBITaxon%3A1285586","Lysinibacillus sphaericus OT4b.31"]]},{"id":"GTDB:s__Rhodopseudomonas_palustris_C","l":"","na":2,"nb":4,"a":[["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["NCBITaxon%3A1076","Rhodopseudomonas palustris"],["NCBITaxon%3A1421013","Rhodopseudomonas palustris JSC-3b"],["NCBITaxon%3A1421014","Rhodopseudomonas palustris PSBS"],["NCBITaxon%3A2021379","Xanthobacteraceae bacterium"]]},{"id":"GTDB:s__Ruminiclostridium_cellulolyticum","l":"","na":4,"nb":2,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["NCBITaxon%3A1521","Ruminiclostridium cellulolyticum"],["NCBITaxon%3A394503","Ruminiclostridium cellulolyticum H10"]]},{"id":"GTDB:s__Stutzerimonas_stutzeri_AI","l":"","na":2,"nb":4,"a":[["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["NCBITaxon%3A1914538","Pseudomonadaceae bacterium"],["NCBITaxon%3A3369415","Stutzerimonas sp. CQPMC-PStu"],["NCBITaxon%3A316","Stutzerimonas stutzeri"],["NCBITaxon%3A1333856","Stutzerimonas stutzeri MF28"]]},{"id":"GTDB:s__Sulfobacillus_thermosulfidooxidans","l":"","na":2,"nb":4,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["NCBITaxon%3A28034","Sulfobacillus thermosulfidooxidans"],["NCBITaxon%3A929705","Sulfobacillus thermosulfidooxidans DSM 9293"],["NCBITaxon%3A1366420","Sulfobacillus thermosulfidooxidans ST"],["NCBITaxon%3A1214914","Sulfobacillus thermosulfidooxidans str. Cutipay"]]},{"id":"GTDB:s__Syntrophomonas_wolfei","l":"","na":4,"nb":2,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["NCBITaxon%3A863","Syntrophomonas wolfei"],["NCBITaxon%3A335541","Syntrophomonas wolfei subsp. wolfei str. Goettingen G311"]]},{"id":"NCBITaxon:1521","l":"Ruminiclostridium cellulolyticum","na":4,"nb":2,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["NCBITaxon%3A1521","Ruminiclostridium cellulolyticum"],["NCBITaxon%3A394503","Ruminiclostridium cellulolyticum H10"]]},{"id":"NCBITaxon:231455","l":"Dyella japonica","na":2,"nb":4,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["NCBITaxon%3A231455","Dyella japonica"],["NCBITaxon%3A1217721","Dyella japonica A8"],["NCBITaxon%3A1440762","Dyella japonica DSM 16301"],["NCBITaxon%3A1380365","Dyella japonica UNC79MFTsu3.2"]]},{"id":"NCBITaxon:243164","l":"Dehalococcoides mccartyi 195","na":4,"nb":2,"a":[["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["NCBITaxon%3A61435","Dehalococcoides mccartyi"],["NCBITaxon%3A243164","Dehalococcoides mccartyi 195"]]},{"id":"NCBITaxon:253","l":"Chryseobacterium indologenes","na":2,"nb":4,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"]],"b":[["NCBITaxon%3A246","Chryseobacterium balustinum"],["NCBITaxon%3A253","Chryseobacterium indologenes"],["NCBITaxon%3A1218103","Chryseobacterium indologenes NBRC 14944"],["NCBITaxon%3A239","Flavobacterium sp."]]},{"id":"NCBITaxon:511145","l":"Escherichia coli str. K-12 substr. MG1655","na":2,"nb":4,"a":[["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["NCBITaxon%3A47678","Bacteroides caccae"],["NCBITaxon%3A411901","Bacteroides caccae ATCC 43185"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A511145","Escherichia coli str. K-12 substr. MG1655"]]},{"id":"GTDB:s__Acetobacterium_woodii","l":"","na":3,"nb":2,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["NCBITaxon%3A33952","Acetobacterium woodii"],["NCBITaxon%3A931626","Acetobacterium woodii DSM 1030"]]},{"id":"GTDB:s__Chryseobacterium_indologenes","l":"","na":2,"nb":3,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"]],"b":[["NCBITaxon%3A253","Chryseobacterium indologenes"],["NCBITaxon%3A1218103","Chryseobacterium indologenes NBRC 14944"],["NCBITaxon%3A1340435","Chryseobacterium sp. UNC8MFCol"]]},{"id":"GTDB:s__Leptospirillum_ferrooxidans","l":"","na":2,"nb":3,"a":[["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"]],"b":[["NCBITaxon%3A180","Leptospirillum ferrooxidans"],["NCBITaxon%3A1162668","Leptospirillum ferrooxidans C2-3"],["NCBITaxon%3A2026887","Nitrospirota bacterium"]]},{"id":"GTDB:s__Pelotomaculum_thermopropionicum","l":"","na":2,"nb":3,"a":[["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"]],"b":[["NCBITaxon%3A2053590","Pelotomaculum sp."],["NCBITaxon%3A110500","Pelotomaculum thermopropionicum"],["NCBITaxon%3A370438","Pelotomaculum thermopropionicum SI"]]},{"id":"GTDB:s__Rhodopseudomonas_pseudopalustris","l":"","na":2,"nb":3,"a":[["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["NCBITaxon%3A1076","Rhodopseudomonas palustris"],["NCBITaxon%3A316057","Rhodopseudomonas palustris BisB5"],["NCBITaxon%3A1513892","Rhodopseudomonas pseudopalustris"]]},{"id":"GTDB:s__Streptococcus_sanguinis_M","l":"","na":2,"nb":3,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A45634","Streptococcus cristatus"],["NCBITaxon%3A1305","Streptococcus sanguinis"],["NCBITaxon%3A888811","Streptococcus sanguinis SK150"]]},{"id":"GTDB:s__Streptococcus_sp905212325","l":"","na":2,"nb":3,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1305","Streptococcus sanguinis"],["NCBITaxon%3A888813","Streptococcus sanguinis SK330"],["NCBITaxon%3A83427","uncultured Streptococcus sp."]]},{"id":"NCBITaxon:1317","l":"Streptococcus downei","na":2,"nb":3,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"],["FourSpecies_Aerobic_Lung_Microbiome_Model.html","Four-Species Aerobic Lung Microbiome Model"]],"b":[["NCBITaxon%3A1317","Streptococcus downei"],["NCBITaxon%3A904293","Streptococcus downei F0415"],["NCBITaxon%3A764290","Streptococcus downei MFe28"]]},{"id":"NCBITaxon:145262","l":"Methanothermobacter thermautotrophicus","na":2,"nb":3,"a":[["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]],"b":[["NCBITaxon%3A145262","Methanothermobacter thermautotrophicus"],["NCBITaxon%3A187420","Methanothermobacter thermautotrophicus str. Delta H"],["NCBITaxon%3A79930","Methanothermobacter thermautotrophicus str. Winter"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":3,"nb":2,"a":[["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["NCBITaxon%3A70863","Shewanella oneidensis"],["NCBITaxon%3A211586","Shewanella oneidensis MR-1"]]},{"id":"NCBITaxon:2162","l":"Methanobacterium formicicum","na":2,"nb":3,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"]],"b":[["NCBITaxon%3A2162","Methanobacterium formicicum"],["NCBITaxon%3A1204725","Methanobacterium formicicum DSM 3637"],["NCBITaxon%3A1300163","Methanobacterium formicicum JCM 10132"]]},{"id":"NCBITaxon:33035","l":"Blautia producta","na":3,"nb":2,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["NCBITaxon%3A33035","Blautia producta"],["NCBITaxon%3A1121114","Blautia producta ATCC 27340 = DSM 2950"]]},{"id":"NCBITaxon:33952","l":"Acetobacterium woodii","na":3,"nb":2,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["NCBITaxon%3A33952","Acetobacterium woodii"],["NCBITaxon%3A931626","Acetobacterium woodii DSM 1030"]]},{"id":"NCBITaxon:39488","l":"Anaerobutyricum hallii","na":2,"nb":3,"a":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A39488","Anaerobutyricum hallii"],["NCBITaxon%3A1263078","Anaerobutyricum hallii CAG:12"],["NCBITaxon%3A411469","Anaerobutyricum hallii DSM 3353"]]},{"id":"NCBITaxon:573061","l":"Clostridium cellulovorans 743B","na":3,"nb":2,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"]],"b":[["NCBITaxon%3A1493","Clostridium cellulovorans"],["NCBITaxon%3A573061","Clostridium cellulovorans 743B"]]},{"id":"NCBITaxon:648995","l":"Agrobacterium pusense","na":2,"nb":3,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["NCBITaxon%3A648995","Agrobacterium pusense"],["NCBITaxon%3A1368422","Agrobacterium pusense L2/2/1"],["NCBITaxon%3A1368423","Agrobacterium pusense M2/1"]]},{"id":"GTDB:s__Lentilactobacillus_kefiri","l":"","na":2,"nb":2,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["NCBITaxon%3A33962","Lentilactobacillus kefiri"],["NCBITaxon%3A1423764","Lentilactobacillus kefiri DSM 20587 = JCM 5818"]]},{"id":"GTDB:s__Methylotuvimicrobium_alcaliphilum","l":"","na":2,"nb":2,"a":[["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"]],"b":[["NCBITaxon%3A271065","Methylotuvimicrobium alcaliphilum"],["NCBITaxon%3A1091494","Methylotuvimicrobium alcaliphilum 20Z"]]},{"id":"GTDB:s__Priestia_megaterium_D","l":"","na":2,"nb":2,"a":[["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["NCBITaxon%3A412384","Priestia aryabhattai"],["NCBITaxon%3A1404","Priestia megaterium"]]},{"id":"GTDB:s__Rhodopseudomonas_palustris_G","l":"","na":2,"nb":2,"a":[["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["NCBITaxon%3A1076","Rhodopseudomonas palustris"],["NCBITaxon%3A2269367","Rhodopseudomonas sp. WA056"]]},{"id":"GTDB:s__Streptococcus_sanguinis_K","l":"","na":2,"nb":2,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1305","Streptococcus sanguinis"],["NCBITaxon%3A3003643","Streptococcus sp. 27098_8_82"]]},{"id":"GTDB:s__Streptomyces_ambofaciens","l":"","na":2,"nb":2,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["NCBITaxon%3A1889","Streptomyces ambofaciens"],["NCBITaxon%3A278992","Streptomyces ambofaciens ATCC 23877"]]},{"id":"GTDB:s__Stutzerimonas_stutzeri_B","l":"","na":2,"nb":2,"a":[["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["NCBITaxon%3A316","Stutzerimonas stutzeri"],["NCBITaxon%3A1218352","Stutzerimonas stutzeri KOS6"]]},{"id":"GTDB:s__Stutzerimonas_stutzeri_H","l":"","na":2,"nb":2,"a":[["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["NCBITaxon%3A316","Stutzerimonas stutzeri"],["NCBITaxon%3A1109445","Stutzerimonas stutzeri SDM-LAC"]]},{"id":"GTDB:s__Syntrophobacter_fumaroxidans","l":"","na":2,"nb":2,"a":[["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["NCBITaxon%3A119484","Syntrophobacter fumaroxidans"],["NCBITaxon%3A335543","Syntrophobacter fumaroxidans MPOB"]]},{"id":"NCBITaxon:105841","l":"Anaerostipes caccae","na":2,"nb":2,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["NCBITaxon%3A105841","Anaerostipes caccae"],["NCBITaxon%3A411490","Anaerostipes caccae L1-92"]]},{"id":"NCBITaxon:1091494","l":"Methylotuvimicrobium alcaliphilum 20Z","na":2,"nb":2,"a":[["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"]],"b":[["NCBITaxon%3A271065","Methylotuvimicrobium alcaliphilum"],["NCBITaxon%3A1091494","Methylotuvimicrobium alcaliphilum 20Z"]]},{"id":"NCBITaxon:110500","l":"Pelotomaculum thermopropionicum","na":2,"nb":2,"a":[["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"]],"b":[["NCBITaxon%3A110500","Pelotomaculum thermopropionicum"],["NCBITaxon%3A370438","Pelotomaculum thermopropionicum SI"]]},{"id":"NCBITaxon:119484","l":"Syntrophobacter fumaroxidans","na":2,"nb":2,"a":[["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["NCBITaxon%3A119484","Syntrophobacter fumaroxidans"],["NCBITaxon%3A335543","Syntrophobacter fumaroxidans MPOB"]]},{"id":"NCBITaxon:1538","l":"Clostridium ljungdahlii","na":2,"nb":2,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["NCBITaxon%3A1538","Clostridium ljungdahlii"],["NCBITaxon%3A748727","Clostridium ljungdahlii DSM 13528"]]},{"id":"NCBITaxon:160488","l":"Pseudomonas putida (strain ATCC 47054 / DSM 6125 / CFBP 8728 / NCIMB 11950 / KT2440)","na":2,"nb":2,"a":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"]],"b":[["NCBITaxon%3A303","Pseudomonas putida"],["NCBITaxon%3A160488","Pseudomonas putida KT2440"]]},{"id":"NCBITaxon:180","l":"Leptospirillum ferrooxidans","na":2,"nb":2,"a":[["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"]],"b":[["NCBITaxon%3A180","Leptospirillum ferrooxidans"],["NCBITaxon%3A1162668","Leptospirillum ferrooxidans C2-3"]]},{"id":"NCBITaxon:1889","l":"Streptomyces ambofaciens","na":2,"nb":2,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["NCBITaxon%3A1889","Streptomyces ambofaciens"],["NCBITaxon%3A278992","Streptomyces ambofaciens ATCC 23877"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus ATCC 27405","na":2,"nb":2,"a":[["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["NCBITaxon%3A1515","Acetivibrio thermocellus"],["NCBITaxon%3A203119","Acetivibrio thermocellus ATCC 27405"]]},{"id":"NCBITaxon:2223","l":"Methanothrix soehngenii","na":2,"nb":2,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["NCBITaxon%3A2223","Methanothrix soehngenii"],["NCBITaxon%3A990316","Methanothrix soehngenii GP6"]]},{"id":"NCBITaxon:272562","l":"Clostridium acetobutylicum (strain ATCC 824 / DSM 792 / JCM 1419 / IAM 19013 / LMG 5710 / NBRC 13948 / NRRL B-527 / VKM B-1787 / 2291 / W)","na":2,"nb":2,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["NCBITaxon%3A1488","Clostridium acetobutylicum"],["NCBITaxon%3A272562","Clostridium acetobutylicum ATCC 824"]]},{"id":"NCBITaxon:299767","l":"Enterobacter ludwigii","na":2,"nb":2,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A299767","Enterobacter ludwigii"]]},{"id":"NCBITaxon:3039","l":"Euglena gracilis","na":2,"nb":2,"a":[["Dairy_Wastewater_Algal_Cyanobacterial_Cultivation_Panel.html","Dairy Wastewater Algal-Cyanobacterial Cultivation Panel"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"]],"b":[["NCBITaxon%3A3039","Euglena gracilis"],["NCBITaxon%3A158060","Euglena gracilis var. bacillaris"]]},{"id":"NCBITaxon:323259","l":"Methanospirillum hungatei JF-1","na":2,"nb":2,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["NCBITaxon%3A2203","Methanospirillum hungatei"],["NCBITaxon%3A323259","Methanospirillum hungatei JF-1"]]},{"id":"NCBITaxon:33962","l":"Lentilactobacillus kefiri","na":2,"nb":2,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["NCBITaxon%3A33962","Lentilactobacillus kefiri"],["NCBITaxon%3A1423764","Lentilactobacillus kefiri DSM 20587 = JCM 5818"]]},{"id":"NCBITaxon:357809","l":"Lachnoclostridium phytofermentans ISDg","na":2,"nb":2,"a":[["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"]],"b":[["NCBITaxon%3A66219","Lachnoclostridium phytofermentans"],["NCBITaxon%3A357809","Lachnoclostridium phytofermentans ISDg"]]},{"id":"NCBITaxon:48936","l":"Novosphingobium subterraneum","na":2,"nb":2,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["NCBITaxon%3A48936","Novosphingobium subterraneum"],["NCBITaxon%3A1219057","Novosphingobium subterraneum NBRC 16086"]]},{"id":"NCBITaxon:515619","l":"Agathobacter rectalis ATCC 33656","na":2,"nb":2,"a":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A39491","Agathobacter rectalis"],["NCBITaxon%3A515619","Agathobacter rectalis ATCC 33656"]]},{"id":"NCBITaxon:524","l":"Acidiphilium cryptum","na":2,"nb":2,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["NCBITaxon%3A524","Acidiphilium cryptum"],["NCBITaxon%3A349163","Acidiphilium cryptum JF-5"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":2,"nb":2,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["NCBITaxon%3A5476","Candida albicans"],["NCBITaxon%3A1182531","Candida albicans 3153A"]]},{"id":"NCBITaxon:659243","l":"Bacillus siamensis","na":2,"nb":2,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"]],"b":[["NCBITaxon%3A659243","Bacillus siamensis"],["NCBITaxon%3A1177185","Bacillus siamensis KCTC 13613"]]},{"id":"NCBITaxon:82380","l":"Microbacterium oxydans","na":2,"nb":2,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]],"b":[["NCBITaxon%3A82380","Microbacterium oxydans"],["NCBITaxon%3A1255678","Microbacterium oxydans PCA1"]]},{"id":"NCBITaxon:913","l":"Nitrobacter winogradskyi","na":2,"nb":2,"a":[["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["NCBITaxon%3A913","Nitrobacter winogradskyi"],["NCBITaxon%3A323098","Nitrobacter winogradskyi Nb-255"]]},{"id":"NCBITaxon:915","l":"Nitrosomonas europaea","na":2,"nb":2,"a":[["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["NCBITaxon%3A915","Nitrosomonas europaea"],["NCBITaxon%3A228410","Nitrosomonas europaea ATCC 19718"]]},{"id":"NCBITaxon:91061","l":"Bacilli","na":1,"nb":79557,"a":[["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"]],"b":[["NCBITaxon%3A46125","Abiotrophia defectiva"],["NCBITaxon%3A592010","Abiotrophia defectiva ATCC 49176"],["NCBITaxon%3A1410024","Abiotrophia defectiva HMP_JCVI_SC0171"],["NCBITaxon%3A1410025","Abiotrophia defectiva HMP_JCVI_SC0235"],["NCBITaxon%3A191553","Abiotrophia para-adiacens"],["NCBITaxon%3A76631","Abiotrophia sp."]]},{"id":"NCBITaxon:356","l":"Hyphomicrobiales","na":1,"nb":37310,"a":[["Thiocyanate_Afipia_Thiobacillus_Bioreactor_Community.html","Thiocyanate-Degrading Afipia and Thiobacillus Bioreactor Community"]],"b":[["NCBITaxon%3A119160","2,3-D degrading bacterium NHC2"],["NCBITaxon%3A119159","2,3-D degrading bacterium NHG3"],["NCBITaxon%3A83488","2,4-D degrading bacterium M1"],["NCBITaxon%3A2910977","Acuticoccus kalidii"],["NCBITaxon%3A2073160","Acuticoccus kandeliae"],["NCBITaxon%3A2796142","Acuticoccus mangrovi"]]},{"id":"NCBITaxon:80840","l":"Burkholderiales","na":1,"nb":24584,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"]],"b":[["NCBITaxon%3A103498","2,4-D-degrading bacterium 001"],["NCBITaxon%3A103499","2,4-D-degrading bacterium 007"],["NCBITaxon%3A103495","2,4-D-degrading bacterium 012"],["NCBITaxon%3A103500","2,4-D-degrading bacterium 017"],["NCBITaxon%3A103501","2,4-D-degrading bacterium 018"],["NCBITaxon%3A103502","2,4-D-degrading bacterium 019"]]},{"id":"NCBITaxon:186801","l":"Clostridia","na":1,"nb":12463,"a":[["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"]],"b":[["NCBITaxon%3A1766203","Abyssisolibacter fermentans"],["NCBITaxon%3A2684878","Abyssisolibacter sp."],["NCBITaxon%3A3035615","Abyssisolibacter sp. ZYX002"],["NCBITaxon%3A1675854","Abyssivirga alkaniphila"],["NCBITaxon%3A2024429","Abyssivirga sp."],["NCBITaxon%3A2912264","Acetanaerobacter sp."]]},{"id":"NCBITaxon:119060","l":"Burkholderiaceae","na":1,"nb":11091,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["NCBITaxon%3A135641","2,4-D degrading transconjugant WD2"],["NCBITaxon%3A135642","2,4-D degrading transconjugant WD3"],["NCBITaxon%3A204704","bacterium Ellin349"],["NCBITaxon%3A204705","bacterium Ellin350"],["NCBITaxon%3A204706","bacterium Ellin364"],["NCBITaxon%3A204707","bacterium Ellin365"]]},{"id":"NCBITaxon:90964","l":"Staphylococcaceae","na":1,"nb":9983,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["NCBITaxon%3A930138","Aliicoccus persicus"],["NCBITaxon%3A1872438","Aliicoccus sp."],["NCBITaxon%3A196884","Arctic sea ice bacterum ARK9973"],["NCBITaxon%3A91995","bacterium #2 from Psoroptes ovis"],["NCBITaxon%3A2838629","Candidatus Jeotgalicoccus stercoravium"],["NCBITaxon%3A2838704","Candidatus Nosocomiicoccus stercorigallinarum"]]},{"id":"NCBITaxon:1279","l":"Staphylococcus","na":1,"nb":9540,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["NCBITaxon%3A196884","Arctic sea ice bacterum ARK9973"],["NCBITaxon%3A91995","bacterium #2 from Psoroptes ovis"],["NCBITaxon%3A2875764","Macrococcus armenti"],["NCBITaxon%3A150056","Mammaliicoccus fleurettii"],["NCBITaxon%3A42858","Mammaliicoccus lentus"],["NCBITaxon%3A246568","marine bacterium 13691"]]},{"id":"NCBITaxon:135614","l":"Lysobacterales","na":1,"nb":7954,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["NCBITaxon%3A346181","Aerolutibacter daejeonensis"],["NCBITaxon%3A686800","Aerolutibacter ruishenii"],["NCBITaxon%3A2010829","Aerosticca soli"],["NCBITaxon%3A2707022","Aerosticca sp."],["NCBITaxon%3A380628","Agrilutibacter niabensis"],["NCBITaxon%3A2763317","Agrilutibacter solisilvae"]]},{"id":"NCBITaxon:469","l":"Acinetobacter","na":1,"nb":6769,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["NCBITaxon%3A1673609","Acinetobacter albensis"],["NCBITaxon%3A2942470","Acinetobacter amyesii"],["NCBITaxon%3A363192","Acinetobacter antiviralis"],["NCBITaxon%3A1229165","Acinetobacter apis"],["NCBITaxon%3A2605383","Acinetobacter baretiae"],["NCBITaxon%3A470","Acinetobacter baumannii"]]},{"id":"NCBITaxon:135619","l":"Oceanospirillales","na":1,"nb":6491,"a":[["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"]],"b":[["NCBITaxon%3A2717337","Aestuariirhabdaceae bacterium"],["NCBITaxon%3A2918751","Aestuariirhabdus haliotis"],["NCBITaxon%3A2528527","Aestuariirhabdus litorea"],["NCBITaxon%3A2717333","Aestuariirhabdus sp."],["NCBITaxon%3A3417462","Aestuariirhabdus sp. LZHN29"],["NCBITaxon%3A574349","Aidingimonas halophila"]]},{"id":"NCBITaxon:2759","l":"Eukaryota","na":1,"nb":6243,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"]],"b":[["NCBITaxon%3A1450171","Aaosphaeria arxii"],["NCBITaxon%3A749232","Abeoforma whisleri"],["NCBITaxon%3A137743","Abortiporus biennis"],["NCBITaxon%3A420591","Absidia anomala"],["NCBITaxon%3A90261","Absidia caerulea"],["NCBITaxon%3A327741","Absidia californica"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":1,"nb":5776,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["NCBITaxon%3A54736","Salmonella bongori"],["NCBITaxon%3A218493","Salmonella bongori NCTC 12419"],["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59203","Salmonella enterica subsp. arizonae"],["NCBITaxon%3A2577126","Salmonella enterica subsp. arizonae serovar 11:z4,z23:-"],["NCBITaxon%3A2577127","Salmonella enterica subsp. arizonae serovar 13,22:z4,z23:-"]]},{"id":"NCBITaxon:561","l":"Escherichia","na":1,"nb":5589,"a":[["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"]],"b":[["NCBITaxon%3A259276","cf. Escherichia SAR-1"],["NCBITaxon%3A2562891","Escherichia alba"],["NCBITaxon%3A208962","Escherichia albertii"],["NCBITaxon%3A550692","Escherichia albertii B090"],["NCBITaxon%3A550693","Escherichia albertii B156"],["NCBITaxon%3A1440052","Escherichia albertii KF1"]]},{"id":"NCBITaxon:4751","l":"Fungi","na":1,"nb":5527,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["NCBITaxon%3A1450171","Aaosphaeria arxii"],["NCBITaxon%3A137743","Abortiporus biennis"],["NCBITaxon%3A420591","Absidia anomala"],["NCBITaxon%3A90261","Absidia caerulea"],["NCBITaxon%3A327741","Absidia californica"],["NCBITaxon%3A420592","Absidia cuneospora"]]},{"id":"NCBITaxon:1301","l":"Streptococcus","na":1,"nb":4599,"a":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]],"b":[["NCBITaxon%3A2838763","Candidatus Streptococcus faecavium"],["NCBITaxon%3A3711814","Candidatus Streptococcus gullae"],["NCBITaxon%3A2962908","Candidatus Streptococcus sp. bin.001"],["NCBITaxon%3A33945","Enterococcus avium"],["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A1358","Lactococcus lactis"]]},{"id":"NCBITaxon:1350","l":"Enterococcus","na":1,"nb":4515,"a":[["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"]],"b":[["NCBITaxon%3A2838561","Candidatus Enterococcus avicola"],["NCBITaxon%3A1834193","Candidatus Enterococcus clewellii"],["NCBITaxon%3A2815329","Candidatus Enterococcus courvalinii"],["NCBITaxon%3A1834192","Candidatus Enterococcus dunnyi"],["NCBITaxon%3A2815324","Candidatus Enterococcus ferrettii"],["NCBITaxon%3A1857217","Candidatus Enterococcus huntleyi"]]},{"id":"NCBITaxon:203691","l":"Spirochaetota","na":1,"nb":3862,"a":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["NCBITaxon%3A46356","Alkalispirochaeta alkalica"],["NCBITaxon%3A942938","Alkalispirochaeta alkalica DSM 8900"],["NCBITaxon%3A159291","Alkalispirochaeta americana"],["NCBITaxon%3A1410329","Alkalispirochaeta cellulosivorans"],["NCBITaxon%3A1329640","Alkalispirochaeta odontotermitis"],["NCBITaxon%3A2024959","Alkalispirochaeta sp."]]},{"id":"NCBITaxon:4890","l":"Ascomycota","na":1,"nb":3631,"a":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["NCBITaxon%3A1450171","Aaosphaeria arxii"],["NCBITaxon%3A1307806","Acarospora strigata"],["NCBITaxon%3A886606","Acephala macrosclerotiorum"],["NCBITaxon%3A1934374","Achaetomiella virescens"],["NCBITaxon%3A79813","Achaetomium macrosporum"],["NCBITaxon%3A43968","Aciculoconidium aculeatum"]]},{"id":"NCBITaxon:2745","l":"Halomonas","na":1,"nb":3499,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["NCBITaxon%3A1107859","Candidatus Halomonas phosphatis"],["NCBITaxon%3A2838617","Candidatus Halomonas stercoripullorum"],["NCBITaxon%3A1897729","Halomonas aestuarii"],["NCBITaxon%3A659123","Halomonas aidingensis"],["NCBITaxon%3A147248","Halomonas alimentaria"],["NCBITaxon%3A1930622","Halomonas alkalicola"]]},{"id":"NCBITaxon:1873","l":"Micromonospora","na":1,"nb":3346,"a":[["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"]],"b":[["NCBITaxon%3A2202421","Micromonospora acroterricola"],["NCBITaxon%3A2911212","Micromonospora alfalfae"],["NCBITaxon%3A1287068","Micromonospora andamanensis"],["NCBITaxon%3A2807623","Micromonospora antibiotica"],["NCBITaxon%3A309046","Micromonospora aquatica"],["NCBITaxon%3A2116518","Micromonospora arborensis"]]},{"id":"NCBITaxon:75682","l":"Oxalobacteraceae","na":1,"nb":3139,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["NCBITaxon%3A1051899","Actimicrobium antarcticum"],["NCBITaxon%3A2792609","Actimicrobium sp."],["NCBITaxon%3A3048606","Actimicrobium sp. CCC2.4"],["NCBITaxon%3A3048616","Actimicrobium sp. CCI2.3"],["NCBITaxon%3A3071708","Actimicrobium sp. GrIS 1.19"],["NCBITaxon%3A1550357","Actimicrobium sp. MsC-12-4CB4-02"]]},{"id":"NCBITaxon:1125","l":"Microcystis","na":1,"nb":2332,"a":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"]],"b":[["NCBITaxon%3A1126","Microcystis aeruginosa"],["NCBITaxon%3A270630","Microcystis aeruginosa 0BB35S02"],["NCBITaxon%3A270631","Microcystis aeruginosa 0BF29S01"],["NCBITaxon%3A270632","Microcystis aeruginosa 0BF29S03"],["NCBITaxon%3A2358142","Microcystis aeruginosa 11-30S32"],["NCBITaxon%3A3113711","Microcystis aeruginosa 1339"]]},{"id":"NCBITaxon:613","l":"Serratia","na":1,"nb":2177,"a":[["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["NCBITaxon%3A3076559","Prodigiosinella aquatilis"],["NCBITaxon%3A28242","secondary symbiont of Acyrthosiphon pisum"],["NCBITaxon%3A1924982","secondary symbiont of Schizolachnus pineti"],["NCBITaxon%3A207488","secondary symbiont type-R of Aphis craccivora"],["NCBITaxon%3A207491","secondary symbiont type-R of Cinara cupressi"],["NCBITaxon%3A207493","secondary symbiont type-R of Cinara tujafilina"]]},{"id":"NCBITaxon:1129","l":"Synechococcus","na":1,"nb":2170,"a":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]],"b":[["NCBITaxon%3A2081909","Anacystis marina"],["NCBITaxon%3A2081929","Anacystis marina UTEX LB 1634"],["NCBITaxon%3A1522304","Candidatus Synechococcus calcipolaris"],["NCBITaxon%3A1497997","Candidatus Synechococcus calcipolaris G9"],["NCBITaxon%3A431041","Candidatus Synechococcus spongiarum"],["NCBITaxon%3A1608213","Candidatus Synechococcus spongiarum 142"]]},{"id":"NCBITaxon:59732","l":"Chryseobacterium","na":1,"nb":2006,"a":[["Wheat_Consortium_C6.html","Wheat Synthetic Consortium C6"]],"b":[["NCBITaxon%3A3121364","Candidatus Chryseobacterium colombiense"],["NCBITaxon%3A3083056","Candidatus Chryseobacterium enterohippi"],["NCBITaxon%3A204089","Candidatus Chryseobacterium massiliense"],["NCBITaxon%3A445211","Candidatus Chryseobacterium massiliensis"],["NCBITaxon%3A1205738","Candidatus Chryseobacterium massiliensis URChM1"],["NCBITaxon%3A226524","Candidatus Chryseobacterium timonense"]]},{"id":"NCBITaxon:74201","l":"Verrucomicrobiota","na":1,"nb":1784,"a":[["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["NCBITaxon%3A2866162","Actomonas aquatica"],["NCBITaxon%3A2909285","Actomonas lomoniglobus"],["NCBITaxon%3A3445636","Actomonas mangrovi"],["NCBITaxon%3A3138695","Actomonas sp."],["NCBITaxon%3A3841136","Actomonas sp. D89-C28Y8"],["NCBITaxon%3A3445637","Actomonas spartinae"]]},{"id":"NCBITaxon:224756","l":"Methanomicrobia","na":1,"nb":1736,"a":[["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"]],"b":[["NCBITaxon%3A2056317","ANME-2 cluster archaeon"],["NCBITaxon%3A98256","archaeon A8.96.42"],["NCBITaxon%3A2971473","Candidatus Alkanophaga liquidiphilum"],["NCBITaxon%3A2971472","Candidatus Alkanophaga volatiphilum"],["NCBITaxon%3A2971454","Candidatus Alkanophagales archaeon"],["NCBITaxon%3A2608793","Candidatus Argoarchaeum ethanivorans"]]},{"id":"NCBITaxon:204441","l":"Rhodospirillales","na":1,"nb":1729,"a":[["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"]],"b":[["NCBITaxon%3A1709002","Aerophototrophica crusticola"],["NCBITaxon%3A2811398","Aerophototrophica sp."],["NCBITaxon%3A2775080","Aestuariispira ectoiniformans"],["NCBITaxon%3A1461337","Aestuariispira insulae"],["NCBITaxon%3A1872406","Aestuariispira sp."],["NCBITaxon%3A2164067","Algihabitans albus"]]},{"id":"NCBITaxon:1269","l":"Micrococcus","na":1,"nb":1469,"a":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["NCBITaxon%3A1871615","Dermacoccus sp."],["NCBITaxon%3A1275","Kocuria rosea"],["NCBITaxon%3A29377","Micrococcus aerogenes"],["NCBITaxon%3A306270","Micrococcus alkanovora"],["NCBITaxon%3A1391911","Micrococcus aloeverae"],["NCBITaxon%3A86171","Micrococcus antarcticus"]]},{"id":"NCBITaxon:651137","l":"Nitrososphaerota","na":1,"nb":1257,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]],"b":[["NCBITaxon%3A3693715","Acidarchaeum fankouense (SeqCode)"],["NCBITaxon%3A2528703","Aigarchaeota archaeon"],["NCBITaxon%3A1052838","Aigarchaeota archaeon JGI 0000001-A7"],["NCBITaxon%3A1052839","Aigarchaeota archaeon JGI 0000001-B8"],["NCBITaxon%3A1052841","Aigarchaeota archaeon JGI 0000001-H6"],["NCBITaxon%3A1052823","Aigarchaeota archaeon SCGC AAA471-A16"]]},{"id":"NCBITaxon:226","l":"Alteromonas","na":1,"nb":1246,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["NCBITaxon%3A1892904","Alteromonas abrolhosensis"],["NCBITaxon%3A1938339","Alteromonas aestuariivivens"],["NCBITaxon%3A105692","Alteromonas agarilytica"],["NCBITaxon%3A3410268","Alteromonas algae"],["NCBITaxon%3A135000","Alteromonas alvinellae"],["NCBITaxon%3A2803813","Alteromonas antoniana"]]},{"id":"NCBITaxon:47251","l":"Leptolyngbya","na":1,"nb":1210,"a":[["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]],"b":[["NCBITaxon%3A2653193","cf. Leptolyngbya sp. CCNUM2"],["NCBITaxon%3A377165","cf. Leptolyngbya sp. Greenland_10"],["NCBITaxon%3A377164","cf. Leptolyngbya sp. Greenland_9"],["NCBITaxon%3A2675591","cf. Leptolyngbya sp. PKUAC-SCTE412"],["NCBITaxon%3A2675592","cf. Leptolyngbya sp. PKUAC-SCTE413"],["NCBITaxon%3A2675593","cf. Leptolyngbya sp. PKUAC-SCTE811"]]},{"id":"NCBITaxon:171552","l":"Prevotellaceae","na":1,"nb":1003,"a":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]],"b":[["NCBITaxon%3A671218","Alloprevotella rava"],["NCBITaxon%3A524034","Alloprevotella rava F0020"],["NCBITaxon%3A679199","Alloprevotella rava F0323"],["NCBITaxon%3A1872471","Alloprevotella sp."],["NCBITaxon%3A2338072","Alloprevotella sp. A1798"],["NCBITaxon%3A2594464","Alloprevotella sp. CON1"]]},{"id":"NCBITaxon:1163","l":"Anabaena","na":1,"nb":988,"a":[["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"]],"b":[["NCBITaxon%3A212361","Anabaena aequalis"],["NCBITaxon%3A732138","Anabaena aequalis ACCS 089"],["NCBITaxon%3A264684","Anabaena augstumalis"],["NCBITaxon%3A436026","Anabaena augstumalis A802"],["NCBITaxon%3A1217902","Anabaena augstumalis CA2a-1"],["NCBITaxon%3A1940708","Anabaena augstumalis I013-0007"]]},{"id":"NCBITaxon:2818505","l":"Myxococcota","na":1,"nb":970,"a":[["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"]],"b":[["NCBITaxon%3A888830","Aetherobacter fasciculatus"],["NCBITaxon%3A888831","Aetherobacter rufus"],["NCBITaxon%3A2022431","Aetherobacter sp."],["NCBITaxon%3A888842","Aetherobacter sp. SBSr001"],["NCBITaxon%3A888843","Aetherobacter sp. SBSr008"],["NCBITaxon%3A1450165","Aggregicoccus edonensis"]]},{"id":"NCBITaxon:48736","l":"Ralstonia","na":1,"nb":906,"a":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]],"b":[["NCBITaxon%3A1944648","blood disease bacterium A2-HR MARDI"],["NCBITaxon%3A213608","blood disease bacterium BananaE"],["NCBITaxon%3A297304","blood disease bacterium JT656"],["NCBITaxon%3A297303","blood disease bacterium JT657"],["NCBITaxon%3A40803","blood disease bacterium R223"],["NCBITaxon%3A741978","blood disease bacterium R229"]]},{"id":"NCBITaxon:106589","l":"Cupriavidus","na":1,"nb":878,"a":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]],"b":[["NCBITaxon%3A1001822","Cupriavidus agavae"],["NCBITaxon%3A942866","Cupriavidus alkaliphilus"],["NCBITaxon%3A68895","Cupriavidus basilensis"],["NCBITaxon%3A1200775","Cupriavidus basilensis B-8"],["NCBITaxon%3A1127483","Cupriavidus basilensis OR16"],["NCBITaxon%3A151783","Cupriavidus campinensis"]]},{"id":"NCBITaxon:1847","l":"Pseudonocardia","na":1,"nb":850,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["NCBITaxon%3A2792008","Pseudonocardia abyssalis"],["NCBITaxon%3A2724939","Pseudonocardia acidicola"],["NCBITaxon%3A648754","Pseudonocardia adelaidensis"],["NCBITaxon%3A367279","Pseudonocardia ailaonensis"],["NCBITaxon%3A75291","Pseudonocardia alaniniphila"],["NCBITaxon%3A33907","Pseudonocardia alni"]]},{"id":"NCBITaxon:34037","l":"Rahnella","na":1,"nb":846,"a":[["SynCom_Pseudomonas_Rahnella_Artemisia_Phytoremediation.html","Pseudomonas-Rahnella native rhizosphere SynCom for Artemisia argyi phytoremediation"]],"b":[["NCBITaxon%3A2703885","Rahnella aceris"],["NCBITaxon%3A34038","Rahnella aquatilis"],["NCBITaxon%3A745277","Rahnella aquatilis CIP 78.65 = ATCC 33071"],["NCBITaxon%3A1151116","Rahnella aquatilis HX2"],["NCBITaxon%3A2816248","Rahnella bonaserana"],["NCBITaxon%3A1510573","Rahnella bruchi"]]},{"id":"NCBITaxon:507","l":"Alcaligenes","na":1,"nb":772,"a":[["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"]],"b":[["NCBITaxon%3A134375","Achromobacter sp."],["NCBITaxon%3A2582914","Alcaligenes ammonioxydans"],["NCBITaxon%3A323284","Alcaligenes aquatilis"],["NCBITaxon%3A1929088","Alcaligenes endophyticus"],["NCBITaxon%3A511","Alcaligenes faecalis"],["NCBITaxon%3A1255592","Alcaligenes faecalis 2L10"]]},{"id":"NCBITaxon:2283796","l":"Thermoplasmatota","na":1,"nb":743,"a":[["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"]],"b":[["NCBITaxon%3A507754","Acidiplasma aeolicum"],["NCBITaxon%3A312540","Acidiplasma cupricumulans"],["NCBITaxon%3A1295373","Acidiplasma cupricumulans JCM 13668 = DSM 16651"],["NCBITaxon%3A1872114","Acidiplasma sp."],["NCBITaxon%3A3402690","Acidiplasma sp. BR-02"],["NCBITaxon%3A1293648","Acidiplasma sp. MBA-1"]]},{"id":"NCBITaxon:838","l":"Prevotella","na":1,"nb":735,"a":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]],"b":[["NCBITaxon%3A2838738","Candidatus Prevotella avicola"],["NCBITaxon%3A3083129","Candidatus Prevotella equi"],["NCBITaxon%3A2838739","Candidatus Prevotella intestinigallinarum"],["NCBITaxon%3A2838740","Candidatus Prevotella stercoripullorum"],["NCBITaxon%3A81582","Prevotella aff. ruminicola Tc2-24"],["NCBITaxon%3A419005","Prevotella amnii"]]},{"id":"NCBITaxon:28453","l":"Sphingobacterium","na":1,"nb":666,"a":[["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"]],"b":[["NCBITaxon%3A2838758","Candidatus Sphingobacterium stercorigallinarum"],["NCBITaxon%3A2838759","Candidatus Sphingobacterium stercoripullorum"],["NCBITaxon%3A797292","Sphingobacterium alimentarium"],["NCBITaxon%3A1874115","Sphingobacterium alkalisoli"],["NCBITaxon%3A415956","Sphingobacterium allocomposti"],["NCBITaxon%3A493780","Sphingobacterium anhuiense"]]},{"id":"NCBITaxon:2433","l":"Roseobacter","na":1,"nb":652,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["NCBITaxon%3A196799","Arctic sea ice bacterium ARK10233"],["NCBITaxon%3A197015","Arctic sea ice bacterium ARK10278"],["NCBITaxon%3A2602289","Roseobacter cerasinus"],["NCBITaxon%3A3467295","Roseobacter cerffii"],["NCBITaxon%3A2434","Roseobacter denitrificans"],["NCBITaxon%3A375451","Roseobacter denitrificans OCh 114"]]},{"id":"NCBITaxon:110932","l":"Leifsonia","na":1,"nb":647,"a":[["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"]],"b":[["NCBITaxon%3A1638198","Candidatus Leifsonia sp. Metals-1"],["NCBITaxon%3A1638199","Candidatus Leifsonia sp. Metals-2"],["NCBITaxon%3A494024","Leifsonia antarctica"],["NCBITaxon%3A144185","Leifsonia aquatica"],["NCBITaxon%3A1358026","Leifsonia aquatica ATCC 14665"],["NCBITaxon%3A1416759","Leifsonia aquatica H1aii"]]},{"id":"NCBITaxon:1707","l":"Cellulomonas","na":1,"nb":645,"a":[["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"]],"b":[["NCBITaxon%3A1667","Arthrobacter sp."],["NCBITaxon%3A515326","Cellulomonas aerilata"],["NCBITaxon%3A3053467","Cellulomonas alba"],["NCBITaxon%3A2071633","Cellulomonas algicola"],["NCBITaxon%3A2762242","Cellulomonas avistercoris"],["NCBITaxon%3A1709","Cellulomonas biazotea"]]},{"id":"NCBITaxon:183925","l":"Methanobacteria","na":1,"nb":614,"a":[["Thermophilic_ExSitu_Biomethanation_Mixed_Culture.html","Thermophilic Ex-Situ Biomethanation Mixed Culture"]],"b":[["NCBITaxon%3A98257","archaeon A2.95.53"],["NCBITaxon%3A98259","archaeon A8.96.15"],["NCBITaxon%3A98258","archaeon A9.96.64"],["NCBITaxon%3A2006182","Candidatus Methanobinarius endosymbioticus"],["NCBITaxon%3A3110950","Candidatus Methanoflexus mossambicus"],["NCBITaxon%3A3110951","Candidatus Methanorudis spinitermitis"]]},{"id":"NCBITaxon:1988","l":"Actinomadura","na":1,"nb":562,"a":[["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"]],"b":[["NCBITaxon%3A1819600","Actinomadura adrarensis"],["NCBITaxon%3A406431","Actinomadura alba"],["NCBITaxon%3A1679523","Actinomadura algeriensis"],["NCBITaxon%3A1735446","Actinomadura alkaliterrae"],["NCBITaxon%3A755139","Actinomadura apis"],["NCBITaxon%3A1990","Actinomadura atramentaria"]]},{"id":"NCBITaxon:200918","l":"Thermotogota","na":1,"nb":513,"a":[["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"]],"b":[["NCBITaxon%3A1441386","Athalassotoga saccharophila"],["NCBITaxon%3A2022597","Athalassotoga sp."],["NCBITaxon%3A114589","bacterial str. vp424"],["NCBITaxon%3A114588","bacterial str. vp56"],["NCBITaxon%3A91178","Caldotoga fontana"],["NCBITaxon%3A2969823","Defluviitoga sp."]]},{"id":"NCBITaxon:68","l":"Lysobacter","na":1,"nb":501,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["NCBITaxon%3A488485","Luteimonas marina"],["NCBITaxon%3A1582807","Lysobacter agri"],["NCBITaxon%3A84531","Lysobacter antibioticus"],["NCBITaxon%3A1286308","Lysobacter antibioticus HS124"],["NCBITaxon%3A2795387","Lysobacter arenosi"],["NCBITaxon%3A3038776","Lysobacter arvi"]]},{"id":"NCBITaxon:83618","l":"Pseudoxanthomonas","na":1,"nb":475,"a":[["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"]],"b":[["NCBITaxon%3A1844278","Pseudoxanthomonas arseniciresistens"],["NCBITaxon%3A2782537","Pseudoxanthomonas beigongshangi"],["NCBITaxon%3A83619","Pseudoxanthomonas broegbernensis"],["NCBITaxon%3A324747","Pseudoxanthomonas byssovorax"],["NCBITaxon%3A2137479","Pseudoxanthomonas composti"],["NCBITaxon%3A266062","Pseudoxanthomonas daejeonensis"]]},{"id":"NCBITaxon:2237","l":"Haloarcula","na":1,"nb":467,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["NCBITaxon%3A337689","Haloarcula algeriensis"],["NCBITaxon%3A396317","Haloarcula amylolytica"],["NCBITaxon%3A1227452","Haloarcula amylolytica JCM 13557"],["NCBITaxon%3A2562280","Haloarcula amylovorans"],["NCBITaxon%3A43776","Haloarcula argentinensis"],["NCBITaxon%3A1230451","Haloarcula argentinensis DSM 12282"]]},{"id":"NCBITaxon:403","l":"Methylococcaceae","na":1,"nb":433,"a":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["NCBITaxon%3A160972","Bathymodiolus symbiont pMMOA-1"],["NCBITaxon%3A2707345","Candidatus Methylobacter favarea"],["NCBITaxon%3A2497749","Candidatus Methylobacter oryzae"],["NCBITaxon%3A3053457","Candidatus Methylobacter titanis"],["NCBITaxon%3A3108543","Candidatus Methylocalor cossyra"],["NCBITaxon%3A2802053","Candidatus Methylomicrobium oryzae"]]},{"id":"NCBITaxon:32011","l":"Methylophilaceae","na":1,"nb":422,"a":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["NCBITaxon%3A3043849","Candidatus Methylolitoribacter marinus"],["NCBITaxon%3A3710421","Candidatus Methylolitoribacter sp."],["NCBITaxon%3A1581557","Candidatus Methylopumilus planktonicus"],["NCBITaxon%3A2588535","Candidatus Methylopumilus rimovensis"],["NCBITaxon%3A2518607","Candidatus Methylopumilus sp."],["NCBITaxon%3A1846164","Candidatus Methylopumilus sp. SH3101B57"]]},{"id":"NCBITaxon:28228","l":"Colwellia","na":1,"nb":379,"a":[["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"]],"b":[["NCBITaxon%3A196835","Arctic sea ice bacterium ARK10102"],["NCBITaxon%3A2267621","Candidatus Colwellia aromaticivorans"],["NCBITaxon%3A1195759","Colwellia aquaemaris"],["NCBITaxon%3A1520782","Colwellia arctica"],["NCBITaxon%3A517723","Colwellia asteriadis"],["NCBITaxon%3A641665","Colwellia chukchiensis"]]},{"id":"NCBITaxon:47420","l":"Hydrogenophaga","na":1,"nb":363,"a":[["Waste_Sludge_Electrofermentation_Biofilm_Suspension_Community.html","Waste-Sludge Electro-Fermentation Biofilm-Suspension Community"]],"b":[["NCBITaxon%3A1854763","Hydrogenophaga aquatica"],["NCBITaxon%3A2610898","Hydrogenophaga aromaticivorans"],["NCBITaxon%3A249409","Hydrogenophaga atypica"],["NCBITaxon%3A439611","Hydrogenophaga bisanensis"],["NCBITaxon%3A2294117","Hydrogenophaga borbori"],["NCBITaxon%3A370976","Hydrogenophaga caeni"]]},{"id":"NCBITaxon:182639","l":"Kribbella","na":1,"nb":328,"a":[["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"]],"b":[["NCBITaxon%3A190197","Kribbella alba"],["NCBITaxon%3A1266829","Kribbella albertanoniae"],["NCBITaxon%3A416017","Kribbella aluminosa"],["NCBITaxon%3A996641","Kribbella amoyensis"],["NCBITaxon%3A190195","Kribbella antibiotica"],["NCBITaxon%3A2512217","Kribbella antiqua"]]},{"id":"NCBITaxon:2222","l":"Methanothrix","na":1,"nb":318,"a":[["Thermophilic_ExSitu_Biomethanation_Mixed_Culture.html","Thermophilic Ex-Situ Biomethanation Mixed Culture"]],"b":[["NCBITaxon%3A118058","Methanosaeta sp. AMPB-Zg"],["NCBITaxon%3A1857768","Methanosaeta sp. ARCH"],["NCBITaxon%3A1917477","Methanosaeta sp. ASM2"],["NCBITaxon%3A1917474","Methanosaeta sp. ASO1"],["NCBITaxon%3A1917475","Methanosaeta sp. ASP1-1"],["NCBITaxon%3A1917476","Methanosaeta sp. ASP1-2"]]},{"id":"NCBITaxon:434","l":"Acetobacter","na":1,"nb":309,"a":[["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["NCBITaxon%3A435","Acetobacter aceti"],["NCBITaxon%3A1457393","Acetobacter aceti 1023"],["NCBITaxon%3A663932","Acetobacter aceti ATCC 23746"],["NCBITaxon%3A887700","Acetobacter aceti NBRC 14818"],["NCBITaxon%3A1206747","Acetobacter aceti NRIC 0242"],["NCBITaxon%3A481146","Acetobacter ascendens"]]},{"id":"NCBITaxon:54298","l":"Chroococcidiopsis","na":1,"nb":302,"a":[["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"]],"b":[["NCBITaxon%3A2138304","Chroococcidiopsis bourrellyana"],["NCBITaxon%3A2138305","Chroococcidiopsis bourrellyana NTLRM1"],["NCBITaxon%3A869946","Chroococcidiopsis cf. cubana CCALA 047"],["NCBITaxon%3A171392","Chroococcidiopsis cubana"],["NCBITaxon%3A3024990","Chroococcidiopsis cubana C108"],["NCBITaxon%3A2942199","Chroococcidiopsis cubana C148"]]},{"id":"NCBITaxon:1090","l":"Chlorobiota","na":1,"nb":300,"a":[["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"]],"b":[["NCBITaxon%3A338819","anammox bacterium A-3"],["NCBITaxon%3A1653826","Ancalochloris perfilievii"],["NCBITaxon%3A1872565","Ancalochloris sp."],["NCBITaxon%3A3039321","Candidatus Chlorobium antarcticum"],["NCBITaxon%3A2716876","Candidatus Chlorobium masyuteum"],["NCBITaxon%3A1868324","Candidatus Thermochlorobacter aerophilus"]]},{"id":"NCBITaxon:168934","l":"Thalassospira","na":1,"nb":298,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["NCBITaxon%3A2800829","Candidatus Thalassospira pliocenensis"],["NCBITaxon%3A1293890","Thalassospira alkalitolerans"],["NCBITaxon%3A3037796","Thalassospira aquimaris"],["NCBITaxon%3A1528106","Thalassospira australica"],["NCBITaxon%3A1144705","Thalassospira frigidphilosprofundus"],["NCBITaxon%3A1891279","Thalassospira indica"]]},{"id":"NCBITaxon:28100","l":"Phyllobacterium","na":1,"nb":297,"a":[["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A3020828","Candidatus Phyllobacterium onerii"],["NCBITaxon%3A314236","Phyllobacterium bourgognense"],["NCBITaxon%3A314235","Phyllobacterium brassicacearum"],["NCBITaxon%3A2817027","Phyllobacterium calauticae"],["NCBITaxon%3A281785","Phyllobacterium catacumbae"],["NCBITaxon%3A2876082","Phyllobacterium chamaecytisi"]]},{"id":"NCBITaxon:5206","l":"Cryptococcus","na":1,"nb":295,"a":[["Variovorax_Cryptococcus_Vitamin_Mutualism_Microcosm.html","Variovorax-Cryptococcus Vitamin Cross-Feeding Microcosm"]],"b":[["NCBITaxon%3A552467","Cryptococcus bacillisporus"],["NCBITaxon%3A1296109","Cryptococcus bacillisporus CA1280"],["NCBITaxon%3A1296111","Cryptococcus bacillisporus CA1873"],["NCBITaxon%3A1347779","Cryptococcus bacillisporus VGIIIa Mating type alpha"],["NCBITaxon%3A2011032","Cryptococcus cf. gattii"],["NCBITaxon%3A1859122","Cryptococcus decagattii"]]},{"id":"NCBITaxon:766764","l":"Debaryomycetaceae","na":1,"nb":293,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["NCBITaxon%3A43968","Aciculoconidium aculeatum"],["NCBITaxon%3A45518","Yamadazyma aaseri"],["NCBITaxon%3A241526","Candida africana"],["NCBITaxon%3A5476","Candida albicans"],["NCBITaxon%3A1182531","Candida albicans 3153A"],["NCBITaxon%3A148631","[Candida] anglica"]]},{"id":"NCBITaxon:5073","l":"Penicillium","na":1,"nb":290,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["NCBITaxon%3A70094","Penicillium adametzioides"],["NCBITaxon%3A36650","Penicillium aethiopicum"],["NCBITaxon%3A74831","Penicillium albocoremium"],["NCBITaxon%3A1324773","Penicillium alexiae"],["NCBITaxon%3A2998136","Penicillium allaniae"],["NCBITaxon%3A1459053","Penicillium allii"]]},{"id":"NCBITaxon:252356","l":"Maribacter","na":1,"nb":273,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["NCBITaxon%3A1130723","Maribacter aestuarii"],["NCBITaxon%3A3386272","Maribacter algae"],["NCBITaxon%3A3451875","Maribacter algarum (ex Lu et al. 2025) (nom. illeg.)"],["NCBITaxon%3A2578118","Maribacter algarum (ex Zhang et al. 2020)"],["NCBITaxon%3A2498892","Maribacter algicola"],["NCBITaxon%3A505250","Maribacter antarcticus"]]},{"id":"NCBITaxon:1243","l":"Leuconostoc","na":1,"nb":271,"a":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["NCBITaxon%3A3236804","Leuconostoc aquikimchii"],["NCBITaxon%3A1252","Leuconostoc carnosum"],["NCBITaxon%3A1229758","Leuconostoc carnosum JB16"],["NCBITaxon%3A1046593","Leuconostoc carnosum KCTC 3525"],["NCBITaxon%3A33964","Leuconostoc citreum"],["NCBITaxon%3A349519","Leuconostoc citreum KM20"]]},{"id":"NCBITaxon:2239","l":"Halobacterium","na":1,"nb":271,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["NCBITaxon%3A2692200","Halobacterium bonnevillei"],["NCBITaxon%3A1407499","Halobacterium hubeiense"],["NCBITaxon%3A355548","Halobacterium jilantaiense"],["NCBITaxon%3A2039234","Halobacterium litoreum"],["NCBITaxon%3A223182","Halobacterium noricense"],["NCBITaxon%3A1341552","Halobacterium rubrum"]]},{"id":"NCBITaxon:1866885","l":"Mycolicibacterium","na":1,"nb":268,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["NCBITaxon%3A2954114","Candidatus Mycolicibacterium alkanivorans"],["NCBITaxon%3A3023370","Mycobacterium antarcticum"],["NCBITaxon%3A2939269","[Mycobacterium] appelbergii"],["NCBITaxon%3A3238985","[Mycobacterium] bulgaricum"],["NCBITaxon%3A3064286","[Mycobacterium] burgundiense"],["NCBITaxon%3A2600579","[Mycobacterium] fortunisiensis"]]},{"id":"NCBITaxon:74030","l":"Roseovarius","na":1,"nb":262,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["NCBITaxon%3A475083","Roseovarius aestuarii"],["NCBITaxon%3A1888910","Roseovarius aestuariivivens"],["NCBITaxon%3A1247867","Roseovarius albus"],["NCBITaxon%3A1678842","Roseovarius algicolus"],["NCBITaxon%3A2211448","Roseovarius amoyensis"],["NCBITaxon%3A1535313","Roseovarius antarcticus"]]},{"id":"NCBITaxon:189779","l":"Nitrospiraceae","na":1,"nb":260,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"]],"b":[["NCBITaxon%3A3692265","Candidatus Inralta sp."],["NCBITaxon%3A3137712","Candidatus Magnetominusculus dajiuhuensis"],["NCBITaxon%3A2914034","Candidatus Magnetominusculus sp. LBB02"],["NCBITaxon%3A1748249","Candidatus Magnetominusculus xianensis"],["NCBITaxon%3A1609970","Candidatus Magnetovum chiemense"],["NCBITaxon%3A995730","Candidatus Magnetovum mohavense"]]},{"id":"NCBITaxon:213121","l":"Desulfobulbaceae","na":1,"nb":260,"a":[["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"]],"b":[["NCBITaxon%3A3101188","Candidatus Desulfatifera sp."],["NCBITaxon%3A2841691","Candidatus Desulfatifera sulfidica"],["NCBITaxon%3A2841692","Candidatus Desulfobia pelagia"],["NCBITaxon%3A2480839","Candidatus Desulfobulbus rimicarensis"],["NCBITaxon%3A2005002","Candidatus Electronema aureum"],["NCBITaxon%3A3036122","Candidatus Electronema halotolerans"]]},{"id":"NCBITaxon:572511","l":"Blautia","na":1,"nb":249,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["NCBITaxon%3A3133036","Blautia acetica"],["NCBITaxon%3A2981783","Blautia acetigignens"],["NCBITaxon%3A2981782","Blautia ammoniilytica"],["NCBITaxon%3A3133153","Blautia aquisgranensis"],["NCBITaxon%3A1912897","Blautia argi"],["NCBITaxon%3A2696678","Blautia brookingsii"]]},{"id":"NCBITaxon:1142","l":"Synechocystis","na":1,"nb":247,"a":[["Dairy_Wastewater_Algal_Cyanobacterial_Cultivation_Panel.html","Dairy Wastewater Algal-Cyanobacterial Cultivation Panel"]],"b":[["NCBITaxon%3A543824","Synechocystis aquatilis"],["NCBITaxon%3A543825","Synechocystis aquatilis 1LT32S04"],["NCBITaxon%3A1443101","Synechocystis aquatilis C23"],["NCBITaxon%3A1443102","Synechocystis aquatilis C25"],["NCBITaxon%3A1417686","Synechocystis aquatilis I13"],["NCBITaxon%3A1417687","Synechocystis aquatilis I14"]]},{"id":"NCBITaxon:46255","l":"Weissella","na":1,"nb":247,"a":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["NCBITaxon%3A253243","uncultured Weissella sp."],["NCBITaxon%3A1505725","Weissella bombi"],["NCBITaxon%3A759620","Weissella ceti"],["NCBITaxon%3A1238674","Weissella ceti NC36"],["NCBITaxon%3A137591","Weissella cibaria"],["NCBITaxon%3A1255594","Weissella cibaria 3385"]]},{"id":"NCBITaxon:171550","l":"Rikenellaceae","na":1,"nb":241,"a":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]],"b":[["NCBITaxon%3A979970","Acetobacteroides hydrogenigenes"],["NCBITaxon%3A1872095","Acetobacteroides sp."],["NCBITaxon%3A2764708","Acetobacteroides sp. MIZ14"],["NCBITaxon%3A2585118","Alistipes communis"],["NCBITaxon%3A2585119","Alistipes dispar"],["NCBITaxon%3A214856","Alistipes finegoldii"]]},{"id":"NCBITaxon:2172","l":"Methanobrevibacter","na":1,"nb":232,"a":[["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["NCBITaxon%3A243898","endosymbiont 'TS1' of Trimyema compressum"],["NCBITaxon%3A120963","Methanobrevibacter acididurans"],["NCBITaxon%3A39441","Methanobrevibacter arboriphilus"],["NCBITaxon%3A1401244","Methanobrevibacter arboriphilus ANOR1"],["NCBITaxon%3A1300164","Methanobrevibacter arboriphilus JCM 13429 = DSM 1125"],["NCBITaxon%3A1293039","Methanobrevibacter arboriphilus JCM 9315"]]},{"id":"NCBITaxon:1219","l":"Prochlorococcus marinus","na":1,"nb":214,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A379362","environmental samples"],["NCBITaxon%3A1219","Prochlorococcus marinus"],["NCBITaxon%3A2724906","Prochlorococcus marinus 150NLHA"],["NCBITaxon%3A2724907","Prochlorococcus marinus 150SLHA"],["NCBITaxon%3A2724908","Prochlorococcus marinus 150SLHB"],["NCBITaxon%3A1041938","Prochlorococcus marinus bv. HNLC1"]]},{"id":"NCBITaxon:375288","l":"Parabacteroides","na":1,"nb":199,"a":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"]],"b":[["NCBITaxon%3A2838720","Candidatus Parabacteroides faecavium"],["NCBITaxon%3A2838721","Candidatus Parabacteroides intestinavium"],["NCBITaxon%3A2838722","Candidatus Parabacteroides intestinigallinarum"],["NCBITaxon%3A2838723","Candidatus Parabacteroides intestinipullorum"],["NCBITaxon%3A2951805","Parabacteroides absconsus"],["NCBITaxon%3A2290935","Parabacteroides acidifaciens"]]},{"id":"NCBITaxon:67812","l":"Candidatus Omnitrophota","na":1,"nb":196,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]],"b":[["NCBITaxon%3A3041132","Candidatus Aadella gelida"],["NCBITaxon%3A1974748","Candidatus Abzuiibacterium crystallinum"],["NCBITaxon%3A3041133","Candidatus Aceula lacicola"],["NCBITaxon%3A3041134","Candidatus Aceula meridiana"],["NCBITaxon%3A3042653","Candidatus Amyimicrobium silvilacustre"],["NCBITaxon%3A3401993","Candidatus Aquincolibacterium aerophilum"]]},{"id":"NCBITaxon:213119","l":"Desulfobacteraceae","na":1,"nb":194,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"]],"b":[["NCBITaxon%3A318481","Algorimarina butyrica"],["NCBITaxon%3A2487131","Candidatus Desulfarcum epimagneticum"],["NCBITaxon%3A2841694","Candidatus Desulfobacula maris"],["NCBITaxon%3A1817353","Candidatus Magnetananas drummondensis"],["NCBITaxon%3A1463558","Candidatus Magnetananas rongchengensis"],["NCBITaxon%3A1817379","Candidatus Magnetananas sp. SF-1"]]},{"id":"NCBITaxon:970","l":"Selenomonas","na":1,"nb":188,"a":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]],"b":[["NCBITaxon%3A60695","Selenomonas lipolytica"],["NCBITaxon%3A135081","Selenomonas flueggei-like sp. clone AH132"],["NCBITaxon%3A230144","Selenomonas genomosp. C1"],["NCBITaxon%3A230145","Selenomonas genomosp. C2"],["NCBITaxon%3A241557","Selenomonas genomosp. P5"],["NCBITaxon%3A326375","Selenomonas genomosp. P6 oral clone MB3_C41"]]},{"id":"NCBITaxon:119532","l":"Microcoleus vaginatus","na":1,"nb":186,"a":[["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]],"b":[["NCBITaxon%3A2290990","Microcoleus cf. vaginatus Ru-6-12"],["NCBITaxon%3A119532","Microcoleus vaginatus"],["NCBITaxon%3A3034630","Microcoleus vaginatus 98"],["NCBITaxon%3A2493238","Microcoleus vaginatus ACT688"],["NCBITaxon%3A3459536","Microcoleus vaginatus APE406"],["NCBITaxon%3A669364","Microcoleus vaginatus ASU LT04"]]},{"id":"NCBITaxon:1253","l":"Pediococcus","na":1,"nb":186,"a":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["NCBITaxon%3A1872398","Aerococcus sp."],["NCBITaxon%3A51665","Aerococcus urinaeequi"],["NCBITaxon%3A1254","Pediococcus acidilactici"],["NCBITaxon%3A563194","Pediococcus acidilactici 7_4"],["NCBITaxon%3A1384067","Pediococcus acidilactici AGR20"],["NCBITaxon%3A1306952","Pediococcus acidilactici D3"]]},{"id":"NCBITaxon:1033","l":"Afipia","na":1,"nb":182,"a":[["Thiocyanate_Afipia_Thiobacillus_Bioreactor_Community.html","Thiocyanate-Degrading Afipia and Thiobacillus Bioreactor Community"]],"b":[["NCBITaxon%3A151414","Afipia birgiae"],["NCBITaxon%3A1197906","Afipia birgiae 34632"],["NCBITaxon%3A56946","Afipia broomeae"],["NCBITaxon%3A883078","Afipia broomeae ATCC 49717"],["NCBITaxon%3A40137","Afipia carboxidovorans"],["NCBITaxon%3A1031710","Afipia carboxidovorans OM4"]]},{"id":"NCBITaxon:28065","l":"Rhodoferax","na":1,"nb":177,"a":[["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"]],"b":[["NCBITaxon%3A3386181","Candidatus Rhodoferax bjergmarkensis"],["NCBITaxon%3A3386182","Candidatus Rhodoferax mariagerensis"],["NCBITaxon%3A3386180","Candidatus Rhodoferax odensensis"],["NCBITaxon%3A3386179","Candidatus Rhodoferax randersensis"],["NCBITaxon%3A81479","Rhodoferax antarcticus"],["NCBITaxon%3A1111071","Rhodoferax antarcticus ANT.BR"]]},{"id":"NCBITaxon:133","l":"Methylocystis","na":1,"nb":168,"a":[["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"]],"b":[["NCBITaxon%3A3118750","Methylocystis borbori"],["NCBITaxon%3A655015","Methylocystis bryophila"],["NCBITaxon%3A29468","Methylocystis echinoides"],["NCBITaxon%3A391905","Methylocystis heyeri"],["NCBITaxon%3A369798","Methylocystis hirsuta"],["NCBITaxon%3A187303","Methylocystis hydrogenophila"]]},{"id":"NCBITaxon:190323","l":"Plantibacter","na":1,"nb":168,"a":[["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A199710","Plantibacter agrosticola (nom. nud.)"],["NCBITaxon%3A272914","Plantibacter auratus"],["NCBITaxon%3A199709","Plantibacter cousiniae (nom. nud.)"],["NCBITaxon%3A199708","Plantibacter elymi (nom. nud.)"],["NCBITaxon%3A150123","Plantibacter flavus"],["NCBITaxon%3A3423918","Plantibacter lichenum"]]},{"id":"NCBITaxon:61434","l":"Dehalococcoides","na":1,"nb":161,"a":[["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["NCBITaxon%3A257449","Dehalococcoides Family A Group"],["NCBITaxon%3A61435","Dehalococcoides mccartyi"],["NCBITaxon%3A243164","Dehalococcoides mccartyi 195"],["NCBITaxon%3A216389","Dehalococcoides mccartyi BAV1"],["NCBITaxon%3A1193806","Dehalococcoides mccartyi BTF08"],["NCBITaxon%3A255470","Dehalococcoides mccartyi CBDB1"]]},{"id":"NCBITaxon:20","l":"Phenylobacterium","na":1,"nb":156,"a":[["Tomato_Oxylipin_SynCom3.html","Tomato Oxylipin-Protective SynCom3"]],"b":[["NCBITaxon%3A1763816","Phenylobacterium aquaticum"],["NCBITaxon%3A457173","Phenylobacterium composti"],["NCBITaxon%3A1122958","Phenylobacterium composti DSM 19425"],["NCBITaxon%3A1298959","Phenylobacterium conjunctum"],["NCBITaxon%3A1914756","Phenylobacterium deserti"],["NCBITaxon%3A279827","Phenylobacterium falsum"]]},{"id":"NCBITaxon:119977","l":"Acidithiobacillus","na":1,"nb":152,"a":[["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"]],"b":[["NCBITaxon%3A2937799","Acidithiobacillus acidisediminis"],["NCBITaxon%3A119978","Acidithiobacillus albertensis"],["NCBITaxon%3A33059","Acidithiobacillus caldus"],["NCBITaxon%3A637389","Acidithiobacillus caldus ATCC 51756"],["NCBITaxon%3A990288","Acidithiobacillus caldus SM-1"],["NCBITaxon%3A3063952","Acidithiobacillus concretivorus"]]},{"id":"NCBITaxon:1134404","l":"Ignavibacteriota","na":1,"nb":150,"a":[["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"]],"b":[["NCBITaxon%3A3879837","Candidatus Tepidaquicellaceae bacterium"],["NCBITaxon%3A3414687","Candidatus Tepidiaquacella proteinivora"],["NCBITaxon%3A3455485","Candidatus Tepidiaquacellales bacterium"],["NCBITaxon%3A1617411","Candidatus Tepidiaquacellales bacterium OLB4/UTCHB1"],["NCBITaxon%3A1617412","Candidatus Tepidiaquacellales bacterium OLB5"],["NCBITaxon%3A1948666","Candidatus Tepidiaquacellales bacterium UBA2330"]]},{"id":"NCBITaxon:441","l":"Gluconobacter","na":1,"nb":143,"a":[["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"]],"b":[["NCBITaxon%3A2662454","Gluconobacter aidae"],["NCBITaxon%3A318683","Gluconobacter albidus"],["NCBITaxon%3A1307944","Gluconobacter albidus NBRC 3250"],["NCBITaxon%3A2728101","Gluconobacter cadivus"],["NCBITaxon%3A1379734","Gluconobacter cerevisiae"],["NCBITaxon%3A38307","Gluconobacter cerinus"]]},{"id":"NCBITaxon:84565","l":"Sodalis","na":1,"nb":139,"a":[["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"]],"b":[["NCBITaxon%3A2812662","Candidatus Sodalis endolongispinus"],["NCBITaxon%3A1173031","Candidatus Sodalis melophagi"],["NCBITaxon%3A1486991","Candidatus Sodalis pierantonii"],["NCBITaxon%3A2342","Candidatus Sodalis pierantonii str. SOPE"],["NCBITaxon%3A1922216","Candidatus Sodalis sp. SoCistrobi"],["NCBITaxon%3A51226","Glossina austeni S-endosymbiont"]]},{"id":"NCBITaxon:82976","l":"Buttiauxella","na":1,"nb":138,"a":[["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A82977","Buttiauxella agrestis"],["NCBITaxon%3A1006004","Buttiauxella agrestis ATCC 33320"],["NCBITaxon%3A82988","Buttiauxella brennerae"],["NCBITaxon%3A1354251","Buttiauxella brennerae ATCC 51605"],["NCBITaxon%3A2010264","Buttiauxella chrysanthemi"],["NCBITaxon%3A2904524","Buttiauxella cochleicola"]]},{"id":"NCBITaxon:111500","l":"Allomuricauda","na":1,"nb":137,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["NCBITaxon%3A192149","Allomuricauda sp."],["NCBITaxon%3A396072","Allomuricauda sp. 1-5C"],["NCBITaxon%3A501808","Allomuricauda sp. 2PR55-3"],["NCBITaxon%3A287555","Allomuricauda sp. 3IX/A02/243"],["NCBITaxon%3A1701315","Allomuricauda sp. 5M7.13"],["NCBITaxon%3A287532","Allomuricauda sp. 7IX/A01/155"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":1,"nb":124,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["NCBITaxon%3A1748","Acidipropionibacterium acidipropionici"],["NCBITaxon%3A1171373","Acidipropionibacterium acidipropionici ATCC 4875"],["NCBITaxon%3A1750","Arachnia propionica"],["NCBITaxon%3A38288","Corynebacterium genitalium"],["NCBITaxon%3A585529","Corynebacterium genitalium ATCC 33030"],["NCBITaxon%3A1747","Cutibacterium acnes"]]},{"id":"NCBITaxon:2836","l":"Bacillariophyta","na":1,"nb":122,"a":[["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]],"b":[["NCBITaxon%3A451788","Acanthoceras zachariasii"],["NCBITaxon%3A431333","Achnanthidium minutissimum"],["NCBITaxon%3A49231","Actinocyclus curvatulus"],["NCBITaxon%3A265554","Amphora coffeiformis"],["NCBITaxon%3A1155433","Arcocellulus cornucervis"],["NCBITaxon%3A210441","Asterionella formosa"]]},{"id":"NCBITaxon:416","l":"Methylomonas","na":1,"nb":122,"a":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["NCBITaxon%3A1854563","Methylomonas albis"],["NCBITaxon%3A46896","Methylomonas aminofaciens"],["NCBITaxon%3A39771","Methylomonas aurantiaca"],["NCBITaxon%3A2952224","Methylomonas aurea"],["NCBITaxon%3A3045149","Methylomonas defluvii"],["NCBITaxon%3A1538553","Methylomonas denitrificans"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":1,"nb":118,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["NCBITaxon%3A69966","Macrococcoides caseolyticum"],["NCBITaxon%3A1822","Nocardia vaccinii"],["NCBITaxon%3A1210098","Nocardia vaccinii NBRC 15922"],["NCBITaxon%3A1282","Staphylococcus epidermidis"],["NCBITaxon%3A1235440","Staphylococcus epidermidis 12142587"],["NCBITaxon%3A1000590","Staphylococcus epidermidis 14.1.R1.SE"]]},{"id":"NCBITaxon:245876","l":"Nitratireductor","na":1,"nb":116,"a":[["Nitratireductor_Gordonia_Z123_LDPE_Degradation_SynCom.html","Nitratireductor-Gordonia Z123 LDPE-Degradation SynCom"]],"b":[["NCBITaxon%3A1735103","Nitratireductor aestuarii"],["NCBITaxon%3A2448161","Nitratireductor alexandrii"],["NCBITaxon%3A204799","Nitratireductor aquibiodomus"],["NCBITaxon%3A1231185","Nitratireductor aquibiodomus NL21 = JCM 21793"],["NCBITaxon%3A1189611","Nitratireductor aquibiodomus RA22"],["NCBITaxon%3A889300","Nitratireductor aquimarinus"]]},{"id":"NCBITaxon:1935183","l":"Promethearchaeati","na":1,"nb":115,"a":[["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"]],"b":[["NCBITaxon%3A1655639","archaeon Loki2/3"],["NCBITaxon%3A3107042","Candidatus Asgardarchaeales archaeon"],["NCBITaxon%3A3107043","Candidatus Asgardarchaeia archaeon"],["NCBITaxon%3A3163616","Candidatus Asgardarchaeum abyssi"],["NCBITaxon%3A3067292","Candidatus Asgardarchaeum californiense"],["NCBITaxon%3A3101517","Candidatus Asgardarchaeum sp."]]},{"id":"GTDB:s__Citrobacter_freundii","l":"","na":1,"nb":109,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["NCBITaxon%3A546","Citrobacter freundii"],["NCBITaxon%3A1006003","Citrobacter freundii ATCC 8090 = MTCC 1658 = NBRC 12681"],["NCBITaxon%3A3025079","Citrobacter freundii complex sp. 2022EL-00793"],["NCBITaxon%3A2994611","Citrobacter freundii complex sp. 2022EL-00822"],["NCBITaxon%3A2994610","Citrobacter freundii complex sp. 2022EL-00971"],["NCBITaxon%3A2994609","Citrobacter freundii complex sp. 2022EL-00972"]]},{"id":"GTDB:s__Citrobacter_braakii","l":"","na":1,"nb":105,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["NCBITaxon%3A35703","Citrobacter amalonaticus"],["NCBITaxon%3A57706","Citrobacter braakii"],["NCBITaxon%3A546","Citrobacter freundii"],["NCBITaxon%3A2077147","Citrobacter freundii complex sp. CFNIH3"],["NCBITaxon%3A2080671","Citrobacter freundii complex sp. CFNIH5"],["NCBITaxon%3A670484","Citrobacter freundii str. ballerup 7851/39"]]},{"id":"NCBITaxon:255204","l":"Pseudoclavibacter","na":1,"nb":105,"a":[["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"]],"b":[["NCBITaxon%3A272239","Gulosibacter bifidus"],["NCBITaxon%3A272240","Gulosibacter faecalis"],["NCBITaxon%3A272241","Pseudoclavibacter albus"],["NCBITaxon%3A908846","Pseudoclavibacter caeni"],["NCBITaxon%3A587635","Pseudoclavibacter chungangensis"],["NCBITaxon%3A1778590","Pseudoclavibacter endophyticus"]]},{"id":"NCBITaxon:404432","l":"Salinicola","na":1,"nb":103,"a":[["Pelagerythrobacter_Salinicola_PES_Pyrene_Degradation_SynCom.html","Pelagerythrobacter-Salinicola PES Pyrene-Degradation SynCom"]],"b":[["NCBITaxon%3A1541440","Salinicola acroporae"],["NCBITaxon%3A1949082","Salinicola aestuarinus"],["NCBITaxon%3A2916836","Salinicola avicenniae"],["NCBITaxon%3A2606937","Salinicola corii"],["NCBITaxon%3A1949083","Salinicola endophyticus"],["NCBITaxon%3A1949081","Salinicola halimionae"]]},{"id":"NCBITaxon:1501433","l":"Kamptonema","na":1,"nb":101,"a":[["Microalgae_Cyanobacteria_Bioactive_Peptide_Consortia.html","Microalgae-Cyanobacteria Bioactive Peptide Consortia"]],"b":[["NCBITaxon%3A92934","Kamptonema animale"],["NCBITaxon%3A1892029","Kamptonema animale 48et"],["NCBITaxon%3A2930505","Kamptonema animale BEA 0982B"],["NCBITaxon%3A1546116","Kamptonema animale BTA258"],["NCBITaxon%3A1443097","Kamptonema animale C5"],["NCBITaxon%3A499848","Kamptonema animale CCALA 138"]]},{"id":"NCBITaxon:906","l":"Megasphaera","na":1,"nb":98,"a":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]],"b":[["NCBITaxon%3A219650","environmental samples"],["NCBITaxon%3A2981791","Megasphaera butyrica"],["NCBITaxon%3A39029","Megasphaera cerevisiae"],["NCBITaxon%3A1122219","Megasphaera cerevisiae DSM 20462"],["NCBITaxon%3A1981790","Megasphaera cf. elsdenii"],["NCBITaxon%3A1852379","Megasphaera coli"]]},{"id":"NCBITaxon:1434011","l":"Komagataeibacter","na":1,"nb":94,"a":[["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"]],"b":[["NCBITaxon%3A1932662","Komagataeibacter diospyri"],["NCBITaxon%3A33995","Komagataeibacter europaeus"],["NCBITaxon%3A940285","Komagataeibacter europaeus 5P3"],["NCBITaxon%3A940284","Komagataeibacter europaeus LMG 18494"],["NCBITaxon%3A940283","Komagataeibacter europaeus LMG 18890"],["NCBITaxon%3A1234669","Komagataeibacter europaeus NBRC 3261"]]},{"id":"NCBITaxon:76890","l":"Asticcacaulis","na":1,"nb":94,"a":[["Tomato_Oxylipin_SynCom3.html","Tomato Oxylipin-Protective SynCom3"]],"b":[["NCBITaxon%3A2984212","Asticcacaulis aquaticus"],["NCBITaxon%3A347481","Asticcacaulis benevestitus"],["NCBITaxon%3A1121022","Asticcacaulis benevestitus DSM 16100 = ATCC BAA-896"],["NCBITaxon%3A76891","Asticcacaulis biprosthecium"],["NCBITaxon%3A715226","Asticcacaulis biprosthecium C19"],["NCBITaxon%3A3040349","Asticcacaulis carbonis"]]},{"id":"NCBITaxon:1179","l":"Desmonostoc muscorum","na":1,"nb":85,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["NCBITaxon%3A1179","Desmonostoc muscorum"],["NCBITaxon%3A1887616","Desmonostoc muscorum 9a"],["NCBITaxon%3A2493151","Desmonostoc muscorum ACSSI 046"],["NCBITaxon%3A1977323","Desmonostoc muscorum ACSSI 091"],["NCBITaxon%3A1977325","Desmonostoc muscorum ACSSI 149"],["NCBITaxon%3A3735077","Desmonostoc muscorum AUR1017"]]},{"id":"NCBITaxon:145260","l":"Methanothermobacter","na":1,"nb":85,"a":[["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"]],"b":[["NCBITaxon%3A1045764","Methanothermobacter crinale"],["NCBITaxon%3A49339","Methanothermobacter defluvii"],["NCBITaxon%3A145263","Methanothermobacter marburgensis"],["NCBITaxon%3A79929","Methanothermobacter marburgensis str. Marburg"],["NCBITaxon%3A1884223","Methanothermobacter sp."],["NCBITaxon%3A866790","Methanothermobacter sp. CaT2"]]},{"id":"NCBITaxon:56112","l":"Dehalobacter","na":1,"nb":82,"a":[["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]],"b":[["NCBITaxon%3A3401927","Candidatus Dehalobacter alkaniphilus"],["NCBITaxon%3A3683355","Candidatus Dehalobacter sp. J1"],["NCBITaxon%3A55583","Dehalobacter restrictus"],["NCBITaxon%3A871738","Dehalobacter restrictus DSM 9455"],["NCBITaxon%3A1962289","Dehalobacter sp."],["NCBITaxon%3A2070364","Dehalobacter sp. 12DCB1"]]},{"id":"NCBITaxon:16","l":"Methylophilus","na":1,"nb":81,"a":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["NCBITaxon%3A1971610","Methylophilus aquaticus"],["NCBITaxon%3A640084","Methylophilus flavus"],["NCBITaxon%3A214633","Methylophilus freyburgensis"],["NCBITaxon%3A752553","Methylophilus glucosoxydans"],["NCBITaxon%3A45393","Methylophilus leisingeri"],["NCBITaxon%3A640108","Methylophilus luteus"]]},{"id":"NCBITaxon:133925","l":"Olsenella","na":1,"nb":79,"a":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["NCBITaxon%3A2838707","Candidatus Olsenella avicola"],["NCBITaxon%3A2838708","Candidatus Olsenella avistercoris"],["NCBITaxon%3A2838709","Candidatus Olsenella excrementavium"],["NCBITaxon%3A2838710","Candidatus Olsenella excrementigallinarum"],["NCBITaxon%3A2838711","Candidatus Olsenella pullicola"],["NCBITaxon%3A2838712","Candidatus Olsenella pullistercoris"]]},{"id":"NCBITaxon:86795","l":"Marmoricola","na":1,"nb":77,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["NCBITaxon%3A2040280","Marmoricola endophyticus"],["NCBITaxon%3A1645666","Marmoricola silvestris"],["NCBITaxon%3A1692016","Marmoricola soli"],["NCBITaxon%3A1909296","Marmoricola sp."],["NCBITaxon%3A476901","Marmoricola sp. BAC242"],["NCBITaxon%3A1638098","Marmoricola sp. BN130122"]]},{"id":"NCBITaxon:204476","l":"Labrys","na":1,"nb":76,"a":[["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["NCBITaxon%3A400769","Labrys ginsengisoli"],["NCBITaxon%3A298598","Labrys methylaminiphilus"],["NCBITaxon%3A1096091","Labrys methylaminiphilus JLW10"],["NCBITaxon%3A3404917","Labrys methylaminiphilus subsp. lupini"],["NCBITaxon%3A346912","Labrys miyagiensis"],["NCBITaxon%3A217067","Labrys monachus"]]},{"id":"GTDB:s__Bacillus_altitudinis","l":"","na":1,"nb":72,"a":[["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"]],"b":[["NCBITaxon%3A115547","uncultured archaeon"],["NCBITaxon%3A293388","Bacillus aerius"],["NCBITaxon%3A293389","Bacillus aerophilus"],["NCBITaxon%3A293387","Bacillus altitudinis"],["NCBITaxon%3A1178544","Bacillus altitudinis 41KF2b"],["NCBITaxon%3A1326972","Bacillus altitudinis A23-8"]]},{"id":"GTDB:s__Bacillus_safensis","l":"","na":1,"nb":70,"a":[["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"]],"b":[["NCBITaxon%3A1889774","Bacillaceae bacterium"],["NCBITaxon%3A293389","Bacillus aerophilus"],["NCBITaxon%3A1408","Bacillus pumilus"],["NCBITaxon%3A561879","Bacillus safensis"],["NCBITaxon%3A1178541","Bacillus safensis FO-36b"],["NCBITaxon%3A1982610","Bacillus safensis subsp. osmophilus"]]},{"id":"NCBITaxon:862","l":"Syntrophomonas","na":1,"nb":68,"a":[["Waste_Sludge_Electrofermentation_Biofilm_Suspension_Community.html","Waste-Sludge Electro-Fermentation Biofilm-Suspension Community"]],"b":[["NCBITaxon%3A2082","Syntrophomonas bryantii"],["NCBITaxon%3A382673","Syntrophomonas cellicola"],["NCBITaxon%3A231025","Syntrophomonas curvata"],["NCBITaxon%3A264446","Syntrophomonas erecta"],["NCBITaxon%3A1123327","Syntrophomonas erecta DSM 16215"],["NCBITaxon%3A370896","Syntrophomonas erecta subsp. sporosyntropha"]]},{"id":"NCBITaxon:1801631","l":"Microcaldota","na":1,"nb":67,"a":[["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"]],"b":[["NCBITaxon%3A2885744","Candidatus Anstonella stagnisolia"],["NCBITaxon%3A2886383","Candidatus Anstonellaceae archaeon"],["NCBITaxon%3A3058027","Candidatus Anstonellales archaeon"],["NCBITaxon%3A2886391","Candidatus Bilamarchaeaceae archaeon"],["NCBITaxon%3A2885759","Candidatus Bilamarchaeum dharawalense"],["NCBITaxon%3A3070761","Candidatus Bilamarchaeum sp."]]},{"id":"NCBITaxon:171673","l":"Inquilinus","na":1,"nb":65,"a":[["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A363840","Inquilinus ginsengisoli"],["NCBITaxon%3A171674","Inquilinus limosus"],["NCBITaxon%3A1122125","Inquilinus limosus DSM 16000"],["NCBITaxon%3A1398085","Inquilinus limosus MP06"],["NCBITaxon%3A1932117","Inquilinus sp."],["NCBITaxon%3A3232975","Inquilinus sp. 2KB_12"]]},{"id":"NCBITaxon:12960","l":"Azoarcus","na":1,"nb":64,"a":[["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"]],"b":[["NCBITaxon%3A90060","Aromatoleum toluolicum"],["NCBITaxon%3A29545","Azoarcus indigens"],["NCBITaxon%3A418699","Azoarcus olearius"],["NCBITaxon%3A29544","Azoarcus sp."],["NCBITaxon%3A2303328","Azoarcus sp. Aa7"],["NCBITaxon%3A356841","Azoarcus sp. AN21"]]},{"id":"NCBITaxon:429","l":"Methylobacter","na":1,"nb":61,"a":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["NCBITaxon%3A2707345","Candidatus Methylobacter favarea"],["NCBITaxon%3A2497749","Candidatus Methylobacter oryzae"],["NCBITaxon%3A3053457","Candidatus Methylobacter titanis"],["NCBITaxon%3A3230117","Methylobacter arcticus"],["NCBITaxon%3A29425","Methylobacter bovis"],["NCBITaxon%3A430","Methylobacter capsulatus"]]},{"id":"NCBITaxon:832","l":"Fibrobacter","na":1,"nb":61,"a":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]],"b":[["NCBITaxon%3A28122","Fibrobacter intestinalis"],["NCBITaxon%3A35828","Fibrobacter sp."],["NCBITaxon%3A3239812","Fibrobacter sp. HC4"],["NCBITaxon%3A1200546","Fibrobacter sp. RM1"],["NCBITaxon%3A1946526","Fibrobacter sp. UBA1313"],["NCBITaxon%3A1946527","Fibrobacter sp. UBA1717"]]},{"id":"GTDB:s__Lacticaseibacillus_paracasei","l":"","na":1,"nb":60,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["NCBITaxon%3A1582","Lacticaseibacillus casei"],["NCBITaxon%3A1051650","Lacticaseibacillus casei 12A"],["NCBITaxon%3A1051651","Lacticaseibacillus casei 21/1"],["NCBITaxon%3A1051653","Lacticaseibacillus casei A2-362"],["NCBITaxon%3A1423732","Lacticaseibacillus casei DSM 20011 = JCM 1134 = ATCC 393"],["NCBITaxon%3A1051661","Lacticaseibacillus casei UW4"]]},{"id":"NCBITaxon:36853","l":"Desulfitobacterium","na":1,"nb":60,"a":[["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["NCBITaxon%3A51616","Desulfitobacterium chlororespirans"],["NCBITaxon%3A1121395","Desulfitobacterium chlororespirans DSM 11544"],["NCBITaxon%3A36854","Desulfitobacterium dehalogenans"],["NCBITaxon%3A756499","Desulfitobacterium dehalogenans ATCC 51507"],["NCBITaxon%3A233055","Desulfitobacterium dichloroeliminans"],["NCBITaxon%3A871963","Desulfitobacterium dichloroeliminans LMG P-21439"]]},{"id":"NCBITaxon:34067","l":"Cycloclasticus","na":1,"nb":59,"a":[["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"]],"b":[["NCBITaxon%3A1871189","Cycloclasticus endosymbiont of Bathymodiolus heckerae"],["NCBITaxon%3A1871190","Cycloclasticus endosymbiont of sponge"],["NCBITaxon%3A46457","Cycloclasticus oligotrophus"],["NCBITaxon%3A34068","Cycloclasticus pugetii"],["NCBITaxon%3A655438","Cycloclasticus pugetii PS-1"],["NCBITaxon%3A2024830","Cycloclasticus sp."]]},{"id":"NCBITaxon:316612","l":"Methylibium","na":1,"nb":57,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["NCBITaxon%3A105560","Methylibium petroleiphilum"],["NCBITaxon%3A420662","Methylibium petroleiphilum PM1"],["NCBITaxon%3A2570323","Methylibium rhizosphaerae"],["NCBITaxon%3A2067992","Methylibium sp."],["NCBITaxon%3A1454797","Methylibium sp. B17"],["NCBITaxon%3A471602","Methylibium sp. BAC113P"]]},{"id":"NCBITaxon:49082","l":"Candidatus Neoarthromitus","na":1,"nb":57,"a":[["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["NCBITaxon%3A2666074","Candidatus Arthromitus sp. GSU"],["NCBITaxon%3A2608943","Candidatus Arthromitus sp. M17"],["NCBITaxon%3A2608944","Candidatus Arthromitus sp. M18"],["NCBITaxon%3A2608945","Candidatus Arthromitus sp. M19"],["NCBITaxon%3A2608946","Candidatus Arthromitus sp. M20"],["NCBITaxon%3A2608947","Candidatus Arthromitus sp. M21"]]},{"id":"GTDB:s__Bradyrhizobium_barranii","l":"","na":1,"nb":56,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"]],"b":[["NCBITaxon%3A2992140","Bradyrhizobium barranii"],["NCBITaxon%3A2819348","Bradyrhizobium barranii subsp. apii"],["NCBITaxon%3A2823807","Bradyrhizobium barranii subsp. barranii"],["NCBITaxon%3A29448","Bradyrhizobium elkanii"],["NCBITaxon%3A375","Bradyrhizobium japonicum"],["NCBITaxon%3A1128253","Bradyrhizobium japonicum CCBAU 15354"]]},{"id":"NCBITaxon:1185873","l":"Desertifilum tharense","na":1,"nb":56,"a":[["Dairy_Wastewater_Algal_Cyanobacterial_Cultivation_Panel.html","Dairy Wastewater Algal-Cyanobacterial Cultivation Panel"]],"b":[["NCBITaxon%3A2841059","Desertifilum dzianense Am4"],["NCBITaxon%3A2219545","Desertifilum dzianense PMC 871.14"],["NCBITaxon%3A2162620","Desertifilum dzianense PMC 872.14"],["NCBITaxon%3A2219546","Desertifilum dzianense PMC 873.14"],["NCBITaxon%3A2219547","Desertifilum dzianense PMC 874.14"],["NCBITaxon%3A2219548","Desertifilum dzianense PMC 875.14"]]},{"id":"NCBITaxon:1597","l":"Lacticaseibacillus paracasei","na":1,"nb":56,"a":[["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["NCBITaxon%3A1582","Lacticaseibacillus casei"],["NCBITaxon%3A1597","Lacticaseibacillus paracasei"],["NCBITaxon%3A321967","Lacticaseibacillus paracasei ATCC 334"],["NCBITaxon%3A1226299","Lacticaseibacillus paracasei COM0101"],["NCBITaxon%3A1446494","Lacticaseibacillus paracasei N1115"],["NCBITaxon%3A1435038","Lacticaseibacillus paracasei NRIC 0644"]]},{"id":"NCBITaxon:1165","l":"Anabaena cylindrica","na":1,"nb":51,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["NCBITaxon%3A136078","Anabaena cf. cylindrica 133"],["NCBITaxon%3A2716356","Anabaena cf. cylindrica BACA0067"],["NCBITaxon%3A136079","Anabaena cf. cylindrica PMC9705"],["NCBITaxon%3A264675","Anabaena cf. cylindrica XP6B"],["NCBITaxon%3A1165","Anabaena cylindrica"],["NCBITaxon%3A425377","Anabaena cylindrica A621"]]},{"id":"GTDB:s__Bacillus_licheniformis","l":"","na":1,"nb":50,"a":[["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A1402","Bacillus licheniformis"],["NCBITaxon%3A1169411","Bacillus licheniformis 10-1-A"],["NCBITaxon%3A1169412","Bacillus licheniformis 5-2-D"],["NCBITaxon%3A1368424","Bacillus licheniformis CG-B52"],["NCBITaxon%3A1232672","Bacillus licheniformis CGMCC 3963"]]},{"id":"NCBITaxon:96","l":"Gallionella","na":1,"nb":50,"a":[["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"]],"b":[["NCBITaxon%3A1796491","Candidatus Gallionella acididurans"],["NCBITaxon%3A370405","Gallionella capsiferriformans"],["NCBITaxon%3A395494","Gallionella capsiferriformans ES-2"],["NCBITaxon%3A97","Gallionella ferruginea"],["NCBITaxon%3A2052161","Gallionella sp."],["NCBITaxon%3A572946","Gallionella sp. enrichment culture clone B15"]]},{"id":"NCBITaxon:179","l":"Leptospirillum","na":1,"nb":48,"a":[["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["NCBITaxon%3A178606","Leptospirillum ferriphilum"],["NCBITaxon%3A1048260","Leptospirillum ferriphilum ML-04"],["NCBITaxon%3A1441628","Leptospirillum ferriphilum YSK"],["NCBITaxon%3A412449","Leptospirillum ferrodiazotrophum"],["NCBITaxon%3A180","Leptospirillum ferrooxidans"],["NCBITaxon%3A1162668","Leptospirillum ferrooxidans C2-3"]]},{"id":"NCBITaxon:327159","l":"Candidatus Accumulibacter","na":1,"nb":47,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"]],"b":[["NCBITaxon%3A2053492","Accumulibacter sp."],["NCBITaxon%3A1860102","Candidatus Accumulibacter aalborgensis"],["NCBITaxon%3A2954378","Candidatus Accumulibacter adiacens"],["NCBITaxon%3A1454001","Candidatus Accumulibacter adjunctus"],["NCBITaxon%3A2954384","Candidatus Accumulibacter affinis"],["NCBITaxon%3A1454003","Candidatus Accumulibacter appositus"]]},{"id":"NCBITaxon:68288","l":"Cyclobacterium","na":1,"nb":46,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["NCBITaxon%3A320787","Cyclobacterium amurskyense"],["NCBITaxon%3A1235754","Cyclobacterium caenipelagi"],["NCBITaxon%3A708087","Cyclobacterium jeungdonense"],["NCBITaxon%3A388280","Cyclobacterium lianum"],["NCBITaxon%3A104","Cyclobacterium marinum"],["NCBITaxon%3A880070","Cyclobacterium marinum DSM 745"]]},{"id":"NCBITaxon:2740557","l":"Pauljensenia","na":1,"nb":45,"a":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["NCBITaxon%3A178339","Pauljensenia hongkongensis"],["NCBITaxon%3A883071","Pauljensenia hongkongensis FB160-CNA-8"],["NCBITaxon%3A2953801","Pauljensenia sp."],["NCBITaxon%3A3003692","Pauljensenia sp. 20925_1_25"],["NCBITaxon%3A3003675","Pauljensenia sp. 20925_1_27"],["NCBITaxon%3A3003674","Pauljensenia sp. 20925_1_34"]]},{"id":"NCBITaxon:893","l":"Desulfobulbus","na":1,"nb":45,"a":[["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"]],"b":[["NCBITaxon%3A2480839","Candidatus Desulfobulbus rimicarensis"],["NCBITaxon%3A869814","Desulfobulbus alkaliphilus"],["NCBITaxon%3A53332","Desulfobulbus elongatus"],["NCBITaxon%3A1121402","Desulfobulbus elongatus DSM 2908"],["NCBITaxon%3A1909699","Desulfobulbus oligotrophicus"],["NCBITaxon%3A1986146","Desulfobulbus oralis"]]},{"id":"NCBITaxon:904","l":"Acidaminococcus","na":1,"nb":45,"a":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["NCBITaxon%3A905","Acidaminococcus fermentans"],["NCBITaxon%3A591001","Acidaminococcus fermentans DSM 20731"],["NCBITaxon%3A2897706","Acidaminococcus hominis"],["NCBITaxon%3A187327","Acidaminococcus intestini"],["NCBITaxon%3A1263033","Acidaminococcus intestini CAG:325"],["NCBITaxon%3A1120921","Acidaminococcus intestini DSM 21505"]]},{"id":"NCBITaxon:1033997","l":"Nitrososphaeraceae","na":1,"nb":44,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"]],"b":[["NCBITaxon%3A2563600","Candidatus Nitrosocosmicus agrestis"],["NCBITaxon%3A2035267","Candidatus Nitrosocosmicus arcticus"],["NCBITaxon%3A1798806","Candidatus Nitrosocosmicus franklandianus"],["NCBITaxon%3A1826872","Candidatus Nitrosocosmicus hydrocola"],["NCBITaxon%3A1353260","Candidatus Nitrosocosmicus oleophilus"],["NCBITaxon%3A2109671","Candidatus Nitrosocosmicus sp."]]},{"id":"NCBITaxon:5094","l":"Talaromyces","na":1,"nb":44,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["NCBITaxon%3A36649","Talaromyces aculeatus"],["NCBITaxon%3A1392253","Talaromyces aculeatus ATCC 10409"],["NCBITaxon%3A1974180","Talaromyces adpressus"],["NCBITaxon%3A1196081","Talaromyces amestolkiae"],["NCBITaxon%3A1441469","Talaromyces atroroseus"],["NCBITaxon%3A36052","Talaromyces bacillisporus"]]},{"id":"NCBITaxon:414878","l":"Catenulispora","na":1,"nb":40,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"]],"b":[["NCBITaxon%3A234199","bacterium Ellin5062"],["NCBITaxon%3A234202","bacterium Ellin5116"],["NCBITaxon%3A234203","bacterium Ellin5119"],["NCBITaxon%3A304895","Catenulispora acidiphila"],["NCBITaxon%3A479433","Catenulispora acidiphila DSM 44928"],["NCBITaxon%3A436228","Catenulispora cavernae"]]},{"id":"NCBITaxon:641853","l":"Elusimicrobia","na":1,"nb":40,"a":[["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"]],"b":[["NCBITaxon%3A3416221","Candidatus Avelusimicrobium alvi"],["NCBITaxon%3A3416206","Candidatus Avelusimicrobium aviculae"],["NCBITaxon%3A3416215","Candidatus Avelusimicrobium bubulum"],["NCBITaxon%3A3416220","Candidatus Avelusimicrobium caledoniensis"],["NCBITaxon%3A1947906","Candidatus Avelusimicrobium cornigerorum"],["NCBITaxon%3A2840689","Candidatus Avelusimicrobium excrementipullorum"]]},{"id":"NCBITaxon:354354","l":"Niastella","na":1,"nb":39,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["NCBITaxon%3A2569763","Niastella caeni"],["NCBITaxon%3A1542731","Niastella gongjuensis"],["NCBITaxon%3A1781166","Niastella hibisci"],["NCBITaxon%3A354356","Niastella koreensis"],["NCBITaxon%3A700598","Niastella koreensis GR20-10"],["NCBITaxon%3A550983","Niastella populi"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":1,"nb":39,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["NCBITaxon%3A679895","Escherichia coli BW25113"],["NCBITaxon%3A595496","Escherichia coli BW2952"],["NCBITaxon%3A1318715","Escherichia coli BW38028"],["NCBITaxon%3A1245474","Escherichia coli ER2796"],["NCBITaxon%3A83333","Escherichia coli K-12"],["NCBITaxon%3A527799","Escherichia coli LW1655F+"]]},{"id":"GTDB:s__Lacticaseibacillus_rhamnosus","l":"","na":1,"nb":38,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["NCBITaxon%3A47715","Lacticaseibacillus rhamnosus"],["NCBITaxon%3A1381116","Lacticaseibacillus rhamnosus 2166"],["NCBITaxon%3A1408180","Lacticaseibacillus rhamnosus 51B"],["NCBITaxon%3A1002365","Lacticaseibacillus rhamnosus ATCC 21052"],["NCBITaxon%3A1088720","Lacticaseibacillus rhamnosus ATCC 8530"],["NCBITaxon%3A1078018","Lacticaseibacillus rhamnosus CASL"]]},{"id":"NCBITaxon:28037","l":"Streptococcus mitis","na":1,"nb":38,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1660","Schaalia odontolytica"],["NCBITaxon%3A45634","Streptococcus cristatus"],["NCBITaxon%3A1302863","Streptococcus cristatus AS 1.3089"],["NCBITaxon%3A1302","Streptococcus gordonii"],["NCBITaxon%3A28037","Streptococcus mitis"],["NCBITaxon%3A1239792","Streptococcus mitis 11/5"]]},{"id":"NCBITaxon:47715","l":"Lacticaseibacillus rhamnosus","na":1,"nb":38,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["NCBITaxon%3A1597","Lacticaseibacillus paracasei"],["NCBITaxon%3A47715","Lacticaseibacillus rhamnosus"],["NCBITaxon%3A1381116","Lacticaseibacillus rhamnosus 2166"],["NCBITaxon%3A1408180","Lacticaseibacillus rhamnosus 51B"],["NCBITaxon%3A1002365","Lacticaseibacillus rhamnosus ATCC 21052"],["NCBITaxon%3A1088720","Lacticaseibacillus rhamnosus ATCC 8530"]]},{"id":"GTDB:s__Comamonas_tsuruhatensis","l":"","na":1,"nb":37,"a":[["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["NCBITaxon%3A2030806","Burkholderiaceae bacterium"],["NCBITaxon%3A1871071","Comamonadaceae bacterium"],["NCBITaxon%3A80866","Delftia acidovorans"],["NCBITaxon%3A883100","Delftia acidovorans CCUG 15835"],["NCBITaxon%3A883101","Delftia acidovorans CCUG 274B"],["NCBITaxon%3A558537","Delftia lacustris"]]},{"id":"NCBITaxon:33849","l":"Bacillariophyceae","na":1,"nb":37,"a":[["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"]],"b":[["NCBITaxon%3A431333","Achnanthidium minutissimum"],["NCBITaxon%3A265554","Amphora coffeiformis"],["NCBITaxon%3A1550372","Biremis ambigua"],["NCBITaxon%3A1486917","Craspedostauros australis"],["NCBITaxon%3A2856","Cylindrotheca closterium"],["NCBITaxon%3A2853","Cylindrotheca fusiformis"]]},{"id":"GTDB:s__Agrobacterium_tumefaciens","l":"","na":1,"nb":36,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"]],"b":[["NCBITaxon%3A1183421","Agrobacterium fabacearum CFBP 5771"],["NCBITaxon%3A1300224","Agrobacterium fabacearum P4"],["NCBITaxon%3A1183429","Agrobacterium fabacearum S56"],["NCBITaxon%3A1183430","Agrobacterium fabacearum TT111"],["NCBITaxon%3A361","Agrobacterium sp."],["NCBITaxon%3A1150775","Agrobacterium sp. 10MFCol1.1"]]},{"id":"GTDB:s__Pantoea_agglomerans","l":"","na":1,"nb":36,"a":[["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["NCBITaxon%3A115547","uncultured archaeon"],["NCBITaxon%3A221276","[Curtobacterium] plantarum"],["NCBITaxon%3A3376138","Curtobacterium sp. BNK-1"],["NCBITaxon%3A549","Pantoea agglomerans"],["NCBITaxon%3A1408177","Pantoea agglomerans Eh318"],["NCBITaxon%3A1110694","Pantoea agglomerans IG1"]]},{"id":"NCBITaxon:399320","l":"Sphaerochaeta","na":1,"nb":36,"a":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]],"b":[["NCBITaxon%3A1129264","Sphaerochaeta associata"],["NCBITaxon%3A1945881","Sphaerochaeta dissipatitropha"],["NCBITaxon%3A1131703","Sphaerochaeta globosa"],["NCBITaxon%3A158189","Sphaerochaeta globosa str. Buddy"],["NCBITaxon%3A2293840","Sphaerochaeta halotolerans"],["NCBITaxon%3A1131707","Sphaerochaeta pleomorpha"]]},{"id":"NCBITaxon:1303","l":"Streptococcus oralis","na":1,"nb":35,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A68892","Streptococcus infantis"],["NCBITaxon%3A768726","Streptococcus mitis bv. 2 str. F0392"],["NCBITaxon%3A1000588","Streptococcus mitis bv. 2 str. SK95"],["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A655813","Streptococcus oralis ATCC 35037"],["NCBITaxon%3A888049","Streptococcus oralis ATCC 49296"]]},{"id":"NCBITaxon:1462422","l":"Candidatus Parvarchaeota","na":1,"nb":35,"a":[["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"]],"b":[["NCBITaxon%3A2898728","Candidatus Acidifodinimicrobium mancum"],["NCBITaxon%3A3101490","Candidatus Acidifodinimicrobium sp."],["NCBITaxon%3A2077140","Candidatus Parvarchaeota archaeon"],["NCBITaxon%3A1955627","Candidatus Parvarchaeota archaeon JGI 005-G06"],["NCBITaxon%3A2738730","Candidatus Parvarchaeota archaeon JGI 005-H17"],["NCBITaxon%3A2738731","Candidatus Parvarchaeota archaeon JGI 006-E12"]]},{"id":"NCBITaxon:146918","l":"Salinibacter","na":1,"nb":35,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["NCBITaxon%3A3040383","Candidatus Salinibacter abyssi"],["NCBITaxon%3A3040384","Candidatus Salinibacter pampae"],["NCBITaxon%3A90337","halophilic eubacterium EHB"],["NCBITaxon%3A97298","halophilic eubacterium EHB-2"],["NCBITaxon%3A97297","halophilic eubacterium EHB-3"],["NCBITaxon%3A97295","halophilic eubacterium EHB-4"]]},{"id":"NCBITaxon:28261","l":"Thermodesulfovibrio","na":1,"nb":34,"a":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]],"b":[["NCBITaxon%3A86166","Thermodesulfovibrio aggregans"],["NCBITaxon%3A1295128","Thermodesulfovibrio aggregans JCM 13213"],["NCBITaxon%3A3118333","Thermodesulfovibrio autotrophicus"],["NCBITaxon%3A412896","Thermodesulfovibrio hydrogeniphilus"],["NCBITaxon%3A1123374","Thermodesulfovibrio hydrogeniphilus DSM 18151"],["NCBITaxon%3A1123375","Thermodesulfovibrio islandicus DSM 12570"]]},{"id":"NCBITaxon:1021","l":"Beggiatoa","na":1,"nb":33,"a":[["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"]],"b":[["NCBITaxon%3A1022","Beggiatoa alba"],["NCBITaxon%3A395493","Beggiatoa alba B18LD"],["NCBITaxon%3A288004","Beggiatoa leptomitoformis"],["NCBITaxon%3A1962953","Beggiatoa sp."],["NCBITaxon%3A1579656","Beggiatoa sp. 11.1"],["NCBITaxon%3A1579657","Beggiatoa sp. 13.1"]]},{"id":"NCBITaxon:1584","l":"Lactobacillus delbrueckii","na":1,"nb":33,"a":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"]],"b":[["NCBITaxon%3A35783","Enterococcus sp."],["NCBITaxon%3A47715","Lacticaseibacillus rhamnosus"],["NCBITaxon%3A2775876","Lacticaseibacillus sp."],["NCBITaxon%3A1579","Lactobacillus acidophilus"],["NCBITaxon%3A1584","Lactobacillus delbrueckii"],["NCBITaxon%3A1050107","Lactobacillus delbrueckii subsp. allosunkii"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":1,"nb":33,"a":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"]],"b":[["NCBITaxon%3A85698","Achromobacter xylosoxidans"],["NCBITaxon%3A152480","Burkholderia ambifaria"],["NCBITaxon%3A179879","Burkholderia anthina"],["NCBITaxon%3A488730","Burkholderia arboris"],["NCBITaxon%3A95486","Burkholderia cenocepacia"],["NCBITaxon%3A292","Burkholderia cepacia"]]},{"id":"NCBITaxon:63743","l":"Natronomonas","na":1,"nb":33,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["NCBITaxon%3A3108498","Natronomonas amylolytica"],["NCBITaxon%3A2841590","Natronomonas aquatica"],["NCBITaxon%3A1046043","Natronomonas gomsonensis"],["NCBITaxon%3A2747817","Natronomonas halophila"],["NCBITaxon%3A2961939","Natronomonas marina"],["NCBITaxon%3A416273","Natronomonas moolapensis"]]},{"id":"GTDB:s__Paenibacillus_polymyxa_B","l":"","na":1,"nb":32,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"]],"b":[["NCBITaxon%3A114136","Paenibacillus jamilae"],["NCBITaxon%3A59893","Paenibacillus peoriae"],["NCBITaxon%3A1406","Paenibacillus polymyxa"],["NCBITaxon%3A1429244","Paenibacillus polymyxa CR1"],["NCBITaxon%3A349520","Paenibacillus polymyxa E681"],["NCBITaxon%3A1333862","Paenibacillus polymyxa TD94"]]},{"id":"NCBITaxon:1582","l":"Lacticaseibacillus casei","na":1,"nb":32,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["NCBITaxon%3A1582","Lacticaseibacillus casei"],["NCBITaxon%3A1051650","Lacticaseibacillus casei 12A"],["NCBITaxon%3A1051651","Lacticaseibacillus casei 21/1"],["NCBITaxon%3A1051652","Lacticaseibacillus casei 32G"],["NCBITaxon%3A1378069","Lacticaseibacillus casei 5b"],["NCBITaxon%3A1051653","Lacticaseibacillus casei A2-362"]]},{"id":"GTDB:s__Acinetobacter_johnsonii","l":"","na":1,"nb":31,"a":[["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["NCBITaxon%3A115547","uncultured archaeon"],["NCBITaxon%3A40214","Acinetobacter johnsonii"],["NCBITaxon%3A1217662","Acinetobacter johnsonii ANC 3681"],["NCBITaxon%3A1217663","Acinetobacter johnsonii CIP 64.6"],["NCBITaxon%3A575586","Acinetobacter johnsonii SH046"],["NCBITaxon%3A1221300","Acinetobacter johnsonii TG19605"]]},{"id":"NCBITaxon:2571160","l":"Trinickia","na":1,"nb":31,"a":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]],"b":[["NCBITaxon%3A2767482","Trinickia acidisoli"],["NCBITaxon%3A3136562","Trinickia camelliae"],["NCBITaxon%3A28094","Trinickia caryophylli"],["NCBITaxon%3A564714","Trinickia dabaoshanensis"],["NCBITaxon%3A2292265","Trinickia diaoshuihuensis"],["NCBITaxon%3A2291023","Trinickia dinghuensis"]]},{"id":"NCBITaxon:2375","l":"Sporomusa","na":1,"nb":30,"a":[["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["NCBITaxon%3A112900","Sporomusa acidovorans"],["NCBITaxon%3A1123286","Sporomusa acidovorans DSM 3132"],["NCBITaxon%3A204936","Sporomusa aerivorans"],["NCBITaxon%3A3076075","Sporomusa carbonis"],["NCBITaxon%3A316996","Sporomusa intestinalis"],["NCBITaxon%3A112901","Sporomusa malonica"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":1,"nb":29,"a":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]],"b":[["NCBITaxon%3A1579","Lactobacillus acidophilus"],["NCBITaxon%3A47770","Lactobacillus crispatus"],["NCBITaxon%3A575595","Lactobacillus crispatus 125-2-CHN"],["NCBITaxon%3A1381118","Lactobacillus crispatus 2029"],["NCBITaxon%3A679188","Lactobacillus crispatus 214-1"],["NCBITaxon%3A440496","Lactobacillus crispatus CTV-05"]]},{"id":"GTDB:s__Prochlorococcus_A_pastoris","l":"","na":1,"nb":28,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A1219","Prochlorococcus marinus"],["NCBITaxon%3A190047","Prochlorococcus marinus str. EQPAC1"],["NCBITaxon%3A142479","Prochlorococcus marinus subsp. pastoris"],["NCBITaxon%3A59919","Prochlorococcus marinus subsp. pastoris str. CCMP1986"],["NCBITaxon%3A1220","Prochlorococcus sp."],["NCBITaxon%3A2162458","Prochlorococcus sp. AG-335-J19"]]},{"id":"NCBITaxon:1107","l":"Chloroflexus","na":1,"nb":28,"a":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]],"b":[["NCBITaxon%3A152260","Chloroflexus aggregans"],["NCBITaxon%3A326427","Chloroflexus aggregans DSM 9485"],["NCBITaxon%3A1108","Chloroflexus aurantiacus"],["NCBITaxon%3A324602","Chloroflexus aurantiacus J-10-fl"],["NCBITaxon%3A480224","Chloroflexus aurantiacus Y-400-fl"],["NCBITaxon%3A1707952","Chloroflexus islandicus"]]},{"id":"GTDB:s__Citrobacter_werkmanii","l":"","na":1,"nb":27,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["NCBITaxon%3A1748967","Citrobacter cronae"],["NCBITaxon%3A546","Citrobacter freundii"],["NCBITaxon%3A1333848","Citrobacter freundii CFNIH1"],["NCBITaxon%3A1896336","Citrobacter sp."],["NCBITaxon%3A2769344","Citrobacter sp. C5_2"],["NCBITaxon%3A2985036","Citrobacter sp. Cc067"]]},{"id":"NCBITaxon:1680","l":"Bifidobacterium adolescentis","na":1,"nb":27,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]],"b":[["NCBITaxon%3A1680","Bifidobacterium adolescentis"],["NCBITaxon%3A367928","Bifidobacterium adolescentis ATCC 15703"],["NCBITaxon%3A1263057","Bifidobacterium adolescentis CAG:119"],["NCBITaxon%3A1410644","Bifidobacterium adolescentis DSM 20087"],["NCBITaxon%3A1437612","Bifidobacterium adolescentis JCM 15918"],["NCBITaxon%3A411481","Bifidobacterium adolescentis L2-32"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":27,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["NCBITaxon%3A57706","Citrobacter braakii"],["NCBITaxon%3A1914243","Citrobacter europaeus"],["NCBITaxon%3A546","Citrobacter freundii"],["NCBITaxon%3A1173724","Citrobacter freundii 47N"],["NCBITaxon%3A742730","Citrobacter freundii 4_7_47CFAA"],["NCBITaxon%3A1444046","Citrobacter freundii 5-172-05_S1_C1"]]},{"id":"GTDB:s__Comamonas_acidovorans","l":"","na":1,"nb":26,"a":[["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A2035215","Burkholderiales bacterium 23"],["NCBITaxon%3A80866","Delftia acidovorans"],["NCBITaxon%3A1218107","Delftia acidovorans NBRC 14950"],["NCBITaxon%3A398578","Delftia acidovorans SPH-1"],["NCBITaxon%3A1651218","Delftia deserti"]]},{"id":"GTDB:s__Pantoea_ananatis","l":"","na":1,"nb":25,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["NCBITaxon%3A1849603","Enterobacteriaceae bacterium"],["NCBITaxon%3A549","Pantoea agglomerans"],["NCBITaxon%3A574096","Pantoea allii"],["NCBITaxon%3A553","Pantoea ananatis"],["NCBITaxon%3A1419326","Pantoea ananatis 15320"],["NCBITaxon%3A932677","Pantoea ananatis AJ13355"]]},{"id":"NCBITaxon:135461","l":"Bacillus subtilis subsp. subtilis","na":1,"nb":25,"a":[["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["NCBITaxon%3A1390","Bacillus amyloliquefaciens"],["NCBITaxon%3A1452","Bacillus atrophaeus"],["NCBITaxon%3A640707","Bacillus atrophaeus ATCC 9372"],["NCBITaxon%3A96241","Bacillus spizizenii"],["NCBITaxon%3A1423","Bacillus subtilis"],["NCBITaxon%3A135461","Bacillus subtilis subsp. subtilis"]]},{"id":"NCBITaxon:2138240","l":"Coprothermobacterota","na":1,"nb":25,"a":[["Thermophilic_ExSitu_Biomethanation_Mixed_Culture.html","Thermophilic Ex-Situ Biomethanation Mixed Culture"]],"b":[["NCBITaxon%3A108819","Coprothermobacter platensis"],["NCBITaxon%3A1259795","Coprothermobacter platensis DSM 11748"],["NCBITaxon%3A35786","Coprothermobacter proteolyticus"],["NCBITaxon%3A309798","Coprothermobacter proteolyticus DSM 5265"],["NCBITaxon%3A55509","Coprothermobacter sp."],["NCBITaxon%3A187079","Coprothermobacter sp. BHI60-1"]]},{"id":"NCBITaxon:359407","l":"Methylotenera","na":1,"nb":25,"a":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["NCBITaxon%3A3844326","Methylotenera hypolimnetica (SeqCode)"],["NCBITaxon%3A359408","Methylotenera mobilis"],["NCBITaxon%3A1132855","Methylotenera mobilis 13"],["NCBITaxon%3A583345","Methylotenera mobilis JLW8"],["NCBITaxon%3A2080758","Methylotenera oryzisoli"],["NCBITaxon%3A3844325","Methylotenera profunda (SeqCode)"]]},{"id":"GTDB:s__Prochlorococcus_A_sp001989455","l":"","na":1,"nb":24,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A1219","Prochlorococcus marinus"],["NCBITaxon%3A2052594","Prochlorococcus marinus str. XMU1401"],["NCBITaxon%3A2054183","Prochlorococcus marinus str. XMU1401E"],["NCBITaxon%3A2774494","Prochlorococcus marinus XMU1421"],["NCBITaxon%3A2774495","Prochlorococcus marinus XMU1422"],["NCBITaxon%3A2774496","Prochlorococcus marinus XMU1423"]]},{"id":"NCBITaxon:497726","l":"Nitrososphaera","na":1,"nb":24,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"]],"b":[["NCBITaxon%3A1459637","Candidatus Nitrososphaera evergladensis"],["NCBITaxon%3A1459636","Candidatus Nitrososphaera evergladensis SR1"],["NCBITaxon%3A497727","Candidatus Nitrososphaera gargensis"],["NCBITaxon%3A1237085","Candidatus Nitrososphaera gargensis Ga9.2"],["NCBITaxon%3A3447973","Candidatus Nitrososphaera maunauluensis"],["NCBITaxon%3A3141449","Candidatus Nitrososphaera sp."]]},{"id":"NCBITaxon:670486","l":"Dehalogenimonas","na":1,"nb":24,"a":[["QY2S1_Dehalogenimonas_BFR_Bioremediation_Consortium.html","QY2-S1 Dehalogenimonas-Rich Brominated-Flame-Retardant Consortium"]],"b":[["NCBITaxon%3A1217799","Dehalogenimonas alkenigignens"],["NCBITaxon%3A1536648","Dehalogenimonas etheniformans"],["NCBITaxon%3A1839801","Dehalogenimonas formicexedens"],["NCBITaxon%3A3127115","Dehalogenimonas loeffleri"],["NCBITaxon%3A552810","Dehalogenimonas lykanthroporepellens"],["NCBITaxon%3A552811","Dehalogenimonas lykanthroporepellens BL-DC-9"]]},{"id":"GTDB:s__Halopseudomonas_aestusnigri","l":"","na":1,"nb":23,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["NCBITaxon%3A857252","Halopseudomonas aestusnigri"],["NCBITaxon%3A2901191","Halopseudomonas sp."],["NCBITaxon%3A3015994","Halopseudomonas sp. MFKK-1"],["NCBITaxon%3A1914538","Pseudomonadaceae bacterium"],["NCBITaxon%3A1952768","Pseudomonadaceae bacterium UBA1462"],["NCBITaxon%3A1952777","Pseudomonadaceae bacterium UBA3367"]]},{"id":"GTDB:s__Lactobacillus_delbrueckii","l":"","na":1,"nb":23,"a":[["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A1584","Lactobacillus delbrueckii"],["NCBITaxon%3A1050107","Lactobacillus delbrueckii subsp. allosunkii"],["NCBITaxon%3A1585","Lactobacillus delbrueckii subsp. bulgaricus"],["NCBITaxon%3A353496","Lactobacillus delbrueckii subsp. bulgaricus 2038"],["NCBITaxon%3A390333","Lactobacillus delbrueckii subsp. bulgaricus ATCC 11842 = JCM 1002"]]},{"id":"NCBITaxon:1598","l":"Limosilactobacillus reuteri","na":1,"nb":23,"a":[["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"]],"b":[["NCBITaxon%3A1581","Lentilactobacillus buchneri"],["NCBITaxon%3A2767931","Lentilactobacillus sp."],["NCBITaxon%3A1613","Limosilactobacillus fermentum"],["NCBITaxon%3A1598","Limosilactobacillus reuteri"],["NCBITaxon%3A1273150","Limosilactobacillus reuteri 1063"],["NCBITaxon%3A525341","Limosilactobacillus reuteri CF48-3A"]]},{"id":"NCBITaxon:180162","l":"Cetobacterium","na":1,"nb":23,"a":[["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"]],"b":[["NCBITaxon%3A3073100","Candidatus Cetobacterium colombiensis"],["NCBITaxon%3A180163","Cetobacterium ceti"],["NCBITaxon%3A188913","Cetobacterium somerae"],["NCBITaxon%3A1319815","Cetobacterium somerae ATCC BAA-474"],["NCBITaxon%3A2071632","Cetobacterium sp."],["NCBITaxon%3A2754723","Cetobacterium sp. 2A"]]},{"id":"NCBITaxon:1828","l":"Rhodococcoides fascians","na":1,"nb":23,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A1828","Rhodococcoides fascians"],["NCBITaxon%3A1443888","Rhodococcoides fascians 02-815"],["NCBITaxon%3A1443889","Rhodococcoides fascians 02-816c"],["NCBITaxon%3A1443890","Rhodococcoides fascians 04-516"],["NCBITaxon%3A1443891","Rhodococcoides fascians 05-339-1"],["NCBITaxon%3A1443892","Rhodococcoides fascians 05-561-1"]]},{"id":"NCBITaxon:392733","l":"Terriglobus","na":1,"nb":23,"a":[["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["NCBITaxon%3A1592106","Terriglobus albidus"],["NCBITaxon%3A940139","Terriglobus aquaticus"],["NCBITaxon%3A392734","Terriglobus roseus"],["NCBITaxon%3A926566","Terriglobus roseus DSM 18391"],["NCBITaxon%3A870903","Terriglobus saanensis"],["NCBITaxon%3A401053","Terriglobus saanensis SP1PR4"]]},{"id":"GTDB:s__Bacillus_atrophaeus","l":"","na":1,"nb":22,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"]],"b":[["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A1452","Bacillus atrophaeus"],["NCBITaxon%3A723888","Bacillus atrophaeus 1013-1"],["NCBITaxon%3A723889","Bacillus atrophaeus 1013-2"],["NCBITaxon%3A720555","Bacillus atrophaeus 1942"],["NCBITaxon%3A743710","Bacillus atrophaeus ATCC 49822-1"]]},{"id":"NCBITaxon:1849822","l":"Paraclostridium","na":1,"nb":22,"a":[["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"]],"b":[["NCBITaxon%3A1629550","Paraclostridium benzoelyticum"],["NCBITaxon%3A1490","Paraclostridium bifermentans"],["NCBITaxon%3A1233170","Paraclostridium bifermentans ATCC 19299"],["NCBITaxon%3A1233171","Paraclostridium bifermentans ATCC 638 = DSM 14991"],["NCBITaxon%3A1357385","Paraclostridium bifermentans NI48_6"],["NCBITaxon%3A2663174","Paraclostridium bifermentans subsp. bifermentans"]]},{"id":"NCBITaxon:2689614","l":"Steroidobacteraceae","na":1,"nb":22,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"]],"b":[["NCBITaxon%3A268404","Peristeroidobacter agariperforans"],["NCBITaxon%3A2497877","Peristeroidobacter soli"],["NCBITaxon%3A1962978","Povalibacter sp."],["NCBITaxon%3A732238","Povalibacter uvarum"],["NCBITaxon%3A2695856","Steroidobacter agaridevorans"],["NCBITaxon%3A1803913","Steroidobacter cummioxidans"]]},{"id":"NCBITaxon:43773","l":"Syntrophus","na":1,"nb":22,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"]],"b":[["NCBITaxon%3A316277","Syntrophus aciditrophicus"],["NCBITaxon%3A56780","Syntrophus aciditrophicus SB"],["NCBITaxon%3A43774","Syntrophus buswellii"],["NCBITaxon%3A43775","Syntrophus gentianae"],["NCBITaxon%3A1489994","Syntrophus sp. enrichment culture clone AD_hydA_36"],["NCBITaxon%3A511481","Syntrophus sp. enrichment culture clone D2CL_Bac_16S_Clone10"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":1,"nb":22,"a":[["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A221276","[Curtobacterium] plantarum"],["NCBITaxon%3A558","Erwinia sp."],["NCBITaxon%3A83655","Leclercia adecarboxylata"],["NCBITaxon%3A549","Pantoea agglomerans"],["NCBITaxon%3A1261128","Pantoea agglomerans 299R"]]},{"id":"NCBITaxon:83677","l":"Thermobifida","na":1,"nb":22,"a":[["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"]],"b":[["NCBITaxon%3A53522","Thermobifida alba"],["NCBITaxon%3A144786","Thermobifida cellulosilytica"],["NCBITaxon%3A665004","Thermobifida cellulosilytica TB100"],["NCBITaxon%3A2021","Thermobifida fusca"],["NCBITaxon%3A1223522","Thermobifida fusca NBRC 14071 = JCM 3263"],["NCBITaxon%3A1169414","Thermobifida fusca TM51"]]},{"id":"GTDB:s__Prochlorococcus_B_marinus_B","l":"","na":1,"nb":21,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A1219","Prochlorococcus marinus"],["NCBITaxon%3A2998489","Prochlorococcus marinus Sample_003_bin_1.filtered"],["NCBITaxon%3A1570012","Prochlorococcus marinus str. MIT 0915"],["NCBITaxon%3A2053468","Prochlorococcus marinus str. MU1403"],["NCBITaxon%3A167555","Prochlorococcus marinus str. NATL1A"],["NCBITaxon%3A59920","Prochlorococcus marinus str. NATL2A"]]},{"id":"GTDB:s__Thomasclavelia_ramosa","l":"","na":1,"nb":21,"a":[["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["NCBITaxon%3A3030912","Anaerovoracaceae bacterium"],["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A2212467","Bacteroidaceae bacterium"],["NCBITaxon%3A1697788","Clostridia bacterium UC5.1-2H6"],["NCBITaxon%3A1232446","Clostridiales bacterium VE202-18"],["NCBITaxon%3A2137881","Coprobacillus sp."]]},{"id":"GTDB:s__Faecalibacterium_longum","l":"","na":1,"nb":20,"a":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"]],"b":[["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A2212467","Bacteroidaceae bacterium"],["NCBITaxon%3A1262817","Clostridium sp. CAG:524"],["NCBITaxon%3A1262889","Eubacterium sp. CAG:38"],["NCBITaxon%3A1851428","Faecalibacterium longum"]]},{"id":"NCBITaxon:1245","l":"Leuconostoc mesenteroides","na":1,"nb":20,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["NCBITaxon%3A33964","Leuconostoc citreum"],["NCBITaxon%3A1245","Leuconostoc mesenteroides"],["NCBITaxon%3A1357402","Leuconostoc mesenteroides A16_17"],["NCBITaxon%3A427140","Leuconostoc mesenteroides KFRI-MG"],["NCBITaxon%3A1429888","Leuconostoc mesenteroides P45"],["NCBITaxon%3A33965","Leuconostoc mesenteroides subsp. cremoris"]]},{"id":"NCBITaxon:1579","l":"Lactobacillus acidophilus","na":1,"nb":20,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["NCBITaxon%3A1597","Lacticaseibacillus paracasei"],["NCBITaxon%3A1590","Lactiplantibacillus plantarum"],["NCBITaxon%3A1579","Lactobacillus acidophilus"],["NCBITaxon%3A891391","Lactobacillus acidophilus 30SC"],["NCBITaxon%3A525306","Lactobacillus acidophilus ATCC 4796"],["NCBITaxon%3A1421011","Lactobacillus acidophilus CFH"]]},{"id":"NCBITaxon:18","l":"Pelobacter","na":1,"nb":20,"a":[["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"]],"b":[["NCBITaxon%3A2961950","Candidatus Pseudopelobacter ferreus"],["NCBITaxon%3A35816","Pelobacter acidigallici"],["NCBITaxon%3A225195","Pelobacter massiliensis"],["NCBITaxon%3A29543","Pelobacter propionicus"],["NCBITaxon%3A338966","Pelobacter propionicus DSM 2379"],["NCBITaxon%3A407188","Pelobacter seleniigenes"]]},{"id":"NCBITaxon:588814","l":"Candidatus Methanophagales","na":1,"nb":20,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"]],"b":[["NCBITaxon%3A3386331","Candidatus Methanophaga sp."],["NCBITaxon%3A2081360","Candidatus Methanophaga sp. AG-394-G06"],["NCBITaxon%3A2081361","Candidatus Methanophaga sp. AG-394-G21"],["NCBITaxon%3A2759913","Candidatus Methanophaga sp. ANME-1 ERB7"],["NCBITaxon%3A2081356","Candidatus Methanophaga sp. GoMg3.2"],["NCBITaxon%3A3386247","Candidatus Methanophagaceae archaeon"]]},{"id":"NCBITaxon:588816","l":"ANME-2 cluster","na":1,"nb":20,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"]],"b":[["NCBITaxon%3A2056317","ANME-2 cluster archaeon"],["NCBITaxon%3A3460055","Candidatus Methanocomedenaceae archaeon"],["NCBITaxon%3A3386229","Candidatus Methanocomedens sp."],["NCBITaxon%3A3386292","Candidatus Methanogaster sp."],["NCBITaxon%3A2759911","Candidatus Methanogaster sp. ANME-2c ERB4"],["NCBITaxon%3A1915703","Candidatus Methanogaster sp. UBA203"]]},{"id":"NCBITaxon:375","l":"Bradyrhizobium japonicum","na":1,"nb":19,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"]],"b":[["NCBITaxon%3A1355477","Bradyrhizobium diazoefficiens"],["NCBITaxon%3A224911","Bradyrhizobium diazoefficiens USDA 110"],["NCBITaxon%3A375","Bradyrhizobium japonicum"],["NCBITaxon%3A306164","Bradyrhizobium japonicum bv. genistearum"],["NCBITaxon%3A305581","Bradyrhizobium japonicum bv. glycinearum"],["NCBITaxon%3A1128253","Bradyrhizobium japonicum CCBAU 15354"]]},{"id":"NCBITaxon:47678","l":"Bacteroides caccae","na":1,"nb":19,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A47678","Bacteroides caccae"],["NCBITaxon%3A411901","Bacteroides caccae ATCC 43185"],["NCBITaxon%3A1263037","Bacteroides caccae CAG:21"],["NCBITaxon%3A997873","Bacteroides caccae CL03T12C61"],["NCBITaxon%3A1357379","Bacteroides caccae MR1_13"],["NCBITaxon%3A1338837","Bacteroides caccae TSDC10.1-1.1"]]},{"id":"GTDB:s__Mediterraneibacter_torques","l":"","na":1,"nb":18,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A3077420","Acutalibacteraceae bacterium"],["NCBITaxon%3A3030912","Anaerovoracaceae bacterium"],["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A290055","Faecalicatena fissicatena"],["NCBITaxon%3A2005360","Faecalicatena sp."]]},{"id":"GTDB:s__Methylobacterium_extorquens","l":"","na":1,"nb":18,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["NCBITaxon%3A2021371","Methylobacteriaceae bacterium"],["NCBITaxon%3A1736261","Methylobacterium sp. Leaf119"],["NCBITaxon%3A1736262","Methylobacterium sp. Leaf121"],["NCBITaxon%3A1736263","Methylobacterium sp. Leaf122"],["NCBITaxon%3A1736246","Methylobacterium sp. Leaf90"],["NCBITaxon%3A1736248","Methylobacterium sp. Leaf92"]]},{"id":"NCBITaxon:110321","l":"Sinorhizobium medicae","na":1,"nb":18,"a":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"]],"b":[["NCBITaxon%3A110321","Sinorhizobium medicae"],["NCBITaxon%3A1230619","Sinorhizobium medicae A321"],["NCBITaxon%3A1041148","Sinorhizobium medicae DI28"],["NCBITaxon%3A1230620","Sinorhizobium medicae KH36b"],["NCBITaxon%3A1230621","Sinorhizobium medicae KH36c"],["NCBITaxon%3A1230622","Sinorhizobium medicae KH36d"]]},{"id":"NCBITaxon:158836","l":"Enterobacter hormaechei","na":1,"nb":18,"a":[["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A3461408","Enterobacter hoffmannii subsp. nototheniae"],["NCBITaxon%3A158836","Enterobacter hormaechei"],["NCBITaxon%3A888063","Enterobacter hormaechei ATCC 49162"],["NCBITaxon%3A1812934","Enterobacter hormaechei subsp. hoffmannii"],["NCBITaxon%3A1333851","Enterobacter hormaechei subsp. hoffmannii ECNIH3"]]},{"id":"NCBITaxon:5475","l":"Candida","na":1,"nb":18,"a":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["NCBITaxon%3A241526","Candida africana"],["NCBITaxon%3A5476","Candida albicans"],["NCBITaxon%3A1182531","Candida albicans 3153A"],["NCBITaxon%3A1284353","Candida baotianmanensis"],["NCBITaxon%3A434039","Candida buenavistaensis"],["NCBITaxon%3A42374","Candida dubliniensis"]]},{"id":"GTDB:s__Anaerotignum_A_faecicola","l":"","na":1,"nb":17,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A3077420","Acutalibacteraceae bacterium"],["NCBITaxon%3A2358141","Anaerotignum faecicola"],["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A1689","Bifidobacterium dentium"],["NCBITaxon%3A2592645","Clostridium sp. MCC345"],["NCBITaxon%3A901","Desulfovibrio piger"]]},{"id":"GTDB:s__Paenibacillus_polymyxa_D","l":"","na":1,"nb":17,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"]],"b":[["NCBITaxon%3A44250","Paenibacillus alvei"],["NCBITaxon%3A59893","Paenibacillus peoriae"],["NCBITaxon%3A1406","Paenibacillus polymyxa"],["NCBITaxon%3A2806565","Paenibacillus sp. 1182"],["NCBITaxon%3A1683673","Paenibacillus sp. EKM205P"],["NCBITaxon%3A1683674","Paenibacillus sp. EKM206P"]]},{"id":"GTDB:s__Streptococcus_salivarius_D","l":"","na":1,"nb":17,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["NCBITaxon%3A1458738","Bacillus sp. hb116"],["NCBITaxon%3A1335","Streptococcus equinus"],["NCBITaxon%3A1313","Streptococcus pneumoniae"],["NCBITaxon%3A1304","Streptococcus salivarius"],["NCBITaxon%3A1046629","Streptococcus salivarius 57.I"],["NCBITaxon%3A1048332","Streptococcus salivarius CCHSS3"]]},{"id":"NCBITaxon:216431","l":"Croceibacter","na":1,"nb":17,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["NCBITaxon%3A313588","Croceibacter atlanticus"],["NCBITaxon%3A216432","Croceibacter atlanticus HTCC2559"],["NCBITaxon%3A2024829","Croceibacter sp."],["NCBITaxon%3A529764","Croceibacter sp. ADROW2"],["NCBITaxon%3A1247573","Croceibacter sp. Ar-116"],["NCBITaxon%3A1247574","Croceibacter sp. Ar-140"]]},{"id":"NCBITaxon:552","l":"Erwinia amylovora","na":1,"nb":17,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]],"b":[["NCBITaxon%3A552","Erwinia amylovora"],["NCBITaxon%3A1255306","Erwinia amylovora 01SFR-BO"],["NCBITaxon%3A1427519","Erwinia amylovora 692"],["NCBITaxon%3A1027397","Erwinia amylovora ACW56400"],["NCBITaxon%3A716540","Erwinia amylovora ATCC 49946"],["NCBITaxon%3A889211","Erwinia amylovora ATCC BAA-2158"]]},{"id":"GTDB:s__Leuconostoc_mesenteroides","l":"","na":1,"nb":16,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["NCBITaxon%3A1245","Leuconostoc mesenteroides"],["NCBITaxon%3A427140","Leuconostoc mesenteroides KFRI-MG"],["NCBITaxon%3A1429888","Leuconostoc mesenteroides P45"],["NCBITaxon%3A33965","Leuconostoc mesenteroides subsp. cremoris"],["NCBITaxon%3A586220","Leuconostoc mesenteroides subsp. cremoris ATCC 19254"],["NCBITaxon%3A1339224","Leuconostoc mesenteroides subsp. cremoris T26"]]},{"id":"GTDB:s__Paenibacillus_polymyxa","l":"","na":1,"nb":16,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"]],"b":[["NCBITaxon%3A114136","Paenibacillus jamilae"],["NCBITaxon%3A1406","Paenibacillus polymyxa"],["NCBITaxon%3A1414587","Paenibacillus polymyxa A18"],["NCBITaxon%3A1036171","Paenibacillus polymyxa ATCC 842"],["NCBITaxon%3A1156938","Paenibacillus polymyxa OSY-DF"],["NCBITaxon%3A1413214","Paenibacillus polymyxa SQR-21"]]},{"id":"NCBITaxon:285","l":"Comamonas testosteroni","na":1,"nb":16,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["NCBITaxon%3A1775535","Acidovorax sp. JCM 10065"],["NCBITaxon%3A285","Comamonas testosteroni"],["NCBITaxon%3A1009852","Comamonas testosteroni ATCC 11996"],["NCBITaxon%3A543891","Comamonas testosteroni CNB-1"],["NCBITaxon%3A688245","Comamonas testosteroni CNB-2"],["NCBITaxon%3A1440775","Comamonas testosteroni I2"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":1,"nb":16,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["NCBITaxon%3A1114880","Aeromonas australiensis"],["NCBITaxon%3A1264931","Flavobacterium acidificum"],["NCBITaxon%3A553","Pantoea ananatis"],["NCBITaxon%3A1419326","Pantoea ananatis 15320"],["NCBITaxon%3A932677","Pantoea ananatis AJ13355"],["NCBITaxon%3A1048262","Pantoea ananatis B1-9"]]},{"id":"GTDB:s__Bradyrhizobium_elkanii","l":"","na":1,"nb":15,"a":[["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["NCBITaxon%3A29448","Bradyrhizobium elkanii"],["NCBITaxon%3A1128203","Bradyrhizobium elkanii CCBAU 05737"],["NCBITaxon%3A1128204","Bradyrhizobium elkanii CCBAU 43297"],["NCBITaxon%3A1275962","Bradyrhizobium elkanii USDA 61"],["NCBITaxon%3A398525","Bradyrhizobium elkanii USDA 76"],["NCBITaxon%3A398524","Bradyrhizobium elkanii USDA 94"]]},{"id":"GTDB:s__Bradyrhizobium_japonicum_B","l":"","na":1,"nb":15,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"]],"b":[["NCBITaxon%3A244734","Bradyrhizobium betae"],["NCBITaxon%3A3341829","Bradyrhizobium dasycarpum"],["NCBITaxon%3A1304877","Bradyrhizobium sp. 22"],["NCBITaxon%3A3133974","Bradyrhizobium sp. A11"],["NCBITaxon%3A2170627","Bradyrhizobium sp. WBOS01"],["NCBITaxon%3A2171497","Bradyrhizobium sp. WBOS02"]]},{"id":"GTDB:s__Corynebacterium_glutamicum","l":"","na":1,"nb":15,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]],"b":[["NCBITaxon%3A92706","[Brevibacterium] flavum"],["NCBITaxon%3A1232385","[Brevibacterium] flavum ZL-1"],["NCBITaxon%3A1718","Corynebacterium glutamicum"],["NCBITaxon%3A196627","Corynebacterium glutamicum ATCC 13032"],["NCBITaxon%3A1079988","Corynebacterium glutamicum ATCC 14067"],["NCBITaxon%3A1204414","Corynebacterium glutamicum K051"]]},{"id":"GTDB:s__Cupriavidus_metallidurans","l":"","na":1,"nb":15,"a":[["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["NCBITaxon%3A1229488","beta proteobacterium FWI2"],["NCBITaxon%3A119219","Cupriavidus metallidurans"],["NCBITaxon%3A266264","Cupriavidus metallidurans CH34"],["NCBITaxon%3A1395123","Cupriavidus metallidurans H1130"],["NCBITaxon%3A1218106","Cupriavidus metallidurans NBRC 101272"],["NCBITaxon%3A1249621","Cupriavidus sp. HMR-1"]]},{"id":"GTDB:s__Streptococcus_sp001556435","l":"","na":1,"nb":15,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["NCBITaxon%3A2997159","Streptococcaceae bacterium AF07-22B"],["NCBITaxon%3A1335","Streptococcus equinus"],["NCBITaxon%3A1304","Streptococcus salivarius"],["NCBITaxon%3A1200793","Streptococcus salivarius K12"],["NCBITaxon%3A1306","Streptococcus sp."],["NCBITaxon%3A2762566","Streptococcus sp. 21.1"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":1,"nb":15,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["NCBITaxon%3A1304","Streptococcus salivarius"],["NCBITaxon%3A1046629","Streptococcus salivarius 57.I"],["NCBITaxon%3A1420586","Streptococcus salivarius ATCC 25975"],["NCBITaxon%3A1263109","Streptococcus salivarius CAG:79"],["NCBITaxon%3A1048332","Streptococcus salivarius CCHSS3"],["NCBITaxon%3A1255635","Streptococcus salivarius CJ181"]]},{"id":"NCBITaxon:1585","l":"Lactobacillus delbrueckii subsp. bulgaricus","na":1,"nb":15,"a":[["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["NCBITaxon%3A2775876","Lacticaseibacillus sp."],["NCBITaxon%3A1584","Lactobacillus delbrueckii"],["NCBITaxon%3A1585","Lactobacillus delbrueckii subsp. bulgaricus"],["NCBITaxon%3A353496","Lactobacillus delbrueckii subsp. bulgaricus 2038"],["NCBITaxon%3A390333","Lactobacillus delbrueckii subsp. bulgaricus ATCC 11842 = JCM 1002"],["NCBITaxon%3A321956","Lactobacillus delbrueckii subsp. bulgaricus ATCC BAA-365"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":15,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]],"b":[["NCBITaxon%3A38285","Corynebacterium acetoacidophilum"],["NCBITaxon%3A1718","Corynebacterium glutamicum"],["NCBITaxon%3A196627","Corynebacterium glutamicum ATCC 13032"],["NCBITaxon%3A1079988","Corynebacterium glutamicum ATCC 14067"],["NCBITaxon%3A1204414","Corynebacterium glutamicum K051"],["NCBITaxon%3A1310161","Corynebacterium glutamicum MB001"]]},{"id":"NCBITaxon:542","l":"Zymomonas mobilis","na":1,"nb":15,"a":[["Zymomonas_Ecoli_Exometabolomics_Obligate_Mutualism.html","Zymomonas-E. coli Exometabolomics-Designed Obligate Mutualism"]],"b":[["NCBITaxon%3A223958","Exiguobacterium oxidotolerans"],["NCBITaxon%3A1397699","Exiguobacterium oxidotolerans JCM 12280"],["NCBITaxon%3A542","Zymomonas mobilis"],["NCBITaxon%3A325472","Zymomonas mobilis subsp. francensis"],["NCBITaxon%3A120045","Zymomonas mobilis subsp. mobilis"],["NCBITaxon%3A555217","Zymomonas mobilis subsp. mobilis ATCC 10988"]]},{"id":"NCBITaxon:55193","l":"Malassezia","na":1,"nb":15,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["NCBITaxon%3A1381934","Malassezia caprae"],["NCBITaxon%3A948313","Malassezia cuniculi"],["NCBITaxon%3A169489","Malassezia dermatis"],["NCBITaxon%3A1381935","Malassezia equina"],["NCBITaxon%3A55194","Malassezia furfur"],["NCBITaxon%3A76773","Malassezia globosa"]]},{"id":"NCBITaxon:61435","l":"Dehalococcoides mccartyi","na":1,"nb":15,"a":[["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"]],"b":[["NCBITaxon%3A61435","Dehalococcoides mccartyi"],["NCBITaxon%3A243164","Dehalococcoides mccartyi 195"],["NCBITaxon%3A216389","Dehalococcoides mccartyi BAV1"],["NCBITaxon%3A1193806","Dehalococcoides mccartyi BTF08"],["NCBITaxon%3A255470","Dehalococcoides mccartyi CBDB1"],["NCBITaxon%3A1432059","Dehalococcoides mccartyi CG1"]]},{"id":"NCBITaxon:138074","l":"Serratia symbiotica","na":1,"nb":14,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"]],"b":[["NCBITaxon%3A655401","Serratia symbiont of Stomaphis sp."],["NCBITaxon%3A138074","Serratia symbiotica"],["NCBITaxon%3A1592400","Serratia symbiotica AfA2.1"],["NCBITaxon%3A1592401","Serratia symbiotica AfA3.1"],["NCBITaxon%3A2856988","Serratia symbiotica (Cacopsylla coccinea)"],["NCBITaxon%3A1339251","Serratia symbiotica CWBI2.3"]]},{"id":"NCBITaxon:1587","l":"Lactobacillus helveticus","na":1,"nb":14,"a":[["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"]],"b":[["NCBITaxon%3A1587","Lactobacillus helveticus"],["NCBITaxon%3A1226336","Lactobacillus helveticus CIRM-BIA 101"],["NCBITaxon%3A1226332","Lactobacillus helveticus CIRM-BIA 103"],["NCBITaxon%3A1226333","Lactobacillus helveticus CIRM-BIA 104"],["NCBITaxon%3A1226334","Lactobacillus helveticus CIRM-BIA 951"],["NCBITaxon%3A1226335","Lactobacillus helveticus CIRM-BIA 953"]]},{"id":"NCBITaxon:1738645","l":"Caproiciproducens","na":1,"nb":14,"a":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]],"b":[["NCBITaxon%3A2820301","Caproiciproducens faecalis"],["NCBITaxon%3A642589","Caproiciproducens galactitolivorans"],["NCBITaxon%3A3435187","Caproiciproducens lactatisolvens"],["NCBITaxon%3A3435000","Caproiciproducens puteiluti"],["NCBITaxon%3A1954376","Caproiciproducens sp."],["NCBITaxon%3A3023530","Caproiciproducens sp. B_6B25C"]]},{"id":"NCBITaxon:2052312","l":"Candidatus Dormiibacterota","na":1,"nb":14,"a":[["Soil_BGC_Phylum_Depth_Vegetation_Community.html","Soil Biosynthetic Gene Cluster Phylum-Depth-Vegetation Community"]],"b":[["NCBITaxon%3A3693648","Candidatus Aeolococcaceae bacterium"],["NCBITaxon%3A3127015","Candidatus Aeolococcus gillhamiae"],["NCBITaxon%3A3780782","Candidatus Aeolococcus sp."],["NCBITaxon%3A3127014","Candidatus Amunia macphersoniae"],["NCBITaxon%3A3127019","Candidatus Changshengia sp."],["NCBITaxon%3A3134677","Candidatus Dormibacteraceae bacterium"]]},{"id":"NCBITaxon:2822410","l":"Methylotuvimicrobium","na":1,"nb":14,"a":[["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]],"b":[["NCBITaxon%3A271065","Methylotuvimicrobium alcaliphilum"],["NCBITaxon%3A1091494","Methylotuvimicrobium alcaliphilum 20Z"],["NCBITaxon%3A95641","Methylotuvimicrobium buryatense"],["NCBITaxon%3A675511","Methylotuvimicrobium buryatense 5G"],["NCBITaxon%3A81932","Methylotuvimicrobium japanense"],["NCBITaxon%3A269709","Methylotuvimicrobium kenyense"]]},{"id":"NCBITaxon:2837503","l":"Gottfriedia","na":1,"nb":14,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["NCBITaxon%3A371036","Gottfriedia acidiceleris"],["NCBITaxon%3A2820819","Gottfriedia endophytica"],["NCBITaxon%3A178774","Gottfriedia luciferensis"],["NCBITaxon%3A1516104","Gottfriedia solisilvae"],["NCBITaxon%3A2837517","Gottfriedia sp."],["NCBITaxon%3A3570215","Gottfriedia sp. ABJ_BB2_2"]]},{"id":"NCBITaxon:582","l":"Morganella morganii","na":1,"nb":14,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["NCBITaxon%3A582","Morganella morganii"],["NCBITaxon%3A1365974","Morganella morganii AC2_8_11_AN_D6_FAA_4"],["NCBITaxon%3A1428452","Morganella morganii F675"],["NCBITaxon%3A1416758","Morganella morganii H1r"],["NCBITaxon%3A1411647","Morganella morganii IS15"],["NCBITaxon%3A1239989","Morganella morganii SC01"]]},{"id":"GTDB:s__Ensifer_canadensis","l":"","na":1,"nb":13,"a":[["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["NCBITaxon%3A106592","Ensifer adhaerens"],["NCBITaxon%3A1416753","Ensifer adhaerens OV14"],["NCBITaxon%3A555315","Ensifer canadensis"],["NCBITaxon%3A1911585","Ensifer sp. 1H6"],["NCBITaxon%3A2769291","Ensifer sp. ENS11"],["NCBITaxon%3A2109730","Ensifer sp. NM-2"]]},{"id":"GTDB:s__Methanosarcina_mazei","l":"","na":1,"nb":13,"a":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"]],"b":[["NCBITaxon%3A2026739","Methanobacteriota archaeon"],["NCBITaxon%3A2209","Methanosarcina mazei"],["NCBITaxon%3A1434113","Methanosarcina mazei C16"],["NCBITaxon%3A192952","Methanosarcina mazei Go1"],["NCBITaxon%3A1293038","Methanosarcina mazei JCM 9314"],["NCBITaxon%3A1434114","Methanosarcina mazei LYC"]]},{"id":"NCBITaxon:1520","l":"Clostridium beijerinckii","na":1,"nb":13,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"]],"b":[["NCBITaxon%3A1488","Clostridium acetobutylicum"],["NCBITaxon%3A272562","Clostridium acetobutylicum ATCC 824"],["NCBITaxon%3A1520","Clostridium beijerinckii"],["NCBITaxon%3A1202535","Clostridium beijerinckii AAU1"],["NCBITaxon%3A864803","Clostridium beijerinckii ATCC 35702"],["NCBITaxon%3A1200349","Clostridium beijerinckii G117"]]},{"id":"NCBITaxon:1624","l":"Ligilactobacillus salivarius","na":1,"nb":13,"a":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]],"b":[["NCBITaxon%3A1624","Ligilactobacillus salivarius"],["NCBITaxon%3A768728","Ligilactobacillus salivarius ACS-116-V-Col5a"],["NCBITaxon%3A1195377","Ligilactobacillus salivarius B-30514"],["NCBITaxon%3A712961","Ligilactobacillus salivarius CECT 5713"],["NCBITaxon%3A1036738","Ligilactobacillus salivarius CELA2"],["NCBITaxon%3A1273133","Ligilactobacillus salivarius cp400"]]},{"id":"NCBITaxon:4958","l":"Debaryomyces","na":1,"nb":13,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["NCBITaxon%3A27296","Debaryomyces coudertii"],["NCBITaxon%3A58627","Debaryomyces fabryi"],["NCBITaxon%3A4959","Debaryomyces hansenii"],["NCBITaxon%3A284592","Debaryomyces hansenii CBS767"],["NCBITaxon%3A1118155","Debaryomyces hansenii var. hansenii MTCC 234"],["NCBITaxon%3A27297","Debaryomyces maramus"]]},{"id":"GTDB:s__Faecalibacterium_prausnitzii","l":"","na":1,"nb":12,"a":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"]],"b":[["NCBITaxon%3A1872471","Alloprevotella sp."],["NCBITaxon%3A1896972","Azospirillum sp. 51_20"],["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A853","Faecalibacterium prausnitzii"],["NCBITaxon%3A411485","Faecalibacterium prausnitzii M21/2"],["NCBITaxon%3A657322","Faecalibacterium prausnitzii SL3/3"]]},{"id":"GTDB:s__Paenibacillus_polymyxa_C","l":"","na":1,"nb":12,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"]],"b":[["NCBITaxon%3A114136","Paenibacillus jamilae"],["NCBITaxon%3A1406","Paenibacillus polymyxa"],["NCBITaxon%3A1333863","Paenibacillus polymyxa 1-43"],["NCBITaxon%3A1052684","Paenibacillus polymyxa M1"],["NCBITaxon%3A886882","Paenibacillus polymyxa SC2"],["NCBITaxon%3A2849670","Paenibacillus sp. AK121"]]},{"id":"GTDB:s__Trichodesmium_erythraeum","l":"","na":1,"nb":12,"a":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["NCBITaxon%3A1206","Trichodesmium erythraeum"],["NCBITaxon%3A1045866","Trichodesmium erythraeum 21-75"],["NCBITaxon%3A1045867","Trichodesmium erythraeum GBRTRLIN201"],["NCBITaxon%3A203124","Trichodesmium erythraeum IMS101"],["NCBITaxon%3A2919304","Trichodesmium sp. ALOHA_ZT_67"],["NCBITaxon%3A2917417","Trichodesmium sp. MAG_R01"]]},{"id":"GTDB:s__Weizmannia_faecalis","l":"","na":1,"nb":12,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"]],"b":[["NCBITaxon%3A1409","Bacillus sp. (in: firmicutes)"],["NCBITaxon%3A1398","Heyndrickxia coagulans"],["NCBITaxon%3A345219","Heyndrickxia coagulans 36D1"],["NCBITaxon%3A1298921","Heyndrickxia coagulans CSIL1"],["NCBITaxon%3A1398086","Heyndrickxia coagulans P38"],["NCBITaxon%3A1245026","Heyndrickxia coagulans XZL9"]]},{"id":"NCBITaxon:1377992","l":"Halovenus","na":1,"nb":12,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["NCBITaxon%3A2500550","Halovenus amylolytica"],["NCBITaxon%3A3126691","Halovenus anhuiensis"],["NCBITaxon%3A890420","Halovenus aranensis"],["NCBITaxon%3A2692199","Halovenus carboxidivorans"],["NCBITaxon%3A3396622","Halovenus halobia"],["NCBITaxon%3A3396621","Halovenus marina"]]},{"id":"NCBITaxon:1398","l":"Heyndrickxia coagulans","na":1,"nb":12,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"]],"b":[["NCBITaxon%3A3464050","Bacillus coagulans MPL-25"],["NCBITaxon%3A1422","Geobacillus stearothermophilus"],["NCBITaxon%3A1398","Heyndrickxia coagulans"],["NCBITaxon%3A941639","Heyndrickxia coagulans 2-6"],["NCBITaxon%3A345219","Heyndrickxia coagulans 36D1"],["NCBITaxon%3A1298921","Heyndrickxia coagulans CSIL1"]]},{"id":"NCBITaxon:178898","l":"Carboxydocella","na":1,"nb":12,"a":[["Subsurface_Carboxydocella_CO_Aquifer_Community.html","Subsurface Carboxydocella CO-Oxidation Aquifer Community"]],"b":[["NCBITaxon%3A412901","Carboxydocella ferrireducens"],["NCBITaxon%3A744873","Carboxydocella manganica"],["NCBITaxon%3A2152941","Carboxydocella sp."],["NCBITaxon%3A483241","Carboxydocella sp. 1244"],["NCBITaxon%3A483242","Carboxydocella sp. 1503"],["NCBITaxon%3A483243","Carboxydocella sp. 930"]]},{"id":"NCBITaxon:831","l":"Butyrivibrio fibrisolvens","na":1,"nb":12,"a":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"]],"b":[["NCBITaxon%3A831","Butyrivibrio fibrisolvens"],["NCBITaxon%3A657324","Butyrivibrio fibrisolvens 16/4"],["NCBITaxon%3A1280697","Butyrivibrio fibrisolvens AB2020"],["NCBITaxon%3A1121131","Butyrivibrio fibrisolvens DSM 3071"],["NCBITaxon%3A1280700","Butyrivibrio fibrisolvens FE2007"],["NCBITaxon%3A1280703","Butyrivibrio fibrisolvens MD2001"]]},{"id":"GTDB:s__Bacteroides_caccae","l":"","na":1,"nb":11,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A2212467","Bacteroidaceae bacterium"],["NCBITaxon%3A47678","Bacteroides caccae"],["NCBITaxon%3A411901","Bacteroides caccae ATCC 43185"],["NCBITaxon%3A1263037","Bacteroides caccae CAG:21"],["NCBITaxon%3A997873","Bacteroides caccae CL03T12C61"]]},{"id":"GTDB:s__Bradyrhizobium_japonicum","l":"","na":1,"nb":11,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"]],"b":[["NCBITaxon%3A29448","Bradyrhizobium elkanii"],["NCBITaxon%3A375","Bradyrhizobium japonicum"],["NCBITaxon%3A1128255","Bradyrhizobium japonicum CCBAU 15618"],["NCBITaxon%3A1128256","Bradyrhizobium japonicum CCBAU 25435"],["NCBITaxon%3A476282","Bradyrhizobium japonicum SEMIA 5079"],["NCBITaxon%3A1079467","Bradyrhizobium japonicum USDA 38"]]},{"id":"GTDB:s__Bradyrhizobium_liaoningense","l":"","na":1,"nb":11,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"]],"b":[["NCBITaxon%3A1038863","Bradyrhizobium japonicum USDA 135"],["NCBITaxon%3A43992","Bradyrhizobium liaoningense"],["NCBITaxon%3A1128287","Bradyrhizobium liaoningense CCBAU 05525"],["NCBITaxon%3A1128288","Bradyrhizobium liaoningense CCBAU 83689"],["NCBITaxon%3A1641877","Bradyrhizobium sp. CCBAU 25338"],["NCBITaxon%3A1325102","Bradyrhizobium sp. CCBAU 51765"]]},{"id":"GTDB:s__Citrobacter_europaeus","l":"","na":1,"nb":11,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["NCBITaxon%3A57706","Citrobacter braakii"],["NCBITaxon%3A1914243","Citrobacter europaeus"],["NCBITaxon%3A546","Citrobacter freundii"],["NCBITaxon%3A1439318","Citrobacter freundii MGH 56"],["NCBITaxon%3A2883266","Citrobacter sp. 210820-DFI.7.7"],["NCBITaxon%3A2883267","Citrobacter sp. 210820-DFI.7.8"]]},{"id":"GTDB:s__Clostridium_beijerinckii","l":"","na":1,"nb":11,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"]],"b":[["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A1520","Clostridium beijerinckii"],["NCBITaxon%3A864803","Clostridium beijerinckii ATCC 35702"],["NCBITaxon%3A1200349","Clostridium beijerinckii G117"],["NCBITaxon%3A290402","Clostridium beijerinckii NCIMB 8052"],["NCBITaxon%3A1428454","Clostridium beijerinckii NRRL B-598"]]},{"id":"GTDB:s__Lactobacillus_acidophilus","l":"","na":1,"nb":11,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["NCBITaxon%3A1579","Lactobacillus acidophilus"],["NCBITaxon%3A525306","Lactobacillus acidophilus ATCC 4796"],["NCBITaxon%3A1421011","Lactobacillus acidophilus CFH"],["NCBITaxon%3A1226677","Lactobacillus acidophilus CIRM-BIA 442"],["NCBITaxon%3A1226678","Lactobacillus acidophilus CIRM-BIA 445"],["NCBITaxon%3A1423717","Lactobacillus acidophilus DSM 20079 = JCM 1132 = NBRC 13951 = CIP 76.13"]]},{"id":"GTDB:s__Synechocystis_sp000284455","l":"","na":1,"nb":11,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"]],"b":[["NCBITaxon%3A2764086","Synechocystis sp. B12"],["NCBITaxon%3A1933929","Synechocystis sp. CACIAM 05"],["NCBITaxon%3A2692865","Synechocystis sp. FACHB-898"],["NCBITaxon%3A2692866","Synechocystis sp. FACHB-908"],["NCBITaxon%3A2692867","Synechocystis sp. FACHB-929"],["NCBITaxon%3A2116702","Synechocystis sp. IPPAS B-1465"]]},{"id":"NCBITaxon:307628","l":"Petrimonas","na":1,"nb":11,"a":[["Waste_Sludge_Electrofermentation_Biofilm_Suspension_Community.html","Waste-Sludge Electro-Fermentation Biofilm-Suspension Community"]],"b":[["NCBITaxon%3A1642646","Petrimonas mucosa"],["NCBITaxon%3A2023866","Petrimonas sp."],["NCBITaxon%3A1197715","Petrimonas sp. B-17"],["NCBITaxon%3A1347151","Petrimonas sp. canine oral taxon 434"],["NCBITaxon%3A1506907","Petrimonas sp. enrichment culture clone B4-23"],["NCBITaxon%3A1454160","Petrimonas sp. enrichment culture clone SJC6"]]},{"id":"NCBITaxon:83551","l":"Parachlamydia","na":1,"nb":11,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["NCBITaxon%3A83552","Parachlamydia acanthamoebae"],["NCBITaxon%3A159254","Parachlamydia acanthamoebae str. Hall's coccus"],["NCBITaxon%3A765952","Parachlamydia acanthamoebae UV-7"],["NCBITaxon%3A2052048","Parachlamydia sp."],["NCBITaxon%3A2795736","Parachlamydia sp. AcF125"],["NCBITaxon%3A2032639","Parachlamydia sp. BC.030"]]},{"id":"GTDB:s__Butyrivibrio_fibrisolvens_C","l":"","na":1,"nb":10,"a":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"]],"b":[["NCBITaxon%3A831","Butyrivibrio fibrisolvens"],["NCBITaxon%3A1280697","Butyrivibrio fibrisolvens AB2020"],["NCBITaxon%3A1280700","Butyrivibrio fibrisolvens FE2007"],["NCBITaxon%3A1280703","Butyrivibrio fibrisolvens MD2001"],["NCBITaxon%3A1280696","Butyrivibrio fibrisolvens ND3005"],["NCBITaxon%3A1280699","Butyrivibrio fibrisolvens WTE3004"]]},{"id":"GTDB:s__Desulfovibrio_sp900556755","l":"","na":1,"nb":10,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A901","Desulfovibrio piger"],["NCBITaxon%3A885","Desulfovibrio sp."],["NCBITaxon%3A3420558","Desulfovibrio sp. SGI.082"],["NCBITaxon%3A3420559","Desulfovibrio sp. SGI.102"],["NCBITaxon%3A3420560","Desulfovibrio sp. SGI.133"]]},{"id":"GTDB:s__Otoolea_symbiosa","l":"","na":1,"nb":10,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["NCBITaxon%3A1232445","Clostridiales bacterium VE202-16"],["NCBITaxon%3A2126740","Clostridium fessum"],["NCBITaxon%3A1506","Clostridium sp."],["NCBITaxon%3A665940","Clostridium sp. 7_3_54FAA"],["NCBITaxon%3A2044259","Clostridium sp. HMb25"],["NCBITaxon%3A1512","[Clostridium] symbiosum"]]},{"id":"GTDB:s__Stenotrophomonas_pavanii","l":"","na":1,"nb":10,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]],"b":[["NCBITaxon%3A1977087","Pseudomonadota bacterium"],["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A487698","Stenotrophomonas pavanii"],["NCBITaxon%3A2954546","Stenotrophomonas sp. FSL W7-1447"],["NCBITaxon%3A2899139","Stenotrophomonas sp. PI_27"],["NCBITaxon%3A2944932","Stenotrophomonas sp. SG1"]]},{"id":"GTDB:s__Streptococcus_oralis_S","l":"","na":1,"nb":10,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1095740","Streptococcus oralis SK100"],["NCBITaxon%3A1458253","Streptococcus oralis subsp. dentisani"],["NCBITaxon%3A1891914","Streptococcus oralis subsp. oralis"],["NCBITaxon%3A257758","Streptococcus pseudopneumoniae"],["NCBITaxon%3A1739389","Streptococcus sp. HMSC062H02"]]},{"id":"NCBITaxon:165812","l":"Sporanaerobacter","na":1,"nb":10,"a":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]],"b":[["NCBITaxon%3A165813","Sporanaerobacter acetigenes"],["NCBITaxon%3A1123281","Sporanaerobacter acetigenes DSM 13106"],["NCBITaxon%3A2010183","Sporanaerobacter sp."],["NCBITaxon%3A747279","Sporanaerobacter sp. enrichment culture clone B12"],["NCBITaxon%3A393729","Sporanaerobacter sp. Iso-W4"],["NCBITaxon%3A1460448","Sporanaerobacter sp. LAM0007"]]},{"id":"NCBITaxon:2209","l":"Methanosarcina mazei","na":1,"nb":10,"a":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"]],"b":[["NCBITaxon%3A2209","Methanosarcina mazei"],["NCBITaxon%3A1434113","Methanosarcina mazei C16"],["NCBITaxon%3A192952","Methanosarcina mazei Go1"],["NCBITaxon%3A1293038","Methanosarcina mazei JCM 9314"],["NCBITaxon%3A1434114","Methanosarcina mazei LYC"],["NCBITaxon%3A213585","Methanosarcina mazei S-6"]]},{"id":"NCBITaxon:2357","l":"Desulfomonile","na":1,"nb":10,"a":[["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["NCBITaxon%3A2799490","Candidatus Desulfomonile palmitatoxidans"],["NCBITaxon%3A117208","Desulfomonile limimaris"],["NCBITaxon%3A2793219","Desulfomonile sp."],["NCBITaxon%3A1145211","Desulfomonile sp. enrichment culture clone F4_A9"],["NCBITaxon%3A1145212","Desulfomonile sp. enrichment culture clone F4_E11"],["NCBITaxon%3A1145213","Desulfomonile sp. enrichment culture clone F4_F9"]]},{"id":"NCBITaxon:29397","l":"Lactobacillus delbrueckii subsp. lactis","na":1,"nb":10,"a":[["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"]],"b":[["NCBITaxon%3A2775876","Lacticaseibacillus sp."],["NCBITaxon%3A1584","Lactobacillus delbrueckii"],["NCBITaxon%3A29397","Lactobacillus delbrueckii subsp. lactis"],["NCBITaxon%3A1269760","Lactobacillus delbrueckii subsp. lactis CRL581"],["NCBITaxon%3A888027","Lactobacillus delbrueckii subsp. lactis DSM 20072"],["NCBITaxon%3A28039","Lactobacillus leichmannii"]]},{"id":"NCBITaxon:29448","l":"Bradyrhizobium elkanii","na":1,"nb":10,"a":[["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["NCBITaxon%3A29448","Bradyrhizobium elkanii"],["NCBITaxon%3A1156987","Bradyrhizobium elkanii 587"],["NCBITaxon%3A1128203","Bradyrhizobium elkanii CCBAU 05737"],["NCBITaxon%3A1128204","Bradyrhizobium elkanii CCBAU 43297"],["NCBITaxon%3A1079479","Bradyrhizobium elkanii USDA 3254"],["NCBITaxon%3A1079466","Bradyrhizobium elkanii USDA 3259"]]},{"id":"NCBITaxon:38304","l":"Corynebacterium tuberculostearicum","na":1,"nb":10,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["NCBITaxon%3A38284","Corynebacterium accolens"],["NCBITaxon%3A1736004","Corynebacterium cf. tuberculostearicum 1237_CAUR"],["NCBITaxon%3A1736005","Corynebacterium cf. tuberculostearicum 620_CAUR"],["NCBITaxon%3A1736006","Corynebacterium cf. tuberculostearicum 911_CAUR"],["NCBITaxon%3A38287","Corynebacterium fastidiosum"],["NCBITaxon%3A1720","Corynebacterium sp."]]},{"id":"NCBITaxon:40214","l":"Acinetobacter johnsonii","na":1,"nb":10,"a":[["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["NCBITaxon%3A40214","Acinetobacter johnsonii"],["NCBITaxon%3A1255605","Acinetobacter johnsonii 3M05"],["NCBITaxon%3A1217662","Acinetobacter johnsonii ANC 3681"],["NCBITaxon%3A1217663","Acinetobacter johnsonii CIP 64.6"],["NCBITaxon%3A1160709","Acinetobacter johnsonii L18"],["NCBITaxon%3A701047","Acinetobacter johnsonii SE1"]]},{"id":"GTDB:s__Agrobacterium_oryzihabitans","l":"","na":1,"nb":9,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"]],"b":[["NCBITaxon%3A1183412","Agrobacterium deltae"],["NCBITaxon%3A1183435","Agrobacterium genomosp. 5 str. CFBP 6626"],["NCBITaxon%3A361","Agrobacterium sp."],["NCBITaxon%3A2986921","Agrobacterium sp. BT-220-3"],["NCBITaxon%3A358","Agrobacterium tumefaciens"],["NCBITaxon%3A1050720","Agrobacterium tumefaciens F2"]]},{"id":"GTDB:s__Bifidobacterium_thermacidophilum","l":"","na":1,"nb":9,"a":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["NCBITaxon%3A212365","Bifidobacterium porcinum"],["NCBITaxon%3A1435463","Bifidobacterium porcinum DSM 17755"],["NCBITaxon%3A41200","Bifidobacterium sp."],["NCBITaxon%3A3440246","Bifidobacterium sp. LCP19S3_E9"],["NCBITaxon%3A3440249","Bifidobacterium sp. LCP19S3_H1"],["NCBITaxon%3A246618","Bifidobacterium thermacidophilum"]]},{"id":"GTDB:s__Lactiplantibacillus_pentosus","l":"","na":1,"nb":9,"a":[["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["NCBITaxon%3A1589","Lactiplantibacillus pentosus"],["NCBITaxon%3A1423791","Lactiplantibacillus pentosus DSM 20314"],["NCBITaxon%3A1028490","Lactiplantibacillus pentosus MP-10"],["NCBITaxon%3A1590","Lactiplantibacillus plantarum"],["NCBITaxon%3A2767846","Lactiplantibacillus sp."],["NCBITaxon%3A2832297","Lactiplantibacillus sp. 30.2.29"]]},{"id":"GTDB:s__Variovorax_sp900115375","l":"","na":1,"nb":9,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["NCBITaxon%3A1335060","Rhizobium sp. Q54"],["NCBITaxon%3A2529861","Tabrizicola sp. YIM 78059"],["NCBITaxon%3A2855501","Variovorax endophyticus"],["NCBITaxon%3A34073","Variovorax paradoxus"],["NCBITaxon%3A1871043","Variovorax sp."],["NCBITaxon%3A3080983","Variovorax sp. DAIF25"]]},{"id":"GTDB:s__Zymomonas_mobilis","l":"","na":1,"nb":9,"a":[["Zymomonas_Ecoli_Exometabolomics_Obligate_Mutualism.html","Zymomonas-E. coli Exometabolomics-Designed Obligate Mutualism"]],"b":[["NCBITaxon%3A542","Zymomonas mobilis"],["NCBITaxon%3A120045","Zymomonas mobilis subsp. mobilis"],["NCBITaxon%3A555217","Zymomonas mobilis subsp. mobilis ATCC 10988"],["NCBITaxon%3A627344","Zymomonas mobilis subsp. mobilis ATCC 29191"],["NCBITaxon%3A1231376","Zymomonas mobilis subsp. mobilis ATCC 31822"],["NCBITaxon%3A622759","Zymomonas mobilis subsp. mobilis NCIMB 11163"]]},{"id":"NCBITaxon:105983","l":"Apiotrichum","na":1,"nb":9,"a":[["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"]],"b":[["NCBITaxon%3A279327","Apiotrichum akiyoshidainum"],["NCBITaxon%3A82513","Apiotrichum brassicae"],["NCBITaxon%3A82514","Apiotrichum domesticum"],["NCBITaxon%3A1105092","Apiotrichum gamsii"],["NCBITaxon%3A82516","Apiotrichum gracile"],["NCBITaxon%3A82520","Apiotrichum laibachii"]]},{"id":"NCBITaxon:1064","l":"Rhodocyclus","na":1,"nb":9,"a":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"]],"b":[["NCBITaxon%3A2929842","Rhodocyclus gracilis"],["NCBITaxon%3A1067","Rhodocyclus purpureus"],["NCBITaxon%3A77788","Rhodocyclus sp."],["NCBITaxon%3A290800","Rhodocyclus sp. HOD 5"],["NCBITaxon%3A712523","Rhodocyclus sp. oral taxon 028"],["NCBITaxon%3A1206098","Rhodocyclus sp. UW 659-1-F08"]]},{"id":"NCBITaxon:1255","l":"Pediococcus pentosaceus","na":1,"nb":9,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["NCBITaxon%3A1254","Pediococcus acidilactici"],["NCBITaxon%3A114090","Pediococcus inopinatus"],["NCBITaxon%3A54062","Pediococcus parvulus"],["NCBITaxon%3A1255","Pediococcus pentosaceus"],["NCBITaxon%3A278197","Pediococcus pentosaceus ATCC 25745"],["NCBITaxon%3A1460385","Pediococcus pentosaceus CGMCC 7049"]]},{"id":"NCBITaxon:1264","l":"Hominimerdicola alba","na":1,"nb":9,"a":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"]],"b":[["NCBITaxon%3A1264","Hominimerdicola alba"],["NCBITaxon%3A697329","Hominimerdicola alba 7 = DSM 20455"],["NCBITaxon%3A246199","Hominimerdicola alba 8"],["NCBITaxon%3A1384065","Hominimerdicola alba AD2013"],["NCBITaxon%3A1341156","Hominimerdicola alba SY3"],["NCBITaxon%3A1339594","Hominimerdicola alba TSDC17.2-1.1"]]},{"id":"NCBITaxon:1682","l":"Bifidobacterium longum subsp. infantis","na":1,"nb":9,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["NCBITaxon%3A1686","Bifidobacterium catenulatum"],["NCBITaxon%3A630129","Bifidobacterium catenulatum subsp. kashiwanohense"],["NCBITaxon%3A216816","Bifidobacterium longum"],["NCBITaxon%3A1682","Bifidobacterium longum subsp. infantis"],["NCBITaxon%3A565040","Bifidobacterium longum subsp. infantis 157F"],["NCBITaxon%3A391904","Bifidobacterium longum subsp. infantis ATCC 15697 = JCM 1222 = DSM 20088"]]},{"id":"NCBITaxon:1766253","l":"Agathobacter","na":1,"nb":9,"a":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["NCBITaxon%3A39491","Agathobacter rectalis"],["NCBITaxon%3A515619","Agathobacter rectalis ATCC 33656"],["NCBITaxon%3A1263079","Agathobacter rectalis CAG:36"],["NCBITaxon%3A657318","Agathobacter rectalis DSM 17629"],["NCBITaxon%3A657317","Agathobacter rectalis M104/1"],["NCBITaxon%3A1712665","Agathobacter ruminis"]]},{"id":"NCBITaxon:40413","l":"Desulforhopalus","na":1,"nb":9,"a":[["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"]],"b":[["NCBITaxon%3A3470062","Desulforhopalus glucosivorans"],["NCBITaxon%3A91360","Desulforhopalus singaporensis"],["NCBITaxon%3A1121418","Desulforhopalus singaporensis DSM 12130"],["NCBITaxon%3A2099376","Desulforhopalus sp."],["NCBITaxon%3A1824887","Desulforhopalus sp. 16SWWS2-2-3"],["NCBITaxon%3A2569543","Desulforhopalus sp. IMCC35007"]]},{"id":"NCBITaxon:64495","l":"Rhizopus arrhizus","na":1,"nb":9,"a":[["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"]],"b":[["NCBITaxon%3A64495","Rhizopus arrhizus"],["NCBITaxon%3A1279478","Rhizopus arrhizus 99-133"],["NCBITaxon%3A1279482","Rhizopus arrhizus 99-892"],["NCBITaxon%3A1274785","Rhizopus arrhizus B7407"],["NCBITaxon%3A1279480","Rhizopus arrhizus HUMC 02"],["NCBITaxon%3A1279475","Rhizopus arrhizus Type I NRRL 13440"]]},{"id":"NCBITaxon:80866","l":"Delftia acidovorans","na":1,"nb":9,"a":[["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["NCBITaxon%3A1872122","Acidovorax sp."],["NCBITaxon%3A80866","Delftia acidovorans"],["NCBITaxon%3A883100","Delftia acidovorans CCUG 15835"],["NCBITaxon%3A883101","Delftia acidovorans CCUG 274B"],["NCBITaxon%3A1218107","Delftia acidovorans NBRC 14950"],["NCBITaxon%3A1255679","Delftia acidovorans PCA12"]]},{"id":"NCBITaxon:96241","l":"Bacillus spizizenii","na":1,"nb":9,"a":[["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"]],"b":[["NCBITaxon%3A96241","Bacillus spizizenii"],["NCBITaxon%3A703612","Bacillus spizizenii ATCC 6633 = JCM 2499"],["NCBITaxon%3A1051503","Bacillus spizizenii DV1-B-1"],["NCBITaxon%3A932006","Bacillus spizizenii RFWG1A3"],["NCBITaxon%3A932005","Bacillus spizizenii RFWG1A4"],["NCBITaxon%3A932007","Bacillus spizizenii RFWG4C10"]]},{"id":"GTDB:s__Rhodobacter_capsulatus_B","l":"","na":1,"nb":8,"a":[["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"]],"b":[["NCBITaxon%3A1061","Rhodobacter capsulatus"],["NCBITaxon%3A1415162","Rhodobacter capsulatus B6"],["NCBITaxon%3A1415160","Rhodobacter capsulatus DE442"],["NCBITaxon%3A1415163","Rhodobacter capsulatus R121"],["NCBITaxon%3A272942","Rhodobacter capsulatus SB 1003"],["NCBITaxon%3A1415161","Rhodobacter capsulatus Y262"]]},{"id":"GTDB:s__Sphingobacterium_paramultivorum","l":"","na":1,"nb":8,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["NCBITaxon%3A2886510","Sphingobacterium paramultivorum"],["NCBITaxon%3A459529","Sphingobacterium siyangense"],["NCBITaxon%3A634159","Sphingobacterium siyangense subsp. cladoniae"],["NCBITaxon%3A341027","Sphingobacterium sp."],["NCBITaxon%3A2681401","Sphingobacterium sp. 18053"],["NCBITaxon%3A2940619","Sphingobacterium sp. BIGb0116"]]},{"id":"GTDB:s__Streptococcus_downei","l":"","na":1,"nb":8,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1317","Streptococcus downei"],["NCBITaxon%3A904293","Streptococcus downei F0415"],["NCBITaxon%3A764290","Streptococcus downei MFe28"],["NCBITaxon%3A1310","Streptococcus sobrinus"],["NCBITaxon%3A1074072","Streptococcus sobrinus TCI-348"],["NCBITaxon%3A1074073","Streptococcus sobrinus TCI-349"]]},{"id":"GTDB:s__Trichormus_sp000009705","l":"","na":1,"nb":8,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["NCBITaxon%3A2692878","Anabaena cylindrica FACHB-170"],["NCBITaxon%3A2692880","Anabaena cylindrica FACHB-318"],["NCBITaxon%3A3403436","Anabaena sp. FACHB-595"],["NCBITaxon%3A1086822","Anabaena sp. FACHB-709"],["NCBITaxon%3A103690","Nostoc sp. PCC 7120 = FACHB-418"],["NCBITaxon%3A2055761","Nostoc sp. UBA8866"]]},{"id":"GTDB:s__Weizmannia_coagulans","l":"","na":1,"nb":8,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"]],"b":[["NCBITaxon%3A1398","Heyndrickxia coagulans"],["NCBITaxon%3A941639","Heyndrickxia coagulans 2-6"],["NCBITaxon%3A1121088","Heyndrickxia coagulans DSM 1 = ATCC 7050"],["NCBITaxon%3A1236905","Heyndrickxia coagulans H-1"],["NCBITaxon%3A1071395","Heyndrickxia coagulans XZL4"],["NCBITaxon%3A2954554","Weizmannia sp. FSL W8-0401"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":1,"nb":8,"a":[["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"]],"b":[["NCBITaxon%3A1061","Rhodobacter capsulatus"],["NCBITaxon%3A1415162","Rhodobacter capsulatus B6"],["NCBITaxon%3A1415160","Rhodobacter capsulatus DE442"],["NCBITaxon%3A1415163","Rhodobacter capsulatus R121"],["NCBITaxon%3A272942","Rhodobacter capsulatus SB 1003"],["NCBITaxon%3A1415161","Rhodobacter capsulatus Y262"]]},{"id":"NCBITaxon:1272","l":"Kocuria varians","na":1,"nb":8,"a":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"]],"b":[["NCBITaxon%3A71999","Kocuria palustris"],["NCBITaxon%3A72000","Kocuria rhizophila"],["NCBITaxon%3A378753","Kocuria rhizophila DC2201"],["NCBITaxon%3A1871328","Kocuria sp."],["NCBITaxon%3A1272","Kocuria varians"],["NCBITaxon%3A1255672","Kocuria varians Mu208"]]},{"id":"NCBITaxon:155322","l":"Bacillus toyonensis","na":1,"nb":8,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A155322","Bacillus toyonensis"],["NCBITaxon%3A1415784","Bacillus toyonensis BCT-7112"],["NCBITaxon%3A2923195","Bacillus toyonensis biovar Thuringiensis"],["NCBITaxon%3A1195464","Bacillus toyonensis biovar Thuringiensis MC28"],["NCBITaxon%3A526981","Bacillus toyonensis Rock1-3"]]},{"id":"NCBITaxon:1655","l":"Actinomyces naeslundii","na":1,"nb":8,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A3050225","Actinomyces acetigenes"],["NCBITaxon%3A544581","Actinomyces johnsonii"],["NCBITaxon%3A1655","Actinomyces naeslundii"],["NCBITaxon%3A240017","Actinomyces naeslundii MG1"],["NCBITaxon%3A1115803","Actinomyces naeslundii str. Howell 279"],["NCBITaxon%3A544580","Actinomyces oris"]]},{"id":"NCBITaxon:40216","l":"Acinetobacter radioresistens","na":1,"nb":8,"a":[["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["NCBITaxon%3A40216","Acinetobacter radioresistens"],["NCBITaxon%3A981334","Acinetobacter radioresistens DSM 6976 = NBRC 102413 = CIP 103788"],["NCBITaxon%3A1217674","Acinetobacter radioresistens NIPH 2130"],["NCBITaxon%3A575589","Acinetobacter radioresistens SH164"],["NCBITaxon%3A596318","Acinetobacter radioresistens SK82"],["NCBITaxon%3A1221310","Acinetobacter radioresistens TG02010"]]},{"id":"NCBITaxon:5552","l":"Trichosporon","na":1,"nb":8,"a":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["NCBITaxon%3A82508","Trichosporon asahii"],["NCBITaxon%3A889963","Trichosporon asahii JCM 2466"],["NCBITaxon%3A82511","Trichosporon asteroides"],["NCBITaxon%3A5553","Trichosporon beigelii"],["NCBITaxon%3A82509","Trichosporon coremiiforme"],["NCBITaxon%3A82510","Trichosporon faecale"]]},{"id":"NCBITaxon:599737","l":"Wickerhamomyces","na":1,"nb":8,"a":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["NCBITaxon%3A1337057","Wickerhamomyces alni"],["NCBITaxon%3A36018","Wickerhamomyces bisporus"],["NCBITaxon%3A1156965","Wickerhamomyces canadensis"],["NCBITaxon%3A432112","Wickerhamomyces jianshihensis"],["NCBITaxon%3A2530061","Wickerhamomyces kurtzmanii"],["NCBITaxon%3A51924","Wickerhamomyces quercuum"]]},{"id":"NCBITaxon:648","l":"Aeromonas caviae","na":1,"nb":8,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["NCBITaxon%3A648","Aeromonas caviae"],["NCBITaxon%3A878320","Aeromonas caviae Ae398"],["NCBITaxon%3A1458270","Aeromonas caviae NM22"],["NCBITaxon%3A1458271","Aeromonas caviae NM33"],["NCBITaxon%3A3418572","Aeromonas caviae subsp. aquatica"],["NCBITaxon%3A644","Aeromonas hydrophila"]]},{"id":"NCBITaxon:94625","l":"Brucella intermedia","na":1,"nb":8,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["NCBITaxon%3A94625","Brucella intermedia"],["NCBITaxon%3A1337887","Brucella intermedia 229E"],["NCBITaxon%3A1444311","Brucella intermedia 2745-2"],["NCBITaxon%3A1328308","Brucella intermedia CCUG 57381"],["NCBITaxon%3A2975438","Brucella intermedia GD04153"],["NCBITaxon%3A903525","Brucella intermedia J2"]]},{"id":"GTDB:s__Bacillus_inaquosorum","l":"","na":1,"nb":7,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"]],"b":[["NCBITaxon%3A483913","Bacillus inaquosorum"],["NCBITaxon%3A1236548","Bacillus inaquosorum KCTC 13429"],["NCBITaxon%3A667304","Bacillus sp. G16"],["NCBITaxon%3A2055158","Bacillus sp. SN1"],["NCBITaxon%3A2834414","Bacillus sp. TSO22"],["NCBITaxon%3A1423","Bacillus subtilis"]]},{"id":"GTDB:s__Bradyrhizobium_japonicum_C","l":"","na":1,"nb":7,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"]],"b":[["NCBITaxon%3A375","Bradyrhizobium japonicum"],["NCBITaxon%3A376","Bradyrhizobium sp."],["NCBITaxon%3A1304878","Bradyrhizobium sp. in8p8"],["NCBITaxon%3A1304879","Bradyrhizobium sp. is5"],["NCBITaxon%3A1736363","Bradyrhizobium sp. Leaf396"],["NCBITaxon%3A2876564","Bradyrhizobium sp. Leaf401"]]},{"id":"GTDB:s__Phaeobacter_inhibens","l":"","na":1,"nb":7,"a":[["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"]],"b":[["NCBITaxon%3A221822","Phaeobacter inhibens"],["NCBITaxon%3A383629","Phaeobacter inhibens 2.10"],["NCBITaxon%3A999548","Phaeobacter inhibens DSM 16374"],["NCBITaxon%3A391619","Phaeobacter inhibens DSM 17395"],["NCBITaxon%3A2907240","Phaeobacter sp. BS34"],["NCBITaxon%3A2818494","Phaeobacter sp. HS011"]]},{"id":"GTDB:s__Prevotella_copri","l":"","na":1,"nb":7,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["NCBITaxon%3A59823","Prevotella sp."],["NCBITaxon%3A1947118","Prevotella sp. UBA2822"],["NCBITaxon%3A165179","Segatella copri"],["NCBITaxon%3A537011","Segatella copri DSM 18205"],["NCBITaxon%3A2974253","Segatella sp."],["NCBITaxon%3A159272","uncultured Prevotella sp."]]},{"id":"GTDB:s__Prochlorococcus_A_sp002026005","l":"","na":1,"nb":7,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A1219","Prochlorococcus marinus"],["NCBITaxon%3A2053475","Prochlorococcus marinus str. MU1414"],["NCBITaxon%3A2716485","Prochlorococcus marinus XMU1414"],["NCBITaxon%3A2774493","Prochlorococcus marinus XMU1420"],["NCBITaxon%3A2774497","Prochlorococcus marinus XMU1424"],["NCBITaxon%3A2162149","Prochlorococcus sp. AG-347-G18"]]},{"id":"GTDB:s__Prochlorococcus_A_sp003280965","l":"","na":1,"nb":7,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2774507","Prochlorococcus marinus CUG1434"],["NCBITaxon%3A2162105","Prochlorococcus sp. AG-355-B18"],["NCBITaxon%3A2162283","Prochlorococcus sp. AG-418-J19"],["NCBITaxon%3A2162294","Prochlorococcus sp. AG-424-A14"],["NCBITaxon%3A2162296","Prochlorococcus sp. AG-424-G03"],["NCBITaxon%3A1471454","Prochlorococcus sp. scB241_528J8"]]},{"id":"GTDB:s__Trichococcus_flocculiformis","l":"","na":1,"nb":7,"a":[["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["NCBITaxon%3A115547","uncultured archaeon"],["NCBITaxon%3A1903720","Bacilli bacterium"],["NCBITaxon%3A82803","Trichococcus flocculiformis"],["NCBITaxon%3A1985464","Trichococcus sp."],["NCBITaxon%3A872292","Trichococcus sp. ES5"],["NCBITaxon%3A1947762","Trichococcus sp. UBA802"]]},{"id":"NCBITaxon:120961","l":"Roseiflexus","na":1,"nb":7,"a":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]],"b":[["NCBITaxon%3A120962","Roseiflexus castenholzii"],["NCBITaxon%3A383372","Roseiflexus castenholzii DSM 13941"],["NCBITaxon%3A2562120","Roseiflexus sp."],["NCBITaxon%3A2814542","Roseiflexus sp. AH-315-K22"],["NCBITaxon%3A2609474","Roseiflexus sp. LECH5"],["NCBITaxon%3A357808","Roseiflexus sp. RS-1"]]},{"id":"NCBITaxon:129001","l":"Syntrophothermus","na":1,"nb":7,"a":[["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"]],"b":[["NCBITaxon%3A86170","Syntrophothermus lipocalidus"],["NCBITaxon%3A643648","Syntrophothermus lipocalidus DSM 12680"],["NCBITaxon%3A2736299","Syntrophothermus sp."],["NCBITaxon%3A1671631","Syntrophothermus sp. DTU052"],["NCBITaxon%3A1947645","Syntrophothermus sp. UBA1445"],["NCBITaxon%3A1947646","Syntrophothermus sp. UBA3927"]]},{"id":"NCBITaxon:1769012","l":"Arachidicoccus","na":1,"nb":7,"a":[["Tomato_Oxylipin_SynCom3.html","Tomato Oxylipin-Protective SynCom3"]],"b":[["NCBITaxon%3A1850526","Arachidicoccus ginsenosidimutans"],["NCBITaxon%3A496057","Arachidicoccus ginsenosidivorans"],["NCBITaxon%3A551991","Arachidicoccus rhizosphaerae"],["NCBITaxon%3A2341117","Arachidicoccus soli"],["NCBITaxon%3A1872624","Arachidicoccus sp."],["NCBITaxon%3A2875539","Arachidicoccus terrestris"]]},{"id":"NCBITaxon:1840214","l":"Lentimicrobium","na":1,"nb":7,"a":[["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"]],"b":[["NCBITaxon%3A1678841","Lentimicrobium saccharophilum"],["NCBITaxon%3A2034841","Lentimicrobium sp."],["NCBITaxon%3A2735916","Lentimicrobium sp. L6"],["NCBITaxon%3A2735872","Lentimicrobium sp. S6"],["NCBITaxon%3A2875483","Lentimicrobium sp. Zuar_12"],["NCBITaxon%3A2875482","Lentimicrobium sp. Zuar_5"]]},{"id":"NCBITaxon:2800685","l":"Pelagerythrobacter","na":1,"nb":7,"a":[["Pelagerythrobacter_Salinicola_PES_Pyrene_Degradation_SynCom.html","Pelagerythrobacter-Salinicola PES Pyrene-Degradation SynCom"]],"b":[["NCBITaxon%3A2306995","Pelagerythrobacter aerophilus"],["NCBITaxon%3A543877","Pelagerythrobacter marensis"],["NCBITaxon%3A538382","Pelagerythrobacter marinus"],["NCBITaxon%3A2268576","Pelagerythrobacter rhizovicinus"],["NCBITaxon%3A2800702","Pelagerythrobacter sp."],["NCBITaxon%3A3050438","Pelagerythrobacter sp. N7"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":1,"nb":7,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["NCBITaxon%3A34073","Variovorax paradoxus"],["NCBITaxon%3A1150395","Variovorax paradoxus 4MFCol3.1"],["NCBITaxon%3A1246301","Variovorax paradoxus B4"],["NCBITaxon%3A595537","Variovorax paradoxus EPS"],["NCBITaxon%3A1321610","Variovorax paradoxus NBRC 15149"],["NCBITaxon%3A543728","Variovorax paradoxus S110"]]},{"id":"NCBITaxon:353","l":"Azotobacter chroococcum","na":1,"nb":7,"a":[["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"]],"b":[["NCBITaxon%3A353","Azotobacter chroococcum"],["NCBITaxon%3A1328314","Azotobacter chroococcum NCIMB 8003"],["NCBITaxon%3A355","Azotobacter chroococcum (strain mcd 1)"],["NCBITaxon%3A2707774","Azotobacter chroococcum subsp. chroococcum"],["NCBITaxon%3A2528971","Azotobacter chroococcum subsp. isscasi"],["NCBITaxon%3A430797","Rubritalea spongiae"]]},{"id":"NCBITaxon:36910","l":"Clavispora","na":1,"nb":7,"a":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["NCBITaxon%3A255214","Clavispora asparagi"],["NCBITaxon%3A1519030","Clavispora carvajalis"],["NCBITaxon%3A46582","Clavispora fructus"],["NCBITaxon%3A36911","Clavispora lusitaniae"],["NCBITaxon%3A36912","Clavispora opuntiae"],["NCBITaxon%3A1212665","Clavispora phyllophila"]]},{"id":"NCBITaxon:40520","l":"Blautia obeum","na":1,"nb":7,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]],"b":[["NCBITaxon%3A40520","Blautia obeum"],["NCBITaxon%3A657314","Blautia obeum A2-162"],["NCBITaxon%3A411459","Blautia obeum ATCC 29174"],["NCBITaxon%3A1263107","Blautia obeum CAG:39"],["NCBITaxon%3A1339609","Blautia obeum TS7.1-1.1"],["NCBITaxon%3A1339610","Blautia obeum TS7.3-1.1"]]},{"id":"NCBITaxon:408","l":"Methylorubrum extorquens","na":1,"nb":7,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["NCBITaxon%3A408","Methylorubrum extorquens"],["NCBITaxon%3A272630","Methylorubrum extorquens AM1"],["NCBITaxon%3A440085","Methylorubrum extorquens CM4"],["NCBITaxon%3A661410","Methylorubrum extorquens DM4"],["NCBITaxon%3A882800","Methylorubrum extorquens DSM 13060"],["NCBITaxon%3A419610","Methylorubrum extorquens PA1"]]},{"id":"NCBITaxon:4948","l":"Torulaspora","na":1,"nb":7,"a":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["NCBITaxon%3A4950","Torulaspora delbrueckii"],["NCBITaxon%3A53488","Torulaspora franciscae"],["NCBITaxon%3A3680291","Torulaspora gathmanii"],["NCBITaxon%3A48254","Torulaspora globosa"],["NCBITaxon%3A200334","Torulaspora maleeae"],["NCBITaxon%3A1136883","Torulaspora microellipsoides"]]},{"id":"NCBITaxon:51669","l":"Tetragenococcus halophilus","na":1,"nb":7,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["NCBITaxon%3A1254","Pediococcus acidilactici"],["NCBITaxon%3A51669","Tetragenococcus halophilus"],["NCBITaxon%3A1004777","Tetragenococcus halophilus HO"],["NCBITaxon%3A945021","Tetragenococcus halophilus NBRC 12172"],["NCBITaxon%3A1513898","Tetragenococcus halophilus subsp. flandriensis"],["NCBITaxon%3A1513897","Tetragenococcus halophilus subsp. halophilus"]]},{"id":"NCBITaxon:54005","l":"Peptoniphilus harei","na":1,"nb":7,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["NCBITaxon%3A54005","Peptoniphilus harei"],["NCBITaxon%3A908338","Peptoniphilus harei ACS-146-V-Sch2b"],["NCBITaxon%3A1339588","Peptoniphilus harei TSDC10.1-1.1"],["NCBITaxon%3A1339589","Peptoniphilus harei TSDC10.1-2.1"],["NCBITaxon%3A1339590","Peptoniphilus harei TSDC17.1-1.1"],["NCBITaxon%3A1339591","Peptoniphilus harei TSDC17.1-2.1"]]},{"id":"NCBITaxon:930166","l":"Pseudomonas brassicacearum","na":1,"nb":7,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["NCBITaxon%3A29299","Nocardioides plantarum"],["NCBITaxon%3A930166","Pseudomonas brassicacearum"],["NCBITaxon%3A1050347","Pseudomonas brassicacearum 51MFCVI2.1"],["NCBITaxon%3A1403314","Pseudomonas brassicacearum PP1_210F"],["NCBITaxon%3A86264","Pseudomonas brassicacearum subsp. brassicacearum"],["NCBITaxon%3A994484","Pseudomonas brassicacearum subsp. brassicacearum NFM421"]]},{"id":"GTDB:s__Azotobacter_vinelandii","l":"","na":1,"nb":6,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["NCBITaxon%3A3083257","Azotobacter sp. NL3"],["NCBITaxon%3A354","Azotobacter vinelandii"],["NCBITaxon%3A1283330","Azotobacter vinelandii CA"],["NCBITaxon%3A1283331","Azotobacter vinelandii CA6"],["NCBITaxon%3A322710","Azotobacter vinelandii DJ"],["NCBITaxon%3A1314750","Azotobacter vinelandii NBRC 13581"]]},{"id":"GTDB:s__Brocadia_sinica","l":"","na":1,"nb":6,"a":[["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"]],"b":[["NCBITaxon%3A795830","Candidatus Brocadia sinica"],["NCBITaxon%3A1197129","Candidatus Brocadia sinica JPN1"],["NCBITaxon%3A2172549","Candidatus Brocadia sp."],["NCBITaxon%3A2164146","Candidatus Brocadia sp. AMX1"],["NCBITaxon%3A2293635","Candidatus Brocadia sp. AMX2"],["NCBITaxon%3A2026780","Planctomycetota bacterium"]]},{"id":"GTDB:s__Clostridium_B_tyrobutyricum","l":"","na":1,"nb":6,"a":[["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["NCBITaxon%3A1898204","Clostridiaceae bacterium"],["NCBITaxon%3A1946365","Clostridium sp. UBA4948"],["NCBITaxon%3A1519","Clostridium tyrobutyricum"],["NCBITaxon%3A1408889","Clostridium tyrobutyricum DIVETGP"],["NCBITaxon%3A1121342","Clostridium tyrobutyricum DSM 2637 = ATCC 25755 = JCM 11008"],["NCBITaxon%3A1212547","Clostridium tyrobutyricum UC7086"]]},{"id":"GTDB:s__Dehalococcoides_mccartyi_A","l":"","na":1,"nb":6,"a":[["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"]],"b":[["NCBITaxon%3A61435","Dehalococcoides mccartyi"],["NCBITaxon%3A1432059","Dehalococcoides mccartyi CG1"],["NCBITaxon%3A1388758","Dehalococcoides mccartyi GY50"],["NCBITaxon%3A311424","Dehalococcoides mccartyi VS"],["NCBITaxon%3A3151601","Dehalococcoides sp. THU3"],["NCBITaxon%3A1522671","Dehalococcoides sp. UCH007"]]},{"id":"GTDB:s__Paracoccus_pantotrophus","l":"","na":1,"nb":6,"a":[["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"]],"b":[["NCBITaxon%3A82367","Paracoccus pantotrophus"],["NCBITaxon%3A936051","Paracoccus pantotrophus J40"],["NCBITaxon%3A935565","Paracoccus pantotrophus J46"],["NCBITaxon%3A3110237","Paracoccus sp. APAP_BH8"],["NCBITaxon%3A3248840","Paracoccus sp. P2"],["NCBITaxon%3A3395918","Paracoccus sp. TD-10"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_I","l":"","na":1,"nb":6,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A167549","Prochlorococcus marinus str. MIT 9321"],["NCBITaxon%3A167550","Prochlorococcus marinus str. MIT 9322"],["NCBITaxon%3A167551","Prochlorococcus marinus str. MIT 9401"],["NCBITaxon%3A3082522","Prochlorococcus sp. MIT 9321"],["NCBITaxon%3A3082529","Prochlorococcus sp. MIT 9322"],["NCBITaxon%3A3082530","Prochlorococcus sp. MIT 9401"]]},{"id":"GTDB:s__Sinorhizobium_medicae","l":"","na":1,"nb":6,"a":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"]],"b":[["NCBITaxon%3A110321","Sinorhizobium medicae"],["NCBITaxon%3A1041148","Sinorhizobium medicae DI28"],["NCBITaxon%3A935558","Sinorhizobium medicae WSM1115"],["NCBITaxon%3A1041149","Sinorhizobium medicae WSM1369"],["NCBITaxon%3A1041150","Sinorhizobium medicae WSM244"],["NCBITaxon%3A366394","Sinorhizobium medicae WSM419"]]},{"id":"GTDB:s__Streptococcus_oralis_BW","l":"","na":1,"nb":6,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A2172545","Streptococcus halitosis"],["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1035190","Streptococcus oralis SK313"],["NCBITaxon%3A1077464","Streptococcus oralis subsp. tigurinus"],["NCBITaxon%3A936580","Streptococcus sp. CM6"],["NCBITaxon%3A83427","uncultured Streptococcus sp."]]},{"id":"GTDB:s__Thermoanaerobacter_pseudethanolicus","l":"","na":1,"nb":6,"a":[["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"]],"b":[["NCBITaxon%3A509193","Thermoanaerobacter brockii subsp. finnii Ako-1"],["NCBITaxon%3A496866","Thermoanaerobacter pseudethanolicus"],["NCBITaxon%3A340099","Thermoanaerobacter pseudethanolicus ATCC 33223"],["NCBITaxon%3A1755","Thermoanaerobacter sp."],["NCBITaxon%3A399726","Thermoanaerobacter sp. X514"],["NCBITaxon%3A29350","Thermoanaerobacter thermocopriae"]]},{"id":"GTDB:s__Thermotoga_maritima","l":"","na":1,"nb":6,"a":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]],"b":[["NCBITaxon%3A2336","Thermotoga maritima"],["NCBITaxon%3A243274","Thermotoga maritima MSB8"],["NCBITaxon%3A1157948","Thermotoga sp. 2812B"],["NCBITaxon%3A1348331","Thermotoga sp. A7A"],["NCBITaxon%3A1157949","Thermotoga sp. EMP"],["NCBITaxon%3A126740","Thermotoga sp. RQ2"]]},{"id":"NCBITaxon:1488","l":"Clostridium acetobutylicum","na":1,"nb":6,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["NCBITaxon%3A1488","Clostridium acetobutylicum"],["NCBITaxon%3A272562","Clostridium acetobutylicum ATCC 824"],["NCBITaxon%3A991791","Clostridium acetobutylicum DSM 1731"],["NCBITaxon%3A863638","Clostridium acetobutylicum EA 2018"],["NCBITaxon%3A1520","Clostridium beijerinckii"],["NCBITaxon%3A1506","Clostridium sp."]]},{"id":"NCBITaxon:1512","l":"[Clostridium] symbiosum","na":1,"nb":6,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["NCBITaxon%3A1506","Clostridium sp."],["NCBITaxon%3A1512","[Clostridium] symbiosum"],["NCBITaxon%3A411472","[Clostridium] symbiosum ATCC 14940"],["NCBITaxon%3A742740","[Clostridium] symbiosum WAL-14163"],["NCBITaxon%3A742741","[Clostridium] symbiosum WAL-14673"],["NCBITaxon%3A854","Fusobacterium russii"]]},{"id":"NCBITaxon:160791","l":"Rhizorhabdus wittichii","na":1,"nb":6,"a":[["Rhizorhabdus_Cupriavidus_BDE47_Degradation_SynCom.html","Rhizorhabdus-Cupriavidus BDE-47 Degradation SynCom"]],"b":[["NCBITaxon%3A160791","Rhizorhabdus wittichii"],["NCBITaxon%3A1283312","Rhizorhabdus wittichii DC-6"],["NCBITaxon%3A400971","Rhizorhabdus wittichii DP58"],["NCBITaxon%3A392499","Rhizorhabdus wittichii RW1"],["NCBITaxon%3A999380","Rhizorhabdus wittichii TTN3"],["NCBITaxon%3A999381","Rhizorhabdus wittichii TTNP3"]]},{"id":"NCBITaxon:2086","l":"Anaeroplasma","na":1,"nb":6,"a":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]],"b":[["NCBITaxon%3A2087","Anaeroplasma abactoclasticum"],["NCBITaxon%3A2088","Anaeroplasma bactoclasticum"],["NCBITaxon%3A2090","Anaeroplasma intermedium"],["NCBITaxon%3A1872523","Anaeroplasma sp."],["NCBITaxon%3A2089","Anaeroplasma varium"],["NCBITaxon%3A538969","uncultured Anaeroplasma sp."]]},{"id":"NCBITaxon:267818","l":"Lactobacillus kefiranofaciens","na":1,"nb":6,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["NCBITaxon%3A267818","Lactobacillus kefiranofaciens"],["NCBITaxon%3A190905","Lactobacillus kefiranofaciens subsp. kefiranofaciens"],["NCBITaxon%3A1423827","Lactobacillus kefiranofaciens subsp. kefiranofaciens DSM 5016 = JCM 6985"],["NCBITaxon%3A190906","Lactobacillus kefiranofaciens subsp. kefirgranum"],["NCBITaxon%3A1423828","Lactobacillus kefiranofaciens subsp. kefirgranum DSM 10550 = JCM 8572"],["NCBITaxon%3A1033837","Lactobacillus kefiranofaciens ZW3"]]},{"id":"NCBITaxon:28171","l":"Vibrio aestuarianus","na":1,"nb":6,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["NCBITaxon%3A28171","Vibrio aestuarianus"],["NCBITaxon%3A617129","Vibrio aestuarianus FF-238"],["NCBITaxon%3A1219075","Vibrio aestuarianus NBRC 15629"],["NCBITaxon%3A2725491","Vibrio aestuarianus subsp. aestuarianus"],["NCBITaxon%3A2807650","Vibrio aestuarianus subsp. cardii"],["NCBITaxon%3A1443279","Vibrio aestuarianus subsp. francensis"]]},{"id":"NCBITaxon:33039","l":"Mediterraneibacter torques","na":1,"nb":6,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A33039","Mediterraneibacter torques"],["NCBITaxon%3A411460","[Ruminococcus] torques ATCC 27756"],["NCBITaxon%3A1263108","[Ruminococcus] torques CAG:61"],["NCBITaxon%3A1422833","[Ruminococcus] torques IX-70"],["NCBITaxon%3A657313","[Ruminococcus] torques L2-14"],["NCBITaxon%3A1422834","[Ruminococcus] torques VIII-239"]]},{"id":"NCBITaxon:33905","l":"Bifidobacterium thermophilum","na":1,"nb":6,"a":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["NCBITaxon%3A650367","Bifidobacterium sp. JCM 7027"],["NCBITaxon%3A650368","Bifidobacterium sp. JCM 7028"],["NCBITaxon%3A33905","Bifidobacterium thermophilum"],["NCBITaxon%3A1437596","Bifidobacterium thermophilum DSM 20210"],["NCBITaxon%3A1410648","Bifidobacterium thermophilum DSM 20212"],["NCBITaxon%3A1254439","Bifidobacterium thermophilum RBL67"]]},{"id":"NCBITaxon:39645","l":"Mesorhizobium ciceri","na":1,"nb":6,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A39645","Mesorhizobium ciceri"],["NCBITaxon%3A278148","Mesorhizobium ciceri biovar biserrulae"],["NCBITaxon%3A765698","Mesorhizobium ciceri biovar biserrulae WSM1271"],["NCBITaxon%3A682633","Mesorhizobium ciceri ca181"],["NCBITaxon%3A1040980","Mesorhizobium ciceri CMG6"],["NCBITaxon%3A1040981","Mesorhizobium ciceri WSM4083"]]},{"id":"NCBITaxon:47880","l":"Pseudomonas fulva","na":1,"nb":6,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["NCBITaxon%3A157783","Pseudomonas cremoricolorata"],["NCBITaxon%3A1215098","Pseudomonas cremoricolorata DSM 17059 = NBRC 16634"],["NCBITaxon%3A47880","Pseudomonas fulva"],["NCBITaxon%3A743720","Pseudomonas fulva 12-X"],["NCBITaxon%3A1215102","Pseudomonas fulva NBRC 16637 = DSM 17717"],["NCBITaxon%3A306","Pseudomonas sp."]]},{"id":"GTDB:s__Flavobacterium_johnsoniae","l":"","na":1,"nb":5,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A986","Flavobacterium johnsoniae"],["NCBITaxon%3A376686","Flavobacterium johnsoniae UW101"],["NCBITaxon%3A3453866","Flavobacterium sp. 22076"],["NCBITaxon%3A3453953","Flavobacterium sp. 22659"],["NCBITaxon%3A3025667","Flavobacterium sp. KACC 22758"]]},{"id":"GTDB:s__Herbaspirillum_frisingense","l":"","na":1,"nb":5,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]],"b":[["NCBITaxon%3A92645","Herbaspirillum frisingense"],["NCBITaxon%3A864073","Herbaspirillum frisingense GSF30"],["NCBITaxon%3A2058884","Herbaspirillum sp. BH-1"],["NCBITaxon%3A2736666","Herbaspirillum sp. C7C2"],["NCBITaxon%3A1953765","Herbaspirillum sp. VT-16-41"]]},{"id":"GTDB:s__Lactobacillus_kefiranofaciens","l":"","na":1,"nb":5,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["NCBITaxon%3A267818","Lactobacillus kefiranofaciens"],["NCBITaxon%3A190905","Lactobacillus kefiranofaciens subsp. kefiranofaciens"],["NCBITaxon%3A1423827","Lactobacillus kefiranofaciens subsp. kefiranofaciens DSM 5016 = JCM 6985"],["NCBITaxon%3A190906","Lactobacillus kefiranofaciens subsp. kefirgranum"],["NCBITaxon%3A1423828","Lactobacillus kefiranofaciens subsp. kefirgranum DSM 10550 = JCM 8572"]]},{"id":"GTDB:s__Marinobacter_adhaerens","l":"","na":1,"nb":5,"a":[["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]],"b":[["NCBITaxon%3A1916082","Alteromonadaceae bacterium"],["NCBITaxon%3A1033846","Marinobacter adhaerens"],["NCBITaxon%3A225937","Marinobacter adhaerens HP15"],["NCBITaxon%3A2485141","Marinobacter sp. 3-2"],["NCBITaxon%3A1766722","Marinobacter sp. YWL01"]]},{"id":"GTDB:s__Methanosarcina_barkeri_B","l":"","na":5,"nb":1,"a":[["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["DVM_Triculture.html","DVM Tri-culture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["NCBITaxon%3A1434109","Methanosarcina barkeri str. Wiesmoor"]]},{"id":"GTDB:s__Methylobacterium_thiocyanatum","l":"","na":1,"nb":5,"a":[["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"]],"b":[["NCBITaxon%3A2021371","Methylobacteriaceae bacterium"],["NCBITaxon%3A2699470","Methylobacterium sp. ISTM1"],["NCBITaxon%3A223967","Methylorubrum populi"],["NCBITaxon%3A441620","Methylorubrum populi BJ001"],["NCBITaxon%3A47958","Methylorubrum thiocyanatum"]]},{"id":"GTDB:s__Neorhizobium_tomejilense","l":"","na":1,"nb":5,"a":[["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["NCBITaxon%3A323656","Neorhizobium galegae bv. officinalis"],["NCBITaxon%3A2093830","Neorhizobium sp. T25_13"],["NCBITaxon%3A2093831","Neorhizobium sp. T25_27"],["NCBITaxon%3A2093832","Neorhizobium sp. T7_12"],["NCBITaxon%3A2093828","Neorhizobium tomejilense"]]},{"id":"GTDB:s__Pelosinus_fermentans","l":"","na":1,"nb":5,"a":[["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"]],"b":[["NCBITaxon%3A365349","Pelosinus fermentans"],["NCBITaxon%3A1149860","Pelosinus fermentans A11"],["NCBITaxon%3A1149862","Pelosinus fermentans B4"],["NCBITaxon%3A1122947","Pelosinus fermentans DSM 17108"],["NCBITaxon%3A1235479","Pelosinus sp. HCF1"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_N","l":"","na":1,"nb":5,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A59921","Prochlorococcus marinus str. MIT 9107"],["NCBITaxon%3A167544","Prochlorococcus marinus str. MIT 9116"],["NCBITaxon%3A167545","Prochlorococcus marinus str. MIT 9123"],["NCBITaxon%3A3082533","Prochlorococcus sp. MIT 9116"],["NCBITaxon%3A3082523","Prochlorococcus sp. MIT 9123"]]},{"id":"GTDB:s__Streptococcus_dentisani","l":"","na":1,"nb":5,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A28037","Streptococcus mitis"],["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1458253","Streptococcus oralis subsp. dentisani"],["NCBITaxon%3A1297857","Streptococcus oralis subsp. dentisani 7747"],["NCBITaxon%3A563037","Streptococcus sp. M143"]]},{"id":"GTDB:s__Streptococcus_oralis","l":"","na":1,"nb":5,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A655813","Streptococcus oralis ATCC 35037"],["NCBITaxon%3A1095739","Streptococcus oralis SK10"],["NCBITaxon%3A1891914","Streptococcus oralis subsp. oralis"],["NCBITaxon%3A83427","uncultured Streptococcus sp."]]},{"id":"GTDB:s__Streptococcus_oralis_AC","l":"","na":1,"nb":5,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A28037","Streptococcus mitis"],["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1458253","Streptococcus oralis subsp. dentisani"],["NCBITaxon%3A1297534","Streptococcus oralis subsp. dentisani 7746"],["NCBITaxon%3A77133","uncultured bacterium"]]},{"id":"GTDB:s__Streptococcus_oralis_F","l":"","na":1,"nb":5,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1077464","Streptococcus oralis subsp. tigurinus"],["NCBITaxon%3A1282665","Streptococcus oralis subsp. tigurinus 1366"],["NCBITaxon%3A1333864","Streptococcus oralis subsp. tigurinus 2425"],["NCBITaxon%3A1333865","Streptococcus oralis subsp. tigurinus 2426"]]},{"id":"GTDB:s__Streptococcus_oralis_W","l":"","na":1,"nb":5,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1095738","Streptococcus oralis SK1074"],["NCBITaxon%3A1161414","Streptococcus sp. BS21"],["NCBITaxon%3A1161415","Streptococcus sp. BS29a"],["NCBITaxon%3A1105032","Streptococcus sp. BS35b"]]},{"id":"GTDB:s__Thermacetogenium_phaeum","l":"","na":1,"nb":5,"a":[["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]],"b":[["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A2044939","Clostridia bacterium"],["NCBITaxon%3A85874","Thermacetogenium phaeum"],["NCBITaxon%3A1089553","Thermacetogenium phaeum DSM 12270"],["NCBITaxon%3A2883543","Thermacetogenium sp."]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":1,"nb":5,"a":[["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["NCBITaxon%3A119219","Cupriavidus metallidurans"],["NCBITaxon%3A266264","Cupriavidus metallidurans CH34"],["NCBITaxon%3A1395123","Cupriavidus metallidurans H1130"],["NCBITaxon%3A1218106","Cupriavidus metallidurans NBRC 101272"],["NCBITaxon%3A1873897","Cupriavidus sp."]]},{"id":"NCBITaxon:13366","l":"Brettanomyces","na":1,"nb":5,"a":[["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"]],"b":[["NCBITaxon%3A37662","Brettanomyces anomalus"],["NCBITaxon%3A5007","Brettanomyces bruxellensis"],["NCBITaxon%3A13368","Brettanomyces custersianus"],["NCBITaxon%3A13370","Brettanomyces naardenensis"],["NCBITaxon%3A13502","Brettanomyces nanus"]]},{"id":"NCBITaxon:1501","l":"Clostridium pasteurianum","na":1,"nb":5,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["NCBITaxon%3A1501","Clostridium pasteurianum"],["NCBITaxon%3A86416","Clostridium pasteurianum BC1"],["NCBITaxon%3A1262449","Clostridium pasteurianum DSM 525 = ATCC 6013"],["NCBITaxon%3A1341159","Clostridium pasteurianum TK"],["NCBITaxon%3A1506","Clostridium sp."]]},{"id":"NCBITaxon:1521555","l":"Eucapsis","na":1,"nb":5,"a":[["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"]],"b":[["NCBITaxon%3A1521556","Eucapsis minor"],["NCBITaxon%3A1521638","Eucapsis minor SAG 14.99"],["NCBITaxon%3A1929276","Eucapsis sp. 019"],["NCBITaxon%3A2975497","Eucapsis sp. M64187e-7883"],["NCBITaxon%3A2094040","Eucapsis sp. UTEX LB 1519"]]},{"id":"NCBITaxon:1589","l":"Lactiplantibacillus pentosus","na":1,"nb":5,"a":[["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["NCBITaxon%3A1589","Lactiplantibacillus pentosus"],["NCBITaxon%3A1423791","Lactiplantibacillus pentosus DSM 20314"],["NCBITaxon%3A1042160","Lactiplantibacillus pentosus IG1"],["NCBITaxon%3A1136177","Lactiplantibacillus pentosus KCA1"],["NCBITaxon%3A1028490","Lactiplantibacillus pentosus MP-10"]]},{"id":"NCBITaxon:1648923","l":"Bacillus paralicheniformis","na":1,"nb":5,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"]],"b":[["NCBITaxon%3A1402","Bacillus licheniformis"],["NCBITaxon%3A3450803","Bacillus [licheniformis] CMCC 63516"],["NCBITaxon%3A1648923","Bacillus paralicheniformis"],["NCBITaxon%3A766760","Bacillus paralicheniformis ATCC 9945a"],["NCBITaxon%3A1413213","Bacillus paralicheniformis G-1"]]},{"id":"NCBITaxon:295577","l":"Chthoniobacter","na":1,"nb":5,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["NCBITaxon%3A191863","Chthoniobacter flavus"],["NCBITaxon%3A497964","Chthoniobacter flavus Ellin428"],["NCBITaxon%3A2510640","Chthoniobacter sp."],["NCBITaxon%3A1970334","Chthoniobacter sp. 12-60-6"],["NCBITaxon%3A1133324","uncultured Chthoniobacter sp."]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":1,"nb":5,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["NCBITaxon%3A354","Azotobacter vinelandii"],["NCBITaxon%3A1283330","Azotobacter vinelandii CA"],["NCBITaxon%3A1283331","Azotobacter vinelandii CA6"],["NCBITaxon%3A322710","Azotobacter vinelandii DJ"],["NCBITaxon%3A1314750","Azotobacter vinelandii NBRC 13581"]]},{"id":"NCBITaxon:545","l":"Citrobacter koseri","na":1,"nb":5,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["NCBITaxon%3A545","Citrobacter koseri"],["NCBITaxon%3A1308729","Citrobacter koseri ADL-326"],["NCBITaxon%3A1308730","Citrobacter koseri ADL-328"],["NCBITaxon%3A290338","Citrobacter koseri ATCC BAA-895"],["NCBITaxon%3A573","Klebsiella pneumoniae"]]},{"id":"NCBITaxon:5544","l":"Trichoderma harzianum","na":5,"nb":1,"a":[["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"],["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"],["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["NCBITaxon%3A5544","Trichoderma harzianum"]]},{"id":"NCBITaxon:61648","l":"Kluyvera intermedia","na":1,"nb":5,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["NCBITaxon%3A1896336","Citrobacter sp."],["NCBITaxon%3A61648","Kluyvera intermedia"],["NCBITaxon%3A1218113","Kluyvera intermedia NBRC 102594 = ATCC 33110"],["NCBITaxon%3A1255704","Kluyvera intermedia TL336_A"],["NCBITaxon%3A1539298","Treponema sp. OMZ 838"]]},{"id":"NCBITaxon:74969","l":"Ferroplasma acidiphilum","na":5,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["NCBITaxon%3A74969","Ferroplasma acidiphilum"]]},{"id":"NCBITaxon:76759","l":"Pseudomonas monteilii","na":1,"nb":5,"a":[["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"]],"b":[["NCBITaxon%3A76759","Pseudomonas monteilii"],["NCBITaxon%3A1215110","Pseudomonas monteilii NBRC 103158 = DSM 14164"],["NCBITaxon%3A1123524","Pseudomonas monteilii QM"],["NCBITaxon%3A1435044","Pseudomonas monteilii SB3078"],["NCBITaxon%3A1435058","Pseudomonas monteilii SB3101"]]},{"id":"NCBITaxon:82367","l":"Paracoccus pantotrophus","na":1,"nb":5,"a":[["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"]],"b":[["NCBITaxon%3A266","Paracoccus denitrificans"],["NCBITaxon%3A1302247","Paracoccus denitrificans JCM 21484"],["NCBITaxon%3A82367","Paracoccus pantotrophus"],["NCBITaxon%3A936051","Paracoccus pantotrophus J40"],["NCBITaxon%3A935565","Paracoccus pantotrophus J46"]]},{"id":"NCBITaxon:86664","l":"Priestia flexa","na":1,"nb":5,"a":[["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"]],"b":[["NCBITaxon%3A86664","Priestia flexa"],["NCBITaxon%3A1169142","Priestia flexa 121MFChir2"],["NCBITaxon%3A1292043","Priestia flexa 27Col1.1E"],["NCBITaxon%3A1348625","Priestia flexa NBRC 15715"],["NCBITaxon%3A1444310","Priestia flexa T6186-2"]]},{"id":"NCBITaxon:876","l":"Desulfovibrio desulfuricans","na":1,"nb":5,"a":[["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"]],"b":[["NCBITaxon%3A876","Desulfovibrio desulfuricans"],["NCBITaxon%3A525146","Desulfovibrio desulfuricans ATCC 27774"],["NCBITaxon%3A1121445","Desulfovibrio desulfuricans DSM 642"],["NCBITaxon%3A885","Desulfovibrio sp."],["NCBITaxon%3A126333","Halodesulfovibrio aestuarii"]]},{"id":"NCBITaxon:986","l":"Flavobacterium johnsoniae","na":1,"nb":5,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A2704140","Flavobacterium bizetiae"],["NCBITaxon%3A986","Flavobacterium johnsoniae"],["NCBITaxon%3A994","Flavobacterium johnsoniae subsp. aurantiacum"],["NCBITaxon%3A376686","Flavobacterium johnsoniae UW101"],["NCBITaxon%3A1337839","Flavobacterium sp. DSM 425"]]},{"id":"GTDB:s__Acidocella_facilis","l":"","na":1,"nb":4,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"]],"b":[["NCBITaxon%3A525","Acidocella facilis"],["NCBITaxon%3A1408419","Acidocella facilis ATCC 35904"],["NCBITaxon%3A1214225","Acidocella sp. MX-AZ02"],["NCBITaxon%3A2697363","Acidocella sp. MX-AZ03"]]},{"id":"GTDB:s__Caldibacillus_debilis","l":"","na":1,"nb":4,"a":[["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"]],"b":[["NCBITaxon%3A1889774","Bacillaceae bacterium"],["NCBITaxon%3A301148","Caldibacillus debilis"],["NCBITaxon%3A1121917","Caldibacillus debilis DSM 16016"],["NCBITaxon%3A1339248","Caldibacillus debilis GB1"]]},{"id":"GTDB:s__Caldicellulosiruptor_acetigenus","l":"","na":1,"nb":4,"a":[["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"]],"b":[["NCBITaxon%3A301953","Caldicellulosiruptor acetigenus"],["NCBITaxon%3A632516","Caldicellulosiruptor acetigenus 6A"],["NCBITaxon%3A1121259","Caldicellulosiruptor acetigenus DSM 7040"],["NCBITaxon%3A632335","Caldicellulosiruptor acetigenus I77R1B"]]},{"id":"GTDB:s__Caldicellulosiruptor_saccharolyticus","l":"","na":1,"nb":4,"a":[["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"]],"b":[["NCBITaxon%3A44001","Caldicellulosiruptor saccharolyticus"],["NCBITaxon%3A351627","Caldicellulosiruptor saccharolyticus DSM 8903"],["NCBITaxon%3A3019889","Caldicellulosiruptor sp. DIB 104C"],["NCBITaxon%3A1214564","Caldicellulosiruptor sp. F32"]]},{"id":"GTDB:s__Cupriavidus_necator_D","l":"","na":1,"nb":4,"a":[["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"]],"b":[["NCBITaxon%3A106590","Cupriavidus necator"],["NCBITaxon%3A381666","Cupriavidus necator H16"],["NCBITaxon%3A1218105","Cupriavidus necator NBRC 102504"],["NCBITaxon%3A1229514","Cupriavidus sp. GA3-3"]]},{"id":"GTDB:s__Hydrogenophaga_pseudoflava","l":"","na":1,"nb":4,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["NCBITaxon%3A47421","Hydrogenophaga pseudoflava"],["NCBITaxon%3A1349792","Hydrogenophaga pseudoflava NBRC 102511"],["NCBITaxon%3A1882399","Hydrogenophaga sp. H7"],["NCBITaxon%3A2184519","Hydrogenophaga sp. NH-16"]]},{"id":"GTDB:s__Hyphomicrobium_C_zavarzinii","l":"","na":1,"nb":4,"a":[["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["NCBITaxon%3A82","Hyphomicrobium sp."],["NCBITaxon%3A3019544","Hyphomicrobium sp. DMF-1"],["NCBITaxon%3A48292","Hyphomicrobium zavarzinii"],["NCBITaxon%3A1267005","Hyphomicrobium zavarzinii ATCC 27496"]]},{"id":"GTDB:s__Methylobacterium_tardum","l":"","na":1,"nb":4,"a":[["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"]],"b":[["NCBITaxon%3A1909294","Hyphomicrobiales bacterium"],["NCBITaxon%3A2817895","Methylobacterium sp. OAE515"],["NCBITaxon%3A374432","Methylobacterium tardum"],["NCBITaxon%3A157278","uncultured Methylobacterium sp."]]},{"id":"GTDB:s__Nostoc_muscorum_A","l":"","na":1,"nb":4,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["NCBITaxon%3A2692907","Desmonostoc muscorum FACHB-395"],["NCBITaxon%3A76335","Nostoc sp. ATCC 53789"],["NCBITaxon%3A2576903","Nostoc sp. C057"],["NCBITaxon%3A3349876","Nostoc sp. C110"]]},{"id":"GTDB:s__Paenibacillus_G_mucilaginosus","l":"","na":1,"nb":4,"a":[["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["NCBITaxon%3A61624","Paenibacillus mucilaginosus"],["NCBITaxon%3A1116391","Paenibacillus mucilaginosus 3016"],["NCBITaxon%3A997761","Paenibacillus mucilaginosus K02"],["NCBITaxon%3A1036673","Paenibacillus mucilaginosus KNP414"]]},{"id":"GTDB:s__Paraburkholderia_caribensis","l":"","na":1,"nb":4,"a":[["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"]],"b":[["NCBITaxon%3A1561197","Burkholderia sp. E7m48"],["NCBITaxon%3A75105","Paraburkholderia caribensis"],["NCBITaxon%3A1323664","Paraburkholderia caribensis MBA4"],["NCBITaxon%3A2831520","Paraburkholderia sp. XV"]]},{"id":"GTDB:s__Paracoccus_denitrificans","l":"","na":1,"nb":4,"a":[["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"]],"b":[["NCBITaxon%3A266","Paracoccus denitrificans"],["NCBITaxon%3A318586","Paracoccus denitrificans PD1222"],["NCBITaxon%3A267","Paracoccus sp. (in: a-proteobacteria)"],["NCBITaxon%3A3050636","Paracoccus sp. SSJ"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_E","l":"","na":1,"nb":4,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A167546","Prochlorococcus marinus str. MIT 9301"],["NCBITaxon%3A2162170","Prochlorococcus sp. AG-355-P15"],["NCBITaxon%3A3082524","Prochlorococcus sp. MIT 1205"],["NCBITaxon%3A3082525","Prochlorococcus sp. MIT 1304"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_V","l":"","na":1,"nb":4,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A1219","Prochlorococcus marinus"],["NCBITaxon%3A2774503","Prochlorococcus marinus CUG1430"],["NCBITaxon%3A2053473","Prochlorococcus marinus str. MU1411"],["NCBITaxon%3A2716483","Prochlorococcus marinus XMU1411"]]},{"id":"GTDB:s__Streptococcus_mitis","l":"","na":1,"nb":4,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A28037","Streptococcus mitis"],["NCBITaxon%3A1415766","Streptococcus mitis 27/7"],["NCBITaxon%3A246201","Streptococcus mitis NCTC 12261"],["NCBITaxon%3A1403937","Streptococcus sp. DORA_10"]]},{"id":"GTDB:s__Streptococcus_mitis_N","l":"","na":1,"nb":4,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A28037","Streptococcus mitis"],["NCBITaxon%3A1035187","Streptococcus mitis SK569"],["NCBITaxon%3A1095735","Streptococcus mitis SK616"],["NCBITaxon%3A257758","Streptococcus pseudopneumoniae"]]},{"id":"GTDB:s__Streptococcus_oralis_E","l":"","na":1,"nb":4,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1077464","Streptococcus oralis subsp. tigurinus"],["NCBITaxon%3A1282664","Streptococcus oralis subsp. tigurinus AZ_3a"],["NCBITaxon%3A83427","uncultured Streptococcus sp."]]},{"id":"GTDB:s__Streptococcus_oralis_T","l":"","na":1,"nb":4,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1005704","Streptococcus oralis SK255"],["NCBITaxon%3A1077464","Streptococcus oralis subsp. tigurinus"],["NCBITaxon%3A864570","Streptococcus sp. oral taxon 071 str. 73H25AP"]]},{"id":"GTDB:s__Streptococcus_salivarius","l":"","na":1,"nb":4,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["NCBITaxon%3A1335","Streptococcus equinus"],["NCBITaxon%3A1304","Streptococcus salivarius"],["NCBITaxon%3A1263109","Streptococcus salivarius CAG:79"],["NCBITaxon%3A1581080","Streptococcus sp. HMSC10E12"]]},{"id":"GTDB:s__Syntrophus_aciditrophicus","l":"","na":1,"nb":4,"a":[["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"]],"b":[["NCBITaxon%3A1961443","Syntrophaceae bacterium UBA5726"],["NCBITaxon%3A316277","Syntrophus aciditrophicus"],["NCBITaxon%3A56780","Syntrophus aciditrophicus SB"],["NCBITaxon%3A1823758","Syntrophus sp. PtaB.Bin075"]]},{"id":"GTDB:s__Thermoanaerobacterium_thermosaccharolyticum","l":"","na":1,"nb":4,"a":[["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]],"b":[["NCBITaxon%3A1517","Thermoanaerobacterium thermosaccharolyticum"],["NCBITaxon%3A580327","Thermoanaerobacterium thermosaccharolyticum DSM 571"],["NCBITaxon%3A698948","Thermoanaerobacterium thermosaccharolyticum M0795"],["NCBITaxon%3A937254","Thermohydrogenium kirishiense"]]},{"id":"GTDB:s__Variovorax_paradoxus","l":"","na":1,"nb":4,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["NCBITaxon%3A34073","Variovorax paradoxus"],["NCBITaxon%3A1150395","Variovorax paradoxus 4MFCol3.1"],["NCBITaxon%3A1321610","Variovorax paradoxus NBRC 15149"],["NCBITaxon%3A3065953","Variovorax sp. V116"]]},{"id":"GTDB:s__Variovorax_paradoxus_C","l":"","na":1,"nb":4,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["NCBITaxon%3A436515","Variovorax boronicumulans"],["NCBITaxon%3A595537","Variovorax paradoxus EPS"],["NCBITaxon%3A3042309","Variovorax sp. W1I1"],["NCBITaxon%3A3042290","Variovorax sp. W2I14"]]},{"id":"NCBITaxon:1183412","l":"Agrobacterium deltae","na":1,"nb":4,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["NCBITaxon%3A1183412","Agrobacterium deltae"],["NCBITaxon%3A1183425","Agrobacterium deltaense NCPPB 1641"],["NCBITaxon%3A1183426","Agrobacterium deltaense RV3"],["NCBITaxon%3A1183427","Agrobacterium deltaense Zutra 3/1"]]},{"id":"NCBITaxon:1249","l":"Weissella paramesenteroides","na":1,"nb":4,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["NCBITaxon%3A1930076","Leuconostoc sp."],["NCBITaxon%3A46256","Weissella hellenica"],["NCBITaxon%3A1249","Weissella paramesenteroides"],["NCBITaxon%3A585506","Weissella paramesenteroides ATCC 33313"]]},{"id":"NCBITaxon:132919","l":"Rhodococcus jostii","na":1,"nb":4,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["NCBITaxon%3A1850366","Paenibacillus rhizophilus"],["NCBITaxon%3A132919","Rhodococcus jostii"],["NCBITaxon%3A1219017","Rhodococcus jostii NBRC 16295"],["NCBITaxon%3A101510","Rhodococcus jostii RHA1"]]},{"id":"NCBITaxon:1517","l":"Thermoanaerobacterium thermosaccharolyticum","na":1,"nb":4,"a":[["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]],"b":[["NCBITaxon%3A1517","Thermoanaerobacterium thermosaccharolyticum"],["NCBITaxon%3A698949","Thermoanaerobacterium thermosaccharolyticum 33"],["NCBITaxon%3A580327","Thermoanaerobacterium thermosaccharolyticum DSM 571"],["NCBITaxon%3A698948","Thermoanaerobacterium thermosaccharolyticum M0795"]]},{"id":"NCBITaxon:1519","l":"Clostridium tyrobutyricum","na":1,"nb":4,"a":[["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["NCBITaxon%3A1519","Clostridium tyrobutyricum"],["NCBITaxon%3A1408889","Clostridium tyrobutyricum DIVETGP"],["NCBITaxon%3A1121342","Clostridium tyrobutyricum DSM 2637 = ATCC 25755 = JCM 11008"],["NCBITaxon%3A1212547","Clostridium tyrobutyricum UC7086"]]},{"id":"NCBITaxon:1673","l":"Rhizobium viscosum","na":1,"nb":4,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A1281486","Lactococcus formosensis"],["NCBITaxon%3A1850438","Lactococcus formosensis subsp. bovis"],["NCBITaxon%3A1673","Rhizobium viscosum"],["NCBITaxon%3A83428","uncultured Bacillus sp."]]},{"id":"NCBITaxon:172042","l":"Rothia aeria","na":1,"nb":4,"a":[["FourSpecies_Aerobic_Lung_Microbiome_Model.html","Four-Species Aerobic Lung Microbiome Model"]],"b":[["NCBITaxon%3A172042","Rothia aeria"],["NCBITaxon%3A888019","Rothia aeria F0184"],["NCBITaxon%3A1125724","Rothia aeria F0474"],["NCBITaxon%3A2047","Rothia dentocariosa"]]},{"id":"NCBITaxon:192","l":"Azospirillum brasilense","na":1,"nb":4,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"]],"b":[["NCBITaxon%3A1064539","Azospirillum baldaniorum"],["NCBITaxon%3A192","Azospirillum brasilense"],["NCBITaxon%3A1117321","Azospirillum brasilense CBG497"],["NCBITaxon%3A1262469","Azospirillum brasilense FP2"]]},{"id":"NCBITaxon:252970","l":"Paraburkholderia phenoliruptrix","na":1,"nb":4,"a":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]],"b":[["NCBITaxon%3A252970","Paraburkholderia phenoliruptrix"],["NCBITaxon%3A1337996","Paraburkholderia phenoliruptrix AC1100"],["NCBITaxon%3A1229205","Paraburkholderia phenoliruptrix BR3459a"],["NCBITaxon%3A1926495","Paraburkholderia sp."]]},{"id":"NCBITaxon:258","l":"Sphingobacterium spiritivorum","na":1,"nb":4,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["NCBITaxon%3A649196","Sphingobacterium hotanense"],["NCBITaxon%3A258","Sphingobacterium spiritivorum"],["NCBITaxon%3A525372","Sphingobacterium spiritivorum ATCC 33300"],["NCBITaxon%3A525373","Sphingobacterium spiritivorum ATCC 33861"]]},{"id":"NCBITaxon:2597222","l":"Candidatus Acidulidesulfobacterium","na":1,"nb":4,"a":[["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["NCBITaxon%3A2597224","Candidatus Acidulidesulfobacterium acidiphilum"],["NCBITaxon%3A2597223","Candidatus Acidulidesulfobacterium ferriphilum"],["NCBITaxon%3A2940279","Candidatus Acidulodesulfobacterium sp."],["NCBITaxon%3A3395470","Candidatus Acidulodesulfobacterium sp. H_13"]]},{"id":"NCBITaxon:29442","l":"Pseudomonas tolaasii","na":1,"nb":4,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["NCBITaxon%3A29442","Pseudomonas tolaasii"],["NCBITaxon%3A1161101","Pseudomonas tolaasii 6264"],["NCBITaxon%3A564423","Pseudomonas tolaasii NCPPB 2192"],["NCBITaxon%3A1030145","Pseudomonas tolaasii PMS117"]]},{"id":"NCBITaxon:33010","l":"Cutibacterium avidum","na":1,"nb":4,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["NCBITaxon%3A33010","Cutibacterium avidum"],["NCBITaxon%3A1170318","Cutibacterium avidum 44067"],["NCBITaxon%3A997355","Cutibacterium avidum ATCC 25577"],["NCBITaxon%3A1292372","Cutibacterium avidum TM16"]]},{"id":"NCBITaxon:33011","l":"Cutibacterium granulosum","na":1,"nb":4,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["NCBITaxon%3A33011","Cutibacterium granulosum"],["NCBITaxon%3A1160719","Cutibacterium granulosum DSM 20700"],["NCBITaxon%3A553200","Cutibacterium granulosum JCVIHMP029"],["NCBITaxon%3A1292373","Cutibacterium granulosum TM11"]]},{"id":"NCBITaxon:380021","l":"Pseudomonas protegens","na":1,"nb":4,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["NCBITaxon%3A380021","Pseudomonas protegens"],["NCBITaxon%3A1420599","Pseudomonas protegens Cab57"],["NCBITaxon%3A1124983","Pseudomonas protegens CHA0"],["NCBITaxon%3A220664","Pseudomonas protegens Pf-5"]]},{"id":"NCBITaxon:5480","l":"Lodderomyces parapsilosis","na":1,"nb":4,"a":[["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"]],"b":[["NCBITaxon%3A48076","Marinobacterium iners"],["NCBITaxon%3A5480","Lodderomyces parapsilosis"],["NCBITaxon%3A1231521","Lodderomyces parapsilosis CAB50-2638"],["NCBITaxon%3A578454","Lodderomyces parapsilosis CDC317"]]},{"id":"NCBITaxon:59814","l":"Pantoea dispersa","na":1,"nb":4,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["NCBITaxon%3A59814","Pantoea dispersa"],["NCBITaxon%3A1440057","Pantoea dispersa 625"],["NCBITaxon%3A1358411","Pantoea dispersa EGD-AAK13"],["NCBITaxon%3A69393","Pantoea sp."]]},{"id":"NCBITaxon:61624","l":"Paenibacillus mucilaginosus","na":1,"nb":4,"a":[["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["NCBITaxon%3A61624","Paenibacillus mucilaginosus"],["NCBITaxon%3A1116391","Paenibacillus mucilaginosus 3016"],["NCBITaxon%3A997761","Paenibacillus mucilaginosus K02"],["NCBITaxon%3A1036673","Paenibacillus mucilaginosus KNP414"]]},{"id":"NCBITaxon:72360","l":"Bacillus mojavensis","na":1,"nb":4,"a":[["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["NCBITaxon%3A260554","Bacillus halotolerans"],["NCBITaxon%3A72360","Bacillus mojavensis"],["NCBITaxon%3A1051501","Bacillus mojavensis RO-H-1 = KCTC 3706"],["NCBITaxon%3A1329377","Bacillus mojavensis RRC 101"]]},{"id":"NCBITaxon:75105","l":"Paraburkholderia caribensis","na":1,"nb":4,"a":[["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"]],"b":[["NCBITaxon%3A75105","Paraburkholderia caribensis"],["NCBITaxon%3A1160706","Paraburkholderia caribensis HM582870"],["NCBITaxon%3A1323664","Paraburkholderia caribensis MBA4"],["NCBITaxon%3A1338010","Paraburkholderia caribensis XV"]]},{"id":"NCBITaxon:971","l":"Pseudoselenomonas ruminantium","na":1,"nb":4,"a":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"]],"b":[["NCBITaxon%3A971","Pseudoselenomonas ruminantium"],["NCBITaxon%3A1392501","Selenomonas ruminantium AC2024"],["NCBITaxon%3A114196","Selenomonas ruminantium subsp. ruminantium"],["NCBITaxon%3A1280706","Selenomonas ruminantium subsp. ruminantium ATCC 12561"]]},{"id":"NCBITaxon:97393","l":"Ferroplasma acidarmanus","na":1,"nb":4,"a":[["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"]],"b":[["NCBITaxon%3A261389","environmental samples"],["NCBITaxon%3A97393","Ferroplasma acidarmanus"],["NCBITaxon%3A333146","Ferroplasma acidarmanus Fer1"],["NCBITaxon%3A261390","Ferroplasma acidarmanus Type I"]]},{"id":"GTDB:s__Acetobacter_fabarum","l":"","na":1,"nb":3,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["NCBITaxon%3A483199","Acetobacter fabarum"],["NCBITaxon%3A1307906","Acetobacter fabarum DSM 19596"],["NCBITaxon%3A1670660","Acetobacter sp. DsW_54"]]},{"id":"GTDB:s__Anabaena_cylindrica","l":"","na":1,"nb":3,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["NCBITaxon%3A2692879","Anabaena cylindrica FACHB-243"],["NCBITaxon%3A272123","Anabaena cylindrica PCC 7122"],["NCBITaxon%3A1296340","Anabaena sp. PCC 7938"]]},{"id":"GTDB:s__Anaeromyxobacter_dehalogenans","l":"","na":1,"nb":3,"a":[["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"]],"b":[["NCBITaxon%3A161493","Anaeromyxobacter dehalogenans"],["NCBITaxon%3A455488","Anaeromyxobacter dehalogenans 2CP-1"],["NCBITaxon%3A447217","Anaeromyxobacter sp. K"]]},{"id":"GTDB:s__Azospirillum_brasilense","l":"","na":1,"nb":3,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"]],"b":[["NCBITaxon%3A192","Azospirillum brasilense"],["NCBITaxon%3A1262469","Azospirillum brasilense FP2"],["NCBITaxon%3A1685931","Azospirillum sp. Sp 7"]]},{"id":"GTDB:s__Azotobacter_chroococcum","l":"","na":1,"nb":3,"a":[["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"]],"b":[["NCBITaxon%3A353","Azotobacter chroococcum"],["NCBITaxon%3A1328314","Azotobacter chroococcum NCIMB 8003"],["NCBITaxon%3A2528971","Azotobacter chroococcum subsp. isscasi"]]},{"id":"GTDB:s__Blautia_A_hydrogenotrophica","l":"","na":1,"nb":3,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A53443","Blautia hydrogenotrophica"],["NCBITaxon%3A1263061","Blautia hydrogenotrophica CAG:147"],["NCBITaxon%3A476272","Blautia hydrogenotrophica DSM 10507"]]},{"id":"GTDB:s__Clostridium_K_cellulovorans","l":"","na":3,"nb":1,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"]],"b":[["NCBITaxon%3A573061","Clostridium cellulovorans 743B"]]},{"id":"GTDB:s__Desulfovibrio_piger","l":"","na":1,"nb":3,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A901","Desulfovibrio piger"],["NCBITaxon%3A411464","Desulfovibrio piger ATCC 29098"],["NCBITaxon%3A885","Desulfovibrio sp."]]},{"id":"GTDB:s__Desulfovibrio_piger_A","l":"","na":1,"nb":3,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A901","Desulfovibrio piger"],["NCBITaxon%3A167968","uncultured Desulfovibrio sp."],["NCBITaxon%3A172733","uncultured Eubacteriales bacterium"]]},{"id":"GTDB:s__Dinoroseobacter_shibae","l":"","na":1,"nb":3,"a":[["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"]],"b":[["NCBITaxon%3A215813","Dinoroseobacter shibae"],["NCBITaxon%3A398580","Dinoroseobacter shibae DFL 12 = DSM 16493"],["NCBITaxon%3A3028384","Dinoroseobacter sp. PD6"]]},{"id":"GTDB:s__Ferrimicrobium_acidiphilum","l":"","na":1,"nb":3,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"]],"b":[["NCBITaxon%3A1883427","Actinomycetes bacterium"],["NCBITaxon%3A121039","Ferrimicrobium acidiphilum"],["NCBITaxon%3A1121877","Ferrimicrobium acidiphilum DSM 19497"]]},{"id":"GTDB:s__Hungateiclostridium_straminisolvens","l":"","na":1,"nb":3,"a":[["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"]],"b":[["NCBITaxon%3A253314","Acetivibrio straminisolvens"],["NCBITaxon%3A1294263","Acetivibrio straminisolvens JCM 21531"],["NCBITaxon%3A1950858","Clostridiales bacterium UBA3578"]]},{"id":"GTDB:s__Lactiplantibacillus_paraplantarum","l":"","na":1,"nb":3,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"]],"b":[["NCBITaxon%3A60520","Lactiplantibacillus paraplantarum"],["NCBITaxon%3A1423789","Lactiplantibacillus paraplantarum DSM 10667"],["NCBITaxon%3A1590","Lactiplantibacillus plantarum"]]},{"id":"GTDB:s__Methanocrinis_harundinaceus","l":"","na":1,"nb":3,"a":[["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"]],"b":[["NCBITaxon%3A1674799","Methanosarcinales archaeon Methan_02"],["NCBITaxon%3A301375","Methanothrix harundinacea"],["NCBITaxon%3A1110509","Methanothrix harundinacea 6Ac"]]},{"id":"GTDB:s__Methanosarcina_barkeri_A","l":"","na":3,"nb":1,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["NCBITaxon%3A1434107","Methanosarcina barkeri 3"]]},{"id":"GTDB:s__Nostoc_muscorum","l":"","na":1,"nb":3,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["NCBITaxon%3A2756293","Desmonostoc muscorum CCALA 125"],["NCBITaxon%3A1828758","Desmonostoc muscorum LEGE 12446"],["NCBITaxon%3A2692844","Nostoc sp. FACHB-973"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_AB","l":"","na":1,"nb":3,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2053470","Prochlorococcus marinus str. MU1405"],["NCBITaxon%3A2053471","Prochlorococcus marinus str. MU1406"],["NCBITaxon%3A2716480","Prochlorococcus marinus XMU1405"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_AF","l":"","na":1,"nb":3,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A1219","Prochlorococcus marinus"],["NCBITaxon%3A2053474","Prochlorococcus marinus str. MU1412"],["NCBITaxon%3A2716484","Prochlorococcus marinus XMU1412"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_B","l":"","na":1,"nb":3,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A167548","Prochlorococcus marinus str. MIT 9314"],["NCBITaxon%3A3082534","Prochlorococcus sp. MIT 9314"],["NCBITaxon%3A159733","uncultured Prochlorococcus sp."]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_D","l":"","na":1,"nb":3,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A59926","Prochlorococcus marinus str. SB"],["NCBITaxon%3A2162156","Prochlorococcus sp. AG-347-I22"],["NCBITaxon%3A2162292","Prochlorococcus sp. AG-418-P13"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_J","l":"","na":1,"nb":3,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A59925","Prochlorococcus marinus str. GP2"],["NCBITaxon%3A167554","Prochlorococcus marinus str. SS51"],["NCBITaxon%3A3082550","Synechococcus sp. MIT S9506"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_L","l":"","na":1,"nb":3,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A167547","Prochlorococcus marinus str. MIT 9311"],["NCBITaxon%3A74546","Prochlorococcus marinus str. MIT 9312"],["NCBITaxon%3A3082528","Prochlorococcus sp. MIT 9311"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_M","l":"","na":1,"nb":3,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A74545","Prochlorococcus marinus str. MIT 9302"],["NCBITaxon%3A2162278","Prochlorococcus sp. AG-412-A14"],["NCBITaxon%3A159733","uncultured Prochlorococcus sp."]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_Q","l":"","na":1,"nb":3,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A1041938","Prochlorococcus marinus bv. HNLC1"],["NCBITaxon%3A1203261","Prochlorococcus sp. W2"],["NCBITaxon%3A159733","uncultured Prochlorococcus sp."]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_X","l":"","na":1,"nb":3,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2774505","Prochlorococcus marinus CUG1432"],["NCBITaxon%3A2053469","Prochlorococcus marinus str. MU1404"],["NCBITaxon%3A2716479","Prochlorococcus marinus XMU1404"]]},{"id":"GTDB:s__Prochlorococcus_A_sp003212755","l":"","na":1,"nb":3,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2716487","Prochlorococcus marinus CUG1416"],["NCBITaxon%3A2053477","Prochlorococcus marinus str. MU1416"],["NCBITaxon%3A2162308","Prochlorococcus sp. AG-436-A04"]]},{"id":"GTDB:s__Ruegeria_B_pomeroyi","l":"","na":1,"nb":3,"a":[["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["NCBITaxon%3A89184","Ruegeria pomeroyi"],["NCBITaxon%3A246200","Ruegeria pomeroyi DSS-3"],["NCBITaxon%3A1879320","Ruegeria sp."]]},{"id":"GTDB:s__Selenomonas_A_ruminantium_B","l":"","na":1,"nb":3,"a":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"]],"b":[["NCBITaxon%3A971","Pseudoselenomonas ruminantium"],["NCBITaxon%3A1392501","Selenomonas ruminantium AC2024"],["NCBITaxon%3A1408313","Selenomonas sp. FC4001"]]},{"id":"GTDB:s__Selenomonas_sp905372355","l":"","na":1,"nb":3,"a":[["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"]],"b":[["NCBITaxon%3A936381","Selenomonas sp. CM52"],["NCBITaxon%3A69823","Selenomonas sputigena"],["NCBITaxon%3A159275","uncultured Selenomonas sp."]]},{"id":"GTDB:s__Streptococcus_oralis_BC","l":"","na":1,"nb":3,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A888049","Streptococcus oralis ATCC 49296"],["NCBITaxon%3A83427","uncultured Streptococcus sp."]]},{"id":"GTDB:s__Stutzerimonas_songnenensis","l":"","na":1,"nb":3,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]],"b":[["NCBITaxon%3A1914538","Pseudomonadaceae bacterium"],["NCBITaxon%3A1176259","Pseudomonas songnenensis"],["NCBITaxon%3A316","Stutzerimonas stutzeri"]]},{"id":"GTDB:s__Sulfobacillus_benefaciens","l":"","na":1,"nb":3,"a":[["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"]],"b":[["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A453960","Sulfobacillus benefaciens"],["NCBITaxon%3A33949","Sulfobacillus sp."]]},{"id":"GTDB:s__Thiothrix_nivea","l":"","na":1,"nb":3,"a":[["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"]],"b":[["NCBITaxon%3A1031","Thiothrix nivea"],["NCBITaxon%3A870187","Thiothrix nivea DSM 5205"],["NCBITaxon%3A1032","Thiothrix sp."]]},{"id":"NCBITaxon:106592","l":"Ensifer adhaerens","na":1,"nb":3,"a":[["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["NCBITaxon%3A106592","Ensifer adhaerens"],["NCBITaxon%3A1416753","Ensifer adhaerens OV14"],["NCBITaxon%3A1113910","Ensifer sp. NBRC 102459"]]},{"id":"NCBITaxon:133926","l":"Olsenella uli","na":1,"nb":3,"a":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["NCBITaxon%3A133926","Olsenella uli"],["NCBITaxon%3A633147","Olsenella uli DSM 7084"],["NCBITaxon%3A1190621","Olsenella uli MSTE5"]]},{"id":"NCBITaxon:13690","l":"Sphingobium yanoikuyae","na":1,"nb":3,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["NCBITaxon%3A13690","Sphingobium yanoikuyae"],["NCBITaxon%3A883163","Sphingobium yanoikuyae ATCC 51230"],["NCBITaxon%3A1074493","Sphingobium yanoikuyae XLDN2-5"]]},{"id":"NCBITaxon:1399","l":"Cytobacillus firmus","na":1,"nb":3,"a":[["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"]],"b":[["NCBITaxon%3A1399","Cytobacillus firmus"],["NCBITaxon%3A1307436","Cytobacillus firmus DS1"],["NCBITaxon%3A1314753","Cytobacillus firmus NBRC 15306"]]},{"id":"NCBITaxon:161493","l":"Anaeromyxobacter dehalogenans","na":1,"nb":3,"a":[["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"]],"b":[["NCBITaxon%3A161493","Anaeromyxobacter dehalogenans"],["NCBITaxon%3A455488","Anaeromyxobacter dehalogenans 2CP-1"],["NCBITaxon%3A290397","Anaeromyxobacter dehalogenans 2CP-C"]]},{"id":"NCBITaxon:165179","l":"Segatella copri","na":1,"nb":3,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["NCBITaxon%3A165179","Segatella copri"],["NCBITaxon%3A1263102","Segatella copri CAG:164"],["NCBITaxon%3A537011","Segatella copri DSM 18205"]]},{"id":"NCBITaxon:1667","l":"Arthrobacter sp.","na":3,"nb":1,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["NCBITaxon%3A1667","Arthrobacter sp."]]},{"id":"NCBITaxon:1785","l":"Mycobacterium sp.","na":1,"nb":3,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]],"b":[["NCBITaxon%3A722731","Mycobacterium shigaense"],["NCBITaxon%3A1785","Mycobacterium sp."],["NCBITaxon%3A1792835","Mycolicibacter icosiumassiliensis"]]},{"id":"NCBITaxon:1817801","l":"Candidatus Eiseniibacteriota","na":1,"nb":3,"a":[["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"]],"b":[["NCBITaxon%3A1817856","Candidatus Eisenbacteria bacterium RBG_16_71_46"],["NCBITaxon%3A1817857","Candidatus Eisenbacteria bacterium RBG_19FT_COMBO_70_11"],["NCBITaxon%3A2212470","Candidatus Eiseniibacteriota bacterium"]]},{"id":"NCBITaxon:1920","l":"Streptomyces nigrescens","na":1,"nb":3,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A1128671","Microvirga arabica"],["NCBITaxon%3A249582","Streptomyces libani subsp. rufus"],["NCBITaxon%3A1920","Streptomyces nigrescens"]]},{"id":"NCBITaxon:198620","l":"Pseudomonas koreensis","na":3,"nb":1,"a":[["FourSpecies_Aerobic_Lung_Microbiome_Model.html","Four-Species Aerobic Lung Microbiome Model"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A198620","Pseudomonas koreensis"]]},{"id":"NCBITaxon:2034504","l":"Sulfurivermis","na":1,"nb":3,"a":[["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"]],"b":[["NCBITaxon%3A1972068","Sulfurivermis fontis"],["NCBITaxon%3A2034505","Sulfurivermis sp."],["NCBITaxon%3A2034507","uncultured Sulfurivermis sp."]]},{"id":"NCBITaxon:216778","l":"Stenotrophomonas rhizophila","na":1,"nb":3,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"]],"b":[["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A216778","Stenotrophomonas rhizophila"],["NCBITaxon%3A1255680","Stenotrophomonas rhizophila PCA13"]]},{"id":"NCBITaxon:2487276","l":"Bacillus cabrialesii","na":1,"nb":3,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["NCBITaxon%3A2487276","Bacillus cabrialesii"],["NCBITaxon%3A3045387","Bacillus cabrialesii subsp. cabrialesii"],["NCBITaxon%3A2944916","Bacillus cabrialesii subsp. tritici"]]},{"id":"NCBITaxon:250","l":"Chryseobacterium gleum","na":1,"nb":3,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["NCBITaxon%3A250","Chryseobacterium gleum"],["NCBITaxon%3A525257","Chryseobacterium gleum ATCC 35910"],["NCBITaxon%3A1871047","Chryseobacterium sp."]]},{"id":"NCBITaxon:256701","l":"Glutamicibacter arilaitensis","na":1,"nb":3,"a":[["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"]],"b":[["NCBITaxon%3A256701","Glutamicibacter arilaitensis"],["NCBITaxon%3A1255604","Glutamicibacter arilaitensis 3M03"],["NCBITaxon%3A861360","Glutamicibacter arilaitensis Re117"]]},{"id":"NCBITaxon:273371","l":"Lodderomyces orthopsilosis","na":1,"nb":3,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["NCBITaxon%3A273371","Lodderomyces orthopsilosis"],["NCBITaxon%3A1213353","Lodderomyces orthopsilosis AY2"],["NCBITaxon%3A1136231","Lodderomyces orthopsilosis Co 90-125"]]},{"id":"NCBITaxon:301148","l":"Caldibacillus debilis","na":1,"nb":3,"a":[["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"]],"b":[["NCBITaxon%3A301148","Caldibacillus debilis"],["NCBITaxon%3A1121917","Caldibacillus debilis DSM 16016"],["NCBITaxon%3A1339248","Caldibacillus debilis GB1"]]},{"id":"NCBITaxon:301375","l":"Methanothrix harundinacea","na":1,"nb":3,"a":[["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"]],"b":[["NCBITaxon%3A301375","Methanothrix harundinacea"],["NCBITaxon%3A1110509","Methanothrix harundinacea 6Ac"],["NCBITaxon%3A1127228","Methanothrix harundinacea 8Ac"]]},{"id":"NCBITaxon:3041","l":"Chlorophyta","na":3,"nb":1,"a":[["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"]],"b":[["NCBITaxon%3A2812611","Micromonas sp."]]},{"id":"NCBITaxon:3386252","l":"Candidatus Methanogaster","na":1,"nb":3,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"]],"b":[["NCBITaxon%3A3386292","Candidatus Methanogaster sp."],["NCBITaxon%3A2759911","Candidatus Methanogaster sp. ANME-2c ERB4"],["NCBITaxon%3A1915703","Candidatus Methanogaster sp. UBA203"]]},{"id":"NCBITaxon:44752","l":"Rhodococcus wratislaviensis","na":1,"nb":3,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["NCBITaxon%3A44752","Rhodococcus wratislaviensis"],["NCBITaxon%3A1195242","Rhodococcus wratislaviensis IFP 2016"],["NCBITaxon%3A1219028","Rhodococcus wratislaviensis NBRC 100605"]]},{"id":"NCBITaxon:455252","l":"Methylonatrum","na":1,"nb":3,"a":[["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]],"b":[["NCBITaxon%3A455253","Methylonatrum kenyense"],["NCBITaxon%3A1500898","Methylonatrum sp. JGI ETNP_125m_186_B11"],["NCBITaxon%3A546220","uncultured Methylonatrum sp."]]},{"id":"NCBITaxon:460519","l":"Komagataella phaffii","na":1,"nb":3,"a":[["Komagataella_Ecoli_Coinducible_Biosynthesis_Coculture.html","Komagataella-E. coli Co-inducible Biosynthesis Coculture"]],"b":[["NCBITaxon%3A460519","Komagataella phaffii"],["NCBITaxon%3A981350","Komagataella phaffii CBS 7435"],["NCBITaxon%3A644223","Komagataella phaffii GS115"]]},{"id":"NCBITaxon:470150","l":"Pseudomonas taiwanensis","na":1,"nb":3,"a":[["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["NCBITaxon%3A470150","Pseudomonas taiwanensis"],["NCBITaxon%3A1292030","Pseudomonas taiwanensis DSM 21245"],["NCBITaxon%3A1388762","Pseudomonas taiwanensis SJ9"]]},{"id":"NCBITaxon:47920","l":"Acidovorax delafieldii","na":1,"nb":3,"a":[["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["NCBITaxon%3A47920","Acidovorax delafieldii"],["NCBITaxon%3A573060","Acidovorax delafieldii 2AN"],["NCBITaxon%3A80878","Acidovorax temperans"]]},{"id":"NCBITaxon:48292","l":"Hyphomicrobium zavarzinii","na":1,"nb":3,"a":[["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["NCBITaxon%3A48292","Hyphomicrobium zavarzinii"],["NCBITaxon%3A1267005","Hyphomicrobium zavarzinii ATCC 27496"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:483","l":"Neisseria cinerea","na":1,"nb":3,"a":[["FourSpecies_Aerobic_Lung_Microbiome_Model.html","Four-Species Aerobic Lung Microbiome Model"]],"b":[["NCBITaxon%3A483","Neisseria cinerea"],["NCBITaxon%3A546262","Neisseria cinerea ATCC 14685"],["NCBITaxon%3A192066","Neisseria sp."]]},{"id":"NCBITaxon:53443","l":"Blautia hydrogenotrophica","na":1,"nb":3,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A53443","Blautia hydrogenotrophica"],["NCBITaxon%3A1263061","Blautia hydrogenotrophica CAG:147"],["NCBITaxon%3A476272","Blautia hydrogenotrophica DSM 10507"]]},{"id":"NCBITaxon:53633","l":"Sulfobacillus acidophilus","na":1,"nb":3,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["NCBITaxon%3A53633","Sulfobacillus acidophilus"],["NCBITaxon%3A679936","Sulfobacillus acidophilus DSM 10332"],["NCBITaxon%3A1051632","Sulfobacillus acidophilus TPY"]]},{"id":"NCBITaxon:565","l":"Atlantibacter hermannii","na":1,"nb":3,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["NCBITaxon%3A565","Atlantibacter hermannii"],["NCBITaxon%3A1115512","Atlantibacter hermannii NBRC 105704"],["NCBITaxon%3A564","Escherichia fergusonii"]]},{"id":"NCBITaxon:573657","l":"Candidatus Hodgkinia","na":1,"nb":3,"a":[["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"]],"b":[["NCBITaxon%3A573658","Candidatus Hodgkinia cicadicola"],["NCBITaxon%3A573234","Candidatus Hodgkinia cicadicola Dsem"],["NCBITaxon%3A2741067","Candidatus Hodgkinia sp."]]},{"id":"NCBITaxon:67372","l":"Streptomyces variabilis","na":1,"nb":3,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["NCBITaxon%3A29305","Streptomyces griseoincarnatus"],["NCBITaxon%3A67372","Streptomyces variabilis"],["NCBITaxon%3A377639","Streptomyces variabilis subsp. roseolus"]]},{"id":"NCBITaxon:69823","l":"Selenomonas sputigena","na":1,"nb":3,"a":[["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"]],"b":[["NCBITaxon%3A2053611","Selenomonas sp."],["NCBITaxon%3A69823","Selenomonas sputigena"],["NCBITaxon%3A546271","Selenomonas sputigena ATCC 35185"]]},{"id":"NCBITaxon:72361","l":"Bacillus vallismortis","na":1,"nb":3,"a":[["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"]],"b":[["NCBITaxon%3A72361","Bacillus vallismortis"],["NCBITaxon%3A1051502","Bacillus vallismortis DV1-F-3"],["NCBITaxon%3A564287","Bacillus vallismortis NRRL B-14890"]]},{"id":"NCBITaxon:901","l":"Desulfovibrio piger","na":1,"nb":3,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A901","Desulfovibrio piger"],["NCBITaxon%3A411464","Desulfovibrio piger ATCC 29098"],["NCBITaxon%3A613189","Desulfovibrio piger GOR1"]]},{"id":"GTDB:s__Acidisphaera_rubrifaciens","l":"","na":1,"nb":2,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"]],"b":[["NCBITaxon%3A50715","Acidisphaera rubrifaciens"],["NCBITaxon%3A1231350","Acidisphaera rubrifaciens HS-AP3"]]},{"id":"GTDB:s__Actinomyces_naeslundii","l":"","na":1,"nb":2,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1655","Actinomyces naeslundii"],["NCBITaxon%3A1115803","Actinomyces naeslundii str. Howell 279"]]},{"id":"GTDB:s__Bradyrhizobium_huanghuaihaiense","l":"","na":1,"nb":2,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"]],"b":[["NCBITaxon%3A990078","Bradyrhizobium huanghuaihaiense"],["NCBITaxon%3A1038862","Bradyrhizobium japonicum USDA 124"]]},{"id":"GTDB:s__Butyrivibrio_fibrisolvens","l":"","na":1,"nb":2,"a":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"]],"b":[["NCBITaxon%3A831","Butyrivibrio fibrisolvens"],["NCBITaxon%3A1121131","Butyrivibrio fibrisolvens DSM 3071"]]},{"id":"GTDB:s__Caldicellulosiruptor_bescii","l":"","na":1,"nb":2,"a":[["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["NCBITaxon%3A31899","Caldicellulosiruptor bescii"],["NCBITaxon%3A521460","Caldicellulosiruptor bescii DSM 6725"]]},{"id":"GTDB:s__Cellulomonas_fimi","l":"","na":1,"nb":2,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["NCBITaxon%3A1708","Cellulomonas fimi"],["NCBITaxon%3A590998","Cellulomonas fimi ATCC 484"]]},{"id":"GTDB:s__Clostridium_AM_carboxidivorans","l":"","na":1,"nb":2,"a":[["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"]],"b":[["NCBITaxon%3A536227","Clostridium carboxidivorans P7"],["NCBITaxon%3A3064705","Clostridium sp. JS66"]]},{"id":"GTDB:s__Clostridium_I_pasteurianum","l":"","na":1,"nb":2,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["NCBITaxon%3A1501","Clostridium pasteurianum"],["NCBITaxon%3A1262449","Clostridium pasteurianum DSM 525 = ATCC 6013"]]},{"id":"GTDB:s__Desulfovibrio_desulfuricans","l":"","na":1,"nb":2,"a":[["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"]],"b":[["NCBITaxon%3A876","Desulfovibrio desulfuricans"],["NCBITaxon%3A1121445","Desulfovibrio desulfuricans DSM 642"]]},{"id":"GTDB:s__Desulfovibrio_sp944327285","l":"","na":1,"nb":2,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A901","Desulfovibrio piger"],["NCBITaxon%3A167968","uncultured Desulfovibrio sp."]]},{"id":"GTDB:s__Dolosigranulum_pigrum","l":"","na":1,"nb":2,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"]],"b":[["NCBITaxon%3A29394","Dolosigranulum pigrum"],["NCBITaxon%3A883103","Dolosigranulum pigrum ATCC 51524"]]},{"id":"GTDB:s__Dyadobacter_sp017744695","l":"","na":2,"nb":1,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["NCBITaxon%3A1914288","Dyadobacter sp."]]},{"id":"GTDB:s__Lachnoclostridium_phytofermentans","l":"","na":2,"nb":1,"a":[["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"]],"b":[["NCBITaxon%3A357809","Lachnoclostridium phytofermentans ISDg"]]},{"id":"GTDB:s__Lactiplantibacillus_plantarum_A","l":"","na":1,"nb":2,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"]],"b":[["NCBITaxon%3A1136177","Lactiplantibacillus pentosus KCA1"],["NCBITaxon%3A1382301","Lactiplantibacillus plantarum EGD-AQ4"]]},{"id":"GTDB:s__Marvinbryantia_formatexigens","l":"","na":1,"nb":2,"a":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"]],"b":[["NCBITaxon%3A168384","Marvinbryantia formatexigens"],["NCBITaxon%3A478749","Marvinbryantia formatexigens DSM 14469"]]},{"id":"GTDB:s__Methanocaldococcus_jannaschii","l":"","na":1,"nb":2,"a":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]],"b":[["NCBITaxon%3A2190","Methanocaldococcus jannaschii"],["NCBITaxon%3A243232","Methanocaldococcus jannaschii DSM 2661"]]},{"id":"GTDB:s__Methanocella_conradii","l":"","na":1,"nb":2,"a":[["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"]],"b":[["NCBITaxon%3A1175444","Methanocella conradii"],["NCBITaxon%3A1041930","Methanocella conradii HZ254"]]},{"id":"GTDB:s__Methylacidiphilum_infernorum","l":"","na":1,"nb":2,"a":[["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"]],"b":[["NCBITaxon%3A511746","Candidatus Methylacidiphilum infernorum"],["NCBITaxon%3A481448","Methylacidiphilum infernorum V4"]]},{"id":"GTDB:s__Methylocaldum_marinum","l":"","na":2,"nb":1,"a":[["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"]],"b":[["NCBITaxon%3A1432792","Methylocaldum marinum"]]},{"id":"GTDB:s__Methylocystis_parva","l":"","na":1,"nb":2,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"]],"b":[["NCBITaxon%3A134","Methylocystis parvus"],["NCBITaxon%3A1134912","Methylocystis parvus OBBP"]]},{"id":"GTDB:s__Methylosarcina_fibrata","l":"","na":1,"nb":2,"a":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["NCBITaxon%3A105972","Methylosarcina fibrata"],["NCBITaxon%3A1132443","Methylosarcina fibrata AML-C10"]]},{"id":"GTDB:s__Microcoleus_vaginatus_A","l":"","na":1,"nb":2,"a":[["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]],"b":[["NCBITaxon%3A756067","Microcoleus vaginatus FGP-2"],["NCBITaxon%3A669365","Microcoleus vaginatus PCC 9802"]]},{"id":"GTDB:s__Mucispirillum_schaedleri","l":"","na":1,"nb":2,"a":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"]],"b":[["NCBITaxon%3A248039","Mucispirillum schaedleri"],["NCBITaxon%3A1379858","Mucispirillum schaedleri ASF457"]]},{"id":"GTDB:s__Nitrobacter_winogradskyi_A","l":"","na":2,"nb":1,"a":[["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["NCBITaxon%3A913","Nitrobacter winogradskyi"]]},{"id":"GTDB:s__Papillibacter_cinnamivorans","l":"","na":1,"nb":2,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"]],"b":[["NCBITaxon%3A100176","Papillibacter cinnamivorans"],["NCBITaxon%3A1122930","Papillibacter cinnamivorans DSM 12816"]]},{"id":"GTDB:s__Planococcus_halocryophilus","l":"","na":1,"nb":2,"a":[["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"]],"b":[["NCBITaxon%3A1215089","Planococcus halocryophilus"],["NCBITaxon%3A1005941","Planococcus halocryophilus Or1"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_A","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A93058","Prochlorococcus marinus str. MIT 9202"],["NCBITaxon%3A93060","Prochlorococcus marinus str. MIT 9215"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_AC","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2053467","Prochlorococcus marinus str. MU1402"],["NCBITaxon%3A2716478","Prochlorococcus marinus XMU1402"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_AD","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2054182","Prochlorococcus marinus str. XMU1419"],["NCBITaxon%3A2716489","Prochlorococcus marinus XMU1419"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_AE","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2716486","Prochlorococcus marinus CUG1415"],["NCBITaxon%3A2053476","Prochlorococcus marinus str. MU1415"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_AG","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2716488","Prochlorococcus marinus CUG1417"],["NCBITaxon%3A2053478","Prochlorococcus marinus str. MU1417"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_H","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A1219","Prochlorococcus marinus"],["NCBITaxon%3A2774501","Prochlorococcus marinus XMU1428"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_T","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A1041939","Prochlorococcus marinus bv. HNLC2"],["NCBITaxon%3A159733","uncultured Prochlorococcus sp."]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_U","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2774504","Prochlorococcus marinus CUG1431"],["NCBITaxon%3A2774506","Prochlorococcus marinus CUG1433"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_W","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2716481","Prochlorococcus marinus XMU1406"],["NCBITaxon%3A2774500","Prochlorococcus marinus XMU1427"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_Y","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2774512","Prochlorococcus marinus CUG1439"],["NCBITaxon%3A3096220","Prochlorococcus sp. MIT 1314"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_Z","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2053472","Prochlorococcus marinus str. MU1410"],["NCBITaxon%3A2716482","Prochlorococcus marinus XMU1410"]]},{"id":"GTDB:s__Prochlorococcus_A_sp003213375","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2774510","Prochlorococcus marinus CUG1437"],["NCBITaxon%3A2162293","Prochlorococcus sp. AG-424-A03"]]},{"id":"GTDB:s__Prochlorococcus_A_sp003278705","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2774509","Prochlorococcus marinus CUG1436"],["NCBITaxon%3A2162112","Prochlorococcus sp. AG-355-J23"]]},{"id":"GTDB:s__Prochlorococcus_B_marinus_A","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2053971","Prochlorococcus marinus str. XMU1408"],["NCBITaxon%3A2213228","Prochlorococcus marinus XMU1408"]]},{"id":"GTDB:s__Prochlorococcus_B_marinus_C","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A1570009","Prochlorococcus marinus str. MIT 0912"],["NCBITaxon%3A1570010","Prochlorococcus marinus str. MIT 0913"]]},{"id":"GTDB:s__Prochlorococcus_D_sp000760175","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A3014998","Prochlorococcus marinus str. MIT 0919"],["NCBITaxon%3A1499498","Prochlorococcus sp. MIT 0601"]]},{"id":"GTDB:s__Pseudobutyrivibrio_fibrisolvens_A","l":"","na":1,"nb":2,"a":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"]],"b":[["NCBITaxon%3A831","Butyrivibrio fibrisolvens"],["NCBITaxon%3A657324","Butyrivibrio fibrisolvens 16/4"]]},{"id":"GTDB:s__Rhodanobacter_thiooxydans","l":"","na":1,"nb":2,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"]],"b":[["NCBITaxon%3A416169","Rhodanobacter thiooxydans"],["NCBITaxon%3A1163409","Rhodanobacter thiooxydans LCS2"]]},{"id":"GTDB:s__Rhodopseudomonas_palustris_J","l":"","na":2,"nb":1,"a":[["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["NCBITaxon%3A316058","Rhodopseudomonas palustris HaA2"]]},{"id":"GTDB:s__Sphaerochaeta_globosa","l":"","na":1,"nb":2,"a":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"]],"b":[["NCBITaxon%3A1131703","Sphaerochaeta globosa"],["NCBITaxon%3A158189","Sphaerochaeta globosa str. Buddy"]]},{"id":"GTDB:s__Sphingomonas_desiccabilis","l":"","na":2,"nb":1,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["NCBITaxon%3A429134","Sphingomonas desiccabilis"]]},{"id":"GTDB:s__Sphingomonas_panni","l":"","na":1,"nb":2,"a":[["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["NCBITaxon%3A237612","Sphingomonas panni"],["NCBITaxon%3A158754","uncultured Sphingomonas sp."]]},{"id":"GTDB:s__Streptococcus_mitis_AI","l":"","na":1,"nb":2,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1239793","Streptococcus mitis 13/39"],["NCBITaxon%3A1303","Streptococcus oralis"]]},{"id":"GTDB:s__Streptococcus_mitis_AR","l":"","na":1,"nb":2,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A365659","Streptococcus mitis B6"],["NCBITaxon%3A83427","uncultured Streptococcus sp."]]},{"id":"GTDB:s__Streptococcus_mitis_AW","l":"","na":1,"nb":2,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A28037","Streptococcus mitis"],["NCBITaxon%3A1340484","Streptococcus mitis 17/34"]]},{"id":"GTDB:s__Streptococcus_mitis_AX","l":"","na":1,"nb":2,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A28037","Streptococcus mitis"],["NCBITaxon%3A768726","Streptococcus mitis bv. 2 str. F0392"]]},{"id":"GTDB:s__Streptococcus_mitis_CK","l":"","na":1,"nb":2,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A28037","Streptococcus mitis"],["NCBITaxon%3A585202","Streptococcus mitis SK321"]]},{"id":"GTDB:s__Streptococcus_mitis_L","l":"","na":1,"nb":2,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A28037","Streptococcus mitis"],["NCBITaxon%3A1095737","Streptococcus mitis SK579"]]},{"id":"GTDB:s__Streptococcus_oralis_Y","l":"","na":1,"nb":2,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1161421","Streptococcus oralis SK304"]]},{"id":"GTDB:s__Stutzerimonas_stutzeri_C","l":"","na":2,"nb":1,"a":[["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["NCBITaxon%3A477228","Stutzerimonas stutzeri TS44"]]},{"id":"GTDB:s__Variovorax_paradoxus_E","l":"","na":1,"nb":2,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["NCBITaxon%3A34073","Variovorax paradoxus"],["NCBITaxon%3A1246301","Variovorax paradoxus B4"]]},{"id":"GTDB:s__Vreelandella_boliviensis","l":"","na":1,"nb":2,"a":[["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"]],"b":[["NCBITaxon%3A223527","Vreelandella boliviensis"],["NCBITaxon%3A1072583","Vreelandella boliviensis LC1"]]},{"id":"NCBITaxon:100176","l":"Papillibacter cinnamivorans","na":1,"nb":2,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"]],"b":[["NCBITaxon%3A100176","Papillibacter cinnamivorans"],["NCBITaxon%3A1122930","Papillibacter cinnamivorans DSM 12816"]]},{"id":"NCBITaxon:1031","l":"Thiothrix nivea","na":1,"nb":2,"a":[["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"]],"b":[["NCBITaxon%3A1031","Thiothrix nivea"],["NCBITaxon%3A870187","Thiothrix nivea DSM 5205"]]},{"id":"NCBITaxon:1034015","l":"Nitrososphaera viennensis","na":1,"nb":2,"a":[["Sphingobium_Nitrososphaera_Phenanthrene_Carbon_SynCom.html","Sphingobium-Nitrososphaera Phenanthrene-Carbon SynCom"]],"b":[["NCBITaxon%3A1034015","Nitrososphaera viennensis"],["NCBITaxon%3A926571","Nitrososphaera viennensis EN76"]]},{"id":"NCBITaxon:105972","l":"Methylosarcina fibrata","na":1,"nb":2,"a":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["NCBITaxon%3A105972","Methylosarcina fibrata"],["NCBITaxon%3A1132443","Methylosarcina fibrata AML-C10"]]},{"id":"NCBITaxon:1072583","l":"Vreelandella boliviensis LC1","na":1,"nb":2,"a":[["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"]],"b":[["NCBITaxon%3A223527","Vreelandella boliviensis"],["NCBITaxon%3A1072583","Vreelandella boliviensis LC1"]]},{"id":"NCBITaxon:1089553","l":"Thermacetogenium phaeum DSM 12270","na":1,"nb":2,"a":[["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]],"b":[["NCBITaxon%3A85874","Thermacetogenium phaeum"],["NCBITaxon%3A1089553","Thermacetogenium phaeum DSM 12270"]]},{"id":"NCBITaxon:1122947","l":"Pelosinus fermentans DSM 17108","na":1,"nb":2,"a":[["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"]],"b":[["NCBITaxon%3A365349","Pelosinus fermentans"],["NCBITaxon%3A1122947","Pelosinus fermentans DSM 17108"]]},{"id":"NCBITaxon:1131703","l":"Sphaerochaeta globosa","na":1,"nb":2,"a":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"]],"b":[["NCBITaxon%3A1131703","Sphaerochaeta globosa"],["NCBITaxon%3A158189","Sphaerochaeta globosa str. Buddy"]]},{"id":"NCBITaxon:1173061","l":"Geotrichum candidum","na":1,"nb":2,"a":[["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["NCBITaxon%3A104098","Acetobacter peroxydans"],["NCBITaxon%3A1173061","Geotrichum candidum"]]},{"id":"NCBITaxon:1175444","l":"Methanocella conradii","na":1,"nb":2,"a":[["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"]],"b":[["NCBITaxon%3A1175444","Methanocella conradii"],["NCBITaxon%3A1041930","Methanocella conradii HZ254"]]},{"id":"NCBITaxon:121039","l":"Ferrimicrobium acidiphilum","na":1,"nb":2,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"]],"b":[["NCBITaxon%3A121039","Ferrimicrobium acidiphilum"],["NCBITaxon%3A1121877","Ferrimicrobium acidiphilum DSM 19497"]]},{"id":"NCBITaxon:1215089","l":"Planococcus halocryophilus","na":1,"nb":2,"a":[["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"]],"b":[["NCBITaxon%3A1215089","Planococcus halocryophilus"],["NCBITaxon%3A1005941","Planococcus halocryophilus Or1"]]},{"id":"NCBITaxon:1218105","l":"Cupriavidus necator NBRC 102504","na":1,"nb":2,"a":[["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"]],"b":[["NCBITaxon%3A106590","Cupriavidus necator"],["NCBITaxon%3A1218105","Cupriavidus necator NBRC 102504"]]},{"id":"NCBITaxon:1335640","l":"Clostridium saccharoperbutylacetonicum N1-4","na":1,"nb":2,"a":[["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["NCBITaxon%3A1335640","Clostridium saccharoperbutylacetonicum N1-4"],["NCBITaxon%3A931276","Clostridium saccharoperbutylacetonicum N1-4(HMT)"]]},{"id":"NCBITaxon:1336235","l":"Paenirhizobium selenitireducens ATCC BAA-1503","na":1,"nb":2,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["NCBITaxon%3A448181","Paenirhizobium selenitireducens"],["NCBITaxon%3A1336235","Paenirhizobium selenitireducens ATCC BAA-1503"]]},{"id":"NCBITaxon:134","l":"Methylocystis parvus","na":1,"nb":2,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"]],"b":[["NCBITaxon%3A134","Methylocystis parvus"],["NCBITaxon%3A1134912","Methylocystis parvus OBBP"]]},{"id":"NCBITaxon:1401","l":"Paenibacillus lautus","na":1,"nb":2,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"]],"b":[["NCBITaxon%3A1401","Paenibacillus lautus"],["NCBITaxon%3A1349780","Paenibacillus lautus NBRC 15380"]]},{"id":"NCBITaxon:1432792","l":"Methylocaldum marinum","na":2,"nb":1,"a":[["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"]],"b":[["NCBITaxon%3A1432792","Methylocaldum marinum"]]},{"id":"NCBITaxon:1436290","l":"Candidatus Symbiobacter mobilis","na":1,"nb":2,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"]],"b":[["NCBITaxon%3A1436290","Candidatus Symbiobacter mobilis"],["NCBITaxon%3A946483","Candidatus Symbiobacter mobilis CR"]]},{"id":"NCBITaxon:1451","l":"Paenibacillus amylolyticus","na":1,"nb":2,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"]],"b":[["NCBITaxon%3A1451","Paenibacillus amylolyticus"],["NCBITaxon%3A59846","Paenibacillus chibensis"]]},{"id":"NCBITaxon:1455","l":"Pseudobacillus badius","na":1,"nb":2,"a":[["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"]],"b":[["NCBITaxon%3A1348627","Bacillus badius NBRC 15713"],["NCBITaxon%3A1455","Pseudobacillus badius"]]},{"id":"NCBITaxon:1464011","l":"Kitasatospora papulosa","na":1,"nb":2,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]],"b":[["NCBITaxon%3A1464011","Kitasatospora papulosa"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:148447","l":"Paraburkholderia phymatum","na":1,"nb":2,"a":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]],"b":[["NCBITaxon%3A148447","Paraburkholderia phymatum"],["NCBITaxon%3A391038","Paraburkholderia phymatum STM815"]]},{"id":"NCBITaxon:1547","l":"Thomasclavelia ramosa","na":1,"nb":2,"a":[["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["NCBITaxon%3A1547","Thomasclavelia ramosa"],["NCBITaxon%3A445974","Thomasclavelia ramosa DSM 1402"]]},{"id":"NCBITaxon:159743","l":"Paenibacillus terrae","na":1,"nb":2,"a":[["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"]],"b":[["NCBITaxon%3A159743","Paenibacillus terrae"],["NCBITaxon%3A985665","Paenibacillus terrae HPL-003"]]},{"id":"NCBITaxon:168384","l":"Marvinbryantia formatexigens","na":1,"nb":2,"a":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"]],"b":[["NCBITaxon%3A168384","Marvinbryantia formatexigens"],["NCBITaxon%3A478749","Marvinbryantia formatexigens DSM 14469"]]},{"id":"NCBITaxon:1708","l":"Cellulomonas fimi","na":1,"nb":2,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["NCBITaxon%3A1708","Cellulomonas fimi"],["NCBITaxon%3A590998","Cellulomonas fimi ATCC 484"]]},{"id":"NCBITaxon:186490","l":"Candidatus Palibaumannia cicadellinicola","na":1,"nb":2,"a":[["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"]],"b":[["NCBITaxon%3A374463","Baumannia cicadellinicola str. Hc (Homalodisca coagulata)"],["NCBITaxon%3A186490","Candidatus Palibaumannia cicadellinicola"]]},{"id":"NCBITaxon:1871043","l":"Variovorax sp.","na":2,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]],"b":[["NCBITaxon%3A1871043","Variovorax sp."]]},{"id":"NCBITaxon:1902583","l":"Candidatus Desulfofervidus","na":1,"nb":2,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"]],"b":[["NCBITaxon%3A1621989","Candidatus Desulfofervidus auxilii"],["NCBITaxon%3A2820297","Candidatus Desulfofervidus sp."]]},{"id":"NCBITaxon:1908224","l":"Sphingopyxis sp.","na":2,"nb":1,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["NCBITaxon%3A1908224","Sphingopyxis sp."]]},{"id":"NCBITaxon:1914288","l":"Dyadobacter sp.","na":2,"nb":1,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["NCBITaxon%3A1914288","Dyadobacter sp."]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":1,"nb":2,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["NCBITaxon%3A1928","Streptomyces rochei"],["NCBITaxon%3A885435","Streptomyces rochei subsp. volubilis"]]},{"id":"NCBITaxon:200451","l":"Pseudomonas poae","na":1,"nb":2,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A200451","Pseudomonas poae"],["NCBITaxon%3A1282356","Pseudomonas poae RE*1-1-14"]]},{"id":"NCBITaxon:2026186","l":"Bacillus paranthracis","na":1,"nb":2,"a":[["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A2026186","Bacillus paranthracis"]]},{"id":"NCBITaxon:215813","l":"Dinoroseobacter shibae","na":1,"nb":2,"a":[["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"]],"b":[["NCBITaxon%3A215813","Dinoroseobacter shibae"],["NCBITaxon%3A398580","Dinoroseobacter shibae DFL 12 = DSM 16493"]]},{"id":"NCBITaxon:217159","l":"Clostridium carboxidivorans","na":1,"nb":2,"a":[["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"]],"b":[["NCBITaxon%3A217159","Clostridium carboxidivorans"],["NCBITaxon%3A536227","Clostridium carboxidivorans P7"]]},{"id":"NCBITaxon:223967","l":"Methylorubrum populi","na":1,"nb":2,"a":[["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"]],"b":[["NCBITaxon%3A223967","Methylorubrum populi"],["NCBITaxon%3A441620","Methylorubrum populi BJ001"]]},{"id":"NCBITaxon:225937","l":"Marinobacter adhaerens HP15","na":1,"nb":2,"a":[["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]],"b":[["NCBITaxon%3A1033846","Marinobacter adhaerens"],["NCBITaxon%3A225937","Marinobacter adhaerens HP15"]]},{"id":"NCBITaxon:226186","l":"Bacteroides thetaiotaomicron (strain ATCC 29148 / DSM 2079 / JCM 5827 / CCUG 10774 / NCTC 10582 / VPI-5482 / E50)","na":1,"nb":2,"a":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"]],"b":[["NCBITaxon%3A818","Bacteroides thetaiotaomicron"],["NCBITaxon%3A226186","Bacteroides thetaiotaomicron VPI-5482"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii (strain ATCC 43067 / DSM 2661 / JAL-1 / JCM 10045 / NBRC 100440)","na":1,"nb":2,"a":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]],"b":[["NCBITaxon%3A2190","Methanocaldococcus jannaschii"],["NCBITaxon%3A243232","Methanocaldococcus jannaschii DSM 2661"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima (strain ATCC 43589 / DSM 3109 / JCM 10099 / NBRC 100826 / MSB8)","na":1,"nb":2,"a":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]],"b":[["NCBITaxon%3A2336","Thermotoga maritima"],["NCBITaxon%3A243274","Thermotoga maritima MSB8"]]},{"id":"NCBITaxon:246200","l":"Ruegeria pomeroyi DSS-3","na":1,"nb":2,"a":[["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["NCBITaxon%3A89184","Ruegeria pomeroyi"],["NCBITaxon%3A246200","Ruegeria pomeroyi DSS-3"]]},{"id":"NCBITaxon:253314","l":"Acetivibrio straminisolvens","na":1,"nb":2,"a":[["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"]],"b":[["NCBITaxon%3A253314","Acetivibrio straminisolvens"],["NCBITaxon%3A1294263","Acetivibrio straminisolvens JCM 21531"]]},{"id":"NCBITaxon:260554","l":"Bacillus halotolerans","na":1,"nb":2,"a":[["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"]],"b":[["NCBITaxon%3A260554","Bacillus halotolerans"],["NCBITaxon%3A72360","Bacillus mojavensis"]]},{"id":"NCBITaxon:264198","l":"Cupriavidus pinatubonensis JMP134","na":1,"nb":2,"a":[["Rhizorhabdus_Cupriavidus_BDE47_Degradation_SynCom.html","Rhizorhabdus-Cupriavidus BDE-47 Degradation SynCom"]],"b":[["NCBITaxon%3A106590","Cupriavidus necator"],["NCBITaxon%3A264198","Cupriavidus pinatubonensis JMP134"]]},{"id":"NCBITaxon:267377","l":"Methanococcus maripaludis (strain DSM 14266 / JCM 13030 / NBRC 101832 / S2 / LL)","na":1,"nb":2,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"]],"b":[["NCBITaxon%3A39152","Methanococcus maripaludis"],["NCBITaxon%3A267377","Methanococcus maripaludis S2"]]},{"id":"NCBITaxon:269797","l":"Methanosarcina barkeri str. Fusaro","na":2,"nb":1,"a":[["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["NCBITaxon%3A269797","Methanosarcina barkeri str. Fusaro"]]},{"id":"NCBITaxon:2715209","l":"Bacillus rugosus","na":2,"nb":1,"a":[["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"],["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["NCBITaxon%3A2715209","Bacillus rugosus"]]},{"id":"NCBITaxon:272774","l":"Vreelandella alkaliphila","na":1,"nb":2,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["NCBITaxon%3A272774","Vreelandella alkaliphila"],["NCBITaxon%3A1255599","Vreelandella alkaliphila 3A7M"]]},{"id":"NCBITaxon:2822231","l":"Phanerodontia chrysosporium","na":2,"nb":1,"a":[["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"]],"b":[["NCBITaxon%3A2822231","Phanerodontia chrysosporium"]]},{"id":"NCBITaxon:29394","l":"Dolosigranulum pigrum","na":1,"nb":2,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"]],"b":[["NCBITaxon%3A29394","Dolosigranulum pigrum"],["NCBITaxon%3A883103","Dolosigranulum pigrum ATCC 51524"]]},{"id":"NCBITaxon:294710","l":"Proteiniphilum acetatigenes","na":1,"nb":2,"a":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"]],"b":[["NCBITaxon%3A294710","Proteiniphilum acetatigenes"],["NCBITaxon%3A1123008","Proteiniphilum acetatigenes DSM 18083"]]},{"id":"NCBITaxon:312306","l":"Pseudomonas entomophila","na":1,"nb":2,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["NCBITaxon%3A312306","Pseudomonas entomophila"],["NCBITaxon%3A384676","Pseudomonas entomophila L48"]]},{"id":"NCBITaxon:32049","l":"Picosynechococcus sp. PCC 7002","na":2,"nb":1,"a":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"]],"b":[["NCBITaxon%3A32049","Picosynechococcus sp. PCC 7002"]]},{"id":"NCBITaxon:328301","l":"Syntrophorhabdus aromaticivorans","na":1,"nb":2,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["NCBITaxon%3A328301","Syntrophorhabdus aromaticivorans"],["NCBITaxon%3A909663","Syntrophorhabdus aromaticivorans UI"]]},{"id":"NCBITaxon:33075","l":"Acidobacterium capsulatum","na":1,"nb":2,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"]],"b":[["NCBITaxon%3A33075","Acidobacterium capsulatum"],["NCBITaxon%3A240015","Acidobacterium capsulatum ATCC 51196"]]},{"id":"NCBITaxon:351627","l":"Caldicellulosiruptor saccharolyticus DSM 8903","na":1,"nb":2,"a":[["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"]],"b":[["NCBITaxon%3A44001","Caldicellulosiruptor saccharolyticus"],["NCBITaxon%3A351627","Caldicellulosiruptor saccharolyticus DSM 8903"]]},{"id":"NCBITaxon:357441","l":"Enterococcus lactis","na":1,"nb":2,"a":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"]],"b":[["NCBITaxon%3A1352","Enterococcus faecium"],["NCBITaxon%3A357441","Enterococcus lactis"]]},{"id":"NCBITaxon:370111","l":"Brucella pseudintermedia","na":1,"nb":2,"a":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"]],"b":[["NCBITaxon%3A94625","Brucella intermedia"],["NCBITaxon%3A370111","Brucella pseudintermedia"]]},{"id":"NCBITaxon:374432","l":"Methylobacterium tardum","na":1,"nb":2,"a":[["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"]],"b":[["NCBITaxon%3A374432","Methylobacterium tardum"],["NCBITaxon%3A95301","Pseudomonas multiresinivorans"]]},{"id":"NCBITaxon:391619","l":"Phaeobacter inhibens DSM 17395","na":1,"nb":2,"a":[["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"]],"b":[["NCBITaxon%3A221822","Phaeobacter inhibens"],["NCBITaxon%3A391619","Phaeobacter inhibens DSM 17395"]]},{"id":"NCBITaxon:409291","l":"Arthrobacter humicola","na":1,"nb":2,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A1665","Arthrobacter globiformis"],["NCBITaxon%3A409291","Arthrobacter humicola"]]},{"id":"NCBITaxon:411483","l":"Faecalibacterium duncaniae","na":1,"nb":2,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A411483","Faecalibacterium duncaniae"],["NCBITaxon%3A2881265","Faecalibacterium hominis (ex Afrizal et al. 2022)"]]},{"id":"NCBITaxon:412384","l":"Priestia aryabhattai","na":1,"nb":2,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A412384","Priestia aryabhattai"],["NCBITaxon%3A1358420","Priestia aryabhattai B8W22"]]},{"id":"NCBITaxon:412449","l":"Leptospirillum ferrodiazotrophum","na":2,"nb":1,"a":[["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"]],"b":[["NCBITaxon%3A412449","Leptospirillum ferrodiazotrophum"]]},{"id":"NCBITaxon:416169","l":"Rhodanobacter thiooxydans","na":1,"nb":2,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"]],"b":[["NCBITaxon%3A416169","Rhodanobacter thiooxydans"],["NCBITaxon%3A1163409","Rhodanobacter thiooxydans LCS2"]]},{"id":"NCBITaxon:42444","l":"Marinovum algicola","na":1,"nb":2,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["NCBITaxon%3A42444","Marinovum algicola"],["NCBITaxon%3A988812","Marinovum algicola DG 898"]]},{"id":"NCBITaxon:429134","l":"Sphingomonas desiccabilis","na":2,"nb":1,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["NCBITaxon%3A429134","Sphingomonas desiccabilis"]]},{"id":"NCBITaxon:452922","l":"Xenophilus aerolatus","na":1,"nb":2,"a":[["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["NCBITaxon%3A500153","Streptomyces avicenniae"],["NCBITaxon%3A452922","Xenophilus aerolatus"]]},{"id":"NCBITaxon:47421","l":"Hydrogenophaga pseudoflava","na":1,"nb":2,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["NCBITaxon%3A47421","Hydrogenophaga pseudoflava"],["NCBITaxon%3A1349792","Hydrogenophaga pseudoflava NBRC 102511"]]},{"id":"NCBITaxon:483199","l":"Acetobacter fabarum","na":1,"nb":2,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["NCBITaxon%3A483199","Acetobacter fabarum"],["NCBITaxon%3A1307906","Acetobacter fabarum DSM 19596"]]},{"id":"NCBITaxon:4909","l":"Pichia kudriavzevii","na":1,"nb":2,"a":[["Sichuan_Shai_Vinegar_Yeast_Flavor_SynCom.html","Sichuan Shai Vinegar Yeast Flavor SynCom"]],"b":[["NCBITaxon%3A4909","Pichia kudriavzevii"],["NCBITaxon%3A1231518","Pichia kudriavzevii CAB39-6420"]]},{"id":"NCBITaxon:4911","l":"Kluyveromyces marxianus","na":1,"nb":2,"a":[["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["NCBITaxon%3A4911","Kluyveromyces marxianus"],["NCBITaxon%3A374272","Kluyveromyces marxianus var. marxianus"]]},{"id":"NCBITaxon:4952","l":"Yarrowia lipolytica","na":2,"nb":1,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Yarrowia_lipolytica_Division_of_Labor_Lipid_Consortium.html","Yarrowia lipolytica Division-of-Labor Lipid Consortium"]],"b":[["NCBITaxon%3A4952","Yarrowia lipolytica"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":1,"nb":2,"a":[["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["NCBITaxon%3A5059","Aspergillus flavus"],["NCBITaxon%3A332952","Aspergillus flavus NRRL3357"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":1,"nb":2,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["NCBITaxon%3A5062","Aspergillus oryzae"],["NCBITaxon%3A510516","Aspergillus oryzae RIB40"]]},{"id":"NCBITaxon:50715","l":"Acidisphaera rubrifaciens","na":1,"nb":2,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"]],"b":[["NCBITaxon%3A50715","Acidisphaera rubrifaciens"],["NCBITaxon%3A1231350","Acidisphaera rubrifaciens HS-AP3"]]},{"id":"NCBITaxon:511746","l":"Candidatus Methylacidiphilum infernorum","na":1,"nb":2,"a":[["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"]],"b":[["NCBITaxon%3A511746","Candidatus Methylacidiphilum infernorum"],["NCBITaxon%3A481448","Methylacidiphilum infernorum V4"]]},{"id":"NCBITaxon:51453","l":"Trichoderma reesei","na":2,"nb":1,"a":[["Trichoderma_Ecoli_Cellulosic_Isobutanol_Coculture.html","Trichoderma-E. coli Cellulosic Isobutanol Coculture"],["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["NCBITaxon%3A51453","Trichoderma reesei"]]},{"id":"NCBITaxon:521","l":"Bordetella avium","na":1,"nb":2,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["NCBITaxon%3A521","Bordetella avium"],["NCBITaxon%3A360910","Bordetella avium 197N"]]},{"id":"NCBITaxon:521460","l":"Caldicellulosiruptor bescii DSM 6725","na":1,"nb":2,"a":[["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["NCBITaxon%3A31899","Caldicellulosiruptor bescii"],["NCBITaxon%3A521460","Caldicellulosiruptor bescii DSM 6725"]]},{"id":"NCBITaxon:52242","l":"Lactobacillus gallinarum","na":1,"nb":2,"a":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]],"b":[["NCBITaxon%3A52242","Lactobacillus gallinarum"],["NCBITaxon%3A1423748","Lactobacillus gallinarum DSM 10532 = JCM 2011"]]},{"id":"NCBITaxon:525","l":"Acidocella facilis","na":1,"nb":2,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"]],"b":[["NCBITaxon%3A525","Acidocella facilis"],["NCBITaxon%3A1408419","Acidocella facilis ATCC 35904"]]},{"id":"NCBITaxon:54007","l":"Anaerococcus octavius","na":1,"nb":2,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["NCBITaxon%3A54007","Anaerococcus octavius"],["NCBITaxon%3A1161098","Anaerococcus octavius NCTC 9810"]]},{"id":"NCBITaxon:56780","l":"Syntrophus aciditrophicus SB","na":1,"nb":2,"a":[["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"]],"b":[["NCBITaxon%3A316277","Syntrophus aciditrophicus"],["NCBITaxon%3A56780","Syntrophus aciditrophicus SB"]]},{"id":"NCBITaxon:572545","l":"Acetivibrio thermocellus DSM 2360","na":1,"nb":2,"a":[["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"]],"b":[["NCBITaxon%3A1515","Acetivibrio thermocellus"],["NCBITaxon%3A572545","Acetivibrio thermocellus DSM 2360"]]},{"id":"NCBITaxon:62140","l":"Acidiphilium multivorum","na":1,"nb":2,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"]],"b":[["NCBITaxon%3A62140","Acidiphilium multivorum"],["NCBITaxon%3A926570","Acidiphilium multivorum AIU301"]]},{"id":"NCBITaxon:632335","l":"Caldicellulosiruptor acetigenus I77R1B","na":1,"nb":2,"a":[["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"]],"b":[["NCBITaxon%3A301953","Caldicellulosiruptor acetigenus"],["NCBITaxon%3A632335","Caldicellulosiruptor acetigenus I77R1B"]]},{"id":"NCBITaxon:64104","l":"Bacillus pseudomycoides","na":1,"nb":2,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["NCBITaxon%3A64104","Bacillus pseudomycoides"],["NCBITaxon%3A527000","Bacillus pseudomycoides DSM 12442"]]},{"id":"NCBITaxon:64702","l":"Propionibacterium cyclohexanicum","na":1,"nb":2,"a":[["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["NCBITaxon%3A64702","Propionibacterium cyclohexanicum"],["NCBITaxon%3A1122996","Propionibacterium cyclohexanicum DSM 16859"]]},{"id":"NCBITaxon:68239","l":"Streptomyces mirabilis","na":1,"nb":2,"a":[["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["NCBITaxon%3A68239","Streptomyces mirabilis"],["NCBITaxon%3A1169149","Streptomyces mirabilis 138MFCol5.1"]]},{"id":"NCBITaxon:685","l":"Vibrio diazotrophicus","na":1,"nb":2,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["NCBITaxon%3A685","Vibrio diazotrophicus"],["NCBITaxon%3A1348635","Vibrio diazotrophicus NBRC 103148"]]},{"id":"NCBITaxon:69488","l":"Penicillium simplicissimum","na":1,"nb":2,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"]],"b":[["NCBITaxon%3A1459","Sporosarcina globispora"],["NCBITaxon%3A69488","Penicillium simplicissimum"]]},{"id":"NCBITaxon:748727","l":"Clostridium ljungdahlii DSM 13528","na":1,"nb":2,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["NCBITaxon%3A1538","Clostridium ljungdahlii"],["NCBITaxon%3A748727","Clostridium ljungdahlii DSM 13528"]]},{"id":"NCBITaxon:795830","l":"Candidatus Brocadia sinica","na":1,"nb":2,"a":[["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"]],"b":[["NCBITaxon%3A795830","Candidatus Brocadia sinica"],["NCBITaxon%3A1197129","Candidatus Brocadia sinica JPN1"]]},{"id":"NCBITaxon:84022","l":"Andreesenella acetica","na":2,"nb":1,"a":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"]],"b":[["NCBITaxon%3A84022","Andreesenella acetica"]]},{"id":"NCBITaxon:84023","l":"Clostridium autoethanogenum","na":1,"nb":2,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"]],"b":[["NCBITaxon%3A84023","Clostridium autoethanogenum"],["NCBITaxon%3A1341692","Clostridium autoethanogenum DSM 10061"]]},{"id":"NCBITaxon:86185","l":"Pseudomonas lundensis","na":1,"nb":2,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]],"b":[["NCBITaxon%3A86185","Pseudomonas lundensis"],["NCBITaxon%3A1255687","Pseudomonas lundensis PCAi_D2.2"]]},{"id":"NCBITaxon:89152","l":"Peptacetobacter hiranonis","na":1,"nb":2,"a":[["Clostridial_isoDCA_Mini_Consortium.html","Clostridial isoDCA Mini Consortium"]],"b":[["NCBITaxon%3A89152","Peptacetobacter hiranonis"],["NCBITaxon%3A500633","Peptacetobacter hiranonis DSM 13275"]]},{"id":"NCBITaxon:89584","l":"Gluconacetobacter liquefaciens","na":1,"nb":2,"a":[["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]],"b":[["NCBITaxon%3A89584","Gluconacetobacter liquefaciens"],["NCBITaxon%3A1307936","Gluconacetobacter liquefaciens NRIC 0522"]]},{"id":"NCBITaxon:92645","l":"Herbaspirillum frisingense","na":1,"nb":2,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]],"b":[["NCBITaxon%3A92645","Herbaspirillum frisingense"],["NCBITaxon%3A864073","Herbaspirillum frisingense GSF30"]]},{"id":"NCBITaxon:96344","l":"Cupriavidus oxalaticus","na":1,"nb":2,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["NCBITaxon%3A96344","Cupriavidus oxalaticus"],["NCBITaxon%3A1349762","Cupriavidus oxalaticus NBRC 13593"]]},{"id":"GTDB:s__Anaeromyxobacter_dehalogenans_B","l":"","na":1,"nb":1,"a":[["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"]],"b":[["NCBITaxon%3A290397","Anaeromyxobacter dehalogenans 2CP-C"]]},{"id":"GTDB:s__Arthrobacter_sp018215265","l":"","na":1,"nb":1,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["NCBITaxon%3A2782567","Paenarthrobacter sp. GOM3"]]},{"id":"GTDB:s__Chryseobacterium_taiwanense","l":"","na":1,"nb":1,"a":[["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["NCBITaxon%3A363331","Chryseobacterium taiwanense"]]},{"id":"GTDB:s__Clostridium_AM_drakei","l":"","na":1,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"]],"b":[["NCBITaxon%3A332101","Clostridium drakei"]]},{"id":"GTDB:s__Clostridium_beijerinckii_A","l":"","na":1,"nb":1,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"]],"b":[["NCBITaxon%3A1410652","Clostridium beijerinckii HUN142"]]},{"id":"GTDB:s__FACHB-68_sp019359355","l":"","na":1,"nb":1,"a":[["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]],"b":[["NCBITaxon%3A2839660","Microcoleus vaginatus WJT46-NPBG5"]]},{"id":"GTDB:s__Kosakonia_pseudosacchari","l":"","na":1,"nb":1,"a":[["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"]],"b":[["NCBITaxon%3A1646340","Kosakonia pseudosacchari"]]},{"id":"GTDB:s__Lachnospira_sp963590775","l":"","na":1,"nb":1,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A901","Desulfovibrio piger"]]},{"id":"GTDB:s__Lysinibacillus_mangiferihumi","l":"","na":1,"nb":1,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]],"b":[["NCBITaxon%3A1130819","Lysinibacillus mangiferihumi"]]},{"id":"GTDB:s__Methyloceanibacter_caenitepidi","l":"","na":1,"nb":1,"a":[["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"]],"b":[["NCBITaxon%3A1384459","Methyloceanibacter caenitepidi"]]},{"id":"GTDB:s__Paenibacillus_polymyxa_E","l":"","na":1,"nb":1,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"]],"b":[["NCBITaxon%3A1406","Paenibacillus polymyxa"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_AA","l":"","na":1,"nb":1,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2774511","Prochlorococcus marinus CUG1438"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_AH","l":"","na":1,"nb":1,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2774508","Prochlorococcus marinus CUG1435"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_G","l":"","na":1,"nb":1,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A93057","Prochlorococcus marinus str. MIT 9201"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_O","l":"","na":1,"nb":1,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A146891","Prochlorococcus marinus str. AS9601"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_P","l":"","na":1,"nb":1,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A167542","Prochlorococcus marinus str. MIT 9515"]]},{"id":"GTDB:s__Prochlorococcus_B_marinus_D","l":"","na":1,"nb":1,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A1570014","Prochlorococcus marinus str. MIT 0917"]]},{"id":"GTDB:s__Prochlorococcus_B_marinus_E","l":"","na":1,"nb":1,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A3014999","Prochlorococcus marinus str. MIT 1013"]]},{"id":"GTDB:s__Prochlorococcus_B_marinus_F","l":"","na":1,"nb":1,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A3015000","Prochlorococcus marinus str. MIT 1214"]]},{"id":"GTDB:s__Prochlorococcus_D_marinus_B","l":"","na":1,"nb":1,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A93059","Prochlorococcus marinus str. MIT 9211"]]},{"id":"GTDB:s__Pseudonocardia_broussonetiae","l":"","na":1,"nb":1,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["NCBITaxon%3A2736640","Pseudonocardia broussonetiae"]]},{"id":"GTDB:s__Rhodanobacter_glycinis_A","l":"","na":1,"nb":1,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"]],"b":[["NCBITaxon%3A582702","Rhodanobacter glycinis"]]},{"id":"GTDB:s__Selenomonas_A_lactilytica","l":"","na":1,"nb":1,"a":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"]],"b":[["NCBITaxon%3A927704","Selenomonas ruminantium subsp. lactilytica TAM6421"]]},{"id":"GTDB:s__Selenomonas_A_ruminantium","l":"","na":1,"nb":1,"a":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"]],"b":[["NCBITaxon%3A1280706","Selenomonas ruminantium subsp. ruminantium ATCC 12561"]]},{"id":"GTDB:s__Serratia_D_symbiotica_A","l":"","na":1,"nb":1,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"]],"b":[["NCBITaxon%3A568817","Serratia symbiotica str. 'Cinara cedri'"]]},{"id":"GTDB:s__Streptococcus_mitis_AY","l":"","na":1,"nb":1,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1000588","Streptococcus mitis bv. 2 str. SK95"]]},{"id":"GTDB:s__Streptococcus_mitis_AZ","l":"","na":1,"nb":1,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A864567","Streptococcus mitis ATCC 6249"]]},{"id":"GTDB:s__Streptococcus_mitis_CQ","l":"","na":1,"nb":1,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1095736","Streptococcus mitis SK575"]]},{"id":"GTDB:s__Streptococcus_mitis_H","l":"","na":1,"nb":1,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A585203","Streptococcus mitis SK564"]]},{"id":"GTDB:s__Streptococcus_mitis_K","l":"","na":1,"nb":1,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1008453","Streptococcus mitis SK1080"]]},{"id":"GTDB:s__Streptococcus_oralis_L","l":"","na":1,"nb":1,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A927666","Streptococcus oralis Uo5"]]},{"id":"GTDB:s__Syntrophus_gentianae","l":"","na":1,"nb":1,"a":[["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["NCBITaxon%3A43775","Syntrophus gentianae"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":1,"nb":1,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["NCBITaxon%3A100226","Streptomyces coelicolor A3(2)"]]},{"id":"NCBITaxon:101028","l":"Fusarium pseudograminearum","na":1,"nb":1,"a":[["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["NCBITaxon%3A101028","Fusarium pseudograminearum"]]},{"id":"NCBITaxon:101201","l":"Trichoderma asperellum","na":1,"nb":1,"a":[["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"]],"b":[["NCBITaxon%3A101201","Trichoderma asperellum"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":1,"nb":1,"a":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["NCBITaxon%3A101510","Rhodococcus jostii RHA1"]]},{"id":"NCBITaxon:1078905","l":"Nitrosotalea devaniterrae","na":1,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"]],"b":[["NCBITaxon%3A1078905","Nitrosotalea devaniterrae"]]},{"id":"NCBITaxon:1079257","l":"Ilyonectria robusta","na":1,"nb":1,"a":[["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"]],"b":[["NCBITaxon%3A1079257","Ilyonectria robusta"]]},{"id":"NCBITaxon:1105143","l":"Kribbella shirazensis","na":1,"nb":1,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["NCBITaxon%3A1105143","Kribbella shirazensis"]]},{"id":"NCBITaxon:1130819","l":"Lysinibacillus mangiferihumi","na":1,"nb":1,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]],"b":[["NCBITaxon%3A1130819","Lysinibacillus mangiferihumi"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":1,"nb":1,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["NCBITaxon%3A1140","Synechococcus elongatus PCC 7942 = FACHB-805"]]},{"id":"NCBITaxon:117187","l":"Fusarium verticillioides","na":1,"nb":1,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]],"b":[["NCBITaxon%3A117187","Fusarium verticillioides"]]},{"id":"NCBITaxon:1176259","l":"Pseudomonas songnenensis","na":1,"nb":1,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]],"b":[["NCBITaxon%3A1176259","Pseudomonas songnenensis"]]},{"id":"NCBITaxon:118127","l":"Chryseobacterium proteolyticum","na":1,"nb":1,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["NCBITaxon%3A118127","Chryseobacterium proteolyticum"]]},{"id":"NCBITaxon:118667","l":"Bordetella sp. M1-6","na":1,"nb":1,"a":[["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"]],"b":[["NCBITaxon%3A118667","Bordetella sp. M1-6"]]},{"id":"NCBITaxon:118669","l":"Pseudoxanthomonas sp. M1-3","na":1,"nb":1,"a":[["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"]],"b":[["NCBITaxon%3A118669","Pseudoxanthomonas sp. M1-3"]]},{"id":"NCBITaxon:1261393","l":"Desulfatiglans parachlorophenolica","na":1,"nb":1,"a":[["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]],"b":[["NCBITaxon%3A1261393","Desulfatiglans parachlorophenolica"]]},{"id":"NCBITaxon:1334106","l":"Phyllobacterium loti","na":1,"nb":1,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A1334106","Phyllobacterium loti"]]},{"id":"NCBITaxon:1350461","l":"Synechococcus elongatus UTEX 2973","na":1,"nb":1,"a":[["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["NCBITaxon%3A1350461","Synechococcus elongatus UTEX 2973"]]},{"id":"NCBITaxon:1379858","l":"Mucispirillum schaedleri ASF457","na":1,"nb":1,"a":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"]],"b":[["NCBITaxon%3A1379858","Mucispirillum schaedleri ASF457"]]},{"id":"NCBITaxon:1384459","l":"Methyloceanibacter caenitepidi","na":1,"nb":1,"a":[["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"]],"b":[["NCBITaxon%3A1384459","Methyloceanibacter caenitepidi"]]},{"id":"NCBITaxon:1501972","l":"Brevundimonas sp. R3","na":1,"nb":1,"a":[["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["NCBITaxon%3A1501972","Brevundimonas sp. R3"]]},{"id":"NCBITaxon:1546519","l":"Sulfitobacter sp. SA11","na":1,"nb":1,"a":[["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["NCBITaxon%3A1546519","Sulfitobacter sp. SA11"]]},{"id":"NCBITaxon:1577725","l":"Conticribra weissflogii","na":1,"nb":1,"a":[["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]],"b":[["NCBITaxon%3A1577725","Conticribra weissflogii"]]},{"id":"NCBITaxon:1605331","l":"Microbacterium sp. UYFA68","na":1,"nb":1,"a":[["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["NCBITaxon%3A1605331","Microbacterium sp. UYFA68"]]},{"id":"NCBITaxon:1641990","l":"Mycolicibacterium montmartrense","na":1,"nb":1,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A1641990","Mycolicibacterium montmartrense"]]},{"id":"NCBITaxon:1642646","l":"Petrimonas mucosa","na":1,"nb":1,"a":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"]],"b":[["NCBITaxon%3A1642646","Petrimonas mucosa"]]},{"id":"NCBITaxon:1646340","l":"Kosakonia pseudosacchari","na":1,"nb":1,"a":[["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"]],"b":[["NCBITaxon%3A1646340","Kosakonia pseudosacchari"]]},{"id":"NCBITaxon:1671625","l":"Candidatus Methanoculleus thermohydrogenotrophicum","na":1,"nb":1,"a":[["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"]],"b":[["NCBITaxon%3A1671625","Candidatus Methanoculleus thermohydrogenotrophicum"]]},{"id":"NCBITaxon:1673428","l":"Cuniculiplasma divulgatum","na":1,"nb":1,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["NCBITaxon%3A1673428","Cuniculiplasma divulgatum"]]},{"id":"NCBITaxon:179879","l":"Burkholderia anthina","na":1,"nb":1,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["NCBITaxon%3A179879","Burkholderia anthina"]]},{"id":"NCBITaxon:1814128","l":"Streptococcus halotolerans","na":1,"nb":1,"a":[["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["NCBITaxon%3A1814128","Streptococcus halotolerans"]]},{"id":"NCBITaxon:1827305","l":"Stenotrophomonas sp. MYb57","na":1,"nb":1,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["NCBITaxon%3A1827305","Stenotrophomonas sp. MYb57"]]},{"id":"NCBITaxon:1869185","l":"Taibaiella sp.","na":1,"nb":1,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]],"b":[["NCBITaxon%3A1869185","Taibaiella sp."]]},{"id":"NCBITaxon:1871068","l":"Phyllobacteriaceae bacterium","na":1,"nb":1,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["NCBITaxon%3A1871068","Phyllobacteriaceae bacterium"]]},{"id":"NCBITaxon:1872086","l":"Ensifer sp.","na":1,"nb":1,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]],"b":[["NCBITaxon%3A1872086","Ensifer sp."]]},{"id":"NCBITaxon:1872114","l":"Acidiplasma sp.","na":1,"nb":1,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["NCBITaxon%3A1872114","Acidiplasma sp."]]},{"id":"NCBITaxon:1872122","l":"Acidovorax sp.","na":1,"nb":1,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"]],"b":[["NCBITaxon%3A1872122","Acidovorax sp."]]},{"id":"NCBITaxon:1872427","l":"Alcanivorax sp.","na":1,"nb":1,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["NCBITaxon%3A1872427","Alcanivorax sp."]]},{"id":"NCBITaxon:1873462","l":"Microbacteriaceae bacterium","na":1,"nb":1,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["NCBITaxon%3A1873462","Microbacteriaceae bacterium"]]},{"id":"NCBITaxon:1898203","l":"Lachnospiraceae bacterium","na":1,"nb":1,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]],"b":[["NCBITaxon%3A1898203","Lachnospiraceae bacterium"]]},{"id":"NCBITaxon:1904413","l":"Suillus clintonianus","na":1,"nb":1,"a":[["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"]],"b":[["NCBITaxon%3A1904413","Suillus clintonianus"]]},{"id":"NCBITaxon:1904944","l":"Stenotrophomonas sp. LM091","na":1,"nb":1,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["NCBITaxon%3A1904944","Stenotrophomonas sp. LM091"]]},{"id":"NCBITaxon:1913961","l":"Rhizobiaceae bacterium","na":1,"nb":1,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["NCBITaxon%3A1913961","Rhizobiaceae bacterium"]]},{"id":"NCBITaxon:1914538","l":"Pseudomonadaceae bacterium","na":1,"nb":1,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["NCBITaxon%3A1914538","Pseudomonadaceae bacterium"]]},{"id":"NCBITaxon:1918507","l":"Candidatus Phosphitivorax anaerolimi","na":1,"nb":1,"a":[["Phosphitivorax_Methanoculleus_Lithosyntrophy_Phosphite_Coculture.html","Phosphitivorax-Methanoculleus Lithosyntrophic Phosphite-Oxidizing Methanogenic Culture"]],"b":[["NCBITaxon%3A1918507","Candidatus Phosphitivorax anaerolimi"]]},{"id":"NCBITaxon:1955250","l":"Novosphingobium endophyticum","na":1,"nb":1,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]],"b":[["NCBITaxon%3A1955250","Novosphingobium endophyticum"]]},{"id":"NCBITaxon:1979961","l":"Wenzhouxiangella sp.","na":1,"nb":1,"a":[["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["NCBITaxon%3A1979961","Wenzhouxiangella sp."]]},{"id":"NCBITaxon:2026194","l":"Bacillus paramycoides","na":1,"nb":1,"a":[["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["NCBITaxon%3A2026194","Bacillus paramycoides"]]},{"id":"NCBITaxon:2030806","l":"Burkholderiaceae bacterium","na":1,"nb":1,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["NCBITaxon%3A2030806","Burkholderiaceae bacterium"]]},{"id":"NCBITaxon:203124","l":"Trichodesmium erythraeum IMS101","na":1,"nb":1,"a":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["NCBITaxon%3A203124","Trichodesmium erythraeum IMS101"]]},{"id":"NCBITaxon:2093828","l":"Neorhizobium tomejilense","na":1,"nb":1,"a":[["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["NCBITaxon%3A2093828","Neorhizobium tomejilense"]]},{"id":"NCBITaxon:216389","l":"Dehalococcoides mccartyi BAV1","na":1,"nb":1,"a":[["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["NCBITaxon%3A216389","Dehalococcoides mccartyi BAV1"]]},{"id":"NCBITaxon:219572","l":"Pseudomonas antarctica","na":1,"nb":1,"a":[["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["NCBITaxon%3A219572","Pseudomonas antarctica"]]},{"id":"NCBITaxon:2268204","l":"Thermoplasmatales archaeon","na":1,"nb":1,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["NCBITaxon%3A2268204","Thermoplasmatales archaeon"]]},{"id":"NCBITaxon:237612","l":"Sphingomonas panni","na":1,"nb":1,"a":[["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["NCBITaxon%3A237612","Sphingomonas panni"]]},{"id":"NCBITaxon:239","l":"Flavobacterium sp.","na":1,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["NCBITaxon%3A239","Flavobacterium sp."]]},{"id":"NCBITaxon:2496117","l":"Variovorax beijingensis","na":1,"nb":1,"a":[["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["NCBITaxon%3A2496117","Variovorax beijingensis"]]},{"id":"NCBITaxon:258594","l":"Rhodopseudomonas palustris CGA009","na":1,"nb":1,"a":[["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"]],"b":[["NCBITaxon%3A258594","Rhodopseudomonas palustris CGA009"]]},{"id":"NCBITaxon:2591003","l":"Ferroplasma sp.","na":1,"nb":1,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["NCBITaxon%3A2591003","Ferroplasma sp."]]},{"id":"NCBITaxon:270351","l":"Methylobacterium aquaticum","na":1,"nb":1,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["NCBITaxon%3A270351","Methylobacterium aquaticum"]]},{"id":"NCBITaxon:2710591","l":"Pseudomonas arcuscaelestis","na":1,"nb":1,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["NCBITaxon%3A2710591","Pseudomonas arcuscaelestis"]]},{"id":"NCBITaxon:272772","l":"Pseudomonas pudica","na":1,"nb":1,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"]],"b":[["NCBITaxon%3A272772","Pseudomonas pudica"]]},{"id":"NCBITaxon:2736640","l":"Pseudonocardia broussonetiae","na":1,"nb":1,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["NCBITaxon%3A2736640","Pseudonocardia broussonetiae"]]},{"id":"NCBITaxon:27381","l":"Funneliformis mosseae","na":1,"nb":1,"a":[["Mediterranean_AM_Fungal_SixSpecies_SynCom.html","Mediterranean AM Fungal Six-Species SynCom"]],"b":[["NCBITaxon%3A27381","Funneliformis mosseae"]]},{"id":"NCBITaxon:2771362","l":"Stenotrophomonas cyclobalanopsidis","na":1,"nb":1,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["NCBITaxon%3A2771362","Stenotrophomonas cyclobalanopsidis"]]},{"id":"NCBITaxon:2782567","l":"Paenarthrobacter sp. GOM3","na":1,"nb":1,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["NCBITaxon%3A2782567","Paenarthrobacter sp. GOM3"]]},{"id":"NCBITaxon:280333","l":"Bradyrhizobium pachyrhizi","na":1,"nb":1,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["NCBITaxon%3A280333","Bradyrhizobium pachyrhizi"]]},{"id":"NCBITaxon:2833596","l":"Pseudomonas harudinis","na":1,"nb":1,"a":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"]],"b":[["NCBITaxon%3A2833596","Pseudomonas harudinis"]]},{"id":"NCBITaxon:2853159","l":"Pseudomonas pergaminensis","na":1,"nb":1,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["NCBITaxon%3A2853159","Pseudomonas pergaminensis"]]},{"id":"NCBITaxon:2886510","l":"Sphingobacterium paramultivorum","na":1,"nb":1,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["NCBITaxon%3A2886510","Sphingobacterium paramultivorum"]]},{"id":"NCBITaxon:2903","l":"Emiliania huxleyi","na":1,"nb":1,"a":[["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"]],"b":[["NCBITaxon%3A2903","Emiliania huxleyi"]]},{"id":"NCBITaxon:2924872","l":"Acididesulfobacillus","na":1,"nb":1,"a":[["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"]],"b":[["NCBITaxon%3A1561005","Acididesulfobacillus acetoxydans"]]},{"id":"NCBITaxon:29305","l":"Streptomyces griseoincarnatus","na":1,"nb":1,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["NCBITaxon%3A29305","Streptomyces griseoincarnatus"]]},{"id":"NCBITaxon:2982533","l":"Microbacterium forte","na":1,"nb":1,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["NCBITaxon%3A2982533","Microbacterium forte"]]},{"id":"NCBITaxon:29875","l":"Trichoderma virens","na":1,"nb":1,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"]],"b":[["NCBITaxon%3A29875","Trichoderma virens"]]},{"id":"NCBITaxon:3060965","l":"Paenibacillus sp. 11B","na":1,"nb":1,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"]],"b":[["NCBITaxon%3A3060965","Paenibacillus sp. 11B"]]},{"id":"NCBITaxon:3120696","l":"Ferrovibrionaceae","na":1,"nb":1,"a":[["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["NCBITaxon%3A3121786","Ferrovibrionaceae bacterium"]]},{"id":"NCBITaxon:314235","l":"Phyllobacterium brassicacearum","na":1,"nb":1,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A314235","Phyllobacterium brassicacearum"]]},{"id":"NCBITaxon:316385","l":"Escherichia coli str. K-12 substr. DH10B","na":1,"nb":1,"a":[["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["NCBITaxon%3A316385","Escherichia coli str. K-12 substr. DH10B"]]},{"id":"NCBITaxon:319464","l":"Clostridium sp. FG4","na":1,"nb":1,"a":[["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"]],"b":[["NCBITaxon%3A319464","Clostridium sp. FG4"]]},{"id":"NCBITaxon:323284","l":"Alcaligenes aquatilis","na":1,"nb":1,"a":[["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["NCBITaxon%3A323284","Alcaligenes aquatilis"]]},{"id":"NCBITaxon:324747","l":"Pseudoxanthomonas byssovorax","na":1,"nb":1,"a":[["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]],"b":[["NCBITaxon%3A324747","Pseudoxanthomonas byssovorax"]]},{"id":"NCBITaxon:332101","l":"Clostridium drakei","na":1,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"]],"b":[["NCBITaxon%3A332101","Clostridium drakei"]]},{"id":"NCBITaxon:33883","l":"Microbacterium arborescens","na":1,"nb":1,"a":[["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["NCBITaxon%3A33883","Microbacterium arborescens"]]},{"id":"NCBITaxon:340177","l":"Chlorobium chlorochromatii CaD3","na":1,"nb":1,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"]],"b":[["NCBITaxon%3A340177","Chlorobium chlorochromatii CaD3"]]},{"id":"NCBITaxon:34358","l":"Maudiozyma exigua","na":1,"nb":1,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["NCBITaxon%3A34358","Maudiozyma exigua"]]},{"id":"NCBITaxon:346911","l":"Labrys okinawensis","na":1,"nb":1,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]],"b":[["NCBITaxon%3A346911","Labrys okinawensis"]]},{"id":"NCBITaxon:346912","l":"Labrys miyagiensis","na":1,"nb":1,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]],"b":[["NCBITaxon%3A346912","Labrys miyagiensis"]]},{"id":"NCBITaxon:36015","l":"Pichia kluyveri","na":1,"nb":1,"a":[["Pichia_Lactiplantibacillus_CCMA_Plant_Beverage_Coculture.html","Pichia-Lactiplantibacillus CCMA Plant Beverage Coculture"]],"b":[["NCBITaxon%3A36015","Pichia kluyveri"]]},{"id":"NCBITaxon:363331","l":"Chryseobacterium taiwanense","na":1,"nb":1,"a":[["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["NCBITaxon%3A363331","Chryseobacterium taiwanense"]]},{"id":"NCBITaxon:363867","l":"Aeromicrobium ginsengisoli","na":1,"nb":1,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A363867","Aeromicrobium ginsengisoli"]]},{"id":"NCBITaxon:372461","l":"Buchnera aphidicola BCc","na":1,"nb":1,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"]],"b":[["NCBITaxon%3A372461","Buchnera aphidicola BCc"]]},{"id":"NCBITaxon:37319","l":"Pseudo-nitzschia multiseries","na":1,"nb":1,"a":[["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["NCBITaxon%3A37319","Pseudo-nitzschia multiseries"]]},{"id":"NCBITaxon:375486","l":"Paenibacillus sp. PALXIL05","na":1,"nb":1,"a":[["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["NCBITaxon%3A375486","Paenibacillus sp. PALXIL05"]]},{"id":"NCBITaxon:37927","l":"Sinomonas atrocyanea","na":1,"nb":1,"a":[["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"]],"b":[["NCBITaxon%3A37927","Sinomonas atrocyanea"]]},{"id":"NCBITaxon:37929","l":"Glutamicibacter nicotianae","na":1,"nb":1,"a":[["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"]],"b":[["NCBITaxon%3A37929","Glutamicibacter nicotianae"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"]],"b":[["NCBITaxon%3A395960","Rhodopseudomonas palustris TIE-1"]]},{"id":"NCBITaxon:399726","l":"Thermoanaerobacter sp. X514","na":1,"nb":1,"a":[["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"]],"b":[["NCBITaxon%3A399726","Thermoanaerobacter sp. X514"]]},{"id":"NCBITaxon:419541","l":"Leptospirillum sp. Group II '5-way CG'","na":1,"nb":1,"a":[["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"]],"b":[["NCBITaxon%3A419541","Leptospirillum sp. Group II '5-way CG'"]]},{"id":"NCBITaxon:427562","l":"Bacillus sp. 'Bacillus M3'","na":1,"nb":1,"a":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"]],"b":[["NCBITaxon%3A427562","Bacillus sp. 'Bacillus M3'"]]},{"id":"NCBITaxon:428990","l":"Novosphingobium mathurense","na":1,"nb":1,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]],"b":[["NCBITaxon%3A428990","Novosphingobium mathurense"]]},{"id":"NCBITaxon:43775","l":"Syntrophus gentianae","na":1,"nb":1,"a":[["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["NCBITaxon%3A43775","Syntrophus gentianae"]]},{"id":"NCBITaxon:43925","l":"Nannochloropsis oculata","na":1,"nb":1,"a":[["Microalgae_Cyanobacteria_Bioactive_Peptide_Consortia.html","Microalgae-Cyanobacteria Bioactive Peptide Consortia"]],"b":[["NCBITaxon%3A43925","Nannochloropsis oculata"]]},{"id":"NCBITaxon:453960","l":"Sulfobacillus benefaciens","na":1,"nb":1,"a":[["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"]],"b":[["NCBITaxon%3A453960","Sulfobacillus benefaciens"]]},{"id":"NCBITaxon:4757","l":"Neocallimastix frontalis","na":1,"nb":1,"a":[["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"]],"b":[["NCBITaxon%3A4757","Neocallimastix frontalis"]]},{"id":"NCBITaxon:4876","l":"Rhizophagus intraradices","na":1,"nb":1,"a":[["Mediterranean_AM_Fungal_SixSpecies_SynCom.html","Mediterranean AM Fungal Six-Species SynCom"]],"b":[["NCBITaxon%3A4876","Rhizophagus intraradices"]]},{"id":"NCBITaxon:487698","l":"Stenotrophomonas pavanii","na":1,"nb":1,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]],"b":[["NCBITaxon%3A487698","Stenotrophomonas pavanii"]]},{"id":"NCBITaxon:492774","l":"Rhizobium alamii","na":1,"nb":1,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A492774","Rhizobium alamii"]]},{"id":"NCBITaxon:4956","l":"Zygosaccharomyces rouxii","na":1,"nb":1,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["NCBITaxon%3A4956","Zygosaccharomyces rouxii"]]},{"id":"NCBITaxon:5007","l":"Brettanomyces bruxellensis","na":1,"nb":1,"a":[["Sichuan_Shai_Vinegar_Yeast_Flavor_SynCom.html","Sichuan Shai Vinegar Yeast Flavor SynCom"]],"b":[["NCBITaxon%3A5007","Brettanomyces bruxellensis"]]},{"id":"NCBITaxon:505252","l":"Marivita cryptomonadis","na":1,"nb":1,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["NCBITaxon%3A505252","Marivita cryptomonadis"]]},{"id":"NCBITaxon:51915","l":"Maudiozyma humilis","na":1,"nb":1,"a":[["Sichuan_Shai_Vinegar_Yeast_Flavor_SynCom.html","Sichuan Shai Vinegar Yeast Flavor SynCom"]],"b":[["NCBITaxon%3A51915","Maudiozyma humilis"]]},{"id":"NCBITaxon:5323","l":"Pleurotus eryngii","na":1,"nb":1,"a":[["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"]],"b":[["NCBITaxon%3A5323","Pleurotus eryngii"]]},{"id":"NCBITaxon:5535","l":"Rhodotorula glutinis","na":1,"nb":1,"a":[["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["NCBITaxon%3A5535","Rhodotorula glutinis"]]},{"id":"NCBITaxon:5547","l":"Trichoderma viride","na":1,"nb":1,"a":[["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["NCBITaxon%3A5547","Trichoderma viride"]]},{"id":"NCBITaxon:571256","l":"Brucella pituitosa","na":1,"nb":1,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]],"b":[["NCBITaxon%3A571256","Brucella pituitosa"]]},{"id":"NCBITaxon:574561","l":"Rhizobium pisi","na":1,"nb":1,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["NCBITaxon%3A574561","Rhizobium pisi"]]},{"id":"NCBITaxon:577386","l":"Paraniabella yanshanensis","na":1,"nb":1,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["NCBITaxon%3A577386","Paraniabella yanshanensis"]]},{"id":"NCBITaxon:582702","l":"Rhodanobacter glycinis","na":1,"nb":1,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"]],"b":[["NCBITaxon%3A582702","Rhodanobacter glycinis"]]},{"id":"NCBITaxon:592050","l":"Acidovorax soli","na":1,"nb":1,"a":[["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["NCBITaxon%3A592050","Acidovorax soli"]]},{"id":"NCBITaxon:666685","l":"Rhodanobacter denitrificans","na":1,"nb":1,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"]],"b":[["NCBITaxon%3A666685","Rhodanobacter denitrificans"]]},{"id":"NCBITaxon:668369","l":"Escherichia coli DH5[alpha]","na":1,"nb":1,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["NCBITaxon%3A668369","Escherichia coli DH5[alpha]"]]},{"id":"NCBITaxon:67355","l":"Streptomyces recifensis","na":1,"nb":1,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]],"b":[["NCBITaxon%3A67355","Streptomyces recifensis"]]},{"id":"NCBITaxon:67356","l":"Streptomyces resistomycificus","na":1,"nb":1,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A67356","Streptomyces resistomycificus"]]},{"id":"NCBITaxon:68264","l":"Streptomyces rishiriensis","na":1,"nb":1,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A68264","Streptomyces rishiriensis"]]},{"id":"NCBITaxon:68274","l":"Streptomyces tauricus","na":1,"nb":1,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A68274","Streptomyces tauricus"]]},{"id":"NCBITaxon:69373","l":"Curtobacterium pusillum","na":1,"nb":1,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]],"b":[["NCBITaxon%3A69373","Curtobacterium pusillum"]]},{"id":"NCBITaxon:759811","l":"Lysinibacillus pakistanensis","na":1,"nb":1,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"]],"b":[["NCBITaxon%3A759811","Lysinibacillus pakistanensis"]]},{"id":"NCBITaxon:82","l":"Hyphomicrobium sp.","na":1,"nb":1,"a":[["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"]],"b":[["NCBITaxon%3A82","Hyphomicrobium sp."]]},{"id":"NCBITaxon:82803","l":"Trichococcus flocculiformis","na":1,"nb":1,"a":[["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["NCBITaxon%3A82803","Trichococcus flocculiformis"]]},{"id":"NCBITaxon:857252","l":"Halopseudomonas aestusnigri","na":1,"nb":1,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["NCBITaxon%3A857252","Halopseudomonas aestusnigri"]]},{"id":"NCBITaxon:86265","l":"Pseudomonas thivervalensis","na":1,"nb":1,"a":[["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"]],"b":[["NCBITaxon%3A86265","Pseudomonas thivervalensis"]]},{"id":"NCBITaxon:864069","l":"Microvirga lotononidis","na":1,"nb":1,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["NCBITaxon%3A864069","Microvirga lotononidis"]]},{"id":"NCBITaxon:870529","l":"Bacillus sp. DB7","na":1,"nb":1,"a":[["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]],"b":[["NCBITaxon%3A870529","Bacillus sp. DB7"]]},{"id":"NCBITaxon:870530","l":"Klebsiella sp. DB13","na":1,"nb":1,"a":[["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]],"b":[["NCBITaxon%3A870530","Klebsiella sp. DB13"]]},{"id":"NCBITaxon:870532","l":"Ochrobactrum sp. DB8","na":1,"nb":1,"a":[["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]],"b":[["NCBITaxon%3A870532","Ochrobactrum sp. DB8"]]},{"id":"NCBITaxon:871203","l":"Caballeronia zhejiangensis","na":1,"nb":1,"a":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]],"b":[["NCBITaxon%3A871203","Caballeronia zhejiangensis"]]},{"id":"NCBITaxon:940139","l":"Terriglobus aquaticus","na":1,"nb":1,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]],"b":[["NCBITaxon%3A940139","Terriglobus aquaticus"]]},{"id":"NCBITaxon:94130","l":"Rhizophagus clarus","na":1,"nb":1,"a":[["Mediterranean_AM_Fungal_SixSpecies_SynCom.html","Mediterranean AM Fungal Six-Species SynCom"]],"b":[["NCBITaxon%3A94130","Rhizophagus clarus"]]},{"id":"NCBITaxon:94626","l":"Brucella tritici","na":1,"nb":1,"a":[["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]],"b":[["NCBITaxon%3A94626","Brucella tritici"]]},{"id":"NCBITaxon:97485","l":"Prymnesium parvum","na":1,"nb":1,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["NCBITaxon%3A97485","Prymnesium parvum"]]}]} \ No newline at end of file +{"a":"CommunityMech","b":"TaxonMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","TaxonMech":"https://culturebotai.github.io/TaxonMech/pages/taxon.html?id="},"n":1167,"by":{"NCBITaxon":784,"GTDB":383},"terms":[{"id":"NCBITaxon:2","l":"Bacteria","na":56,"nb":605695,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"]],"b":[["NCBITaxon%3A119160","2,3-D degrading bacterium NHC2"],["NCBITaxon%3A119159","2,3-D degrading bacterium NHG3"],["NCBITaxon%3A103498","2,4-D-degrading bacterium 001"],["NCBITaxon%3A103499","2,4-D-degrading bacterium 007"],["NCBITaxon%3A103492","2,4-D-degrading bacterium 010"],["NCBITaxon%3A103495","2,4-D-degrading bacterium 012"]]},{"id":"NCBITaxon:286","l":"Pseudomonas","na":18,"nb":33485,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"]],"b":[["NCBITaxon%3A196824","Arctic sea ice associated bacterium ARK10142"],["NCBITaxon%3A196823","Arctic sea ice bacterium ARK10061"],["NCBITaxon%3A196825","Arctic sea ice bacterium ARK9971"],["NCBITaxon%3A196826","Arctic sea ice bacterium ARK9995"],["NCBITaxon%3A215583","bacterium G5"],["NCBITaxon%3A1871086","Brevundimonas sp."]]},{"id":"GTDB:s__Escherichia_coli","l":"","na":18,"nb":2002,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["NCBITaxon%3A2099680","Methanobacteriaceae archaeon"],["NCBITaxon%3A2585118","Alistipes communis"],["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A2212467","Bacteroidaceae bacterium"],["NCBITaxon%3A2030927","Bacteroidales bacterium"],["NCBITaxon%3A195","Campylobacter coli"]]},{"id":"NCBITaxon:1386","l":"Bacillus","na":16,"nb":33976,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["NCBITaxon%3A208551","alkaliphilic bacterium AF112"],["NCBITaxon%3A33934","Anoxybacillus flavithermus"],["NCBITaxon%3A1185649","Anoxybacillus flavithermus subsp. flavithermus"],["NCBITaxon%3A28030","Bacillus acidopullulyticus"],["NCBITaxon%3A33017","Bacillus acidovorans"],["NCBITaxon%3A203540","Bacillus aeolius"]]},{"id":"NCBITaxon:2157","l":"Archaea","na":15,"nb":14013,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"]],"b":[["NCBITaxon%3A3879924","Abyssiniarchaeum dallolvicinus (SeqCode)"],["NCBITaxon%3A3693715","Acidarchaeum fankouense (SeqCode)"],["NCBITaxon%3A2283","Acidianus ambivalens"],["NCBITaxon%3A41673","Acidianus brierleyi"],["NCBITaxon%3A269667","Acidianus convivator"],["NCBITaxon%3A563177","Acidianus hospitalis"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":82,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["NCBITaxon%3A1390","Bacillus amyloliquefaciens"],["NCBITaxon%3A1452","Bacillus atrophaeus"],["NCBITaxon%3A640707","Bacillus atrophaeus ATCC 9372"],["NCBITaxon%3A483913","Bacillus inaquosorum"],["NCBITaxon%3A1236548","Bacillus inaquosorum KCTC 13429"],["NCBITaxon%3A1402","Bacillus licheniformis"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":14,"nb":3868,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A196023","Aeromonas hydrophila subsp. hydrophila"],["NCBITaxon%3A380703","Aeromonas hydrophila subsp. hydrophila ATCC 7966"],["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A35703","Citrobacter amalonaticus"],["NCBITaxon%3A163202","Corynebacterium appendicis"]]},{"id":"GTDB:s__Bacillus_subtilis","l":"","na":14,"nb":129,"a":[["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"]],"b":[["NCBITaxon%3A79881","Alkalicoccobacillus gibsonii"],["NCBITaxon%3A171685","Alkalicoccobacillus murimartini"],["NCBITaxon%3A1889774","Bacillaceae bacterium"],["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A2922309","Bacillus sp. 1006-3"],["NCBITaxon%3A3096766","Bacillus sp. 204(2023)"]]},{"id":"NCBITaxon:131567","l":"cellular organisms","na":11,"nb":625951,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Horonobe_Mizunami_URL_Subsurface_Microbiome.html","Horonobe and Mizunami Underground Research Laboratory Subsurface Microbiome"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["NCBITaxon%3A3879924","Abyssiniarchaeum dallolvicinus (SeqCode)"],["NCBITaxon%3A3693715","Acidarchaeum fankouense (SeqCode)"],["NCBITaxon%3A2283","Acidianus ambivalens"],["NCBITaxon%3A41673","Acidianus brierleyi"],["NCBITaxon%3A269667","Acidianus convivator"],["NCBITaxon%3A563177","Acidianus hospitalis"]]},{"id":"NCBITaxon:201174","l":"Actinomycetota","na":10,"nb":99340,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Drought_Rhizosphere_Iron_Actinobacteria_Community.html","Drought-Induced Rhizosphere Iron-Enriched Actinobacteria Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["NCBITaxon%3A291968","Acaricomes phytoseiuli"],["NCBITaxon%3A1120917","Acaricomes phytoseiuli DSM 14247"],["NCBITaxon%3A1872088","Acaricomes sp."],["NCBITaxon%3A1026830","Acaricomes sp. RHF117"],["NCBITaxon%3A298618","acid streamer iron-oxidizing bacterium CS11"],["NCBITaxon%3A298616","acid streamer iron-oxidizing bacterium KP1"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":9,"nb":557,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"]],"b":[["NCBITaxon%3A2073169","Chromobacterium alticapitis"],["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1454219","Pseudomonas aeruginosa 059A"],["NCBITaxon%3A1421538","Pseudomonas aeruginosa 0812"],["NCBITaxon%3A1421545","Pseudomonas aeruginosa 0822"],["NCBITaxon%3A1421531","Pseudomonas aeruginosa 0C2E"]]},{"id":"GTDB:s__Bacillus_A_cereus","l":"","na":9,"nb":479,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]],"b":[["NCBITaxon%3A1889774","Bacillaceae bacterium"],["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A2026189","Bacillus albus"],["NCBITaxon%3A658666","Bacillus bombysepticus"],["NCBITaxon%3A1330043","Bacillus bombysepticus str. Wang"],["NCBITaxon%3A1396","Bacillus cereus"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":9,"nb":53,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]],"b":[["NCBITaxon%3A47920","Acidovorax delafieldii"],["NCBITaxon%3A301","Ectopseudomonas oleovorans"],["NCBITaxon%3A29581","Janthinobacterium lividum"],["NCBITaxon%3A294","Pseudomonas fluorescens"],["NCBITaxon%3A77298","Pseudomonas jessenii"],["NCBITaxon%3A1968891","Pseudomonas jessenii subsp. pseudoputida"]]},{"id":"NCBITaxon:1224","l":"Pseudomonadota","na":8,"nb":251482,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"]],"b":[["NCBITaxon%3A119160","2,3-D degrading bacterium NHC2"],["NCBITaxon%3A119159","2,3-D degrading bacterium NHG3"],["NCBITaxon%3A103498","2,4-D-degrading bacterium 001"],["NCBITaxon%3A103499","2,4-D-degrading bacterium 007"],["NCBITaxon%3A103492","2,4-D-degrading bacterium 010"],["NCBITaxon%3A103495","2,4-D-degrading bacterium 012"]]},{"id":"NCBITaxon:1827","l":"Rhodococcus","na":8,"nb":3197,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]],"b":[["NCBITaxon%3A179179","bromate-reducing bacterium B7"],["NCBITaxon%3A179180","bromate-reducing bacterium B8"],["NCBITaxon%3A983873","Dietzia aurantiaca"],["NCBITaxon%3A84096","Gordonia alkanivorans"],["NCBITaxon%3A178933","PAH-contaminated sludge bacterium PB-32"],["NCBITaxon%3A43767","Prescottella equi"]]},{"id":"NCBITaxon:34072","l":"Variovorax","na":8,"nb":1193,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["PMI_Variovorax_Thermotolerance_Collection.html","PMI Variovorax Thermotolerance Collection"]],"b":[["NCBITaxon%3A160241","bacterium C2+6"],["NCBITaxon%3A62670","uncultured proteobacterium OCS98"],["NCBITaxon%3A114708","uncultured Variovorax sp."],["NCBITaxon%3A350651","uncultured Variovorax sp. FR059"],["NCBITaxon%3A140988","uncultured Variovorax sp. M16"],["NCBITaxon%3A129716","uncultured Variovorax VV1"]]},{"id":"GTDB:s__Pseudomonas_aeruginosa","l":"","na":8,"nb":353,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A1977087","Pseudomonadota bacterium"],["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1421531","Pseudomonas aeruginosa 0C2E"],["NCBITaxon%3A1339263","Pseudomonas aeruginosa 148"],["NCBITaxon%3A1286151","Pseudomonas aeruginosa 18A"]]},{"id":"GTDB:s__Bacillus_A_anthracis","l":"","na":8,"nb":326,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1392","Bacillus anthracis"],["NCBITaxon%3A1412844","Bacillus anthracis 52-G"],["NCBITaxon%3A1412843","Bacillus anthracis 8903-G"],["NCBITaxon%3A1412842","Bacillus anthracis 9080-G"],["NCBITaxon%3A1248431","Bacillus anthracis str. 3154"],["NCBITaxon%3A1248436","Bacillus anthracis str. 3166"]]},{"id":"GTDB:s__Bacillus_A_paranthracis","l":"","na":8,"nb":194,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A2654284","Bacillaceae bacterium C02"],["NCBITaxon%3A2654326","Bacillaceae bacterium C05"],["NCBITaxon%3A1392","Bacillus anthracis"],["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A405534","Bacillus cereus AH187"],["NCBITaxon%3A1053166","Bacillus cereus AND1407"]]},{"id":"GTDB:s__Bacillus_A_thuringiensis_S","l":"","na":8,"nb":79,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A1053170","Bacillus cereus BAG1X1-1"],["NCBITaxon%3A1053171","Bacillus cereus BAG1X1-2"],["NCBITaxon%3A1053173","Bacillus cereus BAG1X2-1"],["NCBITaxon%3A1053175","Bacillus cereus BAG1X2-3"],["NCBITaxon%3A1053176","Bacillus cereus BAG2O-1"]]},{"id":"GTDB:s__Bacillus_A_mycoides","l":"","na":8,"nb":73,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A526976","Bacillus cereus BDRD-ST196"],["NCBITaxon%3A2920307","Bacillus cereus group sp. BfR-BA-01331"],["NCBITaxon%3A2920371","Bacillus cereus group sp. BfR-BA-01523"],["NCBITaxon%3A3040247","Bacillus cereus group sp. MG9"],["NCBITaxon%3A2794593","Bacillus cereus group sp. N28"]]},{"id":"GTDB:s__Bacillus_A_tropicus","l":"","na":8,"nb":63,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1392","Bacillus anthracis"],["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A526977","Bacillus cereus ATCC 4342"],["NCBITaxon%3A269801","Bacillus cereus G9241"],["NCBITaxon%3A3445193","Bacillus cereus group sp. BceL035"],["NCBITaxon%3A3444975","Bacillus cereus group sp. BceL310"]]},{"id":"GTDB:s__Bacillus_A_toyonensis","l":"","na":8,"nb":48,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A3445245","Bacillus cereus group sp. Bce021"],["NCBITaxon%3A3445166","Bacillus cereus group sp. BceL062"],["NCBITaxon%3A3018086","Bacillus cereus group sp. BY112LC"],["NCBITaxon%3A3040246","Bacillus cereus group sp. MG6"],["NCBITaxon%3A3450679","Bacillus cereus group sp. MYBK150-2"]]},{"id":"GTDB:s__Bacillus_A_pacificus","l":"","na":8,"nb":46,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1392","Bacillus anthracis"],["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A222523","Bacillus cereus ATCC 10987"],["NCBITaxon%3A1126681","Bacillus cereus F"],["NCBITaxon%3A1217984","Bacillus cereus FRI-35"],["NCBITaxon%3A3018130","Bacillus cereus group sp. Bc002"]]},{"id":"NCBITaxon:492670","l":"Bacillus velezensis","na":8,"nb":18,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"]],"b":[["NCBITaxon%3A492670","Bacillus velezensis"],["NCBITaxon%3A2517241","Bacillus velezensis A3"],["NCBITaxon%3A1225788","Bacillus velezensis AS43.3"],["NCBITaxon%3A1239834","Bacillus velezensis At1"],["NCBITaxon%3A1114958","Bacillus velezensis CAU B946"],["NCBITaxon%3A2853458","Bacillus velezensis EYE_388"]]},{"id":"GTDB:s__Bacillus_A_thuringiensis_K","l":"","na":8,"nb":11,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A2920310","Bacillus cereus group sp. BfR-BA-01347"],["NCBITaxon%3A3450663","Bacillus cereus group sp. MYBK216-1"],["NCBITaxon%3A3450662","Bacillus cereus group sp. MYBK216-2"],["NCBITaxon%3A1053223","Bacillus cereus VD014"],["NCBITaxon%3A1053239","Bacillus cereus VD156"]]},{"id":"GTDB:s__Acidithiobacillus_ferrooxidans","l":"","na":8,"nb":10,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["NCBITaxon%3A920","Acidithiobacillus ferrooxidans"],["NCBITaxon%3A243159","Acidithiobacillus ferrooxidans ATCC 23270"],["NCBITaxon%3A380394","Acidithiobacillus ferrooxidans ATCC 53993"],["NCBITaxon%3A1433292","Acidithiobacillus ferrooxidans BY-3"],["NCBITaxon%3A3063953","Acidithiobacillus ferrooxidans F221"],["NCBITaxon%3A2801579","Acidithiobacillus sp. MC2.2"]]},{"id":"NCBITaxon:920","l":"Acidithiobacillus ferrooxidans","na":8,"nb":10,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["NCBITaxon%3A163359","Acidiferrobacter thiooxydans"],["NCBITaxon%3A1232575","Acidithiobacillus ferridurans"],["NCBITaxon%3A920","Acidithiobacillus ferrooxidans"],["NCBITaxon%3A243159","Acidithiobacillus ferrooxidans ATCC 23270"],["NCBITaxon%3A380394","Acidithiobacillus ferrooxidans ATCC 53993"],["NCBITaxon%3A1433292","Acidithiobacillus ferrooxidans BY-3"]]},{"id":"GTDB:s__Nitratidesulfovibrio_vulgaris","l":"","na":9,"nb":8,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["DVM_Triculture.html","DVM Tri-culture"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"]],"b":[["NCBITaxon%3A876","Desulfovibrio desulfuricans"],["NCBITaxon%3A885","Desulfovibrio sp."],["NCBITaxon%3A2049043","Desulfovibrionaceae bacterium"],["NCBITaxon%3A881","Nitratidesulfovibrio vulgaris"],["NCBITaxon%3A391774","Nitratidesulfovibrio vulgaris DP4"],["NCBITaxon%3A573059","Nitratidesulfovibrio vulgaris RCH1"]]},{"id":"GTDB:s__Synechococcus_elongatus","l":"","na":8,"nb":9,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"],["Synechococcus_Bacillus_SPC.html","Synechococcus-Bacillus Synthetic Photosynthetic Consortium"],["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"],["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"],["Synechococcus_Saccharomyces_SPC.html","Synechococcus-Saccharomyces Synthetic Photosynthetic Consortium"]],"b":[["NCBITaxon%3A32046","Synechococcus elongatus"],["NCBITaxon%3A2692912","Synechococcus elongatus FACHB-1061"],["NCBITaxon%3A1357541","Synechococcus elongatus FACHB-242"],["NCBITaxon%3A269084","Synechococcus elongatus PCC 6301"],["NCBITaxon%3A2883261","Synechococcus elongatus PCC 6311"],["NCBITaxon%3A1140","Synechococcus elongatus PCC 7942 = FACHB-805"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":8,"nb":8,"a":[["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"],["Parachlorella_Saccharomyces_Mutualistic_Coculture.html","Parachlorella kessleri + Saccharomyces cerevisiae Mutualistic Co-culture"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"],["Sedimenting_Arabinose_Glucose_Saccharomyces_Coculture.html","Sedimenting Arabinose-Glucose Saccharomyces Coculture"]],"b":[["NCBITaxon%3A4932","Saccharomyces cerevisiae"],["NCBITaxon%3A1266529","Saccharomyces cerevisiae BY4743"],["NCBITaxon%3A1218710","Saccharomyces cerevisiae CBS 1585"],["NCBITaxon%3A764102","Saccharomyces cerevisiae FostersB"],["NCBITaxon%3A764101","Saccharomyces cerevisiae FostersO"],["NCBITaxon%3A1220494","Saccharomyces cerevisiae PE-2"]]},{"id":"NCBITaxon:976","l":"Bacteroidota","na":7,"nb":25542,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["NCBITaxon%3A120971","abyssal strain AII3"],["NCBITaxon%3A120972","abyssal strain AIII4"],["NCBITaxon%3A2967091","Abyssalbus sp."],["NCBITaxon%3A2926907","Abyssalbus ytuae"],["NCBITaxon%3A979970","Acetobacteroides hydrogenigenes"],["NCBITaxon%3A1872095","Acetobacteroides sp."]]},{"id":"NCBITaxon:40323","l":"Stenotrophomonas","na":7,"nb":3947,"a":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"]],"b":[["NCBITaxon%3A255","[Flavobacterium] lutescens"],["NCBITaxon%3A178909","PAH-contaminated sludge bacterium PB-8"],["NCBITaxon%3A178910","PAH-contaminated sludge bacterium PB-9"],["NCBITaxon%3A128780","Stenotrophomonas acidaminiphila"],["NCBITaxon%3A1292134","Stenotrophomonas africana"],["NCBITaxon%3A1212488","Stenotrophomonas africana MGB"]]},{"id":"NCBITaxon:1783273","l":"Patescibacteria group","na":7,"nb":3035,"a":[["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["Soil_BGC_Phylum_Depth_Vegetation_Community.html","Soil Biosynthetic Gene Cluster Phylum-Depth-Vegetation Community"],["Soil_CPR_Nanoarchaea_Rare_Biosphere_Community.html","Soil CPR Bacteria and Nanoarchaea Rare-Biosphere Community"]],"b":[["NCBITaxon%3A1932010","Candidatus Adlerbacteria bacterium"],["NCBITaxon%3A1618605","Candidatus Adlerbacteria bacterium GW2011_GWA1_54_10"],["NCBITaxon%3A1618606","Candidatus Adlerbacteria bacterium GW2011_GWA2_54_12"],["NCBITaxon%3A1618607","Candidatus Adlerbacteria bacterium GW2011_GWB1_54_7"],["NCBITaxon%3A1618608","Candidatus Adlerbacteria bacterium GW2011_GWC1_50_9"],["NCBITaxon%3A1797239","Candidatus Adlerbacteria bacterium RIFCSPHIGHO2_01_FULL_54_23"]]},{"id":"GTDB:s__Bacillus_velezensis","l":"","na":7,"nb":169,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"]],"b":[["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A1390","Bacillus amyloliquefaciens"],["NCBITaxon%3A1412898","Bacillus amyloliquefaciens CC178"],["NCBITaxon%3A1198291","Bacillus amyloliquefaciens DC-12"],["NCBITaxon%3A1457158","Bacillus amyloliquefaciens EBL11"],["NCBITaxon%3A1390372","Bacillus amyloliquefaciens EGD-AQ14"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":7,"nb":168,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A572264","Bacillus cereus 03BB102"],["NCBITaxon%3A451709","Bacillus cereus 03BB108"],["NCBITaxon%3A526967","Bacillus cereus 172560W"],["NCBITaxon%3A363751","Bacillus cereus 31673"],["NCBITaxon%3A526979","Bacillus cereus 95/8201"]]},{"id":"NCBITaxon:40324","l":"Stenotrophomonas maltophilia","na":7,"nb":44,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]],"b":[["NCBITaxon%3A13689","Sphingomonas paucimobilis"],["NCBITaxon%3A1292134","Stenotrophomonas africana"],["NCBITaxon%3A3384461","Stenotrophomonas beteli"],["NCBITaxon%3A86189","Stenotrophomonas hibiscicola"],["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A1288954","Stenotrophomonas maltophilia 503"]]},{"id":"NCBITaxon:818","l":"Bacteroides thetaiotaomicron","na":7,"nb":32,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A47678","Bacteroides caccae"],["NCBITaxon%3A411901","Bacteroides caccae ATCC 43185"],["NCBITaxon%3A29523","Bacteroides sp."],["NCBITaxon%3A818","Bacteroides thetaiotaomicron"],["NCBITaxon%3A1263054","Bacteroides thetaiotaomicron CAG:40"],["NCBITaxon%3A1235785","Bacteroides thetaiotaomicron dnLKV9"]]},{"id":"GTDB:s__Bacteroides_thetaiotaomicron","l":"","na":7,"nb":20,"a":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A3077420","Acutalibacteraceae bacterium"],["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A1201742","bacterium NLAE-zl-H412"],["NCBITaxon%3A1201743","bacterium NLAE-zl-H413"],["NCBITaxon%3A817","Bacteroides fragilis"],["NCBITaxon%3A29523","Bacteroides sp."]]},{"id":"GTDB:s__Bacillus_A_cereus_U","l":"","na":7,"nb":15,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A1053189","Bacillus cereus BAG5X1-1"],["NCBITaxon%3A1053193","Bacillus cereus BAG6O-2"],["NCBITaxon%3A1053218","Bacillus cereus MC118"],["NCBITaxon%3A1053219","Bacillus cereus MC67"],["NCBITaxon%3A1053231","Bacillus cereus VD118"]]},{"id":"GTDB:s__Bacillus_A_pseudomycoides","l":"","na":7,"nb":15,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A2920292","Bacillus cereus group sp. BfR-BA-01315"],["NCBITaxon%3A2794591","Bacillus cereus group sp. N21"],["NCBITaxon%3A1053234","Bacillus cereus VD136"],["NCBITaxon%3A1085379","Bacillus cereus VDM006"],["NCBITaxon%3A1085386","Bacillus cereus VDM021"],["NCBITaxon%3A1405","Bacillus mycoides"]]},{"id":"GTDB:s__Bacillus_A_mobilis","l":"","na":7,"nb":13,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A526992","Bacillus cereus AH1271"],["NCBITaxon%3A2920286","Bacillus cereus group sp. BfR-BA-01309"],["NCBITaxon%3A2920323","Bacillus cereus group sp. BfR-BA-01379"],["NCBITaxon%3A3094884","Bacillus cereus group sp. BfR-BA-01700"],["NCBITaxon%3A3018060","Bacillus cereus group sp. TH152-1LC"]]},{"id":"GTDB:s__Bacillus_A_sp003400245","l":"","na":7,"nb":13,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A1085389","Bacillus cereus B5-2"],["NCBITaxon%3A1053178","Bacillus cereus BAG2O-3"],["NCBITaxon%3A1085388","Bacillus cereus BAG3O-1"],["NCBITaxon%3A3040259","Bacillus cereus group sp. RP37"],["NCBITaxon%3A2034282","Bacillus sp. AFS075960"]]},{"id":"GTDB:s__Bacillus_A_nitratireducens","l":"","na":7,"nb":11,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A526993","Bacillus cereus AH1272"],["NCBITaxon%3A526994","Bacillus cereus AH1273"],["NCBITaxon%3A1053167","Bacillus cereus BAG1O-1"],["NCBITaxon%3A1053172","Bacillus cereus BAG1X1-3"],["NCBITaxon%3A1053183","Bacillus cereus BAG3X2-1"]]},{"id":"GTDB:s__Bacillus_A_paramycoides","l":"","na":7,"nb":8,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A2920287","Bacillus cereus group sp. BfR-BA-01310"],["NCBITaxon%3A3450636","Bacillus cereus group sp. MYBK30-1"],["NCBITaxon%3A3450635","Bacillus cereus group sp. MYBK30-2"],["NCBITaxon%3A1053229","Bacillus cereus VD107"],["NCBITaxon%3A2026194","Bacillus paramycoides"]]},{"id":"NCBITaxon:1239","l":"Bacillota","na":6,"nb":96113,"a":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["Thermophilic_ExSitu_Biomethanation_Mixed_Culture.html","Thermophilic Ex-Situ Biomethanation Mixed Culture"]],"b":[["NCBITaxon%3A46125","Abiotrophia defectiva"],["NCBITaxon%3A592010","Abiotrophia defectiva ATCC 49176"],["NCBITaxon%3A1410024","Abiotrophia defectiva HMP_JCVI_SC0171"],["NCBITaxon%3A1410025","Abiotrophia defectiva HMP_JCVI_SC0235"],["NCBITaxon%3A191553","Abiotrophia para-adiacens"],["NCBITaxon%3A76631","Abiotrophia sp."]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":6,"nb":79,"a":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["NCBITaxon%3A1931223","Caballeronia sp."],["NCBITaxon%3A89065","Pseudomonas abietaniphila"],["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1123912","Pseudomonas auricularis"],["NCBITaxon%3A930166","Pseudomonas brassicacearum"],["NCBITaxon%3A129817","Pseudomonas brenneri"]]},{"id":"NCBITaxon:32046","l":"Synechococcus elongatus","na":6,"nb":64,"a":[["Synechococcus_Bacillus_SPC.html","Synechococcus-Bacillus Synthetic Photosynthetic Consortium"],["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"],["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"],["Synechococcus_Saccharomyces_SPC.html","Synechococcus-Saccharomyces Synthetic Photosynthetic Consortium"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["NCBITaxon%3A326333","Synechococcus cf. elongatus CCMP1379"],["NCBITaxon%3A32046","Synechococcus elongatus"],["NCBITaxon%3A1665532","Synechococcus elongatus 0814_107_005_M13_Fp"],["NCBITaxon%3A2729336","Synechococcus elongatus AARL T012"],["NCBITaxon%3A3073440","Synechococcus elongatus ACC1"],["NCBITaxon%3A1130982","Synechococcus elongatus ARKK1"]]},{"id":"GTDB:s__Stenotrophomonas_sepilia","l":"","na":6,"nb":29,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A1977087","Pseudomonadota bacterium"],["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A1235458","Stenotrophomonas maltophilia AU12-09"],["NCBITaxon%3A3111513","Stenotrophomonas maltophilia group sp. CASM10"],["NCBITaxon%3A3111514","Stenotrophomonas maltophilia group sp. CASM26"],["NCBITaxon%3A3111515","Stenotrophomonas maltophilia group sp. CASM55"]]},{"id":"GTDB:s__Stenotrophomonas_muris","l":"","na":6,"nb":27,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A1926873","Lysobacteraceae bacterium"],["NCBITaxon%3A1977087","Pseudomonadota bacterium"],["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A1163399","Stenotrophomonas maltophilia D457"],["NCBITaxon%3A1451188","Stenotrophomonas maltophilia M30"],["NCBITaxon%3A2963283","Stenotrophomonas muris"]]},{"id":"GTDB:s__Stenotrophomonas_maltophilia","l":"","na":6,"nb":23,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A1977087","Pseudomonadota bacterium"],["NCBITaxon%3A36746","Pseudomonas cichorii"],["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A1183154","Stenotrophomonas maltophilia Ab55555"],["NCBITaxon%3A1190567","Stenotrophomonas maltophilia EPM1"],["NCBITaxon%3A522373","Stenotrophomonas maltophilia K279a"]]},{"id":"GTDB:s__Stenotrophomonas_indicatrix","l":"","na":6,"nb":20,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A1954209","bacterium AM6"],["NCBITaxon%3A86188","Stenotrophomonas geniculata"],["NCBITaxon%3A2045451","Stenotrophomonas indicatrix"],["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A1429851","Stenotrophomonas maltophilia 5BA-I-2"],["NCBITaxon%3A2940566","Stenotrophomonas sp. 1278"]]},{"id":"GTDB:s__Stenotrophomonas_geniculata","l":"","na":6,"nb":15,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A86188","Stenotrophomonas geniculata"],["NCBITaxon%3A1336242","Stenotrophomonas geniculata ATCC 19374 = JCM 13324"],["NCBITaxon%3A1167641","Stenotrophomonas geniculata N1"],["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A69392","Stenotrophomonas sp."]]},{"id":"GTDB:s__Stenotrophomonas_hibiscicola","l":"","na":6,"nb":14,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A1926873","Lysobacteraceae bacterium"],["NCBITaxon%3A1977087","Pseudomonadota bacterium"],["NCBITaxon%3A86189","Stenotrophomonas hibiscicola"],["NCBITaxon%3A1279018","Stenotrophomonas hibiscicola ATCC 19867"],["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A3061099","Stenotrophomonas maltophilia group sp. msm1"]]},{"id":"GTDB:s__Stenotrophomonas_bentonitica_A","l":"","na":6,"nb":13,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A1926873","Lysobacteraceae bacterium"],["NCBITaxon%3A1977087","Pseudomonadota bacterium"],["NCBITaxon%3A1450134","Stenotrophomonas bentonitica"],["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A1118235","Stenotrophomonas maltophilia PML168"],["NCBITaxon%3A216778","Stenotrophomonas rhizophila"]]},{"id":"GTDB:s__Stenotrophomonas_nematodicola","l":"","na":6,"nb":9,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A1210005","Stenotrophomonas maltophilia S028"],["NCBITaxon%3A2656746","Stenotrophomonas nematodicola"],["NCBITaxon%3A216778","Stenotrophomonas rhizophila"],["NCBITaxon%3A69392","Stenotrophomonas sp."],["NCBITaxon%3A2972779","Stenotrophomonas sp. Marseille-Q5258"]]},{"id":"GTDB:s__Leptospirillum_A_rubarum","l":"","na":6,"nb":7,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["NCBITaxon%3A178606","Leptospirillum ferriphilum"],["NCBITaxon%3A1048260","Leptospirillum ferriphilum ML-04"],["NCBITaxon%3A1441628","Leptospirillum ferriphilum YSK"],["NCBITaxon%3A419542","Leptospirillum rubarum"],["NCBITaxon%3A1159328","Leptospirillum sp. Group II 'C75'"],["NCBITaxon%3A1660083","Leptospirillum sp. Group II 'CF-1'"]]},{"id":"GTDB:s__Geobacter_sulfurreducens","l":"","na":6,"nb":6,"a":[["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"]],"b":[["NCBITaxon%3A3080755","Geobacter sp. 60473"],["NCBITaxon%3A1961403","Geobacter sp. UBA7696"],["NCBITaxon%3A35554","Geobacter sulfurreducens"],["NCBITaxon%3A663917","Geobacter sulfurreducens KN400"],["NCBITaxon%3A243231","Geobacter sulfurreducens PCA"],["NCBITaxon%3A1260928","Geobacter sulfurreducens subsp. ethanolicus"]]},{"id":"NCBITaxon:1883","l":"Streptomyces","na":5,"nb":31267,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["Wheat_Consortium_C6.html","Wheat Synthetic Consortium C6"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A208445","Amycolatopsis tolypomycina"],["NCBITaxon%3A1470348","Candidatus Streptomyces massiliensis"],["NCBITaxon%3A1211820","Candidatus Streptomyces massiliensis AP10"],["NCBITaxon%3A371608","Candidatus Streptomyces philanthi"],["NCBITaxon%3A1563718","Candidatus Streptomyces philanthi bv. albopilosus"],["NCBITaxon%3A371609","Candidatus Streptomyces philanthi bv. barbiger"]]},{"id":"NCBITaxon:374","l":"Bradyrhizobium","na":5,"nb":9860,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"],["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["NCBITaxon%3A2683706","Bradyrhizobium acaciae"],["NCBITaxon%3A2734909","Bradyrhizobium aeschynomenes"],["NCBITaxon%3A2751811","Bradyrhizobium agreste"],["NCBITaxon%3A634784","Bradyrhizobium algeriense"],["NCBITaxon%3A1571202","Bradyrhizobium altum"],["NCBITaxon%3A1300045","Bradyrhizobium americanum"]]},{"id":"NCBITaxon:1578","l":"Lactobacillus","na":5,"nb":2379,"a":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"],["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["NCBITaxon%3A2838636","Candidatus Lactobacillus pullistercoris"],["NCBITaxon%3A2838724","Candidatus Paralactobacillus gallistercoris"],["NCBITaxon%3A1612","Companilactobacillus farciminis"],["NCBITaxon%3A3435293","Faecalibacterium langellae"],["NCBITaxon%3A1614","Fructilactobacillus fructivorans"],["NCBITaxon%3A1597","Lacticaseibacillus paracasei"]]},{"id":"NCBITaxon:57723","l":"Acidobacteriota","na":5,"nb":1245,"a":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["SPRUCE_Peatland_Methane_Cycling_Community.html","SPRUCE Peatland Methane-Cycling Microbial Community"]],"b":[["NCBITaxon%3A442870","Acanthopleuribacter pedis"],["NCBITaxon%3A1872087","Acanthopleuribacter sp."],["NCBITaxon%3A2696471","Acanthopleuribacteraceae bacterium"],["NCBITaxon%3A1335627","Acidicapsa acidiphila"],["NCBITaxon%3A1615681","Acidicapsa acidisoli"],["NCBITaxon%3A946336","Acidicapsa borealis"]]},{"id":"NCBITaxon:106591","l":"Ensifer","na":5,"nb":902,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Staged_Cattle_Manure_Ensifer_Bacillus_SynCom.html","Staged Ensifer-Bacillus Cattle-Manure Wastewater SynCom"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A106592","Ensifer adhaerens"],["NCBITaxon%3A1416753","Ensifer adhaerens OV14"],["NCBITaxon%3A1708715","Ensifer aridi"],["NCBITaxon%3A555315","Ensifer canadensis"],["NCBITaxon%3A1806200","Ensifer collicola"],["NCBITaxon%3A1664424","Ensifer genomosp. I"]]},{"id":"NCBITaxon:1822464","l":"Paraburkholderia","na":5,"nb":416,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["NCBITaxon%3A1034313","Candidatus Paraburkholderia andongensis"],["NCBITaxon%3A242161","Candidatus Paraburkholderia calva"],["NCBITaxon%3A1069529","Candidatus Paraburkholderia hispidae"],["NCBITaxon%3A198822","Candidatus Paraburkholderia kirkii"],["NCBITaxon%3A1055526","Candidatus Paraburkholderia kirkii UZHbot1"],["NCBITaxon%3A242162","Candidatus Paraburkholderia nigropunctata"]]},{"id":"GTDB:s__Methanospirillum_hungatei","l":"","na":8,"nb":5,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"]],"b":[["NCBITaxon%3A1852878","Euryarchaeota archaeon ADurb.Bin294"],["NCBITaxon%3A1915702","Methanomicrobiales archaeon UBA81"],["NCBITaxon%3A2203","Methanospirillum hungatei"],["NCBITaxon%3A323259","Methanospirillum hungatei JF-1"],["NCBITaxon%3A45200","Methanospirillum sp."]]},{"id":"GTDB:s__Bacillus_A_luti","l":"","na":7,"nb":5,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A526968","Bacillus cereus R309803"],["NCBITaxon%3A2026191","Bacillus luti"],["NCBITaxon%3A2217834","Bacillus sp. SH5-2"],["NCBITaxon%3A1428","Bacillus thuringiensis"]]},{"id":"GTDB:s__Bacillus_A_sp018966865","l":"","na":7,"nb":5,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1053206","Bacillus cereus HuA4-10"],["NCBITaxon%3A2846779","Bacillus sp. NP247"],["NCBITaxon%3A3346273","Bacillus sp. NPDC057893"],["NCBITaxon%3A3347061","Bacillus sp. NPDC060175"],["NCBITaxon%3A1428","Bacillus thuringiensis"]]},{"id":"GTDB:s__Hungateiclostridium_thermocellum","l":"","na":5,"nb":7,"a":[["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["NCBITaxon%3A1515","Acetivibrio thermocellus"],["NCBITaxon%3A1138384","Acetivibrio thermocellus AD2"],["NCBITaxon%3A203119","Acetivibrio thermocellus ATCC 27405"],["NCBITaxon%3A1349417","Acetivibrio thermocellus BC1"],["NCBITaxon%3A637887","Acetivibrio thermocellus DSM 1313"],["NCBITaxon%3A572545","Acetivibrio thermocellus DSM 2360"]]},{"id":"GTDB:s__Stenotrophomonas_sp002192255","l":"","na":5,"nb":7,"a":[["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A868597","Stenotrophomonas maltophilia JV3"],["NCBITaxon%3A69392","Stenotrophomonas sp."],["NCBITaxon%3A2183909","Stenotrophomonas sp. AG209"],["NCBITaxon%3A3162882","Stenotrophomonas sp. NRRL B-14846"],["NCBITaxon%3A1641707","Stenotrophomonas sp. TD3"]]},{"id":"NCBITaxon:35554","l":"Geobacter sulfurreducens","na":6,"nb":5,"a":[["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"]],"b":[["NCBITaxon%3A35554","Geobacter sulfurreducens"],["NCBITaxon%3A663917","Geobacter sulfurreducens KN400"],["NCBITaxon%3A243231","Geobacter sulfurreducens PCA"],["NCBITaxon%3A1260928","Geobacter sulfurreducens subsp. ethanolicus"],["NCBITaxon%3A1649546","Geobacter sulfurreducens subsp. sulfurreducens"]]},{"id":"GTDB:s__Dehalococcoides_mccartyi","l":"","na":5,"nb":5,"a":[["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"]],"b":[["NCBITaxon%3A61435","Dehalococcoides mccartyi"],["NCBITaxon%3A243164","Dehalococcoides mccartyi 195"],["NCBITaxon%3A1432060","Dehalococcoides mccartyi CG4"],["NCBITaxon%3A1966486","Dehalococcoides sp."],["NCBITaxon%3A3348344","Dehalococcoides sp. THU4"]]},{"id":"NCBITaxon:32008","l":"Burkholderia","na":4,"nb":7299,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["NCBITaxon%3A2015348","Burkholderia aenigmatica"],["NCBITaxon%3A2683677","Burkholderia alba"],["NCBITaxon%3A152480","Burkholderia ambifaria"],["NCBITaxon%3A339670","Burkholderia ambifaria AMMD"],["NCBITaxon%3A396596","Burkholderia ambifaria IOP40-10"],["NCBITaxon%3A398577","Burkholderia ambifaria MC40-6"]]},{"id":"NCBITaxon:13687","l":"Sphingomonas","na":4,"nb":4913,"a":[["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"],["Wheat_Consortium_C6.html","Wheat Synthetic Consortium C6"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["NCBITaxon%3A196160","Arctic sea ice bacterium ARK10016"],["NCBITaxon%3A3121369","Candidatus Sphingomonas colombiensis"],["NCBITaxon%3A2838760","Candidatus Sphingomonas excrementigallinarum"],["NCBITaxon%3A3121370","Candidatus Sphingomonas phytovorans"],["NCBITaxon%3A1996","Microtetraspora glauca"],["NCBITaxon%3A135719","Sphingobium amiense"]]},{"id":"NCBITaxon:570","l":"Klebsiella","na":4,"nb":4683,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"]],"b":[["NCBITaxon%3A548","Klebsiella aerogenes"],["NCBITaxon%3A1308731","Klebsiella aerogenes ADL-323"],["NCBITaxon%3A935296","Klebsiella aerogenes EA1509E"],["NCBITaxon%3A685445","Klebsiella aerogenes FGI35"],["NCBITaxon%3A1028307","Klebsiella aerogenes KCTC 2190"],["NCBITaxon%3A1439320","Klebsiella aerogenes MGH 61"]]},{"id":"NCBITaxon:237","l":"Flavobacterium","na":4,"nb":4449,"a":[["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["NCBITaxon%3A196875","Arctic sea ice associated bacterium ARK10272"],["NCBITaxon%3A196870","Arctic sea ice bacterium ARK10104"],["NCBITaxon%3A196871","Arctic sea ice bacterium ARK10159"],["NCBITaxon%3A196872","Arctic sea ice bacterium ARK10161"],["NCBITaxon%3A196873","Arctic sea ice bacterium ARK10164"],["NCBITaxon%3A196874","Arctic sea ice bacterium ARK10270"]]},{"id":"NCBITaxon:68287","l":"Mesorhizobium","na":4,"nb":3794,"a":[["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A325218","alpha proteobacterium WG1"],["NCBITaxon%3A102683","Biserrula isolate"],["NCBITaxon%3A1209958","Mesorhizobium abyssinicae"],["NCBITaxon%3A1326083","Mesorhizobium acaciae"],["NCBITaxon%3A3072314","Mesorhizobium album"],["NCBITaxon%3A2448478","Mesorhizobium alexandrii"]]},{"id":"NCBITaxon:1485","l":"Clostridium","na":4,"nb":3036,"a":[["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["QY2S1_Dehalogenimonas_BFR_Bioremediation_Consortium.html","QY2-S1 Dehalogenimonas-Rich Brominated-Flame-Retardant Consortium"],["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]],"b":[["NCBITaxon%3A288965","Acetivibrio clariflavus"],["NCBITaxon%3A720554","Acetivibrio clariflavus DSM 19732"],["NCBITaxon%3A461876","Alkaliphilus oremlandii"],["NCBITaxon%3A259063","Anaerocolumna jejuensis"],["NCBITaxon%3A1121322","Anaerocolumna jejuensis DSM 15929"],["NCBITaxon%3A264463","Anaerosporobacter mobilis"]]},{"id":"NCBITaxon:200795","l":"Chloroflexota","na":4,"nb":1565,"a":[["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["Soil_BGC_Phylum_Depth_Vegetation_Community.html","Soil Biosynthetic Gene Cluster Phylum-Depth-Vegetation Community"]],"b":[["NCBITaxon%3A913108","Aggregatilinea lenta"],["NCBITaxon%3A2806333","Aggregatilinea sp."],["NCBITaxon%3A2952881","Aggregatilineaceae bacterium"],["NCBITaxon%3A2952883","Aggregatilineales bacterium"],["NCBITaxon%3A3117437","Aggregatilineales bacterium SYSU G02658"],["NCBITaxon%3A2738567","Anaerolinaceae bacterium JGI_KA33_A04_032"]]},{"id":"NCBITaxon:816","l":"Bacteroides","na":4,"nb":1027,"a":[["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]],"b":[["NCBITaxon%3A85831","Bacteroides acidifaciens"],["NCBITaxon%3A1235814","Bacteroides acidifaciens JCM 10556"],["NCBITaxon%3A1841855","Bacteroides bouchesdurhonensis"],["NCBITaxon%3A47678","Bacteroides caccae"],["NCBITaxon%3A411901","Bacteroides caccae ATCC 43185"],["NCBITaxon%3A1263037","Bacteroides caccae CAG:21"]]},{"id":"NCBITaxon:1678","l":"Bifidobacterium","na":4,"nb":993,"a":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]],"b":[["NCBITaxon%3A638619","Bifidobacterium actinocoloniiforme"],["NCBITaxon%3A1437605","Bifidobacterium actinocoloniiforme DSM 22766"],["NCBITaxon%3A1680","Bifidobacterium adolescentis"],["NCBITaxon%3A367928","Bifidobacterium adolescentis ATCC 15703"],["NCBITaxon%3A1263057","Bifidobacterium adolescentis CAG:119"],["NCBITaxon%3A1410644","Bifidobacterium adolescentis DSM 20087"]]},{"id":"NCBITaxon:165695","l":"Sphingobium","na":4,"nb":663,"a":[["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["Sphingobium_Nitrososphaera_Phenanthrene_Carbon_SynCom.html","Sphingobium-Nitrososphaera Phenanthrene-Carbon SynCom"],["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["NCBITaxon%3A86193","Sphingobium abikonense"],["NCBITaxon%3A1219036","Sphingobium abikonense NBRC 16140"],["NCBITaxon%3A2933566","Sphingobium agri"],["NCBITaxon%3A3341828","Sphingobium agrisoli"],["NCBITaxon%3A2008318","Sphingobium algorifonticola"],["NCBITaxon%3A135719","Sphingobium amiense"]]},{"id":"NCBITaxon:872","l":"Desulfovibrio","na":4,"nb":600,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["NCBITaxon%3A2838532","Candidatus Desulfovibrio faecigallinarum"],["NCBITaxon%3A2838533","Candidatus Desulfovibrio gallistercoris"],["NCBITaxon%3A2838534","Candidatus Desulfovibrio intestinavium"],["NCBITaxon%3A2838535","Candidatus Desulfovibrio intestinigallinarum"],["NCBITaxon%3A2838536","Candidatus Desulfovibrio intestinipullorum"],["NCBITaxon%3A2696086","Candidatus Desulfovibrio kirbyi"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":4,"nb":178,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]],"b":[["NCBITaxon%3A150055","Streptococcus lutetiensis"],["NCBITaxon%3A1309","Streptococcus mutans"],["NCBITaxon%3A857155","Streptococcus mutans 11A1"],["NCBITaxon%3A857147","Streptococcus mutans 11SSST2"],["NCBITaxon%3A857143","Streptococcus mutans 11VS1"],["NCBITaxon%3A857113","Streptococcus mutans 14D"]]},{"id":"GTDB:s__Streptococcus_mutans","l":"","na":4,"nb":165,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]],"b":[["NCBITaxon%3A1993866","Lactobacillales bacterium"],["NCBITaxon%3A1309","Streptococcus mutans"],["NCBITaxon%3A857155","Streptococcus mutans 11A1"],["NCBITaxon%3A857147","Streptococcus mutans 11SSST2"],["NCBITaxon%3A857143","Streptococcus mutans 11VS1"],["NCBITaxon%3A857113","Streptococcus mutans 14D"]]},{"id":"NCBITaxon:28231","l":"Geobacter","na":4,"nb":102,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["Waste_Sludge_Electrofermentation_Biofilm_Suspension_Community.html","Waste-Sludge Electro-Fermentation Biofilm-Suspension Community"]],"b":[["NCBITaxon%3A1340425","Geobacter anodireducens"],["NCBITaxon%3A345631","Geobacter argillaceus"],["NCBITaxon%3A2815309","Geobacter benzoatilyticus"],["NCBITaxon%3A155042","Geobacter grbiciae"],["NCBITaxon%3A293884","Geobacter hephaestius"],["NCBITaxon%3A225193","Geobacter humireducens"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":4,"nb":101,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A817","Bacteroides fragilis"],["NCBITaxon%3A457424","Bacteroides fragilis 3_1_12"],["NCBITaxon%3A862962","Bacteroides fragilis 638R"],["NCBITaxon%3A1308728","Bacteroides fragilis ADL-402"],["NCBITaxon%3A1263046","Bacteroides fragilis CAG:47"],["NCBITaxon%3A1263047","Bacteroides fragilis CAG:558"]]},{"id":"GTDB:s__Bacteroides_fragilis","l":"","na":4,"nb":92,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A3077420","Acutalibacteraceae bacterium"],["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A817","Bacteroides fragilis"],["NCBITaxon%3A862962","Bacteroides fragilis 638R"],["NCBITaxon%3A1263046","Bacteroides fragilis CAG:47"],["NCBITaxon%3A997878","Bacteroides fragilis CL03T00C08"]]},{"id":"GTDB:s__Bacteroides_ovatus","l":"","na":4,"nb":38,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A1339286","Bacteroides fragilis str. 3725 D9 ii"],["NCBITaxon%3A28116","Bacteroides ovatus"],["NCBITaxon%3A665954","Bacteroides ovatus 3_8_47FAA"],["NCBITaxon%3A411476","Bacteroides ovatus ATCC 8483"],["NCBITaxon%3A1263050","Bacteroides ovatus CAG:22"],["NCBITaxon%3A997885","Bacteroides ovatus CL02T12C04"]]},{"id":"NCBITaxon:1590","l":"Lactiplantibacillus plantarum","na":4,"nb":36,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Pichia_Lactiplantibacillus_CCMA_Plant_Beverage_Coculture.html","Pichia-Lactiplantibacillus CCMA Plant Beverage Coculture"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["NCBITaxon%3A271881","Lactiplantibacillus argentoratensis"],["NCBITaxon%3A1423831","Lactiplantibacillus argentoratensis DSM 16365"],["NCBITaxon%3A60520","Lactiplantibacillus paraplantarum"],["NCBITaxon%3A1590","Lactiplantibacillus plantarum"],["NCBITaxon%3A1327988","Lactiplantibacillus plantarum 16"],["NCBITaxon%3A1399793","Lactiplantibacillus plantarum 19L3"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":4,"nb":32,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["NCBITaxon%3A1359","Lactococcus cremoris"],["NCBITaxon%3A2816960","Lactococcus cremoris subsp. cremoris"],["NCBITaxon%3A1348655","Lactococcus cremoris subsp. cremoris NBRC 100676"],["NCBITaxon%3A1363","Lactococcus garvieae"],["NCBITaxon%3A1358","Lactococcus lactis"],["NCBITaxon%3A2731284","Lactococcus lactis (ex Latorre-Guzman et al. 1977) Schleifer et al. 1986"]]},{"id":"GTDB:s__Streptococcus_thermophilus","l":"","na":4,"nb":30,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["NCBITaxon%3A1903720","Bacilli bacterium"],["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A1306","Streptococcus sp."],["NCBITaxon%3A2921366","Streptococcus sp. FSL E2-3488"],["NCBITaxon%3A2954729","Streptococcus sp. FSL E2-3494"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":4,"nb":25,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["NCBITaxon%3A35783","Enterococcus sp."],["NCBITaxon%3A1308","Streptococcus thermophilus"],["NCBITaxon%3A1435981","Streptococcus thermophilus 1F8CT"],["NCBITaxon%3A1408178","Streptococcus thermophilus ASCC 1275"],["NCBITaxon%3A1263110","Streptococcus thermophilus CAG:236"],["NCBITaxon%3A1042404","Streptococcus thermophilus CNCM I-1630"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":4,"nb":19,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["NCBITaxon%3A1402","Bacillus licheniformis"],["NCBITaxon%3A1169411","Bacillus licheniformis 10-1-A"],["NCBITaxon%3A44097","Bacillus licheniformis 2709"],["NCBITaxon%3A1169412","Bacillus licheniformis 5-2-D"],["NCBITaxon%3A1368424","Bacillus licheniformis CG-B52"],["NCBITaxon%3A1232672","Bacillus licheniformis CGMCC 3963"]]},{"id":"GTDB:s__Bacteroides_hominis","l":"","na":4,"nb":17,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A3077420","Acutalibacteraceae bacterium"],["NCBITaxon%3A817","Bacteroides fragilis"],["NCBITaxon%3A457424","Bacteroides fragilis 3_1_12"],["NCBITaxon%3A1263047","Bacteroides fragilis CAG:558"],["NCBITaxon%3A1073386","Bacteroides fragilis HMW 610"],["NCBITaxon%3A1073388","Bacteroides fragilis HMW 616"]]},{"id":"NCBITaxon:33038","l":"Mediterraneibacter gnavus","na":4,"nb":13,"a":[["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Clostridial_isoDCA_Mini_Consortium.html","Clostridial isoDCA Mini Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A33038","Mediterraneibacter gnavus"],["NCBITaxon%3A1384063","Mediterraneibacter gnavus AGR2154"],["NCBITaxon%3A411470","Mediterraneibacter gnavus ATCC 29149"],["NCBITaxon%3A1263106","Mediterraneibacter gnavus CAG:126"],["NCBITaxon%3A1073375","Mediterraneibacter gnavus CC55_001C"],["NCBITaxon%3A935582","Mediterraneibacter gnavus E1"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":4,"nb":12,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"],["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["NCBITaxon%3A72000","Kocuria rhizophila"],["NCBITaxon%3A378753","Kocuria rhizophila DC2201"],["NCBITaxon%3A1272","Kocuria varians"],["NCBITaxon%3A1270","Micrococcus luteus"],["NCBITaxon%3A1357403","Micrococcus luteus CD1_FAA_NB_1"],["NCBITaxon%3A935864","Micrococcus luteus J28"]]},{"id":"GTDB:s__Bifidobacterium_infantis","l":"","na":4,"nb":9,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["NCBITaxon%3A2569485","Bifidobacteriaceae bacterium MCC01971"],["NCBITaxon%3A216816","Bifidobacterium longum"],["NCBITaxon%3A1682","Bifidobacterium longum subsp. infantis"],["NCBITaxon%3A391904","Bifidobacterium longum subsp. infantis ATCC 15697 = JCM 1222 = DSM 20088"],["NCBITaxon%3A1457183","Bifidobacterium longum subsp. infantis EK3"],["NCBITaxon%3A1695","Bifidobacterium longum subsp. suis"]]},{"id":"NCBITaxon:37919","l":"Rhodococcus opacus","na":4,"nb":9,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"],["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["NCBITaxon%3A1833","Rhodococcus erythropolis"],["NCBITaxon%3A37919","Rhodococcus opacus"],["NCBITaxon%3A632772","Rhodococcus opacus B4"],["NCBITaxon%3A1129896","Rhodococcus opacus M213"],["NCBITaxon%3A1219021","Rhodococcus opacus NBRC 100626"],["NCBITaxon%3A543736","Rhodococcus opacus PD630"]]},{"id":"GTDB:s__Acidithiobacillus_thiooxidans","l":"","na":4,"nb":7,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["NCBITaxon%3A119978","Acidithiobacillus albertensis"],["NCBITaxon%3A1872118","Acidithiobacillus sp."],["NCBITaxon%3A2697656","Acidithiobacillus sp. HP-11"],["NCBITaxon%3A930","Acidithiobacillus thiooxidans"],["NCBITaxon%3A1432062","Acidithiobacillus thiooxidans A01"],["NCBITaxon%3A637390","Acidithiobacillus thiooxidans ATCC 19377"]]},{"id":"GTDB:s__Bacillus_A_cereus_K","l":"","na":7,"nb":4,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A1053179","Bacillus cereus BAG2X1-1"],["NCBITaxon%3A1053181","Bacillus cereus BAG2X1-3"],["NCBITaxon%3A1890302","Bacillus wiedmannii"]]},{"id":"GTDB:s__Geobacter_metallireducens","l":"","na":5,"nb":4,"a":[["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"]],"b":[["NCBITaxon%3A155042","Geobacter grbiciae"],["NCBITaxon%3A28232","Geobacter metallireducens"],["NCBITaxon%3A269799","Geobacter metallireducens GS-15"],["NCBITaxon%3A691164","Geobacter metallireducens RCH3"]]},{"id":"NCBITaxon:863","l":"Syntrophomonas wolfei","na":4,"nb":5,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["NCBITaxon%3A863","Syntrophomonas wolfei"],["NCBITaxon%3A378794","Syntrophomonas wolfei subsp. methylbutyratica"],["NCBITaxon%3A373074","Syntrophomonas wolfei subsp. saponavida"],["NCBITaxon%3A370885","Syntrophomonas wolfei subsp. wolfei"],["NCBITaxon%3A335541","Syntrophomonas wolfei subsp. wolfei str. Goettingen G311"]]},{"id":"NCBITaxon:930","l":"Acidithiobacillus thiooxidans","na":4,"nb":4,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["NCBITaxon%3A3063952","Acidithiobacillus concretivorus"],["NCBITaxon%3A930","Acidithiobacillus thiooxidans"],["NCBITaxon%3A1432062","Acidithiobacillus thiooxidans A01"],["NCBITaxon%3A637390","Acidithiobacillus thiooxidans ATCC 19377"]]},{"id":"NCBITaxon:547","l":"Enterobacter","na":3,"nb":6599,"a":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["NCBITaxon%3A3142537","Enterobacter adelaidei"],["NCBITaxon%3A61645","Enterobacter asburiae"],["NCBITaxon%3A1330532","Enterobacter asburiae B1-3"],["NCBITaxon%3A1330533","Enterobacter asburiae B5-60"],["NCBITaxon%3A1442602","Enterobacter asburiae C1"],["NCBITaxon%3A1298604","Enterobacter asburiae JCM 6051"]]},{"id":"NCBITaxon:379","l":"Rhizobium","na":3,"nb":5539,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["NCBITaxon%3A2934936","Allorhizobium sonneratiae"],["NCBITaxon%3A2041385","Arminella tumorigenes"],["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A1355477","Bradyrhizobium diazoefficiens"],["NCBITaxon%3A224911","Bradyrhizobium diazoefficiens USDA 110"],["NCBITaxon%3A29448","Bradyrhizobium elkanii"]]},{"id":"NCBITaxon:44249","l":"Paenibacillus","na":3,"nb":5352,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["NCBITaxon%3A1531483","Candidatus Paenibacillus aerius"],["NCBITaxon%3A1531475","Candidatus Paenibacillus castillanus"],["NCBITaxon%3A1515745","Candidatus Paenibacillus guadalajarensis"],["NCBITaxon%3A1531482","Candidatus Paenibacillus hispaniensis"],["NCBITaxon%3A1531476","Candidatus Paenibacillus hominis"],["NCBITaxon%3A1515744","Candidatus Paenibacillus ilicicola"]]},{"id":"NCBITaxon:407","l":"Methylobacterium","na":3,"nb":2522,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["NCBITaxon%3A56818","Methylobacillus sp."],["NCBITaxon%3A333297","Methylobacterium adhaesivum"],["NCBITaxon%3A418708","Methylobacterium aerolatum"],["NCBITaxon%3A2738439","Methylobacterium ajmalii"],["NCBITaxon%3A3344826","Methylobacterium alsaeris"],["NCBITaxon%3A3071472","Methylobacterium amylolyticum"]]},{"id":"NCBITaxon:22","l":"Shewanella","na":3,"nb":2330,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Shewanella_Denitrifying_Richness_SynComs.html","Shewanella Denitrifying Richness SynComs"]],"b":[["NCBITaxon%3A196819","Arctic sea ice bacterium ARK10035"],["NCBITaxon%3A259291","cf. Shewanella SAR-1"],["NCBITaxon%3A259292","cf. Shewanella SAR-2"],["NCBITaxon%3A73131","Mariana eubacterium no. 11"],["NCBITaxon%3A73132","Mariana eubacterium no. 13"],["NCBITaxon%3A73133","Mariana eubacterium no. 24"]]},{"id":"NCBITaxon:53335","l":"Pantoea","na":3,"nb":2056,"a":[["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["NCBITaxon%3A2080494","Candidatus Pantoea alvi"],["NCBITaxon%3A1947042","Candidatus Pantoea astica"],["NCBITaxon%3A3108221","Candidatus Pantoea bathycoeliae"],["NCBITaxon%3A2831036","Candidatus Pantoea bituminis"],["NCBITaxon%3A1947044","Candidatus Pantoea borealis"],["NCBITaxon%3A1235990","Candidatus Pantoea carbekii"]]},{"id":"NCBITaxon:2742","l":"Marinobacter","na":3,"nb":1792,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["NCBITaxon%3A196838","Arctic sea ice bacterium ARK10228"],["NCBITaxon%3A196839","Arctic sea ice bacterium ARK10244"],["NCBITaxon%3A196840","Arctic sea ice bacterium ARK10251"],["NCBITaxon%3A196841","Arctic sea ice bacterium ARK10296"],["NCBITaxon%3A127731","endocytic bacterium Noc10"],["NCBITaxon%3A127732","endocytic bacterium Noc11"]]},{"id":"NCBITaxon:203682","l":"Planctomycetota","na":3,"nb":1406,"a":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"]],"b":[["NCBITaxon%3A1930276","Adhaeretor mobilis"],["NCBITaxon%3A2862453","Adhaeretor sp."],["NCBITaxon%3A3454464","Aeoliella fuhlenseeensis"],["NCBITaxon%3A2527972","Aeoliella mucimassa"],["NCBITaxon%3A2795800","Aeoliella sp."],["NCBITaxon%3A2954799","Aeoliella straminimaris"]]},{"id":"NCBITaxon:528","l":"Ochrobactrum","na":3,"nb":1276,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"]],"b":[["NCBITaxon%3A529","Brucella anthropi"],["NCBITaxon%3A659015","Brucella daejeonensis"],["NCBITaxon%3A52132","Brucella sp."],["NCBITaxon%3A246569","marine bacterium 13737"],["NCBITaxon%3A259359","microbial fuel cell bacterium ISO1"],["NCBITaxon%3A2993941","Ochrobactrum chromiisoli"]]},{"id":"NCBITaxon:222","l":"Achromobacter","na":3,"nb":1173,"a":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"]],"b":[["NCBITaxon%3A1287736","Achromobacter aegrifaciens"],["NCBITaxon%3A1783500","Achromobacter agile"],["NCBITaxon%3A1353888","Achromobacter agilis"],["NCBITaxon%3A1750518","Achromobacter aloeverae"],["NCBITaxon%3A1389935","Achromobacter animicus"],["NCBITaxon%3A1287737","Achromobacter anxifer"]]},{"id":"NCBITaxon:55080","l":"Brevibacillus","na":3,"nb":774,"a":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"]],"b":[["NCBITaxon%3A51101","Brevibacillus agri"],["NCBITaxon%3A1444307","Brevibacillus agri 5-2"],["NCBITaxon%3A1246477","Brevibacillus agri BAB-2500"],["NCBITaxon%3A2570228","Brevibacillus antibioticus"],["NCBITaxon%3A927786","Brevibacillus aydinogluensis"],["NCBITaxon%3A45462","Brevibacillus borstelensis"]]},{"id":"NCBITaxon:149698","l":"Massilia","na":3,"nb":707,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]],"b":[["NCBITaxon%3A1904440","Duganella sp."],["NCBITaxon%3A453817","Massilia aerilata"],["NCBITaxon%3A1811226","Massilia agilis"],["NCBITaxon%3A1886785","Massilia agri"],["NCBITaxon%3A2892444","Massilia agrisoli"],["NCBITaxon%3A286638","Massilia alkalitolerans"]]},{"id":"GTDB:s__Enterococcus_faecalis","l":"","na":3,"nb":615,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A363922","bacterium spbL1type3-1"],["NCBITaxon%3A2291321","Enterococcaceae bacterium"],["NCBITaxon%3A1951731","Enterococcaceae bacterium UBA3893"],["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A1260363","Enterococcus faecalis 02-MB-BW-10"]]},{"id":"NCBITaxon:85413","l":"Allobosea","na":3,"nb":605,"a":[["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]],"b":[["NCBITaxon%3A132928","Allobosea aff. thiooxidans 1.10"],["NCBITaxon%3A3068632","Allobosea beijingensis"],["NCBITaxon%3A2763117","Allobosea caraganae"],["NCBITaxon%3A151454","Allobosea eneae"],["NCBITaxon%3A1211774","Allobosea eneae 34614"],["NCBITaxon%3A1036778","Allobosea lathyri"]]},{"id":"NCBITaxon:165697","l":"Sphingopyxis","na":3,"nb":494,"a":[["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"]],"b":[["NCBITaxon%3A28214","Sphingomonas sp."],["NCBITaxon%3A117207","Sphingopyxis alaskensis"],["NCBITaxon%3A317655","Sphingopyxis alaskensis RB2256"],["NCBITaxon%3A651663","Sphingopyxis bauzanensis"],["NCBITaxon%3A180400","Sphingopyxis chilensis"],["NCBITaxon%3A1507287","Sphingopyxis flava"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":3,"nb":391,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A1260363","Enterococcus faecalis 02-MB-BW-10"],["NCBITaxon%3A1260365","Enterococcus faecalis 02-MB-P-10"],["NCBITaxon%3A1260358","Enterococcus faecalis 06-MB-DW-09"],["NCBITaxon%3A1260359","Enterococcus faecalis 06-MB-S-04"],["NCBITaxon%3A1260360","Enterococcus faecalis 06-MB-S-10"]]},{"id":"NCBITaxon:213118","l":"Desulfobacterales","na":3,"nb":389,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"]],"b":[["NCBITaxon%3A318481","Algorimarina butyrica"],["NCBITaxon%3A2841697","Candidatus Desulfaltia bathyphila"],["NCBITaxon%3A3060595","Candidatus Desulfaltia sp."],["NCBITaxon%3A2487131","Candidatus Desulfarcum epimagneticum"],["NCBITaxon%3A2841695","Candidatus Desulfatibia profunda"],["NCBITaxon%3A3101189","Candidatus Desulfatibia sp."]]},{"id":"NCBITaxon:1783276","l":"Nanobdellati","na":3,"nb":356,"a":[["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"],["Soil_CPR_Nanoarchaea_Rare_Biosphere_Community.html","Soil CPR Bacteria and Nanoarchaea Rare-Biosphere Community"]],"b":[["NCBITaxon%3A3138763","Asbonarchaeaceae archaeon (SeqCode)"],["NCBITaxon%3A3138746","Asbonarchaeum danakilense (SeqCode)"],["NCBITaxon%3A2898728","Candidatus Acidifodinimicrobium mancum"],["NCBITaxon%3A3101490","Candidatus Acidifodinimicrobium sp."],["NCBITaxon%3A1974382","Candidatus Aenigmarchaeota archaeon CG01_land_8_20_14_3_00_37_9"],["NCBITaxon%3A1974383","Candidatus Aenigmarchaeota archaeon CG15_BIG_FIL_POST_REV_8_21_14_020_37_27"]]},{"id":"NCBITaxon:5052","l":"Aspergillus","na":3,"nb":320,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["NCBITaxon%3A1904037","Aspergillus acidohumus"],["NCBITaxon%3A487661","Aspergillus aculeatinus"],["NCBITaxon%3A1070780","Aspergillus affinis"],["NCBITaxon%3A657433","Aspergillus alabamensis"],["NCBITaxon%3A1612426","Aspergillus allahabadii"],["NCBITaxon%3A209559","Aspergillus alliaceus"]]},{"id":"GTDB:s__Enterobacter_hormaechei_C","l":"","na":3,"nb":263,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A1260277","Enterobacter cancerogenus YZ1"],["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A2027919","Enterobacter cloacae complex sp."],["NCBITaxon%3A2998100","Enterobacter cloacae complex sp. 2022EL-00747"],["NCBITaxon%3A2998099","Enterobacter cloacae complex sp. 2022EL-00759"]]},{"id":"NCBITaxon:45989","l":"Methanoculleus","na":3,"nb":223,"a":[["Magnetite_Sulfate_Stress_Anaerobic_Microbiome.html","Magnetite Sulfate-Stress Anaerobic Microbiome"],["Phosphitivorax_Methanoculleus_Lithosyntrophy_Phosphite_Coculture.html","Phosphitivorax-Methanoculleus Lithosyntrophic Phosphite-Oxidizing Methanogenic Culture"],["QY2S1_Dehalogenimonas_BFR_Bioremediation_Consortium.html","QY2-S1 Dehalogenimonas-Rich Brominated-Flame-Retardant Consortium"]],"b":[["NCBITaxon%3A1671625","Candidatus Methanoculleus thermohydrogenotrophicum"],["NCBITaxon%3A83986","Methanoculleus bourgensis"],["NCBITaxon%3A1201294","Methanoculleus bourgensis MS2"],["NCBITaxon%3A2937282","Methanoculleus bovis"],["NCBITaxon%3A2651577","Methanoculleus caldifontis"],["NCBITaxon%3A118126","Methanoculleus chikugoensis"]]},{"id":"NCBITaxon:2301","l":"Thermoplasmatales","na":3,"nb":163,"a":[["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]],"b":[["NCBITaxon%3A507754","Acidiplasma aeolicum"],["NCBITaxon%3A312540","Acidiplasma cupricumulans"],["NCBITaxon%3A1295373","Acidiplasma cupricumulans JCM 13668 = DSM 16651"],["NCBITaxon%3A1872114","Acidiplasma sp."],["NCBITaxon%3A3402690","Acidiplasma sp. BR-02"],["NCBITaxon%3A1293648","Acidiplasma sp. MBA-1"]]},{"id":"NCBITaxon:919","l":"Thiobacillus","na":3,"nb":91,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Thiocyanate_Afipia_Thiobacillus_Bioreactor_Community.html","Thiocyanate-Degrading Afipia and Thiobacillus Bioreactor Community"]],"b":[["NCBITaxon%3A34007","Paracoccus versutus"],["NCBITaxon%3A54272","Thiobacillus baregensis"],["NCBITaxon%3A36861","Thiobacillus denitrificans"],["NCBITaxon%3A292415","Thiobacillus denitrificans ATCC 25259"],["NCBITaxon%3A1123392","Thiobacillus denitrificans DSM 12475"],["NCBITaxon%3A373389","Thiobacillus sajanensis"]]},{"id":"NCBITaxon:216816","l":"Bifidobacterium longum","na":3,"nb":69,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["NCBITaxon%3A1680","Bifidobacterium adolescentis"],["NCBITaxon%3A216816","Bifidobacterium longum"],["NCBITaxon%3A1000567","Bifidobacterium longum 3_1_37DFAAB"],["NCBITaxon%3A1280702","Bifidobacterium longum AGR2137"],["NCBITaxon%3A478445","Bifidobacterium longum BORI"],["NCBITaxon%3A1263059","Bifidobacterium longum CAG:69"]]},{"id":"GTDB:s__Bifidobacterium_longum","l":"","na":3,"nb":60,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["NCBITaxon%3A1883427","Actinomycetes bacterium"],["NCBITaxon%3A3077420","Acutalibacteraceae bacterium"],["NCBITaxon%3A328813","Alistipes onderdonkii"],["NCBITaxon%3A46506","Bacteroides stercoris"],["NCBITaxon%3A2291324","Bifidobacteriaceae bacterium"],["NCBITaxon%3A2569487","Bifidobacteriaceae bacterium MCC01972"]]},{"id":"NCBITaxon:190972","l":"Sedimentibacter","na":3,"nb":56,"a":[["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["QY2S1_Dehalogenimonas_BFR_Bioremediation_Consortium.html","QY2-S1 Dehalogenimonas-Rich Brominated-Flame-Retardant Consortium"],["Waste_Sludge_Electrofermentation_Biofilm_Suspension_Community.html","Waste-Sludge Electro-Fermentation Biofilm-Suspension Community"]],"b":[["NCBITaxon%3A913099","Sedimentibacter acidaminivorans"],["NCBITaxon%3A178338","Sedimentibacter hongkongensis"],["NCBITaxon%3A29345","Sedimentibacter hydroxybenzoicus"],["NCBITaxon%3A1123245","Sedimentibacter hydroxybenzoicus DSM 7310"],["NCBITaxon%3A130788","Sedimentibacter saalensis"],["NCBITaxon%3A1123246","Sedimentibacter saalensis DSM 13558"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":3,"nb":56,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A61645","Enterobacter asburiae"],["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A1328422","Enterobacter cloacae BIDMC 33A"],["NCBITaxon%3A1439324","Enterobacter cloacae BIDMC 66"],["NCBITaxon%3A1439325","Enterobacter cloacae BIDMC 67"],["NCBITaxon%3A1329846","Enterobacter cloacae BIDMC 8"]]},{"id":"NCBITaxon:821","l":"Phocaeicola vulgatus","na":3,"nb":49,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A820","Bacteroides uniformis"],["NCBITaxon%3A411479","Bacteroides uniformis ATCC 8492"],["NCBITaxon%3A821","Phocaeicola vulgatus"],["NCBITaxon%3A1125631","Phocaeicola vulgatus 274-1D4"],["NCBITaxon%3A435590","Phocaeicola vulgatus ATCC 8482"],["NCBITaxon%3A1263056","Phocaeicola vulgatus CAG:6"]]},{"id":"GTDB:s__Bifidobacterium_breve","l":"","na":3,"nb":46,"a":[["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["NCBITaxon%3A1697798","Actinobacteria bacterium UC5.1-1C2"],["NCBITaxon%3A2569493","Bifidobacteriaceae bacterium MCC01950"],["NCBITaxon%3A2569494","Bifidobacteriaceae bacterium MCC01951"],["NCBITaxon%3A2569500","Bifidobacteriaceae bacterium MCC01953"],["NCBITaxon%3A2569498","Bifidobacteriaceae bacterium MCC01954"],["NCBITaxon%3A2569501","Bifidobacteriaceae bacterium MCC01957"]]},{"id":"GTDB:s__Phocaeicola_vulgatus","l":"","na":3,"nb":44,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A3077420","Acutalibacteraceae bacterium"],["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A1146296","bacterium NLAE-zl-P430"],["NCBITaxon%3A2212467","Bacteroidaceae bacterium"],["NCBITaxon%3A29523","Bacteroides sp."],["NCBITaxon%3A469593","Bacteroides sp. 3_1_40A"]]},{"id":"GTDB:s__Lactococcus_lactis","l":"","na":3,"nb":40,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]],"b":[["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A1359","Lactococcus cremoris"],["NCBITaxon%3A1358","Lactococcus lactis"],["NCBITaxon%3A1408188","Lactococcus lactis RTB018"],["NCBITaxon%3A203404","Lactococcus lactis subsp. hordniae"],["NCBITaxon%3A1348656","Lactococcus lactis subsp. hordniae NBRC 100931"]]},{"id":"GTDB:s__Enterobacter_kobei","l":"","na":3,"nb":38,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A2027919","Enterobacter cloacae complex sp."],["NCBITaxon%3A3415634","Enterobacter cloacae complex sp. 2025EL-00065"],["NCBITaxon%3A3395858","Enterobacter cloacae complex sp. 310G5"],["NCBITaxon%3A3395837","Enterobacter cloacae complex sp. 330C8"],["NCBITaxon%3A3412325","Enterobacter cloacae complex sp. BZL2004"]]},{"id":"GTDB:s__Lactiplantibacillus_plantarum","l":"","na":3,"nb":37,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Pichia_Lactiplantibacillus_CCMA_Plant_Beverage_Coculture.html","Pichia-Lactiplantibacillus CCMA Plant Beverage Coculture"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["NCBITaxon%3A271881","Lactiplantibacillus argentoratensis"],["NCBITaxon%3A1423831","Lactiplantibacillus argentoratensis DSM 16365"],["NCBITaxon%3A1590","Lactiplantibacillus plantarum"],["NCBITaxon%3A1327988","Lactiplantibacillus plantarum 16"],["NCBITaxon%3A1399793","Lactiplantibacillus plantarum 19L3"],["NCBITaxon%3A1385856","Lactiplantibacillus plantarum 2025"]]},{"id":"NCBITaxon:4919","l":"Pichia","na":3,"nb":37,"a":[["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"],["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["NCBITaxon%3A266127","Sphingomonas soli"],["NCBITaxon%3A1219055","Sphingomonas soli NBRC 100801"],["NCBITaxon%3A551772","Pichia awuae"],["NCBITaxon%3A1249861","Pichia cabralensis"],["NCBITaxon%3A53657","Pichia cactophila"],["NCBITaxon%3A460514","Pichia californica"]]},{"id":"NCBITaxon:1685","l":"Bifidobacterium breve","na":3,"nb":34,"a":[["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["NCBITaxon%3A1681","Bifidobacterium bifidum"],["NCBITaxon%3A1685","Bifidobacterium breve"],["NCBITaxon%3A1385938","Bifidobacterium breve 12L"],["NCBITaxon%3A1385943","Bifidobacterium breve 2L"],["NCBITaxon%3A1385944","Bifidobacterium breve 31L"],["NCBITaxon%3A1385942","Bifidobacterium breve 689b"]]},{"id":"GTDB:s__Enterobacter_roggenkampii","l":"","na":3,"nb":33,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A2887193","Enterobacter cloacae complex sp. 2021EL-01169"],["NCBITaxon%3A3374272","Enterobacter cloacae complex sp. 2024EL-00227"],["NCBITaxon%3A3412324","Enterobacter cloacae complex sp. BZL2003"],["NCBITaxon%3A3412326","Enterobacter cloacae complex sp. BZL2005"],["NCBITaxon%3A2080664","Enterobacter cloacae complex sp. ECNIH14"]]},{"id":"NCBITaxon:28116","l":"Bacteroides ovatus","na":3,"nb":33,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["NCBITaxon%3A28116","Bacteroides ovatus"],["NCBITaxon%3A665954","Bacteroides ovatus 3_8_47FAA"],["NCBITaxon%3A411476","Bacteroides ovatus ATCC 8483"],["NCBITaxon%3A1263050","Bacteroides ovatus CAG:22"],["NCBITaxon%3A997885","Bacteroides ovatus CL02T12C04"],["NCBITaxon%3A997886","Bacteroides ovatus CL03T12C18"]]},{"id":"GTDB:s__Enterobacter_chengduensis","l":"","na":3,"nb":32,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A61645","Enterobacter asburiae"],["NCBITaxon%3A2494701","Enterobacter chengduensis"],["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A1439328","Enterobacter cloacae BWH 43"],["NCBITaxon%3A2913213","Enterobacter cloacae complex sp. ECC445"],["NCBITaxon%3A3412361","Enterobacter cloacae complex sp. IR5414"]]},{"id":"GTDB:s__Enterobacter_cloacae","l":"","na":3,"nb":29,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A3027862","Enterobacter cloacae complex sp. 2022EL-00981"],["NCBITaxon%3A3395880","Enterobacter cloacae complex sp. 275J9"],["NCBITaxon%3A3395873","Enterobacter cloacae complex sp. 277I4"],["NCBITaxon%3A3395830","Enterobacter cloacae complex sp. 292E8"],["NCBITaxon%3A3395879","Enterobacter cloacae complex sp. 309I3"]]},{"id":"NCBITaxon:1390","l":"Bacillus amyloliquefaciens","na":3,"nb":29,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]],"b":[["NCBITaxon%3A1390","Bacillus amyloliquefaciens"],["NCBITaxon%3A1421566","Bacillus amyloliquefaciens AB01"],["NCBITaxon%3A1421569","Bacillus amyloliquefaciens AP143"],["NCBITaxon%3A1421570","Bacillus amyloliquefaciens AP193"],["NCBITaxon%3A1421567","Bacillus amyloliquefaciens AP71"],["NCBITaxon%3A1421568","Bacillus amyloliquefaciens AP79"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":3,"nb":28,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["NCBITaxon%3A729","Haemophilus parainfluenzae"],["NCBITaxon%3A43306","Pseudomonas denitrificans (nom. rej.)"],["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A203192","Stutzerimonas chloritidismutans"],["NCBITaxon%3A3022791","Stutzerimonas decontaminans"]]},{"id":"GTDB:s__Kosakonia_cowanii","l":"","na":3,"nb":22,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A565","Atlantibacter hermannii"],["NCBITaxon%3A3041781","Atlantibacter sp. SORGH_AS_0304"],["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A1399146","Enterobacter cloacae S611"],["NCBITaxon%3A1951672","Enterobacteriaceae bacterium UBA3128"],["NCBITaxon%3A1951678","Enterobacteriaceae bacterium UBA3398"]]},{"id":"GTDB:s__Bifidobacterium_bifidum","l":"","na":3,"nb":19,"a":[["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["NCBITaxon%3A1883427","Actinomycetes bacterium"],["NCBITaxon%3A2569486","Bifidobacteriaceae bacterium MCC01946"],["NCBITaxon%3A2569503","Bifidobacteriaceae bacterium MCC01958"],["NCBITaxon%3A2569497","Bifidobacteriaceae bacterium MCC02030"],["NCBITaxon%3A1681","Bifidobacterium bifidum"],["NCBITaxon%3A500634","Bifidobacterium bifidum ATCC 29521 = JCM 1255 = DSM 20456"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":3,"nb":16,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["NCBITaxon%3A114136","Paenibacillus jamilae"],["NCBITaxon%3A225917","Paenibacillus massiliensis"],["NCBITaxon%3A1406","Paenibacillus polymyxa"],["NCBITaxon%3A1333863","Paenibacillus polymyxa 1-43"],["NCBITaxon%3A1414587","Paenibacillus polymyxa A18"],["NCBITaxon%3A1206104","Paenibacillus polymyxa ATCC 12321"]]},{"id":"NCBITaxon:587753","l":"Pseudomonas chlororaphis","na":3,"nb":16,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["NCBITaxon%3A587753","Pseudomonas chlororaphis"],["NCBITaxon%3A1343078","Pseudomonas chlororaphis HT66"],["NCBITaxon%3A1037915","Pseudomonas chlororaphis O6"],["NCBITaxon%3A1400530","Pseudomonas chlororaphis PCYL_1"],["NCBITaxon%3A86192","Pseudomonas chlororaphis subsp. aurantiaca"],["NCBITaxon%3A1415170","Pseudomonas chlororaphis subsp. aurantiaca PB-St2"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":3,"nb":15,"a":[["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["NCBITaxon%3A1681","Bifidobacterium bifidum"],["NCBITaxon%3A500634","Bifidobacterium bifidum ATCC 29521 = JCM 1255 = DSM 20456"],["NCBITaxon%3A484020","Bifidobacterium bifidum BGN4"],["NCBITaxon%3A1263058","Bifidobacterium bifidum CAG:234"],["NCBITaxon%3A1173065","Bifidobacterium bifidum CECT 7366"],["NCBITaxon%3A398515","Bifidobacterium bifidum DSM 20215"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":3,"nb":14,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["NCBITaxon%3A72360","Bacillus mojavensis"],["NCBITaxon%3A1051501","Bacillus mojavensis RO-H-1 = KCTC 3706"],["NCBITaxon%3A1478","Peribacillus simplex"],["NCBITaxon%3A86664","Priestia flexa"],["NCBITaxon%3A1404","Priestia megaterium"],["NCBITaxon%3A592022","Priestia megaterium DSM 319"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":11,"nb":3,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["NCBITaxon%3A2219225","Pseudomonas asiatica"],["NCBITaxon%3A1628086","Pseudomonas kribbensis"],["NCBITaxon%3A306","Pseudomonas sp."]]},{"id":"GTDB:s__Enterobacter_sichuanensis","l":"","na":3,"nb":10,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A1449089","Enterobacter cloacae subsp. cloacae SY-70"],["NCBITaxon%3A2071710","Enterobacter sichuanensis"],["NCBITaxon%3A42895","Enterobacter sp."],["NCBITaxon%3A1594172","Enterobacter sp. BIDMC92"],["NCBITaxon%3A2678687","Enterobacter sp. HSTU-ASh6"]]},{"id":"NCBITaxon:336809","l":"Candidatus Karelsulcia","na":3,"nb":10,"a":[["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"],["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"],["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"]],"b":[["NCBITaxon%3A336810","Candidatus Karelsulcia muelleri"],["NCBITaxon%3A706194","Candidatus Karelsulcia muelleri CARI"],["NCBITaxon%3A641892","Candidatus Karelsulcia muelleri DMIN"],["NCBITaxon%3A444179","Candidatus Karelsulcia muelleri GWSS"],["NCBITaxon%3A1189303","Candidatus Karelsulcia muelleri PSPU"],["NCBITaxon%3A595499","Candidatus Karelsulcia muelleri SMDSEM"]]},{"id":"NCBITaxon:2208","l":"Methanosarcina barkeri","na":3,"nb":9,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["NCBITaxon%3A2208","Methanosarcina barkeri"],["NCBITaxon%3A1434106","Methanosarcina barkeri 227"],["NCBITaxon%3A1434107","Methanosarcina barkeri 3"],["NCBITaxon%3A796385","Methanosarcina barkeri CM1"],["NCBITaxon%3A1298606","Methanosarcina barkeri JCM 10043"],["NCBITaxon%3A1434108","Methanosarcina barkeri MS"]]},{"id":"GTDB:s__Enterobacter_dissolvens","l":"","na":3,"nb":8,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A2969431","Enterobacter cloacae complex sp. R_G8"],["NCBITaxon%3A336306","Enterobacter cloacae subsp. cloacae"],["NCBITaxon%3A69219","Enterobacter cloacae subsp. dissolvens"],["NCBITaxon%3A1104326","Enterobacter cloacae subsp. dissolvens SDM"],["NCBITaxon%3A42895","Enterobacter sp."]]},{"id":"GTDB:s__Bacillus_A_cereus_S","l":"","na":7,"nb":3,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A526986","Bacillus cereus Rock3-44"],["NCBITaxon%3A1405","Bacillus mycoides"]]},{"id":"GTDB:s__Bacillus_A_hominis","l":"","na":7,"nb":3,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A1053195","Bacillus cereus BAG6X1-2"],["NCBITaxon%3A2817478","Bacillus hominis"],["NCBITaxon%3A1405","Bacillus mycoides"]]},{"id":"GTDB:s__Methanococcus_maripaludis","l":"","na":3,"nb":6,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"]],"b":[["NCBITaxon%3A39152","Methanococcus maripaludis"],["NCBITaxon%3A637914","Methanococcus maripaludis KA1"],["NCBITaxon%3A637915","Methanococcus maripaludis OS7"],["NCBITaxon%3A267377","Methanococcus maripaludis S2"],["NCBITaxon%3A1053692","Methanococcus maripaludis X1"],["NCBITaxon%3A2690208","Methanococcus sp."]]},{"id":"GTDB:s__Methanosarcina_barkeri","l":"","na":3,"nb":6,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["NCBITaxon%3A2208","Methanosarcina barkeri"],["NCBITaxon%3A1434106","Methanosarcina barkeri 227"],["NCBITaxon%3A796385","Methanosarcina barkeri CM1"],["NCBITaxon%3A1298606","Methanosarcina barkeri JCM 10043"],["NCBITaxon%3A1434108","Methanosarcina barkeri MS"],["NCBITaxon%3A1860098","Methanosarcina sp. A14"]]},{"id":"GTDB:s__Stenotrophomonas_maltophilia_L","l":"","na":6,"nb":3,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A391008","Stenotrophomonas maltophilia R551-3"],["NCBITaxon%3A1118157","Stenotrophomonas maltophilia RA8"]]},{"id":"NCBITaxon:166486","l":"Roseburia intestinalis","na":3,"nb":6,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A166486","Roseburia intestinalis"],["NCBITaxon%3A1263104","Roseburia intestinalis CAG:13"],["NCBITaxon%3A536231","Roseburia intestinalis L1-82"],["NCBITaxon%3A657315","Roseburia intestinalis M50/1"],["NCBITaxon%3A1339593","Roseburia intestinalis TSDC19.2-1.1"],["NCBITaxon%3A718255","Roseburia intestinalis XB6B4"]]},{"id":"NCBITaxon:178606","l":"Leptospirillum ferriphilum","na":6,"nb":3,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["NCBITaxon%3A178606","Leptospirillum ferriphilum"],["NCBITaxon%3A1048260","Leptospirillum ferriphilum ML-04"],["NCBITaxon%3A1441628","Leptospirillum ferriphilum YSK"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":3,"nb":6,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["NCBITaxon%3A547018","Zhihengliuella alba"],["NCBITaxon%3A5061","Aspergillus niger"],["NCBITaxon%3A380704","Aspergillus niger ATCC 1015"],["NCBITaxon%3A1353008","Aspergillus niger ATCC 13496"],["NCBITaxon%3A1450533","Aspergillus niger CBS 101883"],["NCBITaxon%3A425011","Aspergillus niger CBS 513.88"]]},{"id":"NCBITaxon:853","l":"Faecalibacterium prausnitzii","na":3,"nb":6,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"]],"b":[["NCBITaxon%3A748224","Faecalibacterium cf. prausnitzii KLE1255"],["NCBITaxon%3A411483","Faecalibacterium duncaniae"],["NCBITaxon%3A853","Faecalibacterium prausnitzii"],["NCBITaxon%3A718252","Faecalibacterium prausnitzii L2-6"],["NCBITaxon%3A411485","Faecalibacterium prausnitzii M21/2"],["NCBITaxon%3A657322","Faecalibacterium prausnitzii SL3/3"]]},{"id":"NCBITaxon:881","l":"Nitratidesulfovibrio vulgaris","na":3,"nb":6,"a":[["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["DVM_Triculture.html","DVM Tri-culture"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"]],"b":[["NCBITaxon%3A32016","Nitratidesulfovibrio oxamicus"],["NCBITaxon%3A881","Nitratidesulfovibrio vulgaris"],["NCBITaxon%3A391774","Nitratidesulfovibrio vulgaris DP4"],["NCBITaxon%3A573059","Nitratidesulfovibrio vulgaris RCH1"],["NCBITaxon%3A882","Nitratidesulfovibrio vulgaris str. Hildenborough"],["NCBITaxon%3A883","Nitratidesulfovibrio vulgaris str. 'Miyazaki F'"]]},{"id":"GTDB:s__Clostridium_B_ljungdahlii","l":"","na":3,"nb":5,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["NCBITaxon%3A84023","Clostridium autoethanogenum"],["NCBITaxon%3A1341692","Clostridium autoethanogenum DSM 10061"],["NCBITaxon%3A1705578","Clostridium coskatii"],["NCBITaxon%3A1538","Clostridium ljungdahlii"],["NCBITaxon%3A748727","Clostridium ljungdahlii DSM 13528"]]},{"id":"NCBITaxon:28232","l":"Geobacter metallireducens","na":5,"nb":3,"a":[["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"]],"b":[["NCBITaxon%3A28232","Geobacter metallireducens"],["NCBITaxon%3A269799","Geobacter metallireducens GS-15"],["NCBITaxon%3A691164","Geobacter metallireducens RCH3"]]},{"id":"GTDB:s__Rhodopseudomonas_palustris_F","l":"","na":4,"nb":3,"a":[["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["NCBITaxon%3A1076","Rhodopseudomonas palustris"],["NCBITaxon%3A258594","Rhodopseudomonas palustris CGA009"],["NCBITaxon%3A395960","Rhodopseudomonas palustris TIE-1"]]},{"id":"GTDB:s__Syntrophomonas_methylbutyratica","l":"","na":4,"nb":3,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["NCBITaxon%3A2093811","Syntrophomonadaceae bacterium"],["NCBITaxon%3A863","Syntrophomonas wolfei"],["NCBITaxon%3A378794","Syntrophomonas wolfei subsp. methylbutyratica"]]},{"id":"NCBITaxon:1534","l":"Clostridium kluyveri","na":4,"nb":3,"a":[["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["NCBITaxon%3A1534","Clostridium kluyveri"],["NCBITaxon%3A431943","Clostridium kluyveri DSM 555"],["NCBITaxon%3A583346","Clostridium kluyveri NBRC 12016"]]},{"id":"NCBITaxon:239935","l":"Akkermansia muciniphila","na":3,"nb":3,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A239935","Akkermansia muciniphila"],["NCBITaxon%3A349741","Akkermansia muciniphila ATCC BAA-835"],["NCBITaxon%3A1263034","Akkermansia muciniphila CAG:154"]]},{"id":"NCBITaxon:1236","l":"Gammaproteobacteria","na":2,"nb":145676,"a":[["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["NCBITaxon%3A103492","2,4-D-degrading bacterium 010"],["NCBITaxon%3A103493","2,4-D-degrading bacterium 030"],["NCBITaxon%3A120969","abyssal strain AIII3*"],["NCBITaxon%3A2182787","Abyssibacter profundi"],["NCBITaxon%3A2320200","Abyssibacter sp."],["NCBITaxon%3A596095","Abyssogena phaseoliformis symbiont"]]},{"id":"NCBITaxon:28211","l":"Alphaproteobacteria","na":2,"nb":72845,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["NCBITaxon%3A119160","2,3-D degrading bacterium NHC2"],["NCBITaxon%3A119159","2,3-D degrading bacterium NHG3"],["NCBITaxon%3A103494","2,4-D-degrading bacterium 022"],["NCBITaxon%3A83493","2,4-D degrading bacterium 2,4-D1"],["NCBITaxon%3A103496","2,4-D-degrading bacterium 524"],["NCBITaxon%3A83492","2,4-D degrading bacterium B6-10"]]},{"id":"NCBITaxon:1117","l":"Cyanobacteriota","na":2,"nb":36120,"a":[["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]],"b":[["NCBITaxon%3A3106961","Acaryochloridaceae cyanobacterium"],["NCBITaxon%3A2720417","Acaryochloridaceae cyanobacterium CSU_3_4"],["NCBITaxon%3A2720418","Acaryochloridaceae cyanobacterium CSU_5_19"],["NCBITaxon%3A2964578","Acaryochloridaceae cyanobacterium OTE_25_metabat_464"],["NCBITaxon%3A2964579","Acaryochloridaceae cyanobacterium OTE_75_metabat_521"],["NCBITaxon%3A2720424","Acaryochloridaceae cyanobacterium RL_2_7"]]},{"id":"NCBITaxon:28216","l":"Betaproteobacteria","na":2,"nb":31526,"a":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]],"b":[["NCBITaxon%3A103498","2,4-D-degrading bacterium 001"],["NCBITaxon%3A103499","2,4-D-degrading bacterium 007"],["NCBITaxon%3A103495","2,4-D-degrading bacterium 012"],["NCBITaxon%3A103500","2,4-D-degrading bacterium 017"],["NCBITaxon%3A103501","2,4-D-degrading bacterium 018"],["NCBITaxon%3A103502","2,4-D-degrading bacterium 019"]]},{"id":"NCBITaxon:28890","l":"Methanobacteriota","na":2,"nb":8091,"a":[["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Thermophilic_ExSitu_Biomethanation_Mixed_Culture.html","Thermophilic Ex-Situ Biomethanation Mixed Culture"]],"b":[["NCBITaxon%3A3879924","Abyssiniarchaeum dallolvicinus (SeqCode)"],["NCBITaxon%3A3138747","Afararchaeum irisae (SeqCode)"],["NCBITaxon%3A81399","anaerobic hyperthermophile Gorda1"],["NCBITaxon%3A2056317","ANME-2 cluster archaeon"],["NCBITaxon%3A114585","archaeal str. vp183"],["NCBITaxon%3A114587","archaeal str. vp21"]]},{"id":"NCBITaxon:1763","l":"Mycobacterium","na":2,"nb":7532,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["NCBITaxon%3A3110407","Candidatus Mycobacterium methanica"],["NCBITaxon%3A2943498","Candidatus Mycobacterium methanotrophicum"],["NCBITaxon%3A3027808","Candidatus Mycobacterium wuenschmannii"],["NCBITaxon%3A1682113","Mycobacterium adipatum"],["NCBITaxon%3A470075","Mycobacterium aemonae"],["NCBITaxon%3A1964395","Mycobacterium ahvazicum"]]},{"id":"NCBITaxon:1663","l":"Arthrobacter","na":2,"nb":6277,"a":[["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A132932","Acetobacterium tundrae"],["NCBITaxon%3A37921","Arthrobacter agilis"],["NCBITaxon%3A369936","Arthrobacter alkaliphilus"],["NCBITaxon%3A656366","Arthrobacter alpinus"],["NCBITaxon%3A3046203","Arthrobacter antibioticus"],["NCBITaxon%3A2895818","Arthrobacter antioxidans"]]},{"id":"NCBITaxon:33882","l":"Microbacterium","na":2,"nb":5935,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A196883","Arctic sea ice bacterium ARK10030"],["NCBITaxon%3A3121366","Candidatus Microbacterium colombiense"],["NCBITaxon%3A3121374","Candidatus Microbacterium phytovorans"],["NCBITaxon%3A2838696","Candidatus Microbacterium pullistercoris"],["NCBITaxon%3A2838697","Candidatus Microbacterium stercoravium"],["NCBITaxon%3A272239","Gulosibacter bifidus"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":4740,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["NCBITaxon%3A475088","Methanosphaerula palustris"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1389955","Escherichia coli ATCC 35150"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A574","Klebsiella pneumoniae subsp. ozaenae"],["NCBITaxon%3A1218098","Klebsiella pneumoniae subsp. ozaenae NBRC 105683"]]},{"id":"GTDB:s__Staphylococcus_aureus","l":"","na":2,"nb":4208,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A548","Klebsiella aerogenes"],["NCBITaxon%3A1280","Staphylococcus aureus"],["NCBITaxon%3A703339","Staphylococcus aureus 04-02981"],["NCBITaxon%3A1413350","Staphylococcus aureus 07-03450"],["NCBITaxon%3A1413351","Staphylococcus aureus 07-03451"]]},{"id":"GTDB:s__Salmonella_enterica","l":"","na":2,"nb":3879,"a":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["NCBITaxon%3A2572084","Campylobacter sp. CFSAN093238"],["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59203","Salmonella enterica subsp. arizonae"],["NCBITaxon%3A1192839","Salmonella enterica subsp. arizonae serovar 18:z4,z23:-"],["NCBITaxon%3A1395115","Salmonella enterica subsp. arizonae serovar 18:z4,z23:- str. CVM N23850"],["NCBITaxon%3A1395109","Salmonella enterica subsp. arizonae serovar 18:z4,z23:- str. CVM N7307"]]},{"id":"NCBITaxon:200940","l":"Thermodesulfobacteriota","na":2,"nb":2781,"a":[["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["Tropidoatractus_Magnetotacticus_Tripartite_Syntrophy.html","Tropidoatractus magnetotacticus Magnetotactic Ciliate Tripartite Syntrophy"]],"b":[["NCBITaxon%3A318481","Algorimarina butyrica"],["NCBITaxon%3A293256","Alkalidesulfovibrio alkalitolerans"],["NCBITaxon%3A1121439","Alkalidesulfovibrio alkalitolerans DSM 16529"],["NCBITaxon%3A340094","anaerobic syntrophic bacterium NE23-3"],["NCBITaxon%3A1929485","Bilophila sp."],["NCBITaxon%3A693988","Bilophila sp. 4_1_30"]]},{"id":"NCBITaxon:5204","l":"Basidiomycota","na":2,"nb":1376,"a":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"]],"b":[["NCBITaxon%3A137743","Abortiporus biennis"],["NCBITaxon%3A215250","Acaromyces ingoldii"],["NCBITaxon%3A1333626","Adustoporia sinuosa"],["NCBITaxon%3A2819351","Agaricus alboumbonatus"],["NCBITaxon%3A1606717","Agaricus argenteus"],["NCBITaxon%3A535738","Agaricus aristocratus"]]},{"id":"NCBITaxon:2034","l":"Curtobacterium","na":2,"nb":1258,"a":[["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"]],"b":[["NCBITaxon%3A1708","Cellulomonas fimi"],["NCBITaxon%3A590998","Cellulomonas fimi ATCC 484"],["NCBITaxon%3A41988","Cryobacterium psychrophilum"],["NCBITaxon%3A2841594","Curtobacterium aetherium"],["NCBITaxon%3A395387","Curtobacterium ammoniigenes"],["NCBITaxon%3A1223517","Curtobacterium ammoniigenes NBRC 101786"]]},{"id":"NCBITaxon:28889","l":"Thermoproteota","na":2,"nb":1242,"a":[["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Soil_Corrinoid_B12_Reservoir_Community.html","Soil Corrinoid Reservoir Microbial Community"]],"b":[["NCBITaxon%3A2283","Acidianus ambivalens"],["NCBITaxon%3A41673","Acidianus brierleyi"],["NCBITaxon%3A269667","Acidianus convivator"],["NCBITaxon%3A563177","Acidianus hospitalis"],["NCBITaxon%3A933801","Acidianus hospitalis W1"],["NCBITaxon%3A12915","Acidianus infernus"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":2,"nb":1075,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A1311139","Acinetobacter baumannii 016901DP_1"],["NCBITaxon%3A1311140","Acinetobacter baumannii 016901DP_2"],["NCBITaxon%3A1310784","Acinetobacter baumannii 1007214"],["NCBITaxon%3A1310751","Acinetobacter baumannii 1022959"],["NCBITaxon%3A1310586","Acinetobacter baumannii 1031433"]]},{"id":"NCBITaxon:84567","l":"Pedobacter","na":2,"nb":889,"a":[["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A3121371","Candidatus Pedobacter colombiensis"],["NCBITaxon%3A2807681","Nubsella sp. EM7"],["NCBITaxon%3A1325323","Nubsella sp. EsD18"],["NCBITaxon%3A1362345","Nubsella sp. Ri3Pt_4400"],["NCBITaxon%3A151894","Pedobacter africanus"],["NCBITaxon%3A454586","Pedobacter agri"]]},{"id":"NCBITaxon:12916","l":"Acidovorax","na":2,"nb":822,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["NCBITaxon%3A192388","Acidovorax aerodenitrificans"],["NCBITaxon%3A2976702","Acidovorax bellezanensis"],["NCBITaxon%3A2987520","Acidovorax benzenivorans"],["NCBITaxon%3A553814","Acidovorax carolinensis"],["NCBITaxon%3A1675792","Acidovorax cavernicola"],["NCBITaxon%3A86669","Acidovorax defluvii"]]},{"id":"NCBITaxon:1696","l":"Brevibacterium","na":2,"nb":794,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["NCBITaxon%3A943903","bacterium Osw"],["NCBITaxon%3A417948","Brevibacterium album"],["NCBITaxon%3A1121122","Brevibacterium album DSM 18261"],["NCBITaxon%3A1046555","Brevibacterium ammoniilyticum"],["NCBITaxon%3A2683611","Brevibacterium anseongense"],["NCBITaxon%3A239268","Brevibacterium antarcticum"]]},{"id":"GTDB:s__Acinetobacter_baumannii","l":"","na":2,"nb":782,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A1310784","Acinetobacter baumannii 1007214"],["NCBITaxon%3A1310751","Acinetobacter baumannii 1022959"],["NCBITaxon%3A1310586","Acinetobacter baumannii 1031433"],["NCBITaxon%3A1310571","Acinetobacter baumannii 1032241"],["NCBITaxon%3A1310572","Acinetobacter baumannii 1032359"]]},{"id":"NCBITaxon:75","l":"Caulobacter","na":2,"nb":704,"a":[["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["NCBITaxon%3A1871086","Brevundimonas sp."],["NCBITaxon%3A1249558","Caulobacter daechungensis"],["NCBITaxon%3A2172652","Caulobacter endophyticus"],["NCBITaxon%3A459277","Caulobacter endosymbiont of Tamarixia radiata"],["NCBITaxon%3A312030","Caulobacter endosymbiont of Tetranychus urticae"],["NCBITaxon%3A1679497","Caulobacter flavus"]]},{"id":"NCBITaxon:2053","l":"Gordonia","na":2,"nb":680,"a":[["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Nitratireductor_Gordonia_Z123_LDPE_Degradation_SynCom.html","Nitratireductor-Gordonia Z123 LDPE-Degradation SynCom"]],"b":[["NCBITaxon%3A3022769","Gordonia abscondita"],["NCBITaxon%3A36820","Gordonia aichiensis"],["NCBITaxon%3A1220583","Gordonia aichiensis NBRC 108223"],["NCBITaxon%3A1292359","Gordonia ajococcus"],["NCBITaxon%3A1053547","Gordonia alkaliphila"],["NCBITaxon%3A84096","Gordonia alkanivorans"]]},{"id":"NCBITaxon:52972","l":"Polaromonas","na":2,"nb":514,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["NCBITaxon%3A332657","Polaromonas aquatica"],["NCBITaxon%3A866565","Polaromonas cryoconiti"],["NCBITaxon%3A1614635","Polaromonas eurypsychrophila"],["NCBITaxon%3A363842","Polaromonas ginsengisoli"],["NCBITaxon%3A866564","Polaromonas glacialis"],["NCBITaxon%3A335476","Polaromonas hydrogenivorans"]]},{"id":"NCBITaxon:46913","l":"Devosia","na":2,"nb":421,"a":[["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["NCBITaxon%3A196772","Arctic sea ice bacterium ARK10037"],["NCBITaxon%3A223181","Candidatus Devosia euplotis"],["NCBITaxon%3A3121372","Candidatus Devosia phytovorans"],["NCBITaxon%3A2911541","Candidatus Devosia symbiotica"],["NCBITaxon%3A3152360","Devosia alba"],["NCBITaxon%3A429726","Devosia albogilva"]]},{"id":"NCBITaxon:423349","l":"Mucilaginibacter","na":2,"nb":352,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["NCBITaxon%3A2599294","Mucilaginibacter achroorhodeus"],["NCBITaxon%3A2695265","Mucilaginibacter agri"],["NCBITaxon%3A1815558","Mucilaginibacter amnicola"],["NCBITaxon%3A869718","Mucilaginibacter angelicae"],["NCBITaxon%3A1855725","Mucilaginibacter antarcticus"],["NCBITaxon%3A1187081","Mucilaginibacter aquaedulcis"]]},{"id":"NCBITaxon:79328","l":"Chitinophaga","na":2,"nb":284,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A2703787","Chitinophaga agri"],["NCBITaxon%3A2607653","Chitinophaga agrisoli"],["NCBITaxon%3A2203219","Chitinophaga alhagiae"],["NCBITaxon%3A29529","Chitinophaga arvensicola"],["NCBITaxon%3A2675051","Chitinophaga aurantiaca"],["NCBITaxon%3A1647451","Chitinophaga barathri"]]},{"id":"NCBITaxon:2207","l":"Methanosarcina","na":2,"nb":269,"a":[["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Thermophilic_ExSitu_Biomethanation_Mixed_Culture.html","Thermophilic Ex-Situ Biomethanation Mixed Culture"]],"b":[["NCBITaxon%3A2214","Methanosarcina acetivorans"],["NCBITaxon%3A188937","Methanosarcina acetivorans C2A"],["NCBITaxon%3A3073890","Methanosarcina baikalica"],["NCBITaxon%3A109046","Methanosarcina baltica"],["NCBITaxon%3A1434105","Methanosarcina baltica GS1-A"],["NCBITaxon%3A2208","Methanosarcina barkeri"]]},{"id":"NCBITaxon:75654","l":"Duganella","na":2,"nb":259,"a":[["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["NCBITaxon%3A2703883","Duganella aceris"],["NCBITaxon%3A132929","Duganella aff. zoogloeoides 14.15"],["NCBITaxon%3A2666081","Duganella alba"],["NCBITaxon%3A2666082","Duganella aquatilis"],["NCBITaxon%3A2885762","Duganella caerulea"],["NCBITaxon%3A2561932","Duganella callida"]]},{"id":"NCBITaxon:142182","l":"Gemmatimonadota","na":2,"nb":249,"a":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"]],"b":[["NCBITaxon%3A234666","bacterium Ellin5220"],["NCBITaxon%3A234674","bacterium Ellin5290"],["NCBITaxon%3A234675","bacterium Ellin5301"],["NCBITaxon%3A3056743","Candidatus Benthicola azotiphorus"],["NCBITaxon%3A3056742","Candidatus Benthicola marisminoris"],["NCBITaxon%3A3101352","Candidatus Benthicola sp."]]},{"id":"NCBITaxon:118562","l":"Limnospira platensis","na":2,"nb":241,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Microalgae_Cyanobacteria_Bioactive_Peptide_Consortia.html","Microalgae-Cyanobacteria Bioactive Peptide Consortia"]],"b":[["NCBITaxon%3A2692892","Arthrospira platensis FACHB-835"],["NCBITaxon%3A118562","Limnospira platensis"],["NCBITaxon%3A1473217","Limnospira platensis 1TEX"],["NCBITaxon%3A2866638","Limnospira platensis 3SAE"],["NCBITaxon%3A1229390","Limnospira platensis 540"],["NCBITaxon%3A2184488","Limnospira platensis A"]]},{"id":"NCBITaxon:1234","l":"Nitrospira","na":2,"nb":181,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"]],"b":[["NCBITaxon%3A3020900","Candidatus Nitrospira allomarina"],["NCBITaxon%3A463288","Candidatus Nitrospira bockiana"],["NCBITaxon%3A1715989","Candidatus Nitrospira inopinata"],["NCBITaxon%3A3721632","Candidatus Nitrospira jureiensis"],["NCBITaxon%3A2652173","Candidatus Nitrospira kreftii"],["NCBITaxon%3A3020899","Candidatus Nitrospira neomarina"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":2,"nb":176,"a":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A90371","Salmonella enterica subsp. enterica serovar Typhimurium"],["NCBITaxon%3A1173928","Salmonella enterica subsp. enterica serovar Typhimurium str. 0052"],["NCBITaxon%3A1114946","Salmonella enterica subsp. enterica serovar Typhimurium str. 00-01036"],["NCBITaxon%3A1173930","Salmonella enterica subsp. enterica serovar Typhimurium str. 0364"]]},{"id":"NCBITaxon:2160","l":"Methanobacterium","na":2,"nb":162,"a":[["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"]],"b":[["NCBITaxon%3A256826","Methanobacterium aarhusense"],["NCBITaxon%3A1615586","Methanobacterium aggregans"],["NCBITaxon%3A392018","Methanobacterium alcaliphilum"],["NCBITaxon%3A2731220","Methanobacterium alkalithermotolerans"],["NCBITaxon%3A386456","Methanobacterium arcticum"],["NCBITaxon%3A2584467","Methanobacterium aridiramus"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":2,"nb":156,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["NCBITaxon%3A1428","Bacillus thuringiensis"],["NCBITaxon%3A1340496","Bacillus thuringiensis AKS-7"],["NCBITaxon%3A714359","Bacillus thuringiensis BMB171"],["NCBITaxon%3A1423143","Bacillus thuringiensis Bt18247"],["NCBITaxon%3A1423142","Bacillus thuringiensis Bt18679"],["NCBITaxon%3A527021","Bacillus thuringiensis Bt407"]]},{"id":"NCBITaxon:79206","l":"Desulfosporosinus","na":2,"nb":154,"a":[["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"]],"b":[["NCBITaxon%3A2043169","Candidatus Desulfosporosinus infrequens"],["NCBITaxon%3A3401928","Candidatus Desulfosporosinus nitrosoreducens"],["NCBITaxon%3A476652","Desulfosporosinus acididurans"],["NCBITaxon%3A885581","Desulfosporosinus acidiphilus"],["NCBITaxon%3A646529","Desulfosporosinus acidiphilus SJ4"],["NCBITaxon%3A56760","Desulfosporosinus auripigmenti"]]},{"id":"NCBITaxon:522","l":"Acidiphilium","na":2,"nb":149,"a":[["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"]],"b":[["NCBITaxon%3A76588","Acidiphilium acidophilum"],["NCBITaxon%3A1307921","Acidiphilium acidophilum DSM 700"],["NCBITaxon%3A523","Acidiphilium angustum"],["NCBITaxon%3A1408418","Acidiphilium angustum ATCC 35903"],["NCBITaxon%3A524","Acidiphilium cryptum"],["NCBITaxon%3A349163","Acidiphilium cryptum JF-5"]]},{"id":"NCBITaxon:40222","l":"Methylophaga","na":2,"nb":131,"a":[["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"]],"b":[["NCBITaxon%3A182774","Methylophaga alcalica"],["NCBITaxon%3A754477","Methylophaga frappieri"],["NCBITaxon%3A999151","Methylophaga lonarensis"],["NCBITaxon%3A1286106","Methylophaga lonarensis MPL"],["NCBITaxon%3A45495","Methylophaga marina"],["NCBITaxon%3A1122235","Methylophaga marina DSM 5689"]]},{"id":"GTDB:s__Klebsiella_variicola","l":"","na":2,"nb":95,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["NCBITaxon%3A1442122","bacterium CSR-63"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1134687","Klebsiella michiganensis"],["NCBITaxon%3A571","Klebsiella oxytoca"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A1463165","Klebsiella quasipneumoniae"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":2,"nb":66,"a":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["NCBITaxon%3A382","Sinorhizobium meliloti"],["NCBITaxon%3A266834","Sinorhizobium meliloti 1021"],["NCBITaxon%3A1194706","Sinorhizobium meliloti 1A42"],["NCBITaxon%3A1286640","Sinorhizobium meliloti 2011"],["NCBITaxon%3A1041151","Sinorhizobium meliloti 4H41"],["NCBITaxon%3A1194707","Sinorhizobium meliloti 5A14"]]},{"id":"GTDB:s__Bacillus_A_wiedmannii","l":"","na":2,"nb":47,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A2920296","Bacillus cereus group sp. BfR-BA-01319"],["NCBITaxon%3A2920300","Bacillus cereus group sp. BfR-BA-01324"],["NCBITaxon%3A3040244","Bacillus cereus group sp. MG4"],["NCBITaxon%3A3040245","Bacillus cereus group sp. MG7w"],["NCBITaxon%3A3041344","Bacillus cereus group sp. MS39"]]},{"id":"GTDB:s__Limnospira_fusiformis","l":"","na":2,"nb":44,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Microalgae_Cyanobacteria_Bioactive_Peptide_Consortia.html","Microalgae-Cyanobacteria Bioactive Peptide Consortia"]],"b":[["NCBITaxon%3A1982223","Arthrospira sp. O9.13F"],["NCBITaxon%3A1640536","Arthrospira sp. TJSD091"],["NCBITaxon%3A2153484","Arthrospira sp. TJSD092"],["NCBITaxon%3A1118279","Limnoraphis robusta"],["NCBITaxon%3A2759955","Limnospira fusiformis KN01"],["NCBITaxon%3A3076243","Limnospira fusiformis LS22"]]},{"id":"NCBITaxon:644","l":"Aeromonas hydrophila","na":2,"nb":44,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["NCBITaxon%3A105751","Aeromonas bestiarum"],["NCBITaxon%3A648","Aeromonas caviae"],["NCBITaxon%3A196024","Aeromonas dhakensis"],["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A1073378","Aeromonas hydrophila 07-345-3437"],["NCBITaxon%3A1268075","Aeromonas hydrophila 116"]]},{"id":"GTDB:s__Agrobacterium_leguminum","l":"","na":2,"nb":37,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["NCBITaxon%3A1183412","Agrobacterium deltae"],["NCBITaxon%3A1183425","Agrobacterium deltaense NCPPB 1641"],["NCBITaxon%3A1183426","Agrobacterium deltaense RV3"],["NCBITaxon%3A1183427","Agrobacterium deltaense Zutra 3/1"],["NCBITaxon%3A2792015","Agrobacterium leguminum"],["NCBITaxon%3A362","Agrobacterium radiobacter"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":2,"nb":35,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["NCBITaxon%3A1183421","Agrobacterium fabacearum CFBP 5771"],["NCBITaxon%3A1300224","Agrobacterium fabacearum P4"],["NCBITaxon%3A1183429","Agrobacterium fabacearum S56"],["NCBITaxon%3A1368455","Agrobacterium fabacearum str. Foundi"],["NCBITaxon%3A1183430","Agrobacterium fabacearum TT111"],["NCBITaxon%3A1176649","Agrobacterium fabrum"]]},{"id":"GTDB:s__Aeromonas_hydrophila","l":"","na":2,"nb":34,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["NCBITaxon%3A648","Aeromonas caviae"],["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A1268078","Aeromonas hydrophila 226"],["NCBITaxon%3A1453502","Aeromonas hydrophila AD9"],["NCBITaxon%3A1419584","Aeromonas hydrophila J-1"],["NCBITaxon%3A1288394","Aeromonas hydrophila ML09-119"]]},{"id":"NCBITaxon:4930","l":"Saccharomyces","na":2,"nb":34,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["NCBITaxon%3A4932","Saccharomyces cerevisiae"],["NCBITaxon%3A1266529","Saccharomyces cerevisiae BY4743"],["NCBITaxon%3A1218710","Saccharomyces cerevisiae CBS 1585"],["NCBITaxon%3A764102","Saccharomyces cerevisiae FostersB"],["NCBITaxon%3A764101","Saccharomyces cerevisiae FostersO"],["NCBITaxon%3A1220494","Saccharomyces cerevisiae PE-2"]]},{"id":"GTDB:s__Agrobacterium_pusense","l":"","na":2,"nb":32,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["NCBITaxon%3A1183436","Agrobacterium genomosp. 2 str. CFBP 5494"],["NCBITaxon%3A648995","Agrobacterium pusense"],["NCBITaxon%3A361","Agrobacterium sp."],["NCBITaxon%3A1279031","Agrobacterium sp. 33MFTa1.1"],["NCBITaxon%3A3128901","Agrobacterium sp. CMT1"],["NCBITaxon%3A2420311","Agrobacterium sp. FDAARGOS_525"]]},{"id":"NCBITaxon:395331","l":"Methanoregula","na":2,"nb":31,"a":[["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Tropidoatractus_Magnetotacticus_Tripartite_Syntrophy.html","Tropidoatractus magnetotacticus Magnetotactic Ciliate Tripartite Syntrophy"]],"b":[["NCBITaxon%3A358766","Methanoregula boonei"],["NCBITaxon%3A456442","Methanoregula boonei 6A8"],["NCBITaxon%3A3118214","Methanoregula endosymbiont of Brachonella contorta"],["NCBITaxon%3A3118215","Methanoregula endosymbiont of Brachonella pulchra"],["NCBITaxon%3A3118216","Methanoregula endosymbiont of Caenomorpha medusula"],["NCBITaxon%3A3118221","Methanoregula endosymbiont of Longitaenia gibba"]]},{"id":"GTDB:s__Sinorhizobium_meliloti","l":"","na":2,"nb":30,"a":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["NCBITaxon%3A2572900","Ensifer sp. SEMIA 134"],["NCBITaxon%3A2572901","Ensifer sp. SEMIA 135"],["NCBITaxon%3A2039285","Ensifer sp. T2_8"],["NCBITaxon%3A381","Mesorhizobium loti"],["NCBITaxon%3A158892","Sinorhizobium kummerowiae"],["NCBITaxon%3A382","Sinorhizobium meliloti"]]},{"id":"GTDB:s__Akkermansia_muciniphila","l":"","na":2,"nb":29,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A3077420","Acutalibacteraceae bacterium"],["NCBITaxon%3A239935","Akkermansia muciniphila"],["NCBITaxon%3A349741","Akkermansia muciniphila ATCC BAA-835"],["NCBITaxon%3A1263034","Akkermansia muciniphila CAG:154"],["NCBITaxon%3A1872421","Akkermansia sp."],["NCBITaxon%3A1896967","Akkermansia sp. 54_46"]]},{"id":"NCBITaxon:1305","l":"Streptococcus sanguinis","na":2,"nb":27,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1302","Streptococcus gordonii"],["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1305","Streptococcus sanguinis"],["NCBITaxon%3A1247655","Streptococcus sanguinis ATCC 15914"],["NCBITaxon%3A997356","Streptococcus sanguinis ATCC 29667"],["NCBITaxon%3A1073373","Streptococcus sanguinis CC94A"]]},{"id":"NCBITaxon:1335","l":"Streptococcus equinus","na":2,"nb":27,"a":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"]],"b":[["NCBITaxon%3A1335","Streptococcus equinus"],["NCBITaxon%3A1410675","Streptococcus equinus 2B"],["NCBITaxon%3A1210006","Streptococcus equinus ATCC 33317"],["NCBITaxon%3A864569","Streptococcus equinus ATCC 700338"],["NCBITaxon%3A525379","Streptococcus equinus ATCC 9812"],["NCBITaxon%3A1280690","Streptococcus equinus B315"]]},{"id":"NCBITaxon:5507","l":"Fusarium oxysporum","na":2,"nb":27,"a":[["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]],"b":[["NCBITaxon%3A5507","Fusarium oxysporum"],["NCBITaxon%3A72712","Fusarium oxysporum f. sp. albedinis"],["NCBITaxon%3A396571","Fusarium oxysporum f. sp. cepae"],["NCBITaxon%3A62683","Fusarium oxysporum f. sp. ciceris"],["NCBITaxon%3A100902","Fusarium oxysporum f. sp. conglutinans"],["NCBITaxon%3A660025","Fusarium oxysporum f. sp. conglutinans Fo5176"]]},{"id":"GTDB:s__Alteromonas_macleodii","l":"","na":2,"nb":26,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["NCBITaxon%3A2719013","Alteromonadaceae bacterium A_SAG1"],["NCBITaxon%3A2719014","Alteromonadaceae bacterium A_SAG2"],["NCBITaxon%3A1955811","Alteromonadales bacterium"],["NCBITaxon%3A28108","Alteromonas macleodii"],["NCBITaxon%3A529120","Alteromonas macleodii ATCC 27126"],["NCBITaxon%3A1004787","Alteromonas macleodii str. 'Balearic Sea AD45'"]]},{"id":"GTDB:s__Bacillus_A_albus","l":"","na":2,"nb":26,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["NCBITaxon%3A2026189","Bacillus albus"],["NCBITaxon%3A1392","Bacillus anthracis"],["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A3018122","Bacillus cereus group sp. Bc025"],["NCBITaxon%3A3018114","Bacillus cereus group sp. Bc177"],["NCBITaxon%3A3018112","Bacillus cereus group sp. Bc200"]]},{"id":"NCBITaxon:2173","l":"Methanobrevibacter smithii","na":2,"nb":26,"a":[["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"]],"b":[["NCBITaxon%3A2173","Methanobrevibacter smithii"],["NCBITaxon%3A420247","Methanobrevibacter smithii ATCC 35061"],["NCBITaxon%3A1263088","Methanobrevibacter smithii CAG:186"],["NCBITaxon%3A521001","Methanobrevibacter smithii DSM 11975"],["NCBITaxon%3A521002","Methanobrevibacter smithii DSM 2374"],["NCBITaxon%3A483214","Methanobrevibacter smithii DSM 2375"]]},{"id":"GTDB:s__Priestia_zanthoxyli","l":"","na":2,"nb":25,"a":[["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["NCBITaxon%3A1292019","Bacillus sp. 278922_107"],["NCBITaxon%3A1202456","Bacillus sp. Aph1"],["NCBITaxon%3A1895009","Bacillus sp. FJAT-26377"],["NCBITaxon%3A2930532","Bacillus sp. H8-1"],["NCBITaxon%3A671602","Bacillus sp. MB95"],["NCBITaxon%3A2744255","Bacillus sp. ME40"]]},{"id":"GTDB:s__Limnospira_platensis","l":"","na":2,"nb":19,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Microalgae_Cyanobacteria_Bioactive_Peptide_Consortia.html","Microalgae-Cyanobacteria Bioactive Peptide Consortia"]],"b":[["NCBITaxon%3A2692892","Arthrospira platensis FACHB-835"],["NCBITaxon%3A1982224","Arthrospira sp. PCC 8006"],["NCBITaxon%3A147317","Arthrospira sp. PCC 9108"],["NCBITaxon%3A2599626","Arthrospira sp. PLM2.Bin9"],["NCBITaxon%3A2828282","Arthrospira sp. SH-MAG29"],["NCBITaxon%3A1982226","Limnospira fusiformis CCALA 023"]]},{"id":"GTDB:s__Clostridium_butyricum","l":"","na":2,"nb":18,"a":[["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A1492","Clostridium butyricum"],["NCBITaxon%3A447214","Clostridium butyricum 5521"],["NCBITaxon%3A997898","Clostridium butyricum 60E.3"],["NCBITaxon%3A1280693","Clostridium butyricum AGR2140"],["NCBITaxon%3A1321950","Clostridium butyricum CWBI1009"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":2,"nb":16,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["NCBITaxon%3A1408","Bacillus pumilus"],["NCBITaxon%3A536229","Bacillus pumilus ATCC 7061"],["NCBITaxon%3A1227811","Bacillus pumilus BA06"],["NCBITaxon%3A1189615","Bacillus pumilus BL8"],["NCBITaxon%3A1350468","Bacillus pumilus CCMA-560"],["NCBITaxon%3A1330463","Bacillus pumilus CIMFR"]]},{"id":"NCBITaxon:244366","l":"Klebsiella variicola","na":2,"nb":16,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A576","Klebsiella sp."],["NCBITaxon%3A244366","Klebsiella variicola"],["NCBITaxon%3A507522","Klebsiella variicola 342"],["NCBITaxon%3A640131","Klebsiella variicola At-22"],["NCBITaxon%3A1438700","Klebsiella variicola BIDMC 61"]]},{"id":"GTDB:s__Stutzerimonas_stutzeri","l":"","na":2,"nb":15,"a":[["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["NCBITaxon%3A1914538","Pseudomonadaceae bacterium"],["NCBITaxon%3A1802004","Pseudomonadales bacterium RIFCSPHIGHO2_01_FULL_64_12"],["NCBITaxon%3A1977087","Pseudomonadota bacterium"],["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A2929472","Pseudomonas sp. JI-2"],["NCBITaxon%3A2717474","Pseudomonas sp. WS 5018"]]},{"id":"NCBITaxon:1492","l":"Clostridium butyricum","na":2,"nb":15,"a":[["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["NCBITaxon%3A1520","Clostridium beijerinckii"],["NCBITaxon%3A1492","Clostridium butyricum"],["NCBITaxon%3A634501","Clostridium butyricum 2CR37"],["NCBITaxon%3A447214","Clostridium butyricum 5521"],["NCBITaxon%3A997898","Clostridium butyricum 60E.3"],["NCBITaxon%3A1280693","Clostridium butyricum AGR2140"]]},{"id":"GTDB:s__Streptococcus_sanguinis","l":"","na":2,"nb":14,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1304","Streptococcus salivarius"],["NCBITaxon%3A1305","Streptococcus sanguinis"],["NCBITaxon%3A1073373","Streptococcus sanguinis CC94A"],["NCBITaxon%3A888821","Streptococcus sanguinis SK1057"],["NCBITaxon%3A888822","Streptococcus sanguinis SK1058"],["NCBITaxon%3A888823","Streptococcus sanguinis SK1059"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":2,"nb":14,"a":[["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["NCBITaxon%3A1076","Rhodopseudomonas palustris"],["NCBITaxon%3A74570","Rhodopseudomonas palustris ATCC 17001"],["NCBITaxon%3A74573","Rhodopseudomonas palustris ATCC 17007"],["NCBITaxon%3A316055","Rhodopseudomonas palustris BisA53"],["NCBITaxon%3A316056","Rhodopseudomonas palustris BisB18"],["NCBITaxon%3A316057","Rhodopseudomonas palustris BisB5"]]},{"id":"NCBITaxon:29466","l":"Veillonella parvula","na":2,"nb":14,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]],"b":[["NCBITaxon%3A39777","Veillonella atypica"],["NCBITaxon%3A29466","Veillonella parvula"],["NCBITaxon%3A1357417","Veillonella parvula AC2_8_11_AN_NA_2"],["NCBITaxon%3A768727","Veillonella parvula ACS-068-V-Sch12"],["NCBITaxon%3A686660","Veillonella parvula ATCC 17745"],["NCBITaxon%3A479436","Veillonella parvula DSM 2008"]]},{"id":"NCBITaxon:5498","l":"Cladosporium","na":2,"nb":14,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"]],"b":[["NCBITaxon%3A1338630","Cladosporium allicinum"],["NCBITaxon%3A29917","Cladosporium cladosporioides"],["NCBITaxon%3A643907","Cladosporium colombiae"],["NCBITaxon%3A1052093","Cladosporium fusiforme"],["NCBITaxon%3A1052096","Cladosporium halotolerans"],["NCBITaxon%3A29918","Cladosporium herbarum"]]},{"id":"GTDB:s__Priestia_megaterium","l":"","na":2,"nb":13,"a":[["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["NCBITaxon%3A3378802","Bacillus sp. Wb"],["NCBITaxon%3A412384","Priestia aryabhattai"],["NCBITaxon%3A1404","Priestia megaterium"],["NCBITaxon%3A592022","Priestia megaterium DSM 319"],["NCBITaxon%3A1348623","Priestia megaterium NBRC 15308 = ATCC 14581"],["NCBITaxon%3A1138452","Priestia megaterium NCT-2"]]},{"id":"GTDB:s__Roseburia_intestinalis","l":"","na":2,"nb":13,"a":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A3077420","Acutalibacteraceae bacterium"],["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A1689","Bifidobacterium dentium"],["NCBITaxon%3A2704657","Bulleidia sp."],["NCBITaxon%3A1898203","Lachnospiraceae bacterium"],["NCBITaxon%3A2485925","Oscillospiraceae bacterium"]]},{"id":"GTDB:s__Methanothrix_soehngenii","l":"","na":2,"nb":12,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["NCBITaxon%3A2026739","Methanobacteriota archaeon"],["NCBITaxon%3A1915557","Methanosaeta sp. UBA243"],["NCBITaxon%3A1915558","Methanosaeta sp. UBA332"],["NCBITaxon%3A1915559","Methanosaeta sp. UBA356"],["NCBITaxon%3A1915560","Methanosaeta sp. UBA372"],["NCBITaxon%3A1915561","Methanosaeta sp. UBA458"]]},{"id":"NCBITaxon:1148","l":"Synechocystis sp. PCC 6803","na":2,"nb":12,"a":[["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["NCBITaxon%3A1148","Synechocystis sp. PCC 6803"],["NCBITaxon%3A2932627","Synechocystis sp. PCC 6803 subst. PCC-Mn"],["NCBITaxon%3A2932628","Synechocystis sp. PCC 6803 subst. PCC-Pn"],["NCBITaxon%3A2962876","Synechocystis sp. PCC 6803 substr. D1-D170H"],["NCBITaxon%3A1080228","Synechocystis sp. PCC 6803 substr. GT-I"],["NCBITaxon%3A2932626","Synechocystis sp. PCC 6803 substr. GT-In"]]},{"id":"GTDB:s__Stutzerimonas_nitrititolerans","l":"","na":2,"nb":11,"a":[["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["NCBITaxon%3A1914538","Pseudomonadaceae bacterium"],["NCBITaxon%3A3003241","Pseudomonadaceae bacterium T75"],["NCBITaxon%3A1977087","Pseudomonadota bacterium"],["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A2479850","Pseudomonas sp. s199"],["NCBITaxon%3A1729723","Pseudomonas sp. TTU2014-066ASC"]]},{"id":"NCBITaxon:293387","l":"Bacillus altitudinis","na":2,"nb":10,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"]],"b":[["NCBITaxon%3A293387","Bacillus altitudinis"],["NCBITaxon%3A1255572","Bacillus altitudinis 263"],["NCBITaxon%3A1178544","Bacillus altitudinis 41KF2b"],["NCBITaxon%3A1326972","Bacillus altitudinis A23-8"],["NCBITaxon%3A1326971","Bacillus altitudinis C101"],["NCBITaxon%3A1326970","Bacillus altitudinis C16B11"]]},{"id":"NCBITaxon:29388","l":"Staphylococcus capitis","na":2,"nb":10,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"],["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["NCBITaxon%3A29388","Staphylococcus capitis"],["NCBITaxon%3A1441378","Staphylococcus capitis AYP1020"],["NCBITaxon%3A435838","Staphylococcus capitis C87"],["NCBITaxon%3A1296619","Staphylococcus capitis CR01"],["NCBITaxon%3A1394901","Staphylococcus capitis HOJ2SBS02"],["NCBITaxon%3A1189311","Staphylococcus capitis QN1"]]},{"id":"NCBITaxon:33959","l":"Lactobacillus johnsonii","na":2,"nb":10,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]],"b":[["NCBITaxon%3A1596","Lactobacillus gasseri"],["NCBITaxon%3A33959","Lactobacillus johnsonii"],["NCBITaxon%3A572503","Lactobacillus johnsonii 135-1-CHN"],["NCBITaxon%3A1033983","Lactobacillus johnsonii 16"],["NCBITaxon%3A525330","Lactobacillus johnsonii ATCC 33200"],["NCBITaxon%3A909954","Lactobacillus johnsonii DPC 6026"]]},{"id":"NCBITaxon:561879","l":"Bacillus safensis","na":2,"nb":10,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"]],"b":[["NCBITaxon%3A1408","Bacillus pumilus"],["NCBITaxon%3A561879","Bacillus safensis"],["NCBITaxon%3A1326975","Bacillus safensis B204-B1-5"],["NCBITaxon%3A1326976","Bacillus safensis D95"],["NCBITaxon%3A1178541","Bacillus safensis FO-36b"],["NCBITaxon%3A1326974","Bacillus safensis NH21E_2"]]},{"id":"GTDB:s__Anaerobutyricum_hallii","l":"","na":2,"nb":9,"a":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A39488","Anaerobutyricum hallii"],["NCBITaxon%3A1263078","Anaerobutyricum hallii CAG:12"],["NCBITaxon%3A411469","Anaerobutyricum hallii DSM 3353"],["NCBITaxon%3A2569098","Anaerobutyricum sp."],["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A1869227","bacterium"]]},{"id":"GTDB:s__Lysinibacillus_sp006864135","l":"","na":2,"nb":9,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]],"b":[["NCBITaxon%3A2936682","Lysinibacillus sp. Ag94"],["NCBITaxon%3A3028148","Lysinibacillus sp. CNPSo 3705"],["NCBITaxon%3A3364130","Lysinibacillus sp. NPDC086135"],["NCBITaxon%3A3364134","Lysinibacillus sp. NPDC095746"],["NCBITaxon%3A3390583","Lysinibacillus sp. NPDC096259"],["NCBITaxon%3A3364136","Lysinibacillus sp. NPDC096382"]]},{"id":"GTDB:s__Shewanella_oneidensis","l":"","na":9,"nb":2,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"],["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"],["Shewanella_Pseudomonas_Fe0_Electrosyntrophic_Denitrifying_Consortium.html","Shewanella oneidensis + Pseudomonas aeruginosa Fe0-dependent Electro-syntrophic Denitrifying Consortium"]],"b":[["NCBITaxon%3A70863","Shewanella oneidensis"],["NCBITaxon%3A211586","Shewanella oneidensis MR-1"]]},{"id":"GTDB:s__Streptococcus_equinus","l":"","na":2,"nb":9,"a":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"]],"b":[["NCBITaxon%3A1335","Streptococcus equinus"],["NCBITaxon%3A1410675","Streptococcus equinus 2B"],["NCBITaxon%3A1210006","Streptococcus equinus ATCC 33317"],["NCBITaxon%3A525379","Streptococcus equinus ATCC 9812"],["NCBITaxon%3A1280690","Streptococcus equinus B315"],["NCBITaxon%3A1280704","Streptococcus equinus SN033"]]},{"id":"GTDB:s__Streptococcus_pasteurianus","l":"","na":2,"nb":9,"a":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"]],"b":[["NCBITaxon%3A2291322","Streptococcaceae bacterium"],["NCBITaxon%3A864569","Streptococcus equinus ATCC 700338"],["NCBITaxon%3A315405","Streptococcus gallolyticus"],["NCBITaxon%3A59310","Streptococcus macedonicus"],["NCBITaxon%3A197614","Streptococcus pasteurianus"],["NCBITaxon%3A981540","Streptococcus pasteurianus ATCC 43144"]]},{"id":"GTDB:s__Streptococcus_ruminicola","l":"","na":2,"nb":9,"a":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"]],"b":[["NCBITaxon%3A1335","Streptococcus equinus"],["NCBITaxon%3A1294274","Streptococcus equinus JB1"],["NCBITaxon%3A102684","Streptococcus infantarius"],["NCBITaxon%3A150055","Streptococcus lutetiensis"],["NCBITaxon%3A2686210","Streptococcus ruminicola"],["NCBITaxon%3A1855326","Streptococcus sp. 45"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":2,"nb":9,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]],"b":[["NCBITaxon%3A28031","Lysinibacillus fusiformis"],["NCBITaxon%3A1130819","Lysinibacillus mangiferihumi"],["NCBITaxon%3A1421","Lysinibacillus sphaericus"],["NCBITaxon%3A444177","Lysinibacillus sphaericus C3-41"],["NCBITaxon%3A1400869","Lysinibacillus sphaericus CBAM5"],["NCBITaxon%3A1354027","Lysinibacillus sphaericus KCTC 3346"]]},{"id":"NCBITaxon:39152","l":"Methanococcus maripaludis","na":2,"nb":9,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"]],"b":[["NCBITaxon%3A39152","Methanococcus maripaludis"],["NCBITaxon%3A402880","Methanococcus maripaludis C5"],["NCBITaxon%3A444158","Methanococcus maripaludis C6"],["NCBITaxon%3A426368","Methanococcus maripaludis C7"],["NCBITaxon%3A637914","Methanococcus maripaludis KA1"],["NCBITaxon%3A637915","Methanococcus maripaludis OS7"]]},{"id":"GTDB:s__Acidiphilium_multivorum","l":"","na":2,"nb":8,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["NCBITaxon%3A349163","Acidiphilium cryptum JF-5"],["NCBITaxon%3A62140","Acidiphilium multivorum"],["NCBITaxon%3A926570","Acidiphilium multivorum AIU301"],["NCBITaxon%3A527","Acidiphilium sp."],["NCBITaxon%3A1464546","Acidiphilium sp. JA12-A1"],["NCBITaxon%3A1043206","Acidiphilium sp. PM"]]},{"id":"GTDB:s__Dehalococcoides_mccartyi_B","l":"","na":2,"nb":8,"a":[["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"]],"b":[["NCBITaxon%3A61435","Dehalococcoides mccartyi"],["NCBITaxon%3A1193806","Dehalococcoides mccartyi BTF08"],["NCBITaxon%3A255470","Dehalococcoides mccartyi CBDB1"],["NCBITaxon%3A1432061","Dehalococcoides mccartyi CG5"],["NCBITaxon%3A1193807","Dehalococcoides mccartyi DCMB5"],["NCBITaxon%3A1407653","Dehalococcoides mccartyi IBARAKI"]]},{"id":"GTDB:s__Stutzerimonas_stutzeri_AC","l":"","na":2,"nb":8,"a":[["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["NCBITaxon%3A3140475","Pseudomonas sp. E45-MNA-CIBAN-0222"],["NCBITaxon%3A2975386","Pseudomonas sp. GD03855"],["NCBITaxon%3A2975387","Pseudomonas sp. GD03856"],["NCBITaxon%3A2975404","Pseudomonas sp. GD03909"],["NCBITaxon%3A1729726","Pseudomonas sp. TTU2014-105ASC"],["NCBITaxon%3A1211807","Stutzerimonas kunmingensis"]]},{"id":"GTDB:s__Virgibacillus_salarius","l":"","na":2,"nb":8,"a":[["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["NCBITaxon%3A1431249","Agaribacter marinus"],["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A1348908","Priestia megaterium MSP20.1"],["NCBITaxon%3A417355","uncultured Virgibacillus sp."],["NCBITaxon%3A447199","Virgibacillus salarius"],["NCBITaxon%3A2812055","Virgibacillus sp. AGTR"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":2,"nb":8,"a":[["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]],"b":[["NCBITaxon%3A1515","Acetivibrio thermocellus"],["NCBITaxon%3A1138384","Acetivibrio thermocellus AD2"],["NCBITaxon%3A203119","Acetivibrio thermocellus ATCC 27405"],["NCBITaxon%3A1349417","Acetivibrio thermocellus BC1"],["NCBITaxon%3A637887","Acetivibrio thermocellus DSM 1313"],["NCBITaxon%3A572545","Acetivibrio thermocellus DSM 2360"]]},{"id":"GTDB:s__Bacillus_siamensis","l":"","na":2,"nb":7,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"]],"b":[["NCBITaxon%3A659243","Bacillus siamensis"],["NCBITaxon%3A1177185","Bacillus siamensis KCTC 13613"],["NCBITaxon%3A2770510","Bacillus sp. 1021"],["NCBITaxon%3A1679193","Bacillus sp. JFL15"],["NCBITaxon%3A1774743","Bacillus sp. SDLI1"],["NCBITaxon%3A3237485","Bacillus sp. YAF8"]]},{"id":"GTDB:s__Nitrosomonas_europaea","l":"","na":2,"nb":7,"a":[["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["NCBITaxon%3A2575678","Betaproteobacteria bacterium PRO5"],["NCBITaxon%3A915","Nitrosomonas europaea"],["NCBITaxon%3A228410","Nitrosomonas europaea ATCC 19718"],["NCBITaxon%3A42353","Nitrosomonas sp."],["NCBITaxon%3A2741553","Nitrosomonas sp. H1_AOB3"],["NCBITaxon%3A1977087","Pseudomonadota bacterium"]]},{"id":"GTDB:s__Veillonella_parvula_A","l":"","na":2,"nb":7,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]],"b":[["NCBITaxon%3A1519439","Oscillibacter sp. ER4"],["NCBITaxon%3A29466","Veillonella parvula"],["NCBITaxon%3A768727","Veillonella parvula ACS-068-V-Sch12"],["NCBITaxon%3A1316254","Veillonella parvula HSIVP1"],["NCBITaxon%3A1926307","Veillonella sp."],["NCBITaxon%3A457416","Veillonella sp. 3_1_44"]]},{"id":"NCBITaxon:28108","l":"Alteromonas macleodii","na":2,"nb":7,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["NCBITaxon%3A28108","Alteromonas macleodii"],["NCBITaxon%3A529120","Alteromonas macleodii ATCC 27126"],["NCBITaxon%3A1004787","Alteromonas macleodii str. 'Balearic Sea AD45'"],["NCBITaxon%3A1004785","Alteromonas macleodii str. 'Black Sea 11'"],["NCBITaxon%3A1004788","Alteromonas macleodii str. 'English Channel 673'"],["NCBITaxon%3A160763","Alteromonas macleodii subsp. abyssi"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":2,"nb":7,"a":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]],"b":[["NCBITaxon%3A293","Brevundimonas diminuta"],["NCBITaxon%3A1255603","Brevundimonas diminuta 3F5N"],["NCBITaxon%3A1035191","Brevundimonas diminuta 470-4"],["NCBITaxon%3A751586","Brevundimonas diminuta ATCC 11568"],["NCBITaxon%3A588932","Brevundimonas naejangsanensis"],["NCBITaxon%3A1325724","Brevundimonas vancanneytii"]]},{"id":"GTDB:s__Anaerostipes_caccae","l":"","na":2,"nb":6,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["NCBITaxon%3A105841","Anaerostipes caccae"],["NCBITaxon%3A411490","Anaerostipes caccae L1-92"],["NCBITaxon%3A1872530","Anaerostipes sp."],["NCBITaxon%3A2292912","Anaerostipes sp. AF04-45"],["NCBITaxon%3A1262699","Anaerostipes sp. CAG:276"],["NCBITaxon%3A244328","uncultured Clostridia bacterium"]]},{"id":"GTDB:s__Lysinibacillus_sphaericus","l":"","na":2,"nb":6,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]],"b":[["NCBITaxon%3A2796169","Lysinibacillus sp. C5.1"],["NCBITaxon%3A2896845","Lysinibacillus sp. GJ-1"],["NCBITaxon%3A1421","Lysinibacillus sphaericus"],["NCBITaxon%3A1354027","Lysinibacillus sphaericus KCTC 3346"],["NCBITaxon%3A1173107","Lysinibacillus tabacifolii"],["NCBITaxon%3A1145276","Lysinibacillus varians"]]},{"id":"GTDB:s__Methanobacterium_formicicum","l":"","na":2,"nb":6,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"]],"b":[["NCBITaxon%3A2026739","Methanobacteriota archaeon"],["NCBITaxon%3A2162","Methanobacterium formicicum"],["NCBITaxon%3A1300163","Methanobacterium formicicum JCM 10132"],["NCBITaxon%3A2164","Methanobacterium sp."],["NCBITaxon%3A1641383","Methanobacterium sp. 42_16"],["NCBITaxon%3A1915470","Methanobacterium sp. UBA74"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":6,"nb":2,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]],"b":[["NCBITaxon%3A324833","Streptomyces lasalocidi"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:2203","l":"Methanospirillum hungatei","na":6,"nb":2,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["NCBITaxon%3A2203","Methanospirillum hungatei"],["NCBITaxon%3A323259","Methanospirillum hungatei JF-1"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":2,"nb":6,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"]],"b":[["NCBITaxon%3A266","Paracoccus denitrificans"],["NCBITaxon%3A1302247","Paracoccus denitrificans JCM 21484"],["NCBITaxon%3A318586","Paracoccus denitrificans PD1222"],["NCBITaxon%3A1051075","Paracoccus denitrificans SD1"],["NCBITaxon%3A82367","Paracoccus pantotrophus"],["NCBITaxon%3A189685","uncultured Paracoccus sp."]]},{"id":"NCBITaxon:70863","l":"Shewanella oneidensis","na":6,"nb":2,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"],["Shewanella_Pseudomonas_Fe0_Electrosyntrophic_Denitrifying_Consortium.html","Shewanella oneidensis + Pseudomonas aeruginosa Fe0-dependent Electro-syntrophic Denitrifying Consortium"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["NCBITaxon%3A70863","Shewanella oneidensis"],["NCBITaxon%3A211586","Shewanella oneidensis MR-1"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":6,"nb":2,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["NCBITaxon%3A881","Nitratidesulfovibrio vulgaris"],["NCBITaxon%3A882","Nitratidesulfovibrio vulgaris str. Hildenborough"]]},{"id":"GTDB:s__Acinetobacter_baylyi","l":"","na":2,"nb":5,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"]],"b":[["NCBITaxon%3A202950","Acinetobacter baylyi"],["NCBITaxon%3A62977","Acinetobacter baylyi ADP1"],["NCBITaxon%3A1120924","Acinetobacter baylyi DSM 14961 = CIP 107474"],["NCBITaxon%3A1221291","Acinetobacter baylyi TG19579"],["NCBITaxon%3A472","Acinetobacter sp."]]},{"id":"GTDB:s__Clostridium_S_acetobutylicum","l":"","na":2,"nb":5,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["NCBITaxon%3A1488","Clostridium acetobutylicum"],["NCBITaxon%3A272562","Clostridium acetobutylicum ATCC 824"],["NCBITaxon%3A991791","Clostridium acetobutylicum DSM 1731"],["NCBITaxon%3A863638","Clostridium acetobutylicum EA 2018"],["NCBITaxon%3A2126737","Clostridium sp. NJ4"]]},{"id":"GTDB:s__Methanothermobacter_thermautotrophicus","l":"","na":2,"nb":5,"a":[["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]],"b":[["NCBITaxon%3A49339","Methanothermobacter defluvii"],["NCBITaxon%3A1884223","Methanothermobacter sp."],["NCBITaxon%3A2017966","Methanothermobacter sp. EMTCatA1"],["NCBITaxon%3A145262","Methanothermobacter thermautotrophicus"],["NCBITaxon%3A187420","Methanothermobacter thermautotrophicus str. Delta H"]]},{"id":"GTDB:s__Novosphingobium_subterraneum","l":"","na":2,"nb":5,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["NCBITaxon%3A1768752","Novosphingobium sp. CCH12-A3"],["NCBITaxon%3A2780074","Novosphingobium sp. ES2-1"],["NCBITaxon%3A48936","Novosphingobium subterraneum"],["NCBITaxon%3A1219057","Novosphingobium subterraneum NBRC 16086"],["NCBITaxon%3A1977087","Pseudomonadota bacterium"]]},{"id":"GTDB:s__Streptococcus_sanguinis_H","l":"","na":2,"nb":5,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1305","Streptococcus sanguinis"],["NCBITaxon%3A888815","Streptococcus sanguinis SK353"],["NCBITaxon%3A388919","Streptococcus sanguinis SK36"],["NCBITaxon%3A888809","Streptococcus sanguinis SK72"],["NCBITaxon%3A888825","Streptococcus sanguinis VMC66"]]},{"id":"GTDB:s__Streptococcus_sanguinis_R","l":"","na":2,"nb":5,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1305","Streptococcus sanguinis"],["NCBITaxon%3A1304891","Streptococcus sanguinis OH0843"],["NCBITaxon%3A888824","Streptococcus sanguinis SK1087"],["NCBITaxon%3A3003644","Streptococcus sp. 27098_8_134"],["NCBITaxon%3A83427","uncultured Streptococcus sp."]]},{"id":"GTDB:s__Stutzerimonas_stutzeri_AE","l":"","na":2,"nb":5,"a":[["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["NCBITaxon%3A2013805","Gammaproteobacteria bacterium HGW-Gammaproteobacteria-9"],["NCBITaxon%3A1883453","Pseudomonas sp. CO183"],["NCBITaxon%3A412955","Pseudomonas sp. SCT"],["NCBITaxon%3A316","Stutzerimonas stutzeri"],["NCBITaxon%3A644801","Stutzerimonas stutzeri RCH2"]]},{"id":"GTDB:s__Stutzerimonas_stutzeri_G","l":"","na":2,"nb":5,"a":[["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A3035478","Pseudomonas sp. FeN3W"],["NCBITaxon%3A1211807","Stutzerimonas kunmingensis"],["NCBITaxon%3A316","Stutzerimonas stutzeri"],["NCBITaxon%3A1212548","Stutzerimonas stutzeri NF13"]]},{"id":"NCBITaxon:202950","l":"Acinetobacter baylyi","na":2,"nb":5,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"],["Saccharomyces_Acinetobacter_Lignocellulose_Detox_Coculture.html","Saccharomyces-Acinetobacter Lignocellulose Hydrolysate Detoxification Coculture"]],"b":[["NCBITaxon%3A202950","Acinetobacter baylyi"],["NCBITaxon%3A62977","Acinetobacter baylyi ADP1"],["NCBITaxon%3A1198992","Acinetobacter baylyi BD4"],["NCBITaxon%3A1120924","Acinetobacter baylyi DSM 14961 = CIP 107474"],["NCBITaxon%3A1221291","Acinetobacter baylyi TG19579"]]},{"id":"NCBITaxon:28034","l":"Sulfobacillus thermosulfidooxidans","na":2,"nb":5,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["NCBITaxon%3A28034","Sulfobacillus thermosulfidooxidans"],["NCBITaxon%3A929705","Sulfobacillus thermosulfidooxidans DSM 9293"],["NCBITaxon%3A1366420","Sulfobacillus thermosulfidooxidans ST"],["NCBITaxon%3A1214914","Sulfobacillus thermosulfidooxidans str. Cutipay"],["NCBITaxon%3A108014","Sulfobacillus thermosulfidooxidans subsp. asporogenes"]]},{"id":"NCBITaxon:33059","l":"Acidithiobacillus caldus","na":2,"nb":5,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["NCBITaxon%3A33059","Acidithiobacillus caldus"],["NCBITaxon%3A637389","Acidithiobacillus caldus ATCC 51756"],["NCBITaxon%3A990288","Acidithiobacillus caldus SM-1"],["NCBITaxon%3A184426","environmental samples"],["NCBITaxon%3A184427","uncultured Acidithiobacillus caldus"]]},{"id":"GTDB:s__Acidithiobacillus_A_caldus","l":"","na":2,"nb":4,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["NCBITaxon%3A33059","Acidithiobacillus caldus"],["NCBITaxon%3A637389","Acidithiobacillus caldus ATCC 51756"],["NCBITaxon%3A990288","Acidithiobacillus caldus SM-1"],["NCBITaxon%3A1872118","Acidithiobacillus sp."]]},{"id":"GTDB:s__Clostridium_B_kluyveri","l":"","na":4,"nb":2,"a":[["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["NCBITaxon%3A431943","Clostridium kluyveri DSM 555"],["NCBITaxon%3A583346","Clostridium kluyveri NBRC 12016"]]},{"id":"GTDB:s__Lysinibacillus_sphaericus_B","l":"","na":2,"nb":4,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]],"b":[["NCBITaxon%3A1405","Bacillus mycoides"],["NCBITaxon%3A3411039","Lysinibacillus sp. UGB7"],["NCBITaxon%3A1421","Lysinibacillus sphaericus"],["NCBITaxon%3A1285586","Lysinibacillus sphaericus OT4b.31"]]},{"id":"GTDB:s__Rhodopseudomonas_palustris_C","l":"","na":2,"nb":4,"a":[["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["NCBITaxon%3A1076","Rhodopseudomonas palustris"],["NCBITaxon%3A1421013","Rhodopseudomonas palustris JSC-3b"],["NCBITaxon%3A1421014","Rhodopseudomonas palustris PSBS"],["NCBITaxon%3A2021379","Xanthobacteraceae bacterium"]]},{"id":"GTDB:s__Ruminiclostridium_cellulolyticum","l":"","na":4,"nb":2,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["NCBITaxon%3A1521","Ruminiclostridium cellulolyticum"],["NCBITaxon%3A394503","Ruminiclostridium cellulolyticum H10"]]},{"id":"GTDB:s__Stutzerimonas_stutzeri_AI","l":"","na":2,"nb":4,"a":[["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["NCBITaxon%3A1914538","Pseudomonadaceae bacterium"],["NCBITaxon%3A3369415","Stutzerimonas sp. CQPMC-PStu"],["NCBITaxon%3A316","Stutzerimonas stutzeri"],["NCBITaxon%3A1333856","Stutzerimonas stutzeri MF28"]]},{"id":"GTDB:s__Sulfobacillus_thermosulfidooxidans","l":"","na":2,"nb":4,"a":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]],"b":[["NCBITaxon%3A28034","Sulfobacillus thermosulfidooxidans"],["NCBITaxon%3A929705","Sulfobacillus thermosulfidooxidans DSM 9293"],["NCBITaxon%3A1366420","Sulfobacillus thermosulfidooxidans ST"],["NCBITaxon%3A1214914","Sulfobacillus thermosulfidooxidans str. Cutipay"]]},{"id":"GTDB:s__Syntrophomonas_wolfei","l":"","na":4,"nb":2,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["NCBITaxon%3A863","Syntrophomonas wolfei"],["NCBITaxon%3A335541","Syntrophomonas wolfei subsp. wolfei str. Goettingen G311"]]},{"id":"NCBITaxon:1521","l":"Ruminiclostridium cellulolyticum","na":4,"nb":2,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["NCBITaxon%3A1521","Ruminiclostridium cellulolyticum"],["NCBITaxon%3A394503","Ruminiclostridium cellulolyticum H10"]]},{"id":"NCBITaxon:231455","l":"Dyella japonica","na":2,"nb":4,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["NCBITaxon%3A231455","Dyella japonica"],["NCBITaxon%3A1217721","Dyella japonica A8"],["NCBITaxon%3A1440762","Dyella japonica DSM 16301"],["NCBITaxon%3A1380365","Dyella japonica UNC79MFTsu3.2"]]},{"id":"NCBITaxon:243164","l":"Dehalococcoides mccartyi 195","na":4,"nb":2,"a":[["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["NCBITaxon%3A61435","Dehalococcoides mccartyi"],["NCBITaxon%3A243164","Dehalococcoides mccartyi 195"]]},{"id":"NCBITaxon:253","l":"Chryseobacterium indologenes","na":2,"nb":4,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"]],"b":[["NCBITaxon%3A246","Chryseobacterium balustinum"],["NCBITaxon%3A253","Chryseobacterium indologenes"],["NCBITaxon%3A1218103","Chryseobacterium indologenes NBRC 14944"],["NCBITaxon%3A239","Flavobacterium sp."]]},{"id":"NCBITaxon:511145","l":"Escherichia coli str. K-12 substr. MG1655","na":2,"nb":4,"a":[["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["NCBITaxon%3A47678","Bacteroides caccae"],["NCBITaxon%3A411901","Bacteroides caccae ATCC 43185"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A511145","Escherichia coli str. K-12 substr. MG1655"]]},{"id":"GTDB:s__Acetobacterium_woodii","l":"","na":3,"nb":2,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["NCBITaxon%3A33952","Acetobacterium woodii"],["NCBITaxon%3A931626","Acetobacterium woodii DSM 1030"]]},{"id":"GTDB:s__Chryseobacterium_indologenes","l":"","na":2,"nb":3,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"]],"b":[["NCBITaxon%3A253","Chryseobacterium indologenes"],["NCBITaxon%3A1218103","Chryseobacterium indologenes NBRC 14944"],["NCBITaxon%3A1340435","Chryseobacterium sp. UNC8MFCol"]]},{"id":"GTDB:s__Leptospirillum_ferrooxidans","l":"","na":2,"nb":3,"a":[["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"]],"b":[["NCBITaxon%3A180","Leptospirillum ferrooxidans"],["NCBITaxon%3A1162668","Leptospirillum ferrooxidans C2-3"],["NCBITaxon%3A2026887","Nitrospirota bacterium"]]},{"id":"GTDB:s__Pelotomaculum_thermopropionicum","l":"","na":2,"nb":3,"a":[["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"]],"b":[["NCBITaxon%3A2053590","Pelotomaculum sp."],["NCBITaxon%3A110500","Pelotomaculum thermopropionicum"],["NCBITaxon%3A370438","Pelotomaculum thermopropionicum SI"]]},{"id":"GTDB:s__Rhodopseudomonas_pseudopalustris","l":"","na":2,"nb":3,"a":[["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["NCBITaxon%3A1076","Rhodopseudomonas palustris"],["NCBITaxon%3A316057","Rhodopseudomonas palustris BisB5"],["NCBITaxon%3A1513892","Rhodopseudomonas pseudopalustris"]]},{"id":"GTDB:s__Streptococcus_sanguinis_M","l":"","na":2,"nb":3,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A45634","Streptococcus cristatus"],["NCBITaxon%3A1305","Streptococcus sanguinis"],["NCBITaxon%3A888811","Streptococcus sanguinis SK150"]]},{"id":"GTDB:s__Streptococcus_sp905212325","l":"","na":2,"nb":3,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1305","Streptococcus sanguinis"],["NCBITaxon%3A888813","Streptococcus sanguinis SK330"],["NCBITaxon%3A83427","uncultured Streptococcus sp."]]},{"id":"NCBITaxon:1317","l":"Streptococcus downei","na":2,"nb":3,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"],["FourSpecies_Aerobic_Lung_Microbiome_Model.html","Four-Species Aerobic Lung Microbiome Model"]],"b":[["NCBITaxon%3A1317","Streptococcus downei"],["NCBITaxon%3A904293","Streptococcus downei F0415"],["NCBITaxon%3A764290","Streptococcus downei MFe28"]]},{"id":"NCBITaxon:145262","l":"Methanothermobacter thermautotrophicus","na":2,"nb":3,"a":[["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]],"b":[["NCBITaxon%3A145262","Methanothermobacter thermautotrophicus"],["NCBITaxon%3A187420","Methanothermobacter thermautotrophicus str. Delta H"],["NCBITaxon%3A79930","Methanothermobacter thermautotrophicus str. Winter"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":3,"nb":2,"a":[["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["NCBITaxon%3A70863","Shewanella oneidensis"],["NCBITaxon%3A211586","Shewanella oneidensis MR-1"]]},{"id":"NCBITaxon:2162","l":"Methanobacterium formicicum","na":2,"nb":3,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"]],"b":[["NCBITaxon%3A2162","Methanobacterium formicicum"],["NCBITaxon%3A1204725","Methanobacterium formicicum DSM 3637"],["NCBITaxon%3A1300163","Methanobacterium formicicum JCM 10132"]]},{"id":"NCBITaxon:33035","l":"Blautia producta","na":3,"nb":2,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["NCBITaxon%3A33035","Blautia producta"],["NCBITaxon%3A1121114","Blautia producta ATCC 27340 = DSM 2950"]]},{"id":"NCBITaxon:33952","l":"Acetobacterium woodii","na":3,"nb":2,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["NCBITaxon%3A33952","Acetobacterium woodii"],["NCBITaxon%3A931626","Acetobacterium woodii DSM 1030"]]},{"id":"NCBITaxon:39488","l":"Anaerobutyricum hallii","na":2,"nb":3,"a":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A39488","Anaerobutyricum hallii"],["NCBITaxon%3A1263078","Anaerobutyricum hallii CAG:12"],["NCBITaxon%3A411469","Anaerobutyricum hallii DSM 3353"]]},{"id":"NCBITaxon:573061","l":"Clostridium cellulovorans 743B","na":3,"nb":2,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"]],"b":[["NCBITaxon%3A1493","Clostridium cellulovorans"],["NCBITaxon%3A573061","Clostridium cellulovorans 743B"]]},{"id":"NCBITaxon:648995","l":"Agrobacterium pusense","na":2,"nb":3,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["NCBITaxon%3A648995","Agrobacterium pusense"],["NCBITaxon%3A1368422","Agrobacterium pusense L2/2/1"],["NCBITaxon%3A1368423","Agrobacterium pusense M2/1"]]},{"id":"GTDB:s__Lentilactobacillus_kefiri","l":"","na":2,"nb":2,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["NCBITaxon%3A33962","Lentilactobacillus kefiri"],["NCBITaxon%3A1423764","Lentilactobacillus kefiri DSM 20587 = JCM 5818"]]},{"id":"GTDB:s__Methylotuvimicrobium_alcaliphilum","l":"","na":2,"nb":2,"a":[["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"]],"b":[["NCBITaxon%3A271065","Methylotuvimicrobium alcaliphilum"],["NCBITaxon%3A1091494","Methylotuvimicrobium alcaliphilum 20Z"]]},{"id":"GTDB:s__Priestia_megaterium_D","l":"","na":2,"nb":2,"a":[["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["NCBITaxon%3A412384","Priestia aryabhattai"],["NCBITaxon%3A1404","Priestia megaterium"]]},{"id":"GTDB:s__Rhodopseudomonas_palustris_G","l":"","na":2,"nb":2,"a":[["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["NCBITaxon%3A1076","Rhodopseudomonas palustris"],["NCBITaxon%3A2269367","Rhodopseudomonas sp. WA056"]]},{"id":"GTDB:s__Streptococcus_sanguinis_K","l":"","na":2,"nb":2,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1305","Streptococcus sanguinis"],["NCBITaxon%3A3003643","Streptococcus sp. 27098_8_82"]]},{"id":"GTDB:s__Streptomyces_ambofaciens","l":"","na":2,"nb":2,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["NCBITaxon%3A1889","Streptomyces ambofaciens"],["NCBITaxon%3A278992","Streptomyces ambofaciens ATCC 23877"]]},{"id":"GTDB:s__Stutzerimonas_stutzeri_B","l":"","na":2,"nb":2,"a":[["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["NCBITaxon%3A316","Stutzerimonas stutzeri"],["NCBITaxon%3A1218352","Stutzerimonas stutzeri KOS6"]]},{"id":"GTDB:s__Stutzerimonas_stutzeri_H","l":"","na":2,"nb":2,"a":[["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["NCBITaxon%3A316","Stutzerimonas stutzeri"],["NCBITaxon%3A1109445","Stutzerimonas stutzeri SDM-LAC"]]},{"id":"GTDB:s__Syntrophobacter_fumaroxidans","l":"","na":2,"nb":2,"a":[["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["NCBITaxon%3A119484","Syntrophobacter fumaroxidans"],["NCBITaxon%3A335543","Syntrophobacter fumaroxidans MPOB"]]},{"id":"NCBITaxon:105841","l":"Anaerostipes caccae","na":2,"nb":2,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["NCBITaxon%3A105841","Anaerostipes caccae"],["NCBITaxon%3A411490","Anaerostipes caccae L1-92"]]},{"id":"NCBITaxon:1091494","l":"Methylotuvimicrobium alcaliphilum 20Z","na":2,"nb":2,"a":[["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"]],"b":[["NCBITaxon%3A271065","Methylotuvimicrobium alcaliphilum"],["NCBITaxon%3A1091494","Methylotuvimicrobium alcaliphilum 20Z"]]},{"id":"NCBITaxon:110500","l":"Pelotomaculum thermopropionicum","na":2,"nb":2,"a":[["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"]],"b":[["NCBITaxon%3A110500","Pelotomaculum thermopropionicum"],["NCBITaxon%3A370438","Pelotomaculum thermopropionicum SI"]]},{"id":"NCBITaxon:119484","l":"Syntrophobacter fumaroxidans","na":2,"nb":2,"a":[["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"]],"b":[["NCBITaxon%3A119484","Syntrophobacter fumaroxidans"],["NCBITaxon%3A335543","Syntrophobacter fumaroxidans MPOB"]]},{"id":"NCBITaxon:1538","l":"Clostridium ljungdahlii","na":2,"nb":2,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]],"b":[["NCBITaxon%3A1538","Clostridium ljungdahlii"],["NCBITaxon%3A748727","Clostridium ljungdahlii DSM 13528"]]},{"id":"NCBITaxon:160488","l":"Pseudomonas putida KT2440","na":2,"nb":2,"a":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"]],"b":[["NCBITaxon%3A303","Pseudomonas putida"],["NCBITaxon%3A160488","Pseudomonas putida KT2440"]]},{"id":"NCBITaxon:180","l":"Leptospirillum ferrooxidans","na":2,"nb":2,"a":[["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"]],"b":[["NCBITaxon%3A180","Leptospirillum ferrooxidans"],["NCBITaxon%3A1162668","Leptospirillum ferrooxidans C2-3"]]},{"id":"NCBITaxon:1889","l":"Streptomyces ambofaciens","na":2,"nb":2,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["NCBITaxon%3A1889","Streptomyces ambofaciens"],["NCBITaxon%3A278992","Streptomyces ambofaciens ATCC 23877"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus ATCC 27405","na":2,"nb":2,"a":[["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["NCBITaxon%3A1515","Acetivibrio thermocellus"],["NCBITaxon%3A203119","Acetivibrio thermocellus ATCC 27405"]]},{"id":"NCBITaxon:2223","l":"Methanothrix soehngenii","na":2,"nb":2,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["NCBITaxon%3A2223","Methanothrix soehngenii"],["NCBITaxon%3A990316","Methanothrix soehngenii GP6"]]},{"id":"NCBITaxon:272562","l":"Clostridium acetobutylicum ATCC 824","na":2,"nb":2,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["NCBITaxon%3A1488","Clostridium acetobutylicum"],["NCBITaxon%3A272562","Clostridium acetobutylicum ATCC 824"]]},{"id":"NCBITaxon:299767","l":"Enterobacter ludwigii","na":2,"nb":2,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A299767","Enterobacter ludwigii"]]},{"id":"NCBITaxon:3039","l":"Euglena gracilis","na":2,"nb":2,"a":[["Dairy_Wastewater_Algal_Cyanobacterial_Cultivation_Panel.html","Dairy Wastewater Algal-Cyanobacterial Cultivation Panel"],["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"]],"b":[["NCBITaxon%3A3039","Euglena gracilis"],["NCBITaxon%3A158060","Euglena gracilis var. bacillaris"]]},{"id":"NCBITaxon:323259","l":"Methanospirillum hungatei JF-1","na":2,"nb":2,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["NCBITaxon%3A2203","Methanospirillum hungatei"],["NCBITaxon%3A323259","Methanospirillum hungatei JF-1"]]},{"id":"NCBITaxon:33962","l":"Lentilactobacillus kefiri","na":2,"nb":2,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["NCBITaxon%3A33962","Lentilactobacillus kefiri"],["NCBITaxon%3A1423764","Lentilactobacillus kefiri DSM 20587 = JCM 5818"]]},{"id":"NCBITaxon:357809","l":"Lachnoclostridium phytofermentans ISDg","na":2,"nb":2,"a":[["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"]],"b":[["NCBITaxon%3A66219","Lachnoclostridium phytofermentans"],["NCBITaxon%3A357809","Lachnoclostridium phytofermentans ISDg"]]},{"id":"NCBITaxon:48936","l":"Novosphingobium subterraneum","na":2,"nb":2,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["NCBITaxon%3A48936","Novosphingobium subterraneum"],["NCBITaxon%3A1219057","Novosphingobium subterraneum NBRC 16086"]]},{"id":"NCBITaxon:515619","l":"Agathobacter rectalis ATCC 33656","na":2,"nb":2,"a":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A39491","Agathobacter rectalis"],["NCBITaxon%3A515619","Agathobacter rectalis ATCC 33656"]]},{"id":"NCBITaxon:524","l":"Acidiphilium cryptum","na":2,"nb":2,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"]],"b":[["NCBITaxon%3A524","Acidiphilium cryptum"],["NCBITaxon%3A349163","Acidiphilium cryptum JF-5"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":2,"nb":2,"a":[["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["NCBITaxon%3A5476","Candida albicans"],["NCBITaxon%3A1182531","Candida albicans 3153A"]]},{"id":"NCBITaxon:659243","l":"Bacillus siamensis","na":2,"nb":2,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"]],"b":[["NCBITaxon%3A659243","Bacillus siamensis"],["NCBITaxon%3A1177185","Bacillus siamensis KCTC 13613"]]},{"id":"NCBITaxon:82380","l":"Microbacterium oxydans","na":2,"nb":2,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]],"b":[["NCBITaxon%3A82380","Microbacterium oxydans"],["NCBITaxon%3A1255678","Microbacterium oxydans PCA1"]]},{"id":"NCBITaxon:913","l":"Nitrobacter winogradskyi","na":2,"nb":2,"a":[["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["NCBITaxon%3A913","Nitrobacter winogradskyi"],["NCBITaxon%3A323098","Nitrobacter winogradskyi Nb-255"]]},{"id":"NCBITaxon:915","l":"Nitrosomonas europaea","na":2,"nb":2,"a":[["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["NCBITaxon%3A915","Nitrosomonas europaea"],["NCBITaxon%3A228410","Nitrosomonas europaea ATCC 19718"]]},{"id":"NCBITaxon:91061","l":"Bacilli","na":1,"nb":79557,"a":[["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"]],"b":[["NCBITaxon%3A46125","Abiotrophia defectiva"],["NCBITaxon%3A592010","Abiotrophia defectiva ATCC 49176"],["NCBITaxon%3A1410024","Abiotrophia defectiva HMP_JCVI_SC0171"],["NCBITaxon%3A1410025","Abiotrophia defectiva HMP_JCVI_SC0235"],["NCBITaxon%3A191553","Abiotrophia para-adiacens"],["NCBITaxon%3A76631","Abiotrophia sp."]]},{"id":"NCBITaxon:356","l":"Hyphomicrobiales","na":1,"nb":37310,"a":[["Thiocyanate_Afipia_Thiobacillus_Bioreactor_Community.html","Thiocyanate-Degrading Afipia and Thiobacillus Bioreactor Community"]],"b":[["NCBITaxon%3A119160","2,3-D degrading bacterium NHC2"],["NCBITaxon%3A119159","2,3-D degrading bacterium NHG3"],["NCBITaxon%3A83488","2,4-D degrading bacterium M1"],["NCBITaxon%3A2910977","Acuticoccus kalidii"],["NCBITaxon%3A2073160","Acuticoccus kandeliae"],["NCBITaxon%3A2796142","Acuticoccus mangrovi"]]},{"id":"NCBITaxon:80840","l":"Burkholderiales","na":1,"nb":24584,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"]],"b":[["NCBITaxon%3A103498","2,4-D-degrading bacterium 001"],["NCBITaxon%3A103499","2,4-D-degrading bacterium 007"],["NCBITaxon%3A103495","2,4-D-degrading bacterium 012"],["NCBITaxon%3A103500","2,4-D-degrading bacterium 017"],["NCBITaxon%3A103501","2,4-D-degrading bacterium 018"],["NCBITaxon%3A103502","2,4-D-degrading bacterium 019"]]},{"id":"NCBITaxon:186801","l":"Clostridia","na":1,"nb":12463,"a":[["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"]],"b":[["NCBITaxon%3A1766203","Abyssisolibacter fermentans"],["NCBITaxon%3A2684878","Abyssisolibacter sp."],["NCBITaxon%3A3035615","Abyssisolibacter sp. ZYX002"],["NCBITaxon%3A1675854","Abyssivirga alkaniphila"],["NCBITaxon%3A2024429","Abyssivirga sp."],["NCBITaxon%3A2912264","Acetanaerobacter sp."]]},{"id":"NCBITaxon:119060","l":"Burkholderiaceae","na":1,"nb":11091,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["NCBITaxon%3A135641","2,4-D degrading transconjugant WD2"],["NCBITaxon%3A135642","2,4-D degrading transconjugant WD3"],["NCBITaxon%3A204704","bacterium Ellin349"],["NCBITaxon%3A204705","bacterium Ellin350"],["NCBITaxon%3A204706","bacterium Ellin364"],["NCBITaxon%3A204707","bacterium Ellin365"]]},{"id":"NCBITaxon:90964","l":"Staphylococcaceae","na":1,"nb":9983,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["NCBITaxon%3A930138","Aliicoccus persicus"],["NCBITaxon%3A1872438","Aliicoccus sp."],["NCBITaxon%3A196884","Arctic sea ice bacterum ARK9973"],["NCBITaxon%3A91995","bacterium #2 from Psoroptes ovis"],["NCBITaxon%3A2838629","Candidatus Jeotgalicoccus stercoravium"],["NCBITaxon%3A2838704","Candidatus Nosocomiicoccus stercorigallinarum"]]},{"id":"NCBITaxon:1279","l":"Staphylococcus","na":1,"nb":9540,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["NCBITaxon%3A196884","Arctic sea ice bacterum ARK9973"],["NCBITaxon%3A91995","bacterium #2 from Psoroptes ovis"],["NCBITaxon%3A2875764","Macrococcus armenti"],["NCBITaxon%3A150056","Mammaliicoccus fleurettii"],["NCBITaxon%3A42858","Mammaliicoccus lentus"],["NCBITaxon%3A246568","marine bacterium 13691"]]},{"id":"NCBITaxon:135614","l":"Lysobacterales","na":1,"nb":7954,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["NCBITaxon%3A346181","Aerolutibacter daejeonensis"],["NCBITaxon%3A686800","Aerolutibacter ruishenii"],["NCBITaxon%3A2010829","Aerosticca soli"],["NCBITaxon%3A2707022","Aerosticca sp."],["NCBITaxon%3A380628","Agrilutibacter niabensis"],["NCBITaxon%3A2763317","Agrilutibacter solisilvae"]]},{"id":"NCBITaxon:469","l":"Acinetobacter","na":1,"nb":6769,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["NCBITaxon%3A1673609","Acinetobacter albensis"],["NCBITaxon%3A2942470","Acinetobacter amyesii"],["NCBITaxon%3A363192","Acinetobacter antiviralis"],["NCBITaxon%3A1229165","Acinetobacter apis"],["NCBITaxon%3A2605383","Acinetobacter baretiae"],["NCBITaxon%3A470","Acinetobacter baumannii"]]},{"id":"NCBITaxon:135619","l":"Oceanospirillales","na":1,"nb":6491,"a":[["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"]],"b":[["NCBITaxon%3A2717337","Aestuariirhabdaceae bacterium"],["NCBITaxon%3A2918751","Aestuariirhabdus haliotis"],["NCBITaxon%3A2528527","Aestuariirhabdus litorea"],["NCBITaxon%3A2717333","Aestuariirhabdus sp."],["NCBITaxon%3A3417462","Aestuariirhabdus sp. LZHN29"],["NCBITaxon%3A574349","Aidingimonas halophila"]]},{"id":"NCBITaxon:2759","l":"Eukaryota","na":1,"nb":6243,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"]],"b":[["NCBITaxon%3A1450171","Aaosphaeria arxii"],["NCBITaxon%3A749232","Abeoforma whisleri"],["NCBITaxon%3A137743","Abortiporus biennis"],["NCBITaxon%3A420591","Absidia anomala"],["NCBITaxon%3A90261","Absidia caerulea"],["NCBITaxon%3A327741","Absidia californica"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":1,"nb":5776,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["NCBITaxon%3A54736","Salmonella bongori"],["NCBITaxon%3A218493","Salmonella bongori NCTC 12419"],["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59203","Salmonella enterica subsp. arizonae"],["NCBITaxon%3A2577126","Salmonella enterica subsp. arizonae serovar 11:z4,z23:-"],["NCBITaxon%3A2577127","Salmonella enterica subsp. arizonae serovar 13,22:z4,z23:-"]]},{"id":"NCBITaxon:561","l":"Escherichia","na":1,"nb":5589,"a":[["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"]],"b":[["NCBITaxon%3A259276","cf. Escherichia SAR-1"],["NCBITaxon%3A2562891","Escherichia alba"],["NCBITaxon%3A208962","Escherichia albertii"],["NCBITaxon%3A550692","Escherichia albertii B090"],["NCBITaxon%3A550693","Escherichia albertii B156"],["NCBITaxon%3A1440052","Escherichia albertii KF1"]]},{"id":"NCBITaxon:4751","l":"Fungi","na":1,"nb":5527,"a":[["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"]],"b":[["NCBITaxon%3A1450171","Aaosphaeria arxii"],["NCBITaxon%3A137743","Abortiporus biennis"],["NCBITaxon%3A420591","Absidia anomala"],["NCBITaxon%3A90261","Absidia caerulea"],["NCBITaxon%3A327741","Absidia californica"],["NCBITaxon%3A420592","Absidia cuneospora"]]},{"id":"NCBITaxon:1301","l":"Streptococcus","na":1,"nb":4599,"a":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]],"b":[["NCBITaxon%3A2838763","Candidatus Streptococcus faecavium"],["NCBITaxon%3A3711814","Candidatus Streptococcus gullae"],["NCBITaxon%3A2962908","Candidatus Streptococcus sp. bin.001"],["NCBITaxon%3A33945","Enterococcus avium"],["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A1358","Lactococcus lactis"]]},{"id":"NCBITaxon:1350","l":"Enterococcus","na":1,"nb":4515,"a":[["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"]],"b":[["NCBITaxon%3A2838561","Candidatus Enterococcus avicola"],["NCBITaxon%3A1834193","Candidatus Enterococcus clewellii"],["NCBITaxon%3A2815329","Candidatus Enterococcus courvalinii"],["NCBITaxon%3A1834192","Candidatus Enterococcus dunnyi"],["NCBITaxon%3A2815324","Candidatus Enterococcus ferrettii"],["NCBITaxon%3A1857217","Candidatus Enterococcus huntleyi"]]},{"id":"NCBITaxon:203691","l":"Spirochaetota","na":1,"nb":3862,"a":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["NCBITaxon%3A46356","Alkalispirochaeta alkalica"],["NCBITaxon%3A942938","Alkalispirochaeta alkalica DSM 8900"],["NCBITaxon%3A159291","Alkalispirochaeta americana"],["NCBITaxon%3A1410329","Alkalispirochaeta cellulosivorans"],["NCBITaxon%3A1329640","Alkalispirochaeta odontotermitis"],["NCBITaxon%3A2024959","Alkalispirochaeta sp."]]},{"id":"NCBITaxon:4890","l":"Ascomycota","na":1,"nb":3631,"a":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["NCBITaxon%3A1450171","Aaosphaeria arxii"],["NCBITaxon%3A1307806","Acarospora strigata"],["NCBITaxon%3A886606","Acephala macrosclerotiorum"],["NCBITaxon%3A1934374","Achaetomiella virescens"],["NCBITaxon%3A79813","Achaetomium macrosporum"],["NCBITaxon%3A43968","Aciculoconidium aculeatum"]]},{"id":"NCBITaxon:2745","l":"Halomonas","na":1,"nb":3499,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["NCBITaxon%3A1107859","Candidatus Halomonas phosphatis"],["NCBITaxon%3A2838617","Candidatus Halomonas stercoripullorum"],["NCBITaxon%3A1897729","Halomonas aestuarii"],["NCBITaxon%3A659123","Halomonas aidingensis"],["NCBITaxon%3A147248","Halomonas alimentaria"],["NCBITaxon%3A1930622","Halomonas alkalicola"]]},{"id":"NCBITaxon:1873","l":"Micromonospora","na":1,"nb":3346,"a":[["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"]],"b":[["NCBITaxon%3A2202421","Micromonospora acroterricola"],["NCBITaxon%3A2911212","Micromonospora alfalfae"],["NCBITaxon%3A1287068","Micromonospora andamanensis"],["NCBITaxon%3A2807623","Micromonospora antibiotica"],["NCBITaxon%3A309046","Micromonospora aquatica"],["NCBITaxon%3A2116518","Micromonospora arborensis"]]},{"id":"NCBITaxon:75682","l":"Oxalobacteraceae","na":1,"nb":3139,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["NCBITaxon%3A1051899","Actimicrobium antarcticum"],["NCBITaxon%3A2792609","Actimicrobium sp."],["NCBITaxon%3A3048606","Actimicrobium sp. CCC2.4"],["NCBITaxon%3A3048616","Actimicrobium sp. CCI2.3"],["NCBITaxon%3A3071708","Actimicrobium sp. GrIS 1.19"],["NCBITaxon%3A1550357","Actimicrobium sp. MsC-12-4CB4-02"]]},{"id":"NCBITaxon:1125","l":"Microcystis","na":1,"nb":2332,"a":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"]],"b":[["NCBITaxon%3A1126","Microcystis aeruginosa"],["NCBITaxon%3A270630","Microcystis aeruginosa 0BB35S02"],["NCBITaxon%3A270631","Microcystis aeruginosa 0BF29S01"],["NCBITaxon%3A270632","Microcystis aeruginosa 0BF29S03"],["NCBITaxon%3A2358142","Microcystis aeruginosa 11-30S32"],["NCBITaxon%3A3113711","Microcystis aeruginosa 1339"]]},{"id":"NCBITaxon:613","l":"Serratia","na":1,"nb":2177,"a":[["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["NCBITaxon%3A3076559","Prodigiosinella aquatilis"],["NCBITaxon%3A28242","secondary symbiont of Acyrthosiphon pisum"],["NCBITaxon%3A1924982","secondary symbiont of Schizolachnus pineti"],["NCBITaxon%3A207488","secondary symbiont type-R of Aphis craccivora"],["NCBITaxon%3A207491","secondary symbiont type-R of Cinara cupressi"],["NCBITaxon%3A207493","secondary symbiont type-R of Cinara tujafilina"]]},{"id":"NCBITaxon:1129","l":"Synechococcus","na":1,"nb":2170,"a":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]],"b":[["NCBITaxon%3A2081909","Anacystis marina"],["NCBITaxon%3A2081929","Anacystis marina UTEX LB 1634"],["NCBITaxon%3A1522304","Candidatus Synechococcus calcipolaris"],["NCBITaxon%3A1497997","Candidatus Synechococcus calcipolaris G9"],["NCBITaxon%3A431041","Candidatus Synechococcus spongiarum"],["NCBITaxon%3A1608213","Candidatus Synechococcus spongiarum 142"]]},{"id":"NCBITaxon:59732","l":"Chryseobacterium","na":1,"nb":2006,"a":[["Wheat_Consortium_C6.html","Wheat Synthetic Consortium C6"]],"b":[["NCBITaxon%3A3121364","Candidatus Chryseobacterium colombiense"],["NCBITaxon%3A3083056","Candidatus Chryseobacterium enterohippi"],["NCBITaxon%3A204089","Candidatus Chryseobacterium massiliense"],["NCBITaxon%3A445211","Candidatus Chryseobacterium massiliensis"],["NCBITaxon%3A1205738","Candidatus Chryseobacterium massiliensis URChM1"],["NCBITaxon%3A226524","Candidatus Chryseobacterium timonense"]]},{"id":"NCBITaxon:74201","l":"Verrucomicrobiota","na":1,"nb":1784,"a":[["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["NCBITaxon%3A2866162","Actomonas aquatica"],["NCBITaxon%3A2909285","Actomonas lomoniglobus"],["NCBITaxon%3A3445636","Actomonas mangrovi"],["NCBITaxon%3A3138695","Actomonas sp."],["NCBITaxon%3A3841136","Actomonas sp. D89-C28Y8"],["NCBITaxon%3A3445637","Actomonas spartinae"]]},{"id":"NCBITaxon:224756","l":"Methanomicrobia","na":1,"nb":1736,"a":[["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"]],"b":[["NCBITaxon%3A2056317","ANME-2 cluster archaeon"],["NCBITaxon%3A98256","archaeon A8.96.42"],["NCBITaxon%3A2971473","Candidatus Alkanophaga liquidiphilum"],["NCBITaxon%3A2971472","Candidatus Alkanophaga volatiphilum"],["NCBITaxon%3A2971454","Candidatus Alkanophagales archaeon"],["NCBITaxon%3A2608793","Candidatus Argoarchaeum ethanivorans"]]},{"id":"NCBITaxon:204441","l":"Rhodospirillales","na":1,"nb":1729,"a":[["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"]],"b":[["NCBITaxon%3A1709002","Aerophototrophica crusticola"],["NCBITaxon%3A2811398","Aerophototrophica sp."],["NCBITaxon%3A2775080","Aestuariispira ectoiniformans"],["NCBITaxon%3A1461337","Aestuariispira insulae"],["NCBITaxon%3A1872406","Aestuariispira sp."],["NCBITaxon%3A2164067","Algihabitans albus"]]},{"id":"NCBITaxon:1269","l":"Micrococcus","na":1,"nb":1469,"a":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]],"b":[["NCBITaxon%3A1871615","Dermacoccus sp."],["NCBITaxon%3A1275","Kocuria rosea"],["NCBITaxon%3A29377","Micrococcus aerogenes"],["NCBITaxon%3A306270","Micrococcus alkanovora"],["NCBITaxon%3A1391911","Micrococcus aloeverae"],["NCBITaxon%3A86171","Micrococcus antarcticus"]]},{"id":"NCBITaxon:651137","l":"Nitrososphaerota","na":1,"nb":1257,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]],"b":[["NCBITaxon%3A3693715","Acidarchaeum fankouense (SeqCode)"],["NCBITaxon%3A2528703","Aigarchaeota archaeon"],["NCBITaxon%3A1052838","Aigarchaeota archaeon JGI 0000001-A7"],["NCBITaxon%3A1052839","Aigarchaeota archaeon JGI 0000001-B8"],["NCBITaxon%3A1052841","Aigarchaeota archaeon JGI 0000001-H6"],["NCBITaxon%3A1052823","Aigarchaeota archaeon SCGC AAA471-A16"]]},{"id":"NCBITaxon:226","l":"Alteromonas","na":1,"nb":1246,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["NCBITaxon%3A1892904","Alteromonas abrolhosensis"],["NCBITaxon%3A1938339","Alteromonas aestuariivivens"],["NCBITaxon%3A105692","Alteromonas agarilytica"],["NCBITaxon%3A3410268","Alteromonas algae"],["NCBITaxon%3A135000","Alteromonas alvinellae"],["NCBITaxon%3A2803813","Alteromonas antoniana"]]},{"id":"NCBITaxon:47251","l":"Leptolyngbya","na":1,"nb":1210,"a":[["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]],"b":[["NCBITaxon%3A2653193","cf. Leptolyngbya sp. CCNUM2"],["NCBITaxon%3A377165","cf. Leptolyngbya sp. Greenland_10"],["NCBITaxon%3A377164","cf. Leptolyngbya sp. Greenland_9"],["NCBITaxon%3A2675591","cf. Leptolyngbya sp. PKUAC-SCTE412"],["NCBITaxon%3A2675592","cf. Leptolyngbya sp. PKUAC-SCTE413"],["NCBITaxon%3A2675593","cf. Leptolyngbya sp. PKUAC-SCTE811"]]},{"id":"NCBITaxon:171552","l":"Prevotellaceae","na":1,"nb":1003,"a":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]],"b":[["NCBITaxon%3A671218","Alloprevotella rava"],["NCBITaxon%3A524034","Alloprevotella rava F0020"],["NCBITaxon%3A679199","Alloprevotella rava F0323"],["NCBITaxon%3A1872471","Alloprevotella sp."],["NCBITaxon%3A2338072","Alloprevotella sp. A1798"],["NCBITaxon%3A2594464","Alloprevotella sp. CON1"]]},{"id":"NCBITaxon:1163","l":"Anabaena","na":1,"nb":988,"a":[["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"]],"b":[["NCBITaxon%3A212361","Anabaena aequalis"],["NCBITaxon%3A732138","Anabaena aequalis ACCS 089"],["NCBITaxon%3A264684","Anabaena augstumalis"],["NCBITaxon%3A436026","Anabaena augstumalis A802"],["NCBITaxon%3A1217902","Anabaena augstumalis CA2a-1"],["NCBITaxon%3A1940708","Anabaena augstumalis I013-0007"]]},{"id":"NCBITaxon:2818505","l":"Myxococcota","na":1,"nb":970,"a":[["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"]],"b":[["NCBITaxon%3A888830","Aetherobacter fasciculatus"],["NCBITaxon%3A888831","Aetherobacter rufus"],["NCBITaxon%3A2022431","Aetherobacter sp."],["NCBITaxon%3A888842","Aetherobacter sp. SBSr001"],["NCBITaxon%3A888843","Aetherobacter sp. SBSr008"],["NCBITaxon%3A1450165","Aggregicoccus edonensis"]]},{"id":"NCBITaxon:48736","l":"Ralstonia","na":1,"nb":906,"a":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]],"b":[["NCBITaxon%3A1944648","blood disease bacterium A2-HR MARDI"],["NCBITaxon%3A213608","blood disease bacterium BananaE"],["NCBITaxon%3A297304","blood disease bacterium JT656"],["NCBITaxon%3A297303","blood disease bacterium JT657"],["NCBITaxon%3A40803","blood disease bacterium R223"],["NCBITaxon%3A741978","blood disease bacterium R229"]]},{"id":"NCBITaxon:106589","l":"Cupriavidus","na":1,"nb":878,"a":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]],"b":[["NCBITaxon%3A1001822","Cupriavidus agavae"],["NCBITaxon%3A942866","Cupriavidus alkaliphilus"],["NCBITaxon%3A68895","Cupriavidus basilensis"],["NCBITaxon%3A1200775","Cupriavidus basilensis B-8"],["NCBITaxon%3A1127483","Cupriavidus basilensis OR16"],["NCBITaxon%3A151783","Cupriavidus campinensis"]]},{"id":"NCBITaxon:1847","l":"Pseudonocardia","na":1,"nb":850,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["NCBITaxon%3A2792008","Pseudonocardia abyssalis"],["NCBITaxon%3A2724939","Pseudonocardia acidicola"],["NCBITaxon%3A648754","Pseudonocardia adelaidensis"],["NCBITaxon%3A367279","Pseudonocardia ailaonensis"],["NCBITaxon%3A75291","Pseudonocardia alaniniphila"],["NCBITaxon%3A33907","Pseudonocardia alni"]]},{"id":"NCBITaxon:34037","l":"Rahnella","na":1,"nb":846,"a":[["SynCom_Pseudomonas_Rahnella_Artemisia_Phytoremediation.html","Pseudomonas-Rahnella native rhizosphere SynCom for Artemisia argyi phytoremediation"]],"b":[["NCBITaxon%3A2703885","Rahnella aceris"],["NCBITaxon%3A34038","Rahnella aquatilis"],["NCBITaxon%3A745277","Rahnella aquatilis CIP 78.65 = ATCC 33071"],["NCBITaxon%3A1151116","Rahnella aquatilis HX2"],["NCBITaxon%3A2816248","Rahnella bonaserana"],["NCBITaxon%3A1510573","Rahnella bruchi"]]},{"id":"NCBITaxon:507","l":"Alcaligenes","na":1,"nb":772,"a":[["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"]],"b":[["NCBITaxon%3A134375","Achromobacter sp."],["NCBITaxon%3A2582914","Alcaligenes ammonioxydans"],["NCBITaxon%3A323284","Alcaligenes aquatilis"],["NCBITaxon%3A1929088","Alcaligenes endophyticus"],["NCBITaxon%3A511","Alcaligenes faecalis"],["NCBITaxon%3A1255592","Alcaligenes faecalis 2L10"]]},{"id":"NCBITaxon:2283796","l":"Thermoplasmatota","na":1,"nb":743,"a":[["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"]],"b":[["NCBITaxon%3A507754","Acidiplasma aeolicum"],["NCBITaxon%3A312540","Acidiplasma cupricumulans"],["NCBITaxon%3A1295373","Acidiplasma cupricumulans JCM 13668 = DSM 16651"],["NCBITaxon%3A1872114","Acidiplasma sp."],["NCBITaxon%3A3402690","Acidiplasma sp. BR-02"],["NCBITaxon%3A1293648","Acidiplasma sp. MBA-1"]]},{"id":"NCBITaxon:838","l":"Prevotella","na":1,"nb":735,"a":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]],"b":[["NCBITaxon%3A2838738","Candidatus Prevotella avicola"],["NCBITaxon%3A3083129","Candidatus Prevotella equi"],["NCBITaxon%3A2838739","Candidatus Prevotella intestinigallinarum"],["NCBITaxon%3A2838740","Candidatus Prevotella stercoripullorum"],["NCBITaxon%3A81582","Prevotella aff. ruminicola Tc2-24"],["NCBITaxon%3A419005","Prevotella amnii"]]},{"id":"NCBITaxon:28453","l":"Sphingobacterium","na":1,"nb":666,"a":[["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"]],"b":[["NCBITaxon%3A2838758","Candidatus Sphingobacterium stercorigallinarum"],["NCBITaxon%3A2838759","Candidatus Sphingobacterium stercoripullorum"],["NCBITaxon%3A797292","Sphingobacterium alimentarium"],["NCBITaxon%3A1874115","Sphingobacterium alkalisoli"],["NCBITaxon%3A415956","Sphingobacterium allocomposti"],["NCBITaxon%3A493780","Sphingobacterium anhuiense"]]},{"id":"NCBITaxon:2433","l":"Roseobacter","na":1,"nb":652,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["NCBITaxon%3A196799","Arctic sea ice bacterium ARK10233"],["NCBITaxon%3A197015","Arctic sea ice bacterium ARK10278"],["NCBITaxon%3A2602289","Roseobacter cerasinus"],["NCBITaxon%3A3467295","Roseobacter cerffii"],["NCBITaxon%3A2434","Roseobacter denitrificans"],["NCBITaxon%3A375451","Roseobacter denitrificans OCh 114"]]},{"id":"NCBITaxon:110932","l":"Leifsonia","na":1,"nb":647,"a":[["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"]],"b":[["NCBITaxon%3A1638198","Candidatus Leifsonia sp. Metals-1"],["NCBITaxon%3A1638199","Candidatus Leifsonia sp. Metals-2"],["NCBITaxon%3A494024","Leifsonia antarctica"],["NCBITaxon%3A144185","Leifsonia aquatica"],["NCBITaxon%3A1358026","Leifsonia aquatica ATCC 14665"],["NCBITaxon%3A1416759","Leifsonia aquatica H1aii"]]},{"id":"NCBITaxon:1707","l":"Cellulomonas","na":1,"nb":645,"a":[["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"]],"b":[["NCBITaxon%3A1667","Arthrobacter sp."],["NCBITaxon%3A515326","Cellulomonas aerilata"],["NCBITaxon%3A3053467","Cellulomonas alba"],["NCBITaxon%3A2071633","Cellulomonas algicola"],["NCBITaxon%3A2762242","Cellulomonas avistercoris"],["NCBITaxon%3A1709","Cellulomonas biazotea"]]},{"id":"NCBITaxon:183925","l":"Methanobacteria","na":1,"nb":614,"a":[["Thermophilic_ExSitu_Biomethanation_Mixed_Culture.html","Thermophilic Ex-Situ Biomethanation Mixed Culture"]],"b":[["NCBITaxon%3A98257","archaeon A2.95.53"],["NCBITaxon%3A98259","archaeon A8.96.15"],["NCBITaxon%3A98258","archaeon A9.96.64"],["NCBITaxon%3A2006182","Candidatus Methanobinarius endosymbioticus"],["NCBITaxon%3A3110950","Candidatus Methanoflexus mossambicus"],["NCBITaxon%3A3110951","Candidatus Methanorudis spinitermitis"]]},{"id":"NCBITaxon:1988","l":"Actinomadura","na":1,"nb":562,"a":[["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"]],"b":[["NCBITaxon%3A1819600","Actinomadura adrarensis"],["NCBITaxon%3A406431","Actinomadura alba"],["NCBITaxon%3A1679523","Actinomadura algeriensis"],["NCBITaxon%3A1735446","Actinomadura alkaliterrae"],["NCBITaxon%3A755139","Actinomadura apis"],["NCBITaxon%3A1990","Actinomadura atramentaria"]]},{"id":"NCBITaxon:200918","l":"Thermotogota","na":1,"nb":513,"a":[["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"]],"b":[["NCBITaxon%3A1441386","Athalassotoga saccharophila"],["NCBITaxon%3A2022597","Athalassotoga sp."],["NCBITaxon%3A114589","bacterial str. vp424"],["NCBITaxon%3A114588","bacterial str. vp56"],["NCBITaxon%3A91178","Caldotoga fontana"],["NCBITaxon%3A2969823","Defluviitoga sp."]]},{"id":"NCBITaxon:68","l":"Lysobacter","na":1,"nb":501,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["NCBITaxon%3A488485","Luteimonas marina"],["NCBITaxon%3A1582807","Lysobacter agri"],["NCBITaxon%3A84531","Lysobacter antibioticus"],["NCBITaxon%3A1286308","Lysobacter antibioticus HS124"],["NCBITaxon%3A2795387","Lysobacter arenosi"],["NCBITaxon%3A3038776","Lysobacter arvi"]]},{"id":"NCBITaxon:83618","l":"Pseudoxanthomonas","na":1,"nb":475,"a":[["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"]],"b":[["NCBITaxon%3A1844278","Pseudoxanthomonas arseniciresistens"],["NCBITaxon%3A2782537","Pseudoxanthomonas beigongshangi"],["NCBITaxon%3A83619","Pseudoxanthomonas broegbernensis"],["NCBITaxon%3A324747","Pseudoxanthomonas byssovorax"],["NCBITaxon%3A2137479","Pseudoxanthomonas composti"],["NCBITaxon%3A266062","Pseudoxanthomonas daejeonensis"]]},{"id":"NCBITaxon:2237","l":"Haloarcula","na":1,"nb":467,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["NCBITaxon%3A337689","Haloarcula algeriensis"],["NCBITaxon%3A396317","Haloarcula amylolytica"],["NCBITaxon%3A1227452","Haloarcula amylolytica JCM 13557"],["NCBITaxon%3A2562280","Haloarcula amylovorans"],["NCBITaxon%3A43776","Haloarcula argentinensis"],["NCBITaxon%3A1230451","Haloarcula argentinensis DSM 12282"]]},{"id":"NCBITaxon:403","l":"Methylococcaceae","na":1,"nb":433,"a":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["NCBITaxon%3A160972","Bathymodiolus symbiont pMMOA-1"],["NCBITaxon%3A2707345","Candidatus Methylobacter favarea"],["NCBITaxon%3A2497749","Candidatus Methylobacter oryzae"],["NCBITaxon%3A3053457","Candidatus Methylobacter titanis"],["NCBITaxon%3A3108543","Candidatus Methylocalor cossyra"],["NCBITaxon%3A2802053","Candidatus Methylomicrobium oryzae"]]},{"id":"NCBITaxon:32011","l":"Methylophilaceae","na":1,"nb":422,"a":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["NCBITaxon%3A3043849","Candidatus Methylolitoribacter marinus"],["NCBITaxon%3A3710421","Candidatus Methylolitoribacter sp."],["NCBITaxon%3A1581557","Candidatus Methylopumilus planktonicus"],["NCBITaxon%3A2588535","Candidatus Methylopumilus rimovensis"],["NCBITaxon%3A2518607","Candidatus Methylopumilus sp."],["NCBITaxon%3A1846164","Candidatus Methylopumilus sp. SH3101B57"]]},{"id":"NCBITaxon:28228","l":"Colwellia","na":1,"nb":379,"a":[["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"]],"b":[["NCBITaxon%3A196835","Arctic sea ice bacterium ARK10102"],["NCBITaxon%3A2267621","Candidatus Colwellia aromaticivorans"],["NCBITaxon%3A1195759","Colwellia aquaemaris"],["NCBITaxon%3A1520782","Colwellia arctica"],["NCBITaxon%3A517723","Colwellia asteriadis"],["NCBITaxon%3A641665","Colwellia chukchiensis"]]},{"id":"NCBITaxon:47420","l":"Hydrogenophaga","na":1,"nb":363,"a":[["Waste_Sludge_Electrofermentation_Biofilm_Suspension_Community.html","Waste-Sludge Electro-Fermentation Biofilm-Suspension Community"]],"b":[["NCBITaxon%3A1854763","Hydrogenophaga aquatica"],["NCBITaxon%3A2610898","Hydrogenophaga aromaticivorans"],["NCBITaxon%3A249409","Hydrogenophaga atypica"],["NCBITaxon%3A439611","Hydrogenophaga bisanensis"],["NCBITaxon%3A2294117","Hydrogenophaga borbori"],["NCBITaxon%3A370976","Hydrogenophaga caeni"]]},{"id":"NCBITaxon:182639","l":"Kribbella","na":1,"nb":328,"a":[["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"]],"b":[["NCBITaxon%3A190197","Kribbella alba"],["NCBITaxon%3A1266829","Kribbella albertanoniae"],["NCBITaxon%3A416017","Kribbella aluminosa"],["NCBITaxon%3A996641","Kribbella amoyensis"],["NCBITaxon%3A190195","Kribbella antibiotica"],["NCBITaxon%3A2512217","Kribbella antiqua"]]},{"id":"NCBITaxon:2222","l":"Methanothrix","na":1,"nb":318,"a":[["Thermophilic_ExSitu_Biomethanation_Mixed_Culture.html","Thermophilic Ex-Situ Biomethanation Mixed Culture"]],"b":[["NCBITaxon%3A118058","Methanosaeta sp. AMPB-Zg"],["NCBITaxon%3A1857768","Methanosaeta sp. ARCH"],["NCBITaxon%3A1917477","Methanosaeta sp. ASM2"],["NCBITaxon%3A1917474","Methanosaeta sp. ASO1"],["NCBITaxon%3A1917475","Methanosaeta sp. ASP1-1"],["NCBITaxon%3A1917476","Methanosaeta sp. ASP1-2"]]},{"id":"NCBITaxon:434","l":"Acetobacter","na":1,"nb":309,"a":[["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"]],"b":[["NCBITaxon%3A435","Acetobacter aceti"],["NCBITaxon%3A1457393","Acetobacter aceti 1023"],["NCBITaxon%3A663932","Acetobacter aceti ATCC 23746"],["NCBITaxon%3A887700","Acetobacter aceti NBRC 14818"],["NCBITaxon%3A1206747","Acetobacter aceti NRIC 0242"],["NCBITaxon%3A481146","Acetobacter ascendens"]]},{"id":"NCBITaxon:54298","l":"Chroococcidiopsis","na":1,"nb":302,"a":[["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"]],"b":[["NCBITaxon%3A2138304","Chroococcidiopsis bourrellyana"],["NCBITaxon%3A2138305","Chroococcidiopsis bourrellyana NTLRM1"],["NCBITaxon%3A869946","Chroococcidiopsis cf. cubana CCALA 047"],["NCBITaxon%3A171392","Chroococcidiopsis cubana"],["NCBITaxon%3A3024990","Chroococcidiopsis cubana C108"],["NCBITaxon%3A2942199","Chroococcidiopsis cubana C148"]]},{"id":"NCBITaxon:1090","l":"Chlorobiota","na":1,"nb":300,"a":[["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"]],"b":[["NCBITaxon%3A338819","anammox bacterium A-3"],["NCBITaxon%3A1653826","Ancalochloris perfilievii"],["NCBITaxon%3A1872565","Ancalochloris sp."],["NCBITaxon%3A3039321","Candidatus Chlorobium antarcticum"],["NCBITaxon%3A2716876","Candidatus Chlorobium masyuteum"],["NCBITaxon%3A1868324","Candidatus Thermochlorobacter aerophilus"]]},{"id":"NCBITaxon:168934","l":"Thalassospira","na":1,"nb":298,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["NCBITaxon%3A2800829","Candidatus Thalassospira pliocenensis"],["NCBITaxon%3A1293890","Thalassospira alkalitolerans"],["NCBITaxon%3A3037796","Thalassospira aquimaris"],["NCBITaxon%3A1528106","Thalassospira australica"],["NCBITaxon%3A1144705","Thalassospira frigidphilosprofundus"],["NCBITaxon%3A1891279","Thalassospira indica"]]},{"id":"NCBITaxon:28100","l":"Phyllobacterium","na":1,"nb":297,"a":[["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A3020828","Candidatus Phyllobacterium onerii"],["NCBITaxon%3A314236","Phyllobacterium bourgognense"],["NCBITaxon%3A314235","Phyllobacterium brassicacearum"],["NCBITaxon%3A2817027","Phyllobacterium calauticae"],["NCBITaxon%3A281785","Phyllobacterium catacumbae"],["NCBITaxon%3A2876082","Phyllobacterium chamaecytisi"]]},{"id":"NCBITaxon:5206","l":"Cryptococcus","na":1,"nb":295,"a":[["Variovorax_Cryptococcus_Vitamin_Mutualism_Microcosm.html","Variovorax-Cryptococcus Vitamin Cross-Feeding Microcosm"]],"b":[["NCBITaxon%3A552467","Cryptococcus bacillisporus"],["NCBITaxon%3A1296109","Cryptococcus bacillisporus CA1280"],["NCBITaxon%3A1296111","Cryptococcus bacillisporus CA1873"],["NCBITaxon%3A1347779","Cryptococcus bacillisporus VGIIIa Mating type alpha"],["NCBITaxon%3A2011032","Cryptococcus cf. gattii"],["NCBITaxon%3A1859122","Cryptococcus decagattii"]]},{"id":"NCBITaxon:766764","l":"Debaryomycetaceae","na":1,"nb":293,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["NCBITaxon%3A43968","Aciculoconidium aculeatum"],["NCBITaxon%3A45518","Yamadazyma aaseri"],["NCBITaxon%3A241526","Candida africana"],["NCBITaxon%3A5476","Candida albicans"],["NCBITaxon%3A1182531","Candida albicans 3153A"],["NCBITaxon%3A148631","[Candida] anglica"]]},{"id":"NCBITaxon:5073","l":"Penicillium","na":1,"nb":290,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["NCBITaxon%3A70094","Penicillium adametzioides"],["NCBITaxon%3A36650","Penicillium aethiopicum"],["NCBITaxon%3A74831","Penicillium albocoremium"],["NCBITaxon%3A1324773","Penicillium alexiae"],["NCBITaxon%3A2998136","Penicillium allaniae"],["NCBITaxon%3A1459053","Penicillium allii"]]},{"id":"NCBITaxon:252356","l":"Maribacter","na":1,"nb":273,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["NCBITaxon%3A1130723","Maribacter aestuarii"],["NCBITaxon%3A3386272","Maribacter algae"],["NCBITaxon%3A3451875","Maribacter algarum (ex Lu et al. 2025) (nom. illeg.)"],["NCBITaxon%3A2578118","Maribacter algarum (ex Zhang et al. 2020)"],["NCBITaxon%3A2498892","Maribacter algicola"],["NCBITaxon%3A505250","Maribacter antarcticus"]]},{"id":"NCBITaxon:1243","l":"Leuconostoc","na":1,"nb":271,"a":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["NCBITaxon%3A3236804","Leuconostoc aquikimchii"],["NCBITaxon%3A1252","Leuconostoc carnosum"],["NCBITaxon%3A1229758","Leuconostoc carnosum JB16"],["NCBITaxon%3A1046593","Leuconostoc carnosum KCTC 3525"],["NCBITaxon%3A33964","Leuconostoc citreum"],["NCBITaxon%3A349519","Leuconostoc citreum KM20"]]},{"id":"NCBITaxon:2239","l":"Halobacterium","na":1,"nb":271,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["NCBITaxon%3A2692200","Halobacterium bonnevillei"],["NCBITaxon%3A1407499","Halobacterium hubeiense"],["NCBITaxon%3A355548","Halobacterium jilantaiense"],["NCBITaxon%3A2039234","Halobacterium litoreum"],["NCBITaxon%3A223182","Halobacterium noricense"],["NCBITaxon%3A1341552","Halobacterium rubrum"]]},{"id":"NCBITaxon:1866885","l":"Mycolicibacterium","na":1,"nb":268,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["NCBITaxon%3A2954114","Candidatus Mycolicibacterium alkanivorans"],["NCBITaxon%3A3023370","Mycobacterium antarcticum"],["NCBITaxon%3A2939269","[Mycobacterium] appelbergii"],["NCBITaxon%3A3238985","[Mycobacterium] bulgaricum"],["NCBITaxon%3A3064286","[Mycobacterium] burgundiense"],["NCBITaxon%3A2600579","[Mycobacterium] fortunisiensis"]]},{"id":"NCBITaxon:74030","l":"Roseovarius","na":1,"nb":262,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["NCBITaxon%3A475083","Roseovarius aestuarii"],["NCBITaxon%3A1888910","Roseovarius aestuariivivens"],["NCBITaxon%3A1247867","Roseovarius albus"],["NCBITaxon%3A1678842","Roseovarius algicolus"],["NCBITaxon%3A2211448","Roseovarius amoyensis"],["NCBITaxon%3A1535313","Roseovarius antarcticus"]]},{"id":"NCBITaxon:189779","l":"Nitrospiraceae","na":1,"nb":260,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"]],"b":[["NCBITaxon%3A3692265","Candidatus Inralta sp."],["NCBITaxon%3A3137712","Candidatus Magnetominusculus dajiuhuensis"],["NCBITaxon%3A2914034","Candidatus Magnetominusculus sp. LBB02"],["NCBITaxon%3A1748249","Candidatus Magnetominusculus xianensis"],["NCBITaxon%3A1609970","Candidatus Magnetovum chiemense"],["NCBITaxon%3A995730","Candidatus Magnetovum mohavense"]]},{"id":"NCBITaxon:213121","l":"Desulfobulbaceae","na":1,"nb":260,"a":[["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"]],"b":[["NCBITaxon%3A3101188","Candidatus Desulfatifera sp."],["NCBITaxon%3A2841691","Candidatus Desulfatifera sulfidica"],["NCBITaxon%3A2841692","Candidatus Desulfobia pelagia"],["NCBITaxon%3A2480839","Candidatus Desulfobulbus rimicarensis"],["NCBITaxon%3A2005002","Candidatus Electronema aureum"],["NCBITaxon%3A3036122","Candidatus Electronema halotolerans"]]},{"id":"NCBITaxon:572511","l":"Blautia","na":1,"nb":249,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["NCBITaxon%3A3133036","Blautia acetica"],["NCBITaxon%3A2981783","Blautia acetigignens"],["NCBITaxon%3A2981782","Blautia ammoniilytica"],["NCBITaxon%3A3133153","Blautia aquisgranensis"],["NCBITaxon%3A1912897","Blautia argi"],["NCBITaxon%3A2696678","Blautia brookingsii"]]},{"id":"NCBITaxon:1142","l":"Synechocystis","na":1,"nb":247,"a":[["Dairy_Wastewater_Algal_Cyanobacterial_Cultivation_Panel.html","Dairy Wastewater Algal-Cyanobacterial Cultivation Panel"]],"b":[["NCBITaxon%3A543824","Synechocystis aquatilis"],["NCBITaxon%3A543825","Synechocystis aquatilis 1LT32S04"],["NCBITaxon%3A1443101","Synechocystis aquatilis C23"],["NCBITaxon%3A1443102","Synechocystis aquatilis C25"],["NCBITaxon%3A1417686","Synechocystis aquatilis I13"],["NCBITaxon%3A1417687","Synechocystis aquatilis I14"]]},{"id":"NCBITaxon:46255","l":"Weissella","na":1,"nb":247,"a":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["NCBITaxon%3A253243","uncultured Weissella sp."],["NCBITaxon%3A1505725","Weissella bombi"],["NCBITaxon%3A759620","Weissella ceti"],["NCBITaxon%3A1238674","Weissella ceti NC36"],["NCBITaxon%3A137591","Weissella cibaria"],["NCBITaxon%3A1255594","Weissella cibaria 3385"]]},{"id":"NCBITaxon:171550","l":"Rikenellaceae","na":1,"nb":241,"a":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]],"b":[["NCBITaxon%3A979970","Acetobacteroides hydrogenigenes"],["NCBITaxon%3A1872095","Acetobacteroides sp."],["NCBITaxon%3A2764708","Acetobacteroides sp. MIZ14"],["NCBITaxon%3A2585118","Alistipes communis"],["NCBITaxon%3A2585119","Alistipes dispar"],["NCBITaxon%3A214856","Alistipes finegoldii"]]},{"id":"NCBITaxon:2172","l":"Methanobrevibacter","na":1,"nb":232,"a":[["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["NCBITaxon%3A243898","endosymbiont 'TS1' of Trimyema compressum"],["NCBITaxon%3A120963","Methanobrevibacter acididurans"],["NCBITaxon%3A39441","Methanobrevibacter arboriphilus"],["NCBITaxon%3A1401244","Methanobrevibacter arboriphilus ANOR1"],["NCBITaxon%3A1300164","Methanobrevibacter arboriphilus JCM 13429 = DSM 1125"],["NCBITaxon%3A1293039","Methanobrevibacter arboriphilus JCM 9315"]]},{"id":"NCBITaxon:1219","l":"Prochlorococcus marinus","na":1,"nb":214,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A379362","environmental samples"],["NCBITaxon%3A1219","Prochlorococcus marinus"],["NCBITaxon%3A2724906","Prochlorococcus marinus 150NLHA"],["NCBITaxon%3A2724907","Prochlorococcus marinus 150SLHA"],["NCBITaxon%3A2724908","Prochlorococcus marinus 150SLHB"],["NCBITaxon%3A1041938","Prochlorococcus marinus bv. HNLC1"]]},{"id":"NCBITaxon:375288","l":"Parabacteroides","na":1,"nb":199,"a":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"]],"b":[["NCBITaxon%3A2838720","Candidatus Parabacteroides faecavium"],["NCBITaxon%3A2838721","Candidatus Parabacteroides intestinavium"],["NCBITaxon%3A2838722","Candidatus Parabacteroides intestinigallinarum"],["NCBITaxon%3A2838723","Candidatus Parabacteroides intestinipullorum"],["NCBITaxon%3A2951805","Parabacteroides absconsus"],["NCBITaxon%3A2290935","Parabacteroides acidifaciens"]]},{"id":"NCBITaxon:67812","l":"Candidatus Omnitrophota","na":1,"nb":196,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]],"b":[["NCBITaxon%3A3041132","Candidatus Aadella gelida"],["NCBITaxon%3A1974748","Candidatus Abzuiibacterium crystallinum"],["NCBITaxon%3A3041133","Candidatus Aceula lacicola"],["NCBITaxon%3A3041134","Candidatus Aceula meridiana"],["NCBITaxon%3A3042653","Candidatus Amyimicrobium silvilacustre"],["NCBITaxon%3A3401993","Candidatus Aquincolibacterium aerophilum"]]},{"id":"NCBITaxon:213119","l":"Desulfobacteraceae","na":1,"nb":194,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"]],"b":[["NCBITaxon%3A318481","Algorimarina butyrica"],["NCBITaxon%3A2487131","Candidatus Desulfarcum epimagneticum"],["NCBITaxon%3A2841694","Candidatus Desulfobacula maris"],["NCBITaxon%3A1817353","Candidatus Magnetananas drummondensis"],["NCBITaxon%3A1463558","Candidatus Magnetananas rongchengensis"],["NCBITaxon%3A1817379","Candidatus Magnetananas sp. SF-1"]]},{"id":"NCBITaxon:970","l":"Selenomonas","na":1,"nb":188,"a":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]],"b":[["NCBITaxon%3A60695","Selenomonas lipolytica"],["NCBITaxon%3A135081","Selenomonas flueggei-like sp. clone AH132"],["NCBITaxon%3A230144","Selenomonas genomosp. C1"],["NCBITaxon%3A230145","Selenomonas genomosp. C2"],["NCBITaxon%3A241557","Selenomonas genomosp. P5"],["NCBITaxon%3A326375","Selenomonas genomosp. P6 oral clone MB3_C41"]]},{"id":"NCBITaxon:119532","l":"Microcoleus vaginatus","na":1,"nb":186,"a":[["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]],"b":[["NCBITaxon%3A2290990","Microcoleus cf. vaginatus Ru-6-12"],["NCBITaxon%3A119532","Microcoleus vaginatus"],["NCBITaxon%3A3034630","Microcoleus vaginatus 98"],["NCBITaxon%3A2493238","Microcoleus vaginatus ACT688"],["NCBITaxon%3A3459536","Microcoleus vaginatus APE406"],["NCBITaxon%3A669364","Microcoleus vaginatus ASU LT04"]]},{"id":"NCBITaxon:1253","l":"Pediococcus","na":1,"nb":186,"a":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["NCBITaxon%3A1872398","Aerococcus sp."],["NCBITaxon%3A51665","Aerococcus urinaeequi"],["NCBITaxon%3A1254","Pediococcus acidilactici"],["NCBITaxon%3A563194","Pediococcus acidilactici 7_4"],["NCBITaxon%3A1384067","Pediococcus acidilactici AGR20"],["NCBITaxon%3A1306952","Pediococcus acidilactici D3"]]},{"id":"NCBITaxon:1033","l":"Afipia","na":1,"nb":182,"a":[["Thiocyanate_Afipia_Thiobacillus_Bioreactor_Community.html","Thiocyanate-Degrading Afipia and Thiobacillus Bioreactor Community"]],"b":[["NCBITaxon%3A151414","Afipia birgiae"],["NCBITaxon%3A1197906","Afipia birgiae 34632"],["NCBITaxon%3A56946","Afipia broomeae"],["NCBITaxon%3A883078","Afipia broomeae ATCC 49717"],["NCBITaxon%3A40137","Afipia carboxidovorans"],["NCBITaxon%3A1031710","Afipia carboxidovorans OM4"]]},{"id":"NCBITaxon:28065","l":"Rhodoferax","na":1,"nb":177,"a":[["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"]],"b":[["NCBITaxon%3A3386181","Candidatus Rhodoferax bjergmarkensis"],["NCBITaxon%3A3386182","Candidatus Rhodoferax mariagerensis"],["NCBITaxon%3A3386180","Candidatus Rhodoferax odensensis"],["NCBITaxon%3A3386179","Candidatus Rhodoferax randersensis"],["NCBITaxon%3A81479","Rhodoferax antarcticus"],["NCBITaxon%3A1111071","Rhodoferax antarcticus ANT.BR"]]},{"id":"NCBITaxon:133","l":"Methylocystis","na":1,"nb":168,"a":[["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"]],"b":[["NCBITaxon%3A3118750","Methylocystis borbori"],["NCBITaxon%3A655015","Methylocystis bryophila"],["NCBITaxon%3A29468","Methylocystis echinoides"],["NCBITaxon%3A391905","Methylocystis heyeri"],["NCBITaxon%3A369798","Methylocystis hirsuta"],["NCBITaxon%3A187303","Methylocystis hydrogenophila"]]},{"id":"NCBITaxon:190323","l":"Plantibacter","na":1,"nb":168,"a":[["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A199710","Plantibacter agrosticola (nom. nud.)"],["NCBITaxon%3A272914","Plantibacter auratus"],["NCBITaxon%3A199709","Plantibacter cousiniae (nom. nud.)"],["NCBITaxon%3A199708","Plantibacter elymi (nom. nud.)"],["NCBITaxon%3A150123","Plantibacter flavus"],["NCBITaxon%3A3423918","Plantibacter lichenum"]]},{"id":"NCBITaxon:61434","l":"Dehalococcoides","na":1,"nb":161,"a":[["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["NCBITaxon%3A257449","Dehalococcoides Family A Group"],["NCBITaxon%3A61435","Dehalococcoides mccartyi"],["NCBITaxon%3A243164","Dehalococcoides mccartyi 195"],["NCBITaxon%3A216389","Dehalococcoides mccartyi BAV1"],["NCBITaxon%3A1193806","Dehalococcoides mccartyi BTF08"],["NCBITaxon%3A255470","Dehalococcoides mccartyi CBDB1"]]},{"id":"NCBITaxon:20","l":"Phenylobacterium","na":1,"nb":156,"a":[["Tomato_Oxylipin_SynCom3.html","Tomato Oxylipin-Protective SynCom3"]],"b":[["NCBITaxon%3A1763816","Phenylobacterium aquaticum"],["NCBITaxon%3A457173","Phenylobacterium composti"],["NCBITaxon%3A1122958","Phenylobacterium composti DSM 19425"],["NCBITaxon%3A1298959","Phenylobacterium conjunctum"],["NCBITaxon%3A1914756","Phenylobacterium deserti"],["NCBITaxon%3A279827","Phenylobacterium falsum"]]},{"id":"NCBITaxon:119977","l":"Acidithiobacillus","na":1,"nb":152,"a":[["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"]],"b":[["NCBITaxon%3A2937799","Acidithiobacillus acidisediminis"],["NCBITaxon%3A119978","Acidithiobacillus albertensis"],["NCBITaxon%3A33059","Acidithiobacillus caldus"],["NCBITaxon%3A637389","Acidithiobacillus caldus ATCC 51756"],["NCBITaxon%3A990288","Acidithiobacillus caldus SM-1"],["NCBITaxon%3A3063952","Acidithiobacillus concretivorus"]]},{"id":"NCBITaxon:1134404","l":"Ignavibacteriota","na":1,"nb":150,"a":[["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"]],"b":[["NCBITaxon%3A3879837","Candidatus Tepidaquicellaceae bacterium"],["NCBITaxon%3A3414687","Candidatus Tepidiaquacella proteinivora"],["NCBITaxon%3A3455485","Candidatus Tepidiaquacellales bacterium"],["NCBITaxon%3A1617411","Candidatus Tepidiaquacellales bacterium OLB4/UTCHB1"],["NCBITaxon%3A1617412","Candidatus Tepidiaquacellales bacterium OLB5"],["NCBITaxon%3A1948666","Candidatus Tepidiaquacellales bacterium UBA2330"]]},{"id":"NCBITaxon:441","l":"Gluconobacter","na":1,"nb":143,"a":[["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"]],"b":[["NCBITaxon%3A2662454","Gluconobacter aidae"],["NCBITaxon%3A318683","Gluconobacter albidus"],["NCBITaxon%3A1307944","Gluconobacter albidus NBRC 3250"],["NCBITaxon%3A2728101","Gluconobacter cadivus"],["NCBITaxon%3A1379734","Gluconobacter cerevisiae"],["NCBITaxon%3A38307","Gluconobacter cerinus"]]},{"id":"NCBITaxon:84565","l":"Sodalis","na":1,"nb":139,"a":[["BioModels_MODEL1806250003_Spittlebug_Sulcia_Sodalis.html","BioModels MODEL1806250003 Spittlebug Sulcia-Sodalis Symbiosis"]],"b":[["NCBITaxon%3A2812662","Candidatus Sodalis endolongispinus"],["NCBITaxon%3A1173031","Candidatus Sodalis melophagi"],["NCBITaxon%3A1486991","Candidatus Sodalis pierantonii"],["NCBITaxon%3A2342","Candidatus Sodalis pierantonii str. SOPE"],["NCBITaxon%3A1922216","Candidatus Sodalis sp. SoCistrobi"],["NCBITaxon%3A51226","Glossina austeni S-endosymbiont"]]},{"id":"NCBITaxon:82976","l":"Buttiauxella","na":1,"nb":138,"a":[["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A82977","Buttiauxella agrestis"],["NCBITaxon%3A1006004","Buttiauxella agrestis ATCC 33320"],["NCBITaxon%3A82988","Buttiauxella brennerae"],["NCBITaxon%3A1354251","Buttiauxella brennerae ATCC 51605"],["NCBITaxon%3A2010264","Buttiauxella chrysanthemi"],["NCBITaxon%3A2904524","Buttiauxella cochleicola"]]},{"id":"NCBITaxon:111500","l":"Allomuricauda","na":1,"nb":137,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["NCBITaxon%3A192149","Allomuricauda sp."],["NCBITaxon%3A396072","Allomuricauda sp. 1-5C"],["NCBITaxon%3A501808","Allomuricauda sp. 2PR55-3"],["NCBITaxon%3A287555","Allomuricauda sp. 3IX/A02/243"],["NCBITaxon%3A1701315","Allomuricauda sp. 5M7.13"],["NCBITaxon%3A287532","Allomuricauda sp. 7IX/A01/155"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":1,"nb":124,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["NCBITaxon%3A1748","Acidipropionibacterium acidipropionici"],["NCBITaxon%3A1171373","Acidipropionibacterium acidipropionici ATCC 4875"],["NCBITaxon%3A1750","Arachnia propionica"],["NCBITaxon%3A38288","Corynebacterium genitalium"],["NCBITaxon%3A585529","Corynebacterium genitalium ATCC 33030"],["NCBITaxon%3A1747","Cutibacterium acnes"]]},{"id":"NCBITaxon:2836","l":"Bacillariophyta","na":1,"nb":122,"a":[["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]],"b":[["NCBITaxon%3A451788","Acanthoceras zachariasii"],["NCBITaxon%3A431333","Achnanthidium minutissimum"],["NCBITaxon%3A49231","Actinocyclus curvatulus"],["NCBITaxon%3A265554","Amphora coffeiformis"],["NCBITaxon%3A1155433","Arcocellulus cornucervis"],["NCBITaxon%3A210441","Asterionella formosa"]]},{"id":"NCBITaxon:416","l":"Methylomonas","na":1,"nb":122,"a":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["NCBITaxon%3A1854563","Methylomonas albis"],["NCBITaxon%3A46896","Methylomonas aminofaciens"],["NCBITaxon%3A39771","Methylomonas aurantiaca"],["NCBITaxon%3A2952224","Methylomonas aurea"],["NCBITaxon%3A3045149","Methylomonas defluvii"],["NCBITaxon%3A1538553","Methylomonas denitrificans"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":1,"nb":118,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["NCBITaxon%3A69966","Macrococcoides caseolyticum"],["NCBITaxon%3A1822","Nocardia vaccinii"],["NCBITaxon%3A1210098","Nocardia vaccinii NBRC 15922"],["NCBITaxon%3A1282","Staphylococcus epidermidis"],["NCBITaxon%3A1235440","Staphylococcus epidermidis 12142587"],["NCBITaxon%3A1000590","Staphylococcus epidermidis 14.1.R1.SE"]]},{"id":"NCBITaxon:245876","l":"Nitratireductor","na":1,"nb":116,"a":[["Nitratireductor_Gordonia_Z123_LDPE_Degradation_SynCom.html","Nitratireductor-Gordonia Z123 LDPE-Degradation SynCom"]],"b":[["NCBITaxon%3A1735103","Nitratireductor aestuarii"],["NCBITaxon%3A2448161","Nitratireductor alexandrii"],["NCBITaxon%3A204799","Nitratireductor aquibiodomus"],["NCBITaxon%3A1231185","Nitratireductor aquibiodomus NL21 = JCM 21793"],["NCBITaxon%3A1189611","Nitratireductor aquibiodomus RA22"],["NCBITaxon%3A889300","Nitratireductor aquimarinus"]]},{"id":"NCBITaxon:1935183","l":"Promethearchaeati","na":1,"nb":115,"a":[["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"]],"b":[["NCBITaxon%3A1655639","archaeon Loki2/3"],["NCBITaxon%3A3107042","Candidatus Asgardarchaeales archaeon"],["NCBITaxon%3A3107043","Candidatus Asgardarchaeia archaeon"],["NCBITaxon%3A3163616","Candidatus Asgardarchaeum abyssi"],["NCBITaxon%3A3067292","Candidatus Asgardarchaeum californiense"],["NCBITaxon%3A3101517","Candidatus Asgardarchaeum sp."]]},{"id":"GTDB:s__Citrobacter_freundii","l":"","na":1,"nb":109,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["NCBITaxon%3A546","Citrobacter freundii"],["NCBITaxon%3A1006003","Citrobacter freundii ATCC 8090 = MTCC 1658 = NBRC 12681"],["NCBITaxon%3A3025079","Citrobacter freundii complex sp. 2022EL-00793"],["NCBITaxon%3A2994611","Citrobacter freundii complex sp. 2022EL-00822"],["NCBITaxon%3A2994610","Citrobacter freundii complex sp. 2022EL-00971"],["NCBITaxon%3A2994609","Citrobacter freundii complex sp. 2022EL-00972"]]},{"id":"GTDB:s__Citrobacter_braakii","l":"","na":1,"nb":105,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["NCBITaxon%3A35703","Citrobacter amalonaticus"],["NCBITaxon%3A57706","Citrobacter braakii"],["NCBITaxon%3A546","Citrobacter freundii"],["NCBITaxon%3A2077147","Citrobacter freundii complex sp. CFNIH3"],["NCBITaxon%3A2080671","Citrobacter freundii complex sp. CFNIH5"],["NCBITaxon%3A670484","Citrobacter freundii str. ballerup 7851/39"]]},{"id":"NCBITaxon:255204","l":"Pseudoclavibacter","na":1,"nb":105,"a":[["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"]],"b":[["NCBITaxon%3A272239","Gulosibacter bifidus"],["NCBITaxon%3A272240","Gulosibacter faecalis"],["NCBITaxon%3A272241","Pseudoclavibacter albus"],["NCBITaxon%3A908846","Pseudoclavibacter caeni"],["NCBITaxon%3A587635","Pseudoclavibacter chungangensis"],["NCBITaxon%3A1778590","Pseudoclavibacter endophyticus"]]},{"id":"NCBITaxon:404432","l":"Salinicola","na":1,"nb":103,"a":[["Pelagerythrobacter_Salinicola_PES_Pyrene_Degradation_SynCom.html","Pelagerythrobacter-Salinicola PES Pyrene-Degradation SynCom"]],"b":[["NCBITaxon%3A1541440","Salinicola acroporae"],["NCBITaxon%3A1949082","Salinicola aestuarinus"],["NCBITaxon%3A2916836","Salinicola avicenniae"],["NCBITaxon%3A2606937","Salinicola corii"],["NCBITaxon%3A1949083","Salinicola endophyticus"],["NCBITaxon%3A1949081","Salinicola halimionae"]]},{"id":"NCBITaxon:1501433","l":"Kamptonema","na":1,"nb":101,"a":[["Microalgae_Cyanobacteria_Bioactive_Peptide_Consortia.html","Microalgae-Cyanobacteria Bioactive Peptide Consortia"]],"b":[["NCBITaxon%3A92934","Kamptonema animale"],["NCBITaxon%3A1892029","Kamptonema animale 48et"],["NCBITaxon%3A2930505","Kamptonema animale BEA 0982B"],["NCBITaxon%3A1546116","Kamptonema animale BTA258"],["NCBITaxon%3A1443097","Kamptonema animale C5"],["NCBITaxon%3A499848","Kamptonema animale CCALA 138"]]},{"id":"NCBITaxon:906","l":"Megasphaera","na":1,"nb":98,"a":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]],"b":[["NCBITaxon%3A219650","environmental samples"],["NCBITaxon%3A2981791","Megasphaera butyrica"],["NCBITaxon%3A39029","Megasphaera cerevisiae"],["NCBITaxon%3A1122219","Megasphaera cerevisiae DSM 20462"],["NCBITaxon%3A1981790","Megasphaera cf. elsdenii"],["NCBITaxon%3A1852379","Megasphaera coli"]]},{"id":"NCBITaxon:1434011","l":"Komagataeibacter","na":1,"nb":94,"a":[["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"]],"b":[["NCBITaxon%3A1932662","Komagataeibacter diospyri"],["NCBITaxon%3A33995","Komagataeibacter europaeus"],["NCBITaxon%3A940285","Komagataeibacter europaeus 5P3"],["NCBITaxon%3A940284","Komagataeibacter europaeus LMG 18494"],["NCBITaxon%3A940283","Komagataeibacter europaeus LMG 18890"],["NCBITaxon%3A1234669","Komagataeibacter europaeus NBRC 3261"]]},{"id":"NCBITaxon:76890","l":"Asticcacaulis","na":1,"nb":94,"a":[["Tomato_Oxylipin_SynCom3.html","Tomato Oxylipin-Protective SynCom3"]],"b":[["NCBITaxon%3A2984212","Asticcacaulis aquaticus"],["NCBITaxon%3A347481","Asticcacaulis benevestitus"],["NCBITaxon%3A1121022","Asticcacaulis benevestitus DSM 16100 = ATCC BAA-896"],["NCBITaxon%3A76891","Asticcacaulis biprosthecium"],["NCBITaxon%3A715226","Asticcacaulis biprosthecium C19"],["NCBITaxon%3A3040349","Asticcacaulis carbonis"]]},{"id":"NCBITaxon:1179","l":"Desmonostoc muscorum","na":1,"nb":85,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["NCBITaxon%3A1179","Desmonostoc muscorum"],["NCBITaxon%3A1887616","Desmonostoc muscorum 9a"],["NCBITaxon%3A2493151","Desmonostoc muscorum ACSSI 046"],["NCBITaxon%3A1977323","Desmonostoc muscorum ACSSI 091"],["NCBITaxon%3A1977325","Desmonostoc muscorum ACSSI 149"],["NCBITaxon%3A3735077","Desmonostoc muscorum AUR1017"]]},{"id":"NCBITaxon:145260","l":"Methanothermobacter","na":1,"nb":85,"a":[["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"]],"b":[["NCBITaxon%3A1045764","Methanothermobacter crinale"],["NCBITaxon%3A49339","Methanothermobacter defluvii"],["NCBITaxon%3A145263","Methanothermobacter marburgensis"],["NCBITaxon%3A79929","Methanothermobacter marburgensis str. Marburg"],["NCBITaxon%3A1884223","Methanothermobacter sp."],["NCBITaxon%3A866790","Methanothermobacter sp. CaT2"]]},{"id":"NCBITaxon:56112","l":"Dehalobacter","na":1,"nb":82,"a":[["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]],"b":[["NCBITaxon%3A3401927","Candidatus Dehalobacter alkaniphilus"],["NCBITaxon%3A3683355","Candidatus Dehalobacter sp. J1"],["NCBITaxon%3A55583","Dehalobacter restrictus"],["NCBITaxon%3A871738","Dehalobacter restrictus DSM 9455"],["NCBITaxon%3A1962289","Dehalobacter sp."],["NCBITaxon%3A2070364","Dehalobacter sp. 12DCB1"]]},{"id":"NCBITaxon:16","l":"Methylophilus","na":1,"nb":81,"a":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["NCBITaxon%3A1971610","Methylophilus aquaticus"],["NCBITaxon%3A640084","Methylophilus flavus"],["NCBITaxon%3A214633","Methylophilus freyburgensis"],["NCBITaxon%3A752553","Methylophilus glucosoxydans"],["NCBITaxon%3A45393","Methylophilus leisingeri"],["NCBITaxon%3A640108","Methylophilus luteus"]]},{"id":"NCBITaxon:133925","l":"Olsenella","na":1,"nb":79,"a":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["NCBITaxon%3A2838707","Candidatus Olsenella avicola"],["NCBITaxon%3A2838708","Candidatus Olsenella avistercoris"],["NCBITaxon%3A2838709","Candidatus Olsenella excrementavium"],["NCBITaxon%3A2838710","Candidatus Olsenella excrementigallinarum"],["NCBITaxon%3A2838711","Candidatus Olsenella pullicola"],["NCBITaxon%3A2838712","Candidatus Olsenella pullistercoris"]]},{"id":"NCBITaxon:86795","l":"Marmoricola","na":1,"nb":77,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["NCBITaxon%3A2040280","Marmoricola endophyticus"],["NCBITaxon%3A1645666","Marmoricola silvestris"],["NCBITaxon%3A1692016","Marmoricola soli"],["NCBITaxon%3A1909296","Marmoricola sp."],["NCBITaxon%3A476901","Marmoricola sp. BAC242"],["NCBITaxon%3A1638098","Marmoricola sp. BN130122"]]},{"id":"NCBITaxon:204476","l":"Labrys","na":1,"nb":76,"a":[["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["NCBITaxon%3A400769","Labrys ginsengisoli"],["NCBITaxon%3A298598","Labrys methylaminiphilus"],["NCBITaxon%3A1096091","Labrys methylaminiphilus JLW10"],["NCBITaxon%3A3404917","Labrys methylaminiphilus subsp. lupini"],["NCBITaxon%3A346912","Labrys miyagiensis"],["NCBITaxon%3A217067","Labrys monachus"]]},{"id":"GTDB:s__Bacillus_altitudinis","l":"","na":1,"nb":72,"a":[["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"]],"b":[["NCBITaxon%3A115547","uncultured archaeon"],["NCBITaxon%3A293388","Bacillus aerius"],["NCBITaxon%3A293389","Bacillus aerophilus"],["NCBITaxon%3A293387","Bacillus altitudinis"],["NCBITaxon%3A1178544","Bacillus altitudinis 41KF2b"],["NCBITaxon%3A1326972","Bacillus altitudinis A23-8"]]},{"id":"GTDB:s__Bacillus_safensis","l":"","na":1,"nb":70,"a":[["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"]],"b":[["NCBITaxon%3A1889774","Bacillaceae bacterium"],["NCBITaxon%3A293389","Bacillus aerophilus"],["NCBITaxon%3A1408","Bacillus pumilus"],["NCBITaxon%3A561879","Bacillus safensis"],["NCBITaxon%3A1178541","Bacillus safensis FO-36b"],["NCBITaxon%3A1982610","Bacillus safensis subsp. osmophilus"]]},{"id":"NCBITaxon:862","l":"Syntrophomonas","na":1,"nb":68,"a":[["Waste_Sludge_Electrofermentation_Biofilm_Suspension_Community.html","Waste-Sludge Electro-Fermentation Biofilm-Suspension Community"]],"b":[["NCBITaxon%3A2082","Syntrophomonas bryantii"],["NCBITaxon%3A382673","Syntrophomonas cellicola"],["NCBITaxon%3A231025","Syntrophomonas curvata"],["NCBITaxon%3A264446","Syntrophomonas erecta"],["NCBITaxon%3A1123327","Syntrophomonas erecta DSM 16215"],["NCBITaxon%3A370896","Syntrophomonas erecta subsp. sporosyntropha"]]},{"id":"NCBITaxon:1801631","l":"Microcaldota","na":1,"nb":67,"a":[["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"]],"b":[["NCBITaxon%3A2885744","Candidatus Anstonella stagnisolia"],["NCBITaxon%3A2886383","Candidatus Anstonellaceae archaeon"],["NCBITaxon%3A3058027","Candidatus Anstonellales archaeon"],["NCBITaxon%3A2886391","Candidatus Bilamarchaeaceae archaeon"],["NCBITaxon%3A2885759","Candidatus Bilamarchaeum dharawalense"],["NCBITaxon%3A3070761","Candidatus Bilamarchaeum sp."]]},{"id":"NCBITaxon:171673","l":"Inquilinus","na":1,"nb":65,"a":[["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A363840","Inquilinus ginsengisoli"],["NCBITaxon%3A171674","Inquilinus limosus"],["NCBITaxon%3A1122125","Inquilinus limosus DSM 16000"],["NCBITaxon%3A1398085","Inquilinus limosus MP06"],["NCBITaxon%3A1932117","Inquilinus sp."],["NCBITaxon%3A3232975","Inquilinus sp. 2KB_12"]]},{"id":"NCBITaxon:12960","l":"Azoarcus","na":1,"nb":64,"a":[["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"]],"b":[["NCBITaxon%3A90060","Aromatoleum toluolicum"],["NCBITaxon%3A29545","Azoarcus indigens"],["NCBITaxon%3A418699","Azoarcus olearius"],["NCBITaxon%3A29544","Azoarcus sp."],["NCBITaxon%3A2303328","Azoarcus sp. Aa7"],["NCBITaxon%3A356841","Azoarcus sp. AN21"]]},{"id":"NCBITaxon:429","l":"Methylobacter","na":1,"nb":61,"a":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["NCBITaxon%3A2707345","Candidatus Methylobacter favarea"],["NCBITaxon%3A2497749","Candidatus Methylobacter oryzae"],["NCBITaxon%3A3053457","Candidatus Methylobacter titanis"],["NCBITaxon%3A3230117","Methylobacter arcticus"],["NCBITaxon%3A29425","Methylobacter bovis"],["NCBITaxon%3A430","Methylobacter capsulatus"]]},{"id":"NCBITaxon:832","l":"Fibrobacter","na":1,"nb":61,"a":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]],"b":[["NCBITaxon%3A28122","Fibrobacter intestinalis"],["NCBITaxon%3A35828","Fibrobacter sp."],["NCBITaxon%3A3239812","Fibrobacter sp. HC4"],["NCBITaxon%3A1200546","Fibrobacter sp. RM1"],["NCBITaxon%3A1946526","Fibrobacter sp. UBA1313"],["NCBITaxon%3A1946527","Fibrobacter sp. UBA1717"]]},{"id":"GTDB:s__Lacticaseibacillus_paracasei","l":"","na":1,"nb":60,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["NCBITaxon%3A1582","Lacticaseibacillus casei"],["NCBITaxon%3A1051650","Lacticaseibacillus casei 12A"],["NCBITaxon%3A1051651","Lacticaseibacillus casei 21/1"],["NCBITaxon%3A1051653","Lacticaseibacillus casei A2-362"],["NCBITaxon%3A1423732","Lacticaseibacillus casei DSM 20011 = JCM 1134 = ATCC 393"],["NCBITaxon%3A1051661","Lacticaseibacillus casei UW4"]]},{"id":"NCBITaxon:36853","l":"Desulfitobacterium","na":1,"nb":60,"a":[["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]],"b":[["NCBITaxon%3A51616","Desulfitobacterium chlororespirans"],["NCBITaxon%3A1121395","Desulfitobacterium chlororespirans DSM 11544"],["NCBITaxon%3A36854","Desulfitobacterium dehalogenans"],["NCBITaxon%3A756499","Desulfitobacterium dehalogenans ATCC 51507"],["NCBITaxon%3A233055","Desulfitobacterium dichloroeliminans"],["NCBITaxon%3A871963","Desulfitobacterium dichloroeliminans LMG P-21439"]]},{"id":"NCBITaxon:34067","l":"Cycloclasticus","na":1,"nb":59,"a":[["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"]],"b":[["NCBITaxon%3A1871189","Cycloclasticus endosymbiont of Bathymodiolus heckerae"],["NCBITaxon%3A1871190","Cycloclasticus endosymbiont of sponge"],["NCBITaxon%3A46457","Cycloclasticus oligotrophus"],["NCBITaxon%3A34068","Cycloclasticus pugetii"],["NCBITaxon%3A655438","Cycloclasticus pugetii PS-1"],["NCBITaxon%3A2024830","Cycloclasticus sp."]]},{"id":"NCBITaxon:316612","l":"Methylibium","na":1,"nb":57,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["NCBITaxon%3A105560","Methylibium petroleiphilum"],["NCBITaxon%3A420662","Methylibium petroleiphilum PM1"],["NCBITaxon%3A2570323","Methylibium rhizosphaerae"],["NCBITaxon%3A2067992","Methylibium sp."],["NCBITaxon%3A1454797","Methylibium sp. B17"],["NCBITaxon%3A471602","Methylibium sp. BAC113P"]]},{"id":"NCBITaxon:49082","l":"Candidatus Neoarthromitus","na":1,"nb":57,"a":[["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["NCBITaxon%3A2666074","Candidatus Arthromitus sp. GSU"],["NCBITaxon%3A2608943","Candidatus Arthromitus sp. M17"],["NCBITaxon%3A2608944","Candidatus Arthromitus sp. M18"],["NCBITaxon%3A2608945","Candidatus Arthromitus sp. M19"],["NCBITaxon%3A2608946","Candidatus Arthromitus sp. M20"],["NCBITaxon%3A2608947","Candidatus Arthromitus sp. M21"]]},{"id":"GTDB:s__Bradyrhizobium_barranii","l":"","na":1,"nb":56,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"]],"b":[["NCBITaxon%3A2992140","Bradyrhizobium barranii"],["NCBITaxon%3A2819348","Bradyrhizobium barranii subsp. apii"],["NCBITaxon%3A2823807","Bradyrhizobium barranii subsp. barranii"],["NCBITaxon%3A29448","Bradyrhizobium elkanii"],["NCBITaxon%3A375","Bradyrhizobium japonicum"],["NCBITaxon%3A1128253","Bradyrhizobium japonicum CCBAU 15354"]]},{"id":"NCBITaxon:1185873","l":"Desertifilum tharense","na":1,"nb":56,"a":[["Dairy_Wastewater_Algal_Cyanobacterial_Cultivation_Panel.html","Dairy Wastewater Algal-Cyanobacterial Cultivation Panel"]],"b":[["NCBITaxon%3A2841059","Desertifilum dzianense Am4"],["NCBITaxon%3A2219545","Desertifilum dzianense PMC 871.14"],["NCBITaxon%3A2162620","Desertifilum dzianense PMC 872.14"],["NCBITaxon%3A2219546","Desertifilum dzianense PMC 873.14"],["NCBITaxon%3A2219547","Desertifilum dzianense PMC 874.14"],["NCBITaxon%3A2219548","Desertifilum dzianense PMC 875.14"]]},{"id":"NCBITaxon:1597","l":"Lacticaseibacillus paracasei","na":1,"nb":56,"a":[["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["NCBITaxon%3A1582","Lacticaseibacillus casei"],["NCBITaxon%3A1597","Lacticaseibacillus paracasei"],["NCBITaxon%3A321967","Lacticaseibacillus paracasei ATCC 334"],["NCBITaxon%3A1226299","Lacticaseibacillus paracasei COM0101"],["NCBITaxon%3A1446494","Lacticaseibacillus paracasei N1115"],["NCBITaxon%3A1435038","Lacticaseibacillus paracasei NRIC 0644"]]},{"id":"NCBITaxon:1165","l":"Anabaena cylindrica","na":1,"nb":51,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["NCBITaxon%3A136078","Anabaena cf. cylindrica 133"],["NCBITaxon%3A2716356","Anabaena cf. cylindrica BACA0067"],["NCBITaxon%3A136079","Anabaena cf. cylindrica PMC9705"],["NCBITaxon%3A264675","Anabaena cf. cylindrica XP6B"],["NCBITaxon%3A1165","Anabaena cylindrica"],["NCBITaxon%3A425377","Anabaena cylindrica A621"]]},{"id":"GTDB:s__Bacillus_licheniformis","l":"","na":1,"nb":50,"a":[["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A1402","Bacillus licheniformis"],["NCBITaxon%3A1169411","Bacillus licheniformis 10-1-A"],["NCBITaxon%3A1169412","Bacillus licheniformis 5-2-D"],["NCBITaxon%3A1368424","Bacillus licheniformis CG-B52"],["NCBITaxon%3A1232672","Bacillus licheniformis CGMCC 3963"]]},{"id":"NCBITaxon:96","l":"Gallionella","na":1,"nb":50,"a":[["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"]],"b":[["NCBITaxon%3A1796491","Candidatus Gallionella acididurans"],["NCBITaxon%3A370405","Gallionella capsiferriformans"],["NCBITaxon%3A395494","Gallionella capsiferriformans ES-2"],["NCBITaxon%3A97","Gallionella ferruginea"],["NCBITaxon%3A2052161","Gallionella sp."],["NCBITaxon%3A572946","Gallionella sp. enrichment culture clone B15"]]},{"id":"NCBITaxon:179","l":"Leptospirillum","na":1,"nb":48,"a":[["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["NCBITaxon%3A178606","Leptospirillum ferriphilum"],["NCBITaxon%3A1048260","Leptospirillum ferriphilum ML-04"],["NCBITaxon%3A1441628","Leptospirillum ferriphilum YSK"],["NCBITaxon%3A412449","Leptospirillum ferrodiazotrophum"],["NCBITaxon%3A180","Leptospirillum ferrooxidans"],["NCBITaxon%3A1162668","Leptospirillum ferrooxidans C2-3"]]},{"id":"NCBITaxon:327159","l":"Candidatus Accumulibacter","na":1,"nb":47,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"]],"b":[["NCBITaxon%3A2053492","Accumulibacter sp."],["NCBITaxon%3A1860102","Candidatus Accumulibacter aalborgensis"],["NCBITaxon%3A2954378","Candidatus Accumulibacter adiacens"],["NCBITaxon%3A1454001","Candidatus Accumulibacter adjunctus"],["NCBITaxon%3A2954384","Candidatus Accumulibacter affinis"],["NCBITaxon%3A1454003","Candidatus Accumulibacter appositus"]]},{"id":"NCBITaxon:68288","l":"Cyclobacterium","na":1,"nb":46,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["NCBITaxon%3A320787","Cyclobacterium amurskyense"],["NCBITaxon%3A1235754","Cyclobacterium caenipelagi"],["NCBITaxon%3A708087","Cyclobacterium jeungdonense"],["NCBITaxon%3A388280","Cyclobacterium lianum"],["NCBITaxon%3A104","Cyclobacterium marinum"],["NCBITaxon%3A880070","Cyclobacterium marinum DSM 745"]]},{"id":"NCBITaxon:2740557","l":"Pauljensenia","na":1,"nb":45,"a":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["NCBITaxon%3A178339","Pauljensenia hongkongensis"],["NCBITaxon%3A883071","Pauljensenia hongkongensis FB160-CNA-8"],["NCBITaxon%3A2953801","Pauljensenia sp."],["NCBITaxon%3A3003692","Pauljensenia sp. 20925_1_25"],["NCBITaxon%3A3003675","Pauljensenia sp. 20925_1_27"],["NCBITaxon%3A3003674","Pauljensenia sp. 20925_1_34"]]},{"id":"NCBITaxon:893","l":"Desulfobulbus","na":1,"nb":45,"a":[["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"]],"b":[["NCBITaxon%3A2480839","Candidatus Desulfobulbus rimicarensis"],["NCBITaxon%3A869814","Desulfobulbus alkaliphilus"],["NCBITaxon%3A53332","Desulfobulbus elongatus"],["NCBITaxon%3A1121402","Desulfobulbus elongatus DSM 2908"],["NCBITaxon%3A1909699","Desulfobulbus oligotrophicus"],["NCBITaxon%3A1986146","Desulfobulbus oralis"]]},{"id":"NCBITaxon:904","l":"Acidaminococcus","na":1,"nb":45,"a":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["NCBITaxon%3A905","Acidaminococcus fermentans"],["NCBITaxon%3A591001","Acidaminococcus fermentans DSM 20731"],["NCBITaxon%3A2897706","Acidaminococcus hominis"],["NCBITaxon%3A187327","Acidaminococcus intestini"],["NCBITaxon%3A1263033","Acidaminococcus intestini CAG:325"],["NCBITaxon%3A1120921","Acidaminococcus intestini DSM 21505"]]},{"id":"NCBITaxon:1033997","l":"Nitrososphaeraceae","na":1,"nb":44,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"]],"b":[["NCBITaxon%3A2563600","Candidatus Nitrosocosmicus agrestis"],["NCBITaxon%3A2035267","Candidatus Nitrosocosmicus arcticus"],["NCBITaxon%3A1798806","Candidatus Nitrosocosmicus franklandianus"],["NCBITaxon%3A1826872","Candidatus Nitrosocosmicus hydrocola"],["NCBITaxon%3A1353260","Candidatus Nitrosocosmicus oleophilus"],["NCBITaxon%3A2109671","Candidatus Nitrosocosmicus sp."]]},{"id":"NCBITaxon:5094","l":"Talaromyces","na":1,"nb":44,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["NCBITaxon%3A36649","Talaromyces aculeatus"],["NCBITaxon%3A1392253","Talaromyces aculeatus ATCC 10409"],["NCBITaxon%3A1974180","Talaromyces adpressus"],["NCBITaxon%3A1196081","Talaromyces amestolkiae"],["NCBITaxon%3A1441469","Talaromyces atroroseus"],["NCBITaxon%3A36052","Talaromyces bacillisporus"]]},{"id":"NCBITaxon:414878","l":"Catenulispora","na":1,"nb":40,"a":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"]],"b":[["NCBITaxon%3A234199","bacterium Ellin5062"],["NCBITaxon%3A234202","bacterium Ellin5116"],["NCBITaxon%3A234203","bacterium Ellin5119"],["NCBITaxon%3A304895","Catenulispora acidiphila"],["NCBITaxon%3A479433","Catenulispora acidiphila DSM 44928"],["NCBITaxon%3A436228","Catenulispora cavernae"]]},{"id":"NCBITaxon:641853","l":"Elusimicrobia","na":1,"nb":40,"a":[["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"]],"b":[["NCBITaxon%3A3416221","Candidatus Avelusimicrobium alvi"],["NCBITaxon%3A3416206","Candidatus Avelusimicrobium aviculae"],["NCBITaxon%3A3416215","Candidatus Avelusimicrobium bubulum"],["NCBITaxon%3A3416220","Candidatus Avelusimicrobium caledoniensis"],["NCBITaxon%3A1947906","Candidatus Avelusimicrobium cornigerorum"],["NCBITaxon%3A2840689","Candidatus Avelusimicrobium excrementipullorum"]]},{"id":"NCBITaxon:354354","l":"Niastella","na":1,"nb":39,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["NCBITaxon%3A2569763","Niastella caeni"],["NCBITaxon%3A1542731","Niastella gongjuensis"],["NCBITaxon%3A1781166","Niastella hibisci"],["NCBITaxon%3A354356","Niastella koreensis"],["NCBITaxon%3A700598","Niastella koreensis GR20-10"],["NCBITaxon%3A550983","Niastella populi"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli K-12","na":1,"nb":39,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["NCBITaxon%3A679895","Escherichia coli BW25113"],["NCBITaxon%3A595496","Escherichia coli BW2952"],["NCBITaxon%3A1318715","Escherichia coli BW38028"],["NCBITaxon%3A1245474","Escherichia coli ER2796"],["NCBITaxon%3A83333","Escherichia coli K-12"],["NCBITaxon%3A527799","Escherichia coli LW1655F+"]]},{"id":"GTDB:s__Lacticaseibacillus_rhamnosus","l":"","na":1,"nb":38,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["NCBITaxon%3A47715","Lacticaseibacillus rhamnosus"],["NCBITaxon%3A1381116","Lacticaseibacillus rhamnosus 2166"],["NCBITaxon%3A1408180","Lacticaseibacillus rhamnosus 51B"],["NCBITaxon%3A1002365","Lacticaseibacillus rhamnosus ATCC 21052"],["NCBITaxon%3A1088720","Lacticaseibacillus rhamnosus ATCC 8530"],["NCBITaxon%3A1078018","Lacticaseibacillus rhamnosus CASL"]]},{"id":"NCBITaxon:28037","l":"Streptococcus mitis","na":1,"nb":38,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1660","Schaalia odontolytica"],["NCBITaxon%3A45634","Streptococcus cristatus"],["NCBITaxon%3A1302863","Streptococcus cristatus AS 1.3089"],["NCBITaxon%3A1302","Streptococcus gordonii"],["NCBITaxon%3A28037","Streptococcus mitis"],["NCBITaxon%3A1239792","Streptococcus mitis 11/5"]]},{"id":"NCBITaxon:47715","l":"Lacticaseibacillus rhamnosus","na":1,"nb":38,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["NCBITaxon%3A1597","Lacticaseibacillus paracasei"],["NCBITaxon%3A47715","Lacticaseibacillus rhamnosus"],["NCBITaxon%3A1381116","Lacticaseibacillus rhamnosus 2166"],["NCBITaxon%3A1408180","Lacticaseibacillus rhamnosus 51B"],["NCBITaxon%3A1002365","Lacticaseibacillus rhamnosus ATCC 21052"],["NCBITaxon%3A1088720","Lacticaseibacillus rhamnosus ATCC 8530"]]},{"id":"GTDB:s__Comamonas_tsuruhatensis","l":"","na":1,"nb":37,"a":[["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["NCBITaxon%3A2030806","Burkholderiaceae bacterium"],["NCBITaxon%3A1871071","Comamonadaceae bacterium"],["NCBITaxon%3A80866","Delftia acidovorans"],["NCBITaxon%3A883100","Delftia acidovorans CCUG 15835"],["NCBITaxon%3A883101","Delftia acidovorans CCUG 274B"],["NCBITaxon%3A558537","Delftia lacustris"]]},{"id":"NCBITaxon:33849","l":"Bacillariophyceae","na":1,"nb":37,"a":[["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"]],"b":[["NCBITaxon%3A431333","Achnanthidium minutissimum"],["NCBITaxon%3A265554","Amphora coffeiformis"],["NCBITaxon%3A1550372","Biremis ambigua"],["NCBITaxon%3A1486917","Craspedostauros australis"],["NCBITaxon%3A2856","Cylindrotheca closterium"],["NCBITaxon%3A2853","Cylindrotheca fusiformis"]]},{"id":"GTDB:s__Agrobacterium_tumefaciens","l":"","na":1,"nb":36,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"]],"b":[["NCBITaxon%3A1183421","Agrobacterium fabacearum CFBP 5771"],["NCBITaxon%3A1300224","Agrobacterium fabacearum P4"],["NCBITaxon%3A1183429","Agrobacterium fabacearum S56"],["NCBITaxon%3A1183430","Agrobacterium fabacearum TT111"],["NCBITaxon%3A361","Agrobacterium sp."],["NCBITaxon%3A1150775","Agrobacterium sp. 10MFCol1.1"]]},{"id":"GTDB:s__Pantoea_agglomerans","l":"","na":1,"nb":36,"a":[["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["NCBITaxon%3A115547","uncultured archaeon"],["NCBITaxon%3A221276","[Curtobacterium] plantarum"],["NCBITaxon%3A3376138","Curtobacterium sp. BNK-1"],["NCBITaxon%3A549","Pantoea agglomerans"],["NCBITaxon%3A1408177","Pantoea agglomerans Eh318"],["NCBITaxon%3A1110694","Pantoea agglomerans IG1"]]},{"id":"NCBITaxon:399320","l":"Sphaerochaeta","na":1,"nb":36,"a":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]],"b":[["NCBITaxon%3A1129264","Sphaerochaeta associata"],["NCBITaxon%3A1945881","Sphaerochaeta dissipatitropha"],["NCBITaxon%3A1131703","Sphaerochaeta globosa"],["NCBITaxon%3A158189","Sphaerochaeta globosa str. Buddy"],["NCBITaxon%3A2293840","Sphaerochaeta halotolerans"],["NCBITaxon%3A1131707","Sphaerochaeta pleomorpha"]]},{"id":"NCBITaxon:1303","l":"Streptococcus oralis","na":1,"nb":35,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A68892","Streptococcus infantis"],["NCBITaxon%3A768726","Streptococcus mitis bv. 2 str. F0392"],["NCBITaxon%3A1000588","Streptococcus mitis bv. 2 str. SK95"],["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A655813","Streptococcus oralis ATCC 35037"],["NCBITaxon%3A888049","Streptococcus oralis ATCC 49296"]]},{"id":"NCBITaxon:1462422","l":"Candidatus Parvarchaeota","na":1,"nb":35,"a":[["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"]],"b":[["NCBITaxon%3A2898728","Candidatus Acidifodinimicrobium mancum"],["NCBITaxon%3A3101490","Candidatus Acidifodinimicrobium sp."],["NCBITaxon%3A2077140","Candidatus Parvarchaeota archaeon"],["NCBITaxon%3A1955627","Candidatus Parvarchaeota archaeon JGI 005-G06"],["NCBITaxon%3A2738730","Candidatus Parvarchaeota archaeon JGI 005-H17"],["NCBITaxon%3A2738731","Candidatus Parvarchaeota archaeon JGI 006-E12"]]},{"id":"NCBITaxon:146918","l":"Salinibacter","na":1,"nb":35,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["NCBITaxon%3A3040383","Candidatus Salinibacter abyssi"],["NCBITaxon%3A3040384","Candidatus Salinibacter pampae"],["NCBITaxon%3A90337","halophilic eubacterium EHB"],["NCBITaxon%3A97298","halophilic eubacterium EHB-2"],["NCBITaxon%3A97297","halophilic eubacterium EHB-3"],["NCBITaxon%3A97295","halophilic eubacterium EHB-4"]]},{"id":"NCBITaxon:28261","l":"Thermodesulfovibrio","na":1,"nb":34,"a":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]],"b":[["NCBITaxon%3A86166","Thermodesulfovibrio aggregans"],["NCBITaxon%3A1295128","Thermodesulfovibrio aggregans JCM 13213"],["NCBITaxon%3A3118333","Thermodesulfovibrio autotrophicus"],["NCBITaxon%3A412896","Thermodesulfovibrio hydrogeniphilus"],["NCBITaxon%3A1123374","Thermodesulfovibrio hydrogeniphilus DSM 18151"],["NCBITaxon%3A1123375","Thermodesulfovibrio islandicus DSM 12570"]]},{"id":"NCBITaxon:1021","l":"Beggiatoa","na":1,"nb":33,"a":[["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"]],"b":[["NCBITaxon%3A1022","Beggiatoa alba"],["NCBITaxon%3A395493","Beggiatoa alba B18LD"],["NCBITaxon%3A288004","Beggiatoa leptomitoformis"],["NCBITaxon%3A1962953","Beggiatoa sp."],["NCBITaxon%3A1579656","Beggiatoa sp. 11.1"],["NCBITaxon%3A1579657","Beggiatoa sp. 13.1"]]},{"id":"NCBITaxon:1584","l":"Lactobacillus delbrueckii","na":1,"nb":33,"a":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"]],"b":[["NCBITaxon%3A35783","Enterococcus sp."],["NCBITaxon%3A47715","Lacticaseibacillus rhamnosus"],["NCBITaxon%3A2775876","Lacticaseibacillus sp."],["NCBITaxon%3A1579","Lactobacillus acidophilus"],["NCBITaxon%3A1584","Lactobacillus delbrueckii"],["NCBITaxon%3A1050107","Lactobacillus delbrueckii subsp. allosunkii"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":1,"nb":33,"a":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"]],"b":[["NCBITaxon%3A85698","Achromobacter xylosoxidans"],["NCBITaxon%3A152480","Burkholderia ambifaria"],["NCBITaxon%3A179879","Burkholderia anthina"],["NCBITaxon%3A488730","Burkholderia arboris"],["NCBITaxon%3A95486","Burkholderia cenocepacia"],["NCBITaxon%3A292","Burkholderia cepacia"]]},{"id":"NCBITaxon:63743","l":"Natronomonas","na":1,"nb":33,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["NCBITaxon%3A3108498","Natronomonas amylolytica"],["NCBITaxon%3A2841590","Natronomonas aquatica"],["NCBITaxon%3A1046043","Natronomonas gomsonensis"],["NCBITaxon%3A2747817","Natronomonas halophila"],["NCBITaxon%3A2961939","Natronomonas marina"],["NCBITaxon%3A416273","Natronomonas moolapensis"]]},{"id":"GTDB:s__Paenibacillus_polymyxa_B","l":"","na":1,"nb":32,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"]],"b":[["NCBITaxon%3A114136","Paenibacillus jamilae"],["NCBITaxon%3A59893","Paenibacillus peoriae"],["NCBITaxon%3A1406","Paenibacillus polymyxa"],["NCBITaxon%3A1429244","Paenibacillus polymyxa CR1"],["NCBITaxon%3A349520","Paenibacillus polymyxa E681"],["NCBITaxon%3A1333862","Paenibacillus polymyxa TD94"]]},{"id":"NCBITaxon:1582","l":"Lacticaseibacillus casei","na":1,"nb":32,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["NCBITaxon%3A1582","Lacticaseibacillus casei"],["NCBITaxon%3A1051650","Lacticaseibacillus casei 12A"],["NCBITaxon%3A1051651","Lacticaseibacillus casei 21/1"],["NCBITaxon%3A1051652","Lacticaseibacillus casei 32G"],["NCBITaxon%3A1378069","Lacticaseibacillus casei 5b"],["NCBITaxon%3A1051653","Lacticaseibacillus casei A2-362"]]},{"id":"GTDB:s__Acinetobacter_johnsonii","l":"","na":1,"nb":31,"a":[["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["NCBITaxon%3A115547","uncultured archaeon"],["NCBITaxon%3A40214","Acinetobacter johnsonii"],["NCBITaxon%3A1217662","Acinetobacter johnsonii ANC 3681"],["NCBITaxon%3A1217663","Acinetobacter johnsonii CIP 64.6"],["NCBITaxon%3A575586","Acinetobacter johnsonii SH046"],["NCBITaxon%3A1221300","Acinetobacter johnsonii TG19605"]]},{"id":"NCBITaxon:2571160","l":"Trinickia","na":1,"nb":31,"a":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]],"b":[["NCBITaxon%3A2767482","Trinickia acidisoli"],["NCBITaxon%3A3136562","Trinickia camelliae"],["NCBITaxon%3A28094","Trinickia caryophylli"],["NCBITaxon%3A564714","Trinickia dabaoshanensis"],["NCBITaxon%3A2292265","Trinickia diaoshuihuensis"],["NCBITaxon%3A2291023","Trinickia dinghuensis"]]},{"id":"NCBITaxon:2375","l":"Sporomusa","na":1,"nb":30,"a":[["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["NCBITaxon%3A112900","Sporomusa acidovorans"],["NCBITaxon%3A1123286","Sporomusa acidovorans DSM 3132"],["NCBITaxon%3A204936","Sporomusa aerivorans"],["NCBITaxon%3A3076075","Sporomusa carbonis"],["NCBITaxon%3A316996","Sporomusa intestinalis"],["NCBITaxon%3A112901","Sporomusa malonica"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":1,"nb":29,"a":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]],"b":[["NCBITaxon%3A1579","Lactobacillus acidophilus"],["NCBITaxon%3A47770","Lactobacillus crispatus"],["NCBITaxon%3A575595","Lactobacillus crispatus 125-2-CHN"],["NCBITaxon%3A1381118","Lactobacillus crispatus 2029"],["NCBITaxon%3A679188","Lactobacillus crispatus 214-1"],["NCBITaxon%3A440496","Lactobacillus crispatus CTV-05"]]},{"id":"GTDB:s__Prochlorococcus_A_pastoris","l":"","na":1,"nb":28,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A1219","Prochlorococcus marinus"],["NCBITaxon%3A190047","Prochlorococcus marinus str. EQPAC1"],["NCBITaxon%3A142479","Prochlorococcus marinus subsp. pastoris"],["NCBITaxon%3A59919","Prochlorococcus marinus subsp. pastoris str. CCMP1986"],["NCBITaxon%3A1220","Prochlorococcus sp."],["NCBITaxon%3A2162458","Prochlorococcus sp. AG-335-J19"]]},{"id":"NCBITaxon:1107","l":"Chloroflexus","na":1,"nb":28,"a":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]],"b":[["NCBITaxon%3A152260","Chloroflexus aggregans"],["NCBITaxon%3A326427","Chloroflexus aggregans DSM 9485"],["NCBITaxon%3A1108","Chloroflexus aurantiacus"],["NCBITaxon%3A324602","Chloroflexus aurantiacus J-10-fl"],["NCBITaxon%3A480224","Chloroflexus aurantiacus Y-400-fl"],["NCBITaxon%3A1707952","Chloroflexus islandicus"]]},{"id":"GTDB:s__Citrobacter_werkmanii","l":"","na":1,"nb":27,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["NCBITaxon%3A1748967","Citrobacter cronae"],["NCBITaxon%3A546","Citrobacter freundii"],["NCBITaxon%3A1333848","Citrobacter freundii CFNIH1"],["NCBITaxon%3A1896336","Citrobacter sp."],["NCBITaxon%3A2769344","Citrobacter sp. C5_2"],["NCBITaxon%3A2985036","Citrobacter sp. Cc067"]]},{"id":"NCBITaxon:1680","l":"Bifidobacterium adolescentis","na":1,"nb":27,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]],"b":[["NCBITaxon%3A1680","Bifidobacterium adolescentis"],["NCBITaxon%3A367928","Bifidobacterium adolescentis ATCC 15703"],["NCBITaxon%3A1263057","Bifidobacterium adolescentis CAG:119"],["NCBITaxon%3A1410644","Bifidobacterium adolescentis DSM 20087"],["NCBITaxon%3A1437612","Bifidobacterium adolescentis JCM 15918"],["NCBITaxon%3A411481","Bifidobacterium adolescentis L2-32"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":27,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["NCBITaxon%3A57706","Citrobacter braakii"],["NCBITaxon%3A1914243","Citrobacter europaeus"],["NCBITaxon%3A546","Citrobacter freundii"],["NCBITaxon%3A1173724","Citrobacter freundii 47N"],["NCBITaxon%3A742730","Citrobacter freundii 4_7_47CFAA"],["NCBITaxon%3A1444046","Citrobacter freundii 5-172-05_S1_C1"]]},{"id":"GTDB:s__Comamonas_acidovorans","l":"","na":1,"nb":26,"a":[["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A2035215","Burkholderiales bacterium 23"],["NCBITaxon%3A80866","Delftia acidovorans"],["NCBITaxon%3A1218107","Delftia acidovorans NBRC 14950"],["NCBITaxon%3A398578","Delftia acidovorans SPH-1"],["NCBITaxon%3A1651218","Delftia deserti"]]},{"id":"GTDB:s__Pantoea_ananatis","l":"","na":1,"nb":25,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["NCBITaxon%3A1849603","Enterobacteriaceae bacterium"],["NCBITaxon%3A549","Pantoea agglomerans"],["NCBITaxon%3A574096","Pantoea allii"],["NCBITaxon%3A553","Pantoea ananatis"],["NCBITaxon%3A1419326","Pantoea ananatis 15320"],["NCBITaxon%3A932677","Pantoea ananatis AJ13355"]]},{"id":"NCBITaxon:135461","l":"Bacillus subtilis subsp. subtilis","na":1,"nb":25,"a":[["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["NCBITaxon%3A1390","Bacillus amyloliquefaciens"],["NCBITaxon%3A1452","Bacillus atrophaeus"],["NCBITaxon%3A640707","Bacillus atrophaeus ATCC 9372"],["NCBITaxon%3A96241","Bacillus spizizenii"],["NCBITaxon%3A1423","Bacillus subtilis"],["NCBITaxon%3A135461","Bacillus subtilis subsp. subtilis"]]},{"id":"NCBITaxon:2138240","l":"Coprothermobacterota","na":1,"nb":25,"a":[["Thermophilic_ExSitu_Biomethanation_Mixed_Culture.html","Thermophilic Ex-Situ Biomethanation Mixed Culture"]],"b":[["NCBITaxon%3A108819","Coprothermobacter platensis"],["NCBITaxon%3A1259795","Coprothermobacter platensis DSM 11748"],["NCBITaxon%3A35786","Coprothermobacter proteolyticus"],["NCBITaxon%3A309798","Coprothermobacter proteolyticus DSM 5265"],["NCBITaxon%3A55509","Coprothermobacter sp."],["NCBITaxon%3A187079","Coprothermobacter sp. BHI60-1"]]},{"id":"NCBITaxon:359407","l":"Methylotenera","na":1,"nb":25,"a":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["NCBITaxon%3A3844326","Methylotenera hypolimnetica (SeqCode)"],["NCBITaxon%3A359408","Methylotenera mobilis"],["NCBITaxon%3A1132855","Methylotenera mobilis 13"],["NCBITaxon%3A583345","Methylotenera mobilis JLW8"],["NCBITaxon%3A2080758","Methylotenera oryzisoli"],["NCBITaxon%3A3844325","Methylotenera profunda (SeqCode)"]]},{"id":"GTDB:s__Prochlorococcus_A_sp001989455","l":"","na":1,"nb":24,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A1219","Prochlorococcus marinus"],["NCBITaxon%3A2052594","Prochlorococcus marinus str. XMU1401"],["NCBITaxon%3A2054183","Prochlorococcus marinus str. XMU1401E"],["NCBITaxon%3A2774494","Prochlorococcus marinus XMU1421"],["NCBITaxon%3A2774495","Prochlorococcus marinus XMU1422"],["NCBITaxon%3A2774496","Prochlorococcus marinus XMU1423"]]},{"id":"NCBITaxon:497726","l":"Nitrososphaera","na":1,"nb":24,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"]],"b":[["NCBITaxon%3A1459637","Candidatus Nitrososphaera evergladensis"],["NCBITaxon%3A1459636","Candidatus Nitrososphaera evergladensis SR1"],["NCBITaxon%3A497727","Candidatus Nitrososphaera gargensis"],["NCBITaxon%3A1237085","Candidatus Nitrososphaera gargensis Ga9.2"],["NCBITaxon%3A3447973","Candidatus Nitrososphaera maunauluensis"],["NCBITaxon%3A3141449","Candidatus Nitrososphaera sp."]]},{"id":"NCBITaxon:670486","l":"Dehalogenimonas","na":1,"nb":24,"a":[["QY2S1_Dehalogenimonas_BFR_Bioremediation_Consortium.html","QY2-S1 Dehalogenimonas-Rich Brominated-Flame-Retardant Consortium"]],"b":[["NCBITaxon%3A1217799","Dehalogenimonas alkenigignens"],["NCBITaxon%3A1536648","Dehalogenimonas etheniformans"],["NCBITaxon%3A1839801","Dehalogenimonas formicexedens"],["NCBITaxon%3A3127115","Dehalogenimonas loeffleri"],["NCBITaxon%3A552810","Dehalogenimonas lykanthroporepellens"],["NCBITaxon%3A552811","Dehalogenimonas lykanthroporepellens BL-DC-9"]]},{"id":"GTDB:s__Halopseudomonas_aestusnigri","l":"","na":1,"nb":23,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["NCBITaxon%3A857252","Halopseudomonas aestusnigri"],["NCBITaxon%3A2901191","Halopseudomonas sp."],["NCBITaxon%3A3015994","Halopseudomonas sp. MFKK-1"],["NCBITaxon%3A1914538","Pseudomonadaceae bacterium"],["NCBITaxon%3A1952768","Pseudomonadaceae bacterium UBA1462"],["NCBITaxon%3A1952777","Pseudomonadaceae bacterium UBA3367"]]},{"id":"GTDB:s__Lactobacillus_delbrueckii","l":"","na":1,"nb":23,"a":[["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A1584","Lactobacillus delbrueckii"],["NCBITaxon%3A1050107","Lactobacillus delbrueckii subsp. allosunkii"],["NCBITaxon%3A1585","Lactobacillus delbrueckii subsp. bulgaricus"],["NCBITaxon%3A353496","Lactobacillus delbrueckii subsp. bulgaricus 2038"],["NCBITaxon%3A390333","Lactobacillus delbrueckii subsp. bulgaricus ATCC 11842 = JCM 1002"]]},{"id":"NCBITaxon:1598","l":"Limosilactobacillus reuteri","na":1,"nb":23,"a":[["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"]],"b":[["NCBITaxon%3A1581","Lentilactobacillus buchneri"],["NCBITaxon%3A2767931","Lentilactobacillus sp."],["NCBITaxon%3A1613","Limosilactobacillus fermentum"],["NCBITaxon%3A1598","Limosilactobacillus reuteri"],["NCBITaxon%3A1273150","Limosilactobacillus reuteri 1063"],["NCBITaxon%3A525341","Limosilactobacillus reuteri CF48-3A"]]},{"id":"NCBITaxon:180162","l":"Cetobacterium","na":1,"nb":23,"a":[["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"]],"b":[["NCBITaxon%3A3073100","Candidatus Cetobacterium colombiensis"],["NCBITaxon%3A180163","Cetobacterium ceti"],["NCBITaxon%3A188913","Cetobacterium somerae"],["NCBITaxon%3A1319815","Cetobacterium somerae ATCC BAA-474"],["NCBITaxon%3A2071632","Cetobacterium sp."],["NCBITaxon%3A2754723","Cetobacterium sp. 2A"]]},{"id":"NCBITaxon:1828","l":"Rhodococcoides fascians","na":1,"nb":23,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A1828","Rhodococcoides fascians"],["NCBITaxon%3A1443888","Rhodococcoides fascians 02-815"],["NCBITaxon%3A1443889","Rhodococcoides fascians 02-816c"],["NCBITaxon%3A1443890","Rhodococcoides fascians 04-516"],["NCBITaxon%3A1443891","Rhodococcoides fascians 05-339-1"],["NCBITaxon%3A1443892","Rhodococcoides fascians 05-561-1"]]},{"id":"NCBITaxon:392733","l":"Terriglobus","na":1,"nb":23,"a":[["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["NCBITaxon%3A1592106","Terriglobus albidus"],["NCBITaxon%3A940139","Terriglobus aquaticus"],["NCBITaxon%3A392734","Terriglobus roseus"],["NCBITaxon%3A926566","Terriglobus roseus DSM 18391"],["NCBITaxon%3A870903","Terriglobus saanensis"],["NCBITaxon%3A401053","Terriglobus saanensis SP1PR4"]]},{"id":"GTDB:s__Bacillus_atrophaeus","l":"","na":1,"nb":22,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"]],"b":[["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A1452","Bacillus atrophaeus"],["NCBITaxon%3A723888","Bacillus atrophaeus 1013-1"],["NCBITaxon%3A723889","Bacillus atrophaeus 1013-2"],["NCBITaxon%3A720555","Bacillus atrophaeus 1942"],["NCBITaxon%3A743710","Bacillus atrophaeus ATCC 49822-1"]]},{"id":"NCBITaxon:1849822","l":"Paraclostridium","na":1,"nb":22,"a":[["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"]],"b":[["NCBITaxon%3A1629550","Paraclostridium benzoelyticum"],["NCBITaxon%3A1490","Paraclostridium bifermentans"],["NCBITaxon%3A1233170","Paraclostridium bifermentans ATCC 19299"],["NCBITaxon%3A1233171","Paraclostridium bifermentans ATCC 638 = DSM 14991"],["NCBITaxon%3A1357385","Paraclostridium bifermentans NI48_6"],["NCBITaxon%3A2663174","Paraclostridium bifermentans subsp. bifermentans"]]},{"id":"NCBITaxon:2689614","l":"Steroidobacteraceae","na":1,"nb":22,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"]],"b":[["NCBITaxon%3A268404","Peristeroidobacter agariperforans"],["NCBITaxon%3A2497877","Peristeroidobacter soli"],["NCBITaxon%3A1962978","Povalibacter sp."],["NCBITaxon%3A732238","Povalibacter uvarum"],["NCBITaxon%3A2695856","Steroidobacter agaridevorans"],["NCBITaxon%3A1803913","Steroidobacter cummioxidans"]]},{"id":"NCBITaxon:43773","l":"Syntrophus","na":1,"nb":22,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"]],"b":[["NCBITaxon%3A316277","Syntrophus aciditrophicus"],["NCBITaxon%3A56780","Syntrophus aciditrophicus SB"],["NCBITaxon%3A43774","Syntrophus buswellii"],["NCBITaxon%3A43775","Syntrophus gentianae"],["NCBITaxon%3A1489994","Syntrophus sp. enrichment culture clone AD_hydA_36"],["NCBITaxon%3A511481","Syntrophus sp. enrichment culture clone D2CL_Bac_16S_Clone10"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":1,"nb":22,"a":[["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]],"b":[["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A221276","[Curtobacterium] plantarum"],["NCBITaxon%3A558","Erwinia sp."],["NCBITaxon%3A83655","Leclercia adecarboxylata"],["NCBITaxon%3A549","Pantoea agglomerans"],["NCBITaxon%3A1261128","Pantoea agglomerans 299R"]]},{"id":"NCBITaxon:83677","l":"Thermobifida","na":1,"nb":22,"a":[["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"]],"b":[["NCBITaxon%3A53522","Thermobifida alba"],["NCBITaxon%3A144786","Thermobifida cellulosilytica"],["NCBITaxon%3A665004","Thermobifida cellulosilytica TB100"],["NCBITaxon%3A2021","Thermobifida fusca"],["NCBITaxon%3A1223522","Thermobifida fusca NBRC 14071 = JCM 3263"],["NCBITaxon%3A1169414","Thermobifida fusca TM51"]]},{"id":"GTDB:s__Prochlorococcus_B_marinus_B","l":"","na":1,"nb":21,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A1219","Prochlorococcus marinus"],["NCBITaxon%3A2998489","Prochlorococcus marinus Sample_003_bin_1.filtered"],["NCBITaxon%3A1570012","Prochlorococcus marinus str. MIT 0915"],["NCBITaxon%3A2053468","Prochlorococcus marinus str. MU1403"],["NCBITaxon%3A167555","Prochlorococcus marinus str. NATL1A"],["NCBITaxon%3A59920","Prochlorococcus marinus str. NATL2A"]]},{"id":"GTDB:s__Thomasclavelia_ramosa","l":"","na":1,"nb":21,"a":[["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["NCBITaxon%3A3030912","Anaerovoracaceae bacterium"],["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A2212467","Bacteroidaceae bacterium"],["NCBITaxon%3A1697788","Clostridia bacterium UC5.1-2H6"],["NCBITaxon%3A1232446","Clostridiales bacterium VE202-18"],["NCBITaxon%3A2137881","Coprobacillus sp."]]},{"id":"GTDB:s__Faecalibacterium_longum","l":"","na":1,"nb":20,"a":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"]],"b":[["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A2212467","Bacteroidaceae bacterium"],["NCBITaxon%3A1262817","Clostridium sp. CAG:524"],["NCBITaxon%3A1262889","Eubacterium sp. CAG:38"],["NCBITaxon%3A1851428","Faecalibacterium longum"]]},{"id":"NCBITaxon:1245","l":"Leuconostoc mesenteroides","na":1,"nb":20,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["NCBITaxon%3A33964","Leuconostoc citreum"],["NCBITaxon%3A1245","Leuconostoc mesenteroides"],["NCBITaxon%3A1357402","Leuconostoc mesenteroides A16_17"],["NCBITaxon%3A427140","Leuconostoc mesenteroides KFRI-MG"],["NCBITaxon%3A1429888","Leuconostoc mesenteroides P45"],["NCBITaxon%3A33965","Leuconostoc mesenteroides subsp. cremoris"]]},{"id":"NCBITaxon:1579","l":"Lactobacillus acidophilus","na":1,"nb":20,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["NCBITaxon%3A1597","Lacticaseibacillus paracasei"],["NCBITaxon%3A1590","Lactiplantibacillus plantarum"],["NCBITaxon%3A1579","Lactobacillus acidophilus"],["NCBITaxon%3A891391","Lactobacillus acidophilus 30SC"],["NCBITaxon%3A525306","Lactobacillus acidophilus ATCC 4796"],["NCBITaxon%3A1421011","Lactobacillus acidophilus CFH"]]},{"id":"NCBITaxon:18","l":"Pelobacter","na":1,"nb":20,"a":[["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"]],"b":[["NCBITaxon%3A2961950","Candidatus Pseudopelobacter ferreus"],["NCBITaxon%3A35816","Pelobacter acidigallici"],["NCBITaxon%3A225195","Pelobacter massiliensis"],["NCBITaxon%3A29543","Pelobacter propionicus"],["NCBITaxon%3A338966","Pelobacter propionicus DSM 2379"],["NCBITaxon%3A407188","Pelobacter seleniigenes"]]},{"id":"NCBITaxon:588814","l":"Candidatus Methanophagales","na":1,"nb":20,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"]],"b":[["NCBITaxon%3A3386331","Candidatus Methanophaga sp."],["NCBITaxon%3A2081360","Candidatus Methanophaga sp. AG-394-G06"],["NCBITaxon%3A2081361","Candidatus Methanophaga sp. AG-394-G21"],["NCBITaxon%3A2759913","Candidatus Methanophaga sp. ANME-1 ERB7"],["NCBITaxon%3A2081356","Candidatus Methanophaga sp. GoMg3.2"],["NCBITaxon%3A3386247","Candidatus Methanophagaceae archaeon"]]},{"id":"NCBITaxon:588816","l":"ANME-2 cluster","na":1,"nb":20,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"]],"b":[["NCBITaxon%3A2056317","ANME-2 cluster archaeon"],["NCBITaxon%3A3460055","Candidatus Methanocomedenaceae archaeon"],["NCBITaxon%3A3386229","Candidatus Methanocomedens sp."],["NCBITaxon%3A3386292","Candidatus Methanogaster sp."],["NCBITaxon%3A2759911","Candidatus Methanogaster sp. ANME-2c ERB4"],["NCBITaxon%3A1915703","Candidatus Methanogaster sp. UBA203"]]},{"id":"NCBITaxon:375","l":"Bradyrhizobium japonicum","na":1,"nb":19,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"]],"b":[["NCBITaxon%3A1355477","Bradyrhizobium diazoefficiens"],["NCBITaxon%3A224911","Bradyrhizobium diazoefficiens USDA 110"],["NCBITaxon%3A375","Bradyrhizobium japonicum"],["NCBITaxon%3A306164","Bradyrhizobium japonicum bv. genistearum"],["NCBITaxon%3A305581","Bradyrhizobium japonicum bv. glycinearum"],["NCBITaxon%3A1128253","Bradyrhizobium japonicum CCBAU 15354"]]},{"id":"NCBITaxon:47678","l":"Bacteroides caccae","na":1,"nb":19,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A47678","Bacteroides caccae"],["NCBITaxon%3A411901","Bacteroides caccae ATCC 43185"],["NCBITaxon%3A1263037","Bacteroides caccae CAG:21"],["NCBITaxon%3A997873","Bacteroides caccae CL03T12C61"],["NCBITaxon%3A1357379","Bacteroides caccae MR1_13"],["NCBITaxon%3A1338837","Bacteroides caccae TSDC10.1-1.1"]]},{"id":"GTDB:s__Mediterraneibacter_torques","l":"","na":1,"nb":18,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A3077420","Acutalibacteraceae bacterium"],["NCBITaxon%3A3030912","Anaerovoracaceae bacterium"],["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A290055","Faecalicatena fissicatena"],["NCBITaxon%3A2005360","Faecalicatena sp."]]},{"id":"GTDB:s__Methylobacterium_extorquens","l":"","na":1,"nb":18,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["NCBITaxon%3A2021371","Methylobacteriaceae bacterium"],["NCBITaxon%3A1736261","Methylobacterium sp. Leaf119"],["NCBITaxon%3A1736262","Methylobacterium sp. Leaf121"],["NCBITaxon%3A1736263","Methylobacterium sp. Leaf122"],["NCBITaxon%3A1736246","Methylobacterium sp. Leaf90"],["NCBITaxon%3A1736248","Methylobacterium sp. Leaf92"]]},{"id":"NCBITaxon:110321","l":"Sinorhizobium medicae","na":1,"nb":18,"a":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"]],"b":[["NCBITaxon%3A110321","Sinorhizobium medicae"],["NCBITaxon%3A1230619","Sinorhizobium medicae A321"],["NCBITaxon%3A1041148","Sinorhizobium medicae DI28"],["NCBITaxon%3A1230620","Sinorhizobium medicae KH36b"],["NCBITaxon%3A1230621","Sinorhizobium medicae KH36c"],["NCBITaxon%3A1230622","Sinorhizobium medicae KH36d"]]},{"id":"NCBITaxon:158836","l":"Enterobacter hormaechei","na":1,"nb":18,"a":[["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A3461408","Enterobacter hoffmannii subsp. nototheniae"],["NCBITaxon%3A158836","Enterobacter hormaechei"],["NCBITaxon%3A888063","Enterobacter hormaechei ATCC 49162"],["NCBITaxon%3A1812934","Enterobacter hormaechei subsp. hoffmannii"],["NCBITaxon%3A1333851","Enterobacter hormaechei subsp. hoffmannii ECNIH3"]]},{"id":"NCBITaxon:5475","l":"Candida","na":1,"nb":18,"a":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["NCBITaxon%3A241526","Candida africana"],["NCBITaxon%3A5476","Candida albicans"],["NCBITaxon%3A1182531","Candida albicans 3153A"],["NCBITaxon%3A1284353","Candida baotianmanensis"],["NCBITaxon%3A434039","Candida buenavistaensis"],["NCBITaxon%3A42374","Candida dubliniensis"]]},{"id":"GTDB:s__Anaerotignum_A_faecicola","l":"","na":1,"nb":17,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A3077420","Acutalibacteraceae bacterium"],["NCBITaxon%3A2358141","Anaerotignum faecicola"],["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A1689","Bifidobacterium dentium"],["NCBITaxon%3A2592645","Clostridium sp. MCC345"],["NCBITaxon%3A901","Desulfovibrio piger"]]},{"id":"GTDB:s__Paenibacillus_polymyxa_D","l":"","na":1,"nb":17,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"]],"b":[["NCBITaxon%3A44250","Paenibacillus alvei"],["NCBITaxon%3A59893","Paenibacillus peoriae"],["NCBITaxon%3A1406","Paenibacillus polymyxa"],["NCBITaxon%3A2806565","Paenibacillus sp. 1182"],["NCBITaxon%3A1683673","Paenibacillus sp. EKM205P"],["NCBITaxon%3A1683674","Paenibacillus sp. EKM206P"]]},{"id":"GTDB:s__Streptococcus_salivarius_D","l":"","na":1,"nb":17,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["NCBITaxon%3A1458738","Bacillus sp. hb116"],["NCBITaxon%3A1335","Streptococcus equinus"],["NCBITaxon%3A1313","Streptococcus pneumoniae"],["NCBITaxon%3A1304","Streptococcus salivarius"],["NCBITaxon%3A1046629","Streptococcus salivarius 57.I"],["NCBITaxon%3A1048332","Streptococcus salivarius CCHSS3"]]},{"id":"NCBITaxon:216431","l":"Croceibacter","na":1,"nb":17,"a":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"]],"b":[["NCBITaxon%3A313588","Croceibacter atlanticus"],["NCBITaxon%3A216432","Croceibacter atlanticus HTCC2559"],["NCBITaxon%3A2024829","Croceibacter sp."],["NCBITaxon%3A529764","Croceibacter sp. ADROW2"],["NCBITaxon%3A1247573","Croceibacter sp. Ar-116"],["NCBITaxon%3A1247574","Croceibacter sp. Ar-140"]]},{"id":"NCBITaxon:552","l":"Erwinia amylovora","na":1,"nb":17,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]],"b":[["NCBITaxon%3A552","Erwinia amylovora"],["NCBITaxon%3A1255306","Erwinia amylovora 01SFR-BO"],["NCBITaxon%3A1427519","Erwinia amylovora 692"],["NCBITaxon%3A1027397","Erwinia amylovora ACW56400"],["NCBITaxon%3A716540","Erwinia amylovora ATCC 49946"],["NCBITaxon%3A889211","Erwinia amylovora ATCC BAA-2158"]]},{"id":"GTDB:s__Leuconostoc_mesenteroides","l":"","na":1,"nb":16,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["NCBITaxon%3A1245","Leuconostoc mesenteroides"],["NCBITaxon%3A427140","Leuconostoc mesenteroides KFRI-MG"],["NCBITaxon%3A1429888","Leuconostoc mesenteroides P45"],["NCBITaxon%3A33965","Leuconostoc mesenteroides subsp. cremoris"],["NCBITaxon%3A586220","Leuconostoc mesenteroides subsp. cremoris ATCC 19254"],["NCBITaxon%3A1339224","Leuconostoc mesenteroides subsp. cremoris T26"]]},{"id":"GTDB:s__Paenibacillus_polymyxa","l":"","na":1,"nb":16,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"]],"b":[["NCBITaxon%3A114136","Paenibacillus jamilae"],["NCBITaxon%3A1406","Paenibacillus polymyxa"],["NCBITaxon%3A1414587","Paenibacillus polymyxa A18"],["NCBITaxon%3A1036171","Paenibacillus polymyxa ATCC 842"],["NCBITaxon%3A1156938","Paenibacillus polymyxa OSY-DF"],["NCBITaxon%3A1413214","Paenibacillus polymyxa SQR-21"]]},{"id":"NCBITaxon:285","l":"Comamonas testosteroni","na":1,"nb":16,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["NCBITaxon%3A1775535","Acidovorax sp. JCM 10065"],["NCBITaxon%3A285","Comamonas testosteroni"],["NCBITaxon%3A1009852","Comamonas testosteroni ATCC 11996"],["NCBITaxon%3A543891","Comamonas testosteroni CNB-1"],["NCBITaxon%3A688245","Comamonas testosteroni CNB-2"],["NCBITaxon%3A1440775","Comamonas testosteroni I2"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":1,"nb":16,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["NCBITaxon%3A1114880","Aeromonas australiensis"],["NCBITaxon%3A1264931","Flavobacterium acidificum"],["NCBITaxon%3A553","Pantoea ananatis"],["NCBITaxon%3A1419326","Pantoea ananatis 15320"],["NCBITaxon%3A932677","Pantoea ananatis AJ13355"],["NCBITaxon%3A1048262","Pantoea ananatis B1-9"]]},{"id":"GTDB:s__Bradyrhizobium_elkanii","l":"","na":1,"nb":15,"a":[["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["NCBITaxon%3A29448","Bradyrhizobium elkanii"],["NCBITaxon%3A1128203","Bradyrhizobium elkanii CCBAU 05737"],["NCBITaxon%3A1128204","Bradyrhizobium elkanii CCBAU 43297"],["NCBITaxon%3A1275962","Bradyrhizobium elkanii USDA 61"],["NCBITaxon%3A398525","Bradyrhizobium elkanii USDA 76"],["NCBITaxon%3A398524","Bradyrhizobium elkanii USDA 94"]]},{"id":"GTDB:s__Bradyrhizobium_japonicum_B","l":"","na":1,"nb":15,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"]],"b":[["NCBITaxon%3A244734","Bradyrhizobium betae"],["NCBITaxon%3A3341829","Bradyrhizobium dasycarpum"],["NCBITaxon%3A1304877","Bradyrhizobium sp. 22"],["NCBITaxon%3A3133974","Bradyrhizobium sp. A11"],["NCBITaxon%3A2170627","Bradyrhizobium sp. WBOS01"],["NCBITaxon%3A2171497","Bradyrhizobium sp. WBOS02"]]},{"id":"GTDB:s__Corynebacterium_glutamicum","l":"","na":1,"nb":15,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]],"b":[["NCBITaxon%3A92706","[Brevibacterium] flavum"],["NCBITaxon%3A1232385","[Brevibacterium] flavum ZL-1"],["NCBITaxon%3A1718","Corynebacterium glutamicum"],["NCBITaxon%3A196627","Corynebacterium glutamicum ATCC 13032"],["NCBITaxon%3A1079988","Corynebacterium glutamicum ATCC 14067"],["NCBITaxon%3A1204414","Corynebacterium glutamicum K051"]]},{"id":"GTDB:s__Cupriavidus_metallidurans","l":"","na":1,"nb":15,"a":[["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["NCBITaxon%3A1229488","beta proteobacterium FWI2"],["NCBITaxon%3A119219","Cupriavidus metallidurans"],["NCBITaxon%3A266264","Cupriavidus metallidurans CH34"],["NCBITaxon%3A1395123","Cupriavidus metallidurans H1130"],["NCBITaxon%3A1218106","Cupriavidus metallidurans NBRC 101272"],["NCBITaxon%3A1249621","Cupriavidus sp. HMR-1"]]},{"id":"GTDB:s__Streptococcus_sp001556435","l":"","na":1,"nb":15,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["NCBITaxon%3A2997159","Streptococcaceae bacterium AF07-22B"],["NCBITaxon%3A1335","Streptococcus equinus"],["NCBITaxon%3A1304","Streptococcus salivarius"],["NCBITaxon%3A1200793","Streptococcus salivarius K12"],["NCBITaxon%3A1306","Streptococcus sp."],["NCBITaxon%3A2762566","Streptococcus sp. 21.1"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":1,"nb":15,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["NCBITaxon%3A1304","Streptococcus salivarius"],["NCBITaxon%3A1046629","Streptococcus salivarius 57.I"],["NCBITaxon%3A1420586","Streptococcus salivarius ATCC 25975"],["NCBITaxon%3A1263109","Streptococcus salivarius CAG:79"],["NCBITaxon%3A1048332","Streptococcus salivarius CCHSS3"],["NCBITaxon%3A1255635","Streptococcus salivarius CJ181"]]},{"id":"NCBITaxon:1585","l":"Lactobacillus delbrueckii subsp. bulgaricus","na":1,"nb":15,"a":[["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["NCBITaxon%3A2775876","Lacticaseibacillus sp."],["NCBITaxon%3A1584","Lactobacillus delbrueckii"],["NCBITaxon%3A1585","Lactobacillus delbrueckii subsp. bulgaricus"],["NCBITaxon%3A353496","Lactobacillus delbrueckii subsp. bulgaricus 2038"],["NCBITaxon%3A390333","Lactobacillus delbrueckii subsp. bulgaricus ATCC 11842 = JCM 1002"],["NCBITaxon%3A321956","Lactobacillus delbrueckii subsp. bulgaricus ATCC BAA-365"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":15,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]],"b":[["NCBITaxon%3A38285","Corynebacterium acetoacidophilum"],["NCBITaxon%3A1718","Corynebacterium glutamicum"],["NCBITaxon%3A196627","Corynebacterium glutamicum ATCC 13032"],["NCBITaxon%3A1079988","Corynebacterium glutamicum ATCC 14067"],["NCBITaxon%3A1204414","Corynebacterium glutamicum K051"],["NCBITaxon%3A1310161","Corynebacterium glutamicum MB001"]]},{"id":"NCBITaxon:542","l":"Zymomonas mobilis","na":1,"nb":15,"a":[["Zymomonas_Ecoli_Exometabolomics_Obligate_Mutualism.html","Zymomonas-E. coli Exometabolomics-Designed Obligate Mutualism"]],"b":[["NCBITaxon%3A223958","Exiguobacterium oxidotolerans"],["NCBITaxon%3A1397699","Exiguobacterium oxidotolerans JCM 12280"],["NCBITaxon%3A542","Zymomonas mobilis"],["NCBITaxon%3A325472","Zymomonas mobilis subsp. francensis"],["NCBITaxon%3A120045","Zymomonas mobilis subsp. mobilis"],["NCBITaxon%3A555217","Zymomonas mobilis subsp. mobilis ATCC 10988"]]},{"id":"NCBITaxon:55193","l":"Malassezia","na":1,"nb":15,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["NCBITaxon%3A1381934","Malassezia caprae"],["NCBITaxon%3A948313","Malassezia cuniculi"],["NCBITaxon%3A169489","Malassezia dermatis"],["NCBITaxon%3A1381935","Malassezia equina"],["NCBITaxon%3A55194","Malassezia furfur"],["NCBITaxon%3A76773","Malassezia globosa"]]},{"id":"NCBITaxon:61435","l":"Dehalococcoides mccartyi","na":1,"nb":15,"a":[["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"]],"b":[["NCBITaxon%3A61435","Dehalococcoides mccartyi"],["NCBITaxon%3A243164","Dehalococcoides mccartyi 195"],["NCBITaxon%3A216389","Dehalococcoides mccartyi BAV1"],["NCBITaxon%3A1193806","Dehalococcoides mccartyi BTF08"],["NCBITaxon%3A255470","Dehalococcoides mccartyi CBDB1"],["NCBITaxon%3A1432059","Dehalococcoides mccartyi CG1"]]},{"id":"NCBITaxon:138074","l":"Serratia symbiotica","na":1,"nb":14,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"]],"b":[["NCBITaxon%3A655401","Serratia symbiont of Stomaphis sp."],["NCBITaxon%3A138074","Serratia symbiotica"],["NCBITaxon%3A1592400","Serratia symbiotica AfA2.1"],["NCBITaxon%3A1592401","Serratia symbiotica AfA3.1"],["NCBITaxon%3A2856988","Serratia symbiotica (Cacopsylla coccinea)"],["NCBITaxon%3A1339251","Serratia symbiotica CWBI2.3"]]},{"id":"NCBITaxon:1587","l":"Lactobacillus helveticus","na":1,"nb":14,"a":[["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"]],"b":[["NCBITaxon%3A1587","Lactobacillus helveticus"],["NCBITaxon%3A1226336","Lactobacillus helveticus CIRM-BIA 101"],["NCBITaxon%3A1226332","Lactobacillus helveticus CIRM-BIA 103"],["NCBITaxon%3A1226333","Lactobacillus helveticus CIRM-BIA 104"],["NCBITaxon%3A1226334","Lactobacillus helveticus CIRM-BIA 951"],["NCBITaxon%3A1226335","Lactobacillus helveticus CIRM-BIA 953"]]},{"id":"NCBITaxon:1738645","l":"Caproiciproducens","na":1,"nb":14,"a":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]],"b":[["NCBITaxon%3A2820301","Caproiciproducens faecalis"],["NCBITaxon%3A642589","Caproiciproducens galactitolivorans"],["NCBITaxon%3A3435187","Caproiciproducens lactatisolvens"],["NCBITaxon%3A3435000","Caproiciproducens puteiluti"],["NCBITaxon%3A1954376","Caproiciproducens sp."],["NCBITaxon%3A3023530","Caproiciproducens sp. B_6B25C"]]},{"id":"NCBITaxon:2052312","l":"Candidatus Dormiibacterota","na":1,"nb":14,"a":[["Soil_BGC_Phylum_Depth_Vegetation_Community.html","Soil Biosynthetic Gene Cluster Phylum-Depth-Vegetation Community"]],"b":[["NCBITaxon%3A3693648","Candidatus Aeolococcaceae bacterium"],["NCBITaxon%3A3127015","Candidatus Aeolococcus gillhamiae"],["NCBITaxon%3A3780782","Candidatus Aeolococcus sp."],["NCBITaxon%3A3127014","Candidatus Amunia macphersoniae"],["NCBITaxon%3A3127019","Candidatus Changshengia sp."],["NCBITaxon%3A3134677","Candidatus Dormibacteraceae bacterium"]]},{"id":"NCBITaxon:2822410","l":"Methylotuvimicrobium","na":1,"nb":14,"a":[["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]],"b":[["NCBITaxon%3A271065","Methylotuvimicrobium alcaliphilum"],["NCBITaxon%3A1091494","Methylotuvimicrobium alcaliphilum 20Z"],["NCBITaxon%3A95641","Methylotuvimicrobium buryatense"],["NCBITaxon%3A675511","Methylotuvimicrobium buryatense 5G"],["NCBITaxon%3A81932","Methylotuvimicrobium japanense"],["NCBITaxon%3A269709","Methylotuvimicrobium kenyense"]]},{"id":"NCBITaxon:2837503","l":"Gottfriedia","na":1,"nb":14,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["NCBITaxon%3A371036","Gottfriedia acidiceleris"],["NCBITaxon%3A2820819","Gottfriedia endophytica"],["NCBITaxon%3A178774","Gottfriedia luciferensis"],["NCBITaxon%3A1516104","Gottfriedia solisilvae"],["NCBITaxon%3A2837517","Gottfriedia sp."],["NCBITaxon%3A3570215","Gottfriedia sp. ABJ_BB2_2"]]},{"id":"NCBITaxon:582","l":"Morganella morganii","na":1,"nb":14,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["NCBITaxon%3A582","Morganella morganii"],["NCBITaxon%3A1365974","Morganella morganii AC2_8_11_AN_D6_FAA_4"],["NCBITaxon%3A1428452","Morganella morganii F675"],["NCBITaxon%3A1416758","Morganella morganii H1r"],["NCBITaxon%3A1411647","Morganella morganii IS15"],["NCBITaxon%3A1239989","Morganella morganii SC01"]]},{"id":"GTDB:s__Ensifer_canadensis","l":"","na":1,"nb":13,"a":[["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["NCBITaxon%3A106592","Ensifer adhaerens"],["NCBITaxon%3A1416753","Ensifer adhaerens OV14"],["NCBITaxon%3A555315","Ensifer canadensis"],["NCBITaxon%3A1911585","Ensifer sp. 1H6"],["NCBITaxon%3A2769291","Ensifer sp. ENS11"],["NCBITaxon%3A2109730","Ensifer sp. NM-2"]]},{"id":"GTDB:s__Methanosarcina_mazei","l":"","na":1,"nb":13,"a":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"]],"b":[["NCBITaxon%3A2026739","Methanobacteriota archaeon"],["NCBITaxon%3A2209","Methanosarcina mazei"],["NCBITaxon%3A1434113","Methanosarcina mazei C16"],["NCBITaxon%3A192952","Methanosarcina mazei Go1"],["NCBITaxon%3A1293038","Methanosarcina mazei JCM 9314"],["NCBITaxon%3A1434114","Methanosarcina mazei LYC"]]},{"id":"NCBITaxon:1520","l":"Clostridium beijerinckii","na":1,"nb":13,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"]],"b":[["NCBITaxon%3A1488","Clostridium acetobutylicum"],["NCBITaxon%3A272562","Clostridium acetobutylicum ATCC 824"],["NCBITaxon%3A1520","Clostridium beijerinckii"],["NCBITaxon%3A1202535","Clostridium beijerinckii AAU1"],["NCBITaxon%3A864803","Clostridium beijerinckii ATCC 35702"],["NCBITaxon%3A1200349","Clostridium beijerinckii G117"]]},{"id":"NCBITaxon:1624","l":"Ligilactobacillus salivarius","na":1,"nb":13,"a":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]],"b":[["NCBITaxon%3A1624","Ligilactobacillus salivarius"],["NCBITaxon%3A768728","Ligilactobacillus salivarius ACS-116-V-Col5a"],["NCBITaxon%3A1195377","Ligilactobacillus salivarius B-30514"],["NCBITaxon%3A712961","Ligilactobacillus salivarius CECT 5713"],["NCBITaxon%3A1036738","Ligilactobacillus salivarius CELA2"],["NCBITaxon%3A1273133","Ligilactobacillus salivarius cp400"]]},{"id":"NCBITaxon:4958","l":"Debaryomyces","na":1,"nb":13,"a":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["NCBITaxon%3A27296","Debaryomyces coudertii"],["NCBITaxon%3A58627","Debaryomyces fabryi"],["NCBITaxon%3A4959","Debaryomyces hansenii"],["NCBITaxon%3A284592","Debaryomyces hansenii CBS767"],["NCBITaxon%3A1118155","Debaryomyces hansenii var. hansenii MTCC 234"],["NCBITaxon%3A27297","Debaryomyces maramus"]]},{"id":"GTDB:s__Faecalibacterium_prausnitzii","l":"","na":1,"nb":12,"a":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"]],"b":[["NCBITaxon%3A1872471","Alloprevotella sp."],["NCBITaxon%3A1896972","Azospirillum sp. 51_20"],["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A853","Faecalibacterium prausnitzii"],["NCBITaxon%3A411485","Faecalibacterium prausnitzii M21/2"],["NCBITaxon%3A657322","Faecalibacterium prausnitzii SL3/3"]]},{"id":"GTDB:s__Paenibacillus_polymyxa_C","l":"","na":1,"nb":12,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"]],"b":[["NCBITaxon%3A114136","Paenibacillus jamilae"],["NCBITaxon%3A1406","Paenibacillus polymyxa"],["NCBITaxon%3A1333863","Paenibacillus polymyxa 1-43"],["NCBITaxon%3A1052684","Paenibacillus polymyxa M1"],["NCBITaxon%3A886882","Paenibacillus polymyxa SC2"],["NCBITaxon%3A2849670","Paenibacillus sp. AK121"]]},{"id":"GTDB:s__Trichodesmium_erythraeum","l":"","na":1,"nb":12,"a":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["NCBITaxon%3A1206","Trichodesmium erythraeum"],["NCBITaxon%3A1045866","Trichodesmium erythraeum 21-75"],["NCBITaxon%3A1045867","Trichodesmium erythraeum GBRTRLIN201"],["NCBITaxon%3A203124","Trichodesmium erythraeum IMS101"],["NCBITaxon%3A2919304","Trichodesmium sp. ALOHA_ZT_67"],["NCBITaxon%3A2917417","Trichodesmium sp. MAG_R01"]]},{"id":"GTDB:s__Weizmannia_faecalis","l":"","na":1,"nb":12,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"]],"b":[["NCBITaxon%3A1409","Bacillus sp. (in: firmicutes)"],["NCBITaxon%3A1398","Heyndrickxia coagulans"],["NCBITaxon%3A345219","Heyndrickxia coagulans 36D1"],["NCBITaxon%3A1298921","Heyndrickxia coagulans CSIL1"],["NCBITaxon%3A1398086","Heyndrickxia coagulans P38"],["NCBITaxon%3A1245026","Heyndrickxia coagulans XZL9"]]},{"id":"NCBITaxon:1377992","l":"Halovenus","na":1,"nb":12,"a":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["NCBITaxon%3A2500550","Halovenus amylolytica"],["NCBITaxon%3A3126691","Halovenus anhuiensis"],["NCBITaxon%3A890420","Halovenus aranensis"],["NCBITaxon%3A2692199","Halovenus carboxidivorans"],["NCBITaxon%3A3396622","Halovenus halobia"],["NCBITaxon%3A3396621","Halovenus marina"]]},{"id":"NCBITaxon:1398","l":"Heyndrickxia coagulans","na":1,"nb":12,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"]],"b":[["NCBITaxon%3A3464050","Bacillus coagulans MPL-25"],["NCBITaxon%3A1422","Geobacillus stearothermophilus"],["NCBITaxon%3A1398","Heyndrickxia coagulans"],["NCBITaxon%3A941639","Heyndrickxia coagulans 2-6"],["NCBITaxon%3A345219","Heyndrickxia coagulans 36D1"],["NCBITaxon%3A1298921","Heyndrickxia coagulans CSIL1"]]},{"id":"NCBITaxon:178898","l":"Carboxydocella","na":1,"nb":12,"a":[["Subsurface_Carboxydocella_CO_Aquifer_Community.html","Subsurface Carboxydocella CO-Oxidation Aquifer Community"]],"b":[["NCBITaxon%3A412901","Carboxydocella ferrireducens"],["NCBITaxon%3A744873","Carboxydocella manganica"],["NCBITaxon%3A2152941","Carboxydocella sp."],["NCBITaxon%3A483241","Carboxydocella sp. 1244"],["NCBITaxon%3A483242","Carboxydocella sp. 1503"],["NCBITaxon%3A483243","Carboxydocella sp. 930"]]},{"id":"NCBITaxon:831","l":"Butyrivibrio fibrisolvens","na":1,"nb":12,"a":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic Rumen Consortium"]],"b":[["NCBITaxon%3A831","Butyrivibrio fibrisolvens"],["NCBITaxon%3A657324","Butyrivibrio fibrisolvens 16/4"],["NCBITaxon%3A1280697","Butyrivibrio fibrisolvens AB2020"],["NCBITaxon%3A1121131","Butyrivibrio fibrisolvens DSM 3071"],["NCBITaxon%3A1280700","Butyrivibrio fibrisolvens FE2007"],["NCBITaxon%3A1280703","Butyrivibrio fibrisolvens MD2001"]]},{"id":"GTDB:s__Bacteroides_caccae","l":"","na":1,"nb":11,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A2212467","Bacteroidaceae bacterium"],["NCBITaxon%3A47678","Bacteroides caccae"],["NCBITaxon%3A411901","Bacteroides caccae ATCC 43185"],["NCBITaxon%3A1263037","Bacteroides caccae CAG:21"],["NCBITaxon%3A997873","Bacteroides caccae CL03T12C61"]]},{"id":"GTDB:s__Bradyrhizobium_japonicum","l":"","na":1,"nb":11,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"]],"b":[["NCBITaxon%3A29448","Bradyrhizobium elkanii"],["NCBITaxon%3A375","Bradyrhizobium japonicum"],["NCBITaxon%3A1128255","Bradyrhizobium japonicum CCBAU 15618"],["NCBITaxon%3A1128256","Bradyrhizobium japonicum CCBAU 25435"],["NCBITaxon%3A476282","Bradyrhizobium japonicum SEMIA 5079"],["NCBITaxon%3A1079467","Bradyrhizobium japonicum USDA 38"]]},{"id":"GTDB:s__Bradyrhizobium_liaoningense","l":"","na":1,"nb":11,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"]],"b":[["NCBITaxon%3A1038863","Bradyrhizobium japonicum USDA 135"],["NCBITaxon%3A43992","Bradyrhizobium liaoningense"],["NCBITaxon%3A1128287","Bradyrhizobium liaoningense CCBAU 05525"],["NCBITaxon%3A1128288","Bradyrhizobium liaoningense CCBAU 83689"],["NCBITaxon%3A1641877","Bradyrhizobium sp. CCBAU 25338"],["NCBITaxon%3A1325102","Bradyrhizobium sp. CCBAU 51765"]]},{"id":"GTDB:s__Citrobacter_europaeus","l":"","na":1,"nb":11,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["NCBITaxon%3A57706","Citrobacter braakii"],["NCBITaxon%3A1914243","Citrobacter europaeus"],["NCBITaxon%3A546","Citrobacter freundii"],["NCBITaxon%3A1439318","Citrobacter freundii MGH 56"],["NCBITaxon%3A2883266","Citrobacter sp. 210820-DFI.7.7"],["NCBITaxon%3A2883267","Citrobacter sp. 210820-DFI.7.8"]]},{"id":"GTDB:s__Clostridium_beijerinckii","l":"","na":1,"nb":11,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"]],"b":[["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A1520","Clostridium beijerinckii"],["NCBITaxon%3A864803","Clostridium beijerinckii ATCC 35702"],["NCBITaxon%3A1200349","Clostridium beijerinckii G117"],["NCBITaxon%3A290402","Clostridium beijerinckii NCIMB 8052"],["NCBITaxon%3A1428454","Clostridium beijerinckii NRRL B-598"]]},{"id":"GTDB:s__Lactobacillus_acidophilus","l":"","na":1,"nb":11,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["NCBITaxon%3A1579","Lactobacillus acidophilus"],["NCBITaxon%3A525306","Lactobacillus acidophilus ATCC 4796"],["NCBITaxon%3A1421011","Lactobacillus acidophilus CFH"],["NCBITaxon%3A1226677","Lactobacillus acidophilus CIRM-BIA 442"],["NCBITaxon%3A1226678","Lactobacillus acidophilus CIRM-BIA 445"],["NCBITaxon%3A1423717","Lactobacillus acidophilus DSM 20079 = JCM 1132 = NBRC 13951 = CIP 76.13"]]},{"id":"GTDB:s__Synechocystis_sp000284455","l":"","na":1,"nb":11,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"]],"b":[["NCBITaxon%3A2764086","Synechocystis sp. B12"],["NCBITaxon%3A1933929","Synechocystis sp. CACIAM 05"],["NCBITaxon%3A2692865","Synechocystis sp. FACHB-898"],["NCBITaxon%3A2692866","Synechocystis sp. FACHB-908"],["NCBITaxon%3A2692867","Synechocystis sp. FACHB-929"],["NCBITaxon%3A2116702","Synechocystis sp. IPPAS B-1465"]]},{"id":"NCBITaxon:307628","l":"Petrimonas","na":1,"nb":11,"a":[["Waste_Sludge_Electrofermentation_Biofilm_Suspension_Community.html","Waste-Sludge Electro-Fermentation Biofilm-Suspension Community"]],"b":[["NCBITaxon%3A1642646","Petrimonas mucosa"],["NCBITaxon%3A2023866","Petrimonas sp."],["NCBITaxon%3A1197715","Petrimonas sp. B-17"],["NCBITaxon%3A1347151","Petrimonas sp. canine oral taxon 434"],["NCBITaxon%3A1506907","Petrimonas sp. enrichment culture clone B4-23"],["NCBITaxon%3A1454160","Petrimonas sp. enrichment culture clone SJC6"]]},{"id":"NCBITaxon:83551","l":"Parachlamydia","na":1,"nb":11,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["NCBITaxon%3A83552","Parachlamydia acanthamoebae"],["NCBITaxon%3A159254","Parachlamydia acanthamoebae str. Hall's coccus"],["NCBITaxon%3A765952","Parachlamydia acanthamoebae UV-7"],["NCBITaxon%3A2052048","Parachlamydia sp."],["NCBITaxon%3A2795736","Parachlamydia sp. AcF125"],["NCBITaxon%3A2032639","Parachlamydia sp. BC.030"]]},{"id":"GTDB:s__Butyrivibrio_fibrisolvens_C","l":"","na":1,"nb":10,"a":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic Rumen Consortium"]],"b":[["NCBITaxon%3A831","Butyrivibrio fibrisolvens"],["NCBITaxon%3A1280697","Butyrivibrio fibrisolvens AB2020"],["NCBITaxon%3A1280700","Butyrivibrio fibrisolvens FE2007"],["NCBITaxon%3A1280703","Butyrivibrio fibrisolvens MD2001"],["NCBITaxon%3A1280696","Butyrivibrio fibrisolvens ND3005"],["NCBITaxon%3A1280699","Butyrivibrio fibrisolvens WTE3004"]]},{"id":"GTDB:s__Desulfovibrio_sp900556755","l":"","na":1,"nb":10,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A901","Desulfovibrio piger"],["NCBITaxon%3A885","Desulfovibrio sp."],["NCBITaxon%3A3420558","Desulfovibrio sp. SGI.082"],["NCBITaxon%3A3420559","Desulfovibrio sp. SGI.102"],["NCBITaxon%3A3420560","Desulfovibrio sp. SGI.133"]]},{"id":"GTDB:s__Otoolea_symbiosa","l":"","na":1,"nb":10,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["NCBITaxon%3A1232445","Clostridiales bacterium VE202-16"],["NCBITaxon%3A2126740","Clostridium fessum"],["NCBITaxon%3A1506","Clostridium sp."],["NCBITaxon%3A665940","Clostridium sp. 7_3_54FAA"],["NCBITaxon%3A2044259","Clostridium sp. HMb25"],["NCBITaxon%3A1512","[Clostridium] symbiosum"]]},{"id":"GTDB:s__Stenotrophomonas_pavanii","l":"","na":1,"nb":10,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]],"b":[["NCBITaxon%3A1977087","Pseudomonadota bacterium"],["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A487698","Stenotrophomonas pavanii"],["NCBITaxon%3A2954546","Stenotrophomonas sp. FSL W7-1447"],["NCBITaxon%3A2899139","Stenotrophomonas sp. PI_27"],["NCBITaxon%3A2944932","Stenotrophomonas sp. SG1"]]},{"id":"GTDB:s__Streptococcus_oralis_S","l":"","na":1,"nb":10,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1095740","Streptococcus oralis SK100"],["NCBITaxon%3A1458253","Streptococcus oralis subsp. dentisani"],["NCBITaxon%3A1891914","Streptococcus oralis subsp. oralis"],["NCBITaxon%3A257758","Streptococcus pseudopneumoniae"],["NCBITaxon%3A1739389","Streptococcus sp. HMSC062H02"]]},{"id":"NCBITaxon:165812","l":"Sporanaerobacter","na":1,"nb":10,"a":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]],"b":[["NCBITaxon%3A165813","Sporanaerobacter acetigenes"],["NCBITaxon%3A1123281","Sporanaerobacter acetigenes DSM 13106"],["NCBITaxon%3A2010183","Sporanaerobacter sp."],["NCBITaxon%3A747279","Sporanaerobacter sp. enrichment culture clone B12"],["NCBITaxon%3A393729","Sporanaerobacter sp. Iso-W4"],["NCBITaxon%3A1460448","Sporanaerobacter sp. LAM0007"]]},{"id":"NCBITaxon:2209","l":"Methanosarcina mazei","na":1,"nb":10,"a":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"]],"b":[["NCBITaxon%3A2209","Methanosarcina mazei"],["NCBITaxon%3A1434113","Methanosarcina mazei C16"],["NCBITaxon%3A192952","Methanosarcina mazei Go1"],["NCBITaxon%3A1293038","Methanosarcina mazei JCM 9314"],["NCBITaxon%3A1434114","Methanosarcina mazei LYC"],["NCBITaxon%3A213585","Methanosarcina mazei S-6"]]},{"id":"NCBITaxon:2357","l":"Desulfomonile","na":1,"nb":10,"a":[["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["NCBITaxon%3A2799490","Candidatus Desulfomonile palmitatoxidans"],["NCBITaxon%3A117208","Desulfomonile limimaris"],["NCBITaxon%3A2793219","Desulfomonile sp."],["NCBITaxon%3A1145211","Desulfomonile sp. enrichment culture clone F4_A9"],["NCBITaxon%3A1145212","Desulfomonile sp. enrichment culture clone F4_E11"],["NCBITaxon%3A1145213","Desulfomonile sp. enrichment culture clone F4_F9"]]},{"id":"NCBITaxon:29397","l":"Lactobacillus delbrueckii subsp. lactis","na":1,"nb":10,"a":[["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"]],"b":[["NCBITaxon%3A2775876","Lacticaseibacillus sp."],["NCBITaxon%3A1584","Lactobacillus delbrueckii"],["NCBITaxon%3A29397","Lactobacillus delbrueckii subsp. lactis"],["NCBITaxon%3A1269760","Lactobacillus delbrueckii subsp. lactis CRL581"],["NCBITaxon%3A888027","Lactobacillus delbrueckii subsp. lactis DSM 20072"],["NCBITaxon%3A28039","Lactobacillus leichmannii"]]},{"id":"NCBITaxon:29448","l":"Bradyrhizobium elkanii","na":1,"nb":10,"a":[["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["NCBITaxon%3A29448","Bradyrhizobium elkanii"],["NCBITaxon%3A1156987","Bradyrhizobium elkanii 587"],["NCBITaxon%3A1128203","Bradyrhizobium elkanii CCBAU 05737"],["NCBITaxon%3A1128204","Bradyrhizobium elkanii CCBAU 43297"],["NCBITaxon%3A1079479","Bradyrhizobium elkanii USDA 3254"],["NCBITaxon%3A1079466","Bradyrhizobium elkanii USDA 3259"]]},{"id":"NCBITaxon:38304","l":"Corynebacterium tuberculostearicum","na":1,"nb":10,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["NCBITaxon%3A38284","Corynebacterium accolens"],["NCBITaxon%3A1736004","Corynebacterium cf. tuberculostearicum 1237_CAUR"],["NCBITaxon%3A1736005","Corynebacterium cf. tuberculostearicum 620_CAUR"],["NCBITaxon%3A1736006","Corynebacterium cf. tuberculostearicum 911_CAUR"],["NCBITaxon%3A38287","Corynebacterium fastidiosum"],["NCBITaxon%3A1720","Corynebacterium sp."]]},{"id":"NCBITaxon:40214","l":"Acinetobacter johnsonii","na":1,"nb":10,"a":[["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["NCBITaxon%3A40214","Acinetobacter johnsonii"],["NCBITaxon%3A1255605","Acinetobacter johnsonii 3M05"],["NCBITaxon%3A1217662","Acinetobacter johnsonii ANC 3681"],["NCBITaxon%3A1217663","Acinetobacter johnsonii CIP 64.6"],["NCBITaxon%3A1160709","Acinetobacter johnsonii L18"],["NCBITaxon%3A701047","Acinetobacter johnsonii SE1"]]},{"id":"GTDB:s__Agrobacterium_oryzihabitans","l":"","na":1,"nb":9,"a":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"]],"b":[["NCBITaxon%3A1183412","Agrobacterium deltae"],["NCBITaxon%3A1183435","Agrobacterium genomosp. 5 str. CFBP 6626"],["NCBITaxon%3A361","Agrobacterium sp."],["NCBITaxon%3A2986921","Agrobacterium sp. BT-220-3"],["NCBITaxon%3A358","Agrobacterium tumefaciens"],["NCBITaxon%3A1050720","Agrobacterium tumefaciens F2"]]},{"id":"GTDB:s__Bifidobacterium_thermacidophilum","l":"","na":1,"nb":9,"a":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["NCBITaxon%3A212365","Bifidobacterium porcinum"],["NCBITaxon%3A1435463","Bifidobacterium porcinum DSM 17755"],["NCBITaxon%3A41200","Bifidobacterium sp."],["NCBITaxon%3A3440246","Bifidobacterium sp. LCP19S3_E9"],["NCBITaxon%3A3440249","Bifidobacterium sp. LCP19S3_H1"],["NCBITaxon%3A246618","Bifidobacterium thermacidophilum"]]},{"id":"GTDB:s__Lactiplantibacillus_pentosus","l":"","na":1,"nb":9,"a":[["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["NCBITaxon%3A1589","Lactiplantibacillus pentosus"],["NCBITaxon%3A1423791","Lactiplantibacillus pentosus DSM 20314"],["NCBITaxon%3A1028490","Lactiplantibacillus pentosus MP-10"],["NCBITaxon%3A1590","Lactiplantibacillus plantarum"],["NCBITaxon%3A2767846","Lactiplantibacillus sp."],["NCBITaxon%3A2832297","Lactiplantibacillus sp. 30.2.29"]]},{"id":"GTDB:s__Variovorax_sp900115375","l":"","na":1,"nb":9,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["NCBITaxon%3A1335060","Rhizobium sp. Q54"],["NCBITaxon%3A2529861","Tabrizicola sp. YIM 78059"],["NCBITaxon%3A2855501","Variovorax endophyticus"],["NCBITaxon%3A34073","Variovorax paradoxus"],["NCBITaxon%3A1871043","Variovorax sp."],["NCBITaxon%3A3080983","Variovorax sp. DAIF25"]]},{"id":"GTDB:s__Zymomonas_mobilis","l":"","na":1,"nb":9,"a":[["Zymomonas_Ecoli_Exometabolomics_Obligate_Mutualism.html","Zymomonas-E. coli Exometabolomics-Designed Obligate Mutualism"]],"b":[["NCBITaxon%3A542","Zymomonas mobilis"],["NCBITaxon%3A120045","Zymomonas mobilis subsp. mobilis"],["NCBITaxon%3A555217","Zymomonas mobilis subsp. mobilis ATCC 10988"],["NCBITaxon%3A627344","Zymomonas mobilis subsp. mobilis ATCC 29191"],["NCBITaxon%3A1231376","Zymomonas mobilis subsp. mobilis ATCC 31822"],["NCBITaxon%3A622759","Zymomonas mobilis subsp. mobilis NCIMB 11163"]]},{"id":"NCBITaxon:105983","l":"Apiotrichum","na":1,"nb":9,"a":[["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"]],"b":[["NCBITaxon%3A279327","Apiotrichum akiyoshidainum"],["NCBITaxon%3A82513","Apiotrichum brassicae"],["NCBITaxon%3A82514","Apiotrichum domesticum"],["NCBITaxon%3A1105092","Apiotrichum gamsii"],["NCBITaxon%3A82516","Apiotrichum gracile"],["NCBITaxon%3A82520","Apiotrichum laibachii"]]},{"id":"NCBITaxon:1064","l":"Rhodocyclus","na":1,"nb":9,"a":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"]],"b":[["NCBITaxon%3A2929842","Rhodocyclus gracilis"],["NCBITaxon%3A1067","Rhodocyclus purpureus"],["NCBITaxon%3A77788","Rhodocyclus sp."],["NCBITaxon%3A290800","Rhodocyclus sp. HOD 5"],["NCBITaxon%3A712523","Rhodocyclus sp. oral taxon 028"],["NCBITaxon%3A1206098","Rhodocyclus sp. UW 659-1-F08"]]},{"id":"NCBITaxon:1255","l":"Pediococcus pentosaceus","na":1,"nb":9,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["NCBITaxon%3A1254","Pediococcus acidilactici"],["NCBITaxon%3A114090","Pediococcus inopinatus"],["NCBITaxon%3A54062","Pediococcus parvulus"],["NCBITaxon%3A1255","Pediococcus pentosaceus"],["NCBITaxon%3A278197","Pediococcus pentosaceus ATCC 25745"],["NCBITaxon%3A1460385","Pediococcus pentosaceus CGMCC 7049"]]},{"id":"NCBITaxon:1264","l":"Hominimerdicola alba","na":1,"nb":9,"a":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic Rumen Consortium"]],"b":[["NCBITaxon%3A1264","Hominimerdicola alba"],["NCBITaxon%3A697329","Hominimerdicola alba 7 = DSM 20455"],["NCBITaxon%3A246199","Hominimerdicola alba 8"],["NCBITaxon%3A1384065","Hominimerdicola alba AD2013"],["NCBITaxon%3A1341156","Hominimerdicola alba SY3"],["NCBITaxon%3A1339594","Hominimerdicola alba TSDC17.2-1.1"]]},{"id":"NCBITaxon:1682","l":"Bifidobacterium longum subsp. infantis","na":1,"nb":9,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["NCBITaxon%3A1686","Bifidobacterium catenulatum"],["NCBITaxon%3A630129","Bifidobacterium catenulatum subsp. kashiwanohense"],["NCBITaxon%3A216816","Bifidobacterium longum"],["NCBITaxon%3A1682","Bifidobacterium longum subsp. infantis"],["NCBITaxon%3A565040","Bifidobacterium longum subsp. infantis 157F"],["NCBITaxon%3A391904","Bifidobacterium longum subsp. infantis ATCC 15697 = JCM 1222 = DSM 20088"]]},{"id":"NCBITaxon:1766253","l":"Agathobacter","na":1,"nb":9,"a":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["NCBITaxon%3A39491","Agathobacter rectalis"],["NCBITaxon%3A515619","Agathobacter rectalis ATCC 33656"],["NCBITaxon%3A1263079","Agathobacter rectalis CAG:36"],["NCBITaxon%3A657318","Agathobacter rectalis DSM 17629"],["NCBITaxon%3A657317","Agathobacter rectalis M104/1"],["NCBITaxon%3A1712665","Agathobacter ruminis"]]},{"id":"NCBITaxon:40413","l":"Desulforhopalus","na":1,"nb":9,"a":[["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"]],"b":[["NCBITaxon%3A3470062","Desulforhopalus glucosivorans"],["NCBITaxon%3A91360","Desulforhopalus singaporensis"],["NCBITaxon%3A1121418","Desulforhopalus singaporensis DSM 12130"],["NCBITaxon%3A2099376","Desulforhopalus sp."],["NCBITaxon%3A1824887","Desulforhopalus sp. 16SWWS2-2-3"],["NCBITaxon%3A2569543","Desulforhopalus sp. IMCC35007"]]},{"id":"NCBITaxon:64495","l":"Rhizopus arrhizus","na":1,"nb":9,"a":[["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"]],"b":[["NCBITaxon%3A64495","Rhizopus arrhizus"],["NCBITaxon%3A1279478","Rhizopus arrhizus 99-133"],["NCBITaxon%3A1279482","Rhizopus arrhizus 99-892"],["NCBITaxon%3A1274785","Rhizopus arrhizus B7407"],["NCBITaxon%3A1279480","Rhizopus arrhizus HUMC 02"],["NCBITaxon%3A1279475","Rhizopus arrhizus Type I NRRL 13440"]]},{"id":"NCBITaxon:80866","l":"Delftia acidovorans","na":1,"nb":9,"a":[["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["NCBITaxon%3A1872122","Acidovorax sp."],["NCBITaxon%3A80866","Delftia acidovorans"],["NCBITaxon%3A883100","Delftia acidovorans CCUG 15835"],["NCBITaxon%3A883101","Delftia acidovorans CCUG 274B"],["NCBITaxon%3A1218107","Delftia acidovorans NBRC 14950"],["NCBITaxon%3A1255679","Delftia acidovorans PCA12"]]},{"id":"NCBITaxon:96241","l":"Bacillus spizizenii","na":1,"nb":9,"a":[["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"]],"b":[["NCBITaxon%3A96241","Bacillus spizizenii"],["NCBITaxon%3A703612","Bacillus spizizenii ATCC 6633 = JCM 2499"],["NCBITaxon%3A1051503","Bacillus spizizenii DV1-B-1"],["NCBITaxon%3A932006","Bacillus spizizenii RFWG1A3"],["NCBITaxon%3A932005","Bacillus spizizenii RFWG1A4"],["NCBITaxon%3A932007","Bacillus spizizenii RFWG4C10"]]},{"id":"GTDB:s__Rhodobacter_capsulatus_B","l":"","na":1,"nb":8,"a":[["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"]],"b":[["NCBITaxon%3A1061","Rhodobacter capsulatus"],["NCBITaxon%3A1415162","Rhodobacter capsulatus B6"],["NCBITaxon%3A1415160","Rhodobacter capsulatus DE442"],["NCBITaxon%3A1415163","Rhodobacter capsulatus R121"],["NCBITaxon%3A272942","Rhodobacter capsulatus SB 1003"],["NCBITaxon%3A1415161","Rhodobacter capsulatus Y262"]]},{"id":"GTDB:s__Sphingobacterium_paramultivorum","l":"","na":1,"nb":8,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["NCBITaxon%3A2886510","Sphingobacterium paramultivorum"],["NCBITaxon%3A459529","Sphingobacterium siyangense"],["NCBITaxon%3A634159","Sphingobacterium siyangense subsp. cladoniae"],["NCBITaxon%3A341027","Sphingobacterium sp."],["NCBITaxon%3A2681401","Sphingobacterium sp. 18053"],["NCBITaxon%3A2940619","Sphingobacterium sp. BIGb0116"]]},{"id":"GTDB:s__Streptococcus_downei","l":"","na":1,"nb":8,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1317","Streptococcus downei"],["NCBITaxon%3A904293","Streptococcus downei F0415"],["NCBITaxon%3A764290","Streptococcus downei MFe28"],["NCBITaxon%3A1310","Streptococcus sobrinus"],["NCBITaxon%3A1074072","Streptococcus sobrinus TCI-348"],["NCBITaxon%3A1074073","Streptococcus sobrinus TCI-349"]]},{"id":"GTDB:s__Trichormus_sp000009705","l":"","na":1,"nb":8,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["NCBITaxon%3A2692878","Anabaena cylindrica FACHB-170"],["NCBITaxon%3A2692880","Anabaena cylindrica FACHB-318"],["NCBITaxon%3A3403436","Anabaena sp. FACHB-595"],["NCBITaxon%3A1086822","Anabaena sp. FACHB-709"],["NCBITaxon%3A103690","Nostoc sp. PCC 7120 = FACHB-418"],["NCBITaxon%3A2055761","Nostoc sp. UBA8866"]]},{"id":"GTDB:s__Weizmannia_coagulans","l":"","na":1,"nb":8,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"]],"b":[["NCBITaxon%3A1398","Heyndrickxia coagulans"],["NCBITaxon%3A941639","Heyndrickxia coagulans 2-6"],["NCBITaxon%3A1121088","Heyndrickxia coagulans DSM 1 = ATCC 7050"],["NCBITaxon%3A1236905","Heyndrickxia coagulans H-1"],["NCBITaxon%3A1071395","Heyndrickxia coagulans XZL4"],["NCBITaxon%3A2954554","Weizmannia sp. FSL W8-0401"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":1,"nb":8,"a":[["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"]],"b":[["NCBITaxon%3A1061","Rhodobacter capsulatus"],["NCBITaxon%3A1415162","Rhodobacter capsulatus B6"],["NCBITaxon%3A1415160","Rhodobacter capsulatus DE442"],["NCBITaxon%3A1415163","Rhodobacter capsulatus R121"],["NCBITaxon%3A272942","Rhodobacter capsulatus SB 1003"],["NCBITaxon%3A1415161","Rhodobacter capsulatus Y262"]]},{"id":"NCBITaxon:1272","l":"Kocuria varians","na":1,"nb":8,"a":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"]],"b":[["NCBITaxon%3A71999","Kocuria palustris"],["NCBITaxon%3A72000","Kocuria rhizophila"],["NCBITaxon%3A378753","Kocuria rhizophila DC2201"],["NCBITaxon%3A1871328","Kocuria sp."],["NCBITaxon%3A1272","Kocuria varians"],["NCBITaxon%3A1255672","Kocuria varians Mu208"]]},{"id":"NCBITaxon:155322","l":"Bacillus toyonensis","na":1,"nb":8,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A155322","Bacillus toyonensis"],["NCBITaxon%3A1415784","Bacillus toyonensis BCT-7112"],["NCBITaxon%3A2923195","Bacillus toyonensis biovar Thuringiensis"],["NCBITaxon%3A1195464","Bacillus toyonensis biovar Thuringiensis MC28"],["NCBITaxon%3A526981","Bacillus toyonensis Rock1-3"]]},{"id":"NCBITaxon:1655","l":"Actinomyces naeslundii","na":1,"nb":8,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A3050225","Actinomyces acetigenes"],["NCBITaxon%3A544581","Actinomyces johnsonii"],["NCBITaxon%3A1655","Actinomyces naeslundii"],["NCBITaxon%3A240017","Actinomyces naeslundii MG1"],["NCBITaxon%3A1115803","Actinomyces naeslundii str. Howell 279"],["NCBITaxon%3A544580","Actinomyces oris"]]},{"id":"NCBITaxon:40216","l":"Acinetobacter radioresistens","na":1,"nb":8,"a":[["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["NCBITaxon%3A40216","Acinetobacter radioresistens"],["NCBITaxon%3A981334","Acinetobacter radioresistens DSM 6976 = NBRC 102413 = CIP 103788"],["NCBITaxon%3A1217674","Acinetobacter radioresistens NIPH 2130"],["NCBITaxon%3A575589","Acinetobacter radioresistens SH164"],["NCBITaxon%3A596318","Acinetobacter radioresistens SK82"],["NCBITaxon%3A1221310","Acinetobacter radioresistens TG02010"]]},{"id":"NCBITaxon:5552","l":"Trichosporon","na":1,"nb":8,"a":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["NCBITaxon%3A82508","Trichosporon asahii"],["NCBITaxon%3A889963","Trichosporon asahii JCM 2466"],["NCBITaxon%3A82511","Trichosporon asteroides"],["NCBITaxon%3A5553","Trichosporon beigelii"],["NCBITaxon%3A82509","Trichosporon coremiiforme"],["NCBITaxon%3A82510","Trichosporon faecale"]]},{"id":"NCBITaxon:599737","l":"Wickerhamomyces","na":1,"nb":8,"a":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["NCBITaxon%3A1337057","Wickerhamomyces alni"],["NCBITaxon%3A36018","Wickerhamomyces bisporus"],["NCBITaxon%3A1156965","Wickerhamomyces canadensis"],["NCBITaxon%3A432112","Wickerhamomyces jianshihensis"],["NCBITaxon%3A2530061","Wickerhamomyces kurtzmanii"],["NCBITaxon%3A51924","Wickerhamomyces quercuum"]]},{"id":"NCBITaxon:648","l":"Aeromonas caviae","na":1,"nb":8,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["NCBITaxon%3A648","Aeromonas caviae"],["NCBITaxon%3A878320","Aeromonas caviae Ae398"],["NCBITaxon%3A1458270","Aeromonas caviae NM22"],["NCBITaxon%3A1458271","Aeromonas caviae NM33"],["NCBITaxon%3A3418572","Aeromonas caviae subsp. aquatica"],["NCBITaxon%3A644","Aeromonas hydrophila"]]},{"id":"NCBITaxon:94625","l":"Brucella intermedia","na":1,"nb":8,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["NCBITaxon%3A94625","Brucella intermedia"],["NCBITaxon%3A1337887","Brucella intermedia 229E"],["NCBITaxon%3A1444311","Brucella intermedia 2745-2"],["NCBITaxon%3A1328308","Brucella intermedia CCUG 57381"],["NCBITaxon%3A2975438","Brucella intermedia GD04153"],["NCBITaxon%3A903525","Brucella intermedia J2"]]},{"id":"GTDB:s__Bacillus_inaquosorum","l":"","na":1,"nb":7,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"]],"b":[["NCBITaxon%3A483913","Bacillus inaquosorum"],["NCBITaxon%3A1236548","Bacillus inaquosorum KCTC 13429"],["NCBITaxon%3A667304","Bacillus sp. G16"],["NCBITaxon%3A2055158","Bacillus sp. SN1"],["NCBITaxon%3A2834414","Bacillus sp. TSO22"],["NCBITaxon%3A1423","Bacillus subtilis"]]},{"id":"GTDB:s__Bradyrhizobium_japonicum_C","l":"","na":1,"nb":7,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"]],"b":[["NCBITaxon%3A375","Bradyrhizobium japonicum"],["NCBITaxon%3A376","Bradyrhizobium sp."],["NCBITaxon%3A1304878","Bradyrhizobium sp. in8p8"],["NCBITaxon%3A1304879","Bradyrhizobium sp. is5"],["NCBITaxon%3A1736363","Bradyrhizobium sp. Leaf396"],["NCBITaxon%3A2876564","Bradyrhizobium sp. Leaf401"]]},{"id":"GTDB:s__Phaeobacter_inhibens","l":"","na":1,"nb":7,"a":[["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"]],"b":[["NCBITaxon%3A221822","Phaeobacter inhibens"],["NCBITaxon%3A383629","Phaeobacter inhibens 2.10"],["NCBITaxon%3A999548","Phaeobacter inhibens DSM 16374"],["NCBITaxon%3A391619","Phaeobacter inhibens DSM 17395"],["NCBITaxon%3A2907240","Phaeobacter sp. BS34"],["NCBITaxon%3A2818494","Phaeobacter sp. HS011"]]},{"id":"GTDB:s__Prevotella_copri","l":"","na":1,"nb":7,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["NCBITaxon%3A59823","Prevotella sp."],["NCBITaxon%3A1947118","Prevotella sp. UBA2822"],["NCBITaxon%3A165179","Segatella copri"],["NCBITaxon%3A537011","Segatella copri DSM 18205"],["NCBITaxon%3A2974253","Segatella sp."],["NCBITaxon%3A159272","uncultured Prevotella sp."]]},{"id":"GTDB:s__Prochlorococcus_A_sp002026005","l":"","na":1,"nb":7,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A1219","Prochlorococcus marinus"],["NCBITaxon%3A2053475","Prochlorococcus marinus str. MU1414"],["NCBITaxon%3A2716485","Prochlorococcus marinus XMU1414"],["NCBITaxon%3A2774493","Prochlorococcus marinus XMU1420"],["NCBITaxon%3A2774497","Prochlorococcus marinus XMU1424"],["NCBITaxon%3A2162149","Prochlorococcus sp. AG-347-G18"]]},{"id":"GTDB:s__Prochlorococcus_A_sp003280965","l":"","na":1,"nb":7,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2774507","Prochlorococcus marinus CUG1434"],["NCBITaxon%3A2162105","Prochlorococcus sp. AG-355-B18"],["NCBITaxon%3A2162283","Prochlorococcus sp. AG-418-J19"],["NCBITaxon%3A2162294","Prochlorococcus sp. AG-424-A14"],["NCBITaxon%3A2162296","Prochlorococcus sp. AG-424-G03"],["NCBITaxon%3A1471454","Prochlorococcus sp. scB241_528J8"]]},{"id":"GTDB:s__Trichococcus_flocculiformis","l":"","na":1,"nb":7,"a":[["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["NCBITaxon%3A115547","uncultured archaeon"],["NCBITaxon%3A1903720","Bacilli bacterium"],["NCBITaxon%3A82803","Trichococcus flocculiformis"],["NCBITaxon%3A1985464","Trichococcus sp."],["NCBITaxon%3A872292","Trichococcus sp. ES5"],["NCBITaxon%3A1947762","Trichococcus sp. UBA802"]]},{"id":"NCBITaxon:120961","l":"Roseiflexus","na":1,"nb":7,"a":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]],"b":[["NCBITaxon%3A120962","Roseiflexus castenholzii"],["NCBITaxon%3A383372","Roseiflexus castenholzii DSM 13941"],["NCBITaxon%3A2562120","Roseiflexus sp."],["NCBITaxon%3A2814542","Roseiflexus sp. AH-315-K22"],["NCBITaxon%3A2609474","Roseiflexus sp. LECH5"],["NCBITaxon%3A357808","Roseiflexus sp. RS-1"]]},{"id":"NCBITaxon:129001","l":"Syntrophothermus","na":1,"nb":7,"a":[["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"]],"b":[["NCBITaxon%3A86170","Syntrophothermus lipocalidus"],["NCBITaxon%3A643648","Syntrophothermus lipocalidus DSM 12680"],["NCBITaxon%3A2736299","Syntrophothermus sp."],["NCBITaxon%3A1671631","Syntrophothermus sp. DTU052"],["NCBITaxon%3A1947645","Syntrophothermus sp. UBA1445"],["NCBITaxon%3A1947646","Syntrophothermus sp. UBA3927"]]},{"id":"NCBITaxon:1769012","l":"Arachidicoccus","na":1,"nb":7,"a":[["Tomato_Oxylipin_SynCom3.html","Tomato Oxylipin-Protective SynCom3"]],"b":[["NCBITaxon%3A1850526","Arachidicoccus ginsenosidimutans"],["NCBITaxon%3A496057","Arachidicoccus ginsenosidivorans"],["NCBITaxon%3A551991","Arachidicoccus rhizosphaerae"],["NCBITaxon%3A2341117","Arachidicoccus soli"],["NCBITaxon%3A1872624","Arachidicoccus sp."],["NCBITaxon%3A2875539","Arachidicoccus terrestris"]]},{"id":"NCBITaxon:1840214","l":"Lentimicrobium","na":1,"nb":7,"a":[["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"]],"b":[["NCBITaxon%3A1678841","Lentimicrobium saccharophilum"],["NCBITaxon%3A2034841","Lentimicrobium sp."],["NCBITaxon%3A2735916","Lentimicrobium sp. L6"],["NCBITaxon%3A2735872","Lentimicrobium sp. S6"],["NCBITaxon%3A2875483","Lentimicrobium sp. Zuar_12"],["NCBITaxon%3A2875482","Lentimicrobium sp. Zuar_5"]]},{"id":"NCBITaxon:2800685","l":"Pelagerythrobacter","na":1,"nb":7,"a":[["Pelagerythrobacter_Salinicola_PES_Pyrene_Degradation_SynCom.html","Pelagerythrobacter-Salinicola PES Pyrene-Degradation SynCom"]],"b":[["NCBITaxon%3A2306995","Pelagerythrobacter aerophilus"],["NCBITaxon%3A543877","Pelagerythrobacter marensis"],["NCBITaxon%3A538382","Pelagerythrobacter marinus"],["NCBITaxon%3A2268576","Pelagerythrobacter rhizovicinus"],["NCBITaxon%3A2800702","Pelagerythrobacter sp."],["NCBITaxon%3A3050438","Pelagerythrobacter sp. N7"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":1,"nb":7,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["NCBITaxon%3A34073","Variovorax paradoxus"],["NCBITaxon%3A1150395","Variovorax paradoxus 4MFCol3.1"],["NCBITaxon%3A1246301","Variovorax paradoxus B4"],["NCBITaxon%3A595537","Variovorax paradoxus EPS"],["NCBITaxon%3A1321610","Variovorax paradoxus NBRC 15149"],["NCBITaxon%3A543728","Variovorax paradoxus S110"]]},{"id":"NCBITaxon:353","l":"Azotobacter chroococcum","na":1,"nb":7,"a":[["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"]],"b":[["NCBITaxon%3A353","Azotobacter chroococcum"],["NCBITaxon%3A1328314","Azotobacter chroococcum NCIMB 8003"],["NCBITaxon%3A355","Azotobacter chroococcum (strain mcd 1)"],["NCBITaxon%3A2707774","Azotobacter chroococcum subsp. chroococcum"],["NCBITaxon%3A2528971","Azotobacter chroococcum subsp. isscasi"],["NCBITaxon%3A430797","Rubritalea spongiae"]]},{"id":"NCBITaxon:36910","l":"Clavispora","na":1,"nb":7,"a":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["NCBITaxon%3A255214","Clavispora asparagi"],["NCBITaxon%3A1519030","Clavispora carvajalis"],["NCBITaxon%3A46582","Clavispora fructus"],["NCBITaxon%3A36911","Clavispora lusitaniae"],["NCBITaxon%3A36912","Clavispora opuntiae"],["NCBITaxon%3A1212665","Clavispora phyllophila"]]},{"id":"NCBITaxon:40520","l":"Blautia obeum","na":1,"nb":7,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]],"b":[["NCBITaxon%3A40520","Blautia obeum"],["NCBITaxon%3A657314","Blautia obeum A2-162"],["NCBITaxon%3A411459","Blautia obeum ATCC 29174"],["NCBITaxon%3A1263107","Blautia obeum CAG:39"],["NCBITaxon%3A1339609","Blautia obeum TS7.1-1.1"],["NCBITaxon%3A1339610","Blautia obeum TS7.3-1.1"]]},{"id":"NCBITaxon:408","l":"Methylorubrum extorquens","na":1,"nb":7,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["NCBITaxon%3A408","Methylorubrum extorquens"],["NCBITaxon%3A272630","Methylorubrum extorquens AM1"],["NCBITaxon%3A440085","Methylorubrum extorquens CM4"],["NCBITaxon%3A661410","Methylorubrum extorquens DM4"],["NCBITaxon%3A882800","Methylorubrum extorquens DSM 13060"],["NCBITaxon%3A419610","Methylorubrum extorquens PA1"]]},{"id":"NCBITaxon:4948","l":"Torulaspora","na":1,"nb":7,"a":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]],"b":[["NCBITaxon%3A4950","Torulaspora delbrueckii"],["NCBITaxon%3A53488","Torulaspora franciscae"],["NCBITaxon%3A3680291","Torulaspora gathmanii"],["NCBITaxon%3A48254","Torulaspora globosa"],["NCBITaxon%3A200334","Torulaspora maleeae"],["NCBITaxon%3A1136883","Torulaspora microellipsoides"]]},{"id":"NCBITaxon:51669","l":"Tetragenococcus halophilus","na":1,"nb":7,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["NCBITaxon%3A1254","Pediococcus acidilactici"],["NCBITaxon%3A51669","Tetragenococcus halophilus"],["NCBITaxon%3A1004777","Tetragenococcus halophilus HO"],["NCBITaxon%3A945021","Tetragenococcus halophilus NBRC 12172"],["NCBITaxon%3A1513898","Tetragenococcus halophilus subsp. flandriensis"],["NCBITaxon%3A1513897","Tetragenococcus halophilus subsp. halophilus"]]},{"id":"NCBITaxon:54005","l":"Peptoniphilus harei","na":1,"nb":7,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["NCBITaxon%3A54005","Peptoniphilus harei"],["NCBITaxon%3A908338","Peptoniphilus harei ACS-146-V-Sch2b"],["NCBITaxon%3A1339588","Peptoniphilus harei TSDC10.1-1.1"],["NCBITaxon%3A1339589","Peptoniphilus harei TSDC10.1-2.1"],["NCBITaxon%3A1339590","Peptoniphilus harei TSDC17.1-1.1"],["NCBITaxon%3A1339591","Peptoniphilus harei TSDC17.1-2.1"]]},{"id":"NCBITaxon:930166","l":"Pseudomonas brassicacearum","na":1,"nb":7,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["NCBITaxon%3A29299","Nocardioides plantarum"],["NCBITaxon%3A930166","Pseudomonas brassicacearum"],["NCBITaxon%3A1050347","Pseudomonas brassicacearum 51MFCVI2.1"],["NCBITaxon%3A1403314","Pseudomonas brassicacearum PP1_210F"],["NCBITaxon%3A86264","Pseudomonas brassicacearum subsp. brassicacearum"],["NCBITaxon%3A994484","Pseudomonas brassicacearum subsp. brassicacearum NFM421"]]},{"id":"GTDB:s__Azotobacter_vinelandii","l":"","na":1,"nb":6,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["NCBITaxon%3A3083257","Azotobacter sp. NL3"],["NCBITaxon%3A354","Azotobacter vinelandii"],["NCBITaxon%3A1283330","Azotobacter vinelandii CA"],["NCBITaxon%3A1283331","Azotobacter vinelandii CA6"],["NCBITaxon%3A322710","Azotobacter vinelandii DJ"],["NCBITaxon%3A1314750","Azotobacter vinelandii NBRC 13581"]]},{"id":"GTDB:s__Brocadia_sinica","l":"","na":1,"nb":6,"a":[["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"]],"b":[["NCBITaxon%3A795830","Candidatus Brocadia sinica"],["NCBITaxon%3A1197129","Candidatus Brocadia sinica JPN1"],["NCBITaxon%3A2172549","Candidatus Brocadia sp."],["NCBITaxon%3A2164146","Candidatus Brocadia sp. AMX1"],["NCBITaxon%3A2293635","Candidatus Brocadia sp. AMX2"],["NCBITaxon%3A2026780","Planctomycetota bacterium"]]},{"id":"GTDB:s__Clostridium_B_tyrobutyricum","l":"","na":1,"nb":6,"a":[["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["NCBITaxon%3A1898204","Clostridiaceae bacterium"],["NCBITaxon%3A1946365","Clostridium sp. UBA4948"],["NCBITaxon%3A1519","Clostridium tyrobutyricum"],["NCBITaxon%3A1408889","Clostridium tyrobutyricum DIVETGP"],["NCBITaxon%3A1121342","Clostridium tyrobutyricum DSM 2637 = ATCC 25755 = JCM 11008"],["NCBITaxon%3A1212547","Clostridium tyrobutyricum UC7086"]]},{"id":"GTDB:s__Dehalococcoides_mccartyi_A","l":"","na":1,"nb":6,"a":[["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"]],"b":[["NCBITaxon%3A61435","Dehalococcoides mccartyi"],["NCBITaxon%3A1432059","Dehalococcoides mccartyi CG1"],["NCBITaxon%3A1388758","Dehalococcoides mccartyi GY50"],["NCBITaxon%3A311424","Dehalococcoides mccartyi VS"],["NCBITaxon%3A3151601","Dehalococcoides sp. THU3"],["NCBITaxon%3A1522671","Dehalococcoides sp. UCH007"]]},{"id":"GTDB:s__Paracoccus_pantotrophus","l":"","na":1,"nb":6,"a":[["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"]],"b":[["NCBITaxon%3A82367","Paracoccus pantotrophus"],["NCBITaxon%3A936051","Paracoccus pantotrophus J40"],["NCBITaxon%3A935565","Paracoccus pantotrophus J46"],["NCBITaxon%3A3110237","Paracoccus sp. APAP_BH8"],["NCBITaxon%3A3248840","Paracoccus sp. P2"],["NCBITaxon%3A3395918","Paracoccus sp. TD-10"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_I","l":"","na":1,"nb":6,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A167549","Prochlorococcus marinus str. MIT 9321"],["NCBITaxon%3A167550","Prochlorococcus marinus str. MIT 9322"],["NCBITaxon%3A167551","Prochlorococcus marinus str. MIT 9401"],["NCBITaxon%3A3082522","Prochlorococcus sp. MIT 9321"],["NCBITaxon%3A3082529","Prochlorococcus sp. MIT 9322"],["NCBITaxon%3A3082530","Prochlorococcus sp. MIT 9401"]]},{"id":"GTDB:s__Sinorhizobium_medicae","l":"","na":1,"nb":6,"a":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"]],"b":[["NCBITaxon%3A110321","Sinorhizobium medicae"],["NCBITaxon%3A1041148","Sinorhizobium medicae DI28"],["NCBITaxon%3A935558","Sinorhizobium medicae WSM1115"],["NCBITaxon%3A1041149","Sinorhizobium medicae WSM1369"],["NCBITaxon%3A1041150","Sinorhizobium medicae WSM244"],["NCBITaxon%3A366394","Sinorhizobium medicae WSM419"]]},{"id":"GTDB:s__Streptococcus_oralis_BW","l":"","na":1,"nb":6,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A2172545","Streptococcus halitosis"],["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1035190","Streptococcus oralis SK313"],["NCBITaxon%3A1077464","Streptococcus oralis subsp. tigurinus"],["NCBITaxon%3A936580","Streptococcus sp. CM6"],["NCBITaxon%3A83427","uncultured Streptococcus sp."]]},{"id":"GTDB:s__Thermoanaerobacter_pseudethanolicus","l":"","na":1,"nb":6,"a":[["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"]],"b":[["NCBITaxon%3A509193","Thermoanaerobacter brockii subsp. finnii Ako-1"],["NCBITaxon%3A496866","Thermoanaerobacter pseudethanolicus"],["NCBITaxon%3A340099","Thermoanaerobacter pseudethanolicus ATCC 33223"],["NCBITaxon%3A1755","Thermoanaerobacter sp."],["NCBITaxon%3A399726","Thermoanaerobacter sp. X514"],["NCBITaxon%3A29350","Thermoanaerobacter thermocopriae"]]},{"id":"GTDB:s__Thermotoga_maritima","l":"","na":1,"nb":6,"a":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]],"b":[["NCBITaxon%3A2336","Thermotoga maritima"],["NCBITaxon%3A243274","Thermotoga maritima MSB8"],["NCBITaxon%3A1157948","Thermotoga sp. 2812B"],["NCBITaxon%3A1348331","Thermotoga sp. A7A"],["NCBITaxon%3A1157949","Thermotoga sp. EMP"],["NCBITaxon%3A126740","Thermotoga sp. RQ2"]]},{"id":"NCBITaxon:1488","l":"Clostridium acetobutylicum","na":1,"nb":6,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["NCBITaxon%3A1488","Clostridium acetobutylicum"],["NCBITaxon%3A272562","Clostridium acetobutylicum ATCC 824"],["NCBITaxon%3A991791","Clostridium acetobutylicum DSM 1731"],["NCBITaxon%3A863638","Clostridium acetobutylicum EA 2018"],["NCBITaxon%3A1520","Clostridium beijerinckii"],["NCBITaxon%3A1506","Clostridium sp."]]},{"id":"NCBITaxon:1512","l":"[Clostridium] symbiosum","na":1,"nb":6,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["NCBITaxon%3A1506","Clostridium sp."],["NCBITaxon%3A1512","[Clostridium] symbiosum"],["NCBITaxon%3A411472","[Clostridium] symbiosum ATCC 14940"],["NCBITaxon%3A742740","[Clostridium] symbiosum WAL-14163"],["NCBITaxon%3A742741","[Clostridium] symbiosum WAL-14673"],["NCBITaxon%3A854","Fusobacterium russii"]]},{"id":"NCBITaxon:160791","l":"Rhizorhabdus wittichii","na":1,"nb":6,"a":[["Rhizorhabdus_Cupriavidus_BDE47_Degradation_SynCom.html","Rhizorhabdus-Cupriavidus BDE-47 Degradation SynCom"]],"b":[["NCBITaxon%3A160791","Rhizorhabdus wittichii"],["NCBITaxon%3A1283312","Rhizorhabdus wittichii DC-6"],["NCBITaxon%3A400971","Rhizorhabdus wittichii DP58"],["NCBITaxon%3A392499","Rhizorhabdus wittichii RW1"],["NCBITaxon%3A999380","Rhizorhabdus wittichii TTN3"],["NCBITaxon%3A999381","Rhizorhabdus wittichii TTNP3"]]},{"id":"NCBITaxon:2086","l":"Anaeroplasma","na":1,"nb":6,"a":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]],"b":[["NCBITaxon%3A2087","Anaeroplasma abactoclasticum"],["NCBITaxon%3A2088","Anaeroplasma bactoclasticum"],["NCBITaxon%3A2090","Anaeroplasma intermedium"],["NCBITaxon%3A1872523","Anaeroplasma sp."],["NCBITaxon%3A2089","Anaeroplasma varium"],["NCBITaxon%3A538969","uncultured Anaeroplasma sp."]]},{"id":"NCBITaxon:267818","l":"Lactobacillus kefiranofaciens","na":1,"nb":6,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["NCBITaxon%3A267818","Lactobacillus kefiranofaciens"],["NCBITaxon%3A190905","Lactobacillus kefiranofaciens subsp. kefiranofaciens"],["NCBITaxon%3A1423827","Lactobacillus kefiranofaciens subsp. kefiranofaciens DSM 5016 = JCM 6985"],["NCBITaxon%3A190906","Lactobacillus kefiranofaciens subsp. kefirgranum"],["NCBITaxon%3A1423828","Lactobacillus kefiranofaciens subsp. kefirgranum DSM 10550 = JCM 8572"],["NCBITaxon%3A1033837","Lactobacillus kefiranofaciens ZW3"]]},{"id":"NCBITaxon:28171","l":"Vibrio aestuarianus","na":1,"nb":6,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["NCBITaxon%3A28171","Vibrio aestuarianus"],["NCBITaxon%3A617129","Vibrio aestuarianus FF-238"],["NCBITaxon%3A1219075","Vibrio aestuarianus NBRC 15629"],["NCBITaxon%3A2725491","Vibrio aestuarianus subsp. aestuarianus"],["NCBITaxon%3A2807650","Vibrio aestuarianus subsp. cardii"],["NCBITaxon%3A1443279","Vibrio aestuarianus subsp. francensis"]]},{"id":"NCBITaxon:33039","l":"Mediterraneibacter torques","na":1,"nb":6,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A33039","Mediterraneibacter torques"],["NCBITaxon%3A411460","[Ruminococcus] torques ATCC 27756"],["NCBITaxon%3A1263108","[Ruminococcus] torques CAG:61"],["NCBITaxon%3A1422833","[Ruminococcus] torques IX-70"],["NCBITaxon%3A657313","[Ruminococcus] torques L2-14"],["NCBITaxon%3A1422834","[Ruminococcus] torques VIII-239"]]},{"id":"NCBITaxon:33905","l":"Bifidobacterium thermophilum","na":1,"nb":6,"a":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["NCBITaxon%3A650367","Bifidobacterium sp. JCM 7027"],["NCBITaxon%3A650368","Bifidobacterium sp. JCM 7028"],["NCBITaxon%3A33905","Bifidobacterium thermophilum"],["NCBITaxon%3A1437596","Bifidobacterium thermophilum DSM 20210"],["NCBITaxon%3A1410648","Bifidobacterium thermophilum DSM 20212"],["NCBITaxon%3A1254439","Bifidobacterium thermophilum RBL67"]]},{"id":"NCBITaxon:39645","l":"Mesorhizobium ciceri","na":1,"nb":6,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A39645","Mesorhizobium ciceri"],["NCBITaxon%3A278148","Mesorhizobium ciceri biovar biserrulae"],["NCBITaxon%3A765698","Mesorhizobium ciceri biovar biserrulae WSM1271"],["NCBITaxon%3A682633","Mesorhizobium ciceri ca181"],["NCBITaxon%3A1040980","Mesorhizobium ciceri CMG6"],["NCBITaxon%3A1040981","Mesorhizobium ciceri WSM4083"]]},{"id":"NCBITaxon:47880","l":"Pseudomonas fulva","na":1,"nb":6,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["NCBITaxon%3A157783","Pseudomonas cremoricolorata"],["NCBITaxon%3A1215098","Pseudomonas cremoricolorata DSM 17059 = NBRC 16634"],["NCBITaxon%3A47880","Pseudomonas fulva"],["NCBITaxon%3A743720","Pseudomonas fulva 12-X"],["NCBITaxon%3A1215102","Pseudomonas fulva NBRC 16637 = DSM 17717"],["NCBITaxon%3A306","Pseudomonas sp."]]},{"id":"GTDB:s__Flavobacterium_johnsoniae","l":"","na":1,"nb":5,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A986","Flavobacterium johnsoniae"],["NCBITaxon%3A376686","Flavobacterium johnsoniae UW101"],["NCBITaxon%3A3453866","Flavobacterium sp. 22076"],["NCBITaxon%3A3453953","Flavobacterium sp. 22659"],["NCBITaxon%3A3025667","Flavobacterium sp. KACC 22758"]]},{"id":"GTDB:s__Herbaspirillum_frisingense","l":"","na":1,"nb":5,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]],"b":[["NCBITaxon%3A92645","Herbaspirillum frisingense"],["NCBITaxon%3A864073","Herbaspirillum frisingense GSF30"],["NCBITaxon%3A2058884","Herbaspirillum sp. BH-1"],["NCBITaxon%3A2736666","Herbaspirillum sp. C7C2"],["NCBITaxon%3A1953765","Herbaspirillum sp. VT-16-41"]]},{"id":"GTDB:s__Lactobacillus_kefiranofaciens","l":"","na":1,"nb":5,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["NCBITaxon%3A267818","Lactobacillus kefiranofaciens"],["NCBITaxon%3A190905","Lactobacillus kefiranofaciens subsp. kefiranofaciens"],["NCBITaxon%3A1423827","Lactobacillus kefiranofaciens subsp. kefiranofaciens DSM 5016 = JCM 6985"],["NCBITaxon%3A190906","Lactobacillus kefiranofaciens subsp. kefirgranum"],["NCBITaxon%3A1423828","Lactobacillus kefiranofaciens subsp. kefirgranum DSM 10550 = JCM 8572"]]},{"id":"GTDB:s__Marinobacter_adhaerens","l":"","na":1,"nb":5,"a":[["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]],"b":[["NCBITaxon%3A1916082","Alteromonadaceae bacterium"],["NCBITaxon%3A1033846","Marinobacter adhaerens"],["NCBITaxon%3A225937","Marinobacter adhaerens HP15"],["NCBITaxon%3A2485141","Marinobacter sp. 3-2"],["NCBITaxon%3A1766722","Marinobacter sp. YWL01"]]},{"id":"GTDB:s__Methanosarcina_barkeri_B","l":"","na":5,"nb":1,"a":[["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["DVM_Triculture.html","DVM Tri-culture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["NCBITaxon%3A1434109","Methanosarcina barkeri str. Wiesmoor"]]},{"id":"GTDB:s__Methylobacterium_thiocyanatum","l":"","na":1,"nb":5,"a":[["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"]],"b":[["NCBITaxon%3A2021371","Methylobacteriaceae bacterium"],["NCBITaxon%3A2699470","Methylobacterium sp. ISTM1"],["NCBITaxon%3A223967","Methylorubrum populi"],["NCBITaxon%3A441620","Methylorubrum populi BJ001"],["NCBITaxon%3A47958","Methylorubrum thiocyanatum"]]},{"id":"GTDB:s__Neorhizobium_tomejilense","l":"","na":1,"nb":5,"a":[["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["NCBITaxon%3A323656","Neorhizobium galegae bv. officinalis"],["NCBITaxon%3A2093830","Neorhizobium sp. T25_13"],["NCBITaxon%3A2093831","Neorhizobium sp. T25_27"],["NCBITaxon%3A2093832","Neorhizobium sp. T7_12"],["NCBITaxon%3A2093828","Neorhizobium tomejilense"]]},{"id":"GTDB:s__Pelosinus_fermentans","l":"","na":1,"nb":5,"a":[["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"]],"b":[["NCBITaxon%3A365349","Pelosinus fermentans"],["NCBITaxon%3A1149860","Pelosinus fermentans A11"],["NCBITaxon%3A1149862","Pelosinus fermentans B4"],["NCBITaxon%3A1122947","Pelosinus fermentans DSM 17108"],["NCBITaxon%3A1235479","Pelosinus sp. HCF1"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_N","l":"","na":1,"nb":5,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A59921","Prochlorococcus marinus str. MIT 9107"],["NCBITaxon%3A167544","Prochlorococcus marinus str. MIT 9116"],["NCBITaxon%3A167545","Prochlorococcus marinus str. MIT 9123"],["NCBITaxon%3A3082533","Prochlorococcus sp. MIT 9116"],["NCBITaxon%3A3082523","Prochlorococcus sp. MIT 9123"]]},{"id":"GTDB:s__Streptococcus_dentisani","l":"","na":1,"nb":5,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A28037","Streptococcus mitis"],["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1458253","Streptococcus oralis subsp. dentisani"],["NCBITaxon%3A1297857","Streptococcus oralis subsp. dentisani 7747"],["NCBITaxon%3A563037","Streptococcus sp. M143"]]},{"id":"GTDB:s__Streptococcus_oralis","l":"","na":1,"nb":5,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A655813","Streptococcus oralis ATCC 35037"],["NCBITaxon%3A1095739","Streptococcus oralis SK10"],["NCBITaxon%3A1891914","Streptococcus oralis subsp. oralis"],["NCBITaxon%3A83427","uncultured Streptococcus sp."]]},{"id":"GTDB:s__Streptococcus_oralis_AC","l":"","na":1,"nb":5,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A28037","Streptococcus mitis"],["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1458253","Streptococcus oralis subsp. dentisani"],["NCBITaxon%3A1297534","Streptococcus oralis subsp. dentisani 7746"],["NCBITaxon%3A77133","uncultured bacterium"]]},{"id":"GTDB:s__Streptococcus_oralis_F","l":"","na":1,"nb":5,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1077464","Streptococcus oralis subsp. tigurinus"],["NCBITaxon%3A1282665","Streptococcus oralis subsp. tigurinus 1366"],["NCBITaxon%3A1333864","Streptococcus oralis subsp. tigurinus 2425"],["NCBITaxon%3A1333865","Streptococcus oralis subsp. tigurinus 2426"]]},{"id":"GTDB:s__Streptococcus_oralis_W","l":"","na":1,"nb":5,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1095738","Streptococcus oralis SK1074"],["NCBITaxon%3A1161414","Streptococcus sp. BS21"],["NCBITaxon%3A1161415","Streptococcus sp. BS29a"],["NCBITaxon%3A1105032","Streptococcus sp. BS35b"]]},{"id":"GTDB:s__Thermacetogenium_phaeum","l":"","na":1,"nb":5,"a":[["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]],"b":[["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A2044939","Clostridia bacterium"],["NCBITaxon%3A85874","Thermacetogenium phaeum"],["NCBITaxon%3A1089553","Thermacetogenium phaeum DSM 12270"],["NCBITaxon%3A2883543","Thermacetogenium sp."]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":1,"nb":5,"a":[["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["NCBITaxon%3A119219","Cupriavidus metallidurans"],["NCBITaxon%3A266264","Cupriavidus metallidurans CH34"],["NCBITaxon%3A1395123","Cupriavidus metallidurans H1130"],["NCBITaxon%3A1218106","Cupriavidus metallidurans NBRC 101272"],["NCBITaxon%3A1873897","Cupriavidus sp."]]},{"id":"NCBITaxon:13366","l":"Brettanomyces","na":1,"nb":5,"a":[["Kombucha_KMC_IMBG1_Fermentation_Community.html","Kombucha KMC-IMBG1 Fermentation Community"]],"b":[["NCBITaxon%3A37662","Brettanomyces anomalus"],["NCBITaxon%3A5007","Brettanomyces bruxellensis"],["NCBITaxon%3A13368","Brettanomyces custersianus"],["NCBITaxon%3A13370","Brettanomyces naardenensis"],["NCBITaxon%3A13502","Brettanomyces nanus"]]},{"id":"NCBITaxon:1501","l":"Clostridium pasteurianum","na":1,"nb":5,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["NCBITaxon%3A1501","Clostridium pasteurianum"],["NCBITaxon%3A86416","Clostridium pasteurianum BC1"],["NCBITaxon%3A1262449","Clostridium pasteurianum DSM 525 = ATCC 6013"],["NCBITaxon%3A1341159","Clostridium pasteurianum TK"],["NCBITaxon%3A1506","Clostridium sp."]]},{"id":"NCBITaxon:1521555","l":"Eucapsis","na":1,"nb":5,"a":[["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"]],"b":[["NCBITaxon%3A1521556","Eucapsis minor"],["NCBITaxon%3A1521638","Eucapsis minor SAG 14.99"],["NCBITaxon%3A1929276","Eucapsis sp. 019"],["NCBITaxon%3A2975497","Eucapsis sp. M64187e-7883"],["NCBITaxon%3A2094040","Eucapsis sp. UTEX LB 1519"]]},{"id":"NCBITaxon:1589","l":"Lactiplantibacillus pentosus","na":1,"nb":5,"a":[["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["NCBITaxon%3A1589","Lactiplantibacillus pentosus"],["NCBITaxon%3A1423791","Lactiplantibacillus pentosus DSM 20314"],["NCBITaxon%3A1042160","Lactiplantibacillus pentosus IG1"],["NCBITaxon%3A1136177","Lactiplantibacillus pentosus KCA1"],["NCBITaxon%3A1028490","Lactiplantibacillus pentosus MP-10"]]},{"id":"NCBITaxon:1648923","l":"Bacillus paralicheniformis","na":1,"nb":5,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"]],"b":[["NCBITaxon%3A1402","Bacillus licheniformis"],["NCBITaxon%3A3450803","Bacillus [licheniformis] CMCC 63516"],["NCBITaxon%3A1648923","Bacillus paralicheniformis"],["NCBITaxon%3A766760","Bacillus paralicheniformis ATCC 9945a"],["NCBITaxon%3A1413213","Bacillus paralicheniformis G-1"]]},{"id":"NCBITaxon:295577","l":"Chthoniobacter","na":1,"nb":5,"a":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"]],"b":[["NCBITaxon%3A191863","Chthoniobacter flavus"],["NCBITaxon%3A497964","Chthoniobacter flavus Ellin428"],["NCBITaxon%3A2510640","Chthoniobacter sp."],["NCBITaxon%3A1970334","Chthoniobacter sp. 12-60-6"],["NCBITaxon%3A1133324","uncultured Chthoniobacter sp."]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":1,"nb":5,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["NCBITaxon%3A354","Azotobacter vinelandii"],["NCBITaxon%3A1283330","Azotobacter vinelandii CA"],["NCBITaxon%3A1283331","Azotobacter vinelandii CA6"],["NCBITaxon%3A322710","Azotobacter vinelandii DJ"],["NCBITaxon%3A1314750","Azotobacter vinelandii NBRC 13581"]]},{"id":"NCBITaxon:545","l":"Citrobacter koseri","na":1,"nb":5,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["NCBITaxon%3A545","Citrobacter koseri"],["NCBITaxon%3A1308729","Citrobacter koseri ADL-326"],["NCBITaxon%3A1308730","Citrobacter koseri ADL-328"],["NCBITaxon%3A290338","Citrobacter koseri ATCC BAA-895"],["NCBITaxon%3A573","Klebsiella pneumoniae"]]},{"id":"NCBITaxon:5544","l":"Trichoderma harzianum","na":5,"nb":1,"a":[["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"],["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"],["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["NCBITaxon%3A5544","Trichoderma harzianum"]]},{"id":"NCBITaxon:61648","l":"Kluyvera intermedia","na":1,"nb":5,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["NCBITaxon%3A1896336","Citrobacter sp."],["NCBITaxon%3A61648","Kluyvera intermedia"],["NCBITaxon%3A1218113","Kluyvera intermedia NBRC 102594 = ATCC 33110"],["NCBITaxon%3A1255704","Kluyvera intermedia TL336_A"],["NCBITaxon%3A1539298","Treponema sp. OMZ 838"]]},{"id":"NCBITaxon:74969","l":"Ferroplasma acidiphilum","na":5,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["NCBITaxon%3A74969","Ferroplasma acidiphilum"]]},{"id":"NCBITaxon:76759","l":"Pseudomonas monteilii","na":1,"nb":5,"a":[["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"]],"b":[["NCBITaxon%3A76759","Pseudomonas monteilii"],["NCBITaxon%3A1215110","Pseudomonas monteilii NBRC 103158 = DSM 14164"],["NCBITaxon%3A1123524","Pseudomonas monteilii QM"],["NCBITaxon%3A1435044","Pseudomonas monteilii SB3078"],["NCBITaxon%3A1435058","Pseudomonas monteilii SB3101"]]},{"id":"NCBITaxon:82367","l":"Paracoccus pantotrophus","na":1,"nb":5,"a":[["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"]],"b":[["NCBITaxon%3A266","Paracoccus denitrificans"],["NCBITaxon%3A1302247","Paracoccus denitrificans JCM 21484"],["NCBITaxon%3A82367","Paracoccus pantotrophus"],["NCBITaxon%3A936051","Paracoccus pantotrophus J40"],["NCBITaxon%3A935565","Paracoccus pantotrophus J46"]]},{"id":"NCBITaxon:86664","l":"Priestia flexa","na":1,"nb":5,"a":[["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"]],"b":[["NCBITaxon%3A86664","Priestia flexa"],["NCBITaxon%3A1169142","Priestia flexa 121MFChir2"],["NCBITaxon%3A1292043","Priestia flexa 27Col1.1E"],["NCBITaxon%3A1348625","Priestia flexa NBRC 15715"],["NCBITaxon%3A1444310","Priestia flexa T6186-2"]]},{"id":"NCBITaxon:876","l":"Desulfovibrio desulfuricans","na":1,"nb":5,"a":[["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"]],"b":[["NCBITaxon%3A876","Desulfovibrio desulfuricans"],["NCBITaxon%3A525146","Desulfovibrio desulfuricans ATCC 27774"],["NCBITaxon%3A1121445","Desulfovibrio desulfuricans DSM 642"],["NCBITaxon%3A885","Desulfovibrio sp."],["NCBITaxon%3A126333","Halodesulfovibrio aestuarii"]]},{"id":"NCBITaxon:986","l":"Flavobacterium johnsoniae","na":1,"nb":5,"a":[["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A2704140","Flavobacterium bizetiae"],["NCBITaxon%3A986","Flavobacterium johnsoniae"],["NCBITaxon%3A994","Flavobacterium johnsoniae subsp. aurantiacum"],["NCBITaxon%3A376686","Flavobacterium johnsoniae UW101"],["NCBITaxon%3A1337839","Flavobacterium sp. DSM 425"]]},{"id":"GTDB:s__Acidocella_facilis","l":"","na":1,"nb":4,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"]],"b":[["NCBITaxon%3A525","Acidocella facilis"],["NCBITaxon%3A1408419","Acidocella facilis ATCC 35904"],["NCBITaxon%3A1214225","Acidocella sp. MX-AZ02"],["NCBITaxon%3A2697363","Acidocella sp. MX-AZ03"]]},{"id":"GTDB:s__Caldibacillus_debilis","l":"","na":1,"nb":4,"a":[["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"]],"b":[["NCBITaxon%3A1889774","Bacillaceae bacterium"],["NCBITaxon%3A301148","Caldibacillus debilis"],["NCBITaxon%3A1121917","Caldibacillus debilis DSM 16016"],["NCBITaxon%3A1339248","Caldibacillus debilis GB1"]]},{"id":"GTDB:s__Caldicellulosiruptor_acetigenus","l":"","na":1,"nb":4,"a":[["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"]],"b":[["NCBITaxon%3A301953","Caldicellulosiruptor acetigenus"],["NCBITaxon%3A632516","Caldicellulosiruptor acetigenus 6A"],["NCBITaxon%3A1121259","Caldicellulosiruptor acetigenus DSM 7040"],["NCBITaxon%3A632335","Caldicellulosiruptor acetigenus I77R1B"]]},{"id":"GTDB:s__Caldicellulosiruptor_saccharolyticus","l":"","na":1,"nb":4,"a":[["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"]],"b":[["NCBITaxon%3A44001","Caldicellulosiruptor saccharolyticus"],["NCBITaxon%3A351627","Caldicellulosiruptor saccharolyticus DSM 8903"],["NCBITaxon%3A3019889","Caldicellulosiruptor sp. DIB 104C"],["NCBITaxon%3A1214564","Caldicellulosiruptor sp. F32"]]},{"id":"GTDB:s__Cupriavidus_necator_D","l":"","na":1,"nb":4,"a":[["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"]],"b":[["NCBITaxon%3A106590","Cupriavidus necator"],["NCBITaxon%3A381666","Cupriavidus necator H16"],["NCBITaxon%3A1218105","Cupriavidus necator NBRC 102504"],["NCBITaxon%3A1229514","Cupriavidus sp. GA3-3"]]},{"id":"GTDB:s__Hydrogenophaga_pseudoflava","l":"","na":1,"nb":4,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["NCBITaxon%3A47421","Hydrogenophaga pseudoflava"],["NCBITaxon%3A1349792","Hydrogenophaga pseudoflava NBRC 102511"],["NCBITaxon%3A1882399","Hydrogenophaga sp. H7"],["NCBITaxon%3A2184519","Hydrogenophaga sp. NH-16"]]},{"id":"GTDB:s__Hyphomicrobium_C_zavarzinii","l":"","na":1,"nb":4,"a":[["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["NCBITaxon%3A82","Hyphomicrobium sp."],["NCBITaxon%3A3019544","Hyphomicrobium sp. DMF-1"],["NCBITaxon%3A48292","Hyphomicrobium zavarzinii"],["NCBITaxon%3A1267005","Hyphomicrobium zavarzinii ATCC 27496"]]},{"id":"GTDB:s__Methylobacterium_tardum","l":"","na":1,"nb":4,"a":[["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"]],"b":[["NCBITaxon%3A1909294","Hyphomicrobiales bacterium"],["NCBITaxon%3A2817895","Methylobacterium sp. OAE515"],["NCBITaxon%3A374432","Methylobacterium tardum"],["NCBITaxon%3A157278","uncultured Methylobacterium sp."]]},{"id":"GTDB:s__Nostoc_muscorum_A","l":"","na":1,"nb":4,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["NCBITaxon%3A2692907","Desmonostoc muscorum FACHB-395"],["NCBITaxon%3A76335","Nostoc sp. ATCC 53789"],["NCBITaxon%3A2576903","Nostoc sp. C057"],["NCBITaxon%3A3349876","Nostoc sp. C110"]]},{"id":"GTDB:s__Paenibacillus_G_mucilaginosus","l":"","na":1,"nb":4,"a":[["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["NCBITaxon%3A61624","Paenibacillus mucilaginosus"],["NCBITaxon%3A1116391","Paenibacillus mucilaginosus 3016"],["NCBITaxon%3A997761","Paenibacillus mucilaginosus K02"],["NCBITaxon%3A1036673","Paenibacillus mucilaginosus KNP414"]]},{"id":"GTDB:s__Paraburkholderia_caribensis","l":"","na":1,"nb":4,"a":[["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"]],"b":[["NCBITaxon%3A1561197","Burkholderia sp. E7m48"],["NCBITaxon%3A75105","Paraburkholderia caribensis"],["NCBITaxon%3A1323664","Paraburkholderia caribensis MBA4"],["NCBITaxon%3A2831520","Paraburkholderia sp. XV"]]},{"id":"GTDB:s__Paracoccus_denitrificans","l":"","na":1,"nb":4,"a":[["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"]],"b":[["NCBITaxon%3A266","Paracoccus denitrificans"],["NCBITaxon%3A318586","Paracoccus denitrificans PD1222"],["NCBITaxon%3A267","Paracoccus sp. (in: a-proteobacteria)"],["NCBITaxon%3A3050636","Paracoccus sp. SSJ"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_E","l":"","na":1,"nb":4,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A167546","Prochlorococcus marinus str. MIT 9301"],["NCBITaxon%3A2162170","Prochlorococcus sp. AG-355-P15"],["NCBITaxon%3A3082524","Prochlorococcus sp. MIT 1205"],["NCBITaxon%3A3082525","Prochlorococcus sp. MIT 1304"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_V","l":"","na":1,"nb":4,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A1219","Prochlorococcus marinus"],["NCBITaxon%3A2774503","Prochlorococcus marinus CUG1430"],["NCBITaxon%3A2053473","Prochlorococcus marinus str. MU1411"],["NCBITaxon%3A2716483","Prochlorococcus marinus XMU1411"]]},{"id":"GTDB:s__Streptococcus_mitis","l":"","na":1,"nb":4,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A28037","Streptococcus mitis"],["NCBITaxon%3A1415766","Streptococcus mitis 27/7"],["NCBITaxon%3A246201","Streptococcus mitis NCTC 12261"],["NCBITaxon%3A1403937","Streptococcus sp. DORA_10"]]},{"id":"GTDB:s__Streptococcus_mitis_N","l":"","na":1,"nb":4,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A28037","Streptococcus mitis"],["NCBITaxon%3A1035187","Streptococcus mitis SK569"],["NCBITaxon%3A1095735","Streptococcus mitis SK616"],["NCBITaxon%3A257758","Streptococcus pseudopneumoniae"]]},{"id":"GTDB:s__Streptococcus_oralis_E","l":"","na":1,"nb":4,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1077464","Streptococcus oralis subsp. tigurinus"],["NCBITaxon%3A1282664","Streptococcus oralis subsp. tigurinus AZ_3a"],["NCBITaxon%3A83427","uncultured Streptococcus sp."]]},{"id":"GTDB:s__Streptococcus_oralis_T","l":"","na":1,"nb":4,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1005704","Streptococcus oralis SK255"],["NCBITaxon%3A1077464","Streptococcus oralis subsp. tigurinus"],["NCBITaxon%3A864570","Streptococcus sp. oral taxon 071 str. 73H25AP"]]},{"id":"GTDB:s__Streptococcus_salivarius","l":"","na":1,"nb":4,"a":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]],"b":[["NCBITaxon%3A1335","Streptococcus equinus"],["NCBITaxon%3A1304","Streptococcus salivarius"],["NCBITaxon%3A1263109","Streptococcus salivarius CAG:79"],["NCBITaxon%3A1581080","Streptococcus sp. HMSC10E12"]]},{"id":"GTDB:s__Syntrophus_aciditrophicus","l":"","na":1,"nb":4,"a":[["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"]],"b":[["NCBITaxon%3A1961443","Syntrophaceae bacterium UBA5726"],["NCBITaxon%3A316277","Syntrophus aciditrophicus"],["NCBITaxon%3A56780","Syntrophus aciditrophicus SB"],["NCBITaxon%3A1823758","Syntrophus sp. PtaB.Bin075"]]},{"id":"GTDB:s__Thermoanaerobacterium_thermosaccharolyticum","l":"","na":1,"nb":4,"a":[["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]],"b":[["NCBITaxon%3A1517","Thermoanaerobacterium thermosaccharolyticum"],["NCBITaxon%3A580327","Thermoanaerobacterium thermosaccharolyticum DSM 571"],["NCBITaxon%3A698948","Thermoanaerobacterium thermosaccharolyticum M0795"],["NCBITaxon%3A937254","Thermohydrogenium kirishiense"]]},{"id":"GTDB:s__Variovorax_paradoxus","l":"","na":1,"nb":4,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["NCBITaxon%3A34073","Variovorax paradoxus"],["NCBITaxon%3A1150395","Variovorax paradoxus 4MFCol3.1"],["NCBITaxon%3A1321610","Variovorax paradoxus NBRC 15149"],["NCBITaxon%3A3065953","Variovorax sp. V116"]]},{"id":"GTDB:s__Variovorax_paradoxus_C","l":"","na":1,"nb":4,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["NCBITaxon%3A436515","Variovorax boronicumulans"],["NCBITaxon%3A595537","Variovorax paradoxus EPS"],["NCBITaxon%3A3042309","Variovorax sp. W1I1"],["NCBITaxon%3A3042290","Variovorax sp. W2I14"]]},{"id":"NCBITaxon:1183412","l":"Agrobacterium deltae","na":1,"nb":4,"a":[["SynCom_Y_Agrobacterium_Bacillus_Biofilm_Biocontrol_Coculture.html","SynCom Y Agrobacterium-Bacillus Biofilm Biocontrol Co-culture"]],"b":[["NCBITaxon%3A1183412","Agrobacterium deltae"],["NCBITaxon%3A1183425","Agrobacterium deltaense NCPPB 1641"],["NCBITaxon%3A1183426","Agrobacterium deltaense RV3"],["NCBITaxon%3A1183427","Agrobacterium deltaense Zutra 3/1"]]},{"id":"NCBITaxon:1249","l":"Weissella paramesenteroides","na":1,"nb":4,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["NCBITaxon%3A1930076","Leuconostoc sp."],["NCBITaxon%3A46256","Weissella hellenica"],["NCBITaxon%3A1249","Weissella paramesenteroides"],["NCBITaxon%3A585506","Weissella paramesenteroides ATCC 33313"]]},{"id":"NCBITaxon:132919","l":"Rhodococcus jostii","na":1,"nb":4,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["NCBITaxon%3A1850366","Paenibacillus rhizophilus"],["NCBITaxon%3A132919","Rhodococcus jostii"],["NCBITaxon%3A1219017","Rhodococcus jostii NBRC 16295"],["NCBITaxon%3A101510","Rhodococcus jostii RHA1"]]},{"id":"NCBITaxon:1517","l":"Thermoanaerobacterium thermosaccharolyticum","na":1,"nb":4,"a":[["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]],"b":[["NCBITaxon%3A1517","Thermoanaerobacterium thermosaccharolyticum"],["NCBITaxon%3A698949","Thermoanaerobacterium thermosaccharolyticum 33"],["NCBITaxon%3A580327","Thermoanaerobacterium thermosaccharolyticum DSM 571"],["NCBITaxon%3A698948","Thermoanaerobacterium thermosaccharolyticum M0795"]]},{"id":"NCBITaxon:1519","l":"Clostridium tyrobutyricum","na":1,"nb":4,"a":[["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["NCBITaxon%3A1519","Clostridium tyrobutyricum"],["NCBITaxon%3A1408889","Clostridium tyrobutyricum DIVETGP"],["NCBITaxon%3A1121342","Clostridium tyrobutyricum DSM 2637 = ATCC 25755 = JCM 11008"],["NCBITaxon%3A1212547","Clostridium tyrobutyricum UC7086"]]},{"id":"NCBITaxon:1673","l":"Rhizobium viscosum","na":1,"nb":4,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A1281486","Lactococcus formosensis"],["NCBITaxon%3A1850438","Lactococcus formosensis subsp. bovis"],["NCBITaxon%3A1673","Rhizobium viscosum"],["NCBITaxon%3A83428","uncultured Bacillus sp."]]},{"id":"NCBITaxon:172042","l":"Rothia aeria","na":1,"nb":4,"a":[["FourSpecies_Aerobic_Lung_Microbiome_Model.html","Four-Species Aerobic Lung Microbiome Model"]],"b":[["NCBITaxon%3A172042","Rothia aeria"],["NCBITaxon%3A888019","Rothia aeria F0184"],["NCBITaxon%3A1125724","Rothia aeria F0474"],["NCBITaxon%3A2047","Rothia dentocariosa"]]},{"id":"NCBITaxon:192","l":"Azospirillum brasilense","na":1,"nb":4,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"]],"b":[["NCBITaxon%3A1064539","Azospirillum baldaniorum"],["NCBITaxon%3A192","Azospirillum brasilense"],["NCBITaxon%3A1117321","Azospirillum brasilense CBG497"],["NCBITaxon%3A1262469","Azospirillum brasilense FP2"]]},{"id":"NCBITaxon:252970","l":"Paraburkholderia phenoliruptrix","na":1,"nb":4,"a":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]],"b":[["NCBITaxon%3A252970","Paraburkholderia phenoliruptrix"],["NCBITaxon%3A1337996","Paraburkholderia phenoliruptrix AC1100"],["NCBITaxon%3A1229205","Paraburkholderia phenoliruptrix BR3459a"],["NCBITaxon%3A1926495","Paraburkholderia sp."]]},{"id":"NCBITaxon:258","l":"Sphingobacterium spiritivorum","na":1,"nb":4,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["NCBITaxon%3A649196","Sphingobacterium hotanense"],["NCBITaxon%3A258","Sphingobacterium spiritivorum"],["NCBITaxon%3A525372","Sphingobacterium spiritivorum ATCC 33300"],["NCBITaxon%3A525373","Sphingobacterium spiritivorum ATCC 33861"]]},{"id":"NCBITaxon:2597222","l":"Candidatus Acidulidesulfobacterium","na":1,"nb":4,"a":[["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["NCBITaxon%3A2597224","Candidatus Acidulidesulfobacterium acidiphilum"],["NCBITaxon%3A2597223","Candidatus Acidulidesulfobacterium ferriphilum"],["NCBITaxon%3A2940279","Candidatus Acidulodesulfobacterium sp."],["NCBITaxon%3A3395470","Candidatus Acidulodesulfobacterium sp. H_13"]]},{"id":"NCBITaxon:29442","l":"Pseudomonas tolaasii","na":1,"nb":4,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["NCBITaxon%3A29442","Pseudomonas tolaasii"],["NCBITaxon%3A1161101","Pseudomonas tolaasii 6264"],["NCBITaxon%3A564423","Pseudomonas tolaasii NCPPB 2192"],["NCBITaxon%3A1030145","Pseudomonas tolaasii PMS117"]]},{"id":"NCBITaxon:33010","l":"Cutibacterium avidum","na":1,"nb":4,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["NCBITaxon%3A33010","Cutibacterium avidum"],["NCBITaxon%3A1170318","Cutibacterium avidum 44067"],["NCBITaxon%3A997355","Cutibacterium avidum ATCC 25577"],["NCBITaxon%3A1292372","Cutibacterium avidum TM16"]]},{"id":"NCBITaxon:33011","l":"Cutibacterium granulosum","na":1,"nb":4,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["NCBITaxon%3A33011","Cutibacterium granulosum"],["NCBITaxon%3A1160719","Cutibacterium granulosum DSM 20700"],["NCBITaxon%3A553200","Cutibacterium granulosum JCVIHMP029"],["NCBITaxon%3A1292373","Cutibacterium granulosum TM11"]]},{"id":"NCBITaxon:380021","l":"Pseudomonas protegens","na":1,"nb":4,"a":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]],"b":[["NCBITaxon%3A380021","Pseudomonas protegens"],["NCBITaxon%3A1420599","Pseudomonas protegens Cab57"],["NCBITaxon%3A1124983","Pseudomonas protegens CHA0"],["NCBITaxon%3A220664","Pseudomonas protegens Pf-5"]]},{"id":"NCBITaxon:5480","l":"Lodderomyces parapsilosis","na":1,"nb":4,"a":[["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"]],"b":[["NCBITaxon%3A48076","Marinobacterium iners"],["NCBITaxon%3A5480","Lodderomyces parapsilosis"],["NCBITaxon%3A1231521","Lodderomyces parapsilosis CAB50-2638"],["NCBITaxon%3A578454","Lodderomyces parapsilosis CDC317"]]},{"id":"NCBITaxon:59814","l":"Pantoea dispersa","na":1,"nb":4,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["NCBITaxon%3A59814","Pantoea dispersa"],["NCBITaxon%3A1440057","Pantoea dispersa 625"],["NCBITaxon%3A1358411","Pantoea dispersa EGD-AAK13"],["NCBITaxon%3A69393","Pantoea sp."]]},{"id":"NCBITaxon:61624","l":"Paenibacillus mucilaginosus","na":1,"nb":4,"a":[["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["NCBITaxon%3A61624","Paenibacillus mucilaginosus"],["NCBITaxon%3A1116391","Paenibacillus mucilaginosus 3016"],["NCBITaxon%3A997761","Paenibacillus mucilaginosus K02"],["NCBITaxon%3A1036673","Paenibacillus mucilaginosus KNP414"]]},{"id":"NCBITaxon:72360","l":"Bacillus mojavensis","na":1,"nb":4,"a":[["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["NCBITaxon%3A260554","Bacillus halotolerans"],["NCBITaxon%3A72360","Bacillus mojavensis"],["NCBITaxon%3A1051501","Bacillus mojavensis RO-H-1 = KCTC 3706"],["NCBITaxon%3A1329377","Bacillus mojavensis RRC 101"]]},{"id":"NCBITaxon:75105","l":"Paraburkholderia caribensis","na":1,"nb":4,"a":[["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"]],"b":[["NCBITaxon%3A75105","Paraburkholderia caribensis"],["NCBITaxon%3A1160706","Paraburkholderia caribensis HM582870"],["NCBITaxon%3A1323664","Paraburkholderia caribensis MBA4"],["NCBITaxon%3A1338010","Paraburkholderia caribensis XV"]]},{"id":"NCBITaxon:971","l":"Pseudoselenomonas ruminantium","na":1,"nb":4,"a":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic Rumen Consortium"]],"b":[["NCBITaxon%3A971","Pseudoselenomonas ruminantium"],["NCBITaxon%3A1392501","Selenomonas ruminantium AC2024"],["NCBITaxon%3A114196","Selenomonas ruminantium subsp. ruminantium"],["NCBITaxon%3A1280706","Selenomonas ruminantium subsp. ruminantium ATCC 12561"]]},{"id":"NCBITaxon:97393","l":"Ferroplasma acidarmanus","na":1,"nb":4,"a":[["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"]],"b":[["NCBITaxon%3A261389","environmental samples"],["NCBITaxon%3A97393","Ferroplasma acidarmanus"],["NCBITaxon%3A333146","Ferroplasma acidarmanus Fer1"],["NCBITaxon%3A261390","Ferroplasma acidarmanus Type I"]]},{"id":"GTDB:s__Acetobacter_fabarum","l":"","na":1,"nb":3,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["NCBITaxon%3A483199","Acetobacter fabarum"],["NCBITaxon%3A1307906","Acetobacter fabarum DSM 19596"],["NCBITaxon%3A1670660","Acetobacter sp. DsW_54"]]},{"id":"GTDB:s__Anabaena_cylindrica","l":"","na":1,"nb":3,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["NCBITaxon%3A2692879","Anabaena cylindrica FACHB-243"],["NCBITaxon%3A272123","Anabaena cylindrica PCC 7122"],["NCBITaxon%3A1296340","Anabaena sp. PCC 7938"]]},{"id":"GTDB:s__Anaeromyxobacter_dehalogenans","l":"","na":1,"nb":3,"a":[["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"]],"b":[["NCBITaxon%3A161493","Anaeromyxobacter dehalogenans"],["NCBITaxon%3A455488","Anaeromyxobacter dehalogenans 2CP-1"],["NCBITaxon%3A447217","Anaeromyxobacter sp. K"]]},{"id":"GTDB:s__Azospirillum_brasilense","l":"","na":1,"nb":3,"a":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"]],"b":[["NCBITaxon%3A192","Azospirillum brasilense"],["NCBITaxon%3A1262469","Azospirillum brasilense FP2"],["NCBITaxon%3A1685931","Azospirillum sp. Sp 7"]]},{"id":"GTDB:s__Azotobacter_chroococcum","l":"","na":1,"nb":3,"a":[["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"]],"b":[["NCBITaxon%3A353","Azotobacter chroococcum"],["NCBITaxon%3A1328314","Azotobacter chroococcum NCIMB 8003"],["NCBITaxon%3A2528971","Azotobacter chroococcum subsp. isscasi"]]},{"id":"GTDB:s__Blautia_A_hydrogenotrophica","l":"","na":1,"nb":3,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A53443","Blautia hydrogenotrophica"],["NCBITaxon%3A1263061","Blautia hydrogenotrophica CAG:147"],["NCBITaxon%3A476272","Blautia hydrogenotrophica DSM 10507"]]},{"id":"GTDB:s__Clostridium_K_cellulovorans","l":"","na":3,"nb":1,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"]],"b":[["NCBITaxon%3A573061","Clostridium cellulovorans 743B"]]},{"id":"GTDB:s__Desulfovibrio_piger","l":"","na":1,"nb":3,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A901","Desulfovibrio piger"],["NCBITaxon%3A411464","Desulfovibrio piger ATCC 29098"],["NCBITaxon%3A885","Desulfovibrio sp."]]},{"id":"GTDB:s__Desulfovibrio_piger_A","l":"","na":1,"nb":3,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A901","Desulfovibrio piger"],["NCBITaxon%3A167968","uncultured Desulfovibrio sp."],["NCBITaxon%3A172733","uncultured Eubacteriales bacterium"]]},{"id":"GTDB:s__Dinoroseobacter_shibae","l":"","na":1,"nb":3,"a":[["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"]],"b":[["NCBITaxon%3A215813","Dinoroseobacter shibae"],["NCBITaxon%3A398580","Dinoroseobacter shibae DFL 12 = DSM 16493"],["NCBITaxon%3A3028384","Dinoroseobacter sp. PD6"]]},{"id":"GTDB:s__Ferrimicrobium_acidiphilum","l":"","na":1,"nb":3,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"]],"b":[["NCBITaxon%3A1883427","Actinomycetes bacterium"],["NCBITaxon%3A121039","Ferrimicrobium acidiphilum"],["NCBITaxon%3A1121877","Ferrimicrobium acidiphilum DSM 19497"]]},{"id":"GTDB:s__Hungateiclostridium_straminisolvens","l":"","na":1,"nb":3,"a":[["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"]],"b":[["NCBITaxon%3A253314","Acetivibrio straminisolvens"],["NCBITaxon%3A1294263","Acetivibrio straminisolvens JCM 21531"],["NCBITaxon%3A1950858","Clostridiales bacterium UBA3578"]]},{"id":"GTDB:s__Lactiplantibacillus_paraplantarum","l":"","na":1,"nb":3,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"]],"b":[["NCBITaxon%3A60520","Lactiplantibacillus paraplantarum"],["NCBITaxon%3A1423789","Lactiplantibacillus paraplantarum DSM 10667"],["NCBITaxon%3A1590","Lactiplantibacillus plantarum"]]},{"id":"GTDB:s__Methanocrinis_harundinaceus","l":"","na":1,"nb":3,"a":[["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"]],"b":[["NCBITaxon%3A1674799","Methanosarcinales archaeon Methan_02"],["NCBITaxon%3A301375","Methanothrix harundinacea"],["NCBITaxon%3A1110509","Methanothrix harundinacea 6Ac"]]},{"id":"GTDB:s__Methanosarcina_barkeri_A","l":"","na":3,"nb":1,"a":[["DVM_Triculture.html","DVM Tri-culture"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]],"b":[["NCBITaxon%3A1434107","Methanosarcina barkeri 3"]]},{"id":"GTDB:s__Nostoc_muscorum","l":"","na":1,"nb":3,"a":[["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"]],"b":[["NCBITaxon%3A2756293","Desmonostoc muscorum CCALA 125"],["NCBITaxon%3A1828758","Desmonostoc muscorum LEGE 12446"],["NCBITaxon%3A2692844","Nostoc sp. FACHB-973"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_AB","l":"","na":1,"nb":3,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2053470","Prochlorococcus marinus str. MU1405"],["NCBITaxon%3A2053471","Prochlorococcus marinus str. MU1406"],["NCBITaxon%3A2716480","Prochlorococcus marinus XMU1405"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_AF","l":"","na":1,"nb":3,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A1219","Prochlorococcus marinus"],["NCBITaxon%3A2053474","Prochlorococcus marinus str. MU1412"],["NCBITaxon%3A2716484","Prochlorococcus marinus XMU1412"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_B","l":"","na":1,"nb":3,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A167548","Prochlorococcus marinus str. MIT 9314"],["NCBITaxon%3A3082534","Prochlorococcus sp. MIT 9314"],["NCBITaxon%3A159733","uncultured Prochlorococcus sp."]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_D","l":"","na":1,"nb":3,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A59926","Prochlorococcus marinus str. SB"],["NCBITaxon%3A2162156","Prochlorococcus sp. AG-347-I22"],["NCBITaxon%3A2162292","Prochlorococcus sp. AG-418-P13"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_J","l":"","na":1,"nb":3,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A59925","Prochlorococcus marinus str. GP2"],["NCBITaxon%3A167554","Prochlorococcus marinus str. SS51"],["NCBITaxon%3A3082550","Synechococcus sp. MIT S9506"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_L","l":"","na":1,"nb":3,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A167547","Prochlorococcus marinus str. MIT 9311"],["NCBITaxon%3A74546","Prochlorococcus marinus str. MIT 9312"],["NCBITaxon%3A3082528","Prochlorococcus sp. MIT 9311"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_M","l":"","na":1,"nb":3,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A74545","Prochlorococcus marinus str. MIT 9302"],["NCBITaxon%3A2162278","Prochlorococcus sp. AG-412-A14"],["NCBITaxon%3A159733","uncultured Prochlorococcus sp."]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_Q","l":"","na":1,"nb":3,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A1041938","Prochlorococcus marinus bv. HNLC1"],["NCBITaxon%3A1203261","Prochlorococcus sp. W2"],["NCBITaxon%3A159733","uncultured Prochlorococcus sp."]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_X","l":"","na":1,"nb":3,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2774505","Prochlorococcus marinus CUG1432"],["NCBITaxon%3A2053469","Prochlorococcus marinus str. MU1404"],["NCBITaxon%3A2716479","Prochlorococcus marinus XMU1404"]]},{"id":"GTDB:s__Prochlorococcus_A_sp003212755","l":"","na":1,"nb":3,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2716487","Prochlorococcus marinus CUG1416"],["NCBITaxon%3A2053477","Prochlorococcus marinus str. MU1416"],["NCBITaxon%3A2162308","Prochlorococcus sp. AG-436-A04"]]},{"id":"GTDB:s__Ruegeria_B_pomeroyi","l":"","na":1,"nb":3,"a":[["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["NCBITaxon%3A89184","Ruegeria pomeroyi"],["NCBITaxon%3A246200","Ruegeria pomeroyi DSS-3"],["NCBITaxon%3A1879320","Ruegeria sp."]]},{"id":"GTDB:s__Selenomonas_A_ruminantium_B","l":"","na":1,"nb":3,"a":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic Rumen Consortium"]],"b":[["NCBITaxon%3A971","Pseudoselenomonas ruminantium"],["NCBITaxon%3A1392501","Selenomonas ruminantium AC2024"],["NCBITaxon%3A1408313","Selenomonas sp. FC4001"]]},{"id":"GTDB:s__Selenomonas_sp905372355","l":"","na":1,"nb":3,"a":[["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"]],"b":[["NCBITaxon%3A936381","Selenomonas sp. CM52"],["NCBITaxon%3A69823","Selenomonas sputigena"],["NCBITaxon%3A159275","uncultured Selenomonas sp."]]},{"id":"GTDB:s__Streptococcus_oralis_BC","l":"","na":1,"nb":3,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A888049","Streptococcus oralis ATCC 49296"],["NCBITaxon%3A83427","uncultured Streptococcus sp."]]},{"id":"GTDB:s__Stutzerimonas_songnenensis","l":"","na":1,"nb":3,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]],"b":[["NCBITaxon%3A1914538","Pseudomonadaceae bacterium"],["NCBITaxon%3A1176259","Pseudomonas songnenensis"],["NCBITaxon%3A316","Stutzerimonas stutzeri"]]},{"id":"GTDB:s__Sulfobacillus_benefaciens","l":"","na":1,"nb":3,"a":[["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"]],"b":[["NCBITaxon%3A1879010","Bacillota bacterium"],["NCBITaxon%3A453960","Sulfobacillus benefaciens"],["NCBITaxon%3A33949","Sulfobacillus sp."]]},{"id":"GTDB:s__Thiothrix_nivea","l":"","na":1,"nb":3,"a":[["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"]],"b":[["NCBITaxon%3A1031","Thiothrix nivea"],["NCBITaxon%3A870187","Thiothrix nivea DSM 5205"],["NCBITaxon%3A1032","Thiothrix sp."]]},{"id":"NCBITaxon:106592","l":"Ensifer adhaerens","na":1,"nb":3,"a":[["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["NCBITaxon%3A106592","Ensifer adhaerens"],["NCBITaxon%3A1416753","Ensifer adhaerens OV14"],["NCBITaxon%3A1113910","Ensifer sp. NBRC 102459"]]},{"id":"NCBITaxon:133926","l":"Olsenella uli","na":1,"nb":3,"a":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]],"b":[["NCBITaxon%3A133926","Olsenella uli"],["NCBITaxon%3A633147","Olsenella uli DSM 7084"],["NCBITaxon%3A1190621","Olsenella uli MSTE5"]]},{"id":"NCBITaxon:13690","l":"Sphingobium yanoikuyae","na":1,"nb":3,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["NCBITaxon%3A13690","Sphingobium yanoikuyae"],["NCBITaxon%3A883163","Sphingobium yanoikuyae ATCC 51230"],["NCBITaxon%3A1074493","Sphingobium yanoikuyae XLDN2-5"]]},{"id":"NCBITaxon:1399","l":"Cytobacillus firmus","na":1,"nb":3,"a":[["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"]],"b":[["NCBITaxon%3A1399","Cytobacillus firmus"],["NCBITaxon%3A1307436","Cytobacillus firmus DS1"],["NCBITaxon%3A1314753","Cytobacillus firmus NBRC 15306"]]},{"id":"NCBITaxon:161493","l":"Anaeromyxobacter dehalogenans","na":1,"nb":3,"a":[["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"]],"b":[["NCBITaxon%3A161493","Anaeromyxobacter dehalogenans"],["NCBITaxon%3A455488","Anaeromyxobacter dehalogenans 2CP-1"],["NCBITaxon%3A290397","Anaeromyxobacter dehalogenans 2CP-C"]]},{"id":"NCBITaxon:165179","l":"Segatella copri","na":1,"nb":3,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["NCBITaxon%3A165179","Segatella copri"],["NCBITaxon%3A1263102","Segatella copri CAG:164"],["NCBITaxon%3A537011","Segatella copri DSM 18205"]]},{"id":"NCBITaxon:1667","l":"Arthrobacter sp.","na":3,"nb":1,"a":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]],"b":[["NCBITaxon%3A1667","Arthrobacter sp."]]},{"id":"NCBITaxon:1785","l":"Mycobacterium sp.","na":1,"nb":3,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]],"b":[["NCBITaxon%3A722731","Mycobacterium shigaense"],["NCBITaxon%3A1785","Mycobacterium sp."],["NCBITaxon%3A1792835","Mycolicibacter icosiumassiliensis"]]},{"id":"NCBITaxon:1817801","l":"Candidatus Eiseniibacteriota","na":1,"nb":3,"a":[["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"]],"b":[["NCBITaxon%3A1817856","Candidatus Eisenbacteria bacterium RBG_16_71_46"],["NCBITaxon%3A1817857","Candidatus Eisenbacteria bacterium RBG_19FT_COMBO_70_11"],["NCBITaxon%3A2212470","Candidatus Eiseniibacteriota bacterium"]]},{"id":"NCBITaxon:1920","l":"Streptomyces nigrescens","na":1,"nb":3,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A1128671","Microvirga arabica"],["NCBITaxon%3A249582","Streptomyces libani subsp. rufus"],["NCBITaxon%3A1920","Streptomyces nigrescens"]]},{"id":"NCBITaxon:198620","l":"Pseudomonas koreensis","na":3,"nb":1,"a":[["FourSpecies_Aerobic_Lung_Microbiome_Model.html","Four-Species Aerobic Lung Microbiome Model"],["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["NCBITaxon%3A198620","Pseudomonas koreensis"]]},{"id":"NCBITaxon:2034504","l":"Sulfurivermis","na":1,"nb":3,"a":[["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"]],"b":[["NCBITaxon%3A1972068","Sulfurivermis fontis"],["NCBITaxon%3A2034505","Sulfurivermis sp."],["NCBITaxon%3A2034507","uncultured Sulfurivermis sp."]]},{"id":"NCBITaxon:216778","l":"Stenotrophomonas rhizophila","na":1,"nb":3,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"]],"b":[["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A216778","Stenotrophomonas rhizophila"],["NCBITaxon%3A1255680","Stenotrophomonas rhizophila PCA13"]]},{"id":"NCBITaxon:2487276","l":"Bacillus cabrialesii","na":1,"nb":3,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["NCBITaxon%3A2487276","Bacillus cabrialesii"],["NCBITaxon%3A3045387","Bacillus cabrialesii subsp. cabrialesii"],["NCBITaxon%3A2944916","Bacillus cabrialesii subsp. tritici"]]},{"id":"NCBITaxon:250","l":"Chryseobacterium gleum","na":1,"nb":3,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["NCBITaxon%3A250","Chryseobacterium gleum"],["NCBITaxon%3A525257","Chryseobacterium gleum ATCC 35910"],["NCBITaxon%3A1871047","Chryseobacterium sp."]]},{"id":"NCBITaxon:256701","l":"Glutamicibacter arilaitensis","na":1,"nb":3,"a":[["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"]],"b":[["NCBITaxon%3A256701","Glutamicibacter arilaitensis"],["NCBITaxon%3A1255604","Glutamicibacter arilaitensis 3M03"],["NCBITaxon%3A861360","Glutamicibacter arilaitensis Re117"]]},{"id":"NCBITaxon:273371","l":"Lodderomyces orthopsilosis","na":1,"nb":3,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["NCBITaxon%3A273371","Lodderomyces orthopsilosis"],["NCBITaxon%3A1213353","Lodderomyces orthopsilosis AY2"],["NCBITaxon%3A1136231","Lodderomyces orthopsilosis Co 90-125"]]},{"id":"NCBITaxon:301148","l":"Caldibacillus debilis","na":1,"nb":3,"a":[["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"]],"b":[["NCBITaxon%3A301148","Caldibacillus debilis"],["NCBITaxon%3A1121917","Caldibacillus debilis DSM 16016"],["NCBITaxon%3A1339248","Caldibacillus debilis GB1"]]},{"id":"NCBITaxon:301375","l":"Methanothrix harundinacea","na":1,"nb":3,"a":[["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"]],"b":[["NCBITaxon%3A301375","Methanothrix harundinacea"],["NCBITaxon%3A1110509","Methanothrix harundinacea 6Ac"],["NCBITaxon%3A1127228","Methanothrix harundinacea 8Ac"]]},{"id":"NCBITaxon:3041","l":"Chlorophyta","na":3,"nb":1,"a":[["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"]],"b":[["NCBITaxon%3A2812611","Micromonas sp."]]},{"id":"NCBITaxon:3386252","l":"Candidatus Methanogaster","na":1,"nb":3,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"]],"b":[["NCBITaxon%3A3386292","Candidatus Methanogaster sp."],["NCBITaxon%3A2759911","Candidatus Methanogaster sp. ANME-2c ERB4"],["NCBITaxon%3A1915703","Candidatus Methanogaster sp. UBA203"]]},{"id":"NCBITaxon:44752","l":"Rhodococcus wratislaviensis","na":1,"nb":3,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["NCBITaxon%3A44752","Rhodococcus wratislaviensis"],["NCBITaxon%3A1195242","Rhodococcus wratislaviensis IFP 2016"],["NCBITaxon%3A1219028","Rhodococcus wratislaviensis NBRC 100605"]]},{"id":"NCBITaxon:455252","l":"Methylonatrum","na":1,"nb":3,"a":[["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]],"b":[["NCBITaxon%3A455253","Methylonatrum kenyense"],["NCBITaxon%3A1500898","Methylonatrum sp. JGI ETNP_125m_186_B11"],["NCBITaxon%3A546220","uncultured Methylonatrum sp."]]},{"id":"NCBITaxon:460519","l":"Komagataella phaffii","na":1,"nb":3,"a":[["Komagataella_Ecoli_Coinducible_Biosynthesis_Coculture.html","Komagataella-E. coli Co-inducible Biosynthesis Coculture"]],"b":[["NCBITaxon%3A460519","Komagataella phaffii"],["NCBITaxon%3A981350","Komagataella phaffii CBS 7435"],["NCBITaxon%3A644223","Komagataella phaffii GS115"]]},{"id":"NCBITaxon:470150","l":"Pseudomonas taiwanensis","na":1,"nb":3,"a":[["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["NCBITaxon%3A470150","Pseudomonas taiwanensis"],["NCBITaxon%3A1292030","Pseudomonas taiwanensis DSM 21245"],["NCBITaxon%3A1388762","Pseudomonas taiwanensis SJ9"]]},{"id":"NCBITaxon:47920","l":"Acidovorax delafieldii","na":1,"nb":3,"a":[["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["NCBITaxon%3A47920","Acidovorax delafieldii"],["NCBITaxon%3A573060","Acidovorax delafieldii 2AN"],["NCBITaxon%3A80878","Acidovorax temperans"]]},{"id":"NCBITaxon:48292","l":"Hyphomicrobium zavarzinii","na":1,"nb":3,"a":[["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["NCBITaxon%3A48292","Hyphomicrobium zavarzinii"],["NCBITaxon%3A1267005","Hyphomicrobium zavarzinii ATCC 27496"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:483","l":"Neisseria cinerea","na":1,"nb":3,"a":[["FourSpecies_Aerobic_Lung_Microbiome_Model.html","Four-Species Aerobic Lung Microbiome Model"]],"b":[["NCBITaxon%3A483","Neisseria cinerea"],["NCBITaxon%3A546262","Neisseria cinerea ATCC 14685"],["NCBITaxon%3A192066","Neisseria sp."]]},{"id":"NCBITaxon:53443","l":"Blautia hydrogenotrophica","na":1,"nb":3,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A53443","Blautia hydrogenotrophica"],["NCBITaxon%3A1263061","Blautia hydrogenotrophica CAG:147"],["NCBITaxon%3A476272","Blautia hydrogenotrophica DSM 10507"]]},{"id":"NCBITaxon:53633","l":"Sulfobacillus acidophilus","na":1,"nb":3,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["NCBITaxon%3A53633","Sulfobacillus acidophilus"],["NCBITaxon%3A679936","Sulfobacillus acidophilus DSM 10332"],["NCBITaxon%3A1051632","Sulfobacillus acidophilus TPY"]]},{"id":"NCBITaxon:565","l":"Atlantibacter hermannii","na":1,"nb":3,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["NCBITaxon%3A565","Atlantibacter hermannii"],["NCBITaxon%3A1115512","Atlantibacter hermannii NBRC 105704"],["NCBITaxon%3A564","Escherichia fergusonii"]]},{"id":"NCBITaxon:573657","l":"Candidatus Hodgkinia","na":1,"nb":3,"a":[["BioModels_MODEL1806250005_Cicada_Sulcia_Hodgkinia.html","BioModels MODEL1806250005 Cicada Sulcia-Hodgkinia Symbiosis"]],"b":[["NCBITaxon%3A573658","Candidatus Hodgkinia cicadicola"],["NCBITaxon%3A573234","Candidatus Hodgkinia cicadicola Dsem"],["NCBITaxon%3A2741067","Candidatus Hodgkinia sp."]]},{"id":"NCBITaxon:67372","l":"Streptomyces variabilis","na":1,"nb":3,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["NCBITaxon%3A29305","Streptomyces griseoincarnatus"],["NCBITaxon%3A67372","Streptomyces variabilis"],["NCBITaxon%3A377639","Streptomyces variabilis subsp. roseolus"]]},{"id":"NCBITaxon:69823","l":"Selenomonas sputigena","na":1,"nb":3,"a":[["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"]],"b":[["NCBITaxon%3A2053611","Selenomonas sp."],["NCBITaxon%3A69823","Selenomonas sputigena"],["NCBITaxon%3A546271","Selenomonas sputigena ATCC 35185"]]},{"id":"NCBITaxon:72361","l":"Bacillus vallismortis","na":1,"nb":3,"a":[["Bacillus_siamensis_vallismortis_HT_Masson_Pine_SynCom.html","Bacillus siamensis-vallismortis HT Masson Pine SynCom"]],"b":[["NCBITaxon%3A72361","Bacillus vallismortis"],["NCBITaxon%3A1051502","Bacillus vallismortis DV1-F-3"],["NCBITaxon%3A564287","Bacillus vallismortis NRRL B-14890"]]},{"id":"NCBITaxon:901","l":"Desulfovibrio piger","na":1,"nb":3,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A901","Desulfovibrio piger"],["NCBITaxon%3A411464","Desulfovibrio piger ATCC 29098"],["NCBITaxon%3A613189","Desulfovibrio piger GOR1"]]},{"id":"GTDB:s__Acidisphaera_rubrifaciens","l":"","na":1,"nb":2,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"]],"b":[["NCBITaxon%3A50715","Acidisphaera rubrifaciens"],["NCBITaxon%3A1231350","Acidisphaera rubrifaciens HS-AP3"]]},{"id":"GTDB:s__Actinomyces_naeslundii","l":"","na":1,"nb":2,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1655","Actinomyces naeslundii"],["NCBITaxon%3A1115803","Actinomyces naeslundii str. Howell 279"]]},{"id":"GTDB:s__Bradyrhizobium_huanghuaihaiense","l":"","na":1,"nb":2,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"]],"b":[["NCBITaxon%3A990078","Bradyrhizobium huanghuaihaiense"],["NCBITaxon%3A1038862","Bradyrhizobium japonicum USDA 124"]]},{"id":"GTDB:s__Butyrivibrio_fibrisolvens","l":"","na":1,"nb":2,"a":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic Rumen Consortium"]],"b":[["NCBITaxon%3A831","Butyrivibrio fibrisolvens"],["NCBITaxon%3A1121131","Butyrivibrio fibrisolvens DSM 3071"]]},{"id":"GTDB:s__Caldicellulosiruptor_bescii","l":"","na":1,"nb":2,"a":[["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["NCBITaxon%3A31899","Caldicellulosiruptor bescii"],["NCBITaxon%3A521460","Caldicellulosiruptor bescii DSM 6725"]]},{"id":"GTDB:s__Cellulomonas_fimi","l":"","na":1,"nb":2,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["NCBITaxon%3A1708","Cellulomonas fimi"],["NCBITaxon%3A590998","Cellulomonas fimi ATCC 484"]]},{"id":"GTDB:s__Clostridium_AM_carboxidivorans","l":"","na":1,"nb":2,"a":[["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"]],"b":[["NCBITaxon%3A536227","Clostridium carboxidivorans P7"],["NCBITaxon%3A3064705","Clostridium sp. JS66"]]},{"id":"GTDB:s__Clostridium_I_pasteurianum","l":"","na":1,"nb":2,"a":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]],"b":[["NCBITaxon%3A1501","Clostridium pasteurianum"],["NCBITaxon%3A1262449","Clostridium pasteurianum DSM 525 = ATCC 6013"]]},{"id":"GTDB:s__Desulfovibrio_desulfuricans","l":"","na":1,"nb":2,"a":[["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"]],"b":[["NCBITaxon%3A876","Desulfovibrio desulfuricans"],["NCBITaxon%3A1121445","Desulfovibrio desulfuricans DSM 642"]]},{"id":"GTDB:s__Desulfovibrio_sp944327285","l":"","na":1,"nb":2,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A901","Desulfovibrio piger"],["NCBITaxon%3A167968","uncultured Desulfovibrio sp."]]},{"id":"GTDB:s__Dolosigranulum_pigrum","l":"","na":1,"nb":2,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"]],"b":[["NCBITaxon%3A29394","Dolosigranulum pigrum"],["NCBITaxon%3A883103","Dolosigranulum pigrum ATCC 51524"]]},{"id":"GTDB:s__Dyadobacter_sp017744695","l":"","na":2,"nb":1,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["NCBITaxon%3A1914288","Dyadobacter sp."]]},{"id":"GTDB:s__Lachnoclostridium_phytofermentans","l":"","na":2,"nb":1,"a":[["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"]],"b":[["NCBITaxon%3A357809","Lachnoclostridium phytofermentans ISDg"]]},{"id":"GTDB:s__Lactiplantibacillus_plantarum_A","l":"","na":1,"nb":2,"a":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"]],"b":[["NCBITaxon%3A1136177","Lactiplantibacillus pentosus KCA1"],["NCBITaxon%3A1382301","Lactiplantibacillus plantarum EGD-AQ4"]]},{"id":"GTDB:s__Marvinbryantia_formatexigens","l":"","na":1,"nb":2,"a":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"]],"b":[["NCBITaxon%3A168384","Marvinbryantia formatexigens"],["NCBITaxon%3A478749","Marvinbryantia formatexigens DSM 14469"]]},{"id":"GTDB:s__Methanocaldococcus_jannaschii","l":"","na":1,"nb":2,"a":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]],"b":[["NCBITaxon%3A2190","Methanocaldococcus jannaschii"],["NCBITaxon%3A243232","Methanocaldococcus jannaschii DSM 2661"]]},{"id":"GTDB:s__Methanocella_conradii","l":"","na":1,"nb":2,"a":[["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"]],"b":[["NCBITaxon%3A1175444","Methanocella conradii"],["NCBITaxon%3A1041930","Methanocella conradii HZ254"]]},{"id":"GTDB:s__Methylacidiphilum_infernorum","l":"","na":1,"nb":2,"a":[["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"]],"b":[["NCBITaxon%3A511746","Candidatus Methylacidiphilum infernorum"],["NCBITaxon%3A481448","Methylacidiphilum infernorum V4"]]},{"id":"GTDB:s__Methylocaldum_marinum","l":"","na":2,"nb":1,"a":[["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"]],"b":[["NCBITaxon%3A1432792","Methylocaldum marinum"]]},{"id":"GTDB:s__Methylocystis_parva","l":"","na":1,"nb":2,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"]],"b":[["NCBITaxon%3A134","Methylocystis parvus"],["NCBITaxon%3A1134912","Methylocystis parvus OBBP"]]},{"id":"GTDB:s__Methylosarcina_fibrata","l":"","na":1,"nb":2,"a":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["NCBITaxon%3A105972","Methylosarcina fibrata"],["NCBITaxon%3A1132443","Methylosarcina fibrata AML-C10"]]},{"id":"GTDB:s__Microcoleus_vaginatus_A","l":"","na":1,"nb":2,"a":[["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]],"b":[["NCBITaxon%3A756067","Microcoleus vaginatus FGP-2"],["NCBITaxon%3A669365","Microcoleus vaginatus PCC 9802"]]},{"id":"GTDB:s__Mucispirillum_schaedleri","l":"","na":1,"nb":2,"a":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"]],"b":[["NCBITaxon%3A248039","Mucispirillum schaedleri"],["NCBITaxon%3A1379858","Mucispirillum schaedleri ASF457"]]},{"id":"GTDB:s__Nitrobacter_winogradskyi_A","l":"","na":2,"nb":1,"a":[["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["NCBITaxon%3A913","Nitrobacter winogradskyi"]]},{"id":"GTDB:s__Papillibacter_cinnamivorans","l":"","na":1,"nb":2,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"]],"b":[["NCBITaxon%3A100176","Papillibacter cinnamivorans"],["NCBITaxon%3A1122930","Papillibacter cinnamivorans DSM 12816"]]},{"id":"GTDB:s__Planococcus_halocryophilus","l":"","na":1,"nb":2,"a":[["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"]],"b":[["NCBITaxon%3A1215089","Planococcus halocryophilus"],["NCBITaxon%3A1005941","Planococcus halocryophilus Or1"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_A","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A93058","Prochlorococcus marinus str. MIT 9202"],["NCBITaxon%3A93060","Prochlorococcus marinus str. MIT 9215"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_AC","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2053467","Prochlorococcus marinus str. MU1402"],["NCBITaxon%3A2716478","Prochlorococcus marinus XMU1402"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_AD","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2054182","Prochlorococcus marinus str. XMU1419"],["NCBITaxon%3A2716489","Prochlorococcus marinus XMU1419"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_AE","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2716486","Prochlorococcus marinus CUG1415"],["NCBITaxon%3A2053476","Prochlorococcus marinus str. MU1415"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_AG","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2716488","Prochlorococcus marinus CUG1417"],["NCBITaxon%3A2053478","Prochlorococcus marinus str. MU1417"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_H","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A1219","Prochlorococcus marinus"],["NCBITaxon%3A2774501","Prochlorococcus marinus XMU1428"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_T","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A1041939","Prochlorococcus marinus bv. HNLC2"],["NCBITaxon%3A159733","uncultured Prochlorococcus sp."]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_U","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2774504","Prochlorococcus marinus CUG1431"],["NCBITaxon%3A2774506","Prochlorococcus marinus CUG1433"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_W","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2716481","Prochlorococcus marinus XMU1406"],["NCBITaxon%3A2774500","Prochlorococcus marinus XMU1427"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_Y","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2774512","Prochlorococcus marinus CUG1439"],["NCBITaxon%3A3096220","Prochlorococcus sp. MIT 1314"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_Z","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2053472","Prochlorococcus marinus str. MU1410"],["NCBITaxon%3A2716482","Prochlorococcus marinus XMU1410"]]},{"id":"GTDB:s__Prochlorococcus_A_sp003213375","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2774510","Prochlorococcus marinus CUG1437"],["NCBITaxon%3A2162293","Prochlorococcus sp. AG-424-A03"]]},{"id":"GTDB:s__Prochlorococcus_A_sp003278705","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2774509","Prochlorococcus marinus CUG1436"],["NCBITaxon%3A2162112","Prochlorococcus sp. AG-355-J23"]]},{"id":"GTDB:s__Prochlorococcus_B_marinus_A","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2053971","Prochlorococcus marinus str. XMU1408"],["NCBITaxon%3A2213228","Prochlorococcus marinus XMU1408"]]},{"id":"GTDB:s__Prochlorococcus_B_marinus_C","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A1570009","Prochlorococcus marinus str. MIT 0912"],["NCBITaxon%3A1570010","Prochlorococcus marinus str. MIT 0913"]]},{"id":"GTDB:s__Prochlorococcus_D_sp000760175","l":"","na":1,"nb":2,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A3014998","Prochlorococcus marinus str. MIT 0919"],["NCBITaxon%3A1499498","Prochlorococcus sp. MIT 0601"]]},{"id":"GTDB:s__Pseudobutyrivibrio_fibrisolvens_A","l":"","na":1,"nb":2,"a":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic Rumen Consortium"]],"b":[["NCBITaxon%3A831","Butyrivibrio fibrisolvens"],["NCBITaxon%3A657324","Butyrivibrio fibrisolvens 16/4"]]},{"id":"GTDB:s__Rhodanobacter_thiooxydans","l":"","na":1,"nb":2,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"]],"b":[["NCBITaxon%3A416169","Rhodanobacter thiooxydans"],["NCBITaxon%3A1163409","Rhodanobacter thiooxydans LCS2"]]},{"id":"GTDB:s__Rhodopseudomonas_palustris_J","l":"","na":2,"nb":1,"a":[["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["NCBITaxon%3A316058","Rhodopseudomonas palustris HaA2"]]},{"id":"GTDB:s__Sphaerochaeta_globosa","l":"","na":1,"nb":2,"a":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"]],"b":[["NCBITaxon%3A1131703","Sphaerochaeta globosa"],["NCBITaxon%3A158189","Sphaerochaeta globosa str. Buddy"]]},{"id":"GTDB:s__Sphingomonas_desiccabilis","l":"","na":2,"nb":1,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["NCBITaxon%3A429134","Sphingomonas desiccabilis"]]},{"id":"GTDB:s__Sphingomonas_panni","l":"","na":1,"nb":2,"a":[["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["NCBITaxon%3A237612","Sphingomonas panni"],["NCBITaxon%3A158754","uncultured Sphingomonas sp."]]},{"id":"GTDB:s__Streptococcus_mitis_AI","l":"","na":1,"nb":2,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1239793","Streptococcus mitis 13/39"],["NCBITaxon%3A1303","Streptococcus oralis"]]},{"id":"GTDB:s__Streptococcus_mitis_AR","l":"","na":1,"nb":2,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A365659","Streptococcus mitis B6"],["NCBITaxon%3A83427","uncultured Streptococcus sp."]]},{"id":"GTDB:s__Streptococcus_mitis_AW","l":"","na":1,"nb":2,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A28037","Streptococcus mitis"],["NCBITaxon%3A1340484","Streptococcus mitis 17/34"]]},{"id":"GTDB:s__Streptococcus_mitis_AX","l":"","na":1,"nb":2,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A28037","Streptococcus mitis"],["NCBITaxon%3A768726","Streptococcus mitis bv. 2 str. F0392"]]},{"id":"GTDB:s__Streptococcus_mitis_CK","l":"","na":1,"nb":2,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A28037","Streptococcus mitis"],["NCBITaxon%3A585202","Streptococcus mitis SK321"]]},{"id":"GTDB:s__Streptococcus_mitis_L","l":"","na":1,"nb":2,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A28037","Streptococcus mitis"],["NCBITaxon%3A1095737","Streptococcus mitis SK579"]]},{"id":"GTDB:s__Streptococcus_oralis_Y","l":"","na":1,"nb":2,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1161421","Streptococcus oralis SK304"]]},{"id":"GTDB:s__Stutzerimonas_stutzeri_C","l":"","na":2,"nb":1,"a":[["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]],"b":[["NCBITaxon%3A477228","Stutzerimonas stutzeri TS44"]]},{"id":"GTDB:s__Variovorax_paradoxus_E","l":"","na":1,"nb":2,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["NCBITaxon%3A34073","Variovorax paradoxus"],["NCBITaxon%3A1246301","Variovorax paradoxus B4"]]},{"id":"GTDB:s__Vreelandella_boliviensis","l":"","na":1,"nb":2,"a":[["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"]],"b":[["NCBITaxon%3A223527","Vreelandella boliviensis"],["NCBITaxon%3A1072583","Vreelandella boliviensis LC1"]]},{"id":"NCBITaxon:100176","l":"Papillibacter cinnamivorans","na":1,"nb":2,"a":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"]],"b":[["NCBITaxon%3A100176","Papillibacter cinnamivorans"],["NCBITaxon%3A1122930","Papillibacter cinnamivorans DSM 12816"]]},{"id":"NCBITaxon:1031","l":"Thiothrix nivea","na":1,"nb":2,"a":[["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"]],"b":[["NCBITaxon%3A1031","Thiothrix nivea"],["NCBITaxon%3A870187","Thiothrix nivea DSM 5205"]]},{"id":"NCBITaxon:1034015","l":"Nitrososphaera viennensis","na":1,"nb":2,"a":[["Sphingobium_Nitrososphaera_Phenanthrene_Carbon_SynCom.html","Sphingobium-Nitrososphaera Phenanthrene-Carbon SynCom"]],"b":[["NCBITaxon%3A1034015","Nitrososphaera viennensis"],["NCBITaxon%3A926571","Nitrososphaera viennensis EN76"]]},{"id":"NCBITaxon:105972","l":"Methylosarcina fibrata","na":1,"nb":2,"a":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["NCBITaxon%3A105972","Methylosarcina fibrata"],["NCBITaxon%3A1132443","Methylosarcina fibrata AML-C10"]]},{"id":"NCBITaxon:1072583","l":"Vreelandella boliviensis LC1","na":1,"nb":2,"a":[["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"]],"b":[["NCBITaxon%3A223527","Vreelandella boliviensis"],["NCBITaxon%3A1072583","Vreelandella boliviensis LC1"]]},{"id":"NCBITaxon:1089553","l":"Thermacetogenium phaeum DSM 12270","na":1,"nb":2,"a":[["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]],"b":[["NCBITaxon%3A85874","Thermacetogenium phaeum"],["NCBITaxon%3A1089553","Thermacetogenium phaeum DSM 12270"]]},{"id":"NCBITaxon:1122947","l":"Pelosinus fermentans DSM 17108","na":1,"nb":2,"a":[["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"]],"b":[["NCBITaxon%3A365349","Pelosinus fermentans"],["NCBITaxon%3A1122947","Pelosinus fermentans DSM 17108"]]},{"id":"NCBITaxon:1131703","l":"Sphaerochaeta globosa","na":1,"nb":2,"a":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"]],"b":[["NCBITaxon%3A1131703","Sphaerochaeta globosa"],["NCBITaxon%3A158189","Sphaerochaeta globosa str. Buddy"]]},{"id":"NCBITaxon:1173061","l":"Geotrichum candidum","na":1,"nb":2,"a":[["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["NCBITaxon%3A104098","Acetobacter peroxydans"],["NCBITaxon%3A1173061","Geotrichum candidum"]]},{"id":"NCBITaxon:1175444","l":"Methanocella conradii","na":1,"nb":2,"a":[["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"]],"b":[["NCBITaxon%3A1175444","Methanocella conradii"],["NCBITaxon%3A1041930","Methanocella conradii HZ254"]]},{"id":"NCBITaxon:121039","l":"Ferrimicrobium acidiphilum","na":1,"nb":2,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"]],"b":[["NCBITaxon%3A121039","Ferrimicrobium acidiphilum"],["NCBITaxon%3A1121877","Ferrimicrobium acidiphilum DSM 19497"]]},{"id":"NCBITaxon:1215089","l":"Planococcus halocryophilus","na":1,"nb":2,"a":[["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"]],"b":[["NCBITaxon%3A1215089","Planococcus halocryophilus"],["NCBITaxon%3A1005941","Planococcus halocryophilus Or1"]]},{"id":"NCBITaxon:1218105","l":"Cupriavidus necator NBRC 102504","na":1,"nb":2,"a":[["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"]],"b":[["NCBITaxon%3A106590","Cupriavidus necator"],["NCBITaxon%3A1218105","Cupriavidus necator NBRC 102504"]]},{"id":"NCBITaxon:1335640","l":"Clostridium saccharoperbutylacetonicum N1-4","na":1,"nb":2,"a":[["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]],"b":[["NCBITaxon%3A1335640","Clostridium saccharoperbutylacetonicum N1-4"],["NCBITaxon%3A931276","Clostridium saccharoperbutylacetonicum N1-4(HMT)"]]},{"id":"NCBITaxon:1336235","l":"Paenirhizobium selenitireducens ATCC BAA-1503","na":1,"nb":2,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["NCBITaxon%3A448181","Paenirhizobium selenitireducens"],["NCBITaxon%3A1336235","Paenirhizobium selenitireducens ATCC BAA-1503"]]},{"id":"NCBITaxon:134","l":"Methylocystis parvus","na":1,"nb":2,"a":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"]],"b":[["NCBITaxon%3A134","Methylocystis parvus"],["NCBITaxon%3A1134912","Methylocystis parvus OBBP"]]},{"id":"NCBITaxon:1401","l":"Paenibacillus lautus","na":1,"nb":2,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"]],"b":[["NCBITaxon%3A1401","Paenibacillus lautus"],["NCBITaxon%3A1349780","Paenibacillus lautus NBRC 15380"]]},{"id":"NCBITaxon:1432792","l":"Methylocaldum marinum","na":2,"nb":1,"a":[["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"],["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"]],"b":[["NCBITaxon%3A1432792","Methylocaldum marinum"]]},{"id":"NCBITaxon:1436290","l":"Candidatus Symbiobacter mobilis","na":1,"nb":2,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"]],"b":[["NCBITaxon%3A1436290","Candidatus Symbiobacter mobilis"],["NCBITaxon%3A946483","Candidatus Symbiobacter mobilis CR"]]},{"id":"NCBITaxon:1451","l":"Paenibacillus amylolyticus","na":1,"nb":2,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"]],"b":[["NCBITaxon%3A1451","Paenibacillus amylolyticus"],["NCBITaxon%3A59846","Paenibacillus chibensis"]]},{"id":"NCBITaxon:1455","l":"Pseudobacillus badius","na":1,"nb":2,"a":[["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"]],"b":[["NCBITaxon%3A1348627","Bacillus badius NBRC 15713"],["NCBITaxon%3A1455","Pseudobacillus badius"]]},{"id":"NCBITaxon:1464011","l":"Kitasatospora papulosa","na":1,"nb":2,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]],"b":[["NCBITaxon%3A1464011","Kitasatospora papulosa"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:148447","l":"Paraburkholderia phymatum","na":1,"nb":2,"a":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]],"b":[["NCBITaxon%3A148447","Paraburkholderia phymatum"],["NCBITaxon%3A391038","Paraburkholderia phymatum STM815"]]},{"id":"NCBITaxon:1547","l":"Thomasclavelia ramosa","na":1,"nb":2,"a":[["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["NCBITaxon%3A1547","Thomasclavelia ramosa"],["NCBITaxon%3A445974","Thomasclavelia ramosa DSM 1402"]]},{"id":"NCBITaxon:159743","l":"Paenibacillus terrae","na":1,"nb":2,"a":[["Pinus_armandii_Endophytic_Biocontrol_SynCom.html","Pinus armandii Endophytic Biocontrol SynCom"]],"b":[["NCBITaxon%3A159743","Paenibacillus terrae"],["NCBITaxon%3A985665","Paenibacillus terrae HPL-003"]]},{"id":"NCBITaxon:168384","l":"Marvinbryantia formatexigens","na":1,"nb":2,"a":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"]],"b":[["NCBITaxon%3A168384","Marvinbryantia formatexigens"],["NCBITaxon%3A478749","Marvinbryantia formatexigens DSM 14469"]]},{"id":"NCBITaxon:1708","l":"Cellulomonas fimi","na":1,"nb":2,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["NCBITaxon%3A1708","Cellulomonas fimi"],["NCBITaxon%3A590998","Cellulomonas fimi ATCC 484"]]},{"id":"NCBITaxon:186490","l":"Candidatus Palibaumannia cicadellinicola","na":1,"nb":2,"a":[["BioModels_MODEL1806250004_Sharpshooter_Sulcia_Baumannia.html","BioModels MODEL1806250004 Sharpshooter Sulcia-Baumannia Symbiosis"]],"b":[["NCBITaxon%3A374463","Baumannia cicadellinicola str. Hc (Homalodisca coagulata)"],["NCBITaxon%3A186490","Candidatus Palibaumannia cicadellinicola"]]},{"id":"NCBITaxon:1871043","l":"Variovorax sp.","na":2,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]],"b":[["NCBITaxon%3A1871043","Variovorax sp."]]},{"id":"NCBITaxon:1902583","l":"Candidatus Desulfofervidus","na":1,"nb":2,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"]],"b":[["NCBITaxon%3A1621989","Candidatus Desulfofervidus auxilii"],["NCBITaxon%3A2820297","Candidatus Desulfofervidus sp."]]},{"id":"NCBITaxon:1908224","l":"Sphingopyxis sp.","na":2,"nb":1,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["NCBITaxon%3A1908224","Sphingopyxis sp."]]},{"id":"NCBITaxon:1914288","l":"Dyadobacter sp.","na":2,"nb":1,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["NCBITaxon%3A1914288","Dyadobacter sp."]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":1,"nb":2,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["NCBITaxon%3A1928","Streptomyces rochei"],["NCBITaxon%3A885435","Streptomyces rochei subsp. volubilis"]]},{"id":"NCBITaxon:200451","l":"Pseudomonas poae","na":1,"nb":2,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A200451","Pseudomonas poae"],["NCBITaxon%3A1282356","Pseudomonas poae RE*1-1-14"]]},{"id":"NCBITaxon:2026186","l":"Bacillus paranthracis","na":1,"nb":2,"a":[["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A2026186","Bacillus paranthracis"]]},{"id":"NCBITaxon:215813","l":"Dinoroseobacter shibae","na":1,"nb":2,"a":[["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"]],"b":[["NCBITaxon%3A215813","Dinoroseobacter shibae"],["NCBITaxon%3A398580","Dinoroseobacter shibae DFL 12 = DSM 16493"]]},{"id":"NCBITaxon:217159","l":"Clostridium carboxidivorans","na":1,"nb":2,"a":[["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"]],"b":[["NCBITaxon%3A217159","Clostridium carboxidivorans"],["NCBITaxon%3A536227","Clostridium carboxidivorans P7"]]},{"id":"NCBITaxon:223967","l":"Methylorubrum populi","na":1,"nb":2,"a":[["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"]],"b":[["NCBITaxon%3A223967","Methylorubrum populi"],["NCBITaxon%3A441620","Methylorubrum populi BJ001"]]},{"id":"NCBITaxon:225937","l":"Marinobacter adhaerens HP15","na":1,"nb":2,"a":[["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]],"b":[["NCBITaxon%3A1033846","Marinobacter adhaerens"],["NCBITaxon%3A225937","Marinobacter adhaerens HP15"]]},{"id":"NCBITaxon:226186","l":"Bacteroides thetaiotaomicron VPI-5482","na":1,"nb":2,"a":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"]],"b":[["NCBITaxon%3A818","Bacteroides thetaiotaomicron"],["NCBITaxon%3A226186","Bacteroides thetaiotaomicron VPI-5482"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii DSM 2661","na":1,"nb":2,"a":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]],"b":[["NCBITaxon%3A2190","Methanocaldococcus jannaschii"],["NCBITaxon%3A243232","Methanocaldococcus jannaschii DSM 2661"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima MSB8","na":1,"nb":2,"a":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]],"b":[["NCBITaxon%3A2336","Thermotoga maritima"],["NCBITaxon%3A243274","Thermotoga maritima MSB8"]]},{"id":"NCBITaxon:246200","l":"Ruegeria pomeroyi DSS-3","na":1,"nb":2,"a":[["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]],"b":[["NCBITaxon%3A89184","Ruegeria pomeroyi"],["NCBITaxon%3A246200","Ruegeria pomeroyi DSS-3"]]},{"id":"NCBITaxon:253314","l":"Acetivibrio straminisolvens","na":1,"nb":2,"a":[["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"]],"b":[["NCBITaxon%3A253314","Acetivibrio straminisolvens"],["NCBITaxon%3A1294263","Acetivibrio straminisolvens JCM 21531"]]},{"id":"NCBITaxon:260554","l":"Bacillus halotolerans","na":1,"nb":2,"a":[["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"]],"b":[["NCBITaxon%3A260554","Bacillus halotolerans"],["NCBITaxon%3A72360","Bacillus mojavensis"]]},{"id":"NCBITaxon:264198","l":"Cupriavidus pinatubonensis JMP134","na":1,"nb":2,"a":[["Rhizorhabdus_Cupriavidus_BDE47_Degradation_SynCom.html","Rhizorhabdus-Cupriavidus BDE-47 Degradation SynCom"]],"b":[["NCBITaxon%3A106590","Cupriavidus necator"],["NCBITaxon%3A264198","Cupriavidus pinatubonensis JMP134"]]},{"id":"NCBITaxon:267377","l":"Methanococcus maripaludis S2","na":1,"nb":2,"a":[["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"]],"b":[["NCBITaxon%3A39152","Methanococcus maripaludis"],["NCBITaxon%3A267377","Methanococcus maripaludis S2"]]},{"id":"NCBITaxon:269797","l":"Methanosarcina barkeri str. Fusaro","na":2,"nb":1,"a":[["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["NCBITaxon%3A269797","Methanosarcina barkeri str. Fusaro"]]},{"id":"NCBITaxon:2715209","l":"Bacillus rugosus","na":2,"nb":1,"a":[["Wheat_CrownRot_SixStrain_CrossKingdom_SMC.html","Wheat Crown-Rot Six-Strain Cross-Kingdom SMC"],["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["NCBITaxon%3A2715209","Bacillus rugosus"]]},{"id":"NCBITaxon:272774","l":"Vreelandella alkaliphila","na":1,"nb":2,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["NCBITaxon%3A272774","Vreelandella alkaliphila"],["NCBITaxon%3A1255599","Vreelandella alkaliphila 3A7M"]]},{"id":"NCBITaxon:2822231","l":"Phanerodontia chrysosporium","na":2,"nb":1,"a":[["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"]],"b":[["NCBITaxon%3A2822231","Phanerodontia chrysosporium"]]},{"id":"NCBITaxon:29394","l":"Dolosigranulum pigrum","na":1,"nb":2,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"]],"b":[["NCBITaxon%3A29394","Dolosigranulum pigrum"],["NCBITaxon%3A883103","Dolosigranulum pigrum ATCC 51524"]]},{"id":"NCBITaxon:294710","l":"Proteiniphilum acetatigenes","na":1,"nb":2,"a":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"]],"b":[["NCBITaxon%3A294710","Proteiniphilum acetatigenes"],["NCBITaxon%3A1123008","Proteiniphilum acetatigenes DSM 18083"]]},{"id":"NCBITaxon:312306","l":"Pseudomonas entomophila","na":1,"nb":2,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["NCBITaxon%3A312306","Pseudomonas entomophila"],["NCBITaxon%3A384676","Pseudomonas entomophila L48"]]},{"id":"NCBITaxon:32049","l":"Picosynechococcus sp. PCC 7002","na":2,"nb":1,"a":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"]],"b":[["NCBITaxon%3A32049","Picosynechococcus sp. PCC 7002"]]},{"id":"NCBITaxon:328301","l":"Syntrophorhabdus aromaticivorans","na":1,"nb":2,"a":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"]],"b":[["NCBITaxon%3A328301","Syntrophorhabdus aromaticivorans"],["NCBITaxon%3A909663","Syntrophorhabdus aromaticivorans UI"]]},{"id":"NCBITaxon:33075","l":"Acidobacterium capsulatum","na":1,"nb":2,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"]],"b":[["NCBITaxon%3A33075","Acidobacterium capsulatum"],["NCBITaxon%3A240015","Acidobacterium capsulatum ATCC 51196"]]},{"id":"NCBITaxon:351627","l":"Caldicellulosiruptor saccharolyticus DSM 8903","na":1,"nb":2,"a":[["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"]],"b":[["NCBITaxon%3A44001","Caldicellulosiruptor saccharolyticus"],["NCBITaxon%3A351627","Caldicellulosiruptor saccharolyticus DSM 8903"]]},{"id":"NCBITaxon:357441","l":"Enterococcus lactis","na":1,"nb":2,"a":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"]],"b":[["NCBITaxon%3A1352","Enterococcus faecium"],["NCBITaxon%3A357441","Enterococcus lactis"]]},{"id":"NCBITaxon:370111","l":"Brucella pseudintermedia","na":1,"nb":2,"a":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"]],"b":[["NCBITaxon%3A94625","Brucella intermedia"],["NCBITaxon%3A370111","Brucella pseudintermedia"]]},{"id":"NCBITaxon:374432","l":"Methylobacterium tardum","na":1,"nb":2,"a":[["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"]],"b":[["NCBITaxon%3A374432","Methylobacterium tardum"],["NCBITaxon%3A95301","Pseudomonas multiresinivorans"]]},{"id":"NCBITaxon:391619","l":"Phaeobacter inhibens DSM 17395","na":1,"nb":2,"a":[["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"]],"b":[["NCBITaxon%3A221822","Phaeobacter inhibens"],["NCBITaxon%3A391619","Phaeobacter inhibens DSM 17395"]]},{"id":"NCBITaxon:409291","l":"Arthrobacter humicola","na":1,"nb":2,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A1665","Arthrobacter globiformis"],["NCBITaxon%3A409291","Arthrobacter humicola"]]},{"id":"NCBITaxon:411483","l":"Faecalibacterium duncaniae","na":1,"nb":2,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A411483","Faecalibacterium duncaniae"],["NCBITaxon%3A2881265","Faecalibacterium hominis (ex Afrizal et al. 2022)"]]},{"id":"NCBITaxon:412384","l":"Priestia aryabhattai","na":1,"nb":2,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A412384","Priestia aryabhattai"],["NCBITaxon%3A1358420","Priestia aryabhattai B8W22"]]},{"id":"NCBITaxon:412449","l":"Leptospirillum ferrodiazotrophum","na":2,"nb":1,"a":[["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"]],"b":[["NCBITaxon%3A412449","Leptospirillum ferrodiazotrophum"]]},{"id":"NCBITaxon:416169","l":"Rhodanobacter thiooxydans","na":1,"nb":2,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"]],"b":[["NCBITaxon%3A416169","Rhodanobacter thiooxydans"],["NCBITaxon%3A1163409","Rhodanobacter thiooxydans LCS2"]]},{"id":"NCBITaxon:42444","l":"Marinovum algicola","na":1,"nb":2,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["NCBITaxon%3A42444","Marinovum algicola"],["NCBITaxon%3A988812","Marinovum algicola DG 898"]]},{"id":"NCBITaxon:429134","l":"Sphingomonas desiccabilis","na":2,"nb":1,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["NCBITaxon%3A429134","Sphingomonas desiccabilis"]]},{"id":"NCBITaxon:452922","l":"Xenophilus aerolatus","na":1,"nb":2,"a":[["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["NCBITaxon%3A500153","Streptomyces avicenniae"],["NCBITaxon%3A452922","Xenophilus aerolatus"]]},{"id":"NCBITaxon:47421","l":"Hydrogenophaga pseudoflava","na":1,"nb":2,"a":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]],"b":[["NCBITaxon%3A47421","Hydrogenophaga pseudoflava"],["NCBITaxon%3A1349792","Hydrogenophaga pseudoflava NBRC 102511"]]},{"id":"NCBITaxon:483199","l":"Acetobacter fabarum","na":1,"nb":2,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["NCBITaxon%3A483199","Acetobacter fabarum"],["NCBITaxon%3A1307906","Acetobacter fabarum DSM 19596"]]},{"id":"NCBITaxon:4909","l":"Pichia kudriavzevii","na":1,"nb":2,"a":[["Sichuan_Shai_Vinegar_Yeast_Flavor_SynCom.html","Sichuan Shai Vinegar Yeast Flavor SynCom"]],"b":[["NCBITaxon%3A4909","Pichia kudriavzevii"],["NCBITaxon%3A1231518","Pichia kudriavzevii CAB39-6420"]]},{"id":"NCBITaxon:4911","l":"Kluyveromyces marxianus","na":1,"nb":2,"a":[["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"]],"b":[["NCBITaxon%3A4911","Kluyveromyces marxianus"],["NCBITaxon%3A374272","Kluyveromyces marxianus var. marxianus"]]},{"id":"NCBITaxon:4952","l":"Yarrowia lipolytica","na":2,"nb":1,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Yarrowia_lipolytica_Division_of_Labor_Lipid_Consortium.html","Yarrowia lipolytica Division-of-Labor Lipid Consortium"]],"b":[["NCBITaxon%3A4952","Yarrowia lipolytica"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":1,"nb":2,"a":[["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]],"b":[["NCBITaxon%3A5059","Aspergillus flavus"],["NCBITaxon%3A332952","Aspergillus flavus NRRL3357"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":1,"nb":2,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["NCBITaxon%3A5062","Aspergillus oryzae"],["NCBITaxon%3A510516","Aspergillus oryzae RIB40"]]},{"id":"NCBITaxon:50715","l":"Acidisphaera rubrifaciens","na":1,"nb":2,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"]],"b":[["NCBITaxon%3A50715","Acidisphaera rubrifaciens"],["NCBITaxon%3A1231350","Acidisphaera rubrifaciens HS-AP3"]]},{"id":"NCBITaxon:511746","l":"Candidatus Methylacidiphilum infernorum","na":1,"nb":2,"a":[["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"]],"b":[["NCBITaxon%3A511746","Candidatus Methylacidiphilum infernorum"],["NCBITaxon%3A481448","Methylacidiphilum infernorum V4"]]},{"id":"NCBITaxon:51453","l":"Trichoderma reesei","na":2,"nb":1,"a":[["Trichoderma_Ecoli_Cellulosic_Isobutanol_Coculture.html","Trichoderma-E. coli Cellulosic Isobutanol Coculture"],["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["NCBITaxon%3A51453","Trichoderma reesei"]]},{"id":"NCBITaxon:521","l":"Bordetella avium","na":1,"nb":2,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["NCBITaxon%3A521","Bordetella avium"],["NCBITaxon%3A360910","Bordetella avium 197N"]]},{"id":"NCBITaxon:521460","l":"Caldicellulosiruptor bescii DSM 6725","na":1,"nb":2,"a":[["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["NCBITaxon%3A31899","Caldicellulosiruptor bescii"],["NCBITaxon%3A521460","Caldicellulosiruptor bescii DSM 6725"]]},{"id":"NCBITaxon:52242","l":"Lactobacillus gallinarum","na":1,"nb":2,"a":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]],"b":[["NCBITaxon%3A52242","Lactobacillus gallinarum"],["NCBITaxon%3A1423748","Lactobacillus gallinarum DSM 10532 = JCM 2011"]]},{"id":"NCBITaxon:525","l":"Acidocella facilis","na":1,"nb":2,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"]],"b":[["NCBITaxon%3A525","Acidocella facilis"],["NCBITaxon%3A1408419","Acidocella facilis ATCC 35904"]]},{"id":"NCBITaxon:54007","l":"Anaerococcus octavius","na":1,"nb":2,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["NCBITaxon%3A54007","Anaerococcus octavius"],["NCBITaxon%3A1161098","Anaerococcus octavius NCTC 9810"]]},{"id":"NCBITaxon:56780","l":"Syntrophus aciditrophicus SB","na":1,"nb":2,"a":[["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"]],"b":[["NCBITaxon%3A316277","Syntrophus aciditrophicus"],["NCBITaxon%3A56780","Syntrophus aciditrophicus SB"]]},{"id":"NCBITaxon:572545","l":"Acetivibrio thermocellus DSM 2360","na":1,"nb":2,"a":[["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"]],"b":[["NCBITaxon%3A1515","Acetivibrio thermocellus"],["NCBITaxon%3A572545","Acetivibrio thermocellus DSM 2360"]]},{"id":"NCBITaxon:62140","l":"Acidiphilium multivorum","na":1,"nb":2,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"]],"b":[["NCBITaxon%3A62140","Acidiphilium multivorum"],["NCBITaxon%3A926570","Acidiphilium multivorum AIU301"]]},{"id":"NCBITaxon:632335","l":"Caldicellulosiruptor acetigenus I77R1B","na":1,"nb":2,"a":[["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"]],"b":[["NCBITaxon%3A301953","Caldicellulosiruptor acetigenus"],["NCBITaxon%3A632335","Caldicellulosiruptor acetigenus I77R1B"]]},{"id":"NCBITaxon:64104","l":"Bacillus pseudomycoides","na":1,"nb":2,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["NCBITaxon%3A64104","Bacillus pseudomycoides"],["NCBITaxon%3A527000","Bacillus pseudomycoides DSM 12442"]]},{"id":"NCBITaxon:64702","l":"Propionibacterium cyclohexanicum","na":1,"nb":2,"a":[["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["NCBITaxon%3A64702","Propionibacterium cyclohexanicum"],["NCBITaxon%3A1122996","Propionibacterium cyclohexanicum DSM 16859"]]},{"id":"NCBITaxon:68239","l":"Streptomyces mirabilis","na":1,"nb":2,"a":[["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["NCBITaxon%3A68239","Streptomyces mirabilis"],["NCBITaxon%3A1169149","Streptomyces mirabilis 138MFCol5.1"]]},{"id":"NCBITaxon:685","l":"Vibrio diazotrophicus","na":1,"nb":2,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["NCBITaxon%3A685","Vibrio diazotrophicus"],["NCBITaxon%3A1348635","Vibrio diazotrophicus NBRC 103148"]]},{"id":"NCBITaxon:69488","l":"Penicillium simplicissimum","na":1,"nb":2,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"]],"b":[["NCBITaxon%3A1459","Sporosarcina globispora"],["NCBITaxon%3A69488","Penicillium simplicissimum"]]},{"id":"NCBITaxon:748727","l":"Clostridium ljungdahlii DSM 13528","na":1,"nb":2,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["NCBITaxon%3A1538","Clostridium ljungdahlii"],["NCBITaxon%3A748727","Clostridium ljungdahlii DSM 13528"]]},{"id":"NCBITaxon:795830","l":"Candidatus Brocadia sinica","na":1,"nb":2,"a":[["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"]],"b":[["NCBITaxon%3A795830","Candidatus Brocadia sinica"],["NCBITaxon%3A1197129","Candidatus Brocadia sinica JPN1"]]},{"id":"NCBITaxon:84022","l":"Andreesenella acetica","na":2,"nb":1,"a":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"]],"b":[["NCBITaxon%3A84022","Andreesenella acetica"]]},{"id":"NCBITaxon:84023","l":"Clostridium autoethanogenum","na":1,"nb":2,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"]],"b":[["NCBITaxon%3A84023","Clostridium autoethanogenum"],["NCBITaxon%3A1341692","Clostridium autoethanogenum DSM 10061"]]},{"id":"NCBITaxon:86185","l":"Pseudomonas lundensis","na":1,"nb":2,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]],"b":[["NCBITaxon%3A86185","Pseudomonas lundensis"],["NCBITaxon%3A1255687","Pseudomonas lundensis PCAi_D2.2"]]},{"id":"NCBITaxon:89152","l":"Peptacetobacter hiranonis","na":1,"nb":2,"a":[["Clostridial_isoDCA_Mini_Consortium.html","Clostridial isoDCA Mini Consortium"]],"b":[["NCBITaxon%3A89152","Peptacetobacter hiranonis"],["NCBITaxon%3A500633","Peptacetobacter hiranonis DSM 13275"]]},{"id":"NCBITaxon:89584","l":"Gluconacetobacter liquefaciens","na":1,"nb":2,"a":[["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]],"b":[["NCBITaxon%3A89584","Gluconacetobacter liquefaciens"],["NCBITaxon%3A1307936","Gluconacetobacter liquefaciens NRIC 0522"]]},{"id":"NCBITaxon:92645","l":"Herbaspirillum frisingense","na":1,"nb":2,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]],"b":[["NCBITaxon%3A92645","Herbaspirillum frisingense"],["NCBITaxon%3A864073","Herbaspirillum frisingense GSF30"]]},{"id":"NCBITaxon:96344","l":"Cupriavidus oxalaticus","na":1,"nb":2,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["NCBITaxon%3A96344","Cupriavidus oxalaticus"],["NCBITaxon%3A1349762","Cupriavidus oxalaticus NBRC 13593"]]},{"id":"GTDB:s__Anaeromyxobacter_dehalogenans_B","l":"","na":1,"nb":1,"a":[["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"]],"b":[["NCBITaxon%3A290397","Anaeromyxobacter dehalogenans 2CP-C"]]},{"id":"GTDB:s__Arthrobacter_sp018215265","l":"","na":1,"nb":1,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["NCBITaxon%3A2782567","Paenarthrobacter sp. GOM3"]]},{"id":"GTDB:s__Chryseobacterium_taiwanense","l":"","na":1,"nb":1,"a":[["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["NCBITaxon%3A363331","Chryseobacterium taiwanense"]]},{"id":"GTDB:s__Clostridium_AM_drakei","l":"","na":1,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"]],"b":[["NCBITaxon%3A332101","Clostridium drakei"]]},{"id":"GTDB:s__Clostridium_beijerinckii_A","l":"","na":1,"nb":1,"a":[["Clostridium_Cellulovorans_Beijerinckii_AECC_ABE_Coculture.html","Clostridium cellulovorans-Beijerinckii AECC ABE Coculture"]],"b":[["NCBITaxon%3A1410652","Clostridium beijerinckii HUN142"]]},{"id":"GTDB:s__FACHB-68_sp019359355","l":"","na":1,"nb":1,"a":[["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]],"b":[["NCBITaxon%3A2839660","Microcoleus vaginatus WJT46-NPBG5"]]},{"id":"GTDB:s__Kosakonia_pseudosacchari","l":"","na":1,"nb":1,"a":[["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"]],"b":[["NCBITaxon%3A1646340","Kosakonia pseudosacchari"]]},{"id":"GTDB:s__Lachnospira_sp963590775","l":"","na":1,"nb":1,"a":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["NCBITaxon%3A901","Desulfovibrio piger"]]},{"id":"GTDB:s__Lysinibacillus_mangiferihumi","l":"","na":1,"nb":1,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]],"b":[["NCBITaxon%3A1130819","Lysinibacillus mangiferihumi"]]},{"id":"GTDB:s__Methyloceanibacter_caenitepidi","l":"","na":1,"nb":1,"a":[["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"]],"b":[["NCBITaxon%3A1384459","Methyloceanibacter caenitepidi"]]},{"id":"GTDB:s__Paenibacillus_polymyxa_E","l":"","na":1,"nb":1,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"]],"b":[["NCBITaxon%3A1406","Paenibacillus polymyxa"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_AA","l":"","na":1,"nb":1,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2774511","Prochlorococcus marinus CUG1438"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_AH","l":"","na":1,"nb":1,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A2774508","Prochlorococcus marinus CUG1435"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_G","l":"","na":1,"nb":1,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A93057","Prochlorococcus marinus str. MIT 9201"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_O","l":"","na":1,"nb":1,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A146891","Prochlorococcus marinus str. AS9601"]]},{"id":"GTDB:s__Prochlorococcus_A_marinus_P","l":"","na":1,"nb":1,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A167542","Prochlorococcus marinus str. MIT 9515"]]},{"id":"GTDB:s__Prochlorococcus_B_marinus_D","l":"","na":1,"nb":1,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A1570014","Prochlorococcus marinus str. MIT 0917"]]},{"id":"GTDB:s__Prochlorococcus_B_marinus_E","l":"","na":1,"nb":1,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A3014999","Prochlorococcus marinus str. MIT 1013"]]},{"id":"GTDB:s__Prochlorococcus_B_marinus_F","l":"","na":1,"nb":1,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A3015000","Prochlorococcus marinus str. MIT 1214"]]},{"id":"GTDB:s__Prochlorococcus_D_marinus_B","l":"","na":1,"nb":1,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["NCBITaxon%3A93059","Prochlorococcus marinus str. MIT 9211"]]},{"id":"GTDB:s__Pseudonocardia_broussonetiae","l":"","na":1,"nb":1,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["NCBITaxon%3A2736640","Pseudonocardia broussonetiae"]]},{"id":"GTDB:s__Rhodanobacter_glycinis_A","l":"","na":1,"nb":1,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"]],"b":[["NCBITaxon%3A582702","Rhodanobacter glycinis"]]},{"id":"GTDB:s__Selenomonas_A_lactilytica","l":"","na":1,"nb":1,"a":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic Rumen Consortium"]],"b":[["NCBITaxon%3A927704","Selenomonas ruminantium subsp. lactilytica TAM6421"]]},{"id":"GTDB:s__Selenomonas_A_ruminantium","l":"","na":1,"nb":1,"a":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic Rumen Consortium"]],"b":[["NCBITaxon%3A1280706","Selenomonas ruminantium subsp. ruminantium ATCC 12561"]]},{"id":"GTDB:s__Serratia_D_symbiotica_A","l":"","na":1,"nb":1,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"]],"b":[["NCBITaxon%3A568817","Serratia symbiotica str. 'Cinara cedri'"]]},{"id":"GTDB:s__Streptococcus_mitis_AY","l":"","na":1,"nb":1,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1000588","Streptococcus mitis bv. 2 str. SK95"]]},{"id":"GTDB:s__Streptococcus_mitis_AZ","l":"","na":1,"nb":1,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A864567","Streptococcus mitis ATCC 6249"]]},{"id":"GTDB:s__Streptococcus_mitis_CQ","l":"","na":1,"nb":1,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1095736","Streptococcus mitis SK575"]]},{"id":"GTDB:s__Streptococcus_mitis_H","l":"","na":1,"nb":1,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A585203","Streptococcus mitis SK564"]]},{"id":"GTDB:s__Streptococcus_mitis_K","l":"","na":1,"nb":1,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A1008453","Streptococcus mitis SK1080"]]},{"id":"GTDB:s__Streptococcus_oralis_L","l":"","na":1,"nb":1,"a":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]],"b":[["NCBITaxon%3A927666","Streptococcus oralis Uo5"]]},{"id":"GTDB:s__Syntrophus_gentianae","l":"","na":1,"nb":1,"a":[["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["NCBITaxon%3A43775","Syntrophus gentianae"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":1,"nb":1,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["NCBITaxon%3A100226","Streptomyces coelicolor A3(2)"]]},{"id":"NCBITaxon:101028","l":"Fusarium pseudograminearum","na":1,"nb":1,"a":[["Wheat_CrownRot_TB_CrossKingdom_SynCom.html","Wheat Crown-Rot TB Cross-Kingdom SynCom"]],"b":[["NCBITaxon%3A101028","Fusarium pseudograminearum"]]},{"id":"NCBITaxon:101201","l":"Trichoderma asperellum","na":1,"nb":1,"a":[["Pepper_Growth_Rhizosphere_SynCom.html","Pepper Growth Rhizosphere SynCom"]],"b":[["NCBITaxon%3A101201","Trichoderma asperellum"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":1,"nb":1,"a":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["NCBITaxon%3A101510","Rhodococcus jostii RHA1"]]},{"id":"NCBITaxon:1078905","l":"Nitrosotalea devaniterrae","na":1,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"]],"b":[["NCBITaxon%3A1078905","Nitrosotalea devaniterrae"]]},{"id":"NCBITaxon:1079257","l":"Ilyonectria robusta","na":1,"nb":1,"a":[["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"]],"b":[["NCBITaxon%3A1079257","Ilyonectria robusta"]]},{"id":"NCBITaxon:1105143","l":"Kribbella shirazensis","na":1,"nb":1,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["NCBITaxon%3A1105143","Kribbella shirazensis"]]},{"id":"NCBITaxon:1130819","l":"Lysinibacillus mangiferihumi","na":1,"nb":1,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]],"b":[["NCBITaxon%3A1130819","Lysinibacillus mangiferihumi"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":1,"nb":1,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["NCBITaxon%3A1140","Synechococcus elongatus PCC 7942 = FACHB-805"]]},{"id":"NCBITaxon:117187","l":"Fusarium verticillioides","na":1,"nb":1,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]],"b":[["NCBITaxon%3A117187","Fusarium verticillioides"]]},{"id":"NCBITaxon:1176259","l":"Pseudomonas songnenensis","na":1,"nb":1,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]],"b":[["NCBITaxon%3A1176259","Pseudomonas songnenensis"]]},{"id":"NCBITaxon:118127","l":"Chryseobacterium proteolyticum","na":1,"nb":1,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["NCBITaxon%3A118127","Chryseobacterium proteolyticum"]]},{"id":"NCBITaxon:118667","l":"Bordetella sp. M1-6","na":1,"nb":1,"a":[["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"]],"b":[["NCBITaxon%3A118667","Bordetella sp. M1-6"]]},{"id":"NCBITaxon:118669","l":"Pseudoxanthomonas sp. M1-3","na":1,"nb":1,"a":[["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"]],"b":[["NCBITaxon%3A118669","Pseudoxanthomonas sp. M1-3"]]},{"id":"NCBITaxon:1261393","l":"Desulfatiglans parachlorophenolica","na":1,"nb":1,"a":[["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]],"b":[["NCBITaxon%3A1261393","Desulfatiglans parachlorophenolica"]]},{"id":"NCBITaxon:1334106","l":"Phyllobacterium loti","na":1,"nb":1,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A1334106","Phyllobacterium loti"]]},{"id":"NCBITaxon:1350461","l":"Synechococcus elongatus UTEX 2973","na":1,"nb":1,"a":[["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["NCBITaxon%3A1350461","Synechococcus elongatus UTEX 2973"]]},{"id":"NCBITaxon:1379858","l":"Mucispirillum schaedleri ASF457","na":1,"nb":1,"a":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"]],"b":[["NCBITaxon%3A1379858","Mucispirillum schaedleri ASF457"]]},{"id":"NCBITaxon:1384459","l":"Methyloceanibacter caenitepidi","na":1,"nb":1,"a":[["Methylocaldum_Methyloceanibacter_Methane_Crossfeeding_Coculture.html","Methylocaldum-Methyloceanibacter Methane Cross-Feeding Coculture"]],"b":[["NCBITaxon%3A1384459","Methyloceanibacter caenitepidi"]]},{"id":"NCBITaxon:1501972","l":"Brevundimonas sp. R3","na":1,"nb":1,"a":[["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["NCBITaxon%3A1501972","Brevundimonas sp. R3"]]},{"id":"NCBITaxon:1546519","l":"Sulfitobacter sp. SA11","na":1,"nb":1,"a":[["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["NCBITaxon%3A1546519","Sulfitobacter sp. SA11"]]},{"id":"NCBITaxon:1577725","l":"Conticribra weissflogii","na":1,"nb":1,"a":[["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]],"b":[["NCBITaxon%3A1577725","Conticribra weissflogii"]]},{"id":"NCBITaxon:1605331","l":"Microbacterium sp. UYFA68","na":1,"nb":1,"a":[["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["NCBITaxon%3A1605331","Microbacterium sp. UYFA68"]]},{"id":"NCBITaxon:1641990","l":"Mycolicibacterium montmartrense","na":1,"nb":1,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A1641990","Mycolicibacterium montmartrense"]]},{"id":"NCBITaxon:1642646","l":"Petrimonas mucosa","na":1,"nb":1,"a":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"]],"b":[["NCBITaxon%3A1642646","Petrimonas mucosa"]]},{"id":"NCBITaxon:1646340","l":"Kosakonia pseudosacchari","na":1,"nb":1,"a":[["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"]],"b":[["NCBITaxon%3A1646340","Kosakonia pseudosacchari"]]},{"id":"NCBITaxon:1671625","l":"Candidatus Methanoculleus thermohydrogenotrophicum","na":1,"nb":1,"a":[["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"]],"b":[["NCBITaxon%3A1671625","Candidatus Methanoculleus thermohydrogenotrophicum"]]},{"id":"NCBITaxon:1673428","l":"Cuniculiplasma divulgatum","na":1,"nb":1,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["NCBITaxon%3A1673428","Cuniculiplasma divulgatum"]]},{"id":"NCBITaxon:179879","l":"Burkholderia anthina","na":1,"nb":1,"a":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]],"b":[["NCBITaxon%3A179879","Burkholderia anthina"]]},{"id":"NCBITaxon:1814128","l":"Streptococcus halotolerans","na":1,"nb":1,"a":[["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["NCBITaxon%3A1814128","Streptococcus halotolerans"]]},{"id":"NCBITaxon:1827305","l":"Stenotrophomonas sp. MYb57","na":1,"nb":1,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["NCBITaxon%3A1827305","Stenotrophomonas sp. MYb57"]]},{"id":"NCBITaxon:1869185","l":"Taibaiella sp.","na":1,"nb":1,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]],"b":[["NCBITaxon%3A1869185","Taibaiella sp."]]},{"id":"NCBITaxon:1871068","l":"Phyllobacteriaceae bacterium","na":1,"nb":1,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["NCBITaxon%3A1871068","Phyllobacteriaceae bacterium"]]},{"id":"NCBITaxon:1872086","l":"Ensifer sp.","na":1,"nb":1,"a":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]],"b":[["NCBITaxon%3A1872086","Ensifer sp."]]},{"id":"NCBITaxon:1872114","l":"Acidiplasma sp.","na":1,"nb":1,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["NCBITaxon%3A1872114","Acidiplasma sp."]]},{"id":"NCBITaxon:1872122","l":"Acidovorax sp.","na":1,"nb":1,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"]],"b":[["NCBITaxon%3A1872122","Acidovorax sp."]]},{"id":"NCBITaxon:1872427","l":"Alcanivorax sp.","na":1,"nb":1,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["NCBITaxon%3A1872427","Alcanivorax sp."]]},{"id":"NCBITaxon:1873462","l":"Microbacteriaceae bacterium","na":1,"nb":1,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["NCBITaxon%3A1873462","Microbacteriaceae bacterium"]]},{"id":"NCBITaxon:1898203","l":"Lachnospiraceae bacterium","na":1,"nb":1,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]],"b":[["NCBITaxon%3A1898203","Lachnospiraceae bacterium"]]},{"id":"NCBITaxon:1904413","l":"Suillus clintonianus","na":1,"nb":1,"a":[["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"]],"b":[["NCBITaxon%3A1904413","Suillus clintonianus"]]},{"id":"NCBITaxon:1904944","l":"Stenotrophomonas sp. LM091","na":1,"nb":1,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["NCBITaxon%3A1904944","Stenotrophomonas sp. LM091"]]},{"id":"NCBITaxon:1913961","l":"Rhizobiaceae bacterium","na":1,"nb":1,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["NCBITaxon%3A1913961","Rhizobiaceae bacterium"]]},{"id":"NCBITaxon:1914538","l":"Pseudomonadaceae bacterium","na":1,"nb":1,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["NCBITaxon%3A1914538","Pseudomonadaceae bacterium"]]},{"id":"NCBITaxon:1918507","l":"Candidatus Phosphitivorax anaerolimi","na":1,"nb":1,"a":[["Phosphitivorax_Methanoculleus_Lithosyntrophy_Phosphite_Coculture.html","Phosphitivorax-Methanoculleus Lithosyntrophic Phosphite-Oxidizing Methanogenic Culture"]],"b":[["NCBITaxon%3A1918507","Candidatus Phosphitivorax anaerolimi"]]},{"id":"NCBITaxon:1955250","l":"Novosphingobium endophyticum","na":1,"nb":1,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]],"b":[["NCBITaxon%3A1955250","Novosphingobium endophyticum"]]},{"id":"NCBITaxon:1979961","l":"Wenzhouxiangella sp.","na":1,"nb":1,"a":[["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]],"b":[["NCBITaxon%3A1979961","Wenzhouxiangella sp."]]},{"id":"NCBITaxon:2026194","l":"Bacillus paramycoides","na":1,"nb":1,"a":[["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["NCBITaxon%3A2026194","Bacillus paramycoides"]]},{"id":"NCBITaxon:2030806","l":"Burkholderiaceae bacterium","na":1,"nb":1,"a":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]],"b":[["NCBITaxon%3A2030806","Burkholderiaceae bacterium"]]},{"id":"NCBITaxon:203124","l":"Trichodesmium erythraeum IMS101","na":1,"nb":1,"a":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["NCBITaxon%3A203124","Trichodesmium erythraeum IMS101"]]},{"id":"NCBITaxon:2093828","l":"Neorhizobium tomejilense","na":1,"nb":1,"a":[["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["NCBITaxon%3A2093828","Neorhizobium tomejilense"]]},{"id":"NCBITaxon:216389","l":"Dehalococcoides mccartyi BAV1","na":1,"nb":1,"a":[["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]],"b":[["NCBITaxon%3A216389","Dehalococcoides mccartyi BAV1"]]},{"id":"NCBITaxon:219572","l":"Pseudomonas antarctica","na":1,"nb":1,"a":[["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["NCBITaxon%3A219572","Pseudomonas antarctica"]]},{"id":"NCBITaxon:2268204","l":"Thermoplasmatales archaeon","na":1,"nb":1,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["NCBITaxon%3A2268204","Thermoplasmatales archaeon"]]},{"id":"NCBITaxon:237612","l":"Sphingomonas panni","na":1,"nb":1,"a":[["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["NCBITaxon%3A237612","Sphingomonas panni"]]},{"id":"NCBITaxon:239","l":"Flavobacterium sp.","na":1,"nb":1,"a":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]],"b":[["NCBITaxon%3A239","Flavobacterium sp."]]},{"id":"NCBITaxon:2496117","l":"Variovorax beijingensis","na":1,"nb":1,"a":[["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["NCBITaxon%3A2496117","Variovorax beijingensis"]]},{"id":"NCBITaxon:258594","l":"Rhodopseudomonas palustris CGA009","na":1,"nb":1,"a":[["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"]],"b":[["NCBITaxon%3A258594","Rhodopseudomonas palustris CGA009"]]},{"id":"NCBITaxon:2591003","l":"Ferroplasma sp.","na":1,"nb":1,"a":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]],"b":[["NCBITaxon%3A2591003","Ferroplasma sp."]]},{"id":"NCBITaxon:270351","l":"Methylobacterium aquaticum","na":1,"nb":1,"a":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["NCBITaxon%3A270351","Methylobacterium aquaticum"]]},{"id":"NCBITaxon:2710591","l":"Pseudomonas arcuscaelestis","na":1,"nb":1,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["NCBITaxon%3A2710591","Pseudomonas arcuscaelestis"]]},{"id":"NCBITaxon:272772","l":"Pseudomonas pudica","na":1,"nb":1,"a":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"]],"b":[["NCBITaxon%3A272772","Pseudomonas pudica"]]},{"id":"NCBITaxon:2736640","l":"Pseudonocardia broussonetiae","na":1,"nb":1,"a":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]],"b":[["NCBITaxon%3A2736640","Pseudonocardia broussonetiae"]]},{"id":"NCBITaxon:27381","l":"Funneliformis mosseae","na":1,"nb":1,"a":[["Mediterranean_AM_Fungal_SixSpecies_SynCom.html","Mediterranean AM Fungal Six-Species SynCom"]],"b":[["NCBITaxon%3A27381","Funneliformis mosseae"]]},{"id":"NCBITaxon:2771362","l":"Stenotrophomonas cyclobalanopsidis","na":1,"nb":1,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["NCBITaxon%3A2771362","Stenotrophomonas cyclobalanopsidis"]]},{"id":"NCBITaxon:2782567","l":"Paenarthrobacter sp. GOM3","na":1,"nb":1,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["NCBITaxon%3A2782567","Paenarthrobacter sp. GOM3"]]},{"id":"NCBITaxon:280333","l":"Bradyrhizobium pachyrhizi","na":1,"nb":1,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["NCBITaxon%3A280333","Bradyrhizobium pachyrhizi"]]},{"id":"NCBITaxon:2833596","l":"Pseudomonas harudinis","na":1,"nb":1,"a":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"]],"b":[["NCBITaxon%3A2833596","Pseudomonas harudinis"]]},{"id":"NCBITaxon:2853159","l":"Pseudomonas pergaminensis","na":1,"nb":1,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]],"b":[["NCBITaxon%3A2853159","Pseudomonas pergaminensis"]]},{"id":"NCBITaxon:2886510","l":"Sphingobacterium paramultivorum","na":1,"nb":1,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]],"b":[["NCBITaxon%3A2886510","Sphingobacterium paramultivorum"]]},{"id":"NCBITaxon:2903","l":"Emiliania huxleyi","na":1,"nb":1,"a":[["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"]],"b":[["NCBITaxon%3A2903","Emiliania huxleyi"]]},{"id":"NCBITaxon:2924872","l":"Acididesulfobacillus","na":1,"nb":1,"a":[["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"]],"b":[["NCBITaxon%3A1561005","Acididesulfobacillus acetoxydans"]]},{"id":"NCBITaxon:29305","l":"Streptomyces griseoincarnatus","na":1,"nb":1,"a":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]],"b":[["NCBITaxon%3A29305","Streptomyces griseoincarnatus"]]},{"id":"NCBITaxon:2982533","l":"Microbacterium forte","na":1,"nb":1,"a":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["NCBITaxon%3A2982533","Microbacterium forte"]]},{"id":"NCBITaxon:29875","l":"Trichoderma virens","na":1,"nb":1,"a":[["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"]],"b":[["NCBITaxon%3A29875","Trichoderma virens"]]},{"id":"NCBITaxon:3060965","l":"Paenibacillus sp. 11B","na":1,"nb":1,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"]],"b":[["NCBITaxon%3A3060965","Paenibacillus sp. 11B"]]},{"id":"NCBITaxon:3120696","l":"Ferrovibrionaceae","na":1,"nb":1,"a":[["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]],"b":[["NCBITaxon%3A3121786","Ferrovibrionaceae bacterium"]]},{"id":"NCBITaxon:314235","l":"Phyllobacterium brassicacearum","na":1,"nb":1,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A314235","Phyllobacterium brassicacearum"]]},{"id":"NCBITaxon:316385","l":"Escherichia coli str. K-12 substr. DH10B","na":1,"nb":1,"a":[["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["NCBITaxon%3A316385","Escherichia coli str. K-12 substr. DH10B"]]},{"id":"NCBITaxon:319464","l":"Clostridium sp. FG4","na":1,"nb":1,"a":[["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"]],"b":[["NCBITaxon%3A319464","Clostridium sp. FG4"]]},{"id":"NCBITaxon:323284","l":"Alcaligenes aquatilis","na":1,"nb":1,"a":[["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["NCBITaxon%3A323284","Alcaligenes aquatilis"]]},{"id":"NCBITaxon:324747","l":"Pseudoxanthomonas byssovorax","na":1,"nb":1,"a":[["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]],"b":[["NCBITaxon%3A324747","Pseudoxanthomonas byssovorax"]]},{"id":"NCBITaxon:332101","l":"Clostridium drakei","na":1,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"]],"b":[["NCBITaxon%3A332101","Clostridium drakei"]]},{"id":"NCBITaxon:33883","l":"Microbacterium arborescens","na":1,"nb":1,"a":[["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["NCBITaxon%3A33883","Microbacterium arborescens"]]},{"id":"NCBITaxon:340177","l":"Chlorobium chlorochromatii CaD3","na":1,"nb":1,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"]],"b":[["NCBITaxon%3A340177","Chlorobium chlorochromatii CaD3"]]},{"id":"NCBITaxon:34358","l":"Maudiozyma exigua","na":1,"nb":1,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]],"b":[["NCBITaxon%3A34358","Maudiozyma exigua"]]},{"id":"NCBITaxon:346911","l":"Labrys okinawensis","na":1,"nb":1,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]],"b":[["NCBITaxon%3A346911","Labrys okinawensis"]]},{"id":"NCBITaxon:346912","l":"Labrys miyagiensis","na":1,"nb":1,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]],"b":[["NCBITaxon%3A346912","Labrys miyagiensis"]]},{"id":"NCBITaxon:36015","l":"Pichia kluyveri","na":1,"nb":1,"a":[["Pichia_Lactiplantibacillus_CCMA_Plant_Beverage_Coculture.html","Pichia-Lactiplantibacillus CCMA Plant Beverage Coculture"]],"b":[["NCBITaxon%3A36015","Pichia kluyveri"]]},{"id":"NCBITaxon:363331","l":"Chryseobacterium taiwanense","na":1,"nb":1,"a":[["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["NCBITaxon%3A363331","Chryseobacterium taiwanense"]]},{"id":"NCBITaxon:363867","l":"Aeromicrobium ginsengisoli","na":1,"nb":1,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A363867","Aeromicrobium ginsengisoli"]]},{"id":"NCBITaxon:372461","l":"Buchnera aphidicola BCc","na":1,"nb":1,"a":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"]],"b":[["NCBITaxon%3A372461","Buchnera aphidicola BCc"]]},{"id":"NCBITaxon:37319","l":"Pseudo-nitzschia multiseries","na":1,"nb":1,"a":[["Pseudonitzschia_Sulfitobacter_Association.html","Pseudo-nitzschia-Sulfitobacter Marine Association"]],"b":[["NCBITaxon%3A37319","Pseudo-nitzschia multiseries"]]},{"id":"NCBITaxon:375486","l":"Paenibacillus sp. PALXIL05","na":1,"nb":1,"a":[["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["NCBITaxon%3A375486","Paenibacillus sp. PALXIL05"]]},{"id":"NCBITaxon:37927","l":"Sinomonas atrocyanea","na":1,"nb":1,"a":[["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"]],"b":[["NCBITaxon%3A37927","Sinomonas atrocyanea"]]},{"id":"NCBITaxon:37929","l":"Glutamicibacter nicotianae","na":1,"nb":1,"a":[["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"]],"b":[["NCBITaxon%3A37929","Glutamicibacter nicotianae"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"]],"b":[["NCBITaxon%3A395960","Rhodopseudomonas palustris TIE-1"]]},{"id":"NCBITaxon:399726","l":"Thermoanaerobacter sp. X514","na":1,"nb":1,"a":[["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"]],"b":[["NCBITaxon%3A399726","Thermoanaerobacter sp. X514"]]},{"id":"NCBITaxon:419541","l":"Leptospirillum sp. Group II '5-way CG'","na":1,"nb":1,"a":[["Richmond_Mine_AMD_Biofilm.html","Richmond Mine AMD Biofilm"]],"b":[["NCBITaxon%3A419541","Leptospirillum sp. Group II '5-way CG'"]]},{"id":"NCBITaxon:427562","l":"Bacillus sp. 'Bacillus M3'","na":1,"nb":1,"a":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"]],"b":[["NCBITaxon%3A427562","Bacillus sp. 'Bacillus M3'"]]},{"id":"NCBITaxon:428990","l":"Novosphingobium mathurense","na":1,"nb":1,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]],"b":[["NCBITaxon%3A428990","Novosphingobium mathurense"]]},{"id":"NCBITaxon:43775","l":"Syntrophus gentianae","na":1,"nb":1,"a":[["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]],"b":[["NCBITaxon%3A43775","Syntrophus gentianae"]]},{"id":"NCBITaxon:43925","l":"Nannochloropsis oculata","na":1,"nb":1,"a":[["Microalgae_Cyanobacteria_Bioactive_Peptide_Consortia.html","Microalgae-Cyanobacteria Bioactive Peptide Consortia"]],"b":[["NCBITaxon%3A43925","Nannochloropsis oculata"]]},{"id":"NCBITaxon:453960","l":"Sulfobacillus benefaciens","na":1,"nb":1,"a":[["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"]],"b":[["NCBITaxon%3A453960","Sulfobacillus benefaciens"]]},{"id":"NCBITaxon:4757","l":"Neocallimastix frontalis","na":1,"nb":1,"a":[["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"]],"b":[["NCBITaxon%3A4757","Neocallimastix frontalis"]]},{"id":"NCBITaxon:4876","l":"Rhizophagus intraradices","na":1,"nb":1,"a":[["Mediterranean_AM_Fungal_SixSpecies_SynCom.html","Mediterranean AM Fungal Six-Species SynCom"]],"b":[["NCBITaxon%3A4876","Rhizophagus intraradices"]]},{"id":"NCBITaxon:487698","l":"Stenotrophomonas pavanii","na":1,"nb":1,"a":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]],"b":[["NCBITaxon%3A487698","Stenotrophomonas pavanii"]]},{"id":"NCBITaxon:492774","l":"Rhizobium alamii","na":1,"nb":1,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A492774","Rhizobium alamii"]]},{"id":"NCBITaxon:4956","l":"Zygosaccharomyces rouxii","na":1,"nb":1,"a":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]],"b":[["NCBITaxon%3A4956","Zygosaccharomyces rouxii"]]},{"id":"NCBITaxon:5007","l":"Brettanomyces bruxellensis","na":1,"nb":1,"a":[["Sichuan_Shai_Vinegar_Yeast_Flavor_SynCom.html","Sichuan Shai Vinegar Yeast Flavor SynCom"]],"b":[["NCBITaxon%3A5007","Brettanomyces bruxellensis"]]},{"id":"NCBITaxon:505252","l":"Marivita cryptomonadis","na":1,"nb":1,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["NCBITaxon%3A505252","Marivita cryptomonadis"]]},{"id":"NCBITaxon:51915","l":"Maudiozyma humilis","na":1,"nb":1,"a":[["Sichuan_Shai_Vinegar_Yeast_Flavor_SynCom.html","Sichuan Shai Vinegar Yeast Flavor SynCom"]],"b":[["NCBITaxon%3A51915","Maudiozyma humilis"]]},{"id":"NCBITaxon:5323","l":"Pleurotus eryngii","na":1,"nb":1,"a":[["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"]],"b":[["NCBITaxon%3A5323","Pleurotus eryngii"]]},{"id":"NCBITaxon:5535","l":"Rhodotorula glutinis","na":1,"nb":1,"a":[["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["NCBITaxon%3A5535","Rhodotorula glutinis"]]},{"id":"NCBITaxon:5547","l":"Trichoderma viride","na":1,"nb":1,"a":[["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["NCBITaxon%3A5547","Trichoderma viride"]]},{"id":"NCBITaxon:571256","l":"Brucella pituitosa","na":1,"nb":1,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]],"b":[["NCBITaxon%3A571256","Brucella pituitosa"]]},{"id":"NCBITaxon:574561","l":"Rhizobium pisi","na":1,"nb":1,"a":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["NCBITaxon%3A574561","Rhizobium pisi"]]},{"id":"NCBITaxon:577386","l":"Paraniabella yanshanensis","na":1,"nb":1,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["NCBITaxon%3A577386","Paraniabella yanshanensis"]]},{"id":"NCBITaxon:582702","l":"Rhodanobacter glycinis","na":1,"nb":1,"a":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"]],"b":[["NCBITaxon%3A582702","Rhodanobacter glycinis"]]},{"id":"NCBITaxon:592050","l":"Acidovorax soli","na":1,"nb":1,"a":[["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]],"b":[["NCBITaxon%3A592050","Acidovorax soli"]]},{"id":"NCBITaxon:666685","l":"Rhodanobacter denitrificans","na":1,"nb":1,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"]],"b":[["NCBITaxon%3A666685","Rhodanobacter denitrificans"]]},{"id":"NCBITaxon:668369","l":"Escherichia coli DH5[alpha]","na":1,"nb":1,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]],"b":[["NCBITaxon%3A668369","Escherichia coli DH5[alpha]"]]},{"id":"NCBITaxon:67355","l":"Streptomyces recifensis","na":1,"nb":1,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]],"b":[["NCBITaxon%3A67355","Streptomyces recifensis"]]},{"id":"NCBITaxon:67356","l":"Streptomyces resistomycificus","na":1,"nb":1,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A67356","Streptomyces resistomycificus"]]},{"id":"NCBITaxon:68264","l":"Streptomyces rishiriensis","na":1,"nb":1,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A68264","Streptomyces rishiriensis"]]},{"id":"NCBITaxon:68274","l":"Streptomyces tauricus","na":1,"nb":1,"a":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]],"b":[["NCBITaxon%3A68274","Streptomyces tauricus"]]},{"id":"NCBITaxon:69373","l":"Curtobacterium pusillum","na":1,"nb":1,"a":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]],"b":[["NCBITaxon%3A69373","Curtobacterium pusillum"]]},{"id":"NCBITaxon:759811","l":"Lysinibacillus pakistanensis","na":1,"nb":1,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"]],"b":[["NCBITaxon%3A759811","Lysinibacillus pakistanensis"]]},{"id":"NCBITaxon:82","l":"Hyphomicrobium sp.","na":1,"nb":1,"a":[["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"]],"b":[["NCBITaxon%3A82","Hyphomicrobium sp."]]},{"id":"NCBITaxon:82803","l":"Trichococcus flocculiformis","na":1,"nb":1,"a":[["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["NCBITaxon%3A82803","Trichococcus flocculiformis"]]},{"id":"NCBITaxon:857252","l":"Halopseudomonas aestusnigri","na":1,"nb":1,"a":[["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"]],"b":[["NCBITaxon%3A857252","Halopseudomonas aestusnigri"]]},{"id":"NCBITaxon:86265","l":"Pseudomonas thivervalensis","na":1,"nb":1,"a":[["Ginseng_CL95_Rusty_Root_Rot_Biocontrol_SynCom.html","Ginseng CL95 Rusty Root Rot Biocontrol SynCom"]],"b":[["NCBITaxon%3A86265","Pseudomonas thivervalensis"]]},{"id":"NCBITaxon:864069","l":"Microvirga lotononidis","na":1,"nb":1,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]],"b":[["NCBITaxon%3A864069","Microvirga lotononidis"]]},{"id":"NCBITaxon:870529","l":"Bacillus sp. DB7","na":1,"nb":1,"a":[["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]],"b":[["NCBITaxon%3A870529","Bacillus sp. DB7"]]},{"id":"NCBITaxon:870530","l":"Klebsiella sp. DB13","na":1,"nb":1,"a":[["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]],"b":[["NCBITaxon%3A870530","Klebsiella sp. DB13"]]},{"id":"NCBITaxon:870532","l":"Ochrobactrum sp. DB8","na":1,"nb":1,"a":[["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]],"b":[["NCBITaxon%3A870532","Ochrobactrum sp. DB8"]]},{"id":"NCBITaxon:871203","l":"Caballeronia zhejiangensis","na":1,"nb":1,"a":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]],"b":[["NCBITaxon%3A871203","Caballeronia zhejiangensis"]]},{"id":"NCBITaxon:940139","l":"Terriglobus aquaticus","na":1,"nb":1,"a":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]],"b":[["NCBITaxon%3A940139","Terriglobus aquaticus"]]},{"id":"NCBITaxon:94130","l":"Rhizophagus clarus","na":1,"nb":1,"a":[["Mediterranean_AM_Fungal_SixSpecies_SynCom.html","Mediterranean AM Fungal Six-Species SynCom"]],"b":[["NCBITaxon%3A94130","Rhizophagus clarus"]]},{"id":"NCBITaxon:94626","l":"Brucella tritici","na":1,"nb":1,"a":[["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]],"b":[["NCBITaxon%3A94626","Brucella tritici"]]},{"id":"NCBITaxon:97485","l":"Prymnesium parvum","na":1,"nb":1,"a":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]],"b":[["NCBITaxon%3A97485","Prymnesium parvum"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/CommunityMech--TraitMech.json b/assets/fleet/edges/CommunityMech--TraitMech.json index d24c651..8a73256 100644 --- a/assets/fleet/edges/CommunityMech--TraitMech.json +++ b/assets/fleet/edges/CommunityMech--TraitMech.json @@ -1 +1 @@ -{"a":"CommunityMech","b":"TraitMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","TraitMech":"https://culturebotai.github.io/TraitMech/pages/traits/"},"n":157,"by":{"CHEBI":61,"NCBITaxon":61,"GO":35},"terms":[{"id":"CHEBI:16526","l":"carbon dioxide","na":75,"nb":30,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]],"b":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"]]},{"id":"CHEBI:15379","l":"dioxygen","na":25,"nb":25,"a":[["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["environment/aerobic.html","aerobic"],["environment/aerotolerant.html","aerotolerant"],["environment/anaerobic.html","anaerobic"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_aerobic.html","facultatively aerobic"],["environment/facultatively_anaerobic.html","facultatively anaerobic"]]},{"id":"GO:0015977","l":"carbon fixation","na":33,"nb":15,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":18,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/neutrophilic.html","neutrophilic"],["environment/non_halophilic.html","non halophilic"],["genomics/spbk_system.html","SpbK system"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":14,"nb":65,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]],"b":[["ecology/biosafety_level.html","biosafety level"],["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/host_associated.html","host-associated"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/halophily_preference.html","halophily preference"]]},{"id":"CHEBI:18276","l":"dihydrogen","na":58,"nb":13,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"]],"b":[["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/does_not_use_as_electron_donor.html","does not use as electron donor"],["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"]]},{"id":"GO:0006113","l":"fermentation","na":43,"nb":11,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"]],"b":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"],["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]]},{"id":"CHEBI:50860","l":"organic molecular entity","na":16,"nb":10,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["physiology/aerobic_anoxygenic_phototrophy.html","aerobic anoxygenic phototrophy"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"],["physiology/chemotrophic.html","chemotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"],["physiology/mixotrophic.html","mixotrophic"]]},{"id":"GO:0022900","l":"electron transport chain","na":15,"nb":10,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"]],"b":[["environment/obligately_aerobic.html","obligately aerobic"],["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/electron_transfer.html","Electron transfer"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"]]},{"id":"CHEBI:17632","l":"nitrate","na":28,"nb":9,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"],["metabolism/does_not_use_as_electron_acceptor.html","does not use as electron acceptor"]]},{"id":"CHEBI:17234","l":"glucose","na":26,"nb":9,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"]],"b":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/biopolymer_degradation.html","biopolymer degradation"],["metabolism/cellulolysis.html","cellulolysis"],["metabolism/does_not_use_as_carbon_source.html","does not use as carbon source"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/starch_degradation.html","starch degradation"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":9,"nb":11,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"]],"b":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/aerobic.html","aerobic"],["genomics/avast_system.html","AVAST system"],["genomics/jukab_system.html","JukAB system"],["morphology/motile.html","motile"]]},{"id":"GO:0009061","l":"anaerobic respiration","na":8,"nb":8,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["environment/anaerobic.html","anaerobic"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]]},{"id":"GO:0042710","l":"biofilm formation","na":29,"nb":7,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/host_associated.html","host-associated"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["ecology/plant_pathogen.html","plant pathogen"],["ecology/rhizosphere_association.html","rhizosphere association"]]},{"id":"CHEBI:16189","l":"sulfate","na":25,"nb":7,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"],["metabolism/disproportionation.html","Disproportionation"],["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"],["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":21,"nb":7,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/iron_oxidation.html","iron oxidation"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"]]},{"id":"CHEBI:15361","l":"pyruvate","na":8,"nb":7,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]]},{"id":"CHEBI:16134","l":"ammonia","na":14,"nb":6,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]],"b":[["environment/ph_delta_mid1.html","pH delta mid1"],["metabolism/nitrogen_fixation.html","nitrogen fixation"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"],["physiology/urease_activity.html","urease activity"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":6,"nb":11,"a":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"],["morphology/carboxysome.html","carboxysome"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":9,"nb":6,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]],"b":[["ecology/free_living.html","free-living"],["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["genomics/transposable_element.html","transposable element"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"]]},{"id":"CHEBI:16301","l":"nitrite","na":17,"nb":5,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"]]},{"id":"GO:0009060","l":"aerobic respiration","na":5,"nb":8,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Soil_CPR_Nanoarchaea_Rare_Biosphere_Community.html","Soil CPR Bacteria and Nanoarchaea Rare-Biosphere Community"]],"b":[["environment/aerobic.html","aerobic"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_aerobic.html","facultatively aerobic"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/obligately_aerobic.html","obligately aerobic"],["metabolism/aerobic_respiration.html","Aerobic respiration"]]},{"id":"NCBITaxon:920","l":"Acidithiobacillus ferrooxidans","na":8,"nb":5,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["environment/obligately_acidophilic.html","obligately acidophilic"],["environment/ph_range_low.html","pH range low"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"],["physiology/lithotrophic.html","lithotrophic"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":7,"nb":5,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["genomics/gabija_system.html","Gabija system"],["genomics/shedu_system.html","Shedu system"],["genomics/thoeris_system.html","Thoeris system"],["physiology/caseinase_activity.html","caseinase activity"],["physiology/lecithinase_activity.html","lecithinase activity"]]},{"id":"GO:0009056","l":"catabolic process","na":6,"nb":5,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"],["Wetland_Oxygen_Sulfate_GHG_Microcosm_Community.html","Wetland Oxygen-Sulfate Greenhouse Gas Microcosm Community"]],"b":[["metabolism/metabolism.html","metabolism"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"],["physiology/heterotrophic.html","heterotrophic"],["physiology/organotrophic.html","organotrophic"]]},{"id":"GO:0006935","l":"chemotaxis","na":5,"nb":5,"a":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["SynCom_MetG2_Rhizobacteria_Sugarcane_Stress_Resilience.html","SynCom MetG2 Rhizobacteria Sugarcane Stress Resilience"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"],["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["morphology/flagellated.html","flagellated"],["morphology/motile.html","motile"],["morphology/motility.html","motility"],["physiology/chemotaxis.html","chemotaxis"],["physiology/copiotrophic.html","copiotrophic"]]},{"id":"CHEBI:30089","l":"acetate","na":78,"nb":4,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"]],"b":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":4,"nb":19,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["environment/aerotolerant.html","aerotolerant"],["genomics/abia_system.html","AbiA system"],["genomics/abib_system.html","AbiB system"],["genomics/abic_system.html","AbiC system"],["genomics/abid_system.html","AbiD system"],["genomics/abie_system.html","AbiE system"]]},{"id":"CHEBI:26833","l":"sulfur atom","na":12,"nb":4,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["metabolism/disproportionation.html","Disproportionation"],["morphology/sulfur_globule.html","sulfur globule"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/photolithotrophic.html","photolithotrophic"]]},{"id":"GO:0009372","l":"quorum sensing","na":9,"nb":4,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["ecology/plant_pathogen.html","plant pathogen"],["morphology/green_pigmented.html","green pigmented"],["morphology/swarming_motility.html","swarming motility"],["physiology/quorum_sensing.html","quorum sensing"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":4,"nb":8,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["environment/aerotolerant.html","aerotolerant"],["environment/microaerophilic.html","microaerophilic"],["environment/microaerotolerant.html","microaerotolerant"],["environment/obligately_aerobic.html","obligately aerobic"],["environment/obligately_anaerobic.html","obligately anaerobic"],["environment/oxygen_preference.html","oxygen preference"]]},{"id":"CHEBI:15138","l":"sulfide(2-)","na":4,"nb":6,"a":[["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"]],"b":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"],["metabolism/disproportionation.html","Disproportionation"],["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"],["physiology/lithoheterotrophic.html","lithoheterotrophic"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]]},{"id":"CHEBI:17245","l":"carbon monoxide","na":6,"nb":4,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Subsurface_Carboxydocella_CO_Aquifer_Community.html","Subsurface Carboxydocella CO-Oxidation Aquifer Community"]],"b":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["physiology/carboxydotrophic.html","carboxydotrophic"],["physiology/oxidase_activity.html","oxidase activity"]]},{"id":"NCBITaxon:70863","l":"Shewanella oneidensis","na":6,"nb":4,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"],["Shewanella_Pseudomonas_Fe0_Electrosyntrophic_Denitrifying_Consortium.html","Shewanella oneidensis + Pseudomonas aeruginosa Fe0-dependent Electro-syntrophic Denitrifying Consortium"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["environment/piezotolerant.html","piezotolerant"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/electron_transfer.html","Electron transfer"]]},{"id":"CHEBI:15377","l":"water","na":4,"nb":4,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["physiology/catalase_activity.html","catalase activity"],["physiology/photoautotrophic.html","photoautotrophic"]]},{"id":"CHEBI:16183","l":"methane","na":62,"nb":3,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"]],"b":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/methanogenesis.html","Methanogenesis"],["physiology/methanotrophic.html","methanotrophic"]]},{"id":"GO:0015948","l":"methanogenesis","na":44,"nb":3,"a":[["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"]],"b":[["metabolism/acetoclastic_methanogenesis.html","acetoclastic methanogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/methyl_based_methanogenesis.html","methyl-based methanogenesis"]]},{"id":"GO:0009399","l":"nitrogen fixation","na":24,"nb":3,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"]],"b":[["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["metabolism/nitrogen_fixation.html","nitrogen fixation"],["morphology/heterocyst.html","heterocyst"]]},{"id":"CHEBI:29034","l":"iron(3+)","na":21,"nb":3,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/iron_oxidation.html","iron oxidation"],["metabolism/photoferrotrophy.html","photoferrotrophy"]]},{"id":"CHEBI:17997","l":"dinitrogen","na":12,"nb":3,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]]},{"id":"CHEBI:17750","l":"glycine betaine","na":3,"nb":8,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["environment/euryhaline.html","euryhaline"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/moderately_halophilic.html","moderately halophilic"],["environment/nacl_optimum_mid1.html","NaCl optimum mid1"],["environment/nacl_optimum_mid2.html","NaCl optimum mid2"],["environment/nacl_range_mid2.html","NaCl range mid2"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":6,"nb":3,"a":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["ecology/rhizosphere_association.html","rhizosphere association"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/psychrotolerant.html","psychrotolerant"]]},{"id":"NCBITaxon:35554","l":"Geobacter sulfurreducens","na":6,"nb":3,"a":[["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"]],"b":[["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/electron_transfer.html","Electron transfer"]]},{"id":"CHEBI:29103","l":"potassium(1+)","na":3,"nb":5,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["environment/extremely_halophilic.html","extremely halophilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/non_halophilic.html","non halophilic"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":3,"nb":5,"a":[["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["metabolism/dimethyl_sulfoxide_respiration.html","dimethyl sulfoxide respiration"],["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/electron_transfer.html","Electron transfer"]]},{"id":"GO:0030001","l":"metal ion transport","na":3,"nb":4,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/metal_tolerant.html","metal tolerant"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":4,"nb":3,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"],["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["environment/aerobic.html","aerobic"],["environment/obligately_aerobic.html","obligately aerobic"],["morphology/tetrad_arrangement.html","tetrad arrangement"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":4,"nb":3,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["environment/anaerobic.html","anaerobic"],["environment/strictly_anaerobic.html","strictly anaerobic"],["metabolism/fumarate_respiration.html","fumarate respiration"]]},{"id":"CHEBI:29035","l":"manganese(2+)","na":3,"nb":3,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"]],"b":[["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/lignin_degradation.html","lignin degradation"],["metabolism/manganese_oxidation.html","manganese oxidation"]]},{"id":"CHEBI:18246","l":"(1->4)-beta-D-glucan","na":27,"nb":2,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/cellulolysis.html","cellulolysis"]]},{"id":"CHEBI:16236","l":"ethanol","na":25,"nb":2,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]]},{"id":"GO:0044403","l":"biological process involved in symbiotic interaction","na":20,"nb":2,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["ecology/plant_pathogen.html","plant pathogen"],["ecology/symbiosis.html","symbiosis"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":15,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["ecology/biosafety_level_2.html","biosafety level 2"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/coccus_shaped.html","coccus shaped"]]},{"id":"CHEBI:16136","l":"hydrogen sulfide","na":12,"nb":2,"a":[["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/photolithotrophic.html","photolithotrophic"]]},{"id":"CHEBI:17790","l":"methanol","na":10,"nb":2,"a":[["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"]],"b":[["physiology/methanotrophic.html","methanotrophic"],["physiology/methylotrophic.html","methylotrophic"]]},{"id":"CHEBI:6457","l":"lignin","na":10,"nb":2,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/biopolymer_degradation.html","biopolymer degradation"]]},{"id":"GO:0019329","l":"ammonia oxidation","na":10,"nb":2,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"]],"b":[["metabolism/complete_ammonia_oxidation.html","complete ammonia oxidation"],["metabolism/nitrification.html","nitrification"]]},{"id":"CHEBI:26523","l":"reactive oxygen species","na":2,"nb":9,"a":[["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["environment/aerobic.html","aerobic"],["environment/aerotolerant.html","aerotolerant"],["environment/anaerobic.html","anaerobic"],["environment/microaerophilic.html","microaerophilic"],["environment/microaerotolerant.html","microaerotolerant"],["environment/obligately_anaerobic.html","obligately anaerobic"]]},{"id":"GO:0006970","l":"response to osmotic stress","na":2,"nb":9,"a":[["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["environment/extremely_halophilic.html","extremely halophilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/halotolerant.html","halotolerant"],["environment/moderately_halophilic.html","moderately halophilic"],["environment/nacl_delta.html","NaCl delta"]]},{"id":"NCBITaxon:818","l":"Bacteroides thetaiotaomicron","na":7,"nb":2,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["ecology/gut_associated.html","gut-associated"],["ecology/host_associated.html","host-associated"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":2,"nb":6,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"]],"b":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/oxidase_activity.html","oxidase activity"]]},{"id":"NCBITaxon:32046","l":"Synechococcus elongatus","na":6,"nb":2,"a":[["Synechococcus_Bacillus_SPC.html","Synechococcus-Bacillus Synthetic Photosynthetic Consortium"],["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"],["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"],["Synechococcus_Saccharomyces_SPC.html","Synechococcus-Saccharomyces Synthetic Photosynthetic Consortium"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["morphology/carboxysome.html","carboxysome"],["physiology/autotrophic.html","autotrophic"]]},{"id":"CHEBI:16094","l":"thiosulfate(2-)","na":2,"nb":5,"a":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["metabolism/disproportionation.html","Disproportionation"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"],["physiology/lithotrophic.html","lithotrophic"]]},{"id":"NCBITaxon:915","l":"Nitrosomonas europaea","na":2,"nb":5,"a":[["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["physiology/autotrophic.html","autotrophic"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"],["physiology/lithotrophic.html","lithotrophic"]]},{"id":"CHEBI:29105","l":"zinc(2+)","na":4,"nb":2,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/zinc_tolerant.html","zinc tolerant"]]},{"id":"NCBITaxon:1148","l":"Synechocystis sp. PCC 6803","na":2,"nb":4,"a":[["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/trophic_type.html","trophic type"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":4,"nb":2,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["genomics/crispr_cas_system.html","CRISPR-Cas system"],["genomics/phage_defense_system.html","phage defense system"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":2,"nb":4,"a":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["ecology/mutualism.html","mutualism"],["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["ecology/symbiosis.html","symbiosis"],["genomics/hna_system.html","Hna system"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":3,"nb":2,"a":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["physiology/methanotrophic.html","methanotrophic"],["physiology/methylotrophic.html","methylotrophic"]]},{"id":"CHEBI:17045","l":"dinitrogen oxide","na":3,"nb":2,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"]],"b":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["physiology/chemolithotrophic.html","chemolithotrophic"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":3,"nb":2,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["genomics/abialpha_system.html","AbiAlpha system"],["physiology/gelatinase_activity.html","gelatinase activity"]]},{"id":"NCBITaxon:28116","l":"Bacteroides ovatus","na":3,"nb":2,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["metabolism/xylan_degradation.html","xylan degradation"],["physiology/amylase_activity.html","amylase activity"]]},{"id":"GO:0006099","l":"tricarboxylic acid cycle","na":2,"nb":2,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["physiology/heterotrophic.html","heterotrophic"],["physiology/organoheterotrophic.html","organoheterotrophic"]]},{"id":"NCBITaxon:272562","l":"Clostridium acetobutylicum (strain ATCC 824 / DSM 792 / JCM 1419 / IAM 19013 / LMG 5710 / NBRC 13948 / NRRL B-527 / VKM B-1787 / 2291 / W)","na":2,"nb":2,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["metabolism/acetone_butanol_ethanol_fermentation.html","acetone-butanol-ethanol fermentation"],["metabolism/fermentation.html","Fermentation"]]},{"id":"GO:0015979","l":"photosynthesis","na":44,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["metabolism/photosynthesis.html","photosynthesis"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":1,"nb":26,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["environment/ph_phenotype_with_numerical_limits.html","pH phenotype with numerical limits"],["environment/temperature_optimum_mid4.html","temperature optimum mid4"],["genomics/rnlab_system.html","RnlAB system"],["metabolism/metabolism.html","metabolism"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/respiration.html","respiration"]]},{"id":"CHEBI:15740","l":"formate","na":23,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"]],"b":[["metabolism/syntrophy.html","Syntrophy"]]},{"id":"CHEBI:24996","l":"lactate","na":22,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]]},{"id":"CHEBI:17968","l":"butyrate","na":19,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"]],"b":[["ecology/gut_associated.html","gut-associated"]]},{"id":"CHEBI:28938","l":"ammonium","na":19,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]]},{"id":"GO:0019420","l":"dissimilatory sulfate reduction","na":17,"nb":1,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["DVM_Triculture.html","DVM Tri-culture"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"]],"b":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]]},{"id":"GO:0051453","l":"regulation of intracellular pH","na":1,"nb":17,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["environment/acidophilic.html","acidophilic"],["environment/acidotolerant.html","acidotolerant"],["environment/alkalotolerant.html","alkalotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"]]},{"id":"GO:0019333","l":"denitrification pathway","na":13,"nb":1,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"]],"b":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"]]},{"id":"CHEBI:17272","l":"propionate","na":11,"nb":1,"a":[["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"]],"b":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]]},{"id":"GO:0045493","l":"xylan catabolic process","na":11,"nb":1,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["metabolism/xylan_degradation.html","xylan degradation"]]},{"id":"CHEBI:29036","l":"copper(2+)","na":10,"nb":1,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["environment/copper_tolerant.html","copper tolerant"]]},{"id":"CHEBI:26710","l":"sodium chloride","na":9,"nb":1,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["environment/halophilic.html","halophilic"]]},{"id":"CHEBI:15378","l":"hydron","na":1,"nb":8,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["environment/acidophilic.html","acidophilic"],["environment/acidotolerant.html","acidotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"],["environment/obligately_acidophilic.html","obligately acidophilic"]]},{"id":"CHEBI:18222","l":"xylose","na":8,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]],"b":[["metabolism/xylan_degradation.html","xylan degradation"]]},{"id":"GO:0046274","l":"lignin catabolic process","na":8,"nb":1,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"]],"b":[["metabolism/lignin_degradation.html","lignin degradation"]]},{"id":"CHEBI:17057","l":"cellobiose","na":7,"nb":1,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["metabolism/cellulolysis.html","cellulolysis"]]},{"id":"CHEBI:29101","l":"sodium(1+)","na":1,"nb":7,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"]],"b":[["environment/alkaphilic.html","alkaliphilic"],["environment/euryhaline.html","euryhaline"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/nacl_delta_mid2.html","NaCl delta mid2"]]},{"id":"CHEBI:64709","l":"organic acid","na":7,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":1,"nb":7,"a":[["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/copper_tolerant.html","copper tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["environment/metal_tolerant.html","metal tolerant"]]},{"id":"NCBITaxon:1488","l":"Clostridium acetobutylicum","na":1,"nb":7,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["environment/anaerobic.html","anaerobic"],["environment/obligately_anaerobic.html","obligately anaerobic"],["metabolism/fermentation.html","Fermentation"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"],["morphology/gram_variable.html","gram variable"],["morphology/spindle_shaped.html","spindle shaped"]]},{"id":"GO:0006979","l":"response to oxidative stress","na":6,"nb":1,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["physiology/oxidative_stress_response.html","oxidative stress response"]]},{"id":"GO:0009292","l":"horizontal gene transfer","na":1,"nb":6,"a":[["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"]],"b":[["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["genomics/genome_size.html","genome size"],["genomics/genomic_island.html","genomic island"],["genomics/mobile_genetic_element.html","mobile genetic element"],["genomics/pangenome_openness.html","pangenome openness"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":1,"nb":6,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["ecology/animal_pathogen.html","animal pathogen"],["ecology/biosafety_level_2.html","biosafety level 2"],["genomics/genomic_island.html","genomic island"],["genomics/prophage.html","prophage"],["morphology/flagellated.html","flagellated"],["morphology/peritrichous.html","peritrichous"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":6,"nb":1,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]]},{"id":"CHEBI:61266","l":"hemicellulose","na":5,"nb":1,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"],["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["ecology/saprotrophy.html","saprotrophy"]]},{"id":"CHEBI:16199","l":"urea","na":4,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["physiology/urease_activity.html","urease activity"]]},{"id":"CHEBI:17029","l":"chitin","na":4,"nb":1,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]],"b":[["metabolism/chitinolysis.html","chitinolysis"]]},{"id":"CHEBI:48775","l":"cadmium(2+)","na":4,"nb":1,"a":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Meghalaya_Bacillus_Consortia_A22ED9.html","Meghalaya Bacillus Consortia-A22ED9"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["SynCom_Pseudomonas_Rahnella_Artemisia_Phytoremediation.html","Pseudomonas-Rahnella native rhizosphere SynCom for Artemisia argyi phytoremediation"]],"b":[["environment/cadmium_tolerant.html","cadmium tolerant"]]},{"id":"GO:0006412","l":"translation","na":1,"nb":4,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["environment/mesophilic.html","mesophilic"],["genomics/codon_usage_bias.html","codon usage bias"],["physiology/cold_shock_response.html","cold shock response"],["physiology/dormancy.html","dormancy"]]},{"id":"GO:0009252","l":"peptidoglycan biosynthetic process","na":1,"nb":4,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"]],"b":[["morphology/bacillus_shaped.html","bacillus shaped"],["morphology/cell_shape.html","cell shape"],["morphology/coccobacillus_shaped.html","coccobacillus shaped"],["morphology/rod_shaped.html","rod shaped"]]},{"id":"GO:0019253","l":"reductive pentose-phosphate cycle","na":1,"nb":4,"a":[["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["physiology/autotrophic.html","autotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/photoautotrophic.html","photoautotrophic"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":4,"nb":1,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["metabolism/starch_degradation.html","starch degradation"]]},{"id":"NCBITaxon:165695","l":"Sphingobium","na":4,"nb":1,"a":[["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["Sphingobium_Nitrososphaera_Phenanthrene_Carbon_SynCom.html","Sphingobium-Nitrososphaera Phenanthrene-Carbon SynCom"],["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["metabolism/lignin_degradation.html","lignin degradation"]]},{"id":"NCBITaxon:243164","l":"Dehalococcoides mccartyi 195","na":4,"nb":1,"a":[["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["metabolism/organohalide_respiration.html","organohalide respiration"]]},{"id":"NCBITaxon:863","l":"Syntrophomonas wolfei","na":4,"nb":1,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["metabolism/syntrophy.html","Syntrophy"]]},{"id":"CHEBI:26672","l":"siderophore","na":3,"nb":1,"a":[["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"]],"b":[["physiology/siderophore_production.html","siderophore production"]]},{"id":"CHEBI:48828","l":"cobalt(2+)","na":3,"nb":1,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"]],"b":[["environment/cobalt_tolerant.html","cobalt tolerant"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":1,"nb":3,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["ecology/commensalism.html","commensalism"],["genomics/nhi_system.html","Nhi system"],["other/coagulase_negative.html","coagulase negative"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":3,"nb":1,"a":[["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["morphology/branched_shaped.html","branched shaped"]]},{"id":"NCBITaxon:33952","l":"Acetobacterium woodii","na":3,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["metabolism/homoacetogenesis.html","Homoacetogenesis"]]},{"id":"NCBITaxon:54298","l":"Chroococcidiopsis","na":1,"nb":3,"a":[["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"]],"b":[["environment/desiccation_tolerant.html","desiccation tolerant"],["environment/uv_radiation_tolerant.html","UV radiation tolerant"],["environment/xerophilic.html","xerophilic"]]},{"id":"CHEBI:15354","l":"choline","na":2,"nb":1,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["environment/euryhaline.html","euryhaline"]]},{"id":"CHEBI:16480","l":"nitric oxide","na":2,"nb":1,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"]],"b":[["ecology/biofilm_formation.html","biofilm formation"]]},{"id":"CHEBI:16947","l":"citrate(3-)","na":2,"nb":1,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"]]},{"id":"CHEBI:29806","l":"fumarate(2-)","na":2,"nb":1,"a":[["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]]},{"id":"GO:0005983","l":"starch catabolic process","na":2,"nb":1,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"]],"b":[["metabolism/starch_degradation.html","starch degradation"]]},{"id":"GO:0009408","l":"response to heat","na":2,"nb":1,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["PMI_Variovorax_Thermotolerance_Collection.html","PMI Variovorax Thermotolerance Collection"]],"b":[["physiology/heat_shock_response.html","heat shock response"]]},{"id":"GO:0019332","l":"aerobic respiration, using nitrite as electron donor","na":1,"nb":2,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"]],"b":[["metabolism/complete_ammonia_oxidation.html","complete ammonia oxidation"],["metabolism/nitrification.html","nitrification"]]},{"id":"GO:0019417","l":"sulfur oxidation","na":1,"nb":2,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["physiology/lithotrophic.html","lithotrophic"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]]},{"id":"GO:0071973","l":"bacterial-type flagellum-dependent cell motility","na":1,"nb":2,"a":[["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"]],"b":[["ecology/soil_dwelling.html","soil-dwelling"],["morphology/swarming_motility.html","swarming motility"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":1,"nb":2,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["genomics/gc_mid1.html","GC mid1"],["metabolism/lignin_degradation.html","lignin degradation"]]},{"id":"NCBITaxon:1021","l":"Beggiatoa","na":1,"nb":2,"a":[["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"]],"b":[["morphology/filament_shaped.html","filament shaped"],["physiology/mixotrophic.html","mixotrophic"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":2,"nb":1,"a":[["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["physiology/photoheterotrophic.html","photoheterotrophic"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":1,"nb":2,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["morphology/carboxysome.html","carboxysome"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":2,"nb":1,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["physiology/lipase_activity.html","lipase activity"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":2,"nb":1,"a":[["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]],"b":[["metabolism/cellulolysis.html","cellulolysis"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":2,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]],"b":[["genomics/wadjet_system.html","Wadjet system"],["morphology/irregular_shaped.html","irregular shaped"]]},{"id":"NCBITaxon:180","l":"Leptospirillum ferrooxidans","na":2,"nb":1,"a":[["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"]],"b":[["metabolism/iron_oxidation.html","iron oxidation"]]},{"id":"NCBITaxon:2822231","l":"Phanerodontia chrysosporium","na":2,"nb":1,"a":[["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"]],"b":[["metabolism/manganese_oxidation.html","manganese oxidation"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":1,"nb":2,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["genomics/ploidy.html","ploidy"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]]},{"id":"NCBITaxon:408","l":"Methylorubrum extorquens","na":1,"nb":2,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["morphology/pink_pigmented.html","pink pigmented"],["physiology/methylotrophic.html","methylotrophic"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":2,"nb":1,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["ecology/opportunistic_pathogen.html","opportunistic pathogen"]]},{"id":"NCBITaxon:542","l":"Zymomonas mobilis","na":1,"nb":2,"a":[["Zymomonas_Ecoli_Exometabolomics_Obligate_Mutualism.html","Zymomonas-E. coli Exometabolomics-Designed Obligate Mutualism"]],"b":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["physiology/nad_dependent_alcohol_dehydrogenase_activity.html","NAD-dependent alcohol dehydrogenase activity"]]},{"id":"NCBITaxon:69823","l":"Selenomonas sputigena","na":1,"nb":2,"a":[["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"]],"b":[["physiology/alpha_galactosidase_activity.html","alpha-galactosidase activity"],["physiology/beta_galactosidase_activity.html","beta-galactosidase activity"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":2,"nb":1,"a":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["morphology/motility.html","motility"]]},{"id":"CHEBI:16170","l":"mercury(0)","na":1,"nb":1,"a":[["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["environment/mercury_tolerant.html","mercury tolerant"]]},{"id":"CHEBI:16838","l":"polyphosphate","na":1,"nb":1,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"]],"b":[["environment/zinc_tolerant.html","zinc tolerant"]]},{"id":"CHEBI:16856","l":"glutathione","na":1,"nb":1,"a":[["Zymomonas_Ecoli_Exometabolomics_Obligate_Mutualism.html","Zymomonas-E. coli Exometabolomics-Designed Obligate Mutualism"]],"b":[["environment/zinc_tolerant.html","zinc tolerant"]]},{"id":"CHEBI:17203","l":"L-proline","na":1,"nb":1,"a":[["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["environment/non_halophilic.html","non halophilic"]]},{"id":"CHEBI:50699","l":"oligosaccharide","na":1,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["metabolism/biopolymer_degradation.html","biopolymer degradation"]]},{"id":"GO:0006260","l":"DNA replication","na":1,"nb":1,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["genomics/gc_skew.html","GC skew"]]},{"id":"GO:0006950","l":"response to stress","na":1,"nb":1,"a":[["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"]],"b":[["physiology/stress_response.html","stress response"]]},{"id":"GO:0044409","l":"symbiont entry into host","na":1,"nb":1,"a":[["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"]],"b":[["ecology/plant_pathogen.html","plant pathogen"]]},{"id":"NCBITaxon:1219","l":"Prochlorococcus marinus","na":1,"nb":1,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["genomics/genome_streamlining.html","genome streamlining"]]},{"id":"NCBITaxon:132919","l":"Rhodococcus jostii","na":1,"nb":1,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["metabolism/lignin_degradation.html","lignin degradation"]]},{"id":"NCBITaxon:1519","l":"Clostridium tyrobutyricum","na":1,"nb":1,"a":[["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["metabolism/butyric_acid_fermentation.html","butyric acid fermentation"]]},{"id":"NCBITaxon:1579","l":"Lactobacillus acidophilus","na":1,"nb":1,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["environment/acidotolerant.html","acidotolerant"]]},{"id":"NCBITaxon:1708","l":"Cellulomonas fimi","na":1,"nb":1,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["metabolism/biopolymer_degradation.html","biopolymer degradation"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii (strain ATCC 43067 / DSM 2661 / JAL-1 / JCM 10045 / NBRC 100440)","na":1,"nb":1,"a":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]],"b":[["metabolism/methanogenesis.html","Methanogenesis"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima (strain ATCC 43589 / DSM 3109 / JCM 10099 / NBRC 100826 / MSB8)","na":1,"nb":1,"a":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]],"b":[["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"]]},{"id":"NCBITaxon:258594","l":"Rhodopseudomonas palustris CGA009","na":1,"nb":1,"a":[["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"]],"b":[["physiology/photoorganoheterotrophic.html","photoorganoheterotrophic"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"]],"b":[["metabolism/photoferrotrophy.html","photoferrotrophy"]]}]} \ No newline at end of file +{"a":"CommunityMech","b":"TraitMech","base":{"CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/","TraitMech":"https://culturebotai.github.io/TraitMech/pages/traits/"},"n":157,"by":{"CHEBI":61,"NCBITaxon":61,"GO":35},"terms":[{"id":"CHEBI:16526","l":"carbon dioxide","na":75,"nb":30,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]],"b":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"]]},{"id":"CHEBI:15379","l":"dioxygen","na":25,"nb":25,"a":[["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["environment/aerobic.html","aerobic"],["environment/aerotolerant.html","aerotolerant"],["environment/anaerobic.html","anaerobic"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_aerobic.html","facultatively aerobic"],["environment/facultatively_anaerobic.html","facultatively anaerobic"]]},{"id":"GO:0015977","l":"carbon fixation","na":33,"nb":15,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":18,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]],"b":[["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/neutrophilic.html","neutrophilic"],["environment/non_halophilic.html","non halophilic"],["genomics/spbk_system.html","SpbK system"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":14,"nb":65,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]],"b":[["ecology/biosafety_level.html","biosafety level"],["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/host_associated.html","host-associated"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/halophily_preference.html","halophily preference"]]},{"id":"CHEBI:18276","l":"dihydrogen","na":58,"nb":13,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"]],"b":[["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/does_not_use_as_electron_donor.html","does not use as electron donor"],["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"]]},{"id":"GO:0006113","l":"fermentation","na":43,"nb":11,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"]],"b":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"],["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]]},{"id":"CHEBI:50860","l":"organic molecular entity","na":16,"nb":10,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["physiology/aerobic_anoxygenic_phototrophy.html","aerobic anoxygenic phototrophy"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"],["physiology/chemotrophic.html","chemotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"],["physiology/mixotrophic.html","mixotrophic"]]},{"id":"GO:0022900","l":"electron transport chain","na":15,"nb":10,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"]],"b":[["environment/obligately_aerobic.html","obligately aerobic"],["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/electron_transfer.html","Electron transfer"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"]]},{"id":"CHEBI:17632","l":"nitrate","na":28,"nb":9,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"],["metabolism/does_not_use_as_electron_acceptor.html","does not use as electron acceptor"]]},{"id":"CHEBI:17234","l":"glucose","na":26,"nb":9,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"]],"b":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/biopolymer_degradation.html","biopolymer degradation"],["metabolism/cellulolysis.html","cellulolysis"],["metabolism/does_not_use_as_carbon_source.html","does not use as carbon source"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/starch_degradation.html","starch degradation"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":9,"nb":11,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"]],"b":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/aerobic.html","aerobic"],["genomics/avast_system.html","AVAST system"],["genomics/jukab_system.html","JukAB system"],["morphology/motile.html","motile"]]},{"id":"GO:0009061","l":"anaerobic respiration","na":8,"nb":8,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["environment/anaerobic.html","anaerobic"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]]},{"id":"GO:0042710","l":"biofilm formation","na":29,"nb":7,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]],"b":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/host_associated.html","host-associated"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["ecology/plant_pathogen.html","plant pathogen"],["ecology/rhizosphere_association.html","rhizosphere association"]]},{"id":"CHEBI:16189","l":"sulfate","na":25,"nb":7,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"],["metabolism/disproportionation.html","Disproportionation"],["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"],["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":21,"nb":7,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/iron_oxidation.html","iron oxidation"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"]]},{"id":"CHEBI:15361","l":"pyruvate","na":8,"nb":7,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]],"b":[["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]]},{"id":"CHEBI:16134","l":"ammonia","na":14,"nb":6,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]],"b":[["environment/ph_delta_mid1.html","pH delta mid1"],["metabolism/nitrogen_fixation.html","nitrogen fixation"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"],["physiology/urease_activity.html","urease activity"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":6,"nb":11,"a":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"],["morphology/carboxysome.html","carboxysome"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":9,"nb":6,"a":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]],"b":[["ecology/free_living.html","free-living"],["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["genomics/transposable_element.html","transposable element"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"]]},{"id":"CHEBI:16301","l":"nitrite","na":17,"nb":5,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"]]},{"id":"GO:0009060","l":"aerobic respiration","na":5,"nb":8,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"],["Soil_CPR_Nanoarchaea_Rare_Biosphere_Community.html","Soil CPR Bacteria and Nanoarchaea Rare-Biosphere Community"]],"b":[["environment/aerobic.html","aerobic"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_aerobic.html","facultatively aerobic"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/obligately_aerobic.html","obligately aerobic"],["metabolism/aerobic_respiration.html","Aerobic respiration"]]},{"id":"NCBITaxon:920","l":"Acidithiobacillus ferrooxidans","na":8,"nb":5,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["environment/obligately_acidophilic.html","obligately acidophilic"],["environment/ph_range_low.html","pH range low"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"],["physiology/lithotrophic.html","lithotrophic"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":7,"nb":5,"a":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]],"b":[["genomics/gabija_system.html","Gabija system"],["genomics/shedu_system.html","Shedu system"],["genomics/thoeris_system.html","Thoeris system"],["physiology/caseinase_activity.html","caseinase activity"],["physiology/lecithinase_activity.html","lecithinase activity"]]},{"id":"GO:0009056","l":"catabolic process","na":6,"nb":5,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"],["Wetland_Oxygen_Sulfate_GHG_Microcosm_Community.html","Wetland Oxygen-Sulfate Greenhouse Gas Microcosm Community"]],"b":[["metabolism/metabolism.html","metabolism"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"],["physiology/heterotrophic.html","heterotrophic"],["physiology/organotrophic.html","organotrophic"]]},{"id":"GO:0006935","l":"chemotaxis","na":5,"nb":5,"a":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["SynCom_MetG2_Rhizobacteria_Sugarcane_Stress_Resilience.html","SynCom MetG2 Rhizobacteria Sugarcane Stress Resilience"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"],["Tobacco_Chemotactic_Biocontrol_SynCom.html","Tobacco Chemotactic Biocontrol SynCom"]],"b":[["morphology/flagellated.html","flagellated"],["morphology/motile.html","motile"],["morphology/motility.html","motility"],["physiology/chemotaxis.html","chemotaxis"],["physiology/copiotrophic.html","copiotrophic"]]},{"id":"CHEBI:30089","l":"acetate","na":78,"nb":4,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"]],"b":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":4,"nb":19,"a":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]],"b":[["environment/aerotolerant.html","aerotolerant"],["genomics/abia_system.html","AbiA system"],["genomics/abib_system.html","AbiB system"],["genomics/abic_system.html","AbiC system"],["genomics/abid_system.html","AbiD system"],["genomics/abie_system.html","AbiE system"]]},{"id":"CHEBI:26833","l":"sulfur atom","na":12,"nb":4,"a":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["metabolism/disproportionation.html","Disproportionation"],["morphology/sulfur_globule.html","sulfur globule"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/photolithotrophic.html","photolithotrophic"]]},{"id":"GO:0009372","l":"quorum sensing","na":9,"nb":4,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["GLBRC_Exometabolite_Transwell_SynCom.html","GLBRC Exometabolite Transwell SynCom System"],["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"],["Pseudomonas_Bacillus_Waxy_Oil_Biodegradation_Consortium.html","Pseudomonas-Bacillus Waxy Oil Biodegradation Consortium"],["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]],"b":[["ecology/plant_pathogen.html","plant pathogen"],["morphology/green_pigmented.html","green pigmented"],["morphology/swarming_motility.html","swarming motility"],["physiology/quorum_sensing.html","quorum sensing"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":4,"nb":8,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["environment/aerotolerant.html","aerotolerant"],["environment/microaerophilic.html","microaerophilic"],["environment/microaerotolerant.html","microaerotolerant"],["environment/obligately_aerobic.html","obligately aerobic"],["environment/obligately_anaerobic.html","obligately anaerobic"],["environment/oxygen_preference.html","oxygen preference"]]},{"id":"CHEBI:15138","l":"sulfide(2-)","na":4,"nb":6,"a":[["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"]],"b":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"],["metabolism/disproportionation.html","Disproportionation"],["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"],["physiology/lithoheterotrophic.html","lithoheterotrophic"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]]},{"id":"CHEBI:17245","l":"carbon monoxide","na":6,"nb":4,"a":[["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Subsurface_Carboxydocella_CO_Aquifer_Community.html","Subsurface Carboxydocella CO-Oxidation Aquifer Community"]],"b":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["physiology/carboxydotrophic.html","carboxydotrophic"],["physiology/oxidase_activity.html","oxidase activity"]]},{"id":"NCBITaxon:70863","l":"Shewanella oneidensis","na":6,"nb":4,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"],["Shewanella_Pseudomonas_Fe0_Electrosyntrophic_Denitrifying_Consortium.html","Shewanella oneidensis + Pseudomonas aeruginosa Fe0-dependent Electro-syntrophic Denitrifying Consortium"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["environment/piezotolerant.html","piezotolerant"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/electron_transfer.html","Electron transfer"]]},{"id":"CHEBI:15377","l":"water","na":4,"nb":4,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["physiology/catalase_activity.html","catalase activity"],["physiology/photoautotrophic.html","photoautotrophic"]]},{"id":"CHEBI:16183","l":"methane","na":62,"nb":3,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"]],"b":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/methanogenesis.html","Methanogenesis"],["physiology/methanotrophic.html","methanotrophic"]]},{"id":"GO:0015948","l":"methanogenesis","na":44,"nb":3,"a":[["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"]],"b":[["metabolism/acetoclastic_methanogenesis.html","acetoclastic methanogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/methyl_based_methanogenesis.html","methyl-based methanogenesis"]]},{"id":"GO:0009399","l":"nitrogen fixation","na":24,"nb":3,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"]],"b":[["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["metabolism/nitrogen_fixation.html","nitrogen fixation"],["morphology/heterocyst.html","heterocyst"]]},{"id":"CHEBI:29034","l":"iron(3+)","na":21,"nb":3,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"]],"b":[["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/iron_oxidation.html","iron oxidation"],["metabolism/photoferrotrophy.html","photoferrotrophy"]]},{"id":"CHEBI:17997","l":"dinitrogen","na":12,"nb":3,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]]},{"id":"CHEBI:17750","l":"glycine betaine","na":3,"nb":8,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["LBNL_Brachypodium_Drought_SynCom15.html","LBNL Brachypodium Drought SynCom15"],["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["environment/euryhaline.html","euryhaline"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/moderately_halophilic.html","moderately halophilic"],["environment/nacl_optimum_mid1.html","NaCl optimum mid1"],["environment/nacl_optimum_mid2.html","NaCl optimum mid2"],["environment/nacl_range_mid2.html","NaCl range mid2"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":6,"nb":3,"a":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["ecology/rhizosphere_association.html","rhizosphere association"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/psychrotolerant.html","psychrotolerant"]]},{"id":"NCBITaxon:35554","l":"Geobacter sulfurreducens","na":6,"nb":3,"a":[["Clostridium_Cellulolyticum_Geobacter_Cellulose_MFC_Coculture.html","Clostridium cellulolyticum-Geobacter sulfurreducens Cellulose MFC Coculture"],["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"],["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"]],"b":[["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/electron_transfer.html","Electron transfer"]]},{"id":"CHEBI:29103","l":"potassium(1+)","na":3,"nb":5,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Mars_Regolith_Cyanobacteria_Biofertilizer_Panel.html","Mars Regolith Cyanobacteria/Microalga Biofertilizer Panel"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["environment/extremely_halophilic.html","extremely halophilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/non_halophilic.html","non halophilic"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":3,"nb":5,"a":[["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]],"b":[["metabolism/dimethyl_sulfoxide_respiration.html","dimethyl sulfoxide respiration"],["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/electron_transfer.html","Electron transfer"]]},{"id":"GO:0030001","l":"metal ion transport","na":3,"nb":4,"a":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/metal_tolerant.html","metal tolerant"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":4,"nb":3,"a":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"],["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]],"b":[["environment/aerobic.html","aerobic"],["environment/obligately_aerobic.html","obligately aerobic"],["morphology/tetrad_arrangement.html","tetrad arrangement"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":4,"nb":3,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["environment/anaerobic.html","anaerobic"],["environment/strictly_anaerobic.html","strictly anaerobic"],["metabolism/fumarate_respiration.html","fumarate respiration"]]},{"id":"CHEBI:29035","l":"manganese(2+)","na":3,"nb":3,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"]],"b":[["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/lignin_degradation.html","lignin degradation"],["metabolism/manganese_oxidation.html","manganese oxidation"]]},{"id":"CHEBI:18246","l":"(1->4)-beta-D-glucan","na":27,"nb":2,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]],"b":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/cellulolysis.html","cellulolysis"]]},{"id":"CHEBI:16236","l":"ethanol","na":25,"nb":2,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"]],"b":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]]},{"id":"GO:0044403","l":"biological process involved in symbiotic interaction","na":20,"nb":2,"a":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Banana_Fusarium_Biocontrol_SynCom12.html","Banana Fusarium Wilt Biocontrol SynCom1.2"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"]],"b":[["ecology/plant_pathogen.html","plant pathogen"],["ecology/symbiosis.html","symbiosis"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":2,"nb":15,"a":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]],"b":[["ecology/biosafety_level_2.html","biosafety level 2"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/coccus_shaped.html","coccus shaped"]]},{"id":"CHEBI:16136","l":"hydrogen sulfide","na":12,"nb":2,"a":[["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/photolithotrophic.html","photolithotrophic"]]},{"id":"CHEBI:17790","l":"methanol","na":10,"nb":2,"a":[["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Methylacidiphilum_Galdieria_Thermoacidophilic_Coculture.html","Methylacidiphilum-Galdieria Thermoacidophilic Methane Coculture"],["Methylocaldum_Cupriavidus_Methane_Acetate_Crossfeeding_Coculture.html","Methylocaldum-Cupriavidus Methane Acetate Cross-Feeding Coculture"]],"b":[["physiology/methanotrophic.html","methanotrophic"],["physiology/methylotrophic.html","methylotrophic"]]},{"id":"CHEBI:6457","l":"lignin","na":10,"nb":2,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/biopolymer_degradation.html","biopolymer degradation"]]},{"id":"GO:0019329","l":"ammonia oxidation","na":10,"nb":2,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["BioModels_MODEL2407300002_Sponge_Holobiont_Network.html","BioModels MODEL2407300002 Sponge Holobiont Network"],["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"]],"b":[["metabolism/complete_ammonia_oxidation.html","complete ammonia oxidation"],["metabolism/nitrification.html","nitrification"]]},{"id":"CHEBI:26523","l":"reactive oxygen species","na":2,"nb":9,"a":[["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]],"b":[["environment/aerobic.html","aerobic"],["environment/aerotolerant.html","aerotolerant"],["environment/anaerobic.html","anaerobic"],["environment/microaerophilic.html","microaerophilic"],["environment/microaerotolerant.html","microaerotolerant"],["environment/obligately_anaerobic.html","obligately anaerobic"]]},{"id":"GO:0006970","l":"response to osmotic stress","na":2,"nb":9,"a":[["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["environment/extremely_halophilic.html","extremely halophilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/halotolerant.html","halotolerant"],["environment/moderately_halophilic.html","moderately halophilic"],["environment/nacl_delta.html","NaCl delta"]]},{"id":"NCBITaxon:818","l":"Bacteroides thetaiotaomicron","na":7,"nb":2,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]],"b":[["ecology/gut_associated.html","gut-associated"],["ecology/host_associated.html","host-associated"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":2,"nb":6,"a":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"]],"b":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/oxidase_activity.html","oxidase activity"]]},{"id":"NCBITaxon:32046","l":"Synechococcus elongatus","na":6,"nb":2,"a":[["Synechococcus_Bacillus_SPC.html","Synechococcus-Bacillus Synthetic Photosynthetic Consortium"],["Synechococcus_Ecoli_SPC.html","Synechococcus-E.coli Synthetic Photosynthetic Consortium"],["Synechococcus_Halomonas_Light_Driven_PHB_Coculture.html","Synechococcus-Halomonas Light-Driven PHB Coculture"],["Synechococcus_Pseudomonas_PhotoPHA_DNT_Coculture.html","Synechococcus-Pseudomonas Phototrophic PHA and DNT Coculture"],["Synechococcus_Saccharomyces_SPC.html","Synechococcus-Saccharomyces Synthetic Photosynthetic Consortium"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["morphology/carboxysome.html","carboxysome"],["physiology/autotrophic.html","autotrophic"]]},{"id":"CHEBI:16094","l":"thiosulfate(2-)","na":2,"nb":5,"a":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["metabolism/disproportionation.html","Disproportionation"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"],["physiology/lithotrophic.html","lithotrophic"]]},{"id":"NCBITaxon:915","l":"Nitrosomonas europaea","na":2,"nb":5,"a":[["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["physiology/autotrophic.html","autotrophic"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"],["physiology/lithotrophic.html","lithotrophic"]]},{"id":"CHEBI:29105","l":"zinc(2+)","na":4,"nb":2,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]],"b":[["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/zinc_tolerant.html","zinc tolerant"]]},{"id":"NCBITaxon:1148","l":"Synechocystis sp. PCC 6803","na":2,"nb":4,"a":[["PPHET_Hybrid_Photosynthetic_PHB_Microbiome.html","PPHET Hybrid Photosynthetic PHB Microbiome"],["Synechocystis_Pseudomonas_Acetate_Butanol_Coculture.html","Synechocystis-Pseudomonas Acetate-Butanol Coculture"]],"b":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/trophic_type.html","trophic type"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":4,"nb":2,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]],"b":[["genomics/crispr_cas_system.html","CRISPR-Cas system"],["genomics/phage_defense_system.html","phage defense system"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":2,"nb":4,"a":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]],"b":[["ecology/mutualism.html","mutualism"],["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["ecology/symbiosis.html","symbiosis"],["genomics/hna_system.html","Hna system"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":3,"nb":2,"a":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["physiology/methanotrophic.html","methanotrophic"],["physiology/methylotrophic.html","methylotrophic"]]},{"id":"CHEBI:17045","l":"dinitrogen oxide","na":3,"nb":2,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"]],"b":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["physiology/chemolithotrophic.html","chemolithotrophic"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":3,"nb":2,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["genomics/abialpha_system.html","AbiAlpha system"],["physiology/gelatinase_activity.html","gelatinase activity"]]},{"id":"NCBITaxon:28116","l":"Bacteroides ovatus","na":3,"nb":2,"a":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["metabolism/xylan_degradation.html","xylan degradation"],["physiology/amylase_activity.html","amylase activity"]]},{"id":"GO:0006099","l":"tricarboxylic acid cycle","na":2,"nb":2,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]],"b":[["physiology/heterotrophic.html","heterotrophic"],["physiology/organoheterotrophic.html","organoheterotrophic"]]},{"id":"NCBITaxon:272562","l":"Clostridium acetobutylicum ATCC 824","na":2,"nb":2,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["metabolism/acetone_butanol_ethanol_fermentation.html","acetone-butanol-ethanol fermentation"],["metabolism/fermentation.html","Fermentation"]]},{"id":"GO:0015979","l":"photosynthesis","na":44,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"]],"b":[["metabolism/photosynthesis.html","photosynthesis"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli K-12","na":1,"nb":26,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["environment/ph_phenotype_with_numerical_limits.html","pH phenotype with numerical limits"],["environment/temperature_optimum_mid4.html","temperature optimum mid4"],["genomics/rnlab_system.html","RnlAB system"],["metabolism/metabolism.html","metabolism"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/respiration.html","respiration"]]},{"id":"CHEBI:15740","l":"formate","na":23,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Clostridium_Cellulovorans_Methanosarcina_Cellulose_Methane_Coculture.html","Clostridium cellulovorans-Methanosarcina barkeri Cellulose Methane Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"]],"b":[["metabolism/syntrophy.html","Syntrophy"]]},{"id":"CHEBI:24996","l":"lactate","na":22,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"]],"b":[["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]]},{"id":"CHEBI:17968","l":"butyrate","na":19,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"],["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"]],"b":[["ecology/gut_associated.html","gut-associated"]]},{"id":"CHEBI:28938","l":"ammonium","na":19,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"]],"b":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]]},{"id":"GO:0019420","l":"dissimilatory sulfate reduction","na":17,"nb":1,"a":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["DVM_Triculture.html","DVM Tri-culture"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"]],"b":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]]},{"id":"GO:0051453","l":"regulation of intracellular pH","na":1,"nb":17,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["environment/acidophilic.html","acidophilic"],["environment/acidotolerant.html","acidotolerant"],["environment/alkalotolerant.html","alkalotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"]]},{"id":"GO:0019333","l":"denitrification pathway","na":13,"nb":1,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"]],"b":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"]]},{"id":"CHEBI:17272","l":"propionate","na":11,"nb":1,"a":[["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"]],"b":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]]},{"id":"GO:0045493","l":"xylan catabolic process","na":11,"nb":1,"a":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"]],"b":[["metabolism/xylan_degradation.html","xylan degradation"]]},{"id":"CHEBI:29036","l":"copper(2+)","na":10,"nb":1,"a":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ewaste_Bioleaching_Consortium.html","E-waste Bioleaching Consortium"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"]],"b":[["environment/copper_tolerant.html","copper tolerant"]]},{"id":"CHEBI:26710","l":"sodium chloride","na":9,"nb":1,"a":[["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]],"b":[["environment/halophilic.html","halophilic"]]},{"id":"CHEBI:15378","l":"hydron","na":1,"nb":8,"a":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"]],"b":[["environment/acidophilic.html","acidophilic"],["environment/acidotolerant.html","acidotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"],["environment/obligately_acidophilic.html","obligately acidophilic"]]},{"id":"CHEBI:18222","l":"xylose","na":8,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["Caldicellulosiruptor_TwoSpecies_Hydrogen_Coculture.html","Caldicellulosiruptor Two-Species Hydrogen Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]],"b":[["metabolism/xylan_degradation.html","xylan degradation"]]},{"id":"GO:0046274","l":"lignin catabolic process","na":8,"nb":1,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"]],"b":[["metabolism/lignin_degradation.html","lignin degradation"]]},{"id":"CHEBI:17057","l":"cellobiose","na":7,"nb":1,"a":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["metabolism/cellulolysis.html","cellulolysis"]]},{"id":"CHEBI:29101","l":"sodium(1+)","na":1,"nb":7,"a":[["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"]],"b":[["environment/alkaphilic.html","alkaliphilic"],["environment/euryhaline.html","euryhaline"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/nacl_delta_mid2.html","NaCl delta mid2"]]},{"id":"CHEBI:64709","l":"organic acid","na":7,"nb":1,"a":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"],["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]],"b":[["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":1,"nb":7,"a":[["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]],"b":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/copper_tolerant.html","copper tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["environment/metal_tolerant.html","metal tolerant"]]},{"id":"NCBITaxon:1488","l":"Clostridium acetobutylicum","na":1,"nb":7,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["environment/anaerobic.html","anaerobic"],["environment/obligately_anaerobic.html","obligately anaerobic"],["metabolism/fermentation.html","Fermentation"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"],["morphology/gram_variable.html","gram variable"],["morphology/spindle_shaped.html","spindle shaped"]]},{"id":"GO:0006979","l":"response to oxidative stress","na":6,"nb":1,"a":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Medicago_Nodule_Biofertilizer_SynCom.html","Medicago Nodule Biofertilizer SynCom"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Populus_Salt_Tolerant_SynComs.html","Populus Salt-Tolerant Rhizosphere SynComs"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Synthetic_Lichen_Synechococcus_Rhodotorula_Coculture.html","Synthetic Lichen Synechococcus-Rhodotorula Coculture"]],"b":[["physiology/oxidative_stress_response.html","oxidative stress response"]]},{"id":"GO:0009292","l":"horizontal gene transfer","na":1,"nb":6,"a":[["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"]],"b":[["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["genomics/genome_size.html","genome size"],["genomics/genomic_island.html","genomic island"],["genomics/mobile_genetic_element.html","mobile genetic element"],["genomics/pangenome_openness.html","pangenome openness"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":1,"nb":6,"a":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]],"b":[["ecology/animal_pathogen.html","animal pathogen"],["ecology/biosafety_level_2.html","biosafety level 2"],["genomics/genomic_island.html","genomic island"],["genomics/prophage.html","prophage"],["morphology/flagellated.html","flagellated"],["morphology/peritrichous.html","peritrichous"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":6,"nb":1,"a":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]]},{"id":"CHEBI:61266","l":"hemicellulose","na":5,"nb":1,"a":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Multiomics_Corn_Straw_Degradation_SynCom.html","Multiomics Corn Straw Degradation SynCom"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"],["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]],"b":[["ecology/saprotrophy.html","saprotrophy"]]},{"id":"CHEBI:16199","l":"urea","na":4,"nb":1,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]],"b":[["physiology/urease_activity.html","urease activity"]]},{"id":"CHEBI:17029","l":"chitin","na":4,"nb":1,"a":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]],"b":[["metabolism/chitinolysis.html","chitinolysis"]]},{"id":"CHEBI:48775","l":"cadmium(2+)","na":4,"nb":1,"a":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Meghalaya_Bacillus_Consortia_A22ED9.html","Meghalaya Bacillus Consortia-A22ED9"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["SynCom_Pseudomonas_Rahnella_Artemisia_Phytoremediation.html","Pseudomonas-Rahnella native rhizosphere SynCom for Artemisia argyi phytoremediation"]],"b":[["environment/cadmium_tolerant.html","cadmium tolerant"]]},{"id":"GO:0006412","l":"translation","na":1,"nb":4,"a":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]],"b":[["environment/mesophilic.html","mesophilic"],["genomics/codon_usage_bias.html","codon usage bias"],["physiology/cold_shock_response.html","cold shock response"],["physiology/dormancy.html","dormancy"]]},{"id":"GO:0009252","l":"peptidoglycan biosynthetic process","na":1,"nb":4,"a":[["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"]],"b":[["morphology/bacillus_shaped.html","bacillus shaped"],["morphology/cell_shape.html","cell shape"],["morphology/coccobacillus_shaped.html","coccobacillus shaped"],["morphology/rod_shaped.html","rod shaped"]]},{"id":"GO:0019253","l":"reductive pentose-phosphate cycle","na":1,"nb":4,"a":[["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]],"b":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["physiology/autotrophic.html","autotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/photoautotrophic.html","photoautotrophic"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":4,"nb":1,"a":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["metabolism/starch_degradation.html","starch degradation"]]},{"id":"NCBITaxon:165695","l":"Sphingobium","na":4,"nb":1,"a":[["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["Sphingobium_Nitrososphaera_Phenanthrene_Carbon_SynCom.html","Sphingobium-Nitrososphaera Phenanthrene-Carbon SynCom"],["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]],"b":[["metabolism/lignin_degradation.html","lignin degradation"]]},{"id":"NCBITaxon:243164","l":"Dehalococcoides mccartyi 195","na":4,"nb":1,"a":[["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Dehalococcoides_Pelobacter_Acetylene_TCE_Coculture.html","Dehalococcoides-Pelobacter Acetylene TCE Coculture"],["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"]],"b":[["metabolism/organohalide_respiration.html","organohalide respiration"]]},{"id":"NCBITaxon:863","l":"Syntrophomonas wolfei","na":4,"nb":1,"a":[["Dehalococcoides_Syntrophomonas_TCE_Dechlorination_Coculture.html","Dehalococcoides-Syntrophomonas TCE Dechlorination Coculture"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]],"b":[["metabolism/syntrophy.html","Syntrophy"]]},{"id":"CHEBI:26672","l":"siderophore","na":3,"nb":1,"a":[["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"]],"b":[["physiology/siderophore_production.html","siderophore production"]]},{"id":"CHEBI:48828","l":"cobalt(2+)","na":3,"nb":1,"a":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"],["SO3_BS3_Lithium_Battery_Bioleaching_Consortium.html","SO3-BS3 Lithium-ion Battery Bioleaching Consortium"]],"b":[["environment/cobalt_tolerant.html","cobalt tolerant"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":1,"nb":3,"a":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]],"b":[["ecology/commensalism.html","commensalism"],["genomics/nhi_system.html","Nhi system"],["other/coagulase_negative.html","coagulase negative"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":3,"nb":1,"a":[["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]],"b":[["morphology/branched_shaped.html","branched shaped"]]},{"id":"NCBITaxon:33952","l":"Acetobacterium woodii","na":3,"nb":1,"a":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]],"b":[["metabolism/homoacetogenesis.html","Homoacetogenesis"]]},{"id":"NCBITaxon:54298","l":"Chroococcidiopsis","na":1,"nb":3,"a":[["Mars_Meteorite_EETA79001_Growth_Panel.html","Mars Meteorite EETA79001 Microbial Growth Panel"]],"b":[["environment/desiccation_tolerant.html","desiccation tolerant"],["environment/uv_radiation_tolerant.html","UV radiation tolerant"],["environment/xerophilic.html","xerophilic"]]},{"id":"CHEBI:15354","l":"choline","na":2,"nb":1,"a":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]],"b":[["environment/euryhaline.html","euryhaline"]]},{"id":"CHEBI:16480","l":"nitric oxide","na":2,"nb":1,"a":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"]],"b":[["ecology/biofilm_formation.html","biofilm formation"]]},{"id":"CHEBI:16947","l":"citrate(3-)","na":2,"nb":1,"a":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]],"b":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"]]},{"id":"CHEBI:29806","l":"fumarate(2-)","na":2,"nb":1,"a":[["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]],"b":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]]},{"id":"GO:0005983","l":"starch catabolic process","na":2,"nb":1,"a":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["SynCom_BsBv_Cigar_Tobacco_Leaf_Fermentation.html","SynCom BsBv Cigar Tobacco Leaf Fermentation"]],"b":[["metabolism/starch_degradation.html","starch degradation"]]},{"id":"GO:0009408","l":"response to heat","na":2,"nb":1,"a":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["PMI_Variovorax_Thermotolerance_Collection.html","PMI Variovorax Thermotolerance Collection"]],"b":[["physiology/heat_shock_response.html","heat shock response"]]},{"id":"GO:0019332","l":"aerobic respiration, using nitrite as electron donor","na":1,"nb":2,"a":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"]],"b":[["metabolism/complete_ammonia_oxidation.html","complete ammonia oxidation"],["metabolism/nitrification.html","nitrification"]]},{"id":"GO:0019417","l":"sulfur oxidation","na":1,"nb":2,"a":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"]],"b":[["physiology/lithotrophic.html","lithotrophic"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]]},{"id":"GO:0071973","l":"bacterial-type flagellum-dependent cell motility","na":1,"nb":2,"a":[["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"]],"b":[["ecology/soil_dwelling.html","soil-dwelling"],["morphology/swarming_motility.html","swarming motility"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":1,"nb":2,"a":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]],"b":[["genomics/gc_mid1.html","GC mid1"],["metabolism/lignin_degradation.html","lignin degradation"]]},{"id":"NCBITaxon:1021","l":"Beggiatoa","na":1,"nb":2,"a":[["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"]],"b":[["morphology/filament_shaped.html","filament shaped"],["physiology/mixotrophic.html","mixotrophic"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":2,"nb":1,"a":[["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]],"b":[["physiology/photoheterotrophic.html","photoheterotrophic"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":1,"nb":2,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["morphology/carboxysome.html","carboxysome"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":2,"nb":1,"a":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]],"b":[["physiology/lipase_activity.html","lipase activity"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":2,"nb":1,"a":[["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]],"b":[["metabolism/cellulolysis.html","cellulolysis"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":1,"nb":2,"a":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]],"b":[["genomics/wadjet_system.html","Wadjet system"],["morphology/irregular_shaped.html","irregular shaped"]]},{"id":"NCBITaxon:180","l":"Leptospirillum ferrooxidans","na":2,"nb":1,"a":[["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"]],"b":[["metabolism/iron_oxidation.html","iron oxidation"]]},{"id":"NCBITaxon:2822231","l":"Phanerodontia chrysosporium","na":2,"nb":1,"a":[["Chinese_Distillers_Grains_Dual_Fungal_Lignin_Consortium.html","Chinese Distillers Grains Dual Fungal Lignin Consortium"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"]],"b":[["metabolism/manganese_oxidation.html","manganese oxidation"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":1,"nb":2,"a":[["Synechococcus_Azotobacter_Photoproduction_Mutualism.html","Synechococcus-Azotobacter Photoproduction Mutualism"]],"b":[["genomics/ploidy.html","ploidy"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]]},{"id":"NCBITaxon:408","l":"Methylorubrum extorquens","na":1,"nb":2,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["morphology/pink_pigmented.html","pink pigmented"],["physiology/methylotrophic.html","methylotrophic"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":2,"nb":1,"a":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]],"b":[["ecology/opportunistic_pathogen.html","opportunistic pathogen"]]},{"id":"NCBITaxon:542","l":"Zymomonas mobilis","na":1,"nb":2,"a":[["Zymomonas_Ecoli_Exometabolomics_Obligate_Mutualism.html","Zymomonas-E. coli Exometabolomics-Designed Obligate Mutualism"]],"b":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["physiology/nad_dependent_alcohol_dehydrogenase_activity.html","NAD-dependent alcohol dehydrogenase activity"]]},{"id":"NCBITaxon:69823","l":"Selenomonas sputigena","na":1,"nb":2,"a":[["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"]],"b":[["physiology/alpha_galactosidase_activity.html","alpha-galactosidase activity"],["physiology/beta_galactosidase_activity.html","beta-galactosidase activity"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":2,"nb":1,"a":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]],"b":[["morphology/motility.html","motility"]]},{"id":"CHEBI:16170","l":"mercury(0)","na":1,"nb":1,"a":[["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]],"b":[["environment/mercury_tolerant.html","mercury tolerant"]]},{"id":"CHEBI:16838","l":"polyphosphate","na":1,"nb":1,"a":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"]],"b":[["environment/zinc_tolerant.html","zinc tolerant"]]},{"id":"CHEBI:16856","l":"glutathione","na":1,"nb":1,"a":[["Zymomonas_Ecoli_Exometabolomics_Obligate_Mutualism.html","Zymomonas-E. coli Exometabolomics-Designed Obligate Mutualism"]],"b":[["environment/zinc_tolerant.html","zinc tolerant"]]},{"id":"CHEBI:17203","l":"L-proline","na":1,"nb":1,"a":[["Maize_Drought_Response_SynCom.html","Maize Drought Response SynCom"]],"b":[["environment/non_halophilic.html","non halophilic"]]},{"id":"CHEBI:50699","l":"oligosaccharide","na":1,"nb":1,"a":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]],"b":[["metabolism/biopolymer_degradation.html","biopolymer degradation"]]},{"id":"GO:0006260","l":"DNA replication","na":1,"nb":1,"a":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]],"b":[["genomics/gc_skew.html","GC skew"]]},{"id":"GO:0006950","l":"response to stress","na":1,"nb":1,"a":[["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"]],"b":[["physiology/stress_response.html","stress response"]]},{"id":"GO:0044409","l":"symbiont entry into host","na":1,"nb":1,"a":[["GLBRC_Populus_Variovorax_SynCom28.html","GLBRC Populus Variovorax SynCom28"]],"b":[["ecology/plant_pathogen.html","plant pathogen"]]},{"id":"NCBITaxon:1219","l":"Prochlorococcus marinus","na":1,"nb":1,"a":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]],"b":[["genomics/genome_streamlining.html","genome streamlining"]]},{"id":"NCBITaxon:132919","l":"Rhodococcus jostii","na":1,"nb":1,"a":[["Rhodococcus_Acinetobacter_RAMC_Mixed_Plastic_Upcycling_SynCom.html","Rhodococcus-Acinetobacter RAMC Mixed Plastic Upcycling SynCom"]],"b":[["metabolism/lignin_degradation.html","lignin degradation"]]},{"id":"NCBITaxon:1519","l":"Clostridium tyrobutyricum","na":1,"nb":1,"a":[["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]],"b":[["metabolism/butyric_acid_fermentation.html","butyric acid fermentation"]]},{"id":"NCBITaxon:1579","l":"Lactobacillus acidophilus","na":1,"nb":1,"a":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]],"b":[["environment/acidotolerant.html","acidotolerant"]]},{"id":"NCBITaxon:1708","l":"Cellulomonas fimi","na":1,"nb":1,"a":[["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"]],"b":[["metabolism/biopolymer_degradation.html","biopolymer degradation"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii DSM 2661","na":1,"nb":1,"a":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]],"b":[["metabolism/methanogenesis.html","Methanogenesis"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima MSB8","na":1,"nb":1,"a":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]],"b":[["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"]]},{"id":"NCBITaxon:258594","l":"Rhodopseudomonas palustris CGA009","na":1,"nb":1,"a":[["Clostridium_Cellulovorans_Rhodopseudomonas_Cellulose_Biohydrogen_Coculture.html","Clostridium cellulovorans-Rhodopseudomonas palustris Cellulose Biohydrogen Coculture"]],"b":[["physiology/photoorganoheterotrophic.html","photoorganoheterotrophic"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"]],"b":[["metabolism/photoferrotrophy.html","photoferrotrophy"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/CultureMech--TaxonMech.json b/assets/fleet/edges/CultureMech--TaxonMech.json index b8dfcb5..e3cb848 100644 --- a/assets/fleet/edges/CultureMech--TaxonMech.json +++ b/assets/fleet/edges/CultureMech--TaxonMech.json @@ -1 +1 @@ -{"a":"CultureMech","b":"TaxonMech","base":{"CultureMech":"https://github.com/CultureBotAI/CultureMech/blob/main/data/merge_yaml/merged/","TaxonMech":"https://culturebotai.github.io/TaxonMech/pages/taxon.html?id="},"n":54,"by":{"NCBITaxon":54},"terms":[{"id":"NCBITaxon:210","l":"Helicobacter pylori","na":1,"nb":631,"a":[["BRUCELLA_BROTH.yaml","brucella_broth"]],"b":[["NCBITaxon%3A210","Helicobacter pylori"],["NCBITaxon%3A1028810","Helicobacter pylori 10700"],["NCBITaxon%3A585532","Helicobacter pylori 118"],["NCBITaxon%3A102610","Helicobacter pylori #12"],["NCBITaxon%3A585533","Helicobacter pylori 120"],["NCBITaxon%3A103187","Helicobacter pylori 15818"]]},{"id":"NCBITaxon:823","l":"Parabacteroides distasonis","na":1,"nb":45,"a":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]],"b":[["NCBITaxon%3A823","Parabacteroides distasonis"],["NCBITaxon%3A435591","Parabacteroides distasonis ATCC 8503"],["NCBITaxon%3A999416","Parabacteroides distasonis CL03T12C09"],["NCBITaxon%3A999417","Parabacteroides distasonis CL09T03C24"],["NCBITaxon%3A1339342","Parabacteroides distasonis str. 3776 D15 i"],["NCBITaxon%3A1339343","Parabacteroides distasonis str. 3776 D15 iv"]]},{"id":"NCBITaxon:851","l":"Fusobacterium nucleatum","na":1,"nb":35,"a":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]],"b":[["NCBITaxon%3A76859","Fusobacterium animalis"],["NCBITaxon%3A997347","Fusobacterium animalis ATCC 51191"],["NCBITaxon%3A1583098","Fusobacterium hwasookii"],["NCBITaxon%3A1216362","Fusobacterium hwasookii ChDC F128"],["NCBITaxon%3A1307441","Fusobacterium hwasookii ChDC F145"],["NCBITaxon%3A1307442","Fusobacterium hwasookii ChDC F174"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":1,"nb":29,"a":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]],"b":[["NCBITaxon%3A1579","Lactobacillus acidophilus"],["NCBITaxon%3A47770","Lactobacillus crispatus"],["NCBITaxon%3A575595","Lactobacillus crispatus 125-2-CHN"],["NCBITaxon%3A1381118","Lactobacillus crispatus 2029"],["NCBITaxon%3A679188","Lactobacillus crispatus 214-1"],["NCBITaxon%3A440496","Lactobacillus crispatus CTV-05"]]},{"id":"NCBITaxon:859","l":"Fusobacterium necrophorum","na":1,"nb":18,"a":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]],"b":[["NCBITaxon%3A134605","Fusobacterium equinum"],["NCBITaxon%3A849","Fusobacterium gonidiaformans"],["NCBITaxon%3A859","Fusobacterium necrophorum"],["NCBITaxon%3A1441734","Fusobacterium necrophorum BFTR-1"],["NCBITaxon%3A1441736","Fusobacterium necrophorum BFTR-2"],["NCBITaxon%3A1441732","Fusobacterium necrophorum BL"]]},{"id":"NCBITaxon:1148","l":"Synechocystis sp. PCC 6803","na":1,"nb":12,"a":[["bg11__f771062f.yaml","bg11"]],"b":[["NCBITaxon%3A1148","Synechocystis sp. PCC 6803"],["NCBITaxon%3A2932627","Synechocystis sp. PCC 6803 subst. PCC-Mn"],["NCBITaxon%3A2932628","Synechocystis sp. PCC 6803 subst. PCC-Pn"],["NCBITaxon%3A2962876","Synechocystis sp. PCC 6803 substr. D1-D170H"],["NCBITaxon%3A1080228","Synechocystis sp. PCC 6803 substr. GT-I"],["NCBITaxon%3A2932626","Synechocystis sp. PCC 6803 substr. GT-In"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":1,"nb":11,"a":[["RHODOBACTER_SPHAEROIDES_MEDIUM.yaml","rhodobacter_sphaeroides_medium"]],"b":[["NCBITaxon%3A1063","Cereibacter sphaeroides"],["NCBITaxon%3A272943","Cereibacter sphaeroides 2.4.1"],["NCBITaxon%3A349102","Cereibacter sphaeroides ATCC 17025"],["NCBITaxon%3A349101","Cereibacter sphaeroides ATCC 17029"],["NCBITaxon%3A39723","Cereibacter sphaeroides f. sp. denitrificans"],["NCBITaxon%3A633146","Cereibacter sphaeroides GA"]]},{"id":"NCBITaxon:28125","l":"Prevotella bivia","na":1,"nb":8,"a":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]],"b":[["NCBITaxon%3A28125","Prevotella bivia"],["NCBITaxon%3A1115806","Prevotella bivia B11"],["NCBITaxon%3A1287476","Prevotella bivia DNF00188"],["NCBITaxon%3A1401068","Prevotella bivia DNF00320"],["NCBITaxon%3A1401072","Prevotella bivia DNF00650"],["NCBITaxon%3A868129","Prevotella bivia DSM 20514"]]},{"id":"NCBITaxon:2099","l":"Mesomycoplasma hyopneumoniae","na":1,"nb":7,"a":[["FRIIS_MEDIUM.yaml","friis_medium"]],"b":[["NCBITaxon%3A2099","Mesomycoplasma hyopneumoniae"],["NCBITaxon%3A907287","Mesomycoplasma hyopneumoniae 168"],["NCBITaxon%3A1116211","Mesomycoplasma hyopneumoniae 168-L"],["NCBITaxon%3A295358","Mesomycoplasma hyopneumoniae 232"],["NCBITaxon%3A754503","Mesomycoplasma hyopneumoniae 7422"],["NCBITaxon%3A262722","Mesomycoplasma hyopneumoniae 7448"]]},{"id":"NCBITaxon:35554","l":"Geobacter sulfurreducens","na":1,"nb":5,"a":[["GEOBACTER_SULFURREDUCENS_MEDIUM.yaml","geobacter_sulfurreducens_medium"]],"b":[["NCBITaxon%3A35554","Geobacter sulfurreducens"],["NCBITaxon%3A663917","Geobacter sulfurreducens KN400"],["NCBITaxon%3A243231","Geobacter sulfurreducens PCA"],["NCBITaxon%3A1260928","Geobacter sulfurreducens subsp. ethanolicus"],["NCBITaxon%3A1649546","Geobacter sulfurreducens subsp. sulfurreducens"]]},{"id":"NCBITaxon:301953","l":"Caldicellulosiruptor acetigenus","na":1,"nb":4,"a":[["caldicellulosiruptor_medium_for_dsm_10319.yaml","caldicellulosiruptor_medium_for_dsm_10319"]],"b":[["NCBITaxon%3A301953","Caldicellulosiruptor acetigenus"],["NCBITaxon%3A632516","Caldicellulosiruptor acetigenus 6A"],["NCBITaxon%3A1121259","Caldicellulosiruptor acetigenus DSM 7040"],["NCBITaxon%3A632335","Caldicellulosiruptor acetigenus I77R1B"]]},{"id":"NCBITaxon:511145","l":"Escherichia coli str. K-12 substr. MG1655","na":1,"nb":4,"a":[["LB_Medium.yaml","lb_medium"]],"b":[["NCBITaxon%3A47678","Bacteroides caccae"],["NCBITaxon%3A411901","Bacteroides caccae ATCC 43185"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A511145","Escherichia coli str. K-12 substr. MG1655"]]},{"id":"NCBITaxon:2234","l":"Archaeoglobus fulgidus","na":1,"nb":3,"a":[["archaeoglobus_medium_dsm_399.yaml","archaeoglobus_medium_dsm_399"]],"b":[["NCBITaxon%3A2234","Archaeoglobus fulgidus"],["NCBITaxon%3A224325","Archaeoglobus fulgidus DSM 4304"],["NCBITaxon%3A1344584","Archaeoglobus fulgidus DSM 8774"]]},{"id":"NCBITaxon:2261","l":"Pyrococcus furiosus","na":1,"nb":3,"a":[["pyrococcus_medium__6ffabef8.yaml","pyrococcus_medium"]],"b":[["NCBITaxon%3A2261","Pyrococcus furiosus"],["NCBITaxon%3A1185654","Pyrococcus furiosus COM1"],["NCBITaxon%3A186497","Pyrococcus furiosus DSM 3638"]]},{"id":"NCBITaxon:55518","l":"Magnetospirillum gryphiswaldense","na":1,"nb":3,"a":[["magnetospirillum_gryphiswaldense_medium__6f77a326.yaml","magnetospirillum_gryphiswaldense_medium"]],"b":[["NCBITaxon%3A55518","Magnetospirillum gryphiswaldense"],["NCBITaxon%3A431944","Magnetospirillum gryphiswaldense MSR-1"],["NCBITaxon%3A1430440","Magnetospirillum gryphiswaldense MSR-1 v2"]]},{"id":"NCBITaxon:1042417","l":"Brachyspira pilosicoli P43/6/78","na":1,"nb":2,"a":[["BHIS__8d771a65.yaml","BHIS"]],"b":[["NCBITaxon%3A52584","Brachyspira pilosicoli"],["NCBITaxon%3A1042417","Brachyspira pilosicoli P43/6/78"]]},{"id":"NCBITaxon:111955","l":"Sulfurisphaera tokodaii","na":1,"nb":2,"a":[["sulfolobus_medium_anaerobic_for_dsm_2162.yaml","sulfolobus_medium_anaerobic_for_dsm_2162"]],"b":[["NCBITaxon%3A111955","Sulfurisphaera tokodaii"],["NCBITaxon%3A273063","Sulfurisphaera tokodaii str. 7"]]},{"id":"NCBITaxon:114376","l":"Ignicoccus pacificus","na":1,"nb":2,"a":[["ignicoccus_medium_for_dsm_18386.yaml","ignicoccus_medium_for_dsm_18386"]],"b":[["NCBITaxon%3A114376","Ignicoccus pacificus"],["NCBITaxon%3A940294","Ignicoccus pacificus DSM 13166"]]},{"id":"NCBITaxon:1236958","l":"Sneathiella glossodoripedis JCM 23214","na":1,"nb":2,"a":[["Marine_Agar_2216.yaml","marine_agar_2216"]],"b":[["NCBITaxon%3A418853","Sneathiella glossodoripedis"],["NCBITaxon%3A1236958","Sneathiella glossodoripedis JCM 23214"]]},{"id":"NCBITaxon:160233","l":"Ignicoccus hospitalis","na":1,"nb":2,"a":[["ignicoccus_medium_for_dsm_18386.yaml","ignicoccus_medium_for_dsm_18386"]],"b":[["NCBITaxon%3A160233","Ignicoccus hospitalis"],["NCBITaxon%3A453591","Ignicoccus hospitalis KIN4/I"]]},{"id":"NCBITaxon:2172005","l":"Methylosinus sp. Ce-a6","na":1,"nb":2,"a":[["METHYLOTROPH_MEDIUM.yaml","methylotroph_medium"]],"b":[["NCBITaxon%3A427","Methylosinus sp."],["NCBITaxon%3A2172005","Methylosinus sp. Ce-a6"]]},{"id":"NCBITaxon:2203","l":"Methanospirillum hungatei","na":1,"nb":2,"a":[["medium_for_co_culture_of_strain_jt_with_methanospirillum_hungatei_nbrc_100397.yaml","medium_for_co_culture_of_strain_jt_with_methanospirillum_hungatei_nbrc_100397"]],"b":[["NCBITaxon%3A2203","Methanospirillum hungatei"],["NCBITaxon%3A323259","Methanospirillum hungatei JF-1"]]},{"id":"NCBITaxon:2214","l":"Methanosarcina acetivorans","na":1,"nb":2,"a":[["methanosarcina_medium__046448c4.yaml","methanosarcina_medium"]],"b":[["NCBITaxon%3A2214","Methanosarcina acetivorans"],["NCBITaxon%3A188937","Methanosarcina acetivorans C2A"]]},{"id":"NCBITaxon:261964","l":"Kangiella koreensis","na":1,"nb":2,"a":[["bacto_marine_broth_difco_2216_for_dsm_11879.yaml","bacto_marine_broth_difco_2216_for_dsm_11879"]],"b":[["NCBITaxon%3A261964","Kangiella koreensis"],["NCBITaxon%3A523791","Kangiella koreensis DSM 16069"]]},{"id":"NCBITaxon:262724","l":"Thermus thermophilus (strain ATCC BAA-163 / DSM 7039 / HB27)","na":1,"nb":2,"a":[["thermus_medium__6b1d1914.yaml","thermus_medium"]],"b":[["NCBITaxon%3A274","Thermus thermophilus"],["NCBITaxon%3A262724","Thermus thermophilus HB27"]]},{"id":"NCBITaxon:28114","l":"Porphyromonas levii","na":1,"nb":2,"a":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]],"b":[["NCBITaxon%3A28114","Porphyromonas levii"],["NCBITaxon%3A1122973","Porphyromonas levii DSM 23370"]]},{"id":"NCBITaxon:31899","l":"Caldicellulosiruptor bescii","na":1,"nb":2,"a":[["caldicellulosiruptor_medium_for_dsm_10319.yaml","caldicellulosiruptor_medium_for_dsm_10319"]],"b":[["NCBITaxon%3A31899","Caldicellulosiruptor bescii"],["NCBITaxon%3A521460","Caldicellulosiruptor bescii DSM 6725"]]},{"id":"NCBITaxon:33028","l":"Staphylococcus saccharolyticus","na":1,"nb":2,"a":[["columbia_blood_agar__e1a4386f.yaml","columbia_blood_agar"]],"b":[["NCBITaxon%3A45972","Staphylococcus pasteuri"],["NCBITaxon%3A33028","Staphylococcus saccharolyticus"]]},{"id":"NCBITaxon:373903","l":"Halothermothrix orenii H 168","na":1,"nb":2,"a":[["halothermothrix_orenii.yaml","halothermothrix_orenii"]],"b":[["NCBITaxon%3A31909","Halothermothrix orenii"],["NCBITaxon%3A373903","Halothermothrix orenii H 168"]]},{"id":"NCBITaxon:413888","l":"Caldicellulosiruptor hydrothermalis","na":1,"nb":2,"a":[["caldicellulosiruptor_medium_for_dsm_10319.yaml","caldicellulosiruptor_medium_for_dsm_10319"]],"b":[["NCBITaxon%3A413888","Caldicellulosiruptor hydrothermalis"],["NCBITaxon%3A632292","Caldicellulosiruptor hydrothermalis 108"]]},{"id":"NCBITaxon:413889","l":"Caldicellulosiruptor kronotskyensis","na":1,"nb":2,"a":[["caldicellulosiruptor_medium_for_dsm_10319.yaml","caldicellulosiruptor_medium_for_dsm_10319"]],"b":[["NCBITaxon%3A413889","Caldicellulosiruptor kronotskyensis"],["NCBITaxon%3A632348","Caldicellulosiruptor kronotskyensis 2002"]]},{"id":"NCBITaxon:43687","l":"Metallosphaera sedula","na":1,"nb":2,"a":[["sulfolobus_medium_for_dsm_5348.yaml","sulfolobus_medium_for_dsm_5348"]],"b":[["NCBITaxon%3A43687","Metallosphaera sedula"],["NCBITaxon%3A399549","Metallosphaera sedula DSM 5348"]]},{"id":"NCBITaxon:44001","l":"Caldicellulosiruptor saccharolyticus","na":1,"nb":2,"a":[["caldicellulosiruptor_medium_for_dsm_10319.yaml","caldicellulosiruptor_medium_for_dsm_10319"]],"b":[["NCBITaxon%3A44001","Caldicellulosiruptor saccharolyticus"],["NCBITaxon%3A351627","Caldicellulosiruptor saccharolyticus DSM 8903"]]},{"id":"NCBITaxon:46632","l":"Picrophilus oshimae","na":1,"nb":2,"a":[["sulfolobus_medium_for_dsm_9790.yaml","sulfolobus_medium_for_dsm_9790"]],"b":[["NCBITaxon%3A46632","Picrophilus oshimae"],["NCBITaxon%3A1122961","Picrophilus oshimae DSM 9789"]]},{"id":"NCBITaxon:47303","l":"Sulfuracidifex metallicus","na":1,"nb":2,"a":[["sulfolobus_medium_for_dsm_5348.yaml","sulfolobus_medium_for_dsm_5348"]],"b":[["NCBITaxon%3A47303","Sulfuracidifex metallicus"],["NCBITaxon%3A523847","Sulfuracidifex metallicus DSM 6482 = JCM 9184"]]},{"id":"NCBITaxon:524","l":"Acidiphilium cryptum","na":1,"nb":2,"a":[["acidiphilium_medium__9ab0ce72.yaml","acidiphilium_medium"]],"b":[["NCBITaxon%3A524","Acidiphilium cryptum"],["NCBITaxon%3A349163","Acidiphilium cryptum JF-5"]]},{"id":"NCBITaxon:54259","l":"Ignicoccus islandicus","na":1,"nb":2,"a":[["ignicoccus_medium_for_dsm_18386.yaml","ignicoccus_medium_for_dsm_18386"]],"b":[["NCBITaxon%3A54259","Ignicoccus islandicus"],["NCBITaxon%3A940295","Ignicoccus islandicus DSM 13165"]]},{"id":"NCBITaxon:55205","l":"Caldicellulosiruptor owensensis","na":1,"nb":2,"a":[["caldicellulosiruptor_medium_for_dsm_10319.yaml","caldicellulosiruptor_medium_for_dsm_10319"]],"b":[["NCBITaxon%3A55205","Caldicellulosiruptor owensensis"],["NCBITaxon%3A632518","Caldicellulosiruptor owensensis OL"]]},{"id":"NCBITaxon:556484","l":"","na":2,"nb":1,"a":[["2ASW.yaml","2asw"],["F_2_Medium.yaml","f_2_medium"]],"b":[["NCBITaxon%3A556484","Phaeodactylum tricornutum CCAP 1055/1"]]},{"id":"NCBITaxon:59600","l":"Cellulophaga algicola","na":1,"nb":2,"a":[["bacto_marine_broth_difco_2216_for_dsm_11879.yaml","bacto_marine_broth_difco_2216_for_dsm_11879"]],"b":[["NCBITaxon%3A59600","Cellulophaga algicola"],["NCBITaxon%3A688270","Cellulophaga algicola DSM 14237"]]},{"id":"NCBITaxon:79601","l":"Metallosphaera hakonensis","na":1,"nb":2,"a":[["sulfolobus_medium_anaerobic_for_dsm_2162.yaml","sulfolobus_medium_anaerobic_for_dsm_2162"]],"b":[["NCBITaxon%3A79601","Metallosphaera hakonensis"],["NCBITaxon%3A1293036","Metallosphaera hakonensis JCM 8857 = DSM 7519"]]},{"id":"NCBITaxon:1670455","l":"Sulfodiicoccus acidiphilus","na":1,"nb":1,"a":[["sulfolobus_medium_anaerobic_for_dsm_2162.yaml","sulfolobus_medium_anaerobic_for_dsm_2162"]],"b":[["NCBITaxon%3A1670455","Sulfodiicoccus acidiphilus"]]},{"id":"NCBITaxon:184077","l":"Methylovorus mays","na":1,"nb":1,"a":[["METHYLOTROPH_MEDIUM.yaml","methylotroph_medium"]],"b":[["NCBITaxon%3A184077","Methylovorus mays"]]},{"id":"NCBITaxon:1891787","l":"Roseobacter ponti","na":1,"nb":1,"a":[["bacto_marine_broth_difco_2216_for_dsm_11879.yaml","bacto_marine_broth_difco_2216_for_dsm_11879"]],"b":[["NCBITaxon%3A1891787","Roseobacter ponti"]]},{"id":"NCBITaxon:2053590","l":"Pelotomaculum sp.","na":1,"nb":1,"a":[["medium_for_co_culture_of_strain_jt_with_methanospirillum_hungatei_nbrc_100397.yaml","medium_for_co_culture_of_strain_jt_with_methanospirillum_hungatei_nbrc_100397"]],"b":[["NCBITaxon%3A2053590","Pelotomaculum sp."]]},{"id":"NCBITaxon:2219813","l":"Synechococcus elongatus PCC 11801","na":1,"nb":1,"a":[["bg11__f771062f.yaml","bg11"]],"b":[["NCBITaxon%3A2219813","Synechococcus elongatus PCC 11801"]]},{"id":"NCBITaxon:2283154","l":"Synechococcus elongatus PCC 11802","na":1,"nb":1,"a":[["bg11__f771062f.yaml","bg11"]],"b":[["NCBITaxon%3A2283154","Synechococcus elongatus PCC 11802"]]},{"id":"NCBITaxon:258533","l":"Mycolicibacterium cosmeticum","na":1,"nb":1,"a":[["nutrient_broth__3e8602c5.yaml","nutrient broth"]],"b":[["NCBITaxon%3A258533","Mycolicibacterium cosmeticum"]]},{"id":"NCBITaxon:263820","l":"Picrophilus torridus DSM 9790","na":1,"nb":1,"a":[["sulfolobus_medium_for_dsm_9790.yaml","sulfolobus_medium_for_dsm_9790"]],"b":[["NCBITaxon%3A46632","Picrophilus oshimae"]]},{"id":"NCBITaxon:41673","l":"Acidianus brierleyi","na":1,"nb":1,"a":[["sulfolobus_medium_anaerobic_for_dsm_2162.yaml","sulfolobus_medium_anaerobic_for_dsm_2162"]],"b":[["NCBITaxon%3A41673","Acidianus brierleyi"]]},{"id":"NCBITaxon:633813","l":"Rhodothermus profundi","na":1,"nb":1,"a":[["bacto_marine_broth_difco_2216_for_dsm_11879.yaml","bacto_marine_broth_difco_2216_for_dsm_11879"]],"b":[["NCBITaxon%3A633813","Rhodothermus profundi"]]},{"id":"NCBITaxon:69656","l":"Sulfurisphaera ohwakuensis","na":1,"nb":1,"a":[["sulfolobus_medium_anaerobic_for_dsm_2162.yaml","sulfolobus_medium_anaerobic_for_dsm_2162"]],"b":[["NCBITaxon%3A69656","Sulfurisphaera ohwakuensis"]]},{"id":"NCBITaxon:715028","l":"Thermoanaerobacterium calidifontis","na":1,"nb":1,"a":[["caldicellulosiruptor_medium_for_dsm_10319.yaml","caldicellulosiruptor_medium_for_dsm_10319"]],"b":[["NCBITaxon%3A715028","Thermoanaerobacterium calidifontis"]]},{"id":"NCBITaxon:974","l":"Sporohalobacter lortetii","na":1,"nb":1,"a":[["SPOROHALOBACTER_LORTETII_MEDIUM.yaml","sporohalobacter_lortetii_medium"]],"b":[["NCBITaxon%3A974","Sporohalobacter lortetii"]]}]} \ No newline at end of file +{"a":"CultureMech","b":"TaxonMech","base":{"CultureMech":"https://github.com/CultureBotAI/CultureMech/blob/main/data/merge_yaml/merged/","TaxonMech":"https://culturebotai.github.io/TaxonMech/pages/taxon.html?id="},"n":54,"by":{"NCBITaxon":54},"terms":[{"id":"NCBITaxon:210","l":"Helicobacter pylori","na":1,"nb":631,"a":[["BRUCELLA_BROTH.yaml","brucella_broth"]],"b":[["NCBITaxon%3A210","Helicobacter pylori"],["NCBITaxon%3A1028810","Helicobacter pylori 10700"],["NCBITaxon%3A585532","Helicobacter pylori 118"],["NCBITaxon%3A102610","Helicobacter pylori #12"],["NCBITaxon%3A585533","Helicobacter pylori 120"],["NCBITaxon%3A103187","Helicobacter pylori 15818"]]},{"id":"NCBITaxon:823","l":"Parabacteroides distasonis","na":1,"nb":45,"a":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]],"b":[["NCBITaxon%3A823","Parabacteroides distasonis"],["NCBITaxon%3A435591","Parabacteroides distasonis ATCC 8503"],["NCBITaxon%3A999416","Parabacteroides distasonis CL03T12C09"],["NCBITaxon%3A999417","Parabacteroides distasonis CL09T03C24"],["NCBITaxon%3A1339342","Parabacteroides distasonis str. 3776 D15 i"],["NCBITaxon%3A1339343","Parabacteroides distasonis str. 3776 D15 iv"]]},{"id":"NCBITaxon:851","l":"Fusobacterium nucleatum","na":1,"nb":35,"a":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]],"b":[["NCBITaxon%3A76859","Fusobacterium animalis"],["NCBITaxon%3A997347","Fusobacterium animalis ATCC 51191"],["NCBITaxon%3A1583098","Fusobacterium hwasookii"],["NCBITaxon%3A1216362","Fusobacterium hwasookii ChDC F128"],["NCBITaxon%3A1307441","Fusobacterium hwasookii ChDC F145"],["NCBITaxon%3A1307442","Fusobacterium hwasookii ChDC F174"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":1,"nb":29,"a":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]],"b":[["NCBITaxon%3A1579","Lactobacillus acidophilus"],["NCBITaxon%3A47770","Lactobacillus crispatus"],["NCBITaxon%3A575595","Lactobacillus crispatus 125-2-CHN"],["NCBITaxon%3A1381118","Lactobacillus crispatus 2029"],["NCBITaxon%3A679188","Lactobacillus crispatus 214-1"],["NCBITaxon%3A440496","Lactobacillus crispatus CTV-05"]]},{"id":"NCBITaxon:859","l":"Fusobacterium necrophorum","na":1,"nb":18,"a":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]],"b":[["NCBITaxon%3A134605","Fusobacterium equinum"],["NCBITaxon%3A849","Fusobacterium gonidiaformans"],["NCBITaxon%3A859","Fusobacterium necrophorum"],["NCBITaxon%3A1441734","Fusobacterium necrophorum BFTR-1"],["NCBITaxon%3A1441736","Fusobacterium necrophorum BFTR-2"],["NCBITaxon%3A1441732","Fusobacterium necrophorum BL"]]},{"id":"NCBITaxon:1148","l":"Synechocystis sp. PCC 6803","na":1,"nb":12,"a":[["bg11__f771062f.yaml","bg11"]],"b":[["NCBITaxon%3A1148","Synechocystis sp. PCC 6803"],["NCBITaxon%3A2932627","Synechocystis sp. PCC 6803 subst. PCC-Mn"],["NCBITaxon%3A2932628","Synechocystis sp. PCC 6803 subst. PCC-Pn"],["NCBITaxon%3A2962876","Synechocystis sp. PCC 6803 substr. D1-D170H"],["NCBITaxon%3A1080228","Synechocystis sp. PCC 6803 substr. GT-I"],["NCBITaxon%3A2932626","Synechocystis sp. PCC 6803 substr. GT-In"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":1,"nb":11,"a":[["RHODOBACTER_SPHAEROIDES_MEDIUM.yaml","rhodobacter_sphaeroides_medium"]],"b":[["NCBITaxon%3A1063","Cereibacter sphaeroides"],["NCBITaxon%3A272943","Cereibacter sphaeroides 2.4.1"],["NCBITaxon%3A349102","Cereibacter sphaeroides ATCC 17025"],["NCBITaxon%3A349101","Cereibacter sphaeroides ATCC 17029"],["NCBITaxon%3A39723","Cereibacter sphaeroides f. sp. denitrificans"],["NCBITaxon%3A633146","Cereibacter sphaeroides GA"]]},{"id":"NCBITaxon:28125","l":"Prevotella bivia","na":1,"nb":8,"a":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]],"b":[["NCBITaxon%3A28125","Prevotella bivia"],["NCBITaxon%3A1115806","Prevotella bivia B11"],["NCBITaxon%3A1287476","Prevotella bivia DNF00188"],["NCBITaxon%3A1401068","Prevotella bivia DNF00320"],["NCBITaxon%3A1401072","Prevotella bivia DNF00650"],["NCBITaxon%3A868129","Prevotella bivia DSM 20514"]]},{"id":"NCBITaxon:2099","l":"Mesomycoplasma hyopneumoniae","na":1,"nb":7,"a":[["FRIIS_MEDIUM.yaml","friis_medium"]],"b":[["NCBITaxon%3A2099","Mesomycoplasma hyopneumoniae"],["NCBITaxon%3A907287","Mesomycoplasma hyopneumoniae 168"],["NCBITaxon%3A1116211","Mesomycoplasma hyopneumoniae 168-L"],["NCBITaxon%3A295358","Mesomycoplasma hyopneumoniae 232"],["NCBITaxon%3A754503","Mesomycoplasma hyopneumoniae 7422"],["NCBITaxon%3A262722","Mesomycoplasma hyopneumoniae 7448"]]},{"id":"NCBITaxon:35554","l":"Geobacter sulfurreducens","na":1,"nb":5,"a":[["GEOBACTER_SULFURREDUCENS_MEDIUM.yaml","geobacter_sulfurreducens_medium"]],"b":[["NCBITaxon%3A35554","Geobacter sulfurreducens"],["NCBITaxon%3A663917","Geobacter sulfurreducens KN400"],["NCBITaxon%3A243231","Geobacter sulfurreducens PCA"],["NCBITaxon%3A1260928","Geobacter sulfurreducens subsp. ethanolicus"],["NCBITaxon%3A1649546","Geobacter sulfurreducens subsp. sulfurreducens"]]},{"id":"NCBITaxon:301953","l":"Caldicellulosiruptor acetigenus","na":1,"nb":4,"a":[["caldicellulosiruptor_medium_for_dsm_10319.yaml","caldicellulosiruptor_medium_for_dsm_10319"]],"b":[["NCBITaxon%3A301953","Caldicellulosiruptor acetigenus"],["NCBITaxon%3A632516","Caldicellulosiruptor acetigenus 6A"],["NCBITaxon%3A1121259","Caldicellulosiruptor acetigenus DSM 7040"],["NCBITaxon%3A632335","Caldicellulosiruptor acetigenus I77R1B"]]},{"id":"NCBITaxon:511145","l":"Escherichia coli str. K-12 substr. MG1655","na":1,"nb":4,"a":[["LB_Medium.yaml","lb_medium"]],"b":[["NCBITaxon%3A47678","Bacteroides caccae"],["NCBITaxon%3A411901","Bacteroides caccae ATCC 43185"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A511145","Escherichia coli str. K-12 substr. MG1655"]]},{"id":"NCBITaxon:2234","l":"Archaeoglobus fulgidus","na":1,"nb":3,"a":[["archaeoglobus_medium_dsm_399.yaml","archaeoglobus_medium_dsm_399"]],"b":[["NCBITaxon%3A2234","Archaeoglobus fulgidus"],["NCBITaxon%3A224325","Archaeoglobus fulgidus DSM 4304"],["NCBITaxon%3A1344584","Archaeoglobus fulgidus DSM 8774"]]},{"id":"NCBITaxon:2261","l":"Pyrococcus furiosus","na":1,"nb":3,"a":[["pyrococcus_medium__6ffabef8.yaml","pyrococcus_medium"]],"b":[["NCBITaxon%3A2261","Pyrococcus furiosus"],["NCBITaxon%3A1185654","Pyrococcus furiosus COM1"],["NCBITaxon%3A186497","Pyrococcus furiosus DSM 3638"]]},{"id":"NCBITaxon:55518","l":"Magnetospirillum gryphiswaldense","na":1,"nb":3,"a":[["magnetospirillum_gryphiswaldense_medium__6f77a326.yaml","magnetospirillum_gryphiswaldense_medium"]],"b":[["NCBITaxon%3A55518","Magnetospirillum gryphiswaldense"],["NCBITaxon%3A431944","Magnetospirillum gryphiswaldense MSR-1"],["NCBITaxon%3A1430440","Magnetospirillum gryphiswaldense MSR-1 v2"]]},{"id":"NCBITaxon:1042417","l":"Brachyspira pilosicoli P43/6/78","na":1,"nb":2,"a":[["BHIS__8d771a65.yaml","BHIS"]],"b":[["NCBITaxon%3A52584","Brachyspira pilosicoli"],["NCBITaxon%3A1042417","Brachyspira pilosicoli P43/6/78"]]},{"id":"NCBITaxon:111955","l":"Sulfurisphaera tokodaii","na":1,"nb":2,"a":[["sulfolobus_medium_anaerobic_for_dsm_2162.yaml","sulfolobus_medium_anaerobic_for_dsm_2162"]],"b":[["NCBITaxon%3A111955","Sulfurisphaera tokodaii"],["NCBITaxon%3A273063","Sulfurisphaera tokodaii str. 7"]]},{"id":"NCBITaxon:114376","l":"Ignicoccus pacificus","na":1,"nb":2,"a":[["ignicoccus_medium_for_dsm_18386.yaml","ignicoccus_medium_for_dsm_18386"]],"b":[["NCBITaxon%3A114376","Ignicoccus pacificus"],["NCBITaxon%3A940294","Ignicoccus pacificus DSM 13166"]]},{"id":"NCBITaxon:1236958","l":"Sneathiella glossodoripedis JCM 23214","na":1,"nb":2,"a":[["Marine_Agar_2216.yaml","marine_agar_2216"]],"b":[["NCBITaxon%3A418853","Sneathiella glossodoripedis"],["NCBITaxon%3A1236958","Sneathiella glossodoripedis JCM 23214"]]},{"id":"NCBITaxon:160233","l":"Ignicoccus hospitalis","na":1,"nb":2,"a":[["ignicoccus_medium_for_dsm_18386.yaml","ignicoccus_medium_for_dsm_18386"]],"b":[["NCBITaxon%3A160233","Ignicoccus hospitalis"],["NCBITaxon%3A453591","Ignicoccus hospitalis KIN4/I"]]},{"id":"NCBITaxon:2172005","l":"Methylosinus sp. Ce-a6","na":1,"nb":2,"a":[["METHYLOTROPH_MEDIUM.yaml","methylotroph_medium"]],"b":[["NCBITaxon%3A427","Methylosinus sp."],["NCBITaxon%3A2172005","Methylosinus sp. Ce-a6"]]},{"id":"NCBITaxon:2203","l":"Methanospirillum hungatei","na":1,"nb":2,"a":[["medium_for_co_culture_of_strain_jt_with_methanospirillum_hungatei_nbrc_100397.yaml","medium_for_co_culture_of_strain_jt_with_methanospirillum_hungatei_nbrc_100397"]],"b":[["NCBITaxon%3A2203","Methanospirillum hungatei"],["NCBITaxon%3A323259","Methanospirillum hungatei JF-1"]]},{"id":"NCBITaxon:2214","l":"Methanosarcina acetivorans","na":1,"nb":2,"a":[["methanosarcina_medium__046448c4.yaml","methanosarcina_medium"]],"b":[["NCBITaxon%3A2214","Methanosarcina acetivorans"],["NCBITaxon%3A188937","Methanosarcina acetivorans C2A"]]},{"id":"NCBITaxon:261964","l":"Kangiella koreensis","na":1,"nb":2,"a":[["bacto_marine_broth_difco_2216_for_dsm_11879.yaml","bacto_marine_broth_difco_2216_for_dsm_11879"]],"b":[["NCBITaxon%3A261964","Kangiella koreensis"],["NCBITaxon%3A523791","Kangiella koreensis DSM 16069"]]},{"id":"NCBITaxon:262724","l":"Thermus thermophilus HB27","na":1,"nb":2,"a":[["thermus_medium__6b1d1914.yaml","thermus_medium"]],"b":[["NCBITaxon%3A274","Thermus thermophilus"],["NCBITaxon%3A262724","Thermus thermophilus HB27"]]},{"id":"NCBITaxon:28114","l":"Porphyromonas levii","na":1,"nb":2,"a":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]],"b":[["NCBITaxon%3A28114","Porphyromonas levii"],["NCBITaxon%3A1122973","Porphyromonas levii DSM 23370"]]},{"id":"NCBITaxon:31899","l":"Caldicellulosiruptor bescii","na":1,"nb":2,"a":[["caldicellulosiruptor_medium_for_dsm_10319.yaml","caldicellulosiruptor_medium_for_dsm_10319"]],"b":[["NCBITaxon%3A31899","Caldicellulosiruptor bescii"],["NCBITaxon%3A521460","Caldicellulosiruptor bescii DSM 6725"]]},{"id":"NCBITaxon:33028","l":"Staphylococcus saccharolyticus","na":1,"nb":2,"a":[["columbia_blood_agar__e1a4386f.yaml","columbia_blood_agar"]],"b":[["NCBITaxon%3A45972","Staphylococcus pasteuri"],["NCBITaxon%3A33028","Staphylococcus saccharolyticus"]]},{"id":"NCBITaxon:373903","l":"Halothermothrix orenii H 168","na":1,"nb":2,"a":[["halothermothrix_orenii.yaml","halothermothrix_orenii"]],"b":[["NCBITaxon%3A31909","Halothermothrix orenii"],["NCBITaxon%3A373903","Halothermothrix orenii H 168"]]},{"id":"NCBITaxon:413888","l":"Caldicellulosiruptor hydrothermalis","na":1,"nb":2,"a":[["caldicellulosiruptor_medium_for_dsm_10319.yaml","caldicellulosiruptor_medium_for_dsm_10319"]],"b":[["NCBITaxon%3A413888","Caldicellulosiruptor hydrothermalis"],["NCBITaxon%3A632292","Caldicellulosiruptor hydrothermalis 108"]]},{"id":"NCBITaxon:413889","l":"Caldicellulosiruptor kronotskyensis","na":1,"nb":2,"a":[["caldicellulosiruptor_medium_for_dsm_10319.yaml","caldicellulosiruptor_medium_for_dsm_10319"]],"b":[["NCBITaxon%3A413889","Caldicellulosiruptor kronotskyensis"],["NCBITaxon%3A632348","Caldicellulosiruptor kronotskyensis 2002"]]},{"id":"NCBITaxon:43687","l":"Metallosphaera sedula","na":1,"nb":2,"a":[["sulfolobus_medium_for_dsm_5348.yaml","sulfolobus_medium_for_dsm_5348"]],"b":[["NCBITaxon%3A43687","Metallosphaera sedula"],["NCBITaxon%3A399549","Metallosphaera sedula DSM 5348"]]},{"id":"NCBITaxon:44001","l":"Caldicellulosiruptor saccharolyticus","na":1,"nb":2,"a":[["caldicellulosiruptor_medium_for_dsm_10319.yaml","caldicellulosiruptor_medium_for_dsm_10319"]],"b":[["NCBITaxon%3A44001","Caldicellulosiruptor saccharolyticus"],["NCBITaxon%3A351627","Caldicellulosiruptor saccharolyticus DSM 8903"]]},{"id":"NCBITaxon:46632","l":"Picrophilus oshimae","na":1,"nb":2,"a":[["sulfolobus_medium_for_dsm_9790.yaml","sulfolobus_medium_for_dsm_9790"]],"b":[["NCBITaxon%3A46632","Picrophilus oshimae"],["NCBITaxon%3A1122961","Picrophilus oshimae DSM 9789"]]},{"id":"NCBITaxon:47303","l":"Sulfuracidifex metallicus","na":1,"nb":2,"a":[["sulfolobus_medium_for_dsm_5348.yaml","sulfolobus_medium_for_dsm_5348"]],"b":[["NCBITaxon%3A47303","Sulfuracidifex metallicus"],["NCBITaxon%3A523847","Sulfuracidifex metallicus DSM 6482 = JCM 9184"]]},{"id":"NCBITaxon:524","l":"Acidiphilium cryptum","na":1,"nb":2,"a":[["acidiphilium_medium__9ab0ce72.yaml","acidiphilium_medium"]],"b":[["NCBITaxon%3A524","Acidiphilium cryptum"],["NCBITaxon%3A349163","Acidiphilium cryptum JF-5"]]},{"id":"NCBITaxon:54259","l":"Ignicoccus islandicus","na":1,"nb":2,"a":[["ignicoccus_medium_for_dsm_18386.yaml","ignicoccus_medium_for_dsm_18386"]],"b":[["NCBITaxon%3A54259","Ignicoccus islandicus"],["NCBITaxon%3A940295","Ignicoccus islandicus DSM 13165"]]},{"id":"NCBITaxon:55205","l":"Caldicellulosiruptor owensensis","na":1,"nb":2,"a":[["caldicellulosiruptor_medium_for_dsm_10319.yaml","caldicellulosiruptor_medium_for_dsm_10319"]],"b":[["NCBITaxon%3A55205","Caldicellulosiruptor owensensis"],["NCBITaxon%3A632518","Caldicellulosiruptor owensensis OL"]]},{"id":"NCBITaxon:556484","l":"Phaeodactylum tricornutum CCAP 1055/1","na":2,"nb":1,"a":[["2ASW.yaml","2asw"],["F_2_Medium.yaml","f_2_medium"]],"b":[["NCBITaxon%3A556484","Phaeodactylum tricornutum CCAP 1055/1"]]},{"id":"NCBITaxon:59600","l":"Cellulophaga algicola","na":1,"nb":2,"a":[["bacto_marine_broth_difco_2216_for_dsm_11879.yaml","bacto_marine_broth_difco_2216_for_dsm_11879"]],"b":[["NCBITaxon%3A59600","Cellulophaga algicola"],["NCBITaxon%3A688270","Cellulophaga algicola DSM 14237"]]},{"id":"NCBITaxon:79601","l":"Metallosphaera hakonensis","na":1,"nb":2,"a":[["sulfolobus_medium_anaerobic_for_dsm_2162.yaml","sulfolobus_medium_anaerobic_for_dsm_2162"]],"b":[["NCBITaxon%3A79601","Metallosphaera hakonensis"],["NCBITaxon%3A1293036","Metallosphaera hakonensis JCM 8857 = DSM 7519"]]},{"id":"NCBITaxon:1670455","l":"Sulfodiicoccus acidiphilus","na":1,"nb":1,"a":[["sulfolobus_medium_anaerobic_for_dsm_2162.yaml","sulfolobus_medium_anaerobic_for_dsm_2162"]],"b":[["NCBITaxon%3A1670455","Sulfodiicoccus acidiphilus"]]},{"id":"NCBITaxon:184077","l":"Methylovorus mays","na":1,"nb":1,"a":[["METHYLOTROPH_MEDIUM.yaml","methylotroph_medium"]],"b":[["NCBITaxon%3A184077","Methylovorus mays"]]},{"id":"NCBITaxon:1891787","l":"Roseobacter ponti","na":1,"nb":1,"a":[["bacto_marine_broth_difco_2216_for_dsm_11879.yaml","bacto_marine_broth_difco_2216_for_dsm_11879"]],"b":[["NCBITaxon%3A1891787","Roseobacter ponti"]]},{"id":"NCBITaxon:2053590","l":"Pelotomaculum sp.","na":1,"nb":1,"a":[["medium_for_co_culture_of_strain_jt_with_methanospirillum_hungatei_nbrc_100397.yaml","medium_for_co_culture_of_strain_jt_with_methanospirillum_hungatei_nbrc_100397"]],"b":[["NCBITaxon%3A2053590","Pelotomaculum sp."]]},{"id":"NCBITaxon:2219813","l":"Synechococcus elongatus PCC 11801","na":1,"nb":1,"a":[["bg11__f771062f.yaml","bg11"]],"b":[["NCBITaxon%3A2219813","Synechococcus elongatus PCC 11801"]]},{"id":"NCBITaxon:2283154","l":"Synechococcus elongatus PCC 11802","na":1,"nb":1,"a":[["bg11__f771062f.yaml","bg11"]],"b":[["NCBITaxon%3A2283154","Synechococcus elongatus PCC 11802"]]},{"id":"NCBITaxon:258533","l":"Mycolicibacterium cosmeticum","na":1,"nb":1,"a":[["nutrient_broth__3e8602c5.yaml","nutrient broth"]],"b":[["NCBITaxon%3A258533","Mycolicibacterium cosmeticum"]]},{"id":"NCBITaxon:263820","l":"Picrophilus torridus DSM 9790","na":1,"nb":1,"a":[["sulfolobus_medium_for_dsm_9790.yaml","sulfolobus_medium_for_dsm_9790"]],"b":[["NCBITaxon%3A46632","Picrophilus oshimae"]]},{"id":"NCBITaxon:41673","l":"Acidianus brierleyi","na":1,"nb":1,"a":[["sulfolobus_medium_anaerobic_for_dsm_2162.yaml","sulfolobus_medium_anaerobic_for_dsm_2162"]],"b":[["NCBITaxon%3A41673","Acidianus brierleyi"]]},{"id":"NCBITaxon:633813","l":"Rhodothermus profundi","na":1,"nb":1,"a":[["bacto_marine_broth_difco_2216_for_dsm_11879.yaml","bacto_marine_broth_difco_2216_for_dsm_11879"]],"b":[["NCBITaxon%3A633813","Rhodothermus profundi"]]},{"id":"NCBITaxon:69656","l":"Sulfurisphaera ohwakuensis","na":1,"nb":1,"a":[["sulfolobus_medium_anaerobic_for_dsm_2162.yaml","sulfolobus_medium_anaerobic_for_dsm_2162"]],"b":[["NCBITaxon%3A69656","Sulfurisphaera ohwakuensis"]]},{"id":"NCBITaxon:715028","l":"Thermoanaerobacterium calidifontis","na":1,"nb":1,"a":[["caldicellulosiruptor_medium_for_dsm_10319.yaml","caldicellulosiruptor_medium_for_dsm_10319"]],"b":[["NCBITaxon%3A715028","Thermoanaerobacterium calidifontis"]]},{"id":"NCBITaxon:974","l":"Sporohalobacter lortetii","na":1,"nb":1,"a":[["SPOROHALOBACTER_LORTETII_MEDIUM.yaml","sporohalobacter_lortetii_medium"]],"b":[["NCBITaxon%3A974","Sporohalobacter lortetii"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/HabitatMech--AntibioticMech.json b/assets/fleet/edges/HabitatMech--AntibioticMech.json index fac2361..ccfb65c 100644 --- a/assets/fleet/edges/HabitatMech--AntibioticMech.json +++ b/assets/fleet/edges/HabitatMech--AntibioticMech.json @@ -1 +1 @@ -{"a":"HabitatMech","b":"AntibioticMech","base":{"HabitatMech":"https://culturebotai.github.io/HabitatMech/pages/habitats/","AntibioticMech":"https://culturebotai.github.io/AntibioticMech/pages/"},"n":32,"by":{"NCBITaxon":32},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":36,"nb":30,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["bay-envo-00000032.html","bay"],["freshwater-biome-envo-00000873.html","freshwater biome"],["liquid-water-envo-00002006.html","liquid water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":40,"nb":13,"a":[["liquid-water-envo-00002006.html","liquid water"],["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["laboratory-facility-envo-01001406.html","laboratory facility"],["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["biofilm-bto-0002690.html","biofilm"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/bromodeoxytopsentin.html","bromodeoxytopsentin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":13,"nb":22,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["neutrophil-bto-0000130.html","neutrophil"],["rectum-bto-0001158.html","rectum"],["spleen-bto-0001281.html","spleen"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":28,"nb":12,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["liquid-water-envo-00002006.html","liquid water"],["watercourse-envo-00000029.html","watercourse"],["compost-envo-00002170.html","compost"],["hospital-envo-00002173.html","hospital"],["human-construction-envo-00000070.html","human construction"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":17,"nb":7,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["hospital-envo-00002173.html","hospital"],["egg-food-product-foodon-00001274.html","egg food product"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":8,"nb":6,"a":[["reservoir-envo-00000025.html","reservoir"],["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["secretion-bto-0002979.html","secretion"],["stomach-bto-0001307.html","stomach"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"NCBITaxon:1283","l":"Staphylococcus haemolyticus","na":9,"nb":5,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["biofilm-bto-0002690.html","biofilm"],["bone-element-uberon-0001474.html","bone element"],["conjunctiva-bto-0003415.html","conjunctiva"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/oxacillin.html","oxacillin"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":25,"nb":4,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-water-body-envo-00001999.html","marine water body"],["sea-water-envo-00002149.html","sea water"],["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/oxacillin.html","oxacillin"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":3,"nb":15,"a":[["bile-bto-0000121.html","bile"],["rectum-bto-0001158.html","rectum"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":10,"nb":3,"a":[["anther-bto-0000079.html","anther"],["epithelial-cell-bto-0000414.html","epithelial cell"],["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":3,"nb":5,"a":[["liquid-water-envo-00002006.html","liquid water"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/imipenem.html","imipenem"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":18,"nb":2,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["antibacterial/mupirocin.html","mupirocin"],["antifungal/2-4-diacetylphloroglucinol.html","2,4-diacetylphloroglucinol"]]},{"id":"NCBITaxon:1299","l":"Deinococcus radiodurans","na":7,"nb":2,"a":[["animal-house-envo-00003040.html","animal house"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["water-scum-envo-00005794.html","water scum"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"]],"b":[["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/linezolid.html","linezolid"]]},{"id":"NCBITaxon:1773","l":"Mycobacterium tuberculosis","na":5,"nb":2,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["posterior-lobe-bto-0000561.html","posterior lobe"],["sputum-bto-0001297.html","sputum"],["thorax-bto-0001368.html","thorax"],["thp-1-cell-bto-0001370.html","THP-1 cell"]],"b":[["antibacterial/sulfanilamide.html","sulfanilamide"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":3,"nb":2,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"],["unspecified/streptothricin-d.html","streptothricin D"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":14,"nb":1,"a":[["watercourse-envo-00000029.html","watercourse"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["leaf-po-0025034.html","leaf"]],"b":[["antibacterial/althiomycin.html","althiomycin"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":8,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":7,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"NCBITaxon:1496","l":"Clostridioides difficile","na":6,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["feces-uberon-0001988.html","feces"],["leukocyte-bto-0000751.html","leukocyte"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["intestine-environment-envo-2100002.html","intestine environment"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["antibacterial/fidaxomicin.html","fidaxomicin"]]},{"id":"NCBITaxon:229533","l":"Fusarium graminearum PH-1","na":1,"nb":5,"a":[["soil-envo-00001998.html","soil"]],"b":[["antifungal/carbendazim.html","carbendazim"],["antifungal/difenoconazole.html","difenoconazole"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/prochloraz.html","prochloraz"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":1,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"],["midgut-bto-0000863.html","midgut"],["paddy-field-envo-00000297.html","paddy field"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["antibacterial/althiomycin.html","althiomycin"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":4,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"],["human-construction-envo-00000070.html","human construction"],["sediment-envo-00002007.html","sediment"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["antibacterial/nocardamine.html","nocardamine"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":4,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/trimethoprim.html","trimethoprim"],["antiprotozoal/suramin.html","suramin"],["antiviral/tilorone.html","tilorone"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae (strain ATCC 42149 / RIB 40)","na":4,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["mountain-pass-envo-00000084.html","mountain pass"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":3,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":2,"nb":1,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":2,"nb":1,"a":[["feces-uberon-0001988.html","feces"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["unspecified/chir-090.html","CHIR-090"]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":1,"nb":1,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["antibacterial/clavulanic-acid.html","clavulanic acid"]]},{"id":"NCBITaxon:264951","l":"Paecilomyces variotii","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["antibacterial/m-viriditoxin.html","(M)-viriditoxin"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":1,"nb":1,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["antibacterial/lysocin-e.html","lysocin E"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":1,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]}]} \ No newline at end of file +{"a":"HabitatMech","b":"AntibioticMech","base":{"HabitatMech":"https://culturebotai.github.io/HabitatMech/pages/habitats/","AntibioticMech":"https://culturebotai.github.io/AntibioticMech/pages/"},"n":32,"by":{"NCBITaxon":32},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":36,"nb":30,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["bay-envo-00000032.html","bay"],["freshwater-biome-envo-00000873.html","freshwater biome"],["liquid-water-envo-00002006.html","liquid water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":40,"nb":13,"a":[["liquid-water-envo-00002006.html","liquid water"],["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["laboratory-facility-envo-01001406.html","laboratory facility"],["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["biofilm-bto-0002690.html","biofilm"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/bromodeoxytopsentin.html","bromodeoxytopsentin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":13,"nb":22,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["neutrophil-bto-0000130.html","neutrophil"],["rectum-bto-0001158.html","rectum"],["spleen-bto-0001281.html","spleen"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":28,"nb":12,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["liquid-water-envo-00002006.html","liquid water"],["watercourse-envo-00000029.html","watercourse"],["compost-envo-00002170.html","compost"],["hospital-envo-00002173.html","hospital"],["human-construction-envo-00000070.html","human construction"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":17,"nb":7,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["hospital-envo-00002173.html","hospital"],["egg-food-product-foodon-00001274.html","egg food product"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":8,"nb":6,"a":[["reservoir-envo-00000025.html","reservoir"],["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["secretion-bto-0002979.html","secretion"],["stomach-bto-0001307.html","stomach"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"NCBITaxon:1283","l":"Staphylococcus haemolyticus","na":9,"nb":5,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["biofilm-bto-0002690.html","biofilm"],["bone-element-uberon-0001474.html","bone element"],["conjunctiva-bto-0003415.html","conjunctiva"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/oxacillin.html","oxacillin"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":25,"nb":4,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-water-body-envo-00001999.html","marine water body"],["sea-water-envo-00002149.html","sea water"],["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/oxacillin.html","oxacillin"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":3,"nb":15,"a":[["bile-bto-0000121.html","bile"],["rectum-bto-0001158.html","rectum"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":10,"nb":3,"a":[["anther-bto-0000079.html","anther"],["epithelial-cell-bto-0000414.html","epithelial cell"],["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":3,"nb":5,"a":[["liquid-water-envo-00002006.html","liquid water"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/imipenem.html","imipenem"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":18,"nb":2,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["antibacterial/mupirocin.html","mupirocin"],["antifungal/2-4-diacetylphloroglucinol.html","2,4-diacetylphloroglucinol"]]},{"id":"NCBITaxon:1299","l":"Deinococcus radiodurans","na":7,"nb":2,"a":[["animal-house-envo-00003040.html","animal house"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["water-scum-envo-00005794.html","water scum"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"]],"b":[["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/linezolid.html","linezolid"]]},{"id":"NCBITaxon:1773","l":"Mycobacterium tuberculosis","na":5,"nb":2,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["posterior-lobe-bto-0000561.html","posterior lobe"],["sputum-bto-0001297.html","sputum"],["thorax-bto-0001368.html","thorax"],["thp-1-cell-bto-0001370.html","THP-1 cell"]],"b":[["antibacterial/sulfanilamide.html","sulfanilamide"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":3,"nb":2,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"],["unspecified/streptothricin-d.html","streptothricin D"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":14,"nb":1,"a":[["watercourse-envo-00000029.html","watercourse"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["leaf-po-0025034.html","leaf"]],"b":[["antibacterial/althiomycin.html","althiomycin"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":8,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":7,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"NCBITaxon:1496","l":"Clostridioides difficile","na":6,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["feces-uberon-0001988.html","feces"],["leukocyte-bto-0000751.html","leukocyte"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["intestine-environment-envo-2100002.html","intestine environment"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["antibacterial/fidaxomicin.html","fidaxomicin"]]},{"id":"NCBITaxon:229533","l":"Fusarium graminearum PH-1","na":1,"nb":5,"a":[["soil-envo-00001998.html","soil"]],"b":[["antifungal/carbendazim.html","carbendazim"],["antifungal/difenoconazole.html","difenoconazole"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/prochloraz.html","prochloraz"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":1,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"],["midgut-bto-0000863.html","midgut"],["paddy-field-envo-00000297.html","paddy field"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["antibacterial/althiomycin.html","althiomycin"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":4,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"],["human-construction-envo-00000070.html","human construction"],["sediment-envo-00002007.html","sediment"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["antibacterial/nocardamine.html","nocardamine"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":4,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/trimethoprim.html","trimethoprim"],["antiprotozoal/suramin.html","suramin"],["antiviral/tilorone.html","tilorone"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae RIB40","na":4,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["mountain-pass-envo-00000084.html","mountain pass"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":3,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":2,"nb":1,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":2,"nb":1,"a":[["feces-uberon-0001988.html","feces"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["unspecified/chir-090.html","CHIR-090"]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":1,"nb":1,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["antibacterial/clavulanic-acid.html","clavulanic acid"]]},{"id":"NCBITaxon:264951","l":"Paecilomyces variotii","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["antibacterial/m-viriditoxin.html","(M)-viriditoxin"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":1,"nb":1,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["antibacterial/lysocin-e.html","lysocin E"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis H37Rv","na":1,"nb":1,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/HabitatMech--CellStructureMech.json b/assets/fleet/edges/HabitatMech--CellStructureMech.json index a3db226..5f11689 100644 --- a/assets/fleet/edges/HabitatMech--CellStructureMech.json +++ b/assets/fleet/edges/HabitatMech--CellStructureMech.json @@ -1 +1 @@ -{"a":"HabitatMech","b":"CellStructureMech","base":{"HabitatMech":"https://culturebotai.github.io/HabitatMech/pages/habitats/","CellStructureMech":"https://culturebotai.github.io/CellStructureMech/pages/structures/"},"n":41,"by":{"NCBITaxon":41},"terms":[{"id":"NCBITaxon:2","l":"Bacteria","na":40,"nb":89,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["factory-envo-01000536.html","factory"],["adult-bto-0001043.html","adult"]],"b":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":36,"nb":31,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["bay-envo-00000032.html","bay"],["freshwater-biome-envo-00000873.html","freshwater biome"],["liquid-water-envo-00002006.html","liquid water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["appendage/curli.html","curli"],["appendage/p_pilus.html","P pilus"],["appendage/pilus.html","pilus"],["appendage/type_i_pilus.html","type I pilus"],["cytoskeleton/parm_filament.html","ParM filament"],["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]]},{"id":"NCBITaxon:1117","l":"Cyanobacteriota","na":11,"nb":13,"a":[["cecum-bto-0000166.html","cecum"],["colon-bto-0000269.html","colon"],["gut-bto-0000545.html","gut"],["head-bto-0000282.html","head"],["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"]],"b":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/photosystem_i.html","photosystem I"],["energy_complex/photosystem_ii.html","photosystem II"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":10,"nb":14,"a":[["anther-bto-0000079.html","anther"],["epithelial-cell-bto-0000414.html","epithelial cell"],["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["cytoskeleton/alfa_filament.html","AlfA filament"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":16,"nb":7,"a":[["fresh-water-envo-00002011.html","fresh water"],["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"]],"b":[["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/rc_lh1_pufx_core_complex.html","RC-LH1-PufX core complex"],["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":5,"nb":6,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"],["feces-uberon-0001988.html","feces"],["rectum-bto-0001158.html","rectum"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"],["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"],["secretion_system/type_vi_secretion_system_baseplate.html","type VI secretion system baseplate"],["secretion_system/type_vi_secretion_system_contractile_sheath.html","type VI secretion system contractile sheath"],["secretion_system/type_vi_secretion_system_hcp_tube.html","type VI secretion system Hcp tube"],["secretion_system/type_vi_secretion_system_vgrg_paar_spike_complex.html","type VI secretion system VgrG/PAAR spike complex"]]},{"id":"NCBITaxon:3055","l":"Chlamydomonas reinhardtii","na":4,"nb":58,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["large-river-biome-envo-00000887.html","large river biome"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["pond-water-envo-00002228.html","pond water"]],"b":[["appendage/ciliary_membrane.html","ciliary membrane"],["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"],["appendage/mastigoneme.html","mastigoneme"],["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_a_tubule_inner_sheath.html","axonemal A tubule inner sheath"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":7,"nb":4,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["liquid-water-envo-00002006.html","liquid water"],["crown-gall-bto-0000303.html","crown gall"],["finger-bto-0004669.html","finger"],["resting-cell-bto-0001170.html","resting cell"],["water-scum-envo-00005794.html","water scum"]],"b":[["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"],["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":28,"nb":3,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["liquid-water-envo-00002006.html","liquid water"],["watercourse-envo-00000029.html","watercourse"],["compost-envo-00002170.html","compost"],["hospital-envo-00002173.html","hospital"],["human-construction-envo-00000070.html","human construction"]],"b":[["appendage/type_iv_pilus.html","type IV pilus"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":10,"nb":3,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"]],"b":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":3,"nb":8,"a":[["city-envo-00000856.html","city"],["cold-environment-envo-01000309.html","cold environment"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["other/ap_5_adaptor_complex.html","AP-5 adaptor complex"],["ribonucleoprotein/u11_snrnp.html","U11 snRNP"],["ribonucleoprotein/u11_u12_snrnp.html","U11/U12 snRNP"],["ribonucleoprotein/u12_snrnp.html","U12 snRNP"],["ribonucleoprotein/u4atac_snrnp.html","U4atac snRNP"],["ribonucleoprotein/u4atac_u6atac_snrnp.html","U4atac/U6atac snRNP"]]},{"id":"NCBITaxon:28211","l":"Alphaproteobacteria","na":6,"nb":3,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"],["alimentary-canal-bto-0000058.html","alimentary canal"],["column-bto-0005692.html","column"],["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["spike-bto-0001278.html","spike"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]]},{"id":"NCBITaxon:1108","l":"Chloroflexus aurantiacus","na":3,"nb":3,"a":[["rhizosphere-envo-00005801.html","rhizosphere"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":40,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["laboratory-facility-envo-01001406.html","laboratory facility"],["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["biofilm-bto-0002690.html","biofilm"]],"b":[["envelope/periplasmic_space.html","periplasmic space"],["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":12,"nb":2,"a":[["hospital-envo-00002173.html","hospital"],["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["epithelial-cell-bto-0000414.html","epithelial cell"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["meninx-bto-0000144.html","meninx"]],"b":[["envelope/capsule.html","capsule"],["envelope/glycocalyx.html","glycocalyx"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":7,"nb":2,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["pseudostem-bto-0005992.html","pseudostem"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]]},{"id":"NCBITaxon:1236","l":"Gammaproteobacteria","na":6,"nb":2,"a":[["column-bto-0005692.html","column"],["hemolymph-bto-0000572.html","hemolymph"],["oil-secretion-bto-0005373.html","oil secretion"],["spike-bto-0001278.html","spike"],["urine-bto-0001419.html","urine"],["subtropical-envo-01000205.html","subtropical"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"],["secretion_system/type_iii_protein_secretion_system_complex.html","type III protein secretion system complex"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":4,"nb":2,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["cytoskeleton/tubz_filament.html","TubZ filament"],["inclusion/parasporal_crystal.html","parasporal crystal"]]},{"id":"NCBITaxon:203682","l":"Planctomycetota","na":2,"nb":2,"a":[["column-bto-0005692.html","column"],["crop-bto-0000301.html","crop"]],"b":[["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":15,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":8,"nb":1,"a":[["beach-envo-00000091.html","beach"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["sea-sand-envo-00002118.html","sea sand"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["microcompartment/bacterial_microcompartment.html","bacterial microcompartment"]]},{"id":"NCBITaxon:1773","l":"Mycobacterium tuberculosis","na":5,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["posterior-lobe-bto-0000561.html","posterior lobe"],["sputum-bto-0001297.html","sputum"],["thorax-bto-0001368.html","thorax"],["thp-1-cell-bto-0001370.html","THP-1 cell"]],"b":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":5,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"],["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]]},{"id":"NCBITaxon:1097","l":"Chlorobaculum tepidum","na":1,"nb":4,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":4,"nb":1,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["envelope/s_layer.html","S-layer"]]},{"id":"NCBITaxon:264462","l":"Bdellovibrio bacteriovorus HD100","na":4,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["appendage/type_iv_pilus.html","type IV pilus"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":1,"nb":3,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]]},{"id":"NCBITaxon:1224","l":"Pseudomonadota","na":1,"nb":3,"a":[["hemolymph-bto-0000572.html","hemolymph"]],"b":[["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["microcompartment/carboxysome.html","carboxysome"],["ribonucleoprotein/bacterial_degradosome.html","bacterial degradosome"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":1,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]]},{"id":"NCBITaxon:139","l":"Borreliella burgdorferi","na":2,"nb":1,"a":[["joint-bto-0001686.html","joint"],["needle-bto-0000917.html","needle"]],"b":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]]},{"id":"NCBITaxon:190650","l":"Caulobacter vibrioides (strain ATCC 19089 / CIP 103742 / CB 15)","na":2,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["cytoskeleton/cytoophidium.html","cytoophidium"]]},{"id":"NCBITaxon:555778","l":"","na":1,"nb":2,"a":[["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]]},{"id":"NCBITaxon:83334","l":"Escherichia coli O157:H7","na":1,"nb":2,"a":[["uterus-bto-0001424.html","uterus"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["spore/exosporium.html","exosporium"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":1,"a":[["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["other/cellulosome.html","cellulosome"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":1,"nb":1,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus ATCC 27405","na":1,"nb":1,"a":[["blood-plasma-bto-0000131.html","blood plasma"]],"b":[["other/cellulosome.html","cellulosome"]]},{"id":"NCBITaxon:208963","l":"Pseudomonas aeruginosa (strain UCBPP-PA14)","na":1,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["inclusion/r_body.html","R-body"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":1,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]]},{"id":"NCBITaxon:2830","l":"Haptophyta","na":1,"nb":1,"a":[["column-bto-0005692.html","column"]],"b":[["appendage/haptonema.html","haptonema"]]},{"id":"NCBITaxon:572477","l":"Allochromatium vinosum (strain ATCC 17899 / DSM 180 / NBRC 103801 / NCIMB 10441 / D)","na":1,"nb":1,"a":[["ditch-water-envo-00002158.html","ditch water"]],"b":[["inclusion/sulfur_globule.html","sulfur globule"]]}]} \ No newline at end of file +{"a":"HabitatMech","b":"CellStructureMech","base":{"HabitatMech":"https://culturebotai.github.io/HabitatMech/pages/habitats/","CellStructureMech":"https://culturebotai.github.io/CellStructureMech/pages/structures/"},"n":41,"by":{"NCBITaxon":41},"terms":[{"id":"NCBITaxon:2","l":"Bacteria","na":40,"nb":89,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["factory-envo-01000536.html","factory"],["adult-bto-0001043.html","adult"]],"b":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_filament.html","archaeal-type flagellum filament"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"],["appendage/attachment_organelle.html","attachment organelle"],["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":36,"nb":31,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["bay-envo-00000032.html","bay"],["freshwater-biome-envo-00000873.html","freshwater biome"],["liquid-water-envo-00002006.html","liquid water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["appendage/curli.html","curli"],["appendage/p_pilus.html","P pilus"],["appendage/pilus.html","pilus"],["appendage/type_i_pilus.html","type I pilus"],["cytoskeleton/parm_filament.html","ParM filament"],["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]]},{"id":"NCBITaxon:1117","l":"Cyanobacteriota","na":11,"nb":13,"a":[["cecum-bto-0000166.html","cecum"],["colon-bto-0000269.html","colon"],["gut-bto-0000545.html","gut"],["head-bto-0000282.html","head"],["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"]],"b":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/photosystem_i.html","photosystem I"],["energy_complex/photosystem_ii.html","photosystem II"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":10,"nb":14,"a":[["anther-bto-0000079.html","anther"],["epithelial-cell-bto-0000414.html","epithelial cell"],["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["cytoskeleton/alfa_filament.html","AlfA filament"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":16,"nb":7,"a":[["fresh-water-envo-00002011.html","fresh water"],["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"]],"b":[["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/rc_lh1_pufx_core_complex.html","RC-LH1-PufX core complex"],["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":5,"nb":6,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"],["feces-uberon-0001988.html","feces"],["rectum-bto-0001158.html","rectum"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"],["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"],["secretion_system/type_vi_secretion_system_baseplate.html","type VI secretion system baseplate"],["secretion_system/type_vi_secretion_system_contractile_sheath.html","type VI secretion system contractile sheath"],["secretion_system/type_vi_secretion_system_hcp_tube.html","type VI secretion system Hcp tube"],["secretion_system/type_vi_secretion_system_vgrg_paar_spike_complex.html","type VI secretion system VgrG/PAAR spike complex"]]},{"id":"NCBITaxon:3055","l":"Chlamydomonas reinhardtii","na":4,"nb":58,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["large-river-biome-envo-00000887.html","large river biome"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["pond-water-envo-00002228.html","pond water"]],"b":[["appendage/ciliary_membrane.html","ciliary membrane"],["appendage/ciliary_transition_zone.html","ciliary transition zone"],["appendage/cilium.html","cilium"],["appendage/mastigoneme.html","mastigoneme"],["cytoskeleton/a_axonemal_microtubule.html","A axonemal microtubule"],["cytoskeleton/axonemal_a_tubule_inner_sheath.html","axonemal A tubule inner sheath"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":7,"nb":4,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["liquid-water-envo-00002006.html","liquid water"],["crown-gall-bto-0000303.html","crown gall"],["finger-bto-0004669.html","finger"],["resting-cell-bto-0001170.html","resting cell"],["water-scum-envo-00005794.html","water scum"]],"b":[["membrane_organelle/acidocalcisome.html","acidocalcisome"],["membrane_organelle/acidocalcisome_lumen.html","acidocalcisome lumen"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"],["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":28,"nb":3,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["liquid-water-envo-00002006.html","liquid water"],["watercourse-envo-00000029.html","watercourse"],["compost-envo-00002170.html","compost"],["hospital-envo-00002173.html","hospital"],["human-construction-envo-00000070.html","human construction"]],"b":[["appendage/type_iv_pilus.html","type IV pilus"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":10,"nb":3,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"]],"b":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":3,"nb":8,"a":[["city-envo-00000856.html","city"],["cold-environment-envo-01000309.html","cold environment"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["other/ap_5_adaptor_complex.html","AP-5 adaptor complex"],["ribonucleoprotein/u11_snrnp.html","U11 snRNP"],["ribonucleoprotein/u11_u12_snrnp.html","U11/U12 snRNP"],["ribonucleoprotein/u12_snrnp.html","U12 snRNP"],["ribonucleoprotein/u4atac_snrnp.html","U4atac snRNP"],["ribonucleoprotein/u4atac_u6atac_snrnp.html","U4atac/U6atac snRNP"]]},{"id":"NCBITaxon:28211","l":"Alphaproteobacteria","na":6,"nb":3,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"],["alimentary-canal-bto-0000058.html","alimentary canal"],["column-bto-0005692.html","column"],["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["spike-bto-0001278.html","spike"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]]},{"id":"NCBITaxon:1108","l":"Chloroflexus aurantiacus","na":3,"nb":3,"a":[["rhizosphere-envo-00005801.html","rhizosphere"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":40,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["laboratory-facility-envo-01001406.html","laboratory facility"],["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["biofilm-bto-0002690.html","biofilm"]],"b":[["envelope/periplasmic_space.html","periplasmic space"],["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":12,"nb":2,"a":[["hospital-envo-00002173.html","hospital"],["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["epithelial-cell-bto-0000414.html","epithelial cell"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["meninx-bto-0000144.html","meninx"]],"b":[["envelope/capsule.html","capsule"],["envelope/glycocalyx.html","glycocalyx"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":7,"nb":2,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["pseudostem-bto-0005992.html","pseudostem"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]]},{"id":"NCBITaxon:1236","l":"Gammaproteobacteria","na":6,"nb":2,"a":[["column-bto-0005692.html","column"],["hemolymph-bto-0000572.html","hemolymph"],["oil-secretion-bto-0005373.html","oil secretion"],["spike-bto-0001278.html","spike"],["urine-bto-0001419.html","urine"],["subtropical-envo-01000205.html","subtropical"]],"b":[["membrane_organelle/magnetosome.html","magnetosome"],["secretion_system/type_iii_protein_secretion_system_complex.html","type III protein secretion system complex"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":4,"nb":2,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["cytoskeleton/tubz_filament.html","TubZ filament"],["inclusion/parasporal_crystal.html","parasporal crystal"]]},{"id":"NCBITaxon:203682","l":"Planctomycetota","na":2,"nb":2,"a":[["column-bto-0005692.html","column"],["crop-bto-0000301.html","crop"]],"b":[["membrane_organelle/anammoxosome.html","anammoxosome"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":15,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":8,"nb":1,"a":[["beach-envo-00000091.html","beach"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["sea-sand-envo-00002118.html","sea sand"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["microcompartment/bacterial_microcompartment.html","bacterial microcompartment"]]},{"id":"NCBITaxon:1773","l":"Mycobacterium tuberculosis","na":5,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["posterior-lobe-bto-0000561.html","posterior lobe"],["sputum-bto-0001297.html","sputum"],["thorax-bto-0001368.html","thorax"],["thp-1-cell-bto-0001370.html","THP-1 cell"]],"b":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis H37Rv","na":1,"nb":5,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"],["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]]},{"id":"NCBITaxon:1097","l":"Chlorobaculum tepidum","na":1,"nb":4,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":4,"nb":1,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["envelope/s_layer.html","S-layer"]]},{"id":"NCBITaxon:264462","l":"Bdellovibrio bacteriovorus HD100","na":4,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["appendage/type_iv_pilus.html","type IV pilus"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. PCC 7120 = FACHB-418","na":1,"nb":3,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]]},{"id":"NCBITaxon:1224","l":"Pseudomonadota","na":1,"nb":3,"a":[["hemolymph-bto-0000572.html","hemolymph"]],"b":[["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["microcompartment/carboxysome.html","carboxysome"],["ribonucleoprotein/bacterial_degradosome.html","bacterial degradosome"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":1,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]]},{"id":"NCBITaxon:139","l":"Borreliella burgdorferi","na":2,"nb":1,"a":[["joint-bto-0001686.html","joint"],["needle-bto-0000917.html","needle"]],"b":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]]},{"id":"NCBITaxon:190650","l":"Caulobacter vibrioides CB15","na":2,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["cytoskeleton/cytoophidium.html","cytoophidium"]]},{"id":"NCBITaxon:555778","l":"Halothiobacillus neapolitanus c2","na":1,"nb":2,"a":[["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]]},{"id":"NCBITaxon:83334","l":"Escherichia coli O157:H7","na":1,"nb":2,"a":[["uterus-bto-0001424.html","uterus"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["spore/exosporium.html","exosporium"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":1,"a":[["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["other/cellulosome.html","cellulosome"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":1,"nb":1,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus ATCC 27405","na":1,"nb":1,"a":[["blood-plasma-bto-0000131.html","blood plasma"]],"b":[["other/cellulosome.html","cellulosome"]]},{"id":"NCBITaxon:208963","l":"Pseudomonas aeruginosa UCBPP-PA14","na":1,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["inclusion/r_body.html","R-body"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":1,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]]},{"id":"NCBITaxon:2830","l":"Haptophyta","na":1,"nb":1,"a":[["column-bto-0005692.html","column"]],"b":[["appendage/haptonema.html","haptonema"]]},{"id":"NCBITaxon:572477","l":"Allochromatium vinosum DSM 180","na":1,"nb":1,"a":[["ditch-water-envo-00002158.html","ditch water"]],"b":[["inclusion/sulfur_globule.html","sulfur globule"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/HabitatMech--CommunityMech.json b/assets/fleet/edges/HabitatMech--CommunityMech.json index 9621ff9..2075297 100644 --- a/assets/fleet/edges/HabitatMech--CommunityMech.json +++ b/assets/fleet/edges/HabitatMech--CommunityMech.json @@ -1 +1 @@ -{"a":"HabitatMech","b":"CommunityMech","base":{"HabitatMech":"https://culturebotai.github.io/HabitatMech/pages/habitats/","CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/"},"n":313,"by":{"NCBITaxon":265,"ENVO":42,"UBERON":4,"CHEBI":2},"terms":[{"id":"NCBITaxon:2","l":"Bacteria","na":40,"nb":56,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["factory-envo-01000536.html","factory"],["adult-bto-0001043.html","adult"]],"b":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"]]},{"id":"ENVO:00001998","l":"soil","na":105,"nb":17,"a":[["soil-habitatmech-gold-fc35741739.html","Soil"],["wetland-area-envo-00000043.html","wetland area"],["soil-habitatmech-gold-b1d707114a.html","Soil"],["soil-habitatmech-gold-e9844fc187.html","Soil"],["soil-habitatmech-gold-3e86b794ef.html","Soil"],["soil-habitatmech-gold-067f7f5e2a.html","Soil"]],"b":[["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]]},{"id":"ENVO:01001001","l":"plant-associated environment","na":21,"nb":16,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["bryophytes-habitatmech-gold-35beb98884.html","Bryophytes"],["endosphere-habitatmech-gold-bfe3e11951.html","Endosphere"],["green-alga-associated-environment-habitatmech-gold-184cc9e802.html","green-alga-associated environment"],["mixed-parts-habitatmech-gold-4dd29bdcf8.html","Mixed parts"],["peat-moss-associated-environment-habitatmech-gold-7f57b82cab.html","peat moss-associated environment"]],"b":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]]},{"id":"NCBITaxon:1386","l":"Bacillus","na":19,"nb":16,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["crop-bto-0000301.html","crop"],["dorsum-bto-0001713.html","dorsum"],["hand-bto-0004668.html","hand"],["head-bto-0000282.html","head"],["juvenile-bto-0002168.html","juvenile"]],"b":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":36,"nb":14,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["bay-envo-00000032.html","bay"],["freshwater-biome-envo-00000873.html","freshwater biome"],["liquid-water-envo-00002006.html","liquid water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]]},{"id":"ENVO:00002123","l":"bioreactor","na":31,"nb":13,"a":[["aerobic-bioreactor-envo-00002126.html","aerobic bioreactor"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["air-scrubber-biofilm-habitatmech-gold-7f436f8aff.html","air scrubber biofilm"],["biofilter-envo-00002152.html","biofilter"],["bioreactor-envo-00002123.html","bioreactor"],["bioreactor-habitatmech-gold-c4bf3d0c83.html","Bioreactor"]],"b":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":27,"nb":11,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["watercourse-envo-00000029.html","watercourse"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["egg-food-product-foodon-00001274.html","egg food product"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]]},{"id":"ENVO:00002007","l":"sediment","na":103,"nb":10,"a":[["marine-sediment-envo-03000033.html","marine sediment"],["sediment-habitatmech-gold-6bc70f0406.html","Sediment"],["sediment-habitatmech-gold-33b265d89f.html","Sediment"],["sediment-habitatmech-gold-7db7617ea4.html","Sediment"],["sediment-habitatmech-gold-2f9eb7ed2f.html","Sediment"],["sediment-habitatmech-gold-2ff751e0a6.html","Sediment"]],"b":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]]},{"id":"NCBITaxon:286","l":"Pseudomonas","na":10,"nb":18,"a":[["heart-bto-0000562.html","heart"],["juvenile-bto-0002168.html","juvenile"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"],["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":10,"nb":15,"a":[["anther-bto-0000079.html","anther"],["epithelial-cell-bto-0000414.html","epithelial cell"],["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":28,"nb":9,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["liquid-water-envo-00002006.html","liquid water"],["watercourse-envo-00000029.html","watercourse"],["compost-envo-00002170.html","compost"],["hospital-envo-00002173.html","hospital"],["human-construction-envo-00000070.html","human construction"]],"b":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":11,"nb":9,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["resting-cell-bto-0001170.html","resting cell"],["seedling-bto-0001228.html","seedling"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":27,"nb":7,"a":[["small-river-biome-envo-00000890.html","small river biome"],["factory-envo-01000536.html","factory"],["organic-waste-material-envo-00002873.html","organic waste material"],["leaf-po-0025034.html","leaf"],["milk-uberon-0001913.html","milk"],["rhizosphere-envo-00005801.html","rhizosphere"]],"b":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]]},{"id":"ENVO:00002116","l":"contaminated soil","na":7,"nb":15,"a":[["hydrocarbon-habitatmech-gold-3c68e33a11.html","Hydrocarbon"],["persistent-organic-pollutant-bioremediation-material-habitatmech-gold-1a78606807.html","persistent organic pollutant bioremediation material"],["contaminated-soil-envo-00002116.html","contaminated soil"],["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"],["oil-contaminated-soil-envo-00002875.html","oil contaminated soil"],["pesticide-habitatmech-gold-8ebd2ee3c5.html","Pesticide"]],"b":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"]]},{"id":"NCBITaxon:40324","l":"Stenotrophomonas maltophilia","na":15,"nb":7,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["catheter-device-ncit-c50344.html","Catheter Device"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["seedling-bto-0001228.html","seedling"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]]},{"id":"ENVO:00002043","l":"wastewater treatment plant","na":9,"nb":7,"a":[["a-o-treatment-system-habitatmech-gold-7c91485eb8.html","A/O treatment system"],["activated-sludge-habitatmech-gold-032b7dd40b.html","Activated sludge"],["aerobic-digester-habitatmech-gold-03fc563fae.html","Aerobic digester"],["anaerobic-digester-habitatmech-gold-3f58fb59be.html","Anaerobic digester"],["effluent-habitatmech-gold-827b5dbbef.html","Effluent"],["influent-habitatmech-gold-2bf3ab7d2f.html","Influent"]],"b":[["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Rhizorhabdus_Cupriavidus_BDE47_Degradation_SynCom.html","Rhizorhabdus-Cupriavidus BDE-47 Degradation SynCom"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":19,"nb":6,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["saline-water-body-envo-01001319.html","saline water body"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":18,"nb":6,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]]},{"id":"UBERON:0000160","l":"intestine","na":11,"nb":6,"a":[["intestine-habitatmech-gold-f3f5ed6008.html","Intestine"],["intestine-habitatmech-gold-70ccbcfe44.html","Intestine"],["intestine-habitatmech-gold-8a75a65fc5.html","Intestine"],["intestine-habitatmech-gold-0171231ef5.html","Intestine"],["intestine-habitatmech-gold-523d63f6f3.html","Intestine"],["intestine-habitatmech-gold-394283d34e.html","Intestine"]],"b":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["OMM12_Gnotobiotic_Mouse_Gut_Community.html","OMM12 Gnotobiotic Mouse Gut Community"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]]},{"id":"NCBITaxon:1578","l":"Lactobacillus","na":20,"nb":5,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["blood-bto-0000089.html","blood"],["brain-bto-0000142.html","brain"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["hand-bto-0004668.html","hand"]],"b":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"],["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]]},{"id":"ENVO:00002001","l":"waste water","na":19,"nb":5,"a":[["activated-sludge-habitatmech-gold-0d353772af.html","Activated Sludge"],["anaerobic-digestor-habitatmech-gold-ed87e682a9.html","Anaerobic digestor"],["industrial-wastewater-envo-01000964.html","industrial wastewater"],["municipal-landfill-habitatmech-gold-0f40aa60ce.html","Municipal landfill"],["nutrient-removal-habitatmech-gold-a18a70ae30.html","Nutrient removal"],["reclaimed-recycled-wastewater-habitatmech-gold-dc4dba910a.html","Reclaimed/Recycled wastewater"]],"b":[["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Staged_Cattle_Manure_Ensifer_Bacillus_SynCom.html","Staged Ensifer-Bacillus Cattle-Manure Wastewater SynCom"]]},{"id":"ENVO:00000043","l":"wetland area","na":14,"nb":5,"a":[["bog-habitatmech-gold-42a3b7b2d3.html","Bog"],["fen-habitatmech-gold-9de4fdaa2a.html","Fen"],["marsh-envo-00000035.html","marsh"],["microbial-mat-habitatmech-gold-e066163fc8.html","Microbial mat"],["sediment-habitatmech-gold-7db7617ea4.html","Sediment"],["sediment-habitatmech-gold-98d936714f.html","Sediment"]],"b":[["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Wetland_Oxygen_Sulfate_GHG_Microcosm_Community.html","Wetland Oxygen-Sulfate Greenhouse Gas Microcosm Community"]]},{"id":"ENVO:01001004","l":"groundwater","na":5,"nb":11,"a":[["contaminated-habitatmech-gold-66f93e3a62.html","Contaminated"],["contaminated-habitatmech-gold-33f4720550.html","Contaminated"],["groundwater-habitatmech-gold-22a80cbd14.html","Groundwater"],["groundwater-habitatmech-gold-7f8e268653.html","Groundwater"],["groundwater-envo-01001004.html","groundwater"]],"b":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":33,"nb":4,"a":[["biofilm-envo-00002034.html","biofilm"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["pond-water-envo-00002228.html","pond water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["water-body-envo-00000063.html","water body"]],"b":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"],["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]]},{"id":"NCBITaxon:1485","l":"Clostridium","na":26,"nb":4,"a":[["biofilm-envo-00002034.html","biofilm"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["alimentary-canal-bto-0000058.html","alimentary canal"],["colon-bto-0000269.html","colon"]],"b":[["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["QY2S1_Dehalogenimonas_BFR_Bioremediation_Consortium.html","QY2-S1 Dehalogenimonas-Rich Brominated-Flame-Retardant Consortium"],["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":19,"nb":4,"a":[["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["bone-element-uberon-0001474.html","bone element"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]]},{"id":"NCBITaxon:13687","l":"Sphingomonas","na":14,"nb":4,"a":[["crop-bto-0000301.html","crop"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["ileum-bto-0000620.html","ileum"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"]],"b":[["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"],["Wheat_Consortium_C6.html","Wheat Synthetic Consortium C6"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]]},{"id":"NCBITaxon:1590","l":"Lactiplantibacillus plantarum","na":14,"nb":4,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["food-fermented-foodon-00001258.html","food (fermented)"],["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"],["breast-bto-0000149.html","breast"],["colonic-epithelium-bto-0001709.html","colonic epithelium"],["epithelial-cell-bto-0000414.html","epithelial cell"]],"b":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Pichia_Lactiplantibacillus_CCMA_Plant_Beverage_Coculture.html","Pichia-Lactiplantibacillus CCMA Plant Beverage Coculture"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":11,"nb":4,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["fermentation-starter-envo-03600040.html","fermentation starter"],["fruit-bto-0000486.html","fruit"],["mammary-epithelial-cell-bto-0004300.html","mammary epithelial cell"],["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]]},{"id":"NCBITaxon:1827","l":"Rhodococcus","na":4,"nb":8,"a":[["nectar-bto-0000537.html","nectar"],["pitcher-bto-0001069.html","pitcher"],["small-intestine-bto-0000651.html","small intestine"],["stem-bto-0001300.html","stem"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]]},{"id":"NCBITaxon:33038","l":"Mediterraneibacter gnavus","na":8,"nb":4,"a":[["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["juvenile-bto-0002168.html","juvenile"],["animal-litter-envo-00002191.html","animal litter"]],"b":[["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Clostridial_isoDCA_Mini_Consortium.html","Clostridial isoDCA Mini Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]]},{"id":"NCBITaxon:374","l":"Bradyrhizobium","na":4,"nb":5,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"],["wood-bto-0005516.html","wood"]],"b":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"],["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]]},{"id":"NCBITaxon:37919","l":"Rhodococcus opacus","na":5,"nb":4,"a":[["watercourse-envo-00000029.html","watercourse"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"],["sludge-envo-00002044.html","sludge"],["water-scum-envo-00005794.html","water scum"]],"b":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"],["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":4,"nb":4,"a":[["stream-envo-00000023.html","stream"],["biome-envo-00000428.html","biome"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]]},{"id":"ENVO:00002170","l":"compost","na":20,"nb":3,"a":[["compost-envo-00002170.html","compost"],["composting-habitatmech-gold-143ceb8669.html","Composting"],["composting-habitatmech-gold-edeecbabed.html","Composting"],["composting-habitatmech-gold-5948923b46.html","Composting"],["composting-habitatmech-gold-70db4820d1.html","Composting"],["composting-habitatmech-gold-cdbbd857c8.html","Composting"]],"b":[["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":17,"nb":3,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["fruit-bto-0000486.html","fruit"],["leaf-po-0025034.html","leaf"],["rhizosphere-envo-00005801.html","rhizosphere"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]]},{"id":"ENVO:00002046","l":"activated sludge","na":16,"nb":3,"a":[["activated-sludge-habitatmech-gold-6ba6dd1c82.html","Activated sludge"],["activated-sludge-habitatmech-gold-adf7e16a3a.html","Activated sludge"],["activated-sludge-habitatmech-gold-25b680d9bc.html","Activated sludge"],["activated-sludge-habitatmech-gold-dab267c443.html","Activated sludge"],["activated-sludge-habitatmech-gold-43c33f3ecc.html","Activated sludge"],["activated-sludge-habitatmech-gold-f459151394.html","Activated sludge"]],"b":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"]]},{"id":"NCBITaxon:1667","l":"Arthrobacter sp.","na":9,"nb":3,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["leaf-po-0025034.html","leaf"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":8,"nb":3,"a":[["reservoir-envo-00000025.html","reservoir"],["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["secretion-bto-0002979.html","secretion"],["stomach-bto-0001307.html","stomach"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":8,"nb":3,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["lab-synthesis-habitatmech-bacdive-0e92e77cd4.html","Lab-synthesis"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["oil-spill-envo-00002061.html","oil spill"],["temperate-envo-01000206.html","temperate"]],"b":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":5,"nb":3,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["pseudostem-bto-0005992.html","pseudostem"],["seedling-bto-0001228.html","seedling"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["soil-envo-00001998.html","soil"]],"b":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]]},{"id":"ENVO:00000044","l":"peatland","na":4,"nb":3,"a":[["bog-habitatmech-gold-42a3b7b2d3.html","Bog"],["blanket-bog-envo-00000511.html","blanket bog"],["fen-envo-00000232.html","fen"],["peatland-envo-00000044.html","peatland"]],"b":[["SPRUCE_Peatland_Methane_Cycling_Community.html","SPRUCE Peatland Methane-Cycling Microbial Community"],["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":3,"nb":4,"a":[["milk-uberon-0001913.html","milk"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]]},{"id":"NCBITaxon:1534","l":"Clostridium kluyveri","na":3,"nb":4,"a":[["reservoir-envo-00000025.html","reservoir"],["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"]],"b":[["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]]},{"id":"NCBITaxon:237","l":"Flavobacterium","na":3,"nb":4,"a":[["column-bto-0005692.html","column"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]]},{"id":"NCBITaxon:3055","l":"Chlamydomonas reinhardtii","na":4,"nb":3,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["large-river-biome-envo-00000887.html","large river biome"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["pond-water-envo-00002228.html","pond water"]],"b":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]]},{"id":"NCBITaxon:32008","l":"Burkholderia","na":3,"nb":4,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["midgut-bto-0000863.html","midgut"]],"b":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]]},{"id":"NCBITaxon:216816","l":"Bifidobacterium longum","na":3,"nb":3,"a":[["coral-reef-envo-00000150.html","coral reef"],["egg-food-product-foodon-00001274.html","egg food product"],["juvenile-bto-0002168.html","juvenile"]],"b":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]]},{"id":"NCBITaxon:239935","l":"Akkermansia muciniphila","na":3,"nb":3,"a":[["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["secretion-bto-0002979.html","secretion"]],"b":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":3,"nb":3,"a":[["liquid-water-envo-00002006.html","liquid water"],["sludge-envo-00002044.html","sludge"],["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]]},{"id":"ENVO:01001405","l":"laboratory environment","na":2,"nb":198,"a":[["genetic-cross-habitatmech-gold-ba9317369a.html","Genetic cross"],["laboratory-environment-envo-01001405.html","laboratory environment"]],"b":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]]},{"id":"ENVO:00005801","l":"rhizosphere","na":2,"nb":62,"a":[["rhizosphere-envo-00005801.html","rhizosphere"],["soil-habitatmech-gold-067f7f5e2a.html","Soil"]],"b":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":40,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["laboratory-facility-envo-01001406.html","laboratory facility"],["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["biofilm-bto-0002690.html","biofilm"]],"b":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]]},{"id":"ENVO:00002124","l":"anaerobic bioreactor","na":20,"nb":2,"a":[["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["anaerobic-sludge-envo-00002129.html","anaerobic sludge"],["anaerobic-sludge-blanket-reactor-envo-00002213.html","anaerobic sludge blanket reactor"],["biofilm-habitatmech-gold-6c12d05420.html","Biofilm"],["biogas-envo-01000556.html","biogas"],["biomass-habitatmech-gold-6dd85a8177.html","Biomass"]],"b":[["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Shewanella_Pseudomonas_Fe0_Electrosyntrophic_Denitrifying_Consortium.html","Shewanella oneidensis + Pseudomonas aeruginosa Fe0-dependent Electro-syntrophic Denitrifying Consortium"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":14,"nb":2,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["compost-envo-00002170.html","compost"],["organic-waste-material-envo-00002873.html","organic waste material"],["larva-bto-0000707.html","larva"],["rhizosphere-envo-00005801.html","rhizosphere"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]]},{"id":"ENVO:00000051","l":"hot spring","na":13,"nb":2,"a":[["acid-lake-habitatmech-gold-21e53e7981.html","Acid lake"],["geothermal-pool-hot-lake-habitatmech-gold-d2132d09ae.html","Geothermal pool/Hot lake"],["hot-42-90c-habitatmech-gold-c085f6141a.html","Hot (42-90C)"],["hot-spring-envo-00000051.html","hot spring"],["microbial-mats-habitatmech-gold-a0372e2d63.html","Microbial mats"],["near-boiling-90c-habitatmech-gold-8b53067bc5.html","Near-boiling (>90C)"]],"b":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]]},{"id":"UBERON:0001007","l":"digestive system","na":13,"nb":2,"a":[["digestive-system-habitatmech-gold-26a84185d3.html","Digestive system"],["digestive-system-habitatmech-gold-6eecdf150d.html","Digestive system"],["digestive-system-habitatmech-gold-d7cff86ce8.html","Digestive system"],["digestive-system-habitatmech-gold-8a68d0f6f5.html","Digestive system"],["digestive-system-habitatmech-gold-c1d7082e4b.html","Digestive system"],["digestive-system-habitatmech-gold-f6720bccf0.html","Digestive system"]],"b":[["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]]},{"id":"NCBITaxon:1117","l":"Cyanobacteriota","na":11,"nb":2,"a":[["cecum-bto-0000166.html","cecum"],["colon-bto-0000269.html","colon"],["gut-bto-0000545.html","gut"],["head-bto-0000282.html","head"],["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"]],"b":[["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]]},{"id":"ENVO:00001997","l":"acid mine drainage","na":2,"nb":9,"a":[["acid-mine-drainage-envo-00001997.html","acid mine drainage"],["sediment-habitatmech-gold-7e27a52150.html","Sediment"]],"b":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":9,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["mud-envo-01000001.html","mud"]],"b":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":8,"nb":2,"a":[["groundwater-envo-01001004.html","groundwater"],["bioreactor-envo-00002123.html","bioreactor"],["river-envo-00000022.html","river"],["freshwater-environment-envo-01000306.html","freshwater environment"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]]},{"id":"ENVO:03600040","l":"fermentation starter","na":2,"nb":7,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["active-sourdough-starter-habitatmech-gold-3153798c1a.html","active sourdough starter"]],"b":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Sichuan_Shai_Vinegar_Yeast_Flavor_SynCom.html","Sichuan Shai Vinegar Yeast Flavor SynCom"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"],["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]]},{"id":"NCBITaxon:28216","l":"Betaproteobacteria","na":7,"nb":2,"a":[["column-bto-0005692.html","column"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["spike-bto-0001278.html","spike"]],"b":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":7,"nb":2,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["liquid-water-envo-00002006.html","liquid water"],["crown-gall-bto-0000303.html","crown gall"],["finger-bto-0004669.html","finger"],["resting-cell-bto-0001170.html","resting cell"],["water-scum-envo-00005794.html","water scum"]],"b":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]]},{"id":"NCBITaxon:1236","l":"Gammaproteobacteria","na":6,"nb":2,"a":[["column-bto-0005692.html","column"],["hemolymph-bto-0000572.html","hemolymph"],["oil-secretion-bto-0005373.html","oil secretion"],["spike-bto-0001278.html","spike"],["urine-bto-0001419.html","urine"],["subtropical-envo-01000205.html","subtropical"]],"b":[["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]]},{"id":"NCBITaxon:1305","l":"Streptococcus sanguinis","na":6,"nb":2,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["throat-bto-0000828.html","throat"],["geographic-feature-envo-00000000.html","geographic feature"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]]},{"id":"NCBITaxon:253","l":"Chryseobacterium indologenes","na":6,"nb":2,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["seedling-bto-0001228.html","seedling"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["tropical-envo-01000204.html","tropical"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"]]},{"id":"NCBITaxon:28211","l":"Alphaproteobacteria","na":6,"nb":2,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"],["alimentary-canal-bto-0000058.html","alimentary canal"],["column-bto-0005692.html","column"],["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["spike-bto-0001278.html","spike"]],"b":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]]},{"id":"ENVO:00002003","l":"fecal material","na":2,"nb":5,"a":[["frass-habitatmech-gold-319c3f351e.html","Frass"],["frass-habitatmech-gold-67f3cde908.html","Frass"]],"b":[["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"]]},{"id":"NCBITaxon:145262","l":"Methanothermobacter thermautotrophicus","na":5,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["intestine-environment-envo-2100002.html","intestine environment"],["sludge-envo-00002044.html","sludge"]],"b":[["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]]},{"id":"NCBITaxon:1883","l":"Streptomyces","na":2,"nb":5,"a":[["crop-bto-0000301.html","crop"],["lab-synthesis-habitatmech-bacdive-0e92e77cd4.html","Lab-synthesis"]],"b":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["Wheat_Consortium_C6.html","Wheat Synthetic Consortium C6"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]]},{"id":"NCBITaxon:1335","l":"Streptococcus equinus","na":4,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["stomach-bto-0001307.html","stomach"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":4,"nb":2,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["carcass-envo-00002033.html","carcass"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["sludge-envo-00002044.html","sludge"]],"b":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":4,"nb":2,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]]},{"id":"NCBITaxon:165695","l":"Sphingobium","na":2,"nb":4,"a":[["juvenile-bto-0002168.html","juvenile"],["leaf-bto-0000713.html","leaf"]],"b":[["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["Sphingobium_Nitrososphaera_Phenanthrene_Carbon_SynCom.html","Sphingobium-Nitrososphaera Phenanthrene-Carbon SynCom"],["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]]},{"id":"NCBITaxon:1678","l":"Bifidobacterium","na":2,"nb":4,"a":[["ileum-bto-0000620.html","ileum"],["juvenile-bto-0002168.html","juvenile"]],"b":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"NCBITaxon:33882","l":"Microbacterium","na":4,"nb":2,"a":[["leaf-bto-0000713.html","leaf"],["pitcher-bto-0001069.html","pitcher"],["small-intestine-bto-0000651.html","small intestine"],["stem-bto-0001300.html","stem"]],"b":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]]},{"id":"NCBITaxon:816","l":"Bacteroides","na":2,"nb":4,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["colon-bto-0000269.html","colon"]],"b":[["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":2,"nb":4,"a":[["hospital-envo-00002173.html","hospital"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]]},{"id":"NCBITaxon:105841","l":"Anaerostipes caccae","na":3,"nb":2,"a":[["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["emulsion-envo-00010506.html","emulsion"],["organic-feature-envo-01000159.html","organic feature"]],"b":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]]},{"id":"NCBITaxon:1492","l":"Clostridium butyricum","na":3,"nb":2,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["intestine-environment-envo-2100002.html","intestine environment"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":2,"nb":3,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]]},{"id":"NCBITaxon:203682","l":"Planctomycetota","na":2,"nb":3,"a":[["column-bto-0005692.html","column"],["crop-bto-0000301.html","crop"]],"b":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"]]},{"id":"NCBITaxon:2208","l":"Methanosarcina barkeri","na":2,"nb":3,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["sludge-envo-00002044.html","sludge"]],"b":[["DVM_Triculture.html","DVM Tri-culture"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]]},{"id":"NCBITaxon:28108","l":"Alteromonas macleodii","na":3,"nb":2,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["marine-water-body-envo-00001999.html","marine water body"],["sandstone-envo-00002055.html","sandstone"]],"b":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]]},{"id":"NCBITaxon:29466","l":"Veillonella parvula","na":3,"nb":2,"a":[["dental-plaque-bto-0000338.html","dental plaque"],["juvenile-bto-0002168.html","juvenile"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]]},{"id":"NCBITaxon:33059","l":"Acidithiobacillus caldus","na":3,"nb":2,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["paddy-field-envo-00000297.html","paddy field"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]]},{"id":"NCBITaxon:33959","l":"Lactobacillus johnsonii","na":3,"nb":2,"a":[["animal-litter-envo-00002191.html","animal litter"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":3,"nb":2,"a":[["bile-bto-0000121.html","bile"],["rectum-bto-0001158.html","rectum"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]]},{"id":"NCBITaxon:528","l":"Ochrobactrum","na":2,"nb":3,"a":[["pitcher-bto-0001069.html","pitcher"],["small-intestine-bto-0000651.html","small intestine"]],"b":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"]]},{"id":"NCBITaxon:853","l":"Faecalibacterium prausnitzii","na":2,"nb":3,"a":[["coral-reef-envo-00000150.html","coral reef"],["tropical-envo-01000204.html","tropical"]],"b":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"]]},{"id":"NCBITaxon:110500","l":"Pelotomaculum thermopropionicum","na":2,"nb":2,"a":[["river-envo-00000022.html","river"],["subpolar-coniferous-forest-biome-envo-01000250.html","subpolar coniferous forest biome"]],"b":[["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"]]},{"id":"NCBITaxon:1234","l":"Nitrospira","na":2,"nb":2,"a":[["crop-bto-0000301.html","crop"],["seedling-bto-0001228.html","seedling"]],"b":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"]]},{"id":"NCBITaxon:244366","l":"Klebsiella variicola","na":2,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]]},{"id":"NCBITaxon:28034","l":"Sulfobacillus thermosulfidooxidans","na":2,"nb":2,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]]},{"id":"NCBITaxon:357809","l":"Lachnoclostridium phytofermentans ISDg","na":2,"nb":2,"a":[["reservoir-envo-00000025.html","reservoir"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":2,"nb":2,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]]},{"id":"NCBITaxon:39488","l":"Anaerobutyricum hallii","na":2,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"],["harbour-envo-00000463.html","harbour"]],"b":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]]},{"id":"NCBITaxon:4577","l":"Zea mays","na":2,"nb":2,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"]]},{"id":"NCBITaxon:84567","l":"Pedobacter","na":2,"nb":2,"a":[["air-envo-00002005.html","air"],["glacier-envo-00000133.html","glacier"]],"b":[["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]]},{"id":"CHEBI:16183","l":"methane","na":1,"nb":62,"a":[["methane-bioremediation-material-habitatmech-gold-d510166905.html","methane bioremediation material"]],"b":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"]]},{"id":"ENVO:01001002","l":"animal-associated environment","na":47,"nb":1,"a":[["amphibian-associated-environment-habitatmech-gold-0cd585a031.html","amphibian-associated environment"],["annelid-associated-environment-habitatmech-gold-6e10201167.html","annelid-associated environment"],["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["chelicerate-associated-environment-habitatmech-gold-44a2cbbd60.html","chelicerate-associated environment"],["crustacean-associated-environment-habitatmech-gold-2959225799.html","crustacean-associated environment"],["insect-associated-environment-habitatmech-gold-dba2a83b95.html","insect-associated environment"]],"b":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":25,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-water-body-envo-00001999.html","marine water body"],["sea-water-envo-00002149.html","sea water"],["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]]},{"id":"NCBITaxon:1279","l":"Staphylococcus","na":23,"nb":1,"a":[["adult-bto-0001043.html","adult"],["cecum-bto-0000166.html","cecum"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["head-bto-0000282.html","head"]],"b":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]]},{"id":"NCBITaxon:1301","l":"Streptococcus","na":23,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["head-bto-0000282.html","head"]],"b":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"NCBITaxon:106592","l":"Ensifer adhaerens","na":20,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]]},{"id":"ENVO:2100002","l":"intestine environment","na":1,"nb":17,"a":[["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"]]},{"id":"ENVO:00000021","l":"freshwater lake","na":16,"nb":1,"a":[["algal-bloom-envo-2000004.html","algal bloom"],["anoxic-zone-habitatmech-gold-b75e4aa08f.html","Anoxic zone"],["aphotic-zone-habitatmech-gold-fcba7e6334.html","Aphotic zone"],["biofilm-habitatmech-gold-748b381af4.html","Biofilm"],["cyanobacterial-aggregates-habitatmech-gold-9b43a12f0c.html","Cyanobacterial aggregates"],["cyanobacterial-bloom-envo-03600071.html","cyanobacterial bloom"]],"b":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"]]},{"id":"NCBITaxon:1598","l":"Limosilactobacillus reuteri","na":14,"nb":1,"a":[["cecum-mucosa-bto-0000213.html","cecum mucosa"],["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["ileum-bto-0000620.html","ileum"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"]],"b":[["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"]]},{"id":"NCBITaxon:1264","l":"Hominimerdicola alba","na":13,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["stream-envo-00000023.html","stream"],["animal-house-envo-00003040.html","animal house"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biome-envo-00000428.html","biome"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"]],"b":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"]]},{"id":"NCBITaxon:1350","l":"Enterococcus","na":13,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["dorsum-bto-0001713.html","dorsum"],["hand-bto-0004668.html","hand"],["intestine-bto-0000648.html","intestine"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"]],"b":[["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"]]},{"id":"ENVO:01000320","l":"marine environment","na":1,"nb":12,"a":[["marine-environment-envo-01000320.html","marine environment"]],"b":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":11,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"],["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["laboratory-facility-envo-01001406.html","laboratory facility"],["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["bone-element-uberon-0001474.html","bone element"],["juvenile-bto-0002168.html","juvenile"]],"b":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]]},{"id":"ENVO:00000020","l":"lake","na":10,"nb":1,"a":[["aphotic-zone-habitatmech-gold-fcba7e6334.html","Aphotic zone"],["freshwater-lake-envo-00000021.html","freshwater lake"],["glacial-lake-envo-00000488.html","glacial lake"],["lake-envo-00000020.html","lake"],["lake-habitatmech-gold-713c7f352a.html","Lake"],["marine-lake-envo-03600041.html","marine lake"]],"b":[["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"]]},{"id":"NCBITaxon:1399","l":"Cytobacillus firmus","na":10,"nb":1,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"],["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"]]},{"id":"NCBITaxon:33075","l":"Acidobacterium capsulatum","na":10,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["paddy-field-envo-00000297.html","paddy field"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"],["area-of-tundra-envo-00000112.html","area of tundra"],["forested-area-envo-00000111.html","forested area"],["mountain-pass-envo-00000084.html","mountain pass"]],"b":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":10,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["air-conditioning-unit-envo-00002874.html","air conditioning unit"],["leaf-bto-0000713.html","leaf"],["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]]},{"id":"NCBITaxon:47715","l":"Lacticaseibacillus rhamnosus","na":10,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["fermentation-starter-envo-03600040.html","fermentation starter"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]]},{"id":"ENVO:01000747","l":"regolith","na":1,"nb":9,"a":[["regolith-envo-01000747.html","regolith"]],"b":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":9,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["fresh-water-envo-00002011.html","fresh water"],["river-envo-00000022.html","river"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"]]},{"id":"NCBITaxon:1224","l":"Pseudomonadota","na":1,"nb":8,"a":[["hemolymph-bto-0000572.html","hemolymph"]],"b":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":8,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["alimentary-canal-bto-0000058.html","alimentary canal"],["blood-bto-0000089.html","blood"],["small-intestine-bto-0000651.html","small intestine"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["geographic-feature-envo-00000000.html","geographic feature"]],"b":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]]},{"id":"NCBITaxon:1655","l":"Actinomyces naeslundii","na":8,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"],["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"],["archeological-site-envo-00000564.html","archeological site"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]]},{"id":"NCBITaxon:171550","l":"Rikenellaceae","na":8,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["ileum-bto-0000620.html","ileum"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"]],"b":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"ENVO:00000003","l":"mine tailing","na":1,"nb":7,"a":[["mine-tailing-envo-00000003.html","mine tailing"]],"b":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]]},{"id":"ENVO:00003862","l":"dairy","na":1,"nb":7,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]]},{"id":"ENVO:00003965","l":"anaerobic digester sludge","na":1,"nb":7,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"]],"b":[["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Magnetite_Sulfate_Stress_Anaerobic_Microbiome.html","Magnetite Sulfate-Stress Anaerobic Microbiome"],["Thermophilic_ExSitu_Biomethanation_Mixed_Culture.html","Thermophilic Ex-Situ Biomethanation Mixed Culture"]]},{"id":"ENVO:00005750","l":"grassland soil","na":1,"nb":7,"a":[["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"],["Soil_BGC_Phylum_Depth_Vegetation_Community.html","Soil Biosynthetic Gene Cluster Phylum-Depth-Vegetation Community"],["Soil_CPR_Nanoarchaea_Rare_Biosphere_Community.html","Soil CPR Bacteria and Nanoarchaea Rare-Biosphere Community"]]},{"id":"ENVO:01000313","l":"anthropogenic environment","na":7,"nb":1,"a":[["laboratory-environment-envo-01001405.html","laboratory environment"],["subway-environment-habitatmech-gold-961229841c.html","subway environment"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["cultivated-environment-envo-01000311.html","cultivated environment"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":7,"nb":1,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["farm-envo-00000078.html","farm"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]]},{"id":"NCBITaxon:1107","l":"Chloroflexus","na":7,"nb":1,"a":[["crop-bto-0000301.html","crop"],["gut-bto-0000545.html","gut"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["seedling-bto-0001228.html","seedling"],["skin-bto-0001253.html","skin"]],"b":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]]},{"id":"NCBITaxon:1243","l":"Leuconostoc","na":7,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["intestine-bto-0000648.html","intestine"],["mouth-bto-0001090.html","mouth"],["stem-bto-0001300.html","stem"]],"b":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]]},{"id":"NCBITaxon:13690","l":"Sphingobium yanoikuyae","na":7,"nb":1,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["resting-cell-bto-0001170.html","resting cell"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"],["water-scum-envo-00005794.html","water scum"]],"b":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]]},{"id":"NCBITaxon:165179","l":"Segatella copri","na":7,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["juvenile-bto-0002168.html","juvenile"],["rumen-uberon-0007365.html","rumen"],["tongue-bto-0001385.html","tongue"],["vaginal-fluid-bto-0003084.html","vaginal fluid"],["animal-litter-envo-00002191.html","animal litter"]],"b":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":7,"nb":1,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["pseudostem-bto-0005992.html","pseudostem"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]]},{"id":"NCBITaxon:40323","l":"Stenotrophomonas","na":1,"nb":7,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"]]},{"id":"NCBITaxon:469","l":"Acinetobacter","na":7,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["endotracheal-fluid-ncit-c171504.html","Endotracheal Fluid"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"],["pseudostem-bto-0005992.html","pseudostem"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"]],"b":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]]},{"id":"NCBITaxon:56780","l":"Syntrophus aciditrophicus SB","na":7,"nb":1,"a":[["bay-envo-00000032.html","bay"],["black-smoker-envo-00000218.html","black smoker"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["saline-water-envo-00002010.html","saline water"],["village-biome-envo-01000246.html","village biome"]],"b":[["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"]]},{"id":"ENVO:01000001","l":"mud","na":6,"nb":1,"a":[["marine-mud-envo-00005795.html","marine mud"],["mud-habitatmech-gold-cdf0825f85.html","Mud"],["anaerobic-mud-envo-00002133.html","anaerobic mud"],["estuarine-mud-envo-00002160.html","estuarine mud"],["mud-envo-01000001.html","mud"],["mud-habitatmech-gold-16370f2eb5.html","Mud"]],"b":[["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"]]},{"id":"NCBITaxon:1269","l":"Micrococcus","na":6,"nb":1,"a":[["cecum-bto-0000166.html","cecum"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["saliva-bto-0001202.html","saliva"],["tongue-bto-0001385.html","tongue"]],"b":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]]},{"id":"NCBITaxon:1512","l":"[Clostridium] symbiosum","na":6,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["animal-house-envo-00003040.html","animal house"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["emulsion-envo-00010506.html","emulsion"],["environmental-feature-envo-00002297.html","environmental feature"],["pig-manure-envo-00003860.html","pig manure"]],"b":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]]},{"id":"NCBITaxon:1624","l":"Ligilactobacillus salivarius","na":6,"nb":1,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["trachea-bto-0001388.html","trachea"],["animal-litter-envo-00002191.html","animal litter"],["intestine-environment-envo-2100002.html","intestine environment"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]]},{"id":"NCBITaxon:1872122","l":"Acidovorax sp.","na":6,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"]]},{"id":"NCBITaxon:2203","l":"Methanospirillum hungatei","na":1,"nb":6,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"]],"b":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":1,"nb":6,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]]},{"id":"ENVO:00000134","l":"permafrost","na":5,"nb":1,"a":[["permafrost-envo-00000134.html","permafrost"],["permafrost-habitatmech-gold-dd598a891d.html","Permafrost"],["permafrost-habitatmech-gold-6821e96263.html","Permafrost"],["permafrost-habitatmech-gold-6d092784ef.html","Permafrost"],["permafrost-habitatmech-gold-83818dd6ed.html","Permafrost"]],"b":[["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"]]},{"id":"ENVO:00002012","l":"hypersaline water","na":5,"nb":1,"a":[["brine-envo-00003044.html","brine"],["hypersaline-water-envo-00002012.html","hypersaline water"],["microbial-mats-habitatmech-gold-a00c47c576.html","Microbial mats"],["saline-water-habitatmech-gold-f75e192814.html","Saline water"],["salt-crystallizer-ponds-habitatmech-gold-277843111f.html","Salt crystallizer ponds"]],"b":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]]},{"id":"NCBITaxon:106589","l":"Cupriavidus","na":5,"nb":1,"a":[["gut-bto-0000545.html","gut"],["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["skin-bto-0001253.html","skin"]],"b":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]]},{"id":"NCBITaxon:1245","l":"Leuconostoc mesenteroides","na":5,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["leaf-po-0025034.html","leaf"],["animal-manure-envo-00003031.html","animal manure"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]]},{"id":"NCBITaxon:239","l":"Flavobacterium sp.","na":5,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["mud-envo-01000001.html","mud"],["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"],["orchard-envo-00000115.html","orchard"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]]},{"id":"NCBITaxon:28232","l":"Geobacter metallireducens","na":1,"nb":5,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":5,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["food-spoiled-foodon-00003366.html","food (spoiled)"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"]],"b":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":5,"nb":1,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["pseudostem-bto-0005992.html","pseudostem"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]]},{"id":"NCBITaxon:57723","l":"Acidobacteriota","na":1,"nb":5,"a":[["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["SPRUCE_Peatland_Methane_Cycling_Community.html","SPRUCE Peatland Methane-Cycling Microbial Community"]]},{"id":"NCBITaxon:74969","l":"Ferroplasma acidiphilum","na":1,"nb":5,"a":[["factory-envo-01000536.html","factory"]],"b":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]]},{"id":"NCBITaxon:838","l":"Prevotella","na":5,"nb":1,"a":[["brain-bto-0000142.html","brain"],["colon-bto-0000269.html","colon"],["heart-bto-0000562.html","heart"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"]],"b":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"CHEBI:24632","l":"hydrocarbon","na":4,"nb":1,"a":[["hydrocarbon-habitatmech-gold-db79f0142d.html","Hydrocarbon"],["hydrocarbon-habitatmech-gold-3c68e33a11.html","Hydrocarbon"],["hydrocarbon-habitatmech-gold-e77998b825.html","Hydrocarbon"],["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"]],"b":[["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"]]},{"id":"ENVO:01000306","l":"freshwater environment","na":1,"nb":4,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]]},{"id":"ENVO:01001033","l":"digestive tract environment","na":1,"nb":4,"a":[["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic"],["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":4,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"],["human-construction-envo-00000070.html","human construction"],["sediment-envo-00002007.html","sediment"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]]},{"id":"NCBITaxon:1089553","l":"Thermacetogenium phaeum DSM 12270","na":4,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["pulp-bto-0001142.html","pulp"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":4,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]]},{"id":"NCBITaxon:1587","l":"Lactobacillus helveticus","na":4,"nb":1,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["intestine-environment-envo-2100002.html","intestine environment"],["urban-biome-envo-01000249.html","urban biome"],["harbour-envo-00000463.html","harbour"]],"b":[["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"]]},{"id":"NCBITaxon:1682","l":"Bifidobacterium longum subsp. infantis","na":4,"nb":1,"a":[["egg-food-product-foodon-00001274.html","egg food product"],["breast-bto-0000149.html","breast"],["ht-29-cell-bto-0000182.html","HT-29 cell"],["ma-104-cell-bto-0004983.html","MA-104 cell"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]]},{"id":"NCBITaxon:200795","l":"Chloroflexota","na":1,"nb":4,"a":[["crop-bto-0000301.html","crop"]],"b":[["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["Soil_BGC_Phylum_Depth_Vegetation_Community.html","Soil Biosynthetic Gene Cluster Phylum-Depth-Vegetation Community"]]},{"id":"NCBITaxon:2209","l":"Methanosarcina mazei","na":4,"nb":1,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["sludge-envo-00002044.html","sludge"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"]]},{"id":"NCBITaxon:356","l":"Hyphomicrobiales","na":4,"nb":1,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["stem-bto-0001300.html","stem"]],"b":[["Thiocyanate_Afipia_Thiobacillus_Bioreactor_Community.html","Thiocyanate-Degrading Afipia and Thiobacillus Bioreactor Community"]]},{"id":"NCBITaxon:570","l":"Klebsiella","na":1,"nb":4,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"]]},{"id":"NCBITaxon:68287","l":"Mesorhizobium","na":1,"nb":4,"a":[["head-bto-0000282.html","head"]],"b":[["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]]},{"id":"NCBITaxon:75682","l":"Oxalobacteraceae","na":4,"nb":1,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]]},{"id":"NCBITaxon:872","l":"Desulfovibrio","na":1,"nb":4,"a":[["colon-bto-0000269.html","colon"]],"b":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]]},{"id":"NCBITaxon:930","l":"Acidithiobacillus thiooxidans","na":1,"nb":4,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]]},{"id":"NCBITaxon:1090","l":"Chlorobiota","na":3,"nb":1,"a":[["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"]],"b":[["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"]]},{"id":"NCBITaxon:1249","l":"Weissella paramesenteroides","na":3,"nb":1,"a":[["cecum-bto-0000166.html","cecum"],["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"]],"b":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]]},{"id":"NCBITaxon:1451","l":"Paenibacillus amylolyticus","na":3,"nb":1,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"]]},{"id":"NCBITaxon:1519","l":"Clostridium tyrobutyricum","na":3,"nb":1,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["peatland-envo-00000044.html","peatland"]],"b":[["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]]},{"id":"NCBITaxon:1582","l":"Lacticaseibacillus casei","na":3,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]]},{"id":"NCBITaxon:1597","l":"Lacticaseibacillus paracasei","na":3,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":1,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":3,"nb":1,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]]},{"id":"NCBITaxon:203124","l":"Trichodesmium erythraeum IMS101","na":3,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["coastal-water-body-envo-02000049.html","coastal water body"],["marine-neritic-zone-envo-00000206.html","marine neritic zone"]],"b":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":1,"nb":3,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]]},{"id":"NCBITaxon:22","l":"Shewanella","na":1,"nb":3,"a":[["wood-bto-0005516.html","wood"]],"b":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Shewanella_Denitrifying_Richness_SynComs.html","Shewanella Denitrifying Richness SynComs"]]},{"id":"NCBITaxon:28037","l":"Streptococcus mitis","na":3,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["archeological-site-envo-00000564.html","archeological site"],["tropical-envo-01000204.html","tropical"]],"b":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]]},{"id":"NCBITaxon:301375","l":"Methanothrix harundinacea","na":3,"nb":1,"a":[["small-river-biome-envo-00000890.html","small river biome"],["shoreline-envo-00000486.html","shoreline"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"]]},{"id":"NCBITaxon:3041","l":"Chlorophyta","na":1,"nb":3,"a":[["leaf-bto-0000713.html","leaf"]],"b":[["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"]]},{"id":"NCBITaxon:33035","l":"Blautia producta","na":1,"nb":3,"a":[["juvenile-bto-0002168.html","juvenile"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]]},{"id":"NCBITaxon:33952","l":"Acetobacterium woodii","na":1,"nb":3,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]]},{"id":"NCBITaxon:375","l":"Bradyrhizobium japonicum","na":3,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"]]},{"id":"NCBITaxon:375288","l":"Parabacteroides","na":3,"nb":1,"a":[["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"]],"b":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"]]},{"id":"NCBITaxon:40214","l":"Acinetobacter johnsonii","na":3,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["pitcher-bto-0001069.html","pitcher"],["water-scum-envo-00005794.html","water scum"]],"b":[["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]]},{"id":"NCBITaxon:48736","l":"Ralstonia","na":3,"nb":1,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"]],"b":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":1,"nb":3,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]]},{"id":"NCBITaxon:547","l":"Enterobacter","na":1,"nb":3,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]]},{"id":"NCBITaxon:572511","l":"Blautia","na":3,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["colon-bto-0000269.html","colon"]],"b":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]]},{"id":"NCBITaxon:582","l":"Morganella morganii","na":3,"nb":1,"a":[["blast-cell-bto-0000125.html","blast cell"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"],["spike-bto-0001278.html","spike"]],"b":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]]},{"id":"NCBITaxon:69373","l":"Curtobacterium pusillum","na":3,"nb":1,"a":[["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["seedling-bto-0001228.html","seedling"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]]},{"id":"NCBITaxon:76759","l":"Pseudomonas monteilii","na":3,"nb":1,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"]]},{"id":"NCBITaxon:85413","l":"Allobosea","na":1,"nb":3,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"]],"b":[["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":3,"nb":1,"a":[["city-envo-00000856.html","city"],["cold-environment-envo-01000309.html","cold environment"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]]},{"id":"ENVO:00002127","l":"stream sediment","na":1,"nb":2,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Tropidoatractus_Magnetotacticus_Tripartite_Syntrophy.html","Tropidoatractus magnetotacticus Magnetotactic Ciliate Tripartite Syntrophy"]]},{"id":"ENVO:03000033","l":"marine sediment","na":2,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"]]},{"id":"NCBITaxon:1033","l":"Afipia","na":2,"nb":1,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"]],"b":[["Thiocyanate_Afipia_Thiobacillus_Bioreactor_Community.html","Thiocyanate-Degrading Afipia and Thiobacillus Bioreactor Community"]]},{"id":"NCBITaxon:1091494","l":"Methylotuvimicrobium alcaliphilum 20Z","na":1,"nb":2,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"]]},{"id":"NCBITaxon:1129","l":"Synechococcus","na":2,"nb":1,"a":[["column-bto-0005692.html","column"],["hemolymph-bto-0000572.html","hemolymph"]],"b":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]]},{"id":"NCBITaxon:1173061","l":"Geotrichum candidum","na":2,"nb":1,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]]},{"id":"NCBITaxon:119532","l":"Microcoleus vaginatus","na":2,"nb":1,"a":[["desert-biome-envo-01000179.html","desert biome"],["desert-area-envo-00000097.html","desert area"]],"b":[["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]]},{"id":"NCBITaxon:1255","l":"Pediococcus pentosaceus","na":2,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"]],"b":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]]},{"id":"NCBITaxon:12916","l":"Acidovorax","na":1,"nb":2,"a":[["urine-bto-0001419.html","urine"]],"b":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]]},{"id":"NCBITaxon:1303","l":"Streptococcus oralis","na":2,"nb":1,"a":[["throat-bto-0000828.html","throat"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]]},{"id":"NCBITaxon:138074","l":"Serratia symbiotica","na":2,"nb":1,"a":[["intestine-bto-0000648.html","intestine"],["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"]]},{"id":"NCBITaxon:1398","l":"Heyndrickxia coagulans","na":2,"nb":1,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"]]},{"id":"NCBITaxon:1401","l":"Paenibacillus lautus","na":2,"nb":1,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"]]},{"id":"NCBITaxon:142182","l":"Gemmatimonadota","na":1,"nb":2,"a":[["crop-bto-0000301.html","crop"]],"b":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":2,"a":[["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]]},{"id":"NCBITaxon:1538","l":"Clostridium ljungdahlii","na":1,"nb":2,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]]},{"id":"NCBITaxon:160488","l":"Pseudomonas putida (strain ATCC 47054 / DSM 6125 / CFBP 8728 / NCIMB 11950 / KT2440)","na":1,"nb":2,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"]]},{"id":"NCBITaxon:161493","l":"Anaeromyxobacter dehalogenans","na":2,"nb":1,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"]]},{"id":"NCBITaxon:1680","l":"Bifidobacterium adolescentis","na":2,"nb":1,"a":[["brain-bto-0000142.html","brain"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]]},{"id":"NCBITaxon:169215","l":"","na":1,"nb":2,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"]],"b":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]]},{"id":"NCBITaxon:171552","l":"Prevotellaceae","na":2,"nb":1,"a":[["colon-bto-0000269.html","colon"],["rumen-uberon-0007365.html","rumen"]],"b":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"NCBITaxon:1785","l":"Mycobacterium sp.","na":2,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"],["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]]},{"id":"NCBITaxon:1871043","l":"Variovorax sp.","na":1,"nb":2,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]]},{"id":"NCBITaxon:1872086","l":"Ensifer sp.","na":2,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]]},{"id":"NCBITaxon:192","l":"Azospirillum brasilense","na":2,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"]]},{"id":"NCBITaxon:20","l":"Phenylobacterium","na":2,"nb":1,"a":[["crop-bto-0000301.html","crop"],["nectar-bto-0000537.html","nectar"]],"b":[["Tomato_Oxylipin_SynCom3.html","Tomato Oxylipin-Protective SynCom3"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus ATCC 27405","na":1,"nb":2,"a":[["blood-plasma-bto-0000131.html","blood plasma"]],"b":[["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]]},{"id":"NCBITaxon:2162","l":"Methanobacterium formicicum","na":1,"nb":2,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"]]},{"id":"NCBITaxon:2173","l":"Methanobrevibacter smithii","na":1,"nb":2,"a":[["lagoon-envo-00000038.html","lagoon"]],"b":[["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"]]},{"id":"NCBITaxon:2223","l":"Methanothrix soehngenii","na":1,"nb":2,"a":[["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]]},{"id":"NCBITaxon:231455","l":"Dyella japonica","na":1,"nb":2,"a":[["area-of-tundra-envo-00000112.html","area of tundra"]],"b":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii (strain ATCC 43067 / DSM 2661 / JAL-1 / JCM 10045 / NBRC 100440)","na":2,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":2,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"]]},{"id":"NCBITaxon:2836","l":"Bacillariophyta","na":2,"nb":1,"a":[["diatom-associated-environment-habitatmech-gold-1276bea544.html","diatom-associated environment"],["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]]},{"id":"NCBITaxon:285","l":"Comamonas testosteroni","na":2,"nb":1,"a":[["waste-habitatmech-bacdive-36df85e4a4.html","Waste"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]]},{"id":"NCBITaxon:293387","l":"Bacillus altitudinis","na":1,"nb":2,"a":[["resting-cell-bto-0001170.html","resting cell"]],"b":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"]]},{"id":"NCBITaxon:29448","l":"Bradyrhizobium elkanii","na":2,"nb":1,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["area-of-tundra-envo-00000112.html","area of tundra"]],"b":[["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]]},{"id":"NCBITaxon:299767","l":"Enterobacter ludwigii","na":1,"nb":2,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]]},{"id":"NCBITaxon:323259","l":"Methanospirillum hungatei JF-1","na":1,"nb":2,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]]},{"id":"NCBITaxon:39152","l":"Methanococcus maripaludis","na":1,"nb":2,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["DVM_Triculture.html","DVM Tri-culture"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":2,"nb":1,"a":[["city-envo-00000856.html","city"],["cropland-biome-envo-01000245.html","cropland biome"]],"b":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]]},{"id":"NCBITaxon:515619","l":"Agathobacter rectalis ATCC 33656","na":1,"nb":2,"a":[["gut-epithelium-bto-0000956.html","gut epithelium"]],"b":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]]},{"id":"NCBITaxon:6239","l":"Caenorhabditis elegans","na":2,"nb":1,"a":[["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"]]},{"id":"NCBITaxon:648","l":"Aeromonas caviae","na":2,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]]},{"id":"NCBITaxon:82367","l":"Paracoccus pantotrophus","na":2,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"]]},{"id":"NCBITaxon:82380","l":"Microbacterium oxydans","na":1,"nb":2,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]]},{"id":"NCBITaxon:876","l":"Desulfovibrio desulfuricans","na":2,"nb":1,"a":[["sludge-envo-00002044.html","sludge"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":2,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]]},{"id":"UBERON:0001155","l":"colon","na":2,"nb":1,"a":[["colon-habitatmech-gold-c484d9a195.html","Colon"],["colon-habitatmech-gold-195d07bc47.html","Colon"]],"b":[["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"]]},{"id":"ENVO:00000057","l":"mangrove swamp","na":1,"nb":1,"a":[["mangrove-swamp-envo-00000057.html","mangrove swamp"]],"b":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"]]},{"id":"ENVO:00000126","l":"sulfur spring","na":1,"nb":1,"a":[["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"]]},{"id":"ENVO:00002121","l":"alkaline salt lake","na":1,"nb":1,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"]],"b":[["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]]},{"id":"ENVO:00003030","l":"silage","na":1,"nb":1,"a":[["silage-envo-00003030.html","silage"]],"b":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"]]},{"id":"ENVO:01000910","l":"soil biocrust","na":1,"nb":1,"a":[["soil-biocrust-envo-01000910.html","soil biocrust"]],"b":[["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]]},{"id":"NCBITaxon:100176","l":"Papillibacter cinnamivorans","na":1,"nb":1,"a":[["cecum-bto-0000166.html","cecum"]],"b":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"]]},{"id":"NCBITaxon:105972","l":"Methylosarcina fibrata","na":1,"nb":1,"a":[["stream-envo-00000023.html","stream"]],"b":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]]},{"id":"NCBITaxon:110321","l":"Sinorhizobium medicae","na":1,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"]]},{"id":"NCBITaxon:1122947","l":"Pelosinus fermentans DSM 17108","na":1,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"]]},{"id":"NCBITaxon:1131703","l":"Sphaerochaeta globosa","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"]]},{"id":"NCBITaxon:1134404","l":"Ignavibacteriota","na":1,"nb":1,"a":[["gut-bto-0000545.html","gut"]],"b":[["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"]]},{"id":"NCBITaxon:119060","l":"Burkholderiaceae","na":1,"nb":1,"a":[["trunk-bto-0001493.html","trunk"]],"b":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]]},{"id":"NCBITaxon:1253","l":"Pediococcus","na":1,"nb":1,"a":[["cecum-bto-0000166.html","cecum"]],"b":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]]},{"id":"NCBITaxon:1272","l":"Kocuria varians","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"]]},{"id":"NCBITaxon:135619","l":"Oceanospirillales","na":1,"nb":1,"a":[["column-bto-0005692.html","column"]],"b":[["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"]]},{"id":"NCBITaxon:1455","l":"Pseudobacillus badius","na":1,"nb":1,"a":[["organic-waste-material-envo-00002873.html","organic waste material"]],"b":[["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"]]},{"id":"NCBITaxon:1488","l":"Clostridium acetobutylicum","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]]},{"id":"NCBITaxon:1501","l":"Clostridium pasteurianum","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]]},{"id":"NCBITaxon:1517","l":"Thermoanaerobacterium thermosaccharolyticum","na":1,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]]},{"id":"NCBITaxon:1579","l":"Lactobacillus acidophilus","na":1,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"]],"b":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]]},{"id":"NCBITaxon:1585","l":"Lactobacillus delbrueckii subsp. bulgaricus","na":1,"nb":1,"a":[["pig-manure-envo-00003860.html","pig manure"]],"b":[["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]]},{"id":"NCBITaxon:158836","l":"Enterobacter hormaechei","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]]},{"id":"NCBITaxon:168384","l":"Marvinbryantia formatexigens","na":1,"nb":1,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"]]},{"id":"NCBITaxon:1828","l":"Rhodococcoides fascians","na":1,"nb":1,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]]},{"id":"NCBITaxon:1871068","l":"Phyllobacteriaceae bacterium","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]]},{"id":"NCBITaxon:1898203","l":"Lachnospiraceae bacterium","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]]},{"id":"NCBITaxon:216389","l":"Dehalococcoides mccartyi BAV1","na":1,"nb":1,"a":[["road-envo-00000064.html","road"]],"b":[["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]]},{"id":"NCBITaxon:216778","l":"Stenotrophomonas rhizophila","na":1,"nb":1,"a":[["style-bto-0001313.html","style"]],"b":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"]]},{"id":"NCBITaxon:219572","l":"Pseudomonas antarctica","na":1,"nb":1,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]]},{"id":"NCBITaxon:225937","l":"Marinobacter adhaerens HP15","na":1,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]]},{"id":"NCBITaxon:226","l":"Alteromonas","na":1,"nb":1,"a":[["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]]},{"id":"NCBITaxon:226186","l":"Bacteroides thetaiotaomicron (strain ATCC 29148 / DSM 2079 / JCM 5827 / CCUG 10774 / NCTC 10582 / VPI-5482 / E50)","na":1,"nb":1,"a":[["gut-epithelium-bto-0000956.html","gut epithelium"]],"b":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima (strain ATCC 43589 / DSM 3109 / JCM 10099 / NBRC 100826 / MSB8)","na":1,"nb":1,"a":[["feather-bto-0000447.html","feather"]],"b":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]]},{"id":"NCBITaxon:246200","l":"Ruegeria pomeroyi DSS-3","na":1,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]]},{"id":"NCBITaxon:250","l":"Chryseobacterium gleum","na":1,"nb":1,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]]},{"id":"NCBITaxon:2745","l":"Halomonas","na":1,"nb":1,"a":[["wood-bto-0005516.html","wood"]],"b":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]]},{"id":"NCBITaxon:29394","l":"Dolosigranulum pigrum","na":1,"nb":1,"a":[["bone-element-uberon-0001474.html","bone element"]],"b":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"]]},{"id":"NCBITaxon:3078","l":"Auxenochlorella pyrenoidosa","na":1,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"]],"b":[["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"]]},{"id":"NCBITaxon:33010","l":"Cutibacterium avidum","na":1,"nb":1,"a":[["bone-element-uberon-0001474.html","bone element"]],"b":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]]},{"id":"NCBITaxon:33011","l":"Cutibacterium granulosum","na":1,"nb":1,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]]},{"id":"NCBITaxon:33883","l":"Microbacterium arborescens","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]]},{"id":"NCBITaxon:340177","l":"Chlorobium chlorochromatii CaD3","na":1,"nb":1,"a":[["photoreceptor-cell-bto-0001060.html","photoreceptor cell"]],"b":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"]]},{"id":"NCBITaxon:372461","l":"Buchnera aphidicola BCc","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"]]},{"id":"NCBITaxon:38304","l":"Corynebacterium tuberculostearicum","na":1,"nb":1,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"]]},{"id":"NCBITaxon:399726","l":"Thermoanaerobacter sp. X514","na":1,"nb":1,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"]]},{"id":"NCBITaxon:409291","l":"Arthrobacter humicola","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]]},{"id":"NCBITaxon:43775","l":"Syntrophus gentianae","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]]},{"id":"NCBITaxon:47880","l":"Pseudomonas fulva","na":1,"nb":1,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]]},{"id":"NCBITaxon:47920","l":"Acidovorax delafieldii","na":1,"nb":1,"a":[["bone-element-uberon-0001474.html","bone element"]],"b":[["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]]},{"id":"NCBITaxon:49082","l":"Candidatus Neoarthromitus","na":1,"nb":1,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]]},{"id":"NCBITaxon:51669","l":"Tetragenococcus halophilus","na":1,"nb":1,"a":[["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]]},{"id":"NCBITaxon:542","l":"Zymomonas mobilis","na":1,"nb":1,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["Zymomonas_Ecoli_Exometabolomics_Obligate_Mutualism.html","Zymomonas-E. coli Exometabolomics-Designed Obligate Mutualism"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":1,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":1,"nb":1,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]]},{"id":"NCBITaxon:571256","l":"Brucella pituitosa","na":1,"nb":1,"a":[["seedling-bto-0001228.html","seedling"]],"b":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]]},{"id":"NCBITaxon:685","l":"Vibrio diazotrophicus","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]]},{"id":"NCBITaxon:80840","l":"Burkholderiales","na":1,"nb":1,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"]],"b":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"]]},{"id":"NCBITaxon:80866","l":"Delftia acidovorans","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]]},{"id":"NCBITaxon:82","l":"Hyphomicrobium sp.","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"]]},{"id":"NCBITaxon:86185","l":"Pseudomonas lundensis","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]]},{"id":"NCBITaxon:930166","l":"Pseudomonas brassicacearum","na":1,"nb":1,"a":[["spike-bto-0001278.html","spike"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]]},{"id":"NCBITaxon:94625","l":"Brucella intermedia","na":1,"nb":1,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]]},{"id":"UBERON:0002097","l":"skin of body","na":1,"nb":1,"a":[["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["SkinCom_Synthetic_Skin_Community.html","SkinCom Synthetic Skin Community"]]}]} \ No newline at end of file +{"a":"HabitatMech","b":"CommunityMech","base":{"HabitatMech":"https://culturebotai.github.io/HabitatMech/pages/habitats/","CommunityMech":"https://culturebotai.github.io/CommunityMech/communities/"},"n":313,"by":{"NCBITaxon":265,"ENVO":42,"UBERON":4,"CHEBI":2},"terms":[{"id":"NCBITaxon:2","l":"Bacteria","na":40,"nb":56,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["factory-envo-01000536.html","factory"],["adult-bto-0001043.html","adult"]],"b":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"]]},{"id":"ENVO:00001998","l":"soil","na":105,"nb":17,"a":[["soil-habitatmech-gold-fc35741739.html","Soil"],["wetland-area-envo-00000043.html","wetland area"],["soil-habitatmech-gold-b1d707114a.html","Soil"],["soil-habitatmech-gold-e9844fc187.html","Soil"],["soil-habitatmech-gold-3e86b794ef.html","Soil"],["soil-habitatmech-gold-067f7f5e2a.html","Soil"]],"b":[["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["East_River_Hillslope_Riparian_Transect_Community.html","East River Hillslope Riparian Transect Microbial Community"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]]},{"id":"ENVO:01001001","l":"plant-associated environment","na":21,"nb":16,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["bryophytes-habitatmech-gold-35beb98884.html","Bryophytes"],["endosphere-habitatmech-gold-bfe3e11951.html","Endosphere"],["green-alga-associated-environment-habitatmech-gold-184cc9e802.html","green-alga-associated environment"],["mixed-parts-habitatmech-gold-4dd29bdcf8.html","Mixed parts"],["peat-moss-associated-environment-habitatmech-gold-7f57b82cab.html","peat moss-associated environment"]],"b":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Arabidopsis_Phyllosphere_SynCom7.html","Arabidopsis Phyllosphere SynCom7"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"]]},{"id":"NCBITaxon:1386","l":"Bacillus","na":19,"nb":16,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["crop-bto-0000301.html","crop"],["dorsum-bto-0001713.html","dorsum"],["hand-bto-0004668.html","hand"],["head-bto-0000282.html","head"],["juvenile-bto-0002168.html","juvenile"]],"b":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":36,"nb":14,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["bay-envo-00000032.html","bay"],["freshwater-biome-envo-00000873.html","freshwater biome"],["liquid-water-envo-00002006.html","liquid water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chlorella_Ecoli_Mixotrophic_Biofuel_Coculture.html","Chlorella-Ecoli Mixotrophic Biofuel Precursor Coculture"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"],["Ecoli_GL10_XL12_D_Lactate_Mixed_Sugar_SynCom.html","E. coli GL10-XL12 D-Lactate Mixed-Sugar SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"]]},{"id":"ENVO:00002123","l":"bioreactor","na":31,"nb":13,"a":[["aerobic-bioreactor-envo-00002126.html","aerobic bioreactor"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["air-scrubber-biofilm-habitatmech-gold-7f436f8aff.html","air scrubber biofilm"],["biofilter-envo-00002152.html","biofilter"],["bioreactor-envo-00002123.html","bioreactor"],["bioreactor-habitatmech-gold-c4bf3d0c83.html","Bioreactor"]],"b":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"],["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":27,"nb":11,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["watercourse-envo-00000029.html","watercourse"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["egg-food-product-foodon-00001274.html","egg food product"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Garlic_Pseudomonas_SynCom6.html","Garlic Rhizosphere Pseudomonas SynCom6"],["KBase_Synthetic_Bacterial_Community_R2A.html","KBase Synthetic Bacterial Community in R2A Medium"],["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"]]},{"id":"ENVO:00002007","l":"sediment","na":103,"nb":10,"a":[["marine-sediment-envo-03000033.html","marine sediment"],["sediment-habitatmech-gold-6bc70f0406.html","Sediment"],["sediment-habitatmech-gold-33b265d89f.html","Sediment"],["sediment-habitatmech-gold-7db7617ea4.html","Sediment"],["sediment-habitatmech-gold-2f9eb7ed2f.html","Sediment"],["sediment-habitatmech-gold-2ff751e0a6.html","Sediment"]],"b":[["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Bothnian_Bay_GAC_Dependent_CIET_SAO_Consortium.html","Bothnian Bay GAC-Dependent CIET-SAO Consortium"],["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]]},{"id":"NCBITaxon:286","l":"Pseudomonas","na":10,"nb":18,"a":[["heart-bto-0000562.html","heart"],["juvenile-bto-0002168.html","juvenile"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"],["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["Chlorella_Keystone_Taxa_Antifungal_SynCom.html","Chlorella fusca CHK0059 Keystone-Taxa Antifungal SynCom"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Crucian_Carp_Gut_Disease_Resistance_SynCom.html","Crucian Carp Gut Disease-resistance SynCom"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":10,"nb":15,"a":[["anther-bto-0000079.html","anther"],["epithelial-cell-bto-0000414.html","epithelial cell"],["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":28,"nb":9,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["liquid-water-envo-00002006.html","liquid water"],["watercourse-envo-00000029.html","watercourse"],["compost-envo-00002170.html","compost"],["hospital-envo-00002173.html","hospital"],["human-construction-envo-00000070.html","human construction"]],"b":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Geobacter_Pseudomonas_Formate_Fumarate_Electroactive_Coculture.html","Geobacter-Pseudomonas Formate-Fumarate Electroactive Coculture"],["Pseudomonas_Aeruginosa_EightStrain_Full_Factorial_SynCom.html","Pseudomonas aeruginosa Eight-Strain Full-Factorial SynCom"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":11,"nb":9,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["resting-cell-bto-0001170.html","resting cell"],["seedling-bto-0001228.html","seedling"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Model_Lignocellulose_Formaldehyde_Crossfeeding_Community.html","Model Lignocellulose Formaldehyde Cross-Feeding Community"],["Priestia_Pseudomonas_Rice_Arsenic_Stress_SynCom.html","Priestia-Pseudomonas Rice Arsenic-Stress SynCom"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":27,"nb":7,"a":[["small-river-biome-envo-00000890.html","small river biome"],["factory-envo-01000536.html","factory"],["organic-waste-material-envo-00002873.html","organic waste material"],["leaf-po-0025034.html","leaf"],["milk-uberon-0001913.html","milk"],["rhizosphere-envo-00005801.html","rhizosphere"]],"b":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["THOR_Rhizosphere_Model_Community.html","THOR Rhizosphere Model Community"]]},{"id":"ENVO:00002116","l":"contaminated soil","na":7,"nb":15,"a":[["hydrocarbon-habitatmech-gold-3c68e33a11.html","Hydrocarbon"],["persistent-organic-pollutant-bioremediation-material-habitatmech-gold-1a78606807.html","persistent organic pollutant bioremediation material"],["contaminated-soil-envo-00002116.html","contaminated soil"],["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"],["oil-contaminated-soil-envo-00002875.html","oil contaminated soil"],["pesticide-habitatmech-gold-8ebd2ee3c5.html","Pesticide"]],"b":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["DCPP_DBS4_DCP4_DCP11d_Degradation_SynCom.html","DCPP DBS4-DCP-4-DCP-11d Degradation SynCom"],["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"],["Ensifer_YF2_Sphingobacterium_Y2_Polyethylene_Degrading_Consortium.html","Ensifer YF2 + Sphingobacterium Y2 Polyethylene-degrading Consortium"]]},{"id":"NCBITaxon:40324","l":"Stenotrophomonas maltophilia","na":15,"nb":7,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["catheter-device-ncit-c50344.html","Catheter Device"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["seedling-bto-0001228.html","seedling"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["MAMC_M48_Lignocellulose.html","MAMC-M48 Lignocellulose-Degrading Consortium"],["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]]},{"id":"ENVO:00002043","l":"wastewater treatment plant","na":9,"nb":7,"a":[["a-o-treatment-system-habitatmech-gold-7c91485eb8.html","A/O treatment system"],["activated-sludge-habitatmech-gold-032b7dd40b.html","Activated sludge"],["aerobic-digester-habitatmech-gold-03fc563fae.html","Aerobic digester"],["anaerobic-digester-habitatmech-gold-3f58fb59be.html","Anaerobic digester"],["effluent-habitatmech-gold-827b5dbbef.html","Effluent"],["influent-habitatmech-gold-2bf3ab7d2f.html","Influent"]],"b":[["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"],["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Rhizorhabdus_Cupriavidus_BDE47_Degradation_SynCom.html","Rhizorhabdus-Cupriavidus BDE-47 Degradation SynCom"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":19,"nb":6,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["saline-water-body-envo-01001319.html","saline water body"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"],["Streptomyces_A2_A5_A11_M7_Pesticide_Consortium.html","Streptomyces A2-A5-A11-M7 Pesticide-Bioremediation Consortium"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":18,"nb":6,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"],["Microhabitat_Mineral_Fungal_Bacterial_SOM_SynCom.html","Microhabitat Mineral Fungal-Bacterial SOM SynCom"],["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]]},{"id":"UBERON:0000160","l":"intestine","na":11,"nb":6,"a":[["intestine-habitatmech-gold-f3f5ed6008.html","Intestine"],["intestine-habitatmech-gold-70ccbcfe44.html","Intestine"],["intestine-habitatmech-gold-8a75a65fc5.html","Intestine"],["intestine-habitatmech-gold-0171231ef5.html","Intestine"],["intestine-habitatmech-gold-523d63f6f3.html","Intestine"],["intestine-habitatmech-gold-394283d34e.html","Intestine"]],"b":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Honeybee_Core20_Defined_Microbiota.html","Honeybee Core-20 Defined Microbiota"],["OMM12_Gnotobiotic_Mouse_Gut_Community.html","OMM12 Gnotobiotic Mouse Gut Community"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]]},{"id":"NCBITaxon:1578","l":"Lactobacillus","na":20,"nb":5,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["blood-bto-0000089.html","blood"],["brain-bto-0000142.html","brain"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["hand-bto-0004668.html","hand"]],"b":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Drosophila_FiveSpecies_Gnotobiotic_Gut_Microbiota.html","Drosophila Five-Species Gnotobiotic Gut Microbiota"],["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"],["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]]},{"id":"ENVO:00002001","l":"waste water","na":19,"nb":5,"a":[["activated-sludge-habitatmech-gold-0d353772af.html","Activated Sludge"],["anaerobic-digestor-habitatmech-gold-ed87e682a9.html","Anaerobic digestor"],["industrial-wastewater-envo-01000964.html","industrial wastewater"],["municipal-landfill-habitatmech-gold-0f40aa60ce.html","Municipal landfill"],["nutrient-removal-habitatmech-gold-a18a70ae30.html","Nutrient removal"],["reclaimed-recycled-wastewater-habitatmech-gold-dc4dba910a.html","Reclaimed/Recycled wastewater"]],"b":[["Bay_Area_Sewage_SARS_CoV2_Surveillance_Community.html","San Francisco Bay Area Sewage SARS-CoV-2 Metagenomic Surveillance Community"],["Glutamicibacter_S11_Aquaculture_Nitrogen_Removal_SynCom.html","Glutamicibacter S11 Aquaculture Nitrogen Removal SynCom"],["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Staged_Cattle_Manure_Ensifer_Bacillus_SynCom.html","Staged Ensifer-Bacillus Cattle-Manure Wastewater SynCom"]]},{"id":"ENVO:00000043","l":"wetland area","na":14,"nb":5,"a":[["bog-habitatmech-gold-42a3b7b2d3.html","Bog"],["fen-habitatmech-gold-9de4fdaa2a.html","Fen"],["marsh-envo-00000035.html","marsh"],["microbial-mat-habitatmech-gold-e066163fc8.html","Microbial mat"],["sediment-habitatmech-gold-7db7617ea4.html","Sediment"],["sediment-habitatmech-gold-98d936714f.html","Sediment"]],"b":[["Asgard_Wetland_Soil_Methanogenesis_Substrate_Community.html","Asgard Archaea Wetland Soil Methanogenesis-Substrate Community"],["Coastal_Forested_Wetland_Seawater_Ion_Microcosm_Community.html","Coastal Forested Wetland Seawater-Ion Microcosm Community"],["MUCC_Freshwater_Wetland_Methane_Network_Community.html","MUCC Freshwater Wetland Methane-Cycling Network Community"],["Prairie_Pothole_Wetland_Sulfur_Carbon_Virus_Community.html","Prairie Pothole Wetland Sulfur-Carbon Virus-Host Community"],["Wetland_Oxygen_Sulfate_GHG_Microcosm_Community.html","Wetland Oxygen-Sulfate Greenhouse Gas Microcosm Community"]]},{"id":"ENVO:01001004","l":"groundwater","na":5,"nb":11,"a":[["contaminated-habitatmech-gold-66f93e3a62.html","Contaminated"],["contaminated-habitatmech-gold-33f4720550.html","Contaminated"],["groundwater-habitatmech-gold-22a80cbd14.html","Groundwater"],["groundwater-habitatmech-gold-7f8e268653.html","Groundwater"],["groundwater-envo-01001004.html","groundwater"]],"b":[["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Crystal_Geyser_CO2_Aquifer_CPR_Lipid_Community.html","Crystal Geyser CO2-Rich Aquifer Autotrophic CPR Lysolipid Community"],["Dehalococcoides_mccartyi_CWV2_Dechlorinating_Consortium.html","Dehalococcoides mccartyi CWV2 Dechlorinating Consortium"],["Episymbiotic_CPR_DPANN_Groundwater_Community.html","Episymbiotic CPR Bacteria and DPANN Archaea Groundwater Community"],["Groundwater_Elusimicrobia_Diverse_Metabolisms.html","Groundwater Elusimicrobia Diverse Metabolisms Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":33,"nb":4,"a":[["biofilm-envo-00002034.html","biofilm"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["pond-water-envo-00002228.html","pond water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["water-body-envo-00000063.html","water body"]],"b":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"],["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]]},{"id":"NCBITaxon:1485","l":"Clostridium","na":26,"nb":4,"a":[["biofilm-envo-00002034.html","biofilm"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["alimentary-canal-bto-0000058.html","alimentary canal"],["colon-bto-0000269.html","colon"]],"b":[["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["QY2S1_Dehalogenimonas_BFR_Bioremediation_Consortium.html","QY2-S1 Dehalogenimonas-Rich Brominated-Flame-Retardant Consortium"],["Tribromophenol_Anaerobic_Bioremediation_SynCom.html","Tribromophenol Anaerobic Bioremediation SynCom"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":19,"nb":4,"a":[["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["bone-element-uberon-0001474.html","bone element"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Bacillus_A1_A3_Naphthalene_Biofilm_Consortium.html","Bacillus A1-A3 Naphthalene Biofilm Consortium"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]]},{"id":"NCBITaxon:13687","l":"Sphingomonas","na":14,"nb":4,"a":[["crop-bto-0000301.html","crop"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["ileum-bto-0000620.html","ileum"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"]],"b":[["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"],["Wheat_Consortium_C6.html","Wheat Synthetic Consortium C6"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]]},{"id":"NCBITaxon:1590","l":"Lactiplantibacillus plantarum","na":14,"nb":4,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["food-fermented-foodon-00001258.html","food (fermented)"],["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"],["breast-bto-0000149.html","breast"],["colonic-epithelium-bto-0001709.html","colonic epithelium"],["epithelial-cell-bto-0000414.html","epithelial cell"]],"b":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Pichia_Lactiplantibacillus_CCMA_Plant_Beverage_Coculture.html","Pichia-Lactiplantibacillus CCMA Plant Beverage Coculture"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":11,"nb":4,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["fermentation-starter-envo-03600040.html","fermentation starter"],["fruit-bto-0000486.html","fruit"],["mammary-epithelial-cell-bto-0004300.html","mammary epithelial cell"],["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]]},{"id":"NCBITaxon:1827","l":"Rhodococcus","na":4,"nb":8,"a":[["nectar-bto-0000537.html","nectar"],["pitcher-bto-0001069.html","pitcher"],["small-intestine-bto-0000651.html","small intestine"],["stem-bto-0001300.html","stem"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"],["Pseudomonas_Rhodococcus_Chloronitrobenzene_Coculture.html","Pseudomonas-Rhodococcus Chloronitrobenzene Coculture"]]},{"id":"NCBITaxon:33038","l":"Mediterraneibacter gnavus","na":8,"nb":4,"a":[["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["juvenile-bto-0002168.html","juvenile"],["animal-litter-envo-00002191.html","animal litter"]],"b":[["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Clostridial_isoDCA_Mini_Consortium.html","Clostridial isoDCA Mini Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]]},{"id":"NCBITaxon:374","l":"Bradyrhizobium","na":4,"nb":5,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"],["wood-bto-0005516.html","wood"]],"b":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["Soybean_Chlorophyll_Selected_Biofertilizer_SynCom.html","Soybean Chlorophyll-Selected Biofertilizer SynCom"],["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]]},{"id":"NCBITaxon:37919","l":"Rhodococcus opacus","na":5,"nb":4,"a":[["watercourse-envo-00000029.html","watercourse"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"],["sludge-envo-00002044.html","sludge"],["water-scum-envo-00005794.html","water scum"]],"b":[["Methylocystis_Rhodococcus_Methane_VFA_PHBV_Coculture.html","Methylocystis-Rhodococcus Methane VFA PHBV Coculture"],["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"],["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":4,"nb":4,"a":[["stream-envo-00000023.html","stream"],["biome-envo-00000428.html","biome"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["SMutans_CAlbicans_ECC_Biofilm.html","Streptococcus mutans - Candida albicans ECC Biofilm Model"],["SMutans_SSputigena_ECC_Pathobiont.html","Streptococcus mutans - Selenomonas sputigena ECC Pathobiont Model"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]]},{"id":"ENVO:00002170","l":"compost","na":20,"nb":3,"a":[["compost-envo-00002170.html","compost"],["composting-habitatmech-gold-143ceb8669.html","Composting"],["composting-habitatmech-gold-edeecbabed.html","Composting"],["composting-habitatmech-gold-5948923b46.html","Composting"],["composting-habitatmech-gold-70db4820d1.html","Composting"],["composting-habitatmech-gold-cdbbd857c8.html","Composting"]],"b":[["Composting_SynCom_Lignocellulose_Degradation_Humus.html","Five-member bacterial-fungal composting SynCom for lignocellulose degradation"],["SF356_Cellulose_Degrader.html","SF356 Thermophilic Cellulose-Degrading Community"],["Thermophilic_Lignocellulose_Composting_SynCom_Biosanitization.html","Thermophilic Lignocellulose-degrading Composting SynCom"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":17,"nb":3,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["fruit-bto-0000486.html","fruit"],["leaf-po-0025034.html","leaf"],["rhizosphere-envo-00005801.html","rhizosphere"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"],["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]]},{"id":"ENVO:00002046","l":"activated sludge","na":16,"nb":3,"a":[["activated-sludge-habitatmech-gold-6ba6dd1c82.html","Activated sludge"],["activated-sludge-habitatmech-gold-adf7e16a3a.html","Activated sludge"],["activated-sludge-habitatmech-gold-25b680d9bc.html","Activated sludge"],["activated-sludge-habitatmech-gold-dab267c443.html","Activated sludge"],["activated-sludge-habitatmech-gold-43c33f3ecc.html","Activated sludge"],["activated-sludge-habitatmech-gold-f459151394.html","Activated sludge"]],"b":[["Aalborg_East_Full_Scale_EBPR_Community.html","Aalborg East Full-Scale EBPR Activated Sludge Community"],["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["NCycle_Bioflocculation_Model_Consortium.html","N-Cycle Bioflocculation Model Consortium"]]},{"id":"NCBITaxon:1667","l":"Arthrobacter sp.","na":9,"nb":3,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["leaf-po-0025034.html","leaf"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":8,"nb":3,"a":[["reservoir-envo-00000025.html","reservoir"],["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["secretion-bto-0002979.html","secretion"],["stomach-bto-0001307.html","stomach"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":8,"nb":3,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["lab-synthesis-habitatmech-bacdive-0e92e77cd4.html","Lab-synthesis"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["oil-spill-envo-00002061.html","oil spill"],["temperate-envo-01000206.html","temperate"]],"b":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":5,"nb":3,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["pseudostem-bto-0005992.html","pseudostem"],["seedling-bto-0001228.html","seedling"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["soil-envo-00001998.html","soil"]],"b":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]]},{"id":"ENVO:00000044","l":"peatland","na":4,"nb":3,"a":[["bog-habitatmech-gold-42a3b7b2d3.html","Bog"],["blanket-bog-envo-00000511.html","blanket bog"],["fen-envo-00000232.html","fen"],["peatland-envo-00000044.html","peatland"]],"b":[["SPRUCE_Peatland_Methane_Cycling_Community.html","SPRUCE Peatland Methane-Cycling Microbial Community"],["SPRUCE_Peatland_Warming_Community.html","SPRUCE Peatland Warming Microbial Community"],["Stordalen_Mire_Methylotrophic_Methanogenesis_Community.html","Stordalen Mire Methylotrophic Methanogenesis Community"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":3,"nb":4,"a":[["milk-uberon-0001913.html","milk"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]]},{"id":"NCBITaxon:1534","l":"Clostridium kluyveri","na":3,"nb":4,"a":[["reservoir-envo-00000025.html","reservoir"],["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"]],"b":[["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"],["Clostridium_Autoethanogenum_Kluyveri_Syngas_Coculture.html","Clostridium autoethanogenum-Clostridium kluyveri Syngas Coculture"],["Clostridium_Carboxidivorans_Kluyveri_CO_Chain_Elongation_Coculture.html","Clostridium carboxidivorans-Clostridium kluyveri CO Chain-Elongation Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]]},{"id":"NCBITaxon:237","l":"Flavobacterium","na":3,"nb":4,"a":[["column-bto-0005692.html","column"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["Choysum_SynLAV_DEHP_Rhizobacterial_SynCom.html","Choysum SynLAV DEHP-Degrading Rhizobacterial SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]]},{"id":"NCBITaxon:3055","l":"Chlamydomonas reinhardtii","na":4,"nb":3,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["large-river-biome-envo-00000887.html","large river biome"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["pond-water-envo-00002228.html","pond water"]],"b":[["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Saccharomyces_Chlamydomonas_Fungal_Algal_Mutualism.html","Saccharomyces-Chlamydomonas Fungal-Algal Mutualism"]]},{"id":"NCBITaxon:32008","l":"Burkholderia","na":3,"nb":4,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["midgut-bto-0000863.html","midgut"]],"b":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Miscanthus_REE_Tailings_Nitrogen_SynCom10.html","Miscanthus REE Tailings Nitrogen SynCom10"],["mCAFEs_Brachypodium_RCC.html","m-CAFEs Brachypodium Reduced Complexity Consortia"]]},{"id":"NCBITaxon:216816","l":"Bifidobacterium longum","na":3,"nb":3,"a":[["coral-reef-envo-00000150.html","coral reef"],["egg-food-product-foodon-00001274.html","egg food product"],["juvenile-bto-0002168.html","juvenile"]],"b":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]]},{"id":"NCBITaxon:239935","l":"Akkermansia muciniphila","na":3,"nb":3,"a":[["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["secretion-bto-0002979.html","secretion"]],"b":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":3,"nb":3,"a":[["liquid-water-envo-00002006.html","liquid water"],["sludge-envo-00002044.html","sludge"],["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"],["Pseudomonas_stutzeri_Rhodococcus_Naphthalene_Biochar_Engineered_Consortium.html","Pseudomonas stutzeri + Rhodococcus Naphthalene-degrading Biochar-bridged Engineered Consortium"]]},{"id":"ENVO:01001405","l":"laboratory environment","na":2,"nb":198,"a":[["genetic-cross-habitatmech-gold-ba9317369a.html","Genetic cross"],["laboratory-environment-envo-01001405.html","laboratory environment"]],"b":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Acetylene_Fueled_TCE_Dechlorination_Groundwater_Enrichment.html","Acetylene-Fueled Trichloroethene Dechlorination Groundwater Enrichment"],["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"]]},{"id":"ENVO:00005801","l":"rhizosphere","na":2,"nb":62,"a":[["rhizosphere-envo-00005801.html","rhizosphere"],["soil-habitatmech-gold-067f7f5e2a.html","Soil"]],"b":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Arabidopsis_Coumarin_Root_SynCom.html","Arabidopsis Coumarin Root SynCom"],["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"],["Avena_Rhizosphere_Detritusphere_Niche_Succession.html","Avena Rhizosphere and Detritusphere Niche-Differentiated Decomposer Guilds"],["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":40,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["laboratory-facility-envo-01001406.html","laboratory facility"],["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["biofilm-bto-0002690.html","biofilm"]],"b":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"],["Staphylococcus_Candida_Context_Dependent_Biofilm_Coculture.html","Staphylococcus-Candida Context-Dependent Biofilm Coculture"]]},{"id":"ENVO:00002124","l":"anaerobic bioreactor","na":20,"nb":2,"a":[["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["anaerobic-sludge-envo-00002129.html","anaerobic sludge"],["anaerobic-sludge-blanket-reactor-envo-00002213.html","anaerobic sludge blanket reactor"],["biofilm-habitatmech-gold-6c12d05420.html","Biofilm"],["biogas-envo-01000556.html","biogas"],["biomass-habitatmech-gold-6dd85a8177.html","Biomass"]],"b":[["Multi_stage_Anaerobic_Digestion_SynCom_YSJ_and_SynCom_J.html","Multi-stage Anaerobic-Digestion SynCom-YSJ and SynCom-J"],["Shewanella_Pseudomonas_Fe0_Electrosyntrophic_Denitrifying_Consortium.html","Shewanella oneidensis + Pseudomonas aeruginosa Fe0-dependent Electro-syntrophic Denitrifying Consortium"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":14,"nb":2,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["compost-envo-00002170.html","compost"],["organic-waste-material-envo-00002873.html","organic waste material"],["larva-bto-0000707.html","larva"],["rhizosphere-envo-00005801.html","rhizosphere"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["Bacillus_G12_Y4_X25_Tobacco_Biocontrol_SynCom.html","Bacillus G12-Y4-X25 Tobacco Biocontrol SynCom"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"]]},{"id":"ENVO:00000051","l":"hot spring","na":13,"nb":2,"a":[["acid-lake-habitatmech-gold-21e53e7981.html","Acid lake"],["geothermal-pool-hot-lake-habitatmech-gold-d2132d09ae.html","Geothermal pool/Hot lake"],["hot-42-90c-habitatmech-gold-c085f6141a.html","Hot (42-90C)"],["hot-spring-envo-00000051.html","hot spring"],["microbial-mats-habitatmech-gold-a0372e2d63.html","Microbial mats"],["near-boiling-90c-habitatmech-gold-8b53067bc5.html","Near-boiling (>90C)"]],"b":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"],["Ngawha_Geothermal_Mercury_Cycling_Community.html","Ngawha Geothermal Acidic Springs Mercury Cycling Community"]]},{"id":"UBERON:0001007","l":"digestive system","na":13,"nb":2,"a":[["digestive-system-habitatmech-gold-26a84185d3.html","Digestive system"],["digestive-system-habitatmech-gold-6eecdf150d.html","Digestive system"],["digestive-system-habitatmech-gold-d7cff86ce8.html","Digestive system"],["digestive-system-habitatmech-gold-8a68d0f6f5.html","Digestive system"],["digestive-system-habitatmech-gold-c1d7082e4b.html","Digestive system"],["digestive-system-habitatmech-gold-f6720bccf0.html","Digestive system"]],"b":[["LBNL_Human_Gut_Interaction_SynCom.html","LBNL Human Gut Interaction SynCom"],["hCom2_Complex_Gut_Microbiome.html","hCom2 Complex Gut Microbiome"]]},{"id":"NCBITaxon:1117","l":"Cyanobacteriota","na":11,"nb":2,"a":[["cecum-bto-0000166.html","cecum"],["colon-bto-0000269.html","colon"],["gut-bto-0000545.html","gut"],["head-bto-0000282.html","head"],["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"]],"b":[["Model_Cyanobacterial_Consortia_Core_Microbiome.html","Model Cyanobacterial Consortia Core Microbiome"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]]},{"id":"ENVO:00001997","l":"acid mine drainage","na":2,"nb":9,"a":[["acid-mine-drainage-envo-00001997.html","acid mine drainage"],["sediment-habitatmech-gold-7e27a52150.html","Sediment"]],"b":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"],["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Cyprus_Copper_Sulphide_Bioleaching_Consortium.html","Cyprus Copper Sulphide Bioleaching Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Hualgayoc_Acidic_Sulfate_Reducing_AMD_Consortium.html","Hualgayoc Acidic Sulfate-Reducing AMD Consortium"],["Iberian_Pit_Lake_Stratified_Community.html","Iberian Pit Lake Stratified Community"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":9,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["mud-envo-01000001.html","mud"]],"b":[["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["Rice_FSQN_Rhizosphere_Microbiome_SynCom.html","Rice FSQN Rhizosphere Microbiome SynCom"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":8,"nb":2,"a":[["groundwater-envo-01001004.html","groundwater"],["bioreactor-envo-00002123.html","bioreactor"],["river-envo-00000022.html","river"],["freshwater-environment-envo-01000306.html","freshwater environment"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["Rhodopseudomonas_Ecoli_CrossFeeding_Coculture.html","Rhodopseudomonas-E. coli Cross-Feeding Coculture"],["Shewanella_oneidensis_Rhodopseudomonas_palustris_Electrosyntrophic_Coculture.html","Shewanella oneidensis MR-1 - Rhodopseudomonas palustris Electro-syntrophic Co-culture"]]},{"id":"ENVO:03600040","l":"fermentation starter","na":2,"nb":7,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["active-sourdough-starter-habitatmech-gold-3153798c1a.html","active sourdough starter"]],"b":[["Bacillus_Saccharomyces_Daqu_Spatial_Cooperation_SynCom.html","Bacillus-Saccharomyces Daqu Spatial-Cooperation SynCom"],["Jiangshui_LAB_Directed_Fermentation_SynCom.html","Jiangshui LAB Directed Fermentation SynCom"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Sichuan_Shai_Vinegar_Yeast_Flavor_SynCom.html","Sichuan Shai Vinegar Yeast Flavor SynCom"],["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"],["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]]},{"id":"NCBITaxon:28216","l":"Betaproteobacteria","na":7,"nb":2,"a":[["column-bto-0005692.html","column"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["spike-bto-0001278.html","spike"]],"b":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":7,"nb":2,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["liquid-water-envo-00002006.html","liquid water"],["crown-gall-bto-0000303.html","crown gall"],["finger-bto-0004669.html","finger"],["resting-cell-bto-0001170.html","resting cell"],["water-scum-envo-00005794.html","water scum"]],"b":[["Chlorella_Rhizobium_Bioflocculation.html","Chlorella-Rhizobium Bioflocculation"],["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]]},{"id":"NCBITaxon:1236","l":"Gammaproteobacteria","na":6,"nb":2,"a":[["column-bto-0005692.html","column"],["hemolymph-bto-0000572.html","hemolymph"],["oil-secretion-bto-0005373.html","oil secretion"],["spike-bto-0001278.html","spike"],["urine-bto-0001419.html","urine"],["subtropical-envo-01000205.html","subtropical"]],"b":[["Saanich_Inlet_OMZ_Redox_Gradient_Community.html","Saanich Inlet Oxygen Minimum Zone Redox-Gradient Community"],["Wolffia_Mankai_Endosphere_Cobamide_Guild.html","Wolffia Mankai Endosphere Cobamide Guild"]]},{"id":"NCBITaxon:1305","l":"Streptococcus sanguinis","na":6,"nb":2,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["throat-bto-0000828.html","throat"],["geographic-feature-envo-00000000.html","geographic feature"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"],["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]]},{"id":"NCBITaxon:253","l":"Chryseobacterium indologenes","na":6,"nb":2,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["seedling-bto-0001228.html","seedling"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["tropical-envo-01000204.html","tropical"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"]]},{"id":"NCBITaxon:28211","l":"Alphaproteobacteria","na":6,"nb":2,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"],["alimentary-canal-bto-0000058.html","alimentary canal"],["column-bto-0005692.html","column"],["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["spike-bto-0001278.html","spike"]],"b":[["Naica_Deep_Subsurface_Thermophilic.html","Naica Deep Subsurface Thermophilic Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]]},{"id":"ENVO:00002003","l":"fecal material","na":2,"nb":5,"a":[["frass-habitatmech-gold-319c3f351e.html","Frass"],["frass-habitatmech-gold-67f3cde908.html","Frass"]],"b":[["Bifidobacterium_Ruminococcus_Infant_HMO_CrossFeeding.html","Bifidobacterium-Ruminococcus Infant HMO Cross-Feeding Coculture"],["Candida_Parapsilosis_Hospitalized_Infant_Microbiome.html","Candida parapsilosis Hospitalized Infant Gut Microbiome Community"],["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Premature_Infant_Gut_Escherichia_Diametric_Ratio_Community.html","Premature Infant Gut Escherichia In-Situ Physiological-Condition Community"]]},{"id":"NCBITaxon:145262","l":"Methanothermobacter thermautotrophicus","na":5,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["intestine-environment-envo-2100002.html","intestine environment"],["sludge-envo-00002044.html","sludge"]],"b":[["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"],["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]]},{"id":"NCBITaxon:1883","l":"Streptomyces","na":2,"nb":5,"a":[["crop-bto-0000301.html","crop"],["lab-synthesis-habitatmech-bacdive-0e92e77cd4.html","Lab-synthesis"]],"b":[["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["Wheat_Consortium_C6.html","Wheat Synthetic Consortium C6"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]]},{"id":"NCBITaxon:1335","l":"Streptococcus equinus","na":4,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["stomach-bto-0001307.html","stomach"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":4,"nb":2,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["carcass-envo-00002033.html","carcass"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["sludge-envo-00002044.html","sludge"]],"b":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"],["Poultry_Wastewater_ThreeStrain_Electroactive_Consortium.html","Poultry-Wastewater Three-Strain Electroactive Consortium"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":4,"nb":2,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Bacillus_Pseudomonas_Galveston_PET_Consortium.html","Bacillus-Pseudomonas Galveston PET Consortium"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]]},{"id":"NCBITaxon:165695","l":"Sphingobium","na":2,"nb":4,"a":[["juvenile-bto-0002168.html","juvenile"],["leaf-bto-0000713.html","leaf"]],"b":[["ORNL_PMI_Populus_PD10_SynCom.html","ORNL PMI Populus PD10 SynCom"],["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["Sphingobium_Nitrososphaera_Phenanthrene_Carbon_SynCom.html","Sphingobium-Nitrososphaera Phenanthrene-Carbon SynCom"],["Sphingobium_Rhodococcus_Lignin_Dimer_Valorization_Coculture.html","Sphingobium-Rhodococcus Lignin-Dimer Valorization Coculture"]]},{"id":"NCBITaxon:1678","l":"Bifidobacterium","na":2,"nb":4,"a":[["ileum-bto-0000620.html","ileum"],["juvenile-bto-0002168.html","juvenile"]],"b":[["GLBRC_UFMP_Fermentation_Community.html","GLBRC Ultra-Filtered Milk Permeate Fermentation Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"NCBITaxon:33882","l":"Microbacterium","na":4,"nb":2,"a":[["leaf-bto-0000713.html","leaf"],["pitcher-bto-0001069.html","pitcher"],["small-intestine-bto-0000651.html","small intestine"],["stem-bto-0001300.html","stem"]],"b":[["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]]},{"id":"NCBITaxon:816","l":"Bacteroides","na":2,"nb":4,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["colon-bto-0000269.html","colon"]],"b":[["Infant_Gut_DNA_Phage_Succession_Community.html","Infant Gut DNA Phageome Succession Community"],["Infant_Gut_Prebiotic_Response_SynCom.html","Infant-gut Prebiotic-response SynCom"],["Infant_Gut_Strain_Persistence_Maternal_Community.html","Infant Gut Strain Persistence and Maternal Seeding Community"],["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":2,"nb":4,"a":[["hospital-envo-00002173.html","hospital"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]]},{"id":"NCBITaxon:105841","l":"Anaerostipes caccae","na":3,"nb":2,"a":[["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["emulsion-envo-00010506.html","emulsion"],["organic-feature-envo-01000159.html","organic feature"]],"b":[["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]]},{"id":"NCBITaxon:1492","l":"Clostridium butyricum","na":3,"nb":2,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["intestine-environment-envo-2100002.html","intestine environment"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":2,"nb":3,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["Ecoli_Bifidobacterium_bifidum_Infant_gut_HMO_Mutualism_Coculture.html","Escherichia coli + Bifidobacterium bifidum Infant-gut Mutualistic Co-culture"]]},{"id":"NCBITaxon:203682","l":"Planctomycetota","na":2,"nb":3,"a":[["column-bto-0005692.html","column"],["crop-bto-0000301.html","crop"]],"b":[["Anammox_Bioreactor_DNRA_Destabilization_Community.html","Anammox Bioreactor DNRA Destabilization Community"],["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"],["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"]]},{"id":"NCBITaxon:2208","l":"Methanosarcina barkeri","na":2,"nb":3,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["sludge-envo-00002044.html","sludge"]],"b":[["DVM_Triculture.html","DVM Tri-culture"],["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"]]},{"id":"NCBITaxon:28108","l":"Alteromonas macleodii","na":3,"nb":2,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["marine-water-body-envo-00001999.html","marine water body"],["sandstone-envo-00002055.html","sandstone"]],"b":[["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"],["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]]},{"id":"NCBITaxon:29466","l":"Veillonella parvula","na":3,"nb":2,"a":[["dental-plaque-bto-0000338.html","dental plaque"],["juvenile-bto-0002168.html","juvenile"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["SMutans_VParvula_ASC_Biofilm.html","Streptococcus mutans - Veillonella parvula Adult Severe Caries Model"]]},{"id":"NCBITaxon:33059","l":"Acidithiobacillus caldus","na":3,"nb":2,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["paddy-field-envo-00000297.html","paddy field"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]]},{"id":"NCBITaxon:33959","l":"Lactobacillus johnsonii","na":3,"nb":2,"a":[["animal-litter-envo-00002191.html","animal litter"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":3,"nb":2,"a":[["bile-bto-0000121.html","bile"],["rectum-bto-0001158.html","rectum"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["Aerobic_Denitrification_Disturbance_SynCom.html","Aerobic Denitrification Disturbance-Stable SynCom"],["Aerobic_Denitrification_QQ_SynCom.html","Aerobic Denitrification Quorum-Quenching SynCom"]]},{"id":"NCBITaxon:528","l":"Ochrobactrum","na":2,"nb":3,"a":[["pitcher-bto-0001069.html","pitcher"],["small-intestine-bto-0000651.html","small intestine"]],"b":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["Hexamine_Formaldehyde_Consortium_C6.html","Hexamine Formaldehyde Consortium C6"],["PPCP_Wastewater_Sphingopyxis_Ochrobactrum_Apiotrichum_SMC.html","PPCP Wastewater Sphingopyxis-Ochrobactrum-Apiotrichum SMC"]]},{"id":"NCBITaxon:853","l":"Faecalibacterium prausnitzii","na":2,"nb":3,"a":[["coral-reef-envo-00000150.html","coral reef"],["tropical-envo-01000204.html","tropical"]],"b":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"]]},{"id":"NCBITaxon:110500","l":"Pelotomaculum thermopropionicum","na":2,"nb":2,"a":[["river-envo-00000022.html","river"],["subpolar-coniferous-forest-biome-envo-01000250.html","subpolar coniferous forest biome"]],"b":[["Pelotomaculum_Methanocella_Propionate_RNASeq_Coculture.html","Pelotomaculum-Methanocella Propionate RNA-Seq Coculture"],["Pelotomaculum_Methanothermobacter_Syntrophy.html","Pelotomaculum-Methanothermobacter Syntrophic Consortium"]]},{"id":"NCBITaxon:1234","l":"Nitrospira","na":2,"nb":2,"a":[["crop-bto-0000301.html","crop"],["seedling-bto-0001228.html","seedling"]],"b":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"]]},{"id":"NCBITaxon:244366","l":"Klebsiella variicola","na":2,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"],["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]]},{"id":"NCBITaxon:28034","l":"Sulfobacillus thermosulfidooxidans","na":2,"nb":2,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Thermophilic_Pyrite_QS_Consortium.html","Thermophilic Pyrite Quorum Sensing Consortium"]]},{"id":"NCBITaxon:357809","l":"Lachnoclostridium phytofermentans ISDg","na":2,"nb":2,"a":[["reservoir-envo-00000025.html","reservoir"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["Clostridium_Phytofermentans_Ecoli_Cellobiose_Biofilm_Consortium.html","Clostridium phytofermentans-E. coli Cellobiose Biofilm Consortium"],["Clostridium_Saccharomyces_Cellulose_Ethanol_Coculture.html","Clostridium-Saccharomyces Cellulose Ethanol Coculture"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":2,"nb":2,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]]},{"id":"NCBITaxon:39488","l":"Anaerobutyricum hallii","na":2,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"],["harbour-envo-00000463.html","harbour"]],"b":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]]},{"id":"NCBITaxon:4577","l":"Zea mays","na":2,"nb":2,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"],["Maize_SC2_RootRot_Biocontrol_SynCom.html","Maize SC2 Root-Rot Biocontrol SynCom"]]},{"id":"NCBITaxon:84567","l":"Pedobacter","na":2,"nb":2,"a":[["air-envo-00002005.html","air"],["glacier-envo-00000133.html","glacier"]],"b":[["Pseudomonas_Pedobacter_Social_Spreading_Coculture.html","Pseudomonas-Pedobacter Social Spreading Coculture"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]]},{"id":"CHEBI:16183","l":"methane","na":1,"nb":62,"a":[["methane-bioremediation-material-habitatmech-gold-d510166905.html","methane bioremediation material"]],"b":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"],["ANME_SRB_Marine_Methane_Seep_Consortium.html","ANME-SRB Marine Methane Seep Consortium"],["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"],["Algal_Methanotroph_Biogas_Valorization_Coculture.html","Algal-Methanotroph Biogas Valorization Coculture"],["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"]]},{"id":"ENVO:01001002","l":"animal-associated environment","na":47,"nb":1,"a":[["amphibian-associated-environment-habitatmech-gold-0cd585a031.html","amphibian-associated environment"],["annelid-associated-environment-habitatmech-gold-6e10201167.html","annelid-associated environment"],["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["chelicerate-associated-environment-habitatmech-gold-44a2cbbd60.html","chelicerate-associated environment"],["crustacean-associated-environment-habitatmech-gold-2959225799.html","crustacean-associated environment"],["insect-associated-environment-habitatmech-gold-dba2a83b95.html","insect-associated environment"]],"b":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":25,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-water-body-envo-00001999.html","marine water body"],["sea-water-envo-00002149.html","sea water"],["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]]},{"id":"NCBITaxon:1279","l":"Staphylococcus","na":23,"nb":1,"a":[["adult-bto-0001043.html","adult"],["cecum-bto-0000166.html","cecum"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["head-bto-0000282.html","head"]],"b":[["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"]]},{"id":"NCBITaxon:1301","l":"Streptococcus","na":23,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["head-bto-0000282.html","head"]],"b":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"NCBITaxon:106592","l":"Ensifer adhaerens","na":20,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["MSC2_Model_Soil_Consortium.html","Model Soil Consortium-2 (MSC-2)"]]},{"id":"ENVO:2100002","l":"intestine environment","na":1,"nb":17,"a":[["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"],["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"],["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Bifidobacterium_Faecalibacterium_2FL_FOS_Butyrate_Coculture.html","Bifidobacterium-Faecalibacterium 2′-FL/FOS Butyrate Coculture"],["BioModels_MODEL2310020001_Mouse_Metaorganism_Model.html","BioModels MODEL2310020001 Mouse Metaorganism Model"]]},{"id":"ENVO:00000021","l":"freshwater lake","na":16,"nb":1,"a":[["algal-bloom-envo-2000004.html","algal bloom"],["anoxic-zone-habitatmech-gold-b75e4aa08f.html","Anoxic zone"],["aphotic-zone-habitatmech-gold-fcba7e6334.html","Aphotic zone"],["biofilm-habitatmech-gold-748b381af4.html","Biofilm"],["cyanobacterial-aggregates-habitatmech-gold-9b43a12f0c.html","Cyanobacterial aggregates"],["cyanobacterial-bloom-envo-03600071.html","cyanobacterial bloom"]],"b":[["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"]]},{"id":"NCBITaxon:1598","l":"Limosilactobacillus reuteri","na":14,"nb":1,"a":[["cecum-mucosa-bto-0000213.html","cecum mucosa"],["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["ileum-bto-0000620.html","ileum"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"]],"b":[["Multispecies_Probiotic_MV_Luteolin_Consortium.html","CICC Three-Strain Probiotic M-MV Luteolin Consortium"]]},{"id":"NCBITaxon:1264","l":"Hominimerdicola alba","na":13,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["stream-envo-00000023.html","stream"],["animal-house-envo-00003040.html","animal house"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biome-envo-00000428.html","biome"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"]],"b":[["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic Rumen Consortium"]]},{"id":"NCBITaxon:1350","l":"Enterococcus","na":13,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["dorsum-bto-0001713.html","dorsum"],["hand-bto-0004668.html","hand"],["intestine-bto-0000648.html","intestine"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"]],"b":[["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"]]},{"id":"ENVO:01000320","l":"marine environment","na":1,"nb":12,"a":[["marine-environment-envo-01000320.html","marine environment"]],"b":[["Coscinodiscus_Synthetic_Community.html","Coscinodiscus Synthetic Community"],["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"],["Emiliania_Phaeobacter_Dynamic_Interaction.html","Emiliania huxleyi-Phaeobacter inhibens Dynamic Interaction"],["GOM_Oil_Degrading_Consortium.html","Gulf of Mexico Oil-Degrading Consortium"],["Ostreococcus_Dinoroseobacter_BVitamin_Mutualism.html","Ostreococcus-Dinoroseobacter B-Vitamin Mutualism"],["Prochlorococcus_Alteromonas_Helper_Coculture.html","Prochlorococcus-Alteromonas Helper Coculture"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":11,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"],["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["laboratory-facility-envo-01001406.html","laboratory facility"],["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["bone-element-uberon-0001474.html","bone element"],["juvenile-bto-0002168.html","juvenile"]],"b":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]]},{"id":"ENVO:00000020","l":"lake","na":10,"nb":1,"a":[["aphotic-zone-habitatmech-gold-fcba7e6334.html","Aphotic zone"],["freshwater-lake-envo-00000021.html","freshwater lake"],["glacial-lake-envo-00000488.html","glacial lake"],["lake-envo-00000020.html","lake"],["lake-habitatmech-gold-713c7f352a.html","Lake"],["marine-lake-envo-03600041.html","marine lake"]],"b":[["Lac_Pavin_Stratified_Lake_Community.html","Lac Pavin Permanently Stratified Lake Community"]]},{"id":"NCBITaxon:1399","l":"Cytobacillus firmus","na":10,"nb":1,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"],["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["Pepper_Phytophthora_SynCom5.html","Pepper Phytophthora-Resistance SynCom5"]]},{"id":"NCBITaxon:33075","l":"Acidobacterium capsulatum","na":10,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["paddy-field-envo-00000297.html","paddy field"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"],["area-of-tundra-envo-00000112.html","area of tundra"],["forested-area-envo-00000111.html","forested area"],["mountain-pass-envo-00000084.html","mountain pass"]],"b":[["AMD_Acidophile_Heterotroph_Network.html","AMD Acidophile Heterotroph Network"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":10,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["air-conditioning-unit-envo-00002874.html","air conditioning unit"],["leaf-bto-0000713.html","leaf"],["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"]]},{"id":"NCBITaxon:47715","l":"Lacticaseibacillus rhamnosus","na":10,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["fermentation-starter-envo-03600040.html","fermentation starter"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]]},{"id":"ENVO:01000747","l":"regolith","na":1,"nb":9,"a":[["regolith-envo-01000747.html","regolith"]],"b":[["BioAsteroid_ISS_Chondrite_Biomining_Consortium.html","BioAsteroid ISS Chondrite Biomining Consortium"],["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"],["Lunar_Martian_Simulant_PGPB_Lettuce_SynCom.html","Lunar and Martian Simulant PGPB Lettuce SynCom"],["Lunar_Simulant_Phosphate_Solubilizing_Bacteria_Nicotiana.html","Lunar Regolith Simulant Phosphorus-Solubilizing Bacteria for Nicotiana benthamiana"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":9,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["fresh-water-envo-00002011.html","fresh water"],["river-envo-00000022.html","river"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["Cellulomonas_Rhodobacter_Cellulose_Photohydrogen_Coculture.html","Cellulomonas-Rhodobacter Cellulose Photohydrogen Coculture"]]},{"id":"NCBITaxon:1224","l":"Pseudomonadota","na":1,"nb":8,"a":[["hemolymph-bto-0000572.html","hemolymph"]],"b":[["Arabidopsis_Bacillus_Biocontrol_SynCom150.html","Arabidopsis Bacillus Biocontrol SynCom150"],["Brachypodium_Young_Root_Rhizosphere_EcoFAB_Community.html","Brachypodium Young Root Rhizosphere EcoFAB Community"],["Hanford_300_Area_Unconfined_Aquifer_Community.html","Hanford 300 Area Unconfined Aquifer Community"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":8,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["alimentary-canal-bto-0000058.html","alimentary canal"],["blood-bto-0000089.html","blood"],["small-intestine-bto-0000651.html","small intestine"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["geographic-feature-envo-00000000.html","geographic feature"]],"b":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]]},{"id":"NCBITaxon:1655","l":"Actinomyces naeslundii","na":8,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"],["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"],["archeological-site-envo-00000564.html","archeological site"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]]},{"id":"NCBITaxon:171550","l":"Rikenellaceae","na":8,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["ileum-bto-0000620.html","ileum"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"]],"b":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"ENVO:00000003","l":"mine tailing","na":1,"nb":7,"a":[["mine-tailing-envo-00000003.html","mine tailing"]],"b":[["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Bayan_Obo_REE_Tailings_Consortium.html","Bayan Obo REE Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]]},{"id":"ENVO:00003862","l":"dairy","na":1,"nb":7,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"],["Cheese_Rind_InSitu_InVitro_Model_Community.html","Cheese Rind In Situ-In Vitro Model Community"],["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"],["Kefir_Flavor_Lentilactobacillus_Kluyveromyces_Coculture.html","Kefir Flavor Lentilactobacillus-Kluyveromyces Coculture"],["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"],["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]]},{"id":"ENVO:00003965","l":"anaerobic digester sludge","na":1,"nb":7,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"]],"b":[["Anabaena_MGS1_Anaerobic_Digestion_Methanogen_Consortium.html","Anabaena / MGS-1 Anaerobic-Digestion Methanogen Consortium"],["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"],["High_Ammonia_Biogas_0B_Butyrate_Oxidizing_Enrichment.html","High-Ammonia Biogas 0B Butyrate-Oxidizing Enrichment"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Magnetite_Sulfate_Stress_Anaerobic_Microbiome.html","Magnetite Sulfate-Stress Anaerobic Microbiome"],["Thermophilic_ExSitu_Biomethanation_Mixed_Culture.html","Thermophilic Ex-Situ Biomethanation Mixed Culture"]]},{"id":"ENVO:00005750","l":"grassland soil","na":1,"nb":7,"a":[["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["Angelarchaeales_Thermoplasmata_CuMMO_Soil_Sediment_Community.html","Angelarchaeales Thermoplasmata CuMMO Soil and Sediment Community"],["California_Grassland_Precipitation_Legacy_Soil_Community.html","California Grassland Precipitation Legacy Soil Community"],["Grassland_Soil_WetUp_Virus_Host_Community.html","Grassland Soil Wet-Up Virus-Host Community"],["Mediterranean_Grassland_qSIP_Rainfall_Community.html","Mediterranean Grassland qSIP Rainfall-Gradient Community"],["Soil_BGC_Phylum_Depth_Vegetation_Community.html","Soil Biosynthetic Gene Cluster Phylum-Depth-Vegetation Community"],["Soil_CPR_Nanoarchaea_Rare_Biosphere_Community.html","Soil CPR Bacteria and Nanoarchaea Rare-Biosphere Community"]]},{"id":"ENVO:01000313","l":"anthropogenic environment","na":7,"nb":1,"a":[["laboratory-environment-envo-01001405.html","laboratory environment"],["subway-environment-habitatmech-gold-961229841c.html","subway environment"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["cultivated-environment-envo-01000311.html","cultivated environment"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["Pleuromutilin_Degrading_Artificial_Consortium_5_Strain.html","Pleuromutilin-degrading Artificial Consortium (5-strain)"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":7,"nb":1,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["farm-envo-00000078.html","farm"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"]]},{"id":"NCBITaxon:1107","l":"Chloroflexus","na":7,"nb":1,"a":[["crop-bto-0000301.html","crop"],["gut-bto-0000545.html","gut"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["seedling-bto-0001228.html","seedling"],["skin-bto-0001253.html","skin"]],"b":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]]},{"id":"NCBITaxon:1243","l":"Leuconostoc","na":7,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["intestine-bto-0000648.html","intestine"],["mouth-bto-0001090.html","mouth"],["stem-bto-0001300.html","stem"]],"b":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]]},{"id":"NCBITaxon:13690","l":"Sphingobium yanoikuyae","na":7,"nb":1,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["resting-cell-bto-0001170.html","resting cell"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"],["water-scum-envo-00005794.html","water scum"]],"b":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]]},{"id":"NCBITaxon:165179","l":"Segatella copri","na":7,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["juvenile-bto-0002168.html","juvenile"],["rumen-uberon-0007365.html","rumen"],["tongue-bto-0001385.html","tongue"],["vaginal-fluid-bto-0003084.html","vaginal fluid"],["animal-litter-envo-00002191.html","animal litter"]],"b":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":7,"nb":1,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["pseudostem-bto-0005992.html","pseudostem"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"]]},{"id":"NCBITaxon:40323","l":"Stenotrophomonas","na":1,"nb":7,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"],["Chlamydomonas_Bacterial_H2_Consortium.html","Chlamydomonas-Bacterial Hydrogen Production Consortium"],["Community_G_GenX_Biodegradation_Consortium.html","Community G GenX Biodegradation Consortium"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"],["Lupinus_SC7_Rhizosphere_SynCom.html","Lupinus SC-7 Rhizosphere SynCom"],["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"]]},{"id":"NCBITaxon:469","l":"Acinetobacter","na":7,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["endotracheal-fluid-ncit-c171504.html","Endotracheal Fluid"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"],["pseudostem-bto-0005992.html","pseudostem"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"]],"b":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]]},{"id":"NCBITaxon:56780","l":"Syntrophus aciditrophicus SB","na":7,"nb":1,"a":[["bay-envo-00000032.html","bay"],["black-smoker-envo-00000218.html","black smoker"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["saline-water-envo-00002010.html","saline water"],["village-biome-envo-01000246.html","village biome"]],"b":[["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"]]},{"id":"ENVO:01000001","l":"mud","na":6,"nb":1,"a":[["marine-mud-envo-00005795.html","marine mud"],["mud-habitatmech-gold-cdf0825f85.html","Mud"],["anaerobic-mud-envo-00002133.html","anaerobic mud"],["estuarine-mud-envo-00002160.html","estuarine mud"],["mud-envo-01000001.html","mud"],["mud-habitatmech-gold-16370f2eb5.html","Mud"]],"b":[["Baijiu_Pit_Mud_Hexanoic_Acid_SynCom_G4.html","Baijiu Pit Mud Hexanoic Acid SynCom G4"]]},{"id":"NCBITaxon:1269","l":"Micrococcus","na":6,"nb":1,"a":[["cecum-bto-0000166.html","cecum"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["saliva-bto-0001202.html","saliva"],["tongue-bto-0001385.html","tongue"]],"b":[["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"]]},{"id":"NCBITaxon:1512","l":"[Clostridium] symbiosum","na":6,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["animal-house-envo-00003040.html","animal house"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["emulsion-envo-00010506.html","emulsion"],["environmental-feature-envo-00002297.html","environmental feature"],["pig-manure-envo-00003860.html","pig manure"]],"b":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]]},{"id":"NCBITaxon:1624","l":"Ligilactobacillus salivarius","na":6,"nb":1,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["trachea-bto-0001388.html","trachea"],["animal-litter-envo-00002191.html","animal litter"],["intestine-environment-envo-2100002.html","intestine environment"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]]},{"id":"NCBITaxon:1872122","l":"Acidovorax sp.","na":6,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["ENIGMA_Denitrifying_SynCom.html","ENIGMA Denitrifying SynCom"]]},{"id":"NCBITaxon:2203","l":"Methanospirillum hungatei","na":1,"nb":6,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"]],"b":[["Phenol_Carboxylation_Consortium.html","Phenol Carboxylation Consortium"],["Syntrophobacter_Methanospirillum_Syntrophy.html","Syntrophobacter-Methanospirillum Syntrophic Consortium"],["Syntrophomonas_Methanospirillum_Syntrophy.html","Syntrophomonas-Methanospirillum Syntrophic Consortium"],["Syntrophus_Benzoate_Degrader.html","Syntrophus Benzoate Degrader"],["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"],["Trichococcus_Syntrophomonas_Methanospirillum_Butyrate_Coculture.html","Trichococcus-Syntrophomonas-Methanospirillum Butyrate Coculture"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":1,"nb":6,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Clostridium_Ecoli_Nitratidesulfovibrio_Minority_Mediator_Consortium.html","Clostridium-E. coli-Nitratidesulfovibrio Minority-Mediator Consortium"],["Dehalococcoides_Desulfovibrio_Lactate_TCE_Syntrophy.html","Dehalococcoides-Desulfovibrio Lactate-Fed TCE Dechlorination Coculture"],["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"],["Desulfovibrio_Methanococcus_Syntrophy.html","Desulfovibrio-Methanococcus Syntrophic Consortium"],["ORNL_Clostridium_Desulfovibrio_Geobacter_Trophic_Model.html","ORNL Clostridium-Desulfovibrio-Geobacter Trophic Model Community"]]},{"id":"ENVO:00000134","l":"permafrost","na":5,"nb":1,"a":[["permafrost-envo-00000134.html","permafrost"],["permafrost-habitatmech-gold-dd598a891d.html","Permafrost"],["permafrost-habitatmech-gold-6821e96263.html","Permafrost"],["permafrost-habitatmech-gold-6d092784ef.html","Permafrost"],["permafrost-habitatmech-gold-83818dd6ed.html","Permafrost"]],"b":[["Alaska_Tundra_Permafrost_Iron_Redox_Community.html","Alaska Tundra Permafrost Iron-Redox Community"]]},{"id":"ENVO:00002012","l":"hypersaline water","na":5,"nb":1,"a":[["brine-envo-00003044.html","brine"],["hypersaline-water-envo-00002012.html","hypersaline water"],["microbial-mats-habitatmech-gold-a00c47c576.html","Microbial mats"],["saline-water-habitatmech-gold-f75e192814.html","Saline water"],["salt-crystallizer-ponds-habitatmech-gold-277843111f.html","Salt crystallizer ponds"]],"b":[["Salar_Atacama_Lithium_Brine_Community.html","Salar de Atacama Lithium Brine Community"]]},{"id":"NCBITaxon:106589","l":"Cupriavidus","na":5,"nb":1,"a":[["gut-bto-0000545.html","gut"],["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["skin-bto-0001253.html","skin"]],"b":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]]},{"id":"NCBITaxon:1245","l":"Leuconostoc mesenteroides","na":5,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["leaf-po-0025034.html","leaf"],["animal-manure-envo-00003031.html","animal manure"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["BioModels_MODEL2204300001_Kefir_Community_Model.html","BioModels MODEL2204300001 Kefir Community Model"]]},{"id":"NCBITaxon:239","l":"Flavobacterium sp.","na":5,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["mud-envo-01000001.html","mud"],["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"],["orchard-envo-00000115.html","orchard"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]]},{"id":"NCBITaxon:28232","l":"Geobacter metallireducens","na":1,"nb":5,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"],["Geobacter_Methanosarcina_DIET.html","Geobacter-Methanosarcina DIET Community"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"],["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"],["Shewanella_Geobacter_Exoelectrogenic_Biofilm_Community.html","Shewanella-Geobacter Three-Species Exoelectrogenic Biofilm Community"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":5,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["food-spoiled-foodon-00003366.html","food (spoiled)"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"]],"b":[["Burkholderia_Pseudomonas_YB2_PET_Degradation_Consortium.html","Burkholderia-Pseudomonas YB2 PET Degradation Consortium"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":5,"nb":1,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["pseudostem-bto-0005992.html","pseudostem"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["Teosinte_Maize_Biofertilizer_SynCom7.html","Teosinte-Derived Maize Biofertilizer SynCom7"]]},{"id":"NCBITaxon:57723","l":"Acidobacteriota","na":1,"nb":5,"a":[["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Ion_Adsorption_REE_Indigenous_Community.html","Ion-Adsorption REE Indigenous Community"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["SPRUCE_Peatland_Methane_Cycling_Community.html","SPRUCE Peatland Methane-Cycling Microbial Community"]]},{"id":"NCBITaxon:74969","l":"Ferroplasma acidiphilum","na":1,"nb":5,"a":[["factory-envo-01000536.html","factory"]],"b":[["AMD_Nitrososphaerota_Archaeal.html","AMD Nitrososphaerota Archaeal Community"],["Australian_Lead_Zinc_Polymetallic.html","Australian Lead Zinc Polymetallic Tailings Consortium"],["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Ferroplasma_Leptospirillum_Syntrophy.html","Ferroplasma-Leptospirillum Iron-Cycling Syntrophy"],["Industrial_Bioreactor_Consortium.html","Industrial Bioleaching Reactor Consortium"]]},{"id":"NCBITaxon:838","l":"Prevotella","na":5,"nb":1,"a":[["brain-bto-0000142.html","brain"],["colon-bto-0000269.html","colon"],["heart-bto-0000562.html","heart"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"]],"b":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"CHEBI:24632","l":"hydrocarbon","na":4,"nb":1,"a":[["hydrocarbon-habitatmech-gold-db79f0142d.html","Hydrocarbon"],["hydrocarbon-habitatmech-gold-3c68e33a11.html","Hydrocarbon"],["hydrocarbon-habitatmech-gold-e77998b825.html","Hydrocarbon"],["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"]],"b":[["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"]]},{"id":"ENVO:01000306","l":"freshwater environment","na":1,"nb":4,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["Chlamydomonas_Methylobacterium_Mutualism.html","Chlamydomonas-Methylobacterium Mutualistic Consortium"],["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"],["Cyantraniliprole_Fahmy_Consortium_T4.html","Cyantraniliprole Fahmy Consortium T4"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]]},{"id":"ENVO:01001033","l":"digestive tract environment","na":1,"nb":4,"a":[["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["BSFL_Gut_SynCom_Bacillus_Lactobacillus_Issatchenkia.html","Black Soldier Fly Larvae Gut SynCom (Bacillus + Lactobacillus + Issatchenkia)"],["Butyrivibrio_Selenomonas_Ruminococcus_Lignocellulolytic_Rumen_Consortium.html","Butyrivibrio fibrisolvens + Selenomonas ruminantium + Ruminococcus albus Lignocellulolytic Rumen Consortium"],["Optimized_Rumen_Fiber_Degrading_SynCom3.html","Optimized Rumen Fiber-Degrading SynCom 3"],["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":4,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"],["human-construction-envo-00000070.html","human construction"],["sediment-envo-00002007.html","sediment"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["Trichoderma_Streptomyces_Filamentous_Cellulose_Coculture.html","Trichoderma-Streptomyces Filamentous Cellulose Coculture"]]},{"id":"NCBITaxon:1089553","l":"Thermacetogenium phaeum DSM 12270","na":4,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["pulp-bto-0001142.html","pulp"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["Thermacetogenium_Methanothermobacter_Acetate_Oxidation_Coculture.html","Thermacetogenium-Methanothermobacter Acetate Oxidation Coculture"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":4,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["BioRock_ISS_Basalt_Biomining_Consortium.html","BioRock ISS Basalt Biomining Consortium"]]},{"id":"NCBITaxon:1587","l":"Lactobacillus helveticus","na":4,"nb":1,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["intestine-environment-envo-2100002.html","intestine environment"],["urban-biome-envo-01000249.html","urban biome"],["harbour-envo-00000463.html","harbour"]],"b":[["Parmigiano_NWS_Set2_LAB_Triculture.html","Parmigiano NWS Set 2 LAB Triculture"]]},{"id":"NCBITaxon:1682","l":"Bifidobacterium longum subsp. infantis","na":4,"nb":1,"a":[["egg-food-product-foodon-00001274.html","egg food product"],["breast-bto-0000149.html","breast"],["ht-29-cell-bto-0000182.html","HT-29 cell"],["ma-104-cell-bto-0004983.html","MA-104 cell"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"]]},{"id":"NCBITaxon:200795","l":"Chloroflexota","na":1,"nb":4,"a":[["crop-bto-0000301.html","crop"]],"b":[["Anaerobic_Indole_Degrading_Sludge_Consortium.html","Anaerobic Indole-Degrading Sludge Consortium"],["High_Solids_Switchgrass_Methanogenic_Microbiome.html","High-Solids Switchgrass Methanogenic Microbiome"],["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"],["Soil_BGC_Phylum_Depth_Vegetation_Community.html","Soil Biosynthetic Gene Cluster Phylum-Depth-Vegetation Community"]]},{"id":"NCBITaxon:2209","l":"Methanosarcina mazei","na":4,"nb":1,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["sludge-envo-00002044.html","sludge"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"]]},{"id":"NCBITaxon:356","l":"Hyphomicrobiales","na":4,"nb":1,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["stem-bto-0001300.html","stem"]],"b":[["Thiocyanate_Afipia_Thiobacillus_Bioreactor_Community.html","Thiocyanate-Degrading Afipia and Thiobacillus Bioreactor Community"]]},{"id":"NCBITaxon:570","l":"Klebsiella","na":1,"nb":4,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Diclofenac_Activated_Sludge_Microbial_Consortium.html","Diclofenac Activated Sludge Microbial Consortium"],["KBase_Models_for_Zahmeeth_Original_PLOS.html","KBase Models for Zahmeeth Original PLOS"],["Klebsiella_Arthrobacter_KZ_Phenanthrene_Cadmium_SynCom.html","Klebsiella-Arthrobacter KZ Phenanthrene-Cadmium SynCom"],["Pseudomonas_Klebsiella_Alcaligenes_FeII_Nitrogen_Removal_SynCom.html","Pseudomonas-Klebsiella-Alcaligenes Fe2+ Nitrogen-Removal SynCom"]]},{"id":"NCBITaxon:68287","l":"Mesorhizobium","na":1,"nb":4,"a":[["head-bto-0000282.html","head"]],"b":[["Eucalyptus_Nursery_FiveStrain_Inoculant_SynCom.html","Eucalyptus Nursery Five-Strain Bacterial Inoculant Consortium"],["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"],["Mesorhizobium_Synechococcus_B12_Synthetic_Consortium.html","Mesorhizobium TaiHu-Synechococcus PCC 7002 Vitamin B12 Synthetic Consortium"],["Wheat_DT_Rhizosphere_SynCom.html","Wheat DT Rhizosphere SynCom"]]},{"id":"NCBITaxon:75682","l":"Oxalobacteraceae","na":4,"nb":1,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]]},{"id":"NCBITaxon:872","l":"Desulfovibrio","na":1,"nb":4,"a":[["colon-bto-0000269.html","colon"]],"b":[["Chromium_Sulfur_Reduction_Enrichment.html","Chromium Sulfur Oxidation Enrichment"],["Electrostimulated_Mixotrophic_VFA_Producing_Enrichment_Consortium.html","Electrostimulated Mixotrophic VFA-producing Enrichment Consortium"],["Methane_MFC_Electrogenesis_Nitrogen_Fixation_Consortium.html","Methane-Fed MFC Electrogenesis and Nitrogen-Fixation Consortium"],["Polaromonas_Vanadium_Reduction_Community.html","Polaromonas Vanadium Reduction Community"]]},{"id":"NCBITaxon:930","l":"Acidithiobacillus thiooxidans","na":1,"nb":4,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["Copper_Biomining_Heap_Leach.html","Copper Biomining Heap Leach Consortium"],["Mixed_Gallium_LED_Recovery_Consortium.html","Mixed Gallium LED Recovery Consortium"],["PGM_Spent_Catalyst_Bioleaching.html","PGM Spent Catalyst Bioleaching Consortium"],["Rammelsberg_Cobalt_Nickel_Tailings.html","Rammelsberg Cobalt-Nickel Tailings Consortium"]]},{"id":"NCBITaxon:1090","l":"Chlorobiota","na":3,"nb":1,"a":[["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"]],"b":[["Anammox_Granule_Metabolic_Interaction_Community.html","Anammox Granule Metabolic Interaction Community"]]},{"id":"NCBITaxon:1249","l":"Weissella paramesenteroides","na":3,"nb":1,"a":[["cecum-bto-0000166.html","cecum"],["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"]],"b":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]]},{"id":"NCBITaxon:1451","l":"Paenibacillus amylolyticus","na":3,"nb":1,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"]]},{"id":"NCBITaxon:1519","l":"Clostridium tyrobutyricum","na":3,"nb":1,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["peatland-envo-00000044.html","peatland"]],"b":[["Trichoderma_Lactate_Platform.html","Trichoderma Lactate Platform for SCFA Production"]]},{"id":"NCBITaxon:1582","l":"Lacticaseibacillus casei","na":3,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["Defined_Multispecies_Enamel_Caries_Model.html","Defined Multispecies Enamel Caries Model"]]},{"id":"NCBITaxon:1597","l":"Lacticaseibacillus paracasei","na":3,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":1,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["Corynebacterium_glutamicum_Shewanella_oneidensis_Succinic_Acid_Coculture.html","Corynebacterium glutamicum + Shewanella oneidensis Succinic-acid Co-culture"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":3,"nb":1,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["RH1_Glyphosate_Streptomyces_Consortium.html","RH1 Glyphosate Streptomyces Consortium"]]},{"id":"NCBITaxon:203124","l":"Trichodesmium erythraeum IMS101","na":3,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["coastal-water-body-envo-02000049.html","coastal water body"],["marine-neritic-zone-envo-00000206.html","marine neritic zone"]],"b":[["Trichodesmium_Alteromonas_Marine_Consortium.html","Trichodesmium-Alteromonas Marine Consortium"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":1,"nb":3,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["Shewanella_Anammox_Delta_nrfA_Nitrite_Coupled_Consortium.html","Delta nrfA Shewanella-Anammox Nitrite Coupled Consortium"],["Shewanella_Streptococcus_Starch_Microbial_Fuel_Cell.html","Shewanella-Streptococcus Starch-Fueled Microbial Fuel Cell Coculture"],["Synechococcus_Shewanella_Dlactate_Biophotovoltaic_Consortium.html","Synechococcus-Shewanella D-Lactate Biophotovoltaic Consortium"]]},{"id":"NCBITaxon:22","l":"Shewanella","na":1,"nb":3,"a":[["wood-bto-0005516.html","wood"]],"b":[["Oak_Ridge_FRC_Uranium_Nitrate_Groundwater_Community.html","Oak Ridge FRC Uranium-Nitrate Groundwater Community"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"],["Shewanella_Denitrifying_Richness_SynComs.html","Shewanella Denitrifying Richness SynComs"]]},{"id":"NCBITaxon:28037","l":"Streptococcus mitis","na":3,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["archeological-site-envo-00000564.html","archeological site"],["tropical-envo-01000204.html","tropical"]],"b":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]]},{"id":"NCBITaxon:301375","l":"Methanothrix harundinacea","na":3,"nb":1,"a":[["small-river-biome-envo-00000890.html","small river biome"],["shoreline-envo-00000486.html","shoreline"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["Geobacter_Methanosaeta_DIET.html","Geobacter-Methanosaeta DIET Community"]]},{"id":"NCBITaxon:3041","l":"Chlorophyta","na":1,"nb":3,"a":[["leaf-bto-0000713.html","leaf"]],"b":[["Cable_Bacteria_Photosynthetic_Biofilm_Sediment.html","Cable Bacteria beneath Photosynthetic Biofilm Sediment Community"],["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"],["Tinto_River_Iron_Cycling_Community.html","Tinto River Iron Cycling Community"]]},{"id":"NCBITaxon:33035","l":"Blautia producta","na":1,"nb":3,"a":[["juvenile-bto-0002168.html","juvenile"]],"b":[["BioModels_MODEL2405300001_Infant_Gut_HMO_SynCom.html","BioModels MODEL2405300001 Infant Gut HMO SynCom"],["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"],["SIHUMIx_Human_Intestinal_Model_Community.html","SIHUMIx Human Intestinal Model Community"]]},{"id":"NCBITaxon:33952","l":"Acetobacterium woodii","na":1,"nb":3,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["Acetobacterium_Clostridium_CO2_Electrolysis_Coculture.html","Acetobacterium woodii-Clostridium drakei CO2 Electrolysis Coculture"],["Electrosynthetic_Consortia_Shewanella_Clostridium_Acetobacterium_Acetate.html","Shewanella-Acetogen Electrosynthetic Consortia for CO2-to-Acetate"],["KB1_Chlorinated_Ethene_Dechlorinating_Consortium.html","KB-1 Chlorinated Ethene Dechlorinating Consortium"]]},{"id":"NCBITaxon:375","l":"Bradyrhizobium japonicum","na":3,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Bacillus_Bradyrhizobium_Straw_Humification_SynCom.html","Bacillus-Bradyrhizobium Straw Humification SynCom"]]},{"id":"NCBITaxon:375288","l":"Parabacteroides","na":3,"nb":1,"a":[["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"]],"b":[["Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.html","Altered Schaedler Flora Gnotobiotic Mouse Community"]]},{"id":"NCBITaxon:40214","l":"Acinetobacter johnsonii","na":3,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["pitcher-bto-0001069.html","pitcher"],["water-scum-envo-00005794.html","water scum"]],"b":[["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]]},{"id":"NCBITaxon:48736","l":"Ralstonia","na":3,"nb":1,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"]],"b":[["Sclerotinia_Sclerotia_12Strain_Biocontrol_SynCom.html","Sclerotinia Sclerotia 12-Strain Biocontrol SynCom"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":1,"nb":3,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"],["Puer_FloralFruity_Fungal_SynCom.html","Pu'er Floral-Fruity Fungal SynCom"],["Wheat_Straw_Biogas_Pretreatment_SynCom.html","Wheat Straw Biogas Pretreatment SynCom"]]},{"id":"NCBITaxon:547","l":"Enterobacter","na":1,"nb":3,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Achromobacter_Enterobacter_SL8_SL12_Cadmium_Immobilization_Coculture.html","Achromobacter-Enterobacter SL8-SL12 Cadmium Immobilization Coculture"],["Desert_Tomato_Salt_Stress_SynCom5.html","Desert-Derived Tomato Salt Stress SynCom5"],["SynCom_ARC_Peanut_Aflatoxin_Nodulation.html","SynCom ARC Peanut Aflatoxin-Control and Nodulation-Coupling Community"]]},{"id":"NCBITaxon:572511","l":"Blautia","na":3,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["colon-bto-0000269.html","colon"]],"b":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]]},{"id":"NCBITaxon:582","l":"Morganella morganii","na":3,"nb":1,"a":[["blast-cell-bto-0000125.html","blast cell"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"],["spike-bto-0001278.html","spike"]],"b":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]]},{"id":"NCBITaxon:69373","l":"Curtobacterium pusillum","na":3,"nb":1,"a":[["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["seedling-bto-0001228.html","seedling"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]]},{"id":"NCBITaxon:76759","l":"Pseudomonas monteilii","na":3,"nb":1,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["Moss_Microbe_Complex_Regolith_Biofertilizer.html","Moss-Microbe Complex Regolith Biofertilizer"]]},{"id":"NCBITaxon:85413","l":"Allobosea","na":1,"nb":3,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"]],"b":[["Bosea_Pseudomonas_Dimethachlon_Degradation_Consortium.html","Bosea-Pseudomonas Dimethachlon-Degradation Consortium"],["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":3,"nb":1,"a":[["city-envo-00000856.html","city"],["cold-environment-envo-01000309.html","cold environment"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["Bifidobacterium_Trichomonas_Vaginal_Coculture.html","Bifidobacterium breve-Trichomonas vaginalis Vaginal Co-culture"]]},{"id":"ENVO:00002127","l":"stream sediment","na":1,"nb":2,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["KBase_ORT_Workflow_Community_Model.html","KBase ORT Workflow Community Model"],["Tropidoatractus_Magnetotacticus_Tripartite_Syntrophy.html","Tropidoatractus magnetotacticus Magnetotactic Ciliate Tripartite Syntrophy"]]},{"id":"ENVO:03000033","l":"marine sediment","na":2,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["ANME_SRB_Anaerobic_Methanotrophic_Syntrophic_Consortia.html","ANME/SRB Anaerobic Methanotrophic Syntrophic Consortia"]]},{"id":"NCBITaxon:1033","l":"Afipia","na":2,"nb":1,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"]],"b":[["Thiocyanate_Afipia_Thiobacillus_Bioreactor_Community.html","Thiocyanate-Degrading Afipia and Thiobacillus Bioreactor Community"]]},{"id":"NCBITaxon:1091494","l":"Methylotuvimicrobium alcaliphilum 20Z","na":1,"nb":2,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["Methylomicrobium_Chlorella_Methane_Sequestration_Coculture.html","Methylomicrobium-Chlorella Methane Sequestration Coculture"],["Methylotuvimicrobium_Synechococcus_Gas_Feedstock_Coculture.html","Methylotuvimicrobium-Synechococcus Gas Feedstock Coculture"]]},{"id":"NCBITaxon:1129","l":"Synechococcus","na":2,"nb":1,"a":[["column-bto-0005692.html","column"],["hemolymph-bto-0000572.html","hemolymph"]],"b":[["Mushroom_Spring_Hot_Spring_Phototrophic_Mat_Community.html","Mushroom Spring Hot-Spring Phototrophic Mat Community"]]},{"id":"NCBITaxon:1173061","l":"Geotrichum candidum","na":2,"nb":1,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["Viili_Fungus_Bacterium_EPS_SynCom.html","Viili Fungus-Bacterium EPS SynCom"]]},{"id":"NCBITaxon:119532","l":"Microcoleus vaginatus","na":2,"nb":1,"a":[["desert-biome-envo-01000179.html","desert biome"],["desert-area-envo-00000097.html","desert area"]],"b":[["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]]},{"id":"NCBITaxon:1255","l":"Pediococcus pentosaceus","na":2,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"]],"b":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]]},{"id":"NCBITaxon:12916","l":"Acidovorax","na":1,"nb":2,"a":[["urine-bto-0001419.html","urine"]],"b":[["Rice_P_Uptake_Intercropping_SynCom4.html","Rice Phosphorus Uptake Intercropping SynCom4"],["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]]},{"id":"NCBITaxon:1303","l":"Streptococcus oralis","na":2,"nb":1,"a":[["throat-bto-0000828.html","throat"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Early_Dental_Biofilm_FiveSpecies.html","Early Dental Biofilm Five-Species Model"]]},{"id":"NCBITaxon:138074","l":"Serratia symbiotica","na":2,"nb":1,"a":[["intestine-bto-0000648.html","intestine"],["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"]]},{"id":"NCBITaxon:1398","l":"Heyndrickxia coagulans","na":2,"nb":1,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["Dual_Bacillus_coagulans_Pseudomonas_putida_Lactic_Acid_Coculture.html","Dual Bacillus coagulans + Pseudomonas putida Lactic-acid Co-culture"]]},{"id":"NCBITaxon:1401","l":"Paenibacillus lautus","na":2,"nb":1,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["Sorghum_SRC1_Subset.html","Sorghum SRC1 Subset Community"]]},{"id":"NCBITaxon:142182","l":"Gemmatimonadota","na":1,"nb":2,"a":[["crop-bto-0000301.html","crop"]],"b":[["East_River_Floodplain_Core_Microbiome.html","East River Floodplain Core Microbiome"],["Mercury_SFA_EFPC_Sediment_Community.html","Mercury SFA East Fork Poplar Creek Sediment Community"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":2,"a":[["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["Caldibacillus_Clostridium_Aerotolerant_Cellulose_Coculture.html","Caldibacillus-Clostridium Aerotolerant Cellulose Coculture"],["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]]},{"id":"NCBITaxon:1538","l":"Clostridium ljungdahlii","na":1,"nb":2,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"],["Clostridium_Ljungdahlii_Kluyveri_Syngas_Alcohol_Coculture.html","Clostridium ljungdahlii-Clostridium kluyveri Syngas Alcohol Coculture"]]},{"id":"NCBITaxon:160488","l":"Pseudomonas putida KT2440","na":1,"nb":2,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["PET_Artificial_FourSpecies_Degradation_Consortium.html","PET Artificial Four-Species Degradation Consortium"],["Rhodococcus_Pseudomonas_PPOW_Consortium.html","Rhodococcus-Pseudomonas Plastic Pyrolysis Oil Waste Consortium"]]},{"id":"NCBITaxon:161493","l":"Anaeromyxobacter dehalogenans","na":2,"nb":1,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["Rifle_Uranium_Reducing_Community.html","Rifle Uranium-Reducing Community"]]},{"id":"NCBITaxon:1680","l":"Bifidobacterium adolescentis","na":2,"nb":1,"a":[["brain-bto-0000142.html","brain"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]]},{"id":"NCBITaxon:169215","l":"","na":1,"nb":2,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"]],"b":[["EcoFAB_Ring_Trial_SynCom17.html","EcoFAB 2.0 Root Microbiome Ring Trial SynCom17"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]]},{"id":"NCBITaxon:171552","l":"Prevotellaceae","na":2,"nb":1,"a":[["colon-bto-0000269.html","colon"],["rumen-uberon-0007365.html","rumen"]],"b":[["Rumen_Substrate_Adapted_Lignocellulose_Enrichment_Consortia.html","Rumen Substrate-Adapted Lignocellulose Enrichment Consortia"]]},{"id":"NCBITaxon:1785","l":"Mycobacterium sp.","na":2,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"],["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]]},{"id":"NCBITaxon:1871043","l":"Variovorax sp.","na":1,"nb":2,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"],["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]]},{"id":"NCBITaxon:1872086","l":"Ensifer sp.","na":2,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["MSC1_Dominant_Core.html","MSC-1 Dominant Core"]]},{"id":"NCBITaxon:192","l":"Azospirillum brasilense","na":2,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["Chlorella_Azospirillum_Synthetic_Mutualism.html","Chlorella-Azospirillum Synthetic Mutualism"]]},{"id":"NCBITaxon:20","l":"Phenylobacterium","na":2,"nb":1,"a":[["crop-bto-0000301.html","crop"],["nectar-bto-0000537.html","nectar"]],"b":[["Tomato_Oxylipin_SynCom3.html","Tomato Oxylipin-Protective SynCom3"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus ATCC 27405","na":1,"nb":2,"a":[["blood-plasma-bto-0000131.html","blood plasma"]],"b":[["Clostridium_Caldicellulosiruptor_Minimal_Medium_Coculture.html","Clostridium-Caldicellulosiruptor Minimal Medium Coculture"],["Clostridium_Thermocellum_Saccharoperbutylacetonicum_Cellulosic_Butanol_Coculture.html","Clostridium Thermocellum-Saccharoperbutylacetonicum Cellulosic Butanol Coculture"]]},{"id":"NCBITaxon:2162","l":"Methanobacterium formicicum","na":1,"nb":2,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"],["Syntrophobacter_Methanobacterium_Syntrophy.html","Syntrophobacter-Methanobacterium Syntrophic Consortium"]]},{"id":"NCBITaxon:2173","l":"Methanobrevibacter smithii","na":1,"nb":2,"a":[["lagoon-envo-00000038.html","lagoon"]],"b":[["Bacteroides_Methanobrevibacter_Gnotobiotic_Mouse_Mutualism.html","Bacteroides-Methanobrevibacter Gnotobiotic Mouse Mutualism"],["Neocallimastix_Methanobrevibacter_Xylan_Coculture.html","Neocallimastix-Methanobrevibacter Xylanolytic Coculture"]]},{"id":"NCBITaxon:2223","l":"Methanothrix soehngenii","na":1,"nb":2,"a":[["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]]},{"id":"NCBITaxon:231455","l":"Dyella japonica","na":1,"nb":2,"a":[["area-of-tundra-envo-00000112.html","area of tundra"]],"b":[["Calcium_Tomato_Bacterial_Wilt_SynCom.html","Calcium-Tomato Bacterial Wilt SynCom"],["Dangl_SynComm_35.html","Jeff Dangl's SynComm 35"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii DSM 2661","na":2,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":2,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"],["Phylogenetically_Diverse_Denitrifying_SynCom.html","Phylogenetically Diverse Denitrifying SynCom"]]},{"id":"NCBITaxon:2836","l":"Bacillariophyta","na":2,"nb":1,"a":[["diatom-associated-environment-habitatmech-gold-1276bea544.html","diatom-associated environment"],["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["Synthetic_Periphyton_Freshwater_Biofilm.html","Synthetic Periphyton Freshwater Biofilm"]]},{"id":"NCBITaxon:285","l":"Comamonas testosteroni","na":2,"nb":1,"a":[["waste-habitatmech-bacdive-36df85e4a4.html","Waste"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]]},{"id":"NCBITaxon:293387","l":"Bacillus altitudinis","na":1,"nb":2,"a":[["resting-cell-bto-0001170.html","resting cell"]],"b":[["Bacillales_Lignin_Degrading_LDSynCom.html","Bacillales Lignin-Degrading LDSynCom"],["Suillus_Bacillus_Thiamine_Ectomycorrhizal_SynCom.html","Suillus clintonianus-Bacillus altitudinis Thiamine Cross-Feeding SynCom"]]},{"id":"NCBITaxon:29448","l":"Bradyrhizobium elkanii","na":2,"nb":1,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["area-of-tundra-envo-00000112.html","area of tundra"]],"b":[["Soybean_N_Fixation_sfSynCom.html","Soybean N-Fixation Simplified SynCom"]]},{"id":"NCBITaxon:299767","l":"Enterobacter ludwigii","na":1,"nb":2,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"],["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]]},{"id":"NCBITaxon:323259","l":"Methanospirillum hungatei JF-1","na":1,"nb":2,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["Cellulose_Methane_Combinatorial_SynCom_Panel.html","Cellulose-to-Methane Combinatorial SynCom Panel"],["Cellulose_Methane_Quad_Culture_SynCom.html","Cellulose-to-Methane Quad-Culture SynCom"]]},{"id":"NCBITaxon:39152","l":"Methanococcus maripaludis","na":1,"nb":2,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["DVM_Triculture.html","DVM Tri-culture"],["Syntrophomonas_Methanococcus_Butyrate_Growth_Coordination_Coculture.html","Syntrophomonas-Methanococcus Butyrate Growth Coordination Coculture"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":2,"nb":1,"a":[["city-envo-00000856.html","city"],["cropland-biome-envo-01000245.html","cropland biome"]],"b":[["Chicken_BL6_AntiSalmonella_SynCom.html","Chicken BL6 Anti-Salmonella SynCom"]]},{"id":"NCBITaxon:515619","l":"Agathobacter rectalis ATCC 33656","na":1,"nb":2,"a":[["gut-epithelium-bto-0000956.html","gut epithelium"]],"b":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"],["Mucin_Glycan_MDSC_Synthetic_Gut_Community.html","Mucin Glycan-Degrading MDSC Synthetic Gut Community"]]},{"id":"NCBITaxon:6239","l":"Caenorhabditis elegans","na":2,"nb":1,"a":[["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["CeMbio_Caenorhabditis_Elegans_Microbiome.html","CeMbio Caenorhabditis elegans Microbiome"]]},{"id":"NCBITaxon:648","l":"Aeromonas caviae","na":2,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["HAMBI_Carbon_Gradient_SynCom16.html","HAMBI Carbon-Gradient 16-species SynCom"]]},{"id":"NCBITaxon:82367","l":"Paracoccus pantotrophus","na":2,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["Pseudomonas_Paracoccus_Bifenthrin_Degradation_Consortium.html","Pseudomonas-Paracoccus Bifenthrin-Degrading Consortium"]]},{"id":"NCBITaxon:82380","l":"Microbacterium oxydans","na":1,"nb":2,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"],["Okeke_Lu_Cellulolytic_Consortium.html","Okeke-Lu Cellulolytic-Xylanolytic Consortium"]]},{"id":"NCBITaxon:876","l":"Desulfovibrio desulfuricans","na":2,"nb":1,"a":[["sludge-envo-00002044.html","sludge"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["Desulfovibrio_Methanosarcina_Lactate_Syntrophy.html","Desulfovibrio-Methanosarcina Lactate Syntrophy"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":2,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["Engineered_Gut_Amino_Acid_CrossFeeding_Consortium.html","Engineered Gut Amino Acid Cross-Feeding Consortium"],["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]]},{"id":"UBERON:0001155","l":"colon","na":2,"nb":1,"a":[["colon-habitatmech-gold-c484d9a195.html","Colon"],["colon-habitatmech-gold-195d07bc47.html","Colon"]],"b":[["CRC_Fusobacterium_Control_SynCom.html","CRC Fusobacterium Control SynCom"]]},{"id":"ENVO:00000057","l":"mangrove swamp","na":1,"nb":1,"a":[["mangrove-swamp-envo-00000057.html","mangrove swamp"]],"b":[["Baia_de_Todos_os_Santos_Mangrove_Alkane_Degrading_Consortium.html","Baia de Todos os Santos Mangrove Alkane-Degrading Consortium"]]},{"id":"ENVO:00000126","l":"sulfur spring","na":1,"nb":1,"a":[["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["Sulfide_Spring_Autotrophic_CPR_Biofilm.html","Sulfide Spring Autotrophic CPR-Hosting Biofilm"]]},{"id":"ENVO:00002121","l":"alkaline salt lake","na":1,"nb":1,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"]],"b":[["Phormidium_Alkaline_Consortium.html","Phormidium Alkaline Consortium"]]},{"id":"ENVO:00003030","l":"silage","na":1,"nb":1,"a":[["silage-envo-00003030.html","silage"]],"b":[["Caragana_Korshinskii_CrossKingdom_Forage_SynCom.html","Caragana korshinskii Cross-Kingdom Forage Bio-Valorization SynCom"]]},{"id":"ENVO:01000910","l":"soil biocrust","na":1,"nb":1,"a":[["soil-biocrust-envo-01000910.html","soil biocrust"]],"b":[["Microcoleus_Massilia_Cyanosphere_Urea_Mutualism.html","Microcoleus-Massilia Cyanosphere Urea Mutualism"]]},{"id":"NCBITaxon:100176","l":"Papillibacter cinnamivorans","na":1,"nb":1,"a":[["cecum-bto-0000166.html","cecum"]],"b":[["Cinnamate_Degradation_Consortium.html","Cinnamate β-Oxidation Consortium"]]},{"id":"NCBITaxon:105972","l":"Methylosarcina fibrata","na":1,"nb":1,"a":[["stream-envo-00000023.html","stream"]],"b":[["Lake_Washington_Methane_Oxygen_Methylotroph_Community.html","Lake Washington Methane-Oxygen Methylotroph Community"]]},{"id":"NCBITaxon:110321","l":"Sinorhizobium medicae","na":1,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["Legume_Rhizobia_Mars_Simulant_Symbiosis.html","Legume-Rhizobia Mars Simulant Symbiosis"]]},{"id":"NCBITaxon:1122947","l":"Pelosinus fermentans DSM 17108","na":1,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["Dehalococcoides_Desulfovibrio_Pelosinus_Corrinoid_Triculture.html","Dehalococcoides-Desulfovibrio-Pelosinus Corrinoid Triculture"]]},{"id":"NCBITaxon:1131703","l":"Sphaerochaeta globosa","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["DIETsimp_Lignocellulose_to_Methane_DIET_Consortia.html","DIET-based Simplified Lignocellulose-to-Methane Consortia (DIETsimp)"]]},{"id":"NCBITaxon:1134404","l":"Ignavibacteriota","na":1,"nb":1,"a":[["gut-bto-0000545.html","gut"]],"b":[["Rifle_Aquifer_Bioanode_EET_Community.html","Rifle Aquifer Bioanode Extracellular Electron Transfer Community"]]},{"id":"NCBITaxon:119060","l":"Burkholderiaceae","na":1,"nb":1,"a":[["trunk-bto-0001493.html","trunk"]],"b":[["Propanotrophic_Chlorinated_Ethene_Cometabolism_Enrichment.html","Propanotrophic Chlorinated Ethene Cometabolism Enrichment Cultures"]]},{"id":"NCBITaxon:1253","l":"Pediococcus","na":1,"nb":1,"a":[["cecum-bto-0000166.html","cecum"]],"b":[["SynCom_Sesame_Flavor_Baijiu_Fuqu_13Genus.html","Sesame-flavor Baijiu Fuqu SynCom (13-genus)"]]},{"id":"NCBITaxon:1272","l":"Kocuria varians","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["Industrial_Milk_Line_FourSpecies_Model_Biofilm.html","Industrial Milk-Line Four-Species Model Biofilm"]]},{"id":"NCBITaxon:135619","l":"Oceanospirillales","na":1,"nb":1,"a":[["column-bto-0005692.html","column"]],"b":[["Deepwater_Horizon_Deep_Sea_Oil_Plume_Succession.html","Deepwater Horizon Deep-Sea Oil Plume Succession"]]},{"id":"NCBITaxon:1455","l":"Pseudobacillus badius","na":1,"nb":1,"a":[["organic-waste-material-envo-00002873.html","organic waste material"]],"b":[["Defined_ThreeStrain_Organic_Nitrogen_Nitrifying_Community.html","Defined Three-Strain Organic-Nitrogen Nitrifying Community"]]},{"id":"NCBITaxon:1488","l":"Clostridium acetobutylicum","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["Clostridium_Acetobutylicum_Ljungdahlii_Fusion_Coculture.html","Clostridium acetobutylicum-Clostridium ljungdahlii Syntrophic Fusion Coculture"]]},{"id":"NCBITaxon:1501","l":"Clostridium pasteurianum","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["Geobacter_Clostridium_Interspecies_Electron_Transfer_Coculture.html","Geobacter-Clostridium Interspecies Electron Transfer Coculture"]]},{"id":"NCBITaxon:1517","l":"Thermoanaerobacterium thermosaccharolyticum","na":1,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["Clostridium_Thermoanaerobacterium_JN4_GD17_Cellulosic_Biofuel_Coculture.html","Clostridium-Thermoanaerobacterium JN4-GD17 Cellulosic Biofuel Coculture"]]},{"id":"NCBITaxon:1579","l":"Lactobacillus acidophilus","na":1,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"]],"b":[["MUC2_Human_Gut_Commensal_Defined_Consortium.html","MUC2 Human Gut Commensal Defined Consortium"]]},{"id":"NCBITaxon:1585","l":"Lactobacillus delbrueckii subsp. bulgaricus","na":1,"nb":1,"a":[["pig-manure-envo-00003860.html","pig manure"]],"b":[["Yogurt_TwoSpecies_Starter_Culture.html","Yogurt Two-Species Starter Culture"]]},{"id":"NCBITaxon:158836","l":"Enterobacter hormaechei","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["Wheat_SynCom_SASW01_Drought_Inoculant.html","Wheat SynCom-SASW01 Drought-Resistance Inoculant"]]},{"id":"NCBITaxon:168384","l":"Marvinbryantia formatexigens","na":1,"nb":1,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["Human_Gut_FourMember_Proteome_Complementarity_Consortium.html","Human Gut Four-Member Proteome-Complementarity Consortium"]]},{"id":"NCBITaxon:1828","l":"Rhodococcoides fascians","na":1,"nb":1,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]]},{"id":"NCBITaxon:1871068","l":"Phyllobacteriaceae bacterium","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["Lotus_LjSC3.html","Lotus Lj-SC3 Synthetic Community"]]},{"id":"NCBITaxon:1898203","l":"Lachnospiraceae bacterium","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["Amsterdam_10Species_Gut_Invasion_SynCom.html","Amsterdam 10-Species Gut Invasion SynCom"]]},{"id":"NCBITaxon:216389","l":"Dehalococcoides mccartyi BAV1","na":1,"nb":1,"a":[["road-envo-00000064.html","road"]],"b":[["Dehalococcoides_Methanosarcina_DMB_Cobalamin_Coculture.html","Dehalococcoides-Methanosarcina DMB-Guided Cobalamin Coculture"]]},{"id":"NCBITaxon:216778","l":"Stenotrophomonas rhizophila","na":1,"nb":1,"a":[["style-bto-0001313.html","style"]],"b":[["Carbon_Substrate_PMSX_Biofilm_SynCom.html","PMSX Carbon-Substrate Biofilm SynCom"]]},{"id":"NCBITaxon:219572","l":"Pseudomonas antarctica","na":1,"nb":1,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Space_Habitat_SevenMember_Stress_Tolerance_SynCom.html","Space Habitat Seven-Member Stress-Tolerance SynCom"]]},{"id":"NCBITaxon:225937","l":"Marinobacter adhaerens HP15","na":1,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["Thalassiosira_Marinobacter_Marine_Snow_Coculture.html","Thalassiosira-Marinobacter Marine Snow Coculture"]]},{"id":"NCBITaxon:226","l":"Alteromonas","na":1,"nb":1,"a":[["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]]},{"id":"NCBITaxon:226186","l":"Bacteroides thetaiotaomicron VPI-5482","na":1,"nb":1,"a":[["gut-epithelium-bto-0000956.html","gut epithelium"]],"b":[["Bacteroides_Eubacterium_Gnotobiotic_Gut_Model.html","Bacteroides-Eubacterium Gnotobiotic Gut Model"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima MSB8","na":1,"nb":1,"a":[["feather-bto-0000447.html","feather"]],"b":[["Thermotoga_Methanocaldococcus_Hyperthermophilic_Syntrophy.html","Thermotoga-Methanocaldococcus Hyperthermophilic Syntrophy"]]},{"id":"NCBITaxon:246200","l":"Ruegeria pomeroyi DSS-3","na":1,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["Thalassiosira_Ruegeria_Phycosphere_Coculture.html","Thalassiosira-Ruegeria Phycosphere Coculture"]]},{"id":"NCBITaxon:250","l":"Chryseobacterium gleum","na":1,"nb":1,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["Sorghum_SRC2v4_Root_Colonization_SynCom.html","Sorghum SRC2v4 Root Colonization SynCom"]]},{"id":"NCBITaxon:2745","l":"Halomonas","na":1,"nb":1,"a":[["wood-bto-0005516.html","wood"]],"b":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]]},{"id":"NCBITaxon:29394","l":"Dolosigranulum pigrum","na":1,"nb":1,"a":[["bone-element-uberon-0001474.html","bone element"]],"b":[["BioModels_MODEL2209060002_DPigrum_SAureus_Community.html","BioModels MODEL2209060002 D pigrum - S aureus Community"]]},{"id":"NCBITaxon:3078","l":"Auxenochlorella pyrenoidosa","na":1,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"]],"b":[["Euglena_Chlorella_Microalgal_Biorefinery_Coculture.html","Euglena-Chlorella Microalgal Biorefinery Coculture"]]},{"id":"NCBITaxon:33010","l":"Cutibacterium avidum","na":1,"nb":1,"a":[["bone-element-uberon-0001474.html","bone element"]],"b":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]]},{"id":"NCBITaxon:33011","l":"Cutibacterium granulosum","na":1,"nb":1,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]]},{"id":"NCBITaxon:33883","l":"Microbacterium arborescens","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["TYQ1_Nematode_Biocontrol_SynCom.html","TYQ1 Nematode Biocontrol SynCom"]]},{"id":"NCBITaxon:340177","l":"Chlorobium chlorochromatii CaD3","na":1,"nb":1,"a":[["photoreceptor-cell-bto-0001060.html","photoreceptor cell"]],"b":[["Chlorochromatium_Aggregatum_Phototrophic_Consortium.html","Chlorochromatium aggregatum Phototrophic Consortium"]]},{"id":"NCBITaxon:372461","l":"Buchnera aphidicola BCc","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Buchnera_Serratia_Cinara_Cedri_Endosymbiont_Consortium.html","Buchnera-Serratia Cinara cedri Endosymbiont Consortium"]]},{"id":"NCBITaxon:38304","l":"Corynebacterium tuberculostearicum","na":1,"nb":1,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["Nasal_SynCom_C_Bioreactor.html","Nasal SynCom C Bioreactor"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["Rhodopseudomonas_Geobacter_Magnetite_Redox_Coculture.html","Rhodopseudomonas-Geobacter Magnetite Redox Coculture"]]},{"id":"NCBITaxon:399726","l":"Thermoanaerobacter sp. X514","na":1,"nb":1,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["Clostridium_Thermoanaerobacter_Cellulosic_Bioethanol_Coculture.html","Clostridium-Thermoanaerobacter Cellulosic Bioethanol Coculture"]]},{"id":"NCBITaxon:409291","l":"Arthrobacter humicola","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["Barley_DT_Rhizosphere_SynCom.html","Barley DT Rhizosphere SynCom"]]},{"id":"NCBITaxon:43775","l":"Syntrophus gentianae","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["Syntrophus_Methanospirillum_Gentianae_Benzoate_Coculture.html","Syntrophus-Methanospirillum Gentianae Benzoate Coculture"]]},{"id":"NCBITaxon:47880","l":"Pseudomonas fulva","na":1,"nb":1,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["GENIA_NineMember_MultiPollutant_Bioremediation_SynCom.html","GENIA Nine-Member Multi-Pollutant Bioremediation SynCom"]]},{"id":"NCBITaxon:47920","l":"Acidovorax delafieldii","na":1,"nb":1,"a":[["bone-element-uberon-0001474.html","bone element"]],"b":[["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]]},{"id":"NCBITaxon:49082","l":"Candidatus Neoarthromitus","na":1,"nb":1,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["SynComBac10_Chicken_Intestinal_SynCom.html","SynComBac10 Chicken Intestinal SynCom"]]},{"id":"NCBITaxon:51669","l":"Tetragenococcus halophilus","na":1,"nb":1,"a":[["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["Soy_Sauce_Temporal_SevenSpecies_SynCom.html","Soy Sauce Temporal Seven-Species SynCom"]]},{"id":"NCBITaxon:542","l":"Zymomonas mobilis","na":1,"nb":1,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["Zymomonas_Ecoli_Exometabolomics_Obligate_Mutualism.html","Zymomonas-E. coli Exometabolomics-Designed Obligate Mutualism"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":1,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["Coniochaeta_Sphingobacterium_Citrobacter_Wheat_Straw_Consortium.html","Coniochaeta-Sphingobacterium-Citrobacter Wheat Straw Consortium"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":1,"nb":1,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Jala_Maize_PGPB_SynCom.html","Jala Maize PGPB SynCom"]]},{"id":"NCBITaxon:571256","l":"Brucella pituitosa","na":1,"nb":1,"a":[["seedling-bto-0001228.html","seedling"]],"b":[["Maize_Root_Simplified_Community.html","Maize Root Simplified Bacterial Community"]]},{"id":"NCBITaxon:685","l":"Vibrio diazotrophicus","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["Prymnesium_Parvum_B12_Limited_SynCom.html","Prymnesium parvum B12-Limited SynCom"]]},{"id":"NCBITaxon:80840","l":"Burkholderiales","na":1,"nb":1,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"]],"b":[["Avena_Rhizosphere_CrossKingdom_SIP_Community.html","Avena Rhizosphere Cross-Kingdom 13C-SIP Community"]]},{"id":"NCBITaxon:80866","l":"Delftia acidovorans","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["Urine_Nitrification_SynCom.html","Urine Nitrification Synthetic Microbial Community"]]},{"id":"NCBITaxon:82","l":"Hyphomicrobium sp.","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["Methane_Oxidation_CrVI_Reduction_SynCom.html","Methane Oxidation-Cr(VI) Reduction SynCom"]]},{"id":"NCBITaxon:86185","l":"Pseudomonas lundensis","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["Apple_Fire_Blight_ANP_SynCom.html","Apple Fire Blight A+N+P SynCom"]]},{"id":"NCBITaxon:930166","l":"Pseudomonas brassicacearum","na":1,"nb":1,"a":[["spike-bto-0001278.html","spike"]],"b":[["At_RSPHERE_SynCom.html","At-RSPHERE SynCom"]]},{"id":"NCBITaxon:94625","l":"Brucella intermedia","na":1,"nb":1,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["Panzhihua_Vanadium_Titanium_Tailings.html","Panzhihua Vanadium Titanium Tailings Community"]]},{"id":"UBERON:0002097","l":"skin of body","na":1,"nb":1,"a":[["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["SkinCom_Synthetic_Skin_Community.html","SkinCom Synthetic Skin Community"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/HabitatMech--CultureMech.json b/assets/fleet/edges/HabitatMech--CultureMech.json index 8109164..8355d7d 100644 --- a/assets/fleet/edges/HabitatMech--CultureMech.json +++ b/assets/fleet/edges/HabitatMech--CultureMech.json @@ -1 +1 @@ -{"a":"HabitatMech","b":"CultureMech","base":{"HabitatMech":"https://culturebotai.github.io/HabitatMech/pages/habitats/","CultureMech":"https://github.com/CultureBotAI/CultureMech/blob/main/data/merge_yaml/merged/"},"n":25,"by":{"NCBITaxon":13,"ENVO":7,"UBERON":4,"FOODON":1},"terms":[{"id":"UBERON:0000948","l":"heart","na":7,"nb":67,"a":[["heart-habitatmech-gold-2db4d9dd6e.html","Heart"],["heart-habitatmech-gold-8d7a4e1712.html","Heart"],["heart-uberon-0000948.html","heart"],["heart-habitatmech-gold-e9d67283fc.html","Heart"],["heart-habitatmech-gold-805ee181bd.html","Heart"],["heart-habitatmech-gold-20bc7c46a0.html","Heart"]],"b":[["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"],["1_2_mrs_1_2_bhi_agar.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_mrs_1_2_bhi_agar__56430c33.yaml","1_2_mrs_1_2_bhi_agar"],["70_30_sporulation_medium.yaml","70_30_sporulation_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Anaerobic_Brain_Heart_Infusion_Broth.yaml","anaerobic_brain_heart_infusion_broth"]]},{"id":"UBERON:0000955","l":"brain","na":5,"nb":66,"a":[["brain-habitatmech-gold-752ac1c5aa.html","Brain"],["brain-habitatmech-gold-6bdd76cda3.html","Brain"],["brain-habitatmech-gold-a220aa6bb0.html","Brain"],["brain-habitatmech-gold-e1c2f5f7d4.html","Brain"],["brain-habitatmech-gold-2e584195fd.html","Brain"]],"b":[["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"],["1_2_mrs_1_2_bhi_agar.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_mrs_1_2_bhi_agar__56430c33.yaml","1_2_mrs_1_2_bhi_agar"],["70_30_sporulation_medium.yaml","70_30_sporulation_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Anaerobic_Brain_Heart_Infusion_Broth.yaml","anaerobic_brain_heart_infusion_broth"]]},{"id":"UBERON:0000178","l":"blood","na":7,"nb":4,"a":[["blood-habitatmech-gold-f46a5017f9.html","Blood"],["blood-habitatmech-gold-476e09babd.html","Blood"],["blood-habitatmech-gold-d25ff4a586.html","Blood"],["blood-habitatmech-gold-6c6aab19d3.html","Blood"],["blood-uberon-0000178.html","blood"],["whole-blood-habitatmech-gold-3612f7e08f.html","Whole blood"]],"b":[["blood_agar__45bfc12d.yaml","blood_agar"],["columbia_blood_agar_with_5_horse_blood__65a36f66.yaml","columbia_blood_agar_with_5_horse_blood"],["columbia_blood_agar_with_5_rabbit_blood__0ed590f0.yaml","columbia_blood_agar_with_5_rabbit_blood"],["columbia_blood_agar_with_5_sheep_blood__5f55f46d.yaml","columbia_blood_agar_with_5_sheep_blood"]]},{"id":"ENVO:00002007","l":"sediment","na":103,"nb":2,"a":[["marine-sediment-envo-03000033.html","marine sediment"],["sediment-habitatmech-gold-6bc70f0406.html","Sediment"],["sediment-habitatmech-gold-33b265d89f.html","Sediment"],["sediment-habitatmech-gold-7db7617ea4.html","Sediment"],["sediment-habitatmech-gold-2f9eb7ed2f.html","Sediment"],["sediment-habitatmech-gold-2ff751e0a6.html","Sediment"]],"b":[["modified_dsm_120_medium_for_diet_coculture.yaml","modified_dsm_120_medium_for_diet_coculture"],["modified_freshwater_medium_for_diet_coculture.yaml","modified_freshwater_medium_for_diet_coculture"]]},{"id":"ENVO:00002149","l":"sea water","na":7,"nb":2,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["oil-contaminated-habitatmech-gold-a83d030599.html","Oil-contaminated"],["oil-contaminated-habitatmech-gold-d640d7cf58.html","Oil-contaminated"],["oil-contaminated-sediment-habitatmech-gold-e6839bcc8f.html","Oil-contaminated sediment"],["oil-contaminated-sediment-habitatmech-gold-7c79bcbca8.html","Oil-contaminated sediment"],["sea-water-envo-00002149.html","sea water"]],"b":[["PE.yaml","pe"],["f_2.yaml","f_2"]]},{"id":"ENVO:00005801","l":"rhizosphere","na":2,"nb":3,"a":[["rhizosphere-envo-00005801.html","rhizosphere"],["soil-habitatmech-gold-067f7f5e2a.html","Soil"]],"b":[["R2A_AGAR.yaml","r2a_agar"],["half_strength_murashige_skoog_medium_for_arabidopsis_growth.yaml","half_strength_murashige_skoog_medium_for_arabidopsis_growth"],["nitrogen_free_plant_nutrient_solution_for_soybean_growth.yaml","nitrogen_free_plant_nutrient_solution_for_soybean_growth"]]},{"id":"ENVO:01001405","l":"laboratory environment","na":2,"nb":2,"a":[["genetic-cross-habitatmech-gold-ba9317369a.html","Genetic cross"],["laboratory-environment-envo-01001405.html","laboratory environment"]],"b":[["glycerol_fermentation_medium_for_diet_coculture.yaml","glycerol_fermentation_medium_for_diet_coculture"],["tap_medium.yaml","tap_medium"]]},{"id":"NCBITaxon:556484","l":"","na":2,"nb":2,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["2ASW.yaml","2asw"],["F_2_Medium.yaml","f_2_medium"]]},{"id":"ENVO:00002170","l":"compost","na":20,"nb":1,"a":[["compost-envo-00002170.html","compost"],["composting-habitatmech-gold-143ceb8669.html","Composting"],["composting-habitatmech-gold-edeecbabed.html","Composting"],["composting-habitatmech-gold-5948923b46.html","Composting"],["composting-habitatmech-gold-70db4820d1.html","Composting"],["composting-habitatmech-gold-cdbbd857c8.html","Composting"]],"b":[["pcs_fp_medium_for_thermophilic_cellulose_degradation.yaml","pcs_fp_medium_for_thermophilic_cellulose_degradation"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":16,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"]],"b":[["RHODOBACTER_SPHAEROIDES_MEDIUM.yaml","rhodobacter_sphaeroides_medium"]]},{"id":"NCBITaxon:210","l":"Helicobacter pylori","na":8,"nb":1,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["hospital-envo-00002173.html","hospital"],["duodenum-bto-0000365.html","duodenum"],["gastric-juice-bto-0000501.html","gastric juice"],["gastric-mucosa-bto-0001308.html","gastric mucosa"],["gastric-ulcer-bto-0002990.html","gastric ulcer"]],"b":[["BRUCELLA_BROTH.yaml","brucella_broth"]]},{"id":"NCBITaxon:55518","l":"Magnetospirillum gryphiswaldense","na":7,"nb":1,"a":[["bay-envo-00000032.html","bay"],["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"],["saline-water-envo-00002010.html","saline water"],["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["farm-soil-envo-00005749.html","farm soil"],["orchard-envo-00000115.html","orchard"]],"b":[["magnetospirillum_gryphiswaldense_medium__6f77a326.yaml","magnetospirillum_gryphiswaldense_medium"]]},{"id":"NCBITaxon:28114","l":"Porphyromonas levii","na":4,"nb":1,"a":[["environmental-feature-envo-00002297.html","environmental feature"],["lagoon-envo-00000038.html","lagoon"],["skin-environment-envo-2100003.html","skin environment"],["harbour-envo-00000463.html","harbour"]],"b":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]]},{"id":"NCBITaxon:33028","l":"Staphylococcus saccharolyticus","na":3,"nb":1,"a":[["bone-element-uberon-0001474.html","bone element"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["columbia_blood_agar__e1a4386f.yaml","columbia_blood_agar"]]},{"id":"ENVO:00002186","l":"contaminated water","na":1,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["9K_MEDIUM.yaml","9k_medium"],["nitrogen_free_medium_for_leptospirillum_ferrodiazotrophum.yaml","nitrogen_free_medium_for_leptospirillum_ferrodiazotrophum"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":2,"nb":1,"a":[["city-envo-00000856.html","city"],["cropland-biome-envo-01000245.html","cropland biome"]],"b":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]]},{"id":"ENVO:01000306","l":"freshwater environment","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["tap_medium.yaml","tap_medium"]]},{"id":"FOODON:03316428","l":"sweets","na":1,"nb":1,"a":[["sweets-foodon-03316428.html","sweets"]],"b":[["Potato_Dextrose_Broth.yaml","Potato Dextrose Broth"]]},{"id":"NCBITaxon:2203","l":"Methanospirillum hungatei","na":1,"nb":1,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"]],"b":[["medium_for_co_culture_of_strain_jt_with_methanospirillum_hungatei_nbrc_100397.yaml","medium_for_co_culture_of_strain_jt_with_methanospirillum_hungatei_nbrc_100397"]]},{"id":"NCBITaxon:263820","l":"Picrophilus torridus DSM 9790","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["sulfolobus_medium_for_dsm_9790.yaml","sulfolobus_medium_for_dsm_9790"]]},{"id":"NCBITaxon:28125","l":"Prevotella bivia","na":1,"nb":1,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]]},{"id":"NCBITaxon:3046","l":"Dunaliella salina","na":1,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"]],"b":[["2ASW.yaml","2asw"]]},{"id":"NCBITaxon:373903","l":"Halothermothrix orenii H 168","na":1,"nb":1,"a":[["lake-sediment-envo-00000546.html","lake sediment"]],"b":[["halothermothrix_orenii.yaml","halothermothrix_orenii"]]},{"id":"NCBITaxon:859","l":"Fusobacterium necrophorum","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]]},{"id":"UBERON:0001977","l":"blood serum","na":1,"nb":1,"a":[["blood-serum-uberon-0001977.html","blood serum"]],"b":[["mGAM.yaml","mGAM"]]}]} \ No newline at end of file +{"a":"HabitatMech","b":"CultureMech","base":{"HabitatMech":"https://culturebotai.github.io/HabitatMech/pages/habitats/","CultureMech":"https://github.com/CultureBotAI/CultureMech/blob/main/data/merge_yaml/merged/"},"n":25,"by":{"NCBITaxon":13,"ENVO":7,"UBERON":4,"FOODON":1},"terms":[{"id":"UBERON:0000948","l":"heart","na":7,"nb":67,"a":[["heart-habitatmech-gold-2db4d9dd6e.html","Heart"],["heart-habitatmech-gold-8d7a4e1712.html","Heart"],["heart-uberon-0000948.html","heart"],["heart-habitatmech-gold-e9d67283fc.html","Heart"],["heart-habitatmech-gold-805ee181bd.html","Heart"],["heart-habitatmech-gold-20bc7c46a0.html","Heart"]],"b":[["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"],["1_2_mrs_1_2_bhi_agar.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_mrs_1_2_bhi_agar__56430c33.yaml","1_2_mrs_1_2_bhi_agar"],["70_30_sporulation_medium.yaml","70_30_sporulation_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Anaerobic_Brain_Heart_Infusion_Broth.yaml","anaerobic_brain_heart_infusion_broth"]]},{"id":"UBERON:0000955","l":"brain","na":5,"nb":66,"a":[["brain-habitatmech-gold-752ac1c5aa.html","Brain"],["brain-habitatmech-gold-6bdd76cda3.html","Brain"],["brain-habitatmech-gold-a220aa6bb0.html","Brain"],["brain-habitatmech-gold-e1c2f5f7d4.html","Brain"],["brain-habitatmech-gold-2e584195fd.html","Brain"]],"b":[["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"],["1_2_mrs_1_2_bhi_agar.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_mrs_1_2_bhi_agar__56430c33.yaml","1_2_mrs_1_2_bhi_agar"],["70_30_sporulation_medium.yaml","70_30_sporulation_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Anaerobic_Brain_Heart_Infusion_Broth.yaml","anaerobic_brain_heart_infusion_broth"]]},{"id":"UBERON:0000178","l":"blood","na":7,"nb":4,"a":[["blood-habitatmech-gold-f46a5017f9.html","Blood"],["blood-habitatmech-gold-476e09babd.html","Blood"],["blood-habitatmech-gold-d25ff4a586.html","Blood"],["blood-habitatmech-gold-6c6aab19d3.html","Blood"],["blood-uberon-0000178.html","blood"],["whole-blood-habitatmech-gold-3612f7e08f.html","Whole blood"]],"b":[["blood_agar__45bfc12d.yaml","blood_agar"],["columbia_blood_agar_with_5_horse_blood__65a36f66.yaml","columbia_blood_agar_with_5_horse_blood"],["columbia_blood_agar_with_5_rabbit_blood__0ed590f0.yaml","columbia_blood_agar_with_5_rabbit_blood"],["columbia_blood_agar_with_5_sheep_blood__5f55f46d.yaml","columbia_blood_agar_with_5_sheep_blood"]]},{"id":"ENVO:00002007","l":"sediment","na":103,"nb":2,"a":[["marine-sediment-envo-03000033.html","marine sediment"],["sediment-habitatmech-gold-6bc70f0406.html","Sediment"],["sediment-habitatmech-gold-33b265d89f.html","Sediment"],["sediment-habitatmech-gold-7db7617ea4.html","Sediment"],["sediment-habitatmech-gold-2f9eb7ed2f.html","Sediment"],["sediment-habitatmech-gold-2ff751e0a6.html","Sediment"]],"b":[["modified_dsm_120_medium_for_diet_coculture.yaml","modified_dsm_120_medium_for_diet_coculture"],["modified_freshwater_medium_for_diet_coculture.yaml","modified_freshwater_medium_for_diet_coculture"]]},{"id":"ENVO:00002149","l":"sea water","na":7,"nb":2,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["oil-contaminated-habitatmech-gold-a83d030599.html","Oil-contaminated"],["oil-contaminated-habitatmech-gold-d640d7cf58.html","Oil-contaminated"],["oil-contaminated-sediment-habitatmech-gold-e6839bcc8f.html","Oil-contaminated sediment"],["oil-contaminated-sediment-habitatmech-gold-7c79bcbca8.html","Oil-contaminated sediment"],["sea-water-envo-00002149.html","sea water"]],"b":[["PE.yaml","pe"],["f_2.yaml","f_2"]]},{"id":"ENVO:00005801","l":"rhizosphere","na":2,"nb":3,"a":[["rhizosphere-envo-00005801.html","rhizosphere"],["soil-habitatmech-gold-067f7f5e2a.html","Soil"]],"b":[["R2A_AGAR.yaml","r2a_agar"],["half_strength_murashige_skoog_medium_for_arabidopsis_growth.yaml","half_strength_murashige_skoog_medium_for_arabidopsis_growth"],["nitrogen_free_plant_nutrient_solution_for_soybean_growth.yaml","nitrogen_free_plant_nutrient_solution_for_soybean_growth"]]},{"id":"ENVO:01001405","l":"laboratory environment","na":2,"nb":2,"a":[["genetic-cross-habitatmech-gold-ba9317369a.html","Genetic cross"],["laboratory-environment-envo-01001405.html","laboratory environment"]],"b":[["glycerol_fermentation_medium_for_diet_coculture.yaml","glycerol_fermentation_medium_for_diet_coculture"],["tap_medium.yaml","tap_medium"]]},{"id":"NCBITaxon:556484","l":"Phaeodactylum tricornutum CCAP 1055/1","na":2,"nb":2,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["2ASW.yaml","2asw"],["F_2_Medium.yaml","f_2_medium"]]},{"id":"ENVO:00002170","l":"compost","na":20,"nb":1,"a":[["compost-envo-00002170.html","compost"],["composting-habitatmech-gold-143ceb8669.html","Composting"],["composting-habitatmech-gold-edeecbabed.html","Composting"],["composting-habitatmech-gold-5948923b46.html","Composting"],["composting-habitatmech-gold-70db4820d1.html","Composting"],["composting-habitatmech-gold-cdbbd857c8.html","Composting"]],"b":[["pcs_fp_medium_for_thermophilic_cellulose_degradation.yaml","pcs_fp_medium_for_thermophilic_cellulose_degradation"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":16,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"]],"b":[["RHODOBACTER_SPHAEROIDES_MEDIUM.yaml","rhodobacter_sphaeroides_medium"]]},{"id":"NCBITaxon:210","l":"Helicobacter pylori","na":8,"nb":1,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["hospital-envo-00002173.html","hospital"],["duodenum-bto-0000365.html","duodenum"],["gastric-juice-bto-0000501.html","gastric juice"],["gastric-mucosa-bto-0001308.html","gastric mucosa"],["gastric-ulcer-bto-0002990.html","gastric ulcer"]],"b":[["BRUCELLA_BROTH.yaml","brucella_broth"]]},{"id":"NCBITaxon:55518","l":"Magnetospirillum gryphiswaldense","na":7,"nb":1,"a":[["bay-envo-00000032.html","bay"],["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"],["saline-water-envo-00002010.html","saline water"],["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["farm-soil-envo-00005749.html","farm soil"],["orchard-envo-00000115.html","orchard"]],"b":[["magnetospirillum_gryphiswaldense_medium__6f77a326.yaml","magnetospirillum_gryphiswaldense_medium"]]},{"id":"NCBITaxon:28114","l":"Porphyromonas levii","na":4,"nb":1,"a":[["environmental-feature-envo-00002297.html","environmental feature"],["lagoon-envo-00000038.html","lagoon"],["skin-environment-envo-2100003.html","skin environment"],["harbour-envo-00000463.html","harbour"]],"b":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]]},{"id":"NCBITaxon:33028","l":"Staphylococcus saccharolyticus","na":3,"nb":1,"a":[["bone-element-uberon-0001474.html","bone element"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["columbia_blood_agar__e1a4386f.yaml","columbia_blood_agar"]]},{"id":"ENVO:00002186","l":"contaminated water","na":1,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["9K_MEDIUM.yaml","9k_medium"],["nitrogen_free_medium_for_leptospirillum_ferrodiazotrophum.yaml","nitrogen_free_medium_for_leptospirillum_ferrodiazotrophum"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":2,"nb":1,"a":[["city-envo-00000856.html","city"],["cropland-biome-envo-01000245.html","cropland biome"]],"b":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]]},{"id":"ENVO:01000306","l":"freshwater environment","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["tap_medium.yaml","tap_medium"]]},{"id":"FOODON:03316428","l":"sweets","na":1,"nb":1,"a":[["sweets-foodon-03316428.html","sweets"]],"b":[["Potato_Dextrose_Broth.yaml","Potato Dextrose Broth"]]},{"id":"NCBITaxon:2203","l":"Methanospirillum hungatei","na":1,"nb":1,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"]],"b":[["medium_for_co_culture_of_strain_jt_with_methanospirillum_hungatei_nbrc_100397.yaml","medium_for_co_culture_of_strain_jt_with_methanospirillum_hungatei_nbrc_100397"]]},{"id":"NCBITaxon:263820","l":"Picrophilus torridus DSM 9790","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["sulfolobus_medium_for_dsm_9790.yaml","sulfolobus_medium_for_dsm_9790"]]},{"id":"NCBITaxon:28125","l":"Prevotella bivia","na":1,"nb":1,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]]},{"id":"NCBITaxon:3046","l":"Dunaliella salina","na":1,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"]],"b":[["2ASW.yaml","2asw"]]},{"id":"NCBITaxon:373903","l":"Halothermothrix orenii H 168","na":1,"nb":1,"a":[["lake-sediment-envo-00000546.html","lake sediment"]],"b":[["halothermothrix_orenii.yaml","halothermothrix_orenii"]]},{"id":"NCBITaxon:859","l":"Fusobacterium necrophorum","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]]},{"id":"UBERON:0001977","l":"blood serum","na":1,"nb":1,"a":[["blood-serum-uberon-0001977.html","blood serum"]],"b":[["mGAM.yaml","mGAM"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/HabitatMech--NaturalProductMech.json b/assets/fleet/edges/HabitatMech--NaturalProductMech.json index bed0ce1..1f3b4f8 100644 --- a/assets/fleet/edges/HabitatMech--NaturalProductMech.json +++ b/assets/fleet/edges/HabitatMech--NaturalProductMech.json @@ -1 +1 @@ -{"a":"HabitatMech","b":"NaturalProductMech","base":{"HabitatMech":"https://culturebotai.github.io/HabitatMech/pages/habitats/","NaturalProductMech":"https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/natural_products/"},"n":312,"by":{"NCBITaxon":312},"terms":[{"id":"NCBITaxon:56","l":"Sorangium cellulosum","na":27,"nb":25,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["watercourse-envo-00000029.html","watercourse"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["amino_acids_and_peptides/microsclerodermin-m.yaml","microsclerodermin M"],["polyketides/ambruticin.yaml","ambruticin"],["polyketides/chivosazol.yaml","chivosazol"],["polyketides/chlorotonil-a.yaml","chlorotonil A"],["polyketides/disorazol-a.yaml","disorazol A"],["polyketides/etnangien.yaml","etnangien"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":36,"nb":24,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["bay-envo-00000032.html","bay"],["freshwater-biome-envo-00000873.html","freshwater biome"],["liquid-water-envo-00002006.html","liquid water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":19,"nb":116,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["saline-water-body-envo-01001319.html","saline water body"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["alkaloids/altemicidin.yaml","altemicidin"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"],["alkaloids/aurachin-ss.yaml","aurachin SS"],["alkaloids/berninamycin-j.yaml","berninamycin J"],["alkaloids/berninamycin-k.yaml","berninamycin K"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":18,"nb":27,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["alkaloids/pseudomonine.yaml","pseudomonine"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyreudione-c.yaml","pyreudione C"],["alkaloids/quinolobactin.yaml","quinolobactin"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":14,"nb":31,"a":[["watercourse-envo-00000029.html","watercourse"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["leaf-po-0025034.html","leaf"]],"b":[["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["alkaloids/myxofacycline-e.yaml","myxofacycline E"],["alkaloids/myxofacycline-f.yaml","myxofacycline F"],["alkaloids/myxofacycline-g.yaml","myxofacycline G"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":27,"nb":13,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["watercourse-envo-00000029.html","watercourse"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["egg-food-product-foodon-00001274.html","egg food product"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"]],"b":[["unclassified/bananamide-d.yaml","bananamide D"],["unclassified/bananamide-e.yaml","bananamide E"],["unclassified/bananamide-f.yaml","bananamide F"],["unclassified/bananamide-g.yaml","bananamide G"],["unclassified/lokisin.yaml","lokisin"],["unclassified/pseudodesmin-a.yaml","pseudodesmin A"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":28,"nb":12,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["liquid-water-envo-00002006.html","liquid water"],["watercourse-envo-00000029.html","watercourse"],["compost-envo-00002170.html","compost"],["hospital-envo-00002173.html","hospital"],["human-construction-envo-00000070.html","human construction"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:286","l":"Pseudomonas","na":10,"nb":41,"a":[["heart-bto-0000562.html","heart"],["juvenile-bto-0002168.html","juvenile"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"],["pseudostem-bto-0005992.html","pseudostem"]],"b":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["alkaloids/tioguanine.yaml","tioguanine"],["amino_acids_and_peptides/napsamycin-c.yaml","napsamycin C"],["amino_acids_and_peptides/napsamycin-d.yaml","napsamycin D"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":10,"nb":16,"a":[["anther-bto-0000079.html","anther"],["epithelial-cell-bto-0000414.html","epithelial cell"],["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["amino_acids_and_peptides/ericin-s.yaml","ericin S"],["amino_acids_and_peptides/iturin.yaml","iturin"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"]]},{"id":"NCBITaxon:1386","l":"Bacillus","na":19,"nb":9,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["crop-bto-0000301.html","crop"],["dorsum-bto-0001713.html","dorsum"],["hand-bto-0004668.html","hand"],["head-bto-0000282.html","head"],["juvenile-bto-0002168.html","juvenile"]],"b":[["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bogorol-a.yaml","bogorol A"],["amino_acids_and_peptides/koranimine.yaml","koranimine"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"],["amino_acids_and_peptides/rhizocticin-a.yaml","rhizocticin A"],["polyketides/difficidin.yaml","difficidin"]]},{"id":"NCBITaxon:1464","l":"Paenibacillus larvae","na":10,"nb":8,"a":[["surface-water-envo-00002042.html","surface water"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["carcass-envo-00002033.html","carcass"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"],["sludge-envo-00002044.html","sludge"]],"b":[["alkaloids/paenilamicin-a2.yaml","paenilamicin A2"],["alkaloids/paenilamicin-b1.yaml","paenilamicin B1"],["alkaloids/paenilamicin-b2.yaml","paenilamicin B2"],["alkaloids/paenilamicin.yaml","paenilamicin"],["amino_acids_and_peptides/paenilarvin-a.yaml","paenilarvin A"],["amino_acids_and_peptides/paenilarvin-b.yaml","paenilarvin B"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":8,"nb":10,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["alkaloids/labradorin-1.yaml","labradorin 1"],["alkaloids/labradorin-2.yaml","labradorin 2"],["alkaloids/secimide.yaml","secimide"],["amino_acids_and_peptides/phaseolotoxin.yaml","phaseolotoxin"],["amino_acids_and_peptides/syringolin-a.yaml","syringolin A"],["amino_acids_and_peptides/tabtoxin.yaml","tabtoxin"]]},{"id":"NCBITaxon:1876","l":"Micromonospora sp.","na":7,"nb":9,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["marine-water-body-envo-00001999.html","marine water body"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["sludge-envo-00002044.html","sludge"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["polyketides/quinolidomicin-a.yaml","quinolidomicin A"],["polyketides/sungeidine-c.yaml","sungeidine C"],["polyketides/sungeidine-f.yaml","sungeidine F"],["polyketides/sungeidine-g.yaml","sungeidine G"],["shikimates_and_phenylpropanoids/sungeidine-d.yaml","sungeidine D"],["unclassified/sungeidine-a.yaml","sungeidine A"]]},{"id":"NCBITaxon:67263","l":"Streptomyces griseus subsp. griseus","na":6,"nb":7,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["laboratory-facility-envo-01001406.html","laboratory facility"],["clay-envo-00002982.html","clay"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["alkaloids/indolmycin.yaml","indolmycin"],["polyketides/chromomycin-a3.yaml","chromomycin A3"],["polyketides/dinactin.yaml","dinactin"],["polyketides/monactin.yaml","monactin"],["polyketides/nonactin.yaml","nonactin"],["polyketides/tetranactin.yaml","tetranactin"]]},{"id":"NCBITaxon:1269","l":"Micrococcus","na":6,"nb":6,"a":[["cecum-bto-0000166.html","cecum"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["saliva-bto-0001202.html","saliva"],["tongue-bto-0001385.html","tongue"]],"b":[["alkaloids/limazepine-a.yaml","limazepine A"],["alkaloids/limazepine-c.yaml","limazepine C"],["alkaloids/limazepine-d.yaml","limazepine D"],["alkaloids/limazepine-e.yaml","limazepine E"],["alkaloids/limazepine-f.yaml","limazepine F"],["terpenoids/mk-8.yaml","MK-8"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":40,"nb":5,"a":[["liquid-water-envo-00002006.html","liquid water"],["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["laboratory-facility-envo-01001406.html","laboratory facility"],["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["biofilm-bto-0002690.html","biofilm"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"],["unclassified/leuvalin.yaml","leuvalin"],["unclassified/phevalin.yaml","phevalin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":11,"nb":5,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["resting-cell-bto-0001170.html","resting cell"],["seedling-bto-0001228.html","seedling"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["alkaloids/promysalin.yaml","promysalin"],["polyketides/pseudopyronine-a.yaml","pseudopyronine A"],["polyketides/pseudopyronine-b.yaml","pseudopyronine B"],["unclassified/putisolvin-iii.yaml","putisolvin III"],["unclassified/putisolvin-v.yaml","putisolvin V"]]},{"id":"NCBITaxon:10090","l":"Mus musculus","na":8,"nb":5,"a":[["river-envo-00000022.html","river"],["animal-manure-envo-00003031.html","animal manure"],["biotope-envo-00002036.html","biotope"],["intestine-environment-envo-2100002.html","intestine environment"],["urban-biome-envo-01000249.html","urban biome"],["sediment-envo-00002007.html","sediment"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"],["terpenoids/carotene.yaml","β-carotene"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":5,"nb":5,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["pseudostem-bto-0005992.html","pseudostem"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/andrimid.yaml","andrimid"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/pantocin-a.yaml","pantocin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":5,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"],["midgut-bto-0000863.html","midgut"],["paddy-field-envo-00000297.html","paddy field"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["alkaloids/prodigiosin-2.yaml","prodigiosin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/serratiochelin-a.yaml","serratiochelin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["polyketides/oocydin-a.yaml","oocydin A"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":27,"nb":4,"a":[["small-river-biome-envo-00000890.html","small river biome"],["factory-envo-01000536.html","factory"],["organic-waste-material-envo-00002873.html","organic waste material"],["leaf-po-0025034.html","leaf"],["milk-uberon-0001913.html","milk"],["rhizosphere-envo-00005801.html","rhizosphere"]],"b":[["alkaloids/zwittermicin-a.yaml","zwittermicin A"],["amino_acids_and_peptides/livipeptin.yaml","Livipeptin"],["carbohydrates/tunicamycin.yaml","tunicamycin"],["unclassified/cereulide.yaml","cereulide"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":4,"nb":23,"a":[["bioreactor-envo-00002123.html","bioreactor"],["human-construction-envo-00000070.html","human construction"],["sediment-envo-00002007.html","sediment"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/melanin.yaml","melanin"],["alkaloids/undecylprodigiosin.yaml","undecylprodigiosin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/sapb.yaml","SapB"]]},{"id":"NCBITaxon:378806","l":"Stigmatella aurantiaca DW4/3-1","na":4,"nb":17,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["orchard-envo-00000115.html","orchard"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["polyketides/aurafuron-a.yaml","aurafuron A"],["polyketides/dawenol.yaml","dawenol"],["unclassified/dkxanthene-504.yaml","dkxanthene 504"],["unclassified/dkxanthene-508.yaml","dkxanthene 508"],["unclassified/dkxanthene-518.yaml","dkxanthene 518"],["unclassified/dkxanthene-520.yaml","dkxanthene 520"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":13,"nb":4,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["neutrophil-bto-0000130.html","neutrophil"],["rectum-bto-0001158.html","rectum"],["spleen-bto-0001281.html","spleen"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["alkaloids/tilivalline.yaml","tilivalline"],["amino_acids_and_peptides/colibactin.yaml","colibactin"],["amino_acids_and_peptides/klebsidin.yaml","klebsidin"],["carbohydrates/capsular-polysaccharide-2.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:1397","l":"Niallia circulans","na":12,"nb":4,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["organic-waste-material-envo-00002873.html","organic waste material"],["rhizosphere-envo-00005801.html","rhizosphere"],["cultivated-environment-envo-01000311.html","cultivated environment"],["sludge-envo-00002044.html","sludge"]],"b":[["carbohydrates/butirosin-a.yaml","butirosin A"],["carbohydrates/butirosin-b.yaml","butirosin B"],["carbohydrates/butirosin.yaml","butirosin"],["unclassified/pelgipeptin-b.yaml","Pelgipeptin B"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":10,"nb":4,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["air-conditioning-unit-envo-00002874.html","air conditioning unit"],["leaf-bto-0000713.html","leaf"],["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["unclassified/vacidobactin-a.yaml","vacidobactin A"],["unclassified/vacidobactin-b.yaml","vacidobactin B"],["unclassified/variobactin-a.yaml","variobactin A"],["unclassified/variobactin-b.yaml","variobactin B"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae (strain ATCC 42149 / RIB 40)","na":4,"nb":10,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["mountain-pass-envo-00000084.html","mountain pass"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["fatty_acids/oryzine-a.yaml","oryzine A"],["polyketides/kojic-acid.yaml","kojic acid"],["polyketides/oryzine-b.yaml","oryzine B"],["polyketides/ywa1.yaml","YWA1"],["shikimates_and_phenylpropanoids/2-4-dihydroxy-3-methoxypropiophenone.yaml","2,4'-dihydroxy-3'-methoxypropiophenone"],["shikimates_and_phenylpropanoids/8-methyldiaporthin.yaml","8-methyldiaporthin"]]},{"id":"NCBITaxon:10116","l":"Rattus norvegicus","na":9,"nb":4,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["biotope-envo-00002036.html","biotope"],["farm-envo-00000078.html","farm"],["intestine-environment-envo-2100002.html","intestine environment"],["organic-material-envo-01000155.html","organic material"]],"b":[["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/methylarcyriarubin.yaml","methylarcyriarubin"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]]},{"id":"NCBITaxon:83451","l":"Archangium violaceum","na":7,"nb":4,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["wood-bto-0005516.html","wood"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["plant-litter-envo-01000628.html","plant litter"],["sand-envo-01000017.html","sand"]],"b":[["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["alkaloids/myxochelin-n.yaml","myxochelin N"],["alkaloids/myxochelin-o.yaml","myxochelin O"]]},{"id":"NCBITaxon:1930","l":"Streptomyces scabiei","na":4,"nb":6,"a":[["a10-cell-bto-0002196.html","A10 cell"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"],["amino_acids_and_peptides/thaxtomin-c.yaml","thaxtomin C"],["polyketides/oronofacic-acid.yaml","oronofacic acid"],["unclassified/n-coronafacoyl-l-isoleucine.yaml","N-coronafacoyl-L-isoleucine"],["unclassified/thaxtomin-a.yaml","thaxtomin A"],["unclassified/thaxtomin-b.yaml","thaxtomin B"]]},{"id":"NCBITaxon:1393","l":"Brevibacillus brevis","na":5,"nb":4,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["alkaloids/ulbactin-f.yaml","ulbactin F"],["alkaloids/ulbactin-g.yaml","ulbactin G"],["amino_acids_and_peptides/gramicidin.yaml","gramicidin"],["amino_acids_and_peptides/tyrocidine-a.yaml","tyrocidine A"]]},{"id":"NCBITaxon:479432","l":"Streptosporangium roseum DSM 43021","na":4,"nb":5,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"],["vegetable-garden-soil-envo-00005779.html","vegetable garden soil"]],"b":[["polyketides/benaphthamycin.yaml","benaphthamycin"],["polyketides/ws-79089a.yaml","WS 79089A"],["polyketides/ws-79089b.yaml","WS 79089B"],["polyketides/ws-79089c.yaml","WS 79089C"],["polyketides/ws-79089d.yaml","WS 79089D"]]},{"id":"NCBITaxon:39947","l":"Oryza sativa subsp. japonica","na":4,"nb":4,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["large-river-biome-envo-00000887.html","large river biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"],["river-bed-envo-00000384.html","river bed"]],"b":[["terpenoids/10-oxodepressin.yaml","10-Oxodepressin"],["terpenoids/momilactone-b.yaml","momilactone B"],["terpenoids/oryzalides.yaml","oryzalides"],["terpenoids/phytocassane.yaml","phytocassane"]]},{"id":"NCBITaxon:184914","l":"Corallococcus coralloides","na":35,"nb":3,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["watercourse-envo-00000029.html","watercourse"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["amino_acids_and_peptides/myxovalargin-a.yaml","myxovalargin A"],["polyketides/corallopyronin.yaml","corallopyronin"],["polyketides/phenalamide.yaml","phenalamide"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":25,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-water-body-envo-00001999.html","marine water body"],["sea-water-envo-00002149.html","sea water"],["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["amino_acids_and_peptides/epidermin.yaml","epidermin"],["amino_acids_and_peptides/epilancin-15x.yaml","epilancin 15x"],["amino_acids_and_peptides/pep5.yaml","pep5"]]},{"id":"NCBITaxon:54","l":"Nannocystis exedens","na":22,"nb":3,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["watercourse-envo-00000029.html","watercourse"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["polyketides/phenylnannolone-a.yaml","phenylnannolone A"],["polyketides/phenylnannolone-b.yaml","phenylnannolone B"],["polyketides/phenylnannolone-c.yaml","phenylnannolone C"]]},{"id":"NCBITaxon:33","l":"Myxococcus fulvus","na":21,"nb":3,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"]],"b":[["unclassified/fulvuthiacene-a.yaml","Fulvuthiacene A"],["unclassified/fulvuthiacene-b.yaml","Fulvuthiacene B"],["unclassified/myxothiazol.yaml","myxothiazol"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":17,"nb":3,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["fruit-bto-0000486.html","fruit"],["leaf-po-0025034.html","leaf"],["rhizosphere-envo-00005801.html","rhizosphere"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["amino_acids_and_peptides/polymyxin-b.yaml","polymyxin B"],["amino_acids_and_peptides/polymyxin.yaml","polymyxin"],["unclassified/fusaricidin-b.yaml","fusaricidin B"]]},{"id":"NCBITaxon:1654","l":"Actinomyces","na":3,"nb":13,"a":[["hand-bto-0004668.html","hand"],["vaginal-fluid-bto-0003084.html","vaginal fluid"],["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["alkaloids/lynamicin-a.yaml","lynamicin A"],["alkaloids/lynamicin-d.yaml","lynamicin D"],["amino_acids_and_peptides/cephamycin-c.yaml","cephamycin C"],["amino_acids_and_peptides/glycinocin-a.yaml","glycinocin A"],["carbohydrates/cetoniacytone-a.yaml","cetoniacytone A"],["polyketides/4-hexadecanoyl-3-hydroxy-2-hydroxymethyl-2h-furan-5-one.yaml","4-hexadecanoyl-3-hydroxy-2-(hydroxymethyl)-2H-furan-5-one"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":3,"nb":13,"a":[["city-envo-00000856.html","city"],["cold-environment-envo-01000309.html","cold environment"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/congocidine.yaml","congocidine"],["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK1622","na":3,"nb":12,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"],["amino_acids_and_peptides/myxochromide-a.yaml","myxochromide A"],["amino_acids_and_peptides/myxoprincomide-c506.yaml","myxoprincomide-c506"]]},{"id":"NCBITaxon:28095","l":"Burkholderia gladioli","na":3,"nb":12,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["alkaloids/gladiofungin-a.yaml","gladiofungin A"],["alkaloids/gladiofungin-b.yaml","gladiofungin B"],["alkaloids/toxoflavin.yaml","toxoflavin"],["amino_acids_and_peptides/arsinothricin.yaml","arsinothricin"],["amino_acids_and_peptides/bolagladin-a.yaml","bolagladin A"],["fatty_acids/bongkrekic-acid-2.yaml","bongkrekic acid"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":11,"nb":3,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["fermentation-starter-envo-03600040.html","fermentation starter"],["fruit-bto-0000486.html","fruit"],["mammary-epithelial-cell-bto-0004300.html","mammary epithelial cell"],["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"],["amino_acids_and_peptides/lacticin-z.yaml","lacticin Z"],["amino_acids_and_peptides/nisin-a.yaml","nisin A"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":3,"nb":10,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["amino_acids_and_peptides/lipopeptide-8d1-1.yaml","lipopeptide 8D1-1"],["amino_acids_and_peptides/lipopeptide-8d1-2.yaml","lipopeptide 8D1-2"],["carbohydrates/amicetin.yaml","amicetin"],["carbohydrates/streptothricin-c.yaml","streptothricin C"],["carbohydrates/streptothricin-d.yaml","streptothricin D"],["carbohydrates/streptothricin-e.yaml","streptothricin E"]]},{"id":"NCBITaxon:38","l":"Archangium disciforme","na":7,"nb":3,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["feces-uberon-0001988.html","feces"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["wood-bto-0005516.html","wood"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["alkaloids/myxochelin-a.yaml","myxochelin A"],["amino_acids_and_peptides/tubulysin-a.yaml","tubulysin A"],["amino_acids_and_peptides/tubulysin-h.yaml","tubulysin H"]]},{"id":"NCBITaxon:83460","l":"Allostigmatella erecta","na":7,"nb":3,"a":[["feces-uberon-0001988.html","feces"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["plant-litter-envo-01000628.html","plant litter"],["sand-envo-01000017.html","sand"]],"b":[["alkaloids/aurachin-a.yaml","aurachin A"],["alkaloids/aurachin-c.yaml","aurachin C"],["unclassified/myxochromide-d.yaml","myxochromide D"]]},{"id":"NCBITaxon:32008","l":"Burkholderia","na":3,"nb":6,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["midgut-bto-0000863.html","midgut"]],"b":[["polyketides/necroxime-a.yaml","necroxime A"],["polyketides/necroxime-c.yaml","necroxime C"],["polyketides/necroxime-d.yaml","necroxime D"],["polyketides/thailanstatin-a.yaml","thailanstatin A"],["unclassified/necroxime-b.yaml","necroxime B"],["unclassified/spliceostatin.yaml","spliceostatin"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":5,"nb":3,"a":[["liquid-water-envo-00002006.html","liquid water"],["food-spoiled-foodon-00003366.html","food (spoiled)"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"]],"b":[["alkaloids/cepaciachelin.yaml","cepaciachelin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["terpenoids/hopene.yaml","hopene"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":4,"nb":3,"a":[["stream-envo-00000023.html","stream"],["biome-envo-00000428.html","biome"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["unclassified/leuvalin.yaml","leuvalin"],["unclassified/mutanocyclin.yaml","mutanocyclin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:1120925","l":"Acinetobacter bouvetii DSM 14964 = CIP 107468","na":3,"nb":3,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["alkaloids/butanochelin.yaml","butanochelin"],["alkaloids/pentanochelin.yaml","pentanochelin"],["alkaloids/propanochelin.yaml","propanochelin"]]},{"id":"NCBITaxon:1833","l":"Rhodococcus erythropolis","na":3,"nb":3,"a":[["watercourse-envo-00000029.html","watercourse"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"],["water-scum-envo-00005794.html","water scum"]],"b":[["alkaloids/aurachin-re.yaml","aurachin RE"],["amino_acids_and_peptides/heterobactin-a.yaml","heterobactin A"],["amino_acids_and_peptides/heterobactin-s2.yaml","heterobactin S2"]]},{"id":"NCBITaxon:1961","l":"Streptomyces virginiae","na":3,"nb":3,"a":[["clay-envo-00002982.html","clay"],["plain-envo-00000086.html","plain"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["alkaloids/endophenazine-a.yaml","endophenazine A"],["polyketides/monensin.yaml","monensin"],["unclassified/virginiamycin-s1.yaml","virginiamycin S1"]]},{"id":"NCBITaxon:1883","l":"Streptomyces","na":2,"nb":438,"a":[["crop-bto-0000301.html","crop"],["lab-synthesis-habitatmech-bacdive-0e92e77cd4.html","Lab-synthesis"]],"b":[["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/7-prenylisatin.yaml","7-prenylisatin"],["alkaloids/9-methylstreptimidone.yaml","9-methylstreptimidone"],["alkaloids/anisomycin.yaml","(−)-anisomycin"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"]]},{"id":"NCBITaxon:1886","l":"Streptomyces albidoflavus","na":2,"nb":54,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/anthramycin.yaml","anthramycin"],["alkaloids/diazaquinomycin-f.yaml","diazaquinomycin F"],["alkaloids/diazaquinomycin-g.yaml","diazaquinomycin G"],["alkaloids/holomycin.yaml","holomycin"],["alkaloids/melanin.yaml","melanin"]]},{"id":"NCBITaxon:1911","l":"Streptomyces griseus","na":2,"nb":32,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["alkaloids/cycloheximide.yaml","cycloheximide"],["alkaloids/grixazone-a.yaml","grixazone A"],["alkaloids/iminimycin-a.yaml","iminimycin A"],["alkaloids/iminimycin-b.yaml","iminimycin B"],["alkaloids/indolmycin.yaml","indolmycin"],["alkaloids/melanin.yaml","melanin"]]},{"id":"NCBITaxon:369723","l":"Salinispora tropica CNB-440","na":2,"nb":23,"a":[["coarse-beach-sand-envo-00002148.html","coarse beach sand"],["sand-envo-01000017.html","sand"]],"b":[["alkaloids/lymphostin.yaml","lymphostin"],["alkaloids/lymphostinol.yaml","lymphostinol"],["alkaloids/neolymphostin-b-2.yaml","neolymphostin B"],["alkaloids/neolymphostinol-b.yaml","neolymphostinol B"],["amino_acids_and_peptides/salinosporamide-a.yaml","salinosporamide A"],["fatty_acids/salinipostin-a.yaml","Salinipostin A"]]},{"id":"NCBITaxon:83456","l":"Myxococcus virescens","na":15,"nb":2,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["feces-uberon-0001988.html","feces"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"]],"b":[["alkaloids/bengamide.yaml","bengamide"],["unclassified/myxochromide-c.yaml","myxochromide C"]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":2,"nb":14,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/framycetin.yaml","framycetin"],["carbohydrates/neomycin-c.yaml","neomycin C"],["carbohydrates/paromomycin.yaml","paromomycin"]]},{"id":"NCBITaxon:2013","l":"Nocardiopsis","na":2,"nb":14,"a":[["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"],["alkaloids/k-252a.yaml","K-252a"],["alkaloids/methylpendolmycin.yaml","methylpendolmycin"],["alkaloids/pendolmycin.yaml","pendolmycin"],["amino_acids_and_peptides/tp-1161.yaml","TP-1161"],["polyketides/apoptolidin.yaml","apoptolidin"]]},{"id":"NCBITaxon:102234","l":"Cyanobacterium","na":12,"nb":2,"a":[["cecum-bto-0000166.html","cecum"],["colon-bto-0000269.html","colon"],["gut-bto-0000545.html","gut"],["head-bto-0000282.html","head"],["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"]],"b":[["amino_acids_and_peptides/aeruginosin-98-c.yaml","aeruginosin 98-C"],["unclassified/nostopeptolide-a2.yaml","nostopeptolide A2"]]},{"id":"NCBITaxon:271848","l":"Burkholderia thailandensis E264","na":2,"nb":12,"a":[["needle-bto-0000917.html","needle"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["alkaloids/malleobactin-b.yaml","malleobactin B"],["alkaloids/malleobactin-d.yaml","malleobactin D"],["polyketides/malleicyprol.yaml","malleicyprol"],["polyketides/malleilactone.yaml","malleilactone"],["polyketides/thailandamide-lactone.yaml","thailandamide lactone"],["polyketides/thailandamide.yaml","thailandamide"]]},{"id":"NCBITaxon:457427","l":"Streptomyces himastatinicus ATCC 53653","na":9,"nb":2,"a":[["bay-envo-00000032.html","bay"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["saline-water-envo-00002010.html","saline water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["food-product-foodon-00001002.html","food product"]],"b":[["alkaloids/9-methylstreptimidone.yaml","9-methylstreptimidone"],["amino_acids_and_peptides/himastatin.yaml","himastatin"]]},{"id":"NCBITaxon:500485","l":"Penicillium rubens Wisconsin 54-1255","na":2,"nb":9,"a":[["finger-bto-0004669.html","finger"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["alkaloids/dehydrohistidyltryptophanyldiketopiperazine.yaml","dehydrohistidyltryptophanyldiketopiperazine"],["alkaloids/glandicoline-a.yaml","glandicoline A"],["alkaloids/glandicoline-b.yaml","glandicoline B"],["alkaloids/meleagrine.yaml","meleagrine"],["polyketides/sorbicillin.yaml","sorbicillin"],["terpenoids/conidiogenone.yaml","conidiogenone"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":8,"nb":2,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["lab-synthesis-habitatmech-bacdive-0e92e77cd4.html","Lab-synthesis"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["oil-spill-envo-00002061.html","oil spill"],["temperate-envo-01000206.html","temperate"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"],["carbohydrates/oxetanocin-a.yaml","oxetanocin A"]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":8,"nb":2,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["terpenoids/xanthan.yaml","xanthan"]]},{"id":"NCBITaxon:345341","l":"Kutzneria sp. 744","na":2,"nb":8,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"],["clay-envo-00002982.html","clay"]],"b":[["amino_acids_and_peptides/kutzneride-6.yaml","Kutzneride 6"],["unclassified/kutzneride-1.yaml","Kutzneride 1"],["unclassified/kutzneride-2.yaml","Kutzneride 2"],["unclassified/kutzneride-3.yaml","Kutzneride 3"],["unclassified/kutzneride-4.yaml","Kutzneride 4"],["unclassified/kutzneride-5.yaml","Kutzneride 5"]]},{"id":"NCBITaxon:331117","l":"Aspergillus fischeri NRRL 181","na":2,"nb":7,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["terpenoids/compound-5.yaml","compound 5"],["terpenoids/compound-6-2.yaml","compound 6"],["terpenoids/compound-7a.yaml","compound 7a"],["terpenoids/compound-8-2.yaml","compound 8"],["terpenoids/sesterfisheric-acid.yaml","sesterfisheric acid"],["terpenoids/sesterfisherol.yaml","sesterfisherol"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":7,"nb":2,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["liquid-water-envo-00002006.html","liquid water"],["crown-gall-bto-0000303.html","crown gall"],["finger-bto-0004669.html","finger"],["resting-cell-bto-0001170.html","resting cell"],["water-scum-envo-00005794.html","water scum"]],"b":[["alkaloids/agrobactin.yaml","agrobactin"],["amino_acids_and_peptides/aztreonam.yaml","aztreonam"]]},{"id":"NCBITaxon:391037","l":"Salinispora arenicola CNS-205","na":2,"nb":7,"a":[["beach-sand-envo-00002138.html","beach sand"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["alkaloids/lymphostin.yaml","lymphostin"],["alkaloids/lymphostinol.yaml","lymphostinol"],["alkaloids/neolymphostin-b.yaml","neolymphostin b"],["alkaloids/neolymphostinol-b.yaml","neolymphostinol B"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/cyclomarin-d.yaml","cyclomarin D"]]},{"id":"NCBITaxon:63737","l":"Nostoc punctiforme PCC 73102","na":2,"nb":7,"a":[["heterocyst-bto-0000600.html","heterocyst"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["amino_acids_and_peptides/microviridin-n3.yaml","microviridin N3"],["amino_acids_and_peptides/microviridin-n4.yaml","microviridin N4"],["amino_acids_and_peptides/microviridin-n6.yaml","microviridin N6"],["amino_acids_and_peptides/microviridin-n7.yaml","microviridin N7"],["amino_acids_and_peptides/microviridin-n8.yaml","microviridin N8"],["amino_acids_and_peptides/microviridin-n9.yaml","microviridin N9"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":6,"nb":2,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"],["sludge-envo-00002044.html","sludge"],["forested-area-envo-00000111.html","forested area"],["scrubland-area-envo-00000300.html","scrubland area"],["soil-envo-00001998.html","soil"]],"b":[["amino_acids_and_peptides/cupriachelin.yaml","cupriachelin"],["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"]]},{"id":"NCBITaxon:457412","l":"Ruminococcus sp. 5_1_39BFAA","na":2,"nb":6,"a":[["animal-litter-envo-00002191.html","animal litter"],["tropical-envo-01000204.html","tropical"]],"b":[["alkaloids/pzn10.yaml","PZN10"],["alkaloids/pzn11.yaml","PZN11"],["alkaloids/pzn5.yaml","PZN5"],["alkaloids/pzn6.yaml","PZN6"],["alkaloids/pzn7.yaml","PZN7"],["alkaloids/pzn9.yaml","PZN9"]]},{"id":"NCBITaxon:4577","l":"Zea mays","na":2,"nb":6,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["alkaloids/dimboa.yaml","DIMBOA"],["polyketides/emodin.yaml","emodin"],["terpenoids/zealexin-a1.yaml","zealexin A1"],["terpenoids/zealexin-b3.yaml","zealexin B3"],["terpenoids/zealexin-c2.yaml","zealexin C2"],["unclassified/aflatoxin.yaml","aflatoxin"]]},{"id":"NCBITaxon:1465","l":"Brevibacillus laterosporus","na":2,"nb":5,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["amino_acids_and_peptides/bogorol-a.yaml","bogorol A"],["amino_acids_and_peptides/tauramamide.yaml","tauramamide"],["shikimates_and_phenylpropanoids/basiliskamide-a.yaml","Basiliskamide A"],["unclassified/basiliskamide-b.yaml","Basiliskamide B"],["unclassified/laterocidine.yaml","laterocidine"]]},{"id":"NCBITaxon:497689","l":"Streptomyces sp. SNA15896","na":2,"nb":5,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["unclassified/sw-163c.yaml","SW-163C"],["unclassified/sw-163e.yaml","SW-163E"],["unclassified/sw-163f.yaml","SW-163F"],["unclassified/sw-163g.yaml","SW-163G"],["unclassified/uk-63598.yaml","UK 63598"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":5,"nb":2,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["pseudostem-bto-0005992.html","pseudostem"],["seedling-bto-0001228.html","seedling"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["soil-envo-00001998.html","soil"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["terpenoids/mk-8.yaml","MK-8"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":5,"nb":2,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"],["feces-uberon-0001988.html","feces"],["rectum-bto-0001158.html","rectum"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["alkaloids/vibriobactin-2.yaml","vibriobactin"],["alkaloids/vibriobactin.yaml","vibriobactin"]]},{"id":"NCBITaxon:1224742","l":"","na":2,"nb":4,"a":[["kidney-bto-0000671.html","kidney"],["renal-cortex-bto-0001166.html","renal cortex"]],"b":[["polyketides/amphi-enterobactin-1.yaml","Amphi-enterobactin 1"],["polyketides/amphi-enterobactin-2.yaml","amphi-enterobactin 2"],["polyketides/amphi-enterobactin-3.yaml","amphi-enterobactin 3"],["polyketides/amphi-enterobactin-4.yaml","amphi-enterobactin 4"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":4,"nb":2,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["carcass-envo-00002033.html","carcass"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["sludge-envo-00002044.html","sludge"]],"b":[["alkaloids/biotin.yaml","biotin"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":4,"nb":2,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["unclassified/andalusicin-a.yaml","andalusicin A"]]},{"id":"NCBITaxon:305","l":"Ralstonia solanacearum","na":4,"nb":2,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"],["pseudostem-bto-0005992.html","pseudostem"],["xylem-bto-0001468.html","xylem"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"],["unclassified/micacocidin.yaml","micacocidin"]]},{"id":"NCBITaxon:398578","l":"Delftia acidovorans SPH-1","na":4,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["large-river-biome-envo-00000887.html","large river biome"],["sewage-envo-00002018.html","sewage"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["amino_acids_and_peptides/delftibactin-a.yaml","delftibactin A"],["amino_acids_and_peptides/delftibactin-b.yaml","delftibactin B"]]},{"id":"NCBITaxon:426418","l":"Pyrenophora tritici-repentis Pt-1C-BFP","na":2,"nb":4,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["unclassified/triticone-a.yaml","triticone A"],["unclassified/triticone-b.yaml","triticone B"],["unclassified/triticone-c.yaml","triticone C"],["unclassified/triticone-f.yaml","triticone F"]]},{"id":"NCBITaxon:479433","l":"Catenulispora acidiphila DSM 44928","na":4,"nb":2,"a":[["filament-bto-0000463.html","filament"],["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["amino_acids_and_peptides/catenulipeptin.yaml","catenulipeptin"],["shikimates_and_phenylpropanoids/cacibiocin-b.yaml","cacibiocin B"]]},{"id":"NCBITaxon:6239","l":"Caenorhabditis elegans","na":2,"nb":4,"a":[["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["alkaloids/biotin.yaml","biotin"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/itaconic-acid.yaml","itaconic acid"],["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"]]},{"id":"NCBITaxon:703612","l":"","na":2,"nb":4,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["amino_acids_and_peptides/mycosubtilin.yaml","mycosubtilin"],["amino_acids_and_peptides/rhizocticin-a.yaml","rhizocticin A"],["amino_acids_and_peptides/subtilin.yaml","subtilin"],["amino_acids_and_peptides/subtilosin-a.yaml","subtilosin A"]]},{"id":"NCBITaxon:1129","l":"Synechococcus","na":2,"nb":3,"a":[["column-bto-0005692.html","column"],["hemolymph-bto-0000572.html","hemolymph"]],"b":[["alkaloids/synechobactin-a.yaml","synechobactin A"],["alkaloids/synechobactin-b.yaml","synechobactin B"],["alkaloids/synechobactin-c.yaml","synechobactin C"]]},{"id":"NCBITaxon:1218948","l":"Pseudomonas fluorescens PF5","na":3,"nb":2,"a":[["large-river-biome-envo-00000887.html","large river biome"],["human-construction-envo-00000070.html","human construction"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["alkaloids/pyoluteorin.yaml","pyoluteorin"],["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":2,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:1932","l":"Streptomyces tendae","na":2,"nb":3,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"],["polyketides/lysolipin-i.yaml","lysolipin I"],["terpenoids/geosmin.yaml","(−)-geosmin"]]},{"id":"NCBITaxon:1938","l":"Streptomyces viridochromogenes","na":2,"nb":3,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["amino_acids_and_peptides/glycinocin-a.yaml","glycinocin A"],["carbohydrates/avilamycin-a.yaml","avilamycin A"],["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"]]},{"id":"NCBITaxon:2021","l":"Thermobifida fusca","na":2,"nb":3,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["amino_acids_and_peptides/fuscachelin-a.yaml","Fuscachelin A"],["amino_acids_and_peptides/fuscachelin-b.yaml","Fuscachelin B"],["amino_acids_and_peptides/fuscachelin-c.yaml","Fuscachelin C"]]},{"id":"NCBITaxon:269800","l":"Thermobifida fusca YX","na":2,"nb":3,"a":[["compost-envo-00002170.html","compost"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["amino_acids_and_peptides/fuscachelin-a.yaml","Fuscachelin A"],["amino_acids_and_peptides/fuscachelin-b.yaml","Fuscachelin B"],["amino_acids_and_peptides/fuscachelin-c.yaml","Fuscachelin C"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":3,"nb":2,"a":[["bile-bto-0000121.html","bile"],["rectum-bto-0001158.html","rectum"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["alkaloids/acinetobactin.yaml","acinetobactin"],["amino_acids_and_peptides/fimsbactin-a.yaml","fimsbactin A"]]},{"id":"NCBITaxon:556","l":"Dickeya chrysanthemi","na":2,"nb":3,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["amino_acids_and_peptides/chrysobactin.yaml","chrysobactin"],["amino_acids_and_peptides/dichrysobactin.yaml","dichrysobactin"],["unclassified/cyclic-trichrysobactin.yaml","cyclic trichrysobactin"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":3,"nb":2,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["amino_acids_and_peptides/vibrioferrin-2.yaml","vibrioferrin"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:1121302","l":"Clostridium cavendishii DSM 21758","na":2,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["groundwater-envo-01001004.html","groundwater"]],"b":[["alkaloids/closoxazole-a.yaml","closoxazole A"],["alkaloids/closoxazole-b.yaml","closoxazole B"]]},{"id":"NCBITaxon:176299","l":"Agrobacterium fabrum (strain C58 / ATCC 33970)","na":2,"nb":2,"a":[["human-construction-envo-00000070.html","human construction"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["amino_acids_and_peptides/fabrubactin-a.yaml","fabrubactin A"],["amino_acids_and_peptides/fabrubactin-b.yaml","fabrubactin B"]]},{"id":"NCBITaxon:316274","l":"Herpetosiphon aurantiacus DSM 785","na":2,"nb":2,"a":[["filament-bto-0000463.html","filament"],["joint-bto-0001686.html","joint"]],"b":[["alkaloids/auriculamide.yaml","auriculamide"],["terpenoids/o-methylkolavelool.yaml","(+)-O-methylkolavelool"]]},{"id":"NCBITaxon:394096","l":"Hyalangium minutum","na":2,"nb":2,"a":[["wood-bto-0005516.html","wood"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["polyketides/nystatin-a1.yaml","nystatin A1"],["unclassified/myxochromide-d-2.yaml","myxochromide D"]]},{"id":"NCBITaxon:394503","l":"Ruminiclostridium cellulolyticum H10","na":2,"nb":2,"a":[["agricultural-waste-material-envo-01000371.html","agricultural waste material"],["compost-envo-00002170.html","compost"]],"b":[["alkaloids/closthioamide.yaml","closthioamide"],["amino_acids_and_peptides/rc-aip1.yaml","Rc-AIP1"]]},{"id":"NCBITaxon:444103","l":"Streptomyces sp. CNQ-509","na":2,"nb":2,"a":[["colonic-cancer-cell-bto-0000586.html","colonic cancer cell"],["vas-efferens-bto-0002254.html","vas efferens"]],"b":[["alkaloids/marinophenazine-a.yaml","marinophenazine A"],["alkaloids/phenaziterpene-a.yaml","phenaziterpene A"]]},{"id":"NCBITaxon:47879","l":"Pseudomonas corrugata","na":2,"nb":2,"a":[["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["wilt-habitatmech-bacdive-4c48b5114d.html","Wilt"]],"b":[["amino_acids_and_peptides/corpeptin-a.yaml","corpeptin A"],["amino_acids_and_peptides/corpeptin-b.yaml","corpeptin B"]]},{"id":"NCBITaxon:543728","l":"Variovorax paradoxus S110","na":2,"nb":2,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"]],"b":[["unclassified/vacidobactin-a.yaml","vacidobactin A"],["unclassified/vacidobactin-b.yaml","vacidobactin B"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":2,"nb":2,"a":[["feces-uberon-0001988.html","feces"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["alkaloids/yersiniabactin.yaml","yersiniabactin"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":2,"nb":2,"a":[["watercourse-envo-00000029.html","watercourse"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["amino_acids_and_peptides/vibrioferrin-2.yaml","vibrioferrin"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:1177","l":"Nostoc","na":1,"nb":41,"a":[["inflorescence-bto-0000628.html","inflorescence"]],"b":[["alkaloids/nocuolin-a.yaml","Nocuolin A"],["amino_acids_and_peptides/anabaenopeptin-802.yaml","anabaenopeptin 802"],["amino_acids_and_peptides/heinamide-a1.yaml","heinamide A1"],["amino_acids_and_peptides/heinamide-a2.yaml","heinamide A2"],["amino_acids_and_peptides/heinamide-a3.yaml","heinamide A3"],["amino_acids_and_peptides/heinamide-b1.yaml","heinamide B1"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":33,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["pond-water-envo-00002228.html","pond water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["water-body-envo-00000063.html","water body"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:243265","l":"Photorhabdus laumondii subsp. laumondii TTO1","na":1,"nb":21,"a":[["carcass-bto-0001965.html","carcass"]],"b":[["amino_acids_and_peptides/gamexpeptide-c.yaml","gamexpeptide C"],["amino_acids_and_peptides/luminmycin-a.yaml","luminmycin A"],["amino_acids_and_peptides/ririwpeptide-a.yaml","ririwpeptide A"],["amino_acids_and_peptides/ririwpeptide-b.yaml","ririwpeptide B"],["carbohydrates/oligosaccharide-1-glcnac-1-4-1-6-anhydro-glcnac.yaml","oligosaccharide 1 (GlcNAc-β(1-4)-1,6-anhydro-β-GlcNAc)"],["carbohydrates/oligosaccharide-2-glcnac-1-4-glcnac-1-4-1-6-anhydro-glcnac.yaml","oligosaccharide 2 (GlcNAc-β(1-4)-GlcNAc-β(1-4)-1,6-anhydro-β-GlcNAc)"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":1,"nb":20,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/c-3-sulfonylated-derivative.yaml","C-3 sulfonylated derivative"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["alkaloids/n-n-dioxide-containing-derivate.yaml","N,N-dioxide containing derivate"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":19,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["bone-element-uberon-0001474.html","bone element"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["amino_acids_and_peptides/bacitracin.yaml","bacitracin"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":17,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["hospital-envo-00002173.html","hospital"],["egg-food-product-foodon-00001274.html","egg food product"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["amino_acids_and_peptides/enterocin-a.yaml","enterocin A"]]},{"id":"NCBITaxon:455632","l":"Streptomyces griseus subsp. griseus NBRC 13350","na":1,"nb":17,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["alkaloids/grixazone-a.yaml","grixazone A"],["alkaloids/iminimycin-a.yaml","iminimycin A"],["alkaloids/iminimycin-b.yaml","iminimycin B"],["alkaloids/melanin.yaml","melanin"],["carbohydrates/streptomycin.yaml","streptomycin"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":16,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":14,"nb":1,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["compost-envo-00002170.html","compost"],["organic-waste-material-envo-00002873.html","organic waste material"],["larva-bto-0000707.html","larva"],["rhizosphere-envo-00005801.html","rhizosphere"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]]},{"id":"NCBITaxon:29488","l":"Photorhabdus luminescens","na":1,"nb":14,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["alkaloids/photobactin.yaml","photobactin"],["alkaloids/pzn5.yaml","PZN5"],["amino_acids_and_peptides/gamexpeptide-c.yaml","gamexpeptide C"],["amino_acids_and_peptides/glidobactin.yaml","glidobactin"],["amino_acids_and_peptides/luminmycin-a.yaml","luminmycin A"],["polyketides/photopyrone-a.yaml","photopyrone A"]]},{"id":"NCBITaxon:1357","l":"Lactococcus","na":13,"nb":1,"a":[["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["ileum-bto-0000620.html","ileum"],["intestine-bto-0000648.html","intestine"],["mouth-bto-0001090.html","mouth"]],"b":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":1,"nb":13,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["alkaloids/holomycin.yaml","holomycin"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/2-formyloxymethylclavam.yaml","2-formyloxymethylclavam"],["amino_acids_and_peptides/2-hydroxymethylclavam.yaml","2-hydroxymethylclavam"],["amino_acids_and_peptides/alanylclavam.yaml","alanylclavam"],["amino_acids_and_peptides/cephamycin-c.yaml","cephamycin C"]]},{"id":"NCBITaxon:406817","l":"Xenorhabdus nematophila ATCC 19061","na":1,"nb":13,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["alkaloids/nematophin.yaml","nematophin"],["amino_acids_and_peptides/rhabdopeptide-1.yaml","rhabdopeptide 1"],["amino_acids_and_peptides/rhabdopeptide-2.yaml","rhabdopeptide 2"],["amino_acids_and_peptides/rhabdopeptide-3.yaml","rhabdopeptide 3"],["amino_acids_and_peptides/rhabdopeptide-4.yaml","rhabdopeptide 4"],["amino_acids_and_peptides/xenortide-a.yaml","xenortide A"]]},{"id":"NCBITaxon:104268","l":"Tenacibaculum mesophilum","na":12,"nb":1,"a":[["bay-envo-00000032.html","bay"],["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"],["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"]],"b":[["fatty_acids/bisucaberin-b.yaml","bisucaberin B"]]},{"id":"NCBITaxon:321614","l":"","na":1,"nb":12,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["alkaloids/phomacin-d.yaml","phomacin D"],["alkaloids/phomacin-e.yaml","phomacin E"],["polyketides/betaenone-b.yaml","betaenone B"],["polyketides/betaenone-c.yaml","betaenone C"],["polyketides/compound-3-2.yaml","compound 3"],["polyketides/compound-5-2.yaml","compound 5"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":11,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"],["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["laboratory-facility-envo-01001406.html","laboratory facility"],["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["bone-element-uberon-0001474.html","bone element"],["juvenile-bto-0002168.html","juvenile"]],"b":[["amino_acids_and_peptides/cutimycin.yaml","cutimycin"]]},{"id":"NCBITaxon:229533","l":"Fusarium graminearum PH-1","na":1,"nb":11,"a":[["soil-envo-00001998.html","soil"]],"b":[["alkaloids/chrysogine.yaml","chrysogine"],["amino_acids_and_peptides/fusaoctaxin-a.yaml","fusaoctaxin A"],["polyketides/aurofusarin.yaml","aurofusarin"],["polyketides/prolipyrone-b.yaml","prolipyrone B"],["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"],["terpenoids/15-acetyldeoxynivalenol.yaml","15-acetyldeoxynivalenol"]]},{"id":"NCBITaxon:38033","l":"Chaetomium globosum","na":1,"nb":11,"a":[["desert-sand-envo-00005800.html","desert sand"]],"b":[["alkaloids/chaetoglobosin-c.yaml","chaetoglobosin C"],["alkaloids/cytoglobosin-x.yaml","cytoglobosin X"],["polyketides/11-epichaetomugilin-a.yaml","11-epichaetomugilin A"],["polyketides/azanigerone-a.yaml","azanigerone A"],["polyketides/chaetoviridin-e.yaml","chaetoviridin E"],["polyketides/shanorellin.yaml","shanorellin"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":1,"nb":11,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["amino_acids_and_peptides/ferrichrome.yaml","ferrichrome"],["polyketides/1-2-3-5-10-tetrahydroxy-7-methoxy-4-oxo-1-2-3-4-tetrahydroanthracen-2-yl-pentane.yaml","1-(2,3,5,10-tetrahydroxy-7-methoxy-4-oxo-1,2,3,4-tetrahydroanthracen-2-yl)pentane-2,4-dione"],["polyketides/azanigerone-a.yaml","azanigerone A"],["polyketides/campyrone-b.yaml","campyrone B"],["polyketides/desmethyl-tan-1612.yaml","desmethyl TAN-1612"],["polyketides/fumonisin-b2.yaml","fumonisin B2"]]},{"id":"NCBITaxon:111805","l":"Actinomadura pelletieri","na":10,"nb":1,"a":[["lake-envo-00000020.html","lake"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["foot-bto-0000476.html","foot"],["rhizosphere-envo-00005801.html","rhizosphere"],["organic-material-envo-01000155.html","organic material"]],"b":[["alkaloids/undecylprodigiosin-2.yaml","undecylprodigiosin"]]},{"id":"NCBITaxon:1716","l":"Corynebacterium","na":10,"nb":1,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["ileum-bto-0000620.html","ileum"],["juvenile-bto-0002168.html","juvenile"],["mucosa-bto-0000886.html","mucosa"],["nectar-bto-0000537.html","nectar"]],"b":[["alkaloids/corynecin-iii.yaml","corynecin III"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa (strain ATCC 15692 / DSM 22644 / CIP 104116 / JCM 14847 / LMG 12228 / 1C / PRS 101 / PAO1)","na":1,"nb":10,"a":[["style-bto-0001313.html","style"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:543","l":"Enterobacteriaceae","na":10,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"],["midgut-bto-0000863.html","midgut"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":9,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["fresh-water-envo-00002011.html","fresh water"],["river-envo-00000022.html","river"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["alkaloids/molybdenum-cofactor.yaml","molybdenum cofactor"]]},{"id":"NCBITaxon:1817","l":"Nocardia","na":1,"nb":9,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["alkaloids/rebeccamycin.yaml","rebeccamycin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/nocathiacin-i.yaml","nocathiacin I"],["amino_acids_and_peptides/ristocetin-a.yaml","Ristocetin A"],["amino_acids_and_peptides/vancomycin.yaml","vancomycin"],["polyketides/macbecin-ii.yaml","macbecin II"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":9,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["mud-envo-01000001.html","mud"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":8,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["alimentary-canal-bto-0000058.html","alimentary canal"],["blood-bto-0000089.html","blood"],["small-intestine-bto-0000651.html","small intestine"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["geographic-feature-envo-00000000.html","geographic feature"]],"b":[["amino_acids_and_peptides/salivaricin-d.yaml","salivaricin D"]]},{"id":"NCBITaxon:1836","l":"Saccharopolyspora erythraea","na":1,"nb":8,"a":[["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["amino_acids_and_peptides/erythrochelin.yaml","erythrochelin"],["polyketides/3-3-diflaviolin.yaml","3,3'-diflaviolin"],["polyketides/erythromycin-a.yaml","erythromycin A"],["polyketides/erythromycin-b.yaml","erythromycin B"],["polyketides/flaviolin-rhamnoside.yaml","flaviolin rhamnoside"],["polyketides/flaviolin.yaml","flaviolin"]]},{"id":"NCBITaxon:1908","l":"Streptomyces globisporus","na":1,"nb":8,"a":[["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["polyketides/c-1027-chromophore.yaml","C-1027 chromophore"],["polyketides/c-1027.yaml","C-1027"],["polyketides/landomycin-a.yaml","landomycin A"],["polyketides/nonactin.yaml","nonactin"],["polyketides/prejadomycin.yaml","prejadomycin"],["polyketides/tetranactin.yaml","tetranactin"]]},{"id":"NCBITaxon:326423","l":"Bacillus velezensis FZB42","na":1,"nb":8,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["polyketides/bacillaene.yaml","bacillaene"],["polyketides/difficidin.yaml","difficidin"],["polyketides/macrolactin-h.yaml","macrolactin H"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:420953","l":"Paraburkholderia megapolitana","na":1,"nb":8,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["amino_acids_and_peptides/megapolibactin-a.yaml","megapolibactin A"],["amino_acids_and_peptides/megapolibactin-acyc.yaml","megapolibactin Acyc"],["amino_acids_and_peptides/megapolibactin-b.yaml","megapolibactin B"],["amino_acids_and_peptides/megapolibactin-c.yaml","megapolibactin C"],["amino_acids_and_peptides/megapolibactin-d.yaml","megapolibactin D"],["amino_acids_and_peptides/megapolibactin-e.yaml","megapolibactin E"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":8,"nb":1,"a":[["beach-envo-00000091.html","beach"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["sea-sand-envo-00002118.html","sea sand"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["polyketides/haliamide.yaml","haliamide"]]},{"id":"NCBITaxon:680198","l":"Streptomyces scabiei 87.22","na":1,"nb":8,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["alkaloids/rotihibin-a.yaml","rotihibin A"],["amino_acids_and_peptides/bottromycin-a2.yaml","bottromycin A2"],["amino_acids_and_peptides/edha.yaml","EDHA"],["amino_acids_and_peptides/scabichelin.yaml","scabichelin"],["amino_acids_and_peptides/thaxtomin-c.yaml","thaxtomin C"],["unclassified/n-coronafacoyl-l-isoleucine.yaml","N-coronafacoyl-L-isoleucine"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":7,"nb":1,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["farm-envo-00000078.html","farm"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["unclassified/rhodochelin.yaml","rhodochelin"]]},{"id":"NCBITaxon:1044","l":"Erythrobacter longus","na":7,"nb":1,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["small-river-biome-envo-00000890.html","small river biome"],["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["biofilm-material-envo-01000156.html","biofilm material"]],"b":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]]},{"id":"NCBITaxon:83455","l":"Myxococcus stipitatus","na":7,"nb":1,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["plant-litter-envo-01000628.html","plant litter"],["sand-envo-01000017.html","sand"]],"b":[["polyketides/phenalamide-a2.yaml","phenalamide A2"]]},{"id":"NCBITaxon:1069","l":"Rhodomicrobium vannielii","na":6,"nb":1,"a":[["lake-envo-00000020.html","lake"],["stream-envo-00000023.html","stream"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["rhizosphere-envo-00005801.html","rhizosphere"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["terpenoids/carotene.yaml","β-carotene"]]},{"id":"NCBITaxon:1311","l":"Streptococcus agalactiae","na":6,"nb":1,"a":[["kidney-bto-0000671.html","kidney"],["milk-uberon-0001913.html","milk"],["oropharynx-bto-0005257.html","oropharynx"],["urine-bto-0001419.html","urine"],["urogenital-system-bto-0003091.html","urogenital system"],["vagina-bto-0000243.html","vagina"]],"b":[["carbohydrates/capsular-polysaccharide-3.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:205922","l":"Pseudomonas fluorescens Pf0-1","na":6,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["cold-environment-envo-01000309.html","cold environment"],["microbial-mat-material-envo-01000157.html","microbial mat material"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"],["agricultural-soil-envo-00002259.html","agricultural soil"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["unclassified/gacamide-a.yaml","gacamide A"]]},{"id":"NCBITaxon:278992","l":"Streptomyces ambofaciens ATCC 23877","na":1,"nb":6,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["alkaloids/congocidine.yaml","congocidine"],["polyketides/spiramycin.yaml","spiramycin"],["polyketides/stambomycin-a.yaml","stambomycin A"],["polyketides/stambomycin-b.yaml","stambomycin B"],["polyketides/stambomycin-c.yaml","stambomycin C"],["polyketides/stambomycin-d.yaml","stambomycin D"]]},{"id":"NCBITaxon:37632","l":"Amycolatopsis sp.","na":1,"nb":6,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["amino_acids_and_peptides/ristocetin-a.yaml","Ristocetin A"],["polyketides/rifamorpholine-a.yaml","rifamorpholine A"],["polyketides/rifamorpholine-b.yaml","rifamorpholine B"],["polyketides/rifamorpholine-c.yaml","rifamorpholine C"],["polyketides/rifamorpholine-d.yaml","rifamorpholine D"],["polyketides/rifamorpholine-e.yaml","rifamorpholine E"]]},{"id":"NCBITaxon:446","l":"Legionella pneumophila","na":6,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["hospital-envo-00002173.html","hospital"],["macrophage-bto-0000801.html","macrophage"],["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["fatty_acids/lipopolysaccharide.yaml","lipopolysaccharide"]]},{"id":"NCBITaxon:5530","l":"Metarhizium anisopliae","na":1,"nb":6,"a":[["soil-envo-00001998.html","soil"]],"b":[["alkaloids/ng-391.yaml","NG-391"],["amino_acids_and_peptides/serinocyclin-a.yaml","serinocyclin A"],["amino_acids_and_peptides/serinocyclin-b.yaml","serinocyclin B"],["fatty_acids/baa.yaml","BAA"],["fatty_acids/bab.yaml","BAB"],["unclassified/destruxin-a.yaml","destruxin A"]]},{"id":"NCBITaxon:115828","l":"Streptomyces maritimus","na":5,"nb":1,"a":[["farm-envo-00000078.html","farm"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["plain-envo-00000086.html","plain"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["terpenoids/enterocin.yaml","enterocin"]]},{"id":"NCBITaxon:1275","l":"Kocuria rosea","na":5,"nb":1,"a":[["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["marine-environment-envo-01000320.html","marine environment"],["oil-spill-envo-00002061.html","oil spill"],["painting-habitatmech-bacdive-0bfb662164.html","Painting"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["amino_acids_and_peptides/kocurin.yaml","kocurin"]]},{"id":"NCBITaxon:1292","l":"Staphylococcus warneri","na":5,"nb":1,"a":[["neonate-bto-0001762.html","neonate"],["skin-of-body-uberon-0002097.html","skin of body"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["amino_acids_and_peptides/nukacin-isk-1.yaml","nukacin ISK-1"]]},{"id":"NCBITaxon:168695","l":"Salinispora tropica","na":1,"nb":5,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["alkaloids/lymphostin.yaml","lymphostin"],["amino_acids_and_peptides/salinosporamide-a.yaml","salinosporamide A"],["polyketides/lomaiviticin-a.yaml","lomaiviticin A"],["polyketides/sporolide-b.yaml","sporolide B"],["unclassified/salinilactam.yaml","salinilactam"]]},{"id":"NCBITaxon:168697","l":"Salinispora arenicola","na":1,"nb":5,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["amino_acids_and_peptides/cyclomarin-d.yaml","cyclomarin D"],["polyketides/arenimycin-a.yaml","arenimycin A"],["polyketides/rifamycin-sv.yaml","rifamycin SV"],["unclassified/emericellamide-a.yaml","emericellamide A"],["unclassified/emericellamide-b.yaml","emericellamide B"]]},{"id":"NCBITaxon:29303","l":"Streptomyces cattleya","na":1,"nb":5,"a":[["clay-envo-00002982.html","clay"]],"b":[["amino_acids_and_peptides/cattlecin.yaml","cattlecin"],["amino_acids_and_peptides/clavulanic-acid.yaml","clavulanic acid"],["amino_acids_and_peptides/ethynylserine.yaml","β-ethynylserine"],["amino_acids_and_peptides/thienamycin.yaml","thienamycin"],["terpenoids/cattleyene.yaml","cattleyene"]]},{"id":"NCBITaxon:43","l":"Cystobacter fuscus","na":1,"nb":5,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"]],"b":[["amino_acids_and_peptides/cystomanamide-a.yaml","cystomanamide A"],["amino_acids_and_peptides/cystomanamide-b.yaml","cystomanamide B"],["amino_acids_and_peptides/cystomanamide-c.yaml","cystomanamide C"],["amino_acids_and_peptides/cystomanamide-d.yaml","cystomanamide D"],["unclassified/cystothiazole-a.yaml","cystothiazole A"]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":1,"nb":5,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["alkaloids/9-deoxy-tilivalline.yaml","9-deoxy tilivalline"],["alkaloids/dehydro-tilivalline.yaml","dehydro tilivalline"],["alkaloids/dihydroxy-dehydro-tilivalline.yaml","dihydroxy-dehydro tilivalline"],["alkaloids/dihydroxy-tilivalline.yaml","dihydroxy tilivalline"],["alkaloids/tilivalline.yaml","tilivalline"]]},{"id":"NCBITaxon:95486","l":"Burkholderia cenocepacia","na":5,"nb":1,"a":[["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["unclassified/ornibactin-c8.yaml","ornibactin C8"]]},{"id":"NCBITaxon:1038928","l":"Streptomyces xinghaiensis","na":1,"nb":4,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["alkaloids/dixiamycin-a.yaml","dixiamycin A"],["alkaloids/xiamycin-a.yaml","xiamycin A"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"],["polyketides/oligomycin.yaml","oligomycin"]]},{"id":"NCBITaxon:1827","l":"Rhodococcus","na":4,"nb":1,"a":[["nectar-bto-0000537.html","nectar"],["pitcher-bto-0001069.html","pitcher"],["small-intestine-bto-0000651.html","small intestine"],["stem-bto-0001300.html","stem"]],"b":[["alkaloids/corynecin-iii.yaml","corynecin III"]]},{"id":"NCBITaxon:1965334","l":"Cystobacter sp.","na":1,"nb":4,"a":[["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["unclassified/vioprolide-a.yaml","vioprolide A"],["unclassified/vioprolide-b.yaml","vioprolide B"],["unclassified/vioprolide-c.yaml","vioprolide C"],["unclassified/vioprolide-d.yaml","vioprolide D"]]},{"id":"NCBITaxon:1967","l":"Streptomyces kanamyceticus","na":1,"nb":4,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["amino_acids_and_peptides/gausemycin-a.yaml","gausemycin A"],["amino_acids_and_peptides/gausemycin-b.yaml","gausemycin B"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/kanamycin-a.yaml","kanamycin A"]]},{"id":"NCBITaxon:227882","l":"","na":1,"nb":4,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["amino_acids_and_peptides/edha.yaml","EDHA"],["polyketides/filipin-iii.yaml","filipin III"],["terpenoids/avermitilol.yaml","avermitilol"],["terpenoids/pentalenolactone.yaml","pentalenolactone"]]},{"id":"NCBITaxon:2745","l":"Halomonas","na":1,"nb":4,"a":[["wood-bto-0005516.html","wood"]],"b":[["amino_acids_and_peptides/potashchelin-a.yaml","potashchelin A"],["amino_acids_and_peptides/potashchelin-b.yaml","potashchelin B"],["amino_acids_and_peptides/potashchelin-c.yaml","potashchelin C"],["amino_acids_and_peptides/potashchelin-d.yaml","potashchelin D"]]},{"id":"NCBITaxon:310350","l":"Nocardiopsis sp.","na":1,"nb":4,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["alkaloids/k-252a.yaml","K-252a"],["polyketides/nocardiopsistin-a.yaml","nocardiopsistin A"],["polyketides/nocardiopsistin-b.yaml","nocardiopsistin B"],["polyketides/nocardiopsistin-c.yaml","nocardiopsistin C"]]},{"id":"NCBITaxon:362","l":"Agrobacterium radiobacter","na":4,"nb":1,"a":[["plant-gall-po-0025626.html","plant gall"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["alkaloids/agrobactin.yaml","agrobactin"]]},{"id":"NCBITaxon:68570","l":"","na":1,"nb":4,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["amino_acids_and_peptides/deimino-antipain.yaml","deimino-antipain"],["polyketides/nystatin.yaml","nystatin"],["unclassified/albonoursin.yaml","albonoursin"],["unclassified/citrulassin-a.yaml","citrulassin A"]]},{"id":"NCBITaxon:746360","l":"Pseudomonas fluorescens WH6","na":4,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["human-construction-envo-00000070.html","human construction"],["cold-environment-envo-01000309.html","cold environment"],["peatland-envo-00000044.html","peatland"]],"b":[["amino_acids_and_peptides/4-formylaminooxyvinylglycine.yaml","4-formylaminooxyvinylglycine"]]},{"id":"NCBITaxon:85698","l":"Achromobacter xylosoxidans","na":4,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["amino_acids_and_peptides/alcaligin.yaml","alcaligin"]]},{"id":"NCBITaxon:86667","l":"Jeotgalibacillus marinus","na":1,"nb":4,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"]],"b":[["fatty_acids/macrolactin-1c.yaml","macrolactin 1c"],["fatty_acids/macrolactin-b.yaml","macrolactin B"],["polyketides/macrolactin-e.yaml","macrolactin E"],["polyketides/macrolactin-h.yaml","macrolactin H"]]},{"id":"NCBITaxon:103232","l":"Streptomyces ipomoeae","na":1,"nb":3,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["amino_acids_and_peptides/thaxtomin-c.yaml","thaxtomin C"],["unclassified/thaxtomin-a.yaml","thaxtomin A"],["unclassified/thaxtomin-b.yaml","thaxtomin B"]]},{"id":"NCBITaxon:107635","l":"Methylosinus sp. LW3","na":3,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"]],"b":[["amino_acids_and_peptides/group-1-methanobactin.yaml","group 1 methanobactin"]]},{"id":"NCBITaxon:1570","l":"Halobacillus halophilus","na":3,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:1904","l":"Streptomyces cyaneus","na":1,"nb":3,"a":[["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["carbohydrates/curamycin.yaml","curamycin"],["polyketides/cardol.yaml","cardol"],["polyketides/cosmomycin-d.yaml","cosmomycin D"]]},{"id":"NCBITaxon:1935","l":"Streptomyces violaceoruber","na":1,"nb":3,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["polyketides/granaticin.yaml","granaticin"],["polyketides/kendomycin.yaml","kendomycin"],["terpenoids/methylenomycin-a.yaml","methylenomycin A"]]},{"id":"NCBITaxon:216591","l":"Burkholderia cenocepacia J2315","na":1,"nb":3,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["unclassified/ornibactin-c4.yaml","ornibactin C4"],["unclassified/ornibactin-c6.yaml","ornibactin C6"],["unclassified/ornibactin-c8.yaml","ornibactin C8"]]},{"id":"NCBITaxon:216595","l":"","na":3,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["human-construction-envo-00000070.html","human construction"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["unclassified/viscosin.yaml","viscosin"]]},{"id":"NCBITaxon:237","l":"Flavobacterium","na":3,"nb":1,"a":[["column-bto-0005692.html","column"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"]]},{"id":"NCBITaxon:264951","l":"Paecilomyces variotii","na":1,"nb":3,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["polyketides/agnestin-a.yaml","agnestin A"],["polyketides/agnestin-b.yaml","agnestin B"],["polyketides/viriditoxin.yaml","viriditoxin"]]},{"id":"NCBITaxon:28447","l":"Clavibacter michiganensis","na":3,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["canker-habitatmech-bacdive-0f078d72a7.html","Canker"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["amino_acids_and_peptides/michiganin-a.yaml","michiganin A"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":3,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["sludge-envo-00002044.html","sludge"],["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"NCBITaxon:384676","l":"Pseudomonas entomophila L48","na":1,"nb":3,"a":[["coelom-bto-0001707.html","coelom"]],"b":[["alkaloids/labradorin-1.yaml","labradorin 1"],["alkaloids/labradorin-2.yaml","labradorin 2"],["alkaloids/pimprinine.yaml","pimprinine"]]},{"id":"NCBITaxon:388467","l":"Planktothrix agardhii NIVA-CYA 126/8","na":1,"nb":3,"a":[["filament-bto-0000463.html","filament"]],"b":[["amino_acids_and_peptides/anabaenopeptin-908.yaml","anabaenopeptin 908"],["amino_acids_and_peptides/anabaenopeptin-915.yaml","anabaenopeptin 915"],["amino_acids_and_peptides/microcystin.yaml","microcystin"]]},{"id":"NCBITaxon:393595","l":"Alcanivorax borkumensis SK2","na":1,"nb":3,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["amino_acids_and_peptides/amphibactin-e.yaml","amphibactin E"],["amino_acids_and_peptides/amphibactin-h.yaml","amphibactin H"],["fatty_acids/amphibactin-i.yaml","amphibactin I"]]},{"id":"NCBITaxon:448385","l":"","na":1,"nb":3,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["polyketides/etnangien.yaml","etnangien"],["polyketides/soraphen-a.yaml","soraphen A"],["terpenoids/eremophilene.yaml","(+)-eremophilene"]]},{"id":"NCBITaxon:45","l":"Melittangium lichenicola","na":3,"nb":1,"a":[["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["unclassified/melithiazol-a.yaml","melithiazol A"]]},{"id":"NCBITaxon:469371","l":"Thermobispora bispora DSM 43833","na":3,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["amino_acids_and_peptides/thiomuracin.yaml","thiomuracin"]]},{"id":"NCBITaxon:47312","l":"Tsukamurella pulmonis","na":3,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["tuberculosis-habitatmech-bacdive-e5d21f85b7.html","Tuberculosis"]],"b":[["amino_acids_and_peptides/longicatenamide-a.yaml","longicatenamide A"]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":3,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:757424","l":"Herbaspirillum seropedicae SmR1","na":1,"nb":3,"a":[["environmental-material-envo-00010483.html","environmental material"]],"b":[["amino_acids_and_peptides/serobactin-a.yaml","serobactin A"],["amino_acids_and_peptides/serobactin-b.yaml","serobactin B"],["amino_acids_and_peptides/serobactin-c.yaml","serobactin C"]]},{"id":"NCBITaxon:1074049","l":"Candidatus Burkholderia crenata","na":2,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"],["seedling-bto-0001228.html","seedling"]],"b":[["unclassified/fr900359.yaml","FR900359"]]},{"id":"NCBITaxon:1122611","l":"Nonomuraea coxensis DSM 45129","na":1,"nb":2,"a":[["sand-envo-01000017.html","sand"]],"b":[["amino_acids_and_peptides/a50926-a.yaml","A50926 A"],["amino_acids_and_peptides/a50926-b.yaml","A50926 B"]]},{"id":"NCBITaxon:1267754","l":"Corynebacterium urealyticum DSM 7111","na":2,"nb":1,"a":[["kidney-bto-0000671.html","kidney"],["urinary-tract-bto-0001244.html","urinary tract"]],"b":[["amino_acids_and_peptides/corynazolicin.yaml","corynazolicin"]]},{"id":"NCBITaxon:1281","l":"Staphylococcus carnosus","na":2,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["alkaloids/molybdenum-cofactor.yaml","molybdenum cofactor"]]},{"id":"NCBITaxon:1284","l":"Staphylococcus hyicus","na":1,"nb":2,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["unclassified/staphyloferrin-a.yaml","staphyloferrin A"]]},{"id":"NCBITaxon:1360","l":"Lactococcus lactis subsp. lactis","na":1,"nb":2,"a":[["foregut-bto-0000507.html","foregut"]],"b":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"],["amino_acids_and_peptides/nisin-a.yaml","nisin A"]]},{"id":"NCBITaxon:13684","l":"Parastagonospora nodorum","na":2,"nb":1,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["desert-sand-envo-00005800.html","desert sand"]],"b":[["shikimates_and_phenylpropanoids/mellein.yaml","(-)-Mellein"]]},{"id":"NCBITaxon:13689","l":"Sphingomonas paucimobilis","na":2,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"]],"b":[["unclassified/minimycin.yaml","minimycin"]]},{"id":"NCBITaxon:1550035","l":"Streptomyces sp. NBRC 109706","na":1,"nb":2,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["polyketides/akaeolide.yaml","akaeolide"],["polyketides/lorneic-acid-a.yaml","lorneic acid A"]]},{"id":"NCBITaxon:1703","l":"Brevibacterium linens","na":1,"nb":2,"a":[["animal-waste-material-envo-00002276.html","animal waste material"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"],["terpenoids/isorenieratene.yaml","isorenieratene"]]},{"id":"NCBITaxon:173560","l":"Saccharothrix algeriensis","na":1,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["alkaloids/holomycin.yaml","holomycin"],["alkaloids/thiolutin.yaml","thiolutin"]]},{"id":"NCBITaxon:1946","l":"Streptomyces kasugaensis","na":1,"nb":2,"a":[["plain-envo-00000086.html","plain"]],"b":[["alkaloids/thiolutin.yaml","thiolutin"],["carbohydrates/kasugamycin.yaml","kasugamycin"]]},{"id":"NCBITaxon:2014","l":"Nocardiopsis dassonvillei","na":2,"nb":1,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["alkaloids/iodinin.yaml","iodinin"]]},{"id":"NCBITaxon:2045","l":"Nocardioides simplex","na":2,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:205918","l":"Pseudomonas syringae pv. syringae B728a","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["alkaloids/secimide.yaml","secimide"],["unclassified/syringomycin.yaml","syringomycin"]]},{"id":"NCBITaxon:2062","l":"Streptomycetaceae","na":1,"nb":2,"a":[["crop-bto-0000301.html","crop"]],"b":[["alkaloids/carbazomycin-b.yaml","carbazomycin B"],["unclassified/quinomycin.yaml","quinomycin"]]},{"id":"NCBITaxon:234621","l":"Rhodococcus erythropolis PR4","na":1,"nb":2,"a":[["joint-bto-0001686.html","joint"]],"b":[["amino_acids_and_peptides/heterobactin-a.yaml","heterobactin A"],["amino_acids_and_peptides/heterobactin-s2.yaml","heterobactin S2"]]},{"id":"NCBITaxon:249586","l":"","na":1,"nb":2,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["carbohydrates/polyoxin-a.yaml","polyoxin A"],["carbohydrates/polyoxin-h.yaml","polyoxin H"]]},{"id":"NCBITaxon:263358","l":"Verrucosispora maris AB-18-032","na":1,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["polyketides/abyssomicin-c.yaml","abyssomicin C"],["polyketides/atrop-abyssomicin-c.yaml","atrop-abyssomicin C"]]},{"id":"NCBITaxon:28094","l":"Trinickia caryophylli","na":1,"nb":2,"a":[["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["amino_acids_and_peptides/gramibactin-b.yaml","gramibactin B"],["fatty_acids/caryoynencin.yaml","caryoynencin"]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["carbohydrates/legionaminic-acid.yaml","legionaminic acid"],["carbohydrates/pseudaminate.yaml","pseudaminate"]]},{"id":"NCBITaxon:298386","l":"Photobacterium profundum SS9","na":2,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["underground-water-envo-00005792.html","underground water"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans Pd1222","na":2,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["alkaloids/parabactin.yaml","parabactin"]]},{"id":"NCBITaxon:337330","l":"Lactiplantibacillus plantarum subsp. plantarum","na":2,"nb":1,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:357","l":"Agrobacterium","na":2,"nb":1,"a":[["stem-bto-0001300.html","stem"],["trunk-bto-0001493.html","trunk"]],"b":[["alkaloids/sesbanimide-c.yaml","sesbanimide C"]]},{"id":"NCBITaxon:362242","l":"","na":2,"nb":1,"a":[["subcutaneous-tissue-bto-0004525.html","subcutaneous tissue"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["polyketides/mycolactone-b.yaml","mycolactone B"]]},{"id":"NCBITaxon:36746","l":"Pseudomonas cichorii","na":1,"nb":2,"a":[["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["amino_acids_and_peptides/cichofactin-a.yaml","cichofactin A"],["amino_acids_and_peptides/cichofactin-b.yaml","cichofactin B"]]},{"id":"NCBITaxon:37329","l":"Nocardia farcinica","na":2,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["amino_acids_and_peptides/nocobactin-na.yaml","nocobactin NA"]]},{"id":"NCBITaxon:397945","l":"","na":1,"nb":2,"a":[["river-bed-envo-00000384.html","river bed"]],"b":[["unclassified/acidobactin-a.yaml","acidobactin A"],["unclassified/acidobactin-b.yaml","acidobactin B"]]},{"id":"NCBITaxon:41899","l":"Burkholderia plantarii","na":2,"nb":1,"a":[["panicle-bto-0005436.html","panicle"],["seedling-bto-0001228.html","seedling"]],"b":[["amino_acids_and_peptides/plantaribactin.yaml","plantaribactin"]]},{"id":"NCBITaxon:42234","l":"Streptomyces acidiscabies","na":1,"nb":2,"a":[["a10-cell-bto-0002196.html","A10 cell"]],"b":[["fatty_acids/butyrolactone.yaml","γ-butyrolactone"],["unclassified/thaxtomin-a.yaml","thaxtomin A"]]},{"id":"NCBITaxon:443906","l":"Clavibacter michiganensis subsp. michiganensis NCPPB 382","na":2,"nb":1,"a":[["xylem-bto-0001468.html","xylem"],["peatland-envo-00000044.html","peatland"]],"b":[["amino_acids_and_peptides/michiganin-a.yaml","michiganin A"]]},{"id":"NCBITaxon:4558","l":"Sorghum bicolor","na":1,"nb":2,"a":[["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["amino_acids_and_peptides/s-4-hydroxymandelonitrile-d-glucoside.yaml","(S)-4-hydroxymandelonitrile β-D-glucoside"],["shikimates_and_phenylpropanoids/alternariol.yaml","alternariol"]]},{"id":"NCBITaxon:457429","l":"Streptomyces pristinaespiralis ATCC 25486","na":1,"nb":2,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["amino_acids_and_peptides/pristinin-a3.yaml","pristinin A3"],["terpenoids/2s-3r-9r-pristinol.yaml","(+)-(2S,3R,9R)-pristinol"]]},{"id":"NCBITaxon:47917","l":"Serratia fonticola","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"]],"b":[["alkaloids/1-6-phenazinedimethanol.yaml","1,6-phenazinedimethanol"]]},{"id":"NCBITaxon:497965","l":"","na":2,"nb":1,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["fatty_acids/1-heptadecene.yaml","1-heptadecene"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":1,"nb":2,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["amino_acids_and_peptides/aerobactin.yaml","aerobactin"],["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:58340","l":"Streptomyces lavendulae subsp. lavendulae","na":1,"nb":2,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["amino_acids_and_peptides/cycloserine.yaml","cycloserine"],["polyketides/auricin.yaml","auricin"]]},{"id":"NCBITaxon:587","l":"Providencia rettgeri","na":2,"nb":1,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["fumarole-envo-00000216.html","fumarole"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:60550","l":"Burkholderia pyrrocinia","na":1,"nb":2,"a":[["seedling-bto-0001228.html","seedling"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/occidiofungin-a.yaml","occidiofungin A"]]},{"id":"NCBITaxon:60894","l":"Saccharopolyspora spinosa","na":1,"nb":2,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["polyketides/a83543a.yaml","A83543A"],["polyketides/spinosyn-d.yaml","spinosyn D"]]},{"id":"NCBITaxon:648","l":"Aeromonas caviae","na":2,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:65","l":"Herpetosiphon aurantiacus","na":1,"nb":2,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["alkaloids/auriculamide.yaml","auriculamide"],["terpenoids/o-methylkolavelool.yaml","(+)-O-methylkolavelool"]]},{"id":"NCBITaxon:67274","l":"Streptomyces argenteolus","na":1,"nb":2,"a":[["plain-envo-00000086.html","plain"]],"b":[["amino_acids_and_peptides/carbapenem-mm4550.yaml","carbapenem MM4550"],["terpenoids/ks-505a.yaml","KS-505a"]]},{"id":"NCBITaxon:68042","l":"Streptomyces hygroscopicus subsp. hygroscopicus","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["terpenoids/hygromycin-a.yaml","hygromycin A"]]},{"id":"NCBITaxon:68170","l":"","na":1,"nb":2,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["alkaloids/rebeccamycin.yaml","rebeccamycin"],["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:68203","l":"Streptomyces fungicidicus","na":1,"nb":2,"a":[["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["unclassified/enduracidin-a.yaml","enduracidin A"],["unclassified/enduracidin-b.yaml","enduracidin B"]]},{"id":"NCBITaxon:71999","l":"Kocuria palustris","na":2,"nb":1,"a":[["duodenal-mucosa-bto-0000367.html","duodenal mucosa"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"]],"b":[["amino_acids_and_peptides/kocurin.yaml","kocurin"]]},{"id":"NCBITaxon:720","l":"Actinobacillus lignieresii","na":2,"nb":1,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["unclassified/capsular-polysaccharide.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:80866","l":"Delftia acidovorans","na":1,"nb":2,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["amino_acids_and_peptides/delftibactin-a.yaml","delftibactin A"],["amino_acids_and_peptides/delftibactin-b.yaml","delftibactin B"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":2,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["fatty_acids/galactosylceramide.yaml","α-galactosylceramide"]]},{"id":"NCBITaxon:88728","l":"Pinus koraiensis","na":2,"nb":1,"a":[["lagoon-envo-00000038.html","lagoon"],["tropical-envo-01000204.html","tropical"]],"b":[["terpenoids/koraiol.yaml","koraiol"]]},{"id":"NCBITaxon:9031","l":"Gallus gallus","na":2,"nb":1,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:92743","l":"","na":1,"nb":2,"a":[["plain-envo-00000086.html","plain"]],"b":[["amino_acids_and_peptides/malonomycin.yaml","malonomycin"],["carbohydrates/paromomycin.yaml","paromomycin"]]},{"id":"NCBITaxon:1004","l":"Chitinophaga sancti","na":1,"nb":1,"a":[["plant-bto-0001481.html","plant"]],"b":[["polyketides/elansolid-a1.yaml","elansolid A1"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"]]},{"id":"NCBITaxon:1077944","l":"Streptomyces muensis","na":1,"nb":1,"a":[["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["unclassified/griselimycin.yaml","griselimycin"]]},{"id":"NCBITaxon:1091494","l":"Methylotuvimicrobium alcaliphilum 20Z","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:1108595","l":"Chromobacterium vaccinii","na":1,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["unclassified/fr900359-2.yaml","FR900359"]]},{"id":"NCBITaxon:111781","l":"Leptolyngbya sp. PCC 7376","na":1,"nb":1,"a":[["rock-envo-00001995.html","rock"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"]]},{"id":"NCBITaxon:111807","l":"Actinomadura yumaensis","na":1,"nb":1,"a":[["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["polyketides/maduramicin.yaml","maduramicin"]]},{"id":"NCBITaxon:1137255","l":"Salinispora arenicola CNT005","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["unclassified/retimycin-a.yaml","retimycin A"]]},{"id":"NCBITaxon:114497","l":"Cordyceps fumosorosea","na":1,"nb":1,"a":[["low-tide-zone-envo-00000319.html","low tide zone"]],"b":[["polyketides/fumosorinone.yaml","fumosorinone"]]},{"id":"NCBITaxon:1200302","l":"Photobacterium damselae subsp. piscicida DI21","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["alkaloids/piscibactin.yaml","piscibactin"]]},{"id":"NCBITaxon:1293","l":"Staphylococcus gallinarum","na":1,"nb":1,"a":[["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["amino_acids_and_peptides/gallidermin.yaml","gallidermin"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["alkaloids/petrobactin.yaml","petrobactin"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:1599","l":"Latilactobacillus sakei","na":1,"nb":1,"a":[["research-facility-envo-00000469.html","research facility"]],"b":[["unclassified/lactocin-s.yaml","lactocin S"]]},{"id":"NCBITaxon:173365","l":"Methylobacter tundripaludum","na":1,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["unclassified/tundrenone.yaml","tundrenone"]]},{"id":"NCBITaxon:1989","l":"Actinomadura sp.","na":1,"nb":1,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["polyketides/maduramicin.yaml","maduramicin"]]},{"id":"NCBITaxon:1993","l":"Actinomadura madurae","na":1,"nb":1,"a":[["foot-bto-0000476.html","foot"]],"b":[["polyketides/maduropeptin.yaml","maduropeptin"]]},{"id":"NCBITaxon:2074","l":"Pseudonocardia autotrophica","na":1,"nb":1,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["polyketides/nystatin-like-pseudonocardia-polyene-a1.yaml","nystatin-like Pseudonocardia polyene A1"]]},{"id":"NCBITaxon:216895","l":"Vibrio vulnificus CMCP6","na":1,"nb":1,"a":[["hela-cell-bto-0000567.html","HeLa cell"]],"b":[["alkaloids/vulnibactin.yaml","vulnibactin"]]},{"id":"NCBITaxon:22","l":"Shewanella","na":1,"nb":1,"a":[["wood-bto-0005516.html","wood"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"NCBITaxon:226","l":"Alteromonas","na":1,"nb":1,"a":[["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["unclassified/marinostatin.yaml","marinostatin"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":1,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["alkaloids/parabactin.yaml","parabactin"]]},{"id":"NCBITaxon:267747","l":"Cutibacterium acnes KPA171202","na":1,"nb":1,"a":[["sebaceous-gland-bto-0001980.html","sebaceous gland"]],"b":[["amino_acids_and_peptides/cutimycin.yaml","cutimycin"]]},{"id":"NCBITaxon:28035","l":"Staphylococcus lugdunensis","na":1,"nb":1,"a":[["foot-bto-0000476.html","foot"]],"b":[["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]]},{"id":"NCBITaxon:28450","l":"Burkholderia pseudomallei","na":1,"nb":1,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"]],"b":[["polyketides/malleilactone.yaml","malleilactone"]]},{"id":"NCBITaxon:285482","l":"Streptomyces tsusimaensis","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["unclassified/valinomycin-2.yaml","valinomycin"]]},{"id":"NCBITaxon:29447","l":"Xanthomonas albilineans","na":1,"nb":1,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["alkaloids/albicidin.yaml","albicidin"]]},{"id":"NCBITaxon:298653","l":"Frankia sp. EAN1pec","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["polyketides/frankiamicin.yaml","frankiamicin"]]},{"id":"NCBITaxon:299254","l":"Streptomyces sp. NRRL 11266","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["polyketides/tetronomycin.yaml","tetronomycin"]]},{"id":"NCBITaxon:307120","l":"Micromonospora marina","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["unclassified/thiocoraline.yaml","thiocoraline"]]},{"id":"NCBITaxon:312309","l":"","na":1,"nb":1,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["unclassified/ape-vf.yaml","APE Vf"]]},{"id":"NCBITaxon:322710","l":"Azotobacter vinelandii DJ","na":1,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["amino_acids_and_peptides/azotobactin-d.yaml","azotobactin D"]]},{"id":"NCBITaxon:333964","l":"Xenorhabdus indica","na":1,"nb":1,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["unclassified/taxlllaid-a.yaml","taxlllaid A"]]},{"id":"NCBITaxon:33915","l":"Saccharopolyspora sp.","na":1,"nb":1,"a":[["forested-area-envo-00000111.html","forested area"]],"b":[["amino_acids_and_peptides/kyamicin.yaml","kyamicin"]]},{"id":"NCBITaxon:349521","l":"Hahella chejuensis KCTC 2396","na":1,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["alkaloids/prodigiosin-2.yaml","prodigiosin"]]},{"id":"NCBITaxon:349725","l":"Micromonospora sp. ML1","na":1,"nb":1,"a":[["clay-envo-00002982.html","clay"]],"b":[["unclassified/thiocoraline.yaml","thiocoraline"]]},{"id":"NCBITaxon:3654","l":"Citrullus lanatus","na":1,"nb":1,"a":[["wood-bto-0005516.html","wood"]],"b":[["fatty_acids/butyrolactone.yaml","γ-butyrolactone"]]},{"id":"NCBITaxon:376686","l":"","na":1,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["polyketides/flexirubin.yaml","flexirubin"]]},{"id":"NCBITaxon:38313","l":"Shewanella algae","na":1,"nb":1,"a":[["foot-bto-0000476.html","foot"]],"b":[["amino_acids_and_peptides/avaroferrin.yaml","avaroferrin"]]},{"id":"NCBITaxon:384","l":"Rhizobium leguminosarum","na":1,"nb":1,"a":[["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["amino_acids_and_peptides/vicibactin.yaml","vicibactin"]]},{"id":"NCBITaxon:394193","l":"Amycolatopsis saalfeldensis","na":1,"nb":1,"a":[["cave-envo-00000067.html","cave"]],"b":[["amino_acids_and_peptides/saalfelduracin.yaml","saalfelduracin"]]},{"id":"NCBITaxon:40223","l":"Methylophaga thalassica","na":1,"nb":1,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:4113","l":"Solanum tuberosum","na":1,"nb":1,"a":[["tuber-bto-0001400.html","tuber"]],"b":[["fatty_acids/itaconic-acid.yaml","itaconic acid"]]},{"id":"NCBITaxon:41276","l":"Brevundimonas vesicularis","na":1,"nb":1,"a":[["forested-area-envo-00000111.html","forested area"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:43769","l":"Corynebacterium propinquum","na":1,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["amino_acids_and_peptides/dehydroxynocardamine.yaml","dehydroxynocardamine"]]},{"id":"NCBITaxon:446787","l":"Actinopolymorpha rutila","na":1,"nb":1,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"]]},{"id":"NCBITaxon:45071","l":"Legionella parisiensis","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["shikimates_and_phenylpropanoids/legioliulin.yaml","legioliulin"]]},{"id":"NCBITaxon:4513","l":"Hordeum vulgare","na":1,"nb":1,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["unclassified/roquefortine-c.yaml","roquefortine C"]]},{"id":"NCBITaxon:452652","l":"Kitasatospora setae KM-6054","na":1,"nb":1,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["alkaloids/kitasetaline.yaml","kitasetaline"]]},{"id":"NCBITaxon:463","l":"Fluoribacter dumoffii","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["shikimates_and_phenylpropanoids/legioliulin.yaml","legioliulin"]]},{"id":"NCBITaxon:488447","l":"Burkholderia contaminans","na":1,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["amino_acids_and_peptides/occidiofungin-a.yaml","occidiofungin A"]]},{"id":"NCBITaxon:512","l":"Alcaligenes sp","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["polyketides/kalimantacin-a.yaml","kalimantacin A"]]},{"id":"NCBITaxon:53409","l":"Pseudomonas coronafaciens","na":1,"nb":1,"a":[["pc-12-cell-bto-0001009.html","PC-12 cell"]],"b":[["polyketides/coronatine.yaml","coronatine"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":1,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:547","l":"Enterobacter","na":1,"nb":1,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["amino_acids_and_peptides/andrimid.yaml","andrimid"]]},{"id":"NCBITaxon:570268","l":"Nocardiopsis potens DSM 45234","na":1,"nb":1,"a":[["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"]],"b":[["amino_acids_and_peptides/potensibactin.yaml","potensibactin"]]},{"id":"NCBITaxon:591158","l":"Streptomyces sp. AA4","na":1,"nb":1,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["amino_acids_and_peptides/amychelin-a.yaml","amychelin A"]]},{"id":"NCBITaxon:60890","l":"Phaeobacter gallaeciensis","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["shikimates_and_phenylpropanoids/tropodithietic-acid.yaml","tropodithietic acid"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":1,"nb":1,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["unclassified/ape-vf.yaml","APE Vf"]]},{"id":"NCBITaxon:68175","l":"Streptomyces antimycoticus","na":1,"nb":1,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["terpenoids/napyradiomycin.yaml","napyradiomycin"]]},{"id":"NCBITaxon:68242","l":"Streptomyces natalensis","na":1,"nb":1,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["polyketides/natamycin.yaml","natamycin"]]},{"id":"NCBITaxon:69485","l":"Actinoplanes garbadinensis","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["amino_acids_and_peptides/actagardine.yaml","actagardine"]]},{"id":"NCBITaxon:703577","l":"Dactylosporangium aurantiacum subsp. hamdenensis","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["polyketides/tiacumicin-b.yaml","tiacumicin B"]]},{"id":"NCBITaxon:715","l":"Actinobacillus pleuropneumoniae","na":1,"nb":1,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["unclassified/capsular-polysaccharide.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["unclassified/lysocin-e.yaml","lysocin E"]]},{"id":"NCBITaxon:749414","l":"","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["polyketides/nanchangmycin.yaml","nanchangmycin"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":1,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["unclassified/mycobactin.yaml","mycobactin"]]},{"id":"NCBITaxon:85336","l":"Rothia nasimurium","na":1,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"]],"b":[["unclassified/valinomycin-2.yaml","valinomycin"]]}]} \ No newline at end of file +{"a":"HabitatMech","b":"NaturalProductMech","base":{"HabitatMech":"https://culturebotai.github.io/HabitatMech/pages/habitats/","NaturalProductMech":"https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/natural_products/"},"n":312,"by":{"NCBITaxon":312},"terms":[{"id":"NCBITaxon:56","l":"Sorangium cellulosum","na":27,"nb":25,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["watercourse-envo-00000029.html","watercourse"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["amino_acids_and_peptides/microsclerodermin-m.yaml","microsclerodermin M"],["polyketides/ambruticin.yaml","ambruticin"],["polyketides/chivosazol.yaml","chivosazol"],["polyketides/chlorotonil-a.yaml","chlorotonil A"],["polyketides/disorazol-a.yaml","disorazol A"],["polyketides/etnangien.yaml","etnangien"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":36,"nb":24,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["bay-envo-00000032.html","bay"],["freshwater-biome-envo-00000873.html","freshwater biome"],["liquid-water-envo-00002006.html","liquid water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":19,"nb":116,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["saline-water-body-envo-01001319.html","saline water body"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["alkaloids/altemicidin.yaml","altemicidin"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"],["alkaloids/aurachin-ss.yaml","aurachin SS"],["alkaloids/berninamycin-j.yaml","berninamycin J"],["alkaloids/berninamycin-k.yaml","berninamycin K"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":18,"nb":27,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["alkaloids/pseudomonine.yaml","pseudomonine"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyreudione-c.yaml","pyreudione C"],["alkaloids/quinolobactin.yaml","quinolobactin"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":14,"nb":31,"a":[["watercourse-envo-00000029.html","watercourse"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["leaf-po-0025034.html","leaf"]],"b":[["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["alkaloids/myxofacycline-e.yaml","myxofacycline E"],["alkaloids/myxofacycline-f.yaml","myxofacycline F"],["alkaloids/myxofacycline-g.yaml","myxofacycline G"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":27,"nb":13,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["watercourse-envo-00000029.html","watercourse"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["egg-food-product-foodon-00001274.html","egg food product"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"]],"b":[["unclassified/bananamide-d.yaml","bananamide D"],["unclassified/bananamide-e.yaml","bananamide E"],["unclassified/bananamide-f.yaml","bananamide F"],["unclassified/bananamide-g.yaml","bananamide G"],["unclassified/lokisin.yaml","lokisin"],["unclassified/pseudodesmin-a.yaml","pseudodesmin A"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":28,"nb":12,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["liquid-water-envo-00002006.html","liquid water"],["watercourse-envo-00000029.html","watercourse"],["compost-envo-00002170.html","compost"],["hospital-envo-00002173.html","hospital"],["human-construction-envo-00000070.html","human construction"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:286","l":"Pseudomonas","na":10,"nb":41,"a":[["heart-bto-0000562.html","heart"],["juvenile-bto-0002168.html","juvenile"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"],["pseudostem-bto-0005992.html","pseudostem"]],"b":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["alkaloids/tioguanine.yaml","tioguanine"],["amino_acids_and_peptides/napsamycin-c.yaml","napsamycin C"],["amino_acids_and_peptides/napsamycin-d.yaml","napsamycin D"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":10,"nb":16,"a":[["anther-bto-0000079.html","anther"],["epithelial-cell-bto-0000414.html","epithelial cell"],["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["amino_acids_and_peptides/ericin-s.yaml","ericin S"],["amino_acids_and_peptides/iturin.yaml","iturin"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"]]},{"id":"NCBITaxon:1386","l":"Bacillus","na":19,"nb":9,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["crop-bto-0000301.html","crop"],["dorsum-bto-0001713.html","dorsum"],["hand-bto-0004668.html","hand"],["head-bto-0000282.html","head"],["juvenile-bto-0002168.html","juvenile"]],"b":[["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bogorol-a.yaml","bogorol A"],["amino_acids_and_peptides/koranimine.yaml","koranimine"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"],["amino_acids_and_peptides/rhizocticin-a.yaml","rhizocticin A"],["polyketides/difficidin.yaml","difficidin"]]},{"id":"NCBITaxon:1464","l":"Paenibacillus larvae","na":10,"nb":8,"a":[["surface-water-envo-00002042.html","surface water"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["carcass-envo-00002033.html","carcass"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"],["sludge-envo-00002044.html","sludge"]],"b":[["alkaloids/paenilamicin-a2.yaml","paenilamicin A2"],["alkaloids/paenilamicin-b1.yaml","paenilamicin B1"],["alkaloids/paenilamicin-b2.yaml","paenilamicin B2"],["alkaloids/paenilamicin.yaml","paenilamicin"],["amino_acids_and_peptides/paenilarvin-a.yaml","paenilarvin A"],["amino_acids_and_peptides/paenilarvin-b.yaml","paenilarvin B"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":8,"nb":10,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["alkaloids/labradorin-1.yaml","labradorin 1"],["alkaloids/labradorin-2.yaml","labradorin 2"],["alkaloids/secimide.yaml","secimide"],["amino_acids_and_peptides/phaseolotoxin.yaml","phaseolotoxin"],["amino_acids_and_peptides/syringolin-a.yaml","syringolin A"],["amino_acids_and_peptides/tabtoxin.yaml","tabtoxin"]]},{"id":"NCBITaxon:1876","l":"Micromonospora sp.","na":7,"nb":9,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["marine-water-body-envo-00001999.html","marine water body"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["sludge-envo-00002044.html","sludge"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["polyketides/quinolidomicin-a.yaml","quinolidomicin A"],["polyketides/sungeidine-c.yaml","sungeidine C"],["polyketides/sungeidine-f.yaml","sungeidine F"],["polyketides/sungeidine-g.yaml","sungeidine G"],["shikimates_and_phenylpropanoids/sungeidine-d.yaml","sungeidine D"],["unclassified/sungeidine-a.yaml","sungeidine A"]]},{"id":"NCBITaxon:67263","l":"Streptomyces griseus subsp. griseus","na":6,"nb":7,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["laboratory-facility-envo-01001406.html","laboratory facility"],["clay-envo-00002982.html","clay"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["alkaloids/indolmycin.yaml","indolmycin"],["polyketides/chromomycin-a3.yaml","chromomycin A3"],["polyketides/dinactin.yaml","dinactin"],["polyketides/monactin.yaml","monactin"],["polyketides/nonactin.yaml","nonactin"],["polyketides/tetranactin.yaml","tetranactin"]]},{"id":"NCBITaxon:1269","l":"Micrococcus","na":6,"nb":6,"a":[["cecum-bto-0000166.html","cecum"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["saliva-bto-0001202.html","saliva"],["tongue-bto-0001385.html","tongue"]],"b":[["alkaloids/limazepine-a.yaml","limazepine A"],["alkaloids/limazepine-c.yaml","limazepine C"],["alkaloids/limazepine-d.yaml","limazepine D"],["alkaloids/limazepine-e.yaml","limazepine E"],["alkaloids/limazepine-f.yaml","limazepine F"],["terpenoids/mk-8.yaml","MK-8"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":40,"nb":5,"a":[["liquid-water-envo-00002006.html","liquid water"],["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["laboratory-facility-envo-01001406.html","laboratory facility"],["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["biofilm-bto-0002690.html","biofilm"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"],["unclassified/leuvalin.yaml","leuvalin"],["unclassified/phevalin.yaml","phevalin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":11,"nb":5,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["resting-cell-bto-0001170.html","resting cell"],["seedling-bto-0001228.html","seedling"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["alkaloids/promysalin.yaml","promysalin"],["polyketides/pseudopyronine-a.yaml","pseudopyronine A"],["polyketides/pseudopyronine-b.yaml","pseudopyronine B"],["unclassified/putisolvin-iii.yaml","putisolvin III"],["unclassified/putisolvin-v.yaml","putisolvin V"]]},{"id":"NCBITaxon:10090","l":"Mus musculus","na":8,"nb":5,"a":[["river-envo-00000022.html","river"],["animal-manure-envo-00003031.html","animal manure"],["biotope-envo-00002036.html","biotope"],["intestine-environment-envo-2100002.html","intestine environment"],["urban-biome-envo-01000249.html","urban biome"],["sediment-envo-00002007.html","sediment"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"],["terpenoids/carotene.yaml","β-carotene"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":5,"nb":5,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["pseudostem-bto-0005992.html","pseudostem"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/andrimid.yaml","andrimid"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/pantocin-a.yaml","pantocin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":5,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"],["midgut-bto-0000863.html","midgut"],["paddy-field-envo-00000297.html","paddy field"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["alkaloids/prodigiosin-2.yaml","prodigiosin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/serratiochelin-a.yaml","serratiochelin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["polyketides/oocydin-a.yaml","oocydin A"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":27,"nb":4,"a":[["small-river-biome-envo-00000890.html","small river biome"],["factory-envo-01000536.html","factory"],["organic-waste-material-envo-00002873.html","organic waste material"],["leaf-po-0025034.html","leaf"],["milk-uberon-0001913.html","milk"],["rhizosphere-envo-00005801.html","rhizosphere"]],"b":[["alkaloids/zwittermicin-a.yaml","zwittermicin A"],["amino_acids_and_peptides/livipeptin.yaml","Livipeptin"],["carbohydrates/tunicamycin.yaml","tunicamycin"],["unclassified/cereulide.yaml","cereulide"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":4,"nb":23,"a":[["bioreactor-envo-00002123.html","bioreactor"],["human-construction-envo-00000070.html","human construction"],["sediment-envo-00002007.html","sediment"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/melanin.yaml","melanin"],["alkaloids/undecylprodigiosin.yaml","undecylprodigiosin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/sapb.yaml","SapB"]]},{"id":"NCBITaxon:378806","l":"Allostigmatella aurantiaca DW4/3-1","na":4,"nb":17,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["orchard-envo-00000115.html","orchard"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["polyketides/aurafuron-a.yaml","aurafuron A"],["polyketides/dawenol.yaml","dawenol"],["unclassified/dkxanthene-504.yaml","dkxanthene 504"],["unclassified/dkxanthene-508.yaml","dkxanthene 508"],["unclassified/dkxanthene-518.yaml","dkxanthene 518"],["unclassified/dkxanthene-520.yaml","dkxanthene 520"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":13,"nb":4,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["neutrophil-bto-0000130.html","neutrophil"],["rectum-bto-0001158.html","rectum"],["spleen-bto-0001281.html","spleen"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["alkaloids/tilivalline.yaml","tilivalline"],["amino_acids_and_peptides/colibactin.yaml","colibactin"],["amino_acids_and_peptides/klebsidin.yaml","klebsidin"],["carbohydrates/capsular-polysaccharide-2.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:1397","l":"Niallia circulans","na":12,"nb":4,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["organic-waste-material-envo-00002873.html","organic waste material"],["rhizosphere-envo-00005801.html","rhizosphere"],["cultivated-environment-envo-01000311.html","cultivated environment"],["sludge-envo-00002044.html","sludge"]],"b":[["carbohydrates/butirosin-a.yaml","butirosin A"],["carbohydrates/butirosin-b.yaml","butirosin B"],["carbohydrates/butirosin.yaml","butirosin"],["unclassified/pelgipeptin-b.yaml","Pelgipeptin B"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":10,"nb":4,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["air-conditioning-unit-envo-00002874.html","air conditioning unit"],["leaf-bto-0000713.html","leaf"],["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["unclassified/vacidobactin-a.yaml","vacidobactin A"],["unclassified/vacidobactin-b.yaml","vacidobactin B"],["unclassified/variobactin-a.yaml","variobactin A"],["unclassified/variobactin-b.yaml","variobactin B"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae RIB40","na":4,"nb":10,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["mountain-pass-envo-00000084.html","mountain pass"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["fatty_acids/oryzine-a.yaml","oryzine A"],["polyketides/kojic-acid.yaml","kojic acid"],["polyketides/oryzine-b.yaml","oryzine B"],["polyketides/ywa1.yaml","YWA1"],["shikimates_and_phenylpropanoids/2-4-dihydroxy-3-methoxypropiophenone.yaml","2,4'-dihydroxy-3'-methoxypropiophenone"],["shikimates_and_phenylpropanoids/8-methyldiaporthin.yaml","8-methyldiaporthin"]]},{"id":"NCBITaxon:10116","l":"Rattus norvegicus","na":9,"nb":4,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["biotope-envo-00002036.html","biotope"],["farm-envo-00000078.html","farm"],["intestine-environment-envo-2100002.html","intestine environment"],["organic-material-envo-01000155.html","organic material"]],"b":[["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/methylarcyriarubin.yaml","methylarcyriarubin"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]]},{"id":"NCBITaxon:83451","l":"Archangium violaceum","na":7,"nb":4,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["wood-bto-0005516.html","wood"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["plant-litter-envo-01000628.html","plant litter"],["sand-envo-01000017.html","sand"]],"b":[["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["alkaloids/myxochelin-n.yaml","myxochelin N"],["alkaloids/myxochelin-o.yaml","myxochelin O"]]},{"id":"NCBITaxon:1930","l":"Streptomyces scabiei","na":4,"nb":6,"a":[["a10-cell-bto-0002196.html","A10 cell"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"],["amino_acids_and_peptides/thaxtomin-c.yaml","thaxtomin C"],["polyketides/oronofacic-acid.yaml","oronofacic acid"],["unclassified/n-coronafacoyl-l-isoleucine.yaml","N-coronafacoyl-L-isoleucine"],["unclassified/thaxtomin-a.yaml","thaxtomin A"],["unclassified/thaxtomin-b.yaml","thaxtomin B"]]},{"id":"NCBITaxon:1393","l":"Brevibacillus brevis","na":5,"nb":4,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["alkaloids/ulbactin-f.yaml","ulbactin F"],["alkaloids/ulbactin-g.yaml","ulbactin G"],["amino_acids_and_peptides/gramicidin.yaml","gramicidin"],["amino_acids_and_peptides/tyrocidine-a.yaml","tyrocidine A"]]},{"id":"NCBITaxon:479432","l":"Streptosporangium roseum DSM 43021","na":4,"nb":5,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"],["vegetable-garden-soil-envo-00005779.html","vegetable garden soil"]],"b":[["polyketides/benaphthamycin.yaml","benaphthamycin"],["polyketides/ws-79089a.yaml","WS 79089A"],["polyketides/ws-79089b.yaml","WS 79089B"],["polyketides/ws-79089c.yaml","WS 79089C"],["polyketides/ws-79089d.yaml","WS 79089D"]]},{"id":"NCBITaxon:39947","l":"Oryza sativa subsp. japonica","na":4,"nb":4,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["large-river-biome-envo-00000887.html","large river biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"],["river-bed-envo-00000384.html","river bed"]],"b":[["terpenoids/10-oxodepressin.yaml","10-Oxodepressin"],["terpenoids/momilactone-b.yaml","momilactone B"],["terpenoids/oryzalides.yaml","oryzalides"],["terpenoids/phytocassane.yaml","phytocassane"]]},{"id":"NCBITaxon:184914","l":"Corallococcus coralloides","na":35,"nb":3,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["watercourse-envo-00000029.html","watercourse"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["amino_acids_and_peptides/myxovalargin-a.yaml","myxovalargin A"],["polyketides/corallopyronin.yaml","corallopyronin"],["polyketides/phenalamide.yaml","phenalamide"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":25,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-water-body-envo-00001999.html","marine water body"],["sea-water-envo-00002149.html","sea water"],["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["amino_acids_and_peptides/epidermin.yaml","epidermin"],["amino_acids_and_peptides/epilancin-15x.yaml","epilancin 15x"],["amino_acids_and_peptides/pep5.yaml","pep5"]]},{"id":"NCBITaxon:54","l":"Nannocystis exedens","na":22,"nb":3,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["watercourse-envo-00000029.html","watercourse"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["polyketides/phenylnannolone-a.yaml","phenylnannolone A"],["polyketides/phenylnannolone-b.yaml","phenylnannolone B"],["polyketides/phenylnannolone-c.yaml","phenylnannolone C"]]},{"id":"NCBITaxon:33","l":"Myxococcus fulvus","na":21,"nb":3,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"]],"b":[["unclassified/fulvuthiacene-a.yaml","Fulvuthiacene A"],["unclassified/fulvuthiacene-b.yaml","Fulvuthiacene B"],["unclassified/myxothiazol.yaml","myxothiazol"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":17,"nb":3,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["fruit-bto-0000486.html","fruit"],["leaf-po-0025034.html","leaf"],["rhizosphere-envo-00005801.html","rhizosphere"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["amino_acids_and_peptides/polymyxin-b.yaml","polymyxin B"],["amino_acids_and_peptides/polymyxin.yaml","polymyxin"],["unclassified/fusaricidin-b.yaml","fusaricidin B"]]},{"id":"NCBITaxon:1654","l":"Actinomyces","na":3,"nb":13,"a":[["hand-bto-0004668.html","hand"],["vaginal-fluid-bto-0003084.html","vaginal fluid"],["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["alkaloids/lynamicin-a.yaml","lynamicin A"],["alkaloids/lynamicin-d.yaml","lynamicin D"],["amino_acids_and_peptides/cephamycin-c.yaml","cephamycin C"],["amino_acids_and_peptides/glycinocin-a.yaml","glycinocin A"],["carbohydrates/cetoniacytone-a.yaml","cetoniacytone A"],["polyketides/4-hexadecanoyl-3-hydroxy-2-hydroxymethyl-2h-furan-5-one.yaml","4-hexadecanoyl-3-hydroxy-2-(hydroxymethyl)-2H-furan-5-one"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":3,"nb":13,"a":[["city-envo-00000856.html","city"],["cold-environment-envo-01000309.html","cold environment"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/congocidine.yaml","congocidine"],["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK 1622","na":3,"nb":12,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"],["amino_acids_and_peptides/myxochromide-a.yaml","myxochromide A"],["amino_acids_and_peptides/myxoprincomide-c506.yaml","myxoprincomide-c506"]]},{"id":"NCBITaxon:28095","l":"Burkholderia gladioli","na":3,"nb":12,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["alkaloids/gladiofungin-a.yaml","gladiofungin A"],["alkaloids/gladiofungin-b.yaml","gladiofungin B"],["alkaloids/toxoflavin.yaml","toxoflavin"],["amino_acids_and_peptides/arsinothricin.yaml","arsinothricin"],["amino_acids_and_peptides/bolagladin-a.yaml","bolagladin A"],["fatty_acids/bongkrekic-acid-2.yaml","bongkrekic acid"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":11,"nb":3,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["fermentation-starter-envo-03600040.html","fermentation starter"],["fruit-bto-0000486.html","fruit"],["mammary-epithelial-cell-bto-0004300.html","mammary epithelial cell"],["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"],["amino_acids_and_peptides/lacticin-z.yaml","lacticin Z"],["amino_acids_and_peptides/nisin-a.yaml","nisin A"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":3,"nb":10,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["amino_acids_and_peptides/lipopeptide-8d1-1.yaml","lipopeptide 8D1-1"],["amino_acids_and_peptides/lipopeptide-8d1-2.yaml","lipopeptide 8D1-2"],["carbohydrates/amicetin.yaml","amicetin"],["carbohydrates/streptothricin-c.yaml","streptothricin C"],["carbohydrates/streptothricin-d.yaml","streptothricin D"],["carbohydrates/streptothricin-e.yaml","streptothricin E"]]},{"id":"NCBITaxon:38","l":"Archangium disciforme","na":7,"nb":3,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["feces-uberon-0001988.html","feces"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["wood-bto-0005516.html","wood"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["alkaloids/myxochelin-a.yaml","myxochelin A"],["amino_acids_and_peptides/tubulysin-a.yaml","tubulysin A"],["amino_acids_and_peptides/tubulysin-h.yaml","tubulysin H"]]},{"id":"NCBITaxon:83460","l":"Allostigmatella erecta","na":7,"nb":3,"a":[["feces-uberon-0001988.html","feces"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["plant-litter-envo-01000628.html","plant litter"],["sand-envo-01000017.html","sand"]],"b":[["alkaloids/aurachin-a.yaml","aurachin A"],["alkaloids/aurachin-c.yaml","aurachin C"],["unclassified/myxochromide-d.yaml","myxochromide D"]]},{"id":"NCBITaxon:32008","l":"Burkholderia","na":3,"nb":6,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["midgut-bto-0000863.html","midgut"]],"b":[["polyketides/necroxime-a.yaml","necroxime A"],["polyketides/necroxime-c.yaml","necroxime C"],["polyketides/necroxime-d.yaml","necroxime D"],["polyketides/thailanstatin-a.yaml","thailanstatin A"],["unclassified/necroxime-b.yaml","necroxime B"],["unclassified/spliceostatin.yaml","spliceostatin"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":5,"nb":3,"a":[["liquid-water-envo-00002006.html","liquid water"],["food-spoiled-foodon-00003366.html","food (spoiled)"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"]],"b":[["alkaloids/cepaciachelin.yaml","cepaciachelin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["terpenoids/hopene.yaml","hopene"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":4,"nb":3,"a":[["stream-envo-00000023.html","stream"],["biome-envo-00000428.html","biome"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["unclassified/leuvalin.yaml","leuvalin"],["unclassified/mutanocyclin.yaml","mutanocyclin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:1120925","l":"Acinetobacter bouvetii DSM 14964 = CIP 107468","na":3,"nb":3,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["alkaloids/butanochelin.yaml","butanochelin"],["alkaloids/pentanochelin.yaml","pentanochelin"],["alkaloids/propanochelin.yaml","propanochelin"]]},{"id":"NCBITaxon:1833","l":"Rhodococcus erythropolis","na":3,"nb":3,"a":[["watercourse-envo-00000029.html","watercourse"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"],["water-scum-envo-00005794.html","water scum"]],"b":[["alkaloids/aurachin-re.yaml","aurachin RE"],["amino_acids_and_peptides/heterobactin-a.yaml","heterobactin A"],["amino_acids_and_peptides/heterobactin-s2.yaml","heterobactin S2"]]},{"id":"NCBITaxon:1961","l":"Streptomyces virginiae","na":3,"nb":3,"a":[["clay-envo-00002982.html","clay"],["plain-envo-00000086.html","plain"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["alkaloids/endophenazine-a.yaml","endophenazine A"],["polyketides/monensin.yaml","monensin"],["unclassified/virginiamycin-s1.yaml","virginiamycin S1"]]},{"id":"NCBITaxon:1883","l":"Streptomyces","na":2,"nb":438,"a":[["crop-bto-0000301.html","crop"],["lab-synthesis-habitatmech-bacdive-0e92e77cd4.html","Lab-synthesis"]],"b":[["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/7-prenylisatin.yaml","7-prenylisatin"],["alkaloids/9-methylstreptimidone.yaml","9-methylstreptimidone"],["alkaloids/anisomycin.yaml","(−)-anisomycin"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"]]},{"id":"NCBITaxon:1886","l":"Streptomyces albidoflavus","na":2,"nb":54,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/anthramycin.yaml","anthramycin"],["alkaloids/diazaquinomycin-f.yaml","diazaquinomycin F"],["alkaloids/diazaquinomycin-g.yaml","diazaquinomycin G"],["alkaloids/holomycin.yaml","holomycin"],["alkaloids/melanin.yaml","melanin"]]},{"id":"NCBITaxon:1911","l":"Streptomyces griseus","na":2,"nb":32,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["alkaloids/cycloheximide.yaml","cycloheximide"],["alkaloids/grixazone-a.yaml","grixazone A"],["alkaloids/iminimycin-a.yaml","iminimycin A"],["alkaloids/iminimycin-b.yaml","iminimycin B"],["alkaloids/indolmycin.yaml","indolmycin"],["alkaloids/melanin.yaml","melanin"]]},{"id":"NCBITaxon:369723","l":"Salinispora tropica CNB-440","na":2,"nb":23,"a":[["coarse-beach-sand-envo-00002148.html","coarse beach sand"],["sand-envo-01000017.html","sand"]],"b":[["alkaloids/lymphostin.yaml","lymphostin"],["alkaloids/lymphostinol.yaml","lymphostinol"],["alkaloids/neolymphostin-b-2.yaml","neolymphostin B"],["alkaloids/neolymphostinol-b.yaml","neolymphostinol B"],["amino_acids_and_peptides/salinosporamide-a.yaml","salinosporamide A"],["fatty_acids/salinipostin-a.yaml","Salinipostin A"]]},{"id":"NCBITaxon:83456","l":"Myxococcus virescens","na":15,"nb":2,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["feces-uberon-0001988.html","feces"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"]],"b":[["alkaloids/bengamide.yaml","bengamide"],["unclassified/myxochromide-c.yaml","myxochromide C"]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":2,"nb":14,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/framycetin.yaml","framycetin"],["carbohydrates/neomycin-c.yaml","neomycin C"],["carbohydrates/paromomycin.yaml","paromomycin"]]},{"id":"NCBITaxon:2013","l":"Nocardiopsis","na":2,"nb":14,"a":[["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"],["alkaloids/k-252a.yaml","K-252a"],["alkaloids/methylpendolmycin.yaml","methylpendolmycin"],["alkaloids/pendolmycin.yaml","pendolmycin"],["amino_acids_and_peptides/tp-1161.yaml","TP-1161"],["polyketides/apoptolidin.yaml","apoptolidin"]]},{"id":"NCBITaxon:102234","l":"Cyanobacterium","na":12,"nb":2,"a":[["cecum-bto-0000166.html","cecum"],["colon-bto-0000269.html","colon"],["gut-bto-0000545.html","gut"],["head-bto-0000282.html","head"],["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"]],"b":[["amino_acids_and_peptides/aeruginosin-98-c.yaml","aeruginosin 98-C"],["unclassified/nostopeptolide-a2.yaml","nostopeptolide A2"]]},{"id":"NCBITaxon:271848","l":"Burkholderia thailandensis E264","na":2,"nb":12,"a":[["needle-bto-0000917.html","needle"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["alkaloids/malleobactin-b.yaml","malleobactin B"],["alkaloids/malleobactin-d.yaml","malleobactin D"],["polyketides/malleicyprol.yaml","malleicyprol"],["polyketides/malleilactone.yaml","malleilactone"],["polyketides/thailandamide-lactone.yaml","thailandamide lactone"],["polyketides/thailandamide.yaml","thailandamide"]]},{"id":"NCBITaxon:457427","l":"Streptomyces himastatinicus ATCC 53653","na":9,"nb":2,"a":[["bay-envo-00000032.html","bay"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["saline-water-envo-00002010.html","saline water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["food-product-foodon-00001002.html","food product"]],"b":[["alkaloids/9-methylstreptimidone.yaml","9-methylstreptimidone"],["amino_acids_and_peptides/himastatin.yaml","himastatin"]]},{"id":"NCBITaxon:500485","l":"Penicillium rubens Wisconsin 54-1255","na":2,"nb":9,"a":[["finger-bto-0004669.html","finger"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["alkaloids/dehydrohistidyltryptophanyldiketopiperazine.yaml","dehydrohistidyltryptophanyldiketopiperazine"],["alkaloids/glandicoline-a.yaml","glandicoline A"],["alkaloids/glandicoline-b.yaml","glandicoline B"],["alkaloids/meleagrine.yaml","meleagrine"],["polyketides/sorbicillin.yaml","sorbicillin"],["terpenoids/conidiogenone.yaml","conidiogenone"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":8,"nb":2,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["lab-synthesis-habitatmech-bacdive-0e92e77cd4.html","Lab-synthesis"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["oil-spill-envo-00002061.html","oil spill"],["temperate-envo-01000206.html","temperate"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"],["carbohydrates/oxetanocin-a.yaml","oxetanocin A"]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":8,"nb":2,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["terpenoids/xanthan.yaml","xanthan"]]},{"id":"NCBITaxon:345341","l":"Kutzneria sp. 744","na":2,"nb":8,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"],["clay-envo-00002982.html","clay"]],"b":[["amino_acids_and_peptides/kutzneride-6.yaml","Kutzneride 6"],["unclassified/kutzneride-1.yaml","Kutzneride 1"],["unclassified/kutzneride-2.yaml","Kutzneride 2"],["unclassified/kutzneride-3.yaml","Kutzneride 3"],["unclassified/kutzneride-4.yaml","Kutzneride 4"],["unclassified/kutzneride-5.yaml","Kutzneride 5"]]},{"id":"NCBITaxon:331117","l":"Aspergillus fischeri NRRL 181","na":2,"nb":7,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["terpenoids/compound-5.yaml","compound 5"],["terpenoids/compound-6-2.yaml","compound 6"],["terpenoids/compound-7a.yaml","compound 7a"],["terpenoids/compound-8-2.yaml","compound 8"],["terpenoids/sesterfisheric-acid.yaml","sesterfisheric acid"],["terpenoids/sesterfisherol.yaml","sesterfisherol"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":7,"nb":2,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["liquid-water-envo-00002006.html","liquid water"],["crown-gall-bto-0000303.html","crown gall"],["finger-bto-0004669.html","finger"],["resting-cell-bto-0001170.html","resting cell"],["water-scum-envo-00005794.html","water scum"]],"b":[["alkaloids/agrobactin.yaml","agrobactin"],["amino_acids_and_peptides/aztreonam.yaml","aztreonam"]]},{"id":"NCBITaxon:391037","l":"Salinispora arenicola CNS-205","na":2,"nb":7,"a":[["beach-sand-envo-00002138.html","beach sand"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["alkaloids/lymphostin.yaml","lymphostin"],["alkaloids/lymphostinol.yaml","lymphostinol"],["alkaloids/neolymphostin-b.yaml","neolymphostin b"],["alkaloids/neolymphostinol-b.yaml","neolymphostinol B"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/cyclomarin-d.yaml","cyclomarin D"]]},{"id":"NCBITaxon:63737","l":"Nostoc punctiforme PCC 73102","na":2,"nb":7,"a":[["heterocyst-bto-0000600.html","heterocyst"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["amino_acids_and_peptides/microviridin-n3.yaml","microviridin N3"],["amino_acids_and_peptides/microviridin-n4.yaml","microviridin N4"],["amino_acids_and_peptides/microviridin-n6.yaml","microviridin N6"],["amino_acids_and_peptides/microviridin-n7.yaml","microviridin N7"],["amino_acids_and_peptides/microviridin-n8.yaml","microviridin N8"],["amino_acids_and_peptides/microviridin-n9.yaml","microviridin N9"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":6,"nb":2,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"],["sludge-envo-00002044.html","sludge"],["forested-area-envo-00000111.html","forested area"],["scrubland-area-envo-00000300.html","scrubland area"],["soil-envo-00001998.html","soil"]],"b":[["amino_acids_and_peptides/cupriachelin.yaml","cupriachelin"],["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"]]},{"id":"NCBITaxon:457412","l":"Ruminococcus sp. 5_1_39BFAA","na":2,"nb":6,"a":[["animal-litter-envo-00002191.html","animal litter"],["tropical-envo-01000204.html","tropical"]],"b":[["alkaloids/pzn10.yaml","PZN10"],["alkaloids/pzn11.yaml","PZN11"],["alkaloids/pzn5.yaml","PZN5"],["alkaloids/pzn6.yaml","PZN6"],["alkaloids/pzn7.yaml","PZN7"],["alkaloids/pzn9.yaml","PZN9"]]},{"id":"NCBITaxon:4577","l":"Zea mays","na":2,"nb":6,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["alkaloids/dimboa.yaml","DIMBOA"],["polyketides/emodin.yaml","emodin"],["terpenoids/zealexin-a1.yaml","zealexin A1"],["terpenoids/zealexin-b3.yaml","zealexin B3"],["terpenoids/zealexin-c2.yaml","zealexin C2"],["unclassified/aflatoxin.yaml","aflatoxin"]]},{"id":"NCBITaxon:1465","l":"Brevibacillus laterosporus","na":2,"nb":5,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["amino_acids_and_peptides/bogorol-a.yaml","bogorol A"],["amino_acids_and_peptides/tauramamide.yaml","tauramamide"],["shikimates_and_phenylpropanoids/basiliskamide-a.yaml","Basiliskamide A"],["unclassified/basiliskamide-b.yaml","Basiliskamide B"],["unclassified/laterocidine.yaml","laterocidine"]]},{"id":"NCBITaxon:497689","l":"Streptomyces sp. SNA15896","na":2,"nb":5,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["unclassified/sw-163c.yaml","SW-163C"],["unclassified/sw-163e.yaml","SW-163E"],["unclassified/sw-163f.yaml","SW-163F"],["unclassified/sw-163g.yaml","SW-163G"],["unclassified/uk-63598.yaml","UK 63598"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":5,"nb":2,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["pseudostem-bto-0005992.html","pseudostem"],["seedling-bto-0001228.html","seedling"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["soil-envo-00001998.html","soil"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["terpenoids/mk-8.yaml","MK-8"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":5,"nb":2,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"],["feces-uberon-0001988.html","feces"],["rectum-bto-0001158.html","rectum"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["alkaloids/vibriobactin-2.yaml","vibriobactin"],["alkaloids/vibriobactin.yaml","vibriobactin"]]},{"id":"NCBITaxon:1224742","l":"Vibrio campbellii CAIM 519 = NBRC 15631 = ATCC 25920","na":2,"nb":4,"a":[["kidney-bto-0000671.html","kidney"],["renal-cortex-bto-0001166.html","renal cortex"]],"b":[["polyketides/amphi-enterobactin-1.yaml","Amphi-enterobactin 1"],["polyketides/amphi-enterobactin-2.yaml","amphi-enterobactin 2"],["polyketides/amphi-enterobactin-3.yaml","amphi-enterobactin 3"],["polyketides/amphi-enterobactin-4.yaml","amphi-enterobactin 4"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":4,"nb":2,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["carcass-envo-00002033.html","carcass"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["sludge-envo-00002044.html","sludge"]],"b":[["alkaloids/biotin.yaml","biotin"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":4,"nb":2,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["unclassified/andalusicin-a.yaml","andalusicin A"]]},{"id":"NCBITaxon:305","l":"Ralstonia solanacearum","na":4,"nb":2,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"],["pseudostem-bto-0005992.html","pseudostem"],["xylem-bto-0001468.html","xylem"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"],["unclassified/micacocidin.yaml","micacocidin"]]},{"id":"NCBITaxon:398578","l":"Delftia acidovorans SPH-1","na":4,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["large-river-biome-envo-00000887.html","large river biome"],["sewage-envo-00002018.html","sewage"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["amino_acids_and_peptides/delftibactin-a.yaml","delftibactin A"],["amino_acids_and_peptides/delftibactin-b.yaml","delftibactin B"]]},{"id":"NCBITaxon:426418","l":"Pyrenophora tritici-repentis Pt-1C-BFP","na":2,"nb":4,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["unclassified/triticone-a.yaml","triticone A"],["unclassified/triticone-b.yaml","triticone B"],["unclassified/triticone-c.yaml","triticone C"],["unclassified/triticone-f.yaml","triticone F"]]},{"id":"NCBITaxon:479433","l":"Catenulispora acidiphila DSM 44928","na":4,"nb":2,"a":[["filament-bto-0000463.html","filament"],["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["amino_acids_and_peptides/catenulipeptin.yaml","catenulipeptin"],["shikimates_and_phenylpropanoids/cacibiocin-b.yaml","cacibiocin B"]]},{"id":"NCBITaxon:6239","l":"Caenorhabditis elegans","na":2,"nb":4,"a":[["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["alkaloids/biotin.yaml","biotin"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/itaconic-acid.yaml","itaconic acid"],["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"]]},{"id":"NCBITaxon:703612","l":"Bacillus spizizenii ATCC 6633 = JCM 2499","na":2,"nb":4,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["amino_acids_and_peptides/mycosubtilin.yaml","mycosubtilin"],["amino_acids_and_peptides/rhizocticin-a.yaml","rhizocticin A"],["amino_acids_and_peptides/subtilin.yaml","subtilin"],["amino_acids_and_peptides/subtilosin-a.yaml","subtilosin A"]]},{"id":"NCBITaxon:1129","l":"Synechococcus","na":2,"nb":3,"a":[["column-bto-0005692.html","column"],["hemolymph-bto-0000572.html","hemolymph"]],"b":[["alkaloids/synechobactin-a.yaml","synechobactin A"],["alkaloids/synechobactin-b.yaml","synechobactin B"],["alkaloids/synechobactin-c.yaml","synechobactin C"]]},{"id":"NCBITaxon:1218948","l":"Pseudomonas fluorescens PF5","na":3,"nb":2,"a":[["large-river-biome-envo-00000887.html","large river biome"],["human-construction-envo-00000070.html","human construction"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["alkaloids/pyoluteorin.yaml","pyoluteorin"],["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":2,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:1932","l":"Streptomyces tendae","na":2,"nb":3,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"],["polyketides/lysolipin-i.yaml","lysolipin I"],["terpenoids/geosmin.yaml","(−)-geosmin"]]},{"id":"NCBITaxon:1938","l":"Streptomyces viridochromogenes","na":2,"nb":3,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["amino_acids_and_peptides/glycinocin-a.yaml","glycinocin A"],["carbohydrates/avilamycin-a.yaml","avilamycin A"],["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"]]},{"id":"NCBITaxon:2021","l":"Thermobifida fusca","na":2,"nb":3,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["amino_acids_and_peptides/fuscachelin-a.yaml","Fuscachelin A"],["amino_acids_and_peptides/fuscachelin-b.yaml","Fuscachelin B"],["amino_acids_and_peptides/fuscachelin-c.yaml","Fuscachelin C"]]},{"id":"NCBITaxon:269800","l":"Thermobifida fusca YX","na":2,"nb":3,"a":[["compost-envo-00002170.html","compost"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["amino_acids_and_peptides/fuscachelin-a.yaml","Fuscachelin A"],["amino_acids_and_peptides/fuscachelin-b.yaml","Fuscachelin B"],["amino_acids_and_peptides/fuscachelin-c.yaml","Fuscachelin C"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":3,"nb":2,"a":[["bile-bto-0000121.html","bile"],["rectum-bto-0001158.html","rectum"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["alkaloids/acinetobactin.yaml","acinetobactin"],["amino_acids_and_peptides/fimsbactin-a.yaml","fimsbactin A"]]},{"id":"NCBITaxon:556","l":"Dickeya chrysanthemi","na":2,"nb":3,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["amino_acids_and_peptides/chrysobactin.yaml","chrysobactin"],["amino_acids_and_peptides/dichrysobactin.yaml","dichrysobactin"],["unclassified/cyclic-trichrysobactin.yaml","cyclic trichrysobactin"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":3,"nb":2,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["amino_acids_and_peptides/vibrioferrin-2.yaml","vibrioferrin"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:1121302","l":"Clostridium cavendishii DSM 21758","na":2,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["groundwater-envo-01001004.html","groundwater"]],"b":[["alkaloids/closoxazole-a.yaml","closoxazole A"],["alkaloids/closoxazole-b.yaml","closoxazole B"]]},{"id":"NCBITaxon:176299","l":"Agrobacterium fabrum str. C58","na":2,"nb":2,"a":[["human-construction-envo-00000070.html","human construction"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["amino_acids_and_peptides/fabrubactin-a.yaml","fabrubactin A"],["amino_acids_and_peptides/fabrubactin-b.yaml","fabrubactin B"]]},{"id":"NCBITaxon:316274","l":"Herpetosiphon aurantiacus DSM 785","na":2,"nb":2,"a":[["filament-bto-0000463.html","filament"],["joint-bto-0001686.html","joint"]],"b":[["alkaloids/auriculamide.yaml","auriculamide"],["terpenoids/o-methylkolavelool.yaml","(+)-O-methylkolavelool"]]},{"id":"NCBITaxon:394096","l":"Hyalangium minutum","na":2,"nb":2,"a":[["wood-bto-0005516.html","wood"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["polyketides/nystatin-a1.yaml","nystatin A1"],["unclassified/myxochromide-d-2.yaml","myxochromide D"]]},{"id":"NCBITaxon:394503","l":"Ruminiclostridium cellulolyticum H10","na":2,"nb":2,"a":[["agricultural-waste-material-envo-01000371.html","agricultural waste material"],["compost-envo-00002170.html","compost"]],"b":[["alkaloids/closthioamide.yaml","closthioamide"],["amino_acids_and_peptides/rc-aip1.yaml","Rc-AIP1"]]},{"id":"NCBITaxon:444103","l":"Streptomyces sp. CNQ-509","na":2,"nb":2,"a":[["colonic-cancer-cell-bto-0000586.html","colonic cancer cell"],["vas-efferens-bto-0002254.html","vas efferens"]],"b":[["alkaloids/marinophenazine-a.yaml","marinophenazine A"],["alkaloids/phenaziterpene-a.yaml","phenaziterpene A"]]},{"id":"NCBITaxon:47879","l":"Pseudomonas corrugata","na":2,"nb":2,"a":[["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["wilt-habitatmech-bacdive-4c48b5114d.html","Wilt"]],"b":[["amino_acids_and_peptides/corpeptin-a.yaml","corpeptin A"],["amino_acids_and_peptides/corpeptin-b.yaml","corpeptin B"]]},{"id":"NCBITaxon:543728","l":"Variovorax paradoxus S110","na":2,"nb":2,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"]],"b":[["unclassified/vacidobactin-a.yaml","vacidobactin A"],["unclassified/vacidobactin-b.yaml","vacidobactin B"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":2,"nb":2,"a":[["feces-uberon-0001988.html","feces"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["alkaloids/yersiniabactin.yaml","yersiniabactin"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":2,"nb":2,"a":[["watercourse-envo-00000029.html","watercourse"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["amino_acids_and_peptides/vibrioferrin-2.yaml","vibrioferrin"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:1177","l":"Nostoc","na":1,"nb":41,"a":[["inflorescence-bto-0000628.html","inflorescence"]],"b":[["alkaloids/nocuolin-a.yaml","Nocuolin A"],["amino_acids_and_peptides/anabaenopeptin-802.yaml","anabaenopeptin 802"],["amino_acids_and_peptides/heinamide-a1.yaml","heinamide A1"],["amino_acids_and_peptides/heinamide-a2.yaml","heinamide A2"],["amino_acids_and_peptides/heinamide-a3.yaml","heinamide A3"],["amino_acids_and_peptides/heinamide-b1.yaml","heinamide B1"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":33,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["pond-water-envo-00002228.html","pond water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["water-body-envo-00000063.html","water body"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:243265","l":"Photorhabdus laumondii subsp. laumondii TTO1","na":1,"nb":21,"a":[["carcass-bto-0001965.html","carcass"]],"b":[["amino_acids_and_peptides/gamexpeptide-c.yaml","gamexpeptide C"],["amino_acids_and_peptides/luminmycin-a.yaml","luminmycin A"],["amino_acids_and_peptides/ririwpeptide-a.yaml","ririwpeptide A"],["amino_acids_and_peptides/ririwpeptide-b.yaml","ririwpeptide B"],["carbohydrates/oligosaccharide-1-glcnac-1-4-1-6-anhydro-glcnac.yaml","oligosaccharide 1 (GlcNAc-β(1-4)-1,6-anhydro-β-GlcNAc)"],["carbohydrates/oligosaccharide-2-glcnac-1-4-glcnac-1-4-1-6-anhydro-glcnac.yaml","oligosaccharide 2 (GlcNAc-β(1-4)-GlcNAc-β(1-4)-1,6-anhydro-β-GlcNAc)"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":1,"nb":20,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/c-3-sulfonylated-derivative.yaml","C-3 sulfonylated derivative"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["alkaloids/n-n-dioxide-containing-derivate.yaml","N,N-dioxide containing derivate"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":19,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["bone-element-uberon-0001474.html","bone element"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["amino_acids_and_peptides/bacitracin.yaml","bacitracin"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":17,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["hospital-envo-00002173.html","hospital"],["egg-food-product-foodon-00001274.html","egg food product"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["amino_acids_and_peptides/enterocin-a.yaml","enterocin A"]]},{"id":"NCBITaxon:455632","l":"Streptomyces griseus subsp. griseus NBRC 13350","na":1,"nb":17,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["alkaloids/grixazone-a.yaml","grixazone A"],["alkaloids/iminimycin-a.yaml","iminimycin A"],["alkaloids/iminimycin-b.yaml","iminimycin B"],["alkaloids/melanin.yaml","melanin"],["carbohydrates/streptomycin.yaml","streptomycin"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":16,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":14,"nb":1,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["compost-envo-00002170.html","compost"],["organic-waste-material-envo-00002873.html","organic waste material"],["larva-bto-0000707.html","larva"],["rhizosphere-envo-00005801.html","rhizosphere"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]]},{"id":"NCBITaxon:29488","l":"Photorhabdus luminescens","na":1,"nb":14,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["alkaloids/photobactin.yaml","photobactin"],["alkaloids/pzn5.yaml","PZN5"],["amino_acids_and_peptides/gamexpeptide-c.yaml","gamexpeptide C"],["amino_acids_and_peptides/glidobactin.yaml","glidobactin"],["amino_acids_and_peptides/luminmycin-a.yaml","luminmycin A"],["polyketides/photopyrone-a.yaml","photopyrone A"]]},{"id":"NCBITaxon:1357","l":"Lactococcus","na":13,"nb":1,"a":[["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["ileum-bto-0000620.html","ileum"],["intestine-bto-0000648.html","intestine"],["mouth-bto-0001090.html","mouth"]],"b":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":1,"nb":13,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["alkaloids/holomycin.yaml","holomycin"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/2-formyloxymethylclavam.yaml","2-formyloxymethylclavam"],["amino_acids_and_peptides/2-hydroxymethylclavam.yaml","2-hydroxymethylclavam"],["amino_acids_and_peptides/alanylclavam.yaml","alanylclavam"],["amino_acids_and_peptides/cephamycin-c.yaml","cephamycin C"]]},{"id":"NCBITaxon:406817","l":"Xenorhabdus nematophila ATCC 19061","na":1,"nb":13,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["alkaloids/nematophin.yaml","nematophin"],["amino_acids_and_peptides/rhabdopeptide-1.yaml","rhabdopeptide 1"],["amino_acids_and_peptides/rhabdopeptide-2.yaml","rhabdopeptide 2"],["amino_acids_and_peptides/rhabdopeptide-3.yaml","rhabdopeptide 3"],["amino_acids_and_peptides/rhabdopeptide-4.yaml","rhabdopeptide 4"],["amino_acids_and_peptides/xenortide-a.yaml","xenortide A"]]},{"id":"NCBITaxon:104268","l":"Tenacibaculum mesophilum","na":12,"nb":1,"a":[["bay-envo-00000032.html","bay"],["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"],["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"]],"b":[["fatty_acids/bisucaberin-b.yaml","bisucaberin B"]]},{"id":"NCBITaxon:321614","l":"","na":1,"nb":12,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["alkaloids/phomacin-d.yaml","phomacin D"],["alkaloids/phomacin-e.yaml","phomacin E"],["polyketides/betaenone-b.yaml","betaenone B"],["polyketides/betaenone-c.yaml","betaenone C"],["polyketides/compound-3-2.yaml","compound 3"],["polyketides/compound-5-2.yaml","compound 5"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":11,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"],["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["laboratory-facility-envo-01001406.html","laboratory facility"],["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["bone-element-uberon-0001474.html","bone element"],["juvenile-bto-0002168.html","juvenile"]],"b":[["amino_acids_and_peptides/cutimycin.yaml","cutimycin"]]},{"id":"NCBITaxon:229533","l":"Fusarium graminearum PH-1","na":1,"nb":11,"a":[["soil-envo-00001998.html","soil"]],"b":[["alkaloids/chrysogine.yaml","chrysogine"],["amino_acids_and_peptides/fusaoctaxin-a.yaml","fusaoctaxin A"],["polyketides/aurofusarin.yaml","aurofusarin"],["polyketides/prolipyrone-b.yaml","prolipyrone B"],["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"],["terpenoids/15-acetyldeoxynivalenol.yaml","15-acetyldeoxynivalenol"]]},{"id":"NCBITaxon:38033","l":"Chaetomium globosum","na":1,"nb":11,"a":[["desert-sand-envo-00005800.html","desert sand"]],"b":[["alkaloids/chaetoglobosin-c.yaml","chaetoglobosin C"],["alkaloids/cytoglobosin-x.yaml","cytoglobosin X"],["polyketides/11-epichaetomugilin-a.yaml","11-epichaetomugilin A"],["polyketides/azanigerone-a.yaml","azanigerone A"],["polyketides/chaetoviridin-e.yaml","chaetoviridin E"],["polyketides/shanorellin.yaml","shanorellin"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":1,"nb":11,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["amino_acids_and_peptides/ferrichrome.yaml","ferrichrome"],["polyketides/1-2-3-5-10-tetrahydroxy-7-methoxy-4-oxo-1-2-3-4-tetrahydroanthracen-2-yl-pentane.yaml","1-(2,3,5,10-tetrahydroxy-7-methoxy-4-oxo-1,2,3,4-tetrahydroanthracen-2-yl)pentane-2,4-dione"],["polyketides/azanigerone-a.yaml","azanigerone A"],["polyketides/campyrone-b.yaml","campyrone B"],["polyketides/desmethyl-tan-1612.yaml","desmethyl TAN-1612"],["polyketides/fumonisin-b2.yaml","fumonisin B2"]]},{"id":"NCBITaxon:111805","l":"Actinomadura pelletieri","na":10,"nb":1,"a":[["lake-envo-00000020.html","lake"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["foot-bto-0000476.html","foot"],["rhizosphere-envo-00005801.html","rhizosphere"],["organic-material-envo-01000155.html","organic material"]],"b":[["alkaloids/undecylprodigiosin-2.yaml","undecylprodigiosin"]]},{"id":"NCBITaxon:1716","l":"Corynebacterium","na":10,"nb":1,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["ileum-bto-0000620.html","ileum"],["juvenile-bto-0002168.html","juvenile"],["mucosa-bto-0000886.html","mucosa"],["nectar-bto-0000537.html","nectar"]],"b":[["alkaloids/corynecin-iii.yaml","corynecin III"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa PAO1","na":1,"nb":10,"a":[["style-bto-0001313.html","style"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:543","l":"Enterobacteriaceae","na":10,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"],["midgut-bto-0000863.html","midgut"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":9,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["fresh-water-envo-00002011.html","fresh water"],["river-envo-00000022.html","river"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["alkaloids/molybdenum-cofactor.yaml","molybdenum cofactor"]]},{"id":"NCBITaxon:1817","l":"Nocardia","na":1,"nb":9,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["alkaloids/rebeccamycin.yaml","rebeccamycin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/nocathiacin-i.yaml","nocathiacin I"],["amino_acids_and_peptides/ristocetin-a.yaml","Ristocetin A"],["amino_acids_and_peptides/vancomycin.yaml","vancomycin"],["polyketides/macbecin-ii.yaml","macbecin II"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":9,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["mud-envo-01000001.html","mud"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":8,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["alimentary-canal-bto-0000058.html","alimentary canal"],["blood-bto-0000089.html","blood"],["small-intestine-bto-0000651.html","small intestine"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["geographic-feature-envo-00000000.html","geographic feature"]],"b":[["amino_acids_and_peptides/salivaricin-d.yaml","salivaricin D"]]},{"id":"NCBITaxon:1836","l":"Saccharopolyspora erythraea","na":1,"nb":8,"a":[["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["amino_acids_and_peptides/erythrochelin.yaml","erythrochelin"],["polyketides/3-3-diflaviolin.yaml","3,3'-diflaviolin"],["polyketides/erythromycin-a.yaml","erythromycin A"],["polyketides/erythromycin-b.yaml","erythromycin B"],["polyketides/flaviolin-rhamnoside.yaml","flaviolin rhamnoside"],["polyketides/flaviolin.yaml","flaviolin"]]},{"id":"NCBITaxon:1908","l":"Streptomyces globisporus","na":1,"nb":8,"a":[["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["polyketides/c-1027-chromophore.yaml","C-1027 chromophore"],["polyketides/c-1027.yaml","C-1027"],["polyketides/landomycin-a.yaml","landomycin A"],["polyketides/nonactin.yaml","nonactin"],["polyketides/prejadomycin.yaml","prejadomycin"],["polyketides/tetranactin.yaml","tetranactin"]]},{"id":"NCBITaxon:326423","l":"Bacillus velezensis FZB42","na":1,"nb":8,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["polyketides/bacillaene.yaml","bacillaene"],["polyketides/difficidin.yaml","difficidin"],["polyketides/macrolactin-h.yaml","macrolactin H"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:420953","l":"Paraburkholderia megapolitana","na":1,"nb":8,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["amino_acids_and_peptides/megapolibactin-a.yaml","megapolibactin A"],["amino_acids_and_peptides/megapolibactin-acyc.yaml","megapolibactin Acyc"],["amino_acids_and_peptides/megapolibactin-b.yaml","megapolibactin B"],["amino_acids_and_peptides/megapolibactin-c.yaml","megapolibactin C"],["amino_acids_and_peptides/megapolibactin-d.yaml","megapolibactin D"],["amino_acids_and_peptides/megapolibactin-e.yaml","megapolibactin E"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":8,"nb":1,"a":[["beach-envo-00000091.html","beach"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["sea-sand-envo-00002118.html","sea sand"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["polyketides/haliamide.yaml","haliamide"]]},{"id":"NCBITaxon:680198","l":"Streptomyces scabiei 87.22","na":1,"nb":8,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["alkaloids/rotihibin-a.yaml","rotihibin A"],["amino_acids_and_peptides/bottromycin-a2.yaml","bottromycin A2"],["amino_acids_and_peptides/edha.yaml","EDHA"],["amino_acids_and_peptides/scabichelin.yaml","scabichelin"],["amino_acids_and_peptides/thaxtomin-c.yaml","thaxtomin C"],["unclassified/n-coronafacoyl-l-isoleucine.yaml","N-coronafacoyl-L-isoleucine"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":7,"nb":1,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["farm-envo-00000078.html","farm"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["unclassified/rhodochelin.yaml","rhodochelin"]]},{"id":"NCBITaxon:1044","l":"Erythrobacter longus","na":7,"nb":1,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["small-river-biome-envo-00000890.html","small river biome"],["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["biofilm-material-envo-01000156.html","biofilm material"]],"b":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]]},{"id":"NCBITaxon:83455","l":"Myxococcus stipitatus","na":7,"nb":1,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["plant-litter-envo-01000628.html","plant litter"],["sand-envo-01000017.html","sand"]],"b":[["polyketides/phenalamide-a2.yaml","phenalamide A2"]]},{"id":"NCBITaxon:1069","l":"Rhodomicrobium vannielii","na":6,"nb":1,"a":[["lake-envo-00000020.html","lake"],["stream-envo-00000023.html","stream"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["rhizosphere-envo-00005801.html","rhizosphere"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["terpenoids/carotene.yaml","β-carotene"]]},{"id":"NCBITaxon:1311","l":"Streptococcus agalactiae","na":6,"nb":1,"a":[["kidney-bto-0000671.html","kidney"],["milk-uberon-0001913.html","milk"],["oropharynx-bto-0005257.html","oropharynx"],["urine-bto-0001419.html","urine"],["urogenital-system-bto-0003091.html","urogenital system"],["vagina-bto-0000243.html","vagina"]],"b":[["carbohydrates/capsular-polysaccharide-3.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:205922","l":"Pseudomonas fluorescens Pf0-1","na":6,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["cold-environment-envo-01000309.html","cold environment"],["microbial-mat-material-envo-01000157.html","microbial mat material"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"],["agricultural-soil-envo-00002259.html","agricultural soil"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["unclassified/gacamide-a.yaml","gacamide A"]]},{"id":"NCBITaxon:278992","l":"Streptomyces ambofaciens ATCC 23877","na":1,"nb":6,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["alkaloids/congocidine.yaml","congocidine"],["polyketides/spiramycin.yaml","spiramycin"],["polyketides/stambomycin-a.yaml","stambomycin A"],["polyketides/stambomycin-b.yaml","stambomycin B"],["polyketides/stambomycin-c.yaml","stambomycin C"],["polyketides/stambomycin-d.yaml","stambomycin D"]]},{"id":"NCBITaxon:37632","l":"Amycolatopsis sp.","na":1,"nb":6,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["amino_acids_and_peptides/ristocetin-a.yaml","Ristocetin A"],["polyketides/rifamorpholine-a.yaml","rifamorpholine A"],["polyketides/rifamorpholine-b.yaml","rifamorpholine B"],["polyketides/rifamorpholine-c.yaml","rifamorpholine C"],["polyketides/rifamorpholine-d.yaml","rifamorpholine D"],["polyketides/rifamorpholine-e.yaml","rifamorpholine E"]]},{"id":"NCBITaxon:446","l":"Legionella pneumophila","na":6,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["hospital-envo-00002173.html","hospital"],["macrophage-bto-0000801.html","macrophage"],["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["fatty_acids/lipopolysaccharide.yaml","lipopolysaccharide"]]},{"id":"NCBITaxon:5530","l":"Metarhizium anisopliae","na":1,"nb":6,"a":[["soil-envo-00001998.html","soil"]],"b":[["alkaloids/ng-391.yaml","NG-391"],["amino_acids_and_peptides/serinocyclin-a.yaml","serinocyclin A"],["amino_acids_and_peptides/serinocyclin-b.yaml","serinocyclin B"],["fatty_acids/baa.yaml","BAA"],["fatty_acids/bab.yaml","BAB"],["unclassified/destruxin-a.yaml","destruxin A"]]},{"id":"NCBITaxon:115828","l":"Streptomyces maritimus","na":5,"nb":1,"a":[["farm-envo-00000078.html","farm"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["plain-envo-00000086.html","plain"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["terpenoids/enterocin.yaml","enterocin"]]},{"id":"NCBITaxon:1275","l":"Kocuria rosea","na":5,"nb":1,"a":[["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["marine-environment-envo-01000320.html","marine environment"],["oil-spill-envo-00002061.html","oil spill"],["painting-habitatmech-bacdive-0bfb662164.html","Painting"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["amino_acids_and_peptides/kocurin.yaml","kocurin"]]},{"id":"NCBITaxon:1292","l":"Staphylococcus warneri","na":5,"nb":1,"a":[["neonate-bto-0001762.html","neonate"],["skin-of-body-uberon-0002097.html","skin of body"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["amino_acids_and_peptides/nukacin-isk-1.yaml","nukacin ISK-1"]]},{"id":"NCBITaxon:168695","l":"Salinispora tropica","na":1,"nb":5,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["alkaloids/lymphostin.yaml","lymphostin"],["amino_acids_and_peptides/salinosporamide-a.yaml","salinosporamide A"],["polyketides/lomaiviticin-a.yaml","lomaiviticin A"],["polyketides/sporolide-b.yaml","sporolide B"],["unclassified/salinilactam.yaml","salinilactam"]]},{"id":"NCBITaxon:168697","l":"Salinispora arenicola","na":1,"nb":5,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["amino_acids_and_peptides/cyclomarin-d.yaml","cyclomarin D"],["polyketides/arenimycin-a.yaml","arenimycin A"],["polyketides/rifamycin-sv.yaml","rifamycin SV"],["unclassified/emericellamide-a.yaml","emericellamide A"],["unclassified/emericellamide-b.yaml","emericellamide B"]]},{"id":"NCBITaxon:29303","l":"Streptantibioticus cattleyicolor","na":1,"nb":5,"a":[["clay-envo-00002982.html","clay"]],"b":[["amino_acids_and_peptides/cattlecin.yaml","cattlecin"],["amino_acids_and_peptides/clavulanic-acid.yaml","clavulanic acid"],["amino_acids_and_peptides/ethynylserine.yaml","β-ethynylserine"],["amino_acids_and_peptides/thienamycin.yaml","thienamycin"],["terpenoids/cattleyene.yaml","cattleyene"]]},{"id":"NCBITaxon:43","l":"Cystobacter fuscus","na":1,"nb":5,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"]],"b":[["amino_acids_and_peptides/cystomanamide-a.yaml","cystomanamide A"],["amino_acids_and_peptides/cystomanamide-b.yaml","cystomanamide B"],["amino_acids_and_peptides/cystomanamide-c.yaml","cystomanamide C"],["amino_acids_and_peptides/cystomanamide-d.yaml","cystomanamide D"],["unclassified/cystothiazole-a.yaml","cystothiazole A"]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":1,"nb":5,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["alkaloids/9-deoxy-tilivalline.yaml","9-deoxy tilivalline"],["alkaloids/dehydro-tilivalline.yaml","dehydro tilivalline"],["alkaloids/dihydroxy-dehydro-tilivalline.yaml","dihydroxy-dehydro tilivalline"],["alkaloids/dihydroxy-tilivalline.yaml","dihydroxy tilivalline"],["alkaloids/tilivalline.yaml","tilivalline"]]},{"id":"NCBITaxon:95486","l":"Burkholderia cenocepacia","na":5,"nb":1,"a":[["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["unclassified/ornibactin-c8.yaml","ornibactin C8"]]},{"id":"NCBITaxon:1038928","l":"Streptomyces xinghaiensis","na":1,"nb":4,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["alkaloids/dixiamycin-a.yaml","dixiamycin A"],["alkaloids/xiamycin-a.yaml","xiamycin A"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"],["polyketides/oligomycin.yaml","oligomycin"]]},{"id":"NCBITaxon:1827","l":"Rhodococcus","na":4,"nb":1,"a":[["nectar-bto-0000537.html","nectar"],["pitcher-bto-0001069.html","pitcher"],["small-intestine-bto-0000651.html","small intestine"],["stem-bto-0001300.html","stem"]],"b":[["alkaloids/corynecin-iii.yaml","corynecin III"]]},{"id":"NCBITaxon:1965334","l":"Cystobacter sp.","na":1,"nb":4,"a":[["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["unclassified/vioprolide-a.yaml","vioprolide A"],["unclassified/vioprolide-b.yaml","vioprolide B"],["unclassified/vioprolide-c.yaml","vioprolide C"],["unclassified/vioprolide-d.yaml","vioprolide D"]]},{"id":"NCBITaxon:1967","l":"Streptomyces kanamyceticus","na":1,"nb":4,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["amino_acids_and_peptides/gausemycin-a.yaml","gausemycin A"],["amino_acids_and_peptides/gausemycin-b.yaml","gausemycin B"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/kanamycin-a.yaml","kanamycin A"]]},{"id":"NCBITaxon:227882","l":"Streptomyces avermitilis MA-4680 = NBRC 14893","na":1,"nb":4,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["amino_acids_and_peptides/edha.yaml","EDHA"],["polyketides/filipin-iii.yaml","filipin III"],["terpenoids/avermitilol.yaml","avermitilol"],["terpenoids/pentalenolactone.yaml","pentalenolactone"]]},{"id":"NCBITaxon:2745","l":"Halomonas","na":1,"nb":4,"a":[["wood-bto-0005516.html","wood"]],"b":[["amino_acids_and_peptides/potashchelin-a.yaml","potashchelin A"],["amino_acids_and_peptides/potashchelin-b.yaml","potashchelin B"],["amino_acids_and_peptides/potashchelin-c.yaml","potashchelin C"],["amino_acids_and_peptides/potashchelin-d.yaml","potashchelin D"]]},{"id":"NCBITaxon:310350","l":"Nocardiopsis sp.","na":1,"nb":4,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["alkaloids/k-252a.yaml","K-252a"],["polyketides/nocardiopsistin-a.yaml","nocardiopsistin A"],["polyketides/nocardiopsistin-b.yaml","nocardiopsistin B"],["polyketides/nocardiopsistin-c.yaml","nocardiopsistin C"]]},{"id":"NCBITaxon:362","l":"Agrobacterium radiobacter","na":4,"nb":1,"a":[["plant-gall-po-0025626.html","plant gall"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["alkaloids/agrobactin.yaml","agrobactin"]]},{"id":"NCBITaxon:68570","l":"","na":1,"nb":4,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["amino_acids_and_peptides/deimino-antipain.yaml","deimino-antipain"],["polyketides/nystatin.yaml","nystatin"],["unclassified/albonoursin.yaml","albonoursin"],["unclassified/citrulassin-a.yaml","citrulassin A"]]},{"id":"NCBITaxon:746360","l":"Pseudomonas fluorescens WH6","na":4,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["human-construction-envo-00000070.html","human construction"],["cold-environment-envo-01000309.html","cold environment"],["peatland-envo-00000044.html","peatland"]],"b":[["amino_acids_and_peptides/4-formylaminooxyvinylglycine.yaml","4-formylaminooxyvinylglycine"]]},{"id":"NCBITaxon:85698","l":"Achromobacter xylosoxidans","na":4,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["amino_acids_and_peptides/alcaligin.yaml","alcaligin"]]},{"id":"NCBITaxon:86667","l":"Jeotgalibacillus marinus","na":1,"nb":4,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"]],"b":[["fatty_acids/macrolactin-1c.yaml","macrolactin 1c"],["fatty_acids/macrolactin-b.yaml","macrolactin B"],["polyketides/macrolactin-e.yaml","macrolactin E"],["polyketides/macrolactin-h.yaml","macrolactin H"]]},{"id":"NCBITaxon:103232","l":"Streptomyces ipomoeae","na":1,"nb":3,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["amino_acids_and_peptides/thaxtomin-c.yaml","thaxtomin C"],["unclassified/thaxtomin-a.yaml","thaxtomin A"],["unclassified/thaxtomin-b.yaml","thaxtomin B"]]},{"id":"NCBITaxon:107635","l":"Methylosinus sp. LW3","na":3,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"]],"b":[["amino_acids_and_peptides/group-1-methanobactin.yaml","group 1 methanobactin"]]},{"id":"NCBITaxon:1570","l":"Halobacillus halophilus","na":3,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:1904","l":"Streptomyces cyaneus","na":1,"nb":3,"a":[["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["carbohydrates/curamycin.yaml","curamycin"],["polyketides/cardol.yaml","cardol"],["polyketides/cosmomycin-d.yaml","cosmomycin D"]]},{"id":"NCBITaxon:1935","l":"Streptomyces violaceoruber","na":1,"nb":3,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["polyketides/granaticin.yaml","granaticin"],["polyketides/kendomycin.yaml","kendomycin"],["terpenoids/methylenomycin-a.yaml","methylenomycin A"]]},{"id":"NCBITaxon:216591","l":"Burkholderia cenocepacia J2315","na":1,"nb":3,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["unclassified/ornibactin-c4.yaml","ornibactin C4"],["unclassified/ornibactin-c6.yaml","ornibactin C6"],["unclassified/ornibactin-c8.yaml","ornibactin C8"]]},{"id":"NCBITaxon:216595","l":"Pseudomonas [fluorescens] SBW25","na":3,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["human-construction-envo-00000070.html","human construction"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["unclassified/viscosin.yaml","viscosin"]]},{"id":"NCBITaxon:237","l":"Flavobacterium","na":3,"nb":1,"a":[["column-bto-0005692.html","column"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"]]},{"id":"NCBITaxon:264951","l":"Paecilomyces variotii","na":1,"nb":3,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["polyketides/agnestin-a.yaml","agnestin A"],["polyketides/agnestin-b.yaml","agnestin B"],["polyketides/viriditoxin.yaml","viriditoxin"]]},{"id":"NCBITaxon:28447","l":"Clavibacter michiganensis","na":3,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["canker-habitatmech-bacdive-0f078d72a7.html","Canker"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["amino_acids_and_peptides/michiganin-a.yaml","michiganin A"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":3,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["sludge-envo-00002044.html","sludge"],["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"NCBITaxon:384676","l":"Pseudomonas entomophila L48","na":1,"nb":3,"a":[["coelom-bto-0001707.html","coelom"]],"b":[["alkaloids/labradorin-1.yaml","labradorin 1"],["alkaloids/labradorin-2.yaml","labradorin 2"],["alkaloids/pimprinine.yaml","pimprinine"]]},{"id":"NCBITaxon:388467","l":"Planktothrix agardhii NIVA-CYA 126/8","na":1,"nb":3,"a":[["filament-bto-0000463.html","filament"]],"b":[["amino_acids_and_peptides/anabaenopeptin-908.yaml","anabaenopeptin 908"],["amino_acids_and_peptides/anabaenopeptin-915.yaml","anabaenopeptin 915"],["amino_acids_and_peptides/microcystin.yaml","microcystin"]]},{"id":"NCBITaxon:393595","l":"Alcanivorax borkumensis SK2","na":1,"nb":3,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["amino_acids_and_peptides/amphibactin-e.yaml","amphibactin E"],["amino_acids_and_peptides/amphibactin-h.yaml","amphibactin H"],["fatty_acids/amphibactin-i.yaml","amphibactin I"]]},{"id":"NCBITaxon:448385","l":"Sorangium cellulosum So ce56","na":1,"nb":3,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["polyketides/etnangien.yaml","etnangien"],["polyketides/soraphen-a.yaml","soraphen A"],["terpenoids/eremophilene.yaml","(+)-eremophilene"]]},{"id":"NCBITaxon:45","l":"Melittangium lichenicola","na":3,"nb":1,"a":[["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["unclassified/melithiazol-a.yaml","melithiazol A"]]},{"id":"NCBITaxon:469371","l":"Thermobispora bispora DSM 43833","na":3,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["amino_acids_and_peptides/thiomuracin.yaml","thiomuracin"]]},{"id":"NCBITaxon:47312","l":"Tsukamurella pulmonis","na":3,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["tuberculosis-habitatmech-bacdive-e5d21f85b7.html","Tuberculosis"]],"b":[["amino_acids_and_peptides/longicatenamide-a.yaml","longicatenamide A"]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":3,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:757424","l":"Herbaspirillum seropedicae SmR1","na":1,"nb":3,"a":[["environmental-material-envo-00010483.html","environmental material"]],"b":[["amino_acids_and_peptides/serobactin-a.yaml","serobactin A"],["amino_acids_and_peptides/serobactin-b.yaml","serobactin B"],["amino_acids_and_peptides/serobactin-c.yaml","serobactin C"]]},{"id":"NCBITaxon:1074049","l":"Candidatus Burkholderia crenata","na":2,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"],["seedling-bto-0001228.html","seedling"]],"b":[["unclassified/fr900359.yaml","FR900359"]]},{"id":"NCBITaxon:1122611","l":"Nonomuraea coxensis DSM 45129","na":1,"nb":2,"a":[["sand-envo-01000017.html","sand"]],"b":[["amino_acids_and_peptides/a50926-a.yaml","A50926 A"],["amino_acids_and_peptides/a50926-b.yaml","A50926 B"]]},{"id":"NCBITaxon:1267754","l":"Corynebacterium urealyticum DSM 7111","na":2,"nb":1,"a":[["kidney-bto-0000671.html","kidney"],["urinary-tract-bto-0001244.html","urinary tract"]],"b":[["amino_acids_and_peptides/corynazolicin.yaml","corynazolicin"]]},{"id":"NCBITaxon:1281","l":"Staphylococcus carnosus","na":2,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["alkaloids/molybdenum-cofactor.yaml","molybdenum cofactor"]]},{"id":"NCBITaxon:1284","l":"Staphylococcus hyicus","na":1,"nb":2,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["unclassified/staphyloferrin-a.yaml","staphyloferrin A"]]},{"id":"NCBITaxon:1360","l":"Lactococcus lactis subsp. lactis","na":1,"nb":2,"a":[["foregut-bto-0000507.html","foregut"]],"b":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"],["amino_acids_and_peptides/nisin-a.yaml","nisin A"]]},{"id":"NCBITaxon:13684","l":"Parastagonospora nodorum","na":2,"nb":1,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["desert-sand-envo-00005800.html","desert sand"]],"b":[["shikimates_and_phenylpropanoids/mellein.yaml","(-)-Mellein"]]},{"id":"NCBITaxon:13689","l":"Sphingomonas paucimobilis","na":2,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"]],"b":[["unclassified/minimycin.yaml","minimycin"]]},{"id":"NCBITaxon:1550035","l":"Streptomyces sp. NBRC 109706","na":1,"nb":2,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["polyketides/akaeolide.yaml","akaeolide"],["polyketides/lorneic-acid-a.yaml","lorneic acid A"]]},{"id":"NCBITaxon:1703","l":"Brevibacterium linens","na":1,"nb":2,"a":[["animal-waste-material-envo-00002276.html","animal waste material"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"],["terpenoids/isorenieratene.yaml","isorenieratene"]]},{"id":"NCBITaxon:173560","l":"Saccharothrix algeriensis","na":1,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["alkaloids/holomycin.yaml","holomycin"],["alkaloids/thiolutin.yaml","thiolutin"]]},{"id":"NCBITaxon:1946","l":"Streptomyces kasugaensis","na":1,"nb":2,"a":[["plain-envo-00000086.html","plain"]],"b":[["alkaloids/thiolutin.yaml","thiolutin"],["carbohydrates/kasugamycin.yaml","kasugamycin"]]},{"id":"NCBITaxon:2014","l":"Nocardiopsis dassonvillei","na":2,"nb":1,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["alkaloids/iodinin.yaml","iodinin"]]},{"id":"NCBITaxon:2045","l":"Pimelobacter simplex","na":2,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:205918","l":"Pseudomonas syringae pv. syringae B728a","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["alkaloids/secimide.yaml","secimide"],["unclassified/syringomycin.yaml","syringomycin"]]},{"id":"NCBITaxon:2062","l":"Streptomycetaceae","na":1,"nb":2,"a":[["crop-bto-0000301.html","crop"]],"b":[["alkaloids/carbazomycin-b.yaml","carbazomycin B"],["unclassified/quinomycin.yaml","quinomycin"]]},{"id":"NCBITaxon:234621","l":"Rhodococcus erythropolis PR4","na":1,"nb":2,"a":[["joint-bto-0001686.html","joint"]],"b":[["amino_acids_and_peptides/heterobactin-a.yaml","heterobactin A"],["amino_acids_and_peptides/heterobactin-s2.yaml","heterobactin S2"]]},{"id":"NCBITaxon:249586","l":"Streptomyces asoensis","na":1,"nb":2,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["carbohydrates/polyoxin-a.yaml","polyoxin A"],["carbohydrates/polyoxin-h.yaml","polyoxin H"]]},{"id":"NCBITaxon:263358","l":"Micromonospora maris AB-18-032","na":1,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["polyketides/abyssomicin-c.yaml","abyssomicin C"],["polyketides/atrop-abyssomicin-c.yaml","atrop-abyssomicin C"]]},{"id":"NCBITaxon:28094","l":"Trinickia caryophylli","na":1,"nb":2,"a":[["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["amino_acids_and_peptides/gramibactin-b.yaml","gramibactin B"],["fatty_acids/caryoynencin.yaml","caryoynencin"]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["carbohydrates/legionaminic-acid.yaml","legionaminic acid"],["carbohydrates/pseudaminate.yaml","pseudaminate"]]},{"id":"NCBITaxon:298386","l":"Photobacterium profundum SS9","na":2,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["underground-water-envo-00005792.html","underground water"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans PD1222","na":2,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["alkaloids/parabactin.yaml","parabactin"]]},{"id":"NCBITaxon:337330","l":"Lactiplantibacillus plantarum subsp. plantarum","na":2,"nb":1,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:357","l":"Agrobacterium","na":2,"nb":1,"a":[["stem-bto-0001300.html","stem"],["trunk-bto-0001493.html","trunk"]],"b":[["alkaloids/sesbanimide-c.yaml","sesbanimide C"]]},{"id":"NCBITaxon:362242","l":"Mycobacterium ulcerans Agy99","na":2,"nb":1,"a":[["subcutaneous-tissue-bto-0004525.html","subcutaneous tissue"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["polyketides/mycolactone-b.yaml","mycolactone B"]]},{"id":"NCBITaxon:36746","l":"Pseudomonas cichorii","na":1,"nb":2,"a":[["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["amino_acids_and_peptides/cichofactin-a.yaml","cichofactin A"],["amino_acids_and_peptides/cichofactin-b.yaml","cichofactin B"]]},{"id":"NCBITaxon:37329","l":"Nocardia farcinica","na":2,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["amino_acids_and_peptides/nocobactin-na.yaml","nocobactin NA"]]},{"id":"NCBITaxon:397945","l":"Paracidovorax citrulli AAC00-1","na":1,"nb":2,"a":[["river-bed-envo-00000384.html","river bed"]],"b":[["unclassified/acidobactin-a.yaml","acidobactin A"],["unclassified/acidobactin-b.yaml","acidobactin B"]]},{"id":"NCBITaxon:41899","l":"Burkholderia plantarii","na":2,"nb":1,"a":[["panicle-bto-0005436.html","panicle"],["seedling-bto-0001228.html","seedling"]],"b":[["amino_acids_and_peptides/plantaribactin.yaml","plantaribactin"]]},{"id":"NCBITaxon:42234","l":"Streptomyces acidiscabies","na":1,"nb":2,"a":[["a10-cell-bto-0002196.html","A10 cell"]],"b":[["fatty_acids/butyrolactone.yaml","γ-butyrolactone"],["unclassified/thaxtomin-a.yaml","thaxtomin A"]]},{"id":"NCBITaxon:443906","l":"Clavibacter michiganensis subsp. michiganensis NCPPB 382","na":2,"nb":1,"a":[["xylem-bto-0001468.html","xylem"],["peatland-envo-00000044.html","peatland"]],"b":[["amino_acids_and_peptides/michiganin-a.yaml","michiganin A"]]},{"id":"NCBITaxon:4558","l":"Sorghum bicolor","na":1,"nb":2,"a":[["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["amino_acids_and_peptides/s-4-hydroxymandelonitrile-d-glucoside.yaml","(S)-4-hydroxymandelonitrile β-D-glucoside"],["shikimates_and_phenylpropanoids/alternariol.yaml","alternariol"]]},{"id":"NCBITaxon:457429","l":"Streptomyces pristinaespiralis ATCC 25486","na":1,"nb":2,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["amino_acids_and_peptides/pristinin-a3.yaml","pristinin A3"],["terpenoids/2s-3r-9r-pristinol.yaml","(+)-(2S,3R,9R)-pristinol"]]},{"id":"NCBITaxon:47917","l":"Serratia fonticola","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"]],"b":[["alkaloids/1-6-phenazinedimethanol.yaml","1,6-phenazinedimethanol"]]},{"id":"NCBITaxon:497965","l":"Gloeothece verrucosa PCC 7822","na":2,"nb":1,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["fatty_acids/1-heptadecene.yaml","1-heptadecene"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":1,"nb":2,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["amino_acids_and_peptides/aerobactin.yaml","aerobactin"],["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:58340","l":"Streptomyces lavendulae subsp. lavendulae","na":1,"nb":2,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["amino_acids_and_peptides/cycloserine.yaml","cycloserine"],["polyketides/auricin.yaml","auricin"]]},{"id":"NCBITaxon:587","l":"Providencia rettgeri","na":2,"nb":1,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["fumarole-envo-00000216.html","fumarole"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:60550","l":"Burkholderia pyrrocinia","na":1,"nb":2,"a":[["seedling-bto-0001228.html","seedling"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/occidiofungin-a.yaml","occidiofungin A"]]},{"id":"NCBITaxon:60894","l":"Saccharopolyspora spinosa","na":1,"nb":2,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["polyketides/a83543a.yaml","A83543A"],["polyketides/spinosyn-d.yaml","spinosyn D"]]},{"id":"NCBITaxon:648","l":"Aeromonas caviae","na":2,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:65","l":"Herpetosiphon aurantiacus","na":1,"nb":2,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["alkaloids/auriculamide.yaml","auriculamide"],["terpenoids/o-methylkolavelool.yaml","(+)-O-methylkolavelool"]]},{"id":"NCBITaxon:67274","l":"Streptomyces argenteolus","na":1,"nb":2,"a":[["plain-envo-00000086.html","plain"]],"b":[["amino_acids_and_peptides/carbapenem-mm4550.yaml","carbapenem MM4550"],["terpenoids/ks-505a.yaml","KS-505a"]]},{"id":"NCBITaxon:68042","l":"Streptomyces hygroscopicus subsp. hygroscopicus","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["terpenoids/hygromycin-a.yaml","hygromycin A"]]},{"id":"NCBITaxon:68170","l":"Lentzea aerocolonigenes","na":1,"nb":2,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["alkaloids/rebeccamycin.yaml","rebeccamycin"],["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:68203","l":"Streptomyces fungicidicus","na":1,"nb":2,"a":[["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["unclassified/enduracidin-a.yaml","enduracidin A"],["unclassified/enduracidin-b.yaml","enduracidin B"]]},{"id":"NCBITaxon:71999","l":"Kocuria palustris","na":2,"nb":1,"a":[["duodenal-mucosa-bto-0000367.html","duodenal mucosa"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"]],"b":[["amino_acids_and_peptides/kocurin.yaml","kocurin"]]},{"id":"NCBITaxon:720","l":"Actinobacillus lignieresii","na":2,"nb":1,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["unclassified/capsular-polysaccharide.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:80866","l":"Delftia acidovorans","na":1,"nb":2,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["amino_acids_and_peptides/delftibactin-a.yaml","delftibactin A"],["amino_acids_and_peptides/delftibactin-b.yaml","delftibactin B"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":2,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["fatty_acids/galactosylceramide.yaml","α-galactosylceramide"]]},{"id":"NCBITaxon:88728","l":"Pinus koraiensis","na":2,"nb":1,"a":[["lagoon-envo-00000038.html","lagoon"],["tropical-envo-01000204.html","tropical"]],"b":[["terpenoids/koraiol.yaml","koraiol"]]},{"id":"NCBITaxon:9031","l":"Gallus gallus","na":2,"nb":1,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:92743","l":"Streptomyces paromomycinus","na":1,"nb":2,"a":[["plain-envo-00000086.html","plain"]],"b":[["amino_acids_and_peptides/malonomycin.yaml","malonomycin"],["carbohydrates/paromomycin.yaml","paromomycin"]]},{"id":"NCBITaxon:1004","l":"Chitinophaga sancti","na":1,"nb":1,"a":[["plant-bto-0001481.html","plant"]],"b":[["polyketides/elansolid-a1.yaml","elansolid A1"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. PCC 7120 = FACHB-418","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"]]},{"id":"NCBITaxon:1077944","l":"Streptomyces muensis","na":1,"nb":1,"a":[["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["unclassified/griselimycin.yaml","griselimycin"]]},{"id":"NCBITaxon:1091494","l":"Methylotuvimicrobium alcaliphilum 20Z","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:1108595","l":"Chromobacterium vaccinii","na":1,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["unclassified/fr900359-2.yaml","FR900359"]]},{"id":"NCBITaxon:111781","l":"[Leptolyngbya] sp. PCC 7376","na":1,"nb":1,"a":[["rock-envo-00001995.html","rock"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"]]},{"id":"NCBITaxon:111807","l":"Actinomadura yumaensis","na":1,"nb":1,"a":[["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["polyketides/maduramicin.yaml","maduramicin"]]},{"id":"NCBITaxon:1137255","l":"Salinispora arenicola CNT005","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["unclassified/retimycin-a.yaml","retimycin A"]]},{"id":"NCBITaxon:114497","l":"Cordyceps fumosorosea","na":1,"nb":1,"a":[["low-tide-zone-envo-00000319.html","low tide zone"]],"b":[["polyketides/fumosorinone.yaml","fumosorinone"]]},{"id":"NCBITaxon:1200302","l":"Photobacterium damselae subsp. piscicida DI21","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["alkaloids/piscibactin.yaml","piscibactin"]]},{"id":"NCBITaxon:1293","l":"Staphylococcus gallinarum","na":1,"nb":1,"a":[["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["amino_acids_and_peptides/gallidermin.yaml","gallidermin"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["alkaloids/petrobactin.yaml","petrobactin"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:1599","l":"Latilactobacillus sakei","na":1,"nb":1,"a":[["research-facility-envo-00000469.html","research facility"]],"b":[["unclassified/lactocin-s.yaml","lactocin S"]]},{"id":"NCBITaxon:173365","l":"Methylobacter tundripaludum","na":1,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["unclassified/tundrenone.yaml","tundrenone"]]},{"id":"NCBITaxon:1989","l":"Actinomadura sp.","na":1,"nb":1,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["polyketides/maduramicin.yaml","maduramicin"]]},{"id":"NCBITaxon:1993","l":"Actinomadura madurae","na":1,"nb":1,"a":[["foot-bto-0000476.html","foot"]],"b":[["polyketides/maduropeptin.yaml","maduropeptin"]]},{"id":"NCBITaxon:2074","l":"Pseudonocardia autotrophica","na":1,"nb":1,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["polyketides/nystatin-like-pseudonocardia-polyene-a1.yaml","nystatin-like Pseudonocardia polyene A1"]]},{"id":"NCBITaxon:216895","l":"Vibrio vulnificus CMCP6","na":1,"nb":1,"a":[["hela-cell-bto-0000567.html","HeLa cell"]],"b":[["alkaloids/vulnibactin.yaml","vulnibactin"]]},{"id":"NCBITaxon:22","l":"Shewanella","na":1,"nb":1,"a":[["wood-bto-0005516.html","wood"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"NCBITaxon:226","l":"Alteromonas","na":1,"nb":1,"a":[["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["unclassified/marinostatin.yaml","marinostatin"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":1,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["alkaloids/parabactin.yaml","parabactin"]]},{"id":"NCBITaxon:267747","l":"Cutibacterium acnes KPA171202","na":1,"nb":1,"a":[["sebaceous-gland-bto-0001980.html","sebaceous gland"]],"b":[["amino_acids_and_peptides/cutimycin.yaml","cutimycin"]]},{"id":"NCBITaxon:28035","l":"Staphylococcus lugdunensis","na":1,"nb":1,"a":[["foot-bto-0000476.html","foot"]],"b":[["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]]},{"id":"NCBITaxon:28450","l":"Burkholderia pseudomallei","na":1,"nb":1,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"]],"b":[["polyketides/malleilactone.yaml","malleilactone"]]},{"id":"NCBITaxon:285482","l":"Streptomyces tsusimaensis","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["unclassified/valinomycin-2.yaml","valinomycin"]]},{"id":"NCBITaxon:29447","l":"Xanthomonas albilineans","na":1,"nb":1,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["alkaloids/albicidin.yaml","albicidin"]]},{"id":"NCBITaxon:298653","l":"Parafrankia sp. EAN1pec","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["polyketides/frankiamicin.yaml","frankiamicin"]]},{"id":"NCBITaxon:299254","l":"Streptomyces sp. NRRL 11266","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["polyketides/tetronomycin.yaml","tetronomycin"]]},{"id":"NCBITaxon:307120","l":"Micromonospora marina","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["unclassified/thiocoraline.yaml","thiocoraline"]]},{"id":"NCBITaxon:312309","l":"Aliivibrio fischeri ES114","na":1,"nb":1,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["unclassified/ape-vf.yaml","APE Vf"]]},{"id":"NCBITaxon:322710","l":"Azotobacter vinelandii DJ","na":1,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["amino_acids_and_peptides/azotobactin-d.yaml","azotobactin D"]]},{"id":"NCBITaxon:333964","l":"Xenorhabdus indica","na":1,"nb":1,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["unclassified/taxlllaid-a.yaml","taxlllaid A"]]},{"id":"NCBITaxon:33915","l":"Saccharopolyspora sp.","na":1,"nb":1,"a":[["forested-area-envo-00000111.html","forested area"]],"b":[["amino_acids_and_peptides/kyamicin.yaml","kyamicin"]]},{"id":"NCBITaxon:349521","l":"Hahella chejuensis KCTC 2396","na":1,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["alkaloids/prodigiosin-2.yaml","prodigiosin"]]},{"id":"NCBITaxon:349725","l":"Micromonospora sp. ML1","na":1,"nb":1,"a":[["clay-envo-00002982.html","clay"]],"b":[["unclassified/thiocoraline.yaml","thiocoraline"]]},{"id":"NCBITaxon:3654","l":"Citrullus lanatus","na":1,"nb":1,"a":[["wood-bto-0005516.html","wood"]],"b":[["fatty_acids/butyrolactone.yaml","γ-butyrolactone"]]},{"id":"NCBITaxon:376686","l":"Flavobacterium johnsoniae UW101","na":1,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["polyketides/flexirubin.yaml","flexirubin"]]},{"id":"NCBITaxon:38313","l":"Shewanella algae","na":1,"nb":1,"a":[["foot-bto-0000476.html","foot"]],"b":[["amino_acids_and_peptides/avaroferrin.yaml","avaroferrin"]]},{"id":"NCBITaxon:384","l":"Rhizobium leguminosarum","na":1,"nb":1,"a":[["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["amino_acids_and_peptides/vicibactin.yaml","vicibactin"]]},{"id":"NCBITaxon:394193","l":"Amycolatopsis saalfeldensis","na":1,"nb":1,"a":[["cave-envo-00000067.html","cave"]],"b":[["amino_acids_and_peptides/saalfelduracin.yaml","saalfelduracin"]]},{"id":"NCBITaxon:40223","l":"Methylophaga thalassica","na":1,"nb":1,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:4113","l":"Solanum tuberosum","na":1,"nb":1,"a":[["tuber-bto-0001400.html","tuber"]],"b":[["fatty_acids/itaconic-acid.yaml","itaconic acid"]]},{"id":"NCBITaxon:41276","l":"Brevundimonas vesicularis","na":1,"nb":1,"a":[["forested-area-envo-00000111.html","forested area"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:43769","l":"Corynebacterium propinquum","na":1,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["amino_acids_and_peptides/dehydroxynocardamine.yaml","dehydroxynocardamine"]]},{"id":"NCBITaxon:446787","l":"Actinopolymorpha rutila","na":1,"nb":1,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"]]},{"id":"NCBITaxon:45071","l":"Legionella parisiensis","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["shikimates_and_phenylpropanoids/legioliulin.yaml","legioliulin"]]},{"id":"NCBITaxon:4513","l":"Hordeum vulgare","na":1,"nb":1,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["unclassified/roquefortine-c.yaml","roquefortine C"]]},{"id":"NCBITaxon:452652","l":"Kitasatospora setae KM-6054","na":1,"nb":1,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["alkaloids/kitasetaline.yaml","kitasetaline"]]},{"id":"NCBITaxon:463","l":"Fluoribacter dumoffii","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["shikimates_and_phenylpropanoids/legioliulin.yaml","legioliulin"]]},{"id":"NCBITaxon:488447","l":"Burkholderia contaminans","na":1,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["amino_acids_and_peptides/occidiofungin-a.yaml","occidiofungin A"]]},{"id":"NCBITaxon:512","l":"Alcaligenes sp.","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["polyketides/kalimantacin-a.yaml","kalimantacin A"]]},{"id":"NCBITaxon:53409","l":"Pseudomonas coronafaciens","na":1,"nb":1,"a":[["pc-12-cell-bto-0001009.html","PC-12 cell"]],"b":[["polyketides/coronatine.yaml","coronatine"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":1,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:547","l":"Enterobacter","na":1,"nb":1,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["amino_acids_and_peptides/andrimid.yaml","andrimid"]]},{"id":"NCBITaxon:570268","l":"Nocardiopsis potens DSM 45234","na":1,"nb":1,"a":[["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"]],"b":[["amino_acids_and_peptides/potensibactin.yaml","potensibactin"]]},{"id":"NCBITaxon:591158","l":"Streptomyces sp. AA4","na":1,"nb":1,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["amino_acids_and_peptides/amychelin-a.yaml","amychelin A"]]},{"id":"NCBITaxon:60890","l":"Phaeobacter gallaeciensis","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["shikimates_and_phenylpropanoids/tropodithietic-acid.yaml","tropodithietic acid"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":1,"nb":1,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["unclassified/ape-vf.yaml","APE Vf"]]},{"id":"NCBITaxon:68175","l":"Streptomyces antimycoticus","na":1,"nb":1,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["terpenoids/napyradiomycin.yaml","napyradiomycin"]]},{"id":"NCBITaxon:68242","l":"Streptomyces natalensis","na":1,"nb":1,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["polyketides/natamycin.yaml","natamycin"]]},{"id":"NCBITaxon:69485","l":"Actinoplanes garbadinensis","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["amino_acids_and_peptides/actagardine.yaml","actagardine"]]},{"id":"NCBITaxon:703577","l":"Dactylosporangium aurantiacum subsp. hamdenensis","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["polyketides/tiacumicin-b.yaml","tiacumicin B"]]},{"id":"NCBITaxon:715","l":"Actinobacillus pleuropneumoniae","na":1,"nb":1,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["unclassified/capsular-polysaccharide.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["unclassified/lysocin-e.yaml","lysocin E"]]},{"id":"NCBITaxon:749414","l":"Streptomyces bingchenggensis BCW-1","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["polyketides/nanchangmycin.yaml","nanchangmycin"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis H37Rv","na":1,"nb":1,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["unclassified/mycobactin.yaml","mycobactin"]]},{"id":"NCBITaxon:85336","l":"Rothia nasimurium","na":1,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"]],"b":[["unclassified/valinomycin-2.yaml","valinomycin"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/HabitatMech--ProteinTraitsMech.json b/assets/fleet/edges/HabitatMech--ProteinTraitsMech.json index 899b66a..7f29fce 100644 --- a/assets/fleet/edges/HabitatMech--ProteinTraitsMech.json +++ b/assets/fleet/edges/HabitatMech--ProteinTraitsMech.json @@ -1 +1 @@ -{"a":"HabitatMech","b":"ProteinTraitsMech","base":{"HabitatMech":"https://culturebotai.github.io/HabitatMech/pages/habitats/","ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record="},"n":1250,"by":{"NCBITaxon":1234,"UBERON":12,"CHEBI":2,"GO":2},"terms":[{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":40,"nb":46,"a":[["liquid-water-envo-00002006.html","liquid water"],["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["laboratory-facility-envo-01001406.html","laboratory facility"],["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["biofilm-bto-0002690.html","biofilm"]],"b":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF13166","AAA domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF27533","CapK C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":36,"nb":145,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["bay-envo-00000032.html","bay"],["freshwater-biome-envo-00000873.html","freshwater biome"],["liquid-water-envo-00002006.html","liquid water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["IDPO%3A0000033","flexible linker"],["IDPO%3A0000014","order to disorder"],["IDPO%3A0000004","pre-molten globule"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"]]},{"id":"NCBITaxon:1869227","l":"bacterium","na":26,"nb":57,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["marine-water-body-envo-00001999.html","marine water body"],["watercourse-envo-00000029.html","watercourse"],["laboratory-facility-envo-01001406.html","laboratory facility"]],"b":[["TED%3AAF-A0A2D6E3L3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D6E3L3-F1-model_v4_TED02"],["TED%3AAF-A0A2D6IMF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D6IMF4-F1-model_v4_TED01"],["TED%3AAF-A0A3N5GA95-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3N5GA95-F1-model_v4_TED02"],["TED%3AAF-A0A3N5I065-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N5I065-F1-model_v4_TED01"],["TED%3AAF-A0A496UYV5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A496UYV5-F1-model_v4_TED02"],["TED%3AAF-A0A4Q3U385-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q3U385-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":27,"nb":23,"a":[["small-river-biome-envo-00000890.html","small river biome"],["factory-envo-01000536.html","factory"],["organic-waste-material-envo-00002873.html","organic waste material"],["leaf-po-0025034.html","leaf"],["milk-uberon-0001913.html","milk"],["rhizosphere-envo-00005801.html","rhizosphere"]],"b":[["Pfam%3APF08878","HamA"],["Pfam%3APF05791","Bacillus haemolytic enterotoxin (HBL)"],["Pfam%3APF10803","Spore germination GerPB"],["Pfam%3APF10737","Spore germination protein GerPC"],["Pfam%3APF10970","Spore germination protein GerPE"],["Pfam%3APF07486","Cell Wall Hydrolase"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":28,"nb":19,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["liquid-water-envo-00002006.html","liquid water"],["watercourse-envo-00000029.html","watercourse"],["compost-envo-00002170.html","compost"],["hospital-envo-00002173.html","hospital"],["human-construction-envo-00000070.html","human construction"]],"b":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"],["Pfam%3APF18173","Bacterial HORMA domain 2"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["Pfam%3APF27322","Cap8 HORMA domain"],["Pfam%3APF01526","Tn3 transposase DDE domain"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":18,"nb":16,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["Pfam%3APF16822","SGNH hydrolase-like domain, acetyltransferase AlgX"],["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"],["Pfam%3APF11182","Alginate O-acetyl transferase AlgF"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF27129","Functional amyloid protein FapB/FapC family"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":13,"nb":30,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["neutrophil-bto-0000130.html","neutrophil"],["rectum-bto-0001158.html","rectum"],["spleen-bto-0001281.html","spleen"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["Pfam%3APF08787","Alginate lyase"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF08218","Citrate lyase ligase C-terminal domain"],["Pfam%3APF13727","CoA-binding domain"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["Pfam%3APF20714","DpiA-like helix-turn-helix domain"]]},{"id":"NCBITaxon:56","l":"Sorangium cellulosum","na":27,"nb":13,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["watercourse-envo-00000029.html","watercourse"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["TED%3AAF-A0A150SQB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A150SQB4-F1-model_v4_TED01"],["TED%3AAF-A0A2L0EP96-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0EP96-F1-model_v4_TED01"],["TED%3AAF-A0A2L0F1G5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0F1G5-F1-model_v4_TED01"],["TED%3AAF-A0A2L0F230-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0F230-F1-model_v4_TED01"],["TED%3AAF-A0A4P2R1W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P2R1W3-F1-model_v4_TED01"],["TED%3AAF-A0A150P579-F1-model_v4_TED02","TED novel fold AF-A0A150P579-F1-model_v4_TED02"]]},{"id":"NCBITaxon:54","l":"Nannocystis exedens","na":22,"nb":13,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["watercourse-envo-00000029.html","watercourse"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["TED%3AAF-A0A1I2A5Z6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2A5Z6-F1-model_v4_TED01"],["TED%3AAF-A0A1I2FM38-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I2FM38-F1-model_v4_TED02"],["TED%3AAF-A0A1I2H0F9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2H0F9-F1-model_v4_TED01"],["TED%3AAF-A0A831ZMD9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A831ZMD9-F1-model_v4_TED01"],["TED%3AAF-A0A1I1T6U3-F1-model_v4_TED01","TED novel fold AF-A0A1I1T6U3-F1-model_v4_TED01"],["TED%3AAF-A0A1I1XLT5-F1-model_v4_TED02","TED novel fold AF-A0A1I1XLT5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":11,"nb":20,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["resting-cell-bto-0001170.html","resting cell"],["seedling-bto-0001228.html","seedling"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Pfam%3APF14535","AMP-binding enzyme C-terminal domain"],["Pfam%3APF13442","Cytochrome C oxidase, cbb3-type, subunit III"],["Pfam%3APF22247","Catechol 2,3-dioxygenase-like N-terminal domain"],["Pfam%3APF25371","Domain of unknown function (DUF7884)"],["Pfam%3APF19301","LigXa C-terminal domain like"],["Pfam%3APF12729","Four helix bundle sensory module for signal transduction"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":10,"nb":15,"a":[["anther-bto-0000079.html","anther"],["epithelial-cell-bto-0000414.html","epithelial cell"],["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["Pfam%3APF14562","Restriction endonuclease BglI"],["Pfam%3APF09195","Restriction endonuclease BglII/BglIII"],["Pfam%3APF09208","Restriction endonuclease MspI"]]},{"id":"NCBITaxon:10116","l":"Rattus norvegicus","na":9,"nb":1002,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["biotope-envo-00002036.html","biotope"],["farm-envo-00000078.html","farm"],["intestine-environment-envo-2100002.html","intestine environment"],["organic-material-envo-01000155.html","organic material"]],"b":[["IDPO%3A0000011","disorder to order"],["IDPO%3A0000030","entropic chain"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000033","flexible linker"],["IDPO%3A0000041","glycosylation display site"],["IDPO%3A0000003","molten globule"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":9,"nb":14,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["fresh-water-envo-00002011.html","fresh water"],["river-envo-00000022.html","river"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["Pfam%3APF03703","Bacterial PH domain"],["Pfam%3APF01322","Cytochrome C'"],["Pfam%3APF03139","Vanadium/alternative nitrogenase delta subunit"],["Pfam%3APF09527","Putative F0F1-ATPase subunit Ca2+/Mg2+ transporter"],["Pfam%3APF03270","Protein of unknown function, DUF269"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"]]},{"id":"NCBITaxon:39946","l":"Oryza sativa subsp. indica","na":13,"nb":9,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["eutrophic-water-envo-00002224.html","eutrophic water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["Pfam%3APF17538","DNA Binding Domain (C-terminal) Leafy/Floricaula"],["Pfam%3APF23703","DExH-box ATP-dependent RNA helicase DExH18, N-terminal"],["Pfam%3APF02496","ABA/WDS induced protein"],["Pfam%3APF06351","Allene oxide cyclase"],["Pfam%3APF02514","CobN/Magnesium Chelatase"],["Pfam%3APF05558","DREPP plasma membrane polypeptide"]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":12,"nb":9,"a":[["hospital-envo-00002173.html","hospital"],["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["epithelial-cell-bto-0000414.html","epithelial cell"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["meninx-bto-0000144.html","meninx"]],"b":[["Pfam%3APF19567","Capsular polysaccharide synthesis, CpsB/CapC"],["Pfam%3APF07501","G5 domain"],["Pfam%3APF13551","Winged helix-turn helix"],["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF03047","COMC family"],["Pfam%3APF04556","DpnII restriction endonuclease"]]},{"id":"NCBITaxon:10090","l":"Mus musculus","na":8,"nb":45870,"a":[["river-envo-00000022.html","river"],["animal-manure-envo-00003031.html","animal manure"],["biotope-envo-00002036.html","biotope"],["intestine-environment-envo-2100002.html","intestine environment"],["urban-biome-envo-01000249.html","urban biome"],["sediment-envo-00002007.html","sediment"]],"b":[["EC%3A1.1.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.1.98.-","With other, known, acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"]]},{"id":"NCBITaxon:1265","l":"Ruminococcus flavefaciens","na":29,"nb":8,"a":[["biofilm-envo-00002034.html","biofilm"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["TED%3AAF-A0A1H6I5C3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1H6I5C3-F1-model_v4_TED03"],["TED%3AAF-A0A1K2AQV3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1K2AQV3-F1-model_v4_TED01"],["TED%3AAF-A0A1M7IZN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M7IZN6-F1-model_v4_TED01"],["TED%3AAF-A0A1H6IY18-F1-model_v4_TED01","TED novel fold AF-A0A1H6IY18-F1-model_v4_TED01"],["TED%3AAF-A0A1K1WYY5-F1-model_v4_TED01","TED novel fold AF-A0A1K1WYY5-F1-model_v4_TED01"],["TED%3AAF-A0A1K2C3A7-F1-model_v4_TED01","TED novel fold AF-A0A1K2C3A7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":17,"nb":8,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["hospital-envo-00002173.html","hospital"],["egg-food-product-foodon-00001274.html","egg food product"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["Pfam%3APF01721","Class II bacteriocin"],["Pfam%3APF13700","Domain of unknown function (DUF4158)"],["Pfam%3APF07478","D-ala D-ala ligase C-terminus"],["Pfam%3APF01820","D-ala D-ala ligase N-terminus"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"],["PROSITE%3APS00843","D-alanine--D-alanine ligase signature 1"]]},{"id":"NCBITaxon:210","l":"Helicobacter pylori","na":8,"nb":9,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["hospital-envo-00002173.html","hospital"],["duodenum-bto-0000365.html","duodenum"],["gastric-juice-bto-0000501.html","gastric juice"],["gastric-mucosa-bto-0001308.html","gastric mucosa"],["gastric-ulcer-bto-0002990.html","gastric ulcer"]],"b":[["Pfam%3APF18025","Alpha-(1,3)-fucosyltransferase FucT N-terminal domain"],["Pfam%3APF18971","CagA protein"],["Pfam%3APF03507","CagA exotoxin phosphopeptide substrate mimic region"],["Pfam%3APF02691","Vacuolating cyotoxin beta-helical domain"],["TED%3AAF-A0A2T6UWI4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T6UWI4-F1-model_v4_TED01"],["TED%3AAF-A0A1Q9JB12-F1-model_v4_TED01","TED novel fold AF-A0A1Q9JB12-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":8,"nb":8,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["lab-synthesis-habitatmech-bacdive-0e92e77cd4.html","Lab-synthesis"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["oil-spill-envo-00002061.html","oil spill"],["temperate-envo-01000206.html","temperate"]],"b":[["Pfam%3APF01890","Cobalamin synthesis G C-terminus"],["Pfam%3APF11761","Cobalamin biosynthesis central region"],["Pfam%3APF11760","Cobalamin synthesis G N-terminal"],["Pfam%3APF02570","Precorrin-8X methylmutase"],["PROSITE%3APS00304","Small, acid-soluble spore proteins, alpha/beta type, signature 1"],["PROSITE%3APS00684","Small, acid-soluble spore proteins, alpha/beta type, signature 2"]]},{"id":"NCBITaxon:165179","l":"Segatella copri","na":7,"nb":13,"a":[["biofilm-envo-00002034.html","biofilm"],["juvenile-bto-0002168.html","juvenile"],["rumen-uberon-0007365.html","rumen"],["tongue-bto-0001385.html","tongue"],["vaginal-fluid-bto-0003084.html","vaginal fluid"],["animal-litter-envo-00002191.html","animal litter"]],"b":[["TED%3AAF-A0A3R6DW71-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3R6DW71-F1-model_v4_TED02"],["TED%3AAF-A0A3R6EGS2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R6EGS2-F1-model_v4_TED01"],["TED%3AAF-A0A5Q5FTM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Q5FTM4-F1-model_v4_TED01"],["TED%3AAF-A0A3R5WNG5-F1-model_v4_TED02","TED novel fold AF-A0A3R5WNG5-F1-model_v4_TED02"],["TED%3AAF-A0A3R5YKW9-F1-model_v4_TED01","TED novel fold AF-A0A3R5YKW9-F1-model_v4_TED01"],["TED%3AAF-A0A3R6FRY2-F1-model_v4_TED01","TED novel fold AF-A0A3R6FRY2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":10,"nb":7,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"]],"b":[["Pfam%3APF04439","Streptomycin adenylyltransferase"],["TED%3AAF-A0A696J2C3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A696J2C3-F1-model_v4_TED01"],["TED%3AAF-A0A825M6H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A825M6H4-F1-model_v4_TED01"],["TED%3AAF-A0A5T0SBG5-F1-model_v4_TED01","TED novel fold AF-A0A5T0SBG5-F1-model_v4_TED01"],["TED%3AAF-A0A698JVM3-F1-model_v4_TED03","TED novel fold AF-A0A698JVM3-F1-model_v4_TED03"],["TED%3AAF-A0A824N1N8-F1-model_v4_TED01","TED novel fold AF-A0A824N1N8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":7,"nb":10,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["pseudostem-bto-0005992.html","pseudostem"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["TED%3AAF-A0A5T2E4X7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5T2E4X7-F1-model_v4_TED01"],["TED%3AAF-A0A5Y4BP44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Y4BP44-F1-model_v4_TED01"],["TED%3AAF-A0A623P6F3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A623P6F3-F1-model_v4_TED02"],["TED%3AAF-A0A721BDS7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A721BDS7-F1-model_v4_TED02"],["TED%3AAF-A0A743P324-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A743P324-F1-model_v4_TED01"],["TED%3AAF-A0A757VWR3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A757VWR3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1314","l":"Streptococcus pyogenes","na":9,"nb":7,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"],["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"],["epithelial-cell-bto-0000414.html","epithelial cell"],["nasopharynx-bto-0000662.html","nasopharynx"],["skin-of-body-uberon-0002097.html","skin of body"],["throat-bto-0000828.html","throat"]],"b":[["Pfam%3APF13585","CHU_C Type IX secretion signal domain"],["Pfam%3APF24547","Domain of unknown function (DUF7601)"],["Pfam%3APF08998","Bacterial epsilon antitoxin"],["Pfam%3APF06280","Fn3-like domain"],["Pfam%3APF02274","Arginine deiminase"],["Pfam%3APF13734","Spi protease inhibitor"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":7,"nb":7,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["liquid-water-envo-00002006.html","liquid water"],["crown-gall-bto-0000303.html","crown gall"],["finger-bto-0004669.html","finger"],["resting-cell-bto-0001170.html","resting cell"],["water-scum-envo-00005794.html","water scum"]],"b":[["Pfam%3APF19443","DAHL domain"],["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"],["Pfam%3APF03524","Conjugal transfer protein"],["Pfam%3APF27439","Chaperone protein DnaJ C-terminal region"],["Pfam%3APF10907","Protein of unknown function (DUF2749)"],["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":19,"nb":6,"a":[["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["bone-element-uberon-0001474.html","bone element"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF10779","Haemolysin XhlA"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF08181","DegQ (SacQ) family"],["Pfam%3APF08057","Erythromycin resistance leader peptide"],["Pfam%3APF14867","Lantibiotic alpha"]]},{"id":"NCBITaxon:1409","l":"Bacillus sp. (in: firmicutes)","na":16,"nb":6,"a":[["biofilm-envo-00002034.html","biofilm"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["low-tide-zone-envo-00000319.html","low tide zone"],["organic-waste-material-envo-00002873.html","organic waste material"],["rhizosphere-envo-00005801.html","rhizosphere"],["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["Pfam%3APF02903","Alpha amylase, N-terminal ig-like domain"],["Pfam%3APF12123","PlyG Cell wall binding domain"],["Pfam%3APF24517","Carbohydrate-binding module family 96"],["Pfam%3APF07827","KNTase C-terminal domain"],["TED%3AAF-A0A3D0E1V5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D0E1V5-F1-model_v4_TED01"],["TED%3AAF-A0A3D5U4K3-F1-model_v4_TED01","TED novel fold AF-A0A3D5U4K3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:40324","l":"Stenotrophomonas maltophilia","na":15,"nb":6,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["catheter-device-ncit-c50344.html","Catheter Device"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["seedling-bto-0001228.html","seedling"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["TED%3AAF-A0A2U4H7T5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2U4H7T5-F1-model_v4_TED02"],["TED%3AAF-A0A2W6G5X3-F1-model_v4_TED01","TED novel fold AF-A0A2W6G5X3-F1-model_v4_TED01"],["TED%3AAF-A0A2W6IKS3-F1-model_v4_TED02","TED novel fold AF-A0A2W6IKS3-F1-model_v4_TED02"],["TED%3AAF-A0A7D0KRT5-F1-model_v4_TED03","TED novel fold AF-A0A7D0KRT5-F1-model_v4_TED03"],["TED%3AAF-A0A7T8PWR1-F1-model_v4_TED05","TED novel fold AF-A0A7T8PWR1-F1-model_v4_TED05"]]},{"id":"NCBITaxon:1397","l":"Niallia circulans","na":12,"nb":6,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["organic-waste-material-envo-00002873.html","organic waste material"],["rhizosphere-envo-00005801.html","rhizosphere"],["cultivated-environment-envo-01000311.html","cultivated environment"],["sludge-envo-00002044.html","sludge"]],"b":[["Pfam%3APF03423","Carbohydrate binding domain (family 25)"],["Pfam%3APF13199","Glycosyl hydrolase family 66"],["Pfam%3APF14399","Butirosin biosynthesis protein H, N-terminal"],["Pfam%3APF19634","Family of unknown function (DUF6137)"],["PROSITE%3APS60000","Chitosanases families 46 and 80 active sites signature"],["TED%3AAF-A0A0J1IR10-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0J1IR10-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1496","l":"Clostridioides difficile","na":6,"nb":10,"a":[["hospital-envo-00002173.html","hospital"],["feces-uberon-0001988.html","feces"],["leukocyte-bto-0000751.html","leukocyte"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["intestine-environment-envo-2100002.html","intestine environment"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["Pfam%3APF18671","4-Hydroxyphenylacetate decarboxylase subunit gamma N-terminal"],["Pfam%3APF00302","Chloramphenicol acetyltransferase"],["Pfam%3APF18524","High potential iron-sulfur protein like"],["Pfam%3APF06050","2-hydroxyglutaryl-CoA dehydratase, D-component"],["PROSITE%3APS00100","Chloramphenicol acetyltransferase active site"],["Pfam%3APF01473","Putative cell wall binding repeat"]]},{"id":"NCBITaxon:727","l":"Haemophilus influenzae","na":9,"nb":6,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["head-bto-0000282.html","head"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["Pfam%3APF06808","Tripartite ATP-independent periplasmic transporter, DctM component"],["Pfam%3APF04290","Tripartite ATP-independent periplasmic transporters, DctQ component"],["Pfam%3APF09226","Restriction endonuclease HincII"],["Pfam%3APF09520","Type II restriction endonuclease, HinfI"],["Pfam%3APF24077","Immunoglobulin A1 protease autotransporter domain 2"],["PROSITE%3APS01068","OmpA-like domain"]]},{"id":"NCBITaxon:1305","l":"Streptococcus sanguinis","na":6,"nb":7,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["throat-bto-0000828.html","throat"],["geographic-feature-envo-00000000.html","geographic feature"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Pfam%3APF09254","FokI, cleavage domain"],["Pfam%3APF02981","FokI, recognition domain, subdomain 1"],["Pfam%3APF02980","FokI, recognition domain, subdomain 2"],["Pfam%3APF07501","G5 domain"],["Pfam%3APF07581","The GLUG motif"],["TED%3AAF-A0A7H8V358-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H8V358-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1502","l":"Clostridium perfringens","na":7,"nb":6,"a":[["small-river-biome-envo-00000890.html","small river biome"],["animal-house-envo-00003040.html","animal house"],["ileum-bto-0000620.html","ileum"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["Pfam%3APF08307","Glycosyl hydrolase family 98 C-terminal domain"],["Pfam%3APF08306","Glycosyl hydrolase family 98"],["Pfam%3APF12645","Helix-turn-helix domain"],["Pfam%3APF03505","Clostridium enterotoxin"],["Pfam%3APF10960","BhlA holin family"],["TED%3AAF-A0A140GRT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A140GRT8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1510","l":"Thermoclostridium stercorarium","na":6,"nb":7,"a":[["small-river-biome-envo-00000890.html","small river biome"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"],["rock-envo-00001995.html","rock"],["sulfur-spring-envo-00000126.html","sulfur spring"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["Pfam%3APF07523","Bacterial Ig-like domain (group 3)"],["Pfam%3APF03442","Carbohydrate binding domain X2"],["Pfam%3APF00457","Glycosyl hydrolases family 11"],["Pfam%3APF03422","Carbohydrate binding module (family 6)"],["PROSITE%3APS00776","Glycosyl hydrolases family 11 (GH11) active site signature 1"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"]]},{"id":"NCBITaxon:1871047","l":"Chryseobacterium sp.","na":6,"nb":7,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["leaf-po-0025034.html","leaf"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["humid-habitatmech-bacdive-0fa0234f43.html","Humid"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["TED%3AAF-A0A2W6XQ62-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W6XQ62-F1-model_v4_TED01"],["TED%3AAF-A0A2W6YLD3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2W6YLD3-F1-model_v4_TED02"],["TED%3AAF-A0A5N7U1L3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5N7U1L3-F1-model_v4_TED01"],["TED%3AAF-A0A3D4JZX5-F1-model_v4_TED04","TED novel fold AF-A0A3D4JZX5-F1-model_v4_TED04"],["TED%3AAF-A0A3N7GZ20-F1-model_v4_TED01","TED novel fold AF-A0A3N7GZ20-F1-model_v4_TED01"],["TED%3AAF-A0A5N7YYR2-F1-model_v4_TED01","TED novel fold AF-A0A5N7YYR2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":16,"nb":5,"a":[["fresh-water-envo-00002011.html","fresh water"],["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"]],"b":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF02963","Restriction endonuclease EcoRI"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["PROSITE%3APS00974","Mannitol dehydrogenases signature"],["PROSITE%3APS00567","Phosphoribulokinase signature"]]},{"id":"NCBITaxon:1598","l":"Limosilactobacillus reuteri","na":14,"nb":5,"a":[["cecum-mucosa-bto-0000213.html","cecum mucosa"],["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["ileum-bto-0000620.html","ileum"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"]],"b":[["TED%3AAF-A0A6N1EMN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N1EMN7-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2V3C3-F1-model_v4_TED01","TED novel fold AF-A0A1Y2V3C3-F1-model_v4_TED01"],["TED%3AAF-A0A848BUA9-F1-model_v4_TED01","TED novel fold AF-A0A848BUA9-F1-model_v4_TED01"],["TED%3AAF-A0A855XJ18-F1-model_v4_TED01","TED novel fold AF-A0A855XJ18-F1-model_v4_TED01"],["TED%3AAF-Q6WUB1-F1-model_v4_TED03","TED novel fold AF-Q6WUB1-F1-model_v4_TED03"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":14,"nb":5,"a":[["watercourse-envo-00000029.html","watercourse"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["leaf-po-0025034.html","leaf"]],"b":[["TED%3AAF-A0A4Y6CF56-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y6CF56-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6CNZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Y6CNZ1-F1-model_v4_TED02"],["TED%3AAF-A0A7Y4IIX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4IIX4-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6B7F9-F1-model_v4_TED01","TED novel fold AF-A0A4Y6B7F9-F1-model_v4_TED01"],["TED%3AAF-A0A7Y4IR70-F1-model_v4_TED01","TED novel fold AF-A0A7Y4IR70-F1-model_v4_TED01"]]},{"id":"NCBITaxon:239","l":"Flavobacterium sp.","na":5,"nb":13,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["mud-envo-01000001.html","mud"],["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"],["orchard-envo-00000115.html","orchard"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["Pfam%3APF21331","Isoamylase, C-terminal"],["TED%3AAF-A0A2E4PC55-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E4PC55-F1-model_v4_TED02"],["TED%3AAF-A0A2E4PGC5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4PGC5-F1-model_v4_TED01"],["TED%3AAF-A0A2E4PMB7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E4PMB7-F1-model_v4_TED02"],["TED%3AAF-A0A355BEV2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A355BEV2-F1-model_v4_TED02"],["TED%3AAF-A0A519QLA6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A519QLA6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":13,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"],["midgut-bto-0000863.html","midgut"],["paddy-field-envo-00000297.html","paddy field"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF03173","Putative carbohydrate binding domain"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"],["Pfam%3APF06438","Heme-binding protein A (HasA)"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF05247","Flagellar transcriptional activator (FlhD)"]]},{"id":"NCBITaxon:224911","l":"Bradyrhizobium diazoefficiens USDA 110","na":5,"nb":10,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["microbial-mat-material-envo-01000157.html","microbial mat material"],["agricultural-soil-envo-00002259.html","agricultural soil"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["Pfam%3APF14715","N-terminal domain of cytochrome oxidase-cbb3, FixP"],["Pfam%3APF03886","ABC-type transport auxiliary lipoprotein component"],["Pfam%3APF10649","Protein of unknown function (DUF2478)"],["Pfam%3APF01924","Hydrogenase formation hypA family"],["PROSITE%3APS00882","Nickel-dependent hydrogenases b-type cytochrome subunit signature 1"]]},{"id":"NCBITaxon:1667","l":"Arthrobacter sp.","na":9,"nb":5,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["leaf-po-0025034.html","leaf"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["Pfam%3APF14031","Putative serine dehydratase domain"],["Pfam%3APF02449","Beta-galactosidase"],["Pfam%3APF08533","Beta-galactosidase C-terminal domain"],["Pfam%3APF08532","Beta-galactosidase trimerisation domain"],["TED%3AAF-A0A3C2BWN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C2BWN3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":5,"nb":6,"a":[["liquid-water-envo-00002006.html","liquid water"],["food-spoiled-foodon-00003366.html","food (spoiled)"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"]],"b":[["Pfam%3APF14525","AraC-binding-like domain"],["Pfam%3APF06139","BphX-like"],["Pfam%3APF13340","Putative transposase of IS4/5 family (DUF4096)"],["Pfam%3APF11794","4-hydroxyphenylacetate 3-hydroxylase N terminal"],["Pfam%3APF03241","4-hydroxyphenylacetate 3-hydroxylase C terminal"],["TED%3AAF-A0A4S3H3T1-F1-model_v4_TED02","TED novel fold AF-A0A4S3H3T1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:391625","l":"Plesiocystis pacifica SIR-1","na":5,"nb":6,"a":[["coral-reef-envo-00000150.html","coral reef"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["bulk-soil-envo-00005802.html","bulk soil"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-A6FXI2-F1-model_v4_TED01","TED highly-symmetric fold AF-A6FXI2-F1-model_v4_TED01"],["TED%3AAF-A6G0J0-F1-model_v4_TED01","TED highly-symmetric fold AF-A6G0J0-F1-model_v4_TED01"],["TED%3AAF-A6G9Q2-F1-model_v4_TED01","TED highly-symmetric fold AF-A6G9Q2-F1-model_v4_TED01"],["TED%3AAF-A6G861-F1-model_v4_TED02","TED novel fold AF-A6G861-F1-model_v4_TED02"],["TED%3AAF-A6GGD7-F1-model_v4_TED01","TED novel fold AF-A6GGD7-F1-model_v4_TED01"],["TED%3AAF-A6GI73-F1-model_v4_TED02","TED novel fold AF-A6GI73-F1-model_v4_TED02"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":5,"nb":6,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["pseudostem-bto-0005992.html","pseudostem"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["Pfam%3APF02929","Beta galactosidase small chain"],["Pfam%3APF27279","Fumarate--diaminopropanoate ligase C-terminal domain"],["Pfam%3APF18024","Helix-turn-helix domain"],["Pfam%3APF16353","Beta-galactosidase, domain 4"],["PROSITE%3APS00594","Aromatic amino acids permeases signature"],["PROSITE%3APS00853","Beta-eliminating lyases pyridoxal-phosphate attachment site"]]},{"id":"NCBITaxon:1318","l":"Streptococcus parasanguinis","na":5,"nb":5,"a":[["biofilm-envo-00002034.html","biofilm"],["geographic-feature-envo-00000000.html","geographic feature"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"],["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["Pfam%3APF26337","Glucosyltransferase 3-like, C-terminal domain"],["Pfam%3APF26334","Glucosyltransferase 3-like, N-terminal domain"],["Pfam%3APF22145","GtfA extended beta-sheet domain"],["Pfam%3APF27244","GtfB middle domain"],["Pfam%3APF04286","Protein of unknown function (DUF445)"]]},{"id":"NCBITaxon:1393","l":"Brevibacillus brevis","na":5,"nb":5,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["Pfam%3APF03306","Alpha-acetolactate decarboxylase"],["Pfam%3APF05384","Sensor protein DegS"],["TED%3AAF-A0A2Z4MK38-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z4MK38-F1-model_v4_TED01"],["TED%3AAF-A0A2Z4MPQ6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2Z4MPQ6-F1-model_v4_TED02"],["TED%3AAF-A0A517IGN3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A517IGN3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:39947","l":"Oryza sativa subsp. japonica","na":4,"nb":158,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["large-river-biome-envo-00000887.html","large river biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"],["river-bed-envo-00000384.html","river bed"]],"b":[["Pfam%3APF03157","High molecular weight glutenin subunit"],["Pfam%3APF26249","RdRP3/4/5, N-terminal four helical bundle domain"],["Pfam%3APF23242","TRIP13-like, AAA+ ATPase lid C-terminal domain"],["Pfam%3APF26791","AAPxQ domain"],["Pfam%3APF24922","Acyl-CoA-binding domain-containing protein 4-6, C-terminal"],["Pfam%3APF04864","Allinase"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":4,"nb":32,"a":[["bioreactor-envo-00002123.html","bioreactor"],["human-construction-envo-00000070.html","human construction"],["sediment-envo-00002007.html","sediment"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF25848","Rodlin protein"],["Pfam%3APF13420","Acetyltransferase (GNAT) domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF26381","BREX System ATPase PglY protein 5th domain"],["Pfam%3APF26382","BREX System ATPase PglY protein 6th domain"]]},{"id":"NCBITaxon:3055","l":"Chlamydomonas reinhardtii","na":4,"nb":27,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["large-river-biome-envo-00000887.html","large river biome"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["pond-water-envo-00002228.html","pond water"]],"b":[["Pfam%3APF01333","Apocytochrome F, C-terminal"],["Pfam%3APF16639","Apocytochrome F, N-terminal"],["Pfam%3APF00430","ATP synthase B/B' CF(0)"],["Pfam%3APF00401","ATP synthase, Delta/Epsilon chain, long alpha-helix domain"],["Pfam%3APF21771","CFAP58 central coiled coil"],["Pfam%3APF27956","CFAP99 V-shaped coiled-coil domain"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae (strain ATCC 42149 / RIB 40)","na":4,"nb":27,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["mountain-pass-envo-00000084.html","mountain pass"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF09260","Alpha-amylase, domain C"],["Pfam%3APF28338","AclK C-terminal domain"],["Pfam%3APF09206","Alpha-L-arabinofuranosidase B, catalytic"],["Pfam%3APF28380","Sesquiterpene cyclase astC-like C-terminal domain"],["Pfam%3APF13364","Beta-galactosidase second all-beta domain"],["Pfam%3APF10435","Beta-galactosidase, domain 2"]]},{"id":"NCBITaxon:33","l":"Myxococcus fulvus","na":21,"nb":4,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"]],"b":[["TED%3AAF-A0A511SVC1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A511SVC1-F1-model_v4_TED01"],["TED%3AAF-A0A511SU64-F1-model_v4_TED01","TED novel fold AF-A0A511SU64-F1-model_v4_TED01"],["TED%3AAF-A0A511T2U3-F1-model_v4_TED02","TED novel fold AF-A0A511T2U3-F1-model_v4_TED02"],["TED%3AAF-A0A511T9F8-F1-model_v4_TED05","TED novel fold AF-A0A511T9F8-F1-model_v4_TED05"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":4,"nb":20,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF27529","AMPT"],["Pfam%3APF24856","L-arabinose isomerase central domain"],["Pfam%3APF02610","L-arabinose isomerase N-terminal domain"],["Pfam%3APF11762","L-arabinose isomerase C-terminal domain"],["Pfam%3APF17727","CtsR C-terminal dimerization domain"]]},{"id":"NCBITaxon:1085","l":"Rhodospirillum rubrum","na":19,"nb":4,"a":[["biofilm-envo-00002034.html","biofilm"],["brackish-water-body-envo-01001321.html","brackish water body"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["liquid-water-envo-00002006.html","liquid water"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["river-envo-00000022.html","river"]],"b":[["Pfam%3APF00556","Antenna complex alpha/beta subunit"],["Pfam%3APF09527","Putative F0F1-ATPase subunit Ca2+/Mg2+ transporter"],["Pfam%3APF07357","Dinitrogenase reductase ADP-ribosyltransferase (DRAT)"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"]]},{"id":"NCBITaxon:169963","l":"Listeria monocytogenes serovar 1/2a (strain ATCC BAA-679 / EGD-e)","na":4,"nb":18,"a":[["brain-bto-0000142.html","brain"],["heart-bto-0000562.html","heart"],["macrophage-cell-line-bto-0002278.html","macrophage cell line"],["p-388d1-cell-bto-0000984.html","P-388D1 cell"]],"b":[["Pfam%3APF17936","Bacterial Ig domain"],["Pfam%3APF06778","Chlorite dismutase"],["Pfam%3APF05737","Collagen binding domain"],["Pfam%3APF09479","Listeria-Bacteroides repeat domain (List_Bact_rpt)"],["Pfam%3APF13457","GW (Gly-Tryp) dipeptide domain"],["Pfam%3APF08858","IDEAL domain"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":4,"nb":16,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF28265","Lipoprotein N-acylation protein LnsA-like"],["Pfam%3APF16403","Bacterial surface protein, Ig-like domain"],["Pfam%3APF03944","delta endotoxin"],["Pfam%3APF03945","delta endotoxin, N-terminal domain"],["Pfam%3APF06355","Aegerolysin"]]},{"id":"NCBITaxon:28214","l":"Sphingomonas sp.","na":16,"nb":4,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["air-conditioning-unit-envo-00002874.html","air conditioning unit"],["laboratory-facility-envo-01001406.html","laboratory facility"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["Pfam%3APF11723","Homotrimeric ring hydroxylase"],["Pfam%3APF07364","Metallopeptidase family M81"],["TED%3AAF-A0A525HJK0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A525HJK0-F1-model_v4_TED02"],["TED%3AAF-A0A520ITV0-F1-model_v4_TED02","TED novel fold AF-A0A520ITV0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1302","l":"Streptococcus gordonii","na":4,"nb":13,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["dental-plaque-uberon-0016482.html","dental plaque"],["archeological-site-envo-00000564.html","archeological site"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Pfam%3APF18652","Adhesin P1 N-terminal domain"],["Pfam%3APF17998","Cell surface antigen I/II C2 terminal domain"],["Pfam%3APF16364","Cell surface antigen C-terminus"],["Pfam%3APF18938","Atypical Rib domain"],["Pfam%3APF08759","Glycosyltransferase GT-D fold"],["Pfam%3APF22145","GtfA extended beta-sheet domain"]]},{"id":"NCBITaxon:238","l":"Elizabethkingia meningoseptica","na":10,"nb":4,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["pond-water-envo-00002228.html","pond water"],["small-river-biome-envo-00000890.html","small river biome"],["bronchus-uberon-0002185.html","bronchus"],["midgut-bto-0000863.html","midgut"],["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["Pfam%3APF21252","Glycosyl hydrolase 109, C-terminal domain"],["Pfam%3APF26305","cGAS/DncV-like nucleotidyltransferase C-terminal helical domain"],["PROSITE%3APS00743","Beta-lactamases class B signature 1"],["PROSITE%3APS00744","Beta-lactamases class B signature 2"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":8,"nb":4,"a":[["groundwater-envo-01001004.html","groundwater"],["bioreactor-envo-00002123.html","bioreactor"],["river-envo-00000022.html","river"],["freshwater-environment-envo-01000306.html","freshwater environment"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["TED%3AAF-A0A7W3UB61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W3UB61-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F4B3-F1-model_v4_TED01","TED novel fold AF-A0A0D7F4B3-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F6R4-F1-model_v4_TED01","TED novel fold AF-A0A0D7F6R4-F1-model_v4_TED01"],["TED%3AAF-A0A7W3YI15-F1-model_v4_TED02","TED novel fold AF-A0A7W3YI15-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":8,"nb":4,"a":[["reservoir-envo-00000025.html","reservoir"],["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["secretion-bto-0002979.html","secretion"],["stomach-bto-0001307.html","stomach"]],"b":[["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF09711","CRISPR-associated protein (Cas_Csn2)"],["Pfam%3APF06308","23S rRNA methylastransferase leader peptide (ErmCL)"]]},{"id":"NCBITaxon:1505","l":"Paraclostridium sordellii","na":8,"nb":4,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["animal-house-envo-00003040.html","animal house"],["animal-litter-envo-00002191.html","animal litter"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["mud-envo-01000001.html","mud"]],"b":[["Pfam%3APF13859","BNR repeat-like domain"],["Pfam%3APF01473","Putative cell wall binding repeat"],["Pfam%3APF19127","Choline-binding repeat"],["TED%3AAF-A0A822PVZ2-F1-model_v4_TED01","TED novel fold AF-A0A822PVZ2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":8,"nb":4,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"],["TED%3AAF-A0A085UKV7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085UKV7-F1-model_v4_TED01"],["TED%3AAF-A0A4R6IU28-F1-model_v4_TED02","TED novel fold AF-A0A4R6IU28-F1-model_v4_TED02"]]},{"id":"NCBITaxon:51671","l":"Microbacterium sp.","na":8,"nb":4,"a":[["marine-water-body-envo-00001999.html","marine water body"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"]],"b":[["Pfam%3APF19906","C-glycoside deglycosidase beta subunit"],["TED%3AAF-A0A349CW39-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349CW39-F1-model_v4_TED01"],["TED%3AAF-A0A2W6V981-F1-model_v4_TED01","TED novel fold AF-A0A2W6V981-F1-model_v4_TED01"],["TED%3AAF-A0A3D4PQL1-F1-model_v4_TED01","TED novel fold AF-A0A3D4PQL1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:438753","l":"Azorhizobium caulinodans ORS 571","na":7,"nb":4,"a":[["bacteroid-bto-0000109.html","bacteroid"],["free-living-state-bto-0001551.html","free-living state"],["lateral-root-bto-0005441.html","lateral root"],["rootlet-bto-0001192.html","rootlet"],["seedling-bto-0001228.html","seedling"],["stem-nodule-bto-0001816.html","stem nodule"]],"b":[["Pfam%3APF27389","AZC_3924"],["Pfam%3APF09663","Amidohydrolase ring-opening protein (Amido_AtzD_TrzD)"],["PROSITE%3APS01349","Nodulation protein nodA signature"],["PROSITE%3APS00647","Thymidine and pyrimidine-nucleoside phosphorylases signature"]]},{"id":"NCBITaxon:53249","l":"","na":4,"nb":7,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["aquaculture-farm-envo-03600074.html","aquaculture farm"],["fumarole-envo-00000216.html","fumarole"]],"b":[["Pfam%3APF25291","Lambda-carrageenase C-terminal domain"],["Pfam%3APF25290","Lambda-carrageenase middle domain"],["Pfam%3APF17396","Domain of unknown function (DUF1611_N) Rossmann-like domain"],["Pfam%3APF07755","Domain of unknown function (DUF1611_C) P-loop domain"],["Pfam%3APF25292","Lambda-carrageenase beta-propeller domain"],["TED%3AAF-A0A2D5T282-F1-model_v4_TED01","TED novel fold AF-A0A2D5T282-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1079","l":"Blastochloris viridis","na":6,"nb":4,"a":[["fresh-water-envo-00002011.html","fresh water"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["Pfam%3APF00556","Antenna complex alpha/beta subunit"],["Pfam%3APF02276","Photosynthetic reaction centre cytochrome C subunit"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["TED%3AAF-A0A0H5BDG4-F1-model_v4_TED01","TED novel fold AF-A0A0H5BDG4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1306","l":"Streptococcus sp.","na":4,"nb":6,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["co-culture-habitatmech-bacdive-ff945d8a69.html","Co-culture"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["TED%3AAF-A0A496KVG3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A496KVG3-F1-model_v4_TED02"],["TED%3AAF-A0A496KCG7-F1-model_v4_TED01","TED novel fold AF-A0A496KCG7-F1-model_v4_TED01"],["TED%3AAF-A0A496L3I5-F1-model_v4_TED01","TED novel fold AF-A0A496L3I5-F1-model_v4_TED01"],["TED%3AAF-A0A496LB14-F1-model_v4_TED02","TED novel fold AF-A0A496LB14-F1-model_v4_TED02"],["TED%3AAF-A0A496M1E6-F1-model_v4_TED02","TED novel fold AF-A0A496M1E6-F1-model_v4_TED02"],["TED%3AAF-A0A496M2R1-F1-model_v4_TED06","TED novel fold AF-A0A496M2R1-F1-model_v4_TED06"]]},{"id":"NCBITaxon:1311","l":"Streptococcus agalactiae","na":6,"nb":4,"a":[["kidney-bto-0000671.html","kidney"],["milk-uberon-0001913.html","milk"],["oropharynx-bto-0005257.html","oropharynx"],["urine-bto-0001419.html","urine"],["urogenital-system-bto-0003091.html","urogenital system"],["vagina-bto-0000243.html","vagina"]],"b":[["Pfam%3APF19567","Capsular polysaccharide synthesis, CpsB/CapC"],["Pfam%3APF16828","GAG-binding domain on surface antigen"],["Pfam%3APF27244","GtfB middle domain"],["Pfam%3APF07373","CAMP factor (Cfa)"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":4,"nb":6,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["carcass-envo-00002033.html","carcass"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["sludge-envo-00002044.html","sludge"]],"b":[["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF03744","6-carboxyhexanoate--CoA ligase"],["PROSITE%3APS00836","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 1"],["PROSITE%3APS00837","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 2"],["TED%3AAF-A0A2S5D092-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5D092-F1-model_v4_TED01"],["TED%3AAF-A0A2S0JW09-F1-model_v4_TED01","TED novel fold AF-A0A2S0JW09-F1-model_v4_TED01"]]},{"id":"NCBITaxon:388919","l":"","na":4,"nb":6,"a":[["buccal-mucosa-bto-0003833.html","buccal mucosa"],["dental-plaque-bto-0000338.html","dental plaque"],["pharyngeal-mucosa-bto-0001047.html","pharyngeal mucosa"],["pharynx-bto-0001049.html","pharynx"]],"b":[["Pfam%3APF20921","Domain of unknown function DUF1846, C-terminal"],["Pfam%3APF08903","Domain of unknown function DUF1846, N-terminal"],["Pfam%3APF03186","CobD/Cbib protein"],["Pfam%3APF08503","Tetrahydrodipicolinate succinyltransferase N-terminal"],["Pfam%3APF06949","Protein of unknown function (DUF1292)"],["Pfam%3APF06160","Septation ring formation regulator, EzrA"]]},{"id":"NCBITaxon:1366","l":"Pseudolactococcus raffinolactis","na":4,"nb":5,"a":[["animal-house-envo-00003040.html","animal house"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["TED%3AAF-A0A5R9CHM3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5R9CHM3-F1-model_v4_TED02"],["TED%3AAF-A0A6H0UIE5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6H0UIE5-F1-model_v4_TED01"],["TED%3AAF-A0A6H0UK30-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6H0UK30-F1-model_v4_TED01"],["TED%3AAF-A0A6H0URM1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6H0URM1-F1-model_v4_TED02"],["TED%3AAF-A0A6H0UGG1-F1-model_v4_TED06","TED novel fold AF-A0A6H0UGG1-F1-model_v4_TED06"]]},{"id":"NCBITaxon:1411316","l":"Pedobacter sp.","na":5,"nb":4,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["TED%3AAF-A0A520IH20-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A520IH20-F1-model_v4_TED02"],["TED%3AAF-A0A519VYD0-F1-model_v4_TED02","TED novel fold AF-A0A519VYD0-F1-model_v4_TED02"],["TED%3AAF-A0A520CAS2-F1-model_v4_TED01","TED novel fold AF-A0A520CAS2-F1-model_v4_TED01"],["TED%3AAF-A0A520GU64-F1-model_v4_TED01","TED novel fold AF-A0A520GU64-F1-model_v4_TED01"]]},{"id":"NCBITaxon:195","l":"Campylobacter coli","na":4,"nb":5,"a":[["feces-uberon-0001988.html","feces"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["PROSITE%3APS00100","Chloramphenicol acetyltransferase active site"],["TED%3AAF-A0A697DVN1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A697DVN1-F1-model_v4_TED01"],["TED%3AAF-A0A5T0YXG5-F1-model_v4_TED02","TED novel fold AF-A0A5T0YXG5-F1-model_v4_TED02"],["TED%3AAF-A0A825MHY8-F1-model_v4_TED03","TED novel fold AF-A0A825MHY8-F1-model_v4_TED03"],["TED%3AAF-A0A828DMV9-F1-model_v4_TED01","TED novel fold AF-A0A828DMV9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:305","l":"Ralstonia solanacearum","na":4,"nb":5,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"],["pseudostem-bto-0005992.html","pseudostem"],["xylem-bto-0001468.html","xylem"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["Pfam%3APF14897","EpsG family"],["TED%3AAF-A0A7I8FQZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7I8FQZ6-F1-model_v4_TED01"],["TED%3AAF-A0A7H1MI34-F1-model_v4_TED01","TED novel fold AF-A0A7H1MI34-F1-model_v4_TED01"],["TED%3AAF-A0A7I8FKL4-F1-model_v4_TED01","TED novel fold AF-A0A7I8FKL4-F1-model_v4_TED01"],["TED%3AAF-A0A850FKB0-F1-model_v4_TED01","TED novel fold AF-A0A850FKB0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":5,"nb":4,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"],["feces-uberon-0001988.html","feces"],["rectum-bto-0001158.html","rectum"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["Pfam%3APF01375","Heat-labile enterotoxin alpha chain"],["Pfam%3APF09101","Exotoxin A binding"],["Pfam%3APF09009","Exotoxin A catalytic"],["Pfam%3APF09102","Exotoxin A, targeting"]]},{"id":"NCBITaxon:378806","l":"Stigmatella aurantiaca DW4/3-1","na":4,"nb":4,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["orchard-envo-00000115.html","orchard"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-Q098I8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q098I8-F1-model_v4_TED01"],["TED%3AAF-E3FRW3-F1-model_v4_TED01","TED novel fold AF-E3FRW3-F1-model_v4_TED01"],["TED%3AAF-E3G0M4-F1-model_v4_TED01","TED novel fold AF-E3G0M4-F1-model_v4_TED01"],["TED%3AAF-Q08VS7-F1-model_v4_TED01","TED novel fold AF-Q08VS7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:83449","l":"Cystobacter ferrugineus","na":4,"nb":4,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["wood-bto-0005516.html","wood"],["sand-envo-01000017.html","sand"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-A0A1L9B4M1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L9B4M1-F1-model_v4_TED01"],["TED%3AAF-A0A1L9B5W1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L9B5W1-F1-model_v4_TED01"],["TED%3AAF-A0A1L9BCS8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L9BCS8-F1-model_v4_TED01"],["TED%3AAF-A0A1L9BDA4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1L9BDA4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:85698","l":"Achromobacter xylosoxidans","na":4,"nb":4,"a":[["hospital-envo-00002173.html","hospital"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["Pfam%3APF25975","CzcB C-terminal circularly permuted SH3-like domain"],["Pfam%3APF17524","Anti-sigma factor CnrY"],["Pfam%3APF10778","Halocarboxylic acid dehydrogenase DehI"],["TED%3AAF-A0A1R1JVF9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1R1JVF9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":3,"nb":49554,"a":[["city-envo-00000856.html","city"],["cold-environment-envo-01000309.html","cold environment"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["EC%3A1.1.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.1.98.-","With other, known, acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":27,"nb":3,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["watercourse-envo-00000029.html","watercourse"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["egg-food-product-foodon-00001274.html","egg food product"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"]],"b":[["Pfam%3APF14864","Alkyl sulfatase C-terminal"],["Pfam%3APF13816","Haem-containing dehydratase"],["Pfam%3APF14863","Alkyl sulfatase dimerisation"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":25,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-water-body-envo-00001999.html","marine water body"],["sea-water-envo-00002149.html","sea water"],["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF08130","Type A lantibiotic family"],["Pfam%3APF04738","Lantibiotic dehydratase, N terminus"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":3,"nb":19,"a":[["milk-uberon-0001913.html","milk"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["Pfam%3APF03306","Alpha-acetolactate decarboxylase"],["Pfam%3APF22208","Cas_Csm6 CARF domain"],["Pfam%3APF09659","Cas_Csm6 HEPN domain"],["Pfam%3APF22335","Cas10/Cmr2, second palm domain"],["Pfam%3APF18395","Cas3 C-terminal domain"],["Pfam%3APF18019","Cas3, HD domain"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":17,"nb":3,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["fruit-bto-0000486.html","fruit"],["leaf-po-0025034.html","leaf"],["rhizosphere-envo-00005801.html","rhizosphere"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["Pfam%3APF03423","Carbohydrate binding domain (family 25)"],["Pfam%3APF03422","Carbohydrate binding module (family 6)"],["TED%3AAF-A0A7X5SGP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X5SGP7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:243161","l":"Chlamydia muridarum (strain MoPn / Nigg)","na":3,"nb":16,"a":[["cervical-adenocarcinoma-cell-bto-0003165.html","cervical adenocarcinoma cell"],["fibroblast-bto-0000452.html","fibroblast"],["hela-229-cell-bto-0005030.html","HeLa-229 cell"]],"b":[["Pfam%3APF07382","Histone H1-like nucleoprotein HC2"],["Pfam%3APF05475","Pgp3 C-terminal domain"],["Pfam%3APF07577","Domain of Unknown Function (DUF1547)"],["Pfam%3APF05745","Chlamydia 15 kDa cysteine-rich outer membrane protein (CRPA)"],["Pfam%3APF28261","Uncharacterized protein CT_504-like"],["Pfam%3APF17435","CT_584-like"]]},{"id":"NCBITaxon:29158","l":"Mytilus galloprovincialis","na":3,"nb":13,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["Pfam%3APF01097","Arthropod defensin"],["TED%3AAF-A0A8B6CBP4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B6CBP4-F1-model_v4_TED01"],["TED%3AAF-A0A8B6CUV9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A8B6CUV9-F1-model_v4_TED03"],["TED%3AAF-A0A8B6EJL3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A8B6EJL3-F1-model_v4_TED03"],["TED%3AAF-A0A8B6EMQ1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B6EMQ1-F1-model_v4_TED01"],["TED%3AAF-A0A8B6GYA1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B6GYA1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":3,"nb":11,"a":[["bile-bto-0000121.html","bile"],["rectum-bto-0001158.html","rectum"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["Pfam%3APF22829","HphA C-terminal domain"],["Pfam%3APF22828","HphA N-terminal heme-binding domain"],["Pfam%3APF28205","Ciprofloxacin tolerance protein"],["Pfam%3APF19582","Solute-binding protein AdeT 1/2"],["PROSITE%3APS00337","Beta-lactamase class-D active site"],["Pfam%3APF24575","Surface lipoprotein assembly modifier, N-terminal TPR repeats"]]},{"id":"NCBITaxon:1506","l":"Clostridium sp.","na":10,"nb":3,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["animal-waste-material-envo-00002276.html","animal waste material"],["laboratory-facility-envo-01001406.html","laboratory facility"],["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["TED%3AAF-A0A3D5KI35-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D5KI35-F1-model_v4_TED01"],["TED%3AAF-A0A316SA98-F1-model_v4_TED01","TED novel fold AF-A0A316SA98-F1-model_v4_TED01"],["TED%3AAF-A0A3B9UYE3-F1-model_v4_TED01","TED novel fold AF-A0A3B9UYE3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":3,"nb":10,"a":[["liquid-water-envo-00002006.html","liquid water"],["sludge-envo-00002044.html","sludge"],["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF09081","Glucan 1,4-alpha-maltotetraohydrolase, domain C"],["Pfam%3APF09459","Ethylbenzene dehydrogenase"],["Pfam%3APF08406","CbbQ/NirQ/NorQ C-terminal"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"],["Pfam%3APF18793","Nitrous oxide reductase propeller repeat 2"]]},{"id":"NCBITaxon:6238","l":"Caenorhabditis briggsae","na":3,"nb":10,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"],["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["Pfam%3APF09287","CEP-1, DNA binding"],["Pfam%3APF22073","Cep192 domain 4"],["Pfam%3APF15481","Chondroitin proteoglycan 4"],["Pfam%3APF13358","DDE superfamily endonuclease"],["Pfam%3APF10326","Serpentine type 7TM GPCR chemoreceptor Str"],["Pfam%3APF17266","Family of unknown function (DUF5332)"]]},{"id":"NCBITaxon:1639","l":"Listeria monocytogenes","na":9,"nb":3,"a":[["liquid-water-envo-00002006.html","liquid water"],["brain-bto-0000142.html","brain"],["central-nervous-system-bto-0000227.html","central nervous system"],["fruit-bto-0000486.html","fruit"],["placenta-bto-0001078.html","placenta"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["TED%3AAF-A0A6Z1JB74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6Z1JB74-F1-model_v4_TED01"],["TED%3AAF-A0A5Z1VYX2-F1-model_v4_TED01","TED novel fold AF-A0A5Z1VYX2-F1-model_v4_TED01"],["TED%3AAF-A0A823IT06-F1-model_v4_TED02","TED novel fold AF-A0A823IT06-F1-model_v4_TED02"]]},{"id":"NCBITaxon:121845","l":"Diaphorina citri","na":8,"nb":3,"a":[["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["stream-envo-00000023.html","stream"],["animal-house-envo-00003040.html","animal house"],["biome-envo-00000428.html","biome"]],"b":[["TED%3AAF-A0A3Q0J3L1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3Q0J3L1-F1-model_v4_TED03"],["TED%3AAF-A0A3Q0JAD0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3Q0JAD0-F1-model_v4_TED01"],["TED%3AAF-A0A1S4EQL6-F1-model_v4_TED01","TED novel fold AF-A0A1S4EQL6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1359","l":"Lactococcus cremoris","na":3,"nb":8,"a":[["b-lymphocyte-bto-0000776.html","B-lymphocyte"],["peripheral-blood-mononuclear-cell-bto-0001025.html","peripheral blood mononuclear cell"],["spleen-bto-0001281.html","spleen"]],"b":[["Pfam%3APF16873","Putative abortive phage resistance protein AbiGii toxin"],["Pfam%3APF21368","AI2M/AI1M-like, HNH endonuclease"],["Pfam%3APF09136","Glucodextranase, domain B"],["Pfam%3APF10899","Putative abortive phage resistance protein AbiGi, antitoxin"],["Pfam%3APF04556","DpnII restriction endonuclease"],["Pfam%3APF04369","Lactococcin-like family"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK1622","na":3,"nb":8,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["Pfam%3APF27281","DevT C-terminal domain"],["Pfam%3APF27372","DevT N-terminal domain"],["Pfam%3APF17762","ParB HTH domain"],["Pfam%3APF01930","Domain of unknown function DUF83"],["Pfam%3APF09559","Cas6 Crispr"],["Pfam%3APF01905","CRISPR-associated negative auto-regulator DevR/Csa2"]]},{"id":"NCBITaxon:292800","l":"Flavonifractor plautii","na":3,"nb":8,"a":[["goblet-cell-bto-0001540.html","goblet cell"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["secretion-bto-0002979.html","secretion"]],"b":[["TED%3AAF-A0A6I2QXD7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I2QXD7-F1-model_v4_TED01"],["TED%3AAF-A0A6I2R9U0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I2R9U0-F1-model_v4_TED01"],["TED%3AAF-A0A6I7GJ83-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6I7GJ83-F1-model_v4_TED02"],["TED%3AAF-A0A174L5D2-F1-model_v4_TED02","TED novel fold AF-A0A174L5D2-F1-model_v4_TED02"],["TED%3AAF-A0A6I2R566-F1-model_v4_TED01","TED novel fold AF-A0A6I2R566-F1-model_v4_TED01"],["TED%3AAF-A0A6I2R5K9-F1-model_v4_TED01","TED novel fold AF-A0A6I2R5K9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:33038","l":"Mediterraneibacter gnavus","na":8,"nb":3,"a":[["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["juvenile-bto-0002168.html","juvenile"],["animal-litter-envo-00002191.html","animal litter"]],"b":[["Pfam%3APF16874","Glycosyl hydrolase family 36 C-terminal domain"],["Pfam%3APF16875","Glycosyl hydrolase family 36 N-terminal domain"],["Pfam%3APF04604","Type-A lantibiotic"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":8,"nb":3,"a":[["beach-envo-00000091.html","beach"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["sea-sand-envo-00002118.html","sea sand"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF22277","EncFtn-like"],["TED%3AAF-D0LJ11-F1-model_v4_TED04","TED highly-symmetric fold AF-D0LJ11-F1-model_v4_TED04"]]},{"id":"NCBITaxon:7159","l":"Aedes aegypti","na":3,"nb":8,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["tropical-envo-01000204.html","tropical"],["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["IDPO%3A0000004","pre-molten globule"],["Pfam%3APF25001","Aegyptin, C-terminal domain"],["Pfam%3APF01097","Arthropod defensin"],["Pfam%3APF15957","Commissureless"],["Pfam%3APF23757","Insect HPS5 TPR domain"],["TED%3AAF-Q0IGF9-F1-model_v4_TED01","TED highly-symmetric fold AF-Q0IGF9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":7,"nb":3,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["farm-envo-00000078.html","farm"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["Pfam%3APF05258","Dna[CI] antecedent, DciA"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"],["TED%3AAF-Q0RZW9-F1-model_v4_TED03","TED highly-symmetric fold AF-Q0RZW9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1307","l":"Streptococcus suis","na":3,"nb":6,"a":[["monocyte-bto-0000876.html","monocyte"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["tonsil-bto-0001387.html","tonsil"]],"b":[["TED%3AAF-A0A0Z8XA17-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0Z8XA17-F1-model_v4_TED02"],["TED%3AAF-A0A116R309-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A116R309-F1-model_v4_TED02"],["TED%3AAF-A0A3R8SIF2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R8SIF2-F1-model_v4_TED01"],["TED%3AAF-A0A0Z8H9E5-F1-model_v4_TED02","TED novel fold AF-A0A0Z8H9E5-F1-model_v4_TED02"],["TED%3AAF-A0A4T2GPV6-F1-model_v4_TED02","TED novel fold AF-A0A4T2GPV6-F1-model_v4_TED02"],["TED%3AAF-A0A7G1JVZ6-F1-model_v4_TED02","TED novel fold AF-A0A7G1JVZ6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1624","l":"Ligilactobacillus salivarius","na":6,"nb":3,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["trachea-bto-0001388.html","trachea"],["animal-litter-envo-00002191.html","animal litter"],["intestine-environment-envo-2100002.html","intestine environment"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["TED%3AAF-A0A7X2SS58-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X2SS58-F1-model_v4_TED01"],["TED%3AAF-A0A089QBS8-F1-model_v4_TED02","TED novel fold AF-A0A089QBS8-F1-model_v4_TED02"],["TED%3AAF-A0A2A2XCA8-F1-model_v4_TED01","TED novel fold AF-A0A2A2XCA8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:243365","l":"Chromobacterium violaceum ATCC 12472","na":6,"nb":3,"a":[["acute-lymphoblastic-leukemia-cell-bto-0000731.html","acute lymphoblastic leukemia cell"],["adrenal-gland-bto-0000047.html","adrenal gland"],["eosinophil-bto-0000399.html","eosinophil"],["lymphocyte-bto-0000775.html","lymphocyte"],["neutrophil-bto-0000130.html","neutrophil"],["peripheral-blood-bto-0000553.html","peripheral blood"]],"b":[["Pfam%3APF17074","Darcynin, domain of unknown function"],["Pfam%3APF12902","Ferritin-like"],["Pfam%3APF06314","Acetoacetate decarboxylase (ADC)"]]},{"id":"NCBITaxon:253","l":"Chryseobacterium indologenes","na":6,"nb":3,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["seedling-bto-0001228.html","seedling"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["tropical-envo-01000204.html","tropical"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["PROSITE%3APS00744","Beta-lactamases class B signature 2"],["TED%3AAF-A0A7T8U7T3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T8U7T3-F1-model_v4_TED01"],["TED%3AAF-A0A0N0ZUI2-F1-model_v4_TED01","TED novel fold AF-A0A0N0ZUI2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:399742","l":"Enterobacter sp. (strain 638)","na":3,"nb":6,"a":[["vasculature-uberon-0002049.html","vasculature"],["part-of-plant-habitatmech-madin-25325947e2.html","part of plant"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Pfam%3APF12404","Peptidase"],["Pfam%3APF27465","DNA-binding protein Fis N-terminal domain"],["Pfam%3APF02300","Fumarate reductase subunit C"],["Pfam%3APF04102","SlyX"],["Pfam%3APF06005","ZapB family"],["Pfam%3APF07208","Protein of unknown function (DUF1414)"]]},{"id":"NCBITaxon:1514140","l":"Trieres chinensis","na":3,"nb":5,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["estuarine-biome-envo-01000020.html","estuarine biome"],["shoreline-envo-00000486.html","shoreline"]],"b":[["TED%3AAF-A0A7S1YW68-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1YW68-F1-model_v4_TED01"],["TED%3AAF-A0A7S1Z4Z7-F1-model_v4_TED01","TED novel fold AF-A0A7S1Z4Z7-F1-model_v4_TED01"],["TED%3AAF-A0A7S1ZAT3-F1-model_v4_TED03","TED novel fold AF-A0A7S1ZAT3-F1-model_v4_TED03"],["TED%3AAF-A0A7S2A6A9-F1-model_v4_TED02","TED novel fold AF-A0A7S2A6A9-F1-model_v4_TED02"],["TED%3AAF-A0A7S2A7V0-F1-model_v4_TED02","TED novel fold AF-A0A7S2A7V0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1833","l":"Rhodococcus erythropolis","na":3,"nb":5,"a":[["watercourse-envo-00000029.html","watercourse"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"],["water-scum-envo-00005794.html","water scum"]],"b":[["Pfam%3APF08028","Acyl-CoA dehydrogenase, C-terminal domain"],["Pfam%3APF13816","Haem-containing dehydratase"],["Pfam%3APF07858","Limonene-1,2-epoxide hydrolase catalytic domain"],["Pfam%3APF09663","Amidohydrolase ring-opening protein (Amido_AtzD_TrzD)"],["TED%3AAF-A0A401N7F7-F1-model_v4_TED02","TED novel fold AF-A0A401N7F7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:68886","l":"Theileria orientalis","na":5,"nb":3,"a":[["erythrocyte-bto-0000424.html","erythrocyte"],["leukocyte-bto-0000751.html","leukocyte"],["lymphocyte-bto-0000775.html","lymphocyte"],["macrophage-bto-0000801.html","macrophage"],["monocyte-bto-0000876.html","monocyte"]],"b":[["TED%3AAF-A0A2T7I0Y7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2T7I0Y7-F1-model_v4_TED02"],["TED%3AAF-A0A2T7ITL4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T7ITL4-F1-model_v4_TED01"],["TED%3AAF-A0A2T7IKV1-F1-model_v4_TED01","TED novel fold AF-A0A2T7IKV1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:813","l":"Chlamydia trachomatis","na":3,"nb":5,"a":[["conjunctiva-bto-0003415.html","conjunctiva"],["epithelial-cell-bto-0000414.html","epithelial cell"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["Pfam%3APF07382","Histone H1-like nucleoprotein HC2"],["Pfam%3APF01308","Chlamydia major outer membrane protein"],["Pfam%3APF05475","Pgp3 C-terminal domain"],["Pfam%3APF03504","Chlamydia cysteine-rich outer membrane protein 6"],["TED%3AAF-C7DZ76-F1-model_v4_TED01","TED novel fold AF-C7DZ76-F1-model_v4_TED01"]]},{"id":"NCBITaxon:95486","l":"Burkholderia cenocepacia","na":5,"nb":3,"a":[["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["TED%3AAF-A0A109EHZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A109EHZ6-F1-model_v4_TED01"],["TED%3AAF-A0A071M3L2-F1-model_v4_TED01","TED novel fold AF-A0A071M3L2-F1-model_v4_TED01"],["TED%3AAF-A0A088UYL8-F1-model_v4_TED01","TED novel fold AF-A0A088UYL8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1451","l":"Paenibacillus amylolyticus","na":3,"nb":4,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["Pfam%3APF03211","Pectate lyase"],["TED%3AAF-A0A117I1X0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A117I1X0-F1-model_v4_TED01"],["TED%3AAF-A0A1R1DDF3-F1-model_v4_TED01","TED novel fold AF-A0A1R1DDF3-F1-model_v4_TED01"],["TED%3AAF-A0A4V3B7H8-F1-model_v4_TED01","TED novel fold AF-A0A4V3B7H8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1587","l":"Lactobacillus helveticus","na":4,"nb":3,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["intestine-environment-envo-2100002.html","intestine environment"],["urban-biome-envo-01000249.html","urban biome"],["harbour-envo-00000463.html","harbour"]],"b":[["Pfam%3APF18008","Replication initiator protein A C-terminal domain"],["Pfam%3APF20956","Domain of unknown function (DUF4931) C-terminal domain"],["Pfam%3APF17312","Bacteriocin helveticin-J"]]},{"id":"NCBITaxon:203122","l":"Saccharophagus degradans 2-40","na":4,"nb":3,"a":[["intertidal-zone-envo-00000316.html","intertidal zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["saline-marsh-envo-00000054.html","saline marsh"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["Pfam%3APF22686","Exo-oligoalginate lyase-like, C-terminal domain"],["Pfam%3APF07940","Heparinase II/III-like, C-terminal"],["Pfam%3APF05426","Alginate lyase"]]},{"id":"NCBITaxon:243090","l":"Rhodopirellula baltica SH 1","na":4,"nb":3,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["oligotrophic-water-envo-00002223.html","oligotrophic water"],["pond-water-envo-00002228.html","pond water"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["Pfam%3APF02601","Exonuclease VII, large subunit"],["TED%3AAF-Q7UU79-F1-model_v4_TED04","TED highly-symmetric fold AF-Q7UU79-F1-model_v4_TED04"],["TED%3AAF-Q7USE8-F1-model_v4_TED02","TED novel fold AF-Q7USE8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:28037","l":"Streptococcus mitis","na":3,"nb":4,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["archeological-site-envo-00000564.html","archeological site"],["tropical-envo-01000204.html","tropical"]],"b":[["Pfam%3APF03047","COMC family"],["TED%3AAF-A0A1X1L9U5-F1-model_v4_TED02","TED novel fold AF-A0A1X1L9U5-F1-model_v4_TED02"],["TED%3AAF-A0A428B8X0-F1-model_v4_TED01","TED novel fold AF-A0A428B8X0-F1-model_v4_TED01"],["TED%3AAF-A0A6L5H4V3-F1-model_v4_TED03","TED novel fold AF-A0A6L5H4V3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:28447","l":"Clavibacter michiganensis","na":3,"nb":4,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["canker-habitatmech-bacdive-0f078d72a7.html","Canker"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["TED%3AAF-A0A251YC11-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A251YC11-F1-model_v4_TED02"],["TED%3AAF-A0A2S5VA57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5VA57-F1-model_v4_TED01"],["TED%3AAF-A0A2S5VJK2-F1-model_v4_TED01","TED novel fold AF-A0A2S5VJK2-F1-model_v4_TED01"],["TED%3AAF-A0A399NHQ8-F1-model_v4_TED01","TED novel fold AF-A0A399NHQ8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:290398","l":"","na":3,"nb":4,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["saline-evaporation-pond-envo-00000055.html","saline evaporation pond"],["joint-bto-0001686.html","joint"]],"b":[["Pfam%3APF20629","D-galactarate/Altronate dehydratase, C-terminal"],["Pfam%3APF04295","D-galactarate dehydratase/Altronate hydrolase, second domain"],["Pfam%3APF11982","Domain of unknown function (DUF3483)"],["PROSITE%3APS00908","Mandelate racemase / muconate lactonizing enzyme family signature 1"]]},{"id":"NCBITaxon:29159","l":"Crassostrea gigas","na":3,"nb":4,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["Pfam%3APF22494","Choice-of-anchor I domain"],["TED%3AAF-K1PYR0-F1-model_v4_TED01","TED novel fold AF-K1PYR0-F1-model_v4_TED01"],["TED%3AAF-K1Q3N2-F1-model_v4_TED01","TED novel fold AF-K1Q3N2-F1-model_v4_TED01"],["TED%3AAF-K1RG39-F1-model_v4_TED01","TED novel fold AF-K1RG39-F1-model_v4_TED01"]]},{"id":"NCBITaxon:404589","l":"","na":3,"nb":4,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["TED%3AAF-A7H7H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A7H7H4-F1-model_v4_TED01"],["TED%3AAF-A7H7U8-F1-model_v4_TED01","TED highly-symmetric fold AF-A7H7U8-F1-model_v4_TED01"],["TED%3AAF-A7HAV5-F1-model_v4_TED01","TED novel fold AF-A7HAV5-F1-model_v4_TED01"],["TED%3AAF-A7HE89-F1-model_v4_TED01","TED novel fold AF-A7HE89-F1-model_v4_TED01"]]},{"id":"NCBITaxon:45351","l":"Nematostella vectensis","na":4,"nb":3,"a":[["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["microbial-mat-material-envo-01000157.html","microbial mat material"],["slope-envo-00002000.html","slope"]],"b":[["Pfam%3APF14777","Cilia BBSome complex subunit 10"],["TED%3AAF-A7SVA7-F1-model_v4_TED01","TED highly-symmetric fold AF-A7SVA7-F1-model_v4_TED01"],["TED%3AAF-A7SXG3-F1-model_v4_TED02","TED novel fold AF-A7SXG3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:50741","l":"Marinobacter sp.","na":3,"nb":4,"a":[["marine-water-body-envo-00001999.html","marine water body"],["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["TED%3AAF-A0A2D9LBV8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9LBV8-F1-model_v4_TED01"],["TED%3AAF-A0A2D7X1D2-F1-model_v4_TED01","TED novel fold AF-A0A2D7X1D2-F1-model_v4_TED01"],["TED%3AAF-A0A2E8AEX3-F1-model_v4_TED02","TED novel fold AF-A0A2E8AEX3-F1-model_v4_TED02"],["TED%3AAF-A0A3D5Q8H2-F1-model_v4_TED01","TED novel fold AF-A0A3D5Q8H2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1260","l":"Finegoldia magna","na":3,"nb":3,"a":[["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["Pfam%3APF17573","GA-like domain"],["Pfam%3APF18656","Family of unknown function (DUF5633)"],["TED%3AAF-A0A233W4R0-F1-model_v4_TED01","TED novel fold AF-A0A233W4R0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1492","l":"Clostridium butyricum","na":3,"nb":3,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["intestine-environment-envo-2100002.html","intestine environment"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["Pfam%3APF00302","Chloramphenicol acetyltransferase"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["PROSITE%3APS00100","Chloramphenicol acetyltransferase active site"]]},{"id":"NCBITaxon:1717","l":"Corynebacterium diphtheriae","na":3,"nb":3,"a":[["foot-bto-0000476.html","foot"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["Pfam%3APF08051","Erythromycin resistance leader peptide"],["PROSITE%3APS01007","Transposases, Mutator family, signature"],["TED%3AAF-A0A811G0F8-F1-model_v4_TED05","TED novel fold AF-A0A811G0F8-F1-model_v4_TED05"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":3,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["TED%3AAF-A0A142EAM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142EAM9-F1-model_v4_TED03"],["TED%3AAF-A0A1Q3DTY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3DTY6-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3DNE3-F1-model_v4_TED01","TED novel fold AF-A0A1Q3DNE3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1961","l":"Streptomyces virginiae","na":3,"nb":3,"a":[["clay-envo-00002982.html","clay"],["plain-envo-00000086.html","plain"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF19328","2,4-diaminopentanoate dehydrogenase C-terminal domain"],["PROSITE%3APS01014","Transcription termination factor nusG signature"]]},{"id":"NCBITaxon:203124","l":"Trichodesmium erythraeum IMS101","na":3,"nb":3,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["coastal-water-body-envo-02000049.html","coastal water body"],["marine-neritic-zone-envo-00000206.html","marine neritic zone"]],"b":[["Pfam%3APF06206","CpeT/CpcT family (DUF1001)"],["Pfam%3APF18460","Heterocyst differentiation regulator C-terminal Hood domain"],["TED%3AAF-Q10WG6-F1-model_v4_TED05","TED highly-symmetric fold AF-Q10WG6-F1-model_v4_TED05"]]},{"id":"NCBITaxon:28108","l":"Alteromonas macleodii","na":3,"nb":3,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["marine-water-body-envo-00001999.html","marine water body"],["sandstone-envo-00002055.html","sandstone"]],"b":[["TED%3AAF-A0A6C5N007-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6C5N007-F1-model_v4_TED01"],["TED%3AAF-A0A126Q0V0-F1-model_v4_TED01","TED novel fold AF-A0A126Q0V0-F1-model_v4_TED01"],["TED%3AAF-A0A6T9Y0H6-F1-model_v4_TED01","TED novel fold AF-A0A6T9Y0H6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:335543","l":"","na":3,"nb":3,"a":[["anaerobic-sludge-envo-00002129.html","anaerobic sludge"],["submerged-bed-envo-00000501.html","submerged bed"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["Pfam%3APF03746","LamB/YcsF family"],["Pfam%3APF03588","Leucyl/phenylalanyl-tRNA protein transferase"],["Pfam%3APF05167","Uncharacterised ACR (DUF711)"]]},{"id":"NCBITaxon:340102","l":"","na":3,"nb":3,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"],["solfatara-envo-00000217.html","solfatara"]],"b":[["Pfam%3APF22039","Imidazolonepropionase-like composite domain, bacteria"],["Pfam%3APF01949","Endonuclease dU"],["TED%3AAF-A4WK08-F1-model_v4_TED01","TED novel fold AF-A4WK08-F1-model_v4_TED01"]]},{"id":"NCBITaxon:386415","l":"","na":3,"nb":3,"a":[["myocardium-bto-0000901.html","myocardium"],["reticuloendothelial-system-bto-0001174.html","reticuloendothelial system"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["Pfam%3APF27467","ATP-dependent helicase/deoxyribonuclease AddB fifth domain"],["Pfam%3APF01888","CbiD"],["Pfam%3APF18146","Damage-inducible protein CinA KH domain"]]},{"id":"NCBITaxon:418699","l":"","na":3,"nb":3,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["petroleum-envo-00002984.html","petroleum"]],"b":[["Pfam%3APF27460","ATP phosphoribosyltransferase subunit HisZ C-terminal domain"],["Pfam%3APF20543","N2-fixation sustaining protein CowN"],["PROSITE%3APS00855","Signal peptidases II signature"]]},{"id":"NCBITaxon:582","l":"Morganella morganii","na":3,"nb":3,"a":[["blast-cell-bto-0000125.html","blast cell"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"],["spike-bto-0001278.html","spike"]],"b":[["PROSITE%3APS01157","Class A bacterial acid phosphatases signature"],["TED%3AAF-A0A2C5TPE5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2C5TPE5-F1-model_v4_TED01"],["TED%3AAF-A0A0A2RJY1-F1-model_v4_TED02","TED novel fold AF-A0A0A2RJY1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":3,"nb":3,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Pfam%3APF04205","FMN-binding domain"],["Pfam%3APF10795","Protein of unknown function (DUF2607)"],["TED%3AAF-A0A1W6U0N2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W6U0N2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:75985","l":"Mannheimia haemolytica","na":3,"nb":3,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["leukocyte-bto-0000751.html","leukocyte"],["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["Pfam%3APF04224","Protein of unknown function, DUF417"],["Pfam%3APF04393","Protein of unknown function (DUF535)"],["TED%3AAF-A0A378MS69-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A378MS69-F1-model_v4_TED01"]]},{"id":"NCBITaxon:94122","l":"Shewanella sp. ANA-3","na":3,"nb":3,"a":[["alkaline-water-envo-01000357.html","alkaline water"],["brackish-estuary-envo-00002137.html","brackish estuary"],["underground-water-envo-00005792.html","underground water"]],"b":[["Pfam%3APF03883","Peroxide stress protein YaaA"],["Pfam%3APF04751","Dual-action ribosomal maturation protein DarP"],["Pfam%3APF04356","Protein of unknown function (DUF489)"]]},{"id":"NCBITaxon:6239","l":"Caenorhabditis elegans","na":2,"nb":9682,"a":[["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.14.14.-","With reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.17.-","With reduced ascorbate as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.19.-","With oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water"],["EC%3A1.14.99.-","Miscellaneous"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii (strain ATCC 43067 / DSM 2661 / JAL-1 / JCM 10045 / NBRC 100440)","na":2,"nb":5181,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["EC%3A1.12.99.-","With other acceptors"],["EC%3A1.3.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.3.-.-","Acting on the CH-CH group of donors"],["EC%3A1.8.98.-","With other, known, acceptors"],["EC%3A1.97.1.-","Other oxidoreductases"],["EC%3A2.1.2.-","Hydroxymethyl-, formyl- and related transferases"]]},{"id":"NCBITaxon:83331","l":"Mycobacterium tuberculosis (strain CDC 1551 / Oshkosh)","na":2,"nb":99,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["Pfam%3APF09407","AbiEi antitoxin C-terminal domain"],["Pfam%3APF17668","Acetyltransferase (GNAT) domain"],["Pfam%3APF13480","Acetyltransferase (GNAT) domain"],["Pfam%3APF13527","Acetyltransferase (GNAT) domain"],["Pfam%3APF16701","Adenylate cyclase regulatory domain"],["Pfam%3APF06029","AlkA N-terminal domain"]]},{"id":"NCBITaxon:9031","l":"Gallus gallus","na":2,"nb":48,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["Pfam%3APF16620","Unstructured linker between I-set domains 2 and 3 on MYLCK"],["Pfam%3APF15512","Chromatin assembly factor complex 1 subunit p60, C-terminal"],["Pfam%3APF18130","ATP-grasp N-terminal domain"],["Pfam%3APF15632","ATP-grasp in the biosynthetic pathway with Ter operon"],["Pfam%3APF01382","Avidin family"],["Pfam%3APF08072","BDHCT (NUC031) domain"]]},{"id":"NCBITaxon:266940","l":"Kineococcus radiotolerans SRS30216 = ATCC BAA-149","na":38,"nb":2,"a":[["air-envo-00002005.html","air"],["bay-envo-00000032.html","bay"],["coastal-sea-water-envo-00002150.html","coastal sea water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"]],"b":[["Pfam%3APF01083","Cutinase"],["TED%3AAF-A6WE06-F1-model_v4_TED06","TED novel fold AF-A6WE06-F1-model_v4_TED06"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":33,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["pond-water-envo-00002228.html","pond water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["water-body-envo-00000063.html","water body"]],"b":[["Pfam%3APF22538","Hexaprenyl diphosphate synthase, small subunit"],["PROSITE%3APS01066","Undecaprenyl pyrophosphate synthase family signature"]]},{"id":"NCBITaxon:9541","l":"Macaca fascicularis","na":2,"nb":27,"a":[["neritic-epipelagic-zone-biome-envo-01000042.html","neritic epipelagic zone biome"],["sea-shore-envo-00000485.html","sea shore"]],"b":[["Pfam%3APF16618","Linker region between SH3 and WW domains on ARHGAP12"],["Pfam%3APF28426","ATRIP C-terminal domain"],["Pfam%3APF28409","ATR-interacting protein N-terminal domain"],["Pfam%3APF23998","BTBDG BTB/POZ domain"],["Pfam%3APF21059","BTB/POZ domain-containing protein 16, C-terminal domain"],["Pfam%3APF12366","Cancer susceptibility candidate 1 C-terminal"]]},{"id":"NCBITaxon:4577","l":"Zea mays","na":2,"nb":18,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["IDPO%3A0000002","disorder"],["Pfam%3APF14861","Plant antimicrobial peptide"],["Pfam%3APF02041","Auxin binding protein"],["Pfam%3APF25436","BSD2 cysteine rich domain"],["Pfam%3APF23493","Cysteinyl-tRNA ligase anticodon binding domain"],["Pfam%3APF03330","Lytic transglycolase"]]},{"id":"NCBITaxon:85963","l":"Helicobacter pylori (strain J99 / ATCC 700824)","na":2,"nb":18,"a":[["anaerobic-sludge-blanket-reactor-envo-00002213.html","anaerobic sludge blanket reactor"],["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["Pfam%3APF15437","Plasminogen-binding protein pgbA C-terminal"],["Pfam%3APF02293","AmiS/UreI family transporter"],["Pfam%3APF26365","Apolipoprotein N-acyltransferase integral membrane domain"],["Pfam%3APF16730","DnaG-primase C-terminal, helicase-binding domain"],["Pfam%3APF10398","Protein of unknown function (DUF2443)"],["Pfam%3APF13099","Domain of unknown function (DUF3944)"]]},{"id":"NCBITaxon:176299","l":"Agrobacterium fabrum (strain C58 / ATCC 33970)","na":2,"nb":17,"a":[["human-construction-envo-00000070.html","human construction"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF28403","Aconitase X second domain"],["Pfam%3APF28406","Aconitase X third domain"],["Pfam%3APF04412","Aconitase X first domain"],["Pfam%3APF01989","Aconitase X swivel domain"]]},{"id":"NCBITaxon:272631","l":"Mycobacterium leprae (strain TN)","na":2,"nb":16,"a":[["peripheral-blood-mononuclear-cell-bto-0001025.html","peripheral blood mononuclear cell"],["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["Pfam%3APF26519","Biotin synthase auxiliary protein family"],["Pfam%3APF24481","CT398-like coiled coil hairpin domain"],["Pfam%3APF09438","Domain of unknown function (DUF2017)"],["Pfam%3APF12089","Transmembrane domain of unknown function (DUF3566)"],["Pfam%3APF12823","Domain of unknown function (DUF3817)"],["Pfam%3APF19187","PafC helix-turn-helix domain"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":2,"nb":16,"a":[["feces-uberon-0001988.html","feces"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["Pfam%3APF05932","Tir chaperone protein (CesT) family"],["Pfam%3APF17656","FlgA N-terminal domain"],["Pfam%3APF22200","ExsA N-terminal regulatory domain"],["Pfam%3APF05171","Haemin-degrading HemS.ChuX domain"],["Pfam%3APF07201","HrpJ-like domain"],["Pfam%3APF04391","Protein of unknown function (DUF533)"]]},{"id":"NCBITaxon:1580","l":"Levilactobacillus brevis","na":14,"nb":2,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["organic-waste-material-envo-00002873.html","organic waste material"],["research-facility-envo-00000469.html","research facility"],["food-fermented-foodon-00001258.html","food (fermented)"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["caco-2-cell-bto-0000195.html","CACO-2 cell"]],"b":[["TED%3AAF-A0A2A3TVW3-F1-model_v4_TED01","TED novel fold AF-A0A2A3TVW3-F1-model_v4_TED01"],["TED%3AAF-A0A7Z6MPZ0-F1-model_v4_TED02","TED novel fold AF-A0A7Z6MPZ0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:574521","l":"Escherichia coli O127:H6 (strain E2348/69 / EPEC)","na":2,"nb":13,"a":[["enterocyte-bto-0000398.html","enterocyte"],["gut-epithelium-bto-0000956.html","gut epithelium"]],"b":[["IDPO%3A0000006","order"],["IDPO%3A0000045","phosphorylation display site"],["Pfam%3APF02369","Bacterial Ig-like domain (group 1)"],["Pfam%3APF05307","Bundlin"],["Pfam%3APF27328","EcpD C-terminal domain"],["Pfam%3APF11924","Inverse autotransporter, beta-domain"]]},{"id":"NCBITaxon:58172","l":"Paenibacillus sp.","na":12,"nb":2,"a":[["factory-envo-01000536.html","factory"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["Pfam%3APF03442","Carbohydrate binding domain X2"],["TED%3AAF-A0A357M9E9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A357M9E9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:234267","l":"Candidatus Solibacter usitatus Ellin6076","na":11,"nb":2,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["pond-water-envo-00002228.html","pond water"],["aquatic-environment-envo-01000317.html","aquatic environment"],["desert-sand-envo-00005800.html","desert sand"],["environmental-material-envo-00010483.html","environmental material"],["mud-envo-01000001.html","mud"]],"b":[["TED%3AAF-Q01YB9-F1-model_v4_TED05","TED highly-symmetric fold AF-Q01YB9-F1-model_v4_TED05"],["TED%3AAF-Q02DA0-F1-model_v4_TED01","TED highly-symmetric fold AF-Q02DA0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:31234","l":"Caenorhabditis remanei","na":2,"nb":11,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"]],"b":[["TED%3AAF-A0A260YVB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A260YVB9-F1-model_v4_TED01"],["TED%3AAF-A0A2P4UZM7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2P4UZM7-F1-model_v4_TED02"],["TED%3AAF-A0A6A5GBX3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A5GBX3-F1-model_v4_TED01"],["TED%3AAF-A0A6A5H6H5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A5H6H5-F1-model_v4_TED01"],["TED%3AAF-A0A6A5HK12-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6A5HK12-F1-model_v4_TED02"],["TED%3AAF-E3LF65-F1-model_v4_TED02","TED highly-symmetric fold AF-E3LF65-F1-model_v4_TED02"]]},{"id":"NCBITaxon:190650","l":"Caulobacter vibrioides (strain ATCC 19089 / CIP 103742 / CB 15)","na":2,"nb":10,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["IDPO%3A0000060","self-assembly"],["Pfam%3APF27198","FlaEY third domain"],["Pfam%3APF22367","Flagellar hook protein FlgE, third domain"],["Pfam%3APF03799","Cell division protein FtsQ/DivIB, C-terminal"],["Pfam%3APF27294","HfaA"],["Pfam%3APF27277","Holdfast attachment protein D"]]},{"id":"NCBITaxon:853","l":"Faecalibacterium prausnitzii","na":2,"nb":10,"a":[["coral-reef-envo-00000150.html","coral reef"],["tropical-envo-01000204.html","tropical"]],"b":[["TED%3AAF-A0A2A7AJ69-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A7AJ69-F1-model_v4_TED01"],["TED%3AAF-A0A329UNG0-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A329UNG0-F1-model_v4_TED05"],["TED%3AAF-A0A3F3JVN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3F3JVN3-F1-model_v4_TED01"],["TED%3AAF-A0A564SWB8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A564SWB8-F1-model_v4_TED02"],["TED%3AAF-A0A173SIF7-F1-model_v4_TED01","TED novel fold AF-A0A173SIF7-F1-model_v4_TED01"],["TED%3AAF-A0A173WYP6-F1-model_v4_TED01","TED novel fold AF-A0A173WYP6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:166","l":"Treponema sp.","na":2,"nb":9,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["TED%3AAF-A0A351Z2H3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A351Z2H3-F1-model_v4_TED01"],["TED%3AAF-A0A356K0W2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A356K0W2-F1-model_v4_TED02"],["TED%3AAF-A0A3B8WTM6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3B8WTM6-F1-model_v4_TED02"],["TED%3AAF-A0A3C1HX51-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3C1HX51-F1-model_v4_TED03"],["TED%3AAF-A0A521IH80-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521IH80-F1-model_v4_TED01"],["TED%3AAF-A0A7X8IF67-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X8IF67-F1-model_v4_TED01"]]},{"id":"NCBITaxon:190485","l":"Xanthomonas campestris pv. campestris (strain ATCC 33913 / DSM 3586 / NCPPB 528 / LMG 568 / P 25)","na":2,"nb":9,"a":[["fruit-bto-0000486.html","fruit"],["vascular-tissue-bto-0001432.html","vascular tissue"]],"b":[["Pfam%3APF28546","TonB transmembrane helix"],["Pfam%3APF00325","Bacterial regulatory proteins, crp family"],["Pfam%3APF06165","Glycosyl hydrolase 94, supersandwich domain"],["Pfam%3APF12019","Type II transport protein GspH"],["Pfam%3APF22059","Glucuronosyltransferase GumK, N-terminal domain"],["Pfam%3APF14307","Glycosyltransferase WbsX"]]},{"id":"NCBITaxon:272624","l":"Legionella pneumophila subsp. pneumophila (strain Philadelphia 1 / ATCC 33152 / DSM 7513)","na":2,"nb":9,"a":[["underground-water-envo-00005792.html","underground water"],["macrophage-bto-0000801.html","macrophage"]],"b":[["Pfam%3APF22170","Phosphocholine transferase AnkX insertion domain"],["Pfam%3APF23127","DotM, C-terminal cytoplasmic domain"],["Pfam%3APF14860","DrrA phosphatidylinositol 4-phosphate binding domain"],["Pfam%3APF01346","Domain amino terminal to FKBP-type peptidyl-prolyl isomerase"],["Pfam%3APF19335","Heavy metal binding domain"],["Pfam%3APF26393","Lart1 ADP-ribosyltransferase family"]]},{"id":"NCBITaxon:1074","l":"Rhodoblastus acidophilus","na":8,"nb":2,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"],["liquid-water-envo-00002006.html","liquid water"],["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["rhizosphere-envo-00005801.html","rhizosphere"]],"b":[["PROSITE%3APS00969","Antenna complexes beta subunits signature"],["TED%3AAF-A0A6N8DR15-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8DR15-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1655","l":"Actinomyces naeslundii","na":8,"nb":2,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"],["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"],["archeological-site-envo-00000564.html","archeological site"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Pfam%3APF16555","Gram-positive pilin subunit D1, N-terminal domain"],["TED%3AAF-A0A2Z5QNH6-F1-model_v4_TED02","TED novel fold AF-A0A2Z5QNH6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2702","l":"Gardnerella vaginalis","na":8,"nb":2,"a":[["egg-food-product-foodon-00001274.html","egg food product"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["TED%3AAF-A0A133NUL7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A133NUL7-F1-model_v4_TED01"],["TED%3AAF-A0A3E2C3X9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3E2C3X9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":8,"nb":2,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"]],"b":[["TED%3AAF-A0A6N3WS12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N3WS12-F1-model_v4_TED01"],["TED%3AAF-A0A3R7GIU2-F1-model_v4_TED02","TED novel fold AF-A0A3R7GIU2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:419947","l":"Mycobacterium tuberculosis (strain ATCC 25177 / H37Ra)","na":2,"nb":8,"a":[["clay-envo-00002982.html","clay"],["paddy-field-envo-00000297.html","paddy field"]],"b":[["Pfam%3APF17668","Acetyltransferase (GNAT) domain"],["Pfam%3APF13527","Acetyltransferase (GNAT) domain"],["Pfam%3APF02261","Aspartate decarboxylase"],["Pfam%3APF07584","Aerotolerance regulator N-terminal"],["Pfam%3APF03993","Domain of Unknown Function (DUF349)"],["Pfam%3APF02313","Fumarate reductase subunit D"]]},{"id":"NCBITaxon:467705","l":"Streptococcus gordonii (strain Challis / ATCC 35105 / BCRC 15272 / CH1 / DL1 / V288)","na":2,"nb":8,"a":[["dental-plaque-bto-0000338.html","dental plaque"],["tooth-bto-0000397.html","tooth"]],"b":[["Pfam%3APF18652","Adhesin P1 N-terminal domain"],["Pfam%3APF17998","Cell surface antigen I/II C2 terminal domain"],["Pfam%3APF16364","Cell surface antigen C-terminus"],["Pfam%3APF18938","Atypical Rib domain"],["Pfam%3APF20164","GspA/SrpA SigLec-like domain"],["Pfam%3APF08363","Glucan-binding protein C"]]},{"id":"NCBITaxon:1231","l":"Nitrosospira multiformis","na":7,"nb":2,"a":[["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["biome-envo-00000428.html","biome"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"],["sludge-envo-00002044.html","sludge"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"]],"b":[["TED%3AAF-A0A1I0DRD9-F1-model_v4_TED01","TED novel fold AF-A0A1I0DRD9-F1-model_v4_TED01"],["TED%3AAF-A0A2T5IBV5-F1-model_v4_TED01","TED novel fold AF-A0A2T5IBV5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1911","l":"Streptomyces griseus","na":2,"nb":7,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["Pfam%3APF13207","AAA domain"],["Pfam%3APF27054","Beta-methylindole-3-pyruvate reductase C-terminal domain"],["Pfam%3APF26558","3-dehydroquinate synthase II C-terminal domain"],["Pfam%3APF01959","3-dehydroquinate synthase II N-terminal domain"],["Pfam%3APF13459","4Fe-4S single cluster domain"],["Pfam%3APF04655","Aminoglycoside/hydroxyurea antibiotic resistance kinase"]]},{"id":"NCBITaxon:216773","l":"Corethron hystrix","na":2,"nb":7,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"],["saline-water-envo-00002010.html","saline water"]],"b":[["TED%3AAF-A0A7S1B7I7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1B7I7-F1-model_v4_TED01"],["TED%3AAF-A0A7S1BDF8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1BDF8-F1-model_v4_TED01"],["TED%3AAF-A0A7S1BL96-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1BL96-F1-model_v4_TED01"],["TED%3AAF-A0A7S1FKX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1FKX2-F1-model_v4_TED01"],["TED%3AAF-A0A7S1BFC1-F1-model_v4_TED01","TED novel fold AF-A0A7S1BFC1-F1-model_v4_TED01"],["TED%3AAF-A0A7S1BX15-F1-model_v4_TED02","TED novel fold AF-A0A7S1BX15-F1-model_v4_TED02"]]},{"id":"NCBITaxon:379508","l":"Lodderomyces elongisporus (strain ATCC 11503 / CBS 2605 / JCM 1781 / NBRC 1676 / NRRL YB-4239)","na":2,"nb":7,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"],["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["Pfam%3APF28272","AIM11 N-terminal domain"],["Pfam%3APF23681","ATP-dependent rRNA helicase SPB4-like, C-terminal tail"],["Pfam%3APF01987","Mitochondrial biogenesis AIM24"],["Pfam%3APF17052","Cap associated factor"],["PROSITE%3APS00885","EPSP synthase signature 2"],["TED%3AAF-A5DUG9-F1-model_v4_TED01","TED novel fold AF-A5DUG9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1184267","l":"Pseudobdellovibrio exovorus JSS","na":6,"nb":2,"a":[["stream-envo-00000023.html","stream"],["biome-envo-00000428.html","biome"],["desert-biome-envo-01000179.html","desert biome"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["TED%3AAF-M4VA20-F1-model_v4_TED02","TED highly-symmetric fold AF-M4VA20-F1-model_v4_TED02"],["TED%3AAF-M4VEE5-F1-model_v4_TED01","TED highly-symmetric fold AF-M4VEE5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:34003","l":"Paracoccus aminophilus","na":6,"nb":2,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["small-river-biome-envo-00000890.html","small river biome"],["water-scum-envo-00005794.html","water scum"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"],["stony-desert-envo-00000183.html","stony desert"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["Pfam%3APF26354","N,N-dimethylformamidase alpha subunit"],["Pfam%3APF20254","N,N-dimethylformamidase beta subunit-like, C-terminal"]]},{"id":"NCBITaxon:353153","l":"Trypanosoma cruzi (strain CL Brener)","na":2,"nb":6,"a":[["amastigote-bto-0000062.html","amastigote"],["kinetoplastid-bto-0002502.html","kinetoplastid"]],"b":[["Pfam%3APF03738","Glutathionylspermidine synthase preATP-grasp"],["TED%3AAF-Q4D5Q0-F1-model_v4_TED01","TED highly-symmetric fold AF-Q4D5Q0-F1-model_v4_TED01"],["TED%3AAF-Q4CQE1-F1-model_v4_TED01","TED novel fold AF-Q4CQE1-F1-model_v4_TED01"],["TED%3AAF-Q4DRS0-F1-model_v4_TED01","TED novel fold AF-Q4DRS0-F1-model_v4_TED01"],["TED%3AAF-Q4DY69-F1-model_v4_TED01","TED novel fold AF-Q4DY69-F1-model_v4_TED01"],["TED%3AAF-Q4E0W9-F1-model_v4_TED01","TED novel fold AF-Q4E0W9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":2,"nb":6,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["Pfam%3APF01177","Asp/Glu/Hydantoin racemase"],["Pfam%3APF11339","Protein of unknown function (DUF3141)"],["PROSITE%3APS01303","BCCT family of transporters signature"],["PROSITE%3APS00665","Dihydrodipicolinate synthase signature 1"],["TED%3AAF-A0A2J0YSD4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J0YSD4-F1-model_v4_TED01"],["TED%3AAF-A0A843ZNG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843ZNG8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:446","l":"Legionella pneumophila","na":6,"nb":2,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["hospital-envo-00002173.html","hospital"],["macrophage-bto-0000801.html","macrophage"],["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["Pfam%3APF14860","DrrA phosphatidylinositol 4-phosphate binding domain"],["TED%3AAF-A0A822WCM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A822WCM6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:523849","l":"Thermococcus litoralis (strain ATCC 51850 / DSM 5473 / JCM 8560 / NS-C)","na":2,"nb":6,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["Pfam%3APF09094","Alpha-amylase/4-alpha-glucanotransferase, middle domain"],["Pfam%3APF09095","Alpha-amylase/4-alpha-glucanotransferase, C-terminal"],["Pfam%3APF28476","Glycogen phosphorylase C-terminal domain"],["Pfam%3APF11897","Protein of unknown function (DUF3417)"],["PROSITE%3APS01334","Pyrrolidone-carboxylate peptidase cysteine active site"],["PROSITE%3APS01333","Pyrrolidone-carboxylate peptidase glutamic acid active site"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":2,"nb":6,"a":[["hospital-envo-00002173.html","hospital"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["Pfam%3APF16376","N-terminal domain of fragilysin"],["TED%3AAF-A0A412XR06-F1-model_v4_TED03","TED novel fold AF-A0A412XR06-F1-model_v4_TED03"],["TED%3AAF-A0A4V1EUI2-F1-model_v4_TED02","TED novel fold AF-A0A4V1EUI2-F1-model_v4_TED02"],["TED%3AAF-A0A5C6IXH5-F1-model_v4_TED01","TED novel fold AF-A0A5C6IXH5-F1-model_v4_TED01"],["TED%3AAF-A0A5C6L6G9-F1-model_v4_TED02","TED novel fold AF-A0A5C6L6G9-F1-model_v4_TED02"],["TED%3AAF-A0A642KY52-F1-model_v4_TED01","TED novel fold AF-A0A642KY52-F1-model_v4_TED01"]]},{"id":"UBERON:0001046","l":"","na":6,"nb":2,"a":[["hindgut-habitatmech-gold-38f60a7f52.html","Hindgut"],["hindgut-habitatmech-gold-e323c98727.html","Hindgut"],["hindgut-habitatmech-gold-19840c718e.html","Hindgut"],["hindgut-habitatmech-gold-c336fb0bb7.html","Hindgut"],["hindgut-habitatmech-gold-50722c7871.html","Hindgut"],["paunch-p3-segment-habitatmech-gold-86aef52360.html","Paunch/P3 segment"]],"b":[["GO%3A0043133","hindgut contraction"],["GO%3A0043134","regulation of hindgut contraction"]]},{"id":"NCBITaxon:1055524","l":"Burkholderia cenocepacia (strain H111)","na":2,"nb":5,"a":[["k-562-cell-bto-0000664.html","K-562 cell"],["macrophage-bto-0000801.html","macrophage"]],"b":[["Pfam%3APF20148","Domain of unknown function (DUF6531)"],["Pfam%3APF14430","Immunity protein Imm1"],["Pfam%3APF05488","PAAR motif"],["Pfam%3APF03527","RHS protein"],["Pfam%3APF05593","RHS Repeat"]]},{"id":"NCBITaxon:1121264","l":"Caloranaerobacter azorensis DSM 13643","na":5,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["sea-envo-00000016.html","sea"],["ridge-envo-00000283.html","ridge"],["trough-envo-00000499.html","trough"]],"b":[["TED%3AAF-A0A1M5V0T2-F1-model_v4_TED02","TED novel fold AF-A0A1M5V0T2-F1-model_v4_TED02"],["TED%3AAF-A0A1M5V0T2-F1-model_v4_TED03","TED novel fold AF-A0A1M5V0T2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1245","l":"Leuconostoc mesenteroides","na":5,"nb":2,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["leaf-po-0025034.html","leaf"],["animal-manure-envo-00003031.html","animal manure"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["Pfam%3APF08951","Bacteriocin immunity protein family"],["TED%3AAF-A0A8B5R1X5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B5R1X5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:143495","l":"Aneurinibacillus thermoaerophilus","na":5,"nb":2,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["Pfam%3APF05523","WxcM-like, C-terminal"],["TED%3AAF-A0A1G8FMF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G8FMF4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:145262","l":"Methanothermobacter thermautotrophicus","na":5,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["intestine-environment-envo-2100002.html","intestine environment"],["sludge-envo-00002044.html","sludge"]],"b":[["Pfam%3APF12686","Protein of unknown function (DUF3800)"],["PROSITE%3APS00093","N-4 cytosine-specific DNA methylases signature"]]},{"id":"NCBITaxon:2021","l":"Thermobifida fusca","na":2,"nb":5,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["Pfam%3APF00553","Cellulose binding domain"],["Pfam%3APF01341","Glycosyl hydrolases family 6"],["PROSITE%3APS00561","CBM2a (carbohydrate-binding type-2) domain signature"],["PROSITE%3APS00655","Glycosyl hydrolases family 6 signature 1"],["PROSITE%3APS00656","Glycosyl hydrolases family 6 signature 2"]]},{"id":"NCBITaxon:37919","l":"Rhodococcus opacus","na":5,"nb":2,"a":[["watercourse-envo-00000029.html","watercourse"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"],["sludge-envo-00002044.html","sludge"],["water-scum-envo-00005794.html","water scum"]],"b":[["Pfam%3APF11794","4-hydroxyphenylacetate 3-hydroxylase N terminal"],["Pfam%3APF03241","4-hydroxyphenylacetate 3-hydroxylase C terminal"]]},{"id":"NCBITaxon:393133","l":"Listeria monocytogenes serotype 1/2a (strain 10403S)","na":2,"nb":5,"a":[["lymphocyte-bto-0000775.html","lymphocyte"],["spleen-bto-0001281.html","spleen"]],"b":[["Pfam%3APF07698","7TM receptor with intracellular HD hydrolase"],["Pfam%3APF07697","7TM-HD extracellular"],["Pfam%3APF24898","Cyclic-di-AMP phosphodiesterase GdpP-like, GGDEF domain"],["Pfam%3APF19293","CdaA N-terminal transmembrane domain"],["Pfam%3APF04346","Ethanolamine utilisation protein, EutH"]]},{"id":"NCBITaxon:394096","l":"Hyalangium minutum","na":2,"nb":5,"a":[["wood-bto-0005516.html","wood"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["TED%3AAF-A0A085W4M3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085W4M3-F1-model_v4_TED01"],["TED%3AAF-A0A085WRA7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085WRA7-F1-model_v4_TED01"],["TED%3AAF-A0A085WWM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085WWM4-F1-model_v4_TED01"],["TED%3AAF-A0A085W7S5-F1-model_v4_TED03","TED novel fold AF-A0A085W7S5-F1-model_v4_TED03"],["TED%3AAF-A0A085WH04-F1-model_v4_TED01","TED novel fold AF-A0A085WH04-F1-model_v4_TED01"]]},{"id":"NCBITaxon:529","l":"Brucella anthropi","na":5,"nb":2,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["hospital-envo-00002173.html","hospital"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF07930","D-aminopeptidase, domain B"],["TED%3AAF-A0A7T4IBJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T4IBJ8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":5,"nb":2,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["pseudostem-bto-0005992.html","pseudostem"],["seedling-bto-0001228.html","seedling"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["soil-envo-00001998.html","soil"]],"b":[["PROSITE%3APS00336","Beta-lactamase class-C active site"],["TED%3AAF-A0A155XQ59-F1-model_v4_TED02","TED novel fold AF-A0A155XQ59-F1-model_v4_TED02"]]},{"id":"NCBITaxon:556","l":"Dickeya chrysanthemi","na":2,"nb":5,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["Pfam%3APF18390","Glycogen debranching enzyme C-terminal domain"],["Pfam%3APF25994","AprE, long alpha-helical hairpin"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF03812","2-keto-3-deoxygluconate permease"],["Pfam%3APF09589","HrpA pilus formation protein"]]},{"id":"NCBITaxon:63737","l":"Nostoc punctiforme PCC 73102","na":2,"nb":5,"a":[["heterocyst-bto-0000600.html","heterocyst"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["Pfam%3APF11266","Long-chain fatty aldehyde decarbonylase"],["Pfam%3APF21808","Bacterial dynamin-like protein, helical domain"],["Pfam%3APF18460","Heterocyst differentiation regulator C-terminal Hood domain"],["Pfam%3APF13619","KTSC domain"],["PROSITE%3APS01026","Photosystem I psaG and psaK proteins signature"]]},{"id":"NCBITaxon:6945","l":"Ixodes scapularis","na":5,"nb":2,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["city-envo-00000856.html","city"],["midgut-bto-0000863.html","midgut"],["nymph-bto-0000954.html","nymph"],["salivary-gland-bto-0001203.html","salivary gland"]],"b":[["TED%3AAF-A0A4D5RH31-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4D5RH31-F1-model_v4_TED01"],["TED%3AAF-B7Q616-F1-model_v4_TED01","TED highly-symmetric fold AF-B7Q616-F1-model_v4_TED01"]]},{"id":"NCBITaxon:76114","l":"Aromatoleum aromaticum (strain DSM 19018 / LMG 30748 / EbN1)","na":2,"nb":5,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["Pfam%3APF08882","Acetone carboxylase gamma subunit"],["Pfam%3APF19278","Hydantoinase/oxoprolinase C-terminal domain"],["Pfam%3APF05378","Hydantoinase/oxoprolinase N-terminal region"],["Pfam%3APF01968","Hydantoinase/oxoprolinase"],["Pfam%3APF02538","Hydantoinase B/oxoprolinase"]]},{"id":"NCBITaxon:885","l":"Desulfovibrio sp.","na":5,"nb":2,"a":[["marine-water-body-envo-00001999.html","marine water body"],["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["sludge-envo-00002044.html","sludge"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["TED%3AAF-A0A6N8BWZ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8BWZ8-F1-model_v4_TED01"],["TED%3AAF-A0A2E3RAH3-F1-model_v4_TED02","TED novel fold AF-A0A2E3RAH3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:100884","l":"Coprobacillus cateniformis","na":4,"nb":2,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["gut-bto-0000545.html","gut"],["sediment-envo-00002007.html","sediment"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-E7G7Y6-F1-model_v4_TED01","TED highly-symmetric fold AF-E7G7Y6-F1-model_v4_TED01"],["TED%3AAF-E7G976-F1-model_v4_TED02","TED highly-symmetric fold AF-E7G976-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1122192","l":"Marinactinospora thermotolerans DSM 45154","na":4,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["ocean-trench-envo-00000275.html","ocean trench"],["oceanic-zone-envo-00000207.html","oceanic zone"],["trough-envo-00000499.html","trough"]],"b":[["TED%3AAF-A0A1T4KF05-F1-model_v4_TED04","TED novel fold AF-A0A1T4KF05-F1-model_v4_TED04"],["TED%3AAF-A0A1T4TG93-F1-model_v4_TED01","TED novel fold AF-A0A1T4TG93-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1254","l":"Pediococcus acidilactici","na":4,"nb":2,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["research-facility-envo-00000469.html","research facility"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["Pfam%3APF01721","Class II bacteriocin"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":4,"nb":2,"a":[["stream-envo-00000023.html","stream"],["biome-envo-00000428.html","biome"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["Pfam%3APF02052","Gallidermin"],["Pfam%3APF04604","Type-A lantibiotic"]]},{"id":"NCBITaxon:1334","l":"Streptococcus dysgalactiae","na":4,"nb":2,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["Pfam%3APF20746","Endo-beta-N-acetylglucosaminidase F2, Ig-like domain"],["Pfam%3APF23952","Endo-beta-N-acetylglucosaminidase EndoS LRR domain"]]},{"id":"NCBITaxon:1401","l":"Paenibacillus lautus","na":2,"nb":4,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["Pfam%3APF18448","Carbohydrate binding domain"],["Pfam%3APF12891","Glycoside hydrolase family 44"],["TED%3AAF-A0A328VZ83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A328VZ83-F1-model_v4_TED01"],["TED%3AAF-A0A385TU82-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A385TU82-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1525","l":"Neomoorella thermoacetica","na":2,"nb":4,"a":[["liquid-water-envo-00002006.html","liquid water"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["Pfam%3APF25461","Selenocysteine-specific elongation factor, beta-barrel domain"],["Pfam%3APF18537","Carbon monoxide dehydrogenase subunit alpha N-terminal domain"],["Pfam%3APF04060","Putative Fe-S cluster"],["Pfam%3APF03599","CO dehydrogenase/acetyl-CoA synthase delta subunit"]]},{"id":"NCBITaxon:2045","l":"Nocardioides simplex","na":2,"nb":4,"a":[["petroleum-envo-00002984.html","petroleum"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["Pfam%3APF00775","Dioxygenase"],["Pfam%3APF04444","Catechol dioxygenase N terminus"],["PROSITE%3APS00083","Intradiol ring-cleavage dioxygenases signature"],["TED%3AAF-A0A4Y3NBY1-F1-model_v4_TED01","TED novel fold AF-A0A4Y3NBY1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:262316","l":"","na":2,"nb":4,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF19288","CofH/MqnC C-terminal region"],["Pfam%3APF03601","Conserved hypothetical protein 698"],["PROSITE%3APS60002","Phosphoketolase signature 1"],["PROSITE%3APS60003","Phosphoketolase signature 2"]]},{"id":"NCBITaxon:264462","l":"Bdellovibrio bacteriovorus HD100","na":4,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-Q6MMM6-F1-model_v4_TED01","TED novel fold AF-Q6MMM6-F1-model_v4_TED01"],["TED%3AAF-Q6MPT8-F1-model_v4_TED01","TED novel fold AF-Q6MPT8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:266265","l":"","na":2,"nb":4,"a":[["aquifer-envo-00012408.html","aquifer"],["landfill-envo-00000533.html","landfill"]],"b":[["Pfam%3APF09290","Prokaryotic acetaldehyde dehydrogenase, dimerisation"],["Pfam%3APF04345","Chorismate lyase"],["Pfam%3APF07836","DmpG-like communication domain"],["Pfam%3APF06139","BphX-like"]]},{"id":"NCBITaxon:269800","l":"Thermobifida fusca YX","na":2,"nb":4,"a":[["compost-envo-00002170.html","compost"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["Pfam%3APF20628","Dyp-type peroxidase, C-terminal"],["Pfam%3APF04261","Dyp-type peroxidase, N-terminal"],["Pfam%3APF18374","Enolase N-terminal domain-like"],["PROSITE%3APS00909","Mandelate racemase / muconate lactonizing enzyme family signature 2"]]},{"id":"NCBITaxon:28115","l":"Porphyromonas macacae","na":4,"nb":2,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"],["mud-envo-01000001.html","mud"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["TED%3AAF-A0A379E7L0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A379E7L0-F1-model_v4_TED01"],["TED%3AAF-A0A379E9C9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A379E9C9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:285","l":"Comamonas testosteroni","na":2,"nb":4,"a":[["waste-habitatmech-bacdive-36df85e4a4.html","Waste"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["Pfam%3APF02900","Catalytic LigB subunit of aromatic ring-opening dioxygenase"],["Pfam%3APF19301","LigXa C-terminal domain like"],["TED%3AAF-A0A096HND0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A096HND0-F1-model_v4_TED01"],["TED%3AAF-A0A1Y1JCM1-F1-model_v4_TED01","TED novel fold AF-A0A1Y1JCM1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:313603","l":"Maribacter sp. HTCC2170","na":4,"nb":2,"a":[["coral-reef-envo-00000150.html","coral reef"],["hydrographic-feature-envo-00000012.html","hydrographic feature"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["TED%3AAF-A4ARA8-F1-model_v4_TED01","TED novel fold AF-A4ARA8-F1-model_v4_TED01"],["TED%3AAF-A4ARA8-F1-model_v4_TED02","TED novel fold AF-A4ARA8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans Pd1222","na":2,"nb":4,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["Pfam%3APF27518","Heme exporter protein C"],["Pfam%3APF22039","Imidazolonepropionase-like composite domain, bacteria"],["PROSITE%3APS01181","Ribosomal protein S21 signature"],["Pfam%3APF02239","Cytochrome D1 heme domain"]]},{"id":"NCBITaxon:349307","l":"","na":2,"nb":4,"a":[["rice-field-envo-00000296.html","rice field"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["Pfam%3APF06973","Domain of unknown function (DUF1297)"],["Pfam%3APF07826","IMP cyclohydrolase-like protein"],["Pfam%3APF06849","Protein of unknown function (DUF1246)"],["Pfam%3APF08714","Formaldehyde-activating enzyme (Fae)"]]},{"id":"NCBITaxon:365044","l":"Polaromonas naphthalenivorans CJ2","na":4,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["large-river-biome-envo-00000887.html","large river biome"],["waterfall-envo-00000040.html","waterfall"],["petroleum-envo-00002984.html","petroleum"]],"b":[["Pfam%3APF01888","CbiD"],["Pfam%3APF02609","Exonuclease VII small subunit"]]},{"id":"NCBITaxon:406327","l":"","na":2,"nb":4,"a":[["estuary-envo-00000045.html","estuary"],["mudflat-envo-00000192.html","mudflat"]],"b":[["Pfam%3APF06787","FeGP cofactor biosynthesis protein HcgF"],["Pfam%3APF04476","4-HFC-P synthase"],["Pfam%3APF27030","AbpE bacteria"],["Pfam%3APF09840","Uncharacterized protein conserved in archaea (DUF2067)"]]},{"id":"NCBITaxon:497965","l":"","na":2,"nb":4,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["TED%3AAF-E0UJA0-F1-model_v4_TED01","TED highly-symmetric fold AF-E0UJA0-F1-model_v4_TED01"],["TED%3AAF-E0U6M3-F1-model_v4_TED03","TED novel fold AF-E0U6M3-F1-model_v4_TED03"],["TED%3AAF-E0UE39-F1-model_v4_TED02","TED novel fold AF-E0UE39-F1-model_v4_TED02"],["TED%3AAF-E0UM93-F1-model_v4_TED01","TED novel fold AF-E0UM93-F1-model_v4_TED01"]]},{"id":"NCBITaxon:500485","l":"Penicillium rubens Wisconsin 54-1255","na":2,"nb":4,"a":[["finger-bto-0004669.html","finger"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["Pfam%3APF03417","Acyl-coenzyme A:6-aminopenicillanic acid acyl-transferase"],["Pfam%3APF03659","Glycosyl hydrolase family 71"],["PROSITE%3APS00185","Isopenicillin N synthase signature 1"],["PROSITE%3APS00186","Isopenicillin N synthase signature 2"]]},{"id":"NCBITaxon:529507","l":"","na":2,"nb":4,"a":[["needle-bto-0000917.html","needle"],["spinal-cord-bto-0001279.html","spinal cord"]],"b":[["Pfam%3APF02028","BCCT, betaine/carnitine/choline family transporter"],["PROSITE%3APS01303","BCCT family of transporters signature"],["PROSITE%3APS01120","Urease nickel ligands signature"],["PROSITE%3APS00145","Urease active site"]]},{"id":"NCBITaxon:556484","l":"","na":2,"nb":4,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["TED%3AAF-B7GAJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-B7GAJ8-F1-model_v4_TED01"],["TED%3AAF-B7G520-F1-model_v4_TED02","TED novel fold AF-B7G520-F1-model_v4_TED02"],["TED%3AAF-B7G8V4-F1-model_v4_TED02","TED novel fold AF-B7G8V4-F1-model_v4_TED02"],["TED%3AAF-B7GB31-F1-model_v4_TED01","TED novel fold AF-B7GB31-F1-model_v4_TED01"]]},{"id":"NCBITaxon:60552","l":"Burkholderia vietnamiensis","na":4,"nb":2,"a":[["hospital-envo-00002173.html","hospital"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["TED%3AAF-A0A1G5M5D3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G5M5D3-F1-model_v4_TED02"],["TED%3AAF-A0A2Z6TW79-F1-model_v4_TED01","TED novel fold AF-A0A2Z6TW79-F1-model_v4_TED01"]]},{"id":"NCBITaxon:678","l":"Vibrio sp.","na":4,"nb":2,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["aquaculture-farm-envo-03600074.html","aquaculture farm"],["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["Pfam%3APF17851","Beta xylosidase C-terminal Concanavalin A-like domain"],["Pfam%3APF11606","Family 31 carbohydrate binding protein"]]},{"id":"NCBITaxon:83552","l":"Parachlamydia acanthamoebae","na":2,"nb":4,"a":[["elementary-body-bto-0000377.html","elementary body"],["hep-2-cell-bto-0000976.html","HEp-2 cell"]],"b":[["TED%3AAF-A0A0C1C0X3-F1-model_v4_TED01","TED novel fold AF-A0A0C1C0X3-F1-model_v4_TED01"],["TED%3AAF-A0A0C1C9D0-F1-model_v4_TED03","TED novel fold AF-A0A0C1C9D0-F1-model_v4_TED03"],["TED%3AAF-A0A0C1CAV8-F1-model_v4_TED03","TED novel fold AF-A0A0C1CAV8-F1-model_v4_TED03"],["TED%3AAF-A0A0C1ECC2-F1-model_v4_TED03","TED novel fold AF-A0A0C1ECC2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1019","l":"Capnocytophaga sputigena","na":3,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["biotope-envo-00002036.html","biotope"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-A0A3S4WAY3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S4WAY3-F1-model_v4_TED01"],["TED%3AAF-A0A2A3N675-F1-model_v4_TED02","TED novel fold AF-A0A2A3N675-F1-model_v4_TED02"]]},{"id":"NCBITaxon:102129","l":"Leptolyngbya sp. PCC 7375","na":2,"nb":3,"a":[["undersea-feature-envo-00000104.html","undersea feature"],["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["TED%3AAF-K9ELM8-F1-model_v4_TED01","TED highly-symmetric fold AF-K9ELM8-F1-model_v4_TED01"],["TED%3AAF-K9F3N8-F1-model_v4_TED02","TED highly-symmetric fold AF-K9F3N8-F1-model_v4_TED02"],["TED%3AAF-K9FA28-F1-model_v4_TED01","TED novel fold AF-K9FA28-F1-model_v4_TED01"]]},{"id":"NCBITaxon:103796","l":"Pseudomonas syringae pv. actinidiae","na":2,"nb":3,"a":[["leaf-po-0025034.html","leaf"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["Pfam%3APF05425","Copper resistance protein D"],["TED%3AAF-J7I956-F1-model_v4_TED01","TED highly-symmetric fold AF-J7I956-F1-model_v4_TED01"],["TED%3AAF-J7IG33-F1-model_v4_TED01","TED highly-symmetric fold AF-J7IG33-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1071","l":"Rhodopila globiformis","na":3,"nb":2,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["TED%3AAF-A0A2S6NEC8-F1-model_v4_TED01","TED novel fold AF-A0A2S6NEC8-F1-model_v4_TED01"],["TED%3AAF-A0A2S6NJW5-F1-model_v4_TED01","TED novel fold AF-A0A2S6NJW5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1120925","l":"Acinetobacter bouvetii DSM 14964 = CIP 107468","na":3,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["proteintraitsmech%3AELIFE109154_VibH_like","VibH-like metallophore standalone condensation enzyme family"],["TED%3AAF-N9C7M4-F1-model_v4_TED02","TED novel fold AF-N9C7M4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1122961","l":"","na":2,"nb":3,"a":[["volcanic-field-envo-00000354.html","volcanic field"],["volcano-envo-00000247.html","volcano"]],"b":[["Pfam%3APF22578","Geranylgeranyl reductase catalytic domain"],["Pfam%3APF04038","Dihydroneopterin aldolase"],["Pfam%3APF16912","Glucose dehydrogenase C-terminus"]]},{"id":"NCBITaxon:1238","l":"Piscirickettsia salmonis","na":3,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["sea-water-envo-00002149.html","sea water"],["stream-envo-00000023.html","stream"]],"b":[["TED%3AAF-A0A0K2DZD9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0K2DZD9-F1-model_v4_TED01"],["TED%3AAF-A0A1L6TBT4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6TBT4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1249","l":"Weissella paramesenteroides","na":3,"nb":2,"a":[["cecum-bto-0000166.html","cecum"],["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"]],"b":[["Pfam%3APF01874","ATP:dephospho-CoA triphosphoribosyl transferase"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"]]},{"id":"NCBITaxon:1334565","l":"","na":2,"nb":3,"a":[["liver-bto-0000759.html","liver"],["spleen-bto-0001281.html","spleen"]],"b":[["Pfam%3APF09479","Listeria-Bacteroides repeat domain (List_Bact_rpt)"],["Pfam%3APF13457","GW (Gly-Tryp) dipeptide domain"],["Pfam%3APF12354","Bacterial adhesion/invasion protein N terminal"]]},{"id":"NCBITaxon:1380357","l":"Rhodospirillales bacterium URHD0017","na":3,"nb":2,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["TED%3AAF-A0A1H8SNT0-F1-model_v4_TED02","TED novel fold AF-A0A1H8SNT0-F1-model_v4_TED02"],["TED%3AAF-A0A1H8Y0S7-F1-model_v4_TED02","TED novel fold AF-A0A1H8Y0S7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1387353","l":"Paludisphaera borealis","na":3,"nb":2,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["filament-bto-0000463.html","filament"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A1U7CK02-F1-model_v4_TED02","TED novel fold AF-A0A1U7CK02-F1-model_v4_TED02"],["TED%3AAF-A0A1U7CMS9-F1-model_v4_TED03","TED novel fold AF-A0A1U7CMS9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:154046","l":"Hungatella hathewayi","na":3,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["TED%3AAF-A0A3E3DRT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3E3DRT8-F1-model_v4_TED01"],["TED%3AAF-A0A174BLS4-F1-model_v4_TED01","TED novel fold AF-A0A174BLS4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1541063","l":"Prolixibacter denitrificans","na":3,"nb":2,"a":[["environmental-system-envo-01000254.html","environmental system"],["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"]],"b":[["TED%3AAF-A0A2P8CHN5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P8CHN5-F1-model_v4_TED01"],["TED%3AAF-A0A2P8CKY9-F1-model_v4_TED01","TED novel fold AF-A0A2P8CKY9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:157687","l":"Leptotrichia wadei","na":3,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["grassland-soil-envo-00005750.html","grassland soil"],["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["TED%3AAF-A0A510KFE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A510KFE6-F1-model_v4_TED01"],["TED%3AAF-A0A510KJX4-F1-model_v4_TED02","TED novel fold AF-A0A510KJX4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1582","l":"Lacticaseibacillus casei","na":3,"nb":2,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["Pfam%3APF07475","HPr Serine kinase C-terminal domain"],["PROSITE%3APS01163","Galactose-1-phosphate uridyl transferase family 2 signature"]]},{"id":"NCBITaxon:1597","l":"Lacticaseibacillus paracasei","na":3,"nb":2,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["Pfam%3APF09136","Glucodextranase, domain B"],["Pfam%3APF08109","Lactocin 705 family"]]},{"id":"NCBITaxon:1629","l":"Weissella viridescens","na":3,"nb":2,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["Pfam%3APF02388","FemAB family"],["TED%3AAF-A0A3P2RFX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3P2RFX7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1680","l":"Bifidobacterium adolescentis","na":2,"nb":3,"a":[["brain-bto-0000142.html","brain"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["TED%3AAF-A0A1X2Z2R7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1X2Z2R7-F1-model_v4_TED02"],["TED%3AAF-A0A1X2Z7X6-F1-model_v4_TED02","TED novel fold AF-A0A1X2Z7X6-F1-model_v4_TED02"],["TED%3AAF-A0A1X2ZNR8-F1-model_v4_TED04","TED novel fold AF-A0A1X2ZNR8-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1810840","l":"Piscirickettsiaceae bacterium NZ-RLO1","na":3,"nb":2,"a":[["bhk-21-cell-bto-0000120.html","BHK-21 cell"],["endothelial-progenitor-cell-bto-0004093.html","endothelial progenitor cell"],["sf-21-cell-bto-0001196.html","SF-21 cell"]],"b":[["TED%3AAF-A0A177W3E9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A177W3E9-F1-model_v4_TED03"],["TED%3AAF-A0A177W3K1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A177W3K1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:190304","l":"","na":2,"nb":3,"a":[["fibroblast-bto-0000452.html","fibroblast"],["gingival-epithelium-bto-0004998.html","gingival epithelium"]],"b":[["Pfam%3APF05853","beta-keto acid cleavage enzyme"],["Pfam%3APF26317","Histidine racemase CntK N-terminal domain"],["Pfam%3APF26370","L-erythro-3,5-diaminohexanoate dehydrogenase N-terminal domain"]]},{"id":"NCBITaxon:192","l":"Azospirillum brasilense","na":2,"nb":3,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF24931","ACR9-like, ACT-like domain"],["Pfam%3APF27444","Uridylyltransferase GlnD third domain"],["TED%3AAF-A0A235H319-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A235H319-F1-model_v4_TED01"]]},{"id":"NCBITaxon:192066","l":"Neisseria sp.","na":2,"nb":3,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["TED%3AAF-A0A496JVX2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A496JVX2-F1-model_v4_TED03"],["TED%3AAF-A0A496L0X3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A496L0X3-F1-model_v4_TED01"],["TED%3AAF-A0A496JRN7-F1-model_v4_TED02","TED novel fold AF-A0A496JRN7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:213810","l":"Ruminococcus champanellensis 18P13 = JCM 17042","na":3,"nb":2,"a":[["environmental-feature-envo-00002297.html","environmental feature"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["pig-manure-envo-00003860.html","pig manure"]],"b":[["TED%3AAF-D4LAY2-F1-model_v4_TED01","TED novel fold AF-D4LAY2-F1-model_v4_TED01"],["TED%3AAF-D4LBV4-F1-model_v4_TED01","TED novel fold AF-D4LBV4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:216595","l":"","na":3,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["human-construction-envo-00000070.html","human construction"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["Pfam%3APF04996","Succinylarginine dihydrolase"],["TED%3AAF-A0A0G4E5V4-F1-model_v4_TED01","TED novel fold AF-A0A0G4E5V4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:239935","l":"Akkermansia muciniphila","na":3,"nb":2,"a":[["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["secretion-bto-0002979.html","secretion"]],"b":[["TED%3AAF-A0A2N8IJN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N8IJN7-F1-model_v4_TED01"],["TED%3AAF-A0A6N2UM07-F1-model_v4_TED01","TED novel fold AF-A0A6N2UM07-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2751","l":"Carnobacterium maltaromaticum","na":3,"nb":2,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["food-habitatmech-madin-81cb9e74cb.html","food"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["Pfam%3APF09221","Bacteriocin class IId cyclical uberolysin-like"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"]]},{"id":"NCBITaxon:28454","l":"Sphingobacterium multivorum","na":3,"nb":2,"a":[["mud-envo-01000001.html","mud"],["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["TED%3AAF-A0A7T9NU88-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T9NU88-F1-model_v4_TED01"],["TED%3AAF-A0A7T9PGY4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T9PGY4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:313606","l":"Microscilla marina ATCC 23134","na":3,"nb":2,"a":[["coral-reef-envo-00000150.html","coral reef"],["liquid-water-envo-00002006.html","liquid water"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["TED%3AAF-A1ZH11-F1-model_v4_TED02","TED novel fold AF-A1ZH11-F1-model_v4_TED02"],["TED%3AAF-A1ZSU9-F1-model_v4_TED01","TED novel fold AF-A1ZSU9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:314275","l":"Alteromonas mediterranea","na":2,"nb":3,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A1J0SAZ8-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1J0SAZ8-F1-model_v4_TED04"],["TED%3AAF-A0A1J0SA48-F1-model_v4_TED01","TED novel fold AF-A0A1J0SA48-F1-model_v4_TED01"],["TED%3AAF-A0A1J0SX60-F1-model_v4_TED02","TED novel fold AF-A0A1J0SX60-F1-model_v4_TED02"]]},{"id":"NCBITaxon:331117","l":"Aspergillus fischeri NRRL 181","na":2,"nb":3,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["Pfam%3APF23681","ATP-dependent rRNA helicase SPB4-like, C-terminal tail"],["Pfam%3APF16803","Fe-S cluster assembly protein DRE2 N-terminus"],["Pfam%3APF02012","BNR/Asp-box repeat"]]},{"id":"NCBITaxon:357809","l":"Lachnoclostridium phytofermentans ISDg","na":2,"nb":3,"a":[["reservoir-envo-00000025.html","reservoir"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["Pfam%3APF09508","Lacto-N-biose phosphorylase N-terminal TIM barrel domain"],["Pfam%3APF17386","Lacto-N-biose phosphorylase C-terminal domain"],["Pfam%3APF17385","Lacto-N-biose phosphorylase central domain"]]},{"id":"NCBITaxon:362242","l":"","na":2,"nb":3,"a":[["subcutaneous-tissue-bto-0004525.html","subcutaneous tissue"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF02654","Cobalamin-5-phosphate synthase"],["Pfam%3APF02622","AlgH-like"],["Pfam%3APF01628","HrcA protein C terminal domain"]]},{"id":"NCBITaxon:375","l":"Bradyrhizobium japonicum","na":3,"nb":2,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["TED%3AAF-A0A1L3FD53-F1-model_v4_TED02","TED novel fold AF-A0A1L3FD53-F1-model_v4_TED02"],["TED%3AAF-A0A1L3FDV4-F1-model_v4_TED02","TED novel fold AF-A0A1L3FDV4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:391587","l":"Kordia algicida OT-1","na":2,"nb":3,"a":[["coral-reef-envo-00000150.html","coral reef"],["soil-envo-00001998.html","soil"]],"b":[["TED%3AAF-A9DJI5-F1-model_v4_TED02","TED highly-symmetric fold AF-A9DJI5-F1-model_v4_TED02"],["TED%3AAF-A9E7Y3-F1-model_v4_TED02","TED highly-symmetric fold AF-A9E7Y3-F1-model_v4_TED02"],["TED%3AAF-A9E6S0-F1-model_v4_TED02","TED novel fold AF-A9E6S0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:394503","l":"Ruminiclostridium cellulolyticum H10","na":2,"nb":3,"a":[["agricultural-waste-material-envo-01000371.html","agricultural waste material"],["compost-envo-00002170.html","compost"]],"b":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["PROSITE%3APS00812","Glycosyl hydrolases family 8 signature"],["Pfam%3APF01270","Glycosyl hydrolases family 8"]]},{"id":"NCBITaxon:39486","l":"Dorea formicigenerans","na":2,"nb":3,"a":[["adult-bto-0001043.html","adult"],["juvenile-bto-0002168.html","juvenile"]],"b":[["TED%3AAF-A0A3E5ESC3-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A3E5ESC3-F1-model_v4_TED05"],["TED%3AAF-A0A412MBB7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A412MBB7-F1-model_v4_TED01"],["TED%3AAF-A0A412MF47-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A412MF47-F1-model_v4_TED02"]]},{"id":"NCBITaxon:400667","l":"","na":2,"nb":3,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"],["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["Pfam%3APF17074","Darcynin, domain of unknown function"],["Pfam%3APF05232","Chlorhexidine efflux transporter"],["Pfam%3APF05662","Coiled stalk of trimeric autotransporter adhesin"]]},{"id":"NCBITaxon:400946","l":"Wohlfahrtiimonas chitiniclastica","na":3,"nb":2,"a":[["foot-bto-0000476.html","foot"],["pancreas-bto-0000988.html","pancreas"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["TED%3AAF-A0A256BUL6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A256BUL6-F1-model_v4_TED01"],["TED%3AAF-A0A256BUL6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A256BUL6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:40214","l":"Acinetobacter johnsonii","na":3,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["pitcher-bto-0001069.html","pitcher"],["water-scum-envo-00005794.html","water scum"]],"b":[["Pfam%3APF12973","ChrR Cupin-like domain"],["Pfam%3APF13807","G-rich domain on putative tyrosine kinase"]]},{"id":"NCBITaxon:402880","l":"","na":2,"nb":3,"a":[["marsh-envo-00000035.html","marsh"],["wetland-area-envo-00000043.html","wetland area"]],"b":[["Pfam%3APF02553","Cobalt transport protein component CbiN"],["Pfam%3APF18195","GatD N-terminal domain"],["Pfam%3APF01941","S-adenosylmethionine synthetase (AdoMet synthetase)"]]},{"id":"NCBITaxon:41899","l":"Burkholderia plantarii","na":2,"nb":3,"a":[["panicle-bto-0005436.html","panicle"],["seedling-bto-0001228.html","seedling"]],"b":[["proteintraitsmech%3AELIFE109154_GrbD","GrbD-type graminine biosynthesis protein family"],["proteintraitsmech%3AELIFE109154_GrbE","GrbE-type graminine biosynthesis protein family"],["TED%3AAF-A0A0B6RMB1-F1-model_v4_TED01","TED novel fold AF-A0A0B6RMB1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:523846","l":"Methanothermus fervidus DSM 2088","na":3,"nb":2,"a":[["mountain-envo-00000081.html","mountain"],["seamount-envo-00000264.html","seamount"],["volcano-envo-00000247.html","volcano"]],"b":[["Pfam%3APF02829","3H domain"],["Pfam%3APF27272","Cyclic 2,3-diphosphoglycerate synthetase, N-terminal domain"]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":3,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"]],"b":[["Pfam%3APF07833","Copper amine oxidase N-terminal domain"],["TED%3AAF-A0A447L715-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A447L715-F1-model_v4_TED02"]]},{"id":"NCBITaxon:59919","l":"Prochlorococcus marinus subsp. pastoris str. CCMP1986","na":3,"nb":2,"a":[["marginal-sea-biome-envo-01000046.html","marginal sea biome"],["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"],["sea-envo-00000016.html","sea"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF12288","Carboxysome shell peptide mid-region"]]},{"id":"NCBITaxon:65393","l":"","na":2,"nb":3,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["Pfam%3APF13720","Udp N-acetylglucosamine O-acyltransferase; Domain 2"],["TED%3AAF-B7K6Y8-F1-model_v4_TED03","TED novel fold AF-B7K6Y8-F1-model_v4_TED03"],["TED%3AAF-B7KGW4-F1-model_v4_TED01","TED novel fold AF-B7KGW4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:6669","l":"Daphnia pulex","na":3,"nb":2,"a":[["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"],["neritic-epipelagic-zone-biome-envo-01000042.html","neritic epipelagic zone biome"],["sea-shore-envo-00000485.html","sea shore"]],"b":[["TED%3AAF-E9GQ61-F1-model_v4_TED02","TED novel fold AF-E9GQ61-F1-model_v4_TED02"],["TED%3AAF-E9I2W7-F1-model_v4_TED04","TED novel fold AF-E9I2W7-F1-model_v4_TED04"]]},{"id":"NCBITaxon:714","l":"Aggregatibacter actinomycetemcomitans","na":2,"nb":3,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["Pfam%3APF10137","CAP12/Pycsar effector protein, TIR domain"],["Pfam%3APF25988","CyaD, alpha-helical hairpin domain"],["PROSITE%3APS00543","HlyD family secretion proteins signature"]]},{"id":"NCBITaxon:8090","l":"Oryzias latipes","na":2,"nb":3,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["Pfam%3APF24979","EDAR death domain"],["Pfam%3APF24796","WDR55"],["TED%3AAF-A0A3P9JIT2-F1-model_v4_TED01","TED novel fold AF-A0A3P9JIT2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:889378","l":"Spirochaeta africana DSM 8902","na":3,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["alkaline-water-envo-01000357.html","alkaline water"],["brine-envo-00003044.html","brine"]],"b":[["TED%3AAF-H9UHS0-F1-model_v4_TED01","TED highly-symmetric fold AF-H9UHS0-F1-model_v4_TED01"],["TED%3AAF-H9UIK6-F1-model_v4_TED01","TED novel fold AF-H9UIK6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1032476","l":"Nonomuraea soli","na":2,"nb":2,"a":[["soil-envo-00001998.html","soil"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-A0A7W0HQS4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7W0HQS4-F1-model_v4_TED03"],["TED%3AAF-A0A7W0CFM2-F1-model_v4_TED01","TED novel fold AF-A0A7W0CFM2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1110509","l":"","na":2,"nb":2,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["cob-bto-0000266.html","cob"]],"b":[["Pfam%3APF05228","CHASE4 domain"],["Pfam%3APF08350","Methanogenesis regulatory protein FilR1, middle domain"]]},{"id":"NCBITaxon:1121395","l":"Desulfitobacterium chlororespirans DSM 11544","na":2,"nb":2,"a":[["compost-envo-00002170.html","compost"],["waste-material-envo-00002264.html","waste material"]],"b":[["TED%3AAF-A0A1M7UUA6-F1-model_v4_TED02","TED novel fold AF-A0A1M7UUA6-F1-model_v4_TED02"],["TED%3AAF-A0A1M7UUA6-F1-model_v4_TED03","TED novel fold AF-A0A1M7UUA6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1295","l":"Staphylococcus schleiferi","na":2,"nb":2,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["foot-bto-0000476.html","foot"]],"b":[["Pfam%3APF18153","Cap15, cyclic dinucleotide receptor domain"],["Pfam%3APF26305","cGAS/DncV-like nucleotidyltransferase C-terminal helical domain"]]},{"id":"NCBITaxon:1303","l":"Streptococcus oralis","na":2,"nb":2,"a":[["throat-bto-0000828.html","throat"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Pfam%3APF03047","COMC family"],["TED%3AAF-A0A139PPG4-F1-model_v4_TED02","TED novel fold AF-A0A139PPG4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1527","l":"Anaerocolumna aminovalerica","na":2,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"]],"b":[["TED%3AAF-A0A1I5I955-F1-model_v4_TED02","TED novel fold AF-A0A1I5I955-F1-model_v4_TED02"],["TED%3AAF-A0A1I5ILH1-F1-model_v4_TED04","TED novel fold AF-A0A1I5ILH1-F1-model_v4_TED04"]]},{"id":"NCBITaxon:156889","l":"Magnetococcus marinus MC-1","na":2,"nb":2,"a":[["estuary-envo-00000045.html","estuary"],["marine-neritic-zone-envo-00000206.html","marine neritic zone"]],"b":[["Pfam%3APF02622","AlgH-like"],["Pfam%3APF04279","Intracellular septation protein A"]]},{"id":"NCBITaxon:180282","l":"Delftia tsuruhatensis","na":2,"nb":2,"a":[["surface-water-envo-00002042.html","surface water"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["TED%3AAF-A0A1D8JBF2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1D8JBF2-F1-model_v4_TED01"],["TED%3AAF-A0A5P8XEZ5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5P8XEZ5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:194963","l":"Sinorhizobium americanum","na":2,"nb":2,"a":[["root-nodule-envo-01000164.html","root nodule"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["TED%3AAF-A0A2S3YNG1-F1-model_v4_TED01","TED novel fold AF-A0A2S3YNG1-F1-model_v4_TED01"],["TED%3AAF-A0A4R2AWY1-F1-model_v4_TED01","TED novel fold AF-A0A4R2AWY1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2024826","l":"Blastopirellula sp.","na":2,"nb":2,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["TED%3AAF-A0A2E0B0H3-F1-model_v4_TED02","TED novel fold AF-A0A2E0B0H3-F1-model_v4_TED02"],["TED%3AAF-A0A2G2IUT2-F1-model_v4_TED02","TED novel fold AF-A0A2G2IUT2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:257314","l":"","na":2,"nb":2,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["Pfam%3APF10439","Bacteriocin class II with double-glycine leader peptide"],["Pfam%3APF02435","Levansucrase/Invertase"]]},{"id":"NCBITaxon:271848","l":"Burkholderia thailandensis E264","na":2,"nb":2,"a":[["needle-bto-0000917.html","needle"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["Pfam%3APF12091","Protein of unknown function (DUF3567)"],["Pfam%3APF01075","Glycosyltransferase family 9 (heptosyltransferase)"]]},{"id":"NCBITaxon:2748","l":"Carnobacterium divergens","na":2,"nb":2,"a":[["food-product-foodon-00001002.html","food product"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["TED%3AAF-A0A7Z8CZ16-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Z8CZ16-F1-model_v4_TED02"],["TED%3AAF-A0A5F0MGI8-F1-model_v4_TED01","TED novel fold AF-A0A5F0MGI8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28141","l":"Cronobacter sakazakii","na":2,"nb":2,"a":[["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["TED%3AAF-A0A855WTZ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A855WTZ2-F1-model_v4_TED01"],["TED%3AAF-A0A855WPZ3-F1-model_v4_TED01","TED novel fold AF-A0A855WPZ3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28185","l":"Spirochaeta sp.","na":2,"nb":2,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["TED%3AAF-A0A3C0SUV0-F1-model_v4_TED03","TED novel fold AF-A0A3C0SUV0-F1-model_v4_TED03"],["TED%3AAF-A0A6N7M3Q7-F1-model_v4_TED01","TED novel fold AF-A0A6N7M3Q7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:283166","l":"Bartonella henselae str. Houston-1","na":2,"nb":2,"a":[["endothelial-cell-bto-0001176.html","endothelial cell"],["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["Pfam%3APF18543","Intracellular delivery domain"],["Pfam%3APF03524","Conjugal transfer protein"]]},{"id":"NCBITaxon:393664","l":"","na":2,"nb":2,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["TED%3AAF-A0A7W4XHJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W4XHJ9-F1-model_v4_TED01"],["TED%3AAF-A0A7W4SSW3-F1-model_v4_TED01","TED novel fold AF-A0A7W4SSW3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:39488","l":"Anaerobutyricum hallii","na":2,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"],["harbour-envo-00000463.html","harbour"]],"b":[["TED%3AAF-A0A414B1Y3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A414B1Y3-F1-model_v4_TED01"],["TED%3AAF-A0A415G3S7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A415G3S7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:39490","l":"Eubacterium ramulus","na":2,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"],["harbour-envo-00000463.html","harbour"]],"b":[["TED%3AAF-A0A173V5Z6-F1-model_v4_TED02","TED novel fold AF-A0A173V5Z6-F1-model_v4_TED02"],["TED%3AAF-A0A2V1JWA1-F1-model_v4_TED05","TED novel fold AF-A0A2V1JWA1-F1-model_v4_TED05"]]},{"id":"NCBITaxon:399741","l":"Serratia proteamaculans 568","na":2,"nb":2,"a":[["pleura-bto-0001791.html","pleura"],["seedling-bto-0001228.html","seedling"]],"b":[["Pfam%3APF09012","FeoC like transcriptional regulator"],["Pfam%3APF05488","PAAR motif"]]},{"id":"NCBITaxon:426128","l":"Natronincola peptidivorans","na":2,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["TED%3AAF-A0A1I0EK12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I0EK12-F1-model_v4_TED01"],["TED%3AAF-A0A1I0H2J6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I0H2J6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:426418","l":"Pyrenophora tritici-repentis Pt-1C-BFP","na":2,"nb":2,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-B2VYP9-F1-model_v4_TED01","TED novel fold AF-B2VYP9-F1-model_v4_TED01"],["TED%3AAF-B2VZ40-F1-model_v4_TED02","TED novel fold AF-B2VZ40-F1-model_v4_TED02"]]},{"id":"NCBITaxon:435590","l":"Phocaeicola vulgatus ATCC 8482","na":2,"nb":2,"a":[["bay-envo-00000032.html","bay"],["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["Pfam%3APF13444","Acetyltransferase (GNAT) domain"],["Pfam%3APF19576","Acyltransferase"]]},{"id":"NCBITaxon:474952","l":"Granulicella rosea","na":2,"nb":2,"a":[["wetland-area-envo-00000043.html","wetland area"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A239KLB2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A239KLB2-F1-model_v4_TED01"],["TED%3AAF-A0A239CX56-F1-model_v4_TED02","TED novel fold AF-A0A239CX56-F1-model_v4_TED02"]]},{"id":"NCBITaxon:479434","l":"Sphaerobacter thermophilus DSM 20745","na":2,"nb":2,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-D1C926-F1-model_v4_TED01","TED highly-symmetric fold AF-D1C926-F1-model_v4_TED01"],["TED%3AAF-D1C9G8-F1-model_v4_TED01","TED highly-symmetric fold AF-D1C9G8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:48296","l":"Acinetobacter pittii","na":2,"nb":2,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["TED%3AAF-A0A3R9S6D0-F1-model_v4_TED03","TED novel fold AF-A0A3R9S6D0-F1-model_v4_TED03"],["TED%3AAF-A0A6P1SKX2-F1-model_v4_TED04","TED novel fold AF-A0A6P1SKX2-F1-model_v4_TED04"]]},{"id":"NCBITaxon:55209","l":"Pantoea cypripedii","na":2,"nb":2,"a":[["leaf-po-0025034.html","leaf"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["Pfam%3APF13618","Gluconate 2-dehydrogenase subunit 3"],["TED%3AAF-A0A1X1EQM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1X1EQM9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:56811","l":"Psychrobacter sp.","na":2,"nb":2,"a":[["marine-water-body-envo-00001999.html","marine water body"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["TED%3AAF-A0A350DM46-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A350DM46-F1-model_v4_TED01"],["TED%3AAF-A0A353XTU7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A353XTU7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:572546","l":"Archaeoglobus profundus DSM 5631","na":2,"nb":2,"a":[["inlet-envo-00000475.html","inlet"],["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["TED%3AAF-D2RFB5-F1-model_v4_TED02","TED highly-symmetric fold AF-D2RFB5-F1-model_v4_TED02"],["TED%3AAF-D2RE38-F1-model_v4_TED02","TED novel fold AF-D2RE38-F1-model_v4_TED02"]]},{"id":"NCBITaxon:577","l":"Klebsiella terrigena","na":2,"nb":2,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["TED%3AAF-A0A485AWY7-F1-model_v4_TED01","TED novel fold AF-A0A485AWY7-F1-model_v4_TED01"],["TED%3AAF-A0A4U9DC68-F1-model_v4_TED02","TED novel fold AF-A0A4U9DC68-F1-model_v4_TED02"]]},{"id":"NCBITaxon:59201","l":"Salmonella enterica subsp. enterica","na":2,"nb":2,"a":[["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["TED%3AAF-A0A711ED47-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A711ED47-F1-model_v4_TED01"],["TED%3AAF-A0A5U3EZQ4-F1-model_v4_TED01","TED novel fold AF-A0A5U3EZQ4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:59405","l":"Thauera aromatica","na":2,"nb":2,"a":[["sludge-envo-00002044.html","sludge"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF18512","Benzylsuccinate synthase beta subunit"],["Pfam%3APF08201","BssC/TutF protein"]]},{"id":"NCBITaxon:61646","l":"Lelliottia amnigena","na":2,"nb":2,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["Pfam%3APF17425","Arylsulfotransferase Ig-like domain"],["Pfam%3APF05935","Arylsulfotransferase (ASST)"]]},{"id":"NCBITaxon:633","l":"Yersinia pseudotuberculosis","na":2,"nb":2,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["Pfam%3APF03421","YopJ Serine/Threonine acetyltransferase"],["Pfam%3APF01041","DegT/DnrJ/EryC1/StrS aminotransferase family"]]},{"id":"NCBITaxon:647113","l":"Methanothermococcus okinawensis IH1","na":2,"nb":2,"a":[["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["TED%3AAF-F8ANV0-F1-model_v4_TED01","TED highly-symmetric fold AF-F8ANV0-F1-model_v4_TED01"],["TED%3AAF-F8AK92-F1-model_v4_TED02","TED novel fold AF-F8AK92-F1-model_v4_TED02"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":2,"nb":2,"a":[["watercourse-envo-00000029.html","watercourse"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["TED%3AAF-B5UAE0-F1-model_v4_TED01","TED highly-symmetric fold AF-B5UAE0-F1-model_v4_TED01"],["TED%3AAF-A0A3E1IF45-F1-model_v4_TED01","TED novel fold AF-A0A3E1IF45-F1-model_v4_TED01"]]},{"id":"NCBITaxon:7029","l":"Acyrthosiphon pisum","na":2,"nb":2,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["TED%3AAF-J9KQC4-F1-model_v4_TED01","TED novel fold AF-J9KQC4-F1-model_v4_TED01"],["TED%3AAF-J9L4U4-F1-model_v4_TED02","TED novel fold AF-J9L4U4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:7209","l":"Loa loa","na":2,"nb":2,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["TED%3AAF-A0A1I7VCR8-F1-model_v4_TED01","TED novel fold AF-A0A1I7VCR8-F1-model_v4_TED01"],["TED%3AAF-A0A1S0U4H9-F1-model_v4_TED02","TED novel fold AF-A0A1S0U4H9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:746697","l":"Aequorivita sublithincola DSM 14238","na":2,"nb":2,"a":[["hill-envo-00000083.html","hill"],["seamount-envo-00000264.html","seamount"]],"b":[["TED%3AAF-I3YW66-F1-model_v4_TED01","TED highly-symmetric fold AF-I3YW66-F1-model_v4_TED01"],["TED%3AAF-I3YWC3-F1-model_v4_TED01","TED highly-symmetric fold AF-I3YWC3-F1-model_v4_TED01"]]},{"id":"UBERON:0001723","l":"","na":2,"nb":2,"a":[["tongue-habitatmech-gold-334001c233.html","Tongue"],["tongue-habitatmech-gold-8587dba825.html","Tongue"]],"b":[["GO%3A0043586","tongue development"],["GO%3A0043587","tongue morphogenesis"]]},{"id":"GO:0005622","l":"intracellular anatomical structure","na":1,"nb":524,"a":[["molluscan-gill-intracellular-environment-habitatmech-gold-0ac09185d9.html","molluscan gill intracellular environment"]],"b":[["GO%3A0070477","endospore core"],["GO%3A0005727","extrachromosomal circular DNA"],["GO%3A0046821","extrachromosomal DNA"],["GO%3A0016234","inclusion body"],["GO%3A0005622","intracellular anatomical structure"],["GO%3A0070090","metaphase plate"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":297,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["IDPO%3A0000002","disorder"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000045","phosphorylation display site"],["IDPO%3A0000059","self-inhibition"],["Pfam%3APF17837","4'-phosphopantetheinyl transferase N-terminal domain"]]},{"id":"GO:0005615","l":"","na":1,"nb":292,"a":[["molluscan-gill-extracellular-environment-habitatmech-gold-6c8238add0.html","molluscan gill extracellular environment"]],"b":[["ComplexPortal%3ACPX-6224","Active Protein C complex"],["ComplexPortal%3ACPX-6222","alpha-thrombin complex"],["ComplexPortal%3ACPX-5601","Alternative pathway C3 convertase complex C3bBb"],["ComplexPortal%3ACPX-5894","Alternative pathway C3 convertase complex C3bBb"],["ComplexPortal%3ACPX-5381","Alternative pathway fluid-phase C3 convertase complex C3(H2O)Bb"],["ComplexPortal%3ACPX-5893","Alternative pathway fluid-phase C3 convertase complex C3(H2O)Bb"]]},{"id":"NCBITaxon:7955","l":"Danio rerio","na":1,"nb":261,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["IDPO%3A0000019","disorder to pre-molten globule"],["Pfam%3APF16096","Fragile X-related 1 protein C-terminal region 2"],["Pfam%3APF16605","LSM-interacting associated unstructured"],["Pfam%3APF17229","Serine/threonine-protein kinase SMG1 N-terminal"],["Pfam%3APF16195","SUMO-activating enzyme subunit 2 C-terminus"],["Pfam%3APF00709","Adenylosuccinate synthetase"]]},{"id":"NCBITaxon:1978231","l":"Acidobacteriota bacterium","na":1,"nb":186,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2E4W649-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4W649-F1-model_v4_TED01"],["TED%3AAF-A0A2P6WIX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P6WIX4-F1-model_v4_TED01"],["TED%3AAF-A0A2V2RP64-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V2RP64-F1-model_v4_TED01"],["TED%3AAF-A0A2V7TZP2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V7TZP2-F1-model_v4_TED01"],["TED%3AAF-A0A2V7USQ3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V7USQ3-F1-model_v4_TED02"],["TED%3AAF-A0A2V7V8X8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V7V8X8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa (strain ATCC 15692 / DSM 22644 / CIP 104116 / JCM 14847 / LMG 12228 / 1C / PRS 101 / PAO1)","na":1,"nb":162,"a":[["style-bto-0001313.html","style"]],"b":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF06750","Bacterial Peptidase A24 N-terminal domain"],["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF28403","Aconitase X second domain"],["Pfam%3APF28406","Aconitase X third domain"],["Pfam%3APF04412","Aconitase X first domain"]]},{"id":"NCBITaxon:71421","l":"Haemophilus influenzae (strain ATCC 51907 / DSM 11121 / KW20 / Rd)","na":1,"nb":133,"a":[["respiratory-mucosa-bto-0000973.html","respiratory mucosa"]],"b":[["Pfam%3APF13521","AAA domain"],["Pfam%3APF13654","LonB-like, AAA domain"],["Pfam%3APF16326","ABC transporter C-terminal domain"],["Pfam%3APF13710","ACT domain"],["Pfam%3APF12633","Adenylate cyclase NT domain"],["Pfam%3APF26690","Adenylate cyclase, class-I, third domain"]]},{"id":"NCBITaxon:83334","l":"Escherichia coli O157:H7","na":1,"nb":130,"a":[["uterus-bto-0001424.html","uterus"]],"b":[["IDPO%3A0000011","disorder to order"],["IDPO%3A0000014","order to disorder"],["Pfam%3APF12343","DeaD helicase C-terminal disordered region"],["Pfam%3APF26539","YhiD C-terminal ACT domain"],["Pfam%3APF01081","KDPG and KHG aldolase"],["Pfam%3APF10423","Bacterial AMP nucleoside phosphorylase N-terminus"]]},{"id":"NCBITaxon:1898207","l":"Clostridiales bacterium","na":1,"nb":63,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["TED%3AAF-A0A239QGX8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A239QGX8-F1-model_v4_TED02"],["TED%3AAF-A0A2V2DI93-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V2DI93-F1-model_v4_TED02"],["TED%3AAF-A0A2V2EHK5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V2EHK5-F1-model_v4_TED02"],["TED%3AAF-A0A2V2G296-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2V2G296-F1-model_v4_TED03"],["TED%3AAF-A0A316P962-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A316P962-F1-model_v4_TED03"],["TED%3AAF-A0A316PDC9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A316PDC9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:233413","l":"Mycobacterium bovis (strain ATCC BAA-935 / AF2122/97)","na":1,"nb":52,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF12625","Arabinose-binding domain of AraC transcription regulator, N-term"],["Pfam%3APF21139","Methylcrotonyl-CoA carboxylase, alpha-subunit, BT domain"],["Pfam%3APF09167","Domain of unknown function (DUF1942)"],["Pfam%3APF09438","Domain of unknown function (DUF2017)"],["Pfam%3APF12823","Domain of unknown function (DUF3817)"]]},{"id":"NCBITaxon:2026742","l":"Gemmatimonadota bacterium","na":1,"nb":49,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2D8UDK3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D8UDK3-F1-model_v4_TED02"],["TED%3AAF-A0A2E8HI53-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E8HI53-F1-model_v4_TED02"],["TED%3AAF-A0A2V7GTY6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2V7GTY6-F1-model_v4_TED03"],["TED%3AAF-A0A2V7KRA4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V7KRA4-F1-model_v4_TED01"],["TED%3AAF-A0A2V7S355-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V7S355-F1-model_v4_TED01"],["TED%3AAF-A0A3M2BQU6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M2BQU6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:186497","l":"Pyrococcus furiosus (strain ATCC 43587 / DSM 3638 / JCM 8422 / Vc1)","na":1,"nb":41,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF01314","Aldehyde ferredoxin oxidoreductase, domains 2 & 3"],["Pfam%3APF02730","Aldehyde ferredoxin oxidoreductase, N-terminal domain"],["Pfam%3APF22476","Argonaute, N-terminal domain"],["Pfam%3APF09094","Alpha-amylase/4-alpha-glucanotransferase, middle domain"],["Pfam%3APF09095","Alpha-amylase/4-alpha-glucanotransferase, C-terminal"]]},{"id":"NCBITaxon:2","l":"Bacteria","na":40,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["factory-envo-01000536.html","factory"],["adult-bto-0001043.html","adult"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2","Bacteria orthologous groups (OrthoDB)"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima (strain ATCC 43589 / DSM 3109 / JCM 10099 / NBRC 100826 / MSB8)","na":1,"nb":39,"a":[["feather-bto-0000447.html","feather"]],"b":[["Pfam%3APF02829","3H domain"],["Pfam%3APF13175","AAA ATPase domain"],["Pfam%3APF01958","Aspartate dehydrogenase, C-terminal"],["Pfam%3APF05448","Acetyl xylan esterase (AXE1)"],["Pfam%3APF04509","CheC-like family"],["Pfam%3APF13690","Chemotaxis phosphatase CheX"]]},{"id":"NCBITaxon:36987","l":"Coptotermes formosanus","na":38,"nb":1,"a":[["black-smoker-envo-00000218.html","black smoker"],["coastal-sea-water-envo-00002150.html","coastal sea water"],["eutrophic-water-envo-00002224.html","eutrophic water"],["marine-bathyal-zone-biome-envo-01000026.html","marine bathyal zone biome"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"]],"b":[["TED%3AAF-A0A6L2PKM4-F1-model_v4_TED01","TED novel fold AF-A0A6L2PKM4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:273057","l":"Saccharolobus solfataricus (strain ATCC 35092 / DSM 1617 / JCM 11322 / P2)","na":1,"nb":37,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["Pfam%3APF02294","7kD DNA-binding domain"],["Pfam%3APF02675","S-adenosylmethionine decarboxylase"],["Pfam%3APF09071","Alpha-amylase, C terminal"],["Pfam%3APF17952","Cas6 N-terminal domain"],["Pfam%3APF27338","Cytochrome b558/566 subunit B"],["Pfam%3APF22703","Cdc6 AAA+ ATPase-type lid domain"]]},{"id":"NCBITaxon:1898203","l":"Lachnospiraceae bacterium","na":1,"nb":35,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["TED%3AAF-A0A2G3Q064-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G3Q064-F1-model_v4_TED01"],["TED%3AAF-A0A316PVU3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A316PVU3-F1-model_v4_TED02"],["TED%3AAF-A0A349YHB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349YHB4-F1-model_v4_TED01"],["TED%3AAF-A0A349ZVK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349ZVK2-F1-model_v4_TED01"],["TED%3AAF-A0A354ID29-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A354ID29-F1-model_v4_TED04"],["TED%3AAF-A0A355NJL5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A355NJL5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2026801","l":"Verrucomicrobiales bacterium","na":1,"nb":33,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2D5AKS0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D5AKS0-F1-model_v4_TED01"],["TED%3AAF-A0A2D9K0M4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9K0M4-F1-model_v4_TED01"],["TED%3AAF-A0A2E0QW10-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0QW10-F1-model_v4_TED01"],["TED%3AAF-A0A2E5EQN4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E5EQN4-F1-model_v4_TED02"],["TED%3AAF-A0A2E5WTV4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E5WTV4-F1-model_v4_TED01"],["TED%3AAF-A0A350EXF0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A350EXF0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:170187","l":"Streptococcus pneumoniae serotype 4 (strain ATCC BAA-334 / TIGR4)","na":1,"nb":32,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["Pfam%3APF25935","LcnD-like, barrel-sandwich hybrid domain"],["Pfam%3APF22637","BppA domain 1"],["Pfam%3APF18146","Damage-inducible protein CinA KH domain"],["Pfam%3APF27342","ComB N-terminal domain"],["Pfam%3APF26697","Competence protein ComGC, C-terminal domain"],["Pfam%3APF23117","DpnD N-terminal domain"]]},{"id":"NCBITaxon:243273","l":"Mycoplasmoides genitalium (strain ATCC 33530 / DSM 19775 / NCTC 10195 / G37)","na":1,"nb":31,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF03257","Mycoplasma adhesin P1, C-terminal"],["Pfam%3APF09185","Domain of unknown function (DUF1948)"],["Pfam%3APF09188","Domain of unknown function (DUF1951)"],["Pfam%3APF03072","Domain of unknown function (DUF237)"],["Pfam%3APF03086","Domain of unknown function (DUF240)"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":29,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["Pfam%3APF09156","Anthrax toxin lethal factor, middle domain"],["Pfam%3APF08401","N-terminal domain of anti-restriction factor ArdC"],["Pfam%3APF07737","Anthrax toxin lethal factor, N- and C-terminal domain"],["Pfam%3APF27053","Bacillus anthracis plasmid pXO2 protein 26"],["Pfam%3APF13205","Bacterial Ig-like domain"],["Pfam%3APF17475","Clostridial binary toxin B/anthrax toxin PA domain 2"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":1,"nb":26,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["Pfam%3APF27270","Alr1449"],["Pfam%3APF27301","Alr2735 N-terminal domain"],["Pfam%3APF27288","Alr2735"],["Pfam%3APF21571","Arginine dihydrolase ArgZ-like, C-terminal, first region"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF13205","Bacterial Ig-like domain"]]},{"id":"NCBITaxon:226186","l":"Bacteroides thetaiotaomicron (strain ATCC 29148 / DSM 2079 / JCM 5827 / CCUG 10774 / NCTC 10582 / VPI-5482 / E50)","na":1,"nb":25,"a":[["gut-epithelium-bto-0000956.html","gut epithelium"]],"b":[["Pfam%3APF06439","3-keto-alpha-glucoside-1,2-lyase-like domain"],["Pfam%3APF13444","Acetyltransferase (GNAT) domain"],["Pfam%3APF19576","Acyltransferase"],["Pfam%3APF23764","GLAA-B beta-barrel domain II"],["Pfam%3APF13715","CarboxypepD_reg-like domain"],["Pfam%3APF26120","SusF, first starch specific CBM"]]},{"id":"NCBITaxon:160488","l":"Pseudomonas putida (strain ATCC 47054 / DSM 6125 / CFBP 8728 / NCIMB 11950 / KT2440)","na":1,"nb":24,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF00842","Alanine racemase, C-terminal domain"],["Pfam%3APF01168","Alanine racemase, N-terminal domain"],["Pfam%3APF13372","Alginate export"],["Pfam%3APF03705","CheR methyltransferase, all-alpha domain"],["Pfam%3APF01739","CheR methyltransferase, SAM binding domain"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":19,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["saline-water-body-envo-01001319.html","saline water body"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["Pfam%3APF03437","BtpA family"]]},{"id":"NCBITaxon:1871066","l":"Mesorhizobium sp.","na":1,"nb":18,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["TED%3AAF-A0A3S3GQ11-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S3GQ11-F1-model_v4_TED01"],["TED%3AAF-A0A439J515-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A439J515-F1-model_v4_TED03"],["TED%3AAF-A0A439JC49-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A439JC49-F1-model_v4_TED01"],["TED%3AAF-A0A439N076-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A439N076-F1-model_v4_TED01"],["TED%3AAF-A0A442WFH9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A442WFH9-F1-model_v4_TED03"],["TED%3AAF-A0A529PFR3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A529PFR3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1018","l":"Capnocytophaga ochracea","na":17,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["gut-bto-0000545.html","gut"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"]],"b":[["TED%3AAF-A0A2X2T3Z4-F1-model_v4_TED01","TED novel fold AF-A0A2X2T3Z4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:208963","l":"Pseudomonas aeruginosa (strain UCBPP-PA14)","na":1,"nb":17,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF21384","CRISPR-associated nuclease/helicase Cas3, I-F/YPEST, Cas2 domain"],["Pfam%3APF21802","CRISPR-associated Cas3 subtype I-F/YPEST-like, C-terminal domain"],["Pfam%3APF20975","DGC-associated coil"],["Pfam%3APF19502","Nucleotidyltransferase of unknown function (DUF6036)"]]},{"id":"NCBITaxon:210007","l":"Streptococcus mutans serotype c (strain ATCC 700610 / UA159)","na":1,"nb":17,"a":[["tooth-bto-0000397.html","tooth"]],"b":[["Pfam%3APF18652","Adhesin P1 N-terminal domain"],["Pfam%3APF17998","Cell surface antigen I/II C2 terminal domain"],["Pfam%3APF16364","Cell surface antigen C-terminus"],["Pfam%3APF12733","Cadherin-like beta sandwich domain"],["Pfam%3APF05737","Collagen binding domain"],["Pfam%3APF21537","DUF1980 C-terminal domain"]]},{"id":"NCBITaxon:69014","l":"Thermococcus kodakarensis (strain ATCC BAA-918 / JCM 12380 / KOD1)","na":1,"nb":17,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["Pfam%3APF08546","Ketopantoate reductase PanE/ApbA C terminal"],["Pfam%3APF02558","Ketopantoate reductase PanE/ApbA"],["Pfam%3APF09210","1,4-alpha-glucan branching enzyme, C-terminal"],["Pfam%3APF01861","Branched-chain polyamine synthase A C-terminal domain"],["Pfam%3APF27272","Cyclic 2,3-diphosphoglycerate synthetase, N-terminal domain"],["Pfam%3APF17884","Domain of unknown function (DUF5591)"]]},{"id":"NCBITaxon:9615","l":"Canis lupus familiaris","na":1,"nb":16,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["Pfam%3APF14797","Serine-rich region of AP3B1, clathrin-adaptor complex"],["Pfam%3APF22627","AglB core domain"],["Pfam%3APF09064","Thrombomodulin like fifth domain, EGF-like"],["Pfam%3APF14828","Amnionless"],["Pfam%3APF03669","PAT complex subunit Asterix"],["Pfam%3APF07946","PAT complex subunit CCDC47"]]},{"id":"NCBITaxon:106370","l":"Frankia casuarinae","na":14,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["river-envo-00000022.html","river"],["rhizosphere-envo-00005801.html","rhizosphere"],["root-nodule-bto-0001190.html","root nodule"],["biome-envo-00000428.html","biome"],["biotope-envo-00002036.html","biotope"]],"b":[["Pfam%3APF14403","Circularly permuted ATP-grasp type 2"]]},{"id":"NCBITaxon:1360","l":"Lactococcus lactis subsp. lactis","na":1,"nb":14,"a":[["foregut-bto-0000507.html","foregut"]],"b":[["Pfam%3APF08951","Bacteriocin immunity protein family"],["Pfam%3APF08998","Bacterial epsilon antitoxin"],["Pfam%3APF25887","LcnD-like, long helical bundle domain"],["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF25940","LcnD-like, C-terminal domain"],["Pfam%3APF08129","Alpha/beta enterocin family"]]},{"id":"NCBITaxon:1590","l":"Lactiplantibacillus plantarum","na":14,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["food-fermented-foodon-00001258.html","food (fermented)"],["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"],["breast-bto-0000149.html","breast"],["colonic-epithelium-bto-0001709.html","colonic epithelium"],["epithelial-cell-bto-0000414.html","epithelial cell"]],"b":[["Pfam%3APF06314","Acetoacetate decarboxylase (ADC)"]]},{"id":"CHEBI:16183","l":"methane","na":1,"nb":13,"a":[["methane-bioremediation-material-habitatmech-gold-d510166905.html","methane bioremediation material"]],"b":[["EC%3A1.14.13.25","methane monooxygenase (soluble)"],["EC%3A1.14.18.3","methane monooxygenase (particulate)"],["EC%3A2.8.4.1","coenzyme-B sulfoethylthiotransferase"],["EC%3A4.7.1.1","alpha-D-ribose 1-methylphosphonate 5-phosphate C-P-lyase"],["RHEA%3A34707","alpha-D-ribose 1-methylphosphonate 5-phosphate + AH2 + S-adenosyl-L-methionine = alpha-D-ribose 1,2-cyclic phosphate 5-phosphate + methane + 5'-deoxyadenosine + L-methionine + A + H(+)"],["RHEA%3A12532","coenzyme B + methyl-coenzyme M = methane + coenzyme M-coenzyme B heterodisulfide"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":13,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["Pfam%3APF07832","Cfr10I/Bse634I restriction endonuclease"],["Pfam%3APF22348","Colicin-A N-terminal domain"],["Pfam%3APF01024","Colicin pore forming domain"],["Pfam%3APF18427","DD-reactivating factor swiveling domain"],["Pfam%3APF02286","Dehydratase large subunit"],["Pfam%3APF02288","Dehydratase medium subunit"]]},{"id":"NCBITaxon:104268","l":"Tenacibaculum mesophilum","na":12,"nb":1,"a":[["bay-envo-00000032.html","bay"],["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"],["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"]],"b":[["TED%3AAF-A0A1M5HMT5-F1-model_v4_TED01","TED novel fold AF-A0A1M5HMT5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:107401","l":"Tenacibaculum maritimum","na":12,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["low-tide-zone-envo-00000319.html","low tide zone"],["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A5S9T7W6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5S9T7W6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1596","l":"Lactobacillus gasseri","na":12,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["catheter-device-ncit-c50344.html","Catheter Device"],["city-envo-00000856.html","city"],["egg-food-product-foodon-00001274.html","egg food product"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"]],"b":[["TED%3AAF-A0A845FIT3-F1-model_v4_TED02","TED novel fold AF-A0A845FIT3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus ATCC 27405","na":1,"nb":12,"a":[["blood-plasma-bto-0000131.html","blood plasma"]],"b":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["Pfam%3APF00942","Cellulose binding domain"],["Pfam%3APF17996","Carbohydrate esterase 2 N-terminal"],["Pfam%3APF00963","Cohesin domain"],["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF00404","Dockerin type I domain"]]},{"id":"NCBITaxon:272942","l":"Rhodobacter capsulatus (strain ATCC BAA-309 / NBRC 16581 / SB1003)","na":1,"nb":12,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["Pfam%3APF02553","Cobalt transport protein component CbiN"],["Pfam%3APF03379","CcmB protein"],["Pfam%3APF27123","Carotenoid hydratase CrtC"],["Pfam%3APF14715","N-terminal domain of cytochrome oxidase-cbb3, FixP"],["Pfam%3APF07284","2-vinyl bacteriochlorophyllide hydratase (BCHF)"],["Pfam%3APF02571","Precorrin-6x reductase CbiJ/CobK"]]},{"id":"NCBITaxon:469383","l":"Conexibacter woesei DSM 14684","na":12,"nb":1,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["oil-spill-envo-00002061.html","oil spill"],["village-biome-envo-01000246.html","village biome"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["TED%3AAF-D3FEY8-F1-model_v4_TED03","TED highly-symmetric fold AF-D3FEY8-F1-model_v4_TED03"]]},{"id":"NCBITaxon:471472","l":"Chlamydia trachomatis serovar L2 (strain ATCC VR-902B / DSM 19102 / 434/Bu)","na":1,"nb":12,"a":[["lymph-node-bto-0000784.html","lymph node"]],"b":[["Pfam%3APF07382","Histone H1-like nucleoprotein HC2"],["Pfam%3APF05475","Pgp3 C-terminal domain"],["Pfam%3APF22368","Response regulator protein ChxR, N-terminal domain"],["Pfam%3APF01345","CLIPPER domain"],["Pfam%3APF07577","Domain of Unknown Function (DUF1547)"],["Pfam%3APF03503","Chlamydia cysteine-rich outer membrane protein 3"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":11,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"],["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["laboratory-facility-envo-01001406.html","laboratory facility"],["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["bone-element-uberon-0001474.html","bone element"],["juvenile-bto-0002168.html","juvenile"]],"b":[["Pfam%3APF08124","Polysaccharide lyase family 8, N terminal alpha-helical domain"]]},{"id":"NCBITaxon:272626","l":"Listeria innocua serovar 6a (strain ATCC BAA-680 / CLIP 11262)","na":1,"nb":11,"a":[["heart-bto-0000562.html","heart"]],"b":[["Pfam%3APF16595","PAM-interacting domain of CRISPR-associated endonuclease Cas9"],["Pfam%3APF21846","Domain of unknown function (DUF6905)"],["Pfam%3APF27405","Lin0124 C-terminal coiled-coil domain"],["Pfam%3APF14297","Lin1244/Lin1753-like, N-terminal"],["Pfam%3APF16593","Bridge helix of CRISPR-associated endonuclease Cas9"],["Pfam%3APF16592","REC lobe of CRISPR-associated endonuclease Cas9"]]},{"id":"NCBITaxon:331112","l":"Escherichia coli O9:H4 (strain HS)","na":1,"nb":11,"a":[["adrenal-gland-bto-0000047.html","adrenal gland"]],"b":[["Pfam%3APF25796","BREX ATP-binding protein BrxC 4th domain with six-stranded beta sheet"],["Pfam%3APF25792","BREX ATP-binding protein BrxC alpha helical domain"],["Pfam%3APF08747","BREX protein BrxB"],["Pfam%3APF19557","BrxC/PglY, N-terminal domain"],["Pfam%3APF13337","Lon-like protease BrxL-like, ATPase domain"],["Pfam%3APF20442","BREX system Lon protease-like protein BrxL N-terminal"]]},{"id":"NCBITaxon:4113","l":"Solanum tuberosum","na":1,"nb":11,"a":[["tuber-bto-0001400.html","tuber"]],"b":[["Pfam%3APF02977","Carboxypeptidase A inhibitor"],["Pfam%3APF01474","Class-II DAHP synthetase family"],["Pfam%3APF23229","Alpha-glucan water dikinase, DUF7067"],["Pfam%3APF02446","4-alpha-glucanotransferase"],["Pfam%3APF22973","Alpha-glucan water dikinase, phosphohistidine-like domain"],["Pfam%3APF23166","Alpha-glucan water dikinase 1 Ig-like N-terminal domain"]]},{"id":"NCBITaxon:498211","l":"Cellvibrio japonicus (strain Ueda107)","na":1,"nb":11,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["Pfam%3APF17996","Carbohydrate esterase 2 N-terminal"],["Pfam%3APF02156","Glycosyl hydrolase family 26"],["Pfam%3APF02015","Glycosyl hydrolase family 45"],["Pfam%3APF07477","Glycosyl hydrolase family 67 C-terminus"],["Pfam%3APF07488","Glycosyl hydrolase family 67 middle domain"],["Pfam%3APF03648","Glycosyl hydrolase family 67 N-terminus"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":1,"nb":11,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF02085","Class III cytochrome C family"],["Pfam%3APF06397","Desulfoferrodoxin, N-terminal domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["Pfam%3APF12797","4Fe-4S binding domain"],["Pfam%3APF06180","Cobalt chelatase (CbiK)"]]},{"id":"NCBITaxon:1058","l":"Thiocapsa roseopersicina","na":10,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["saline-marsh-envo-00000054.html","saline marsh"],["river-envo-00000022.html","river"],["waste-water-envo-00002001.html","waste water"],["environmental-feature-envo-00002297.html","environmental feature"],["stromatolite-mat-envo-00002157.html","stromatolite mat"]],"b":[["Pfam%3APF27123","Carotenoid hydratase CrtC"]]},{"id":"NCBITaxon:1399","l":"Cytobacillus firmus","na":10,"nb":1,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"],["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["TED%3AAF-A0A800NFK9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A800NFK9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:147","l":"Spirochaeta aurantia","na":10,"nb":1,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["water-body-envo-00000063.html","water body"]],"b":[["Pfam%3APF06226","Protein of unknown function (DUF1007)"]]},{"id":"NCBITaxon:192222","l":"Campylobacter jejuni subsp. jejuni NCTC 11168 = ATCC 700819","na":1,"nb":10,"a":[["flagellate-bto-0000464.html","flagellate"]],"b":[["Pfam%3APF26365","Apolipoprotein N-acyltransferase integral membrane domain"],["Pfam%3APF22131","CRISPR-associated endonuclease CjCas9 PI-CTD domain"],["Pfam%3APF22129","CRISPR-associated endonuclease CjCas9 wedge domain"],["Pfam%3APF02554","Carbon starvation protein CstA"],["Pfam%3APF27310","HrcA C-terminal domain"],["Pfam%3APF05538","Campylobacter major outer membrane protein"]]},{"id":"NCBITaxon:2026795","l":"Nitrososphaerota archaeon","na":1,"nb":10,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2E0QIG3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E0QIG3-F1-model_v4_TED02"],["TED%3AAF-A0A519CY76-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A519CY76-F1-model_v4_TED02"],["TED%3AAF-A0A533VPG5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A533VPG5-F1-model_v4_TED01"],["TED%3AAF-A0A533VS28-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A533VS28-F1-model_v4_TED01"],["TED%3AAF-A0A538P7I2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A538P7I2-F1-model_v4_TED02"],["TED%3AAF-A0A662PPJ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A662PPJ2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":1,"nb":10,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["Pfam%3APF27445","Adaptation to cold protein A"],["Pfam%3APF27450","AtcB C-terminal domain"],["Pfam%3APF27486","AtcB N-terminal domain"],["Pfam%3APF02464","CinA C-terminal domain"],["Pfam%3APF13657","HipA N-terminal domain"],["Pfam%3APF01934","Ribonuclease HepT-like"]]},{"id":"NCBITaxon:266264","l":"Cupriavidus metallidurans CH34","na":1,"nb":10,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["Pfam%3APF25973","CzcB-like, barrel-sandwich hybrid domain"],["Pfam%3APF09828","ChrB, C-terminal domain"],["Pfam%3APF20229","Protein ChrB, N-terminal"],["Pfam%3APF01923","Cobalamin adenosyltransferase"],["Pfam%3APF25975","CzcB C-terminal circularly permuted SH3-like domain"],["Pfam%3APF25971","CzcB, N-terminal domain"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":10,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["air-conditioning-unit-envo-00002874.html","air conditioning unit"],["leaf-bto-0000713.html","leaf"],["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["TED%3AAF-A0A679J1E9-F1-model_v4_TED01","TED novel fold AF-A0A679J1E9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:47715","l":"Lacticaseibacillus rhamnosus","na":10,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["fermentation-starter-envo-03600040.html","fermentation starter"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["Pfam%3APF04914","DltD protein"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":1,"nb":10,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["Pfam%3APF17433","Glycosyl hydrolase family 49 N-terminal Ig-like domain"],["PROSITE%3APS00820","Glucoamylase active site region signature"],["PROSITE%3APS00920","Nitrilases / cyanide hydratase signature 1"],["PROSITE%3APS00502","Polygalacturonase active site"],["Pfam%3APF18841","Beta solenoid repeat from Dextranase"],["Pfam%3APF03718","Glycosyl hydrolase family 49"]]},{"id":"NCBITaxon:72036","l":"Lepeophtheirus salmonis","na":1,"nb":10,"a":[["sandstone-envo-00002055.html","sandstone"]],"b":[["TED%3AAF-A0A0K2T0G4-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A0K2T0G4-F1-model_v4_TED05"],["TED%3AAF-A0A0K2UM05-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0K2UM05-F1-model_v4_TED02"],["TED%3AAF-A0A0K2UVC7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0K2UVC7-F1-model_v4_TED02"],["TED%3AAF-A0A7R8CWL1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7R8CWL1-F1-model_v4_TED02"],["TED%3AAF-A0A0K2U8Q2-F1-model_v4_TED01","TED novel fold AF-A0A0K2U8Q2-F1-model_v4_TED01"],["TED%3AAF-A0A0K2U962-F1-model_v4_TED02","TED novel fold AF-A0A0K2U962-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1017","l":"Capnocytophaga gingivalis","na":9,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biotope-envo-00002036.html","biotope"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["organic-feature-envo-01000159.html","organic feature"]],"b":[["TED%3AAF-A0A250FUG5-F1-model_v4_TED01","TED novel fold AF-A0A250FUG5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:107806","l":"Buchnera aphidicola subsp. Acyrthosiphon pisum (strain APS)","na":1,"nb":9,"a":[["embryo-bto-0000379.html","embryo"]],"b":[["Pfam%3APF21157","DnaK suppressor protein DksA, N-terminal domain"],["Pfam%3APF21158","Flagellar hook-associated protein 1, D2-like domain"],["Pfam%3APF02955","Prokaryotic glutathione synthetase, ATP-grasp domain"],["Pfam%3APF02951","Prokaryotic glutathione synthetase, N-terminal domain"],["Pfam%3APF21500","DNA polymerase III subunit delta', AAA+ ATPase lid domain"],["Pfam%3APF14840","Processivity clamp loader gamma complex DNA pol III C-term"]]},{"id":"NCBITaxon:111770","l":"Thiothrix fructosivorans","na":9,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"],["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"]],"b":[["TED%3AAF-A0A8B0SKG2-F1-model_v4_TED02","TED novel fold AF-A0A8B0SKG2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1261","l":"Peptostreptococcus anaerobius","na":9,"nb":1,"a":[["dorsum-bto-0001713.html","dorsum"],["saliva-bto-0001202.html","saliva"],["sgs-cell-bto-0001210.html","SGS cell"],["tongue-bto-0001385.html","tongue"],["urine-bto-0001419.html","urine"],["vagina-bto-0000243.html","vagina"]],"b":[["TED%3AAF-A0A379CE26-F1-model_v4_TED01","TED novel fold AF-A0A379CE26-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1904441","l":"Paracoccaceae bacterium","na":1,"nb":9,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2E3PFF7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E3PFF7-F1-model_v4_TED02"],["TED%3AAF-A0A357LNH5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A357LNH5-F1-model_v4_TED01"],["TED%3AAF-A0A3D4DSL4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D4DSL4-F1-model_v4_TED01"],["TED%3AAF-A0A6L8C0Y8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L8C0Y8-F1-model_v4_TED01"],["TED%3AAF-A0A7Y2J0I6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y2J0I6-F1-model_v4_TED01"],["TED%3AAF-A0A2E0BJC7-F1-model_v4_TED02","TED novel fold AF-A0A2E0BJC7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:226185","l":"Enterococcus faecalis (strain ATCC 700802 / V583)","na":1,"nb":9,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["Pfam%3APF13523","Acetyltransferase (GNAT) domain"],["Pfam%3APF17255","EbsA-like protein"],["Pfam%3APF22647","Deacetylase EF_0837-like composite domain"],["Pfam%3APF08858","IDEAL domain"],["Pfam%3APF02655","ATP-grasp domain"],["Pfam%3APF17400","Family of unknown function (DUF5406)"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":9,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["Pfam%3APF07835","Bacterial aa3 type cytochrome c oxidase subunit IV"],["Pfam%3APF04828","Glutathione-dependent formaldehyde-activating enzyme"],["Pfam%3APF16448","LapD/MoxY periplasmic domain"],["Pfam%3APF17267","Family of unknown function (DUF5333)"],["Pfam%3APF17272","Family of unknown function (DUF5337)"],["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":9,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["mud-envo-01000001.html","mud"]],"b":[["PROSITE%3APS01322","Phosphotriesterase family signature 1"]]},{"id":"NCBITaxon:29539","l":"Thermoleophilum album","na":9,"nb":1,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"],["desert-sand-envo-00005800.html","desert sand"],["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"],["village-biome-envo-01000246.html","village biome"]],"b":[["TED%3AAF-A0A1H6FIV6-F1-model_v4_TED01","TED novel fold AF-A0A1H6FIV6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:359391","l":"Brucella abortus (strain 2308)","na":1,"nb":9,"a":[["style-bto-0001313.html","style"]],"b":[["Pfam%3APF13444","Acetyltransferase (GNAT) domain"],["Pfam%3APF10090","Histidine phosphotransferase C-terminal domain"],["Pfam%3APF07536","HWE histidine kinase"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF07886","BA14K-like protein"],["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"]]},{"id":"NCBITaxon:405955","l":"Escherichia coli O1:K1 / APEC","na":1,"nb":9,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["Pfam%3APF07417","Sigma factor-binding transcriptional regulator Crl"],["Pfam%3APF10807","Domain of unknown function (DUF2541)"],["Pfam%3APF25878","pHBA AAEA subunit, alpha-helical hairpin domain"],["Pfam%3APF10796","Sigma-S stabilisation anti-adaptor protein"],["Pfam%3APF06693","Protein of unknown function (DUF1190)"],["Pfam%3APF06932","Protein of unknown function (DUF1283)"]]},{"id":"NCBITaxon:7668","l":"Strongylocentrotus purpuratus","na":1,"nb":9,"a":[["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["Pfam%3APF01382","Avidin family"],["Pfam%3APF02084","Bindin"],["PROSITE%3APS00577","Avidin-like domain signature"],["Pfam%3APF22494","Choice-of-anchor I domain"],["Pfam%3APF05804","Kinesin-associated protein (KAP)"],["Pfam%3APF07054","Pericardin like repeat"]]},{"id":"NCBITaxon:83462","l":"Corallococcus exiguus","na":9,"nb":1,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["feces-uberon-0001988.html","feces"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"]],"b":[["TED%3AAF-A0A7X4Y983-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X4Y983-F1-model_v4_TED01"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":9,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF25954","CusB-like, beta-barrel domain"],["Pfam%3APF13438","Domain of unknown function (DUF4113)"],["Pfam%3APF03767","HAD superfamily, subfamily IIIB (Acid phosphatase)"],["Pfam%3APF03496","ADP-ribosyltransferase exoenzyme"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":8,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["alimentary-canal-bto-0000058.html","alimentary canal"],["blood-bto-0000089.html","blood"],["small-intestine-bto-0000651.html","small intestine"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["geographic-feature-envo-00000000.html","geographic feature"]],"b":[["PROSITE%3APS01043","Transposases, IS30 family, signature"]]},{"id":"NCBITaxon:1486246","l":"Halomonas sp.","na":8,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["saline-water-body-envo-01001319.html","saline water body"],["laboratory-facility-envo-01001406.html","laboratory facility"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["TED%3AAF-A0A355PHS8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A355PHS8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":8,"a":[["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["Pfam%3APF02927","Cellulase N-terminal ig-like domain"],["Pfam%3APF00404","Dockerin type I domain"],["PROSITE%3APS00448","Clostridium cellulosome enzymes repeated domain signature"],["PROSITE%3APS60032","Glycosyl hydrolases family 9 (GH9) active site signature 1"],["PROSITE%3APS00592","Glycosyl hydrolases family 9 (GH9) active site signature 2"],["PROSITE%3APS00698","Glycosyl hydrolases family 9 (GH9) active site signature 3"]]},{"id":"NCBITaxon:183190","l":"Xylella fastidiosa (strain Temecula1 / ATCC 700964)","na":1,"nb":8,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["Pfam%3APF21142","Bacterial alpha-2 macroglobulin MG2 domain"],["Pfam%3APF04273","Beta-lactamase hydrolase-like protein, phosphatase-like domain"],["Pfam%3APF17970","Bacterial Alpha-2-macroglobulin MG1 domain"],["Pfam%3APF17973","Bacterial Alpha-2-macroglobulin MG10 domain"],["Pfam%3APF11974","Bacterial alpha-2-macroglobulin MG3 domain"],["Pfam%3APF17972","Bacterial Alpha-2-macroglobulin MG5 domain"]]},{"id":"NCBITaxon:196162","l":"Nocardioides sp. JS614","na":8,"nb":1,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["oil-spill-envo-00002061.html","oil spill"],["petroleum-envo-00002984.html","petroleum"]],"b":[["TED%3AAF-A1SFH1-F1-model_v4_TED04","TED highly-symmetric fold AF-A1SFH1-F1-model_v4_TED04"]]},{"id":"NCBITaxon:227882","l":"","na":1,"nb":8,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["Pfam%3APF17390","Bacterial alpha-L-rhamnosidase C-terminal domain"],["Pfam%3APF08531","Alpha-L-rhamnosidase N-terminal domain"],["Pfam%3APF05592","Bacterial alpha-L-rhamnosidase concanavalin-like domain"],["Pfam%3APF26366","Domain of unknown function (DUF8094)"],["Pfam%3APF25788","Rha78A-like, N-terminal immunoglobulin domain"],["Pfam%3APF06781","Cell division protein CrgA"]]},{"id":"NCBITaxon:229533","l":"Fusarium graminearum PH-1","na":1,"nb":8,"a":[["soil-envo-00001998.html","soil"]],"b":[["Pfam%3APF18388","Atg29 N-terminal domain"],["Pfam%3APF27599","CcsR C-terminal domain"],["Pfam%3APF07110","EthD domain"],["Pfam%3APF11700","Vacuole effluxer Atg22 like"],["Pfam%3APF28504","Gramillins biosynthetic cluster protein GRA5"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"]]},{"id":"NCBITaxon:240176","l":"Coprinopsis cinerea (strain Okayama-7 / 130 / ATCC MYA-4618 / FGSC 9003)","na":1,"nb":8,"a":[["meiotic-cell-bto-0000845.html","meiotic cell"]],"b":[["Pfam%3APF26733","Adenylate-forming reductase 03009, C-terminal domain"],["Pfam%3APF01761","3-dehydroquinate synthase N-terminal"],["Pfam%3APF24621","3-dehydroquinate synthase C-terminal"],["Pfam%3APF03443","Auxiliary Activity family 9 (formerly GH61)"],["Pfam%3APF16010","Cytochrome domain of cellobiose dehydrogenase"],["PROSITE%3APS00104","EPSP synthase signature 1"]]},{"id":"NCBITaxon:35761","l":"Nocardioides sp.","na":8,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"],["desert-sand-envo-00005800.html","desert sand"],["endosymbiont-habitatmech-bacdive-7d840c7ddc.html","Endosymbiont"],["oil-spill-envo-00002061.html","oil spill"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["orchard-envo-00000115.html","orchard"]],"b":[["TED%3AAF-A0A2E8Z449-F1-model_v4_TED01","TED novel fold AF-A0A2E8Z449-F1-model_v4_TED01"]]},{"id":"NCBITaxon:47885","l":"Pseudomonas oryzihabitans","na":8,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"],["hospital-envo-00002173.html","hospital"],["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"],["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["TED%3AAF-A0A7X3T0R5-F1-model_v4_TED02","TED novel fold AF-A0A7X3T0R5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:572477","l":"Allochromatium vinosum (strain ATCC 17899 / DSM 180 / NBRC 103801 / NCIMB 10441 / D)","na":1,"nb":8,"a":[["ditch-water-envo-00002158.html","ditch water"]],"b":[["Pfam%3APF01322","Cytochrome C'"],["Pfam%3APF02635","DsrE/DsrF-like family"],["Pfam%3APF21706","Sulfide dehydrogenase [flavocytochrome c] flavoprotein chain, central"],["Pfam%3APF09242","Flavocytochrome c sulphide dehydrogenase, flavin-binding"],["Pfam%3APF01355","High potential iron-sulfur protein"],["Pfam%3APF13686","DsrE/DsrF/DrsH-like family"]]},{"id":"UBERON:0001009","l":"","na":8,"nb":1,"a":[["circulatory-system-habitatmech-gold-0552e4fd8a.html","Circulatory system"],["circulatory-system-habitatmech-gold-ce9fa1ef7f.html","Circulatory system"],["circulatory-system-habitatmech-gold-0635cc88f0.html","Circulatory system"],["circulatory-system-habitatmech-gold-2a948ee511.html","Circulatory system"],["circulatory-system-habitatmech-gold-7a7f8b9aa3.html","Circulatory system"],["circulatory-system-habitatmech-gold-5307a30baa.html","Circulatory system"]],"b":[["GO%3A0072359","circulatory system development"]]},{"id":"NCBITaxon:114615","l":"Bradyrhizobium sp. ORS 278","na":7,"nb":1,"a":[["river-envo-00000022.html","river"],["bacteroid-bto-0000109.html","bacteroid"],["root-nodule-bto-0001190.html","root nodule"],["stem-nodule-bto-0001816.html","stem nodule"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["Pfam%3APF10073","GapR-like, DNA-binding domain"]]},{"id":"NCBITaxon:1656","l":"Actinomyces viscosus","na":7,"nb":1,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"],["skin-of-body-uberon-0002097.html","skin of body"],["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Pfam%3APF16555","Gram-positive pilin subunit D1, N-terminal domain"]]},{"id":"NCBITaxon:1906666","l":"Thermoplasmata archaeon","na":1,"nb":7,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A497HVI4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A497HVI4-F1-model_v4_TED01"],["TED%3AAF-A0A497HX78-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A497HX78-F1-model_v4_TED01"],["TED%3AAF-A0A662M489-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A662M489-F1-model_v4_TED03"],["TED%3AAF-A0A662MMC3-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A662MMC3-F1-model_v4_TED06"],["TED%3AAF-A0A7J4F045-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J4F045-F1-model_v4_TED01"],["TED%3AAF-A0A5A7S0Y2-F1-model_v4_TED02","TED novel fold AF-A0A5A7S0Y2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2006849","l":"Xanthomonadales bacterium","na":1,"nb":7,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2E6REI1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E6REI1-F1-model_v4_TED01"],["TED%3AAF-A0A2E6RHE7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E6RHE7-F1-model_v4_TED02"],["TED%3AAF-A0A354Z1F6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A354Z1F6-F1-model_v4_TED01"],["TED%3AAF-A0A3S0DIN1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S0DIN1-F1-model_v4_TED01"],["TED%3AAF-A0A431HZV9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A431HZV9-F1-model_v4_TED02"],["TED%3AAF-A0A3S0DMM0-F1-model_v4_TED01","TED novel fold AF-A0A3S0DMM0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:242619","l":"Porphyromonas gingivalis (strain ATCC BAA-308 / W83)","na":1,"nb":7,"a":[["gingiva-bto-0000519.html","gingiva"]],"b":[["Pfam%3APF13290","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF04023","FeoA domain"],["Pfam%3APF17910","FeoB cytosolic helical domain"],["Pfam%3APF02421","Ferrous iron transport protein B"],["Pfam%3APF22492","FimA4 pilin C-terminal domain"],["Pfam%3APF07664","Ferrous iron transport protein B C terminus"]]},{"id":"NCBITaxon:273075","l":"Thermoplasma acidophilum (strain ATCC 25905 / DSM 1728 / JCM 9062 / NBRC 15155 / AMRC-C165)","na":1,"nb":7,"a":[["blood-plasma-bto-0000131.html","blood plasma"]],"b":[["Pfam%3APF17989","Actin like proteins N terminal domain"],["Pfam%3APF10432","Bacterial phospho-glucose isomerase C-terminal SIS domain"],["Pfam%3APF22490","tRNA-splicing endonuclease, linker domain"],["Pfam%3APF22578","Geranylgeranyl reductase catalytic domain"],["Pfam%3APF12831","FAD dependent oxidoreductase"],["Pfam%3APF26550","Tricorn protease second beta propeller domain"]]},{"id":"NCBITaxon:314230","l":"Blastopirellula marina DSM 3645","na":7,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["shoreline-envo-00000486.html","shoreline"],["bulk-soil-envo-00005802.html","bulk soil"],["forested-area-envo-00000111.html","forested area"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-A3ZZX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A3ZZX2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:37734","l":"Enterococcus casseliflavus","na":1,"nb":7,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["PROSITE%3APS00843","D-alanine--D-alanine ligase signature 1"],["PROSITE%3APS00844","D-alanine--D-alanine ligase signature 2"],["TED%3AAF-A0A1V3NEA6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1V3NEA6-F1-model_v4_TED03"],["TED%3AAF-A0A377MP00-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A377MP00-F1-model_v4_TED01"],["TED%3AAF-A0A377KTN3-F1-model_v4_TED02","TED novel fold AF-A0A377KTN3-F1-model_v4_TED02"],["TED%3AAF-A0A377MJ12-F1-model_v4_TED01","TED novel fold AF-A0A377MJ12-F1-model_v4_TED01"]]},{"id":"NCBITaxon:555778","l":"","na":1,"nb":7,"a":[["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["Pfam%3APF08936","Carboxysome Shell Carbonic Anhydrase, C-terminal"],["Pfam%3APF20686","Carboxysome Shell Carbonic Anhydrase, catalytic domain"],["Pfam%3APF20687","Carboxysome Shell Carbonic Anhydrase, N-terminal"],["Pfam%3APF12288","Carboxysome shell peptide mid-region"],["Pfam%3APF10070","Probable inorganic carbon transporter subunit DabA"],["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"UBERON:0000948","l":"heart","na":7,"nb":1,"a":[["heart-habitatmech-gold-2db4d9dd6e.html","Heart"],["heart-habitatmech-gold-8d7a4e1712.html","Heart"],["heart-uberon-0000948.html","heart"],["heart-habitatmech-gold-e9d67283fc.html","Heart"],["heart-habitatmech-gold-805ee181bd.html","Heart"],["heart-habitatmech-gold-20bc7c46a0.html","Heart"]],"b":[["GO%3A0007507","heart development"]]},{"id":"NCBITaxon:101571","l":"Burkholderia ubonensis","na":1,"nb":6,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["TED%3AAF-A0A118H7W5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A118H7W5-F1-model_v4_TED01"],["TED%3AAF-A0A853WTK8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A853WTK8-F1-model_v4_TED01"],["TED%3AAF-A0A104J6D5-F1-model_v4_TED03","TED novel fold AF-A0A104J6D5-F1-model_v4_TED03"],["TED%3AAF-A0A104Z719-F1-model_v4_TED01","TED novel fold AF-A0A104Z719-F1-model_v4_TED01"],["TED%3AAF-A0A106QCV3-F1-model_v4_TED01","TED novel fold AF-A0A106QCV3-F1-model_v4_TED01"],["TED%3AAF-A0A124U5S7-F1-model_v4_TED02","TED novel fold AF-A0A124U5S7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":6,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"],["sludge-envo-00002044.html","sludge"],["forested-area-envo-00000111.html","forested area"],["scrubland-area-envo-00000300.html","scrubland area"],["soil-envo-00001998.html","soil"]],"b":[["TED%3AAF-A0A367PA30-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A367PA30-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121927","l":"Gordonia hirsuta DSM 44140 = NBRC 16056","na":6,"nb":1,"a":[["biofilter-envo-00002152.html","biofilter"],["compost-envo-00002170.html","compost"],["wood-bto-0005516.html","wood"],["wood-envo-00002040.html","wood"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["waste-material-envo-00002264.html","waste material"]],"b":[["TED%3AAF-L7L8J6-F1-model_v4_TED01","TED highly-symmetric fold AF-L7L8J6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1133849","l":"Nocardia brasiliensis ATCC 700358","na":6,"nb":1,"a":[["b-lymphocyte-bto-0000776.html","B-lymphocyte"],["brain-bto-0000142.html","brain"],["heart-bto-0000562.html","heart"],["lymphocyte-bto-0000775.html","lymphocyte"],["macrophage-bto-0000801.html","macrophage"],["spleen-bto-0001281.html","spleen"]],"b":[["TED%3AAF-K0ES07-F1-model_v4_TED01","TED novel fold AF-K0ES07-F1-model_v4_TED01"]]},{"id":"NCBITaxon:124","l":"Blastopirellula marina","na":1,"nb":6,"a":[["marine-environment-envo-01000320.html","marine environment"]],"b":[["TED%3AAF-A0A2S8GNX8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S8GNX8-F1-model_v4_TED01"],["TED%3AAF-A0A2S8F9J3-F1-model_v4_TED04","TED novel fold AF-A0A2S8F9J3-F1-model_v4_TED04"],["TED%3AAF-A0A2S8FMN6-F1-model_v4_TED01","TED novel fold AF-A0A2S8FMN6-F1-model_v4_TED01"],["TED%3AAF-A0A2S8GCT5-F1-model_v4_TED02","TED novel fold AF-A0A2S8GCT5-F1-model_v4_TED02"],["TED%3AAF-A0A2S8GL91-F1-model_v4_TED01","TED novel fold AF-A0A2S8GL91-F1-model_v4_TED01"],["TED%3AAF-A0A2S8GLG3-F1-model_v4_TED01","TED novel fold AF-A0A2S8GLG3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:205922","l":"Pseudomonas fluorescens Pf0-1","na":6,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["cold-environment-envo-01000309.html","cold environment"],["microbial-mat-material-envo-01000157.html","microbial mat material"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"],["agricultural-soil-envo-00002259.html","agricultural soil"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["Pfam%3APF07927","HicA toxin of bacterial toxin-antitoxin,"]]},{"id":"NCBITaxon:2210","l":"Methanosarcina thermophila","na":1,"nb":6,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF19436","ACS/CODH beta subunit C-terminal"],["Pfam%3APF03598","CO dehydrogenase/acetyl-CoA synthase complex beta subunit"],["Pfam%3APF00871","Acetokinase family"],["PROSITE%3APS01075","Acetate and butyrate kinases family signature 1"],["PROSITE%3APS01076","Acetate and butyrate kinases family signature 2"]]},{"id":"NCBITaxon:272630","l":"Methylorubrum extorquens (strain ATCC 14718 / DSM 1338 / JCM 2805 / NCIMB 9133 / AM1)","na":1,"nb":6,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["Pfam%3APF07726","ATPase family associated with various cellular activities (AAA)"],["Pfam%3APF02741","FTR, proximal lobe"],["Pfam%3APF01913","Formylmethanofuran-tetrahydromethanopterin formyltransferase"],["Pfam%3APF10677","Protein of unknown function (DUF2490)"],["Pfam%3APF08714","Formaldehyde-activating enzyme (Fae)"],["PROSITE%3APS00363","Bacterial quinoprotein dehydrogenases signature 1"]]},{"id":"NCBITaxon:290402","l":"Clostridium beijerinckii (strain ATCC 51743 / NCIMB 8052)","na":1,"nb":6,"a":[["garden-soil-envo-00002263.html","garden soil"]],"b":[["Pfam%3APF28550","Domain of unknown function (DUF8436)"],["Pfam%3APF21688","FAD-dependent protein, C-terminal domain-like"],["Pfam%3APF02001","Protein of unknown function DUF134"],["Pfam%3APF03608","PTS system enzyme II sorbitol-specific factor"],["Pfam%3APF07663","Sorbitol phosphotransferase enzyme II C-terminus"],["Pfam%3APF03612","Sorbitol phosphotransferase enzyme II N-terminus"]]},{"id":"NCBITaxon:3068","l":"Volvox carteri f. nagariensis","na":6,"nb":1,"a":[["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["neritic-epipelagic-zone-biome-envo-01000042.html","neritic epipelagic zone biome"],["germ-cell-bto-0000535.html","germ cell"],["semen-bto-0001230.html","semen"],["sea-shore-envo-00000485.html","sea shore"]],"b":[["TED%3AAF-D8U4E8-F1-model_v4_TED01","TED highly-symmetric fold AF-D8U4E8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:321614","l":"","na":1,"nb":6,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["Pfam%3APF11786","Aft1 HRA domain"],["Pfam%3APF11787","Aft1 HRR domain"],["Pfam%3APF26980","Dicer-like protein 2, dsRNA binding domain"],["Pfam%3APF18973","Putative Chitin binding like"],["Pfam%3APF25326","SRB8 ARM-like domain"],["TED%3AAF-A0A7U2I0S3-F1-model_v4_TED02","TED novel fold AF-A0A7U2I0S3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:364106","l":"Escherichia coli (strain UTI89 / UPEC)","na":1,"nb":6,"a":[["rectum-bto-0001158.html","rectum"]],"b":[["Pfam%3APF26516","Inner membrane protein CbrB"],["Pfam%3APF17151","Periplasmic sensor domain"],["Pfam%3APF08971","Glycogen synthesis protein"],["Pfam%3APF06005","ZapB family"],["Pfam%3APF09618","CRISPR-associated protein (Cas_Csy4)"],["Pfam%3APF28061","Type I toxin DinQ-like"]]},{"id":"NCBITaxon:374930","l":"Haemophilus influenzae (strain PittEE)","na":1,"nb":6,"a":[["middle-ear-bto-0002099.html","middle ear"]],"b":[["Pfam%3APF02952","L-fucose isomerase, C-terminal domain"],["Pfam%3APF07881","L-fucose isomerase, first N-terminal domain"],["Pfam%3APF07882","L-fucose isomerase, second N-terminal domain"],["Pfam%3APF02313","Fumarate reductase subunit D"],["Pfam%3APF13286","Phosphohydrolase-associated domain"],["Pfam%3APF04751","Dual-action ribosomal maturation protein DarP"]]},{"id":"NCBITaxon:471852","l":"Thermomonospora curvata DSM 43183","na":6,"nb":1,"a":[["city-envo-00000856.html","city"],["compost-envo-00002170.html","compost"],["urban-biome-envo-01000249.html","urban biome"],["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["Pfam%3APF01580","FtsK/SpoIIIE family"]]},{"id":"NCBITaxon:669","l":"Vibrio harveyi","na":1,"nb":6,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["Pfam%3APF02273","Acyl transferase"],["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF03173","Putative carbohydrate binding domain"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"],["TED%3AAF-A0A454D440-F1-model_v4_TED02","TED novel fold AF-A0A454D440-F1-model_v4_TED02"],["TED%3AAF-A0A8B3DE42-F1-model_v4_TED03","TED novel fold AF-A0A8B3DE42-F1-model_v4_TED03"]]},{"id":"NCBITaxon:7719","l":"Ciona intestinalis","na":6,"nb":1,"a":[["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"],["ascidian-bto-0000090.html","ascidian"],["ocellus-bto-0001758.html","ocellus"],["sensory-cell-bto-0001037.html","sensory cell"],["tadpole-bto-0001347.html","tadpole"],["trunk-bto-0001493.html","trunk"]],"b":[["TED%3AAF-F6ULD1-F1-model_v4_TED03","TED highly-symmetric fold AF-F6ULD1-F1-model_v4_TED03"]]},{"id":"NCBITaxon:9544","l":"Macaca mulatta","na":1,"nb":6,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["Pfam%3APF21708","Galactocerebrosidase, C-terminal lectin domain"],["Pfam%3APF17387","Glycosyl hydrolase family 59 central domain"],["Pfam%3APF18771","APOBEC3H"],["Pfam%3APF02057","Glycosyl hydrolase family 59"],["PROSITE%3APS00970","Nuclear transition protein 2 signature 1"],["PROSITE%3APS00971","Nuclear transition protein 2 signature 2"]]},{"id":"UBERON:0002048","l":"","na":6,"nb":1,"a":[["lung-habitatmech-gold-dd1a9f0db8.html","Lung"],["lung-habitatmech-gold-5bbc13545b.html","Lung"],["lung-habitatmech-gold-ba687e2c95.html","Lung"],["lung-habitatmech-gold-8fed57e653.html","Lung"],["lung-habitatmech-gold-e8a2c6cf87.html","Lung"],["lung-habitatmech-gold-0d343fdd03.html","Lung"]],"b":[["GO%3A0030324","lung development"]]},{"id":"NCBITaxon:1001240","l":"Cryobacterium roopkundense","na":5,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"],["mineral-material-envo-01000256.html","mineral material"]],"b":[["TED%3AAF-A0A099JLC4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A099JLC4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1006551","l":"Klebsiella michiganensis (strain ATCC 8724 / DSM 4798 / JCM 20051 / NBRC 3318 / NRRL B-199 / KCTC 1686 / BUCSAV 143 / CCM 1901)","na":1,"nb":5,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["Pfam%3APF07833","Copper amine oxidase N-terminal domain"],["Pfam%3APF18427","DD-reactivating factor swiveling domain"],["Pfam%3APF02288","Dehydratase medium subunit"],["Pfam%3APF08841","Diol dehydratase reactivase ATPase-like domain"],["TED%3AAF-A0A0H3H2M0-F1-model_v4_TED01","TED novel fold AF-A0A0H3H2M0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:103836","l":"Thermopolyspora flexuosa","na":5,"nb":1,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["intestine-environment-envo-2100002.html","intestine environment"],["organic-feature-envo-01000159.html","organic feature"],["compost-soil-envo-00005747.html","compost soil"],["soil-envo-00001998.html","soil"]],"b":[["TED%3AAF-A0A543J0S6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A543J0S6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:104421","l":"Camponotus floridanus","na":5,"nb":1,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"],["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"],["biotope-envo-00002036.html","biotope"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["Pfam%3APF22299","BRISC complex subunit FAM175B, helical domain"]]},{"id":"NCBITaxon:1288","l":"Staphylococcus xylosus","na":5,"nb":1,"a":[["stream-envo-00000023.html","stream"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"],["fecal-environment-envo-01001029.html","fecal environment"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["Pfam%3APF02603","HPr Serine kinase N terminus"]]},{"id":"NCBITaxon:13243","l":"Rarobacter faecitabidus","na":5,"nb":1,"a":[["water-body-envo-00000063.html","water body"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["TED%3AAF-A0A542ZUH8-F1-model_v4_TED03","TED novel fold AF-A0A542ZUH8-F1-model_v4_TED03"]]},{"id":"NCBITaxon:135569","l":"Helicobacter apodemus","na":5,"nb":1,"a":[["cecum-mucosa-bto-0000213.html","cecum mucosa"],["epithelium-bto-0000416.html","epithelium"],["ht-29-cell-bto-0000182.html","HT-29 cell"],["lymphoid-tissue-bto-0000753.html","lymphoid tissue"],["mucosa-bto-0000886.html","mucosa"]],"b":[["TED%3AAF-A0A4U8UFG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8UFG8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1356854","l":"Alicyclobacillus acidoterrestris (strain ATCC 49025 / DSM 3922 / CIP 106132 / NCIMB 13137 / GD3B)","na":1,"nb":5,"a":[["fruit-juice-bto-0004057.html","fruit juice"]],"b":[["Pfam%3APF22202","CRISPR-associated endonuclease C2c1 first helical domain"],["Pfam%3APF22172","CRISPR-associated endonuclease C2c1 second helical domain"],["Pfam%3APF22077","CRISPR-associated endonuclease C2c1 Nuc-II domain"],["Pfam%3APF22126","C2c1 CRISPR-Cas endonuclease, RuvC-like domain"],["Pfam%3APF22204","CRISPR-associated endonuclease C2c1, wedge domain, second region"]]},{"id":"NCBITaxon:1363","l":"Lactococcus garvieae","na":5,"nb":1,"a":[["animal-house-envo-00003040.html","animal house"],["gall-bladder-bto-0000493.html","gall bladder"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["geographic-feature-envo-00000000.html","geographic feature"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["TED%3AAF-A0A6L2ZWS4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L2ZWS4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:155077","l":"Cellvibrio japonicus","na":1,"nb":5,"a":[["compost-envo-00002170.html","compost"]],"b":[["Pfam%3APF02013","Cellulose or protein binding domain"],["Pfam%3APF03426","Carbohydrate binding domain (family 15)"],["Pfam%3APF16841","Ca-dependent carbohydrate-binding module xylan-binding"],["Pfam%3APF00331","Glycosyl hydrolase family 10"],["PROSITE%3APS00591","Glycosyl hydrolases family 10 (GH10) active site"]]},{"id":"NCBITaxon:1778","l":"Mycobacterium gordonae","na":5,"nb":1,"a":[["fibroblast-bto-0000452.html","fibroblast"],["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["kidney-bto-0000671.html","kidney"],["spleen-bto-0001281.html","spleen"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["TED%3AAF-A0A7D6E392-F1-model_v4_TED02","TED novel fold AF-A0A7D6E392-F1-model_v4_TED02"]]},{"id":"NCBITaxon:183","l":"Leptonema illini","na":1,"nb":5,"a":[["mud-envo-01000001.html","mud"]],"b":[["TED%3AAF-A0A833GYM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A833GYM6-F1-model_v4_TED01"],["TED%3AAF-A0A833GZG7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A833GZG7-F1-model_v4_TED01"],["TED%3AAF-A0A833H0U1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A833H0U1-F1-model_v4_TED01"],["TED%3AAF-A0A833H0U1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A833H0U1-F1-model_v4_TED02"],["TED%3AAF-A0A833LYP2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A833LYP2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1861","l":"Geodermatophilus obscurus","na":5,"nb":1,"a":[["desert-sand-envo-00005800.html","desert sand"],["tropical-envo-01000204.html","tropical"],["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["TED%3AAF-A0A1M7SWB5-F1-model_v4_TED02","TED novel fold AF-A0A1M7SWB5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:190486","l":"Xanthomonas axonopodis pv. citri (strain 306)","na":1,"nb":5,"a":[["vascular-tissue-bto-0001432.html","vascular tissue"]],"b":[["IDPO%3A0000003","molten globule"],["IDPO%3A0000012","molten globule to order"],["IDPO%3A0000006","order"],["Pfam%3APF00325","Bacterial regulatory proteins, crp family"],["Pfam%3APF05420","Cellulose synthase operon protein C C-terminus (BCSC_C)"]]},{"id":"NCBITaxon:2026715","l":"Pseudobdellovibrionaceae bacterium","na":1,"nb":5,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2E8I2Q3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E8I2Q3-F1-model_v4_TED02"],["TED%3AAF-A0A2E8I7A7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E8I7A7-F1-model_v4_TED02"],["TED%3AAF-A0A2E1Q4H5-F1-model_v4_TED06","TED novel fold AF-A0A2E1Q4H5-F1-model_v4_TED06"],["TED%3AAF-A0A2E7GIF0-F1-model_v4_TED01","TED novel fold AF-A0A2E7GIF0-F1-model_v4_TED01"],["TED%3AAF-A0A849WIZ5-F1-model_v4_TED01","TED novel fold AF-A0A849WIZ5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2098","l":"Metamycoplasma hominis","na":5,"nb":1,"a":[["egg-food-product-foodon-00001274.html","egg food product"],["amniotic-cavity-bto-0000025.html","amniotic cavity"],["amniotic-fluid-bto-0000068.html","amniotic fluid"],["placenta-bto-0001078.html","placenta"],["reproductive-system-bto-0000081.html","reproductive system"]],"b":[["TED%3AAF-A0A6A8Q3G2-F1-model_v4_TED02","TED novel fold AF-A0A6A8Q3G2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:265072","l":"Methylobacillus flagellatus KT","na":5,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"],["water-body-envo-00000063.html","water body"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["activated-sludge-envo-00002046.html","activated sludge"],["sludge-envo-00002044.html","sludge"]],"b":[["Pfam%3APF10414","Sirohaem synthase dimerisation region"]]},{"id":"NCBITaxon:28038","l":"Latilactobacillus curvatus","na":5,"nb":1,"a":[["research-facility-envo-00000469.html","research facility"],["food-fermented-foodon-00001258.html","food (fermented)"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["TED%3AAF-A0A3R5XZN9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3R5XZN9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:290054","l":"Eubacterium coprostanoligenes","na":5,"nb":1,"a":[["emulsion-envo-00010506.html","emulsion"],["environmental-feature-envo-00002297.html","environmental feature"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["pig-manure-envo-00003860.html","pig manure"],["harbour-envo-00000463.html","harbour"]],"b":[["TED%3AAF-A0A1T4NG17-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1T4NG17-F1-model_v4_TED01"]]},{"id":"NCBITaxon:324602","l":"Chloroflexus aurantiacus (strain ATCC 29366 / DSM 635 / J-10-fl)","na":1,"nb":5,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["Pfam%3APF00127","Copper binding proteins, plastocyanin/azurin family"],["Pfam%3APF02276","Photosynthetic reaction centre cytochrome C subunit"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["PROSITE%3APS00196","Type-1 copper (blue) proteins signature"],["PROSITE%3APS00648","Bacterial ribonuclease P protein component signature"]]},{"id":"NCBITaxon:338969","l":"Rhodoferax ferrireducens T118","na":5,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["petroleum-envo-00002984.html","petroleum"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["Pfam%3APF11154","Protein of unknown function (DUF2934)"]]},{"id":"NCBITaxon:34062","l":"Faucicola osloensis","na":5,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"],["water-scum-envo-00005794.html","water scum"]],"b":[["Pfam%3APF14130","Cap4, dsDNA endonuclease domain"]]},{"id":"NCBITaxon:354242","l":"Campylobacter jejuni subsp. jejuni 81-176","na":5,"nb":1,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["leukocyte-bto-0000751.html","leukocyte"],["lymphocyte-bto-0000775.html","lymphocyte"],["neutrophil-bto-0000130.html","neutrophil"],["small-intestine-bto-0000651.html","small intestine"]],"b":[["PROSITE%3APS01300","RecR protein signature"]]},{"id":"NCBITaxon:384","l":"Rhizobium leguminosarum","na":1,"nb":5,"a":[["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["Pfam%3APF10931","Protein of unknown function (DUF2735)"],["TED%3AAF-A0A1B1C3F3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1B1C3F3-F1-model_v4_TED02"],["TED%3AAF-A0A4Q8XNE1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q8XNE1-F1-model_v4_TED01"],["TED%3AAF-A0A6P0B3F8-F1-model_v4_TED02","TED novel fold AF-A0A6P0B3F8-F1-model_v4_TED02"],["TED%3AAF-A0A6P0DM15-F1-model_v4_TED01","TED novel fold AF-A0A6P0DM15-F1-model_v4_TED01"]]},{"id":"NCBITaxon:388399","l":"Sagittula stellata E-37","na":5,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["oligotrophic-water-envo-00002223.html","oligotrophic water"],["pulp-bto-0001142.html","pulp"],["rosette-bto-0001201.html","rosette"],["scolex-bto-0002305.html","scolex"]],"b":[["TED%3AAF-A3JXK6-F1-model_v4_TED02","TED novel fold AF-A3JXK6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:393480","l":"Fusobacterium polymorphum ATCC 10953","na":5,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"],["forested-area-envo-00000111.html","forested area"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["TED%3AAF-A5TXK7-F1-model_v4_TED01","TED highly-symmetric fold AF-A5TXK7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:40518","l":"Ruminococcus bromii","na":5,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["emulsion-envo-00010506.html","emulsion"],["skin-environment-envo-2100003.html","skin environment"],["animal-habitation-envo-00005803.html","animal habitation"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-A0A412UMQ9-F1-model_v4_TED02","TED novel fold AF-A0A412UMQ9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:410359","l":"Pyrobaculum calidifontis (strain DSM 21063 / JCM 11548 / VA1)","na":1,"nb":5,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF18653","Arcadin 1"],["Pfam%3APF01930","Domain of unknown function DUF83"],["PROSITE%3APS00895","3-hydroxyisobutyrate dehydrogenase signature"],["TED%3AAF-A3MU28-F1-model_v4_TED02","TED highly-symmetric fold AF-A3MU28-F1-model_v4_TED02"],["TED%3AAF-A3MXY3-F1-model_v4_TED01","TED highly-symmetric fold AF-A3MXY3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:4513","l":"Hordeum vulgare","na":1,"nb":5,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["Pfam%3APF20241","Domain of unknown function (DUF6598)"],["PROSITE%3APS00771","Barwin domain signature 1"],["PROSITE%3APS00426","Cereal trypsin/alpha-amylase inhibitors family signature"],["PROSITE%3APS00725","Germin family signature"],["PROSITE%3APS00431","Small hydrophilic plant seed proteins signature"]]},{"id":"NCBITaxon:511","l":"Alcaligenes faecalis","na":1,"nb":5,"a":[["foot-bto-0000476.html","foot"]],"b":[["Pfam%3APF16867","Dimethlysulfonioproprionate lyase"],["Pfam%3APF17645","Arylmalonate decarboxylase"],["Pfam%3APF06433","Methylamine dehydrogenase heavy chain (MADH)"],["TED%3AAF-A0A1Z3MKY1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z3MKY1-F1-model_v4_TED01"],["TED%3AAF-A0A2U2BPX7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2U2BPX7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:716541","l":"Enterobacter cloacae subsp. cloacae (strain ATCC 13047 / DSM 30054 / NBRC 13535 / NCTC 10005 / WDCM 00083 / NCDC 279-56)","na":1,"nb":5,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Pfam%3APF18228","CdiI N-terminal domain"],["PROSITE%3APS00896","LacY family proton/sugar symporters signature 1"],["PROSITE%3APS00897","LacY family proton/sugar symporters signature 2"],["Pfam%3APF13332","Hemagglutinin repeat"],["Pfam%3APF05860","TPS secretion domain"]]},{"id":"NCBITaxon:747","l":"Pasteurella multocida","na":5,"nb":1,"a":[["bronchus-uberon-0002185.html","bronchus"],["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["finger-bto-0004669.html","finger"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["TED%3AAF-A0A8A8HHD5-F1-model_v4_TED02","TED novel fold AF-A0A8A8HHD5-F1-model_v4_TED02"]]},{"id":"UBERON:0000955","l":"brain","na":5,"nb":1,"a":[["brain-habitatmech-gold-752ac1c5aa.html","Brain"],["brain-habitatmech-gold-6bdd76cda3.html","Brain"],["brain-habitatmech-gold-a220aa6bb0.html","Brain"],["brain-habitatmech-gold-e1c2f5f7d4.html","Brain"],["brain-habitatmech-gold-2e584195fd.html","Brain"]],"b":[["GO%3A0007420","brain development"]]},{"id":"CHEBI:24632","l":"hydrocarbon","na":4,"nb":1,"a":[["hydrocarbon-habitatmech-gold-db79f0142d.html","Hydrocarbon"],["hydrocarbon-habitatmech-gold-3c68e33a11.html","Hydrocarbon"],["hydrocarbon-habitatmech-gold-e77998b825.html","Hydrocarbon"],["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"]],"b":[["TCDB%3A1.B.9","The FadL Outer Membrane Protein (FadL) Family"]]},{"id":"NCBITaxon:100","l":"Ancylobacter aquaticus","na":4,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["groundwater-envo-01001004.html","groundwater"],["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"]],"b":[["TED%3AAF-A0A431PQS4-F1-model_v4_TED01","TED novel fold AF-A0A431PQS4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:102862","l":"Proteus penneri","na":4,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"],["geographic-feature-envo-00000000.html","geographic feature"],["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-A0A0G4Q3D2-F1-model_v4_TED01","TED novel fold AF-A0A0G4Q3D2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:102897","l":"Parafrankia sp. EUN1f","na":4,"nb":1,"a":[["plant-bto-0001481.html","plant"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["TED%3AAF-D3D2N4-F1-model_v4_TED01","TED novel fold AF-D3D2N4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1029718","l":"Candidatus Arthromitus sp. SFB-mouse-Japan","na":4,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["lymphocyte-bto-0000775.html","lymphocyte"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["TED%3AAF-F9VKB6-F1-model_v4_TED01","TED novel fold AF-F9VKB6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:105612","l":"Dellaglioa algida","na":4,"nb":1,"a":[["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biotope-envo-00002036.html","biotope"],["organic-feature-envo-01000159.html","organic feature"]],"b":[["TED%3AAF-A0A5C6M980-F1-model_v4_TED02","TED novel fold AF-A0A5C6M980-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1121132","l":"Butyrivibrio hungatei DSM 14810","na":4,"nb":1,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"],["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["TED%3AAF-A0A1M7SJD3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M7SJD3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121301","l":"Paramaledivibacter caminithermalis DSM 15212","na":4,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"],["trough-envo-00000499.html","trough"]],"b":[["TED%3AAF-A0A1M6LSW1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M6LSW1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121324","l":"Peptoclostridium litorale DSM 5388","na":4,"nb":1,"a":[["inlet-envo-00000475.html","inlet"],["ocean-envo-00000015.html","ocean"],["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"]],"b":[["TED%3AAF-A0A069RDW3-F1-model_v4_TED01","TED novel fold AF-A0A069RDW3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121449","l":"Paucidesulfovibrio gracilis DSM 16080","na":4,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"],["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["TED%3AAF-A0A1T4W1V7-F1-model_v4_TED03","TED novel fold AF-A0A1T4W1V7-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1121451","l":"Maridesulfovibrio hydrothermalis AM13 = DSM 14728","na":4,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["undersea-feature-envo-00000104.html","undersea feature"],["trough-envo-00000499.html","trough"]],"b":[["TED%3AAF-L0RH10-F1-model_v4_TED01","TED novel fold AF-L0RH10-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1122195","l":"Marinitoga hydrogenitolerans DSM 16785","na":4,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["ridge-envo-00000283.html","ridge"],["trough-envo-00000499.html","trough"]],"b":[["Pfam%3APF22362","Argonaute, middle domain, bacteria"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":4,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["TED%3AAF-A0A132HLN2-F1-model_v4_TED01","TED novel fold AF-A0A132HLN2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:122587","l":"Neisseria meningitidis serogroup A / serotype 4A (strain DSM 15465 / Z2491)","na":1,"nb":4,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"]],"b":[["Pfam%3APF17850","CysA C-terminal regulatory domain"],["Pfam%3APF22443","FbpC-like, regulatory domain"],["Pfam%3APF05159","Capsule polysaccharide biosynthesis protein"],["Pfam%3APF10077","Uncharacterized protein conserved in bacteria (DUF2314)"]]},{"id":"NCBITaxon:1335","l":"Streptococcus equinus","na":4,"nb":1,"a":[["foregut-bto-0000507.html","foregut"],["stomach-bto-0001307.html","stomach"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["TED%3AAF-A0A1V0GLT7-F1-model_v4_TED01","TED novel fold AF-A0A1V0GLT7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:137584","l":"Thalassomonas viridans","na":1,"nb":4,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["TED%3AAF-A0A0D8CPR2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D8CPR2-F1-model_v4_TED01"],["TED%3AAF-A0A0D8CLZ9-F1-model_v4_TED01","TED novel fold AF-A0A0D8CLZ9-F1-model_v4_TED01"],["TED%3AAF-A0A0D8D8E8-F1-model_v4_TED02","TED novel fold AF-A0A0D8D8E8-F1-model_v4_TED02"],["TED%3AAF-A0A0D8DAF2-F1-model_v4_TED01","TED novel fold AF-A0A0D8DAF2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:148604","l":"Limosilactobacillus ingluviei","na":4,"nb":1,"a":[["animal-house-envo-00003040.html","animal house"],["organic-waste-material-envo-00002873.html","organic waste material"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["TED%3AAF-A0A0R2GUF0-F1-model_v4_TED01","TED novel fold AF-A0A0R2GUF0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1501","l":"Clostridium pasteurianum","na":1,"nb":4,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["Pfam%3APF22609","Iron hydrogenase 1-like, iron-sulfur centre-binding domain"],["Pfam%3APF09582","Iron only nitrogenase protein AnfO (AnfO_nitrog)"],["PROSITE%3APS00746","NifH/frxC family signature 1"],["PROSITE%3APS00699","Nitrogenases component 1 alpha and beta subunits signature 1"]]},{"id":"NCBITaxon:152142","l":"Mycolicibacterium holsaticum","na":4,"nb":1,"a":[["fibroblast-bto-0000452.html","fibroblast"],["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["kidney-bto-0000671.html","kidney"],["spleen-bto-0001281.html","spleen"]],"b":[["TED%3AAF-A0A1E3RVW1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E3RVW1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:160492","l":"Xylella fastidiosa (strain 9a5c)","na":1,"nb":4,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["Pfam%3APF21142","Bacterial alpha-2 macroglobulin MG2 domain"],["Pfam%3APF04273","Beta-lactamase hydrolase-like protein, phosphatase-like domain"],["Pfam%3APF17970","Bacterial Alpha-2-macroglobulin MG1 domain"],["Pfam%3APF20398","Family of unknown function (DUF6691)"]]},{"id":"NCBITaxon:1622","l":"Ligilactobacillus murinus","na":4,"nb":1,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"],["animal-litter-envo-00002191.html","animal litter"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["TED%3AAF-A0A4S2E8S9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4S2E8S9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:163","l":"Treponema bryantii","na":4,"nb":1,"a":[["stomach-bto-0001307.html","stomach"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["intestine-environment-envo-2100002.html","intestine environment"],["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["TED%3AAF-A0A1I3JLL1-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A1I3JLL1-F1-model_v4_TED05"]]},{"id":"NCBITaxon:1710","l":"Cellulosimicrobium cellulans","na":4,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"],["oil-spill-envo-00002061.html","oil spill"],["peat-soil-envo-00005774.html","peat soil"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["Pfam%3APF16483","Beta-1,3-glucanase"]]},{"id":"NCBITaxon:1712410","l":"Thermanaerosceptrum fracticalcis","na":4,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["ocean-trench-envo-00000275.html","ocean trench"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["trough-envo-00000499.html","trough"]],"b":[["TED%3AAF-A0A7G6E021-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7G6E021-F1-model_v4_TED02"]]},{"id":"NCBITaxon:172045","l":"Elizabethkingia miricola","na":4,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["hindgut-bto-0000510.html","hindgut"],["wood-bto-0005516.html","wood"],["environmental-system-envo-01000254.html","environmental system"]],"b":[["TED%3AAF-A0A0D5BKG2-F1-model_v4_TED01","TED novel fold AF-A0A0D5BKG2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1836","l":"Saccharopolyspora erythraea","na":1,"nb":4,"a":[["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["Pfam%3APF08990","Erythronolide synthase docking domain"],["Pfam%3APF09277","Erythronolide synthase, docking"],["Pfam%3APF12728","Helix-turn-helix domain"],["Pfam%3APF12307","Protein of unknown function (DUF3631)"]]},{"id":"NCBITaxon:1871086","l":"Brevundimonas sp.","na":1,"nb":4,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["TED%3AAF-A0A2W6RYY6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2W6RYY6-F1-model_v4_TED03"],["TED%3AAF-A0A326KNM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A326KNM4-F1-model_v4_TED01"],["TED%3AAF-A0A521NPA0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521NPA0-F1-model_v4_TED01"],["TED%3AAF-A0A519PPD7-F1-model_v4_TED01","TED novel fold AF-A0A519PPD7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":1,"nb":4,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["Pfam%3APF16861","Carbamoyltransferase C-terminus"],["Pfam%3APF02543","Carbamoyltransferase N-terminus"],["Pfam%3APF01960","ArgJ family"],["Pfam%3APF07467","Beta-lactamase inhibitor (BLIP)"]]},{"id":"NCBITaxon:1930","l":"Streptomyces scabiei","na":4,"nb":1,"a":[["a10-cell-bto-0002196.html","A10 cell"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["TED%3AAF-A0A086GLG9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A086GLG9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:207559","l":"Oleidesulfovibrio alaskensis (strain ATCC BAA-1058 / DSM 17464 / G20)","na":1,"nb":4,"a":[["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["Pfam%3APF13353","4Fe-4S single cluster domain"],["Pfam%3APF01228","Glycine radical"],["PROSITE%3APS00850","Glycine radical domain signature"],["PROSITE%3APS01087","Radical activating enzymes signature"]]},{"id":"NCBITaxon:2209","l":"Methanosarcina mazei","na":4,"nb":1,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["sludge-envo-00002044.html","sludge"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["TED%3AAF-A0A0F8CQX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F8CQX7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:224914","l":"","na":1,"nb":4,"a":[["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["Pfam%3APF03625","Domain of unknown function DUF302"],["Pfam%3APF07559","Flagellar basal body protein FlaE D2 domain"],["Pfam%3APF07536","HWE histidine kinase"],["Pfam%3APF06776","Invasion associated locus B (IalB) protein"]]},{"id":"NCBITaxon:224915","l":"Buchnera aphidicola subsp. Baizongia pistaciae (strain Bp)","na":1,"nb":4,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Pfam%3APF26016","Exonuclease I C-terminal domain"],["Pfam%3APF08411","Exonuclease I SH3-like domain"],["Pfam%3APF09849","Uncharacterized protein conserved in bacteria (DUF2076)"],["Pfam%3APF06481","COX Aromatic Rich Motif"]]},{"id":"NCBITaxon:269796","l":"Rhodospirillum rubrum (strain ATCC 11170 / ATH 1.1.1 / DSM 467 / LMG 4362 / NCIMB 8255 / S1)","na":1,"nb":4,"a":[["joint-bto-0001686.html","joint"]],"b":[["Pfam%3APF24931","ACR9-like, ACT-like domain"],["Pfam%3APF20543","N2-fixation sustaining protein CowN"],["Pfam%3APF22277","EncFtn-like"],["TED%3AAF-Q2RML2-F1-model_v4_TED01","TED highly-symmetric fold AF-Q2RML2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:272563","l":"Clostridioides difficile (strain 630)","na":1,"nb":4,"a":[["central-nervous-system-bto-0000227.html","central nervous system"]],"b":[["Pfam%3APF07737","Anthrax toxin lethal factor, N- and C-terminal domain"],["Pfam%3APF11155","Domain of unknown function (DUF2935)"],["Pfam%3APF06249","Ethanolamine utilisation protein EutQ"],["Pfam%3APF12544","Lysine-2,3-aminomutase"]]},{"id":"NCBITaxon:272620","l":"Klebsiella pneumoniae subsp. pneumoniae (strain ATCC 700721 / MGH 78578)","na":1,"nb":4,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Pfam%3APF04336","Acyl carrier protein phosphodiesterase"],["Pfam%3APF17948","DnaT DNA-binding domain"],["PROSITE%3APS00839","Uroporphyrin-III C-methyltransferase signature 1"],["PROSITE%3APS00840","Uroporphyrin-III C-methyltransferase signature 2"]]},{"id":"NCBITaxon:28450","l":"Burkholderia pseudomallei","na":1,"nb":4,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"]],"b":[["Pfam%3APF18664","CdiA C-terminal tRNase domain"],["Pfam%3APF12106","Colicin E5 ribonuclease domain"],["Pfam%3APF11480","Colicin-E5 Imm protein"],["Pfam%3APF13332","Hemagglutinin repeat"]]},{"id":"NCBITaxon:29313","l":"Mycobacterium shimoidei","na":4,"nb":1,"a":[["fibroblast-bto-0000452.html","fibroblast"],["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["kidney-bto-0000671.html","kidney"],["spleen-bto-0001281.html","spleen"]],"b":[["TED%3AAF-A0A1E3TGG0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1E3TGG0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:29345","l":"Sedimentibacter hydroxybenzoicus","na":4,"nb":1,"a":[["mud-envo-01000001.html","mud"],["oil-spill-envo-00002061.html","oil spill"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["Pfam%3APF26358","EcdD/BsdD phenolic detoxification"]]},{"id":"NCBITaxon:29494","l":"Vibrio furnissii","na":1,"nb":4,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["Pfam%3APF17957","Bacterial Ig domain"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"],["Pfam%3APF02839","Carbohydrate-binding module family 5/12"],["Pfam%3APF06483","Chitinase C"]]},{"id":"NCBITaxon:301","l":"Ectopseudomonas oleovorans","na":1,"nb":4,"a":[["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["PROSITE%3APS00202","Rubredoxin signature"],["TED%3AAF-A0A2W5VSG0-F1-model_v4_TED02","TED novel fold AF-A0A2W5VSG0-F1-model_v4_TED02"],["TED%3AAF-A0A379JMN0-F1-model_v4_TED01","TED novel fold AF-A0A379JMN0-F1-model_v4_TED01"],["TED%3AAF-A0A379PLI0-F1-model_v4_TED03","TED novel fold AF-A0A379PLI0-F1-model_v4_TED03"]]},{"id":"NCBITaxon:324057","l":"Paenibacillus sp. JDR-2","na":4,"nb":1,"a":[["vasculature-uberon-0002049.html","vasculature"],["wood-envo-00002040.html","wood"],["part-of-plant-habitatmech-madin-25325947e2.html","part of plant"],["village-biome-envo-01000246.html","village biome"]],"b":[["Pfam%3APF06452","Carbohydrate family 9 binding domain-like"]]},{"id":"NCBITaxon:326423","l":"Bacillus velezensis FZB42","na":1,"nb":4,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["Pfam%3APF21607","[Acyl-carrier-protein] S-malonyltransferase, inserted helical domain"],["Pfam%3APF21996","Histidyl-tRNA synthetase HisZ, C-terminal domain"],["Pfam%3APF07293","Protein of unknown function (DUF1450)"],["Pfam%3APF12227","Protein of unknown function (DUF3603)"]]},{"id":"NCBITaxon:362","l":"Agrobacterium radiobacter","na":4,"nb":1,"a":[["plant-gall-po-0025626.html","plant gall"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["Pfam%3APF04909","Amidohydrolase"]]},{"id":"NCBITaxon:391","l":"Rhizobium sp.","na":4,"nb":1,"a":[["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["paddy-ricefield-habitatmech-bacdive-6e3154acd8.html","Paddy-Ricefield"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["TED%3AAF-A0A353G134-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A353G134-F1-model_v4_TED01"]]},{"id":"NCBITaxon:395019","l":"Burkholderia multivorans ATCC 17616","na":4,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"],["desert-sand-envo-00005800.html","desert sand"],["orchard-envo-00000115.html","orchard"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["TED%3AAF-A0A0H3KMX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0H3KMX2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:410358","l":"Methanocorpusculum labreanum (strain ATCC 43576 / DSM 4855 / Z)","na":1,"nb":4,"a":[["joint-bto-0001686.html","joint"]],"b":[["Pfam%3APF27030","AbpE bacteria"],["Pfam%3APF01864","CDP-archaeol synthase"],["Pfam%3APF01891","Cobalt uptake substrate-specific transmembrane region"],["TED%3AAF-A2SPH3-F1-model_v4_TED02","TED highly-symmetric fold AF-A2SPH3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:43","l":"Cystobacter fuscus","na":1,"nb":4,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"]],"b":[["TED%3AAF-A0A250J1A4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J1A4-F1-model_v4_TED01"],["TED%3AAF-A0A250J4G5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J4G5-F1-model_v4_TED01"],["TED%3AAF-A0A250J8W0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J8W0-F1-model_v4_TED01"],["TED%3AAF-A0A250J3K5-F1-model_v4_TED03","TED novel fold AF-A0A250J3K5-F1-model_v4_TED03"]]},{"id":"NCBITaxon:452863","l":"Pseudarthrobacter chlorophenolicus (strain ATCC 700700 / DSM 12829 / CIP 107037 / JCM 12360 / KCTC 9906 / NCIMB 13794 / A6)","na":1,"nb":4,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["TED%3AAF-B8HI43-F1-model_v4_TED02","TED highly-symmetric fold AF-B8HI43-F1-model_v4_TED02"],["TED%3AAF-B8HIA6-F1-model_v4_TED01","TED highly-symmetric fold AF-B8HIA6-F1-model_v4_TED01"],["TED%3AAF-B8HIQ6-F1-model_v4_TED02","TED highly-symmetric fold AF-B8HIQ6-F1-model_v4_TED02"],["TED%3AAF-B8HHK3-F1-model_v4_TED01","TED novel fold AF-B8HHK3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:46245","l":"Drosophila pseudoobscura pseudoobscura","na":1,"nb":4,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"]],"b":[["Pfam%3APF23724","Caspase-8, second domain"],["Pfam%3APF23725","Caspase-8, N-terminal domain"],["Pfam%3APF22123","Exuperantia RNAse H-like domain"],["Pfam%3APF23757","Insect HPS5 TPR domain"]]},{"id":"NCBITaxon:485913","l":"Ktedonobacter racemifer DSM 44963","na":1,"nb":4,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"]],"b":[["TED%3AAF-D6U145-F1-model_v4_TED01","TED highly-symmetric fold AF-D6U145-F1-model_v4_TED01"],["TED%3AAF-D6U380-F1-model_v4_TED01","TED highly-symmetric fold AF-D6U380-F1-model_v4_TED01"],["TED%3AAF-D6TNQ7-F1-model_v4_TED02","TED novel fold AF-D6TNQ7-F1-model_v4_TED02"],["TED%3AAF-D6U8N4-F1-model_v4_TED02","TED novel fold AF-D6U8N4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:512","l":"Alcaligenes sp","na":1,"nb":4,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["Pfam%3APF26354","N,N-dimethylformamidase alpha subunit"],["Pfam%3APF20254","N,N-dimethylformamidase beta subunit-like, C-terminal"],["Pfam%3APF11606","Family 31 carbohydrate binding protein"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"]]},{"id":"NCBITaxon:575540","l":"Isosphaera pallida ATCC 43644","na":4,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["agricultural-soil-envo-00002259.html","agricultural soil"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-E8R507-F1-model_v4_TED01","TED highly-symmetric fold AF-E8R507-F1-model_v4_TED01"]]},{"id":"NCBITaxon:644281","l":"Methanocaldococcus sp. FS406-22","na":4,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"],["volcano-envo-00000247.html","volcano"]],"b":[["TED%3AAF-D3S6J5-F1-model_v4_TED01","TED highly-symmetric fold AF-D3S6J5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":1,"nb":4,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["PROSITE%3APS00949","Autoinducer synthase family signature"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"],["PROSITE%3APS00607","cAMP phosphodiesterases class-II signature"],["TED%3AAF-A0A844NWZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A844NWZ1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:7244","l":"Drosophila virilis","na":1,"nb":4,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"]],"b":[["Pfam%3APF14786","Tube Death domain"],["Pfam%3APF05836","Chorion protein S16"],["Pfam%3APF13428","Tetratricopeptide repeat"],["TED%3AAF-B4LEB1-F1-model_v4_TED02","TED novel fold AF-B4LEB1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:888845","l":"Minicystis rosea","na":1,"nb":4,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["TED%3AAF-A0A1L6LHU6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6LHU6-F1-model_v4_TED01"],["TED%3AAF-A0A1L6LWQ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6LWQ0-F1-model_v4_TED01"],["TED%3AAF-A0A1L6L181-F1-model_v4_TED02","TED novel fold AF-A0A1L6L181-F1-model_v4_TED02"],["TED%3AAF-A0A1L6LWI8-F1-model_v4_TED02","TED novel fold AF-A0A1L6LWI8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:935293","l":"Yersinia entomophaga","na":1,"nb":4,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["Pfam%3APF05785","Rho-activating domain of cytotoxic necrotizing factor"],["Pfam%3APF20220","ABC toxin N-terminal region"],["Pfam%3APF18413","Neuraminidase-like domain"],["Pfam%3APF12256","Insecticide toxin TcdB middle/N-terminal region"]]},{"id":"UBERON:0001045","l":"","na":4,"nb":1,"a":[["midgut-habitatmech-gold-5c1b0d44e2.html","Midgut"],["midgut-habitatmech-gold-31577394a0.html","Midgut"],["midgut-habitatmech-gold-67c565f695.html","Midgut"],["midgut-habitatmech-gold-0307474089.html","Midgut"]],"b":[["GO%3A0007494","midgut development"]]},{"id":"UBERON:0001836","l":"","na":4,"nb":1,"a":[["saliva-habitatmech-gold-4c19ae6894.html","Saliva"],["saliva-habitatmech-gold-1e04aaebba.html","Saliva"],["saliva-habitatmech-gold-68875fbeda.html","Saliva"],["saliva-habitatmech-gold-a747c6ab38.html","Saliva"]],"b":[["GO%3A0046541","saliva secretion"]]},{"id":"NCBITaxon:105841","l":"Anaerostipes caccae","na":3,"nb":1,"a":[["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["emulsion-envo-00010506.html","emulsion"],["organic-feature-envo-01000159.html","organic feature"]],"b":[["TED%3AAF-A0A6N2WKG2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N2WKG2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1090322","l":"Methanolobus tindarius DSM 2278","na":1,"nb":3,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["TED%3AAF-W9DQM0-F1-model_v4_TED03","TED highly-symmetric fold AF-W9DQM0-F1-model_v4_TED03"],["TED%3AAF-W9DMY0-F1-model_v4_TED01","TED novel fold AF-W9DMY0-F1-model_v4_TED01"],["TED%3AAF-W9DNB8-F1-model_v4_TED01","TED novel fold AF-W9DNB8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1120927","l":"Acinetobacter tandoii DSM 14970 = CIP 107469","na":3,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["TED%3AAF-R9BEH0-F1-model_v4_TED04","TED highly-symmetric fold AF-R9BEH0-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1120928","l":"Acinetobacter tjernbergiae DSM 14971 = CIP 107465","na":3,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["TED%3AAF-V2W927-F1-model_v4_TED01","TED highly-symmetric fold AF-V2W927-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121391","l":"Desulfacinum infernum DSM 9756","na":3,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["TED%3AAF-A0A1M5CF65-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M5CF65-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121393","l":"Desulfatibacillum alkenivorans DSM 16219","na":3,"nb":1,"a":[["sewage-plant-envo-00003043.html","sewage plant"],["waste-water-envo-00002001.html","waste water"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["TED%3AAF-A0A1M6GB75-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M6GB75-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121950","l":"Hespellia stercorisuis DSM 15480","na":3,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["fecal-environment-envo-01001029.html","fecal environment"],["waste-material-envo-00002264.html","waste material"]],"b":[["TED%3AAF-A0A1M6UMY1-F1-model_v4_TED01","TED novel fold AF-A0A1M6UMY1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1122133","l":"Kaistia soli DSM 19436","na":3,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["wetland-area-envo-00000043.html","wetland area"]],"b":[["TED%3AAF-A0A1M5DFE2-F1-model_v4_TED01","TED novel fold AF-A0A1M5DFE2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1123012","l":"Pseudobutyrivibrio xylanivorans DSM 14809","na":3,"nb":1,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"],["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"]],"b":[["TED%3AAF-A0A1M6KN30-F1-model_v4_TED01","TED novel fold AF-A0A1M6KN30-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1125630","l":"Klebsiella pneumoniae subsp. pneumoniae (strain HS11286)","na":1,"nb":3,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["Pfam%3APF16527","Two-component sensor protein CpxA, periplasmic domain"],["Pfam%3APF03883","Peroxide stress protein YaaA"],["PROSITE%3APS01081","TetR-type HTH domain signature"]]},{"id":"NCBITaxon:117681","l":"Pseudomonas gingeri","na":3,"nb":1,"a":[["lake-envo-00000020.html","lake"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"]],"b":[["TED%3AAF-A0A7Y7X9U2-F1-model_v4_TED01","TED novel fold AF-A0A7Y7X9U2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:119602","l":"Streptococcus dysgalactiae subsp. equisimilis","na":3,"nb":1,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["animal-manure-envo-00003031.html","animal manure"]],"b":[["TED%3AAF-A0A5M4CWR2-F1-model_v4_TED02","TED novel fold AF-A0A5M4CWR2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1267423","l":"Roseivirga pacifica","na":1,"nb":3,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["TED%3AAF-A0A1I0MEP5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I0MEP5-F1-model_v4_TED02"],["TED%3AAF-A0A1I0RG98-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I0RG98-F1-model_v4_TED01"],["TED%3AAF-A0A4D7JNA0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4D7JNA0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1295009","l":"Methanomassiliicoccus intestinalis (strain Issoire-Mx1)","na":1,"nb":3,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["TED%3AAF-R9T6Q3-F1-model_v4_TED04","TED highly-symmetric fold AF-R9T6Q3-F1-model_v4_TED04"],["TED%3AAF-R9TAZ5-F1-model_v4_TED01","TED highly-symmetric fold AF-R9TAZ5-F1-model_v4_TED01"],["TED%3AAF-R9T6T6-F1-model_v4_TED01","TED novel fold AF-R9T6T6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1298856","l":"Sphingomonas sp. URHD0007","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["TED%3AAF-A0A2U1FWJ9-F1-model_v4_TED03","TED novel fold AF-A0A2U1FWJ9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1329250","l":"Weissella oryzae (strain DSM 25784 / JCM 18191 / LMG 30913 / SG25)","na":1,"nb":3,"a":[["caryopsis-bto-0000208.html","caryopsis"]],"b":[["Pfam%3APF26322","Botulinum-like neurotoxin Wo, C-terminal beta-trefoil domain"],["Pfam%3APF26321","Botulinum-like neurotoxin Wo, concanavalin A-like domain"],["TED%3AAF-A0A069CU70-F1-model_v4_TED02","TED novel fold AF-A0A069CU70-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1353","l":"Enterococcus gallinarum","na":3,"nb":1,"a":[["foregut-bto-0000507.html","foregut"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["Pfam%3APF01757","Acyltransferase domain"]]},{"id":"NCBITaxon:137591","l":"Weissella cibaria","na":3,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["epithelial-cell-bto-0000414.html","epithelial cell"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["TED%3AAF-A0A0D1LFQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D1LFQ3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:137722","l":"Azospirillum sp. B510","na":3,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["TED%3AAF-D3P3H1-F1-model_v4_TED02","TED highly-symmetric fold AF-D3P3H1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1503","l":"Gottschalkia purinilytica","na":3,"nb":1,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"],["sludge-envo-00002044.html","sludge"]],"b":[["Pfam%3APF07355","Glycine/sarcosine/betaine reductase selenoprotein B (GRDB)"]]},{"id":"NCBITaxon:1534","l":"Clostridium kluyveri","na":3,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"],["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"]],"b":[["TED%3AAF-A0A1L5FEG9-F1-model_v4_TED01","TED novel fold AF-A0A1L5FEG9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1552123","l":"Listeria booriae","na":1,"nb":3,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["TED%3AAF-A0A7X0TLR3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X0TLR3-F1-model_v4_TED01"],["TED%3AAF-A0A841XX79-F1-model_v4_TED03","TED novel fold AF-A0A841XX79-F1-model_v4_TED03"],["TED%3AAF-A0A842AXH7-F1-model_v4_TED01","TED novel fold AF-A0A842AXH7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:158","l":"Treponema denticola","na":3,"nb":1,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["archeological-site-envo-00000564.html","archeological site"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["TED%3AAF-A0A125RME2-F1-model_v4_TED02","TED novel fold AF-A0A125RME2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1588","l":"Lentilactobacillus hilgardii","na":3,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["TED%3AAF-A0A6G9Q2H1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6G9Q2H1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:169760","l":"Paenibacillus stellifer","na":3,"nb":1,"a":[["factory-envo-01000536.html","factory"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["TED%3AAF-A0A089LNP8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A089LNP8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1724","l":"Corynebacterium renale","na":3,"nb":1,"a":[["water-body-envo-00000063.html","water body"],["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["TED%3AAF-A0A2A9DLH1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A9DLH1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":1,"nb":3,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["Pfam%3APF03069","Acetamidase/Formamidase family"],["PROSITE%3APS00818","Dps protein family signature 1"],["Pfam%3APF13810","Domain of unknown function (DUF4185)"]]},{"id":"NCBITaxon:178306","l":"Pyrobaculum aerophilum (strain ATCC 51768 / DSM 7523 / JCM 9630 / CIP 104966 / NBRC 100827 / IM2)","na":1,"nb":3,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF09171","N-glycosylase/DNA lyase"],["Pfam%3APF10432","Bacterial phospho-glucose isomerase C-terminal SIS domain"],["TED%3AAF-Q8ZWY1-F1-model_v4_TED04","TED novel fold AF-Q8ZWY1-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1831","l":"","na":1,"nb":3,"a":[["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["Pfam%3APF14525","AraC-binding-like domain"],["Pfam%3APF01613","Flavin reductase like domain"],["TED%3AAF-A0A7X7SF64-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X7SF64-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1872119","l":"Acidobacterium sp.","na":3,"nb":1,"a":[["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"],["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["TED%3AAF-A0A2G4JIL1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2G4JIL1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1872578","l":"Aquabacterium sp.","na":1,"nb":3,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["TED%3AAF-A0A521ZRM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521ZRM4-F1-model_v4_TED01"],["TED%3AAF-A0A521ZL87-F1-model_v4_TED04","TED novel fold AF-A0A521ZL87-F1-model_v4_TED04"],["TED%3AAF-A0A5C8BIL8-F1-model_v4_TED02","TED novel fold AF-A0A5C8BIL8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1874361","l":"Idiomarina sp.","na":3,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"],["saline-water-body-envo-01001319.html","saline water body"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["TED%3AAF-A0A2E9H521-F1-model_v4_TED01","TED novel fold AF-A0A2E9H521-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1882831","l":"Verrucomicrobium sp. GAS474","na":1,"nb":3,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["TED%3AAF-A0A1H2GE34-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H2GE34-F1-model_v4_TED01"],["TED%3AAF-A0A1H2GVJ7-F1-model_v4_TED04","TED novel fold AF-A0A1H2GVJ7-F1-model_v4_TED04"],["TED%3AAF-A0A1H2HH15-F1-model_v4_TED02","TED novel fold AF-A0A1H2HH15-F1-model_v4_TED02"]]},{"id":"NCBITaxon:188906","l":"Jannaschia helgolandensis","na":3,"nb":1,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["TED%3AAF-A0A1H7MIC2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H7MIC2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:188908","l":"Oleispira antarctica","na":3,"nb":1,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A1Y5HYG0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y5HYG0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:189518","l":"Leptospira interrogans serovar Lai str. 56601","na":3,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF27429","LB_356"]]},{"id":"NCBITaxon:190655","l":"Legionella busanensis","na":1,"nb":3,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["TED%3AAF-A0A378JRR1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A378JRR1-F1-model_v4_TED01"],["TED%3AAF-A0A378JH21-F1-model_v4_TED02","TED novel fold AF-A0A378JH21-F1-model_v4_TED02"],["TED%3AAF-A0A378JIY5-F1-model_v4_TED01","TED novel fold AF-A0A378JIY5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1916082","l":"Alteromonadaceae bacterium","na":1,"nb":3,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2E5MKL5-F1-model_v4_TED03","TED novel fold AF-A0A2E5MKL5-F1-model_v4_TED03"],["TED%3AAF-A0A7Y6ZTD4-F1-model_v4_TED02","TED novel fold AF-A0A7Y6ZTD4-F1-model_v4_TED02"],["TED%3AAF-A0A7Y6ZTV9-F1-model_v4_TED01","TED novel fold AF-A0A7Y6ZTV9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1970199","l":"Sorangiineae bacterium NIC37A 2","na":1,"nb":3,"a":[["compost-envo-00002170.html","compost"]],"b":[["TED%3AAF-A0A1W9QHW9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W9QHW9-F1-model_v4_TED01"],["TED%3AAF-A0A1W9Q7E2-F1-model_v4_TED02","TED novel fold AF-A0A1W9Q7E2-F1-model_v4_TED02"],["TED%3AAF-A0A1W9QHC1-F1-model_v4_TED04","TED novel fold AF-A0A1W9QHC1-F1-model_v4_TED04"]]},{"id":"NCBITaxon:198804","l":"Buchnera aphidicola subsp. Schizaphis graminum (strain Sg)","na":1,"nb":3,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Pfam%3APF09849","Uncharacterized protein conserved in bacteria (DUF2076)"],["Pfam%3APF09976","Tetratricopeptide repeat-like domain"],["Pfam%3APF13371","Tetratricopeptide repeat"]]},{"id":"NCBITaxon:199","l":"Campylobacter concisus","na":1,"nb":3,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["TED%3AAF-A0A7S9RBE4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S9RBE4-F1-model_v4_TED03"],["TED%3AAF-A0A1Y5MKZ8-F1-model_v4_TED01","TED novel fold AF-A0A1Y5MKZ8-F1-model_v4_TED01"],["TED%3AAF-A0A7S9X6B9-F1-model_v4_TED01","TED novel fold AF-A0A7S9X6B9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:216816","l":"Bifidobacterium longum","na":3,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"],["egg-food-product-foodon-00001274.html","egg food product"],["juvenile-bto-0002168.html","juvenile"]],"b":[["TED%3AAF-A0A413ACI9-F1-model_v4_TED01","TED novel fold AF-A0A413ACI9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2283","l":"Acidianus ambivalens","na":1,"nb":3,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["Pfam%3APF07680","TQO small subunit DoxA"],["Pfam%3APF04173","TQO small subunit DoxD"],["TED%3AAF-O57695-F1-model_v4_TED01","TED highly-symmetric fold AF-O57695-F1-model_v4_TED01"]]},{"id":"NCBITaxon:228410","l":"Nitrosomonas europaea ATCC 19718","na":1,"nb":3,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["Pfam%3APF02461","Ammonia monooxygenase"],["Pfam%3APF13435","Cytochrome c554 and c-prime"],["TED%3AAF-Q82SR8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q82SR8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:232991","l":"Dulcicalothrix desertica PCC 7102","na":3,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"],["desert-area-envo-00000097.html","desert area"],["sand-envo-01000017.html","sand"]],"b":[["TED%3AAF-A0A433V699-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A433V699-F1-model_v4_TED01"]]},{"id":"NCBITaxon:235279","l":"Helicobacter hepaticus (strain ATCC 51449 / 3B1)","na":1,"nb":3,"a":[["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"]],"b":[["Pfam%3APF13673","Acetyltransferase (GNAT) domain"],["Pfam%3APF03498","Cytolethal distending toxin A/C domain"],["Pfam%3APF03352","Methyladenine glycosylase"]]},{"id":"NCBITaxon:2371","l":"Xylella fastidiosa","na":3,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"],["water-scum-envo-00005794.html","water scum"]],"b":[["TED%3AAF-A0A1L2B4G6-F1-model_v4_TED02","TED novel fold AF-A0A1L2B4G6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:243243","l":"Mycobacterium avium (strain 104)","na":1,"nb":3,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF13740","ACT domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03710","Glutamate-ammonia ligase adenylyltransferase"]]},{"id":"NCBITaxon:256","l":"Myroides odoratus","na":3,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"]],"b":[["TED%3AAF-A0A378RV66-F1-model_v4_TED01","TED novel fold AF-A0A378RV66-F1-model_v4_TED01"]]},{"id":"NCBITaxon:272560","l":"Burkholderia pseudomallei (strain K96243)","na":1,"nb":3,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF07077","Virulence factor BPSS1818"],["Pfam%3APF11958","Surface attachment protein BPSS1860"],["Pfam%3APF16374","Cycle inhibiting factor (CIF)"]]},{"id":"NCBITaxon:28090","l":"Acinetobacter lwoffii","na":3,"nb":1,"a":[["nectar-bto-0000537.html","nectar"],["pseudostem-bto-0005992.html","pseudostem"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["TED%3AAF-A0A7S9AAV2-F1-model_v4_TED01","TED novel fold AF-A0A7S9AAV2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28111","l":"Bacteroides eggerthii","na":1,"nb":3,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["TED%3AAF-A0A380YHG6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A380YHG6-F1-model_v4_TED01"],["TED%3AAF-A0A380YP67-F1-model_v4_TED01","TED novel fold AF-A0A380YP67-F1-model_v4_TED01"],["TED%3AAF-A0A414M8K0-F1-model_v4_TED04","TED novel fold AF-A0A414M8K0-F1-model_v4_TED04"]]},{"id":"NCBITaxon:290338","l":"Citrobacter koseri (strain ATCC BAA-895 / CDC 4225-83 / SGSC4696)","na":1,"nb":3,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Pfam%3APF03783","Curli production assembly/transport component CsgG"],["Pfam%3APF04269","Protein of unknown function, DUF440"],["Pfam%3APF17874","MalT-like TPR region"]]},{"id":"NCBITaxon:29466","l":"Veillonella parvula","na":3,"nb":1,"a":[["dental-plaque-bto-0000338.html","dental plaque"],["juvenile-bto-0002168.html","juvenile"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["TED%3AAF-A0A134BYG5-F1-model_v4_TED01","TED novel fold AF-A0A134BYG5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:297246","l":"Legionella pneumophila str. Paris","na":3,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"],["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["Pfam%3APF03445","Putative nucleotidyltransferase DUF294"]]},{"id":"NCBITaxon:312309","l":"","na":1,"nb":3,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["Pfam%3APF06610","L-alanine exporter"],["Pfam%3APF00765","Autoinducer synthase"],["PROSITE%3APS00949","Autoinducer synthase family signature"]]},{"id":"NCBITaxon:313589","l":"Janibacter sp. HTCC2649","na":3,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["bulk-soil-envo-00005802.html","bulk soil"],["orchard-envo-00000115.html","orchard"]],"b":[["TED%3AAF-A3TKC7-F1-model_v4_TED01","TED novel fold AF-A3TKC7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:313595","l":"Psychroflexus torquis ATCC 700755","na":3,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["coral-reef-envo-00000150.html","coral reef"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["TED%3AAF-K4IBR2-F1-model_v4_TED01","TED novel fold AF-K4IBR2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:315456","l":"Rickettsia felis (strain ATCC VR-1525 / URRWXCal2)","na":1,"nb":3,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["Pfam%3APF18324","Bacterial isocitrate dehydrogenase, C-terminal domain"],["Pfam%3APF11019","Protein of unknown function (DUF2608)"],["Pfam%3APF22203","Surface cell antigen Sca2 helical repeat"]]},{"id":"NCBITaxon:317655","l":"Sphingopyxis alaskensis RB2256","na":3,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["environmental-material-envo-00010483.html","environmental material"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["Pfam%3APF10755","Protein of unknown function (DUF2585)"]]},{"id":"NCBITaxon:321967","l":"Lacticaseibacillus paracasei (strain ATCC 334 / BCRC 17002 / CCUG 31169 / CIP 107868 / KCTC 3260 / NRRL B-441)","na":1,"nb":3,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["Pfam%3APF11975","Family 4 glycosyl hydrolase C-terminal domain"],["Pfam%3APF02056","Family 4 glycosyl hydrolase"],["PROSITE%3APS01324","Glycosyl hydrolases family 4 signature"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":1,"nb":3,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF22041","Glutathione S-transferase, C-terminal domain"],["Pfam%3APF08493","Aflatoxin regulatory protein"]]},{"id":"NCBITaxon:33959","l":"Lactobacillus johnsonii","na":3,"nb":1,"a":[["animal-litter-envo-00002191.html","animal litter"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["Pfam%3APF13518","Helix-turn-helix domain"]]},{"id":"NCBITaxon:349124","l":"Halorhodospira halophila (strain DSM 244 / SL1)","na":1,"nb":3,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["Pfam%3APF02639","Uncharacterized BCR, YaiI/YqxD family COG1671"],["Pfam%3APF20543","N2-fixation sustaining protein CowN"],["Pfam%3APF07311","Dodecin"]]},{"id":"NCBITaxon:349741","l":"Akkermansia muciniphila (strain ATCC BAA-835 / DSM 22959 / JCM 33894 / BCRC 81048 / CCUG 64013 / CIP 107961 / Muc)","na":1,"nb":3,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["Pfam%3APF23763","GLAA-B beta-barrel domain I"],["Pfam%3APF23764","GLAA-B beta-barrel domain II"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"]]},{"id":"NCBITaxon:357804","l":"Psychromonas ingrahamii (strain DSM 17664 / CCUG 51855 / 37)","na":1,"nb":3,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["Pfam%3APF27465","DNA-binding protein Fis N-terminal domain"],["Pfam%3APF04363","Protein of unknown function (DUF496)"],["Pfam%3APF18955","Domain of unknown function (DUF5698)"]]},{"id":"NCBITaxon:35816","l":"Pelobacter acidigallici","na":3,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["Pfam%3APF21423","Pyrogallol hydroxytransferase large subunit-like, domain 1"]]},{"id":"NCBITaxon:360807","l":"Roseburia inulinivorans","na":3,"nb":1,"a":[["pig-manure-envo-00003860.html","pig manure"],["tropical-envo-01000204.html","tropical"],["harbour-envo-00000463.html","harbour"]],"b":[["TED%3AAF-A0A173VWR5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A173VWR5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:367928","l":"Bifidobacterium adolescentis (strain ATCC 15703 / DSM 20083 / NCTC 11814 / E194a)","na":1,"nb":3,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["Pfam%3APF02156","Glycosyl hydrolase family 26"],["Pfam%3APF27512","LeuD_N"]]},{"id":"NCBITaxon:376686","l":"","na":1,"nb":3,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["Pfam%3APF17957","Bacterial Ig domain"],["Pfam%3APF24850","Bacillithiol biosynthesis BshC, C-terminal coiled-coil domain"],["Pfam%3APF14109","GldH lipoprotein"]]},{"id":"NCBITaxon:384616","l":"Pyrobaculum islandicum (strain DSM 4184 / JCM 9189 / GEO3)","na":1,"nb":3,"a":[["geothermal-power-plant-envo-00002215.html","geothermal power plant"]],"b":[["Pfam%3APF01941","S-adenosylmethionine synthetase (AdoMet synthetase)"],["Pfam%3APF11520","Chromatin protein Cren7"],["Pfam%3APF05167","Uncharacterised ACR (DUF711)"]]},{"id":"NCBITaxon:384676","l":"Pseudomonas entomophila L48","na":1,"nb":3,"a":[["coelom-bto-0001707.html","coelom"]],"b":[["Pfam%3APF18063","Beta barrel Pore-forming domain"],["Pfam%3APF08548","Peptidase M10 serralysin C terminal"],["TED%3AAF-Q1I2P2-F1-model_v4_TED01","TED novel fold AF-Q1I2P2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:399599","l":"Shewanella baltica (strain OS195)","na":1,"nb":3,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["Pfam%3APF24860","FdhE, C-terminal domain"],["Pfam%3APF24859","FdhE, central domain"],["Pfam%3APF04216","FdhE, N-terminal"]]},{"id":"NCBITaxon:399739","l":"Ectopseudomonas mendocina (strain ymp)","na":1,"nb":3,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["Pfam%3APF22289","Dimethylamine monooxygenase subunit DmmA-like, C-terminal domain"],["Pfam%3APF04359","Protein of unknown function (DUF493)"],["Pfam%3APF11927","Haem-dependent oxidative N-demethylase, alpha subunit-like"]]},{"id":"NCBITaxon:400682","l":"Amphimedon queenslandica","na":1,"nb":3,"a":[["germ-cell-bto-0000535.html","germ cell"]],"b":[["TED%3AAF-A0A1X7UW69-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X7UW69-F1-model_v4_TED01"],["TED%3AAF-A0A1X7SZW3-F1-model_v4_TED01","TED novel fold AF-A0A1X7SZW3-F1-model_v4_TED01"],["TED%3AAF-A0A1X7UQD3-F1-model_v4_TED02","TED novel fold AF-A0A1X7UQD3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:401053","l":"Terriglobus saanensis SP1PR4","na":3,"nb":1,"a":[["bulk-soil-envo-00005802.html","bulk soil"],["forested-area-envo-00000111.html","forested area"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-E8UZX5-F1-model_v4_TED02","TED novel fold AF-E8UZX5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:406547","l":"Rubripirellula obstinata","na":1,"nb":3,"a":[["epibiont-habitatmech-bacdive-f4eb470a03.html","Epibiont"]],"b":[["TED%3AAF-A0A5B1CJC2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B1CJC2-F1-model_v4_TED01"],["TED%3AAF-A0A5B1CQ78-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B1CQ78-F1-model_v4_TED01"],["TED%3AAF-A0A5B1CIN8-F1-model_v4_TED02","TED novel fold AF-A0A5B1CIN8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:419665","l":"Methanococcus aeolicus (strain ATCC BAA-1280 / DSM 17508 / OCM 812 / Nankai-3)","na":1,"nb":3,"a":[["shoreline-envo-00000486.html","shoreline"]],"b":[["Pfam%3APF26548","Putative peptidyl-prolyl cis-trans isomerase domain"],["Pfam%3APF06787","FeGP cofactor biosynthesis protein HcgF"],["Pfam%3APF01941","S-adenosylmethionine synthetase (AdoMet synthetase)"]]},{"id":"NCBITaxon:438","l":"Acetobacter pasteurianus","na":3,"nb":1,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"],["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["TED%3AAF-A0A1A0CE09-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1A0CE09-F1-model_v4_TED01"]]},{"id":"NCBITaxon:439292","l":"Bacillus selenitireducens (strain ATCC 700615 / DSM 15326 / MLS10)","na":1,"nb":3,"a":[["anaerobic-mud-envo-00002133.html","anaerobic mud"]],"b":[["Pfam%3APF03633","Glycosyl hydrolase family 65, C-terminal domain"],["Pfam%3APF03636","Glycosyl hydrolase family 65, N-terminal domain"],["Pfam%3APF03632","Glycosyl hydrolase family 65 central catalytic domain"]]},{"id":"NCBITaxon:439495","l":"Pseudovibrio sp. JE062","na":3,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["germ-cell-bto-0000535.html","germ cell"],["desert-sand-envo-00005800.html","desert sand"]],"b":[["TED%3AAF-B6R9T4-F1-model_v4_TED01","TED highly-symmetric fold AF-B6R9T4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:444158","l":"Methanococcus maripaludis (strain C6 / ATCC BAA-1332)","na":1,"nb":3,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["Pfam%3APF06847","Archaeal Peptidase A24 C-terminus Type II"],["Pfam%3APF09888","Uncharacterized protein conserved in archaea (DUF2115)"],["Pfam%3APF05165","GTP cyclohydrolase III"]]},{"id":"NCBITaxon:446465","l":"Brachybacterium faecium DSM 4810","na":3,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["poultry-deep-litter-envo-00003908.html","poultry deep litter"],["village-biome-envo-01000246.html","village biome"]],"b":[["TED%3AAF-C7MEJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-C7MEJ8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:448385","l":"","na":1,"nb":3,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["TED%3AAF-A9FYP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A9FYP8-F1-model_v4_TED01"],["TED%3AAF-A9G932-F1-model_v4_TED01","TED highly-symmetric fold AF-A9G932-F1-model_v4_TED01"],["TED%3AAF-A9F9E5-F1-model_v4_TED01","TED novel fold AF-A9F9E5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:45634","l":"Streptococcus cristatus","na":1,"nb":3,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["Pfam%3APF03486","HI0933-like protein Rossmann domain"],["Pfam%3APF22780","HI0933-like protein barrel and H2TH domain"],["TED%3AAF-A0A139N090-F1-model_v4_TED01","TED novel fold AF-A0A139N090-F1-model_v4_TED01"]]},{"id":"NCBITaxon:469371","l":"Thermobispora bispora DSM 43833","na":3,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["TED%3AAF-D6Y8C2-F1-model_v4_TED02","TED novel fold AF-D6Y8C2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:479431","l":"Nakamurella multipartita DSM 44233","na":3,"nb":1,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["TED%3AAF-C8XHD0-F1-model_v4_TED02","TED novel fold AF-C8XHD0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:51663","l":"Pediococcus damnosus","na":3,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["blast-cell-bto-0000125.html","blast cell"]],"b":[["TED%3AAF-A0A0R2HKY5-F1-model_v4_TED01","TED novel fold AF-A0A0R2HKY5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:530564","l":"Pirellula staleyi DSM 6068","na":3,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["agricultural-soil-envo-00002259.html","agricultural soil"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-D2QXI3-F1-model_v4_TED05","TED novel fold AF-D2QXI3-F1-model_v4_TED05"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":1,"nb":3,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"],["TED%3AAF-A0A7H8I034-F1-model_v4_TED01","TED novel fold AF-A0A7H8I034-F1-model_v4_TED01"]]},{"id":"NCBITaxon:554155","l":"Arthroderma otae (strain ATCC MYA-4605 / CBS 113480)","na":1,"nb":3,"a":[["mountain-pass-envo-00000084.html","mountain pass"]],"b":[["Pfam%3APF13560","Helix-turn-helix domain"],["TED%3AAF-C5FU25-F1-model_v4_TED01","TED novel fold AF-C5FU25-F1-model_v4_TED01"],["TED%3AAF-C5FXD7-F1-model_v4_TED05","TED novel fold AF-C5FXD7-F1-model_v4_TED05"]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":1,"nb":3,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"],["PROSITE%3APS00896","LacY family proton/sugar symporters signature 1"],["PROSITE%3APS00897","LacY family proton/sugar symporters signature 2"]]},{"id":"NCBITaxon:573064","l":"Methanocaldococcus fervens AG86","na":3,"nb":1,"a":[["inlet-envo-00000475.html","inlet"],["shoreline-envo-00000486.html","shoreline"],["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["Pfam%3APF02655","ATP-grasp domain"]]},{"id":"NCBITaxon:578458","l":"Schizophyllum commune (strain H4-8 / FGSC 9210)","na":1,"nb":3,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["TED%3AAF-D8PNC3-F1-model_v4_TED01","TED novel fold AF-D8PNC3-F1-model_v4_TED01"],["TED%3AAF-D8QDU6-F1-model_v4_TED02","TED novel fold AF-D8QDU6-F1-model_v4_TED02"],["TED%3AAF-D8QJK2-F1-model_v4_TED01","TED novel fold AF-D8QJK2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:584","l":"Proteus mirabilis","na":1,"nb":3,"a":[["salivary-gland-bto-0001203.html","salivary gland"]],"b":[["Pfam%3APF05280","Flagellar transcriptional activator (FlhC)"],["TED%3AAF-A0A1Z1SXV6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z1SXV6-F1-model_v4_TED01"],["TED%3AAF-A0A7U1CMJ9-F1-model_v4_TED01","TED novel fold AF-A0A7U1CMJ9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:588","l":"Providencia stuartii","na":1,"nb":3,"a":[["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["PROSITE%3APS01157","Class A bacterial acid phosphatases signature"]]},{"id":"NCBITaxon:644282","l":"Desulfarculus baarsii (strain ATCC 33931 / DSM 2075 / LMG 7858 / VKM B-1802 / 2st14)","na":1,"nb":3,"a":[["ditch-envo-00000037.html","ditch"]],"b":[["Pfam%3APF06397","Desulfoferrodoxin, N-terminal domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["TED%3AAF-E1QLH8-F1-model_v4_TED02","TED novel fold AF-E1QLH8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:658457","l":"Ectopseudomonas composti","na":3,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["TED%3AAF-A0A1I5P4N2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5P4N2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:666681","l":"Methylotenera versatilis 301","na":3,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["environmental-material-envo-00010483.html","environmental material"],["river-bed-envo-00000384.html","river bed"]],"b":[["TED%3AAF-D7DL14-F1-model_v4_TED01","TED novel fold AF-D7DL14-F1-model_v4_TED01"]]},{"id":"NCBITaxon:66711","l":"Escherichia phage AR1","na":1,"nb":3,"a":[["fiber-bto-0000450.html","fiber"]],"b":[["Pfam%3APF21721","Phage tail fibre adhesin Gp38 N-terminal domain"],["Pfam%3APF05268","Phage tail fibre adhesin Gp38"],["Pfam%3APF21446","Long-tail fiber proximal subunit, C-terminal, trimerization domain"]]},{"id":"NCBITaxon:688270","l":"Cellulophaga algicola (strain DSM 14237 / IC166 / ACAM 630)","na":1,"nb":3,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["TED%3AAF-E6XBJ1-F1-model_v4_TED01","TED highly-symmetric fold AF-E6XBJ1-F1-model_v4_TED01"],["TED%3AAF-E6X960-F1-model_v4_TED02","TED novel fold AF-E6X960-F1-model_v4_TED02"],["TED%3AAF-E6XEV2-F1-model_v4_TED02","TED novel fold AF-E6XEV2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:69293","l":"Gasterosteus aculeatus","na":3,"nb":1,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"],["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["TED%3AAF-G3Q6M8-F1-model_v4_TED01","TED novel fold AF-G3Q6M8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:715","l":"Actinobacillus pleuropneumoniae","na":1,"nb":3,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["Pfam%3APF26002","AprE-like, beta-barrel domain"],["Pfam%3APF02794","RTX toxin acyltransferase family"],["PROSITE%3APS00543","HlyD family secretion proteins signature"]]},{"id":"NCBITaxon:7176","l":"Culex quinquefasciatus","na":1,"nb":3,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["TED%3AAF-B0W7X4-F1-model_v4_TED04","TED highly-symmetric fold AF-B0W7X4-F1-model_v4_TED04"],["TED%3AAF-B0WQL7-F1-model_v4_TED02","TED highly-symmetric fold AF-B0WQL7-F1-model_v4_TED02"],["TED%3AAF-B0XLK9-F1-model_v4_TED05","TED highly-symmetric fold AF-B0XLK9-F1-model_v4_TED05"]]},{"id":"NCBITaxon:729","l":"Haemophilus parainfluenzae","na":3,"nb":1,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"],["tropical-envo-01000204.html","tropical"]],"b":[["Pfam%3APF04480","Protein of unknown function (DUF559)"]]},{"id":"NCBITaxon:749414","l":"","na":1,"nb":3,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF14509","Glycosyl-hydrolase 97 C-terminal, oligomerisation"],["Pfam%3APF14508","Glycosyl-hydrolase 97 N-terminal"],["Pfam%3APF10566","Glycoside hydrolase 97"]]},{"id":"NCBITaxon:79880","l":"Shouchella clausii","na":1,"nb":3,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["Pfam%3APF13536","Putative multidrug resistance efflux transporter"],["Pfam%3APF10776","Protein of unknown function (DUF2600)"],["TED%3AAF-A0A268NXB1-F1-model_v4_TED01","TED novel fold AF-A0A268NXB1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:83655","l":"Leclercia adecarboxylata","na":3,"nb":1,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["TED%3AAF-A0A5B7XGB6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A5B7XGB6-F1-model_v4_TED04"]]},{"id":"NCBITaxon:886293","l":"Singulisphaera acidiphila (strain ATCC BAA-1392 / DSM 18658 / VKM B-2454 / MOB10)","na":1,"nb":3,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-L0DF60-F1-model_v4_TED01","TED highly-symmetric fold AF-L0DF60-F1-model_v4_TED01"],["TED%3AAF-L0DFV3-F1-model_v4_TED01","TED highly-symmetric fold AF-L0DFV3-F1-model_v4_TED01"],["TED%3AAF-L0DBJ5-F1-model_v4_TED02","TED novel fold AF-L0DBJ5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:91360","l":"Desulforhopalus singaporensis","na":3,"nb":1,"a":[["marsh-envo-00000035.html","marsh"],["road-envo-00000064.html","road"],["garden-envo-00000011.html","garden"]],"b":[["TED%3AAF-A0A1H0QB18-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H0QB18-F1-model_v4_TED01"]]},{"id":"NCBITaxon:996","l":"Flavobacterium columnare","na":1,"nb":3,"a":[["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["TED%3AAF-A0A4Z0FEB3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Z0FEB3-F1-model_v4_TED02"],["TED%3AAF-A0A2N9P872-F1-model_v4_TED02","TED novel fold AF-A0A2N9P872-F1-model_v4_TED02"],["TED%3AAF-A0A2T4HIF9-F1-model_v4_TED03","TED novel fold AF-A0A2T4HIF9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1002340","l":"Leisingera sp. ANG1","na":2,"nb":1,"a":[["gland-bto-0000522.html","gland"],["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["TED%3AAF-A0A0B4EI55-F1-model_v4_TED01","TED novel fold AF-A0A0B4EI55-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1004304","l":"Hydrotalea sandarakina","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["island-envo-00000098.html","island"]],"b":[["TED%3AAF-A0A2W7RGM4-F1-model_v4_TED03","TED novel fold AF-A0A2W7RGM4-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1005043","l":"Candidatus Regiella insecticola 5.15","na":1,"nb":2,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["TED%3AAF-G2H098-F1-model_v4_TED01","TED highly-symmetric fold AF-G2H098-F1-model_v4_TED01"],["TED%3AAF-G2H102-F1-model_v4_TED04","TED novel fold AF-G2H102-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1006155","l":"Paenilisteria weihenstephanensis","na":2,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["TED%3AAF-A0A1S7FXD4-F1-model_v4_TED02","TED novel fold AF-A0A1S7FXD4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1007676","l":"Companilactobacillus ginsenosidimutans","na":2,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["TED%3AAF-A0A0H4QHM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0H4QHM6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1028307","l":"","na":1,"nb":2,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["Pfam%3APF16031","TonB polyproline region"],["Pfam%3APF09078","CheY binding"]]},{"id":"NCBITaxon:1031537","l":"Bremerella cremea","na":2,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"],["carcass-envo-00002033.html","carcass"]],"b":[["TED%3AAF-A0A368KQM2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A368KQM2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1033810","l":"Haloplasma contractile SSD-17B","na":1,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["TED%3AAF-F7PZK9-F1-model_v4_TED01","TED highly-symmetric fold AF-F7PZK9-F1-model_v4_TED01"],["TED%3AAF-U2EDU2-F1-model_v4_TED03","TED novel fold AF-U2EDU2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1034943","l":"Legionella massiliensis","na":1,"nb":2,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["TED%3AAF-A0A078KZR2-F1-model_v4_TED02","TED novel fold AF-A0A078KZR2-F1-model_v4_TED02"],["TED%3AAF-A0A078L1Y9-F1-model_v4_TED02","TED novel fold AF-A0A078L1Y9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1042","l":"Erythrobacter sp.","na":2,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A6G9N8S4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6G9N8S4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1045004","l":"Oenococcus kitaharae DSM 17330","na":2,"nb":1,"a":[["compost-envo-00002170.html","compost"],["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["TED%3AAF-G9WIN5-F1-model_v4_TED02","TED highly-symmetric fold AF-G9WIN5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1048394","l":"Compostimonas suwonensis","na":2,"nb":1,"a":[["agricultural-waste-material-envo-01000371.html","agricultural waste material"],["waste-material-envo-00002264.html","waste material"]],"b":[["TED%3AAF-A0A2M9BCH6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2M9BCH6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1048689","l":"","na":1,"nb":2,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["Pfam%3APF28043","Anti-phage protein KwaA"],["Pfam%3APF16162","Kiwa protein KwaB-like"]]},{"id":"NCBITaxon:108981","l":"Acinetobacter schindleri","na":2,"nb":1,"a":[["gut-bto-0000545.html","gut"],["skin-bto-0001253.html","skin"]],"b":[["TED%3AAF-A0A855WCB4-F1-model_v4_TED02","TED novel fold AF-A0A855WCB4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1096246","l":"Hungatella effluvii","na":2,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["environmental-system-envo-01000254.html","environmental system"]],"b":[["TED%3AAF-A0A2V3YBX4-F1-model_v4_TED02","TED novel fold AF-A0A2V3YBX4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1114856","l":"","na":2,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"],["sediment-envo-00002007.html","sediment"]],"b":[["TED%3AAF-L9VUV1-F1-model_v4_TED01","TED novel fold AF-L9VUV1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1120918","l":"Acetitomaculum ruminis DSM 5522","na":2,"nb":1,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["TED%3AAF-A0A1I1ATM7-F1-model_v4_TED01","TED novel fold AF-A0A1I1ATM7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1120923","l":"Acidocella aminolytica 101 = DSM 11237","na":2,"nb":1,"a":[["mine-envo-00000076.html","mine"],["rock-envo-00001995.html","rock"]],"b":[["TED%3AAF-A0A0D6PBP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D6PBP8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121022","l":"Asticcacaulis benevestitus DSM 16100 = ATCC BAA-896","na":2,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["TED%3AAF-V4PT21-F1-model_v4_TED01","TED highly-symmetric fold AF-V4PT21-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121270","l":"","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["peninsula-envo-00000305.html","peninsula"]],"b":[["TED%3AAF-A0A1T4LMW3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1T4LMW3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1121279","l":"Chitinimonas taiwanensis DSM 18899","na":1,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"]],"b":[["TED%3AAF-A0A1K2HNH6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1K2HNH6-F1-model_v4_TED02"],["TED%3AAF-A0A1K2HS13-F1-model_v4_TED04","TED novel fold AF-A0A1K2HS13-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1121405","l":"Desulfococcus multivorans DSM 2059","na":2,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"],["sludge-envo-00002044.html","sludge"]],"b":[["TED%3AAF-S7VDW8-F1-model_v4_TED02","TED highly-symmetric fold AF-S7VDW8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1121419","l":"Desulfosporosinus hippei DSM 8344","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["TED%3AAF-A0A1G8D348-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G8D348-F1-model_v4_TED01"],["TED%3AAF-A0A1G8CVS7-F1-model_v4_TED01","TED novel fold AF-A0A1G8CVS7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121448","l":"","na":2,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["primordium-bto-0001886.html","primordium"]],"b":[["Pfam%3APF12139","Adenosine-5'-phosphosulfate reductase beta subunit"]]},{"id":"NCBITaxon:1121868","l":"Enterovibrio nigricans DSM 22720","na":1,"nb":2,"a":[["mediterranean-envo-01000207.html","mediterranean"]],"b":[["TED%3AAF-A0A1T4UXP3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1T4UXP3-F1-model_v4_TED01"],["TED%3AAF-A0A1T4VT23-F1-model_v4_TED01","TED novel fold AF-A0A1T4VT23-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121915","l":"Geoalkalibacter ferrihydriticus DSM 17813","na":2,"nb":1,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["TED%3AAF-A0A0C2HTA4-F1-model_v4_TED03","TED novel fold AF-A0A0C2HTA4-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1121955","l":"Hymenobacter daecheongensis DSM 21074","na":1,"nb":2,"a":[["dam-envo-00000074.html","dam"]],"b":[["TED%3AAF-A0A1M6EGP6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M6EGP6-F1-model_v4_TED02"],["TED%3AAF-A0A1M6M5E1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M6M5E1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1123071","l":"Rubritalea squalenifaciens DSM 18772","na":2,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"],["peninsula-envo-00000305.html","peninsula"]],"b":[["TED%3AAF-A0A1M6J7A4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M6J7A4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1124743","l":"Kribbella soli","na":2,"nb":1,"a":[["park-envo-00000562.html","park"],["forest-biome-envo-01000174.html","forest biome"]],"b":[["TED%3AAF-A0A4Q7WU76-F1-model_v4_TED01","TED novel fold AF-A0A4Q7WU76-F1-model_v4_TED01"]]},{"id":"NCBITaxon:113653","l":"Geoglobus ahangari","na":1,"nb":2,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["TED%3AAF-A0A7J3TIF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J3TIF4-F1-model_v4_TED01"],["TED%3AAF-A0A0F7ID24-F1-model_v4_TED02","TED novel fold AF-A0A0F7ID24-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1150298","l":"Fusicatenibacter saccharivorans","na":1,"nb":2,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["TED%3AAF-A0A174K1Z5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A174K1Z5-F1-model_v4_TED01"],["TED%3AAF-A0A174J3Q6-F1-model_v4_TED01","TED novel fold AF-A0A174J3Q6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1153","l":"Pseudanabaena sp.","na":1,"nb":2,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"]],"b":[["TED%3AAF-A0A2W6YPX5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W6YPX5-F1-model_v4_TED01"],["TED%3AAF-A0A2W7B262-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W7B262-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1165092","l":"Lachnospiraceae bacterium JC7","na":1,"nb":2,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["TED%3AAF-W3AP45-F1-model_v4_TED03","TED highly-symmetric fold AF-W3AP45-F1-model_v4_TED03"],["TED%3AAF-W3ATW4-F1-model_v4_TED02","TED highly-symmetric fold AF-W3ATW4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1166078","l":"Aureimonas phyllosphaerae","na":2,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["TED%3AAF-A0A7W6FW33-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W6FW33-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1172204","l":"","na":1,"nb":2,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["TED%3AAF-A0A446IBF2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A446IBF2-F1-model_v4_TED01"],["TED%3AAF-A0A446ICV2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A446ICV2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1190417","l":"Geodermatophilus telluris","na":2,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"],["sand-envo-01000017.html","sand"]],"b":[["TED%3AAF-A0A1G6L8J2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G6L8J2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1192854","l":"Granulosicoccus antarcticus IMCC3135","na":1,"nb":2,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["TED%3AAF-A0A2Z2NPF3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2Z2NPF3-F1-model_v4_TED03"],["TED%3AAF-A0A2Z2P0Z5-F1-model_v4_TED01","TED novel fold AF-A0A2Z2P0Z5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:119641","l":"Clostridium uliginosum","na":1,"nb":2,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["TED%3AAF-A0A1I1R8X9-F1-model_v4_TED03","TED novel fold AF-A0A1I1R8X9-F1-model_v4_TED03"],["TED%3AAF-A0A1I1S8C7-F1-model_v4_TED03","TED novel fold AF-A0A1I1S8C7-F1-model_v4_TED03"]]},{"id":"NCBITaxon:121719","l":"Pannonibacter phragmitetus","na":2,"nb":1,"a":[["nectar-bto-0000537.html","nectar"],["style-bto-0001313.html","style"]],"b":[["TED%3AAF-A0A0U3EPB7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0U3EPB7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1284","l":"Staphylococcus hyicus","na":1,"nb":2,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["Pfam%3APF04650","YSIRK type signal peptide"],["PROSITE%3APS01123","Thermonuclease family signature 1"]]},{"id":"NCBITaxon:1286","l":"Staphylococcus simulans","na":2,"nb":1,"a":[["animal-house-envo-00003040.html","animal house"],["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["Pfam%3APF25533","Lysostaphin, N-terminal domain"]]},{"id":"NCBITaxon:1290","l":"Staphylococcus hominis","na":2,"nb":1,"a":[["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"]],"b":[["TED%3AAF-A0A6N0I1N0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N0I1N0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1341154","l":"Flavobacterium cauense R2A-7","na":1,"nb":2,"a":[["lake-envo-00000020.html","lake"]],"b":[["TED%3AAF-V6RYF5-F1-model_v4_TED01","TED novel fold AF-V6RYF5-F1-model_v4_TED01"],["TED%3AAF-V6S0E8-F1-model_v4_TED02","TED novel fold AF-V6S0E8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:134537","l":"Paraburkholderia fungorum","na":1,"nb":2,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["TED%3AAF-A0A1H1IH55-F1-model_v4_TED01","TED novel fold AF-A0A1H1IH55-F1-model_v4_TED01"],["TED%3AAF-A0A2N8QLD6-F1-model_v4_TED03","TED novel fold AF-A0A2N8QLD6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:13689","l":"Sphingomonas paucimobilis","na":2,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"]],"b":[["PROSITE%3APS00082","Extradiol ring-cleavage dioxygenases signature"]]},{"id":"NCBITaxon:138074","l":"Serratia symbiotica","na":2,"nb":1,"a":[["intestine-bto-0000648.html","intestine"],["pseudostem-bto-0005992.html","pseudostem"]],"b":[["TED%3AAF-A0A068YYP3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A068YYP3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1385511","l":"Pontibacillus marinus BH030004 = DSM 16465","na":2,"nb":1,"a":[["pond-envo-00000033.html","pond"],["saline-evaporation-pond-envo-00000055.html","saline evaporation pond"]],"b":[["TED%3AAF-A0A0A5GIK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A5GIK2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1408281","l":"Endomicrobium proavitum","na":2,"nb":1,"a":[["flagellate-bto-0000464.html","flagellate"],["larva-bto-0000707.html","larva"]],"b":[["TED%3AAF-A0A0G3WK72-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G3WK72-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1427370","l":"Chlamydia pecorum DBDeUG","na":2,"nb":1,"a":[["conjunctiva-bto-0003415.html","conjunctiva"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["TED%3AAF-V8TRT3-F1-model_v4_TED01","TED highly-symmetric fold AF-V8TRT3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1465","l":"Brevibacillus laterosporus","na":2,"nb":1,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["TED%3AAF-A0A0F7BZ24-F1-model_v4_TED01","TED novel fold AF-A0A0F7BZ24-F1-model_v4_TED01"]]},{"id":"NCBITaxon:146919","l":"Salinibacter ruber","na":2,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["TED%3AAF-A0A840D6P8-F1-model_v4_TED02","TED novel fold AF-A0A840D6P8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["PROSITE%3APS01120","Urease nickel ligands signature"],["PROSITE%3APS00145","Urease active site"]]},{"id":"NCBITaxon:1490","l":"Paraclostridium bifermentans","na":2,"nb":1,"a":[["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"],["harbour-envo-00000463.html","harbour"]],"b":[["TED%3AAF-A0A5P3XDT9-F1-model_v4_TED01","TED novel fold AF-A0A5P3XDT9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1494","l":"Clostridium cochlearium","na":2,"nb":1,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"]],"b":[["TED%3AAF-A0A7Y3V7F0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y3V7F0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1509","l":"Clostridium sporogenes","na":2,"nb":1,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["Pfam%3APF06050","2-hydroxyglutaryl-CoA dehydratase, D-component"]]},{"id":"NCBITaxon:1553448","l":"","na":1,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["TED%3AAF-A0A444M931-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A444M931-F1-model_v4_TED02"],["TED%3AAF-A0A444ME17-F1-model_v4_TED01","TED novel fold AF-A0A444ME17-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1578720","l":"Helicobacter ailurogastricus","na":2,"nb":1,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["mycosis-habitatmech-bacdive-6d5784a4c5.html","Mycosis"]],"b":[["TED%3AAF-A0A0K2X3G5-F1-model_v4_TED01","TED novel fold AF-A0A0K2X3G5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:158500","l":"Novosphingobium resinovorum","na":1,"nb":2,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A031JQ90-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A031JQ90-F1-model_v4_TED01"],["TED%3AAF-A0A031JQV5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A031JQV5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:158836","l":"Enterobacter hormaechei","na":1,"nb":2,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["TED%3AAF-A0A431SE22-F1-model_v4_TED01","TED novel fold AF-A0A431SE22-F1-model_v4_TED01"],["TED%3AAF-A0A8B5ZRS3-F1-model_v4_TED01","TED novel fold AF-A0A8B5ZRS3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1612308","l":"Methylocapsa palsarum","na":1,"nb":2,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["TED%3AAF-A0A1I4BSR3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I4BSR3-F1-model_v4_TED02"],["TED%3AAF-A0A1I3X4Y4-F1-model_v4_TED01","TED novel fold AF-A0A1I3X4Y4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:164756","l":"Mycobacterium sp. MCS","na":2,"nb":1,"a":[["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["TED%3AAF-A0A5Q5BFH8-F1-model_v4_TED01","TED novel fold AF-A0A5Q5BFH8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:167968","l":"uncultured Desulfovibrio sp.","na":1,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["TED%3AAF-A0A212J776-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A212J776-F1-model_v4_TED02"],["TED%3AAF-A0A212L6P7-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A212L6P7-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":2,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["TED%3AAF-A0A415C3I8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A415C3I8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:168471","l":"Laribacter hongkongensis","na":2,"nb":1,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"]],"b":[["TED%3AAF-A0A248LK09-F1-model_v4_TED01","TED novel fold AF-A0A248LK09-F1-model_v4_TED01"]]},{"id":"NCBITaxon:169679","l":"Clostridium saccharobutylicum","na":2,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"]],"b":[["Pfam%3APF13290","Chitobiase/beta-hexosaminidase C-terminal domain"]]},{"id":"NCBITaxon:1797191","l":"","na":1,"nb":2,"a":[["loam-envo-00002258.html","loam"]],"b":[["TED%3AAF-A0A1F2TD39-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F2TD39-F1-model_v4_TED01"],["TED%3AAF-A0A1F2TJD6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F2TJD6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1798213","l":"Pseudovibrio sp. Tun.PSC04-5.I4","na":2,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["peninsula-envo-00000305.html","peninsula"]],"b":[["TED%3AAF-A0A1H1I1X9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H1I1X9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1873897","l":"Cupriavidus sp.","na":2,"nb":1,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["TED%3AAF-A0A352SA47-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A352SA47-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1895664","l":"Halanaerobium sp.","na":1,"nb":2,"a":[["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["TED%3AAF-A0A315QT49-F1-model_v4_TED03","TED novel fold AF-A0A315QT49-F1-model_v4_TED03"],["TED%3AAF-A0A315R434-F1-model_v4_TED03","TED novel fold AF-A0A315R434-F1-model_v4_TED03"]]},{"id":"NCBITaxon:189918","l":"Mycobacterium sp. KMS","na":2,"nb":1,"a":[["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"],["mountain-pass-envo-00000084.html","mountain pass"]],"b":[["Pfam%3APF06339","Ectoine synthase"]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":2,"nb":1,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Pfam%3APF26312","Domain of unknown function (DUF8083)"]]},{"id":"NCBITaxon:193","l":"Azospirillum lipoferum","na":2,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"]],"b":[["TED%3AAF-A0A1X7MZF1-F1-model_v4_TED02","TED novel fold AF-A0A1X7MZF1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1932","l":"Streptomyces tendae","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["Pfam%3APF01356","Alpha amylase inhibitor"]]},{"id":"NCBITaxon:1938","l":"Streptomyces viridochromogenes","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["Pfam%3APF11599","RRNA methyltransferase AviRa"]]},{"id":"NCBITaxon:2024855","l":"Rhodopirellula sp.","na":1,"nb":2,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A2E0S8K6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0S8K6-F1-model_v4_TED01"],["TED%3AAF-A0A358MZ88-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A358MZ88-F1-model_v4_TED03"]]},{"id":"NCBITaxon:2026725","l":"Chromatiales bacterium","na":1,"nb":2,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A520X6H8-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A520X6H8-F1-model_v4_TED05"],["TED%3AAF-A0A7C2AIC9-F1-model_v4_TED02","TED novel fold AF-A0A7C2AIC9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:208962","l":"Escherichia albertii","na":1,"nb":2,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["Pfam%3APF18134","Adenylyl/Guanylyl and SMODS C-terminal sensor domain"],["Pfam%3APF18153","Cap15, cyclic dinucleotide receptor domain"]]},{"id":"NCBITaxon:2100533","l":"Sphingobacterium haloxyli","na":1,"nb":2,"a":[["endosphere-habitatmech-bacdive-3e4680f074.html","Endosphere"]],"b":[["TED%3AAF-A0A2S9J8F0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S9J8F0-F1-model_v4_TED01"],["TED%3AAF-A0A2S9J915-F1-model_v4_TED02","TED novel fold AF-A0A2S9J915-F1-model_v4_TED02"]]},{"id":"NCBITaxon:213224","l":"Geothermobacter ehrlichii","na":2,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["seamount-envo-00000264.html","seamount"]],"b":[["TED%3AAF-A0A5D3WPY1-F1-model_v4_TED02","TED novel fold AF-A0A5D3WPY1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2162","l":"Methanobacterium formicicum","na":1,"nb":2,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Pfam%3APF04432","Coenzyme F420 hydrogenase/dehydrogenase, beta subunit C terminus"],["Pfam%3APF04422","Coenzyme F420 hydrogenase/dehydrogenase, beta subunit N-term"]]},{"id":"NCBITaxon:2183985","l":"Halomonas sp. A11-A","na":2,"nb":1,"a":[["ocean-trench-envo-00000275.html","ocean trench"],["trough-envo-00000499.html","trough"]],"b":[["TED%3AAF-A0A317P655-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A317P655-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2208","l":"Methanosarcina barkeri","na":2,"nb":1,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["sludge-envo-00002044.html","sludge"]],"b":[["Pfam%3APF09505","Dimethylamine methyltransferase (Dimeth_PyL)"]]},{"id":"NCBITaxon:2223","l":"Methanothrix soehngenii","na":1,"nb":2,"a":[["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"],["TED%3AAF-A0A7K4AJW5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K4AJW5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:226506","l":"Algoriphagus ornithinivorans","na":2,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"],["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["TED%3AAF-A0A1I5CGG6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5CGG6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2292705","l":"Paenibacillus paeoniae","na":2,"nb":1,"a":[["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["TED%3AAF-A0A371PIW4-F1-model_v4_TED01","TED novel fold AF-A0A371PIW4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:238540","l":"Algoriphagus antarcticus","na":2,"nb":1,"a":[["hill-envo-00000083.html","hill"],["seamount-envo-00000264.html","seamount"]],"b":[["TED%3AAF-A0A3E0D6W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3E0D6W3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:244366","l":"Klebsiella variicola","na":2,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["TED%3AAF-A0A2N4Z4E2-F1-model_v4_TED01","TED novel fold AF-A0A2N4Z4E2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:245188","l":"Yoonia vestfoldensis","na":2,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["sandstone-envo-00002055.html","sandstone"]],"b":[["TED%3AAF-A0A1Y0EB74-F1-model_v4_TED01","TED novel fold AF-A0A1Y0EB74-F1-model_v4_TED01"]]},{"id":"NCBITaxon:246200","l":"Ruegeria pomeroyi DSS-3","na":1,"nb":2,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["Pfam%3APF16867","Dimethlysulfonioproprionate lyase"],["Pfam%3APF09347","Domain of unknown function (DUF1989)"]]},{"id":"NCBITaxon:2485163","l":"","na":1,"nb":2,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["TED%3AAF-A0A4R7A0H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R7A0H4-F1-model_v4_TED01"],["TED%3AAF-A0A4R7AGM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R7AGM3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2547395","l":"Paenibacillus piri","na":1,"nb":2,"a":[["transportation-ways-roads-habitatmech-bacdive-1b4071cb1d.html","Transportation-ways-Roads"]],"b":[["TED%3AAF-A0A4V2ZS36-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A4V2ZS36-F1-model_v4_TED03"],["TED%3AAF-A0A4R5KXP2-F1-model_v4_TED02","TED novel fold AF-A0A4R5KXP2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:262543","l":"","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["Pfam%3APF06335","Domain of unknown function (DUF1054)"],["Pfam%3APF11023","Zinc-ribbon containing domain"]]},{"id":"NCBITaxon:269482","l":"Burkholderia vietnamiensis G4","na":2,"nb":1,"a":[["air-envo-00002005.html","air"],["human-construction-envo-00000070.html","human construction"]],"b":[["TED%3AAF-A4JWD8-F1-model_v4_TED01","TED novel fold AF-A4JWD8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:279714","l":"Pseudogulbenkiania ferrooxidans 2002","na":2,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["pond-water-envo-00002228.html","pond water"]],"b":[["TED%3AAF-B9Z3M4-F1-model_v4_TED02","TED novel fold AF-B9Z3M4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:28087","l":"Legionella sainthelensi","na":1,"nb":2,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["TED%3AAF-A0A3S4I5M7-F1-model_v4_TED01","TED novel fold AF-A0A3S4I5M7-F1-model_v4_TED01"],["TED%3AAF-A0A447STS7-F1-model_v4_TED04","TED novel fold AF-A0A447STS7-F1-model_v4_TED04"]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["Pfam%3APF21252","Glycosyl hydrolase 109, C-terminal domain"],["TED%3AAF-A0A3P1YJQ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3P1YJQ6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28128","l":"Prevotella corporis","na":2,"nb":1,"a":[["environmental-feature-envo-00002297.html","environmental feature"],["harbour-envo-00000463.html","harbour"]],"b":[["TED%3AAF-A0A133Q582-F1-model_v4_TED02","TED novel fold AF-A0A133Q582-F1-model_v4_TED02"]]},{"id":"NCBITaxon:28183","l":"Leptospira santarosai","na":2,"nb":1,"a":[["kidney-bto-0000671.html","kidney"],["liver-bto-0000759.html","liver"]],"b":[["TED%3AAF-A0A2P1QYQ7-F1-model_v4_TED01","TED novel fold AF-A0A2P1QYQ7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:282199","l":"Nereida ignava","na":2,"nb":1,"a":[["sandstone-envo-00002055.html","sandstone"],["bile-bto-0000121.html","bile"]],"b":[["TED%3AAF-A0A0U1NPS2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0U1NPS2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:29017","l":"Cyriopagopus schmidti","na":2,"nb":1,"a":[["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["PROSITE%3APS60021","Huwentoxin-1 family signature"]]},{"id":"NCBITaxon:290339","l":"","na":1,"nb":2,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Pfam%3APF06610","L-alanine exporter"],["Pfam%3APF10796","Sigma-S stabilisation anti-adaptor protein"]]},{"id":"NCBITaxon:292415","l":"Thiobacillus denitrificans ATCC 25259","na":2,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["river-bed-envo-00000384.html","river bed"]],"b":[["Pfam%3APF06804","Outer membrane protein assembly factor BamC-like C-terminal domain"]]},{"id":"NCBITaxon:292459","l":"","na":1,"nb":2,"a":[["compost-envo-00002170.html","compost"]],"b":[["PROSITE%3APS00853","Beta-eliminating lyases pyridoxal-phosphate attachment site"],["TED%3AAF-Q67TA8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q67TA8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:29320","l":"Paenarthrobacter nicotinovorans","na":1,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["Pfam%3APF22607","FAD binding domain-like"],["Pfam%3APF06500","Esterase FrsA-like"]]},{"id":"NCBITaxon:29488","l":"Photorhabdus luminescens","na":1,"nb":2,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["Pfam%3APF02273","Acyl transferase"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"]]},{"id":"NCBITaxon:29491","l":"Aeromonas salmonicida subsp. salmonicida","na":1,"nb":2,"a":[["liver-bto-0000759.html","liver"]],"b":[["TED%3AAF-A0A189PGR3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A189PGR3-F1-model_v4_TED01"],["TED%3AAF-A0A0F6QDS7-F1-model_v4_TED02","TED novel fold AF-A0A0F6QDS7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:29522","l":"Brachyspira aalborgi","na":1,"nb":2,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["TED%3AAF-A0A5C8E3N2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C8E3N2-F1-model_v4_TED01"],["TED%3AAF-A0A5C8E9C6-F1-model_v4_TED01","TED novel fold AF-A0A5C8E9C6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:29559","l":"Metamycoplasma hyosynoviae","na":1,"nb":2,"a":[["joint-bto-0001686.html","joint"]],"b":[["TED%3AAF-A0A063YD07-F1-model_v4_TED02","TED novel fold AF-A0A063YD07-F1-model_v4_TED02"],["TED%3AAF-A0A4R7TZF5-F1-model_v4_TED02","TED novel fold AF-A0A4R7TZF5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:298386","l":"Photobacterium profundum SS9","na":2,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["underground-water-envo-00005792.html","underground water"]],"b":[["Pfam%3APF12558","ATP-binding cassette cobalt transporter"]]},{"id":"NCBITaxon:304371","l":"Methanocella paludicola SANAE","na":2,"nb":1,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["TED%3AAF-D1Z063-F1-model_v4_TED03","TED highly-symmetric fold AF-D1Z063-F1-model_v4_TED03"]]},{"id":"NCBITaxon:309807","l":"Salinibacter ruber DSM 13855","na":2,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["underground-water-envo-00005792.html","underground water"]],"b":[["Pfam%3APF06491","Disulphide isomerase"]]},{"id":"NCBITaxon:313594","l":"Polaribacter irgensii 23-P","na":2,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["TED%3AAF-A4BXQ4-F1-model_v4_TED01","TED novel fold AF-A4BXQ4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:314237","l":"","na":2,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"],["root-nodule-envo-01000164.html","root nodule"]],"b":[["TED%3AAF-A0A318T1W1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A318T1W1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:316058","l":"Rhodopseudomonas palustris HaA2","na":2,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["TED%3AAF-Q2IYC7-F1-model_v4_TED03","TED novel fold AF-Q2IYC7-F1-model_v4_TED03"]]},{"id":"NCBITaxon:316274","l":"Herpetosiphon aurantiacus DSM 785","na":2,"nb":1,"a":[["filament-bto-0000463.html","filament"],["joint-bto-0001686.html","joint"]],"b":[["TED%3AAF-A9AZN6-F1-model_v4_TED02","TED highly-symmetric fold AF-A9AZN6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:320771","l":"","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["TED%3AAF-B9XAB4-F1-model_v4_TED02","TED highly-symmetric fold AF-B9XAB4-F1-model_v4_TED02"],["TED%3AAF-B9XFV1-F1-model_v4_TED01","TED highly-symmetric fold AF-B9XFV1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:3218","l":"Physcomitrium patens","na":2,"nb":1,"a":[["area-of-tundra-envo-00000112.html","area of tundra"],["slope-envo-00002000.html","slope"]],"b":[["TED%3AAF-A0A2K1IJQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2K1IJQ3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:322710","l":"Azotobacter vinelandii DJ","na":1,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["proteintraitsmech%3AELIFE109154_Orn_monoox","Metallophore-associated ornithine N5-monooxygenase family"],["proteintraitsmech%3AELIFE109154_PvdP","Pyoverdine chromophore maturation tyrosinase family"]]},{"id":"NCBITaxon:323426","l":"Jezberella montanilacus","na":1,"nb":2,"a":[["pond-envo-00000033.html","pond"]],"b":[["TED%3AAF-A0A2T0XBZ0-F1-model_v4_TED02","TED novel fold AF-A0A2T0XBZ0-F1-model_v4_TED02"],["TED%3AAF-A0A2T0XCA1-F1-model_v4_TED02","TED novel fold AF-A0A2T0XCA1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:33035","l":"Blautia producta","na":1,"nb":2,"a":[["juvenile-bto-0002168.html","juvenile"]],"b":[["TED%3AAF-A0A2S4GEH6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S4GEH6-F1-model_v4_TED01"],["TED%3AAF-A0A7G5MNY0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G5MNY0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:331272","l":"Burkholderia cenocepacia HI2424","na":2,"nb":1,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["Pfam%3APF02673","Bacitracin resistance protein BacA"]]},{"id":"NCBITaxon:332175","l":"Desulfosalsimonas propionicica","na":2,"nb":1,"a":[["inlet-envo-00000475.html","inlet"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["TED%3AAF-A0A7W0HJC5-F1-model_v4_TED03","TED novel fold AF-A0A7W0HJC5-F1-model_v4_TED03"]]},{"id":"NCBITaxon:33889","l":"Brevibacterium casei","na":2,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"]],"b":[["TED%3AAF-A0A7T2TGM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T2TGM6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:33922","l":"Mycoplasmopsis agassizii","na":1,"nb":2,"a":[["valley-envo-00000100.html","valley"]],"b":[["TED%3AAF-A0A1W1X4W5-F1-model_v4_TED01","TED novel fold AF-A0A1W1X4W5-F1-model_v4_TED01"],["TED%3AAF-A0A1W1XA50-F1-model_v4_TED02","TED novel fold AF-A0A1W1XA50-F1-model_v4_TED02"]]},{"id":"NCBITaxon:33950","l":"Thermoanaerobacterium thermosulfurigenes","na":1,"nb":2,"a":[["park-envo-00000562.html","park"]],"b":[["Pfam%3APF18565","Glycoside hydrolase family 2 C-terminal domain 5"],["Pfam%3APF00395","S-layer homology domain"]]},{"id":"NCBITaxon:342616","l":"","na":1,"nb":2,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["Pfam%3APF26337","Glucosyltransferase 3-like, C-terminal domain"],["Pfam%3APF26334","Glucosyltransferase 3-like, N-terminal domain"]]},{"id":"NCBITaxon:345341","l":"Kutzneria sp. 744","na":2,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"],["clay-envo-00002982.html","clay"]],"b":[["TED%3AAF-W7SU68-F1-model_v4_TED01","TED novel fold AF-W7SU68-F1-model_v4_TED01"]]},{"id":"NCBITaxon:349521","l":"Hahella chejuensis KCTC 2396","na":1,"nb":2,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["TED%3AAF-Q2SFS2-F1-model_v4_TED01","TED novel fold AF-Q2SFS2-F1-model_v4_TED01"],["TED%3AAF-Q2SI43-F1-model_v4_TED03","TED novel fold AF-Q2SI43-F1-model_v4_TED03"]]},{"id":"NCBITaxon:350688","l":"Alkaliphilus oremlandii OhILAs","na":2,"nb":1,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["Pfam%3APF18955","Domain of unknown function (DUF5698)"]]},{"id":"NCBITaxon:35703","l":"Citrobacter amalonaticus","na":2,"nb":1,"a":[["dental-plaque-bto-0000338.html","dental plaque"],["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["TED%3AAF-A0A376C300-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A376C300-F1-model_v4_TED02"]]},{"id":"NCBITaxon:363265","l":"Leyella stercorea","na":1,"nb":2,"a":[["pig-manure-envo-00003860.html","pig manure"]],"b":[["TED%3AAF-A0A415GCN6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A415GCN6-F1-model_v4_TED04"],["TED%3AAF-A0A3R6FHW9-F1-model_v4_TED01","TED novel fold AF-A0A3R6FHW9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:368407","l":"","na":1,"nb":2,"a":[["joint-bto-0001686.html","joint"]],"b":[["Pfam%3APF27030","AbpE bacteria"],["Pfam%3APF04019","Protein of unknown function (DUF359)"]]},{"id":"NCBITaxon:37329","l":"Nocardia farcinica","na":2,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["TED%3AAF-A0A449G5H5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A449G5H5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:375286","l":"","na":1,"nb":2,"a":[["large-river-biome-envo-00000887.html","large river biome"]],"b":[["Pfam%3APF06299","Protein of unknown function (DUF1045)"],["Pfam%3APF04361","Protein of unknown function (DUF494)"]]},{"id":"NCBITaxon:382514","l":"Telmatospirillum siberiense","na":2,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["peatland-envo-00000044.html","peatland"]],"b":[["TED%3AAF-A0A2N3PPB2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3PPB2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:38313","l":"Shewanella algae","na":1,"nb":2,"a":[["foot-bto-0000476.html","foot"]],"b":[["TED%3AAF-A0A1S2T8W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S2T8W3-F1-model_v4_TED01"],["TED%3AAF-A0A8A5EFG1-F1-model_v4_TED02","TED novel fold AF-A0A8A5EFG1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:389348","l":"Candidatus Protochlamydia naegleriophila","na":2,"nb":1,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["TED%3AAF-A0A0U5J6J4-F1-model_v4_TED01","TED novel fold AF-A0A0U5J6J4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:391037","l":"Salinispora arenicola CNS-205","na":2,"nb":1,"a":[["beach-sand-envo-00002138.html","beach sand"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["Pfam%3APF12072","RNase Y N-terminal region"]]},{"id":"NCBITaxon:39152","l":"Methanococcus maripaludis","na":1,"nb":2,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["Pfam%3APF02571","Precorrin-6x reductase CbiJ/CobK"],["TED%3AAF-A0A7J9PSA9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J9PSA9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:39441","l":"Methanobrevibacter arboriphilus","na":2,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["sludge-envo-00002044.html","sludge"]],"b":[["TED%3AAF-A0A843AID3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843AID3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:395494","l":"","na":1,"nb":2,"a":[["river-bed-envo-00000384.html","river bed"]],"b":[["TED%3AAF-D9SCL7-F1-model_v4_TED01","TED highly-symmetric fold AF-D9SCL7-F1-model_v4_TED01"],["TED%3AAF-D9SFM7-F1-model_v4_TED01","TED highly-symmetric fold AF-D9SFM7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:395961","l":"Cyanothece sp. PCC 7425","na":2,"nb":1,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["TED%3AAF-B8HKH7-F1-model_v4_TED01","TED highly-symmetric fold AF-B8HKH7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:39691","l":"Mycolicibacterium moriokaense","na":1,"nb":2,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["TED%3AAF-A0A370D086-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A370D086-F1-model_v4_TED01"],["TED%3AAF-A0A370D4B9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A370D4B9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:404881","l":"Albidovulum denitrificans","na":2,"nb":1,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["TED%3AAF-A0A2S8SDZ8-F1-model_v4_TED03","TED novel fold AF-A0A2S8SDZ8-F1-model_v4_TED03"]]},{"id":"NCBITaxon:404941","l":"Mycobacteroides salmoniphilum","na":1,"nb":2,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["TED%3AAF-A0A4R8SEB1-F1-model_v4_TED02","TED novel fold AF-A0A4R8SEB1-F1-model_v4_TED02"],["TED%3AAF-A0A4R8SGK3-F1-model_v4_TED01","TED novel fold AF-A0A4R8SGK3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:411461","l":"Dorea formicigenerans ATCC 27755","na":2,"nb":1,"a":[["emulsion-envo-00010506.html","emulsion"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["TED%3AAF-B0G854-F1-model_v4_TED01","TED novel fold AF-B0G854-F1-model_v4_TED01"]]},{"id":"NCBITaxon:411463","l":"Eubacterium ventriosum ATCC 27560","na":2,"nb":1,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["TED%3AAF-A5Z937-F1-model_v4_TED01","TED highly-symmetric fold AF-A5Z937-F1-model_v4_TED01"]]},{"id":"NCBITaxon:41211","l":"Desulfotomaculum sp.","na":2,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["TED%3AAF-A0A356UJQ3-F1-model_v4_TED01","TED novel fold AF-A0A356UJQ3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:41880","l":"Pycnococcus provasolii","na":1,"nb":2,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["TED%3AAF-A0A830HBX6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A830HBX6-F1-model_v4_TED02"],["TED%3AAF-A0A830HI63-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A830HI63-F1-model_v4_TED01"]]},{"id":"NCBITaxon:420247","l":"","na":1,"nb":2,"a":[["gut-mucosa-bto-0000546.html","gut mucosa"]],"b":[["Pfam%3APF17884","Domain of unknown function (DUF5591)"],["Pfam%3APF18195","GatD N-terminal domain"]]},{"id":"NCBITaxon:420952","l":"Paraburkholderia bryophila","na":2,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["TED%3AAF-A0A7Y9WQV4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y9WQV4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:42256","l":"Rubrobacter radiotolerans","na":2,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["desert-sand-envo-00005800.html","desert sand"]],"b":[["TED%3AAF-A0A023X7L7-F1-model_v4_TED02","TED novel fold AF-A0A023X7L7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:42322","l":"Eubacterium ruminantium","na":1,"nb":2,"a":[["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["TED%3AAF-A0A1H6A208-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H6A208-F1-model_v4_TED01"],["TED%3AAF-A0A1T4Q7U0-F1-model_v4_TED01","TED novel fold AF-A0A1T4Q7U0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:425104","l":"","na":1,"nb":2,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["Pfam%3APF13286","Phosphohydrolase-associated domain"],["TED%3AAF-A8FZD8-F1-model_v4_TED01","TED novel fold AF-A8FZD8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:43671","l":"Actinotalea fermentans","na":2,"nb":1,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["TED%3AAF-A0A511YTN2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A511YTN2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:441772","l":"","na":1,"nb":2,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["Pfam%3APF02001","Protein of unknown function DUF134"],["Pfam%3APF06874","Firmicute fructose-1,6-bisphosphatase"]]},{"id":"NCBITaxon:443152","l":"Marinobacter algicola DG893","na":2,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["TED%3AAF-A6EY08-F1-model_v4_TED01","TED highly-symmetric fold AF-A6EY08-F1-model_v4_TED01"]]},{"id":"NCBITaxon:444157","l":"Pyrobaculum neutrophilum V24Sta","na":2,"nb":1,"a":[["silty-sediment-envo-01000119.html","silty sediment"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF01950","Fructose-1,6-bisphosphatase"]]},{"id":"NCBITaxon:44737","l":"Capnocytophaga sp.","na":1,"nb":2,"a":[["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["TED%3AAF-A0A496MK20-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A496MK20-F1-model_v4_TED01"],["TED%3AAF-A0A496MK73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A496MK73-F1-model_v4_TED01"]]},{"id":"NCBITaxon:452637","l":"","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["TED%3AAF-B1ZX41-F1-model_v4_TED02","TED novel fold AF-B1ZX41-F1-model_v4_TED02"],["TED%3AAF-B1ZYN8-F1-model_v4_TED02","TED novel fold AF-B1ZYN8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:455632","l":"Streptomyces griseus subsp. griseus NBRC 13350","na":1,"nb":2,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["PROSITE%3APS01311","Prolipoprotein diacylglyceryl transferase signature"]]},{"id":"NCBITaxon:472","l":"Acinetobacter sp.","na":1,"nb":2,"a":[["carcass-envo-00002033.html","carcass"]],"b":[["TED%3AAF-A0A433CUV6-F1-model_v4_TED01","TED novel fold AF-A0A433CUV6-F1-model_v4_TED01"],["TED%3AAF-A0A7G3BTL8-F1-model_v4_TED01","TED novel fold AF-A0A7G3BTL8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:472759","l":"Nitrosococcus halophilus Nc 4","na":2,"nb":1,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["TED%3AAF-D5BWL1-F1-model_v4_TED01","TED highly-symmetric fold AF-D5BWL1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:474950","l":"Granulicella pectinivorans","na":2,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A1I6LYB5-F1-model_v4_TED03","TED novel fold AF-A0A1I6LYB5-F1-model_v4_TED03"]]},{"id":"NCBITaxon:476","l":"Moraxella bovis","na":1,"nb":2,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"]],"b":[["Pfam%3APF04556","DpnII restriction endonuclease"],["TED%3AAF-A0A1S9ZVN5-F1-model_v4_TED01","TED novel fold AF-A0A1S9ZVN5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":2,"nb":1,"a":[["city-envo-00000856.html","city"],["cropland-biome-envo-01000245.html","cropland biome"]],"b":[["TED%3AAF-A0A4R6CRR7-F1-model_v4_TED01","TED novel fold AF-A0A4R6CRR7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:479435","l":"Kribbella flavida DSM 17836","na":2,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["Pfam%3APF21568","1,3-alpha-isomaltosidase-like, N-terminal domain"]]},{"id":"NCBITaxon:482957","l":"","na":2,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["TED%3AAF-A0A6P2XDC0-F1-model_v4_TED01","TED novel fold AF-A0A6P2XDC0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:484019","l":"","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["TED%3AAF-B7IGW9-F1-model_v4_TED05","TED highly-symmetric fold AF-B7IGW9-F1-model_v4_TED05"],["TED%3AAF-B7IEF5-F1-model_v4_TED01","TED novel fold AF-B7IEF5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:487","l":"Neisseria meningitidis","na":2,"nb":1,"a":[["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["Pfam%3APF22582","Amylosucrase, C-terminal domain"]]},{"id":"NCBITaxon:487796","l":"Flavobacteria bacterium MS024-2A","na":2,"nb":1,"a":[["marine-neritic-zone-envo-00000206.html","marine neritic zone"],["coastal-plain-envo-00000090.html","coastal plain"]],"b":[["TED%3AAF-C0BK38-F1-model_v4_TED02","TED novel fold AF-C0BK38-F1-model_v4_TED02"]]},{"id":"NCBITaxon:49252","l":"Eucampia antarctica","na":1,"nb":2,"a":[["saline-water-envo-00002010.html","saline water"]],"b":[["TED%3AAF-A0A7S2RNI9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S2RNI9-F1-model_v4_TED02"],["TED%3AAF-A0A7S2SD61-F1-model_v4_TED01","TED novel fold AF-A0A7S2SD61-F1-model_v4_TED01"]]},{"id":"NCBITaxon:498214","l":"","na":1,"nb":2,"a":[["plateau-envo-00000182.html","plateau"]],"b":[["Pfam%3APF20921","Domain of unknown function DUF1846, C-terminal"],["Pfam%3APF08903","Domain of unknown function DUF1846, N-terminal"]]},{"id":"NCBITaxon:504472","l":"Spirosoma linguale DSM 74","na":2,"nb":1,"a":[["drinking-water-envo-00003064.html","drinking water"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["TED%3AAF-D2QHB9-F1-model_v4_TED01","TED highly-symmetric fold AF-D2QHB9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:507522","l":"","na":1,"nb":2,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Pfam%3APF18649","EcpB C-terminal domain"],["Pfam%3APF04205","FMN-binding domain"]]},{"id":"NCBITaxon:508451","l":"Lactobacillus taiwanensis","na":1,"nb":2,"a":[["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["TED%3AAF-A0A256LG95-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A256LG95-F1-model_v4_TED04"],["TED%3AAF-A0A8A8VQ16-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8A8VQ16-F1-model_v4_TED01"]]},{"id":"NCBITaxon:515393","l":"Pseudomonas yamanorum","na":1,"nb":2,"a":[["subarctic-habitatmech-bacdive-09ded89de7.html","Subarctic"]],"b":[["TED%3AAF-A0A143GFF9-F1-model_v4_TED03","TED novel fold AF-A0A143GFF9-F1-model_v4_TED03"],["TED%3AAF-A0A1H2I658-F1-model_v4_TED02","TED novel fold AF-A0A1H2I658-F1-model_v4_TED02"]]},{"id":"NCBITaxon:517417","l":"","na":1,"nb":2,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["Pfam%3APF28537","Probable trigger factor, FKBP-like domain"],["Pfam%3APF10643","Photosystem P840 reaction-centre cytochrome c-551"]]},{"id":"NCBITaxon:519","l":"Bordetella parapertussis","na":2,"nb":1,"a":[["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Pfam%3APF13542","Helix-turn-helix domain of transposase family ISL3"]]},{"id":"NCBITaxon:521674","l":"Planctopirus limnophila DSM 3776","na":2,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-D5SQH0-F1-model_v4_TED01","TED novel fold AF-D5SQH0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:52560","l":"Desulfomicrobium apsheronum","na":2,"nb":1,"a":[["black-smoker-envo-00000218.html","black smoker"],["volcanic-rock-envo-00002015.html","volcanic rock"]],"b":[["TED%3AAF-A0A1I3Z6Q6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1I3Z6Q6-F1-model_v4_TED04"]]},{"id":"NCBITaxon:53463","l":"Paracoccus solventivorans","na":2,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["plain-envo-00000086.html","plain"]],"b":[["TED%3AAF-A0A1M7DMW2-F1-model_v4_TED03","TED novel fold AF-A0A1M7DMW2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:536044","l":"Methanolobus zinderi","na":1,"nb":2,"a":[["coalbed-water-habitatmech-bacdive-499e641dc2.html","Coalbed-water"]],"b":[["TED%3AAF-A0A7D5IAI6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7D5IAI6-F1-model_v4_TED01"],["TED%3AAF-A0A7D5E6R2-F1-model_v4_TED02","TED novel fold AF-A0A7D5E6R2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:555970","l":"","na":1,"nb":2,"a":[["intestinal-epithelium-bto-0000781.html","intestinal epithelium"]],"b":[["PROSITE%3APS60002","Phosphoketolase signature 1"],["PROSITE%3APS60003","Phosphoketolase signature 2"]]},{"id":"NCBITaxon:579137","l":"Methanocaldococcus vulcanius M7","na":2,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["TED%3AAF-C9RDN7-F1-model_v4_TED02","TED highly-symmetric fold AF-C9RDN7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:5823","l":"Plasmodium berghei (strain Anka)","na":1,"nb":2,"a":[["ookinete-bto-0004857.html","ookinete"]],"b":[["Pfam%3APF03092","BT1 family"],["Pfam%3APF12628","Falstatin, cysteine peptidase inhibitor"]]},{"id":"NCBITaxon:5851","l":"Plasmodium knowlesi strain H","na":2,"nb":1,"a":[["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["hypnozoite-bto-0003594.html","hypnozoite"]],"b":[["TED%3AAF-A0A6H5FUY2-F1-model_v4_TED01","TED novel fold AF-A0A6H5FUY2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:588581","l":"Ruminiclostridium papyrosolvens DSM 2782","na":2,"nb":1,"a":[["estuary-envo-00000045.html","estuary"],["sporangium-bto-0001287.html","sporangium"]],"b":[["TED%3AAF-F1TA67-F1-model_v4_TED05","TED highly-symmetric fold AF-F1TA67-F1-model_v4_TED05"]]},{"id":"NCBITaxon:59406","l":"Aromatoleum evansii","na":1,"nb":2,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF14535","AMP-binding enzyme C-terminal domain"],["Pfam%3APF12837","4Fe-4S binding domain"]]},{"id":"NCBITaxon:595453","l":"Rhodopirellula sp. SM50","na":2,"nb":1,"a":[["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"]],"b":[["TED%3AAF-A0A2A2WGR6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A2WGR6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:60480","l":"","na":1,"nb":2,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["Pfam%3APF06276","Ferric iron reductase FhuF-like transporter"],["Pfam%3APF04183","IucA / IucC family"]]},{"id":"NCBITaxon:608538","l":"Hydrogenobacter thermophilus TK-6","na":2,"nb":1,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"],["peninsula-envo-00000305.html","peninsula"]],"b":[["Pfam%3APF17805","AsnC-like ligand binding domain"]]},{"id":"NCBITaxon:6087","l":"Hydra vulgaris","na":1,"nb":2,"a":[["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["Pfam%3APF06369","Sea anemone cytotoxic protein"],["TED%3AAF-B8Y8I7-F1-model_v4_TED01","TED highly-symmetric fold AF-B8Y8I7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:616997","l":"Hoyosella altamirensis","na":2,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["cave-envo-00000067.html","cave"]],"b":[["TED%3AAF-A0A839RM00-F1-model_v4_TED02","TED novel fold AF-A0A839RM00-F1-model_v4_TED02"]]},{"id":"NCBITaxon:623280","l":"Parapedobacter luteus","na":2,"nb":1,"a":[["sewage-envo-00002018.html","sewage"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["TED%3AAF-A0A1T5FI29-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1T5FI29-F1-model_v4_TED01"]]},{"id":"NCBITaxon:642492","l":"","na":1,"nb":2,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["TED%3AAF-F2JHU0-F1-model_v4_TED01","TED highly-symmetric fold AF-F2JHU0-F1-model_v4_TED01"],["TED%3AAF-F2JQ83-F1-model_v4_TED01","TED highly-symmetric fold AF-F2JQ83-F1-model_v4_TED01"]]},{"id":"NCBITaxon:644107","l":"","na":1,"nb":2,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["Pfam%3APF16867","Dimethlysulfonioproprionate lyase"],["TED%3AAF-D0CYX0-F1-model_v4_TED01","TED novel fold AF-D0CYX0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:649349","l":"Leadbetterella byssophila DSM 17132","na":2,"nb":1,"a":[["compost-envo-00002170.html","compost"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["TED%3AAF-E4RVH3-F1-model_v4_TED02","TED novel fold AF-E4RVH3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:679926","l":"Methanolacinia petrolearia DSM 11571","na":2,"nb":1,"a":[["inlet-envo-00000475.html","inlet"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["TED%3AAF-E1RJC3-F1-model_v4_TED02","TED novel fold AF-E1RJC3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:68170","l":"","na":1,"nb":2,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["Pfam%3APF12902","Ferritin-like"],["TED%3AAF-A0A0F0GZM7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0F0GZM7-F1-model_v4_TED03"]]},{"id":"NCBITaxon:688246","l":"Hallella multisaccharivorax DSM 17128","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["TED%3AAF-F8N9C0-F1-model_v4_TED03","TED novel fold AF-F8N9C0-F1-model_v4_TED03"],["TED%3AAF-F8N9F2-F1-model_v4_TED01","TED novel fold AF-F8N9F2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:68892","l":"Streptococcus infantis","na":2,"nb":1,"a":[["head-bto-0000282.html","head"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["TED%3AAF-A0A0F2E1C7-F1-model_v4_TED04","TED novel fold AF-A0A0F2E1C7-F1-model_v4_TED04"]]},{"id":"NCBITaxon:693216","l":"Cronobacter turicensis z3032","na":2,"nb":1,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["TED%3AAF-C9Y1S3-F1-model_v4_TED01","TED novel fold AF-C9Y1S3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:69969","l":"Macrococcus carouselicus","na":2,"nb":1,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["TED%3AAF-A0A4R6BCC8-F1-model_v4_TED01","TED novel fold AF-A0A4R6BCC8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:7230","l":"Drosophila mojavensis","na":1,"nb":2,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"]],"b":[["Pfam%3APF10562","Calmodulin-binding domain C0 of NMDA receptor NR1 subunit"],["Pfam%3APF13428","Tetratricopeptide repeat"]]},{"id":"NCBITaxon:7425","l":"Nasonia vitripennis","na":2,"nb":1,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["TED%3AAF-A0A7M7QB08-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7M7QB08-F1-model_v4_TED04"]]},{"id":"NCBITaxon:756067","l":"Microcoleus vaginatus FGP-2","na":2,"nb":1,"a":[["desert-area-envo-00000097.html","desert area"],["seamount-envo-00000264.html","seamount"]],"b":[["TED%3AAF-F5UCE7-F1-model_v4_TED03","TED highly-symmetric fold AF-F5UCE7-F1-model_v4_TED03"]]},{"id":"NCBITaxon:756272","l":"Rubinisphaera brasiliensis DSM 5305","na":2,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["TED%3AAF-F0SH04-F1-model_v4_TED04","TED novel fold AF-F0SH04-F1-model_v4_TED04"]]},{"id":"NCBITaxon:7654","l":"Lytechinus variegatus","na":2,"nb":1,"a":[["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["Pfam%3APF02084","Bindin"]]},{"id":"NCBITaxon:78229","l":"Paracidovorax anthurii","na":1,"nb":2,"a":[["leaf-po-0025034.html","leaf"]],"b":[["TED%3AAF-A0A328ZC73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A328ZC73-F1-model_v4_TED01"],["TED%3AAF-A0A328Z0A2-F1-model_v4_TED01","TED novel fold AF-A0A328Z0A2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:794903","l":"Opitutaceae bacterium TAV5","na":2,"nb":1,"a":[["hindgut-bto-0000510.html","hindgut"],["wood-bto-0005516.html","wood"]],"b":[["TED%3AAF-W0J1Y7-F1-model_v4_TED01","TED highly-symmetric fold AF-W0J1Y7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:82367","l":"Paracoccus pantotrophus","na":2,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["Pfam%3APF17805","AsnC-like ligand binding domain"]]},{"id":"NCBITaxon:83554","l":"Chlamydia psittaci","na":2,"nb":1,"a":[["spleen-bto-0001281.html","spleen"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["Pfam%3APF01345","CLIPPER domain"]]},{"id":"NCBITaxon:83555","l":"Chlamydia abortus","na":2,"nb":1,"a":[["elementary-body-bto-0000377.html","elementary body"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["TED%3AAF-A0A5C1D8N1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C1D8N1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:865938","l":"Weeksella virosa DSM 16922","na":2,"nb":1,"a":[["urethra-bto-0001426.html","urethra"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["TED%3AAF-F0P1F3-F1-model_v4_TED01","TED novel fold AF-F0P1F3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:912594","l":"Mycolicibacterium iranicum","na":1,"nb":2,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["TED%3AAF-A0A178LVR2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A178LVR2-F1-model_v4_TED02"],["TED%3AAF-A0A178M0U6-F1-model_v4_TED01","TED novel fold AF-A0A178M0U6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:9258","l":"Ornithorhynchus anatinus","na":1,"nb":2,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"]],"b":[["Pfam%3APF08131","Defensin-like peptide family"],["Pfam%3APF17858","Platypus intermediate defensin-like peptide"]]},{"id":"NCBITaxon:933063","l":"Dichotomicrobium thermohalophilum","na":1,"nb":2,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["TED%3AAF-A0A397Q5H3-F1-model_v4_TED01","TED novel fold AF-A0A397Q5H3-F1-model_v4_TED01"],["TED%3AAF-A0A397Q636-F1-model_v4_TED02","TED novel fold AF-A0A397Q636-F1-model_v4_TED02"]]},{"id":"NCBITaxon:99656","l":"[Clostridium] fimetarium","na":1,"nb":2,"a":[["animal-waste-material-envo-00002276.html","animal waste material"]],"b":[["TED%3AAF-A0A1I0N088-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I0N088-F1-model_v4_TED02"],["TED%3AAF-A0A1I0QS44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I0QS44-F1-model_v4_TED01"]]},{"id":"UBERON:0001003","l":"skin epidermis","na":1,"nb":2,"a":[["skin-epidermis-uberon-0001003.html","skin epidermis"]],"b":[["GO%3A0008544","epidermis development"],["GO%3A0048730","epidermis morphogenesis"]]},{"id":"UBERON:0001705","l":"nail","na":2,"nb":1,"a":[["nail-uberon-0001705.html","nail"],["nails-habitatmech-gold-1d1529ead1.html","Nails"]],"b":[["GO%3A0035878","nail development"]]},{"id":"UBERON:0002073","l":"","na":2,"nb":1,"a":[["hair-follicle-habitatmech-gold-1e3f47202c.html","Hair follicle"],["hair-follicle-habitatmech-gold-b7fcb62675.html","Hair follicle"]],"b":[["GO%3A0001942","hair follicle development"]]},{"id":"UBERON:0002097","l":"skin of body","na":1,"nb":2,"a":[["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["GO%3A0043588","skin development"],["GO%3A0043589","skin morphogenesis"]]},{"id":"NCBITaxon:1001590","l":"Leptospira interrogans str. 2006001854","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["TED%3AAF-M6GW27-F1-model_v4_TED03","TED novel fold AF-M6GW27-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1003237","l":"Nitrospirillum amazonense Y2","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["TED%3AAF-G1Y2J3-F1-model_v4_TED02","TED novel fold AF-G1Y2J3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1017277","l":"","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["TED%3AAF-A0A0V8GEY0-F1-model_v4_TED01","TED novel fold AF-A0A0V8GEY0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1032","l":"Thiothrix sp.","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["TED%3AAF-A0A432UXQ4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A432UXQ4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1032505","l":"Fusobacterium sp. OBRC1","na":1,"nb":1,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["TED%3AAF-X8HXN3-F1-model_v4_TED01","TED highly-symmetric fold AF-X8HXN3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1035309","l":"Ceratocystis fimbriata CBS 114723","na":1,"nb":1,"a":[["plant-bto-0001481.html","plant"]],"b":[["TED%3AAF-A0A2C5WW72-F1-model_v4_TED01","TED novel fold AF-A0A2C5WW72-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1037377","l":"Chryseobacterium viscerum","na":1,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["TED%3AAF-A0A316W9L1-F1-model_v4_TED02","TED novel fold AF-A0A316W9L1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1038014","l":"Aquimarina amphilecti","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["TED%3AAF-A0A1H7GXR7-F1-model_v4_TED01","TED novel fold AF-A0A1H7GXR7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:103816","l":"Rhodococcus pyridinivorans","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A419ZLU8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A419ZLU8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:103838","l":"Nonomuraea turkmeniaca","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["TED%3AAF-A0A5S4FRG4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5S4FRG4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1038845","l":"Flavobacterium rakeshii","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["TED%3AAF-A0A6N8H854-F1-model_v4_TED02","TED novel fold AF-A0A6N8H854-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1038928","l":"Streptomyces xinghaiensis","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["TED%3AAF-A0A3R7FP99-F1-model_v4_TED01","TED novel fold AF-A0A3R7FP99-F1-model_v4_TED01"]]},{"id":"NCBITaxon:104205","l":"Streptomonospora salina","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["TED%3AAF-A0A841ECK8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841ECK8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:104660","l":"Pinctada maxima","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["Pfam%3APF03173","Putative carbohydrate binding domain"]]},{"id":"NCBITaxon:104663","l":"Chitinophaga filiformis","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["TED%3AAF-A0A1G7RSD9-F1-model_v4_TED01","TED novel fold AF-A0A1G7RSD9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1048396","l":"Halopenitus persicus","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["TED%3AAF-A0A1H3M4L7-F1-model_v4_TED01","TED novel fold AF-A0A1H3M4L7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1051531","l":"Saccharothrix tamanrassetensis","na":1,"nb":1,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["TED%3AAF-A0A841CPC6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841CPC6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1052260","l":"Klenkia soli","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["TED%3AAF-A0A1H0TFA4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H0TFA4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1052585","l":"","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["TED%3AAF-G4P1P4-F1-model_v4_TED01","TED highly-symmetric fold AF-G4P1P4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1053222","l":"Bacillus cereus MSX-D12","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["TED%3AAF-J8G3X2-F1-model_v4_TED01","TED highly-symmetric fold AF-J8G3X2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1054202","l":"Rhodobacter viridis","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["TED%3AAF-A0A318TZ12-F1-model_v4_TED01","TED novel fold AF-A0A318TZ12-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1054217","l":"Thermoplasmatales archaeon BRNA1","na":1,"nb":1,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["TED%3AAF-M4YJR5-F1-model_v4_TED01","TED highly-symmetric fold AF-M4YJR5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:106654","l":"Acinetobacter nosocomialis","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["TED%3AAF-A0A5Q0RRM8-F1-model_v4_TED01","TED novel fold AF-A0A5Q0RRM8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1071078","l":"Bacillus sp. NSP9.1","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["TED%3AAF-A0A6I7F721-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I7F721-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1078016","l":"Rhodococcus erythropolis XP","na":1,"nb":1,"a":[["resting-cell-bto-0001170.html","resting cell"]],"b":[["Pfam%3APF08028","Acyl-CoA dehydrogenase, C-terminal domain"]]},{"id":"NCBITaxon:1078050","l":"Seleniivibrio woodruffii","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["TED%3AAF-A0A4R1KEH0-F1-model_v4_TED02","TED novel fold AF-A0A4R1KEH0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1085538","l":"Leptospira interrogans serovar Bataviae str. HAI135","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["TED%3AAF-M6TC60-F1-model_v4_TED05","TED novel fold AF-M6TC60-F1-model_v4_TED05"]]},{"id":"NCBITaxon:108980","l":"Acinetobacter ursingii","na":1,"nb":1,"a":[["foot-bto-0000476.html","foot"]],"b":[["TED%3AAF-A0A3F3LBR7-F1-model_v4_TED01","TED novel fold AF-A0A3F3LBR7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1094555","l":"Bartonella elizabethae F9251 = ATCC 49927","na":1,"nb":1,"a":[["blood-bto-0000089.html","blood"]],"b":[["TED%3AAF-J1K501-F1-model_v4_TED02","TED highly-symmetric fold AF-J1K501-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1100720","l":"Limnohabitans sp. Rim28","na":1,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["TED%3AAF-A0A2T7SZL1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T7SZL1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1107882","l":"Mesorhizobium alhagi CCNWXJ12-2","na":1,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["TED%3AAF-H0I1K0-F1-model_v4_TED01","TED novel fold AF-H0I1K0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1108595","l":"Chromobacterium vaccinii","na":1,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["TED%3AAF-A0A2L2B8V3-F1-model_v4_TED02","TED novel fold AF-A0A2L2B8V3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1111454","l":"","na":1,"nb":1,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["TED%3AAF-U7UHK7-F1-model_v4_TED01","TED novel fold AF-U7UHK7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1112204","l":"Gordonia polyisoprenivorans VH2","na":1,"nb":1,"a":[["latex-bto-0000710.html","latex"]],"b":[["TED%3AAF-H6N0Q7-F1-model_v4_TED01","TED novel fold AF-H6N0Q7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1116472","l":"Methyloglobulus morosus KoM1","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["TED%3AAF-V5BKR0-F1-model_v4_TED01","TED highly-symmetric fold AF-V5BKR0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1120926","l":"Acinetobacter gerneri DSM 14967 = CIP 107464 = MTCC 9824","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["TED%3AAF-N8ZKV3-F1-model_v4_TED01","TED highly-symmetric fold AF-N8ZKV3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1120996","l":"Anaerosporobacter mobilis DSM 15930","na":1,"nb":1,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["TED%3AAF-A0A1M7NGC0-F1-model_v4_TED01","TED novel fold AF-A0A1M7NGC0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121098","l":"Phocaeicola massiliensis B84634 = Timone 84634 = DSM 17679 = JCM 13223","na":1,"nb":1,"a":[["blood-bto-0000089.html","blood"]],"b":[["TED%3AAF-U6RRG8-F1-model_v4_TED01","TED highly-symmetric fold AF-U6RRG8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121326","l":"Clostridium magnum DSM 2767","na":1,"nb":1,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["TED%3AAF-A0A162T1A8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A162T1A8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121336","l":"Thermoclostridium stercorarium subsp. thermolacticum DSM 2910","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["TED%3AAF-A0A1B1YDV6-F1-model_v4_TED02","TED novel fold AF-A0A1B1YDV6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1121424","l":"Desulfotruncus arcticus DSM 17038","na":1,"nb":1,"a":[["sea-coast-envo-00000303.html","sea coast"]],"b":[["TED%3AAF-A0A1I2Z3E3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I2Z3E3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1121426","l":"Desulfoscipio geothermicus DSM 3669","na":1,"nb":1,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["TED%3AAF-A0A1I6DXW2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I6DXW2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121898","l":"Flavobacterium subsaxonicum WB 4.1-42 = DSM 21790","na":1,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"]],"b":[["TED%3AAF-A0A0A2M8C2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A2M8C2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1122169","l":"Legionella shakespearei DSM 23087","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["TED%3AAF-A0A0W0YL59-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0W0YL59-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1122189","l":"Malonomonas rubra DSM 5091","na":1,"nb":1,"a":[["canal-envo-00000014.html","canal"]],"b":[["TED%3AAF-A0A1M6IYP5-F1-model_v4_TED01","TED novel fold AF-A0A1M6IYP5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1122247","l":"Mycolicibacterium hassiacum DSM 44199","na":1,"nb":1,"a":[["urethra-bto-0001426.html","urethra"]],"b":[["Pfam%3APF22422","Mannosylglycerate hydrolase MGH1-like glycoside hydrolase domain"]]},{"id":"NCBITaxon:1122252","l":"Marinospirillum celere","na":1,"nb":1,"a":[["island-envo-00000098.html","island"]],"b":[["TED%3AAF-A0A1I1DUZ3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1I1DUZ3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1123078","l":"Runella zeae DSM 19591","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["Pfam%3APF26164","Bacterial Gasdermin Family"]]},{"id":"NCBITaxon:1123282","l":"Sporobacter termitidis DSM 10068","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["TED%3AAF-A0A1M5VTW1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M5VTW1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1125876","l":"Halpernia frigidisoli","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["TED%3AAF-A0A1I3H4T1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I3H4T1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1129374","l":"Alishewanella jeotgali KCTC 22429","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["TED%3AAF-H3ZBB0-F1-model_v4_TED01","TED highly-symmetric fold AF-H3ZBB0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:113355","l":"Geminocystis herdmanii PCC 6308","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["Pfam%3APF18921","Cyanophycin synthase-like N-terminal domain"]]},{"id":"NCBITaxon:1134687","l":"Klebsiella michiganensis","na":1,"nb":1,"a":[["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"]],"b":[["TED%3AAF-A0A443W129-F1-model_v4_TED01","TED novel fold AF-A0A443W129-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1141221","l":"Chryseobacterium taihuense","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["TED%3AAF-A0A4U8WD57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8WD57-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1144618","l":"Allonocardiopsis opalescens","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["TED%3AAF-A0A2T0QE02-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T0QE02-F1-model_v4_TED01"]]},{"id":"NCBITaxon:114527","l":"Mogibacterium diversum","na":1,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["TED%3AAF-A0A2S0L5I6-F1-model_v4_TED02","TED novel fold AF-A0A2S0L5I6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1148157","l":"Acinetobacter oleivorans","na":1,"nb":1,"a":[["plume-bto-0002480.html","plume"]],"b":[["TED%3AAF-A0A0B2UAV2-F1-model_v4_TED02","TED novel fold AF-A0A0B2UAV2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:115778","l":"Leuconostoc gasicomitatum","na":1,"nb":1,"a":[["research-facility-envo-00000469.html","research facility"]],"b":[["TED%3AAF-A0A7H9BD19-F1-model_v4_TED01","TED novel fold AF-A0A7H9BD19-F1-model_v4_TED01"]]},{"id":"NCBITaxon:115808","l":"Bradyrhizobium sp. ORS 285","na":1,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["TED%3AAF-A0A1Y6KEH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y6KEH3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:115979","l":"Niallia nealsonii","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["TED%3AAF-A0A2N0Z186-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N0Z186-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1161919","l":"Erwinia piriflorinigrans CFBP 5888","na":1,"nb":1,"a":[["flower-bto-0000469.html","flower"]],"b":[["TED%3AAF-V5Z5E5-F1-model_v4_TED01","TED novel fold AF-V5Z5E5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1162967","l":"Diaminobutyricimonas aerilata","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["TED%3AAF-A0A2M9CH35-F1-model_v4_TED01","TED novel fold AF-A0A2M9CH35-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1163745","l":"Helicobacter cetorum MIT 99-5656","na":1,"nb":1,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["TED%3AAF-I0EUT8-F1-model_v4_TED01","TED novel fold AF-I0EUT8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1163748","l":"","na":1,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["Pfam%3APF13205","Bacterial Ig-like domain"]]},{"id":"NCBITaxon:1164594","l":"Massilia yuzhufengensis","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["TED%3AAF-A0A1I1LD95-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I1LD95-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1173995","l":"Parvularcula dongshanensis","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["TED%3AAF-A0A840I3S3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A840I3S3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1176176","l":"Methylobacterium haplocladii","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["TED%3AAF-A0A512INB8-F1-model_v4_TED02","TED novel fold AF-A0A512INB8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1186196","l":"Natrinema salaciae","na":1,"nb":1,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["TED%3AAF-A0A1H9QMZ8-F1-model_v4_TED01","TED novel fold AF-A0A1H9QMZ8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1188229","l":"Gloeomargarita lithophora Alchichica-D10","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["TED%3AAF-A0A1J0AGF7-F1-model_v4_TED01","TED novel fold AF-A0A1J0AGF7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1198114","l":"Granulicella tundricola MP5ACTX9","na":1,"nb":1,"a":[["area-designated-as-a-nature-reserve-envo-00000363.html","area designated as a nature reserve"]],"b":[["TED%3AAF-E8X149-F1-model_v4_TED01","TED highly-symmetric fold AF-E8X149-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1210091","l":"Nocardia ninae NBRC 108245","na":1,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["TED%3AAF-A0A511MS59-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A511MS59-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1210932","l":"Peteryoungia ipomoeae","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["TED%3AAF-A0A4S8P7B5-F1-model_v4_TED01","TED novel fold AF-A0A4S8P7B5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1212765","l":"Candidatus Mycoplasma haematolamae str. Purdue","na":1,"nb":1,"a":[["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["TED%3AAF-I7CFH3-F1-model_v4_TED01","TED novel fold AF-I7CFH3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1216006","l":"Vibrio aerogenes CECT 7868","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["TED%3AAF-A0A1M5VN06-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M5VN06-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1227498","l":"Natronococcus jeotgali DSM 18795","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["TED%3AAF-L9WM09-F1-model_v4_TED01","TED novel fold AF-L9WM09-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1236689","l":"Candidatus Methanomethylophilus alvi Mx1201","na":1,"nb":1,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["TED%3AAF-M9SC19-F1-model_v4_TED01","TED highly-symmetric fold AF-M9SC19-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1241906","l":"-","na":1,"nb":1,"a":[["nb-4-cell-bto-0002136.html","NB-4 cell"]],"b":[["TED%3AAF-M6ZXW8-F1-model_v4_TED01","TED highly-symmetric fold AF-M6ZXW8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1245469","l":"Bradyrhizobium oligotrophicum S58","na":1,"nb":1,"a":[["bacteroid-bto-0000109.html","bacteroid"]],"b":[["TED%3AAF-M4ZLP8-F1-model_v4_TED01","TED highly-symmetric fold AF-M4ZLP8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1262550","l":"Brevibacterium jeotgali","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["TED%3AAF-A0A2H1L8Q0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H1L8Q0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1262583","l":"Tamaricihabitans halophyticus","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["TED%3AAF-A0A4R2RDI5-F1-model_v4_TED01","TED novel fold AF-A0A4R2RDI5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1263636","l":"Microbacterium kyungheense","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["TED%3AAF-A0A543F149-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A543F149-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1267768","l":"Brevirhabdus pacifica","na":1,"nb":1,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["TED%3AAF-A0A2M9DE94-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M9DE94-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1268635","l":"Legionella oakridgensis ATCC 33761 = DSM 21215","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["TED%3AAF-W0BCQ3-F1-model_v4_TED02","TED highly-symmetric fold AF-W0BCQ3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1273541","l":"Pyrodictium delaneyi","na":1,"nb":1,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["TED%3AAF-A0A211YRF7-F1-model_v4_TED01","TED novel fold AF-A0A211YRF7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1274631","l":"Bradyrhizobium icense","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["TED%3AAF-A0A533IQI7-F1-model_v4_TED02","TED novel fold AF-A0A533IQI7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1276220","l":"Spiroplasma taiwanense CT-1","na":1,"nb":1,"a":[["cardiovascular-system-bto-0000088.html","cardiovascular system"]],"b":[["TED%3AAF-S5LY17-F1-model_v4_TED02","TED novel fold AF-S5LY17-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1276221","l":"Spiroplasma diminutum CUAS-1","na":1,"nb":1,"a":[["cardiovascular-system-bto-0000088.html","cardiovascular system"]],"b":[["TED%3AAF-S5M2Q1-F1-model_v4_TED01","TED novel fold AF-S5M2Q1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1291742","l":"Paucilactobacillus hokkaidonensis JCM 18461","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["TED%3AAF-A0A0A1GYI0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A1GYI0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1298595","l":"Veillonella rogosae JCM 15642","na":1,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["TED%3AAF-A0A2S7YXG0-F1-model_v4_TED02","TED novel fold AF-A0A2S7YXG0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1307761","l":"Salinispira pacifica","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["TED%3AAF-V5WIK3-F1-model_v4_TED01","TED highly-symmetric fold AF-V5WIK3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1324350","l":"Acinetobacter equi","na":1,"nb":1,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["TED%3AAF-A0A0N9WF70-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0N9WF70-F1-model_v4_TED01"]]},{"id":"NCBITaxon:132476","l":"Pseudomonas kilonensis","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A1H5FUT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H5FUT8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1333523","l":"Salinarchaeum sp. Harcht-Bsk1","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["TED%3AAF-R4VXQ2-F1-model_v4_TED01","TED highly-symmetric fold AF-R4VXQ2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1341157","l":"Ruminococcus flavefaciens 007c","na":1,"nb":1,"a":[["fiber-bto-0000450.html","fiber"]],"b":[["TED%3AAF-W7UF30-F1-model_v4_TED01","TED novel fold AF-W7UF30-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1342794","l":"Photobacterium sanctipauli","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["TED%3AAF-A0A2T3P194-F1-model_v4_TED01","TED novel fold AF-A0A2T3P194-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1346286","l":"Indolivaga macrotermitis","na":1,"nb":1,"a":[["hindgut-bto-0000510.html","hindgut"]],"b":[["TED%3AAF-A0A1M4VXX6-F1-model_v4_TED02","TED novel fold AF-A0A1M4VXX6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1348114","l":"Pseudoalteromonas piratica","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["TED%3AAF-A0A0A7EDY8-F1-model_v4_TED01","TED novel fold AF-A0A0A7EDY8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1365176","l":"Thermofilum adornatum","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["TED%3AAF-A0A7C1CCT4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C1CCT4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1424653","l":"Caminibacter pacificus","na":1,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["TED%3AAF-A0A3N1YR43-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3N1YR43-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1431546","l":"Corynebacterium aquilae DSM 44791","na":1,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["TED%3AAF-A0A1L7CFU4-F1-model_v4_TED03","TED novel fold AF-A0A1L7CFU4-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1497681","l":"Paenilisteria newyorkensis","na":1,"nb":1,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["TED%3AAF-A0A841Z083-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A841Z083-F1-model_v4_TED02"]]},{"id":"NCBITaxon:150","l":"Spirochaeta isovalerica","na":1,"nb":1,"a":[["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["TED%3AAF-A0A841R6V2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841R6V2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1500506","l":"Halopolyspora algeriensis","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["TED%3AAF-A0A368VEW2-F1-model_v4_TED01","TED novel fold AF-A0A368VEW2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:150053","l":"Yersinia enterocolitica subsp. palearctica","na":1,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["TED%3AAF-A0A6M1Q6Y0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6M1Q6Y0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1507806","l":"Campylobacter fetus subsp. testudinum","na":1,"nb":1,"a":[["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["TED%3AAF-A0A2S0JEW5-F1-model_v4_TED02","TED novel fold AF-A0A2S0JEW5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:151783","l":"Cupriavidus campinensis","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["TED%3AAF-A0A556UPV6-F1-model_v4_TED01","TED novel fold AF-A0A556UPV6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1524097","l":"Massilia glaciei","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["TED%3AAF-A0A2U2HFI6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U2HFI6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1526762","l":"Vibrio sp. B183","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["TED%3AAF-A0A086WSI7-F1-model_v4_TED02","TED novel fold AF-A0A086WSI7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1550","l":"Clostridium subterminale","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["Pfam%3APF12544","Lysine-2,3-aminomutase"]]},{"id":"NCBITaxon:156133","l":"Prasinoderma coloniale","na":1,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A7R9Y3T8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7R9Y3T8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1574623","l":"Lyngbya confervoides BDU141951","na":1,"nb":1,"a":[["filament-bto-0000463.html","filament"]],"b":[["TED%3AAF-A0A0C1V1F7-F1-model_v4_TED01","TED novel fold AF-A0A0C1V1F7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:157733","l":"Alkalihalobacillus macyae","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["TED%3AAF-A0A0J6FWV9-F1-model_v4_TED01","TED novel fold AF-A0A0J6FWV9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1577902","l":"Leisingera sp. ANG-M7","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["TED%3AAF-A0A0C1IJ64-F1-model_v4_TED02","TED novel fold AF-A0A0C1IJ64-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1577905","l":"Tateyamaria sp. ANG-S1","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["TED%3AAF-A0A0B4CZX6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0B4CZX6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1585","l":"Lactobacillus delbrueckii subsp. bulgaricus","na":1,"nb":1,"a":[["pig-manure-envo-00003860.html","pig manure"]],"b":[["TED%3AAF-A0A809EIY6-F1-model_v4_TED02","TED novel fold AF-A0A809EIY6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1604","l":"Lactobacillus amylovorus","na":1,"nb":1,"a":[["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["Pfam%3APF10439","Bacteriocin class II with double-glycine leader peptide"]]},{"id":"NCBITaxon:1612149","l":"Chryseobacterium limigenitum","na":1,"nb":1,"a":[["waste-material-envo-00002264.html","waste material"]],"b":[["TED%3AAF-A0A1K2ISG6-F1-model_v4_TED01","TED novel fold AF-A0A1K2ISG6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:161879","l":"Corynebacterium kroppenstedtii","na":1,"nb":1,"a":[["breast-bto-0000149.html","breast"]],"b":[["TED%3AAF-A0A2N6TDE9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N6TDE9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1639133","l":"Citrobacter portucalensis","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["TED%3AAF-A0A7I7D4I9-F1-model_v4_TED01","TED novel fold AF-A0A7I7D4I9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1648404","l":"Aurantiacibacter atlanticus","na":1,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["TED%3AAF-A0A0H4VAN8-F1-model_v4_TED01","TED novel fold AF-A0A0H4VAN8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1690","l":"Bifidobacterium pseudolongum subsp. globosum","na":1,"nb":1,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["TED%3AAF-A0A4Q5B3M5-F1-model_v4_TED01","TED novel fold AF-A0A4Q5B3M5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1703352","l":"Bacteroides sp. SM23_62","na":1,"nb":1,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["TED%3AAF-A0A0S8JVR9-F1-model_v4_TED02","TED novel fold AF-A0A0S8JVR9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1703960","l":"Rhizobium sp. N113","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["TED%3AAF-A0A192M071-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A192M071-F1-model_v4_TED01"]]},{"id":"NCBITaxon:170673","l":"Vibrio kanaloae","na":1,"nb":1,"a":[["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["TED%3AAF-A0A4U1Z3U9-F1-model_v4_TED01","TED novel fold AF-A0A4U1Z3U9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1716141","l":"Streptomyces jeddahensis","na":1,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["TED%3AAF-A0A177HQP2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A177HQP2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:171674","l":"Inquilinus limosus","na":1,"nb":1,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"]],"b":[["TED%3AAF-A0A211ZKE4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A211ZKE4-F1-model_v4_TED03"]]},{"id":"NCBITaxon:172044","l":"Sphingomonas yabuuchiae","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["TED%3AAF-A0A147IMF7-F1-model_v4_TED02","TED novel fold AF-A0A147IMF7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1727163","l":"Algoriphagus sanaruensis","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["TED%3AAF-A0A142ENK3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142ENK3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:173365","l":"Methylobacter tundripaludum","na":1,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A2S6HGL6-F1-model_v4_TED02","TED novel fold AF-A0A2S6HGL6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:173959","l":"Brevibacillus invocatus","na":1,"nb":1,"a":[["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"]],"b":[["TED%3AAF-A0A3M8C5C7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M8C5C7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:174","l":"Leptospira borgpetersenii","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["Pfam%3APF01548","Transposase"]]},{"id":"NCBITaxon:1761780","l":"Butyrivibrio sp. ob235","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["TED%3AAF-A0A1H7I3V4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H7I3V4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1761884","l":"Prevotella sp. khp1","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["TED%3AAF-A0A1H0Y2B2-F1-model_v4_TED01","TED novel fold AF-A0A1H0Y2B2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1767","l":"Mycobacterium intracellulare","na":1,"nb":1,"a":[["co-culture-habitatmech-bacdive-ff945d8a69.html","Co-culture"]],"b":[["Pfam%3APF18914","Domain of unknown function (DUF5666)"]]},{"id":"NCBITaxon:177437","l":"Desulforapulum autotrophicum HRM2","na":1,"nb":1,"a":[["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["TED%3AAF-C0QA36-F1-model_v4_TED03","TED novel fold AF-C0QA36-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1795630","l":"Frondihabitans sp. PAMC 28766","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["TED%3AAF-A0A126Z0C8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A126Z0C8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1797220","l":"Alphaproteobacteria bacterium RIFCSPHIGHO2_02_FULL_46_13","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["TED%3AAF-A0A1F2Z3M8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F2Z3M8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1798185","l":"Pseudobutyrivibrio sp. UC1225","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["TED%3AAF-A0A1I5GI49-F1-model_v4_TED01","TED novel fold AF-A0A1I5GI49-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1799789","l":"Paraglaciecola hydrolytica","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["TED%3AAF-A0A135ZZ80-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A135ZZ80-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1812935","l":"Enterobacter roggenkampii","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["TED%3AAF-A0A7D6U4G9-F1-model_v4_TED01","TED novel fold AF-A0A7D6U4G9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1829","l":"Rhodococcus rhodochrous","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"]]},{"id":"NCBITaxon:1843237","l":"Sphingomonas prati","na":1,"nb":1,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["TED%3AAF-A0A7W9BV99-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W9BV99-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1852","l":"Saccharomonospora viridis","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["TED%3AAF-A0A837DC99-F1-model_v4_TED01","TED novel fold AF-A0A837DC99-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1869214","l":"Rheinheimera sp.","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["TED%3AAF-A0A2D5RQK8-F1-model_v4_TED01","TED novel fold AF-A0A2D5RQK8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1870902","l":"Leifsonia sp.","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["TED%3AAF-A0A2E0SSA9-F1-model_v4_TED02","TED novel fold AF-A0A2E0SSA9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1871043","l":"Variovorax sp.","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["TED%3AAF-A0A2E9BKC8-F1-model_v4_TED02","TED novel fold AF-A0A2E9BKC8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:187303","l":"Methylocystis hydrogenophila","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["TED%3AAF-J7QPR6-F1-model_v4_TED01","TED novel fold AF-J7QPR6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:187327","l":"Acidaminococcus intestini","na":1,"nb":1,"a":[["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["TED%3AAF-C0WBZ8-F1-model_v4_TED01","TED highly-symmetric fold AF-C0WBZ8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1881060","l":"Clostridium sp. USBA 49","na":1,"nb":1,"a":[["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"]],"b":[["TED%3AAF-A0A1T4XFS6-F1-model_v4_TED02","TED novel fold AF-A0A1T4XFS6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1882750","l":"Burkholderia sp. GAS332","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["TED%3AAF-A0A1N6LVR0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1N6LVR0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1882752","l":"Singulisphaera sp. GP187","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["TED%3AAF-A0A1N6KHP4-F1-model_v4_TED02","TED novel fold AF-A0A1N6KHP4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1882832","l":"Paenibacillaceae bacterium GAS479","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["TED%3AAF-A0A1H1ZWX8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H1ZWX8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1888168","l":"Curvibacter sp.","na":1,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["TED%3AAF-A0A433BGD3-F1-model_v4_TED01","TED novel fold AF-A0A433BGD3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1890675","l":"Herbaspirillum sp.","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["TED%3AAF-A0A2E7PAN6-F1-model_v4_TED02","TED novel fold AF-A0A2E7PAN6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1904","l":"Streptomyces cyaneus","na":1,"nb":1,"a":[["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["Pfam%3APF04673","Polyketide synthesis cyclase"]]},{"id":"NCBITaxon:1907575","l":"Jatrophihabitans sp. GAS493","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["TED%3AAF-A0A286EQ27-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A286EQ27-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1908","l":"Streptomyces globisporus","na":1,"nb":1,"a":[["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["PROSITE%3APS00953","Glycosyl hydrolases family 25 active site signature"]]},{"id":"NCBITaxon:191292","l":"Rhodococcus aetherivorans","na":1,"nb":1,"a":[["bcp-1-cell-bto-0002728.html","BCP-1 cell"]],"b":[["TED%3AAF-N1LZY7-F1-model_v4_TED01","TED highly-symmetric fold AF-N1LZY7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1926630","l":"Pseudoblastomonas halimionae","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["TED%3AAF-A0A6I4U4Z5-F1-model_v4_TED03","TED novel fold AF-A0A6I4U4Z5-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1935","l":"Streptomyces violaceoruber","na":1,"nb":1,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["Pfam%3APF03559","NDP-hexose 2,3-dehydratase"]]},{"id":"NCBITaxon:1938870","l":"Candidatus Pantoea floridensis","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["TED%3AAF-A0A286BLC6-F1-model_v4_TED02","TED novel fold AF-A0A286BLC6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:195913","l":"Loktanella salsilacus","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["TED%3AAF-A0A1I4CVX6-F1-model_v4_TED03","TED novel fold AF-A0A1I4CVX6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1967","l":"Streptomyces kanamyceticus","na":1,"nb":1,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Pfam%3APF13579","Glycosyl transferase 4-like domain"]]},{"id":"NCBITaxon:2024860","l":"Spongiibacter sp.","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["TED%3AAF-A0A2D7WH13-F1-model_v4_TED03","TED novel fold AF-A0A2D7WH13-F1-model_v4_TED03"]]},{"id":"NCBITaxon:203","l":"Campylobacter rectus","na":1,"nb":1,"a":[["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["TED%3AAF-A0A6G5QQ81-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A6G5QQ81-F1-model_v4_TED04"]]},{"id":"NCBITaxon:2030","l":"Kibdelosporangium aridum","na":1,"nb":1,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["TED%3AAF-A0A1W1ZQL0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W1ZQL0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2051","l":"Mobiluncus curtisii","na":1,"nb":1,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["TED%3AAF-A0A7Y0UGC2-F1-model_v4_TED01","TED novel fold AF-A0A7Y0UGC2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:205918","l":"Pseudomonas syringae pv. syringae B728a","na":1,"nb":1,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["Pfam%3APF15457","Type III T3SS secreted effector HopW1-1/HopPmaA"]]},{"id":"NCBITaxon:2125990","l":"Pseudodesulfovibrio hydrargyri","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["TED%3AAF-A0A1J5N6X0-F1-model_v4_TED02","TED novel fold AF-A0A1J5N6X0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:212717","l":"Clostridium tetani E88","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["Pfam%3APF08453","Peptidase family M9 N-terminal"]]},{"id":"NCBITaxon:2148","l":"Acholeplasma laidlawii","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["TED%3AAF-A0A553IH20-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A553IH20-F1-model_v4_TED04"]]},{"id":"NCBITaxon:2164","l":"Methanobacterium sp.","na":1,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"]],"b":[["TED%3AAF-A0A6A8RVR7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6A8RVR7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:216591","l":"Burkholderia cenocepacia J2315","na":1,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["Pfam%3APF04199","Putative cyclase"]]},{"id":"NCBITaxon:216778","l":"Stenotrophomonas rhizophila","na":1,"nb":1,"a":[["style-bto-0001313.html","style"]],"b":[["TED%3AAF-A0A023XYG6-F1-model_v4_TED02","TED novel fold AF-A0A023XYG6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:216895","l":"Vibrio vulnificus CMCP6","na":1,"nb":1,"a":[["hela-cell-bto-0000567.html","HeLa cell"]],"b":[["Pfam%3APF18416","N-acetylglucosamine binding protein domain 2"]]},{"id":"NCBITaxon:218208","l":"Desulfatibacillum aliphaticivorans","na":1,"nb":1,"a":[["watercourse-envo-00000029.html","watercourse"]],"b":[["TED%3AAF-B8FC96-F1-model_v4_TED02","TED highly-symmetric fold AF-B8FC96-F1-model_v4_TED02"]]},{"id":"NCBITaxon:223788","l":"Balnearium lithotrophicum","na":1,"nb":1,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["TED%3AAF-A0A521D8E7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A521D8E7-F1-model_v4_TED03"]]},{"id":"NCBITaxon:2242","l":"Halobacterium salinarum","na":1,"nb":1,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["Pfam%3APF07232","Putative rep protein (DUF1424)"]]},{"id":"NCBITaxon:225324","l":"Enhydrobacter aerosaccus","na":1,"nb":1,"a":[["nectar-bto-0000537.html","nectar"]],"b":[["TED%3AAF-A0A1T4TCH1-F1-model_v4_TED01","TED novel fold AF-A0A1T4TCH1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:225849","l":"Shewanella piezotolerans WP3","na":1,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["TED%3AAF-B8CPC1-F1-model_v4_TED01","TED novel fold AF-B8CPC1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:225991","l":"Comamonas aquatica","na":1,"nb":1,"a":[["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["TED%3AAF-A0A8B0TG78-F1-model_v4_TED02","TED novel fold AF-A0A8B0TG78-F1-model_v4_TED02"]]},{"id":"NCBITaxon:227605","l":"Methylocella tundrae","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A4U8Z7R3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8Z7R3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:229919","l":"Anaerolinea thermolimosa","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["TED%3AAF-A0A3D1JEJ6-F1-model_v4_TED03","TED novel fold AF-A0A3D1JEJ6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:230089","l":"Photorhabdus thracensis","na":1,"nb":1,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["TED%3AAF-A0A0F7LMP9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F7LMP9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:231438","l":"Desulfoluna butyratoxydans","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["TED%3AAF-A0A4U8YKH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8YKH3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:234621","l":"Rhodococcus erythropolis PR4","na":1,"nb":1,"a":[["joint-bto-0001686.html","joint"]],"b":[["TED%3AAF-C0ZLI2-F1-model_v4_TED01","TED novel fold AF-C0ZLI2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:243160","l":"Burkholderia mallei ATCC 23344","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["PROSITE%3APS01306","Uncharacterized protein family UPF0054 signature"]]},{"id":"NCBITaxon:243265","l":"Photorhabdus laumondii subsp. laumondii TTO1","na":1,"nb":1,"a":[["carcass-bto-0001965.html","carcass"]],"b":[["Pfam%3APF07927","HicA toxin of bacterial toxin-antitoxin,"]]},{"id":"NCBITaxon:246432","l":"Staphylococcus equorum","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["TED%3AAF-A0A1B1GAW5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1B1GAW5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:250","l":"Chryseobacterium gleum","na":1,"nb":1,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["TED%3AAF-A0A448B167-F1-model_v4_TED02","TED novel fold AF-A0A448B167-F1-model_v4_TED02"]]},{"id":"NCBITaxon:252514","l":"Microbulbifer thermotolerans","na":1,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["Pfam%3APF18040","beta porphyranase A C-terminal"]]},{"id":"NCBITaxon:253239","l":"Ethanoligenens harbinense","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["TED%3AAF-A0A386XVY3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A386XVY3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:257363","l":"Rickettsia typhi str. Wilmington","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Pfam%3APF12334","Rickettsia outer membrane protein B, passenger domain"]]},{"id":"NCBITaxon:259564","l":"Methanococcoides burtonii DSM 6242","na":1,"nb":1,"a":[["hypolimnion-envo-00002130.html","hypolimnion"]],"b":[["TED%3AAF-Q12W09-F1-model_v4_TED02","TED novel fold AF-Q12W09-F1-model_v4_TED02"]]},{"id":"NCBITaxon:266117","l":"Rubrobacter xylanophilus DSM 9941","na":1,"nb":1,"a":[["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["TED%3AAF-Q1AVL5-F1-model_v4_TED02","TED highly-symmetric fold AF-Q1AVL5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:267671","l":"Leptospira interrogans serovar Copenhageni str. Fiocruz L1-130","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["Pfam%3APF05262","Borrelia P83/100 protein"]]},{"id":"NCBITaxon:267747","l":"Cutibacterium acnes KPA171202","na":1,"nb":1,"a":[["sebaceous-gland-bto-0001980.html","sebaceous gland"]],"b":[["Pfam%3APF27542","ArfC"]]},{"id":"NCBITaxon:272831","l":"Neisseria meningitidis FAM18","na":1,"nb":1,"a":[["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["Pfam%3APF27460","ATP phosphoribosyltransferase subunit HisZ C-terminal domain"]]},{"id":"NCBITaxon:272951","l":"Rickettsia sibirica 246","na":1,"nb":1,"a":[["endothelial-cell-bto-0001176.html","endothelial cell"]],"b":[["Pfam%3APF22203","Surface cell antigen Sca2 helical repeat"]]},{"id":"NCBITaxon:273384","l":"Brevibacterium aurantiacum","na":1,"nb":1,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["TED%3AAF-A0A556CK32-F1-model_v4_TED02","TED novel fold AF-A0A556CK32-F1-model_v4_TED02"]]},{"id":"NCBITaxon:278992","l":"Streptomyces ambofaciens ATCC 23877","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF00553","Cellulose binding domain"]]},{"id":"NCBITaxon:28031","l":"Lysinibacillus fusiformis","na":1,"nb":1,"a":[["organic-waste-material-envo-00002873.html","organic waste material"]],"b":[["TED%3AAF-A0A1E4QZZ2-F1-model_v4_TED04","TED novel fold AF-A0A1E4QZZ2-F1-model_v4_TED04"]]},{"id":"NCBITaxon:28113","l":"Prevotella heparinolytica","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["TED%3AAF-A0A449I749-F1-model_v4_TED01","TED novel fold AF-A0A449I749-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28181","l":"Magnetovibrio blakemorei","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["TED%3AAF-A0A1E5Q9I9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E5Q9I9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28198","l":"Aliarcobacter cryaerophilus","na":1,"nb":1,"a":[["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["TED%3AAF-A0A2S9SPY1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S9SPY1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:284579","l":"Salibacterium salarium","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["TED%3AAF-A0A3R9PEH4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R9PEH4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:288681","l":"Bacillus cereus E33L","na":1,"nb":1,"a":[["carcass-envo-00002033.html","carcass"]],"b":[["TED%3AAF-Q4V119-F1-model_v4_TED01","TED highly-symmetric fold AF-Q4V119-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28892","l":"Methanofollis liminatans DSM 4140","na":1,"nb":1,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["TED%3AAF-J0S6K4-F1-model_v4_TED02","TED novel fold AF-J0S6K4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:291645","l":"Bacteroides nordii","na":1,"nb":1,"a":[["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["TED%3AAF-A0A413VD19-F1-model_v4_TED01","TED novel fold AF-A0A413VD19-F1-model_v4_TED01"]]},{"id":"NCBITaxon:29303","l":"Streptomyces cattleya","na":1,"nb":1,"a":[["clay-envo-00002982.html","clay"]],"b":[["Pfam%3APF22636","Fluoroacetyl-CoA-specific thioesterase"]]},{"id":"NCBITaxon:29422","l":"Legionella brunensis","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["TED%3AAF-A0A0W0RZW2-F1-model_v4_TED03","TED novel fold AF-A0A0W0RZW2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:29447","l":"Xanthomonas albilineans","na":1,"nb":1,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["TED%3AAF-A0A6P1SIK7-F1-model_v4_TED02","TED novel fold AF-A0A6P1SIK7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:29554","l":"Metamycoplasma canadense","na":1,"nb":1,"a":[["inflammatory-cell-bto-0003861.html","inflammatory cell"]],"b":[["TED%3AAF-A0A077LB01-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A077LB01-F1-model_v4_TED02"]]},{"id":"NCBITaxon:29557","l":"Mycoplasmopsis gallinarum","na":1,"nb":1,"a":[["medial-geniculate-nucleus-bto-0002670.html","medial geniculate nucleus"]],"b":[["TED%3AAF-A0A168RG78-F1-model_v4_TED05","TED novel fold AF-A0A168RG78-F1-model_v4_TED05"]]},{"id":"NCBITaxon:29581","l":"Janthinobacterium lividum","na":1,"nb":1,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["TED%3AAF-A0A853SDQ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A853SDQ0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:298","l":"Pseudomonas marginalis","na":1,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["PROSITE%3APS00330","Hemolysin-type calcium-binding region signature"]]},{"id":"NCBITaxon:299767","l":"Enterobacter ludwigii","na":1,"nb":1,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["TED%3AAF-W0BYN9-F1-model_v4_TED01","TED highly-symmetric fold AF-W0BYN9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:300","l":"Ectopseudomonas mendocina","na":1,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"]],"b":[["TED%3AAF-A0A550EU84-F1-model_v4_TED01","TED novel fold AF-A0A550EU84-F1-model_v4_TED01"]]},{"id":"NCBITaxon:301154","l":"Sphingomonas oligophenolica","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["TED%3AAF-A0A502CIK8-F1-model_v4_TED02","TED novel fold AF-A0A502CIK8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:304","l":"Roseateles saccharophilus","na":1,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"]],"b":[["Pfam%3APF09081","Glucan 1,4-alpha-maltotetraohydrolase, domain C"]]},{"id":"NCBITaxon:306537","l":"Corynebacterium jeikeium K411","na":1,"nb":1,"a":[["bone-marrow-bto-0000141.html","bone marrow"]],"b":[["TED%3AAF-Q4JSH9-F1-model_v4_TED02","TED novel fold AF-Q4JSH9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:315277","l":"Chlamydia trachomatis A/HAR-13","na":1,"nb":1,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["Pfam%3APF05745","Chlamydia 15 kDa cysteine-rich outer membrane protein (CRPA)"]]},{"id":"NCBITaxon:315750","l":"Bacillus pumilus SAFR-032","na":1,"nb":1,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["Pfam%3APF06569","Protein of unknown function (DUF1128)"]]},{"id":"NCBITaxon:317010","l":"Enterococcus canintestini","na":1,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"]],"b":[["TED%3AAF-A0A1L8R2Z2-F1-model_v4_TED01","TED novel fold AF-A0A1L8R2Z2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:317577","l":"Deinococcus ficus","na":1,"nb":1,"a":[["waste-treatment-plant-envo-00002272.html","waste treatment plant"]],"b":[["TED%3AAF-A0A221T2Q9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A221T2Q9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:318751","l":"Westerdykella ornata","na":1,"nb":1,"a":[["desert-sand-envo-00005800.html","desert sand"]],"b":[["TED%3AAF-A0A6A6JM44-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6A6JM44-F1-model_v4_TED02"]]},{"id":"NCBITaxon:32019","l":"Campylobacter fetus subsp. fetus","na":1,"nb":1,"a":[["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["TED%3AAF-A0A0S4SB94-F1-model_v4_TED05","TED novel fold AF-A0A0S4SB94-F1-model_v4_TED05"]]},{"id":"NCBITaxon:32021","l":"Campylobacter jejuni subsp. doylei","na":1,"nb":1,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["TED%3AAF-A0A381D4M6-F1-model_v4_TED01","TED novel fold AF-A0A381D4M6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:320388","l":"Burkholderia mallei SAVP1","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Pfam%3APF27460","ATP phosphoribosyltransferase subunit HisZ C-terminal domain"]]},{"id":"NCBITaxon:321267","l":"Shimia marina","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["TED%3AAF-A0A0P1EQT4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0P1EQT4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:321985","l":"Pseudoduganella lutea","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["TED%3AAF-A0A4V0Z4E3-F1-model_v4_TED01","TED novel fold AF-A0A4V0Z4E3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:323259","l":"Methanospirillum hungatei JF-1","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["Pfam%3APF01864","CDP-archaeol synthase"]]},{"id":"NCBITaxon:326424","l":"Frankia alni ACN14a","na":1,"nb":1,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["Pfam%3APF14403","Circularly permuted ATP-grasp type 2"]]},{"id":"NCBITaxon:335284","l":"Psychrobacter cryohalolentis K5","na":1,"nb":1,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["Pfam%3APF10414","Sirohaem synthase dimerisation region"]]},{"id":"NCBITaxon:336203","l":"Sphingobium fuliginis","na":1,"nb":1,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["TED%3AAF-A0A4Q4J272-F1-model_v4_TED01","TED novel fold AF-A0A4Q4J272-F1-model_v4_TED01"]]},{"id":"NCBITaxon:33967","l":"Leuconostoc mesenteroides subsp. mesenteroides","na":1,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"]],"b":[["Pfam%3APF03390","2-hydroxycarboxylate transporter family"]]},{"id":"NCBITaxon:340","l":"Xanthomonas campestris pv. campestris","na":1,"nb":1,"a":[["waste-treatment-plant-envo-00002272.html","waste treatment plant"]],"b":[["Pfam%3APF22059","Glucuronosyltransferase GumK, N-terminal domain"]]},{"id":"NCBITaxon:340047","l":"Mycoplasma capricolum subsp. capricolum ATCC 27343","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Pfam%3APF27879","Helix-rich protein"]]},{"id":"NCBITaxon:340345","l":"Actinoalloteichus hymeniacidonis","na":1,"nb":1,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["TED%3AAF-A0A7W9UEM7-F1-model_v4_TED01","TED novel fold AF-A0A7W9UEM7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:343509","l":"Sodalis glossinidius str. 'morsitans'","na":1,"nb":1,"a":[["needle-bto-0000917.html","needle"]],"b":[["Pfam%3APF04345","Chorismate lyase"]]},{"id":"NCBITaxon:345631","l":"Geobacter argillaceus","na":1,"nb":1,"a":[["clay-envo-00002982.html","clay"]],"b":[["TED%3AAF-A0A562VM24-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A562VM24-F1-model_v4_TED02"]]},{"id":"NCBITaxon:351607","l":"Acidothermus cellulolyticus 11B","na":1,"nb":1,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["Pfam%3APF10647","Lipoprotein LpqB beta-propeller domain"]]},{"id":"NCBITaxon:353152","l":"","na":1,"nb":1,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"]],"b":[["TED%3AAF-Q5CXF2-F1-model_v4_TED01","TED highly-symmetric fold AF-Q5CXF2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:356829","l":"Bifidobacterium tsurumiense","na":1,"nb":1,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["TED%3AAF-A0A6L5X0P9-F1-model_v4_TED01","TED novel fold AF-A0A6L5X0P9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:357244","l":"Orientia tsutsugamushi str. Boryong","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Pfam%3APF01745","Isopentenyl transferase"]]},{"id":"NCBITaxon:35752","l":"Actinoplanes philippinensis","na":1,"nb":1,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["TED%3AAF-A0A1I2HI82-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I2HI82-F1-model_v4_TED02"]]},{"id":"NCBITaxon:35787","l":"Limosilactobacillus pontis","na":1,"nb":1,"a":[["pig-manure-envo-00003860.html","pig manure"]],"b":[["TED%3AAF-A0A2J6NPS8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2J6NPS8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:360911","l":"Exiguobacterium sp. AT1b","na":1,"nb":1,"a":[["joint-bto-0001686.html","joint"]],"b":[["TED%3AAF-C4L6T8-F1-model_v4_TED04","TED highly-symmetric fold AF-C4L6T8-F1-model_v4_TED04"]]},{"id":"NCBITaxon:362787","l":"Candidatus Protochlamydia amoebophila","na":1,"nb":1,"a":[["endosymbiont-habitatmech-bacdive-7d840c7ddc.html","Endosymbiont"]],"b":[["TED%3AAF-A0A0C1H7Y9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0C1H7Y9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:36746","l":"Pseudomonas cichorii","na":1,"nb":1,"a":[["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["TED%3AAF-A0A3M4VH83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M4VH83-F1-model_v4_TED01"]]},{"id":"NCBITaxon:36841","l":"Terrisporobacter glycolicus","na":1,"nb":1,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["TED%3AAF-A0A1I3PG81-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I3PG81-F1-model_v4_TED01"]]},{"id":"NCBITaxon:370554","l":"Streptococcus pyogenes MGAS10750","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["Pfam%3APF04260","Protein of unknown function (DUF436)"]]},{"id":"NCBITaxon:370973","l":"Runella defluvii","na":1,"nb":1,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["TED%3AAF-A0A7W5ZNZ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W5ZNZ4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:373","l":"Gillisella vitis","na":1,"nb":1,"a":[["trunk-bto-0001493.html","trunk"]],"b":[["TED%3AAF-A0A368P0R2-F1-model_v4_TED01","TED novel fold AF-A0A368P0R2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:373672","l":"Chryseobacterium gambrini","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["TED%3AAF-A0A1N7P9B3-F1-model_v4_TED02","TED novel fold AF-A0A1N7P9B3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:37372","l":"Helicobacter bilis","na":1,"nb":1,"a":[["ht-29-cell-bto-0000182.html","HT-29 cell"]],"b":[["TED%3AAF-A0A4U8UA27-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8UA27-F1-model_v4_TED01"]]},{"id":"NCBITaxon:375177","l":"Haemophilus influenzae 3655","na":1,"nb":1,"a":[["b-lymphocyte-cell-line-bto-0001522.html","B-lymphocyte cell line"]],"b":[["Pfam%3APF16747","Surface-adhesin protein E"]]},{"id":"NCBITaxon:375451","l":"Roseobacter denitrificans OCh 114","na":1,"nb":1,"a":[["inlet-envo-00000475.html","inlet"]],"b":[["TED%3AAF-Q164W9-F1-model_v4_TED02","TED highly-symmetric fold AF-Q164W9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:378543","l":"Tumebacillus permanentifrigoris","na":1,"nb":1,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["TED%3AAF-A0A316DIT3-F1-model_v4_TED01","TED novel fold AF-A0A316DIT3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:381754","l":"Pseudomonas paraeruginosa PA7","na":1,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["Pfam%3APF05985","Ethanolamine ammonia-lyase light chain (EutC)"]]},{"id":"NCBITaxon:38301","l":"Corynebacterium minutissimum","na":1,"nb":1,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["TED%3AAF-A0A376D050-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A376D050-F1-model_v4_TED01"]]},{"id":"NCBITaxon:38304","l":"Corynebacterium tuberculostearicum","na":1,"nb":1,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["TED%3AAF-A0A7U0H937-F1-model_v4_TED01","TED novel fold AF-A0A7U0H937-F1-model_v4_TED01"]]},{"id":"NCBITaxon:384602","l":"Micrococcus flavus","na":1,"nb":1,"a":[["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["TED%3AAF-A0A7W7PAI2-F1-model_v4_TED01","TED novel fold AF-A0A7W7PAI2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:384765","l":"Roseibium aggregatum IAM 12614","na":1,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["Pfam%3APF04199","Putative cyclase"]]},{"id":"NCBITaxon:388396","l":"Aliivibrio fischeri MJ11","na":1,"nb":1,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["Pfam%3APF21868","GlcNAc-binding protein A, third domain"]]},{"id":"NCBITaxon:391038","l":"Paraburkholderia phymatum STM815","na":1,"nb":1,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["PROSITE%3APS00921","Nitrilases / cyanide hydratase active site signature"]]},{"id":"NCBITaxon:391904","l":"","na":1,"nb":1,"a":[["breast-bto-0000149.html","breast"]],"b":[["Pfam%3APF25528","Domain of unknown function (DUF7917)"]]},{"id":"NCBITaxon:392015","l":"Paenalicyclobacillus macrosporangiidus","na":1,"nb":1,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["TED%3AAF-A0A1I7LHN3-F1-model_v4_TED02","TED novel fold AF-A0A1I7LHN3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:393595","l":"Alcanivorax borkumensis SK2","na":1,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["TED%3AAF-Q0VNH7-F1-model_v4_TED01","TED highly-symmetric fold AF-Q0VNH7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:394935","l":"Chromobacterium haemolyticum","na":1,"nb":1,"a":[["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["TED%3AAF-A0A1W0CCE1-F1-model_v4_TED01","TED novel fold AF-A0A1W0CCE1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["Pfam%3APF13282","Domain of unknown function (DUF4070)"]]},{"id":"NCBITaxon:395963","l":"Beijerinckia indica subsp. indica ATCC 9039","na":1,"nb":1,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["TED%3AAF-B2IFK3-F1-model_v4_TED03","TED novel fold AF-B2IFK3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:39650","l":"Cellvibrio mixtus","na":1,"nb":1,"a":[["compost-envo-00002170.html","compost"]],"b":[["TED%3AAF-A0A266QDL6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A266QDL6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:399549","l":"Metallosphaera sedula DSM 5348","na":1,"nb":1,"a":[["solfatara-envo-00000217.html","solfatara"]],"b":[["Pfam%3APF18195","GatD N-terminal domain"]]},{"id":"NCBITaxon:399579","l":"Thermogymnomonas acidicola","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["TED%3AAF-A0A830FZ95-F1-model_v4_TED01","TED novel fold AF-A0A830FZ95-F1-model_v4_TED01"]]},{"id":"NCBITaxon:40041","l":"Streptococcus equi subsp. zooepidemicus","na":1,"nb":1,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["Pfam%3APF02388","FemAB family"]]},{"id":"NCBITaxon:40215","l":"Acinetobacter junii","na":1,"nb":1,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["TED%3AAF-A0A8B4RWB2-F1-model_v4_TED01","TED novel fold AF-A0A8B4RWB2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:403833","l":"Petrotoga mobilis SJ95","na":1,"nb":1,"a":[["oil-envo-00002985.html","oil"]],"b":[["Pfam%3APF19328","2,4-diaminopentanoate dehydrogenase C-terminal domain"]]},{"id":"NCBITaxon:405440","l":"Xylella fastidiosa M12","na":1,"nb":1,"a":[["valley-envo-00000100.html","valley"]],"b":[["Pfam%3APF04977","Septum formation initiator"]]},{"id":"NCBITaxon:411154","l":"Christiangramia forsetii KT0803","na":1,"nb":1,"a":[["joint-bto-0001686.html","joint"]],"b":[["Pfam%3APF14109","GldH lipoprotein"]]},{"id":"NCBITaxon:411684","l":"Hoeflea phototrophica DFL-43","na":1,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["TED%3AAF-A9D4N0-F1-model_v4_TED02","TED novel fold AF-A9D4N0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:414684","l":"Rhodospirillum centenum SW","na":1,"nb":1,"a":[["cyst-bto-0000320.html","cyst"]],"b":[["Pfam%3APF27469","ATP synthase epsilon chain C-terminal domain"]]},{"id":"NCBITaxon:420953","l":"Paraburkholderia megapolitana","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["proteintraitsmech%3AELIFE109154_GrbD","GrbD-type graminine biosynthesis protein family"]]},{"id":"NCBITaxon:422289","l":"Beggiatoa sp. PS","na":1,"nb":1,"a":[["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-A7BS81-F1-model_v4_TED01","TED highly-symmetric fold AF-A7BS81-F1-model_v4_TED01"]]},{"id":"NCBITaxon:427317","l":"Saccharolobus islandicus M.14.25","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["Pfam%3APF05165","GTP cyclohydrolase III"]]},{"id":"NCBITaxon:436308","l":"Nitrosopumilus maritimus SCM1","na":1,"nb":1,"a":[["aquarium-envo-00002196.html","aquarium"]],"b":[["Pfam%3APF19045","Ligase-CoA domain"]]},{"id":"NCBITaxon:436717","l":"Acinetobacter oleivorans DR1","na":1,"nb":1,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["TED%3AAF-D8JEH7-F1-model_v4_TED03","TED novel fold AF-D8JEH7-F1-model_v4_TED03"]]},{"id":"NCBITaxon:43675","l":"Rothia mucilaginosa","na":1,"nb":1,"a":[["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["TED%3AAF-A0A291DCT6-F1-model_v4_TED03","TED novel fold AF-A0A291DCT6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:43677","l":"Promicromonospora citrea","na":1,"nb":1,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["TED%3AAF-A0A7Y2QR62-F1-model_v4_TED01","TED novel fold AF-A0A7Y2QR62-F1-model_v4_TED01"]]},{"id":"NCBITaxon:43768","l":"Corynebacterium matruchotii","na":1,"nb":1,"a":[["archeological-site-envo-00000564.html","archeological site"]],"b":[["TED%3AAF-A0A6H9XP04-F1-model_v4_TED01","TED novel fold AF-A0A6H9XP04-F1-model_v4_TED01"]]},{"id":"NCBITaxon:44008","l":"Enterococcus cecorum","na":1,"nb":1,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["TED%3AAF-A0A200I1A2-F1-model_v4_TED01","TED novel fold AF-A0A200I1A2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:446469","l":"Sanguibacter keddieii DSM 10542","na":1,"nb":1,"a":[["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-D1BCE8-F1-model_v4_TED01","TED highly-symmetric fold AF-D1BCE8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:447217","l":"Anaeromyxobacter sp. K","na":1,"nb":1,"a":[["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-B4UAH6-F1-model_v4_TED03","TED highly-symmetric fold AF-B4UAH6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:451","l":"Legionella micdadei","na":1,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"]],"b":[["TED%3AAF-A0A098GE29-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A098GE29-F1-model_v4_TED01"]]},{"id":"NCBITaxon:45243","l":"Capnocytophaga haemolytica","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["TED%3AAF-A0A0X8JC19-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0X8JC19-F1-model_v4_TED01"]]},{"id":"NCBITaxon:453","l":"Legionella feeleii","na":1,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["TED%3AAF-A0A378IZL6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A378IZL6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:454006","l":"Epilithonimonas hungarica","na":1,"nb":1,"a":[["oil-envo-00002985.html","oil"]],"b":[["TED%3AAF-A0A1G7J6K0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1G7J6K0-F1-model_v4_TED03"]]},{"id":"NCBITaxon:455488","l":"Anaeromyxobacter dehalogenans 2CP-1","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["TED%3AAF-B8J8V7-F1-model_v4_TED01","TED novel fold AF-B8J8V7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:4558","l":"Sorghum bicolor","na":1,"nb":1,"a":[["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["TED%3AAF-A0A1W0W5T3-F1-model_v4_TED02","TED novel fold AF-A0A1W0W5T3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:457570","l":"Natranaerobius thermophilus JW/NM-WN-LF","na":1,"nb":1,"a":[["wadi-envo-00000031.html","wadi"]],"b":[["TED%3AAF-B2A1S1-F1-model_v4_TED02","TED highly-symmetric fold AF-B2A1S1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:459529","l":"Sphingobacterium siyangense","na":1,"nb":1,"a":[["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["TED%3AAF-A0A420FHV4-F1-model_v4_TED01","TED novel fold AF-A0A420FHV4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:46224","l":"Heyndrickxia sporothermodurans","na":1,"nb":1,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["TED%3AAF-A0A2T6EYG9-F1-model_v4_TED03","TED novel fold AF-A0A2T6EYG9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:463","l":"Fluoribacter dumoffii","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["TED%3AAF-A0A377G6U6-F1-model_v4_TED01","TED novel fold AF-A0A377G6U6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:463301","l":"Halomonas korlensis","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["TED%3AAF-A0A1I7FWW8-F1-model_v4_TED01","TED novel fold AF-A0A1I7FWW8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:469616","l":"Fusobacterium mortiferum ATCC 9817","na":1,"nb":1,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["TED%3AAF-C3WAL7-F1-model_v4_TED02","TED novel fold AF-C3WAL7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:471514","l":"","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["TED%3AAF-A0A0N8PN50-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0N8PN50-F1-model_v4_TED03"]]},{"id":"NCBITaxon:474949","l":"Granulicella aggregans","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A7W7ZBP1-F1-model_v4_TED02","TED novel fold AF-A0A7W7ZBP1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:478","l":"Moraxella nonliquefaciens","na":1,"nb":1,"a":[["disease-habitatmech-bacdive-c659c7e939.html","Disease"]],"b":[["TED%3AAF-A0A1B8PJM7-F1-model_v4_TED01","TED novel fold AF-A0A1B8PJM7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:481877","l":"","na":1,"nb":1,"a":[["microsporidian-bto-0003132.html","microsporidian"]],"b":[["TED%3AAF-B7XL67-F1-model_v4_TED01","TED novel fold AF-B7XL67-F1-model_v4_TED01"]]},{"id":"NCBITaxon:485916","l":"Desulfofarcimen acetoxidans DSM 771","na":1,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"]],"b":[["TED%3AAF-C8W2Y9-F1-model_v4_TED01","TED highly-symmetric fold AF-C8W2Y9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:488447","l":"Burkholderia contaminans","na":1,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["TED%3AAF-A0A3N8RI51-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N8RI51-F1-model_v4_TED01"]]},{"id":"NCBITaxon:490899","l":"Desulfurococcus amylolyticus 1221n","na":1,"nb":1,"a":[["shoreline-envo-00000486.html","shoreline"]],"b":[["TED%3AAF-B8D4A7-F1-model_v4_TED01","TED novel fold AF-B8D4A7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:491207","l":"Chryseobacterium oleae","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["TED%3AAF-A0A1I5BFN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5BFN6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:491952","l":"Marinomonas posidonica IVIA-Po-181","na":1,"nb":1,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["proteintraitsmech%3AELIFE109154_SalSyn","Metallophore-associated bifunctional salicylate synthase family"]]},{"id":"NCBITaxon:508767","l":"Clostridium botulinum E3 str. Alaska E43","na":1,"nb":1,"a":[["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["Pfam%3APF04029","2-phosphosulpholactate phosphatase"]]},{"id":"NCBITaxon:508771","l":"Toxoplasma gondii (strain ATCC 50611 / Me49)","na":1,"nb":1,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"]],"b":[["PROSITE%3APS01005","Formate and nitrite transporters signature 1"]]},{"id":"NCBITaxon:52771","l":"Actinomyces howellii","na":1,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["TED%3AAF-A0A3S4R0T4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S4R0T4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:535722","l":"","na":1,"nb":1,"a":[["mountain-pass-envo-00000084.html","mountain pass"]],"b":[["TED%3AAF-E4V3G8-F1-model_v4_TED01","TED highly-symmetric fold AF-E4V3G8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:544406","l":"Helicobacter pylori B128","na":1,"nb":1,"a":[["duodenum-bto-0000365.html","duodenum"]],"b":[["PROSITE%3APS01292","Uncharacterized protein family UPF0036 signature"]]},{"id":"NCBITaxon:544580","l":"Actinomyces oris","na":1,"nb":1,"a":[["archeological-site-envo-00000564.html","archeological site"]],"b":[["TED%3AAF-A0A1Q8WF60-F1-model_v4_TED01","TED novel fold AF-A0A1Q8WF60-F1-model_v4_TED01"]]},{"id":"NCBITaxon:54736","l":"Salmonella bongori","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["TED%3AAF-A0A698W123-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A698W123-F1-model_v4_TED02"]]},{"id":"NCBITaxon:553480","l":"Photorhabdus asymbiotica subsp. asymbiotica ATCC 43949","na":1,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"]],"b":[["Pfam%3APF06804","Outer membrane protein assembly factor BamC-like C-terminal domain"]]},{"id":"NCBITaxon:554290","l":"Salmonella enterica subsp. enterica serovar Paratyphi A str. AKU_12601","na":1,"nb":1,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["Pfam%3APF08254","Threonine leader peptide"]]},{"id":"NCBITaxon:558173","l":"Corynebacterium doosanense CAU 212 = DSM 45436","na":1,"nb":1,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["TED%3AAF-A0A097IJJ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A097IJJ3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:563008","l":"Segatella oris C735","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["TED%3AAF-D7NFV4-F1-model_v4_TED01","TED novel fold AF-D7NFV4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:566549","l":"Corynebacterium matruchotii ATCC 33806","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["TED%3AAF-C0E5R2-F1-model_v4_TED02","TED highly-symmetric fold AF-C0E5R2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:568106","l":"Marinobacterium lutimaris","na":1,"nb":1,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["TED%3AAF-A0A1H5Y6J0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1H5Y6J0-F1-model_v4_TED04"]]},{"id":"NCBITaxon:569860","l":"Methylovirgula ligni","na":1,"nb":1,"a":[["wood-envo-00002040.html","wood"]],"b":[["TED%3AAF-A0A3D9Z4S9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D9Z4S9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:570156","l":"Pseudoalteromonas lipolytica","na":1,"nb":1,"a":[["leaf-lamina-bto-0000719.html","leaf lamina"]],"b":[["TED%3AAF-A0A1I7CGN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I7CGN6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:573065","l":"Asticcacaulis excentricus CB 48","na":1,"nb":1,"a":[["pond-envo-00000033.html","pond"]],"b":[["TED%3AAF-E8RUW8-F1-model_v4_TED01","TED novel fold AF-E8RUW8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:573737","l":"Pandoraea oxalativorans","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["TED%3AAF-A0A0G3IC85-F1-model_v4_TED03","TED novel fold AF-A0A0G3IC85-F1-model_v4_TED03"]]},{"id":"NCBITaxon:582855","l":"Streptomyces haliclonae","na":1,"nb":1,"a":[["shoreline-envo-00000486.html","shoreline"]],"b":[["TED%3AAF-A0A7W7BYP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W7BYP7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:585054","l":"Escherichia fergusonii ATCC 35469","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Pfam%3APF08364","Bacterial translation initiation factor IF-2 associated region"]]},{"id":"NCBITaxon:5866","l":"Babesia bigemina","na":1,"nb":1,"a":[["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["TED%3AAF-A0A061D3T3-F1-model_v4_TED01","TED novel fold AF-A0A061D3T3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:589924","l":"Ferroglobus placidus DSM 10642","na":1,"nb":1,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["TED%3AAF-D3S1W1-F1-model_v4_TED01","TED novel fold AF-D3S1W1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:592015","l":"Acetomicrobium hydrogeniformans ATCC BAA-1850","na":1,"nb":1,"a":[["village-biome-envo-01000246.html","village biome"]],"b":[["TED%3AAF-A0A0T5X7S6-F1-model_v4_TED02","TED novel fold AF-A0A0T5X7S6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:59203","l":"Salmonella enterica subsp. arizonae","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["TED%3AAF-A0A3S4K1T2-F1-model_v4_TED01","TED novel fold AF-A0A3S4K1T2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:604330","l":"Parafannyhessea umbonata","na":1,"nb":1,"a":[["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"]],"b":[["TED%3AAF-A0A6N7XAR1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N7XAR1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:60894","l":"Saccharopolyspora spinosa","na":1,"nb":1,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF03559","NDP-hexose 2,3-dehydratase"]]},{"id":"NCBITaxon:610130","l":"[Clostridium] saccharolyticum WM1","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["TED%3AAF-D9RA58-F1-model_v4_TED03","TED highly-symmetric fold AF-D9RA58-F1-model_v4_TED03"]]},{"id":"NCBITaxon:61645","l":"Enterobacter asburiae","na":1,"nb":1,"a":[["bone-marrow-bto-0000141.html","bone marrow"]],"b":[["TED%3AAF-A0A8B3U934-F1-model_v4_TED02","TED novel fold AF-A0A8B3U934-F1-model_v4_TED02"]]},{"id":"NCBITaxon:629741","l":"Kingella oralis ATCC 51147","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["TED%3AAF-C4GEH4-F1-model_v4_TED01","TED highly-symmetric fold AF-C4GEH4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:634436","l":"Marisediminitalea aggregata","na":1,"nb":1,"a":[["mangrove-biome-envo-01000181.html","mangrove biome"]],"b":[["TED%3AAF-A0A1M5JV92-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M5JV92-F1-model_v4_TED01"]]},{"id":"NCBITaxon:634500","l":"Erwinia billingiae Eb661","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["PROSITE%3APS01090","TatD deoxyribonuclease family signature 2"]]},{"id":"NCBITaxon:636","l":"Edwardsiella tarda","na":1,"nb":1,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["Pfam%3APF05791","Bacillus haemolytic enterotoxin (HBL)"]]},{"id":"NCBITaxon:638300","l":"Cardiobacterium hominis ATCC 15826","na":1,"nb":1,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["TED%3AAF-C8NBX0-F1-model_v4_TED02","TED novel fold AF-C8NBX0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:639283","l":"Ancylobacter novellus DSM 506","na":1,"nb":1,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["TED%3AAF-D6ZYI9-F1-model_v4_TED01","TED highly-symmetric fold AF-D6ZYI9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:641491","l":"Pseudodesulfovibrio mercurii","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["Pfam%3APF03599","CO dehydrogenase/acetyl-CoA synthase delta subunit"]]},{"id":"NCBITaxon:645463","l":"Clostridioides difficile R20291","na":1,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["Pfam%3APF04392","ABC transporter substrate binding protein"]]},{"id":"NCBITaxon:649760","l":"Segatella oris F0302","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["TED%3AAF-D1QV56-F1-model_v4_TED02","TED novel fold AF-D1QV56-F1-model_v4_TED02"]]},{"id":"NCBITaxon:65","l":"Herpetosiphon aurantiacus","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["Pfam%3APF09520","Type II restriction endonuclease, HinfI"]]},{"id":"NCBITaxon:652103","l":"Rhodopseudomonas palustris DX-1","na":1,"nb":1,"a":[["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-E6VQ23-F1-model_v4_TED02","TED novel fold AF-E6VQ23-F1-model_v4_TED02"]]},{"id":"NCBITaxon:656914","l":"Desulfonispora thiosulfatigenes DSM 11270","na":1,"nb":1,"a":[["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["TED%3AAF-A0A1W1UJ66-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W1UJ66-F1-model_v4_TED01"]]},{"id":"NCBITaxon:659425","l":"Thermoclostridium caenicola","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["TED%3AAF-A0A1M6H7B8-F1-model_v4_TED02","TED novel fold AF-A0A1M6H7B8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:663917","l":"Geobacter sulfurreducens KN400","na":1,"nb":1,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF13435","Cytochrome c554 and c-prime"]]},{"id":"NCBITaxon:679191","l":"Prevotella amnii CRIS 21A-A","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["TED%3AAF-E1GW40-F1-model_v4_TED02","TED highly-symmetric fold AF-E1GW40-F1-model_v4_TED02"]]},{"id":"NCBITaxon:679937","l":"Bacteroides coprosuis DSM 18011","na":1,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"]],"b":[["TED%3AAF-F3ZUW4-F1-model_v4_TED02","TED novel fold AF-F3ZUW4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:688269","l":"Pseudothermotoga thermarum DSM 5069","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["TED%3AAF-F7YY41-F1-model_v4_TED02","TED highly-symmetric fold AF-F7YY41-F1-model_v4_TED02"]]},{"id":"NCBITaxon:688867","l":"Ohtaekwangia koreensis","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["TED%3AAF-A0A1T5MFB7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1T5MFB7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:693661","l":"Archaeoglobus veneficus SNP6","na":1,"nb":1,"a":[["black-smoker-envo-00000218.html","black smoker"]],"b":[["TED%3AAF-F2KRD1-F1-model_v4_TED02","TED highly-symmetric fold AF-F2KRD1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:69392","l":"Stenotrophomonas sp.","na":1,"nb":1,"a":[["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["TED%3AAF-A0A6N8APF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8APF4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:694433","l":"Saprospira grandis DSM 2844","na":1,"nb":1,"a":[["carapace-bto-0001701.html","carapace"]],"b":[["TED%3AAF-J0P380-F1-model_v4_TED01","TED highly-symmetric fold AF-J0P380-F1-model_v4_TED01"]]},{"id":"NCBITaxon:69974","l":"Mesorhizobium plurifarium","na":1,"nb":1,"a":[["hair-follicle-outer-root-sheath-bto-0003969.html","hair follicle outer root sheath"]],"b":[["PROSITE%3APS01349","Nodulation protein nodA signature"]]},{"id":"NCBITaxon:702459","l":"Bifidobacterium bifidum PRL2010","na":1,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["TED%3AAF-A0A0H3E8C8-F1-model_v4_TED01","TED novel fold AF-A0A0H3E8C8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:706587","l":"Desulfomonile tiedjei DSM 6799","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["TED%3AAF-I4CB34-F1-model_v4_TED01","TED highly-symmetric fold AF-I4CB34-F1-model_v4_TED01"]]},{"id":"NCBITaxon:722","l":"Actinobacillus seminis","na":1,"nb":1,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"]],"b":[["TED%3AAF-A0A263HFT1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A263HFT1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:7222","l":"Drosophila grimshawi","na":1,"nb":1,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"]],"b":[["TED%3AAF-B4K2M8-F1-model_v4_TED01","TED novel fold AF-B4K2M8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["TED%3AAF-A0A5C7XIK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7XIK2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:726","l":"Haemophilus haemolyticus","na":1,"nb":1,"a":[["trunk-uberon-0002100.html","trunk"]],"b":[["TED%3AAF-A0A1B8PEV3-F1-model_v4_TED01","TED novel fold AF-A0A1B8PEV3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:742013","l":"Delftia sp. Cs1-4","na":1,"nb":1,"a":[["waterfall-envo-00000040.html","waterfall"]],"b":[["TED%3AAF-F6AQI2-F1-model_v4_TED01","TED highly-symmetric fold AF-F6AQI2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:74547","l":"Prochlorococcus marinus str. MIT 9313","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Pfam%3APF11266","Long-chain fatty aldehyde decarbonylase"]]},{"id":"NCBITaxon:74969","l":"Ferroplasma acidiphilum","na":1,"nb":1,"a":[["factory-envo-01000536.html","factory"]],"b":[["TED%3AAF-A0A7K4FNL3-F1-model_v4_TED01","TED novel fold AF-A0A7K4FNL3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:755731","l":"Clostridium sp. BNL1100","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["TED%3AAF-H2JEL4-F1-model_v4_TED02","TED highly-symmetric fold AF-H2JEL4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:758","l":"Rodentibacter pneumotropicus","na":1,"nb":1,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["TED%3AAF-A0A6L9GQA8-F1-model_v4_TED01","TED novel fold AF-A0A6L9GQA8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:758847","l":"Leptospira santarosai serovar Shermani str. LT 821","na":1,"nb":1,"a":[["renal-tubule-bto-0000343.html","renal tubule"]],"b":[["TED%3AAF-A0A097ES00-F1-model_v4_TED01","TED novel fold AF-A0A097ES00-F1-model_v4_TED01"]]},{"id":"NCBITaxon:761659","l":"Salinibacter ruber M8","na":1,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["TED%3AAF-D5H5E0-F1-model_v4_TED03","TED novel fold AF-D5H5E0-F1-model_v4_TED03"]]},{"id":"NCBITaxon:768066","l":"Halomonas elongata DSM 2581","na":1,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["Pfam%3APF06339","Ectoine synthase"]]},{"id":"NCBITaxon:795797","l":"Halalkalicoccus jeotgali B3","na":1,"nb":1,"a":[["food-product-foodon-00001002.html","food product"]],"b":[["TED%3AAF-D8JCM3-F1-model_v4_TED01","TED highly-symmetric fold AF-D8JCM3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:796937","l":"Peptoanaerobacter stomatis","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["TED%3AAF-G9XC71-F1-model_v4_TED01","TED novel fold AF-G9XC71-F1-model_v4_TED01"]]},{"id":"NCBITaxon:797292","l":"Sphingobacterium alimentarium","na":1,"nb":1,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["TED%3AAF-A0A4R3VZ52-F1-model_v4_TED08","TED novel fold AF-A0A4R3VZ52-F1-model_v4_TED08"]]},{"id":"NCBITaxon:79967","l":"Erwinia pyrifoliae","na":1,"nb":1,"a":[["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["Pfam%3APF09589","HrpA pilus formation protein"]]},{"id":"NCBITaxon:82380","l":"Microbacterium oxydans","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["TED%3AAF-A0A4Y4GD74-F1-model_v4_TED02","TED novel fold AF-A0A4Y4GD74-F1-model_v4_TED02"]]},{"id":"NCBITaxon:839","l":"Xylanibacter ruminicola","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["TED%3AAF-A0A1M7DCP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M7DCP8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:85336","l":"Rothia nasimurium","na":1,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"]],"b":[["proteintraitsmech%3AELIFE109154_EntC","EntC-type catechol biosynthesis isochorismate synthase family"]]},{"id":"NCBITaxon:85831","l":"Bacteroides acidifaciens","na":1,"nb":1,"a":[["colon-bto-0000269.html","colon"]],"b":[["TED%3AAF-A0A7K3MGB4-F1-model_v4_TED01","TED novel fold AF-A0A7K3MGB4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:861865","l":"Edaphosphingomonas laterariae","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["TED%3AAF-A0A239BGP1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A239BGP1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:863372","l":"Herbaspirillum huttiense","na":1,"nb":1,"a":[["factory-envo-01000536.html","factory"]],"b":[["TED%3AAF-A0A4P7ADR5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P7ADR5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:863522","l":"Bryocella elongata","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A1H5ZBZ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H5ZBZ9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:865937","l":"Gillisia limnaea DSM 15749","na":1,"nb":1,"a":[["dry-valley-envo-00000128.html","dry valley"]],"b":[["Pfam%3APF27061","Bacterial gasdermin-associated protease"]]},{"id":"NCBITaxon:866499","l":"Cloacibacillus evryensis DSM 19522","na":1,"nb":1,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["TED%3AAF-A0A010YSJ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A010YSJ4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:869210","l":"Marinithermus hydrothermalis DSM 14884","na":1,"nb":1,"a":[["seamount-envo-00000264.html","seamount"]],"b":[["TED%3AAF-F2NQ34-F1-model_v4_TED01","TED novel fold AF-F2NQ34-F1-model_v4_TED01"]]},{"id":"NCBITaxon:883","l":"Nitratidesulfovibrio vulgaris str. 'Miyazaki F'","na":1,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"]],"b":[["TED%3AAF-B8DPA3-F1-model_v4_TED01","TED novel fold AF-B8DPA3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:888743","l":"Prevotella multiformis DSM 16608","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["TED%3AAF-F0F5W8-F1-model_v4_TED02","TED novel fold AF-F0F5W8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:926690","l":"Haloplanus natans DSM 17983","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["Pfam%3APF28161","Fusexin 1"]]},{"id":"NCBITaxon:930943","l":"","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["TED%3AAF-F0NJI0-F1-model_v4_TED01","TED novel fold AF-F0NJI0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:93222","l":"Pandoraea sputorum","na":1,"nb":1,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"]],"b":[["TED%3AAF-A0A5E5BHU5-F1-model_v4_TED02","TED novel fold AF-A0A5E5BHU5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:936138","l":"Phorcysia thermohydrogeniphila","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["TED%3AAF-A0A4V2PDB0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A4V2PDB0-F1-model_v4_TED04"]]},{"id":"NCBITaxon:9483","l":"Callithrix jacchus","na":1,"nb":1,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["Pfam%3APF21049","Cilia- and flagella-associated protein 69, ARM repeat"]]},{"id":"NCBITaxon:94868","l":"Lacrimispora algidixylanolytica","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["TED%3AAF-A0A419SY83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A419SY83-F1-model_v4_TED01"]]},{"id":"NCBITaxon:95485","l":"Burkholderia stabilis","na":1,"nb":1,"a":[["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["TED%3AAF-A0A4V1PSL6-F1-model_v4_TED02","TED novel fold AF-A0A4V1PSL6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:980271","l":"Aporhodopirellula rubra","na":1,"nb":1,"a":[["epibiont-habitatmech-bacdive-f4eb470a03.html","Epibiont"]],"b":[["TED%3AAF-A0A7W5H7H8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7W5H7H8-F1-model_v4_TED03"]]},{"id":"NCBITaxon:993414","l":"Naumannella halotolerans","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["TED%3AAF-A0A4R7J3W9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R7J3W9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:999552","l":"Leisingera methylohalidivorans DSM 14336","na":1,"nb":1,"a":[["marine-neritic-zone-envo-00000206.html","marine neritic zone"]],"b":[["TED%3AAF-V9VZA3-F1-model_v4_TED02","TED novel fold AF-V9VZA3-F1-model_v4_TED02"]]}]} \ No newline at end of file +{"a":"HabitatMech","b":"ProteinTraitsMech","base":{"HabitatMech":"https://culturebotai.github.io/HabitatMech/pages/habitats/","ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record="},"n":1250,"by":{"NCBITaxon":1234,"UBERON":12,"CHEBI":2,"GO":2},"terms":[{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":40,"nb":46,"a":[["liquid-water-envo-00002006.html","liquid water"],["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["laboratory-facility-envo-01001406.html","laboratory facility"],["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["biofilm-bto-0002690.html","biofilm"]],"b":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF13166","AAA domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF27533","CapK C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":36,"nb":145,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["bay-envo-00000032.html","bay"],["freshwater-biome-envo-00000873.html","freshwater biome"],["liquid-water-envo-00002006.html","liquid water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["IDPO%3A0000033","flexible linker"],["IDPO%3A0000014","order to disorder"],["IDPO%3A0000004","pre-molten globule"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"]]},{"id":"NCBITaxon:1869227","l":"bacterium","na":26,"nb":57,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["marine-water-body-envo-00001999.html","marine water body"],["watercourse-envo-00000029.html","watercourse"],["laboratory-facility-envo-01001406.html","laboratory facility"]],"b":[["TED%3AAF-A0A2D6E3L3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D6E3L3-F1-model_v4_TED02"],["TED%3AAF-A0A2D6IMF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D6IMF4-F1-model_v4_TED01"],["TED%3AAF-A0A3N5GA95-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3N5GA95-F1-model_v4_TED02"],["TED%3AAF-A0A3N5I065-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N5I065-F1-model_v4_TED01"],["TED%3AAF-A0A496UYV5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A496UYV5-F1-model_v4_TED02"],["TED%3AAF-A0A4Q3U385-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q3U385-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":27,"nb":23,"a":[["small-river-biome-envo-00000890.html","small river biome"],["factory-envo-01000536.html","factory"],["organic-waste-material-envo-00002873.html","organic waste material"],["leaf-po-0025034.html","leaf"],["milk-uberon-0001913.html","milk"],["rhizosphere-envo-00005801.html","rhizosphere"]],"b":[["Pfam%3APF08878","HamA"],["Pfam%3APF05791","Bacillus haemolytic enterotoxin (HBL)"],["Pfam%3APF10803","Spore germination GerPB"],["Pfam%3APF10737","Spore germination protein GerPC"],["Pfam%3APF10970","Spore germination protein GerPE"],["Pfam%3APF07486","Cell Wall Hydrolase"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":28,"nb":19,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["liquid-water-envo-00002006.html","liquid water"],["watercourse-envo-00000029.html","watercourse"],["compost-envo-00002170.html","compost"],["hospital-envo-00002173.html","hospital"],["human-construction-envo-00000070.html","human construction"]],"b":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"],["Pfam%3APF18173","Bacterial HORMA domain 2"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["Pfam%3APF27322","Cap8 HORMA domain"],["Pfam%3APF01526","Tn3 transposase DDE domain"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":18,"nb":16,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["Pfam%3APF16822","SGNH hydrolase-like domain, acetyltransferase AlgX"],["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"],["Pfam%3APF11182","Alginate O-acetyl transferase AlgF"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF27129","Functional amyloid protein FapB/FapC family"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":13,"nb":30,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["neutrophil-bto-0000130.html","neutrophil"],["rectum-bto-0001158.html","rectum"],["spleen-bto-0001281.html","spleen"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["Pfam%3APF08787","Alginate lyase"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF08218","Citrate lyase ligase C-terminal domain"],["Pfam%3APF13727","CoA-binding domain"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["Pfam%3APF20714","DpiA-like helix-turn-helix domain"]]},{"id":"NCBITaxon:56","l":"Sorangium cellulosum","na":27,"nb":13,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["watercourse-envo-00000029.html","watercourse"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["TED%3AAF-A0A150SQB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A150SQB4-F1-model_v4_TED01"],["TED%3AAF-A0A2L0EP96-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0EP96-F1-model_v4_TED01"],["TED%3AAF-A0A2L0F1G5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0F1G5-F1-model_v4_TED01"],["TED%3AAF-A0A2L0F230-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0F230-F1-model_v4_TED01"],["TED%3AAF-A0A4P2R1W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P2R1W3-F1-model_v4_TED01"],["TED%3AAF-A0A150P579-F1-model_v4_TED02","TED novel fold AF-A0A150P579-F1-model_v4_TED02"]]},{"id":"NCBITaxon:54","l":"Nannocystis exedens","na":22,"nb":13,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["watercourse-envo-00000029.html","watercourse"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["TED%3AAF-A0A1I2A5Z6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2A5Z6-F1-model_v4_TED01"],["TED%3AAF-A0A1I2FM38-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I2FM38-F1-model_v4_TED02"],["TED%3AAF-A0A1I2H0F9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2H0F9-F1-model_v4_TED01"],["TED%3AAF-A0A831ZMD9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A831ZMD9-F1-model_v4_TED01"],["TED%3AAF-A0A1I1T6U3-F1-model_v4_TED01","TED novel fold AF-A0A1I1T6U3-F1-model_v4_TED01"],["TED%3AAF-A0A1I1XLT5-F1-model_v4_TED02","TED novel fold AF-A0A1I1XLT5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":11,"nb":20,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["resting-cell-bto-0001170.html","resting cell"],["seedling-bto-0001228.html","seedling"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Pfam%3APF14535","AMP-binding enzyme C-terminal domain"],["Pfam%3APF13442","Cytochrome C oxidase, cbb3-type, subunit III"],["Pfam%3APF22247","Catechol 2,3-dioxygenase-like N-terminal domain"],["Pfam%3APF25371","Domain of unknown function (DUF7884)"],["Pfam%3APF19301","LigXa C-terminal domain like"],["Pfam%3APF12729","Four helix bundle sensory module for signal transduction"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":10,"nb":15,"a":[["anther-bto-0000079.html","anther"],["epithelial-cell-bto-0000414.html","epithelial cell"],["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["Pfam%3APF14562","Restriction endonuclease BglI"],["Pfam%3APF09195","Restriction endonuclease BglII/BglIII"],["Pfam%3APF09208","Restriction endonuclease MspI"]]},{"id":"NCBITaxon:10116","l":"Rattus norvegicus","na":9,"nb":1002,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["biotope-envo-00002036.html","biotope"],["farm-envo-00000078.html","farm"],["intestine-environment-envo-2100002.html","intestine environment"],["organic-material-envo-01000155.html","organic material"]],"b":[["IDPO%3A0000011","disorder to order"],["IDPO%3A0000030","entropic chain"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000033","flexible linker"],["IDPO%3A0000041","glycosylation display site"],["IDPO%3A0000003","molten globule"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":9,"nb":14,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["fresh-water-envo-00002011.html","fresh water"],["river-envo-00000022.html","river"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["Pfam%3APF03703","Bacterial PH domain"],["Pfam%3APF01322","Cytochrome C'"],["Pfam%3APF03139","Vanadium/alternative nitrogenase delta subunit"],["Pfam%3APF09527","Putative F0F1-ATPase subunit Ca2+/Mg2+ transporter"],["Pfam%3APF03270","Protein of unknown function, DUF269"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"]]},{"id":"NCBITaxon:39946","l":"Oryza sativa subsp. indica","na":13,"nb":9,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["eutrophic-water-envo-00002224.html","eutrophic water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["Pfam%3APF17538","DNA Binding Domain (C-terminal) Leafy/Floricaula"],["Pfam%3APF23703","DExH-box ATP-dependent RNA helicase DExH18, N-terminal"],["Pfam%3APF02496","ABA/WDS induced protein"],["Pfam%3APF06351","Allene oxide cyclase"],["Pfam%3APF02514","CobN/Magnesium Chelatase"],["Pfam%3APF05558","DREPP plasma membrane polypeptide"]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":12,"nb":9,"a":[["hospital-envo-00002173.html","hospital"],["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["epithelial-cell-bto-0000414.html","epithelial cell"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["meninx-bto-0000144.html","meninx"]],"b":[["Pfam%3APF19567","Capsular polysaccharide synthesis, CpsB/CapC"],["Pfam%3APF07501","G5 domain"],["Pfam%3APF13551","Winged helix-turn helix"],["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF03047","COMC family"],["Pfam%3APF04556","DpnII restriction endonuclease"]]},{"id":"NCBITaxon:10090","l":"Mus musculus","na":8,"nb":45870,"a":[["river-envo-00000022.html","river"],["animal-manure-envo-00003031.html","animal manure"],["biotope-envo-00002036.html","biotope"],["intestine-environment-envo-2100002.html","intestine environment"],["urban-biome-envo-01000249.html","urban biome"],["sediment-envo-00002007.html","sediment"]],"b":[["EC%3A1.1.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.1.98.-","With other, known, acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"]]},{"id":"NCBITaxon:1265","l":"Ruminococcus flavefaciens","na":29,"nb":8,"a":[["biofilm-envo-00002034.html","biofilm"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["TED%3AAF-A0A1H6I5C3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1H6I5C3-F1-model_v4_TED03"],["TED%3AAF-A0A1K2AQV3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1K2AQV3-F1-model_v4_TED01"],["TED%3AAF-A0A1M7IZN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M7IZN6-F1-model_v4_TED01"],["TED%3AAF-A0A1H6IY18-F1-model_v4_TED01","TED novel fold AF-A0A1H6IY18-F1-model_v4_TED01"],["TED%3AAF-A0A1K1WYY5-F1-model_v4_TED01","TED novel fold AF-A0A1K1WYY5-F1-model_v4_TED01"],["TED%3AAF-A0A1K2C3A7-F1-model_v4_TED01","TED novel fold AF-A0A1K2C3A7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":17,"nb":8,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["hospital-envo-00002173.html","hospital"],["egg-food-product-foodon-00001274.html","egg food product"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["Pfam%3APF01721","Class II bacteriocin"],["Pfam%3APF13700","Domain of unknown function (DUF4158)"],["Pfam%3APF07478","D-ala D-ala ligase C-terminus"],["Pfam%3APF01820","D-ala D-ala ligase N-terminus"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"],["PROSITE%3APS00843","D-alanine--D-alanine ligase signature 1"]]},{"id":"NCBITaxon:210","l":"Helicobacter pylori","na":8,"nb":9,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["hospital-envo-00002173.html","hospital"],["duodenum-bto-0000365.html","duodenum"],["gastric-juice-bto-0000501.html","gastric juice"],["gastric-mucosa-bto-0001308.html","gastric mucosa"],["gastric-ulcer-bto-0002990.html","gastric ulcer"]],"b":[["Pfam%3APF18025","Alpha-(1,3)-fucosyltransferase FucT N-terminal domain"],["Pfam%3APF18971","CagA protein"],["Pfam%3APF03507","CagA exotoxin phosphopeptide substrate mimic region"],["Pfam%3APF02691","Vacuolating cyotoxin beta-helical domain"],["TED%3AAF-A0A2T6UWI4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T6UWI4-F1-model_v4_TED01"],["TED%3AAF-A0A1Q9JB12-F1-model_v4_TED01","TED novel fold AF-A0A1Q9JB12-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":8,"nb":8,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["lab-synthesis-habitatmech-bacdive-0e92e77cd4.html","Lab-synthesis"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["oil-spill-envo-00002061.html","oil spill"],["temperate-envo-01000206.html","temperate"]],"b":[["Pfam%3APF01890","Cobalamin synthesis G C-terminus"],["Pfam%3APF11761","Cobalamin biosynthesis central region"],["Pfam%3APF11760","Cobalamin synthesis G N-terminal"],["Pfam%3APF02570","Precorrin-8X methylmutase"],["PROSITE%3APS00304","Small, acid-soluble spore proteins, alpha/beta type, signature 1"],["PROSITE%3APS00684","Small, acid-soluble spore proteins, alpha/beta type, signature 2"]]},{"id":"NCBITaxon:165179","l":"Segatella copri","na":7,"nb":13,"a":[["biofilm-envo-00002034.html","biofilm"],["juvenile-bto-0002168.html","juvenile"],["rumen-uberon-0007365.html","rumen"],["tongue-bto-0001385.html","tongue"],["vaginal-fluid-bto-0003084.html","vaginal fluid"],["animal-litter-envo-00002191.html","animal litter"]],"b":[["TED%3AAF-A0A3R6DW71-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3R6DW71-F1-model_v4_TED02"],["TED%3AAF-A0A3R6EGS2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R6EGS2-F1-model_v4_TED01"],["TED%3AAF-A0A5Q5FTM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Q5FTM4-F1-model_v4_TED01"],["TED%3AAF-A0A3R5WNG5-F1-model_v4_TED02","TED novel fold AF-A0A3R5WNG5-F1-model_v4_TED02"],["TED%3AAF-A0A3R5YKW9-F1-model_v4_TED01","TED novel fold AF-A0A3R5YKW9-F1-model_v4_TED01"],["TED%3AAF-A0A3R6FRY2-F1-model_v4_TED01","TED novel fold AF-A0A3R6FRY2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":10,"nb":7,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"]],"b":[["Pfam%3APF04439","Streptomycin adenylyltransferase"],["TED%3AAF-A0A696J2C3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A696J2C3-F1-model_v4_TED01"],["TED%3AAF-A0A825M6H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A825M6H4-F1-model_v4_TED01"],["TED%3AAF-A0A5T0SBG5-F1-model_v4_TED01","TED novel fold AF-A0A5T0SBG5-F1-model_v4_TED01"],["TED%3AAF-A0A698JVM3-F1-model_v4_TED03","TED novel fold AF-A0A698JVM3-F1-model_v4_TED03"],["TED%3AAF-A0A824N1N8-F1-model_v4_TED01","TED novel fold AF-A0A824N1N8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":7,"nb":10,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["pseudostem-bto-0005992.html","pseudostem"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["TED%3AAF-A0A5T2E4X7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5T2E4X7-F1-model_v4_TED01"],["TED%3AAF-A0A5Y4BP44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Y4BP44-F1-model_v4_TED01"],["TED%3AAF-A0A623P6F3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A623P6F3-F1-model_v4_TED02"],["TED%3AAF-A0A721BDS7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A721BDS7-F1-model_v4_TED02"],["TED%3AAF-A0A743P324-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A743P324-F1-model_v4_TED01"],["TED%3AAF-A0A757VWR3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A757VWR3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1314","l":"Streptococcus pyogenes","na":9,"nb":7,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"],["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"],["epithelial-cell-bto-0000414.html","epithelial cell"],["nasopharynx-bto-0000662.html","nasopharynx"],["skin-of-body-uberon-0002097.html","skin of body"],["throat-bto-0000828.html","throat"]],"b":[["Pfam%3APF13585","CHU_C Type IX secretion signal domain"],["Pfam%3APF24547","Domain of unknown function (DUF7601)"],["Pfam%3APF08998","Bacterial epsilon antitoxin"],["Pfam%3APF06280","Fn3-like domain"],["Pfam%3APF02274","Arginine deiminase"],["Pfam%3APF13734","Spi protease inhibitor"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":7,"nb":7,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["liquid-water-envo-00002006.html","liquid water"],["crown-gall-bto-0000303.html","crown gall"],["finger-bto-0004669.html","finger"],["resting-cell-bto-0001170.html","resting cell"],["water-scum-envo-00005794.html","water scum"]],"b":[["Pfam%3APF19443","DAHL domain"],["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"],["Pfam%3APF03524","Conjugal transfer protein"],["Pfam%3APF27439","Chaperone protein DnaJ C-terminal region"],["Pfam%3APF10907","Protein of unknown function (DUF2749)"],["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":19,"nb":6,"a":[["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["bone-element-uberon-0001474.html","bone element"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF10779","Haemolysin XhlA"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF08181","DegQ (SacQ) family"],["Pfam%3APF08057","Erythromycin resistance leader peptide"],["Pfam%3APF14867","Lantibiotic alpha"]]},{"id":"NCBITaxon:1409","l":"Bacillus sp. (in: firmicutes)","na":16,"nb":6,"a":[["biofilm-envo-00002034.html","biofilm"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["low-tide-zone-envo-00000319.html","low tide zone"],["organic-waste-material-envo-00002873.html","organic waste material"],["rhizosphere-envo-00005801.html","rhizosphere"],["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["Pfam%3APF02903","Alpha amylase, N-terminal ig-like domain"],["Pfam%3APF12123","PlyG Cell wall binding domain"],["Pfam%3APF24517","Carbohydrate-binding module family 96"],["Pfam%3APF07827","KNTase C-terminal domain"],["TED%3AAF-A0A3D0E1V5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D0E1V5-F1-model_v4_TED01"],["TED%3AAF-A0A3D5U4K3-F1-model_v4_TED01","TED novel fold AF-A0A3D5U4K3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:40324","l":"Stenotrophomonas maltophilia","na":15,"nb":6,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["catheter-device-ncit-c50344.html","Catheter Device"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["seedling-bto-0001228.html","seedling"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["TED%3AAF-A0A2U4H7T5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2U4H7T5-F1-model_v4_TED02"],["TED%3AAF-A0A2W6G5X3-F1-model_v4_TED01","TED novel fold AF-A0A2W6G5X3-F1-model_v4_TED01"],["TED%3AAF-A0A2W6IKS3-F1-model_v4_TED02","TED novel fold AF-A0A2W6IKS3-F1-model_v4_TED02"],["TED%3AAF-A0A7D0KRT5-F1-model_v4_TED03","TED novel fold AF-A0A7D0KRT5-F1-model_v4_TED03"],["TED%3AAF-A0A7T8PWR1-F1-model_v4_TED05","TED novel fold AF-A0A7T8PWR1-F1-model_v4_TED05"]]},{"id":"NCBITaxon:1397","l":"Niallia circulans","na":12,"nb":6,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["organic-waste-material-envo-00002873.html","organic waste material"],["rhizosphere-envo-00005801.html","rhizosphere"],["cultivated-environment-envo-01000311.html","cultivated environment"],["sludge-envo-00002044.html","sludge"]],"b":[["Pfam%3APF03423","Carbohydrate binding domain (family 25)"],["Pfam%3APF13199","Glycosyl hydrolase family 66"],["Pfam%3APF14399","Butirosin biosynthesis protein H, N-terminal"],["Pfam%3APF19634","Family of unknown function (DUF6137)"],["PROSITE%3APS60000","Chitosanases families 46 and 80 active sites signature"],["TED%3AAF-A0A0J1IR10-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0J1IR10-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1496","l":"Clostridioides difficile","na":6,"nb":10,"a":[["hospital-envo-00002173.html","hospital"],["feces-uberon-0001988.html","feces"],["leukocyte-bto-0000751.html","leukocyte"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["intestine-environment-envo-2100002.html","intestine environment"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["Pfam%3APF18671","4-Hydroxyphenylacetate decarboxylase subunit gamma N-terminal"],["Pfam%3APF00302","Chloramphenicol acetyltransferase"],["Pfam%3APF18524","High potential iron-sulfur protein like"],["Pfam%3APF06050","2-hydroxyglutaryl-CoA dehydratase, D-component"],["PROSITE%3APS00100","Chloramphenicol acetyltransferase active site"],["Pfam%3APF01473","Putative cell wall binding repeat"]]},{"id":"NCBITaxon:727","l":"Haemophilus influenzae","na":9,"nb":6,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["head-bto-0000282.html","head"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["Pfam%3APF06808","Tripartite ATP-independent periplasmic transporter, DctM component"],["Pfam%3APF04290","Tripartite ATP-independent periplasmic transporters, DctQ component"],["Pfam%3APF09226","Restriction endonuclease HincII"],["Pfam%3APF09520","Type II restriction endonuclease, HinfI"],["Pfam%3APF24077","Immunoglobulin A1 protease autotransporter domain 2"],["PROSITE%3APS01068","OmpA-like domain"]]},{"id":"NCBITaxon:1305","l":"Streptococcus sanguinis","na":6,"nb":7,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["throat-bto-0000828.html","throat"],["geographic-feature-envo-00000000.html","geographic feature"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Pfam%3APF09254","FokI, cleavage domain"],["Pfam%3APF02981","FokI, recognition domain, subdomain 1"],["Pfam%3APF02980","FokI, recognition domain, subdomain 2"],["Pfam%3APF07501","G5 domain"],["Pfam%3APF07581","The GLUG motif"],["TED%3AAF-A0A7H8V358-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H8V358-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1502","l":"Clostridium perfringens","na":7,"nb":6,"a":[["small-river-biome-envo-00000890.html","small river biome"],["animal-house-envo-00003040.html","animal house"],["ileum-bto-0000620.html","ileum"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["Pfam%3APF08307","Glycosyl hydrolase family 98 C-terminal domain"],["Pfam%3APF08306","Glycosyl hydrolase family 98"],["Pfam%3APF12645","Helix-turn-helix domain"],["Pfam%3APF03505","Clostridium enterotoxin"],["Pfam%3APF10960","BhlA holin family"],["TED%3AAF-A0A140GRT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A140GRT8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1510","l":"Thermoclostridium stercorarium","na":6,"nb":7,"a":[["small-river-biome-envo-00000890.html","small river biome"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"],["rock-envo-00001995.html","rock"],["sulfur-spring-envo-00000126.html","sulfur spring"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["Pfam%3APF07523","Bacterial Ig-like domain (group 3)"],["Pfam%3APF03442","Carbohydrate binding domain X2"],["Pfam%3APF00457","Glycosyl hydrolases family 11"],["Pfam%3APF03422","Carbohydrate binding module (family 6)"],["PROSITE%3APS00776","Glycosyl hydrolases family 11 (GH11) active site signature 1"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"]]},{"id":"NCBITaxon:1871047","l":"Chryseobacterium sp.","na":6,"nb":7,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["leaf-po-0025034.html","leaf"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["humid-habitatmech-bacdive-0fa0234f43.html","Humid"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["TED%3AAF-A0A2W6XQ62-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W6XQ62-F1-model_v4_TED01"],["TED%3AAF-A0A2W6YLD3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2W6YLD3-F1-model_v4_TED02"],["TED%3AAF-A0A5N7U1L3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5N7U1L3-F1-model_v4_TED01"],["TED%3AAF-A0A3D4JZX5-F1-model_v4_TED04","TED novel fold AF-A0A3D4JZX5-F1-model_v4_TED04"],["TED%3AAF-A0A3N7GZ20-F1-model_v4_TED01","TED novel fold AF-A0A3N7GZ20-F1-model_v4_TED01"],["TED%3AAF-A0A5N7YYR2-F1-model_v4_TED01","TED novel fold AF-A0A5N7YYR2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":16,"nb":5,"a":[["fresh-water-envo-00002011.html","fresh water"],["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"]],"b":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF02963","Restriction endonuclease EcoRI"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["PROSITE%3APS00974","Mannitol dehydrogenases signature"],["PROSITE%3APS00567","Phosphoribulokinase signature"]]},{"id":"NCBITaxon:1598","l":"Limosilactobacillus reuteri","na":14,"nb":5,"a":[["cecum-mucosa-bto-0000213.html","cecum mucosa"],["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["ileum-bto-0000620.html","ileum"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"]],"b":[["TED%3AAF-A0A6N1EMN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N1EMN7-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2V3C3-F1-model_v4_TED01","TED novel fold AF-A0A1Y2V3C3-F1-model_v4_TED01"],["TED%3AAF-A0A848BUA9-F1-model_v4_TED01","TED novel fold AF-A0A848BUA9-F1-model_v4_TED01"],["TED%3AAF-A0A855XJ18-F1-model_v4_TED01","TED novel fold AF-A0A855XJ18-F1-model_v4_TED01"],["TED%3AAF-Q6WUB1-F1-model_v4_TED03","TED novel fold AF-Q6WUB1-F1-model_v4_TED03"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":14,"nb":5,"a":[["watercourse-envo-00000029.html","watercourse"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["leaf-po-0025034.html","leaf"]],"b":[["TED%3AAF-A0A4Y6CF56-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y6CF56-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6CNZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Y6CNZ1-F1-model_v4_TED02"],["TED%3AAF-A0A7Y4IIX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4IIX4-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6B7F9-F1-model_v4_TED01","TED novel fold AF-A0A4Y6B7F9-F1-model_v4_TED01"],["TED%3AAF-A0A7Y4IR70-F1-model_v4_TED01","TED novel fold AF-A0A7Y4IR70-F1-model_v4_TED01"]]},{"id":"NCBITaxon:239","l":"Flavobacterium sp.","na":5,"nb":13,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["mud-envo-01000001.html","mud"],["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"],["orchard-envo-00000115.html","orchard"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["Pfam%3APF21331","Isoamylase, C-terminal"],["TED%3AAF-A0A2E4PC55-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E4PC55-F1-model_v4_TED02"],["TED%3AAF-A0A2E4PGC5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4PGC5-F1-model_v4_TED01"],["TED%3AAF-A0A2E4PMB7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E4PMB7-F1-model_v4_TED02"],["TED%3AAF-A0A355BEV2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A355BEV2-F1-model_v4_TED02"],["TED%3AAF-A0A519QLA6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A519QLA6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":13,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"],["midgut-bto-0000863.html","midgut"],["paddy-field-envo-00000297.html","paddy field"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF03173","Putative carbohydrate binding domain"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"],["Pfam%3APF06438","Heme-binding protein A (HasA)"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF05247","Flagellar transcriptional activator (FlhD)"]]},{"id":"NCBITaxon:224911","l":"Bradyrhizobium diazoefficiens USDA 110","na":5,"nb":10,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["microbial-mat-material-envo-01000157.html","microbial mat material"],["agricultural-soil-envo-00002259.html","agricultural soil"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["Pfam%3APF14715","N-terminal domain of cytochrome oxidase-cbb3, FixP"],["Pfam%3APF03886","ABC-type transport auxiliary lipoprotein component"],["Pfam%3APF10649","Protein of unknown function (DUF2478)"],["Pfam%3APF01924","Hydrogenase formation hypA family"],["PROSITE%3APS00882","Nickel-dependent hydrogenases b-type cytochrome subunit signature 1"]]},{"id":"NCBITaxon:1667","l":"Arthrobacter sp.","na":9,"nb":5,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["leaf-po-0025034.html","leaf"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["Pfam%3APF14031","Putative serine dehydratase domain"],["Pfam%3APF02449","Beta-galactosidase"],["Pfam%3APF08533","Beta-galactosidase C-terminal domain"],["Pfam%3APF08532","Beta-galactosidase trimerisation domain"],["TED%3AAF-A0A3C2BWN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C2BWN3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":5,"nb":6,"a":[["liquid-water-envo-00002006.html","liquid water"],["food-spoiled-foodon-00003366.html","food (spoiled)"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"]],"b":[["Pfam%3APF14525","AraC-binding-like domain"],["Pfam%3APF06139","BphX-like"],["Pfam%3APF13340","Putative transposase of IS4/5 family (DUF4096)"],["Pfam%3APF11794","4-hydroxyphenylacetate 3-hydroxylase N terminal"],["Pfam%3APF03241","4-hydroxyphenylacetate 3-hydroxylase C terminal"],["TED%3AAF-A0A4S3H3T1-F1-model_v4_TED02","TED novel fold AF-A0A4S3H3T1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:391625","l":"Plesiocystis pacifica SIR-1","na":5,"nb":6,"a":[["coral-reef-envo-00000150.html","coral reef"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["bulk-soil-envo-00005802.html","bulk soil"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-A6FXI2-F1-model_v4_TED01","TED highly-symmetric fold AF-A6FXI2-F1-model_v4_TED01"],["TED%3AAF-A6G0J0-F1-model_v4_TED01","TED highly-symmetric fold AF-A6G0J0-F1-model_v4_TED01"],["TED%3AAF-A6G9Q2-F1-model_v4_TED01","TED highly-symmetric fold AF-A6G9Q2-F1-model_v4_TED01"],["TED%3AAF-A6G861-F1-model_v4_TED02","TED novel fold AF-A6G861-F1-model_v4_TED02"],["TED%3AAF-A6GGD7-F1-model_v4_TED01","TED novel fold AF-A6GGD7-F1-model_v4_TED01"],["TED%3AAF-A6GI73-F1-model_v4_TED02","TED novel fold AF-A6GI73-F1-model_v4_TED02"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":5,"nb":6,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["pseudostem-bto-0005992.html","pseudostem"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["Pfam%3APF02929","Beta galactosidase small chain"],["Pfam%3APF27279","Fumarate--diaminopropanoate ligase C-terminal domain"],["Pfam%3APF18024","Helix-turn-helix domain"],["Pfam%3APF16353","Beta-galactosidase, domain 4"],["PROSITE%3APS00594","Aromatic amino acids permeases signature"],["PROSITE%3APS00853","Beta-eliminating lyases pyridoxal-phosphate attachment site"]]},{"id":"NCBITaxon:1318","l":"Streptococcus parasanguinis","na":5,"nb":5,"a":[["biofilm-envo-00002034.html","biofilm"],["geographic-feature-envo-00000000.html","geographic feature"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"],["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["Pfam%3APF26337","Glucosyltransferase 3-like, C-terminal domain"],["Pfam%3APF26334","Glucosyltransferase 3-like, N-terminal domain"],["Pfam%3APF22145","GtfA extended beta-sheet domain"],["Pfam%3APF27244","GtfB middle domain"],["Pfam%3APF04286","Protein of unknown function (DUF445)"]]},{"id":"NCBITaxon:1393","l":"Brevibacillus brevis","na":5,"nb":5,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["Pfam%3APF03306","Alpha-acetolactate decarboxylase"],["Pfam%3APF05384","Sensor protein DegS"],["TED%3AAF-A0A2Z4MK38-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z4MK38-F1-model_v4_TED01"],["TED%3AAF-A0A2Z4MPQ6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2Z4MPQ6-F1-model_v4_TED02"],["TED%3AAF-A0A517IGN3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A517IGN3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:39947","l":"Oryza sativa subsp. japonica","na":4,"nb":158,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["large-river-biome-envo-00000887.html","large river biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"],["river-bed-envo-00000384.html","river bed"]],"b":[["Pfam%3APF03157","High molecular weight glutenin subunit"],["Pfam%3APF26249","RdRP3/4/5, N-terminal four helical bundle domain"],["Pfam%3APF23242","TRIP13-like, AAA+ ATPase lid C-terminal domain"],["Pfam%3APF26791","AAPxQ domain"],["Pfam%3APF24922","Acyl-CoA-binding domain-containing protein 4-6, C-terminal"],["Pfam%3APF04864","Allinase"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":4,"nb":32,"a":[["bioreactor-envo-00002123.html","bioreactor"],["human-construction-envo-00000070.html","human construction"],["sediment-envo-00002007.html","sediment"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF25848","Rodlin protein"],["Pfam%3APF13420","Acetyltransferase (GNAT) domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF26381","BREX System ATPase PglY protein 5th domain"],["Pfam%3APF26382","BREX System ATPase PglY protein 6th domain"]]},{"id":"NCBITaxon:3055","l":"Chlamydomonas reinhardtii","na":4,"nb":27,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["large-river-biome-envo-00000887.html","large river biome"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["pond-water-envo-00002228.html","pond water"]],"b":[["Pfam%3APF01333","Apocytochrome F, C-terminal"],["Pfam%3APF16639","Apocytochrome F, N-terminal"],["Pfam%3APF00430","ATP synthase B/B' CF(0)"],["Pfam%3APF00401","ATP synthase, Delta/Epsilon chain, long alpha-helix domain"],["Pfam%3APF21771","CFAP58 central coiled coil"],["Pfam%3APF27956","CFAP99 V-shaped coiled-coil domain"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae RIB40","na":4,"nb":27,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["mountain-pass-envo-00000084.html","mountain pass"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF09260","Alpha-amylase, domain C"],["Pfam%3APF28338","AclK C-terminal domain"],["Pfam%3APF09206","Alpha-L-arabinofuranosidase B, catalytic"],["Pfam%3APF28380","Sesquiterpene cyclase astC-like C-terminal domain"],["Pfam%3APF13364","Beta-galactosidase second all-beta domain"],["Pfam%3APF10435","Beta-galactosidase, domain 2"]]},{"id":"NCBITaxon:33","l":"Myxococcus fulvus","na":21,"nb":4,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"]],"b":[["TED%3AAF-A0A511SVC1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A511SVC1-F1-model_v4_TED01"],["TED%3AAF-A0A511SU64-F1-model_v4_TED01","TED novel fold AF-A0A511SU64-F1-model_v4_TED01"],["TED%3AAF-A0A511T2U3-F1-model_v4_TED02","TED novel fold AF-A0A511T2U3-F1-model_v4_TED02"],["TED%3AAF-A0A511T9F8-F1-model_v4_TED05","TED novel fold AF-A0A511T9F8-F1-model_v4_TED05"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":4,"nb":20,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF27529","AMPT"],["Pfam%3APF24856","L-arabinose isomerase central domain"],["Pfam%3APF02610","L-arabinose isomerase N-terminal domain"],["Pfam%3APF11762","L-arabinose isomerase C-terminal domain"],["Pfam%3APF17727","CtsR C-terminal dimerization domain"]]},{"id":"NCBITaxon:1085","l":"Rhodospirillum rubrum","na":19,"nb":4,"a":[["biofilm-envo-00002034.html","biofilm"],["brackish-water-body-envo-01001321.html","brackish water body"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["liquid-water-envo-00002006.html","liquid water"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["river-envo-00000022.html","river"]],"b":[["Pfam%3APF00556","Antenna complex alpha/beta subunit"],["Pfam%3APF09527","Putative F0F1-ATPase subunit Ca2+/Mg2+ transporter"],["Pfam%3APF07357","Dinitrogenase reductase ADP-ribosyltransferase (DRAT)"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"]]},{"id":"NCBITaxon:169963","l":"Listeria monocytogenes EGD-e","na":4,"nb":18,"a":[["brain-bto-0000142.html","brain"],["heart-bto-0000562.html","heart"],["macrophage-cell-line-bto-0002278.html","macrophage cell line"],["p-388d1-cell-bto-0000984.html","P-388D1 cell"]],"b":[["Pfam%3APF17936","Bacterial Ig domain"],["Pfam%3APF06778","Chlorite dismutase"],["Pfam%3APF05737","Collagen binding domain"],["Pfam%3APF09479","Listeria-Bacteroides repeat domain (List_Bact_rpt)"],["Pfam%3APF13457","GW (Gly-Tryp) dipeptide domain"],["Pfam%3APF08858","IDEAL domain"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":4,"nb":16,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF28265","Lipoprotein N-acylation protein LnsA-like"],["Pfam%3APF16403","Bacterial surface protein, Ig-like domain"],["Pfam%3APF03944","delta endotoxin"],["Pfam%3APF03945","delta endotoxin, N-terminal domain"],["Pfam%3APF06355","Aegerolysin"]]},{"id":"NCBITaxon:28214","l":"Sphingomonas sp.","na":16,"nb":4,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["air-conditioning-unit-envo-00002874.html","air conditioning unit"],["laboratory-facility-envo-01001406.html","laboratory facility"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["Pfam%3APF11723","Homotrimeric ring hydroxylase"],["Pfam%3APF07364","Metallopeptidase family M81"],["TED%3AAF-A0A525HJK0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A525HJK0-F1-model_v4_TED02"],["TED%3AAF-A0A520ITV0-F1-model_v4_TED02","TED novel fold AF-A0A520ITV0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1302","l":"Streptococcus gordonii","na":4,"nb":13,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["dental-plaque-uberon-0016482.html","dental plaque"],["archeological-site-envo-00000564.html","archeological site"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Pfam%3APF18652","Adhesin P1 N-terminal domain"],["Pfam%3APF17998","Cell surface antigen I/II C2 terminal domain"],["Pfam%3APF16364","Cell surface antigen C-terminus"],["Pfam%3APF18938","Atypical Rib domain"],["Pfam%3APF08759","Glycosyltransferase GT-D fold"],["Pfam%3APF22145","GtfA extended beta-sheet domain"]]},{"id":"NCBITaxon:238","l":"Elizabethkingia meningoseptica","na":10,"nb":4,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["pond-water-envo-00002228.html","pond water"],["small-river-biome-envo-00000890.html","small river biome"],["bronchus-uberon-0002185.html","bronchus"],["midgut-bto-0000863.html","midgut"],["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["Pfam%3APF21252","Glycosyl hydrolase 109, C-terminal domain"],["Pfam%3APF26305","cGAS/DncV-like nucleotidyltransferase C-terminal helical domain"],["PROSITE%3APS00743","Beta-lactamases class B signature 1"],["PROSITE%3APS00744","Beta-lactamases class B signature 2"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":8,"nb":4,"a":[["groundwater-envo-01001004.html","groundwater"],["bioreactor-envo-00002123.html","bioreactor"],["river-envo-00000022.html","river"],["freshwater-environment-envo-01000306.html","freshwater environment"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["TED%3AAF-A0A7W3UB61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W3UB61-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F4B3-F1-model_v4_TED01","TED novel fold AF-A0A0D7F4B3-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F6R4-F1-model_v4_TED01","TED novel fold AF-A0A0D7F6R4-F1-model_v4_TED01"],["TED%3AAF-A0A7W3YI15-F1-model_v4_TED02","TED novel fold AF-A0A7W3YI15-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":8,"nb":4,"a":[["reservoir-envo-00000025.html","reservoir"],["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["secretion-bto-0002979.html","secretion"],["stomach-bto-0001307.html","stomach"]],"b":[["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF09711","CRISPR-associated protein (Cas_Csn2)"],["Pfam%3APF06308","23S rRNA methylastransferase leader peptide (ErmCL)"]]},{"id":"NCBITaxon:1505","l":"Paraclostridium sordellii","na":8,"nb":4,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["animal-house-envo-00003040.html","animal house"],["animal-litter-envo-00002191.html","animal litter"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["mud-envo-01000001.html","mud"]],"b":[["Pfam%3APF13859","BNR repeat-like domain"],["Pfam%3APF01473","Putative cell wall binding repeat"],["Pfam%3APF19127","Choline-binding repeat"],["TED%3AAF-A0A822PVZ2-F1-model_v4_TED01","TED novel fold AF-A0A822PVZ2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":8,"nb":4,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"],["TED%3AAF-A0A085UKV7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085UKV7-F1-model_v4_TED01"],["TED%3AAF-A0A4R6IU28-F1-model_v4_TED02","TED novel fold AF-A0A4R6IU28-F1-model_v4_TED02"]]},{"id":"NCBITaxon:51671","l":"Microbacterium sp.","na":8,"nb":4,"a":[["marine-water-body-envo-00001999.html","marine water body"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"]],"b":[["Pfam%3APF19906","C-glycoside deglycosidase beta subunit"],["TED%3AAF-A0A349CW39-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349CW39-F1-model_v4_TED01"],["TED%3AAF-A0A2W6V981-F1-model_v4_TED01","TED novel fold AF-A0A2W6V981-F1-model_v4_TED01"],["TED%3AAF-A0A3D4PQL1-F1-model_v4_TED01","TED novel fold AF-A0A3D4PQL1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:438753","l":"Azorhizobium caulinodans ORS 571","na":7,"nb":4,"a":[["bacteroid-bto-0000109.html","bacteroid"],["free-living-state-bto-0001551.html","free-living state"],["lateral-root-bto-0005441.html","lateral root"],["rootlet-bto-0001192.html","rootlet"],["seedling-bto-0001228.html","seedling"],["stem-nodule-bto-0001816.html","stem nodule"]],"b":[["Pfam%3APF27389","AZC_3924"],["Pfam%3APF09663","Amidohydrolase ring-opening protein (Amido_AtzD_TrzD)"],["PROSITE%3APS01349","Nodulation protein nodA signature"],["PROSITE%3APS00647","Thymidine and pyrimidine-nucleoside phosphorylases signature"]]},{"id":"NCBITaxon:53249","l":"Pseudoalteromonas sp.","na":4,"nb":7,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["aquaculture-farm-envo-03600074.html","aquaculture farm"],["fumarole-envo-00000216.html","fumarole"]],"b":[["Pfam%3APF25291","Lambda-carrageenase C-terminal domain"],["Pfam%3APF25290","Lambda-carrageenase middle domain"],["Pfam%3APF17396","Domain of unknown function (DUF1611_N) Rossmann-like domain"],["Pfam%3APF07755","Domain of unknown function (DUF1611_C) P-loop domain"],["Pfam%3APF25292","Lambda-carrageenase beta-propeller domain"],["TED%3AAF-A0A2D5T282-F1-model_v4_TED01","TED novel fold AF-A0A2D5T282-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1079","l":"Blastochloris viridis","na":6,"nb":4,"a":[["fresh-water-envo-00002011.html","fresh water"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["Pfam%3APF00556","Antenna complex alpha/beta subunit"],["Pfam%3APF02276","Photosynthetic reaction centre cytochrome C subunit"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["TED%3AAF-A0A0H5BDG4-F1-model_v4_TED01","TED novel fold AF-A0A0H5BDG4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1306","l":"Streptococcus sp.","na":4,"nb":6,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["co-culture-habitatmech-bacdive-ff945d8a69.html","Co-culture"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["TED%3AAF-A0A496KVG3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A496KVG3-F1-model_v4_TED02"],["TED%3AAF-A0A496KCG7-F1-model_v4_TED01","TED novel fold AF-A0A496KCG7-F1-model_v4_TED01"],["TED%3AAF-A0A496L3I5-F1-model_v4_TED01","TED novel fold AF-A0A496L3I5-F1-model_v4_TED01"],["TED%3AAF-A0A496LB14-F1-model_v4_TED02","TED novel fold AF-A0A496LB14-F1-model_v4_TED02"],["TED%3AAF-A0A496M1E6-F1-model_v4_TED02","TED novel fold AF-A0A496M1E6-F1-model_v4_TED02"],["TED%3AAF-A0A496M2R1-F1-model_v4_TED06","TED novel fold AF-A0A496M2R1-F1-model_v4_TED06"]]},{"id":"NCBITaxon:1311","l":"Streptococcus agalactiae","na":6,"nb":4,"a":[["kidney-bto-0000671.html","kidney"],["milk-uberon-0001913.html","milk"],["oropharynx-bto-0005257.html","oropharynx"],["urine-bto-0001419.html","urine"],["urogenital-system-bto-0003091.html","urogenital system"],["vagina-bto-0000243.html","vagina"]],"b":[["Pfam%3APF19567","Capsular polysaccharide synthesis, CpsB/CapC"],["Pfam%3APF16828","GAG-binding domain on surface antigen"],["Pfam%3APF27244","GtfB middle domain"],["Pfam%3APF07373","CAMP factor (Cfa)"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":4,"nb":6,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["carcass-envo-00002033.html","carcass"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["sludge-envo-00002044.html","sludge"]],"b":[["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF03744","6-carboxyhexanoate--CoA ligase"],["PROSITE%3APS00836","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 1"],["PROSITE%3APS00837","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 2"],["TED%3AAF-A0A2S5D092-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5D092-F1-model_v4_TED01"],["TED%3AAF-A0A2S0JW09-F1-model_v4_TED01","TED novel fold AF-A0A2S0JW09-F1-model_v4_TED01"]]},{"id":"NCBITaxon:388919","l":"Streptococcus sanguinis SK36","na":4,"nb":6,"a":[["buccal-mucosa-bto-0003833.html","buccal mucosa"],["dental-plaque-bto-0000338.html","dental plaque"],["pharyngeal-mucosa-bto-0001047.html","pharyngeal mucosa"],["pharynx-bto-0001049.html","pharynx"]],"b":[["Pfam%3APF20921","Domain of unknown function DUF1846, C-terminal"],["Pfam%3APF08903","Domain of unknown function DUF1846, N-terminal"],["Pfam%3APF03186","CobD/Cbib protein"],["Pfam%3APF08503","Tetrahydrodipicolinate succinyltransferase N-terminal"],["Pfam%3APF06949","Protein of unknown function (DUF1292)"],["Pfam%3APF06160","Septation ring formation regulator, EzrA"]]},{"id":"NCBITaxon:1366","l":"Pseudolactococcus raffinolactis","na":4,"nb":5,"a":[["animal-house-envo-00003040.html","animal house"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["TED%3AAF-A0A5R9CHM3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5R9CHM3-F1-model_v4_TED02"],["TED%3AAF-A0A6H0UIE5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6H0UIE5-F1-model_v4_TED01"],["TED%3AAF-A0A6H0UK30-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6H0UK30-F1-model_v4_TED01"],["TED%3AAF-A0A6H0URM1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6H0URM1-F1-model_v4_TED02"],["TED%3AAF-A0A6H0UGG1-F1-model_v4_TED06","TED novel fold AF-A0A6H0UGG1-F1-model_v4_TED06"]]},{"id":"NCBITaxon:1411316","l":"Pedobacter sp.","na":5,"nb":4,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["TED%3AAF-A0A520IH20-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A520IH20-F1-model_v4_TED02"],["TED%3AAF-A0A519VYD0-F1-model_v4_TED02","TED novel fold AF-A0A519VYD0-F1-model_v4_TED02"],["TED%3AAF-A0A520CAS2-F1-model_v4_TED01","TED novel fold AF-A0A520CAS2-F1-model_v4_TED01"],["TED%3AAF-A0A520GU64-F1-model_v4_TED01","TED novel fold AF-A0A520GU64-F1-model_v4_TED01"]]},{"id":"NCBITaxon:195","l":"Campylobacter coli","na":4,"nb":5,"a":[["feces-uberon-0001988.html","feces"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["PROSITE%3APS00100","Chloramphenicol acetyltransferase active site"],["TED%3AAF-A0A697DVN1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A697DVN1-F1-model_v4_TED01"],["TED%3AAF-A0A5T0YXG5-F1-model_v4_TED02","TED novel fold AF-A0A5T0YXG5-F1-model_v4_TED02"],["TED%3AAF-A0A825MHY8-F1-model_v4_TED03","TED novel fold AF-A0A825MHY8-F1-model_v4_TED03"],["TED%3AAF-A0A828DMV9-F1-model_v4_TED01","TED novel fold AF-A0A828DMV9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:305","l":"Ralstonia solanacearum","na":4,"nb":5,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"],["pseudostem-bto-0005992.html","pseudostem"],["xylem-bto-0001468.html","xylem"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["Pfam%3APF14897","EpsG family"],["TED%3AAF-A0A7I8FQZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7I8FQZ6-F1-model_v4_TED01"],["TED%3AAF-A0A7H1MI34-F1-model_v4_TED01","TED novel fold AF-A0A7H1MI34-F1-model_v4_TED01"],["TED%3AAF-A0A7I8FKL4-F1-model_v4_TED01","TED novel fold AF-A0A7I8FKL4-F1-model_v4_TED01"],["TED%3AAF-A0A850FKB0-F1-model_v4_TED01","TED novel fold AF-A0A850FKB0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":5,"nb":4,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"],["feces-uberon-0001988.html","feces"],["rectum-bto-0001158.html","rectum"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["Pfam%3APF01375","Heat-labile enterotoxin alpha chain"],["Pfam%3APF09101","Exotoxin A binding"],["Pfam%3APF09009","Exotoxin A catalytic"],["Pfam%3APF09102","Exotoxin A, targeting"]]},{"id":"NCBITaxon:378806","l":"Allostigmatella aurantiaca DW4/3-1","na":4,"nb":4,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["orchard-envo-00000115.html","orchard"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-Q098I8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q098I8-F1-model_v4_TED01"],["TED%3AAF-E3FRW3-F1-model_v4_TED01","TED novel fold AF-E3FRW3-F1-model_v4_TED01"],["TED%3AAF-E3G0M4-F1-model_v4_TED01","TED novel fold AF-E3G0M4-F1-model_v4_TED01"],["TED%3AAF-Q08VS7-F1-model_v4_TED01","TED novel fold AF-Q08VS7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:83449","l":"Cystobacter ferrugineus","na":4,"nb":4,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["wood-bto-0005516.html","wood"],["sand-envo-01000017.html","sand"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-A0A1L9B4M1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L9B4M1-F1-model_v4_TED01"],["TED%3AAF-A0A1L9B5W1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L9B5W1-F1-model_v4_TED01"],["TED%3AAF-A0A1L9BCS8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L9BCS8-F1-model_v4_TED01"],["TED%3AAF-A0A1L9BDA4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1L9BDA4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:85698","l":"Achromobacter xylosoxidans","na":4,"nb":4,"a":[["hospital-envo-00002173.html","hospital"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["Pfam%3APF25975","CzcB C-terminal circularly permuted SH3-like domain"],["Pfam%3APF17524","Anti-sigma factor CnrY"],["Pfam%3APF10778","Halocarboxylic acid dehydrogenase DehI"],["TED%3AAF-A0A1R1JVF9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1R1JVF9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":3,"nb":49554,"a":[["city-envo-00000856.html","city"],["cold-environment-envo-01000309.html","cold environment"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["EC%3A1.1.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.1.98.-","With other, known, acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":27,"nb":3,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["watercourse-envo-00000029.html","watercourse"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["egg-food-product-foodon-00001274.html","egg food product"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"]],"b":[["Pfam%3APF14864","Alkyl sulfatase C-terminal"],["Pfam%3APF13816","Haem-containing dehydratase"],["Pfam%3APF14863","Alkyl sulfatase dimerisation"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":25,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-water-body-envo-00001999.html","marine water body"],["sea-water-envo-00002149.html","sea water"],["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF08130","Type A lantibiotic family"],["Pfam%3APF04738","Lantibiotic dehydratase, N terminus"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":3,"nb":19,"a":[["milk-uberon-0001913.html","milk"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["Pfam%3APF03306","Alpha-acetolactate decarboxylase"],["Pfam%3APF22208","Cas_Csm6 CARF domain"],["Pfam%3APF09659","Cas_Csm6 HEPN domain"],["Pfam%3APF22335","Cas10/Cmr2, second palm domain"],["Pfam%3APF18395","Cas3 C-terminal domain"],["Pfam%3APF18019","Cas3, HD domain"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":17,"nb":3,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["fruit-bto-0000486.html","fruit"],["leaf-po-0025034.html","leaf"],["rhizosphere-envo-00005801.html","rhizosphere"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["Pfam%3APF03423","Carbohydrate binding domain (family 25)"],["Pfam%3APF03422","Carbohydrate binding module (family 6)"],["TED%3AAF-A0A7X5SGP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X5SGP7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:243161","l":"Chlamydia muridarum str. Nigg","na":3,"nb":16,"a":[["cervical-adenocarcinoma-cell-bto-0003165.html","cervical adenocarcinoma cell"],["fibroblast-bto-0000452.html","fibroblast"],["hela-229-cell-bto-0005030.html","HeLa-229 cell"]],"b":[["Pfam%3APF07382","Histone H1-like nucleoprotein HC2"],["Pfam%3APF05475","Pgp3 C-terminal domain"],["Pfam%3APF07577","Domain of Unknown Function (DUF1547)"],["Pfam%3APF05745","Chlamydia 15 kDa cysteine-rich outer membrane protein (CRPA)"],["Pfam%3APF28261","Uncharacterized protein CT_504-like"],["Pfam%3APF17435","CT_584-like"]]},{"id":"NCBITaxon:29158","l":"Mytilus galloprovincialis","na":3,"nb":13,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["Pfam%3APF01097","Arthropod defensin"],["TED%3AAF-A0A8B6CBP4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B6CBP4-F1-model_v4_TED01"],["TED%3AAF-A0A8B6CUV9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A8B6CUV9-F1-model_v4_TED03"],["TED%3AAF-A0A8B6EJL3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A8B6EJL3-F1-model_v4_TED03"],["TED%3AAF-A0A8B6EMQ1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B6EMQ1-F1-model_v4_TED01"],["TED%3AAF-A0A8B6GYA1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B6GYA1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":3,"nb":11,"a":[["bile-bto-0000121.html","bile"],["rectum-bto-0001158.html","rectum"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["Pfam%3APF22829","HphA C-terminal domain"],["Pfam%3APF22828","HphA N-terminal heme-binding domain"],["Pfam%3APF28205","Ciprofloxacin tolerance protein"],["Pfam%3APF19582","Solute-binding protein AdeT 1/2"],["PROSITE%3APS00337","Beta-lactamase class-D active site"],["Pfam%3APF24575","Surface lipoprotein assembly modifier, N-terminal TPR repeats"]]},{"id":"NCBITaxon:1506","l":"Clostridium sp.","na":10,"nb":3,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["animal-waste-material-envo-00002276.html","animal waste material"],["laboratory-facility-envo-01001406.html","laboratory facility"],["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["TED%3AAF-A0A3D5KI35-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D5KI35-F1-model_v4_TED01"],["TED%3AAF-A0A316SA98-F1-model_v4_TED01","TED novel fold AF-A0A316SA98-F1-model_v4_TED01"],["TED%3AAF-A0A3B9UYE3-F1-model_v4_TED01","TED novel fold AF-A0A3B9UYE3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":3,"nb":10,"a":[["liquid-water-envo-00002006.html","liquid water"],["sludge-envo-00002044.html","sludge"],["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF09081","Glucan 1,4-alpha-maltotetraohydrolase, domain C"],["Pfam%3APF09459","Ethylbenzene dehydrogenase"],["Pfam%3APF08406","CbbQ/NirQ/NorQ C-terminal"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"],["Pfam%3APF18793","Nitrous oxide reductase propeller repeat 2"]]},{"id":"NCBITaxon:6238","l":"Caenorhabditis briggsae","na":3,"nb":10,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"],["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["Pfam%3APF09287","CEP-1, DNA binding"],["Pfam%3APF22073","Cep192 domain 4"],["Pfam%3APF15481","Chondroitin proteoglycan 4"],["Pfam%3APF13358","DDE superfamily endonuclease"],["Pfam%3APF10326","Serpentine type 7TM GPCR chemoreceptor Str"],["Pfam%3APF17266","Family of unknown function (DUF5332)"]]},{"id":"NCBITaxon:1639","l":"Listeria monocytogenes","na":9,"nb":3,"a":[["liquid-water-envo-00002006.html","liquid water"],["brain-bto-0000142.html","brain"],["central-nervous-system-bto-0000227.html","central nervous system"],["fruit-bto-0000486.html","fruit"],["placenta-bto-0001078.html","placenta"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["TED%3AAF-A0A6Z1JB74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6Z1JB74-F1-model_v4_TED01"],["TED%3AAF-A0A5Z1VYX2-F1-model_v4_TED01","TED novel fold AF-A0A5Z1VYX2-F1-model_v4_TED01"],["TED%3AAF-A0A823IT06-F1-model_v4_TED02","TED novel fold AF-A0A823IT06-F1-model_v4_TED02"]]},{"id":"NCBITaxon:121845","l":"Diaphorina citri","na":8,"nb":3,"a":[["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["stream-envo-00000023.html","stream"],["animal-house-envo-00003040.html","animal house"],["biome-envo-00000428.html","biome"]],"b":[["TED%3AAF-A0A3Q0J3L1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3Q0J3L1-F1-model_v4_TED03"],["TED%3AAF-A0A3Q0JAD0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3Q0JAD0-F1-model_v4_TED01"],["TED%3AAF-A0A1S4EQL6-F1-model_v4_TED01","TED novel fold AF-A0A1S4EQL6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1359","l":"Lactococcus cremoris","na":3,"nb":8,"a":[["b-lymphocyte-bto-0000776.html","B-lymphocyte"],["peripheral-blood-mononuclear-cell-bto-0001025.html","peripheral blood mononuclear cell"],["spleen-bto-0001281.html","spleen"]],"b":[["Pfam%3APF16873","Putative abortive phage resistance protein AbiGii toxin"],["Pfam%3APF21368","AI2M/AI1M-like, HNH endonuclease"],["Pfam%3APF09136","Glucodextranase, domain B"],["Pfam%3APF10899","Putative abortive phage resistance protein AbiGi, antitoxin"],["Pfam%3APF04556","DpnII restriction endonuclease"],["Pfam%3APF04369","Lactococcin-like family"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK 1622","na":3,"nb":8,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["Pfam%3APF27281","DevT C-terminal domain"],["Pfam%3APF27372","DevT N-terminal domain"],["Pfam%3APF17762","ParB HTH domain"],["Pfam%3APF01930","Domain of unknown function DUF83"],["Pfam%3APF09559","Cas6 Crispr"],["Pfam%3APF01905","CRISPR-associated negative auto-regulator DevR/Csa2"]]},{"id":"NCBITaxon:292800","l":"Flavonifractor plautii","na":3,"nb":8,"a":[["goblet-cell-bto-0001540.html","goblet cell"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["secretion-bto-0002979.html","secretion"]],"b":[["TED%3AAF-A0A6I2QXD7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I2QXD7-F1-model_v4_TED01"],["TED%3AAF-A0A6I2R9U0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I2R9U0-F1-model_v4_TED01"],["TED%3AAF-A0A6I7GJ83-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6I7GJ83-F1-model_v4_TED02"],["TED%3AAF-A0A174L5D2-F1-model_v4_TED02","TED novel fold AF-A0A174L5D2-F1-model_v4_TED02"],["TED%3AAF-A0A6I2R566-F1-model_v4_TED01","TED novel fold AF-A0A6I2R566-F1-model_v4_TED01"],["TED%3AAF-A0A6I2R5K9-F1-model_v4_TED01","TED novel fold AF-A0A6I2R5K9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:33038","l":"Mediterraneibacter gnavus","na":8,"nb":3,"a":[["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["juvenile-bto-0002168.html","juvenile"],["animal-litter-envo-00002191.html","animal litter"]],"b":[["Pfam%3APF16874","Glycosyl hydrolase family 36 C-terminal domain"],["Pfam%3APF16875","Glycosyl hydrolase family 36 N-terminal domain"],["Pfam%3APF04604","Type-A lantibiotic"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":8,"nb":3,"a":[["beach-envo-00000091.html","beach"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["sea-sand-envo-00002118.html","sea sand"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF22277","EncFtn-like"],["TED%3AAF-D0LJ11-F1-model_v4_TED04","TED highly-symmetric fold AF-D0LJ11-F1-model_v4_TED04"]]},{"id":"NCBITaxon:7159","l":"Aedes aegypti","na":3,"nb":8,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["tropical-envo-01000204.html","tropical"],["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["IDPO%3A0000004","pre-molten globule"],["Pfam%3APF25001","Aegyptin, C-terminal domain"],["Pfam%3APF01097","Arthropod defensin"],["Pfam%3APF15957","Commissureless"],["Pfam%3APF23757","Insect HPS5 TPR domain"],["TED%3AAF-Q0IGF9-F1-model_v4_TED01","TED highly-symmetric fold AF-Q0IGF9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":7,"nb":3,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["farm-envo-00000078.html","farm"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["Pfam%3APF05258","Dna[CI] antecedent, DciA"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"],["TED%3AAF-Q0RZW9-F1-model_v4_TED03","TED highly-symmetric fold AF-Q0RZW9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1307","l":"Streptococcus suis","na":3,"nb":6,"a":[["monocyte-bto-0000876.html","monocyte"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["tonsil-bto-0001387.html","tonsil"]],"b":[["TED%3AAF-A0A0Z8XA17-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0Z8XA17-F1-model_v4_TED02"],["TED%3AAF-A0A116R309-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A116R309-F1-model_v4_TED02"],["TED%3AAF-A0A3R8SIF2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R8SIF2-F1-model_v4_TED01"],["TED%3AAF-A0A0Z8H9E5-F1-model_v4_TED02","TED novel fold AF-A0A0Z8H9E5-F1-model_v4_TED02"],["TED%3AAF-A0A4T2GPV6-F1-model_v4_TED02","TED novel fold AF-A0A4T2GPV6-F1-model_v4_TED02"],["TED%3AAF-A0A7G1JVZ6-F1-model_v4_TED02","TED novel fold AF-A0A7G1JVZ6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1624","l":"Ligilactobacillus salivarius","na":6,"nb":3,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["trachea-bto-0001388.html","trachea"],["animal-litter-envo-00002191.html","animal litter"],["intestine-environment-envo-2100002.html","intestine environment"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["TED%3AAF-A0A7X2SS58-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X2SS58-F1-model_v4_TED01"],["TED%3AAF-A0A089QBS8-F1-model_v4_TED02","TED novel fold AF-A0A089QBS8-F1-model_v4_TED02"],["TED%3AAF-A0A2A2XCA8-F1-model_v4_TED01","TED novel fold AF-A0A2A2XCA8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:243365","l":"Chromobacterium violaceum ATCC 12472","na":6,"nb":3,"a":[["acute-lymphoblastic-leukemia-cell-bto-0000731.html","acute lymphoblastic leukemia cell"],["adrenal-gland-bto-0000047.html","adrenal gland"],["eosinophil-bto-0000399.html","eosinophil"],["lymphocyte-bto-0000775.html","lymphocyte"],["neutrophil-bto-0000130.html","neutrophil"],["peripheral-blood-bto-0000553.html","peripheral blood"]],"b":[["Pfam%3APF17074","Darcynin, domain of unknown function"],["Pfam%3APF12902","Ferritin-like"],["Pfam%3APF06314","Acetoacetate decarboxylase (ADC)"]]},{"id":"NCBITaxon:253","l":"Chryseobacterium indologenes","na":6,"nb":3,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["seedling-bto-0001228.html","seedling"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["tropical-envo-01000204.html","tropical"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["PROSITE%3APS00744","Beta-lactamases class B signature 2"],["TED%3AAF-A0A7T8U7T3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T8U7T3-F1-model_v4_TED01"],["TED%3AAF-A0A0N0ZUI2-F1-model_v4_TED01","TED novel fold AF-A0A0N0ZUI2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:399742","l":"Enterobacter sp. 638","na":3,"nb":6,"a":[["vasculature-uberon-0002049.html","vasculature"],["part-of-plant-habitatmech-madin-25325947e2.html","part of plant"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Pfam%3APF12404","Peptidase"],["Pfam%3APF27465","DNA-binding protein Fis N-terminal domain"],["Pfam%3APF02300","Fumarate reductase subunit C"],["Pfam%3APF04102","SlyX"],["Pfam%3APF06005","ZapB family"],["Pfam%3APF07208","Protein of unknown function (DUF1414)"]]},{"id":"NCBITaxon:1514140","l":"Trieres chinensis","na":3,"nb":5,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["estuarine-biome-envo-01000020.html","estuarine biome"],["shoreline-envo-00000486.html","shoreline"]],"b":[["TED%3AAF-A0A7S1YW68-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1YW68-F1-model_v4_TED01"],["TED%3AAF-A0A7S1Z4Z7-F1-model_v4_TED01","TED novel fold AF-A0A7S1Z4Z7-F1-model_v4_TED01"],["TED%3AAF-A0A7S1ZAT3-F1-model_v4_TED03","TED novel fold AF-A0A7S1ZAT3-F1-model_v4_TED03"],["TED%3AAF-A0A7S2A6A9-F1-model_v4_TED02","TED novel fold AF-A0A7S2A6A9-F1-model_v4_TED02"],["TED%3AAF-A0A7S2A7V0-F1-model_v4_TED02","TED novel fold AF-A0A7S2A7V0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1833","l":"Rhodococcus erythropolis","na":3,"nb":5,"a":[["watercourse-envo-00000029.html","watercourse"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"],["water-scum-envo-00005794.html","water scum"]],"b":[["Pfam%3APF08028","Acyl-CoA dehydrogenase, C-terminal domain"],["Pfam%3APF13816","Haem-containing dehydratase"],["Pfam%3APF07858","Limonene-1,2-epoxide hydrolase catalytic domain"],["Pfam%3APF09663","Amidohydrolase ring-opening protein (Amido_AtzD_TrzD)"],["TED%3AAF-A0A401N7F7-F1-model_v4_TED02","TED novel fold AF-A0A401N7F7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:68886","l":"Theileria orientalis","na":5,"nb":3,"a":[["erythrocyte-bto-0000424.html","erythrocyte"],["leukocyte-bto-0000751.html","leukocyte"],["lymphocyte-bto-0000775.html","lymphocyte"],["macrophage-bto-0000801.html","macrophage"],["monocyte-bto-0000876.html","monocyte"]],"b":[["TED%3AAF-A0A2T7I0Y7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2T7I0Y7-F1-model_v4_TED02"],["TED%3AAF-A0A2T7ITL4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T7ITL4-F1-model_v4_TED01"],["TED%3AAF-A0A2T7IKV1-F1-model_v4_TED01","TED novel fold AF-A0A2T7IKV1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:813","l":"Chlamydia trachomatis","na":3,"nb":5,"a":[["conjunctiva-bto-0003415.html","conjunctiva"],["epithelial-cell-bto-0000414.html","epithelial cell"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["Pfam%3APF07382","Histone H1-like nucleoprotein HC2"],["Pfam%3APF01308","Chlamydia major outer membrane protein"],["Pfam%3APF05475","Pgp3 C-terminal domain"],["Pfam%3APF03504","Chlamydia cysteine-rich outer membrane protein 6"],["TED%3AAF-C7DZ76-F1-model_v4_TED01","TED novel fold AF-C7DZ76-F1-model_v4_TED01"]]},{"id":"NCBITaxon:95486","l":"Burkholderia cenocepacia","na":5,"nb":3,"a":[["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["TED%3AAF-A0A109EHZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A109EHZ6-F1-model_v4_TED01"],["TED%3AAF-A0A071M3L2-F1-model_v4_TED01","TED novel fold AF-A0A071M3L2-F1-model_v4_TED01"],["TED%3AAF-A0A088UYL8-F1-model_v4_TED01","TED novel fold AF-A0A088UYL8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1451","l":"Paenibacillus amylolyticus","na":3,"nb":4,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["Pfam%3APF03211","Pectate lyase"],["TED%3AAF-A0A117I1X0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A117I1X0-F1-model_v4_TED01"],["TED%3AAF-A0A1R1DDF3-F1-model_v4_TED01","TED novel fold AF-A0A1R1DDF3-F1-model_v4_TED01"],["TED%3AAF-A0A4V3B7H8-F1-model_v4_TED01","TED novel fold AF-A0A4V3B7H8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1587","l":"Lactobacillus helveticus","na":4,"nb":3,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["intestine-environment-envo-2100002.html","intestine environment"],["urban-biome-envo-01000249.html","urban biome"],["harbour-envo-00000463.html","harbour"]],"b":[["Pfam%3APF18008","Replication initiator protein A C-terminal domain"],["Pfam%3APF20956","Domain of unknown function (DUF4931) C-terminal domain"],["Pfam%3APF17312","Bacteriocin helveticin-J"]]},{"id":"NCBITaxon:203122","l":"Saccharophagus degradans 2-40","na":4,"nb":3,"a":[["intertidal-zone-envo-00000316.html","intertidal zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["saline-marsh-envo-00000054.html","saline marsh"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["Pfam%3APF22686","Exo-oligoalginate lyase-like, C-terminal domain"],["Pfam%3APF07940","Heparinase II/III-like, C-terminal"],["Pfam%3APF05426","Alginate lyase"]]},{"id":"NCBITaxon:243090","l":"Rhodopirellula baltica SH 1","na":4,"nb":3,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["oligotrophic-water-envo-00002223.html","oligotrophic water"],["pond-water-envo-00002228.html","pond water"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["Pfam%3APF02601","Exonuclease VII, large subunit"],["TED%3AAF-Q7UU79-F1-model_v4_TED04","TED highly-symmetric fold AF-Q7UU79-F1-model_v4_TED04"],["TED%3AAF-Q7USE8-F1-model_v4_TED02","TED novel fold AF-Q7USE8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:28037","l":"Streptococcus mitis","na":3,"nb":4,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["archeological-site-envo-00000564.html","archeological site"],["tropical-envo-01000204.html","tropical"]],"b":[["Pfam%3APF03047","COMC family"],["TED%3AAF-A0A1X1L9U5-F1-model_v4_TED02","TED novel fold AF-A0A1X1L9U5-F1-model_v4_TED02"],["TED%3AAF-A0A428B8X0-F1-model_v4_TED01","TED novel fold AF-A0A428B8X0-F1-model_v4_TED01"],["TED%3AAF-A0A6L5H4V3-F1-model_v4_TED03","TED novel fold AF-A0A6L5H4V3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:28447","l":"Clavibacter michiganensis","na":3,"nb":4,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["canker-habitatmech-bacdive-0f078d72a7.html","Canker"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["TED%3AAF-A0A251YC11-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A251YC11-F1-model_v4_TED02"],["TED%3AAF-A0A2S5VA57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5VA57-F1-model_v4_TED01"],["TED%3AAF-A0A2S5VJK2-F1-model_v4_TED01","TED novel fold AF-A0A2S5VJK2-F1-model_v4_TED01"],["TED%3AAF-A0A399NHQ8-F1-model_v4_TED01","TED novel fold AF-A0A399NHQ8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:290398","l":"Chromohalobacter israelensis DSM 3043","na":3,"nb":4,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["saline-evaporation-pond-envo-00000055.html","saline evaporation pond"],["joint-bto-0001686.html","joint"]],"b":[["Pfam%3APF20629","D-galactarate/Altronate dehydratase, C-terminal"],["Pfam%3APF04295","D-galactarate dehydratase/Altronate hydrolase, second domain"],["Pfam%3APF11982","Domain of unknown function (DUF3483)"],["PROSITE%3APS00908","Mandelate racemase / muconate lactonizing enzyme family signature 1"]]},{"id":"NCBITaxon:29159","l":"Crassostrea gigas","na":3,"nb":4,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["Pfam%3APF22494","Choice-of-anchor I domain"],["TED%3AAF-K1PYR0-F1-model_v4_TED01","TED novel fold AF-K1PYR0-F1-model_v4_TED01"],["TED%3AAF-K1Q3N2-F1-model_v4_TED01","TED novel fold AF-K1Q3N2-F1-model_v4_TED01"],["TED%3AAF-K1RG39-F1-model_v4_TED01","TED novel fold AF-K1RG39-F1-model_v4_TED01"]]},{"id":"NCBITaxon:404589","l":"Anaeromyxobacter sp. Fw109-5","na":3,"nb":4,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["TED%3AAF-A7H7H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A7H7H4-F1-model_v4_TED01"],["TED%3AAF-A7H7U8-F1-model_v4_TED01","TED highly-symmetric fold AF-A7H7U8-F1-model_v4_TED01"],["TED%3AAF-A7HAV5-F1-model_v4_TED01","TED novel fold AF-A7HAV5-F1-model_v4_TED01"],["TED%3AAF-A7HE89-F1-model_v4_TED01","TED novel fold AF-A7HE89-F1-model_v4_TED01"]]},{"id":"NCBITaxon:45351","l":"Nematostella vectensis","na":4,"nb":3,"a":[["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["microbial-mat-material-envo-01000157.html","microbial mat material"],["slope-envo-00002000.html","slope"]],"b":[["Pfam%3APF14777","Cilia BBSome complex subunit 10"],["TED%3AAF-A7SVA7-F1-model_v4_TED01","TED highly-symmetric fold AF-A7SVA7-F1-model_v4_TED01"],["TED%3AAF-A7SXG3-F1-model_v4_TED02","TED novel fold AF-A7SXG3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:50741","l":"Marinobacter sp.","na":3,"nb":4,"a":[["marine-water-body-envo-00001999.html","marine water body"],["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["TED%3AAF-A0A2D9LBV8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9LBV8-F1-model_v4_TED01"],["TED%3AAF-A0A2D7X1D2-F1-model_v4_TED01","TED novel fold AF-A0A2D7X1D2-F1-model_v4_TED01"],["TED%3AAF-A0A2E8AEX3-F1-model_v4_TED02","TED novel fold AF-A0A2E8AEX3-F1-model_v4_TED02"],["TED%3AAF-A0A3D5Q8H2-F1-model_v4_TED01","TED novel fold AF-A0A3D5Q8H2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1260","l":"Finegoldia magna","na":3,"nb":3,"a":[["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["Pfam%3APF17573","GA-like domain"],["Pfam%3APF18656","Family of unknown function (DUF5633)"],["TED%3AAF-A0A233W4R0-F1-model_v4_TED01","TED novel fold AF-A0A233W4R0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1492","l":"Clostridium butyricum","na":3,"nb":3,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["intestine-environment-envo-2100002.html","intestine environment"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["Pfam%3APF00302","Chloramphenicol acetyltransferase"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["PROSITE%3APS00100","Chloramphenicol acetyltransferase active site"]]},{"id":"NCBITaxon:1717","l":"Corynebacterium diphtheriae","na":3,"nb":3,"a":[["foot-bto-0000476.html","foot"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["Pfam%3APF08051","Erythromycin resistance leader peptide"],["PROSITE%3APS01007","Transposases, Mutator family, signature"],["TED%3AAF-A0A811G0F8-F1-model_v4_TED05","TED novel fold AF-A0A811G0F8-F1-model_v4_TED05"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":3,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["TED%3AAF-A0A142EAM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142EAM9-F1-model_v4_TED03"],["TED%3AAF-A0A1Q3DTY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3DTY6-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3DNE3-F1-model_v4_TED01","TED novel fold AF-A0A1Q3DNE3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1961","l":"Streptomyces virginiae","na":3,"nb":3,"a":[["clay-envo-00002982.html","clay"],["plain-envo-00000086.html","plain"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF19328","2,4-diaminopentanoate dehydrogenase C-terminal domain"],["PROSITE%3APS01014","Transcription termination factor nusG signature"]]},{"id":"NCBITaxon:203124","l":"Trichodesmium erythraeum IMS101","na":3,"nb":3,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["coastal-water-body-envo-02000049.html","coastal water body"],["marine-neritic-zone-envo-00000206.html","marine neritic zone"]],"b":[["Pfam%3APF06206","CpeT/CpcT family (DUF1001)"],["Pfam%3APF18460","Heterocyst differentiation regulator C-terminal Hood domain"],["TED%3AAF-Q10WG6-F1-model_v4_TED05","TED highly-symmetric fold AF-Q10WG6-F1-model_v4_TED05"]]},{"id":"NCBITaxon:28108","l":"Alteromonas macleodii","na":3,"nb":3,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["marine-water-body-envo-00001999.html","marine water body"],["sandstone-envo-00002055.html","sandstone"]],"b":[["TED%3AAF-A0A6C5N007-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6C5N007-F1-model_v4_TED01"],["TED%3AAF-A0A126Q0V0-F1-model_v4_TED01","TED novel fold AF-A0A126Q0V0-F1-model_v4_TED01"],["TED%3AAF-A0A6T9Y0H6-F1-model_v4_TED01","TED novel fold AF-A0A6T9Y0H6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:335543","l":"Syntrophobacter fumaroxidans MPOB","na":3,"nb":3,"a":[["anaerobic-sludge-envo-00002129.html","anaerobic sludge"],["submerged-bed-envo-00000501.html","submerged bed"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["Pfam%3APF03746","LamB/YcsF family"],["Pfam%3APF03588","Leucyl/phenylalanyl-tRNA protein transferase"],["Pfam%3APF05167","Uncharacterised ACR (DUF711)"]]},{"id":"NCBITaxon:340102","l":"Pyrobaculum arsenaticum DSM 13514","na":3,"nb":3,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"],["solfatara-envo-00000217.html","solfatara"]],"b":[["Pfam%3APF22039","Imidazolonepropionase-like composite domain, bacteria"],["Pfam%3APF01949","Endonuclease dU"],["TED%3AAF-A4WK08-F1-model_v4_TED01","TED novel fold AF-A4WK08-F1-model_v4_TED01"]]},{"id":"NCBITaxon:386415","l":"Clostridium novyi NT","na":3,"nb":3,"a":[["myocardium-bto-0000901.html","myocardium"],["reticuloendothelial-system-bto-0001174.html","reticuloendothelial system"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["Pfam%3APF27467","ATP-dependent helicase/deoxyribonuclease AddB fifth domain"],["Pfam%3APF01888","CbiD"],["Pfam%3APF18146","Damage-inducible protein CinA KH domain"]]},{"id":"NCBITaxon:418699","l":"Azoarcus olearius","na":3,"nb":3,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["petroleum-envo-00002984.html","petroleum"]],"b":[["Pfam%3APF27460","ATP phosphoribosyltransferase subunit HisZ C-terminal domain"],["Pfam%3APF20543","N2-fixation sustaining protein CowN"],["PROSITE%3APS00855","Signal peptidases II signature"]]},{"id":"NCBITaxon:582","l":"Morganella morganii","na":3,"nb":3,"a":[["blast-cell-bto-0000125.html","blast cell"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"],["spike-bto-0001278.html","spike"]],"b":[["PROSITE%3APS01157","Class A bacterial acid phosphatases signature"],["TED%3AAF-A0A2C5TPE5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2C5TPE5-F1-model_v4_TED01"],["TED%3AAF-A0A0A2RJY1-F1-model_v4_TED02","TED novel fold AF-A0A0A2RJY1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":3,"nb":3,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Pfam%3APF04205","FMN-binding domain"],["Pfam%3APF10795","Protein of unknown function (DUF2607)"],["TED%3AAF-A0A1W6U0N2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W6U0N2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:75985","l":"Mannheimia haemolytica","na":3,"nb":3,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["leukocyte-bto-0000751.html","leukocyte"],["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["Pfam%3APF04224","Protein of unknown function, DUF417"],["Pfam%3APF04393","Protein of unknown function (DUF535)"],["TED%3AAF-A0A378MS69-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A378MS69-F1-model_v4_TED01"]]},{"id":"NCBITaxon:94122","l":"Shewanella sp. ANA-3","na":3,"nb":3,"a":[["alkaline-water-envo-01000357.html","alkaline water"],["brackish-estuary-envo-00002137.html","brackish estuary"],["underground-water-envo-00005792.html","underground water"]],"b":[["Pfam%3APF03883","Peroxide stress protein YaaA"],["Pfam%3APF04751","Dual-action ribosomal maturation protein DarP"],["Pfam%3APF04356","Protein of unknown function (DUF489)"]]},{"id":"NCBITaxon:6239","l":"Caenorhabditis elegans","na":2,"nb":9682,"a":[["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.14.14.-","With reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.17.-","With reduced ascorbate as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.19.-","With oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water"],["EC%3A1.14.99.-","Miscellaneous"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii DSM 2661","na":2,"nb":5181,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["EC%3A1.12.99.-","With other acceptors"],["EC%3A1.3.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.3.-.-","Acting on the CH-CH group of donors"],["EC%3A1.8.98.-","With other, known, acceptors"],["EC%3A1.97.1.-","Other oxidoreductases"],["EC%3A2.1.2.-","Hydroxymethyl-, formyl- and related transferases"]]},{"id":"NCBITaxon:83331","l":"Mycobacterium tuberculosis CDC1551","na":2,"nb":99,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["Pfam%3APF09407","AbiEi antitoxin C-terminal domain"],["Pfam%3APF17668","Acetyltransferase (GNAT) domain"],["Pfam%3APF13480","Acetyltransferase (GNAT) domain"],["Pfam%3APF13527","Acetyltransferase (GNAT) domain"],["Pfam%3APF16701","Adenylate cyclase regulatory domain"],["Pfam%3APF06029","AlkA N-terminal domain"]]},{"id":"NCBITaxon:9031","l":"Gallus gallus","na":2,"nb":48,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["Pfam%3APF16620","Unstructured linker between I-set domains 2 and 3 on MYLCK"],["Pfam%3APF15512","Chromatin assembly factor complex 1 subunit p60, C-terminal"],["Pfam%3APF18130","ATP-grasp N-terminal domain"],["Pfam%3APF15632","ATP-grasp in the biosynthetic pathway with Ter operon"],["Pfam%3APF01382","Avidin family"],["Pfam%3APF08072","BDHCT (NUC031) domain"]]},{"id":"NCBITaxon:266940","l":"Kineococcus radiotolerans SRS30216 = ATCC BAA-149","na":38,"nb":2,"a":[["air-envo-00002005.html","air"],["bay-envo-00000032.html","bay"],["coastal-sea-water-envo-00002150.html","coastal sea water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"]],"b":[["Pfam%3APF01083","Cutinase"],["TED%3AAF-A6WE06-F1-model_v4_TED06","TED novel fold AF-A6WE06-F1-model_v4_TED06"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":33,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["pond-water-envo-00002228.html","pond water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["water-body-envo-00000063.html","water body"]],"b":[["Pfam%3APF22538","Hexaprenyl diphosphate synthase, small subunit"],["PROSITE%3APS01066","Undecaprenyl pyrophosphate synthase family signature"]]},{"id":"NCBITaxon:9541","l":"Macaca fascicularis","na":2,"nb":27,"a":[["neritic-epipelagic-zone-biome-envo-01000042.html","neritic epipelagic zone biome"],["sea-shore-envo-00000485.html","sea shore"]],"b":[["Pfam%3APF16618","Linker region between SH3 and WW domains on ARHGAP12"],["Pfam%3APF28426","ATRIP C-terminal domain"],["Pfam%3APF28409","ATR-interacting protein N-terminal domain"],["Pfam%3APF23998","BTBDG BTB/POZ domain"],["Pfam%3APF21059","BTB/POZ domain-containing protein 16, C-terminal domain"],["Pfam%3APF12366","Cancer susceptibility candidate 1 C-terminal"]]},{"id":"NCBITaxon:4577","l":"Zea mays","na":2,"nb":18,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["IDPO%3A0000002","disorder"],["Pfam%3APF14861","Plant antimicrobial peptide"],["Pfam%3APF02041","Auxin binding protein"],["Pfam%3APF25436","BSD2 cysteine rich domain"],["Pfam%3APF23493","Cysteinyl-tRNA ligase anticodon binding domain"],["Pfam%3APF03330","Lytic transglycolase"]]},{"id":"NCBITaxon:85963","l":"Helicobacter pylori J99","na":2,"nb":18,"a":[["anaerobic-sludge-blanket-reactor-envo-00002213.html","anaerobic sludge blanket reactor"],["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["Pfam%3APF15437","Plasminogen-binding protein pgbA C-terminal"],["Pfam%3APF02293","AmiS/UreI family transporter"],["Pfam%3APF26365","Apolipoprotein N-acyltransferase integral membrane domain"],["Pfam%3APF16730","DnaG-primase C-terminal, helicase-binding domain"],["Pfam%3APF10398","Protein of unknown function (DUF2443)"],["Pfam%3APF13099","Domain of unknown function (DUF3944)"]]},{"id":"NCBITaxon:176299","l":"Agrobacterium fabrum str. C58","na":2,"nb":17,"a":[["human-construction-envo-00000070.html","human construction"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF28403","Aconitase X second domain"],["Pfam%3APF28406","Aconitase X third domain"],["Pfam%3APF04412","Aconitase X first domain"],["Pfam%3APF01989","Aconitase X swivel domain"]]},{"id":"NCBITaxon:272631","l":"Mycobacterium leprae TN","na":2,"nb":16,"a":[["peripheral-blood-mononuclear-cell-bto-0001025.html","peripheral blood mononuclear cell"],["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["Pfam%3APF26519","Biotin synthase auxiliary protein family"],["Pfam%3APF24481","CT398-like coiled coil hairpin domain"],["Pfam%3APF09438","Domain of unknown function (DUF2017)"],["Pfam%3APF12089","Transmembrane domain of unknown function (DUF3566)"],["Pfam%3APF12823","Domain of unknown function (DUF3817)"],["Pfam%3APF19187","PafC helix-turn-helix domain"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":2,"nb":16,"a":[["feces-uberon-0001988.html","feces"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["Pfam%3APF05932","Tir chaperone protein (CesT) family"],["Pfam%3APF17656","FlgA N-terminal domain"],["Pfam%3APF22200","ExsA N-terminal regulatory domain"],["Pfam%3APF05171","Haemin-degrading HemS.ChuX domain"],["Pfam%3APF07201","HrpJ-like domain"],["Pfam%3APF04391","Protein of unknown function (DUF533)"]]},{"id":"NCBITaxon:1580","l":"Levilactobacillus brevis","na":14,"nb":2,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["organic-waste-material-envo-00002873.html","organic waste material"],["research-facility-envo-00000469.html","research facility"],["food-fermented-foodon-00001258.html","food (fermented)"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["caco-2-cell-bto-0000195.html","CACO-2 cell"]],"b":[["TED%3AAF-A0A2A3TVW3-F1-model_v4_TED01","TED novel fold AF-A0A2A3TVW3-F1-model_v4_TED01"],["TED%3AAF-A0A7Z6MPZ0-F1-model_v4_TED02","TED novel fold AF-A0A7Z6MPZ0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:574521","l":"Escherichia coli O127:H6 str. E2348/69","na":2,"nb":13,"a":[["enterocyte-bto-0000398.html","enterocyte"],["gut-epithelium-bto-0000956.html","gut epithelium"]],"b":[["IDPO%3A0000006","order"],["IDPO%3A0000045","phosphorylation display site"],["Pfam%3APF02369","Bacterial Ig-like domain (group 1)"],["Pfam%3APF05307","Bundlin"],["Pfam%3APF27328","EcpD C-terminal domain"],["Pfam%3APF11924","Inverse autotransporter, beta-domain"]]},{"id":"NCBITaxon:58172","l":"Paenibacillus sp.","na":12,"nb":2,"a":[["factory-envo-01000536.html","factory"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["Pfam%3APF03442","Carbohydrate binding domain X2"],["TED%3AAF-A0A357M9E9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A357M9E9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:234267","l":"Candidatus Solibacter usitatus Ellin6076","na":11,"nb":2,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["pond-water-envo-00002228.html","pond water"],["aquatic-environment-envo-01000317.html","aquatic environment"],["desert-sand-envo-00005800.html","desert sand"],["environmental-material-envo-00010483.html","environmental material"],["mud-envo-01000001.html","mud"]],"b":[["TED%3AAF-Q01YB9-F1-model_v4_TED05","TED highly-symmetric fold AF-Q01YB9-F1-model_v4_TED05"],["TED%3AAF-Q02DA0-F1-model_v4_TED01","TED highly-symmetric fold AF-Q02DA0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:31234","l":"Caenorhabditis remanei","na":2,"nb":11,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"]],"b":[["TED%3AAF-A0A260YVB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A260YVB9-F1-model_v4_TED01"],["TED%3AAF-A0A2P4UZM7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2P4UZM7-F1-model_v4_TED02"],["TED%3AAF-A0A6A5GBX3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A5GBX3-F1-model_v4_TED01"],["TED%3AAF-A0A6A5H6H5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A5H6H5-F1-model_v4_TED01"],["TED%3AAF-A0A6A5HK12-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6A5HK12-F1-model_v4_TED02"],["TED%3AAF-E3LF65-F1-model_v4_TED02","TED highly-symmetric fold AF-E3LF65-F1-model_v4_TED02"]]},{"id":"NCBITaxon:190650","l":"Caulobacter vibrioides CB15","na":2,"nb":10,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["IDPO%3A0000060","self-assembly"],["Pfam%3APF27198","FlaEY third domain"],["Pfam%3APF22367","Flagellar hook protein FlgE, third domain"],["Pfam%3APF03799","Cell division protein FtsQ/DivIB, C-terminal"],["Pfam%3APF27294","HfaA"],["Pfam%3APF27277","Holdfast attachment protein D"]]},{"id":"NCBITaxon:853","l":"Faecalibacterium prausnitzii","na":2,"nb":10,"a":[["coral-reef-envo-00000150.html","coral reef"],["tropical-envo-01000204.html","tropical"]],"b":[["TED%3AAF-A0A2A7AJ69-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A7AJ69-F1-model_v4_TED01"],["TED%3AAF-A0A329UNG0-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A329UNG0-F1-model_v4_TED05"],["TED%3AAF-A0A3F3JVN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3F3JVN3-F1-model_v4_TED01"],["TED%3AAF-A0A564SWB8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A564SWB8-F1-model_v4_TED02"],["TED%3AAF-A0A173SIF7-F1-model_v4_TED01","TED novel fold AF-A0A173SIF7-F1-model_v4_TED01"],["TED%3AAF-A0A173WYP6-F1-model_v4_TED01","TED novel fold AF-A0A173WYP6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:166","l":"Treponema sp.","na":2,"nb":9,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["TED%3AAF-A0A351Z2H3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A351Z2H3-F1-model_v4_TED01"],["TED%3AAF-A0A356K0W2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A356K0W2-F1-model_v4_TED02"],["TED%3AAF-A0A3B8WTM6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3B8WTM6-F1-model_v4_TED02"],["TED%3AAF-A0A3C1HX51-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3C1HX51-F1-model_v4_TED03"],["TED%3AAF-A0A521IH80-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521IH80-F1-model_v4_TED01"],["TED%3AAF-A0A7X8IF67-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X8IF67-F1-model_v4_TED01"]]},{"id":"NCBITaxon:190485","l":"Xanthomonas campestris pv. campestris str. ATCC 33913","na":2,"nb":9,"a":[["fruit-bto-0000486.html","fruit"],["vascular-tissue-bto-0001432.html","vascular tissue"]],"b":[["Pfam%3APF28546","TonB transmembrane helix"],["Pfam%3APF00325","Bacterial regulatory proteins, crp family"],["Pfam%3APF06165","Glycosyl hydrolase 94, supersandwich domain"],["Pfam%3APF12019","Type II transport protein GspH"],["Pfam%3APF22059","Glucuronosyltransferase GumK, N-terminal domain"],["Pfam%3APF14307","Glycosyltransferase WbsX"]]},{"id":"NCBITaxon:272624","l":"Legionella pneumophila subsp. pneumophila str. Philadelphia 1","na":2,"nb":9,"a":[["underground-water-envo-00005792.html","underground water"],["macrophage-bto-0000801.html","macrophage"]],"b":[["Pfam%3APF22170","Phosphocholine transferase AnkX insertion domain"],["Pfam%3APF23127","DotM, C-terminal cytoplasmic domain"],["Pfam%3APF14860","DrrA phosphatidylinositol 4-phosphate binding domain"],["Pfam%3APF01346","Domain amino terminal to FKBP-type peptidyl-prolyl isomerase"],["Pfam%3APF19335","Heavy metal binding domain"],["Pfam%3APF26393","Lart1 ADP-ribosyltransferase family"]]},{"id":"NCBITaxon:1074","l":"Rhodoblastus acidophilus","na":8,"nb":2,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"],["liquid-water-envo-00002006.html","liquid water"],["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["rhizosphere-envo-00005801.html","rhizosphere"]],"b":[["PROSITE%3APS00969","Antenna complexes beta subunits signature"],["TED%3AAF-A0A6N8DR15-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8DR15-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1655","l":"Actinomyces naeslundii","na":8,"nb":2,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"],["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"],["archeological-site-envo-00000564.html","archeological site"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Pfam%3APF16555","Gram-positive pilin subunit D1, N-terminal domain"],["TED%3AAF-A0A2Z5QNH6-F1-model_v4_TED02","TED novel fold AF-A0A2Z5QNH6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2702","l":"Gardnerella vaginalis","na":8,"nb":2,"a":[["egg-food-product-foodon-00001274.html","egg food product"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["TED%3AAF-A0A133NUL7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A133NUL7-F1-model_v4_TED01"],["TED%3AAF-A0A3E2C3X9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3E2C3X9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":8,"nb":2,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"]],"b":[["TED%3AAF-A0A6N3WS12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N3WS12-F1-model_v4_TED01"],["TED%3AAF-A0A3R7GIU2-F1-model_v4_TED02","TED novel fold AF-A0A3R7GIU2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:419947","l":"Mycobacterium tuberculosis H37Ra","na":2,"nb":8,"a":[["clay-envo-00002982.html","clay"],["paddy-field-envo-00000297.html","paddy field"]],"b":[["Pfam%3APF17668","Acetyltransferase (GNAT) domain"],["Pfam%3APF13527","Acetyltransferase (GNAT) domain"],["Pfam%3APF02261","Aspartate decarboxylase"],["Pfam%3APF07584","Aerotolerance regulator N-terminal"],["Pfam%3APF03993","Domain of Unknown Function (DUF349)"],["Pfam%3APF02313","Fumarate reductase subunit D"]]},{"id":"NCBITaxon:467705","l":"Streptococcus gordonii str. Challis substr. CH1","na":2,"nb":8,"a":[["dental-plaque-bto-0000338.html","dental plaque"],["tooth-bto-0000397.html","tooth"]],"b":[["Pfam%3APF18652","Adhesin P1 N-terminal domain"],["Pfam%3APF17998","Cell surface antigen I/II C2 terminal domain"],["Pfam%3APF16364","Cell surface antigen C-terminus"],["Pfam%3APF18938","Atypical Rib domain"],["Pfam%3APF20164","GspA/SrpA SigLec-like domain"],["Pfam%3APF08363","Glucan-binding protein C"]]},{"id":"NCBITaxon:1231","l":"Nitrosospira multiformis","na":7,"nb":2,"a":[["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["biome-envo-00000428.html","biome"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"],["sludge-envo-00002044.html","sludge"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"]],"b":[["TED%3AAF-A0A1I0DRD9-F1-model_v4_TED01","TED novel fold AF-A0A1I0DRD9-F1-model_v4_TED01"],["TED%3AAF-A0A2T5IBV5-F1-model_v4_TED01","TED novel fold AF-A0A2T5IBV5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1911","l":"Streptomyces griseus","na":2,"nb":7,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["Pfam%3APF13207","AAA domain"],["Pfam%3APF27054","Beta-methylindole-3-pyruvate reductase C-terminal domain"],["Pfam%3APF26558","3-dehydroquinate synthase II C-terminal domain"],["Pfam%3APF01959","3-dehydroquinate synthase II N-terminal domain"],["Pfam%3APF13459","4Fe-4S single cluster domain"],["Pfam%3APF04655","Aminoglycoside/hydroxyurea antibiotic resistance kinase"]]},{"id":"NCBITaxon:216773","l":"Corethron hystrix","na":2,"nb":7,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"],["saline-water-envo-00002010.html","saline water"]],"b":[["TED%3AAF-A0A7S1B7I7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1B7I7-F1-model_v4_TED01"],["TED%3AAF-A0A7S1BDF8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1BDF8-F1-model_v4_TED01"],["TED%3AAF-A0A7S1BL96-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1BL96-F1-model_v4_TED01"],["TED%3AAF-A0A7S1FKX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1FKX2-F1-model_v4_TED01"],["TED%3AAF-A0A7S1BFC1-F1-model_v4_TED01","TED novel fold AF-A0A7S1BFC1-F1-model_v4_TED01"],["TED%3AAF-A0A7S1BX15-F1-model_v4_TED02","TED novel fold AF-A0A7S1BX15-F1-model_v4_TED02"]]},{"id":"NCBITaxon:379508","l":"Lodderomyces elongisporus (strain ATCC 11503 / CBS 2605 / JCM 1781 / NBRC 1676 / NRRL YB-4239)","na":2,"nb":7,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"],["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["Pfam%3APF28272","AIM11 N-terminal domain"],["Pfam%3APF23681","ATP-dependent rRNA helicase SPB4-like, C-terminal tail"],["Pfam%3APF01987","Mitochondrial biogenesis AIM24"],["Pfam%3APF17052","Cap associated factor"],["PROSITE%3APS00885","EPSP synthase signature 2"],["TED%3AAF-A5DUG9-F1-model_v4_TED01","TED novel fold AF-A5DUG9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1184267","l":"Pseudobdellovibrio exovorus JSS","na":6,"nb":2,"a":[["stream-envo-00000023.html","stream"],["biome-envo-00000428.html","biome"],["desert-biome-envo-01000179.html","desert biome"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["TED%3AAF-M4VA20-F1-model_v4_TED02","TED highly-symmetric fold AF-M4VA20-F1-model_v4_TED02"],["TED%3AAF-M4VEE5-F1-model_v4_TED01","TED highly-symmetric fold AF-M4VEE5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:34003","l":"Paracoccus aminophilus","na":6,"nb":2,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["small-river-biome-envo-00000890.html","small river biome"],["water-scum-envo-00005794.html","water scum"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"],["stony-desert-envo-00000183.html","stony desert"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["Pfam%3APF26354","N,N-dimethylformamidase alpha subunit"],["Pfam%3APF20254","N,N-dimethylformamidase beta subunit-like, C-terminal"]]},{"id":"NCBITaxon:353153","l":"Trypanosoma cruzi strain CL Brener","na":2,"nb":6,"a":[["amastigote-bto-0000062.html","amastigote"],["kinetoplastid-bto-0002502.html","kinetoplastid"]],"b":[["Pfam%3APF03738","Glutathionylspermidine synthase preATP-grasp"],["TED%3AAF-Q4D5Q0-F1-model_v4_TED01","TED highly-symmetric fold AF-Q4D5Q0-F1-model_v4_TED01"],["TED%3AAF-Q4CQE1-F1-model_v4_TED01","TED novel fold AF-Q4CQE1-F1-model_v4_TED01"],["TED%3AAF-Q4DRS0-F1-model_v4_TED01","TED novel fold AF-Q4DRS0-F1-model_v4_TED01"],["TED%3AAF-Q4DY69-F1-model_v4_TED01","TED novel fold AF-Q4DY69-F1-model_v4_TED01"],["TED%3AAF-Q4E0W9-F1-model_v4_TED01","TED novel fold AF-Q4E0W9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":2,"nb":6,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["Pfam%3APF01177","Asp/Glu/Hydantoin racemase"],["Pfam%3APF11339","Protein of unknown function (DUF3141)"],["PROSITE%3APS01303","BCCT family of transporters signature"],["PROSITE%3APS00665","Dihydrodipicolinate synthase signature 1"],["TED%3AAF-A0A2J0YSD4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J0YSD4-F1-model_v4_TED01"],["TED%3AAF-A0A843ZNG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843ZNG8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:446","l":"Legionella pneumophila","na":6,"nb":2,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["hospital-envo-00002173.html","hospital"],["macrophage-bto-0000801.html","macrophage"],["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["Pfam%3APF14860","DrrA phosphatidylinositol 4-phosphate binding domain"],["TED%3AAF-A0A822WCM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A822WCM6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:523849","l":"Thermococcus litoralis DSM 5473","na":2,"nb":6,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["Pfam%3APF09094","Alpha-amylase/4-alpha-glucanotransferase, middle domain"],["Pfam%3APF09095","Alpha-amylase/4-alpha-glucanotransferase, C-terminal"],["Pfam%3APF28476","Glycogen phosphorylase C-terminal domain"],["Pfam%3APF11897","Protein of unknown function (DUF3417)"],["PROSITE%3APS01334","Pyrrolidone-carboxylate peptidase cysteine active site"],["PROSITE%3APS01333","Pyrrolidone-carboxylate peptidase glutamic acid active site"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":2,"nb":6,"a":[["hospital-envo-00002173.html","hospital"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["Pfam%3APF16376","N-terminal domain of fragilysin"],["TED%3AAF-A0A412XR06-F1-model_v4_TED03","TED novel fold AF-A0A412XR06-F1-model_v4_TED03"],["TED%3AAF-A0A4V1EUI2-F1-model_v4_TED02","TED novel fold AF-A0A4V1EUI2-F1-model_v4_TED02"],["TED%3AAF-A0A5C6IXH5-F1-model_v4_TED01","TED novel fold AF-A0A5C6IXH5-F1-model_v4_TED01"],["TED%3AAF-A0A5C6L6G9-F1-model_v4_TED02","TED novel fold AF-A0A5C6L6G9-F1-model_v4_TED02"],["TED%3AAF-A0A642KY52-F1-model_v4_TED01","TED novel fold AF-A0A642KY52-F1-model_v4_TED01"]]},{"id":"UBERON:0001046","l":"","na":6,"nb":2,"a":[["hindgut-habitatmech-gold-38f60a7f52.html","Hindgut"],["hindgut-habitatmech-gold-e323c98727.html","Hindgut"],["hindgut-habitatmech-gold-19840c718e.html","Hindgut"],["hindgut-habitatmech-gold-c336fb0bb7.html","Hindgut"],["hindgut-habitatmech-gold-50722c7871.html","Hindgut"],["paunch-p3-segment-habitatmech-gold-86aef52360.html","Paunch/P3 segment"]],"b":[["GO%3A0043133","hindgut contraction"],["GO%3A0043134","regulation of hindgut contraction"]]},{"id":"NCBITaxon:1055524","l":"Burkholderia cenocepacia H111","na":2,"nb":5,"a":[["k-562-cell-bto-0000664.html","K-562 cell"],["macrophage-bto-0000801.html","macrophage"]],"b":[["Pfam%3APF20148","Domain of unknown function (DUF6531)"],["Pfam%3APF14430","Immunity protein Imm1"],["Pfam%3APF05488","PAAR motif"],["Pfam%3APF03527","RHS protein"],["Pfam%3APF05593","RHS Repeat"]]},{"id":"NCBITaxon:1121264","l":"Caloranaerobacter azorensis DSM 13643","na":5,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["sea-envo-00000016.html","sea"],["ridge-envo-00000283.html","ridge"],["trough-envo-00000499.html","trough"]],"b":[["TED%3AAF-A0A1M5V0T2-F1-model_v4_TED02","TED novel fold AF-A0A1M5V0T2-F1-model_v4_TED02"],["TED%3AAF-A0A1M5V0T2-F1-model_v4_TED03","TED novel fold AF-A0A1M5V0T2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1245","l":"Leuconostoc mesenteroides","na":5,"nb":2,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["leaf-po-0025034.html","leaf"],["animal-manure-envo-00003031.html","animal manure"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["Pfam%3APF08951","Bacteriocin immunity protein family"],["TED%3AAF-A0A8B5R1X5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B5R1X5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:143495","l":"Aneurinibacillus thermoaerophilus","na":5,"nb":2,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["Pfam%3APF05523","WxcM-like, C-terminal"],["TED%3AAF-A0A1G8FMF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G8FMF4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:145262","l":"Methanothermobacter thermautotrophicus","na":5,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["intestine-environment-envo-2100002.html","intestine environment"],["sludge-envo-00002044.html","sludge"]],"b":[["Pfam%3APF12686","Protein of unknown function (DUF3800)"],["PROSITE%3APS00093","N-4 cytosine-specific DNA methylases signature"]]},{"id":"NCBITaxon:2021","l":"Thermobifida fusca","na":2,"nb":5,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["Pfam%3APF00553","Cellulose binding domain"],["Pfam%3APF01341","Glycosyl hydrolases family 6"],["PROSITE%3APS00561","CBM2a (carbohydrate-binding type-2) domain signature"],["PROSITE%3APS00655","Glycosyl hydrolases family 6 signature 1"],["PROSITE%3APS00656","Glycosyl hydrolases family 6 signature 2"]]},{"id":"NCBITaxon:37919","l":"Rhodococcus opacus","na":5,"nb":2,"a":[["watercourse-envo-00000029.html","watercourse"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"],["sludge-envo-00002044.html","sludge"],["water-scum-envo-00005794.html","water scum"]],"b":[["Pfam%3APF11794","4-hydroxyphenylacetate 3-hydroxylase N terminal"],["Pfam%3APF03241","4-hydroxyphenylacetate 3-hydroxylase C terminal"]]},{"id":"NCBITaxon:393133","l":"Listeria monocytogenes 10403S","na":2,"nb":5,"a":[["lymphocyte-bto-0000775.html","lymphocyte"],["spleen-bto-0001281.html","spleen"]],"b":[["Pfam%3APF07698","7TM receptor with intracellular HD hydrolase"],["Pfam%3APF07697","7TM-HD extracellular"],["Pfam%3APF24898","Cyclic-di-AMP phosphodiesterase GdpP-like, GGDEF domain"],["Pfam%3APF19293","CdaA N-terminal transmembrane domain"],["Pfam%3APF04346","Ethanolamine utilisation protein, EutH"]]},{"id":"NCBITaxon:394096","l":"Hyalangium minutum","na":2,"nb":5,"a":[["wood-bto-0005516.html","wood"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["TED%3AAF-A0A085W4M3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085W4M3-F1-model_v4_TED01"],["TED%3AAF-A0A085WRA7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085WRA7-F1-model_v4_TED01"],["TED%3AAF-A0A085WWM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085WWM4-F1-model_v4_TED01"],["TED%3AAF-A0A085W7S5-F1-model_v4_TED03","TED novel fold AF-A0A085W7S5-F1-model_v4_TED03"],["TED%3AAF-A0A085WH04-F1-model_v4_TED01","TED novel fold AF-A0A085WH04-F1-model_v4_TED01"]]},{"id":"NCBITaxon:529","l":"Brucella anthropi","na":5,"nb":2,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["hospital-envo-00002173.html","hospital"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF07930","D-aminopeptidase, domain B"],["TED%3AAF-A0A7T4IBJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T4IBJ8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":5,"nb":2,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["pseudostem-bto-0005992.html","pseudostem"],["seedling-bto-0001228.html","seedling"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["soil-envo-00001998.html","soil"]],"b":[["PROSITE%3APS00336","Beta-lactamase class-C active site"],["TED%3AAF-A0A155XQ59-F1-model_v4_TED02","TED novel fold AF-A0A155XQ59-F1-model_v4_TED02"]]},{"id":"NCBITaxon:556","l":"Dickeya chrysanthemi","na":2,"nb":5,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["Pfam%3APF18390","Glycogen debranching enzyme C-terminal domain"],["Pfam%3APF25994","AprE, long alpha-helical hairpin"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF03812","2-keto-3-deoxygluconate permease"],["Pfam%3APF09589","HrpA pilus formation protein"]]},{"id":"NCBITaxon:63737","l":"Nostoc punctiforme PCC 73102","na":2,"nb":5,"a":[["heterocyst-bto-0000600.html","heterocyst"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["Pfam%3APF11266","Long-chain fatty aldehyde decarbonylase"],["Pfam%3APF21808","Bacterial dynamin-like protein, helical domain"],["Pfam%3APF18460","Heterocyst differentiation regulator C-terminal Hood domain"],["Pfam%3APF13619","KTSC domain"],["PROSITE%3APS01026","Photosystem I psaG and psaK proteins signature"]]},{"id":"NCBITaxon:6945","l":"Ixodes scapularis","na":5,"nb":2,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["city-envo-00000856.html","city"],["midgut-bto-0000863.html","midgut"],["nymph-bto-0000954.html","nymph"],["salivary-gland-bto-0001203.html","salivary gland"]],"b":[["TED%3AAF-A0A4D5RH31-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4D5RH31-F1-model_v4_TED01"],["TED%3AAF-B7Q616-F1-model_v4_TED01","TED highly-symmetric fold AF-B7Q616-F1-model_v4_TED01"]]},{"id":"NCBITaxon:76114","l":"Aromatoleum aromaticum EbN1","na":2,"nb":5,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["Pfam%3APF08882","Acetone carboxylase gamma subunit"],["Pfam%3APF19278","Hydantoinase/oxoprolinase C-terminal domain"],["Pfam%3APF05378","Hydantoinase/oxoprolinase N-terminal region"],["Pfam%3APF01968","Hydantoinase/oxoprolinase"],["Pfam%3APF02538","Hydantoinase B/oxoprolinase"]]},{"id":"NCBITaxon:885","l":"Desulfovibrio sp.","na":5,"nb":2,"a":[["marine-water-body-envo-00001999.html","marine water body"],["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["sludge-envo-00002044.html","sludge"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["TED%3AAF-A0A6N8BWZ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8BWZ8-F1-model_v4_TED01"],["TED%3AAF-A0A2E3RAH3-F1-model_v4_TED02","TED novel fold AF-A0A2E3RAH3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:100884","l":"Coprobacillus cateniformis","na":4,"nb":2,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["gut-bto-0000545.html","gut"],["sediment-envo-00002007.html","sediment"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-E7G7Y6-F1-model_v4_TED01","TED highly-symmetric fold AF-E7G7Y6-F1-model_v4_TED01"],["TED%3AAF-E7G976-F1-model_v4_TED02","TED highly-symmetric fold AF-E7G976-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1122192","l":"Marinactinospora thermotolerans DSM 45154","na":4,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["ocean-trench-envo-00000275.html","ocean trench"],["oceanic-zone-envo-00000207.html","oceanic zone"],["trough-envo-00000499.html","trough"]],"b":[["TED%3AAF-A0A1T4KF05-F1-model_v4_TED04","TED novel fold AF-A0A1T4KF05-F1-model_v4_TED04"],["TED%3AAF-A0A1T4TG93-F1-model_v4_TED01","TED novel fold AF-A0A1T4TG93-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1254","l":"Pediococcus acidilactici","na":4,"nb":2,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["research-facility-envo-00000469.html","research facility"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["Pfam%3APF01721","Class II bacteriocin"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":4,"nb":2,"a":[["stream-envo-00000023.html","stream"],["biome-envo-00000428.html","biome"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["Pfam%3APF02052","Gallidermin"],["Pfam%3APF04604","Type-A lantibiotic"]]},{"id":"NCBITaxon:1334","l":"Streptococcus dysgalactiae","na":4,"nb":2,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["Pfam%3APF20746","Endo-beta-N-acetylglucosaminidase F2, Ig-like domain"],["Pfam%3APF23952","Endo-beta-N-acetylglucosaminidase EndoS LRR domain"]]},{"id":"NCBITaxon:1401","l":"Paenibacillus lautus","na":2,"nb":4,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["Pfam%3APF18448","Carbohydrate binding domain"],["Pfam%3APF12891","Glycoside hydrolase family 44"],["TED%3AAF-A0A328VZ83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A328VZ83-F1-model_v4_TED01"],["TED%3AAF-A0A385TU82-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A385TU82-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1525","l":"Neomoorella thermoacetica","na":2,"nb":4,"a":[["liquid-water-envo-00002006.html","liquid water"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["Pfam%3APF25461","Selenocysteine-specific elongation factor, beta-barrel domain"],["Pfam%3APF18537","Carbon monoxide dehydrogenase subunit alpha N-terminal domain"],["Pfam%3APF04060","Putative Fe-S cluster"],["Pfam%3APF03599","CO dehydrogenase/acetyl-CoA synthase delta subunit"]]},{"id":"NCBITaxon:2045","l":"Pimelobacter simplex","na":2,"nb":4,"a":[["petroleum-envo-00002984.html","petroleum"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["Pfam%3APF00775","Dioxygenase"],["Pfam%3APF04444","Catechol dioxygenase N terminus"],["PROSITE%3APS00083","Intradiol ring-cleavage dioxygenases signature"],["TED%3AAF-A0A4Y3NBY1-F1-model_v4_TED01","TED novel fold AF-A0A4Y3NBY1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:262316","l":"Mycobacterium avium subsp. paratuberculosis K-10","na":2,"nb":4,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF19288","CofH/MqnC C-terminal region"],["Pfam%3APF03601","Conserved hypothetical protein 698"],["PROSITE%3APS60002","Phosphoketolase signature 1"],["PROSITE%3APS60003","Phosphoketolase signature 2"]]},{"id":"NCBITaxon:264462","l":"Bdellovibrio bacteriovorus HD100","na":4,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-Q6MMM6-F1-model_v4_TED01","TED novel fold AF-Q6MMM6-F1-model_v4_TED01"],["TED%3AAF-Q6MPT8-F1-model_v4_TED01","TED novel fold AF-Q6MPT8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:266265","l":"Paraburkholderia xenovorans LB400","na":2,"nb":4,"a":[["aquifer-envo-00012408.html","aquifer"],["landfill-envo-00000533.html","landfill"]],"b":[["Pfam%3APF09290","Prokaryotic acetaldehyde dehydrogenase, dimerisation"],["Pfam%3APF04345","Chorismate lyase"],["Pfam%3APF07836","DmpG-like communication domain"],["Pfam%3APF06139","BphX-like"]]},{"id":"NCBITaxon:269800","l":"Thermobifida fusca YX","na":2,"nb":4,"a":[["compost-envo-00002170.html","compost"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["Pfam%3APF20628","Dyp-type peroxidase, C-terminal"],["Pfam%3APF04261","Dyp-type peroxidase, N-terminal"],["Pfam%3APF18374","Enolase N-terminal domain-like"],["PROSITE%3APS00909","Mandelate racemase / muconate lactonizing enzyme family signature 2"]]},{"id":"NCBITaxon:28115","l":"Porphyromonas macacae","na":4,"nb":2,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"],["mud-envo-01000001.html","mud"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["TED%3AAF-A0A379E7L0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A379E7L0-F1-model_v4_TED01"],["TED%3AAF-A0A379E9C9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A379E9C9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:285","l":"Comamonas testosteroni","na":2,"nb":4,"a":[["waste-habitatmech-bacdive-36df85e4a4.html","Waste"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["Pfam%3APF02900","Catalytic LigB subunit of aromatic ring-opening dioxygenase"],["Pfam%3APF19301","LigXa C-terminal domain like"],["TED%3AAF-A0A096HND0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A096HND0-F1-model_v4_TED01"],["TED%3AAF-A0A1Y1JCM1-F1-model_v4_TED01","TED novel fold AF-A0A1Y1JCM1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:313603","l":"Maribacter sp. HTCC2170","na":4,"nb":2,"a":[["coral-reef-envo-00000150.html","coral reef"],["hydrographic-feature-envo-00000012.html","hydrographic feature"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["TED%3AAF-A4ARA8-F1-model_v4_TED01","TED novel fold AF-A4ARA8-F1-model_v4_TED01"],["TED%3AAF-A4ARA8-F1-model_v4_TED02","TED novel fold AF-A4ARA8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans PD1222","na":2,"nb":4,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["Pfam%3APF27518","Heme exporter protein C"],["Pfam%3APF22039","Imidazolonepropionase-like composite domain, bacteria"],["PROSITE%3APS01181","Ribosomal protein S21 signature"],["Pfam%3APF02239","Cytochrome D1 heme domain"]]},{"id":"NCBITaxon:349307","l":"Methanothrix thermoacetophila PT","na":2,"nb":4,"a":[["rice-field-envo-00000296.html","rice field"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["Pfam%3APF06973","Domain of unknown function (DUF1297)"],["Pfam%3APF07826","IMP cyclohydrolase-like protein"],["Pfam%3APF06849","Protein of unknown function (DUF1246)"],["Pfam%3APF08714","Formaldehyde-activating enzyme (Fae)"]]},{"id":"NCBITaxon:365044","l":"Polaromonas naphthalenivorans CJ2","na":4,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["large-river-biome-envo-00000887.html","large river biome"],["waterfall-envo-00000040.html","waterfall"],["petroleum-envo-00002984.html","petroleum"]],"b":[["Pfam%3APF01888","CbiD"],["Pfam%3APF02609","Exonuclease VII small subunit"]]},{"id":"NCBITaxon:406327","l":"Methanococcus vannielii SB","na":2,"nb":4,"a":[["estuary-envo-00000045.html","estuary"],["mudflat-envo-00000192.html","mudflat"]],"b":[["Pfam%3APF06787","FeGP cofactor biosynthesis protein HcgF"],["Pfam%3APF04476","4-HFC-P synthase"],["Pfam%3APF27030","AbpE bacteria"],["Pfam%3APF09840","Uncharacterized protein conserved in archaea (DUF2067)"]]},{"id":"NCBITaxon:497965","l":"Gloeothece verrucosa PCC 7822","na":2,"nb":4,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["TED%3AAF-E0UJA0-F1-model_v4_TED01","TED highly-symmetric fold AF-E0UJA0-F1-model_v4_TED01"],["TED%3AAF-E0U6M3-F1-model_v4_TED03","TED novel fold AF-E0U6M3-F1-model_v4_TED03"],["TED%3AAF-E0UE39-F1-model_v4_TED02","TED novel fold AF-E0UE39-F1-model_v4_TED02"],["TED%3AAF-E0UM93-F1-model_v4_TED01","TED novel fold AF-E0UM93-F1-model_v4_TED01"]]},{"id":"NCBITaxon:500485","l":"Penicillium rubens Wisconsin 54-1255","na":2,"nb":4,"a":[["finger-bto-0004669.html","finger"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["Pfam%3APF03417","Acyl-coenzyme A:6-aminopenicillanic acid acyl-transferase"],["Pfam%3APF03659","Glycosyl hydrolase family 71"],["PROSITE%3APS00185","Isopenicillin N synthase signature 1"],["PROSITE%3APS00186","Isopenicillin N synthase signature 2"]]},{"id":"NCBITaxon:529507","l":"Proteus mirabilis HI4320","na":2,"nb":4,"a":[["needle-bto-0000917.html","needle"],["spinal-cord-bto-0001279.html","spinal cord"]],"b":[["Pfam%3APF02028","BCCT, betaine/carnitine/choline family transporter"],["PROSITE%3APS01303","BCCT family of transporters signature"],["PROSITE%3APS01120","Urease nickel ligands signature"],["PROSITE%3APS00145","Urease active site"]]},{"id":"NCBITaxon:556484","l":"Phaeodactylum tricornutum CCAP 1055/1","na":2,"nb":4,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["TED%3AAF-B7GAJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-B7GAJ8-F1-model_v4_TED01"],["TED%3AAF-B7G520-F1-model_v4_TED02","TED novel fold AF-B7G520-F1-model_v4_TED02"],["TED%3AAF-B7G8V4-F1-model_v4_TED02","TED novel fold AF-B7G8V4-F1-model_v4_TED02"],["TED%3AAF-B7GB31-F1-model_v4_TED01","TED novel fold AF-B7GB31-F1-model_v4_TED01"]]},{"id":"NCBITaxon:60552","l":"Burkholderia vietnamiensis","na":4,"nb":2,"a":[["hospital-envo-00002173.html","hospital"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["TED%3AAF-A0A1G5M5D3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G5M5D3-F1-model_v4_TED02"],["TED%3AAF-A0A2Z6TW79-F1-model_v4_TED01","TED novel fold AF-A0A2Z6TW79-F1-model_v4_TED01"]]},{"id":"NCBITaxon:678","l":"Vibrio sp.","na":4,"nb":2,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["aquaculture-farm-envo-03600074.html","aquaculture farm"],["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["Pfam%3APF17851","Beta xylosidase C-terminal Concanavalin A-like domain"],["Pfam%3APF11606","Family 31 carbohydrate binding protein"]]},{"id":"NCBITaxon:83552","l":"Parachlamydia acanthamoebae","na":2,"nb":4,"a":[["elementary-body-bto-0000377.html","elementary body"],["hep-2-cell-bto-0000976.html","HEp-2 cell"]],"b":[["TED%3AAF-A0A0C1C0X3-F1-model_v4_TED01","TED novel fold AF-A0A0C1C0X3-F1-model_v4_TED01"],["TED%3AAF-A0A0C1C9D0-F1-model_v4_TED03","TED novel fold AF-A0A0C1C9D0-F1-model_v4_TED03"],["TED%3AAF-A0A0C1CAV8-F1-model_v4_TED03","TED novel fold AF-A0A0C1CAV8-F1-model_v4_TED03"],["TED%3AAF-A0A0C1ECC2-F1-model_v4_TED03","TED novel fold AF-A0A0C1ECC2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1019","l":"Capnocytophaga sputigena","na":3,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["biotope-envo-00002036.html","biotope"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-A0A3S4WAY3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S4WAY3-F1-model_v4_TED01"],["TED%3AAF-A0A2A3N675-F1-model_v4_TED02","TED novel fold AF-A0A2A3N675-F1-model_v4_TED02"]]},{"id":"NCBITaxon:102129","l":"Leptolyngbya sp. PCC 7375","na":2,"nb":3,"a":[["undersea-feature-envo-00000104.html","undersea feature"],["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["TED%3AAF-K9ELM8-F1-model_v4_TED01","TED highly-symmetric fold AF-K9ELM8-F1-model_v4_TED01"],["TED%3AAF-K9F3N8-F1-model_v4_TED02","TED highly-symmetric fold AF-K9F3N8-F1-model_v4_TED02"],["TED%3AAF-K9FA28-F1-model_v4_TED01","TED novel fold AF-K9FA28-F1-model_v4_TED01"]]},{"id":"NCBITaxon:103796","l":"Pseudomonas syringae pv. actinidiae","na":2,"nb":3,"a":[["leaf-po-0025034.html","leaf"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["Pfam%3APF05425","Copper resistance protein D"],["TED%3AAF-J7I956-F1-model_v4_TED01","TED highly-symmetric fold AF-J7I956-F1-model_v4_TED01"],["TED%3AAF-J7IG33-F1-model_v4_TED01","TED highly-symmetric fold AF-J7IG33-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1071","l":"Rhodopila globiformis","na":3,"nb":2,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["TED%3AAF-A0A2S6NEC8-F1-model_v4_TED01","TED novel fold AF-A0A2S6NEC8-F1-model_v4_TED01"],["TED%3AAF-A0A2S6NJW5-F1-model_v4_TED01","TED novel fold AF-A0A2S6NJW5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1120925","l":"Acinetobacter bouvetii DSM 14964 = CIP 107468","na":3,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["proteintraitsmech%3AELIFE109154_VibH_like","VibH-like metallophore standalone condensation enzyme family"],["TED%3AAF-N9C7M4-F1-model_v4_TED02","TED novel fold AF-N9C7M4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1122961","l":"Picrophilus oshimae DSM 9789","na":2,"nb":3,"a":[["volcanic-field-envo-00000354.html","volcanic field"],["volcano-envo-00000247.html","volcano"]],"b":[["Pfam%3APF22578","Geranylgeranyl reductase catalytic domain"],["Pfam%3APF04038","Dihydroneopterin aldolase"],["Pfam%3APF16912","Glucose dehydrogenase C-terminus"]]},{"id":"NCBITaxon:1238","l":"Piscirickettsia salmonis","na":3,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["sea-water-envo-00002149.html","sea water"],["stream-envo-00000023.html","stream"]],"b":[["TED%3AAF-A0A0K2DZD9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0K2DZD9-F1-model_v4_TED01"],["TED%3AAF-A0A1L6TBT4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6TBT4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1249","l":"Weissella paramesenteroides","na":3,"nb":2,"a":[["cecum-bto-0000166.html","cecum"],["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"]],"b":[["Pfam%3APF01874","ATP:dephospho-CoA triphosphoribosyl transferase"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"]]},{"id":"NCBITaxon:1334565","l":"Listeria monocytogenes EGD","na":2,"nb":3,"a":[["liver-bto-0000759.html","liver"],["spleen-bto-0001281.html","spleen"]],"b":[["Pfam%3APF09479","Listeria-Bacteroides repeat domain (List_Bact_rpt)"],["Pfam%3APF13457","GW (Gly-Tryp) dipeptide domain"],["Pfam%3APF12354","Bacterial adhesion/invasion protein N terminal"]]},{"id":"NCBITaxon:1380357","l":"Rhodospirillales bacterium URHD0017","na":3,"nb":2,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["TED%3AAF-A0A1H8SNT0-F1-model_v4_TED02","TED novel fold AF-A0A1H8SNT0-F1-model_v4_TED02"],["TED%3AAF-A0A1H8Y0S7-F1-model_v4_TED02","TED novel fold AF-A0A1H8Y0S7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1387353","l":"Paludisphaera borealis","na":3,"nb":2,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["filament-bto-0000463.html","filament"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A1U7CK02-F1-model_v4_TED02","TED novel fold AF-A0A1U7CK02-F1-model_v4_TED02"],["TED%3AAF-A0A1U7CMS9-F1-model_v4_TED03","TED novel fold AF-A0A1U7CMS9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:154046","l":"Hungatella hathewayi","na":3,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["TED%3AAF-A0A3E3DRT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3E3DRT8-F1-model_v4_TED01"],["TED%3AAF-A0A174BLS4-F1-model_v4_TED01","TED novel fold AF-A0A174BLS4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1541063","l":"Prolixibacter denitrificans","na":3,"nb":2,"a":[["environmental-system-envo-01000254.html","environmental system"],["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"]],"b":[["TED%3AAF-A0A2P8CHN5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P8CHN5-F1-model_v4_TED01"],["TED%3AAF-A0A2P8CKY9-F1-model_v4_TED01","TED novel fold AF-A0A2P8CKY9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:157687","l":"Leptotrichia wadei","na":3,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["grassland-soil-envo-00005750.html","grassland soil"],["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["TED%3AAF-A0A510KFE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A510KFE6-F1-model_v4_TED01"],["TED%3AAF-A0A510KJX4-F1-model_v4_TED02","TED novel fold AF-A0A510KJX4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1582","l":"Lacticaseibacillus casei","na":3,"nb":2,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["Pfam%3APF07475","HPr Serine kinase C-terminal domain"],["PROSITE%3APS01163","Galactose-1-phosphate uridyl transferase family 2 signature"]]},{"id":"NCBITaxon:1597","l":"Lacticaseibacillus paracasei","na":3,"nb":2,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["Pfam%3APF09136","Glucodextranase, domain B"],["Pfam%3APF08109","Lactocin 705 family"]]},{"id":"NCBITaxon:1629","l":"Weissella viridescens","na":3,"nb":2,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["Pfam%3APF02388","FemAB family"],["TED%3AAF-A0A3P2RFX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3P2RFX7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1680","l":"Bifidobacterium adolescentis","na":2,"nb":3,"a":[["brain-bto-0000142.html","brain"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["TED%3AAF-A0A1X2Z2R7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1X2Z2R7-F1-model_v4_TED02"],["TED%3AAF-A0A1X2Z7X6-F1-model_v4_TED02","TED novel fold AF-A0A1X2Z7X6-F1-model_v4_TED02"],["TED%3AAF-A0A1X2ZNR8-F1-model_v4_TED04","TED novel fold AF-A0A1X2ZNR8-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1810840","l":"Piscirickettsiaceae bacterium NZ-RLO1","na":3,"nb":2,"a":[["bhk-21-cell-bto-0000120.html","BHK-21 cell"],["endothelial-progenitor-cell-bto-0004093.html","endothelial progenitor cell"],["sf-21-cell-bto-0001196.html","SF-21 cell"]],"b":[["TED%3AAF-A0A177W3E9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A177W3E9-F1-model_v4_TED03"],["TED%3AAF-A0A177W3K1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A177W3K1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:190304","l":"Fusobacterium nucleatum subsp. nucleatum ATCC 25586","na":2,"nb":3,"a":[["fibroblast-bto-0000452.html","fibroblast"],["gingival-epithelium-bto-0004998.html","gingival epithelium"]],"b":[["Pfam%3APF05853","beta-keto acid cleavage enzyme"],["Pfam%3APF26317","Histidine racemase CntK N-terminal domain"],["Pfam%3APF26370","L-erythro-3,5-diaminohexanoate dehydrogenase N-terminal domain"]]},{"id":"NCBITaxon:192","l":"Azospirillum brasilense","na":2,"nb":3,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF24931","ACR9-like, ACT-like domain"],["Pfam%3APF27444","Uridylyltransferase GlnD third domain"],["TED%3AAF-A0A235H319-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A235H319-F1-model_v4_TED01"]]},{"id":"NCBITaxon:192066","l":"Neisseria sp.","na":2,"nb":3,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["TED%3AAF-A0A496JVX2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A496JVX2-F1-model_v4_TED03"],["TED%3AAF-A0A496L0X3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A496L0X3-F1-model_v4_TED01"],["TED%3AAF-A0A496JRN7-F1-model_v4_TED02","TED novel fold AF-A0A496JRN7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:213810","l":"Ruminococcus champanellensis 18P13 = JCM 17042","na":3,"nb":2,"a":[["environmental-feature-envo-00002297.html","environmental feature"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["pig-manure-envo-00003860.html","pig manure"]],"b":[["TED%3AAF-D4LAY2-F1-model_v4_TED01","TED novel fold AF-D4LAY2-F1-model_v4_TED01"],["TED%3AAF-D4LBV4-F1-model_v4_TED01","TED novel fold AF-D4LBV4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:216595","l":"Pseudomonas [fluorescens] SBW25","na":3,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["human-construction-envo-00000070.html","human construction"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["Pfam%3APF04996","Succinylarginine dihydrolase"],["TED%3AAF-A0A0G4E5V4-F1-model_v4_TED01","TED novel fold AF-A0A0G4E5V4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:239935","l":"Akkermansia muciniphila","na":3,"nb":2,"a":[["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["secretion-bto-0002979.html","secretion"]],"b":[["TED%3AAF-A0A2N8IJN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N8IJN7-F1-model_v4_TED01"],["TED%3AAF-A0A6N2UM07-F1-model_v4_TED01","TED novel fold AF-A0A6N2UM07-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2751","l":"Carnobacterium maltaromaticum","na":3,"nb":2,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["food-habitatmech-madin-81cb9e74cb.html","food"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["Pfam%3APF09221","Bacteriocin class IId cyclical uberolysin-like"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"]]},{"id":"NCBITaxon:28454","l":"Sphingobacterium multivorum","na":3,"nb":2,"a":[["mud-envo-01000001.html","mud"],["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["TED%3AAF-A0A7T9NU88-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T9NU88-F1-model_v4_TED01"],["TED%3AAF-A0A7T9PGY4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T9PGY4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:313606","l":"Microscilla marina ATCC 23134","na":3,"nb":2,"a":[["coral-reef-envo-00000150.html","coral reef"],["liquid-water-envo-00002006.html","liquid water"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["TED%3AAF-A1ZH11-F1-model_v4_TED02","TED novel fold AF-A1ZH11-F1-model_v4_TED02"],["TED%3AAF-A1ZSU9-F1-model_v4_TED01","TED novel fold AF-A1ZSU9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:314275","l":"Alteromonas mediterranea","na":2,"nb":3,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A1J0SAZ8-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1J0SAZ8-F1-model_v4_TED04"],["TED%3AAF-A0A1J0SA48-F1-model_v4_TED01","TED novel fold AF-A0A1J0SA48-F1-model_v4_TED01"],["TED%3AAF-A0A1J0SX60-F1-model_v4_TED02","TED novel fold AF-A0A1J0SX60-F1-model_v4_TED02"]]},{"id":"NCBITaxon:331117","l":"Aspergillus fischeri NRRL 181","na":2,"nb":3,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["Pfam%3APF23681","ATP-dependent rRNA helicase SPB4-like, C-terminal tail"],["Pfam%3APF16803","Fe-S cluster assembly protein DRE2 N-terminus"],["Pfam%3APF02012","BNR/Asp-box repeat"]]},{"id":"NCBITaxon:357809","l":"Lachnoclostridium phytofermentans ISDg","na":2,"nb":3,"a":[["reservoir-envo-00000025.html","reservoir"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["Pfam%3APF09508","Lacto-N-biose phosphorylase N-terminal TIM barrel domain"],["Pfam%3APF17386","Lacto-N-biose phosphorylase C-terminal domain"],["Pfam%3APF17385","Lacto-N-biose phosphorylase central domain"]]},{"id":"NCBITaxon:362242","l":"Mycobacterium ulcerans Agy99","na":2,"nb":3,"a":[["subcutaneous-tissue-bto-0004525.html","subcutaneous tissue"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF02654","Cobalamin-5-phosphate synthase"],["Pfam%3APF02622","AlgH-like"],["Pfam%3APF01628","HrcA protein C terminal domain"]]},{"id":"NCBITaxon:375","l":"Bradyrhizobium japonicum","na":3,"nb":2,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["TED%3AAF-A0A1L3FD53-F1-model_v4_TED02","TED novel fold AF-A0A1L3FD53-F1-model_v4_TED02"],["TED%3AAF-A0A1L3FDV4-F1-model_v4_TED02","TED novel fold AF-A0A1L3FDV4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:391587","l":"Kordia algicida OT-1","na":2,"nb":3,"a":[["coral-reef-envo-00000150.html","coral reef"],["soil-envo-00001998.html","soil"]],"b":[["TED%3AAF-A9DJI5-F1-model_v4_TED02","TED highly-symmetric fold AF-A9DJI5-F1-model_v4_TED02"],["TED%3AAF-A9E7Y3-F1-model_v4_TED02","TED highly-symmetric fold AF-A9E7Y3-F1-model_v4_TED02"],["TED%3AAF-A9E6S0-F1-model_v4_TED02","TED novel fold AF-A9E6S0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:394503","l":"Ruminiclostridium cellulolyticum H10","na":2,"nb":3,"a":[["agricultural-waste-material-envo-01000371.html","agricultural waste material"],["compost-envo-00002170.html","compost"]],"b":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["PROSITE%3APS00812","Glycosyl hydrolases family 8 signature"],["Pfam%3APF01270","Glycosyl hydrolases family 8"]]},{"id":"NCBITaxon:39486","l":"Dorea formicigenerans","na":2,"nb":3,"a":[["adult-bto-0001043.html","adult"],["juvenile-bto-0002168.html","juvenile"]],"b":[["TED%3AAF-A0A3E5ESC3-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A3E5ESC3-F1-model_v4_TED05"],["TED%3AAF-A0A412MBB7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A412MBB7-F1-model_v4_TED01"],["TED%3AAF-A0A412MF47-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A412MF47-F1-model_v4_TED02"]]},{"id":"NCBITaxon:400667","l":"Acinetobacter baumannii ATCC 17978","na":2,"nb":3,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"],["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["Pfam%3APF17074","Darcynin, domain of unknown function"],["Pfam%3APF05232","Chlorhexidine efflux transporter"],["Pfam%3APF05662","Coiled stalk of trimeric autotransporter adhesin"]]},{"id":"NCBITaxon:400946","l":"Wohlfahrtiimonas chitiniclastica","na":3,"nb":2,"a":[["foot-bto-0000476.html","foot"],["pancreas-bto-0000988.html","pancreas"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["TED%3AAF-A0A256BUL6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A256BUL6-F1-model_v4_TED01"],["TED%3AAF-A0A256BUL6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A256BUL6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:40214","l":"Acinetobacter johnsonii","na":3,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["pitcher-bto-0001069.html","pitcher"],["water-scum-envo-00005794.html","water scum"]],"b":[["Pfam%3APF12973","ChrR Cupin-like domain"],["Pfam%3APF13807","G-rich domain on putative tyrosine kinase"]]},{"id":"NCBITaxon:402880","l":"Methanococcus maripaludis C5","na":2,"nb":3,"a":[["marsh-envo-00000035.html","marsh"],["wetland-area-envo-00000043.html","wetland area"]],"b":[["Pfam%3APF02553","Cobalt transport protein component CbiN"],["Pfam%3APF18195","GatD N-terminal domain"],["Pfam%3APF01941","S-adenosylmethionine synthetase (AdoMet synthetase)"]]},{"id":"NCBITaxon:41899","l":"Burkholderia plantarii","na":2,"nb":3,"a":[["panicle-bto-0005436.html","panicle"],["seedling-bto-0001228.html","seedling"]],"b":[["proteintraitsmech%3AELIFE109154_GrbD","GrbD-type graminine biosynthesis protein family"],["proteintraitsmech%3AELIFE109154_GrbE","GrbE-type graminine biosynthesis protein family"],["TED%3AAF-A0A0B6RMB1-F1-model_v4_TED01","TED novel fold AF-A0A0B6RMB1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:523846","l":"Methanothermus fervidus DSM 2088","na":3,"nb":2,"a":[["mountain-envo-00000081.html","mountain"],["seamount-envo-00000264.html","seamount"],["volcano-envo-00000247.html","volcano"]],"b":[["Pfam%3APF02829","3H domain"],["Pfam%3APF27272","Cyclic 2,3-diphosphoglycerate synthetase, N-terminal domain"]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":3,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"]],"b":[["Pfam%3APF07833","Copper amine oxidase N-terminal domain"],["TED%3AAF-A0A447L715-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A447L715-F1-model_v4_TED02"]]},{"id":"NCBITaxon:59919","l":"Prochlorococcus marinus subsp. pastoris str. CCMP1986","na":3,"nb":2,"a":[["marginal-sea-biome-envo-01000046.html","marginal sea biome"],["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"],["sea-envo-00000016.html","sea"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF12288","Carboxysome shell peptide mid-region"]]},{"id":"NCBITaxon:65393","l":"Gloeothece citriformis PCC 7424","na":2,"nb":3,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["Pfam%3APF13720","Udp N-acetylglucosamine O-acyltransferase; Domain 2"],["TED%3AAF-B7K6Y8-F1-model_v4_TED03","TED novel fold AF-B7K6Y8-F1-model_v4_TED03"],["TED%3AAF-B7KGW4-F1-model_v4_TED01","TED novel fold AF-B7KGW4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:6669","l":"Daphnia pulex","na":3,"nb":2,"a":[["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"],["neritic-epipelagic-zone-biome-envo-01000042.html","neritic epipelagic zone biome"],["sea-shore-envo-00000485.html","sea shore"]],"b":[["TED%3AAF-E9GQ61-F1-model_v4_TED02","TED novel fold AF-E9GQ61-F1-model_v4_TED02"],["TED%3AAF-E9I2W7-F1-model_v4_TED04","TED novel fold AF-E9I2W7-F1-model_v4_TED04"]]},{"id":"NCBITaxon:714","l":"Aggregatibacter actinomycetemcomitans","na":2,"nb":3,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["Pfam%3APF10137","CAP12/Pycsar effector protein, TIR domain"],["Pfam%3APF25988","CyaD, alpha-helical hairpin domain"],["PROSITE%3APS00543","HlyD family secretion proteins signature"]]},{"id":"NCBITaxon:8090","l":"Oryzias latipes","na":2,"nb":3,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["Pfam%3APF24979","EDAR death domain"],["Pfam%3APF24796","WDR55"],["TED%3AAF-A0A3P9JIT2-F1-model_v4_TED01","TED novel fold AF-A0A3P9JIT2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:889378","l":"Spirochaeta africana DSM 8902","na":3,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["alkaline-water-envo-01000357.html","alkaline water"],["brine-envo-00003044.html","brine"]],"b":[["TED%3AAF-H9UHS0-F1-model_v4_TED01","TED highly-symmetric fold AF-H9UHS0-F1-model_v4_TED01"],["TED%3AAF-H9UIK6-F1-model_v4_TED01","TED novel fold AF-H9UIK6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1032476","l":"Nonomuraea soli","na":2,"nb":2,"a":[["soil-envo-00001998.html","soil"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-A0A7W0HQS4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7W0HQS4-F1-model_v4_TED03"],["TED%3AAF-A0A7W0CFM2-F1-model_v4_TED01","TED novel fold AF-A0A7W0CFM2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1110509","l":"Methanothrix harundinacea 6Ac","na":2,"nb":2,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["cob-bto-0000266.html","cob"]],"b":[["Pfam%3APF05228","CHASE4 domain"],["Pfam%3APF08350","Methanogenesis regulatory protein FilR1, middle domain"]]},{"id":"NCBITaxon:1121395","l":"Desulfitobacterium chlororespirans DSM 11544","na":2,"nb":2,"a":[["compost-envo-00002170.html","compost"],["waste-material-envo-00002264.html","waste material"]],"b":[["TED%3AAF-A0A1M7UUA6-F1-model_v4_TED02","TED novel fold AF-A0A1M7UUA6-F1-model_v4_TED02"],["TED%3AAF-A0A1M7UUA6-F1-model_v4_TED03","TED novel fold AF-A0A1M7UUA6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1295","l":"Staphylococcus schleiferi","na":2,"nb":2,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["foot-bto-0000476.html","foot"]],"b":[["Pfam%3APF18153","Cap15, cyclic dinucleotide receptor domain"],["Pfam%3APF26305","cGAS/DncV-like nucleotidyltransferase C-terminal helical domain"]]},{"id":"NCBITaxon:1303","l":"Streptococcus oralis","na":2,"nb":2,"a":[["throat-bto-0000828.html","throat"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Pfam%3APF03047","COMC family"],["TED%3AAF-A0A139PPG4-F1-model_v4_TED02","TED novel fold AF-A0A139PPG4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1527","l":"Anaerocolumna aminovalerica","na":2,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"]],"b":[["TED%3AAF-A0A1I5I955-F1-model_v4_TED02","TED novel fold AF-A0A1I5I955-F1-model_v4_TED02"],["TED%3AAF-A0A1I5ILH1-F1-model_v4_TED04","TED novel fold AF-A0A1I5ILH1-F1-model_v4_TED04"]]},{"id":"NCBITaxon:156889","l":"Magnetococcus marinus MC-1","na":2,"nb":2,"a":[["estuary-envo-00000045.html","estuary"],["marine-neritic-zone-envo-00000206.html","marine neritic zone"]],"b":[["Pfam%3APF02622","AlgH-like"],["Pfam%3APF04279","Intracellular septation protein A"]]},{"id":"NCBITaxon:180282","l":"Delftia tsuruhatensis","na":2,"nb":2,"a":[["surface-water-envo-00002042.html","surface water"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["TED%3AAF-A0A1D8JBF2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1D8JBF2-F1-model_v4_TED01"],["TED%3AAF-A0A5P8XEZ5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5P8XEZ5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:194963","l":"Sinorhizobium americanum","na":2,"nb":2,"a":[["root-nodule-envo-01000164.html","root nodule"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["TED%3AAF-A0A2S3YNG1-F1-model_v4_TED01","TED novel fold AF-A0A2S3YNG1-F1-model_v4_TED01"],["TED%3AAF-A0A4R2AWY1-F1-model_v4_TED01","TED novel fold AF-A0A4R2AWY1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2024826","l":"Blastopirellula sp.","na":2,"nb":2,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["TED%3AAF-A0A2E0B0H3-F1-model_v4_TED02","TED novel fold AF-A0A2E0B0H3-F1-model_v4_TED02"],["TED%3AAF-A0A2G2IUT2-F1-model_v4_TED02","TED novel fold AF-A0A2G2IUT2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:257314","l":"Lactobacillus johnsonii NCC 533","na":2,"nb":2,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["Pfam%3APF10439","Bacteriocin class II with double-glycine leader peptide"],["Pfam%3APF02435","Levansucrase/Invertase"]]},{"id":"NCBITaxon:271848","l":"Burkholderia thailandensis E264","na":2,"nb":2,"a":[["needle-bto-0000917.html","needle"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["Pfam%3APF12091","Protein of unknown function (DUF3567)"],["Pfam%3APF01075","Glycosyltransferase family 9 (heptosyltransferase)"]]},{"id":"NCBITaxon:2748","l":"Carnobacterium divergens","na":2,"nb":2,"a":[["food-product-foodon-00001002.html","food product"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["TED%3AAF-A0A7Z8CZ16-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Z8CZ16-F1-model_v4_TED02"],["TED%3AAF-A0A5F0MGI8-F1-model_v4_TED01","TED novel fold AF-A0A5F0MGI8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28141","l":"Cronobacter sakazakii","na":2,"nb":2,"a":[["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["TED%3AAF-A0A855WTZ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A855WTZ2-F1-model_v4_TED01"],["TED%3AAF-A0A855WPZ3-F1-model_v4_TED01","TED novel fold AF-A0A855WPZ3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28185","l":"Spirochaeta sp.","na":2,"nb":2,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["TED%3AAF-A0A3C0SUV0-F1-model_v4_TED03","TED novel fold AF-A0A3C0SUV0-F1-model_v4_TED03"],["TED%3AAF-A0A6N7M3Q7-F1-model_v4_TED01","TED novel fold AF-A0A6N7M3Q7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:283166","l":"Bartonella henselae str. Houston-1","na":2,"nb":2,"a":[["endothelial-cell-bto-0001176.html","endothelial cell"],["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["Pfam%3APF18543","Intracellular delivery domain"],["Pfam%3APF03524","Conjugal transfer protein"]]},{"id":"NCBITaxon:393664","l":"Aliirhizobium cellulosilyticum","na":2,"nb":2,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["TED%3AAF-A0A7W4XHJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W4XHJ9-F1-model_v4_TED01"],["TED%3AAF-A0A7W4SSW3-F1-model_v4_TED01","TED novel fold AF-A0A7W4SSW3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:39488","l":"Anaerobutyricum hallii","na":2,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"],["harbour-envo-00000463.html","harbour"]],"b":[["TED%3AAF-A0A414B1Y3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A414B1Y3-F1-model_v4_TED01"],["TED%3AAF-A0A415G3S7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A415G3S7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:39490","l":"Eubacterium ramulus","na":2,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"],["harbour-envo-00000463.html","harbour"]],"b":[["TED%3AAF-A0A173V5Z6-F1-model_v4_TED02","TED novel fold AF-A0A173V5Z6-F1-model_v4_TED02"],["TED%3AAF-A0A2V1JWA1-F1-model_v4_TED05","TED novel fold AF-A0A2V1JWA1-F1-model_v4_TED05"]]},{"id":"NCBITaxon:399741","l":"Serratia proteamaculans 568","na":2,"nb":2,"a":[["pleura-bto-0001791.html","pleura"],["seedling-bto-0001228.html","seedling"]],"b":[["Pfam%3APF09012","FeoC like transcriptional regulator"],["Pfam%3APF05488","PAAR motif"]]},{"id":"NCBITaxon:426128","l":"Natronincola peptidivorans","na":2,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["TED%3AAF-A0A1I0EK12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I0EK12-F1-model_v4_TED01"],["TED%3AAF-A0A1I0H2J6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I0H2J6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:426418","l":"Pyrenophora tritici-repentis Pt-1C-BFP","na":2,"nb":2,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-B2VYP9-F1-model_v4_TED01","TED novel fold AF-B2VYP9-F1-model_v4_TED01"],["TED%3AAF-B2VZ40-F1-model_v4_TED02","TED novel fold AF-B2VZ40-F1-model_v4_TED02"]]},{"id":"NCBITaxon:435590","l":"Phocaeicola vulgatus ATCC 8482","na":2,"nb":2,"a":[["bay-envo-00000032.html","bay"],["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["Pfam%3APF13444","Acetyltransferase (GNAT) domain"],["Pfam%3APF19576","Acyltransferase"]]},{"id":"NCBITaxon:474952","l":"Granulicella rosea","na":2,"nb":2,"a":[["wetland-area-envo-00000043.html","wetland area"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A239KLB2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A239KLB2-F1-model_v4_TED01"],["TED%3AAF-A0A239CX56-F1-model_v4_TED02","TED novel fold AF-A0A239CX56-F1-model_v4_TED02"]]},{"id":"NCBITaxon:479434","l":"Sphaerobacter thermophilus DSM 20745","na":2,"nb":2,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-D1C926-F1-model_v4_TED01","TED highly-symmetric fold AF-D1C926-F1-model_v4_TED01"],["TED%3AAF-D1C9G8-F1-model_v4_TED01","TED highly-symmetric fold AF-D1C9G8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:48296","l":"Acinetobacter pittii","na":2,"nb":2,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["TED%3AAF-A0A3R9S6D0-F1-model_v4_TED03","TED novel fold AF-A0A3R9S6D0-F1-model_v4_TED03"],["TED%3AAF-A0A6P1SKX2-F1-model_v4_TED04","TED novel fold AF-A0A6P1SKX2-F1-model_v4_TED04"]]},{"id":"NCBITaxon:55209","l":"Pantoea cypripedii","na":2,"nb":2,"a":[["leaf-po-0025034.html","leaf"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["Pfam%3APF13618","Gluconate 2-dehydrogenase subunit 3"],["TED%3AAF-A0A1X1EQM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1X1EQM9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:56811","l":"Psychrobacter sp.","na":2,"nb":2,"a":[["marine-water-body-envo-00001999.html","marine water body"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["TED%3AAF-A0A350DM46-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A350DM46-F1-model_v4_TED01"],["TED%3AAF-A0A353XTU7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A353XTU7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:572546","l":"Archaeoglobus profundus DSM 5631","na":2,"nb":2,"a":[["inlet-envo-00000475.html","inlet"],["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["TED%3AAF-D2RFB5-F1-model_v4_TED02","TED highly-symmetric fold AF-D2RFB5-F1-model_v4_TED02"],["TED%3AAF-D2RE38-F1-model_v4_TED02","TED novel fold AF-D2RE38-F1-model_v4_TED02"]]},{"id":"NCBITaxon:577","l":"Klebsiella terrigena","na":2,"nb":2,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["TED%3AAF-A0A485AWY7-F1-model_v4_TED01","TED novel fold AF-A0A485AWY7-F1-model_v4_TED01"],["TED%3AAF-A0A4U9DC68-F1-model_v4_TED02","TED novel fold AF-A0A4U9DC68-F1-model_v4_TED02"]]},{"id":"NCBITaxon:59201","l":"Salmonella enterica subsp. enterica","na":2,"nb":2,"a":[["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["TED%3AAF-A0A711ED47-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A711ED47-F1-model_v4_TED01"],["TED%3AAF-A0A5U3EZQ4-F1-model_v4_TED01","TED novel fold AF-A0A5U3EZQ4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:59405","l":"Thauera aromatica","na":2,"nb":2,"a":[["sludge-envo-00002044.html","sludge"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF18512","Benzylsuccinate synthase beta subunit"],["Pfam%3APF08201","BssC/TutF protein"]]},{"id":"NCBITaxon:61646","l":"Lelliottia amnigena","na":2,"nb":2,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["Pfam%3APF17425","Arylsulfotransferase Ig-like domain"],["Pfam%3APF05935","Arylsulfotransferase (ASST)"]]},{"id":"NCBITaxon:633","l":"Yersinia pseudotuberculosis","na":2,"nb":2,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["Pfam%3APF03421","YopJ Serine/Threonine acetyltransferase"],["Pfam%3APF01041","DegT/DnrJ/EryC1/StrS aminotransferase family"]]},{"id":"NCBITaxon:647113","l":"Methanothermococcus okinawensis IH1","na":2,"nb":2,"a":[["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["TED%3AAF-F8ANV0-F1-model_v4_TED01","TED highly-symmetric fold AF-F8ANV0-F1-model_v4_TED01"],["TED%3AAF-F8AK92-F1-model_v4_TED02","TED novel fold AF-F8AK92-F1-model_v4_TED02"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":2,"nb":2,"a":[["watercourse-envo-00000029.html","watercourse"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["TED%3AAF-B5UAE0-F1-model_v4_TED01","TED highly-symmetric fold AF-B5UAE0-F1-model_v4_TED01"],["TED%3AAF-A0A3E1IF45-F1-model_v4_TED01","TED novel fold AF-A0A3E1IF45-F1-model_v4_TED01"]]},{"id":"NCBITaxon:7029","l":"Acyrthosiphon pisum","na":2,"nb":2,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["TED%3AAF-J9KQC4-F1-model_v4_TED01","TED novel fold AF-J9KQC4-F1-model_v4_TED01"],["TED%3AAF-J9L4U4-F1-model_v4_TED02","TED novel fold AF-J9L4U4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:7209","l":"Loa loa","na":2,"nb":2,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["TED%3AAF-A0A1I7VCR8-F1-model_v4_TED01","TED novel fold AF-A0A1I7VCR8-F1-model_v4_TED01"],["TED%3AAF-A0A1S0U4H9-F1-model_v4_TED02","TED novel fold AF-A0A1S0U4H9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:746697","l":"Aequorivita sublithincola DSM 14238","na":2,"nb":2,"a":[["hill-envo-00000083.html","hill"],["seamount-envo-00000264.html","seamount"]],"b":[["TED%3AAF-I3YW66-F1-model_v4_TED01","TED highly-symmetric fold AF-I3YW66-F1-model_v4_TED01"],["TED%3AAF-I3YWC3-F1-model_v4_TED01","TED highly-symmetric fold AF-I3YWC3-F1-model_v4_TED01"]]},{"id":"UBERON:0001723","l":"","na":2,"nb":2,"a":[["tongue-habitatmech-gold-334001c233.html","Tongue"],["tongue-habitatmech-gold-8587dba825.html","Tongue"]],"b":[["GO%3A0043586","tongue development"],["GO%3A0043587","tongue morphogenesis"]]},{"id":"GO:0005622","l":"intracellular anatomical structure","na":1,"nb":524,"a":[["molluscan-gill-intracellular-environment-habitatmech-gold-0ac09185d9.html","molluscan gill intracellular environment"]],"b":[["GO%3A0070477","endospore core"],["GO%3A0005727","extrachromosomal circular DNA"],["GO%3A0046821","extrachromosomal DNA"],["GO%3A0016234","inclusion body"],["GO%3A0005622","intracellular anatomical structure"],["GO%3A0070090","metaphase plate"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis H37Rv","na":1,"nb":297,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["IDPO%3A0000002","disorder"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000045","phosphorylation display site"],["IDPO%3A0000059","self-inhibition"],["Pfam%3APF17837","4'-phosphopantetheinyl transferase N-terminal domain"]]},{"id":"GO:0005615","l":"","na":1,"nb":292,"a":[["molluscan-gill-extracellular-environment-habitatmech-gold-6c8238add0.html","molluscan gill extracellular environment"]],"b":[["ComplexPortal%3ACPX-6224","Active Protein C complex"],["ComplexPortal%3ACPX-6222","alpha-thrombin complex"],["ComplexPortal%3ACPX-5601","Alternative pathway C3 convertase complex C3bBb"],["ComplexPortal%3ACPX-5894","Alternative pathway C3 convertase complex C3bBb"],["ComplexPortal%3ACPX-5381","Alternative pathway fluid-phase C3 convertase complex C3(H2O)Bb"],["ComplexPortal%3ACPX-5893","Alternative pathway fluid-phase C3 convertase complex C3(H2O)Bb"]]},{"id":"NCBITaxon:7955","l":"Danio rerio","na":1,"nb":261,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["IDPO%3A0000019","disorder to pre-molten globule"],["Pfam%3APF16096","Fragile X-related 1 protein C-terminal region 2"],["Pfam%3APF16605","LSM-interacting associated unstructured"],["Pfam%3APF17229","Serine/threonine-protein kinase SMG1 N-terminal"],["Pfam%3APF16195","SUMO-activating enzyme subunit 2 C-terminus"],["Pfam%3APF00709","Adenylosuccinate synthetase"]]},{"id":"NCBITaxon:1978231","l":"Acidobacteriota bacterium","na":1,"nb":186,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2E4W649-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4W649-F1-model_v4_TED01"],["TED%3AAF-A0A2P6WIX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P6WIX4-F1-model_v4_TED01"],["TED%3AAF-A0A2V2RP64-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V2RP64-F1-model_v4_TED01"],["TED%3AAF-A0A2V7TZP2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V7TZP2-F1-model_v4_TED01"],["TED%3AAF-A0A2V7USQ3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V7USQ3-F1-model_v4_TED02"],["TED%3AAF-A0A2V7V8X8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V7V8X8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa PAO1","na":1,"nb":162,"a":[["style-bto-0001313.html","style"]],"b":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF06750","Bacterial Peptidase A24 N-terminal domain"],["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF28403","Aconitase X second domain"],["Pfam%3APF28406","Aconitase X third domain"],["Pfam%3APF04412","Aconitase X first domain"]]},{"id":"NCBITaxon:71421","l":"Haemophilus influenzae Rd KW20","na":1,"nb":133,"a":[["respiratory-mucosa-bto-0000973.html","respiratory mucosa"]],"b":[["Pfam%3APF13521","AAA domain"],["Pfam%3APF13654","LonB-like, AAA domain"],["Pfam%3APF16326","ABC transporter C-terminal domain"],["Pfam%3APF13710","ACT domain"],["Pfam%3APF12633","Adenylate cyclase NT domain"],["Pfam%3APF26690","Adenylate cyclase, class-I, third domain"]]},{"id":"NCBITaxon:83334","l":"Escherichia coli O157:H7","na":1,"nb":130,"a":[["uterus-bto-0001424.html","uterus"]],"b":[["IDPO%3A0000011","disorder to order"],["IDPO%3A0000014","order to disorder"],["Pfam%3APF12343","DeaD helicase C-terminal disordered region"],["Pfam%3APF26539","YhiD C-terminal ACT domain"],["Pfam%3APF01081","KDPG and KHG aldolase"],["Pfam%3APF10423","Bacterial AMP nucleoside phosphorylase N-terminus"]]},{"id":"NCBITaxon:1898207","l":"Clostridiales bacterium","na":1,"nb":63,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["TED%3AAF-A0A239QGX8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A239QGX8-F1-model_v4_TED02"],["TED%3AAF-A0A2V2DI93-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V2DI93-F1-model_v4_TED02"],["TED%3AAF-A0A2V2EHK5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V2EHK5-F1-model_v4_TED02"],["TED%3AAF-A0A2V2G296-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2V2G296-F1-model_v4_TED03"],["TED%3AAF-A0A316P962-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A316P962-F1-model_v4_TED03"],["TED%3AAF-A0A316PDC9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A316PDC9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:233413","l":"Mycobacterium tuberculosis variant bovis AF2122/97","na":1,"nb":52,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF12625","Arabinose-binding domain of AraC transcription regulator, N-term"],["Pfam%3APF21139","Methylcrotonyl-CoA carboxylase, alpha-subunit, BT domain"],["Pfam%3APF09167","Domain of unknown function (DUF1942)"],["Pfam%3APF09438","Domain of unknown function (DUF2017)"],["Pfam%3APF12823","Domain of unknown function (DUF3817)"]]},{"id":"NCBITaxon:2026742","l":"Gemmatimonadota bacterium","na":1,"nb":49,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2D8UDK3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D8UDK3-F1-model_v4_TED02"],["TED%3AAF-A0A2E8HI53-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E8HI53-F1-model_v4_TED02"],["TED%3AAF-A0A2V7GTY6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2V7GTY6-F1-model_v4_TED03"],["TED%3AAF-A0A2V7KRA4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V7KRA4-F1-model_v4_TED01"],["TED%3AAF-A0A2V7S355-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V7S355-F1-model_v4_TED01"],["TED%3AAF-A0A3M2BQU6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M2BQU6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:186497","l":"Pyrococcus furiosus DSM 3638","na":1,"nb":41,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF01314","Aldehyde ferredoxin oxidoreductase, domains 2 & 3"],["Pfam%3APF02730","Aldehyde ferredoxin oxidoreductase, N-terminal domain"],["Pfam%3APF22476","Argonaute, N-terminal domain"],["Pfam%3APF09094","Alpha-amylase/4-alpha-glucanotransferase, middle domain"],["Pfam%3APF09095","Alpha-amylase/4-alpha-glucanotransferase, C-terminal"]]},{"id":"NCBITaxon:2","l":"Bacteria","na":40,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["factory-envo-01000536.html","factory"],["adult-bto-0001043.html","adult"]],"b":[["proteintraitsmech%3AORTHODB_LEVEL_2","Bacteria orthologous groups (OrthoDB)"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima MSB8","na":1,"nb":39,"a":[["feather-bto-0000447.html","feather"]],"b":[["Pfam%3APF02829","3H domain"],["Pfam%3APF13175","AAA ATPase domain"],["Pfam%3APF01958","Aspartate dehydrogenase, C-terminal"],["Pfam%3APF05448","Acetyl xylan esterase (AXE1)"],["Pfam%3APF04509","CheC-like family"],["Pfam%3APF13690","Chemotaxis phosphatase CheX"]]},{"id":"NCBITaxon:36987","l":"Coptotermes formosanus","na":38,"nb":1,"a":[["black-smoker-envo-00000218.html","black smoker"],["coastal-sea-water-envo-00002150.html","coastal sea water"],["eutrophic-water-envo-00002224.html","eutrophic water"],["marine-bathyal-zone-biome-envo-01000026.html","marine bathyal zone biome"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"]],"b":[["TED%3AAF-A0A6L2PKM4-F1-model_v4_TED01","TED novel fold AF-A0A6L2PKM4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:273057","l":"Saccharolobus solfataricus P2","na":1,"nb":37,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["Pfam%3APF02294","7kD DNA-binding domain"],["Pfam%3APF02675","S-adenosylmethionine decarboxylase"],["Pfam%3APF09071","Alpha-amylase, C terminal"],["Pfam%3APF17952","Cas6 N-terminal domain"],["Pfam%3APF27338","Cytochrome b558/566 subunit B"],["Pfam%3APF22703","Cdc6 AAA+ ATPase-type lid domain"]]},{"id":"NCBITaxon:1898203","l":"Lachnospiraceae bacterium","na":1,"nb":35,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["TED%3AAF-A0A2G3Q064-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G3Q064-F1-model_v4_TED01"],["TED%3AAF-A0A316PVU3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A316PVU3-F1-model_v4_TED02"],["TED%3AAF-A0A349YHB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349YHB4-F1-model_v4_TED01"],["TED%3AAF-A0A349ZVK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349ZVK2-F1-model_v4_TED01"],["TED%3AAF-A0A354ID29-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A354ID29-F1-model_v4_TED04"],["TED%3AAF-A0A355NJL5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A355NJL5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2026801","l":"Verrucomicrobiales bacterium","na":1,"nb":33,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2D5AKS0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D5AKS0-F1-model_v4_TED01"],["TED%3AAF-A0A2D9K0M4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9K0M4-F1-model_v4_TED01"],["TED%3AAF-A0A2E0QW10-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0QW10-F1-model_v4_TED01"],["TED%3AAF-A0A2E5EQN4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E5EQN4-F1-model_v4_TED02"],["TED%3AAF-A0A2E5WTV4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E5WTV4-F1-model_v4_TED01"],["TED%3AAF-A0A350EXF0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A350EXF0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:170187","l":"Streptococcus pneumoniae TIGR4","na":1,"nb":32,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["Pfam%3APF25935","LcnD-like, barrel-sandwich hybrid domain"],["Pfam%3APF22637","BppA domain 1"],["Pfam%3APF18146","Damage-inducible protein CinA KH domain"],["Pfam%3APF27342","ComB N-terminal domain"],["Pfam%3APF26697","Competence protein ComGC, C-terminal domain"],["Pfam%3APF23117","DpnD N-terminal domain"]]},{"id":"NCBITaxon:243273","l":"Mycoplasmoides genitalium G37","na":1,"nb":31,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF03257","Mycoplasma adhesin P1, C-terminal"],["Pfam%3APF09185","Domain of unknown function (DUF1948)"],["Pfam%3APF09188","Domain of unknown function (DUF1951)"],["Pfam%3APF03072","Domain of unknown function (DUF237)"],["Pfam%3APF03086","Domain of unknown function (DUF240)"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":29,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["Pfam%3APF09156","Anthrax toxin lethal factor, middle domain"],["Pfam%3APF08401","N-terminal domain of anti-restriction factor ArdC"],["Pfam%3APF07737","Anthrax toxin lethal factor, N- and C-terminal domain"],["Pfam%3APF27053","Bacillus anthracis plasmid pXO2 protein 26"],["Pfam%3APF13205","Bacterial Ig-like domain"],["Pfam%3APF17475","Clostridial binary toxin B/anthrax toxin PA domain 2"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. PCC 7120 = FACHB-418","na":1,"nb":26,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["Pfam%3APF27270","Alr1449"],["Pfam%3APF27301","Alr2735 N-terminal domain"],["Pfam%3APF27288","Alr2735"],["Pfam%3APF21571","Arginine dihydrolase ArgZ-like, C-terminal, first region"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF13205","Bacterial Ig-like domain"]]},{"id":"NCBITaxon:226186","l":"Bacteroides thetaiotaomicron VPI-5482","na":1,"nb":25,"a":[["gut-epithelium-bto-0000956.html","gut epithelium"]],"b":[["Pfam%3APF06439","3-keto-alpha-glucoside-1,2-lyase-like domain"],["Pfam%3APF13444","Acetyltransferase (GNAT) domain"],["Pfam%3APF19576","Acyltransferase"],["Pfam%3APF23764","GLAA-B beta-barrel domain II"],["Pfam%3APF13715","CarboxypepD_reg-like domain"],["Pfam%3APF26120","SusF, first starch specific CBM"]]},{"id":"NCBITaxon:160488","l":"Pseudomonas putida KT2440","na":1,"nb":24,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF00842","Alanine racemase, C-terminal domain"],["Pfam%3APF01168","Alanine racemase, N-terminal domain"],["Pfam%3APF13372","Alginate export"],["Pfam%3APF03705","CheR methyltransferase, all-alpha domain"],["Pfam%3APF01739","CheR methyltransferase, SAM binding domain"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":19,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["saline-water-body-envo-01001319.html","saline water body"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["Pfam%3APF03437","BtpA family"]]},{"id":"NCBITaxon:1871066","l":"Mesorhizobium sp.","na":1,"nb":18,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["TED%3AAF-A0A3S3GQ11-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S3GQ11-F1-model_v4_TED01"],["TED%3AAF-A0A439J515-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A439J515-F1-model_v4_TED03"],["TED%3AAF-A0A439JC49-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A439JC49-F1-model_v4_TED01"],["TED%3AAF-A0A439N076-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A439N076-F1-model_v4_TED01"],["TED%3AAF-A0A442WFH9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A442WFH9-F1-model_v4_TED03"],["TED%3AAF-A0A529PFR3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A529PFR3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1018","l":"Capnocytophaga ochracea","na":17,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["gut-bto-0000545.html","gut"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"]],"b":[["TED%3AAF-A0A2X2T3Z4-F1-model_v4_TED01","TED novel fold AF-A0A2X2T3Z4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:208963","l":"Pseudomonas aeruginosa UCBPP-PA14","na":1,"nb":17,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF21384","CRISPR-associated nuclease/helicase Cas3, I-F/YPEST, Cas2 domain"],["Pfam%3APF21802","CRISPR-associated Cas3 subtype I-F/YPEST-like, C-terminal domain"],["Pfam%3APF20975","DGC-associated coil"],["Pfam%3APF19502","Nucleotidyltransferase of unknown function (DUF6036)"]]},{"id":"NCBITaxon:210007","l":"Streptococcus mutans UA159","na":1,"nb":17,"a":[["tooth-bto-0000397.html","tooth"]],"b":[["Pfam%3APF18652","Adhesin P1 N-terminal domain"],["Pfam%3APF17998","Cell surface antigen I/II C2 terminal domain"],["Pfam%3APF16364","Cell surface antigen C-terminus"],["Pfam%3APF12733","Cadherin-like beta sandwich domain"],["Pfam%3APF05737","Collagen binding domain"],["Pfam%3APF21537","DUF1980 C-terminal domain"]]},{"id":"NCBITaxon:69014","l":"Thermococcus kodakarensis KOD1","na":1,"nb":17,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["Pfam%3APF08546","Ketopantoate reductase PanE/ApbA C terminal"],["Pfam%3APF02558","Ketopantoate reductase PanE/ApbA"],["Pfam%3APF09210","1,4-alpha-glucan branching enzyme, C-terminal"],["Pfam%3APF01861","Branched-chain polyamine synthase A C-terminal domain"],["Pfam%3APF27272","Cyclic 2,3-diphosphoglycerate synthetase, N-terminal domain"],["Pfam%3APF17884","Domain of unknown function (DUF5591)"]]},{"id":"NCBITaxon:9615","l":"Canis lupus familiaris","na":1,"nb":16,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["Pfam%3APF14797","Serine-rich region of AP3B1, clathrin-adaptor complex"],["Pfam%3APF22627","AglB core domain"],["Pfam%3APF09064","Thrombomodulin like fifth domain, EGF-like"],["Pfam%3APF14828","Amnionless"],["Pfam%3APF03669","PAT complex subunit Asterix"],["Pfam%3APF07946","PAT complex subunit CCDC47"]]},{"id":"NCBITaxon:106370","l":"Frankia casuarinae","na":14,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["river-envo-00000022.html","river"],["rhizosphere-envo-00005801.html","rhizosphere"],["root-nodule-bto-0001190.html","root nodule"],["biome-envo-00000428.html","biome"],["biotope-envo-00002036.html","biotope"]],"b":[["Pfam%3APF14403","Circularly permuted ATP-grasp type 2"]]},{"id":"NCBITaxon:1360","l":"Lactococcus lactis subsp. lactis","na":1,"nb":14,"a":[["foregut-bto-0000507.html","foregut"]],"b":[["Pfam%3APF08951","Bacteriocin immunity protein family"],["Pfam%3APF08998","Bacterial epsilon antitoxin"],["Pfam%3APF25887","LcnD-like, long helical bundle domain"],["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF25940","LcnD-like, C-terminal domain"],["Pfam%3APF08129","Alpha/beta enterocin family"]]},{"id":"NCBITaxon:1590","l":"Lactiplantibacillus plantarum","na":14,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["food-fermented-foodon-00001258.html","food (fermented)"],["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"],["breast-bto-0000149.html","breast"],["colonic-epithelium-bto-0001709.html","colonic epithelium"],["epithelial-cell-bto-0000414.html","epithelial cell"]],"b":[["Pfam%3APF06314","Acetoacetate decarboxylase (ADC)"]]},{"id":"CHEBI:16183","l":"methane","na":1,"nb":13,"a":[["methane-bioremediation-material-habitatmech-gold-d510166905.html","methane bioremediation material"]],"b":[["EC%3A1.14.13.25","methane monooxygenase (soluble)"],["EC%3A1.14.18.3","methane monooxygenase (particulate)"],["EC%3A2.8.4.1","coenzyme-B sulfoethylthiotransferase"],["EC%3A4.7.1.1","alpha-D-ribose 1-methylphosphonate 5-phosphate C-P-lyase"],["RHEA%3A34707","alpha-D-ribose 1-methylphosphonate 5-phosphate + AH2 + S-adenosyl-L-methionine = alpha-D-ribose 1,2-cyclic phosphate 5-phosphate + methane + 5'-deoxyadenosine + L-methionine + A + H(+)"],["RHEA%3A12532","coenzyme B + methyl-coenzyme M = methane + coenzyme M-coenzyme B heterodisulfide"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":13,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["Pfam%3APF07832","Cfr10I/Bse634I restriction endonuclease"],["Pfam%3APF22348","Colicin-A N-terminal domain"],["Pfam%3APF01024","Colicin pore forming domain"],["Pfam%3APF18427","DD-reactivating factor swiveling domain"],["Pfam%3APF02286","Dehydratase large subunit"],["Pfam%3APF02288","Dehydratase medium subunit"]]},{"id":"NCBITaxon:104268","l":"Tenacibaculum mesophilum","na":12,"nb":1,"a":[["bay-envo-00000032.html","bay"],["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"],["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"]],"b":[["TED%3AAF-A0A1M5HMT5-F1-model_v4_TED01","TED novel fold AF-A0A1M5HMT5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:107401","l":"Tenacibaculum maritimum","na":12,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["low-tide-zone-envo-00000319.html","low tide zone"],["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A5S9T7W6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5S9T7W6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1596","l":"Lactobacillus gasseri","na":12,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["catheter-device-ncit-c50344.html","Catheter Device"],["city-envo-00000856.html","city"],["egg-food-product-foodon-00001274.html","egg food product"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"]],"b":[["TED%3AAF-A0A845FIT3-F1-model_v4_TED02","TED novel fold AF-A0A845FIT3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus ATCC 27405","na":1,"nb":12,"a":[["blood-plasma-bto-0000131.html","blood plasma"]],"b":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["Pfam%3APF00942","Cellulose binding domain"],["Pfam%3APF17996","Carbohydrate esterase 2 N-terminal"],["Pfam%3APF00963","Cohesin domain"],["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF00404","Dockerin type I domain"]]},{"id":"NCBITaxon:272942","l":"Rhodobacter capsulatus SB 1003","na":1,"nb":12,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["Pfam%3APF02553","Cobalt transport protein component CbiN"],["Pfam%3APF03379","CcmB protein"],["Pfam%3APF27123","Carotenoid hydratase CrtC"],["Pfam%3APF14715","N-terminal domain of cytochrome oxidase-cbb3, FixP"],["Pfam%3APF07284","2-vinyl bacteriochlorophyllide hydratase (BCHF)"],["Pfam%3APF02571","Precorrin-6x reductase CbiJ/CobK"]]},{"id":"NCBITaxon:469383","l":"Conexibacter woesei DSM 14684","na":12,"nb":1,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["oil-spill-envo-00002061.html","oil spill"],["village-biome-envo-01000246.html","village biome"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["TED%3AAF-D3FEY8-F1-model_v4_TED03","TED highly-symmetric fold AF-D3FEY8-F1-model_v4_TED03"]]},{"id":"NCBITaxon:471472","l":"Chlamydia trachomatis L2/434/Bu","na":1,"nb":12,"a":[["lymph-node-bto-0000784.html","lymph node"]],"b":[["Pfam%3APF07382","Histone H1-like nucleoprotein HC2"],["Pfam%3APF05475","Pgp3 C-terminal domain"],["Pfam%3APF22368","Response regulator protein ChxR, N-terminal domain"],["Pfam%3APF01345","CLIPPER domain"],["Pfam%3APF07577","Domain of Unknown Function (DUF1547)"],["Pfam%3APF03503","Chlamydia cysteine-rich outer membrane protein 3"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":11,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"],["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["laboratory-facility-envo-01001406.html","laboratory facility"],["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["bone-element-uberon-0001474.html","bone element"],["juvenile-bto-0002168.html","juvenile"]],"b":[["Pfam%3APF08124","Polysaccharide lyase family 8, N terminal alpha-helical domain"]]},{"id":"NCBITaxon:272626","l":"Listeria innocua Clip11262","na":1,"nb":11,"a":[["heart-bto-0000562.html","heart"]],"b":[["Pfam%3APF16595","PAM-interacting domain of CRISPR-associated endonuclease Cas9"],["Pfam%3APF21846","Domain of unknown function (DUF6905)"],["Pfam%3APF27405","Lin0124 C-terminal coiled-coil domain"],["Pfam%3APF14297","Lin1244/Lin1753-like, N-terminal"],["Pfam%3APF16593","Bridge helix of CRISPR-associated endonuclease Cas9"],["Pfam%3APF16592","REC lobe of CRISPR-associated endonuclease Cas9"]]},{"id":"NCBITaxon:331112","l":"Escherichia coli HS","na":1,"nb":11,"a":[["adrenal-gland-bto-0000047.html","adrenal gland"]],"b":[["Pfam%3APF25796","BREX ATP-binding protein BrxC 4th domain with six-stranded beta sheet"],["Pfam%3APF25792","BREX ATP-binding protein BrxC alpha helical domain"],["Pfam%3APF08747","BREX protein BrxB"],["Pfam%3APF19557","BrxC/PglY, N-terminal domain"],["Pfam%3APF13337","Lon-like protease BrxL-like, ATPase domain"],["Pfam%3APF20442","BREX system Lon protease-like protein BrxL N-terminal"]]},{"id":"NCBITaxon:4113","l":"Solanum tuberosum","na":1,"nb":11,"a":[["tuber-bto-0001400.html","tuber"]],"b":[["Pfam%3APF02977","Carboxypeptidase A inhibitor"],["Pfam%3APF01474","Class-II DAHP synthetase family"],["Pfam%3APF23229","Alpha-glucan water dikinase, DUF7067"],["Pfam%3APF02446","4-alpha-glucanotransferase"],["Pfam%3APF22973","Alpha-glucan water dikinase, phosphohistidine-like domain"],["Pfam%3APF23166","Alpha-glucan water dikinase 1 Ig-like N-terminal domain"]]},{"id":"NCBITaxon:498211","l":"Cellvibrio japonicus Ueda107","na":1,"nb":11,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["Pfam%3APF17996","Carbohydrate esterase 2 N-terminal"],["Pfam%3APF02156","Glycosyl hydrolase family 26"],["Pfam%3APF02015","Glycosyl hydrolase family 45"],["Pfam%3APF07477","Glycosyl hydrolase family 67 C-terminus"],["Pfam%3APF07488","Glycosyl hydrolase family 67 middle domain"],["Pfam%3APF03648","Glycosyl hydrolase family 67 N-terminus"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":1,"nb":11,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF02085","Class III cytochrome C family"],["Pfam%3APF06397","Desulfoferrodoxin, N-terminal domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["Pfam%3APF12797","4Fe-4S binding domain"],["Pfam%3APF06180","Cobalt chelatase (CbiK)"]]},{"id":"NCBITaxon:1058","l":"Thiocapsa roseopersicina","na":10,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["saline-marsh-envo-00000054.html","saline marsh"],["river-envo-00000022.html","river"],["waste-water-envo-00002001.html","waste water"],["environmental-feature-envo-00002297.html","environmental feature"],["stromatolite-mat-envo-00002157.html","stromatolite mat"]],"b":[["Pfam%3APF27123","Carotenoid hydratase CrtC"]]},{"id":"NCBITaxon:1399","l":"Cytobacillus firmus","na":10,"nb":1,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"],["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["TED%3AAF-A0A800NFK9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A800NFK9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:147","l":"Spirochaeta aurantia","na":10,"nb":1,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["water-body-envo-00000063.html","water body"]],"b":[["Pfam%3APF06226","Protein of unknown function (DUF1007)"]]},{"id":"NCBITaxon:192222","l":"Campylobacter jejuni subsp. jejuni NCTC 11168 = ATCC 700819","na":1,"nb":10,"a":[["flagellate-bto-0000464.html","flagellate"]],"b":[["Pfam%3APF26365","Apolipoprotein N-acyltransferase integral membrane domain"],["Pfam%3APF22131","CRISPR-associated endonuclease CjCas9 PI-CTD domain"],["Pfam%3APF22129","CRISPR-associated endonuclease CjCas9 wedge domain"],["Pfam%3APF02554","Carbon starvation protein CstA"],["Pfam%3APF27310","HrcA C-terminal domain"],["Pfam%3APF05538","Campylobacter major outer membrane protein"]]},{"id":"NCBITaxon:2026795","l":"Nitrososphaerota archaeon","na":1,"nb":10,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2E0QIG3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E0QIG3-F1-model_v4_TED02"],["TED%3AAF-A0A519CY76-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A519CY76-F1-model_v4_TED02"],["TED%3AAF-A0A533VPG5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A533VPG5-F1-model_v4_TED01"],["TED%3AAF-A0A533VS28-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A533VS28-F1-model_v4_TED01"],["TED%3AAF-A0A538P7I2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A538P7I2-F1-model_v4_TED02"],["TED%3AAF-A0A662PPJ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A662PPJ2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":1,"nb":10,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["Pfam%3APF27445","Adaptation to cold protein A"],["Pfam%3APF27450","AtcB C-terminal domain"],["Pfam%3APF27486","AtcB N-terminal domain"],["Pfam%3APF02464","CinA C-terminal domain"],["Pfam%3APF13657","HipA N-terminal domain"],["Pfam%3APF01934","Ribonuclease HepT-like"]]},{"id":"NCBITaxon:266264","l":"Cupriavidus metallidurans CH34","na":1,"nb":10,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["Pfam%3APF25973","CzcB-like, barrel-sandwich hybrid domain"],["Pfam%3APF09828","ChrB, C-terminal domain"],["Pfam%3APF20229","Protein ChrB, N-terminal"],["Pfam%3APF01923","Cobalamin adenosyltransferase"],["Pfam%3APF25975","CzcB C-terminal circularly permuted SH3-like domain"],["Pfam%3APF25971","CzcB, N-terminal domain"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":10,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["air-conditioning-unit-envo-00002874.html","air conditioning unit"],["leaf-bto-0000713.html","leaf"],["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["TED%3AAF-A0A679J1E9-F1-model_v4_TED01","TED novel fold AF-A0A679J1E9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:47715","l":"Lacticaseibacillus rhamnosus","na":10,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["fermentation-starter-envo-03600040.html","fermentation starter"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["Pfam%3APF04914","DltD protein"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":1,"nb":10,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["Pfam%3APF17433","Glycosyl hydrolase family 49 N-terminal Ig-like domain"],["PROSITE%3APS00820","Glucoamylase active site region signature"],["PROSITE%3APS00920","Nitrilases / cyanide hydratase signature 1"],["PROSITE%3APS00502","Polygalacturonase active site"],["Pfam%3APF18841","Beta solenoid repeat from Dextranase"],["Pfam%3APF03718","Glycosyl hydrolase family 49"]]},{"id":"NCBITaxon:72036","l":"Lepeophtheirus salmonis","na":1,"nb":10,"a":[["sandstone-envo-00002055.html","sandstone"]],"b":[["TED%3AAF-A0A0K2T0G4-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A0K2T0G4-F1-model_v4_TED05"],["TED%3AAF-A0A0K2UM05-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0K2UM05-F1-model_v4_TED02"],["TED%3AAF-A0A0K2UVC7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0K2UVC7-F1-model_v4_TED02"],["TED%3AAF-A0A7R8CWL1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7R8CWL1-F1-model_v4_TED02"],["TED%3AAF-A0A0K2U8Q2-F1-model_v4_TED01","TED novel fold AF-A0A0K2U8Q2-F1-model_v4_TED01"],["TED%3AAF-A0A0K2U962-F1-model_v4_TED02","TED novel fold AF-A0A0K2U962-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1017","l":"Capnocytophaga gingivalis","na":9,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biotope-envo-00002036.html","biotope"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["organic-feature-envo-01000159.html","organic feature"]],"b":[["TED%3AAF-A0A250FUG5-F1-model_v4_TED01","TED novel fold AF-A0A250FUG5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:107806","l":"Buchnera aphidicola str. APS (Acyrthosiphon pisum)","na":1,"nb":9,"a":[["embryo-bto-0000379.html","embryo"]],"b":[["Pfam%3APF21157","DnaK suppressor protein DksA, N-terminal domain"],["Pfam%3APF21158","Flagellar hook-associated protein 1, D2-like domain"],["Pfam%3APF02955","Prokaryotic glutathione synthetase, ATP-grasp domain"],["Pfam%3APF02951","Prokaryotic glutathione synthetase, N-terminal domain"],["Pfam%3APF21500","DNA polymerase III subunit delta', AAA+ ATPase lid domain"],["Pfam%3APF14840","Processivity clamp loader gamma complex DNA pol III C-term"]]},{"id":"NCBITaxon:111770","l":"Thiothrix fructosivorans","na":9,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"],["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"]],"b":[["TED%3AAF-A0A8B0SKG2-F1-model_v4_TED02","TED novel fold AF-A0A8B0SKG2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1261","l":"Peptostreptococcus anaerobius","na":9,"nb":1,"a":[["dorsum-bto-0001713.html","dorsum"],["saliva-bto-0001202.html","saliva"],["sgs-cell-bto-0001210.html","SGS cell"],["tongue-bto-0001385.html","tongue"],["urine-bto-0001419.html","urine"],["vagina-bto-0000243.html","vagina"]],"b":[["TED%3AAF-A0A379CE26-F1-model_v4_TED01","TED novel fold AF-A0A379CE26-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1904441","l":"Paracoccaceae bacterium","na":1,"nb":9,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2E3PFF7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E3PFF7-F1-model_v4_TED02"],["TED%3AAF-A0A357LNH5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A357LNH5-F1-model_v4_TED01"],["TED%3AAF-A0A3D4DSL4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D4DSL4-F1-model_v4_TED01"],["TED%3AAF-A0A6L8C0Y8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L8C0Y8-F1-model_v4_TED01"],["TED%3AAF-A0A7Y2J0I6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y2J0I6-F1-model_v4_TED01"],["TED%3AAF-A0A2E0BJC7-F1-model_v4_TED02","TED novel fold AF-A0A2E0BJC7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:226185","l":"Enterococcus faecalis V583","na":1,"nb":9,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["Pfam%3APF13523","Acetyltransferase (GNAT) domain"],["Pfam%3APF17255","EbsA-like protein"],["Pfam%3APF22647","Deacetylase EF_0837-like composite domain"],["Pfam%3APF08858","IDEAL domain"],["Pfam%3APF02655","ATP-grasp domain"],["Pfam%3APF17400","Family of unknown function (DUF5406)"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":9,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["Pfam%3APF07835","Bacterial aa3 type cytochrome c oxidase subunit IV"],["Pfam%3APF04828","Glutathione-dependent formaldehyde-activating enzyme"],["Pfam%3APF16448","LapD/MoxY periplasmic domain"],["Pfam%3APF17267","Family of unknown function (DUF5333)"],["Pfam%3APF17272","Family of unknown function (DUF5337)"],["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":9,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["mud-envo-01000001.html","mud"]],"b":[["PROSITE%3APS01322","Phosphotriesterase family signature 1"]]},{"id":"NCBITaxon:29539","l":"Thermoleophilum album","na":9,"nb":1,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"],["desert-sand-envo-00005800.html","desert sand"],["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"],["village-biome-envo-01000246.html","village biome"]],"b":[["TED%3AAF-A0A1H6FIV6-F1-model_v4_TED01","TED novel fold AF-A0A1H6FIV6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:359391","l":"Brucella abortus 2308","na":1,"nb":9,"a":[["style-bto-0001313.html","style"]],"b":[["Pfam%3APF13444","Acetyltransferase (GNAT) domain"],["Pfam%3APF10090","Histidine phosphotransferase C-terminal domain"],["Pfam%3APF07536","HWE histidine kinase"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF07886","BA14K-like protein"],["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"]]},{"id":"NCBITaxon:405955","l":"Escherichia coli APEC O1","na":1,"nb":9,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["Pfam%3APF07417","Sigma factor-binding transcriptional regulator Crl"],["Pfam%3APF10807","Domain of unknown function (DUF2541)"],["Pfam%3APF25878","pHBA AAEA subunit, alpha-helical hairpin domain"],["Pfam%3APF10796","Sigma-S stabilisation anti-adaptor protein"],["Pfam%3APF06693","Protein of unknown function (DUF1190)"],["Pfam%3APF06932","Protein of unknown function (DUF1283)"]]},{"id":"NCBITaxon:7668","l":"Strongylocentrotus purpuratus","na":1,"nb":9,"a":[["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["Pfam%3APF01382","Avidin family"],["Pfam%3APF02084","Bindin"],["PROSITE%3APS00577","Avidin-like domain signature"],["Pfam%3APF22494","Choice-of-anchor I domain"],["Pfam%3APF05804","Kinesin-associated protein (KAP)"],["Pfam%3APF07054","Pericardin like repeat"]]},{"id":"NCBITaxon:83462","l":"Corallococcus exiguus","na":9,"nb":1,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["feces-uberon-0001988.html","feces"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"]],"b":[["TED%3AAF-A0A7X4Y983-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X4Y983-F1-model_v4_TED01"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":9,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF25954","CusB-like, beta-barrel domain"],["Pfam%3APF13438","Domain of unknown function (DUF4113)"],["Pfam%3APF03767","HAD superfamily, subfamily IIIB (Acid phosphatase)"],["Pfam%3APF03496","ADP-ribosyltransferase exoenzyme"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":8,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["alimentary-canal-bto-0000058.html","alimentary canal"],["blood-bto-0000089.html","blood"],["small-intestine-bto-0000651.html","small intestine"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["geographic-feature-envo-00000000.html","geographic feature"]],"b":[["PROSITE%3APS01043","Transposases, IS30 family, signature"]]},{"id":"NCBITaxon:1486246","l":"Halomonas sp.","na":8,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["saline-water-body-envo-01001319.html","saline water body"],["laboratory-facility-envo-01001406.html","laboratory facility"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["TED%3AAF-A0A355PHS8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A355PHS8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":8,"a":[["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["Pfam%3APF02927","Cellulase N-terminal ig-like domain"],["Pfam%3APF00404","Dockerin type I domain"],["PROSITE%3APS00448","Clostridium cellulosome enzymes repeated domain signature"],["PROSITE%3APS60032","Glycosyl hydrolases family 9 (GH9) active site signature 1"],["PROSITE%3APS00592","Glycosyl hydrolases family 9 (GH9) active site signature 2"],["PROSITE%3APS00698","Glycosyl hydrolases family 9 (GH9) active site signature 3"]]},{"id":"NCBITaxon:183190","l":"Xylella fastidiosa Temecula1","na":1,"nb":8,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["Pfam%3APF21142","Bacterial alpha-2 macroglobulin MG2 domain"],["Pfam%3APF04273","Beta-lactamase hydrolase-like protein, phosphatase-like domain"],["Pfam%3APF17970","Bacterial Alpha-2-macroglobulin MG1 domain"],["Pfam%3APF17973","Bacterial Alpha-2-macroglobulin MG10 domain"],["Pfam%3APF11974","Bacterial alpha-2-macroglobulin MG3 domain"],["Pfam%3APF17972","Bacterial Alpha-2-macroglobulin MG5 domain"]]},{"id":"NCBITaxon:196162","l":"Nocardioides sp. JS614","na":8,"nb":1,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["oil-spill-envo-00002061.html","oil spill"],["petroleum-envo-00002984.html","petroleum"]],"b":[["TED%3AAF-A1SFH1-F1-model_v4_TED04","TED highly-symmetric fold AF-A1SFH1-F1-model_v4_TED04"]]},{"id":"NCBITaxon:227882","l":"Streptomyces avermitilis MA-4680 = NBRC 14893","na":1,"nb":8,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["Pfam%3APF17390","Bacterial alpha-L-rhamnosidase C-terminal domain"],["Pfam%3APF08531","Alpha-L-rhamnosidase N-terminal domain"],["Pfam%3APF05592","Bacterial alpha-L-rhamnosidase concanavalin-like domain"],["Pfam%3APF26366","Domain of unknown function (DUF8094)"],["Pfam%3APF25788","Rha78A-like, N-terminal immunoglobulin domain"],["Pfam%3APF06781","Cell division protein CrgA"]]},{"id":"NCBITaxon:229533","l":"Fusarium graminearum PH-1","na":1,"nb":8,"a":[["soil-envo-00001998.html","soil"]],"b":[["Pfam%3APF18388","Atg29 N-terminal domain"],["Pfam%3APF27599","CcsR C-terminal domain"],["Pfam%3APF07110","EthD domain"],["Pfam%3APF11700","Vacuole effluxer Atg22 like"],["Pfam%3APF28504","Gramillins biosynthetic cluster protein GRA5"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"]]},{"id":"NCBITaxon:240176","l":"Coprinopsis cinerea (strain Okayama-7 / 130 / ATCC MYA-4618 / FGSC 9003)","na":1,"nb":8,"a":[["meiotic-cell-bto-0000845.html","meiotic cell"]],"b":[["Pfam%3APF26733","Adenylate-forming reductase 03009, C-terminal domain"],["Pfam%3APF01761","3-dehydroquinate synthase N-terminal"],["Pfam%3APF24621","3-dehydroquinate synthase C-terminal"],["Pfam%3APF03443","Auxiliary Activity family 9 (formerly GH61)"],["Pfam%3APF16010","Cytochrome domain of cellobiose dehydrogenase"],["PROSITE%3APS00104","EPSP synthase signature 1"]]},{"id":"NCBITaxon:35761","l":"Nocardioides sp.","na":8,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"],["desert-sand-envo-00005800.html","desert sand"],["endosymbiont-habitatmech-bacdive-7d840c7ddc.html","Endosymbiont"],["oil-spill-envo-00002061.html","oil spill"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["orchard-envo-00000115.html","orchard"]],"b":[["TED%3AAF-A0A2E8Z449-F1-model_v4_TED01","TED novel fold AF-A0A2E8Z449-F1-model_v4_TED01"]]},{"id":"NCBITaxon:47885","l":"Pseudomonas oryzihabitans","na":8,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"],["hospital-envo-00002173.html","hospital"],["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"],["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["TED%3AAF-A0A7X3T0R5-F1-model_v4_TED02","TED novel fold AF-A0A7X3T0R5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:572477","l":"Allochromatium vinosum DSM 180","na":1,"nb":8,"a":[["ditch-water-envo-00002158.html","ditch water"]],"b":[["Pfam%3APF01322","Cytochrome C'"],["Pfam%3APF02635","DsrE/DsrF-like family"],["Pfam%3APF21706","Sulfide dehydrogenase [flavocytochrome c] flavoprotein chain, central"],["Pfam%3APF09242","Flavocytochrome c sulphide dehydrogenase, flavin-binding"],["Pfam%3APF01355","High potential iron-sulfur protein"],["Pfam%3APF13686","DsrE/DsrF/DrsH-like family"]]},{"id":"UBERON:0001009","l":"","na":8,"nb":1,"a":[["circulatory-system-habitatmech-gold-0552e4fd8a.html","Circulatory system"],["circulatory-system-habitatmech-gold-ce9fa1ef7f.html","Circulatory system"],["circulatory-system-habitatmech-gold-0635cc88f0.html","Circulatory system"],["circulatory-system-habitatmech-gold-2a948ee511.html","Circulatory system"],["circulatory-system-habitatmech-gold-7a7f8b9aa3.html","Circulatory system"],["circulatory-system-habitatmech-gold-5307a30baa.html","Circulatory system"]],"b":[["GO%3A0072359","circulatory system development"]]},{"id":"NCBITaxon:114615","l":"Bradyrhizobium sp. ORS 278","na":7,"nb":1,"a":[["river-envo-00000022.html","river"],["bacteroid-bto-0000109.html","bacteroid"],["root-nodule-bto-0001190.html","root nodule"],["stem-nodule-bto-0001816.html","stem nodule"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["Pfam%3APF10073","GapR-like, DNA-binding domain"]]},{"id":"NCBITaxon:1656","l":"Actinomyces viscosus","na":7,"nb":1,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"],["skin-of-body-uberon-0002097.html","skin of body"],["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Pfam%3APF16555","Gram-positive pilin subunit D1, N-terminal domain"]]},{"id":"NCBITaxon:1906666","l":"Thermoplasmata archaeon","na":1,"nb":7,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A497HVI4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A497HVI4-F1-model_v4_TED01"],["TED%3AAF-A0A497HX78-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A497HX78-F1-model_v4_TED01"],["TED%3AAF-A0A662M489-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A662M489-F1-model_v4_TED03"],["TED%3AAF-A0A662MMC3-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A662MMC3-F1-model_v4_TED06"],["TED%3AAF-A0A7J4F045-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J4F045-F1-model_v4_TED01"],["TED%3AAF-A0A5A7S0Y2-F1-model_v4_TED02","TED novel fold AF-A0A5A7S0Y2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2006849","l":"Lysobacterales bacterium","na":1,"nb":7,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2E6REI1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E6REI1-F1-model_v4_TED01"],["TED%3AAF-A0A2E6RHE7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E6RHE7-F1-model_v4_TED02"],["TED%3AAF-A0A354Z1F6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A354Z1F6-F1-model_v4_TED01"],["TED%3AAF-A0A3S0DIN1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S0DIN1-F1-model_v4_TED01"],["TED%3AAF-A0A431HZV9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A431HZV9-F1-model_v4_TED02"],["TED%3AAF-A0A3S0DMM0-F1-model_v4_TED01","TED novel fold AF-A0A3S0DMM0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:242619","l":"Porphyromonas gingivalis W83","na":1,"nb":7,"a":[["gingiva-bto-0000519.html","gingiva"]],"b":[["Pfam%3APF13290","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF04023","FeoA domain"],["Pfam%3APF17910","FeoB cytosolic helical domain"],["Pfam%3APF02421","Ferrous iron transport protein B"],["Pfam%3APF22492","FimA4 pilin C-terminal domain"],["Pfam%3APF07664","Ferrous iron transport protein B C terminus"]]},{"id":"NCBITaxon:273075","l":"Thermoplasma acidophilum DSM 1728","na":1,"nb":7,"a":[["blood-plasma-bto-0000131.html","blood plasma"]],"b":[["Pfam%3APF17989","Actin like proteins N terminal domain"],["Pfam%3APF10432","Bacterial phospho-glucose isomerase C-terminal SIS domain"],["Pfam%3APF22490","tRNA-splicing endonuclease, linker domain"],["Pfam%3APF22578","Geranylgeranyl reductase catalytic domain"],["Pfam%3APF12831","FAD dependent oxidoreductase"],["Pfam%3APF26550","Tricorn protease second beta propeller domain"]]},{"id":"NCBITaxon:314230","l":"Blastopirellula marina DSM 3645","na":7,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["shoreline-envo-00000486.html","shoreline"],["bulk-soil-envo-00005802.html","bulk soil"],["forested-area-envo-00000111.html","forested area"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-A3ZZX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A3ZZX2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:37734","l":"Enterococcus casseliflavus","na":1,"nb":7,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["PROSITE%3APS00843","D-alanine--D-alanine ligase signature 1"],["PROSITE%3APS00844","D-alanine--D-alanine ligase signature 2"],["TED%3AAF-A0A1V3NEA6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1V3NEA6-F1-model_v4_TED03"],["TED%3AAF-A0A377MP00-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A377MP00-F1-model_v4_TED01"],["TED%3AAF-A0A377KTN3-F1-model_v4_TED02","TED novel fold AF-A0A377KTN3-F1-model_v4_TED02"],["TED%3AAF-A0A377MJ12-F1-model_v4_TED01","TED novel fold AF-A0A377MJ12-F1-model_v4_TED01"]]},{"id":"NCBITaxon:555778","l":"Halothiobacillus neapolitanus c2","na":1,"nb":7,"a":[["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["Pfam%3APF08936","Carboxysome Shell Carbonic Anhydrase, C-terminal"],["Pfam%3APF20686","Carboxysome Shell Carbonic Anhydrase, catalytic domain"],["Pfam%3APF20687","Carboxysome Shell Carbonic Anhydrase, N-terminal"],["Pfam%3APF12288","Carboxysome shell peptide mid-region"],["Pfam%3APF10070","Probable inorganic carbon transporter subunit DabA"],["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"UBERON:0000948","l":"heart","na":7,"nb":1,"a":[["heart-habitatmech-gold-2db4d9dd6e.html","Heart"],["heart-habitatmech-gold-8d7a4e1712.html","Heart"],["heart-uberon-0000948.html","heart"],["heart-habitatmech-gold-e9d67283fc.html","Heart"],["heart-habitatmech-gold-805ee181bd.html","Heart"],["heart-habitatmech-gold-20bc7c46a0.html","Heart"]],"b":[["GO%3A0007507","heart development"]]},{"id":"NCBITaxon:101571","l":"Burkholderia ubonensis","na":1,"nb":6,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["TED%3AAF-A0A118H7W5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A118H7W5-F1-model_v4_TED01"],["TED%3AAF-A0A853WTK8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A853WTK8-F1-model_v4_TED01"],["TED%3AAF-A0A104J6D5-F1-model_v4_TED03","TED novel fold AF-A0A104J6D5-F1-model_v4_TED03"],["TED%3AAF-A0A104Z719-F1-model_v4_TED01","TED novel fold AF-A0A104Z719-F1-model_v4_TED01"],["TED%3AAF-A0A106QCV3-F1-model_v4_TED01","TED novel fold AF-A0A106QCV3-F1-model_v4_TED01"],["TED%3AAF-A0A124U5S7-F1-model_v4_TED02","TED novel fold AF-A0A124U5S7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":6,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"],["sludge-envo-00002044.html","sludge"],["forested-area-envo-00000111.html","forested area"],["scrubland-area-envo-00000300.html","scrubland area"],["soil-envo-00001998.html","soil"]],"b":[["TED%3AAF-A0A367PA30-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A367PA30-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121927","l":"Gordonia hirsuta DSM 44140 = NBRC 16056","na":6,"nb":1,"a":[["biofilter-envo-00002152.html","biofilter"],["compost-envo-00002170.html","compost"],["wood-bto-0005516.html","wood"],["wood-envo-00002040.html","wood"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["waste-material-envo-00002264.html","waste material"]],"b":[["TED%3AAF-L7L8J6-F1-model_v4_TED01","TED highly-symmetric fold AF-L7L8J6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1133849","l":"Nocardia brasiliensis ATCC 700358","na":6,"nb":1,"a":[["b-lymphocyte-bto-0000776.html","B-lymphocyte"],["brain-bto-0000142.html","brain"],["heart-bto-0000562.html","heart"],["lymphocyte-bto-0000775.html","lymphocyte"],["macrophage-bto-0000801.html","macrophage"],["spleen-bto-0001281.html","spleen"]],"b":[["TED%3AAF-K0ES07-F1-model_v4_TED01","TED novel fold AF-K0ES07-F1-model_v4_TED01"]]},{"id":"NCBITaxon:124","l":"Blastopirellula marina","na":1,"nb":6,"a":[["marine-environment-envo-01000320.html","marine environment"]],"b":[["TED%3AAF-A0A2S8GNX8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S8GNX8-F1-model_v4_TED01"],["TED%3AAF-A0A2S8F9J3-F1-model_v4_TED04","TED novel fold AF-A0A2S8F9J3-F1-model_v4_TED04"],["TED%3AAF-A0A2S8FMN6-F1-model_v4_TED01","TED novel fold AF-A0A2S8FMN6-F1-model_v4_TED01"],["TED%3AAF-A0A2S8GCT5-F1-model_v4_TED02","TED novel fold AF-A0A2S8GCT5-F1-model_v4_TED02"],["TED%3AAF-A0A2S8GL91-F1-model_v4_TED01","TED novel fold AF-A0A2S8GL91-F1-model_v4_TED01"],["TED%3AAF-A0A2S8GLG3-F1-model_v4_TED01","TED novel fold AF-A0A2S8GLG3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:205922","l":"Pseudomonas fluorescens Pf0-1","na":6,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["cold-environment-envo-01000309.html","cold environment"],["microbial-mat-material-envo-01000157.html","microbial mat material"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"],["agricultural-soil-envo-00002259.html","agricultural soil"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["Pfam%3APF07927","HicA toxin of bacterial toxin-antitoxin,"]]},{"id":"NCBITaxon:2210","l":"Methanosarcina thermophila","na":1,"nb":6,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF19436","ACS/CODH beta subunit C-terminal"],["Pfam%3APF03598","CO dehydrogenase/acetyl-CoA synthase complex beta subunit"],["Pfam%3APF00871","Acetokinase family"],["PROSITE%3APS01075","Acetate and butyrate kinases family signature 1"],["PROSITE%3APS01076","Acetate and butyrate kinases family signature 2"]]},{"id":"NCBITaxon:272630","l":"Methylorubrum extorquens AM1","na":1,"nb":6,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["Pfam%3APF07726","ATPase family associated with various cellular activities (AAA)"],["Pfam%3APF02741","FTR, proximal lobe"],["Pfam%3APF01913","Formylmethanofuran-tetrahydromethanopterin formyltransferase"],["Pfam%3APF10677","Protein of unknown function (DUF2490)"],["Pfam%3APF08714","Formaldehyde-activating enzyme (Fae)"],["PROSITE%3APS00363","Bacterial quinoprotein dehydrogenases signature 1"]]},{"id":"NCBITaxon:290402","l":"Clostridium beijerinckii NCIMB 8052","na":1,"nb":6,"a":[["garden-soil-envo-00002263.html","garden soil"]],"b":[["Pfam%3APF28550","Domain of unknown function (DUF8436)"],["Pfam%3APF21688","FAD-dependent protein, C-terminal domain-like"],["Pfam%3APF02001","Protein of unknown function DUF134"],["Pfam%3APF03608","PTS system enzyme II sorbitol-specific factor"],["Pfam%3APF07663","Sorbitol phosphotransferase enzyme II C-terminus"],["Pfam%3APF03612","Sorbitol phosphotransferase enzyme II N-terminus"]]},{"id":"NCBITaxon:3068","l":"Volvox carteri f. nagariensis","na":6,"nb":1,"a":[["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["neritic-epipelagic-zone-biome-envo-01000042.html","neritic epipelagic zone biome"],["germ-cell-bto-0000535.html","germ cell"],["semen-bto-0001230.html","semen"],["sea-shore-envo-00000485.html","sea shore"]],"b":[["TED%3AAF-D8U4E8-F1-model_v4_TED01","TED highly-symmetric fold AF-D8U4E8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:321614","l":"","na":1,"nb":6,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["Pfam%3APF11786","Aft1 HRA domain"],["Pfam%3APF11787","Aft1 HRR domain"],["Pfam%3APF26980","Dicer-like protein 2, dsRNA binding domain"],["Pfam%3APF18973","Putative Chitin binding like"],["Pfam%3APF25326","SRB8 ARM-like domain"],["TED%3AAF-A0A7U2I0S3-F1-model_v4_TED02","TED novel fold AF-A0A7U2I0S3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:364106","l":"Escherichia coli UTI89","na":1,"nb":6,"a":[["rectum-bto-0001158.html","rectum"]],"b":[["Pfam%3APF26516","Inner membrane protein CbrB"],["Pfam%3APF17151","Periplasmic sensor domain"],["Pfam%3APF08971","Glycogen synthesis protein"],["Pfam%3APF06005","ZapB family"],["Pfam%3APF09618","CRISPR-associated protein (Cas_Csy4)"],["Pfam%3APF28061","Type I toxin DinQ-like"]]},{"id":"NCBITaxon:374930","l":"Haemophilus influenzae PittEE","na":1,"nb":6,"a":[["middle-ear-bto-0002099.html","middle ear"]],"b":[["Pfam%3APF02952","L-fucose isomerase, C-terminal domain"],["Pfam%3APF07881","L-fucose isomerase, first N-terminal domain"],["Pfam%3APF07882","L-fucose isomerase, second N-terminal domain"],["Pfam%3APF02313","Fumarate reductase subunit D"],["Pfam%3APF13286","Phosphohydrolase-associated domain"],["Pfam%3APF04751","Dual-action ribosomal maturation protein DarP"]]},{"id":"NCBITaxon:471852","l":"Thermomonospora curvata DSM 43183","na":6,"nb":1,"a":[["city-envo-00000856.html","city"],["compost-envo-00002170.html","compost"],["urban-biome-envo-01000249.html","urban biome"],["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["Pfam%3APF01580","FtsK/SpoIIIE family"]]},{"id":"NCBITaxon:669","l":"Vibrio harveyi","na":1,"nb":6,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["Pfam%3APF02273","Acyl transferase"],["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF03173","Putative carbohydrate binding domain"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"],["TED%3AAF-A0A454D440-F1-model_v4_TED02","TED novel fold AF-A0A454D440-F1-model_v4_TED02"],["TED%3AAF-A0A8B3DE42-F1-model_v4_TED03","TED novel fold AF-A0A8B3DE42-F1-model_v4_TED03"]]},{"id":"NCBITaxon:7719","l":"Ciona intestinalis","na":6,"nb":1,"a":[["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"],["ascidian-bto-0000090.html","ascidian"],["ocellus-bto-0001758.html","ocellus"],["sensory-cell-bto-0001037.html","sensory cell"],["tadpole-bto-0001347.html","tadpole"],["trunk-bto-0001493.html","trunk"]],"b":[["TED%3AAF-F6ULD1-F1-model_v4_TED03","TED highly-symmetric fold AF-F6ULD1-F1-model_v4_TED03"]]},{"id":"NCBITaxon:9544","l":"Macaca mulatta","na":1,"nb":6,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["Pfam%3APF21708","Galactocerebrosidase, C-terminal lectin domain"],["Pfam%3APF17387","Glycosyl hydrolase family 59 central domain"],["Pfam%3APF18771","APOBEC3H"],["Pfam%3APF02057","Glycosyl hydrolase family 59"],["PROSITE%3APS00970","Nuclear transition protein 2 signature 1"],["PROSITE%3APS00971","Nuclear transition protein 2 signature 2"]]},{"id":"UBERON:0002048","l":"","na":6,"nb":1,"a":[["lung-habitatmech-gold-dd1a9f0db8.html","Lung"],["lung-habitatmech-gold-5bbc13545b.html","Lung"],["lung-habitatmech-gold-ba687e2c95.html","Lung"],["lung-habitatmech-gold-8fed57e653.html","Lung"],["lung-habitatmech-gold-e8a2c6cf87.html","Lung"],["lung-habitatmech-gold-0d343fdd03.html","Lung"]],"b":[["GO%3A0030324","lung development"]]},{"id":"NCBITaxon:1001240","l":"Cryobacterium roopkundense","na":5,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"],["mineral-material-envo-01000256.html","mineral material"]],"b":[["TED%3AAF-A0A099JLC4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A099JLC4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1006551","l":"Klebsiella michiganensis KCTC 1686","na":1,"nb":5,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["Pfam%3APF07833","Copper amine oxidase N-terminal domain"],["Pfam%3APF18427","DD-reactivating factor swiveling domain"],["Pfam%3APF02288","Dehydratase medium subunit"],["Pfam%3APF08841","Diol dehydratase reactivase ATPase-like domain"],["TED%3AAF-A0A0H3H2M0-F1-model_v4_TED01","TED novel fold AF-A0A0H3H2M0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:103836","l":"Thermopolyspora flexuosa","na":5,"nb":1,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["intestine-environment-envo-2100002.html","intestine environment"],["organic-feature-envo-01000159.html","organic feature"],["compost-soil-envo-00005747.html","compost soil"],["soil-envo-00001998.html","soil"]],"b":[["TED%3AAF-A0A543J0S6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A543J0S6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:104421","l":"Camponotus floridanus","na":5,"nb":1,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"],["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"],["biotope-envo-00002036.html","biotope"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["Pfam%3APF22299","BRISC complex subunit FAM175B, helical domain"]]},{"id":"NCBITaxon:1288","l":"Staphylococcus xylosus","na":5,"nb":1,"a":[["stream-envo-00000023.html","stream"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"],["fecal-environment-envo-01001029.html","fecal environment"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["Pfam%3APF02603","HPr Serine kinase N terminus"]]},{"id":"NCBITaxon:13243","l":"Rarobacter faecitabidus","na":5,"nb":1,"a":[["water-body-envo-00000063.html","water body"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["TED%3AAF-A0A542ZUH8-F1-model_v4_TED03","TED novel fold AF-A0A542ZUH8-F1-model_v4_TED03"]]},{"id":"NCBITaxon:135569","l":"Helicobacter apodemus","na":5,"nb":1,"a":[["cecum-mucosa-bto-0000213.html","cecum mucosa"],["epithelium-bto-0000416.html","epithelium"],["ht-29-cell-bto-0000182.html","HT-29 cell"],["lymphoid-tissue-bto-0000753.html","lymphoid tissue"],["mucosa-bto-0000886.html","mucosa"]],"b":[["TED%3AAF-A0A4U8UFG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8UFG8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1356854","l":"Alicyclobacillus acidoterrestris ATCC 49025","na":1,"nb":5,"a":[["fruit-juice-bto-0004057.html","fruit juice"]],"b":[["Pfam%3APF22202","CRISPR-associated endonuclease C2c1 first helical domain"],["Pfam%3APF22172","CRISPR-associated endonuclease C2c1 second helical domain"],["Pfam%3APF22077","CRISPR-associated endonuclease C2c1 Nuc-II domain"],["Pfam%3APF22126","C2c1 CRISPR-Cas endonuclease, RuvC-like domain"],["Pfam%3APF22204","CRISPR-associated endonuclease C2c1, wedge domain, second region"]]},{"id":"NCBITaxon:1363","l":"Lactococcus garvieae","na":5,"nb":1,"a":[["animal-house-envo-00003040.html","animal house"],["gall-bladder-bto-0000493.html","gall bladder"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["geographic-feature-envo-00000000.html","geographic feature"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["TED%3AAF-A0A6L2ZWS4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L2ZWS4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:155077","l":"Cellvibrio japonicus","na":1,"nb":5,"a":[["compost-envo-00002170.html","compost"]],"b":[["Pfam%3APF02013","Cellulose or protein binding domain"],["Pfam%3APF03426","Carbohydrate binding domain (family 15)"],["Pfam%3APF16841","Ca-dependent carbohydrate-binding module xylan-binding"],["Pfam%3APF00331","Glycosyl hydrolase family 10"],["PROSITE%3APS00591","Glycosyl hydrolases family 10 (GH10) active site"]]},{"id":"NCBITaxon:1778","l":"Mycobacterium gordonae","na":5,"nb":1,"a":[["fibroblast-bto-0000452.html","fibroblast"],["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["kidney-bto-0000671.html","kidney"],["spleen-bto-0001281.html","spleen"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["TED%3AAF-A0A7D6E392-F1-model_v4_TED02","TED novel fold AF-A0A7D6E392-F1-model_v4_TED02"]]},{"id":"NCBITaxon:183","l":"Leptonema illini","na":1,"nb":5,"a":[["mud-envo-01000001.html","mud"]],"b":[["TED%3AAF-A0A833GYM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A833GYM6-F1-model_v4_TED01"],["TED%3AAF-A0A833GZG7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A833GZG7-F1-model_v4_TED01"],["TED%3AAF-A0A833H0U1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A833H0U1-F1-model_v4_TED01"],["TED%3AAF-A0A833H0U1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A833H0U1-F1-model_v4_TED02"],["TED%3AAF-A0A833LYP2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A833LYP2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1861","l":"Geodermatophilus obscurus","na":5,"nb":1,"a":[["desert-sand-envo-00005800.html","desert sand"],["tropical-envo-01000204.html","tropical"],["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["TED%3AAF-A0A1M7SWB5-F1-model_v4_TED02","TED novel fold AF-A0A1M7SWB5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:190486","l":"Xanthomonas axonopodis pv. citri (strain 306)","na":1,"nb":5,"a":[["vascular-tissue-bto-0001432.html","vascular tissue"]],"b":[["IDPO%3A0000003","molten globule"],["IDPO%3A0000012","molten globule to order"],["IDPO%3A0000006","order"],["Pfam%3APF00325","Bacterial regulatory proteins, crp family"],["Pfam%3APF05420","Cellulose synthase operon protein C C-terminus (BCSC_C)"]]},{"id":"NCBITaxon:2026715","l":"Pseudobdellovibrionaceae bacterium","na":1,"nb":5,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2E8I2Q3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E8I2Q3-F1-model_v4_TED02"],["TED%3AAF-A0A2E8I7A7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E8I7A7-F1-model_v4_TED02"],["TED%3AAF-A0A2E1Q4H5-F1-model_v4_TED06","TED novel fold AF-A0A2E1Q4H5-F1-model_v4_TED06"],["TED%3AAF-A0A2E7GIF0-F1-model_v4_TED01","TED novel fold AF-A0A2E7GIF0-F1-model_v4_TED01"],["TED%3AAF-A0A849WIZ5-F1-model_v4_TED01","TED novel fold AF-A0A849WIZ5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2098","l":"Metamycoplasma hominis","na":5,"nb":1,"a":[["egg-food-product-foodon-00001274.html","egg food product"],["amniotic-cavity-bto-0000025.html","amniotic cavity"],["amniotic-fluid-bto-0000068.html","amniotic fluid"],["placenta-bto-0001078.html","placenta"],["reproductive-system-bto-0000081.html","reproductive system"]],"b":[["TED%3AAF-A0A6A8Q3G2-F1-model_v4_TED02","TED novel fold AF-A0A6A8Q3G2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:265072","l":"Methylobacillus flagellatus KT","na":5,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"],["water-body-envo-00000063.html","water body"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["activated-sludge-envo-00002046.html","activated sludge"],["sludge-envo-00002044.html","sludge"]],"b":[["Pfam%3APF10414","Sirohaem synthase dimerisation region"]]},{"id":"NCBITaxon:28038","l":"Latilactobacillus curvatus","na":5,"nb":1,"a":[["research-facility-envo-00000469.html","research facility"],["food-fermented-foodon-00001258.html","food (fermented)"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["TED%3AAF-A0A3R5XZN9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3R5XZN9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:290054","l":"Eubacterium coprostanoligenes","na":5,"nb":1,"a":[["emulsion-envo-00010506.html","emulsion"],["environmental-feature-envo-00002297.html","environmental feature"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["pig-manure-envo-00003860.html","pig manure"],["harbour-envo-00000463.html","harbour"]],"b":[["TED%3AAF-A0A1T4NG17-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1T4NG17-F1-model_v4_TED01"]]},{"id":"NCBITaxon:324602","l":"Chloroflexus aurantiacus J-10-fl","na":1,"nb":5,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["Pfam%3APF00127","Copper binding proteins, plastocyanin/azurin family"],["Pfam%3APF02276","Photosynthetic reaction centre cytochrome C subunit"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["PROSITE%3APS00196","Type-1 copper (blue) proteins signature"],["PROSITE%3APS00648","Bacterial ribonuclease P protein component signature"]]},{"id":"NCBITaxon:338969","l":"Rhodoferax ferrireducens T118","na":5,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["petroleum-envo-00002984.html","petroleum"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["Pfam%3APF11154","Protein of unknown function (DUF2934)"]]},{"id":"NCBITaxon:34062","l":"Faucicola osloensis","na":5,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"],["water-scum-envo-00005794.html","water scum"]],"b":[["Pfam%3APF14130","Cap4, dsDNA endonuclease domain"]]},{"id":"NCBITaxon:354242","l":"Campylobacter jejuni subsp. jejuni 81-176","na":5,"nb":1,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["leukocyte-bto-0000751.html","leukocyte"],["lymphocyte-bto-0000775.html","lymphocyte"],["neutrophil-bto-0000130.html","neutrophil"],["small-intestine-bto-0000651.html","small intestine"]],"b":[["PROSITE%3APS01300","RecR protein signature"]]},{"id":"NCBITaxon:384","l":"Rhizobium leguminosarum","na":1,"nb":5,"a":[["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["Pfam%3APF10931","Protein of unknown function (DUF2735)"],["TED%3AAF-A0A1B1C3F3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1B1C3F3-F1-model_v4_TED02"],["TED%3AAF-A0A4Q8XNE1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q8XNE1-F1-model_v4_TED01"],["TED%3AAF-A0A6P0B3F8-F1-model_v4_TED02","TED novel fold AF-A0A6P0B3F8-F1-model_v4_TED02"],["TED%3AAF-A0A6P0DM15-F1-model_v4_TED01","TED novel fold AF-A0A6P0DM15-F1-model_v4_TED01"]]},{"id":"NCBITaxon:388399","l":"Sagittula stellata E-37","na":5,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["oligotrophic-water-envo-00002223.html","oligotrophic water"],["pulp-bto-0001142.html","pulp"],["rosette-bto-0001201.html","rosette"],["scolex-bto-0002305.html","scolex"]],"b":[["TED%3AAF-A3JXK6-F1-model_v4_TED02","TED novel fold AF-A3JXK6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:393480","l":"Fusobacterium polymorphum ATCC 10953","na":5,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"],["forested-area-envo-00000111.html","forested area"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["TED%3AAF-A5TXK7-F1-model_v4_TED01","TED highly-symmetric fold AF-A5TXK7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:40518","l":"Ruminococcus bromii","na":5,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["emulsion-envo-00010506.html","emulsion"],["skin-environment-envo-2100003.html","skin environment"],["animal-habitation-envo-00005803.html","animal habitation"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-A0A412UMQ9-F1-model_v4_TED02","TED novel fold AF-A0A412UMQ9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:410359","l":"Pyrobaculum calidifontis JCM 11548","na":1,"nb":5,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF18653","Arcadin 1"],["Pfam%3APF01930","Domain of unknown function DUF83"],["PROSITE%3APS00895","3-hydroxyisobutyrate dehydrogenase signature"],["TED%3AAF-A3MU28-F1-model_v4_TED02","TED highly-symmetric fold AF-A3MU28-F1-model_v4_TED02"],["TED%3AAF-A3MXY3-F1-model_v4_TED01","TED highly-symmetric fold AF-A3MXY3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:4513","l":"Hordeum vulgare","na":1,"nb":5,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["Pfam%3APF20241","Domain of unknown function (DUF6598)"],["PROSITE%3APS00771","Barwin domain signature 1"],["PROSITE%3APS00426","Cereal trypsin/alpha-amylase inhibitors family signature"],["PROSITE%3APS00725","Germin family signature"],["PROSITE%3APS00431","Small hydrophilic plant seed proteins signature"]]},{"id":"NCBITaxon:511","l":"Alcaligenes faecalis","na":1,"nb":5,"a":[["foot-bto-0000476.html","foot"]],"b":[["Pfam%3APF16867","Dimethlysulfonioproprionate lyase"],["Pfam%3APF17645","Arylmalonate decarboxylase"],["Pfam%3APF06433","Methylamine dehydrogenase heavy chain (MADH)"],["TED%3AAF-A0A1Z3MKY1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z3MKY1-F1-model_v4_TED01"],["TED%3AAF-A0A2U2BPX7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2U2BPX7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:716541","l":"Enterobacter cloacae subsp. cloacae ATCC 13047","na":1,"nb":5,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Pfam%3APF18228","CdiI N-terminal domain"],["PROSITE%3APS00896","LacY family proton/sugar symporters signature 1"],["PROSITE%3APS00897","LacY family proton/sugar symporters signature 2"],["Pfam%3APF13332","Hemagglutinin repeat"],["Pfam%3APF05860","TPS secretion domain"]]},{"id":"NCBITaxon:747","l":"Pasteurella multocida","na":5,"nb":1,"a":[["bronchus-uberon-0002185.html","bronchus"],["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["finger-bto-0004669.html","finger"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["TED%3AAF-A0A8A8HHD5-F1-model_v4_TED02","TED novel fold AF-A0A8A8HHD5-F1-model_v4_TED02"]]},{"id":"UBERON:0000955","l":"brain","na":5,"nb":1,"a":[["brain-habitatmech-gold-752ac1c5aa.html","Brain"],["brain-habitatmech-gold-6bdd76cda3.html","Brain"],["brain-habitatmech-gold-a220aa6bb0.html","Brain"],["brain-habitatmech-gold-e1c2f5f7d4.html","Brain"],["brain-habitatmech-gold-2e584195fd.html","Brain"]],"b":[["GO%3A0007420","brain development"]]},{"id":"CHEBI:24632","l":"hydrocarbon","na":4,"nb":1,"a":[["hydrocarbon-habitatmech-gold-db79f0142d.html","Hydrocarbon"],["hydrocarbon-habitatmech-gold-3c68e33a11.html","Hydrocarbon"],["hydrocarbon-habitatmech-gold-e77998b825.html","Hydrocarbon"],["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"]],"b":[["TCDB%3A1.B.9","The FadL Outer Membrane Protein (FadL) Family"]]},{"id":"NCBITaxon:100","l":"Ancylobacter aquaticus","na":4,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["groundwater-envo-01001004.html","groundwater"],["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"]],"b":[["TED%3AAF-A0A431PQS4-F1-model_v4_TED01","TED novel fold AF-A0A431PQS4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:102862","l":"Proteus penneri","na":4,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"],["geographic-feature-envo-00000000.html","geographic feature"],["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-A0A0G4Q3D2-F1-model_v4_TED01","TED novel fold AF-A0A0G4Q3D2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:102897","l":"Parafrankia sp. EUN1f","na":4,"nb":1,"a":[["plant-bto-0001481.html","plant"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["TED%3AAF-D3D2N4-F1-model_v4_TED01","TED novel fold AF-D3D2N4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1029718","l":"Candidatus Arthromitus sp. SFB-mouse-Japan","na":4,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["lymphocyte-bto-0000775.html","lymphocyte"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["TED%3AAF-F9VKB6-F1-model_v4_TED01","TED novel fold AF-F9VKB6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:105612","l":"Dellaglioa algida","na":4,"nb":1,"a":[["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biotope-envo-00002036.html","biotope"],["organic-feature-envo-01000159.html","organic feature"]],"b":[["TED%3AAF-A0A5C6M980-F1-model_v4_TED02","TED novel fold AF-A0A5C6M980-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1121132","l":"Butyrivibrio hungatei DSM 14810","na":4,"nb":1,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"],["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["TED%3AAF-A0A1M7SJD3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M7SJD3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121301","l":"Paramaledivibacter caminithermalis DSM 15212","na":4,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"],["trough-envo-00000499.html","trough"]],"b":[["TED%3AAF-A0A1M6LSW1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M6LSW1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121324","l":"Peptoclostridium litorale DSM 5388","na":4,"nb":1,"a":[["inlet-envo-00000475.html","inlet"],["ocean-envo-00000015.html","ocean"],["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"]],"b":[["TED%3AAF-A0A069RDW3-F1-model_v4_TED01","TED novel fold AF-A0A069RDW3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121449","l":"Paucidesulfovibrio gracilis DSM 16080","na":4,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"],["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["TED%3AAF-A0A1T4W1V7-F1-model_v4_TED03","TED novel fold AF-A0A1T4W1V7-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1121451","l":"Maridesulfovibrio hydrothermalis AM13 = DSM 14728","na":4,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["undersea-feature-envo-00000104.html","undersea feature"],["trough-envo-00000499.html","trough"]],"b":[["TED%3AAF-L0RH10-F1-model_v4_TED01","TED novel fold AF-L0RH10-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1122195","l":"Marinitoga hydrogenitolerans DSM 16785","na":4,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["ridge-envo-00000283.html","ridge"],["trough-envo-00000499.html","trough"]],"b":[["Pfam%3APF22362","Argonaute, middle domain, bacteria"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":4,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["TED%3AAF-A0A132HLN2-F1-model_v4_TED01","TED novel fold AF-A0A132HLN2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:122587","l":"Neisseria meningitidis Z2491","na":1,"nb":4,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"]],"b":[["Pfam%3APF17850","CysA C-terminal regulatory domain"],["Pfam%3APF22443","FbpC-like, regulatory domain"],["Pfam%3APF05159","Capsule polysaccharide biosynthesis protein"],["Pfam%3APF10077","Uncharacterized protein conserved in bacteria (DUF2314)"]]},{"id":"NCBITaxon:1335","l":"Streptococcus equinus","na":4,"nb":1,"a":[["foregut-bto-0000507.html","foregut"],["stomach-bto-0001307.html","stomach"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["TED%3AAF-A0A1V0GLT7-F1-model_v4_TED01","TED novel fold AF-A0A1V0GLT7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:137584","l":"Thalassomonas viridans","na":1,"nb":4,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["TED%3AAF-A0A0D8CPR2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D8CPR2-F1-model_v4_TED01"],["TED%3AAF-A0A0D8CLZ9-F1-model_v4_TED01","TED novel fold AF-A0A0D8CLZ9-F1-model_v4_TED01"],["TED%3AAF-A0A0D8D8E8-F1-model_v4_TED02","TED novel fold AF-A0A0D8D8E8-F1-model_v4_TED02"],["TED%3AAF-A0A0D8DAF2-F1-model_v4_TED01","TED novel fold AF-A0A0D8DAF2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:148604","l":"Limosilactobacillus ingluviei","na":4,"nb":1,"a":[["animal-house-envo-00003040.html","animal house"],["organic-waste-material-envo-00002873.html","organic waste material"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["TED%3AAF-A0A0R2GUF0-F1-model_v4_TED01","TED novel fold AF-A0A0R2GUF0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1501","l":"Clostridium pasteurianum","na":1,"nb":4,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["Pfam%3APF22609","Iron hydrogenase 1-like, iron-sulfur centre-binding domain"],["Pfam%3APF09582","Iron only nitrogenase protein AnfO (AnfO_nitrog)"],["PROSITE%3APS00746","NifH/frxC family signature 1"],["PROSITE%3APS00699","Nitrogenases component 1 alpha and beta subunits signature 1"]]},{"id":"NCBITaxon:152142","l":"Mycolicibacterium holsaticum","na":4,"nb":1,"a":[["fibroblast-bto-0000452.html","fibroblast"],["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["kidney-bto-0000671.html","kidney"],["spleen-bto-0001281.html","spleen"]],"b":[["TED%3AAF-A0A1E3RVW1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E3RVW1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:160492","l":"Xylella fastidiosa 9a5c","na":1,"nb":4,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["Pfam%3APF21142","Bacterial alpha-2 macroglobulin MG2 domain"],["Pfam%3APF04273","Beta-lactamase hydrolase-like protein, phosphatase-like domain"],["Pfam%3APF17970","Bacterial Alpha-2-macroglobulin MG1 domain"],["Pfam%3APF20398","Family of unknown function (DUF6691)"]]},{"id":"NCBITaxon:1622","l":"Ligilactobacillus murinus","na":4,"nb":1,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"],["animal-litter-envo-00002191.html","animal litter"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["TED%3AAF-A0A4S2E8S9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4S2E8S9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:163","l":"Treponema bryantii","na":4,"nb":1,"a":[["stomach-bto-0001307.html","stomach"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["intestine-environment-envo-2100002.html","intestine environment"],["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["TED%3AAF-A0A1I3JLL1-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A1I3JLL1-F1-model_v4_TED05"]]},{"id":"NCBITaxon:1710","l":"Cellulosimicrobium cellulans","na":4,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"],["oil-spill-envo-00002061.html","oil spill"],["peat-soil-envo-00005774.html","peat soil"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["Pfam%3APF16483","Beta-1,3-glucanase"]]},{"id":"NCBITaxon:1712410","l":"Thermanaerosceptrum fracticalcis","na":4,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["ocean-trench-envo-00000275.html","ocean trench"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["trough-envo-00000499.html","trough"]],"b":[["TED%3AAF-A0A7G6E021-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7G6E021-F1-model_v4_TED02"]]},{"id":"NCBITaxon:172045","l":"Elizabethkingia miricola","na":4,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["hindgut-bto-0000510.html","hindgut"],["wood-bto-0005516.html","wood"],["environmental-system-envo-01000254.html","environmental system"]],"b":[["TED%3AAF-A0A0D5BKG2-F1-model_v4_TED01","TED novel fold AF-A0A0D5BKG2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1836","l":"Saccharopolyspora erythraea","na":1,"nb":4,"a":[["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["Pfam%3APF08990","Erythronolide synthase docking domain"],["Pfam%3APF09277","Erythronolide synthase, docking"],["Pfam%3APF12728","Helix-turn-helix domain"],["Pfam%3APF12307","Protein of unknown function (DUF3631)"]]},{"id":"NCBITaxon:1871086","l":"Brevundimonas sp.","na":1,"nb":4,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["TED%3AAF-A0A2W6RYY6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2W6RYY6-F1-model_v4_TED03"],["TED%3AAF-A0A326KNM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A326KNM4-F1-model_v4_TED01"],["TED%3AAF-A0A521NPA0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521NPA0-F1-model_v4_TED01"],["TED%3AAF-A0A519PPD7-F1-model_v4_TED01","TED novel fold AF-A0A519PPD7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":1,"nb":4,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["Pfam%3APF16861","Carbamoyltransferase C-terminus"],["Pfam%3APF02543","Carbamoyltransferase N-terminus"],["Pfam%3APF01960","ArgJ family"],["Pfam%3APF07467","Beta-lactamase inhibitor (BLIP)"]]},{"id":"NCBITaxon:1930","l":"Streptomyces scabiei","na":4,"nb":1,"a":[["a10-cell-bto-0002196.html","A10 cell"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["TED%3AAF-A0A086GLG9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A086GLG9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:207559","l":"Oleidesulfovibrio alaskensis G20","na":1,"nb":4,"a":[["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["Pfam%3APF13353","4Fe-4S single cluster domain"],["Pfam%3APF01228","Glycine radical"],["PROSITE%3APS00850","Glycine radical domain signature"],["PROSITE%3APS01087","Radical activating enzymes signature"]]},{"id":"NCBITaxon:2209","l":"Methanosarcina mazei","na":4,"nb":1,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["sludge-envo-00002044.html","sludge"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["TED%3AAF-A0A0F8CQX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F8CQX7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:224914","l":"Brucella melitensis bv. 1 str. 16M","na":1,"nb":4,"a":[["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["Pfam%3APF03625","Domain of unknown function DUF302"],["Pfam%3APF07559","Flagellar basal body protein FlaE D2 domain"],["Pfam%3APF07536","HWE histidine kinase"],["Pfam%3APF06776","Invasion associated locus B (IalB) protein"]]},{"id":"NCBITaxon:224915","l":"Buchnera aphidicola str. Bp (Baizongia pistaciae)","na":1,"nb":4,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Pfam%3APF26016","Exonuclease I C-terminal domain"],["Pfam%3APF08411","Exonuclease I SH3-like domain"],["Pfam%3APF09849","Uncharacterized protein conserved in bacteria (DUF2076)"],["Pfam%3APF06481","COX Aromatic Rich Motif"]]},{"id":"NCBITaxon:269796","l":"Rhodospirillum rubrum ATCC 11170","na":1,"nb":4,"a":[["joint-bto-0001686.html","joint"]],"b":[["Pfam%3APF24931","ACR9-like, ACT-like domain"],["Pfam%3APF20543","N2-fixation sustaining protein CowN"],["Pfam%3APF22277","EncFtn-like"],["TED%3AAF-Q2RML2-F1-model_v4_TED01","TED highly-symmetric fold AF-Q2RML2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:272563","l":"Clostridioides difficile 630","na":1,"nb":4,"a":[["central-nervous-system-bto-0000227.html","central nervous system"]],"b":[["Pfam%3APF07737","Anthrax toxin lethal factor, N- and C-terminal domain"],["Pfam%3APF11155","Domain of unknown function (DUF2935)"],["Pfam%3APF06249","Ethanolamine utilisation protein EutQ"],["Pfam%3APF12544","Lysine-2,3-aminomutase"]]},{"id":"NCBITaxon:272620","l":"Klebsiella pneumoniae subsp. pneumoniae MGH 78578","na":1,"nb":4,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Pfam%3APF04336","Acyl carrier protein phosphodiesterase"],["Pfam%3APF17948","DnaT DNA-binding domain"],["PROSITE%3APS00839","Uroporphyrin-III C-methyltransferase signature 1"],["PROSITE%3APS00840","Uroporphyrin-III C-methyltransferase signature 2"]]},{"id":"NCBITaxon:28450","l":"Burkholderia pseudomallei","na":1,"nb":4,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"]],"b":[["Pfam%3APF18664","CdiA C-terminal tRNase domain"],["Pfam%3APF12106","Colicin E5 ribonuclease domain"],["Pfam%3APF11480","Colicin-E5 Imm protein"],["Pfam%3APF13332","Hemagglutinin repeat"]]},{"id":"NCBITaxon:29313","l":"Mycobacterium shimoidei","na":4,"nb":1,"a":[["fibroblast-bto-0000452.html","fibroblast"],["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["kidney-bto-0000671.html","kidney"],["spleen-bto-0001281.html","spleen"]],"b":[["TED%3AAF-A0A1E3TGG0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1E3TGG0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:29345","l":"Sedimentibacter hydroxybenzoicus","na":4,"nb":1,"a":[["mud-envo-01000001.html","mud"],["oil-spill-envo-00002061.html","oil spill"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["Pfam%3APF26358","EcdD/BsdD phenolic detoxification"]]},{"id":"NCBITaxon:29494","l":"Vibrio furnissii","na":1,"nb":4,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["Pfam%3APF17957","Bacterial Ig domain"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"],["Pfam%3APF02839","Carbohydrate-binding module family 5/12"],["Pfam%3APF06483","Chitinase C"]]},{"id":"NCBITaxon:301","l":"Ectopseudomonas oleovorans","na":1,"nb":4,"a":[["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["PROSITE%3APS00202","Rubredoxin signature"],["TED%3AAF-A0A2W5VSG0-F1-model_v4_TED02","TED novel fold AF-A0A2W5VSG0-F1-model_v4_TED02"],["TED%3AAF-A0A379JMN0-F1-model_v4_TED01","TED novel fold AF-A0A379JMN0-F1-model_v4_TED01"],["TED%3AAF-A0A379PLI0-F1-model_v4_TED03","TED novel fold AF-A0A379PLI0-F1-model_v4_TED03"]]},{"id":"NCBITaxon:324057","l":"Paenibacillus sp. JDR-2","na":4,"nb":1,"a":[["vasculature-uberon-0002049.html","vasculature"],["wood-envo-00002040.html","wood"],["part-of-plant-habitatmech-madin-25325947e2.html","part of plant"],["village-biome-envo-01000246.html","village biome"]],"b":[["Pfam%3APF06452","Carbohydrate family 9 binding domain-like"]]},{"id":"NCBITaxon:326423","l":"Bacillus velezensis FZB42","na":1,"nb":4,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["Pfam%3APF21607","[Acyl-carrier-protein] S-malonyltransferase, inserted helical domain"],["Pfam%3APF21996","Histidyl-tRNA synthetase HisZ, C-terminal domain"],["Pfam%3APF07293","Protein of unknown function (DUF1450)"],["Pfam%3APF12227","Protein of unknown function (DUF3603)"]]},{"id":"NCBITaxon:362","l":"Agrobacterium radiobacter","na":4,"nb":1,"a":[["plant-gall-po-0025626.html","plant gall"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["Pfam%3APF04909","Amidohydrolase"]]},{"id":"NCBITaxon:391","l":"Rhizobium sp.","na":4,"nb":1,"a":[["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["paddy-ricefield-habitatmech-bacdive-6e3154acd8.html","Paddy-Ricefield"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["TED%3AAF-A0A353G134-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A353G134-F1-model_v4_TED01"]]},{"id":"NCBITaxon:395019","l":"Burkholderia multivorans ATCC 17616","na":4,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"],["desert-sand-envo-00005800.html","desert sand"],["orchard-envo-00000115.html","orchard"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["TED%3AAF-A0A0H3KMX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0H3KMX2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:410358","l":"Methanocorpusculum labreanum Z","na":1,"nb":4,"a":[["joint-bto-0001686.html","joint"]],"b":[["Pfam%3APF27030","AbpE bacteria"],["Pfam%3APF01864","CDP-archaeol synthase"],["Pfam%3APF01891","Cobalt uptake substrate-specific transmembrane region"],["TED%3AAF-A2SPH3-F1-model_v4_TED02","TED highly-symmetric fold AF-A2SPH3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:43","l":"Cystobacter fuscus","na":1,"nb":4,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"]],"b":[["TED%3AAF-A0A250J1A4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J1A4-F1-model_v4_TED01"],["TED%3AAF-A0A250J4G5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J4G5-F1-model_v4_TED01"],["TED%3AAF-A0A250J8W0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J8W0-F1-model_v4_TED01"],["TED%3AAF-A0A250J3K5-F1-model_v4_TED03","TED novel fold AF-A0A250J3K5-F1-model_v4_TED03"]]},{"id":"NCBITaxon:452863","l":"Pseudarthrobacter chlorophenolicus A6","na":1,"nb":4,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["TED%3AAF-B8HI43-F1-model_v4_TED02","TED highly-symmetric fold AF-B8HI43-F1-model_v4_TED02"],["TED%3AAF-B8HIA6-F1-model_v4_TED01","TED highly-symmetric fold AF-B8HIA6-F1-model_v4_TED01"],["TED%3AAF-B8HIQ6-F1-model_v4_TED02","TED highly-symmetric fold AF-B8HIQ6-F1-model_v4_TED02"],["TED%3AAF-B8HHK3-F1-model_v4_TED01","TED novel fold AF-B8HHK3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:46245","l":"Drosophila pseudoobscura pseudoobscura","na":1,"nb":4,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"]],"b":[["Pfam%3APF23724","Caspase-8, second domain"],["Pfam%3APF23725","Caspase-8, N-terminal domain"],["Pfam%3APF22123","Exuperantia RNAse H-like domain"],["Pfam%3APF23757","Insect HPS5 TPR domain"]]},{"id":"NCBITaxon:485913","l":"Ktedonobacter racemifer DSM 44963","na":1,"nb":4,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"]],"b":[["TED%3AAF-D6U145-F1-model_v4_TED01","TED highly-symmetric fold AF-D6U145-F1-model_v4_TED01"],["TED%3AAF-D6U380-F1-model_v4_TED01","TED highly-symmetric fold AF-D6U380-F1-model_v4_TED01"],["TED%3AAF-D6TNQ7-F1-model_v4_TED02","TED novel fold AF-D6TNQ7-F1-model_v4_TED02"],["TED%3AAF-D6U8N4-F1-model_v4_TED02","TED novel fold AF-D6U8N4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:512","l":"Alcaligenes sp.","na":1,"nb":4,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["Pfam%3APF26354","N,N-dimethylformamidase alpha subunit"],["Pfam%3APF20254","N,N-dimethylformamidase beta subunit-like, C-terminal"],["Pfam%3APF11606","Family 31 carbohydrate binding protein"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"]]},{"id":"NCBITaxon:575540","l":"Isosphaera pallida ATCC 43644","na":4,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["agricultural-soil-envo-00002259.html","agricultural soil"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-E8R507-F1-model_v4_TED01","TED highly-symmetric fold AF-E8R507-F1-model_v4_TED01"]]},{"id":"NCBITaxon:644281","l":"Methanocaldococcus sp. FS406-22","na":4,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"],["volcano-envo-00000247.html","volcano"]],"b":[["TED%3AAF-D3S6J5-F1-model_v4_TED01","TED highly-symmetric fold AF-D3S6J5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":1,"nb":4,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["PROSITE%3APS00949","Autoinducer synthase family signature"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"],["PROSITE%3APS00607","cAMP phosphodiesterases class-II signature"],["TED%3AAF-A0A844NWZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A844NWZ1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:7244","l":"Drosophila virilis","na":1,"nb":4,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"]],"b":[["Pfam%3APF14786","Tube Death domain"],["Pfam%3APF05836","Chorion protein S16"],["Pfam%3APF13428","Tetratricopeptide repeat"],["TED%3AAF-B4LEB1-F1-model_v4_TED02","TED novel fold AF-B4LEB1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:888845","l":"Minicystis rosea","na":1,"nb":4,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["TED%3AAF-A0A1L6LHU6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6LHU6-F1-model_v4_TED01"],["TED%3AAF-A0A1L6LWQ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6LWQ0-F1-model_v4_TED01"],["TED%3AAF-A0A1L6L181-F1-model_v4_TED02","TED novel fold AF-A0A1L6L181-F1-model_v4_TED02"],["TED%3AAF-A0A1L6LWI8-F1-model_v4_TED02","TED novel fold AF-A0A1L6LWI8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:935293","l":"Yersinia entomophaga","na":1,"nb":4,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["Pfam%3APF05785","Rho-activating domain of cytotoxic necrotizing factor"],["Pfam%3APF20220","ABC toxin N-terminal region"],["Pfam%3APF18413","Neuraminidase-like domain"],["Pfam%3APF12256","Insecticide toxin TcdB middle/N-terminal region"]]},{"id":"UBERON:0001045","l":"","na":4,"nb":1,"a":[["midgut-habitatmech-gold-5c1b0d44e2.html","Midgut"],["midgut-habitatmech-gold-31577394a0.html","Midgut"],["midgut-habitatmech-gold-67c565f695.html","Midgut"],["midgut-habitatmech-gold-0307474089.html","Midgut"]],"b":[["GO%3A0007494","midgut development"]]},{"id":"UBERON:0001836","l":"","na":4,"nb":1,"a":[["saliva-habitatmech-gold-4c19ae6894.html","Saliva"],["saliva-habitatmech-gold-1e04aaebba.html","Saliva"],["saliva-habitatmech-gold-68875fbeda.html","Saliva"],["saliva-habitatmech-gold-a747c6ab38.html","Saliva"]],"b":[["GO%3A0046541","saliva secretion"]]},{"id":"NCBITaxon:105841","l":"Anaerostipes caccae","na":3,"nb":1,"a":[["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["emulsion-envo-00010506.html","emulsion"],["organic-feature-envo-01000159.html","organic feature"]],"b":[["TED%3AAF-A0A6N2WKG2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N2WKG2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1090322","l":"Methanolobus tindarius DSM 2278","na":1,"nb":3,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["TED%3AAF-W9DQM0-F1-model_v4_TED03","TED highly-symmetric fold AF-W9DQM0-F1-model_v4_TED03"],["TED%3AAF-W9DMY0-F1-model_v4_TED01","TED novel fold AF-W9DMY0-F1-model_v4_TED01"],["TED%3AAF-W9DNB8-F1-model_v4_TED01","TED novel fold AF-W9DNB8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1120927","l":"Acinetobacter tandoii DSM 14970 = CIP 107469","na":3,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["TED%3AAF-R9BEH0-F1-model_v4_TED04","TED highly-symmetric fold AF-R9BEH0-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1120928","l":"Acinetobacter tjernbergiae DSM 14971 = CIP 107465","na":3,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["TED%3AAF-V2W927-F1-model_v4_TED01","TED highly-symmetric fold AF-V2W927-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121391","l":"Desulfacinum infernum DSM 9756","na":3,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["TED%3AAF-A0A1M5CF65-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M5CF65-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121393","l":"Desulfatibacillum alkenivorans DSM 16219","na":3,"nb":1,"a":[["sewage-plant-envo-00003043.html","sewage plant"],["waste-water-envo-00002001.html","waste water"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["TED%3AAF-A0A1M6GB75-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M6GB75-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121950","l":"Hespellia stercorisuis DSM 15480","na":3,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["fecal-environment-envo-01001029.html","fecal environment"],["waste-material-envo-00002264.html","waste material"]],"b":[["TED%3AAF-A0A1M6UMY1-F1-model_v4_TED01","TED novel fold AF-A0A1M6UMY1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1122133","l":"Kaistia soli DSM 19436","na":3,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["wetland-area-envo-00000043.html","wetland area"]],"b":[["TED%3AAF-A0A1M5DFE2-F1-model_v4_TED01","TED novel fold AF-A0A1M5DFE2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1123012","l":"Pseudobutyrivibrio xylanivorans DSM 14809","na":3,"nb":1,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"],["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"]],"b":[["TED%3AAF-A0A1M6KN30-F1-model_v4_TED01","TED novel fold AF-A0A1M6KN30-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1125630","l":"Klebsiella pneumoniae subsp. pneumoniae HS11286","na":1,"nb":3,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["Pfam%3APF16527","Two-component sensor protein CpxA, periplasmic domain"],["Pfam%3APF03883","Peroxide stress protein YaaA"],["PROSITE%3APS01081","TetR-type HTH domain signature"]]},{"id":"NCBITaxon:117681","l":"Pseudomonas gingeri","na":3,"nb":1,"a":[["lake-envo-00000020.html","lake"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"]],"b":[["TED%3AAF-A0A7Y7X9U2-F1-model_v4_TED01","TED novel fold AF-A0A7Y7X9U2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:119602","l":"Streptococcus dysgalactiae subsp. equisimilis","na":3,"nb":1,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["animal-manure-envo-00003031.html","animal manure"]],"b":[["TED%3AAF-A0A5M4CWR2-F1-model_v4_TED02","TED novel fold AF-A0A5M4CWR2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1267423","l":"Roseivirga pacifica","na":1,"nb":3,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["TED%3AAF-A0A1I0MEP5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I0MEP5-F1-model_v4_TED02"],["TED%3AAF-A0A1I0RG98-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I0RG98-F1-model_v4_TED01"],["TED%3AAF-A0A4D7JNA0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4D7JNA0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1295009","l":"Candidatus Methanomassiliicoccus intestinalis Issoire-Mx1","na":1,"nb":3,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["TED%3AAF-R9T6Q3-F1-model_v4_TED04","TED highly-symmetric fold AF-R9T6Q3-F1-model_v4_TED04"],["TED%3AAF-R9TAZ5-F1-model_v4_TED01","TED highly-symmetric fold AF-R9TAZ5-F1-model_v4_TED01"],["TED%3AAF-R9T6T6-F1-model_v4_TED01","TED novel fold AF-R9T6T6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1298856","l":"Sphingomonas sp. URHD0007","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["TED%3AAF-A0A2U1FWJ9-F1-model_v4_TED03","TED novel fold AF-A0A2U1FWJ9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1329250","l":"Weissella oryzae SG25","na":1,"nb":3,"a":[["caryopsis-bto-0000208.html","caryopsis"]],"b":[["Pfam%3APF26322","Botulinum-like neurotoxin Wo, C-terminal beta-trefoil domain"],["Pfam%3APF26321","Botulinum-like neurotoxin Wo, concanavalin A-like domain"],["TED%3AAF-A0A069CU70-F1-model_v4_TED02","TED novel fold AF-A0A069CU70-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1353","l":"Enterococcus gallinarum","na":3,"nb":1,"a":[["foregut-bto-0000507.html","foregut"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["Pfam%3APF01757","Acyltransferase domain"]]},{"id":"NCBITaxon:137591","l":"Weissella cibaria","na":3,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["epithelial-cell-bto-0000414.html","epithelial cell"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["TED%3AAF-A0A0D1LFQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D1LFQ3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:137722","l":"Azospirillum sp. B510","na":3,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["TED%3AAF-D3P3H1-F1-model_v4_TED02","TED highly-symmetric fold AF-D3P3H1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1503","l":"Gottschalkia purinilytica","na":3,"nb":1,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"],["sludge-envo-00002044.html","sludge"]],"b":[["Pfam%3APF07355","Glycine/sarcosine/betaine reductase selenoprotein B (GRDB)"]]},{"id":"NCBITaxon:1534","l":"Clostridium kluyveri","na":3,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"],["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"]],"b":[["TED%3AAF-A0A1L5FEG9-F1-model_v4_TED01","TED novel fold AF-A0A1L5FEG9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1552123","l":"Listeria booriae","na":1,"nb":3,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["TED%3AAF-A0A7X0TLR3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X0TLR3-F1-model_v4_TED01"],["TED%3AAF-A0A841XX79-F1-model_v4_TED03","TED novel fold AF-A0A841XX79-F1-model_v4_TED03"],["TED%3AAF-A0A842AXH7-F1-model_v4_TED01","TED novel fold AF-A0A842AXH7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:158","l":"Treponema denticola","na":3,"nb":1,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["archeological-site-envo-00000564.html","archeological site"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["TED%3AAF-A0A125RME2-F1-model_v4_TED02","TED novel fold AF-A0A125RME2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1588","l":"Lentilactobacillus hilgardii","na":3,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["TED%3AAF-A0A6G9Q2H1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6G9Q2H1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:169760","l":"Paenibacillus stellifer","na":3,"nb":1,"a":[["factory-envo-01000536.html","factory"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["TED%3AAF-A0A089LNP8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A089LNP8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1724","l":"Corynebacterium renale","na":3,"nb":1,"a":[["water-body-envo-00000063.html","water body"],["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["TED%3AAF-A0A2A9DLH1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A9DLH1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":1,"nb":3,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["Pfam%3APF03069","Acetamidase/Formamidase family"],["PROSITE%3APS00818","Dps protein family signature 1"],["Pfam%3APF13810","Domain of unknown function (DUF4185)"]]},{"id":"NCBITaxon:178306","l":"Pyrobaculum aerophilum str. IM2","na":1,"nb":3,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF09171","N-glycosylase/DNA lyase"],["Pfam%3APF10432","Bacterial phospho-glucose isomerase C-terminal SIS domain"],["TED%3AAF-Q8ZWY1-F1-model_v4_TED04","TED novel fold AF-Q8ZWY1-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1831","l":"Rhodococcus sp. (in: high G+C Gram-positive bacteria)","na":1,"nb":3,"a":[["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["Pfam%3APF14525","AraC-binding-like domain"],["Pfam%3APF01613","Flavin reductase like domain"],["TED%3AAF-A0A7X7SF64-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X7SF64-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1872119","l":"Acidobacterium sp.","na":3,"nb":1,"a":[["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"],["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["TED%3AAF-A0A2G4JIL1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2G4JIL1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1872578","l":"Aquabacterium sp.","na":1,"nb":3,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["TED%3AAF-A0A521ZRM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521ZRM4-F1-model_v4_TED01"],["TED%3AAF-A0A521ZL87-F1-model_v4_TED04","TED novel fold AF-A0A521ZL87-F1-model_v4_TED04"],["TED%3AAF-A0A5C8BIL8-F1-model_v4_TED02","TED novel fold AF-A0A5C8BIL8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1874361","l":"Idiomarina sp.","na":3,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"],["saline-water-body-envo-01001319.html","saline water body"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["TED%3AAF-A0A2E9H521-F1-model_v4_TED01","TED novel fold AF-A0A2E9H521-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1882831","l":"Verrucomicrobium sp. GAS474","na":1,"nb":3,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["TED%3AAF-A0A1H2GE34-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H2GE34-F1-model_v4_TED01"],["TED%3AAF-A0A1H2GVJ7-F1-model_v4_TED04","TED novel fold AF-A0A1H2GVJ7-F1-model_v4_TED04"],["TED%3AAF-A0A1H2HH15-F1-model_v4_TED02","TED novel fold AF-A0A1H2HH15-F1-model_v4_TED02"]]},{"id":"NCBITaxon:188906","l":"Jannaschia helgolandensis","na":3,"nb":1,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["TED%3AAF-A0A1H7MIC2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H7MIC2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:188908","l":"Oleispira antarctica","na":3,"nb":1,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A1Y5HYG0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y5HYG0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:189518","l":"Leptospira interrogans serovar Lai str. 56601","na":3,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF27429","LB_356"]]},{"id":"NCBITaxon:190655","l":"Legionella busanensis","na":1,"nb":3,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["TED%3AAF-A0A378JRR1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A378JRR1-F1-model_v4_TED01"],["TED%3AAF-A0A378JH21-F1-model_v4_TED02","TED novel fold AF-A0A378JH21-F1-model_v4_TED02"],["TED%3AAF-A0A378JIY5-F1-model_v4_TED01","TED novel fold AF-A0A378JIY5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1916082","l":"Alteromonadaceae bacterium","na":1,"nb":3,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A2E5MKL5-F1-model_v4_TED03","TED novel fold AF-A0A2E5MKL5-F1-model_v4_TED03"],["TED%3AAF-A0A7Y6ZTD4-F1-model_v4_TED02","TED novel fold AF-A0A7Y6ZTD4-F1-model_v4_TED02"],["TED%3AAF-A0A7Y6ZTV9-F1-model_v4_TED01","TED novel fold AF-A0A7Y6ZTV9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1970199","l":"Sorangiineae bacterium NIC37A_2","na":1,"nb":3,"a":[["compost-envo-00002170.html","compost"]],"b":[["TED%3AAF-A0A1W9QHW9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W9QHW9-F1-model_v4_TED01"],["TED%3AAF-A0A1W9Q7E2-F1-model_v4_TED02","TED novel fold AF-A0A1W9Q7E2-F1-model_v4_TED02"],["TED%3AAF-A0A1W9QHC1-F1-model_v4_TED04","TED novel fold AF-A0A1W9QHC1-F1-model_v4_TED04"]]},{"id":"NCBITaxon:198804","l":"Buchnera aphidicola str. Sg (Schizaphis graminum)","na":1,"nb":3,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Pfam%3APF09849","Uncharacterized protein conserved in bacteria (DUF2076)"],["Pfam%3APF09976","Tetratricopeptide repeat-like domain"],["Pfam%3APF13371","Tetratricopeptide repeat"]]},{"id":"NCBITaxon:199","l":"Campylobacter concisus","na":1,"nb":3,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["TED%3AAF-A0A7S9RBE4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S9RBE4-F1-model_v4_TED03"],["TED%3AAF-A0A1Y5MKZ8-F1-model_v4_TED01","TED novel fold AF-A0A1Y5MKZ8-F1-model_v4_TED01"],["TED%3AAF-A0A7S9X6B9-F1-model_v4_TED01","TED novel fold AF-A0A7S9X6B9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:216816","l":"Bifidobacterium longum","na":3,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"],["egg-food-product-foodon-00001274.html","egg food product"],["juvenile-bto-0002168.html","juvenile"]],"b":[["TED%3AAF-A0A413ACI9-F1-model_v4_TED01","TED novel fold AF-A0A413ACI9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2283","l":"Acidianus ambivalens","na":1,"nb":3,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["Pfam%3APF07680","TQO small subunit DoxA"],["Pfam%3APF04173","TQO small subunit DoxD"],["TED%3AAF-O57695-F1-model_v4_TED01","TED highly-symmetric fold AF-O57695-F1-model_v4_TED01"]]},{"id":"NCBITaxon:228410","l":"Nitrosomonas europaea ATCC 19718","na":1,"nb":3,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["Pfam%3APF02461","Ammonia monooxygenase"],["Pfam%3APF13435","Cytochrome c554 and c-prime"],["TED%3AAF-Q82SR8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q82SR8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:232991","l":"Dulcicalothrix desertica PCC 7102","na":3,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"],["desert-area-envo-00000097.html","desert area"],["sand-envo-01000017.html","sand"]],"b":[["TED%3AAF-A0A433V699-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A433V699-F1-model_v4_TED01"]]},{"id":"NCBITaxon:235279","l":"Helicobacter hepaticus ATCC 51449","na":1,"nb":3,"a":[["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"]],"b":[["Pfam%3APF13673","Acetyltransferase (GNAT) domain"],["Pfam%3APF03498","Cytolethal distending toxin A/C domain"],["Pfam%3APF03352","Methyladenine glycosylase"]]},{"id":"NCBITaxon:2371","l":"Xylella fastidiosa","na":3,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"],["water-scum-envo-00005794.html","water scum"]],"b":[["TED%3AAF-A0A1L2B4G6-F1-model_v4_TED02","TED novel fold AF-A0A1L2B4G6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:243243","l":"Mycobacterium avium 104","na":1,"nb":3,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF13740","ACT domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03710","Glutamate-ammonia ligase adenylyltransferase"]]},{"id":"NCBITaxon:256","l":"Myroides odoratus","na":3,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"]],"b":[["TED%3AAF-A0A378RV66-F1-model_v4_TED01","TED novel fold AF-A0A378RV66-F1-model_v4_TED01"]]},{"id":"NCBITaxon:272560","l":"Burkholderia pseudomallei K96243","na":1,"nb":3,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF07077","Virulence factor BPSS1818"],["Pfam%3APF11958","Surface attachment protein BPSS1860"],["Pfam%3APF16374","Cycle inhibiting factor (CIF)"]]},{"id":"NCBITaxon:28090","l":"Acinetobacter lwoffii","na":3,"nb":1,"a":[["nectar-bto-0000537.html","nectar"],["pseudostem-bto-0005992.html","pseudostem"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["TED%3AAF-A0A7S9AAV2-F1-model_v4_TED01","TED novel fold AF-A0A7S9AAV2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28111","l":"Bacteroides eggerthii","na":1,"nb":3,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["TED%3AAF-A0A380YHG6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A380YHG6-F1-model_v4_TED01"],["TED%3AAF-A0A380YP67-F1-model_v4_TED01","TED novel fold AF-A0A380YP67-F1-model_v4_TED01"],["TED%3AAF-A0A414M8K0-F1-model_v4_TED04","TED novel fold AF-A0A414M8K0-F1-model_v4_TED04"]]},{"id":"NCBITaxon:290338","l":"Citrobacter koseri ATCC BAA-895","na":1,"nb":3,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Pfam%3APF03783","Curli production assembly/transport component CsgG"],["Pfam%3APF04269","Protein of unknown function, DUF440"],["Pfam%3APF17874","MalT-like TPR region"]]},{"id":"NCBITaxon:29466","l":"Veillonella parvula","na":3,"nb":1,"a":[["dental-plaque-bto-0000338.html","dental plaque"],["juvenile-bto-0002168.html","juvenile"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["TED%3AAF-A0A134BYG5-F1-model_v4_TED01","TED novel fold AF-A0A134BYG5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:297246","l":"Legionella pneumophila str. Paris","na":3,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"],["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["Pfam%3APF03445","Putative nucleotidyltransferase DUF294"]]},{"id":"NCBITaxon:312309","l":"Aliivibrio fischeri ES114","na":1,"nb":3,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["Pfam%3APF06610","L-alanine exporter"],["Pfam%3APF00765","Autoinducer synthase"],["PROSITE%3APS00949","Autoinducer synthase family signature"]]},{"id":"NCBITaxon:313589","l":"Janibacter sp. HTCC2649","na":3,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["bulk-soil-envo-00005802.html","bulk soil"],["orchard-envo-00000115.html","orchard"]],"b":[["TED%3AAF-A3TKC7-F1-model_v4_TED01","TED novel fold AF-A3TKC7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:313595","l":"Psychroflexus torquis ATCC 700755","na":3,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["coral-reef-envo-00000150.html","coral reef"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["TED%3AAF-K4IBR2-F1-model_v4_TED01","TED novel fold AF-K4IBR2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:315456","l":"Rickettsia felis Marseille-URRWFXCal2","na":1,"nb":3,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["Pfam%3APF18324","Bacterial isocitrate dehydrogenase, C-terminal domain"],["Pfam%3APF11019","Protein of unknown function (DUF2608)"],["Pfam%3APF22203","Surface cell antigen Sca2 helical repeat"]]},{"id":"NCBITaxon:317655","l":"Sphingopyxis alaskensis RB2256","na":3,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["environmental-material-envo-00010483.html","environmental material"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["Pfam%3APF10755","Protein of unknown function (DUF2585)"]]},{"id":"NCBITaxon:321967","l":"Lacticaseibacillus paracasei ATCC 334","na":1,"nb":3,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["Pfam%3APF11975","Family 4 glycosyl hydrolase C-terminal domain"],["Pfam%3APF02056","Family 4 glycosyl hydrolase"],["PROSITE%3APS01324","Glycosyl hydrolases family 4 signature"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":1,"nb":3,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF22041","Glutathione S-transferase, C-terminal domain"],["Pfam%3APF08493","Aflatoxin regulatory protein"]]},{"id":"NCBITaxon:33959","l":"Lactobacillus johnsonii","na":3,"nb":1,"a":[["animal-litter-envo-00002191.html","animal litter"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["Pfam%3APF13518","Helix-turn-helix domain"]]},{"id":"NCBITaxon:349124","l":"Halorhodospira halophila SL1","na":1,"nb":3,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["Pfam%3APF02639","Uncharacterized BCR, YaiI/YqxD family COG1671"],["Pfam%3APF20543","N2-fixation sustaining protein CowN"],["Pfam%3APF07311","Dodecin"]]},{"id":"NCBITaxon:349741","l":"Akkermansia muciniphila ATCC BAA-835","na":1,"nb":3,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["Pfam%3APF23763","GLAA-B beta-barrel domain I"],["Pfam%3APF23764","GLAA-B beta-barrel domain II"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"]]},{"id":"NCBITaxon:357804","l":"Psychromonas ingrahamii 37","na":1,"nb":3,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["Pfam%3APF27465","DNA-binding protein Fis N-terminal domain"],["Pfam%3APF04363","Protein of unknown function (DUF496)"],["Pfam%3APF18955","Domain of unknown function (DUF5698)"]]},{"id":"NCBITaxon:35816","l":"Pelobacter acidigallici","na":3,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["Pfam%3APF21423","Pyrogallol hydroxytransferase large subunit-like, domain 1"]]},{"id":"NCBITaxon:360807","l":"Roseburia inulinivorans","na":3,"nb":1,"a":[["pig-manure-envo-00003860.html","pig manure"],["tropical-envo-01000204.html","tropical"],["harbour-envo-00000463.html","harbour"]],"b":[["TED%3AAF-A0A173VWR5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A173VWR5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:367928","l":"Bifidobacterium adolescentis ATCC 15703","na":1,"nb":3,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["Pfam%3APF02156","Glycosyl hydrolase family 26"],["Pfam%3APF27512","LeuD_N"]]},{"id":"NCBITaxon:376686","l":"Flavobacterium johnsoniae UW101","na":1,"nb":3,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["Pfam%3APF17957","Bacterial Ig domain"],["Pfam%3APF24850","Bacillithiol biosynthesis BshC, C-terminal coiled-coil domain"],["Pfam%3APF14109","GldH lipoprotein"]]},{"id":"NCBITaxon:384616","l":"Pyrobaculum islandicum DSM 4184","na":1,"nb":3,"a":[["geothermal-power-plant-envo-00002215.html","geothermal power plant"]],"b":[["Pfam%3APF01941","S-adenosylmethionine synthetase (AdoMet synthetase)"],["Pfam%3APF11520","Chromatin protein Cren7"],["Pfam%3APF05167","Uncharacterised ACR (DUF711)"]]},{"id":"NCBITaxon:384676","l":"Pseudomonas entomophila L48","na":1,"nb":3,"a":[["coelom-bto-0001707.html","coelom"]],"b":[["Pfam%3APF18063","Beta barrel Pore-forming domain"],["Pfam%3APF08548","Peptidase M10 serralysin C terminal"],["TED%3AAF-Q1I2P2-F1-model_v4_TED01","TED novel fold AF-Q1I2P2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:399599","l":"Shewanella baltica OS195","na":1,"nb":3,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["Pfam%3APF24860","FdhE, C-terminal domain"],["Pfam%3APF24859","FdhE, central domain"],["Pfam%3APF04216","FdhE, N-terminal"]]},{"id":"NCBITaxon:399739","l":"Ectopseudomonas mendocina ymp","na":1,"nb":3,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["Pfam%3APF22289","Dimethylamine monooxygenase subunit DmmA-like, C-terminal domain"],["Pfam%3APF04359","Protein of unknown function (DUF493)"],["Pfam%3APF11927","Haem-dependent oxidative N-demethylase, alpha subunit-like"]]},{"id":"NCBITaxon:400682","l":"Amphimedon queenslandica","na":1,"nb":3,"a":[["germ-cell-bto-0000535.html","germ cell"]],"b":[["TED%3AAF-A0A1X7UW69-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X7UW69-F1-model_v4_TED01"],["TED%3AAF-A0A1X7SZW3-F1-model_v4_TED01","TED novel fold AF-A0A1X7SZW3-F1-model_v4_TED01"],["TED%3AAF-A0A1X7UQD3-F1-model_v4_TED02","TED novel fold AF-A0A1X7UQD3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:401053","l":"Terriglobus saanensis SP1PR4","na":3,"nb":1,"a":[["bulk-soil-envo-00005802.html","bulk soil"],["forested-area-envo-00000111.html","forested area"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-E8UZX5-F1-model_v4_TED02","TED novel fold AF-E8UZX5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:406547","l":"Rubripirellula obstinata","na":1,"nb":3,"a":[["epibiont-habitatmech-bacdive-f4eb470a03.html","Epibiont"]],"b":[["TED%3AAF-A0A5B1CJC2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B1CJC2-F1-model_v4_TED01"],["TED%3AAF-A0A5B1CQ78-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B1CQ78-F1-model_v4_TED01"],["TED%3AAF-A0A5B1CIN8-F1-model_v4_TED02","TED novel fold AF-A0A5B1CIN8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:419665","l":"Methanococcus aeolicus Nankai-3","na":1,"nb":3,"a":[["shoreline-envo-00000486.html","shoreline"]],"b":[["Pfam%3APF26548","Putative peptidyl-prolyl cis-trans isomerase domain"],["Pfam%3APF06787","FeGP cofactor biosynthesis protein HcgF"],["Pfam%3APF01941","S-adenosylmethionine synthetase (AdoMet synthetase)"]]},{"id":"NCBITaxon:438","l":"Acetobacter pasteurianus","na":3,"nb":1,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"],["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["TED%3AAF-A0A1A0CE09-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1A0CE09-F1-model_v4_TED01"]]},{"id":"NCBITaxon:439292","l":"[Bacillus] selenitireducens MLS10","na":1,"nb":3,"a":[["anaerobic-mud-envo-00002133.html","anaerobic mud"]],"b":[["Pfam%3APF03633","Glycosyl hydrolase family 65, C-terminal domain"],["Pfam%3APF03636","Glycosyl hydrolase family 65, N-terminal domain"],["Pfam%3APF03632","Glycosyl hydrolase family 65 central catalytic domain"]]},{"id":"NCBITaxon:439495","l":"Pseudovibrio sp. JE062","na":3,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["germ-cell-bto-0000535.html","germ cell"],["desert-sand-envo-00005800.html","desert sand"]],"b":[["TED%3AAF-B6R9T4-F1-model_v4_TED01","TED highly-symmetric fold AF-B6R9T4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:444158","l":"Methanococcus maripaludis C6","na":1,"nb":3,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["Pfam%3APF06847","Archaeal Peptidase A24 C-terminus Type II"],["Pfam%3APF09888","Uncharacterized protein conserved in archaea (DUF2115)"],["Pfam%3APF05165","GTP cyclohydrolase III"]]},{"id":"NCBITaxon:446465","l":"Brachybacterium faecium DSM 4810","na":3,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["poultry-deep-litter-envo-00003908.html","poultry deep litter"],["village-biome-envo-01000246.html","village biome"]],"b":[["TED%3AAF-C7MEJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-C7MEJ8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:448385","l":"Sorangium cellulosum So ce56","na":1,"nb":3,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["TED%3AAF-A9FYP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A9FYP8-F1-model_v4_TED01"],["TED%3AAF-A9G932-F1-model_v4_TED01","TED highly-symmetric fold AF-A9G932-F1-model_v4_TED01"],["TED%3AAF-A9F9E5-F1-model_v4_TED01","TED novel fold AF-A9F9E5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:45634","l":"Streptococcus cristatus","na":1,"nb":3,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["Pfam%3APF03486","HI0933-like protein Rossmann domain"],["Pfam%3APF22780","HI0933-like protein barrel and H2TH domain"],["TED%3AAF-A0A139N090-F1-model_v4_TED01","TED novel fold AF-A0A139N090-F1-model_v4_TED01"]]},{"id":"NCBITaxon:469371","l":"Thermobispora bispora DSM 43833","na":3,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["TED%3AAF-D6Y8C2-F1-model_v4_TED02","TED novel fold AF-D6Y8C2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:479431","l":"Nakamurella multipartita DSM 44233","na":3,"nb":1,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["TED%3AAF-C8XHD0-F1-model_v4_TED02","TED novel fold AF-C8XHD0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:51663","l":"Pediococcus damnosus","na":3,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["blast-cell-bto-0000125.html","blast cell"]],"b":[["TED%3AAF-A0A0R2HKY5-F1-model_v4_TED01","TED novel fold AF-A0A0R2HKY5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:530564","l":"Pirellula staleyi DSM 6068","na":3,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["agricultural-soil-envo-00002259.html","agricultural soil"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-D2QXI3-F1-model_v4_TED05","TED novel fold AF-D2QXI3-F1-model_v4_TED05"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":1,"nb":3,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"],["TED%3AAF-A0A7H8I034-F1-model_v4_TED01","TED novel fold AF-A0A7H8I034-F1-model_v4_TED01"]]},{"id":"NCBITaxon:554155","l":"Arthroderma otae (strain ATCC MYA-4605 / CBS 113480)","na":1,"nb":3,"a":[["mountain-pass-envo-00000084.html","mountain pass"]],"b":[["Pfam%3APF13560","Helix-turn-helix domain"],["TED%3AAF-C5FU25-F1-model_v4_TED01","TED novel fold AF-C5FU25-F1-model_v4_TED01"],["TED%3AAF-C5FXD7-F1-model_v4_TED05","TED novel fold AF-C5FXD7-F1-model_v4_TED05"]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":1,"nb":3,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"],["PROSITE%3APS00896","LacY family proton/sugar symporters signature 1"],["PROSITE%3APS00897","LacY family proton/sugar symporters signature 2"]]},{"id":"NCBITaxon:573064","l":"Methanocaldococcus fervens AG86","na":3,"nb":1,"a":[["inlet-envo-00000475.html","inlet"],["shoreline-envo-00000486.html","shoreline"],["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["Pfam%3APF02655","ATP-grasp domain"]]},{"id":"NCBITaxon:578458","l":"Schizophyllum commune (strain H4-8 / FGSC 9210)","na":1,"nb":3,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["TED%3AAF-D8PNC3-F1-model_v4_TED01","TED novel fold AF-D8PNC3-F1-model_v4_TED01"],["TED%3AAF-D8QDU6-F1-model_v4_TED02","TED novel fold AF-D8QDU6-F1-model_v4_TED02"],["TED%3AAF-D8QJK2-F1-model_v4_TED01","TED novel fold AF-D8QJK2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:584","l":"Proteus mirabilis","na":1,"nb":3,"a":[["salivary-gland-bto-0001203.html","salivary gland"]],"b":[["Pfam%3APF05280","Flagellar transcriptional activator (FlhC)"],["TED%3AAF-A0A1Z1SXV6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z1SXV6-F1-model_v4_TED01"],["TED%3AAF-A0A7U1CMJ9-F1-model_v4_TED01","TED novel fold AF-A0A7U1CMJ9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:588","l":"Providencia stuartii","na":1,"nb":3,"a":[["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["PROSITE%3APS01157","Class A bacterial acid phosphatases signature"]]},{"id":"NCBITaxon:644282","l":"Desulfarculus baarsii DSM 2075","na":1,"nb":3,"a":[["ditch-envo-00000037.html","ditch"]],"b":[["Pfam%3APF06397","Desulfoferrodoxin, N-terminal domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["TED%3AAF-E1QLH8-F1-model_v4_TED02","TED novel fold AF-E1QLH8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:658457","l":"Ectopseudomonas composti","na":3,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["TED%3AAF-A0A1I5P4N2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5P4N2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:666681","l":"Methylotenera versatilis 301","na":3,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["environmental-material-envo-00010483.html","environmental material"],["river-bed-envo-00000384.html","river bed"]],"b":[["TED%3AAF-D7DL14-F1-model_v4_TED01","TED novel fold AF-D7DL14-F1-model_v4_TED01"]]},{"id":"NCBITaxon:66711","l":"Escherichia phage AR1","na":1,"nb":3,"a":[["fiber-bto-0000450.html","fiber"]],"b":[["Pfam%3APF21721","Phage tail fibre adhesin Gp38 N-terminal domain"],["Pfam%3APF05268","Phage tail fibre adhesin Gp38"],["Pfam%3APF21446","Long-tail fiber proximal subunit, C-terminal, trimerization domain"]]},{"id":"NCBITaxon:688270","l":"Cellulophaga algicola DSM 14237","na":1,"nb":3,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["TED%3AAF-E6XBJ1-F1-model_v4_TED01","TED highly-symmetric fold AF-E6XBJ1-F1-model_v4_TED01"],["TED%3AAF-E6X960-F1-model_v4_TED02","TED novel fold AF-E6X960-F1-model_v4_TED02"],["TED%3AAF-E6XEV2-F1-model_v4_TED02","TED novel fold AF-E6XEV2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:69293","l":"Gasterosteus aculeatus","na":3,"nb":1,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"],["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["TED%3AAF-G3Q6M8-F1-model_v4_TED01","TED novel fold AF-G3Q6M8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:715","l":"Actinobacillus pleuropneumoniae","na":1,"nb":3,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["Pfam%3APF26002","AprE-like, beta-barrel domain"],["Pfam%3APF02794","RTX toxin acyltransferase family"],["PROSITE%3APS00543","HlyD family secretion proteins signature"]]},{"id":"NCBITaxon:7176","l":"Culex quinquefasciatus","na":1,"nb":3,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["TED%3AAF-B0W7X4-F1-model_v4_TED04","TED highly-symmetric fold AF-B0W7X4-F1-model_v4_TED04"],["TED%3AAF-B0WQL7-F1-model_v4_TED02","TED highly-symmetric fold AF-B0WQL7-F1-model_v4_TED02"],["TED%3AAF-B0XLK9-F1-model_v4_TED05","TED highly-symmetric fold AF-B0XLK9-F1-model_v4_TED05"]]},{"id":"NCBITaxon:729","l":"Haemophilus parainfluenzae","na":3,"nb":1,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"],["tropical-envo-01000204.html","tropical"]],"b":[["Pfam%3APF04480","Protein of unknown function (DUF559)"]]},{"id":"NCBITaxon:749414","l":"Streptomyces bingchenggensis BCW-1","na":1,"nb":3,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF14509","Glycosyl-hydrolase 97 C-terminal, oligomerisation"],["Pfam%3APF14508","Glycosyl-hydrolase 97 N-terminal"],["Pfam%3APF10566","Glycoside hydrolase 97"]]},{"id":"NCBITaxon:79880","l":"Shouchella clausii","na":1,"nb":3,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["Pfam%3APF13536","Putative multidrug resistance efflux transporter"],["Pfam%3APF10776","Protein of unknown function (DUF2600)"],["TED%3AAF-A0A268NXB1-F1-model_v4_TED01","TED novel fold AF-A0A268NXB1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:83655","l":"Leclercia adecarboxylata","na":3,"nb":1,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["TED%3AAF-A0A5B7XGB6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A5B7XGB6-F1-model_v4_TED04"]]},{"id":"NCBITaxon:886293","l":"Singulisphaera acidiphila DSM 18658","na":1,"nb":3,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-L0DF60-F1-model_v4_TED01","TED highly-symmetric fold AF-L0DF60-F1-model_v4_TED01"],["TED%3AAF-L0DFV3-F1-model_v4_TED01","TED highly-symmetric fold AF-L0DFV3-F1-model_v4_TED01"],["TED%3AAF-L0DBJ5-F1-model_v4_TED02","TED novel fold AF-L0DBJ5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:91360","l":"Desulforhopalus singaporensis","na":3,"nb":1,"a":[["marsh-envo-00000035.html","marsh"],["road-envo-00000064.html","road"],["garden-envo-00000011.html","garden"]],"b":[["TED%3AAF-A0A1H0QB18-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H0QB18-F1-model_v4_TED01"]]},{"id":"NCBITaxon:996","l":"Flavobacterium columnare","na":1,"nb":3,"a":[["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["TED%3AAF-A0A4Z0FEB3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Z0FEB3-F1-model_v4_TED02"],["TED%3AAF-A0A2N9P872-F1-model_v4_TED02","TED novel fold AF-A0A2N9P872-F1-model_v4_TED02"],["TED%3AAF-A0A2T4HIF9-F1-model_v4_TED03","TED novel fold AF-A0A2T4HIF9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1002340","l":"Leisingera sp. ANG1","na":2,"nb":1,"a":[["gland-bto-0000522.html","gland"],["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["TED%3AAF-A0A0B4EI55-F1-model_v4_TED01","TED novel fold AF-A0A0B4EI55-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1004304","l":"Hydrotalea sandarakina","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["island-envo-00000098.html","island"]],"b":[["TED%3AAF-A0A2W7RGM4-F1-model_v4_TED03","TED novel fold AF-A0A2W7RGM4-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1005043","l":"Candidatus Regiella insecticola 5.15","na":1,"nb":2,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["TED%3AAF-G2H098-F1-model_v4_TED01","TED highly-symmetric fold AF-G2H098-F1-model_v4_TED01"],["TED%3AAF-G2H102-F1-model_v4_TED04","TED novel fold AF-G2H102-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1006155","l":"Paenilisteria weihenstephanensis","na":2,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["TED%3AAF-A0A1S7FXD4-F1-model_v4_TED02","TED novel fold AF-A0A1S7FXD4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1007676","l":"Companilactobacillus ginsenosidimutans","na":2,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["TED%3AAF-A0A0H4QHM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0H4QHM6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1028307","l":"Klebsiella aerogenes KCTC 2190","na":1,"nb":2,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["Pfam%3APF16031","TonB polyproline region"],["Pfam%3APF09078","CheY binding"]]},{"id":"NCBITaxon:1031537","l":"Bremerella cremea","na":2,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"],["carcass-envo-00002033.html","carcass"]],"b":[["TED%3AAF-A0A368KQM2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A368KQM2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1033810","l":"Haloplasma contractile SSD-17B","na":1,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["TED%3AAF-F7PZK9-F1-model_v4_TED01","TED highly-symmetric fold AF-F7PZK9-F1-model_v4_TED01"],["TED%3AAF-U2EDU2-F1-model_v4_TED03","TED novel fold AF-U2EDU2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1034943","l":"Legionella massiliensis","na":1,"nb":2,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["TED%3AAF-A0A078KZR2-F1-model_v4_TED02","TED novel fold AF-A0A078KZR2-F1-model_v4_TED02"],["TED%3AAF-A0A078L1Y9-F1-model_v4_TED02","TED novel fold AF-A0A078L1Y9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1042","l":"Erythrobacter sp.","na":2,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A6G9N8S4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6G9N8S4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1045004","l":"Oenococcus kitaharae DSM 17330","na":2,"nb":1,"a":[["compost-envo-00002170.html","compost"],["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["TED%3AAF-G9WIN5-F1-model_v4_TED02","TED highly-symmetric fold AF-G9WIN5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1048394","l":"Compostimonas suwonensis","na":2,"nb":1,"a":[["agricultural-waste-material-envo-01000371.html","agricultural waste material"],["waste-material-envo-00002264.html","waste material"]],"b":[["TED%3AAF-A0A2M9BCH6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2M9BCH6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1048689","l":"Escherichia coli O55:H7 str. RM12579","na":1,"nb":2,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["Pfam%3APF28043","Anti-phage protein KwaA"],["Pfam%3APF16162","Kiwa protein KwaB-like"]]},{"id":"NCBITaxon:108981","l":"Acinetobacter schindleri","na":2,"nb":1,"a":[["gut-bto-0000545.html","gut"],["skin-bto-0001253.html","skin"]],"b":[["TED%3AAF-A0A855WCB4-F1-model_v4_TED02","TED novel fold AF-A0A855WCB4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1096246","l":"Hungatella effluvii","na":2,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["environmental-system-envo-01000254.html","environmental system"]],"b":[["TED%3AAF-A0A2V3YBX4-F1-model_v4_TED02","TED novel fold AF-A0A2V3YBX4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1114856","l":"Natronorubrum tibetense GA33","na":2,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"],["sediment-envo-00002007.html","sediment"]],"b":[["TED%3AAF-L9VUV1-F1-model_v4_TED01","TED novel fold AF-L9VUV1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1120918","l":"Acetitomaculum ruminis DSM 5522","na":2,"nb":1,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["TED%3AAF-A0A1I1ATM7-F1-model_v4_TED01","TED novel fold AF-A0A1I1ATM7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1120923","l":"Acidocella aminolytica 101 = DSM 11237","na":2,"nb":1,"a":[["mine-envo-00000076.html","mine"],["rock-envo-00001995.html","rock"]],"b":[["TED%3AAF-A0A0D6PBP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D6PBP8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121022","l":"Asticcacaulis benevestitus DSM 16100 = ATCC BAA-896","na":2,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["TED%3AAF-V4PT21-F1-model_v4_TED01","TED highly-symmetric fold AF-V4PT21-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121270","l":"Carboxydocella thermautotrophica DSM 16521","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["peninsula-envo-00000305.html","peninsula"]],"b":[["TED%3AAF-A0A1T4LMW3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1T4LMW3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1121279","l":"Chitinimonas taiwanensis DSM 18899","na":1,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"]],"b":[["TED%3AAF-A0A1K2HNH6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1K2HNH6-F1-model_v4_TED02"],["TED%3AAF-A0A1K2HS13-F1-model_v4_TED04","TED novel fold AF-A0A1K2HS13-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1121405","l":"Desulfococcus multivorans DSM 2059","na":2,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"],["sludge-envo-00002044.html","sludge"]],"b":[["TED%3AAF-S7VDW8-F1-model_v4_TED02","TED highly-symmetric fold AF-S7VDW8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1121419","l":"Desulfosporosinus hippei DSM 8344","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["TED%3AAF-A0A1G8D348-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G8D348-F1-model_v4_TED01"],["TED%3AAF-A0A1G8CVS7-F1-model_v4_TED01","TED novel fold AF-A0A1G8CVS7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121448","l":"Megalodesulfovibrio gigas DSM 1382 = ATCC 19364","na":2,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["primordium-bto-0001886.html","primordium"]],"b":[["Pfam%3APF12139","Adenosine-5'-phosphosulfate reductase beta subunit"]]},{"id":"NCBITaxon:1121868","l":"Enterovibrio nigricans DSM 22720","na":1,"nb":2,"a":[["mediterranean-envo-01000207.html","mediterranean"]],"b":[["TED%3AAF-A0A1T4UXP3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1T4UXP3-F1-model_v4_TED01"],["TED%3AAF-A0A1T4VT23-F1-model_v4_TED01","TED novel fold AF-A0A1T4VT23-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121915","l":"Geoalkalibacter ferrihydriticus DSM 17813","na":2,"nb":1,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["TED%3AAF-A0A0C2HTA4-F1-model_v4_TED03","TED novel fold AF-A0A0C2HTA4-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1121955","l":"Hymenobacter daecheongensis DSM 21074","na":1,"nb":2,"a":[["dam-envo-00000074.html","dam"]],"b":[["TED%3AAF-A0A1M6EGP6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M6EGP6-F1-model_v4_TED02"],["TED%3AAF-A0A1M6M5E1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M6M5E1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1123071","l":"Rubritalea squalenifaciens DSM 18772","na":2,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"],["peninsula-envo-00000305.html","peninsula"]],"b":[["TED%3AAF-A0A1M6J7A4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M6J7A4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1124743","l":"Kribbella soli","na":2,"nb":1,"a":[["park-envo-00000562.html","park"],["forest-biome-envo-01000174.html","forest biome"]],"b":[["TED%3AAF-A0A4Q7WU76-F1-model_v4_TED01","TED novel fold AF-A0A4Q7WU76-F1-model_v4_TED01"]]},{"id":"NCBITaxon:113653","l":"Geoglobus ahangari","na":1,"nb":2,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["TED%3AAF-A0A7J3TIF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J3TIF4-F1-model_v4_TED01"],["TED%3AAF-A0A0F7ID24-F1-model_v4_TED02","TED novel fold AF-A0A0F7ID24-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1150298","l":"Fusicatenibacter saccharivorans","na":1,"nb":2,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["TED%3AAF-A0A174K1Z5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A174K1Z5-F1-model_v4_TED01"],["TED%3AAF-A0A174J3Q6-F1-model_v4_TED01","TED novel fold AF-A0A174J3Q6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1153","l":"Pseudanabaena sp.","na":1,"nb":2,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"]],"b":[["TED%3AAF-A0A2W6YPX5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W6YPX5-F1-model_v4_TED01"],["TED%3AAF-A0A2W7B262-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W7B262-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1165092","l":"Lachnospiraceae bacterium JC7","na":1,"nb":2,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["TED%3AAF-W3AP45-F1-model_v4_TED03","TED highly-symmetric fold AF-W3AP45-F1-model_v4_TED03"],["TED%3AAF-W3ATW4-F1-model_v4_TED02","TED highly-symmetric fold AF-W3ATW4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1166078","l":"Aureimonas phyllosphaerae","na":2,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["TED%3AAF-A0A7W6FW33-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W6FW33-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1172204","l":"Paraclostridium sordellii 8483","na":1,"nb":2,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["TED%3AAF-A0A446IBF2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A446IBF2-F1-model_v4_TED01"],["TED%3AAF-A0A446ICV2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A446ICV2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1190417","l":"Geodermatophilus telluris","na":2,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"],["sand-envo-01000017.html","sand"]],"b":[["TED%3AAF-A0A1G6L8J2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G6L8J2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1192854","l":"Granulosicoccus antarcticus IMCC3135","na":1,"nb":2,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["TED%3AAF-A0A2Z2NPF3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2Z2NPF3-F1-model_v4_TED03"],["TED%3AAF-A0A2Z2P0Z5-F1-model_v4_TED01","TED novel fold AF-A0A2Z2P0Z5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:119641","l":"Clostridium uliginosum","na":1,"nb":2,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["TED%3AAF-A0A1I1R8X9-F1-model_v4_TED03","TED novel fold AF-A0A1I1R8X9-F1-model_v4_TED03"],["TED%3AAF-A0A1I1S8C7-F1-model_v4_TED03","TED novel fold AF-A0A1I1S8C7-F1-model_v4_TED03"]]},{"id":"NCBITaxon:121719","l":"Pannonibacter phragmitetus","na":2,"nb":1,"a":[["nectar-bto-0000537.html","nectar"],["style-bto-0001313.html","style"]],"b":[["TED%3AAF-A0A0U3EPB7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0U3EPB7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1284","l":"Staphylococcus hyicus","na":1,"nb":2,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["Pfam%3APF04650","YSIRK type signal peptide"],["PROSITE%3APS01123","Thermonuclease family signature 1"]]},{"id":"NCBITaxon:1286","l":"Staphylococcus simulans","na":2,"nb":1,"a":[["animal-house-envo-00003040.html","animal house"],["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["Pfam%3APF25533","Lysostaphin, N-terminal domain"]]},{"id":"NCBITaxon:1290","l":"Staphylococcus hominis","na":2,"nb":1,"a":[["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"]],"b":[["TED%3AAF-A0A6N0I1N0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N0I1N0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1341154","l":"Flavobacterium cauense R2A-7","na":1,"nb":2,"a":[["lake-envo-00000020.html","lake"]],"b":[["TED%3AAF-V6RYF5-F1-model_v4_TED01","TED novel fold AF-V6RYF5-F1-model_v4_TED01"],["TED%3AAF-V6S0E8-F1-model_v4_TED02","TED novel fold AF-V6S0E8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:134537","l":"Paraburkholderia fungorum","na":1,"nb":2,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["TED%3AAF-A0A1H1IH55-F1-model_v4_TED01","TED novel fold AF-A0A1H1IH55-F1-model_v4_TED01"],["TED%3AAF-A0A2N8QLD6-F1-model_v4_TED03","TED novel fold AF-A0A2N8QLD6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:13689","l":"Sphingomonas paucimobilis","na":2,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"]],"b":[["PROSITE%3APS00082","Extradiol ring-cleavage dioxygenases signature"]]},{"id":"NCBITaxon:138074","l":"Serratia symbiotica","na":2,"nb":1,"a":[["intestine-bto-0000648.html","intestine"],["pseudostem-bto-0005992.html","pseudostem"]],"b":[["TED%3AAF-A0A068YYP3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A068YYP3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1385511","l":"Pontibacillus marinus BH030004 = DSM 16465","na":2,"nb":1,"a":[["pond-envo-00000033.html","pond"],["saline-evaporation-pond-envo-00000055.html","saline evaporation pond"]],"b":[["TED%3AAF-A0A0A5GIK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A5GIK2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1408281","l":"Endomicrobium proavitum","na":2,"nb":1,"a":[["flagellate-bto-0000464.html","flagellate"],["larva-bto-0000707.html","larva"]],"b":[["TED%3AAF-A0A0G3WK72-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G3WK72-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1427370","l":"Chlamydia pecorum DBDeUG","na":2,"nb":1,"a":[["conjunctiva-bto-0003415.html","conjunctiva"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["TED%3AAF-V8TRT3-F1-model_v4_TED01","TED highly-symmetric fold AF-V8TRT3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1465","l":"Brevibacillus laterosporus","na":2,"nb":1,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["TED%3AAF-A0A0F7BZ24-F1-model_v4_TED01","TED novel fold AF-A0A0F7BZ24-F1-model_v4_TED01"]]},{"id":"NCBITaxon:146919","l":"Salinibacter ruber","na":2,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["TED%3AAF-A0A840D6P8-F1-model_v4_TED02","TED novel fold AF-A0A840D6P8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["PROSITE%3APS01120","Urease nickel ligands signature"],["PROSITE%3APS00145","Urease active site"]]},{"id":"NCBITaxon:1490","l":"Paraclostridium bifermentans","na":2,"nb":1,"a":[["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"],["harbour-envo-00000463.html","harbour"]],"b":[["TED%3AAF-A0A5P3XDT9-F1-model_v4_TED01","TED novel fold AF-A0A5P3XDT9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1494","l":"Clostridium cochlearium","na":2,"nb":1,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"]],"b":[["TED%3AAF-A0A7Y3V7F0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y3V7F0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1509","l":"Clostridium sporogenes","na":2,"nb":1,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["Pfam%3APF06050","2-hydroxyglutaryl-CoA dehydratase, D-component"]]},{"id":"NCBITaxon:1553448","l":"Falsigemmobacter intermedius","na":1,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["TED%3AAF-A0A444M931-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A444M931-F1-model_v4_TED02"],["TED%3AAF-A0A444ME17-F1-model_v4_TED01","TED novel fold AF-A0A444ME17-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1578720","l":"Helicobacter ailurogastricus","na":2,"nb":1,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["mycosis-habitatmech-bacdive-6d5784a4c5.html","Mycosis"]],"b":[["TED%3AAF-A0A0K2X3G5-F1-model_v4_TED01","TED novel fold AF-A0A0K2X3G5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:158500","l":"Novosphingobium resinovorum","na":1,"nb":2,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A031JQ90-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A031JQ90-F1-model_v4_TED01"],["TED%3AAF-A0A031JQV5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A031JQV5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:158836","l":"Enterobacter hormaechei","na":1,"nb":2,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["TED%3AAF-A0A431SE22-F1-model_v4_TED01","TED novel fold AF-A0A431SE22-F1-model_v4_TED01"],["TED%3AAF-A0A8B5ZRS3-F1-model_v4_TED01","TED novel fold AF-A0A8B5ZRS3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1612308","l":"Methylocapsa palsarum","na":1,"nb":2,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["TED%3AAF-A0A1I4BSR3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I4BSR3-F1-model_v4_TED02"],["TED%3AAF-A0A1I3X4Y4-F1-model_v4_TED01","TED novel fold AF-A0A1I3X4Y4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:164756","l":"Mycobacterium sp. MCS","na":2,"nb":1,"a":[["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["TED%3AAF-A0A5Q5BFH8-F1-model_v4_TED01","TED novel fold AF-A0A5Q5BFH8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:167968","l":"uncultured Desulfovibrio sp.","na":1,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["TED%3AAF-A0A212J776-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A212J776-F1-model_v4_TED02"],["TED%3AAF-A0A212L6P7-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A212L6P7-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":2,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["TED%3AAF-A0A415C3I8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A415C3I8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:168471","l":"Laribacter hongkongensis","na":2,"nb":1,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"]],"b":[["TED%3AAF-A0A248LK09-F1-model_v4_TED01","TED novel fold AF-A0A248LK09-F1-model_v4_TED01"]]},{"id":"NCBITaxon:169679","l":"Clostridium saccharobutylicum","na":2,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"]],"b":[["Pfam%3APF13290","Chitobiase/beta-hexosaminidase C-terminal domain"]]},{"id":"NCBITaxon:1797191","l":"Acidobacteria bacterium RIFCSPLOWO2_12_FULL_66_21","na":1,"nb":2,"a":[["loam-envo-00002258.html","loam"]],"b":[["TED%3AAF-A0A1F2TD39-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F2TD39-F1-model_v4_TED01"],["TED%3AAF-A0A1F2TJD6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F2TJD6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1798213","l":"Pseudovibrio sp. Tun.PSC04-5.I4","na":2,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["peninsula-envo-00000305.html","peninsula"]],"b":[["TED%3AAF-A0A1H1I1X9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H1I1X9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1873897","l":"Cupriavidus sp.","na":2,"nb":1,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["TED%3AAF-A0A352SA47-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A352SA47-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1895664","l":"Halanaerobium sp.","na":1,"nb":2,"a":[["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["TED%3AAF-A0A315QT49-F1-model_v4_TED03","TED novel fold AF-A0A315QT49-F1-model_v4_TED03"],["TED%3AAF-A0A315R434-F1-model_v4_TED03","TED novel fold AF-A0A315R434-F1-model_v4_TED03"]]},{"id":"NCBITaxon:189918","l":"Mycobacterium sp. KMS","na":2,"nb":1,"a":[["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"],["mountain-pass-envo-00000084.html","mountain pass"]],"b":[["Pfam%3APF06339","Ectoine synthase"]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":2,"nb":1,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Pfam%3APF26312","Domain of unknown function (DUF8083)"]]},{"id":"NCBITaxon:193","l":"Azospirillum lipoferum","na":2,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"]],"b":[["TED%3AAF-A0A1X7MZF1-F1-model_v4_TED02","TED novel fold AF-A0A1X7MZF1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1932","l":"Streptomyces tendae","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["Pfam%3APF01356","Alpha amylase inhibitor"]]},{"id":"NCBITaxon:1938","l":"Streptomyces viridochromogenes","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["Pfam%3APF11599","RRNA methyltransferase AviRa"]]},{"id":"NCBITaxon:2024855","l":"Rhodopirellula sp.","na":1,"nb":2,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A2E0S8K6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0S8K6-F1-model_v4_TED01"],["TED%3AAF-A0A358MZ88-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A358MZ88-F1-model_v4_TED03"]]},{"id":"NCBITaxon:2026725","l":"Chromatiales bacterium","na":1,"nb":2,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["TED%3AAF-A0A520X6H8-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A520X6H8-F1-model_v4_TED05"],["TED%3AAF-A0A7C2AIC9-F1-model_v4_TED02","TED novel fold AF-A0A7C2AIC9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:208962","l":"Escherichia albertii","na":1,"nb":2,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["Pfam%3APF18134","Adenylyl/Guanylyl and SMODS C-terminal sensor domain"],["Pfam%3APF18153","Cap15, cyclic dinucleotide receptor domain"]]},{"id":"NCBITaxon:2100533","l":"Sphingobacterium haloxyli","na":1,"nb":2,"a":[["endosphere-habitatmech-bacdive-3e4680f074.html","Endosphere"]],"b":[["TED%3AAF-A0A2S9J8F0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S9J8F0-F1-model_v4_TED01"],["TED%3AAF-A0A2S9J915-F1-model_v4_TED02","TED novel fold AF-A0A2S9J915-F1-model_v4_TED02"]]},{"id":"NCBITaxon:213224","l":"Geothermobacter ehrlichii","na":2,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["seamount-envo-00000264.html","seamount"]],"b":[["TED%3AAF-A0A5D3WPY1-F1-model_v4_TED02","TED novel fold AF-A0A5D3WPY1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2162","l":"Methanobacterium formicicum","na":1,"nb":2,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Pfam%3APF04432","Coenzyme F420 hydrogenase/dehydrogenase, beta subunit C terminus"],["Pfam%3APF04422","Coenzyme F420 hydrogenase/dehydrogenase, beta subunit N-term"]]},{"id":"NCBITaxon:2183985","l":"Halomonas sp. A11-A","na":2,"nb":1,"a":[["ocean-trench-envo-00000275.html","ocean trench"],["trough-envo-00000499.html","trough"]],"b":[["TED%3AAF-A0A317P655-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A317P655-F1-model_v4_TED02"]]},{"id":"NCBITaxon:2208","l":"Methanosarcina barkeri","na":2,"nb":1,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["sludge-envo-00002044.html","sludge"]],"b":[["Pfam%3APF09505","Dimethylamine methyltransferase (Dimeth_PyL)"]]},{"id":"NCBITaxon:2223","l":"Methanothrix soehngenii","na":1,"nb":2,"a":[["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"],["TED%3AAF-A0A7K4AJW5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K4AJW5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:226506","l":"Algoriphagus ornithinivorans","na":2,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"],["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["TED%3AAF-A0A1I5CGG6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5CGG6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2292705","l":"Paenibacillus paeoniae","na":2,"nb":1,"a":[["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["TED%3AAF-A0A371PIW4-F1-model_v4_TED01","TED novel fold AF-A0A371PIW4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:238540","l":"Algoriphagus antarcticus","na":2,"nb":1,"a":[["hill-envo-00000083.html","hill"],["seamount-envo-00000264.html","seamount"]],"b":[["TED%3AAF-A0A3E0D6W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3E0D6W3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:244366","l":"Klebsiella variicola","na":2,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["TED%3AAF-A0A2N4Z4E2-F1-model_v4_TED01","TED novel fold AF-A0A2N4Z4E2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:245188","l":"Yoonia vestfoldensis","na":2,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["sandstone-envo-00002055.html","sandstone"]],"b":[["TED%3AAF-A0A1Y0EB74-F1-model_v4_TED01","TED novel fold AF-A0A1Y0EB74-F1-model_v4_TED01"]]},{"id":"NCBITaxon:246200","l":"Ruegeria pomeroyi DSS-3","na":1,"nb":2,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["Pfam%3APF16867","Dimethlysulfonioproprionate lyase"],["Pfam%3APF09347","Domain of unknown function (DUF1989)"]]},{"id":"NCBITaxon:2485163","l":"Methylocaldum gracile subsp. desertum","na":1,"nb":2,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["TED%3AAF-A0A4R7A0H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R7A0H4-F1-model_v4_TED01"],["TED%3AAF-A0A4R7AGM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R7AGM3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2547395","l":"Paenibacillus piri","na":1,"nb":2,"a":[["transportation-ways-roads-habitatmech-bacdive-1b4071cb1d.html","Transportation-ways-Roads"]],"b":[["TED%3AAF-A0A4V2ZS36-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A4V2ZS36-F1-model_v4_TED03"],["TED%3AAF-A0A4R5KXP2-F1-model_v4_TED02","TED novel fold AF-A0A4R5KXP2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:262543","l":"Exiguobacterium artemiae 255-15","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["Pfam%3APF06335","Domain of unknown function (DUF1054)"],["Pfam%3APF11023","Zinc-ribbon containing domain"]]},{"id":"NCBITaxon:269482","l":"Burkholderia vietnamiensis G4","na":2,"nb":1,"a":[["air-envo-00002005.html","air"],["human-construction-envo-00000070.html","human construction"]],"b":[["TED%3AAF-A4JWD8-F1-model_v4_TED01","TED novel fold AF-A4JWD8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:279714","l":"Pseudogulbenkiania ferrooxidans 2002","na":2,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["pond-water-envo-00002228.html","pond water"]],"b":[["TED%3AAF-B9Z3M4-F1-model_v4_TED02","TED novel fold AF-B9Z3M4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:28087","l":"Legionella sainthelensi","na":1,"nb":2,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["TED%3AAF-A0A3S4I5M7-F1-model_v4_TED01","TED novel fold AF-A0A3S4I5M7-F1-model_v4_TED01"],["TED%3AAF-A0A447STS7-F1-model_v4_TED04","TED novel fold AF-A0A447STS7-F1-model_v4_TED04"]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["Pfam%3APF21252","Glycosyl hydrolase 109, C-terminal domain"],["TED%3AAF-A0A3P1YJQ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3P1YJQ6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28128","l":"Prevotella corporis","na":2,"nb":1,"a":[["environmental-feature-envo-00002297.html","environmental feature"],["harbour-envo-00000463.html","harbour"]],"b":[["TED%3AAF-A0A133Q582-F1-model_v4_TED02","TED novel fold AF-A0A133Q582-F1-model_v4_TED02"]]},{"id":"NCBITaxon:28183","l":"Leptospira santarosai","na":2,"nb":1,"a":[["kidney-bto-0000671.html","kidney"],["liver-bto-0000759.html","liver"]],"b":[["TED%3AAF-A0A2P1QYQ7-F1-model_v4_TED01","TED novel fold AF-A0A2P1QYQ7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:282199","l":"Nereida ignava","na":2,"nb":1,"a":[["sandstone-envo-00002055.html","sandstone"],["bile-bto-0000121.html","bile"]],"b":[["TED%3AAF-A0A0U1NPS2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0U1NPS2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:29017","l":"Cyriopagopus schmidti","na":2,"nb":1,"a":[["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["PROSITE%3APS60021","Huwentoxin-1 family signature"]]},{"id":"NCBITaxon:290339","l":"Cronobacter sakazakii ATCC BAA-894","na":1,"nb":2,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Pfam%3APF06610","L-alanine exporter"],["Pfam%3APF10796","Sigma-S stabilisation anti-adaptor protein"]]},{"id":"NCBITaxon:292415","l":"Thiobacillus denitrificans ATCC 25259","na":2,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["river-bed-envo-00000384.html","river bed"]],"b":[["Pfam%3APF06804","Outer membrane protein assembly factor BamC-like C-terminal domain"]]},{"id":"NCBITaxon:292459","l":"Symbiobacterium thermophilum IAM 14863","na":1,"nb":2,"a":[["compost-envo-00002170.html","compost"]],"b":[["PROSITE%3APS00853","Beta-eliminating lyases pyridoxal-phosphate attachment site"],["TED%3AAF-Q67TA8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q67TA8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:29320","l":"Paenarthrobacter nicotinovorans","na":1,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["Pfam%3APF22607","FAD binding domain-like"],["Pfam%3APF06500","Esterase FrsA-like"]]},{"id":"NCBITaxon:29488","l":"Photorhabdus luminescens","na":1,"nb":2,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["Pfam%3APF02273","Acyl transferase"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"]]},{"id":"NCBITaxon:29491","l":"Aeromonas salmonicida subsp. salmonicida","na":1,"nb":2,"a":[["liver-bto-0000759.html","liver"]],"b":[["TED%3AAF-A0A189PGR3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A189PGR3-F1-model_v4_TED01"],["TED%3AAF-A0A0F6QDS7-F1-model_v4_TED02","TED novel fold AF-A0A0F6QDS7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:29522","l":"Brachyspira aalborgi","na":1,"nb":2,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["TED%3AAF-A0A5C8E3N2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C8E3N2-F1-model_v4_TED01"],["TED%3AAF-A0A5C8E9C6-F1-model_v4_TED01","TED novel fold AF-A0A5C8E9C6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:29559","l":"Metamycoplasma hyosynoviae","na":1,"nb":2,"a":[["joint-bto-0001686.html","joint"]],"b":[["TED%3AAF-A0A063YD07-F1-model_v4_TED02","TED novel fold AF-A0A063YD07-F1-model_v4_TED02"],["TED%3AAF-A0A4R7TZF5-F1-model_v4_TED02","TED novel fold AF-A0A4R7TZF5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:298386","l":"Photobacterium profundum SS9","na":2,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["underground-water-envo-00005792.html","underground water"]],"b":[["Pfam%3APF12558","ATP-binding cassette cobalt transporter"]]},{"id":"NCBITaxon:304371","l":"Methanocella paludicola SANAE","na":2,"nb":1,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["TED%3AAF-D1Z063-F1-model_v4_TED03","TED highly-symmetric fold AF-D1Z063-F1-model_v4_TED03"]]},{"id":"NCBITaxon:309807","l":"Salinibacter ruber DSM 13855","na":2,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["underground-water-envo-00005792.html","underground water"]],"b":[["Pfam%3APF06491","Disulphide isomerase"]]},{"id":"NCBITaxon:313594","l":"Polaribacter irgensii 23-P","na":2,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["TED%3AAF-A4BXQ4-F1-model_v4_TED01","TED novel fold AF-A4BXQ4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:314237","l":"Paramesorhizobium leguminum","na":2,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"],["root-nodule-envo-01000164.html","root nodule"]],"b":[["TED%3AAF-A0A318T1W1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A318T1W1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:316058","l":"Rhodopseudomonas palustris HaA2","na":2,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["TED%3AAF-Q2IYC7-F1-model_v4_TED03","TED novel fold AF-Q2IYC7-F1-model_v4_TED03"]]},{"id":"NCBITaxon:316274","l":"Herpetosiphon aurantiacus DSM 785","na":2,"nb":1,"a":[["filament-bto-0000463.html","filament"],["joint-bto-0001686.html","joint"]],"b":[["TED%3AAF-A9AZN6-F1-model_v4_TED02","TED highly-symmetric fold AF-A9AZN6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:320771","l":"Pedosphaera parvula Ellin514","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["TED%3AAF-B9XAB4-F1-model_v4_TED02","TED highly-symmetric fold AF-B9XAB4-F1-model_v4_TED02"],["TED%3AAF-B9XFV1-F1-model_v4_TED01","TED highly-symmetric fold AF-B9XFV1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:3218","l":"Physcomitrium patens","na":2,"nb":1,"a":[["area-of-tundra-envo-00000112.html","area of tundra"],["slope-envo-00002000.html","slope"]],"b":[["TED%3AAF-A0A2K1IJQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2K1IJQ3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:322710","l":"Azotobacter vinelandii DJ","na":1,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["proteintraitsmech%3AELIFE109154_Orn_monoox","Metallophore-associated ornithine N5-monooxygenase family"],["proteintraitsmech%3AELIFE109154_PvdP","Pyoverdine chromophore maturation tyrosinase family"]]},{"id":"NCBITaxon:323426","l":"Jezberella montanilacus","na":1,"nb":2,"a":[["pond-envo-00000033.html","pond"]],"b":[["TED%3AAF-A0A2T0XBZ0-F1-model_v4_TED02","TED novel fold AF-A0A2T0XBZ0-F1-model_v4_TED02"],["TED%3AAF-A0A2T0XCA1-F1-model_v4_TED02","TED novel fold AF-A0A2T0XCA1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:33035","l":"Blautia producta","na":1,"nb":2,"a":[["juvenile-bto-0002168.html","juvenile"]],"b":[["TED%3AAF-A0A2S4GEH6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S4GEH6-F1-model_v4_TED01"],["TED%3AAF-A0A7G5MNY0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G5MNY0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:331272","l":"Burkholderia cenocepacia HI2424","na":2,"nb":1,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["Pfam%3APF02673","Bacitracin resistance protein BacA"]]},{"id":"NCBITaxon:332175","l":"Desulfosalsimonas propionicica","na":2,"nb":1,"a":[["inlet-envo-00000475.html","inlet"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["TED%3AAF-A0A7W0HJC5-F1-model_v4_TED03","TED novel fold AF-A0A7W0HJC5-F1-model_v4_TED03"]]},{"id":"NCBITaxon:33889","l":"Brevibacterium casei","na":2,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"]],"b":[["TED%3AAF-A0A7T2TGM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T2TGM6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:33922","l":"Mycoplasmopsis agassizii","na":1,"nb":2,"a":[["valley-envo-00000100.html","valley"]],"b":[["TED%3AAF-A0A1W1X4W5-F1-model_v4_TED01","TED novel fold AF-A0A1W1X4W5-F1-model_v4_TED01"],["TED%3AAF-A0A1W1XA50-F1-model_v4_TED02","TED novel fold AF-A0A1W1XA50-F1-model_v4_TED02"]]},{"id":"NCBITaxon:33950","l":"Thermoanaerobacterium thermosulfurigenes","na":1,"nb":2,"a":[["park-envo-00000562.html","park"]],"b":[["Pfam%3APF18565","Glycoside hydrolase family 2 C-terminal domain 5"],["Pfam%3APF00395","S-layer homology domain"]]},{"id":"NCBITaxon:342616","l":"Streptococcus agalactiae COH1","na":1,"nb":2,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["Pfam%3APF26337","Glucosyltransferase 3-like, C-terminal domain"],["Pfam%3APF26334","Glucosyltransferase 3-like, N-terminal domain"]]},{"id":"NCBITaxon:345341","l":"Kutzneria sp. 744","na":2,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"],["clay-envo-00002982.html","clay"]],"b":[["TED%3AAF-W7SU68-F1-model_v4_TED01","TED novel fold AF-W7SU68-F1-model_v4_TED01"]]},{"id":"NCBITaxon:349521","l":"Hahella chejuensis KCTC 2396","na":1,"nb":2,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["TED%3AAF-Q2SFS2-F1-model_v4_TED01","TED novel fold AF-Q2SFS2-F1-model_v4_TED01"],["TED%3AAF-Q2SI43-F1-model_v4_TED03","TED novel fold AF-Q2SI43-F1-model_v4_TED03"]]},{"id":"NCBITaxon:350688","l":"Alkaliphilus oremlandii OhILAs","na":2,"nb":1,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["Pfam%3APF18955","Domain of unknown function (DUF5698)"]]},{"id":"NCBITaxon:35703","l":"Citrobacter amalonaticus","na":2,"nb":1,"a":[["dental-plaque-bto-0000338.html","dental plaque"],["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["TED%3AAF-A0A376C300-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A376C300-F1-model_v4_TED02"]]},{"id":"NCBITaxon:363265","l":"Leyella stercorea","na":1,"nb":2,"a":[["pig-manure-envo-00003860.html","pig manure"]],"b":[["TED%3AAF-A0A415GCN6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A415GCN6-F1-model_v4_TED04"],["TED%3AAF-A0A3R6FHW9-F1-model_v4_TED01","TED novel fold AF-A0A3R6FHW9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:368407","l":"Methanoculleus marisnigri JR1","na":1,"nb":2,"a":[["joint-bto-0001686.html","joint"]],"b":[["Pfam%3APF27030","AbpE bacteria"],["Pfam%3APF04019","Protein of unknown function (DUF359)"]]},{"id":"NCBITaxon:37329","l":"Nocardia farcinica","na":2,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["TED%3AAF-A0A449G5H5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A449G5H5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:375286","l":"Janthinobacterium sp. Marseille","na":1,"nb":2,"a":[["large-river-biome-envo-00000887.html","large river biome"]],"b":[["Pfam%3APF06299","Protein of unknown function (DUF1045)"],["Pfam%3APF04361","Protein of unknown function (DUF494)"]]},{"id":"NCBITaxon:382514","l":"Telmatospirillum siberiense","na":2,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["peatland-envo-00000044.html","peatland"]],"b":[["TED%3AAF-A0A2N3PPB2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3PPB2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:38313","l":"Shewanella algae","na":1,"nb":2,"a":[["foot-bto-0000476.html","foot"]],"b":[["TED%3AAF-A0A1S2T8W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S2T8W3-F1-model_v4_TED01"],["TED%3AAF-A0A8A5EFG1-F1-model_v4_TED02","TED novel fold AF-A0A8A5EFG1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:389348","l":"Candidatus Protochlamydia naegleriophila","na":2,"nb":1,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["TED%3AAF-A0A0U5J6J4-F1-model_v4_TED01","TED novel fold AF-A0A0U5J6J4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:391037","l":"Salinispora arenicola CNS-205","na":2,"nb":1,"a":[["beach-sand-envo-00002138.html","beach sand"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["Pfam%3APF12072","RNase Y N-terminal region"]]},{"id":"NCBITaxon:39152","l":"Methanococcus maripaludis","na":1,"nb":2,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["Pfam%3APF02571","Precorrin-6x reductase CbiJ/CobK"],["TED%3AAF-A0A7J9PSA9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J9PSA9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:39441","l":"Methanobrevibacter arboriphilus","na":2,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["sludge-envo-00002044.html","sludge"]],"b":[["TED%3AAF-A0A843AID3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843AID3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:395494","l":"Gallionella capsiferriformans ES-2","na":1,"nb":2,"a":[["river-bed-envo-00000384.html","river bed"]],"b":[["TED%3AAF-D9SCL7-F1-model_v4_TED01","TED highly-symmetric fold AF-D9SCL7-F1-model_v4_TED01"],["TED%3AAF-D9SFM7-F1-model_v4_TED01","TED highly-symmetric fold AF-D9SFM7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:395961","l":"Cyanothece sp. PCC 7425","na":2,"nb":1,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["TED%3AAF-B8HKH7-F1-model_v4_TED01","TED highly-symmetric fold AF-B8HKH7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:39691","l":"Mycolicibacterium moriokaense","na":1,"nb":2,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["TED%3AAF-A0A370D086-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A370D086-F1-model_v4_TED01"],["TED%3AAF-A0A370D4B9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A370D4B9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:404881","l":"Albidovulum denitrificans","na":2,"nb":1,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["TED%3AAF-A0A2S8SDZ8-F1-model_v4_TED03","TED novel fold AF-A0A2S8SDZ8-F1-model_v4_TED03"]]},{"id":"NCBITaxon:404941","l":"Mycobacteroides salmoniphilum","na":1,"nb":2,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["TED%3AAF-A0A4R8SEB1-F1-model_v4_TED02","TED novel fold AF-A0A4R8SEB1-F1-model_v4_TED02"],["TED%3AAF-A0A4R8SGK3-F1-model_v4_TED01","TED novel fold AF-A0A4R8SGK3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:411461","l":"Dorea formicigenerans ATCC 27755","na":2,"nb":1,"a":[["emulsion-envo-00010506.html","emulsion"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["TED%3AAF-B0G854-F1-model_v4_TED01","TED novel fold AF-B0G854-F1-model_v4_TED01"]]},{"id":"NCBITaxon:411463","l":"Eubacterium ventriosum ATCC 27560","na":2,"nb":1,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["TED%3AAF-A5Z937-F1-model_v4_TED01","TED highly-symmetric fold AF-A5Z937-F1-model_v4_TED01"]]},{"id":"NCBITaxon:41211","l":"Desulfotomaculum sp.","na":2,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["TED%3AAF-A0A356UJQ3-F1-model_v4_TED01","TED novel fold AF-A0A356UJQ3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:41880","l":"Pycnococcus provasolii","na":1,"nb":2,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["TED%3AAF-A0A830HBX6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A830HBX6-F1-model_v4_TED02"],["TED%3AAF-A0A830HI63-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A830HI63-F1-model_v4_TED01"]]},{"id":"NCBITaxon:420247","l":"Methanobrevibacter smithii ATCC 35061","na":1,"nb":2,"a":[["gut-mucosa-bto-0000546.html","gut mucosa"]],"b":[["Pfam%3APF17884","Domain of unknown function (DUF5591)"],["Pfam%3APF18195","GatD N-terminal domain"]]},{"id":"NCBITaxon:420952","l":"Paraburkholderia bryophila","na":2,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["TED%3AAF-A0A7Y9WQV4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y9WQV4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:42256","l":"Rubrobacter radiotolerans","na":2,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["desert-sand-envo-00005800.html","desert sand"]],"b":[["TED%3AAF-A0A023X7L7-F1-model_v4_TED02","TED novel fold AF-A0A023X7L7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:42322","l":"Eubacterium ruminantium","na":1,"nb":2,"a":[["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["TED%3AAF-A0A1H6A208-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H6A208-F1-model_v4_TED01"],["TED%3AAF-A0A1T4Q7U0-F1-model_v4_TED01","TED novel fold AF-A0A1T4Q7U0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:425104","l":"Shewanella sediminis HAW-EB3","na":1,"nb":2,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["Pfam%3APF13286","Phosphohydrolase-associated domain"],["TED%3AAF-A8FZD8-F1-model_v4_TED01","TED novel fold AF-A8FZD8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:43671","l":"Actinotalea fermentans","na":2,"nb":1,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["TED%3AAF-A0A511YTN2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A511YTN2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:441772","l":"Clostridium botulinum F str. Langeland","na":1,"nb":2,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["Pfam%3APF02001","Protein of unknown function DUF134"],["Pfam%3APF06874","Firmicute fructose-1,6-bisphosphatase"]]},{"id":"NCBITaxon:443152","l":"Marinobacter algicola DG893","na":2,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["TED%3AAF-A6EY08-F1-model_v4_TED01","TED highly-symmetric fold AF-A6EY08-F1-model_v4_TED01"]]},{"id":"NCBITaxon:444157","l":"Pyrobaculum neutrophilum V24Sta","na":2,"nb":1,"a":[["silty-sediment-envo-01000119.html","silty sediment"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF01950","Fructose-1,6-bisphosphatase"]]},{"id":"NCBITaxon:44737","l":"Capnocytophaga sp.","na":1,"nb":2,"a":[["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["TED%3AAF-A0A496MK20-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A496MK20-F1-model_v4_TED01"],["TED%3AAF-A0A496MK73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A496MK73-F1-model_v4_TED01"]]},{"id":"NCBITaxon:452637","l":"Opitutus terrae PB90-1","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["TED%3AAF-B1ZX41-F1-model_v4_TED02","TED novel fold AF-B1ZX41-F1-model_v4_TED02"],["TED%3AAF-B1ZYN8-F1-model_v4_TED02","TED novel fold AF-B1ZYN8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:455632","l":"Streptomyces griseus subsp. griseus NBRC 13350","na":1,"nb":2,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["PROSITE%3APS01311","Prolipoprotein diacylglyceryl transferase signature"]]},{"id":"NCBITaxon:472","l":"Acinetobacter sp.","na":1,"nb":2,"a":[["carcass-envo-00002033.html","carcass"]],"b":[["TED%3AAF-A0A433CUV6-F1-model_v4_TED01","TED novel fold AF-A0A433CUV6-F1-model_v4_TED01"],["TED%3AAF-A0A7G3BTL8-F1-model_v4_TED01","TED novel fold AF-A0A7G3BTL8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:472759","l":"Nitrosococcus halophilus Nc 4","na":2,"nb":1,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["TED%3AAF-D5BWL1-F1-model_v4_TED01","TED highly-symmetric fold AF-D5BWL1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:474950","l":"Granulicella pectinivorans","na":2,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A1I6LYB5-F1-model_v4_TED03","TED novel fold AF-A0A1I6LYB5-F1-model_v4_TED03"]]},{"id":"NCBITaxon:476","l":"Moraxella bovis","na":1,"nb":2,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"]],"b":[["Pfam%3APF04556","DpnII restriction endonuclease"],["TED%3AAF-A0A1S9ZVN5-F1-model_v4_TED01","TED novel fold AF-A0A1S9ZVN5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":2,"nb":1,"a":[["city-envo-00000856.html","city"],["cropland-biome-envo-01000245.html","cropland biome"]],"b":[["TED%3AAF-A0A4R6CRR7-F1-model_v4_TED01","TED novel fold AF-A0A4R6CRR7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:479435","l":"Kribbella flavida DSM 17836","na":2,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["Pfam%3APF21568","1,3-alpha-isomaltosidase-like, N-terminal domain"]]},{"id":"NCBITaxon:482957","l":"Burkholderia lata","na":2,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["TED%3AAF-A0A6P2XDC0-F1-model_v4_TED01","TED novel fold AF-A0A6P2XDC0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:484019","l":"Thermosipho africanus TCF52B","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["TED%3AAF-B7IGW9-F1-model_v4_TED05","TED highly-symmetric fold AF-B7IGW9-F1-model_v4_TED05"],["TED%3AAF-B7IEF5-F1-model_v4_TED01","TED novel fold AF-B7IEF5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:487","l":"Neisseria meningitidis","na":2,"nb":1,"a":[["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["Pfam%3APF22582","Amylosucrase, C-terminal domain"]]},{"id":"NCBITaxon:487796","l":"Flavobacteria bacterium MS024-2A","na":2,"nb":1,"a":[["marine-neritic-zone-envo-00000206.html","marine neritic zone"],["coastal-plain-envo-00000090.html","coastal plain"]],"b":[["TED%3AAF-C0BK38-F1-model_v4_TED02","TED novel fold AF-C0BK38-F1-model_v4_TED02"]]},{"id":"NCBITaxon:49252","l":"Eucampia antarctica","na":1,"nb":2,"a":[["saline-water-envo-00002010.html","saline water"]],"b":[["TED%3AAF-A0A7S2RNI9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S2RNI9-F1-model_v4_TED02"],["TED%3AAF-A0A7S2SD61-F1-model_v4_TED01","TED novel fold AF-A0A7S2SD61-F1-model_v4_TED01"]]},{"id":"NCBITaxon:498214","l":"Clostridium botulinum A3 str. Loch Maree","na":1,"nb":2,"a":[["plateau-envo-00000182.html","plateau"]],"b":[["Pfam%3APF20921","Domain of unknown function DUF1846, C-terminal"],["Pfam%3APF08903","Domain of unknown function DUF1846, N-terminal"]]},{"id":"NCBITaxon:504472","l":"Spirosoma linguale DSM 74","na":2,"nb":1,"a":[["drinking-water-envo-00003064.html","drinking water"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["TED%3AAF-D2QHB9-F1-model_v4_TED01","TED highly-symmetric fold AF-D2QHB9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:507522","l":"Klebsiella variicola 342","na":1,"nb":2,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Pfam%3APF18649","EcpB C-terminal domain"],["Pfam%3APF04205","FMN-binding domain"]]},{"id":"NCBITaxon:508451","l":"Lactobacillus taiwanensis","na":1,"nb":2,"a":[["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["TED%3AAF-A0A256LG95-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A256LG95-F1-model_v4_TED04"],["TED%3AAF-A0A8A8VQ16-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8A8VQ16-F1-model_v4_TED01"]]},{"id":"NCBITaxon:515393","l":"Pseudomonas yamanorum","na":1,"nb":2,"a":[["subarctic-habitatmech-bacdive-09ded89de7.html","Subarctic"]],"b":[["TED%3AAF-A0A143GFF9-F1-model_v4_TED03","TED novel fold AF-A0A143GFF9-F1-model_v4_TED03"],["TED%3AAF-A0A1H2I658-F1-model_v4_TED02","TED novel fold AF-A0A1H2I658-F1-model_v4_TED02"]]},{"id":"NCBITaxon:517417","l":"Chlorobaculum parvum NCIB 8327","na":1,"nb":2,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["Pfam%3APF28537","Probable trigger factor, FKBP-like domain"],["Pfam%3APF10643","Photosystem P840 reaction-centre cytochrome c-551"]]},{"id":"NCBITaxon:519","l":"Bordetella parapertussis","na":2,"nb":1,"a":[["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["Pfam%3APF13542","Helix-turn-helix domain of transposase family ISL3"]]},{"id":"NCBITaxon:521674","l":"Planctopirus limnophila DSM 3776","na":2,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-D5SQH0-F1-model_v4_TED01","TED novel fold AF-D5SQH0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:52560","l":"Desulfomicrobium apsheronum","na":2,"nb":1,"a":[["black-smoker-envo-00000218.html","black smoker"],["volcanic-rock-envo-00002015.html","volcanic rock"]],"b":[["TED%3AAF-A0A1I3Z6Q6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1I3Z6Q6-F1-model_v4_TED04"]]},{"id":"NCBITaxon:53463","l":"Paracoccus solventivorans","na":2,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["plain-envo-00000086.html","plain"]],"b":[["TED%3AAF-A0A1M7DMW2-F1-model_v4_TED03","TED novel fold AF-A0A1M7DMW2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:536044","l":"Methanolobus zinderi","na":1,"nb":2,"a":[["coalbed-water-habitatmech-bacdive-499e641dc2.html","Coalbed-water"]],"b":[["TED%3AAF-A0A7D5IAI6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7D5IAI6-F1-model_v4_TED01"],["TED%3AAF-A0A7D5E6R2-F1-model_v4_TED02","TED novel fold AF-A0A7D5E6R2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:555970","l":"Bifidobacterium animalis subsp. lactis DSM 10140","na":1,"nb":2,"a":[["intestinal-epithelium-bto-0000781.html","intestinal epithelium"]],"b":[["PROSITE%3APS60002","Phosphoketolase signature 1"],["PROSITE%3APS60003","Phosphoketolase signature 2"]]},{"id":"NCBITaxon:579137","l":"Methanocaldococcus vulcanius M7","na":2,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["TED%3AAF-C9RDN7-F1-model_v4_TED02","TED highly-symmetric fold AF-C9RDN7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:5823","l":"Plasmodium berghei (strain Anka)","na":1,"nb":2,"a":[["ookinete-bto-0004857.html","ookinete"]],"b":[["Pfam%3APF03092","BT1 family"],["Pfam%3APF12628","Falstatin, cysteine peptidase inhibitor"]]},{"id":"NCBITaxon:5851","l":"Plasmodium knowlesi strain H","na":2,"nb":1,"a":[["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["hypnozoite-bto-0003594.html","hypnozoite"]],"b":[["TED%3AAF-A0A6H5FUY2-F1-model_v4_TED01","TED novel fold AF-A0A6H5FUY2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:588581","l":"Ruminiclostridium papyrosolvens DSM 2782","na":2,"nb":1,"a":[["estuary-envo-00000045.html","estuary"],["sporangium-bto-0001287.html","sporangium"]],"b":[["TED%3AAF-F1TA67-F1-model_v4_TED05","TED highly-symmetric fold AF-F1TA67-F1-model_v4_TED05"]]},{"id":"NCBITaxon:59406","l":"Aromatoleum evansii","na":1,"nb":2,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF14535","AMP-binding enzyme C-terminal domain"],["Pfam%3APF12837","4Fe-4S binding domain"]]},{"id":"NCBITaxon:595453","l":"Rhodopirellula sp. SM50","na":2,"nb":1,"a":[["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"]],"b":[["TED%3AAF-A0A2A2WGR6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A2WGR6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:60480","l":"Shewanella sp. MR-4","na":1,"nb":2,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["Pfam%3APF06276","Ferric iron reductase FhuF-like transporter"],["Pfam%3APF04183","IucA / IucC family"]]},{"id":"NCBITaxon:608538","l":"Hydrogenobacter thermophilus TK-6","na":2,"nb":1,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"],["peninsula-envo-00000305.html","peninsula"]],"b":[["Pfam%3APF17805","AsnC-like ligand binding domain"]]},{"id":"NCBITaxon:6087","l":"Hydra vulgaris","na":1,"nb":2,"a":[["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["Pfam%3APF06369","Sea anemone cytotoxic protein"],["TED%3AAF-B8Y8I7-F1-model_v4_TED01","TED highly-symmetric fold AF-B8Y8I7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:616997","l":"Hoyosella altamirensis","na":2,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["cave-envo-00000067.html","cave"]],"b":[["TED%3AAF-A0A839RM00-F1-model_v4_TED02","TED novel fold AF-A0A839RM00-F1-model_v4_TED02"]]},{"id":"NCBITaxon:623280","l":"Parapedobacter luteus","na":2,"nb":1,"a":[["sewage-envo-00002018.html","sewage"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["TED%3AAF-A0A1T5FI29-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1T5FI29-F1-model_v4_TED01"]]},{"id":"NCBITaxon:642492","l":"Cellulosilyticum lentocellum DSM 5427","na":1,"nb":2,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["TED%3AAF-F2JHU0-F1-model_v4_TED01","TED highly-symmetric fold AF-F2JHU0-F1-model_v4_TED01"],["TED%3AAF-F2JQ83-F1-model_v4_TED01","TED highly-symmetric fold AF-F2JQ83-F1-model_v4_TED01"]]},{"id":"NCBITaxon:644107","l":"Ruegeria lacuscaerulensis ITI-1157","na":1,"nb":2,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["Pfam%3APF16867","Dimethlysulfonioproprionate lyase"],["TED%3AAF-D0CYX0-F1-model_v4_TED01","TED novel fold AF-D0CYX0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:649349","l":"Leadbetterella byssophila DSM 17132","na":2,"nb":1,"a":[["compost-envo-00002170.html","compost"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["TED%3AAF-E4RVH3-F1-model_v4_TED02","TED novel fold AF-E4RVH3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:679926","l":"Methanolacinia petrolearia DSM 11571","na":2,"nb":1,"a":[["inlet-envo-00000475.html","inlet"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["TED%3AAF-E1RJC3-F1-model_v4_TED02","TED novel fold AF-E1RJC3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:68170","l":"Lentzea aerocolonigenes","na":1,"nb":2,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["Pfam%3APF12902","Ferritin-like"],["TED%3AAF-A0A0F0GZM7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0F0GZM7-F1-model_v4_TED03"]]},{"id":"NCBITaxon:688246","l":"Hallella multisaccharivorax DSM 17128","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["TED%3AAF-F8N9C0-F1-model_v4_TED03","TED novel fold AF-F8N9C0-F1-model_v4_TED03"],["TED%3AAF-F8N9F2-F1-model_v4_TED01","TED novel fold AF-F8N9F2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:68892","l":"Streptococcus infantis","na":2,"nb":1,"a":[["head-bto-0000282.html","head"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["TED%3AAF-A0A0F2E1C7-F1-model_v4_TED04","TED novel fold AF-A0A0F2E1C7-F1-model_v4_TED04"]]},{"id":"NCBITaxon:693216","l":"Cronobacter turicensis z3032","na":2,"nb":1,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["TED%3AAF-C9Y1S3-F1-model_v4_TED01","TED novel fold AF-C9Y1S3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:69969","l":"Macrococcus carouselicus","na":2,"nb":1,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["TED%3AAF-A0A4R6BCC8-F1-model_v4_TED01","TED novel fold AF-A0A4R6BCC8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:7230","l":"Drosophila mojavensis","na":1,"nb":2,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"]],"b":[["Pfam%3APF10562","Calmodulin-binding domain C0 of NMDA receptor NR1 subunit"],["Pfam%3APF13428","Tetratricopeptide repeat"]]},{"id":"NCBITaxon:7425","l":"Nasonia vitripennis","na":2,"nb":1,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"],["marine-coral-reef-biome-envo-01000049.html","marine coral reef biome"]],"b":[["TED%3AAF-A0A7M7QB08-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7M7QB08-F1-model_v4_TED04"]]},{"id":"NCBITaxon:756067","l":"Microcoleus vaginatus FGP-2","na":2,"nb":1,"a":[["desert-area-envo-00000097.html","desert area"],["seamount-envo-00000264.html","seamount"]],"b":[["TED%3AAF-F5UCE7-F1-model_v4_TED03","TED highly-symmetric fold AF-F5UCE7-F1-model_v4_TED03"]]},{"id":"NCBITaxon:756272","l":"Rubinisphaera brasiliensis DSM 5305","na":2,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["TED%3AAF-F0SH04-F1-model_v4_TED04","TED novel fold AF-F0SH04-F1-model_v4_TED04"]]},{"id":"NCBITaxon:7654","l":"Lytechinus variegatus","na":2,"nb":1,"a":[["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["Pfam%3APF02084","Bindin"]]},{"id":"NCBITaxon:78229","l":"Paracidovorax anthurii","na":1,"nb":2,"a":[["leaf-po-0025034.html","leaf"]],"b":[["TED%3AAF-A0A328ZC73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A328ZC73-F1-model_v4_TED01"],["TED%3AAF-A0A328Z0A2-F1-model_v4_TED01","TED novel fold AF-A0A328Z0A2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:794903","l":"Opitutaceae bacterium TAV5","na":2,"nb":1,"a":[["hindgut-bto-0000510.html","hindgut"],["wood-bto-0005516.html","wood"]],"b":[["TED%3AAF-W0J1Y7-F1-model_v4_TED01","TED highly-symmetric fold AF-W0J1Y7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:82367","l":"Paracoccus pantotrophus","na":2,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["Pfam%3APF17805","AsnC-like ligand binding domain"]]},{"id":"NCBITaxon:83554","l":"Chlamydia psittaci","na":2,"nb":1,"a":[["spleen-bto-0001281.html","spleen"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["Pfam%3APF01345","CLIPPER domain"]]},{"id":"NCBITaxon:83555","l":"Chlamydia abortus","na":2,"nb":1,"a":[["elementary-body-bto-0000377.html","elementary body"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["TED%3AAF-A0A5C1D8N1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C1D8N1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:865938","l":"Weeksella virosa DSM 16922","na":2,"nb":1,"a":[["urethra-bto-0001426.html","urethra"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["TED%3AAF-F0P1F3-F1-model_v4_TED01","TED novel fold AF-F0P1F3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:912594","l":"Mycolicibacterium iranicum","na":1,"nb":2,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["TED%3AAF-A0A178LVR2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A178LVR2-F1-model_v4_TED02"],["TED%3AAF-A0A178M0U6-F1-model_v4_TED01","TED novel fold AF-A0A178M0U6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:9258","l":"Ornithorhynchus anatinus","na":1,"nb":2,"a":[["marine-benthic-biome-envo-01000024.html","marine benthic biome"]],"b":[["Pfam%3APF08131","Defensin-like peptide family"],["Pfam%3APF17858","Platypus intermediate defensin-like peptide"]]},{"id":"NCBITaxon:933063","l":"Dichotomicrobium thermohalophilum","na":1,"nb":2,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["TED%3AAF-A0A397Q5H3-F1-model_v4_TED01","TED novel fold AF-A0A397Q5H3-F1-model_v4_TED01"],["TED%3AAF-A0A397Q636-F1-model_v4_TED02","TED novel fold AF-A0A397Q636-F1-model_v4_TED02"]]},{"id":"NCBITaxon:99656","l":"[Clostridium] fimetarium","na":1,"nb":2,"a":[["animal-waste-material-envo-00002276.html","animal waste material"]],"b":[["TED%3AAF-A0A1I0N088-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I0N088-F1-model_v4_TED02"],["TED%3AAF-A0A1I0QS44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I0QS44-F1-model_v4_TED01"]]},{"id":"UBERON:0001003","l":"skin epidermis","na":1,"nb":2,"a":[["skin-epidermis-uberon-0001003.html","skin epidermis"]],"b":[["GO%3A0008544","epidermis development"],["GO%3A0048730","epidermis morphogenesis"]]},{"id":"UBERON:0001705","l":"nail","na":2,"nb":1,"a":[["nail-uberon-0001705.html","nail"],["nails-habitatmech-gold-1d1529ead1.html","Nails"]],"b":[["GO%3A0035878","nail development"]]},{"id":"UBERON:0002073","l":"","na":2,"nb":1,"a":[["hair-follicle-habitatmech-gold-1e3f47202c.html","Hair follicle"],["hair-follicle-habitatmech-gold-b7fcb62675.html","Hair follicle"]],"b":[["GO%3A0001942","hair follicle development"]]},{"id":"UBERON:0002097","l":"skin of body","na":1,"nb":2,"a":[["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["GO%3A0043588","skin development"],["GO%3A0043589","skin morphogenesis"]]},{"id":"NCBITaxon:1001590","l":"Leptospira interrogans str. 2006001854","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["TED%3AAF-M6GW27-F1-model_v4_TED03","TED novel fold AF-M6GW27-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1003237","l":"Nitrospirillum viridazoti Y2","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["TED%3AAF-G1Y2J3-F1-model_v4_TED02","TED novel fold AF-G1Y2J3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1017277","l":"","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["TED%3AAF-A0A0V8GEY0-F1-model_v4_TED01","TED novel fold AF-A0A0V8GEY0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1032","l":"Thiothrix sp.","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["TED%3AAF-A0A432UXQ4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A432UXQ4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1032505","l":"Fusobacterium sp. OBRC1","na":1,"nb":1,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["TED%3AAF-X8HXN3-F1-model_v4_TED01","TED highly-symmetric fold AF-X8HXN3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1035309","l":"Ceratocystis fimbriata CBS 114723","na":1,"nb":1,"a":[["plant-bto-0001481.html","plant"]],"b":[["TED%3AAF-A0A2C5WW72-F1-model_v4_TED01","TED novel fold AF-A0A2C5WW72-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1037377","l":"Chryseobacterium viscerum","na":1,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["TED%3AAF-A0A316W9L1-F1-model_v4_TED02","TED novel fold AF-A0A316W9L1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1038014","l":"Aquimarina amphilecti","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["TED%3AAF-A0A1H7GXR7-F1-model_v4_TED01","TED novel fold AF-A0A1H7GXR7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:103816","l":"Rhodococcus pyridinivorans","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A419ZLU8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A419ZLU8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:103838","l":"Nonomuraea turkmeniaca","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["TED%3AAF-A0A5S4FRG4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5S4FRG4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1038845","l":"Flavobacterium rakeshii","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["TED%3AAF-A0A6N8H854-F1-model_v4_TED02","TED novel fold AF-A0A6N8H854-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1038928","l":"Streptomyces xinghaiensis","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["TED%3AAF-A0A3R7FP99-F1-model_v4_TED01","TED novel fold AF-A0A3R7FP99-F1-model_v4_TED01"]]},{"id":"NCBITaxon:104205","l":"Streptomonospora salina","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["TED%3AAF-A0A841ECK8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841ECK8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:104660","l":"Pinctada maxima","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["Pfam%3APF03173","Putative carbohydrate binding domain"]]},{"id":"NCBITaxon:104663","l":"Chitinophaga filiformis","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["TED%3AAF-A0A1G7RSD9-F1-model_v4_TED01","TED novel fold AF-A0A1G7RSD9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1048396","l":"Halopenitus persicus","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["TED%3AAF-A0A1H3M4L7-F1-model_v4_TED01","TED novel fold AF-A0A1H3M4L7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1051531","l":"Saccharothrix tamanrassetensis","na":1,"nb":1,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["TED%3AAF-A0A841CPC6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841CPC6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1052260","l":"Klenkia soli","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["TED%3AAF-A0A1H0TFA4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H0TFA4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1052585","l":"Bacillus spizizenii TU-B-10","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["TED%3AAF-G4P1P4-F1-model_v4_TED01","TED highly-symmetric fold AF-G4P1P4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1053222","l":"Bacillus cereus MSX-D12","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["TED%3AAF-J8G3X2-F1-model_v4_TED01","TED highly-symmetric fold AF-J8G3X2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1054202","l":"Rhodobacter viridis","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["TED%3AAF-A0A318TZ12-F1-model_v4_TED01","TED novel fold AF-A0A318TZ12-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1054217","l":"Thermoplasmatales archaeon BRNA1","na":1,"nb":1,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["TED%3AAF-M4YJR5-F1-model_v4_TED01","TED highly-symmetric fold AF-M4YJR5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:106654","l":"Acinetobacter nosocomialis","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["TED%3AAF-A0A5Q0RRM8-F1-model_v4_TED01","TED novel fold AF-A0A5Q0RRM8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1071078","l":"Bacillus sp. NSP9.1","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["TED%3AAF-A0A6I7F721-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I7F721-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1078016","l":"Rhodococcus erythropolis XP","na":1,"nb":1,"a":[["resting-cell-bto-0001170.html","resting cell"]],"b":[["Pfam%3APF08028","Acyl-CoA dehydrogenase, C-terminal domain"]]},{"id":"NCBITaxon:1078050","l":"Seleniivibrio woodruffii","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["TED%3AAF-A0A4R1KEH0-F1-model_v4_TED02","TED novel fold AF-A0A4R1KEH0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1085538","l":"Leptospira interrogans serovar Bataviae str. HAI135","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["TED%3AAF-M6TC60-F1-model_v4_TED05","TED novel fold AF-M6TC60-F1-model_v4_TED05"]]},{"id":"NCBITaxon:108980","l":"Acinetobacter ursingii","na":1,"nb":1,"a":[["foot-bto-0000476.html","foot"]],"b":[["TED%3AAF-A0A3F3LBR7-F1-model_v4_TED01","TED novel fold AF-A0A3F3LBR7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1094555","l":"Bartonella elizabethae F9251 = ATCC 49927","na":1,"nb":1,"a":[["blood-bto-0000089.html","blood"]],"b":[["TED%3AAF-J1K501-F1-model_v4_TED02","TED highly-symmetric fold AF-J1K501-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1100720","l":"Limnohabitans sp. Rim28","na":1,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["TED%3AAF-A0A2T7SZL1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T7SZL1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1107882","l":"Mesorhizobium alhagi CCNWXJ12-2","na":1,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["TED%3AAF-H0I1K0-F1-model_v4_TED01","TED novel fold AF-H0I1K0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1108595","l":"Chromobacterium vaccinii","na":1,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["TED%3AAF-A0A2L2B8V3-F1-model_v4_TED02","TED novel fold AF-A0A2L2B8V3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1111454","l":"Megasphaera vaginalis (ex Srinivasan et al. 2021)","na":1,"nb":1,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["TED%3AAF-U7UHK7-F1-model_v4_TED01","TED novel fold AF-U7UHK7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1112204","l":"Gordonia polyisoprenivorans VH2","na":1,"nb":1,"a":[["latex-bto-0000710.html","latex"]],"b":[["TED%3AAF-H6N0Q7-F1-model_v4_TED01","TED novel fold AF-H6N0Q7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1116472","l":"Methyloglobulus morosus KoM1","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["TED%3AAF-V5BKR0-F1-model_v4_TED01","TED highly-symmetric fold AF-V5BKR0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1120926","l":"Acinetobacter gerneri DSM 14967 = CIP 107464 = MTCC 9824","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["TED%3AAF-N8ZKV3-F1-model_v4_TED01","TED highly-symmetric fold AF-N8ZKV3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1120996","l":"Anaerosporobacter mobilis DSM 15930","na":1,"nb":1,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["TED%3AAF-A0A1M7NGC0-F1-model_v4_TED01","TED novel fold AF-A0A1M7NGC0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121098","l":"Phocaeicola massiliensis B84634 = Timone 84634 = DSM 17679 = JCM 13223","na":1,"nb":1,"a":[["blood-bto-0000089.html","blood"]],"b":[["TED%3AAF-U6RRG8-F1-model_v4_TED01","TED highly-symmetric fold AF-U6RRG8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121326","l":"Clostridium magnum DSM 2767","na":1,"nb":1,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["TED%3AAF-A0A162T1A8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A162T1A8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121336","l":"Thermoclostridium stercorarium subsp. thermolacticum DSM 2910","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["TED%3AAF-A0A1B1YDV6-F1-model_v4_TED02","TED novel fold AF-A0A1B1YDV6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1121424","l":"Desulfotruncus arcticus DSM 17038","na":1,"nb":1,"a":[["sea-coast-envo-00000303.html","sea coast"]],"b":[["TED%3AAF-A0A1I2Z3E3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I2Z3E3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1121426","l":"Desulfoscipio geothermicus DSM 3669","na":1,"nb":1,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["TED%3AAF-A0A1I6DXW2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I6DXW2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1121898","l":"Flavobacterium subsaxonicum WB 4.1-42 = DSM 21790","na":1,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"]],"b":[["TED%3AAF-A0A0A2M8C2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A2M8C2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1122169","l":"Legionella shakespearei DSM 23087","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["TED%3AAF-A0A0W0YL59-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0W0YL59-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1122189","l":"Malonomonas rubra DSM 5091","na":1,"nb":1,"a":[["canal-envo-00000014.html","canal"]],"b":[["TED%3AAF-A0A1M6IYP5-F1-model_v4_TED01","TED novel fold AF-A0A1M6IYP5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1122247","l":"Mycolicibacterium hassiacum DSM 44199","na":1,"nb":1,"a":[["urethra-bto-0001426.html","urethra"]],"b":[["Pfam%3APF22422","Mannosylglycerate hydrolase MGH1-like glycoside hydrolase domain"]]},{"id":"NCBITaxon:1122252","l":"Marinospirillum celere","na":1,"nb":1,"a":[["island-envo-00000098.html","island"]],"b":[["TED%3AAF-A0A1I1DUZ3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1I1DUZ3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1123078","l":"Runella zeae DSM 19591","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["Pfam%3APF26164","Bacterial Gasdermin Family"]]},{"id":"NCBITaxon:1123282","l":"Sporobacter termitidis DSM 10068","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["TED%3AAF-A0A1M5VTW1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M5VTW1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1125876","l":"Halpernia frigidisoli","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["TED%3AAF-A0A1I3H4T1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I3H4T1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1129374","l":"Alishewanella jeotgali KCTC 22429","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["TED%3AAF-H3ZBB0-F1-model_v4_TED01","TED highly-symmetric fold AF-H3ZBB0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:113355","l":"Geminocystis herdmanii PCC 6308","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["Pfam%3APF18921","Cyanophycin synthase-like N-terminal domain"]]},{"id":"NCBITaxon:1134687","l":"Klebsiella michiganensis","na":1,"nb":1,"a":[["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"]],"b":[["TED%3AAF-A0A443W129-F1-model_v4_TED01","TED novel fold AF-A0A443W129-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1141221","l":"Chryseobacterium taihuense","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["TED%3AAF-A0A4U8WD57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8WD57-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1144618","l":"Allonocardiopsis opalescens","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["TED%3AAF-A0A2T0QE02-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T0QE02-F1-model_v4_TED01"]]},{"id":"NCBITaxon:114527","l":"Mogibacterium diversum","na":1,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["TED%3AAF-A0A2S0L5I6-F1-model_v4_TED02","TED novel fold AF-A0A2S0L5I6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1148157","l":"Acinetobacter oleivorans","na":1,"nb":1,"a":[["plume-bto-0002480.html","plume"]],"b":[["TED%3AAF-A0A0B2UAV2-F1-model_v4_TED02","TED novel fold AF-A0A0B2UAV2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:115778","l":"Leuconostoc gasicomitatum","na":1,"nb":1,"a":[["research-facility-envo-00000469.html","research facility"]],"b":[["TED%3AAF-A0A7H9BD19-F1-model_v4_TED01","TED novel fold AF-A0A7H9BD19-F1-model_v4_TED01"]]},{"id":"NCBITaxon:115808","l":"Bradyrhizobium sp. ORS 285","na":1,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["TED%3AAF-A0A1Y6KEH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y6KEH3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:115979","l":"Niallia nealsonii","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["TED%3AAF-A0A2N0Z186-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N0Z186-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1161919","l":"Erwinia piriflorinigrans CFBP 5888","na":1,"nb":1,"a":[["flower-bto-0000469.html","flower"]],"b":[["TED%3AAF-V5Z5E5-F1-model_v4_TED01","TED novel fold AF-V5Z5E5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1162967","l":"Diaminobutyricimonas aerilata","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["TED%3AAF-A0A2M9CH35-F1-model_v4_TED01","TED novel fold AF-A0A2M9CH35-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1163745","l":"Helicobacter cetorum MIT 99-5656","na":1,"nb":1,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["TED%3AAF-I0EUT8-F1-model_v4_TED01","TED novel fold AF-I0EUT8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1163748","l":"Marinobacter nauticus ATCC 49840","na":1,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["Pfam%3APF13205","Bacterial Ig-like domain"]]},{"id":"NCBITaxon:1164594","l":"Massilia yuzhufengensis","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["TED%3AAF-A0A1I1LD95-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I1LD95-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1173995","l":"Parvularcula dongshanensis","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["TED%3AAF-A0A840I3S3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A840I3S3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1176176","l":"Methylobacterium haplocladii","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["TED%3AAF-A0A512INB8-F1-model_v4_TED02","TED novel fold AF-A0A512INB8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1186196","l":"Natrinema salaciae","na":1,"nb":1,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["TED%3AAF-A0A1H9QMZ8-F1-model_v4_TED01","TED novel fold AF-A0A1H9QMZ8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1188229","l":"Gloeomargarita lithophora Alchichica-D10","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["TED%3AAF-A0A1J0AGF7-F1-model_v4_TED01","TED novel fold AF-A0A1J0AGF7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1198114","l":"Granulicella tundricola MP5ACTX9","na":1,"nb":1,"a":[["area-designated-as-a-nature-reserve-envo-00000363.html","area designated as a nature reserve"]],"b":[["TED%3AAF-E8X149-F1-model_v4_TED01","TED highly-symmetric fold AF-E8X149-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1210091","l":"Nocardia ninae NBRC 108245","na":1,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["TED%3AAF-A0A511MS59-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A511MS59-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1210932","l":"Peteryoungia ipomoeae","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["TED%3AAF-A0A4S8P7B5-F1-model_v4_TED01","TED novel fold AF-A0A4S8P7B5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1212765","l":"Candidatus Mycoplasma haematolamae str. Purdue","na":1,"nb":1,"a":[["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["TED%3AAF-I7CFH3-F1-model_v4_TED01","TED novel fold AF-I7CFH3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1216006","l":"Vibrio aerogenes CECT 7868","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["TED%3AAF-A0A1M5VN06-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M5VN06-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1227498","l":"Natronococcus jeotgali DSM 18795","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["TED%3AAF-L9WM09-F1-model_v4_TED01","TED novel fold AF-L9WM09-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1236689","l":"Candidatus Methanomethylophilus alvi Mx1201","na":1,"nb":1,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["TED%3AAF-M9SC19-F1-model_v4_TED01","TED highly-symmetric fold AF-M9SC19-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1241906","l":"-","na":1,"nb":1,"a":[["nb-4-cell-bto-0002136.html","NB-4 cell"]],"b":[["TED%3AAF-M6ZXW8-F1-model_v4_TED01","TED highly-symmetric fold AF-M6ZXW8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1245469","l":"Bradyrhizobium oligotrophicum S58","na":1,"nb":1,"a":[["bacteroid-bto-0000109.html","bacteroid"]],"b":[["TED%3AAF-M4ZLP8-F1-model_v4_TED01","TED highly-symmetric fold AF-M4ZLP8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1262550","l":"Brevibacterium jeotgali","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["TED%3AAF-A0A2H1L8Q0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H1L8Q0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1262583","l":"Tamaricihabitans halophyticus","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["TED%3AAF-A0A4R2RDI5-F1-model_v4_TED01","TED novel fold AF-A0A4R2RDI5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1263636","l":"Microbacterium kyungheense","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["TED%3AAF-A0A543F149-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A543F149-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1267768","l":"Brevirhabdus pacifica","na":1,"nb":1,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["TED%3AAF-A0A2M9DE94-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M9DE94-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1268635","l":"Legionella oakridgensis ATCC 33761 = DSM 21215","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["TED%3AAF-W0BCQ3-F1-model_v4_TED02","TED highly-symmetric fold AF-W0BCQ3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1273541","l":"Pyrodictium delaneyi","na":1,"nb":1,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["TED%3AAF-A0A211YRF7-F1-model_v4_TED01","TED novel fold AF-A0A211YRF7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1274631","l":"Bradyrhizobium icense","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["TED%3AAF-A0A533IQI7-F1-model_v4_TED02","TED novel fold AF-A0A533IQI7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1276220","l":"Spiroplasma taiwanense CT-1","na":1,"nb":1,"a":[["cardiovascular-system-bto-0000088.html","cardiovascular system"]],"b":[["TED%3AAF-S5LY17-F1-model_v4_TED02","TED novel fold AF-S5LY17-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1276221","l":"Spiroplasma diminutum CUAS-1","na":1,"nb":1,"a":[["cardiovascular-system-bto-0000088.html","cardiovascular system"]],"b":[["TED%3AAF-S5M2Q1-F1-model_v4_TED01","TED novel fold AF-S5M2Q1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1291742","l":"Paucilactobacillus hokkaidonensis JCM 18461","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["TED%3AAF-A0A0A1GYI0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A1GYI0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1298595","l":"Veillonella rogosae JCM 15642","na":1,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["TED%3AAF-A0A2S7YXG0-F1-model_v4_TED02","TED novel fold AF-A0A2S7YXG0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1307761","l":"Salinispira pacifica","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["TED%3AAF-V5WIK3-F1-model_v4_TED01","TED highly-symmetric fold AF-V5WIK3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1324350","l":"Acinetobacter equi","na":1,"nb":1,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["TED%3AAF-A0A0N9WF70-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0N9WF70-F1-model_v4_TED01"]]},{"id":"NCBITaxon:132476","l":"Pseudomonas kilonensis","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A1H5FUT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H5FUT8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1333523","l":"Salinarchaeum sp. Harcht-Bsk1","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["TED%3AAF-R4VXQ2-F1-model_v4_TED01","TED highly-symmetric fold AF-R4VXQ2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1341157","l":"Ruminococcus flavefaciens 007c","na":1,"nb":1,"a":[["fiber-bto-0000450.html","fiber"]],"b":[["TED%3AAF-W7UF30-F1-model_v4_TED01","TED novel fold AF-W7UF30-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1342794","l":"Photobacterium sanctipauli","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["TED%3AAF-A0A2T3P194-F1-model_v4_TED01","TED novel fold AF-A0A2T3P194-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1346286","l":"Indolivaga macrotermitis","na":1,"nb":1,"a":[["hindgut-bto-0000510.html","hindgut"]],"b":[["TED%3AAF-A0A1M4VXX6-F1-model_v4_TED02","TED novel fold AF-A0A1M4VXX6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1348114","l":"Pseudoalteromonas piratica","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["TED%3AAF-A0A0A7EDY8-F1-model_v4_TED01","TED novel fold AF-A0A0A7EDY8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1365176","l":"Thermofilum adornatum","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["TED%3AAF-A0A7C1CCT4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C1CCT4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1424653","l":"Caminibacter pacificus","na":1,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["TED%3AAF-A0A3N1YR43-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3N1YR43-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1431546","l":"Corynebacterium aquilae DSM 44791","na":1,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["TED%3AAF-A0A1L7CFU4-F1-model_v4_TED03","TED novel fold AF-A0A1L7CFU4-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1497681","l":"Paenilisteria newyorkensis","na":1,"nb":1,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["TED%3AAF-A0A841Z083-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A841Z083-F1-model_v4_TED02"]]},{"id":"NCBITaxon:150","l":"Spirochaeta isovalerica","na":1,"nb":1,"a":[["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["TED%3AAF-A0A841R6V2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841R6V2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1500506","l":"Halopolyspora algeriensis","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["TED%3AAF-A0A368VEW2-F1-model_v4_TED01","TED novel fold AF-A0A368VEW2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:150053","l":"Yersinia enterocolitica subsp. palearctica","na":1,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["TED%3AAF-A0A6M1Q6Y0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6M1Q6Y0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1507806","l":"Campylobacter fetus subsp. testudinum","na":1,"nb":1,"a":[["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["TED%3AAF-A0A2S0JEW5-F1-model_v4_TED02","TED novel fold AF-A0A2S0JEW5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:151783","l":"Cupriavidus campinensis","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["TED%3AAF-A0A556UPV6-F1-model_v4_TED01","TED novel fold AF-A0A556UPV6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1524097","l":"Massilia glaciei","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["TED%3AAF-A0A2U2HFI6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U2HFI6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1526762","l":"Vibrio sp. B183","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["TED%3AAF-A0A086WSI7-F1-model_v4_TED02","TED novel fold AF-A0A086WSI7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1550","l":"Clostridium subterminale","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["Pfam%3APF12544","Lysine-2,3-aminomutase"]]},{"id":"NCBITaxon:156133","l":"Prasinoderma coloniale","na":1,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A7R9Y3T8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7R9Y3T8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1574623","l":"Lyngbya confervoides BDU141951","na":1,"nb":1,"a":[["filament-bto-0000463.html","filament"]],"b":[["TED%3AAF-A0A0C1V1F7-F1-model_v4_TED01","TED novel fold AF-A0A0C1V1F7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:157733","l":"Alkalihalobacillus macyae","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["TED%3AAF-A0A0J6FWV9-F1-model_v4_TED01","TED novel fold AF-A0A0J6FWV9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1577902","l":"Leisingera sp. ANG-M7","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["TED%3AAF-A0A0C1IJ64-F1-model_v4_TED02","TED novel fold AF-A0A0C1IJ64-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1577905","l":"Tateyamaria sp. ANG-S1","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["TED%3AAF-A0A0B4CZX6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0B4CZX6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1585","l":"Lactobacillus delbrueckii subsp. bulgaricus","na":1,"nb":1,"a":[["pig-manure-envo-00003860.html","pig manure"]],"b":[["TED%3AAF-A0A809EIY6-F1-model_v4_TED02","TED novel fold AF-A0A809EIY6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1604","l":"Lactobacillus amylovorus","na":1,"nb":1,"a":[["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["Pfam%3APF10439","Bacteriocin class II with double-glycine leader peptide"]]},{"id":"NCBITaxon:1612149","l":"Chryseobacterium limigenitum","na":1,"nb":1,"a":[["waste-material-envo-00002264.html","waste material"]],"b":[["TED%3AAF-A0A1K2ISG6-F1-model_v4_TED01","TED novel fold AF-A0A1K2ISG6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:161879","l":"Corynebacterium kroppenstedtii","na":1,"nb":1,"a":[["breast-bto-0000149.html","breast"]],"b":[["TED%3AAF-A0A2N6TDE9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N6TDE9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1639133","l":"Citrobacter portucalensis","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["TED%3AAF-A0A7I7D4I9-F1-model_v4_TED01","TED novel fold AF-A0A7I7D4I9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1648404","l":"Aurantiacibacter atlanticus","na":1,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["TED%3AAF-A0A0H4VAN8-F1-model_v4_TED01","TED novel fold AF-A0A0H4VAN8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1690","l":"Bifidobacterium pseudolongum subsp. globosum","na":1,"nb":1,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["TED%3AAF-A0A4Q5B3M5-F1-model_v4_TED01","TED novel fold AF-A0A4Q5B3M5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1703352","l":"Bacteroides sp. SM23_62","na":1,"nb":1,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["TED%3AAF-A0A0S8JVR9-F1-model_v4_TED02","TED novel fold AF-A0A0S8JVR9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1703960","l":"Rhizobium sp. N113","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["TED%3AAF-A0A192M071-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A192M071-F1-model_v4_TED01"]]},{"id":"NCBITaxon:170673","l":"Vibrio kanaloae","na":1,"nb":1,"a":[["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["TED%3AAF-A0A4U1Z3U9-F1-model_v4_TED01","TED novel fold AF-A0A4U1Z3U9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1716141","l":"Streptomyces jeddahensis","na":1,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["TED%3AAF-A0A177HQP2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A177HQP2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:171674","l":"Inquilinus limosus","na":1,"nb":1,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"]],"b":[["TED%3AAF-A0A211ZKE4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A211ZKE4-F1-model_v4_TED03"]]},{"id":"NCBITaxon:172044","l":"Sphingomonas yabuuchiae","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["TED%3AAF-A0A147IMF7-F1-model_v4_TED02","TED novel fold AF-A0A147IMF7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1727163","l":"Algoriphagus sanaruensis","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["TED%3AAF-A0A142ENK3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142ENK3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:173365","l":"Methylobacter tundripaludum","na":1,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["TED%3AAF-A0A2S6HGL6-F1-model_v4_TED02","TED novel fold AF-A0A2S6HGL6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:173959","l":"Brevibacillus invocatus","na":1,"nb":1,"a":[["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"]],"b":[["TED%3AAF-A0A3M8C5C7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M8C5C7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:174","l":"Leptospira borgpetersenii","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["Pfam%3APF01548","Transposase"]]},{"id":"NCBITaxon:1761780","l":"Butyrivibrio sp. ob235","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["TED%3AAF-A0A1H7I3V4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H7I3V4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1761884","l":"Prevotella sp. khp1","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["TED%3AAF-A0A1H0Y2B2-F1-model_v4_TED01","TED novel fold AF-A0A1H0Y2B2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1767","l":"Mycobacterium intracellulare","na":1,"nb":1,"a":[["co-culture-habitatmech-bacdive-ff945d8a69.html","Co-culture"]],"b":[["Pfam%3APF18914","Domain of unknown function (DUF5666)"]]},{"id":"NCBITaxon:177437","l":"Desulforapulum autotrophicum HRM2","na":1,"nb":1,"a":[["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["TED%3AAF-C0QA36-F1-model_v4_TED03","TED novel fold AF-C0QA36-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1795630","l":"Frondihabitans sp. PAMC 28766","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["TED%3AAF-A0A126Z0C8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A126Z0C8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1797220","l":"Alphaproteobacteria bacterium RIFCSPHIGHO2_02_FULL_46_13","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["TED%3AAF-A0A1F2Z3M8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F2Z3M8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1798185","l":"Pseudobutyrivibrio sp. UC1225","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["TED%3AAF-A0A1I5GI49-F1-model_v4_TED01","TED novel fold AF-A0A1I5GI49-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1799789","l":"Paraglaciecola hydrolytica","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["TED%3AAF-A0A135ZZ80-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A135ZZ80-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1812935","l":"Enterobacter roggenkampii","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["TED%3AAF-A0A7D6U4G9-F1-model_v4_TED01","TED novel fold AF-A0A7D6U4G9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1829","l":"Rhodococcus rhodochrous","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"]]},{"id":"NCBITaxon:1843237","l":"Sphingomonas prati","na":1,"nb":1,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["TED%3AAF-A0A7W9BV99-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W9BV99-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1852","l":"Saccharomonospora viridis","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["TED%3AAF-A0A837DC99-F1-model_v4_TED01","TED novel fold AF-A0A837DC99-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1869214","l":"Rheinheimera sp.","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["TED%3AAF-A0A2D5RQK8-F1-model_v4_TED01","TED novel fold AF-A0A2D5RQK8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1870902","l":"Leifsonia sp.","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["TED%3AAF-A0A2E0SSA9-F1-model_v4_TED02","TED novel fold AF-A0A2E0SSA9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1871043","l":"Variovorax sp.","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["TED%3AAF-A0A2E9BKC8-F1-model_v4_TED02","TED novel fold AF-A0A2E9BKC8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:187303","l":"Methylocystis hydrogenophila","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["TED%3AAF-J7QPR6-F1-model_v4_TED01","TED novel fold AF-J7QPR6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:187327","l":"Acidaminococcus intestini","na":1,"nb":1,"a":[["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["TED%3AAF-C0WBZ8-F1-model_v4_TED01","TED highly-symmetric fold AF-C0WBZ8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1881060","l":"Clostridium sp. USBA 49","na":1,"nb":1,"a":[["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"]],"b":[["TED%3AAF-A0A1T4XFS6-F1-model_v4_TED02","TED novel fold AF-A0A1T4XFS6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1882750","l":"Burkholderia sp. GAS332","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["TED%3AAF-A0A1N6LVR0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1N6LVR0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1882752","l":"Singulisphaera sp. GP187","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["TED%3AAF-A0A1N6KHP4-F1-model_v4_TED02","TED novel fold AF-A0A1N6KHP4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1882832","l":"Paenibacillaceae bacterium GAS479","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["TED%3AAF-A0A1H1ZWX8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H1ZWX8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1888168","l":"Curvibacter sp.","na":1,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["TED%3AAF-A0A433BGD3-F1-model_v4_TED01","TED novel fold AF-A0A433BGD3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1890675","l":"Herbaspirillum sp.","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["TED%3AAF-A0A2E7PAN6-F1-model_v4_TED02","TED novel fold AF-A0A2E7PAN6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1904","l":"Streptomyces cyaneus","na":1,"nb":1,"a":[["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["Pfam%3APF04673","Polyketide synthesis cyclase"]]},{"id":"NCBITaxon:1907575","l":"Jatrophihabitans sp. GAS493","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["TED%3AAF-A0A286EQ27-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A286EQ27-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1908","l":"Streptomyces globisporus","na":1,"nb":1,"a":[["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["PROSITE%3APS00953","Glycosyl hydrolases family 25 active site signature"]]},{"id":"NCBITaxon:191292","l":"Rhodococcus aetherivorans","na":1,"nb":1,"a":[["bcp-1-cell-bto-0002728.html","BCP-1 cell"]],"b":[["TED%3AAF-N1LZY7-F1-model_v4_TED01","TED highly-symmetric fold AF-N1LZY7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1926630","l":"Pseudoblastomonas halimionae","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["TED%3AAF-A0A6I4U4Z5-F1-model_v4_TED03","TED novel fold AF-A0A6I4U4Z5-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1935","l":"Streptomyces violaceoruber","na":1,"nb":1,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["Pfam%3APF03559","NDP-hexose 2,3-dehydratase"]]},{"id":"NCBITaxon:1938870","l":"Candidatus Pantoea floridensis","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["TED%3AAF-A0A286BLC6-F1-model_v4_TED02","TED novel fold AF-A0A286BLC6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:195913","l":"Loktanella salsilacus","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["TED%3AAF-A0A1I4CVX6-F1-model_v4_TED03","TED novel fold AF-A0A1I4CVX6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:1967","l":"Streptomyces kanamyceticus","na":1,"nb":1,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["Pfam%3APF13579","Glycosyl transferase 4-like domain"]]},{"id":"NCBITaxon:2024860","l":"Spongiibacter sp.","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["TED%3AAF-A0A2D7WH13-F1-model_v4_TED03","TED novel fold AF-A0A2D7WH13-F1-model_v4_TED03"]]},{"id":"NCBITaxon:203","l":"Campylobacter rectus","na":1,"nb":1,"a":[["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["TED%3AAF-A0A6G5QQ81-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A6G5QQ81-F1-model_v4_TED04"]]},{"id":"NCBITaxon:2030","l":"Kibdelosporangium aridum","na":1,"nb":1,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["TED%3AAF-A0A1W1ZQL0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W1ZQL0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:2051","l":"Mobiluncus curtisii","na":1,"nb":1,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["TED%3AAF-A0A7Y0UGC2-F1-model_v4_TED01","TED novel fold AF-A0A7Y0UGC2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:205918","l":"Pseudomonas syringae pv. syringae B728a","na":1,"nb":1,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["Pfam%3APF15457","Type III T3SS secreted effector HopW1-1/HopPmaA"]]},{"id":"NCBITaxon:2125990","l":"Pseudodesulfovibrio hydrargyri","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["TED%3AAF-A0A1J5N6X0-F1-model_v4_TED02","TED novel fold AF-A0A1J5N6X0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:212717","l":"Clostridium tetani E88","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["Pfam%3APF08453","Peptidase family M9 N-terminal"]]},{"id":"NCBITaxon:2148","l":"Acholeplasma laidlawii","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["TED%3AAF-A0A553IH20-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A553IH20-F1-model_v4_TED04"]]},{"id":"NCBITaxon:2164","l":"Methanobacterium sp.","na":1,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"]],"b":[["TED%3AAF-A0A6A8RVR7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6A8RVR7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:216591","l":"Burkholderia cenocepacia J2315","na":1,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["Pfam%3APF04199","Putative cyclase"]]},{"id":"NCBITaxon:216778","l":"Stenotrophomonas rhizophila","na":1,"nb":1,"a":[["style-bto-0001313.html","style"]],"b":[["TED%3AAF-A0A023XYG6-F1-model_v4_TED02","TED novel fold AF-A0A023XYG6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:216895","l":"Vibrio vulnificus CMCP6","na":1,"nb":1,"a":[["hela-cell-bto-0000567.html","HeLa cell"]],"b":[["Pfam%3APF18416","N-acetylglucosamine binding protein domain 2"]]},{"id":"NCBITaxon:218208","l":"Desulfatibacillum aliphaticivorans","na":1,"nb":1,"a":[["watercourse-envo-00000029.html","watercourse"]],"b":[["TED%3AAF-B8FC96-F1-model_v4_TED02","TED highly-symmetric fold AF-B8FC96-F1-model_v4_TED02"]]},{"id":"NCBITaxon:223788","l":"Balnearium lithotrophicum","na":1,"nb":1,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["TED%3AAF-A0A521D8E7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A521D8E7-F1-model_v4_TED03"]]},{"id":"NCBITaxon:2242","l":"Halobacterium salinarum","na":1,"nb":1,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["Pfam%3APF07232","Putative rep protein (DUF1424)"]]},{"id":"NCBITaxon:225324","l":"Enhydrobacter aerosaccus","na":1,"nb":1,"a":[["nectar-bto-0000537.html","nectar"]],"b":[["TED%3AAF-A0A1T4TCH1-F1-model_v4_TED01","TED novel fold AF-A0A1T4TCH1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:225849","l":"Shewanella piezotolerans WP3","na":1,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["TED%3AAF-B8CPC1-F1-model_v4_TED01","TED novel fold AF-B8CPC1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:225991","l":"Comamonas aquatica","na":1,"nb":1,"a":[["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["TED%3AAF-A0A8B0TG78-F1-model_v4_TED02","TED novel fold AF-A0A8B0TG78-F1-model_v4_TED02"]]},{"id":"NCBITaxon:227605","l":"Methylocella tundrae","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A4U8Z7R3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8Z7R3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:229919","l":"Anaerolinea thermolimosa","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["TED%3AAF-A0A3D1JEJ6-F1-model_v4_TED03","TED novel fold AF-A0A3D1JEJ6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:230089","l":"Photorhabdus thracensis","na":1,"nb":1,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["TED%3AAF-A0A0F7LMP9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F7LMP9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:231438","l":"Desulfoluna butyratoxydans","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["TED%3AAF-A0A4U8YKH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8YKH3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:234621","l":"Rhodococcus erythropolis PR4","na":1,"nb":1,"a":[["joint-bto-0001686.html","joint"]],"b":[["TED%3AAF-C0ZLI2-F1-model_v4_TED01","TED novel fold AF-C0ZLI2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:243160","l":"Burkholderia mallei ATCC 23344","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["PROSITE%3APS01306","Uncharacterized protein family UPF0054 signature"]]},{"id":"NCBITaxon:243265","l":"Photorhabdus laumondii subsp. laumondii TTO1","na":1,"nb":1,"a":[["carcass-bto-0001965.html","carcass"]],"b":[["Pfam%3APF07927","HicA toxin of bacterial toxin-antitoxin,"]]},{"id":"NCBITaxon:246432","l":"Staphylococcus equorum","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["TED%3AAF-A0A1B1GAW5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1B1GAW5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:250","l":"Chryseobacterium gleum","na":1,"nb":1,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["TED%3AAF-A0A448B167-F1-model_v4_TED02","TED novel fold AF-A0A448B167-F1-model_v4_TED02"]]},{"id":"NCBITaxon:252514","l":"Microbulbifer thermotolerans","na":1,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["Pfam%3APF18040","beta porphyranase A C-terminal"]]},{"id":"NCBITaxon:253239","l":"Ethanoligenens harbinense","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["TED%3AAF-A0A386XVY3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A386XVY3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:257363","l":"Rickettsia typhi str. Wilmington","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Pfam%3APF12334","Rickettsia outer membrane protein B, passenger domain"]]},{"id":"NCBITaxon:259564","l":"Methanococcoides burtonii DSM 6242","na":1,"nb":1,"a":[["hypolimnion-envo-00002130.html","hypolimnion"]],"b":[["TED%3AAF-Q12W09-F1-model_v4_TED02","TED novel fold AF-Q12W09-F1-model_v4_TED02"]]},{"id":"NCBITaxon:266117","l":"Rubrobacter xylanophilus DSM 9941","na":1,"nb":1,"a":[["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["TED%3AAF-Q1AVL5-F1-model_v4_TED02","TED highly-symmetric fold AF-Q1AVL5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:267671","l":"Leptospira interrogans serovar Copenhageni str. Fiocruz L1-130","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["Pfam%3APF05262","Borrelia P83/100 protein"]]},{"id":"NCBITaxon:267747","l":"Cutibacterium acnes KPA171202","na":1,"nb":1,"a":[["sebaceous-gland-bto-0001980.html","sebaceous gland"]],"b":[["Pfam%3APF27542","ArfC"]]},{"id":"NCBITaxon:272831","l":"Neisseria meningitidis FAM18","na":1,"nb":1,"a":[["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["Pfam%3APF27460","ATP phosphoribosyltransferase subunit HisZ C-terminal domain"]]},{"id":"NCBITaxon:272951","l":"Rickettsia sibirica 246","na":1,"nb":1,"a":[["endothelial-cell-bto-0001176.html","endothelial cell"]],"b":[["Pfam%3APF22203","Surface cell antigen Sca2 helical repeat"]]},{"id":"NCBITaxon:273384","l":"Brevibacterium aurantiacum","na":1,"nb":1,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["TED%3AAF-A0A556CK32-F1-model_v4_TED02","TED novel fold AF-A0A556CK32-F1-model_v4_TED02"]]},{"id":"NCBITaxon:278992","l":"Streptomyces ambofaciens ATCC 23877","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["Pfam%3APF00553","Cellulose binding domain"]]},{"id":"NCBITaxon:28031","l":"Lysinibacillus fusiformis","na":1,"nb":1,"a":[["organic-waste-material-envo-00002873.html","organic waste material"]],"b":[["TED%3AAF-A0A1E4QZZ2-F1-model_v4_TED04","TED novel fold AF-A0A1E4QZZ2-F1-model_v4_TED04"]]},{"id":"NCBITaxon:28113","l":"Prevotella heparinolytica","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["TED%3AAF-A0A449I749-F1-model_v4_TED01","TED novel fold AF-A0A449I749-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28181","l":"Magnetovibrio blakemorei","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["TED%3AAF-A0A1E5Q9I9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E5Q9I9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28198","l":"Aliarcobacter cryaerophilus","na":1,"nb":1,"a":[["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["TED%3AAF-A0A2S9SPY1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S9SPY1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:284579","l":"Salibacterium salarium","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["TED%3AAF-A0A3R9PEH4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R9PEH4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:288681","l":"Bacillus cereus E33L","na":1,"nb":1,"a":[["carcass-envo-00002033.html","carcass"]],"b":[["TED%3AAF-Q4V119-F1-model_v4_TED01","TED highly-symmetric fold AF-Q4V119-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28892","l":"Methanofollis liminatans DSM 4140","na":1,"nb":1,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["TED%3AAF-J0S6K4-F1-model_v4_TED02","TED novel fold AF-J0S6K4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:291645","l":"Bacteroides nordii","na":1,"nb":1,"a":[["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["TED%3AAF-A0A413VD19-F1-model_v4_TED01","TED novel fold AF-A0A413VD19-F1-model_v4_TED01"]]},{"id":"NCBITaxon:29303","l":"Streptantibioticus cattleyicolor","na":1,"nb":1,"a":[["clay-envo-00002982.html","clay"]],"b":[["Pfam%3APF22636","Fluoroacetyl-CoA-specific thioesterase"]]},{"id":"NCBITaxon:29422","l":"Legionella brunensis","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["TED%3AAF-A0A0W0RZW2-F1-model_v4_TED03","TED novel fold AF-A0A0W0RZW2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:29447","l":"Xanthomonas albilineans","na":1,"nb":1,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["TED%3AAF-A0A6P1SIK7-F1-model_v4_TED02","TED novel fold AF-A0A6P1SIK7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:29554","l":"Metamycoplasma canadense","na":1,"nb":1,"a":[["inflammatory-cell-bto-0003861.html","inflammatory cell"]],"b":[["TED%3AAF-A0A077LB01-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A077LB01-F1-model_v4_TED02"]]},{"id":"NCBITaxon:29557","l":"Mycoplasmopsis gallinarum","na":1,"nb":1,"a":[["medial-geniculate-nucleus-bto-0002670.html","medial geniculate nucleus"]],"b":[["TED%3AAF-A0A168RG78-F1-model_v4_TED05","TED novel fold AF-A0A168RG78-F1-model_v4_TED05"]]},{"id":"NCBITaxon:29581","l":"Janthinobacterium lividum","na":1,"nb":1,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["TED%3AAF-A0A853SDQ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A853SDQ0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:298","l":"Pseudomonas marginalis","na":1,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["PROSITE%3APS00330","Hemolysin-type calcium-binding region signature"]]},{"id":"NCBITaxon:299767","l":"Enterobacter ludwigii","na":1,"nb":1,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["TED%3AAF-W0BYN9-F1-model_v4_TED01","TED highly-symmetric fold AF-W0BYN9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:300","l":"Ectopseudomonas mendocina","na":1,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"]],"b":[["TED%3AAF-A0A550EU84-F1-model_v4_TED01","TED novel fold AF-A0A550EU84-F1-model_v4_TED01"]]},{"id":"NCBITaxon:301154","l":"Sphingomonas oligophenolica","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["TED%3AAF-A0A502CIK8-F1-model_v4_TED02","TED novel fold AF-A0A502CIK8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:304","l":"Roseateles saccharophilus","na":1,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"]],"b":[["Pfam%3APF09081","Glucan 1,4-alpha-maltotetraohydrolase, domain C"]]},{"id":"NCBITaxon:306537","l":"Corynebacterium jeikeium K411","na":1,"nb":1,"a":[["bone-marrow-bto-0000141.html","bone marrow"]],"b":[["TED%3AAF-Q4JSH9-F1-model_v4_TED02","TED novel fold AF-Q4JSH9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:315277","l":"Chlamydia trachomatis A/HAR-13","na":1,"nb":1,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["Pfam%3APF05745","Chlamydia 15 kDa cysteine-rich outer membrane protein (CRPA)"]]},{"id":"NCBITaxon:315750","l":"Bacillus pumilus SAFR-032","na":1,"nb":1,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["Pfam%3APF06569","Protein of unknown function (DUF1128)"]]},{"id":"NCBITaxon:317010","l":"Enterococcus canintestini","na":1,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"]],"b":[["TED%3AAF-A0A1L8R2Z2-F1-model_v4_TED01","TED novel fold AF-A0A1L8R2Z2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:317577","l":"Deinococcus ficus","na":1,"nb":1,"a":[["waste-treatment-plant-envo-00002272.html","waste treatment plant"]],"b":[["TED%3AAF-A0A221T2Q9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A221T2Q9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:318751","l":"Westerdykella ornata","na":1,"nb":1,"a":[["desert-sand-envo-00005800.html","desert sand"]],"b":[["TED%3AAF-A0A6A6JM44-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6A6JM44-F1-model_v4_TED02"]]},{"id":"NCBITaxon:32019","l":"Campylobacter fetus subsp. fetus","na":1,"nb":1,"a":[["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["TED%3AAF-A0A0S4SB94-F1-model_v4_TED05","TED novel fold AF-A0A0S4SB94-F1-model_v4_TED05"]]},{"id":"NCBITaxon:32021","l":"Campylobacter jejuni subsp. doylei","na":1,"nb":1,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["TED%3AAF-A0A381D4M6-F1-model_v4_TED01","TED novel fold AF-A0A381D4M6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:320388","l":"Burkholderia mallei SAVP1","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Pfam%3APF27460","ATP phosphoribosyltransferase subunit HisZ C-terminal domain"]]},{"id":"NCBITaxon:321267","l":"Shimia marina","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["TED%3AAF-A0A0P1EQT4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0P1EQT4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:321985","l":"Pseudoduganella lutea","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["TED%3AAF-A0A4V0Z4E3-F1-model_v4_TED01","TED novel fold AF-A0A4V0Z4E3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:323259","l":"Methanospirillum hungatei JF-1","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["Pfam%3APF01864","CDP-archaeol synthase"]]},{"id":"NCBITaxon:326424","l":"Frankia alni ACN14a","na":1,"nb":1,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["Pfam%3APF14403","Circularly permuted ATP-grasp type 2"]]},{"id":"NCBITaxon:335284","l":"Psychrobacter cryohalolentis K5","na":1,"nb":1,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["Pfam%3APF10414","Sirohaem synthase dimerisation region"]]},{"id":"NCBITaxon:336203","l":"Sphingobium fuliginis","na":1,"nb":1,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["TED%3AAF-A0A4Q4J272-F1-model_v4_TED01","TED novel fold AF-A0A4Q4J272-F1-model_v4_TED01"]]},{"id":"NCBITaxon:33967","l":"Leuconostoc mesenteroides subsp. mesenteroides","na":1,"nb":1,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"]],"b":[["Pfam%3APF03390","2-hydroxycarboxylate transporter family"]]},{"id":"NCBITaxon:340","l":"Xanthomonas campestris pv. campestris","na":1,"nb":1,"a":[["waste-treatment-plant-envo-00002272.html","waste treatment plant"]],"b":[["Pfam%3APF22059","Glucuronosyltransferase GumK, N-terminal domain"]]},{"id":"NCBITaxon:340047","l":"Mycoplasma capricolum subsp. capricolum ATCC 27343","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Pfam%3APF27879","Helix-rich protein"]]},{"id":"NCBITaxon:340345","l":"Actinoalloteichus hymeniacidonis","na":1,"nb":1,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["TED%3AAF-A0A7W9UEM7-F1-model_v4_TED01","TED novel fold AF-A0A7W9UEM7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:343509","l":"Sodalis glossinidius str. 'morsitans'","na":1,"nb":1,"a":[["needle-bto-0000917.html","needle"]],"b":[["Pfam%3APF04345","Chorismate lyase"]]},{"id":"NCBITaxon:345631","l":"Geobacter argillaceus","na":1,"nb":1,"a":[["clay-envo-00002982.html","clay"]],"b":[["TED%3AAF-A0A562VM24-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A562VM24-F1-model_v4_TED02"]]},{"id":"NCBITaxon:351607","l":"Acidothermus cellulolyticus 11B","na":1,"nb":1,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["Pfam%3APF10647","Lipoprotein LpqB beta-propeller domain"]]},{"id":"NCBITaxon:353152","l":"","na":1,"nb":1,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"]],"b":[["TED%3AAF-Q5CXF2-F1-model_v4_TED01","TED highly-symmetric fold AF-Q5CXF2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:356829","l":"Bifidobacterium tsurumiense","na":1,"nb":1,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["TED%3AAF-A0A6L5X0P9-F1-model_v4_TED01","TED novel fold AF-A0A6L5X0P9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:357244","l":"Orientia tsutsugamushi str. Boryong","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Pfam%3APF01745","Isopentenyl transferase"]]},{"id":"NCBITaxon:35752","l":"Actinoplanes philippinensis","na":1,"nb":1,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["TED%3AAF-A0A1I2HI82-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I2HI82-F1-model_v4_TED02"]]},{"id":"NCBITaxon:35787","l":"Limosilactobacillus pontis","na":1,"nb":1,"a":[["pig-manure-envo-00003860.html","pig manure"]],"b":[["TED%3AAF-A0A2J6NPS8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2J6NPS8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:360911","l":"Exiguobacterium sp. AT1b","na":1,"nb":1,"a":[["joint-bto-0001686.html","joint"]],"b":[["TED%3AAF-C4L6T8-F1-model_v4_TED04","TED highly-symmetric fold AF-C4L6T8-F1-model_v4_TED04"]]},{"id":"NCBITaxon:362787","l":"Candidatus Protochlamydia amoebophila","na":1,"nb":1,"a":[["endosymbiont-habitatmech-bacdive-7d840c7ddc.html","Endosymbiont"]],"b":[["TED%3AAF-A0A0C1H7Y9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0C1H7Y9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:36746","l":"Pseudomonas cichorii","na":1,"nb":1,"a":[["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["TED%3AAF-A0A3M4VH83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M4VH83-F1-model_v4_TED01"]]},{"id":"NCBITaxon:36841","l":"Terrisporobacter glycolicus","na":1,"nb":1,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["TED%3AAF-A0A1I3PG81-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I3PG81-F1-model_v4_TED01"]]},{"id":"NCBITaxon:370554","l":"Streptococcus pyogenes MGAS10750","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["Pfam%3APF04260","Protein of unknown function (DUF436)"]]},{"id":"NCBITaxon:370973","l":"Runella defluvii","na":1,"nb":1,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["TED%3AAF-A0A7W5ZNZ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W5ZNZ4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:373","l":"Gillisella vitis","na":1,"nb":1,"a":[["trunk-bto-0001493.html","trunk"]],"b":[["TED%3AAF-A0A368P0R2-F1-model_v4_TED01","TED novel fold AF-A0A368P0R2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:373672","l":"Chryseobacterium gambrini","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["TED%3AAF-A0A1N7P9B3-F1-model_v4_TED02","TED novel fold AF-A0A1N7P9B3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:37372","l":"Helicobacter bilis","na":1,"nb":1,"a":[["ht-29-cell-bto-0000182.html","HT-29 cell"]],"b":[["TED%3AAF-A0A4U8UA27-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8UA27-F1-model_v4_TED01"]]},{"id":"NCBITaxon:375177","l":"Haemophilus influenzae 3655","na":1,"nb":1,"a":[["b-lymphocyte-cell-line-bto-0001522.html","B-lymphocyte cell line"]],"b":[["Pfam%3APF16747","Surface-adhesin protein E"]]},{"id":"NCBITaxon:375451","l":"Roseobacter denitrificans OCh 114","na":1,"nb":1,"a":[["inlet-envo-00000475.html","inlet"]],"b":[["TED%3AAF-Q164W9-F1-model_v4_TED02","TED highly-symmetric fold AF-Q164W9-F1-model_v4_TED02"]]},{"id":"NCBITaxon:378543","l":"Tumebacillus permanentifrigoris","na":1,"nb":1,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["TED%3AAF-A0A316DIT3-F1-model_v4_TED01","TED novel fold AF-A0A316DIT3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:381754","l":"Pseudomonas paraeruginosa PA7","na":1,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["Pfam%3APF05985","Ethanolamine ammonia-lyase light chain (EutC)"]]},{"id":"NCBITaxon:38301","l":"Corynebacterium minutissimum","na":1,"nb":1,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["TED%3AAF-A0A376D050-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A376D050-F1-model_v4_TED01"]]},{"id":"NCBITaxon:38304","l":"Corynebacterium tuberculostearicum","na":1,"nb":1,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["TED%3AAF-A0A7U0H937-F1-model_v4_TED01","TED novel fold AF-A0A7U0H937-F1-model_v4_TED01"]]},{"id":"NCBITaxon:384602","l":"Micrococcus flavus","na":1,"nb":1,"a":[["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["TED%3AAF-A0A7W7PAI2-F1-model_v4_TED01","TED novel fold AF-A0A7W7PAI2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:384765","l":"Roseibium aggregatum IAM 12614","na":1,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["Pfam%3APF04199","Putative cyclase"]]},{"id":"NCBITaxon:388396","l":"Aliivibrio fischeri MJ11","na":1,"nb":1,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["Pfam%3APF21868","GlcNAc-binding protein A, third domain"]]},{"id":"NCBITaxon:391038","l":"Paraburkholderia phymatum STM815","na":1,"nb":1,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["PROSITE%3APS00921","Nitrilases / cyanide hydratase active site signature"]]},{"id":"NCBITaxon:391904","l":"Bifidobacterium longum subsp. infantis ATCC 15697 = JCM 1222 = DSM 20088","na":1,"nb":1,"a":[["breast-bto-0000149.html","breast"]],"b":[["Pfam%3APF25528","Domain of unknown function (DUF7917)"]]},{"id":"NCBITaxon:392015","l":"Paenalicyclobacillus macrosporangiidus","na":1,"nb":1,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["TED%3AAF-A0A1I7LHN3-F1-model_v4_TED02","TED novel fold AF-A0A1I7LHN3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:393595","l":"Alcanivorax borkumensis SK2","na":1,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["TED%3AAF-Q0VNH7-F1-model_v4_TED01","TED highly-symmetric fold AF-Q0VNH7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:394935","l":"Chromobacterium haemolyticum","na":1,"nb":1,"a":[["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["TED%3AAF-A0A1W0CCE1-F1-model_v4_TED01","TED novel fold AF-A0A1W0CCE1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["Pfam%3APF13282","Domain of unknown function (DUF4070)"]]},{"id":"NCBITaxon:395963","l":"Beijerinckia indica subsp. indica ATCC 9039","na":1,"nb":1,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["TED%3AAF-B2IFK3-F1-model_v4_TED03","TED novel fold AF-B2IFK3-F1-model_v4_TED03"]]},{"id":"NCBITaxon:39650","l":"Cellvibrio mixtus","na":1,"nb":1,"a":[["compost-envo-00002170.html","compost"]],"b":[["TED%3AAF-A0A266QDL6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A266QDL6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:399549","l":"Metallosphaera sedula DSM 5348","na":1,"nb":1,"a":[["solfatara-envo-00000217.html","solfatara"]],"b":[["Pfam%3APF18195","GatD N-terminal domain"]]},{"id":"NCBITaxon:399579","l":"Thermogymnomonas acidicola","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["TED%3AAF-A0A830FZ95-F1-model_v4_TED01","TED novel fold AF-A0A830FZ95-F1-model_v4_TED01"]]},{"id":"NCBITaxon:40041","l":"Streptococcus equi subsp. zooepidemicus","na":1,"nb":1,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["Pfam%3APF02388","FemAB family"]]},{"id":"NCBITaxon:40215","l":"Acinetobacter junii","na":1,"nb":1,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["TED%3AAF-A0A8B4RWB2-F1-model_v4_TED01","TED novel fold AF-A0A8B4RWB2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:403833","l":"Petrotoga mobilis SJ95","na":1,"nb":1,"a":[["oil-envo-00002985.html","oil"]],"b":[["Pfam%3APF19328","2,4-diaminopentanoate dehydrogenase C-terminal domain"]]},{"id":"NCBITaxon:405440","l":"Xylella fastidiosa M12","na":1,"nb":1,"a":[["valley-envo-00000100.html","valley"]],"b":[["Pfam%3APF04977","Septum formation initiator"]]},{"id":"NCBITaxon:411154","l":"Christiangramia forsetii KT0803","na":1,"nb":1,"a":[["joint-bto-0001686.html","joint"]],"b":[["Pfam%3APF14109","GldH lipoprotein"]]},{"id":"NCBITaxon:411684","l":"Hoeflea phototrophica DFL-43","na":1,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["TED%3AAF-A9D4N0-F1-model_v4_TED02","TED novel fold AF-A9D4N0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:414684","l":"Rhodospirillum centenum SW","na":1,"nb":1,"a":[["cyst-bto-0000320.html","cyst"]],"b":[["Pfam%3APF27469","ATP synthase epsilon chain C-terminal domain"]]},{"id":"NCBITaxon:420953","l":"Paraburkholderia megapolitana","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["proteintraitsmech%3AELIFE109154_GrbD","GrbD-type graminine biosynthesis protein family"]]},{"id":"NCBITaxon:422289","l":"Beggiatoa sp. PS","na":1,"nb":1,"a":[["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-A7BS81-F1-model_v4_TED01","TED highly-symmetric fold AF-A7BS81-F1-model_v4_TED01"]]},{"id":"NCBITaxon:427317","l":"Saccharolobus islandicus M.14.25","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["Pfam%3APF05165","GTP cyclohydrolase III"]]},{"id":"NCBITaxon:436308","l":"Nitrosopumilus maritimus SCM1","na":1,"nb":1,"a":[["aquarium-envo-00002196.html","aquarium"]],"b":[["Pfam%3APF19045","Ligase-CoA domain"]]},{"id":"NCBITaxon:436717","l":"Acinetobacter oleivorans DR1","na":1,"nb":1,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["TED%3AAF-D8JEH7-F1-model_v4_TED03","TED novel fold AF-D8JEH7-F1-model_v4_TED03"]]},{"id":"NCBITaxon:43675","l":"Rothia mucilaginosa","na":1,"nb":1,"a":[["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["TED%3AAF-A0A291DCT6-F1-model_v4_TED03","TED novel fold AF-A0A291DCT6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:43677","l":"Promicromonospora citrea","na":1,"nb":1,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["TED%3AAF-A0A7Y2QR62-F1-model_v4_TED01","TED novel fold AF-A0A7Y2QR62-F1-model_v4_TED01"]]},{"id":"NCBITaxon:43768","l":"Corynebacterium matruchotii","na":1,"nb":1,"a":[["archeological-site-envo-00000564.html","archeological site"]],"b":[["TED%3AAF-A0A6H9XP04-F1-model_v4_TED01","TED novel fold AF-A0A6H9XP04-F1-model_v4_TED01"]]},{"id":"NCBITaxon:44008","l":"Enterococcus cecorum","na":1,"nb":1,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["TED%3AAF-A0A200I1A2-F1-model_v4_TED01","TED novel fold AF-A0A200I1A2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:446469","l":"Sanguibacter keddieii DSM 10542","na":1,"nb":1,"a":[["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["TED%3AAF-D1BCE8-F1-model_v4_TED01","TED highly-symmetric fold AF-D1BCE8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:447217","l":"Anaeromyxobacter sp. K","na":1,"nb":1,"a":[["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-B4UAH6-F1-model_v4_TED03","TED highly-symmetric fold AF-B4UAH6-F1-model_v4_TED03"]]},{"id":"NCBITaxon:451","l":"Legionella micdadei","na":1,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"]],"b":[["TED%3AAF-A0A098GE29-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A098GE29-F1-model_v4_TED01"]]},{"id":"NCBITaxon:45243","l":"Capnocytophaga haemolytica","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["TED%3AAF-A0A0X8JC19-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0X8JC19-F1-model_v4_TED01"]]},{"id":"NCBITaxon:453","l":"Legionella feeleii","na":1,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["TED%3AAF-A0A378IZL6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A378IZL6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:454006","l":"Epilithonimonas hungarica","na":1,"nb":1,"a":[["oil-envo-00002985.html","oil"]],"b":[["TED%3AAF-A0A1G7J6K0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1G7J6K0-F1-model_v4_TED03"]]},{"id":"NCBITaxon:455488","l":"Anaeromyxobacter dehalogenans 2CP-1","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["TED%3AAF-B8J8V7-F1-model_v4_TED01","TED novel fold AF-B8J8V7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:4558","l":"Sorghum bicolor","na":1,"nb":1,"a":[["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["TED%3AAF-A0A1W0W5T3-F1-model_v4_TED02","TED novel fold AF-A0A1W0W5T3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:457570","l":"Natranaerobius thermophilus JW/NM-WN-LF","na":1,"nb":1,"a":[["wadi-envo-00000031.html","wadi"]],"b":[["TED%3AAF-B2A1S1-F1-model_v4_TED02","TED highly-symmetric fold AF-B2A1S1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:459529","l":"Sphingobacterium siyangense","na":1,"nb":1,"a":[["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["TED%3AAF-A0A420FHV4-F1-model_v4_TED01","TED novel fold AF-A0A420FHV4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:46224","l":"Heyndrickxia sporothermodurans","na":1,"nb":1,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["TED%3AAF-A0A2T6EYG9-F1-model_v4_TED03","TED novel fold AF-A0A2T6EYG9-F1-model_v4_TED03"]]},{"id":"NCBITaxon:463","l":"Fluoribacter dumoffii","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["TED%3AAF-A0A377G6U6-F1-model_v4_TED01","TED novel fold AF-A0A377G6U6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:463301","l":"Halomonas korlensis","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["TED%3AAF-A0A1I7FWW8-F1-model_v4_TED01","TED novel fold AF-A0A1I7FWW8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:469616","l":"Fusobacterium mortiferum ATCC 9817","na":1,"nb":1,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["TED%3AAF-C3WAL7-F1-model_v4_TED02","TED novel fold AF-C3WAL7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:471514","l":"Paenalicyclobacillus ferrooxydans","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["TED%3AAF-A0A0N8PN50-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0N8PN50-F1-model_v4_TED03"]]},{"id":"NCBITaxon:474949","l":"Granulicella aggregans","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A7W7ZBP1-F1-model_v4_TED02","TED novel fold AF-A0A7W7ZBP1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:478","l":"Moraxella nonliquefaciens","na":1,"nb":1,"a":[["disease-habitatmech-bacdive-c659c7e939.html","Disease"]],"b":[["TED%3AAF-A0A1B8PJM7-F1-model_v4_TED01","TED novel fold AF-A0A1B8PJM7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:481877","l":"","na":1,"nb":1,"a":[["microsporidian-bto-0003132.html","microsporidian"]],"b":[["TED%3AAF-B7XL67-F1-model_v4_TED01","TED novel fold AF-B7XL67-F1-model_v4_TED01"]]},{"id":"NCBITaxon:485916","l":"Desulfofarcimen acetoxidans DSM 771","na":1,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"]],"b":[["TED%3AAF-C8W2Y9-F1-model_v4_TED01","TED highly-symmetric fold AF-C8W2Y9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:488447","l":"Burkholderia contaminans","na":1,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["TED%3AAF-A0A3N8RI51-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N8RI51-F1-model_v4_TED01"]]},{"id":"NCBITaxon:490899","l":"Desulfurococcus amylolyticus 1221n","na":1,"nb":1,"a":[["shoreline-envo-00000486.html","shoreline"]],"b":[["TED%3AAF-B8D4A7-F1-model_v4_TED01","TED novel fold AF-B8D4A7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:491207","l":"Chryseobacterium oleae","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["TED%3AAF-A0A1I5BFN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5BFN6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:491952","l":"Marinomonas posidonica IVIA-Po-181","na":1,"nb":1,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["proteintraitsmech%3AELIFE109154_SalSyn","Metallophore-associated bifunctional salicylate synthase family"]]},{"id":"NCBITaxon:508767","l":"Clostridium botulinum E3 str. Alaska E43","na":1,"nb":1,"a":[["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["Pfam%3APF04029","2-phosphosulpholactate phosphatase"]]},{"id":"NCBITaxon:508771","l":"Toxoplasma gondii (strain ATCC 50611 / Me49)","na":1,"nb":1,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"]],"b":[["PROSITE%3APS01005","Formate and nitrite transporters signature 1"]]},{"id":"NCBITaxon:52771","l":"Actinomyces howellii","na":1,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["TED%3AAF-A0A3S4R0T4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S4R0T4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:535722","l":"","na":1,"nb":1,"a":[["mountain-pass-envo-00000084.html","mountain pass"]],"b":[["TED%3AAF-E4V3G8-F1-model_v4_TED01","TED highly-symmetric fold AF-E4V3G8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:544406","l":"Helicobacter pylori B128","na":1,"nb":1,"a":[["duodenum-bto-0000365.html","duodenum"]],"b":[["PROSITE%3APS01292","Uncharacterized protein family UPF0036 signature"]]},{"id":"NCBITaxon:544580","l":"Actinomyces oris","na":1,"nb":1,"a":[["archeological-site-envo-00000564.html","archeological site"]],"b":[["TED%3AAF-A0A1Q8WF60-F1-model_v4_TED01","TED novel fold AF-A0A1Q8WF60-F1-model_v4_TED01"]]},{"id":"NCBITaxon:54736","l":"Salmonella bongori","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["TED%3AAF-A0A698W123-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A698W123-F1-model_v4_TED02"]]},{"id":"NCBITaxon:553480","l":"Photorhabdus asymbiotica subsp. asymbiotica ATCC 43949","na":1,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"]],"b":[["Pfam%3APF06804","Outer membrane protein assembly factor BamC-like C-terminal domain"]]},{"id":"NCBITaxon:554290","l":"Salmonella enterica subsp. enterica serovar Paratyphi A str. AKU_12601","na":1,"nb":1,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["Pfam%3APF08254","Threonine leader peptide"]]},{"id":"NCBITaxon:558173","l":"Corynebacterium doosanense CAU 212 = DSM 45436","na":1,"nb":1,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["TED%3AAF-A0A097IJJ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A097IJJ3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:563008","l":"Segatella oris C735","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["TED%3AAF-D7NFV4-F1-model_v4_TED01","TED novel fold AF-D7NFV4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:566549","l":"Corynebacterium matruchotii ATCC 33806","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["TED%3AAF-C0E5R2-F1-model_v4_TED02","TED highly-symmetric fold AF-C0E5R2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:568106","l":"Marinobacterium lutimaris","na":1,"nb":1,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["TED%3AAF-A0A1H5Y6J0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1H5Y6J0-F1-model_v4_TED04"]]},{"id":"NCBITaxon:569860","l":"Methylovirgula ligni","na":1,"nb":1,"a":[["wood-envo-00002040.html","wood"]],"b":[["TED%3AAF-A0A3D9Z4S9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D9Z4S9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:570156","l":"Pseudoalteromonas lipolytica","na":1,"nb":1,"a":[["leaf-lamina-bto-0000719.html","leaf lamina"]],"b":[["TED%3AAF-A0A1I7CGN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I7CGN6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:573065","l":"Asticcacaulis excentricus CB 48","na":1,"nb":1,"a":[["pond-envo-00000033.html","pond"]],"b":[["TED%3AAF-E8RUW8-F1-model_v4_TED01","TED novel fold AF-E8RUW8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:573737","l":"Pandoraea oxalativorans","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["TED%3AAF-A0A0G3IC85-F1-model_v4_TED03","TED novel fold AF-A0A0G3IC85-F1-model_v4_TED03"]]},{"id":"NCBITaxon:582855","l":"Streptomyces haliclonae","na":1,"nb":1,"a":[["shoreline-envo-00000486.html","shoreline"]],"b":[["TED%3AAF-A0A7W7BYP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W7BYP7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:585054","l":"Escherichia fergusonii ATCC 35469","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["Pfam%3APF08364","Bacterial translation initiation factor IF-2 associated region"]]},{"id":"NCBITaxon:5866","l":"Babesia bigemina","na":1,"nb":1,"a":[["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["TED%3AAF-A0A061D3T3-F1-model_v4_TED01","TED novel fold AF-A0A061D3T3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:589924","l":"Ferroglobus placidus DSM 10642","na":1,"nb":1,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["TED%3AAF-D3S1W1-F1-model_v4_TED01","TED novel fold AF-D3S1W1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:592015","l":"Acetomicrobium hydrogeniformans ATCC BAA-1850","na":1,"nb":1,"a":[["village-biome-envo-01000246.html","village biome"]],"b":[["TED%3AAF-A0A0T5X7S6-F1-model_v4_TED02","TED novel fold AF-A0A0T5X7S6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:59203","l":"Salmonella enterica subsp. arizonae","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["TED%3AAF-A0A3S4K1T2-F1-model_v4_TED01","TED novel fold AF-A0A3S4K1T2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:604330","l":"Parafannyhessea umbonata","na":1,"nb":1,"a":[["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"]],"b":[["TED%3AAF-A0A6N7XAR1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N7XAR1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:60894","l":"Saccharopolyspora spinosa","na":1,"nb":1,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF03559","NDP-hexose 2,3-dehydratase"]]},{"id":"NCBITaxon:610130","l":"[Clostridium] saccharolyticum WM1","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["TED%3AAF-D9RA58-F1-model_v4_TED03","TED highly-symmetric fold AF-D9RA58-F1-model_v4_TED03"]]},{"id":"NCBITaxon:61645","l":"Enterobacter asburiae","na":1,"nb":1,"a":[["bone-marrow-bto-0000141.html","bone marrow"]],"b":[["TED%3AAF-A0A8B3U934-F1-model_v4_TED02","TED novel fold AF-A0A8B3U934-F1-model_v4_TED02"]]},{"id":"NCBITaxon:629741","l":"Kingella oralis ATCC 51147","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["TED%3AAF-C4GEH4-F1-model_v4_TED01","TED highly-symmetric fold AF-C4GEH4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:634436","l":"Marisediminitalea aggregata","na":1,"nb":1,"a":[["mangrove-biome-envo-01000181.html","mangrove biome"]],"b":[["TED%3AAF-A0A1M5JV92-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M5JV92-F1-model_v4_TED01"]]},{"id":"NCBITaxon:634500","l":"Erwinia billingiae Eb661","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["PROSITE%3APS01090","TatD deoxyribonuclease family signature 2"]]},{"id":"NCBITaxon:636","l":"Edwardsiella tarda","na":1,"nb":1,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["Pfam%3APF05791","Bacillus haemolytic enterotoxin (HBL)"]]},{"id":"NCBITaxon:638300","l":"Cardiobacterium hominis ATCC 15826","na":1,"nb":1,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["TED%3AAF-C8NBX0-F1-model_v4_TED02","TED novel fold AF-C8NBX0-F1-model_v4_TED02"]]},{"id":"NCBITaxon:639283","l":"Ancylobacter novellus DSM 506","na":1,"nb":1,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["TED%3AAF-D6ZYI9-F1-model_v4_TED01","TED highly-symmetric fold AF-D6ZYI9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:641491","l":"Pseudodesulfovibrio mercurii","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["Pfam%3APF03599","CO dehydrogenase/acetyl-CoA synthase delta subunit"]]},{"id":"NCBITaxon:645463","l":"Clostridioides difficile R20291","na":1,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["Pfam%3APF04392","ABC transporter substrate binding protein"]]},{"id":"NCBITaxon:649760","l":"Segatella oris F0302","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["TED%3AAF-D1QV56-F1-model_v4_TED02","TED novel fold AF-D1QV56-F1-model_v4_TED02"]]},{"id":"NCBITaxon:65","l":"Herpetosiphon aurantiacus","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["Pfam%3APF09520","Type II restriction endonuclease, HinfI"]]},{"id":"NCBITaxon:652103","l":"Rhodopseudomonas palustris DX-1","na":1,"nb":1,"a":[["surface-soil-envo-02000059.html","surface soil"]],"b":[["TED%3AAF-E6VQ23-F1-model_v4_TED02","TED novel fold AF-E6VQ23-F1-model_v4_TED02"]]},{"id":"NCBITaxon:656914","l":"Desulfonispora thiosulfatigenes DSM 11270","na":1,"nb":1,"a":[["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["TED%3AAF-A0A1W1UJ66-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W1UJ66-F1-model_v4_TED01"]]},{"id":"NCBITaxon:659425","l":"Thermoclostridium caenicola","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["TED%3AAF-A0A1M6H7B8-F1-model_v4_TED02","TED novel fold AF-A0A1M6H7B8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:663917","l":"Geobacter sulfurreducens KN400","na":1,"nb":1,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["Pfam%3APF13435","Cytochrome c554 and c-prime"]]},{"id":"NCBITaxon:679191","l":"Prevotella amnii CRIS 21A-A","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["TED%3AAF-E1GW40-F1-model_v4_TED02","TED highly-symmetric fold AF-E1GW40-F1-model_v4_TED02"]]},{"id":"NCBITaxon:679937","l":"Bacteroides coprosuis DSM 18011","na":1,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"]],"b":[["TED%3AAF-F3ZUW4-F1-model_v4_TED02","TED novel fold AF-F3ZUW4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:688269","l":"Pseudothermotoga thermarum DSM 5069","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["TED%3AAF-F7YY41-F1-model_v4_TED02","TED highly-symmetric fold AF-F7YY41-F1-model_v4_TED02"]]},{"id":"NCBITaxon:688867","l":"Ohtaekwangia koreensis","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["TED%3AAF-A0A1T5MFB7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1T5MFB7-F1-model_v4_TED01"]]},{"id":"NCBITaxon:693661","l":"Archaeoglobus veneficus SNP6","na":1,"nb":1,"a":[["black-smoker-envo-00000218.html","black smoker"]],"b":[["TED%3AAF-F2KRD1-F1-model_v4_TED02","TED highly-symmetric fold AF-F2KRD1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:69392","l":"Stenotrophomonas sp.","na":1,"nb":1,"a":[["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["TED%3AAF-A0A6N8APF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8APF4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:694433","l":"Saprospira grandis DSM 2844","na":1,"nb":1,"a":[["carapace-bto-0001701.html","carapace"]],"b":[["TED%3AAF-J0P380-F1-model_v4_TED01","TED highly-symmetric fold AF-J0P380-F1-model_v4_TED01"]]},{"id":"NCBITaxon:69974","l":"Mesorhizobium plurifarium","na":1,"nb":1,"a":[["hair-follicle-outer-root-sheath-bto-0003969.html","hair follicle outer root sheath"]],"b":[["PROSITE%3APS01349","Nodulation protein nodA signature"]]},{"id":"NCBITaxon:702459","l":"Bifidobacterium bifidum PRL2010","na":1,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["TED%3AAF-A0A0H3E8C8-F1-model_v4_TED01","TED novel fold AF-A0A0H3E8C8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:706587","l":"Desulfomonile tiedjei DSM 6799","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["TED%3AAF-I4CB34-F1-model_v4_TED01","TED highly-symmetric fold AF-I4CB34-F1-model_v4_TED01"]]},{"id":"NCBITaxon:722","l":"Actinobacillus seminis","na":1,"nb":1,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"]],"b":[["TED%3AAF-A0A263HFT1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A263HFT1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:7222","l":"Drosophila grimshawi","na":1,"nb":1,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"]],"b":[["TED%3AAF-B4K2M8-F1-model_v4_TED01","TED novel fold AF-B4K2M8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["TED%3AAF-A0A5C7XIK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7XIK2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:726","l":"Haemophilus haemolyticus","na":1,"nb":1,"a":[["trunk-uberon-0002100.html","trunk"]],"b":[["TED%3AAF-A0A1B8PEV3-F1-model_v4_TED01","TED novel fold AF-A0A1B8PEV3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:742013","l":"Delftia sp. Cs1-4","na":1,"nb":1,"a":[["waterfall-envo-00000040.html","waterfall"]],"b":[["TED%3AAF-F6AQI2-F1-model_v4_TED01","TED highly-symmetric fold AF-F6AQI2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:74547","l":"Prochlorococcus marinus str. MIT 9313","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["Pfam%3APF11266","Long-chain fatty aldehyde decarbonylase"]]},{"id":"NCBITaxon:74969","l":"Ferroplasma acidiphilum","na":1,"nb":1,"a":[["factory-envo-01000536.html","factory"]],"b":[["TED%3AAF-A0A7K4FNL3-F1-model_v4_TED01","TED novel fold AF-A0A7K4FNL3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:755731","l":"Clostridium sp. BNL1100","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["TED%3AAF-H2JEL4-F1-model_v4_TED02","TED highly-symmetric fold AF-H2JEL4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:758","l":"Rodentibacter pneumotropicus","na":1,"nb":1,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["TED%3AAF-A0A6L9GQA8-F1-model_v4_TED01","TED novel fold AF-A0A6L9GQA8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:758847","l":"Leptospira santarosai serovar Shermani str. LT 821","na":1,"nb":1,"a":[["renal-tubule-bto-0000343.html","renal tubule"]],"b":[["TED%3AAF-A0A097ES00-F1-model_v4_TED01","TED novel fold AF-A0A097ES00-F1-model_v4_TED01"]]},{"id":"NCBITaxon:761659","l":"Salinibacter ruber M8","na":1,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["TED%3AAF-D5H5E0-F1-model_v4_TED03","TED novel fold AF-D5H5E0-F1-model_v4_TED03"]]},{"id":"NCBITaxon:768066","l":"Halomonas elongata DSM 2581","na":1,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["Pfam%3APF06339","Ectoine synthase"]]},{"id":"NCBITaxon:795797","l":"Halalkalicoccus jeotgali B3","na":1,"nb":1,"a":[["food-product-foodon-00001002.html","food product"]],"b":[["TED%3AAF-D8JCM3-F1-model_v4_TED01","TED highly-symmetric fold AF-D8JCM3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:796937","l":"Peptoanaerobacter stomatis","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["TED%3AAF-G9XC71-F1-model_v4_TED01","TED novel fold AF-G9XC71-F1-model_v4_TED01"]]},{"id":"NCBITaxon:797292","l":"Sphingobacterium alimentarium","na":1,"nb":1,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["TED%3AAF-A0A4R3VZ52-F1-model_v4_TED08","TED novel fold AF-A0A4R3VZ52-F1-model_v4_TED08"]]},{"id":"NCBITaxon:79967","l":"Erwinia pyrifoliae","na":1,"nb":1,"a":[["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["Pfam%3APF09589","HrpA pilus formation protein"]]},{"id":"NCBITaxon:82380","l":"Microbacterium oxydans","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["TED%3AAF-A0A4Y4GD74-F1-model_v4_TED02","TED novel fold AF-A0A4Y4GD74-F1-model_v4_TED02"]]},{"id":"NCBITaxon:839","l":"Xylanibacter ruminicola","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["TED%3AAF-A0A1M7DCP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M7DCP8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:85336","l":"Rothia nasimurium","na":1,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"]],"b":[["proteintraitsmech%3AELIFE109154_EntC","EntC-type catechol biosynthesis isochorismate synthase family"]]},{"id":"NCBITaxon:85831","l":"Bacteroides acidifaciens","na":1,"nb":1,"a":[["colon-bto-0000269.html","colon"]],"b":[["TED%3AAF-A0A7K3MGB4-F1-model_v4_TED01","TED novel fold AF-A0A7K3MGB4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:861865","l":"Edaphosphingomonas laterariae","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["TED%3AAF-A0A239BGP1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A239BGP1-F1-model_v4_TED02"]]},{"id":"NCBITaxon:863372","l":"Herbaspirillum huttiense","na":1,"nb":1,"a":[["factory-envo-01000536.html","factory"]],"b":[["TED%3AAF-A0A4P7ADR5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P7ADR5-F1-model_v4_TED01"]]},{"id":"NCBITaxon:863522","l":"Bryocella elongata","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["TED%3AAF-A0A1H5ZBZ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H5ZBZ9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:865937","l":"Gillisia limnaea DSM 15749","na":1,"nb":1,"a":[["dry-valley-envo-00000128.html","dry valley"]],"b":[["Pfam%3APF27061","Bacterial gasdermin-associated protease"]]},{"id":"NCBITaxon:866499","l":"Cloacibacillus evryensis DSM 19522","na":1,"nb":1,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["TED%3AAF-A0A010YSJ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A010YSJ4-F1-model_v4_TED01"]]},{"id":"NCBITaxon:869210","l":"Marinithermus hydrothermalis DSM 14884","na":1,"nb":1,"a":[["seamount-envo-00000264.html","seamount"]],"b":[["TED%3AAF-F2NQ34-F1-model_v4_TED01","TED novel fold AF-F2NQ34-F1-model_v4_TED01"]]},{"id":"NCBITaxon:883","l":"Nitratidesulfovibrio vulgaris str. 'Miyazaki F'","na":1,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"]],"b":[["TED%3AAF-B8DPA3-F1-model_v4_TED01","TED novel fold AF-B8DPA3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:888743","l":"Prevotella multiformis DSM 16608","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["TED%3AAF-F0F5W8-F1-model_v4_TED02","TED novel fold AF-F0F5W8-F1-model_v4_TED02"]]},{"id":"NCBITaxon:926690","l":"Haloplanus natans DSM 17983","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["Pfam%3APF28161","Fusexin 1"]]},{"id":"NCBITaxon:930943","l":"Saccharolobus islandicus HVE10/4","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["TED%3AAF-F0NJI0-F1-model_v4_TED01","TED novel fold AF-F0NJI0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:93222","l":"Pandoraea sputorum","na":1,"nb":1,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"]],"b":[["TED%3AAF-A0A5E5BHU5-F1-model_v4_TED02","TED novel fold AF-A0A5E5BHU5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:936138","l":"Phorcysia thermohydrogeniphila","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["TED%3AAF-A0A4V2PDB0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A4V2PDB0-F1-model_v4_TED04"]]},{"id":"NCBITaxon:9483","l":"Callithrix jacchus","na":1,"nb":1,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["Pfam%3APF21049","Cilia- and flagella-associated protein 69, ARM repeat"]]},{"id":"NCBITaxon:94868","l":"Lacrimispora algidixylanolytica","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["TED%3AAF-A0A419SY83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A419SY83-F1-model_v4_TED01"]]},{"id":"NCBITaxon:95485","l":"Burkholderia stabilis","na":1,"nb":1,"a":[["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["TED%3AAF-A0A4V1PSL6-F1-model_v4_TED02","TED novel fold AF-A0A4V1PSL6-F1-model_v4_TED02"]]},{"id":"NCBITaxon:980271","l":"Aporhodopirellula rubra","na":1,"nb":1,"a":[["epibiont-habitatmech-bacdive-f4eb470a03.html","Epibiont"]],"b":[["TED%3AAF-A0A7W5H7H8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7W5H7H8-F1-model_v4_TED03"]]},{"id":"NCBITaxon:993414","l":"Naumannella halotolerans","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["TED%3AAF-A0A4R7J3W9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R7J3W9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:999552","l":"Leisingera methylohalidivorans DSM 14336","na":1,"nb":1,"a":[["marine-neritic-zone-envo-00000206.html","marine neritic zone"]],"b":[["TED%3AAF-V9VZA3-F1-model_v4_TED02","TED novel fold AF-V9VZA3-F1-model_v4_TED02"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/HabitatMech--TaxonMech.json b/assets/fleet/edges/HabitatMech--TaxonMech.json index 8d9930a..1b0f0e4 100644 --- a/assets/fleet/edges/HabitatMech--TaxonMech.json +++ b/assets/fleet/edges/HabitatMech--TaxonMech.json @@ -1 +1 @@ -{"a":"HabitatMech","b":"TaxonMech","base":{"HabitatMech":"https://culturebotai.github.io/HabitatMech/pages/habitats/","TaxonMech":"https://culturebotai.github.io/TaxonMech/pages/taxon.html?id="},"n":6423,"by":{"NCBITaxon":6423},"terms":[{"id":"NCBITaxon:2","l":"Bacteria","na":40,"nb":605695,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["factory-envo-01000536.html","factory"],["adult-bto-0001043.html","adult"]],"b":[["NCBITaxon%3A119160","2,3-D degrading bacterium NHC2"],["NCBITaxon%3A119159","2,3-D degrading bacterium NHG3"],["NCBITaxon%3A103498","2,4-D-degrading bacterium 001"],["NCBITaxon%3A103499","2,4-D-degrading bacterium 007"],["NCBITaxon%3A103492","2,4-D-degrading bacterium 010"],["NCBITaxon%3A103495","2,4-D-degrading bacterium 012"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":40,"nb":4740,"a":[["liquid-water-envo-00002006.html","liquid water"],["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["laboratory-facility-envo-01001406.html","laboratory facility"],["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["biofilm-bto-0002690.html","biofilm"]],"b":[["NCBITaxon%3A475088","Methanosphaerula palustris"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1389955","Escherichia coli ATCC 35150"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A574","Klebsiella pneumoniae subsp. ozaenae"],["NCBITaxon%3A1218098","Klebsiella pneumoniae subsp. ozaenae NBRC 105683"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":36,"nb":3868,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["bay-envo-00000032.html","bay"],["freshwater-biome-envo-00000873.html","freshwater biome"],["liquid-water-envo-00002006.html","liquid water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A196023","Aeromonas hydrophila subsp. hydrophila"],["NCBITaxon%3A380703","Aeromonas hydrophila subsp. hydrophila ATCC 7966"],["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A35703","Citrobacter amalonaticus"],["NCBITaxon%3A163202","Corynebacterium appendicis"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":28,"nb":557,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["liquid-water-envo-00002006.html","liquid water"],["watercourse-envo-00000029.html","watercourse"],["compost-envo-00002170.html","compost"],["hospital-envo-00002173.html","hospital"],["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A2073169","Chromobacterium alticapitis"],["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1454219","Pseudomonas aeruginosa 059A"],["NCBITaxon%3A1421538","Pseudomonas aeruginosa 0812"],["NCBITaxon%3A1421545","Pseudomonas aeruginosa 0822"],["NCBITaxon%3A1421531","Pseudomonas aeruginosa 0C2E"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":27,"nb":168,"a":[["small-river-biome-envo-00000890.html","small river biome"],["factory-envo-01000536.html","factory"],["organic-waste-material-envo-00002873.html","organic waste material"],["leaf-po-0025034.html","leaf"],["milk-uberon-0001913.html","milk"],["rhizosphere-envo-00005801.html","rhizosphere"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A572264","Bacillus cereus 03BB102"],["NCBITaxon%3A451709","Bacillus cereus 03BB108"],["NCBITaxon%3A526967","Bacillus cereus 172560W"],["NCBITaxon%3A363751","Bacillus cereus 31673"],["NCBITaxon%3A526979","Bacillus cereus 95/8201"]]},{"id":"NCBITaxon:1485","l":"Clostridium","na":26,"nb":3036,"a":[["biofilm-envo-00002034.html","biofilm"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["alimentary-canal-bto-0000058.html","alimentary canal"],["colon-bto-0000269.html","colon"]],"b":[["NCBITaxon%3A288965","Acetivibrio clariflavus"],["NCBITaxon%3A720554","Acetivibrio clariflavus DSM 19732"],["NCBITaxon%3A461876","Alkaliphilus oremlandii"],["NCBITaxon%3A259063","Anaerocolumna jejuensis"],["NCBITaxon%3A1121322","Anaerocolumna jejuensis DSM 15929"],["NCBITaxon%3A264463","Anaerosporobacter mobilis"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":25,"nb":118,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-water-body-envo-00001999.html","marine water body"],["sea-water-envo-00002149.html","sea water"],["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["NCBITaxon%3A69966","Macrococcoides caseolyticum"],["NCBITaxon%3A1822","Nocardia vaccinii"],["NCBITaxon%3A1210098","Nocardia vaccinii NBRC 15922"],["NCBITaxon%3A1282","Staphylococcus epidermidis"],["NCBITaxon%3A1235440","Staphylococcus epidermidis 12142587"],["NCBITaxon%3A1000590","Staphylococcus epidermidis 14.1.R1.SE"]]},{"id":"NCBITaxon:1279","l":"Staphylococcus","na":23,"nb":9540,"a":[["adult-bto-0001043.html","adult"],["cecum-bto-0000166.html","cecum"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["head-bto-0000282.html","head"]],"b":[["NCBITaxon%3A196884","Arctic sea ice bacterum ARK9973"],["NCBITaxon%3A91995","bacterium #2 from Psoroptes ovis"],["NCBITaxon%3A2875764","Macrococcus armenti"],["NCBITaxon%3A150056","Mammaliicoccus fleurettii"],["NCBITaxon%3A42858","Mammaliicoccus lentus"],["NCBITaxon%3A246568","marine bacterium 13691"]]},{"id":"NCBITaxon:1301","l":"Streptococcus","na":23,"nb":4599,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["head-bto-0000282.html","head"]],"b":[["NCBITaxon%3A2838763","Candidatus Streptococcus faecavium"],["NCBITaxon%3A3711814","Candidatus Streptococcus gullae"],["NCBITaxon%3A2962908","Candidatus Streptococcus sp. bin.001"],["NCBITaxon%3A33945","Enterococcus avium"],["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A1358","Lactococcus lactis"]]},{"id":"NCBITaxon:1328","l":"Streptococcus anginosus","na":21,"nb":23,"a":[["bone-element-uberon-0001474.html","bone element"],["brain-bto-0000142.html","brain"],["dental-plaque-uberon-0016482.html","dental plaque"],["dorsum-bto-0001713.html","dorsum"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["forearm-bto-0001447.html","forearm"]],"b":[["NCBITaxon%3A1328","Streptococcus anginosus"],["NCBITaxon%3A1163301","Streptococcus anginosus 1505"],["NCBITaxon%3A742820","Streptococcus anginosus 1_2_62CV"],["NCBITaxon%3A862970","Streptococcus anginosus C1051"],["NCBITaxon%3A862971","Streptococcus anginosus C238"],["NCBITaxon%3A1403946","Streptococcus anginosus DORA_7"]]},{"id":"NCBITaxon:1578","l":"Lactobacillus","na":20,"nb":2379,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["blood-bto-0000089.html","blood"],["brain-bto-0000142.html","brain"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["hand-bto-0004668.html","hand"]],"b":[["NCBITaxon%3A2838636","Candidatus Lactobacillus pullistercoris"],["NCBITaxon%3A2838724","Candidatus Paralactobacillus gallistercoris"],["NCBITaxon%3A1612","Companilactobacillus farciminis"],["NCBITaxon%3A3435293","Faecalibacterium langellae"],["NCBITaxon%3A1614","Fructilactobacillus fructivorans"],["NCBITaxon%3A1597","Lacticaseibacillus paracasei"]]},{"id":"NCBITaxon:1386","l":"Bacillus","na":19,"nb":33976,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["crop-bto-0000301.html","crop"],["dorsum-bto-0001713.html","dorsum"],["hand-bto-0004668.html","hand"],["head-bto-0000282.html","head"],["juvenile-bto-0002168.html","juvenile"]],"b":[["NCBITaxon%3A208551","alkaliphilic bacterium AF112"],["NCBITaxon%3A33934","Anoxybacillus flavithermus"],["NCBITaxon%3A1185649","Anoxybacillus flavithermus subsp. flavithermus"],["NCBITaxon%3A28030","Bacillus acidopullulyticus"],["NCBITaxon%3A33017","Bacillus acidovorans"],["NCBITaxon%3A203540","Bacillus aeolius"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":19,"nb":19,"a":[["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["bone-element-uberon-0001474.html","bone element"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["NCBITaxon%3A1402","Bacillus licheniformis"],["NCBITaxon%3A1169411","Bacillus licheniformis 10-1-A"],["NCBITaxon%3A44097","Bacillus licheniformis 2709"],["NCBITaxon%3A1169412","Bacillus licheniformis 5-2-D"],["NCBITaxon%3A1368424","Bacillus licheniformis CG-B52"],["NCBITaxon%3A1232672","Bacillus licheniformis CGMCC 3963"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":18,"nb":79,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["NCBITaxon%3A1931223","Caballeronia sp."],["NCBITaxon%3A89065","Pseudomonas abietaniphila"],["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1123912","Pseudomonas auricularis"],["NCBITaxon%3A930166","Pseudomonas brassicacearum"],["NCBITaxon%3A129817","Pseudomonas brenneri"]]},{"id":"NCBITaxon:1263","l":"Ruminococcus","na":17,"nb":405,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["alimentary-canal-bto-0000058.html","alimentary canal"],["cecum-bto-0000166.html","cecum"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"]],"b":[["NCBITaxon%3A2838748","Candidatus Ruminococcus avistercoris"],["NCBITaxon%3A3083130","Candidatus Ruminococcus equi"],["NCBITaxon%3A2838749","Candidatus Ruminococcus gallistercoris"],["NCBITaxon%3A3401956","Candidatus Ruminococcus hominiciens"],["NCBITaxon%3A2838750","Candidatus Ruminococcus intestinipullorum"],["NCBITaxon%3A3400595","Candidatus Ruminococcus primaciens"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":17,"nb":375,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["hospital-envo-00002173.html","hospital"],["egg-food-product-foodon-00001274.html","egg food product"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A1352","Enterococcus faecium"],["NCBITaxon%3A1391465","Enterococcus faecium 10/96A"],["NCBITaxon%3A1259824","Enterococcus faecium 13.SD.W.09"],["NCBITaxon%3A1429401","Enterococcus faecium 17282"],["NCBITaxon%3A565659","Enterococcus faecium 1,141,733"]]},{"id":"NCBITaxon:135621","l":"Pseudomonadaceae","na":16,"nb":33948,"a":[["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["ileum-bto-0000620.html","ileum"],["intestine-bto-0000648.html","intestine"],["juvenile-bto-0002168.html","juvenile"],["leaf-bto-0000713.html","leaf"]],"b":[["NCBITaxon%3A300685","antibiotic-resistant bacterium RA4"],["NCBITaxon%3A300699","antibiotic-resistant bacterium RD5"],["NCBITaxon%3A300700","antibiotic-resistant bacterium RD6"],["NCBITaxon%3A300701","antibiotic-resistant bacterium RD8"],["NCBITaxon%3A43263","Aquipseudomonas alcaligenes"],["NCBITaxon%3A1405803","Aquipseudomonas alcaligenes MRY13-0052"]]},{"id":"NCBITaxon:186802","l":"Eubacteriales","na":16,"nb":7591,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["alimentary-canal-bto-0000058.html","alimentary canal"],["blood-bto-0000089.html","blood"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"]],"b":[["NCBITaxon%3A1766203","Abyssisolibacter fermentans"],["NCBITaxon%3A2684878","Abyssisolibacter sp."],["NCBITaxon%3A3035615","Abyssisolibacter sp. ZYX002"],["NCBITaxon%3A2912264","Acetanaerobacter sp."],["NCBITaxon%3A258515","Acetanaerobacterium elongatum"],["NCBITaxon%3A1872089","Acetanaerobacterium sp."]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":17,"nb":16,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["fruit-bto-0000486.html","fruit"],["leaf-po-0025034.html","leaf"],["rhizosphere-envo-00005801.html","rhizosphere"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["NCBITaxon%3A114136","Paenibacillus jamilae"],["NCBITaxon%3A225917","Paenibacillus massiliensis"],["NCBITaxon%3A1406","Paenibacillus polymyxa"],["NCBITaxon%3A1333863","Paenibacillus polymyxa 1-43"],["NCBITaxon%3A1414587","Paenibacillus polymyxa A18"],["NCBITaxon%3A1206104","Paenibacillus polymyxa ATCC 12321"]]},{"id":"NCBITaxon:117563","l":"Granulicatella","na":15,"nb":54,"a":[["cecum-bto-0000166.html","cecum"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["head-bto-0000282.html","head"],["intestine-bto-0000648.html","intestine"]],"b":[["NCBITaxon%3A2962907","Candidatus Granulicatella gullae"],["NCBITaxon%3A46124","Granulicatella adiacens"],["NCBITaxon%3A638301","Granulicatella adiacens ATCC 49175"],["NCBITaxon%3A1073361","Granulicatella adiacens CC94D"],["NCBITaxon%3A137733","Granulicatella balaenopterae"],["NCBITaxon%3A137732","Granulicatella elegans"]]},{"id":"NCBITaxon:40324","l":"Stenotrophomonas maltophilia","na":15,"nb":44,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["catheter-device-ncit-c50344.html","Catheter Device"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["seedling-bto-0001228.html","seedling"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["NCBITaxon%3A13689","Sphingomonas paucimobilis"],["NCBITaxon%3A1292134","Stenotrophomonas africana"],["NCBITaxon%3A3384461","Stenotrophomonas beteli"],["NCBITaxon%3A86189","Stenotrophomonas hibiscicola"],["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A1288954","Stenotrophomonas maltophilia 503"]]},{"id":"NCBITaxon:1045010","l":"Escherichia coli O157","na":18,"nb":15,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["liquid-water-envo-00002006.html","liquid water"],["animal-house-envo-00003040.html","animal house"],["river-envo-00000022.html","river"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biofilm-material-envo-01000156.html","biofilm material"]],"b":[["NCBITaxon%3A1051347","Escherichia coli 3.4880"],["NCBITaxon%3A1051348","Escherichia coli 7.1982"],["NCBITaxon%3A1051346","Escherichia coli 95.0083"],["NCBITaxon%3A1051353","Escherichia coli ATCC 700728"],["NCBITaxon%3A1045010","Escherichia coli O157"],["NCBITaxon%3A1446606","Escherichia coli O157: str. 2010EL-2044"]]},{"id":"NCBITaxon:1268","l":"Micrococcaceae","na":14,"nb":10291,"a":[["cecum-bto-0000166.html","cecum"],["crop-bto-0000301.html","crop"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["leaf-bto-0000713.html","leaf"]],"b":[["NCBITaxon%3A291968","Acaricomes phytoseiuli"],["NCBITaxon%3A1120917","Acaricomes phytoseiuli DSM 14247"],["NCBITaxon%3A1872088","Acaricomes sp."],["NCBITaxon%3A1026830","Acaricomes sp. RHF117"],["NCBITaxon%3A196885","Arctic sea ice bacterium ARK9983"],["NCBITaxon%3A37921","Arthrobacter agilis"]]},{"id":"NCBITaxon:13687","l":"Sphingomonas","na":14,"nb":4913,"a":[["crop-bto-0000301.html","crop"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["ileum-bto-0000620.html","ileum"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"]],"b":[["NCBITaxon%3A196160","Arctic sea ice bacterium ARK10016"],["NCBITaxon%3A3121369","Candidatus Sphingomonas colombiensis"],["NCBITaxon%3A2838760","Candidatus Sphingomonas excrementigallinarum"],["NCBITaxon%3A3121370","Candidatus Sphingomonas phytovorans"],["NCBITaxon%3A1996","Microtetraspora glauca"],["NCBITaxon%3A135719","Sphingobium amiense"]]},{"id":"NCBITaxon:171549","l":"Bacteroidales","na":14,"nb":4513,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["alimentary-canal-bto-0000058.html","alimentary canal"],["blood-bto-0000089.html","blood"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"]],"b":[["NCBITaxon%3A979970","Acetobacteroides hydrogenigenes"],["NCBITaxon%3A1872095","Acetobacteroides sp."],["NCBITaxon%3A2764708","Acetobacteroides sp. MIZ14"],["NCBITaxon%3A1653170","Acetofilamentum rigidum"],["NCBITaxon%3A1872096","Acetofilamentum sp."],["NCBITaxon%3A1653171","Acetothermus paucivorans"]]},{"id":"NCBITaxon:173","l":"Leptospira interrogans","na":14,"nb":312,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["small-river-biome-envo-00000890.html","small river biome"],["surface-water-envo-00002042.html","surface water"]],"b":[["NCBITaxon%3A173","Leptospira interrogans"],["NCBITaxon%3A860644","Leptospira interrogans serovar Akiyami"],["NCBITaxon%3A428408","Leptospira interrogans serovar Anhui"],["NCBITaxon%3A211882","Leptospira interrogans serovar Australis"],["NCBITaxon%3A1085541","Leptospira interrogans serovar Australis str. 200703203"],["NCBITaxon%3A1308441","Leptospira interrogans serovar Australis str. LT2080"]]},{"id":"NCBITaxon:1590","l":"Lactiplantibacillus plantarum","na":14,"nb":36,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["food-fermented-foodon-00001258.html","food (fermented)"],["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"],["breast-bto-0000149.html","breast"],["colonic-epithelium-bto-0001709.html","colonic epithelium"],["epithelial-cell-bto-0000414.html","epithelial cell"]],"b":[["NCBITaxon%3A271881","Lactiplantibacillus argentoratensis"],["NCBITaxon%3A1423831","Lactiplantibacillus argentoratensis DSM 16365"],["NCBITaxon%3A60520","Lactiplantibacillus paraplantarum"],["NCBITaxon%3A1590","Lactiplantibacillus plantarum"],["NCBITaxon%3A1327988","Lactiplantibacillus plantarum 16"],["NCBITaxon%3A1399793","Lactiplantibacillus plantarum 19L3"]]},{"id":"NCBITaxon:1598","l":"Limosilactobacillus reuteri","na":14,"nb":23,"a":[["cecum-mucosa-bto-0000213.html","cecum mucosa"],["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["ileum-bto-0000620.html","ileum"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"]],"b":[["NCBITaxon%3A1581","Lentilactobacillus buchneri"],["NCBITaxon%3A2767931","Lentilactobacillus sp."],["NCBITaxon%3A1613","Limosilactobacillus fermentum"],["NCBITaxon%3A1598","Limosilactobacillus reuteri"],["NCBITaxon%3A1273150","Limosilactobacillus reuteri 1063"],["NCBITaxon%3A525341","Limosilactobacillus reuteri CF48-3A"]]},{"id":"NCBITaxon:1580","l":"Levilactobacillus brevis","na":14,"nb":17,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["organic-waste-material-envo-00002873.html","organic waste material"],["research-facility-envo-00000469.html","research facility"],["food-fermented-foodon-00001258.html","food (fermented)"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["caco-2-cell-bto-0000195.html","CACO-2 cell"]],"b":[["NCBITaxon%3A1590","Lactiplantibacillus plantarum"],["NCBITaxon%3A2767846","Lactiplantibacillus sp."],["NCBITaxon%3A1591","Lactobacillus sp."],["NCBITaxon%3A1581","Lentilactobacillus buchneri"],["NCBITaxon%3A1580","Levilactobacillus brevis"],["NCBITaxon%3A1384064","Levilactobacillus brevis AG48"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":14,"nb":16,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["compost-envo-00002170.html","compost"],["organic-waste-material-envo-00002873.html","organic waste material"],["larva-bto-0000707.html","larva"],["rhizosphere-envo-00005801.html","rhizosphere"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A1408","Bacillus pumilus"],["NCBITaxon%3A536229","Bacillus pumilus ATCC 7061"],["NCBITaxon%3A1227811","Bacillus pumilus BA06"],["NCBITaxon%3A1189615","Bacillus pumilus BL8"],["NCBITaxon%3A1350468","Bacillus pumilus CCMA-560"],["NCBITaxon%3A1330463","Bacillus pumilus CIMFR"]]},{"id":"NCBITaxon:1350","l":"Enterococcus","na":13,"nb":4515,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["dorsum-bto-0001713.html","dorsum"],["hand-bto-0004668.html","hand"],["intestine-bto-0000648.html","intestine"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"]],"b":[["NCBITaxon%3A2838561","Candidatus Enterococcus avicola"],["NCBITaxon%3A1834193","Candidatus Enterococcus clewellii"],["NCBITaxon%3A2815329","Candidatus Enterococcus courvalinii"],["NCBITaxon%3A1834192","Candidatus Enterococcus dunnyi"],["NCBITaxon%3A2815324","Candidatus Enterococcus ferrettii"],["NCBITaxon%3A1857217","Candidatus Enterococcus huntleyi"]]},{"id":"NCBITaxon:186803","l":"Lachnospiraceae","na":13,"nb":2553,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["alimentary-canal-bto-0000058.html","alimentary canal"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["ileum-bto-0000620.html","ileum"]],"b":[["NCBITaxon%3A2941233","Acetatifactor aquisgranensis"],["NCBITaxon%3A879566","Acetatifactor muris"],["NCBITaxon%3A1872090","Acetatifactor sp."],["NCBITaxon%3A2908897","Acetatifactor sp. DFI.5.50"],["NCBITaxon%3A2382","Acetitomaculum ruminis"],["NCBITaxon%3A1120918","Acetitomaculum ruminis DSM 5522"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":13,"nb":422,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["neutrophil-bto-0000130.html","neutrophil"],["rectum-bto-0001158.html","rectum"],["spleen-bto-0001281.html","spleen"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["NCBITaxon%3A1653844","Erwinia carnegieana"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A2058152","Klebsiella grimontii"],["NCBITaxon%3A54291","Klebsiella ornithinolytica"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A1443592","Klebsiella pneumoniae 07A044"]]},{"id":"NCBITaxon:1357","l":"Lactococcus","na":13,"nb":383,"a":[["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["ileum-bto-0000620.html","ileum"],["intestine-bto-0000648.html","intestine"],["mouth-bto-0001090.html","mouth"]],"b":[["NCBITaxon%3A2419773","Lactococcus allomyrinae"],["NCBITaxon%3A1359","Lactococcus cremoris"],["NCBITaxon%3A1286879","Lactococcus cremoris HB61"],["NCBITaxon%3A1286880","Lactococcus cremoris HB63"],["NCBITaxon%3A2816960","Lactococcus cremoris subsp. cremoris"],["NCBITaxon%3A1104322","Lactococcus cremoris subsp. cremoris A76"]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":12,"nb":389,"a":[["hospital-envo-00002173.html","hospital"],["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["epithelial-cell-bto-0000414.html","epithelial cell"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["meninx-bto-0000144.html","meninx"]],"b":[["NCBITaxon%3A1503055","Burkholderia territorii"],["NCBITaxon%3A1270","Micrococcus luteus"],["NCBITaxon%3A465515","Micrococcus luteus NCTC 2665"],["NCBITaxon%3A33051","Sphingomonas sanguinis"],["NCBITaxon%3A1219054","Sphingomonas sanguinis NBRC 13937"],["NCBITaxon%3A1313","Streptococcus pneumoniae"]]},{"id":"NCBITaxon:102234","l":"Cyanobacterium","na":12,"nb":127,"a":[["cecum-bto-0000166.html","cecum"],["colon-bto-0000269.html","colon"],["gut-bto-0000545.html","gut"],["head-bto-0000282.html","head"],["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"]],"b":[["NCBITaxon%3A379064","Cyanobacterium aponinum"],["NCBITaxon%3A2676140","Cyanobacterium aponinum 0216"],["NCBITaxon%3A2862632","Cyanobacterium aponinum 0TAC 3"],["NCBITaxon%3A2862635","Cyanobacterium aponinum 0TAC 8"],["NCBITaxon%3A2867950","Cyanobacterium aponinum 11TAC23"],["NCBITaxon%3A3090662","Cyanobacterium aponinum AL20115"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":33,"nb":12,"a":[["biofilm-envo-00002034.html","biofilm"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["pond-water-envo-00002228.html","pond water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["water-body-envo-00000063.html","water body"]],"b":[["NCBITaxon%3A72000","Kocuria rhizophila"],["NCBITaxon%3A378753","Kocuria rhizophila DC2201"],["NCBITaxon%3A1272","Kocuria varians"],["NCBITaxon%3A1270","Micrococcus luteus"],["NCBITaxon%3A1357403","Micrococcus luteus CD1_FAA_NB_1"],["NCBITaxon%3A935864","Micrococcus luteus J28"]]},{"id":"NCBITaxon:1596","l":"Lactobacillus gasseri","na":12,"nb":29,"a":[["biofilm-envo-00002034.html","biofilm"],["catheter-device-ncit-c50344.html","Catheter Device"],["city-envo-00000856.html","city"],["egg-food-product-foodon-00001274.html","egg food product"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"]],"b":[["NCBITaxon%3A305793","Companilactobacillus nantensis"],["NCBITaxon%3A1596","Lactobacillus gasseri"],["NCBITaxon%3A440498","Lactobacillus gasseri 1151"],["NCBITaxon%3A1403312","Lactobacillus gasseri 130918"],["NCBITaxon%3A1346615","Lactobacillus gasseri 2016"],["NCBITaxon%3A630527","Lactobacillus gasseri 202-4"]]},{"id":"NCBITaxon:1117","l":"Cyanobacteriota","na":11,"nb":36120,"a":[["cecum-bto-0000166.html","cecum"],["colon-bto-0000269.html","colon"],["gut-bto-0000545.html","gut"],["head-bto-0000282.html","head"],["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"]],"b":[["NCBITaxon%3A3106961","Acaryochloridaceae cyanobacterium"],["NCBITaxon%3A2720417","Acaryochloridaceae cyanobacterium CSU_3_4"],["NCBITaxon%3A2720418","Acaryochloridaceae cyanobacterium CSU_5_19"],["NCBITaxon%3A2964578","Acaryochloridaceae cyanobacterium OTE_25_metabat_464"],["NCBITaxon%3A2964579","Acaryochloridaceae cyanobacterium OTE_75_metabat_521"],["NCBITaxon%3A2720424","Acaryochloridaceae cyanobacterium RL_2_7"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":11,"nb":124,"a":[["pond-water-envo-00002228.html","pond water"],["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["laboratory-facility-envo-01001406.html","laboratory facility"],["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["bone-element-uberon-0001474.html","bone element"],["juvenile-bto-0002168.html","juvenile"]],"b":[["NCBITaxon%3A1748","Acidipropionibacterium acidipropionici"],["NCBITaxon%3A1171373","Acidipropionibacterium acidipropionici ATCC 4875"],["NCBITaxon%3A1750","Arachnia propionica"],["NCBITaxon%3A38288","Corynebacterium genitalium"],["NCBITaxon%3A585529","Corynebacterium genitalium ATCC 33030"],["NCBITaxon%3A1747","Cutibacterium acnes"]]},{"id":"NCBITaxon:1380","l":"Atopobium","na":11,"nb":61,"a":[["alimentary-canal-bto-0000058.html","alimentary canal"],["dorsum-bto-0001713.html","dorsum"],["intestine-bto-0000648.html","intestine"],["mouth-bto-0001090.html","mouth"],["rumen-uberon-0007365.html","rumen"],["saliva-bto-0001202.html","saliva"]],"b":[["NCBITaxon%3A1393034","Atopobium deltae"],["NCBITaxon%3A39487","Atopobium fossor"],["NCBITaxon%3A1121023","Atopobium fossor DSM 15642"],["NCBITaxon%3A2094145","Atopobium massiliense"],["NCBITaxon%3A1381","Atopobium minutum"],["NCBITaxon%3A997872","Atopobium minutum 10063974"]]},{"id":"NCBITaxon:1378","l":"Gemella","na":11,"nb":60,"a":[["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["intestine-bto-0000648.html","intestine"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"]],"b":[["NCBITaxon%3A84136","Gemella bergeri"],["NCBITaxon%3A1321820","Gemella bergeri ATCC 700627"],["NCBITaxon%3A150240","Gemella cuniculi"],["NCBITaxon%3A1121914","Gemella cuniculi DSM 15828"],["NCBITaxon%3A1379","Gemella haemolysans"],["NCBITaxon%3A546270","Gemella haemolysans ATCC 10379"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":11,"nb":53,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["resting-cell-bto-0001170.html","resting cell"],["seedling-bto-0001228.html","seedling"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A47920","Acidovorax delafieldii"],["NCBITaxon%3A301","Ectopseudomonas oleovorans"],["NCBITaxon%3A29581","Janthinobacterium lividum"],["NCBITaxon%3A294","Pseudomonas fluorescens"],["NCBITaxon%3A77298","Pseudomonas jessenii"],["NCBITaxon%3A1968891","Pseudomonas jessenii subsp. pseudoputida"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":11,"nb":32,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["fermentation-starter-envo-03600040.html","fermentation starter"],["fruit-bto-0000486.html","fruit"],["mammary-epithelial-cell-bto-0004300.html","mammary epithelial cell"],["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["NCBITaxon%3A1359","Lactococcus cremoris"],["NCBITaxon%3A2816960","Lactococcus cremoris subsp. cremoris"],["NCBITaxon%3A1348655","Lactococcus cremoris subsp. cremoris NBRC 100676"],["NCBITaxon%3A1363","Lactococcus garvieae"],["NCBITaxon%3A1358","Lactococcus lactis"],["NCBITaxon%3A2731284","Lactococcus lactis (ex Latorre-Guzman et al. 1977) Schleifer et al. 1986"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":16,"nb":11,"a":[["fresh-water-envo-00002011.html","fresh water"],["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"]],"b":[["NCBITaxon%3A1063","Cereibacter sphaeroides"],["NCBITaxon%3A272943","Cereibacter sphaeroides 2.4.1"],["NCBITaxon%3A349102","Cereibacter sphaeroides ATCC 17025"],["NCBITaxon%3A349101","Cereibacter sphaeroides ATCC 17029"],["NCBITaxon%3A39723","Cereibacter sphaeroides f. sp. denitrificans"],["NCBITaxon%3A633146","Cereibacter sphaeroides GA"]]},{"id":"NCBITaxon:119852","l":"Oscillospira","na":12,"nb":11,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["cecum-bto-0000166.html","cecum"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["ileum-bto-0000620.html","ileum"]],"b":[["NCBITaxon%3A431589","cf. Oscillospira sp. BA04013493"],["NCBITaxon%3A119853","Oscillospira guilliermondii"],["NCBITaxon%3A227395","Oscillospira sp. A"],["NCBITaxon%3A227394","Oscillospira sp. B"],["NCBITaxon%3A227393","Oscillospira sp. C"],["NCBITaxon%3A227392","Oscillospira sp. D"]]},{"id":"NCBITaxon:543","l":"Enterobacteriaceae","na":10,"nb":33950,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"],["midgut-bto-0000863.html","midgut"]],"b":[["NCBITaxon%3A240150","alkaliphilic bacterium N10"],["NCBITaxon%3A3049091","Apirhabdus apintestini"],["NCBITaxon%3A64559","[Aquamonas] haywardensis"],["NCBITaxon%3A58338","Aranicola proteolyticus"],["NCBITaxon%3A1150713","Aranicola sp. 9AL34"],["NCBITaxon%3A707055","Aranicola sp. Cf3F"]]},{"id":"NCBITaxon:286","l":"Pseudomonas","na":10,"nb":33485,"a":[["heart-bto-0000562.html","heart"],["juvenile-bto-0002168.html","juvenile"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"],["pseudostem-bto-0005992.html","pseudostem"]],"b":[["NCBITaxon%3A196824","Arctic sea ice associated bacterium ARK10142"],["NCBITaxon%3A196823","Arctic sea ice bacterium ARK10061"],["NCBITaxon%3A196825","Arctic sea ice bacterium ARK9971"],["NCBITaxon%3A196826","Arctic sea ice bacterium ARK9995"],["NCBITaxon%3A215583","bacterium G5"],["NCBITaxon%3A1871086","Brevundimonas sp."]]},{"id":"NCBITaxon:1716","l":"Corynebacterium","na":10,"nb":1413,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["ileum-bto-0000620.html","ileum"],["juvenile-bto-0002168.html","juvenile"],["mucosa-bto-0000886.html","mucosa"],["nectar-bto-0000537.html","nectar"]],"b":[["NCBITaxon%3A41986","Agromyces mediolanus"],["NCBITaxon%3A1667","Arthrobacter sp."],["NCBITaxon%3A92706","[Brevibacterium] flavum"],["NCBITaxon%3A1232385","[Brevibacterium] flavum ZL-1"],["NCBITaxon%3A2838527","Candidatus Corynebacterium avicola"],["NCBITaxon%3A2838528","Candidatus Corynebacterium faecigallinarum"]]},{"id":"NCBITaxon:29","l":"Myxococcales","na":10,"nb":725,"a":[["column-bto-0005692.html","column"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["oil-secretion-bto-0005373.html","oil secretion"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["co-culture-habitatmech-bacdive-ff945d8a69.html","Co-culture"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"]],"b":[["NCBITaxon%3A1450165","Aggregicoccus edonensis"],["NCBITaxon%3A1872414","Aggregicoccus sp."],["NCBITaxon%3A2583808","Aggregicoccus sp. 17bor-14"],["NCBITaxon%3A2995309","Allostigmatella ashevillensis"],["NCBITaxon%3A41","Allostigmatella aurantiaca"],["NCBITaxon%3A378806","Allostigmatella aurantiaca DW4/3-1"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":10,"nb":216,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"]],"b":[["NCBITaxon%3A863522","Bryocella elongata"],["NCBITaxon%3A195","Campylobacter coli"],["NCBITaxon%3A197","Campylobacter jejuni"],["NCBITaxon%3A1365653","Campylobacter jejuni 10186"],["NCBITaxon%3A1365189","Campylobacter jejuni 10187"],["NCBITaxon%3A1327986","Campylobacter jejuni 10227"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":10,"nb":82,"a":[["anther-bto-0000079.html","anther"],["epithelial-cell-bto-0000414.html","epithelial cell"],["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["NCBITaxon%3A1390","Bacillus amyloliquefaciens"],["NCBITaxon%3A1452","Bacillus atrophaeus"],["NCBITaxon%3A640707","Bacillus atrophaeus ATCC 9372"],["NCBITaxon%3A483913","Bacillus inaquosorum"],["NCBITaxon%3A1236548","Bacillus inaquosorum KCTC 13429"],["NCBITaxon%3A1402","Bacillus licheniformis"]]},{"id":"NCBITaxon:47715","l":"Lacticaseibacillus rhamnosus","na":10,"nb":38,"a":[["hospital-envo-00002173.html","hospital"],["fermentation-starter-envo-03600040.html","fermentation starter"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["NCBITaxon%3A1597","Lacticaseibacillus paracasei"],["NCBITaxon%3A47715","Lacticaseibacillus rhamnosus"],["NCBITaxon%3A1381116","Lacticaseibacillus rhamnosus 2166"],["NCBITaxon%3A1408180","Lacticaseibacillus rhamnosus 51B"],["NCBITaxon%3A1002365","Lacticaseibacillus rhamnosus ATCC 21052"],["NCBITaxon%3A1088720","Lacticaseibacillus rhamnosus ATCC 8530"]]},{"id":"NCBITaxon:118747","l":"Bulleidia","na":10,"nb":12,"a":[["cecum-bto-0000166.html","cecum"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["intestine-bto-0000648.html","intestine"],["mouth-bto-0001090.html","mouth"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A118748","Bulleidia extructa"],["NCBITaxon%3A679192","Bulleidia extructa W1219"],["NCBITaxon%3A2704657","Bulleidia sp."],["NCBITaxon%3A3241172","Bulleidia sp. 10714-15"],["NCBITaxon%3A3438914","Bulleidia sp. HCP3S3_C9"],["NCBITaxon%3A3438915","Bulleidia sp. HCP3S3_F2"]]},{"id":"NCBITaxon:1397","l":"Niallia circulans","na":12,"nb":10,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["organic-waste-material-envo-00002873.html","organic waste material"],["rhizosphere-envo-00005801.html","rhizosphere"],["cultivated-environment-envo-01000311.html","cultivated environment"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A1393","Brevibacillus brevis"],["NCBITaxon%3A1397","Niallia circulans"],["NCBITaxon%3A1348626","Niallia circulans NBRC 13626"],["NCBITaxon%3A44160","Niallia circulans subsp. alkalophilus"],["NCBITaxon%3A74308","Niallia circulans subsp. circulans"],["NCBITaxon%3A59846","Paenibacillus chibensis"]]},{"id":"NCBITaxon:34085","l":"Riemerella anatipestifer","na":10,"nb":10,"a":[["bay-envo-00000032.html","bay"],["eutrophic-water-envo-00002224.html","eutrophic water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["saline-water-envo-00002010.html","saline water"],["mud-envo-01000001.html","mud"]],"b":[["NCBITaxon%3A34085","Riemerella anatipestifer"],["NCBITaxon%3A693978","Riemerella anatipestifer ATCC 11845 = DSM 15868"],["NCBITaxon%3A1354240","Riemerella anatipestifer CH3"],["NCBITaxon%3A1380769","Riemerella anatipestifer KC104"],["NCBITaxon%3A1228997","Riemerella anatipestifer RA-CH-1"],["NCBITaxon%3A1271752","Riemerella anatipestifer RA-CH-2"]]},{"id":"NCBITaxon:1300","l":"Streptococcaceae","na":9,"nb":5054,"a":[["cecum-bto-0000166.html","cecum"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"],["sgs-cell-bto-0001210.html","SGS cell"]],"b":[["NCBITaxon%3A2838763","Candidatus Streptococcus faecavium"],["NCBITaxon%3A3711814","Candidatus Streptococcus gullae"],["NCBITaxon%3A2962908","Candidatus Streptococcus sp. bin.001"],["NCBITaxon%3A1859475","Floricoccus penangensis"],["NCBITaxon%3A2047721","Floricoccus sp."],["NCBITaxon%3A1859473","Floricoccus tropicus"]]},{"id":"NCBITaxon:1314","l":"Streptococcus pyogenes","na":9,"nb":839,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"],["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"],["epithelial-cell-bto-0000414.html","epithelial cell"],["nasopharynx-bto-0000662.html","nasopharynx"],["skin-of-body-uberon-0002097.html","skin of body"],["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A45634","Streptococcus cristatus"],["NCBITaxon%3A1314","Streptococcus pyogenes"],["NCBITaxon%3A1050217","Streptococcus pyogenes 005-D5"],["NCBITaxon%3A1210041","Streptococcus pyogenes 06BA18369"],["NCBITaxon%3A1235829","Streptococcus pyogenes A20"],["NCBITaxon%3A562016","Streptococcus pyogenes AA216"]]},{"id":"NCBITaxon:1639","l":"Listeria monocytogenes","na":9,"nb":478,"a":[["liquid-water-envo-00002006.html","liquid water"],["brain-bto-0000142.html","brain"],["central-nervous-system-bto-0000227.html","central nervous system"],["fruit-bto-0000486.html","fruit"],["placenta-bto-0001078.html","placenta"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["NCBITaxon%3A1639","Listeria monocytogenes"],["NCBITaxon%3A1126011","Listeria monocytogenes 07PF0776"],["NCBITaxon%3A653938","Listeria monocytogenes 08-5578"],["NCBITaxon%3A637381","Listeria monocytogenes 08-5923"],["NCBITaxon%3A393133","Listeria monocytogenes 10403S"],["NCBITaxon%3A1380708","Listeria monocytogenes 36-25-1"]]},{"id":"NCBITaxon:1016","l":"Capnocytophaga","na":9,"nb":249,"a":[["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["gut-bto-0000545.html","gut"],["hand-bto-0004668.html","hand"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"]],"b":[["NCBITaxon%3A2819369","Capnocytophaga bilenii"],["NCBITaxon%3A28188","Capnocytophaga canimorsus"],["NCBITaxon%3A860228","Capnocytophaga canimorsus Cc5"],["NCBITaxon%3A1848903","Capnocytophaga canis"],["NCBITaxon%3A1004260","Capnocytophaga catalasegens"],["NCBITaxon%3A28189","Capnocytophaga cynodegmi"]]},{"id":"NCBITaxon:727","l":"Haemophilus influenzae","na":9,"nb":43,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["head-bto-0000282.html","head"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["NCBITaxon%3A727","Haemophilus influenzae"],["NCBITaxon%3A862964","Haemophilus influenzae 10810"],["NCBITaxon%3A1232659","Haemophilus influenzae 2019"],["NCBITaxon%3A374927","Haemophilus influenzae 22.1-21"],["NCBITaxon%3A520729","Haemophilus influenzae 22.1-24"],["NCBITaxon%3A375063","Haemophilus influenzae 22.4-21"]]},{"id":"NCBITaxon:1265","l":"Ruminococcus flavefaciens","na":29,"nb":9,"a":[["biofilm-envo-00002034.html","biofilm"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A1265","Ruminococcus flavefaciens"],["NCBITaxon%3A1341157","Ruminococcus flavefaciens 007c"],["NCBITaxon%3A1030842","Ruminococcus flavefaciens 17"],["NCBITaxon%3A1384066","Ruminococcus flavefaciens AE3010"],["NCBITaxon%3A1336236","Ruminococcus flavefaciens ATCC 19208"],["NCBITaxon%3A1313302","Ruminococcus flavefaciens B34b"]]},{"id":"NCBITaxon:1264","l":"Hominimerdicola alba","na":13,"nb":9,"a":[["biofilm-envo-00002034.html","biofilm"],["stream-envo-00000023.html","stream"],["animal-house-envo-00003040.html","animal house"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biome-envo-00000428.html","biome"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"]],"b":[["NCBITaxon%3A1264","Hominimerdicola alba"],["NCBITaxon%3A697329","Hominimerdicola alba 7 = DSM 20455"],["NCBITaxon%3A246199","Hominimerdicola alba 8"],["NCBITaxon%3A1384065","Hominimerdicola alba AD2013"],["NCBITaxon%3A1341156","Hominimerdicola alba SY3"],["NCBITaxon%3A1339594","Hominimerdicola alba TSDC17.2-1.1"]]},{"id":"NCBITaxon:31979","l":"Clostridiaceae","na":8,"nb":3495,"a":[["adult-bto-0001043.html","adult"],["alimentary-canal-bto-0000058.html","alimentary canal"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"]],"b":[["NCBITaxon%3A1766203","Abyssisolibacter fermentans"],["NCBITaxon%3A2684878","Abyssisolibacter sp."],["NCBITaxon%3A3035615","Abyssisolibacter sp. ZYX002"],["NCBITaxon%3A3036945","Anaerococcoides asporogena"],["NCBITaxon%3A3713578","Anaerococcoides sp."],["NCBITaxon%3A2498136","Anaerophilus nitritigenes"]]},{"id":"NCBITaxon:210","l":"Helicobacter pylori","na":8,"nb":631,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["hospital-envo-00002173.html","hospital"],["duodenum-bto-0000365.html","duodenum"],["gastric-juice-bto-0000501.html","gastric juice"],["gastric-mucosa-bto-0001308.html","gastric mucosa"],["gastric-ulcer-bto-0002990.html","gastric ulcer"]],"b":[["NCBITaxon%3A210","Helicobacter pylori"],["NCBITaxon%3A1028810","Helicobacter pylori 10700"],["NCBITaxon%3A585532","Helicobacter pylori 118"],["NCBITaxon%3A102610","Helicobacter pylori #12"],["NCBITaxon%3A585533","Helicobacter pylori 120"],["NCBITaxon%3A103187","Helicobacter pylori 15818"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":8,"nb":391,"a":[["reservoir-envo-00000025.html","reservoir"],["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["secretion-bto-0002979.html","secretion"],["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A1260363","Enterococcus faecalis 02-MB-BW-10"],["NCBITaxon%3A1260365","Enterococcus faecalis 02-MB-P-10"],["NCBITaxon%3A1260358","Enterococcus faecalis 06-MB-DW-09"],["NCBITaxon%3A1260359","Enterococcus faecalis 06-MB-S-04"],["NCBITaxon%3A1260360","Enterococcus faecalis 06-MB-S-10"]]},{"id":"NCBITaxon:171550","l":"Rikenellaceae","na":8,"nb":241,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["ileum-bto-0000620.html","ileum"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"]],"b":[["NCBITaxon%3A979970","Acetobacteroides hydrogenigenes"],["NCBITaxon%3A1872095","Acetobacteroides sp."],["NCBITaxon%3A2764708","Acetobacteroides sp. MIZ14"],["NCBITaxon%3A2585118","Alistipes communis"],["NCBITaxon%3A2585119","Alistipes dispar"],["NCBITaxon%3A214856","Alistipes finegoldii"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":8,"nb":183,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["NCBITaxon%3A86840","Pseudomonas cannabina"],["NCBITaxon%3A53409","Pseudomonas coronafaciens"],["NCBITaxon%3A29438","Pseudomonas savastanoi"],["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A1204471","Pseudomonas syringae BRIP34876"]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":8,"nb":88,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"]],"b":[["NCBITaxon%3A298","Pseudomonas marginalis"],["NCBITaxon%3A56448","Xanthomonas arboricola"],["NCBITaxon%3A339","Xanthomonas campestris"],["NCBITaxon%3A1281290","Xanthomonas campestris CFBP 5824"],["NCBITaxon%3A1281289","Xanthomonas campestris CFBP 5825"],["NCBITaxon%3A1182783","Xanthomonas campestris JX"]]},{"id":"NCBITaxon:33042","l":"Coprococcus","na":8,"nb":72,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["alimentary-canal-bto-0000058.html","alimentary canal"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"]],"b":[["NCBITaxon%3A2981786","Coprococcus aceti"],["NCBITaxon%3A2981785","Coprococcus ammoniilyticus"],["NCBITaxon%3A33043","Coprococcus eutactus"],["NCBITaxon%3A411474","Coprococcus eutactus ATCC 27759"],["NCBITaxon%3A1263071","Coprococcus eutactus CAG:665"],["NCBITaxon%3A2881262","Coprococcus hominis (ex Arizal et al. 2022)"]]},{"id":"NCBITaxon:2702","l":"Gardnerella vaginalis","na":8,"nb":35,"a":[["egg-food-product-foodon-00001274.html","egg food product"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["NCBITaxon%3A2702","Gardnerella vaginalis"],["NCBITaxon%3A698952","Gardnerella vaginalis 0288E"],["NCBITaxon%3A698957","Gardnerella vaginalis 1500E"],["NCBITaxon%3A698950","Gardnerella vaginalis 284V"],["NCBITaxon%3A879307","Gardnerella vaginalis 315-A"],["NCBITaxon%3A553190","Gardnerella vaginalis 409-05"]]},{"id":"NCBITaxon:147802","l":"Lactobacillus iners","na":8,"nb":18,"a":[["egg-food-product-foodon-00001274.html","egg food product"],["blood-bto-0000089.html","blood"],["brain-bto-0000142.html","brain"],["heart-bto-0000562.html","heart"],["urine-bto-0001419.html","urine"],["vagina-bto-0000243.html","vagina"]],"b":[["NCBITaxon%3A78329","Allocoenonia anatina"],["NCBITaxon%3A147802","Lactobacillus iners"],["NCBITaxon%3A713605","Lactobacillus iners AB-1"],["NCBITaxon%3A883160","Lactobacillus iners ACS-070-V-Col3"],["NCBITaxon%3A888801","Lactobacillus iners ATCC 55195"],["NCBITaxon%3A525328","Lactobacillus iners DSM 13335"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":8,"nb":15,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["alimentary-canal-bto-0000058.html","alimentary canal"],["blood-bto-0000089.html","blood"],["small-intestine-bto-0000651.html","small intestine"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["geographic-feature-envo-00000000.html","geographic feature"]],"b":[["NCBITaxon%3A1304","Streptococcus salivarius"],["NCBITaxon%3A1046629","Streptococcus salivarius 57.I"],["NCBITaxon%3A1420586","Streptococcus salivarius ATCC 25975"],["NCBITaxon%3A1263109","Streptococcus salivarius CAG:79"],["NCBITaxon%3A1048332","Streptococcus salivarius CCHSS3"],["NCBITaxon%3A1255635","Streptococcus salivarius CJ181"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":8,"nb":14,"a":[["groundwater-envo-01001004.html","groundwater"],["bioreactor-envo-00002123.html","bioreactor"],["river-envo-00000022.html","river"],["freshwater-environment-envo-01000306.html","freshwater environment"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A1076","Rhodopseudomonas palustris"],["NCBITaxon%3A74570","Rhodopseudomonas palustris ATCC 17001"],["NCBITaxon%3A74573","Rhodopseudomonas palustris ATCC 17007"],["NCBITaxon%3A316055","Rhodopseudomonas palustris BisA53"],["NCBITaxon%3A316056","Rhodopseudomonas palustris BisB18"],["NCBITaxon%3A316057","Rhodopseudomonas palustris BisB5"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":8,"nb":14,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["lab-synthesis-habitatmech-bacdive-0e92e77cd4.html","Lab-synthesis"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["oil-spill-envo-00002061.html","oil spill"],["temperate-envo-01000206.html","temperate"]],"b":[["NCBITaxon%3A72360","Bacillus mojavensis"],["NCBITaxon%3A1051501","Bacillus mojavensis RO-H-1 = KCTC 3706"],["NCBITaxon%3A1478","Peribacillus simplex"],["NCBITaxon%3A86664","Priestia flexa"],["NCBITaxon%3A1404","Priestia megaterium"],["NCBITaxon%3A592022","Priestia megaterium DSM 319"]]},{"id":"NCBITaxon:33038","l":"Mediterraneibacter gnavus","na":8,"nb":13,"a":[["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["juvenile-bto-0002168.html","juvenile"],["animal-litter-envo-00002191.html","animal litter"]],"b":[["NCBITaxon%3A33038","Mediterraneibacter gnavus"],["NCBITaxon%3A1384063","Mediterraneibacter gnavus AGR2154"],["NCBITaxon%3A411470","Mediterraneibacter gnavus ATCC 29149"],["NCBITaxon%3A1263106","Mediterraneibacter gnavus CAG:126"],["NCBITaxon%3A1073375","Mediterraneibacter gnavus CC55_001C"],["NCBITaxon%3A935582","Mediterraneibacter gnavus E1"]]},{"id":"NCBITaxon:554","l":"Pectobacterium carotovorum","na":8,"nb":13,"a":[["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["root-or-stem-rot-environment-habitatmech-bacdive-04ddbbeabe.html","root-or-stem rot environment"],["wilt-habitatmech-bacdive-4c48b5114d.html","Wilt"]],"b":[["NCBITaxon%3A2527970","Blastopirellula retiformator"],["NCBITaxon%3A1201031","Pectobacterium aroidearum"],["NCBITaxon%3A55207","Pectobacterium betavasculorum"],["NCBITaxon%3A180957","Pectobacterium brasiliense"],["NCBITaxon%3A554","Pectobacterium carotovorum"],["NCBITaxon%3A555","Pectobacterium carotovorum subsp. carotovorum"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":9,"nb":8,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["fresh-water-envo-00002011.html","fresh water"],["river-envo-00000022.html","river"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A1061","Rhodobacter capsulatus"],["NCBITaxon%3A1415162","Rhodobacter capsulatus B6"],["NCBITaxon%3A1415160","Rhodobacter capsulatus DE442"],["NCBITaxon%3A1415163","Rhodobacter capsulatus R121"],["NCBITaxon%3A272942","Rhodobacter capsulatus SB 1003"],["NCBITaxon%3A1415161","Rhodobacter capsulatus Y262"]]},{"id":"NCBITaxon:1261","l":"Peptostreptococcus anaerobius","na":9,"nb":8,"a":[["dorsum-bto-0001713.html","dorsum"],["saliva-bto-0001202.html","saliva"],["sgs-cell-bto-0001210.html","SGS cell"],["tongue-bto-0001385.html","tongue"],["urine-bto-0001419.html","urine"],["vagina-bto-0000243.html","vagina"]],"b":[["NCBITaxon%3A1944660","Parvimonas sp."],["NCBITaxon%3A1261","Peptostreptococcus anaerobius"],["NCBITaxon%3A596329","Peptostreptococcus anaerobius 653-L"],["NCBITaxon%3A1263100","Peptostreptococcus anaerobius CAG:621"],["NCBITaxon%3A1073365","Peptostreptococcus anaerobius CC14N"],["NCBITaxon%3A1035196","Peptostreptococcus anaerobius VPI 4330 = DSM 2949"]]},{"id":"NCBITaxon:1655","l":"Actinomyces naeslundii","na":8,"nb":8,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"],["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"],["archeological-site-envo-00000564.html","archeological site"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["NCBITaxon%3A3050225","Actinomyces acetigenes"],["NCBITaxon%3A544581","Actinomyces johnsonii"],["NCBITaxon%3A1655","Actinomyces naeslundii"],["NCBITaxon%3A240017","Actinomyces naeslundii MG1"],["NCBITaxon%3A1115803","Actinomyces naeslundii str. Howell 279"],["NCBITaxon%3A544580","Actinomyces oris"]]},{"id":"NCBITaxon:28216","l":"Betaproteobacteria","na":7,"nb":31526,"a":[["column-bto-0005692.html","column"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["spike-bto-0001278.html","spike"]],"b":[["NCBITaxon%3A103498","2,4-D-degrading bacterium 001"],["NCBITaxon%3A103499","2,4-D-degrading bacterium 007"],["NCBITaxon%3A103495","2,4-D-degrading bacterium 012"],["NCBITaxon%3A103500","2,4-D-degrading bacterium 017"],["NCBITaxon%3A103501","2,4-D-degrading bacterium 018"],["NCBITaxon%3A103502","2,4-D-degrading bacterium 019"]]},{"id":"NCBITaxon:32033","l":"Lysobacteraceae","na":7,"nb":6844,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["leaf-bto-0000713.html","leaf"],["midgut-bto-0000863.html","midgut"],["pitcher-bto-0001069.html","pitcher"],["pseudostem-bto-0005992.html","pseudostem"],["stem-bto-0001300.html","stem"]],"b":[["NCBITaxon%3A346181","Aerolutibacter daejeonensis"],["NCBITaxon%3A686800","Aerolutibacter ruishenii"],["NCBITaxon%3A380628","Agrilutibacter niabensis"],["NCBITaxon%3A2763317","Agrilutibacter solisilvae"],["NCBITaxon%3A3382711","Agrilutibacter sp."],["NCBITaxon%3A2865112","Agrilutibacter terrestris"]]},{"id":"NCBITaxon:469","l":"Acinetobacter","na":7,"nb":6769,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["endotracheal-fluid-ncit-c171504.html","Endotracheal Fluid"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"],["pseudostem-bto-0005992.html","pseudostem"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"]],"b":[["NCBITaxon%3A1673609","Acinetobacter albensis"],["NCBITaxon%3A2942470","Acinetobacter amyesii"],["NCBITaxon%3A363192","Acinetobacter antiviralis"],["NCBITaxon%3A1229165","Acinetobacter apis"],["NCBITaxon%3A2605383","Acinetobacter baretiae"],["NCBITaxon%3A470","Acinetobacter baumannii"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":7,"nb":5776,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["pseudostem-bto-0005992.html","pseudostem"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["NCBITaxon%3A54736","Salmonella bongori"],["NCBITaxon%3A218493","Salmonella bongori NCTC 12419"],["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59203","Salmonella enterica subsp. arizonae"],["NCBITaxon%3A2577126","Salmonella enterica subsp. arizonae serovar 11:z4,z23:-"],["NCBITaxon%3A2577127","Salmonella enterica subsp. arizonae serovar 13,22:z4,z23:-"]]},{"id":"NCBITaxon:2037","l":"Actinomycetales","na":7,"nb":2280,"a":[["saline-water-body-envo-01001319.html","saline water body"],["column-bto-0005692.html","column"],["crop-bto-0000301.html","crop"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"],["stem-bto-0001300.html","stem"]],"b":[["NCBITaxon%3A202789","Actinobaculum massiliense"],["NCBITaxon%3A883066","Actinobaculum massiliense ACS-171-V-Col2"],["NCBITaxon%3A1872129","Actinobaculum sp."],["NCBITaxon%3A749734","Actinobaculum sp. 127266/05"],["NCBITaxon%3A1456838","Actinobaculum sp. 2012257545"],["NCBITaxon%3A1456839","Actinobaculum sp. 2012259764"]]},{"id":"NCBITaxon:128827","l":"Erysipelotrichaceae","na":7,"nb":378,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["cecum-bto-0000166.html","cecum"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["intestine-bto-0000648.html","intestine"],["mouth-bto-0001090.html","mouth"],["mucosa-bto-0000886.html","mucosa"]],"b":[["NCBITaxon%3A2926319","Absicoccus intestinalis"],["NCBITaxon%3A2486576","Absicoccus porci"],["NCBITaxon%3A2718527","Absicoccus sp."],["NCBITaxon%3A2291993","Absiella sp. AM09-45"],["NCBITaxon%3A2291994","Absiella sp. AM09-50"],["NCBITaxon%3A2291995","Absiella sp. AM10-20"]]},{"id":"NCBITaxon:1243","l":"Leuconostoc","na":7,"nb":271,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["intestine-bto-0000648.html","intestine"],["mouth-bto-0001090.html","mouth"],["stem-bto-0001300.html","stem"]],"b":[["NCBITaxon%3A3236804","Leuconostoc aquikimchii"],["NCBITaxon%3A1252","Leuconostoc carnosum"],["NCBITaxon%3A1229758","Leuconostoc carnosum JB16"],["NCBITaxon%3A1046593","Leuconostoc carnosum KCTC 3525"],["NCBITaxon%3A33964","Leuconostoc citreum"],["NCBITaxon%3A349519","Leuconostoc citreum KM20"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":7,"nb":35,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["liquid-water-envo-00002006.html","liquid water"],["crown-gall-bto-0000303.html","crown gall"],["finger-bto-0004669.html","finger"],["resting-cell-bto-0001170.html","resting cell"],["water-scum-envo-00005794.html","water scum"]],"b":[["NCBITaxon%3A1183421","Agrobacterium fabacearum CFBP 5771"],["NCBITaxon%3A1300224","Agrobacterium fabacearum P4"],["NCBITaxon%3A1183429","Agrobacterium fabacearum S56"],["NCBITaxon%3A1368455","Agrobacterium fabacearum str. Foundi"],["NCBITaxon%3A1183430","Agrobacterium fabacearum TT111"],["NCBITaxon%3A1176649","Agrobacterium fabrum"]]},{"id":"NCBITaxon:1107","l":"Chloroflexus","na":7,"nb":28,"a":[["crop-bto-0000301.html","crop"],["gut-bto-0000545.html","gut"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["seedling-bto-0001228.html","seedling"],["skin-bto-0001253.html","skin"]],"b":[["NCBITaxon%3A152260","Chloroflexus aggregans"],["NCBITaxon%3A326427","Chloroflexus aggregans DSM 9485"],["NCBITaxon%3A1108","Chloroflexus aurantiacus"],["NCBITaxon%3A324602","Chloroflexus aurantiacus J-10-fl"],["NCBITaxon%3A480224","Chloroflexus aurantiacus Y-400-fl"],["NCBITaxon%3A1707952","Chloroflexus islandicus"]]},{"id":"NCBITaxon:1502","l":"Clostridium perfringens","na":7,"nb":24,"a":[["small-river-biome-envo-00000890.html","small river biome"],["animal-house-envo-00003040.html","animal house"],["ileum-bto-0000620.html","ileum"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["NCBITaxon%3A1502","Clostridium perfringens"],["NCBITaxon%3A753641","Clostridium perfringens 310"],["NCBITaxon%3A753640","Clostridium perfringens 3100"],["NCBITaxon%3A37763","Clostridium perfringens A"],["NCBITaxon%3A195103","Clostridium perfringens ATCC 13124"],["NCBITaxon%3A451751","Clostridium perfringens B"]]},{"id":"NCBITaxon:1464","l":"Paenibacillus larvae","na":10,"nb":7,"a":[["surface-water-envo-00002042.html","surface water"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["carcass-envo-00002033.html","carcass"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A1464","Paenibacillus larvae"],["NCBITaxon%3A147375","Paenibacillus larvae subsp. larvae"],["NCBITaxon%3A741161","Paenibacillus larvae subsp. larvae B-3650"],["NCBITaxon%3A392917","Paenibacillus larvae subsp. larvae BRL-230010"],["NCBITaxon%3A697284","Paenibacillus larvae subsp. larvae DSM 25430"],["NCBITaxon%3A697286","Paenibacillus larvae subsp. larvae DSM 25719"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":10,"nb":7,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["air-conditioning-unit-envo-00002874.html","air conditioning unit"],["leaf-bto-0000713.html","leaf"],["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["NCBITaxon%3A34073","Variovorax paradoxus"],["NCBITaxon%3A1150395","Variovorax paradoxus 4MFCol3.1"],["NCBITaxon%3A1246301","Variovorax paradoxus B4"],["NCBITaxon%3A595537","Variovorax paradoxus EPS"],["NCBITaxon%3A1321610","Variovorax paradoxus NBRC 15149"],["NCBITaxon%3A543728","Variovorax paradoxus S110"]]},{"id":"NCBITaxon:1283","l":"Staphylococcus haemolyticus","na":9,"nb":7,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["biofilm-bto-0002690.html","biofilm"],["bone-element-uberon-0001474.html","bone element"],["conjunctiva-bto-0003415.html","conjunctiva"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"]],"b":[["NCBITaxon%3A1283","Staphylococcus haemolyticus"],["NCBITaxon%3A1308739","Staphylococcus haemolyticus ADL-104"],["NCBITaxon%3A1308735","Staphylococcus haemolyticus ADL-204"],["NCBITaxon%3A1095104","Staphylococcus haemolyticus BL-2"],["NCBITaxon%3A1401071","Staphylococcus haemolyticus DNF00585"],["NCBITaxon%3A279808","Staphylococcus haemolyticus JCSC1435"]]},{"id":"NCBITaxon:1656","l":"Actinomyces viscosus","na":7,"nb":9,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"],["skin-of-body-uberon-0002097.html","skin of body"],["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["NCBITaxon%3A1655","Actinomyces naeslundii"],["NCBITaxon%3A544580","Actinomyces oris"],["NCBITaxon%3A29317","Actinomyces sp."],["NCBITaxon%3A3050227","Actinomyces stomatis"],["NCBITaxon%3A1656","Actinomyces viscosus"],["NCBITaxon%3A562973","Actinomyces viscosus C505"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":9,"nb":7,"a":[["liquid-water-envo-00002006.html","liquid water"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["mud-envo-01000001.html","mud"]],"b":[["NCBITaxon%3A293","Brevundimonas diminuta"],["NCBITaxon%3A1255603","Brevundimonas diminuta 3F5N"],["NCBITaxon%3A1035191","Brevundimonas diminuta 470-4"],["NCBITaxon%3A751586","Brevundimonas diminuta ATCC 11568"],["NCBITaxon%3A588932","Brevundimonas naejangsanensis"],["NCBITaxon%3A1325724","Brevundimonas vancanneytii"]]},{"id":"NCBITaxon:1236","l":"Gammaproteobacteria","na":6,"nb":145676,"a":[["column-bto-0005692.html","column"],["hemolymph-bto-0000572.html","hemolymph"],["oil-secretion-bto-0005373.html","oil secretion"],["spike-bto-0001278.html","spike"],["urine-bto-0001419.html","urine"],["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A103492","2,4-D-degrading bacterium 010"],["NCBITaxon%3A103493","2,4-D-degrading bacterium 030"],["NCBITaxon%3A120969","abyssal strain AIII3*"],["NCBITaxon%3A2182787","Abyssibacter profundi"],["NCBITaxon%3A2320200","Abyssibacter sp."],["NCBITaxon%3A596095","Abyssogena phaseoliformis symbiont"]]},{"id":"NCBITaxon:28211","l":"Alphaproteobacteria","na":6,"nb":72845,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"],["alimentary-canal-bto-0000058.html","alimentary canal"],["column-bto-0005692.html","column"],["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["spike-bto-0001278.html","spike"]],"b":[["NCBITaxon%3A119160","2,3-D degrading bacterium NHC2"],["NCBITaxon%3A119159","2,3-D degrading bacterium NHG3"],["NCBITaxon%3A103494","2,4-D-degrading bacterium 022"],["NCBITaxon%3A83493","2,4-D degrading bacterium 2,4-D1"],["NCBITaxon%3A103496","2,4-D-degrading bacterium 524"],["NCBITaxon%3A83492","2,4-D degrading bacterium B6-10"]]},{"id":"NCBITaxon:80864","l":"Comamonadaceae","na":6,"nb":5616,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["small-intestine-bto-0000651.html","small intestine"],["trunk-bto-0001493.html","trunk"],["wood-bto-0005516.html","wood"]],"b":[["NCBITaxon%3A103495","2,4-D-degrading bacterium 012"],["NCBITaxon%3A83498","2,4-D degrading bacterium B6-9"],["NCBITaxon%3A83495","2,4-D degrading bacterium TFD23"],["NCBITaxon%3A3386178","Aalborgiella aggregata (SeqCode)"],["NCBITaxon%3A3879854","Aalborgiella sp. (SeqCode)"],["NCBITaxon%3A192388","Acidovorax aerodenitrificans"]]},{"id":"NCBITaxon:1269","l":"Micrococcus","na":6,"nb":1469,"a":[["cecum-bto-0000166.html","cecum"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["saliva-bto-0001202.html","saliva"],["tongue-bto-0001385.html","tongue"]],"b":[["NCBITaxon%3A1871615","Dermacoccus sp."],["NCBITaxon%3A1275","Kocuria rosea"],["NCBITaxon%3A29377","Micrococcus aerogenes"],["NCBITaxon%3A306270","Micrococcus alkanovora"],["NCBITaxon%3A1391911","Micrococcus aloeverae"],["NCBITaxon%3A86171","Micrococcus antarcticus"]]},{"id":"NCBITaxon:1311","l":"Streptococcus agalactiae","na":6,"nb":332,"a":[["kidney-bto-0000671.html","kidney"],["milk-uberon-0001913.html","milk"],["oropharynx-bto-0005257.html","oropharynx"],["urine-bto-0001419.html","urine"],["urogenital-system-bto-0003091.html","urogenital system"],["vagina-bto-0000243.html","vagina"]],"b":[["NCBITaxon%3A536","Chromobacterium violaceum"],["NCBITaxon%3A2896850","Phocaeicola oris"],["NCBITaxon%3A1311","Streptococcus agalactiae"],["NCBITaxon%3A997295","Streptococcus agalactiae 072.21"],["NCBITaxon%3A1309806","Streptococcus agalactiae 09mas018883"],["NCBITaxon%3A1333579","Streptococcus agalactiae 112469214-isolate1"]]},{"id":"NCBITaxon:1496","l":"Clostridioides difficile","na":6,"nb":296,"a":[["hospital-envo-00002173.html","hospital"],["feces-uberon-0001988.html","feces"],["leukocyte-bto-0000751.html","leukocyte"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["intestine-environment-envo-2100002.html","intestine environment"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A1496","Clostridioides difficile"],["NCBITaxon%3A997827","Clostridioides difficile 002-P50-2011"],["NCBITaxon%3A997828","Clostridioides difficile 050-P50-2011"],["NCBITaxon%3A699033","Clostridioides difficile 2007855"],["NCBITaxon%3A1151306","Clostridioides difficile 342"],["NCBITaxon%3A1151307","Clostridioides difficile 360"]]},{"id":"NCBITaxon:1375","l":"Aerococcus","na":6,"nb":234,"a":[["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["saliva-bto-0001202.html","saliva"],["urine-bto-0001419.html","urine"],["vagina-bto-0000243.html","vagina"],["vaginal-fluid-bto-0003084.html","vaginal fluid"]],"b":[["NCBITaxon%3A2487350","Aerococcus agrisoli"],["NCBITaxon%3A87541","Aerococcus christensenii"],["NCBITaxon%3A525247","Aerococcus christensenii DSM 15819 = CCUG 28831"],["NCBITaxon%3A2999064","Aerococcus kribbianus"],["NCBITaxon%3A2976809","Aerococcus loyolae"],["NCBITaxon%3A2976810","Aerococcus mictus"]]},{"id":"NCBITaxon:189330","l":"Dorea","na":6,"nb":83,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["ileum-bto-0000620.html","ileum"],["mucosa-bto-0000886.html","mucosa"]],"b":[["NCBITaxon%3A2838540","Candidatus Dorea faecigallinarum"],["NCBITaxon%3A2838541","Candidatus Dorea faecipullorum"],["NCBITaxon%3A2838542","Candidatus Dorea gallistercoris"],["NCBITaxon%3A2838543","Candidatus Dorea intestinavium"],["NCBITaxon%3A2838544","Candidatus Dorea intestinigallinarum"],["NCBITaxon%3A1470355","Candidatus Dorea massiliensis"]]},{"id":"NCBITaxon:13159","l":"Mycoplana","na":6,"nb":50,"a":[["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"],["style-bto-0001313.html","style"],["urine-bto-0001419.html","urine"]],"b":[["NCBITaxon%3A1636188","Mycoplana azooxidifex"],["NCBITaxon%3A28320","Mycoplana dimorpha"],["NCBITaxon%3A416229","Mycoplana peli"],["NCBITaxon%3A40837","Mycoplana ramosa"],["NCBITaxon%3A2746702","Mycoplana rhizolycopersici"],["NCBITaxon%3A1874381","Mycoplana sp."]]},{"id":"NCBITaxon:446","l":"Legionella pneumophila","na":6,"nb":47,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["hospital-envo-00002173.html","hospital"],["macrophage-bto-0000801.html","macrophage"],["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A446","Legionella pneumophila"],["NCBITaxon%3A866628","Legionella pneumophila 130b"],["NCBITaxon%3A423212","Legionella pneumophila 2300/99 Alcoy"],["NCBITaxon%3A1370127","Legionella pneumophila Leg01/16"],["NCBITaxon%3A66976","Legionella pneumophila serogroup 1"],["NCBITaxon%3A66985","Legionella pneumophila serogroup 10"]]},{"id":"NCBITaxon:777","l":"Coxiella burnetii","na":6,"nb":44,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["marine-bathyal-zone-biome-envo-01000026.html","marine bathyal zone biome"],["neritic-epipelagic-zone-biome-envo-01000042.html","neritic epipelagic zone biome"],["lagoon-envo-00000038.html","lagoon"],["orchard-envo-00000115.html","orchard"],["sea-shore-envo-00000485.html","sea shore"]],"b":[["NCBITaxon%3A777","Coxiella burnetii"],["NCBITaxon%3A1321944","Coxiella burnetii 2338"],["NCBITaxon%3A1321942","Coxiella burnetii C2"],["NCBITaxon%3A1196327","Coxiella burnetii cb109"],["NCBITaxon%3A1364988","Coxiella burnetii Cb111"],["NCBITaxon%3A1401249","Coxiella burnetii Cb118"]]},{"id":"NCBITaxon:1305","l":"Streptococcus sanguinis","na":6,"nb":27,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["throat-bto-0000828.html","throat"],["geographic-feature-envo-00000000.html","geographic feature"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["NCBITaxon%3A1302","Streptococcus gordonii"],["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1305","Streptococcus sanguinis"],["NCBITaxon%3A1247655","Streptococcus sanguinis ATCC 15914"],["NCBITaxon%3A997356","Streptococcus sanguinis ATCC 29667"],["NCBITaxon%3A1073373","Streptococcus sanguinis CC94A"]]},{"id":"NCBITaxon:56","l":"Sorangium cellulosum","na":27,"nb":6,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["watercourse-envo-00000029.html","watercourse"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["NCBITaxon%3A2093422","Sorangium ambruticinum"],["NCBITaxon%3A2093423","Sorangium bulgaricum"],["NCBITaxon%3A56","Sorangium cellulosum"],["NCBITaxon%3A1254432","Sorangium cellulosum So0157-2"],["NCBITaxon%3A448385","Sorangium cellulosum So ce56"],["NCBITaxon%3A2093377","Sorangium sp."]]},{"id":"NCBITaxon:1018","l":"Capnocytophaga ochracea","na":17,"nb":6,"a":[["biofilm-envo-00002034.html","biofilm"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["gut-bto-0000545.html","gut"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"]],"b":[["NCBITaxon%3A1018","Capnocytophaga ochracea"],["NCBITaxon%3A521097","Capnocytophaga ochracea DSM 7271"],["NCBITaxon%3A873517","Capnocytophaga ochracea F0287"],["NCBITaxon%3A1410029","Capnocytophaga ochracea HMP_JCVI_SC0240"],["NCBITaxon%3A1125719","Capnocytophaga ochracea str. Holt 25"],["NCBITaxon%3A1019","Capnocytophaga sputigena"]]},{"id":"NCBITaxon:67263","l":"Streptomyces griseus subsp. griseus","na":6,"nb":14,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["laboratory-facility-envo-01001406.html","laboratory facility"],["clay-envo-00002982.html","clay"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A132249","Nocardia veterana"],["NCBITaxon%3A1884","Streptomyces acrimycini"],["NCBITaxon%3A67274","Streptomyces argenteolus"],["NCBITaxon%3A66872","Streptomyces baarnensis"],["NCBITaxon%3A1896","Streptomyces bikiniensis"],["NCBITaxon%3A90079","Streptomyces caviscabies"]]},{"id":"NCBITaxon:1624","l":"Ligilactobacillus salivarius","na":6,"nb":13,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["trachea-bto-0001388.html","trachea"],["animal-litter-envo-00002191.html","animal litter"],["intestine-environment-envo-2100002.html","intestine environment"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["NCBITaxon%3A1624","Ligilactobacillus salivarius"],["NCBITaxon%3A768728","Ligilactobacillus salivarius ACS-116-V-Col5a"],["NCBITaxon%3A1195377","Ligilactobacillus salivarius B-30514"],["NCBITaxon%3A712961","Ligilactobacillus salivarius CECT 5713"],["NCBITaxon%3A1036738","Ligilactobacillus salivarius CELA2"],["NCBITaxon%3A1273133","Ligilactobacillus salivarius cp400"]]},{"id":"NCBITaxon:238","l":"Elizabethkingia meningoseptica","na":10,"nb":6,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["pond-water-envo-00002228.html","pond water"],["small-river-biome-envo-00000890.html","small river biome"],["bronchus-uberon-0002185.html","bronchus"],["midgut-bto-0000863.html","midgut"],["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["NCBITaxon%3A1453492","Chryseobacterium hispalense"],["NCBITaxon%3A238","Elizabethkingia meningoseptica"],["NCBITaxon%3A1216967","Elizabethkingia meningoseptica ATCC 13253 = NBRC 12535"],["NCBITaxon%3A1379264","Elizabethkingia meningoseptica KuYH"],["NCBITaxon%3A247","Empedobacter brevis"],["NCBITaxon%3A343874","Empedobacter falsenii"]]},{"id":"NCBITaxon:1154585","l":"Gaiellaceae","na":6,"nb":9,"a":[["crop-bto-0000301.html","crop"],["forearm-bto-0001447.html","forearm"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["seedling-bto-0001228.html","seedling"],["skin-bto-0001253.html","skin"]],"b":[["NCBITaxon%3A2928748","Candidatus Gaiellasilicea maunaloa"],["NCBITaxon%3A1002870","Gaiella occulta"],["NCBITaxon%3A2663207","Gaiella sp."],["NCBITaxon%3A1282738","Gaiella sp. EBR4-R2"],["NCBITaxon%3A1282739","Gaiella sp. EBR4-RS1"],["NCBITaxon%3A1799656","Gaiella sp. SCGC AG-212-M14"]]},{"id":"NCBITaxon:1830","l":"Rhodococcus ruber","na":6,"nb":9,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A941184","Nocardia salmonicolor"],["NCBITaxon%3A1830","Rhodococcus ruber"],["NCBITaxon%3A1278076","Rhodococcus ruber BKS 20-38"],["NCBITaxon%3A1240349","Rhodococcus ruber Chol-4"],["NCBITaxon%3A3392186","Rhodococcus ruber IEGM1217"],["NCBITaxon%3A3392194","Rhodococcus ruber IEGM453"]]},{"id":"NCBITaxon:28251","l":"Ornithobacterium rhinotracheale","na":9,"nb":6,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["small-river-biome-envo-00000890.html","small river biome"],["water-body-envo-00000063.html","water body"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["cultivated-environment-envo-01000311.html","cultivated environment"],["mud-envo-01000001.html","mud"]],"b":[["NCBITaxon%3A28251","Ornithobacterium rhinotracheale"],["NCBITaxon%3A1112205","Ornithobacterium rhinotracheale B3263/91"],["NCBITaxon%3A1112206","Ornithobacterium rhinotracheale BAC-96-8334"],["NCBITaxon%3A867902","Ornithobacterium rhinotracheale DSM 15997"],["NCBITaxon%3A1401326","Ornithobacterium rhinotracheale H06-030791"],["NCBITaxon%3A1401325","Ornithobacterium rhinotracheale ORT-UMN 88"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":6,"nb":8,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"],["sludge-envo-00002044.html","sludge"],["forested-area-envo-00000111.html","forested area"],["scrubland-area-envo-00000300.html","scrubland area"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A119219","Cupriavidus metallidurans"],["NCBITaxon%3A106590","Cupriavidus necator"],["NCBITaxon%3A1304882","Cupriavidus necator A5-1"],["NCBITaxon%3A381666","Cupriavidus necator H16"],["NCBITaxon%3A53482","Cupriavidus necator H850"],["NCBITaxon%3A1042878","Cupriavidus necator N-1"]]},{"id":"NCBITaxon:1510","l":"Thermoclostridium stercorarium","na":6,"nb":8,"a":[["small-river-biome-envo-00000890.html","small river biome"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"],["rock-envo-00001995.html","rock"],["sulfur-spring-envo-00000126.html","sulfur spring"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["NCBITaxon%3A1510","Thermoclostridium stercorarium"],["NCBITaxon%3A160385","Thermoclostridium stercorarium subsp. leptospartum"],["NCBITaxon%3A1346611","Thermoclostridium stercorarium subsp. leptospartum DSM 9219"],["NCBITaxon%3A160845","Thermoclostridium stercorarium subsp. stercorarium"],["NCBITaxon%3A1121335","Thermoclostridium stercorarium subsp. stercorarium DSM 8532"],["NCBITaxon%3A29351","Thermoclostridium stercorarium subsp. thermolacticum"]]},{"id":"NCBITaxon:1512","l":"[Clostridium] symbiosum","na":6,"nb":6,"a":[["biofilm-envo-00002034.html","biofilm"],["animal-house-envo-00003040.html","animal house"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["emulsion-envo-00010506.html","emulsion"],["environmental-feature-envo-00002297.html","environmental feature"],["pig-manure-envo-00003860.html","pig manure"]],"b":[["NCBITaxon%3A1506","Clostridium sp."],["NCBITaxon%3A1512","[Clostridium] symbiosum"],["NCBITaxon%3A411472","[Clostridium] symbiosum ATCC 14940"],["NCBITaxon%3A742740","[Clostridium] symbiosum WAL-14163"],["NCBITaxon%3A742741","[Clostridium] symbiosum WAL-14673"],["NCBITaxon%3A854","Fusobacterium russii"]]},{"id":"NCBITaxon:1773","l":"Mycobacterium tuberculosis","na":5,"nb":2946,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["posterior-lobe-bto-0000561.html","posterior lobe"],["sputum-bto-0001297.html","sputum"],["thorax-bto-0001368.html","thorax"],["thp-1-cell-bto-0001370.html","THP-1 cell"]],"b":[["NCBITaxon%3A1773","Mycobacterium tuberculosis"],["NCBITaxon%3A668339","Mycobacterium tuberculosis 00_1695"],["NCBITaxon%3A1455192","Mycobacterium tuberculosis 01-Cr4_ND_3_A"],["NCBITaxon%3A1455078","Mycobacterium tuberculosis 01-Ps1_0_A"],["NCBITaxon%3A515616","Mycobacterium tuberculosis 02_1987"],["NCBITaxon%3A1455200","Mycobacterium tuberculosis 02-Cr4_ND_3_B"]]},{"id":"NCBITaxon:119045","l":"Methylobacteriaceae","na":5,"nb":2784,"a":[["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["hemolymph-bto-0000572.html","hemolymph"],["urine-bto-0001419.html","urine"],["vaginal-fluid-bto-0003084.html","vaginal fluid"]],"b":[["NCBITaxon%3A204700","bacterium Ellin318"],["NCBITaxon%3A204701","bacterium Ellin330"],["NCBITaxon%3A2730920","Enterovirga aerilata"],["NCBITaxon%3A1339210","Enterovirga rhinocerotis"],["NCBITaxon%3A2026350","Enterovirga sp."],["NCBITaxon%3A3400910","Enterovirga sp. CN4-39"]]},{"id":"NCBITaxon:106589","l":"Cupriavidus","na":5,"nb":878,"a":[["gut-bto-0000545.html","gut"],["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["skin-bto-0001253.html","skin"]],"b":[["NCBITaxon%3A1001822","Cupriavidus agavae"],["NCBITaxon%3A942866","Cupriavidus alkaliphilus"],["NCBITaxon%3A68895","Cupriavidus basilensis"],["NCBITaxon%3A1200775","Cupriavidus basilensis B-8"],["NCBITaxon%3A1127483","Cupriavidus basilensis OR16"],["NCBITaxon%3A151783","Cupriavidus campinensis"]]},{"id":"NCBITaxon:838","l":"Prevotella","na":5,"nb":735,"a":[["brain-bto-0000142.html","brain"],["colon-bto-0000269.html","colon"],["heart-bto-0000562.html","heart"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"]],"b":[["NCBITaxon%3A2838738","Candidatus Prevotella avicola"],["NCBITaxon%3A3083129","Candidatus Prevotella equi"],["NCBITaxon%3A2838739","Candidatus Prevotella intestinigallinarum"],["NCBITaxon%3A2838740","Candidatus Prevotella stercoripullorum"],["NCBITaxon%3A81582","Prevotella aff. ruminicola Tc2-24"],["NCBITaxon%3A419005","Prevotella amnii"]]},{"id":"NCBITaxon:1060","l":"Rhodobacter","na":5,"nb":342,"a":[["gut-bto-0000545.html","gut"],["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["skin-bto-0001253.html","skin"]],"b":[["NCBITaxon%3A196780","Arctic sea ice bacterium ARK10036"],["NCBITaxon%3A1675527","Candidatus Rhodobacter oscarellae"],["NCBITaxon%3A1063","Cereibacter sphaeroides"],["NCBITaxon%3A453582","Rhodobacter aestuarii"],["NCBITaxon%3A70067","Rhodobacter apigmentum"],["NCBITaxon%3A1608946","Rhodobacter azollae"]]},{"id":"NCBITaxon:118968","l":"Coxiellaceae","na":5,"nb":311,"a":[["dorsum-bto-0001713.html","dorsum"],["hemolymph-bto-0000572.html","hemolymph"],["skin-bto-0001253.html","skin"],["tongue-bto-0001385.html","tongue"],["vaginal-fluid-bto-0003084.html","vaginal fluid"]],"b":[["NCBITaxon%3A254246","Aquicella lusitana"],["NCBITaxon%3A254247","Aquicella siphonis"],["NCBITaxon%3A1872583","Aquicella sp."],["NCBITaxon%3A868357","Aquicella sp. 1(27-11)"],["NCBITaxon%3A1084584","Aquicella sp. enrichment culture clone B21"],["NCBITaxon%3A1136692","Aquicella sp. enrichment culture clone CTBE CDB1001G12"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":5,"nb":287,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"],["feces-uberon-0001988.html","feces"],["rectum-bto-0001158.html","rectum"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A666","Vibrio cholerae"],["NCBITaxon%3A693741","Vibrio cholerae 0139-ARG"],["NCBITaxon%3A1294144","Vibrio cholerae 01-1751"],["NCBITaxon%3A592313","Vibrio cholerae 12129(1)"],["NCBITaxon%3A412966","Vibrio cholerae 1587"]]},{"id":"NCBITaxon:1129771","l":"Leptotrichiaceae","na":5,"nb":169,"a":[["dorsum-bto-0001713.html","dorsum"],["gut-bto-0000545.html","gut"],["saliva-bto-0001202.html","saliva"],["skin-bto-0001253.html","skin"],["vaginal-fluid-bto-0003084.html","vaginal fluid"]],"b":[["NCBITaxon%3A1766719","Caviibacter abscessus"],["NCBITaxon%3A2024962","Caviibacter sp."],["NCBITaxon%3A3239304","Leptotrichia alba"],["NCBITaxon%3A40542","Leptotrichia buccalis"],["NCBITaxon%3A523794","Leptotrichia buccalis C-1013-b"],["NCBITaxon%3A230138","Leptotrichia genomosp. C1"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":5,"nb":56,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["pseudostem-bto-0005992.html","pseudostem"],["seedling-bto-0001228.html","seedling"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A61645","Enterobacter asburiae"],["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A1328422","Enterobacter cloacae BIDMC 33A"],["NCBITaxon%3A1439324","Enterobacter cloacae BIDMC 66"],["NCBITaxon%3A1439325","Enterobacter cloacae BIDMC 67"],["NCBITaxon%3A1329846","Enterobacter cloacae BIDMC 8"]]},{"id":"NCBITaxon:747","l":"Pasteurella multocida","na":5,"nb":38,"a":[["bronchus-uberon-0002185.html","bronchus"],["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["finger-bto-0004669.html","finger"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A714","Aggregatibacter actinomycetemcomitans"],["NCBITaxon%3A747","Pasteurella multocida"],["NCBITaxon%3A1298929","Pasteurella multocida 1500C"],["NCBITaxon%3A1298924","Pasteurella multocida 1500E"],["NCBITaxon%3A1298925","Pasteurella multocida 2000"],["NCBITaxon%3A1075089","Pasteurella multocida 36950"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":5,"nb":33,"a":[["liquid-water-envo-00002006.html","liquid water"],["food-spoiled-foodon-00003366.html","food (spoiled)"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"]],"b":[["NCBITaxon%3A85698","Achromobacter xylosoxidans"],["NCBITaxon%3A152480","Burkholderia ambifaria"],["NCBITaxon%3A179879","Burkholderia anthina"],["NCBITaxon%3A488730","Burkholderia arboris"],["NCBITaxon%3A95486","Burkholderia cenocepacia"],["NCBITaxon%3A292","Burkholderia cepacia"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":32,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"],["midgut-bto-0000863.html","midgut"],["paddy-field-envo-00000297.html","paddy field"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["NCBITaxon%3A2703793","Serratia bockelmannii"],["NCBITaxon%3A615","Serratia marcescens"],["NCBITaxon%3A1257036","Serratia marcescens 12"],["NCBITaxon%3A1255611","Serratia marcescens 448"],["NCBITaxon%3A1333586","Serratia marcescens AB42556419-isolate1"],["NCBITaxon%3A1400186","Serratia marcescens BIDMC 44"]]},{"id":"NCBITaxon:114248","l":"Tepidimonas","na":5,"nb":25,"a":[["gut-bto-0000545.html","gut"],["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["skin-bto-0001253.html","skin"]],"b":[["NCBITaxon%3A2588942","Tepidimonas alkaliphilus"],["NCBITaxon%3A247482","Tepidimonas aquatica"],["NCBITaxon%3A288769","Tepidimonas arfidensis"],["NCBITaxon%3A2267262","Tepidimonas charontis"],["NCBITaxon%3A1101373","Tepidimonas fonticaldi"],["NCBITaxon%3A114249","Tepidimonas ignava"]]},{"id":"NCBITaxon:109790","l":"Lactobacillus jensenii","na":5,"nb":22,"a":[["egg-food-product-foodon-00001274.html","egg food product"],["vagina-uberon-0000996.html","vagina"],["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A1579","Lactobacillus acidophilus"],["NCBITaxon%3A109790","Lactobacillus jensenii"],["NCBITaxon%3A440497","Lactobacillus jensenii 1153"],["NCBITaxon%3A575605","Lactobacillus jensenii 115-3-CHN"],["NCBITaxon%3A596326","Lactobacillus jensenii 208-1"],["NCBITaxon%3A596325","Lactobacillus jensenii 269-3"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":5,"nb":22,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["pseudostem-bto-0005992.html","pseudostem"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A221276","[Curtobacterium] plantarum"],["NCBITaxon%3A558","Erwinia sp."],["NCBITaxon%3A83655","Leclercia adecarboxylata"],["NCBITaxon%3A549","Pantoea agglomerans"],["NCBITaxon%3A1261128","Pantoea agglomerans 299R"]]},{"id":"NCBITaxon:1245","l":"Leuconostoc mesenteroides","na":5,"nb":20,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["leaf-po-0025034.html","leaf"],["animal-manure-envo-00003031.html","animal manure"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A33964","Leuconostoc citreum"],["NCBITaxon%3A1245","Leuconostoc mesenteroides"],["NCBITaxon%3A1357402","Leuconostoc mesenteroides A16_17"],["NCBITaxon%3A427140","Leuconostoc mesenteroides KFRI-MG"],["NCBITaxon%3A1429888","Leuconostoc mesenteroides P45"],["NCBITaxon%3A33965","Leuconostoc mesenteroides subsp. cremoris"]]},{"id":"NCBITaxon:95486","l":"Burkholderia cenocepacia","na":5,"nb":18,"a":[["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["NCBITaxon%3A95486","Burkholderia cenocepacia"],["NCBITaxon%3A1110700","Burkholderia cenocepacia AU16956"],["NCBITaxon%3A1110701","Burkholderia cenocepacia AU16958"],["NCBITaxon%3A985077","Burkholderia cenocepacia BC7"],["NCBITaxon%3A1165869","Burkholderia cenocepacia D2AES"],["NCBITaxon%3A1055524","Burkholderia cenocepacia H111"]]},{"id":"NCBITaxon:1363","l":"Lactococcus garvieae","na":5,"nb":16,"a":[["animal-house-envo-00003040.html","animal house"],["gall-bladder-bto-0000493.html","gall bladder"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["geographic-feature-envo-00000000.html","geographic feature"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["NCBITaxon%3A1363","Lactococcus garvieae"],["NCBITaxon%3A998087","Lactococcus garvieae 21881"],["NCBITaxon%3A913847","Lactococcus garvieae 8831"],["NCBITaxon%3A420889","Lactococcus garvieae ATCC 49156"],["NCBITaxon%3A1231377","Lactococcus garvieae DCC43"],["NCBITaxon%3A1229517","Lactococcus garvieae I113"]]},{"id":"NCBITaxon:109326","l":"Anaerovorax","na":5,"nb":15,"a":[["cecum-bto-0000166.html","cecum"],["dorsum-bto-0001713.html","dorsum"],["gut-bto-0000545.html","gut"],["intestine-bto-0000648.html","intestine"],["tongue-bto-0001385.html","tongue"]],"b":[["NCBITaxon%3A109327","Anaerovorax odorimutans"],["NCBITaxon%3A1120998","Anaerovorax odorimutans DSM 5092"],["NCBITaxon%3A1872534","Anaerovorax sp."],["NCBITaxon%3A1151487","Anaerovorax sp. canine oral taxon 125"],["NCBITaxon%3A1729608","Anaerovorax sp. E109"],["NCBITaxon%3A511452","Anaerovorax sp. enrichment culture clone D2CL_Bac_16S_Clone16"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":14,"nb":5,"a":[["watercourse-envo-00000029.html","watercourse"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A34","Myxococcus xanthus"],["NCBITaxon%3A246197","Myxococcus xanthus DK 1622"],["NCBITaxon%3A1198133","Myxococcus xanthus DZ2"],["NCBITaxon%3A1198538","Myxococcus xanthus DZF1"],["NCBITaxon%3A675543","Myxococcus xanthus NewJersey2"]]},{"id":"NCBITaxon:1292","l":"Staphylococcus warneri","na":5,"nb":13,"a":[["neonate-bto-0001762.html","neonate"],["skin-of-body-uberon-0002097.html","skin of body"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A1283","Staphylococcus haemolyticus"],["NCBITaxon%3A1290","Staphylococcus hominis"],["NCBITaxon%3A29385","Staphylococcus saprophyticus"],["NCBITaxon%3A29387","Staphylococcus sp."],["NCBITaxon%3A1292","Staphylococcus warneri"],["NCBITaxon%3A1255582","Staphylococcus warneri 1445"]]},{"id":"NCBITaxon:529","l":"Brucella anthropi","na":5,"nb":13,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["hospital-envo-00002173.html","hospital"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A1775538","Acidovorax sp. JCM 10070"],["NCBITaxon%3A1775539","Acidovorax sp. JCM 10072"],["NCBITaxon%3A529","Brucella anthropi"],["NCBITaxon%3A1201037","Brucella anthropi 60a"],["NCBITaxon%3A439375","Brucella anthropi ATCC 49188"],["NCBITaxon%3A1151114","Brucella anthropi CTS-325"]]},{"id":"NCBITaxon:1318","l":"Streptococcus parasanguinis","na":5,"nb":12,"a":[["biofilm-envo-00002034.html","biofilm"],["geographic-feature-envo-00000000.html","geographic feature"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"],["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["NCBITaxon%3A45634","Streptococcus cristatus"],["NCBITaxon%3A1318","Streptococcus parasanguinis"],["NCBITaxon%3A760570","Streptococcus parasanguinis ATCC 15912"],["NCBITaxon%3A888048","Streptococcus parasanguinis ATCC 903"],["NCBITaxon%3A1073372","Streptococcus parasanguinis CC87K"],["NCBITaxon%3A1403947","Streptococcus parasanguinis DORA_23_24"]]},{"id":"NCBITaxon:1393","l":"Brevibacillus brevis","na":5,"nb":12,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A1391","Aneurinibacillus aneurinilyticus"],["NCBITaxon%3A267746","Aneurinibacillus danicus"],["NCBITaxon%3A47500","Aneurinibacillus migulanus"],["NCBITaxon%3A45462","Brevibacillus borstelensis"],["NCBITaxon%3A1393","Brevibacillus brevis"],["NCBITaxon%3A1129895","Brevibacillus brevis FJAT-0809-GLX"]]},{"id":"NCBITaxon:1405","l":"Bacillus mycoides","na":5,"nb":10,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["milk-uberon-0001913.html","milk"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A1405","Bacillus mycoides"],["NCBITaxon%3A695755","Bacillus mycoides AH1143"],["NCBITaxon%3A526997","Bacillus mycoides DSM 2048"],["NCBITaxon%3A1227358","Bacillus mycoides FSL H7-687"],["NCBITaxon%3A1227359","Bacillus mycoides FSL R5-860"],["NCBITaxon%3A315730","Bacillus mycoides KBAB4"]]},{"id":"NCBITaxon:354242","l":"Campylobacter jejuni subsp. jejuni 81-176","na":5,"nb":9,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["leukocyte-bto-0000751.html","leukocyte"],["lymphocyte-bto-0000775.html","lymphocyte"],["neutrophil-bto-0000130.html","neutrophil"],["small-intestine-bto-0000651.html","small intestine"]],"b":[["NCBITaxon%3A354242","Campylobacter jejuni subsp. jejuni 81-176"],["NCBITaxon%3A1368608","Campylobacter jejuni subsp. jejuni 81-176-55"],["NCBITaxon%3A1368609","Campylobacter jejuni subsp. jejuni 81-176-55-O1"],["NCBITaxon%3A1368610","Campylobacter jejuni subsp. jejuni 81-176-55-O3"],["NCBITaxon%3A1368611","Campylobacter jejuni subsp. jejuni 81-176-55-T1"],["NCBITaxon%3A1368612","Campylobacter jejuni subsp. jejuni 81-176-55-T3"]]},{"id":"NCBITaxon:37919","l":"Rhodococcus opacus","na":5,"nb":9,"a":[["watercourse-envo-00000029.html","watercourse"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"],["sludge-envo-00002044.html","sludge"],["water-scum-envo-00005794.html","water scum"]],"b":[["NCBITaxon%3A1833","Rhodococcus erythropolis"],["NCBITaxon%3A37919","Rhodococcus opacus"],["NCBITaxon%3A632772","Rhodococcus opacus B4"],["NCBITaxon%3A1129896","Rhodococcus opacus M213"],["NCBITaxon%3A1219021","Rhodococcus opacus NBRC 100626"],["NCBITaxon%3A543736","Rhodococcus opacus PD630"]]},{"id":"NCBITaxon:732","l":"Aggregatibacter aphrophilus","na":9,"nb":5,"a":[["bone-element-uberon-0001474.html","bone element"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["archeological-site-envo-00000564.html","archeological site"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["NCBITaxon%3A732","Aggregatibacter aphrophilus"],["NCBITaxon%3A985008","Aggregatibacter aphrophilus ATCC 33389"],["NCBITaxon%3A679198","Aggregatibacter aphrophilus F0387"],["NCBITaxon%3A634176","Aggregatibacter aphrophilus NJ8700"],["NCBITaxon%3A249188","Haemophilus pittmaniae"]]},{"id":"NCBITaxon:1015","l":"Bergeyella zoohelcum","na":8,"nb":5,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["biotope-envo-00002036.html","biotope"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A1962306","Bergeyella sp."],["NCBITaxon%3A1015","Bergeyella zoohelcum"],["NCBITaxon%3A883096","Bergeyella zoohelcum ATCC 43767"],["NCBITaxon%3A883098","Bergeyella zoohelcum CCUG 30536"],["NCBITaxon%3A34059","Faucicola atlantae"]]},{"id":"NCBITaxon:1505","l":"Paraclostridium sordellii","na":8,"nb":5,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["animal-house-envo-00003040.html","animal house"],["animal-litter-envo-00002191.html","animal litter"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["mud-envo-01000001.html","mud"]],"b":[["NCBITaxon%3A1490","Paraclostridium bifermentans"],["NCBITaxon%3A1505","Paraclostridium sordellii"],["NCBITaxon%3A1172204","Paraclostridium sordellii 8483"],["NCBITaxon%3A1292036","Paraclostridium sordellii ATCC 9714"],["NCBITaxon%3A1292035","Paraclostridium sordellii VPI 9048"]]},{"id":"NCBITaxon:28038","l":"Latilactobacillus curvatus","na":5,"nb":8,"a":[["research-facility-envo-00000469.html","research facility"],["food-fermented-foodon-00001258.html","food (fermented)"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A418199","Lactobacillus sp. JCM 7527"],["NCBITaxon%3A28038","Latilactobacillus curvatus"],["NCBITaxon%3A1074451","Latilactobacillus curvatus CRL 705"],["NCBITaxon%3A1357401","Latilactobacillus curvatus F16_9"],["NCBITaxon%3A1293592","Latilactobacillus curvatus JCM 1096 = DSM 20019"],["NCBITaxon%3A1318630","Latilactobacillus curvatus WSU1"]]},{"id":"NCBITaxon:29355","l":"Ruminiclostridium cellobioparum","na":7,"nb":5,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["activated-sludge-envo-00002046.html","activated sludge"],["cultivated-environment-envo-01000311.html","cultivated environment"],["mud-envo-01000001.html","mud"],["pig-manure-envo-00003860.html","pig manure"]],"b":[["NCBITaxon%3A29355","Ruminiclostridium cellobioparum"],["NCBITaxon%3A1121303","Ruminiclostridium cellobioparum DSM 1351 = ATCC 15832"],["NCBITaxon%3A2305018","Ruminiclostridium cellobioparum subsp. cellobioparum"],["NCBITaxon%3A29371","Ruminiclostridium cellobioparum subsp. termitidis"],["NCBITaxon%3A1195236","Ruminiclostridium cellobioparum subsp. termitidis CT1112"]]},{"id":"NCBITaxon:40518","l":"Ruminococcus bromii","na":5,"nb":7,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["emulsion-envo-00010506.html","emulsion"],["skin-environment-envo-2100003.html","skin environment"],["animal-habitation-envo-00005803.html","animal habitation"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A40518","Ruminococcus bromii"],["NCBITaxon%3A657321","Ruminococcus bromii L2-63"],["NCBITaxon%3A1339598","Ruminococcus bromii TSDC10.1-1.1"],["NCBITaxon%3A1339599","Ruminococcus bromii TSDC10.2-1.1"],["NCBITaxon%3A1339600","Ruminococcus bromii TSDC17.2-1.1"],["NCBITaxon%3A1339601","Ruminococcus bromii TSDC17.2-1.2"]]},{"id":"NCBITaxon:1032526","l":"Pedosphaera","na":5,"nb":6,"a":[["cecum-bto-0000166.html","cecum"],["gut-bto-0000545.html","gut"],["inflorescence-bto-0000628.html","inflorescence"],["plant-bto-0001481.html","plant"],["root-bto-0001188.html","root"]],"b":[["NCBITaxon%3A1032527","Pedosphaera parvula"],["NCBITaxon%3A320771","Pedosphaera parvula Ellin514"],["NCBITaxon%3A2024890","Pedosphaera sp."],["NCBITaxon%3A1805321","Pedosphaera sp. 13_1_40CM_3_59_3"],["NCBITaxon%3A1982324","Pedosphaera sp. Tous-C6FEB"],["NCBITaxon%3A1191521","uncultured Pedosphaera sp."]]},{"id":"NCBITaxon:114847","l":"uncultured Roseobacter sp.","na":5,"nb":6,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"],["marine-environment-envo-01000320.html","marine environment"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"]],"b":[["NCBITaxon%3A1906325","uncultured Roseobacter bacterium"],["NCBITaxon%3A1906326","uncultured Roseobacter clade_AS-21 lineage bacterium"],["NCBITaxon%3A1906327","uncultured Roseobacter clade_DC5-80-3 lineage bacterium"],["NCBITaxon%3A1906328","uncultured Roseobacter clade_NAC11-7 lineage bacterium"],["NCBITaxon%3A1906329","uncultured Roseobacter clade_OCT lineage bacterium"],["NCBITaxon%3A114847","uncultured Roseobacter sp."]]},{"id":"NCBITaxon:1288","l":"Staphylococcus xylosus","na":5,"nb":6,"a":[["stream-envo-00000023.html","stream"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"],["fecal-environment-envo-01001029.html","fecal environment"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["NCBITaxon%3A246432","Staphylococcus equorum"],["NCBITaxon%3A1293","Staphylococcus gallinarum"],["NCBITaxon%3A29387","Staphylococcus sp."],["NCBITaxon%3A1288","Staphylococcus xylosus"],["NCBITaxon%3A1353979","Staphylococcus xylosus DMB3-Bh1"],["NCBITaxon%3A1262650","Staphylococcus xylosus NJ"]]},{"id":"NCBITaxon:1861","l":"Geodermatophilus obscurus","na":5,"nb":6,"a":[["desert-sand-envo-00005800.html","desert sand"],["tropical-envo-01000204.html","tropical"],["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A1296565","Geodermatophilus amargosae"],["NCBITaxon%3A1523247","Geodermatophilus dictyosporus"],["NCBITaxon%3A1861","Geodermatophilus obscurus"],["NCBITaxon%3A526225","Geodermatophilus obscurus DSM 43160"],["NCBITaxon%3A1523248","Geodermatophilus obscurus subsp. utahensis"],["NCBITaxon%3A97398","Streptomyces abikoensis"]]},{"id":"NCBITaxon:29549","l":"Rhodothermus marinus","na":6,"nb":5,"a":[["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["cultivated-environment-envo-01000311.html","cultivated environment"],["freshwater-environment-envo-01000306.html","freshwater environment"],["oil-spill-envo-00002061.html","oil spill"],["phreatic-zone-envo-00000329.html","phreatic zone"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A29549","Rhodothermus marinus"],["NCBITaxon%3A518766","Rhodothermus marinus DSM 4252"],["NCBITaxon%3A1295135","Rhodothermus marinus JCM 9785"],["NCBITaxon%3A762569","Rhodothermus marinus SG0.5JP17-171"],["NCBITaxon%3A762570","Rhodothermus marinus SG0.5JP17-172"]]},{"id":"NCBITaxon:34062","l":"Faucicola osloensis","na":5,"nb":6,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"],["water-scum-envo-00005794.html","water scum"]],"b":[["NCBITaxon%3A34062","Faucicola osloensis"],["NCBITaxon%3A478","Moraxella nonliquefaciens"],["NCBITaxon%3A1138309","Moraxella osloensis ARD 1"],["NCBITaxon%3A1138312","Moraxella osloensis ARD 11"],["NCBITaxon%3A1138310","Moraxella osloensis ARD 2"],["NCBITaxon%3A1138311","Moraxella osloensis ARD 3"]]},{"id":"NCBITaxon:730","l":"[Haemophilus] ducreyi","na":5,"nb":6,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["NCBITaxon%3A730","[Haemophilus] ducreyi"],["NCBITaxon%3A1005044","[Haemophilus] ducreyi 025"],["NCBITaxon%3A233412","[Haemophilus] ducreyi 35000HP"],["NCBITaxon%3A1005045","[Haemophilus] ducreyi 511"],["NCBITaxon%3A1005046","[Haemophilus] ducreyi ATCC 33921"],["NCBITaxon%3A1005047","[Haemophilus] ducreyi HMC112"]]},{"id":"NCBITaxon:1659","l":"Actinomyces israelii","na":5,"nb":5,"a":[["bone-element-uberon-0001474.html","bone element"],["archeological-site-envo-00000564.html","archeological site"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"],["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["NCBITaxon%3A52769","Actinomyces gerencseriae"],["NCBITaxon%3A1659","Actinomyces israelii"],["NCBITaxon%3A1120944","Actinomyces israelii DSM 43320"],["NCBITaxon%3A686663","Actinomyces israelii F0345"],["NCBITaxon%3A1655","Actinomyces naeslundii"]]},{"id":"NCBITaxon:2047","l":"Rothia dentocariosa","na":5,"nb":5,"a":[["water-body-envo-00000063.html","water body"],["skin-of-body-uberon-0002097.html","skin of body"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["tropical-envo-01000204.html","tropical"],["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["NCBITaxon%3A42858","Mammaliicoccus lentus"],["NCBITaxon%3A2047","Rothia dentocariosa"],["NCBITaxon%3A762948","Rothia dentocariosa ATCC 17931"],["NCBITaxon%3A553202","Rothia dentocariosa JCVIHMP031"],["NCBITaxon%3A563032","Rothia dentocariosa M567"]]},{"id":"NCBITaxon:1385","l":"Caryophanales","na":4,"nb":64257,"a":[["hand-bto-0004668.html","hand"],["intestine-bto-0000648.html","intestine"],["leaf-bto-0000713.html","leaf"],["mouth-bto-0001090.html","mouth"]],"b":[["NCBITaxon%3A3417167","Abyssicoccaceae bacterium KTH-63"],["NCBITaxon%3A1817405","Abyssicoccus albus"],["NCBITaxon%3A1973112","Abyssicoccus sp."],["NCBITaxon%3A1870825","Acidibacillus sp."],["NCBITaxon%3A3054939","Aciduricibacillus chroicocephali"],["NCBITaxon%3A279215","Aeribacillus alveayuensis"]]},{"id":"NCBITaxon:356","l":"Hyphomicrobiales","na":4,"nb":37310,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["stem-bto-0001300.html","stem"]],"b":[["NCBITaxon%3A119160","2,3-D degrading bacterium NHC2"],["NCBITaxon%3A119159","2,3-D degrading bacterium NHG3"],["NCBITaxon%3A83488","2,4-D degrading bacterium M1"],["NCBITaxon%3A2910977","Acuticoccus kalidii"],["NCBITaxon%3A2073160","Acuticoccus kandeliae"],["NCBITaxon%3A2796142","Acuticoccus mangrovi"]]},{"id":"NCBITaxon:374","l":"Bradyrhizobium","na":4,"nb":9860,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"],["wood-bto-0005516.html","wood"]],"b":[["NCBITaxon%3A2683706","Bradyrhizobium acaciae"],["NCBITaxon%3A2734909","Bradyrhizobium aeschynomenes"],["NCBITaxon%3A2751811","Bradyrhizobium agreste"],["NCBITaxon%3A634784","Bradyrhizobium algeriense"],["NCBITaxon%3A1571202","Bradyrhizobium altum"],["NCBITaxon%3A1300045","Bradyrhizobium americanum"]]},{"id":"NCBITaxon:33882","l":"Microbacterium","na":4,"nb":5935,"a":[["leaf-bto-0000713.html","leaf"],["pitcher-bto-0001069.html","pitcher"],["small-intestine-bto-0000651.html","small intestine"],["stem-bto-0001300.html","stem"]],"b":[["NCBITaxon%3A196883","Arctic sea ice bacterium ARK10030"],["NCBITaxon%3A3121366","Candidatus Microbacterium colombiense"],["NCBITaxon%3A3121374","Candidatus Microbacterium phytovorans"],["NCBITaxon%3A2838696","Candidatus Microbacterium pullistercoris"],["NCBITaxon%3A2838697","Candidatus Microbacterium stercoravium"],["NCBITaxon%3A272239","Gulosibacter bifidus"]]},{"id":"NCBITaxon:1827","l":"Rhodococcus","na":4,"nb":3197,"a":[["nectar-bto-0000537.html","nectar"],["pitcher-bto-0001069.html","pitcher"],["small-intestine-bto-0000651.html","small intestine"],["stem-bto-0001300.html","stem"]],"b":[["NCBITaxon%3A179179","bromate-reducing bacterium B7"],["NCBITaxon%3A179180","bromate-reducing bacterium B8"],["NCBITaxon%3A983873","Dietzia aurantiaca"],["NCBITaxon%3A84096","Gordonia alkanivorans"],["NCBITaxon%3A178933","PAH-contaminated sludge bacterium PB-32"],["NCBITaxon%3A43767","Prescottella equi"]]},{"id":"NCBITaxon:75682","l":"Oxalobacteraceae","na":4,"nb":3139,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["NCBITaxon%3A1051899","Actimicrobium antarcticum"],["NCBITaxon%3A2792609","Actimicrobium sp."],["NCBITaxon%3A3048606","Actimicrobium sp. CCC2.4"],["NCBITaxon%3A3048616","Actimicrobium sp. CCI2.3"],["NCBITaxon%3A3071708","Actimicrobium sp. GrIS 1.19"],["NCBITaxon%3A1550357","Actimicrobium sp. MsC-12-4CB4-02"]]},{"id":"NCBITaxon:186804","l":"Peptostreptococcaceae","na":4,"nb":684,"a":[["adult-bto-0001043.html","adult"],["ileum-bto-0000620.html","ileum"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A29359","Asaccharospora irregularis"],["NCBITaxon%3A1121321","Asaccharospora irregularis DSM 2635"],["NCBITaxon%3A1965303","Asaccharospora sp."],["NCBITaxon%3A226526","Candidatus Peptostreptococcus massiliensis"],["NCBITaxon%3A155565","Clostridioides aff. difficile AA1"],["NCBITaxon%3A1496","Clostridioides difficile"]]},{"id":"NCBITaxon:204432","l":"Terriglobia","na":4,"nb":410,"a":[["crop-bto-0000301.html","crop"],["leaf-bto-0000713.html","leaf"],["oil-secretion-bto-0005373.html","oil secretion"],["trunk-bto-0001493.html","trunk"]],"b":[["NCBITaxon%3A1335627","Acidicapsa acidiphila"],["NCBITaxon%3A1615681","Acidicapsa acidisoli"],["NCBITaxon%3A946336","Acidicapsa borealis"],["NCBITaxon%3A2218256","Acidicapsa dinghuensis"],["NCBITaxon%3A1335629","Acidicapsa ferrireducens"],["NCBITaxon%3A542300","Acidicapsa ligni"]]},{"id":"NCBITaxon:102106","l":"Collinsella","na":4,"nb":287,"a":[["cecum-bto-0000166.html","cecum"],["gut-bto-0000545.html","gut"],["intestine-bto-0000648.html","intestine"],["juvenile-bto-0002168.html","juvenile"]],"b":[["NCBITaxon%3A2838522","Candidatus Collinsella stercoripullorum"],["NCBITaxon%3A2713419","Collinsella acetigenes"],["NCBITaxon%3A74426","Collinsella aerofaciens"],["NCBITaxon%3A411903","Collinsella aerofaciens ATCC 25986"],["NCBITaxon%3A1339403","Collinsella aerofaciens TSDA1.2-1.1"],["NCBITaxon%3A1339404","Collinsella aerofaciens TSDA1.2-1.2"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":4,"nb":178,"a":[["stream-envo-00000023.html","stream"],["biome-envo-00000428.html","biome"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["NCBITaxon%3A150055","Streptococcus lutetiensis"],["NCBITaxon%3A1309","Streptococcus mutans"],["NCBITaxon%3A857155","Streptococcus mutans 11A1"],["NCBITaxon%3A857147","Streptococcus mutans 11SSST2"],["NCBITaxon%3A857143","Streptococcus mutans 11VS1"],["NCBITaxon%3A857113","Streptococcus mutans 14D"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":4,"nb":156,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A1428","Bacillus thuringiensis"],["NCBITaxon%3A1340496","Bacillus thuringiensis AKS-7"],["NCBITaxon%3A714359","Bacillus thuringiensis BMB171"],["NCBITaxon%3A1423143","Bacillus thuringiensis Bt18247"],["NCBITaxon%3A1423142","Bacillus thuringiensis Bt18679"],["NCBITaxon%3A527021","Bacillus thuringiensis Bt407"]]},{"id":"NCBITaxon:195","l":"Campylobacter coli","na":4,"nb":122,"a":[["feces-uberon-0001988.html","feces"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A195","Campylobacter coli"],["NCBITaxon%3A887290","Campylobacter coli 1091"],["NCBITaxon%3A887291","Campylobacter coli 1098"],["NCBITaxon%3A887280","Campylobacter coli 111-3"],["NCBITaxon%3A887292","Campylobacter coli 1148"],["NCBITaxon%3A887282","Campylobacter coli 132-6"]]},{"id":"NCBITaxon:518","l":"Bordetella bronchiseptica","na":4,"nb":68,"a":[["mc3t3-e1-cell-bto-0001957.html","MC3T3-E1 cell"],["osteoblast-bto-0001593.html","osteoblast"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"]],"b":[["NCBITaxon%3A518","Bordetella bronchiseptica"],["NCBITaxon%3A1331198","Bordetella bronchiseptica 00-P-2730"],["NCBITaxon%3A1331199","Bordetella bronchiseptica 00-P-2796"],["NCBITaxon%3A1208657","Bordetella bronchiseptica 1289"],["NCBITaxon%3A1331246","Bordetella bronchiseptica 2230997"],["NCBITaxon%3A568707","Bordetella bronchiseptica 253"]]},{"id":"NCBITaxon:10","l":"Cellvibrio","na":4,"nb":67,"a":[["inflorescence-bto-0000628.html","inflorescence"],["plant-bto-0001481.html","plant"],["root-bto-0001188.html","root"],["seedling-bto-0001228.html","seedling"]],"b":[["NCBITaxon%3A3102792","Cellvibrio chitinivorans"],["NCBITaxon%3A1193626","Cellvibrio diazotrophicus"],["NCBITaxon%3A126350","Cellvibrio fibrivorans"],["NCBITaxon%3A1815559","Cellvibrio fontiphilus"],["NCBITaxon%3A180916","Cellvibrio fulvus"],["NCBITaxon%3A126348","Cellvibrio gandavensis"]]},{"id":"NCBITaxon:1257","l":"Peptostreptococcus","na":4,"nb":59,"a":[["dorsum-bto-0001713.html","dorsum"],["saliva-bto-0001202.html","saliva"],["sgs-cell-bto-0001210.html","SGS cell"],["tongue-bto-0001385.html","tongue"]],"b":[["NCBITaxon%3A226526","Candidatus Peptostreptococcus massiliensis"],["NCBITaxon%3A1261","Peptostreptococcus anaerobius"],["NCBITaxon%3A596329","Peptostreptococcus anaerobius 653-L"],["NCBITaxon%3A1263100","Peptostreptococcus anaerobius CAG:621"],["NCBITaxon%3A1073365","Peptostreptococcus anaerobius CC14N"],["NCBITaxon%3A1035196","Peptostreptococcus anaerobius VPI 4330 = DSM 2949"]]},{"id":"NCBITaxon:520","l":"Bordetella pertussis","na":4,"nb":50,"a":[["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["NCBITaxon%3A520","Bordetella pertussis"],["NCBITaxon%3A1403053","Bordetella pertussis 137"],["NCBITaxon%3A568706","Bordetella pertussis 18323"],["NCBITaxon%3A1460378","Bordetella pertussis 1996168"],["NCBITaxon%3A1331247","Bordetella pertussis 2250905"],["NCBITaxon%3A1331248","Bordetella pertussis 2356847"]]},{"id":"NCBITaxon:504","l":"Kingella kingae","na":4,"nb":47,"a":[["bone-element-uberon-0001474.html","bone element"],["foot-bto-0000476.html","foot"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["NCBITaxon%3A504","Kingella kingae"],["NCBITaxon%3A1188007","Kingella kingae 11220434"],["NCBITaxon%3A1305792","Kingella kingae AA068"],["NCBITaxon%3A1305787","Kingella kingae AA105"],["NCBITaxon%3A1305788","Kingella kingae AA255"],["NCBITaxon%3A1305791","Kingella kingae AA417"]]},{"id":"NCBITaxon:150022","l":"Finegoldia","na":4,"nb":39,"a":[["hand-bto-0004668.html","hand"],["sgs-cell-bto-0001210.html","SGS cell"],["vagina-bto-0000243.html","vagina"],["vaginal-fluid-bto-0003084.html","vaginal fluid"]],"b":[["NCBITaxon%3A3145239","Finegoldia dalianensis"],["NCBITaxon%3A1260","Finegoldia magna"],["NCBITaxon%3A768713","Finegoldia magna ACS-171-V-Col3"],["NCBITaxon%3A1459804","Finegoldia magna ALB8"],["NCBITaxon%3A334413","Finegoldia magna ATCC 29328"],["NCBITaxon%3A525282","Finegoldia magna ATCC 53516"]]},{"id":"NCBITaxon:155493","l":"Gallibacterium","na":4,"nb":35,"a":[["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"],["tongue-bto-0001385.html","tongue"],["trachea-bto-0001388.html","trachea"]],"b":[["NCBITaxon%3A750","Gallibacterium anatis"],["NCBITaxon%3A1396515","Gallibacterium anatis 10672-6"],["NCBITaxon%3A1195244","Gallibacterium anatis 12656/12"],["NCBITaxon%3A1396510","Gallibacterium anatis 4895"],["NCBITaxon%3A1396511","Gallibacterium anatis 7990"],["NCBITaxon%3A1380411","Gallibacterium anatis biovar haemolytica"]]},{"id":"NCBITaxon:1335","l":"Streptococcus equinus","na":4,"nb":27,"a":[["foregut-bto-0000507.html","foregut"],["stomach-bto-0001307.html","stomach"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["NCBITaxon%3A1335","Streptococcus equinus"],["NCBITaxon%3A1410675","Streptococcus equinus 2B"],["NCBITaxon%3A1210006","Streptococcus equinus ATCC 33317"],["NCBITaxon%3A864569","Streptococcus equinus ATCC 700338"],["NCBITaxon%3A525379","Streptococcus equinus ATCC 9812"],["NCBITaxon%3A1280690","Streptococcus equinus B315"]]},{"id":"NCBITaxon:158851","l":"Trabulsiella","na":4,"nb":24,"a":[["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"],["midgut-bto-0000863.html","midgut"],["pseudostem-bto-0005992.html","pseudostem"]],"b":[["NCBITaxon%3A158852","Trabulsiella guamensis"],["NCBITaxon%3A1005994","Trabulsiella guamensis ATCC 49490"],["NCBITaxon%3A379893","Trabulsiella odontotermitis"],["NCBITaxon%3A1905692","Trabulsiella sp."],["NCBITaxon%3A1661248","Trabulsiella sp. 12x"],["NCBITaxon%3A1547017","Trabulsiella sp. 140H"]]},{"id":"NCBITaxon:33","l":"Myxococcus fulvus","na":21,"nb":4,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"]],"b":[["NCBITaxon%3A33","Myxococcus fulvus"],["NCBITaxon%3A1334629","Myxococcus fulvus 124B02"],["NCBITaxon%3A483219","Myxococcus fulvus HW-1"],["NCBITaxon%3A675525","Myxococcus fulvus Mx f65"]]},{"id":"NCBITaxon:85698","l":"Achromobacter xylosoxidans","na":4,"nb":21,"a":[["hospital-envo-00002173.html","hospital"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["NCBITaxon%3A1389935","Achromobacter animicus"],["NCBITaxon%3A1353891","Achromobacter deleyi"],["NCBITaxon%3A32002","Achromobacter denitrificans"],["NCBITaxon%3A217204","Achromobacter insolitus"],["NCBITaxon%3A1287735","Achromobacter insuavis"],["NCBITaxon%3A470868","Achromobacter marplatensis"]]},{"id":"NCBITaxon:305","l":"Ralstonia solanacearum","na":4,"nb":19,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"],["pseudostem-bto-0005992.html","pseudostem"],["xylem-bto-0001468.html","xylem"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A1310165","Ralstonia pseudosolanacearum"],["NCBITaxon%3A305","Ralstonia solanacearum"],["NCBITaxon%3A859656","Ralstonia solanacearum CFBP2957"],["NCBITaxon%3A859655","Ralstonia solanacearum CMR15"],["NCBITaxon%3A1130828","Ralstonia solanacearum FJAT-1458"],["NCBITaxon%3A1130829","Ralstonia solanacearum FJAT-91"]]},{"id":"NCBITaxon:1334","l":"Streptococcus dysgalactiae","na":4,"nb":15,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["NCBITaxon%3A1334","Streptococcus dysgalactiae"],["NCBITaxon%3A99822","Streptococcus dysgalactiae subsp. dysgalactiae"],["NCBITaxon%3A663952","Streptococcus dysgalactiae subsp. dysgalactiae ATCC 27957"],["NCBITaxon%3A119602","Streptococcus dysgalactiae subsp. equisimilis"],["NCBITaxon%3A1247189","Streptococcus dysgalactiae subsp. equisimilis 167"],["NCBITaxon%3A759913","Streptococcus dysgalactiae subsp. equisimilis AC-2713"]]},{"id":"NCBITaxon:36773","l":"Burkholderia sp.","na":4,"nb":15,"a":[["compost-envo-00002170.html","compost"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["NCBITaxon%3A1108140","Burkholderia catarinensis"],["NCBITaxon%3A36773","Burkholderia sp."],["NCBITaxon%3A1777142","Caballeronia arationis"],["NCBITaxon%3A1777135","Caballeronia arvi"],["NCBITaxon%3A1777139","Caballeronia calidae"],["NCBITaxon%3A1777136","Caballeronia catudaia"]]},{"id":"NCBITaxon:480","l":"Moraxella catarrhalis","na":4,"nb":15,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["middle-ear-bto-0002099.html","middle ear"],["nasopharynx-bto-0000662.html","nasopharynx"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A480","Moraxella catarrhalis"],["NCBITaxon%3A857572","Moraxella catarrhalis 101P30B1"],["NCBITaxon%3A857579","Moraxella catarrhalis 103P14B1"],["NCBITaxon%3A857577","Moraxella catarrhalis 12P80B1"],["NCBITaxon%3A857578","Moraxella catarrhalis 46P47B1"],["NCBITaxon%3A857581","Moraxella catarrhalis 7169"]]},{"id":"NCBITaxon:1587","l":"Lactobacillus helveticus","na":4,"nb":14,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["intestine-environment-envo-2100002.html","intestine environment"],["urban-biome-envo-01000249.html","urban biome"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A1587","Lactobacillus helveticus"],["NCBITaxon%3A1226336","Lactobacillus helveticus CIRM-BIA 101"],["NCBITaxon%3A1226332","Lactobacillus helveticus CIRM-BIA 103"],["NCBITaxon%3A1226333","Lactobacillus helveticus CIRM-BIA 104"],["NCBITaxon%3A1226334","Lactobacillus helveticus CIRM-BIA 951"],["NCBITaxon%3A1226335","Lactobacillus helveticus CIRM-BIA 953"]]},{"id":"NCBITaxon:206","l":"Campylobacter sputorum","na":4,"nb":13,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["feces-uberon-0001988.html","feces"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A198","Campylobacter hyointestinalis"],["NCBITaxon%3A91352","Campylobacter hyointestinalis subsp. hyointestinalis"],["NCBITaxon%3A202","Campylobacter mucosalis"],["NCBITaxon%3A206","Campylobacter sputorum"],["NCBITaxon%3A1031919","Campylobacter sputorum biovar fecalis"],["NCBITaxon%3A593874","Campylobacter sputorum biovar paraureolyticus"]]},{"id":"NCBITaxon:1254","l":"Pediococcus acidilactici","na":4,"nb":11,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["research-facility-envo-00000469.html","research facility"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A1245","Leuconostoc mesenteroides"],["NCBITaxon%3A1254","Pediococcus acidilactici"],["NCBITaxon%3A563194","Pediococcus acidilactici 7_4"],["NCBITaxon%3A1384067","Pediococcus acidilactici AGR20"],["NCBITaxon%3A1306952","Pediococcus acidilactici D3"],["NCBITaxon%3A862514","Pediococcus acidilactici DSM 20284"]]},{"id":"NCBITaxon:111805","l":"Actinomadura pelletieri","na":10,"nb":4,"a":[["lake-envo-00000020.html","lake"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["foot-bto-0000476.html","foot"],["rhizosphere-envo-00005801.html","rhizosphere"],["organic-material-envo-01000155.html","organic material"]],"b":[["NCBITaxon%3A163603","Actinomadura latina"],["NCBITaxon%3A111805","Actinomadura pelletieri"],["NCBITaxon%3A1120940","Actinomadura pelletieri DSM 43383"],["NCBITaxon%3A37329","Nocardia farcinica"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":4,"nb":10,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A1891658","Geobacillus sp."],["NCBITaxon%3A1422","Geobacillus stearothermophilus"],["NCBITaxon%3A272567","Geobacillus stearothermophilus 10"],["NCBITaxon%3A1366047","Geobacillus stearothermophilus ATCC 12980"],["NCBITaxon%3A937593","Geobacillus stearothermophilus ATCC 7953"],["NCBITaxon%3A664733","Geobacillus stearothermophilus C56-N21"]]},{"id":"NCBITaxon:147","l":"Spirochaeta aurantia","na":10,"nb":4,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["water-body-envo-00000063.html","water body"]],"b":[["NCBITaxon%3A147","Spirochaeta aurantia"],["NCBITaxon%3A143778","Spirochaeta aurantia subsp. aurantia"],["NCBITaxon%3A555314","Spirochaeta aurantia subsp. aurantia M1"],["NCBITaxon%3A143779","Spirochaeta aurantia subsp. stricta"]]},{"id":"NCBITaxon:2209","l":"Methanosarcina mazei","na":4,"nb":10,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["sludge-envo-00002044.html","sludge"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["NCBITaxon%3A2209","Methanosarcina mazei"],["NCBITaxon%3A1434113","Methanosarcina mazei C16"],["NCBITaxon%3A192952","Methanosarcina mazei Go1"],["NCBITaxon%3A1293038","Methanosarcina mazei JCM 9314"],["NCBITaxon%3A1434114","Methanosarcina mazei LYC"],["NCBITaxon%3A213585","Methanosarcina mazei S-6"]]},{"id":"NCBITaxon:32002","l":"Achromobacter denitrificans","na":4,"nb":10,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"],["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A1353888","Achromobacter agilis"],["NCBITaxon%3A1353891","Achromobacter deleyi"],["NCBITaxon%3A32002","Achromobacter denitrificans"],["NCBITaxon%3A1255278","Achromobacter denitrificans NBRC 15125"],["NCBITaxon%3A1389922","Achromobacter mucicolens"],["NCBITaxon%3A134375","Achromobacter sp."]]},{"id":"NCBITaxon:76832","l":"Myroides odoratimimus","na":4,"nb":10,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["foot-bto-0000476.html","foot"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A979","Cellulophaga lytica"],["NCBITaxon%3A867900","Cellulophaga lytica DSM 7489"],["NCBITaxon%3A76832","Myroides odoratimimus"],["NCBITaxon%3A883150","Myroides odoratimimus CCUG 10230"],["NCBITaxon%3A883151","Myroides odoratimimus CCUG 12700"],["NCBITaxon%3A883152","Myroides odoratimimus CCUG 12901"]]},{"id":"NCBITaxon:87883","l":"Burkholderia multivorans","na":4,"nb":10,"a":[["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["NCBITaxon%3A87883","Burkholderia multivorans"],["NCBITaxon%3A395019","Burkholderia multivorans ATCC 17616"],["NCBITaxon%3A985079","Burkholderia multivorans ATCC BAA-247"],["NCBITaxon%3A985078","Burkholderia multivorans CF2"],["NCBITaxon%3A513051","Burkholderia multivorans CGD1"],["NCBITaxon%3A513052","Burkholderia multivorans CGD2"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":4,"nb":9,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["carcass-envo-00002033.html","carcass"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A28031","Lysinibacillus fusiformis"],["NCBITaxon%3A1130819","Lysinibacillus mangiferihumi"],["NCBITaxon%3A1421","Lysinibacillus sphaericus"],["NCBITaxon%3A444177","Lysinibacillus sphaericus C3-41"],["NCBITaxon%3A1400869","Lysinibacillus sphaericus CBAM5"],["NCBITaxon%3A1354027","Lysinibacillus sphaericus KCTC 3346"]]},{"id":"NCBITaxon:1682","l":"Bifidobacterium longum subsp. infantis","na":4,"nb":9,"a":[["egg-food-product-foodon-00001274.html","egg food product"],["breast-bto-0000149.html","breast"],["ht-29-cell-bto-0000182.html","HT-29 cell"],["ma-104-cell-bto-0004983.html","MA-104 cell"]],"b":[["NCBITaxon%3A1686","Bifidobacterium catenulatum"],["NCBITaxon%3A630129","Bifidobacterium catenulatum subsp. kashiwanohense"],["NCBITaxon%3A216816","Bifidobacterium longum"],["NCBITaxon%3A1682","Bifidobacterium longum subsp. infantis"],["NCBITaxon%3A565040","Bifidobacterium longum subsp. infantis 157F"],["NCBITaxon%3A391904","Bifidobacterium longum subsp. infantis ATCC 15697 = JCM 1222 = DSM 20088"]]},{"id":"NCBITaxon:1930","l":"Streptomyces scabiei","na":4,"nb":9,"a":[["a10-cell-bto-0002196.html","A10 cell"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["NCBITaxon%3A2993540","Streptomyces griseiscabiei"],["NCBITaxon%3A1930","Streptomyces scabiei"],["NCBITaxon%3A680198","Streptomyces scabiei 87.22"],["NCBITaxon%3A175280","Streptomyces scabiei subsp. chosun"],["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A74595","Streptomyces sp. ATCC 10246"]]},{"id":"NCBITaxon:1660","l":"Schaalia odontolytica","na":8,"nb":4,"a":[["macrophage-bto-0000801.html","macrophage"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["plant-gall-po-0025626.html","plant gall"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"]],"b":[["NCBITaxon%3A52769","Actinomyces gerencseriae"],["NCBITaxon%3A1660","Schaalia odontolytica"],["NCBITaxon%3A562972","Schaalia odontolytica C702"],["NCBITaxon%3A649742","Schaalia odontolytica F0309"]]},{"id":"NCBITaxon:362","l":"Agrobacterium radiobacter","na":4,"nb":7,"a":[["plant-gall-po-0025626.html","plant gall"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A362","Agrobacterium radiobacter"],["NCBITaxon%3A1336745","Agrobacterium radiobacter DSM 30147"],["NCBITaxon%3A361","Agrobacterium sp."],["NCBITaxon%3A358","Agrobacterium tumefaciens"],["NCBITaxon%3A359","Martinezella rhizogenes"],["NCBITaxon%3A204072","Ramlibacter henchirensis"]]},{"id":"NCBITaxon:60552","l":"Burkholderia vietnamiensis","na":4,"nb":7,"a":[["hospital-envo-00002173.html","hospital"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["NCBITaxon%3A292","Burkholderia cepacia"],["NCBITaxon%3A36773","Burkholderia sp."],["NCBITaxon%3A60552","Burkholderia vietnamiensis"],["NCBITaxon%3A269482","Burkholderia vietnamiensis G4"],["NCBITaxon%3A1449978","Burkholderia vietnamiensis LMG 10929"],["NCBITaxon%3A1254","Pediococcus acidilactici"]]},{"id":"NCBITaxon:1229","l":"Nitrosococcus oceani","na":6,"nb":4,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["sea-water-envo-00002149.html","sea water"],["stream-envo-00000023.html","stream"],["biome-envo-00000428.html","biome"],["farm-envo-00000078.html","farm"]],"b":[["NCBITaxon%3A1229","Nitrosococcus oceani"],["NCBITaxon%3A473788","Nitrosococcus oceani AFC27"],["NCBITaxon%3A323261","Nitrosococcus oceani ATCC 19707"],["NCBITaxon%3A314279","Nitrosococcus oceani C-27"]]},{"id":"NCBITaxon:1348","l":"Streptococcus parauberis","na":4,"nb":6,"a":[["animal-house-envo-00003040.html","animal house"],["brain-bto-0000142.html","brain"],["spleen-bto-0001281.html","spleen"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["NCBITaxon%3A1348","Streptococcus parauberis"],["NCBITaxon%3A936154","Streptococcus parauberis KCTC 11537"],["NCBITaxon%3A1260132","Streptococcus parauberis KCTC 11980BP"],["NCBITaxon%3A1207545","Streptococcus parauberis KRS-02083"],["NCBITaxon%3A1207544","Streptococcus parauberis KRS-02109"],["NCBITaxon%3A873447","Streptococcus parauberis NCFD 2020"]]},{"id":"NCBITaxon:1710","l":"Cellulosimicrobium cellulans","na":4,"nb":6,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"],["oil-spill-envo-00002061.html","oil spill"],["peat-soil-envo-00005774.html","peat soil"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A1710","Cellulosimicrobium cellulans"],["NCBITaxon%3A1350482","Cellulosimicrobium cellulans F16"],["NCBITaxon%3A903523","Cellulosimicrobium cellulans J1"],["NCBITaxon%3A935838","Cellulosimicrobium cellulans J34"],["NCBITaxon%3A935839","Cellulosimicrobium cellulans J36"],["NCBITaxon%3A1242247","Cellulosimicrobium cellulans LMG 16121"]]},{"id":"NCBITaxon:253","l":"Chryseobacterium indologenes","na":6,"nb":4,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["seedling-bto-0001228.html","seedling"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["tropical-envo-01000204.html","tropical"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["NCBITaxon%3A246","Chryseobacterium balustinum"],["NCBITaxon%3A253","Chryseobacterium indologenes"],["NCBITaxon%3A1218103","Chryseobacterium indologenes NBRC 14944"],["NCBITaxon%3A239","Flavobacterium sp."]]},{"id":"NCBITaxon:38284","l":"Corynebacterium accolens","na":4,"nb":6,"a":[["bone-element-uberon-0001474.html","bone element"],["vaginal-fluid-uberon-0036243.html","vaginal fluid"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"]],"b":[["NCBITaxon%3A38284","Corynebacterium accolens"],["NCBITaxon%3A525260","Corynebacterium accolens ATCC 49725"],["NCBITaxon%3A862512","Corynebacterium accolens ATCC 49726"],["NCBITaxon%3A38287","Corynebacterium fastidiosum"],["NCBITaxon%3A1720","Corynebacterium sp."],["NCBITaxon%3A38304","Corynebacterium tuberculostearicum"]]},{"id":"NCBITaxon:113557","l":"Lacticaseibacillus paracasei subsp. tolerans","na":4,"nb":5,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["milk-uberon-0001913.html","milk"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A1597","Lacticaseibacillus paracasei"],["NCBITaxon%3A113557","Lacticaseibacillus paracasei subsp. tolerans"],["NCBITaxon%3A1423830","Lacticaseibacillus paracasei subsp. tolerans DSM 20258"],["NCBITaxon%3A1256229","Lacticaseibacillus paracasei subsp. tolerans Lpl14"],["NCBITaxon%3A1256230","Lacticaseibacillus paracasei subsp. tolerans Lpl7"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":4,"nb":5,"a":[["reservoir-envo-00000025.html","reservoir"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["NCBITaxon%3A119219","Cupriavidus metallidurans"],["NCBITaxon%3A266264","Cupriavidus metallidurans CH34"],["NCBITaxon%3A1395123","Cupriavidus metallidurans H1130"],["NCBITaxon%3A1218106","Cupriavidus metallidurans NBRC 101272"],["NCBITaxon%3A1873897","Cupriavidus sp."]]},{"id":"NCBITaxon:1302","l":"Streptococcus gordonii","na":4,"nb":5,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["dental-plaque-uberon-0016482.html","dental plaque"],["archeological-site-envo-00000564.html","archeological site"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["NCBITaxon%3A1302","Streptococcus gordonii"],["NCBITaxon%3A1308737","Streptococcus gordonii ADL-228"],["NCBITaxon%3A29390","Streptococcus gordonii str. Challis"],["NCBITaxon%3A467705","Streptococcus gordonii str. Challis substr. CH1"],["NCBITaxon%3A1339616","Streptococcus gordonii TSDC19.2-1.1"]]},{"id":"NCBITaxon:144185","l":"Leifsonia aquatica","na":5,"nb":4,"a":[["hospital-envo-00002173.html","hospital"],["laboratory-facility-envo-01001406.html","laboratory facility"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A272239","Gulosibacter bifidus"],["NCBITaxon%3A144185","Leifsonia aquatica"],["NCBITaxon%3A1358026","Leifsonia aquatica ATCC 14665"],["NCBITaxon%3A1416759","Leifsonia aquatica H1aii"]]},{"id":"NCBITaxon:1478","l":"Peribacillus simplex","na":4,"nb":5,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"]],"b":[["NCBITaxon%3A33935","Lysinibacillus macroides"],["NCBITaxon%3A1478","Peribacillus simplex"],["NCBITaxon%3A1403313","Peribacillus simplex BA2H3"],["NCBITaxon%3A707251","Peribacillus simplex KBS1F-3"],["NCBITaxon%3A1349754","Peribacillus simplex NBRC 15720 = DSM 1321"]]},{"id":"NCBITaxon:2098","l":"Metamycoplasma hominis","na":5,"nb":4,"a":[["egg-food-product-foodon-00001274.html","egg food product"],["amniotic-cavity-bto-0000025.html","amniotic cavity"],["amniotic-fluid-bto-0000068.html","amniotic fluid"],["placenta-bto-0001078.html","placenta"],["reproductive-system-bto-0000081.html","reproductive system"]],"b":[["NCBITaxon%3A2098","Metamycoplasma hominis"],["NCBITaxon%3A347256","Metamycoplasma hominis ATCC 23114"],["NCBITaxon%3A1267000","Metamycoplasma hominis ATCC 27545"],["NCBITaxon%3A287","Pseudomonas aeruginosa"]]},{"id":"NCBITaxon:214326","l":"Latilactobacillus sakei subsp. sakei","na":4,"nb":5,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["food-habitatmech-madin-81cb9e74cb.html","food"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A1599","Latilactobacillus sakei"],["NCBITaxon%3A214326","Latilactobacillus sakei subsp. sakei"],["NCBITaxon%3A314315","Latilactobacillus sakei subsp. sakei 23K"],["NCBITaxon%3A1423833","Latilactobacillus sakei subsp. sakei DSM 20017 = JCM 1157"],["NCBITaxon%3A1285582","Latilactobacillus sakei subsp. sakei LS25"]]},{"id":"NCBITaxon:106649","l":"Acinetobacter guillouiae","na":4,"nb":4,"a":[["gut-bto-0000545.html","gut"],["skin-bto-0001253.html","skin"],["fecal-environment-envo-01001029.html","fecal environment"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A106649","Acinetobacter guillouiae"],["NCBITaxon%3A1217655","Acinetobacter guillouiae CIP 63.46"],["NCBITaxon%3A1330038","Acinetobacter guillouiae MSP4-18"],["NCBITaxon%3A1217656","Acinetobacter guillouiae NIPH 991"]]},{"id":"NCBITaxon:119542","l":"Roseinatronobacter bogoriensis","na":4,"nb":4,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"],["marine-environment-envo-01000320.html","marine environment"]],"b":[["NCBITaxon%3A119542","Roseinatronobacter bogoriensis"],["NCBITaxon%3A1188254","Roseinatronobacter bogoriensis DSM 18756"],["NCBITaxon%3A441209","Roseinatronobacter bogoriensis subsp. barguzinensis"],["NCBITaxon%3A3161156","Roseinatronobacter bogoriensis subsp. bogoriensis"]]},{"id":"NCBITaxon:1366","l":"Pseudolactococcus raffinolactis","na":4,"nb":4,"a":[["animal-house-envo-00003040.html","animal house"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["NCBITaxon%3A1366","Pseudolactococcus raffinolactis"],["NCBITaxon%3A1215915","Pseudolactococcus raffinolactis 4877"],["NCBITaxon%3A1255675","Pseudolactococcus raffinolactis JIM2957"],["NCBITaxon%3A1348633","Pseudolactococcus raffinolactis NBRC 100932"]]},{"id":"NCBITaxon:158847","l":"Megamonas hypermegale","na":4,"nb":4,"a":[["biofilm-envo-00002034.html","biofilm"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["emulsion-envo-00010506.html","emulsion"]],"b":[["NCBITaxon%3A482957","Burkholderia lata"],["NCBITaxon%3A158847","Megamonas hypermegale"],["NCBITaxon%3A657316","Megamonas hypermegale ART12/1"],["NCBITaxon%3A1122216","Megamonas hypermegale DSM 1672"]]},{"id":"NCBITaxon:37330","l":"Nocardia nova","na":4,"nb":4,"a":[["foot-bto-0000476.html","foot"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A300029","Nocardia elegans"],["NCBITaxon%3A37330","Nocardia nova"],["NCBITaxon%3A1210081","Nocardia nova NBRC 15556"],["NCBITaxon%3A1415166","Nocardia nova SH22a"]]},{"id":"NCBITaxon:731","l":"Histophilus somni","na":4,"nb":4,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["NCBITaxon%3A740","Haemophilus sp."],["NCBITaxon%3A731","Histophilus somni"],["NCBITaxon%3A205914","Histophilus somni 129PT"],["NCBITaxon%3A228400","Histophilus somni 2336"]]},{"id":"NCBITaxon:41294","l":"Nitrobacteraceae","na":3,"nb":10866,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["NCBITaxon%3A83488","2,4-D degrading bacterium M1"],["NCBITaxon%3A151414","Afipia birgiae"],["NCBITaxon%3A1197906","Afipia birgiae 34632"],["NCBITaxon%3A56946","Afipia broomeae"],["NCBITaxon%3A883078","Afipia broomeae ATCC 49717"],["NCBITaxon%3A40137","Afipia carboxidovorans"]]},{"id":"NCBITaxon:135622","l":"Alteromonadales","na":3,"nb":10390,"a":[["column-bto-0005692.html","column"],["oil-secretion-bto-0005373.html","oil secretion"],["trachea-bto-0001388.html","trachea"]],"b":[["NCBITaxon%3A120969","abyssal strain AIII3*"],["NCBITaxon%3A1619912","Adhaerimonas asanensis"],["NCBITaxon%3A3131927","Aegicerorhabdus qinzhovensis"],["NCBITaxon%3A226010","Aestuariibacter salexigens"],["NCBITaxon%3A1120953","Aestuariibacter salexigens DSM 15300"],["NCBITaxon%3A1872400","Aestuariibacter sp."]]},{"id":"NCBITaxon:32008","l":"Burkholderia","na":3,"nb":7299,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["midgut-bto-0000863.html","midgut"]],"b":[["NCBITaxon%3A2015348","Burkholderia aenigmatica"],["NCBITaxon%3A2683677","Burkholderia alba"],["NCBITaxon%3A152480","Burkholderia ambifaria"],["NCBITaxon%3A339670","Burkholderia ambifaria AMMD"],["NCBITaxon%3A396596","Burkholderia ambifaria IOP40-10"],["NCBITaxon%3A398577","Burkholderia ambifaria MC40-6"]]},{"id":"NCBITaxon:41297","l":"Sphingomonadaceae","na":3,"nb":6106,"a":[["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["NCBITaxon%3A83493","2,4-D degrading bacterium 2,4-D1"],["NCBITaxon%3A103496","2,4-D-degrading bacterium 524"],["NCBITaxon%3A83492","2,4-D degrading bacterium B6-10"],["NCBITaxon%3A83491","2,4-D degrading bacterium B6-5"],["NCBITaxon%3A83489","2,4-D degrading bacterium K1443"],["NCBITaxon%3A112499","alpha proteobacterium 15s.b."]]},{"id":"NCBITaxon:237","l":"Flavobacterium","na":3,"nb":4449,"a":[["column-bto-0005692.html","column"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["NCBITaxon%3A196875","Arctic sea ice associated bacterium ARK10272"],["NCBITaxon%3A196870","Arctic sea ice bacterium ARK10104"],["NCBITaxon%3A196871","Arctic sea ice bacterium ARK10159"],["NCBITaxon%3A196872","Arctic sea ice bacterium ARK10161"],["NCBITaxon%3A196873","Arctic sea ice bacterium ARK10164"],["NCBITaxon%3A196874","Arctic sea ice bacterium ARK10270"]]},{"id":"NCBITaxon:84642","l":"Aeromonadaceae","na":3,"nb":3610,"a":[["midgut-bto-0000863.html","midgut"],["pseudostem-bto-0005992.html","pseudostem"],["spike-bto-0001278.html","spike"]],"b":[["NCBITaxon%3A1948889","Aeromonadaceae bacterium"],["NCBITaxon%3A1546596","Aeromonadaceae bacterium 124L2"],["NCBITaxon%3A1546597","Aeromonadaceae bacterium 126H"],["NCBITaxon%3A1546598","Aeromonadaceae bacterium 129C"],["NCBITaxon%3A1546599","Aeromonadaceae bacterium 130I2"],["NCBITaxon%3A1546600","Aeromonadaceae bacterium 136C"]]},{"id":"NCBITaxon:31989","l":"Paracoccaceae","na":3,"nb":3139,"a":[["juvenile-bto-0002168.html","juvenile"],["leaf-bto-0000713.html","leaf"],["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["NCBITaxon%3A2881234","Abyssibius alkaniclasticus"],["NCBITaxon%3A3029207","Abyssibius sp."],["NCBITaxon%3A2030798","Acidimangrovimonas pyrenivorans"],["NCBITaxon%3A2056283","Acidimangrovimonas sediminis"],["NCBITaxon%3A2676791","Acidimangrovimonas sp."],["NCBITaxon%3A2058287","Aestuariibius insulae"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":3,"nb":1075,"a":[["bile-bto-0000121.html","bile"],["rectum-bto-0001158.html","rectum"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A1311139","Acinetobacter baumannii 016901DP_1"],["NCBITaxon%3A1311140","Acinetobacter baumannii 016901DP_2"],["NCBITaxon%3A1310784","Acinetobacter baumannii 1007214"],["NCBITaxon%3A1310751","Acinetobacter baumannii 1022959"],["NCBITaxon%3A1310586","Acinetobacter baumannii 1031433"]]},{"id":"NCBITaxon:48736","l":"Ralstonia","na":3,"nb":906,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"]],"b":[["NCBITaxon%3A1944648","blood disease bacterium A2-HR MARDI"],["NCBITaxon%3A213608","blood disease bacterium BananaE"],["NCBITaxon%3A297304","blood disease bacterium JT656"],["NCBITaxon%3A297303","blood disease bacterium JT657"],["NCBITaxon%3A40803","blood disease bacterium R223"],["NCBITaxon%3A741978","blood disease bacterium R229"]]},{"id":"NCBITaxon:194924","l":"Desulfovibrionaceae","na":3,"nb":862,"a":[["cecum-mucosa-bto-0000213.html","cecum mucosa"],["ileum-bto-0000620.html","ileum"],["mucosa-bto-0000886.html","mucosa"]],"b":[["NCBITaxon%3A293256","Alkalidesulfovibrio alkalitolerans"],["NCBITaxon%3A1121439","Alkalidesulfovibrio alkalitolerans DSM 16529"],["NCBITaxon%3A1929485","Bilophila sp."],["NCBITaxon%3A693988","Bilophila sp. 4_1_30"],["NCBITaxon%3A3839265","Bilophila sp. HF3_202"],["NCBITaxon%3A3839266","Bilophila sp. HF3_202_2"]]},{"id":"NCBITaxon:1046","l":"Chromatiaceae","na":3,"nb":781,"a":[["gut-bto-0000545.html","gut"],["hemolymph-bto-0000572.html","hemolymph"],["skin-bto-0001253.html","skin"]],"b":[["NCBITaxon%3A504901","Allochromatium humboldtianum"],["NCBITaxon%3A61596","Allochromatium minutissimum"],["NCBITaxon%3A231048","Allochromatium palmeri"],["NCBITaxon%3A430676","Allochromatium phaeobacterium"],["NCBITaxon%3A402883","Allochromatium renukae"],["NCBITaxon%3A1872465","Allochromatium sp."]]},{"id":"NCBITaxon:157","l":"Treponema","na":3,"nb":663,"a":[["rumen-uberon-0007365.html","rumen"],["sgs-cell-bto-0001210.html","SGS cell"],["tongue-bto-0001385.html","tongue"]],"b":[["NCBITaxon%3A3083137","Candidatus Treponema caballi"],["NCBITaxon%3A3083138","Candidatus Treponema equi"],["NCBITaxon%3A3083139","Candidatus Treponema equifaecale"],["NCBITaxon%3A2838768","Candidatus Treponema excrementipullorum"],["NCBITaxon%3A2838769","Candidatus Treponema faecavium"],["NCBITaxon%3A3083140","Candidatus Treponema merdequi"]]},{"id":"NCBITaxon:1654","l":"Actinomyces","na":3,"nb":460,"a":[["hand-bto-0004668.html","hand"],["vaginal-fluid-bto-0003084.html","vaginal fluid"],["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["NCBITaxon%3A3050225","Actinomyces acetigenes"],["NCBITaxon%3A1852361","Actinomyces bouchesdurhonensis"],["NCBITaxon%3A1658","Actinomyces bovis"],["NCBITaxon%3A131109","Actinomyces bowdenii"],["NCBITaxon%3A2755559","Actinomyces capricornis"],["NCBITaxon%3A119495","Actinomyces catuli"]]},{"id":"NCBITaxon:84107","l":"Coriobacteriaceae","na":3,"nb":399,"a":[["alimentary-canal-bto-0000058.html","alimentary canal"],["brain-bto-0000142.html","brain"],["heart-bto-0000562.html","heart"]],"b":[["NCBITaxon%3A2838522","Candidatus Collinsella stercoripullorum"],["NCBITaxon%3A2840753","Candidatus Coprousia avicola"],["NCBITaxon%3A3101127","Candidatus Coprousia sp."],["NCBITaxon%3A2840754","Candidatus Coprovicinus avistercoris"],["NCBITaxon%3A3101126","Candidatus Coprovicinus sp."],["NCBITaxon%3A2840848","Candidatus Limicola stercorigallinarum"]]},{"id":"NCBITaxon:1090","l":"Chlorobiota","na":3,"nb":300,"a":[["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"]],"b":[["NCBITaxon%3A338819","anammox bacterium A-3"],["NCBITaxon%3A1653826","Ancalochloris perfilievii"],["NCBITaxon%3A1872565","Ancalochloris sp."],["NCBITaxon%3A3039321","Candidatus Chlorobium antarcticum"],["NCBITaxon%3A2716876","Candidatus Chlorobium masyuteum"],["NCBITaxon%3A1868324","Candidatus Thermochlorobacter aerophilus"]]},{"id":"NCBITaxon:572511","l":"Blautia","na":3,"nb":249,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["colon-bto-0000269.html","colon"]],"b":[["NCBITaxon%3A3133036","Blautia acetica"],["NCBITaxon%3A2981783","Blautia acetigignens"],["NCBITaxon%3A2981782","Blautia ammoniilytica"],["NCBITaxon%3A3133153","Blautia aquisgranensis"],["NCBITaxon%3A1912897","Blautia argi"],["NCBITaxon%3A2696678","Blautia brookingsii"]]},{"id":"NCBITaxon:375288","l":"Parabacteroides","na":3,"nb":199,"a":[["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"]],"b":[["NCBITaxon%3A2838720","Candidatus Parabacteroides faecavium"],["NCBITaxon%3A2838721","Candidatus Parabacteroides intestinavium"],["NCBITaxon%3A2838722","Candidatus Parabacteroides intestinigallinarum"],["NCBITaxon%3A2838723","Candidatus Parabacteroides intestinipullorum"],["NCBITaxon%3A2951805","Parabacteroides absconsus"],["NCBITaxon%3A2290935","Parabacteroides acidifaciens"]]},{"id":"NCBITaxon:162289","l":"Peptoniphilus","na":3,"nb":170,"a":[["hand-bto-0004668.html","hand"],["vagina-bto-0000243.html","vagina"],["vaginal-fluid-bto-0003084.html","vaginal fluid"]],"b":[["NCBITaxon%3A1871017","Aedoeadaptatus urinae"],["NCBITaxon%3A33034","Anaerococcus prevotii"],["NCBITaxon%3A337315","Candidatus Peptoniphilus massiliensis (ex Fenollar et al. 2006)"],["NCBITaxon%3A507749","Peptoniphilus allenii"],["NCBITaxon%3A1258","Peptoniphilus asaccharolyticus"],["NCBITaxon%3A1357407","Peptoniphilus asaccharolyticus CD1_D5_FAA_2"]]},{"id":"NCBITaxon:1307","l":"Streptococcus suis","na":3,"nb":145,"a":[["monocyte-bto-0000876.html","monocyte"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["tonsil-bto-0001387.html","tonsil"]],"b":[["NCBITaxon%3A229549","Streptococcus minor"],["NCBITaxon%3A82806","Streptococcus ovis"],["NCBITaxon%3A1307","Streptococcus suis"],["NCBITaxon%3A672190","Streptococcus suis 05HAS68"],["NCBITaxon%3A391295","Streptococcus suis 05ZYH33"],["NCBITaxon%3A1214149","Streptococcus suis 07SC3"]]},{"id":"NCBITaxon:665874","l":"Limnohabitans","na":3,"nb":144,"a":[["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["NCBITaxon%3A544681","Limnohabitans australis"],["NCBITaxon%3A323423","Limnohabitans curvus"],["NCBITaxon%3A3844323","Limnohabitans kasalickyi (SeqCode)"],["NCBITaxon%3A3045173","Limnohabitans lacus"],["NCBITaxon%3A540061","Limnohabitans parvus"],["NCBITaxon%3A1293052","Limnohabitans parvus II-B4"]]},{"id":"NCBITaxon:39","l":"Archangiaceae","na":3,"nb":100,"a":[["wood-bto-0005516.html","wood"],["plant-litter-envo-01000628.html","plant litter"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A2995309","Allostigmatella ashevillensis"],["NCBITaxon%3A41","Allostigmatella aurantiaca"],["NCBITaxon%3A378806","Allostigmatella aurantiaca DW4/3-1"],["NCBITaxon%3A675526","Allostigmatella aurantiaca Sg a15"],["NCBITaxon%3A83460","Allostigmatella erecta"],["NCBITaxon%3A394097","Allostigmatella hybrida"]]},{"id":"NCBITaxon:813","l":"Chlamydia trachomatis","na":3,"nb":100,"a":[["conjunctiva-bto-0003415.html","conjunctiva"],["epithelial-cell-bto-0000414.html","epithelial cell"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A813","Chlamydia trachomatis"],["NCBITaxon%3A564416","Chlamydia trachomatis 6276"],["NCBITaxon%3A564417","Chlamydia trachomatis 6276s"],["NCBITaxon%3A564418","Chlamydia trachomatis 70"],["NCBITaxon%3A564419","Chlamydia trachomatis 70s"],["NCBITaxon%3A580047","Chlamydia trachomatis A2497"]]},{"id":"NCBITaxon:36809","l":"Mycobacteroides abscessus","na":3,"nb":89,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["NCBITaxon%3A36809","Mycobacteroides abscessus"],["NCBITaxon%3A1299323","Mycobacteroides abscessus 1948"],["NCBITaxon%3A1299324","Mycobacteroides abscessus 21"],["NCBITaxon%3A1001721","Mycobacteroides abscessus 3A-0119-R"],["NCBITaxon%3A1001715","Mycobacteroides abscessus 3A-0122-R"],["NCBITaxon%3A1001716","Mycobacteroides abscessus 3A-0122-S"]]},{"id":"NCBITaxon:72407","l":"Klebsiella pneumoniae subsp. pneumoniae","na":3,"nb":78,"a":[["bronchus-uberon-0002185.html","bronchus"],["neutrophil-bto-0000130.html","neutrophil"],["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A1653844","Erwinia carnegieana"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A1316938","Klebsiella pneumoniae ATCC 25955"],["NCBITaxon%3A72407","Klebsiella pneumoniae subsp. pneumoniae"],["NCBITaxon%3A1193292","Klebsiella pneumoniae subsp. pneumoniae 1084"]]},{"id":"NCBITaxon:216816","l":"Bifidobacterium longum","na":3,"nb":69,"a":[["coral-reef-envo-00000150.html","coral reef"],["egg-food-product-foodon-00001274.html","egg food product"],["juvenile-bto-0002168.html","juvenile"]],"b":[["NCBITaxon%3A1680","Bifidobacterium adolescentis"],["NCBITaxon%3A216816","Bifidobacterium longum"],["NCBITaxon%3A1000567","Bifidobacterium longum 3_1_37DFAAB"],["NCBITaxon%3A1280702","Bifidobacterium longum AGR2137"],["NCBITaxon%3A478445","Bifidobacterium longum BORI"],["NCBITaxon%3A1263059","Bifidobacterium longum CAG:69"]]},{"id":"NCBITaxon:100883","l":"Coprobacillus","na":3,"nb":65,"a":[["cecum-bto-0000166.html","cecum"],["gut-bto-0000545.html","gut"],["intestine-bto-0000648.html","intestine"]],"b":[["NCBITaxon%3A100884","Coprobacillus cateniformis"],["NCBITaxon%3A1297794","Coprobacillus cateniformis JCM 10604"],["NCBITaxon%3A2137881","Coprobacillus sp."],["NCBITaxon%3A2787134","Coprobacillus sp. 1001095IJ_161003_A8"],["NCBITaxon%3A2787096","Coprobacillus sp. 1001099B_141217_E2"],["NCBITaxon%3A1896994","Coprobacillus sp. 28_7"]]},{"id":"NCBITaxon:1597","l":"Lacticaseibacillus paracasei","na":3,"nb":56,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A1582","Lacticaseibacillus casei"],["NCBITaxon%3A1597","Lacticaseibacillus paracasei"],["NCBITaxon%3A321967","Lacticaseibacillus paracasei ATCC 334"],["NCBITaxon%3A1226299","Lacticaseibacillus paracasei COM0101"],["NCBITaxon%3A1446494","Lacticaseibacillus paracasei N1115"],["NCBITaxon%3A1435038","Lacticaseibacillus paracasei NRIC 0644"]]},{"id":"NCBITaxon:1247","l":"Oenococcus oeni","na":3,"nb":54,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A1247","Oenococcus oeni"],["NCBITaxon%3A379360","Oenococcus oeni ATCC BAA-1163"],["NCBITaxon%3A1160703","Oenococcus oeni AWRIB202"],["NCBITaxon%3A1160702","Oenococcus oeni AWRIB304"],["NCBITaxon%3A1167631","Oenococcus oeni AWRIB318"],["NCBITaxon%3A1206769","Oenococcus oeni AWRIB418"]]},{"id":"NCBITaxon:1310","l":"Streptococcus sobrinus","na":3,"nb":52,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"],["urine-bto-0001419.html","urine"],["biome-envo-00000428.html","biome"]],"b":[["NCBITaxon%3A1310","Streptococcus sobrinus"],["NCBITaxon%3A246202","Streptococcus sobrinus 6715"],["NCBITaxon%3A1123317","Streptococcus sobrinus DSM 20742 = ATCC 33478"],["NCBITaxon%3A1074066","Streptococcus sobrinus TCI-107"],["NCBITaxon%3A1074117","Streptococcus sobrinus TCI-118"],["NCBITaxon%3A1074067","Streptococcus sobrinus TCI-119"]]},{"id":"NCBITaxon:47714","l":"Lacticaseibacillus paracasei subsp. paracasei","na":3,"nb":41,"a":[["city-envo-00000856.html","city"],["food-fermented-foodon-00001258.html","food (fermented)"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["NCBITaxon%3A1582","Lacticaseibacillus casei"],["NCBITaxon%3A1597","Lacticaseibacillus paracasei"],["NCBITaxon%3A47714","Lacticaseibacillus paracasei subsp. paracasei"],["NCBITaxon%3A537973","Lacticaseibacillus paracasei subsp. paracasei 8700:2"],["NCBITaxon%3A525337","Lacticaseibacillus paracasei subsp. paracasei ATCC 25302 = DSM 5622 = JCM 8130"],["NCBITaxon%3A1235989","Lacticaseibacillus paracasei subsp. paracasei BGSJ2-8"]]},{"id":"NCBITaxon:283168","l":"Odoribacter","na":3,"nb":39,"a":[["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["mucosa-bto-0000886.html","mucosa"]],"b":[["NCBITaxon%3A2838706","Candidatus Odoribacter faecigallinarum"],["NCBITaxon%3A283169","Odoribacter denticanis"],["NCBITaxon%3A626933","Odoribacter laneus"],["NCBITaxon%3A1263089","Odoribacter laneus CAG:561"],["NCBITaxon%3A742817","Odoribacter laneus YIT 12061"],["NCBITaxon%3A2941335","Odoribacter lunatus"]]},{"id":"NCBITaxon:1030","l":"Thiothrix","na":3,"nb":38,"a":[["gut-bto-0000545.html","gut"],["hemolymph-bto-0000572.html","hemolymph"],["spike-bto-0001278.html","spike"]],"b":[["NCBITaxon%3A2823902","Candidatus Thiothrix anitrata"],["NCBITaxon%3A2799668","Candidatus Thiothrix moscowensis"],["NCBITaxon%3A3149045","Candidatus Thiothrix namsaraevi"],["NCBITaxon%3A3112415","Candidatus Thiothrix phosphatis"],["NCBITaxon%3A3080811","Candidatus Thiothrix putei"],["NCBITaxon%3A2799669","Candidatus Thiothrix singaporensis"]]},{"id":"NCBITaxon:28037","l":"Streptococcus mitis","na":3,"nb":38,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["archeological-site-envo-00000564.html","archeological site"],["tropical-envo-01000204.html","tropical"]],"b":[["NCBITaxon%3A1660","Schaalia odontolytica"],["NCBITaxon%3A45634","Streptococcus cristatus"],["NCBITaxon%3A1302863","Streptococcus cristatus AS 1.3089"],["NCBITaxon%3A1302","Streptococcus gordonii"],["NCBITaxon%3A28037","Streptococcus mitis"],["NCBITaxon%3A1239792","Streptococcus mitis 11/5"]]},{"id":"NCBITaxon:438","l":"Acetobacter pasteurianus","na":3,"nb":34,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"],["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A435","Acetobacter aceti"],["NCBITaxon%3A178900","Acetobacter cerevisiae"],["NCBITaxon%3A1307903","Acetobacter cerevisiae DSM 14362"],["NCBITaxon%3A1737472","Acetobacter conturbans"],["NCBITaxon%3A104097","Acetobacter estunensis"],["NCBITaxon%3A104101","Acetobacter indonesiensis"]]},{"id":"NCBITaxon:1582","l":"Lacticaseibacillus casei","na":3,"nb":32,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["NCBITaxon%3A1582","Lacticaseibacillus casei"],["NCBITaxon%3A1051650","Lacticaseibacillus casei 12A"],["NCBITaxon%3A1051651","Lacticaseibacillus casei 21/1"],["NCBITaxon%3A1051652","Lacticaseibacillus casei 32G"],["NCBITaxon%3A1378069","Lacticaseibacillus casei 5b"],["NCBITaxon%3A1051653","Lacticaseibacillus casei A2-362"]]},{"id":"NCBITaxon:75985","l":"Mannheimia haemolytica","na":3,"nb":32,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["leukocyte-bto-0000751.html","leukocyte"],["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["NCBITaxon%3A47735","Bibersteinia trehalosi"],["NCBITaxon%3A85401","Mannheimia glucosida"],["NCBITaxon%3A75985","Mannheimia haemolytica"],["NCBITaxon%3A1261126","Mannheimia haemolytica D153"],["NCBITaxon%3A1311759","Mannheimia haemolytica D171"],["NCBITaxon%3A1311760","Mannheimia haemolytica D174"]]},{"id":"NCBITaxon:33973","l":"Acidobacterium","na":3,"nb":31,"a":[["leaf-bto-0000713.html","leaf"],["oil-secretion-bto-0005373.html","oil secretion"],["trunk-bto-0001493.html","trunk"]],"b":[["NCBITaxon%3A33075","Acidobacterium capsulatum"],["NCBITaxon%3A240015","Acidobacterium capsulatum ATCC 51196"],["NCBITaxon%3A1872119","Acidobacterium sp."],["NCBITaxon%3A433983","Acidobacterium sp. BK18"],["NCBITaxon%3A1336583","Acidobacterium sp. Colony17"],["NCBITaxon%3A192103","Acidobacterium sp. Ellin289"]]},{"id":"NCBITaxon:1717","l":"Corynebacterium diphtheriae","na":3,"nb":28,"a":[["foot-bto-0000476.html","foot"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A1717","Corynebacterium diphtheriae"],["NCBITaxon%3A698966","Corynebacterium diphtheriae 241"],["NCBITaxon%3A698962","Corynebacterium diphtheriae 31A"],["NCBITaxon%3A698973","Corynebacterium diphtheriae BH8"],["NCBITaxon%3A1720349","Corynebacterium diphtheriae bv. gravis"],["NCBITaxon%3A1450521","Corynebacterium diphtheriae bv. gravis str. ISS 4060"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":3,"nb":28,"a":[["liquid-water-envo-00002006.html","liquid water"],["sludge-envo-00002044.html","sludge"],["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A729","Haemophilus parainfluenzae"],["NCBITaxon%3A43306","Pseudomonas denitrificans (nom. rej.)"],["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A203192","Stutzerimonas chloritidismutans"],["NCBITaxon%3A3022791","Stutzerimonas decontaminans"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":27,"nb":3,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["watercourse-envo-00000029.html","watercourse"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["egg-food-product-foodon-00001274.html","egg food product"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"]],"b":[["NCBITaxon%3A2219225","Pseudomonas asiatica"],["NCBITaxon%3A1628086","Pseudomonas kribbensis"],["NCBITaxon%3A306","Pseudomonas sp."]]},{"id":"NCBITaxon:2371","l":"Xylella fastidiosa","na":3,"nb":26,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"],["water-scum-envo-00005794.html","water scum"]],"b":[["NCBITaxon%3A329529","environmental samples"],["NCBITaxon%3A329530","uncultured Xylella fastidiosa"],["NCBITaxon%3A2371","Xylella fastidiosa"],["NCBITaxon%3A1214121","Xylella fastidiosa 32"],["NCBITaxon%3A1211847","Xylella fastidiosa 6c"],["NCBITaxon%3A160492","Xylella fastidiosa 9a5c"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":3,"nb":25,"a":[["milk-uberon-0001913.html","milk"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["NCBITaxon%3A35783","Enterococcus sp."],["NCBITaxon%3A1308","Streptococcus thermophilus"],["NCBITaxon%3A1435981","Streptococcus thermophilus 1F8CT"],["NCBITaxon%3A1408178","Streptococcus thermophilus ASCC 1275"],["NCBITaxon%3A1263110","Streptococcus thermophilus CAG:236"],["NCBITaxon%3A1042404","Streptococcus thermophilus CNCM I-1630"]]},{"id":"NCBITaxon:1359","l":"Lactococcus cremoris","na":3,"nb":24,"a":[["b-lymphocyte-bto-0000776.html","B-lymphocyte"],["peripheral-blood-mononuclear-cell-bto-0001025.html","peripheral blood mononuclear cell"],["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A1359","Lactococcus cremoris"],["NCBITaxon%3A1286879","Lactococcus cremoris HB61"],["NCBITaxon%3A1286880","Lactococcus cremoris HB63"],["NCBITaxon%3A2816960","Lactococcus cremoris subsp. cremoris"],["NCBITaxon%3A1104322","Lactococcus cremoris subsp. cremoris A76"],["NCBITaxon%3A1415168","Lactococcus cremoris subsp. cremoris GE214"]]},{"id":"NCBITaxon:157687","l":"Leptotrichia wadei","na":3,"nb":23,"a":[["biofilm-envo-00002034.html","biofilm"],["grassland-soil-envo-00005750.html","grassland soil"],["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["NCBITaxon%3A157687","Leptotrichia wadei"],["NCBITaxon%3A1122174","Leptotrichia wadei DSM 19758"],["NCBITaxon%3A888055","Leptotrichia wadei F0279"],["NCBITaxon%3A1409967","Leptotrichia wadei HMP_JCVI_SC0129"],["NCBITaxon%3A1409968","Leptotrichia wadei HMP_JCVI_SC0130"],["NCBITaxon%3A1409969","Leptotrichia wadei HMP_JCVI_SC0192"]]},{"id":"NCBITaxon:191303","l":"Turicibacter","na":3,"nb":23,"a":[["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"],["mucosa-bto-0000886.html","mucosa"]],"b":[["NCBITaxon%3A2735723","Turicibacter bilis"],["NCBITaxon%3A2963365","Turicibacter faecis"],["NCBITaxon%3A154288","Turicibacter sanguinis"],["NCBITaxon%3A702450","Turicibacter sanguinis PC909"],["NCBITaxon%3A2049042","Turicibacter sp."],["NCBITaxon%3A2951143","Turicibacter sp. 1E2"]]},{"id":"NCBITaxon:442","l":"Gluconobacter oxydans","na":3,"nb":22,"a":[["research-facility-envo-00000469.html","research facility"],["food-fermented-foodon-00001258.html","food (fermented)"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["NCBITaxon%3A438","Acetobacter pasteurianus"],["NCBITaxon%3A318683","Gluconobacter albidus"],["NCBITaxon%3A1307944","Gluconobacter albidus NBRC 3250"],["NCBITaxon%3A2728101","Gluconobacter cadivus"],["NCBITaxon%3A38308","Gluconobacter frateurii"],["NCBITaxon%3A442","Gluconobacter oxydans"]]},{"id":"NCBITaxon:106592","l":"Ensifer adhaerens","na":20,"nb":3,"a":[["fresh-water-envo-00002011.html","fresh water"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["NCBITaxon%3A106592","Ensifer adhaerens"],["NCBITaxon%3A1416753","Ensifer adhaerens OV14"],["NCBITaxon%3A1113910","Ensifer sp. NBRC 102459"]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":3,"nb":20,"a":[["liquid-water-envo-00002006.html","liquid water"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"]],"b":[["NCBITaxon%3A548","Klebsiella aerogenes"],["NCBITaxon%3A1308731","Klebsiella aerogenes ADL-323"],["NCBITaxon%3A935296","Klebsiella aerogenes EA1509E"],["NCBITaxon%3A685445","Klebsiella aerogenes FGI35"],["NCBITaxon%3A1028307","Klebsiella aerogenes KCTC 2190"],["NCBITaxon%3A1439320","Klebsiella aerogenes MGH 61"]]},{"id":"NCBITaxon:1085","l":"Rhodospirillum rubrum","na":19,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"],["brackish-water-body-envo-01001321.html","brackish water body"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["liquid-water-envo-00002006.html","liquid water"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["river-envo-00000022.html","river"]],"b":[["NCBITaxon%3A1085","Rhodospirillum rubrum"],["NCBITaxon%3A269796","Rhodospirillum rubrum ATCC 11170"],["NCBITaxon%3A1036743","Rhodospirillum rubrum F11"]]},{"id":"NCBITaxon:158","l":"Treponema denticola","na":3,"nb":19,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["archeological-site-envo-00000564.html","archeological site"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A158","Treponema denticola"],["NCBITaxon%3A999426","Treponema denticola AL-2"],["NCBITaxon%3A999427","Treponema denticola ASLM"],["NCBITaxon%3A999428","Treponema denticola ATCC 33520"],["NCBITaxon%3A999429","Treponema denticola ATCC 33521"],["NCBITaxon%3A999430","Treponema denticola ATCC 35404"]]},{"id":"NCBITaxon:1833","l":"Rhodococcus erythropolis","na":3,"nb":19,"a":[["watercourse-envo-00000029.html","watercourse"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"],["water-scum-envo-00005794.html","water scum"]],"b":[["NCBITaxon%3A1818","Nocardia globerula"],["NCBITaxon%3A1821","Nocardia sp."],["NCBITaxon%3A53432","Nocardia uniformis"],["NCBITaxon%3A1210100","Nocardia uniformis NBRC 13702"],["NCBITaxon%3A1833","Rhodococcus erythropolis"],["NCBITaxon%3A1136179","Rhodococcus erythropolis CCM2595"]]},{"id":"NCBITaxon:375","l":"Bradyrhizobium japonicum","na":3,"nb":19,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A1355477","Bradyrhizobium diazoefficiens"],["NCBITaxon%3A224911","Bradyrhizobium diazoefficiens USDA 110"],["NCBITaxon%3A375","Bradyrhizobium japonicum"],["NCBITaxon%3A306164","Bradyrhizobium japonicum bv. genistearum"],["NCBITaxon%3A305581","Bradyrhizobium japonicum bv. glycinearum"],["NCBITaxon%3A1128253","Bradyrhizobium japonicum CCBAU 15354"]]},{"id":"NCBITaxon:1492","l":"Clostridium butyricum","na":3,"nb":15,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["intestine-environment-envo-2100002.html","intestine environment"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["NCBITaxon%3A1520","Clostridium beijerinckii"],["NCBITaxon%3A1492","Clostridium butyricum"],["NCBITaxon%3A634501","Clostridium butyricum 2CR37"],["NCBITaxon%3A447214","Clostridium butyricum 5521"],["NCBITaxon%3A997898","Clostridium butyricum 60E.3"],["NCBITaxon%3A1280693","Clostridium butyricum AGR2140"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":15,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["NCBITaxon%3A38285","Corynebacterium acetoacidophilum"],["NCBITaxon%3A1718","Corynebacterium glutamicum"],["NCBITaxon%3A196627","Corynebacterium glutamicum ATCC 13032"],["NCBITaxon%3A1079988","Corynebacterium glutamicum ATCC 14067"],["NCBITaxon%3A1204414","Corynebacterium glutamicum K051"],["NCBITaxon%3A1310161","Corynebacterium glutamicum MB001"]]},{"id":"NCBITaxon:1011","l":"Sporocytophaga","na":3,"nb":14,"a":[["inflorescence-bto-0000628.html","inflorescence"],["plant-bto-0001481.html","plant"],["root-bto-0001188.html","root"]],"b":[["NCBITaxon%3A1012","Sporocytophaga cauliformis"],["NCBITaxon%3A153721","Sporocytophaga myxococcoides"],["NCBITaxon%3A926565","Sporocytophaga myxococcoides DSM 11118"],["NCBITaxon%3A2231183","Sporocytophaga sp."],["NCBITaxon%3A420530","Sporocytophaga sp. 25B"],["NCBITaxon%3A571179","Sporocytophaga sp. 4v"]]},{"id":"NCBITaxon:29466","l":"Veillonella parvula","na":3,"nb":14,"a":[["dental-plaque-bto-0000338.html","dental plaque"],["juvenile-bto-0002168.html","juvenile"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["NCBITaxon%3A39777","Veillonella atypica"],["NCBITaxon%3A29466","Veillonella parvula"],["NCBITaxon%3A1357417","Veillonella parvula AC2_8_11_AN_NA_2"],["NCBITaxon%3A768727","Veillonella parvula ACS-068-V-Sch12"],["NCBITaxon%3A686660","Veillonella parvula ATCC 17745"],["NCBITaxon%3A479436","Veillonella parvula DSM 2008"]]},{"id":"NCBITaxon:582","l":"Morganella morganii","na":3,"nb":14,"a":[["blast-cell-bto-0000125.html","blast cell"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"],["spike-bto-0001278.html","spike"]],"b":[["NCBITaxon%3A582","Morganella morganii"],["NCBITaxon%3A1365974","Morganella morganii AC2_8_11_AN_D6_FAA_4"],["NCBITaxon%3A1428452","Morganella morganii F675"],["NCBITaxon%3A1416758","Morganella morganii H1r"],["NCBITaxon%3A1411647","Morganella morganii IS15"],["NCBITaxon%3A1239989","Morganella morganii SC01"]]},{"id":"NCBITaxon:28090","l":"Acinetobacter lwoffii","na":3,"nb":13,"a":[["nectar-bto-0000537.html","nectar"],["pseudostem-bto-0005992.html","pseudostem"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["NCBITaxon%3A1311822","Acinetobacter genomosp. 9 str. ATCC 17910"],["NCBITaxon%3A40215","Acinetobacter junii"],["NCBITaxon%3A28090","Acinetobacter lwoffii"],["NCBITaxon%3A1311804","Acinetobacter lwoffii ATCC 9957 = CIP 70.31"],["NCBITaxon%3A54394","Acinetobacter lwoffii K24"],["NCBITaxon%3A981327","Acinetobacter lwoffii NCTC 5866 = CIP 64.10 = NIPH 512"]]},{"id":"NCBITaxon:113286","l":"Pseudoramibacter","na":3,"nb":12,"a":[["cecum-bto-0000166.html","cecum"],["gut-bto-0000545.html","gut"],["sgs-cell-bto-0001210.html","SGS cell"]],"b":[["NCBITaxon%3A2594427","Candidatus Pseudoramibacter fermentans"],["NCBITaxon%3A113287","Pseudoramibacter alactolyticus"],["NCBITaxon%3A887929","Pseudoramibacter alactolyticus ATCC 23263"],["NCBITaxon%3A3108534","Pseudoramibacter faecis"],["NCBITaxon%3A2606631","Pseudoramibacter porci"],["NCBITaxon%3A2034862","Pseudoramibacter sp."]]},{"id":"NCBITaxon:119602","l":"Streptococcus dysgalactiae subsp. equisimilis","na":3,"nb":12,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["animal-manure-envo-00003031.html","animal manure"]],"b":[["NCBITaxon%3A1334","Streptococcus dysgalactiae"],["NCBITaxon%3A119602","Streptococcus dysgalactiae subsp. equisimilis"],["NCBITaxon%3A1247189","Streptococcus dysgalactiae subsp. equisimilis 167"],["NCBITaxon%3A759913","Streptococcus dysgalactiae subsp. equisimilis AC-2713"],["NCBITaxon%3A452436","Streptococcus dysgalactiae subsp. equisimilis AKSDE4288"],["NCBITaxon%3A663954","Streptococcus dysgalactiae subsp. equisimilis ATCC 12394"]]},{"id":"NCBITaxon:24","l":"Shewanella putrefaciens","na":3,"nb":12,"a":[["reservoir-envo-00000025.html","reservoir"],["foot-bto-0000476.html","foot"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A1882437","Massilia sp."],["NCBITaxon%3A38313","Shewanella algae"],["NCBITaxon%3A62322","Shewanella baltica"],["NCBITaxon%3A24","Shewanella putrefaciens"],["NCBITaxon%3A399804","Shewanella putrefaciens 200"],["NCBITaxon%3A319224","Shewanella putrefaciens CN-32"]]},{"id":"NCBITaxon:28447","l":"Clavibacter michiganensis","na":3,"nb":12,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["canker-habitatmech-bacdive-0f078d72a7.html","Canker"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["NCBITaxon%3A1874630","Clavibacter capsici"],["NCBITaxon%3A2301718","Clavibacter lycopersici"],["NCBITaxon%3A28447","Clavibacter michiganensis"],["NCBITaxon%3A33014","Clavibacter michiganensis subsp. insidiosus"],["NCBITaxon%3A33013","Clavibacter michiganensis subsp. michiganensis"],["NCBITaxon%3A443906","Clavibacter michiganensis subsp. michiganensis NCPPB 382"]]},{"id":"NCBITaxon:1154584","l":"Gaiellales","na":3,"nb":11,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["skin-bto-0001253.html","skin"]],"b":[["NCBITaxon%3A2928748","Candidatus Gaiellasilicea maunaloa"],["NCBITaxon%3A1002870","Gaiella occulta"],["NCBITaxon%3A2663207","Gaiella sp."],["NCBITaxon%3A1282738","Gaiella sp. EBR4-R2"],["NCBITaxon%3A1282739","Gaiella sp. EBR4-RS1"],["NCBITaxon%3A1799656","Gaiella sp. SCGC AG-212-M14"]]},{"id":"NCBITaxon:168808","l":"Sneathia","na":3,"nb":11,"a":[["blood-bto-0000089.html","blood"],["brain-bto-0000142.html","brain"],["heart-bto-0000562.html","heart"]],"b":[["NCBITaxon%3A40543","Sneathia sanguinegens"],["NCBITaxon%3A1123259","Sneathia sanguinegens DSM 22970"],["NCBITaxon%3A553163","Sneathia sanguinegens JCVIHMP003"],["NCBITaxon%3A2776143","Sneathia sp."],["NCBITaxon%3A2777993","Sneathia sp. DSM 16630"],["NCBITaxon%3A2777994","Sneathia sp. DSM 16631"]]},{"id":"NCBITaxon:2426","l":"Teredinibacter turnerae","na":3,"nb":11,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["NCBITaxon%3A2426","Teredinibacter turnerae"],["NCBITaxon%3A1313298","Teredinibacter turnerae 1133Y.S.0a.04"],["NCBITaxon%3A1313297","Teredinibacter turnerae 1675L.S.0a.01"],["NCBITaxon%3A1206095","Teredinibacter turnerae T0609"],["NCBITaxon%3A377629","Teredinibacter turnerae T7901"],["NCBITaxon%3A1056820","Teredinibacter turnerae T7902"]]},{"id":"NCBITaxon:1260","l":"Finegoldia magna","na":3,"nb":10,"a":[["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A1260","Finegoldia magna"],["NCBITaxon%3A768713","Finegoldia magna ACS-171-V-Col3"],["NCBITaxon%3A1459804","Finegoldia magna ALB8"],["NCBITaxon%3A334413","Finegoldia magna ATCC 29328"],["NCBITaxon%3A525282","Finegoldia magna ATCC 53516"],["NCBITaxon%3A866773","Finegoldia magna BVS033A4"]]},{"id":"NCBITaxon:1399","l":"Cytobacillus firmus","na":10,"nb":3,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"],["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["NCBITaxon%3A1399","Cytobacillus firmus"],["NCBITaxon%3A1307436","Cytobacillus firmus DS1"],["NCBITaxon%3A1314753","Cytobacillus firmus NBRC 15306"]]},{"id":"NCBITaxon:2035","l":"Curtobacterium flaccumfaciens","na":3,"nb":10,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["wilt-habitatmech-bacdive-4c48b5114d.html","Wilt"]],"b":[["NCBITaxon%3A3236919","Curtobacterium aurantiacum"],["NCBITaxon%3A2035","Curtobacterium flaccumfaciens"],["NCBITaxon%3A2878384","Curtobacterium flaccumfaciens pv. allii"],["NCBITaxon%3A83664","Curtobacterium flaccumfaciens pv. betae"],["NCBITaxon%3A221277","Curtobacterium flaccumfaciens pv. beticola"],["NCBITaxon%3A138532","Curtobacterium flaccumfaciens pv. flaccumfaciens"]]},{"id":"NCBITaxon:28095","l":"Burkholderia gladioli","na":3,"nb":10,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["NCBITaxon%3A28095","Burkholderia gladioli"],["NCBITaxon%3A1263856","Burkholderia gladioli 3848s-5"],["NCBITaxon%3A999541","Burkholderia gladioli BSR3"],["NCBITaxon%3A1218079","Burkholderia gladioli NBRC 13700"],["NCBITaxon%3A336070","Burkholderia gladioli pv. agaricicola"],["NCBITaxon%3A32010","Burkholderia gladioli pv. alliicola"]]},{"id":"NCBITaxon:315405","l":"Streptococcus gallolyticus","na":3,"nb":10,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A1036677","Methanosarcina soligelidi"],["NCBITaxon%3A1335","Streptococcus equinus"],["NCBITaxon%3A315405","Streptococcus gallolyticus"],["NCBITaxon%3A53354","Streptococcus gallolyticus subsp. gallolyticus"],["NCBITaxon%3A981539","Streptococcus gallolyticus subsp. gallolyticus ATCC 43143"],["NCBITaxon%3A990317","Streptococcus gallolyticus subsp. gallolyticus ATCC BAA-2069"]]},{"id":"NCBITaxon:33959","l":"Lactobacillus johnsonii","na":3,"nb":10,"a":[["animal-litter-envo-00002191.html","animal litter"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["NCBITaxon%3A1596","Lactobacillus gasseri"],["NCBITaxon%3A33959","Lactobacillus johnsonii"],["NCBITaxon%3A572503","Lactobacillus johnsonii 135-1-CHN"],["NCBITaxon%3A1033983","Lactobacillus johnsonii 16"],["NCBITaxon%3A525330","Lactobacillus johnsonii ATCC 33200"],["NCBITaxon%3A909954","Lactobacillus johnsonii DPC 6026"]]},{"id":"NCBITaxon:40214","l":"Acinetobacter johnsonii","na":3,"nb":10,"a":[["liquid-water-envo-00002006.html","liquid water"],["pitcher-bto-0001069.html","pitcher"],["water-scum-envo-00005794.html","water scum"]],"b":[["NCBITaxon%3A40214","Acinetobacter johnsonii"],["NCBITaxon%3A1255605","Acinetobacter johnsonii 3M05"],["NCBITaxon%3A1217662","Acinetobacter johnsonii ANC 3681"],["NCBITaxon%3A1217663","Acinetobacter johnsonii CIP 64.6"],["NCBITaxon%3A1160709","Acinetobacter johnsonii L18"],["NCBITaxon%3A701047","Acinetobacter johnsonii SE1"]]},{"id":"NCBITaxon:1017","l":"Capnocytophaga gingivalis","na":9,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"],["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biotope-envo-00002036.html","biotope"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["organic-feature-envo-01000159.html","organic feature"]],"b":[["NCBITaxon%3A1017","Capnocytophaga gingivalis"],["NCBITaxon%3A553178","Capnocytophaga gingivalis ATCC 33624"],["NCBITaxon%3A45242","Capnocytophaga granulosa"]]},{"id":"NCBITaxon:1238","l":"Piscirickettsia salmonis","na":3,"nb":9,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["sea-water-envo-00002149.html","sea water"],["stream-envo-00000023.html","stream"]],"b":[["NCBITaxon%3A1238","Piscirickettsia salmonis"],["NCBITaxon%3A1269812","Piscirickettsia salmonis Al10015"],["NCBITaxon%3A1398558","Piscirickettsia salmonis AUSTRAL-005"],["NCBITaxon%3A1441380","Piscirickettsia salmonis CGA/3731"],["NCBITaxon%3A1435375","Piscirickettsia salmonis EM-90"],["NCBITaxon%3A1435376","Piscirickettsia salmonis ES-3"]]},{"id":"NCBITaxon:133193","l":"Alkalilimnicola","na":3,"nb":9,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["sea-water-envo-00002149.html","sea water"],["stream-envo-00000023.html","stream"]],"b":[["NCBITaxon%3A351052","Alkalilimnicola ehrlichii"],["NCBITaxon%3A187272","Alkalilimnicola ehrlichii MLHE-1"],["NCBITaxon%3A133194","Alkalilimnicola halodurans"],["NCBITaxon%3A1872450","Alkalilimnicola sp."],["NCBITaxon%3A1985295","Alkalilimnicola sp. AK92"],["NCBITaxon%3A2613922","Alkalilimnicola sp. S0819"]]},{"id":"NCBITaxon:28188","l":"Capnocytophaga canimorsus","na":9,"nb":3,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["alkaline-environment-envo-01000316.html","alkaline environment"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["NCBITaxon%3A28188","Capnocytophaga canimorsus"],["NCBITaxon%3A860228","Capnocytophaga canimorsus Cc5"],["NCBITaxon%3A1848903","Capnocytophaga canis"]]},{"id":"NCBITaxon:359","l":"Martinezella rhizogenes","na":3,"nb":9,"a":[["hairy-root-bto-0004305.html","hairy root"],["plant-gall-po-0025626.html","plant gall"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["NCBITaxon%3A362","Agrobacterium radiobacter"],["NCBITaxon%3A1972867","Agrobacterium rosae"],["NCBITaxon%3A28099","Agrobacterium rubi"],["NCBITaxon%3A1368415","Agrobacterium rubi TR3 = NBRC 13261"],["NCBITaxon%3A361","Agrobacterium sp."],["NCBITaxon%3A359","Martinezella rhizogenes"]]},{"id":"NCBITaxon:729","l":"Haemophilus parainfluenzae","na":3,"nb":9,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"],["tropical-envo-01000204.html","tropical"]],"b":[["NCBITaxon%3A732","Aggregatibacter aphrophilus"],["NCBITaxon%3A726","Haemophilus haemolyticus"],["NCBITaxon%3A729","Haemophilus parainfluenzae"],["NCBITaxon%3A888828","Haemophilus parainfluenzae ATCC 33392"],["NCBITaxon%3A1095746","Haemophilus parainfluenzae HK2019"],["NCBITaxon%3A1095745","Haemophilus parainfluenzae HK262"]]},{"id":"NCBITaxon:1623","l":"Ligilactobacillus ruminis","na":3,"nb":8,"a":[["biofilm-envo-00002034.html","biofilm"],["flagellate-bto-0000464.html","flagellate"],["juvenile-bto-0002168.html","juvenile"]],"b":[["NCBITaxon%3A1623","Ligilactobacillus ruminis"],["NCBITaxon%3A525362","Ligilactobacillus ruminis ATCC 25644"],["NCBITaxon%3A1069534","Ligilactobacillus ruminis ATCC 27782"],["NCBITaxon%3A1263085","Ligilactobacillus ruminis CAG:367"],["NCBITaxon%3A1402208","Ligilactobacillus ruminis DPC 6832"],["NCBITaxon%3A1423798","Ligilactobacillus ruminis DSM 20403 = NBRC 102161"]]},{"id":"NCBITaxon:198","l":"Campylobacter hyointestinalis","na":3,"nb":8,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["feces-uberon-0001988.html","feces"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["NCBITaxon%3A198","Campylobacter hyointestinalis"],["NCBITaxon%3A91352","Campylobacter hyointestinalis subsp. hyointestinalis"],["NCBITaxon%3A1031746","Campylobacter hyointestinalis subsp. hyointestinalis LMG 9260"],["NCBITaxon%3A91353","Campylobacter hyointestinalis subsp. lawsonii"],["NCBITaxon%3A1031752","Campylobacter hyointestinalis subsp. lawsonii CCUG 27631"],["NCBITaxon%3A206","Campylobacter sputorum"]]},{"id":"NCBITaxon:47885","l":"Pseudomonas oryzihabitans","na":8,"nb":3,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"],["hospital-envo-00002173.html","hospital"],["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"],["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["NCBITaxon%3A47885","Pseudomonas oryzihabitans"],["NCBITaxon%3A1215113","Pseudomonas oryzihabitans NBRC 102199"],["NCBITaxon%3A1112217","Pseudomonas psychrotolerans L19"]]},{"id":"NCBITaxon:537937","l":"Bifidobacterium longum subsp. infantis CCUG 52486","na":8,"nb":3,"a":[["bay-envo-00000032.html","bay"],["black-smoker-envo-00000218.html","black smoker"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["saline-water-envo-00002010.html","saline water"],["village-biome-envo-01000246.html","village biome"]],"b":[["NCBITaxon%3A216816","Bifidobacterium longum"],["NCBITaxon%3A1682","Bifidobacterium longum subsp. infantis"],["NCBITaxon%3A537937","Bifidobacterium longum subsp. infantis CCUG 52486"]]},{"id":"NCBITaxon:1299","l":"Deinococcus radiodurans","na":7,"nb":3,"a":[["animal-house-envo-00003040.html","animal house"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["water-scum-envo-00005794.html","water scum"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"]],"b":[["NCBITaxon%3A1299","Deinococcus radiodurans"],["NCBITaxon%3A243230","Deinococcus radiodurans R1 = ATCC 13939 = DSM 20539"],["NCBITaxon%3A47478","Deinococcus sp."]]},{"id":"NCBITaxon:13690","l":"Sphingobium yanoikuyae","na":7,"nb":3,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["resting-cell-bto-0001170.html","resting cell"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"],["water-scum-envo-00005794.html","water scum"]],"b":[["NCBITaxon%3A13690","Sphingobium yanoikuyae"],["NCBITaxon%3A883163","Sphingobium yanoikuyae ATCC 51230"],["NCBITaxon%3A1074493","Sphingobium yanoikuyae XLDN2-5"]]},{"id":"NCBITaxon:154046","l":"Hungatella hathewayi","na":3,"nb":7,"a":[["biofilm-envo-00002034.html","biofilm"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["NCBITaxon%3A154046","Hungatella hathewayi"],["NCBITaxon%3A999412","Hungatella hathewayi 12489931"],["NCBITaxon%3A1263067","Hungatella hathewayi CAG:224"],["NCBITaxon%3A566550","Hungatella hathewayi DSM 13479"],["NCBITaxon%3A1232440","Hungatella hathewayi VE202-04"],["NCBITaxon%3A1232451","Hungatella hathewayi VE202-11"]]},{"id":"NCBITaxon:165179","l":"Segatella copri","na":7,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"],["juvenile-bto-0002168.html","juvenile"],["rumen-uberon-0007365.html","rumen"],["tongue-bto-0001385.html","tongue"],["vaginal-fluid-bto-0003084.html","vaginal fluid"],["animal-litter-envo-00002191.html","animal litter"]],"b":[["NCBITaxon%3A165179","Segatella copri"],["NCBITaxon%3A1263102","Segatella copri CAG:164"],["NCBITaxon%3A537011","Segatella copri DSM 18205"]]},{"id":"NCBITaxon:28108","l":"Alteromonas macleodii","na":3,"nb":7,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["marine-water-body-envo-00001999.html","marine water body"],["sandstone-envo-00002055.html","sandstone"]],"b":[["NCBITaxon%3A28108","Alteromonas macleodii"],["NCBITaxon%3A529120","Alteromonas macleodii ATCC 27126"],["NCBITaxon%3A1004787","Alteromonas macleodii str. 'Balearic Sea AD45'"],["NCBITaxon%3A1004785","Alteromonas macleodii str. 'Black Sea 11'"],["NCBITaxon%3A1004788","Alteromonas macleodii str. 'English Channel 673'"],["NCBITaxon%3A160763","Alteromonas macleodii subsp. abyssi"]]},{"id":"NCBITaxon:283734","l":"Staphylococcus pseudintermedius","na":3,"nb":7,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["NCBITaxon%3A1280","Staphylococcus aureus"],["NCBITaxon%3A1285","Staphylococcus intermedius"],["NCBITaxon%3A283734","Staphylococcus pseudintermedius"],["NCBITaxon%3A1266717","Staphylococcus pseudintermedius E140"],["NCBITaxon%3A984892","Staphylococcus pseudintermedius ED99"],["NCBITaxon%3A937773","Staphylococcus pseudintermedius HKU10-03"]]},{"id":"NCBITaxon:43770","l":"Corynebacterium striatum","na":3,"nb":7,"a":[["bone-element-uberon-0001474.html","bone element"],["foot-bto-0000476.html","foot"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"]],"b":[["NCBITaxon%3A43765","Corynebacterium amycolatum"],["NCBITaxon%3A1717","Corynebacterium diphtheriae"],["NCBITaxon%3A38301","Corynebacterium minutissimum"],["NCBITaxon%3A1720","Corynebacterium sp."],["NCBITaxon%3A43770","Corynebacterium striatum"],["NCBITaxon%3A525268","Corynebacterium striatum ATCC 6940"]]},{"id":"NCBITaxon:55518","l":"Magnetospirillum gryphiswaldense","na":7,"nb":3,"a":[["bay-envo-00000032.html","bay"],["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"],["saline-water-envo-00002010.html","saline water"],["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["farm-soil-envo-00005749.html","farm soil"],["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A55518","Magnetospirillum gryphiswaldense"],["NCBITaxon%3A431944","Magnetospirillum gryphiswaldense MSR-1"],["NCBITaxon%3A1430440","Magnetospirillum gryphiswaldense MSR-1 v2"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":3,"nb":7,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A663","Vibrio alginolyticus"],["NCBITaxon%3A314288","Vibrio alginolyticus 12G01"],["NCBITaxon%3A674977","Vibrio alginolyticus 40B"],["NCBITaxon%3A664","Vibrio alginolyticus chemovar iophagus"],["NCBITaxon%3A1219076","Vibrio alginolyticus NBRC 15630 = ATCC 17749"],["NCBITaxon%3A669","Vibrio harveyi"]]},{"id":"NCBITaxon:83451","l":"Archangium violaceum","na":7,"nb":3,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["wood-bto-0005516.html","wood"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["plant-litter-envo-01000628.html","plant litter"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A48","Archangium gephyra"],["NCBITaxon%3A83451","Archangium violaceum"],["NCBITaxon%3A1406225","Archangium violaceum Cb vi76"]]},{"id":"NCBITaxon:1005038","l":"Fimbriimonas","na":3,"nb":6,"a":[["inflorescence-bto-0000628.html","inflorescence"],["plant-bto-0001481.html","plant"],["root-bto-0001188.html","root"]],"b":[["NCBITaxon%3A3712373","Fimbriimonas antarctica (SeqCode)"],["NCBITaxon%3A1005039","Fimbriimonas ginsengisoli"],["NCBITaxon%3A661478","Fimbriimonas ginsengisoli Gsoil 348"],["NCBITaxon%3A1936159","Fimbriimonas sp."],["NCBITaxon%3A3378866","Fimbriimonas sp. LA-C6"],["NCBITaxon%3A1936177","uncultured Fimbriimonas sp."]]},{"id":"NCBITaxon:137591","l":"Weissella cibaria","na":3,"nb":6,"a":[["biofilm-bto-0002690.html","biofilm"],["epithelial-cell-bto-0000414.html","epithelial cell"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A137591","Weissella cibaria"],["NCBITaxon%3A1255594","Weissella cibaria 3385"],["NCBITaxon%3A1255595","Weissella cibaria 3386"],["NCBITaxon%3A1357418","Weissella cibaria F16_1"],["NCBITaxon%3A911104","Weissella cibaria KACC 11862"],["NCBITaxon%3A1583","Weissella confusa"]]},{"id":"NCBITaxon:1391","l":"Aneurinibacillus aneurinilyticus","na":6,"nb":3,"a":[["animal-house-envo-00003040.html","animal house"],["rhizosphere-envo-00005801.html","rhizosphere"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["NCBITaxon%3A1391","Aneurinibacillus aneurinilyticus"],["NCBITaxon%3A649747","Aneurinibacillus aneurinilyticus ATCC 12856"],["NCBITaxon%3A83428","uncultured Bacillus sp."]]},{"id":"NCBITaxon:46124","l":"Granulicatella adiacens","na":6,"nb":3,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["bone-element-uberon-0001474.html","bone element"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["NCBITaxon%3A46124","Granulicatella adiacens"],["NCBITaxon%3A638301","Granulicatella adiacens ATCC 49175"],["NCBITaxon%3A1073361","Granulicatella adiacens CC94D"]]},{"id":"NCBITaxon:1275","l":"Kocuria rosea","na":5,"nb":3,"a":[["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["marine-environment-envo-01000320.html","marine environment"],["oil-spill-envo-00002061.html","oil spill"],["painting-habitatmech-bacdive-0bfb662164.html","Painting"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A37921","Arthrobacter agilis"],["NCBITaxon%3A1275","Kocuria rosea"],["NCBITaxon%3A136273","Kocuria rosea subsp. polaris"]]},{"id":"NCBITaxon:135569","l":"Helicobacter apodemus","na":5,"nb":3,"a":[["cecum-mucosa-bto-0000213.html","cecum mucosa"],["epithelium-bto-0000416.html","epithelium"],["ht-29-cell-bto-0000182.html","HT-29 cell"],["lymphoid-tissue-bto-0000753.html","lymphoid tissue"],["mucosa-bto-0000886.html","mucosa"]],"b":[["NCBITaxon%3A135569","Helicobacter apodemus"],["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"]]},{"id":"NCBITaxon:1365","l":"Pseudolactococcus plantarum","na":3,"nb":5,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["NCBITaxon%3A44273","Lactococcus sp."],["NCBITaxon%3A40542","Leptotrichia buccalis"],["NCBITaxon%3A1365","Pseudolactococcus plantarum"],["NCBITaxon%3A1255636","Pseudolactococcus plantarum CNRZ 1322"],["NCBITaxon%3A1348632","Pseudolactococcus plantarum NBRC 100936"]]},{"id":"NCBITaxon:145262","l":"Methanothermobacter thermautotrophicus","na":5,"nb":3,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["intestine-environment-envo-2100002.html","intestine environment"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A145262","Methanothermobacter thermautotrophicus"],["NCBITaxon%3A187420","Methanothermobacter thermautotrophicus str. Delta H"],["NCBITaxon%3A79930","Methanothermobacter thermautotrophicus str. Winter"]]},{"id":"NCBITaxon:1516","l":"Thermoanaerobacter ethanolicus subsp. thermohydrosulfuricus","na":3,"nb":5,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A1757","Thermoanaerobacter ethanolicus"],["NCBITaxon%3A1125974","Thermoanaerobacter ethanolicus subsp. indiensis"],["NCBITaxon%3A1516","Thermoanaerobacter ethanolicus subsp. thermohydrosulfuricus"],["NCBITaxon%3A248492","Thermoanaerobacter thermohydrosulfuricus subsp. carboxydovorans"],["NCBITaxon%3A1198630","Thermoanaerobacter thermohydrosulfuricus WC1"]]},{"id":"NCBITaxon:1633","l":"Limosilactobacillus vaginalis","na":3,"nb":5,"a":[["ileum-bto-0000620.html","ileum"],["vaginal-fluid-bto-0003084.html","vaginal fluid"],["cropland-biome-envo-01000245.html","cropland biome"]],"b":[["NCBITaxon%3A1633","Limosilactobacillus vaginalis"],["NCBITaxon%3A1423814","Limosilactobacillus vaginalis DSM 5837 = ATCC 49540"],["NCBITaxon%3A858674","Limosilactobacillus vaginalis EX336960VC05"],["NCBITaxon%3A858675","Limosilactobacillus vaginalis EX336960VC11"],["NCBITaxon%3A858676","Limosilactobacillus vaginalis EX336960VC12"]]},{"id":"NCBITaxon:1648","l":"Erysipelothrix rhusiopathiae","na":3,"nb":5,"a":[["skin-of-body-uberon-0002097.html","skin of body"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["animal-litter-envo-00002191.html","animal litter"]],"b":[["NCBITaxon%3A1648","Erysipelothrix rhusiopathiae"],["NCBITaxon%3A525280","Erysipelothrix rhusiopathiae ATCC 19414"],["NCBITaxon%3A650150","Erysipelothrix rhusiopathiae str. Fujisawa"],["NCBITaxon%3A3119429","Erysipelothrix rhusiopathiae subsp. ohloneorum"],["NCBITaxon%3A1313290","Erysipelothrix rhusiopathiae SY1027"]]},{"id":"NCBITaxon:1661","l":"Trueperella pyogenes","na":5,"nb":3,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["uterus-bto-0001424.html","uterus"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["NCBITaxon%3A1661","Trueperella pyogenes"],["NCBITaxon%3A1448141","Trueperella pyogenes MS249"],["NCBITaxon%3A1435056","Trueperella pyogenes TP8"]]},{"id":"NCBITaxon:256","l":"Myroides odoratus","na":3,"nb":5,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"]],"b":[["NCBITaxon%3A1820002","Bartonella mastomydis"],["NCBITaxon%3A76832","Myroides odoratimimus"],["NCBITaxon%3A256","Myroides odoratus"],["NCBITaxon%3A883155","Myroides odoratus CIP 103059"],["NCBITaxon%3A929704","Myroides odoratus DSM 2801"]]},{"id":"NCBITaxon:2751","l":"Carnobacterium maltaromaticum","na":3,"nb":5,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["food-habitatmech-madin-81cb9e74cb.html","food"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["NCBITaxon%3A2751","Carnobacterium maltaromaticum"],["NCBITaxon%3A1255596","Carnobacterium maltaromaticum 38b"],["NCBITaxon%3A1087479","Carnobacterium maltaromaticum ATCC 35586"],["NCBITaxon%3A1449341","Carnobacterium maltaromaticum DSM 20342"],["NCBITaxon%3A1234679","Carnobacterium maltaromaticum LMA28"]]},{"id":"NCBITaxon:28262","l":"Thermodesulfovibrio yellowstonii","na":5,"nb":3,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["cultivated-environment-envo-01000311.html","cultivated environment"],["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"]],"b":[["NCBITaxon%3A1123375","Thermodesulfovibrio islandicus DSM 12570"],["NCBITaxon%3A28262","Thermodesulfovibrio yellowstonii"],["NCBITaxon%3A289376","Thermodesulfovibrio yellowstonii DSM 11347"]]},{"id":"NCBITaxon:292800","l":"Flavonifractor plautii","na":3,"nb":5,"a":[["goblet-cell-bto-0001540.html","goblet cell"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["secretion-bto-0002979.html","secretion"]],"b":[["NCBITaxon%3A292800","Flavonifractor plautii"],["NCBITaxon%3A742738","Flavonifractor plautii 1_3_50AFAA"],["NCBITaxon%3A411475","Flavonifractor plautii ATCC 29863"],["NCBITaxon%3A1073358","Flavonifractor plautii CC43_001K"],["NCBITaxon%3A649753","Flavonifractor plautii DSM 6740"]]},{"id":"NCBITaxon:29346","l":"Alkalithermobacter thermoalcaliphilus","na":5,"nb":3,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"],["cultivated-environment-envo-01000311.html","cultivated environment"],["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"]],"b":[["NCBITaxon%3A29349","Alkalithermobacter paradoxus"],["NCBITaxon%3A29346","Alkalithermobacter thermoalcaliphilus"],["NCBITaxon%3A1121328","Alkalithermobacter thermoalcaliphilus JW-YL-7 = DSM 7308"]]},{"id":"NCBITaxon:29575","l":"Taylorella equigenitalis","na":3,"nb":5,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["semen-bto-0001230.html","semen"],["urethra-bto-0001426.html","urethra"]],"b":[["NCBITaxon%3A29575","Taylorella equigenitalis"],["NCBITaxon%3A1091497","Taylorella equigenitalis 14/56"],["NCBITaxon%3A1323579","Taylorella equigenitalis 96-58774"],["NCBITaxon%3A743973","Taylorella equigenitalis ATCC 35865"],["NCBITaxon%3A937774","Taylorella equigenitalis MCE9"]]},{"id":"NCBITaxon:33059","l":"Acidithiobacillus caldus","na":3,"nb":5,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["paddy-field-envo-00000297.html","paddy field"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A33059","Acidithiobacillus caldus"],["NCBITaxon%3A637389","Acidithiobacillus caldus ATCC 51756"],["NCBITaxon%3A990288","Acidithiobacillus caldus SM-1"],["NCBITaxon%3A184426","environmental samples"],["NCBITaxon%3A184427","uncultured Acidithiobacillus caldus"]]},{"id":"NCBITaxon:76759","l":"Pseudomonas monteilii","na":3,"nb":5,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["NCBITaxon%3A76759","Pseudomonas monteilii"],["NCBITaxon%3A1215110","Pseudomonas monteilii NBRC 103158 = DSM 14164"],["NCBITaxon%3A1123524","Pseudomonas monteilii QM"],["NCBITaxon%3A1435044","Pseudomonas monteilii SB3078"],["NCBITaxon%3A1435058","Pseudomonas monteilii SB3101"]]},{"id":"NCBITaxon:103817","l":"Janibacter terrae","na":4,"nb":3,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"],["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A103817","Janibacter terrae"],["NCBITaxon%3A1216972","Janibacter terrae NBRC 107853"],["NCBITaxon%3A1053688","Janibacter terrae NBRC 107854 = JCM 12887"]]},{"id":"NCBITaxon:108015","l":"Bradyrhizobium yuanmingense","na":3,"nb":4,"a":[["rhizosphere-envo-00005801.html","rhizosphere"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["NCBITaxon%3A108015","Bradyrhizobium yuanmingense"],["NCBITaxon%3A1128326","Bradyrhizobium yuanmingense CCBAU 05623"],["NCBITaxon%3A1128327","Bradyrhizobium yuanmingense CCBAU 25021"],["NCBITaxon%3A1128328","Bradyrhizobium yuanmingense CCBAU 35157"]]},{"id":"NCBITaxon:1249","l":"Weissella paramesenteroides","na":3,"nb":4,"a":[["cecum-bto-0000166.html","cecum"],["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"]],"b":[["NCBITaxon%3A1930076","Leuconostoc sp."],["NCBITaxon%3A46256","Weissella hellenica"],["NCBITaxon%3A1249","Weissella paramesenteroides"],["NCBITaxon%3A585506","Weissella paramesenteroides ATCC 33313"]]},{"id":"NCBITaxon:129338","l":"Geobacillus subterraneus","na":3,"nb":4,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A129338","Geobacillus subterraneus"],["NCBITaxon%3A1382357","Geobacillus subterraneus PSS2"],["NCBITaxon%3A1117704","Geobacillus subterraneus subsp. aromaticivorans"],["NCBITaxon%3A1690415","Geobacillus subterraneus subsp. subterraneus"]]},{"id":"NCBITaxon:131111","l":"Schaalia turicensis","na":4,"nb":3,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["skin-of-body-uberon-0002097.html","skin of body"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"]],"b":[["NCBITaxon%3A131111","Schaalia turicensis"],["NCBITaxon%3A883077","Schaalia turicensis ACS-279-V-Col4"],["NCBITaxon%3A184870","Varibaculum cambriense"]]},{"id":"NCBITaxon:1328866","l":"Rathayibacter festucae DSM 15932","na":3,"nb":4,"a":[["leaf-po-0025034.html","leaf"],["plant-gall-po-0025626.html","plant gall"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["NCBITaxon%3A33941","Geobacillus thermoleovorans"],["NCBITaxon%3A278196","Geobacillus thermoleovorans subsp. stromboliensis"],["NCBITaxon%3A110937","Rathayibacter festucae"],["NCBITaxon%3A1328866","Rathayibacter festucae DSM 15932"]]},{"id":"NCBITaxon:135083","l":"Centipeda noxia","na":4,"nb":3,"a":[["dorsum-bto-0001713.html","dorsum"],["saliva-bto-0001202.html","saliva"],["sgs-cell-bto-0001210.html","SGS cell"],["tongue-bto-0001385.html","tongue"]],"b":[["NCBITaxon%3A135083","Centipeda noxia"],["NCBITaxon%3A585503","Centipeda noxia ATCC 43541"],["NCBITaxon%3A702437","Centipeda noxia F0398"]]},{"id":"NCBITaxon:1353","l":"Enterococcus gallinarum","na":3,"nb":4,"a":[["foregut-bto-0000507.html","foregut"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A1353","Enterococcus gallinarum"],["NCBITaxon%3A565653","Enterococcus gallinarum EG2"],["NCBITaxon%3A1357296","Enterococcus gallinarum EGD-AAK12"],["NCBITaxon%3A1218091","Enterococcus gallinarum NBRC 100675"]]},{"id":"NCBITaxon:1472","l":"Paenibacillus pabuli","na":4,"nb":3,"a":[["animal-house-envo-00003040.html","animal house"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A1397","Niallia circulans"],["NCBITaxon%3A1472","Paenibacillus pabuli"],["NCBITaxon%3A1349782","Paenibacillus pabuli NBRC 13638"]]},{"id":"NCBITaxon:1479","l":"Bacillus smithii","na":4,"nb":3,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A1479","Bacillus smithii"],["NCBITaxon%3A665952","Bacillus smithii 7_3_47FAA"],["NCBITaxon%3A1220590","Bacillus smithii NBRC 15311"]]},{"id":"NCBITaxon:148604","l":"Limosilactobacillus ingluviei","na":4,"nb":3,"a":[["animal-house-envo-00003040.html","animal house"],["organic-waste-material-envo-00002873.html","organic waste material"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["NCBITaxon%3A148604","Limosilactobacillus ingluviei"],["NCBITaxon%3A1423760","Limosilactobacillus ingluviei DSM 15946"],["NCBITaxon%3A1203076","Limosilactobacillus ingluviei str. Autruche 4"]]},{"id":"NCBITaxon:1519","l":"Clostridium tyrobutyricum","na":3,"nb":4,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A1519","Clostridium tyrobutyricum"],["NCBITaxon%3A1408889","Clostridium tyrobutyricum DIVETGP"],["NCBITaxon%3A1121342","Clostridium tyrobutyricum DSM 2637 = ATCC 25755 = JCM 11008"],["NCBITaxon%3A1212547","Clostridium tyrobutyricum UC7086"]]},{"id":"NCBITaxon:1588","l":"Lentilactobacillus hilgardii","na":3,"nb":4,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A1588","Lentilactobacillus hilgardii"],["NCBITaxon%3A525310","Lentilactobacillus hilgardii ATCC 27305"],["NCBITaxon%3A1423757","Lentilactobacillus hilgardii DSM 20176 = ATCC 8290"],["NCBITaxon%3A1580","Levilactobacillus brevis"]]},{"id":"NCBITaxon:1622","l":"Ligilactobacillus murinus","na":4,"nb":3,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"],["animal-litter-envo-00002191.html","animal litter"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["NCBITaxon%3A1622","Ligilactobacillus murinus"],["NCBITaxon%3A1235801","Ligilactobacillus murinus ASF361"],["NCBITaxon%3A1423772","Ligilactobacillus murinus DSM 20452 = NBRC 14221"]]},{"id":"NCBITaxon:164","l":"Treponema pectinovorum","na":4,"nb":3,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["pig-manure-envo-00003860.html","pig manure"],["skin-environment-envo-2100003.html","skin environment"],["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["NCBITaxon%3A164","Treponema pectinovorum"],["NCBITaxon%3A83524","Treponema pectinovorum 8:A:33768"],["NCBITaxon%3A1081905","Treponema pectinovorum VPI D-36DR-2"]]},{"id":"NCBITaxon:1697","l":"Corynebacterium ammoniagenes","na":3,"nb":4,"a":[["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A1697","Corynebacterium ammoniagenes"],["NCBITaxon%3A649754","Corynebacterium ammoniagenes DSM 20306"],["NCBITaxon%3A1255706","Corynebacterium ammoniagenes ws_2211"],["NCBITaxon%3A1705","Corynebacterium stationis"]]},{"id":"NCBITaxon:1961","l":"Streptomyces virginiae","na":3,"nb":4,"a":[["clay-envo-00002982.html","clay"],["plain-envo-00000086.html","plain"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A1535204","Metabacillus endolithicus"],["NCBITaxon%3A67381","Streptomyces violascens"],["NCBITaxon%3A1961","Streptomyces virginiae"],["NCBITaxon%3A3478784","Streptomyces virginiae subsp. lipoxae (nom. nud.)"]]},{"id":"NCBITaxon:28115","l":"Porphyromonas macacae","na":4,"nb":3,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"],["mud-envo-01000001.html","mud"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A28115","Porphyromonas macacae"],["NCBITaxon%3A1122974","Porphyromonas macacae DSM 20710 = JCM 13914"],["NCBITaxon%3A1236521","Porphyromonas macacae JCM 15984"]]},{"id":"NCBITaxon:321318","l":"Dietzia cinnamea","na":3,"nb":4,"a":[["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["NCBITaxon%3A321318","Dietzia cinnamea"],["NCBITaxon%3A1223524","Dietzia cinnamea NBRC 102147"],["NCBITaxon%3A910954","Dietzia cinnamea P4"],["NCBITaxon%3A37915","Dietzia maris"]]},{"id":"NCBITaxon:36808","l":"Corynebacterium bovis","na":3,"nb":4,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["NCBITaxon%3A36808","Corynebacterium bovis"],["NCBITaxon%3A927655","Corynebacterium bovis DSM 20582 = CIP 54.80"],["NCBITaxon%3A272240","Gulosibacter faecalis"],["NCBITaxon%3A1915061","Pseudoclavibacter sp."]]},{"id":"NCBITaxon:398578","l":"Delftia acidovorans SPH-1","na":4,"nb":3,"a":[["aquifer-envo-00012408.html","aquifer"],["large-river-biome-envo-00000887.html","large river biome"],["sewage-envo-00002018.html","sewage"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["NCBITaxon%3A80866","Delftia acidovorans"],["NCBITaxon%3A1218107","Delftia acidovorans NBRC 14950"],["NCBITaxon%3A398578","Delftia acidovorans SPH-1"]]},{"id":"NCBITaxon:400946","l":"Wohlfahrtiimonas chitiniclastica","na":3,"nb":4,"a":[["foot-bto-0000476.html","foot"],["pancreas-bto-0000988.html","pancreas"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A472","Acinetobacter sp."],["NCBITaxon%3A400946","Wohlfahrtiimonas chitiniclastica"],["NCBITaxon%3A1123502","Wohlfahrtiimonas chitiniclastica DSM 18708"],["NCBITaxon%3A1261130","Wohlfahrtiimonas chitiniclastica SH04"]]},{"id":"NCBITaxon:43771","l":"Corynebacterium urealyticum","na":3,"nb":4,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"]],"b":[["NCBITaxon%3A43771","Corynebacterium urealyticum"],["NCBITaxon%3A504474","Corynebacterium urealyticum DSM 7109"],["NCBITaxon%3A1267754","Corynebacterium urealyticum DSM 7111"],["NCBITaxon%3A401472","Corynebacterium ureicelerivorans"]]},{"id":"NCBITaxon:51665","l":"Aerococcus urinaeequi","na":4,"nb":3,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A51665","Aerococcus urinaeequi"],["NCBITaxon%3A1120952","Aerococcus urinaeequi DSM 20341 = CCUG 28094"],["NCBITaxon%3A1377","Aerococcus viridans"]]},{"id":"NCBITaxon:59505","l":"Actinotignum schaalii","na":4,"nb":3,"a":[["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["NCBITaxon%3A59505","Actinotignum schaalii"],["NCBITaxon%3A1120932","Actinotignum schaalii DSM 15541"],["NCBITaxon%3A883067","Actinotignum schaalii FB123-CNA-2"]]},{"id":"NCBITaxon:678","l":"Vibrio sp.","na":4,"nb":3,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["aquaculture-farm-envo-03600074.html","aquaculture farm"],["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["NCBITaxon%3A2077090","Vibrio gangliei"],["NCBITaxon%3A678","Vibrio sp."],["NCBITaxon%3A1046128","Vibrio zhanjiangensis"]]},{"id":"NCBITaxon:1019","l":"Capnocytophaga sputigena","na":3,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"],["biotope-envo-00002036.html","biotope"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A1019","Capnocytophaga sputigena"],["NCBITaxon%3A553177","Capnocytophaga sputigena ATCC 33612"],["NCBITaxon%3A1073354","Capnocytophaga sputigena CC21_001D"]]},{"id":"NCBITaxon:104102","l":"Acetobacter tropicalis","na":3,"nb":3,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"],["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A104102","Acetobacter tropicalis"],["NCBITaxon%3A749388","Acetobacter tropicalis NBRC 101654"],["NCBITaxon%3A1307920","Acetobacter tropicalis NRIC 0312"]]},{"id":"NCBITaxon:1108","l":"Chloroflexus aurantiacus","na":3,"nb":3,"a":[["rhizosphere-envo-00005801.html","rhizosphere"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["NCBITaxon%3A1108","Chloroflexus aurantiacus"],["NCBITaxon%3A324602","Chloroflexus aurantiacus J-10-fl"],["NCBITaxon%3A480224","Chloroflexus aurantiacus Y-400-fl"]]},{"id":"NCBITaxon:119224","l":"Streptococcus phocae","na":3,"nb":3,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"]],"b":[["NCBITaxon%3A119224","Streptococcus phocae"],["NCBITaxon%3A1698290","Streptococcus phocae subsp. phocae"],["NCBITaxon%3A1000562","Streptococcus phocae subsp. salmonis"]]},{"id":"NCBITaxon:1278308","l":"[Zimmermannella] faecalis ATCC 13722","na":3,"nb":3,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["fecal-environment-envo-01001029.html","fecal environment"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A272240","Gulosibacter faecalis"],["NCBITaxon%3A1915061","Pseudoclavibacter sp."],["NCBITaxon%3A1278308","[Zimmermannella] faecalis ATCC 13722"]]},{"id":"NCBITaxon:1329","l":"Streptococcus canis","na":3,"nb":3,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["NCBITaxon%3A1329","Streptococcus canis"],["NCBITaxon%3A482234","Streptococcus canis FSL Z3-227"],["NCBITaxon%3A1306","Streptococcus sp."]]},{"id":"NCBITaxon:1381","l":"Atopobium minutum","na":3,"nb":3,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["geographic-feature-envo-00000000.html","geographic feature"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A54007","Anaerococcus octavius"],["NCBITaxon%3A1381","Atopobium minutum"],["NCBITaxon%3A997872","Atopobium minutum 10063974"]]},{"id":"NCBITaxon:1423830","l":"Lacticaseibacillus paracasei subsp. tolerans DSM 20258","na":3,"nb":3,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A1597","Lacticaseibacillus paracasei"],["NCBITaxon%3A113557","Lacticaseibacillus paracasei subsp. tolerans"],["NCBITaxon%3A1423830","Lacticaseibacillus paracasei subsp. tolerans DSM 20258"]]},{"id":"NCBITaxon:153026","l":"Desulforegula conservatrix","na":3,"nb":3,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["low-tide-zone-envo-00000319.html","low tide zone"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["NCBITaxon%3A153026","Desulforegula conservatrix"],["NCBITaxon%3A1121417","Desulforegula conservatrix DSM 13527"],["NCBITaxon%3A1304885","Desulforegula conservatrix Mb1Pa"]]},{"id":"NCBITaxon:1534","l":"Clostridium kluyveri","na":3,"nb":3,"a":[["reservoir-envo-00000025.html","reservoir"],["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"]],"b":[["NCBITaxon%3A1534","Clostridium kluyveri"],["NCBITaxon%3A431943","Clostridium kluyveri DSM 555"],["NCBITaxon%3A583346","Clostridium kluyveri NBRC 12016"]]},{"id":"NCBITaxon:154","l":"Winmispira thermophila","na":3,"nb":3,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["lagoon-envo-00000038.html","lagoon"],["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A154","Winmispira thermophila"],["NCBITaxon%3A665571","Winmispira thermophila DSM 6192"],["NCBITaxon%3A869211","Winmispira thermophila DSM 6578"]]},{"id":"NCBITaxon:1570","l":"Halobacillus halophilus","na":3,"nb":3,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["NCBITaxon%3A1570","Halobacillus halophilus"],["NCBITaxon%3A866895","Halobacillus halophilus DSM 2266"],["NCBITaxon%3A56800","Halobacillus sp."]]},{"id":"NCBITaxon:2041036","l":"Corynebacterium gottingense","na":3,"nb":3,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["co-culture-habitatmech-bacdive-ff945d8a69.html","Co-culture"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A2041036","Corynebacterium gottingense"],["NCBITaxon%3A2026255","Corynebacterium hadale"],["NCBITaxon%3A156978","Corynebacterium imitans"]]},{"id":"NCBITaxon:239935","l":"Akkermansia muciniphila","na":3,"nb":3,"a":[["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["secretion-bto-0002979.html","secretion"]],"b":[["NCBITaxon%3A239935","Akkermansia muciniphila"],["NCBITaxon%3A349741","Akkermansia muciniphila ATCC BAA-835"],["NCBITaxon%3A1263034","Akkermansia muciniphila CAG:154"]]},{"id":"NCBITaxon:28091","l":"Neisseria weaveri","na":3,"nb":3,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"]],"b":[["NCBITaxon%3A28091","Neisseria weaveri"],["NCBITaxon%3A1051972","Neisseria weaveri ATCC 51223"],["NCBITaxon%3A1051985","Neisseria weaveri LMG 5135"]]},{"id":"NCBITaxon:301375","l":"Methanothrix harundinacea","na":3,"nb":3,"a":[["small-river-biome-envo-00000890.html","small river biome"],["shoreline-envo-00000486.html","shoreline"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["NCBITaxon%3A301375","Methanothrix harundinacea"],["NCBITaxon%3A1110509","Methanothrix harundinacea 6Ac"],["NCBITaxon%3A1127228","Methanothrix harundinacea 8Ac"]]},{"id":"NCBITaxon:360807","l":"Roseburia inulinivorans","na":3,"nb":3,"a":[["pig-manure-envo-00003860.html","pig manure"],["tropical-envo-01000204.html","tropical"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A360807","Roseburia inulinivorans"],["NCBITaxon%3A1263105","Roseburia inulinivorans CAG:15"],["NCBITaxon%3A622312","Roseburia inulinivorans DSM 16841"]]},{"id":"NCBITaxon:467210","l":"Lachnoanaerobaculum saburreum","na":3,"nb":3,"a":[["archeological-site-envo-00000564.html","archeological site"],["animal-habitation-envo-00005803.html","animal habitation"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["NCBITaxon%3A467210","Lachnoanaerobaculum saburreum"],["NCBITaxon%3A887325","Lachnoanaerobaculum saburreum DSM 3986"],["NCBITaxon%3A1095750","Lachnoanaerobaculum saburreum F0468"]]},{"id":"NCBITaxon:501571","l":"Butyricicoccus pullicaecorum","na":3,"nb":3,"a":[["poultry-litter-envo-00002192.html","poultry litter"],["urban-biome-envo-01000249.html","urban biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["NCBITaxon%3A501571","Butyricicoccus pullicaecorum"],["NCBITaxon%3A1203606","Butyricicoccus pullicaecorum 1.2"],["NCBITaxon%3A1121128","Butyricicoccus pullicaecorum DSM 23266"]]},{"id":"NCBITaxon:51663","l":"Pediococcus damnosus","na":3,"nb":3,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["blast-cell-bto-0000125.html","blast cell"]],"b":[["NCBITaxon%3A51663","Pediococcus damnosus"],["NCBITaxon%3A1089442","Pediococcus damnosus 9-6b"],["NCBITaxon%3A1448143","Pediococcus damnosus LMG 28219"]]},{"id":"NCBITaxon:83655","l":"Leclercia adecarboxylata","na":3,"nb":3,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["NCBITaxon%3A42895","Enterobacter sp."],["NCBITaxon%3A83655","Leclercia adecarboxylata"],["NCBITaxon%3A911008","Leclercia adecarboxylata ATCC 23216 = NBRC 102595"]]},{"id":"NCBITaxon:186817","l":"Bacillaceae","na":2,"nb":40935,"a":[["leaf-bto-0000713.html","leaf"],["trachea-bto-0001388.html","trachea"]],"b":[["NCBITaxon%3A3054939","Aciduricibacillus chroicocephali"],["NCBITaxon%3A279215","Aeribacillus alveayuensis"],["NCBITaxon%3A1868734","Aeribacillus composti"],["NCBITaxon%3A2078952","Aeribacillus kexueae"],["NCBITaxon%3A33936","Aeribacillus pallidus"],["NCBITaxon%3A1196032","Aeribacillus pallidus CIC9"]]},{"id":"NCBITaxon:1883","l":"Streptomyces","na":2,"nb":31267,"a":[["crop-bto-0000301.html","crop"],["lab-synthesis-habitatmech-bacdive-0e92e77cd4.html","Lab-synthesis"]],"b":[["NCBITaxon%3A208445","Amycolatopsis tolypomycina"],["NCBITaxon%3A1470348","Candidatus Streptomyces massiliensis"],["NCBITaxon%3A1211820","Candidatus Streptomyces massiliensis AP10"],["NCBITaxon%3A371608","Candidatus Streptomyces philanthi"],["NCBITaxon%3A1563718","Candidatus Streptomyces philanthi bv. albopilosus"],["NCBITaxon%3A371609","Candidatus Streptomyces philanthi bv. barbiger"]]},{"id":"NCBITaxon:186826","l":"Lactobacillales","na":2,"nb":15185,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["stem-bto-0001300.html","stem"]],"b":[["NCBITaxon%3A46125","Abiotrophia defectiva"],["NCBITaxon%3A592010","Abiotrophia defectiva ATCC 49176"],["NCBITaxon%3A1410024","Abiotrophia defectiva HMP_JCVI_SC0171"],["NCBITaxon%3A1410025","Abiotrophia defectiva HMP_JCVI_SC0235"],["NCBITaxon%3A191553","Abiotrophia para-adiacens"],["NCBITaxon%3A76631","Abiotrophia sp."]]},{"id":"NCBITaxon:468","l":"Moraxellaceae","na":2,"nb":9079,"a":[["head-bto-0000282.html","head"],["pseudostem-bto-0005992.html","pseudostem"]],"b":[["NCBITaxon%3A1673609","Acinetobacter albensis"],["NCBITaxon%3A2942470","Acinetobacter amyesii"],["NCBITaxon%3A363192","Acinetobacter antiviralis"],["NCBITaxon%3A1229165","Acinetobacter apis"],["NCBITaxon%3A2605383","Acinetobacter baretiae"],["NCBITaxon%3A470","Acinetobacter baumannii"]]},{"id":"NCBITaxon:1162","l":"Nostocaceae","na":2,"nb":8565,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"]],"b":[["NCBITaxon%3A3127779","Ahomia kamrupensis"],["NCBITaxon%3A3036653","Ahomia kamrupensis ASM11-PS"],["NCBITaxon%3A3127780","Ahomia purpurea"],["NCBITaxon%3A3036654","Ahomia purpurea NP-KLS-5A-PS"],["NCBITaxon%3A3449825","Ahomia purpurea RAT4D-PS"],["NCBITaxon%3A3127781","Ahomia soli"]]},{"id":"NCBITaxon:59201","l":"Salmonella enterica subsp. enterica","na":2,"nb":4549,"a":[["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A486987","Salmonella enterica subsp. enterica serovar '02-6026 18:1 v-z-Arizona'"],["NCBITaxon%3A2978376","Salmonella enterica subsp. enterica serovar 11:b:1,7"],["NCBITaxon%3A2808980","Salmonella enterica subsp. enterica serovar 11:r:-"],["NCBITaxon%3A3367019","Salmonella enterica subsp. enterica serovar 13,22:y:-"]]},{"id":"NCBITaxon:135624","l":"Aeromonadales","na":2,"nb":3684,"a":[["trachea-bto-0001388.html","trachea"],["urine-bto-0001419.html","urine"]],"b":[["NCBITaxon%3A1948889","Aeromonadaceae bacterium"],["NCBITaxon%3A1546596","Aeromonadaceae bacterium 124L2"],["NCBITaxon%3A1546597","Aeromonadaceae bacterium 126H"],["NCBITaxon%3A1546598","Aeromonadaceae bacterium 129C"],["NCBITaxon%3A1546599","Aeromonadaceae bacterium 130I2"],["NCBITaxon%3A1546600","Aeromonadaceae bacterium 136C"]]},{"id":"NCBITaxon:76892","l":"Caulobacteraceae","na":2,"nb":2633,"a":[["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["NCBITaxon%3A81457","alpha proteobacterium MBIC3025"],["NCBITaxon%3A81458","alpha proteobacterium MBIC3029"],["NCBITaxon%3A81442","alpha proteobacterium MBIC3032"],["NCBITaxon%3A81443","alpha proteobacterium MBIC3033"],["NCBITaxon%3A81441","alpha proteobacterium MBIC3034"],["NCBITaxon%3A81444","alpha proteobacterium MBIC3036"]]},{"id":"NCBITaxon:1129","l":"Synechococcus","na":2,"nb":2170,"a":[["column-bto-0005692.html","column"],["hemolymph-bto-0000572.html","hemolymph"]],"b":[["NCBITaxon%3A2081909","Anacystis marina"],["NCBITaxon%3A2081929","Anacystis marina UTEX LB 1634"],["NCBITaxon%3A1522304","Candidatus Synechococcus calcipolaris"],["NCBITaxon%3A1497997","Candidatus Synechococcus calcipolaris G9"],["NCBITaxon%3A431041","Candidatus Synechococcus spongiarum"],["NCBITaxon%3A1608213","Candidatus Synechococcus spongiarum 142"]]},{"id":"NCBITaxon:357","l":"Agrobacterium","na":2,"nb":1466,"a":[["stem-bto-0001300.html","stem"],["trunk-bto-0001493.html","trunk"]],"b":[["NCBITaxon%3A76979","Agrobacterium agile"],["NCBITaxon%3A147266","Agrobacterium albertimagni"],["NCBITaxon%3A1156935","Agrobacterium albertimagni AOL15"],["NCBITaxon%3A1585697","Agrobacterium arsenijevicii"],["NCBITaxon%3A44155","Agrobacterium aurantiacum"],["NCBITaxon%3A2052828","Agrobacterium bohemicum"]]},{"id":"NCBITaxon:203682","l":"Planctomycetota","na":2,"nb":1406,"a":[["column-bto-0005692.html","column"],["crop-bto-0000301.html","crop"]],"b":[["NCBITaxon%3A1930276","Adhaeretor mobilis"],["NCBITaxon%3A2862453","Adhaeretor sp."],["NCBITaxon%3A3454464","Aeoliella fuhlenseeensis"],["NCBITaxon%3A2527972","Aeoliella mucimassa"],["NCBITaxon%3A2795800","Aeoliella sp."],["NCBITaxon%3A2954799","Aeoliella straminimaris"]]},{"id":"NCBITaxon:528","l":"Ochrobactrum","na":2,"nb":1276,"a":[["pitcher-bto-0001069.html","pitcher"],["small-intestine-bto-0000651.html","small intestine"]],"b":[["NCBITaxon%3A529","Brucella anthropi"],["NCBITaxon%3A659015","Brucella daejeonensis"],["NCBITaxon%3A52132","Brucella sp."],["NCBITaxon%3A246569","marine bacterium 13737"],["NCBITaxon%3A259359","microbial fuel cell bacterium ISO1"],["NCBITaxon%3A2993941","Ochrobactrum chromiisoli"]]},{"id":"NCBITaxon:2013","l":"Nocardiopsis","na":2,"nb":1175,"a":[["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["NCBITaxon%3A2838703","Candidatus Nocardiopsis merdipullorum"],["NCBITaxon%3A220378","Nocardiopsis aegyptia"],["NCBITaxon%3A2831968","Nocardiopsis akebiae"],["NCBITaxon%3A1236269","Nocardiopsis akesuensis"],["NCBITaxon%3A53437","Nocardiopsis alba"],["NCBITaxon%3A1205910","Nocardiopsis alba ATCC BAA-2165"]]},{"id":"NCBITaxon:816","l":"Bacteroides","na":2,"nb":1027,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["colon-bto-0000269.html","colon"]],"b":[["NCBITaxon%3A85831","Bacteroides acidifaciens"],["NCBITaxon%3A1235814","Bacteroides acidifaciens JCM 10556"],["NCBITaxon%3A1841855","Bacteroides bouchesdurhonensis"],["NCBITaxon%3A47678","Bacteroides caccae"],["NCBITaxon%3A411901","Bacteroides caccae ATCC 43185"],["NCBITaxon%3A1263037","Bacteroides caccae CAG:21"]]},{"id":"NCBITaxon:171552","l":"Prevotellaceae","na":2,"nb":1003,"a":[["colon-bto-0000269.html","colon"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A671218","Alloprevotella rava"],["NCBITaxon%3A524034","Alloprevotella rava F0020"],["NCBITaxon%3A679199","Alloprevotella rava F0323"],["NCBITaxon%3A1872471","Alloprevotella sp."],["NCBITaxon%3A2338072","Alloprevotella sp. A1798"],["NCBITaxon%3A2594464","Alloprevotella sp. CON1"]]},{"id":"NCBITaxon:1678","l":"Bifidobacterium","na":2,"nb":993,"a":[["ileum-bto-0000620.html","ileum"],["juvenile-bto-0002168.html","juvenile"]],"b":[["NCBITaxon%3A638619","Bifidobacterium actinocoloniiforme"],["NCBITaxon%3A1437605","Bifidobacterium actinocoloniiforme DSM 22766"],["NCBITaxon%3A1680","Bifidobacterium adolescentis"],["NCBITaxon%3A367928","Bifidobacterium adolescentis ATCC 15703"],["NCBITaxon%3A1263057","Bifidobacterium adolescentis CAG:119"],["NCBITaxon%3A1410644","Bifidobacterium adolescentis DSM 20087"]]},{"id":"NCBITaxon:209","l":"Helicobacter","na":2,"nb":974,"a":[["cecum-mucosa-bto-0000213.html","cecum mucosa"],["mucosa-bto-0000886.html","mucosa"]],"b":[["NCBITaxon%3A2838618","Candidatus Helicobacter avicola"],["NCBITaxon%3A2838619","Candidatus Helicobacter avistercoris"],["NCBITaxon%3A104629","Candidatus Helicobacter bovis"],["NCBITaxon%3A167880","Candidatus Helicobacter cebus"],["NCBITaxon%3A146753","cilia-associated respiratory bacterium B6"],["NCBITaxon%3A212","Helicobacter acinonychis"]]},{"id":"NCBITaxon:203683","l":"Planctomycetia","na":2,"nb":969,"a":[["column-bto-0005692.html","column"],["crop-bto-0000301.html","crop"]],"b":[["NCBITaxon%3A1930276","Adhaeretor mobilis"],["NCBITaxon%3A2862453","Adhaeretor sp."],["NCBITaxon%3A3454464","Aeoliella fuhlenseeensis"],["NCBITaxon%3A2527972","Aeoliella mucimassa"],["NCBITaxon%3A2795800","Aeoliella sp."],["NCBITaxon%3A2954799","Aeoliella straminimaris"]]},{"id":"NCBITaxon:84567","l":"Pedobacter","na":2,"nb":889,"a":[["air-envo-00002005.html","air"],["glacier-envo-00000133.html","glacier"]],"b":[["NCBITaxon%3A3121371","Candidatus Pedobacter colombiensis"],["NCBITaxon%3A2807681","Nubsella sp. EM7"],["NCBITaxon%3A1325323","Nubsella sp. EsD18"],["NCBITaxon%3A1362345","Nubsella sp. Ri3Pt_4400"],["NCBITaxon%3A151894","Pedobacter africanus"],["NCBITaxon%3A454586","Pedobacter agri"]]},{"id":"NCBITaxon:118969","l":"Legionellales","na":2,"nb":803,"a":[["hemolymph-bto-0000572.html","hemolymph"],["skin-bto-0001253.html","skin"]],"b":[["NCBITaxon%3A254246","Aquicella lusitana"],["NCBITaxon%3A254247","Aquicella siphonis"],["NCBITaxon%3A1872583","Aquicella sp."],["NCBITaxon%3A868357","Aquicella sp. 1(27-11)"],["NCBITaxon%3A1084584","Aquicella sp. enrichment culture clone B21"],["NCBITaxon%3A1136692","Aquicella sp. enrichment culture clone CTBE CDB1001G12"]]},{"id":"NCBITaxon:551","l":"Erwinia","na":2,"nb":743,"a":[["pseudostem-bto-0005992.html","pseudostem"],["trunk-bto-0001493.html","trunk"]],"b":[["NCBITaxon%3A252393","Candidatus Erwinia dacicola"],["NCBITaxon%3A1922217","Candidatus Erwinia haradaeae"],["NCBITaxon%3A3141250","Candidatus Erwinia impunctatus"],["NCBITaxon%3A556","Dickeya chrysanthemi"],["NCBITaxon%3A3239803","Erwinia aeris"],["NCBITaxon%3A552","Erwinia amylovora"]]},{"id":"NCBITaxon:165695","l":"Sphingobium","na":2,"nb":663,"a":[["juvenile-bto-0002168.html","juvenile"],["leaf-bto-0000713.html","leaf"]],"b":[["NCBITaxon%3A86193","Sphingobium abikonense"],["NCBITaxon%3A1219036","Sphingobium abikonense NBRC 16140"],["NCBITaxon%3A2933566","Sphingobium agri"],["NCBITaxon%3A3341828","Sphingobium agrisoli"],["NCBITaxon%3A2008318","Sphingobium algorifonticola"],["NCBITaxon%3A135719","Sphingobium amiense"]]},{"id":"NCBITaxon:29580","l":"Janthinobacterium","na":2,"nb":640,"a":[["water-ice-envo-01000277.html","water ice"],["glacier-envo-00000133.html","glacier"]],"b":[["NCBITaxon%3A2985511","Janthinobacterium aestuarii"],["NCBITaxon%3A55508","Janthinobacterium agaricidamnosum"],["NCBITaxon%3A1349767","Janthinobacterium agaricidamnosum NBRC 102515 = DSM 9628"],["NCBITaxon%3A1259339","Janthinobacterium algoris"],["NCBITaxon%3A3424188","Janthinobacterium amylolyticum"],["NCBITaxon%3A2751477","Janthinobacterium aquaticum"]]},{"id":"NCBITaxon:41295","l":"Rhodospirillaceae","na":2,"nb":528,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["NCBITaxon%3A1709002","Aerophototrophica crusticola"],["NCBITaxon%3A2811398","Aerophototrophica sp."],["NCBITaxon%3A173005","alpha proteobacterium BiesA12"],["NCBITaxon%3A173006","alpha proteobacterium BiesA14"],["NCBITaxon%3A173007","alpha proteobacterium BiesA23"],["NCBITaxon%3A173008","alpha proteobacterium BiesA51"]]},{"id":"NCBITaxon:96492","l":"Frigoribacterium","na":2,"nb":431,"a":[["water-ice-envo-01000277.html","water ice"],["glacier-envo-00000133.html","glacier"]],"b":[["NCBITaxon%3A3402170","Frigoribacterium adelgis"],["NCBITaxon%3A132924","Frigoribacterium aff. faeni A-1/C-an/E"],["NCBITaxon%3A1522176","Frigoribacterium endophyticum"],["NCBITaxon%3A145483","Frigoribacterium faeni"],["NCBITaxon%3A1616784","Frigoribacterium salinisoli"],["NCBITaxon%3A1880915","Frigoribacterium sp."]]},{"id":"NCBITaxon:75787","l":"Rhodocyclaceae","na":2,"nb":390,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["NCBITaxon%3A182180","Aromatoleum anaerobium"],["NCBITaxon%3A551760","Aromatoleum aromaticum"],["NCBITaxon%3A76114","Aromatoleum aromaticum EbN1"],["NCBITaxon%3A76115","Aromatoleum bremense"],["NCBITaxon%3A200254","Aromatoleum buckelii"],["NCBITaxon%3A75796","Aromatoleum diolicum"]]},{"id":"NCBITaxon:255475","l":"Aurantimonadaceae","na":2,"nb":333,"a":[["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"]],"b":[["NCBITaxon%3A2606717","Antarcticirhabdus aurantiaca"],["NCBITaxon%3A1978523","Aurantimonadaceae bacterium"],["NCBITaxon%3A766839","Aurantimonadaceae bacterium 08WSH1-24"],["NCBITaxon%3A532743","Aurantimonadaceae bacterium ACEMC 6-4"],["NCBITaxon%3A1556364","Aurantimonadaceae bacterium CC13I"],["NCBITaxon%3A2998450","Aurantimonadaceae bacterium DY-R2A-11"]]},{"id":"NCBITaxon:104267","l":"Tenacibaculum","na":2,"nb":295,"a":[["column-bto-0005692.html","column"],["hemolymph-bto-0000572.html","hemolymph"]],"b":[["NCBITaxon%3A3141958","Candidatus Tenacibaculum medusae"],["NCBITaxon%3A413713","Tenacibaculum adriaticum"],["NCBITaxon%3A362781","Tenacibaculum aestuarii"],["NCBITaxon%3A2006131","Tenacibaculum aestuariivivum"],["NCBITaxon%3A1908389","Tenacibaculum agarivorans"],["NCBITaxon%3A426481","Tenacibaculum aiptasiae"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":2,"nb":264,"a":[["watercourse-envo-00000029.html","watercourse"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A663","Vibrio alginolyticus"],["NCBITaxon%3A29494","Vibrio furnissii"],["NCBITaxon%3A675811","Vibrio furnissii CIP 102972"],["NCBITaxon%3A670","Vibrio parahaemolyticus"],["NCBITaxon%3A1238231","Vibrio parahaemolyticus 10290"],["NCBITaxon%3A1238195","Vibrio parahaemolyticus 10296"]]},{"id":"NCBITaxon:487","l":"Neisseria meningitidis","na":2,"nb":232,"a":[["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["NCBITaxon%3A487","Neisseria meningitidis"],["NCBITaxon%3A374833","Neisseria meningitidis 053442"],["NCBITaxon%3A926508","Neisseria meningitidis 1076"],["NCBITaxon%3A926533","Neisseria meningitidis 1101"],["NCBITaxon%3A926506","Neisseria meningitidis 1102"],["NCBITaxon%3A926507","Neisseria meningitidis 115 CB V1"]]},{"id":"NCBITaxon:119532","l":"Microcoleus vaginatus","na":2,"nb":186,"a":[["desert-biome-envo-01000179.html","desert biome"],["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A2290990","Microcoleus cf. vaginatus Ru-6-12"],["NCBITaxon%3A119532","Microcoleus vaginatus"],["NCBITaxon%3A3034630","Microcoleus vaginatus 98"],["NCBITaxon%3A2493238","Microcoleus vaginatus ACT688"],["NCBITaxon%3A3459536","Microcoleus vaginatus APE406"],["NCBITaxon%3A669364","Microcoleus vaginatus ASU LT04"]]},{"id":"NCBITaxon:1033","l":"Afipia","na":2,"nb":182,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"]],"b":[["NCBITaxon%3A151414","Afipia birgiae"],["NCBITaxon%3A1197906","Afipia birgiae 34632"],["NCBITaxon%3A56946","Afipia broomeae"],["NCBITaxon%3A883078","Afipia broomeae ATCC 49717"],["NCBITaxon%3A40137","Afipia carboxidovorans"],["NCBITaxon%3A1031710","Afipia carboxidovorans OM4"]]},{"id":"NCBITaxon:1234","l":"Nitrospira","na":2,"nb":181,"a":[["crop-bto-0000301.html","crop"],["seedling-bto-0001228.html","seedling"]],"b":[["NCBITaxon%3A3020900","Candidatus Nitrospira allomarina"],["NCBITaxon%3A463288","Candidatus Nitrospira bockiana"],["NCBITaxon%3A1715989","Candidatus Nitrospira inopinata"],["NCBITaxon%3A3721632","Candidatus Nitrospira jureiensis"],["NCBITaxon%3A2652173","Candidatus Nitrospira kreftii"],["NCBITaxon%3A3020899","Candidatus Nitrospira neomarina"]]},{"id":"NCBITaxon:20","l":"Phenylobacterium","na":2,"nb":156,"a":[["crop-bto-0000301.html","crop"],["nectar-bto-0000537.html","nectar"]],"b":[["NCBITaxon%3A1763816","Phenylobacterium aquaticum"],["NCBITaxon%3A457173","Phenylobacterium composti"],["NCBITaxon%3A1122958","Phenylobacterium composti DSM 19425"],["NCBITaxon%3A1298959","Phenylobacterium conjunctum"],["NCBITaxon%3A1914756","Phenylobacterium deserti"],["NCBITaxon%3A279827","Phenylobacterium falsum"]]},{"id":"NCBITaxon:235888","l":"Salinibacterium","na":2,"nb":147,"a":[["water-ice-envo-01000277.html","water ice"],["glacier-envo-00000133.html","glacier"]],"b":[["NCBITaxon%3A1348338","Leifsonia rubra CMS 76R"],["NCBITaxon%3A205941","Salinibacterium amurskyense"],["NCBITaxon%3A191389","Salinibacterium rubrum"],["NCBITaxon%3A1915057","Salinibacterium sp."],["NCBITaxon%3A3439527","Salinibacterium sp. 10G20-15"],["NCBITaxon%3A3444110","Salinibacterium sp. 10J20-7"]]},{"id":"NCBITaxon:830","l":"Butyrivibrio","na":2,"nb":146,"a":[["alimentary-canal-bto-0000058.html","alimentary canal"],["colon-bto-0000269.html","colon"]],"b":[["NCBITaxon%3A129556","Butyrivibrio cf. fibrisolvens EAT6"],["NCBITaxon%3A831","Butyrivibrio fibrisolvens"],["NCBITaxon%3A657324","Butyrivibrio fibrisolvens 16/4"],["NCBITaxon%3A1280697","Butyrivibrio fibrisolvens AB2020"],["NCBITaxon%3A1121131","Butyrivibrio fibrisolvens DSM 3071"],["NCBITaxon%3A1280700","Butyrivibrio fibrisolvens FE2007"]]},{"id":"NCBITaxon:2701","l":"Gardnerella","na":2,"nb":137,"a":[["brain-bto-0000142.html","brain"],["heart-bto-0000562.html","heart"]],"b":[["NCBITaxon%3A3698142","Gardnerella aggregata"],["NCBITaxon%3A3455249","Gardnerella aggregata subsp. aggregata"],["NCBITaxon%3A2749064","Gardnerella aggregata subsp. hutchinsoni"],["NCBITaxon%3A2749049","Gardnerella bivia"],["NCBITaxon%3A3383031","Gardnerella bretellae"],["NCBITaxon%3A2749071","Gardnerella coleohominis"]]},{"id":"NCBITaxon:2836","l":"Bacillariophyta","na":2,"nb":122,"a":[["diatom-associated-environment-habitatmech-gold-1276bea544.html","diatom-associated environment"],["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["NCBITaxon%3A451788","Acanthoceras zachariasii"],["NCBITaxon%3A431333","Achnanthidium minutissimum"],["NCBITaxon%3A49231","Actinocyclus curvatulus"],["NCBITaxon%3A265554","Amphora coffeiformis"],["NCBITaxon%3A1155433","Arcocellulus cornucervis"],["NCBITaxon%3A210441","Asterionella formosa"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":2,"nb":101,"a":[["hospital-envo-00002173.html","hospital"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A817","Bacteroides fragilis"],["NCBITaxon%3A457424","Bacteroides fragilis 3_1_12"],["NCBITaxon%3A862962","Bacteroides fragilis 638R"],["NCBITaxon%3A1308728","Bacteroides fragilis ADL-402"],["NCBITaxon%3A1263046","Bacteroides fragilis CAG:47"],["NCBITaxon%3A1263047","Bacteroides fragilis CAG:558"]]},{"id":"NCBITaxon:28183","l":"Leptospira santarosai","na":2,"nb":72,"a":[["kidney-bto-0000671.html","kidney"],["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A28183","Leptospira santarosai"],["NCBITaxon%3A312171","Leptospira santarosai serovar Alexi"],["NCBITaxon%3A407851","Leptospira santarosai serovar Alice"],["NCBITaxon%3A1049975","Leptospira santarosai serovar Arenal"],["NCBITaxon%3A1085549","Leptospira santarosai serovar Arenal str. 11"],["NCBITaxon%3A1085550","Leptospira santarosai serovar Arenal str. 7"]]},{"id":"NCBITaxon:83554","l":"Chlamydia psittaci","na":2,"nb":69,"a":[["spleen-bto-0001281.html","spleen"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A83554","Chlamydia psittaci"],["NCBITaxon%3A1112252","Chlamydia psittaci 01DC11"],["NCBITaxon%3A1221877","Chlamydia psittaci 01DC12"],["NCBITaxon%3A1112253","Chlamydia psittaci 02DC14"],["NCBITaxon%3A1112254","Chlamydia psittaci 02DC15"],["NCBITaxon%3A1112255","Chlamydia psittaci 02DC16"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":2,"nb":66,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A382","Sinorhizobium meliloti"],["NCBITaxon%3A266834","Sinorhizobium meliloti 1021"],["NCBITaxon%3A1194706","Sinorhizobium meliloti 1A42"],["NCBITaxon%3A1286640","Sinorhizobium meliloti 2011"],["NCBITaxon%3A1041151","Sinorhizobium meliloti 4H41"],["NCBITaxon%3A1194707","Sinorhizobium meliloti 5A14"]]},{"id":"NCBITaxon:76634","l":"Mycetocola","na":2,"nb":66,"a":[["water-ice-envo-01000277.html","water ice"],["glacier-envo-00000133.html","glacier"]],"b":[["NCBITaxon%3A76637","Mycetocola lacteus"],["NCBITaxon%3A699879","Mycetocola manganoxydans"],["NCBITaxon%3A995034","Mycetocola miduiensis"],["NCBITaxon%3A331618","Mycetocola reblochoni"],["NCBITaxon%3A1255698","Mycetocola reblochoni REB411"],["NCBITaxon%3A76636","Mycetocola saprophilus"]]},{"id":"NCBITaxon:103796","l":"Pseudomonas syringae pv. actinidiae","na":2,"nb":65,"a":[["leaf-po-0025034.html","leaf"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A103796","Pseudomonas syringae pv. actinidiae"],["NCBITaxon%3A1094176","Pseudomonas syringae pv. actinidiae CFBP 7286"],["NCBITaxon%3A1108967","Pseudomonas syringae pv. actinidiae CH2010-5"],["NCBITaxon%3A1108968","Pseudomonas syringae pv. actinidiae CH2010-6"],["NCBITaxon%3A1343752","Pseudomonas syringae pv. actinidiae CH2010-7"],["NCBITaxon%3A1343741","Pseudomonas syringae pv. actinidiae Haxa4"]]},{"id":"NCBITaxon:504481","l":"Sediminibacterium","na":2,"nb":65,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["pitcher-bto-0001069.html","pitcher"]],"b":[["NCBITaxon%3A1706829","Sediminibacterium aquarii"],["NCBITaxon%3A413434","Sediminibacterium ginsengisoli"],["NCBITaxon%3A1086393","Sediminibacterium goheungense"],["NCBITaxon%3A1162689","Sediminibacterium lactis"],["NCBITaxon%3A1751071","Sediminibacterium longum"],["NCBITaxon%3A669455","Sediminibacterium magnilacihabitans"]]},{"id":"NCBITaxon:235572","l":"Candidatus Portiera","na":2,"nb":57,"a":[["column-bto-0005692.html","column"],["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["NCBITaxon%3A91844","Candidatus Portiera aleyrodidarum"],["NCBITaxon%3A1386065","Candidatus Portiera aleyrodidarum AD-VLC"],["NCBITaxon%3A1206109","Candidatus Portiera aleyrodidarum BT-B-HRs"],["NCBITaxon%3A1232201","Candidatus Portiera aleyrodidarum BT-Q"],["NCBITaxon%3A1231388","Candidatus Portiera aleyrodidarum BT-Q-AWRs"],["NCBITaxon%3A1239881","Candidatus Portiera aleyrodidarum BT-QVLC"]]},{"id":"NCBITaxon:40544","l":"Sutterella","na":2,"nb":53,"a":[["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"]],"b":[["NCBITaxon%3A2838764","Candidatus Sutterella merdavium"],["NCBITaxon%3A2584944","Sutterella faecalis"],["NCBITaxon%3A1816689","Sutterella massiliensis"],["NCBITaxon%3A2494234","Sutterella megalosphaeroides"],["NCBITaxon%3A293545","Sutterella morbirenis"],["NCBITaxon%3A437898","Sutterella parvirubra"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":2,"nb":47,"a":[["feces-uberon-0001988.html","feces"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A630","Yersinia enterocolitica"],["NCBITaxon%3A947561","Yersinia enterocolitica IP2222"],["NCBITaxon%3A1243181","Yersinia enterocolitica IP 10393"],["NCBITaxon%3A1443113","Yersinia enterocolitica LC20"],["NCBITaxon%3A947557","Yersinia enterocolitica NFO"],["NCBITaxon%3A150052","Yersinia enterocolitica subsp. enterocolitica"]]},{"id":"NCBITaxon:139","l":"Borreliella burgdorferi","na":2,"nb":43,"a":[["joint-bto-0001686.html","joint"],["needle-bto-0000917.html","needle"]],"b":[["NCBITaxon%3A139","Borreliella burgdorferi"],["NCBITaxon%3A476210","Borreliella burgdorferi 118a"],["NCBITaxon%3A445983","Borreliella burgdorferi 156a"],["NCBITaxon%3A521009","Borreliella burgdorferi 297"],["NCBITaxon%3A498738","Borreliella burgdorferi 29805"],["NCBITaxon%3A498740","Borreliella burgdorferi 64b"]]},{"id":"NCBITaxon:266940","l":"Kineococcus radiotolerans SRS30216 = ATCC BAA-149","na":38,"nb":2,"a":[["air-envo-00002005.html","air"],["bay-envo-00000032.html","bay"],["coastal-sea-water-envo-00002150.html","coastal sea water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"]],"b":[["NCBITaxon%3A131568","Kineococcus radiotolerans"],["NCBITaxon%3A266940","Kineococcus radiotolerans SRS30216 = ATCC BAA-149"]]},{"id":"NCBITaxon:1303","l":"Streptococcus oralis","na":2,"nb":35,"a":[["throat-bto-0000828.html","throat"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["NCBITaxon%3A68892","Streptococcus infantis"],["NCBITaxon%3A768726","Streptococcus mitis bv. 2 str. F0392"],["NCBITaxon%3A1000588","Streptococcus mitis bv. 2 str. SK95"],["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A655813","Streptococcus oralis ATCC 35037"],["NCBITaxon%3A888049","Streptococcus oralis ATCC 49296"]]},{"id":"NCBITaxon:184914","l":"Corallococcus coralloides","na":35,"nb":2,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["watercourse-envo-00000029.html","watercourse"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["NCBITaxon%3A184914","Corallococcus coralloides"],["NCBITaxon%3A1144275","Corallococcus coralloides DSM 2259"]]},{"id":"NCBITaxon:714","l":"Aggregatibacter actinomycetemcomitans","na":2,"nb":35,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A714","Aggregatibacter actinomycetemcomitans"],["NCBITaxon%3A754507","Aggregatibacter actinomycetemcomitans ANH9381"],["NCBITaxon%3A668336","Aggregatibacter actinomycetemcomitans D11S-1"],["NCBITaxon%3A754505","Aggregatibacter actinomycetemcomitans D17P-3"],["NCBITaxon%3A694569","Aggregatibacter actinomycetemcomitans D7S-1"],["NCBITaxon%3A1120957","Aggregatibacter actinomycetemcomitans DSM 8324"]]},{"id":"NCBITaxon:128","l":"Isosphaera pallida","na":34,"nb":2,"a":[["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["low-tide-zone-envo-00000319.html","low tide zone"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"]],"b":[["NCBITaxon%3A128","Isosphaera pallida"],["NCBITaxon%3A575540","Isosphaera pallida ATCC 43644"]]},{"id":"NCBITaxon:1077257","l":"Chthonomonadia","na":2,"nb":32,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"]],"b":[["NCBITaxon%3A2739509","Chthonomonadaceae bacterium"],["NCBITaxon%3A2282151","Chthonomonadales bacterium"],["NCBITaxon%3A2282152","Chthonomonadia bacterium"],["NCBITaxon%3A454171","Chthonomonas calidirosea"],["NCBITaxon%3A1416929","Chthonomonas calidirosea P488"],["NCBITaxon%3A1303518","Chthonomonas calidirosea T49"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":2,"nb":29,"a":[["city-envo-00000856.html","city"],["cropland-biome-envo-01000245.html","cropland biome"]],"b":[["NCBITaxon%3A1579","Lactobacillus acidophilus"],["NCBITaxon%3A47770","Lactobacillus crispatus"],["NCBITaxon%3A575595","Lactobacillus crispatus 125-2-CHN"],["NCBITaxon%3A1381118","Lactobacillus crispatus 2029"],["NCBITaxon%3A679188","Lactobacillus crispatus 214-1"],["NCBITaxon%3A440496","Lactobacillus crispatus CTV-05"]]},{"id":"NCBITaxon:1026","l":"Marinoscillum furvescens","na":28,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"]],"b":[["NCBITaxon%3A1026","Marinoscillum furvescens"],["NCBITaxon%3A1122208","Marinoscillum furvescens DSM 4134"]]},{"id":"NCBITaxon:1077264","l":"Chthonomonadaceae","na":2,"nb":28,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"]],"b":[["NCBITaxon%3A2739509","Chthonomonadaceae bacterium"],["NCBITaxon%3A454171","Chthonomonas calidirosea"],["NCBITaxon%3A1416929","Chthonomonas calidirosea P488"],["NCBITaxon%3A1303518","Chthonomonas calidirosea T49"],["NCBITaxon%3A1427520","Chthonomonas calidirosea TKA4.10"],["NCBITaxon%3A1427521","Chthonomonas calidirosea WRG1.2"]]},{"id":"NCBITaxon:28141","l":"Cronobacter sakazakii","na":2,"nb":28,"a":[["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["NCBITaxon%3A413497","Cronobacter dublinensis"],["NCBITaxon%3A413501","Cronobacter muytjensii"],["NCBITaxon%3A1159613","Cronobacter muytjensii ATCC 51329"],["NCBITaxon%3A28141","Cronobacter sakazakii"],["NCBITaxon%3A1159489","Cronobacter sakazakii 2151"],["NCBITaxon%3A1208592","Cronobacter sakazakii 680"]]},{"id":"NCBITaxon:103","l":"Flectobacillus major","na":27,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"]],"b":[["NCBITaxon%3A103","Flectobacillus major"],["NCBITaxon%3A929703","Flectobacillus major DSM 103"]]},{"id":"NCBITaxon:1680","l":"Bifidobacterium adolescentis","na":2,"nb":27,"a":[["brain-bto-0000142.html","brain"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["NCBITaxon%3A1680","Bifidobacterium adolescentis"],["NCBITaxon%3A367928","Bifidobacterium adolescentis ATCC 15703"],["NCBITaxon%3A1263057","Bifidobacterium adolescentis CAG:119"],["NCBITaxon%3A1410644","Bifidobacterium adolescentis DSM 20087"],["NCBITaxon%3A1437612","Bifidobacterium adolescentis JCM 15918"],["NCBITaxon%3A411481","Bifidobacterium adolescentis L2-32"]]},{"id":"NCBITaxon:1004301","l":"Flavihumibacter","na":2,"nb":26,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"]],"b":[["NCBITaxon%3A1442385","Flavihumibacter cheonanensis"],["NCBITaxon%3A2909236","Flavihumibacter fluminis"],["NCBITaxon%3A2838157","Flavihumibacter fluvii"],["NCBITaxon%3A549295","Flavihumibacter petaseus"],["NCBITaxon%3A1220578","Flavihumibacter petaseus NBRC 106054"],["NCBITaxon%3A2716883","Flavihumibacter profundi"]]},{"id":"NCBITaxon:74426","l":"Collinsella aerofaciens","na":2,"nb":25,"a":[["coral-reef-envo-00000150.html","coral reef"],["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["NCBITaxon%3A74426","Collinsella aerofaciens"],["NCBITaxon%3A411903","Collinsella aerofaciens ATCC 25986"],["NCBITaxon%3A1339403","Collinsella aerofaciens TSDA1.2-1.1"],["NCBITaxon%3A1339404","Collinsella aerofaciens TSDA1.2-1.2"],["NCBITaxon%3A1339405","Collinsella aerofaciens TSDA1.2-1.3"],["NCBITaxon%3A1339406","Collinsella aerofaciens TSDC17.1-1.1"]]},{"id":"NCBITaxon:1336","l":"Streptococcus equi","na":2,"nb":23,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["saliva-bto-0001202.html","saliva"]],"b":[["NCBITaxon%3A1336","Streptococcus equi"],["NCBITaxon%3A148942","Streptococcus equi subsp. equi"],["NCBITaxon%3A553482","Streptococcus equi subsp. equi 4047"],["NCBITaxon%3A254358","Streptococcus equi subsp. ruminatorum"],["NCBITaxon%3A1051981","Streptococcus equi subsp. ruminatorum CECT 5772"],["NCBITaxon%3A40041","Streptococcus equi subsp. zooepidemicus"]]},{"id":"NCBITaxon:1679","l":"Bifidobacterium longum subsp. longum","na":2,"nb":22,"a":[["breast-bto-0000149.html","breast"],["juvenile-bto-0002168.html","juvenile"]],"b":[["NCBITaxon%3A216816","Bifidobacterium longum"],["NCBITaxon%3A1682","Bifidobacterium longum subsp. infantis"],["NCBITaxon%3A1679","Bifidobacterium longum subsp. longum"],["NCBITaxon%3A1350473","Bifidobacterium longum subsp. longum 17-1B"],["NCBITaxon%3A1350471","Bifidobacterium longum subsp. longum 1-5B"],["NCBITaxon%3A1161744","Bifidobacterium longum subsp. longum 1-6B"]]},{"id":"NCBITaxon:54","l":"Nannocystis exedens","na":22,"nb":2,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["watercourse-envo-00000029.html","watercourse"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["NCBITaxon%3A54","Nannocystis exedens"],["NCBITaxon%3A1366054","Nannocystis exedens subsp. cinnabaria"]]},{"id":"NCBITaxon:104176","l":"Oscillochloris trichoides","na":21,"nb":2,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["low-tide-zone-envo-00000319.html","low tide zone"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"]],"b":[["NCBITaxon%3A104176","Oscillochloris trichoides"],["NCBITaxon%3A765420","Oscillochloris trichoides DG-6"]]},{"id":"NCBITaxon:32020","l":"Campylobacter fetus subsp. venerealis","na":2,"nb":21,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A196","Campylobacter fetus"],["NCBITaxon%3A32020","Campylobacter fetus subsp. venerealis"],["NCBITaxon%3A1093099","Campylobacter fetus subsp. venerealis 97/608"],["NCBITaxon%3A2789416","Campylobacter fetus subsp. venerealis bv. intermedius"],["NCBITaxon%3A1167640","Campylobacter fetus subsp. venerealis bv. intermedius str. 642-21"],["NCBITaxon%3A1333529","Campylobacter fetus subsp. venerealis bv. intermedius str. 99541"]]},{"id":"NCBITaxon:1911","l":"Streptomyces griseus","na":2,"nb":20,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A1884","Streptomyces acrimycini"],["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A67274","Streptomyces argenteolus"],["NCBITaxon%3A1896","Streptomyces bikiniensis"],["NCBITaxon%3A90079","Streptomyces caviscabies"],["NCBITaxon%3A66883","Streptomyces cyaneofuscatus"]]},{"id":"NCBITaxon:633","l":"Yersinia pseudotuberculosis","na":2,"nb":20,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A633","Yersinia pseudotuberculosis"],["NCBITaxon%3A1286084","Yersinia pseudotuberculosis B-6796"],["NCBITaxon%3A1286085","Yersinia pseudotuberculosis B-6862"],["NCBITaxon%3A1286086","Yersinia pseudotuberculosis B-6863"],["NCBITaxon%3A1286087","Yersinia pseudotuberculosis B-6864"],["NCBITaxon%3A1286088","Yersinia pseudotuberculosis B-6865"]]},{"id":"NCBITaxon:114628","l":"Alkaliphilus transvaalensis","na":19,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biome-envo-00000428.html","biome"]],"b":[["NCBITaxon%3A114628","Alkaliphilus transvaalensis"],["NCBITaxon%3A1408422","Alkaliphilus transvaalensis ATCC 700919"]]},{"id":"NCBITaxon:1613","l":"Limosilactobacillus fermentum","na":2,"nb":19,"a":[["intestine-environment-envo-2100002.html","intestine environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A1591","Lactobacillus sp."],["NCBITaxon%3A2767931","Lentilactobacillus sp."],["NCBITaxon%3A1613","Limosilactobacillus fermentum"],["NCBITaxon%3A1449750","Limosilactobacillus fermentum 222"],["NCBITaxon%3A575599","Limosilactobacillus fermentum 28-3-CHN"],["NCBITaxon%3A1381124","Limosilactobacillus fermentum 3872"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":19,"nb":2,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["saline-water-body-envo-01001319.html","saline water body"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["NCBITaxon%3A324833","Streptomyces lasalocidi"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:48296","l":"Acinetobacter pittii","na":2,"nb":19,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A106654","Acinetobacter nosocomialis"],["NCBITaxon%3A1217670","Acinetobacter nosocomialis NIPH 2119"],["NCBITaxon%3A48296","Acinetobacter pittii"],["NCBITaxon%3A1147132","Acinetobacter pittii 42F"],["NCBITaxon%3A1217673","Acinetobacter pittii ANC 3678"]]},{"id":"NCBITaxon:1719","l":"Corynebacterium pseudotuberculosis","na":2,"nb":18,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["NCBITaxon%3A1719","Corynebacterium pseudotuberculosis"],["NCBITaxon%3A679896","Corynebacterium pseudotuberculosis 1002"],["NCBITaxon%3A1087454","Corynebacterium pseudotuberculosis 1/06-A"],["NCBITaxon%3A1168865","Corynebacterium pseudotuberculosis 258"],["NCBITaxon%3A1089446","Corynebacterium pseudotuberculosis 267"],["NCBITaxon%3A1087451","Corynebacterium pseudotuberculosis 31"]]},{"id":"NCBITaxon:214688","l":"Gemmata obscuriglobus UQM 2246","na":18,"nb":2,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["pond-water-envo-00002228.html","pond water"],["water-body-envo-00000063.html","water body"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["aquatic-environment-envo-01000317.html","aquatic environment"]],"b":[["NCBITaxon%3A114","Gemmata obscuriglobus"],["NCBITaxon%3A214688","Gemmata obscuriglobus UQM 2246"]]},{"id":"NCBITaxon:103810","l":"Riemerella columbina","na":17,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"],["low-tide-zone-envo-00000319.html","low tide zone"]],"b":[["NCBITaxon%3A103810","Riemerella columbina"],["NCBITaxon%3A1123058","Riemerella columbina DSM 16469"]]},{"id":"NCBITaxon:379066","l":"Gemmatimonas aurantiaca T-27","na":17,"nb":2,"a":[["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["alkaline-environment-envo-01000316.html","alkaline environment"],["aquatic-environment-envo-01000317.html","aquatic environment"],["desert-sand-envo-00005800.html","desert sand"]],"b":[["NCBITaxon%3A173480","Gemmatimonas aurantiaca"],["NCBITaxon%3A379066","Gemmatimonas aurantiaca T-27"]]},{"id":"NCBITaxon:68042","l":"Streptomyces hygroscopicus subsp. hygroscopicus","na":2,"nb":17,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A68175","Streptomyces antimycoticus"],["NCBITaxon%3A1226758","Streptomyces antimycoticus subsp. mordarskii"],["NCBITaxon%3A476551","Streptomyces ascomycinicus"],["NCBITaxon%3A114699","Streptomyces asiaticus"],["NCBITaxon%3A3098222","Streptomyces asiaticus subsp. ignotus"],["NCBITaxon%3A998084","Streptomyces himastatinicus"]]},{"id":"NCBITaxon:244366","l":"Klebsiella variicola","na":2,"nb":16,"a":[["liquid-water-envo-00002006.html","liquid water"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A576","Klebsiella sp."],["NCBITaxon%3A244366","Klebsiella variicola"],["NCBITaxon%3A507522","Klebsiella variicola 342"],["NCBITaxon%3A640131","Klebsiella variicola At-22"],["NCBITaxon%3A1438700","Klebsiella variicola BIDMC 61"]]},{"id":"NCBITaxon:28214","l":"Sphingomonas sp.","na":16,"nb":2,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["air-conditioning-unit-envo-00002874.html","air conditioning unit"],["laboratory-facility-envo-01001406.html","laboratory facility"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A28214","Sphingomonas sp."],["NCBITaxon%3A1888892","Sphingomonas turrisvirgatae"]]},{"id":"NCBITaxon:285","l":"Comamonas testosteroni","na":2,"nb":16,"a":[["waste-habitatmech-bacdive-36df85e4a4.html","Waste"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A1775535","Acidovorax sp. JCM 10065"],["NCBITaxon%3A285","Comamonas testosteroni"],["NCBITaxon%3A1009852","Comamonas testosteroni ATCC 11996"],["NCBITaxon%3A543891","Comamonas testosteroni CNB-1"],["NCBITaxon%3A688245","Comamonas testosteroni CNB-2"],["NCBITaxon%3A1440775","Comamonas testosteroni I2"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":2,"nb":15,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["NCBITaxon%3A1681","Bifidobacterium bifidum"],["NCBITaxon%3A500634","Bifidobacterium bifidum ATCC 29521 = JCM 1255 = DSM 20456"],["NCBITaxon%3A484020","Bifidobacterium bifidum BGN4"],["NCBITaxon%3A1263058","Bifidobacterium bifidum CAG:234"],["NCBITaxon%3A1173065","Bifidobacterium bifidum CECT 7366"],["NCBITaxon%3A398515","Bifidobacterium bifidum DSM 20215"]]},{"id":"NCBITaxon:39486","l":"Dorea formicigenerans","na":2,"nb":15,"a":[["adult-bto-0001043.html","adult"],["juvenile-bto-0002168.html","juvenile"]],"b":[["NCBITaxon%3A39486","Dorea formicigenerans"],["NCBITaxon%3A742765","Dorea formicigenerans 4_6_53AFAA"],["NCBITaxon%3A411461","Dorea formicigenerans ATCC 27755"],["NCBITaxon%3A1263073","Dorea formicigenerans CAG:28"],["NCBITaxon%3A1339457","Dorea formicigenerans TSDA1.2-1.1"],["NCBITaxon%3A1339458","Dorea formicigenerans TSDA1.2-1.2"]]},{"id":"NCBITaxon:43767","l":"Prescottella equi","na":2,"nb":15,"a":[["hospital-envo-00002173.html","hospital"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["NCBITaxon%3A84096","Gordonia alkanivorans"],["NCBITaxon%3A2683586","Luteimonas cellulosilyticus"],["NCBITaxon%3A43767","Prescottella equi"],["NCBITaxon%3A685727","Prescottella equi 103S"],["NCBITaxon%3A525370","Prescottella equi ATCC 33707"],["NCBITaxon%3A1219013","Prescottella equi NBRC 101255 = C 7"]]},{"id":"NCBITaxon:1027","l":"Microscilla marina","na":14,"nb":2,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["river-envo-00000022.html","river"],["animal-manure-envo-00003031.html","animal manure"],["biofilm-material-envo-01000156.html","biofilm material"],["biotope-envo-00002036.html","biotope"],["desert-biome-envo-01000179.html","desert biome"]],"b":[["NCBITaxon%3A1027","Microscilla marina"],["NCBITaxon%3A313606","Microscilla marina ATCC 23134"]]},{"id":"NCBITaxon:138074","l":"Serratia symbiotica","na":2,"nb":14,"a":[["intestine-bto-0000648.html","intestine"],["pseudostem-bto-0005992.html","pseudostem"]],"b":[["NCBITaxon%3A655401","Serratia symbiont of Stomaphis sp."],["NCBITaxon%3A138074","Serratia symbiotica"],["NCBITaxon%3A1592400","Serratia symbiotica AfA2.1"],["NCBITaxon%3A1592401","Serratia symbiotica AfA3.1"],["NCBITaxon%3A2856988","Serratia symbiotica (Cacopsylla coccinea)"],["NCBITaxon%3A1339251","Serratia symbiotica CWBI2.3"]]},{"id":"NCBITaxon:411467","l":"Pseudoflavonifractor capillosus ATCC 29799","na":14,"nb":2,"a":[["bay-envo-00000032.html","bay"],["saline-water-envo-00002010.html","saline water"],["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["emulsion-envo-00010506.html","emulsion"],["freshwater-environment-envo-01000306.html","freshwater environment"],["lagoon-envo-00000038.html","lagoon"]],"b":[["NCBITaxon%3A106588","Pseudoflavonifractor capillosus"],["NCBITaxon%3A411467","Pseudoflavonifractor capillosus ATCC 29799"]]},{"id":"NCBITaxon:84112","l":"Eggerthella lenta","na":2,"nb":14,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["feces-uberon-0001988.html","feces"]],"b":[["NCBITaxon%3A84112","Eggerthella lenta"],["NCBITaxon%3A742768","Eggerthella lenta 1_1_60AFAA"],["NCBITaxon%3A479437","Eggerthella lenta DSM 2243"],["NCBITaxon%3A1203548","Eggerthella lenta HPP0013"],["NCBITaxon%3A1357395","Eggerthella lenta MR1_12"],["NCBITaxon%3A1339486","Eggerthella lenta TSDC20.1-1.1"]]},{"id":"NCBITaxon:1042312","l":"Armatimonadia","na":2,"nb":13,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"]],"b":[["NCBITaxon%3A2933160","Armatimonadaceae bacterium"],["NCBITaxon%3A3106989","Armatimonadales bacterium"],["NCBITaxon%3A2663015","Armatimonadia bacterium"],["NCBITaxon%3A685828","Armatimonas rosea"],["NCBITaxon%3A1872638","Armatimonas sp."],["NCBITaxon%3A2953755","Capsulimonadaceae bacterium"]]},{"id":"NCBITaxon:107401","l":"Tenacibaculum maritimum","na":12,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["low-tide-zone-envo-00000319.html","low tide zone"],["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A107401","Tenacibaculum maritimum"],["NCBITaxon%3A1349785","Tenacibaculum maritimum NCIMB 2154"]]},{"id":"NCBITaxon:1398","l":"Heyndrickxia coagulans","na":2,"nb":12,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["NCBITaxon%3A3464050","Bacillus coagulans MPL-25"],["NCBITaxon%3A1422","Geobacillus stearothermophilus"],["NCBITaxon%3A1398","Heyndrickxia coagulans"],["NCBITaxon%3A941639","Heyndrickxia coagulans 2-6"],["NCBITaxon%3A345219","Heyndrickxia coagulans 36D1"],["NCBITaxon%3A1298921","Heyndrickxia coagulans CSIL1"]]},{"id":"NCBITaxon:1423814","l":"Limosilactobacillus vaginalis DSM 5837 = ATCC 49540","na":12,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["small-river-biome-envo-00000890.html","small river biome"],["animal-house-envo-00003040.html","animal house"],["desert-sand-envo-00005800.html","desert sand"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["NCBITaxon%3A1633","Limosilactobacillus vaginalis"],["NCBITaxon%3A1423814","Limosilactobacillus vaginalis DSM 5837 = ATCC 49540"]]},{"id":"NCBITaxon:316407","l":"Escherichia coli str. K-12 substr. W3110","na":12,"nb":2,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["cv-1-cell-bto-0000318.html","CV-1 cell"],["electric-organ-bto-0000376.html","electric organ"],["erythrocyte-bto-0000424.html","erythrocyte"],["filament-bto-0000463.html","filament"],["free-living-state-bto-0001551.html","free-living state"]],"b":[["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A316407","Escherichia coli str. K-12 substr. W3110"]]},{"id":"NCBITaxon:469383","l":"Conexibacter woesei DSM 14684","na":12,"nb":2,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["oil-spill-envo-00002061.html","oil spill"],["village-biome-envo-01000246.html","village biome"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A191495","Conexibacter woesei"],["NCBITaxon%3A469383","Conexibacter woesei DSM 14684"]]},{"id":"NCBITaxon:498761","l":"Heliomicrobium modesticaldum Ice1","na":12,"nb":2,"a":[["bay-envo-00000032.html","bay"],["black-smoker-envo-00000218.html","black smoker"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["saline-water-envo-00002010.html","saline water"],["sea-envo-00000016.html","sea"]],"b":[["NCBITaxon%3A35701","Heliomicrobium modesticaldum"],["NCBITaxon%3A498761","Heliomicrobium modesticaldum Ice1"]]},{"id":"NCBITaxon:1886","l":"Streptomyces albidoflavus","na":2,"nb":11,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A53445","Streptomyces canescens"],["NCBITaxon%3A68184","Streptomyces champavatii"],["NCBITaxon%3A1902","Streptomyces coelicolor"],["NCBITaxon%3A53447","Streptomyces felleus"],["NCBITaxon%3A1911","Streptomyces griseus"]]},{"id":"NCBITaxon:674","l":"Vibrio mimicus","na":2,"nb":11,"a":[["watercourse-envo-00000029.html","watercourse"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"]],"b":[["NCBITaxon%3A674","Vibrio mimicus"],["NCBITaxon%3A693747","Vibrio mimicus 7555"],["NCBITaxon%3A1267896","Vibrio mimicus ATCC 33654"],["NCBITaxon%3A1400797","Vibrio mimicus CAIM 1882"],["NCBITaxon%3A1400798","Vibrio mimicus CAIM 1883"],["NCBITaxon%3A1259812","Vibrio mimicus CAIM 602"]]},{"id":"NCBITaxon:102684","l":"Streptococcus infantarius","na":2,"nb":10,"a":[["bone-element-uberon-0001474.html","bone element"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"]],"b":[["NCBITaxon%3A315405","Streptococcus gallolyticus"],["NCBITaxon%3A102684","Streptococcus infantarius"],["NCBITaxon%3A150054","Streptococcus infantarius subsp. infantarius"],["NCBITaxon%3A1255580","Streptococcus infantarius subsp. infantarius 11FA"],["NCBITaxon%3A1255600","Streptococcus infantarius subsp. infantarius 3AG"],["NCBITaxon%3A471872","Streptococcus infantarius subsp. infantarius ATCC BAA-102"]]},{"id":"NCBITaxon:121608","l":"Paenibacillus koleovorans","na":10,"nb":2,"a":[["rhizosphere-envo-00005801.html","rhizosphere"],["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["desert-biome-envo-01000179.html","desert biome"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"]],"b":[["NCBITaxon%3A121608","Paenibacillus koleovorans"],["NCBITaxon%3A1220568","Paenibacillus koleovorans NBRC 103111"]]},{"id":"NCBITaxon:153721","l":"Sporocytophaga myxococcoides","na":10,"nb":2,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["climate-habitatmech-bacdive-1599585546.html","Climate"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"]],"b":[["NCBITaxon%3A153721","Sporocytophaga myxococcoides"],["NCBITaxon%3A926565","Sporocytophaga myxococcoides DSM 11118"]]},{"id":"NCBITaxon:2850","l":"Phaeodactylum tricornutum","na":10,"nb":2,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"],["large-river-biome-envo-00000887.html","large river biome"],["oligotrophic-water-envo-00002223.html","oligotrophic water"],["saline-marsh-envo-00000054.html","saline marsh"],["shoreline-envo-00000486.html","shoreline"],["stromatolite-mat-envo-00002157.html","stromatolite mat"]],"b":[["NCBITaxon%3A2850","Phaeodactylum tricornutum"],["NCBITaxon%3A556484","Phaeodactylum tricornutum CCAP 1055/1"]]},{"id":"NCBITaxon:29448","l":"Bradyrhizobium elkanii","na":2,"nb":10,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["area-of-tundra-envo-00000112.html","area of tundra"]],"b":[["NCBITaxon%3A29448","Bradyrhizobium elkanii"],["NCBITaxon%3A1156987","Bradyrhizobium elkanii 587"],["NCBITaxon%3A1128203","Bradyrhizobium elkanii CCBAU 05737"],["NCBITaxon%3A1128204","Bradyrhizobium elkanii CCBAU 43297"],["NCBITaxon%3A1079479","Bradyrhizobium elkanii USDA 3254"],["NCBITaxon%3A1079466","Bradyrhizobium elkanii USDA 3259"]]},{"id":"NCBITaxon:302912","l":"Bifidobacterium animalis subsp. animalis","na":2,"nb":10,"a":[["goblet-cell-bto-0001540.html","goblet cell"],["secretion-bto-0002979.html","secretion"]],"b":[["NCBITaxon%3A28025","Bifidobacterium animalis"],["NCBITaxon%3A302912","Bifidobacterium animalis subsp. animalis"],["NCBITaxon%3A703613","Bifidobacterium animalis subsp. animalis ATCC 25527"],["NCBITaxon%3A1365959","Bifidobacterium animalis subsp. animalis ATCC 27672"],["NCBITaxon%3A1402194","Bifidobacterium animalis subsp. animalis IM386"],["NCBITaxon%3A1365955","Bifidobacterium animalis subsp. animalis MCC 0483"]]},{"id":"NCBITaxon:314275","l":"Alteromonas mediterranea","na":2,"nb":10,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A314275","Alteromonas mediterranea"],["NCBITaxon%3A1300253","Alteromonas mediterranea 615"],["NCBITaxon%3A1774373","Alteromonas mediterranea DE"],["NCBITaxon%3A1004786","Alteromonas mediterranea DE1"],["NCBITaxon%3A1300254","Alteromonas mediterranea MED64"],["NCBITaxon%3A1300255","Alteromonas mediterranea U4"]]},{"id":"NCBITaxon:33075","l":"Acidobacterium capsulatum","na":10,"nb":2,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["paddy-field-envo-00000297.html","paddy field"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"],["area-of-tundra-envo-00000112.html","area of tundra"],["forested-area-envo-00000111.html","forested area"],["mountain-pass-envo-00000084.html","mountain pass"]],"b":[["NCBITaxon%3A33075","Acidobacterium capsulatum"],["NCBITaxon%3A240015","Acidobacterium capsulatum ATCC 51196"]]},{"id":"NCBITaxon:1255","l":"Pediococcus pentosaceus","na":2,"nb":9,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"]],"b":[["NCBITaxon%3A1254","Pediococcus acidilactici"],["NCBITaxon%3A114090","Pediococcus inopinatus"],["NCBITaxon%3A54062","Pediococcus parvulus"],["NCBITaxon%3A1255","Pediococcus pentosaceus"],["NCBITaxon%3A278197","Pediococcus pentosaceus ATCC 25745"],["NCBITaxon%3A1460385","Pediococcus pentosaceus CGMCC 7049"]]},{"id":"NCBITaxon:1290","l":"Staphylococcus hominis","na":2,"nb":9,"a":[["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"]],"b":[["NCBITaxon%3A1290","Staphylococcus hominis"],["NCBITaxon%3A629742","Staphylococcus hominis SK119"],["NCBITaxon%3A145391","Staphylococcus hominis subsp. hominis"],["NCBITaxon%3A435837","Staphylococcus hominis subsp. hominis C80"],["NCBITaxon%3A1185421","Staphylococcus hominis subsp. hominis ZBW5"],["NCBITaxon%3A145393","Staphylococcus hominis subsp. novobiosepticus"]]},{"id":"NCBITaxon:1601","l":"Ligilactobacillus agilis","na":9,"nb":2,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["blood-bto-0000089.html","blood"],["brain-bto-0000142.html","brain"],["heart-bto-0000562.html","heart"],["trachea-bto-0001388.html","trachea"],["vagina-bto-0000243.html","vagina"]],"b":[["NCBITaxon%3A1601","Ligilactobacillus agilis"],["NCBITaxon%3A1423718","Ligilactobacillus agilis DSM 20509"]]},{"id":"NCBITaxon:2208","l":"Methanosarcina barkeri","na":2,"nb":9,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A2208","Methanosarcina barkeri"],["NCBITaxon%3A1434106","Methanosarcina barkeri 227"],["NCBITaxon%3A1434107","Methanosarcina barkeri 3"],["NCBITaxon%3A796385","Methanosarcina barkeri CM1"],["NCBITaxon%3A1298606","Methanosarcina barkeri JCM 10043"],["NCBITaxon%3A1434108","Methanosarcina barkeri MS"]]},{"id":"NCBITaxon:428125","l":"[Clostridium] leptum DSM 753","na":9,"nb":2,"a":[["bay-envo-00000032.html","bay"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["saline-water-envo-00002010.html","saline water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["desert-sand-envo-00005800.html","desert sand"]],"b":[["NCBITaxon%3A1535","[Clostridium] leptum"],["NCBITaxon%3A428125","[Clostridium] leptum DSM 753"]]},{"id":"NCBITaxon:457427","l":"Streptomyces himastatinicus ATCC 53653","na":9,"nb":2,"a":[["bay-envo-00000032.html","bay"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["saline-water-envo-00002010.html","saline water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["food-product-foodon-00001002.html","food product"]],"b":[["NCBITaxon%3A998084","Streptomyces himastatinicus"],["NCBITaxon%3A457427","Streptomyces himastatinicus ATCC 53653"]]},{"id":"NCBITaxon:556","l":"Dickeya chrysanthemi","na":2,"nb":9,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["NCBITaxon%3A556","Dickeya chrysanthemi"],["NCBITaxon%3A561229","Dickeya chrysanthemi Ech1591"],["NCBITaxon%3A1224148","Dickeya chrysanthemi NCPPB 3533"],["NCBITaxon%3A1223569","Dickeya chrysanthemi NCPPB 402"],["NCBITaxon%3A3474837","Dickeya chrysanthemi pv. chrysanthemi"],["NCBITaxon%3A3474953","Dickeya chrysanthemi pv. parthenii"]]},{"id":"NCBITaxon:1014","l":"Weeksella virosa","na":8,"nb":2,"a":[["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"],["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"],["animal-manure-envo-00003031.html","animal manure"],["biotope-envo-00002036.html","biotope"]],"b":[["NCBITaxon%3A1014","Weeksella virosa"],["NCBITaxon%3A865938","Weeksella virosa DSM 16922"]]},{"id":"NCBITaxon:104270","l":"Tenacibaculum ovolyticum","na":8,"nb":2,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"],["marine-environment-envo-01000320.html","marine environment"]],"b":[["NCBITaxon%3A104270","Tenacibaculum ovolyticum"],["NCBITaxon%3A1123347","Tenacibaculum ovolyticum DSM 18103"]]},{"id":"NCBITaxon:1120954","l":"Aestuariimicrobium kwangyangense DSM 21549","na":8,"nb":2,"a":[["ocean-envo-00000015.html","ocean"],["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"],["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A396389","Aestuariimicrobium kwangyangense"],["NCBITaxon%3A1120954","Aestuariimicrobium kwangyangense DSM 21549"]]},{"id":"NCBITaxon:1121938","l":"Halobacillus kuroshimensis DSM 18393","na":8,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["intertidal-zone-envo-00000316.html","intertidal zone"],["ocean-trench-envo-00000275.html","ocean trench"],["hill-envo-00000083.html","hill"],["mount-envo-00000477.html","mount"],["mountain-envo-00000081.html","mountain"]],"b":[["NCBITaxon%3A302481","Halobacillus kuroshimensis"],["NCBITaxon%3A1121938","Halobacillus kuroshimensis DSM 18393"]]},{"id":"NCBITaxon:13689","l":"Sphingomonas paucimobilis","na":2,"nb":8,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"]],"b":[["NCBITaxon%3A178355","Flavobacterium omnivorum"],["NCBITaxon%3A1404341","Sphingobium scionense"],["NCBITaxon%3A13689","Sphingomonas paucimobilis"],["NCBITaxon%3A1219050","Sphingomonas paucimobilis NBRC 13935"],["NCBITaxon%3A33051","Sphingomonas sanguinis"],["NCBITaxon%3A1219054","Sphingomonas sanguinis NBRC 13937"]]},{"id":"NCBITaxon:1490","l":"Paraclostridium bifermentans","na":2,"nb":8,"a":[["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A1490","Paraclostridium bifermentans"],["NCBITaxon%3A1233170","Paraclostridium bifermentans ATCC 19299"],["NCBITaxon%3A1233171","Paraclostridium bifermentans ATCC 638 = DSM 14991"],["NCBITaxon%3A1357385","Paraclostridium bifermentans NI48_6"],["NCBITaxon%3A2663174","Paraclostridium bifermentans subsp. bifermentans"],["NCBITaxon%3A2663173","Paraclostridium bifermentans subsp. muricolitidis"]]},{"id":"NCBITaxon:1537","l":"Romboutsia lituseburensis","na":8,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["low-tide-zone-envo-00000319.html","low tide zone"],["surface-water-envo-00002042.html","surface water"],["animal-litter-envo-00002191.html","animal litter"]],"b":[["NCBITaxon%3A1537","Romboutsia lituseburensis"],["NCBITaxon%3A1121325","Romboutsia lituseburensis DSM 797"]]},{"id":"NCBITaxon:257758","l":"Streptococcus pseudopneumoniae","na":2,"nb":8,"a":[["bile-duct-bto-0000122.html","bile duct"],["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A257758","Streptococcus pseudopneumoniae"],["NCBITaxon%3A1415760","Streptococcus pseudopneumoniae 1321"],["NCBITaxon%3A1415759","Streptococcus pseudopneumoniae 22725"],["NCBITaxon%3A1415761","Streptococcus pseudopneumoniae 5247"],["NCBITaxon%3A889205","Streptococcus pseudopneumoniae ATCC BAA-960 = CCUG 49455"],["NCBITaxon%3A1415758","Streptococcus pseudopneumoniae G42"]]},{"id":"NCBITaxon:35761","l":"Nocardioides sp.","na":8,"nb":2,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"],["desert-sand-envo-00005800.html","desert sand"],["endosymbiont-habitatmech-bacdive-7d840c7ddc.html","Endosymbiont"],["oil-spill-envo-00002061.html","oil spill"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A35761","Nocardioides sp."],["NCBITaxon%3A2568655","Nocardioides vastitatis"]]},{"id":"NCBITaxon:411459","l":"Blautia obeum ATCC 29174","na":8,"nb":2,"a":[["colonic-mucosa-bto-0000271.html","colonic mucosa"],["desert-sand-envo-00005800.html","desert sand"],["lagoon-envo-00000038.html","lagoon"],["tropical-envo-01000204.html","tropical"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"],["cropland-biome-envo-01000245.html","cropland biome"]],"b":[["NCBITaxon%3A40520","Blautia obeum"],["NCBITaxon%3A411459","Blautia obeum ATCC 29174"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":8,"nb":2,"a":[["beach-envo-00000091.html","beach"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["sea-sand-envo-00002118.html","sea sand"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A80816","Haliangium ochraceum"],["NCBITaxon%3A502025","Haliangium ochraceum DSM 14365"]]},{"id":"NCBITaxon:648","l":"Aeromonas caviae","na":2,"nb":8,"a":[["human-construction-envo-00000070.html","human construction"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["NCBITaxon%3A648","Aeromonas caviae"],["NCBITaxon%3A878320","Aeromonas caviae Ae398"],["NCBITaxon%3A1458270","Aeromonas caviae NM22"],["NCBITaxon%3A1458271","Aeromonas caviae NM33"],["NCBITaxon%3A3418572","Aeromonas caviae subsp. aquatica"],["NCBITaxon%3A644","Aeromonas hydrophila"]]},{"id":"NCBITaxon:1053","l":"Halorhodospira halophila","na":7,"nb":2,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["marine-environment-envo-01000320.html","marine environment"],["organic-feature-envo-01000159.html","organic feature"],["organic-material-envo-01000155.html","organic material"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A1053","Halorhodospira halophila"],["NCBITaxon%3A349124","Halorhodospira halophila SL1"]]},{"id":"NCBITaxon:1121479","l":"Pseudodonghicola xiamenensis DSM 18339","na":7,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"],["strait-envo-00000394.html","strait"],["petroleum-envo-00002984.html","petroleum"],["bank-envo-00000141.html","bank"],["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A337702","Pseudodonghicola xiamenensis"],["NCBITaxon%3A1121479","Pseudodonghicola xiamenensis DSM 18339"]]},{"id":"NCBITaxon:1211807","l":"Stutzerimonas kunmingensis","na":7,"nb":2,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["laboratory-facility-envo-01001406.html","laboratory facility"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A1211807","Stutzerimonas kunmingensis"],["NCBITaxon%3A316","Stutzerimonas stutzeri"]]},{"id":"NCBITaxon:1231","l":"Nitrosospira multiformis","na":7,"nb":2,"a":[["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["biome-envo-00000428.html","biome"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"],["sludge-envo-00002044.html","sludge"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"]],"b":[["NCBITaxon%3A1231","Nitrosospira multiformis"],["NCBITaxon%3A323848","Nitrosospira multiformis ATCC 25196"]]},{"id":"NCBITaxon:1266","l":"Sarcina","na":2,"nb":7,"a":[["cecum-bto-0000166.html","cecum"],["intestine-bto-0000648.html","intestine"]],"b":[["NCBITaxon%3A2726954","Candidatus Sarcina troglodytae"],["NCBITaxon%3A35785","Sarcina maxima"],["NCBITaxon%3A2053610","Sarcina sp."],["NCBITaxon%3A1798184","Sarcina sp. DSM 11001"],["NCBITaxon%3A3240357","Sarcina sp. JB3"],["NCBITaxon%3A1267","Sarcina ventriculi"]]},{"id":"NCBITaxon:165813","l":"Sporanaerobacter acetigenes","na":7,"nb":2,"a":[["bay-envo-00000032.html","bay"],["desert-sand-envo-00005800.html","desert sand"],["mud-envo-01000001.html","mud"],["village-biome-envo-01000246.html","village biome"],["area-of-tundra-envo-00000112.html","area of tundra"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["NCBITaxon%3A165813","Sporanaerobacter acetigenes"],["NCBITaxon%3A1123281","Sporanaerobacter acetigenes DSM 13106"]]},{"id":"NCBITaxon:1938","l":"Streptomyces viridochromogenes","na":2,"nb":7,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A1969","Streptomyces chartreusis"],["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A1938","Streptomyces viridochromogenes"],["NCBITaxon%3A591159","Streptomyces viridochromogenes DSM 40736"],["NCBITaxon%3A285521","Streptomyces viridochromogenes subsp. komabensis"],["NCBITaxon%3A285503","Streptomyces viridochromogenes subsp. sulfomycini"]]},{"id":"NCBITaxon:2014","l":"Nocardiopsis dassonvillei","na":2,"nb":7,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A146802","Nocardiopsis alborubida"],["NCBITaxon%3A1223496","Nocardiopsis alborubida NBRC 13392"],["NCBITaxon%3A2014","Nocardiopsis dassonvillei"],["NCBITaxon%3A2580523","Nocardiopsis dassonvillei subsp. crassaminis"],["NCBITaxon%3A568208","Nocardiopsis dassonvillei subsp. dassonvillei"],["NCBITaxon%3A446468","Nocardiopsis dassonvillei subsp. dassonvillei DSM 43111"]]},{"id":"NCBITaxon:314230","l":"Blastopirellula marina DSM 3645","na":7,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["shoreline-envo-00000486.html","shoreline"],["bulk-soil-envo-00005802.html","bulk soil"],["forested-area-envo-00000111.html","forested area"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A124","Blastopirellula marina"],["NCBITaxon%3A314230","Blastopirellula marina DSM 3645"]]},{"id":"NCBITaxon:337330","l":"Lactiplantibacillus plantarum subsp. plantarum","na":2,"nb":7,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A1590","Lactiplantibacillus plantarum"],["NCBITaxon%3A337330","Lactiplantibacillus plantarum subsp. plantarum"],["NCBITaxon%3A525338","Lactiplantibacillus plantarum subsp. plantarum ATCC 14917 = JCM 1149 = CGMCC"],["NCBITaxon%3A889516","Lactiplantibacillus plantarum subsp. plantarum KCA-1"],["NCBITaxon%3A1036177","Lactiplantibacillus plantarum subsp. plantarum NC8"],["NCBITaxon%3A767468","Lactiplantibacillus plantarum subsp. plantarum P-8"]]},{"id":"NCBITaxon:411477","l":"Parabacteroides merdae ATCC 43184","na":7,"nb":2,"a":[["bay-envo-00000032.html","bay"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["saline-water-envo-00002010.html","saline water"],["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"]],"b":[["NCBITaxon%3A46503","Parabacteroides merdae"],["NCBITaxon%3A411477","Parabacteroides merdae ATCC 43184"]]},{"id":"NCBITaxon:438753","l":"Azorhizobium caulinodans ORS 571","na":7,"nb":2,"a":[["bacteroid-bto-0000109.html","bacteroid"],["free-living-state-bto-0001551.html","free-living state"],["lateral-root-bto-0005441.html","lateral root"],["rootlet-bto-0001192.html","rootlet"],["seedling-bto-0001228.html","seedling"],["stem-nodule-bto-0001816.html","stem nodule"]],"b":[["NCBITaxon%3A7","Azorhizobium caulinodans"],["NCBITaxon%3A438753","Azorhizobium caulinodans ORS 571"]]},{"id":"NCBITaxon:56780","l":"Syntrophus aciditrophicus SB","na":7,"nb":2,"a":[["bay-envo-00000032.html","bay"],["black-smoker-envo-00000218.html","black smoker"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["saline-water-envo-00002010.html","saline water"],["village-biome-envo-01000246.html","village biome"]],"b":[["NCBITaxon%3A316277","Syntrophus aciditrophicus"],["NCBITaxon%3A56780","Syntrophus aciditrophicus SB"]]},{"id":"NCBITaxon:583355","l":"Coraliomargarita akajimensis DSM 45221","na":7,"nb":2,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["oligotrophic-water-envo-00002223.html","oligotrophic water"],["sandstone-envo-00002055.html","sandstone"]],"b":[["NCBITaxon%3A395922","Coraliomargarita akajimensis"],["NCBITaxon%3A583355","Coraliomargarita akajimensis DSM 45221"]]},{"id":"NCBITaxon:614","l":"Serratia liquefaciens","na":2,"nb":7,"a":[["foot-bto-0000476.html","foot"],["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A82995","Serratia grimesii"],["NCBITaxon%3A614","Serratia liquefaciens"],["NCBITaxon%3A1255584","Serratia liquefaciens 1B4F"],["NCBITaxon%3A1346614","Serratia liquefaciens ATCC 27592"],["NCBITaxon%3A1460083","Serratia liquefaciens FK01"],["NCBITaxon%3A615","Serratia marcescens"]]},{"id":"NCBITaxon:68892","l":"Streptococcus infantis","na":2,"nb":7,"a":[["head-bto-0000282.html","head"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A68892","Streptococcus infantis"],["NCBITaxon%3A889204","Streptococcus infantis ATCC 700779"],["NCBITaxon%3A1005705","Streptococcus infantis SK1076"],["NCBITaxon%3A871237","Streptococcus infantis SK1302"],["NCBITaxon%3A1035189","Streptococcus infantis SK970"],["NCBITaxon%3A1159208","Streptococcus infantis SPAR10"]]},{"id":"NCBITaxon:710696","l":"Intrasporangium calvum DSM 43043","na":7,"nb":2,"a":[["air-envo-00002005.html","air"],["large-river-biome-envo-00000887.html","large river biome"],["petroleum-envo-00002984.html","petroleum"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"],["grassland-biome-envo-01000177.html","grassland biome"]],"b":[["NCBITaxon%3A53358","Intrasporangium calvum"],["NCBITaxon%3A710696","Intrasporangium calvum DSM 43043"]]},{"id":"NCBITaxon:83455","l":"Myxococcus stipitatus","na":7,"nb":2,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["plant-litter-envo-01000628.html","plant litter"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A83455","Myxococcus stipitatus"],["NCBITaxon%3A1278073","Myxococcus stipitatus DSM 14675"]]},{"id":"NCBITaxon:102148","l":"Solobacterium moorei","na":2,"nb":6,"a":[["mouth-environment-envo-08000002.html","mouth environment"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A142586","Eubacterium sp."],["NCBITaxon%3A102148","Solobacterium moorei"],["NCBITaxon%3A1073370","Solobacterium moorei CC14Y"],["NCBITaxon%3A1073371","Solobacterium moorei CC57E"],["NCBITaxon%3A1123263","Solobacterium moorei DSM 22971"],["NCBITaxon%3A706433","Solobacterium moorei F0204"]]},{"id":"NCBITaxon:104336","l":"Microbacterium foliorum","na":6,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["building-envo-00000073.html","building"],["leaf-po-0025034.html","leaf"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["desert-biome-envo-01000179.html","desert biome"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"]],"b":[["NCBITaxon%3A104336","Microbacterium foliorum"],["NCBITaxon%3A1255620","Microbacterium foliorum C45"]]},{"id":"NCBITaxon:1069","l":"Rhodomicrobium vannielii","na":6,"nb":2,"a":[["lake-envo-00000020.html","lake"],["stream-envo-00000023.html","stream"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["rhizosphere-envo-00005801.html","rhizosphere"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["NCBITaxon%3A1069","Rhodomicrobium vannielii"],["NCBITaxon%3A648757","Rhodomicrobium vannielii ATCC 17100"]]},{"id":"NCBITaxon:1069080","l":"Succinispira mobilis DSM 6222","na":6,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"],["pond-envo-00000033.html","pond"],["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["NCBITaxon%3A78120","Succinispira mobilis"],["NCBITaxon%3A1069080","Succinispira mobilis DSM 6222"]]},{"id":"NCBITaxon:1079","l":"Blastochloris viridis","na":6,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["NCBITaxon%3A50712","Blastochloris sulfoviridis"],["NCBITaxon%3A1079","Blastochloris viridis"]]},{"id":"NCBITaxon:1087","l":"Rhodovibrio salinarum","na":6,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["liquid-water-envo-00002006.html","liquid water"],["ocean-envo-00000015.html","ocean"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["sea-water-envo-00002149.html","sea water"],["stream-envo-00000023.html","stream"]],"b":[["NCBITaxon%3A1087","Rhodovibrio salinarum"],["NCBITaxon%3A1089552","Rhodovibrio salinarum DSM 9154"]]},{"id":"NCBITaxon:1121398","l":"Desulfobacter vibrioformis DSM 8776","na":6,"nb":2,"a":[["ocean-envo-00000015.html","ocean"],["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"],["undersea-feature-envo-00000104.html","undersea feature"],["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"]],"b":[["NCBITaxon%3A34031","Desulfobacter vibrioformis"],["NCBITaxon%3A1121398","Desulfobacter vibrioformis DSM 8776"]]},{"id":"NCBITaxon:1121404","l":"Desulfogranum mediterraneum DSM 13871","na":6,"nb":2,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"],["ocean-envo-00000015.html","ocean"],["ocean-biome-envo-01000048.html","ocean biome"],["ocean-trench-envo-00000275.html","ocean trench"],["oceanic-zone-envo-00000207.html","oceanic zone"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A160661","Desulfogranum mediterraneum"],["NCBITaxon%3A1121404","Desulfogranum mediterraneum DSM 13871"]]},{"id":"NCBITaxon:1121466","l":"Oleidesulfovibrio vietnamensis DSM 10520","na":6,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["groundwater-envo-01001004.html","groundwater"],["reservoir-envo-00000025.html","reservoir"],["city-envo-00000856.html","city"],["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A201571","Oleidesulfovibrio vietnamensis"],["NCBITaxon%3A1121466","Oleidesulfovibrio vietnamensis DSM 10520"]]},{"id":"NCBITaxon:1121927","l":"Gordonia hirsuta DSM 44140 = NBRC 16056","na":6,"nb":2,"a":[["biofilter-envo-00002152.html","biofilter"],["compost-envo-00002170.html","compost"],["wood-bto-0005516.html","wood"],["wood-envo-00002040.html","wood"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A53427","Gordonia hirsuta"],["NCBITaxon%3A1121927","Gordonia hirsuta DSM 44140 = NBRC 16056"]]},{"id":"NCBITaxon:1147159","l":"Ornithinibacillus scapharcae","na":6,"nb":2,"a":[["gut-bto-0000545.html","gut"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["seedling-bto-0001228.html","seedling"],["skin-bto-0001253.html","skin"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A1147159","Ornithinibacillus scapharcae"],["NCBITaxon%3A981383","Ornithinibacillus scapharcae TW25"]]},{"id":"NCBITaxon:1184267","l":"Pseudobdellovibrio exovorus JSS","na":6,"nb":2,"a":[["stream-envo-00000023.html","stream"],["biome-envo-00000428.html","biome"],["desert-biome-envo-01000179.html","desert biome"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["NCBITaxon%3A453816","Pseudobdellovibrio exovorus"],["NCBITaxon%3A1184267","Pseudobdellovibrio exovorus JSS"]]},{"id":"NCBITaxon:1286","l":"Staphylococcus simulans","na":2,"nb":6,"a":[["animal-house-envo-00003040.html","animal house"],["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["NCBITaxon%3A1285","Staphylococcus intermedius"],["NCBITaxon%3A1286","Staphylococcus simulans"],["NCBITaxon%3A883166","Staphylococcus simulans ACS-120-V-Sch1"],["NCBITaxon%3A1287","Staphylococcus simulans bv. staphylolyticus"],["NCBITaxon%3A1405498","Staphylococcus simulans UMC-CNS-990"],["NCBITaxon%3A29387","Staphylococcus sp."]]},{"id":"NCBITaxon:1509","l":"Clostridium sporogenes","na":2,"nb":6,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["NCBITaxon%3A1491","Clostridium botulinum"],["NCBITaxon%3A1506","Clostridium sp."],["NCBITaxon%3A1509","Clostridium sporogenes"],["NCBITaxon%3A471871","Clostridium sporogenes ATCC 15579"],["NCBITaxon%3A1075091","Clostridium sporogenes PA 3679"],["NCBITaxon%3A378516","Clostridium sporogenes subsp. tusciae"]]},{"id":"NCBITaxon:1871047","l":"Chryseobacterium sp.","na":6,"nb":2,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["leaf-po-0025034.html","leaf"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["humid-habitatmech-bacdive-0fa0234f43.html","Humid"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["NCBITaxon%3A651561","Chryseobacterium arthrosphaerae"],["NCBITaxon%3A1871047","Chryseobacterium sp."]]},{"id":"NCBITaxon:187326","l":"Megasphaera micronuciformis","na":2,"nb":6,"a":[["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"],["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["NCBITaxon%3A219650","environmental samples"],["NCBITaxon%3A187326","Megasphaera micronuciformis"],["NCBITaxon%3A626371","Megasphaera micronuciformis C1054"],["NCBITaxon%3A1401076","Megasphaera micronuciformis DNF00954"],["NCBITaxon%3A706434","Megasphaera micronuciformis F0359"],["NCBITaxon%3A163573","Megasphaera sp. oral clone BU057"]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":2,"nb":6,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A1906","Streptomyces fradiae"],["NCBITaxon%3A1319510","Streptomyces fradiae ATCC 10745 = DSM 40063"],["NCBITaxon%3A285449","Streptomyces fradiae subsp. acinicolor"],["NCBITaxon%3A2871172","Streptomyces fradiae V-1-3"],["NCBITaxon%3A66894","Streptomyces griseobrunneus"],["NCBITaxon%3A1909","Streptomyces griseolus"]]},{"id":"NCBITaxon:243365","l":"Chromobacterium violaceum ATCC 12472","na":6,"nb":2,"a":[["acute-lymphoblastic-leukemia-cell-bto-0000731.html","acute lymphoblastic leukemia cell"],["adrenal-gland-bto-0000047.html","adrenal gland"],["eosinophil-bto-0000399.html","eosinophil"],["lymphocyte-bto-0000775.html","lymphocyte"],["neutrophil-bto-0000130.html","neutrophil"],["peripheral-blood-bto-0000553.html","peripheral blood"]],"b":[["NCBITaxon%3A536","Chromobacterium violaceum"],["NCBITaxon%3A243365","Chromobacterium violaceum ATCC 12472"]]},{"id":"NCBITaxon:280","l":"Xanthobacter autotrophicus","na":2,"nb":6,"a":[["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A280","Xanthobacter autotrophicus"],["NCBITaxon%3A3119915","Xanthobacter autotrophicus ATCC 700551"],["NCBITaxon%3A3119916","Xanthobacter autotrophicus ATCC 700552"],["NCBITaxon%3A3119912","Xanthobacter nonsaccharivorans"],["NCBITaxon%3A78245","Xanthobacter versatilis"],["NCBITaxon%3A3119913","Xanthobacter wiegelii"]]},{"id":"NCBITaxon:28080","l":"Campylobacter upsaliensis","na":2,"nb":6,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["feces-uberon-0001988.html","feces"]],"b":[["NCBITaxon%3A28898","Campylobacter helveticus"],["NCBITaxon%3A28080","Campylobacter upsaliensis"],["NCBITaxon%3A1121269","Campylobacter upsaliensis DSM 5365"],["NCBITaxon%3A888826","Campylobacter upsaliensis JV21"],["NCBITaxon%3A306264","Campylobacter upsaliensis RM3195"],["NCBITaxon%3A1031733","Campylobacter upsaliensis RM3940"]]},{"id":"NCBITaxon:28129","l":"Prevotella denticola","na":2,"nb":6,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["pig-manure-envo-00003860.html","pig manure"]],"b":[["NCBITaxon%3A28125","Prevotella bivia"],["NCBITaxon%3A28129","Prevotella denticola"],["NCBITaxon%3A944557","Prevotella denticola CRIS 18C-A"],["NCBITaxon%3A1401077","Prevotella denticola DNF00960"],["NCBITaxon%3A1122982","Prevotella denticola DSM 20614 = JCM 13449"],["NCBITaxon%3A767031","Prevotella denticola F0289"]]},{"id":"NCBITaxon:29382","l":"Staphylococcus cohnii","na":2,"nb":6,"a":[["skin-of-body-uberon-0002097.html","skin of body"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["NCBITaxon%3A29382","Staphylococcus cohnii"],["NCBITaxon%3A1415164","Staphylococcus cohnii hu-01"],["NCBITaxon%3A1356853","Staphylococcus cohnii MU-CNS-924"],["NCBITaxon%3A2834574","Staphylococcus cohnii subsp. barensis"],["NCBITaxon%3A74704","Staphylococcus cohnii subsp. cohnii"],["NCBITaxon%3A94138","Staphylococcus ureilyticus"]]},{"id":"NCBITaxon:31910","l":"Halovibrio variabilis","na":6,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"],["oceanic-sea-surface-microlayer-biome-envo-01000034.html","oceanic sea surface microlayer biome"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["cultivated-environment-envo-01000311.html","cultivated environment"],["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"]],"b":[["NCBITaxon%3A31910","Halovibrio variabilis"],["NCBITaxon%3A86177","Vreelandella halophila"]]},{"id":"NCBITaxon:33953","l":"Clostridium aminobutyricum","na":6,"nb":2,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["animal-litter-envo-00002191.html","animal litter"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["mud-envo-01000001.html","mud"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"]],"b":[["NCBITaxon%3A33953","Clostridium aminobutyricum"],["NCBITaxon%3A1506","Clostridium sp."]]},{"id":"NCBITaxon:34003","l":"Paracoccus aminophilus","na":6,"nb":2,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["small-river-biome-envo-00000890.html","small river biome"],["water-scum-envo-00005794.html","water scum"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"],["stony-desert-envo-00000183.html","stony desert"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["NCBITaxon%3A34003","Paracoccus aminophilus"],["NCBITaxon%3A1367847","Paracoccus aminophilus JCM 7686"]]},{"id":"NCBITaxon:411460","l":"[Ruminococcus] torques ATCC 27756","na":6,"nb":2,"a":[["colonic-mucosa-bto-0000271.html","colonic mucosa"],["animal-litter-envo-00002191.html","animal litter"],["emulsion-envo-00010506.html","emulsion"],["tropical-envo-01000204.html","tropical"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"],["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A33039","Mediterraneibacter torques"],["NCBITaxon%3A411460","[Ruminococcus] torques ATCC 27756"]]},{"id":"NCBITaxon:471852","l":"Thermomonospora curvata DSM 43183","na":6,"nb":2,"a":[["city-envo-00000856.html","city"],["compost-envo-00002170.html","compost"],["urban-biome-envo-01000249.html","urban biome"],["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A2020","Thermomonospora curvata"],["NCBITaxon%3A471852","Thermomonospora curvata DSM 43183"]]},{"id":"NCBITaxon:47917","l":"Serratia fonticola","na":2,"nb":6,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"]],"b":[["NCBITaxon%3A47917","Serratia fonticola"],["NCBITaxon%3A1332071","Serratia fonticola AU-AP2C"],["NCBITaxon%3A1332070","Serratia fonticola AU-P3(3)"],["NCBITaxon%3A649197","Serratia fonticola DSM 22080"],["NCBITaxon%3A1378072","Serratia fonticola LMG 7882"],["NCBITaxon%3A1379259","Serratia fonticola UTAD54"]]},{"id":"NCBITaxon:498","l":"Psychrobacter immobilis","na":2,"nb":6,"a":[["skin-of-body-uberon-0002097.html","skin of body"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A498","Psychrobacter immobilis"],["NCBITaxon%3A1256511","Psychrobacter immobilis PG1"],["NCBITaxon%3A29432","Psychrobacter phenylpyruvicus"],["NCBITaxon%3A56811","Psychrobacter sp."],["NCBITaxon%3A1113655","Psychrobacter sp. NBRC 15736"],["NCBITaxon%3A45610","Psychrobacter urativorans"]]},{"id":"NCBITaxon:77608","l":"Pseudoalteromonas distincta","na":2,"nb":6,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A86104","Arenibacter latericius"],["NCBITaxon%3A1121012","Arenibacter latericius DSM 15913"],["NCBITaxon%3A77608","Pseudoalteromonas distincta"],["NCBITaxon%3A1315279","Pseudoalteromonas distincta KMM 3548"],["NCBITaxon%3A166935","Pseudoalteromonas translucida"],["NCBITaxon%3A1315283","Pseudoalteromonas translucida KMM 520"]]},{"id":"NCBITaxon:82135","l":"Fannyhessea vaginae","na":2,"nb":6,"a":[["brain-bto-0000142.html","brain"],["heart-bto-0000562.html","heart"]],"b":[["NCBITaxon%3A1872650","Atopobium sp."],["NCBITaxon%3A82135","Fannyhessea vaginae"],["NCBITaxon%3A525256","Fannyhessea vaginae DSM 15829"],["NCBITaxon%3A553187","Fannyhessea vaginae JCVIHMP018"],["NCBITaxon%3A553188","Fannyhessea vaginae JCVIHMP019"],["NCBITaxon%3A866774","Fannyhessea vaginae PB189-T1-4"]]},{"id":"NCBITaxon:853","l":"Faecalibacterium prausnitzii","na":2,"nb":6,"a":[["coral-reef-envo-00000150.html","coral reef"],["tropical-envo-01000204.html","tropical"]],"b":[["NCBITaxon%3A748224","Faecalibacterium cf. prausnitzii KLE1255"],["NCBITaxon%3A411483","Faecalibacterium duncaniae"],["NCBITaxon%3A853","Faecalibacterium prausnitzii"],["NCBITaxon%3A718252","Faecalibacterium prausnitzii L2-6"],["NCBITaxon%3A411485","Faecalibacterium prausnitzii M21/2"],["NCBITaxon%3A657322","Faecalibacterium prausnitzii SL3/3"]]},{"id":"NCBITaxon:102618","l":"Helicobacter pylori NCTC 11637 = CCUG 17874 = ATCC 43504 = JCM 12093","na":5,"nb":2,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["duodenum-bto-0000365.html","duodenum"],["gastric-mucosa-bto-0001308.html","gastric mucosa"],["gastric-ulcer-bto-0002990.html","gastric ulcer"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A210","Helicobacter pylori"],["NCBITaxon%3A102618","Helicobacter pylori NCTC 11637 = CCUG 17874 = ATCC 43504 = JCM 12093"]]},{"id":"NCBITaxon:1042314","l":"Armatimonadaceae","na":2,"nb":5,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"]],"b":[["NCBITaxon%3A2933160","Armatimonadaceae bacterium"],["NCBITaxon%3A685828","Armatimonas rosea"],["NCBITaxon%3A1872638","Armatimonas sp."],["NCBITaxon%3A1579981","uncultured Armatimonadaceae bacterium"],["NCBITaxon%3A1920858","uncultured Armatimonas sp."]]},{"id":"NCBITaxon:1069081","l":"Nitratiruptor tergarcus DSM 16512","na":5,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["sea-envo-00000016.html","sea"],["agricultural-field-envo-00000114.html","agricultural field"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A269259","Nitratiruptor tergarcus"],["NCBITaxon%3A1069081","Nitratiruptor tergarcus DSM 16512"]]},{"id":"NCBITaxon:1082","l":"Magnetospirillum fulvum","na":5,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["stream-envo-00000023.html","stream"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["river-envo-00000022.html","river"],["subpolar-coniferous-forest-biome-envo-01000250.html","subpolar coniferous forest biome"]],"b":[["NCBITaxon%3A1082","Magnetospirillum fulvum"],["NCBITaxon%3A1316936","Magnetospirillum fulvum MGU-K5"]]},{"id":"NCBITaxon:111105","l":"Porphyromonas gulae","na":5,"nb":2,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["dental-plaque-uberon-0016482.html","dental plaque"],["biome-envo-00000428.html","biome"],["biotope-envo-00002036.html","biotope"],["organic-material-envo-01000155.html","organic material"]],"b":[["NCBITaxon%3A111105","Porphyromonas gulae"],["NCBITaxon%3A1122972","Porphyromonas gulae DSM 15663"]]},{"id":"NCBITaxon:112002","l":"Psychrobacter pacificensis","na":5,"nb":2,"a":[["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"],["gut-bto-0000545.html","gut"],["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"],["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["NCBITaxon%3A112002","Psychrobacter pacificensis"],["NCBITaxon%3A2800839","Psychrobacter pacificensis E23"]]},{"id":"NCBITaxon:112009","l":"Ignatzschineria larvae","na":5,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"],["stream-envo-00000023.html","stream"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A112009","Ignatzschineria larvae"],["NCBITaxon%3A1111732","Ignatzschineria larvae DSM 13226"]]},{"id":"NCBITaxon:1120966","l":"Algoriphagus marincola DSM 16067","na":5,"nb":2,"a":[["beach-envo-00000091.html","beach"],["sea-envo-00000016.html","sea"],["sea-water-envo-00002149.html","sea water"],["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A264027","Algoriphagus marincola"],["NCBITaxon%3A1120966","Algoriphagus marincola DSM 16067"]]},{"id":"NCBITaxon:1121264","l":"Caloranaerobacter azorensis DSM 13643","na":5,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["sea-envo-00000016.html","sea"],["ridge-envo-00000283.html","ridge"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A116090","Caloranaerobacter azorensis"],["NCBITaxon%3A1121264","Caloranaerobacter azorensis DSM 13643"]]},{"id":"NCBITaxon:1121392","l":"Desulfatibacillum aliphaticivorans DSM 15576","na":5,"nb":2,"a":[["cove-envo-00000138.html","cove"],["inlet-envo-00000475.html","inlet"],["canal-envo-00000014.html","canal"],["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A218208","Desulfatibacillum aliphaticivorans"],["NCBITaxon%3A1121392","Desulfatibacillum aliphaticivorans DSM 15576"]]},{"id":"NCBITaxon:129958","l":"Carboxydothermus hydrogenoformans","na":5,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["stream-envo-00000023.html","stream"],["temperate-envo-01000206.html","temperate"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A129958","Carboxydothermus hydrogenoformans"],["NCBITaxon%3A246194","Carboxydothermus hydrogenoformans Z-2901"]]},{"id":"NCBITaxon:130049","l":"Paenibacillus dendritiformis","na":5,"nb":2,"a":[["lake-envo-00000020.html","lake"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["NCBITaxon%3A130049","Paenibacillus dendritiformis"],["NCBITaxon%3A1131935","Paenibacillus dendritiformis C454"]]},{"id":"NCBITaxon:1465","l":"Brevibacillus laterosporus","na":2,"nb":5,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["NCBITaxon%3A1465","Brevibacillus laterosporus"],["NCBITaxon%3A1121121","Brevibacillus laterosporus DSM 25"],["NCBITaxon%3A1118154","Brevibacillus laterosporus GI-9"],["NCBITaxon%3A1042163","Brevibacillus laterosporus LMG 15441"],["NCBITaxon%3A1399144","Brevibacillus laterosporus PE36"]]},{"id":"NCBITaxon:1525","l":"Neomoorella thermoacetica","na":2,"nb":5,"a":[["liquid-water-envo-00002006.html","liquid water"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["NCBITaxon%3A264732","Moorella thermoacetica ATCC 39073"],["NCBITaxon%3A1122242","Moorella thermoacetica DSM 1974"],["NCBITaxon%3A1325331","Moorella thermoacetica Y72"],["NCBITaxon%3A3051332","Neomoorella caeni"],["NCBITaxon%3A1525","Neomoorella thermoacetica"]]},{"id":"NCBITaxon:1526","l":"[Clostridium] aminophilum","na":5,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["rumen-uberon-0007365.html","rumen"],["stomach-bto-0001307.html","stomach"],["intestine-environment-envo-2100002.html","intestine environment"],["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["NCBITaxon%3A1526","[Clostridium] aminophilum"],["NCBITaxon%3A1121296","[Clostridium] aminophilum DSM 10710"]]},{"id":"NCBITaxon:158899","l":"Collimonas fungivorans","na":5,"nb":2,"a":[["surface-water-envo-00002042.html","surface water"],["water-body-envo-00000063.html","water body"],["fungi-associated-environment-envo-01001041.html","fungi-associated environment"],["blanket-bog-envo-00000511.html","blanket bog"],["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["NCBITaxon%3A158899","Collimonas fungivorans"],["NCBITaxon%3A1005048","Collimonas fungivorans Ter331"]]},{"id":"NCBITaxon:1642","l":"Listeria innocua","na":2,"nb":5,"a":[["abort-habitatmech-bacdive-b61f30c070.html","Abort"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["NCBITaxon%3A1642","Listeria innocua"],["NCBITaxon%3A1002366","Listeria innocua ATCC 33091"],["NCBITaxon%3A272626","Listeria innocua Clip11262"],["NCBITaxon%3A702455","Listeria innocua FSL J1-023"],["NCBITaxon%3A702456","Listeria innocua FSL S4-378"]]},{"id":"NCBITaxon:172371","l":"Alloalcanivorax venustensis","na":5,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"],["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"],["oceanic-sea-surface-microlayer-biome-envo-01000034.html","oceanic sea surface microlayer biome"]],"b":[["NCBITaxon%3A172371","Alloalcanivorax venustensis"],["NCBITaxon%3A1177184","Alloalcanivorax venustensis ISO4"]]},{"id":"NCBITaxon:1776","l":"Mycolicibacterium flavescens","na":5,"nb":2,"a":[["fibroblast-bto-0000452.html","fibroblast"],["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["kidney-bto-0000671.html","kidney"],["spleen-bto-0001281.html","spleen"],["tuberculosis-habitatmech-bacdive-e5d21f85b7.html","Tuberculosis"]],"b":[["NCBITaxon%3A1776","Mycolicibacterium flavescens"],["NCBITaxon%3A1303678","Mycolicibacterium flavescens JCM 14741"]]},{"id":"NCBITaxon:1802","l":"","na":2,"nb":5,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"]],"b":[["NCBITaxon%3A1802","Mycobacterium farcinogenes"],["NCBITaxon%3A1237860","Mycobacterium farcinogenes DSM 43637"],["NCBITaxon%3A1796","Mycolicibacterium senegalense"],["NCBITaxon%3A37329","Nocardia farcinica"],["NCBITaxon%3A1210076","Nocardia farcinica NBRC 15532"]]},{"id":"NCBITaxon:193","l":"Azospirillum lipoferum","na":2,"nb":5,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"]],"b":[["NCBITaxon%3A442870","Acanthopleuribacter pedis"],["NCBITaxon%3A52761","Azospirillum largimobile"],["NCBITaxon%3A193","Azospirillum lipoferum"],["NCBITaxon%3A862719","Azospirillum lipoferum 4B"],["NCBITaxon%3A34012","Azospirillum sp."]]},{"id":"NCBITaxon:204","l":"Campylobacter showae","na":2,"nb":5,"a":[["archeological-site-envo-00000564.html","archeological site"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A204","Campylobacter showae"],["NCBITaxon%3A1073353","Campylobacter showae CC57C"],["NCBITaxon%3A1244083","Campylobacter showae CSUNSWCD"],["NCBITaxon%3A553219","Campylobacter showae RM3277"],["NCBITaxon%3A205","Campylobacter sp."]]},{"id":"NCBITaxon:224911","l":"Bradyrhizobium diazoefficiens USDA 110","na":5,"nb":2,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["microbial-mat-material-envo-01000157.html","microbial mat material"],["agricultural-soil-envo-00002259.html","agricultural soil"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A1355477","Bradyrhizobium diazoefficiens"],["NCBITaxon%3A224911","Bradyrhizobium diazoefficiens USDA 110"]]},{"id":"NCBITaxon:232721","l":"Acidovorax sp. JS42","na":5,"nb":2,"a":[["large-river-biome-envo-00000887.html","large river biome"],["pond-water-envo-00002228.html","pond water"],["nitrobenzene-enriched-sediment-envo-00002182.html","nitrobenzene enriched sediment"],["river-bed-envo-00000384.html","river bed"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A1872122","Acidovorax sp."],["NCBITaxon%3A232721","Acidovorax sp. JS42"]]},{"id":"NCBITaxon:240016","l":"Verrucomicrobium spinosum DSM 4136 = JCM 18804","na":5,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["pond-water-envo-00002228.html","pond water"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A2736","Verrucomicrobium spinosum"],["NCBITaxon%3A240016","Verrucomicrobium spinosum DSM 4136 = JCM 18804"]]},{"id":"NCBITaxon:248039","l":"Mucispirillum schaedleri","na":5,"nb":2,"a":[["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"],["mucosa-bto-0000886.html","mucosa"]],"b":[["NCBITaxon%3A248039","Mucispirillum schaedleri"],["NCBITaxon%3A1379858","Mucispirillum schaedleri ASF457"]]},{"id":"NCBITaxon:265072","l":"Methylobacillus flagellatus KT","na":5,"nb":2,"a":[["pond-water-envo-00002228.html","pond water"],["water-body-envo-00000063.html","water body"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["activated-sludge-envo-00002046.html","activated sludge"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A405","Methylobacillus flagellatus"],["NCBITaxon%3A265072","Methylobacillus flagellatus KT"]]},{"id":"NCBITaxon:28034","l":"Sulfobacillus thermosulfidooxidans","na":2,"nb":5,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["NCBITaxon%3A28034","Sulfobacillus thermosulfidooxidans"],["NCBITaxon%3A929705","Sulfobacillus thermosulfidooxidans DSM 9293"],["NCBITaxon%3A1366420","Sulfobacillus thermosulfidooxidans ST"],["NCBITaxon%3A1214914","Sulfobacillus thermosulfidooxidans str. Cutipay"],["NCBITaxon%3A108014","Sulfobacillus thermosulfidooxidans subsp. asporogenes"]]},{"id":"NCBITaxon:293091","l":"Haloquadratum walsbyi","na":2,"nb":5,"a":[["small-river-biome-envo-00000890.html","small river biome"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["NCBITaxon%3A293091","Haloquadratum walsbyi"],["NCBITaxon%3A768065","Haloquadratum walsbyi C23"],["NCBITaxon%3A362976","Haloquadratum walsbyi DSM 16790"],["NCBITaxon%3A1238424","Haloquadratum walsbyi J07HQW1"],["NCBITaxon%3A1238425","Haloquadratum walsbyi J07HQW2"]]},{"id":"NCBITaxon:33034","l":"Anaerococcus prevotii","na":2,"nb":5,"a":[["skin-environment-envo-2100003.html","skin environment"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A33034","Anaerococcus prevotii"],["NCBITaxon%3A879305","Anaerococcus prevotii ACS-065-V-Col13"],["NCBITaxon%3A525919","Anaerococcus prevotii DSM 20548"],["NCBITaxon%3A33036","Anaerococcus tetradius"],["NCBITaxon%3A1827099","Peptoniphilus sp. JCM 8141"]]},{"id":"NCBITaxon:338969","l":"Rhodoferax ferrireducens T118","na":5,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["petroleum-envo-00002984.html","petroleum"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["NCBITaxon%3A192843","Rhodoferax ferrireducens"],["NCBITaxon%3A338969","Rhodoferax ferrireducens T118"]]},{"id":"NCBITaxon:388399","l":"Sagittula stellata E-37","na":5,"nb":2,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["oligotrophic-water-envo-00002223.html","oligotrophic water"],["pulp-bto-0001142.html","pulp"],["rosette-bto-0001201.html","rosette"],["scolex-bto-0002305.html","scolex"]],"b":[["NCBITaxon%3A52603","Sagittula stellata"],["NCBITaxon%3A388399","Sagittula stellata E-37"]]},{"id":"NCBITaxon:391625","l":"Plesiocystis pacifica SIR-1","na":5,"nb":2,"a":[["coral-reef-envo-00000150.html","coral reef"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["bulk-soil-envo-00005802.html","bulk soil"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A191768","Plesiocystis pacifica"],["NCBITaxon%3A391625","Plesiocystis pacifica SIR-1"]]},{"id":"NCBITaxon:393480","l":"Fusobacterium polymorphum ATCC 10953","na":5,"nb":2,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"],["forested-area-envo-00000111.html","forested area"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["NCBITaxon%3A76857","Fusobacterium polymorphum"],["NCBITaxon%3A393480","Fusobacterium polymorphum ATCC 10953"]]},{"id":"NCBITaxon:41976","l":"Porphyromonas catoniae","na":2,"nb":5,"a":[["archeological-site-envo-00000564.html","archeological site"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["NCBITaxon%3A41976","Porphyromonas catoniae"],["NCBITaxon%3A887901","Porphyromonas catoniae ATCC 51270"],["NCBITaxon%3A1127696","Porphyromonas catoniae F0037"],["NCBITaxon%3A1410034","Porphyromonas catoniae HMP_JCVI_SC0176"],["NCBITaxon%3A1924944","Porphyromonas sp."]]},{"id":"NCBITaxon:484","l":"Neisseria flavescens","na":2,"nb":5,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A483","Neisseria cinerea"],["NCBITaxon%3A484","Neisseria flavescens"],["NCBITaxon%3A546264","Neisseria flavescens NRL30031/H210"],["NCBITaxon%3A596320","Neisseria flavescens SK114"],["NCBITaxon%3A490","Neisseria sicca"]]},{"id":"NCBITaxon:49118","l":"Candidatus Arthromitus sp. SFB-mouse","na":2,"nb":5,"a":[["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["NCBITaxon%3A49118","Candidatus Arthromitus sp. SFB-mouse"],["NCBITaxon%3A937846","Candidatus Arthromitus sp. SFB-mouse-1"],["NCBITaxon%3A1029718","Candidatus Arthromitus sp. SFB-mouse-Japan"],["NCBITaxon%3A1073972","Candidatus Arthromitus sp. SFB-mouse-NYU"],["NCBITaxon%3A1041809","Candidatus Arthromitus sp. SFB-mouse-Yit"]]},{"id":"NCBITaxon:526225","l":"Geodermatophilus obscurus DSM 43160","na":5,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A1861","Geodermatophilus obscurus"],["NCBITaxon%3A526225","Geodermatophilus obscurus DSM 43160"]]},{"id":"NCBITaxon:70993","l":"Flexithrix dorotheae","na":5,"nb":2,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["sandstone-envo-00002055.html","sandstone"],["lagoon-envo-00000038.html","lagoon"],["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A70993","Flexithrix dorotheae"],["NCBITaxon%3A1121904","Flexithrix dorotheae DSM 6795"]]},{"id":"NCBITaxon:82367","l":"Paracoccus pantotrophus","na":2,"nb":5,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A266","Paracoccus denitrificans"],["NCBITaxon%3A1302247","Paracoccus denitrificans JCM 21484"],["NCBITaxon%3A82367","Paracoccus pantotrophus"],["NCBITaxon%3A936051","Paracoccus pantotrophus J40"],["NCBITaxon%3A935565","Paracoccus pantotrophus J46"]]},{"id":"NCBITaxon:86104","l":"Arenibacter latericius","na":2,"nb":5,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"],["fumarole-envo-00000216.html","fumarole"]],"b":[["NCBITaxon%3A86104","Arenibacter latericius"],["NCBITaxon%3A1121012","Arenibacter latericius DSM 15913"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A72407","Klebsiella pneumoniae subsp. pneumoniae"],["NCBITaxon%3A1162296","Klebsiella pneumoniae subsp. pneumoniae DSM 30104 = JCM 1662 = NBRC 14940"]]},{"id":"NCBITaxon:876","l":"Desulfovibrio desulfuricans","na":2,"nb":5,"a":[["sludge-envo-00002044.html","sludge"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A876","Desulfovibrio desulfuricans"],["NCBITaxon%3A525146","Desulfovibrio desulfuricans ATCC 27774"],["NCBITaxon%3A1121445","Desulfovibrio desulfuricans DSM 642"],["NCBITaxon%3A885","Desulfovibrio sp."],["NCBITaxon%3A126333","Halodesulfovibrio aestuarii"]]},{"id":"NCBITaxon:937777","l":"Deinococcus peraridilitoris DSM 19664","na":5,"nb":2,"a":[["desert-area-envo-00000097.html","desert area"],["hill-envo-00000083.html","hill"],["mount-envo-00000477.html","mount"],["mountain-envo-00000081.html","mountain"],["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A432329","Deinococcus peraridilitoris"],["NCBITaxon%3A937777","Deinococcus peraridilitoris DSM 19664"]]},{"id":"NCBITaxon:100884","l":"Coprobacillus cateniformis","na":4,"nb":2,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["gut-bto-0000545.html","gut"],["sediment-envo-00002007.html","sediment"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A100884","Coprobacillus cateniformis"],["NCBITaxon%3A1297794","Coprobacillus cateniformis JCM 10604"]]},{"id":"NCBITaxon:102862","l":"Proteus penneri","na":4,"nb":2,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"],["geographic-feature-envo-00000000.html","geographic feature"],["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A102862","Proteus penneri"],["NCBITaxon%3A471881","Proteus penneri ATCC 35198"]]},{"id":"NCBITaxon:1035271","l":"Rhizobium nepotum","na":2,"nb":4,"a":[["plant-gall-po-0025626.html","plant gall"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["NCBITaxon%3A1035271","Rhizobium nepotum"],["NCBITaxon%3A1368418","Rhizobium nepotum 39/7"],["NCBITaxon%3A1368419","Rhizobium nepotum AGR18"],["NCBITaxon%3A1368420","Rhizobium nepotum AGR19"]]},{"id":"NCBITaxon:105219","l":"Ralstonia mannitolilytica","na":4,"nb":2,"a":[["factory-envo-01000536.html","factory"],["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A105219","Ralstonia mannitolilytica"],["NCBITaxon%3A54061","Ralstonia sp."]]},{"id":"NCBITaxon:105612","l":"Dellaglioa algida","na":4,"nb":2,"a":[["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biotope-envo-00002036.html","biotope"],["organic-feature-envo-01000159.html","organic feature"]],"b":[["NCBITaxon%3A105612","Dellaglioa algida"],["NCBITaxon%3A1423719","Dellaglioa algida DSM 15638"]]},{"id":"NCBITaxon:1069448","l":"Nitriliruptor alkaliphilus DSM 45188","na":4,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"],["freshwater-environment-envo-01000306.html","freshwater environment"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A427918","Nitriliruptor alkaliphilus"],["NCBITaxon%3A1069448","Nitriliruptor alkaliphilus DSM 45188"]]},{"id":"NCBITaxon:108328","l":"Anaerobranca gottschalkii","na":4,"nb":2,"a":[["animal-manure-envo-00003031.html","animal manure"],["biotope-envo-00002036.html","biotope"],["environmental-feature-envo-00002297.html","environmental feature"],["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["NCBITaxon%3A108328","Anaerobranca gottschalkii"],["NCBITaxon%3A1120990","Anaerobranca gottschalkii DSM 13577"]]},{"id":"NCBITaxon:1089553","l":"Thermacetogenium phaeum DSM 12270","na":4,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["pulp-bto-0001142.html","pulp"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["NCBITaxon%3A85874","Thermacetogenium phaeum"],["NCBITaxon%3A1089553","Thermacetogenium phaeum DSM 12270"]]},{"id":"NCBITaxon:108981","l":"Acinetobacter schindleri","na":2,"nb":4,"a":[["gut-bto-0000545.html","gut"],["skin-bto-0001253.html","skin"]],"b":[["NCBITaxon%3A108981","Acinetobacter schindleri"],["NCBITaxon%3A1217988","Acinetobacter schindleri CIP 107287"],["NCBITaxon%3A1217675","Acinetobacter schindleri NIPH 900"],["NCBITaxon%3A1221311","Acinetobacter schindleri TG19614"]]},{"id":"NCBITaxon:109328","l":"Leptotrichia trevisanii","na":4,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biotope-envo-00002036.html","biotope"],["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["NCBITaxon%3A109328","Leptotrichia trevisanii"],["NCBITaxon%3A1122173","Leptotrichia trevisanii DSM 22070"]]},{"id":"NCBITaxon:1111735","l":"Sedimenticola selenatireducens DSM 17993","na":4,"nb":2,"a":[["brackish-water-body-envo-01001321.html","brackish water body"],["estuarine-biome-envo-01000020.html","estuarine biome"],["estuary-envo-00000045.html","estuary"],["watercourse-envo-00000029.html","watercourse"]],"b":[["NCBITaxon%3A191960","Sedimenticola selenatireducens"],["NCBITaxon%3A1111735","Sedimenticola selenatireducens DSM 17993"]]},{"id":"NCBITaxon:1111737","l":"Thermocrispum municipale DSM 44069","na":4,"nb":2,"a":[["city-envo-00000856.html","city"],["compost-envo-00002170.html","compost"],["urban-biome-envo-01000249.html","urban biome"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A37926","Thermocrispum municipale"],["NCBITaxon%3A1111737","Thermocrispum municipale DSM 44069"]]},{"id":"NCBITaxon:1120951","l":"Aequorivita capsosiphonis DSM 23843","na":4,"nb":2,"a":[["sea-envo-00000016.html","sea"],["sea-water-envo-00002149.html","sea water"],["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A487317","Aequorivita capsosiphonis"],["NCBITaxon%3A1120951","Aequorivita capsosiphonis DSM 23843"]]},{"id":"NCBITaxon:1120963","l":"Algicola sagamiensis DSM 14643","na":4,"nb":2,"a":[["inlet-envo-00000475.html","inlet"],["sea-water-envo-00002149.html","sea water"],["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A163869","Algicola sagamiensis"],["NCBITaxon%3A1120963","Algicola sagamiensis DSM 14643"]]},{"id":"NCBITaxon:1120977","l":"Alkanindiges illinoisensis DSM 15370","na":4,"nb":2,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"],["oil-envo-00002985.html","oil"]],"b":[["NCBITaxon%3A197183","Alkanindiges illinoisensis"],["NCBITaxon%3A1120977","Alkanindiges illinoisensis DSM 15370"]]},{"id":"NCBITaxon:1121007","l":"Aquimarina muelleri DSM 19832","na":4,"nb":2,"a":[["inlet-envo-00000475.html","inlet"],["marginal-sea-biome-envo-01000046.html","marginal sea biome"],["sea-envo-00000016.html","sea"],["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A279356","Aquimarina muelleri"],["NCBITaxon%3A1121007","Aquimarina muelleri DSM 19832"]]},{"id":"NCBITaxon:1121014","l":"Arenimonas donghaensis DSM 18148 = HO3-R19","na":4,"nb":2,"a":[["beach-envo-00000091.html","beach"],["intertidal-zone-envo-00000316.html","intertidal zone"],["city-envo-00000856.html","city"],["sea-sand-envo-00002118.html","sea sand"]],"b":[["NCBITaxon%3A375061","Arenimonas donghaensis"],["NCBITaxon%3A1121014","Arenimonas donghaensis DSM 18148 = HO3-R19"]]},{"id":"NCBITaxon:1121132","l":"Butyrivibrio hungatei DSM 14810","na":4,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"],["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A185008","Butyrivibrio hungatei"],["NCBITaxon%3A1121132","Butyrivibrio hungatei DSM 14810"]]},{"id":"NCBITaxon:1121266","l":"Caminicella sporogenes DSM 14501","na":4,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["undersea-feature-envo-00000104.html","undersea feature"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A166485","Caminicella sporogenes"],["NCBITaxon%3A1121266","Caminicella sporogenes DSM 14501"]]},{"id":"NCBITaxon:1121301","l":"Paramaledivibacter caminithermalis DSM 15212","na":4,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A191027","Paramaledivibacter caminithermalis"],["NCBITaxon%3A1121301","Paramaledivibacter caminithermalis DSM 15212"]]},{"id":"NCBITaxon:1121324","l":"Peptoclostridium litorale DSM 5388","na":4,"nb":2,"a":[["inlet-envo-00000475.html","inlet"],["ocean-envo-00000015.html","ocean"],["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"]],"b":[["NCBITaxon%3A1557","Peptoclostridium litorale"],["NCBITaxon%3A1121324","Peptoclostridium litorale DSM 5388"]]},{"id":"NCBITaxon:1121374","l":"Dasania marina DSM 21967","na":4,"nb":2,"a":[["ocean-envo-00000015.html","ocean"],["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"],["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A471499","Dasania marina"],["NCBITaxon%3A1121374","Dasania marina DSM 21967"]]},{"id":"NCBITaxon:1121449","l":"Paucidesulfovibrio gracilis DSM 16080","na":4,"nb":2,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"],["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A47158","Paucidesulfovibrio gracilis"],["NCBITaxon%3A1121449","Paucidesulfovibrio gracilis DSM 16080"]]},{"id":"NCBITaxon:1121451","l":"Maridesulfovibrio hydrothermalis AM13 = DSM 14728","na":4,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["undersea-feature-envo-00000104.html","undersea feature"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A191026","Maridesulfovibrio hydrothermalis"],["NCBITaxon%3A1121451","Maridesulfovibrio hydrothermalis AM13 = DSM 14728"]]},{"id":"NCBITaxon:1121456","l":"Paucidesulfovibrio longus DSM 6739","na":4,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"],["drainage-basin-envo-00000291.html","drainage basin"],["oil-envo-00002985.html","oil"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A889","Paucidesulfovibrio longus"],["NCBITaxon%3A1121456","Paucidesulfovibrio longus DSM 6739"]]},{"id":"NCBITaxon:1121877","l":"Ferrimicrobium acidiphilum DSM 19497","na":4,"nb":2,"a":[["acid-mine-drainage-envo-00001997.html","acid mine drainage"],["mine-envo-00000076.html","mine"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A121039","Ferrimicrobium acidiphilum"],["NCBITaxon%3A1121877","Ferrimicrobium acidiphilum DSM 19497"]]},{"id":"NCBITaxon:1121911","l":"Garciella nitratireducens DSM 15102","na":4,"nb":2,"a":[["inlet-envo-00000475.html","inlet"],["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A218205","Garciella nitratireducens"],["NCBITaxon%3A1121911","Garciella nitratireducens DSM 15102"]]},{"id":"NCBITaxon:1121912","l":"Gelidibacter mesophilus DSM 14095","na":4,"nb":2,"a":[["marginal-sea-biome-envo-01000046.html","marginal sea biome"],["sea-envo-00000016.html","sea"],["sea-water-envo-00002149.html","sea water"],["mediterranean-envo-01000207.html","mediterranean"]],"b":[["NCBITaxon%3A169050","Gelidibacter mesophilus"],["NCBITaxon%3A1121912","Gelidibacter mesophilus DSM 14095"]]},{"id":"NCBITaxon:1121922","l":"Brumicola pallidula DSM 14239 = ACAM 615","na":4,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"],["sea-water-envo-00002149.html","sea water"],["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A56807","Brumicola pallidula"],["NCBITaxon%3A1121922","Brumicola pallidula DSM 14239 = ACAM 615"]]},{"id":"NCBITaxon:1121937","l":"Haliea salexigens DSM 19537","na":4,"nb":2,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"],["sea-water-envo-00002149.html","sea water"],["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A287487","Haliea salexigens"],["NCBITaxon%3A1121937","Haliea salexigens DSM 19537"]]},{"id":"NCBITaxon:1122192","l":"Marinactinospora thermotolerans DSM 45154","na":4,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["ocean-trench-envo-00000275.html","ocean trench"],["oceanic-zone-envo-00000207.html","oceanic zone"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A531310","Marinactinospora thermotolerans"],["NCBITaxon%3A1122192","Marinactinospora thermotolerans DSM 45154"]]},{"id":"NCBITaxon:1122195","l":"Marinitoga hydrogenitolerans DSM 16785","na":4,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["ridge-envo-00000283.html","ridge"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A287990","Marinitoga hydrogenitolerans"],["NCBITaxon%3A1122195","Marinitoga hydrogenitolerans DSM 16785"]]},{"id":"NCBITaxon:1122238","l":"Microbacterium indicum DSM 19969","na":4,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["ocean-trench-envo-00000275.html","ocean trench"],["oceanic-zone-envo-00000207.html","oceanic zone"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A358100","Microbacterium indicum"],["NCBITaxon%3A1122238","Microbacterium indicum DSM 19969"]]},{"id":"NCBITaxon:1123233","l":"Salinicoccus luteus DSM 17002","na":4,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"],["desert-biome-envo-01000179.html","desert biome"],["desert-area-envo-00000097.html","desert area"],["wadi-envo-00000031.html","wadi"]],"b":[["NCBITaxon%3A367840","Salinicoccus luteus"],["NCBITaxon%3A1123233","Salinicoccus luteus DSM 17002"]]},{"id":"NCBITaxon:1123349","l":"Tepidibacter formicigenes DSM 15518","na":4,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["ridge-envo-00000283.html","ridge"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A227138","Tepidibacter formicigenes"],["NCBITaxon%3A1123349","Tepidibacter formicigenes DSM 15518"]]},{"id":"NCBITaxon:1123383","l":"Pseudothermotoga elfii DSM 9442 = NBRC 107921","na":4,"nb":2,"a":[["blast-cell-bto-0000125.html","blast cell"],["flagellum-bto-0002292.html","flagellum"],["petroleum-envo-00002984.html","petroleum"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A38322","Pseudothermotoga elfii"],["NCBITaxon%3A1123383","Pseudothermotoga elfii DSM 9442 = NBRC 107921"]]},{"id":"NCBITaxon:1123384","l":"Pseudothermotoga hypogea DSM 11164 = NBRC 106472","na":4,"nb":2,"a":[["blast-cell-bto-0000125.html","blast cell"],["flagellum-bto-0002292.html","flagellum"],["petroleum-envo-00002984.html","petroleum"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A57487","Pseudothermotoga hypogea"],["NCBITaxon%3A1123384","Pseudothermotoga hypogea DSM 11164 = NBRC 106472"]]},{"id":"NCBITaxon:1137989","l":"Geodermatophilus normandii","na":4,"nb":2,"a":[["desert-biome-envo-01000179.html","desert biome"],["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"],["desert-area-envo-00000097.html","desert area"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A1137989","Geodermatophilus normandii"],["NCBITaxon%3A52020","Geodermatophilus sp."]]},{"id":"NCBITaxon:114259","l":"Nocardia paucivorans","na":4,"nb":2,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["NCBITaxon%3A114259","Nocardia paucivorans"],["NCBITaxon%3A1206734","Nocardia paucivorans NBRC 100373"]]},{"id":"NCBITaxon:114652","l":"Streptococcus orisratti","na":2,"nb":4,"a":[["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"]],"b":[["NCBITaxon%3A114652","Streptococcus orisratti"],["NCBITaxon%3A1123311","Streptococcus orisratti DSM 15617"],["NCBITaxon%3A3409805","Streptococcus orisratti subsp. futianensis"],["NCBITaxon%3A3709338","Streptococcus orisratti subsp. orisratti"]]},{"id":"NCBITaxon:121719","l":"Pannonibacter phragmitetus","na":2,"nb":4,"a":[["nectar-bto-0000537.html","nectar"],["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A134375","Achromobacter sp."],["NCBITaxon%3A121719","Pannonibacter phragmitetus"],["NCBITaxon%3A1402210","Pannonibacter phragmitetus BB"],["NCBITaxon%3A1122929","Pannonibacter phragmitetus DSM 14782"]]},{"id":"NCBITaxon:1217908","l":"Octadecabacter antarcticus","na":4,"nb":2,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["sea-water-envo-00002149.html","sea water"],["hemolymph-bto-0000572.html","hemolymph"]],"b":[["NCBITaxon%3A1217908","Octadecabacter antarcticus"],["NCBITaxon%3A391626","Octadecabacter antarcticus 307"]]},{"id":"NCBITaxon:1306","l":"Streptococcus sp.","na":4,"nb":2,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["co-culture-habitatmech-bacdive-ff945d8a69.html","Co-culture"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1306","Streptococcus sp."]]},{"id":"NCBITaxon:1469607","l":"[Scytonema hofmanni] UTEX 2349","na":4,"nb":2,"a":[["track-envo-00000122.html","track"],["iucn-national-park-envo-00000367.html","IUCN national park"],["canyon-envo-00000169.html","canyon"],["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A1469607","[Scytonema hofmanni] UTEX 2349"],["NCBITaxon%3A379533","Tolypothrix sp. PCC 9009"]]},{"id":"NCBITaxon:1495","l":"Clostridium cylindrosporum","na":4,"nb":2,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["surface-water-envo-00002042.html","surface water"],["sludge-envo-00002044.html","sludge"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"]],"b":[["NCBITaxon%3A1495","Clostridium cylindrosporum"],["NCBITaxon%3A1121307","Clostridium cylindrosporum DSM 605"]]},{"id":"NCBITaxon:152142","l":"Mycolicibacterium holsaticum","na":4,"nb":2,"a":[["fibroblast-bto-0000452.html","fibroblast"],["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["kidney-bto-0000671.html","kidney"],["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A152142","Mycolicibacterium holsaticum"],["NCBITaxon%3A1226752","Mycolicibacterium holsaticum DSM 44478 = JCM 12374"]]},{"id":"NCBITaxon:153233","l":"Oceanicaulis alexandrii","na":4,"nb":2,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"],["forested-area-envo-00000111.html","forested area"],["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["NCBITaxon%3A153233","Oceanicaulis alexandrii"],["NCBITaxon%3A1122613","Oceanicaulis alexandrii DSM 11625"]]},{"id":"NCBITaxon:1565","l":"Desulfotomaculum nigrificans","na":2,"nb":4,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A2419843","Desulfofundulus salinus"],["NCBITaxon%3A1565","Desulfotomaculum nigrificans"],["NCBITaxon%3A868595","Desulfotomaculum nigrificans CO-1-SRB"],["NCBITaxon%3A696369","Desulfotomaculum nigrificans DSM 574"]]},{"id":"NCBITaxon:163","l":"Treponema bryantii","na":4,"nb":2,"a":[["stomach-bto-0001307.html","stomach"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["intestine-environment-envo-2100002.html","intestine environment"],["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["NCBITaxon%3A163","Treponema bryantii"],["NCBITaxon%3A877418","Treponema bryantii NK4A124"]]},{"id":"NCBITaxon:164393","l":"Latilactobacillus fuchuensis","na":4,"nb":2,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A164393","Latilactobacillus fuchuensis"],["NCBITaxon%3A1423747","Latilactobacillus fuchuensis DSM 14340 = JCM 11249"]]},{"id":"NCBITaxon:1684","l":"Bifidobacterium asteroides","na":2,"nb":4,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"]],"b":[["NCBITaxon%3A419015","Alloscardovia omnicolens"],["NCBITaxon%3A1684","Bifidobacterium asteroides"],["NCBITaxon%3A1437594","Bifidobacterium asteroides DSM 20089"],["NCBITaxon%3A1147128","Bifidobacterium asteroides PRL2011"]]},{"id":"NCBITaxon:172045","l":"Elizabethkingia miricola","na":4,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["hindgut-bto-0000510.html","hindgut"],["wood-bto-0005516.html","wood"],["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A238","Elizabethkingia meningoseptica"],["NCBITaxon%3A172045","Elizabethkingia miricola"]]},{"id":"NCBITaxon:1725","l":"Corynebacterium xerosis","na":2,"nb":4,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A1720","Corynebacterium sp."],["NCBITaxon%3A43770","Corynebacterium striatum"],["NCBITaxon%3A1725","Corynebacterium xerosis"],["NCBITaxon%3A1223513","Corynebacterium xerosis NBRC 16721 = ATCC 373"]]},{"id":"NCBITaxon:1736","l":"Eubacterium limosum","na":2,"nb":4,"a":[["watercourse-envo-00000029.html","watercourse"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A1852361","Actinomyces bouchesdurhonensis"],["NCBITaxon%3A1736","Eubacterium limosum"],["NCBITaxon%3A903814","Eubacterium limosum KIST612"],["NCBITaxon%3A2041044","Eubacterium maltosivorans"]]},{"id":"NCBITaxon:190721","l":"Ralstonia insidiosa","na":4,"nb":2,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["NCBITaxon%3A3058597","Ralstonia flaminis"],["NCBITaxon%3A190721","Ralstonia insidiosa"]]},{"id":"NCBITaxon:192","l":"Azospirillum brasilense","na":2,"nb":4,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A1064539","Azospirillum baldaniorum"],["NCBITaxon%3A192","Azospirillum brasilense"],["NCBITaxon%3A1117321","Azospirillum brasilense CBG497"],["NCBITaxon%3A1262469","Azospirillum brasilense FP2"]]},{"id":"NCBITaxon:2021","l":"Thermobifida fusca","na":2,"nb":4,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["NCBITaxon%3A2021","Thermobifida fusca"],["NCBITaxon%3A1223522","Thermobifida fusca NBRC 14071 = JCM 3263"],["NCBITaxon%3A1169414","Thermobifida fusca TM51"],["NCBITaxon%3A269800","Thermobifida fusca YX"]]},{"id":"NCBITaxon:203122","l":"Saccharophagus degradans 2-40","na":4,"nb":2,"a":[["intertidal-zone-envo-00000316.html","intertidal zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["saline-marsh-envo-00000054.html","saline marsh"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["NCBITaxon%3A86304","Saccharophagus degradans"],["NCBITaxon%3A203122","Saccharophagus degradans 2-40"]]},{"id":"NCBITaxon:208223","l":"Kosakonia cowanii","na":4,"nb":2,"a":[["midgut-bto-0000863.html","midgut"],["midgut-epithelium-bto-0005053.html","midgut epithelium"],["nectar-bto-0000537.html","nectar"],["ookinete-bto-0004857.html","ookinete"]],"b":[["NCBITaxon%3A208223","Kosakonia cowanii"],["NCBITaxon%3A1300165","Kosakonia cowanii JCM 10956 = DSM 18146"]]},{"id":"NCBITaxon:243061","l":"Mycobacterium sherrisii","na":4,"nb":2,"a":[["fibroblast-bto-0000452.html","fibroblast"],["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["kidney-bto-0000671.html","kidney"],["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A154654","Mycobacterium montefiorense"],["NCBITaxon%3A243061","Mycobacterium sherrisii"]]},{"id":"NCBITaxon:243090","l":"Rhodopirellula baltica SH 1","na":4,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["oligotrophic-water-envo-00002223.html","oligotrophic water"],["pond-water-envo-00002228.html","pond water"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A265606","Rhodopirellula baltica"],["NCBITaxon%3A243090","Rhodopirellula baltica SH 1"]]},{"id":"NCBITaxon:264462","l":"Bdellovibrio bacteriovorus HD100","na":4,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A959","Bdellovibrio bacteriovorus"],["NCBITaxon%3A264462","Bdellovibrio bacteriovorus HD100"]]},{"id":"NCBITaxon:272624","l":"Legionella pneumophila subsp. pneumophila (strain Philadelphia 1 / ATCC 33152 / DSM 7513)","na":2,"nb":4,"a":[["underground-water-envo-00005792.html","underground water"],["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A446","Legionella pneumophila"],["NCBITaxon%3A91891","Legionella pneumophila subsp. pneumophila"],["NCBITaxon%3A1236535","Legionella pneumophila subsp. pneumophila JCM 7571"],["NCBITaxon%3A272624","Legionella pneumophila subsp. pneumophila str. Philadelphia 1"]]},{"id":"NCBITaxon:2748","l":"Carnobacterium divergens","na":2,"nb":4,"a":[["food-product-foodon-00001002.html","food product"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["NCBITaxon%3A2748","Carnobacterium divergens"],["NCBITaxon%3A1449336","Carnobacterium divergens DSM 20623"],["NCBITaxon%3A2751","Carnobacterium maltaromaticum"],["NCBITaxon%3A1579","Lactobacillus acidophilus"]]},{"id":"NCBITaxon:28051","l":"Lachnospira multipara","na":2,"nb":4,"a":[["animal-litter-envo-00002191.html","animal litter"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["NCBITaxon%3A28051","Lachnospira multipara"],["NCBITaxon%3A1282887","Lachnospira multipara ATCC 19207"],["NCBITaxon%3A1410661","Lachnospira multipara LB2003"],["NCBITaxon%3A1410662","Lachnospira multipara MC2003"]]},{"id":"NCBITaxon:28114","l":"Porphyromonas levii","na":4,"nb":2,"a":[["environmental-feature-envo-00002297.html","environmental feature"],["lagoon-envo-00000038.html","lagoon"],["skin-environment-envo-2100003.html","skin environment"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A28114","Porphyromonas levii"],["NCBITaxon%3A1122973","Porphyromonas levii DSM 23370"]]},{"id":"NCBITaxon:29345","l":"Sedimentibacter hydroxybenzoicus","na":4,"nb":2,"a":[["mud-envo-01000001.html","mud"],["oil-spill-envo-00002061.html","oil spill"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A29345","Sedimentibacter hydroxybenzoicus"],["NCBITaxon%3A1123245","Sedimentibacter hydroxybenzoicus DSM 7310"]]},{"id":"NCBITaxon:35703","l":"Citrobacter amalonaticus","na":2,"nb":4,"a":[["dental-plaque-bto-0000338.html","dental plaque"],["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["NCBITaxon%3A35703","Citrobacter amalonaticus"],["NCBITaxon%3A1261127","Citrobacter amalonaticus Y19"],["NCBITaxon%3A67824","Citrobacter farmeri"],["NCBITaxon%3A546","Citrobacter freundii"]]},{"id":"NCBITaxon:365044","l":"Polaromonas naphthalenivorans CJ2","na":4,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["large-river-biome-envo-00000887.html","large river biome"],["waterfall-envo-00000040.html","waterfall"],["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A216465","Polaromonas naphthalenivorans"],["NCBITaxon%3A365044","Polaromonas naphthalenivorans CJ2"]]},{"id":"NCBITaxon:37637","l":"Corynebacterium pseudodiphtheriticum","na":2,"nb":4,"a":[["hospital-envo-00002173.html","hospital"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["NCBITaxon%3A43769","Corynebacterium propinquum"],["NCBITaxon%3A37637","Corynebacterium pseudodiphtheriticum"],["NCBITaxon%3A1381111","Corynebacterium pseudodiphtheriticum 090104"],["NCBITaxon%3A1121368","Corynebacterium pseudodiphtheriticum DSM 44287"]]},{"id":"NCBITaxon:391606","l":"Caldanaerobacter subterraneus subsp. pacificus DSM 12653","na":2,"nb":4,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"]],"b":[["NCBITaxon%3A911092","Caldanaerobacter subterraneus"],["NCBITaxon%3A109807","Caldanaerobacter subterraneus subsp. pacificus"],["NCBITaxon%3A391606","Caldanaerobacter subterraneus subsp. pacificus DSM 12653"],["NCBITaxon%3A119072","Caldanaerobacter subterraneus subsp. tengcongensis"]]},{"id":"NCBITaxon:391735","l":"Verminephrobacter eiseniae EF01-2","na":4,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["embryo-bto-0000379.html","embryo"],["nephridium-bto-0000923.html","nephridium"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["NCBITaxon%3A364317","Verminephrobacter eiseniae"],["NCBITaxon%3A391735","Verminephrobacter eiseniae EF01-2"]]},{"id":"NCBITaxon:39441","l":"Methanobrevibacter arboriphilus","na":2,"nb":4,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A39441","Methanobrevibacter arboriphilus"],["NCBITaxon%3A1401244","Methanobrevibacter arboriphilus ANOR1"],["NCBITaxon%3A1300164","Methanobrevibacter arboriphilus JCM 13429 = DSM 1125"],["NCBITaxon%3A1293039","Methanobrevibacter arboriphilus JCM 9315"]]},{"id":"NCBITaxon:395019","l":"Burkholderia multivorans ATCC 17616","na":4,"nb":2,"a":[["human-construction-envo-00000070.html","human construction"],["desert-sand-envo-00005800.html","desert sand"],["orchard-envo-00000115.html","orchard"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["NCBITaxon%3A87883","Burkholderia multivorans"],["NCBITaxon%3A395019","Burkholderia multivorans ATCC 17616"]]},{"id":"NCBITaxon:411465","l":"Parvimonas micra ATCC 33270","na":4,"nb":2,"a":[["hip-bto-0001457.html","hip"],["joint-bto-0001686.html","joint"],["tooth-bto-0000397.html","tooth"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A33033","Parvimonas micra"],["NCBITaxon%3A411465","Parvimonas micra ATCC 33270"]]},{"id":"NCBITaxon:449973","l":"Chelativorans multitrophicus","na":4,"nb":2,"a":[["factory-envo-01000536.html","factory"],["sludge-envo-00002044.html","sludge"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A449973","Chelativorans multitrophicus"],["NCBITaxon%3A449974","Chelativorans oligotrophicus"]]},{"id":"NCBITaxon:479432","l":"Streptosporangium roseum DSM 43021","na":4,"nb":2,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"],["vegetable-garden-soil-envo-00005779.html","vegetable garden soil"]],"b":[["NCBITaxon%3A2001","Streptosporangium roseum"],["NCBITaxon%3A479432","Streptosporangium roseum DSM 43021"]]},{"id":"NCBITaxon:479433","l":"Catenulispora acidiphila DSM 44928","na":4,"nb":2,"a":[["filament-bto-0000463.html","filament"],["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A304895","Catenulispora acidiphila"],["NCBITaxon%3A479433","Catenulispora acidiphila DSM 44928"]]},{"id":"NCBITaxon:480224","l":"Chloroflexus aurantiacus Y-400-fl","na":4,"nb":2,"a":[["alkaline-hot-spring-envo-00002119.html","alkaline hot spring"],["mountain-pass-envo-00000084.html","mountain pass"],["silty-sediment-envo-01000119.html","silty sediment"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A1108","Chloroflexus aurantiacus"],["NCBITaxon%3A480224","Chloroflexus aurantiacus Y-400-fl"]]},{"id":"NCBITaxon:485914","l":"Halomicrobium mukohataei DSM 12286","na":4,"nb":2,"a":[["saline-lake-envo-00000019.html","saline lake"],["saline-marsh-envo-00000054.html","saline marsh"],["alkaline-flat-envo-00000196.html","alkaline flat"],["plateau-envo-00000182.html","plateau"]],"b":[["NCBITaxon%3A57705","Halomicrobium mukohataei"],["NCBITaxon%3A485914","Halomicrobium mukohataei DSM 12286"]]},{"id":"NCBITaxon:51514","l":"Dehalobacterium","na":2,"nb":4,"a":[["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"]],"b":[["NCBITaxon%3A51515","Dehalobacterium formicoaceticum"],["NCBITaxon%3A2022806","Dehalobacterium sp."],["NCBITaxon%3A3143029","Dehalobacterium sp. XH"],["NCBITaxon%3A926829","uncultured Dehalobacterium sp."]]},{"id":"NCBITaxon:519","l":"Bordetella parapertussis","na":2,"nb":4,"a":[["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["NCBITaxon%3A519","Bordetella parapertussis"],["NCBITaxon%3A257311","Bordetella parapertussis 12822"],["NCBITaxon%3A1208717","Bordetella parapertussis 18323"],["NCBITaxon%3A1208660","Bordetella parapertussis Bpp5"]]},{"id":"NCBITaxon:525909","l":"Acidimicrobium ferrooxidans DSM 10331","na":4,"nb":2,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A53635","Acidimicrobium ferrooxidans"],["NCBITaxon%3A525909","Acidimicrobium ferrooxidans DSM 10331"]]},{"id":"NCBITaxon:555779","l":"Desulfonatronospira thiodismutans ASO3-1","na":4,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"],["soil-envo-00001998.html","soil"],["steppe-envo-00000262.html","steppe"]],"b":[["NCBITaxon%3A488939","Desulfonatronospira thiodismutans"],["NCBITaxon%3A555779","Desulfonatronospira thiodismutans ASO3-1"]]},{"id":"NCBITaxon:563040","l":"Sulfurimonas autotrophica DSM 16294","na":4,"nb":2,"a":[["hill-envo-00000083.html","hill"],["mount-envo-00000477.html","mount"],["mountain-envo-00000081.html","mountain"],["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A202747","Sulfurimonas autotrophica"],["NCBITaxon%3A563040","Sulfurimonas autotrophica DSM 16294"]]},{"id":"NCBITaxon:575540","l":"Isosphaera pallida ATCC 43644","na":4,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["agricultural-soil-envo-00002259.html","agricultural soil"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A128","Isosphaera pallida"],["NCBITaxon%3A575540","Isosphaera pallida ATCC 43644"]]},{"id":"NCBITaxon:577","l":"Klebsiella terrigena","na":2,"nb":4,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A577","Klebsiella terrigena"],["NCBITaxon%3A1354274","Klebsiella terrigena ATCC 33257"],["NCBITaxon%3A1255696","Klebsiella terrigena Pi19"]]},{"id":"NCBITaxon:587","l":"Providencia rettgeri","na":2,"nb":4,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["fumarole-envo-00000216.html","fumarole"]],"b":[["NCBITaxon%3A587","Providencia rettgeri"],["NCBITaxon%3A1255575","Providencia rettgeri 947"],["NCBITaxon%3A1141663","Providencia rettgeri Dmel1"],["NCBITaxon%3A521000","Providencia rettgeri DSM 1131"]]},{"id":"NCBITaxon:588319","l":"Palaeococcus ferrophilus DSM 13482","na":4,"nb":2,"a":[["hill-envo-00000083.html","hill"],["mount-envo-00000477.html","mount"],["mountain-envo-00000081.html","mountain"],["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A83868","Palaeococcus ferrophilus"],["NCBITaxon%3A588319","Palaeococcus ferrophilus DSM 13482"]]},{"id":"NCBITaxon:61646","l":"Lelliottia amnigena","na":2,"nb":4,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["NCBITaxon%3A61646","Lelliottia amnigena"],["NCBITaxon%3A1439331","Lelliottia amnigena CHS 78"],["NCBITaxon%3A1255644","Lelliottia amnigena CV9"],["NCBITaxon%3A1219085","Lelliottia amnigena NBRC 105700"]]},{"id":"NCBITaxon:633148","l":"Thermosphaera aggregans DSM 11486","na":4,"nb":2,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["park-envo-00000562.html","park"],["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A54254","Thermosphaera aggregans"],["NCBITaxon%3A633148","Thermosphaera aggregans DSM 11486"]]},{"id":"NCBITaxon:651","l":"Aeromonas media","na":4,"nb":2,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"],["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A651","Aeromonas media"],["NCBITaxon%3A1208104","Aeromonas media WS"]]},{"id":"NCBITaxon:753","l":"Pasteurella canis","na":2,"nb":4,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"]],"b":[["NCBITaxon%3A317577","Deinococcus ficus"],["NCBITaxon%3A1121379","Deinococcus ficus DSM 19119"],["NCBITaxon%3A753","Pasteurella canis"],["NCBITaxon%3A1538102","Pseudochelatococcus lubricantis"]]},{"id":"NCBITaxon:1000570","l":"Streptococcus anginosus SK52","na":2,"nb":3,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"],["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1328","Streptococcus anginosus"],["NCBITaxon%3A1000570","Streptococcus anginosus SK52 = DSM 20563"],["NCBITaxon%3A1671923","Streptococcus anginosus subsp. anginosus"]]},{"id":"NCBITaxon:1001714","l":"Mycobacteroides abscessus subsp. massiliense CCUG 48898 = JCM 15300","na":2,"nb":3,"a":[["respiratory-system-bto-0000203.html","respiratory system"],["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A36809","Mycobacteroides abscessus"],["NCBITaxon%3A1962118","Mycobacteroides abscessus subsp. massiliense"],["NCBITaxon%3A1001714","Mycobacteroides abscessus subsp. massiliense CCUG 48898 = JCM 15300"]]},{"id":"NCBITaxon:1027273","l":"Endozoicomonas montiporae","na":3,"nb":2,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"],["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"],["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1027273","Endozoicomonas montiporae"],["NCBITaxon%3A570277","Endozoicomonas montiporae CL-33"]]},{"id":"NCBITaxon:102886","l":"Streptococcus didelphis","na":3,"nb":2,"a":[["animal-manure-envo-00003031.html","animal manure"],["organic-feature-envo-01000159.html","organic feature"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A102886","Streptococcus didelphis"],["NCBITaxon%3A1123301","Streptococcus didelphis DSM 15616"]]},{"id":"NCBITaxon:104097","l":"Acetobacter estunensis","na":3,"nb":2,"a":[["river-envo-00000022.html","river"],["food-fermented-foodon-00001258.html","food (fermented)"],["subpolar-coniferous-forest-biome-envo-01000250.html","subpolar coniferous forest biome"]],"b":[["NCBITaxon%3A104097","Acetobacter estunensis"],["NCBITaxon%3A1307905","Acetobacter estunensis NRIC 0472"]]},{"id":"NCBITaxon:1050107","l":"Lactobacillus delbrueckii subsp. allosunkii","na":2,"nb":3,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A1584","Lactobacillus delbrueckii"],["NCBITaxon%3A1050107","Lactobacillus delbrueckii subsp. allosunkii"],["NCBITaxon%3A29397","Lactobacillus delbrueckii subsp. lactis"]]},{"id":"NCBITaxon:1055104","l":"Cobetia amphilecti","na":2,"nb":3,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A1055104","Cobetia amphilecti"],["NCBITaxon%3A412417","Streptomonospora arabica"],["NCBITaxon%3A58345","Streptomyces mauvecolor"]]},{"id":"NCBITaxon:105841","l":"Anaerostipes caccae","na":3,"nb":2,"a":[["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["emulsion-envo-00010506.html","emulsion"],["organic-feature-envo-01000159.html","organic feature"]],"b":[["NCBITaxon%3A105841","Anaerostipes caccae"],["NCBITaxon%3A411490","Anaerostipes caccae L1-92"]]},{"id":"NCBITaxon:1069082","l":"Halomicrobium katesii DSM 19301","na":3,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A437163","Halomicrobium katesii"],["NCBITaxon%3A1069082","Halomicrobium katesii DSM 19301"]]},{"id":"NCBITaxon:1069083","l":"Methanocaldococcus villosus KIN24-T80","na":3,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["flagellum-bto-0002292.html","flagellum"],["ridge-envo-00000283.html","ridge"]],"b":[["NCBITaxon%3A667126","Methanocaldococcus villosus"],["NCBITaxon%3A1069083","Methanocaldococcus villosus KIN24-T80"]]},{"id":"NCBITaxon:1071","l":"Rhodopila globiformis","na":3,"nb":2,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A563170","Ferruginibacter alkalilentus"],["NCBITaxon%3A1071","Rhodopila globiformis"]]},{"id":"NCBITaxon:107635","l":"Methylosinus sp. LW3","na":3,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A427","Methylosinus sp."],["NCBITaxon%3A107635","Methylosinus sp. LW3"]]},{"id":"NCBITaxon:107637","l":"Methylomonas sp. LW13","na":3,"nb":2,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["freshwater-environment-envo-01000306.html","freshwater environment"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A418","Methylomonas sp."],["NCBITaxon%3A107637","Methylomonas sp. LW13"]]},{"id":"NCBITaxon:1086","l":"Rhodothalassium salexigens","na":3,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A1086","Rhodothalassium salexigens"],["NCBITaxon%3A1188247","Rhodothalassium salexigens DSM 2132"]]},{"id":"NCBITaxon:1091038","l":"Streptococcus thermophilus DSM 20617","na":3,"nb":2,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A1308","Streptococcus thermophilus"],["NCBITaxon%3A1091038","Streptococcus thermophilus DSM 20617"]]},{"id":"NCBITaxon:1096","l":"Chlorobium phaeobacteroides","na":2,"nb":3,"a":[["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"]],"b":[["NCBITaxon%3A1096","Chlorobium phaeobacteroides"],["NCBITaxon%3A331678","Chlorobium phaeobacteroides BS1"],["NCBITaxon%3A290317","Chlorobium phaeobacteroides DSM 266"]]},{"id":"NCBITaxon:110101","l":"Laceyella putida","na":3,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"],["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["NCBITaxon%3A1538144","Aeromicrobium camelliae"],["NCBITaxon%3A110101","Laceyella putida"]]},{"id":"NCBITaxon:1112212","l":"Sphingomonas echinoides ATCC 14820","na":3,"nb":2,"a":[["bioreactor-envo-00002123.html","bioreactor"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["NCBITaxon%3A59803","Sphingomonas echinoides"],["NCBITaxon%3A1112212","Sphingomonas echinoides ATCC 14820"]]},{"id":"NCBITaxon:1117644","l":"Mycoplasmopsis canis PG 14","na":3,"nb":2,"a":[["brain-bto-0000142.html","brain"],["throat-bto-0000828.html","throat"],["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A29555","Mycoplasmopsis canis"],["NCBITaxon%3A1117644","Mycoplasmopsis canis PG 14"]]},{"id":"NCBITaxon:1117647","l":"Simiduia agarivorans SA1 = DSM 21679","na":3,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"],["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A447471","Simiduia agarivorans"],["NCBITaxon%3A1117647","Simiduia agarivorans SA1 = DSM 21679"]]},{"id":"NCBITaxon:1120925","l":"Acinetobacter bouvetii DSM 14964 = CIP 107468","na":3,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A202951","Acinetobacter bouvetii"],["NCBITaxon%3A1120925","Acinetobacter bouvetii DSM 14964 = CIP 107468"]]},{"id":"NCBITaxon:1120927","l":"Acinetobacter tandoii DSM 14970 = CIP 107469","na":3,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A202954","Acinetobacter tandoii"],["NCBITaxon%3A1120927","Acinetobacter tandoii DSM 14970 = CIP 107469"]]},{"id":"NCBITaxon:1120928","l":"Acinetobacter tjernbergiae DSM 14971 = CIP 107465","na":3,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A202955","Acinetobacter tjernbergiae"],["NCBITaxon%3A1120928","Acinetobacter tjernbergiae DSM 14971 = CIP 107465"]]},{"id":"NCBITaxon:1120953","l":"Aestuariibacter salexigens DSM 15300","na":3,"nb":2,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"],["island-envo-00000098.html","island"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A226010","Aestuariibacter salexigens"],["NCBITaxon%3A1120953","Aestuariibacter salexigens DSM 15300"]]},{"id":"NCBITaxon:1120956","l":"Afifella pfennigii DSM 17143","na":3,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A209897","Afifella pfennigii"],["NCBITaxon%3A1120956","Afifella pfennigii DSM 17143"]]},{"id":"NCBITaxon:1120961","l":"Ahrensia kielensis DSM 5890","na":3,"nb":2,"a":[["brackish-water-body-envo-01001321.html","brackish water body"],["hypersaline-water-envo-00002012.html","hypersaline water"],["sea-envo-00000016.html","sea"]],"b":[["NCBITaxon%3A76980","Ahrensia kielensis"],["NCBITaxon%3A1120961","Ahrensia kielensis DSM 5890"]]},{"id":"NCBITaxon:1120965","l":"Algoriphagus mannitolivorans DSM 15301","na":3,"nb":2,"a":[["intertidal-zone-envo-00000316.html","intertidal zone"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A226504","Algoriphagus mannitolivorans"],["NCBITaxon%3A1120965","Algoriphagus mannitolivorans DSM 15301"]]},{"id":"NCBITaxon:1120969","l":"Aliagarivorans marinus DSM 23064","na":3,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"],["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A561965","Aliagarivorans marinus"],["NCBITaxon%3A1120969","Aliagarivorans marinus DSM 23064"]]},{"id":"NCBITaxon:1120983","l":"Amorphus coralli DSM 19760","na":3,"nb":2,"a":[["inlet-envo-00000475.html","inlet"],["sea-envo-00000016.html","sea"],["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A340680","Amorphus coralli"],["NCBITaxon%3A1120983","Amorphus coralli DSM 19760"]]},{"id":"NCBITaxon:1120985","l":"Anaeroarcus burkinensis DSM 6283","na":3,"nb":2,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A82376","Anaeromusa burkinensis"],["NCBITaxon%3A1120985","Anaeromusa burkinensis DSM 6283"]]},{"id":"NCBITaxon:1120987","l":"Acetomicrobium thermoterrenum DSM 13490","na":3,"nb":2,"a":[["reservoir-envo-00000025.html","reservoir"],["agricultural-field-envo-00000114.html","agricultural field"],["oil-envo-00002985.html","oil"]],"b":[["NCBITaxon%3A1120986","Acetomicrobium thermoterrenum"],["NCBITaxon%3A1120987","Acetomicrobium thermoterrenum DSM 13490"]]},{"id":"NCBITaxon:1120998","l":"Anaerovorax odorimutans DSM 5092","na":3,"nb":2,"a":[["brackish-water-body-envo-01001321.html","brackish water body"],["hypersaline-water-envo-00002012.html","hypersaline water"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A109327","Anaerovorax odorimutans"],["NCBITaxon%3A1120998","Anaerovorax odorimutans DSM 5092"]]},{"id":"NCBITaxon:1120999","l":"Andreprevotia chitinilytica DSM 18519","na":3,"nb":2,"a":[["forest-soil-envo-00002261.html","forest soil"],["island-envo-00000098.html","island"],["mountain-envo-00000081.html","mountain"]],"b":[["NCBITaxon%3A396808","Andreprevotia chitinilytica"],["NCBITaxon%3A1120999","Andreprevotia chitinilytica DSM 18519"]]},{"id":"NCBITaxon:1121012","l":"Arenibacter latericius DSM 15913","na":3,"nb":2,"a":[["sea-envo-00000016.html","sea"],["island-envo-00000098.html","island"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A86104","Arenibacter latericius"],["NCBITaxon%3A1121012","Arenibacter latericius DSM 15913"]]},{"id":"NCBITaxon:1121013","l":"Arenimonas composti TR7-09 = DSM 18010","na":3,"nb":2,"a":[["agricultural-waste-material-envo-01000371.html","agricultural waste material"],["compost-envo-00002170.html","compost"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A370776","Arenimonas composti"],["NCBITaxon%3A1121013","Arenimonas composti TR7-09 = DSM 18010"]]},{"id":"NCBITaxon:1121015","l":"Arenimonas oryziterrae DSM 21050 = YC6267","na":3,"nb":2,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A498055","Arenimonas oryziterrae"],["NCBITaxon%3A1121015","Arenimonas oryziterrae DSM 21050 = YC6267"]]},{"id":"NCBITaxon:1121016","l":"Arhodomonas aquaeolei DSM 8974","na":3,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A2369","Arhodomonas aquaeolei"],["NCBITaxon%3A1121016","Arhodomonas aquaeolei DSM 8974"]]},{"id":"NCBITaxon:1121025","l":"Atopostipes suicloacalis DSM 15692","na":3,"nb":2,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["fecal-environment-envo-01001029.html","fecal environment"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A180295","Atopostipes suicloacalis"],["NCBITaxon%3A1121025","Atopostipes suicloacalis DSM 15692"]]},{"id":"NCBITaxon:1121085","l":"Salibacterium aidingense DSM 18341","na":3,"nb":2,"a":[["saline-lake-envo-00000019.html","saline lake"],["undersea-feature-envo-00000104.html","undersea feature"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A384933","Salibacterium aidingense"],["NCBITaxon%3A1121085","Salibacterium aidingense DSM 18341"]]},{"id":"NCBITaxon:1121087","l":"Alkalicoccus chagannorensis DSM 18086","na":3,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["hypersaline-water-envo-00002012.html","hypersaline water"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A427072","Alkalicoccus chagannorensis"],["NCBITaxon%3A1121087","Alkalicoccus chagannorensis DSM 18086"]]},{"id":"NCBITaxon:1121111","l":"Bifidobacterium thermacidophilum subsp. thermacidophilum DSM 15837","na":2,"nb":3,"a":[["waste-water-envo-00002001.html","waste water"],["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A246618","Bifidobacterium thermacidophilum"],["NCBITaxon%3A79262","Bifidobacterium thermacidophilum subsp. thermacidophilum"],["NCBITaxon%3A1121111","Bifidobacterium thermacidophilum subsp. thermacidophilum DSM 15837"]]},{"id":"NCBITaxon:1121112","l":"Bifidobacterium tsurumiense DSM 17777","na":3,"nb":2,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A356829","Bifidobacterium tsurumiense"],["NCBITaxon%3A1121112","Bifidobacterium tsurumiense DSM 17777"]]},{"id":"NCBITaxon:1121256","l":"Caldanaerobius fijiensis DSM 17918","na":3,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"],["island-envo-00000098.html","island"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A456330","Caldanaerobius fijiensis"],["NCBITaxon%3A1121256","Caldanaerobius fijiensis DSM 17918"]]},{"id":"NCBITaxon:1121291","l":"Clostridium acidisoli DSM 12555","na":3,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A91624","Clostridium acidisoli"],["NCBITaxon%3A1121291","Clostridium acidisoli DSM 12555"]]},{"id":"NCBITaxon:1121303","l":"Ruminiclostridium cellobioparum DSM 1351 = ATCC 15832","na":2,"nb":3,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A29355","Ruminiclostridium cellobioparum"],["NCBITaxon%3A1121303","Ruminiclostridium cellobioparum DSM 1351 = ATCC 15832"],["NCBITaxon%3A2305018","Ruminiclostridium cellobioparum subsp. cellobioparum"]]},{"id":"NCBITaxon:1121349","l":"Comamonas composti DSM 21721","na":3,"nb":2,"a":[["compost-envo-00002170.html","compost"],["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A408558","Comamonas composti"],["NCBITaxon%3A1121349","Comamonas composti DSM 21721"]]},{"id":"NCBITaxon:1121377","l":"Deinococcus apachensis DSM 19763","na":3,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"],["desert-biome-envo-01000179.html","desert biome"],["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A309886","Deinococcus apachensis"],["NCBITaxon%3A1121377","Deinococcus apachensis DSM 19763"]]},{"id":"NCBITaxon:1121381","l":"Deinococcus marmoris DSM 12784","na":3,"nb":2,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"],["dry-valley-envo-00000128.html","dry valley"],["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A249408","Deinococcus marmoris"],["NCBITaxon%3A1121381","Deinococcus marmoris DSM 12784"]]},{"id":"NCBITaxon:1121391","l":"Desulfacinum infernum DSM 9756","na":3,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A35837","Desulfacinum infernum"],["NCBITaxon%3A1121391","Desulfacinum infernum DSM 9756"]]},{"id":"NCBITaxon:1121393","l":"Desulfatibacillum alkenivorans DSM 16219","na":3,"nb":2,"a":[["sewage-plant-envo-00003043.html","sewage plant"],["waste-water-envo-00002001.html","waste water"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A259354","Desulfatibacillum alkenivorans"],["NCBITaxon%3A1121393","Desulfatibacillum alkenivorans DSM 16219"]]},{"id":"NCBITaxon:1121403","l":"Desulfogranum japonicum DSM 18378","na":3,"nb":2,"a":[["brackish-water-body-envo-01001321.html","brackish water body"],["estuary-envo-00000045.html","estuary"],["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["NCBITaxon%3A231447","Desulfogranum japonicum"],["NCBITaxon%3A1121403","Desulfogranum japonicum DSM 18378"]]},{"id":"NCBITaxon:1121406","l":"Desulfocurvus vexinensis DSM 17965","na":3,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["groundwater-envo-01001004.html","groundwater"],["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A399548","Desulfocurvus vexinensis"],["NCBITaxon%3A1121406","Desulfocurvus vexinensis DSM 17965"]]},{"id":"NCBITaxon:1121416","l":"Desulfopila aestuarii DSM 18488","na":3,"nb":2,"a":[["brackish-water-body-envo-01001321.html","brackish water body"],["estuary-envo-00000045.html","estuary"],["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["NCBITaxon%3A231440","Desulfopila aestuarii"],["NCBITaxon%3A1121416","Desulfopila aestuarii DSM 18488"]]},{"id":"NCBITaxon:1121423","l":"Desulfofalx alkaliphila DSM 12257","na":3,"nb":2,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["fecal-environment-envo-01001029.html","fecal environment"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A105483","Desulfofalx alkaliphila"],["NCBITaxon%3A1121423","Desulfofalx alkaliphila DSM 12257"]]},{"id":"NCBITaxon:1121429","l":"Desulforamulus putei DSM 12395","na":3,"nb":2,"a":[["ocean-trench-envo-00000275.html","ocean trench"],["drainage-basin-envo-00000291.html","drainage basin"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A74701","Desulforamulus putei"],["NCBITaxon%3A1121429","Desulforamulus putei DSM 12395"]]},{"id":"NCBITaxon:1121430","l":"Desulfofundulus thermocisternus DSM 10259","na":3,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A42471","Desulfofundulus thermocisternus"],["NCBITaxon%3A1121430","Desulfofundulus thermocisternus DSM 10259"]]},{"id":"NCBITaxon:1121431","l":"Desulfallas thermosapovorans DSM 6562","na":3,"nb":2,"a":[["agricultural-waste-material-envo-01000371.html","agricultural waste material"],["compost-envo-00002170.html","compost"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A58137","Desulfallas thermosapovorans"],["NCBITaxon%3A1121431","Desulfallas thermosapovorans DSM 6562"]]},{"id":"NCBITaxon:1121436","l":"Oleidesulfovibrio alaskensis DSM 16109","na":3,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A58180","Oleidesulfovibrio alaskensis"],["NCBITaxon%3A1121436","Oleidesulfovibrio alaskensis DSM 16109"]]},{"id":"NCBITaxon:1121463","l":"Desulfobaculum senezii DSM 8436","na":3,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"],["pond-envo-00000033.html","pond"],["saline-evaporation-pond-envo-00000055.html","saline evaporation pond"]],"b":[["NCBITaxon%3A76007","Desulfobaculum senezii"],["NCBITaxon%3A1121463","Desulfobaculum senezii DSM 8436"]]},{"id":"NCBITaxon:1121472","l":"Desulfurispora thermophila DSM 16022","na":3,"nb":2,"a":[["bioreactor-envo-00002123.html","bioreactor"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A265470","Desulfurispora thermophila"],["NCBITaxon%3A1121472","Desulfurispora thermophila DSM 16022"]]},{"id":"NCBITaxon:1121481","l":"Dyadobacter alkalitolerans DSM 23607","na":3,"nb":2,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"],["rock-envo-00001995.html","rock"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A492736","Dyadobacter alkalitolerans"],["NCBITaxon%3A1121481","Dyadobacter alkalitolerans DSM 23607"]]},{"id":"NCBITaxon:1121875","l":"Eudoraea adriatica DSM 19308","na":3,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"],["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A446681","Eudoraea adriatica"],["NCBITaxon%3A1121875","Eudoraea adriatica DSM 19308"]]},{"id":"NCBITaxon:1121881","l":"Ferrithrix thermotolerans DSM 19514","na":3,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"],["iucn-national-park-envo-00000367.html","IUCN national park"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A209649","Ferrithrix thermotolerans"],["NCBITaxon%3A1121881","Ferrithrix thermotolerans DSM 19514"]]},{"id":"NCBITaxon:1121890","l":"Flavobacterium frigidarium DSM 17623","na":3,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"],["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A99286","Flavobacterium frigidarium"],["NCBITaxon%3A1121890","Flavobacterium frigidarium DSM 17623"]]},{"id":"NCBITaxon:1121919","l":"Geosporobacter subterraneus DSM 17957","na":3,"nb":2,"a":[["ocean-trench-envo-00000275.html","ocean trench"],["drainage-basin-envo-00000291.html","drainage basin"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A390806","Geosporobacter subterraneus"],["NCBITaxon%3A1121919","Geosporobacter subterraneus DSM 17957"]]},{"id":"NCBITaxon:1121920","l":"Geothrix fermentans DSM 14018","na":3,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["oil-envo-00002985.html","oil"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A44676","Geothrix fermentans"],["NCBITaxon%3A1121920","Geothrix fermentans DSM 14018"]]},{"id":"NCBITaxon:1121935","l":"Hahella ganghwensis DSM 17046","na":3,"nb":2,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"],["island-envo-00000098.html","island"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A286420","Hahella ganghwensis"],["NCBITaxon%3A1121935","Hahella ganghwensis DSM 17046"]]},{"id":"NCBITaxon:1121942","l":"Modicisalibacter ilicicola DSM 19980","na":3,"nb":2,"a":[["pond-envo-00000033.html","pond"],["saline-evaporation-pond-envo-00000055.html","saline evaporation pond"],["mediterranean-envo-01000207.html","mediterranean"]],"b":[["NCBITaxon%3A480814","Modicisalibacter ilicicola"],["NCBITaxon%3A1121942","Modicisalibacter ilicicola DSM 19980"]]},{"id":"NCBITaxon:1121950","l":"Hespellia stercorisuis DSM 15480","na":3,"nb":2,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["fecal-environment-envo-01001029.html","fecal environment"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A180311","Hespellia stercorisuis"],["NCBITaxon%3A1121950","Hespellia stercorisuis DSM 15480"]]},{"id":"NCBITaxon:1121952","l":"Humibacter albus DSM 18994","na":3,"nb":2,"a":[["compost-envo-00002170.html","compost"],["sewage-envo-00002018.html","sewage"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A427754","Humibacter albus"],["NCBITaxon%3A1121952","Humibacter albus DSM 18994"]]},{"id":"NCBITaxon:1121959","l":"Hymenobacter psychrotolerans DSM 18569","na":3,"nb":2,"a":[["drainage-basin-envo-00000291.html","drainage basin"],["permafrost-envo-00000134.html","permafrost"],["plateau-envo-00000182.html","plateau"]],"b":[["NCBITaxon%3A344998","Hymenobacter psychrotolerans"],["NCBITaxon%3A1121959","Hymenobacter psychrotolerans DSM 18569"]]},{"id":"NCBITaxon:1122124","l":"Pseudidiomarina sediminum DSM 21906","na":3,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"],["undersea-feature-envo-00000104.html","undersea feature"]],"b":[["NCBITaxon%3A431675","Pseudidiomarina sediminum"],["NCBITaxon%3A1122124","Pseudidiomarina sediminum DSM 21906"]]},{"id":"NCBITaxon:1122133","l":"Kaistia soli DSM 19436","na":3,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A446684","Kaistia soli"],["NCBITaxon%3A1122133","Kaistia soli DSM 19436"]]},{"id":"NCBITaxon:1122134","l":"Kangiella aquimarina DSM 16071","na":3,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"],["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["NCBITaxon%3A261965","Kangiella aquimarina"],["NCBITaxon%3A1122134","Kangiella aquimarina DSM 16071"]]},{"id":"NCBITaxon:1122143","l":"Lacticigenium naphthae DSM 19658","na":3,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A515351","Lacticigenium naphthae"],["NCBITaxon%3A1122143","Lacticigenium naphthae DSM 19658"]]},{"id":"NCBITaxon:1122147","l":"Schleiferilactobacillus harbinensis DSM 16991","na":3,"nb":2,"a":[["food-product-foodon-00001002.html","food product"],["immune-system-bto-0005810.html","immune system"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A304207","Schleiferilactobacillus harbinensis"],["NCBITaxon%3A1122147","Schleiferilactobacillus harbinensis DSM 16991"]]},{"id":"NCBITaxon:1122148","l":"Fructilactobacillus lindneri DSM 20690 = JCM 11027","na":3,"nb":2,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["food-product-foodon-00001002.html","food product"],["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A53444","Fructilactobacillus lindneri"],["NCBITaxon%3A1122148","Fructilactobacillus lindneri DSM 20690 = JCM 11027"]]},{"id":"NCBITaxon:1122158","l":"Leeia oryzae DSM 17879","na":3,"nb":2,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A356662","Leeia oryzae"],["NCBITaxon%3A1122158","Leeia oryzae DSM 17879"]]},{"id":"NCBITaxon:1122176","l":"Lewinella cohaerens DSM 23179","na":3,"nb":2,"a":[["beach-envo-00000091.html","beach"],["intertidal-zone-envo-00000316.html","intertidal zone"],["sea-sand-envo-00002118.html","sea sand"]],"b":[["NCBITaxon%3A70995","Lewinella cohaerens"],["NCBITaxon%3A1122176","Lewinella cohaerens DSM 23179"]]},{"id":"NCBITaxon:1122197","l":"Marinobacter daepoensis DSM 16072","na":3,"nb":2,"a":[["beach-envo-00000091.html","beach"],["intertidal-zone-envo-00000316.html","intertidal zone"],["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A262077","Marinobacter daepoensis"],["NCBITaxon%3A1122197","Marinobacter daepoensis DSM 16072"]]},{"id":"NCBITaxon:1122211","l":"Marinospirillum insulare DSM 21763","na":3,"nb":2,"a":[["food-product-foodon-00001002.html","food product"],["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"],["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A217169","Marinospirillum insulare"],["NCBITaxon%3A1122211","Marinospirillum insulare DSM 21763"]]},{"id":"NCBITaxon:1122233","l":"Methermicoccus shengliensis DSM 18856","na":3,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A660064","Methermicoccus shengliensis"],["NCBITaxon%3A1122233","Methermicoccus shengliensis DSM 18856"]]},{"id":"NCBITaxon:1122599","l":"Neptunomonas japonica DSM 18939","na":3,"nb":2,"a":[["intertidal-zone-envo-00000316.html","intertidal zone"],["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A417574","Neptunomonas japonica"],["NCBITaxon%3A1122599","Neptunomonas japonica DSM 18939"]]},{"id":"NCBITaxon:1122612","l":"Novosphingobium acidiphilum DSM 19966","na":3,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A505248","Novosphingobium acidiphilum"],["NCBITaxon%3A1122612","Novosphingobium acidiphilum DSM 19966"]]},{"id":"NCBITaxon:1122614","l":"Pseudooceanicola nanhaiensis DSM 18065","na":3,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"],["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A375761","Pseudooceanicola nanhaiensis"],["NCBITaxon%3A1122614","Pseudooceanicola nanhaiensis DSM 18065"]]},{"id":"NCBITaxon:1122922","l":"Paenibacillus massiliensis subsp. panacisoli DSM 21345","na":2,"nb":3,"a":[["undersea-feature-envo-00000104.html","undersea feature"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A225917","Paenibacillus massiliensis"],["NCBITaxon%3A363858","Paenibacillus massiliensis subsp. panacisoli"],["NCBITaxon%3A1122922","Paenibacillus massiliensis subsp. panacisoli DSM 21345"]]},{"id":"NCBITaxon:1122958","l":"Phenylobacterium composti DSM 19425","na":3,"nb":2,"a":[["compost-envo-00002170.html","compost"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A457173","Phenylobacterium composti"],["NCBITaxon%3A1122958","Phenylobacterium composti DSM 19425"]]},{"id":"NCBITaxon:1123012","l":"Pseudobutyrivibrio xylanivorans DSM 14809","na":3,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"],["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"]],"b":[["NCBITaxon%3A185007","Pseudobutyrivibrio xylanivorans"],["NCBITaxon%3A1123012","Pseudobutyrivibrio xylanivorans DSM 14809"]]},{"id":"NCBITaxon:1123024","l":"Pseudonocardia asaccharolytica DSM 44247 = NBRC 16224","na":3,"nb":2,"a":[["compost-envo-00002170.html","compost"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"]],"b":[["NCBITaxon%3A54010","Pseudonocardia asaccharolytica"],["NCBITaxon%3A1123024","Pseudonocardia asaccharolytica DSM 44247 = NBRC 16224"]]},{"id":"NCBITaxon:1123226","l":"Saccharibacillus kuerlensis DSM 22868","na":3,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"],["desert-biome-envo-01000179.html","desert biome"],["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A459527","Saccharibacillus kuerlensis"],["NCBITaxon%3A1123226","Saccharibacillus kuerlensis DSM 22868"]]},{"id":"NCBITaxon:1123239","l":"Salsuginibacillus kocurii DSM 18087","na":3,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"],["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A427078","Salsuginibacillus kocurii"],["NCBITaxon%3A1123239","Salsuginibacillus kocurii DSM 18087"]]},{"id":"NCBITaxon:1123258","l":"","na":3,"nb":2,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"],["oil-envo-00002985.html","oil"]],"b":[["NCBITaxon%3A359359","Smaragdicoccus niigatensis"],["NCBITaxon%3A1123258","Smaragdicoccus niigatensis DSM 44881 = NBRC 103563"]]},{"id":"NCBITaxon:1123317","l":"Streptococcus sobrinus DSM 20742 = ATCC 33478","na":3,"nb":2,"a":[["biofilm-bto-0002690.html","biofilm"],["dental-plaque-uberon-0016482.html","dental plaque"],["tooth-bto-0000397.html","tooth"]],"b":[["NCBITaxon%3A1310","Streptococcus sobrinus"],["NCBITaxon%3A1123317","Streptococcus sobrinus DSM 20742 = ATCC 33478"]]},{"id":"NCBITaxon:1123350","l":"Tepidibacter thalassicus DSM 15285","na":3,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A214905","Tepidibacter thalassicus"],["NCBITaxon%3A1123350","Tepidibacter thalassicus DSM 15285"]]},{"id":"NCBITaxon:1123501","l":"Wenxinia marina DSM 24838","na":3,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"],["chemically-enriched-sediment-envo-00002114.html","chemically enriched sediment"],["oil-envo-00002985.html","oil"]],"b":[["NCBITaxon%3A390641","Wenxinia marina"],["NCBITaxon%3A1123501","Wenxinia marina DSM 24838"]]},{"id":"NCBITaxon:1123503","l":"Woodsholea maritima DSM 17123","na":3,"nb":2,"a":[["brackish-water-body-envo-01001321.html","brackish water body"],["estuary-envo-00000045.html","estuary"],["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["NCBITaxon%3A240237","Woodsholea maritima"],["NCBITaxon%3A1123503","Woodsholea maritima DSM 17123"]]},{"id":"NCBITaxon:1123517","l":"Thiomicrospira pelophila DSM 1534","na":3,"nb":2,"a":[["brackish-water-body-envo-01001321.html","brackish water body"],["estuary-envo-00000045.html","estuary"],["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["NCBITaxon%3A934","Thiomicrospira pelophila"],["NCBITaxon%3A1123517","Thiomicrospira pelophila DSM 1534"]]},{"id":"NCBITaxon:1150864","l":"Micromonospora lupini str. Lupac 08","na":3,"nb":2,"a":[["carcinoma-cell-bto-0000176.html","carcinoma cell"],["colonic-cancer-cell-bto-0000586.html","colonic cancer cell"],["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A285679","Micromonospora lupini"],["NCBITaxon%3A1150864","Micromonospora lupini str. Lupac 08"]]},{"id":"NCBITaxon:115335","l":"Actinomadura rubrobrunea","na":2,"nb":3,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A115335","Actinomadura rubrobrunea"],["NCBITaxon%3A1220567","Actinomadura rubrobrunea NBRC 15275"],["NCBITaxon%3A58112","Actinomadura viridilutea"]]},{"id":"NCBITaxon:115781","l":"Desulfotignum balticum","na":3,"nb":2,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A115781","Desulfotignum balticum"],["NCBITaxon%3A1304886","Desulfotignum balticum DSM 7044"]]},{"id":"NCBITaxon:117506","l":"Comamonas denitrificans","na":3,"nb":2,"a":[["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["NCBITaxon%3A117506","Comamonas denitrificans"],["NCBITaxon%3A1713625","Marinococcus salis"]]},{"id":"NCBITaxon:117681","l":"Pseudomonas gingeri","na":3,"nb":2,"a":[["lake-envo-00000020.html","lake"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"]],"b":[["NCBITaxon%3A117681","Pseudomonas gingeri"],["NCBITaxon%3A707248","Pseudomonas gingeri NCPPB 3146 = LMG 5327"]]},{"id":"NCBITaxon:1177117","l":"Vreelandella stevensii S18214","na":3,"nb":2,"a":[["biofilm-bto-0002690.html","biofilm"],["brain-bto-0000142.html","brain"],["heart-bto-0000562.html","heart"]],"b":[["NCBITaxon%3A502821","Vreelandella stevensii"],["NCBITaxon%3A1177117","Vreelandella stevensii S18214"]]},{"id":"NCBITaxon:1212491","l":"Legionella fallonii LLAP-10","na":3,"nb":2,"a":[["flagellum-bto-0002292.html","flagellum"],["lung-bto-0000763.html","lung"],["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A96230","Legionella fallonii"],["NCBITaxon%3A1212491","Legionella fallonii LLAP-10"]]},{"id":"NCBITaxon:121428","l":"Sphingobium xenophagum","na":2,"nb":3,"a":[["sludge-envo-00002044.html","sludge"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A121428","Sphingobium xenophagum"],["NCBITaxon%3A1219037","Sphingobium xenophagum NBRC 107872"],["NCBITaxon%3A1192759","Sphingobium xenophagum QYY"]]},{"id":"NCBITaxon:1215095","l":"Pseudomonas chlororaphis subsp. aureofaciens NBRC 3521","na":2,"nb":3,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A587753","Pseudomonas chlororaphis"],["NCBITaxon%3A587851","Pseudomonas chlororaphis subsp. aureofaciens"],["NCBITaxon%3A1215095","Pseudomonas chlororaphis subsp. aureofaciens NBRC 3521"]]},{"id":"NCBITaxon:1220595","l":"Geobacillus kaustophilus NBRC 102445","na":3,"nb":2,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A1462","Geobacillus kaustophilus"],["NCBITaxon%3A1220595","Geobacillus kaustophilus NBRC 102445"]]},{"id":"NCBITaxon:1223541","l":"Gordonia hydrophobica NBRC 16057","na":3,"nb":2,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A40516","Gordonia hydrophobica"],["NCBITaxon%3A1223541","Gordonia hydrophobica NBRC 16057"]]},{"id":"NCBITaxon:123899","l":"Bordetella trematum","na":2,"nb":3,"a":[["bone-element-uberon-0001474.html","bone element"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["NCBITaxon%3A123899","Bordetella trematum"],["NCBITaxon%3A1392839","Bordetella trematum CCUG 13902"],["NCBITaxon%3A1496","Clostridioides difficile"]]},{"id":"NCBITaxon:1238993","l":"Mycoplasmoides pneumoniae M129-B7","na":3,"nb":2,"a":[["biofilm-bto-0002690.html","biofilm"],["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A2104","Mycoplasmoides pneumoniae"],["NCBITaxon%3A1238993","Mycoplasmoides pneumoniae M129-B7"]]},{"id":"NCBITaxon:1255632","l":"Ornithinibacillus bavariensis CIP 109287","na":3,"nb":2,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A545502","Ornithinibacillus bavariensis"],["NCBITaxon%3A1255632","Ornithinibacillus bavariensis CIP 109287"]]},{"id":"NCBITaxon:1257041","l":"Streptococcus mutans ATCC 25175","na":2,"nb":3,"a":[["biofilm-bto-0002690.html","biofilm"],["tooth-bto-0000397.html","tooth"]],"b":[["NCBITaxon%3A1309","Streptococcus mutans"],["NCBITaxon%3A1257041","Streptococcus mutans ATCC 25175"],["NCBITaxon%3A1123310","Streptococcus mutans DSM 20523"]]},{"id":"NCBITaxon:1266720","l":"Neomoorella stamsii","na":2,"nb":3,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A539813","Enterobacter mori"],["NCBITaxon%3A980518","Enterobacter mori LMG 25706"],["NCBITaxon%3A1266720","Neomoorella stamsii"]]},{"id":"NCBITaxon:1278307","l":"Psychromonas ossibalaenae ATCC BAA-1528","na":3,"nb":2,"a":[["intertidal-zone-envo-00000316.html","intertidal zone"],["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A444922","Psychromonas ossibalaenae"],["NCBITaxon%3A1278307","Psychromonas ossibalaenae ATCC BAA-1528"]]},{"id":"NCBITaxon:1280706","l":"Selenomonas ruminantium subsp. ruminantium ATCC 12561","na":2,"nb":3,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A971","Pseudoselenomonas ruminantium"],["NCBITaxon%3A114196","Selenomonas ruminantium subsp. ruminantium"],["NCBITaxon%3A1280706","Selenomonas ruminantium subsp. ruminantium ATCC 12561"]]},{"id":"NCBITaxon:1281","l":"Staphylococcus carnosus","na":2,"nb":3,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A1281","Staphylococcus carnosus"],["NCBITaxon%3A1158532","Staphylococcus carnosus M0504"],["NCBITaxon%3A396513","Staphylococcus carnosus subsp. carnosus TM300"]]},{"id":"NCBITaxon:1295","l":"Staphylococcus schleiferi","na":2,"nb":3,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["foot-bto-0000476.html","foot"]],"b":[["NCBITaxon%3A74706","Staphylococcus coagulans"],["NCBITaxon%3A1295","Staphylococcus schleiferi"],["NCBITaxon%3A74707","Staphylococcus schleiferi subsp. schleiferi"]]},{"id":"NCBITaxon:1322345","l":"Escherichia coli ATCC 25922","na":2,"nb":3,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1322345","Escherichia coli ATCC 25922"],["NCBITaxon%3A1236527","Escherichia coli JCM 5491"]]},{"id":"NCBITaxon:133552","l":"Methylocapsa acidiphila","na":3,"nb":2,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A133552","Methylocapsa acidiphila"],["NCBITaxon%3A395964","Methylocapsa acidiphila B2"]]},{"id":"NCBITaxon:133924","l":"Leisingera methylohalidivorans","na":3,"nb":2,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A133924","Leisingera methylohalidivorans"],["NCBITaxon%3A999552","Leisingera methylohalidivorans DSM 14336"]]},{"id":"NCBITaxon:136093","l":"Globicatella sulfidifaciens","na":2,"nb":3,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A62321","Globicatella sp."],["NCBITaxon%3A136093","Globicatella sulfidifaciens"],["NCBITaxon%3A1121925","Globicatella sulfidifaciens DSM 15739"]]},{"id":"NCBITaxon:13684","l":"Parastagonospora nodorum","na":2,"nb":3,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["desert-sand-envo-00005800.html","desert sand"]],"b":[["NCBITaxon%3A13684","Parastagonospora nodorum"],["NCBITaxon%3A1211001","Parastagonospora nodorum Sn4"],["NCBITaxon%3A1211002","Parastagonospora nodorum Sn79"]]},{"id":"NCBITaxon:137722","l":"Azospirillum sp. B510","na":3,"nb":2,"a":[["pond-water-envo-00002228.html","pond water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["NCBITaxon%3A34012","Azospirillum sp."],["NCBITaxon%3A137722","Azospirillum sp. B510"]]},{"id":"NCBITaxon:1383","l":"Lancefieldella rimae","na":3,"nb":2,"a":[["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"],["sgs-cell-bto-0001210.html","SGS cell"]],"b":[["NCBITaxon%3A1383","Lancefieldella rimae"],["NCBITaxon%3A553184","Lancefieldella rimae ATCC 49626"]]},{"id":"NCBITaxon:1408433","l":"Crocinitomix catalasitica ATCC 23190","na":3,"nb":2,"a":[["beach-envo-00000091.html","beach"],["intertidal-zone-envo-00000316.html","intertidal zone"],["sea-sand-envo-00002118.html","sea sand"]],"b":[["NCBITaxon%3A184607","Crocinitomix catalasitica"],["NCBITaxon%3A1408433","Crocinitomix catalasitica ATCC 23190"]]},{"id":"NCBITaxon:1408441","l":"Helicobacter bilis ATCC 51630","na":3,"nb":2,"a":[["epithelium-bto-0000416.html","epithelium"],["ht-29-cell-bto-0000182.html","HT-29 cell"],["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"]]},{"id":"NCBITaxon:1451","l":"Paenibacillus amylolyticus","na":3,"nb":2,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["NCBITaxon%3A1451","Paenibacillus amylolyticus"],["NCBITaxon%3A59846","Paenibacillus chibensis"]]},{"id":"NCBITaxon:145996","l":"","na":3,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"],["mineral-material-envo-01000256.html","mineral material"],["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A2030","Kibdelosporangium aridum"],["NCBITaxon%3A145996","Kibdelosporangium aridum subsp. largum"]]},{"id":"NCBITaxon:146919","l":"Salinibacter ruber","na":2,"nb":3,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A146919","Salinibacter ruber"],["NCBITaxon%3A309807","Salinibacter ruber DSM 13855"],["NCBITaxon%3A761659","Salinibacter ruber M8"]]},{"id":"NCBITaxon:148814","l":"Apilactobacillus kunkeei","na":2,"nb":3,"a":[["fruit-bto-0000486.html","fruit"],["honey-bto-0000605.html","honey"]],"b":[["NCBITaxon%3A148814","Apilactobacillus kunkeei"],["NCBITaxon%3A1423768","Apilactobacillus kunkeei DSM 12361 = ATCC 700308"],["NCBITaxon%3A1419324","Apilactobacillus kunkeei EFB6"]]},{"id":"NCBITaxon:1511749","l":"Geobacillus thermodenitrificans subsp. thermodenitrificans","na":2,"nb":3,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A33940","Geobacillus thermodenitrificans"],["NCBITaxon%3A1511749","Geobacillus thermodenitrificans subsp. thermodenitrificans"],["NCBITaxon%3A1413215","Geobacillus thermodenitrificans subsp. thermodenitrificans DSM 465"]]},{"id":"NCBITaxon:152500","l":"Burkholderia dolosa","na":2,"nb":3,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A152500","Burkholderia dolosa"],["NCBITaxon%3A350701","Burkholderia dolosa AU0158"],["NCBITaxon%3A1385930","Burkholderia dolosa PC543"]]},{"id":"NCBITaxon:153376","l":"Pseudonocardia zijingensis","na":3,"nb":2,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A682979","Microlunatus parietis"],["NCBITaxon%3A153376","Pseudonocardia zijingensis"]]},{"id":"NCBITaxon:153496","l":"Kozakia baliensis","na":3,"nb":2,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"],["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A153496","Kozakia baliensis"],["NCBITaxon%3A1307929","Kozakia baliensis NRIC 0488"]]},{"id":"NCBITaxon:1548018","l":"Helicobacter saguini","na":2,"nb":3,"a":[["epithelium-bto-0000416.html","epithelium"],["ht-29-cell-bto-0000182.html","HT-29 cell"]],"b":[["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"],["NCBITaxon%3A1548018","Helicobacter saguini"]]},{"id":"NCBITaxon:1548147","l":"Helicobacter sp. MIT 03-1614","na":2,"nb":3,"a":[["epithelium-bto-0000416.html","epithelium"],["ht-29-cell-bto-0000182.html","HT-29 cell"]],"b":[["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"],["NCBITaxon%3A1548147","Helicobacter sp. MIT 03-1614"]]},{"id":"NCBITaxon:1548148","l":"Helicobacter sp. MIT 03-1616","na":2,"nb":3,"a":[["epithelium-bto-0000416.html","epithelium"],["ht-29-cell-bto-0000182.html","HT-29 cell"]],"b":[["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"],["NCBITaxon%3A1548148","Helicobacter sp. MIT 03-1616"]]},{"id":"NCBITaxon:1548149","l":"Helicobacter sp. MIT 05-5293","na":2,"nb":3,"a":[["epithelium-bto-0000416.html","epithelium"],["ht-29-cell-bto-0000182.html","HT-29 cell"]],"b":[["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"],["NCBITaxon%3A1548149","Helicobacter sp. MIT 05-5293"]]},{"id":"NCBITaxon:1548150","l":"Helicobacter sp. MIT 05-5294","na":2,"nb":3,"a":[["epithelium-bto-0000416.html","epithelium"],["ht-29-cell-bto-0000182.html","HT-29 cell"]],"b":[["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"],["NCBITaxon%3A1548150","Helicobacter sp. MIT 05-5294"]]},{"id":"NCBITaxon:1548151","l":"Helicobacter sp. MIT 11-5569","na":2,"nb":3,"a":[["epithelium-bto-0000416.html","epithelium"],["ht-29-cell-bto-0000182.html","HT-29 cell"]],"b":[["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"],["NCBITaxon%3A1548151","Helicobacter sp. MIT 11-5569"]]},{"id":"NCBITaxon:1548153","l":"Campylobacter sp. MIT 97-5078","na":2,"nb":3,"a":[["epithelium-bto-0000416.html","epithelium"],["ht-29-cell-bto-0000182.html","HT-29 cell"]],"b":[["NCBITaxon%3A1548153","Campylobacter sp. MIT 97-5078"],["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"]]},{"id":"NCBITaxon:1553","l":"Clostridium tetanomorphum","na":2,"nb":3,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"]],"b":[["NCBITaxon%3A1494","Clostridium cochlearium"],["NCBITaxon%3A1553","Clostridium tetanomorphum"],["NCBITaxon%3A1230342","Clostridium tetanomorphum DSM 665"]]},{"id":"NCBITaxon:1605","l":"Ligilactobacillus animalis","na":2,"nb":3,"a":[["animal-litter-envo-00002191.html","animal litter"],["cropland-biome-envo-01000245.html","cropland biome"]],"b":[["NCBITaxon%3A1591","Lactobacillus sp."],["NCBITaxon%3A1605","Ligilactobacillus animalis"],["NCBITaxon%3A930942","Ligilactobacillus animalis KCTC 3501 = DSM 20602"]]},{"id":"NCBITaxon:161493","l":"Anaeromyxobacter dehalogenans","na":2,"nb":3,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A161493","Anaeromyxobacter dehalogenans"],["NCBITaxon%3A455488","Anaeromyxobacter dehalogenans 2CP-1"],["NCBITaxon%3A290397","Anaeromyxobacter dehalogenans 2CP-C"]]},{"id":"NCBITaxon:1629","l":"Weissella viridescens","na":3,"nb":2,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A1896315","Weissella sp."],["NCBITaxon%3A1629","Weissella viridescens"]]},{"id":"NCBITaxon:1658","l":"Actinomyces bovis","na":2,"nb":3,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A1658","Actinomyces bovis"],["NCBITaxon%3A29317","Actinomyces sp."],["NCBITaxon%3A1648","Erysipelothrix rhusiopathiae"]]},{"id":"NCBITaxon:1677920","l":"Helicobacter jaachi","na":2,"nb":3,"a":[["epithelium-bto-0000416.html","epithelium"],["ht-29-cell-bto-0000182.html","HT-29 cell"]],"b":[["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"],["NCBITaxon%3A1677920","Helicobacter jaachi"]]},{"id":"NCBITaxon:168275","l":"Psychromonas arctica","na":3,"nb":2,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A168275","Psychromonas arctica"],["NCBITaxon%3A1123036","Psychromonas arctica DSM 14288"]]},{"id":"NCBITaxon:168471","l":"Laribacter hongkongensis","na":2,"nb":3,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"]],"b":[["NCBITaxon%3A168471","Laribacter hongkongensis"],["NCBITaxon%3A1122157","Laribacter hongkongensis DSM 14985"],["NCBITaxon%3A557598","Laribacter hongkongensis HLHK9"]]},{"id":"NCBITaxon:1713","l":"Oerskovia turbata","na":2,"nb":3,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A162169","Oerskovia jenensis"],["NCBITaxon%3A1713","Oerskovia turbata"],["NCBITaxon%3A1322249","Oerskovia turbata NBRC 15015"]]},{"id":"NCBITaxon:176299","l":"Agrobacterium fabrum (strain C58 / ATCC 33970)","na":2,"nb":3,"a":[["human-construction-envo-00000070.html","human construction"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["NCBITaxon%3A1176649","Agrobacterium fabrum"],["NCBITaxon%3A176299","Agrobacterium fabrum str. C58"],["NCBITaxon%3A362","Agrobacterium radiobacter"]]},{"id":"NCBITaxon:1785","l":"Mycobacterium sp.","na":2,"nb":3,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"],["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["NCBITaxon%3A722731","Mycobacterium shigaense"],["NCBITaxon%3A1785","Mycobacterium sp."],["NCBITaxon%3A1792835","Mycolicibacter icosiumassiliensis"]]},{"id":"NCBITaxon:1796613","l":"Bacteroides caecimuris","na":3,"nb":2,"a":[["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["secretion-bto-0002979.html","secretion"]],"b":[["NCBITaxon%3A1796613","Bacteroides caecimuris"],["NCBITaxon%3A2516959","Bacteroides caecimuris NM63_1-25"]]},{"id":"NCBITaxon:180282","l":"Delftia tsuruhatensis","na":2,"nb":3,"a":[["surface-water-envo-00002042.html","surface water"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["NCBITaxon%3A180282","Delftia tsuruhatensis"],["NCBITaxon%3A1280939","Delftia tsuruhatensis ARB"],["NCBITaxon%3A1220577","Delftia tsuruhatensis NBRC 16741"]]},{"id":"NCBITaxon:180295","l":"Atopostipes suicloacalis","na":3,"nb":2,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["skin-environment-envo-2100003.html","skin environment"],["cropland-biome-envo-01000245.html","cropland biome"]],"b":[["NCBITaxon%3A180295","Atopostipes suicloacalis"],["NCBITaxon%3A1121025","Atopostipes suicloacalis DSM 15692"]]},{"id":"NCBITaxon:185008","l":"Butyrivibrio hungatei","na":2,"nb":3,"a":[["animal-habitation-envo-00005803.html","animal habitation"],["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["NCBITaxon%3A185008","Butyrivibrio hungatei"],["NCBITaxon%3A1121132","Butyrivibrio hungatei DSM 14810"],["NCBITaxon%3A877422","Butyrivibrio hungatei NK4A153"]]},{"id":"NCBITaxon:185294","l":"Segatella paludivivens","na":3,"nb":2,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["research-facility-envo-00000469.html","research facility"]],"b":[["NCBITaxon%3A185294","Segatella paludivivens"],["NCBITaxon%3A1122990","Segatella paludivivens DSM 17968 = JCM 13650"]]},{"id":"NCBITaxon:188908","l":"Oleispira antarctica","na":3,"nb":2,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A188908","Oleispira antarctica"],["NCBITaxon%3A698738","Oleispira antarctica RB-8"]]},{"id":"NCBITaxon:190304","l":"","na":2,"nb":3,"a":[["fibroblast-bto-0000452.html","fibroblast"],["gingival-epithelium-bto-0004998.html","gingival epithelium"]],"b":[["NCBITaxon%3A851","Fusobacterium nucleatum"],["NCBITaxon%3A76856","Fusobacterium nucleatum subsp. nucleatum"],["NCBITaxon%3A190304","Fusobacterium nucleatum subsp. nucleatum ATCC 25586"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":3,"nb":2,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A1928","Streptomyces rochei"],["NCBITaxon%3A885435","Streptomyces rochei subsp. volubilis"]]},{"id":"NCBITaxon:197222","l":"Paraglaciecola mesophila","na":3,"nb":2,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A197222","Paraglaciecola mesophila"],["NCBITaxon%3A1128912","Paraglaciecola mesophila KMM 241"]]},{"id":"NCBITaxon:2026","l":"Thermoactinomyces vulgaris","na":2,"nb":3,"a":[["air-conditioning-unit-envo-00002874.html","air conditioning unit"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"]],"b":[["NCBITaxon%3A58112","Actinomadura viridilutea"],["NCBITaxon%3A37482","Laceyella sacchari"],["NCBITaxon%3A2026","Thermoactinomyces vulgaris"]]},{"id":"NCBITaxon:202747","l":"Sulfurimonas autotrophica","na":3,"nb":2,"a":[["black-smoker-envo-00000218.html","black smoker"],["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["volcanic-rock-envo-00002015.html","volcanic rock"]],"b":[["NCBITaxon%3A202747","Sulfurimonas autotrophica"],["NCBITaxon%3A563040","Sulfurimonas autotrophica DSM 16294"]]},{"id":"NCBITaxon:2108","l":"Mycoplasma sp.","na":3,"nb":2,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["post-mortem-habitatmech-bacdive-4e5b25adcb.html","Post-mortem"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A2499220","Mycoplasma enhydrae"],["NCBITaxon%3A2108","Mycoplasma sp."]]},{"id":"NCBITaxon:213810","l":"Ruminococcus champanellensis 18P13 = JCM 17042","na":3,"nb":2,"a":[["environmental-feature-envo-00002297.html","environmental feature"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["pig-manure-envo-00003860.html","pig manure"]],"b":[["NCBITaxon%3A1161942","Ruminococcus champanellensis"],["NCBITaxon%3A213810","Ruminococcus champanellensis 18P13 = JCM 17042"]]},{"id":"NCBITaxon:214856","l":"Alistipes finegoldii","na":2,"nb":3,"a":[["environmental-feature-envo-00002297.html","environmental feature"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A214856","Alistipes finegoldii"],["NCBITaxon%3A1263035","Alistipes finegoldii CAG:68"],["NCBITaxon%3A679935","Alistipes finegoldii DSM 17242"]]},{"id":"NCBITaxon:216","l":"Helicobacter muridarum","na":2,"nb":3,"a":[["epithelium-bto-0000416.html","epithelium"],["ht-29-cell-bto-0000182.html","HT-29 cell"]],"b":[["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"],["NCBITaxon%3A216","Helicobacter muridarum"]]},{"id":"NCBITaxon:224999","l":"Tepidanaerobacter syntrophicus","na":3,"nb":2,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A224999","Tepidanaerobacter syntrophicus"],["NCBITaxon%3A1123348","Tepidanaerobacter syntrophicus DSM 15584"]]},{"id":"NCBITaxon:228405","l":"Hyphomonas neptunium ATCC 15444","na":3,"nb":2,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"],["pond-water-envo-00002228.html","pond water"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["NCBITaxon%3A81032","Hyphomonas neptunium"],["NCBITaxon%3A228405","Hyphomonas neptunium ATCC 15444"]]},{"id":"NCBITaxon:232991","l":"Dulcicalothrix desertica PCC 7102","na":3,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"],["desert-area-envo-00000097.html","desert area"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A32056","Dulcicalothrix desertica"],["NCBITaxon%3A232991","Dulcicalothrix desertica PCC 7102"]]},{"id":"NCBITaxon:2353","l":"Flexispira","na":2,"nb":3,"a":[["cecum-mucosa-bto-0000213.html","cecum mucosa"],["mucosa-bto-0000886.html","mucosa"]],"b":[["NCBITaxon%3A2354","Flexispira rappini"],["NCBITaxon%3A98428","Flexispira sp. CDC-H69"],["NCBITaxon%3A1776876","uncultured Flexispira sp."]]},{"id":"NCBITaxon:240015","l":"Acidobacterium capsulatum ATCC 51196","na":3,"nb":2,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A33075","Acidobacterium capsulatum"],["NCBITaxon%3A240015","Acidobacterium capsulatum ATCC 51196"]]},{"id":"NCBITaxon:243161","l":"Chlamydia muridarum (strain MoPn / Nigg)","na":3,"nb":2,"a":[["cervical-adenocarcinoma-cell-bto-0003165.html","cervical adenocarcinoma cell"],["fibroblast-bto-0000452.html","fibroblast"],["hela-229-cell-bto-0005030.html","HeLa-229 cell"]],"b":[["NCBITaxon%3A243161","Chlamydia muridarum str. Nigg"],["NCBITaxon%3A1434773","Chlamydia muridarum str. Nigg CM972"]]},{"id":"NCBITaxon:245188","l":"Yoonia vestfoldensis","na":2,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"],["sandstone-envo-00002055.html","sandstone"]],"b":[["NCBITaxon%3A245188","Yoonia vestfoldensis"],["NCBITaxon%3A1122181","Yoonia vestfoldensis DSM 16212"],["NCBITaxon%3A314232","Yoonia vestfoldensis SKA53"]]},{"id":"NCBITaxon:278137","l":"Mycolicibacterium gilvum Spyr1","na":3,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"],["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A1804","Mycolicibacterium gilvum"],["NCBITaxon%3A278137","Mycolicibacterium gilvum Spyr1"]]},{"id":"NCBITaxon:28042","l":"Saccharopolyspora rectivirgula","na":2,"nb":3,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["desert-sand-envo-00005800.html","desert sand"]],"b":[["NCBITaxon%3A28042","Saccharopolyspora rectivirgula"],["NCBITaxon%3A1283279","Saccharopolyspora rectivirgula DSM 43747"],["NCBITaxon%3A37926","Thermocrispum municipale"]]},{"id":"NCBITaxon:28220","l":"Allobrachymonas denitrificans","na":3,"nb":2,"a":[["factory-envo-01000536.html","factory"],["archeological-site-envo-00000564.html","archeological site"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["NCBITaxon%3A28220","Allobrachymonas denitrificans"],["NCBITaxon%3A1121117","Allobrachymonas denitrificans DSM 15123"]]},{"id":"NCBITaxon:28264","l":"Arcanobacterium haemolyticum","na":2,"nb":3,"a":[["foot-bto-0000476.html","foot"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"]],"b":[["NCBITaxon%3A28264","Arcanobacterium haemolyticum"],["NCBITaxon%3A644284","Arcanobacterium haemolyticum DSM 20595"],["NCBITaxon%3A1328","Streptococcus anginosus"]]},{"id":"NCBITaxon:28454","l":"Sphingobacterium multivorum","na":3,"nb":2,"a":[["mud-envo-01000001.html","mud"],["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A28454","Sphingobacterium multivorum"],["NCBITaxon%3A1123264","Sphingobacterium multivorum DSM 11691"]]},{"id":"NCBITaxon:286730","l":"Alkaliflexus imshenetskii","na":3,"nb":2,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["NCBITaxon%3A286730","Alkaliflexus imshenetskii"],["NCBITaxon%3A927658","Alkaliflexus imshenetskii DSM 15055"]]},{"id":"NCBITaxon:28898","l":"Campylobacter helveticus","na":2,"nb":3,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["NCBITaxon%3A28898","Campylobacter helveticus"],["NCBITaxon%3A1031739","Campylobacter helveticus CCUG 30566"],["NCBITaxon%3A28080","Campylobacter upsaliensis"]]},{"id":"NCBITaxon:290398","l":"","na":3,"nb":2,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["saline-evaporation-pond-envo-00000055.html","saline evaporation pond"],["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A141390","Chromohalobacter israelensis"],["NCBITaxon%3A290398","Chromohalobacter israelensis DSM 3043"]]},{"id":"NCBITaxon:29405","l":"Microlunatus phosphovorus","na":3,"nb":2,"a":[["water-scum-envo-00005794.html","water scum"],["orchard-envo-00000115.html","orchard"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["NCBITaxon%3A29405","Microlunatus phosphovorus"],["NCBITaxon%3A1032480","Microlunatus phosphovorus NM-1"]]},{"id":"NCBITaxon:312153","l":"Polynucleobacter asymbioticus QLW-P1DMWA-1","na":3,"nb":2,"a":[["large-river-biome-envo-00000887.html","large river biome"],["joint-bto-0001686.html","joint"],["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A576611","Polynucleobacter asymbioticus"],["NCBITaxon%3A312153","Polynucleobacter asymbioticus QLW-P1DMWA-1"]]},{"id":"NCBITaxon:313595","l":"Psychroflexus torquis ATCC 700755","na":3,"nb":2,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["coral-reef-envo-00000150.html","coral reef"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["NCBITaxon%3A57029","Psychroflexus torquis"],["NCBITaxon%3A313595","Psychroflexus torquis ATCC 700755"]]},{"id":"NCBITaxon:313606","l":"Microscilla marina ATCC 23134","na":3,"nb":2,"a":[["coral-reef-envo-00000150.html","coral reef"],["liquid-water-envo-00002006.html","liquid water"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["NCBITaxon%3A1027","Microscilla marina"],["NCBITaxon%3A313606","Microscilla marina ATCC 23134"]]},{"id":"NCBITaxon:317655","l":"Sphingopyxis alaskensis RB2256","na":3,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["environmental-material-envo-00010483.html","environmental material"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["NCBITaxon%3A117207","Sphingopyxis alaskensis"],["NCBITaxon%3A317655","Sphingopyxis alaskensis RB2256"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans Pd1222","na":2,"nb":3,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["NCBITaxon%3A266","Paracoccus denitrificans"],["NCBITaxon%3A1302247","Paracoccus denitrificans JCM 21484"],["NCBITaxon%3A318586","Paracoccus denitrificans PD1222"]]},{"id":"NCBITaxon:320497","l":"Neoasaia chiangmaiensis","na":3,"nb":2,"a":[["research-facility-envo-00000469.html","research facility"],["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A320497","Neoasaia chiangmaiensis"],["NCBITaxon%3A1307930","Neoasaia chiangmaiensis NBRC 101099"]]},{"id":"NCBITaxon:326298","l":"Sulfurimonas denitrificans DSM 1251","na":3,"nb":2,"a":[["estuary-envo-00000045.html","estuary"],["underground-water-envo-00005792.html","underground water"],["estuarine-mud-envo-00002160.html","estuarine mud"]],"b":[["NCBITaxon%3A39766","Sulfurimonas denitrificans"],["NCBITaxon%3A326298","Sulfurimonas denitrificans DSM 1251"]]},{"id":"NCBITaxon:326442","l":"Pseudoalteromonas translucida TAC125","na":3,"nb":2,"a":[["bay-envo-00000032.html","bay"],["coastal-water-body-envo-02000049.html","coastal water body"],["saline-water-envo-00002010.html","saline water"]],"b":[["NCBITaxon%3A166935","Pseudoalteromonas translucida"],["NCBITaxon%3A326442","Pseudoalteromonas translucida TAC125"]]},{"id":"NCBITaxon:33028","l":"Staphylococcus saccharolyticus","na":3,"nb":2,"a":[["bone-element-uberon-0001474.html","bone element"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["NCBITaxon%3A45972","Staphylococcus pasteuri"],["NCBITaxon%3A33028","Staphylococcus saccharolyticus"]]},{"id":"NCBITaxon:335543","l":"","na":3,"nb":2,"a":[["anaerobic-sludge-envo-00002129.html","anaerobic sludge"],["submerged-bed-envo-00000501.html","submerged bed"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A119484","Syntrophobacter fumaroxidans"],["NCBITaxon%3A335543","Syntrophobacter fumaroxidans MPOB"]]},{"id":"NCBITaxon:33889","l":"Brevibacterium casei","na":2,"nb":3,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"]],"b":[["NCBITaxon%3A33889","Brevibacterium casei"],["NCBITaxon%3A1255625","Brevibacterium casei CIP 102111"],["NCBITaxon%3A1229781","Brevibacterium casei S18"]]},{"id":"NCBITaxon:340102","l":"","na":3,"nb":2,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"],["solfatara-envo-00000217.html","solfatara"]],"b":[["NCBITaxon%3A121277","Pyrobaculum arsenaticum"],["NCBITaxon%3A340102","Pyrobaculum arsenaticum DSM 13514"]]},{"id":"NCBITaxon:344747","l":"Gimesia maris DSM 8797","na":3,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["shoreline-envo-00000486.html","shoreline"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A122","Gimesia maris"],["NCBITaxon%3A344747","Gimesia maris DSM 8797"]]},{"id":"NCBITaxon:37329","l":"Nocardia farcinica","na":2,"nb":3,"a":[["hospital-envo-00002173.html","hospital"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["NCBITaxon%3A37329","Nocardia farcinica"],["NCBITaxon%3A247156","Nocardia farcinica IFM 10152"],["NCBITaxon%3A1210076","Nocardia farcinica NBRC 15532"]]},{"id":"NCBITaxon:391624","l":"Sulfitobacter indolifex HEL-45","na":3,"nb":2,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["oligotrophic-water-envo-00002223.html","oligotrophic water"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A225422","Sulfitobacter indolifex"],["NCBITaxon%3A391624","Sulfitobacter indolifex HEL-45"]]},{"id":"NCBITaxon:39488","l":"Anaerobutyricum hallii","na":2,"nb":3,"a":[["emulsion-envo-00010506.html","emulsion"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A39488","Anaerobutyricum hallii"],["NCBITaxon%3A1263078","Anaerobutyricum hallii CAG:12"],["NCBITaxon%3A411469","Anaerobutyricum hallii DSM 3353"]]},{"id":"NCBITaxon:395965","l":"Methylocella silvestris BL2","na":3,"nb":2,"a":[["cambisol-envo-00002235.html","cambisol"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A199596","Methylocella silvestris"],["NCBITaxon%3A395965","Methylocella silvestris BL2"]]},{"id":"NCBITaxon:399550","l":"Staphylothermus marinus F1","na":3,"nb":2,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A2280","Staphylothermus marinus"],["NCBITaxon%3A399550","Staphylothermus marinus F1"]]},{"id":"NCBITaxon:401053","l":"Terriglobus saanensis SP1PR4","na":3,"nb":2,"a":[["bulk-soil-envo-00005802.html","bulk soil"],["forested-area-envo-00000111.html","forested area"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A870903","Terriglobus saanensis"],["NCBITaxon%3A401053","Terriglobus saanensis SP1PR4"]]},{"id":"NCBITaxon:402881","l":"Parvibaculum lavamentivorans DS-1","na":3,"nb":2,"a":[["sewage-plant-envo-00003043.html","sewage plant"],["cold-environment-envo-01000309.html","cold environment"],["environmental-material-envo-00010483.html","environmental material"]],"b":[["NCBITaxon%3A256618","Parvibaculum lavamentivorans"],["NCBITaxon%3A402881","Parvibaculum lavamentivorans DS-1"]]},{"id":"NCBITaxon:411901","l":"Bacteroides caccae ATCC 43185","na":3,"nb":2,"a":[["bay-envo-00000032.html","bay"],["animal-habitation-envo-00005803.html","animal habitation"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["NCBITaxon%3A47678","Bacteroides caccae"],["NCBITaxon%3A411901","Bacteroides caccae ATCC 43185"]]},{"id":"NCBITaxon:418699","l":"","na":3,"nb":2,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A418699","Azoarcus olearius"],["NCBITaxon%3A29544","Azoarcus sp."]]},{"id":"NCBITaxon:441209","l":"Roseinatronobacter bogoriensis subsp. barguzinensis","na":3,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"],["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A119542","Roseinatronobacter bogoriensis"],["NCBITaxon%3A441209","Roseinatronobacter bogoriensis subsp. barguzinensis"]]},{"id":"NCBITaxon:445973","l":"Intestinibacter bartlettii DSM 16795","na":2,"nb":3,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A261299","Intestinibacter bartlettii"],["NCBITaxon%3A445973","Intestinibacter bartlettii DSM 16795"],["NCBITaxon%3A36841","Terrisporobacter glycolicus"]]},{"id":"NCBITaxon:446465","l":"Brachybacterium faecium DSM 4810","na":3,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"],["poultry-deep-litter-envo-00003908.html","poultry deep litter"],["village-biome-envo-01000246.html","village biome"]],"b":[["NCBITaxon%3A43669","Brachybacterium faecium"],["NCBITaxon%3A446465","Brachybacterium faecium DSM 4810"]]},{"id":"NCBITaxon:469371","l":"Thermobispora bispora DSM 43833","na":3,"nb":2,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A2006","Thermobispora bispora"],["NCBITaxon%3A469371","Thermobispora bispora DSM 43833"]]},{"id":"NCBITaxon:479431","l":"Nakamurella multipartita DSM 44233","na":3,"nb":2,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["NCBITaxon%3A53461","Nakamurella multipartita"],["NCBITaxon%3A479431","Nakamurella multipartita DSM 44233"]]},{"id":"NCBITaxon:482957","l":"","na":2,"nb":3,"a":[["human-construction-envo-00000070.html","human construction"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A2015348","Burkholderia aenigmatica"],["NCBITaxon%3A292","Burkholderia cepacia"],["NCBITaxon%3A482957","Burkholderia lata"]]},{"id":"NCBITaxon:502","l":"Kingella denitrificans","na":2,"nb":3,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["NCBITaxon%3A502","Kingella denitrificans"],["NCBITaxon%3A888741","Kingella denitrificans ATCC 33394"],["NCBITaxon%3A3100349","Simonsiella sp."]]},{"id":"NCBITaxon:509191","l":"Acetivibrio cellulolyticus CD2","na":3,"nb":2,"a":[["village-biome-envo-01000246.html","village biome"],["forested-area-envo-00000111.html","forested area"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A35830","Acetivibrio cellulolyticus"],["NCBITaxon%3A509191","Acetivibrio cellulolyticus CD2"]]},{"id":"NCBITaxon:50960","l":"Helicobacter trogontum","na":2,"nb":3,"a":[["ht-29-cell-bto-0000182.html","HT-29 cell"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"],["NCBITaxon%3A50960","Helicobacter trogontum"]]},{"id":"NCBITaxon:523846","l":"Methanothermus fervidus DSM 2088","na":3,"nb":2,"a":[["mountain-envo-00000081.html","mountain"],["seamount-envo-00000264.html","seamount"],["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A2180","Methanothermus fervidus"],["NCBITaxon%3A523846","Methanothermus fervidus DSM 2088"]]},{"id":"NCBITaxon:530564","l":"Pirellula staleyi DSM 6068","na":3,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["agricultural-soil-envo-00002259.html","agricultural soil"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A125","Pirellula staleyi"],["NCBITaxon%3A530564","Pirellula staleyi DSM 6068"]]},{"id":"NCBITaxon:53408","l":"Pseudomonas citronellolis","na":3,"nb":2,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["cuticle-bto-0001600.html","cuticle"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"]],"b":[["NCBITaxon%3A53408","Pseudomonas citronellolis"],["NCBITaxon%3A1215097","Pseudomonas citronellolis NBRC 103043"]]},{"id":"NCBITaxon:573064","l":"Methanocaldococcus fervens AG86","na":3,"nb":2,"a":[["inlet-envo-00000475.html","inlet"],["shoreline-envo-00000486.html","shoreline"],["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A83171","Methanocaldococcus fervens"],["NCBITaxon%3A573064","Methanocaldococcus fervens AG86"]]},{"id":"NCBITaxon:574521","l":"Escherichia coli O127:H6 (strain E2348/69 / EPEC)","na":2,"nb":3,"a":[["enterocyte-bto-0000398.html","enterocyte"],["gut-epithelium-bto-0000956.html","gut epithelium"]],"b":[["NCBITaxon%3A574521","Escherichia coli O127:H6 str. E2348/69"],["NCBITaxon%3A1336205","Escherichia coli O127:H6 str. E2348/69 substr. CVDNalr"],["NCBITaxon%3A1336206","Escherichia coli O127:H6 str. E2348/69 substr. UMD753"]]},{"id":"NCBITaxon:591019","l":"Staphylothermus hellenicus DSM 12710","na":3,"nb":2,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A84599","Staphylothermus hellenicus"],["NCBITaxon%3A591019","Staphylothermus hellenicus DSM 12710"]]},{"id":"NCBITaxon:59405","l":"Thauera aromatica","na":2,"nb":3,"a":[["sludge-envo-00002044.html","sludge"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A59405","Thauera aromatica"],["NCBITaxon%3A859322","Thauera aromatica 3CB2"],["NCBITaxon%3A44139","Thauera aromatica K172"]]},{"id":"NCBITaxon:632348","l":"Caldicellulosiruptor kronotskyensis 2002","na":3,"nb":2,"a":[["geyser-envo-00000050.html","geyser"],["peninsula-envo-00000305.html","peninsula"],["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A413889","Caldicellulosiruptor kronotskyensis"],["NCBITaxon%3A632348","Caldicellulosiruptor kronotskyensis 2002"]]},{"id":"NCBITaxon:641112","l":"Ruminococcus flavefaciens FD-1","na":3,"nb":2,"a":[["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["fiber-bto-0000450.html","fiber"]],"b":[["NCBITaxon%3A1265","Ruminococcus flavefaciens"],["NCBITaxon%3A641112","Ruminococcus flavefaciens FD-1"]]},{"id":"NCBITaxon:643562","l":"Pseudodesulfovibrio aespoeensis Aspo-2","na":3,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["ocean-trench-envo-00000275.html","ocean trench"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A182210","Pseudodesulfovibrio aespoeensis"],["NCBITaxon%3A643562","Pseudodesulfovibrio aespoeensis Aspo-2"]]},{"id":"NCBITaxon:643867","l":"Marivirga tractuosa DSM 4126","na":3,"nb":2,"a":[["beach-envo-00000091.html","beach"],["coral-reef-envo-00000150.html","coral reef"],["sea-sand-envo-00002118.html","sea sand"]],"b":[["NCBITaxon%3A1006","Marivirga tractuosa"],["NCBITaxon%3A643867","Marivirga tractuosa DSM 4126"]]},{"id":"NCBITaxon:65553","l":"Sulfurospirillum deleyianum","na":2,"nb":3,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A65553","Sulfurospirillum deleyianum"],["NCBITaxon%3A525898","Sulfurospirillum deleyianum DSM 6946"],["NCBITaxon%3A2053622","Sulfurospirillum sp."]]},{"id":"NCBITaxon:666681","l":"Methylotenera versatilis 301","na":3,"nb":2,"a":[["large-river-biome-envo-00000887.html","large river biome"],["environmental-material-envo-00010483.html","environmental material"],["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A1055487","Methylotenera versatilis"],["NCBITaxon%3A666681","Methylotenera versatilis 301"]]},{"id":"NCBITaxon:697282","l":"Methylobacter tundripaludum SV96","na":3,"nb":2,"a":[["cold-environment-envo-01000309.html","cold environment"],["environmental-material-envo-00010483.html","environmental material"],["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A173365","Methylobacter tundripaludum"],["NCBITaxon%3A697282","Methylobacter tundripaludum SV96"]]},{"id":"NCBITaxon:717","l":"Actinobacillus capsulatus","na":3,"nb":2,"a":[["bone-element-uberon-0001474.html","bone element"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A717","Actinobacillus capsulatus"],["NCBITaxon%3A1120931","Actinobacillus capsulatus DSM 19761"]]},{"id":"NCBITaxon:71999","l":"Kocuria palustris","na":2,"nb":3,"a":[["duodenal-mucosa-bto-0000367.html","duodenal mucosa"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"]],"b":[["NCBITaxon%3A71999","Kocuria palustris"],["NCBITaxon%3A1236550","Kocuria palustris PEL"],["NCBITaxon%3A1272","Kocuria varians"]]},{"id":"NCBITaxon:759851","l":"Sporosarcina newyorkensis","na":2,"nb":3,"a":[["hospital-envo-00002173.html","hospital"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A759851","Sporosarcina newyorkensis"],["NCBITaxon%3A1027292","Sporosarcina newyorkensis 2681"],["NCBITaxon%3A49982","Sporosarcina sp."]]},{"id":"NCBITaxon:765177","l":"Desulfurococcus mucosus DSM 2162","na":3,"nb":2,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"],["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A2275","Desulfurococcus mucosus"],["NCBITaxon%3A765177","Desulfurococcus mucosus DSM 2162"]]},{"id":"NCBITaxon:83552","l":"Parachlamydia acanthamoebae","na":2,"nb":3,"a":[["elementary-body-bto-0000377.html","elementary body"],["hep-2-cell-bto-0000976.html","HEp-2 cell"]],"b":[["NCBITaxon%3A83552","Parachlamydia acanthamoebae"],["NCBITaxon%3A159254","Parachlamydia acanthamoebae str. Hall's coccus"],["NCBITaxon%3A765952","Parachlamydia acanthamoebae UV-7"]]},{"id":"NCBITaxon:83555","l":"Chlamydia abortus","na":2,"nb":3,"a":[["elementary-body-bto-0000377.html","elementary body"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A83555","Chlamydia abortus"],["NCBITaxon%3A1003238","Chlamydia abortus LLG"],["NCBITaxon%3A218497","Chlamydia abortus S26/3"]]},{"id":"NCBITaxon:85963","l":"Helicobacter pylori (strain J99 / ATCC 700824)","na":2,"nb":3,"a":[["anaerobic-sludge-blanket-reactor-envo-00002213.html","anaerobic sludge blanket reactor"],["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A141390","Chromohalobacter israelensis"],["NCBITaxon%3A210","Helicobacter pylori"],["NCBITaxon%3A85963","Helicobacter pylori J99"]]},{"id":"NCBITaxon:889378","l":"Spirochaeta africana DSM 8902","na":3,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["alkaline-water-envo-01000357.html","alkaline water"],["brine-envo-00003044.html","brine"]],"b":[["NCBITaxon%3A46355","Spirochaeta africana"],["NCBITaxon%3A889378","Spirochaeta africana DSM 8902"]]},{"id":"NCBITaxon:897","l":"Desulfococcus multivorans","na":3,"nb":2,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A897","Desulfococcus multivorans"],["NCBITaxon%3A1121405","Desulfococcus multivorans DSM 2059"]]},{"id":"NCBITaxon:91360","l":"Desulforhopalus singaporensis","na":3,"nb":2,"a":[["marsh-envo-00000035.html","marsh"],["road-envo-00000064.html","road"],["garden-envo-00000011.html","garden"]],"b":[["NCBITaxon%3A91360","Desulforhopalus singaporensis"],["NCBITaxon%3A1121418","Desulforhopalus singaporensis DSM 12130"]]},{"id":"NCBITaxon:926569","l":"Anaerolinea thermophila UNI-1","na":3,"nb":2,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["shoreline-envo-00000486.html","shoreline"]],"b":[["NCBITaxon%3A167964","Anaerolinea thermophila"],["NCBITaxon%3A926569","Anaerolinea thermophila UNI-1"]]},{"id":"NCBITaxon:1006155","l":"Paenilisteria weihenstephanensis","na":2,"nb":2,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1006155","Paenilisteria weihenstephanensis"],["NCBITaxon%3A1265845","Paenilisteria weihenstephanensis FSL R9-0317"]]},{"id":"NCBITaxon:1007105","l":"Pusillimonas sp. T7-7","na":2,"nb":2,"a":[["marine-sediment-envo-03000033.html","marine sediment"],["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A1979962","Pusillimonas sp."],["NCBITaxon%3A1007105","Pusillimonas sp. T7-7"]]},{"id":"NCBITaxon:100901","l":"Wolbachia endosymbiont of Onchocerca ochengi","na":2,"nb":2,"a":[["gonad-bto-0000534.html","gonad"],["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A100901","Wolbachia endosymbiont of Onchocerca ochengi"],["NCBITaxon%3A1141110","Wolbachia endosymbiont of Onchocerca ochengi str. Adamawa_Cameroon"]]},{"id":"NCBITaxon:1028800","l":"Neorhizobium galegae bv. orientalis str. HAMBI 540","na":2,"nb":2,"a":[["root-nodule-bto-0001190.html","root nodule"],["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A399","Neorhizobium galegae"],["NCBITaxon%3A1028800","Neorhizobium galegae bv. orientalis str. HAMBI 540"]]},{"id":"NCBITaxon:1032070","l":"Aliarcobacter cryaerophilus ATCC 43158","na":2,"nb":2,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A28198","Aliarcobacter cryaerophilus"],["NCBITaxon%3A1032070","Aliarcobacter cryaerophilus ATCC 43158"]]},{"id":"NCBITaxon:1038869","l":"Paraburkholderia mimosarum LMG 23256 = NBRC 106338","na":2,"nb":2,"a":[["root-nodule-bto-0001190.html","root nodule"],["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A312026","Paraburkholderia mimosarum"],["NCBITaxon%3A1038869","Paraburkholderia mimosarum LMG 23256 = NBRC 106338"]]},{"id":"NCBITaxon:1041930","l":"Methanocella conradii HZ254","na":2,"nb":2,"a":[["flagellum-bto-0002292.html","flagellum"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A1175444","Methanocella conradii"],["NCBITaxon%3A1041930","Methanocella conradii HZ254"]]},{"id":"NCBITaxon:1042209","l":"Pseudomonas fluorescens HK44","na":2,"nb":2,"a":[["bioreactor-envo-00002123.html","bioreactor"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A294","Pseudomonas fluorescens"],["NCBITaxon%3A1042209","Pseudomonas fluorescens HK44"]]},{"id":"NCBITaxon:1045004","l":"Oenococcus kitaharae DSM 17330","na":2,"nb":2,"a":[["compost-envo-00002170.html","compost"],["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A336988","Oenococcus kitaharae"],["NCBITaxon%3A1045004","Oenococcus kitaharae DSM 17330"]]},{"id":"NCBITaxon:1045855","l":"Pseudoxanthomonas spadix BD-a59","na":2,"nb":2,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A415229","Pseudoxanthomonas spadix"],["NCBITaxon%3A1045855","Pseudoxanthomonas spadix BD-a59"]]},{"id":"NCBITaxon:1046593","l":"Leuconostoc carnosum KCTC 3525","na":2,"nb":2,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A1252","Leuconostoc carnosum"],["NCBITaxon%3A1046593","Leuconostoc carnosum KCTC 3525"]]},{"id":"NCBITaxon:1046596","l":"Liquorilactobacillus mali KCTC 3596 = DSM 20444","na":2,"nb":2,"a":[["juice-bto-0000659.html","juice"],["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A1618","Liquorilactobacillus mali"],["NCBITaxon%3A1046596","Liquorilactobacillus mali KCTC 3596 = DSM 20444"]]},{"id":"NCBITaxon:1049","l":"Allochromatium vinosum","na":2,"nb":2,"a":[["brackish-water-body-envo-01001321.html","brackish water body"],["factory-envo-01000536.html","factory"]],"b":[["NCBITaxon%3A1049","Allochromatium vinosum"],["NCBITaxon%3A572477","Allochromatium vinosum DSM 180"]]},{"id":"NCBITaxon:104955","l":"Limosilactobacillus frumenti","na":2,"nb":2,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["animal-manure-envo-00003031.html","animal manure"]],"b":[["NCBITaxon%3A104955","Limosilactobacillus frumenti"],["NCBITaxon%3A1423746","Limosilactobacillus frumenti DSM 13145"]]},{"id":"NCBITaxon:1049583","l":"Kocuria marina subsp. indica","na":2,"nb":2,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A223184","Kocuria marina"],["NCBITaxon%3A1049583","Kocuria marina subsp. indica"]]},{"id":"NCBITaxon:1050202","l":"Actinopolyspora mortivallis DSM 44261","na":2,"nb":2,"a":[["soil-envo-00001998.html","soil"],["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A33906","Actinopolyspora mortivallis"],["NCBITaxon%3A1050202","Actinopolyspora mortivallis DSM 44261"]]},{"id":"NCBITaxon:1056495","l":"Caldisphaera lagunensis DSM 15908","na":2,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"],["acidic-hot-spring-envo-00002120.html","acidic hot spring"]],"b":[["NCBITaxon%3A200415","Caldisphaera lagunensis"],["NCBITaxon%3A1056495","Caldisphaera lagunensis DSM 15908"]]},{"id":"NCBITaxon:1068979","l":"Amycolatopsis thermoflava N1165","na":2,"nb":2,"a":[["island-envo-00000098.html","island"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A84480","Amycolatopsis thermoflava"],["NCBITaxon%3A1068979","Amycolatopsis thermoflava N1165"]]},{"id":"NCBITaxon:1068980","l":"Amycolatopsis nigrescens CSC17Ta-90","na":2,"nb":2,"a":[["building-envo-00000073.html","building"],["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A381445","Amycolatopsis nigrescens"],["NCBITaxon%3A1068980","Amycolatopsis nigrescens CSC17Ta-90"]]},{"id":"NCBITaxon:1071947","l":"Pasteurella oralis","na":2,"nb":2,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A988827","Kocuria oceani"],["NCBITaxon%3A1071947","Pasteurella oralis"]]},{"id":"NCBITaxon:1074493","l":"Sphingobium yanoikuyae XLDN2-5","na":2,"nb":2,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A13690","Sphingobium yanoikuyae"],["NCBITaxon%3A1074493","Sphingobium yanoikuyae XLDN2-5"]]},{"id":"NCBITaxon:107636","l":"Methylosinus sp. PW1","na":2,"nb":2,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A427","Methylosinus sp."],["NCBITaxon%3A107636","Methylosinus sp. PW1"]]},{"id":"NCBITaxon:1080","l":"Afifella marina","na":2,"nb":2,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"]],"b":[["NCBITaxon%3A1080","Afifella marina"],["NCBITaxon%3A1120955","Afifella marina DSM 2698"]]},{"id":"NCBITaxon:108486","l":"Corynebacterium falsenii","na":2,"nb":2,"a":[["animal-house-envo-00003040.html","animal house"],["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A108486","Corynebacterium falsenii"],["NCBITaxon%3A1451189","Corynebacterium falsenii DSM 44353"]]},{"id":"NCBITaxon:1089547","l":"Rudanella lutea DSM 19387","na":2,"nb":2,"a":[["air-envo-00002005.html","air"],["city-envo-00000856.html","city"]],"b":[["NCBITaxon%3A451374","Rudanella lutea"],["NCBITaxon%3A1089547","Rudanella lutea DSM 19387"]]},{"id":"NCBITaxon:1089549","l":"Haloglycomyces albus DSM 45210","na":2,"nb":2,"a":[["undersea-feature-envo-00000104.html","undersea feature"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A526067","Haloglycomyces albus"],["NCBITaxon%3A1089549","Haloglycomyces albus DSM 45210"]]},{"id":"NCBITaxon:1089550","l":"Salisaeta longa DSM 21114","na":2,"nb":2,"a":[["marine-anoxic-zone-envo-01000066.html","marine anoxic zone"],["sea-envo-00000016.html","sea"]],"b":[["NCBITaxon%3A503170","Salisaeta longa"],["NCBITaxon%3A1089550","Salisaeta longa DSM 21114"]]},{"id":"NCBITaxon:1089551","l":"Geminicoccus roseus DSM 18922","na":2,"nb":2,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A404900","Geminicoccus roseus"],["NCBITaxon%3A1089551","Geminicoccus roseus DSM 18922"]]},{"id":"NCBITaxon:1089552","l":"Rhodovibrio salinarum DSM 9154","na":2,"nb":2,"a":[["compost-envo-00002170.html","compost"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A1087","Rhodovibrio salinarum"],["NCBITaxon%3A1089552","Rhodovibrio salinarum DSM 9154"]]},{"id":"NCBITaxon:110479","l":"Asaia siamensis","na":2,"nb":2,"a":[["river-envo-00000022.html","river"],["subpolar-coniferous-forest-biome-envo-01000250.html","subpolar coniferous forest biome"]],"b":[["NCBITaxon%3A110479","Asaia siamensis"],["NCBITaxon%3A1307927","Asaia siamensis NRIC 0323"]]},{"id":"NCBITaxon:110500","l":"Pelotomaculum thermopropionicum","na":2,"nb":2,"a":[["river-envo-00000022.html","river"],["subpolar-coniferous-forest-biome-envo-01000250.html","subpolar coniferous forest biome"]],"b":[["NCBITaxon%3A110500","Pelotomaculum thermopropionicum"],["NCBITaxon%3A370438","Pelotomaculum thermopropionicum SI"]]},{"id":"NCBITaxon:1111728","l":"Budvicia aquatica DSM 5075 = ATCC 35567","na":2,"nb":2,"a":[["drinking-water-envo-00003064.html","drinking water"],["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A82979","Budvicia aquatica"],["NCBITaxon%3A1111728","Budvicia aquatica DSM 5075 = ATCC 35567"]]},{"id":"NCBITaxon:1111738","l":"Thermocrispum agreste DSM 44070","na":2,"nb":2,"a":[["compost-envo-00002170.html","compost"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A37925","Thermocrispum agreste"],["NCBITaxon%3A1111738","Thermocrispum agreste DSM 44070"]]},{"id":"NCBITaxon:1112","l":"Erythrobacter neustonensis","na":2,"nb":2,"a":[["groundwater-envo-01001004.html","groundwater"],["marine-environment-envo-01000320.html","marine environment"]],"b":[["NCBITaxon%3A1112","Erythrobacter neustonensis"],["NCBITaxon%3A1042","Erythrobacter sp."]]},{"id":"NCBITaxon:1114856","l":"","na":2,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A63128","Natronorubrum tibetense"],["NCBITaxon%3A1114856","Natronorubrum tibetense GA33"]]},{"id":"NCBITaxon:1114972","l":"Furfurilactobacillus rossiae DSM 15814","na":2,"nb":2,"a":[["food-product-foodon-00001002.html","food product"],["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A231049","Furfurilactobacillus rossiae"],["NCBITaxon%3A1114972","Furfurilactobacillus rossiae DSM 15814"]]},{"id":"NCBITaxon:1115512","l":"Atlantibacter hermannii NBRC 105704","na":2,"nb":2,"a":[["foot-bto-0000476.html","foot"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A565","Atlantibacter hermannii"],["NCBITaxon%3A1115512","Atlantibacter hermannii NBRC 105704"]]},{"id":"NCBITaxon:1120918","l":"Acetitomaculum ruminis DSM 5522","na":2,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A2382","Acetitomaculum ruminis"],["NCBITaxon%3A1120918","Acetitomaculum ruminis DSM 5522"]]},{"id":"NCBITaxon:1120923","l":"Acidocella aminolytica 101 = DSM 11237","na":2,"nb":2,"a":[["mine-envo-00000076.html","mine"],["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A33998","Acidocella aminolytica"],["NCBITaxon%3A1120923","Acidocella aminolytica 101 = DSM 11237"]]},{"id":"NCBITaxon:1120924","l":"Acinetobacter baylyi DSM 14961 = CIP 107474","na":2,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A202950","Acinetobacter baylyi"],["NCBITaxon%3A1120924","Acinetobacter baylyi DSM 14961 = CIP 107474"]]},{"id":"NCBITaxon:1120929","l":"Acinetobacter towneri DSM 14962 = CIP 107472","na":2,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A202956","Acinetobacter towneri"],["NCBITaxon%3A1120929","Acinetobacter towneri DSM 14962 = CIP 107472"]]},{"id":"NCBITaxon:1120955","l":"Afifella marina DSM 2698","na":2,"nb":2,"a":[["sea-envo-00000016.html","sea"],["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1080","Afifella marina"],["NCBITaxon%3A1120955","Afifella marina DSM 2698"]]},{"id":"NCBITaxon:1120959","l":"Agromyces italicus DSM 16388","na":2,"nb":2,"a":[["cave-envo-00000067.html","cave"],["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A279572","Agromyces italicus"],["NCBITaxon%3A1120959","Agromyces italicus DSM 16388"]]},{"id":"NCBITaxon:1120968","l":"Algoriphagus vanfongensis DSM 17529","na":2,"nb":2,"a":[["sea-envo-00000016.html","sea"],["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A426371","Algoriphagus vanfongensis"],["NCBITaxon%3A1120968","Algoriphagus vanfongensis DSM 17529"]]},{"id":"NCBITaxon:1120989","l":"Anaerobranca californiensis DSM 14826","na":2,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"],["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A182411","Anaerobranca californiensis"],["NCBITaxon%3A1120989","Anaerobranca californiensis DSM 14826"]]},{"id":"NCBITaxon:1120997","l":"Anaerovibrio lipolyticus DSM 3074","na":2,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A82374","Anaerovibrio lipolyticus"],["NCBITaxon%3A1120997","Anaerovibrio lipolyticus DSM 3074"]]},{"id":"NCBITaxon:1121001","l":"Andreprevotia lacus DSM 23236","na":2,"nb":2,"a":[["pond-envo-00000033.html","pond"],["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A1121000","Andreprevotia lacus"],["NCBITaxon%3A1121001","Andreprevotia lacus DSM 23236"]]},{"id":"NCBITaxon:1121003","l":"Aquamicrobium aerolatum DSM 21857","na":2,"nb":2,"a":[["air-envo-00002005.html","air"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A561088","Aerobium aerolatum"],["NCBITaxon%3A1121003","Aquamicrobium aerolatum DSM 21857"]]},{"id":"NCBITaxon:1121018","l":"Arsenophonus nasoniae DSM 15247","na":2,"nb":2,"a":[["saline-lake-envo-00000019.html","saline lake"],["city-envo-00000856.html","city"]],"b":[["NCBITaxon%3A638","Arsenophonus nasoniae"],["NCBITaxon%3A1121018","Arsenophonus nasoniae DSM 15247"]]},{"id":"NCBITaxon:1121019","l":"Arthrobacter castelli DSM 16402","na":2,"nb":2,"a":[["environmental-system-envo-01000254.html","environmental system"],["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A271431","Arthrobacter castelli"],["NCBITaxon%3A1121019","Arthrobacter castelli DSM 16402"]]},{"id":"NCBITaxon:1121022","l":"Asticcacaulis benevestitus DSM 16100 = ATCC BAA-896","na":2,"nb":2,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A347481","Asticcacaulis benevestitus"],["NCBITaxon%3A1121022","Asticcacaulis benevestitus DSM 16100 = ATCC BAA-896"]]},{"id":"NCBITaxon:1121026","l":"Aureimonas altamirensis DSM 21988","na":2,"nb":2,"a":[["cave-envo-00000067.html","cave"],["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A370622","Aureimonas altamirensis"],["NCBITaxon%3A1121026","Aureimonas altamirensis DSM 21988"]]},{"id":"NCBITaxon:1121028","l":"Aureimonas ureilytica DSM 18598 = NBRC 106430","na":2,"nb":2,"a":[["air-envo-00002005.html","air"],["city-envo-00000856.html","city"]],"b":[["NCBITaxon%3A401562","Aureimonas ureilytica"],["NCBITaxon%3A1121028","Aureimonas ureilytica DSM 18598 = NBRC 106430"]]},{"id":"NCBITaxon:1121032","l":"Azonexus hydrophilus DSM 23864","na":2,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A418702","Azonexus hydrophilus"],["NCBITaxon%3A1121032","Azonexus hydrophilus DSM 23864"]]},{"id":"NCBITaxon:1121086","l":"Alteribacter aurantiacus DSM 18675","na":2,"nb":2,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A254410","Alteribacter aurantiacus"],["NCBITaxon%3A1121086","Alteribacter aurantiacus DSM 18675"]]},{"id":"NCBITaxon:1121106","l":"Belnapia moabensis DSM 16746","na":2,"nb":2,"a":[["city-envo-00000856.html","city"],["plateau-envo-00000182.html","plateau"]],"b":[["NCBITaxon%3A365533","Belnapia moabensis"],["NCBITaxon%3A1121106","Belnapia moabensis DSM 16746"]]},{"id":"NCBITaxon:1121109","l":"Bifidobacterium minimum DSM 20102","na":2,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"],["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A1693","Bifidobacterium minimum"],["NCBITaxon%3A1121109","Bifidobacterium minimum DSM 20102"]]},{"id":"NCBITaxon:1121110","l":"Bifidobacterium subtile DSM 20096","na":2,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"],["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A77635","Bifidobacterium subtile"],["NCBITaxon%3A1121110","Bifidobacterium subtile DSM 20096"]]},{"id":"NCBITaxon:1121117","l":"Allobrachymonas denitrificans DSM 15123","na":2,"nb":2,"a":[["sewage-envo-00002018.html","sewage"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["NCBITaxon%3A28220","Allobrachymonas denitrificans"],["NCBITaxon%3A1121117","Allobrachymonas denitrificans DSM 15123"]]},{"id":"NCBITaxon:1121131","l":"Butyrivibrio fibrisolvens DSM 3071","na":2,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A831","Butyrivibrio fibrisolvens"],["NCBITaxon%3A1121131","Butyrivibrio fibrisolvens DSM 3071"]]},{"id":"NCBITaxon:1121262","l":"Caloramator proteoclasticus DSM 10124","na":2,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"],["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A53342","Caloramator proteoclasticus"],["NCBITaxon%3A1121262","Caloramator proteoclasticus DSM 10124"]]},{"id":"NCBITaxon:1121270","l":"","na":2,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"],["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A178899","Carboxydocella thermautotrophica"],["NCBITaxon%3A1121270","Carboxydocella thermautotrophica DSM 16521"]]},{"id":"NCBITaxon:1121275","l":"Chitinilyticum aquatile DSM 21506","na":2,"nb":2,"a":[["pond-envo-00000033.html","pond"],["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A362520","Chitinilyticum aquatile"],["NCBITaxon%3A1121275","Chitinilyticum aquatile DSM 21506"]]},{"id":"NCBITaxon:1121295","l":"Clostridium algidicarnis DSM 15099","na":2,"nb":2,"a":[["food-product-foodon-00001002.html","food product"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["NCBITaxon%3A37659","Clostridium algidicarnis"],["NCBITaxon%3A1121295","Clostridium algidicarnis DSM 15099"]]},{"id":"NCBITaxon:1121296","l":"[Clostridium] aminophilum DSM 10710","na":2,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A1526","[Clostridium] aminophilum"],["NCBITaxon%3A1121296","[Clostridium] aminophilum DSM 10710"]]},{"id":"NCBITaxon:1121302","l":"Clostridium cavendishii DSM 21758","na":2,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A349931","Clostridium cavendishii"],["NCBITaxon%3A1121302","Clostridium cavendishii DSM 21758"]]},{"id":"NCBITaxon:1121312","l":"Clostridium frigidicarnis DSM 12271","na":2,"nb":2,"a":[["food-product-foodon-00001002.html","food product"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["NCBITaxon%3A84698","Clostridium frigidicarnis"],["NCBITaxon%3A1121312","Clostridium frigidicarnis DSM 12271"]]},{"id":"NCBITaxon:1121314","l":"Clostridium gasigenes DSM 12272","na":2,"nb":2,"a":[["food-product-foodon-00001002.html","food product"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["NCBITaxon%3A94869","Clostridium gasigenes"],["NCBITaxon%3A1121314","Clostridium gasigenes DSM 12272"]]},{"id":"NCBITaxon:1121317","l":"Clostridium halophilum DSM 5387","na":2,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A36842","Maledivibacter halophilus"],["NCBITaxon%3A1121317","Maledivibacter halophilus DSM 5387"]]},{"id":"NCBITaxon:1121318","l":"Clostridium homopropionicum DSM 5847","na":2,"nb":2,"a":[["sewage-envo-00002018.html","sewage"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A36844","Clostridium homopropionicum"],["NCBITaxon%3A1121318","Clostridium homopropionicum DSM 5847"]]},{"id":"NCBITaxon:1121319","l":"Clostridium hydrogeniformans DSM 21757","na":2,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A349933","Clostridium hydrogeniformans"],["NCBITaxon%3A1121319","Clostridium hydrogeniformans DSM 21757"]]},{"id":"NCBITaxon:1121327","l":"Anaerotignum neopropionicum DSM 3847","na":2,"nb":2,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A36847","Anaerotignum neopropionicum"],["NCBITaxon%3A1121327","Anaerotignum neopropionicum DSM 3847"]]},{"id":"NCBITaxon:1121344","l":"[Clostridium] viride DSM 6836","na":2,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A47246","[Clostridium] viride"],["NCBITaxon%3A1121344","[Clostridium] viride DSM 6836"]]},{"id":"NCBITaxon:1121364","l":"Corynebacterium massiliense DSM 45435","na":2,"nb":2,"a":[["hospital-envo-00002173.html","hospital"],["bone-element-uberon-0001474.html","bone element"]],"b":[["NCBITaxon%3A441501","Corynebacterium massiliense"],["NCBITaxon%3A1121364","Corynebacterium massiliense DSM 45435"]]},{"id":"NCBITaxon:1121375","l":"Deefgea rivuli DSM 18356","na":2,"nb":2,"a":[["mountain-envo-00000081.html","mountain"],["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A400948","Deefgea rivuli"],["NCBITaxon%3A1121375","Deefgea rivuli DSM 18356"]]},{"id":"NCBITaxon:1121385","l":"Demetria terragena DSM 11295","na":2,"nb":2,"a":[["compost-envo-00002170.html","compost"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A63959","Demetria terragena"],["NCBITaxon%3A1121385","Demetria terragena DSM 11295"]]},{"id":"NCBITaxon:1121390","l":"Desulfacinum hydrothermale DSM 13146","na":2,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A109258","Desulfacinum hydrothermale"],["NCBITaxon%3A1121390","Desulfacinum hydrothermale DSM 13146"]]},{"id":"NCBITaxon:1121395","l":"Desulfitobacterium chlororespirans DSM 11544","na":2,"nb":2,"a":[["compost-envo-00002170.html","compost"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A51616","Desulfitobacterium chlororespirans"],["NCBITaxon%3A1121395","Desulfitobacterium chlororespirans DSM 11544"]]},{"id":"NCBITaxon:1121396","l":"Desulfobacter curvatus DSM 3379","na":2,"nb":2,"a":[["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A2290","Desulfobacter curvatus"],["NCBITaxon%3A1121396","Desulfobacter curvatus DSM 3379"]]},{"id":"NCBITaxon:1121399","l":"Desulfatiglans anilini DSM 4660","na":2,"nb":2,"a":[["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A90728","Desulfatiglans anilini"],["NCBITaxon%3A1121399","Desulfatiglans anilini DSM 4660"]]},{"id":"NCBITaxon:1121405","l":"Desulfococcus multivorans DSM 2059","na":2,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A897","Desulfococcus multivorans"],["NCBITaxon%3A1121405","Desulfococcus multivorans DSM 2059"]]},{"id":"NCBITaxon:1121409","l":"Desulfofustis glycolicus DSM 9705","na":2,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"]],"b":[["NCBITaxon%3A51195","Desulfofustis glycolicus"],["NCBITaxon%3A1121409","Desulfofustis glycolicus DSM 9705"]]},{"id":"NCBITaxon:1121428","l":"Desulforamulus hydrothermalis Lam5 = DSM 18033","na":2,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"],["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A412895","Desulforamulus hydrothermalis"],["NCBITaxon%3A1121428","Desulforamulus hydrothermalis Lam5 = DSM 18033"]]},{"id":"NCBITaxon:1121432","l":"Desulfofundulus thermosubterraneus DSM 16057","na":2,"nb":2,"a":[["mine-envo-00000076.html","mine"],["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A348840","Desulfofundulus thermosubterraneus"],["NCBITaxon%3A1121432","Desulfofundulus thermosubterraneus DSM 16057"]]},{"id":"NCBITaxon:1121433","l":"Desulfovermiculus halophilus DSM 18834","na":2,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"],["oil-envo-00002985.html","oil"]],"b":[["NCBITaxon%3A339722","Desulfovermiculus halophilus"],["NCBITaxon%3A1121433","Desulfovermiculus halophilus DSM 18834"]]},{"id":"NCBITaxon:1121434","l":"Halodesulfovibrio aestuarii DSM 10141","na":2,"nb":2,"a":[["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A126333","Halodesulfovibrio aestuarii"],["NCBITaxon%3A1121434","Halodesulfovibrio aestuarii DSM 10141"]]},{"id":"NCBITaxon:1121441","l":"Maridesulfovibrio bastinii DSM 16055","na":2,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A47157","Maridesulfovibrio bastinii"],["NCBITaxon%3A1121441","Maridesulfovibrio bastinii DSM 16055"]]},{"id":"NCBITaxon:1121442","l":"Desulfobaculum bizertense DSM 18034","na":2,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"]],"b":[["NCBITaxon%3A376490","Desulfobaculum bizertense"],["NCBITaxon%3A1121442","Desulfobaculum bizertense DSM 18034"]]},{"id":"NCBITaxon:1121445","l":"Desulfovibrio desulfuricans DSM 642","na":2,"nb":2,"a":[["rock-envo-00001995.html","rock"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A876","Desulfovibrio desulfuricans"],["NCBITaxon%3A1121445","Desulfovibrio desulfuricans DSM 642"]]},{"id":"NCBITaxon:1121447","l":"Maridesulfovibrio frigidus DSM 17176","na":2,"nb":2,"a":[["sea-coast-envo-00000303.html","sea coast"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A340956","Maridesulfovibrio frigidus"],["NCBITaxon%3A1121447","Maridesulfovibrio frigidus DSM 17176"]]},{"id":"NCBITaxon:1121448","l":"","na":2,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["primordium-bto-0001886.html","primordium"]],"b":[["NCBITaxon%3A879","Megalodesulfovibrio gigas"],["NCBITaxon%3A1121448","Megalodesulfovibrio gigas DSM 1382 = ATCC 19364"]]},{"id":"NCBITaxon:1121453","l":"Desulfovibrio inopinatus DSM 10711","na":2,"nb":2,"a":[["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A102109","Desulfovibrio inopinatus"],["NCBITaxon%3A1121453","Desulfovibrio inopinatus DSM 10711"]]},{"id":"NCBITaxon:1121457","l":"Halodesulfovibrio marinisediminis DSM 17456","na":2,"nb":2,"a":[["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A458711","Halodesulfovibrio marinisediminis"],["NCBITaxon%3A1121457","Halodesulfovibrio marinisediminis DSM 17456"]]},{"id":"NCBITaxon:1121458","l":"Humidesulfovibrio mexicanus DSM 13116","na":2,"nb":2,"a":[["activated-sludge-envo-00002046.html","activated sludge"],["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A147047","Humidesulfovibrio mexicanus"],["NCBITaxon%3A1121458","Humidesulfovibrio mexicanus DSM 13116"]]},{"id":"NCBITaxon:1121460","l":"Megalodesulfovibrio paquesii DSM 16681","na":2,"nb":2,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A299072","Megalodesulfovibrio paquesii"],["NCBITaxon%3A1121460","Megalodesulfovibrio paquesii DSM 16681"]]},{"id":"NCBITaxon:1121462","l":"Fundidesulfovibrio putealis DSM 16056","na":2,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A270496","Fundidesulfovibrio putealis"],["NCBITaxon%3A1121462","Fundidesulfovibrio putealis DSM 16056"]]},{"id":"NCBITaxon:1121468","l":"Desulfovirgula thermocuniculi DSM 16036","na":2,"nb":2,"a":[["mine-envo-00000076.html","mine"],["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A348842","Desulfovirgula thermocuniculi"],["NCBITaxon%3A1121468","Desulfovirgula thermocuniculi DSM 16036"]]},{"id":"NCBITaxon:1121476","l":"Dethiosulfatibacter aminovorans DSM 17477","na":2,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"]],"b":[["NCBITaxon%3A332095","Dethiosulfatibacter aminovorans"],["NCBITaxon%3A1121476","Dethiosulfatibacter aminovorans DSM 17477"]]},{"id":"NCBITaxon:1121480","l":"Pseudoduganella violaceinigra DSM 15887","na":2,"nb":2,"a":[["undersea-feature-envo-00000104.html","undersea feature"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A246602","Pseudoduganella violaceinigra"],["NCBITaxon%3A1121480","Pseudoduganella violaceinigra DSM 15887"]]},{"id":"NCBITaxon:1121484","l":"Dyadobacter ginsengisoli DSM 21015","na":2,"nb":2,"a":[["undersea-feature-envo-00000104.html","undersea feature"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A363850","Dyadobacter ginsengisoli"],["NCBITaxon%3A1121484","Dyadobacter ginsengisoli DSM 21015"]]},{"id":"NCBITaxon:1121878","l":"Ferrimonas futtsuensis DSM 18154","na":2,"nb":2,"a":[["beach-envo-00000091.html","beach"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A364764","Ferrimonas futtsuensis"],["NCBITaxon%3A1121878","Ferrimonas futtsuensis DSM 18154"]]},{"id":"NCBITaxon:1121884","l":"Flavisolibacter ginsengisoli DSM 18119","na":2,"nb":2,"a":[["undersea-feature-envo-00000104.html","undersea feature"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A462367","Flavisolibacter ginsengisoli"],["NCBITaxon%3A1121884","Flavisolibacter ginsengisoli DSM 18119"]]},{"id":"NCBITaxon:1121885","l":"Flavisolibacter ginsengiterrae DSM 18136","na":2,"nb":2,"a":[["undersea-feature-envo-00000104.html","undersea feature"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A398045","Flavisolibacter ginsengiterrae"],["NCBITaxon%3A1121885","Flavisolibacter ginsengiterrae DSM 18136"]]},{"id":"NCBITaxon:1121899","l":"Flavobacterium suncheonense GH29-5 = DSM 17707","na":2,"nb":2,"a":[["city-envo-00000856.html","city"],["greenhouse-soil-envo-00005780.html","greenhouse soil"]],"b":[["NCBITaxon%3A350894","Flavobacterium suncheonense"],["NCBITaxon%3A1121899","Flavobacterium suncheonense GH29-5 = DSM 17707"]]},{"id":"NCBITaxon:1121901","l":"Flavobacterium tegetincola DSM 22377","na":2,"nb":2,"a":[["hill-envo-00000083.html","hill"],["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A150172","Flavobacterium tegetincola"],["NCBITaxon%3A1121901","Flavobacterium tegetincola DSM 22377"]]},{"id":"NCBITaxon:1121909","l":"Gaetbulibacter saemankumensis DSM 17032","na":2,"nb":2,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A311208","Gaetbulibacter saemankumensis"],["NCBITaxon%3A1121909","Gaetbulibacter saemankumensis DSM 17032"]]},{"id":"NCBITaxon:1121915","l":"Geoalkalibacter ferrihydriticus DSM 17813","na":2,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A392333","Geoalkalibacter ferrihydriticus"],["NCBITaxon%3A1121915","Geoalkalibacter ferrihydriticus DSM 17813"]]},{"id":"NCBITaxon:1121918","l":"Geopsychrobacter electrodiphilus DSM 16401","na":2,"nb":2,"a":[["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"],["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A225196","Geopsychrobacter electrodiphilus"],["NCBITaxon%3A1121918","Geopsychrobacter electrodiphilus DSM 16401"]]},{"id":"NCBITaxon:1121921","l":"Gilvimarinus chinensis DSM 19667","na":2,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"],["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A396005","Gilvimarinus chinensis"],["NCBITaxon%3A1121921","Gilvimarinus chinensis DSM 19667"]]},{"id":"NCBITaxon:1121924","l":"Glaciibacter superstes DSM 21135","na":2,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"],["tunnel-envo-00000068.html","tunnel"]],"b":[["NCBITaxon%3A501023","Glaciibacter superstes"],["NCBITaxon%3A1121924","Glaciibacter superstes DSM 21135"]]},{"id":"NCBITaxon:1121929","l":"Gracilibacillus lacisalsi DSM 19029","na":2,"nb":2,"a":[["undersea-feature-envo-00000104.html","undersea feature"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A393087","Gracilibacillus lacisalsi"],["NCBITaxon%3A1121929","Gracilibacillus lacisalsi DSM 19029"]]},{"id":"NCBITaxon:1121930","l":"Gracilimonas tropica DSM 19535","na":2,"nb":2,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["NCBITaxon%3A454600","Gracilimonas tropica"],["NCBITaxon%3A1121930","Gracilimonas tropica DSM 19535"]]},{"id":"NCBITaxon:1121932","l":"Christiangramia portivictoriae DSM 23547","na":2,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"]],"b":[["NCBITaxon%3A326069","Christiangramia portivictoriae"],["NCBITaxon%3A1121932","Christiangramia portivictoriae DSM 23547"]]},{"id":"NCBITaxon:1121948","l":"Hellea balneolensis DSM 19091","na":2,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["NCBITaxon%3A287478","Hellea balneolensis"],["NCBITaxon%3A1121948","Hellea balneolensis DSM 19091"]]},{"id":"NCBITaxon:1122129","l":"Jeotgalicoccus psychrophilus DSM 19085","na":2,"nb":2,"a":[["food-product-foodon-00001002.html","food product"],["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A157228","Jeotgalicoccus psychrophilus"],["NCBITaxon%3A1122129","Jeotgalicoccus psychrophilus DSM 19085"]]},{"id":"NCBITaxon:1122130","l":"Jonesia quinghaiensis DSM 15701","na":2,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A262806","Jonesia quinghaiensis"],["NCBITaxon%3A1122130","Jonesia quinghaiensis DSM 15701"]]},{"id":"NCBITaxon:1122135","l":"Kiloniella laminariae DSM 19542","na":2,"nb":2,"a":[["inlet-envo-00000475.html","inlet"],["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A454162","Kiloniella laminariae"],["NCBITaxon%3A1122135","Kiloniella laminariae DSM 19542"]]},{"id":"NCBITaxon:1122137","l":"Kordiimonas gwangyangensis DSM 19435 = JCM 12864","na":2,"nb":2,"a":[["marginal-sea-biome-envo-01000046.html","marginal sea biome"],["sea-envo-00000016.html","sea"]],"b":[["NCBITaxon%3A288022","Kordiimonas gwangyangensis"],["NCBITaxon%3A1122137","Kordiimonas gwangyangensis DSM 19435 = JCM 12864"]]},{"id":"NCBITaxon:1122146","l":"Ligilactobacillus ceti DSM 22408","na":2,"nb":2,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A395085","Ligilactobacillus ceti"],["NCBITaxon%3A1122146","Ligilactobacillus ceti DSM 22408"]]},{"id":"NCBITaxon:1122149","l":"Secundilactobacillus malefermentans DSM 5705 = KCTC 3548","na":2,"nb":2,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A176292","Secundilactobacillus malefermentans"],["NCBITaxon%3A1122149","Secundilactobacillus malefermentans DSM 5705 = KCTC 3548"]]},{"id":"NCBITaxon:1122150","l":"Liquorilactobacillus nagelii DSM 13675","na":2,"nb":2,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A82688","Liquorilactobacillus nagelii"],["NCBITaxon%3A1122150","Liquorilactobacillus nagelii DSM 13675"]]},{"id":"NCBITaxon:1122151","l":"Companilactobacillus paralimentarius DSM 13238 = JCM 10415","na":2,"nb":2,"a":[["food-product-foodon-00001002.html","food product"],["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A83526","Companilactobacillus paralimentarius"],["NCBITaxon%3A1122151","Companilactobacillus paralimentarius DSM 13238 = JCM 10415"]]},{"id":"NCBITaxon:1122161","l":"Legionella geestiana DSM 21217","na":2,"nb":2,"a":[["drinking-water-envo-00003064.html","drinking water"],["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A45065","Legionella geestiana"],["NCBITaxon%3A1122161","Legionella geestiana DSM 21217"]]},{"id":"NCBITaxon:1122181","l":"Yoonia vestfoldensis DSM 16212","na":2,"nb":2,"a":[["hill-envo-00000083.html","hill"],["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A245188","Yoonia vestfoldensis"],["NCBITaxon%3A1122181","Yoonia vestfoldensis DSM 16212"]]},{"id":"NCBITaxon:1122191","l":"Maribacter antarcticus DSM 21422","na":2,"nb":2,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"],["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A505250","Maribacter antarcticus"],["NCBITaxon%3A1122191","Maribacter antarcticus DSM 21422"]]},{"id":"NCBITaxon:1122198","l":"Marinobacterium iners DSM 11526","na":2,"nb":2,"a":[["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["NCBITaxon%3A48076","Marinobacterium iners"],["NCBITaxon%3A1122198","Marinobacterium iners DSM 11526"]]},{"id":"NCBITaxon:1122201","l":"Marinobacterium litorale DSM 23545","na":2,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"],["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A404770","Marinobacterium litorale"],["NCBITaxon%3A1122201","Marinobacterium litorale DSM 23545"]]},{"id":"NCBITaxon:1122206","l":"Marinomonas polaris DSM 16579","na":2,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"],["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A293552","Marinomonas polaris"],["NCBITaxon%3A1122206","Marinomonas polaris DSM 16579"]]},{"id":"NCBITaxon:1122209","l":"Marinospirillum alkaliphilum DSM 21637","na":2,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A148454","Marinospirillum alkaliphilum"],["NCBITaxon%3A1122209","Marinospirillum alkaliphilum DSM 21637"]]},{"id":"NCBITaxon:1122225","l":"Mesoflavibacter zeaxanthinifaciens DSM 18436","na":2,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"],["shoreline-envo-00000486.html","shoreline"]],"b":[["NCBITaxon%3A393060","Mesoflavibacter zeaxanthinifaciens"],["NCBITaxon%3A1122225","Mesoflavibacter zeaxanthinifaciens DSM 18436"]]},{"id":"NCBITaxon:1122226","l":"Mesonia mobilis DSM 19841","na":2,"nb":2,"a":[["inlet-envo-00000475.html","inlet"],["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A369791","Mesonia mobilis"],["NCBITaxon%3A1122226","Mesonia mobilis DSM 19841"]]},{"id":"NCBITaxon:1122228","l":"Alloscardovia criceti DSM 17774","na":2,"nb":2,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A356828","Alloscardovia criceti"],["NCBITaxon%3A1122228","Alloscardovia criceti DSM 17774"]]},{"id":"NCBITaxon:1122239","l":"Microbacterium luticocti DSM 19459","na":2,"nb":2,"a":[["compost-envo-00002170.html","compost"],["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A451764","Microbacterium luticocti"],["NCBITaxon%3A1122239","Microbacterium luticocti DSM 19459"]]},{"id":"NCBITaxon:1122248","l":"Mycoplasmopsis gallinarum DSM 19816","na":2,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"],["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A29557","Mycoplasmopsis gallinarum"],["NCBITaxon%3A1122248","Mycoplasmopsis gallinarum DSM 19816"]]},{"id":"NCBITaxon:1122600","l":"Nereida ignava DSM 16309","na":2,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"],["mediterranean-envo-01000207.html","mediterranean"]],"b":[["NCBITaxon%3A282199","Nereida ignava"],["NCBITaxon%3A1122600","Nereida ignava DSM 16309"]]},{"id":"NCBITaxon:1122601","l":"Pseudovibrio exalbescens DSM 16456","na":2,"nb":2,"a":[["atoll-envo-00000166.html","atoll"],["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A197461","Pseudovibrio exalbescens"],["NCBITaxon%3A1122601","Pseudovibrio exalbescens DSM 16456"]]},{"id":"NCBITaxon:1122602","l":"Nesterenkonia alba DSM 19423","na":2,"nb":2,"a":[["bioreactor-envo-00002123.html","bioreactor"],["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A515814","Nesterenkonia alba"],["NCBITaxon%3A1122602","Nesterenkonia alba DSM 19423"]]},{"id":"NCBITaxon:1122603","l":"Nevskia ramosa DSM 11499","na":2,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A64002","Nevskia ramosa"],["NCBITaxon%3A1122603","Nevskia ramosa DSM 11499"]]},{"id":"NCBITaxon:1122607","l":"Nisaea denitrificans DSM 18348","na":2,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["NCBITaxon%3A390877","Nisaea denitrificans"],["NCBITaxon%3A1122607","Nisaea denitrificans DSM 18348"]]},{"id":"NCBITaxon:1122613","l":"Oceanicaulis alexandrii DSM 11625","na":2,"nb":2,"a":[["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"],["ria-envo-00000418.html","ria"]],"b":[["NCBITaxon%3A153233","Oceanicaulis alexandrii"],["NCBITaxon%3A1122613","Oceanicaulis alexandrii DSM 11625"]]},{"id":"NCBITaxon:1122920","l":"Paenibacillus harenae DSM 16969","na":2,"nb":2,"a":[["undersea-feature-envo-00000104.html","undersea feature"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A306543","Paenibacillus harenae"],["NCBITaxon%3A1122920","Paenibacillus harenae DSM 16969"]]},{"id":"NCBITaxon:1122923","l":"Paenibacillus pasadenensis DSM 19293","na":2,"nb":2,"a":[["building-envo-00000073.html","building"],["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A217090","Paenibacillus pasadenensis"],["NCBITaxon%3A1122923","Paenibacillus pasadenensis DSM 19293"]]},{"id":"NCBITaxon:1122928","l":"Paludibacterium yongneupense DSM 18731","na":2,"nb":2,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A400061","Paludibacterium yongneupense"],["NCBITaxon%3A1122928","Paludibacterium yongneupense DSM 18731"]]},{"id":"NCBITaxon:1122933","l":"Paraoerskovia marina DSM 21750","na":2,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"]],"b":[["NCBITaxon%3A545619","Paraoerskovia marina"],["NCBITaxon%3A1122933","Paraoerskovia marina DSM 21750"]]},{"id":"NCBITaxon:1122935","l":"Alitibacter langaaensis DSM 22999","na":2,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"],["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A756","Alitibacter langaaensis"],["NCBITaxon%3A1122935","Alitibacter langaaensis DSM 22999"]]},{"id":"NCBITaxon:1122946","l":"Pelobacter seleniigenes DSM 18267","na":2,"nb":2,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A407188","Pelobacter seleniigenes"],["NCBITaxon%3A1122946","Pelobacter seleniigenes DSM 18267"]]},{"id":"NCBITaxon:1122961","l":"","na":2,"nb":2,"a":[["volcanic-field-envo-00000354.html","volcanic field"],["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A46632","Picrophilus oshimae"],["NCBITaxon%3A1122961","Picrophilus oshimae DSM 9789"]]},{"id":"NCBITaxon:1122973","l":"Porphyromonas levii DSM 23370","na":2,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A28114","Porphyromonas levii"],["NCBITaxon%3A1122973","Porphyromonas levii DSM 23370"]]},{"id":"NCBITaxon:1122978","l":"Segatella albensis DSM 11370 = JCM 12258","na":2,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A77768","Segatella albensis"],["NCBITaxon%3A1122978","Segatella albensis DSM 11370 = JCM 12258"]]},{"id":"NCBITaxon:1122981","l":"Prevotella corporis DSM 18810 = JCM 8529","na":2,"nb":2,"a":[["vagina-uberon-0000996.html","vagina"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A28128","Prevotella corporis"],["NCBITaxon%3A1122981","Prevotella corporis DSM 18810 = JCM 8529"]]},{"id":"NCBITaxon:1122990","l":"Segatella paludivivens DSM 17968 = JCM 13650","na":2,"nb":2,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["NCBITaxon%3A185294","Segatella paludivivens"],["NCBITaxon%3A1122990","Segatella paludivivens DSM 17968 = JCM 13650"]]},{"id":"NCBITaxon:1123000","l":"Propionigenium maris DSM 9537","na":2,"nb":2,"a":[["estuary-envo-00000045.html","estuary"],["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["NCBITaxon%3A45622","Propionigenium maris"],["NCBITaxon%3A1123000","Propionigenium maris DSM 9537"]]},{"id":"NCBITaxon:1123032","l":"Psychrilyobacter atlanticus DSM 19335","na":2,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"]],"b":[["NCBITaxon%3A271091","Psychrilyobacter atlanticus"],["NCBITaxon%3A1123032","Psychrilyobacter atlanticus DSM 19335"]]},{"id":"NCBITaxon:1123037","l":"Psychroserpens burtonensis DSM 12212","na":2,"nb":2,"a":[["hill-envo-00000083.html","hill"],["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A49278","Psychroserpens burtonensis"],["NCBITaxon%3A1123037","Psychroserpens burtonensis DSM 12212"]]},{"id":"NCBITaxon:1123053","l":"Rheinheimera baltica DSM 14885","na":2,"nb":2,"a":[["marginal-sea-biome-envo-01000046.html","marginal sea biome"],["sea-envo-00000016.html","sea"]],"b":[["NCBITaxon%3A67576","Rheinheimera baltica"],["NCBITaxon%3A1123053","Rheinheimera baltica DSM 14885"]]},{"id":"NCBITaxon:1123057","l":"Rhodonellum psychrophilum GCM71 = DSM 17998","na":2,"nb":2,"a":[["fjord-envo-00000039.html","fjord"],["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A336828","Rhodonellum psychrophilum"],["NCBITaxon%3A1123057","Rhodonellum psychrophilum GCM71 = DSM 17998"]]},{"id":"NCBITaxon:1123071","l":"Rubritalea squalenifaciens DSM 18772","na":2,"nb":2,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"],["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A407226","Rubritalea squalenifaciens"],["NCBITaxon%3A1123071","Rubritalea squalenifaciens DSM 18772"]]},{"id":"NCBITaxon:1123075","l":"Ruminococcus gauvreauii DSM 19829","na":2,"nb":2,"a":[["large-intestine-bto-0000706.html","large intestine"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A438033","Ruminococcus gauvreauii"],["NCBITaxon%3A1123075","Ruminococcus gauvreauii DSM 19829"]]},{"id":"NCBITaxon:1123231","l":"Lacicoccus alkaliphilus DSM 16010","na":2,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A148453","Lacicoccus alkaliphilus"],["NCBITaxon%3A1123231","Lacicoccus alkaliphilus DSM 16010"]]},{"id":"NCBITaxon:1123234","l":"Salinimicrobium terrae DSM 17865","na":2,"nb":2,"a":[["saline-lake-envo-00000019.html","saline lake"],["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A470866","Salinimicrobium terrae"],["NCBITaxon%3A1123234","Salinimicrobium terrae DSM 17865"]]},{"id":"NCBITaxon:1123236","l":"Salinimonas chungwhensis DSM 16280","na":2,"nb":2,"a":[["pond-envo-00000033.html","pond"],["saline-evaporation-pond-envo-00000055.html","saline evaporation pond"]],"b":[["NCBITaxon%3A265425","Salinimonas chungwhensis"],["NCBITaxon%3A1123236","Salinimonas chungwhensis DSM 16280"]]},{"id":"NCBITaxon:1123243","l":"Schwartzia succinivorans DSM 10502","na":2,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A55507","Schwartzia succinivorans"],["NCBITaxon%3A1123243","Schwartzia succinivorans DSM 10502"]]},{"id":"NCBITaxon:1123244","l":"Sciscionella marina DSM 45152","na":2,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"]],"b":[["NCBITaxon%3A508770","Sciscionella marina"],["NCBITaxon%3A1123244","Sciscionella marina DSM 45152"]]},{"id":"NCBITaxon:1123250","l":"Selenomonas bovis DSM 23594","na":2,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A416586","Dongibacter bovis"],["NCBITaxon%3A1123250","Selenomonas bovis DSM 23594"]]},{"id":"NCBITaxon:1123251","l":"Serinicoccus marinus DSM 15273","na":2,"nb":2,"a":[["marginal-sea-biome-envo-01000046.html","marginal sea biome"],["sea-envo-00000016.html","sea"]],"b":[["NCBITaxon%3A247333","Serinicoccus marinus"],["NCBITaxon%3A1123251","Serinicoccus marinus DSM 15273"]]},{"id":"NCBITaxon:1123253","l":"Silanimonas lenta DSM 16282","na":2,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"],["mountain-envo-00000081.html","mountain"]],"b":[["NCBITaxon%3A265429","Silanimonas lenta"],["NCBITaxon%3A1123253","Silanimonas lenta DSM 16282"]]},{"id":"NCBITaxon:1123255","l":"Simplicispira psychrophila DSM 11588","na":2,"nb":2,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A80882","Simplicispira psychrophila"],["NCBITaxon%3A1123255","Simplicispira psychrophila DSM 11588"]]},{"id":"NCBITaxon:1123270","l":"Novosphingopyxis baekryungensis DSM 16222","na":2,"nb":2,"a":[["marginal-sea-biome-envo-01000046.html","marginal sea biome"],["sea-envo-00000016.html","sea"]],"b":[["NCBITaxon%3A279369","Novosphingopyxis baekryungensis"],["NCBITaxon%3A1123270","Novosphingopyxis baekryungensis DSM 16222"]]},{"id":"NCBITaxon:1123275","l":"Spirochaeta cellobiosiphila DSM 17781","na":2,"nb":2,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["saline-marsh-envo-00000054.html","saline marsh"]],"b":[["NCBITaxon%3A504483","Spirochaeta cellobiosiphila"],["NCBITaxon%3A1123275","Spirochaeta cellobiosiphila DSM 17781"]]},{"id":"NCBITaxon:1123276","l":"Spirosoma luteum DSM 19990","na":2,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"],["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A431553","Spirosoma luteum"],["NCBITaxon%3A1123276","Spirosoma luteum DSM 19990"]]},{"id":"NCBITaxon:1123278","l":"Spirosoma spitsbergense DSM 19989","na":2,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"],["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A431554","Spirosoma spitsbergense"],["NCBITaxon%3A1123278","Spirosoma spitsbergense DSM 19989"]]},{"id":"NCBITaxon:1123299","l":"Streptococcus castoreus DSM 17536","na":2,"nb":2,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A254786","Streptococcus castoreus"],["NCBITaxon%3A1123299","Streptococcus castoreus DSM 17536"]]},{"id":"NCBITaxon:1123323","l":"Succiniclasticum ruminis DSM 9236","na":2,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A40841","Succiniclasticum ruminis"],["NCBITaxon%3A1123323","Succiniclasticum ruminis DSM 9236"]]},{"id":"NCBITaxon:1123324","l":"Succinivibrio dextrinosolvens DSM 3072","na":2,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A83771","Succinivibrio dextrinosolvens"],["NCBITaxon%3A1123324","Succinivibrio dextrinosolvens DSM 3072"]]},{"id":"NCBITaxon:1123325","l":"Sulfurihydrogenibium subterraneum DSM 15120","na":2,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["gold-mine-envo-00002168.html","gold mine"]],"b":[["NCBITaxon%3A171121","Sulfurihydrogenibium subterraneum"],["NCBITaxon%3A1123325","Sulfurihydrogenibium subterraneum DSM 15120"]]},{"id":"NCBITaxon:1123326","l":"Sulfurospirillum arcachonense DSM 9755","na":2,"nb":2,"a":[["ocean-trench-envo-00000275.html","ocean trench"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A57666","Sulfurospirillum arcachonense"],["NCBITaxon%3A1123326","Sulfurospirillum arcachonense DSM 9755"]]},{"id":"NCBITaxon:1123359","l":"Tetragenococcus muriaticus DSM 15685","na":2,"nb":2,"a":[["food-product-foodon-00001002.html","food product"],["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A64642","Tetragenococcus muriaticus"],["NCBITaxon%3A1123359","Tetragenococcus muriaticus DSM 15685"]]},{"id":"NCBITaxon:1123368","l":"Thermithiobacillus tepidarius DSM 3134","na":2,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A929","Thermithiobacillus tepidarius"],["NCBITaxon%3A1123368","Thermithiobacillus tepidarius DSM 3134"]]},{"id":"NCBITaxon:1123371","l":"Thermodesulfatator atlanticus DSM 21156","na":2,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ridge-envo-00000283.html","ridge"]],"b":[["NCBITaxon%3A501497","Thermodesulfatator atlanticus"],["NCBITaxon%3A1123371","Thermodesulfatator atlanticus DSM 21156"]]},{"id":"NCBITaxon:1123373","l":"Thermodesulfobacterium thermophilum DSM 1276","na":2,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A886","Thermodesulfobacterium thermophilum"],["NCBITaxon%3A1123373","Thermodesulfobacterium thermophilum DSM 1276"]]},{"id":"NCBITaxon:1123380","l":"Thermosipho atlanticus DSM 15807","na":2,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ridge-envo-00000283.html","ridge"]],"b":[["NCBITaxon%3A238991","Thermosipho atlanticus"],["NCBITaxon%3A1123380","Thermosipho atlanticus DSM 15807"]]},{"id":"NCBITaxon:1123405","l":"Tuberibacillus calidus DSM 17572","na":2,"nb":2,"a":[["compost-envo-00002170.html","compost"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A340097","Tuberibacillus calidus"],["NCBITaxon%3A1123405","Tuberibacillus calidus DSM 17572"]]},{"id":"NCBITaxon:1123500","l":"Weissella halotolerans DSM 20190","na":2,"nb":2,"a":[["food-product-foodon-00001002.html","food product"],["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A1615","Weissella halotolerans"],["NCBITaxon%3A1123500","Weissella halotolerans DSM 20190"]]},{"id":"NCBITaxon:1124597","l":"Magnetococcus marinus","na":2,"nb":2,"a":[["brackish-water-envo-00002019.html","brackish water"],["brackish-water-body-envo-01001321.html","brackish water body"]],"b":[["NCBITaxon%3A1124597","Magnetococcus marinus"],["NCBITaxon%3A156889","Magnetococcus marinus MC-1"]]},{"id":"NCBITaxon:1132443","l":"Methylosarcina fibrata AML-C10","na":2,"nb":2,"a":[["landfill-envo-00000533.html","landfill"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A105972","Methylosarcina fibrata"],["NCBITaxon%3A1132443","Methylosarcina fibrata AML-C10"]]},{"id":"NCBITaxon:1160719","l":"Cutibacterium granulosum DSM 20700","na":2,"nb":2,"a":[["sebaceous-gland-bto-0001980.html","sebaceous gland"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["NCBITaxon%3A33011","Cutibacterium granulosum"],["NCBITaxon%3A1160719","Cutibacterium granulosum DSM 20700"]]},{"id":"NCBITaxon:1165090","l":"Imtechella halotolerans","na":2,"nb":2,"a":[["brackish-water-envo-00002019.html","brackish water"],["brackish-water-body-envo-01001321.html","brackish water body"]],"b":[["NCBITaxon%3A1165090","Imtechella halotolerans"],["NCBITaxon%3A946077","Imtechella halotolerans K1"]]},{"id":"NCBITaxon:1168067","l":"Hydrogenovibrio kuenenii DSM 12350","na":2,"nb":2,"a":[["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A63658","Hydrogenovibrio kuenenii"],["NCBITaxon%3A1168067","Hydrogenovibrio kuenenii DSM 12350"]]},{"id":"NCBITaxon:1173061","l":"Geotrichum candidum","na":2,"nb":2,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A104098","Acetobacter peroxydans"],["NCBITaxon%3A1173061","Geotrichum candidum"]]},{"id":"NCBITaxon:1193095","l":"Paucilactobacillus hokkaidonensis","na":2,"nb":2,"a":[["immune-system-bto-0005810.html","immune system"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A1193095","Paucilactobacillus hokkaidonensis"],["NCBITaxon%3A1291742","Paucilactobacillus hokkaidonensis JCM 18461"]]},{"id":"NCBITaxon:119394","l":"Pseudothermotoga thermarum","na":2,"nb":2,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A119394","Pseudothermotoga thermarum"],["NCBITaxon%3A688269","Pseudothermotoga thermarum DSM 5069"]]},{"id":"NCBITaxon:1206734","l":"Nocardia paucivorans NBRC 100373","na":2,"nb":2,"a":[["secretion-bto-0002979.html","secretion"],["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A114259","Nocardia paucivorans"],["NCBITaxon%3A1206734","Nocardia paucivorans NBRC 100373"]]},{"id":"NCBITaxon:1207542","l":"Bifidobacterium bifidum LMG 13195","na":2,"nb":2,"a":[["leukocyte-bto-0000751.html","leukocyte"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"]],"b":[["NCBITaxon%3A1681","Bifidobacterium bifidum"],["NCBITaxon%3A1207542","Bifidobacterium bifidum LMG 13195"]]},{"id":"NCBITaxon:120962","l":"Roseiflexus castenholzii","na":2,"nb":2,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["NCBITaxon%3A120962","Roseiflexus castenholzii"],["NCBITaxon%3A383372","Roseiflexus castenholzii DSM 13941"]]},{"id":"NCBITaxon:1210098","l":"Nocardia vaccinii NBRC 15922","na":2,"nb":2,"a":[["plant-gall-po-0025626.html","plant gall"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["NCBITaxon%3A1822","Nocardia vaccinii"],["NCBITaxon%3A1210098","Nocardia vaccinii NBRC 15922"]]},{"id":"NCBITaxon:1215098","l":"Pseudomonas cremoricolorata DSM 17059 = NBRC 16634","na":2,"nb":2,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["NCBITaxon%3A157783","Pseudomonas cremoricolorata"],["NCBITaxon%3A1215098","Pseudomonas cremoricolorata DSM 17059 = NBRC 16634"]]},{"id":"NCBITaxon:1215103","l":"Pseudomonas indica NBRC 103045","na":2,"nb":2,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A137658","Pseudomonas indica"],["NCBITaxon%3A1215103","Pseudomonas indica NBRC 103045"]]},{"id":"NCBITaxon:1215114","l":"Pseudomonas parafulva NBRC 16636 = DSM 17004","na":2,"nb":2,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["NCBITaxon%3A157782","Pseudomonas parafulva"],["NCBITaxon%3A1215114","Pseudomonas parafulva NBRC 16636 = DSM 17004"]]},{"id":"NCBITaxon:1219042","l":"Novosphingobium capsulatum NBRC 12533","na":2,"nb":2,"a":[["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A13688","Novosphingobium capsulatum"],["NCBITaxon%3A1219042","Novosphingobium capsulatum NBRC 12533"]]},{"id":"NCBITaxon:1219071","l":"Vibrio harveyi NBRC 15634 = ATCC 14126 = KCTC 12724","na":2,"nb":2,"a":[["alimentary-canal-bto-0000058.html","alimentary canal"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A669","Vibrio harveyi"],["NCBITaxon%3A1219071","Vibrio harveyi NBRC 15634 = ATCC 14126 = KCTC 12724"]]},{"id":"NCBITaxon:1220554","l":"Actinomadura chibensis NBRC 106107","na":2,"nb":2,"a":[["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A392828","Actinomadura chibensis"],["NCBITaxon%3A1220554","Actinomadura chibensis NBRC 106107"]]},{"id":"NCBITaxon:1223527","l":"Microbacterium hydrocarbonoxydans NBRC 103074","na":2,"nb":2,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A273678","Microbacterium hydrocarbonoxydans"],["NCBITaxon%3A1223527","Microbacterium hydrocarbonoxydans NBRC 103074"]]},{"id":"NCBITaxon:1224163","l":"Corynebacterium maris DSM 45190","na":2,"nb":2,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"],["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A575200","Corynebacterium maris"],["NCBITaxon%3A1224163","Corynebacterium maris DSM 45190"]]},{"id":"NCBITaxon:1224742","l":"","na":2,"nb":2,"a":[["kidney-bto-0000671.html","kidney"],["renal-cortex-bto-0001166.html","renal cortex"]],"b":[["NCBITaxon%3A680","Vibrio campbellii"],["NCBITaxon%3A1224742","Vibrio campbellii CAIM 519 = NBRC 15631 = ATCC 25920"]]},{"id":"NCBITaxon:1226751","l":"Mycolicibacterium monacense DSM 44395","na":2,"nb":2,"a":[["bronchus-uberon-0002185.html","bronchus"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A85693","Mycolicibacterium monacense"],["NCBITaxon%3A1226751","Mycolicibacterium monacense DSM 44395"]]},{"id":"NCBITaxon:1227812","l":"Piscirickettsia salmonis LF-89 = ATCC VR-1361","na":2,"nb":2,"a":[["head-kidney-bto-0005189.html","head kidney"],["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A1238","Piscirickettsia salmonis"],["NCBITaxon%3A1227812","Piscirickettsia salmonis LF-89 = ATCC VR-1361"]]},{"id":"NCBITaxon:122960","l":"Paenalicyclobacillus herbarius","na":2,"nb":2,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A1120972","Alicyclobacillus herbarius DSM 13609"],["NCBITaxon%3A122960","Paenalicyclobacillus herbarius"]]},{"id":"NCBITaxon:1236548","l":"Bacillus inaquosorum KCTC 13429","na":2,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"],["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A483913","Bacillus inaquosorum"],["NCBITaxon%3A1236548","Bacillus inaquosorum KCTC 13429"]]},{"id":"NCBITaxon:1251","l":"Leuconostoc fallax","na":2,"nb":2,"a":[["plant-resin-po-0025603.html","plant resin"],["animal-manure-envo-00003031.html","animal manure"]],"b":[["NCBITaxon%3A1251","Leuconostoc fallax"],["NCBITaxon%3A907931","Leuconostoc fallax KCTC 3537"]]},{"id":"NCBITaxon:1265311","l":"Mycobacterium arosiense ATCC BAA-1401 = DSM 45069","na":2,"nb":2,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["bone-element-uberon-0001474.html","bone element"]],"b":[["NCBITaxon%3A425468","Mycobacterium arosiense"],["NCBITaxon%3A1265311","Mycobacterium arosiense ATCC BAA-1401 = DSM 45069"]]},{"id":"NCBITaxon:1265504","l":"Curvibacter lanceolatus ATCC 14669","na":2,"nb":2,"a":[["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A86182","Curvibacter lanceolatus"],["NCBITaxon%3A1265504","Curvibacter lanceolatus ATCC 14669"]]},{"id":"NCBITaxon:1265505","l":"Desulfospira joergensenii DSM 10085","na":2,"nb":2,"a":[["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A53329","Desulfospira joergensenii"],["NCBITaxon%3A1265505","Desulfospira joergensenii DSM 10085"]]},{"id":"NCBITaxon:1265507","l":"Succinimonas amylolytica DSM 2873","na":2,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A83769","Succinimonas amylolytica"],["NCBITaxon%3A1265507","Succinimonas amylolytica DSM 2873"]]},{"id":"NCBITaxon:1267754","l":"Corynebacterium urealyticum DSM 7111","na":2,"nb":2,"a":[["kidney-bto-0000671.html","kidney"],["urinary-tract-bto-0001244.html","urinary tract"]],"b":[["NCBITaxon%3A43771","Corynebacterium urealyticum"],["NCBITaxon%3A1267754","Corynebacterium urealyticum DSM 7111"]]},{"id":"NCBITaxon:1278303","l":"Psychromonas macrocephali ATCC BAA-1527","na":2,"nb":2,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A444920","Psychromonas macrocephali"],["NCBITaxon%3A1278303","Psychromonas macrocephali ATCC BAA-1527"]]},{"id":"NCBITaxon:1278309","l":"Amphritea japonica ATCC BAA-1530","na":2,"nb":2,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A452627","Amphritea japonica"],["NCBITaxon%3A1278309","Amphritea japonica ATCC BAA-1530"]]},{"id":"NCBITaxon:1278310","l":"Amphritea balenae ATCC BAA-1529","na":2,"nb":2,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A452629","Amphritea balenae"],["NCBITaxon%3A1278310","Amphritea balenae ATCC BAA-1529"]]},{"id":"NCBITaxon:1278312","l":"Psychromonas aquimarina ATCC BAA-1526","na":2,"nb":2,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A444919","Psychromonas aquimarina"],["NCBITaxon%3A1278312","Psychromonas aquimarina ATCC BAA-1526"]]},{"id":"NCBITaxon:1291048","l":"Thermoanaerobacter thermocopriae JCM 7501","na":2,"nb":2,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A29350","Thermoanaerobacter thermocopriae"],["NCBITaxon%3A1291048","Thermoanaerobacter thermocopriae JCM 7501"]]},{"id":"NCBITaxon:12917","l":"Acidovorax facilis","na":2,"nb":2,"a":[["biome-envo-00000428.html","biome"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A12917","Acidovorax facilis"],["NCBITaxon%3A1872122","Acidovorax sp."]]},{"id":"NCBITaxon:1292027","l":"Stutzerimonas azotifigens DSM 17556","na":2,"nb":2,"a":[["compost-envo-00002170.html","compost"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A291995","Stutzerimonas azotifigens"],["NCBITaxon%3A1292027","Stutzerimonas azotifigens DSM 17556"]]},{"id":"NCBITaxon:1297617","l":"Intestinimonas butyriciproducens","na":2,"nb":2,"a":[["enterocyte-bto-0000398.html","enterocyte"],["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A1297617","Intestinimonas butyriciproducens"],["NCBITaxon%3A1470357","Intestinimonas butyriciproducens AP4"]]},{"id":"NCBITaxon:1313303","l":"Xanthomonas oryzae ATCC 35933","na":2,"nb":2,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["NCBITaxon%3A347","Xanthomonas oryzae"],["NCBITaxon%3A1313303","Xanthomonas oryzae ATCC 35933"]]},{"id":"NCBITaxon:132144","l":"Candidatus Glomeribacter gigasporarum","na":2,"nb":2,"a":[["marine-water-body-envo-00001999.html","marine water body"],["stream-envo-00000023.html","stream"]],"b":[["NCBITaxon%3A132144","Candidatus Glomeribacter gigasporarum"],["NCBITaxon%3A1070319","Candidatus Glomeribacter gigasporarum BEG34"]]},{"id":"NCBITaxon:132249","l":"Nocardia veterana","na":2,"nb":2,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A132249","Nocardia veterana"],["NCBITaxon%3A1206743","Nocardia veterana NBRC 100344"]]},{"id":"NCBITaxon:134034","l":"Corynebacterium freneyi","na":2,"nb":2,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A134034","Corynebacterium freneyi"],["NCBITaxon%3A1287475","Corynebacterium freneyi DNF00450"]]},{"id":"NCBITaxon:1349763","l":"Curvibacter delicatus NBRC 14919","na":2,"nb":2,"a":[["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A80879","Curvibacter delicatus"],["NCBITaxon%3A1349763","Curvibacter delicatus NBRC 14919"]]},{"id":"NCBITaxon:1358026","l":"Leifsonia aquatica ATCC 14665","na":2,"nb":2,"a":[["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A144185","Leifsonia aquatica"],["NCBITaxon%3A1358026","Leifsonia aquatica ATCC 14665"]]},{"id":"NCBITaxon:1366054","l":"Nannocystis exedens subsp. cinnabaria","na":2,"nb":2,"a":[["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A54","Nannocystis exedens"],["NCBITaxon%3A1366054","Nannocystis exedens subsp. cinnabaria"]]},{"id":"NCBITaxon:1367848","l":"Cronobacter sakazakii NCIMB 8272","na":2,"nb":2,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A28141","Cronobacter sakazakii"],["NCBITaxon%3A1367848","Cronobacter sakazakii NCIMB 8272"]]},{"id":"NCBITaxon:1385511","l":"Pontibacillus marinus BH030004 = DSM 16465","na":2,"nb":2,"a":[["pond-envo-00000033.html","pond"],["saline-evaporation-pond-envo-00000055.html","saline evaporation pond"]],"b":[["NCBITaxon%3A273164","Pontibacillus marinus"],["NCBITaxon%3A1385511","Pontibacillus marinus BH030004 = DSM 16465"]]},{"id":"NCBITaxon:1385515","l":"Lysobacter defluvii IMMIB APB-9 = DSM 18482","na":2,"nb":2,"a":[["landfill-envo-00000533.html","landfill"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A1385515","Lysobacter defluvii IMMIB APB-9 = DSM 18482"],["NCBITaxon%3A391738","Novilysobacter defluvii"]]},{"id":"NCBITaxon:1385984","l":"Exiguobacterium chiriqhucha","na":2,"nb":2,"a":[["water-ice-envo-01000277.html","water ice"],["peak-envo-00000480.html","peak"]],"b":[["NCBITaxon%3A1385984","Exiguobacterium chiriqhucha"],["NCBITaxon%3A1345023","Exiguobacterium chiriqhucha RW-2"]]},{"id":"NCBITaxon:1397696","l":"Exiguobacterium marinum DSM 16307","na":2,"nb":2,"a":[["beach-envo-00000091.html","beach"],["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["NCBITaxon%3A273528","Exiguobacterium marinum"],["NCBITaxon%3A1397696","Exiguobacterium marinum DSM 16307"]]},{"id":"NCBITaxon:1401","l":"Paenibacillus lautus","na":2,"nb":2,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A1401","Paenibacillus lautus"],["NCBITaxon%3A1349780","Paenibacillus lautus NBRC 15380"]]},{"id":"NCBITaxon:1404341","l":"Sphingobium scionense","na":2,"nb":2,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"],["oil-envo-00002985.html","oil"]],"b":[["NCBITaxon%3A1206997","Pseudonocardia nematodicida"],["NCBITaxon%3A1404341","Sphingobium scionense"]]},{"id":"NCBITaxon:1408191","l":"Corynebacterium deserti","na":2,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"],["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A1408191","Corynebacterium deserti"],["NCBITaxon%3A931089","Corynebacterium deserti GIMN1.010"]]},{"id":"NCBITaxon:1408420","l":"Paracidovorax oryzae ATCC 19882","na":2,"nb":2,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["NCBITaxon%3A862720","Paracidovorax oryzae"],["NCBITaxon%3A1408420","Paracidovorax oryzae ATCC 19882"]]},{"id":"NCBITaxon:1408424","l":"Alkalihalobacillus bogoriensis ATCC BAA-922","na":2,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A1408424","Alkalihalobacillus bogoriensis ATCC BAA-922"],["NCBITaxon%3A246272","Alkalihalobacterium bogoriense"]]},{"id":"NCBITaxon:1423144","l":"Phaeobacter gallaeciensis DSM 26640","na":2,"nb":2,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A60890","Phaeobacter gallaeciensis"],["NCBITaxon%3A1423144","Phaeobacter gallaeciensis DSM 26640"]]},{"id":"NCBITaxon:1435036","l":"Acinetobacter bohemicus","na":2,"nb":2,"a":[["sludge-envo-00002044.html","sludge"],["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A1435036","Acinetobacter bohemicus"],["NCBITaxon%3A1217715","Acinetobacter bohemicus ANC 3994"]]},{"id":"NCBITaxon:1449351","l":"Roseivivax isoporae LMG 25204","na":2,"nb":2,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A591206","Roseivivax isoporae"],["NCBITaxon%3A1449351","Roseivivax isoporae LMG 25204"]]},{"id":"NCBITaxon:1462938","l":"Rickettsia tamurae subsp. buchneri","na":2,"nb":2,"a":[["embryonic-cell-line-bto-0000669.html","embryonic cell line"],["ovary-bto-0000975.html","ovary"]],"b":[["NCBITaxon%3A334545","Rickettsia tamurae"],["NCBITaxon%3A1462938","Rickettsia tamurae subsp. buchneri"]]},{"id":"NCBITaxon:1523","l":"Clostridium longisporum","na":2,"nb":2,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1523","Clostridium longisporum"],["NCBITaxon%3A1761781","Clostridium sp. DSM 8431"]]},{"id":"NCBITaxon:1527","l":"Anaerocolumna aminovalerica","na":2,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"]],"b":[["NCBITaxon%3A1527","Anaerocolumna aminovalerica"],["NCBITaxon%3A1121297","Anaerocolumna aminovalerica DSM 1283"]]},{"id":"NCBITaxon:153151","l":"Parageobacillus toebii","na":2,"nb":2,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A153151","Parageobacillus toebii"],["NCBITaxon%3A1223503","Parageobacillus toebii NBRC 107807"]]},{"id":"NCBITaxon:1563","l":"Desulfosporosinus orientis","na":2,"nb":2,"a":[["grassland-soil-envo-00005750.html","grassland soil"],["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["NCBITaxon%3A1563","Desulfosporosinus orientis"],["NCBITaxon%3A768706","Desulfosporosinus orientis DSM 765"]]},{"id":"NCBITaxon:156889","l":"Magnetococcus marinus MC-1","na":2,"nb":2,"a":[["estuary-envo-00000045.html","estuary"],["marine-neritic-zone-envo-00000206.html","marine neritic zone"]],"b":[["NCBITaxon%3A1124597","Magnetococcus marinus"],["NCBITaxon%3A156889","Magnetococcus marinus MC-1"]]},{"id":"NCBITaxon:156977","l":"Microbacterium resistens","na":2,"nb":2,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A156977","Microbacterium resistens"],["NCBITaxon%3A1223505","Microbacterium resistens NBRC 103078"]]},{"id":"NCBITaxon:161890","l":"Corynebacterium mastitidis","na":2,"nb":2,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["NCBITaxon%3A161890","Corynebacterium mastitidis"],["NCBITaxon%3A1121365","Corynebacterium mastitidis DSM 44356"]]},{"id":"NCBITaxon:162426","l":"Microbacterium hominis","na":2,"nb":2,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A162426","Microbacterium hominis"],["NCBITaxon%3A1348634","Microbacterium hominis NBRC 15708"]]},{"id":"NCBITaxon:1626","l":"Lacticaseibacillus sharpeae","na":2,"nb":2,"a":[["pig-manure-envo-00003860.html","pig manure"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["NCBITaxon%3A1626","Lacticaseibacillus sharpeae"],["NCBITaxon%3A1291052","Lacticaseibacillus sharpeae JCM 1186 = DSM 20505"]]},{"id":"NCBITaxon:164759","l":"Diaphorobacter nitroreducens","na":2,"nb":2,"a":[["activated-sludge-envo-00002046.html","activated sludge"],["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A164759","Diaphorobacter nitroreducens"],["NCBITaxon%3A1236961","Diaphorobacter nitroreducens JCM 11421"]]},{"id":"NCBITaxon:165","l":"Treponema saccharophilum","na":2,"nb":2,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["lagoon-envo-00000038.html","lagoon"]],"b":[["NCBITaxon%3A165","Treponema saccharophilum"],["NCBITaxon%3A907348","Treponema saccharophilum DSM 2985"]]},{"id":"NCBITaxon:169679","l":"Clostridium saccharobutylicum","na":2,"nb":2,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"]],"b":[["NCBITaxon%3A169679","Clostridium saccharobutylicum"],["NCBITaxon%3A1345695","Clostridium saccharobutylicum DSM 13864"]]},{"id":"NCBITaxon:176292","l":"Secundilactobacillus malefermentans","na":2,"nb":2,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["NCBITaxon%3A176292","Secundilactobacillus malefermentans"],["NCBITaxon%3A1122149","Secundilactobacillus malefermentans DSM 5705 = KCTC 3548"]]},{"id":"NCBITaxon:180311","l":"Hespellia stercorisuis","na":2,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["NCBITaxon%3A180311","Hespellia stercorisuis"],["NCBITaxon%3A1121950","Hespellia stercorisuis DSM 15480"]]},{"id":"NCBITaxon:184067","l":"Kushneria indalinina","na":2,"nb":2,"a":[["pond-envo-00000033.html","pond"],["saline-evaporation-pond-envo-00000055.html","saline evaporation pond"]],"b":[["NCBITaxon%3A184067","Kushneria indalinina"],["NCBITaxon%3A1122140","Kushneria indalinina DSM 14324"]]},{"id":"NCBITaxon:1863","l":"Dermatophilus congolensis","na":2,"nb":2,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["NCBITaxon%3A1863","Dermatophilus congolensis"],["NCBITaxon%3A1121387","Dermatophilus congolensis DSM 44180 = NBRC 105199"]]},{"id":"NCBITaxon:187101","l":"Sneathia vaginalis","na":2,"nb":2,"a":[["reproductive-system-bto-0000081.html","reproductive system"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A187101","Sneathia vaginalis"],["NCBITaxon%3A553161","Sneathia vaginalis JCVIHMP001"]]},{"id":"NCBITaxon:1871063","l":"Aeromicrobium sp.","na":2,"nb":2,"a":[["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A2708114","Aeromicrobium panacisoli"],["NCBITaxon%3A1871063","Aeromicrobium sp."]]},{"id":"NCBITaxon:190485","l":"Xanthomonas campestris pv. campestris (strain ATCC 33913 / DSM 3586 / NCPPB 528 / LMG 568 / P 25)","na":2,"nb":2,"a":[["fruit-bto-0000486.html","fruit"],["vascular-tissue-bto-0001432.html","vascular tissue"]],"b":[["NCBITaxon%3A339","Xanthomonas campestris"],["NCBITaxon%3A190485","Xanthomonas campestris pv. campestris str. ATCC 33913"]]},{"id":"NCBITaxon:190650","l":"Caulobacter vibrioides (strain ATCC 19089 / CIP 103742 / CB 15)","na":2,"nb":2,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A155892","Caulobacter vibrioides"],["NCBITaxon%3A190650","Caulobacter vibrioides CB15"]]},{"id":"NCBITaxon:194963","l":"Sinorhizobium americanum","na":2,"nb":2,"a":[["root-nodule-envo-01000164.html","root nodule"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A194963","Sinorhizobium americanum"],["NCBITaxon%3A1408224","Sinorhizobium americanum CCGM7"]]},{"id":"NCBITaxon:204470","l":"Paenalicyclobacillus pomorum","na":2,"nb":2,"a":[["surface-water-envo-00002042.html","surface water"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["NCBITaxon%3A1111479","Alicyclobacillus pomorum DSM 14955"],["NCBITaxon%3A204470","Paenalicyclobacillus pomorum"]]},{"id":"NCBITaxon:209897","l":"Afifella pfennigii","na":2,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["NCBITaxon%3A209897","Afifella pfennigii"],["NCBITaxon%3A1120956","Afifella pfennigii DSM 17143"]]},{"id":"NCBITaxon:210512","l":"Sandarakinorhabdus limnophila","na":2,"nb":2,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["water-body-envo-00000063.html","water body"]],"b":[["NCBITaxon%3A210512","Sandarakinorhabdus limnophila"],["NCBITaxon%3A1123240","Sandarakinorhabdus limnophila DSM 17366"]]},{"id":"NCBITaxon:216432","l":"Croceibacter atlanticus HTCC2559","na":2,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["NCBITaxon%3A313588","Croceibacter atlanticus"],["NCBITaxon%3A216432","Croceibacter atlanticus HTCC2559"]]},{"id":"NCBITaxon:218205","l":"Garciella nitratireducens","na":2,"nb":2,"a":[["ocean-trench-envo-00000275.html","ocean trench"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A218205","Garciella nitratireducens"],["NCBITaxon%3A1121911","Garciella nitratireducens DSM 15102"]]},{"id":"NCBITaxon:2200","l":"Methanoculleus thermophilus","na":2,"nb":2,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"]],"b":[["NCBITaxon%3A2200","Methanoculleus thermophilus"],["NCBITaxon%3A1122231","Methanoculleus thermophilus DSM 2373"]]},{"id":"NCBITaxon:221109","l":"Oceanobacillus iheyensis HTE831","na":2,"nb":2,"a":[["duodenum-bto-0000365.html","duodenum"],["kidney-bto-0000671.html","kidney"]],"b":[["NCBITaxon%3A182710","Oceanobacillus iheyensis"],["NCBITaxon%3A221109","Oceanobacillus iheyensis HTE831"]]},{"id":"NCBITaxon:223390","l":"Ancylobacter polymorphus","na":2,"nb":2,"a":[["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"]],"b":[["NCBITaxon%3A286438","Agromyces hippuratus"],["NCBITaxon%3A223390","Ancylobacter polymorphus"]]},{"id":"NCBITaxon:2264","l":"Thermococcus celer","na":2,"nb":2,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A2264","Thermococcus celer"],["NCBITaxon%3A1293037","Thermococcus celer Vu 13 = JCM 8558"]]},{"id":"NCBITaxon:2303","l":"Thermoplasma acidophilum","na":2,"nb":2,"a":[["paddy-field-envo-00000297.html","paddy field"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["NCBITaxon%3A2303","Thermoplasma acidophilum"],["NCBITaxon%3A273075","Thermoplasma acidophilum DSM 1728"]]},{"id":"NCBITaxon:231233","l":"Streptococcus devriesei","na":2,"nb":2,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A231233","Streptococcus devriesei"],["NCBITaxon%3A1123300","Streptococcus devriesei DSM 19639"]]},{"id":"NCBITaxon:2369","l":"Arhodomonas aquaeolei","na":2,"nb":2,"a":[["small-river-biome-envo-00000890.html","small river biome"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["NCBITaxon%3A2369","Arhodomonas aquaeolei"],["NCBITaxon%3A1121016","Arhodomonas aquaeolei DSM 8974"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii (strain ATCC 43067 / DSM 2661 / JAL-1 / JCM 10045 / NBRC 100440)","na":2,"nb":2,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A2190","Methanocaldococcus jannaschii"],["NCBITaxon%3A243232","Methanocaldococcus jannaschii DSM 2661"]]},{"id":"NCBITaxon:244592","l":"Roseibium alexandrii DFL-11","na":2,"nb":2,"a":[["sandstone-envo-00002055.html","sandstone"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["NCBITaxon%3A388408","Roseibium alexandrii"],["NCBITaxon%3A244592","Roseibium alexandrii DFL-11"]]},{"id":"NCBITaxon:266265","l":"","na":2,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["landfill-envo-00000533.html","landfill"]],"b":[["NCBITaxon%3A36873","Paraburkholderia xenovorans"],["NCBITaxon%3A266265","Paraburkholderia xenovorans LB400"]]},{"id":"NCBITaxon:269482","l":"Burkholderia vietnamiensis G4","na":2,"nb":2,"a":[["air-envo-00002005.html","air"],["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A60552","Burkholderia vietnamiensis"],["NCBITaxon%3A269482","Burkholderia vietnamiensis G4"]]},{"id":"NCBITaxon:271848","l":"Burkholderia thailandensis E264","na":2,"nb":2,"a":[["needle-bto-0000917.html","needle"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A57975","Burkholderia thailandensis"],["NCBITaxon%3A271848","Burkholderia thailandensis E264"]]},{"id":"NCBITaxon:272161","l":"Arthrobacter stackebrandtii","na":2,"nb":2,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A272161","Arthrobacter stackebrandtii"],["NCBITaxon%3A1302660","Arthrobacter stackebrandtii Ln5.10"]]},{"id":"NCBITaxon:2746","l":"Halomonas elongata","na":2,"nb":2,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"],["saline-water-body-envo-01001319.html","saline water body"]],"b":[["NCBITaxon%3A2746","Halomonas elongata"],["NCBITaxon%3A768066","Halomonas elongata DSM 2581"]]},{"id":"NCBITaxon:28128","l":"Prevotella corporis","na":2,"nb":2,"a":[["environmental-feature-envo-00002297.html","environmental feature"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A28128","Prevotella corporis"],["NCBITaxon%3A1122981","Prevotella corporis DSM 18810 = JCM 8529"]]},{"id":"NCBITaxon:28172","l":"Vibrio metschnikovii","na":2,"nb":2,"a":[["heated-burned-habitatmech-bacdive-8bf2766463.html","Heated-Burned"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A28172","Vibrio metschnikovii"],["NCBITaxon%3A675813","Vibrio metschnikovii CIP 69.14"]]},{"id":"NCBITaxon:282199","l":"Nereida ignava","na":2,"nb":2,"a":[["sandstone-envo-00002055.html","sandstone"],["bile-bto-0000121.html","bile"]],"b":[["NCBITaxon%3A282199","Nereida ignava"],["NCBITaxon%3A1122600","Nereida ignava DSM 16309"]]},{"id":"NCBITaxon:28223","l":"Desulfobacula toluolica","na":2,"nb":2,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A28223","Desulfobacula toluolica"],["NCBITaxon%3A651182","Desulfobacula toluolica Tol2"]]},{"id":"NCBITaxon:28229","l":"Colwellia psychrerythraea","na":2,"nb":2,"a":[["egg-food-product-foodon-00001274.html","egg food product"],["fumarole-envo-00000216.html","fumarole"]],"b":[["NCBITaxon%3A28229","Colwellia psychrerythraea"],["NCBITaxon%3A167879","Colwellia psychrerythraea 34H"]]},{"id":"NCBITaxon:28254","l":"Marinomonas communis","na":2,"nb":2,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A2743","Marinobacter nauticus"],["NCBITaxon%3A28254","Marinomonas communis"]]},{"id":"NCBITaxon:283166","l":"Bartonella henselae str. Houston-1","na":2,"nb":2,"a":[["endothelial-cell-bto-0001176.html","endothelial cell"],["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["NCBITaxon%3A38323","Bartonella henselae"],["NCBITaxon%3A283166","Bartonella henselae str. Houston-1"]]},{"id":"NCBITaxon:28446","l":"Anaerotignum propionicum","na":2,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["NCBITaxon%3A28446","Anaerotignum propionicum"],["NCBITaxon%3A991789","Anaerotignum propionicum DSM 1682"]]},{"id":"NCBITaxon:285106","l":"Tepidimicrobium ferriphilum","na":2,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["NCBITaxon%3A285106","Tepidimicrobium ferriphilum"],["NCBITaxon%3A1123351","Tepidimicrobium ferriphilum DSM 16624"]]},{"id":"NCBITaxon:292806","l":"Ureibacillus massiliensis","na":2,"nb":2,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["NCBITaxon%3A292806","Ureibacillus massiliensis"],["NCBITaxon%3A1211035","Ureibacillus massiliensis 4400831 = CIP 108448 = CCUG 49529"]]},{"id":"NCBITaxon:29292","l":"Pyrococcus abyssi","na":2,"nb":2,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A29292","Pyrococcus abyssi"],["NCBITaxon%3A272844","Pyrococcus abyssi GE5"]]},{"id":"NCBITaxon:29344","l":"Caloramator fervidus","na":2,"nb":2,"a":[["park-envo-00000562.html","park"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A29344","Caloramator fervidus"],["NCBITaxon%3A1121261","Caloramator fervidus DSM 5463"]]},{"id":"NCBITaxon:29364","l":"[Clostridium] polysaccharolyticum","na":2,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A29364","[Clostridium] polysaccharolyticum"],["NCBITaxon%3A1121329","[Clostridium] polysaccharolyticum DSM 1801"]]},{"id":"NCBITaxon:29446","l":"Xanthomonas sp.","na":2,"nb":2,"a":[["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["NCBITaxon%3A1720302","Xanthomonas massiliensis"],["NCBITaxon%3A29446","Xanthomonas sp."]]},{"id":"NCBITaxon:304371","l":"Methanocella paludicola SANAE","na":2,"nb":2,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["NCBITaxon%3A570267","Methanocella paludicola"],["NCBITaxon%3A304371","Methanocella paludicola SANAE"]]},{"id":"NCBITaxon:309807","l":"Salinibacter ruber DSM 13855","na":2,"nb":2,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A146919","Salinibacter ruber"],["NCBITaxon%3A309807","Salinibacter ruber DSM 13855"]]},{"id":"NCBITaxon:309889","l":"Deinococcus yavapaiensis","na":2,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"],["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A309889","Deinococcus yavapaiensis"],["NCBITaxon%3A694435","Deinococcus yavapaiensis KR-236"]]},{"id":"NCBITaxon:313594","l":"Polaribacter irgensii 23-P","na":2,"nb":2,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["NCBITaxon%3A531","Polaribacter irgensii"],["NCBITaxon%3A313594","Polaribacter irgensii 23-P"]]},{"id":"NCBITaxon:314345","l":"Mariprofundus ferrooxydans PV-1","na":2,"nb":2,"a":[["filament-bto-0000463.html","filament"],["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A314344","Mariprofundus ferrooxydans"],["NCBITaxon%3A314345","Mariprofundus ferrooxydans PV-1"]]},{"id":"NCBITaxon:316274","l":"Herpetosiphon aurantiacus DSM 785","na":2,"nb":2,"a":[["filament-bto-0000463.html","filament"],["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A65","Herpetosiphon aurantiacus"],["NCBITaxon%3A316274","Herpetosiphon aurantiacus DSM 785"]]},{"id":"NCBITaxon:320502","l":"Acetivibrio alkalicellulosi","na":2,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A320502","Acetivibrio alkalicellulosi"],["NCBITaxon%3A1002220","Acetivibrio alkalicellulosi DSM 17461"]]},{"id":"NCBITaxon:323097","l":"Nitrobacter hamburgensis X14","na":2,"nb":2,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A912","Nitrobacter hamburgensis"],["NCBITaxon%3A323097","Nitrobacter hamburgensis X14"]]},{"id":"NCBITaxon:3381696","l":"Methanothermobacter sp. DSM 3267","na":2,"nb":2,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["NCBITaxon%3A3381696","Methanothermobacter sp. DSM 3267"],["NCBITaxon%3A145262","Methanothermobacter thermautotrophicus"]]},{"id":"NCBITaxon:33885","l":"Microbacterium lacticum","na":2,"nb":2,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["NCBITaxon%3A33885","Microbacterium lacticum"],["NCBITaxon%3A596316","Microbacterium lacticum SK124"]]},{"id":"NCBITaxon:33936","l":"Aeribacillus pallidus","na":2,"nb":2,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["organic-waste-material-envo-00002873.html","organic waste material"]],"b":[["NCBITaxon%3A33936","Aeribacillus pallidus"],["NCBITaxon%3A1196032","Aeribacillus pallidus CIC9"]]},{"id":"NCBITaxon:33946","l":"Kurthia gibsonii","na":2,"nb":2,"a":[["area-of-tundra-envo-00000112.html","area of tundra"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["NCBITaxon%3A33946","Kurthia gibsonii"],["NCBITaxon%3A1650","Kurthia zopfii"]]},{"id":"NCBITaxon:33954","l":"Clostridium magnum","na":2,"nb":2,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"]],"b":[["NCBITaxon%3A33954","Clostridium magnum"],["NCBITaxon%3A1121326","Clostridium magnum DSM 2767"]]},{"id":"NCBITaxon:349307","l":"","na":2,"nb":2,"a":[["rice-field-envo-00000296.html","rice field"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["NCBITaxon%3A2224","Methanothrix thermoacetophila"],["NCBITaxon%3A349307","Methanothrix thermoacetophila PT"]]},{"id":"NCBITaxon:350688","l":"Alkaliphilus oremlandii OhILAs","na":2,"nb":2,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["NCBITaxon%3A461876","Alkaliphilus oremlandii"],["NCBITaxon%3A350688","Alkaliphilus oremlandii OhILAs"]]},{"id":"NCBITaxon:356828","l":"Alloscardovia criceti","na":2,"nb":2,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A356828","Alloscardovia criceti"],["NCBITaxon%3A1122228","Alloscardovia criceti DSM 17774"]]},{"id":"NCBITaxon:357809","l":"Lachnoclostridium phytofermentans ISDg","na":2,"nb":2,"a":[["reservoir-envo-00000025.html","reservoir"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A66219","Lachnoclostridium phytofermentans"],["NCBITaxon%3A357809","Lachnoclostridium phytofermentans ISDg"]]},{"id":"NCBITaxon:35786","l":"Coprothermobacter proteolyticus","na":2,"nb":2,"a":[["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["NCBITaxon%3A35786","Coprothermobacter proteolyticus"],["NCBITaxon%3A309798","Coprothermobacter proteolyticus DSM 5265"]]},{"id":"NCBITaxon:358766","l":"","na":2,"nb":2,"a":[["marsh-envo-00000035.html","marsh"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A358766","Methanoregula boonei"],["NCBITaxon%3A456442","Methanoregula boonei 6A8"]]},{"id":"NCBITaxon:369723","l":"Salinispora tropica CNB-440","na":2,"nb":2,"a":[["coarse-beach-sand-envo-00002148.html","coarse beach sand"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A168695","Salinispora tropica"],["NCBITaxon%3A369723","Salinispora tropica CNB-440"]]},{"id":"NCBITaxon:376805","l":"Phocaeicola salanitronis","na":2,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"],["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["NCBITaxon%3A376805","Phocaeicola salanitronis"],["NCBITaxon%3A667015","Phocaeicola salanitronis DSM 18170"]]},{"id":"NCBITaxon:383629","l":"Phaeobacter inhibens 2.10","na":2,"nb":2,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A221822","Phaeobacter inhibens"],["NCBITaxon%3A383629","Phaeobacter inhibens 2.10"]]},{"id":"NCBITaxon:388051","l":"Cupriavidus sp. amp6","na":2,"nb":2,"a":[["environmental-system-envo-01000254.html","environmental system"],["national-wildlife-refuge-envo-00000364.html","national wildlife refuge"]],"b":[["NCBITaxon%3A2821359","Cupriavidus phytohabitans"],["NCBITaxon%3A388051","Cupriavidus sp. amp6"]]},{"id":"NCBITaxon:391165","l":"Granulibacter bethesdensis CGDNIH1","na":2,"nb":2,"a":[["lymph-node-bto-0000784.html","lymph node"],["phagocyte-bto-0001044.html","phagocyte"]],"b":[["NCBITaxon%3A364410","Granulibacter bethesdensis"],["NCBITaxon%3A391165","Granulibacter bethesdensis CGDNIH1"]]},{"id":"NCBITaxon:391587","l":"Kordia algicida OT-1","na":2,"nb":2,"a":[["coral-reef-envo-00000150.html","coral reef"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A221066","Kordia algicida"],["NCBITaxon%3A391587","Kordia algicida OT-1"]]},{"id":"NCBITaxon:392499","l":"Rhizorhabdus wittichii RW1","na":2,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["NCBITaxon%3A160791","Rhizorhabdus wittichii"],["NCBITaxon%3A392499","Rhizorhabdus wittichii RW1"]]},{"id":"NCBITaxon:393664","l":"","na":2,"nb":2,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A393664","Aliirhizobium cellulosilyticum"],["NCBITaxon%3A1368426","Aliirhizobium cellulosilyticum ALA10B2"]]},{"id":"NCBITaxon:393762","l":"Natronincola ferrireducens","na":2,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A393762","Natronincola ferrireducens"],["NCBITaxon%3A1122595","Natronincola ferrireducens DSM 18346"]]},{"id":"NCBITaxon:394503","l":"Ruminiclostridium cellulolyticum H10","na":2,"nb":2,"a":[["agricultural-waste-material-envo-01000371.html","agricultural waste material"],["compost-envo-00002170.html","compost"]],"b":[["NCBITaxon%3A1521","Ruminiclostridium cellulolyticum"],["NCBITaxon%3A394503","Ruminiclostridium cellulolyticum H10"]]},{"id":"NCBITaxon:39490","l":"Eubacterium ramulus","na":2,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A39490","Eubacterium ramulus"],["NCBITaxon%3A1256908","Eubacterium ramulus ATCC 29099"]]},{"id":"NCBITaxon:395964","l":"Methylocapsa acidiphila B2","na":2,"nb":2,"a":[["wetland-area-envo-00000043.html","wetland area"],["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A133552","Methylocapsa acidiphila"],["NCBITaxon%3A395964","Methylocapsa acidiphila B2"]]},{"id":"NCBITaxon:398579","l":"Shewanella pealeana ATCC 700345","na":2,"nb":2,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["gland-bto-0000522.html","gland"]],"b":[["NCBITaxon%3A70864","Shewanella pealeana"],["NCBITaxon%3A398579","Shewanella pealeana ATCC 700345"]]},{"id":"NCBITaxon:398580","l":"Dinoroseobacter shibae DFL 12 = DSM 16493","na":2,"nb":2,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["stromatolite-mat-envo-00002157.html","stromatolite mat"]],"b":[["NCBITaxon%3A215813","Dinoroseobacter shibae"],["NCBITaxon%3A398580","Dinoroseobacter shibae DFL 12 = DSM 16493"]]},{"id":"NCBITaxon:398720","l":"Leeuwenhoekiella blandensis MED217","na":2,"nb":2,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A360293","Leeuwenhoekiella blandensis"],["NCBITaxon%3A398720","Leeuwenhoekiella blandensis MED217"]]},{"id":"NCBITaxon:39956","l":"Methylobacterium mesophilicum","na":2,"nb":2,"a":[["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A39956","Methylobacterium mesophilicum"],["NCBITaxon%3A908290","Methylobacterium mesophilicum SR1.6/6"]]},{"id":"NCBITaxon:400667","l":"","na":2,"nb":2,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"],["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A400667","Acinetobacter baumannii ATCC 17978"]]},{"id":"NCBITaxon:40091","l":"Helcococcus kunzii","na":2,"nb":2,"a":[["foot-bto-0000476.html","foot"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A40091","Helcococcus kunzii"],["NCBITaxon%3A883114","Helcococcus kunzii ATCC 51366"]]},{"id":"NCBITaxon:406327","l":"","na":2,"nb":2,"a":[["estuary-envo-00000045.html","estuary"],["mudflat-envo-00000192.html","mudflat"]],"b":[["NCBITaxon%3A2187","Methanococcus vannielii"],["NCBITaxon%3A406327","Methanococcus vannielii SB"]]},{"id":"NCBITaxon:411461","l":"Dorea formicigenerans ATCC 27755","na":2,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["NCBITaxon%3A39486","Dorea formicigenerans"],["NCBITaxon%3A411461","Dorea formicigenerans ATCC 27755"]]},{"id":"NCBITaxon:411462","l":"Dorea longicatena DSM 13814","na":2,"nb":2,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"]],"b":[["NCBITaxon%3A88431","Dorea longicatena"],["NCBITaxon%3A411462","Dorea longicatena DSM 13814"]]},{"id":"NCBITaxon:411463","l":"Eubacterium ventriosum ATCC 27560","na":2,"nb":2,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["NCBITaxon%3A39496","Eubacterium ventriosum"],["NCBITaxon%3A411463","Eubacterium ventriosum ATCC 27560"]]},{"id":"NCBITaxon:411469","l":"Anaerobutyricum hallii DSM 3353","na":2,"nb":2,"a":[["cow-shed-envo-00003041.html","cow shed"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["NCBITaxon%3A39488","Anaerobutyricum hallii"],["NCBITaxon%3A411469","Anaerobutyricum hallii DSM 3353"]]},{"id":"NCBITaxon:411902","l":"Enterocloster bolteae ATCC BAA-613","na":2,"nb":2,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"]],"b":[["NCBITaxon%3A208479","Enterocloster bolteae"],["NCBITaxon%3A411902","Enterocloster bolteae ATCC BAA-613"]]},{"id":"NCBITaxon:411903","l":"Collinsella aerofaciens ATCC 25986","na":2,"nb":2,"a":[["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"],["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A74426","Collinsella aerofaciens"],["NCBITaxon%3A411903","Collinsella aerofaciens ATCC 25986"]]},{"id":"NCBITaxon:41899","l":"Burkholderia plantarii","na":2,"nb":2,"a":[["panicle-bto-0005436.html","panicle"],["seedling-bto-0001228.html","seedling"]],"b":[["NCBITaxon%3A41899","Burkholderia plantarii"],["NCBITaxon%3A796107","Burkholderia plantarii MAFF 301723"]]},{"id":"NCBITaxon:420662","l":"Methylibium petroleiphilum PM1","na":2,"nb":2,"a":[["compost-biofilter-envo-00002153.html","compost biofilter"],["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A105560","Methylibium petroleiphilum"],["NCBITaxon%3A420662","Methylibium petroleiphilum PM1"]]},{"id":"NCBITaxon:420952","l":"Paraburkholderia bryophila","na":2,"nb":2,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A420952","Paraburkholderia bryophila"],["NCBITaxon%3A1169143","Paraburkholderia bryophila 376MFSha3.1"]]},{"id":"NCBITaxon:42256","l":"Rubrobacter radiotolerans","na":2,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["desert-sand-envo-00005800.html","desert sand"]],"b":[["NCBITaxon%3A42256","Rubrobacter radiotolerans"],["NCBITaxon%3A643560","Rubrobacter radiotolerans DSM 5868"]]},{"id":"NCBITaxon:424718","l":"Shigella flexneri 5a","na":2,"nb":2,"a":[["waste-treatment-plant-envo-00002272.html","waste treatment plant"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["NCBITaxon%3A424718","Shigella flexneri 5a"],["NCBITaxon%3A1086030","Shigella flexneri 5a str. M90T"]]},{"id":"NCBITaxon:426128","l":"Natronincola peptidivorans","na":2,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A426128","Natronincola peptidivorans"],["NCBITaxon%3A1122597","Natronincola peptidivorans DSM 18979"]]},{"id":"NCBITaxon:435590","l":"Phocaeicola vulgatus ATCC 8482","na":2,"nb":2,"a":[["bay-envo-00000032.html","bay"],["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["NCBITaxon%3A821","Phocaeicola vulgatus"],["NCBITaxon%3A435590","Phocaeicola vulgatus ATCC 8482"]]},{"id":"NCBITaxon:43671","l":"Actinotalea fermentans","na":2,"nb":2,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A43671","Actinotalea fermentans"],["NCBITaxon%3A862422","Actinotalea fermentans ATCC 43279 = JCM 9966 = DSM 3133"]]},{"id":"NCBITaxon:443152","l":"Marinobacter algicola DG893","na":2,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["NCBITaxon%3A236100","Marinobacter algicola"],["NCBITaxon%3A443152","Marinobacter algicola DG893"]]},{"id":"NCBITaxon:444157","l":"Pyrobaculum neutrophilum V24Sta","na":2,"nb":2,"a":[["silty-sediment-envo-01000119.html","silty sediment"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A70771","Pyrobaculum neutrophilum"],["NCBITaxon%3A444157","Pyrobaculum neutrophilum V24Sta"]]},{"id":"NCBITaxon:445972","l":"Anaerotruncus colihominis DSM 17241","na":2,"nb":2,"a":[["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["NCBITaxon%3A169435","Anaerotruncus colihominis"],["NCBITaxon%3A445972","Anaerotruncus colihominis DSM 17241"]]},{"id":"NCBITaxon:446471","l":"Xylanimonas cellulosilytica DSM 15894","na":2,"nb":2,"a":[["wood-envo-00002040.html","wood"],["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A186189","Xylanimonas cellulosilytica"],["NCBITaxon%3A446471","Xylanimonas cellulosilytica DSM 15894"]]},{"id":"NCBITaxon:450851","l":"Phenylobacterium zucineum HLK1","na":2,"nb":2,"a":[["erythroleukemia-cell-line-bto-0000846.html","erythroleukemia cell line"],["leukemia-cell-line-bto-0000737.html","leukemia cell line"]],"b":[["NCBITaxon%3A284016","Phenylobacterium zucineum"],["NCBITaxon%3A450851","Phenylobacterium zucineum HLK1"]]},{"id":"NCBITaxon:451757","l":"Clostridium perfringens NCTC 8239","na":2,"nb":2,"a":[["heated-burned-habitatmech-bacdive-8bf2766463.html","Heated-Burned"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A1502","Clostridium perfringens"],["NCBITaxon%3A451757","Clostridium perfringens NCTC 8239"]]},{"id":"NCBITaxon:456442","l":"Methanoregula boonei 6A8","na":2,"nb":2,"a":[["wetland-area-envo-00000043.html","wetland area"],["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A358766","Methanoregula boonei"],["NCBITaxon%3A456442","Methanoregula boonei 6A8"]]},{"id":"NCBITaxon:456493","l":"","na":2,"nb":2,"a":[["vasculature-uberon-0002049.html","vasculature"],["part-of-plant-habitatmech-madin-25325947e2.html","part of plant"]],"b":[["NCBITaxon%3A456493","Saccharibacillus sacchari"],["NCBITaxon%3A915437","Saccharibacillus sacchari DSM 19268"]]},{"id":"NCBITaxon:46539","l":"Thermococcus hydrothermalis","na":2,"nb":2,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A46539","Thermococcus hydrothermalis"],["NCBITaxon%3A522522","Thermococcus hydrothermalis AL662"]]},{"id":"NCBITaxon:468059","l":"Daejeonella oryzae DSM 19973","na":2,"nb":2,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["NCBITaxon%3A1122943","Daejeonella oryzae"],["NCBITaxon%3A468059","Daejeonella oryzae DSM 19973"]]},{"id":"NCBITaxon:469382","l":"Halogeometricum borinquense DSM 11551","na":2,"nb":2,"a":[["pond-envo-00000033.html","pond"],["saline-evaporation-pond-envo-00000055.html","saline evaporation pond"]],"b":[["NCBITaxon%3A60847","Halogeometricum borinquense"],["NCBITaxon%3A469382","Halogeometricum borinquense DSM 11551"]]},{"id":"NCBITaxon:471853","l":"Beutenbergia cavernae DSM 12333","na":2,"nb":2,"a":[["cave-envo-00000067.html","cave"],["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A84757","Beutenbergia cavernae"],["NCBITaxon%3A471853","Beutenbergia cavernae DSM 12333"]]},{"id":"NCBITaxon:471854","l":"Dyadobacter fermentans DSM 18053","na":2,"nb":2,"a":[["filament-bto-0000463.html","filament"],["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A94254","Dyadobacter fermentans"],["NCBITaxon%3A471854","Dyadobacter fermentans DSM 18053"]]},{"id":"NCBITaxon:471857","l":"Saccharomonospora viridis DSM 43017","na":2,"nb":2,"a":[["wetland-area-envo-00000043.html","wetland area"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A1852","Saccharomonospora viridis"],["NCBITaxon%3A471857","Saccharomonospora viridis DSM 43017"]]},{"id":"NCBITaxon:472759","l":"Nitrosococcus halophilus Nc 4","na":2,"nb":2,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A133539","Nitrosococcus halophilus"],["NCBITaxon%3A472759","Nitrosococcus halophilus Nc 4"]]},{"id":"NCBITaxon:47879","l":"Pseudomonas corrugata","na":2,"nb":2,"a":[["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["wilt-habitatmech-bacdive-4c48b5114d.html","Wilt"]],"b":[["NCBITaxon%3A47879","Pseudomonas corrugata"],["NCBITaxon%3A1316927","Pseudomonas corrugata CFBP 5454"]]},{"id":"NCBITaxon:479434","l":"Sphaerobacter thermophilus DSM 20745","na":2,"nb":2,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A2057","Sphaerobacter thermophilus"],["NCBITaxon%3A479434","Sphaerobacter thermophilus DSM 20745"]]},{"id":"NCBITaxon:479435","l":"Kribbella flavida DSM 17836","na":2,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["NCBITaxon%3A182640","Kribbella flavida"],["NCBITaxon%3A479435","Kribbella flavida DSM 17836"]]},{"id":"NCBITaxon:485918","l":"Chitinophaga pinensis DSM 2588","na":2,"nb":2,"a":[["filament-bto-0000463.html","filament"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A79329","Chitinophaga pinensis"],["NCBITaxon%3A485918","Chitinophaga pinensis DSM 2588"]]},{"id":"NCBITaxon:492476","l":"Acetivibrio thermocellus JW20","na":2,"nb":2,"a":[["sea-envo-00000016.html","sea"],["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"]],"b":[["NCBITaxon%3A1515","Acetivibrio thermocellus"],["NCBITaxon%3A492476","Acetivibrio thermocellus JW20"]]},{"id":"NCBITaxon:504472","l":"Spirosoma linguale DSM 74","na":2,"nb":2,"a":[["drinking-water-envo-00003064.html","drinking water"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["NCBITaxon%3A108","Spirosoma linguale"],["NCBITaxon%3A504472","Spirosoma linguale DSM 74"]]},{"id":"NCBITaxon:504728","l":"Meiothermus ruber DSM 1279","na":2,"nb":2,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"],["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A277","Meiothermus ruber"],["NCBITaxon%3A504728","Meiothermus ruber DSM 1279"]]},{"id":"NCBITaxon:519050","l":"","na":2,"nb":2,"a":[["vasculature-uberon-0002049.html","vasculature"],["part-of-plant-habitatmech-madin-25325947e2.html","part of plant"]],"b":[["NCBITaxon%3A519050","Liquorilactobacillus sucicola"],["NCBITaxon%3A1423806","Liquorilactobacillus sucicola DSM 21376 = JCM 15457"]]},{"id":"NCBITaxon:521674","l":"Planctopirus limnophila DSM 3776","na":2,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A120","Planctopirus limnophila"],["NCBITaxon%3A521674","Planctopirus limnophila DSM 3776"]]},{"id":"NCBITaxon:523791","l":"Kangiella koreensis DSM 16069","na":2,"nb":2,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["NCBITaxon%3A261964","Kangiella koreensis"],["NCBITaxon%3A523791","Kangiella koreensis DSM 16069"]]},{"id":"NCBITaxon:523849","l":"Thermococcus litoralis (strain ATCC 51850 / DSM 5473 / JCM 8560 / NS-C)","na":2,"nb":2,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A2265","Thermococcus litoralis"],["NCBITaxon%3A523849","Thermococcus litoralis DSM 5473"]]},{"id":"NCBITaxon:52767","l":"Actinomyces denticolens","na":2,"nb":2,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["NCBITaxon%3A52767","Actinomyces denticolens"],["NCBITaxon%3A29317","Actinomyces sp."]]},{"id":"NCBITaxon:53245","l":"Desulfonatronovibrio hydrogenovorans","na":2,"nb":2,"a":[["brine-pool-envo-00000369.html","brine pool"],["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["NCBITaxon%3A53245","Desulfonatronovibrio hydrogenovorans"],["NCBITaxon%3A1121413","Desulfonatronovibrio hydrogenovorans DSM 9292"]]},{"id":"NCBITaxon:53444","l":"Fructilactobacillus lindneri","na":2,"nb":2,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["blast-cell-bto-0000125.html","blast cell"]],"b":[["NCBITaxon%3A53444","Fructilactobacillus lindneri"],["NCBITaxon%3A1122148","Fructilactobacillus lindneri DSM 20690 = JCM 11027"]]},{"id":"NCBITaxon:53953","l":"Pyrococcus horikoshii","na":2,"nb":2,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A53953","Pyrococcus horikoshii"],["NCBITaxon%3A70601","Pyrococcus horikoshii OT3"]]},{"id":"NCBITaxon:554117","l":"Paenibacillus phoenicis","na":2,"nb":2,"a":[["factory-envo-01000536.html","factory"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A554117","Paenibacillus phoenicis"],["NCBITaxon%3A58172","Paenibacillus sp."]]},{"id":"NCBITaxon:555088","l":"Dethiobacter alkaliphilus AHT 1","na":2,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["NCBITaxon%3A427926","Dethiobacter alkaliphilus"],["NCBITaxon%3A555088","Dethiobacter alkaliphilus AHT 1"]]},{"id":"NCBITaxon:572546","l":"Archaeoglobus profundus DSM 5631","na":2,"nb":2,"a":[["inlet-envo-00000475.html","inlet"],["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A84156","Archaeoglobus profundus"],["NCBITaxon%3A572546","Archaeoglobus profundus DSM 5631"]]},{"id":"NCBITaxon:579137","l":"Methanocaldococcus vulcanius M7","na":2,"nb":2,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A73913","Methanocaldococcus vulcanius"],["NCBITaxon%3A579137","Methanocaldococcus vulcanius M7"]]},{"id":"NCBITaxon:580332","l":"Sideroxydans lithotrophicus ES-1","na":2,"nb":2,"a":[["cold-environment-envo-01000309.html","cold environment"],["environmental-material-envo-00010483.html","environmental material"]],"b":[["NCBITaxon%3A63745","Sideroxydans lithotrophicus"],["NCBITaxon%3A580332","Sideroxydans lithotrophicus ES-1"]]},{"id":"NCBITaxon:580340","l":"Thermovirga lienii DSM 17291","na":2,"nb":2,"a":[["reservoir-envo-00000025.html","reservoir"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A336261","Thermovirga lienii"],["NCBITaxon%3A580340","Thermovirga lienii DSM 17291"]]},{"id":"NCBITaxon:582402","l":"Hirschia baltica ATCC 49814","na":2,"nb":2,"a":[["alkaline-water-envo-01000357.html","alkaline water"],["fjord-envo-00000039.html","fjord"]],"b":[["NCBITaxon%3A2724","Hirschia baltica"],["NCBITaxon%3A582402","Hirschia baltica ATCC 49814"]]},{"id":"NCBITaxon:582899","l":"Hyphomicrobium denitrificans ATCC 51888","na":2,"nb":2,"a":[["environmental-material-envo-00010483.html","environmental material"],["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A53399","Hyphomicrobium denitrificans"],["NCBITaxon%3A582899","Hyphomicrobium denitrificans ATCC 51888"]]},{"id":"NCBITaxon:588581","l":"Ruminiclostridium papyrosolvens DSM 2782","na":2,"nb":2,"a":[["estuary-envo-00000045.html","estuary"],["sporangium-bto-0001287.html","sporangium"]],"b":[["NCBITaxon%3A29362","Ruminiclostridium papyrosolvens"],["NCBITaxon%3A588581","Ruminiclostridium papyrosolvens DSM 2782"]]},{"id":"NCBITaxon:589865","l":"Desulfurivibrio alkaliphilus AHT 2","na":2,"nb":2,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"],["wadi-envo-00000031.html","wadi"]],"b":[["NCBITaxon%3A427923","Desulfurivibrio alkaliphilus"],["NCBITaxon%3A589865","Desulfurivibrio alkaliphilus AHT 2"]]},{"id":"NCBITaxon:608538","l":"Hydrogenobacter thermophilus TK-6","na":2,"nb":2,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"],["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A940","Hydrogenobacter thermophilus"],["NCBITaxon%3A608538","Hydrogenobacter thermophilus TK-6"]]},{"id":"NCBITaxon:61592","l":"Corynebacterium durum","na":2,"nb":2,"a":[["filament-bto-0000463.html","filament"],["archeological-site-envo-00000564.html","archeological site"]],"b":[["NCBITaxon%3A61592","Corynebacterium durum"],["NCBITaxon%3A1035195","Corynebacterium durum F0235"]]},{"id":"NCBITaxon:643561","l":"Paracidovorax avenae ATCC 19860","na":2,"nb":2,"a":[["large-river-biome-envo-00000887.html","large river biome"],["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A80867","Paracidovorax avenae"],["NCBITaxon%3A643561","Paracidovorax avenae ATCC 19860"]]},{"id":"NCBITaxon:644283","l":"Micromonospora aurantiaca ATCC 27029","na":2,"nb":2,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A644283","Micromonospora aurantiaca ATCC 27029"],["NCBITaxon%3A47850","Micromonospora aurantiaca (nom. illeg.)"]]},{"id":"NCBITaxon:647113","l":"Methanothermococcus okinawensis IH1","na":2,"nb":2,"a":[["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A155863","Methanothermococcus okinawensis"],["NCBITaxon%3A647113","Methanothermococcus okinawensis IH1"]]},{"id":"NCBITaxon:649349","l":"Leadbetterella byssophila DSM 17132","na":2,"nb":2,"a":[["compost-envo-00002170.html","compost"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["NCBITaxon%3A316068","Leadbetterella byssophila"],["NCBITaxon%3A649349","Leadbetterella byssophila DSM 17132"]]},{"id":"NCBITaxon:66228","l":"Gleimia europaea","na":2,"nb":2,"a":[["bone-element-uberon-0001474.html","bone element"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"]],"b":[["NCBITaxon%3A66228","Gleimia europaea"],["NCBITaxon%3A883069","Gleimia europaea ACS-120-V-Col10b"]]},{"id":"NCBITaxon:675813","l":"Vibrio metschnikovii CIP 69.14","na":2,"nb":2,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A28172","Vibrio metschnikovii"],["NCBITaxon%3A675813","Vibrio metschnikovii CIP 69.14"]]},{"id":"NCBITaxon:679926","l":"Methanolacinia petrolearia DSM 11571","na":2,"nb":2,"a":[["inlet-envo-00000475.html","inlet"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A54120","Methanolacinia petrolearia"],["NCBITaxon%3A679926","Methanolacinia petrolearia DSM 11571"]]},{"id":"NCBITaxon:688066","l":"Kosmotoga arenicorallina","na":2,"nb":2,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A688066","Kosmotoga arenicorallina"],["NCBITaxon%3A1453497","Kosmotoga arenicorallina S304"]]},{"id":"NCBITaxon:693216","l":"Cronobacter turicensis z3032","na":2,"nb":2,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A413502","Cronobacter turicensis"],["NCBITaxon%3A693216","Cronobacter turicensis z3032"]]},{"id":"NCBITaxon:693986","l":"Methylobacterium oryzae CBMB20","na":2,"nb":2,"a":[["aerial-part-bto-0001658.html","aerial part"],["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A334852","Methylobacterium oryzae"],["NCBITaxon%3A693986","Methylobacterium oryzae CBMB20"]]},{"id":"NCBITaxon:694427","l":"Paludibacter propionicigenes WB4","na":2,"nb":2,"a":[["agricultural-field-envo-00000114.html","agricultural field"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A185300","Paludibacter propionicigenes"],["NCBITaxon%3A694427","Paludibacter propionicigenes WB4"]]},{"id":"NCBITaxon:694430","l":"Natronococcus occultus SP4","na":2,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A29288","Natronococcus occultus"],["NCBITaxon%3A694430","Natronococcus occultus SP4"]]},{"id":"NCBITaxon:697281","l":"Mahella australiensis 50-1 BON","na":2,"nb":2,"a":[["drainage-basin-envo-00000291.html","drainage basin"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A252966","Mahella australiensis"],["NCBITaxon%3A697281","Mahella australiensis 50-1 BON"]]},{"id":"NCBITaxon:703612","l":"","na":2,"nb":2,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A96241","Bacillus spizizenii"],["NCBITaxon%3A703612","Bacillus spizizenii ATCC 6633 = JCM 2499"]]},{"id":"NCBITaxon:739","l":"Aggregatibacter segnis","na":2,"nb":2,"a":[["archeological-site-envo-00000564.html","archeological site"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["NCBITaxon%3A739","Aggregatibacter segnis"],["NCBITaxon%3A888057","Aggregatibacter segnis ATCC 33393"]]},{"id":"NCBITaxon:74349","l":"Sulfitobacter guttiformis","na":2,"nb":2,"a":[["hill-envo-00000083.html","hill"],["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A74349","Sulfitobacter guttiformis"],["NCBITaxon%3A1443111","Sulfitobacter guttiformis KCTC 32187"]]},{"id":"NCBITaxon:746697","l":"Aequorivita sublithincola DSM 14238","na":2,"nb":2,"a":[["hill-envo-00000083.html","hill"],["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A101385","Aequorivita sublithincola"],["NCBITaxon%3A746697","Aequorivita sublithincola DSM 14238"]]},{"id":"NCBITaxon:748449","l":"Halobacteroides halobius DSM 5150","na":2,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["marine-anoxic-zone-envo-01000066.html","marine anoxic zone"]],"b":[["NCBITaxon%3A42422","Halobacteroides halobius"],["NCBITaxon%3A748449","Halobacteroides halobius DSM 5150"]]},{"id":"NCBITaxon:754","l":"Pasteurella dagmatis","na":2,"nb":2,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"]],"b":[["NCBITaxon%3A754","Pasteurella dagmatis"],["NCBITaxon%3A667128","Pasteurella dagmatis ATCC 43325"]]},{"id":"NCBITaxon:756272","l":"Rubinisphaera brasiliensis DSM 5305","na":2,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["NCBITaxon%3A119","Rubinisphaera brasiliensis"],["NCBITaxon%3A756272","Rubinisphaera brasiliensis DSM 5305"]]},{"id":"NCBITaxon:756689","l":"Nocardia amikacinitolerans","na":2,"nb":2,"a":[["hospital-envo-00002173.html","hospital"],["bronchus-uberon-0002185.html","bronchus"]],"b":[["NCBITaxon%3A756689","Nocardia amikacinitolerans"],["NCBITaxon%3A1379680","Nocardia amikacinitolerans NBRC 108937"]]},{"id":"NCBITaxon:76114","l":"Aromatoleum aromaticum (strain DSM 19018 / LMG 30748 / EbN1)","na":2,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["NCBITaxon%3A551760","Aromatoleum aromaticum"],["NCBITaxon%3A76114","Aromatoleum aromaticum EbN1"]]},{"id":"NCBITaxon:80878","l":"Acidovorax temperans","na":2,"nb":2,"a":[["urethra-bto-0001426.html","urethra"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"]],"b":[["NCBITaxon%3A80878","Acidovorax temperans"],["NCBITaxon%3A665025","Acidovorax temperans CB2"]]},{"id":"NCBITaxon:85558","l":"Streptomyces turgidiscabies","na":2,"nb":2,"a":[["a10-cell-bto-0002196.html","A10 cell"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["NCBITaxon%3A85558","Streptomyces turgidiscabies"],["NCBITaxon%3A698760","Streptomyces turgidiscabies Car8"]]},{"id":"NCBITaxon:865938","l":"Weeksella virosa DSM 16922","na":2,"nb":2,"a":[["urethra-bto-0001426.html","urethra"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A1014","Weeksella virosa"],["NCBITaxon%3A865938","Weeksella virosa DSM 16922"]]},{"id":"NCBITaxon:870187","l":"Thiothrix nivea DSM 5205","na":2,"nb":2,"a":[["rosette-bto-0001201.html","rosette"],["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A1031","Thiothrix nivea"],["NCBITaxon%3A870187","Thiothrix nivea DSM 5205"]]},{"id":"NCBITaxon:880478","l":"Thermoanaerobacter siderophilus SR4","na":2,"nb":2,"a":[["peninsula-envo-00000305.html","peninsula"],["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A106578","Thermoanaerobacter siderophilus"],["NCBITaxon%3A880478","Thermoanaerobacter siderophilus SR4"]]},{"id":"NCBITaxon:926559","l":"Galbibacter orientalis DSM 19592","na":2,"nb":2,"a":[["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A453852","Galbibacter orientalis"],["NCBITaxon%3A926559","Galbibacter orientalis DSM 19592"]]},{"id":"NCBITaxon:927658","l":"Alkaliflexus imshenetskii DSM 15055","na":2,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A286730","Alkaliflexus imshenetskii"],["NCBITaxon%3A927658","Alkaliflexus imshenetskii DSM 15055"]]},{"id":"NCBITaxon:935295","l":"Leuconostoc pseudomesenteroides KCTC 3652","na":2,"nb":2,"a":[["juice-bto-0000659.html","juice"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A33968","Leuconostoc pseudomesenteroides"],["NCBITaxon%3A935295","Leuconostoc pseudomesenteroides KCTC 3652"]]},{"id":"NCBITaxon:94136","l":"Alkalibacillus haloalkaliphilus","na":2,"nb":2,"a":[["saline-water-body-envo-01001319.html","saline water body"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["NCBITaxon%3A94136","Alkalibacillus haloalkaliphilus"],["NCBITaxon%3A1193119","Alkalibacillus haloalkaliphilus C5"]]},{"id":"NCBITaxon:942938","l":"Alkalispirochaeta alkalica DSM 8900","na":2,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A46356","Alkalispirochaeta alkalica"],["NCBITaxon%3A942938","Alkalispirochaeta alkalica DSM 8900"]]},{"id":"NCBITaxon:999549","l":"Leisingera caerulea DSM 24564","na":2,"nb":2,"a":[["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A506591","Leisingera caerulea"],["NCBITaxon%3A999549","Leisingera caerulea DSM 24564"]]},{"id":"NCBITaxon:1224","l":"Pseudomonadota","na":1,"nb":251482,"a":[["hemolymph-bto-0000572.html","hemolymph"]],"b":[["NCBITaxon%3A119160","2,3-D degrading bacterium NHC2"],["NCBITaxon%3A119159","2,3-D degrading bacterium NHG3"],["NCBITaxon%3A103498","2,4-D-degrading bacterium 001"],["NCBITaxon%3A103499","2,4-D-degrading bacterium 007"],["NCBITaxon%3A103492","2,4-D-degrading bacterium 010"],["NCBITaxon%3A103495","2,4-D-degrading bacterium 012"]]},{"id":"NCBITaxon:2062","l":"Streptomycetaceae","na":1,"nb":32318,"a":[["crop-bto-0000301.html","crop"]],"b":[["NCBITaxon%3A2784346","Actinacidiphila acididurans"],["NCBITaxon%3A2873382","Actinacidiphila acidipaludis"],["NCBITaxon%3A380248","Actinacidiphila alni"],["NCBITaxon%3A1436133","Actinacidiphila bryophytorum"],["NCBITaxon%3A887465","Actinacidiphila cocklensis"],["NCBITaxon%3A2053013","Actinacidiphila epipremni"]]},{"id":"NCBITaxon:80840","l":"Burkholderiales","na":1,"nb":24584,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"]],"b":[["NCBITaxon%3A103498","2,4-D-degrading bacterium 001"],["NCBITaxon%3A103499","2,4-D-degrading bacterium 007"],["NCBITaxon%3A103495","2,4-D-degrading bacterium 012"],["NCBITaxon%3A103500","2,4-D-degrading bacterium 017"],["NCBITaxon%3A103501","2,4-D-degrading bacterium 018"],["NCBITaxon%3A103502","2,4-D-degrading bacterium 019"]]},{"id":"NCBITaxon:200644","l":"Flavobacteriales","na":1,"nb":12879,"a":[["column-bto-0005692.html","column"]],"b":[["NCBITaxon%3A2967091","Abyssalbus sp."],["NCBITaxon%3A2926907","Abyssalbus ytuae"],["NCBITaxon%3A2692424","Acidiluteibacter ferrifornacis"],["NCBITaxon%3A2819283","Acidiluteibacter sp."],["NCBITaxon%3A2964002","Acidiluteibacter sp. SCM31"],["NCBITaxon%3A1295005","Actibacter haliotis"]]},{"id":"NCBITaxon:119060","l":"Burkholderiaceae","na":1,"nb":11091,"a":[["trunk-bto-0001493.html","trunk"]],"b":[["NCBITaxon%3A135641","2,4-D degrading transconjugant WD2"],["NCBITaxon%3A135642","2,4-D degrading transconjugant WD3"],["NCBITaxon%3A204704","bacterium Ellin349"],["NCBITaxon%3A204705","bacterium Ellin350"],["NCBITaxon%3A204706","bacterium Ellin364"],["NCBITaxon%3A204707","bacterium Ellin365"]]},{"id":"NCBITaxon:82115","l":"Rhizobiaceae","na":1,"nb":10105,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"]],"b":[["NCBITaxon%3A119160","2,3-D degrading bacterium NHC2"],["NCBITaxon%3A119159","2,3-D degrading bacterium NHG3"],["NCBITaxon%3A879568","Affinirhizobium capsici"],["NCBITaxon%3A2952477","Affinirhizobium gouqiense"],["NCBITaxon%3A1132695","Affinirhizobium helianthi"],["NCBITaxon%3A1214924","Affinirhizobium lemnae"]]},{"id":"NCBITaxon:547","l":"Enterobacter","na":1,"nb":6599,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["NCBITaxon%3A3142537","Enterobacter adelaidei"],["NCBITaxon%3A61645","Enterobacter asburiae"],["NCBITaxon%3A1330532","Enterobacter asburiae B1-3"],["NCBITaxon%3A1330533","Enterobacter asburiae B5-60"],["NCBITaxon%3A1442602","Enterobacter asburiae C1"],["NCBITaxon%3A1298604","Enterobacter asburiae JCM 6051"]]},{"id":"NCBITaxon:1177","l":"Nostoc","na":1,"nb":6579,"a":[["inflorescence-bto-0000628.html","inflorescence"]],"b":[["NCBITaxon%3A3085085","Anabaena oryzae CF66701"],["NCBITaxon%3A2739044","Cyanocohniella crotaloides"],["NCBITaxon%3A1179","Desmonostoc muscorum"],["NCBITaxon%3A3366270","Nostoc breve"],["NCBITaxon%3A3040065","Nostoc breve BG11-PS"],["NCBITaxon%3A1521619","Nostoc caeruleum"]]},{"id":"NCBITaxon:135619","l":"Oceanospirillales","na":1,"nb":6491,"a":[["column-bto-0005692.html","column"]],"b":[["NCBITaxon%3A2717337","Aestuariirhabdaceae bacterium"],["NCBITaxon%3A2918751","Aestuariirhabdus haliotis"],["NCBITaxon%3A2528527","Aestuariirhabdus litorea"],["NCBITaxon%3A2717333","Aestuariirhabdus sp."],["NCBITaxon%3A3417462","Aestuariirhabdus sp. LZHN29"],["NCBITaxon%3A574349","Aidingimonas halophila"]]},{"id":"NCBITaxon:766","l":"Rickettsiales","na":1,"nb":6218,"a":[["alimentary-canal-bto-0000058.html","alimentary canal"]],"b":[["NCBITaxon%3A3236821","Aaplasma endosymbiont of Hyalomma asiaticum"],["NCBITaxon%3A203862","Aegyptianella pullorum"],["NCBITaxon%3A1872389","Aegyptianella sp."],["NCBITaxon%3A186733","Anaplasma bovis"],["NCBITaxon%3A1562740","Anaplasma capra"],["NCBITaxon%3A2823527","Anaplasma caudatum"]]},{"id":"NCBITaxon:570","l":"Klebsiella","na":1,"nb":4683,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["NCBITaxon%3A548","Klebsiella aerogenes"],["NCBITaxon%3A1308731","Klebsiella aerogenes ADL-323"],["NCBITaxon%3A935296","Klebsiella aerogenes EA1509E"],["NCBITaxon%3A685445","Klebsiella aerogenes FGI35"],["NCBITaxon%3A1028307","Klebsiella aerogenes KCTC 2190"],["NCBITaxon%3A1439320","Klebsiella aerogenes MGH 61"]]},{"id":"NCBITaxon:69277","l":"Phyllobacteriaceae","na":1,"nb":4623,"a":[["head-bto-0000282.html","head"]],"b":[["NCBITaxon%3A561088","Aerobium aerolatum"],["NCBITaxon%3A3143725","Aerobium sp."],["NCBITaxon%3A453840","Aliihoeflea aestuarii"],["NCBITaxon%3A2608088","Aliihoeflea sp."],["NCBITaxon%3A1381123","Aliihoeflea sp. 2WW"],["NCBITaxon%3A2696467","Aliihoeflea sp. 40Bstr573"]]},{"id":"NCBITaxon:40323","l":"Stenotrophomonas","na":1,"nb":3947,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["NCBITaxon%3A255","[Flavobacterium] lutescens"],["NCBITaxon%3A178909","PAH-contaminated sludge bacterium PB-8"],["NCBITaxon%3A178910","PAH-contaminated sludge bacterium PB-9"],["NCBITaxon%3A128780","Stenotrophomonas acidaminiphila"],["NCBITaxon%3A1292134","Stenotrophomonas africana"],["NCBITaxon%3A1212488","Stenotrophomonas africana MGB"]]},{"id":"NCBITaxon:68287","l":"Mesorhizobium","na":1,"nb":3794,"a":[["head-bto-0000282.html","head"]],"b":[["NCBITaxon%3A325218","alpha proteobacterium WG1"],["NCBITaxon%3A102683","Biserrula isolate"],["NCBITaxon%3A1209958","Mesorhizobium abyssinicae"],["NCBITaxon%3A1326083","Mesorhizobium acaciae"],["NCBITaxon%3A3072314","Mesorhizobium album"],["NCBITaxon%3A2448478","Mesorhizobium alexandrii"]]},{"id":"NCBITaxon:2745","l":"Halomonas","na":1,"nb":3499,"a":[["wood-bto-0005516.html","wood"]],"b":[["NCBITaxon%3A1107859","Candidatus Halomonas phosphatis"],["NCBITaxon%3A2838617","Candidatus Halomonas stercoripullorum"],["NCBITaxon%3A1897729","Halomonas aestuarii"],["NCBITaxon%3A659123","Halomonas aidingensis"],["NCBITaxon%3A147248","Halomonas alimentaria"],["NCBITaxon%3A1930622","Halomonas alkalicola"]]},{"id":"NCBITaxon:22","l":"Shewanella","na":1,"nb":2330,"a":[["wood-bto-0005516.html","wood"]],"b":[["NCBITaxon%3A196819","Arctic sea ice bacterium ARK10035"],["NCBITaxon%3A259291","cf. Shewanella SAR-1"],["NCBITaxon%3A259292","cf. Shewanella SAR-2"],["NCBITaxon%3A73131","Mariana eubacterium no. 11"],["NCBITaxon%3A73132","Mariana eubacterium no. 13"],["NCBITaxon%3A73133","Mariana eubacterium no. 24"]]},{"id":"NCBITaxon:200666","l":"Sphingobacteriales","na":1,"nb":2327,"a":[["column-bto-0005692.html","column"]],"b":[["NCBITaxon%3A653929","Albibacterium bauzanense"],["NCBITaxon%3A2292082","Albibacterium indicum"],["NCBITaxon%3A3134906","Albibacterium profundi"],["NCBITaxon%3A2952885","Albibacterium sp."],["NCBITaxon%3A496056","Anseongella ginsenosidimutans"],["NCBITaxon%3A2023704","Anseongella sp."]]},{"id":"NCBITaxon:118882","l":"Brucellaceae","na":1,"nb":2154,"a":[["skin-bto-0001253.html","skin"]],"b":[["NCBITaxon%3A235","Brucella abortus"],["NCBITaxon%3A1310176","Brucella abortus 00-666"],["NCBITaxon%3A1328357","Brucella abortus 01-0065"],["NCBITaxon%3A1328356","Brucella abortus 01-0585"],["NCBITaxon%3A1328355","Brucella abortus 01-0648"],["NCBITaxon%3A1341669","Brucella abortus 01-4165"]]},{"id":"NCBITaxon:72275","l":"Alteromonadaceae","na":1,"nb":2007,"a":[["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["NCBITaxon%3A120969","abyssal strain AIII3*"],["NCBITaxon%3A1619912","Adhaerimonas asanensis"],["NCBITaxon%3A226010","Aestuariibacter salexigens"],["NCBITaxon%3A1120953","Aestuariibacter salexigens DSM 15300"],["NCBITaxon%3A1872400","Aestuariibacter sp."],["NCBITaxon%3A2841571","Aestuariibacter sp. A3R04"]]},{"id":"NCBITaxon:186818","l":"Caryophanaceae","na":1,"nb":1900,"a":[["trachea-bto-0001388.html","trachea"]],"b":[["NCBITaxon%3A426756","Bhargavaea beijingensis"],["NCBITaxon%3A394098","Bhargavaea cecembensis"],["NCBITaxon%3A1235279","Bhargavaea cecembensis DSE10"],["NCBITaxon%3A2134037","Bhargavaea changchunensis"],["NCBITaxon%3A426757","Bhargavaea ginsengi"],["NCBITaxon%3A627618","Bhargavaea indica"]]},{"id":"NCBITaxon:544","l":"Citrobacter","na":1,"nb":1678,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["NCBITaxon%3A35703","Citrobacter amalonaticus"],["NCBITaxon%3A1261127","Citrobacter amalonaticus Y19"],["NCBITaxon%3A2546350","Citrobacter arsenatis"],["NCBITaxon%3A1585982","Citrobacter bitternis"],["NCBITaxon%3A57706","Citrobacter braakii"],["NCBITaxon%3A1748967","Citrobacter cronae"]]},{"id":"NCBITaxon:1817","l":"Nocardia","na":1,"nb":1573,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["NCBITaxon%3A120957","Nocardia abscessus"],["NCBITaxon%3A1206723","Nocardia abscessus NBRC 100374"],["NCBITaxon%3A2802282","Nocardia acididurans"],["NCBITaxon%3A1224718","Nocardia aciditolerans"],["NCBITaxon%3A404580","Nocardia acidivorans"],["NCBITaxon%3A1210062","Nocardia acidivorans NBRC 108247"]]},{"id":"NCBITaxon:200795","l":"Chloroflexota","na":1,"nb":1565,"a":[["crop-bto-0000301.html","crop"]],"b":[["NCBITaxon%3A913108","Aggregatilinea lenta"],["NCBITaxon%3A2806333","Aggregatilinea sp."],["NCBITaxon%3A2952881","Aggregatilineaceae bacterium"],["NCBITaxon%3A2952883","Aggregatilineales bacterium"],["NCBITaxon%3A3117437","Aggregatilineales bacterium SYSU G02658"],["NCBITaxon%3A2738567","Anaerolinaceae bacterium JGI_KA33_A04_032"]]},{"id":"NCBITaxon:135613","l":"Chromatiales","na":1,"nb":1456,"a":[["column-bto-0005692.html","column"]],"b":[["NCBITaxon%3A2182787","Abyssibacter profundi"],["NCBITaxon%3A2320200","Abyssibacter sp."],["NCBITaxon%3A2792603","Acidihalobacter aeolianus"],["NCBITaxon%3A1765967","Acidihalobacter ferrooxydans"],["NCBITaxon%3A160660","Acidihalobacter prosperus"],["NCBITaxon%3A1872108","Acidihalobacter sp."]]},{"id":"NCBITaxon:28221","l":"Deltaproteobacteria","na":1,"nb":1266,"a":[["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["NCBITaxon%3A2946587","Acetispira formosa (nom. nud.)"],["NCBITaxon%3A318480","Algidimarina propionica"],["NCBITaxon%3A2600177","Allomicrovenator marinus"],["NCBITaxon%3A2946509","Allomicrovenator sp."],["NCBITaxon%3A3107492","Allomicrovenatoraceae bacterium"],["NCBITaxon%3A93990","Alvinella pompejana symbiont 3.11"]]},{"id":"NCBITaxon:712","l":"Pasteurellaceae","na":1,"nb":1252,"a":[["head-bto-0000282.html","head"]],"b":[["NCBITaxon%3A221404","Actinobacillus anseriformium"],["NCBITaxon%3A221398","Actinobacillus anseriformium biovar 1"],["NCBITaxon%3A221399","Actinobacillus anseriformium biovar 2"],["NCBITaxon%3A157339","Actinobacillus arthritidis"],["NCBITaxon%3A717","Actinobacillus capsulatus"],["NCBITaxon%3A1120931","Actinobacillus capsulatus DSM 19761"]]},{"id":"NCBITaxon:226","l":"Alteromonas","na":1,"nb":1246,"a":[["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["NCBITaxon%3A1892904","Alteromonas abrolhosensis"],["NCBITaxon%3A1938339","Alteromonas aestuariivivens"],["NCBITaxon%3A105692","Alteromonas agarilytica"],["NCBITaxon%3A3410268","Alteromonas algae"],["NCBITaxon%3A135000","Alteromonas alvinellae"],["NCBITaxon%3A2803813","Alteromonas antoniana"]]},{"id":"NCBITaxon:57723","l":"Acidobacteriota","na":1,"nb":1245,"a":[["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["NCBITaxon%3A442870","Acanthopleuribacter pedis"],["NCBITaxon%3A1872087","Acanthopleuribacter sp."],["NCBITaxon%3A2696471","Acanthopleuribacteraceae bacterium"],["NCBITaxon%3A1335627","Acidicapsa acidiphila"],["NCBITaxon%3A1615681","Acidicapsa acidisoli"],["NCBITaxon%3A946336","Acidicapsa borealis"]]},{"id":"NCBITaxon:265","l":"Paracoccus","na":1,"nb":1093,"a":[["nectar-bto-0000537.html","nectar"]],"b":[["NCBITaxon%3A246571","marine bacterium 13733"],["NCBITaxon%3A1795310","Paracoccus acridae"],["NCBITaxon%3A3064531","Paracoccus actinidiae"],["NCBITaxon%3A1966466","Paracoccus aeridis"],["NCBITaxon%3A1915382","Paracoccus aerius"],["NCBITaxon%3A3017781","Paracoccus aerodenitrificans"]]},{"id":"NCBITaxon:563835","l":"Chitinophagaceae","na":1,"nb":893,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"]],"b":[["NCBITaxon%3A1104781","Agriterribacter humi"],["NCBITaxon%3A2171976","Agriterribacter soli"],["NCBITaxon%3A2821509","Agriterribacter sp."],["NCBITaxon%3A1850526","Arachidicoccus ginsenosidimutans"],["NCBITaxon%3A496057","Arachidicoccus ginsenosidivorans"],["NCBITaxon%3A551991","Arachidicoccus rhizosphaerae"]]},{"id":"NCBITaxon:12916","l":"Acidovorax","na":1,"nb":822,"a":[["urine-bto-0001419.html","urine"]],"b":[["NCBITaxon%3A192388","Acidovorax aerodenitrificans"],["NCBITaxon%3A2976702","Acidovorax bellezanensis"],["NCBITaxon%3A2987520","Acidovorax benzenivorans"],["NCBITaxon%3A553814","Acidovorax carolinensis"],["NCBITaxon%3A1675792","Acidovorax cavernicola"],["NCBITaxon%3A86669","Acidovorax defluvii"]]},{"id":"NCBITaxon:283","l":"Comamonas","na":1,"nb":742,"a":[["nectar-bto-0000537.html","nectar"]],"b":[["NCBITaxon%3A472","Acinetobacter sp."],["NCBITaxon%3A3083076","Candidatus Comamonas equi"],["NCBITaxon%3A2743470","Comamonas antarctica"],["NCBITaxon%3A225991","Comamonas aquatica"],["NCBITaxon%3A1457173","Comamonas aquatica DA1877"],["NCBITaxon%3A1219031","Comamonas aquatica NBRC 14918"]]},{"id":"NCBITaxon:1041","l":"Erythrobacter","na":1,"nb":667,"a":[["hemolymph-bto-0000572.html","hemolymph"]],"b":[["NCBITaxon%3A1896145","Erythrobacter alti"],["NCBITaxon%3A2827235","Erythrobacter ani"],["NCBITaxon%3A2909249","Erythrobacter aurantius"],["NCBITaxon%3A2182384","Erythrobacter aureus"],["NCBITaxon%3A1161202","Erythrobacter colymbi"],["NCBITaxon%3A2828328","Erythrobacter crassostreae"]]},{"id":"NCBITaxon:204428","l":"Chlamydiota","na":1,"nb":627,"a":[["epilimnion-envo-00002131.html","epilimnion"]],"b":[["NCBITaxon%3A3076874","Candidatus Acheromyda pituitae"],["NCBITaxon%3A1742710","Candidatus Actinochlamydia clariatis"],["NCBITaxon%3A2040623","Candidatus Actinochlamydia pangasianodontis"],["NCBITaxon%3A3341976","Candidatus Algichlamydia australiensis"],["NCBITaxon%3A1123968","Candidatus Amphibiichlamydia ranarum"],["NCBITaxon%3A1115881","Candidatus Amphibiichlamydia salamandrae"]]},{"id":"NCBITaxon:85413","l":"Allobosea","na":1,"nb":605,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"]],"b":[["NCBITaxon%3A132928","Allobosea aff. thiooxidans 1.10"],["NCBITaxon%3A3068632","Allobosea beijingensis"],["NCBITaxon%3A2763117","Allobosea caraganae"],["NCBITaxon%3A151454","Allobosea eneae"],["NCBITaxon%3A1211774","Allobosea eneae 34614"],["NCBITaxon%3A1036778","Allobosea lathyri"]]},{"id":"NCBITaxon:872","l":"Desulfovibrio","na":1,"nb":600,"a":[["colon-bto-0000269.html","colon"]],"b":[["NCBITaxon%3A2838532","Candidatus Desulfovibrio faecigallinarum"],["NCBITaxon%3A2838533","Candidatus Desulfovibrio gallistercoris"],["NCBITaxon%3A2838534","Candidatus Desulfovibrio intestinavium"],["NCBITaxon%3A2838535","Candidatus Desulfovibrio intestinigallinarum"],["NCBITaxon%3A2838536","Candidatus Desulfovibrio intestinipullorum"],["NCBITaxon%3A2696086","Candidatus Desulfovibrio kirbyi"]]},{"id":"NCBITaxon:29465","l":"Veillonella","na":1,"nb":490,"a":[["juvenile-bto-0002168.html","juvenile"]],"b":[["NCBITaxon%3A3474240","Candidatus Veillonella sanguinis"],["NCBITaxon%3A147802","Lactobacillus iners"],["NCBITaxon%3A159268","uncultured Veillonella sp."],["NCBITaxon%3A3079305","Veillonella absiana"],["NCBITaxon%3A2941340","Veillonella agrestimuris"],["NCBITaxon%3A39777","Veillonella atypica"]]},{"id":"NCBITaxon:1298","l":"Deinococcus","na":1,"nb":488,"a":[["forearm-bto-0001447.html","forearm"]],"b":[["NCBITaxon%3A1768108","Deinococcus actinosclerus"],["NCBITaxon%3A200253","Deinococcus aerius"],["NCBITaxon%3A522487","Deinococcus aerolatus"],["NCBITaxon%3A522488","Deinococcus aerophilus"],["NCBITaxon%3A2774531","Deinococcus aestuarii"],["NCBITaxon%3A200252","Deinococcus aetherius"]]},{"id":"NCBITaxon:1655514","l":"Candidatus Pelagibacteraceae","na":1,"nb":486,"a":[["column-bto-0005692.html","column"]],"b":[["NCBITaxon%3A684719","alpha proteobacterium HIMB114"],["NCBITaxon%3A859653","alpha proteobacterium HIMB5"],["NCBITaxon%3A744985","alpha proteobacterium HIMB59"],["NCBITaxon%3A1502488","alpha proteobacterium QL1"],["NCBITaxon%3A939306","alpha proteobacterium SCGC AAA240-E13"],["NCBITaxon%3A939316","alpha proteobacterium SCGC AAA288-E13"]]},{"id":"NCBITaxon:186814","l":"Thermoanaerobacteraceae","na":1,"nb":422,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A2755338","Aceticella autotrophica"],["NCBITaxon%3A3692757","Aceticella sp. 75b-Ac"],["NCBITaxon%3A42838","Ammonifex degensii"],["NCBITaxon%3A429009","Ammonifex degensii KC4"],["NCBITaxon%3A1872493","Ammonifex sp."],["NCBITaxon%3A444093","Ammonifex thiophilus"]]},{"id":"NCBITaxon:724","l":"Haemophilus","na":1,"nb":412,"a":[["head-bto-0000282.html","head"]],"b":[["NCBITaxon%3A762","Avibacterium volantium"],["NCBITaxon%3A3711815","Candidatus Haemophilus gullae"],["NCBITaxon%3A2962910","Candidatus Haemophilus sp. bin.10"],["NCBITaxon%3A259279","cf. Haemophilus SAR-1"],["NCBITaxon%3A197575","Haemophilus aegyptius"],["NCBITaxon%3A888728","Haemophilus aegyptius ATCC 11116"]]},{"id":"NCBITaxon:135616","l":"Piscirickettsiaceae","na":1,"nb":366,"a":[["crop-bto-0000301.html","crop"]],"b":[["NCBITaxon%3A1871189","Cycloclasticus endosymbiont of Bathymodiolus heckerae"],["NCBITaxon%3A1871190","Cycloclasticus endosymbiont of sponge"],["NCBITaxon%3A46457","Cycloclasticus oligotrophus"],["NCBITaxon%3A34068","Cycloclasticus pugetii"],["NCBITaxon%3A655438","Cycloclasticus pugetii PS-1"],["NCBITaxon%3A2024830","Cycloclasticus sp."]]},{"id":"NCBITaxon:31993","l":"Methylocystaceae","na":1,"nb":327,"a":[["leaf-bto-0000713.html","leaf"]],"b":[["NCBITaxon%3A67602","alpha methylotroph Hohenstaufen"],["NCBITaxon%3A493383","methanotroph B8"],["NCBITaxon%3A493384","methanotroph C9"],["NCBITaxon%3A129791","methanotroph FL20"],["NCBITaxon%3A493386","methanotroph H8"],["NCBITaxon%3A210772","methanotroph K1-1"]]},{"id":"NCBITaxon:108619","l":"Salmonella enterica subsp. enterica serovar Newport","na":1,"nb":305,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A108619","Salmonella enterica subsp. enterica serovar Newport"],["NCBITaxon%3A1173883","Salmonella enterica subsp. enterica serovar Newport str. 0015"],["NCBITaxon%3A1173884","Salmonella enterica subsp. enterica serovar Newport str. 0029"],["NCBITaxon%3A1173885","Salmonella enterica subsp. enterica serovar Newport str. 0039"]]},{"id":"NCBITaxon:203693","l":"Nitrospiria","na":1,"nb":287,"a":[["crop-bto-0000301.html","crop"]],"b":[["NCBITaxon%3A3692265","Candidatus Inralta sp."],["NCBITaxon%3A3692264","Candidatus Inrsubterrania sp."],["NCBITaxon%3A3137712","Candidatus Magnetominusculus dajiuhuensis"],["NCBITaxon%3A2914034","Candidatus Magnetominusculus sp. LBB02"],["NCBITaxon%3A1748249","Candidatus Magnetominusculus xianensis"],["NCBITaxon%3A2552947","Candidatus Magnetomonas plexicatena"]]},{"id":"NCBITaxon:2691357","l":"Pirellulaceae","na":1,"nb":272,"a":[["column-bto-0005692.html","column"]],"b":[["NCBITaxon%3A2714739","Allorhodopirellula heiligendammensis"],["NCBITaxon%3A2527987","Allorhodopirellula solitaria"],["NCBITaxon%3A2528021","Anatilimnocola aggregata"],["NCBITaxon%3A3415683","Anatilimnocola aquadivae"],["NCBITaxon%3A2948575","Anatilimnocola floriformis"],["NCBITaxon%3A2807433","Anatilimnocola sp."]]},{"id":"NCBITaxon:475","l":"Moraxella","na":1,"nb":269,"a":[["head-bto-0000282.html","head"]],"b":[["NCBITaxon%3A34059","Faucicola atlantae"],["NCBITaxon%3A34062","Faucicola osloensis"],["NCBITaxon%3A1736026","Moraxella aff. catarrhalis 324_MCAT"],["NCBITaxon%3A1736027","Moraxella aff. catarrhalis 394_MCAT"],["NCBITaxon%3A476","Moraxella bovis"],["NCBITaxon%3A387425","Moraxella bovis Epp63"]]},{"id":"NCBITaxon:32012","l":"Thiomonas","na":1,"nb":257,"a":[["watercourse-envo-00000029.html","watercourse"]],"b":[["NCBITaxon%3A426114","Thiomonas arsenitoxydans"],["NCBITaxon%3A339866","Thiomonas bhubaneswarensis"],["NCBITaxon%3A364030","Thiomonas delicata"],["NCBITaxon%3A926","Thiomonas intermedia"],["NCBITaxon%3A75379","Thiomonas intermedia K12"],["NCBITaxon%3A545537","Thiomonas islandica"]]},{"id":"NCBITaxon:45401","l":"Hyphomicrobiaceae","na":1,"nb":250,"a":[["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["NCBITaxon%3A1608628","Candidatus Filomicrobium marinum"],["NCBITaxon%3A3098631","Candidatus Tectiglobus diatomicola"],["NCBITaxon%3A3098632","Candidatus Tectiglobus profundi"],["NCBITaxon%3A2952957","Dichotomicrobium sp."],["NCBITaxon%3A933063","Dichotomicrobium thermohalophilum"],["NCBITaxon%3A66850","Filomicrobium fusiforme"]]},{"id":"NCBITaxon:142182","l":"Gemmatimonadota","na":1,"nb":249,"a":[["crop-bto-0000301.html","crop"]],"b":[["NCBITaxon%3A234666","bacterium Ellin5220"],["NCBITaxon%3A234674","bacterium Ellin5290"],["NCBITaxon%3A234675","bacterium Ellin5301"],["NCBITaxon%3A3056743","Candidatus Benthicola azotiphorus"],["NCBITaxon%3A3056742","Candidatus Benthicola marisminoris"],["NCBITaxon%3A3101352","Candidatus Benthicola sp."]]},{"id":"NCBITaxon:84993","l":"Acidimicrobiales","na":1,"nb":240,"a":[["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["NCBITaxon%3A2664430","Acidiferrimicrobium australe"],["NCBITaxon%3A3100505","Acidiferrimicrobium sp."],["NCBITaxon%3A2871700","Acidiferrimicrobium sp. IK"],["NCBITaxon%3A2024894","Acidimicrobiaceae bacterium"],["NCBITaxon%3A2814543","Acidimicrobiaceae bacterium AH-315-P05"],["NCBITaxon%3A2023289","Acidimicrobiaceae bacterium BS0038C4"]]},{"id":"NCBITaxon:28450","l":"Burkholderia pseudomallei","na":1,"nb":214,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"]],"b":[["NCBITaxon%3A28450","Burkholderia pseudomallei"],["NCBITaxon%3A1085027","Burkholderia pseudomallei 1026a"],["NCBITaxon%3A884204","Burkholderia pseudomallei 1026b"],["NCBITaxon%3A1310219","Burkholderia pseudomallei 104(1990)"],["NCBITaxon%3A357348","Burkholderia pseudomallei 1106a"],["NCBITaxon%3A357347","Burkholderia pseudomallei 1106b"]]},{"id":"NCBITaxon:137","l":"Spirochaetaceae","na":1,"nb":208,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A46356","Alkalispirochaeta alkalica"],["NCBITaxon%3A942938","Alkalispirochaeta alkalica DSM 8900"],["NCBITaxon%3A159291","Alkalispirochaeta americana"],["NCBITaxon%3A1410329","Alkalispirochaeta cellulosivorans"],["NCBITaxon%3A1329640","Alkalispirochaeta odontotermitis"],["NCBITaxon%3A2024959","Alkalispirochaeta sp."]]},{"id":"NCBITaxon:245186","l":"Loktanella","na":1,"nb":208,"a":[["column-bto-0005692.html","column"]],"b":[["NCBITaxon%3A101376","alpha proteobacterium QSSC9-5"],["NCBITaxon%3A287097","Loktanella agnita"],["NCBITaxon%3A1610528","Loktanella aquimaris"],["NCBITaxon%3A366533","Loktanella atrilutea"],["NCBITaxon%3A245187","Loktanella fryxellensis"],["NCBITaxon%3A2881335","Loktanella gaetbuli"]]},{"id":"NCBITaxon:74152","l":"Elusimicrobiota","na":1,"nb":201,"a":[["hypolimnion-envo-00002130.html","hypolimnion"]],"b":[["NCBITaxon%3A3416221","Candidatus Avelusimicrobium alvi"],["NCBITaxon%3A3416206","Candidatus Avelusimicrobium aviculae"],["NCBITaxon%3A3416215","Candidatus Avelusimicrobium bubulum"],["NCBITaxon%3A3416220","Candidatus Avelusimicrobium caledoniensis"],["NCBITaxon%3A1947906","Candidatus Avelusimicrobium cornigerorum"],["NCBITaxon%3A2840689","Candidatus Avelusimicrobium excrementipullorum"]]},{"id":"NCBITaxon:1253","l":"Pediococcus","na":1,"nb":186,"a":[["cecum-bto-0000166.html","cecum"]],"b":[["NCBITaxon%3A1872398","Aerococcus sp."],["NCBITaxon%3A51665","Aerococcus urinaeequi"],["NCBITaxon%3A1254","Pediococcus acidilactici"],["NCBITaxon%3A563194","Pediococcus acidilactici 7_4"],["NCBITaxon%3A1384067","Pediococcus acidilactici AGR20"],["NCBITaxon%3A1306952","Pediococcus acidilactici D3"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":176,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A90371","Salmonella enterica subsp. enterica serovar Typhimurium"],["NCBITaxon%3A1173928","Salmonella enterica subsp. enterica serovar Typhimurium str. 0052"],["NCBITaxon%3A1114946","Salmonella enterica subsp. enterica serovar Typhimurium str. 00-01036"],["NCBITaxon%3A1173930","Salmonella enterica subsp. enterica serovar Typhimurium str. 0364"]]},{"id":"NCBITaxon:186650","l":"Microvirga","na":1,"nb":171,"a":[["crop-bto-0000301.html","crop"]],"b":[["NCBITaxon%3A670292","Microvirga aerilata"],["NCBITaxon%3A670291","Microvirga aerophila"],["NCBITaxon%3A2791025","Microvirga alba"],["NCBITaxon%3A2819233","Microvirga antarctica"],["NCBITaxon%3A1128671","Microvirga arabica"],["NCBITaxon%3A2692265","Microvirga arsenatis"]]},{"id":"NCBITaxon:59203","l":"Salmonella enterica subsp. arizonae","na":1,"nb":151,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59203","Salmonella enterica subsp. arizonae"],["NCBITaxon%3A2577126","Salmonella enterica subsp. arizonae serovar 11:z4,z23:-"],["NCBITaxon%3A2577127","Salmonella enterica subsp. arizonae serovar 13,22:z4,z23:-"],["NCBITaxon%3A2691147","Salmonella enterica subsp. arizonae serovar 13,23:g,z51:-"],["NCBITaxon%3A2577128","Salmonella enterica subsp. arizonae serovar 13,23:z4,z23,[z32]:-"]]},{"id":"NCBITaxon:1134404","l":"Ignavibacteriota","na":1,"nb":150,"a":[["gut-bto-0000545.html","gut"]],"b":[["NCBITaxon%3A3879837","Candidatus Tepidaquicellaceae bacterium"],["NCBITaxon%3A3414687","Candidatus Tepidiaquacella proteinivora"],["NCBITaxon%3A3455485","Candidatus Tepidiaquacellales bacterium"],["NCBITaxon%3A1617411","Candidatus Tepidiaquacellales bacterium OLB4/UTCHB1"],["NCBITaxon%3A1617412","Candidatus Tepidiaquacellales bacterium OLB5"],["NCBITaxon%3A1948666","Candidatus Tepidiaquacellales bacterium UBA2330"]]},{"id":"NCBITaxon:83334","l":"Escherichia coli O157:H7","na":1,"nb":140,"a":[["uterus-bto-0001424.html","uterus"]],"b":[["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1389955","Escherichia coli ATCC 35150"],["NCBITaxon%3A83334","Escherichia coli O157:H7"],["NCBITaxon%3A1446609","Escherichia coli O157:H7 str. 06-3745"],["NCBITaxon%3A1446610","Escherichia coli O157:H7 str. 06-4039"],["NCBITaxon%3A1446611","Escherichia coli O157:H7 str. 07-3091"]]},{"id":"NCBITaxon:203557","l":"Verrucomicrobiaceae","na":1,"nb":130,"a":[["column-bto-0005692.html","column"]],"b":[["NCBITaxon%3A748831","Prosthecobacter gellanilyticus"],["NCBITaxon%3A177412","Fucophilus fucoidanolyticus"],["NCBITaxon%3A1048331","Haloferula chungangensis"],["NCBITaxon%3A490092","Haloferula harenae"],["NCBITaxon%3A490095","Haloferula helveola"],["NCBITaxon%3A595692","Haloferula luteola"]]},{"id":"NCBITaxon:1860","l":"Geodermatophilus","na":1,"nb":127,"a":[["crop-bto-0000301.html","crop"]],"b":[["NCBITaxon%3A1137993","Geodermatophilus africanus"],["NCBITaxon%3A1296565","Geodermatophilus amargosae"],["NCBITaxon%3A1564161","Geodermatophilus aquaeductus"],["NCBITaxon%3A1137990","Geodermatophilus arenarius"],["NCBITaxon%3A1564160","Geodermatophilus bullaregiensis"],["NCBITaxon%3A2035835","Geodermatophilus chilensis"]]},{"id":"NCBITaxon:265488","l":"Rhodopirellula","na":1,"nb":121,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A980271","Aporhodopirellula rubra"],["NCBITaxon%3A1263869","Aporhodopirellula sallentina"],["NCBITaxon%3A1265734","Novipirellula maiorica"],["NCBITaxon%3A2014065","Rhodopirellula bahusiensis"],["NCBITaxon%3A265606","Rhodopirellula baltica"],["NCBITaxon%3A993517","Rhodopirellula baltica SH28"]]},{"id":"NCBITaxon:219685","l":"Gemmatimonadia","na":1,"nb":108,"a":[["crop-bto-0000301.html","crop"]],"b":[["NCBITaxon%3A3056743","Candidatus Benthicola azotiphorus"],["NCBITaxon%3A3056742","Candidatus Benthicola marisminoris"],["NCBITaxon%3A3101352","Candidatus Benthicola sp."],["NCBITaxon%3A3056746","Candidatus Caribbeanibacter nitroreducens"],["NCBITaxon%3A3056744","Candidatus Carthagonibacter metallireducens"],["NCBITaxon%3A3101351","Candidatus Carthagonibacter sp."]]},{"id":"NCBITaxon:1577788","l":"Methanomassiliicoccaceae","na":1,"nb":103,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A1234667","Candidatus Methanogranum caenicola"],["NCBITaxon%3A2848114","Candidatus Methanogranum gryphiswaldense"],["NCBITaxon%3A3101443","Candidatus Methanogranum sp."],["NCBITaxon%3A1406512","Candidatus Methanomassiliicoccus intestinalis"],["NCBITaxon%3A1295009","Candidatus Methanomassiliicoccus intestinalis Issoire-Mx1"],["NCBITaxon%3A3136098","Candidatus Methanoplasma cognatum"]]},{"id":"NCBITaxon:281915","l":"Curvibacter","na":1,"nb":100,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"]],"b":[["NCBITaxon%3A3026422","Curvibacter cyanobacteriorum"],["NCBITaxon%3A80879","Curvibacter delicatus"],["NCBITaxon%3A1349763","Curvibacter delicatus NBRC 14919"],["NCBITaxon%3A247486","Curvibacter fontanus"],["NCBITaxon%3A230310","Curvibacter gracilis"],["NCBITaxon%3A1336244","Curvibacter gracilis ATCC BAA-807"]]},{"id":"NCBITaxon:568386","l":"Nevskiaceae","na":1,"nb":99,"a":[["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["NCBITaxon%3A159478","Alkanibacter difficilis"],["NCBITaxon%3A1872458","Alkanibacter sp."],["NCBITaxon%3A2806210","Flagellatimonas centrodinii"],["NCBITaxon%3A2893024","Flagellatimonas sp."],["NCBITaxon%3A1891218","Fontimonas sp."],["NCBITaxon%3A3693038","Fontimonas sp. FW305-C-3"]]},{"id":"NCBITaxon:107","l":"Spirosoma","na":1,"nb":96,"a":[["skin-bto-0001253.html","skin"]],"b":[["NCBITaxon%3A1211326","Spirosoma aerolatum"],["NCBITaxon%3A1717229","Spirosoma aerophilum"],["NCBITaxon%3A1987381","Spirosoma agri"],["NCBITaxon%3A2682092","Spirosoma arboris"],["NCBITaxon%3A1465616","Spirosoma arcticum"],["NCBITaxon%3A1806202","Spirosoma areae"]]},{"id":"NCBITaxon:1562","l":"Desulfotomaculum","na":1,"nb":94,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"]],"b":[["NCBITaxon%3A2792885","Desulfotomaculum antarcticum"],["NCBITaxon%3A1838280","Desulfotomaculum copahuensis"],["NCBITaxon%3A369958","Desulfotomaculum defluvii"],["NCBITaxon%3A1565","Desulfotomaculum nigrificans"],["NCBITaxon%3A868595","Desulfotomaculum nigrificans CO-1-SRB"],["NCBITaxon%3A696369","Desulfotomaculum nigrificans DSM 574"]]},{"id":"NCBITaxon:212791","l":"Enhydrobacter","na":1,"nb":86,"a":[["trachea-bto-0001388.html","trachea"]],"b":[["NCBITaxon%3A225324","Enhydrobacter aerosaccus"],["NCBITaxon%3A553217","Enhydrobacter aerosaccus SK60"],["NCBITaxon%3A1894999","Enhydrobacter sp."],["NCBITaxon%3A1449459","Enhydrobacter sp. 1153-i7"],["NCBITaxon%3A881987","Enhydrobacter sp. 1_36p"],["NCBITaxon%3A2653137","Enhydrobacter sp. 8BJ"]]},{"id":"NCBITaxon:4762","l":"Oomycota","na":1,"nb":85,"a":[["oomycete-associated-environment-habitatmech-gold-a233293e47.html","oomycete-associated environment"]],"b":[["NCBITaxon%3A1202772","Achlya hypogyna"],["NCBITaxon%3A65357","Albugo candida"],["NCBITaxon%3A112090","Aphanomyces astaci"],["NCBITaxon%3A112091","Aphanomyces cochlioides"],["NCBITaxon%3A100861","Aphanomyces euteiches"],["NCBITaxon%3A157072","Aphanomyces invadans"]]},{"id":"NCBITaxon:713","l":"Actinobacillus","na":1,"nb":85,"a":[["head-bto-0000282.html","head"]],"b":[["NCBITaxon%3A221404","Actinobacillus anseriformium"],["NCBITaxon%3A221398","Actinobacillus anseriformium biovar 1"],["NCBITaxon%3A221399","Actinobacillus anseriformium biovar 2"],["NCBITaxon%3A157339","Actinobacillus arthritidis"],["NCBITaxon%3A717","Actinobacillus capsulatus"],["NCBITaxon%3A1120931","Actinobacillus capsulatus DSM 19761"]]},{"id":"NCBITaxon:213465","l":"Syntrophobacteraceae","na":1,"nb":84,"a":[["crop-bto-0000301.html","crop"]],"b":[["NCBITaxon%3A1930578","Candidatus Desulfonatronobulbus propionicus"],["NCBITaxon%3A109258","Desulfacinum hydrothermale"],["NCBITaxon%3A1121390","Desulfacinum hydrothermale DSM 13146"],["NCBITaxon%3A35837","Desulfacinum infernum"],["NCBITaxon%3A1121391","Desulfacinum infernum DSM 9756"],["NCBITaxon%3A2301220","Desulfacinum sp."]]},{"id":"NCBITaxon:219686","l":"Gemmatimonadales","na":1,"nb":83,"a":[["spike-bto-0001278.html","spike"]],"b":[["NCBITaxon%3A2026741","Gemmatimonadaceae bacterium"],["NCBITaxon%3A1956166","Gemmatimonadaceae bacterium 4484_173"],["NCBITaxon%3A1387400","Gemmatimonadaceae bacterium LWQ133"],["NCBITaxon%3A2448054","Gemmatimonadales bacterium"],["NCBITaxon%3A2478550","Gemmatimonadales bacterium JGI 01_G21"],["NCBITaxon%3A2478549","Gemmatimonadales bacterium JGI 01_H16"]]},{"id":"NCBITaxon:174951","l":"Ramlibacter","na":1,"nb":81,"a":[["crop-bto-0000301.html","crop"]],"b":[["NCBITaxon%3A2728837","Ramlibacter agri"],["NCBITaxon%3A2079448","Ramlibacter albus"],["NCBITaxon%3A2795217","Ramlibacter algicola"],["NCBITaxon%3A2039631","Ramlibacter alkalitolerans"],["NCBITaxon%3A2780094","Ramlibacter aquaticus"],["NCBITaxon%3A2801330","Ramlibacter aurantiacus"]]},{"id":"NCBITaxon:28067","l":"Rubrivivax","na":1,"nb":76,"a":[["nectar-bto-0000537.html","nectar"]],"b":[["NCBITaxon%3A3400288","Candidatus Rubrivivax defluviihabitans"],["NCBITaxon%3A2499835","Rubrivivax albus"],["NCBITaxon%3A316997","Rubrivivax benzoatilyticus"],["NCBITaxon%3A987059","Rubrivivax benzoatilyticus JA2 = ATCC BAA-35"],["NCBITaxon%3A28068","Rubrivivax gelatinosus"],["NCBITaxon%3A1154769","Rubrivivax gelatinosus CBS"]]},{"id":"NCBITaxon:1101","l":"Prosthecochloris","na":1,"nb":70,"a":[["hemolymph-bto-0000572.html","hemolymph"]],"b":[["NCBITaxon%3A1102","Prosthecochloris aestuarii"],["NCBITaxon%3A290512","Prosthecochloris aestuarii DSM 271"],["NCBITaxon%3A2743976","Prosthecochloris ethylica"],["NCBITaxon%3A315457","Prosthecochloris indica"],["NCBITaxon%3A2017681","Prosthecochloris marina"],["NCBITaxon%3A1692047","Prosthecochloris phaeoasteroidea"]]},{"id":"NCBITaxon:1313211","l":"Lentisphaeria","na":1,"nb":69,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A2840947","Candidatus Spyradenecus faecavium"],["NCBITaxon%3A3004486","Candidatus Spyradenecus sp."],["NCBITaxon%3A256847","Lentisphaera araneosa"],["NCBITaxon%3A313628","Lentisphaera araneosa HTCC2155"],["NCBITaxon%3A1111041","Lentisphaera marina"],["NCBITaxon%3A1658616","Lentisphaera profundi"]]},{"id":"NCBITaxon:168697","l":"Salinispora arenicola","na":1,"nb":66,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A168697","Salinispora arenicola"],["NCBITaxon%3A391967","Salinispora arenicola ATCC BAA-917"],["NCBITaxon%3A1136425","Salinispora arenicola CNB458"],["NCBITaxon%3A1137250","Salinispora arenicola CNB527"],["NCBITaxon%3A1136427","Salinispora arenicola CNH646"],["NCBITaxon%3A1408327","Salinispora arenicola CNH713"]]},{"id":"NCBITaxon:174","l":"Leptospira borgpetersenii","na":1,"nb":61,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A174","Leptospira borgpetersenii"],["NCBITaxon%3A652580","Leptospira borgpetersenii serovar Arborea"],["NCBITaxon%3A1218566","Leptospira borgpetersenii serovar Arborea str. LT2208"],["NCBITaxon%3A508535","Leptospira borgpetersenii serovar Balcanica"],["NCBITaxon%3A280505","Leptospira borgpetersenii serovar Ballum"],["NCBITaxon%3A376921","Leptospira borgpetersenii serovar Castellonis"]]},{"id":"NCBITaxon:49082","l":"Candidatus Neoarthromitus","na":1,"nb":57,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["NCBITaxon%3A2666074","Candidatus Arthromitus sp. GSU"],["NCBITaxon%3A2608943","Candidatus Arthromitus sp. M17"],["NCBITaxon%3A2608944","Candidatus Arthromitus sp. M18"],["NCBITaxon%3A2608945","Candidatus Arthromitus sp. M19"],["NCBITaxon%3A2608946","Candidatus Arthromitus sp. M20"],["NCBITaxon%3A2608947","Candidatus Arthromitus sp. M21"]]},{"id":"NCBITaxon:187","l":"Aquaspirillum","na":1,"nb":54,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A87645","Aquaspirillum arcticum"],["NCBITaxon%3A682713","Aquaspirillum denitrificans"],["NCBITaxon%3A80877","Aquaspirillum polymorphum"],["NCBITaxon%3A181658","Aquaspirillum putridiconchylium"],["NCBITaxon%3A190","Aquaspirillum serpens"],["NCBITaxon%3A1121004","Aquaspirillum serpens DSM 68"]]},{"id":"NCBITaxon:2864","l":"Dinophyceae","na":1,"nb":53,"a":[["dinoflagellate-associated-environment-habitatmech-gold-94019ddb33.html","dinoflagellate-associated environment"]],"b":[["NCBITaxon%3A143672","Akashiwo sanguinea"],["NCBITaxon%3A327968","Alexandrium andersonii"],["NCBITaxon%3A2925","Alexandrium catenella"],["NCBITaxon%3A2932","Alexandrium fundyense"],["NCBITaxon%3A109239","Alexandrium margalefii"],["NCBITaxon%3A39455","Alexandrium minutum"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":51,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A1392","Bacillus anthracis"],["NCBITaxon%3A1412844","Bacillus anthracis 52-G"],["NCBITaxon%3A1412843","Bacillus anthracis 8903-G"],["NCBITaxon%3A1412842","Bacillus anthracis 9080-G"],["NCBITaxon%3A1420588","Bacillus anthracis CVCC 40048"],["NCBITaxon%3A1439874","Bacillus anthracis CZC5"]]},{"id":"NCBITaxon:227979","l":"Jeotgalicoccus","na":1,"nb":50,"a":[["trachea-bto-0001388.html","trachea"]],"b":[["NCBITaxon%3A2838629","Candidatus Jeotgalicoccus stercoravium"],["NCBITaxon%3A709510","Jeotgalicoccus aerolatus"],["NCBITaxon%3A709509","Jeotgalicoccus coquinae"],["NCBITaxon%3A157227","Jeotgalicoccus halotolerans"],["NCBITaxon%3A589010","Jeotgalicoccus huakuii"],["NCBITaxon%3A516700","Jeotgalicoccus marinus"]]},{"id":"NCBITaxon:2830","l":"Haptophyta","na":1,"nb":44,"a":[["column-bto-0005692.html","column"]],"b":[["NCBITaxon%3A127549","Calcidiscus leptoporus"],["NCBITaxon%3A412156","Chrysochromulina leadbeateri"],["NCBITaxon%3A127563","Chrysochromulina parva"],["NCBITaxon%3A412157","Chrysochromulina rotalis"],["NCBITaxon%3A412158","Chrysochromulina simplex"],["NCBITaxon%3A1460289","Chrysochromulina tobinii"]]},{"id":"NCBITaxon:50709","l":"Acidocella","na":1,"nb":42,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"]],"b":[["NCBITaxon%3A472056","Acidocella aluminiidurans"],["NCBITaxon%3A33998","Acidocella aminolytica"],["NCBITaxon%3A1120923","Acidocella aminolytica 101 = DSM 11237"],["NCBITaxon%3A1922313","Acidocella aquatica"],["NCBITaxon%3A1303579","Acidocella aromatica"],["NCBITaxon%3A525","Acidocella facilis"]]},{"id":"NCBITaxon:340","l":"Xanthomonas campestris pv. campestris","na":1,"nb":41,"a":[["waste-treatment-plant-envo-00002272.html","waste treatment plant"]],"b":[["NCBITaxon%3A339","Xanthomonas campestris"],["NCBITaxon%3A340","Xanthomonas campestris pv. campestris"],["NCBITaxon%3A1357995","Xanthomonas campestris pv. campestris str. 147"],["NCBITaxon%3A314565","Xanthomonas campestris pv. campestris str. 8004"],["NCBITaxon%3A190485","Xanthomonas campestris pv. campestris str. ATCC 33913"],["NCBITaxon%3A509169","Xanthomonas campestris pv. campestris str. B100"]]},{"id":"NCBITaxon:384","l":"Rhizobium leguminosarum","na":1,"nb":39,"a":[["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["NCBITaxon%3A3019932","Rhizobium brockwellii"],["NCBITaxon%3A384","Rhizobium leguminosarum"],["NCBITaxon%3A385","Rhizobium leguminosarum bv. phaseoli"],["NCBITaxon%3A936350","Rhizobium leguminosarum bv. phaseoli 4292"],["NCBITaxon%3A1408223","Rhizobium leguminosarum bv. phaseoli CCGM1"],["NCBITaxon%3A1041140","Rhizobium leguminosarum bv. phaseoli FA23"]]},{"id":"NCBITaxon:261933","l":"Pleomorphomonas","na":1,"nb":38,"a":[["nectar-bto-0000537.html","nectar"]],"b":[["NCBITaxon%3A2023338","Pleomorphomonas carboxyditropha"],["NCBITaxon%3A1166257","Pleomorphomonas diazotrophica"],["NCBITaxon%3A257440","Pleomorphomonas koreensis"],["NCBITaxon%3A1122962","Pleomorphomonas koreensis DSM 23070"],["NCBITaxon%3A261934","Pleomorphomonas oryzae"],["NCBITaxon%3A1122963","Pleomorphomonas oryzae DSM 16300"]]},{"id":"NCBITaxon:447020","l":"Adlercreutzia","na":1,"nb":37,"a":[["cecum-mucosa-bto-0000213.html","cecum mucosa"]],"b":[["NCBITaxon%3A2941324","Adlercreutzia agrestimuris"],["NCBITaxon%3A2941323","Adlercreutzia aquisgranensis"],["NCBITaxon%3A671266","Adlercreutzia caecimuris"],["NCBITaxon%3A1235794","Adlercreutzia caecimuris B7"],["NCBITaxon%3A446660","Adlercreutzia equolifaciens"],["NCBITaxon%3A1384484","Adlercreutzia equolifaciens DSM 19450"]]},{"id":"NCBITaxon:54736","l":"Salmonella bongori","na":1,"nb":36,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A54736","Salmonella bongori"],["NCBITaxon%3A1299281","Salmonella bongori CFSAN000509"],["NCBITaxon%3A1299282","Salmonella bongori CFSAN000510"],["NCBITaxon%3A1197719","Salmonella bongori N268-08"],["NCBITaxon%3A218493","Salmonella bongori NCTC 12419"],["NCBITaxon%3A2577113","Salmonella bongori serovar 13,22:r:-"]]},{"id":"NCBITaxon:1080709","l":"Methanomassiliicoccus","na":1,"nb":35,"a":[["gut-bto-0000545.html","gut"]],"b":[["NCBITaxon%3A1406512","Candidatus Methanomassiliicoccus intestinalis"],["NCBITaxon%3A1295009","Candidatus Methanomassiliicoccus intestinalis Issoire-Mx1"],["NCBITaxon%3A1080712","Methanomassiliicoccus luminyensis"],["NCBITaxon%3A1175296","Methanomassiliicoccus luminyensis B10"],["NCBITaxon%3A2528041","Methanomassiliicoccus sp."],["NCBITaxon%3A1622079","Methanomassiliicoccus sp. 138"]]},{"id":"NCBITaxon:715","l":"Actinobacillus pleuropneumoniae","na":1,"nb":35,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["NCBITaxon%3A44930","Natronobacterium gregoryi"],["NCBITaxon%3A797304","Natronobacterium gregoryi SP2"],["NCBITaxon%3A715","Actinobacillus pleuropneumoniae"],["NCBITaxon%3A1224142","Actinobacillus pleuropneumoniae S8"],["NCBITaxon%3A40325","Actinobacillus pleuropneumoniae serovar 1"],["NCBITaxon%3A754347","Actinobacillus pleuropneumoniae serovar 10"]]},{"id":"NCBITaxon:28050","l":"Lachnospira","na":1,"nb":34,"a":[["adult-bto-0001043.html","adult"]],"b":[["NCBITaxon%3A39485","Lachnospira eligens"],["NCBITaxon%3A515620","Lachnospira eligens ATCC 27750"],["NCBITaxon%3A1263077","Lachnospira eligens CAG:72"],["NCBITaxon%3A3230259","Lachnospira hominis (ex Hitch et al. 2025)"],["NCBITaxon%3A2763051","Lachnospira hominis (ex Liu et al. 2021)"],["NCBITaxon%3A3133158","Lachnospira intestinalis"]]},{"id":"NCBITaxon:246874","l":"Cryomorphaceae","na":1,"nb":33,"a":[["column-bto-0005692.html","column"]],"b":[["NCBITaxon%3A2692424","Acidiluteibacter ferrifornacis"],["NCBITaxon%3A2819283","Acidiluteibacter sp."],["NCBITaxon%3A2964002","Acidiluteibacter sp. SCM31"],["NCBITaxon%3A2953872","Candidatus Marisimplicoccus framensis"],["NCBITaxon%3A3101254","Candidatus Marisimplicoccus sp."],["NCBITaxon%3A101383","Cryomorpha ignava"]]},{"id":"NCBITaxon:105850","l":"Acidilobus","na":1,"nb":32,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A105851","Acidilobus aceticus"],["NCBITaxon%3A242703","Acidilobus saccharovorans"],["NCBITaxon%3A666510","Acidilobus saccharovorans 345-15"],["NCBITaxon%3A1872109","Acidilobus sp."],["NCBITaxon%3A242702","Acidilobus sp. 124-87"],["NCBITaxon%3A242704","Acidilobus sp. 405-16"]]},{"id":"NCBITaxon:114627","l":"Alkaliphilus","na":1,"nb":32,"a":[["ileum-bto-0000620.html","ileum"]],"b":[["NCBITaxon%3A185693","Alkaliphilus crotonatoxidans"],["NCBITaxon%3A2841507","Alkaliphilus flagellatus"],["NCBITaxon%3A522397","Alkaliphilus halophilus"],["NCBITaxon%3A1482730","Alkaliphilus hydrothermalis"],["NCBITaxon%3A208226","Alkaliphilus metalliredigens"],["NCBITaxon%3A293826","Alkaliphilus metalliredigens QYMF"]]},{"id":"NCBITaxon:83428","l":"uncultured Bacillus sp.","na":32,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"],["saline-water-body-envo-01001319.html","saline water body"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["NCBITaxon%3A83428","uncultured Bacillus sp."]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":1,"nb":31,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["NCBITaxon%3A571","Klebsiella oxytoca"],["NCBITaxon%3A883116","Klebsiella oxytoca 09-7231"],["NCBITaxon%3A883117","Klebsiella oxytoca 10-5242"],["NCBITaxon%3A883118","Klebsiella oxytoca 10-5243"],["NCBITaxon%3A883119","Klebsiella oxytoca 10-5244"],["NCBITaxon%3A883120","Klebsiella oxytoca 10-5245"]]},{"id":"NCBITaxon:890","l":"Desulfuromonas","na":1,"nb":30,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A891","Desulfuromonas acetoxidans"],["NCBITaxon%3A281689","Desulfuromonas acetoxidans DSM 684"],["NCBITaxon%3A1523623","Desulfuromonas carbonis"],["NCBITaxon%3A93716","Desulfuromonas chloroethenica"],["NCBITaxon%3A158192","Desulfuromonas michiganensis"],["NCBITaxon%3A40982","Desulfuromonas palmitatis"]]},{"id":"NCBITaxon:109168","l":"Desulfotalea","na":1,"nb":28,"a":[["hemolymph-bto-0000572.html","hemolymph"]],"b":[["NCBITaxon%3A84979","Desulfotalea arctica"],["NCBITaxon%3A84980","Desulfotalea psychrophila"],["NCBITaxon%3A177439","Desulfotalea psychrophila LSv54"],["NCBITaxon%3A2030813","Desulfotalea sp."],["NCBITaxon%3A303199","Desulfotalea sp. NA22"],["NCBITaxon%3A1092757","Desulfotalea sp. PR5_A04"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":27,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A57706","Citrobacter braakii"],["NCBITaxon%3A1914243","Citrobacter europaeus"],["NCBITaxon%3A546","Citrobacter freundii"],["NCBITaxon%3A1173724","Citrobacter freundii 47N"],["NCBITaxon%3A742730","Citrobacter freundii 4_7_47CFAA"],["NCBITaxon%3A1444046","Citrobacter freundii 5-172-05_S1_C1"]]},{"id":"NCBITaxon:1077265","l":"Chthonomonas","na":1,"nb":26,"a":[["root-bto-0001188.html","root"]],"b":[["NCBITaxon%3A454171","Chthonomonas calidirosea"],["NCBITaxon%3A1416929","Chthonomonas calidirosea P488"],["NCBITaxon%3A1303518","Chthonomonas calidirosea T49"],["NCBITaxon%3A1427520","Chthonomonas calidirosea TKA4.10"],["NCBITaxon%3A1427521","Chthonomonas calidirosea WRG1.2"],["NCBITaxon%3A2282153","Chthonomonas sp."]]},{"id":"NCBITaxon:118","l":"Planctomyces","na":1,"nb":26,"a":[["column-bto-0005692.html","column"]],"b":[["NCBITaxon%3A1653850","Planctomyces bekefii"],["NCBITaxon%3A37635","Planctomyces sp."],["NCBITaxon%3A79925","Planctomyces sp. 248"],["NCBITaxon%3A79927","Planctomyces sp. 282"],["NCBITaxon%3A79926","Planctomyces sp. 287"],["NCBITaxon%3A79924","Planctomyces sp. 423"]]},{"id":"NCBITaxon:1869227","l":"bacterium","na":26,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["marine-water-body-envo-00001999.html","marine water body"],["watercourse-envo-00000029.html","watercourse"],["laboratory-facility-envo-01001406.html","laboratory facility"]],"b":[["NCBITaxon%3A1869227","bacterium"]]},{"id":"NCBITaxon:2173","l":"Methanobrevibacter smithii","na":1,"nb":26,"a":[["lagoon-envo-00000038.html","lagoon"]],"b":[["NCBITaxon%3A2173","Methanobrevibacter smithii"],["NCBITaxon%3A420247","Methanobrevibacter smithii ATCC 35061"],["NCBITaxon%3A1263088","Methanobrevibacter smithii CAG:186"],["NCBITaxon%3A521001","Methanobrevibacter smithii DSM 11975"],["NCBITaxon%3A521002","Methanobrevibacter smithii DSM 2374"],["NCBITaxon%3A483214","Methanobrevibacter smithii DSM 2375"]]},{"id":"NCBITaxon:106111","l":"Pedobacter sp. KP-2","na":25,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"]],"b":[["NCBITaxon%3A106111","Pedobacter sp. KP-2"]]},{"id":"NCBITaxon:1360","l":"Lactococcus lactis subsp. lactis","na":1,"nb":25,"a":[["foregut-bto-0000507.html","foregut"]],"b":[["NCBITaxon%3A1358","Lactococcus lactis"],["NCBITaxon%3A203404","Lactococcus lactis subsp. hordniae"],["NCBITaxon%3A1348656","Lactococcus lactis subsp. hordniae NBRC 100931"],["NCBITaxon%3A1360","Lactococcus lactis subsp. lactis"],["NCBITaxon%3A1379274","Lactococcus lactis subsp. lactis 1AA59"],["NCBITaxon%3A1137134","Lactococcus lactis subsp. lactis A12"]]},{"id":"NCBITaxon:1765","l":"Mycobacterium tuberculosis variant bovis","na":1,"nb":25,"a":[["lymph-node-bto-0000784.html","lymph node"]],"b":[["NCBITaxon%3A1773","Mycobacterium tuberculosis"],["NCBITaxon%3A1765","Mycobacterium tuberculosis variant bovis"],["NCBITaxon%3A1384084","Mycobacterium tuberculosis variant bovis 04-303"],["NCBITaxon%3A233413","Mycobacterium tuberculosis variant bovis AF2122/97"],["NCBITaxon%3A1389959","Mycobacterium tuberculosis variant bovis AN5"],["NCBITaxon%3A1438822","Mycobacterium tuberculosis variant bovis B2 7505"]]},{"id":"NCBITaxon:2740","l":"Peptococcus","na":1,"nb":25,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"]],"b":[["NCBITaxon%3A2741","Peptococcus niger"],["NCBITaxon%3A1643805","Peptococcus simiae"],["NCBITaxon%3A2049038","Peptococcus sp."],["NCBITaxon%3A665947","Peptococcus sp. 2_1_54CFAA_CT1"],["NCBITaxon%3A1357330","Peptococcus sp. 2_1_54CFAACT2"],["NCBITaxon%3A1151468","Peptococcus sp. canine oral taxon 044"]]},{"id":"NCBITaxon:114715","l":"uncultured Ralstonia sp.","na":24,"nb":1,"a":[["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"]],"b":[["NCBITaxon%3A114715","uncultured Ralstonia sp."]]},{"id":"NCBITaxon:1828","l":"Rhodococcoides fascians","na":1,"nb":23,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["NCBITaxon%3A1828","Rhodococcoides fascians"],["NCBITaxon%3A1443888","Rhodococcoides fascians 02-815"],["NCBITaxon%3A1443889","Rhodococcoides fascians 02-816c"],["NCBITaxon%3A1443890","Rhodococcoides fascians 04-516"],["NCBITaxon%3A1443891","Rhodococcoides fascians 05-339-1"],["NCBITaxon%3A1443892","Rhodococcoides fascians 05-561-1"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa (strain ATCC 15692 / DSM 22644 / CIP 104116 / JCM 14847 / LMG 12228 / 1C / PRS 101 / PAO1)","na":1,"nb":23,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1453991","Pseudomonas aeruginosa BK1"],["NCBITaxon%3A1236530","Pseudomonas aeruginosa JCM 14847"],["NCBITaxon%3A1131757","Pseudomonas aeruginosa MPAO1/P1"],["NCBITaxon%3A1131758","Pseudomonas aeruginosa MPAO1/P2"],["NCBITaxon%3A208964","Pseudomonas aeruginosa PAO1"]]},{"id":"NCBITaxon:431041","l":"Candidatus Synechococcus spongiarum","na":1,"nb":23,"a":[["inlet-envo-00000475.html","inlet"]],"b":[["NCBITaxon%3A431041","Candidatus Synechococcus spongiarum"],["NCBITaxon%3A1608213","Candidatus Synechococcus spongiarum 142"],["NCBITaxon%3A1608419","Candidatus Synechococcus spongiarum 15L"],["NCBITaxon%3A452893","Candidatus Synechococcus spongiarum 604SC1"],["NCBITaxon%3A452894","Candidatus Synechococcus spongiarum 607SC1"],["NCBITaxon%3A452895","Candidatus Synechococcus spongiarum 614SC3"]]},{"id":"NCBITaxon:112248","l":"Seinonella peptonophila","na":20,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["stream-envo-00000023.html","stream"],["surface-water-envo-00002042.html","surface water"]],"b":[["NCBITaxon%3A112248","Seinonella peptonophila"]]},{"id":"NCBITaxon:1452","l":"Bacillus atrophaeus","na":1,"nb":20,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A1452","Bacillus atrophaeus"],["NCBITaxon%3A723888","Bacillus atrophaeus 1013-1"],["NCBITaxon%3A723889","Bacillus atrophaeus 1013-2"],["NCBITaxon%3A720555","Bacillus atrophaeus 1942"],["NCBITaxon%3A743709","Bacillus atrophaeus ATCC 49822"],["NCBITaxon%3A743710","Bacillus atrophaeus ATCC 49822-1"]]},{"id":"NCBITaxon:1579","l":"Lactobacillus acidophilus","na":1,"nb":20,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"]],"b":[["NCBITaxon%3A1597","Lacticaseibacillus paracasei"],["NCBITaxon%3A1590","Lactiplantibacillus plantarum"],["NCBITaxon%3A1579","Lactobacillus acidophilus"],["NCBITaxon%3A891391","Lactobacillus acidophilus 30SC"],["NCBITaxon%3A525306","Lactobacillus acidophilus ATCC 4796"],["NCBITaxon%3A1421011","Lactobacillus acidophilus CFH"]]},{"id":"NCBITaxon:29488","l":"Photorhabdus luminescens","na":1,"nb":20,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A171438","Photorhabdus akhurstii"],["NCBITaxon%3A2934395","Photorhabdus akhurstii subsp. akhurstii"],["NCBITaxon%3A1004165","Photorhabdus caribbeanensis"],["NCBITaxon%3A1004166","Photorhabdus hainanensis"],["NCBITaxon%3A230088","Photorhabdus kayaii"],["NCBITaxon%3A768034","Photorhabdus kleinii"]]},{"id":"NCBITaxon:302911","l":"Bifidobacterium animalis subsp. lactis","na":1,"nb":20,"a":[["simulated-communities-habitatmech-bacdive-5fa4710934.html","Simulated-communities"]],"b":[["NCBITaxon%3A28025","Bifidobacterium animalis"],["NCBITaxon%3A302911","Bifidobacterium animalis subsp. lactis"],["NCBITaxon%3A442563","Bifidobacterium animalis subsp. lactis AD011"],["NCBITaxon%3A1365953","Bifidobacterium animalis subsp. lactis ATCC 27536"],["NCBITaxon%3A1167629","Bifidobacterium animalis subsp. lactis ATCC 27673"],["NCBITaxon%3A1365954","Bifidobacterium animalis subsp. lactis ATCC 27674"]]},{"id":"NCBITaxon:330214","l":"Nitrospira defluvii","na":20,"nb":1,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["activated-sludge-envo-00002046.html","activated sludge"],["aquatic-environment-envo-01000317.html","aquatic environment"],["archeological-site-envo-00000564.html","archeological site"],["cultivated-environment-envo-01000311.html","cultivated environment"]],"b":[["NCBITaxon%3A330214","Nitrospira defluvii"]]},{"id":"NCBITaxon:2050","l":"Mobiluncus","na":1,"nb":19,"a":[["heart-bto-0000562.html","heart"]],"b":[["NCBITaxon%3A2051","Mobiluncus curtisii"],["NCBITaxon%3A548479","Mobiluncus curtisii ATCC 43063"],["NCBITaxon%3A887326","Mobiluncus curtisii ATCC 51333"],["NCBITaxon%3A144177","Mobiluncus curtisii subsp. curtisii"],["NCBITaxon%3A585198","Mobiluncus curtisii subsp. curtisii ATCC 35241"],["NCBITaxon%3A144178","Mobiluncus holmesii"]]},{"id":"NCBITaxon:40041","l":"Streptococcus equi subsp. zooepidemicus","na":1,"nb":19,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["NCBITaxon%3A1336","Streptococcus equi"],["NCBITaxon%3A40041","Streptococcus equi subsp. zooepidemicus"],["NCBITaxon%3A1051072","Streptococcus equi subsp. zooepidemicus ATCC 35246"],["NCBITaxon%3A681573","Streptococcus equi subsp. zooepidemicus BHS5"],["NCBITaxon%3A1403449","Streptococcus equi subsp. zooepidemicus CY"],["NCBITaxon%3A553483","Streptococcus equi subsp. zooepidemicus H70"]]},{"id":"NCBITaxon:110321","l":"Sinorhizobium medicae","na":1,"nb":18,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A110321","Sinorhizobium medicae"],["NCBITaxon%3A1230619","Sinorhizobium medicae A321"],["NCBITaxon%3A1041148","Sinorhizobium medicae DI28"],["NCBITaxon%3A1230620","Sinorhizobium medicae KH36b"],["NCBITaxon%3A1230621","Sinorhizobium medicae KH36c"],["NCBITaxon%3A1230622","Sinorhizobium medicae KH36d"]]},{"id":"NCBITaxon:1462430","l":"Candidatus Nanohalarchaeota","na":1,"nb":18,"a":[["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A3138763","Asbonarchaeaceae archaeon (SeqCode)"],["NCBITaxon%3A3138746","Asbonarchaeum danakilense (SeqCode)"],["NCBITaxon%3A2987745","Candidatus Nanoanaerosalina archaeon"],["NCBITaxon%3A2987741","Candidatus Nanoanaerosalina halalkaliphila"],["NCBITaxon%3A2987742","Candidatus Nanohalalkaliarchaeum halalkaliphilum"],["NCBITaxon%3A2099673","Candidatus Nanohalarchaeota archaeon"]]},{"id":"NCBITaxon:158836","l":"Enterobacter hormaechei","na":1,"nb":18,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A3461408","Enterobacter hoffmannii subsp. nototheniae"],["NCBITaxon%3A158836","Enterobacter hormaechei"],["NCBITaxon%3A888063","Enterobacter hormaechei ATCC 49162"],["NCBITaxon%3A1812934","Enterobacter hormaechei subsp. hoffmannii"],["NCBITaxon%3A1333851","Enterobacter hormaechei subsp. hoffmannii ECNIH3"]]},{"id":"NCBITaxon:859","l":"Fusobacterium necrophorum","na":1,"nb":18,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A134605","Fusobacterium equinum"],["NCBITaxon%3A849","Fusobacterium gonidiaformans"],["NCBITaxon%3A859","Fusobacterium necrophorum"],["NCBITaxon%3A1441734","Fusobacterium necrophorum BFTR-1"],["NCBITaxon%3A1441736","Fusobacterium necrophorum BFTR-2"],["NCBITaxon%3A1441732","Fusobacterium necrophorum BL"]]},{"id":"NCBITaxon:1007","l":"Saprospira","na":1,"nb":17,"a":[["hemolymph-bto-0000572.html","hemolymph"]],"b":[["NCBITaxon%3A1008","Saprospira grandis"],["NCBITaxon%3A694433","Saprospira grandis DSM 2844"],["NCBITaxon%3A984262","Saprospira grandis str. Lewin"],["NCBITaxon%3A3100341","Saprospira sp."],["NCBITaxon%3A3023936","Saprospira sp. CCB-QB6"],["NCBITaxon%3A263635","Saprospira sp. CNJ451"]]},{"id":"NCBITaxon:135858","l":"Catenibacterium","na":1,"nb":17,"a":[["intestine-bto-0000648.html","intestine"]],"b":[["NCBITaxon%3A2764323","Catenibacterium faecis"],["NCBITaxon%3A100886","Catenibacterium mitsuokai"],["NCBITaxon%3A451640","Catenibacterium mitsuokai DSM 15897"],["NCBITaxon%3A3035606","Catenibacterium mitsuokai subsp. tridentinum"],["NCBITaxon%3A2049022","Catenibacterium sp."],["NCBITaxon%3A2292991","Catenibacterium sp. AM22-15"]]},{"id":"NCBITaxon:1767","l":"Mycobacterium intracellulare","na":1,"nb":17,"a":[["co-culture-habitatmech-bacdive-ff945d8a69.html","Co-culture"]],"b":[["NCBITaxon%3A1764","Mycobacterium avium"],["NCBITaxon%3A1767","Mycobacterium intracellulare"],["NCBITaxon%3A1299331","Mycobacterium intracellulare 1956"],["NCBITaxon%3A1160713","Mycobacterium intracellulare 3387"],["NCBITaxon%3A487521","Mycobacterium intracellulare ATCC 13950"],["NCBITaxon%3A1134473","Mycobacterium intracellulare H2"]]},{"id":"NCBITaxon:1829","l":"Rhodococcus rhodochrous","na":1,"nb":17,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A1872672","Azotobacter sp."],["NCBITaxon%3A36822","Gordonia rubripertincta"],["NCBITaxon%3A1824","Nocardia asteroides"],["NCBITaxon%3A37329","Nocardia farcinica"],["NCBITaxon%3A1833","Rhodococcus erythropolis"],["NCBITaxon%3A33008","Rhodococcus globerulus"]]},{"id":"NCBITaxon:114707","l":"uncultured Pseudomonas sp.","na":16,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["animal-house-envo-00003040.html","animal house"]],"b":[["NCBITaxon%3A114707","uncultured Pseudomonas sp."]]},{"id":"NCBITaxon:1292046","l":"Desulfobulbus sp. oral taxon 041 str. Dsb1-5","na":16,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["central-nervous-system-bto-0000227.html","central nervous system"],["colonic-mucosa-bto-0000271.html","colonic mucosa"],["epithelium-bto-0000416.html","epithelium"],["gingiva-bto-0000519.html","gingiva"],["hip-bto-0001457.html","hip"]],"b":[["NCBITaxon%3A1292046","Desulfobulbus sp. oral taxon 041 str. Dsb1-5"]]},{"id":"NCBITaxon:1409","l":"Bacillus sp. (in: firmicutes)","na":16,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["low-tide-zone-envo-00000319.html","low tide zone"],["organic-waste-material-envo-00002873.html","organic waste material"],["rhizosphere-envo-00005801.html","rhizosphere"],["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1409","Bacillus sp. (in: firmicutes)"]]},{"id":"NCBITaxon:1872627","l":"Archangium sp.","na":16,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["reservoir-envo-00000025.html","reservoir"],["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["NCBITaxon%3A1872627","Archangium sp."]]},{"id":"NCBITaxon:411485","l":"Faecalibacterium prausnitzii M21/2","na":16,"nb":1,"a":[["bay-envo-00000032.html","bay"],["black-smoker-envo-00000218.html","black smoker"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["saline-water-envo-00002010.html","saline water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"]],"b":[["NCBITaxon%3A411485","Faecalibacterium prausnitzii M21/2"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":1,"nb":16,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["NCBITaxon%3A1114880","Aeromonas australiensis"],["NCBITaxon%3A1264931","Flavobacterium acidificum"],["NCBITaxon%3A553","Pantoea ananatis"],["NCBITaxon%3A1419326","Pantoea ananatis 15320"],["NCBITaxon%3A932677","Pantoea ananatis AJ13355"],["NCBITaxon%3A1048262","Pantoea ananatis B1-9"]]},{"id":"NCBITaxon:636","l":"Edwardsiella tarda","na":1,"nb":16,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["NCBITaxon%3A1896336","Citrobacter sp."],["NCBITaxon%3A636","Edwardsiella tarda"],["NCBITaxon%3A1418112","Edwardsiella tarda 3-novo"],["NCBITaxon%3A1418111","Edwardsiella tarda 3P"],["NCBITaxon%3A667121","Edwardsiella tarda ATCC 15947 = NBRC 105688"],["NCBITaxon%3A500638","Edwardsiella tarda ATCC 23685"]]},{"id":"NCBITaxon:1585","l":"Lactobacillus delbrueckii subsp. bulgaricus","na":1,"nb":15,"a":[["pig-manure-envo-00003860.html","pig manure"]],"b":[["NCBITaxon%3A2775876","Lacticaseibacillus sp."],["NCBITaxon%3A1584","Lactobacillus delbrueckii"],["NCBITaxon%3A1585","Lactobacillus delbrueckii subsp. bulgaricus"],["NCBITaxon%3A353496","Lactobacillus delbrueckii subsp. bulgaricus 2038"],["NCBITaxon%3A390333","Lactobacillus delbrueckii subsp. bulgaricus ATCC 11842 = JCM 1002"],["NCBITaxon%3A321956","Lactobacillus delbrueckii subsp. bulgaricus ATCC BAA-365"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":1,"nb":15,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["NCBITaxon%3A175628","Gordonia paraffinivorans"],["NCBITaxon%3A1785","Mycobacterium sp."],["NCBITaxon%3A1772","Mycolicibacterium smegmatis"],["NCBITaxon%3A1455235","Mycolicibacterium smegmatis 30-MsmegS_ND_60_A"],["NCBITaxon%3A1455243","Mycolicibacterium smegmatis 31-MsmegS_CIP_60_A"],["NCBITaxon%3A1455251","Mycolicibacterium smegmatis 32-MsmegS_CIP_30_A"]]},{"id":"NCBITaxon:233189","l":"Anaerolinea","na":1,"nb":15,"a":[["crop-bto-0000301.html","crop"]],"b":[["NCBITaxon%3A1872519","Anaerolinea sp."],["NCBITaxon%3A1968532","Anaerolinea sp. 4484_236"],["NCBITaxon%3A511451","Anaerolinea sp. enrichment culture clone D2CL_Bac_16S_Clone24"],["NCBITaxon%3A1797237","Anaerolinea sp. RIFOXYB12_FULL_60_12"],["NCBITaxon%3A1674540","Anaerolinea sp. SCGC AB-790-B16"],["NCBITaxon%3A1674536","Anaerolinea sp. SCGC AB-790-K11"]]},{"id":"NCBITaxon:264","l":"Francisella tularensis subsp. novicida","na":1,"nb":15,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A984129","Francisella cf. novicida Fx1"],["NCBITaxon%3A676032","Francisella cf. tularensis subsp. novicida 3523"],["NCBITaxon%3A263","Francisella tularensis"],["NCBITaxon%3A264","Francisella tularensis subsp. novicida"],["NCBITaxon%3A1450527","Francisella tularensis subsp. novicida D9876"],["NCBITaxon%3A1452728","Francisella tularensis subsp. novicida F6168"]]},{"id":"NCBITaxon:301","l":"Ectopseudomonas oleovorans","na":1,"nb":15,"a":[["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A43263","Aquipseudomonas alcaligenes"],["NCBITaxon%3A301","Ectopseudomonas oleovorans"],["NCBITaxon%3A1453503","Ectopseudomonas oleovorans AD6"],["NCBITaxon%3A1182590","Ectopseudomonas oleovorans CECT 5344"],["NCBITaxon%3A1033992","Ectopseudomonas oleovorans MOIL14HWK12"],["NCBITaxon%3A468557","Ectopseudomonas oleovorans MTCC 5210"]]},{"id":"NCBITaxon:542","l":"Zymomonas mobilis","na":1,"nb":15,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A223958","Exiguobacterium oxidotolerans"],["NCBITaxon%3A1397699","Exiguobacterium oxidotolerans JCM 12280"],["NCBITaxon%3A542","Zymomonas mobilis"],["NCBITaxon%3A325472","Zymomonas mobilis subsp. francensis"],["NCBITaxon%3A120045","Zymomonas mobilis subsp. mobilis"],["NCBITaxon%3A555217","Zymomonas mobilis subsp. mobilis ATCC 10988"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":1,"nb":15,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["NCBITaxon%3A668","Aliivibrio fischeri"],["NCBITaxon%3A617136","Aliivibrio fischeri 1-C10"],["NCBITaxon%3A617138","Aliivibrio fischeri 9ZB36"],["NCBITaxon%3A1298605","Aliivibrio fischeri ATCC 7744 = JCM 18803 = DSM 507"],["NCBITaxon%3A1367486","Aliivibrio fischeri CB37"],["NCBITaxon%3A1367487","Aliivibrio fischeri EM17"]]},{"id":"NCBITaxon:83456","l":"Myxococcus virescens","na":15,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["feces-uberon-0001988.html","feces"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"]],"b":[["NCBITaxon%3A83456","Myxococcus virescens"]]},{"id":"NCBITaxon:106370","l":"Frankia casuarinae","na":14,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["river-envo-00000022.html","river"],["rhizosphere-envo-00005801.html","rhizosphere"],["root-nodule-bto-0001190.html","root nodule"],["biome-envo-00000428.html","biome"],["biotope-envo-00002036.html","biotope"]],"b":[["NCBITaxon%3A106370","Frankia casuarinae"]]},{"id":"NCBITaxon:134561","l":"Nocardioides sp. C190","na":14,"nb":1,"a":[["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["rhizosphere-envo-00005801.html","rhizosphere"],["biome-envo-00000428.html","biome"]],"b":[["NCBITaxon%3A134561","Nocardioides sp. C190"]]},{"id":"NCBITaxon:1408194","l":"Endomicrobium","na":1,"nb":14,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A3242313","Candidatus Endomicrobium embiratermitis"],["NCBITaxon%3A3242314","Candidatus Endomicrobium labiotermitis"],["NCBITaxon%3A3242315","Candidatus Endomicrobium macrotermitis"],["NCBITaxon%3A3242316","Candidatus Endomicrobium neocapritermitis"],["NCBITaxon%3A3242317","Candidatus Endomicrobium procryptotermitis"],["NCBITaxon%3A1795642","Candidatus Endomicrobium sp. HsTcC-Em16"]]},{"id":"NCBITaxon:2242","l":"Halobacterium salinarum","na":1,"nb":14,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["NCBITaxon%3A2242","Halobacterium salinarum"],["NCBITaxon%3A2597657","Halobacterium salinarum DSM 3754"],["NCBITaxon%3A64091","Halobacterium salinarum NRC-1"],["NCBITaxon%3A2886895","Halobacterium salinarum NRC-34001"],["NCBITaxon%3A478009","Halobacterium salinarum R1"],["NCBITaxon%3A2109941","Halobacterium salinarum str. WSR1 (ex H. Halobium)"]]},{"id":"NCBITaxon:511","l":"Alcaligenes faecalis","na":1,"nb":14,"a":[["foot-bto-0000476.html","foot"]],"b":[["NCBITaxon%3A134375","Achromobacter sp."],["NCBITaxon%3A511","Alcaligenes faecalis"],["NCBITaxon%3A1255592","Alcaligenes faecalis 2L10"],["NCBITaxon%3A32001","Alcaligenes faecalis subsp. faecalis"],["NCBITaxon%3A1218102","Alcaligenes faecalis subsp. faecalis NBRC 13111"],["NCBITaxon%3A1156918","Alcaligenes faecalis subsp. faecalis NCIB 8687"]]},{"id":"NCBITaxon:71864","l":"Herpetosiphon sp.","na":14,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["NCBITaxon%3A71864","Herpetosiphon sp."]]},{"id":"NCBITaxon:1227","l":"Nitrosococcus","na":1,"nb":13,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A133539","Nitrosococcus halophilus"],["NCBITaxon%3A472759","Nitrosococcus halophilus Nc 4"],["NCBITaxon%3A38146","Nitrosococcus nitrosus"],["NCBITaxon%3A1229","Nitrosococcus oceani"],["NCBITaxon%3A473788","Nitrosococcus oceani AFC27"],["NCBITaxon%3A323261","Nitrosococcus oceani ATCC 19707"]]},{"id":"NCBITaxon:150053","l":"Yersinia enterocolitica subsp. palearctica","na":1,"nb":13,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["NCBITaxon%3A630","Yersinia enterocolitica"],["NCBITaxon%3A150052","Yersinia enterocolitica subsp. enterocolitica"],["NCBITaxon%3A150053","Yersinia enterocolitica subsp. palearctica"],["NCBITaxon%3A994476","Yersinia enterocolitica subsp. palearctica 105.5R(r)"],["NCBITaxon%3A940287","Yersinia enterocolitica subsp. palearctica 556/8265"],["NCBITaxon%3A940288","Yersinia enterocolitica subsp. palearctica 647/5307"]]},{"id":"NCBITaxon:168695","l":"Salinispora tropica","na":1,"nb":13,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A168695","Salinispora tropica"],["NCBITaxon%3A1137247","Salinispora tropica CNB476"],["NCBITaxon%3A1136431","Salinispora tropica CNB536"],["NCBITaxon%3A369723","Salinispora tropica CNB-440"],["NCBITaxon%3A1137248","Salinispora tropica CNH898"],["NCBITaxon%3A1169198","Salinispora tropica CNR699"]]},{"id":"NCBITaxon:204516","l":"Phocaeicola massiliensis","na":1,"nb":13,"a":[["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["NCBITaxon%3A204516","Phocaeicola massiliensis"],["NCBITaxon%3A1121098","Phocaeicola massiliensis B84634 = Timone 84634 = DSM 17679 = JCM 13223"],["NCBITaxon%3A1338881","Phocaeicola massiliensis TS7.1-1.1"],["NCBITaxon%3A1338882","Phocaeicola massiliensis TS7.1-1.2"],["NCBITaxon%3A1338883","Phocaeicola massiliensis TS7.1-1.3"],["NCBITaxon%3A1333703","Phocaeicola massiliensis TS7.1_V2.1.1"]]},{"id":"NCBITaxon:28122","l":"Fibrobacter intestinalis","na":13,"nb":1,"a":[["bay-envo-00000032.html","bay"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["small-river-biome-envo-00000890.html","small river biome"],["water-body-envo-00000063.html","water body"]],"b":[["NCBITaxon%3A28122","Fibrobacter intestinalis"]]},{"id":"NCBITaxon:413497","l":"Cronobacter dublinensis","na":1,"nb":13,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["NCBITaxon%3A691816","Bacteroides rodentium"],["NCBITaxon%3A1236512","Bacteroides rodentium JCM 16496"],["NCBITaxon%3A413497","Cronobacter dublinensis"],["NCBITaxon%3A1208656","Cronobacter dublinensis 1210"],["NCBITaxon%3A1208661","Cronobacter dublinensis 582"],["NCBITaxon%3A3459541","Cronobacter dublinensis subsp. beijingensis"]]},{"id":"NCBITaxon:669","l":"Vibrio harveyi","na":1,"nb":13,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["NCBITaxon%3A342113","Burkholderia oklahomensis"],["NCBITaxon%3A669","Vibrio harveyi"],["NCBITaxon%3A673519","Vibrio harveyi 1DA3"],["NCBITaxon%3A1287887","Vibrio harveyi AOD131"],["NCBITaxon%3A1125980","Vibrio harveyi CAIM 1792"],["NCBITaxon%3A1352943","Vibrio harveyi E385"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":13,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["NCBITaxon%3A1773","Mycobacterium tuberculosis"],["NCBITaxon%3A83332","Mycobacterium tuberculosis H37Rv"],["NCBITaxon%3A747078","Mycobacterium tuberculosis H37Rv_2009"],["NCBITaxon%3A928249","Mycobacterium tuberculosis H37Rv_ideR_mutant_ST22"],["NCBITaxon%3A757417","Mycobacterium tuberculosis H37RvAE"],["NCBITaxon%3A757419","Mycobacterium tuberculosis H37RvCO"]]},{"id":"NCBITaxon:104268","l":"Tenacibaculum mesophilum","na":12,"nb":1,"a":[["bay-envo-00000032.html","bay"],["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"],["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A104268","Tenacibaculum mesophilum"]]},{"id":"NCBITaxon:126385","l":"Providencia alcalifaciens","na":1,"nb":12,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A126385","Providencia alcalifaciens"],["NCBITaxon%3A1256988","Providencia alcalifaciens 205/92"],["NCBITaxon%3A663916","Providencia alcalifaciens Ban1"],["NCBITaxon%3A1141661","Providencia alcalifaciens Dmel2"],["NCBITaxon%3A520999","Providencia alcalifaciens DSM 30120"],["NCBITaxon%3A1256987","Providencia alcalifaciens F90-2004"]]},{"id":"NCBITaxon:28026","l":"Bifidobacterium pseudocatenulatum","na":1,"nb":12,"a":[["breast-bto-0000149.html","breast"]],"b":[["NCBITaxon%3A1423","Bacillus subtilis"],["NCBITaxon%3A135461","Bacillus subtilis subsp. subtilis"],["NCBITaxon%3A1686","Bifidobacterium catenulatum"],["NCBITaxon%3A28026","Bifidobacterium pseudocatenulatum"],["NCBITaxon%3A1263060","Bifidobacterium pseudocatenulatum CAG:263"],["NCBITaxon%3A718253","Bifidobacterium pseudocatenulatum D2CA"]]},{"id":"NCBITaxon:28035","l":"Staphylococcus lugdunensis","na":1,"nb":12,"a":[["foot-bto-0000476.html","foot"]],"b":[["NCBITaxon%3A1308746","Staphylococcus lugdenensis ADL-114"],["NCBITaxon%3A1308747","Staphylococcus lugdenensis ADL-405"],["NCBITaxon%3A28035","Staphylococcus lugdunensis"],["NCBITaxon%3A883164","Staphylococcus lugdunensis ACS-027-V-Sch2"],["NCBITaxon%3A698737","Staphylococcus lugdunensis HKU09-01"],["NCBITaxon%3A525377","Staphylococcus lugdunensis M23590"]]},{"id":"NCBITaxon:53409","l":"Pseudomonas coronafaciens","na":1,"nb":12,"a":[["pc-12-cell-bto-0001009.html","PC-12 cell"]],"b":[["NCBITaxon%3A53409","Pseudomonas coronafaciens"],["NCBITaxon%3A129135","Pseudomonas coronafaciens pv. atropurpurea"],["NCBITaxon%3A235275","Pseudomonas coronafaciens pv. coronafaciens"],["NCBITaxon%3A251653","Pseudomonas coronafaciens pv. garcae"],["NCBITaxon%3A1515743","Pseudomonas coronafaciens pv. morceparum"],["NCBITaxon%3A235277","Pseudomonas coronafaciens pv. oryzae"]]},{"id":"NCBITaxon:56454","l":"Xanthomonas hortorum","na":1,"nb":12,"a":[["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A339","Xanthomonas campestris"],["NCBITaxon%3A56454","Xanthomonas hortorum"],["NCBITaxon%3A925777","Xanthomonas hortorum ATCC 19865"],["NCBITaxon%3A3075649","Xanthomonas hortorum NBC5720"],["NCBITaxon%3A487904","Xanthomonas hortorum pv. carotae"],["NCBITaxon%3A863365","Xanthomonas hortorum pv. carotae str. M081"]]},{"id":"NCBITaxon:58172","l":"Paenibacillus sp.","na":12,"nb":1,"a":[["factory-envo-01000536.html","factory"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A58172","Paenibacillus sp."]]},{"id":"NCBITaxon:58340","l":"Streptomyces lavendulae subsp. lavendulae","na":1,"nb":12,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A1894","Kitasatospora aureofaciens"],["NCBITaxon%3A1914","Streptomyces lavendulae"],["NCBITaxon%3A68190","Streptomyces lavendulae subsp. colombiensis"],["NCBITaxon%3A66421","Streptomyces lavendulae subsp. grasserius"],["NCBITaxon%3A58340","Streptomyces lavendulae subsp. lavendulae"],["NCBITaxon%3A1303691","Streptomyces lavendulae subsp. lavendulae JCM 4055"]]},{"id":"NCBITaxon:584","l":"Proteus mirabilis","na":1,"nb":12,"a":[["salivary-gland-bto-0001203.html","salivary gland"]],"b":[["NCBITaxon%3A584","Proteus mirabilis"],["NCBITaxon%3A1285374","Proteus mirabilis 1014"],["NCBITaxon%3A1308721","Proteus mirabilis ADL-319"],["NCBITaxon%3A1308722","Proteus mirabilis ADL-321"],["NCBITaxon%3A1308723","Proteus mirabilis ADL-401"],["NCBITaxon%3A525369","Proteus mirabilis ATCC 29906"]]},{"id":"NCBITaxon:61645","l":"Enterobacter asburiae","na":1,"nb":12,"a":[["bone-marrow-bto-0000141.html","bone marrow"]],"b":[["NCBITaxon%3A61645","Enterobacter asburiae"],["NCBITaxon%3A1330532","Enterobacter asburiae B1-3"],["NCBITaxon%3A1330533","Enterobacter asburiae B5-60"],["NCBITaxon%3A1442602","Enterobacter asburiae C1"],["NCBITaxon%3A1298604","Enterobacter asburiae JCM 6051"],["NCBITaxon%3A1421338","Enterobacter asburiae L1"]]},{"id":"NCBITaxon:106654","l":"Acinetobacter nosocomialis","na":1,"nb":11,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A981325","Acinetobacter genomosp. 13TU str. NCTC 8102"],["NCBITaxon%3A106654","Acinetobacter nosocomialis"],["NCBITaxon%3A1147131","Acinetobacter nosocomialis 28F"],["NCBITaxon%3A1183155","Acinetobacter nosocomialis Ab22222"],["NCBITaxon%3A1343071","Acinetobacter nosocomialis M2"],["NCBITaxon%3A1217670","Acinetobacter nosocomialis NIPH 2119"]]},{"id":"NCBITaxon:110319","l":"Nocardioides sp. CF8","na":11,"nb":1,"a":[["stream-envo-00000023.html","stream"],["bioreactor-envo-00002123.html","bioreactor"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["biofilm-material-envo-01000156.html","biofilm material"],["biotope-envo-00002036.html","biotope"],["desert-biome-envo-01000179.html","desert biome"]],"b":[["NCBITaxon%3A110319","Nocardioides sp. CF8"]]},{"id":"NCBITaxon:110933","l":"Leifsonia poae","na":11,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["plant-gall-po-0025626.html","plant gall"],["animal-associated-environment-envo-01001002.html","animal-associated environment"],["desert-biome-envo-01000179.html","desert biome"],["farm-envo-00000078.html","farm"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["NCBITaxon%3A110933","Leifsonia poae"]]},{"id":"NCBITaxon:120045","l":"Zymomonas mobilis subsp. mobilis","na":1,"nb":11,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A542","Zymomonas mobilis"],["NCBITaxon%3A120045","Zymomonas mobilis subsp. mobilis"],["NCBITaxon%3A555217","Zymomonas mobilis subsp. mobilis ATCC 10988"],["NCBITaxon%3A627344","Zymomonas mobilis subsp. mobilis ATCC 29191"],["NCBITaxon%3A1231376","Zymomonas mobilis subsp. mobilis ATCC 31822"],["NCBITaxon%3A1389958","Zymomonas mobilis subsp. mobilis IRMH52"]]},{"id":"NCBITaxon:1720","l":"Corynebacterium sp.","na":11,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"]],"b":[["NCBITaxon%3A1720","Corynebacterium sp."]]},{"id":"NCBITaxon:208962","l":"Escherichia albertii","na":1,"nb":11,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["NCBITaxon%3A208962","Escherichia albertii"],["NCBITaxon%3A550692","Escherichia albertii B090"],["NCBITaxon%3A550693","Escherichia albertii B156"],["NCBITaxon%3A1440052","Escherichia albertii KF1"],["NCBITaxon%3A1115511","Escherichia albertii NBRC 107761 = DSM 17582"],["NCBITaxon%3A502347","Escherichia albertii TW07627"]]},{"id":"NCBITaxon:231024","l":"Streptomyces africanus","na":11,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["research-facility-envo-00000469.html","research facility"],["activated-sludge-envo-00002046.html","activated sludge"],["village-biome-envo-01000246.html","village biome"],["area-of-tundra-envo-00000112.html","area of tundra"]],"b":[["NCBITaxon%3A231024","Streptomyces africanus"]]},{"id":"NCBITaxon:234267","l":"Candidatus Solibacter usitatus Ellin6076","na":11,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["pond-water-envo-00002228.html","pond water"],["aquatic-environment-envo-01000317.html","aquatic environment"],["desert-sand-envo-00005800.html","desert sand"],["environmental-material-envo-00010483.html","environmental material"],["mud-envo-01000001.html","mud"]],"b":[["NCBITaxon%3A234267","Candidatus Solibacter usitatus Ellin6076"]]},{"id":"NCBITaxon:409","l":"Methylobacterium sp.","na":11,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["air-conditioning-unit-envo-00002874.html","air conditioning unit"],["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A409","Methylobacterium sp."]]},{"id":"NCBITaxon:83560","l":"Chlamydia muridarum","na":1,"nb":11,"a":[["oviduct-bto-0000980.html","oviduct"]],"b":[["NCBITaxon%3A83560","Chlamydia muridarum"],["NCBITaxon%3A658600","Chlamydia muridarum MopnTet14"],["NCBITaxon%3A243161","Chlamydia muridarum str. Nigg"],["NCBITaxon%3A1434769","Chlamydia muridarum str. Nigg3"],["NCBITaxon%3A1434771","Chlamydia muridarum str. Nigg3 CMUT3-13"],["NCBITaxon%3A1434772","Chlamydia muridarum str. Nigg3 CMUT3-42"]]},{"id":"NCBITaxon:103855","l":"Bordetella hinzii","na":1,"nb":10,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A103855","Bordetella hinzii"],["NCBITaxon%3A1331255","Bordetella hinzii 1277"],["NCBITaxon%3A1331256","Bordetella hinzii 4161"],["NCBITaxon%3A1331257","Bordetella hinzii 5132"],["NCBITaxon%3A1392838","Bordetella hinzii ATCC 51730"],["NCBITaxon%3A398517","Bordetella hinzii BC-306"]]},{"id":"NCBITaxon:1058","l":"Thiocapsa roseopersicina","na":10,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["saline-marsh-envo-00000054.html","saline marsh"],["river-envo-00000022.html","river"],["waste-water-envo-00002001.html","waste water"],["environmental-feature-envo-00002297.html","environmental feature"],["stromatolite-mat-envo-00002157.html","stromatolite mat"]],"b":[["NCBITaxon%3A1058","Thiocapsa roseopersicina"]]},{"id":"NCBITaxon:108028","l":"Arcanobacterium pluranimalium","na":10,"nb":1,"a":[["river-envo-00000022.html","river"],["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"],["biofilm-material-envo-01000156.html","biofilm material"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A108028","Arcanobacterium pluranimalium"]]},{"id":"NCBITaxon:1205679","l":"Bifidobacterium longum subsp. longum CECT 7347","na":10,"nb":1,"a":[["caco-2-cell-bto-0000195.html","CACO-2 cell"],["enterocyte-bto-0000398.html","enterocyte"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["jejunum-bto-0000657.html","jejunum"],["leukocyte-bto-0000751.html","leukocyte"]],"b":[["NCBITaxon%3A1205679","Bifidobacterium longum subsp. longum CECT 7347"]]},{"id":"NCBITaxon:1338","l":"Streptococcus intermedius","na":1,"nb":10,"a":[["geographic-feature-envo-00000000.html","geographic feature"]],"b":[["NCBITaxon%3A1328","Streptococcus anginosus"],["NCBITaxon%3A1302","Streptococcus gordonii"],["NCBITaxon%3A1338","Streptococcus intermedius"],["NCBITaxon%3A862967","Streptococcus intermedius B196"],["NCBITaxon%3A1248420","Streptococcus intermedius BA1"],["NCBITaxon%3A862966","Streptococcus intermedius C270"]]},{"id":"NCBITaxon:1506","l":"Clostridium sp.","na":10,"nb":1,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["animal-waste-material-envo-00002276.html","animal waste material"],["laboratory-facility-envo-01001406.html","laboratory facility"],["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["NCBITaxon%3A1506","Clostridium sp."]]},{"id":"NCBITaxon:1855","l":"Frankia sp.","na":10,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["surface-water-envo-00002042.html","surface water"],["water-body-envo-00000063.html","water body"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["cultivated-environment-envo-01000311.html","cultivated environment"],["area-of-tundra-envo-00000112.html","area of tundra"]],"b":[["NCBITaxon%3A1855","Frankia sp."]]},{"id":"NCBITaxon:28118","l":"Odoribacter splanchnicus","na":1,"nb":10,"a":[["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["NCBITaxon%3A28118","Odoribacter splanchnicus"],["NCBITaxon%3A1263090","Odoribacter splanchnicus CAG:14"],["NCBITaxon%3A709991","Odoribacter splanchnicus DSM 20712"],["NCBITaxon%3A1339535","Odoribacter splanchnicus TSDC10.2-1.1"],["NCBITaxon%3A1339536","Odoribacter splanchnicus TSDC17.1-1.1"],["NCBITaxon%3A1339537","Odoribacter splanchnicus TSDC17.2-1.1"]]},{"id":"NCBITaxon:2926447","l":"Marinispora","na":1,"nb":10,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A562918","Marinispora sp. CNQ-140"],["NCBITaxon%3A563581","Streptomyces sp. MAR2 13647N"],["NCBITaxon%3A563582","Streptomyces sp. MAR2 13665F"],["NCBITaxon%3A563583","Streptomyces sp. MAR2 13668C"],["NCBITaxon%3A378617","Streptomyces sp. MAR2 CNJ962 PL04"],["NCBITaxon%3A378618","Streptomyces sp. MAR2 CNR872 PL04"]]},{"id":"NCBITaxon:293387","l":"Bacillus altitudinis","na":1,"nb":10,"a":[["resting-cell-bto-0001170.html","resting cell"]],"b":[["NCBITaxon%3A293387","Bacillus altitudinis"],["NCBITaxon%3A1255572","Bacillus altitudinis 263"],["NCBITaxon%3A1178544","Bacillus altitudinis 41KF2b"],["NCBITaxon%3A1326972","Bacillus altitudinis A23-8"],["NCBITaxon%3A1326971","Bacillus altitudinis C101"],["NCBITaxon%3A1326970","Bacillus altitudinis C16B11"]]},{"id":"NCBITaxon:38304","l":"Corynebacterium tuberculostearicum","na":1,"nb":10,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["NCBITaxon%3A38284","Corynebacterium accolens"],["NCBITaxon%3A1736004","Corynebacterium cf. tuberculostearicum 1237_CAUR"],["NCBITaxon%3A1736005","Corynebacterium cf. tuberculostearicum 620_CAUR"],["NCBITaxon%3A1736006","Corynebacterium cf. tuberculostearicum 911_CAUR"],["NCBITaxon%3A38287","Corynebacterium fastidiosum"],["NCBITaxon%3A1720","Corynebacterium sp."]]},{"id":"NCBITaxon:439334","l":"Mycobacterium avium subsp. hominissuis","na":1,"nb":10,"a":[["lymph-node-bto-0000784.html","lymph node"]],"b":[["NCBITaxon%3A439334","Mycobacterium avium subsp. hominissuis"],["NCBITaxon%3A1402966","Mycobacterium avium subsp. hominissuis 100"],["NCBITaxon%3A1402967","Mycobacterium avium subsp. hominissuis 101"],["NCBITaxon%3A1391990","Mycobacterium avium subsp. hominissuis 10-4249"],["NCBITaxon%3A1381559","Mycobacterium avium subsp. hominissuis 10-5606"],["NCBITaxon%3A1160712","Mycobacterium avium subsp. hominissuis 3388"]]},{"id":"NCBITaxon:109263","l":"Halothiobacillus kellyi","na":9,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"],["small-river-biome-envo-00000890.html","small river biome"]],"b":[["NCBITaxon%3A109263","Halothiobacillus kellyi"]]},{"id":"NCBITaxon:111770","l":"Thiothrix fructosivorans","na":9,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"],["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A111770","Thiothrix fructosivorans"]]},{"id":"NCBITaxon:112235","l":"Neochlamydia hartmannellae","na":9,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["rhizosphere-envo-00005801.html","rhizosphere"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["biome-envo-00000428.html","biome"],["desert-biome-envo-01000179.html","desert biome"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"]],"b":[["NCBITaxon%3A112235","Neochlamydia hartmannellae"]]},{"id":"NCBITaxon:1134687","l":"Klebsiella michiganensis","na":1,"nb":9,"a":[["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"]],"b":[["NCBITaxon%3A1134687","Klebsiella michiganensis"],["NCBITaxon%3A1191061","Klebsiella michiganensis E718"],["NCBITaxon%3A1416754","Klebsiella michiganensis H1g"],["NCBITaxon%3A1308980","Klebsiella michiganensis HKOPL1"],["NCBITaxon%3A1006551","Klebsiella michiganensis KCTC 1686"],["NCBITaxon%3A290336","Klebsiella michiganensis M5al"]]},{"id":"NCBITaxon:1155385","l":"Proteiniclasticum","na":1,"nb":9,"a":[["urine-bto-0001419.html","urine"]],"b":[["NCBITaxon%3A2817862","Proteiniclasticum aestuarii"],["NCBITaxon%3A398199","Proteiniclasticum ruminis"],["NCBITaxon%3A1410668","Proteiniclasticum ruminis DSM 24773"],["NCBITaxon%3A2804028","Proteiniclasticum sediminis"],["NCBITaxon%3A2053595","Proteiniclasticum sp."],["NCBITaxon%3A3374101","Proteiniclasticum sp. C24MP"]]},{"id":"NCBITaxon:1599","l":"Latilactobacillus sakei","na":1,"nb":9,"a":[["research-facility-envo-00000469.html","research facility"]],"b":[["NCBITaxon%3A1599","Latilactobacillus sakei"],["NCBITaxon%3A1381395","Latilactobacillus sakei dgh6"],["NCBITaxon%3A1634","Latilactobacillus sakei L45"],["NCBITaxon%3A214325","Latilactobacillus sakei subsp. carnosus"],["NCBITaxon%3A525363","Latilactobacillus sakei subsp. carnosus DSM 15831"],["NCBITaxon%3A214326","Latilactobacillus sakei subsp. sakei"]]},{"id":"NCBITaxon:1604","l":"Lactobacillus amylovorus","na":1,"nb":9,"a":[["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A1604","Lactobacillus amylovorus"],["NCBITaxon%3A1263084","Lactobacillus amylovorus CAG:719"],["NCBITaxon%3A1423723","Lactobacillus amylovorus DSM 20531"],["NCBITaxon%3A695562","Lactobacillus amylovorus GRL1118"],["NCBITaxon%3A695560","Lactobacillus amylovorus GRL 1112"],["NCBITaxon%3A695561","Lactobacillus amylovorus GRL 1115"]]},{"id":"NCBITaxon:1667","l":"Arthrobacter sp.","na":9,"nb":1,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["leaf-po-0025034.html","leaf"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["NCBITaxon%3A1667","Arthrobacter sp."]]},{"id":"NCBITaxon:1768","l":"Mycobacterium kansasii","na":1,"nb":9,"a":[["liquid-water-envo-00002006.html","liquid water"]],"b":[["NCBITaxon%3A1768","Mycobacterium kansasii"],["NCBITaxon%3A1299326","Mycobacterium kansasii 662"],["NCBITaxon%3A1299327","Mycobacterium kansasii 732"],["NCBITaxon%3A1299328","Mycobacterium kansasii 824"],["NCBITaxon%3A557599","Mycobacterium kansasii ATCC 12478"],["NCBITaxon%3A1451191","Mycobacterium kansasii Z61"]]},{"id":"NCBITaxon:1812935","l":"Enterobacter roggenkampii","na":1,"nb":9,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A299767","Enterobacter ludwigii"],["NCBITaxon%3A1812935","Enterobacter roggenkampii"],["NCBITaxon%3A1439326","Enterobacter roggenkampii CHS 79"],["NCBITaxon%3A1334630","Enterobacter roggenkampii EC_38VIM1"],["NCBITaxon%3A1329832","Enterobacter roggenkampii MGH 34"]]},{"id":"NCBITaxon:1898207","l":"Clostridiales bacterium","na":1,"nb":9,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1898207","Clostridiales bacterium"],["NCBITaxon%3A3070003","Clostridiales bacterium T6-6.105"],["NCBITaxon%3A3070004","Clostridiales bacterium T6-6.35"],["NCBITaxon%3A3070005","Clostridiales bacterium T6-6.39"],["NCBITaxon%3A3070006","Clostridiales bacterium T6-7.35"],["NCBITaxon%3A3070007","Clostridiales bacterium T6-7.60"]]},{"id":"NCBITaxon:192222","l":"Campylobacter jejuni subsp. jejuni NCTC 11168 = ATCC 700819","na":1,"nb":9,"a":[["flagellate-bto-0000464.html","flagellate"]],"b":[["NCBITaxon%3A197","Campylobacter jejuni"],["NCBITaxon%3A192222","Campylobacter jejuni subsp. jejuni NCTC 11168 = ATCC 700819"],["NCBITaxon%3A1211776","Campylobacter jejuni subsp. jejuni NCTC 11168-BN148"],["NCBITaxon%3A1385724","Campylobacter jejuni subsp. jejuni NCTC 11168-GSv"],["NCBITaxon%3A1385720","Campylobacter jejuni subsp. jejuni NCTC 11168-K12E5"],["NCBITaxon%3A1385723","Campylobacter jejuni subsp. jejuni NCTC 11168-Kf1"]]},{"id":"NCBITaxon:199","l":"Campylobacter concisus","na":1,"nb":9,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["NCBITaxon%3A199","Campylobacter concisus"],["NCBITaxon%3A360104","Campylobacter concisus 13826"],["NCBITaxon%3A1243032","Campylobacter concisus ATCC 51561"],["NCBITaxon%3A1242969","Campylobacter concisus ATCC 51562"],["NCBITaxon%3A1242967","Campylobacter concisus UNSW1"],["NCBITaxon%3A1242965","Campylobacter concisus UNSW2"]]},{"id":"NCBITaxon:29539","l":"Thermoleophilum album","na":9,"nb":1,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"],["desert-sand-envo-00005800.html","desert sand"],["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"],["village-biome-envo-01000246.html","village biome"]],"b":[["NCBITaxon%3A29539","Thermoleophilum album"]]},{"id":"NCBITaxon:298","l":"Pseudomonas marginalis","na":1,"nb":9,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["NCBITaxon%3A129847","Pseudomonas grimontii"],["NCBITaxon%3A298","Pseudomonas marginalis"],["NCBITaxon%3A1198318","Pseudomonas marginalis ICMP 11289"],["NCBITaxon%3A1198317","Pseudomonas marginalis ICMP 9505"],["NCBITaxon%3A69646","Pseudomonas marginalis pv. alfalfae"],["NCBITaxon%3A97473","Pseudomonas marginalis pv. marginalis"]]},{"id":"NCBITaxon:32019","l":"Campylobacter fetus subsp. fetus","na":1,"nb":9,"a":[["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["NCBITaxon%3A196","Campylobacter fetus"],["NCBITaxon%3A32019","Campylobacter fetus subsp. fetus"],["NCBITaxon%3A1240980","Campylobacter fetus subsp. fetus 04/554"],["NCBITaxon%3A360106","Campylobacter fetus subsp. fetus 82-40"],["NCBITaxon%3A1273268","Campylobacter fetus subsp. fetus BT 10/98"],["NCBITaxon%3A1273130","Campylobacter fetus subsp. fetus cff110800-21-2"]]},{"id":"NCBITaxon:39152","l":"Methanococcus maripaludis","na":1,"nb":9,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A39152","Methanococcus maripaludis"],["NCBITaxon%3A402880","Methanococcus maripaludis C5"],["NCBITaxon%3A444158","Methanococcus maripaludis C6"],["NCBITaxon%3A426368","Methanococcus maripaludis C7"],["NCBITaxon%3A637914","Methanococcus maripaludis KA1"],["NCBITaxon%3A637915","Methanococcus maripaludis OS7"]]},{"id":"NCBITaxon:40215","l":"Acinetobacter junii","na":1,"nb":9,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["NCBITaxon%3A471","Acinetobacter calcoaceticus"],["NCBITaxon%3A40215","Acinetobacter junii"],["NCBITaxon%3A1217666","Acinetobacter junii CIP 107470 = MTCC 11364"],["NCBITaxon%3A1217664","Acinetobacter junii CIP 64.5"],["NCBITaxon%3A1217665","Acinetobacter junii NIPH 182"],["NCBITaxon%3A575587","Acinetobacter junii SH205"]]},{"id":"NCBITaxon:44454","l":"Mycobacterium avium subsp. avium","na":1,"nb":9,"a":[["tuberculosis-habitatmech-bacdive-e5d21f85b7.html","Tuberculosis"]],"b":[["NCBITaxon%3A1764","Mycobacterium avium"],["NCBITaxon%3A44454","Mycobacterium avium subsp. avium"],["NCBITaxon%3A1391991","Mycobacterium avium subsp. avium 10-9275"],["NCBITaxon%3A1391992","Mycobacterium avium subsp. avium 11-4751"],["NCBITaxon%3A1299330","Mycobacterium avium subsp. avium 2285 (R)"],["NCBITaxon%3A1299329","Mycobacterium avium subsp. avium 2285 (S)"]]},{"id":"NCBITaxon:80866","l":"Delftia acidovorans","na":1,"nb":9,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A1872122","Acidovorax sp."],["NCBITaxon%3A80866","Delftia acidovorans"],["NCBITaxon%3A883100","Delftia acidovorans CCUG 15835"],["NCBITaxon%3A883101","Delftia acidovorans CCUG 274B"],["NCBITaxon%3A1218107","Delftia acidovorans NBRC 14950"],["NCBITaxon%3A1255679","Delftia acidovorans PCA12"]]},{"id":"NCBITaxon:83462","l":"Corallococcus exiguus","na":9,"nb":1,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["feces-uberon-0001988.html","feces"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"]],"b":[["NCBITaxon%3A83462","Corallococcus exiguus"]]},{"id":"NCBITaxon:911092","l":"Caldanaerobacter subterraneus","na":1,"nb":9,"a":[["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A911092","Caldanaerobacter subterraneus"],["NCBITaxon%3A3055846","Caldanaerobacter subterraneus subsp. keratinolyticus"],["NCBITaxon%3A109807","Caldanaerobacter subterraneus subsp. pacificus"],["NCBITaxon%3A391606","Caldanaerobacter subterraneus subsp. pacificus DSM 12653"],["NCBITaxon%3A111823","Caldanaerobacter subterraneus subsp. subterraneus"],["NCBITaxon%3A119072","Caldanaerobacter subterraneus subsp. tengcongensis"]]},{"id":"NCBITaxon:1074","l":"Rhodoblastus acidophilus","na":8,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"],["liquid-water-envo-00002006.html","liquid water"],["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["rhizosphere-envo-00005801.html","rhizosphere"]],"b":[["NCBITaxon%3A1074","Rhodoblastus acidophilus"]]},{"id":"NCBITaxon:109166","l":"Desulfofrigus","na":1,"nb":8,"a":[["hemolymph-bto-0000572.html","hemolymph"]],"b":[["NCBITaxon%3A84983","Desulfofrigus fragile"],["NCBITaxon%3A84982","Desulfofrigus oceanense"],["NCBITaxon%3A449291","Desulfofrigus sp. HRS-La3x"],["NCBITaxon%3A265931","Desulfofrigus sp. J152"],["NCBITaxon%3A303210","Desulfofrigus sp. NA201"],["NCBITaxon%3A303200","Desulfofrigus sp. NB81"]]},{"id":"NCBITaxon:115433","l":"Amycolatopsis sacchari","na":8,"nb":1,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["factory-envo-01000536.html","factory"],["desert-biome-envo-01000179.html","desert biome"],["grassland-soil-envo-00005750.html","grassland soil"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"]],"b":[["NCBITaxon%3A115433","Amycolatopsis sacchari"]]},{"id":"NCBITaxon:1254439","l":"Bifidobacterium thermophilum RBL67","na":8,"nb":1,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"],["epithelium-bto-0000416.html","epithelium"],["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"],["ht-29-cell-bto-0000182.html","HT-29 cell"],["ht-29-mtx-cell-bto-0001565.html","HT-29-MTX cell"],["left-colon-bto-0000646.html","left colon"]],"b":[["NCBITaxon%3A1254439","Bifidobacterium thermophilum RBL67"]]},{"id":"NCBITaxon:1272","l":"Kocuria varians","na":1,"nb":8,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A71999","Kocuria palustris"],["NCBITaxon%3A72000","Kocuria rhizophila"],["NCBITaxon%3A378753","Kocuria rhizophila DC2201"],["NCBITaxon%3A1871328","Kocuria sp."],["NCBITaxon%3A1272","Kocuria varians"],["NCBITaxon%3A1255672","Kocuria varians Mu208"]]},{"id":"NCBITaxon:1486246","l":"Halomonas sp.","na":8,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["saline-water-body-envo-01001319.html","saline water body"],["laboratory-facility-envo-01001406.html","laboratory facility"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["NCBITaxon%3A1486246","Halomonas sp."]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":8,"a":[["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["NCBITaxon%3A1515","Acetivibrio thermocellus"],["NCBITaxon%3A1138384","Acetivibrio thermocellus AD2"],["NCBITaxon%3A203119","Acetivibrio thermocellus ATCC 27405"],["NCBITaxon%3A1349417","Acetivibrio thermocellus BC1"],["NCBITaxon%3A637887","Acetivibrio thermocellus DSM 1313"],["NCBITaxon%3A572545","Acetivibrio thermocellus DSM 2360"]]},{"id":"NCBITaxon:1694","l":"Bifidobacterium pseudolongum","na":1,"nb":8,"a":[["ileum-bto-0000620.html","ileum"]],"b":[["NCBITaxon%3A35760","Bifidobacterium choerinum"],["NCBITaxon%3A1694","Bifidobacterium pseudolongum"],["NCBITaxon%3A1280701","Bifidobacterium pseudolongum AGR2145"],["NCBITaxon%3A1447715","Bifidobacterium pseudolongum PV8-2"],["NCBITaxon%3A1690","Bifidobacterium pseudolongum subsp. globosum"],["NCBITaxon%3A1410605","Bifidobacterium pseudolongum subsp. globosum DSM 20092"]]},{"id":"NCBITaxon:1732","l":"Eubacterium oxidoreducens","na":8,"nb":1,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["animal-litter-envo-00002191.html","animal litter"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["environmental-feature-envo-00002297.html","environmental feature"],["mud-envo-01000001.html","mud"]],"b":[["NCBITaxon%3A1732","Eubacterium oxidoreducens"]]},{"id":"NCBITaxon:1744","l":"Propionibacterium freudenreichii","na":1,"nb":8,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A1591","Lactobacillus sp."],["NCBITaxon%3A1744","Propionibacterium freudenreichii"],["NCBITaxon%3A66712","Propionibacterium freudenreichii subsp. freudenreichii"],["NCBITaxon%3A1408888","Propionibacterium freudenreichii subsp. freudenreichii ITG P20"],["NCBITaxon%3A1219357","Propionibacterium freudenreichii subsp. freudenreichii NBRC 12424"],["NCBITaxon%3A1752","Propionibacterium freudenreichii subsp. shermanii"]]},{"id":"NCBITaxon:196162","l":"Nocardioides sp. JS614","na":8,"nb":1,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["oil-spill-envo-00002061.html","oil spill"],["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A196162","Nocardioides sp. JS614"]]},{"id":"NCBITaxon:28125","l":"Prevotella bivia","na":1,"nb":8,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["NCBITaxon%3A28125","Prevotella bivia"],["NCBITaxon%3A1115806","Prevotella bivia B11"],["NCBITaxon%3A1287476","Prevotella bivia DNF00188"],["NCBITaxon%3A1401068","Prevotella bivia DNF00320"],["NCBITaxon%3A1401072","Prevotella bivia DNF00650"],["NCBITaxon%3A868129","Prevotella bivia DSM 20514"]]},{"id":"NCBITaxon:300","l":"Ectopseudomonas mendocina","na":1,"nb":8,"a":[["liquid-water-envo-00002006.html","liquid water"]],"b":[["NCBITaxon%3A300","Ectopseudomonas mendocina"],["NCBITaxon%3A1197721","Ectopseudomonas mendocina DLHK"],["NCBITaxon%3A1390370","Ectopseudomonas mendocina EGD-AQ5"],["NCBITaxon%3A1215108","Ectopseudomonas mendocina NBRC 14162"],["NCBITaxon%3A1001585","Ectopseudomonas mendocina NK-01"],["NCBITaxon%3A1225174","Ectopseudomonas mendocina S5.2"]]},{"id":"NCBITaxon:33967","l":"Leuconostoc mesenteroides subsp. mesenteroides","na":1,"nb":8,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"]],"b":[["NCBITaxon%3A33964","Leuconostoc citreum"],["NCBITaxon%3A1245","Leuconostoc mesenteroides"],["NCBITaxon%3A33967","Leuconostoc mesenteroides subsp. mesenteroides"],["NCBITaxon%3A203120","Leuconostoc mesenteroides subsp. mesenteroides ATCC 8293"],["NCBITaxon%3A1107880","Leuconostoc mesenteroides subsp. mesenteroides J18"],["NCBITaxon%3A889970","Leuconostoc mesenteroides subsp. mesenteroides Y110"]]},{"id":"NCBITaxon:37734","l":"Enterococcus casseliflavus","na":1,"nb":8,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["NCBITaxon%3A37734","Enterococcus casseliflavus"],["NCBITaxon%3A1259825","Enterococcus casseliflavus 14-MB-W-14"],["NCBITaxon%3A888066","Enterococcus casseliflavus ATCC 12755"],["NCBITaxon%3A1158603","Enterococcus casseliflavus ATCC 49996"],["NCBITaxon%3A565654","Enterococcus casseliflavus EC10"],["NCBITaxon%3A565655","Enterococcus casseliflavus EC20"]]},{"id":"NCBITaxon:488","l":"Neisseria mucosa","na":1,"nb":8,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["NCBITaxon%3A496","Neisseria macacae"],["NCBITaxon%3A997348","Neisseria macacae ATCC 33926"],["NCBITaxon%3A488","Neisseria mucosa"],["NCBITaxon%3A546266","Neisseria mucosa ATCC 25996"],["NCBITaxon%3A435832","Neisseria mucosa C102"],["NCBITaxon%3A33053","Neisseria perflava"]]},{"id":"NCBITaxon:51671","l":"Microbacterium sp.","na":8,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"]],"b":[["NCBITaxon%3A51671","Microbacterium sp."]]},{"id":"NCBITaxon:726","l":"Haemophilus haemolyticus","na":1,"nb":8,"a":[["trunk-uberon-0002100.html","trunk"]],"b":[["NCBITaxon%3A726","Haemophilus haemolyticus"],["NCBITaxon%3A1095742","Haemophilus haemolyticus HK386"],["NCBITaxon%3A1028802","Haemophilus haemolyticus M19107"],["NCBITaxon%3A1028803","Haemophilus haemolyticus M19501"],["NCBITaxon%3A1028804","Haemophilus haemolyticus M21127"],["NCBITaxon%3A1028805","Haemophilus haemolyticus M21621"]]},{"id":"NCBITaxon:94625","l":"Brucella intermedia","na":1,"nb":8,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["NCBITaxon%3A94625","Brucella intermedia"],["NCBITaxon%3A1337887","Brucella intermedia 229E"],["NCBITaxon%3A1444311","Brucella intermedia 2745-2"],["NCBITaxon%3A1328308","Brucella intermedia CCUG 57381"],["NCBITaxon%3A2975438","Brucella intermedia GD04153"],["NCBITaxon%3A903525","Brucella intermedia J2"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":7,"nb":1,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["farm-envo-00000078.html","farm"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A101510","Rhodococcus jostii RHA1"]]},{"id":"NCBITaxon:1044","l":"Erythrobacter longus","na":7,"nb":1,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["small-river-biome-envo-00000890.html","small river biome"],["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["biofilm-material-envo-01000156.html","biofilm material"]],"b":[["NCBITaxon%3A1044","Erythrobacter longus"]]},{"id":"NCBITaxon:114615","l":"Bradyrhizobium sp. ORS 278","na":7,"nb":1,"a":[["river-envo-00000022.html","river"],["bacteroid-bto-0000109.html","bacteroid"],["root-nodule-bto-0001190.html","root nodule"],["stem-nodule-bto-0001816.html","stem nodule"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A114615","Bradyrhizobium sp. ORS 278"]]},{"id":"NCBITaxon:1261128","l":"Pantoea agglomerans 299R","na":7,"nb":1,"a":[["cuticle-bto-0001600.html","cuticle"],["epidermal-cell-bto-0001470.html","epidermal cell"],["epidermis-bto-0000404.html","epidermis"],["lateral-root-bto-0005441.html","lateral root"],["root-tip-bto-0001191.html","root tip"],["secretory-trichome-bto-0003799.html","secretory trichome"]],"b":[["NCBITaxon%3A1261128","Pantoea agglomerans 299R"]]},{"id":"NCBITaxon:1267","l":"Sarcina ventriculi","na":7,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["NCBITaxon%3A1267","Sarcina ventriculi"]]},{"id":"NCBITaxon:1346","l":"Streptococcus iniae","na":1,"nb":7,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"]],"b":[["NCBITaxon%3A230495","Reinekea marinisedimentorum"],["NCBITaxon%3A1346","Streptococcus iniae"],["NCBITaxon%3A386894","Streptococcus iniae 9117"],["NCBITaxon%3A1273539","Streptococcus iniae IUSA1"],["NCBITaxon%3A1260129","Streptococcus iniae KCTC 11634BP"],["NCBITaxon%3A1318633","Streptococcus iniae SF1"]]},{"id":"NCBITaxon:1392869","l":"Escherichia coli K1","na":7,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["brain-bto-0000142.html","brain"],["brain-cell-line-bto-0000255.html","brain cell line"],["caco-2-cell-bto-0000195.html","CACO-2 cell"],["macrophage-bto-0000801.html","macrophage"],["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392869","Escherichia coli K1"]]},{"id":"NCBITaxon:152","l":"Zuelzera stenostrepta","na":7,"nb":1,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["low-tide-zone-envo-00000319.html","low tide zone"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["cultivated-environment-envo-01000311.html","cultivated environment"],["mud-envo-01000001.html","mud"]],"b":[["NCBITaxon%3A152","Zuelzera stenostrepta"]]},{"id":"NCBITaxon:156","l":"Teretinema zuelzerae","na":7,"nb":1,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["cultivated-environment-envo-01000311.html","cultivated environment"],["mud-envo-01000001.html","mud"]],"b":[["NCBITaxon%3A156","Teretinema zuelzerae"]]},{"id":"NCBITaxon:159087","l":"Dechloromonas aromatica RCB","na":7,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["large-river-biome-envo-00000887.html","large river biome"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"],["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A159087","Dechloromonas aromatica RCB"]]},{"id":"NCBITaxon:1686","l":"Bifidobacterium catenulatum","na":1,"nb":7,"a":[["catheter-device-ncit-c50344.html","Catheter Device"]],"b":[["NCBITaxon%3A1686","Bifidobacterium catenulatum"],["NCBITaxon%3A566552","Bifidobacterium catenulatum DSM 16992 = JCM 1194 = LMG 11043"],["NCBITaxon%3A2981616","Bifidobacterium catenulatum subsp. catenulatum"],["NCBITaxon%3A630129","Bifidobacterium catenulatum subsp. kashiwanohense"],["NCBITaxon%3A1150460","Bifidobacterium catenulatum subsp. kashiwanohense JCM 15439 = DSM 21854"],["NCBITaxon%3A3692808","Bifidobacterium catenulatum subsp. puerorum"]]},{"id":"NCBITaxon:1876","l":"Micromonospora sp.","na":7,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["marine-water-body-envo-00001999.html","marine water body"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["sludge-envo-00002044.html","sludge"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["NCBITaxon%3A1876","Micromonospora sp."]]},{"id":"NCBITaxon:1908","l":"Streptomyces globisporus","na":1,"nb":7,"a":[["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A332582","Streptomyces flavofuscus"],["NCBITaxon%3A1908","Streptomyces globisporus"],["NCBITaxon%3A1172567","Streptomyces globisporus C-1027"],["NCBITaxon%3A66858","Streptomyces globisporus subsp. globisporus"],["NCBITaxon%3A1522106","Streptomyces globisporus subsp. griseus"]]},{"id":"NCBITaxon:1935","l":"Streptomyces violaceoruber","na":1,"nb":7,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A67291","Streptomyces cyanocolor"],["NCBITaxon%3A80860","Streptomyces cyanogenus"],["NCBITaxon%3A1916","Streptomyces lividans"],["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A68277","Streptomyces tricolor"]]},{"id":"NCBITaxon:199684","l":"uncultured Bradyrhizobium sp.","na":7,"nb":1,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"],["water-scum-envo-00005794.html","water scum"],["area-of-tundra-envo-00000112.html","area of tundra"],["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"]],"b":[["NCBITaxon%3A199684","uncultured Bradyrhizobium sp."]]},{"id":"NCBITaxon:2051","l":"Mobiluncus curtisii","na":1,"nb":7,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["NCBITaxon%3A2051","Mobiluncus curtisii"],["NCBITaxon%3A548479","Mobiluncus curtisii ATCC 43063"],["NCBITaxon%3A887326","Mobiluncus curtisii ATCC 51333"],["NCBITaxon%3A144177","Mobiluncus curtisii subsp. curtisii"],["NCBITaxon%3A585198","Mobiluncus curtisii subsp. curtisii ATCC 35241"],["NCBITaxon%3A144178","Mobiluncus holmesii"]]},{"id":"NCBITaxon:246432","l":"Staphylococcus equorum","na":1,"nb":7,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A246432","Staphylococcus equorum"],["NCBITaxon%3A29383","Staphylococcus equorum subsp. equorum"],["NCBITaxon%3A1159488","Staphylococcus equorum subsp. equorum Mu2"],["NCBITaxon%3A201829","Staphylococcus equorum subsp. linens"],["NCBITaxon%3A1357294","Staphylococcus equorum UMC-CNS-924"],["NCBITaxon%3A214473","Staphylococcus nepalensis"]]},{"id":"NCBITaxon:28198","l":"Aliarcobacter cryaerophilus","na":1,"nb":7,"a":[["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A28197","Aliarcobacter butzleri"],["NCBITaxon%3A28198","Aliarcobacter cryaerophilus"],["NCBITaxon%3A1032070","Aliarcobacter cryaerophilus ATCC 43158"],["NCBITaxon%3A1032071","Aliarcobacter cryaerophilus D2610"],["NCBITaxon%3A2933790","Arcobacter cryaerophilus gv. crypticus"],["NCBITaxon%3A2027466","Arcobacter cryaerophilus gv. occultus"]]},{"id":"NCBITaxon:29290","l":"Candidatus Magnetobacterium bavaricum","na":7,"nb":1,"a":[["water-body-envo-00000063.html","water body"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["activated-sludge-envo-00002046.html","activated sludge"],["cultivated-environment-envo-01000311.html","cultivated environment"],["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A29290","Candidatus Magnetobacterium bavaricum"]]},{"id":"NCBITaxon:33968","l":"Leuconostoc pseudomesenteroides","na":1,"nb":7,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"]],"b":[["NCBITaxon%3A2766470","Leuconostoc falkenbergense"],["NCBITaxon%3A33968","Leuconostoc pseudomesenteroides"],["NCBITaxon%3A1339246","Leuconostoc pseudomesenteroides 1159"],["NCBITaxon%3A1154757","Leuconostoc pseudomesenteroides 4882"],["NCBITaxon%3A935295","Leuconostoc pseudomesenteroides KCTC 3652"],["NCBITaxon%3A1255668","Leuconostoc pseudomesenteroides MSE7"]]},{"id":"NCBITaxon:38","l":"Archangium disciforme","na":7,"nb":1,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["feces-uberon-0001988.html","feces"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["wood-bto-0005516.html","wood"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A38","Archangium disciforme"]]},{"id":"NCBITaxon:39777","l":"Veillonella atypica","na":1,"nb":7,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["NCBITaxon%3A39777","Veillonella atypica"],["NCBITaxon%3A866776","Veillonella atypica ACS-049-V-Sch6"],["NCBITaxon%3A866778","Veillonella atypica ACS-134-V-Col7a"],["NCBITaxon%3A1357414","Veillonella atypica CD1_NA_1"],["NCBITaxon%3A575616","Veillonella atypica D15"],["NCBITaxon%3A1128111","Veillonella atypica KON"]]},{"id":"NCBITaxon:445336","l":"Clostridium botulinum Bf","na":7,"nb":1,"a":[["bay-envo-00000032.html","bay"],["coral-reef-envo-00000150.html","coral reef"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["saline-water-envo-00002010.html","saline water"],["desert-sand-envo-00005800.html","desert sand"]],"b":[["NCBITaxon%3A445336","Clostridium botulinum Bf"]]},{"id":"NCBITaxon:51669","l":"Tetragenococcus halophilus","na":1,"nb":7,"a":[["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["NCBITaxon%3A1254","Pediococcus acidilactici"],["NCBITaxon%3A51669","Tetragenococcus halophilus"],["NCBITaxon%3A1004777","Tetragenococcus halophilus HO"],["NCBITaxon%3A945021","Tetragenococcus halophilus NBRC 12172"],["NCBITaxon%3A1513898","Tetragenococcus halophilus subsp. flandriensis"],["NCBITaxon%3A1513897","Tetragenococcus halophilus subsp. halophilus"]]},{"id":"NCBITaxon:667019","l":"Curvibacter putative symbiont of Hydra magnipapillata","na":7,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["petroleum-envo-00002984.html","petroleum"],["shoreline-envo-00000486.html","shoreline"],["farm-soil-envo-00005749.html","farm soil"],["orchard-envo-00000115.html","orchard"],["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A667019","Curvibacter putative symbiont of Hydra magnipapillata"]]},{"id":"NCBITaxon:83460","l":"Allostigmatella erecta","na":7,"nb":1,"a":[["feces-uberon-0001988.html","feces"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["plant-litter-envo-01000628.html","plant litter"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A83460","Allostigmatella erecta"]]},{"id":"NCBITaxon:930166","l":"Pseudomonas brassicacearum","na":1,"nb":7,"a":[["spike-bto-0001278.html","spike"]],"b":[["NCBITaxon%3A29299","Nocardioides plantarum"],["NCBITaxon%3A930166","Pseudomonas brassicacearum"],["NCBITaxon%3A1050347","Pseudomonas brassicacearum 51MFCVI2.1"],["NCBITaxon%3A1403314","Pseudomonas brassicacearum PP1_210F"],["NCBITaxon%3A86264","Pseudomonas brassicacearum subsp. brassicacearum"],["NCBITaxon%3A994484","Pseudomonas brassicacearum subsp. brassicacearum NFM421"]]},{"id":"NCBITaxon:1007122","l":"Fidelibacterota bacterium SCGC AAA160-C11","na":6,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["inlet-envo-00000475.html","inlet"],["marine-biome-envo-00000447.html","marine biome"],["ocean-envo-00000015.html","ocean"],["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"]],"b":[["NCBITaxon%3A1007122","Fidelibacterota bacterium SCGC AAA160-C11"]]},{"id":"NCBITaxon:1007124","l":"Fidelibacterota bacterium SCGC AAA076-M08","na":6,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["inlet-envo-00000475.html","inlet"],["marine-biome-envo-00000447.html","marine biome"],["ocean-envo-00000015.html","ocean"],["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"]],"b":[["NCBITaxon%3A1007124","Fidelibacterota bacterium SCGC AAA076-M08"]]},{"id":"NCBITaxon:101571","l":"Burkholderia ubonensis","na":1,"nb":6,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A101571","Burkholderia ubonensis"],["NCBITaxon%3A441166","Burkholderia ubonensis Bu"],["NCBITaxon%3A1436049","Burkholderia ubonensis MSMB153"],["NCBITaxon%3A1249668","Burkholderia ubonensis MSMB22"],["NCBITaxon%3A1436063","Burkholderia ubonensis MSMB57"],["NCBITaxon%3A265293","Burkholderia ubonensis subsp. mesacidophila"]]},{"id":"NCBITaxon:102","l":"Polaribacter glomeratus","na":6,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"],["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"],["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A102","Polaribacter glomeratus"]]},{"id":"NCBITaxon:103816","l":"Rhodococcus pyridinivorans","na":1,"nb":6,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A103816","Rhodococcus pyridinivorans"],["NCBITaxon%3A1114960","Rhodococcus pyridinivorans AK37"],["NCBITaxon%3A1303690","Rhodococcus pyridinivorans JCM 10940 = NBRC 100608"],["NCBITaxon%3A1441730","Rhodococcus pyridinivorans KG-16"],["NCBITaxon%3A1041510","Rhodococcus pyridinivorans NAM81"],["NCBITaxon%3A1435356","Rhodococcus pyridinivorans SB3094"]]},{"id":"NCBITaxon:1057","l":"Thiococcus pfennigii","na":6,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["saline-water-body-envo-01001319.html","saline water body"],["river-envo-00000022.html","river"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["sediment-envo-00002007.html","sediment"],["subpolar-coniferous-forest-biome-envo-01000250.html","subpolar coniferous forest biome"]],"b":[["NCBITaxon%3A1057","Thiococcus pfennigii"]]},{"id":"NCBITaxon:1072256","l":"Corynebacterium uterequi","na":6,"nb":1,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"],["urogenital-system-bto-0003091.html","urogenital system"],["uterus-bto-0001424.html","uterus"],["vagina-uberon-0000996.html","vagina"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A1072256","Corynebacterium uterequi"]]},{"id":"NCBITaxon:110638","l":"Arthrobacter sp. 'SMCC G982'","na":6,"nb":1,"a":[["biofilm-material-envo-01000156.html","biofilm material"],["farm-envo-00000078.html","farm"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["NCBITaxon%3A110638","Arthrobacter sp. 'SMCC G982'"]]},{"id":"NCBITaxon:1133849","l":"Nocardia brasiliensis ATCC 700358","na":6,"nb":1,"a":[["b-lymphocyte-bto-0000776.html","B-lymphocyte"],["brain-bto-0000142.html","brain"],["heart-bto-0000562.html","heart"],["lymphocyte-bto-0000775.html","lymphocyte"],["macrophage-bto-0000801.html","macrophage"],["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A1133849","Nocardia brasiliensis ATCC 700358"]]},{"id":"NCBITaxon:1329902","l":"Mannheimia haemolytica MhBrain2012","na":6,"nb":1,"a":[["blood-vessel-bto-0001102.html","blood vessel"],["brain-stem-bto-0000146.html","brain stem"],["cerebellum-bto-0000232.html","cerebellum"],["lung-bto-0000763.html","lung"],["midbrain-bto-0000138.html","midbrain"],["neutrophil-bto-0000130.html","neutrophil"]],"b":[["NCBITaxon%3A1329902","Mannheimia haemolytica MhBrain2012"]]},{"id":"NCBITaxon:1488","l":"Clostridium acetobutylicum","na":1,"nb":6,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A1488","Clostridium acetobutylicum"],["NCBITaxon%3A272562","Clostridium acetobutylicum ATCC 824"],["NCBITaxon%3A991791","Clostridium acetobutylicum DSM 1731"],["NCBITaxon%3A863638","Clostridium acetobutylicum EA 2018"],["NCBITaxon%3A1520","Clostridium beijerinckii"],["NCBITaxon%3A1506","Clostridium sp."]]},{"id":"NCBITaxon:1522","l":"[Clostridium] innocuum","na":1,"nb":6,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["NCBITaxon%3A1522","[Clostridium] innocuum"],["NCBITaxon%3A999413","[Clostridium] innocuum 2959"],["NCBITaxon%3A450752","[Clostridium] innocuum 6_1_30"],["NCBITaxon%3A665134","[Clostridium] innocuum SB23"],["NCBITaxon%3A1357388","[Clostridium] innocuum UC1_FAA_N"],["NCBITaxon%3A68766","Fusobacterium sp."]]},{"id":"NCBITaxon:1583","l":"Weissella confusa","na":1,"nb":6,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["NCBITaxon%3A137591","Weissella cibaria"],["NCBITaxon%3A1583","Weissella confusa"],["NCBITaxon%3A1225227","Weissella confusa 10D"],["NCBITaxon%3A1225265","Weissella confusa 10E"],["NCBITaxon%3A1127131","Weissella confusa LBAE C39-2"],["NCBITaxon%3A1629","Weissella viridescens"]]},{"id":"NCBITaxon:162290","l":"Gallicola","na":1,"nb":6,"a":[["vagina-bto-0000243.html","vagina"]],"b":[["NCBITaxon%3A116087","Gallicola barnesae"],["NCBITaxon%3A2683910","Gallicola sp."],["NCBITaxon%3A2683940","Gallicola sp. RM-6"],["NCBITaxon%3A1684165","Gallicola sp. SG1.4B"],["NCBITaxon%3A3438785","Gallicola sp. Sow4_E12"],["NCBITaxon%3A527661","uncultured Gallicola sp."]]},{"id":"NCBITaxon:1640","l":"Listeria seeligeri","na":1,"nb":6,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["NCBITaxon%3A1642","Listeria innocua"],["NCBITaxon%3A1002366","Listeria innocua ATCC 33091"],["NCBITaxon%3A1640","Listeria seeligeri"],["NCBITaxon%3A702453","Listeria seeligeri FSL N1-067"],["NCBITaxon%3A702452","Listeria seeligeri FSL S4-171"],["NCBITaxon%3A683837","Listeria seeligeri serovar 1/2b str. SLCC3954"]]},{"id":"NCBITaxon:1769","l":"Mycobacterium leprae","na":1,"nb":6,"a":[["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"]],"b":[["NCBITaxon%3A1769","Mycobacterium leprae"],["NCBITaxon%3A1297123","Mycobacterium leprae 3125609"],["NCBITaxon%3A1297124","Mycobacterium leprae 7935681"],["NCBITaxon%3A561304","Mycobacterium leprae Br4923"],["NCBITaxon%3A1008298","Mycobacterium leprae Kyoto-2"],["NCBITaxon%3A272631","Mycobacterium leprae TN"]]},{"id":"NCBITaxon:180332","l":"Robinsoniella peoriensis","na":6,"nb":1,"a":[["animal-litter-envo-00002191.html","animal litter"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["emulsion-envo-00010506.html","emulsion"],["environmental-feature-envo-00002297.html","environmental feature"],["pig-manure-envo-00003860.html","pig manure"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A180332","Robinsoniella peoriensis"]]},{"id":"NCBITaxon:1872122","l":"Acidovorax sp.","na":6,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["NCBITaxon%3A1872122","Acidovorax sp."]]},{"id":"NCBITaxon:202","l":"Campylobacter mucosalis","na":1,"nb":6,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["NCBITaxon%3A198","Campylobacter hyointestinalis"],["NCBITaxon%3A91352","Campylobacter hyointestinalis subsp. hyointestinalis"],["NCBITaxon%3A2790656","Campylobacter majalis"],["NCBITaxon%3A202","Campylobacter mucosalis"],["NCBITaxon%3A1032067","Campylobacter mucosalis CCUG 21559"],["NCBITaxon%3A205","Campylobacter sp."]]},{"id":"NCBITaxon:205922","l":"Pseudomonas fluorescens Pf0-1","na":6,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["cold-environment-envo-01000309.html","cold environment"],["microbial-mat-material-envo-01000157.html","microbial mat material"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"],["agricultural-soil-envo-00002259.html","agricultural soil"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A205922","Pseudomonas fluorescens Pf0-1"]]},{"id":"NCBITaxon:225991","l":"Comamonas aquatica","na":1,"nb":6,"a":[["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["NCBITaxon%3A225991","Comamonas aquatica"],["NCBITaxon%3A1457173","Comamonas aquatica DA1877"],["NCBITaxon%3A1219031","Comamonas aquatica NBRC 14918"],["NCBITaxon%3A2708318","Comamonas aquatica subsp. aquatica"],["NCBITaxon%3A2708319","Comamonas aquatica subsp. rana"],["NCBITaxon%3A32013","Comamonas terrigena"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":6,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["NCBITaxon%3A266","Paracoccus denitrificans"],["NCBITaxon%3A1302247","Paracoccus denitrificans JCM 21484"],["NCBITaxon%3A318586","Paracoccus denitrificans PD1222"],["NCBITaxon%3A1051075","Paracoccus denitrificans SD1"],["NCBITaxon%3A82367","Paracoccus pantotrophus"],["NCBITaxon%3A189685","uncultured Paracoccus sp."]]},{"id":"NCBITaxon:28131","l":"Prevotella intermedia","na":1,"nb":6,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["NCBITaxon%3A28131","Prevotella intermedia"],["NCBITaxon%3A246198","Prevotella intermedia 17"],["NCBITaxon%3A1122984","Prevotella intermedia ATCC 25611 = DSM 20706"],["NCBITaxon%3A1347790","Prevotella intermedia ZT"],["NCBITaxon%3A28133","Prevotella nigrescens"],["NCBITaxon%3A997352","Prevotella nigrescens ATCC 33563"]]},{"id":"NCBITaxon:33964","l":"Leuconostoc citreum","na":1,"nb":6,"a":[["plant-resin-po-0025603.html","plant resin"]],"b":[["NCBITaxon%3A33964","Leuconostoc citreum"],["NCBITaxon%3A349519","Leuconostoc citreum KM20"],["NCBITaxon%3A1108974","Leuconostoc citreum LBAE C10"],["NCBITaxon%3A1127128","Leuconostoc citreum LBAE C11"],["NCBITaxon%3A1127129","Leuconostoc citreum LBAE E16"],["NCBITaxon%3A1255667","Leuconostoc citreum MSE2"]]},{"id":"NCBITaxon:373","l":"Gillisella vitis","na":1,"nb":6,"a":[["trunk-bto-0001493.html","trunk"]],"b":[["NCBITaxon%3A361","Agrobacterium sp."],["NCBITaxon%3A1265506","Agrobacterium vitis ATCC 49767"],["NCBITaxon%3A1385422","Agrobacterium vitis pv. musae"],["NCBITaxon%3A1384504","Agrobacterium vitis pv. vitis"],["NCBITaxon%3A373","Gillisella vitis"],["NCBITaxon%3A204072","Ramlibacter henchirensis"]]},{"id":"NCBITaxon:37372","l":"Helicobacter bilis","na":1,"nb":6,"a":[["ht-29-cell-bto-0000182.html","HT-29 cell"]],"b":[["NCBITaxon%3A28447","Clavibacter michiganensis"],["NCBITaxon%3A33014","Clavibacter michiganensis subsp. insidiosus"],["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A613026","Helicobacter bilis ATCC 43879"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"],["NCBITaxon%3A1235804","Helicobacter bilis WiWa"]]},{"id":"NCBITaxon:38289","l":"Corynebacterium jeikeium","na":1,"nb":6,"a":[["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["NCBITaxon%3A38288","Corynebacterium genitalium"],["NCBITaxon%3A38289","Corynebacterium jeikeium"],["NCBITaxon%3A525262","Corynebacterium jeikeium ATCC 43734"],["NCBITaxon%3A306537","Corynebacterium jeikeium K411"],["NCBITaxon%3A1720","Corynebacterium sp."],["NCBITaxon%3A43770","Corynebacterium striatum"]]},{"id":"NCBITaxon:43675","l":"Rothia mucilaginosa","na":1,"nb":6,"a":[["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["NCBITaxon%3A43675","Rothia mucilaginosa"],["NCBITaxon%3A553201","Rothia mucilaginosa ATCC 25296"],["NCBITaxon%3A1073369","Rothia mucilaginosa CC87LB"],["NCBITaxon%3A680646","Rothia mucilaginosa DY-18"],["NCBITaxon%3A1255664","Rothia mucilaginosa M1710"],["NCBITaxon%3A563033","Rothia mucilaginosa M508"]]},{"id":"NCBITaxon:43765","l":"Corynebacterium amycolatum","na":1,"nb":6,"a":[["other-habitatmech-bacdive-1cc8e3791c.html","Other"]],"b":[["NCBITaxon%3A43765","Corynebacterium amycolatum"],["NCBITaxon%3A553204","Corynebacterium amycolatum SK46"],["NCBITaxon%3A134034","Corynebacterium freneyi"],["NCBITaxon%3A156978","Corynebacterium imitans"],["NCBITaxon%3A1725","Corynebacterium xerosis"],["NCBITaxon%3A28172","Vibrio metschnikovii"]]},{"id":"NCBITaxon:47880","l":"Pseudomonas fulva","na":1,"nb":6,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A157783","Pseudomonas cremoricolorata"],["NCBITaxon%3A1215098","Pseudomonas cremoricolorata DSM 17059 = NBRC 16634"],["NCBITaxon%3A47880","Pseudomonas fulva"],["NCBITaxon%3A743720","Pseudomonas fulva 12-X"],["NCBITaxon%3A1215102","Pseudomonas fulva NBRC 16637 = DSM 17717"],["NCBITaxon%3A306","Pseudomonas sp."]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":1,"nb":6,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["NCBITaxon%3A547018","Zhihengliuella alba"],["NCBITaxon%3A5061","Aspergillus niger"],["NCBITaxon%3A380704","Aspergillus niger ATCC 1015"],["NCBITaxon%3A1353008","Aspergillus niger ATCC 13496"],["NCBITaxon%3A1450533","Aspergillus niger CBS 101883"],["NCBITaxon%3A425011","Aspergillus niger CBS 513.88"]]},{"id":"NCBITaxon:544580","l":"Actinomyces oris","na":1,"nb":6,"a":[["archeological-site-envo-00000564.html","archeological site"]],"b":[["NCBITaxon%3A3050225","Actinomyces acetigenes"],["NCBITaxon%3A1655","Actinomyces naeslundii"],["NCBITaxon%3A544580","Actinomyces oris"],["NCBITaxon%3A871541","Actinomyces oris K20"],["NCBITaxon%3A29317","Actinomyces sp."],["NCBITaxon%3A1656","Actinomyces viscosus"]]},{"id":"NCBITaxon:569","l":"Hafnia alvei","na":1,"nb":6,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A569","Hafnia alvei"],["NCBITaxon%3A910996","Hafnia alvei ATCC 13337"],["NCBITaxon%3A1002364","Hafnia alvei ATCC 51873"],["NCBITaxon%3A1453496","Hafnia alvei FB1"],["NCBITaxon%3A546367","Hafnia paralvei"],["NCBITaxon%3A1354263","Hafnia paralvei ATCC 29927"]]},{"id":"NCBITaxon:80867","l":"Paracidovorax avenae","na":1,"nb":6,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A80867","Paracidovorax avenae"],["NCBITaxon%3A643561","Paracidovorax avenae ATCC 19860"],["NCBITaxon%3A995087","Paracidovorax avenae RS-1"],["NCBITaxon%3A80868","Paracidovorax cattleyae"],["NCBITaxon%3A862720","Paracidovorax oryzae"],["NCBITaxon%3A1408420","Paracidovorax oryzae ATCC 19882"]]},{"id":"NCBITaxon:863372","l":"Herbaspirillum huttiense","na":1,"nb":6,"a":[["factory-envo-01000536.html","factory"]],"b":[["NCBITaxon%3A863372","Herbaspirillum huttiense"],["NCBITaxon%3A86172","Herbaspirillum huttiense subsp. huttiense"],["NCBITaxon%3A3074428","Herbaspirillum huttiense subsp. lycopersici"],["NCBITaxon%3A3075126","Herbaspirillum huttiense subsp. nephrolepidis"],["NCBITaxon%3A230311","Herbaspirillum huttiense subsp. putei"],["NCBITaxon%3A1235558","Herbaspirillum huttiense subsp. putei IAM 15032"]]},{"id":"NCBITaxon:1001240","l":"Cryobacterium roopkundense","na":5,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"],["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A1001240","Cryobacterium roopkundense"]]},{"id":"NCBITaxon:103836","l":"Thermopolyspora flexuosa","na":5,"nb":1,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["intestine-environment-envo-2100002.html","intestine environment"],["organic-feature-envo-01000159.html","organic feature"],["compost-soil-envo-00005747.html","compost soil"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A103836","Thermopolyspora flexuosa"]]},{"id":"NCBITaxon:1048","l":"Marichromatium gracile","na":5,"nb":1,"a":[["brackish-water-body-envo-01001321.html","brackish water body"],["estuary-envo-00000045.html","estuary"],["intertidal-zone-envo-00000316.html","intertidal zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1048","Marichromatium gracile"]]},{"id":"NCBITaxon:110539","l":"","na":5,"nb":1,"a":[["brackish-water-body-envo-01001321.html","brackish water body"],["river-envo-00000022.html","river"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"],["subpolar-coniferous-forest-biome-envo-01000250.html","subpolar coniferous forest biome"]],"b":[["NCBITaxon%3A39687","Mycolicibacterium austroafricanum"]]},{"id":"NCBITaxon:1125980","l":"Vibrio harveyi CAIM 1792","na":5,"nb":1,"a":[["abdomen-bto-0000020.html","abdomen"],["connective-tissue-bto-0000421.html","connective tissue"],["lymphoid-tissue-bto-0000753.html","lymphoid tissue"],["muscle-fibre-bto-0000888.html","muscle fibre"],["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A1125980","Vibrio harveyi CAIM 1792"]]},{"id":"NCBITaxon:115336","l":"Actinomadura vinacea","na":5,"nb":1,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["desert-biome-envo-01000179.html","desert biome"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A115336","Actinomadura vinacea"]]},{"id":"NCBITaxon:115828","l":"Streptomyces maritimus","na":5,"nb":1,"a":[["farm-envo-00000078.html","farm"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["plain-envo-00000086.html","plain"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["NCBITaxon%3A115828","Streptomyces maritimus"]]},{"id":"NCBITaxon:1183413","l":"Agrobacterium salinitolerans","na":1,"nb":5,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1183413","Agrobacterium salinitolerans"],["NCBITaxon%3A1368460","Agrobacterium salinitolerans AGR7"],["NCBITaxon%3A1368459","Agrobacterium salinitolerans str. Hayward 0362"],["NCBITaxon%3A1183434","Agrobacterium salinitolerans str. Hayward 0363"],["NCBITaxon%3A361","Agrobacterium sp."]]},{"id":"NCBITaxon:1246","l":"Leuconostoc lactis","na":1,"nb":5,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1590","Lactiplantibacillus plantarum"],["NCBITaxon%3A1246","Leuconostoc lactis"],["NCBITaxon%3A1255576","Leuconostoc lactis 1283"],["NCBITaxon%3A935294","Leuconostoc lactis KCTC 3528 = DSM 20202"],["NCBITaxon%3A886872","Leuconostoc lactis KCTC 3773"]]},{"id":"NCBITaxon:126378","l":"Prevotella sp. RS2","na":5,"nb":1,"a":[["biome-envo-00000428.html","biome"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"],["pig-manure-envo-00003860.html","pig manure"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A126378","Prevotella sp. RS2"]]},{"id":"NCBITaxon:1292039","l":"Cutibacterium acnes P6","na":5,"nb":1,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"],["mammary-gland-bto-0000817.html","mammary gland"],["prostate-gland-bto-0001129.html","prostate gland"],["prostate-gland-epithelium-bto-0002397.html","prostate gland epithelium"],["sebaceous-gland-bto-0001980.html","sebaceous gland"]],"b":[["NCBITaxon%3A1292039","Cutibacterium acnes P6"]]},{"id":"NCBITaxon:1296","l":"Mammaliicoccus sciuri","na":5,"nb":1,"a":[["bone-element-uberon-0001474.html","bone element"],["cecum-bto-0000166.html","cecum"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"],["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["NCBITaxon%3A1296","Mammaliicoccus sciuri"]]},{"id":"NCBITaxon:13243","l":"Rarobacter faecitabidus","na":5,"nb":1,"a":[["water-body-envo-00000063.html","water body"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["NCBITaxon%3A13243","Rarobacter faecitabidus"]]},{"id":"NCBITaxon:1326","l":"Streptococcus acidominimus","na":1,"nb":5,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["NCBITaxon%3A46124","Granulicatella adiacens"],["NCBITaxon%3A638301","Granulicatella adiacens ATCC 49175"],["NCBITaxon%3A1326","Streptococcus acidominimus"],["NCBITaxon%3A149015","Streptococcus hyovaginalis"],["NCBITaxon%3A82348","Streptococcus pluranimalium"]]},{"id":"NCBITaxon:1367494","l":"Pseudomonas aeruginosa PAO1-VE13","na":5,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["lung-epithelial-cell-bto-0004299.html","lung epithelial cell"],["lung-epithelium-bto-0001653.html","lung epithelium"],["neutrophil-bto-0000130.html","neutrophil"],["phagocyte-bto-0001044.html","phagocyte"]],"b":[["NCBITaxon%3A1367494","Pseudomonas aeruginosa PAO1-VE13"]]},{"id":"NCBITaxon:137732","l":"Granulicatella elegans","na":1,"nb":5,"a":[["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["NCBITaxon%3A137732","Granulicatella elegans"],["NCBITaxon%3A626369","Granulicatella elegans ATCC 700633"],["NCBITaxon%3A1409954","Granulicatella elegans HMP_JCVI_SC0159"],["NCBITaxon%3A1409955","Granulicatella elegans HMP_JCVI_SC0160"],["NCBITaxon%3A1409956","Granulicatella elegans HMP_JCVI_SC0246"]]},{"id":"NCBITaxon:1382230","l":"Asaia platycodi SF2.1","na":5,"nb":1,"a":[["female-reproductive-system-bto-0000083.html","female reproductive system"],["larva-bto-0000707.html","larva"],["male-reproductive-system-bto-0000082.html","male reproductive system"],["reproductive-system-bto-0000081.html","reproductive system"],["salivary-gland-bto-0001203.html","salivary gland"]],"b":[["NCBITaxon%3A1382230","Asaia platycodi SF2.1"]]},{"id":"NCBITaxon:1388","l":"Alicyclobacillus acidocaldarius subsp. acidocaldarius","na":1,"nb":5,"a":[["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["NCBITaxon%3A405212","Alicyclobacillus acidocaldarius"],["NCBITaxon%3A1388","Alicyclobacillus acidocaldarius subsp. acidocaldarius"],["NCBITaxon%3A521098","Alicyclobacillus acidocaldarius subsp. acidocaldarius DSM 446"],["NCBITaxon%3A1197885","Alicyclobacillus acidocaldarius subsp. acidocaldarius HSU9"],["NCBITaxon%3A1048834","Alicyclobacillus acidocaldarius subsp. acidocaldarius Tc-4-1"]]},{"id":"NCBITaxon:1411316","l":"Pedobacter sp.","na":5,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A1411316","Pedobacter sp."]]},{"id":"NCBITaxon:143495","l":"Aneurinibacillus thermoaerophilus","na":5,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A143495","Aneurinibacillus thermoaerophilus"]]},{"id":"NCBITaxon:145391","l":"Staphylococcus hominis subsp. hominis","na":1,"nb":5,"a":[["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["NCBITaxon%3A1290","Staphylococcus hominis"],["NCBITaxon%3A145391","Staphylococcus hominis subsp. hominis"],["NCBITaxon%3A435837","Staphylococcus hominis subsp. hominis C80"],["NCBITaxon%3A1185421","Staphylococcus hominis subsp. hominis ZBW5"],["NCBITaxon%3A1292","Staphylococcus warneri"]]},{"id":"NCBITaxon:1462","l":"Geobacillus kaustophilus","na":1,"nb":5,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"]],"b":[["NCBITaxon%3A1462","Geobacillus kaustophilus"],["NCBITaxon%3A1337888","Geobacillus kaustophilus GBlys"],["NCBITaxon%3A235909","Geobacillus kaustophilus HTA426"],["NCBITaxon%3A1220595","Geobacillus kaustophilus NBRC 102445"],["NCBITaxon%3A433974","Geobacillus kaustophilus subsp. vulgivagus"]]},{"id":"NCBITaxon:1501","l":"Clostridium pasteurianum","na":1,"nb":5,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A1501","Clostridium pasteurianum"],["NCBITaxon%3A86416","Clostridium pasteurianum BC1"],["NCBITaxon%3A1262449","Clostridium pasteurianum DSM 525 = ATCC 6013"],["NCBITaxon%3A1341159","Clostridium pasteurianum TK"],["NCBITaxon%3A1506","Clostridium sp."]]},{"id":"NCBITaxon:1513","l":"Clostridium tetani","na":1,"nb":5,"a":[["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A1513","Clostridium tetani"],["NCBITaxon%3A1231072","Clostridium tetani 12124569"],["NCBITaxon%3A1172202","Clostridium tetani ATCC 454"],["NCBITaxon%3A1172203","Clostridium tetani ATCC 9441"],["NCBITaxon%3A212717","Clostridium tetani E88"]]},{"id":"NCBITaxon:152682","l":"Sphingomonas melonis","na":1,"nb":5,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["NCBITaxon%3A152682","Sphingomonas melonis"],["NCBITaxon%3A1090316","Sphingomonas melonis C3"],["NCBITaxon%3A1090320","Sphingomonas melonis DAPP-PG 224"],["NCBITaxon%3A1090317","Sphingomonas melonis FR1"],["NCBITaxon%3A621456","Sphingomonas melonis TY"]]},{"id":"NCBITaxon:1575","l":"Leifsonia xyli","na":1,"nb":5,"a":[["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["NCBITaxon%3A1575","Leifsonia xyli"],["NCBITaxon%3A31966","Leifsonia xyli subsp. cynodontis"],["NCBITaxon%3A1389489","Leifsonia xyli subsp. cynodontis DSM 46306"],["NCBITaxon%3A59736","Leifsonia xyli subsp. xyli"],["NCBITaxon%3A281090","Leifsonia xyli subsp. xyli str. CTCB07"]]},{"id":"NCBITaxon:158192","l":"Desulfuromonas michiganensis","na":5,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["cultivated-environment-envo-01000311.html","cultivated environment"],["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A158192","Desulfuromonas michiganensis"]]},{"id":"NCBITaxon:158751","l":"uncultured Acidovorax sp.","na":5,"nb":1,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["water-body-envo-00000063.html","water body"],["water-scum-envo-00005794.html","water scum"],["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"]],"b":[["NCBITaxon%3A158751","uncultured Acidovorax sp."]]},{"id":"NCBITaxon:1614","l":"Fructilactobacillus fructivorans","na":1,"nb":5,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A1614","Fructilactobacillus fructivorans"],["NCBITaxon%3A1600","Lactobacillus acetotolerans"],["NCBITaxon%3A1591","Lactobacillus sp."],["NCBITaxon%3A418198","Lactobacillus sp. JCM 7525"],["NCBITaxon%3A418199","Lactobacillus sp. JCM 7527"]]},{"id":"NCBITaxon:173764","l":"Cytophaga sp. MBIC01539","na":5,"nb":1,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A173764","Cytophaga sp. MBIC01539"]]},{"id":"NCBITaxon:1778","l":"Mycobacterium gordonae","na":5,"nb":1,"a":[["fibroblast-bto-0000452.html","fibroblast"],["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["kidney-bto-0000671.html","kidney"],["spleen-bto-0001281.html","spleen"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["NCBITaxon%3A1778","Mycobacterium gordonae"]]},{"id":"NCBITaxon:1919273","l":"Candidatus Desulfopertinax cowenii","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1919273","Candidatus Desulfopertinax cowenii"]]},{"id":"NCBITaxon:1934978","l":"Acinetobacter sp. JdFR-94","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934978","Acinetobacter sp. JdFR-94"]]},{"id":"NCBITaxon:1934979","l":"Archaeoglobus sp. JdFR-22","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934979","Archaeoglobus sp. JdFR-22"]]},{"id":"NCBITaxon:1934980","l":"Archaeoglobus sp. JdFR-23","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934980","Archaeoglobus sp. JdFR-23"]]},{"id":"NCBITaxon:1934981","l":"Archaeoglobus sp. JdFR-24","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934981","Archaeoglobus sp. JdFR-24"]]},{"id":"NCBITaxon:1934982","l":"Archaeoglobus sp. JdFR-25","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934982","Archaeoglobus sp. JdFR-25"]]},{"id":"NCBITaxon:1934983","l":"Archaeoglobus sp. JdFR-26","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934983","Archaeoglobus sp. JdFR-26"]]},{"id":"NCBITaxon:1934984","l":"Archaeoglobus sp. JdFR-27","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934984","Archaeoglobus sp. JdFR-27"]]},{"id":"NCBITaxon:1934985","l":"Archaeoglobus sp. JdFR-28","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934985","Archaeoglobus sp. JdFR-28"]]},{"id":"NCBITaxon:1934986","l":"Archaeoglobus sp. JdFR-29","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934986","Archaeoglobus sp. JdFR-29"]]},{"id":"NCBITaxon:1934987","l":"Archaeoglobus sp. JdFR-30","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934987","Archaeoglobus sp. JdFR-30"]]},{"id":"NCBITaxon:1934988","l":"Archaeoglobus sp. JdFR-31","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934988","Archaeoglobus sp. JdFR-31"]]},{"id":"NCBITaxon:1934989","l":"Archaeoglobus sp. JdFR-32","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934989","Archaeoglobus sp. JdFR-32"]]},{"id":"NCBITaxon:1934990","l":"Archaeoglobus sp. JdFR-33","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934990","Archaeoglobus sp. JdFR-33"]]},{"id":"NCBITaxon:1934991","l":"Archaeoglobus sp. JdFR-34","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934991","Archaeoglobus sp. JdFR-34"]]},{"id":"NCBITaxon:1934992","l":"Archaeoglobus sp. JdFR-35","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934992","Archaeoglobus sp. JdFR-35"]]},{"id":"NCBITaxon:1962118","l":"Mycobacteroides abscessus subsp. massiliense","na":1,"nb":5,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["NCBITaxon%3A36809","Mycobacteroides abscessus"],["NCBITaxon%3A1185650","Mycobacteroides abscessus subsp. abscessus"],["NCBITaxon%3A1962118","Mycobacteroides abscessus subsp. massiliense"],["NCBITaxon%3A1001714","Mycobacteroides abscessus subsp. massiliense CCUG 48898 = JCM 15300"],["NCBITaxon%3A1198627","Mycobacteroides abscessus subsp. massiliense str. GO 06"]]},{"id":"NCBITaxon:200","l":"Campylobacter curvus","na":1,"nb":5,"a":[["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A28099","Agrobacterium rubi"],["NCBITaxon%3A1368415","Agrobacterium rubi TR3 = NBRC 13261"],["NCBITaxon%3A200","Campylobacter curvus"],["NCBITaxon%3A360105","Campylobacter curvus 525.92"],["NCBITaxon%3A1121268","Campylobacter curvus DSM 6644"]]},{"id":"NCBITaxon:204773","l":"Herminiimonas arsenicoxydans","na":5,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["liquid-water-envo-00002006.html","liquid water"],["cold-environment-envo-01000309.html","cold environment"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A204773","Herminiimonas arsenicoxydans"]]},{"id":"NCBITaxon:208224","l":"Enterobacter kobei","na":1,"nb":5,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1896336","Citrobacter sp."],["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A208224","Enterobacter kobei"],["NCBITaxon%3A1354261","Enterobacter kobei ATCC BAA-260"],["NCBITaxon%3A42895","Enterobacter sp."]]},{"id":"NCBITaxon:2210","l":"Methanosarcina thermophila","na":1,"nb":5,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A1520800","Methanosarcina sp. DSM 11855"],["NCBITaxon%3A2210","Methanosarcina thermophila"],["NCBITaxon%3A1434121","Methanosarcina thermophila CHTI-55"],["NCBITaxon%3A1434122","Methanosarcina thermophila MST-A1"],["NCBITaxon%3A523844","Methanosarcina thermophila TM-1"]]},{"id":"NCBITaxon:2213","l":"Methanosarcina sp.","na":5,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["marine-water-body-envo-00001999.html","marine water body"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A2213","Methanosarcina sp."]]},{"id":"NCBITaxon:2218628","l":"Photorhabdus laumondii","na":1,"nb":5,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A2218628","Photorhabdus laumondii"],["NCBITaxon%3A2029685","Photorhabdus laumondii subsp. clarkei"],["NCBITaxon%3A141679","Photorhabdus laumondii subsp. laumondii"],["NCBITaxon%3A243265","Photorhabdus laumondii subsp. laumondii TTO1"],["NCBITaxon%3A3459528","Photorhabdus laumondii subsp. malanae"]]},{"id":"NCBITaxon:224914","l":"","na":1,"nb":5,"a":[["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A29459","Brucella melitensis"],["NCBITaxon%3A1143191","Brucella melitensis 16M13W"],["NCBITaxon%3A1143190","Brucella melitensis 16M1W"],["NCBITaxon%3A644337","Brucella melitensis bv. 1"],["NCBITaxon%3A224914","Brucella melitensis bv. 1 str. 16M"]]},{"id":"NCBITaxon:239","l":"Flavobacterium sp.","na":5,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["mud-envo-01000001.html","mud"],["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"],["orchard-envo-00000115.html","orchard"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A239","Flavobacterium sp."]]},{"id":"NCBITaxon:265606","l":"Rhodopirellula baltica","na":1,"nb":5,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A265606","Rhodopirellula baltica"],["NCBITaxon%3A993517","Rhodopirellula baltica SH28"],["NCBITaxon%3A243090","Rhodopirellula baltica SH 1"],["NCBITaxon%3A993516","Rhodopirellula baltica SWK14"],["NCBITaxon%3A991778","Rhodopirellula baltica WH47"]]},{"id":"NCBITaxon:290054","l":"Eubacterium coprostanoligenes","na":5,"nb":1,"a":[["emulsion-envo-00010506.html","emulsion"],["environmental-feature-envo-00002297.html","environmental feature"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["pig-manure-envo-00003860.html","pig manure"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A290054","Eubacterium coprostanoligenes"]]},{"id":"NCBITaxon:29494","l":"Vibrio furnissii","na":1,"nb":5,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A676","Vibrio fluvialis"],["NCBITaxon%3A29494","Vibrio furnissii"],["NCBITaxon%3A675811","Vibrio furnissii CIP 102972"],["NCBITaxon%3A903510","Vibrio furnissii NCTC 11218"],["NCBITaxon%3A1339240","Vibrio furnissii ZOR0035"]]},{"id":"NCBITaxon:296591","l":"Polaromonas sp. JS666","na":5,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["resting-cell-bto-0001170.html","resting cell"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A296591","Polaromonas sp. JS666"]]},{"id":"NCBITaxon:305719","l":"Segatella baroniae","na":1,"nb":5,"a":[["pig-manure-envo-00003860.html","pig manure"]],"b":[["NCBITaxon%3A305719","Segatella baroniae"],["NCBITaxon%3A752555","Segatella baroniae B14"],["NCBITaxon%3A1280705","Segatella baroniae C21a"],["NCBITaxon%3A1122980","Segatella baroniae DSM 16972 = JCM 13447"],["NCBITaxon%3A1115809","Segatella baroniae F0067"]]},{"id":"NCBITaxon:310575","l":"Advenella kashmirensis","na":1,"nb":5,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A310575","Advenella kashmirensis"],["NCBITaxon%3A1914954","Advenella kashmirensis subsp. kashmirensis"],["NCBITaxon%3A1439717","Advenella kashmirensis subsp. methylica"],["NCBITaxon%3A1424334","Advenella kashmirensis W13003"],["NCBITaxon%3A1036672","Advenella kashmirensis WT001"]]},{"id":"NCBITaxon:314722","l":"Pseudoxanthomonas suwonensis","na":1,"nb":5,"a":[["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["NCBITaxon%3A314722","Pseudoxanthomonas suwonensis"],["NCBITaxon%3A743721","Pseudoxanthomonas suwonensis 11-1"],["NCBITaxon%3A935566","Pseudoxanthomonas suwonensis J42"],["NCBITaxon%3A935567","Pseudoxanthomonas suwonensis J43"],["NCBITaxon%3A935568","Pseudoxanthomonas suwonensis J47"]]},{"id":"NCBITaxon:32021","l":"Campylobacter jejuni subsp. doylei","na":1,"nb":5,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["NCBITaxon%3A197","Campylobacter jejuni"],["NCBITaxon%3A32021","Campylobacter jejuni subsp. doylei"],["NCBITaxon%3A360109","Campylobacter jejuni subsp. doylei 269.97"],["NCBITaxon%3A1408360","Campylobacter jejuni subsp. doylei ATCC 49349"],["NCBITaxon%3A1070741","Campylobacter jejuni subsp. doylei str. RM3440"]]},{"id":"NCBITaxon:351016","l":"Roseobacter sp. AzwK-3b","na":5,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["oligotrophic-water-envo-00002223.html","oligotrophic water"],["lagoon-envo-00000038.html","lagoon"],["tropical-envo-01000204.html","tropical"],["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A351016","Roseobacter sp. AzwK-3b"]]},{"id":"NCBITaxon:376","l":"Bradyrhizobium sp.","na":5,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A376","Bradyrhizobium sp."]]},{"id":"NCBITaxon:38301","l":"Corynebacterium minutissimum","na":1,"nb":5,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["NCBITaxon%3A43765","Corynebacterium amycolatum"],["NCBITaxon%3A169292","Corynebacterium aurimucosum"],["NCBITaxon%3A156978","Corynebacterium imitans"],["NCBITaxon%3A38301","Corynebacterium minutissimum"],["NCBITaxon%3A1223512","Corynebacterium minutissimum NBRC 15361"]]},{"id":"NCBITaxon:38313","l":"Shewanella algae","na":1,"nb":5,"a":[["foot-bto-0000476.html","foot"]],"b":[["NCBITaxon%3A38313","Shewanella algae"],["NCBITaxon%3A1331670","Shewanella algae ACDC"],["NCBITaxon%3A1236541","Shewanella algae JCM 14758"],["NCBITaxon%3A1236544","Shewanella algae JCM 21037 = NBRC 103173"],["NCBITaxon%3A24","Shewanella putrefaciens"]]},{"id":"NCBITaxon:394092","l":"Hyalangium gracile","na":5,"nb":1,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["wood-bto-0005516.html","wood"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["plant-litter-envo-01000628.html","plant litter"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A394092","Hyalangium gracile"]]},{"id":"NCBITaxon:39650","l":"Cellvibrio mixtus","na":1,"nb":5,"a":[["compost-envo-00002170.html","compost"]],"b":[["NCBITaxon%3A39650","Cellvibrio mixtus"],["NCBITaxon%3A180904","Cellvibrio mixtus subsp. dextranolyticus"],["NCBITaxon%3A126346","Cellvibrio mixtus subsp. mixtus"],["NCBITaxon%3A1209072","Cellvibrio mixtus subsp. mixtus J3-8"],["NCBITaxon%3A180915","Cellvibrio vulgaris"]]},{"id":"NCBITaxon:488447","l":"Burkholderia contaminans","na":1,"nb":5,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A488447","Burkholderia contaminans"],["NCBITaxon%3A1423418","Burkholderia contaminans FFH2050"],["NCBITaxon%3A1423419","Burkholderia contaminans FFH2055"],["NCBITaxon%3A1334628","Burkholderia contaminans LMG 23361"],["NCBITaxon%3A36773","Burkholderia sp."]]},{"id":"NCBITaxon:573060","l":"Acidovorax delafieldii 2AN","na":5,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["large-river-biome-envo-00000887.html","large river biome"],["liquid-water-envo-00002006.html","liquid water"],["petroleum-envo-00002984.html","petroleum"],["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A573060","Acidovorax delafieldii 2AN"]]},{"id":"NCBITaxon:57743","l":"Salmonella enterica subsp. enterica serovar Weltevreden","na":1,"nb":5,"a":[["hep-2-cell-bto-0000976.html","HEp-2 cell"]],"b":[["NCBITaxon%3A57743","Salmonella enterica subsp. enterica serovar Weltevreden"],["NCBITaxon%3A1173939","Salmonella enterica subsp. enterica serovar Weltevreden str. 1655"],["NCBITaxon%3A936157","Salmonella enterica subsp. enterica serovar Weltevreden str. 2007-60-3289-1"],["NCBITaxon%3A465518","Salmonella enterica subsp. enterica serovar Weltevreden str. HI_N05-537"],["NCBITaxon%3A488480","Salmonella enterica subsp. enterica serovar Weltevreden str. SL484"]]},{"id":"NCBITaxon:68175","l":"Streptomyces antimycoticus","na":1,"nb":5,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["NCBITaxon%3A68175","Streptomyces antimycoticus"],["NCBITaxon%3A1226758","Streptomyces antimycoticus subsp. mordarskii"],["NCBITaxon%3A53451","Streptomyces rutgersensis"],["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A68280","Streptomyces violaceusniger"]]},{"id":"NCBITaxon:68886","l":"Theileria orientalis","na":5,"nb":1,"a":[["erythrocyte-bto-0000424.html","erythrocyte"],["leukocyte-bto-0000751.html","leukocyte"],["lymphocyte-bto-0000775.html","lymphocyte"],["macrophage-bto-0000801.html","macrophage"],["monocyte-bto-0000876.html","monocyte"]],"b":[["NCBITaxon%3A68886","Theileria orientalis"]]},{"id":"NCBITaxon:718","l":"Actinobacillus equuli","na":1,"nb":5,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["NCBITaxon%3A718","Actinobacillus equuli"],["NCBITaxon%3A202947","Actinobacillus equuli subsp. equuli"],["NCBITaxon%3A202948","Actinobacillus equuli subsp. haemolyticus"],["NCBITaxon%3A41114","Actinobacillus sp."],["NCBITaxon%3A716","Actinobacillus suis"]]},{"id":"NCBITaxon:72556","l":"Achromobacter piechaudii","na":1,"nb":5,"a":[["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["NCBITaxon%3A72556","Achromobacter piechaudii"],["NCBITaxon%3A742159","Achromobacter piechaudii ATCC 43553"],["NCBITaxon%3A1156919","Achromobacter piechaudii HLE"],["NCBITaxon%3A1216977","Achromobacter piechaudii NBRC 102461"],["NCBITaxon%3A217203","Achromobacter spanius"]]},{"id":"NCBITaxon:75612","l":"Pseudomonas mandelii","na":1,"nb":5,"a":[["plant-gall-po-0025626.html","plant gall"]],"b":[["NCBITaxon%3A75612","Pseudomonas mandelii"],["NCBITaxon%3A1151127","Pseudomonas mandelii 36MFCvi1.1"],["NCBITaxon%3A1147786","Pseudomonas mandelii JR-1"],["NCBITaxon%3A1215107","Pseudomonas mandelii NBRC 103147"],["NCBITaxon%3A1419583","Pseudomonas mandelii PD30"]]},{"id":"NCBITaxon:758","l":"Rodentibacter pneumotropicus","na":1,"nb":5,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["NCBITaxon%3A301","Ectopseudomonas oleovorans"],["NCBITaxon%3A1215116","Ectopseudomonas oleovorans NBRC 14167"],["NCBITaxon%3A1796644","Rodentibacter caecimuris"],["NCBITaxon%3A758","Rodentibacter pneumotropicus"],["NCBITaxon%3A1122936","Rodentibacter pneumotropicus DSM 21403"]]},{"id":"NCBITaxon:827","l":"Campylobacter ureolyticus","na":1,"nb":5,"a":[["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["NCBITaxon%3A827","Campylobacter ureolyticus"],["NCBITaxon%3A883095","Campylobacter ureolyticus ACS-172-V-Col6"],["NCBITaxon%3A883165","Campylobacter ureolyticus ACS-301-V-Sch3b"],["NCBITaxon%3A1121102","Campylobacter ureolyticus DSM 20703"],["NCBITaxon%3A1032069","Campylobacter ureolyticus RIGS 9880"]]},{"id":"NCBITaxon:885","l":"Desulfovibrio sp.","na":5,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"],["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["sludge-envo-00002044.html","sludge"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["NCBITaxon%3A885","Desulfovibrio sp."]]},{"id":"NCBITaxon:100","l":"Ancylobacter aquaticus","na":4,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["groundwater-envo-01001004.html","groundwater"],["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"]],"b":[["NCBITaxon%3A100","Ancylobacter aquaticus"]]},{"id":"NCBITaxon:1000561","l":"Pseudomonas aeruginosa AES-1R","na":4,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["lung-bto-0000763.html","lung"],["respiratory-tract-uberon-0000065.html","respiratory tract"],["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1000561","Pseudomonas aeruginosa AES-1R"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":4,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"],["human-construction-envo-00000070.html","human construction"],["sediment-envo-00002007.html","sediment"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A100226","Streptomyces coelicolor A3(2)"]]},{"id":"NCBITaxon:1005928","l":"Roseovarius lutimaris","na":4,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"],["marine-sediment-envo-03000033.html","marine sediment"],["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["NCBITaxon%3A1005928","Roseovarius lutimaris"]]},{"id":"NCBITaxon:102170","l":"Desulfallas sapomandens","na":4,"nb":1,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["organic-feature-envo-01000159.html","organic feature"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A102170","Desulfallas sapomandens"]]},{"id":"NCBITaxon:102897","l":"Parafrankia sp. EUN1f","na":4,"nb":1,"a":[["plant-bto-0001481.html","plant"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["NCBITaxon%3A102897","Parafrankia sp. EUN1f"]]},{"id":"NCBITaxon:1029718","l":"Candidatus Arthromitus sp. SFB-mouse-Japan","na":4,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["lymphocyte-bto-0000775.html","lymphocyte"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A1029718","Candidatus Arthromitus sp. SFB-mouse-Japan"]]},{"id":"NCBITaxon:103621","l":"Actinomyces urogenitalis","na":1,"nb":4,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A103621","Actinomyces urogenitalis"],["NCBITaxon%3A1403939","Actinomyces urogenitalis DORA_12"],["NCBITaxon%3A525246","Actinomyces urogenitalis DSM 15434"],["NCBITaxon%3A1284679","Actinomyces urogenitalis S6-C4"]]},{"id":"NCBITaxon:1038859","l":"Bradyrhizobium murdochi","na":4,"nb":1,"a":[["plant-bto-0001481.html","plant"],["iucn-national-park-envo-00000367.html","IUCN national park"],["peninsula-envo-00000305.html","peninsula"],["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A1038859","Bradyrhizobium murdochi"]]},{"id":"NCBITaxon:103892","l":"Veillonella ratti","na":4,"nb":1,"a":[["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["intestine-environment-envo-2100002.html","intestine environment"],["organic-feature-envo-01000159.html","organic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["NCBITaxon%3A103892","Veillonella ratti"]]},{"id":"NCBITaxon:104099","l":"Acetobacter orleanensis","na":1,"nb":4,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A178900","Acetobacter cerevisiae"],["NCBITaxon%3A104099","Acetobacter orleanensis"],["NCBITaxon%3A1231342","Acetobacter orleanensis JCM 7639"],["NCBITaxon%3A1307914","Acetobacter orleanensis NRIC 0473"]]},{"id":"NCBITaxon:104269","l":"Tenacibaculum amylolyticum","na":4,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"],["marine-environment-envo-01000320.html","marine environment"],["organic-feature-envo-01000159.html","organic feature"],["organic-material-envo-01000155.html","organic material"]],"b":[["NCBITaxon%3A104269","Tenacibaculum amylolyticum"]]},{"id":"NCBITaxon:1046938","l":"Candidatus Aenigmarchaeota archaeon SCGC AAA011-F07","na":4,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1046938","Candidatus Aenigmarchaeota archaeon SCGC AAA011-F07"]]},{"id":"NCBITaxon:1046985","l":"Parcubacteria bacterium SCGC AAA011-A08","na":4,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1046985","Parcubacteria bacterium SCGC AAA011-A08"]]},{"id":"NCBITaxon:1046987","l":"Parcubacteria bacterium SCGC AAA011-A09","na":4,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1046987","Parcubacteria bacterium SCGC AAA011-A09"]]},{"id":"NCBITaxon:1046989","l":"Parcubacteria bacterium SCGC AAA011-J21","na":4,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1046989","Parcubacteria bacterium SCGC AAA011-J21"]]},{"id":"NCBITaxon:1046996","l":"Parcubacteria bacterium SCGC AAA010-E09","na":4,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1046996","Parcubacteria bacterium SCGC AAA010-E09"]]},{"id":"NCBITaxon:1047003","l":"Candidatus Microgenomatus auricola SCGC AAA011-E14","na":4,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1047003","Candidatus Microgenomatus auricola SCGC AAA011-E14"]]},{"id":"NCBITaxon:1047010","l":"Omnitrophica bacterium SCGC AAA011-L16","na":4,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1047010","Omnitrophica bacterium SCGC AAA011-L16"]]},{"id":"NCBITaxon:1052844","l":"Parcubacteria bacterium SCGC AAA040-L21","na":4,"nb":1,"a":[["ocean-envo-00000015.html","ocean"],["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"],["undersea-feature-envo-00000104.html","undersea feature"]],"b":[["NCBITaxon%3A1052844","Parcubacteria bacterium SCGC AAA040-L21"]]},{"id":"NCBITaxon:1052848","l":"Parcubacteria bacterium SCGC AAA036-E14","na":4,"nb":1,"a":[["ocean-envo-00000015.html","ocean"],["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"],["undersea-feature-envo-00000104.html","undersea feature"]],"b":[["NCBITaxon%3A1052848","Parcubacteria bacterium SCGC AAA036-E14"]]},{"id":"NCBITaxon:1055487","l":"Methylotenera versatilis","na":1,"nb":4,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1055487","Methylotenera versatilis"],["NCBITaxon%3A666681","Methylotenera versatilis 301"],["NCBITaxon%3A1101193","Methylotenera versatilis 7"],["NCBITaxon%3A1115835","Methylotenera versatilis 79"]]},{"id":"NCBITaxon:1066","l":"Rhodocyclus tenuis","na":1,"nb":4,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["NCBITaxon%3A34014","Pararhizobium capsulatum"],["NCBITaxon%3A2929842","Rhodocyclus gracilis"],["NCBITaxon%3A1066","Rhodocyclus tenuis"],["NCBITaxon%3A1188245","Rhodocyclus tenuis DSM 109"]]},{"id":"NCBITaxon:107400","l":"Methylobacterium fujisawaense","na":4,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["liquid-water-envo-00002006.html","liquid water"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"]],"b":[["NCBITaxon%3A107400","Methylobacterium fujisawaense"]]},{"id":"NCBITaxon:108980","l":"Acinetobacter ursingii","na":1,"nb":4,"a":[["foot-bto-0000476.html","foot"]],"b":[["NCBITaxon%3A108980","Acinetobacter ursingii"],["NCBITaxon%3A1257043","Acinetobacter ursingii ANC 3649"],["NCBITaxon%3A981336","Acinetobacter ursingii DSM 16037 = CIP 107286"],["NCBITaxon%3A1217716","Acinetobacter ursingii NIPH 706"]]},{"id":"NCBITaxon:1104584","l":"Candidatus Altimarinus pacificus JGI 0000068-E11","na":4,"nb":1,"a":[["ocean-envo-00000015.html","ocean"],["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"],["undersea-feature-envo-00000104.html","undersea feature"]],"b":[["NCBITaxon%3A1104584","Candidatus Altimarinus pacificus JGI 0000068-E11"]]},{"id":"NCBITaxon:110578","l":"Bartonella vinsonii subsp. arupensis","na":1,"nb":4,"a":[["farm-envo-00000078.html","farm"]],"b":[["NCBITaxon%3A33047","Bartonella vinsonii"],["NCBITaxon%3A110578","Bartonella vinsonii subsp. arupensis"],["NCBITaxon%3A1094562","Bartonella vinsonii subsp. arupensis OK-94-513"],["NCBITaxon%3A1094561","Bartonella vinsonii subsp. arupensis Pm136co"]]},{"id":"NCBITaxon:110639","l":"Arthrobacter sp. 'SMCC G984'","na":4,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["biofilm-material-envo-01000156.html","biofilm material"],["farm-envo-00000078.html","farm"],["temperate-envo-01000206.html","temperate"]],"b":[["NCBITaxon%3A110639","Arthrobacter sp. 'SMCC G984'"]]},{"id":"NCBITaxon:110645","l":"Arthrobacter sp. 'SMCC ZAT004'","na":4,"nb":1,"a":[["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["biofilm-material-envo-01000156.html","biofilm material"],["farm-envo-00000078.html","farm"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"]],"b":[["NCBITaxon%3A110645","Arthrobacter sp. 'SMCC ZAT004'"]]},{"id":"NCBITaxon:111807","l":"Actinomadura yumaensis","na":1,"nb":4,"a":[["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["NCBITaxon%3A111807","Actinomadura yumaensis"],["NCBITaxon%3A1408421","Actinomadura yumaensis ATCC 43060"],["NCBITaxon%3A1749037","Microbacterium zeae"],["NCBITaxon%3A2479765","Ochrobactrum teleogrylli"]]},{"id":"NCBITaxon:1131757","l":"Pseudomonas aeruginosa MPAO1/P1","na":4,"nb":1,"a":[["esophagus-bto-0000959.html","esophagus"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["left-colon-bto-0000646.html","left colon"],["rectum-bto-0001158.html","rectum"]],"b":[["NCBITaxon%3A1131757","Pseudomonas aeruginosa MPAO1/P1"]]},{"id":"NCBITaxon:1131758","l":"Pseudomonas aeruginosa MPAO1/P2","na":4,"nb":1,"a":[["esophagus-bto-0000959.html","esophagus"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["left-colon-bto-0000646.html","left colon"],["rectum-bto-0001158.html","rectum"]],"b":[["NCBITaxon%3A1131758","Pseudomonas aeruginosa MPAO1/P2"]]},{"id":"NCBITaxon:114404","l":"Edaphosphingomonas fennica","na":4,"nb":1,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"],["stream-envo-00000023.html","stream"]],"b":[["NCBITaxon%3A114404","Edaphosphingomonas fennica"]]},{"id":"NCBITaxon:1148157","l":"Acinetobacter oleivorans","na":1,"nb":4,"a":[["plume-bto-0002480.html","plume"]],"b":[["NCBITaxon%3A1148157","Acinetobacter oleivorans"],["NCBITaxon%3A1391912","Acinetobacter oleivorans CIP 110421"],["NCBITaxon%3A436717","Acinetobacter oleivorans DR1"],["NCBITaxon%3A472","Acinetobacter sp."]]},{"id":"NCBITaxon:1150423","l":"Bifidobacterium dentium JCM 1195 = DSM 20436","na":1,"nb":4,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A146474","Acetobacter orientalis"],["NCBITaxon%3A1307913","Acetobacter orientalis NRIC 0481"],["NCBITaxon%3A1689","Bifidobacterium dentium"],["NCBITaxon%3A1150423","Bifidobacterium dentium JCM 1195 = DSM 20436"]]},{"id":"NCBITaxon:115541","l":"Loigolactobacillus coryniformis subsp. coryniformis","na":1,"nb":4,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A1610","Loigolactobacillus coryniformis"],["NCBITaxon%3A115541","Loigolactobacillus coryniformis subsp. coryniformis"],["NCBITaxon%3A1185325","Loigolactobacillus coryniformis subsp. coryniformis CECT 5711"],["NCBITaxon%3A913848","Loigolactobacillus coryniformis subsp. coryniformis KCTC 3167 = DSM 20001"]]},{"id":"NCBITaxon:1156985","l":"Epibacterium ulvae","na":4,"nb":1,"a":[["bar-envo-00000167.html","bar"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"],["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A1156985","Epibacterium ulvae"]]},{"id":"NCBITaxon:119206","l":"Aerococcus sanguinicola","na":4,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["animal-manure-envo-00003031.html","animal manure"],["intestine-environment-envo-2100002.html","intestine environment"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"]],"b":[["NCBITaxon%3A119206","Aerococcus sanguinicola"]]},{"id":"NCBITaxon:1235990","l":"Candidatus Pantoea carbekii","na":4,"nb":1,"a":[["fruit-bto-0000486.html","fruit"],["midgut-bto-0000863.html","midgut"],["nymph-bto-0000954.html","nymph"],["secretion-bto-0002979.html","secretion"]],"b":[["NCBITaxon%3A1235990","Candidatus Pantoea carbekii"]]},{"id":"NCBITaxon:124798","l":"Microbacterium phyllosphaerae","na":4,"nb":1,"a":[["leaf-po-0025034.html","leaf"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["intestine-environment-envo-2100002.html","intestine environment"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"]],"b":[["NCBITaxon%3A124798","Microbacterium phyllosphaerae"]]},{"id":"NCBITaxon:126157","l":"Psychrobacillus psychrodurans","na":4,"nb":1,"a":[["desert-biome-envo-01000179.html","desert biome"],["painting-habitatmech-bacdive-0bfb662164.html","Painting"],["temperate-envo-01000206.html","temperate"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A126157","Psychrobacillus psychrodurans"]]},{"id":"NCBITaxon:1273539","l":"Streptococcus iniae IUSA1","na":4,"nb":1,"a":[["fibroblast-bto-0000452.html","fibroblast"],["kidney-bto-0000671.html","kidney"],["macrophage-bto-0000801.html","macrophage"],["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A1273539","Streptococcus iniae IUSA1"]]},{"id":"NCBITaxon:129817","l":"Pseudomonas brenneri","na":4,"nb":1,"a":[["lake-envo-00000020.html","lake"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["NCBITaxon%3A129817","Pseudomonas brenneri"]]},{"id":"NCBITaxon:13076","l":"Globicatella sanguinis","na":1,"nb":4,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A13076","Globicatella sanguinis"],["NCBITaxon%3A1223493","Globicatella sanguinis NBRC 15551"],["NCBITaxon%3A62321","Globicatella sp."],["NCBITaxon%3A136093","Globicatella sulfidifaciens"]]},{"id":"NCBITaxon:134533","l":"Acinetobacter parvus","na":1,"nb":4,"a":[["animal-house-envo-00003040.html","animal house"]],"b":[["NCBITaxon%3A134533","Acinetobacter parvus"],["NCBITaxon%3A981333","Acinetobacter parvus DSM 16617 = CIP 108168"],["NCBITaxon%3A1217671","Acinetobacter parvus NIPH 1103"],["NCBITaxon%3A1844114","Hymenobacter bucti"]]},{"id":"NCBITaxon:1371","l":"Marinococcus halophilus","na":4,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"],["rhizosphere-envo-00005801.html","rhizosphere"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["NCBITaxon%3A1371","Marinococcus halophilus"]]},{"id":"NCBITaxon:138563","l":"Helicobacter cetorum","na":1,"nb":4,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"]],"b":[["NCBITaxon%3A138563","Helicobacter cetorum"],["NCBITaxon%3A182217","Helicobacter cetorum MIT 00-7128"],["NCBITaxon%3A1163745","Helicobacter cetorum MIT 99-5656"],["NCBITaxon%3A837933","Helicobacter cetorum MIT 99-5665"]]},{"id":"NCBITaxon:143223","l":"Salegentibacter salegens","na":4,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"],["small-river-biome-envo-00000890.html","small river biome"],["marine-environment-envo-01000320.html","marine environment"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["NCBITaxon%3A143223","Salegentibacter salegens"]]},{"id":"NCBITaxon:1463164","l":"Klebsiella quasipneumoniae subsp. similipneumoniae","na":1,"nb":4,"a":[["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"]],"b":[["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A1463165","Klebsiella quasipneumoniae"],["NCBITaxon%3A1463164","Klebsiella quasipneumoniae subsp. similipneumoniae"],["NCBITaxon%3A1328376","Klebsiella quasipneumoniae subsp. similipneumoniae MGH 44"]]},{"id":"NCBITaxon:1484","l":"Hydrogenibacillus schlegelii","na":4,"nb":1,"a":[["factory-envo-01000536.html","factory"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["sludge-envo-00002044.html","sludge"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A1484","Hydrogenibacillus schlegelii"]]},{"id":"NCBITaxon:1507806","l":"Campylobacter fetus subsp. testudinum","na":1,"nb":4,"a":[["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["NCBITaxon%3A196","Campylobacter fetus"],["NCBITaxon%3A1507806","Campylobacter fetus subsp. testudinum"],["NCBITaxon%3A1244528","Campylobacter fetus subsp. testudinum 03-427"],["NCBITaxon%3A1244529","Campylobacter fetus subsp. testudinum Sp3"]]},{"id":"NCBITaxon:151454","l":"Allobosea eneae","na":1,"nb":4,"a":[["hospital-envo-00002173.html","hospital"]],"b":[["NCBITaxon%3A151454","Allobosea eneae"],["NCBITaxon%3A1211774","Allobosea eneae 34614"],["NCBITaxon%3A353","Azotobacter chroococcum"],["NCBITaxon%3A2707774","Azotobacter chroococcum subsp. chroococcum"]]},{"id":"NCBITaxon:1517","l":"Thermoanaerobacterium thermosaccharolyticum","na":1,"nb":4,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["NCBITaxon%3A1517","Thermoanaerobacterium thermosaccharolyticum"],["NCBITaxon%3A698949","Thermoanaerobacterium thermosaccharolyticum 33"],["NCBITaxon%3A580327","Thermoanaerobacterium thermosaccharolyticum DSM 571"],["NCBITaxon%3A698948","Thermoanaerobacterium thermosaccharolyticum M0795"]]},{"id":"NCBITaxon:1679001","l":"Pasteurellaceae bacterium NI1060","na":4,"nb":1,"a":[["alveolar-bone-bto-0001383.html","alveolar bone"],["gingiva-bto-0000519.html","gingiva"],["neutrophil-bto-0000130.html","neutrophil"],["osteoclast-bto-0000968.html","osteoclast"]],"b":[["NCBITaxon%3A1679001","Pasteurellaceae bacterium NI1060"]]},{"id":"NCBITaxon:169963","l":"Listeria monocytogenes serovar 1/2a (strain ATCC BAA-679 / EGD-e)","na":4,"nb":1,"a":[["brain-bto-0000142.html","brain"],["heart-bto-0000562.html","heart"],["macrophage-cell-line-bto-0002278.html","macrophage cell line"],["p-388d1-cell-bto-0000984.html","P-388D1 cell"]],"b":[["NCBITaxon%3A169963","Listeria monocytogenes EGD-e"]]},{"id":"NCBITaxon:1712410","l":"Thermanaerosceptrum fracticalcis","na":4,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["ocean-trench-envo-00000275.html","ocean trench"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A1712410","Thermanaerosceptrum fracticalcis"]]},{"id":"NCBITaxon:173365","l":"Methylobacter tundripaludum","na":1,"nb":4,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A173365","Methylobacter tundripaludum"],["NCBITaxon%3A1408450","Methylobacter tundripaludum 21/22"],["NCBITaxon%3A1408451","Methylobacter tundripaludum 31/32"],["NCBITaxon%3A697282","Methylobacter tundripaludum SV96"]]},{"id":"NCBITaxon:1796646","l":"Muribaculum intestinale","na":4,"nb":1,"a":[["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["secretion-bto-0002979.html","secretion"]],"b":[["NCBITaxon%3A1796646","Muribaculum intestinale"]]},{"id":"NCBITaxon:1798","l":"Mycolicibacillus trivialis","na":4,"nb":1,"a":[["fibroblast-bto-0000452.html","fibroblast"],["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["kidney-bto-0000671.html","kidney"],["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A1798","Mycolicibacillus trivialis"]]},{"id":"NCBITaxon:1804","l":"Mycolicibacterium gilvum","na":1,"nb":4,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["NCBITaxon%3A1785","Mycobacterium sp."],["NCBITaxon%3A1804","Mycolicibacterium gilvum"],["NCBITaxon%3A350054","Mycolicibacterium gilvum PYR-GCK"],["NCBITaxon%3A278137","Mycolicibacterium gilvum Spyr1"]]},{"id":"NCBITaxon:184870","l":"Varibaculum cambriense","na":1,"nb":4,"a":[["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"]],"b":[["NCBITaxon%3A184870","Varibaculum cambriense"],["NCBITaxon%3A1357413","Varibaculum cambriense AB12_3"],["NCBITaxon%3A1403948","Varibaculum cambriense DORA_20"],["NCBITaxon%3A1123488","Varibaculum cambriense DSM 15806"]]},{"id":"NCBITaxon:184917","l":"Solidesulfovibrio magneticus","na":1,"nb":4,"a":[["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["NCBITaxon%3A1304872","Solidesulfovibrio cf. magneticus IFRC170"],["NCBITaxon%3A184917","Solidesulfovibrio magneticus"],["NCBITaxon%3A573370","Solidesulfovibrio magneticus RS-1"],["NCBITaxon%3A1206767","Solidesulfovibrio magneticus str. Maddingley MBC34"]]},{"id":"NCBITaxon:187327","l":"Acidaminococcus intestini","na":1,"nb":4,"a":[["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["NCBITaxon%3A187327","Acidaminococcus intestini"],["NCBITaxon%3A1263033","Acidaminococcus intestini CAG:325"],["NCBITaxon%3A1120921","Acidaminococcus intestini DSM 21505"],["NCBITaxon%3A568816","Acidaminococcus intestini RyC-MR95"]]},{"id":"NCBITaxon:1934993","l":"Archaeoglobus sp. JdFR-36","na":4,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934993","Archaeoglobus sp. JdFR-36"]]},{"id":"NCBITaxon:1934994","l":"Archaeoglobus sp. JdFR-37","na":4,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934994","Archaeoglobus sp. JdFR-37"]]},{"id":"NCBITaxon:1934995","l":"Archaeoglobus sp. JdFR-38","na":4,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934995","Archaeoglobus sp. JdFR-38"]]},{"id":"NCBITaxon:1934996","l":"Archaeoglobus sp. JdFR-39","na":4,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934996","Archaeoglobus sp. JdFR-39"]]},{"id":"NCBITaxon:1934997","l":"Archaeoglobus sp. JdFR-40","na":4,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934997","Archaeoglobus sp. JdFR-40"]]},{"id":"NCBITaxon:1934998","l":"Archaeoglobus sp. JdFR-41","na":4,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934998","Archaeoglobus sp. JdFR-41"]]},{"id":"NCBITaxon:1934999","l":"Cupriavidus sp. JdFR-90","na":4,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934999","Cupriavidus sp. JdFR-90"]]},{"id":"NCBITaxon:194249","l":"uncultured Rhodococcus sp.","na":4,"nb":1,"a":[["leaf-po-0025034.html","leaf"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A194249","uncultured Rhodococcus sp."]]},{"id":"NCBITaxon:1993","l":"Actinomadura madurae","na":1,"nb":4,"a":[["foot-bto-0000476.html","foot"]],"b":[["NCBITaxon%3A1993","Actinomadura madurae"],["NCBITaxon%3A1394178","Actinomadura madurae LIID-AJ290"],["NCBITaxon%3A1220569","Actinomadura madurae NBRC 14623"],["NCBITaxon%3A1465509","Lactobacillus sp. JCM 7736"]]},{"id":"NCBITaxon:207340","l":"Roseomonas mucosa","na":1,"nb":4,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A207340","Roseomonas mucosa"],["NCBITaxon%3A1448136","Roseomonas mucosa ATCC BAA-692"],["NCBITaxon%3A1869190","Roseomonas sp."],["NCBITaxon%3A204525","Teichococcus cervicalis"]]},{"id":"NCBITaxon:2074","l":"Pseudonocardia autotrophica","na":1,"nb":4,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["NCBITaxon%3A255205","Pseudoclavibacter helvolus"],["NCBITaxon%3A2074","Pseudonocardia autotrophica"],["NCBITaxon%3A29401","Pseudonocardia halophobica"],["NCBITaxon%3A471802","Pseudonocardia halophobica NRRL B-16514"]]},{"id":"NCBITaxon:209260","l":"Swaminathania","na":1,"nb":4,"a":[["midgut-bto-0000863.html","midgut"]],"b":[["NCBITaxon%3A182838","Swaminathania salitolerans"],["NCBITaxon%3A1307931","Swaminathania salitolerans LMG 21291"],["NCBITaxon%3A447633","Swaminathania sp. SI15-1"],["NCBITaxon%3A876101","uncultured Swaminathania sp."]]},{"id":"NCBITaxon:231455","l":"Dyella japonica","na":1,"nb":4,"a":[["area-of-tundra-envo-00000112.html","area of tundra"]],"b":[["NCBITaxon%3A231455","Dyella japonica"],["NCBITaxon%3A1217721","Dyella japonica A8"],["NCBITaxon%3A1440762","Dyella japonica DSM 16301"],["NCBITaxon%3A1380365","Dyella japonica UNC79MFTsu3.2"]]},{"id":"NCBITaxon:237491","l":"Clostridium sp. Sukashi-1","na":4,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["environmental-feature-envo-00002297.html","environmental feature"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A237491","Clostridium sp. Sukashi-1"]]},{"id":"NCBITaxon:237727","l":"Erythrobacter sp. NAP1","na":4,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"],["pond-water-envo-00002228.html","pond water"],["small-river-biome-envo-00000890.html","small river biome"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["NCBITaxon%3A237727","Erythrobacter sp. NAP1"]]},{"id":"NCBITaxon:267990","l":"Lebetimonas acidiphila","na":4,"nb":1,"a":[["black-smoker-envo-00000218.html","black smoker"],["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["in-situ-habitatmech-bacdive-3edb563d49.html","In-situ"],["volcanic-rock-envo-00002015.html","volcanic rock"]],"b":[["NCBITaxon%3A267990","Lebetimonas acidiphila"]]},{"id":"NCBITaxon:28031","l":"Lysinibacillus fusiformis","na":1,"nb":4,"a":[["organic-waste-material-envo-00002873.html","organic waste material"]],"b":[["NCBITaxon%3A28031","Lysinibacillus fusiformis"],["NCBITaxon%3A1416755","Lysinibacillus fusiformis H1k"],["NCBITaxon%3A1231627","Lysinibacillus fusiformis ZB2"],["NCBITaxon%3A714961","Lysinibacillus fusiformis ZC1"]]},{"id":"NCBITaxon:28087","l":"Legionella sainthelensi","na":1,"nb":4,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["NCBITaxon%3A28087","Legionella sainthelensi"],["NCBITaxon%3A1408445","Legionella sainthelensi ATCC 35248 = DSM 19231"],["NCBITaxon%3A3413801","Legionella sainthelensi serogroup 1"],["NCBITaxon%3A66962","Legionella sainthelensi serogroup 2"]]},{"id":"NCBITaxon:28111","l":"Bacteroides eggerthii","na":1,"nb":4,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["NCBITaxon%3A28111","Bacteroides eggerthii"],["NCBITaxon%3A665953","Bacteroides eggerthii 1_2_48FAA"],["NCBITaxon%3A1263043","Bacteroides eggerthii CAG:109"],["NCBITaxon%3A483216","Bacteroides eggerthii DSM 20697"]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":1,"nb":4,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A28112","Tannerella forsythia"],["NCBITaxon%3A1307832","Tannerella forsythia 3313"],["NCBITaxon%3A203275","Tannerella forsythia 92A2"],["NCBITaxon%3A1307833","Tannerella forsythia KS16"]]},{"id":"NCBITaxon:28135","l":"Segatella oris","na":1,"nb":4,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["NCBITaxon%3A28135","Segatella oris"],["NCBITaxon%3A563008","Segatella oris C735"],["NCBITaxon%3A1122989","Segatella oris DSM 18711 = JCM 12252"],["NCBITaxon%3A649760","Segatella oris F0302"]]},{"id":"NCBITaxon:28445","l":"Mycobacterium intermedium","na":4,"nb":1,"a":[["fibroblast-bto-0000452.html","fibroblast"],["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["kidney-bto-0000671.html","kidney"],["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A28445","Mycobacterium intermedium"]]},{"id":"NCBITaxon:290400","l":"Jannaschia sp. CCS1","na":4,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["oligotrophic-water-envo-00002223.html","oligotrophic water"],["sandstone-envo-00002055.html","sandstone"],["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A290400","Jannaschia sp. CCS1"]]},{"id":"NCBITaxon:29313","l":"Mycobacterium shimoidei","na":4,"nb":1,"a":[["fibroblast-bto-0000452.html","fibroblast"],["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["kidney-bto-0000671.html","kidney"],["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A29313","Mycobacterium shimoidei"]]},{"id":"NCBITaxon:29491","l":"Aeromonas salmonicida subsp. salmonicida","na":1,"nb":4,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A645","Aeromonas salmonicida"],["NCBITaxon%3A29491","Aeromonas salmonicida subsp. salmonicida"],["NCBITaxon%3A1076135","Aeromonas salmonicida subsp. salmonicida 01-B526"],["NCBITaxon%3A382245","Aeromonas salmonicida subsp. salmonicida A449"]]},{"id":"NCBITaxon:29581","l":"Janthinobacterium lividum","na":1,"nb":4,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A29581","Janthinobacterium lividum"],["NCBITaxon%3A1112211","Janthinobacterium lividum PAMC 25724"],["NCBITaxon%3A303","Pseudomonas putida"],["NCBITaxon%3A13690","Sphingobium yanoikuyae"]]},{"id":"NCBITaxon:313596","l":"Robiginitalea biformata HTCC2501","na":4,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"],["small-river-biome-envo-00000890.html","small river biome"],["lagoon-envo-00000038.html","lagoon"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["NCBITaxon%3A313596","Robiginitalea biformata HTCC2501"]]},{"id":"NCBITaxon:313603","l":"Maribacter sp. HTCC2170","na":4,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"],["hydrographic-feature-envo-00000012.html","hydrographic feature"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["NCBITaxon%3A313603","Maribacter sp. HTCC2170"]]},{"id":"NCBITaxon:314724","l":"Borrelia turicatae 91E135","na":4,"nb":1,"a":[["central-nervous-system-bto-0000227.html","central nervous system"],["heart-bto-0000562.html","heart"],["huvec-cell-bto-0001949.html","HUVEC cell"],["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A314724","Borrelia turicatae 91E135"]]},{"id":"NCBITaxon:317577","l":"Deinococcus ficus","na":1,"nb":4,"a":[["waste-treatment-plant-envo-00002272.html","waste treatment plant"]],"b":[["NCBITaxon%3A317577","Deinococcus ficus"],["NCBITaxon%3A1054569","Deinococcus ficus cp02"],["NCBITaxon%3A1054570","Deinococcus ficus cp4502"],["NCBITaxon%3A1121379","Deinococcus ficus DSM 19119"]]},{"id":"NCBITaxon:324057","l":"Paenibacillus sp. JDR-2","na":4,"nb":1,"a":[["vasculature-uberon-0002049.html","vasculature"],["wood-envo-00002040.html","wood"],["part-of-plant-habitatmech-madin-25325947e2.html","part of plant"],["village-biome-envo-01000246.html","village biome"]],"b":[["NCBITaxon%3A324057","Paenibacillus sp. JDR-2"]]},{"id":"NCBITaxon:33010","l":"Cutibacterium avidum","na":1,"nb":4,"a":[["bone-element-uberon-0001474.html","bone element"]],"b":[["NCBITaxon%3A33010","Cutibacterium avidum"],["NCBITaxon%3A1170318","Cutibacterium avidum 44067"],["NCBITaxon%3A997355","Cutibacterium avidum ATCC 25577"],["NCBITaxon%3A1292372","Cutibacterium avidum TM16"]]},{"id":"NCBITaxon:33011","l":"Cutibacterium granulosum","na":1,"nb":4,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["NCBITaxon%3A33011","Cutibacterium granulosum"],["NCBITaxon%3A1160719","Cutibacterium granulosum DSM 20700"],["NCBITaxon%3A553200","Cutibacterium granulosum JCVIHMP029"],["NCBITaxon%3A1292373","Cutibacterium granulosum TM11"]]},{"id":"NCBITaxon:33013","l":"Clavibacter michiganensis subsp. michiganensis","na":1,"nb":4,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A28447","Clavibacter michiganensis"],["NCBITaxon%3A33013","Clavibacter michiganensis subsp. michiganensis"],["NCBITaxon%3A443906","Clavibacter michiganensis subsp. michiganensis NCPPB 382"],["NCBITaxon%3A2035","Curtobacterium flaccumfaciens"]]},{"id":"NCBITaxon:34105","l":"Streptobacillus moniliformis","na":1,"nb":4,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["NCBITaxon%3A1766719","Caviibacter abscessus"],["NCBITaxon%3A34105","Streptobacillus moniliformis"],["NCBITaxon%3A519441","Streptobacillus moniliformis DSM 12112"],["NCBITaxon%3A1410039","Streptobacillus moniliformis HMP_JCVI_SC0164"]]},{"id":"NCBITaxon:36740","l":"Dermabacter hominis","na":1,"nb":4,"a":[["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["NCBITaxon%3A52770","Buchananella hordeovulneris"],["NCBITaxon%3A36740","Dermabacter hominis"],["NCBITaxon%3A1450519","Dermabacter hominis 1368"],["NCBITaxon%3A1349750","Dermabacter hominis NBRC 106157"]]},{"id":"NCBITaxon:36814","l":"Mycolicibacterium rhodesiae","na":1,"nb":4,"a":[["tuberculosis-habitatmech-bacdive-e5d21f85b7.html","Tuberculosis"]],"b":[["NCBITaxon%3A36814","Mycolicibacterium rhodesiae"],["NCBITaxon%3A710467","Mycolicibacterium rhodesiae IS60"],["NCBITaxon%3A931627","Mycolicibacterium rhodesiae JS60"],["NCBITaxon%3A710685","Mycolicibacterium rhodesiae NBB3"]]},{"id":"NCBITaxon:36856","l":"Sinorhizobium saheli","na":1,"nb":4,"a":[["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A36856","Sinorhizobium saheli"],["NCBITaxon%3A142624","Sinorhizobium saheli bv. acaciae"],["NCBITaxon%3A142621","Sinorhizobium saheli bv. sesbaniae"],["NCBITaxon%3A1230633","Sinorhizobium saheli USDA 4893"]]},{"id":"NCBITaxon:378806","l":"Stigmatella aurantiaca DW4/3-1","na":4,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["orchard-envo-00000115.html","orchard"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A378806","Allostigmatella aurantiaca DW4/3-1"]]},{"id":"NCBITaxon:385067","l":"Bacillus sp. N2a","na":4,"nb":1,"a":[["oil-spill-envo-00002061.html","oil spill"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A385067","Bacillus sp. N2a"]]},{"id":"NCBITaxon:388919","l":"","na":4,"nb":1,"a":[["buccal-mucosa-bto-0003833.html","buccal mucosa"],["dental-plaque-bto-0000338.html","dental plaque"],["pharyngeal-mucosa-bto-0001047.html","pharyngeal mucosa"],["pharynx-bto-0001049.html","pharynx"]],"b":[["NCBITaxon%3A388919","Streptococcus sanguinis SK36"]]},{"id":"NCBITaxon:391","l":"Rhizobium sp.","na":4,"nb":1,"a":[["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["paddy-ricefield-habitatmech-bacdive-6e3154acd8.html","Paddy-Ricefield"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["NCBITaxon%3A391","Rhizobium sp."]]},{"id":"NCBITaxon:394090","l":"Cystobacter armeniaca","na":4,"nb":1,"a":[["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A394090","Cystobacter armeniaca"]]},{"id":"NCBITaxon:40542","l":"Leptotrichia buccalis","na":1,"nb":4,"a":[["archeological-site-envo-00000564.html","archeological site"]],"b":[["NCBITaxon%3A40542","Leptotrichia buccalis"],["NCBITaxon%3A523794","Leptotrichia buccalis C-1013-b"],["NCBITaxon%3A157692","Pseudoleptotrichia goodfellowii"],["NCBITaxon%3A714315","Pseudoleptotrichia goodfellowii DSM 19756"]]},{"id":"NCBITaxon:42895","l":"Enterobacter sp.","na":4,"nb":1,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"],["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A42895","Enterobacter sp."]]},{"id":"NCBITaxon:44753","l":"Tsukamurella spumae","na":4,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"],["foam-habitatmech-bacdive-df2f59b773.html","Foam"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A44753","Tsukamurella spumae"]]},{"id":"NCBITaxon:45243","l":"Capnocytophaga haemolytica","na":1,"nb":4,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A45243","Capnocytophaga haemolytica"],["NCBITaxon%3A1410026","Capnocytophaga haemolytica HMP_JCVI_SC0216"],["NCBITaxon%3A1410027","Capnocytophaga haemolytica HMP_JCVI_SC0218"],["NCBITaxon%3A1827100","Capnocytophaga sp. JCM 8568"]]},{"id":"NCBITaxon:45634","l":"Streptococcus cristatus","na":1,"nb":4,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["NCBITaxon%3A45634","Streptococcus cristatus"],["NCBITaxon%3A1302863","Streptococcus cristatus AS 1.3089"],["NCBITaxon%3A889201","Streptococcus cristatus ATCC 51100"],["NCBITaxon%3A1305","Streptococcus sanguinis"]]},{"id":"NCBITaxon:476","l":"Moraxella bovis","na":1,"nb":4,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"]],"b":[["NCBITaxon%3A476","Moraxella bovis"],["NCBITaxon%3A387425","Moraxella bovis Epp63"],["NCBITaxon%3A386891","Moraxella bovoculi"],["NCBITaxon%3A60442","Moraxella equi"]]},{"id":"NCBITaxon:477974","l":"Candidatus Desulforudis audaxviator MP104C","na":4,"nb":1,"a":[["borehole-envo-00002226.html","borehole"],["gold-mine-envo-00002168.html","gold mine"],["style-bto-0001313.html","style"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A477974","Candidatus Desulforudis audaxviator MP104C"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae (strain ATCC 42149 / RIB 40)","na":4,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["mountain-pass-envo-00000084.html","mountain pass"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A510516","Aspergillus oryzae RIB40"]]},{"id":"NCBITaxon:525919","l":"Anaerococcus prevotii DSM 20548","na":1,"nb":4,"a":[["blood-plasma-bto-0000131.html","blood plasma"]],"b":[["NCBITaxon%3A33034","Anaerococcus prevotii"],["NCBITaxon%3A525919","Anaerococcus prevotii DSM 20548"],["NCBITaxon%3A81462","Thermanaerovibrio acidaminovorans"],["NCBITaxon%3A525903","Thermanaerovibrio acidaminovorans DSM 6589"]]},{"id":"NCBITaxon:53249","l":"","na":4,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["aquaculture-farm-envo-03600074.html","aquaculture farm"],["fumarole-envo-00000216.html","fumarole"]],"b":[["NCBITaxon%3A53249","Pseudoalteromonas sp."]]},{"id":"NCBITaxon:546263","l":"Neisseria elongata subsp. glycolytica ATCC 29315","na":1,"nb":4,"a":[["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["NCBITaxon%3A495","Neisseria elongata"],["NCBITaxon%3A88719","Neisseria elongata subsp. glycolytica"],["NCBITaxon%3A546263","Neisseria elongata subsp. glycolytica ATCC 29315"],["NCBITaxon%3A90367","Neisseria elongata subsp. nitroreducens"]]},{"id":"NCBITaxon:622637","l":"Methylocystis sp. ATCC 49242","na":4,"nb":1,"a":[["park-envo-00000562.html","park"],["sewage-plant-envo-00003043.html","sewage plant"],["rice-field-envo-00000296.html","rice field"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["NCBITaxon%3A622637","Methylocystis sp. ATCC 49242"]]},{"id":"NCBITaxon:644281","l":"Methanocaldococcus sp. FS406-22","na":4,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"],["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A644281","Methanocaldococcus sp. FS406-22"]]},{"id":"NCBITaxon:67274","l":"Streptomyces argenteolus","na":1,"nb":4,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A67274","Streptomyces argenteolus"],["NCBITaxon%3A285516","Streptomyces argenteolus subsp. toyonakensis"],["NCBITaxon%3A1911","Streptomyces griseus"],["NCBITaxon%3A67263","Streptomyces griseus subsp. griseus"]]},{"id":"NCBITaxon:703","l":"Plesiomonas shigelloides","na":1,"nb":4,"a":[["feces-uberon-0001988.html","feces"]],"b":[["NCBITaxon%3A703","Plesiomonas shigelloides"],["NCBITaxon%3A1315976","Plesiomonas shigelloides 302-73"],["NCBITaxon%3A1354269","Plesiomonas shigelloides ATCC 14029"],["NCBITaxon%3A3398690","Plesiomonas shigelloides subsp. oncorhynchi"]]},{"id":"NCBITaxon:710685","l":"Mycolicibacterium rhodesiae NBB3","na":4,"nb":1,"a":[["bar-envo-00000167.html","bar"],["estuary-envo-00000045.html","estuary"],["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"],["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A710685","Mycolicibacterium rhodesiae NBB3"]]},{"id":"NCBITaxon:746360","l":"Pseudomonas fluorescens WH6","na":4,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["human-construction-envo-00000070.html","human construction"],["cold-environment-envo-01000309.html","cold environment"],["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A746360","Pseudomonas fluorescens WH6"]]},{"id":"NCBITaxon:76936","l":"Helicobacter typhlonius","na":1,"nb":4,"a":[["ht-29-cell-bto-0000182.html","HT-29 cell"]],"b":[["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"],["NCBITaxon%3A87012","Helicobacter mesocricetorum"],["NCBITaxon%3A76936","Helicobacter typhlonius"]]},{"id":"NCBITaxon:82983","l":"Obesumbacterium proteus","na":1,"nb":4,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A82983","Obesumbacterium proteus"],["NCBITaxon%3A1354268","Obesumbacterium proteus ATCC 12841"],["NCBITaxon%3A570012","Shimwellia pseudoproteus"]]},{"id":"NCBITaxon:83449","l":"Cystobacter ferrugineus","na":4,"nb":1,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["wood-bto-0005516.html","wood"],["sand-envo-01000017.html","sand"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A83449","Cystobacter ferrugineus"]]},{"id":"NCBITaxon:839","l":"Xylanibacter ruminicola","na":1,"nb":4,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A1531","Enterocloster clostridioformis"],["NCBITaxon%3A839","Xylanibacter ruminicola"],["NCBITaxon%3A264731","Xylanibacter ruminicola 23"],["NCBITaxon%3A1410667","Xylanibacter ruminicola Ga6B6"]]},{"id":"NCBITaxon:85402","l":"Mannheimia granulomatis","na":1,"nb":4,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"]],"b":[["NCBITaxon%3A56878","Helicobacter salomonis"],["NCBITaxon%3A85402","Mannheimia granulomatis"],["NCBITaxon%3A1122190","Mannheimia granulomatis DSM 19156"],["NCBITaxon%3A2081794","Mannheimia sp."]]},{"id":"NCBITaxon:859144","l":"Cytobacillus gottheilii","na":1,"nb":4,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["NCBITaxon%3A1416876","Actinomycetospora rhizophila"],["NCBITaxon%3A859144","Cytobacillus gottheilii"],["NCBITaxon%3A33903","Streptomyces avermitilis"],["NCBITaxon%3A227882","Streptomyces avermitilis MA-4680 = NBRC 14893"]]},{"id":"NCBITaxon:930","l":"Acidithiobacillus thiooxidans","na":1,"nb":4,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A3063952","Acidithiobacillus concretivorus"],["NCBITaxon%3A930","Acidithiobacillus thiooxidans"],["NCBITaxon%3A1432062","Acidithiobacillus thiooxidans A01"],["NCBITaxon%3A637390","Acidithiobacillus thiooxidans ATCC 19377"]]},{"id":"NCBITaxon:1000589","l":"","na":1,"nb":3,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1334","Streptococcus dysgalactiae"],["NCBITaxon%3A119602","Streptococcus dysgalactiae subsp. equisimilis"],["NCBITaxon%3A1000589","Streptococcus dysgalactiae subsp. equisimilis SK1249"]]},{"id":"NCBITaxon:1003237","l":"Nitrospirillum amazonense Y2","na":1,"nb":3,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A28077","Nitrospirillum amazonense"],["NCBITaxon%3A3144925","Nitrospirillum viridazoti"],["NCBITaxon%3A1003237","Nitrospirillum viridazoti Y2"]]},{"id":"NCBITaxon:1004151","l":"","na":1,"nb":3,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1004150","Photorhabdus khanii"],["NCBITaxon%3A1004151","Photorhabdus khanii NC19"],["NCBITaxon%3A2675885","Photorhabdus khanii subsp. khanii"]]},{"id":"NCBITaxon:100469","l":"Schaalia canis","na":3,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A100469","Schaalia canis"]]},{"id":"NCBITaxon:1006","l":"Marivirga tractuosa","na":1,"nb":3,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A2010992","Marivirga harenae"],["NCBITaxon%3A1006","Marivirga tractuosa"],["NCBITaxon%3A643867","Marivirga tractuosa DSM 4126"]]},{"id":"NCBITaxon:1007092","l":"Microlunatus terrae","na":3,"nb":1,"a":[["forested-area-envo-00000111.html","forested area"],["soil-envo-00001998.html","soil"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A1007092","Microlunatus terrae"]]},{"id":"NCBITaxon:1008","l":"Saprospira grandis","na":1,"nb":3,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A1008","Saprospira grandis"],["NCBITaxon%3A694433","Saprospira grandis DSM 2844"],["NCBITaxon%3A984262","Saprospira grandis str. Lewin"]]},{"id":"NCBITaxon:1010","l":"Sphingobacterium mizutaii","na":1,"nb":3,"a":[["gut-bto-0000545.html","gut"]],"b":[["NCBITaxon%3A239","Flavobacterium sp."],["NCBITaxon%3A1010","Sphingobacterium mizutaii"],["NCBITaxon%3A1220576","Sphingobacterium mizutaii NBRC 14946 = DSM 11724"]]},{"id":"NCBITaxon:1012","l":"Sporocytophaga cauliformis","na":3,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"]],"b":[["NCBITaxon%3A1012","Sporocytophaga cauliformis"]]},{"id":"NCBITaxon:102232","l":"Gloeocapsa sp. PCC 73106","na":3,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A102232","Gloeocapsa sp. PCC 73106"]]},{"id":"NCBITaxon:1031536","l":"Campylobacter lari subsp. concheus LMG 11760","na":1,"nb":3,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A201","Campylobacter lari"],["NCBITaxon%3A488545","Campylobacter lari subsp. concheus"],["NCBITaxon%3A1031536","Campylobacter lari subsp. concheus LMG 11760"]]},{"id":"NCBITaxon:1031541","l":"Tropicimonas sediminicola","na":3,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"],["aquaculture-farm-envo-03600074.html","aquaculture farm"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A1031541","Tropicimonas sediminicola"]]},{"id":"NCBITaxon:1031752","l":"Campylobacter hyointestinalis subsp. lawsonii CCUG 27631","na":1,"nb":3,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["NCBITaxon%3A198","Campylobacter hyointestinalis"],["NCBITaxon%3A91353","Campylobacter hyointestinalis subsp. lawsonii"],["NCBITaxon%3A1031752","Campylobacter hyointestinalis subsp. lawsonii CCUG 27631"]]},{"id":"NCBITaxon:1032845","l":"","na":1,"nb":3,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A781","Rickettsia conorii"],["NCBITaxon%3A226665","Rickettsia conorii subsp. heilongjiangensis"],["NCBITaxon%3A1032845","Rickettsia conorii subsp. heilongjiangensis 054"]]},{"id":"NCBITaxon:1036743","l":"Rhodospirillum rubrum F11","na":1,"nb":3,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1085","Rhodospirillum rubrum"],["NCBITaxon%3A269796","Rhodospirillum rubrum ATCC 11170"],["NCBITaxon%3A1036743","Rhodospirillum rubrum F11"]]},{"id":"NCBITaxon:103710","l":"Cellulomonas sp. GM13","na":3,"nb":1,"a":[["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["NCBITaxon%3A103710","Cellulomonas sp. GM13"]]},{"id":"NCBITaxon:103728","l":"Actinokineospora diospyrosa","na":3,"nb":1,"a":[["inflorescence-bto-0000628.html","inflorescence"],["plant-bto-0001481.html","plant"],["root-bto-0001188.html","root"]],"b":[["NCBITaxon%3A103728","Actinokineospora diospyrosa"]]},{"id":"NCBITaxon:103732","l":"Lentzea flava","na":3,"nb":1,"a":[["biofilm-material-envo-01000156.html","biofilm material"],["farm-envo-00000078.html","farm"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A103732","Lentzea flava"]]},{"id":"NCBITaxon:1037355","l":"","na":3,"nb":1,"a":[["undersea-feature-envo-00000104.html","undersea feature"],["city-envo-00000856.html","city"],["factory-envo-01000536.html","factory"]],"b":[["NCBITaxon%3A879969","Macellibacteroides fermentans"]]},{"id":"NCBITaxon:1037411","l":"Lactobacillus johnsonii pf01","na":3,"nb":1,"a":[["duodenum-bto-0000365.html","duodenum"],["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"],["jejunal-epithelium-bto-0001743.html","jejunal epithelium"]],"b":[["NCBITaxon%3A1037411","Lactobacillus johnsonii pf01"]]},{"id":"NCBITaxon:1038928","l":"Streptomyces xinghaiensis","na":1,"nb":3,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1906","Streptomyces fradiae"],["NCBITaxon%3A1038928","Streptomyces xinghaiensis"],["NCBITaxon%3A1038929","Streptomyces xinghaiensis S187"]]},{"id":"NCBITaxon:1040984","l":"Mesorhizobium sp. WSM1293","na":3,"nb":1,"a":[["beach-envo-00000091.html","beach"],["intertidal-zone-envo-00000316.html","intertidal zone"],["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1040984","Mesorhizobium sp. WSM1293"]]},{"id":"NCBITaxon:1041150","l":"Sinorhizobium medicae WSM244","na":3,"nb":1,"a":[["joint-bto-0001686.html","joint"],["rhizosphere-envo-00005801.html","rhizosphere"],["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A1041150","Sinorhizobium medicae WSM244"]]},{"id":"NCBITaxon:1051353","l":"Escherichia coli ATCC 700728","na":1,"nb":3,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1051353","Escherichia coli ATCC 700728"],["NCBITaxon%3A1236522","Escherichia coli JCM 18426"]]},{"id":"NCBITaxon:105420","l":"Streptacidiphilus neutrinimicus","na":3,"nb":1,"a":[["rhizosphere-envo-00005801.html","rhizosphere"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["NCBITaxon%3A105420","Streptacidiphilus neutrinimicus"]]},{"id":"NCBITaxon:1054942","l":"Candidatus Arthromitus sp. SFB-1","na":3,"nb":1,"a":[["filament-bto-0000463.html","filament"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["scolex-bto-0002305.html","scolex"]],"b":[["NCBITaxon%3A1054942","Candidatus Arthromitus sp. SFB-1"]]},{"id":"NCBITaxon:1054943","l":"Candidatus Arthromitus sp. SFB-2","na":3,"nb":1,"a":[["filament-bto-0000463.html","filament"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["scolex-bto-0002305.html","scolex"]],"b":[["NCBITaxon%3A1054943","Candidatus Arthromitus sp. SFB-2"]]},{"id":"NCBITaxon:1068975","l":"Acetobacterium malicum subsp. dehalogenans DSM 11527","na":1,"nb":3,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A52692","Acetobacterium malicum"],["NCBITaxon%3A82116","Acetobacterium malicum subsp. dehalogenans"],["NCBITaxon%3A1068975","Acetobacterium malicum subsp. dehalogenans DSM 11527"]]},{"id":"NCBITaxon:1069073","l":"Haloechinothrix halophila","na":1,"nb":3,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A1069073","Haloechinothrix halophila"],["NCBITaxon%3A3698341","Haloechinothrix halophila 77291"],["NCBITaxon%3A592678","Haloechinothrix halophila YIM 93223"]]},{"id":"NCBITaxon:1069530","l":"Candidatus Paraburkholderia schumanniana","na":3,"nb":1,"a":[["heart-bto-0000562.html","heart"],["mesophyll-bto-0000858.html","mesophyll"],["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A1069530","Candidatus Paraburkholderia schumanniana"]]},{"id":"NCBITaxon:1075399","l":"Blattabacterium sp. (Cryptocercus punctulatus) str. Cpu","na":3,"nb":1,"a":[["abdominal-adipose-tissue-bto-0004041.html","abdominal adipose tissue"],["hindgut-bto-0000510.html","hindgut"],["wood-bto-0005516.html","wood"]],"b":[["NCBITaxon%3A1075399","Blattabacterium sp. (Cryptocercus punctulatus) str. Cpu"]]},{"id":"NCBITaxon:107633","l":"Methylocystis sp. LW5","na":3,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A107633","Methylocystis sp. LW5"]]},{"id":"NCBITaxon:1077942","l":"Micromonospora kangleipakensis","na":3,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"],["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A1077942","Micromonospora kangleipakensis"]]},{"id":"NCBITaxon:1080179","l":"Burkholderia sp. UYPR1.413","na":3,"nb":1,"a":[["plantation-envo-00000117.html","plantation"],["agricultural-field-envo-00000114.html","agricultural field"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A1080179","Burkholderia sp. UYPR1.413"]]},{"id":"NCBITaxon:108901","l":"Porodaedalea pini","na":3,"nb":1,"a":[["lake-envo-00000020.html","lake"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["organic-material-envo-01000155.html","organic material"]],"b":[["NCBITaxon%3A108901","Porodaedalea pini"]]},{"id":"NCBITaxon:1091045","l":"Cutibacterium acnes subsp. defendens ATCC 11828","na":1,"nb":3,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A1747","Cutibacterium acnes"],["NCBITaxon%3A1905725","Cutibacterium acnes subsp. defendens"],["NCBITaxon%3A1091045","Cutibacterium acnes subsp. defendens ATCC 11828"]]},{"id":"NCBITaxon:109635","l":"Flammula alnicola","na":3,"nb":1,"a":[["lake-envo-00000020.html","lake"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["organic-material-envo-01000155.html","organic material"]],"b":[["NCBITaxon%3A109635","Flammula alnicola"]]},{"id":"NCBITaxon:110505","l":"Mycobacterium heckeshornense","na":3,"nb":1,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["respiratory-airway-uberon-0001005.html","respiratory airway"],["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A110505","Mycobacterium heckeshornense"]]},{"id":"NCBITaxon:110643","l":"Arthrobacter sp. 'SMCC ZAT001'","na":3,"nb":1,"a":[["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["NCBITaxon%3A110643","Arthrobacter sp. 'SMCC ZAT001'"]]},{"id":"NCBITaxon:110845","l":"","na":1,"nb":3,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A2599412","Paracoccus aurantiacus"],["NCBITaxon%3A110845","Phocicoccus pinnipedialis"],["NCBITaxon%3A1812261","Phocicoccus schoeneichii"]]},{"id":"NCBITaxon:111769","l":"Thiothrix unzii","na":3,"nb":1,"a":[["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"],["stream-envo-00000023.html","stream"]],"b":[["NCBITaxon%3A111769","Thiothrix unzii"]]},{"id":"NCBITaxon:1118964","l":"Mesomycoplasma hyorhinis SK76","na":3,"nb":1,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"],["prostate-gland-bto-0001129.html","prostate gland"],["prostate-gland-cancer-cell-bto-0001130.html","prostate gland cancer cell"]],"b":[["NCBITaxon%3A1118964","Mesomycoplasma hyorhinis SK76"]]},{"id":"NCBITaxon:1121336","l":"Thermoclostridium stercorarium subsp. thermolacticum DSM 2910","na":1,"nb":3,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A1510","Thermoclostridium stercorarium"],["NCBITaxon%3A29351","Thermoclostridium stercorarium subsp. thermolacticum"],["NCBITaxon%3A1121336","Thermoclostridium stercorarium subsp. thermolacticum DSM 2910"]]},{"id":"NCBITaxon:1121435","l":"","na":1,"nb":3,"a":[["fresh-water-envo-00002011.html","fresh water"]],"b":[["NCBITaxon%3A873","Desulfocurvibacter africanus"],["NCBITaxon%3A1511600","Desulfocurvibacter africanus subsp. africanus"],["NCBITaxon%3A1121435","Desulfocurvibacter africanus subsp. africanus DSM 2603"]]},{"id":"NCBITaxon:112234","l":"Chryseobacterium joostei","na":1,"nb":3,"a":[["reservoir-envo-00000025.html","reservoir"]],"b":[["NCBITaxon%3A112234","Chryseobacterium joostei"],["NCBITaxon%3A1255689","Chryseobacterium joostei PCAi_D6.3"],["NCBITaxon%3A1871047","Chryseobacterium sp."]]},{"id":"NCBITaxon:1122921","l":"Paenibacillus massiliensis 2301065 = DSM 16942","na":1,"nb":3,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A225917","Paenibacillus massiliensis"],["NCBITaxon%3A1122921","Paenibacillus massiliensis 2301065 = DSM 16942"],["NCBITaxon%3A2884454","Paenibacillus massiliensis subsp. massiliensis"]]},{"id":"NCBITaxon:1123015","l":"Pseudomonas aeruginosa DSM 50071 = NBRC 12689","na":1,"nb":3,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1123015","Pseudomonas aeruginosa DSM 50071 = NBRC 12689"],["NCBITaxon%3A1236528","Pseudomonas aeruginosa JCM 5962"]]},{"id":"NCBITaxon:1128671","l":"Microvirga arabica","na":1,"nb":3,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A1651218","Delftia deserti"],["NCBITaxon%3A1128671","Microvirga arabica"],["NCBITaxon%3A1243014","Vibrio thalassae"]]},{"id":"NCBITaxon:1134510","l":"Bartonella koehlerae C-29","na":1,"nb":3,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["NCBITaxon%3A92181","Bartonella koehlerae"],["NCBITaxon%3A1134510","Bartonella koehlerae C-29"],["NCBITaxon%3A1819240","Bartonella koehlerae subsp. koehlerae"]]},{"id":"NCBITaxon:1137988","l":"Geodermatophilus tzadiensis","na":3,"nb":1,"a":[["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A1137988","Geodermatophilus tzadiensis"]]},{"id":"NCBITaxon:114197","l":"Pseudoselenomonas lactilytica","na":1,"nb":3,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A114197","Pseudoselenomonas lactilytica"],["NCBITaxon%3A971","Pseudoselenomonas ruminantium"],["NCBITaxon%3A927704","Selenomonas ruminantium subsp. lactilytica TAM6421"]]},{"id":"NCBITaxon:1147128","l":"Bifidobacterium asteroides PRL2011","na":3,"nb":1,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"],["hindgut-bto-0000510.html","hindgut"],["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["NCBITaxon%3A1147128","Bifidobacterium asteroides PRL2011"]]},{"id":"NCBITaxon:1150460","l":"Bifidobacterium catenulatum subsp. kashiwanohense JCM 15439 = DSM 21854","na":1,"nb":3,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A1686","Bifidobacterium catenulatum"],["NCBITaxon%3A630129","Bifidobacterium catenulatum subsp. kashiwanohense"],["NCBITaxon%3A1150460","Bifidobacterium catenulatum subsp. kashiwanohense JCM 15439 = DSM 21854"]]},{"id":"NCBITaxon:115542","l":"Loigolactobacillus coryniformis subsp. torquens","na":1,"nb":3,"a":[["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A1610","Loigolactobacillus coryniformis"],["NCBITaxon%3A115542","Loigolactobacillus coryniformis subsp. torquens"],["NCBITaxon%3A1423822","Loigolactobacillus coryniformis subsp. torquens DSM 20004 = KCTC 3535"]]},{"id":"NCBITaxon:115778","l":"Leuconostoc gasicomitatum","na":1,"nb":3,"a":[["research-facility-envo-00000469.html","research facility"]],"b":[["NCBITaxon%3A115778","Leuconostoc gasicomitatum"],["NCBITaxon%3A1165892","Leuconostoc gasicomitatum KG16-1"],["NCBITaxon%3A762550","Leuconostoc gasicomitatum LMG 18811"]]},{"id":"NCBITaxon:1159213","l":"Peptostreptococcus canis","na":3,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["dental-plaque-uberon-0016482.html","dental plaque"],["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A1159213","Peptostreptococcus canis"]]},{"id":"NCBITaxon:1159496","l":"Cronobacter dublinensis subsp. lactaridi LMG 23825","na":1,"nb":3,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A413497","Cronobacter dublinensis"],["NCBITaxon%3A413499","Cronobacter dublinensis subsp. lactaridi"],["NCBITaxon%3A1159496","Cronobacter dublinensis subsp. lactaridi LMG 23825"]]},{"id":"NCBITaxon:1159554","l":"Cronobacter dublinensis subsp. dublinensis LMG 23823","na":1,"nb":3,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A413497","Cronobacter dublinensis"],["NCBITaxon%3A413498","Cronobacter dublinensis subsp. dublinensis"],["NCBITaxon%3A1159554","Cronobacter dublinensis subsp. dublinensis LMG 23823"]]},{"id":"NCBITaxon:1159560","l":"Cronobacter dublinensis subsp. lausannensis LMG 23824","na":1,"nb":3,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A413497","Cronobacter dublinensis"],["NCBITaxon%3A413500","Cronobacter dublinensis subsp. lausannensis"],["NCBITaxon%3A1159560","Cronobacter dublinensis subsp. lausannensis LMG 23824"]]},{"id":"NCBITaxon:1159752","l":"Enterococcus lemanii","na":3,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"]],"b":[["NCBITaxon%3A1159752","Enterococcus lemanii"]]},{"id":"NCBITaxon:1159753","l":"Enterococcus eurekensis","na":3,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"]],"b":[["NCBITaxon%3A1159753","Enterococcus eurekensis"]]},{"id":"NCBITaxon:116087","l":"Gallicola barnesae","na":3,"nb":1,"a":[["intestine-environment-envo-2100002.html","intestine environment"],["sludge-envo-00002044.html","sludge"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A116087","Gallicola barnesae"]]},{"id":"NCBITaxon:1169025","l":"Streptomyces pratensis","na":1,"nb":3,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A52258","Streptomyces flavovirens"],["NCBITaxon%3A1169025","Streptomyces pratensis"],["NCBITaxon%3A591167","Streptomyces pratensis ATCC 33331"]]},{"id":"NCBITaxon:1172194","l":"Hydrocarboniphaga effusa AP103","na":1,"nb":3,"a":[["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A243629","Hydrocarboniphaga effusa"],["NCBITaxon%3A1172194","Hydrocarboniphaga effusa AP103"],["NCBITaxon%3A77608","Pseudoalteromonas distincta"]]},{"id":"NCBITaxon:117567","l":"Mycolicibacterium frederiksbergense","na":3,"nb":1,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A117567","Mycolicibacterium frederiksbergense"]]},{"id":"NCBITaxon:117680","l":"Pseudomonas reactans","na":3,"nb":1,"a":[["sea-water-envo-00002149.html","sea water"],["farm-envo-00000078.html","farm"],["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["NCBITaxon%3A117680","Pseudomonas reactans"]]},{"id":"NCBITaxon:1178541","l":"Bacillus safensis FO-36b","na":1,"nb":3,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A561879","Bacillus safensis"],["NCBITaxon%3A1178541","Bacillus safensis FO-36b"],["NCBITaxon%3A2490859","Bacillus safensis subsp. safensis"]]},{"id":"NCBITaxon:118062","l":"Methanobacterium congolense","na":3,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A118062","Methanobacterium congolense"]]},{"id":"NCBITaxon:1188","l":"Tolypothrix sp. PCC 7601","na":1,"nb":3,"a":[["photoreceptor-cell-bto-0001060.html","photoreceptor cell"]],"b":[["NCBITaxon%3A293451","Fremyella diplosiphon Fd33"],["NCBITaxon%3A1188","Tolypothrix sp. PCC 7601"],["NCBITaxon%3A169964","Tolypothrix sp. PCC 7601/1"]]},{"id":"NCBITaxon:1194085","l":"Staphylococcus aureus subsp. aureus SA40","na":3,"nb":1,"a":[["a-549-cell-bto-0000018.html","A-549 cell"],["neutrophil-bto-0000130.html","neutrophil"],["suprachiasmatic-nucleus-bto-0001822.html","suprachiasmatic nucleus"]],"b":[["NCBITaxon%3A1194085","Staphylococcus aureus subsp. aureus SA40"]]},{"id":"NCBITaxon:1201010","l":"Staphylococcus aureus subsp. aureus SA957","na":3,"nb":1,"a":[["a-549-cell-bto-0000018.html","A-549 cell"],["neutrophil-bto-0000130.html","neutrophil"],["suprachiasmatic-nucleus-bto-0001822.html","suprachiasmatic nucleus"]],"b":[["NCBITaxon%3A1201010","Staphylococcus aureus subsp. aureus SA957"]]},{"id":"NCBITaxon:1214102","l":"","na":1,"nb":3,"a":[["brain-bto-0000142.html","brain"]],"b":[["NCBITaxon%3A1766","Mycolicibacterium fortuitum"],["NCBITaxon%3A144549","Mycolicibacterium fortuitum subsp. fortuitum"],["NCBITaxon%3A1214102","Mycolicibacterium fortuitum subsp. fortuitum DSM 46621 = ATCC 6841 = JCM 6387"]]},{"id":"NCBITaxon:1217420","l":"Lactobacillus delbrueckii subsp. jakobsenii ZN7a-9 = DSM 26046","na":1,"nb":3,"a":[["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A1584","Lactobacillus delbrueckii"],["NCBITaxon%3A1537158","Lactobacillus delbrueckii subsp. jakobsenii"],["NCBITaxon%3A1217420","Lactobacillus delbrueckii subsp. jakobsenii ZN7a-9 = DSM 26046"]]},{"id":"NCBITaxon:121872","l":"Natrinema thermotolerans","na":1,"nb":3,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A121872","Natrinema thermotolerans"],["NCBITaxon%3A1455609","Natrinema thermotolerans A29"],["NCBITaxon%3A1227489","Natrinema thermotolerans DSM 11552"]]},{"id":"NCBITaxon:1218948","l":"Pseudomonas fluorescens PF5","na":3,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["human-construction-envo-00000070.html","human construction"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A1218948","Pseudomonas fluorescens PF5"]]},{"id":"NCBITaxon:1224749","l":"Exiguobacterium sp. ZWU0009","na":3,"nb":1,"a":[["epithelium-bto-0000416.html","epithelium"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1224749","Exiguobacterium sp. ZWU0009"]]},{"id":"NCBITaxon:122866","l":"Arthrobacter keyseri","na":3,"nb":1,"a":[["farm-envo-00000078.html","farm"],["intestine-environment-envo-2100002.html","intestine environment"],["cropland-biome-envo-01000245.html","cropland biome"]],"b":[["NCBITaxon%3A122866","Arthrobacter keyseri"]]},{"id":"NCBITaxon:1232438","l":"Clostridiales bacterium VE202-01","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232438","Clostridiales bacterium VE202-01"]]},{"id":"NCBITaxon:1232439","l":"Clostridiales bacterium VE202-03","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232439","Clostridiales bacterium VE202-03"]]},{"id":"NCBITaxon:1232440","l":"Hungatella hathewayi VE202-04","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232440","Hungatella hathewayi VE202-04"]]},{"id":"NCBITaxon:1232442","l":"Clostridiales bacterium VE202-06","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232442","Clostridiales bacterium VE202-06"]]},{"id":"NCBITaxon:1232443","l":"Clostridiales bacterium VE202-13","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232443","Clostridiales bacterium VE202-13"]]},{"id":"NCBITaxon:1232444","l":"Clostridiales bacterium VE202-15","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232444","Clostridiales bacterium VE202-15"]]},{"id":"NCBITaxon:1232445","l":"Clostridiales bacterium VE202-16","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232445","Clostridiales bacterium VE202-16"]]},{"id":"NCBITaxon:1232446","l":"Clostridiales bacterium VE202-18","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232446","Clostridiales bacterium VE202-18"]]},{"id":"NCBITaxon:1232447","l":"Clostridiales bacterium VE202-09","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232447","Clostridiales bacterium VE202-09"]]},{"id":"NCBITaxon:1232448","l":"Clostridiales bacterium VE202-07","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232448","Clostridiales bacterium VE202-07"]]},{"id":"NCBITaxon:1232449","l":"Clostridiales bacterium VE202-08","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232449","Clostridiales bacterium VE202-08"]]},{"id":"NCBITaxon:1232452","l":"Clostridiales bacterium VE202-14","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232452","Clostridiales bacterium VE202-14"]]},{"id":"NCBITaxon:1232453","l":"Clostridiales bacterium VE202-21","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232453","Clostridiales bacterium VE202-21"]]},{"id":"NCBITaxon:1232454","l":"Clostridiales bacterium VE202-26","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232454","Clostridiales bacterium VE202-26"]]},{"id":"NCBITaxon:1232457","l":"Clostridiales bacterium VE202-27","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232457","Clostridiales bacterium VE202-27"]]},{"id":"NCBITaxon:1232458","l":"Clostridiales bacterium VE202-29","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232458","Clostridiales bacterium VE202-29"]]},{"id":"NCBITaxon:1232460","l":"Clostridiales bacterium VE202-28","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232460","Clostridiales bacterium VE202-28"]]},{"id":"NCBITaxon:1233262","l":"Mycoplasmoides pneumoniae PO1","na":3,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1233262","Mycoplasmoides pneumoniae PO1"]]},{"id":"NCBITaxon:1236540","l":"Prolixibacter bellariivorans JCM 13498","na":1,"nb":3,"a":[["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A314319","Prolixibacter bellariivorans"],["NCBITaxon%3A1408473","Prolixibacter bellariivorans ATCC BAA-1284"],["NCBITaxon%3A1236540","Prolixibacter bellariivorans JCM 13498"]]},{"id":"NCBITaxon:1236904","l":"Mycoplasmoides pneumoniae PI 1428","na":3,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1236904","Mycoplasmoides pneumoniae PI 1428"]]},{"id":"NCBITaxon:1246994","l":"Elizabethkingia anophelis R26","na":1,"nb":3,"a":[["midgut-bto-0000863.html","midgut"]],"b":[["NCBITaxon%3A1117645","Elizabethkingia anophelis"],["NCBITaxon%3A1246994","Elizabethkingia anophelis R26"],["NCBITaxon%3A3047319","Elizabethkingia anophelis subsp. anophelis"]]},{"id":"NCBITaxon:1267000","l":"Metamycoplasma hominis ATCC 27545","na":1,"nb":3,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A2098","Metamycoplasma hominis"],["NCBITaxon%3A347256","Metamycoplasma hominis ATCC 23114"],["NCBITaxon%3A1267000","Metamycoplasma hominis ATCC 27545"]]},{"id":"NCBITaxon:1267545","l":"Pectobacterium carotovorum subsp. carotovorum ICMP 5702","na":1,"nb":3,"a":[["tuber-bto-0001400.html","tuber"]],"b":[["NCBITaxon%3A554","Pectobacterium carotovorum"],["NCBITaxon%3A555","Pectobacterium carotovorum subsp. carotovorum"],["NCBITaxon%3A1267545","Pectobacterium carotovorum subsp. carotovorum ICMP 5702"]]},{"id":"NCBITaxon:1279038","l":"Novispirillum itersonii subsp. itersonii ATCC 12639","na":1,"nb":3,"a":[["pond-envo-00000033.html","pond"]],"b":[["NCBITaxon%3A189","Novispirillum itersonii"],["NCBITaxon%3A180199","Novispirillum itersonii subsp. itersonii"],["NCBITaxon%3A1279038","Novispirillum itersonii subsp. itersonii ATCC 12639"]]},{"id":"NCBITaxon:1281486","l":"Lactococcus formosensis","na":1,"nb":3,"a":[["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A1281486","Lactococcus formosensis"],["NCBITaxon%3A1850438","Lactococcus formosensis subsp. bovis"],["NCBITaxon%3A2906461","Lactococcus formosensis subsp. formosensis"]]},{"id":"NCBITaxon:1282664","l":"Streptococcus oralis subsp. tigurinus AZ_3a","na":1,"nb":3,"a":[["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1077464","Streptococcus oralis subsp. tigurinus"],["NCBITaxon%3A1282664","Streptococcus oralis subsp. tigurinus AZ_3a"]]},{"id":"NCBITaxon:1282665","l":"Streptococcus oralis subsp. tigurinus 1366","na":1,"nb":3,"a":[["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1077464","Streptococcus oralis subsp. tigurinus"],["NCBITaxon%3A1282665","Streptococcus oralis subsp. tigurinus 1366"]]},{"id":"NCBITaxon:1286329","l":"Escherichia coli TOP379","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286329","Escherichia coli TOP379"]]},{"id":"NCBITaxon:1286330","l":"Escherichia coli TOP382-1","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286330","Escherichia coli TOP382-1"]]},{"id":"NCBITaxon:1286331","l":"Escherichia coli TOP382-2","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286331","Escherichia coli TOP382-2"]]},{"id":"NCBITaxon:1286332","l":"Escherichia coli TOP382-3","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286332","Escherichia coli TOP382-3"]]},{"id":"NCBITaxon:1286333","l":"Escherichia coli TOP291","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286333","Escherichia coli TOP291"]]},{"id":"NCBITaxon:1286334","l":"Escherichia coli TOP293-1","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286334","Escherichia coli TOP293-1"]]},{"id":"NCBITaxon:1286335","l":"Escherichia coli TOP293-2","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286335","Escherichia coli TOP293-2"]]},{"id":"NCBITaxon:1286336","l":"Escherichia coli TOP293-3","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286336","Escherichia coli TOP293-3"]]},{"id":"NCBITaxon:1286337","l":"Escherichia coli TOP293-4","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286337","Escherichia coli TOP293-4"]]},{"id":"NCBITaxon:1286338","l":"Escherichia coli TOP498","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286338","Escherichia coli TOP498"]]},{"id":"NCBITaxon:1286339","l":"Escherichia coli TOP550-1","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286339","Escherichia coli TOP550-1"]]},{"id":"NCBITaxon:1286340","l":"Escherichia coli TOP550-2","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286340","Escherichia coli TOP550-2"]]},{"id":"NCBITaxon:1286341","l":"Escherichia coli TOP550-3","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286341","Escherichia coli TOP550-3"]]},{"id":"NCBITaxon:1286342","l":"Escherichia coli TOP550-4","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286342","Escherichia coli TOP550-4"]]},{"id":"NCBITaxon:1286343","l":"Escherichia coli TOP2386","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286343","Escherichia coli TOP2386"]]},{"id":"NCBITaxon:1286344","l":"Escherichia coli TOP2396-1","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286344","Escherichia coli TOP2396-1"]]},{"id":"NCBITaxon:1286345","l":"Escherichia coli TOP2396-2","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286345","Escherichia coli TOP2396-2"]]},{"id":"NCBITaxon:1286346","l":"Escherichia coli TOP2396-3","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286346","Escherichia coli TOP2396-3"]]},{"id":"NCBITaxon:1286347","l":"Escherichia coli TOP2515","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286347","Escherichia coli TOP2515"]]},{"id":"NCBITaxon:1292038","l":"Cutibacterium acnes PA2","na":3,"nb":1,"a":[["prostate-gland-bto-0001129.html","prostate gland"],["sebaceous-gland-bto-0001980.html","sebaceous gland"],["urethra-bto-0001426.html","urethra"]],"b":[["NCBITaxon%3A1292038","Cutibacterium acnes PA2"]]},{"id":"NCBITaxon:1292372","l":"Cutibacterium avidum TM16","na":3,"nb":1,"a":[["prostate-gland-bto-0001129.html","prostate gland"],["sebaceous-gland-bto-0001980.html","sebaceous gland"],["urethra-bto-0001426.html","urethra"]],"b":[["NCBITaxon%3A1292372","Cutibacterium avidum TM16"]]},{"id":"NCBITaxon:1293054","l":"Halanaerobium saccharolyticum subsp. saccharolyticum DSM 6643","na":1,"nb":3,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A43595","Halanaerobium saccharolyticum"],["NCBITaxon%3A267736","Halanaerobium saccharolyticum subsp. saccharolyticum"],["NCBITaxon%3A1293054","Halanaerobium saccharolyticum subsp. saccharolyticum DSM 6643"]]},{"id":"NCBITaxon:129578","l":"Oceanimonas baumannii","na":1,"nb":3,"a":[["brackish-water-body-envo-01001321.html","brackish water body"]],"b":[["NCBITaxon%3A164546","Cupriavidus taiwanensis"],["NCBITaxon%3A977880","Cupriavidus taiwanensis LMG 19424"],["NCBITaxon%3A129578","Oceanimonas baumannii"]]},{"id":"NCBITaxon:1296536","l":"Enterobacter hormaechei subsp. xiangfangensis","na":1,"nb":3,"a":[["fibroblast-bto-0000452.html","fibroblast"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A158836","Enterobacter hormaechei"],["NCBITaxon%3A1296536","Enterobacter hormaechei subsp. xiangfangensis"]]},{"id":"NCBITaxon:1297579","l":"Fusobacterium nucleatum CC53","na":3,"nb":1,"a":[["colorectum-bto-0001613.html","colorectum"],["gut-mucosa-bto-0000546.html","gut mucosa"],["lymph-node-bto-0000784.html","lymph node"]],"b":[["NCBITaxon%3A1297579","Fusobacterium nucleatum CC53"]]},{"id":"NCBITaxon:1297857","l":"Streptococcus oralis subsp. dentisani 7747","na":1,"nb":3,"a":[["tooth-bto-0000397.html","tooth"]],"b":[["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1458253","Streptococcus oralis subsp. dentisani"],["NCBITaxon%3A1297857","Streptococcus oralis subsp. dentisani 7747"]]},{"id":"NCBITaxon:1298856","l":"Sphingomonas sp. URHD0007","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1298856","Sphingomonas sp. URHD0007"]]},{"id":"NCBITaxon:1298857","l":"Candidatus Solirubrobacter pratensis","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1298857","Candidatus Solirubrobacter pratensis"]]},{"id":"NCBITaxon:1298861","l":"Lysobacter sp. URHA0019","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1298861","Lysobacter sp. URHA0019"]]},{"id":"NCBITaxon:1298862","l":"Caulobacter sp. URHA0033","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1298862","Caulobacter sp. URHA0033"]]},{"id":"NCBITaxon:1298863","l":"Marmoricola sp. URHB0036","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1298863","Marmoricola sp. URHB0036"]]},{"id":"NCBITaxon:1298864","l":"Mycobacterium sp. URHD0025","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1298864","Mycobacterium sp. URHD0025"]]},{"id":"NCBITaxon:1302620","l":"Cellulomonas sp. URHD0024","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1302620","Cellulomonas sp. URHD0024"]]},{"id":"NCBITaxon:1302863","l":"Streptococcus cristatus AS 1.3089","na":1,"nb":3,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["NCBITaxon%3A45634","Streptococcus cristatus"],["NCBITaxon%3A1302863","Streptococcus cristatus AS 1.3089"],["NCBITaxon%3A28037","Streptococcus mitis"]]},{"id":"NCBITaxon:1308539","l":"Klebsiella pneumoniae subsp. pneumoniae ATCC 43816","na":3,"nb":1,"a":[["j-774a-1-cell-bto-0000804.html","J-774A.1 cell"],["macrophage-cell-line-bto-0002278.html","macrophage cell line"],["raw-264-7-cell-bto-0003292.html","RAW-264.7 cell"]],"b":[["NCBITaxon%3A1308539","Klebsiella pneumoniae subsp. pneumoniae ATCC 43816"]]},{"id":"NCBITaxon:131112","l":"Arcanobacterium phocae","na":3,"nb":1,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A131112","Arcanobacterium phocae"]]},{"id":"NCBITaxon:1336208","l":"Roseomonas gilardii subsp. rosea ATCC BAA-691","na":1,"nb":3,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A257708","Roseomonas gilardii"],["NCBITaxon%3A243956","Roseomonas gilardii subsp. rosea"],["NCBITaxon%3A1336208","Roseomonas gilardii subsp. rosea ATCC BAA-691"]]},{"id":"NCBITaxon:134537","l":"Paraburkholderia fungorum","na":1,"nb":3,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["NCBITaxon%3A36773","Burkholderia sp."],["NCBITaxon%3A134537","Paraburkholderia fungorum"],["NCBITaxon%3A1218077","Paraburkholderia fungorum NBRC 102489"]]},{"id":"NCBITaxon:1348655","l":"Lactococcus cremoris subsp. cremoris NBRC 100676","na":1,"nb":3,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"]],"b":[["NCBITaxon%3A1359","Lactococcus cremoris"],["NCBITaxon%3A2816960","Lactococcus cremoris subsp. cremoris"],["NCBITaxon%3A1348655","Lactococcus cremoris subsp. cremoris NBRC 100676"]]},{"id":"NCBITaxon:137357","l":"Ligilactobacillus equi","na":1,"nb":3,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A137357","Ligilactobacillus equi"],["NCBITaxon%3A1392007","Ligilactobacillus equi DPC 6820"],["NCBITaxon%3A1423740","Ligilactobacillus equi DSM 15833 = JCM 10991"]]},{"id":"NCBITaxon:1380346","l":"Streptomyces sp. URHA0041","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1380346","Streptomyces sp. URHA0041"]]},{"id":"NCBITaxon:1380349","l":"Micromonosporaceae bacterium URHE0070","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1380349","Micromonosporaceae bacterium URHE0070"]]},{"id":"NCBITaxon:1380350","l":"Mesorhizobium sp. URHC0008","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1380350","Mesorhizobium sp. URHC0008"]]},{"id":"NCBITaxon:1380351","l":"Mesorhizobium sp. URHB0007","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1380351","Mesorhizobium sp. URHB0007"]]},{"id":"NCBITaxon:1380352","l":"Bradyrhizobium sp. URHA0013","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1380352","Bradyrhizobium sp. URHA0013"]]},{"id":"NCBITaxon:1380353","l":"Geodermatophilaceae bacterium URHB0062","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1380353","Geodermatophilaceae bacterium URHB0062"]]},{"id":"NCBITaxon:1380354","l":"Cellulomonas sp. URHE0023","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1380354","Cellulomonas sp. URHE0023"]]},{"id":"NCBITaxon:1380355","l":"Bradyrhizobium sp. URHD0069","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1380355","Bradyrhizobium sp. URHD0069"]]},{"id":"NCBITaxon:1380356","l":"Blastococcus sp. URHD0036","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1380356","Blastococcus sp. URHD0036"]]},{"id":"NCBITaxon:1380357","l":"Rhodospirillales bacterium URHD0017","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1380357","Rhodospirillales bacterium URHD0017"]]},{"id":"NCBITaxon:1380385","l":"Variovorax sp. URHB0020","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1380385","Variovorax sp. URHB0020"]]},{"id":"NCBITaxon:1380386","l":"Mycobacterium sp. URHB0044","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1380386","Mycobacterium sp. URHB0044"]]},{"id":"NCBITaxon:1380388","l":"Nocardioides sp. URHA0032","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1380388","Nocardioides sp. URHA0032"]]},{"id":"NCBITaxon:1380389","l":"Sphingomonas sp. URHD0057","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1380389","Sphingomonas sp. URHD0057"]]},{"id":"NCBITaxon:138073","l":"Candidatus Regiella insecticola","na":1,"nb":3,"a":[["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["NCBITaxon%3A138073","Candidatus Regiella insecticola"],["NCBITaxon%3A1005043","Candidatus Regiella insecticola 5.15"],["NCBITaxon%3A663321","Candidatus Regiella insecticola LSR1"]]},{"id":"NCBITaxon:1387353","l":"Paludisphaera borealis","na":3,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["filament-bto-0000463.html","filament"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A1387353","Paludisphaera borealis"]]},{"id":"NCBITaxon:1389489","l":"Leifsonia xyli subsp. cynodontis DSM 46306","na":1,"nb":3,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A1575","Leifsonia xyli"],["NCBITaxon%3A31966","Leifsonia xyli subsp. cynodontis"],["NCBITaxon%3A1389489","Leifsonia xyli subsp. cynodontis DSM 46306"]]},{"id":"NCBITaxon:1390075","l":"Cronobacter turicensis z508","na":1,"nb":3,"a":[["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A1390075","Cronobacter turicensis z508"],["NCBITaxon%3A357233","Siccibacter turicensis"],["NCBITaxon%3A1388748","Siccibacter turicensis LMG 23730"]]},{"id":"NCBITaxon:1397698","l":"Exiguobacterium artemiae 7-3","na":3,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"],["water-ice-envo-01000277.html","water ice"],["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A1397698","Exiguobacterium artemiae 7-3"]]},{"id":"NCBITaxon:1406823","l":"Franconibacter pulveris 601","na":1,"nb":3,"a":[["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A435910","Franconibacter pulveris"],["NCBITaxon%3A1406823","Franconibacter pulveris 601"],["NCBITaxon%3A1121863","Franconibacter pulveris DSM 19144"]]},{"id":"NCBITaxon:1408286","l":"Parvimonas micra A293","na":3,"nb":1,"a":[["alveolar-bone-bto-0001383.html","alveolar bone"],["gingiva-bto-0000519.html","gingiva"],["tooth-bto-0000397.html","tooth"]],"b":[["NCBITaxon%3A1408286","Parvimonas micra A293"]]},{"id":"NCBITaxon:1408360","l":"Campylobacter jejuni subsp. doylei ATCC 49349","na":1,"nb":3,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A197","Campylobacter jejuni"],["NCBITaxon%3A32021","Campylobacter jejuni subsp. doylei"],["NCBITaxon%3A1408360","Campylobacter jejuni subsp. doylei ATCC 49349"]]},{"id":"NCBITaxon:1413215","l":"Geobacillus thermodenitrificans subsp. thermodenitrificans DSM 465","na":1,"nb":3,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A33940","Geobacillus thermodenitrificans"],["NCBITaxon%3A1511749","Geobacillus thermodenitrificans subsp. thermodenitrificans"],["NCBITaxon%3A1413215","Geobacillus thermodenitrificans subsp. thermodenitrificans DSM 465"]]},{"id":"NCBITaxon:143224","l":"Zobellia uliginosa","na":3,"nb":1,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A143224","Zobellia uliginosa"]]},{"id":"NCBITaxon:1452724","l":"Flavobacterium psychrophilum FPG3","na":1,"nb":3,"a":[["kidney-bto-0000671.html","kidney"]],"b":[["NCBITaxon%3A96345","Flavobacterium psychrophilum"],["NCBITaxon%3A1121894","Flavobacterium psychrophilum DSM 3660 = ATCC 49418"],["NCBITaxon%3A1452724","Flavobacterium psychrophilum FPG3"]]},{"id":"NCBITaxon:1454","l":"Schinkia azotoformans","na":1,"nb":3,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A1454","Schinkia azotoformans"],["NCBITaxon%3A1131731","Schinkia azotoformans LMG 9581"],["NCBITaxon%3A1348973","Schinkia azotoformans MEV2011"]]},{"id":"NCBITaxon:1458","l":"Metabacillus fastidiosus","na":1,"nb":3,"a":[["animal-waste-material-envo-00002276.html","animal waste material"]],"b":[["NCBITaxon%3A1458","Metabacillus fastidiosus"],["NCBITaxon%3A1348628","Metabacillus fastidiosus NBRC 101226"],["NCBITaxon%3A83428","uncultured Bacillus sp."]]},{"id":"NCBITaxon:1482","l":"Virgibacillus halodenitrificans","na":1,"nb":3,"a":[["organic-waste-material-envo-00002873.html","organic waste material"]],"b":[["NCBITaxon%3A1482","Virgibacillus halodenitrificans"],["NCBITaxon%3A1196028","Virgibacillus halodenitrificans 1806"],["NCBITaxon%3A1236975","Virgibacillus halodenitrificans JCM 12304"]]},{"id":"NCBITaxon:149712","l":"Desulfovirga adipica","na":3,"nb":1,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["cultivated-environment-envo-01000311.html","cultivated environment"]],"b":[["NCBITaxon%3A149712","Desulfovirga adipica"]]},{"id":"NCBITaxon:1501329","l":"Oribacterium parvum","na":1,"nb":3,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A1501329","Oribacterium parvum"],["NCBITaxon%3A796943","Oribacterium parvum ACB1"],["NCBITaxon%3A796945","Oribacterium parvum ACB8"]]},{"id":"NCBITaxon:1503","l":"Gottschalkia purinilytica","na":3,"nb":1,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A1503","Gottschalkia purinilytica"]]},{"id":"NCBITaxon:1514140","l":"Trieres chinensis","na":3,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["estuarine-biome-envo-01000020.html","estuarine biome"],["shoreline-envo-00000486.html","shoreline"]],"b":[["NCBITaxon%3A1514140","Trieres chinensis"]]},{"id":"NCBITaxon:151416","l":"Allobosea vestrisii","na":1,"nb":3,"a":[["hospital-envo-00002173.html","hospital"]],"b":[["NCBITaxon%3A151416","Allobosea vestrisii"],["NCBITaxon%3A1212487","Allobosea vestrisii 34635"],["NCBITaxon%3A2665495","Phenylobacterium terrae"]]},{"id":"NCBITaxon:152331","l":"Lentilactobacillus parabuchneri","na":1,"nb":3,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["NCBITaxon%3A152331","Lentilactobacillus parabuchneri"],["NCBITaxon%3A1423784","Lentilactobacillus parabuchneri DSM 5707 = NBRC 107865"],["NCBITaxon%3A264697","Peribacillus muralis"]]},{"id":"NCBITaxon:1530","l":"Clostridium carnis","na":3,"nb":1,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["NCBITaxon%3A1530","Clostridium carnis"]]},{"id":"NCBITaxon:1541063","l":"Prolixibacter denitrificans","na":3,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"],["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"]],"b":[["NCBITaxon%3A1541063","Prolixibacter denitrificans"]]},{"id":"NCBITaxon:158500","l":"Novosphingobium resinovorum","na":1,"nb":3,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A1495645","Xanthomarina arctica"],["NCBITaxon%3A158500","Novosphingobium resinovorum"],["NCBITaxon%3A284035","Streptomyces lienomycini"]]},{"id":"NCBITaxon:1591","l":"Lactobacillus sp.","na":3,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A1591","Lactobacillus sp."]]},{"id":"NCBITaxon:161156","l":"Thermodesulfobacterium hydrogeniphilum","na":3,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["inlet-envo-00000475.html","inlet"],["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A161156","Thermodesulfobacterium hydrogeniphilum"]]},{"id":"NCBITaxon:161528","l":"Erythrobacter sp. SD-21","na":3,"nb":1,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["NCBITaxon%3A161528","Erythrobacter sp. SD-21"]]},{"id":"NCBITaxon:161879","l":"Corynebacterium kroppenstedtii","na":1,"nb":3,"a":[["breast-bto-0000149.html","breast"]],"b":[["NCBITaxon%3A161879","Corynebacterium kroppenstedtii"],["NCBITaxon%3A645127","Corynebacterium kroppenstedtii DSM 44385"],["NCBITaxon%3A2736648","Corynebacterium kroppenstedtii subsp. demodicis"]]},{"id":"NCBITaxon:1625","l":"Fructilactobacillus sanfranciscensis","na":1,"nb":3,"a":[["cropland-biome-envo-01000245.html","cropland biome"]],"b":[["NCBITaxon%3A1625","Fructilactobacillus sanfranciscensis"],["NCBITaxon%3A1423800","Fructilactobacillus sanfranciscensis DSM 20451"],["NCBITaxon%3A714313","Fructilactobacillus sanfranciscensis TMW 1.1304"]]},{"id":"NCBITaxon:164757","l":"Mycobacterium sp. JLS","na":3,"nb":1,"a":[["superfund-site-envo-00002156.html","Superfund site"],["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A164757","Mycobacterium sp. JLS"]]},{"id":"NCBITaxon:1651218","l":"Delftia deserti","na":1,"nb":3,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A1651218","Delftia deserti"],["NCBITaxon%3A1199156","Hirschia litorea"],["NCBITaxon%3A590593","Iodobacter arcticus"]]},{"id":"NCBITaxon:1657","l":"Actinobaculum suis","na":1,"nb":3,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["NCBITaxon%3A1657","Actinobaculum suis"],["NCBITaxon%3A1408","Bacillus pumilus"],["NCBITaxon%3A29316","Schaalia hyovaginalis"]]},{"id":"NCBITaxon:1683","l":"Bifidobacterium angulatum","na":1,"nb":3,"a":[["brain-bto-0000142.html","brain"]],"b":[["NCBITaxon%3A1683","Bifidobacterium angulatum"],["NCBITaxon%3A518635","Bifidobacterium angulatum DSM 20098 = JCM 7096"],["NCBITaxon%3A1357382","Bifidobacterium angulatum F16_22"]]},{"id":"NCBITaxon:1690","l":"Bifidobacterium pseudolongum subsp. globosum","na":1,"nb":3,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["NCBITaxon%3A1694","Bifidobacterium pseudolongum"],["NCBITaxon%3A1690","Bifidobacterium pseudolongum subsp. globosum"],["NCBITaxon%3A1410605","Bifidobacterium pseudolongum subsp. globosum DSM 20092"]]},{"id":"NCBITaxon:169760","l":"Paenibacillus stellifer","na":3,"nb":1,"a":[["factory-envo-01000536.html","factory"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A169760","Paenibacillus stellifer"]]},{"id":"NCBITaxon:1697779","l":"Clostridia bacterium UC5.1-1F7","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697779","Clostridia bacterium UC5.1-1F7"]]},{"id":"NCBITaxon:1697780","l":"Clostridia bacterium UC5.1-1D2","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697780","Clostridia bacterium UC5.1-1D2"]]},{"id":"NCBITaxon:1697781","l":"Clostridia bacterium UC5.1-2E3","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697781","Clostridia bacterium UC5.1-2E3"]]},{"id":"NCBITaxon:1697782","l":"Clostridia bacterium UC5.1-1A9","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697782","Clostridia bacterium UC5.1-1A9"]]},{"id":"NCBITaxon:1697783","l":"Clostridia bacterium UC5.1-1F8","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697783","Clostridia bacterium UC5.1-1F8"]]},{"id":"NCBITaxon:1697784","l":"Clostridia bacterium UC5.1-1D4","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697784","Clostridia bacterium UC5.1-1D4"]]},{"id":"NCBITaxon:1697785","l":"Clostridia bacterium UC5.1-2D9","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697785","Clostridia bacterium UC5.1-2D9"]]},{"id":"NCBITaxon:1697786","l":"Clostridia bacterium UC5.1-2E1","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697786","Clostridia bacterium UC5.1-2E1"]]},{"id":"NCBITaxon:1703","l":"Brevibacterium linens","na":1,"nb":3,"a":[["animal-waste-material-envo-00002276.html","animal waste material"]],"b":[["NCBITaxon%3A273384","Brevibacterium aurantiacum"],["NCBITaxon%3A1703","Brevibacterium linens"],["NCBITaxon%3A1255617","Brevibacterium linens ATCC 9172"]]},{"id":"NCBITaxon:170861","l":"Methanosarcina lacustris","na":1,"nb":3,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A170861","Methanosarcina lacustris"],["NCBITaxon%3A1434111","Methanosarcina lacustris Z-7289"],["NCBITaxon%3A1434112","Methanosarcina lacustris ZS"]]},{"id":"NCBITaxon:171674","l":"Inquilinus limosus","na":1,"nb":3,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"]],"b":[["NCBITaxon%3A171674","Inquilinus limosus"],["NCBITaxon%3A1122125","Inquilinus limosus DSM 16000"],["NCBITaxon%3A1398085","Inquilinus limosus MP06"]]},{"id":"NCBITaxon:1724","l":"Corynebacterium renale","na":3,"nb":1,"a":[["water-body-envo-00000063.html","water body"],["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A1724","Corynebacterium renale"]]},{"id":"NCBITaxon:173364","l":"Brachybacterium sacelli","na":1,"nb":3,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A173364","Brachybacterium sacelli"],["NCBITaxon%3A1756043","Cypionkella sinensis"],["NCBITaxon%3A1636843","Paenibacillus wenxiniae"]]},{"id":"NCBITaxon:173737","l":"Cytophaga sp. MBIC04693","na":3,"nb":1,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["NCBITaxon%3A173737","Cytophaga sp. MBIC04693"]]},{"id":"NCBITaxon:1796616","l":"Blautia pseudococcoides","na":3,"nb":1,"a":[["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["secretion-bto-0002979.html","secretion"]],"b":[["NCBITaxon%3A1796616","Blautia pseudococcoides"]]},{"id":"NCBITaxon:180542","l":"Salinisphaera shabanensis","na":1,"nb":3,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A180542","Salinisphaera shabanensis"],["NCBITaxon%3A1033802","Salinisphaera shabanensis E1L3A"],["NCBITaxon%3A1304276","Salinisphaera shabanensis T35B1"]]},{"id":"NCBITaxon:1810840","l":"Piscirickettsiaceae bacterium NZ-RLO1","na":3,"nb":1,"a":[["bhk-21-cell-bto-0000120.html","BHK-21 cell"],["endothelial-progenitor-cell-bto-0004093.html","endothelial progenitor cell"],["sf-21-cell-bto-0001196.html","SF-21 cell"]],"b":[["NCBITaxon%3A1810840","Piscirickettsiaceae bacterium NZ-RLO1"]]},{"id":"NCBITaxon:183","l":"Leptonema illini","na":1,"nb":3,"a":[["mud-envo-01000001.html","mud"]],"b":[["NCBITaxon%3A183","Leptonema illini"],["NCBITaxon%3A929563","Leptonema illini DSM 21528"],["NCBITaxon%3A330706","Leptonema illini serovar Habaki"]]},{"id":"NCBITaxon:1834196","l":"Lachnoclostridium sp. YL32","na":3,"nb":1,"a":[["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["secretion-bto-0002979.html","secretion"]],"b":[["NCBITaxon%3A1834196","Lachnoclostridium sp. YL32"]]},{"id":"NCBITaxon:1834198","l":"Hungateiclostridiaceae bacterium KB18","na":3,"nb":1,"a":[["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["secretion-bto-0002979.html","secretion"]],"b":[["NCBITaxon%3A1834198","Hungateiclostridiaceae bacterium KB18"]]},{"id":"NCBITaxon:1834205","l":"Burkholderiales bacterium YL45","na":3,"nb":1,"a":[["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["secretion-bto-0002979.html","secretion"]],"b":[["NCBITaxon%3A1834205","Burkholderiales bacterium YL45"]]},{"id":"NCBITaxon:1834207","l":"Erysipelotrichaceae bacterium I46","na":3,"nb":1,"a":[["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["secretion-bto-0002979.html","secretion"]],"b":[["NCBITaxon%3A1834207","Erysipelotrichaceae bacterium I46"]]},{"id":"NCBITaxon:1836","l":"Saccharopolyspora erythraea","na":1,"nb":3,"a":[["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["NCBITaxon%3A1836","Saccharopolyspora erythraea"],["NCBITaxon%3A1382595","Saccharopolyspora erythraea D"],["NCBITaxon%3A405948","Saccharopolyspora erythraea NRRL 2338"]]},{"id":"NCBITaxon:1852","l":"Saccharomonospora viridis","na":1,"nb":3,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A40988","Saccharomonospora azurea"],["NCBITaxon%3A1852","Saccharomonospora viridis"],["NCBITaxon%3A471857","Saccharomonospora viridis DSM 43017"]]},{"id":"NCBITaxon:1871618","l":"Gracilibacillus sp.","na":3,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"],["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["NCBITaxon%3A1871618","Gracilibacillus sp."]]},{"id":"NCBITaxon:1872119","l":"Acidobacterium sp.","na":3,"nb":1,"a":[["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"],["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A1872119","Acidobacterium sp."]]},{"id":"NCBITaxon:1872700","l":"Virgibacillus sp.","na":3,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"],["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["NCBITaxon%3A1872700","Virgibacillus sp."]]},{"id":"NCBITaxon:1874361","l":"Idiomarina sp.","na":3,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"],["saline-water-body-envo-01001319.html","saline water body"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["NCBITaxon%3A1874361","Idiomarina sp."]]},{"id":"NCBITaxon:188906","l":"Jannaschia helgolandensis","na":3,"nb":1,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["NCBITaxon%3A188906","Jannaschia helgolandensis"]]},{"id":"NCBITaxon:189518","l":"Leptospira interrogans serovar Lai str. 56601","na":3,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A189518","Leptospira interrogans serovar Lai str. 56601"]]},{"id":"NCBITaxon:1896336","l":"Citrobacter sp.","na":3,"nb":1,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A1896336","Citrobacter sp."]]},{"id":"NCBITaxon:191292","l":"Rhodococcus aetherivorans","na":1,"nb":3,"a":[["bcp-1-cell-bto-0002728.html","BCP-1 cell"]],"b":[["NCBITaxon%3A191292","Rhodococcus aetherivorans"],["NCBITaxon%3A1036179","Rhodococcus aetherivorans I24"],["NCBITaxon%3A194249","uncultured Rhodococcus sp."]]},{"id":"NCBITaxon:1935000","l":"Pseudomonas sp. JdFR-91","na":3,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"]],"b":[["NCBITaxon%3A1935000","Pseudomonas sp. JdFR-91"]]},{"id":"NCBITaxon:195064","l":"Ectothiorhodospira mobilis","na":3,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["NCBITaxon%3A195064","Ectothiorhodospira mobilis"]]},{"id":"NCBITaxon:2030","l":"Kibdelosporangium aridum","na":1,"nb":3,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A2030","Kibdelosporangium aridum"],["NCBITaxon%3A145995","Kibdelosporangium aridum subsp. aridum"],["NCBITaxon%3A145996","Kibdelosporangium aridum subsp. largum"]]},{"id":"NCBITaxon:203124","l":"Trichodesmium erythraeum IMS101","na":3,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["coastal-water-body-envo-02000049.html","coastal water body"],["marine-neritic-zone-envo-00000206.html","marine neritic zone"]],"b":[["NCBITaxon%3A203124","Trichodesmium erythraeum IMS101"]]},{"id":"NCBITaxon:2087","l":"Anaeroplasma abactoclasticum","na":3,"nb":1,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["pig-manure-envo-00003860.html","pig manure"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["NCBITaxon%3A2087","Anaeroplasma abactoclasticum"]]},{"id":"NCBITaxon:212042","l":"Anaplasma phagocytophilum str. HZ","na":3,"nb":1,"a":[["hl-60-cell-bto-0000738.html","HL-60 cell"],["leukocyte-bto-0000751.html","leukocyte"],["promyelocytic-leukemia-cell-line-bto-0002489.html","promyelocytic leukemia cell line"]],"b":[["NCBITaxon%3A212042","Anaplasma phagocytophilum str. HZ"]]},{"id":"NCBITaxon:2162","l":"Methanobacterium formicicum","na":1,"nb":3,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A2162","Methanobacterium formicicum"],["NCBITaxon%3A1204725","Methanobacterium formicicum DSM 3637"],["NCBITaxon%3A1300163","Methanobacterium formicicum JCM 10132"]]},{"id":"NCBITaxon:216595","l":"","na":3,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["human-construction-envo-00000070.html","human construction"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["NCBITaxon%3A216595","Pseudomonas [fluorescens] SBW25"]]},{"id":"NCBITaxon:216778","l":"Stenotrophomonas rhizophila","na":1,"nb":3,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A216778","Stenotrophomonas rhizophila"],["NCBITaxon%3A1255680","Stenotrophomonas rhizophila PCA13"]]},{"id":"NCBITaxon:220341","l":"Salmonella enterica subsp. enterica serovar Typhi str. CT18","na":3,"nb":1,"a":[["bone-marrow-bto-0000141.html","bone marrow"],["liver-bto-0000759.html","liver"],["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A220341","Salmonella enterica subsp. enterica serovar Typhi str. CT18"]]},{"id":"NCBITaxon:222805","l":"Mycobacterium intracellulare subsp. chimaera","na":1,"nb":3,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["NCBITaxon%3A1767","Mycobacterium intracellulare"],["NCBITaxon%3A222805","Mycobacterium intracellulare subsp. chimaera"],["NCBITaxon%3A1203599","Mycobacterium intracellulare subsp. yongonense"]]},{"id":"NCBITaxon:228603","l":"Hoylesella shahii","na":1,"nb":3,"a":[["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["NCBITaxon%3A228603","Hoylesella shahii"],["NCBITaxon%3A1122991","Hoylesella shahii DSM 15611 = JCM 12083"],["NCBITaxon%3A1410035","Hoylesella shahii HMP_JCVI_SC0182"]]},{"id":"NCBITaxon:228604","l":"Segatella salivae","na":1,"nb":3,"a":[["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["NCBITaxon%3A228604","Segatella salivae"],["NCBITaxon%3A888832","Segatella salivae DSM 15606"],["NCBITaxon%3A1395125","Segatella salivae F0493"]]},{"id":"NCBITaxon:2423","l":"Fervidobacterium islandicum","na":3,"nb":1,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["feather-bto-0000447.html","feather"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A2423","Fervidobacterium islandicum"]]},{"id":"NCBITaxon:243265","l":"Photorhabdus laumondii subsp. laumondii TTO1","na":1,"nb":3,"a":[["carcass-bto-0001965.html","carcass"]],"b":[["NCBITaxon%3A2218628","Photorhabdus laumondii"],["NCBITaxon%3A141679","Photorhabdus laumondii subsp. laumondii"],["NCBITaxon%3A243265","Photorhabdus laumondii subsp. laumondii TTO1"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK1622","na":3,"nb":1,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["NCBITaxon%3A246197","Myxococcus xanthus DK 1622"]]},{"id":"NCBITaxon:248026","l":"Cupriavidus pinatubonensis","na":1,"nb":3,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A1220023","Halolamina salina"],["NCBITaxon%3A248026","Cupriavidus pinatubonensis"],["NCBITaxon%3A264198","Cupriavidus pinatubonensis JMP134"]]},{"id":"NCBITaxon:250","l":"Chryseobacterium gleum","na":1,"nb":3,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A250","Chryseobacterium gleum"],["NCBITaxon%3A525257","Chryseobacterium gleum ATCC 35910"],["NCBITaxon%3A1871047","Chryseobacterium sp."]]},{"id":"NCBITaxon:257501","l":"Candidatus Chlorotrichoides halophilum","na":3,"nb":1,"a":[["pond-envo-00000033.html","pond"],["saline-evaporation-pond-envo-00000055.html","saline evaporation pond"],["microbial-mat-envo-01000008.html","microbial mat"]],"b":[["NCBITaxon%3A257501","Candidatus Chlorotrichoides halophilum"]]},{"id":"NCBITaxon:257984","l":"Glutamicibacter mysorens","na":1,"nb":3,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A257984","Glutamicibacter mysorens"],["NCBITaxon%3A1216975","Glutamicibacter mysorens NBRC 103060"],["NCBITaxon%3A37929","Glutamicibacter nicotianae"]]},{"id":"NCBITaxon:267736","l":"Halanaerobium saccharolyticum subsp. saccharolyticum","na":1,"nb":3,"a":[["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["NCBITaxon%3A43595","Halanaerobium saccharolyticum"],["NCBITaxon%3A267736","Halanaerobium saccharolyticum subsp. saccharolyticum"],["NCBITaxon%3A1293054","Halanaerobium saccharolyticum subsp. saccharolyticum DSM 6643"]]},{"id":"NCBITaxon:272951","l":"Rickettsia sibirica 246","na":1,"nb":3,"a":[["endothelial-cell-bto-0001176.html","endothelial cell"]],"b":[["NCBITaxon%3A35793","Rickettsia sibirica"],["NCBITaxon%3A272951","Rickettsia sibirica 246"],["NCBITaxon%3A1144281","Rickettsia sibirica subsp. sibirica"]]},{"id":"NCBITaxon:28136","l":"Segatella oulorum","na":1,"nb":3,"a":[["crevice-envo-01000294.html","crevice"]],"b":[["NCBITaxon%3A28136","Segatella oulorum"],["NCBITaxon%3A702438","Segatella oulorum F0390"],["NCBITaxon%3A1236497","Segatella oulorum JCM 14966"]]},{"id":"NCBITaxon:28139","l":"Rikenella microfusus","na":1,"nb":3,"a":[["lagoon-envo-00000038.html","lagoon"]],"b":[["NCBITaxon%3A28139","Rikenella microfusus"],["NCBITaxon%3A880526","Rikenella microfusus DSM 15922"],["NCBITaxon%3A28136","Segatella oulorum"]]},{"id":"NCBITaxon:28232","l":"Geobacter metallireducens","na":1,"nb":3,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A28232","Geobacter metallireducens"],["NCBITaxon%3A269799","Geobacter metallireducens GS-15"],["NCBITaxon%3A691164","Geobacter metallireducens RCH3"]]},{"id":"NCBITaxon:286698","l":"Geobacter psychrophilus","na":3,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["cultivated-environment-envo-01000311.html","cultivated environment"]],"b":[["NCBITaxon%3A286698","Geobacter psychrophilus"]]},{"id":"NCBITaxon:288","l":"Pseudoalteromonas atlantica","na":1,"nb":3,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A1871086","Brevundimonas sp."],["NCBITaxon%3A288","Pseudoalteromonas atlantica"],["NCBITaxon%3A306","Pseudomonas sp."]]},{"id":"NCBITaxon:290402","l":"Clostridium beijerinckii (strain ATCC 51743 / NCIMB 8052)","na":1,"nb":3,"a":[["garden-soil-envo-00002263.html","garden soil"]],"b":[["NCBITaxon%3A1488","Clostridium acetobutylicum"],["NCBITaxon%3A272562","Clostridium acetobutylicum ATCC 824"],["NCBITaxon%3A290402","Clostridium beijerinckii NCIMB 8052"]]},{"id":"NCBITaxon:291645","l":"Bacteroides nordii","na":1,"nb":3,"a":[["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["NCBITaxon%3A291645","Bacteroides nordii"],["NCBITaxon%3A997884","Bacteroides nordii CL02T12C05"],["NCBITaxon%3A1203608","Bacteroides nordii WAL 11050 = JCM 12987"]]},{"id":"NCBITaxon:29320","l":"Paenarthrobacter nicotinovorans","na":1,"nb":3,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A29320","Paenarthrobacter nicotinovorans"],["NCBITaxon%3A1304876","Paenarthrobacter nicotinovorans 231Sha2.1M6"],["NCBITaxon%3A1292042","Paenarthrobacter nicotinovorans 26Cvi1.1E"]]},{"id":"NCBITaxon:29321","l":"Corynebacterium otitidis","na":1,"nb":3,"a":[["middle-ear-bto-0002099.html","middle ear"]],"b":[["NCBITaxon%3A29321","Corynebacterium otitidis"],["NCBITaxon%3A883169","Corynebacterium otitidis ATCC 51513"],["NCBITaxon%3A1978491","Marinococcus sp."]]},{"id":"NCBITaxon:29370","l":"Lacrimispora sphenoides","na":1,"nb":3,"a":[["emulsion-envo-00010506.html","emulsion"]],"b":[["NCBITaxon%3A29370","Lacrimispora sphenoides"],["NCBITaxon%3A1298920","Lacrimispora sphenoides DSM 4024"],["NCBITaxon%3A1297793","Lacrimispora sphenoides JCM 1415"]]},{"id":"NCBITaxon:29419","l":"Helicobacter canis","na":1,"nb":3,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"]],"b":[["NCBITaxon%3A29419","Helicobacter canis"],["NCBITaxon%3A1357399","Helicobacter canis NCTC 12740"],["NCBITaxon%3A218","Helicobacter sp."]]},{"id":"NCBITaxon:29535","l":"Cytophaga sp.","na":3,"nb":1,"a":[["bay-envo-00000032.html","bay"],["lagoon-envo-00000038.html","lagoon"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["NCBITaxon%3A29535","Cytophaga sp."]]},{"id":"NCBITaxon:295419","l":"Rubellimicrobium thermophilum","na":1,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A2509153","Rubellimicrobium sp."],["NCBITaxon%3A295419","Rubellimicrobium thermophilum"],["NCBITaxon%3A1123069","Rubellimicrobium thermophilum DSM 16684"]]},{"id":"NCBITaxon:297246","l":"Legionella pneumophila str. Paris","na":3,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"],["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A297246","Legionella pneumophila str. Paris"]]},{"id":"NCBITaxon:313589","l":"Janibacter sp. HTCC2649","na":3,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["bulk-soil-envo-00005802.html","bulk soil"],["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A313589","Janibacter sp. HTCC2649"]]},{"id":"NCBITaxon:314260","l":"Parvularcula bermudensis HTCC2503","na":3,"nb":1,"a":[["small-river-biome-envo-00000890.html","small river biome"],["stromatolite-mat-envo-00002157.html","stromatolite mat"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["NCBITaxon%3A314260","Parvularcula bermudensis HTCC2503"]]},{"id":"NCBITaxon:317936","l":"Nostoc sp. PCC 7107","na":3,"nb":1,"a":[["bar-envo-00000167.html","bar"],["pond-envo-00000033.html","pond"],["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A317936","Nostoc sp. PCC 7107"]]},{"id":"NCBITaxon:31994","l":"Beijerinckia indica subsp. indica","na":1,"nb":3,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A533","Beijerinckia indica"],["NCBITaxon%3A31994","Beijerinckia indica subsp. indica"],["NCBITaxon%3A395963","Beijerinckia indica subsp. indica ATCC 9039"]]},{"id":"NCBITaxon:31998","l":"Methylobacterium radiotolerans","na":1,"nb":3,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A410","Methylobacterium organophilum"],["NCBITaxon%3A31998","Methylobacterium radiotolerans"],["NCBITaxon%3A426355","Methylobacterium radiotolerans JCM 2831"]]},{"id":"NCBITaxon:322509","l":"Dietzia kunjamensis","na":1,"nb":3,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A322509","Dietzia kunjamensis"],["NCBITaxon%3A2792887","Dietzia kunjamensis subsp. kunjamensis"],["NCBITaxon%3A498198","Dietzia kunjamensis subsp. schimae"]]},{"id":"NCBITaxon:326522","l":"Neisseria animaloris","na":3,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["foot-bto-0000476.html","foot"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"]],"b":[["NCBITaxon%3A326522","Neisseria animaloris"]]},{"id":"NCBITaxon:33036","l":"Anaerococcus tetradius","na":1,"nb":3,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["NCBITaxon%3A33034","Anaerococcus prevotii"],["NCBITaxon%3A33036","Anaerococcus tetradius"],["NCBITaxon%3A525255","Anaerococcus tetradius ATCC 35098"]]},{"id":"NCBITaxon:33932","l":"Sutcliffiella cohnii","na":1,"nb":3,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["NCBITaxon%3A33932","Sutcliffiella cohnii"],["NCBITaxon%3A1314751","Sutcliffiella cohnii NBRC 15565"],["NCBITaxon%3A83428","uncultured Bacillus sp."]]},{"id":"NCBITaxon:340047","l":"Mycoplasma capricolum subsp. capricolum ATCC 27343","na":1,"nb":3,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A2095","Mycoplasma capricolum"],["NCBITaxon%3A40479","Mycoplasma capricolum subsp. capricolum"],["NCBITaxon%3A340047","Mycoplasma capricolum subsp. capricolum ATCC 27343"]]},{"id":"NCBITaxon:341202","l":"Williamsia faeni","na":3,"nb":1,"a":[["park-envo-00000562.html","park"],["grassland-biome-envo-01000177.html","grassland biome"],["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A341202","Williamsia faeni"]]},{"id":"NCBITaxon:35756","l":"Corynebacterium pilosum","na":1,"nb":3,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A35756","Corynebacterium pilosum"],["NCBITaxon%3A1121366","Corynebacterium pilosum DSM 20521 = CIP 103422"],["NCBITaxon%3A28172","Vibrio metschnikovii"]]},{"id":"NCBITaxon:35787","l":"Limosilactobacillus pontis","na":1,"nb":3,"a":[["pig-manure-envo-00003860.html","pig manure"]],"b":[["NCBITaxon%3A1591","Lactobacillus sp."],["NCBITaxon%3A35787","Limosilactobacillus pontis"],["NCBITaxon%3A1423794","Limosilactobacillus pontis DSM 8475"]]},{"id":"NCBITaxon:35816","l":"Pelobacter acidigallici","na":3,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A35816","Pelobacter acidigallici"]]},{"id":"NCBITaxon:35817","l":"Helicobacter heilmannii","na":1,"nb":3,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["NCBITaxon%3A35817","Helicobacter heilmannii"],["NCBITaxon%3A1216962","Helicobacter heilmannii ASB1.4"],["NCBITaxon%3A28204","Helicobacter heilmannii type 1"]]},{"id":"NCBITaxon:361581","l":"Tenacibaculum discolor","na":3,"nb":1,"a":[["kidney-bto-0000671.html","kidney"],["sludge-envo-00002044.html","sludge"],["fumarole-envo-00000216.html","fumarole"]],"b":[["NCBITaxon%3A361581","Tenacibaculum discolor"]]},{"id":"NCBITaxon:363265","l":"Leyella stercorea","na":1,"nb":3,"a":[["pig-manure-envo-00003860.html","pig manure"]],"b":[["NCBITaxon%3A363265","Leyella stercorea"],["NCBITaxon%3A1263103","Leyella stercorea CAG:629"],["NCBITaxon%3A1002367","Leyella stercorea DSM 18206"]]},{"id":"NCBITaxon:36746","l":"Pseudomonas cichorii","na":1,"nb":3,"a":[["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["NCBITaxon%3A2488639","Pectobacterium versatile"],["NCBITaxon%3A36746","Pseudomonas cichorii"],["NCBITaxon%3A1441629","Pseudomonas cichorii JBC1"]]},{"id":"NCBITaxon:36841","l":"Terrisporobacter glycolicus","na":1,"nb":3,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["NCBITaxon%3A36841","Terrisporobacter glycolicus"],["NCBITaxon%3A1121315","Terrisporobacter glycolicus ATCC 14880 = DSM 1288"],["NCBITaxon%3A1125703","Terrisporobacter glycolicus CC88H"]]},{"id":"NCBITaxon:371731","l":"Rhodobacter ferrooxidans","na":3,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["large-river-biome-envo-00000887.html","large river biome"],["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A371731","Rhodobacter ferrooxidans"]]},{"id":"NCBITaxon:386415","l":"","na":3,"nb":1,"a":[["myocardium-bto-0000901.html","myocardium"],["reticuloendothelial-system-bto-0001174.html","reticuloendothelial system"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A386415","Clostridium novyi NT"]]},{"id":"NCBITaxon:391904","l":"","na":1,"nb":3,"a":[["breast-bto-0000149.html","breast"]],"b":[["NCBITaxon%3A216816","Bifidobacterium longum"],["NCBITaxon%3A1682","Bifidobacterium longum subsp. infantis"],["NCBITaxon%3A391904","Bifidobacterium longum subsp. infantis ATCC 15697 = JCM 1222 = DSM 20088"]]},{"id":"NCBITaxon:393131","l":"Listeria monocytogenes J2818","na":3,"nb":1,"a":[["bay-envo-00000032.html","bay"],["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"]],"b":[["NCBITaxon%3A393131","Listeria monocytogenes J2818"]]},{"id":"NCBITaxon:395963","l":"Beijerinckia indica subsp. indica ATCC 9039","na":1,"nb":3,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["NCBITaxon%3A533","Beijerinckia indica"],["NCBITaxon%3A31994","Beijerinckia indica subsp. indica"],["NCBITaxon%3A395963","Beijerinckia indica subsp. indica ATCC 9039"]]},{"id":"NCBITaxon:396","l":"Rhizobium phaseoli","na":1,"nb":3,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A396","Rhizobium phaseoli"],["NCBITaxon%3A526949","Rhizobium phaseoli Brasil 5"],["NCBITaxon%3A1128399","Rhizobium phaseoli Ch24-10"]]},{"id":"NCBITaxon:396595","l":"Thioalkalivibrio sp. K90mix","na":3,"nb":1,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"],["steppe-envo-00000262.html","steppe"]],"b":[["NCBITaxon%3A396595","Thioalkalivibrio sp. K90mix"]]},{"id":"NCBITaxon:39693","l":"Mycolicibacterium porcinum","na":3,"nb":1,"a":[["fibroblast-bto-0000452.html","fibroblast"],["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A39693","Mycolicibacterium porcinum"]]},{"id":"NCBITaxon:399742","l":"Enterobacter sp. (strain 638)","na":3,"nb":1,"a":[["vasculature-uberon-0002049.html","vasculature"],["part-of-plant-habitatmech-madin-25325947e2.html","part of plant"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A399742","Enterobacter sp. 638"]]},{"id":"NCBITaxon:40223","l":"Methylophaga thalassica","na":1,"nb":3,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A568897","Ectothiorhodospira salini"],["NCBITaxon%3A40223","Methylophaga thalassica"],["NCBITaxon%3A1026882","Methylophaga thalassica MP"]]},{"id":"NCBITaxon:404589","l":"","na":3,"nb":1,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["NCBITaxon%3A404589","Anaeromyxobacter sp. Fw109-5"]]},{"id":"NCBITaxon:416261","l":"Desulfobacterium sp. AK1","na":3,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A416261","Desulfobacterium sp. AK1"]]},{"id":"NCBITaxon:42234","l":"Streptomyces acidiscabies","na":1,"nb":3,"a":[["a10-cell-bto-0002196.html","A10 cell"]],"b":[["NCBITaxon%3A42234","Streptomyces acidiscabies"],["NCBITaxon%3A1116232","Streptomyces acidiscabies 84-104"],["NCBITaxon%3A1930","Streptomyces scabiei"]]},{"id":"NCBITaxon:426117","l":"Methylobacterium sp. 4-46","na":3,"nb":1,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A426117","Methylobacterium sp. 4-46"]]},{"id":"NCBITaxon:428406","l":"Ralstonia pickettii 12D","na":1,"nb":3,"a":[["chemically-enriched-sediment-envo-00002114.html","chemically enriched sediment"]],"b":[["NCBITaxon%3A329","Ralstonia pickettii"],["NCBITaxon%3A428406","Ralstonia pickettii 12D"],["NCBITaxon%3A1218114","Ralstonia pickettii NBRC 102503"]]},{"id":"NCBITaxon:43768","l":"Corynebacterium matruchotii","na":1,"nb":3,"a":[["archeological-site-envo-00000564.html","archeological site"]],"b":[["NCBITaxon%3A43768","Corynebacterium matruchotii"],["NCBITaxon%3A553207","Corynebacterium matruchotii ATCC 14266"],["NCBITaxon%3A566549","Corynebacterium matruchotii ATCC 33806"]]},{"id":"NCBITaxon:439495","l":"Pseudovibrio sp. JE062","na":3,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["germ-cell-bto-0000535.html","germ cell"],["desert-sand-envo-00005800.html","desert sand"]],"b":[["NCBITaxon%3A439495","Pseudovibrio sp. JE062"]]},{"id":"NCBITaxon:44008","l":"Enterococcus cecorum","na":1,"nb":3,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["NCBITaxon%3A44008","Enterococcus cecorum"],["NCBITaxon%3A1121864","Enterococcus cecorum DSM 20682 = ATCC 43198"],["NCBITaxon%3A1352","Enterococcus faecium"]]},{"id":"NCBITaxon:442899","l":"Halolactibacillus alkaliphilus","na":3,"nb":1,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["alkaline-water-envo-01000357.html","alkaline water"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A442899","Halolactibacillus alkaliphilus"]]},{"id":"NCBITaxon:445335","l":"Clostridium botulinum NCTC 2916","na":3,"nb":1,"a":[["sea-envo-00000016.html","sea"],["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A445335","Clostridium botulinum NCTC 2916"]]},{"id":"NCBITaxon:446468","l":"Nocardiopsis dassonvillei subsp. dassonvillei DSM 43111","na":1,"nb":3,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A2014","Nocardiopsis dassonvillei"],["NCBITaxon%3A568208","Nocardiopsis dassonvillei subsp. dassonvillei"],["NCBITaxon%3A446468","Nocardiopsis dassonvillei subsp. dassonvillei DSM 43111"]]},{"id":"NCBITaxon:45","l":"Melittangium lichenicola","na":3,"nb":1,"a":[["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A45","Melittangium lichenicola"]]},{"id":"NCBITaxon:457391","l":"Bacteroides sp. 3_1_33FAA","na":3,"nb":1,"a":[["bay-envo-00000032.html","bay"],["saline-water-envo-00002010.html","saline water"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["NCBITaxon%3A457391","Bacteroides sp. 3_1_33FAA"]]},{"id":"NCBITaxon:457429","l":"Streptomyces pristinaespiralis ATCC 25486","na":1,"nb":3,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A38300","Streptomyces pristinaespiralis"],["NCBITaxon%3A457429","Streptomyces pristinaespiralis ATCC 25486"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:463","l":"Fluoribacter dumoffii","na":1,"nb":3,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A463","Fluoribacter dumoffii"],["NCBITaxon%3A1094715","Fluoribacter dumoffii NY 23"],["NCBITaxon%3A1094714","Fluoribacter dumoffii Tex-KL"]]},{"id":"NCBITaxon:471472","l":"Chlamydia trachomatis serovar L2 (strain ATCC VR-902B / DSM 19102 / 434/Bu)","na":1,"nb":3,"a":[["lymph-node-bto-0000784.html","lymph node"]],"b":[["NCBITaxon%3A471472","Chlamydia trachomatis L2/434/Bu"],["NCBITaxon%3A1262673","Chlamydia trachomatis L2/434/Bu(f)"],["NCBITaxon%3A1263406","Chlamydia trachomatis L2/434/Bu(i)"]]},{"id":"NCBITaxon:471858","l":"Helicobacter magdeburgensis","na":1,"nb":3,"a":[["ht-29-cell-bto-0000182.html","HT-29 cell"]],"b":[["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"],["NCBITaxon%3A471858","Helicobacter magdeburgensis"]]},{"id":"NCBITaxon:47312","l":"Tsukamurella pulmonis","na":3,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["tuberculosis-habitatmech-bacdive-e5d21f85b7.html","Tuberculosis"]],"b":[["NCBITaxon%3A47312","Tsukamurella pulmonis"]]},{"id":"NCBITaxon:47920","l":"Acidovorax delafieldii","na":1,"nb":3,"a":[["bone-element-uberon-0001474.html","bone element"]],"b":[["NCBITaxon%3A47920","Acidovorax delafieldii"],["NCBITaxon%3A573060","Acidovorax delafieldii 2AN"],["NCBITaxon%3A80878","Acidovorax temperans"]]},{"id":"NCBITaxon:50741","l":"Marinobacter sp.","na":3,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"],["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["NCBITaxon%3A50741","Marinobacter sp."]]},{"id":"NCBITaxon:515440","l":"Oceanotoga teriensis","na":3,"nb":1,"a":[["ocean-trench-envo-00000275.html","ocean trench"],["oil-well-envo-01000003.html","oil well"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A515440","Oceanotoga teriensis"]]},{"id":"NCBITaxon:517424","l":"Salsuginibacillus halophilus","na":3,"nb":1,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["alkaline-water-envo-01000357.html","alkaline water"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A517424","Salsuginibacillus halophilus"]]},{"id":"NCBITaxon:520487","l":"Brucella suis bv. 3 str. 686","na":3,"nb":1,"a":[["city-envo-00000856.html","city"],["orchard-envo-00000115.html","orchard"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["NCBITaxon%3A520487","Brucella suis bv. 3 str. 686"]]},{"id":"NCBITaxon:53364","l":"Brevibacterium otitidis","na":1,"nb":3,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"]],"b":[["NCBITaxon%3A53364","Brevibacterium otitidis"],["NCBITaxon%3A1855725","Mucilaginibacter antarcticus"],["NCBITaxon%3A875043","Rheinheimera tilapiae"]]},{"id":"NCBITaxon:539","l":"Eikenella corrodens","na":1,"nb":3,"a":[["archeological-site-envo-00000564.html","archeological site"]],"b":[["NCBITaxon%3A539","Eikenella corrodens"],["NCBITaxon%3A546274","Eikenella corrodens ATCC 23834"],["NCBITaxon%3A1073362","Eikenella corrodens CC92I"]]},{"id":"NCBITaxon:553171","l":"Prevotella bivia JCVIHMP010","na":1,"nb":3,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A28125","Prevotella bivia"],["NCBITaxon%3A868129","Prevotella bivia DSM 20514"],["NCBITaxon%3A553171","Prevotella bivia JCVIHMP010"]]},{"id":"NCBITaxon:55565","l":"Actinomyces graevenitzii","na":1,"nb":3,"a":[["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["NCBITaxon%3A55565","Actinomyces graevenitzii"],["NCBITaxon%3A435830","Actinomyces graevenitzii C83"],["NCBITaxon%3A1321817","Actinomyces graevenitzii F0530"]]},{"id":"NCBITaxon:555970","l":"","na":1,"nb":3,"a":[["intestinal-epithelium-bto-0000781.html","intestinal epithelium"]],"b":[["NCBITaxon%3A28025","Bifidobacterium animalis"],["NCBITaxon%3A302911","Bifidobacterium animalis subsp. lactis"],["NCBITaxon%3A555970","Bifidobacterium animalis subsp. lactis DSM 10140"]]},{"id":"NCBITaxon:557433","l":"","na":1,"nb":3,"a":[["caco-2-cell-bto-0000195.html","CACO-2 cell"]],"b":[["NCBITaxon%3A1598","Limosilactobacillus reuteri"],["NCBITaxon%3A557436","Limosilactobacillus reuteri subsp. reuteri"],["NCBITaxon%3A557433","Limosilactobacillus reuteri subsp. reuteri JCM 1112 = DSM 20016"]]},{"id":"NCBITaxon:566552","l":"Bifidobacterium catenulatum DSM 16992 = JCM 1194 = LMG 11043","na":1,"nb":3,"a":[["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A1686","Bifidobacterium catenulatum"],["NCBITaxon%3A566552","Bifidobacterium catenulatum DSM 16992 = JCM 1194 = LMG 11043"],["NCBITaxon%3A2981616","Bifidobacterium catenulatum subsp. catenulatum"]]},{"id":"NCBITaxon:570156","l":"Pseudoalteromonas lipolytica","na":1,"nb":3,"a":[["leaf-lamina-bto-0000719.html","leaf lamina"]],"b":[["NCBITaxon%3A570156","Pseudoalteromonas lipolytica"],["NCBITaxon%3A1315275","Pseudoalteromonas lipolytica LMEB 39"],["NCBITaxon%3A1452721","Pseudoalteromonas lipolytica SCSIO 04301"]]},{"id":"NCBITaxon:573062","l":"Thermoanaerobacter sp. X513","na":3,"nb":1,"a":[["ocean-trench-envo-00000275.html","ocean trench"],["drainage-basin-envo-00000291.html","drainage basin"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A573062","Thermoanaerobacter sp. X513"]]},{"id":"NCBITaxon:583346","l":"Clostridium kluyveri NBRC 12016","na":1,"nb":3,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A1534","Clostridium kluyveri"],["NCBITaxon%3A431943","Clostridium kluyveri DSM 555"],["NCBITaxon%3A583346","Clostridium kluyveri NBRC 12016"]]},{"id":"NCBITaxon:586220","l":"Leuconostoc mesenteroides subsp. cremoris ATCC 19254","na":1,"nb":3,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"]],"b":[["NCBITaxon%3A1245","Leuconostoc mesenteroides"],["NCBITaxon%3A33965","Leuconostoc mesenteroides subsp. cremoris"],["NCBITaxon%3A586220","Leuconostoc mesenteroides subsp. cremoris ATCC 19254"]]},{"id":"NCBITaxon:588","l":"Providencia stuartii","na":1,"nb":3,"a":[["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["NCBITaxon%3A588","Providencia stuartii"],["NCBITaxon%3A471874","Providencia stuartii ATCC 25827"],["NCBITaxon%3A1157951","Providencia stuartii MRSN 2154"]]},{"id":"NCBITaxon:595452","l":"Rhodopirellula sp. SM49","na":3,"nb":1,"a":[["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"]],"b":[["NCBITaxon%3A595452","Rhodopirellula sp. SM49"]]},{"id":"NCBITaxon:59919","l":"Prochlorococcus marinus subsp. pastoris str. CCMP1986","na":3,"nb":1,"a":[["marginal-sea-biome-envo-01000046.html","marginal sea biome"],["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"],["sea-envo-00000016.html","sea"]],"b":[["NCBITaxon%3A59919","Prochlorococcus marinus subsp. pastoris str. CCMP1986"]]},{"id":"NCBITaxon:647","l":"Aeromonas sp.","na":3,"nb":1,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["cave-water-habitatmech-bacdive-9ae6cfc178.html","Cave-water"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["NCBITaxon%3A647","Aeromonas sp."]]},{"id":"NCBITaxon:647227","l":"Chlamydia muridarum str. Weiss","na":3,"nb":1,"a":[["cervical-adenocarcinoma-cell-bto-0003165.html","cervical adenocarcinoma cell"],["fibroblast-bto-0000452.html","fibroblast"],["hela-229-cell-bto-0005030.html","HeLa-229 cell"]],"b":[["NCBITaxon%3A647227","Chlamydia muridarum str. Weiss"]]},{"id":"NCBITaxon:658457","l":"Ectopseudomonas composti","na":3,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["NCBITaxon%3A658457","Ectopseudomonas composti"]]},{"id":"NCBITaxon:663606","l":"Actinomycetospora chibensis","na":1,"nb":3,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A663606","Actinomycetospora chibensis"],["NCBITaxon%3A173364","Brachybacterium sacelli"],["NCBITaxon%3A42895","Enterobacter sp."]]},{"id":"NCBITaxon:665913","l":"Mixta calida","na":1,"nb":3,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["NCBITaxon%3A665913","Mixta calida"],["NCBITaxon%3A1440767","Mixta calida B021323"],["NCBITaxon%3A665914","Mixta gaviniae"]]},{"id":"NCBITaxon:667127","l":"Klebsiella pneumoniae subsp. rhinoscleromatis ATCC 13884","na":1,"nb":3,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A39831","Klebsiella pneumoniae subsp. rhinoscleromatis"],["NCBITaxon%3A667127","Klebsiella pneumoniae subsp. rhinoscleromatis ATCC 13884"]]},{"id":"NCBITaxon:66976","l":"Legionella pneumophila serogroup 1","na":1,"nb":3,"a":[["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A866628","Legionella pneumophila 130b"],["NCBITaxon%3A423212","Legionella pneumophila 2300/99 Alcoy"],["NCBITaxon%3A66976","Legionella pneumophila serogroup 1"]]},{"id":"NCBITaxon:671218","l":"Alloprevotella rava","na":1,"nb":3,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A671218","Alloprevotella rava"],["NCBITaxon%3A524034","Alloprevotella rava F0020"],["NCBITaxon%3A679199","Alloprevotella rava F0323"]]},{"id":"NCBITaxon:68242","l":"Streptomyces natalensis","na":1,"nb":3,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A68242","Streptomyces natalensis"],["NCBITaxon%3A1240678","Streptomyces natalensis ATCC 27448"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:68895","l":"Cupriavidus basilensis","na":1,"nb":3,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A68895","Cupriavidus basilensis"],["NCBITaxon%3A1200775","Cupriavidus basilensis B-8"],["NCBITaxon%3A1127483","Cupriavidus basilensis OR16"]]},{"id":"NCBITaxon:69218","l":"Enterobacter cancerogenus","na":1,"nb":3,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["NCBITaxon%3A69218","Enterobacter cancerogenus"],["NCBITaxon%3A500639","Enterobacter cancerogenus ATCC 35316"],["NCBITaxon%3A1260277","Enterobacter cancerogenus YZ1"]]},{"id":"NCBITaxon:69373","l":"Curtobacterium pusillum","na":3,"nb":1,"a":[["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["seedling-bto-0001228.html","seedling"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A69373","Curtobacterium pusillum"]]},{"id":"NCBITaxon:698936","l":"Sinorhizobium meliloti BL225C","na":3,"nb":1,"a":[["agricultural-field-envo-00000114.html","agricultural field"],["agricultural-soil-envo-00002259.html","agricultural soil"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A698936","Sinorhizobium meliloti BL225C"]]},{"id":"NCBITaxon:69974","l":"Mesorhizobium plurifarium","na":1,"nb":3,"a":[["hair-follicle-outer-root-sheath-bto-0003969.html","hair follicle outer root sheath"]],"b":[["NCBITaxon%3A69974","Mesorhizobium plurifarium"],["NCBITaxon%3A198626","Mesorhizobium plurifarium subsp. americum"],["NCBITaxon%3A391","Rhizobium sp."]]},{"id":"NCBITaxon:70775","l":"Pseudomonas plecoglossicida","na":1,"nb":3,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A70775","Pseudomonas plecoglossicida"],["NCBITaxon%3A1330531","Pseudomonas plecoglossicida NB2011"],["NCBITaxon%3A1215115","Pseudomonas plecoglossicida NBRC 103162 = DSM 15088"]]},{"id":"NCBITaxon:716","l":"Actinobacillus suis","na":1,"nb":3,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["NCBITaxon%3A716","Actinobacillus suis"],["NCBITaxon%3A743972","Actinobacillus suis ATCC 33415"],["NCBITaxon%3A696748","Actinobacillus suis H91-0380"]]},{"id":"NCBITaxon:716541","l":"Enterobacter cloacae subsp. cloacae (strain ATCC 13047 / DSM 30054 / NBRC 13535 / NCTC 10005 / WDCM 00083 / NCDC 279-56)","na":1,"nb":3,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A336306","Enterobacter cloacae subsp. cloacae"],["NCBITaxon%3A716541","Enterobacter cloacae subsp. cloacae ATCC 13047"]]},{"id":"NCBITaxon:736","l":"Haemophilus paraphrohaemolyticus","na":1,"nb":3,"a":[["trunk-uberon-0002100.html","trunk"]],"b":[["NCBITaxon%3A729","Haemophilus parainfluenzae"],["NCBITaxon%3A736","Haemophilus paraphrohaemolyticus"],["NCBITaxon%3A1095743","Haemophilus paraphrohaemolyticus HK411"]]},{"id":"NCBITaxon:74109","l":"Photobacterium profundum","na":1,"nb":3,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A74109","Photobacterium profundum"],["NCBITaxon%3A314280","Photobacterium profundum 3TCK"],["NCBITaxon%3A298386","Photobacterium profundum SS9"]]},{"id":"NCBITaxon:78344","l":"Bifidobacterium pullorum subsp. gallinarum","na":1,"nb":3,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"]],"b":[["NCBITaxon%3A78448","Bifidobacterium pullorum"],["NCBITaxon%3A78344","Bifidobacterium pullorum subsp. gallinarum"],["NCBITaxon%3A1437602","Bifidobacterium pullorum subsp. gallinarum DSM 20670"]]},{"id":"NCBITaxon:79880","l":"Shouchella clausii","na":1,"nb":3,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A79880","Shouchella clausii"],["NCBITaxon%3A66692","Shouchella clausii KSM-K16"],["NCBITaxon%3A83428","uncultured Bacillus sp."]]},{"id":"NCBITaxon:79967","l":"Erwinia pyrifoliae","na":1,"nb":3,"a":[["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["NCBITaxon%3A79967","Erwinia pyrifoliae"],["NCBITaxon%3A644651","Erwinia pyrifoliae DSM 12163"],["NCBITaxon%3A634499","Erwinia pyrifoliae Ep1/96"]]},{"id":"NCBITaxon:82116","l":"Acetobacterium malicum subsp. dehalogenans","na":1,"nb":3,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A52692","Acetobacterium malicum"],["NCBITaxon%3A82116","Acetobacterium malicum subsp. dehalogenans"],["NCBITaxon%3A1068975","Acetobacterium malicum subsp. dehalogenans DSM 11527"]]},{"id":"NCBITaxon:824","l":"Campylobacter gracilis","na":1,"nb":3,"a":[["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A824","Campylobacter gracilis"],["NCBITaxon%3A553220","Campylobacter gracilis RM3268"],["NCBITaxon%3A203","Campylobacter rectus"]]},{"id":"NCBITaxon:83453","l":"Melittangium boletus","na":1,"nb":3,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["NCBITaxon%3A83452","Melittangium alboraceum"],["NCBITaxon%3A83453","Melittangium boletus"],["NCBITaxon%3A1294270","Melittangium boletus DSM 14713"]]},{"id":"NCBITaxon:86665","l":"Halalkalibacterium halodurans","na":1,"nb":3,"a":[["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A86665","Halalkalibacterium halodurans"],["NCBITaxon%3A272558","Halalkalibacterium halodurans C-125"],["NCBITaxon%3A83428","uncultured Bacillus sp."]]},{"id":"NCBITaxon:880156","l":"Photorhabdus heterorhabditis","na":1,"nb":3,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A880156","Photorhabdus heterorhabditis"],["NCBITaxon%3A2805094","Photorhabdus heterorhabditis subsp. aluminescens"],["NCBITaxon%3A2805095","Photorhabdus heterorhabditis subsp. heterorhabditis"]]},{"id":"NCBITaxon:91353","l":"Campylobacter hyointestinalis subsp. lawsonii","na":1,"nb":3,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["NCBITaxon%3A198","Campylobacter hyointestinalis"],["NCBITaxon%3A91353","Campylobacter hyointestinalis subsp. lawsonii"],["NCBITaxon%3A1031752","Campylobacter hyointestinalis subsp. lawsonii CCUG 27631"]]},{"id":"NCBITaxon:94122","l":"Shewanella sp. ANA-3","na":3,"nb":1,"a":[["alkaline-water-envo-01000357.html","alkaline water"],["brackish-estuary-envo-00002137.html","brackish estuary"],["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A94122","Shewanella sp. ANA-3"]]},{"id":"NCBITaxon:97478","l":"Limosilactobacillus mucosae","na":1,"nb":3,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["NCBITaxon%3A97478","Limosilactobacillus mucosae"],["NCBITaxon%3A1423771","Limosilactobacillus mucosae DSM 13345"],["NCBITaxon%3A1130798","Limosilactobacillus mucosae LM1"]]},{"id":"NCBITaxon:989","l":"Marinilabilia salmonicolor","na":1,"nb":3,"a":[["lagoon-envo-00000038.html","lagoon"]],"b":[["NCBITaxon%3A989","Marinilabilia salmonicolor"],["NCBITaxon%3A60555","Marinilabilia salmonicolor biovar Agarovorans"],["NCBITaxon%3A1168289","Marinilabilia salmonicolor JCM 21150"]]},{"id":"NCBITaxon:996","l":"Flavobacterium columnare","na":1,"nb":3,"a":[["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["NCBITaxon%3A996","Flavobacterium columnare"],["NCBITaxon%3A1041826","Flavobacterium columnare ATCC 49512"],["NCBITaxon%3A1218111","Flavobacterium columnare NBRC 100251 = ATCC 23463"]]},{"id":"NCBITaxon:100052","l":"Delitschia winteri","na":2,"nb":1,"a":[["desert-biome-envo-01000179.html","desert biome"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A100052","Delitschia winteri"]]},{"id":"NCBITaxon:1000562","l":"Streptococcus phocae subsp. salmonis","na":1,"nb":2,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A119224","Streptococcus phocae"],["NCBITaxon%3A1000562","Streptococcus phocae subsp. salmonis"]]},{"id":"NCBITaxon:1000565","l":"Methyloversatilis universalis FAM5","na":1,"nb":2,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A378211","Methyloversatilis universalis"],["NCBITaxon%3A1000565","Methyloversatilis universalis FAM5"]]},{"id":"NCBITaxon:1000566","l":"Halosaccharopolyspora lacisalsi","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1000566","Halosaccharopolyspora lacisalsi"]]},{"id":"NCBITaxon:1000588","l":"","na":1,"nb":2,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1000588","Streptococcus mitis bv. 2 str. SK95"],["NCBITaxon%3A1306","Streptococcus sp."]]},{"id":"NCBITaxon:1000590","l":"Staphylococcus epidermidis 14.1.R1.SE","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A1282","Staphylococcus epidermidis"],["NCBITaxon%3A1000590","Staphylococcus epidermidis 14.1.R1.SE"]]},{"id":"NCBITaxon:1001","l":"Garritya polymorpha","na":2,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A1001","Garritya polymorpha"]]},{"id":"NCBITaxon:100133","l":"Sporobacterium olearium","na":1,"nb":2,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A100133","Sporobacterium olearium"],["NCBITaxon%3A1123283","Sporobacterium olearium DSM 12504"]]},{"id":"NCBITaxon:1001534","l":"Francisella tularensis subsp. tularensis TI0902","na":1,"nb":2,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001534","Francisella tularensis subsp. tularensis TI0902"],["NCBITaxon%3A1001542","Francisella tularensis subsp. tularensis TIGB03"]]},{"id":"NCBITaxon:100176","l":"Papillibacter cinnamivorans","na":1,"nb":2,"a":[["cecum-bto-0000166.html","cecum"]],"b":[["NCBITaxon%3A100176","Papillibacter cinnamivorans"],["NCBITaxon%3A1122930","Papillibacter cinnamivorans DSM 12816"]]},{"id":"NCBITaxon:1001994","l":"Nitrosarchaeum koreense MY1","na":1,"nb":2,"a":[["plant-bto-0001481.html","plant"]],"b":[["NCBITaxon%3A1088740","Nitrosarchaeum koreense"],["NCBITaxon%3A1001994","Nitrosarchaeum koreense MY1"]]},{"id":"NCBITaxon:1002340","l":"Leisingera sp. ANG1","na":2,"nb":1,"a":[["gland-bto-0000522.html","gland"],["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1002340","Leisingera sp. ANG1"]]},{"id":"NCBITaxon:1002689","l":"Occallatibacter riparius","na":2,"nb":1,"a":[["watercourse-envo-00000029.html","watercourse"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A1002689","Occallatibacter riparius"]]},{"id":"NCBITaxon:1003","l":"Thermoflexibacter ruber","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A1003","Thermoflexibacter ruber"]]},{"id":"NCBITaxon:1003091","l":"","na":1,"nb":2,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A409","Methylobacterium sp."],["NCBITaxon%3A1003091","Methylobacterium thuringiense"]]},{"id":"NCBITaxon:1003092","l":"Methylobacterium trifolii","na":1,"nb":2,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A409","Methylobacterium sp."],["NCBITaxon%3A1003092","Methylobacterium trifolii"]]},{"id":"NCBITaxon:1003110","l":"Micromonospora maris","na":1,"nb":2,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1003110","Micromonospora maris"],["NCBITaxon%3A263358","Micromonospora maris AB-18-032"]]},{"id":"NCBITaxon:1003191","l":"Salmonella enterica subsp. enterica serovar Tennessee str. TXSC_TXSC08-19","na":2,"nb":1,"a":[["scale-bto-0005055.html","scale"],["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A1003191","Salmonella enterica subsp. enterica serovar Tennessee str. TXSC_TXSC08-19"]]},{"id":"NCBITaxon:1003192","l":"Salmonella enterica subsp. enterica serovar Tennessee str. TXSC_TXSC08-21","na":2,"nb":1,"a":[["scale-bto-0005055.html","scale"],["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A1003192","Salmonella enterica subsp. enterica serovar Tennessee str. TXSC_TXSC08-21"]]},{"id":"NCBITaxon:1004","l":"Chitinophaga sancti","na":1,"nb":2,"a":[["plant-bto-0001481.html","plant"]],"b":[["NCBITaxon%3A1004","Chitinophaga sancti"],["NCBITaxon%3A1121282","Chitinophaga sancti DSM 784"]]},{"id":"NCBITaxon:1004304","l":"Hydrotalea sandarakina","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A1004304","Hydrotalea sandarakina"]]},{"id":"NCBITaxon:100468","l":"Schleiferilactobacillus perolens","na":1,"nb":2,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A100468","Schleiferilactobacillus perolens"],["NCBITaxon%3A1423792","Schleiferilactobacillus perolens DSM 12744"]]},{"id":"NCBITaxon:1005","l":"Flexibacter sp.","na":2,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A1005","Flexibacter sp."]]},{"id":"NCBITaxon:1005705","l":"Streptococcus infantis SK1076","na":1,"nb":2,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1005705","Streptococcus infantis SK1076"],["NCBITaxon%3A28037","Streptococcus mitis"]]},{"id":"NCBITaxon:1005740","l":"Aminivibrio pyruvatiphilus","na":2,"nb":1,"a":[["soil-envo-00001998.html","soil"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A1005740","Aminivibrio pyruvatiphilus"]]},{"id":"NCBITaxon:1005926","l":"Flagellimonas taeanensis","na":2,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"],["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["NCBITaxon%3A1005926","Flagellimonas taeanensis"]]},{"id":"NCBITaxon:1005941","l":"Planococcus halocryophilus Or1","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A1215089","Planococcus halocryophilus"],["NCBITaxon%3A1005941","Planococcus halocryophilus Or1"]]},{"id":"NCBITaxon:1005996","l":"","na":1,"nb":2,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A575","Klebsiella planticola"],["NCBITaxon%3A1005996","Klebsiella planticola ATCC 33531"]]},{"id":"NCBITaxon:1005999","l":"Leminorella grimontii ATCC 33999 = DSM 5078","na":1,"nb":2,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A82981","Leminorella grimontii"],["NCBITaxon%3A1005999","Leminorella grimontii ATCC 33999 = DSM 5078"]]},{"id":"NCBITaxon:1006576","l":"Defluviitoga tunisiensis","na":2,"nb":1,"a":[["factory-envo-01000536.html","factory"],["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A1006576","Defluviitoga tunisiensis"]]},{"id":"NCBITaxon:1007096","l":"Oscillibacter ruminantium GH1","na":1,"nb":2,"a":[["fiber-bto-0000450.html","fiber"]],"b":[["NCBITaxon%3A1263547","Oscillibacter ruminantium"],["NCBITaxon%3A1007096","Oscillibacter ruminantium GH1"]]},{"id":"NCBITaxon:1007097","l":"Gordonia caeni","na":2,"nb":1,"a":[["sludge-envo-00002044.html","sludge"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A1007097","Gordonia caeni"]]},{"id":"NCBITaxon:1007109","l":"alpha proteobacterium SCGC AAA076-C03","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1007109","alpha proteobacterium SCGC AAA076-C03"]]},{"id":"NCBITaxon:1007110","l":"alpha proteobacterium SCGC AAA076-E06","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1007110","alpha proteobacterium SCGC AAA076-E06"]]},{"id":"NCBITaxon:1007111","l":"alpha proteobacterium SCGC AAA158-B04","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1007111","alpha proteobacterium SCGC AAA158-B04"]]},{"id":"NCBITaxon:1007112","l":"alpha proteobacterium SCGC AAA158-M15","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1007112","alpha proteobacterium SCGC AAA158-M15"]]},{"id":"NCBITaxon:1007113","l":"alpha proteobacterium SCGC AAA160-J14","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1007113","alpha proteobacterium SCGC AAA160-J14"]]},{"id":"NCBITaxon:1007114","l":"gamma proteobacterium SCGC AAA076-D02","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1007114","gamma proteobacterium SCGC AAA076-D02"]]},{"id":"NCBITaxon:1007115","l":"gamma proteobacterium SCGC AAA076-D13","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1007115","gamma proteobacterium SCGC AAA076-D13"]]},{"id":"NCBITaxon:1007116","l":"gamma proteobacterium SCGC AAA076-E13","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1007116","gamma proteobacterium SCGC AAA076-E13"]]},{"id":"NCBITaxon:1007117","l":"gamma proteobacterium SCGC AAA076-F14","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1007117","gamma proteobacterium SCGC AAA076-F14"]]},{"id":"NCBITaxon:1007118","l":"gamma proteobacterium SCGC AAA076-P09","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1007118","gamma proteobacterium SCGC AAA076-P09"]]},{"id":"NCBITaxon:1007119","l":"gamma proteobacterium SCGC AAA076-P13","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1007119","gamma proteobacterium SCGC AAA076-P13"]]},{"id":"NCBITaxon:1007120","l":"gamma proteobacterium SCGC AAA160-D02","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1007120","gamma proteobacterium SCGC AAA160-D02"]]},{"id":"NCBITaxon:1007676","l":"Companilactobacillus ginsenosidimutans","na":2,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A1007676","Companilactobacillus ginsenosidimutans"]]},{"id":"NCBITaxon:1008452","l":"Streptococcus mitis SK1073","na":1,"nb":2,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1008452","Streptococcus mitis SK1073"],["NCBITaxon%3A1303","Streptococcus oralis"]]},{"id":"NCBITaxon:1008453","l":"Streptococcus mitis SK1080","na":1,"nb":2,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1008453","Streptococcus mitis SK1080"],["NCBITaxon%3A1313","Streptococcus pneumoniae"]]},{"id":"NCBITaxon:1008454","l":"Staphylococcus epidermidis FS1","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A1282","Staphylococcus epidermidis"],["NCBITaxon%3A1008454","Staphylococcus epidermidis FS1"]]},{"id":"NCBITaxon:1009370","l":"","na":1,"nb":2,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A2374","Acetonema longum"],["NCBITaxon%3A1009370","Acetonema longum DSM 6540"]]},{"id":"NCBITaxon:1009412","l":"Flavobacterium sp. SCGC AAA160-P02","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1009412","Flavobacterium sp. SCGC AAA160-P02"]]},{"id":"NCBITaxon:1009413","l":"Verrucomicrobia bacterium SCGC AAA164-A08","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1009413","Verrucomicrobia bacterium SCGC AAA164-A08"]]},{"id":"NCBITaxon:1009414","l":"Verrucomicrobia bacterium SCGC AAA164-B23","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1009414","Verrucomicrobia bacterium SCGC AAA164-B23"]]},{"id":"NCBITaxon:1009415","l":"Verrucomicrobia bacterium SCGC AAA164-E04","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1009415","Verrucomicrobia bacterium SCGC AAA164-E04"]]},{"id":"NCBITaxon:1009416","l":"Verrucomicrobia bacterium SCGC AAA164-I21","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1009416","Verrucomicrobia bacterium SCGC AAA164-I21"]]},{"id":"NCBITaxon:1009418","l":"Verrucomicrobia bacterium SCGC AAA164-M04","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1009418","Verrucomicrobia bacterium SCGC AAA164-M04"]]},{"id":"NCBITaxon:1009420","l":"Verrucomicrobia bacterium SCGC AAA164-O14","na":2,"nb":1,"a":[["inlet-envo-00000475.html","inlet"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1009420","Verrucomicrobia bacterium SCGC AAA164-O14"]]},{"id":"NCBITaxon:1009464","l":"Gardnerella vaginalis HMP9231","na":1,"nb":2,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A309120","Dialister micraerophilus"],["NCBITaxon%3A1009464","Gardnerella vaginalis HMP9231"]]},{"id":"NCBITaxon:1009856","l":"Buchnera aphidicola str. USDA (Myzus persicae)","na":2,"nb":1,"a":[["phloem-bto-0001058.html","phloem"],["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1009856","Buchnera aphidicola str. USDA (Myzus persicae)"]]},{"id":"NCBITaxon:1009857","l":"Buchnera aphidicola str. W106 (Myzus persicae)","na":2,"nb":1,"a":[["phloem-bto-0001058.html","phloem"],["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1009857","Buchnera aphidicola str. W106 (Myzus persicae)"]]},{"id":"NCBITaxon:1009858","l":"Buchnera aphidicola str. G002 (Myzus persicae)","na":2,"nb":1,"a":[["phloem-bto-0001058.html","phloem"],["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1009858","Buchnera aphidicola str. G002 (Myzus persicae)"]]},{"id":"NCBITaxon:1009859","l":"Buchnera aphidicola str. F009 (Myzus persicae)","na":2,"nb":1,"a":[["phloem-bto-0001058.html","phloem"],["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1009859","Buchnera aphidicola str. F009 (Myzus persicae)"]]},{"id":"NCBITaxon:101489","l":"Xylanimonas pachnodae","na":1,"nb":2,"a":[["plant-bto-0001481.html","plant"]],"b":[["NCBITaxon%3A1305855","Xylanimicrobium pachnodae JCM 13526 = NBRC 107786"],["NCBITaxon%3A101489","Xylanimonas pachnodae"]]},{"id":"NCBITaxon:1017184","l":"Camelimonas abortus","na":2,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A1017184","Camelimonas abortus"]]},{"id":"NCBITaxon:102129","l":"Leptolyngbya sp. PCC 7375","na":2,"nb":1,"a":[["undersea-feature-envo-00000104.html","undersea feature"],["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A102129","Leptolyngbya sp. PCC 7375"]]},{"id":"NCBITaxon:1027360","l":"Edwardsiella ictaluri ATCC 33202","na":1,"nb":2,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A67780","Edwardsiella ictaluri"],["NCBITaxon%3A1027360","Edwardsiella ictaluri ATCC 33202"]]},{"id":"NCBITaxon:1027371","l":"Gordonia alkanivorans NBRC 16433","na":1,"nb":2,"a":[["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A84096","Gordonia alkanivorans"],["NCBITaxon%3A1027371","Gordonia alkanivorans NBRC 16433"]]},{"id":"NCBITaxon:1027633","l":"Enteractinococcus coprophilus","na":2,"nb":1,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A1027633","Enteractinococcus coprophilus"]]},{"id":"NCBITaxon:1028307","l":"","na":1,"nb":2,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A548","Klebsiella aerogenes"],["NCBITaxon%3A1028307","Klebsiella aerogenes KCTC 2190"]]},{"id":"NCBITaxon:1028566","l":"Sulfolobus acidocaldarius N8","na":1,"nb":2,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A2285","Sulfolobus acidocaldarius"],["NCBITaxon%3A1028566","Sulfolobus acidocaldarius N8"]]},{"id":"NCBITaxon:1028742","l":"Pontixanthobacter gangjinensis","na":2,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"],["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["NCBITaxon%3A1028742","Pontixanthobacter gangjinensis"]]},{"id":"NCBITaxon:1029756","l":"Hyphomicrobium nitrativorans NL23","na":1,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A1427356","Hyphomicrobium nitrativorans"],["NCBITaxon%3A1029756","Hyphomicrobium nitrativorans NL23"]]},{"id":"NCBITaxon:1030841","l":"Neisseria wadsworthii 9715","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A607711","Neisseria wadsworthii"],["NCBITaxon%3A1030841","Neisseria wadsworthii 9715"]]},{"id":"NCBITaxon:1030843","l":"Porphyromonas gingivalis TDC60","na":1,"nb":2,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A837","Porphyromonas gingivalis"],["NCBITaxon%3A1030843","Porphyromonas gingivalis TDC60"]]},{"id":"NCBITaxon:1031537","l":"Bremerella cremea","na":2,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A1031537","Bremerella cremea"]]},{"id":"NCBITaxon:1031538","l":"Neptunomonas concharum","na":2,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A1031538","Neptunomonas concharum"]]},{"id":"NCBITaxon:1031542","l":"Campylobacter volucris","na":1,"nb":2,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A1031542","Campylobacter volucris"],["NCBITaxon%3A580033","Campylobacter volucris LMG 24379"]]},{"id":"NCBITaxon:1031564","l":"Campylobacter insulaenigrae NCTC 12927","na":1,"nb":2,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A260714","Campylobacter insulaenigrae"],["NCBITaxon%3A1031564","Campylobacter insulaenigrae NCTC 12927"]]},{"id":"NCBITaxon:1031739","l":"Campylobacter helveticus CCUG 30566","na":1,"nb":2,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["NCBITaxon%3A28898","Campylobacter helveticus"],["NCBITaxon%3A1031739","Campylobacter helveticus CCUG 30566"]]},{"id":"NCBITaxon:1031746","l":"Campylobacter hyointestinalis subsp. hyointestinalis LMG 9260","na":1,"nb":2,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A198","Campylobacter hyointestinalis"],["NCBITaxon%3A1031746","Campylobacter hyointestinalis subsp. hyointestinalis LMG 9260"]]},{"id":"NCBITaxon:1032238","l":"","na":1,"nb":2,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A603050","Malaciobacter mytili"],["NCBITaxon%3A1032238","Malaciobacter mytili LMG 24559"]]},{"id":"NCBITaxon:1032240","l":"Aliarcobacter thereius LMG 24486","na":1,"nb":2,"a":[["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A544718","Aliarcobacter thereius"],["NCBITaxon%3A1032240","Aliarcobacter thereius LMG 24486"]]},{"id":"NCBITaxon:103232","l":"Streptomyces ipomoeae","na":1,"nb":2,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A103232","Streptomyces ipomoeae"],["NCBITaxon%3A698759","Streptomyces ipomoeae 91-03"]]},{"id":"NCBITaxon:1032476","l":"Nonomuraea soli","na":2,"nb":1,"a":[["soil-envo-00001998.html","soil"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A1032476","Nonomuraea soli"]]},{"id":"NCBITaxon:1032623","l":"Otariodibacter oris","na":2,"nb":1,"a":[["mouth-environment-envo-08000002.html","mouth environment"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A1032623","Otariodibacter oris"]]},{"id":"NCBITaxon:1033802","l":"Salinisphaera shabanensis E1L3A","na":1,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A180542","Salinisphaera shabanensis"],["NCBITaxon%3A1033802","Salinisphaera shabanensis E1L3A"]]},{"id":"NCBITaxon:1033806","l":"Halorhabdus tiamatea SARL4B","na":1,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A430914","Halorhabdus tiamatea"],["NCBITaxon%3A1033806","Halorhabdus tiamatea SARL4B"]]},{"id":"NCBITaxon:1033810","l":"Haloplasma contractile SSD-17B","na":1,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A471825","Haloplasma contractile"],["NCBITaxon%3A1033810","Haloplasma contractile SSD-17B"]]},{"id":"NCBITaxon:1033854","l":"Thioalkalivibrio sulfidiphilus","na":1,"nb":2,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1033854","Thioalkalivibrio sulfidiphilus"],["NCBITaxon%3A396588","Thioalkalivibrio sulfidiphilus HL-EbGr7"]]},{"id":"NCBITaxon:1034807","l":"Flavobacterium branchiophilum FL-15","na":2,"nb":1,"a":[["gill-bto-0000518.html","gill"],["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1034807","Flavobacterium branchiophilum FL-15"]]},{"id":"NCBITaxon:1035187","l":"Streptococcus mitis SK569","na":1,"nb":2,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A28037","Streptococcus mitis"],["NCBITaxon%3A1035187","Streptococcus mitis SK569"]]},{"id":"NCBITaxon:1035188","l":"Haemophilus pittmaniae HK 85","na":1,"nb":2,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A249188","Haemophilus pittmaniae"],["NCBITaxon%3A1035188","Haemophilus pittmaniae HK 85"]]},{"id":"NCBITaxon:1035194","l":"Aggregatibacter actinomycetemcomitans Y4","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A714","Aggregatibacter actinomycetemcomitans"],["NCBITaxon%3A1035194","Aggregatibacter actinomycetemcomitans Y4"]]},{"id":"NCBITaxon:1035196","l":"","na":1,"nb":2,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A1261","Peptostreptococcus anaerobius"],["NCBITaxon%3A1035196","Peptostreptococcus anaerobius VPI 4330 = DSM 2949"]]},{"id":"NCBITaxon:1035839","l":"","na":1,"nb":2,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A1078480","Haemophilus sputorum"],["NCBITaxon%3A1035839","Haemophilus sputorum CCUG 13788"]]},{"id":"NCBITaxon:1037911","l":"Pseudomonas fluorescens A506","na":2,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A1037911","Pseudomonas fluorescens A506"]]},{"id":"NCBITaxon:1038856","l":"Planococcus plakortidis","na":2,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"],["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1038856","Planococcus plakortidis"]]},{"id":"NCBITaxon:1038858","l":"Azorhizobium doebereinerae UFLA1-100","na":1,"nb":2,"a":[["plant-bto-0001481.html","plant"]],"b":[["NCBITaxon%3A281091","Azorhizobium doebereinerae"],["NCBITaxon%3A1038858","Azorhizobium doebereinerae UFLA1-100"]]},{"id":"NCBITaxon:1038867","l":"Bradyrhizobium sp. WSM3983","na":2,"nb":1,"a":[["plant-bto-0001481.html","plant"],["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A1038867","Bradyrhizobium sp. WSM3983"]]},{"id":"NCBITaxon:1038929","l":"Streptomyces xinghaiensis S187","na":1,"nb":2,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1038928","Streptomyces xinghaiensis"],["NCBITaxon%3A1038929","Streptomyces xinghaiensis S187"]]},{"id":"NCBITaxon:104087","l":"Pseudomonas frederiksbergensis","na":2,"nb":1,"a":[["ocean-envo-00000015.html","ocean"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A104087","Pseudomonas frederiksbergensis"]]},{"id":"NCBITaxon:1040985","l":"Mesorhizobium sp. WSM2561","na":2,"nb":1,"a":[["agricultural-field-envo-00000114.html","agricultural field"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A1040985","Mesorhizobium sp. WSM2561"]]},{"id":"NCBITaxon:1040987","l":"Mesorhizobium sp. WSM3626","na":2,"nb":1,"a":[["mountain-envo-00000081.html","mountain"],["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A1040987","Mesorhizobium sp. WSM3626"]]},{"id":"NCBITaxon:104100","l":"Acetobacter lovaniensis","na":1,"nb":2,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A104100","Acetobacter lovaniensis"],["NCBITaxon%3A1307909","Acetobacter lovaniensis NRIC 0474"]]},{"id":"NCBITaxon:104101","l":"Acetobacter indonesiensis","na":1,"nb":2,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A104101","Acetobacter indonesiensis"],["NCBITaxon%3A1307908","Acetobacter indonesiensis NRIC 0313"]]},{"id":"NCBITaxon:1041146","l":"Rhizobium sullae WSM1592","na":2,"nb":1,"a":[["agricultural-field-envo-00000114.html","agricultural field"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A1041146","Rhizobium sullae WSM1592"]]},{"id":"NCBITaxon:1041151","l":"Sinorhizobium meliloti 4H41","na":2,"nb":1,"a":[["joint-bto-0001686.html","joint"],["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A1041151","Sinorhizobium meliloti 4H41"]]},{"id":"NCBITaxon:1041152","l":"Sinorhizobium meliloti CIAM1775","na":2,"nb":1,"a":[["marginal-sea-biome-envo-01000046.html","marginal sea biome"],["sea-envo-00000016.html","sea"]],"b":[["NCBITaxon%3A1041152","Sinorhizobium meliloti CIAM1775"]]},{"id":"NCBITaxon:1041504","l":"Candidatus Arthromitus sp. SFB-rat-Yit","na":2,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1041504","Candidatus Arthromitus sp. SFB-rat-Yit"]]},{"id":"NCBITaxon:1041809","l":"Candidatus Arthromitus sp. SFB-mouse-Yit","na":2,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1041809","Candidatus Arthromitus sp. SFB-mouse-Yit"]]},{"id":"NCBITaxon:1041826","l":"Flavobacterium columnare ATCC 49512","na":1,"nb":2,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A996","Flavobacterium columnare"],["NCBITaxon%3A1041826","Flavobacterium columnare ATCC 49512"]]},{"id":"NCBITaxon:1042","l":"Erythrobacter sp.","na":2,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A1042","Erythrobacter sp."]]},{"id":"NCBITaxon:1042321","l":"Ureaplasma miroungigenitalium","na":2,"nb":1,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A1042321","Ureaplasma miroungigenitalium"]]},{"id":"NCBITaxon:1043206","l":"","na":1,"nb":2,"a":[["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A527","Acidiphilium sp."],["NCBITaxon%3A1043206","Acidiphilium sp. PM"]]},{"id":"NCBITaxon:1045012","l":"Acetivibrio clariflavus 4-2a","na":2,"nb":1,"a":[["compost-envo-00002170.html","compost"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A1045012","Acetivibrio clariflavus 4-2a"]]},{"id":"NCBITaxon:1045317","l":"Sphingomonas lutea","na":1,"nb":2,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A1045317","Sphingomonas lutea"],["NCBITaxon%3A3096157","Sphingomonas sandaracina"]]},{"id":"NCBITaxon:1045776","l":"Kutzneria buriramensis","na":2,"nb":1,"a":[["forested-area-envo-00000111.html","forested area"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A1045776","Kutzneria buriramensis"]]},{"id":"NCBITaxon:104662","l":"Chitinophaga japonensis","na":1,"nb":2,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A104662","Chitinophaga japonensis"],["NCBITaxon%3A1121281","Chitinophaga japonensis DSM 13484"]]},{"id":"NCBITaxon:1046624","l":"Lactococcus lactis subsp. lactis IO-1","na":1,"nb":2,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1358","Lactococcus lactis"],["NCBITaxon%3A1046624","Lactococcus lactis subsp. lactis IO-1"]]},{"id":"NCBITaxon:1048339","l":"Sporichthya polymorpha DSM 43042","na":1,"nb":2,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A35751","Sporichthya polymorpha"],["NCBITaxon%3A1048339","Sporichthya polymorpha DSM 43042"]]},{"id":"NCBITaxon:1048394","l":"Compostimonas suwonensis","na":2,"nb":1,"a":[["agricultural-waste-material-envo-01000371.html","agricultural waste material"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A1048394","Compostimonas suwonensis"]]},{"id":"NCBITaxon:1049790","l":"","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A29506","Leptospira inadai"],["NCBITaxon%3A1049790","Leptospira inadai serovar Lyme str. 10"]]},{"id":"NCBITaxon:1052258","l":"Arenimonas daechungensis","na":2,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"],["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1052258","Arenimonas daechungensis"]]},{"id":"NCBITaxon:105229","l":"Neobacillus fumarioli","na":1,"nb":2,"a":[["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A105229","Neobacillus fumarioli"],["NCBITaxon%3A1314754","Neobacillus fumarioli NBRC 102428"]]},{"id":"NCBITaxon:1052585","l":"","na":1,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A96241","Bacillus spizizenii"],["NCBITaxon%3A1052585","Bacillus spizizenii TU-B-10"]]},{"id":"NCBITaxon:1052802","l":"Crenarchaeota archaeon SCGC AAA471-B23","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052802","Crenarchaeota archaeon SCGC AAA471-B23"]]},{"id":"NCBITaxon:1052803","l":"Crenarchaeota archaeon SCGC AAA471-C03","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052803","Crenarchaeota archaeon SCGC AAA471-C03"]]},{"id":"NCBITaxon:1052804","l":"Crenarchaeota archaeon SCGC AAA471-L13","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052804","Crenarchaeota archaeon SCGC AAA471-L13"]]},{"id":"NCBITaxon:1052805","l":"Crenarchaeota archaeon SCGC AAA471-L14","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052805","Crenarchaeota archaeon SCGC AAA471-L14"]]},{"id":"NCBITaxon:1052806","l":"Crenarchaeota archaeon SCGC AAA471-O08","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052806","Crenarchaeota archaeon SCGC AAA471-O08"]]},{"id":"NCBITaxon:1052810","l":"Calescamantes bacterium SCGC AAA471-M6","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052810","Calescamantes bacterium SCGC AAA471-M6"]]},{"id":"NCBITaxon:1052811","l":"Candidatus Fervidibacteria bacterium JGI 0000001-B9","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052811","Candidatus Fervidibacteria bacterium JGI 0000001-B9"]]},{"id":"NCBITaxon:1052812","l":"Candidatus Fervidibacteria bacterium JGI 0000001-D5","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052812","Candidatus Fervidibacteria bacterium JGI 0000001-D5"]]},{"id":"NCBITaxon:1052813","l":"Candidatus Fervidibacteria bacterium JGI 0000001-G10","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052813","Candidatus Fervidibacteria bacterium JGI 0000001-G10"]]},{"id":"NCBITaxon:1052814","l":"Candidatus Fervidibacteria bacterium JGI 0000054-H05","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052814","Candidatus Fervidibacteria bacterium JGI 0000054-H05"]]},{"id":"NCBITaxon:1052828","l":"Aigarchaeota archaeon SCGC AAA471-E16","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052828","Aigarchaeota archaeon SCGC AAA471-E16"]]},{"id":"NCBITaxon:1052829","l":"Candidatus Calditenuaceae archaeon SCGC AAA471-F17","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052829","Candidatus Calditenuaceae archaeon SCGC AAA471-F17"]]},{"id":"NCBITaxon:1052830","l":"Aigarchaeota archaeon SCGC AAA471-G05","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052830","Aigarchaeota archaeon SCGC AAA471-G05"]]},{"id":"NCBITaxon:1052831","l":"Aigarchaeota archaeon SCGC AAA471-I13","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052831","Aigarchaeota archaeon SCGC AAA471-I13"]]},{"id":"NCBITaxon:1052832","l":"Aigarchaeota archaeon SCGC AAA471-J07","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052832","Aigarchaeota archaeon SCGC AAA471-J07"]]},{"id":"NCBITaxon:1052833","l":"Aigarchaeota archaeon SCGC AAA471-J08","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052833","Aigarchaeota archaeon SCGC AAA471-J08"]]},{"id":"NCBITaxon:1052838","l":"Aigarchaeota archaeon JGI 0000001-A7","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052838","Aigarchaeota archaeon JGI 0000001-A7"]]},{"id":"NCBITaxon:1052839","l":"Aigarchaeota archaeon JGI 0000001-B8","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052839","Aigarchaeota archaeon JGI 0000001-B8"]]},{"id":"NCBITaxon:1052841","l":"Aigarchaeota archaeon JGI 0000001-H6","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052841","Aigarchaeota archaeon JGI 0000001-H6"]]},{"id":"NCBITaxon:1054034","l":"Arcobacter cloacae","na":2,"nb":1,"a":[["sludge-envo-00002044.html","sludge"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A1054034","Arcobacter cloacae"]]},{"id":"NCBITaxon:1054041","l":"Levilactobacillus yonginensis","na":2,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A1054041","Levilactobacillus yonginensis"]]},{"id":"NCBITaxon:1054498","l":"Rivihabitans pingtungensis","na":2,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A1054498","Rivihabitans pingtungensis"]]},{"id":"NCBITaxon:1054860","l":"","na":1,"nb":2,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A1951","Streptomyces purpureus"],["NCBITaxon%3A1054860","Streptomyces purpureus KA281"]]},{"id":"NCBITaxon:1054862","l":"Streptomyces bottropensis ATCC 25435","na":1,"nb":2,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A42235","Streptomyces bottropensis"],["NCBITaxon%3A1054862","Streptomyces bottropensis ATCC 25435"]]},{"id":"NCBITaxon:1055524","l":"Burkholderia cenocepacia (strain H111)","na":2,"nb":1,"a":[["k-562-cell-bto-0000664.html","K-562 cell"],["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A1055524","Burkholderia cenocepacia H111"]]},{"id":"NCBITaxon:105559","l":"Nitrosococcus watsonii C-113","na":1,"nb":2,"a":[["sea-envo-00000016.html","sea"]],"b":[["NCBITaxon%3A473531","Nitrosococcus watsonii"],["NCBITaxon%3A105559","Nitrosococcus watsonii C-113"]]},{"id":"NCBITaxon:105560","l":"Methylibium petroleiphilum","na":1,"nb":2,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"]],"b":[["NCBITaxon%3A105560","Methylibium petroleiphilum"],["NCBITaxon%3A420662","Methylibium petroleiphilum PM1"]]},{"id":"NCBITaxon:1056807","l":"Morococcus cerebrosus","na":2,"nb":1,"a":[["neonate-bto-0001762.html","neonate"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A1056807","Morococcus cerebrosus"]]},{"id":"NCBITaxon:1056982","l":"Gordonia phosphorivorans","na":1,"nb":2,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1056982","Gordonia phosphorivorans"],["NCBITaxon%3A375757","Streptomyces fildesensis"]]},{"id":"NCBITaxon:105972","l":"Methylosarcina fibrata","na":1,"nb":2,"a":[["stream-envo-00000023.html","stream"]],"b":[["NCBITaxon%3A105972","Methylosarcina fibrata"],["NCBITaxon%3A1132443","Methylosarcina fibrata AML-C10"]]},{"id":"NCBITaxon:1064535","l":"Megasphaera elsdenii DSM 20460","na":1,"nb":2,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A907","Megasphaera elsdenii"],["NCBITaxon%3A1064535","Megasphaera elsdenii DSM 20460"]]},{"id":"NCBITaxon:106634","l":"Thioalkalivibrio versutus","na":1,"nb":2,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A106634","Thioalkalivibrio versutus"],["NCBITaxon%3A886877","Thioalkalivibrio versutus AL 2"]]},{"id":"NCBITaxon:1068978","l":"Amycolatopsis methanolica 239","na":1,"nb":2,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A1814","Amycolatopsis methanolica"],["NCBITaxon%3A1068978","Amycolatopsis methanolica 239"]]},{"id":"NCBITaxon:1069221","l":"Mycolicibacillus parakoreensis","na":2,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"],["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A1069221","Mycolicibacillus parakoreensis"]]},{"id":"NCBITaxon:1073081","l":"","na":2,"nb":1,"a":[["foam-habitatmech-bacdive-df2f59b773.html","Foam"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A489913","Halarchaeum nitratireducens"]]},{"id":"NCBITaxon:1073250","l":"Desulfamplus magnetovallimortis BW-1","na":1,"nb":2,"a":[["brackish-water-body-envo-01001321.html","brackish water body"]],"b":[["NCBITaxon%3A1246637","Desulfamplus magnetovallimortis"],["NCBITaxon%3A1073250","Desulfamplus magnetovallimortis BW-1"]]},{"id":"NCBITaxon:1073972","l":"Candidatus Arthromitus sp. SFB-mouse-NYU","na":2,"nb":1,"a":[["lamina-propria-bto-0002330.html","lamina propria"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1073972","Candidatus Arthromitus sp. SFB-mouse-NYU"]]},{"id":"NCBITaxon:1074000","l":"Cronobacter universalis NCTC 9529","na":1,"nb":2,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A535744","Cronobacter universalis"],["NCBITaxon%3A1074000","Cronobacter universalis NCTC 9529"]]},{"id":"NCBITaxon:1074049","l":"Candidatus Burkholderia crenata","na":2,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"],["seedling-bto-0001228.html","seedling"]],"b":[["NCBITaxon%3A1074049","Candidatus Burkholderia crenata"]]},{"id":"NCBITaxon:1074311","l":"Vibrio alfacsensis","na":2,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A1074311","Vibrio alfacsensis"]]},{"id":"NCBITaxon:1075090","l":"Gordonia amarae NBRC 15530","na":1,"nb":2,"a":[["foam-habitatmech-bacdive-df2f59b773.html","Foam"]],"b":[["NCBITaxon%3A36821","Gordonia amarae"],["NCBITaxon%3A1075090","Gordonia amarae NBRC 15530"]]},{"id":"NCBITaxon:1076331","l":"Arsenicicoccus dermatophilus","na":2,"nb":1,"a":[["foot-bto-0000476.html","foot"],["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["NCBITaxon%3A1076331","Arsenicicoccus dermatophilus"]]},{"id":"NCBITaxon:1076596","l":"Acetobacter persici","na":1,"nb":2,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A1076596","Acetobacter persici"],["NCBITaxon%3A1236503","Acetobacter persici JCM 25330"]]},{"id":"NCBITaxon:1077144","l":"Dietzia alimentaria 72","na":1,"nb":2,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A665550","Dietzia alimentaria"],["NCBITaxon%3A1077144","Dietzia alimentaria 72"]]},{"id":"NCBITaxon:1077285","l":"Bacteroides faecis MAJ27","na":1,"nb":2,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A674529","Bacteroides faecis"],["NCBITaxon%3A1077285","Bacteroides faecis MAJ27"]]},{"id":"NCBITaxon:1077976","l":"","na":1,"nb":2,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A84595","Gordonia polyisoprenivorans"],["NCBITaxon%3A1077976","Gordonia polyisoprenivorans NBRC 16320 = JCM 10675"]]},{"id":"NCBITaxon:1078846","l":"Methylovulum miyakonense HT12","na":1,"nb":2,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A645578","Methylovulum miyakonense"],["NCBITaxon%3A1078846","Methylovulum miyakonense HT12"]]},{"id":"NCBITaxon:1080071","l":"Streptococcus orisasini","na":2,"nb":1,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"],["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A1080071","Streptococcus orisasini"]]},{"id":"NCBITaxon:1080712","l":"Methanomassiliicoccus luminyensis","na":1,"nb":2,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A1080712","Methanomassiliicoccus luminyensis"],["NCBITaxon%3A1175296","Methanomassiliicoccus luminyensis B10"]]},{"id":"NCBITaxon:1081094","l":"Legionella pneumophila subsp. pneumophila str. Hextuple_2q","na":2,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"],["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A1081094","Legionella pneumophila subsp. pneumophila str. Hextuple_2q"]]},{"id":"NCBITaxon:1081095","l":"Legionella pneumophila subsp. pneumophila str. Hextuple_3a","na":2,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"],["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A1081095","Legionella pneumophila subsp. pneumophila str. Hextuple_3a"]]},{"id":"NCBITaxon:1081736","l":"Listeria fleischmannii subsp. coloradonensis","na":1,"nb":2,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A1069827","Listeria fleischmannii"],["NCBITaxon%3A1081736","Listeria fleischmannii subsp. coloradonensis"]]},{"id":"NCBITaxon:1082345","l":"Sphingobium boeckii","na":2,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A1082345","Sphingobium boeckii"]]},{"id":"NCBITaxon:1082932","l":"Agrobacterium tumefaciens CCNWGS0286","na":2,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"],["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A1082932","Agrobacterium tumefaciens CCNWGS0286"]]},{"id":"NCBITaxon:1084","l":"Pararhodospirillum photometricum","na":1,"nb":2,"a":[["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A1084","Pararhodospirillum photometricum"],["NCBITaxon%3A1150469","Pararhodospirillum photometricum DSM 122"]]},{"id":"NCBITaxon:1084519","l":"Nibribacter koreensis","na":2,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"],["brackish-water-body-envo-01001321.html","brackish water body"]],"b":[["NCBITaxon%3A1084519","Nibribacter koreensis"]]},{"id":"NCBITaxon:1087449","l":"Aquimarina agarilytica","na":1,"nb":2,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A1087449","Aquimarina agarilytica"],["NCBITaxon%3A620914","Aquimarina agarilytica ZC1"]]},{"id":"NCBITaxon:1088875","l":"Francisella philomiragia FSC145","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A28110","Francisella philomiragia"],["NCBITaxon%3A1088875","Francisella philomiragia FSC145"]]},{"id":"NCBITaxon:1089439","l":"","na":1,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A270495","Fangia hongkongensis"],["NCBITaxon%3A1089439","Fangia hongkongensis FSC776 = DSM 21703"]]},{"id":"NCBITaxon:1089453","l":"Gordonia sputi NBRC 100414","na":1,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A36823","Gordonia sputi"],["NCBITaxon%3A1089453","Gordonia sputi NBRC 100414"]]},{"id":"NCBITaxon:1089545","l":"Amycolatopsis balhimycina FH 1894","na":1,"nb":2,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A208443","Amycolatopsis balhimycina"],["NCBITaxon%3A1089545","Amycolatopsis balhimycina FH 1894"]]},{"id":"NCBITaxon:1089546","l":"Actinopolyspora halophila DSM 43834","na":1,"nb":2,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["NCBITaxon%3A1850","Actinopolyspora halophila"],["NCBITaxon%3A1089546","Actinopolyspora halophila DSM 43834"]]},{"id":"NCBITaxon:1089548","l":"Thermicanus aegyptius DSM 12793","na":1,"nb":2,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A94009","Thermicanus aegyptius"],["NCBITaxon%3A1089548","Thermicanus aegyptius DSM 12793"]]},{"id":"NCBITaxon:1090319","l":"Sphingomonas phyllosphaerae FA2","na":1,"nb":2,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A257003","Sphingomonas phyllosphaerae"],["NCBITaxon%3A1090319","Sphingomonas phyllosphaerae FA2"]]},{"id":"NCBITaxon:1090322","l":"Methanolobus tindarius DSM 2278","na":1,"nb":2,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A2221","Methanolobus tindarius"],["NCBITaxon%3A1090322","Methanolobus tindarius DSM 2278"]]},{"id":"NCBITaxon:1090375","l":"Candidatus Burkholderia pumila","na":2,"nb":1,"a":[["mesophyll-bto-0000858.html","mesophyll"],["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A1090375","Candidatus Burkholderia pumila"]]},{"id":"NCBITaxon:1090379","l":"Candidatus Burkholderia brachyanthoides","na":2,"nb":1,"a":[["mesophyll-bto-0000858.html","mesophyll"],["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A1090379","Candidatus Burkholderia brachyanthoides"]]},{"id":"NCBITaxon:1090471","l":"Candidatus Burkholderia humilis","na":2,"nb":1,"a":[["mesophyll-bto-0000858.html","mesophyll"],["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A1090471","Candidatus Burkholderia humilis"]]},{"id":"NCBITaxon:1091494","l":"Methylotuvimicrobium alcaliphilum 20Z","na":1,"nb":2,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A271065","Methylotuvimicrobium alcaliphilum"],["NCBITaxon%3A1091494","Methylotuvimicrobium alcaliphilum 20Z"]]},{"id":"NCBITaxon:1094","l":"Chlorobium phaeovibrioides","na":1,"nb":2,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A1094","Chlorobium phaeovibrioides"],["NCBITaxon%3A290318","Chlorobium phaeovibrioides DSM 265"]]},{"id":"NCBITaxon:1094555","l":"Bartonella elizabethae F9251 = ATCC 49927","na":1,"nb":2,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A807","Bartonella elizabethae"],["NCBITaxon%3A1094555","Bartonella elizabethae F9251 = ATCC 49927"]]},{"id":"NCBITaxon:109472","l":"Bisgaardia hudsonensis","na":2,"nb":1,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A109472","Bisgaardia hudsonensis"]]},{"id":"NCBITaxon:1095727","l":"Streptococcus sp. SK643","na":1,"nb":2,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A1306","Streptococcus sp."],["NCBITaxon%3A1095727","Streptococcus sp. SK643"]]},{"id":"NCBITaxon:1095745","l":"Haemophilus parainfluenzae HK262","na":1,"nb":2,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A729","Haemophilus parainfluenzae"],["NCBITaxon%3A1095745","Haemophilus parainfluenzae HK262"]]},{"id":"NCBITaxon:1095749","l":"Pasteurella bettyae CCUG 2042","na":1,"nb":2,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A752","Pasteurella bettyae"],["NCBITaxon%3A1095749","Pasteurella bettyae CCUG 2042"]]},{"id":"NCBITaxon:1096091","l":"Labrys methylaminiphilus JLW10","na":1,"nb":2,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A298598","Labrys methylaminiphilus"],["NCBITaxon%3A1096091","Labrys methylaminiphilus JLW10"]]},{"id":"NCBITaxon:1096243","l":"Idiomarina piscisalsi","na":2,"nb":1,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A1096243","Idiomarina piscisalsi"]]},{"id":"NCBITaxon:1096246","l":"Hungatella effluvii","na":2,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A1096246","Hungatella effluvii"]]},{"id":"NCBITaxon:1096930","l":"Novosphingobium lindaniclasticum LE124","na":1,"nb":2,"a":[["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A1329895","Novosphingobium lindaniclasticum"],["NCBITaxon%3A1096930","Novosphingobium lindaniclasticum LE124"]]},{"id":"NCBITaxon:1096995","l":"Acinetobacter baumannii BJAB07104","na":2,"nb":1,"a":[["ascites-bto-0000091.html","ascites"],["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"]],"b":[["NCBITaxon%3A1096995","Acinetobacter baumannii BJAB07104"]]},{"id":"NCBITaxon:1096996","l":"Acinetobacter baumannii BJAB0715","na":2,"nb":1,"a":[["ascites-bto-0000091.html","ascites"],["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"]],"b":[["NCBITaxon%3A1096996","Acinetobacter baumannii BJAB0715"]]},{"id":"NCBITaxon:1096997","l":"Acinetobacter baumannii BJAB0868","na":2,"nb":1,"a":[["ascites-bto-0000091.html","ascites"],["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"]],"b":[["NCBITaxon%3A1096997","Acinetobacter baumannii BJAB0868"]]},{"id":"NCBITaxon:1097","l":"Chlorobaculum tepidum","na":1,"nb":2,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A1097","Chlorobaculum tepidum"],["NCBITaxon%3A194439","Chlorobaculum tepidum TLS"]]},{"id":"NCBITaxon:109936","l":"Cladochytrium replicatum","na":2,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["NCBITaxon%3A109936","Cladochytrium replicatum"]]},{"id":"NCBITaxon:1099853","l":"Coprobacter fastidiosus","na":1,"nb":2,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A1099853","Coprobacter fastidiosus"],["NCBITaxon%3A1349822","Coprobacter fastidiosus NSB1 = JCM 33896"]]},{"id":"NCBITaxon:1100","l":"Pelodictyon luteolum","na":1,"nb":2,"a":[["brackish-water-body-envo-01001321.html","brackish water body"]],"b":[["NCBITaxon%3A1100","Pelodictyon luteolum"],["NCBITaxon%3A319225","Pelodictyon luteolum DSM 273"]]},{"id":"NCBITaxon:1100720","l":"Limnohabitans sp. Rim28","na":1,"nb":2,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A1907725","Limnohabitans sp."],["NCBITaxon%3A1100720","Limnohabitans sp. Rim28"]]},{"id":"NCBITaxon:1100833","l":"Chlamydia trachomatis F/SWFPminus","na":2,"nb":1,"a":[["respiratory-system-bto-0000203.html","respiratory system"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A1100833","Chlamydia trachomatis F/SWFPminus"]]},{"id":"NCBITaxon:110163","l":"Thermococcus aggregans","na":2,"nb":1,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A110163","Thermococcus aggregans"]]},{"id":"NCBITaxon:1104571","l":"Thaumarchaeota archaeon SCGC AB-179-E04","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1104571","Thaumarchaeota archaeon SCGC AB-179-E04"]]},{"id":"NCBITaxon:1104575","l":"Diapherotrites archaeon SCGC AAA011-K09","na":2,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1104575","Diapherotrites archaeon SCGC AAA011-K09"]]},{"id":"NCBITaxon:1104576","l":"Candidatus Iainarchaeum andersonii SCGC AAA011-E11","na":2,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1104576","Candidatus Iainarchaeum andersonii SCGC AAA011-E11"]]},{"id":"NCBITaxon:1104577","l":"Nanoarchaeota archaeon SCGC AAA011-G17","na":2,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1104577","Nanoarchaeota archaeon SCGC AAA011-G17"]]},{"id":"NCBITaxon:1104580","l":"Nanoarchaeota archaeon SCGC AAA011-L15","na":2,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1104580","Nanoarchaeota archaeon SCGC AAA011-L15"]]},{"id":"NCBITaxon:1104607","l":"Microgenomates bacterium SCGC AAA011-A19","na":2,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1104607","Microgenomates bacterium SCGC AAA011-A19"]]},{"id":"NCBITaxon:1104609","l":"Microgenomates bacterium SCGC AAA011-M05","na":2,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1104609","Microgenomates bacterium SCGC AAA011-M05"]]},{"id":"NCBITaxon:1104610","l":"Microgenomates bacterium SCGC AAA011-B20","na":2,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1104610","Microgenomates bacterium SCGC AAA011-B20"]]},{"id":"NCBITaxon:1104614","l":"Microgenomates bacterium SCGC AAA011-I21","na":2,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1104614","Microgenomates bacterium SCGC AAA011-I21"]]},{"id":"NCBITaxon:1104615","l":"Microgenomates bacterium SCGC AAA011-L05","na":2,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1104615","Microgenomates bacterium SCGC AAA011-L05"]]},{"id":"NCBITaxon:110637","l":"Arthrobacter sp. 'SMCC G980'","na":2,"nb":1,"a":[["biofilm-material-envo-01000156.html","biofilm material"],["farm-envo-00000078.html","farm"]],"b":[["NCBITaxon%3A110637","Arthrobacter sp. 'SMCC G980'"]]},{"id":"NCBITaxon:110648","l":"Arthrobacter sp. 'SMCC ZAT013'","na":2,"nb":1,"a":[["biofilm-material-envo-01000156.html","biofilm material"],["farm-envo-00000078.html","farm"]],"b":[["NCBITaxon%3A110648","Arthrobacter sp. 'SMCC ZAT013'"]]},{"id":"NCBITaxon:1107882","l":"Mesorhizobium alhagi CCNWXJ12-2","na":1,"nb":2,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A475067","Allomesorhizobium alhagi"],["NCBITaxon%3A1107882","Mesorhizobium alhagi CCNWXJ12-2"]]},{"id":"NCBITaxon:110935","l":"Agreia bicolorata","na":2,"nb":1,"a":[["plant-gall-po-0025626.html","plant gall"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["NCBITaxon%3A110935","Agreia bicolorata"]]},{"id":"NCBITaxon:110936","l":"Rathayibacter caricis","na":1,"nb":2,"a":[["skin-bto-0001253.html","skin"]],"b":[["NCBITaxon%3A110936","Rathayibacter caricis"],["NCBITaxon%3A1328867","Rathayibacter caricis DSM 15933"]]},{"id":"NCBITaxon:1110509","l":"","na":2,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["cob-bto-0000266.html","cob"]],"b":[["NCBITaxon%3A1110509","Methanothrix harundinacea 6Ac"]]},{"id":"NCBITaxon:1110546","l":"Veillonella tobetsuensis","na":2,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A1110546","Veillonella tobetsuensis"]]},{"id":"NCBITaxon:1110697","l":"Nocardia asteroides NBRC 15531","na":1,"nb":2,"a":[["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1824","Nocardia asteroides"],["NCBITaxon%3A1110697","Nocardia asteroides NBRC 15531"]]},{"id":"NCBITaxon:111143","l":"Alishewanella fetalis","na":2,"nb":1,"a":[["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"]],"b":[["NCBITaxon%3A111143","Alishewanella fetalis"]]},{"id":"NCBITaxon:1111729","l":"Corynebacterium sputi DSM 45148","na":1,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A489915","Corynebacterium sputi"],["NCBITaxon%3A1111729","Corynebacterium sputi DSM 45148"]]},{"id":"NCBITaxon:1111730","l":"Flavobacterium antarcticum DSM 19726","na":1,"nb":2,"a":[["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A271155","Flavobacterium antarcticum"],["NCBITaxon%3A1111730","Flavobacterium antarcticum DSM 19726"]]},{"id":"NCBITaxon:1111733","l":"Massilia alkalitolerans DSM 17462","na":1,"nb":2,"a":[["undersea-feature-envo-00000104.html","undersea feature"]],"b":[["NCBITaxon%3A286638","Massilia alkalitolerans"],["NCBITaxon%3A1111733","Massilia alkalitolerans DSM 17462"]]},{"id":"NCBITaxon:1111734","l":"Acidipropionibacterium acidipropionici DSM 4900","na":1,"nb":2,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["NCBITaxon%3A1748","Acidipropionibacterium acidipropionici"],["NCBITaxon%3A1111734","Acidipropionibacterium acidipropionici DSM 4900"]]},{"id":"NCBITaxon:1112204","l":"Gordonia polyisoprenivorans VH2","na":1,"nb":2,"a":[["latex-bto-0000710.html","latex"]],"b":[["NCBITaxon%3A84595","Gordonia polyisoprenivorans"],["NCBITaxon%3A1112204","Gordonia polyisoprenivorans VH2"]]},{"id":"NCBITaxon:1112856","l":"Mycoplasmoides pneumoniae 309","na":2,"nb":1,"a":[["sputum-bto-0001297.html","sputum"],["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A1112856","Mycoplasmoides pneumoniae 309"]]},{"id":"NCBITaxon:1114960","l":"Rhodococcus pyridinivorans AK37","na":2,"nb":1,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A1114960","Rhodococcus pyridinivorans AK37"]]},{"id":"NCBITaxon:1114962","l":"Actinoalloteichus spitiensis RMV-1378","na":1,"nb":2,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A252394","Actinoalloteichus spitiensis"],["NCBITaxon%3A1114962","Actinoalloteichus spitiensis RMV-1378"]]},{"id":"NCBITaxon:1114965","l":"Streptococcus parasanguinis FW213","na":2,"nb":1,"a":[["tooth-bto-0000397.html","tooth"],["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A1114965","Streptococcus parasanguinis FW213"]]},{"id":"NCBITaxon:111564","l":"Kineosphaera limosa","na":1,"nb":2,"a":[["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["NCBITaxon%3A111564","Kineosphaera limosa"],["NCBITaxon%3A1184609","Kineosphaera limosa NBRC 100340"]]},{"id":"NCBITaxon:1116472","l":"Methyloglobulus morosus KoM1","na":1,"nb":2,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1410681","Methyloglobulus morosus"],["NCBITaxon%3A1116472","Methyloglobulus morosus KoM1"]]},{"id":"NCBITaxon:1117316","l":"Pseudoalteromonas marina DSM 17587","na":1,"nb":2,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["NCBITaxon%3A267375","Pseudoalteromonas marina"],["NCBITaxon%3A1117316","Pseudoalteromonas marina DSM 17587"]]},{"id":"NCBITaxon:1117379","l":"Neobacillus bataviensis LMG 21833","na":1,"nb":2,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A220685","Neobacillus bataviensis"],["NCBITaxon%3A1117379","Neobacillus bataviensis LMG 21833"]]},{"id":"NCBITaxon:111780","l":"Stanieria cyanosphaera PCC 7437","na":2,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["pond-envo-00000033.html","pond"]],"b":[["NCBITaxon%3A111780","Stanieria cyanosphaera PCC 7437"]]},{"id":"NCBITaxon:1118153","l":"Halomonas sp. GFAJ-1","na":1,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A1486246","Halomonas sp."],["NCBITaxon%3A1118153","Halomonas sp. GFAJ-1"]]},{"id":"NCBITaxon:1118379","l":"Mycolicibacter minnesotensis","na":2,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A1118379","Mycolicibacter minnesotensis"]]},{"id":"NCBITaxon:1120920","l":"Acidaminobacter hydrogenoformans DSM 2784","na":1,"nb":2,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["NCBITaxon%3A65403","Acidaminobacter hydrogenoformans"],["NCBITaxon%3A1120920","Acidaminobacter hydrogenoformans DSM 2784"]]},{"id":"NCBITaxon:1120921","l":"Acidaminococcus intestini DSM 21505","na":1,"nb":2,"a":[["hospital-envo-00002173.html","hospital"]],"b":[["NCBITaxon%3A187327","Acidaminococcus intestini"],["NCBITaxon%3A1120921","Acidaminococcus intestini DSM 21505"]]},{"id":"NCBITaxon:1120926","l":"Acinetobacter gerneri DSM 14967 = CIP 107464 = MTCC 9824","na":1,"nb":2,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A202952","Acinetobacter gerneri"],["NCBITaxon%3A1120926","Acinetobacter gerneri DSM 14967 = CIP 107464 = MTCC 9824"]]},{"id":"NCBITaxon:1120932","l":"Actinotignum schaalii DSM 15541","na":1,"nb":2,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A59505","Actinotignum schaalii"],["NCBITaxon%3A1120932","Actinotignum schaalii DSM 15541"]]},{"id":"NCBITaxon:1120933","l":"Actinotignum urinale DSM 15805","na":1,"nb":2,"a":[["urethra-bto-0001426.html","urethra"]],"b":[["NCBITaxon%3A190146","Actinotignum urinale"],["NCBITaxon%3A1120933","Actinotignum urinale DSM 15805"]]},{"id":"NCBITaxon:1120934","l":"Actinokineospora enzanensis DSM 44649","na":1,"nb":2,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A155975","Actinokineospora enzanensis"],["NCBITaxon%3A1120934","Actinokineospora enzanensis DSM 44649"]]},{"id":"NCBITaxon:1120941","l":"Actinomyces dentalis DSM 19115","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A272548","Actinomyces dentalis"],["NCBITaxon%3A1120941","Actinomyces dentalis DSM 19115"]]},{"id":"NCBITaxon:1120942","l":"","na":1,"nb":2,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A52768","Schaalia georgiae"],["NCBITaxon%3A1120942","Schaalia georgiae DSM 6843"]]},{"id":"NCBITaxon:1120943","l":"Actinomyces gerencseriae DSM 6844","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A52769","Actinomyces gerencseriae"],["NCBITaxon%3A1120943","Actinomyces gerencseriae DSM 6844"]]},{"id":"NCBITaxon:1120944","l":"Actinomyces israelii DSM 43320","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A1659","Actinomyces israelii"],["NCBITaxon%3A1120944","Actinomyces israelii DSM 43320"]]},{"id":"NCBITaxon:1120946","l":"","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A121163","Schaalia suimastitidis"],["NCBITaxon%3A1120946","Schaalia suimastitidis DSM 15538"]]},{"id":"NCBITaxon:1120948","l":"Actinomycetospora chiangmaiensis DSM 45062","na":1,"nb":2,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A402650","Actinomycetospora chiangmaiensis"],["NCBITaxon%3A1120948","Actinomycetospora chiangmaiensis DSM 45062"]]},{"id":"NCBITaxon:1120957","l":"","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A714","Aggregatibacter actinomycetemcomitans"],["NCBITaxon%3A1120957","Aggregatibacter actinomycetemcomitans DSM 8324"]]},{"id":"NCBITaxon:1120958","l":"Agrococcus lahaulensis DSM 17612","na":1,"nb":2,"a":[["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A341722","Agrococcus lahaulensis"],["NCBITaxon%3A1120958","Agrococcus lahaulensis DSM 17612"]]},{"id":"NCBITaxon:1120960","l":"Agromyces subbeticus DSM 16689","na":1,"nb":2,"a":[["cave-envo-00000067.html","cave"]],"b":[["NCBITaxon%3A293890","Agromyces subbeticus"],["NCBITaxon%3A1120960","Agromyces subbeticus DSM 16689"]]},{"id":"NCBITaxon:1120962","l":"","na":1,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A232846","Alcaligenes phenolicus"],["NCBITaxon%3A1120962","Alcaligenes phenolicus DSM 16503"]]},{"id":"NCBITaxon:1120970","l":"Aliagarivorans taiwanensis DSM 22990","na":1,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A561966","Aliagarivorans taiwanensis"],["NCBITaxon%3A1120970","Aliagarivorans taiwanensis DSM 22990"]]},{"id":"NCBITaxon:1120971","l":"Alicyclobacillus contaminans DSM 17975","na":1,"nb":2,"a":[["city-envo-00000856.html","city"]],"b":[["NCBITaxon%3A1120971","Alicyclobacillus contaminans DSM 17975"],["NCBITaxon%3A392016","Paenalicyclobacillus contaminans"]]},{"id":"NCBITaxon:1120973","l":"Effusibacillus pohliae DSM 22757","na":1,"nb":2,"a":[["mount-envo-00000477.html","mount"]],"b":[["NCBITaxon%3A232270","Effusibacillus pohliae"],["NCBITaxon%3A1120973","Effusibacillus pohliae DSM 22757"]]},{"id":"NCBITaxon:1120979","l":"Alloscardovia omnicolens DSM 21503","na":1,"nb":2,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A419015","Alloscardovia omnicolens"],["NCBITaxon%3A1120979","Alloscardovia omnicolens DSM 21503"]]},{"id":"NCBITaxon:1120994","l":"Anaerosphaera aminiphila","na":1,"nb":2,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A1120994","Anaerosphaera aminiphila"],["NCBITaxon%3A1120995","Anaerosphaera aminiphila DSM 21120"]]},{"id":"NCBITaxon:1120996","l":"Anaerosporobacter mobilis DSM 15930","na":1,"nb":2,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A264463","Anaerosporobacter mobilis"],["NCBITaxon%3A1120996","Anaerosporobacter mobilis DSM 15930"]]},{"id":"NCBITaxon:1121002","l":"Aneurinibacillus terranovensis DSM 18919","na":1,"nb":2,"a":[["ridge-envo-00000283.html","ridge"]],"b":[["NCBITaxon%3A278991","Aneurinibacillus terranovensis"],["NCBITaxon%3A1121002","Aneurinibacillus terranovensis DSM 18919"]]},{"id":"NCBITaxon:1121004","l":"Aquaspirillum serpens DSM 68","na":1,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"]],"b":[["NCBITaxon%3A190","Aquaspirillum serpens"],["NCBITaxon%3A1121004","Aquaspirillum serpens DSM 68"]]},{"id":"NCBITaxon:1121005","l":"Aquimarina brevivitae DSM 17196","na":1,"nb":2,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["NCBITaxon%3A323412","Aquimarina brevivitae"],["NCBITaxon%3A1121005","Aquimarina brevivitae DSM 17196"]]},{"id":"NCBITaxon:1121011","l":"Arenibacter certesii DSM 19833","na":1,"nb":2,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A228955","Arenibacter certesii"],["NCBITaxon%3A1121011","Arenibacter certesii DSM 19833"]]},{"id":"NCBITaxon:1121017","l":"Arsenicicoccus bolidensis DSM 15745","na":1,"nb":2,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A229480","Arsenicicoccus bolidensis"],["NCBITaxon%3A1121017","Arsenicicoccus bolidensis DSM 15745"]]},{"id":"NCBITaxon:1121020","l":"Haematomicrobium sanguinis DSM 21259","na":1,"nb":2,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A479106","Haematomicrobium sanguinis"],["NCBITaxon%3A1121020","Haematomicrobium sanguinis DSM 21259"]]},{"id":"NCBITaxon:1121027","l":"Aurantimonas coralicida DSM 14790","na":1,"nb":2,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A182270","Aurantimonas coralicida"],["NCBITaxon%3A1121027","Aurantimonas coralicida DSM 14790"]]},{"id":"NCBITaxon:1121034","l":"Niveispirillum irakense DSM 11586","na":1,"nb":2,"a":[["rice-field-envo-00000296.html","rice field"]],"b":[["NCBITaxon%3A34011","Niveispirillum irakense"],["NCBITaxon%3A1121034","Niveispirillum irakense DSM 11586"]]},{"id":"NCBITaxon:1121035","l":"Azovibrio restrictus DSM 23866","na":1,"nb":2,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A146938","Azovibrio restrictus"],["NCBITaxon%3A1121035","Azovibrio restrictus DSM 23866"]]},{"id":"NCBITaxon:1121088","l":"","na":1,"nb":2,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1398","Heyndrickxia coagulans"],["NCBITaxon%3A1121088","Heyndrickxia coagulans DSM 1 = ATCC 7050"]]},{"id":"NCBITaxon:1121090","l":"Siminovitchia fordii DSM 16014 = CIP 108821","na":1,"nb":2,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["NCBITaxon%3A254759","Siminovitchia fordii"],["NCBITaxon%3A1121090","Siminovitchia fordii DSM 16014 = CIP 108821"]]},{"id":"NCBITaxon:1121093","l":"Ectobacillus panaciterrae DSM 19096","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A363872","Ectobacillus panaciterrae"],["NCBITaxon%3A1121093","Ectobacillus panaciterrae DSM 19096"]]},{"id":"NCBITaxon:1121098","l":"Phocaeicola massiliensis B84634 = Timone 84634 = DSM 17679 = JCM 13223","na":1,"nb":2,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A204516","Phocaeicola massiliensis"],["NCBITaxon%3A1121098","Phocaeicola massiliensis B84634 = Timone 84634 = DSM 17679 = JCM 13223"]]},{"id":"NCBITaxon:1121100","l":"","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A310300","Bacteroides pyogenes"],["NCBITaxon%3A1121100","Bacteroides pyogenes DSM 20611 = JCM 6294"]]},{"id":"NCBITaxon:1121102","l":"Campylobacter ureolyticus DSM 20703","na":1,"nb":2,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A827","Campylobacter ureolyticus"],["NCBITaxon%3A1121102","Campylobacter ureolyticus DSM 20703"]]},{"id":"NCBITaxon:1121103","l":"Balneatrix alpica DSM 16621","na":1,"nb":2,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"]],"b":[["NCBITaxon%3A75684","Balneatrix alpica"],["NCBITaxon%3A1121103","Balneatrix alpica DSM 16621"]]},{"id":"NCBITaxon:1121104","l":"Balneola vulgaris DSM 17893","na":1,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"]],"b":[["NCBITaxon%3A287535","Balneola vulgaris"],["NCBITaxon%3A1121104","Balneola vulgaris DSM 17893"]]},{"id":"NCBITaxon:1121107","l":"Bifidobacterium choerinum DSM 20434","na":1,"nb":2,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A35760","Bifidobacterium choerinum"],["NCBITaxon%3A1121107","Bifidobacterium choerinum DSM 20434"]]},{"id":"NCBITaxon:1121108","l":"Bifidobacterium magnum DSM 20222","na":1,"nb":2,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A1692","Bifidobacterium magnum"],["NCBITaxon%3A1121108","Bifidobacterium magnum DSM 20222"]]},{"id":"NCBITaxon:1121114","l":"Blautia producta ATCC 27340 = DSM 2950","na":1,"nb":2,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A33035","Blautia producta"],["NCBITaxon%3A1121114","Blautia producta ATCC 27340 = DSM 2950"]]},{"id":"NCBITaxon:1121115","l":"Blautia wexlerae DSM 19850","na":1,"nb":2,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A418240","Blautia wexlerae"],["NCBITaxon%3A1121115","Blautia wexlerae DSM 19850"]]},{"id":"NCBITaxon:1121116","l":"Allobrachymonas chironomi DSM 19884","na":1,"nb":2,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["NCBITaxon%3A491919","Allobrachymonas chironomi"],["NCBITaxon%3A1121116","Allobrachymonas chironomi DSM 19884"]]},{"id":"NCBITaxon:1121122","l":"Brevibacterium album DSM 18261","na":1,"nb":2,"a":[["undersea-feature-envo-00000104.html","undersea feature"]],"b":[["NCBITaxon%3A417948","Brevibacterium album"],["NCBITaxon%3A1121122","Brevibacterium album DSM 18261"]]},{"id":"NCBITaxon:1121123","l":"Brevundimonas aveniformis DSM 17977","na":1,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A370977","Brevundimonas aveniformis"],["NCBITaxon%3A1121123","Brevundimonas aveniformis DSM 17977"]]},{"id":"NCBITaxon:1121124","l":"Brevundimonas bacteroides DSM 4726","na":1,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"]],"b":[["NCBITaxon%3A74311","Brevundimonas bacteroides"],["NCBITaxon%3A1121124","Brevundimonas bacteroides DSM 4726"]]},{"id":"NCBITaxon:1121125","l":"Brevundimonas naejangsanensis DSM 23858","na":1,"nb":2,"a":[["mountain-envo-00000081.html","mountain"]],"b":[["NCBITaxon%3A588932","Brevundimonas naejangsanensis"],["NCBITaxon%3A1121125","Brevundimonas naejangsanensis DSM 23858"]]},{"id":"NCBITaxon:1121126","l":"Brochothrix thermosphacta DSM 20171 = FSL F6-1036","na":1,"nb":2,"a":[["food-product-foodon-00001002.html","food product"]],"b":[["NCBITaxon%3A2756","Brochothrix thermosphacta"],["NCBITaxon%3A1121126","Brochothrix thermosphacta DSM 20171 = FSL F6-1036"]]},{"id":"NCBITaxon:1121255","l":"Caenimonas koreensis DSM 17982","na":1,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A367474","Caenimonas koreensis"],["NCBITaxon%3A1121255","Caenimonas koreensis DSM 17982"]]},{"id":"NCBITaxon:1121259","l":"Caldicellulosiruptor acetigenus DSM 7040","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A301953","Caldicellulosiruptor acetigenus"],["NCBITaxon%3A1121259","Caldicellulosiruptor acetigenus DSM 7040"]]},{"id":"NCBITaxon:1121268","l":"Campylobacter curvus DSM 6644","na":1,"nb":2,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A200","Campylobacter curvus"],["NCBITaxon%3A1121268","Campylobacter curvus DSM 6644"]]},{"id":"NCBITaxon:1121271","l":"Gemmobacter nectariphilus DSM 15620","na":1,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A220343","Gemmobacter nectariphilus"],["NCBITaxon%3A1121271","Gemmobacter nectariphilus DSM 15620"]]},{"id":"NCBITaxon:1121278","l":"Chitinimonas koreensis DSM 17726","na":1,"nb":2,"a":[["undersea-feature-envo-00000104.html","undersea feature"]],"b":[["NCBITaxon%3A356302","Chitinimonas koreensis"],["NCBITaxon%3A1121278","Chitinimonas koreensis DSM 17726"]]},{"id":"NCBITaxon:1121279","l":"Chitinimonas taiwanensis DSM 18899","na":1,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"]],"b":[["NCBITaxon%3A240412","Chitinimonas taiwanensis"],["NCBITaxon%3A1121279","Chitinimonas taiwanensis DSM 18899"]]},{"id":"NCBITaxon:1121285","l":"","na":1,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A365343","Epilithonimonas caeni"],["NCBITaxon%3A1121285","Epilithonimonas caeni DSM 17710"]]},{"id":"NCBITaxon:1121286","l":"Chryseobacterium daeguense DSM 19388","na":1,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A412438","Chryseobacterium daeguense"],["NCBITaxon%3A1121286","Chryseobacterium daeguense DSM 19388"]]},{"id":"NCBITaxon:1121290","l":"Clostridium acetireducens DSM 10703","na":1,"nb":2,"a":[["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["NCBITaxon%3A76489","Clostridium acetireducens"],["NCBITaxon%3A1121290","Clostridium acetireducens DSM 10703"]]},{"id":"NCBITaxon:1121297","l":"Anaerocolumna aminovalerica DSM 1283","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A1527","Anaerocolumna aminovalerica"],["NCBITaxon%3A1121297","Anaerocolumna aminovalerica DSM 1283"]]},{"id":"NCBITaxon:1121298","l":"Clostridium amylolyticum","na":1,"nb":2,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1121298","Clostridium amylolyticum"],["NCBITaxon%3A1121299","Clostridium amylolyticum DSM 21864"]]},{"id":"NCBITaxon:1121306","l":"Clostridium collagenovorans DSM 3089","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A29357","Clostridium collagenovorans"],["NCBITaxon%3A1121306","Clostridium collagenovorans DSM 3089"]]},{"id":"NCBITaxon:1121308","l":"Clostridioides difficile ATCC 9689 = DSM 1296","na":1,"nb":2,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A1496","Clostridioides difficile"],["NCBITaxon%3A1121308","Clostridioides difficile ATCC 9689 = DSM 1296"]]},{"id":"NCBITaxon:1121322","l":"Anaerocolumna jejuensis DSM 15929","na":1,"nb":2,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A259063","Anaerocolumna jejuensis"],["NCBITaxon%3A1121322","Anaerocolumna jejuensis DSM 15929"]]},{"id":"NCBITaxon:1121326","l":"Clostridium magnum DSM 2767","na":1,"nb":2,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A33954","Clostridium magnum"],["NCBITaxon%3A1121326","Clostridium magnum DSM 2767"]]},{"id":"NCBITaxon:1121333","l":"Thomasclavelia saccharogumia DSM 17460","na":1,"nb":2,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A341225","Thomasclavelia saccharogumia"],["NCBITaxon%3A1121333","Thomasclavelia saccharogumia DSM 17460"]]},{"id":"NCBITaxon:1121343","l":"Clostridium uliginosum DSM 12992","na":1,"nb":2,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["NCBITaxon%3A119641","Clostridium uliginosum"],["NCBITaxon%3A1121343","Clostridium uliginosum DSM 12992"]]},{"id":"NCBITaxon:1121345","l":"Anaerocolumna xylanovorans DSM 12503","na":1,"nb":2,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A100134","Anaerocolumna xylanovorans"],["NCBITaxon%3A1121345","Anaerocolumna xylanovorans DSM 12503"]]},{"id":"NCBITaxon:1121348","l":"Comamonas badia DSM 17552","na":1,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A265291","Comamonas badia"],["NCBITaxon%3A1121348","Comamonas badia DSM 17552"]]},{"id":"NCBITaxon:1121351","l":"Conchiformibius kuhniae DSM 17694","na":1,"nb":2,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["NCBITaxon%3A211502","Conchiformibius kuhniae"],["NCBITaxon%3A1121351","Conchiformibius kuhniae DSM 17694"]]},{"id":"NCBITaxon:1121353","l":"Corynebacterium callunae DSM 20147","na":1,"nb":2,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1721","Corynebacterium callunae"],["NCBITaxon%3A1121353","Corynebacterium callunae DSM 20147"]]},{"id":"NCBITaxon:1121355","l":"Corynebacterium caspium DSM 44850","na":1,"nb":2,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"]],"b":[["NCBITaxon%3A234828","Corynebacterium caspium"],["NCBITaxon%3A1121355","Corynebacterium caspium DSM 44850"]]},{"id":"NCBITaxon:1121356","l":"Corynebacterium ciconiae DSM 44920","na":1,"nb":2,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A227319","Corynebacterium ciconiae"],["NCBITaxon%3A1121356","Corynebacterium ciconiae DSM 44920"]]},{"id":"NCBITaxon:1121362","l":"Corynebacterium halotolerans YIM 70093 = DSM 44683","na":1,"nb":2,"a":[["undersea-feature-envo-00000104.html","undersea feature"]],"b":[["NCBITaxon%3A225326","Corynebacterium halotolerans"],["NCBITaxon%3A1121362","Corynebacterium halotolerans YIM 70093 = DSM 44683"]]},{"id":"NCBITaxon:1121365","l":"Corynebacterium mastitidis DSM 44356","na":1,"nb":2,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["NCBITaxon%3A161890","Corynebacterium mastitidis"],["NCBITaxon%3A1121365","Corynebacterium mastitidis DSM 44356"]]},{"id":"NCBITaxon:1121367","l":"Corynebacterium propinquum DSM 44285","na":1,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A43769","Corynebacterium propinquum"],["NCBITaxon%3A1121367","Corynebacterium propinquum DSM 44285"]]},{"id":"NCBITaxon:1121370","l":"Corynebacterium ulceribovis DSM 45146","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A487732","Corynebacterium ulceribovis"],["NCBITaxon%3A1121370","Corynebacterium ulceribovis DSM 45146"]]},{"id":"NCBITaxon:1121372","l":"Gryllotalpicola ginsengisoli DSM 22003","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A444608","Gryllotalpicola ginsengisoli"],["NCBITaxon%3A1121372","Gryllotalpicola ginsengisoli DSM 22003"]]},{"id":"NCBITaxon:1121378","l":"Deinococcus aquatilis DSM 23025","na":1,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A519440","Deinococcus aquatilis"],["NCBITaxon%3A1121378","Deinococcus aquatilis DSM 23025"]]},{"id":"NCBITaxon:1121380","l":"Deinococcus frigens DSM 12807","na":1,"nb":2,"a":[["dry-valley-envo-00000128.html","dry valley"]],"b":[["NCBITaxon%3A249403","Deinococcus frigens"],["NCBITaxon%3A1121380","Deinococcus frigens DSM 12807"]]},{"id":"NCBITaxon:1121383","l":"Deinococcus murrayi DSM 11303","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A68910","Deinococcus murrayi"],["NCBITaxon%3A1121383","Deinococcus murrayi DSM 11303"]]},{"id":"NCBITaxon:1121384","l":"","na":1,"nb":2,"a":[["food-product-foodon-00001002.html","food product"]],"b":[["NCBITaxon%3A1299","Deinococcus radiodurans"],["NCBITaxon%3A243230","Deinococcus radiodurans R1 = ATCC 13939 = DSM 20539"]]},{"id":"NCBITaxon:1121387","l":"","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A1863","Dermatophilus congolensis"],["NCBITaxon%3A1121387","Dermatophilus congolensis DSM 44180 = NBRC 105199"]]},{"id":"NCBITaxon:1121389","l":"Desmospora activa DSM 45169","na":1,"nb":2,"a":[["tuberculosis-habitatmech-bacdive-e5d21f85b7.html","Tuberculosis"]],"b":[["NCBITaxon%3A500615","Desmospora activa"],["NCBITaxon%3A1121389","Desmospora activa DSM 45169"]]},{"id":"NCBITaxon:1121394","l":"Desulfatirhabdium butyrativorans DSM 18734","na":1,"nb":2,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A340467","Desulfatirhabdium butyrativorans"],["NCBITaxon%3A1121394","Desulfatirhabdium butyrativorans DSM 18734"]]},{"id":"NCBITaxon:1121410","l":"Desulfoluna butyratoxydans DSM 19427","na":1,"nb":2,"a":[["brackish-water-body-envo-01001321.html","brackish water body"]],"b":[["NCBITaxon%3A231438","Desulfoluna butyratoxydans"],["NCBITaxon%3A1121410","Desulfoluna butyratoxydans DSM 19427"]]},{"id":"NCBITaxon:1121411","l":"Desulfomicrobium escambiense DSM 10707","na":1,"nb":2,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A29503","Desulfomicrobium escambiense"],["NCBITaxon%3A1121411","Desulfomicrobium escambiense DSM 10707"]]},{"id":"NCBITaxon:1121412","l":"","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A380392","Thermodesulfomicrobium thermophilum"],["NCBITaxon%3A1121412","Thermodesulfomicrobium thermophilum DSM 16697"]]},{"id":"NCBITaxon:1121415","l":"Desulfonauticus autotrophicus DSM 4206","na":1,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A564288","Desulfonauticus autotrophicus"],["NCBITaxon%3A1121415","Desulfonauticus autotrophicus DSM 4206"]]},{"id":"NCBITaxon:1121418","l":"Desulforhopalus singaporensis DSM 12130","na":1,"nb":2,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A91360","Desulforhopalus singaporensis"],["NCBITaxon%3A1121418","Desulforhopalus singaporensis DSM 12130"]]},{"id":"NCBITaxon:1121419","l":"Desulfosporosinus hippei DSM 8344","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A569859","Desulfosporosinus hippei"],["NCBITaxon%3A1121419","Desulfosporosinus hippei DSM 8344"]]},{"id":"NCBITaxon:1121420","l":"Desulfosporosinus lacus DSM 15449","na":1,"nb":2,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A329936","Desulfosporosinus lacus"],["NCBITaxon%3A1121420","Desulfosporosinus lacus DSM 15449"]]},{"id":"NCBITaxon:1121422","l":"","na":1,"nb":2,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A265477","Desulfotruncus alcoholivorax"],["NCBITaxon%3A1121422","Desulfotruncus alcoholivorax DSM 16058"]]},{"id":"NCBITaxon:1121424","l":"Desulfotruncus arcticus DSM 17038","na":1,"nb":2,"a":[["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A341036","Desulfotruncus arcticus"],["NCBITaxon%3A1121424","Desulfotruncus arcticus DSM 17038"]]},{"id":"NCBITaxon:1121425","l":"Desulfofundulus australicus DSM 11792","na":1,"nb":2,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A1566","Desulfofundulus australicus"],["NCBITaxon%3A1121425","Desulfofundulus australicus DSM 11792"]]},{"id":"NCBITaxon:1121426","l":"Desulfoscipio geothermicus DSM 3669","na":1,"nb":2,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A39060","Desulfoscipio geothermicus"],["NCBITaxon%3A1121426","Desulfoscipio geothermicus DSM 3669"]]},{"id":"NCBITaxon:1121438","l":"","na":1,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A81406","Solidesulfovibrio alcoholivorans"],["NCBITaxon%3A1121438","Solidesulfovibrio alcoholivorans DSM 5433"]]},{"id":"NCBITaxon:1121440","l":"Desulfovibrio aminophilus DSM 12254","na":1,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A81425","Desulfovibrio aminophilus"],["NCBITaxon%3A1121440","Desulfovibrio aminophilus DSM 12254"]]},{"id":"NCBITaxon:1121443","l":"Desulfovibrio cuneatus DSM 11391","na":1,"nb":2,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A159728","Desulfovibrio cuneatus"],["NCBITaxon%3A1121443","Desulfovibrio cuneatus DSM 11391"]]},{"id":"NCBITaxon:1121452","l":"","na":1,"nb":2,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A575978","Humidesulfovibrio idahonensis"],["NCBITaxon%3A1121452","Humidesulfovibrio idahonensis DSM 15450"]]},{"id":"NCBITaxon:1121455","l":"Desulfovibrio litoralis DSM 11393","na":1,"nb":2,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A466107","Desulfovibrio litoralis"],["NCBITaxon%3A1121455","Desulfovibrio litoralis DSM 11393"]]},{"id":"NCBITaxon:1121459","l":"Desulfovibrio oxyclinae DSM 11498","na":1,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A63560","Desulfovibrio oxyclinae"],["NCBITaxon%3A1121459","Desulfovibrio oxyclinae DSM 11498"]]},{"id":"NCBITaxon:1121467","l":"Maridesulfovibrio zosterae DSM 11974","na":1,"nb":2,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A82171","Maridesulfovibrio zosterae"],["NCBITaxon%3A1121467","Maridesulfovibrio zosterae DSM 11974"]]},{"id":"NCBITaxon:1121478","l":"Diaphorobacter oryzae DSM 22780","na":1,"nb":2,"a":[["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["NCBITaxon%3A491745","Diaphorobacter oryzae"],["NCBITaxon%3A1121478","Diaphorobacter oryzae DSM 22780"]]},{"id":"NCBITaxon:1121482","l":"Dyadobacter beijingensis DSM 21582","na":1,"nb":2,"a":[["park-envo-00000562.html","park"]],"b":[["NCBITaxon%3A365489","Dyadobacter beijingensis"],["NCBITaxon%3A1121482","Dyadobacter beijingensis DSM 21582"]]},{"id":"NCBITaxon:1121483","l":"Dyadobacter crusticola DSM 16708","na":1,"nb":2,"a":[["plateau-envo-00000182.html","plateau"]],"b":[["NCBITaxon%3A292407","Dyadobacter crusticola"],["NCBITaxon%3A1121483","Dyadobacter crusticola DSM 16708"]]},{"id":"NCBITaxon:1121485","l":"","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A45254","Indolivaga capnocytophagoides"],["NCBITaxon%3A1121485","Indolivaga capnocytophagoides DSM 22835"]]},{"id":"NCBITaxon:1121830","l":"Fodinicurvata fenggangensis","na":1,"nb":2,"a":[["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A1121830","Fodinicurvata fenggangensis"],["NCBITaxon%3A570967","Fodinicurvata fenggangensis DSM 21160"]]},{"id":"NCBITaxon:1121861","l":"Elioraea tepidiphila DSM 17972","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A457934","Elioraea tepidiphila"],["NCBITaxon%3A1121861","Elioraea tepidiphila DSM 17972"]]},{"id":"NCBITaxon:1121862","l":"Endozoicomonas elysicola DSM 22380","na":1,"nb":2,"a":[["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A305900","Endozoicomonas elysicola"],["NCBITaxon%3A1121862","Endozoicomonas elysicola DSM 22380"]]},{"id":"NCBITaxon:1121867","l":"Enterovibrio calviensis DSM 14347","na":1,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A91359","Enterovibrio calviensis"],["NCBITaxon%3A1121867","Enterovibrio calviensis DSM 14347"]]},{"id":"NCBITaxon:1121868","l":"Enterovibrio nigricans DSM 22720","na":1,"nb":2,"a":[["mediterranean-envo-01000207.html","mediterranean"]],"b":[["NCBITaxon%3A504469","Enterovibrio nigricans"],["NCBITaxon%3A1121868","Enterovibrio nigricans DSM 22720"]]},{"id":"NCBITaxon:1121873","l":"Erysipelothrix inopinata DSM 15511","na":1,"nb":2,"a":[["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["NCBITaxon%3A225084","Erysipelothrix inopinata"],["NCBITaxon%3A1121873","Erysipelothrix inopinata DSM 15511"]]},{"id":"NCBITaxon:1121879","l":"Ferrimonas kyonanensis DSM 18153","na":1,"nb":2,"a":[["beach-envo-00000091.html","beach"]],"b":[["NCBITaxon%3A364763","Ferrimonas kyonanensis"],["NCBITaxon%3A1121879","Ferrimonas kyonanensis DSM 18153"]]},{"id":"NCBITaxon:1121883","l":"Fervidobacterium gondwanense DSM 13020","na":1,"nb":2,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A44754","Fervidobacterium gondwanense"],["NCBITaxon%3A1121883","Fervidobacterium gondwanense DSM 13020"]]},{"id":"NCBITaxon:1121889","l":"Flavobacterium filum DSM 17961","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A370974","Flavobacterium filum"],["NCBITaxon%3A1121889","Flavobacterium filum DSM 17961"]]},{"id":"NCBITaxon:1121895","l":"","na":1,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"]],"b":[["NCBITaxon%3A498301","Flavobacterium rivuli"],["NCBITaxon%3A1121895","Flavobacterium rivuli WB 3.3-2 = DSM 21788"]]},{"id":"NCBITaxon:1121896","l":"Flavobacterium sasangense DSM 21067","na":1,"nb":2,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A503361","Flavobacterium sasangense"],["NCBITaxon%3A1121896","Flavobacterium sasangense DSM 21067"]]},{"id":"NCBITaxon:1121898","l":"Flavobacterium subsaxonicum WB 4.1-42 = DSM 21790","na":1,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"]],"b":[["NCBITaxon%3A426226","Flavobacterium subsaxonicum"],["NCBITaxon%3A1121898","Flavobacterium subsaxonicum WB 4.1-42 = DSM 21790"]]},{"id":"NCBITaxon:1121902","l":"Eisenibacter elegans DSM 3317","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A997","Eisenibacter elegans"],["NCBITaxon%3A1121902","Eisenibacter elegans DSM 3317"]]},{"id":"NCBITaxon:1121903","l":"Hugenholtzia roseola DSM 9546","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A1002","Hugenholtzia roseola"],["NCBITaxon%3A1121903","Hugenholtzia roseola DSM 9546"]]},{"id":"NCBITaxon:1121904","l":"Flexithrix dorotheae DSM 6795","na":1,"nb":2,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A70993","Flexithrix dorotheae"],["NCBITaxon%3A1121904","Flexithrix dorotheae DSM 6795"]]},{"id":"NCBITaxon:1121906","l":"Fructobacillus durionis DSM 19113","na":1,"nb":2,"a":[["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A283737","Fructobacillus durionis"],["NCBITaxon%3A1121906","Fructobacillus durionis DSM 19113"]]},{"id":"NCBITaxon:1121914","l":"Gemella cuniculi DSM 15828","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A150240","Gemella cuniculi"],["NCBITaxon%3A1121914","Gemella cuniculi DSM 15828"]]},{"id":"NCBITaxon:1121926","l":"Glycomyces arizonensis DSM 44726","na":1,"nb":2,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A256035","Glycomyces arizonensis"],["NCBITaxon%3A1121926","Glycomyces arizonensis DSM 44726"]]},{"id":"NCBITaxon:1121928","l":"Gordonia shandongensis DSM 45094","na":1,"nb":2,"a":[["undersea-feature-envo-00000104.html","undersea feature"]],"b":[["NCBITaxon%3A376351","Gordonia shandongensis"],["NCBITaxon%3A1121928","Gordonia shandongensis DSM 45094"]]},{"id":"NCBITaxon:1121931","l":"Christiangramia echinicola DSM 19838","na":1,"nb":2,"a":[["inlet-envo-00000475.html","inlet"]],"b":[["NCBITaxon%3A279359","Christiangramia echinicola"],["NCBITaxon%3A1121931","Christiangramia echinicola DSM 19838"]]},{"id":"NCBITaxon:1121933","l":"Granulicoccus phenolivorans DSM 17626 = NBRC 107789 = JCM 15570","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A266854","Granulicoccus phenolivorans"],["NCBITaxon%3A1121933","Granulicoccus phenolivorans DSM 17626 = NBRC 107789 = JCM 15570"]]},{"id":"NCBITaxon:1121936","l":"Halalkalibacillus halophilus DSM 18494","na":1,"nb":2,"a":[["city-envo-00000856.html","city"]],"b":[["NCBITaxon%3A392827","Halalkalibacillus halophilus"],["NCBITaxon%3A1121936","Halalkalibacillus halophilus DSM 18494"]]},{"id":"NCBITaxon:1121940","l":"Halomonas halocynthiae DSM 14573","na":1,"nb":2,"a":[["inlet-envo-00000475.html","inlet"]],"b":[["NCBITaxon%3A176290","Halomonas halocynthiae"],["NCBITaxon%3A1121940","Halomonas halocynthiae DSM 14573"]]},{"id":"NCBITaxon:1121941","l":"Halomonas halodenitrificans DSM 735","na":1,"nb":2,"a":[["food-product-foodon-00001002.html","food product"]],"b":[["NCBITaxon%3A28252","Halomonas halodenitrificans"],["NCBITaxon%3A1121941","Halomonas halodenitrificans DSM 735"]]},{"id":"NCBITaxon:1121943","l":"Modicisalibacter luteus DSM 23508","na":1,"nb":2,"a":[["undersea-feature-envo-00000104.html","undersea feature"]],"b":[["NCBITaxon%3A453962","Modicisalibacter luteus"],["NCBITaxon%3A1121943","Modicisalibacter luteus DSM 23508"]]},{"id":"NCBITaxon:1121945","l":"Halorubrum ezzemoulense DSM 17463","na":1,"nb":2,"a":[["sabkha-envo-00000151.html","sabkha"]],"b":[["NCBITaxon%3A337243","Halorubrum ezzemoulense"],["NCBITaxon%3A1121945","Halorubrum ezzemoulense DSM 17463"]]},{"id":"NCBITaxon:1121946","l":"Hamadaea tsunoensis DSM 44101","na":1,"nb":2,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A53368","Hamadaea tsunoensis"],["NCBITaxon%3A1121946","Hamadaea tsunoensis DSM 44101"]]},{"id":"NCBITaxon:1121949","l":"Henriciella marina DSM 19595","na":1,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A453851","Henriciella marina"],["NCBITaxon%3A1121949","Henriciella marina DSM 19595"]]},{"id":"NCBITaxon:1121953","l":"Hymenobacter aerophilus DSM 13606","na":1,"nb":2,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A119644","Hymenobacter aerophilus"],["NCBITaxon%3A1121953","Hymenobacter aerophilus DSM 13606"]]},{"id":"NCBITaxon:1121955","l":"Hymenobacter daecheongensis DSM 21074","na":1,"nb":2,"a":[["dam-envo-00000074.html","dam"]],"b":[["NCBITaxon%3A496053","Hymenobacter daecheongensis"],["NCBITaxon%3A1121955","Hymenobacter daecheongensis DSM 21074"]]},{"id":"NCBITaxon:1121957","l":"Hymenobacter norwichensis DSM 15439","na":1,"nb":2,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A223903","Hymenobacter norwichensis"],["NCBITaxon%3A1121957","Hymenobacter norwichensis DSM 15439"]]},{"id":"NCBITaxon:1122132","l":"Kaistia granuli DSM 23481","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A363259","Kaistia granuli"],["NCBITaxon%3A1122132","Kaistia granuli DSM 23481"]]},{"id":"NCBITaxon:1122138","l":"Kribbella catacumbae DSM 19601","na":1,"nb":2,"a":[["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A460086","Kribbella catacumbae"],["NCBITaxon%3A1122138","Kribbella catacumbae DSM 19601"]]},{"id":"NCBITaxon:1122152","l":"Lactobacillus psittaci DSM 15354","na":1,"nb":2,"a":[["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A116089","Lactobacillus psittaci"],["NCBITaxon%3A1122152","Lactobacillus psittaci DSM 15354"]]},{"id":"NCBITaxon:1122153","l":"Ligilactobacillus saerimneri DSM 16049","na":1,"nb":2,"a":[["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A228229","Ligilactobacillus saerimneri"],["NCBITaxon%3A1122153","Ligilactobacillus saerimneri DSM 16049"]]},{"id":"NCBITaxon:1122154","l":"Pseudolactococcus chungangensis CAU 28 = DSM 22330","na":1,"nb":2,"a":[["foam-habitatmech-bacdive-df2f59b773.html","Foam"]],"b":[["NCBITaxon%3A451457","Pseudolactococcus chungangensis"],["NCBITaxon%3A1122154","Pseudolactococcus chungangensis CAU 28 = DSM 22330"]]},{"id":"NCBITaxon:1122155","l":"Lactonifactor longoviformis DSM 17459","na":1,"nb":2,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A341220","Lactonifactor longoviformis"],["NCBITaxon%3A1122155","Lactonifactor longoviformis DSM 17459"]]},{"id":"NCBITaxon:1122156","l":"Lampropedia hyalina DSM 16112","na":1,"nb":2,"a":[["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A198706","Lampropedia hyalina"],["NCBITaxon%3A1122156","Lampropedia hyalina DSM 16112"]]},{"id":"NCBITaxon:1122159","l":"Leeuwenhoekiella marinoflava DSM 3653","na":1,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A988","Leeuwenhoekiella marinoflava"],["NCBITaxon%3A1122159","Leeuwenhoekiella marinoflava DSM 3653"]]},{"id":"NCBITaxon:1122162","l":"Legionella israelensis DSM 19235","na":1,"nb":2,"a":[["pond-envo-00000033.html","pond"]],"b":[["NCBITaxon%3A454","Legionella israelensis"],["NCBITaxon%3A1122162","Legionella israelensis DSM 19235"]]},{"id":"NCBITaxon:1122164","l":"Legionella lansingensis DSM 19556 = ATCC 49751","na":1,"nb":2,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["NCBITaxon%3A45067","Legionella lansingensis"],["NCBITaxon%3A1122164","Legionella lansingensis DSM 19556 = ATCC 49751"]]},{"id":"NCBITaxon:1122165","l":"Legionella moravica DSM 19234","na":1,"nb":2,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A39962","Legionella moravica"],["NCBITaxon%3A1122165","Legionella moravica DSM 19234"]]},{"id":"NCBITaxon:1122167","l":"Legionella quinlivanii DSM 21216","na":1,"nb":2,"a":[["air-conditioning-unit-envo-00002874.html","air conditioning unit"]],"b":[["NCBITaxon%3A45073","Legionella quinlivanii"],["NCBITaxon%3A1122167","Legionella quinlivanii DSM 21216"]]},{"id":"NCBITaxon:1122169","l":"Legionella shakespearei DSM 23087","na":1,"nb":2,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A45075","Legionella shakespearei"],["NCBITaxon%3A1122169","Legionella shakespearei DSM 23087"]]},{"id":"NCBITaxon:1122171","l":"Leptotrichia hofstadii DSM 21651","na":1,"nb":2,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A157688","Leptotrichia hofstadii"],["NCBITaxon%3A1122171","Leptotrichia hofstadii DSM 21651"]]},{"id":"NCBITaxon:1122173","l":"Leptotrichia trevisanii DSM 22070","na":1,"nb":2,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A109328","Leptotrichia trevisanii"],["NCBITaxon%3A1122173","Leptotrichia trevisanii DSM 22070"]]},{"id":"NCBITaxon:1122174","l":"Leptotrichia wadei DSM 19758","na":1,"nb":2,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A157687","Leptotrichia wadei"],["NCBITaxon%3A1122174","Leptotrichia wadei DSM 19758"]]},{"id":"NCBITaxon:1122175","l":"Leucobacter chironomi DSM 19883","na":1,"nb":2,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["NCBITaxon%3A491918","Leucobacter chironomi"],["NCBITaxon%3A1122175","Leucobacter chironomi DSM 19883"]]},{"id":"NCBITaxon:1122183","l":"Luteimonas mephitis DSM 12574","na":1,"nb":2,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"]],"b":[["NCBITaxon%3A83615","Luteimonas mephitis"],["NCBITaxon%3A1122183","Luteimonas mephitis DSM 12574"]]},{"id":"NCBITaxon:1122187","l":"Lysobacter oryzae DSM 21044","na":1,"nb":2,"a":[["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A498057","Lysobacter oryzae"],["NCBITaxon%3A1122187","Lysobacter oryzae DSM 21044"]]},{"id":"NCBITaxon:1122188","l":"Lysobacter spongiicola DSM 21749","na":1,"nb":2,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1122188","Lysobacter spongiicola DSM 21749"],["NCBITaxon%3A435289","Novilysobacter spongiicola"]]},{"id":"NCBITaxon:1122189","l":"Malonomonas rubra DSM 5091","na":1,"nb":2,"a":[["canal-envo-00000014.html","canal"]],"b":[["NCBITaxon%3A57040","Malonomonas rubra"],["NCBITaxon%3A1122189","Malonomonas rubra DSM 5091"]]},{"id":"NCBITaxon:1122200","l":"Marinobacterium jannaschii DSM 6295","na":1,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A64970","Marinobacterium jannaschii"],["NCBITaxon%3A1122200","Marinobacterium jannaschii DSM 6295"]]},{"id":"NCBITaxon:1122202","l":"Marinobacterium rhizophilum DSM 18822","na":1,"nb":2,"a":[["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A420402","Marinobacterium rhizophilum"],["NCBITaxon%3A1122202","Marinobacterium rhizophilum DSM 18822"]]},{"id":"NCBITaxon:1122213","l":"Maritalea myrionectae DSM 19524","na":1,"nb":2,"a":[["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["NCBITaxon%3A454601","Maritalea myrionectae"],["NCBITaxon%3A1122213","Maritalea myrionectae DSM 19524"]]},{"id":"NCBITaxon:1122214","l":"Martelella mediterranea DSM 17316","na":1,"nb":2,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A293089","Martelella mediterranea"],["NCBITaxon%3A1122214","Martelella mediterranea DSM 17316"]]},{"id":"NCBITaxon:1122215","l":"Massilia niastensis DSM 21313","na":1,"nb":2,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A544911","Massilia niastensis"],["NCBITaxon%3A1122215","Massilia niastensis DSM 21313"]]},{"id":"NCBITaxon:1122219","l":"Megasphaera cerevisiae DSM 20462","na":1,"nb":2,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A39029","Megasphaera cerevisiae"],["NCBITaxon%3A1122219","Megasphaera cerevisiae DSM 20462"]]},{"id":"NCBITaxon:1122221","l":"Meiothermus cerbereus DSM 11376","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A65552","Meiothermus cerbereus"],["NCBITaxon%3A1122221","Meiothermus cerbereus DSM 11376"]]},{"id":"NCBITaxon:1122222","l":"Meiothermus taiwanensis DSM 14542","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A172827","Meiothermus taiwanensis"],["NCBITaxon%3A1122222","Meiothermus taiwanensis DSM 14542"]]},{"id":"NCBITaxon:1122224","l":"","na":1,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A1122224","Neomelitea salexigens DSM 19753"],["NCBITaxon%3A354246","Spongiibacter marinus"]]},{"id":"NCBITaxon:1122236","l":"","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A17","Methylophilus methylotrophus"],["NCBITaxon%3A1122236","Methylophilus methylotrophus DSM 46235 = ATCC 53528"]]},{"id":"NCBITaxon:1122237","l":"Microbacterium gubbeenense DSM 15944","na":1,"nb":2,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["NCBITaxon%3A159896","Microbacterium gubbeenense"],["NCBITaxon%3A1122237","Microbacterium gubbeenense DSM 15944"]]},{"id":"NCBITaxon:1122241","l":"Moorella mulderi DSM 14980","na":1,"nb":2,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A1122241","Moorella mulderi DSM 14980"],["NCBITaxon%3A202604","Neomoorella mulderi"]]},{"id":"NCBITaxon:1122243","l":"Moraxella boevrei DSM 14165","na":1,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A346665","Faucicola boevrei"],["NCBITaxon%3A1122243","Moraxella boevrei DSM 14165"]]},{"id":"NCBITaxon:1122244","l":"Moraxella caprae DSM 19149","na":1,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A90240","Moraxella caprae"],["NCBITaxon%3A1122244","Moraxella caprae DSM 19149"]]},{"id":"NCBITaxon:1122247","l":"Mycolicibacterium hassiacum DSM 44199","na":1,"nb":2,"a":[["urethra-bto-0001426.html","urethra"]],"b":[["NCBITaxon%3A46351","Mycolicibacterium hassiacum"],["NCBITaxon%3A1122247","Mycolicibacterium hassiacum DSM 44199"]]},{"id":"NCBITaxon:1122252","l":"Marinospirillum celere","na":1,"nb":2,"a":[["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A1122252","Marinospirillum celere"],["NCBITaxon%3A497722","Marinospirillum celere DSM 18438"]]},{"id":"NCBITaxon:1122604","l":"Nevskia soli DSM 19509","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A418856","Nevskia soli"],["NCBITaxon%3A1122604","Nevskia soli DSM 19509"]]},{"id":"NCBITaxon:1122609","l":"Nocardioides halotolerans DSM 19273","na":1,"nb":2,"a":[["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A433660","Nocardioides halotolerans"],["NCBITaxon%3A1122609","Nocardioides halotolerans DSM 19273"]]},{"id":"NCBITaxon:1122611","l":"Nonomuraea coxensis DSM 45129","na":1,"nb":2,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A404386","Nonomuraea coxensis"],["NCBITaxon%3A1122611","Nonomuraea coxensis DSM 45129"]]},{"id":"NCBITaxon:1122615","l":"Oceanobacter kriegii DSM 6294","na":1,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A64972","Oceanobacter kriegii"],["NCBITaxon%3A1122615","Oceanobacter kriegii DSM 6294"]]},{"id":"NCBITaxon:1122618","l":"","na":1,"nb":2,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A1247","Oenococcus oeni"],["NCBITaxon%3A1122618","Oenococcus oeni DSM 20252 = AWRIB129"]]},{"id":"NCBITaxon:1122619","l":"Oligella ureolytica DSM 18253","na":1,"nb":2,"a":[["urethra-bto-0001426.html","urethra"]],"b":[["NCBITaxon%3A90244","Oligella ureolytica"],["NCBITaxon%3A1122619","Oligella ureolytica DSM 18253"]]},{"id":"NCBITaxon:1122919","l":"Paenibacillus ginsengihumi DSM 21568","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A431596","Paenibacillus ginsengihumi"],["NCBITaxon%3A1122919","Paenibacillus ginsengihumi DSM 21568"]]},{"id":"NCBITaxon:1122925","l":"Paenibacillus sanguinis 2301083 = DSM 16941","na":1,"nb":2,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A225906","Paenibacillus sanguinis"],["NCBITaxon%3A1122925","Paenibacillus sanguinis 2301083 = DSM 16941"]]},{"id":"NCBITaxon:1122930","l":"Papillibacter cinnamivorans DSM 12816","na":1,"nb":2,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A100176","Papillibacter cinnamivorans"],["NCBITaxon%3A1122930","Papillibacter cinnamivorans DSM 12816"]]},{"id":"NCBITaxon:1122938","l":"Pasteurella testudinis DSM 23072","na":1,"nb":2,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A761","Pasteurella testudinis"],["NCBITaxon%3A1122938","Pasteurella testudinis DSM 23072"]]},{"id":"NCBITaxon:1122939","l":"Patulibacter americanus DSM 16676","na":1,"nb":2,"a":[["plateau-envo-00000182.html","plateau"]],"b":[["NCBITaxon%3A588672","Patulibacter americanus"],["NCBITaxon%3A1122939","Patulibacter americanus DSM 16676"]]},{"id":"NCBITaxon:1122947","l":"Pelosinus fermentans DSM 17108","na":1,"nb":2,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A365349","Pelosinus fermentans"],["NCBITaxon%3A1122947","Pelosinus fermentans DSM 17108"]]},{"id":"NCBITaxon:1122951","l":"Perlucidibaca piscinae DSM 21586","na":1,"nb":2,"a":[["pond-envo-00000033.html","pond"]],"b":[["NCBITaxon%3A392589","Perlucidibaca piscinae"],["NCBITaxon%3A1122951","Perlucidibaca piscinae DSM 21586"]]},{"id":"NCBITaxon:1122953","l":"Petrotoga halophila DSM 16923","na":1,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A301141","Petrotoga halophila"],["NCBITaxon%3A1122953","Petrotoga halophila DSM 16923"]]},{"id":"NCBITaxon:1122955","l":"Petrotoga olearia DSM 13574","na":1,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A156203","Petrotoga olearia"],["NCBITaxon%3A1122955","Petrotoga olearia DSM 13574"]]},{"id":"NCBITaxon:1122956","l":"Petrotoga sibirica DSM 13575","na":1,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A156202","Petrotoga sibirica"],["NCBITaxon%3A1122956","Petrotoga sibirica DSM 13575"]]},{"id":"NCBITaxon:1122963","l":"Pleomorphomonas oryzae DSM 16300","na":1,"nb":2,"a":[["rice-field-envo-00000296.html","rice field"]],"b":[["NCBITaxon%3A261934","Pleomorphomonas oryzae"],["NCBITaxon%3A1122963","Pleomorphomonas oryzae DSM 16300"]]},{"id":"NCBITaxon:1122970","l":"","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A196588","Erythrobacter cryptus"],["NCBITaxon%3A1122970","Erythrobacter cryptus DSM 12079"]]},{"id":"NCBITaxon:1122980","l":"","na":1,"nb":2,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A305719","Segatella baroniae"],["NCBITaxon%3A1122980","Segatella baroniae DSM 16972 = JCM 13447"]]},{"id":"NCBITaxon:1122982","l":"Prevotella denticola DSM 20614 = JCM 13449","na":1,"nb":2,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["NCBITaxon%3A28129","Prevotella denticola"],["NCBITaxon%3A1122982","Prevotella denticola DSM 20614 = JCM 13449"]]},{"id":"NCBITaxon:1122983","l":"Prevotella falsenii DSM 22864 = JCM 15124","na":1,"nb":2,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["NCBITaxon%3A515414","Prevotella falsenii"],["NCBITaxon%3A1122983","Prevotella falsenii DSM 22864 = JCM 15124"]]},{"id":"NCBITaxon:1122988","l":"Hoylesella nanceiensis DSM 19126 = JCM 15639","na":1,"nb":2,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A425941","Hoylesella nanceiensis"],["NCBITaxon%3A1122988","Hoylesella nanceiensis DSM 19126 = JCM 15639"]]},{"id":"NCBITaxon:1122997","l":"Acidipropionibacterium jensenii DSM 20535","na":1,"nb":2,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["NCBITaxon%3A1749","Acidipropionibacterium jensenii"],["NCBITaxon%3A1122997","Acidipropionibacterium jensenii DSM 20535"]]},{"id":"NCBITaxon:1122998","l":"Acidipropionibacterium thoenii DSM 20276","na":1,"nb":2,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["NCBITaxon%3A1751","Acidipropionibacterium thoenii"],["NCBITaxon%3A1122998","Acidipropionibacterium thoenii DSM 20276"]]},{"id":"NCBITaxon:1122999","l":"Propionicicella superfundia DSM 22317","na":1,"nb":2,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A348582","Propionicicella superfundia"],["NCBITaxon%3A1122999","Propionicicella superfundia DSM 22317"]]},{"id":"NCBITaxon:1123004","l":"Propionispora vibrioides DSM 13305","na":1,"nb":2,"a":[["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A112903","Propionispora vibrioides"],["NCBITaxon%3A1123004","Propionispora vibrioides DSM 13305"]]},{"id":"NCBITaxon:1123006","l":"Propionivibrio pelophilus DSM 12018","na":1,"nb":2,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["NCBITaxon%3A65401","Propionivibrio pelophilus"],["NCBITaxon%3A1123006","Propionivibrio pelophilus DSM 12018"]]},{"id":"NCBITaxon:1123008","l":"Proteiniphilum acetatigenes DSM 18083","na":1,"nb":2,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A294710","Proteiniphilum acetatigenes"],["NCBITaxon%3A1123008","Proteiniphilum acetatigenes DSM 18083"]]},{"id":"NCBITaxon:1123013","l":"Pseudoclavibacter soli DSM 23366","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A452623","Pseudoclavibacter soli"],["NCBITaxon%3A1123013","Pseudoclavibacter soli DSM 23366"]]},{"id":"NCBITaxon:1123016","l":"Stutzerimonas balearica DSM 6083","na":1,"nb":2,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A74829","Stutzerimonas balearica"],["NCBITaxon%3A1123016","Stutzerimonas balearica DSM 6083"]]},{"id":"NCBITaxon:1123021","l":"Pseudomonas thermotolerans DSM 14292","na":1,"nb":2,"a":[["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A1123021","Pseudomonas thermotolerans DSM 14292"],["NCBITaxon%3A157784","Zestomonas thermotolerans"]]},{"id":"NCBITaxon:1123022","l":"Halopseudomonas xiamenensis DSM 22326","na":1,"nb":2,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A157792","Halopseudomonas xiamenensis"],["NCBITaxon%3A1123022","Halopseudomonas xiamenensis DSM 22326"]]},{"id":"NCBITaxon:1123027","l":"Pseudorhodobacter ferrugineus DSM 5888","na":1,"nb":2,"a":[["brackish-water-body-envo-01001321.html","brackish water body"]],"b":[["NCBITaxon%3A77008","Pseudorhodobacter ferrugineus"],["NCBITaxon%3A1123027","Pseudorhodobacter ferrugineus DSM 5888"]]},{"id":"NCBITaxon:1123030","l":"Pseudoxanthomonas kalamensis DSM 18571","na":1,"nb":2,"a":[["atoll-envo-00000166.html","atoll"]],"b":[["NCBITaxon%3A289483","Pseudoxanthomonas kalamensis"],["NCBITaxon%3A1123030","Pseudoxanthomonas kalamensis DSM 18571"]]},{"id":"NCBITaxon:1123031","l":"Pseudoxanthomonas taiwanensis DSM 22914","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A176598","Pseudoxanthomonas taiwanensis"],["NCBITaxon%3A1123031","Pseudoxanthomonas taiwanensis DSM 22914"]]},{"id":"NCBITaxon:1123034","l":"Psychrobacter phenylpyruvicus DSM 7000 = NBRC 102152","na":1,"nb":2,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A29432","Psychrobacter phenylpyruvicus"],["NCBITaxon%3A1123034","Psychrobacter phenylpyruvicus DSM 7000 = NBRC 102152"]]},{"id":"NCBITaxon:1123035","l":"Psychroflexus tropicus DSM 15496","na":1,"nb":2,"a":[["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A197345","Psychroflexus tropicus"],["NCBITaxon%3A1123035","Psychroflexus tropicus DSM 15496"]]},{"id":"NCBITaxon:1123052","l":"Rathayibacter toxicus DSM 7488","na":1,"nb":2,"a":[["bridge-envo-00000075.html","bridge"]],"b":[["NCBITaxon%3A145458","Rathayibacter toxicus"],["NCBITaxon%3A1123052","Rathayibacter toxicus DSM 7488"]]},{"id":"NCBITaxon:1123059","l":"Robiginitomaculum antarcticum DSM 21748","na":1,"nb":2,"a":[["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"]],"b":[["NCBITaxon%3A437507","Robiginitomaculum antarcticum"],["NCBITaxon%3A1123059","Robiginitomaculum antarcticum DSM 21748"]]},{"id":"NCBITaxon:1123060","l":"Roseomonas aerilata DSM 19363","na":1,"nb":2,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A452982","Muricoccus aerilatus"],["NCBITaxon%3A1123060","Roseomonas aerilata DSM 19363"]]},{"id":"NCBITaxon:1123061","l":"Neoroseomonas lacus DSM 19439","na":1,"nb":2,"a":[["undersea-feature-envo-00000104.html","undersea feature"]],"b":[["NCBITaxon%3A287609","Neoroseomonas lacus"],["NCBITaxon%3A1123061","Neoroseomonas lacus DSM 19439"]]},{"id":"NCBITaxon:1123064","l":"Roseomonas vinacea DSM 19362","na":1,"nb":2,"a":[["plateau-envo-00000182.html","plateau"]],"b":[["NCBITaxon%3A424704","Muricoccus vinaceus"],["NCBITaxon%3A1123064","Roseomonas vinacea DSM 19362"]]},{"id":"NCBITaxon:1123070","l":"Rubritalea marina DSM 17716","na":1,"nb":2,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A361055","Rubritalea marina"],["NCBITaxon%3A1123070","Rubritalea marina DSM 17716"]]},{"id":"NCBITaxon:1123072","l":"Rubritepida flocculans DSM 14296","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A182403","Rubritepida flocculans"],["NCBITaxon%3A1123072","Rubritepida flocculans DSM 14296"]]},{"id":"NCBITaxon:1123078","l":"Runella zeae DSM 19591","na":1,"nb":2,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A94255","Runella zeae"],["NCBITaxon%3A1123078","Runella zeae DSM 19591"]]},{"id":"NCBITaxon:1123225","l":"Spongiispira norvegica","na":1,"nb":2,"a":[["hemolymph-bto-0000572.html","hemolymph"]],"b":[["NCBITaxon%3A1123225","Spongiispira norvegica"],["NCBITaxon%3A354245","Spongiispira norvegica DSM 17749"]]},{"id":"NCBITaxon:1123229","l":"Salinarimonas rosea DSM 21201","na":1,"nb":2,"a":[["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A552063","Salinarimonas rosea"],["NCBITaxon%3A1123229","Salinarimonas rosea DSM 21201"]]},{"id":"NCBITaxon:1123230","l":"Salinicoccus albus DSM 19776","na":1,"nb":2,"a":[["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A418756","Salinicoccus albus"],["NCBITaxon%3A1123230","Salinicoccus albus DSM 19776"]]},{"id":"NCBITaxon:1123232","l":"Lacicoccus kunmingensis DSM 17847","na":1,"nb":2,"a":[["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A399363","Lacicoccus kunmingensis"],["NCBITaxon%3A1123232","Lacicoccus kunmingensis DSM 17847"]]},{"id":"NCBITaxon:1123238","l":"Atlantibacter subterranea DSM 16208","na":1,"nb":2,"a":[["ridge-envo-00000283.html","ridge"]],"b":[["NCBITaxon%3A1123238","Atlantibacter subterranea DSM 16208"],["NCBITaxon%3A255519","Atlantibacter subterraneus"]]},{"id":"NCBITaxon:1123241","l":"Nakamurella lactea DSM 19367","na":1,"nb":2,"a":[["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A459515","Nakamurella lactea"],["NCBITaxon%3A1123241","Nakamurella lactea DSM 19367"]]},{"id":"NCBITaxon:1123242","l":"Schlesneria paludicola DSM 18645","na":1,"nb":2,"a":[["marsh-envo-00000035.html","marsh"]],"b":[["NCBITaxon%3A360056","Schlesneria paludicola"],["NCBITaxon%3A1123242","Schlesneria paludicola DSM 18645"]]},{"id":"NCBITaxon:1123247","l":"Sediminimonas qiaohouensis DSM 21189","na":1,"nb":2,"a":[["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A552061","Sediminimonas qiaohouensis"],["NCBITaxon%3A1123247","Sediminimonas qiaohouensis DSM 21189"]]},{"id":"NCBITaxon:1123248","l":"Segetibacter koreensis DSM 18137","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A398037","Segetibacter koreensis"],["NCBITaxon%3A1123248","Segetibacter koreensis DSM 18137"]]},{"id":"NCBITaxon:1123252","l":"Shimazuella kribbensis DSM 45090","na":1,"nb":2,"a":[["mountain-envo-00000081.html","mountain"]],"b":[["NCBITaxon%3A139808","Shimazuella kribbensis"],["NCBITaxon%3A1123252","Shimazuella kribbensis DSM 45090"]]},{"id":"NCBITaxon:1123256","l":"Solimonas variicoloris DSM 15731","na":1,"nb":2,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"]],"b":[["NCBITaxon%3A254408","Solimonas variicoloris"],["NCBITaxon%3A1123256","Solimonas variicoloris DSM 15731"]]},{"id":"NCBITaxon:1123261","l":"Solimonas soli DSM 21787","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A413479","Solimonas soli"],["NCBITaxon%3A1123261","Solimonas soli DSM 21787"]]},{"id":"NCBITaxon:1123262","l":"Solirubrobacter soli DSM 22325","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A363832","Solirubrobacter soli"],["NCBITaxon%3A1123262","Solirubrobacter soli DSM 22325"]]},{"id":"NCBITaxon:1123263","l":"Solobacterium moorei DSM 22971","na":1,"nb":2,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A102148","Solobacterium moorei"],["NCBITaxon%3A1123263","Solobacterium moorei DSM 22971"]]},{"id":"NCBITaxon:1123264","l":"Sphingobacterium multivorum DSM 11691","na":1,"nb":2,"a":[["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A28454","Sphingobacterium multivorum"],["NCBITaxon%3A1123264","Sphingobacterium multivorum DSM 11691"]]},{"id":"NCBITaxon:1123277","l":"Spirosoma panaciterrae DSM 21099","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A496058","Spirosoma panaciterrae"],["NCBITaxon%3A1123277","Spirosoma panaciterrae DSM 21099"]]},{"id":"NCBITaxon:1123279","l":"Spongiibacter tropicus DSM 19543","na":1,"nb":2,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["NCBITaxon%3A454602","Spongiibacter tropicus"],["NCBITaxon%3A1123279","Spongiibacter tropicus DSM 19543"]]},{"id":"NCBITaxon:1123280","l":"Sporacetigenium mesophilum DSM 16796","na":1,"nb":2,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A286803","Sporacetigenium mesophilum"],["NCBITaxon%3A1123280","Sporacetigenium mesophilum DSM 16796"]]},{"id":"NCBITaxon:1123281","l":"Sporanaerobacter acetigenes DSM 13106","na":1,"nb":2,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A165813","Sporanaerobacter acetigenes"],["NCBITaxon%3A1123281","Sporanaerobacter acetigenes DSM 13106"]]},{"id":"NCBITaxon:1123282","l":"Sporobacter termitidis DSM 10068","na":1,"nb":2,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A44749","Sporobacter termitidis"],["NCBITaxon%3A1123282","Sporobacter termitidis DSM 10068"]]},{"id":"NCBITaxon:1123288","l":"Sporomusa ovata DSM 2662","na":1,"nb":2,"a":[["silage-envo-00003030.html","silage"]],"b":[["NCBITaxon%3A2378","Sporomusa ovata"],["NCBITaxon%3A1123288","Sporomusa ovata DSM 2662"]]},{"id":"NCBITaxon:1123347","l":"Tenacibaculum ovolyticum DSM 18103","na":1,"nb":2,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["NCBITaxon%3A104270","Tenacibaculum ovolyticum"],["NCBITaxon%3A1123347","Tenacibaculum ovolyticum DSM 18103"]]},{"id":"NCBITaxon:1123355","l":"Terasakiella pusilla DSM 6293","na":1,"nb":2,"a":[["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A64973","Terasakiella pusilla"],["NCBITaxon%3A1123355","Terasakiella pusilla DSM 6293"]]},{"id":"NCBITaxon:1123366","l":"Thalassospira xiamenensis M-5 = DSM 17429","na":1,"nb":2,"a":[["oil-envo-00002985.html","oil"]],"b":[["NCBITaxon%3A220697","Thalassospira xiamenensis"],["NCBITaxon%3A1123366","Thalassospira xiamenensis M-5 = DSM 17429"]]},{"id":"NCBITaxon:1123369","l":"Thermoanaerobacter uzonensis DSM 18761","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A447593","Thermoanaerobacter uzonensis"],["NCBITaxon%3A1123369","Thermoanaerobacter uzonensis DSM 18761"]]},{"id":"NCBITaxon:1123372","l":"Thermodesulfobacterium hveragerdense DSM 12571","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A53424","Thermodesulfobacterium hveragerdense"],["NCBITaxon%3A1123372","Thermodesulfobacterium hveragerdense DSM 12571"]]},{"id":"NCBITaxon:1123374","l":"Thermodesulfovibrio hydrogeniphilus DSM 18151","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A412896","Thermodesulfovibrio hydrogeniphilus"],["NCBITaxon%3A1123374","Thermodesulfovibrio hydrogeniphilus DSM 18151"]]},{"id":"NCBITaxon:1123375","l":"Thermodesulfovibrio islandicus DSM 12570","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A1123375","Thermodesulfovibrio islandicus DSM 12570"],["NCBITaxon%3A28262","Thermodesulfovibrio yellowstonii"]]},{"id":"NCBITaxon:1123379","l":"Thermosediminibacter litoriperuensis DSM 16647","na":1,"nb":2,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A291989","Thermosediminibacter litoriperuensis"],["NCBITaxon%3A1123379","Thermosediminibacter litoriperuensis DSM 16647"]]},{"id":"NCBITaxon:1123385","l":"","na":1,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A39100","Pseudothermotoga subterranea"],["NCBITaxon%3A1123385","Pseudothermotoga subterranea DSM 9912 = NBRC 107924"]]},{"id":"NCBITaxon:1123391","l":"Thermus scotoductus DSM 8553","na":1,"nb":2,"a":[["drinking-water-envo-00003064.html","drinking water"]],"b":[["NCBITaxon%3A37636","Thermus scotoductus"],["NCBITaxon%3A1123391","Thermus scotoductus DSM 8553"]]},{"id":"NCBITaxon:1123392","l":"Thiobacillus denitrificans DSM 12475","na":1,"nb":2,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A36861","Thiobacillus denitrificans"],["NCBITaxon%3A1123392","Thiobacillus denitrificans DSM 12475"]]},{"id":"NCBITaxon:1123398","l":"Thiothrix caldifontis DSM 21228","na":1,"nb":2,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A525918","Thiothrix caldifontis"],["NCBITaxon%3A1123398","Thiothrix caldifontis DSM 21228"]]},{"id":"NCBITaxon:1123399","l":"Thiolinea disciformis DSM 14473","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A125614","Thiolinea disciformis"],["NCBITaxon%3A1123399","Thiolinea disciformis DSM 14473"]]},{"id":"NCBITaxon:1123400","l":"Thiofilum flexile DSM 14609","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A125627","Thiofilum flexile"],["NCBITaxon%3A1123400","Thiofilum flexile DSM 14609"]]},{"id":"NCBITaxon:1123487","l":"Uliginosibacterium gangwonense DSM 18521","na":1,"nb":2,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A392736","Uliginosibacterium gangwonense"],["NCBITaxon%3A1123487","Uliginosibacterium gangwonense DSM 18521"]]},{"id":"NCBITaxon:1123491","l":"Vibrio cincinnatiensis DSM 19608","na":1,"nb":2,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["NCBITaxon%3A675","Vibrio cincinnatiensis"],["NCBITaxon%3A1123491","Vibrio cincinnatiensis DSM 19608"]]},{"id":"NCBITaxon:1123508","l":"Zavarzinella formosa DSM 19928","na":1,"nb":2,"a":[["rosette-bto-0001201.html","rosette"]],"b":[["NCBITaxon%3A360055","Zavarzinella formosa"],["NCBITaxon%3A1123508","Zavarzinella formosa DSM 19928"]]},{"id":"NCBITaxon:1123509","l":"Zooshikella ganghwensis DSM 15267","na":1,"nb":2,"a":[["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["NCBITaxon%3A202772","Zooshikella ganghwensis"],["NCBITaxon%3A1123509","Zooshikella ganghwensis DSM 15267"]]},{"id":"NCBITaxon:1123511","l":"Propionispira raffinosivorans DSM 20765","na":1,"nb":2,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"]],"b":[["NCBITaxon%3A86959","Propionispira raffinosivorans"],["NCBITaxon%3A1123511","Propionispira raffinosivorans DSM 20765"]]},{"id":"NCBITaxon:1123514","l":"Thiomicrorhabdus arctica DSM 13458","na":1,"nb":2,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A131540","Thiomicrorhabdus arctica"],["NCBITaxon%3A1123514","Thiomicrorhabdus arctica DSM 13458"]]},{"id":"NCBITaxon:1123515","l":"Thiomicrorhabdus chilensis DSM 12352","na":1,"nb":2,"a":[["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["NCBITaxon%3A63656","Thiomicrorhabdus chilensis"],["NCBITaxon%3A1123515","Thiomicrorhabdus chilensis DSM 12352"]]},{"id":"NCBITaxon:1123721","l":"Weissella koreensis KCTC 3621","na":1,"nb":2,"a":[["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A165096","Weissella koreensis"],["NCBITaxon%3A1123721","Weissella koreensis KCTC 3621"]]},{"id":"NCBITaxon:1124743","l":"Kribbella soli","na":2,"nb":1,"a":[["park-envo-00000562.html","park"],["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1124743","Kribbella soli"]]},{"id":"NCBITaxon:1124780","l":"Nafulsella turpanensis ZLM-10","na":1,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A1265690","Nafulsella turpanensis"],["NCBITaxon%3A1124780","Nafulsella turpanensis ZLM-10"]]},{"id":"NCBITaxon:1124982","l":"Treponema sp. JC4","na":2,"nb":1,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A1124982","Treponema sp. JC4"]]},{"id":"NCBITaxon:1125973","l":"Bosea sp. 117","na":2,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"],["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1125973","Allobosea sp. 117"]]},{"id":"NCBITaxon:1126011","l":"Listeria monocytogenes 07PF0776","na":2,"nb":1,"a":[["central-nervous-system-bto-0000227.html","central nervous system"],["myocardium-bto-0000901.html","myocardium"]],"b":[["NCBITaxon%3A1126011","Listeria monocytogenes 07PF0776"]]},{"id":"NCBITaxon:1126627","l":"Bradyrhizobium sp. DOA9","na":2,"nb":1,"a":[["free-living-state-bto-0001551.html","free-living state"],["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A1126627","Bradyrhizobium sp. DOA9"]]},{"id":"NCBITaxon:1128911","l":"Paraglaciecola arctica","na":1,"nb":2,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A1128911","Paraglaciecola arctica"],["NCBITaxon%3A493475","Paraglaciecola arctica BSs20135"]]},{"id":"NCBITaxon:1128912","l":"Paraglaciecola mesophila KMM 241","na":1,"nb":2,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A197222","Paraglaciecola mesophila"],["NCBITaxon%3A1128912","Paraglaciecola mesophila KMM 241"]]},{"id":"NCBITaxon:1129374","l":"Alishewanella jeotgali KCTC 22429","na":1,"nb":2,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A545533","Alishewanella jeotgali"],["NCBITaxon%3A1129374","Alishewanella jeotgali KCTC 22429"]]},{"id":"NCBITaxon:1129792","l":"Weissella oryzae","na":1,"nb":2,"a":[["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A1129792","Weissella oryzae"],["NCBITaxon%3A1329250","Weissella oryzae SG25"]]},{"id":"NCBITaxon:1129896","l":"Rhodococcus opacus M213","na":2,"nb":1,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A1129896","Rhodococcus opacus M213"]]},{"id":"NCBITaxon:1130382","l":"Spirochaetes bacterium SCGC AAA257-G10","na":2,"nb":1,"a":[["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A1130382","Spirochaetes bacterium SCGC AAA257-G10"]]},{"id":"NCBITaxon:1130383","l":"Spirochaetes bacterium SCGC AAA257-P05","na":2,"nb":1,"a":[["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A1130383","Spirochaetes bacterium SCGC AAA257-P05"]]},{"id":"NCBITaxon:1131452","l":"Mycoplasmopsis canis UF31","na":2,"nb":1,"a":[["brain-bto-0000142.html","brain"],["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A1131452","Mycoplasmopsis canis UF31"]]},{"id":"NCBITaxon:1131453","l":"Mycoplasmopsis canis UF33","na":2,"nb":1,"a":[["brain-bto-0000142.html","brain"],["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A1131453","Mycoplasmopsis canis UF33"]]},{"id":"NCBITaxon:1131454","l":"Mycoplasmopsis canis UFG1","na":2,"nb":1,"a":[["brain-bto-0000142.html","brain"],["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A1131454","Mycoplasmopsis canis UFG1"]]},{"id":"NCBITaxon:1131455","l":"Mycoplasmopsis canis UFG4","na":2,"nb":1,"a":[["brain-bto-0000142.html","brain"],["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A1131455","Mycoplasmopsis canis UFG4"]]},{"id":"NCBITaxon:1131703","l":"Sphaerochaeta globosa","na":1,"nb":2,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1131703","Sphaerochaeta globosa"],["NCBITaxon%3A158189","Sphaerochaeta globosa str. Buddy"]]},{"id":"NCBITaxon:1131707","l":"Sphaerochaeta pleomorpha","na":1,"nb":2,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1131707","Sphaerochaeta pleomorpha"],["NCBITaxon%3A158190","Sphaerochaeta pleomorpha str. Grapes"]]},{"id":"NCBITaxon:1131731","l":"Schinkia azotoformans LMG 9581","na":1,"nb":2,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A1454","Schinkia azotoformans"],["NCBITaxon%3A1131731","Schinkia azotoformans LMG 9581"]]},{"id":"NCBITaxon:1132444","l":"Methylocystis rosea SV97","na":1,"nb":2,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A173366","Methylocystis rosea"],["NCBITaxon%3A1132444","Methylocystis rosea SV97"]]},{"id":"NCBITaxon:1132696","l":"Chryseobacterium rigui","na":2,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"],["brackish-water-body-envo-01001321.html","brackish water body"]],"b":[["NCBITaxon%3A1132696","Chryseobacterium rigui"]]},{"id":"NCBITaxon:1133569","l":"Liquorilactobacillus vini DSM 20605","na":1,"nb":2,"a":[["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A238015","Liquorilactobacillus vini"],["NCBITaxon%3A1133569","Liquorilactobacillus vini DSM 20605"]]},{"id":"NCBITaxon:1134445","l":"Streptomyces somaliensis DSM 40738","na":1,"nb":2,"a":[["foot-bto-0000476.html","foot"]],"b":[["NCBITaxon%3A78355","Streptomyces somaliensis"],["NCBITaxon%3A1134445","Streptomyces somaliensis DSM 40738"]]},{"id":"NCBITaxon:1137848","l":"Clostridium arbusti","na":1,"nb":2,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A1137848","Clostridium arbusti"],["NCBITaxon%3A545243","Clostridium arbusti SL206"]]},{"id":"NCBITaxon:1137991","l":"Geodermatophilus siccatus","na":2,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A1137991","Geodermatophilus siccatus"]]},{"id":"NCBITaxon:1137993","l":"Geodermatophilus africanus","na":2,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A1137993","Geodermatophilus africanus"]]},{"id":"NCBITaxon:1137994","l":"Geodermatophilus saharensis","na":2,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A1137994","Geodermatophilus saharensis"]]},{"id":"NCBITaxon:1138429","l":"Glaesserella parasuis gx033","na":2,"nb":1,"a":[["lung-bto-0000763.html","lung"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1138429","Glaesserella parasuis gx033"]]},{"id":"NCBITaxon:114090","l":"Pediococcus inopinatus","na":2,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A114090","Pediococcus inopinatus"]]},{"id":"NCBITaxon:1141221","l":"Chryseobacterium taihuense","na":1,"nb":2,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A1871047","Chryseobacterium sp."],["NCBITaxon%3A1141221","Chryseobacterium taihuense"]]},{"id":"NCBITaxon:1141647","l":"Nocardia arizonensis","na":2,"nb":1,"a":[["bronchus-uberon-0002185.html","bronchus"],["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1141647","Nocardia arizonensis"]]},{"id":"NCBITaxon:1142394","l":"Phycisphaera mikurensis NBRC 102666","na":1,"nb":2,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A547188","Phycisphaera mikurensis"],["NCBITaxon%3A1142394","Phycisphaera mikurensis NBRC 102666"]]},{"id":"NCBITaxon:114814","l":"Xylaria cubensis","na":2,"nb":1,"a":[["temperate-envo-01000206.html","temperate"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A114814","Xylaria cubensis"]]},{"id":"NCBITaxon:1150461","l":"Bifidobacterium scardovii JCM 12489 = DSM 13734","na":1,"nb":2,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A158787","Bifidobacterium scardovii"],["NCBITaxon%3A1150461","Bifidobacterium scardovii JCM 12489 = DSM 13734"]]},{"id":"NCBITaxon:1150474","l":"Mesoaciditoga lauensis cd-1655R = DSM 25116","na":1,"nb":2,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["NCBITaxon%3A1495039","Mesoaciditoga lauensis"],["NCBITaxon%3A1150474","Mesoaciditoga lauensis cd-1655R = DSM 25116"]]},{"id":"NCBITaxon:1151117","l":"Thermococcus zilligii AN1","na":1,"nb":2,"a":[["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A54076","Thermococcus zilligii"],["NCBITaxon%3A1151117","Thermococcus zilligii AN1"]]},{"id":"NCBITaxon:1154817","l":"Streptococcus agalactiae CCUG 44077","na":1,"nb":2,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A1311","Streptococcus agalactiae"],["NCBITaxon%3A1154817","Streptococcus agalactiae CCUG 44077"]]},{"id":"NCBITaxon:1154862","l":"Streptococcus agalactiae CCUG 34230","na":1,"nb":2,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A1311","Streptococcus agalactiae"],["NCBITaxon%3A1154862","Streptococcus agalactiae CCUG 34230"]]},{"id":"NCBITaxon:1155079","l":"Staphylococcus aureus subsp. aureus DR10","na":2,"nb":1,"a":[["keratinocyte-bto-0000667.html","keratinocyte"],["suprachiasmatic-nucleus-bto-0001822.html","suprachiasmatic nucleus"]],"b":[["NCBITaxon%3A1155079","Staphylococcus aureus subsp. aureus DR10"]]},{"id":"NCBITaxon:1155084","l":"Staphylococcus aureus subsp. aureus 71193","na":2,"nb":1,"a":[["keratinocyte-bto-0000667.html","keratinocyte"],["suprachiasmatic-nucleus-bto-0001822.html","suprachiasmatic nucleus"]],"b":[["NCBITaxon%3A1155084","Staphylococcus aureus subsp. aureus 71193"]]},{"id":"NCBITaxon:115545","l":"Pasteurella multocida subsp. septica","na":1,"nb":2,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["NCBITaxon%3A747","Pasteurella multocida"],["NCBITaxon%3A115545","Pasteurella multocida subsp. septica"]]},{"id":"NCBITaxon:115553","l":"Vreelandella sulfidaeris","na":1,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A115553","Vreelandella sulfidaeris"],["NCBITaxon%3A891402","Vreelandella sulfidaeris Esulfide1"]]},{"id":"NCBITaxon:115561","l":"","na":2,"nb":1,"a":[["river-envo-00000022.html","river"],["subpolar-coniferous-forest-biome-envo-01000250.html","subpolar coniferous forest biome"]],"b":[["NCBITaxon%3A44935","Vreelandella venusta"]]},{"id":"NCBITaxon:1157946","l":"Streptococcus salivarius PS4","na":2,"nb":1,"a":[["breast-bto-0000149.html","breast"],["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1157946","Streptococcus salivarius PS4"]]},{"id":"NCBITaxon:1159489","l":"Cronobacter sakazakii 2151","na":2,"nb":1,"a":[["neonate-bto-0001762.html","neonate"],["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1159489","Cronobacter sakazakii 2151"]]},{"id":"NCBITaxon:1159491","l":"Cronobacter malonaticus LMG 23826","na":1,"nb":2,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A413503","Cronobacter malonaticus"],["NCBITaxon%3A1159491","Cronobacter malonaticus LMG 23826"]]},{"id":"NCBITaxon:1159613","l":"Cronobacter muytjensii ATCC 51329","na":1,"nb":2,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A413501","Cronobacter muytjensii"],["NCBITaxon%3A1159613","Cronobacter muytjensii ATCC 51329"]]},{"id":"NCBITaxon:115979","l":"Niallia nealsonii","na":1,"nb":2,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A115979","Niallia nealsonii"],["NCBITaxon%3A1202533","Niallia nealsonii AAU1"]]},{"id":"NCBITaxon:1161100","l":"Flavobacterium lindanitolerans CIP 109890","na":1,"nb":2,"a":[["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A428988","Flavobacterium lindanitolerans"],["NCBITaxon%3A1161100","Flavobacterium lindanitolerans CIP 109890"]]},{"id":"NCBITaxon:1161919","l":"Erwinia piriflorinigrans CFBP 5888","na":1,"nb":2,"a":[["flower-bto-0000469.html","flower"]],"b":[["NCBITaxon%3A665097","Erwinia piriflorinigrans"],["NCBITaxon%3A1161919","Erwinia piriflorinigrans CFBP 5888"]]},{"id":"NCBITaxon:1161942","l":"Ruminococcus champanellensis","na":1,"nb":2,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A1161942","Ruminococcus champanellensis"],["NCBITaxon%3A213810","Ruminococcus champanellensis 18P13 = JCM 17042"]]},{"id":"NCBITaxon:1162288","l":"Mycobacteroides abscessus M154","na":2,"nb":1,"a":[["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1162288","Mycobacteroides abscessus M154"]]},{"id":"NCBITaxon:1163748","l":"","na":1,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A2743","Marinobacter nauticus"],["NCBITaxon%3A1163748","Marinobacter nauticus ATCC 49840"]]},{"id":"NCBITaxon:1163751","l":"Candidatus Hamiltonella defensa MED (Bemisia tabaci)","na":1,"nb":2,"a":[["phloem-bto-0001058.html","phloem"]],"b":[["NCBITaxon%3A1163751","Candidatus Hamiltonella defensa MED (Bemisia tabaci)"],["NCBITaxon%3A1240083","Candidatus Hamiltonella defensa MED (Bemisia tabaci) BT-B-HRs"]]},{"id":"NCBITaxon:1165867","l":"","na":1,"nb":2,"a":[["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A37919","Rhodococcus opacus"],["NCBITaxon%3A1165867","Rhodococcus opacus RKJ300 = JCM 13270"]]},{"id":"NCBITaxon:1166078","l":"Aureimonas phyllosphaerae","na":2,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A1166078","Aureimonas phyllosphaerae"]]},{"id":"NCBITaxon:1167694","l":"Escherichia coli O32:H37 str. P4","na":2,"nb":1,"a":[["mammary-gland-bto-0000817.html","mammary gland"],["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1167694","Escherichia coli O32:H37 str. P4"]]},{"id":"NCBITaxon:1168170","l":"Klebsiella oxytoca BRL6-2","na":1,"nb":2,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A1168170","Klebsiella oxytoca BRL6-2"],["NCBITaxon%3A576","Klebsiella sp."]]},{"id":"NCBITaxon:117207","l":"Sphingopyxis alaskensis","na":1,"nb":2,"a":[["skin-bto-0001253.html","skin"]],"b":[["NCBITaxon%3A117207","Sphingopyxis alaskensis"],["NCBITaxon%3A317655","Sphingopyxis alaskensis RB2256"]]},{"id":"NCBITaxon:1173062","l":"Acinetobacter sp. HA","na":2,"nb":1,"a":[["larva-bto-0000707.html","larva"],["midgut-bto-0000863.html","midgut"]],"b":[["NCBITaxon%3A1173062","Acinetobacter sp. HA"]]},{"id":"NCBITaxon:1173263","l":"Pseudanabaenococcus habilitatus PCC 7502","na":2,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A1173263","Pseudanabaenococcus habilitatus PCC 7502"]]},{"id":"NCBITaxon:117503","l":"Thermosipho geolei","na":1,"nb":2,"a":[["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A117503","Thermosipho geolei"],["NCBITaxon%3A1123381","Thermosipho geolei DSM 13256"]]},{"id":"NCBITaxon:1175296","l":"Methanomassiliicoccus luminyensis B10","na":1,"nb":2,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A1080712","Methanomassiliicoccus luminyensis"],["NCBITaxon%3A1175296","Methanomassiliicoccus luminyensis B10"]]},{"id":"NCBITaxon:1175486","l":"Nocardioides albertanoniae","na":2,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A1175486","Nocardioides albertanoniae"]]},{"id":"NCBITaxon:1177180","l":"Kosakonia radicincitans DSM 16656","na":1,"nb":2,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A283686","Kosakonia radicincitans"],["NCBITaxon%3A1177180","Kosakonia radicincitans DSM 16656"]]},{"id":"NCBITaxon:118166","l":"Nodosilinea nodulosa PCC 7104","na":2,"nb":1,"a":[["bar-envo-00000167.html","bar"],["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A118166","Nodosilinea nodulosa PCC 7104"]]},{"id":"NCBITaxon:1184251","l":"Thermogladius calderae 1633","na":1,"nb":2,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A1200300","Thermogladius calderae"],["NCBITaxon%3A1184251","Thermogladius calderae 1633"]]},{"id":"NCBITaxon:1185920","l":"Phaeovulum veldkampii DSM 11550","na":1,"nb":2,"a":[["pond-envo-00000033.html","pond"]],"b":[["NCBITaxon%3A33049","Phaeovulum veldkampii"],["NCBITaxon%3A1185920","Phaeovulum veldkampii DSM 11550"]]},{"id":"NCBITaxon:1188261","l":"","na":1,"nb":2,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A521377","Alkalihalophilus marmarensis"],["NCBITaxon%3A1188261","Alkalihalophilus marmarensis DSM 21297"]]},{"id":"NCBITaxon:1189612","l":"Indibacter alkaliphilus LW1","na":1,"nb":2,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["NCBITaxon%3A579922","Indibacter alkaliphilus"],["NCBITaxon%3A1189612","Indibacter alkaliphilus LW1"]]},{"id":"NCBITaxon:1189613","l":"Staphylococcus massiliensis CCUG 55927","na":1,"nb":2,"a":[["brain-bto-0000142.html","brain"]],"b":[["NCBITaxon%3A555791","Staphylococcus massiliensis"],["NCBITaxon%3A1189613","Staphylococcus massiliensis CCUG 55927"]]},{"id":"NCBITaxon:1190417","l":"Geodermatophilus telluris","na":2,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A1190417","Geodermatophilus telluris"]]},{"id":"NCBITaxon:1191475","l":"Pseudomonas aeruginosa PAO579","na":2,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1191475","Pseudomonas aeruginosa PAO579"]]},{"id":"NCBITaxon:1192854","l":"Granulosicoccus antarcticus IMCC3135","na":1,"nb":2,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A437505","Granulosicoccus antarcticus"],["NCBITaxon%3A1192854","Granulosicoccus antarcticus IMCC3135"]]},{"id":"NCBITaxon:1193128","l":"Parascardovia denticolens IPLA 20019","na":2,"nb":1,"a":[["breast-bto-0000149.html","breast"],["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1193128","Parascardovia denticolens IPLA 20019"]]},{"id":"NCBITaxon:1193501","l":"Pseudomonas aeruginosa SJTD-1","na":2,"nb":1,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A1193501","Pseudomonas aeruginosa SJTD-1"]]},{"id":"NCBITaxon:1194079","l":"Streptomyces chilikensis","na":2,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"],["brackish-water-body-envo-01001321.html","brackish water body"]],"b":[["NCBITaxon%3A1194079","Streptomyces chilikensis"]]},{"id":"NCBITaxon:1194086","l":"Yersinia enterocolitica subsp. enterocolitica WA-314","na":2,"nb":1,"a":[["liver-bto-0000759.html","liver"],["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A1194086","Yersinia enterocolitica subsp. enterocolitica WA-314"]]},{"id":"NCBITaxon:1194669","l":"Pseudomonas aeruginosa N002","na":2,"nb":1,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A1194669","Pseudomonas aeruginosa N002"]]},{"id":"NCBITaxon:1195761","l":"Ornithinimicrobium tianjinense","na":1,"nb":2,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A189863","Falsarthrobacter nasiphocae"],["NCBITaxon%3A1195761","Ornithinimicrobium tianjinense"]]},{"id":"NCBITaxon:119641","l":"Clostridium uliginosum","na":1,"nb":2,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A119641","Clostridium uliginosum"],["NCBITaxon%3A1121343","Clostridium uliginosum DSM 12992"]]},{"id":"NCBITaxon:119644","l":"Hymenobacter aerophilus","na":1,"nb":2,"a":[["desert-biome-envo-01000179.html","desert biome"]],"b":[["NCBITaxon%3A119644","Hymenobacter aerophilus"],["NCBITaxon%3A1121953","Hymenobacter aerophilus DSM 13606"]]},{"id":"NCBITaxon:1197727","l":"Pseudomonas sp. Ag1","na":2,"nb":1,"a":[["larva-bto-0000707.html","larva"],["midgut-bto-0000863.html","midgut"]],"b":[["NCBITaxon%3A1197727","Pseudomonas sp. Ag1"]]},{"id":"NCBITaxon:1198114","l":"Granulicella tundricola MP5ACTX9","na":1,"nb":2,"a":[["area-designated-as-a-nature-reserve-envo-00000363.html","area designated as a nature reserve"]],"b":[["NCBITaxon%3A940615","Granulicella tundricola"],["NCBITaxon%3A1198114","Granulicella tundricola MP5ACTX9"]]},{"id":"NCBITaxon:119864","l":"Marinomonas mediterranea","na":1,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A119864","Marinomonas mediterranea"],["NCBITaxon%3A717774","Marinomonas mediterranea MMB-1"]]},{"id":"NCBITaxon:1202448","l":"Enterobacter sp. Ag1","na":2,"nb":1,"a":[["larva-bto-0000707.html","larva"],["midgut-bto-0000863.html","midgut"]],"b":[["NCBITaxon%3A1202448","Enterobacter sp. Ag1"]]},{"id":"NCBITaxon:1202668","l":"Secundilactobacillus oryzae","na":1,"nb":2,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A1202668","Secundilactobacillus oryzae"],["NCBITaxon%3A1291743","Secundilactobacillus oryzae JCM 18671"]]},{"id":"NCBITaxon:1203033","l":"Lactobacillus hominis","na":1,"nb":2,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A1203033","Lactobacillus hominis"],["NCBITaxon%3A1423758","Lactobacillus hominis DSM 23910 = CRBIP 24.179"]]},{"id":"NCBITaxon:1203258","l":"Lacticaseibacillus rhamnosus LRHMDP2","na":2,"nb":1,"a":[["dental-pulp-bto-0000339.html","dental pulp"],["pulp-bto-0001142.html","pulp"]],"b":[["NCBITaxon%3A1203258","Lacticaseibacillus rhamnosus LRHMDP2"]]},{"id":"NCBITaxon:1203259","l":"Lacticaseibacillus rhamnosus LRHMDP3","na":2,"nb":1,"a":[["dental-pulp-bto-0000339.html","dental pulp"],["pulp-bto-0001142.html","pulp"]],"b":[["NCBITaxon%3A1203259","Lacticaseibacillus rhamnosus LRHMDP3"]]},{"id":"NCBITaxon:1203471","l":"Geotalea daltonii","na":1,"nb":2,"a":[["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A1203471","Geotalea daltonii"],["NCBITaxon%3A316067","Geotalea daltonii FRC-32"]]},{"id":"NCBITaxon:120377","l":"Salana multivorans","na":2,"nb":1,"a":[["watercourse-envo-00000029.html","watercourse"],["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A120377","Salana multivorans"]]},{"id":"NCBITaxon:1204725","l":"Methanobacterium formicicum DSM 3637","na":1,"nb":2,"a":[["protist-associated-environment-habitatmech-gold-eee7408afd.html","protist-associated environment"]],"b":[["NCBITaxon%3A2162","Methanobacterium formicicum"],["NCBITaxon%3A1204725","Methanobacterium formicicum DSM 3637"]]},{"id":"NCBITaxon:1206108","l":"Escherichia coli J96","na":2,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["kidney-bto-0000671.html","kidney"]],"b":[["NCBITaxon%3A1206108","Escherichia coli J96"]]},{"id":"NCBITaxon:1206722","l":"Nocardia araoensis NBRC 100135","na":1,"nb":2,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A228600","Nocardia araoensis"],["NCBITaxon%3A1206722","Nocardia araoensis NBRC 100135"]]},{"id":"NCBITaxon:1206724","l":"Nocardia brasiliensis NBRC 14402","na":1,"nb":2,"a":[["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A37326","Nocardia brasiliensis"],["NCBITaxon%3A1206724","Nocardia brasiliensis NBRC 14402"]]},{"id":"NCBITaxon:1206725","l":"Nocardia brevicatena NBRC 12119","na":1,"nb":2,"a":[["tuberculosis-habitatmech-bacdive-e5d21f85b7.html","Tuberculosis"]],"b":[["NCBITaxon%3A37327","Nocardia brevicatena"],["NCBITaxon%3A1206725","Nocardia brevicatena NBRC 12119"]]},{"id":"NCBITaxon:1206729","l":"Nocardia exalbida NBRC 100660","na":1,"nb":2,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["NCBITaxon%3A290231","Nocardia exalbida"],["NCBITaxon%3A1206729","Nocardia exalbida NBRC 100660"]]},{"id":"NCBITaxon:1206730","l":"Nocardia higoensis NBRC 100133","na":1,"nb":2,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A228599","Nocardia higoensis"],["NCBITaxon%3A1206730","Nocardia higoensis NBRC 100133"]]},{"id":"NCBITaxon:1206732","l":"Nocardia otitidiscaviarum NBRC 14405","na":1,"nb":2,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A1823","Nocardia otitidiscaviarum"],["NCBITaxon%3A1206732","Nocardia otitidiscaviarum NBRC 14405"]]},{"id":"NCBITaxon:1206737","l":"Nocardia pneumoniae NBRC 100136","na":1,"nb":2,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A228601","Nocardia pneumoniae"],["NCBITaxon%3A1206737","Nocardia pneumoniae NBRC 100136"]]},{"id":"NCBITaxon:1206739","l":"Nocardia testacea NBRC 100365","na":1,"nb":2,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A248551","Nocardia testacea"],["NCBITaxon%3A1206739","Nocardia testacea NBRC 100365"]]},{"id":"NCBITaxon:1206744","l":"Nocardia transvalensis NBRC 15921","na":1,"nb":2,"a":[["foot-bto-0000476.html","foot"]],"b":[["NCBITaxon%3A37333","Nocardia transvalensis"],["NCBITaxon%3A1206744","Nocardia transvalensis NBRC 15921"]]},{"id":"NCBITaxon:1207063","l":"Oceanibaculum indicum P24","na":1,"nb":2,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A526216","Oceanibaculum indicum"],["NCBITaxon%3A1207063","Oceanibaculum indicum P24"]]},{"id":"NCBITaxon:1208324","l":"Celeribacter indicus","na":2,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["NCBITaxon%3A1208324","Celeribacter indicus"]]},{"id":"NCBITaxon:1209989","l":"Tepidanaerobacter acetatoxydans Re1","na":1,"nb":2,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A499229","Tepidanaerobacter acetatoxydans"],["NCBITaxon%3A1209989","Tepidanaerobacter acetatoxydans Re1"]]},{"id":"NCBITaxon:1210069","l":"Nocardia coubleae NBRC 108252","na":1,"nb":2,"a":[["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A356147","Nocardia coubleae"],["NCBITaxon%3A1210069","Nocardia coubleae NBRC 108252"]]},{"id":"NCBITaxon:1210075","l":"Nocardia ignorata NBRC 108230","na":1,"nb":2,"a":[["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A145285","Nocardia ignorata"],["NCBITaxon%3A1210075","Nocardia ignorata NBRC 108230"]]},{"id":"NCBITaxon:1210078","l":"Nocardia kruczakiae NBRC 101016","na":1,"nb":2,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["NCBITaxon%3A261477","Nocardia kruczakiae"],["NCBITaxon%3A1210078","Nocardia kruczakiae NBRC 101016"]]},{"id":"NCBITaxon:1210091","l":"Nocardia ninae NBRC 108245","na":1,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A356145","Nocardia ninae"],["NCBITaxon%3A1210091","Nocardia ninae NBRC 108245"]]},{"id":"NCBITaxon:1212764","l":"Paenibacillus popilliae ATCC 14706","na":1,"nb":2,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["NCBITaxon%3A78057","Paenibacillus popilliae"],["NCBITaxon%3A1212764","Paenibacillus popilliae ATCC 14706"]]},{"id":"NCBITaxon:1213463","l":"Mycoplasmoides pneumoniae 19294","na":2,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1213463","Mycoplasmoides pneumoniae 19294"]]},{"id":"NCBITaxon:1215100","l":"Pseudomonas fluorescens NBRC 14160","na":1,"nb":2,"a":[["reservoir-envo-00000025.html","reservoir"]],"b":[["NCBITaxon%3A294","Pseudomonas fluorescens"],["NCBITaxon%3A1215100","Pseudomonas fluorescens NBRC 14160"]]},{"id":"NCBITaxon:1215110","l":"Pseudomonas monteilii NBRC 103158 = DSM 14164","na":1,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A76759","Pseudomonas monteilii"],["NCBITaxon%3A1215110","Pseudomonas monteilii NBRC 103158 = DSM 14164"]]},{"id":"NCBITaxon:1215111","l":"Pseudomonas mucidolens NBRC 103159","na":1,"nb":2,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["NCBITaxon%3A46679","Pseudomonas mucidolens"],["NCBITaxon%3A1215111","Pseudomonas mucidolens NBRC 103159"]]},{"id":"NCBITaxon:1215116","l":"Ectopseudomonas oleovorans NBRC 14167","na":1,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A301","Ectopseudomonas oleovorans"],["NCBITaxon%3A1215116","Ectopseudomonas oleovorans NBRC 14167"]]},{"id":"NCBITaxon:1216006","l":"Vibrio aerogenes CECT 7868","na":1,"nb":2,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A92172","Vibrio aerogenes"],["NCBITaxon%3A1216006","Vibrio aerogenes CECT 7868"]]},{"id":"NCBITaxon:1216008","l":"Amphibacillus jilinensis","na":1,"nb":2,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A1216008","Amphibacillus jilinensis"],["NCBITaxon%3A562743","Amphibacillus jilinensis Y1"]]},{"id":"NCBITaxon:1216962","l":"Helicobacter heilmannii ASB1.4","na":1,"nb":2,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A35817","Helicobacter heilmannii"],["NCBITaxon%3A1216962","Helicobacter heilmannii ASB1.4"]]},{"id":"NCBITaxon:1216966","l":"Edwardsiella hoshinae NBRC 105699 = ATCC 33379","na":1,"nb":2,"a":[["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A93378","Edwardsiella hoshinae"],["NCBITaxon%3A1216966","Edwardsiella hoshinae NBRC 105699 = ATCC 33379"]]},{"id":"NCBITaxon:1216969","l":"Janibacter corallicola NBRC 107790","na":1,"nb":2,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A415212","Janibacter corallicola"],["NCBITaxon%3A1216969","Janibacter corallicola NBRC 107790"]]},{"id":"NCBITaxon:1218078","l":"Paraburkholderia ginsengisoli NBRC 100965","na":1,"nb":2,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A311231","Paraburkholderia ginsengisoli"],["NCBITaxon%3A1218078","Paraburkholderia ginsengisoli NBRC 100965"]]},{"id":"NCBITaxon:1218085","l":"Citrobacter rodentium NBRC 105723 = DSM 16636","na":1,"nb":2,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A67825","Citrobacter rodentium"],["NCBITaxon%3A1218085","Citrobacter rodentium NBRC 105723 = DSM 16636"]]},{"id":"NCBITaxon:121821","l":"Roseinatronobacter thiooxidans","na":2,"nb":1,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A121821","Roseinatronobacter thiooxidans"]]},{"id":"NCBITaxon:1219011","l":"","na":1,"nb":2,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A38310","Rhodococcus coprophilus"],["NCBITaxon%3A1219011","Rhodococcus coprophilus NBRC 100603"]]},{"id":"NCBITaxon:1219012","l":"Rhodococcoides corynebacterioides NBRC 14404","na":1,"nb":2,"a":[["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["NCBITaxon%3A53972","Rhodococcoides corynebacterioides"],["NCBITaxon%3A1219012","Rhodococcoides corynebacterioides NBRC 14404"]]},{"id":"NCBITaxon:1219017","l":"Rhodococcus jostii NBRC 16295","na":1,"nb":2,"a":[["bone-element-uberon-0001474.html","bone element"]],"b":[["NCBITaxon%3A132919","Rhodococcus jostii"],["NCBITaxon%3A1219017","Rhodococcus jostii NBRC 16295"]]},{"id":"NCBITaxon:1219036","l":"Sphingobium abikonense NBRC 16140","na":1,"nb":2,"a":[["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A86193","Sphingobium abikonense"],["NCBITaxon%3A1219036","Sphingobium abikonense NBRC 16140"]]},{"id":"NCBITaxon:1219045","l":"Sphingobium herbicidovorans NBRC 16415","na":1,"nb":2,"a":[["resting-cell-bto-0001170.html","resting cell"]],"b":[["NCBITaxon%3A76947","Sphingobium herbicidovorans"],["NCBITaxon%3A1219045","Sphingobium herbicidovorans NBRC 16415"]]},{"id":"NCBITaxon:1219057","l":"Novosphingobium subterraneum NBRC 16086","na":1,"nb":2,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A48936","Novosphingobium subterraneum"],["NCBITaxon%3A1219057","Novosphingobium subterraneum NBRC 16086"]]},{"id":"NCBITaxon:1219065","l":"Vibrio proteolyticus NBRC 13287","na":1,"nb":2,"a":[["alimentary-canal-bto-0000058.html","alimentary canal"]],"b":[["NCBITaxon%3A671","Vibrio proteolyticus"],["NCBITaxon%3A1219065","Vibrio proteolyticus NBRC 13287"]]},{"id":"NCBITaxon:1219067","l":"Vibrio natriegens NBRC 15636 = ATCC 14048 = DSM 759","na":1,"nb":2,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A691","Vibrio natriegens"],["NCBITaxon%3A1219067","Vibrio natriegens NBRC 15636 = ATCC 14048 = DSM 759"]]},{"id":"NCBITaxon:1219076","l":"Vibrio alginolyticus NBRC 15630 = ATCC 17749","na":1,"nb":2,"a":[["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A663","Vibrio alginolyticus"],["NCBITaxon%3A1219076","Vibrio alginolyticus NBRC 15630 = ATCC 17749"]]},{"id":"NCBITaxon:1219375","l":"Xanthomonas cassavae CFBP 4642","na":1,"nb":2,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A56450","Xanthomonas cassavae"],["NCBITaxon%3A1219375","Xanthomonas cassavae CFBP 4642"]]},{"id":"NCBITaxon:1220584","l":"Herbiconiux solani NBRC 106740","na":1,"nb":2,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A661329","Herbiconiux solani"],["NCBITaxon%3A1220584","Herbiconiux solani NBRC 106740"]]},{"id":"NCBITaxon:1220591","l":"","na":1,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A119858","Bacillus sonorensis"],["NCBITaxon%3A1220591","Bacillus sonorensis NBRC 101234 = KCTC 13918"]]},{"id":"NCBITaxon:1221451","l":"Staphylococcus aureus subsp. aureus 120","na":2,"nb":1,"a":[["immune-system-bto-0005810.html","immune system"],["neutrophil-bto-0000130.html","neutrophil"]],"b":[["NCBITaxon%3A1221451","Staphylococcus aureus subsp. aureus 120"]]},{"id":"NCBITaxon:1221452","l":"Staphylococcus aureus subsp. aureus 333","na":2,"nb":1,"a":[["immune-system-bto-0005810.html","immune system"],["neutrophil-bto-0000130.html","neutrophil"]],"b":[["NCBITaxon%3A1221452","Staphylococcus aureus subsp. aureus 333"]]},{"id":"NCBITaxon:1221453","l":"Staphylococcus aureus subsp. aureus 3989","na":2,"nb":1,"a":[["immune-system-bto-0005810.html","immune system"],["neutrophil-bto-0000130.html","neutrophil"]],"b":[["NCBITaxon%3A1221453","Staphylococcus aureus subsp. aureus 3989"]]},{"id":"NCBITaxon:1223489","l":"Nocardia niwae NBRC 108934 = DSM 45340","na":1,"nb":2,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["NCBITaxon%3A626084","Nocardia niwae"],["NCBITaxon%3A1223489","Nocardia niwae NBRC 108934 = DSM 45340"]]},{"id":"NCBITaxon:1223499","l":"","na":1,"nb":2,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1810","Mycolicibacterium vaccae"],["NCBITaxon%3A1223499","Mycolicibacterium vaccae NBRC 14118 = CIP 105934"]]},{"id":"NCBITaxon:1223511","l":"Pseudonocardia sulfidoxydans NBRC 16205","na":1,"nb":2,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"]],"b":[["NCBITaxon%3A54011","Pseudonocardia sulfidoxydans"],["NCBITaxon%3A1223511","Pseudonocardia sulfidoxydans NBRC 16205"]]},{"id":"NCBITaxon:1223528","l":"Microbacterium oleivorans NBRC 103075","na":1,"nb":2,"a":[["reservoir-envo-00000025.html","reservoir"]],"b":[["NCBITaxon%3A273677","Microbacterium oleivorans"],["NCBITaxon%3A1223528","Microbacterium oleivorans NBRC 103075"]]},{"id":"NCBITaxon:1223544","l":"Gordonia sihwensis NBRC 108236","na":1,"nb":2,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A173559","Gordonia sihwensis"],["NCBITaxon%3A1223544","Gordonia sihwensis NBRC 108236"]]},{"id":"NCBITaxon:1224164","l":"Corynebacterium vitaeruminis DSM 20294","na":1,"nb":2,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A38305","Corynebacterium vitaeruminis"],["NCBITaxon%3A1224164","Corynebacterium vitaeruminis DSM 20294"]]},{"id":"NCBITaxon:122587","l":"Neisseria meningitidis serogroup A / serotype 4A (strain DSM 15465 / Z2491)","na":1,"nb":2,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"]],"b":[["NCBITaxon%3A487","Neisseria meningitidis"],["NCBITaxon%3A122587","Neisseria meningitidis Z2491"]]},{"id":"NCBITaxon:1227482","l":"Halorubrum lipolyticum DSM 21995","na":1,"nb":2,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A368624","Halorubrum lipolyticum"],["NCBITaxon%3A1227482","Halorubrum lipolyticum DSM 21995"]]},{"id":"NCBITaxon:1227484","l":"Halorubrum saccharovorum DSM 1137","na":1,"nb":2,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A2248","Halorubrum saccharovorum"],["NCBITaxon%3A1227484","Halorubrum saccharovorum DSM 1137"]]},{"id":"NCBITaxon:1227493","l":"Natrialba hulunbeirensis JCM 10989","na":1,"nb":2,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A123783","Natrialba hulunbeirensis"],["NCBITaxon%3A1227493","Natrialba hulunbeirensis JCM 10989"]]},{"id":"NCBITaxon:1227498","l":"Natronococcus jeotgali DSM 18795","na":1,"nb":2,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A413812","Natronococcus jeotgali"],["NCBITaxon%3A1227498","Natronococcus jeotgali DSM 18795"]]},{"id":"NCBITaxon:1231184","l":"Nitratireductor kimnyeongensis KY 101","na":1,"nb":2,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A430679","Nitratireductor kimnyeongensis"],["NCBITaxon%3A1231184","Nitratireductor kimnyeongensis KY 101"]]},{"id":"NCBITaxon:1231624","l":"Asaia bogorensis NBRC 16594","na":1,"nb":2,"a":[["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A91915","Asaia bogorensis"],["NCBITaxon%3A1231624","Asaia bogorensis NBRC 16594"]]},{"id":"NCBITaxon:1232203","l":"Bacillus thuringiensis serovar aizawai str. Leapi01","na":2,"nb":1,"a":[["larva-bto-0000707.html","larva"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A1232203","Bacillus thuringiensis serovar aizawai str. Leapi01"]]},{"id":"NCBITaxon:1234369","l":"Chlamydia pecorum P787","na":1,"nb":2,"a":[["synovia-bto-0001339.html","synovia"]],"b":[["NCBITaxon%3A85991","Chlamydia pecorum"],["NCBITaxon%3A1234369","Chlamydia pecorum P787"]]},{"id":"NCBITaxon:1235813","l":"Bacteroides pyogenes JCM 10003","na":1,"nb":2,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["NCBITaxon%3A310300","Bacteroides pyogenes"],["NCBITaxon%3A1235813","Bacteroides pyogenes JCM 10003"]]},{"id":"NCBITaxon:1235834","l":"Kosakonia sacchari SP1","na":1,"nb":2,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1158459","Kosakonia sacchari"],["NCBITaxon%3A1235834","Kosakonia sacchari SP1"]]},{"id":"NCBITaxon:1236512","l":"Bacteroides rodentium JCM 16496","na":1,"nb":2,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A691816","Bacteroides rodentium"],["NCBITaxon%3A1236512","Bacteroides rodentium JCM 16496"]]},{"id":"NCBITaxon:1236513","l":"Bacteroides faecichinchillae JCM 17102","na":1,"nb":2,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A871325","Bacteroides faecichinchillae"],["NCBITaxon%3A1236513","Bacteroides faecichinchillae JCM 17102"]]},{"id":"NCBITaxon:1236514","l":"Bacteroides stercorirosoris JCM 17103","na":1,"nb":2,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A871324","Bacteroides stercorirosoris"],["NCBITaxon%3A1236514","Bacteroides stercorirosoris JCM 17103"]]},{"id":"NCBITaxon:1236517","l":"Prevotella fusca JCM 17724","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A589436","Prevotella fusca"],["NCBITaxon%3A1236517","Prevotella fusca JCM 17724"]]},{"id":"NCBITaxon:1236521","l":"Porphyromonas macacae JCM 15984","na":1,"nb":2,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["NCBITaxon%3A28115","Porphyromonas macacae"],["NCBITaxon%3A1236521","Porphyromonas macacae JCM 15984"]]},{"id":"NCBITaxon:1236522","l":"Escherichia coli JCM 18426","na":1,"nb":2,"a":[["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1236522","Escherichia coli JCM 18426"]]},{"id":"NCBITaxon:1236544","l":"","na":1,"nb":2,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A38313","Shewanella algae"],["NCBITaxon%3A1236544","Shewanella algae JCM 21037 = NBRC 103173"]]},{"id":"NCBITaxon:1238186","l":"Leucobacter salsicius M1-8","na":1,"nb":2,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A664638","Leucobacter salsicius"],["NCBITaxon%3A1238186","Leucobacter salsicius M1-8"]]},{"id":"NCBITaxon:123820","l":"[Actinobacillus] rossii","na":2,"nb":1,"a":[["vaginal-fluid-uberon-0036243.html","vaginal fluid"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A123820","[Actinobacillus] rossii"]]},{"id":"NCBITaxon:123822","l":"[Haemophilus] felis","na":2,"nb":1,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A123822","[Haemophilus] felis"]]},{"id":"NCBITaxon:1239783","l":"Bacillus atrophaeus UCMB-5137","na":2,"nb":1,"a":[["fruit-bto-0000486.html","fruit"],["seedling-bto-0001228.html","seedling"]],"b":[["NCBITaxon%3A1239783","Bacillus atrophaeus UCMB-5137"]]},{"id":"NCBITaxon:124","l":"Blastopirellula marina","na":1,"nb":2,"a":[["marine-environment-envo-01000320.html","marine environment"]],"b":[["NCBITaxon%3A124","Blastopirellula marina"],["NCBITaxon%3A314230","Blastopirellula marina DSM 3645"]]},{"id":"NCBITaxon:1240678","l":"Streptomyces natalensis ATCC 27448","na":1,"nb":2,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A1240678","Streptomyces natalensis ATCC 27448"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:1243002","l":"Vibrio olivae","na":1,"nb":2,"a":[["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A1433403","Glycocaulis abyssi"],["NCBITaxon%3A1243002","Vibrio olivae"]]},{"id":"NCBITaxon:1245469","l":"Bradyrhizobium oligotrophicum S58","na":1,"nb":2,"a":[["bacteroid-bto-0000109.html","bacteroid"]],"b":[["NCBITaxon%3A44255","Bradyrhizobium oligotrophicum"],["NCBITaxon%3A1245469","Bradyrhizobium oligotrophicum S58"]]},{"id":"NCBITaxon:1246444","l":"Nocardiopsis halotolerans DSM 44410","na":1,"nb":2,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A124252","Nocardiopsis halotolerans"],["NCBITaxon%3A1246444","Nocardiopsis halotolerans DSM 44410"]]},{"id":"NCBITaxon:1246445","l":"Nocardiopsis kunsanensis DSM 44524","na":1,"nb":2,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A141693","Nocardiopsis kunsanensis"],["NCBITaxon%3A1246445","Nocardiopsis kunsanensis DSM 44524"]]},{"id":"NCBITaxon:1246448","l":"Nocardiopsis valliformis DSM 45023","na":1,"nb":2,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A239974","Nocardiopsis valliformis"],["NCBITaxon%3A1246448","Nocardiopsis valliformis DSM 45023"]]},{"id":"NCBITaxon:1246460","l":"Nocardiopsis lucentensis DSM 44048","na":1,"nb":2,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A53441","Nocardiopsis lucentensis"],["NCBITaxon%3A1246460","Nocardiopsis lucentensis DSM 44048"]]},{"id":"NCBITaxon:1246461","l":"Nocardiopsis alkaliphila YIM 80379","na":1,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A225762","Nocardiopsis alkaliphila"],["NCBITaxon%3A1246461","Nocardiopsis alkaliphila YIM 80379"]]},{"id":"NCBITaxon:1246995","l":"Actinoplanes friuliensis DSM 7358","na":1,"nb":2,"a":[["sporangium-bto-0001287.html","sporangium"]],"b":[["NCBITaxon%3A196914","Actinoplanes friuliensis"],["NCBITaxon%3A1246995","Actinoplanes friuliensis DSM 7358"]]},{"id":"NCBITaxon:1255628","l":"","na":1,"nb":2,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A150056","Mammaliicoccus fleurettii"],["NCBITaxon%3A1255628","Mammaliicoccus fleurettii CIP 106114 = DSM 13212"]]},{"id":"NCBITaxon:125602","l":"Desulfococcus biacutus","na":2,"nb":1,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A125602","Desulfococcus biacutus"]]},{"id":"NCBITaxon:1257026","l":"Streptomyces barkulensis","na":2,"nb":1,"a":[["brackish-water-body-envo-01001321.html","brackish water body"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A1257026","Streptomyces barkulensis"]]},{"id":"NCBITaxon:1257037","l":"Streptococcus mutans 5DC8","na":2,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["tooth-bto-0000397.html","tooth"]],"b":[["NCBITaxon%3A1257037","Streptococcus mutans 5DC8"]]},{"id":"NCBITaxon:1257038","l":"Streptococcus mutans KK21","na":2,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["tooth-bto-0000397.html","tooth"]],"b":[["NCBITaxon%3A1257038","Streptococcus mutans KK21"]]},{"id":"NCBITaxon:1257039","l":"Streptococcus mutans KK23","na":2,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["tooth-bto-0000397.html","tooth"]],"b":[["NCBITaxon%3A1257039","Streptococcus mutans KK23"]]},{"id":"NCBITaxon:1257040","l":"Streptococcus mutans AC4446","na":2,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["tooth-bto-0000397.html","tooth"]],"b":[["NCBITaxon%3A1257040","Streptococcus mutans AC4446"]]},{"id":"NCBITaxon:1257042","l":"Streptococcus mutans NCTC 11060","na":2,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["tooth-bto-0000397.html","tooth"]],"b":[["NCBITaxon%3A1257042","Streptococcus mutans NCTC 11060"]]},{"id":"NCBITaxon:1259795","l":"Coprothermobacter platensis DSM 11748","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A108819","Coprothermobacter platensis"],["NCBITaxon%3A1259795","Coprothermobacter platensis DSM 11748"]]},{"id":"NCBITaxon:1260928","l":"Geobacter sulfurreducens subsp. ethanolicus","na":1,"nb":2,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A35554","Geobacter sulfurreducens"],["NCBITaxon%3A1260928","Geobacter sulfurreducens subsp. ethanolicus"]]},{"id":"NCBITaxon:1261125","l":"Mannheimia haemolytica serotype 6 str. H23","na":2,"nb":1,"a":[["nasopharynx-bto-0000662.html","nasopharynx"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1261125","Mannheimia haemolytica serotype 6 str. H23"]]},{"id":"NCBITaxon:1263547","l":"Oscillibacter ruminantium","na":1,"nb":2,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A1263547","Oscillibacter ruminantium"],["NCBITaxon%3A1007096","Oscillibacter ruminantium GH1"]]},{"id":"NCBITaxon:1263756","l":"Mycoplasmoides pneumoniae 54089","na":2,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1263756","Mycoplasmoides pneumoniae 54089"]]},{"id":"NCBITaxon:1263757","l":"Mycoplasmoides pneumoniae 54524","na":2,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1263757","Mycoplasmoides pneumoniae 54524"]]},{"id":"NCBITaxon:1263758","l":"Mycoplasmoides pneumoniae 51494","na":2,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1263758","Mycoplasmoides pneumoniae 51494"]]},{"id":"NCBITaxon:1263760","l":"Mycoplasmoides pneumoniae 85138","na":2,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1263760","Mycoplasmoides pneumoniae 85138"]]},{"id":"NCBITaxon:1263761","l":"Mycoplasmoides pneumoniae 39443","na":2,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1263761","Mycoplasmoides pneumoniae 39443"]]},{"id":"NCBITaxon:1263762","l":"Mycoplasmoides pneumoniae 85084","na":2,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1263762","Mycoplasmoides pneumoniae 85084"]]},{"id":"NCBITaxon:1263763","l":"Mycoplasmoides pneumoniae M1139","na":2,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1263763","Mycoplasmoides pneumoniae M1139"]]},{"id":"NCBITaxon:1263835","l":"Mycoplasmoides pneumoniae MAC","na":2,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1263835","Mycoplasmoides pneumoniae MAC"]]},{"id":"NCBITaxon:1266845","l":"Carnobacterium inhibens subsp. gilichinskyi","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A147709","Carnobacterium inhibens"],["NCBITaxon%3A1266845","Carnobacterium inhibens subsp. gilichinskyi"]]},{"id":"NCBITaxon:1267002","l":"Mycoplasmoides gallisepticum ATCC 19610","na":1,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A2096","Mycoplasmoides gallisepticum"],["NCBITaxon%3A1267002","Mycoplasmoides gallisepticum ATCC 19610"]]},{"id":"NCBITaxon:126741","l":"Thermotoga sp. KOL6","na":2,"nb":1,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A126741","Thermotoga sp. KOL6"]]},{"id":"NCBITaxon:126843","l":"Mesorhizobium chacoense","na":2,"nb":1,"a":[["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"]],"b":[["NCBITaxon%3A126843","Mesorhizobium chacoense"]]},{"id":"NCBITaxon:1268635","l":"Legionella oakridgensis ATCC 33761 = DSM 21215","na":1,"nb":2,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A29423","Legionella oakridgensis"],["NCBITaxon%3A1268635","Legionella oakridgensis ATCC 33761 = DSM 21215"]]},{"id":"NCBITaxon:1271","l":"Micrococcus sp.","na":2,"nb":1,"a":[["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"]],"b":[["NCBITaxon%3A1271","Micrococcus sp."]]},{"id":"NCBITaxon:127458","l":"Thiobaca trueperi","na":2,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["lake-envo-00000020.html","lake"]],"b":[["NCBITaxon%3A127458","Thiobaca trueperi"]]},{"id":"NCBITaxon:127520","l":"Gremmeniella abietina","na":2,"nb":1,"a":[["lake-envo-00000020.html","lake"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"]],"b":[["NCBITaxon%3A127520","Gremmeniella abietina"]]},{"id":"NCBITaxon:1276","l":"Kytococcus sedentarius","na":1,"nb":2,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A1276","Kytococcus sedentarius"],["NCBITaxon%3A478801","Kytococcus sedentarius DSM 20547"]]},{"id":"NCBITaxon:1276220","l":"Spiroplasma taiwanense CT-1","na":1,"nb":2,"a":[["cardiovascular-system-bto-0000088.html","cardiovascular system"]],"b":[["NCBITaxon%3A2145","Spiroplasma taiwanense"],["NCBITaxon%3A1276220","Spiroplasma taiwanense CT-1"]]},{"id":"NCBITaxon:1276221","l":"Spiroplasma diminutum CUAS-1","na":1,"nb":2,"a":[["cardiovascular-system-bto-0000088.html","cardiovascular system"]],"b":[["NCBITaxon%3A216936","Spiroplasma diminutum"],["NCBITaxon%3A1276221","Spiroplasma diminutum CUAS-1"]]},{"id":"NCBITaxon:1276246","l":"Spiroplasma culicicola AES-1","na":1,"nb":2,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A216935","Spiroplasma culicicola"],["NCBITaxon%3A1276246","Spiroplasma culicicola AES-1"]]},{"id":"NCBITaxon:1279017","l":"Microbulbifer variabilis ATCC 700307","na":1,"nb":2,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A266805","Microbulbifer variabilis"],["NCBITaxon%3A1279017","Microbulbifer variabilis ATCC 700307"]]},{"id":"NCBITaxon:1280004","l":"Vibrio owensii LMG 25430","na":1,"nb":2,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A696485","Vibrio owensii"],["NCBITaxon%3A1280004","Vibrio owensii LMG 25430"]]},{"id":"NCBITaxon:128104","l":"Lentzea albidocapillata subsp. violacea","na":1,"nb":2,"a":[["geographic-feature-envo-00000000.html","geographic feature"]],"b":[["NCBITaxon%3A40571","Lentzea albidocapillata"],["NCBITaxon%3A128104","Lentzea albidocapillata subsp. violacea"]]},{"id":"NCBITaxon:1282887","l":"Lachnospira multipara ATCC 19207","na":1,"nb":2,"a":[["foregut-bto-0000507.html","foregut"]],"b":[["NCBITaxon%3A28051","Lachnospira multipara"],["NCBITaxon%3A1282887","Lachnospira multipara ATCC 19207"]]},{"id":"NCBITaxon:1283291","l":"Pseudomonas sp. URMO17WK12:I11","na":2,"nb":1,"a":[["cuticle-bto-0001600.html","cuticle"],["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A1283291","Pseudomonas sp. URMO17WK12:I11"]]},{"id":"NCBITaxon:1283300","l":"Methylohalobius crimeensis 10Ki","na":1,"nb":2,"a":[["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A244365","Methylohalobius crimeensis"],["NCBITaxon%3A1283300","Methylohalobius crimeensis 10Ki"]]},{"id":"NCBITaxon:1284","l":"Staphylococcus hyicus","na":1,"nb":2,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["NCBITaxon%3A1284","Staphylococcus hyicus"],["NCBITaxon%3A29387","Staphylococcus sp."]]},{"id":"NCBITaxon:128574","l":"Paenibacillus brasilensis","na":2,"nb":1,"a":[["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["NCBITaxon%3A128574","Paenibacillus brasilensis"]]},{"id":"NCBITaxon:1286348","l":"Escherichia coli TOP2522-1","na":2,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286348","Escherichia coli TOP2522-1"]]},{"id":"NCBITaxon:1286350","l":"Escherichia coli TOP2652","na":2,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286350","Escherichia coli TOP2652"]]},{"id":"NCBITaxon:1286351","l":"Escherichia coli TOP2662-1","na":2,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286351","Escherichia coli TOP2662-1"]]},{"id":"NCBITaxon:1286352","l":"Escherichia coli TOP2662-2","na":2,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286352","Escherichia coli TOP2662-2"]]},{"id":"NCBITaxon:1286353","l":"Escherichia coli TOP2662-3","na":2,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286353","Escherichia coli TOP2662-3"]]},{"id":"NCBITaxon:1287736","l":"Achromobacter aegrifaciens","na":1,"nb":2,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"]],"b":[["NCBITaxon%3A1287736","Achromobacter aegrifaciens"],["NCBITaxon%3A32002","Achromobacter denitrificans"]]},{"id":"NCBITaxon:128782","l":"Allobosea minatitlanensis","na":1,"nb":2,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A128782","Allobosea minatitlanensis"],["NCBITaxon%3A2126436","Carnobacterium antarcticum"]]},{"id":"NCBITaxon:1288027","l":"Arcticibacter svalbardensis","na":1,"nb":2,"a":[["subarctic-habitatmech-bacdive-09ded89de7.html","Subarctic"]],"b":[["NCBITaxon%3A1288027","Arcticibacter svalbardensis"],["NCBITaxon%3A1150600","Arcticibacter svalbardensis MN12-7"]]},{"id":"NCBITaxon:1288391","l":"Actinomyces timonensis","na":1,"nb":2,"a":[["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"]],"b":[["NCBITaxon%3A1288391","Actinomyces timonensis"],["NCBITaxon%3A521393","Actinomyces timonensis DSM 23838"]]},{"id":"NCBITaxon:1288392","l":"Moraxella porci","na":1,"nb":2,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["NCBITaxon%3A1288392","Moraxella porci"],["NCBITaxon%3A573983","Moraxella porci DSM 25326"]]},{"id":"NCBITaxon:1288492","l":"Enterococcus durans IPLA 655","na":2,"nb":1,"a":[["enterocyte-bto-0000398.html","enterocyte"],["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A1288492","Enterococcus durans IPLA 655"]]},{"id":"NCBITaxon:1291742","l":"Paucilactobacillus hokkaidonensis JCM 18461","na":1,"nb":2,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A1193095","Paucilactobacillus hokkaidonensis"],["NCBITaxon%3A1291742","Paucilactobacillus hokkaidonensis JCM 18461"]]},{"id":"NCBITaxon:1291743","l":"Secundilactobacillus oryzae JCM 18671","na":1,"nb":2,"a":[["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A1202668","Secundilactobacillus oryzae"],["NCBITaxon%3A1291743","Secundilactobacillus oryzae JCM 18671"]]},{"id":"NCBITaxon:1293","l":"Staphylococcus gallinarum","na":1,"nb":2,"a":[["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["NCBITaxon%3A1293","Staphylococcus gallinarum"],["NCBITaxon%3A1288","Staphylococcus xylosus"]]},{"id":"NCBITaxon:1293038","l":"Methanosarcina mazei JCM 9314","na":1,"nb":2,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A2209","Methanosarcina mazei"],["NCBITaxon%3A1293038","Methanosarcina mazei JCM 9314"]]},{"id":"NCBITaxon:1293039","l":"Methanobrevibacter arboriphilus JCM 9315","na":1,"nb":2,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A39441","Methanobrevibacter arboriphilus"],["NCBITaxon%3A1293039","Methanobrevibacter arboriphilus JCM 9315"]]},{"id":"NCBITaxon:1293042","l":"Methanoculleus chikugoensis JCM 10825","na":1,"nb":2,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A118126","Methanoculleus chikugoensis"],["NCBITaxon%3A1293042","Methanoculleus chikugoensis JCM 10825"]]},{"id":"NCBITaxon:1294022","l":"Piscibacillus salipiscarius JCM 13188","na":1,"nb":2,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A299480","Piscibacillus salipiscarius"],["NCBITaxon%3A1294022","Piscibacillus salipiscarius JCM 13188"]]},{"id":"NCBITaxon:1294260","l":"Geotalea toluenoxydans JCM 15764","na":1,"nb":2,"a":[["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A421624","Geotalea toluenoxydans"],["NCBITaxon%3A1294260","Geotalea toluenoxydans JCM 15764"]]},{"id":"NCBITaxon:1295128","l":"Thermodesulfovibrio aggregans JCM 13213","na":1,"nb":2,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A86166","Thermodesulfovibrio aggregans"],["NCBITaxon%3A1295128","Thermodesulfovibrio aggregans JCM 13213"]]},{"id":"NCBITaxon:1295373","l":"Acidiplasma cupricumulans JCM 13668 = DSM 16651","na":1,"nb":2,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A312540","Acidiplasma cupricumulans"],["NCBITaxon%3A1295373","Acidiplasma cupricumulans JCM 13668 = DSM 16651"]]},{"id":"NCBITaxon:1298595","l":"Veillonella rogosae JCM 15642","na":1,"nb":2,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["NCBITaxon%3A423477","Veillonella rogosae"],["NCBITaxon%3A1298595","Veillonella rogosae JCM 15642"]]},{"id":"NCBITaxon:1298604","l":"Enterobacter asburiae JCM 6051","na":1,"nb":2,"a":[["vaginal-fluid-uberon-0036243.html","vaginal fluid"]],"b":[["NCBITaxon%3A61645","Enterobacter asburiae"],["NCBITaxon%3A1298604","Enterobacter asburiae JCM 6051"]]},{"id":"NCBITaxon:1298606","l":"Methanosarcina barkeri JCM 10043","na":1,"nb":2,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A2208","Methanosarcina barkeri"],["NCBITaxon%3A1298606","Methanosarcina barkeri JCM 10043"]]},{"id":"NCBITaxon:1300163","l":"Methanobacterium formicicum JCM 10132","na":1,"nb":2,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A2162","Methanobacterium formicicum"],["NCBITaxon%3A1300163","Methanobacterium formicicum JCM 10132"]]},{"id":"NCBITaxon:1302689","l":"Mucilaginibacter polytrichastri","na":2,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A1302689","Mucilaginibacter polytrichastri"]]},{"id":"NCBITaxon:1302723","l":"Agromyces ulmi JCM 13315","na":1,"nb":2,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["NCBITaxon%3A248902","Agromyces ulmi"],["NCBITaxon%3A1302723","Agromyces ulmi JCM 13315"]]},{"id":"NCBITaxon:1303680","l":"Rhodococcus phenolicus JCM 14914","na":1,"nb":2,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A263849","Rhodococcus phenolicus"],["NCBITaxon%3A1303680","Rhodococcus phenolicus JCM 14914"]]},{"id":"NCBITaxon:1304875","l":"Aminobacterium mobile DSM 12262","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A81467","Aminobacterium mobile"],["NCBITaxon%3A1304875","Aminobacterium mobile DSM 12262"]]},{"id":"NCBITaxon:1305835","l":"Rhodococcus sp. JG-3","na":2,"nb":1,"a":[["dry-valley-envo-00000128.html","dry valley"],["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A1305835","Rhodococcus sp. JG-3"]]},{"id":"NCBITaxon:1305857","l":"Cellulomonas composti JCM 14898","na":1,"nb":2,"a":[["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A266130","Cellulomonas composti"],["NCBITaxon%3A1305857","Cellulomonas composti JCM 14898"]]},{"id":"NCBITaxon:1305865","l":"Cellulomonas chitinilytica JCM 16927","na":1,"nb":2,"a":[["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A398759","Cellulomonas chitinilytica"],["NCBITaxon%3A1305865","Cellulomonas chitinilytica JCM 16927"]]},{"id":"NCBITaxon:1307457","l":"Kineosporia mikuniensis JCM 9961","na":1,"nb":2,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A499547","Kineosporia mikuniensis"],["NCBITaxon%3A1307457","Kineosporia mikuniensis JCM 9961"]]},{"id":"NCBITaxon:1307759","l":"Desulfohalovibrio reitneri","na":2,"nb":1,"a":[["microbial-mat-envo-01000008.html","microbial mat"],["atoll-envo-00000166.html","atoll"]],"b":[["NCBITaxon%3A1307759","Desulfohalovibrio reitneri"]]},{"id":"NCBITaxon:1307912","l":"Acetobacter oeni LMG 21952","na":1,"nb":2,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A304077","Acetobacter oeni"],["NCBITaxon%3A1307912","Acetobacter oeni LMG 21952"]]},{"id":"NCBITaxon:1307920","l":"Acetobacter tropicalis NRIC 0312","na":1,"nb":2,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A104102","Acetobacter tropicalis"],["NCBITaxon%3A1307920","Acetobacter tropicalis NRIC 0312"]]},{"id":"NCBITaxon:1307939","l":"Komagataeibacter rhaeticus DSM 16663","na":1,"nb":2,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A215221","Komagataeibacter rhaeticus"],["NCBITaxon%3A1307939","Komagataeibacter rhaeticus DSM 16663"]]},{"id":"NCBITaxon:1307943","l":"Komagataeibacter swingsii DSM 16373","na":1,"nb":2,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A215220","Komagataeibacter swingsii"],["NCBITaxon%3A1307943","Komagataeibacter swingsii DSM 16373"]]},{"id":"NCBITaxon:131081","l":"Corynebacterium capitovis","na":1,"nb":2,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"]],"b":[["NCBITaxon%3A131081","Corynebacterium capitovis"],["NCBITaxon%3A1121354","Corynebacterium capitovis DSM 44611"]]},{"id":"NCBITaxon:131109","l":"Actinomyces bowdenii","na":2,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["NCBITaxon%3A131109","Actinomyces bowdenii"]]},{"id":"NCBITaxon:131110","l":"Schaalia radingae","na":1,"nb":2,"a":[["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["NCBITaxon%3A29317","Actinomyces sp."],["NCBITaxon%3A131110","Schaalia radingae"]]},{"id":"NCBITaxon:1314751","l":"Sutcliffiella cohnii NBRC 15565","na":1,"nb":2,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A33932","Sutcliffiella cohnii"],["NCBITaxon%3A1314751","Sutcliffiella cohnii NBRC 15565"]]},{"id":"NCBITaxon:1314958","l":"Parachlamydiaceae bacterium HS-T3","na":2,"nb":1,"a":[["epithelium-bto-0000416.html","epithelium"],["hep-2-cell-bto-0000976.html","HEp-2 cell"]],"b":[["NCBITaxon%3A1314958","Parachlamydiaceae bacterium HS-T3"]]},{"id":"NCBITaxon:13160","l":"Brevundimonas bullata","na":1,"nb":2,"a":[["biome-envo-00000428.html","biome"]],"b":[["NCBITaxon%3A13160","Brevundimonas bullata"],["NCBITaxon%3A1550907","Kiloniella antarctica"]]},{"id":"NCBITaxon:1319815","l":"Cetobacterium somerae ATCC BAA-474","na":1,"nb":2,"a":[["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"]],"b":[["NCBITaxon%3A188913","Cetobacterium somerae"],["NCBITaxon%3A1319815","Cetobacterium somerae ATCC BAA-474"]]},{"id":"NCBITaxon:1321369","l":"Staphylococcus aureus Bmb9393","na":2,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["epithelial-cell-bto-0000414.html","epithelial cell"]],"b":[["NCBITaxon%3A1321369","Staphylococcus aureus Bmb9393"]]},{"id":"NCBITaxon:132476","l":"Pseudomonas kilonensis","na":1,"nb":2,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A132476","Pseudomonas kilonensis"],["NCBITaxon%3A1173480","Pseudomonas kilonensis CBLA-66"]]},{"id":"NCBITaxon:1327988","l":"Lactiplantibacillus plantarum 16","na":2,"nb":1,"a":[["juice-bto-0000659.html","juice"],["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A1327988","Lactiplantibacillus plantarum 16"]]},{"id":"NCBITaxon:1328859","l":"Escherichia coli O157:H7 str. SS17","na":2,"nb":1,"a":[["rectal-epithelium-bto-0005445.html","rectal epithelium"],["squamous-epithelium-bto-0002072.html","squamous epithelium"]],"b":[["NCBITaxon%3A1328859","Escherichia coli O157:H7 str. SS17"]]},{"id":"NCBITaxon:1330043","l":"Bacillus bombysepticus str. Wang","na":2,"nb":1,"a":[["carcass-bto-0001965.html","carcass"],["thorax-bto-0001368.html","thorax"]],"b":[["NCBITaxon%3A1330043","Bacillus bombysepticus str. Wang"]]},{"id":"NCBITaxon:1333","l":"Streptococcus criceti","na":1,"nb":2,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A1333","Streptococcus criceti"],["NCBITaxon%3A873449","Streptococcus criceti HS-6"]]},{"id":"NCBITaxon:1333542","l":"Pseudomonas aeruginosa str. C 1426","na":1,"nb":2,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1333542","Pseudomonas aeruginosa str. C 1426"],["NCBITaxon%3A1333543","Pseudomonas aeruginosa str. C 1433"]]},{"id":"NCBITaxon:1333544","l":"Pseudomonas aeruginosa str. J 1385","na":1,"nb":2,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1333544","Pseudomonas aeruginosa str. J 1385"],["NCBITaxon%3A1333545","Pseudomonas aeruginosa str. J 1532"]]},{"id":"NCBITaxon:1334565","l":"","na":2,"nb":1,"a":[["liver-bto-0000759.html","liver"],["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A1334565","Listeria monocytogenes EGD"]]},{"id":"NCBITaxon:1334628","l":"Burkholderia contaminans LMG 23361","na":1,"nb":2,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A488447","Burkholderia contaminans"],["NCBITaxon%3A1334628","Burkholderia contaminans LMG 23361"]]},{"id":"NCBITaxon:133534","l":"Dethiosulfovibrio russensis","na":2,"nb":1,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A133534","Dethiosulfovibrio russensis"]]},{"id":"NCBITaxon:1336234","l":"Atopobacter phocae ATCC BAA-285","na":1,"nb":2,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"]],"b":[["NCBITaxon%3A136492","Atopobacter phocae"],["NCBITaxon%3A1336234","Atopobacter phocae ATCC BAA-285"]]},{"id":"NCBITaxon:1336236","l":"Ruminococcus flavefaciens ATCC 19208","na":1,"nb":2,"a":[["foregut-bto-0000507.html","foregut"]],"b":[["NCBITaxon%3A1265","Ruminococcus flavefaciens"],["NCBITaxon%3A1336236","Ruminococcus flavefaciens ATCC 19208"]]},{"id":"NCBITaxon:1336240","l":"Shewanella colwelliana ATCC 39565","na":1,"nb":2,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["NCBITaxon%3A23","Shewanella colwelliana"],["NCBITaxon%3A1336240","Shewanella colwelliana ATCC 39565"]]},{"id":"NCBITaxon:1336241","l":"Eubacterium xylanophilum ATCC 35991","na":1,"nb":2,"a":[["foregut-bto-0000507.html","foregut"]],"b":[["NCBITaxon%3A39497","Eubacterium xylanophilum"],["NCBITaxon%3A1336241","Eubacterium xylanophilum ATCC 35991"]]},{"id":"NCBITaxon:1337958","l":"Amycolatopsis orientalis DSM 46075","na":1,"nb":2,"a":[["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A31958","Amycolatopsis orientalis"],["NCBITaxon%3A1337958","Amycolatopsis orientalis DSM 46075"]]},{"id":"NCBITaxon:1337996","l":"Paraburkholderia phenoliruptrix AC1100","na":1,"nb":2,"a":[["resting-cell-bto-0001170.html","resting cell"]],"b":[["NCBITaxon%3A252970","Paraburkholderia phenoliruptrix"],["NCBITaxon%3A1337996","Paraburkholderia phenoliruptrix AC1100"]]},{"id":"NCBITaxon:1341154","l":"Flavobacterium cauense R2A-7","na":1,"nb":2,"a":[["lake-envo-00000020.html","lake"]],"b":[["NCBITaxon%3A510946","Flavobacterium cauense"],["NCBITaxon%3A1341154","Flavobacterium cauense R2A-7"]]},{"id":"NCBITaxon:1341646","l":"Mycolicibacterium septicum DSM 44393","na":1,"nb":2,"a":[["catheter-device-ncit-c50344.html","Catheter Device"]],"b":[["NCBITaxon%3A98668","Mycolicibacterium septicum"],["NCBITaxon%3A1341646","Mycolicibacterium septicum DSM 44393"]]},{"id":"NCBITaxon:1341692","l":"Clostridium autoethanogenum DSM 10061","na":1,"nb":2,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A84023","Clostridium autoethanogenum"],["NCBITaxon%3A1341692","Clostridium autoethanogenum DSM 10061"]]},{"id":"NCBITaxon:1343076","l":"Candidatus Karelsulcia muelleri str. Sulcia-ALF","na":2,"nb":1,"a":[["phloem-bto-0001058.html","phloem"],["xylem-bto-0001468.html","xylem"]],"b":[["NCBITaxon%3A1343076","Candidatus Karelsulcia muelleri str. Sulcia-ALF"]]},{"id":"NCBITaxon:1343077","l":"Candidatus Nasuia deltocephalinicola str. NAS-ALF","na":2,"nb":1,"a":[["phloem-bto-0001058.html","phloem"],["xylem-bto-0001468.html","xylem"]],"b":[["NCBITaxon%3A1343077","Candidatus Nasuia deltocephalinicola str. NAS-ALF"]]},{"id":"NCBITaxon:1346614","l":"Serratia liquefaciens ATCC 27592","na":1,"nb":2,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A614","Serratia liquefaciens"],["NCBITaxon%3A1346614","Serratia liquefaciens ATCC 27592"]]},{"id":"NCBITaxon:1346791","l":"Sphingobium ummariense RL-3","na":1,"nb":2,"a":[["resting-cell-bto-0001170.html","resting cell"]],"b":[["NCBITaxon%3A420994","Sphingobium ummariense"],["NCBITaxon%3A1346791","Sphingobium ummariense RL-3"]]},{"id":"NCBITaxon:1348249","l":"Methanobrevibacter boviskoreani","na":1,"nb":2,"a":[["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"]],"b":[["NCBITaxon%3A1348249","Methanobrevibacter boviskoreani"],["NCBITaxon%3A1214066","Methanobrevibacter boviskoreani JH1"]]},{"id":"NCBITaxon:1348334","l":"Lyngbya aestuarii BL J","na":2,"nb":1,"a":[["filament-bto-0000463.html","filament"],["trichome-bto-0001395.html","trichome"]],"b":[["NCBITaxon%3A1348334","Lyngbya aestuarii BL J"]]},{"id":"NCBITaxon:1348637","l":"Nocardiopsis listeri NBRC 13360","na":1,"nb":2,"a":[["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A53440","Nocardiopsis listeri"],["NCBITaxon%3A1348637","Nocardiopsis listeri NBRC 13360"]]},{"id":"NCBITaxon:1348660","l":"Serratia plymuthica S13","na":2,"nb":1,"a":[["fruit-bto-0000486.html","fruit"],["pollen-bto-0001097.html","pollen"]],"b":[["NCBITaxon%3A1348660","Serratia plymuthica S13"]]},{"id":"NCBITaxon:1348662","l":"Corynebacterium argentoratense DSM 44202","na":1,"nb":2,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A42817","Corynebacterium argentoratense"],["NCBITaxon%3A1348662","Corynebacterium argentoratense DSM 44202"]]},{"id":"NCBITaxon:1349767","l":"Janthinobacterium agaricidamnosum NBRC 102515 = DSM 9628","na":1,"nb":2,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A55508","Janthinobacterium agaricidamnosum"],["NCBITaxon%3A1349767","Janthinobacterium agaricidamnosum NBRC 102515 = DSM 9628"]]},{"id":"NCBITaxon:1353537","l":"Thioclava pacifica DSM 10166","na":1,"nb":2,"a":[["filament-bto-0000463.html","filament"]],"b":[["NCBITaxon%3A285109","Thioclava pacifica"],["NCBITaxon%3A1353537","Thioclava pacifica DSM 10166"]]},{"id":"NCBITaxon:1354791","l":"","na":1,"nb":2,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A1052","Halorhodospira halochloris"],["NCBITaxon%3A1354791","Halorhodospira halochloris str. A"]]},{"id":"NCBITaxon:1355374","l":"Aliarcobacter lanthieri","na":2,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A1355374","Aliarcobacter lanthieri"]]},{"id":"NCBITaxon:1356854","l":"Alicyclobacillus acidoterrestris (strain ATCC 49025 / DSM 3922 / CIP 106132 / NCIMB 13137 / GD3B)","na":1,"nb":2,"a":[["fruit-juice-bto-0004057.html","fruit juice"]],"b":[["NCBITaxon%3A1450","Alicyclobacillus acidoterrestris"],["NCBITaxon%3A1356854","Alicyclobacillus acidoterrestris ATCC 49025"]]},{"id":"NCBITaxon:1364","l":"Pseudolactococcus piscium","na":1,"nb":2,"a":[["juice-bto-0000659.html","juice"]],"b":[["NCBITaxon%3A1364","Pseudolactococcus piscium"],["NCBITaxon%3A297352","Pseudolactococcus piscium MKFS47"]]},{"id":"NCBITaxon:136492","l":"Atopobacter phocae","na":1,"nb":2,"a":[["co-culture-habitatmech-bacdive-ff945d8a69.html","Co-culture"]],"b":[["NCBITaxon%3A136492","Atopobacter phocae"],["NCBITaxon%3A1336234","Atopobacter phocae ATCC BAA-285"]]},{"id":"NCBITaxon:1365176","l":"Thermofilum adornatum","na":1,"nb":2,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A1365176","Thermofilum adornatum"],["NCBITaxon%3A697581","Thermofilum adornatum 1505"]]},{"id":"NCBITaxon:1366047","l":"Geobacillus stearothermophilus ATCC 12980","na":1,"nb":2,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["NCBITaxon%3A1422","Geobacillus stearothermophilus"],["NCBITaxon%3A1366047","Geobacillus stearothermophilus ATCC 12980"]]},{"id":"NCBITaxon:1367847","l":"Paracoccus aminophilus JCM 7686","na":1,"nb":2,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A34003","Paracoccus aminophilus"],["NCBITaxon%3A1367847","Paracoccus aminophilus JCM 7686"]]},{"id":"NCBITaxon:1368418","l":"Rhizobium nepotum 39/7","na":1,"nb":2,"a":[["crown-gall-bto-0000303.html","crown gall"]],"b":[["NCBITaxon%3A1035271","Rhizobium nepotum"],["NCBITaxon%3A1368418","Rhizobium nepotum 39/7"]]},{"id":"NCBITaxon:13725","l":"Thiocystis violacea","na":2,"nb":1,"a":[["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["NCBITaxon%3A13725","Thiocystis violacea"]]},{"id":"NCBITaxon:137545","l":"Serratia quinivorans","na":1,"nb":2,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A28151","Serratia proteamaculans"],["NCBITaxon%3A137545","Serratia quinivorans"]]},{"id":"NCBITaxon:137733","l":"Granulicatella balaenopterae","na":2,"nb":1,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["dorsum-bto-0001713.html","dorsum"]],"b":[["NCBITaxon%3A137733","Granulicatella balaenopterae"]]},{"id":"NCBITaxon:1379786","l":"Wolbachia pipientis wVitA","na":2,"nb":1,"a":[["embryo-bto-0000379.html","embryo"],["semen-bto-0001230.html","semen"]],"b":[["NCBITaxon%3A1379786","Wolbachia pipientis wVitA"]]},{"id":"NCBITaxon:137993","l":"Ectobacillus funiculus","na":1,"nb":2,"a":[["reservoir-envo-00000025.html","reservoir"]],"b":[["NCBITaxon%3A137993","Ectobacillus funiculus"],["NCBITaxon%3A1844115","Sphingomonas floccifaciens"]]},{"id":"NCBITaxon:1380392","l":"Nocardioides sp. URHA0020","na":2,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"]],"b":[["NCBITaxon%3A1380392","Nocardioides sp. URHA0020"]]},{"id":"NCBITaxon:1385512","l":"Pontibacillus litoralis JSM 072002","na":1,"nb":2,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A516703","Pontibacillus litoralis"],["NCBITaxon%3A1385512","Pontibacillus litoralis JSM 072002"]]},{"id":"NCBITaxon:1392848","l":"Escherichia coli M2","na":1,"nb":2,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1392848","Escherichia coli M2"]]},{"id":"NCBITaxon:1394","l":"[Bacillus] caldolyticus","na":2,"nb":1,"a":[["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"]],"b":[["NCBITaxon%3A1394","[Bacillus] caldolyticus"]]},{"id":"NCBITaxon:1395571","l":"Pseudomonas taeanensis MS-3","na":1,"nb":2,"a":[["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A574962","Pseudomonas taeanensis"],["NCBITaxon%3A1395571","Pseudomonas taeanensis MS-3"]]},{"id":"NCBITaxon:1397693","l":"Exiguobacterium undae DSM 14481","na":1,"nb":2,"a":[["pond-envo-00000033.html","pond"]],"b":[["NCBITaxon%3A169177","Exiguobacterium undae"],["NCBITaxon%3A1397693","Exiguobacterium undae DSM 14481"]]},{"id":"NCBITaxon:1397695","l":"Exiguobacterium undae 190-11","na":2,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"],["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A1397695","Exiguobacterium undae 190-11"]]},{"id":"NCBITaxon:1397697","l":"Exiguobacterium acetylicum DSM 20416","na":1,"nb":2,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["NCBITaxon%3A41170","Exiguobacterium acetylicum"],["NCBITaxon%3A1397697","Exiguobacterium acetylicum DSM 20416"]]},{"id":"NCBITaxon:1397700","l":"Exiguobacterium antarcticum DSM 14480","na":1,"nb":2,"a":[["dry-valley-envo-00000128.html","dry valley"]],"b":[["NCBITaxon%3A132920","Exiguobacterium antarcticum"],["NCBITaxon%3A1397700","Exiguobacterium antarcticum DSM 14480"]]},{"id":"NCBITaxon:1400522","l":"Sediminibacterium salmoneum NBRC 103935","na":1,"nb":2,"a":[["reservoir-envo-00000025.html","reservoir"]],"b":[["NCBITaxon%3A426421","Sediminibacterium salmoneum"],["NCBITaxon%3A1400522","Sediminibacterium salmoneum NBRC 103935"]]},{"id":"NCBITaxon:1402163","l":"Wolbachia endosymbiont wPip_Mol of Culex molestus","na":2,"nb":1,"a":[["embryo-bto-0000379.html","embryo"],["finger-bto-0004669.html","finger"]],"b":[["NCBITaxon%3A1402163","Wolbachia endosymbiont wPip_Mol of Culex molestus"]]},{"id":"NCBITaxon:140314","l":"Trichococcus palustris","na":2,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A140314","Trichococcus palustris"]]},{"id":"NCBITaxon:1407","l":"Peribacillus psychrosaccharolyticus","na":1,"nb":2,"a":[["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["NCBITaxon%3A1407","Peribacillus psychrosaccharolyticus"],["NCBITaxon%3A1174504","Peribacillus psychrosaccharolyticus ATCC 23296"]]},{"id":"NCBITaxon:1408159","l":"Pseudothermotoga caldifontis AZM44c09","na":1,"nb":2,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["NCBITaxon%3A1508419","Pseudothermotoga caldifontis"],["NCBITaxon%3A1408159","Pseudothermotoga caldifontis AZM44c09"]]},{"id":"NCBITaxon:1408160","l":"Thermotoga profunda AZM34c06","na":1,"nb":2,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["NCBITaxon%3A1508420","Pseudothermotoga profunda"],["NCBITaxon%3A1408160","Thermotoga profunda AZM34c06"]]},{"id":"NCBITaxon:1408271","l":"Pseudomonas aeruginosa LES400","na":2,"nb":1,"a":[["amoeba-bto-0005312.html","amoeba"],["biofilm-bto-0002690.html","biofilm"]],"b":[["NCBITaxon%3A1408271","Pseudomonas aeruginosa LES400"]]},{"id":"NCBITaxon:1408272","l":"Pseudomonas aeruginosa LES431","na":2,"nb":1,"a":[["amoeba-bto-0005312.html","amoeba"],["biofilm-bto-0002690.html","biofilm"]],"b":[["NCBITaxon%3A1408272","Pseudomonas aeruginosa LES431"]]},{"id":"NCBITaxon:1408273","l":"Pseudomonas aeruginosa LESB65","na":2,"nb":1,"a":[["amoeba-bto-0005312.html","amoeba"],["biofilm-bto-0002690.html","biofilm"]],"b":[["NCBITaxon%3A1408273","Pseudomonas aeruginosa LESB65"]]},{"id":"NCBITaxon:1408274","l":"Pseudomonas aeruginosa LESlike1","na":2,"nb":1,"a":[["amoeba-bto-0005312.html","amoeba"],["biofilm-bto-0002690.html","biofilm"]],"b":[["NCBITaxon%3A1408274","Pseudomonas aeruginosa LESlike1"]]},{"id":"NCBITaxon:1408281","l":"Endomicrobium proavitum","na":2,"nb":1,"a":[["flagellate-bto-0000464.html","flagellate"],["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1408281","Endomicrobium proavitum"]]},{"id":"NCBITaxon:1408434","l":"","na":1,"nb":2,"a":[["food-product-foodon-00001002.html","food product"]],"b":[["NCBITaxon%3A1299","Deinococcus radiodurans"],["NCBITaxon%3A243230","Deinococcus radiodurans R1 = ATCC 13939 = DSM 20539"]]},{"id":"NCBITaxon:1408438","l":"Hutsoniella sourekii ATCC 700629","na":1,"nb":2,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A87650","Hutsoniella sourekii"],["NCBITaxon%3A1408438","Hutsoniella sourekii ATCC 700629"]]},{"id":"NCBITaxon:1408440","l":"Gemella sanguinis ATCC 700632","na":1,"nb":2,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A84135","Gemella sanguinis"],["NCBITaxon%3A1408440","Gemella sanguinis ATCC 700632"]]},{"id":"NCBITaxon:1408478","l":"Vibrio cholerae ATCC 14035","na":1,"nb":2,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A666","Vibrio cholerae"],["NCBITaxon%3A1408478","Vibrio cholerae ATCC 14035"]]},{"id":"NCBITaxon:1410383","l":"Candidatus Tachikawaea gelatinosa","na":2,"nb":1,"a":[["midgut-bto-0000863.html","midgut"],["ovary-bto-0000975.html","ovary"]],"b":[["NCBITaxon%3A1410383","Candidatus Tachikawaea gelatinosa"]]},{"id":"NCBITaxon:1410653","l":"Clostridium lundense DSM 17049","na":1,"nb":2,"a":[["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"]],"b":[["NCBITaxon%3A319475","Clostridium lundense"],["NCBITaxon%3A1410653","Clostridium lundense DSM 17049"]]},{"id":"NCBITaxon:1411141","l":"Serratia ficaria NBRC 102596","na":1,"nb":2,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A61651","Serratia ficaria"],["NCBITaxon%3A1411141","Serratia ficaria NBRC 102596"]]},{"id":"NCBITaxon:1415755","l":"Halomonas sp. TG39a","na":2,"nb":1,"a":[["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A1415755","Halomonas sp. TG39a"]]},{"id":"NCBITaxon:141693","l":"Nocardiopsis kunsanensis","na":1,"nb":2,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A141693","Nocardiopsis kunsanensis"],["NCBITaxon%3A1246445","Nocardiopsis kunsanensis DSM 44524"]]},{"id":"NCBITaxon:1417985","l":"Bacillus thuringiensis LM1212","na":2,"nb":1,"a":[["carcass-bto-0001965.html","carcass"],["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1417985","Bacillus thuringiensis LM1212"]]},{"id":"NCBITaxon:141949","l":"Thermomonas haemolytica","na":2,"nb":1,"a":[["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A141949","Thermomonas haemolytica"]]},{"id":"NCBITaxon:1421019","l":"Kurthia huakuii","na":1,"nb":2,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A1421019","Kurthia huakuii"],["NCBITaxon%3A1334046","Kurthia huakuii LAM0618"]]},{"id":"NCBITaxon:1423716","l":"Ligilactobacillus acidipiscis DSM 15836","na":1,"nb":2,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A89059","Ligilactobacillus acidipiscis"],["NCBITaxon%3A1423716","Ligilactobacillus acidipiscis DSM 15836"]]},{"id":"NCBITaxon:1423719","l":"Dellaglioa algida DSM 15638","na":1,"nb":2,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["NCBITaxon%3A105612","Dellaglioa algida"],["NCBITaxon%3A1423719","Dellaglioa algida DSM 15638"]]},{"id":"NCBITaxon:1423731","l":"Liquorilactobacillus capillatus DSM 19910","na":1,"nb":2,"a":[["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A480931","Liquorilactobacillus capillatus"],["NCBITaxon%3A1423731","Liquorilactobacillus capillatus DSM 19910"]]},{"id":"NCBITaxon:1423749","l":"Limosilactobacillus gastricus DSM 16045","na":1,"nb":2,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["NCBITaxon%3A227942","Limosilactobacillus gastricus"],["NCBITaxon%3A1423749","Limosilactobacillus gastricus DSM 16045"]]},{"id":"NCBITaxon:1423759","l":"Liquorilactobacillus hordei DSM 19519","na":1,"nb":2,"a":[["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A468911","Liquorilactobacillus hordei"],["NCBITaxon%3A1423759","Liquorilactobacillus hordei DSM 19519"]]},{"id":"NCBITaxon:1423762","l":"Lactobacillus jensenii DSM 20557","na":1,"nb":2,"a":[["vaginal-fluid-uberon-0036243.html","vaginal fluid"]],"b":[["NCBITaxon%3A109790","Lactobacillus jensenii"],["NCBITaxon%3A1423762","Lactobacillus jensenii DSM 20557"]]},{"id":"NCBITaxon:1423763","l":"Lactobacillus kalixensis DSM 16043","na":1,"nb":2,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["NCBITaxon%3A227944","Lactobacillus kalixensis"],["NCBITaxon%3A1423763","Lactobacillus kalixensis DSM 16043"]]},{"id":"NCBITaxon:1423768","l":"Apilactobacillus kunkeei DSM 12361 = ATCC 700308","na":1,"nb":2,"a":[["honey-bto-0000605.html","honey"]],"b":[["NCBITaxon%3A148814","Apilactobacillus kunkeei"],["NCBITaxon%3A1423768","Apilactobacillus kunkeei DSM 12361 = ATCC 700308"]]},{"id":"NCBITaxon:1423789","l":"Lactiplantibacillus paraplantarum DSM 10667","na":1,"nb":2,"a":[["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["NCBITaxon%3A60520","Lactiplantibacillus paraplantarum"],["NCBITaxon%3A1423789","Lactiplantibacillus paraplantarum DSM 10667"]]},{"id":"NCBITaxon:1423796","l":"Loigolactobacillus rennini DSM 20253","na":1,"nb":2,"a":[["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["NCBITaxon%3A238013","Loigolactobacillus rennini"],["NCBITaxon%3A1423796","Loigolactobacillus rennini DSM 20253"]]},{"id":"NCBITaxon:1423808","l":"Lentilactobacillus sunkii DSM 19904","na":1,"nb":2,"a":[["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A481719","Lentilactobacillus sunkii"],["NCBITaxon%3A1423808","Lentilactobacillus sunkii DSM 19904"]]},{"id":"NCBITaxon:1427368","l":"Chlamydia pecorum IPTaLE","na":2,"nb":1,"a":[["conjunctiva-bto-0003415.html","conjunctiva"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A1427368","Chlamydia pecorum IPTaLE"]]},{"id":"NCBITaxon:1427369","l":"Chlamydia pecorum MC/MarsBar","na":2,"nb":1,"a":[["conjunctiva-bto-0003415.html","conjunctiva"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A1427369","Chlamydia pecorum MC/MarsBar"]]},{"id":"NCBITaxon:1427370","l":"Chlamydia pecorum DBDeUG","na":2,"nb":1,"a":[["conjunctiva-bto-0003415.html","conjunctiva"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A1427370","Chlamydia pecorum DBDeUG"]]},{"id":"NCBITaxon:1427371","l":"Chlamydia pecorum VR629","na":2,"nb":1,"a":[["conjunctiva-bto-0003415.html","conjunctiva"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A1427371","Chlamydia pecorum VR629"]]},{"id":"NCBITaxon:1429916","l":"Afipia sp. P52-10","na":2,"nb":1,"a":[["fruit-bto-0000486.html","fruit"],["vero-cell-bto-0001444.html","Vero cell"]],"b":[["NCBITaxon%3A1429916","Afipia sp. P52-10"]]},{"id":"NCBITaxon:1431546","l":"Corynebacterium aquilae DSM 44791","na":1,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A203263","Corynebacterium aquilae"],["NCBITaxon%3A1431546","Corynebacterium aquilae DSM 44791"]]},{"id":"NCBITaxon:1436133","l":"Actinacidiphila bryophytorum","na":1,"nb":2,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A1436133","Actinacidiphila bryophytorum"],["NCBITaxon%3A245294","Chromohalobacter sarecensis"]]},{"id":"NCBITaxon:1436140","l":"Ulnaria acus","na":2,"nb":1,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"]],"b":[["NCBITaxon%3A1436140","Ulnaria acus"]]},{"id":"NCBITaxon:1437605","l":"Bifidobacterium actinocoloniiforme DSM 22766","na":1,"nb":2,"a":[["alimentary-canal-bto-0000058.html","alimentary canal"]],"b":[["NCBITaxon%3A638619","Bifidobacterium actinocoloniiforme"],["NCBITaxon%3A1437605","Bifidobacterium actinocoloniiforme DSM 22766"]]},{"id":"NCBITaxon:1437875","l":"Corynebacterium frankenforstense DSM 45800","na":1,"nb":2,"a":[["reservoir-envo-00000025.html","reservoir"]],"b":[["NCBITaxon%3A1230998","Corynebacterium frankenforstense"],["NCBITaxon%3A1437875","Corynebacterium frankenforstense DSM 45800"]]},{"id":"NCBITaxon:1442586","l":"Winogradskyella wandonensis","na":2,"nb":1,"a":[["intertidal-zone-envo-00000316.html","intertidal zone"],["mudflat-envo-00000192.html","mudflat"]],"b":[["NCBITaxon%3A1442586","Winogradskyella wandonensis"]]},{"id":"NCBITaxon:1443941","l":"Acinetobacter gandensis","na":2,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["NCBITaxon%3A1443941","Acinetobacter gandensis"]]},{"id":"NCBITaxon:1444712","l":"Candidatus Rubidus massiliensis","na":2,"nb":1,"a":[["elementary-body-bto-0000377.html","elementary body"],["reticulate-body-bto-0001172.html","reticulate body"]],"b":[["NCBITaxon%3A1444712","Candidatus Rubidus massiliensis"]]},{"id":"NCBITaxon:144550","l":"Mycolicibacterium fortuitum subsp. acetamidolyticum","na":1,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A1766","Mycolicibacterium fortuitum"],["NCBITaxon%3A144550","Mycolicibacterium fortuitum subsp. acetamidolyticum"]]},{"id":"NCBITaxon:1448136","l":"Roseomonas mucosa ATCC BAA-692","na":1,"nb":2,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A207340","Roseomonas mucosa"],["NCBITaxon%3A1448136","Roseomonas mucosa ATCC BAA-692"]]},{"id":"NCBITaxon:1449336","l":"Carnobacterium divergens DSM 20623","na":1,"nb":2,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["NCBITaxon%3A2748","Carnobacterium divergens"],["NCBITaxon%3A1449336","Carnobacterium divergens DSM 20623"]]},{"id":"NCBITaxon:1449345","l":"Helicobacter rodentium ATCC 700285","na":1,"nb":2,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A59617","Helicobacter rodentium"],["NCBITaxon%3A1449345","Helicobacter rodentium ATCC 700285"]]},{"id":"NCBITaxon:1449352","l":"Streptacidiphilus albus JL83","na":1,"nb":2,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A105425","Streptacidiphilus albus"],["NCBITaxon%3A1449352","Streptacidiphilus albus JL83"]]},{"id":"NCBITaxon:1450","l":"Alicyclobacillus acidoterrestris","na":1,"nb":2,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A1450","Alicyclobacillus acidoterrestris"],["NCBITaxon%3A1356854","Alicyclobacillus acidoterrestris ATCC 49025"]]},{"id":"NCBITaxon:1453497","l":"Kosmotoga arenicorallina S304","na":1,"nb":2,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A688066","Kosmotoga arenicorallina"],["NCBITaxon%3A1453497","Kosmotoga arenicorallina S304"]]},{"id":"NCBITaxon:1455","l":"Pseudobacillus badius","na":1,"nb":2,"a":[["organic-waste-material-envo-00002873.html","organic waste material"]],"b":[["NCBITaxon%3A1348627","Bacillus badius NBRC 15713"],["NCBITaxon%3A1455","Pseudobacillus badius"]]},{"id":"NCBITaxon:1455608","l":"Haladaptatus cibarius D43","na":1,"nb":2,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A453847","Haladaptatus cibarius"],["NCBITaxon%3A1455608","Haladaptatus cibarius D43"]]},{"id":"NCBITaxon:1460882","l":"Microbispora bryophytorum","na":1,"nb":2,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A1460882","Microbispora bryophytorum"],["NCBITaxon%3A1677852","Microbispora bryophytorum subsp. camponoti"]]},{"id":"NCBITaxon:147207","l":"Collinsella intestinalis","na":1,"nb":2,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A147207","Collinsella intestinalis"],["NCBITaxon%3A521003","Collinsella intestinalis DSM 13280"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A1474","Sporosarcina pasteurii"],["NCBITaxon%3A1415631","Sporosarcina pasteurii NCIM 2477"]]},{"id":"NCBITaxon:148219","l":"uncultured Crater Lake bacterium CL500-11","na":2,"nb":1,"a":[["freshwater-lake-envo-00000021.html","freshwater lake"],["freshwater-lake-biome-envo-01000252.html","freshwater lake biome"]],"b":[["NCBITaxon%3A148219","uncultured Crater Lake bacterium CL500-11"]]},{"id":"NCBITaxon:149015","l":"Streptococcus hyovaginalis","na":1,"nb":2,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["NCBITaxon%3A149015","Streptococcus hyovaginalis"],["NCBITaxon%3A1123305","Streptococcus hyovaginalis DSM 12219"]]},{"id":"NCBITaxon:1493","l":"Clostridium cellulovorans","na":1,"nb":2,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"]],"b":[["NCBITaxon%3A1493","Clostridium cellulovorans"],["NCBITaxon%3A573061","Clostridium cellulovorans 743B"]]},{"id":"NCBITaxon:1494","l":"Clostridium cochlearium","na":2,"nb":1,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"]],"b":[["NCBITaxon%3A1494","Clostridium cochlearium"]]},{"id":"NCBITaxon:1497","l":"Andreesenella formicacetica","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A1497","Andreesenella formicacetica"],["NCBITaxon%3A92488","Pantoea endophytica"]]},{"id":"NCBITaxon:1498499","l":"Legionella norrlandica","na":2,"nb":1,"a":[["wood-bto-0005516.html","wood"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"]],"b":[["NCBITaxon%3A1498499","Legionella norrlandica"]]},{"id":"NCBITaxon:150120","l":"Shewanella livingstonensis","na":2,"nb":1,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"]],"b":[["NCBITaxon%3A150120","Shewanella livingstonensis"]]},{"id":"NCBITaxon:1501332","l":"Oribacterium asaccharolyticum","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A1501332","Oribacterium asaccharolyticum"],["NCBITaxon%3A796944","Oribacterium asaccharolyticum ACB7"]]},{"id":"NCBITaxon:150146","l":"Flavobacterium gillisiae","na":2,"nb":1,"a":[["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A150146","Flavobacterium gillisiae"]]},{"id":"NCBITaxon:150172","l":"Flavobacterium tegetincola","na":1,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A150172","Flavobacterium tegetincola"],["NCBITaxon%3A1121901","Flavobacterium tegetincola DSM 22377"]]},{"id":"NCBITaxon:1504","l":"Clostridium septicum","na":2,"nb":1,"a":[["carcass-envo-00002033.html","carcass"],["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["NCBITaxon%3A1504","Clostridium septicum"]]},{"id":"NCBITaxon:1505232","l":"Chitinivibrio alkaliphilus","na":1,"nb":2,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["NCBITaxon%3A1505232","Chitinivibrio alkaliphilus"],["NCBITaxon%3A1313304","Chitinivibrio alkaliphilus ACht1"]]},{"id":"NCBITaxon:1508420","l":"Pseudothermotoga profunda","na":1,"nb":2,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1508420","Pseudothermotoga profunda"],["NCBITaxon%3A1408160","Thermotoga profunda AZM34c06"]]},{"id":"NCBITaxon:1511","l":"Acetoanaerobium sticklandii","na":1,"nb":2,"a":[["animal-house-envo-00003040.html","animal house"]],"b":[["NCBITaxon%3A1511","Acetoanaerobium sticklandii"],["NCBITaxon%3A499177","Acetoanaerobium sticklandii DSM 519"]]},{"id":"NCBITaxon:151276","l":"Bacteroides coprosuis","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A151276","Bacteroides coprosuis"],["NCBITaxon%3A679937","Bacteroides coprosuis DSM 18011"]]},{"id":"NCBITaxon:1513898","l":"Tetragenococcus halophilus subsp. flandriensis","na":1,"nb":2,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A51669","Tetragenococcus halophilus"],["NCBITaxon%3A1513898","Tetragenococcus halophilus subsp. flandriensis"]]},{"id":"NCBITaxon:151783","l":"Cupriavidus campinensis","na":1,"nb":2,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A151783","Cupriavidus campinensis"],["NCBITaxon%3A1706855","Deinococcus malanensis"]]},{"id":"NCBITaxon:152268","l":"Metabacillus litoralis","na":2,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A152268","Metabacillus litoralis"]]},{"id":"NCBITaxon:152297","l":"Pseudoalteromonas issachenkonii","na":1,"nb":2,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A152297","Pseudoalteromonas issachenkonii"],["NCBITaxon%3A1315274","Pseudoalteromonas issachenkonii KMM 3549"]]},{"id":"NCBITaxon:153501","l":"uncultured Methylocystis sp.","na":2,"nb":1,"a":[["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["cultivated-environment-envo-01000311.html","cultivated environment"]],"b":[["NCBITaxon%3A153501","uncultured Methylocystis sp."]]},{"id":"NCBITaxon:1536","l":"Hathewaya limosa","na":1,"nb":2,"a":[["cropland-biome-envo-01000245.html","cropland biome"]],"b":[["NCBITaxon%3A1506","Clostridium sp."],["NCBITaxon%3A1536","Hathewaya limosa"]]},{"id":"NCBITaxon:1538","l":"Clostridium ljungdahlii","na":1,"nb":2,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A1538","Clostridium ljungdahlii"],["NCBITaxon%3A748727","Clostridium ljungdahlii DSM 13528"]]},{"id":"NCBITaxon:154117","l":"Georgenia muralis","na":2,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"],["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A154117","Georgenia muralis"]]},{"id":"NCBITaxon:154288","l":"Turicibacter sanguinis","na":1,"nb":2,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A154288","Turicibacter sanguinis"],["NCBITaxon%3A702450","Turicibacter sanguinis PC909"]]},{"id":"NCBITaxon:1543","l":"Clostridium oceanicum","na":2,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"]],"b":[["NCBITaxon%3A1543","Clostridium oceanicum"]]},{"id":"NCBITaxon:1549639","l":"Rufibacter quisquiliarum","na":2,"nb":1,"a":[["leachate-envo-00002141.html","leachate"],["landfill-envo-00000533.html","landfill"]],"b":[["NCBITaxon%3A1549639","Rufibacter quisquiliarum"]]},{"id":"NCBITaxon:155077","l":"Cellvibrio japonicus","na":1,"nb":2,"a":[["compost-envo-00002170.html","compost"]],"b":[["NCBITaxon%3A155077","Cellvibrio japonicus"],["NCBITaxon%3A498211","Cellvibrio japonicus Ueda107"]]},{"id":"NCBITaxon:1552750","l":"Zoogloea oleivorans","na":2,"nb":1,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A1552750","Zoogloea oleivorans"]]},{"id":"NCBITaxon:155866","l":"Weissella soli","na":2,"nb":1,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A155866","Weissella soli"]]},{"id":"NCBITaxon:1560005","l":"Edaphobacter dinghuensis","na":2,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A1560005","Edaphobacter dinghuensis"]]},{"id":"NCBITaxon:1561","l":"Clostridium baratii","na":1,"nb":2,"a":[["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["NCBITaxon%3A1561","Clostridium baratii"],["NCBITaxon%3A1415775","Clostridium baratii str. Sullivan"]]},{"id":"NCBITaxon:156202","l":"Petrotoga sibirica","na":1,"nb":2,"a":[["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A156202","Petrotoga sibirica"],["NCBITaxon%3A1122956","Petrotoga sibirica DSM 13575"]]},{"id":"NCBITaxon:156203","l":"Petrotoga olearia","na":1,"nb":2,"a":[["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A156203","Petrotoga olearia"],["NCBITaxon%3A1122955","Petrotoga olearia DSM 13574"]]},{"id":"NCBITaxon:1566","l":"Desulfofundulus australicus","na":1,"nb":2,"a":[["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1566","Desulfofundulus australicus"],["NCBITaxon%3A1121425","Desulfofundulus australicus DSM 11792"]]},{"id":"NCBITaxon:156979","l":"Pseudoglutamicibacter cumminsii","na":1,"nb":2,"a":[["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A156979","Pseudoglutamicibacter cumminsii"],["NCBITaxon%3A1255707","Pseudoglutamicibacter cumminsii ws2216"]]},{"id":"NCBITaxon:156980","l":"Arthrobacter woluwensis","na":1,"nb":2,"a":[["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["NCBITaxon%3A156980","Arthrobacter woluwensis"],["NCBITaxon%3A1216974","Arthrobacter woluwensis NBRC 107840"]]},{"id":"NCBITaxon:157465","l":"Nocardiopsis composta","na":2,"nb":1,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A157465","Nocardiopsis composta"]]},{"id":"NCBITaxon:157732","l":"Rhodococcus sp. NCIMB 9784","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A157732","Rhodococcus sp. NCIMB 9784"]]},{"id":"NCBITaxon:1578720","l":"Helicobacter ailurogastricus","na":2,"nb":1,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["mycosis-habitatmech-bacdive-6d5784a4c5.html","Mycosis"]],"b":[["NCBITaxon%3A1578720","Helicobacter ailurogastricus"]]},{"id":"NCBITaxon:158627","l":"Pseudomonas graminis","na":2,"nb":1,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"],["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"]],"b":[["NCBITaxon%3A158627","Pseudomonas graminis"]]},{"id":"NCBITaxon:159254","l":"","na":2,"nb":1,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A159254","Parachlamydia acanthamoebae str. Hall's coccus"]]},{"id":"NCBITaxon:1592728","l":"Haloarcula sp. CBA1115","na":1,"nb":2,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A44098","Haloarcula sp."],["NCBITaxon%3A1592728","Haloarcula sp. CBA1115"]]},{"id":"NCBITaxon:159346","l":"Roseicyclus elongatus","na":1,"nb":2,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A159346","Roseicyclus elongatus"],["NCBITaxon%3A1294273","Roseicyclus elongatus DSM 19469"]]},{"id":"NCBITaxon:1594731","l":"Candidatus Westeberhardia cardiocondylae","na":2,"nb":1,"a":[["nurse-cell-bto-0000953.html","nurse cell"],["oocyte-bto-0000964.html","oocyte"]],"b":[["NCBITaxon%3A1594731","Candidatus Westeberhardia cardiocondylae"]]},{"id":"NCBITaxon:159728","l":"Desulfovibrio cuneatus","na":1,"nb":2,"a":[["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["NCBITaxon%3A159728","Desulfovibrio cuneatus"],["NCBITaxon%3A1121443","Desulfovibrio cuneatus DSM 11391"]]},{"id":"NCBITaxon:160488","l":"Pseudomonas putida (strain ATCC 47054 / DSM 6125 / CFBP 8728 / NCIMB 11950 / KT2440)","na":1,"nb":2,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A303","Pseudomonas putida"],["NCBITaxon%3A160488","Pseudomonas putida KT2440"]]},{"id":"NCBITaxon:1607837","l":"Leuconostoc gelidum subsp. aenigmaticum","na":1,"nb":2,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["NCBITaxon%3A1244","Leuconostoc gelidum"],["NCBITaxon%3A1607837","Leuconostoc gelidum subsp. aenigmaticum"]]},{"id":"NCBITaxon:161360","l":"Planococcus antarcticus","na":1,"nb":2,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A161360","Planococcus antarcticus"],["NCBITaxon%3A1185653","Planococcus antarcticus DSM 14505"]]},{"id":"NCBITaxon:1615","l":"Weissella halotolerans","na":1,"nb":2,"a":[["research-facility-envo-00000469.html","research facility"]],"b":[["NCBITaxon%3A1615","Weissella halotolerans"],["NCBITaxon%3A1123500","Weissella halotolerans DSM 20190"]]},{"id":"NCBITaxon:161895","l":"Corynebacterium phocae","na":1,"nb":2,"a":[["nasal-cavity-bto-0002096.html","nasal cavity"]],"b":[["NCBITaxon%3A131112","Arcanobacterium phocae"],["NCBITaxon%3A161895","Corynebacterium phocae"]]},{"id":"NCBITaxon:162209","l":"Paenibacillus naphthalenovorans","na":2,"nb":1,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["surface-water-envo-00002042.html","surface water"]],"b":[["NCBITaxon%3A162209","Paenibacillus naphthalenovorans"]]},{"id":"NCBITaxon:163908","l":"Anabaena sp. PCC 7108","na":2,"nb":1,"a":[["beach-envo-00000091.html","beach"],["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["NCBITaxon%3A163908","Anabaena sp. PCC 7108"]]},{"id":"NCBITaxon:164330","l":"Thauera aminoaromatica","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A164330","Thauera aminoaromatica"],["NCBITaxon%3A1234381","Thauera aminoaromatica S2"]]},{"id":"NCBITaxon:164400","l":"Thauera phenylacetica","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A164400","Thauera phenylacetica"],["NCBITaxon%3A1234382","Thauera phenylacetica B4P"]]},{"id":"NCBITaxon:1645614","l":"Psychromicrobium silvestre","na":2,"nb":1,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"],["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A1645614","Psychromicrobium silvestre"]]},{"id":"NCBITaxon:1646377","l":"Rouxiella badensis","na":1,"nb":2,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A1646377","Rouxiella badensis"],["NCBITaxon%3A3041084","Rouxiella badensis subsp. acadiensis"]]},{"id":"NCBITaxon:1646498","l":"Acinetobacter sp. TTH0-4","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A472","Acinetobacter sp."],["NCBITaxon%3A1646498","Acinetobacter sp. TTH0-4"]]},{"id":"NCBITaxon:164756","l":"Mycobacterium sp. MCS","na":2,"nb":1,"a":[["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A164756","Mycobacterium sp. MCS"]]},{"id":"NCBITaxon:1653064","l":"Halanaerobium sp. DL-01","na":2,"nb":1,"a":[["ocean-trench-envo-00000275.html","ocean trench"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A1653064","Halanaerobium sp. DL-01"]]},{"id":"NCBITaxon:166","l":"Treponema sp.","na":2,"nb":1,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A166","Treponema sp."]]},{"id":"NCBITaxon:167879","l":"Colwellia psychrerythraea 34H","na":2,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A167879","Colwellia psychrerythraea 34H"]]},{"id":"NCBITaxon:168384","l":"Marvinbryantia formatexigens","na":1,"nb":2,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A168384","Marvinbryantia formatexigens"],["NCBITaxon%3A478749","Marvinbryantia formatexigens DSM 14469"]]},{"id":"NCBITaxon:168685","l":"Rhizobium sp. AC100","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A168685","Rhizobium sp. AC100"]]},{"id":"NCBITaxon:1691979","l":"Chitinophagaceae bacterium PMP191F","na":1,"nb":2,"a":[["peritoneum-bto-0001472.html","peritoneum"]],"b":[["NCBITaxon%3A1691979","Chitinophagaceae bacterium PMP191F"],["NCBITaxon%3A2100819","Pseudoflavitalea muciniphila"]]},{"id":"NCBITaxon:169292","l":"Corynebacterium aurimucosum","na":1,"nb":2,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A169292","Corynebacterium aurimucosum"],["NCBITaxon%3A548476","Corynebacterium aurimucosum ATCC 700975"]]},{"id":"NCBITaxon:1697787","l":"Clostridia bacterium UC5.1-1D10","na":2,"nb":1,"a":[["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697787","Clostridia bacterium UC5.1-1D10"]]},{"id":"NCBITaxon:1697788","l":"Clostridia bacterium UC5.1-2H6","na":2,"nb":1,"a":[["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697788","Clostridia bacterium UC5.1-2H6"]]},{"id":"NCBITaxon:1697789","l":"Clostridia bacterium UC5.1-1E3","na":2,"nb":1,"a":[["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697789","Clostridia bacterium UC5.1-1E3"]]},{"id":"NCBITaxon:1697790","l":"Clostridia bacterium UC5.1-1C12","na":2,"nb":1,"a":[["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697790","Clostridia bacterium UC5.1-1C12"]]},{"id":"NCBITaxon:1697791","l":"Clostridia bacterium UC5.1-2G4","na":2,"nb":1,"a":[["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697791","Clostridia bacterium UC5.1-2G4"]]},{"id":"NCBITaxon:1697792","l":"Clostridia bacterium UC5.1-2F7","na":2,"nb":1,"a":[["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697792","Clostridia bacterium UC5.1-2F7"]]},{"id":"NCBITaxon:1697793","l":"Clostridia bacterium UC5.1-1E11","na":2,"nb":1,"a":[["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697793","Clostridia bacterium UC5.1-1E11"]]},{"id":"NCBITaxon:1697794","l":"Clostridia bacterium UC5.1-1D1","na":2,"nb":1,"a":[["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697794","Clostridia bacterium UC5.1-1D1"]]},{"id":"NCBITaxon:1697795","l":"Clostridia bacterium UC5.1-2H11","na":2,"nb":1,"a":[["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697795","Clostridia bacterium UC5.1-2H11"]]},{"id":"NCBITaxon:1697796","l":"Bacteroidia bacterium UC5.1-2G11","na":2,"nb":1,"a":[["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697796","Bacteroidia bacterium UC5.1-2G11"]]},{"id":"NCBITaxon:170673","l":"Vibrio kanaloae","na":1,"nb":2,"a":[["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["NCBITaxon%3A170673","Vibrio kanaloae"],["NCBITaxon%3A1191299","Vibrio kanaloae 5S-149"]]},{"id":"NCBITaxon:170994","l":"Brevibacterium paucivorans","na":1,"nb":2,"a":[["catheter-device-ncit-c50344.html","Catheter Device"]],"b":[["NCBITaxon%3A53363","Brevibacterium mcbrellneri"],["NCBITaxon%3A170994","Brevibacterium paucivorans"]]},{"id":"NCBITaxon:1712031","l":"Streptobacillus notomytis","na":1,"nb":2,"a":[["heart-bto-0000562.html","heart"]],"b":[["NCBITaxon%3A34105","Streptobacillus moniliformis"],["NCBITaxon%3A1712031","Streptobacillus notomytis"]]},{"id":"NCBITaxon:1712665","l":"Agathobacter ruminis","na":2,"nb":1,"a":[["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"],["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A1712665","Agathobacter ruminis"]]},{"id":"NCBITaxon:171401","l":"Paenibacillus agarexedens","na":2,"nb":1,"a":[["forested-area-envo-00000111.html","forested area"],["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A171401","Paenibacillus agarexedens"]]},{"id":"NCBITaxon:172044","l":"Sphingomonas yabuuchiae","na":1,"nb":2,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A172044","Sphingomonas yabuuchiae"],["NCBITaxon%3A1508805","Sphingorhabdus buctiana"]]},{"id":"NCBITaxon:173363","l":"Brachybacterium fresconis","na":1,"nb":2,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A173363","Brachybacterium fresconis"],["NCBITaxon%3A2675430","Ottowia flava"]]},{"id":"NCBITaxon:173861","l":"Streptomyces stramineus","na":1,"nb":2,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A68182","Streptomyces capillispiralis"],["NCBITaxon%3A173861","Streptomyces stramineus"]]},{"id":"NCBITaxon:174587","l":"Carnobacterium viridans","na":2,"nb":1,"a":[["food-product-foodon-00001002.html","food product"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["NCBITaxon%3A174587","Carnobacterium viridans"]]},{"id":"NCBITaxon:177437","l":"Desulforapulum autotrophicum HRM2","na":1,"nb":2,"a":[["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["NCBITaxon%3A2296","Desulforapulum autotrophicum"],["NCBITaxon%3A177437","Desulforapulum autotrophicum HRM2"]]},{"id":"NCBITaxon:1774373","l":"Alteromonas mediterranea DE","na":1,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["NCBITaxon%3A314275","Alteromonas mediterranea"],["NCBITaxon%3A1774373","Alteromonas mediterranea DE"]]},{"id":"NCBITaxon:178306","l":"Pyrobaculum aerophilum (strain ATCC 51768 / DSM 7523 / JCM 9630 / CIP 104966 / NBRC 100827 / IM2)","na":1,"nb":2,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A13773","Pyrobaculum aerophilum"],["NCBITaxon%3A178306","Pyrobaculum aerophilum str. IM2"]]},{"id":"NCBITaxon:1798184","l":"Sarcina sp. DSM 11001","na":1,"nb":2,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A1798184","Sarcina sp. DSM 11001"]]},{"id":"NCBITaxon:1798213","l":"Pseudovibrio sp. Tun.PSC04-5.I4","na":2,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A1798213","Pseudovibrio sp. Tun.PSC04-5.I4"]]},{"id":"NCBITaxon:179878","l":"Sphingomonas elodea","na":1,"nb":2,"a":[["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A179878","Sphingomonas elodea"],["NCBITaxon%3A1081640","Sphingomonas elodea ATCC 31461"]]},{"id":"NCBITaxon:1799529","l":"Leptospira sp. ZV016","na":2,"nb":1,"a":[["kidney-bto-0000671.html","kidney"],["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1799529","Leptospira sp. ZV016"]]},{"id":"NCBITaxon:180441","l":"Flavobacterium limicola","na":1,"nb":2,"a":[["watercourse-envo-00000029.html","watercourse"]],"b":[["NCBITaxon%3A180441","Flavobacterium limicola"],["NCBITaxon%3A182264","Sporotomaculum syntrophicum"]]},{"id":"NCBITaxon:181487","l":"Schaalia cardiffensis","na":1,"nb":2,"a":[["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"]],"b":[["NCBITaxon%3A181487","Schaalia cardiffensis"],["NCBITaxon%3A888050","Schaalia cardiffensis F0333"]]},{"id":"NCBITaxon:1848","l":"Pseudonocardia thermophila","na":1,"nb":2,"a":[["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["NCBITaxon%3A1848","Pseudonocardia thermophila"],["NCBITaxon%3A1123026","Pseudonocardia thermophila DSM 43832"]]},{"id":"NCBITaxon:185007","l":"Pseudobutyrivibrio xylanivorans","na":1,"nb":2,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"]],"b":[["NCBITaxon%3A185007","Pseudobutyrivibrio xylanivorans"],["NCBITaxon%3A1123012","Pseudobutyrivibrio xylanivorans DSM 14809"]]},{"id":"NCBITaxon:1851395","l":"Actinomyces sp. Chiba101","na":2,"nb":1,"a":[["dental-plaque-bto-0000338.html","dental plaque"],["submandibular-lymph-node-bto-0000769.html","submandibular lymph node"]],"b":[["NCBITaxon%3A1851395","Actinomyces sp. Chiba101"]]},{"id":"NCBITaxon:1855377","l":"Candidatus Aquiluna sp. UB-MaderosW2red","na":1,"nb":2,"a":[["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A2053504","Aquiluna sp."],["NCBITaxon%3A1855377","Candidatus Aquiluna sp. UB-MaderosW2red"]]},{"id":"NCBITaxon:185761","l":"Corynebacterium spheniscorum","na":2,"nb":1,"a":[["alimentary-canal-bto-0000058.html","alimentary canal"],["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A185761","Corynebacterium spheniscorum"]]},{"id":"NCBITaxon:185949","l":"Sphingomonas aurantiaca","na":2,"nb":1,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A185949","Sphingomonas aurantiaca"]]},{"id":"NCBITaxon:186497","l":"Pyrococcus furiosus (strain ATCC 43587 / DSM 3638 / JCM 8422 / Vc1)","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A2261","Pyrococcus furiosus"],["NCBITaxon%3A186497","Pyrococcus furiosus DSM 3638"]]},{"id":"NCBITaxon:1867252","l":"Borrelia hermsii HS1","na":1,"nb":2,"a":[["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A140","Borrelia hermsii"],["NCBITaxon%3A1867252","Borrelia hermsii HS1"]]},{"id":"NCBITaxon:186741","l":"uncultured Geobacter sp.","na":2,"nb":1,"a":[["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["cultivated-environment-envo-01000311.html","cultivated environment"]],"b":[["NCBITaxon%3A186741","uncultured Geobacter sp."]]},{"id":"NCBITaxon:1868325","l":"Prosthecochloris sp. CIB 2401","na":1,"nb":2,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A1844006","Phaeobacter porticola"],["NCBITaxon%3A1868325","Prosthecochloris sp. CIB 2401"]]},{"id":"NCBITaxon:1868734","l":"Aeribacillus composti","na":2,"nb":1,"a":[["compost-envo-00002170.html","compost"],["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A1868734","Aeribacillus composti"]]},{"id":"NCBITaxon:1871044","l":"Clavibacter sp.","na":2,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"]],"b":[["NCBITaxon%3A1871044","Clavibacter sp."]]},{"id":"NCBITaxon:1871616","l":"Dietzia sp.","na":2,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"]],"b":[["NCBITaxon%3A1871616","Dietzia sp."]]},{"id":"NCBITaxon:1872086","l":"Ensifer sp.","na":2,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["NCBITaxon%3A1872086","Ensifer sp."]]},{"id":"NCBITaxon:1872654","l":"Aurantimonas sp.","na":1,"nb":2,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1872654","Aurantimonas sp."],["NCBITaxon%3A570951","Aurantimonas sp. YIM J01"]]},{"id":"NCBITaxon:1873466","l":"Modestobacter sp.","na":2,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["NCBITaxon%3A1873466","Modestobacter sp."]]},{"id":"NCBITaxon:1873897","l":"Cupriavidus sp.","na":2,"nb":1,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A1873897","Cupriavidus sp."]]},{"id":"NCBITaxon:187452","l":"Pediococcus claussenii","na":1,"nb":2,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["NCBITaxon%3A187452","Pediococcus claussenii"],["NCBITaxon%3A701521","Pediococcus claussenii ATCC BAA-344"]]},{"id":"NCBITaxon:1898027","l":"Ornithinibacillus sp.","na":2,"nb":1,"a":[["saline-water-body-envo-01001319.html","saline water body"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["NCBITaxon%3A1898027","Ornithinibacillus sp."]]},{"id":"NCBITaxon:189918","l":"Mycobacterium sp. KMS","na":2,"nb":1,"a":[["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"],["mountain-pass-envo-00000084.html","mountain pass"]],"b":[["NCBITaxon%3A189918","Mycobacterium sp. KMS"]]},{"id":"NCBITaxon:1904","l":"Streptomyces cyaneus","na":1,"nb":2,"a":[["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A146537","Streptomyces azureus"],["NCBITaxon%3A1904","Streptomyces cyaneus"]]},{"id":"NCBITaxon:1904441","l":"Paracoccaceae bacterium","na":1,"nb":2,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2301217","Marinibacterium anthonyi"],["NCBITaxon%3A1904441","Paracoccaceae bacterium"]]},{"id":"NCBITaxon:191535","l":"Flavobacterium sp. BH12.12","na":2,"nb":1,"a":[["marine-benthic-feature-envo-01000105.html","marine benthic feature"],["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A191535","Flavobacterium sp. BH12.12"]]},{"id":"NCBITaxon:192066","l":"Neisseria sp.","na":2,"nb":1,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A192066","Neisseria sp."]]},{"id":"NCBITaxon:1926495","l":"Paraburkholderia sp.","na":2,"nb":1,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"],["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A1926495","Paraburkholderia sp."]]},{"id":"NCBITaxon:1932","l":"Streptomyces tendae","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A1932","Streptomyces tendae"]]},{"id":"NCBITaxon:1935001","l":"Pseudomonas sp. JdFR-92","na":2,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["basalt-envo-01000236.html","basalt"]],"b":[["NCBITaxon%3A1935001","Pseudomonas sp. JdFR-92"]]},{"id":"NCBITaxon:1937692","l":"Lacinutrix sp.","na":2,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A1937692","Lacinutrix sp."]]},{"id":"NCBITaxon:1938889","l":"Agreia sp. VKM Ac-1783","na":2,"nb":1,"a":[["plant-gall-po-0025626.html","plant gall"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["NCBITaxon%3A1938889","Agreia sp. VKM Ac-1783"]]},{"id":"NCBITaxon:194373","l":"uncultured Hyphomicrobium sp.","na":2,"nb":1,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["NCBITaxon%3A194373","uncultured Hyphomicrobium sp."]]},{"id":"NCBITaxon:195105","l":"Haematobacter massiliensis","na":2,"nb":1,"a":[["protist-associated-environment-habitatmech-gold-eee7408afd.html","protist-associated environment"],["simulated-communities-habitatmech-bacdive-5fa4710934.html","Simulated-communities"]],"b":[["NCBITaxon%3A195105","Haematobacter massiliensis"]]},{"id":"NCBITaxon:195522","l":"Thermococcus nautili","na":2,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["finger-bto-0004669.html","finger"]],"b":[["NCBITaxon%3A195522","Thermococcus nautili"]]},{"id":"NCBITaxon:1958950","l":"Pseudomonas floridensis","na":2,"nb":1,"a":[["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"]],"b":[["NCBITaxon%3A1958950","Pseudomonas floridensis"]]},{"id":"NCBITaxon:195907","l":"Gillisia limnaea","na":1,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A195907","Gillisia limnaea"],["NCBITaxon%3A865937","Gillisia limnaea DSM 15749"]]},{"id":"NCBITaxon:1962667","l":"Nannocystis sp.","na":2,"nb":1,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["wood-bto-0005516.html","wood"]],"b":[["NCBITaxon%3A1962667","Nannocystis sp."]]},{"id":"NCBITaxon:1965234","l":"Ureaplasma sp.","na":2,"nb":1,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A1965234","Ureaplasma sp."]]},{"id":"NCBITaxon:198437","l":"uncultured Gordonia sp.","na":2,"nb":1,"a":[["foam-habitatmech-bacdive-df2f59b773.html","Foam"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["NCBITaxon%3A198437","uncultured Gordonia sp."]]},{"id":"NCBITaxon:199591","l":"Brevibacterium luteolum","na":1,"nb":2,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["NCBITaxon%3A199591","Brevibacterium luteolum"],["NCBITaxon%3A1401069","Brevibacterium luteolum DNF00447"]]},{"id":"NCBITaxon:200125","l":"Nitrosomonas sp. Nm86","na":2,"nb":1,"a":[["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["cultivated-environment-envo-01000311.html","cultivated environment"]],"b":[["NCBITaxon%3A200125","Nitrosomonas sp. Nm86"]]},{"id":"NCBITaxon:200617","l":"Rhodopseudomonas julia","na":2,"nb":1,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"]],"b":[["NCBITaxon%3A200617","Rhodopseudomonas julia"]]},{"id":"NCBITaxon:2014887","l":"Herbaspirillum robiniae","na":2,"nb":1,"a":[["seedling-bto-0001228.html","seedling"],["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A2014887","Herbaspirillum robiniae"]]},{"id":"NCBITaxon:2024","l":"Thermoactinomyces intermedius","na":1,"nb":2,"a":[["air-conditioning-unit-envo-00002874.html","air conditioning unit"]],"b":[["NCBITaxon%3A46173","Nonomuraea fastidiosa"],["NCBITaxon%3A2024","Thermoactinomyces intermedius"]]},{"id":"NCBITaxon:2024826","l":"Blastopirellula sp.","na":2,"nb":1,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["NCBITaxon%3A2024826","Blastopirellula sp."]]},{"id":"NCBITaxon:2024855","l":"Rhodopirellula sp.","na":1,"nb":2,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A1263866","Rhodopirellula europaea"],["NCBITaxon%3A2024855","Rhodopirellula sp."]]},{"id":"NCBITaxon:203","l":"Campylobacter rectus","na":1,"nb":2,"a":[["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A203","Campylobacter rectus"],["NCBITaxon%3A553218","Campylobacter rectus RM3267"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus ATCC 27405","na":1,"nb":2,"a":[["blood-plasma-bto-0000131.html","blood plasma"]],"b":[["NCBITaxon%3A1515","Acetivibrio thermocellus"],["NCBITaxon%3A203119","Acetivibrio thermocellus ATCC 27405"]]},{"id":"NCBITaxon:203264","l":"Corynebacterium suicordis","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A203264","Corynebacterium suicordis"],["NCBITaxon%3A1121369","Corynebacterium suicordis DSM 45110"]]},{"id":"NCBITaxon:2036","l":"Curtobacterium citreum","na":1,"nb":2,"a":[["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["NCBITaxon%3A2036","Curtobacterium citreum"],["NCBITaxon%3A221278","Curtobacterium citreum pv. basellae"]]},{"id":"NCBITaxon:203907","l":"Candidatus Blochmanniella floridana","na":2,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"],["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A203907","Candidatus Blochmanniella floridana"]]},{"id":"NCBITaxon:2040280","l":"Marmoricola endophyticus","na":2,"nb":1,"a":[["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A2040280","Marmoricola endophyticus"]]},{"id":"NCBITaxon:2042057","l":"Pectobacterium polaris","na":2,"nb":1,"a":[["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["root-or-stem-rot-environment-habitatmech-bacdive-04ddbbeabe.html","root-or-stem rot environment"]],"b":[["NCBITaxon%3A2042057","Pectobacterium polaris"]]},{"id":"NCBITaxon:2044847","l":"Streptomyces roietensis","na":2,"nb":1,"a":[["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A2044847","Streptomyces roietensis"]]},{"id":"NCBITaxon:2045","l":"Nocardioides simplex","na":2,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A2045","Pimelobacter simplex"]]},{"id":"NCBITaxon:204536","l":"Sulfurihydrogenibium azorense Az-Fu1","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A309806","Sulfurihydrogenibium azorense"],["NCBITaxon%3A204536","Sulfurihydrogenibium azorense Az-Fu1"]]},{"id":"NCBITaxon:204669","l":"Candidatus Koribacter versatilis Ellin345","na":2,"nb":1,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"],["pasture-envo-00000266.html","pasture"]],"b":[["NCBITaxon%3A204669","Candidatus Koribacter versatilis Ellin345"]]},{"id":"NCBITaxon:205844","l":"Novosphingobium pentaromativorans","na":1,"nb":2,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A205844","Novosphingobium pentaromativorans"],["NCBITaxon%3A1088721","Novosphingobium pentaromativorans US6-1"]]},{"id":"NCBITaxon:207559","l":"Oleidesulfovibrio alaskensis (strain ATCC BAA-1058 / DSM 17464 / G20)","na":1,"nb":2,"a":[["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A58180","Oleidesulfovibrio alaskensis"],["NCBITaxon%3A207559","Oleidesulfovibrio alaskensis G20"]]},{"id":"NCBITaxon:2081794","l":"Mannheimia sp.","na":2,"nb":1,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"]],"b":[["NCBITaxon%3A2081794","Mannheimia sp."]]},{"id":"NCBITaxon:208304","l":"Thermoanaerobacterium bryantii","na":2,"nb":1,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["NCBITaxon%3A208304","Thermoanaerobacterium bryantii"]]},{"id":"NCBITaxon:211460","l":"Afipia massiliensis","na":1,"nb":2,"a":[["drinking-water-envo-00003064.html","drinking water"]],"b":[["NCBITaxon%3A211460","Afipia massiliensis"],["NCBITaxon%3A1211024","Afipia massiliensis 34633"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A70863","Shewanella oneidensis"],["NCBITaxon%3A211586","Shewanella oneidensis MR-1"]]},{"id":"NCBITaxon:211669","l":"Psychromonas hadalis","na":1,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A211669","Psychromonas hadalis"],["NCBITaxon%3A1278302","Psychromonas hadalis ATCC BAA-638"]]},{"id":"NCBITaxon:212050","l":"Fervidobacterium sp. YNP","na":2,"nb":1,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A212050","Fervidobacterium sp. YNP"]]},{"id":"NCBITaxon:212218","l":"uncultured Neochlamydia sp.","na":2,"nb":1,"a":[["endosymbiont-habitatmech-bacdive-7d840c7ddc.html","Endosymbiont"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A212218","uncultured Neochlamydia sp."]]},{"id":"NCBITaxon:213071","l":"Nocardioides sp. SP12","na":2,"nb":1,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A213071","Nocardioides sp. SP12"]]},{"id":"NCBITaxon:213224","l":"Geothermobacter ehrlichii","na":2,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A213224","Geothermobacter ehrlichii"]]},{"id":"NCBITaxon:214092","l":"Yersinia pestis CO92","na":2,"nb":1,"a":[["alimentary-canal-bto-0000058.html","alimentary canal"],["blood-plasma-bto-0000131.html","blood plasma"]],"b":[["NCBITaxon%3A214092","Yersinia pestis CO92"]]},{"id":"NCBITaxon:214473","l":"Staphylococcus nepalensis","na":1,"nb":2,"a":[["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["NCBITaxon%3A214473","Staphylococcus nepalensis"],["NCBITaxon%3A1288","Staphylococcus xylosus"]]},{"id":"NCBITaxon:2148","l":"Acholeplasma laidlawii","na":1,"nb":2,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A2148","Acholeplasma laidlawii"],["NCBITaxon%3A441768","Acholeplasma laidlawii PG-8A"]]},{"id":"NCBITaxon:216591","l":"Burkholderia cenocepacia J2315","na":1,"nb":2,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A95486","Burkholderia cenocepacia"],["NCBITaxon%3A216591","Burkholderia cenocepacia J2315"]]},{"id":"NCBITaxon:216773","l":"Corethron hystrix","na":2,"nb":1,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"],["saline-water-envo-00002010.html","saline water"]],"b":[["NCBITaxon%3A216773","Corethron hystrix"]]},{"id":"NCBITaxon:216937","l":"Spiroplasma floricola","na":1,"nb":2,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["NCBITaxon%3A216937","Spiroplasma floricola"],["NCBITaxon%3A1336749","Spiroplasma floricola 23-6"]]},{"id":"NCBITaxon:217","l":"Helicobacter mustelae","na":1,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A217","Helicobacter mustelae"],["NCBITaxon%3A679897","Helicobacter mustelae 12198"]]},{"id":"NCBITaxon:217068","l":"Ancylobacter tetraedralis","na":1,"nb":2,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A217069","Ancylobacter amanitiformis"],["NCBITaxon%3A217068","Ancylobacter tetraedralis"]]},{"id":"NCBITaxon:217204","l":"Achromobacter insolitus","na":1,"nb":2,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"]],"b":[["NCBITaxon%3A32002","Achromobacter denitrificans"],["NCBITaxon%3A217204","Achromobacter insolitus"]]},{"id":"NCBITaxon:218208","l":"Desulfatibacillum aliphaticivorans","na":1,"nb":2,"a":[["watercourse-envo-00000029.html","watercourse"]],"b":[["NCBITaxon%3A218208","Desulfatibacillum aliphaticivorans"],["NCBITaxon%3A1121392","Desulfatibacillum aliphaticivorans DSM 15576"]]},{"id":"NCBITaxon:2182385","l":"Brachybacterium endophyticum","na":2,"nb":1,"a":[["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A2182385","Brachybacterium endophyticum"]]},{"id":"NCBITaxon:2183913","l":"Halanaerobium sp. MA284_MarDTE_T2","na":2,"nb":1,"a":[["ocean-trench-envo-00000275.html","ocean trench"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A2183913","Halanaerobium sp. MA284_MarDTE_T2"]]},{"id":"NCBITaxon:2183914","l":"Halanaerobium sp. ST460_2HS_T2","na":2,"nb":1,"a":[["ocean-trench-envo-00000275.html","ocean trench"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A2183914","Halanaerobium sp. ST460_2HS_T2"]]},{"id":"NCBITaxon:2183985","l":"Halomonas sp. A11-A","na":2,"nb":1,"a":[["ocean-trench-envo-00000275.html","ocean trench"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A2183985","Halomonas sp. A11-A"]]},{"id":"NCBITaxon:2203","l":"Methanospirillum hungatei","na":1,"nb":2,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"]],"b":[["NCBITaxon%3A2203","Methanospirillum hungatei"],["NCBITaxon%3A323259","Methanospirillum hungatei JF-1"]]},{"id":"NCBITaxon:2223","l":"Methanothrix soehngenii","na":1,"nb":2,"a":[["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["NCBITaxon%3A2223","Methanothrix soehngenii"],["NCBITaxon%3A990316","Methanothrix soehngenii GP6"]]},{"id":"NCBITaxon:224438","l":"Marichromatium indicum","na":2,"nb":1,"a":[["small-river-biome-envo-00000890.html","small river biome"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["NCBITaxon%3A224438","Marichromatium indicum"]]},{"id":"NCBITaxon:225324","l":"Enhydrobacter aerosaccus","na":1,"nb":2,"a":[["nectar-bto-0000537.html","nectar"]],"b":[["NCBITaxon%3A225324","Enhydrobacter aerosaccus"],["NCBITaxon%3A553217","Enhydrobacter aerosaccus SK60"]]},{"id":"NCBITaxon:225345","l":"Clostridium chromiireducens","na":2,"nb":1,"a":[["marsh-envo-00000035.html","marsh"],["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A225345","Clostridium chromiireducens"]]},{"id":"NCBITaxon:225849","l":"Shewanella piezotolerans WP3","na":1,"nb":2,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["NCBITaxon%3A404011","Shewanella piezotolerans"],["NCBITaxon%3A225849","Shewanella piezotolerans WP3"]]},{"id":"NCBITaxon:225937","l":"Marinobacter adhaerens HP15","na":1,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["NCBITaxon%3A1033846","Marinobacter adhaerens"],["NCBITaxon%3A225937","Marinobacter adhaerens HP15"]]},{"id":"NCBITaxon:226185","l":"Enterococcus faecalis (strain ATCC 700802 / V583)","na":1,"nb":2,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A226185","Enterococcus faecalis V583"]]},{"id":"NCBITaxon:226186","l":"Bacteroides thetaiotaomicron (strain ATCC 29148 / DSM 2079 / JCM 5827 / CCUG 10774 / NCTC 10582 / VPI-5482 / E50)","na":1,"nb":2,"a":[["gut-epithelium-bto-0000956.html","gut epithelium"]],"b":[["NCBITaxon%3A818","Bacteroides thetaiotaomicron"],["NCBITaxon%3A226186","Bacteroides thetaiotaomicron VPI-5482"]]},{"id":"NCBITaxon:226504","l":"Algoriphagus mannitolivorans","na":1,"nb":2,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A226504","Algoriphagus mannitolivorans"],["NCBITaxon%3A1120965","Algoriphagus mannitolivorans DSM 15301"]]},{"id":"NCBITaxon:226505","l":"Algoriphagus halophilus","na":2,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"],["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["NCBITaxon%3A226505","Algoriphagus halophilus"]]},{"id":"NCBITaxon:226506","l":"Algoriphagus ornithinivorans","na":2,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"],["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["NCBITaxon%3A226506","Algoriphagus ornithinivorans"]]},{"id":"NCBITaxon:227882","l":"","na":1,"nb":2,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A33903","Streptomyces avermitilis"],["NCBITaxon%3A227882","Streptomyces avermitilis MA-4680 = NBRC 14893"]]},{"id":"NCBITaxon:2292705","l":"Paenibacillus paeoniae","na":2,"nb":1,"a":[["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A2292705","Paenibacillus paeoniae"]]},{"id":"NCBITaxon:23","l":"Shewanella colwelliana","na":1,"nb":2,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A23","Shewanella colwelliana"],["NCBITaxon%3A1336240","Shewanella colwelliana ATCC 39565"]]},{"id":"NCBITaxon:231438","l":"Desulfoluna butyratoxydans","na":1,"nb":2,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A231438","Desulfoluna butyratoxydans"],["NCBITaxon%3A1121410","Desulfoluna butyratoxydans DSM 19427"]]},{"id":"NCBITaxon:231440","l":"Desulfopila aestuarii","na":1,"nb":2,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A231440","Desulfopila aestuarii"],["NCBITaxon%3A1121416","Desulfopila aestuarii DSM 18488"]]},{"id":"NCBITaxon:231447","l":"Desulfogranum japonicum","na":1,"nb":2,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A231447","Desulfogranum japonicum"],["NCBITaxon%3A1121403","Desulfogranum japonicum DSM 18378"]]},{"id":"NCBITaxon:233412","l":"[Haemophilus] ducreyi 35000HP","na":1,"nb":2,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A730","[Haemophilus] ducreyi"],["NCBITaxon%3A233412","[Haemophilus] ducreyi 35000HP"]]},{"id":"NCBITaxon:234831","l":"Pseudoalteromonas sp. SM9913","na":2,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A234831","Pseudoalteromonas sp. SM9913"]]},{"id":"NCBITaxon:235279","l":"Helicobacter hepaticus (strain ATCC 51449 / 3B1)","na":1,"nb":2,"a":[["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"]],"b":[["NCBITaxon%3A32025","Helicobacter hepaticus"],["NCBITaxon%3A235279","Helicobacter hepaticus ATCC 51449"]]},{"id":"NCBITaxon:2358","l":"Desulfomonile tiedjei","na":1,"nb":2,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A2358","Desulfomonile tiedjei"],["NCBITaxon%3A706587","Desulfomonile tiedjei DSM 6799"]]},{"id":"NCBITaxon:235909","l":"Geobacillus kaustophilus HTA426","na":1,"nb":2,"a":[["semen-bto-0001230.html","semen"]],"b":[["NCBITaxon%3A1462","Geobacillus kaustophilus"],["NCBITaxon%3A235909","Geobacillus kaustophilus HTA426"]]},{"id":"NCBITaxon:237497","l":"Clostridium sp. Kas107-2","na":2,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"]],"b":[["NCBITaxon%3A237497","Clostridium sp. Kas107-2"]]},{"id":"NCBITaxon:238013","l":"Loigolactobacillus rennini","na":1,"nb":2,"a":[["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["NCBITaxon%3A238013","Loigolactobacillus rennini"],["NCBITaxon%3A1423796","Loigolactobacillus rennini DSM 20253"]]},{"id":"NCBITaxon:238209","l":"Desulfotomaculum sp. MPNeg1","na":2,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"]],"b":[["NCBITaxon%3A238209","Desulfotomaculum sp. MPNeg1"]]},{"id":"NCBITaxon:238540","l":"Algoriphagus antarcticus","na":2,"nb":1,"a":[["hill-envo-00000083.html","hill"],["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A238540","Algoriphagus antarcticus"]]},{"id":"NCBITaxon:240166","l":"Desulfurobacterium pacificum","na":1,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["NCBITaxon%3A240166","Desulfurobacterium pacificum"],["NCBITaxon%3A1121473","Desulfurobacterium pacificum DSM 15522"]]},{"id":"NCBITaxon:240167","l":"Thermovibrio guaymasensis","na":2,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A240167","Thermovibrio guaymasensis"]]},{"id":"NCBITaxon:240427","l":"Secundilactobacillus paracollinoides","na":1,"nb":2,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["NCBITaxon%3A240427","Secundilactobacillus paracollinoides"],["NCBITaxon%3A1423785","Secundilactobacillus paracollinoides DSM 15502 = JCM 11969"]]},{"id":"NCBITaxon:241368","l":"Desulfovibrio ferrophilus","na":2,"nb":1,"a":[["small-river-biome-envo-00000890.html","small river biome"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["NCBITaxon%3A241368","Desulfovibrio ferrophilus"]]},{"id":"NCBITaxon:242606","l":"Luteibacter rhizovicinus","na":1,"nb":2,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A242606","Luteibacter rhizovicinus"],["NCBITaxon%3A1440763","Luteibacter rhizovicinus DSM 16549"]]},{"id":"NCBITaxon:243160","l":"Burkholderia mallei ATCC 23344","na":1,"nb":2,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A13373","Burkholderia mallei"],["NCBITaxon%3A243160","Burkholderia mallei ATCC 23344"]]},{"id":"NCBITaxon:243273","l":"Mycoplasmoides genitalium (strain ATCC 33530 / DSM 19775 / NCTC 10195 / G37)","na":1,"nb":2,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["NCBITaxon%3A2097","Mycoplasmoides genitalium"],["NCBITaxon%3A243273","Mycoplasmoides genitalium G37"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima (strain ATCC 43589 / DSM 3109 / JCM 10099 / NBRC 100826 / MSB8)","na":1,"nb":2,"a":[["feather-bto-0000447.html","feather"]],"b":[["NCBITaxon%3A2336","Thermotoga maritima"],["NCBITaxon%3A243274","Thermotoga maritima MSB8"]]},{"id":"NCBITaxon:243275","l":"Treponema denticola ATCC 35405","na":1,"nb":2,"a":[["dental-plaque-bto-0000338.html","dental plaque"]],"b":[["NCBITaxon%3A158","Treponema denticola"],["NCBITaxon%3A243275","Treponema denticola ATCC 35405"]]},{"id":"NCBITaxon:243690","l":"Methylobacterium goesingense","na":1,"nb":2,"a":[["endosphere-habitatmech-bacdive-3e4680f074.html","Endosphere"]],"b":[["NCBITaxon%3A243690","Methylobacterium goesingense"],["NCBITaxon%3A409","Methylobacterium sp."]]},{"id":"NCBITaxon:244563","l":"Bradyrhizobium sp. HWK12","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A244563","Bradyrhizobium sp. HWK12"]]},{"id":"NCBITaxon:245","l":"Flavobacterium aquatile","na":1,"nb":2,"a":[["water-body-envo-00000063.html","water body"]],"b":[["NCBITaxon%3A245","Flavobacterium aquatile"],["NCBITaxon%3A1453498","Flavobacterium aquatile LMG 4008 = ATCC 11947"]]},{"id":"NCBITaxon:246200","l":"Ruegeria pomeroyi DSS-3","na":1,"nb":2,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["NCBITaxon%3A89184","Ruegeria pomeroyi"],["NCBITaxon%3A246200","Ruegeria pomeroyi DSS-3"]]},{"id":"NCBITaxon:252231","l":"Nocardioides aestuarii","na":1,"nb":2,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1323750","Lacimonas salitolerans"],["NCBITaxon%3A252231","Nocardioides aestuarii"]]},{"id":"NCBITaxon:253239","l":"Ethanoligenens harbinense","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A253239","Ethanoligenens harbinense"],["NCBITaxon%3A663278","Ethanoligenens harbinense YUAN-3"]]},{"id":"NCBITaxon:253839","l":"Streptomyces sp. C","na":2,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A253839","Streptomyces sp. C"]]},{"id":"NCBITaxon:254410","l":"Alteribacter aurantiacus","na":1,"nb":2,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A254410","Alteribacter aurantiacus"],["NCBITaxon%3A1121086","Alteribacter aurantiacus DSM 18675"]]},{"id":"NCBITaxon:255045","l":"Bradyrhizobium canariense","na":1,"nb":2,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A255045","Bradyrhizobium canariense"],["NCBITaxon%3A305580","Bradyrhizobium canariense bv. genistearum"]]},{"id":"NCBITaxon:255205","l":"Pseudoclavibacter helvolus","na":1,"nb":2,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["NCBITaxon%3A255205","Pseudoclavibacter helvolus"],["NCBITaxon%3A1673741","Thalassotalea marina"]]},{"id":"NCBITaxon:256466","l":"Pseudomonas japonica","na":1,"nb":2,"a":[["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["NCBITaxon%3A256466","Pseudomonas japonica"],["NCBITaxon%3A1215104","Pseudomonas japonica NBRC 103040 = DSM 22348"]]},{"id":"NCBITaxon:257277","l":"Nocardia aobensis","na":1,"nb":2,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A257277","Nocardia aobensis"],["NCBITaxon%3A1206720","Nocardia aobensis NBRC 100429"]]},{"id":"NCBITaxon:257314","l":"","na":2,"nb":1,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["NCBITaxon%3A257314","Lactobacillus johnsonii NCC 533"]]},{"id":"NCBITaxon:257363","l":"Rickettsia typhi str. Wilmington","na":1,"nb":2,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A785","Rickettsia typhi"],["NCBITaxon%3A257363","Rickettsia typhi str. Wilmington"]]},{"id":"NCBITaxon:259390","l":"Nocardia takedensis","na":1,"nb":2,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A259390","Nocardia takedensis"],["NCBITaxon%3A1206735","Nocardia takedensis NBRC 100417"]]},{"id":"NCBITaxon:259536","l":"Psychrobacter arcticus 273-4","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A334543","Psychrobacter arcticus"],["NCBITaxon%3A259536","Psychrobacter arcticus 273-4"]]},{"id":"NCBITaxon:259564","l":"Methanococcoides burtonii DSM 6242","na":1,"nb":2,"a":[["hypolimnion-envo-00002130.html","hypolimnion"]],"b":[["NCBITaxon%3A29291","Methanococcoides burtonii"],["NCBITaxon%3A259564","Methanococcoides burtonii DSM 6242"]]},{"id":"NCBITaxon:260552","l":"Microbulbifer agarilyticus","na":1,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A260552","Microbulbifer agarilyticus"],["NCBITaxon%3A1042377","Microbulbifer agarilyticus S89"]]},{"id":"NCBITaxon:261164","l":"Psychrobacter alimentarius","na":2,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A261164","Psychrobacter alimentarius"]]},{"id":"NCBITaxon:262076","l":"Marinobacter flavimaris","na":2,"nb":1,"a":[["small-river-biome-envo-00000890.html","small river biome"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["NCBITaxon%3A262076","Marinobacter flavimaris"]]},{"id":"NCBITaxon:262316","l":"","na":2,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A262316","Mycobacterium avium subsp. paratuberculosis K-10"]]},{"id":"NCBITaxon:262543","l":"","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A340145","Exiguobacterium artemiae"],["NCBITaxon%3A262543","Exiguobacterium artemiae 255-15"]]},{"id":"NCBITaxon:263358","l":"Verrucosispora maris AB-18-032","na":1,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A1003110","Micromonospora maris"],["NCBITaxon%3A263358","Micromonospora maris AB-18-032"]]},{"id":"NCBITaxon:264023","l":"Mariniflexile fucanivorans","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A264023","Mariniflexile fucanivorans"],["NCBITaxon%3A1122193","Mariniflexile fucanivorans DSM 18792"]]},{"id":"NCBITaxon:265948","l":"Anoxybacteroides tepidamans","na":1,"nb":2,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A1382358","Anoxybacillus tepidamans PS2"],["NCBITaxon%3A265948","Anoxybacteroides tepidamans"]]},{"id":"NCBITaxon:266117","l":"Rubrobacter xylanophilus DSM 9941","na":1,"nb":2,"a":[["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["NCBITaxon%3A49319","Rubrobacter xylanophilus"],["NCBITaxon%3A266117","Rubrobacter xylanophilus DSM 9941"]]},{"id":"NCBITaxon:266123","l":"Castellaniella caeni","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A266123","Castellaniella caeni"],["NCBITaxon%3A1349760","Castellaniella caeni NBRC 101664"]]},{"id":"NCBITaxon:266264","l":"Cupriavidus metallidurans CH34","na":1,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["NCBITaxon%3A119219","Cupriavidus metallidurans"],["NCBITaxon%3A266264","Cupriavidus metallidurans CH34"]]},{"id":"NCBITaxon:2663692","l":"bacterium JGI MDM2 M14Mat9-1-D14","na":2,"nb":1,"a":[["inlet-envo-00000475.html","inlet"],["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A2663692","bacterium JGI MDM2 M14Mat9-1-D14"]]},{"id":"NCBITaxon:266779","l":"Chelativorans sp. BNC1","na":1,"nb":2,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A449973","Chelativorans multitrophicus"],["NCBITaxon%3A266779","Chelativorans sp. BNC1"]]},{"id":"NCBITaxon:266809","l":"Thalassobacter stenotrophicus","na":1,"nb":2,"a":[["cyst-bto-0000320.html","cyst"]],"b":[["NCBITaxon%3A266809","Thalassobacter stenotrophicus"],["NCBITaxon%3A1123361","Thalassobacter stenotrophicus DSM 16310"]]},{"id":"NCBITaxon:267374","l":"Marinobacterium halophilum","na":1,"nb":2,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A267374","Marinobacterium halophilum"],["NCBITaxon%3A1122199","Marinobacterium halophilum DSM 17586"]]},{"id":"NCBITaxon:267375","l":"Pseudoalteromonas marina","na":1,"nb":2,"a":[["bay-envo-00000032.html","bay"]],"b":[["NCBITaxon%3A267375","Pseudoalteromonas marina"],["NCBITaxon%3A1117316","Pseudoalteromonas marina DSM 17587"]]},{"id":"NCBITaxon:267747","l":"Cutibacterium acnes KPA171202","na":1,"nb":2,"a":[["sebaceous-gland-bto-0001980.html","sebaceous gland"]],"b":[["NCBITaxon%3A1747","Cutibacterium acnes"],["NCBITaxon%3A267747","Cutibacterium acnes KPA171202"]]},{"id":"NCBITaxon:268735","l":"Halonotius pteroides","na":1,"nb":2,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["NCBITaxon%3A268735","Halonotius pteroides"],["NCBITaxon%3A1333847","Halonotius pteroides DSM 18729"]]},{"id":"NCBITaxon:269666","l":"Streptococcus marimammalium","na":1,"nb":2,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"]],"b":[["NCBITaxon%3A269666","Streptococcus marimammalium"],["NCBITaxon%3A1123306","Streptococcus marimammalium DSM 18627"]]},{"id":"NCBITaxon:269796","l":"Rhodospirillum rubrum (strain ATCC 11170 / ATH 1.1.1 / DSM 467 / LMG 4362 / NCIMB 8255 / S1)","na":1,"nb":2,"a":[["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A1085","Rhodospirillum rubrum"],["NCBITaxon%3A269796","Rhodospirillum rubrum ATCC 11170"]]},{"id":"NCBITaxon:269800","l":"Thermobifida fusca YX","na":2,"nb":1,"a":[["compost-envo-00002170.html","compost"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A269800","Thermobifida fusca YX"]]},{"id":"NCBITaxon:270371","l":"Ralstonia sp. SJ98","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A270371","Ralstonia sp. SJ98"]]},{"id":"NCBITaxon:271160","l":"Nicoletella semolina","na":2,"nb":1,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"]],"b":[["NCBITaxon%3A271160","Nicoletella semolina"]]},{"id":"NCBITaxon:2716812","l":"Candidatus Protofrankia datiscae","na":2,"nb":1,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A2716812","Candidatus Protofrankia datiscae"]]},{"id":"NCBITaxon:272563","l":"Clostridioides difficile (strain 630)","na":1,"nb":2,"a":[["central-nervous-system-bto-0000227.html","central nervous system"]],"b":[["NCBITaxon%3A1496","Clostridioides difficile"],["NCBITaxon%3A272563","Clostridioides difficile 630"]]},{"id":"NCBITaxon:272627","l":"","na":1,"nb":2,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A188","Paramagnetospirillum magnetotacticum"],["NCBITaxon%3A272627","Paramagnetospirillum magnetotacticum MS-1"]]},{"id":"NCBITaxon:272630","l":"Methylorubrum extorquens (strain ATCC 14718 / DSM 1338 / JCM 2805 / NCIMB 9133 / AM1)","na":1,"nb":2,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A408","Methylorubrum extorquens"],["NCBITaxon%3A272630","Methylorubrum extorquens AM1"]]},{"id":"NCBITaxon:272631","l":"Mycobacterium leprae (strain TN)","na":2,"nb":1,"a":[["peripheral-blood-mononuclear-cell-bto-0001025.html","peripheral blood mononuclear cell"],["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["NCBITaxon%3A272631","Mycobacterium leprae TN"]]},{"id":"NCBITaxon:272831","l":"Neisseria meningitidis FAM18","na":1,"nb":2,"a":[["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["NCBITaxon%3A487","Neisseria meningitidis"],["NCBITaxon%3A272831","Neisseria meningitidis FAM18"]]},{"id":"NCBITaxon:272918","l":"","na":1,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A317018","Nesterenkonia jeotgali"],["NCBITaxon%3A272918","Nesterenkonia sandarakina"]]},{"id":"NCBITaxon:273057","l":"Saccharolobus solfataricus (strain ATCC 35092 / DSM 1617 / JCM 11322 / P2)","na":1,"nb":2,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A2287","Saccharolobus solfataricus"],["NCBITaxon%3A273057","Saccharolobus solfataricus P2"]]},{"id":"NCBITaxon:273075","l":"Thermoplasma acidophilum (strain ATCC 25905 / DSM 1728 / JCM 9062 / NBRC 15155 / AMRC-C165)","na":1,"nb":2,"a":[["blood-plasma-bto-0000131.html","blood plasma"]],"b":[["NCBITaxon%3A2303","Thermoplasma acidophilum"],["NCBITaxon%3A273075","Thermoplasma acidophilum DSM 1728"]]},{"id":"NCBITaxon:273384","l":"Brevibacterium aurantiacum","na":1,"nb":2,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["NCBITaxon%3A273384","Brevibacterium aurantiacum"],["NCBITaxon%3A1703","Brevibacterium linens"]]},{"id":"NCBITaxon:2741","l":"Peptococcus niger","na":2,"nb":1,"a":[["animal-litter-envo-00002191.html","animal litter"],["pig-manure-envo-00003860.html","pig manure"]],"b":[["NCBITaxon%3A2741","Peptococcus niger"]]},{"id":"NCBITaxon:278956","l":"Opitutaceae bacterium TAV1","na":2,"nb":1,"a":[["hindgut-bto-0000510.html","hindgut"],["wood-bto-0005516.html","wood"]],"b":[["NCBITaxon%3A278956","Opitutaceae bacterium TAV1"]]},{"id":"NCBITaxon:278957","l":"Geminisphaera colitermitum TAV2","na":1,"nb":2,"a":[["wood-envo-00002040.html","wood"]],"b":[["NCBITaxon%3A1148786","Geminisphaera colitermitum"],["NCBITaxon%3A278957","Geminisphaera colitermitum TAV2"]]},{"id":"NCBITaxon:278992","l":"Streptomyces ambofaciens ATCC 23877","na":1,"nb":2,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A1889","Streptomyces ambofaciens"],["NCBITaxon%3A278992","Streptomyces ambofaciens ATCC 23877"]]},{"id":"NCBITaxon:279238","l":"Novosphingobium aromaticivorans DSM 12444","na":1,"nb":2,"a":[["pond-water-envo-00002228.html","pond water"]],"b":[["NCBITaxon%3A48935","Novosphingobium aromaticivorans"],["NCBITaxon%3A279238","Novosphingobium aromaticivorans DSM 12444"]]},{"id":"NCBITaxon:279714","l":"Pseudogulbenkiania ferrooxidans 2002","na":2,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["pond-water-envo-00002228.html","pond water"]],"b":[["NCBITaxon%3A279714","Pseudogulbenkiania ferrooxidans 2002"]]},{"id":"NCBITaxon:280236","l":"Nocardiopsis gilva","na":1,"nb":2,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A280236","Nocardiopsis gilva"],["NCBITaxon%3A1235441","Nocardiopsis gilva YIM 90087"]]},{"id":"NCBITaxon:280239","l":"Nocardiopsis chromatogenes","na":1,"nb":2,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A280239","Nocardiopsis chromatogenes"],["NCBITaxon%3A1246475","Nocardiopsis chromatogenes YIM 90109"]]},{"id":"NCBITaxon:280240","l":"Nocardiopsis baichengensis","na":1,"nb":2,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A280240","Nocardiopsis baichengensis"],["NCBITaxon%3A1236902","Nocardiopsis baichengensis YIM 90130"]]},{"id":"NCBITaxon:28092","l":"Robbsia andropogonis","na":1,"nb":2,"a":[["water-body-envo-00000063.html","water body"]],"b":[["NCBITaxon%3A28092","Robbsia andropogonis"],["NCBITaxon%3A1423893","Robbsia andropogonis Ba3549"]]},{"id":"NCBITaxon:28094","l":"Trinickia caryophylli","na":1,"nb":2,"a":[["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A1632866","Alkalimarinus sediminis"],["NCBITaxon%3A28094","Trinickia caryophylli"]]},{"id":"NCBITaxon:281090","l":"Leifsonia xyli subsp. xyli str. CTCB07","na":2,"nb":1,"a":[["xylem-bto-0001468.html","xylem"],["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A281090","Leifsonia xyli subsp. xyli str. CTCB07"]]},{"id":"NCBITaxon:28113","l":"Prevotella heparinolytica","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A28113","Prevotella heparinolytica"],["NCBITaxon%3A888058","Prevotella heparinolytica ATCC 35895"]]},{"id":"NCBITaxon:281361","l":"Flavobacterium denitrificans","na":1,"nb":2,"a":[["pond-water-envo-00002228.html","pond water"]],"b":[["NCBITaxon%3A281361","Flavobacterium denitrificans"],["NCBITaxon%3A1121888","Flavobacterium denitrificans DSM 15936"]]},{"id":"NCBITaxon:28185","l":"Spirochaeta sp.","na":2,"nb":1,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A28185","Spirochaeta sp."]]},{"id":"NCBITaxon:28200","l":"Aliarcobacter skirrowii","na":1,"nb":2,"a":[["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A28200","Aliarcobacter skirrowii"],["NCBITaxon%3A1032239","Aliarcobacter skirrowii CCUG 10374"]]},{"id":"NCBITaxon:28258","l":"Cobetia marina","na":1,"nb":2,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A28258","Cobetia marina"],["NCBITaxon%3A204798","Saccharothrix xinjiangensis"]]},{"id":"NCBITaxon:282669","l":"Psychrobacter cibarius","na":2,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A282669","Psychrobacter cibarius"]]},{"id":"NCBITaxon:283165","l":"Bartonella quintana str. Toulouse","na":2,"nb":1,"a":[["endothelial-cell-bto-0001176.html","endothelial cell"],["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["NCBITaxon%3A283165","Bartonella quintana str. Toulouse"]]},{"id":"NCBITaxon:28442","l":"Haloarcula vallismortis","na":1,"nb":2,"a":[["pond-envo-00000033.html","pond"]],"b":[["NCBITaxon%3A28442","Haloarcula vallismortis"],["NCBITaxon%3A662477","Haloarcula vallismortis ATCC 29715"]]},{"id":"NCBITaxon:285091","l":"Alloalcanivorax dieselolei","na":1,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A285091","Alloalcanivorax dieselolei"],["NCBITaxon%3A930169","Alloalcanivorax dieselolei B5"]]},{"id":"NCBITaxon:285109","l":"Thioclava pacifica","na":1,"nb":2,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A285109","Thioclava pacifica"],["NCBITaxon%3A1353537","Thioclava pacifica DSM 10166"]]},{"id":"NCBITaxon:285258","l":"Tenacibaculum lutimaris","na":2,"nb":1,"a":[["beach-envo-00000091.html","beach"],["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["NCBITaxon%3A285258","Tenacibaculum lutimaris"]]},{"id":"NCBITaxon:285271","l":"uncultured Methylophaga sp.","na":2,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"],["oceanic-sea-surface-microlayer-biome-envo-01000034.html","oceanic sea surface microlayer biome"]],"b":[["NCBITaxon%3A285271","uncultured Methylophaga sp."]]},{"id":"NCBITaxon:285558","l":"Streptomyces carpaticus","na":2,"nb":1,"a":[["area-of-tundra-envo-00000112.html","area of tundra"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["NCBITaxon%3A285558","Streptomyces carpaticus"]]},{"id":"NCBITaxon:286804","l":"Segniliparus rugosus","na":1,"nb":2,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["NCBITaxon%3A286804","Segniliparus rugosus"],["NCBITaxon%3A679197","Segniliparus rugosus ATCC BAA-974"]]},{"id":"NCBITaxon:287844","l":"Lapidilactobacillus concavus","na":1,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A287844","Lapidilactobacillus concavus"],["NCBITaxon%3A1423735","Lapidilactobacillus concavus DSM 17758"]]},{"id":"NCBITaxon:288022","l":"Kordiimonas gwangyangensis","na":1,"nb":2,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A288022","Kordiimonas gwangyangensis"],["NCBITaxon%3A1122137","Kordiimonas gwangyangensis DSM 19435 = JCM 12864"]]},{"id":"NCBITaxon:28892","l":"Methanofollis liminatans DSM 4140","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A2201","Methanofollis liminatans"],["NCBITaxon%3A28892","Methanofollis liminatans DSM 4140"]]},{"id":"NCBITaxon:290053","l":"Bacteroides helcogenes","na":1,"nb":2,"a":[["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["NCBITaxon%3A290053","Bacteroides helcogenes"],["NCBITaxon%3A693979","Bacteroides helcogenes P 36-108"]]},{"id":"NCBITaxon:291615","l":"Thermoanaerobacter mathranii subsp. alimentarius","na":1,"nb":2,"a":[["food-spoiled-foodon-00003366.html","food (spoiled)"]],"b":[["NCBITaxon%3A291615","Thermoanaerobacter mathranii subsp. alimentarius"],["NCBITaxon%3A29350","Thermoanaerobacter thermocopriae"]]},{"id":"NCBITaxon:292415","l":"Thiobacillus denitrificans ATCC 25259","na":2,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A292415","Thiobacillus denitrificans ATCC 25259"]]},{"id":"NCBITaxon:292459","l":"","na":1,"nb":2,"a":[["compost-envo-00002170.html","compost"]],"b":[["NCBITaxon%3A2734","Symbiobacterium thermophilum"],["NCBITaxon%3A292459","Symbiobacterium thermophilum IAM 14863"]]},{"id":"NCBITaxon:292587","l":"Synechococcus rubescens","na":1,"nb":2,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A292587","Synechococcus rubescens"],["NCBITaxon%3A169675","Synechococcus rubescens SAG 3.81"]]},{"id":"NCBITaxon:29303","l":"Streptomyces cattleya","na":1,"nb":2,"a":[["clay-envo-00002982.html","clay"]],"b":[["NCBITaxon%3A29303","Streptantibioticus cattleyicolor"],["NCBITaxon%3A1003195","Streptantibioticus cattleyicolor NRRL 8057 = DSM 46488"]]},{"id":"NCBITaxon:293050","l":"Rhodococcoides kroppenstedtii","na":1,"nb":2,"a":[["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A293050","Rhodococcoides kroppenstedtii"],["NCBITaxon%3A1123056","Rhodococcoides kroppenstedtii DSM 44908"]]},{"id":"NCBITaxon:29317","l":"Actinomyces sp.","na":2,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"]],"b":[["NCBITaxon%3A29317","Actinomyces sp."]]},{"id":"NCBITaxon:29318","l":"Winkia neuii subsp. anitrata","na":1,"nb":2,"a":[["bone-element-uberon-0001474.html","bone element"]],"b":[["NCBITaxon%3A33007","Winkia neuii"],["NCBITaxon%3A29318","Winkia neuii subsp. anitrata"]]},{"id":"NCBITaxon:293256","l":"Alkalidesulfovibrio alkalitolerans","na":1,"nb":2,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A293256","Alkalidesulfovibrio alkalitolerans"],["NCBITaxon%3A1121439","Alkalidesulfovibrio alkalitolerans DSM 16529"]]},{"id":"NCBITaxon:293371","l":"Paucilactobacillus oligofermentans","na":1,"nb":2,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["NCBITaxon%3A293371","Paucilactobacillus oligofermentans"],["NCBITaxon%3A1423778","Paucilactobacillus oligofermentans DSM 15707 = LMG 22743"]]},{"id":"NCBITaxon:29378","l":"Staphylococcus arlettae","na":1,"nb":2,"a":[["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["NCBITaxon%3A29378","Staphylococcus arlettae"],["NCBITaxon%3A1212545","Staphylococcus arlettae CVD059"]]},{"id":"NCBITaxon:293826","l":"Alkaliphilus metalliredigens QYMF","na":2,"nb":1,"a":[["borax-leachate-envo-00002142.html","borax leachate"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["NCBITaxon%3A293826","Alkaliphilus metalliredigens QYMF"]]},{"id":"NCBITaxon:293890","l":"Agromyces subbeticus","na":1,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A293890","Agromyces subbeticus"],["NCBITaxon%3A1120960","Agromyces subbeticus DSM 16689"]]},{"id":"NCBITaxon:29394","l":"Dolosigranulum pigrum","na":1,"nb":2,"a":[["bone-element-uberon-0001474.html","bone element"]],"b":[["NCBITaxon%3A29394","Dolosigranulum pigrum"],["NCBITaxon%3A883103","Dolosigranulum pigrum ATCC 51524"]]},{"id":"NCBITaxon:29447","l":"Xanthomonas albilineans","na":1,"nb":2,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["NCBITaxon%3A29447","Xanthomonas albilineans"],["NCBITaxon%3A380358","Xanthomonas albilineans GPE PC73"]]},{"id":"NCBITaxon:29557","l":"Mycoplasmopsis gallinarum","na":1,"nb":2,"a":[["medial-geniculate-nucleus-bto-0002670.html","medial geniculate nucleus"]],"b":[["NCBITaxon%3A29557","Mycoplasmopsis gallinarum"],["NCBITaxon%3A1122248","Mycoplasmopsis gallinarum DSM 19816"]]},{"id":"NCBITaxon:295596","l":"Hepatoplasma crinochetorum (SeqCode)","na":1,"nb":2,"a":[["hepatopancreas-bto-0000597.html","hepatopancreas"]],"b":[["NCBITaxon%3A295596","Hepatoplasma crinochetorum (SeqCode)"],["NCBITaxon%3A1427984","Candidatus Hepatoplasma crinochetorum Av"]]},{"id":"NCBITaxon:29561","l":"Mycoplasmopsis meleagridis","na":1,"nb":2,"a":[["medial-geniculate-nucleus-bto-0002670.html","medial geniculate nucleus"]],"b":[["NCBITaxon%3A29561","Mycoplasmopsis meleagridis"],["NCBITaxon%3A1264554","Mycoplasmopsis meleagridis ATCC 25294"]]},{"id":"NCBITaxon:29563","l":"Halanaerobium salsuginis","na":2,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A29563","Halanaerobium salsuginis"]]},{"id":"NCBITaxon:298265","l":"Comamonas sp. JS46","na":2,"nb":1,"a":[["stony-desert-envo-00000183.html","stony desert"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A298265","Comamonas sp. JS46"]]},{"id":"NCBITaxon:298386","l":"Photobacterium profundum SS9","na":2,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A298386","Photobacterium profundum SS9"]]},{"id":"NCBITaxon:298654","l":"Pseudofrankia inefficax","na":2,"nb":1,"a":[["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["NCBITaxon%3A298654","Pseudofrankia inefficax"]]},{"id":"NCBITaxon:299767","l":"Enterobacter ludwigii","na":1,"nb":2,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A299767","Enterobacter ludwigii"]]},{"id":"NCBITaxon:301301","l":"Roseburia hominis","na":1,"nb":2,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["NCBITaxon%3A301301","Roseburia hominis"],["NCBITaxon%3A585394","Roseburia hominis A2-183"]]},{"id":"NCBITaxon:301302","l":"Roseburia faecis","na":1,"nb":2,"a":[["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A301302","Roseburia faecis"],["NCBITaxon%3A451638","Roseburia faecis M72/1"]]},{"id":"NCBITaxon:303682","l":"Thauera sp. 28","na":1,"nb":2,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["NCBITaxon%3A1905334","Thauera sp."],["NCBITaxon%3A303682","Thauera sp. 28"]]},{"id":"NCBITaxon:305977","l":"Pusillimonas noertemannii","na":1,"nb":2,"a":[["simulated-communities-habitatmech-bacdive-5fa4710934.html","Simulated-communities"]],"b":[["NCBITaxon%3A305977","Pusillimonas noertemannii"],["NCBITaxon%3A1231391","Pusillimonas noertemannii BS8"]]},{"id":"NCBITaxon:306537","l":"Corynebacterium jeikeium K411","na":1,"nb":2,"a":[["bone-marrow-bto-0000141.html","bone marrow"]],"b":[["NCBITaxon%3A38289","Corynebacterium jeikeium"],["NCBITaxon%3A306537","Corynebacterium jeikeium K411"]]},{"id":"NCBITaxon:306540","l":"Halolactibacillus halophilus","na":2,"nb":1,"a":[["beach-envo-00000091.html","beach"],["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A306540","Halolactibacillus halophilus"]]},{"id":"NCBITaxon:306541","l":"Halolactibacillus miurensis","na":2,"nb":1,"a":[["beach-envo-00000091.html","beach"],["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A306541","Halolactibacillus miurensis"]]},{"id":"NCBITaxon:306543","l":"Paenibacillus harenae","na":1,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A306543","Paenibacillus harenae"],["NCBITaxon%3A1122920","Paenibacillus harenae DSM 16969"]]},{"id":"NCBITaxon:307119","l":"Micromonospora chaiyaphumensis","na":2,"nb":1,"a":[["area-of-tundra-envo-00000112.html","area of tundra"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["NCBITaxon%3A307119","Micromonospora chaiyaphumensis"]]},{"id":"NCBITaxon:307126","l":"Ligilactobacillus apodemi","na":1,"nb":2,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["NCBITaxon%3A307126","Ligilactobacillus apodemi"],["NCBITaxon%3A1423724","Ligilactobacillus apodemi DSM 16634 = JCM 16172"]]},{"id":"NCBITaxon:308354","l":"Staphylococcus simiae","na":1,"nb":2,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A308354","Staphylococcus simiae"],["NCBITaxon%3A911238","Staphylococcus simiae CCM 7213 = CCUG 51256"]]},{"id":"NCBITaxon:308994","l":"Dialister propionicifaciens","na":2,"nb":1,"a":[["pig-manure-envo-00003860.html","pig manure"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A308994","Dialister propionicifaciens"]]},{"id":"NCBITaxon:310783","l":"Deinococcus deserti","na":1,"nb":2,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A310783","Deinococcus deserti"],["NCBITaxon%3A546414","Deinococcus deserti VCD115"]]},{"id":"NCBITaxon:312286","l":"Trueperella bonasi","na":2,"nb":1,"a":[["water-body-envo-00000063.html","water body"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A312286","Trueperella bonasi"]]},{"id":"NCBITaxon:313007","l":"Ureibacillus suwonensis","na":1,"nb":2,"a":[["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A701041","Mycobacterium bouchedurhonense"],["NCBITaxon%3A313007","Ureibacillus suwonensis"]]},{"id":"NCBITaxon:313590","l":"Dokdonia sp. MED134","na":2,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A313590","Dokdonia sp. MED134"]]},{"id":"NCBITaxon:313598","l":"Polaribacter sp. MED152","na":2,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["NCBITaxon%3A313598","Polaribacter sp. MED152"]]},{"id":"NCBITaxon:314229","l":"Nitrospira marina","na":1,"nb":2,"a":[["inlet-envo-00000475.html","inlet"]],"b":[["NCBITaxon%3A314229","Nitrospira marina"],["NCBITaxon%3A35815","Nitrospira marina Nb-295"]]},{"id":"NCBITaxon:314237","l":"","na":2,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"],["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A314237","Paramesorhizobium leguminum"]]},{"id":"NCBITaxon:314262","l":"Roseobacter sp. MED193","na":2,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["NCBITaxon%3A314262","Roseobacter sp. MED193"]]},{"id":"NCBITaxon:314271","l":"Maritimibacter alkaliphilus HTCC2654","na":1,"nb":2,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["NCBITaxon%3A404236","Maritimibacter alkaliphilus"],["NCBITaxon%3A314271","Maritimibacter alkaliphilus HTCC2654"]]},{"id":"NCBITaxon:314277","l":"Marinomonas sp. MED121","na":2,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A314277","Marinomonas sp. MED121"]]},{"id":"NCBITaxon:315277","l":"Chlamydia trachomatis A/HAR-13","na":1,"nb":2,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A813","Chlamydia trachomatis"],["NCBITaxon%3A315277","Chlamydia trachomatis A/HAR-13"]]},{"id":"NCBITaxon:316058","l":"Rhodopseudomonas palustris HaA2","na":2,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A316058","Rhodopseudomonas palustris HaA2"]]},{"id":"NCBITaxon:316067","l":"Geotalea daltonii FRC-32","na":1,"nb":2,"a":[["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A1203471","Geotalea daltonii"],["NCBITaxon%3A316067","Geotalea daltonii FRC-32"]]},{"id":"NCBITaxon:317010","l":"Enterococcus canintestini","na":1,"nb":2,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"]],"b":[["NCBITaxon%3A1448267","Corynebacterium nasicanis"],["NCBITaxon%3A317010","Enterococcus canintestini"]]},{"id":"NCBITaxon:317619","l":"Prochlorothrix hollandica PCC 9006 = CALU 1027","na":1,"nb":2,"a":[["fjord-envo-00000039.html","fjord"]],"b":[["NCBITaxon%3A1223","Prochlorothrix hollandica"],["NCBITaxon%3A317619","Prochlorothrix hollandica PCC 9006 = CALU 1027"]]},{"id":"NCBITaxon:318161","l":"Shewanella denitrificans OS217","na":1,"nb":2,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A192073","Shewanella denitrificans"],["NCBITaxon%3A318161","Shewanella denitrificans OS217"]]},{"id":"NCBITaxon:319225","l":"Pelodictyon luteolum DSM 273","na":1,"nb":2,"a":[["meromictic-lake-envo-00000199.html","meromictic lake"]],"b":[["NCBITaxon%3A1100","Pelodictyon luteolum"],["NCBITaxon%3A319225","Pelodictyon luteolum DSM 273"]]},{"id":"NCBITaxon:31963","l":"Clavibacter nebraskensis","na":1,"nb":2,"a":[["immunocompromised-habitatmech-bacdive-0d6b871731.html","Immunocompromised"]],"b":[["NCBITaxon%3A31963","Clavibacter nebraskensis"],["NCBITaxon%3A1097677","Clavibacter nebraskensis NCPPB 2581"]]},{"id":"NCBITaxon:320483","l":"Anaplasma marginale str. Florida","na":2,"nb":1,"a":[["erythrocyte-bto-0000424.html","erythrocyte"],["filament-bto-0000463.html","filament"]],"b":[["NCBITaxon%3A320483","Anaplasma marginale str. Florida"]]},{"id":"NCBITaxon:321967","l":"Lacticaseibacillus paracasei (strain ATCC 334 / BCRC 17002 / CCUG 31169 / CIP 107868 / KCTC 3260 / NRRL B-441)","na":1,"nb":2,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["NCBITaxon%3A1597","Lacticaseibacillus paracasei"],["NCBITaxon%3A321967","Lacticaseibacillus paracasei ATCC 334"]]},{"id":"NCBITaxon:322009","l":"Sinomonas cyclohexanicum","na":2,"nb":1,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"]],"b":[["NCBITaxon%3A322009","Sinomonas cyclohexanicum"]]},{"id":"NCBITaxon:322095","l":"Porphyromonas somerae","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A322095","Porphyromonas somerae"],["NCBITaxon%3A1122975","Porphyromonas somerae DSM 23386"]]},{"id":"NCBITaxon:323098","l":"Nitrobacter winogradskyi Nb-255","na":1,"nb":2,"a":[["stromatolite-mat-envo-00002157.html","stromatolite mat"]],"b":[["NCBITaxon%3A913","Nitrobacter winogradskyi"],["NCBITaxon%3A323098","Nitrobacter winogradskyi Nb-255"]]},{"id":"NCBITaxon:323259","l":"Methanospirillum hungatei JF-1","na":1,"nb":2,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A2203","Methanospirillum hungatei"],["NCBITaxon%3A323259","Methanospirillum hungatei JF-1"]]},{"id":"NCBITaxon:323850","l":"Shewanella loihica PV-4","na":1,"nb":2,"a":[["rift-valley-envo-00000302.html","rift valley"]],"b":[["NCBITaxon%3A359303","Shewanella loihica"],["NCBITaxon%3A323850","Shewanella loihica PV-4"]]},{"id":"NCBITaxon:324602","l":"Chloroflexus aurantiacus (strain ATCC 29366 / DSM 635 / J-10-fl)","na":1,"nb":2,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A1108","Chloroflexus aurantiacus"],["NCBITaxon%3A324602","Chloroflexus aurantiacus J-10-fl"]]},{"id":"NCBITaxon:324925","l":"Pelodictyon phaeoclathratiforme BU-1","na":1,"nb":2,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A34090","Pelodictyon phaeoclathratiforme"],["NCBITaxon%3A324925","Pelodictyon phaeoclathratiforme BU-1"]]},{"id":"NCBITaxon:326320","l":"Dokdonia donghaensis","na":1,"nb":2,"a":[["sandstone-envo-00002055.html","sandstone"]],"b":[["NCBITaxon%3A326320","Dokdonia donghaensis"],["NCBITaxon%3A1300343","Dokdonia donghaensis DSW-1"]]},{"id":"NCBITaxon:326423","l":"Bacillus velezensis FZB42","na":1,"nb":2,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["NCBITaxon%3A492670","Bacillus velezensis"],["NCBITaxon%3A326423","Bacillus velezensis FZB42"]]},{"id":"NCBITaxon:326424","l":"Frankia alni ACN14a","na":1,"nb":2,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["NCBITaxon%3A1859","Frankia alni"],["NCBITaxon%3A326424","Frankia alni ACN14a"]]},{"id":"NCBITaxon:33035","l":"Blautia producta","na":1,"nb":2,"a":[["juvenile-bto-0002168.html","juvenile"]],"b":[["NCBITaxon%3A33035","Blautia producta"],["NCBITaxon%3A1121114","Blautia producta ATCC 27340 = DSM 2950"]]},{"id":"NCBITaxon:33050","l":"Sphingopyxis macrogoltabida","na":1,"nb":2,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A33050","Sphingopyxis macrogoltabida"],["NCBITaxon%3A1219047","Sphingopyxis macrogoltabida NBRC 15033"]]},{"id":"NCBITaxon:330922","l":"Psychrobacter cryohalolentis","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A330922","Psychrobacter cryohalolentis"],["NCBITaxon%3A335284","Psychrobacter cryohalolentis K5"]]},{"id":"NCBITaxon:331272","l":"Burkholderia cenocepacia HI2424","na":2,"nb":1,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A331272","Burkholderia cenocepacia HI2424"]]},{"id":"NCBITaxon:332163","l":"Candidatus Solibacter usitatus","na":1,"nb":2,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A332163","Candidatus Solibacter usitatus"],["NCBITaxon%3A234267","Candidatus Solibacter usitatus Ellin6076"]]},{"id":"NCBITaxon:332168","l":"Halococcus hamelinensis","na":1,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A332168","Halococcus hamelinensis"],["NCBITaxon%3A1132509","Halococcus hamelinensis 100A6"]]},{"id":"NCBITaxon:332175","l":"Desulfosalsimonas propionicica","na":2,"nb":1,"a":[["inlet-envo-00000475.html","inlet"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A332175","Desulfosalsimonas propionicica"]]},{"id":"NCBITaxon:333725","l":"Streptomyces kaempferi","na":1,"nb":2,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A333725","Streptomyces kaempferi"],["NCBITaxon%3A156453","Streptomyces yunnanensis"]]},{"id":"NCBITaxon:334543","l":"Psychrobacter arcticus","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A334543","Psychrobacter arcticus"],["NCBITaxon%3A259536","Psychrobacter arcticus 273-4"]]},{"id":"NCBITaxon:335284","l":"Psychrobacter cryohalolentis K5","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A330922","Psychrobacter cryohalolentis"],["NCBITaxon%3A335284","Psychrobacter cryohalolentis K5"]]},{"id":"NCBITaxon:336203","l":"Sphingobium fuliginis","na":1,"nb":2,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["NCBITaxon%3A336203","Sphingobium fuliginis"],["NCBITaxon%3A1208342","Sphingobium fuliginis ATCC 27551"]]},{"id":"NCBITaxon:33881","l":"Curtobacterium luteum","na":1,"nb":2,"a":[["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["NCBITaxon%3A33881","Curtobacterium luteum"],["NCBITaxon%3A465820","Curtobacterium oceanosedimentum"]]},{"id":"NCBITaxon:338966","l":"Pelobacter propionicus DSM 2379","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A29543","Pelobacter propionicus"],["NCBITaxon%3A338966","Pelobacter propionicus DSM 2379"]]},{"id":"NCBITaxon:33935","l":"Lysinibacillus macroides","na":2,"nb":1,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A33935","Lysinibacillus macroides"]]},{"id":"NCBITaxon:33952","l":"Acetobacterium woodii","na":1,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A33952","Acetobacterium woodii"],["NCBITaxon%3A931626","Acetobacterium woodii DSM 1030"]]},{"id":"NCBITaxon:339861","l":"Clostridium aciditolerans","na":1,"nb":2,"a":[["marsh-envo-00000035.html","marsh"]],"b":[["NCBITaxon%3A339861","Clostridium aciditolerans"],["NCBITaxon%3A1506","Clostridium sp."]]},{"id":"NCBITaxon:340100","l":"Bordetella petrii DSM 12804","na":1,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["NCBITaxon%3A94624","Bordetella petrii"],["NCBITaxon%3A340100","Bordetella petrii DSM 12804"]]},{"id":"NCBITaxon:340146","l":"Exiguobacterium mexicanum","na":1,"nb":2,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A340146","Exiguobacterium mexicanum"],["NCBITaxon%3A68258","Streptomyces pulveraceus"]]},{"id":"NCBITaxon:340186","l":"Escherichia coli E110019","na":2,"nb":1,"a":[["hep-2-cell-bto-0000976.html","HEp-2 cell"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"]],"b":[["NCBITaxon%3A340186","Escherichia coli E110019"]]},{"id":"NCBITaxon:340197","l":"Escherichia coli F11","na":2,"nb":1,"a":[["diaphragm-bto-0000341.html","diaphragm"],["kidney-bto-0000671.html","kidney"]],"b":[["NCBITaxon%3A340197","Escherichia coli F11"]]},{"id":"NCBITaxon:342110","l":"Ralstonia solanacearum UW551","na":2,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A342110","Ralstonia solanacearum UW551"]]},{"id":"NCBITaxon:344998","l":"Hymenobacter psychrotolerans","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A344998","Hymenobacter psychrotolerans"],["NCBITaxon%3A1121959","Hymenobacter psychrotolerans DSM 18569"]]},{"id":"NCBITaxon:345219","l":"Heyndrickxia coagulans 36D1","na":1,"nb":2,"a":[["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["NCBITaxon%3A1398","Heyndrickxia coagulans"],["NCBITaxon%3A345219","Heyndrickxia coagulans 36D1"]]},{"id":"NCBITaxon:345341","l":"Kutzneria sp. 744","na":2,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"],["clay-envo-00002982.html","clay"]],"b":[["NCBITaxon%3A345341","Kutzneria sp. 744"]]},{"id":"NCBITaxon:349106","l":"Psychrobacter sp. PRwf-1","na":2,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A349106","Psychrobacter sp. PRwf-1"]]},{"id":"NCBITaxon:349124","l":"Halorhodospira halophila (strain DSM 244 / SL1)","na":1,"nb":2,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A1053","Halorhodospira halophila"],["NCBITaxon%3A349124","Halorhodospira halophila SL1"]]},{"id":"NCBITaxon:349163","l":"Acidiphilium cryptum JF-5","na":2,"nb":1,"a":[["acid-mine-drainage-envo-00001997.html","acid mine drainage"],["coal-mine-lake-sediment-envo-00002147.html","coal mine lake sediment"]],"b":[["NCBITaxon%3A349163","Acidiphilium cryptum JF-5"]]},{"id":"NCBITaxon:349521","l":"Hahella chejuensis KCTC 2396","na":1,"nb":2,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["NCBITaxon%3A158327","Hahella chejuensis"],["NCBITaxon%3A349521","Hahella chejuensis KCTC 2396"]]},{"id":"NCBITaxon:349741","l":"Akkermansia muciniphila (strain ATCC BAA-835 / DSM 22959 / JCM 33894 / BCRC 81048 / CCUG 64013 / CIP 107961 / Muc)","na":1,"nb":2,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["NCBITaxon%3A239935","Akkermansia muciniphila"],["NCBITaxon%3A349741","Akkermansia muciniphila ATCC BAA-835"]]},{"id":"NCBITaxon:349910","l":"Streptomyces bullii","na":1,"nb":2,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A349910","Streptomyces bullii"],["NCBITaxon%3A1818004","Streptomyces zhihengii"]]},{"id":"NCBITaxon:35","l":"Corallococcus macrosporus","na":1,"nb":2,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"]],"b":[["NCBITaxon%3A35","Corallococcus macrosporus"],["NCBITaxon%3A1189310","Corallococcus macrosporus DSM 14697"]]},{"id":"NCBITaxon:350054","l":"Mycolicibacterium gilvum PYR-GCK","na":2,"nb":1,"a":[["soil-envo-00001998.html","soil"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A350054","Mycolicibacterium gilvum PYR-GCK"]]},{"id":"NCBITaxon:351348","l":"Marinobacter nauticus VT8","na":1,"nb":2,"a":[["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A2743","Marinobacter nauticus"],["NCBITaxon%3A351348","Marinobacter nauticus VT8"]]},{"id":"NCBITaxon:351607","l":"Acidothermus cellulolyticus 11B","na":1,"nb":2,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A28049","Acidothermus cellulolyticus"],["NCBITaxon%3A351607","Acidothermus cellulolyticus 11B"]]},{"id":"NCBITaxon:353153","l":"Trypanosoma cruzi (strain CL Brener)","na":2,"nb":1,"a":[["amastigote-bto-0000062.html","amastigote"],["kinetoplastid-bto-0002502.html","kinetoplastid"]],"b":[["NCBITaxon%3A353153","Trypanosoma cruzi strain CL Brener"]]},{"id":"NCBITaxon:356829","l":"Bifidobacterium tsurumiense","na":1,"nb":2,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A356829","Bifidobacterium tsurumiense"],["NCBITaxon%3A1121112","Bifidobacterium tsurumiense DSM 17777"]]},{"id":"NCBITaxon:357347","l":"Burkholderia pseudomallei 1106b","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A357347","Burkholderia pseudomallei 1106b"]]},{"id":"NCBITaxon:357794","l":"Psychromonas ingrahamii","na":1,"nb":2,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A357794","Psychromonas ingrahamii"],["NCBITaxon%3A357804","Psychromonas ingrahamii 37"]]},{"id":"NCBITaxon:357804","l":"Psychromonas ingrahamii (strain DSM 17664 / CCUG 51855 / 37)","na":1,"nb":2,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["NCBITaxon%3A357794","Psychromonas ingrahamii"],["NCBITaxon%3A357804","Psychromonas ingrahamii 37"]]},{"id":"NCBITaxon:358100","l":"Microbacterium indicum","na":1,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A358100","Microbacterium indicum"],["NCBITaxon%3A1122238","Microbacterium indicum DSM 19969"]]},{"id":"NCBITaxon:35841","l":"Caldibacillus thermoamylovorans","na":2,"nb":1,"a":[["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["NCBITaxon%3A35841","Caldibacillus thermoamylovorans"]]},{"id":"NCBITaxon:360054","l":"Bryobacter aggregatus","na":1,"nb":2,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A360054","Bryobacter aggregatus"],["NCBITaxon%3A1340493","Bryobacter aggregatus MPL3"]]},{"id":"NCBITaxon:362242","l":"","na":2,"nb":1,"a":[["subcutaneous-tissue-bto-0004525.html","subcutaneous tissue"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A362242","Mycobacterium ulcerans Agy99"]]},{"id":"NCBITaxon:362787","l":"Candidatus Protochlamydia amoebophila","na":1,"nb":2,"a":[["endosymbiont-habitatmech-bacdive-7d840c7ddc.html","Endosymbiont"]],"b":[["NCBITaxon%3A362787","Candidatus Protochlamydia amoebophila"],["NCBITaxon%3A264201","Candidatus Protochlamydia amoebophila UWE25"]]},{"id":"NCBITaxon:363260","l":"Sphingobacterium composti","na":1,"nb":2,"a":[["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["NCBITaxon%3A415956","Sphingobacterium allocomposti"],["NCBITaxon%3A363260","Sphingobacterium composti"]]},{"id":"NCBITaxon:364197","l":"Pseudomonas pohangensis","na":2,"nb":1,"a":[["beach-envo-00000091.html","beach"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A364197","Pseudomonas pohangensis"]]},{"id":"NCBITaxon:366289","l":"Pseudomonas delhiensis","na":1,"nb":2,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["NCBITaxon%3A366289","Pseudomonas delhiensis"],["NCBITaxon%3A482461","Sediminibacillus halophilus"]]},{"id":"NCBITaxon:36738","l":"Halococcus salifodinae","na":1,"nb":2,"a":[["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["NCBITaxon%3A36738","Halococcus salifodinae"],["NCBITaxon%3A1227456","Halococcus salifodinae DSM 8989"]]},{"id":"NCBITaxon:367928","l":"Bifidobacterium adolescentis (strain ATCC 15703 / DSM 20083 / NCTC 11814 / E194a)","na":1,"nb":2,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["NCBITaxon%3A1680","Bifidobacterium adolescentis"],["NCBITaxon%3A367928","Bifidobacterium adolescentis ATCC 15703"]]},{"id":"NCBITaxon:36821","l":"Gordonia amarae","na":1,"nb":2,"a":[["foam-habitatmech-bacdive-df2f59b773.html","Foam"]],"b":[["NCBITaxon%3A36821","Gordonia amarae"],["NCBITaxon%3A1075090","Gordonia amarae NBRC 15530"]]},{"id":"NCBITaxon:36832","l":"Lacrimispora aerotolerans","na":1,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"]],"b":[["NCBITaxon%3A1410651","[Clostridium] aerotolerans DSM 5434"],["NCBITaxon%3A36832","Lacrimispora aerotolerans"]]},{"id":"NCBITaxon:368407","l":"","na":1,"nb":2,"a":[["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A2198","Methanoculleus marisnigri"],["NCBITaxon%3A368407","Methanoculleus marisnigri JR1"]]},{"id":"NCBITaxon:36874","l":"Porphyromonas cangingivalis","na":1,"nb":2,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["NCBITaxon%3A36874","Porphyromonas cangingivalis"],["NCBITaxon%3A1236520","Porphyromonas cangingivalis JCM 15983"]]},{"id":"NCBITaxon:369822","l":"Rickettsia conorii subsp. raoultii","na":1,"nb":2,"a":[["scalp-bto-0001809.html","scalp"]],"b":[["NCBITaxon%3A781","Rickettsia conorii"],["NCBITaxon%3A369822","Rickettsia conorii subsp. raoultii"]]},{"id":"NCBITaxon:370973","l":"Runella defluvii","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A370973","Runella defluvii"],["NCBITaxon%3A1123076","Runella defluvii DSM 17976"]]},{"id":"NCBITaxon:373903","l":"Halothermothrix orenii H 168","na":1,"nb":2,"a":[["lake-sediment-envo-00000546.html","lake sediment"]],"b":[["NCBITaxon%3A31909","Halothermothrix orenii"],["NCBITaxon%3A373903","Halothermothrix orenii H 168"]]},{"id":"NCBITaxon:374424","l":"Methylobacterium gregans","na":1,"nb":2,"a":[["factory-envo-01000536.html","factory"]],"b":[["NCBITaxon%3A237017","Algoriphagus winogradskyi"],["NCBITaxon%3A374424","Methylobacterium gregans"]]},{"id":"NCBITaxon:374463","l":"Baumannia cicadellinicola str. Hc (Homalodisca coagulata)","na":2,"nb":1,"a":[["phloem-bto-0001058.html","phloem"],["xylem-bto-0001468.html","xylem"]],"b":[["NCBITaxon%3A374463","Baumannia cicadellinicola str. Hc (Homalodisca coagulata)"]]},{"id":"NCBITaxon:374675","l":"Candidatus Karelsulcia muelleri str. Hc (Homalodisca coagulata)","na":2,"nb":1,"a":[["phloem-bto-0001058.html","phloem"],["xylem-bto-0001468.html","xylem"]],"b":[["NCBITaxon%3A374675","Candidatus Karelsulcia muelleri str. Hc (Homalodisca coagulata)"]]},{"id":"NCBITaxon:375451","l":"Roseobacter denitrificans OCh 114","na":1,"nb":2,"a":[["inlet-envo-00000475.html","inlet"]],"b":[["NCBITaxon%3A2434","Roseobacter denitrificans"],["NCBITaxon%3A375451","Roseobacter denitrificans OCh 114"]]},{"id":"NCBITaxon:37658","l":"Anaeromicropila populeti","na":1,"nb":2,"a":[["wood-envo-00002040.html","wood"]],"b":[["NCBITaxon%3A37658","Anaeromicropila populeti"],["NCBITaxon%3A1121330","Anaeromicropila populeti DSM 5832"]]},{"id":"NCBITaxon:376686","l":"","na":1,"nb":2,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["NCBITaxon%3A986","Flavobacterium johnsoniae"],["NCBITaxon%3A376686","Flavobacterium johnsoniae UW101"]]},{"id":"NCBITaxon:376804","l":"Phocaeicola barnesiae","na":1,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"]],"b":[["NCBITaxon%3A376804","Phocaeicola barnesiae"],["NCBITaxon%3A1121094","Phocaeicola barnesiae DSM 18169 = JCM 13652"]]},{"id":"NCBITaxon:377431","l":"Chlorobium ferrooxidans DSM 13031","na":1,"nb":2,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A84205","Chlorobium ferrooxidans"],["NCBITaxon%3A377431","Chlorobium ferrooxidans DSM 13031"]]},{"id":"NCBITaxon:379347","l":"Tritonibacter mobilis","na":1,"nb":2,"a":[["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["NCBITaxon%3A379347","Tritonibacter mobilis"],["NCBITaxon%3A1265309","Tritonibacter mobilis F1926"]]},{"id":"NCBITaxon:380174","l":"Cohnella laeviribosi","na":1,"nb":2,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A380174","Cohnella laeviribosi"],["NCBITaxon%3A1121346","Cohnella laeviribosi DSM 21336"]]},{"id":"NCBITaxon:380394","l":"Acidithiobacillus ferrooxidans ATCC 53993","na":2,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A380394","Acidithiobacillus ferrooxidans ATCC 53993"]]},{"id":"NCBITaxon:381845","l":"Clostridium sp. CYP5","na":2,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"]],"b":[["NCBITaxon%3A381845","Clostridium sp. CYP5"]]},{"id":"NCBITaxon:382514","l":"Telmatospirillum siberiense","na":2,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A382514","Telmatospirillum siberiense"]]},{"id":"NCBITaxon:382640","l":"Bartonella tribocorum CIP 105476","na":1,"nb":2,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A85701","Bartonella tribocorum"],["NCBITaxon%3A382640","Bartonella tribocorum CIP 105476"]]},{"id":"NCBITaxon:383407","l":"Xanthomonas oryzae pv. oryzicola BLS256","na":2,"nb":1,"a":[["mesophyll-bto-0000858.html","mesophyll"],["vascular-tissue-bto-0001432.html","vascular tissue"]],"b":[["NCBITaxon%3A383407","Xanthomonas oryzae pv. oryzicola BLS256"]]},{"id":"NCBITaxon:384602","l":"Micrococcus flavus","na":1,"nb":2,"a":[["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A384602","Micrococcus flavus"],["NCBITaxon%3A1271","Micrococcus sp."]]},{"id":"NCBITaxon:384616","l":"Pyrobaculum islandicum (strain DSM 4184 / JCM 9189 / GEO3)","na":1,"nb":2,"a":[["geothermal-power-plant-envo-00002215.html","geothermal power plant"]],"b":[["NCBITaxon%3A2277","Pyrobaculum islandicum"],["NCBITaxon%3A384616","Pyrobaculum islandicum DSM 4184"]]},{"id":"NCBITaxon:384676","l":"Pseudomonas entomophila L48","na":1,"nb":2,"a":[["coelom-bto-0001707.html","coelom"]],"b":[["NCBITaxon%3A312306","Pseudomonas entomophila"],["NCBITaxon%3A384676","Pseudomonas entomophila L48"]]},{"id":"NCBITaxon:384765","l":"Roseibium aggregatum IAM 12614","na":1,"nb":2,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["NCBITaxon%3A187304","Roseibium aggregatum"],["NCBITaxon%3A384765","Roseibium aggregatum IAM 12614"]]},{"id":"NCBITaxon:386891","l":"Moraxella bovoculi","na":1,"nb":2,"a":[["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["NCBITaxon%3A386891","Moraxella bovoculi"],["NCBITaxon%3A743974","Moraxella bovoculi 237"]]},{"id":"NCBITaxon:387344","l":"Levilactobacillus brevis ATCC 367","na":1,"nb":2,"a":[["silage-envo-00003030.html","silage"]],"b":[["NCBITaxon%3A1580","Levilactobacillus brevis"],["NCBITaxon%3A387344","Levilactobacillus brevis ATCC 367"]]},{"id":"NCBITaxon:387889","l":"Prauserella salsuginis","na":1,"nb":2,"a":[["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A577679","Prauserella flava"],["NCBITaxon%3A387889","Prauserella salsuginis"]]},{"id":"NCBITaxon:389348","l":"Candidatus Protochlamydia naegleriophila","na":2,"nb":1,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A389348","Candidatus Protochlamydia naegleriophila"]]},{"id":"NCBITaxon:391009","l":"Thermosipho melanesiensis BI429","na":1,"nb":2,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A46541","Thermosipho melanesiensis"],["NCBITaxon%3A391009","Thermosipho melanesiensis BI429"]]},{"id":"NCBITaxon:391037","l":"Salinispora arenicola CNS-205","na":2,"nb":1,"a":[["beach-sand-envo-00002138.html","beach sand"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A391037","Salinispora arenicola CNS-205"]]},{"id":"NCBITaxon:391038","l":"Paraburkholderia phymatum STM815","na":1,"nb":2,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A148447","Paraburkholderia phymatum"],["NCBITaxon%3A391038","Paraburkholderia phymatum STM815"]]},{"id":"NCBITaxon:39122","l":"Skermania pinensis","na":1,"nb":2,"a":[["foam-habitatmech-bacdive-df2f59b773.html","Foam"]],"b":[["NCBITaxon%3A39122","Skermania pinensis"],["NCBITaxon%3A1223536","Skermania pinensis NBRC 15059"]]},{"id":"NCBITaxon:391287","l":"","na":1,"nb":2,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A391287","Brucella ciceri"],["NCBITaxon%3A94625","Brucella intermedia"]]},{"id":"NCBITaxon:391613","l":"Roseovarius sp. TM1035","na":1,"nb":2,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A2203213","Roseovarius sp. AK1035"],["NCBITaxon%3A391613","Roseovarius sp. TM1035"]]},{"id":"NCBITaxon:391626","l":"Octadecabacter antarcticus 307","na":1,"nb":2,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["NCBITaxon%3A1217908","Octadecabacter antarcticus"],["NCBITaxon%3A391626","Octadecabacter antarcticus 307"]]},{"id":"NCBITaxon:392015","l":"Paenalicyclobacillus macrosporangiidus","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A1382304","Alicyclobacillus macrosporangiidus CPP55"],["NCBITaxon%3A392015","Paenalicyclobacillus macrosporangiidus"]]},{"id":"NCBITaxon:392838","l":"Bacteroides propionicifaciens","na":1,"nb":2,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A392838","Bacteroides propionicifaciens"],["NCBITaxon%3A1121099","Bacteroides propionicifaciens DSM 19291 = JCM 14649"]]},{"id":"NCBITaxon:393133","l":"Listeria monocytogenes serotype 1/2a (strain 10403S)","na":2,"nb":1,"a":[["lymphocyte-bto-0000775.html","lymphocyte"],["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A393133","Listeria monocytogenes 10403S"]]},{"id":"NCBITaxon:393595","l":"Alcanivorax borkumensis SK2","na":1,"nb":2,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["NCBITaxon%3A59754","Alcanivorax borkumensis"],["NCBITaxon%3A393595","Alcanivorax borkumensis SK2"]]},{"id":"NCBITaxon:394094","l":"Cystobacter velatus","na":2,"nb":1,"a":[["wood-bto-0005516.html","wood"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A394094","Cystobacter velatus"]]},{"id":"NCBITaxon:394096","l":"Hyalangium minutum","na":2,"nb":1,"a":[["wood-bto-0005516.html","wood"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A394096","Hyalangium minutum"]]},{"id":"NCBITaxon:394935","l":"Chromobacterium haemolyticum","na":1,"nb":2,"a":[["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["NCBITaxon%3A394935","Chromobacterium haemolyticum"],["NCBITaxon%3A1121283","Chromobacterium haemolyticum DSM 19808"]]},{"id":"NCBITaxon:395493","l":"Beggiatoa alba B18LD","na":1,"nb":2,"a":[["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["NCBITaxon%3A1022","Beggiatoa alba"],["NCBITaxon%3A395493","Beggiatoa alba B18LD"]]},{"id":"NCBITaxon:395598","l":"Pseudomonas reinekei","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A395598","Pseudomonas reinekei"]]},{"id":"NCBITaxon:395961","l":"Cyanothece sp. PCC 7425","na":2,"nb":1,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["NCBITaxon%3A395961","Cyanothece sp. PCC 7425"]]},{"id":"NCBITaxon:395962","l":"Rippkaea orientalis PCC 8802","na":2,"nb":1,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A395962","Rippkaea orientalis PCC 8802"]]},{"id":"NCBITaxon:396588","l":"Thioalkalivibrio sulfidiphilus HL-EbGr7","na":2,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A396588","Thioalkalivibrio sulfidiphilus HL-EbGr7"]]},{"id":"NCBITaxon:397448","l":"Escherichia coli O119:H6","na":2,"nb":1,"a":[["enterocyte-bto-0000398.html","enterocyte"],["hela-cell-bto-0000567.html","HeLa cell"]],"b":[["NCBITaxon%3A397448","Escherichia coli O119:H6"]]},{"id":"NCBITaxon:397865","l":"Barnesiella viscericola","na":1,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"]],"b":[["NCBITaxon%3A397865","Barnesiella viscericola"],["NCBITaxon%3A880074","Barnesiella viscericola DSM 18177"]]},{"id":"NCBITaxon:397948","l":"Caldivirga maquilingensis IC-167","na":1,"nb":2,"a":[["acidic-hot-spring-envo-00002120.html","acidic hot spring"]],"b":[["NCBITaxon%3A76887","Caldivirga maquilingensis"],["NCBITaxon%3A397948","Caldivirga maquilingensis IC-167"]]},{"id":"NCBITaxon:398000","l":"Campylobacter jejuni subsp. jejuni CG8486","na":2,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["epithelial-cell-bto-0000414.html","epithelial cell"]],"b":[["NCBITaxon%3A398000","Campylobacter jejuni subsp. jejuni CG8486"]]},{"id":"NCBITaxon:398527","l":"Paraburkholderia phytofirmans PsJN","na":1,"nb":2,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["NCBITaxon%3A261302","Paraburkholderia phytofirmans"],["NCBITaxon%3A398527","Paraburkholderia phytofirmans PsJN"]]},{"id":"NCBITaxon:399549","l":"Metallosphaera sedula DSM 5348","na":1,"nb":2,"a":[["solfatara-envo-00000217.html","solfatara"]],"b":[["NCBITaxon%3A43687","Metallosphaera sedula"],["NCBITaxon%3A399549","Metallosphaera sedula DSM 5348"]]},{"id":"NCBITaxon:399579","l":"Thermogymnomonas acidicola","na":1,"nb":2,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A399579","Thermogymnomonas acidicola"],["NCBITaxon%3A1295120","Thermogymnomonas acidicola JCM 13583"]]},{"id":"NCBITaxon:399741","l":"Serratia proteamaculans 568","na":2,"nb":1,"a":[["pleura-bto-0001791.html","pleura"],["seedling-bto-0001228.html","seedling"]],"b":[["NCBITaxon%3A399741","Serratia proteamaculans 568"]]},{"id":"NCBITaxon:399795","l":"Comamonas testosteroni KF-1","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A285","Comamonas testosteroni"],["NCBITaxon%3A399795","Comamonas testosteroni KF-1"]]},{"id":"NCBITaxon:401472","l":"Corynebacterium ureicelerivorans","na":1,"nb":2,"a":[["ascites-bto-0000091.html","ascites"]],"b":[["NCBITaxon%3A57171","Corynebacterium mucifaciens"],["NCBITaxon%3A401472","Corynebacterium ureicelerivorans"]]},{"id":"NCBITaxon:401526","l":"Thermosinus carboxydivorans Nor1","na":1,"nb":2,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A261685","Thermosinus carboxydivorans"],["NCBITaxon%3A401526","Thermosinus carboxydivorans Nor1"]]},{"id":"NCBITaxon:402612","l":"Flavobacterium psychrophilum JIP02/86","na":1,"nb":2,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A96345","Flavobacterium psychrophilum"],["NCBITaxon%3A402612","Flavobacterium psychrophilum JIP02/86"]]},{"id":"NCBITaxon:402880","l":"","na":2,"nb":1,"a":[["marsh-envo-00000035.html","marsh"],["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A402880","Methanococcus maripaludis C5"]]},{"id":"NCBITaxon:403833","l":"Petrotoga mobilis SJ95","na":1,"nb":2,"a":[["oil-envo-00002985.html","oil"]],"b":[["NCBITaxon%3A69499","Petrotoga mobilis"],["NCBITaxon%3A403833","Petrotoga mobilis SJ95"]]},{"id":"NCBITaxon:404385","l":"","na":1,"nb":2,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A404385","Nonomuraea bangladeshensis"],["NCBITaxon%3A282078","Streptococcus orisuis"]]},{"id":"NCBITaxon:404386","l":"Nonomuraea coxensis","na":1,"nb":2,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A404386","Nonomuraea coxensis"],["NCBITaxon%3A1122611","Nonomuraea coxensis DSM 45129"]]},{"id":"NCBITaxon:404881","l":"Albidovulum denitrificans","na":2,"nb":1,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A404881","Albidovulum denitrificans"]]},{"id":"NCBITaxon:405559","l":"Paracoccus saliphilus","na":1,"nb":2,"a":[["area-designated-as-a-nature-reserve-envo-00000363.html","area designated as a nature reserve"]],"b":[["NCBITaxon%3A2778531","Paracoccus halotolerans"],["NCBITaxon%3A405559","Paracoccus saliphilus"]]},{"id":"NCBITaxon:406425","l":"Burkholderia orbicola MC0-3","na":2,"nb":1,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A406425","Burkholderia orbicola MC0-3"]]},{"id":"NCBITaxon:406817","l":"Xenorhabdus nematophila ATCC 19061","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A628","Xenorhabdus nematophila"],["NCBITaxon%3A406817","Xenorhabdus nematophila ATCC 19061"]]},{"id":"NCBITaxon:407022","l":"Olivibacter domesticus","na":1,"nb":2,"a":[["compost-envo-00002170.html","compost"]],"b":[["NCBITaxon%3A407022","Olivibacter domesticus"],["NCBITaxon%3A1123028","Olivibacter domesticus DSM 18733"]]},{"id":"NCBITaxon:408577","l":"Methanobacterium veterum","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A386456","Methanobacterium arcticum"],["NCBITaxon%3A408577","Methanobacterium veterum"]]},{"id":"NCBITaxon:409291","l":"Arthrobacter humicola","na":1,"nb":2,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A1665","Arthrobacter globiformis"],["NCBITaxon%3A409291","Arthrobacter humicola"]]},{"id":"NCBITaxon:40990","l":"Saccharomonospora glauca","na":1,"nb":2,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"]],"b":[["NCBITaxon%3A40990","Saccharomonospora glauca"],["NCBITaxon%3A928724","Saccharomonospora glauca K62"]]},{"id":"NCBITaxon:410358","l":"Methanocorpusculum labreanum (strain ATCC 43576 / DSM 4855 / Z)","na":1,"nb":2,"a":[["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A83984","Methanocorpusculum labreanum"],["NCBITaxon%3A410358","Methanocorpusculum labreanum Z"]]},{"id":"NCBITaxon:410359","l":"Pyrobaculum calidifontis (strain DSM 21063 / JCM 11548 / VA1)","na":1,"nb":2,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A181486","Pyrobaculum calidifontis"],["NCBITaxon%3A410359","Pyrobaculum calidifontis JCM 11548"]]},{"id":"NCBITaxon:411154","l":"Christiangramia forsetii KT0803","na":1,"nb":2,"a":[["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A411153","Christiangramia forsetii"],["NCBITaxon%3A411154","Christiangramia forsetii KT0803"]]},{"id":"NCBITaxon:411466","l":"Schaalia dentiphila ATCC 17982","na":1,"nb":2,"a":[["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["NCBITaxon%3A411466","Schaalia dentiphila ATCC 17982"],["NCBITaxon%3A1660","Schaalia odontolytica"]]},{"id":"NCBITaxon:411474","l":"Coprococcus eutactus ATCC 27759","na":1,"nb":2,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A33043","Coprococcus eutactus"],["NCBITaxon%3A411474","Coprococcus eutactus ATCC 27759"]]},{"id":"NCBITaxon:411479","l":"Bacteroides uniformis ATCC 8492","na":1,"nb":2,"a":[["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["NCBITaxon%3A820","Bacteroides uniformis"],["NCBITaxon%3A411479","Bacteroides uniformis ATCC 8492"]]},{"id":"NCBITaxon:411684","l":"Hoeflea phototrophica DFL-43","na":1,"nb":2,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["NCBITaxon%3A411684","Hoeflea phototrophica DFL-43"],["NCBITaxon%3A244596","Parahoeflea phototrophica"]]},{"id":"NCBITaxon:41211","l":"Desulfotomaculum sp.","na":2,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A41211","Desulfotomaculum sp."]]},{"id":"NCBITaxon:41276","l":"Brevundimonas vesicularis","na":1,"nb":2,"a":[["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A41276","Brevundimonas vesicularis"],["NCBITaxon%3A1349759","Brevundimonas vesicularis NBRC 12165"]]},{"id":"NCBITaxon:412965","l":"Candidatus Vesicomyidisocius calyptogenae","na":2,"nb":1,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"],["gill-bto-0000518.html","gill"]],"b":[["NCBITaxon%3A412965","Candidatus Vesicomyidisocius calyptogenae"]]},{"id":"NCBITaxon:413712","l":"Sphingomonas pseudosanguinis","na":2,"nb":1,"a":[["air-envo-00002005.html","air"],["air-conditioning-unit-envo-00002874.html","air conditioning unit"]],"b":[["NCBITaxon%3A413712","Sphingomonas pseudosanguinis"]]},{"id":"NCBITaxon:41431","l":"Rippkaea orientalis PCC 8801","na":2,"nb":1,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["NCBITaxon%3A41431","Rippkaea orientalis PCC 8801"]]},{"id":"NCBITaxon:415015","l":"Proteiniborus ethanoligenes","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A415015","Proteiniborus ethanoligenes"],["NCBITaxon%3A1123007","Proteiniborus ethanoligenes DSM 21650"]]},{"id":"NCBITaxon:415229","l":"Pseudoxanthomonas spadix","na":1,"nb":2,"a":[["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A415229","Pseudoxanthomonas spadix"],["NCBITaxon%3A1045855","Pseudoxanthomonas spadix BD-a59"]]},{"id":"NCBITaxon:419665","l":"Methanococcus aeolicus (strain ATCC BAA-1280 / DSM 17508 / OCM 812 / Nankai-3)","na":1,"nb":2,"a":[["shoreline-envo-00000486.html","shoreline"]],"b":[["NCBITaxon%3A42879","Methanococcus aeolicus"],["NCBITaxon%3A419665","Methanococcus aeolicus Nankai-3"]]},{"id":"NCBITaxon:41977","l":"Parazoarcus communis","na":1,"nb":2,"a":[["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A41977","Parazoarcus communis"],["NCBITaxon%3A1121029","Parazoarcus communis SWub3 = DSM 12120"]]},{"id":"NCBITaxon:41986","l":"Agromyces mediolanus","na":1,"nb":2,"a":[["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["NCBITaxon%3A41986","Agromyces mediolanus"],["NCBITaxon%3A1303686","Agromyces mediolanus JCM 9631"]]},{"id":"NCBITaxon:419942","l":"Saccharolobus islandicus Y.N.15.51","na":2,"nb":1,"a":[["geyser-envo-00000050.html","geyser"],["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A419942","Saccharolobus islandicus Y.N.15.51"]]},{"id":"NCBITaxon:419947","l":"Mycobacterium tuberculosis (strain ATCC 25177 / H37Ra)","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A419947","Mycobacterium tuberculosis H37Ra"]]},{"id":"NCBITaxon:420247","l":"","na":1,"nb":2,"a":[["gut-mucosa-bto-0000546.html","gut mucosa"]],"b":[["NCBITaxon%3A2173","Methanobrevibacter smithii"],["NCBITaxon%3A420247","Methanobrevibacter smithii ATCC 35061"]]},{"id":"NCBITaxon:420404","l":"Epilithonimonas hominis","na":2,"nb":1,"a":[["kidney-bto-0000671.html","kidney"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["NCBITaxon%3A420404","Epilithonimonas hominis"]]},{"id":"NCBITaxon:42252","l":"Nitratidesulfovibrio termitidis","na":1,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A42252","Nitratidesulfovibrio termitidis"],["NCBITaxon%3A644897","Nitratidesulfovibrio termitidis HI1"]]},{"id":"NCBITaxon:423350","l":"Mucilaginibacter gracilis","na":2,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A423350","Mucilaginibacter gracilis"]]},{"id":"NCBITaxon:423351","l":"Mucilaginibacter paludis","na":1,"nb":2,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A423351","Mucilaginibacter paludis"],["NCBITaxon%3A714943","Mucilaginibacter paludis DSM 18603"]]},{"id":"NCBITaxon:42353","l":"Nitrosomonas sp.","na":2,"nb":1,"a":[["anaerobic-sludge-blanket-reactor-envo-00002213.html","anaerobic sludge blanket reactor"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A42353","Nitrosomonas sp."]]},{"id":"NCBITaxon:425067","l":"Burkholderia pseudomallei 305","na":2,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A425067","Burkholderia pseudomallei 305"]]},{"id":"NCBITaxon:425104","l":"","na":1,"nb":2,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A271097","Shewanella sediminis"],["NCBITaxon%3A425104","Shewanella sediminis HAW-EB3"]]},{"id":"NCBITaxon:426355","l":"Methylobacterium radiotolerans JCM 2831","na":1,"nb":2,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["NCBITaxon%3A31998","Methylobacterium radiotolerans"],["NCBITaxon%3A426355","Methylobacterium radiotolerans JCM 2831"]]},{"id":"NCBITaxon:43","l":"Cystobacter fuscus","na":1,"nb":2,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"]],"b":[["NCBITaxon%3A43","Cystobacter fuscus"],["NCBITaxon%3A1242864","Cystobacter fuscus DSM 2262"]]},{"id":"NCBITaxon:43131","l":"Tissierella praeacuta","na":1,"nb":2,"a":[["village-biome-envo-01000246.html","village biome"]],"b":[["NCBITaxon%3A43131","Tissierella praeacuta"],["NCBITaxon%3A1123404","Tissierella praeacuta DSM 18095"]]},{"id":"NCBITaxon:431489","l":"Demequina lutea","na":2,"nb":1,"a":[["permafrost-envo-00000134.html","permafrost"],["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A431489","Demequina lutea"]]},{"id":"NCBITaxon:431943","l":"Clostridium kluyveri DSM 555","na":1,"nb":2,"a":[["desert-sand-envo-00005800.html","desert sand"]],"b":[["NCBITaxon%3A1534","Clostridium kluyveri"],["NCBITaxon%3A431943","Clostridium kluyveri DSM 555"]]},{"id":"NCBITaxon:435805","l":"Flavobacterium sp. '80m A1 isolate-4'","na":2,"nb":1,"a":[["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"]],"b":[["NCBITaxon%3A435805","Flavobacterium sp. '80m A1 isolate-4'"]]},{"id":"NCBITaxon:436115","l":"Burkholderia mallei PRL-20","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A436115","Burkholderia mallei PRL-20"]]},{"id":"NCBITaxon:436308","l":"Nitrosopumilus maritimus SCM1","na":1,"nb":2,"a":[["aquarium-envo-00002196.html","aquarium"]],"b":[["NCBITaxon%3A338192","Nitrosopumilus maritimus"],["NCBITaxon%3A436308","Nitrosopumilus maritimus SCM1"]]},{"id":"NCBITaxon:436717","l":"Acinetobacter oleivorans DR1","na":1,"nb":2,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A1148157","Acinetobacter oleivorans"],["NCBITaxon%3A436717","Acinetobacter oleivorans DR1"]]},{"id":"NCBITaxon:43677","l":"Promicromonospora citrea","na":1,"nb":2,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A2126556","Flavobacterium artemisiae"],["NCBITaxon%3A43677","Promicromonospora citrea"]]},{"id":"NCBITaxon:43769","l":"Corynebacterium propinquum","na":1,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A43769","Corynebacterium propinquum"],["NCBITaxon%3A1121367","Corynebacterium propinquum DSM 44285"]]},{"id":"NCBITaxon:439292","l":"Bacillus selenitireducens (strain ATCC 700615 / DSM 15326 / MLS10)","na":1,"nb":2,"a":[["anaerobic-mud-envo-00002133.html","anaerobic mud"]],"b":[["NCBITaxon%3A439292","[Bacillus] selenitireducens MLS10"],["NCBITaxon%3A85683","Salisediminibacterium selenitireducens"]]},{"id":"NCBITaxon:439612","l":"","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A439612","Daeguia caeni"],["NCBITaxon%3A2665146","Thauera sinica"]]},{"id":"NCBITaxon:440085","l":"Methylorubrum extorquens CM4","na":1,"nb":2,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A408","Methylorubrum extorquens"],["NCBITaxon%3A440085","Methylorubrum extorquens CM4"]]},{"id":"NCBITaxon:441156","l":"Burkholderia pseudomallei 7894","na":2,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A441156","Burkholderia pseudomallei 7894"]]},{"id":"NCBITaxon:441165","l":"Burkholderia thailandensis TXDOH","na":2,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A441165","Burkholderia thailandensis TXDOH"]]},{"id":"NCBITaxon:441620","l":"Methylorubrum populi BJ001","na":1,"nb":2,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A223967","Methylorubrum populi"],["NCBITaxon%3A441620","Methylorubrum populi BJ001"]]},{"id":"NCBITaxon:442956","l":"Thermococcus sp. HJ21","na":2,"nb":1,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A442956","Thermococcus sp. HJ21"]]},{"id":"NCBITaxon:443906","l":"Clavibacter michiganensis subsp. michiganensis NCPPB 382","na":2,"nb":1,"a":[["xylem-bto-0001468.html","xylem"],["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A443906","Clavibacter michiganensis subsp. michiganensis NCPPB 382"]]},{"id":"NCBITaxon:444103","l":"Streptomyces sp. CNQ-509","na":2,"nb":1,"a":[["colonic-cancer-cell-bto-0000586.html","colonic cancer cell"],["vas-efferens-bto-0002254.html","vas efferens"]],"b":[["NCBITaxon%3A444103","Streptomyces sp. CNQ-509"]]},{"id":"NCBITaxon:445220","l":"Reyranella massiliensis","na":1,"nb":2,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A445220","Reyranella massiliensis"],["NCBITaxon%3A1205680","Reyranella massiliensis 521"]]},{"id":"NCBITaxon:445932","l":"Elusimicrobium minutum Pei191","na":1,"nb":2,"a":[["hindgut-bto-0000510.html","hindgut"]],"b":[["NCBITaxon%3A423605","Elusimicrobium minutum"],["NCBITaxon%3A445932","Elusimicrobium minutum Pei191"]]},{"id":"NCBITaxon:446469","l":"Sanguibacter keddieii DSM 10542","na":1,"nb":2,"a":[["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A60920","Sanguibacter keddieii"],["NCBITaxon%3A446469","Sanguibacter keddieii DSM 10542"]]},{"id":"NCBITaxon:446470","l":"Stackebrandtia nassauensis DSM 44728","na":1,"nb":2,"a":[["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["NCBITaxon%3A283811","Stackebrandtia nassauensis"],["NCBITaxon%3A446470","Stackebrandtia nassauensis DSM 44728"]]},{"id":"NCBITaxon:44751","l":"Exiguobacterium sp.","na":2,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A44751","Exiguobacterium sp."]]},{"id":"NCBITaxon:447595","l":"Caldanaerovirga acetigignens","na":1,"nb":2,"a":[["rocky-desert-envo-00000173.html","rocky desert"]],"b":[["NCBITaxon%3A447595","Caldanaerovirga acetigignens"],["NCBITaxon%3A1121258","Caldanaerovirga acetigignens DSM 18802"]]},{"id":"NCBITaxon:448385","l":"","na":1,"nb":2,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A56","Sorangium cellulosum"],["NCBITaxon%3A448385","Sorangium cellulosum So ce56"]]},{"id":"NCBITaxon:449306","l":"Desulfobulbus sp. DSM 2033","na":2,"nb":1,"a":[["black-smoker-envo-00000218.html","black smoker"],["volcanic-rock-envo-00002015.html","volcanic rock"]],"b":[["NCBITaxon%3A449306","Desulfobulbus sp. DSM 2033"]]},{"id":"NCBITaxon:449673","l":"Bacteroides stercoris ATCC 43183","na":1,"nb":2,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["NCBITaxon%3A46506","Bacteroides stercoris"],["NCBITaxon%3A449673","Bacteroides stercoris ATCC 43183"]]},{"id":"NCBITaxon:451640","l":"Catenibacterium mitsuokai DSM 15897","na":1,"nb":2,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["NCBITaxon%3A100886","Catenibacterium mitsuokai"],["NCBITaxon%3A451640","Catenibacterium mitsuokai DSM 15897"]]},{"id":"NCBITaxon:451754","l":"Clostridium perfringens B str. ATCC 3626","na":1,"nb":2,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["NCBITaxon%3A1502","Clostridium perfringens"],["NCBITaxon%3A451754","Clostridium perfringens B str. ATCC 3626"]]},{"id":"NCBITaxon:45248","l":"Leucothrix mucor","na":1,"nb":2,"a":[["epibiont-habitatmech-bacdive-f4eb470a03.html","Epibiont"]],"b":[["NCBITaxon%3A45248","Leucothrix mucor"],["NCBITaxon%3A998674","Leucothrix mucor DSM 2157"]]},{"id":"NCBITaxon:452637","l":"","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A107709","Opitutus terrae"],["NCBITaxon%3A452637","Opitutus terrae PB90-1"]]},{"id":"NCBITaxon:452638","l":"Polynucleobacter necessarius STIR1","na":2,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A452638","Polynucleobacter necessarius STIR1"]]},{"id":"NCBITaxon:452652","l":"Kitasatospora setae KM-6054","na":1,"nb":2,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A2066","Kitasatospora setae"],["NCBITaxon%3A452652","Kitasatospora setae KM-6054"]]},{"id":"NCBITaxon:452662","l":"Sphingobium indicum UT26S","na":1,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["NCBITaxon%3A332055","Sphingobium indicum"],["NCBITaxon%3A452662","Sphingobium indicum UT26S"]]},{"id":"NCBITaxon:452863","l":"Pseudarthrobacter chlorophenolicus (strain ATCC 700700 / DSM 12829 / CIP 107037 / JCM 12360 / KCTC 9906 / NCIMB 13794 / A6)","na":1,"nb":2,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A85085","Pseudarthrobacter chlorophenolicus"],["NCBITaxon%3A452863","Pseudarthrobacter chlorophenolicus A6"]]},{"id":"NCBITaxon:453","l":"Legionella feeleii","na":1,"nb":2,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A453","Legionella feeleii"],["NCBITaxon%3A66975","Legionella feeleii serogroup 2"]]},{"id":"NCBITaxon:455488","l":"Anaeromyxobacter dehalogenans 2CP-1","na":1,"nb":2,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A161493","Anaeromyxobacter dehalogenans"],["NCBITaxon%3A455488","Anaeromyxobacter dehalogenans 2CP-1"]]},{"id":"NCBITaxon:455632","l":"Streptomyces griseus subsp. griseus NBRC 13350","na":1,"nb":2,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A1896","Streptomyces bikiniensis"],["NCBITaxon%3A455632","Streptomyces griseus subsp. griseus NBRC 13350"]]},{"id":"NCBITaxon:456299","l":"Chryseobacterium gregarium","na":1,"nb":2,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A456299","Chryseobacterium gregarium"],["NCBITaxon%3A1121287","Chryseobacterium gregarium DSM 19109"]]},{"id":"NCBITaxon:457412","l":"Ruminococcus sp. 5_1_39BFAA","na":2,"nb":1,"a":[["animal-litter-envo-00002191.html","animal litter"],["tropical-envo-01000204.html","tropical"]],"b":[["NCBITaxon%3A457412","Ruminococcus sp. 5_1_39BFAA"]]},{"id":"NCBITaxon:457416","l":"Veillonella sp. 3_1_44","na":2,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"],["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"]],"b":[["NCBITaxon%3A457416","Veillonella sp. 3_1_44"]]},{"id":"NCBITaxon:457424","l":"Bacteroides fragilis 3_1_12","na":2,"nb":1,"a":[["bay-envo-00000032.html","bay"],["saline-water-envo-00002010.html","saline water"]],"b":[["NCBITaxon%3A457424","Bacteroides fragilis 3_1_12"]]},{"id":"NCBITaxon:457431","l":"Streptomyces filamentosus NRRL 15998","na":2,"nb":1,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A457431","Streptomyces filamentosus NRRL 15998"]]},{"id":"NCBITaxon:457570","l":"Natranaerobius thermophilus JW/NM-WN-LF","na":1,"nb":2,"a":[["wadi-envo-00000031.html","wadi"]],"b":[["NCBITaxon%3A375929","Natranaerobius thermophilus"],["NCBITaxon%3A457570","Natranaerobius thermophilus JW/NM-WN-LF"]]},{"id":"NCBITaxon:459529","l":"Sphingobacterium siyangense","na":1,"nb":2,"a":[["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["NCBITaxon%3A459529","Sphingobacterium siyangense"],["NCBITaxon%3A634159","Sphingobacterium siyangense subsp. cladoniae"]]},{"id":"NCBITaxon:460265","l":"Methylobacterium nodulans ORS 2060","na":1,"nb":2,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["NCBITaxon%3A114616","Methylobacterium nodulans"],["NCBITaxon%3A460265","Methylobacterium nodulans ORS 2060"]]},{"id":"NCBITaxon:463191","l":"Streptomyces sviceus ATCC 29083","na":1,"nb":2,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A463191","Streptomyces sviceus ATCC 29083"]]},{"id":"NCBITaxon:465817","l":"Erwinia tasmaniensis Et1/99","na":1,"nb":2,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A338565","Erwinia tasmaniensis"],["NCBITaxon%3A465817","Erwinia tasmaniensis Et1/99"]]},{"id":"NCBITaxon:46609","l":"Clostridium pascui","na":2,"nb":1,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A46609","Clostridium pascui"]]},{"id":"NCBITaxon:466153","l":"Singulisphaera acidiphila","na":1,"nb":2,"a":[["marsh-envo-00000035.html","marsh"]],"b":[["NCBITaxon%3A466153","Singulisphaera acidiphila"],["NCBITaxon%3A886293","Singulisphaera acidiphila DSM 18658"]]},{"id":"NCBITaxon:467705","l":"Streptococcus gordonii (strain Challis / ATCC 35105 / BCRC 15272 / CH1 / DL1 / V288)","na":2,"nb":1,"a":[["dental-plaque-bto-0000338.html","dental plaque"],["tooth-bto-0000397.html","tooth"]],"b":[["NCBITaxon%3A467705","Streptococcus gordonii str. Challis substr. CH1"]]},{"id":"NCBITaxon:468911","l":"Liquorilactobacillus hordei","na":1,"nb":2,"a":[["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A468911","Liquorilactobacillus hordei"],["NCBITaxon%3A1423759","Liquorilactobacillus hordei DSM 19519"]]},{"id":"NCBITaxon:469381","l":"Dethiosulfovibrio peptidovorans DSM 11002","na":1,"nb":2,"a":[["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A47055","Dethiosulfovibrio peptidovorans"],["NCBITaxon%3A469381","Dethiosulfovibrio peptidovorans DSM 11002"]]},{"id":"NCBITaxon:469547","l":"Aquamicrobium segne","na":1,"nb":2,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"]],"b":[["NCBITaxon%3A469547","Aquamicrobium segne"],["NCBITaxon%3A66876","Streptomyces chattanoogensis"]]},{"id":"NCBITaxon:470864","l":"Gracilibacillus halophilus","na":1,"nb":2,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A470864","Gracilibacillus halophilus"],["NCBITaxon%3A1308866","Gracilibacillus halophilus YIM-C55.5"]]},{"id":"NCBITaxon:470866","l":"Salinimicrobium terrae","na":1,"nb":2,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A470866","Salinimicrobium terrae"],["NCBITaxon%3A1123234","Salinimicrobium terrae DSM 17865"]]},{"id":"NCBITaxon:471855","l":"Slackia heliotrinireducens DSM 20476","na":1,"nb":2,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["NCBITaxon%3A84110","Slackia heliotrinireducens"],["NCBITaxon%3A471855","Slackia heliotrinireducens DSM 20476"]]},{"id":"NCBITaxon:471875","l":"[Ruminococcus] lactaris ATCC 29176","na":1,"nb":2,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A46228","[Ruminococcus] lactaris"],["NCBITaxon%3A471875","[Ruminococcus] lactaris ATCC 29176"]]},{"id":"NCBITaxon:474950","l":"Granulicella pectinivorans","na":2,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A474950","Granulicella pectinivorans"]]},{"id":"NCBITaxon:474952","l":"Granulicella rosea","na":2,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A474952","Granulicella rosea"]]},{"id":"NCBITaxon:475253","l":"Pedobacter alluvionis","na":2,"nb":1,"a":[["watercourse-envo-00000029.html","watercourse"],["flood-plain-envo-00000255.html","flood plain"]],"b":[["NCBITaxon%3A475253","Pedobacter alluvionis"]]},{"id":"NCBITaxon:477666","l":"Bacteroides graminisolvens","na":1,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A477666","Bacteroides graminisolvens"],["NCBITaxon%3A1121097","Bacteroides graminisolvens DSM 19988 = JCM 15093"]]},{"id":"NCBITaxon:478","l":"Moraxella nonliquefaciens","na":1,"nb":2,"a":[["disease-habitatmech-bacdive-c659c7e939.html","Disease"]],"b":[["NCBITaxon%3A478","Moraxella nonliquefaciens"],["NCBITaxon%3A1441929","Moraxella nonliquefaciens DSM 6327"]]},{"id":"NCBITaxon:479430","l":"Actinospica robiniae DSM 44927","na":1,"nb":2,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A304901","Actinospica robiniae"],["NCBITaxon%3A479430","Actinospica robiniae DSM 44927"]]},{"id":"NCBITaxon:47958","l":"Methylorubrum thiocyanatum","na":1,"nb":2,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A47958","Methylorubrum thiocyanatum"],["NCBITaxon%3A1236972","Methylorubrum thiocyanatum JCM 10893"]]},{"id":"NCBITaxon:480418","l":"Mycobacterium lepromatosis","na":2,"nb":1,"a":[["peripheral-nervous-system-bto-0001028.html","peripheral nervous system"],["schwann-cell-bto-0001220.html","Schwann cell"]],"b":[["NCBITaxon%3A480418","Mycobacterium lepromatosis"]]},{"id":"NCBITaxon:481138","l":"Bartonella queenslandensis","na":1,"nb":2,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["NCBITaxon%3A481138","Bartonella queenslandensis"],["NCBITaxon%3A1221525","Bartonella queenslandensis AUST/NH15"]]},{"id":"NCBITaxon:481139","l":"Bartonella rattaustraliani","na":1,"nb":2,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["NCBITaxon%3A481139","Bartonella rattaustraliani"],["NCBITaxon%3A1205681","Bartonella rattaustraliani AUST/NH4"]]},{"id":"NCBITaxon:484019","l":"","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A2421","Thermosipho africanus"],["NCBITaxon%3A484019","Thermosipho africanus TCF52B"]]},{"id":"NCBITaxon:485371","l":"Bacillus sp. FSL_h8473","na":2,"nb":1,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A485371","Bacillus sp. FSL_h8473"]]},{"id":"NCBITaxon:485913","l":"Ktedonobacter racemifer DSM 44963","na":1,"nb":2,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"]],"b":[["NCBITaxon%3A363277","Ktedonobacter racemifer"],["NCBITaxon%3A485913","Ktedonobacter racemifer DSM 44963"]]},{"id":"NCBITaxon:485916","l":"Desulfofarcimen acetoxidans DSM 771","na":1,"nb":2,"a":[["animal-waste-material-envo-00002276.html","animal waste material"]],"b":[["NCBITaxon%3A58138","Desulfofarcimen acetoxidans"],["NCBITaxon%3A485916","Desulfofarcimen acetoxidans DSM 771"]]},{"id":"NCBITaxon:487796","l":"Flavobacteria bacterium MS024-2A","na":2,"nb":1,"a":[["marine-neritic-zone-envo-00000206.html","marine neritic zone"],["coastal-plain-envo-00000090.html","coastal plain"]],"b":[["NCBITaxon%3A487796","Flavobacteria bacterium MS024-2A"]]},{"id":"NCBITaxon:487797","l":"Flavobacteria bacterium MS024-3C","na":2,"nb":1,"a":[["marine-neritic-zone-envo-00000206.html","marine neritic zone"],["coastal-plain-envo-00000090.html","coastal plain"]],"b":[["NCBITaxon%3A487797","Flavobacteria bacterium MS024-3C"]]},{"id":"NCBITaxon:48935","l":"Novosphingobium aromaticivorans","na":1,"nb":2,"a":[["savanna-envo-00000261.html","savanna"]],"b":[["NCBITaxon%3A48935","Novosphingobium aromaticivorans"],["NCBITaxon%3A279238","Novosphingobium aromaticivorans DSM 12444"]]},{"id":"NCBITaxon:490899","l":"Desulfurococcus amylolyticus 1221n","na":1,"nb":2,"a":[["shoreline-envo-00000486.html","shoreline"]],"b":[["NCBITaxon%3A94694","Desulfurococcus amylolyticus"],["NCBITaxon%3A490899","Desulfurococcus amylolyticus 1221n"]]},{"id":"NCBITaxon:491069","l":"Mesorhizobium sp. F28","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A491069","Mesorhizobium sp. F28"]]},{"id":"NCBITaxon:491952","l":"Marinomonas posidonica IVIA-Po-181","na":1,"nb":2,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["NCBITaxon%3A936476","Marinomonas posidonica"],["NCBITaxon%3A491952","Marinomonas posidonica IVIA-Po-181"]]},{"id":"NCBITaxon:49319","l":"Rubrobacter xylanophilus","na":1,"nb":2,"a":[["village-biome-envo-01000246.html","village biome"]],"b":[["NCBITaxon%3A49319","Rubrobacter xylanophilus"],["NCBITaxon%3A266117","Rubrobacter xylanophilus DSM 9941"]]},{"id":"NCBITaxon:497689","l":"Streptomyces sp. SNA15896","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A497689","Streptomyces sp. SNA15896"]]},{"id":"NCBITaxon:497965","l":"","na":2,"nb":1,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["NCBITaxon%3A497965","Gloeothece verrucosa PCC 7822"]]},{"id":"NCBITaxon:498211","l":"Cellvibrio japonicus (strain Ueda107)","na":1,"nb":2,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A155077","Cellvibrio japonicus"],["NCBITaxon%3A498211","Cellvibrio japonicus Ueda107"]]},{"id":"NCBITaxon:499171","l":"Helicobacter pylori HPKX_438_AG0C1","na":2,"nb":1,"a":[["gastric-epithelium-bto-0000500.html","gastric epithelium"],["gastric-epithelium-cell-line-bto-0004493.html","gastric epithelium cell line"]],"b":[["NCBITaxon%3A499171","Helicobacter pylori HPKX_438_AG0C1"]]},{"id":"NCBITaxon:499172","l":"Helicobacter pylori HPKX_438_CA4C1","na":2,"nb":1,"a":[["gastric-epithelium-bto-0000500.html","gastric epithelium"],["gastric-epithelium-cell-line-bto-0004493.html","gastric epithelium cell line"]],"b":[["NCBITaxon%3A499172","Helicobacter pylori HPKX_438_CA4C1"]]},{"id":"NCBITaxon:500","l":"Thermomicrobium roseum","na":1,"nb":2,"a":[["village-biome-envo-01000246.html","village biome"]],"b":[["NCBITaxon%3A500","Thermomicrobium roseum"],["NCBITaxon%3A309801","Thermomicrobium roseum DSM 5159"]]},{"id":"NCBITaxon:500485","l":"Penicillium rubens Wisconsin 54-1255","na":2,"nb":1,"a":[["finger-bto-0004669.html","finger"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A500485","Penicillium rubens Wisconsin 54-1255"]]},{"id":"NCBITaxon:500632","l":"[Clostridium] nexile DSM 1787","na":1,"nb":2,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["NCBITaxon%3A500632","[Clostridium] nexile DSM 1787"],["NCBITaxon%3A29361","Faecalimonas nexilis"]]},{"id":"NCBITaxon:501023","l":"Glaciibacter superstes","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A501023","Glaciibacter superstes"],["NCBITaxon%3A1121924","Glaciibacter superstes DSM 21135"]]},{"id":"NCBITaxon:50339","l":"Thermoplasma volcanium","na":1,"nb":2,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A50339","Thermoplasma volcanium"],["NCBITaxon%3A273116","Thermoplasma volcanium GSS1"]]},{"id":"NCBITaxon:504474","l":"Corynebacterium urealyticum DSM 7109","na":1,"nb":2,"a":[["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["NCBITaxon%3A43771","Corynebacterium urealyticum"],["NCBITaxon%3A504474","Corynebacterium urealyticum DSM 7109"]]},{"id":"NCBITaxon:508451","l":"Lactobacillus taiwanensis","na":1,"nb":2,"a":[["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["NCBITaxon%3A508451","Lactobacillus taiwanensis"],["NCBITaxon%3A1423809","Lactobacillus taiwanensis DSM 21401"]]},{"id":"NCBITaxon:509190","l":"Caulobacter segnis ATCC 21756","na":1,"nb":2,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A88688","Caulobacter segnis"],["NCBITaxon%3A509190","Caulobacter segnis ATCC 21756"]]},{"id":"NCBITaxon:511680","l":"Eshraghiella crossota DSM 2876","na":1,"nb":2,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A45851","Eshraghiella crossota"],["NCBITaxon%3A511680","Eshraghiella crossota DSM 2876"]]},{"id":"NCBITaxon:51173","l":"Ureibacillus thermosphaericus","na":1,"nb":2,"a":[["landfill-envo-00000533.html","landfill"]],"b":[["NCBITaxon%3A51173","Ureibacillus thermosphaericus"],["NCBITaxon%3A1160707","Ureibacillus thermosphaericus str. Thermo-BF"]]},{"id":"NCBITaxon:515619","l":"Agathobacter rectalis ATCC 33656","na":1,"nb":2,"a":[["gut-epithelium-bto-0000956.html","gut epithelium"]],"b":[["NCBITaxon%3A39491","Agathobacter rectalis"],["NCBITaxon%3A515619","Agathobacter rectalis ATCC 33656"]]},{"id":"NCBITaxon:515620","l":"Lachnospira eligens ATCC 27750","na":1,"nb":2,"a":[["gut-epithelium-bto-0000956.html","gut epithelium"]],"b":[["NCBITaxon%3A39485","Lachnospira eligens"],["NCBITaxon%3A515620","Lachnospira eligens ATCC 27750"]]},{"id":"NCBITaxon:517417","l":"","na":1,"nb":2,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A274539","Chlorobaculum parvum"],["NCBITaxon%3A517417","Chlorobaculum parvum NCIB 8327"]]},{"id":"NCBITaxon:518766","l":"Rhodothermus marinus DSM 4252","na":1,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["NCBITaxon%3A29549","Rhodothermus marinus"],["NCBITaxon%3A518766","Rhodothermus marinus DSM 4252"]]},{"id":"NCBITaxon:519442","l":"Halorhabdus utahensis DSM 12940","na":1,"nb":2,"a":[["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A146826","Halorhabdus utahensis"],["NCBITaxon%3A519442","Halorhabdus utahensis DSM 12940"]]},{"id":"NCBITaxon:520461","l":"Brucella pinnipedialis B2/94","na":1,"nb":2,"a":[["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["NCBITaxon%3A120576","Brucella pinnipedialis"],["NCBITaxon%3A520461","Brucella pinnipedialis B2/94"]]},{"id":"NCBITaxon:520463","l":"Brucella pinnipedialis M163/99/10","na":2,"nb":1,"a":[["lagoon-envo-00000038.html","lagoon"],["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A520463","Brucella pinnipedialis M163/99/10"]]},{"id":"NCBITaxon:520488","l":"Brucella suis bv. 4 str. 40","na":2,"nb":1,"a":[["sea-envo-00000016.html","sea"],["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A520488","Brucella suis bv. 4 str. 40"]]},{"id":"NCBITaxon:521011","l":"Methanosphaerula palustris E1-9c","na":1,"nb":2,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A475088","Methanosphaerula palustris"],["NCBITaxon%3A521011","Methanosphaerula palustris E1-9c"]]},{"id":"NCBITaxon:521095","l":"Lancefieldella parvula DSM 20469","na":1,"nb":2,"a":[["lagoon-envo-00000038.html","lagoon"]],"b":[["NCBITaxon%3A1382","Lancefieldella parvula"],["NCBITaxon%3A521095","Lancefieldella parvula DSM 20469"]]},{"id":"NCBITaxon:522772","l":"Denitrovibrio acetiphilus DSM 12809","na":1,"nb":2,"a":[["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A118000","Denitrovibrio acetiphilus"],["NCBITaxon%3A522772","Denitrovibrio acetiphilus DSM 12809"]]},{"id":"NCBITaxon:523845","l":"Methanothermococcus thermolithotrophicus DSM 2095","na":1,"nb":2,"a":[["beach-envo-00000091.html","beach"]],"b":[["NCBITaxon%3A2186","Methanothermococcus thermolithotrophicus"],["NCBITaxon%3A523845","Methanothermococcus thermolithotrophicus DSM 2095"]]},{"id":"NCBITaxon:523850","l":"Thermococcus onnurineus NA1","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A342948","Thermococcus onnurineus"],["NCBITaxon%3A523850","Thermococcus onnurineus NA1"]]},{"id":"NCBITaxon:525245","l":"Gleimia coleocanis DSM 15436","na":1,"nb":2,"a":[["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A103618","Gleimia coleocanis"],["NCBITaxon%3A525245","Gleimia coleocanis DSM 15436"]]},{"id":"NCBITaxon:525246","l":"Actinomyces urogenitalis DSM 15434","na":1,"nb":2,"a":[["vaginal-fluid-uberon-0036243.html","vaginal fluid"]],"b":[["NCBITaxon%3A103621","Actinomyces urogenitalis"],["NCBITaxon%3A525246","Actinomyces urogenitalis DSM 15434"]]},{"id":"NCBITaxon:525254","l":"Anaerococcus lactolyticus ATCC 51172","na":1,"nb":2,"a":[["vaginal-fluid-uberon-0036243.html","vaginal fluid"]],"b":[["NCBITaxon%3A33032","Anaerococcus lactolyticus"],["NCBITaxon%3A525254","Anaerococcus lactolyticus ATCC 51172"]]},{"id":"NCBITaxon:525264","l":"Corynebacterium pseudogenitalium ATCC 33035","na":1,"nb":2,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A525264","Corynebacterium pseudogenitalium ATCC 33035"],["NCBITaxon%3A38304","Corynebacterium tuberculostearicum"]]},{"id":"NCBITaxon:525367","l":"Listeria grayi DSM 20601","na":1,"nb":2,"a":[["city-envo-00000856.html","city"]],"b":[["NCBITaxon%3A1641","Listeria grayi"],["NCBITaxon%3A525367","Listeria grayi DSM 20601"]]},{"id":"NCBITaxon:525370","l":"Prescottella equi ATCC 33707","na":1,"nb":2,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A43767","Prescottella equi"],["NCBITaxon%3A525370","Prescottella equi ATCC 33707"]]},{"id":"NCBITaxon:525372","l":"Sphingobacterium spiritivorum ATCC 33300","na":1,"nb":2,"a":[["vaginal-fluid-uberon-0036243.html","vaginal fluid"]],"b":[["NCBITaxon%3A258","Sphingobacterium spiritivorum"],["NCBITaxon%3A525372","Sphingobacterium spiritivorum ATCC 33300"]]},{"id":"NCBITaxon:52560","l":"Desulfomicrobium apsheronum","na":2,"nb":1,"a":[["black-smoker-envo-00000218.html","black smoker"],["volcanic-rock-envo-00002015.html","volcanic rock"]],"b":[["NCBITaxon%3A52560","Desulfomicrobium apsheronum"]]},{"id":"NCBITaxon:525898","l":"Sulfurospirillum deleyianum DSM 6946","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A65553","Sulfurospirillum deleyianum"],["NCBITaxon%3A525898","Sulfurospirillum deleyianum DSM 6946"]]},{"id":"NCBITaxon:52598","l":"Sulfitobacter sp. EE-36","na":1,"nb":2,"a":[["pulp-bto-0001142.html","pulp"]],"b":[["NCBITaxon%3A1903071","Sulfitobacter sp."],["NCBITaxon%3A52598","Sulfitobacter sp. EE-36"]]},{"id":"NCBITaxon:526221","l":"Verticillium alfalfae VaMs.102","na":2,"nb":1,"a":[["vascular-system-bto-0001085.html","vascular system"],["xylem-bto-0001468.html","xylem"]],"b":[["NCBITaxon%3A526221","Verticillium alfalfae VaMs.102"]]},{"id":"NCBITaxon:52690","l":"Acetobacterium carbinolicum","na":1,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A52690","Acetobacterium carbinolicum"],["NCBITaxon%3A346376","Acetobacterium carbinolicum subsp. kysingense"]]},{"id":"NCBITaxon:52774","l":"Actinomyces slackii","na":1,"nb":2,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["NCBITaxon%3A52774","Actinomyces slackii"],["NCBITaxon%3A1278298","Actinomyces slackii ATCC 49928"]]},{"id":"NCBITaxon:529086","l":"Chitinilyticum litopenaei DSM 21440","na":1,"nb":2,"a":[["pond-envo-00000033.html","pond"]],"b":[["NCBITaxon%3A1121276","Chitinilyticum litopenaei"],["NCBITaxon%3A529086","Chitinilyticum litopenaei DSM 21440"]]},{"id":"NCBITaxon:529507","l":"","na":2,"nb":1,"a":[["needle-bto-0000917.html","needle"],["spinal-cord-bto-0001279.html","spinal cord"]],"b":[["NCBITaxon%3A529507","Proteus mirabilis HI4320"]]},{"id":"NCBITaxon:53254","l":"Allobosea thiooxidans","na":1,"nb":2,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A132928","Allobosea aff. thiooxidans 1.10"],["NCBITaxon%3A53254","Allobosea thiooxidans"]]},{"id":"NCBITaxon:53344","l":"Staphylococcus delphini","na":1,"nb":2,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"]],"b":[["NCBITaxon%3A53344","Staphylococcus delphini"],["NCBITaxon%3A1141105","Staphylococcus delphini 8086"]]},{"id":"NCBITaxon:53445","l":"","na":1,"nb":2,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A53445","Streptomyces canescens"]]},{"id":"NCBITaxon:53463","l":"Paracoccus solventivorans","na":2,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A53463","Paracoccus solventivorans"]]},{"id":"NCBITaxon:535025","l":"Bacillus subtilis subsp. subtilis str. JH642","na":1,"nb":2,"a":[["archeological-site-envo-00000564.html","archeological site"]],"b":[["NCBITaxon%3A535025","Bacillus subtilis subsp. subtilis str. JH642"],["NCBITaxon%3A1232554","Bacillus subtilis subsp. subtilis str. JH642 substr. AG174"]]},{"id":"NCBITaxon:535289","l":"[Acidovorax] ebreus TPSY","na":2,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A535289","[Acidovorax] ebreus TPSY"]]},{"id":"NCBITaxon:536019","l":"Mesorhizobium opportunistum WSM2075","na":1,"nb":2,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["NCBITaxon%3A593909","Mesorhizobium opportunistum"],["NCBITaxon%3A536019","Mesorhizobium opportunistum WSM2075"]]},{"id":"NCBITaxon:536231","l":"Roseburia intestinalis L1-82","na":1,"nb":2,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["NCBITaxon%3A166486","Roseburia intestinalis"],["NCBITaxon%3A536231","Roseburia intestinalis L1-82"]]},{"id":"NCBITaxon:537013","l":"[Clostridium] methylpentosum DSM 5476","na":1,"nb":2,"a":[["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["NCBITaxon%3A84026","[Clostridium] methylpentosum"],["NCBITaxon%3A537013","[Clostridium] methylpentosum DSM 5476"]]},{"id":"NCBITaxon:537210","l":"Mycobacterium tuberculosis T17","na":2,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A537210","Mycobacterium tuberculosis T17"]]},{"id":"NCBITaxon:54063","l":"Actinopolyspora sp.","na":2,"nb":1,"a":[["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["NCBITaxon%3A54063","Actinopolyspora sp."]]},{"id":"NCBITaxon:54121","l":"Halanaerobium congolense","na":2,"nb":1,"a":[["brine-pool-envo-00000369.html","brine pool"],["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["NCBITaxon%3A54121","Halanaerobium congolense"]]},{"id":"NCBITaxon:543728","l":"Variovorax paradoxus S110","na":2,"nb":1,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"]],"b":[["NCBITaxon%3A543728","Variovorax paradoxus S110"]]},{"id":"NCBITaxon:545534","l":"Carnobacterium jeotgali","na":1,"nb":2,"a":[["food-product-foodon-00001002.html","food product"]],"b":[["NCBITaxon%3A545534","Carnobacterium jeotgali"],["NCBITaxon%3A1449340","Carnobacterium jeotgali MS3"]]},{"id":"NCBITaxon:545696","l":"Holdemania filiformis DSM 12042","na":1,"nb":2,"a":[["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["NCBITaxon%3A61171","Holdemania filiformis"],["NCBITaxon%3A545696","Holdemania filiformis DSM 12042"]]},{"id":"NCBITaxon:547558","l":"Methanohalophilus mahii DSM 5219","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A2176","Methanohalophilus mahii"],["NCBITaxon%3A547558","Methanohalophilus mahii DSM 5219"]]},{"id":"NCBITaxon:548476","l":"Corynebacterium aurimucosum ATCC 700975","na":1,"nb":2,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A169292","Corynebacterium aurimucosum"],["NCBITaxon%3A548476","Corynebacterium aurimucosum ATCC 700975"]]},{"id":"NCBITaxon:548477","l":"Corynebacterium glucuronolyticum ATCC 51867","na":2,"nb":1,"a":[["semen-bto-0001230.html","semen"],["urethra-bto-0001426.html","urethra"]],"b":[["NCBITaxon%3A548477","Corynebacterium glucuronolyticum ATCC 51867"]]},{"id":"NCBITaxon:548579","l":"Isoptericola jiangsuensis","na":2,"nb":1,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A548579","Isoptericola jiangsuensis"]]},{"id":"NCBITaxon:550984","l":"Halomonas sp. HAL1","na":2,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"],["oceanic-sea-surface-microlayer-biome-envo-01000034.html","oceanic sea surface microlayer biome"]],"b":[["NCBITaxon%3A550984","Halomonas sp. HAL1"]]},{"id":"NCBITaxon:551275","l":"Hirschia maritima DSM 19733","na":1,"nb":2,"a":[["beach-envo-00000091.html","beach"]],"b":[["NCBITaxon%3A1121961","Hirschia maritima"],["NCBITaxon%3A551275","Hirschia maritima DSM 19733"]]},{"id":"NCBITaxon:551760","l":"Aromatoleum aromaticum","na":1,"nb":2,"a":[["watercourse-envo-00000029.html","watercourse"]],"b":[["NCBITaxon%3A551760","Aromatoleum aromaticum"],["NCBITaxon%3A76114","Aromatoleum aromaticum EbN1"]]},{"id":"NCBITaxon:551789","l":"Ponticaulis koreensis DSM 19734","na":1,"nb":2,"a":[["beach-envo-00000091.html","beach"]],"b":[["NCBITaxon%3A1123045","Ponticaulis koreensis"],["NCBITaxon%3A551789","Ponticaulis koreensis DSM 19734"]]},{"id":"NCBITaxon:55209","l":"Pantoea cypripedii","na":2,"nb":1,"a":[["leaf-po-0025034.html","leaf"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A55209","Pantoea cypripedii"]]},{"id":"NCBITaxon:553174","l":"Prevotella melaninogenica ATCC 25845","na":1,"nb":2,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A28132","Prevotella melaninogenica"],["NCBITaxon%3A553174","Prevotella melaninogenica ATCC 25845"]]},{"id":"NCBITaxon:553184","l":"Lancefieldella rimae ATCC 49626","na":1,"nb":2,"a":[["gingiva-bto-0000519.html","gingiva"]],"b":[["NCBITaxon%3A1383","Lancefieldella rimae"],["NCBITaxon%3A553184","Lancefieldella rimae ATCC 49626"]]},{"id":"NCBITaxon:555079","l":"Thermosediminibacter oceani DSM 16646","na":1,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A291990","Thermosediminibacter oceani"],["NCBITaxon%3A555079","Thermosediminibacter oceani DSM 16646"]]},{"id":"NCBITaxon:555512","l":"Salipiger marinus","na":1,"nb":2,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["NCBITaxon%3A537017","Kaistia terrae"],["NCBITaxon%3A555512","Salipiger marinus"]]},{"id":"NCBITaxon:555778","l":"","na":1,"nb":2,"a":[["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["NCBITaxon%3A927","Halothiobacillus neapolitanus"],["NCBITaxon%3A555778","Halothiobacillus neapolitanus c2"]]},{"id":"NCBITaxon:556484","l":"","na":2,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["NCBITaxon%3A556484","Phaeodactylum tricornutum CCAP 1055/1"]]},{"id":"NCBITaxon:557599","l":"Mycobacterium kansasii ATCC 12478","na":1,"nb":2,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A1768","Mycobacterium kansasii"],["NCBITaxon%3A557599","Mycobacterium kansasii ATCC 12478"]]},{"id":"NCBITaxon:558173","l":"Corynebacterium doosanense CAU 212 = DSM 45436","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A1121358","Corynebacterium doosanense"],["NCBITaxon%3A558173","Corynebacterium doosanense CAU 212 = DSM 45436"]]},{"id":"NCBITaxon:562970","l":"Kyrpidia tusciae DSM 2912","na":1,"nb":2,"a":[["pond-envo-00000033.html","pond"]],"b":[["NCBITaxon%3A33943","Kyrpidia tusciae"],["NCBITaxon%3A562970","Kyrpidia tusciae DSM 2912"]]},{"id":"NCBITaxon:563043","l":"Thermococcus sp. AMT11","na":2,"nb":1,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A563043","Thermococcus sp. AMT11"]]},{"id":"NCBITaxon:564423","l":"Pseudomonas tolaasii NCPPB 2192","na":1,"nb":2,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A29442","Pseudomonas tolaasii"],["NCBITaxon%3A564423","Pseudomonas tolaasii NCPPB 2192"]]},{"id":"NCBITaxon:56636","l":"Aeropyrum pernix","na":1,"nb":2,"a":[["fumarole-envo-00000216.html","fumarole"]],"b":[["NCBITaxon%3A56636","Aeropyrum pernix"],["NCBITaxon%3A272557","Aeropyrum pernix K1"]]},{"id":"NCBITaxon:566549","l":"Corynebacterium matruchotii ATCC 33806","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A43768","Corynebacterium matruchotii"],["NCBITaxon%3A566549","Corynebacterium matruchotii ATCC 33806"]]},{"id":"NCBITaxon:56698","l":"Sulfurospirillum arsenophilum","na":1,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A56698","Sulfurospirillum arsenophilum"],["NCBITaxon%3A1349789","Sulfurospirillum arsenophilum NBRC 109478"]]},{"id":"NCBITaxon:568106","l":"Marinobacterium lutimaris","na":1,"nb":2,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["NCBITaxon%3A568106","Marinobacterium lutimaris"],["NCBITaxon%3A657014","Thalassovita taeanensis"]]},{"id":"NCBITaxon:56811","l":"Psychrobacter sp.","na":2,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["NCBITaxon%3A56811","Psychrobacter sp."]]},{"id":"NCBITaxon:569859","l":"Desulfosporosinus hippei","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A569859","Desulfosporosinus hippei"],["NCBITaxon%3A1121419","Desulfosporosinus hippei DSM 8344"]]},{"id":"NCBITaxon:570268","l":"Nocardiopsis potens DSM 45234","na":1,"nb":2,"a":[["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"]],"b":[["NCBITaxon%3A1246458","Nocardiopsis potens"],["NCBITaxon%3A570268","Nocardiopsis potens DSM 45234"]]},{"id":"NCBITaxon:57043","l":"Microbacterium esteraromaticum","na":2,"nb":1,"a":[["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"]],"b":[["NCBITaxon%3A57043","Microbacterium esteraromaticum"]]},{"id":"NCBITaxon:572477","l":"Allochromatium vinosum (strain ATCC 17899 / DSM 180 / NBRC 103801 / NCIMB 10441 / D)","na":1,"nb":2,"a":[["ditch-water-envo-00002158.html","ditch water"]],"b":[["NCBITaxon%3A1049","Allochromatium vinosum"],["NCBITaxon%3A572477","Allochromatium vinosum DSM 180"]]},{"id":"NCBITaxon:572547","l":"Aminobacterium colombiense DSM 12261","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A81468","Aminobacterium colombiense"],["NCBITaxon%3A572547","Aminobacterium colombiense DSM 12261"]]},{"id":"NCBITaxon:573063","l":"Methanocaldococcus infernus ME","na":1,"nb":2,"a":[["shoreline-envo-00000486.html","shoreline"]],"b":[["NCBITaxon%3A67760","Methanocaldococcus infernus"],["NCBITaxon%3A573063","Methanocaldococcus infernus ME"]]},{"id":"NCBITaxon:573065","l":"Asticcacaulis excentricus CB 48","na":1,"nb":2,"a":[["pond-envo-00000033.html","pond"]],"b":[["NCBITaxon%3A78587","Asticcacaulis excentricus"],["NCBITaxon%3A573065","Asticcacaulis excentricus CB 48"]]},{"id":"NCBITaxon:573413","l":"Sediminispirochaeta smaragdinae DSM 11293","na":1,"nb":2,"a":[["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A55206","Sediminispirochaeta smaragdinae"],["NCBITaxon%3A573413","Sediminispirochaeta smaragdinae DSM 11293"]]},{"id":"NCBITaxon:573983","l":"Moraxella porci DSM 25326","na":1,"nb":2,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["NCBITaxon%3A1288392","Moraxella porci"],["NCBITaxon%3A573983","Moraxella porci DSM 25326"]]},{"id":"NCBITaxon:575564","l":"Acinetobacter sp. RUH 2624","na":1,"nb":2,"a":[["thigh-bto-0001376.html","thigh"]],"b":[["NCBITaxon%3A106654","Acinetobacter nosocomialis"],["NCBITaxon%3A575564","Acinetobacter sp. RUH 2624"]]},{"id":"NCBITaxon:575585","l":"Acinetobacter calcoaceticus RUH2202","na":1,"nb":2,"a":[["thigh-bto-0001376.html","thigh"]],"b":[["NCBITaxon%3A471","Acinetobacter calcoaceticus"],["NCBITaxon%3A575585","Acinetobacter calcoaceticus RUH2202"]]},{"id":"NCBITaxon:575586","l":"Acinetobacter johnsonii SH046","na":1,"nb":2,"a":[["thigh-bto-0001376.html","thigh"]],"b":[["NCBITaxon%3A40214","Acinetobacter johnsonii"],["NCBITaxon%3A575586","Acinetobacter johnsonii SH046"]]},{"id":"NCBITaxon:575587","l":"Acinetobacter junii SH205","na":1,"nb":2,"a":[["thigh-bto-0001376.html","thigh"]],"b":[["NCBITaxon%3A40215","Acinetobacter junii"],["NCBITaxon%3A575587","Acinetobacter junii SH205"]]},{"id":"NCBITaxon:575588","l":"Acinetobacter lwoffii SH145","na":1,"nb":2,"a":[["thigh-bto-0001376.html","thigh"]],"b":[["NCBITaxon%3A28090","Acinetobacter lwoffii"],["NCBITaxon%3A575588","Acinetobacter lwoffii SH145"]]},{"id":"NCBITaxon:575589","l":"Acinetobacter radioresistens SH164","na":1,"nb":2,"a":[["thigh-bto-0001376.html","thigh"]],"b":[["NCBITaxon%3A40216","Acinetobacter radioresistens"],["NCBITaxon%3A575589","Acinetobacter radioresistens SH164"]]},{"id":"NCBITaxon:579922","l":"Indibacter alkaliphilus","na":1,"nb":2,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A579922","Indibacter alkaliphilus"],["NCBITaxon%3A1189612","Indibacter alkaliphilus LW1"]]},{"id":"NCBITaxon:582855","l":"Streptomyces haliclonae","na":1,"nb":2,"a":[["shoreline-envo-00000486.html","shoreline"]],"b":[["NCBITaxon%3A582855","Streptomyces haliclonae"],["NCBITaxon%3A582854","Streptomyces marinus"]]},{"id":"NCBITaxon:58314","l":"Rhodovulum strictum","na":2,"nb":1,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A58314","Rhodovulum strictum"]]},{"id":"NCBITaxon:583345","l":"Methylotenera mobilis JLW8","na":1,"nb":2,"a":[["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A359408","Methylotenera mobilis"],["NCBITaxon%3A583345","Methylotenera mobilis JLW8"]]},{"id":"NCBITaxon:584708","l":"Aminomonas paucivorans DSM 12260","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A81412","Aminomonas paucivorans"],["NCBITaxon%3A584708","Aminomonas paucivorans DSM 12260"]]},{"id":"NCBITaxon:585054","l":"Escherichia fergusonii ATCC 35469","na":1,"nb":2,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A564","Escherichia fergusonii"],["NCBITaxon%3A585054","Escherichia fergusonii ATCC 35469"]]},{"id":"NCBITaxon:5851","l":"Plasmodium knowlesi strain H","na":2,"nb":1,"a":[["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["hypnozoite-bto-0003594.html","hypnozoite"]],"b":[["NCBITaxon%3A5851","Plasmodium knowlesi strain H"]]},{"id":"NCBITaxon:585501","l":"Oribacterium sinus F0268","na":2,"nb":1,"a":[["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"]],"b":[["NCBITaxon%3A585501","Oribacterium sinus F0268"]]},{"id":"NCBITaxon:585528","l":"Gardnerella vaginalis ATCC 14018 = JCM 11026","na":1,"nb":2,"a":[["vaginal-fluid-uberon-0036243.html","vaginal fluid"]],"b":[["NCBITaxon%3A2702","Gardnerella vaginalis"],["NCBITaxon%3A585528","Gardnerella vaginalis ATCC 14018 = JCM 11026"]]},{"id":"NCBITaxon:585531","l":"Aeromicrobium marinum DSM 15272","na":1,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A219314","Aeromicrobium marinum"],["NCBITaxon%3A585531","Aeromicrobium marinum DSM 15272"]]},{"id":"NCBITaxon:58621","l":"Desulfovibrio intestinalis","na":1,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A58621","Desulfovibrio intestinalis"],["NCBITaxon%3A1121454","Desulfovibrio intestinalis DSM 11275"]]},{"id":"NCBITaxon:588067","l":"Prauserella muralis","na":2,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"],["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A588067","Prauserella muralis"]]},{"id":"NCBITaxon:588857","l":"Thermoanaerobacter sp. X561","na":2,"nb":1,"a":[["ocean-trench-envo-00000275.html","ocean trench"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A588857","Thermoanaerobacter sp. X561"]]},{"id":"NCBITaxon:589924","l":"Ferroglobus placidus DSM 10642","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A54261","Ferroglobus placidus"],["NCBITaxon%3A589924","Ferroglobus placidus DSM 10642"]]},{"id":"NCBITaxon:592015","l":"Acetomicrobium hydrogeniformans ATCC BAA-1850","na":1,"nb":2,"a":[["village-biome-envo-01000246.html","village biome"]],"b":[["NCBITaxon%3A649746","Acetomicrobium hydrogeniformans"],["NCBITaxon%3A592015","Acetomicrobium hydrogeniformans ATCC BAA-1850"]]},{"id":"NCBITaxon:592031","l":"Eubacterium saphenum ATCC 49989","na":1,"nb":2,"a":[["archeological-site-envo-00000564.html","archeological site"]],"b":[["NCBITaxon%3A51123","[Eubacterium] saphenum"],["NCBITaxon%3A592031","Eubacterium saphenum ATCC 49989"]]},{"id":"NCBITaxon:592205","l":"Helicobacter pylori B38","na":2,"nb":1,"a":[["b-lymphocyte-bto-0000776.html","B-lymphocyte"],["duodenum-bto-0000365.html","duodenum"]],"b":[["NCBITaxon%3A592205","Helicobacter pylori B38"]]},{"id":"NCBITaxon:593117","l":"Thermococcus gammatolerans EJ3","na":1,"nb":2,"a":[["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A187878","Thermococcus gammatolerans"],["NCBITaxon%3A593117","Thermococcus gammatolerans EJ3"]]},{"id":"NCBITaxon:594679","l":"Allofrancisella guangzhouensis","na":2,"nb":1,"a":[["air-conditioning-unit-envo-00002874.html","air conditioning unit"],["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A594679","Allofrancisella guangzhouensis"]]},{"id":"NCBITaxon:595453","l":"Rhodopirellula sp. SM50","na":2,"nb":1,"a":[["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"]],"b":[["NCBITaxon%3A595453","Rhodopirellula sp. SM50"]]},{"id":"NCBITaxon:595497","l":"Brucella ceti str. Cudo","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A595497","Brucella ceti str. Cudo"]]},{"id":"NCBITaxon:596153","l":"Alicycliphilus denitrificans BC","na":1,"nb":2,"a":[["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A179636","Alicycliphilus denitrificans"],["NCBITaxon%3A596153","Alicycliphilus denitrificans BC"]]},{"id":"NCBITaxon:59843","l":"Paenibacillus glucanolyticus","na":1,"nb":2,"a":[["pulp-bto-0001142.html","pulp"]],"b":[["NCBITaxon%3A59843","Paenibacillus glucanolyticus"],["NCBITaxon%3A1349777","Paenibacillus glucanolyticus NBRC 15330"]]},{"id":"NCBITaxon:598660","l":"Corynebacterium pyruviciproducens","na":1,"nb":2,"a":[["bone-element-uberon-0001474.html","bone element"]],"b":[["NCBITaxon%3A598660","Corynebacterium pyruviciproducens"],["NCBITaxon%3A1125779","Corynebacterium pyruviciproducens ATCC BAA-1742"]]},{"id":"NCBITaxon:600645","l":"Aeromonas piscicola","na":2,"nb":1,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["NCBITaxon%3A600645","Aeromonas piscicola"]]},{"id":"NCBITaxon:600809","l":"Blattabacterium sp. (Periplaneta americana) str. BPLAN","na":2,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A600809","Blattabacterium sp. (Periplaneta americana) str. BPLAN"]]},{"id":"NCBITaxon:60133","l":"Prevotella pallens","na":1,"nb":2,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["NCBITaxon%3A60133","Prevotella pallens"],["NCBITaxon%3A997353","Prevotella pallens ATCC 700821"]]},{"id":"NCBITaxon:60443","l":"Terrabacter tumescens","na":2,"nb":1,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A60443","Terrabacter tumescens"]]},{"id":"NCBITaxon:60548","l":"Paraburkholderia graminis","na":1,"nb":2,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A60548","Paraburkholderia graminis"],["NCBITaxon%3A396598","Paraburkholderia graminis C4D1M"]]},{"id":"NCBITaxon:60550","l":"Burkholderia pyrrocinia","na":1,"nb":2,"a":[["seedling-bto-0001228.html","seedling"]],"b":[["NCBITaxon%3A60550","Burkholderia pyrrocinia"],["NCBITaxon%3A1212819","Burkholderia pyrrocinia CH-67"]]},{"id":"NCBITaxon:60890","l":"Phaeobacter gallaeciensis","na":1,"nb":2,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A60890","Phaeobacter gallaeciensis"],["NCBITaxon%3A1423144","Phaeobacter gallaeciensis DSM 26640"]]},{"id":"NCBITaxon:60894","l":"Saccharopolyspora spinosa","na":1,"nb":2,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A60894","Saccharopolyspora spinosa"],["NCBITaxon%3A994479","Saccharopolyspora spinosa NRRL 18395"]]},{"id":"NCBITaxon:610130","l":"[Clostridium] saccharolyticum WM1","na":1,"nb":2,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A610130","[Clostridium] saccharolyticum WM1"],["NCBITaxon%3A84030","Lacrimispora saccharolytica"]]},{"id":"NCBITaxon:616997","l":"Hoyosella altamirensis","na":2,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["cave-envo-00000067.html","cave"]],"b":[["NCBITaxon%3A616997","Hoyosella altamirensis"]]},{"id":"NCBITaxon:622312","l":"Roseburia inulinivorans DSM 16841","na":1,"nb":2,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["NCBITaxon%3A360807","Roseburia inulinivorans"],["NCBITaxon%3A622312","Roseburia inulinivorans DSM 16841"]]},{"id":"NCBITaxon:623280","l":"Parapedobacter luteus","na":2,"nb":1,"a":[["sewage-envo-00002018.html","sewage"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["NCBITaxon%3A623280","Parapedobacter luteus"]]},{"id":"NCBITaxon:623281","l":"Parapedobacter composti","na":2,"nb":1,"a":[["sewage-envo-00002018.html","sewage"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["NCBITaxon%3A623281","Parapedobacter composti"]]},{"id":"NCBITaxon:626418","l":"Burkholderia glumae BGR1","na":2,"nb":1,"a":[["panicle-bto-0005436.html","panicle"],["seedling-bto-0001228.html","seedling"]],"b":[["NCBITaxon%3A626418","Burkholderia glumae BGR1"]]},{"id":"NCBITaxon:629741","l":"Kingella oralis ATCC 51147","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A505","Kingella oralis"],["NCBITaxon%3A629741","Kingella oralis ATCC 51147"]]},{"id":"NCBITaxon:630403","l":"Tomitella biformata","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A630403","Tomitella biformata"],["NCBITaxon%3A1448389","Tomitella biformata AHU 1821"]]},{"id":"NCBITaxon:633147","l":"Olsenella uli DSM 7084","na":1,"nb":2,"a":[["crevice-envo-01000294.html","crevice"]],"b":[["NCBITaxon%3A133926","Olsenella uli"],["NCBITaxon%3A633147","Olsenella uli DSM 7084"]]},{"id":"NCBITaxon:633149","l":"Brevundimonas subvibrioides ATCC 15264","na":1,"nb":2,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A74313","Brevundimonas subvibrioides"],["NCBITaxon%3A633149","Brevundimonas subvibrioides ATCC 15264"]]},{"id":"NCBITaxon:634177","l":"Komagataeibacter medellinensis NBRC 3288","na":1,"nb":2,"a":[["mountain-pass-envo-00000084.html","mountain pass"]],"b":[["NCBITaxon%3A1177712","Komagataeibacter medellinensis"],["NCBITaxon%3A634177","Komagataeibacter medellinensis NBRC 3288"]]},{"id":"NCBITaxon:63737","l":"Nostoc punctiforme PCC 73102","na":2,"nb":1,"a":[["heterocyst-bto-0000600.html","heterocyst"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A63737","Nostoc punctiforme PCC 73102"]]},{"id":"NCBITaxon:637911","l":"Actinobacillus minor NM305","na":1,"nb":2,"a":[["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["NCBITaxon%3A51047","Actinobacillus minor"],["NCBITaxon%3A637911","Actinobacillus minor NM305"]]},{"id":"NCBITaxon:638300","l":"Cardiobacterium hominis ATCC 15826","na":1,"nb":2,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A2718","Cardiobacterium hominis"],["NCBITaxon%3A638300","Cardiobacterium hominis ATCC 15826"]]},{"id":"NCBITaxon:639283","l":"Ancylobacter novellus DSM 506","na":1,"nb":2,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["NCBITaxon%3A921","Ancylobacter novellus"],["NCBITaxon%3A639283","Ancylobacter novellus DSM 506"]]},{"id":"NCBITaxon:640030","l":"Neisseria zalophi","na":2,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A640030","Neisseria zalophi"]]},{"id":"NCBITaxon:640132","l":"Segniliparus rotundus DSM 44985","na":1,"nb":2,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A286802","Segniliparus rotundus"],["NCBITaxon%3A640132","Segniliparus rotundus DSM 44985"]]},{"id":"NCBITaxon:641143","l":"Capnocytophaga granulosa ATCC 51502","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A45242","Capnocytophaga granulosa"],["NCBITaxon%3A641143","Capnocytophaga granulosa ATCC 51502"]]},{"id":"NCBITaxon:642492","l":"","na":1,"nb":2,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["NCBITaxon%3A29360","Cellulosilyticum lentocellum"],["NCBITaxon%3A642492","Cellulosilyticum lentocellum DSM 5427"]]},{"id":"NCBITaxon:642780","l":"Nocardioides scoriae","na":1,"nb":2,"a":[["mud-volcano-envo-00000402.html","mud volcano"]],"b":[["NCBITaxon%3A642780","Nocardioides scoriae"],["NCBITaxon%3A35761","Nocardioides sp."]]},{"id":"NCBITaxon:644107","l":"","na":1,"nb":2,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["NCBITaxon%3A55218","Ruegeria lacuscaerulensis"],["NCBITaxon%3A644107","Ruegeria lacuscaerulensis ITI-1157"]]},{"id":"NCBITaxon:644282","l":"Desulfarculus baarsii (strain ATCC 33931 / DSM 2075 / LMG 7858 / VKM B-1802 / 2st14)","na":1,"nb":2,"a":[["ditch-envo-00000037.html","ditch"]],"b":[["NCBITaxon%3A453230","Desulfarculus baarsii"],["NCBITaxon%3A644282","Desulfarculus baarsii DSM 2075"]]},{"id":"NCBITaxon:644295","l":"Methanohalobium evestigatum Z-7303","na":1,"nb":2,"a":[["microbial-mat-envo-01000008.html","microbial mat"]],"b":[["NCBITaxon%3A2322","Methanohalobium evestigatum"],["NCBITaxon%3A644295","Methanohalobium evestigatum Z-7303"]]},{"id":"NCBITaxon:644383","l":"Thermosporothrix hazakensis","na":2,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["compost-envo-00002170.html","compost"]],"b":[["NCBITaxon%3A644383","Thermosporothrix hazakensis"]]},{"id":"NCBITaxon:645463","l":"Clostridioides difficile R20291","na":1,"nb":2,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["NCBITaxon%3A1496","Clostridioides difficile"],["NCBITaxon%3A645463","Clostridioides difficile R20291"]]},{"id":"NCBITaxon:647171","l":"Methanotorris formicicus Mc-S-70","na":1,"nb":2,"a":[["black-smoker-envo-00000218.html","black smoker"]],"b":[["NCBITaxon%3A213185","Methanotorris formicicus"],["NCBITaxon%3A647171","Methanotorris formicicus Mc-S-70"]]},{"id":"NCBITaxon:65","l":"Herpetosiphon aurantiacus","na":1,"nb":2,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A65","Herpetosiphon aurantiacus"],["NCBITaxon%3A316274","Herpetosiphon aurantiacus DSM 785"]]},{"id":"NCBITaxon:653733","l":"Desulfurispirillum indicum S5","na":1,"nb":2,"a":[["canal-envo-00000014.html","canal"]],"b":[["NCBITaxon%3A936456","Desulfurispirillum indicum"],["NCBITaxon%3A653733","Desulfurispirillum indicum S5"]]},{"id":"NCBITaxon:65393","l":"","na":2,"nb":1,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["NCBITaxon%3A65393","Gloeothece citriformis PCC 7424"]]},{"id":"NCBITaxon:655438","l":"Cycloclasticus pugetii PS-1","na":2,"nb":1,"a":[["inlet-envo-00000475.html","inlet"],["sound-envo-00000393.html","sound"]],"b":[["NCBITaxon%3A655438","Cycloclasticus pugetii PS-1"]]},{"id":"NCBITaxon:655815","l":"Zunongwangia profunda SM-A87","na":1,"nb":2,"a":[["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"]],"b":[["NCBITaxon%3A398743","Zunongwangia profunda"],["NCBITaxon%3A655815","Zunongwangia profunda SM-A87"]]},{"id":"NCBITaxon:656912","l":"Haemophilus influenzae RdAW","na":2,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["estuarine-biome-envo-01000020.html","estuarine biome"]],"b":[["NCBITaxon%3A656912","Haemophilus influenzae RdAW"]]},{"id":"NCBITaxon:656914","l":"Desulfonispora thiosulfatigenes DSM 11270","na":1,"nb":2,"a":[["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["NCBITaxon%3A83661","Desulfonispora thiosulfatigenes"],["NCBITaxon%3A656914","Desulfonispora thiosulfatigenes DSM 11270"]]},{"id":"NCBITaxon:65735","l":"Paracoccus alkenifer","na":2,"nb":1,"a":[["sewage-envo-00002018.html","sewage"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"]],"b":[["NCBITaxon%3A65735","Paracoccus alkenifer"]]},{"id":"NCBITaxon:659425","l":"Thermoclostridium caenicola","na":1,"nb":2,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A659425","Thermoclostridium caenicola"],["NCBITaxon%3A1121300","Thermoclostridium caenicola DSM 19027"]]},{"id":"NCBITaxon:661410","l":"Methylorubrum extorquens DM4","na":1,"nb":2,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A408","Methylorubrum extorquens"],["NCBITaxon%3A661410","Methylorubrum extorquens DM4"]]},{"id":"NCBITaxon:665038","l":"Breoghania corrubedonensis","na":2,"nb":1,"a":[["chemically-enriched-sediment-envo-00002114.html","chemically enriched sediment"],["oil-envo-00002985.html","oil"]],"b":[["NCBITaxon%3A665038","Breoghania corrubedonensis"]]},{"id":"NCBITaxon:666510","l":"Acidilobus saccharovorans 345-15","na":1,"nb":2,"a":[["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A242703","Acidilobus saccharovorans"],["NCBITaxon%3A666510","Acidilobus saccharovorans 345-15"]]},{"id":"NCBITaxon:666684","l":"Afipia sp. 1NLS2","na":1,"nb":2,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["NCBITaxon%3A1871052","Afipia sp."],["NCBITaxon%3A666684","Afipia sp. 1NLS2"]]},{"id":"NCBITaxon:667306","l":"Aciditerrimonas ferrireducens","na":1,"nb":2,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A667306","Aciditerrimonas ferrireducens"],["NCBITaxon%3A1294026","Aciditerrimonas ferrireducens JCM 15389"]]},{"id":"NCBITaxon:675631","l":"","na":1,"nb":2,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A2275","Desulfurococcus mucosus"],["NCBITaxon%3A675631","Desulfurococcus mucosus DSM 2161"]]},{"id":"NCBITaxon:675814","l":"Vibrio coralliilyticus ATCC BAA-450","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A190893","Vibrio coralliilyticus"],["NCBITaxon%3A675814","Vibrio coralliilyticus ATCC BAA-450"]]},{"id":"NCBITaxon:675817","l":"Photobacterium damselae subsp. damselae CIP 102761","na":1,"nb":2,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["NCBITaxon%3A38293","Photobacterium damselae"],["NCBITaxon%3A675817","Photobacterium damselae subsp. damselae CIP 102761"]]},{"id":"NCBITaxon:679192","l":"Bulleidia extructa W1219","na":1,"nb":2,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A118748","Bulleidia extructa"],["NCBITaxon%3A679192","Bulleidia extructa W1219"]]},{"id":"NCBITaxon:679901","l":"Methanosalsum zhilinae DSM 4017","na":1,"nb":2,"a":[["wadi-envo-00000031.html","wadi"]],"b":[["NCBITaxon%3A39669","Methanosalsum zhilinae"],["NCBITaxon%3A679901","Methanosalsum zhilinae DSM 4017"]]},{"id":"NCBITaxon:679937","l":"Bacteroides coprosuis DSM 18011","na":1,"nb":2,"a":[["animal-waste-material-envo-00002276.html","animal waste material"]],"b":[["NCBITaxon%3A151276","Bacteroides coprosuis"],["NCBITaxon%3A679937","Bacteroides coprosuis DSM 18011"]]},{"id":"NCBITaxon:68203","l":"Streptomyces fungicidicus","na":1,"nb":2,"a":[["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A68203","Streptomyces fungicidicus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:685","l":"Vibrio diazotrophicus","na":1,"nb":2,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A685","Vibrio diazotrophicus"],["NCBITaxon%3A1348635","Vibrio diazotrophicus NBRC 103148"]]},{"id":"NCBITaxon:685706","l":"Yersinia nurmii","na":2,"nb":1,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A685706","Yersinia nurmii"]]},{"id":"NCBITaxon:688246","l":"Hallella multisaccharivorax DSM 17128","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A310514","Hallella multisaccharivorax"],["NCBITaxon%3A688246","Hallella multisaccharivorax DSM 17128"]]},{"id":"NCBITaxon:688269","l":"Pseudothermotoga thermarum DSM 5069","na":1,"nb":2,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A119394","Pseudothermotoga thermarum"],["NCBITaxon%3A688269","Pseudothermotoga thermarum DSM 5069"]]},{"id":"NCBITaxon:688270","l":"Cellulophaga algicola (strain DSM 14237 / IC166 / ACAM 630)","na":1,"nb":2,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["NCBITaxon%3A59600","Cellulophaga algicola"],["NCBITaxon%3A688270","Cellulophaga algicola DSM 14237"]]},{"id":"NCBITaxon:68891","l":"Streptococcus peroris","na":1,"nb":2,"a":[["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A68891","Streptococcus peroris"],["NCBITaxon%3A888746","Streptococcus peroris ATCC 700780"]]},{"id":"NCBITaxon:69014","l":"Thermococcus kodakarensis (strain ATCC BAA-918 / JCM 12380 / KOD1)","na":1,"nb":2,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A311400","Thermococcus kodakarensis"],["NCBITaxon%3A69014","Thermococcus kodakarensis KOD1"]]},{"id":"NCBITaxon:693444","l":"Enterobacteriaceae bacterium strain FGI 57","na":2,"nb":1,"a":[["road-envo-00000064.html","road"],["garden-envo-00000011.html","garden"]],"b":[["NCBITaxon%3A693444","Enterobacteriaceae bacterium strain FGI 57"]]},{"id":"NCBITaxon:693661","l":"Archaeoglobus veneficus SNP6","na":1,"nb":2,"a":[["black-smoker-envo-00000218.html","black smoker"]],"b":[["NCBITaxon%3A58290","Archaeoglobus veneficus"],["NCBITaxon%3A693661","Archaeoglobus veneficus SNP6"]]},{"id":"NCBITaxon:693972","l":"Shewanella baltica OS625","na":2,"nb":1,"a":[["marginal-sea-biome-envo-01000046.html","marginal sea biome"],["sea-envo-00000016.html","sea"]],"b":[["NCBITaxon%3A693972","Shewanella baltica OS625"]]},{"id":"NCBITaxon:694431","l":"Desulfurella acetivorans A63","na":1,"nb":2,"a":[["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A33002","Desulfurella acetivorans"],["NCBITaxon%3A694431","Desulfurella acetivorans A63"]]},{"id":"NCBITaxon:694433","l":"Saprospira grandis DSM 2844","na":1,"nb":2,"a":[["carapace-bto-0001701.html","carapace"]],"b":[["NCBITaxon%3A1008","Saprospira grandis"],["NCBITaxon%3A694433","Saprospira grandis DSM 2844"]]},{"id":"NCBITaxon:695939","l":"Deinococcus hopiensis KR-140","na":1,"nb":2,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A309885","Deinococcus hopiensis"],["NCBITaxon%3A695939","Deinococcus hopiensis KR-140"]]},{"id":"NCBITaxon:698758","l":"Amphibacillus xylanus NBRC 15112","na":1,"nb":2,"a":[["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["NCBITaxon%3A1449","Amphibacillus xylanus"],["NCBITaxon%3A698758","Amphibacillus xylanus NBRC 15112"]]},{"id":"NCBITaxon:699248","l":"Streptococcus ratti FA-1 = DSM 20564","na":1,"nb":2,"a":[["tooth-bto-0000397.html","tooth"]],"b":[["NCBITaxon%3A1341","Streptococcus ratti"],["NCBITaxon%3A699248","Streptococcus ratti FA-1 = DSM 20564"]]},{"id":"NCBITaxon:69969","l":"Macrococcus carouselicus","na":2,"nb":1,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["NCBITaxon%3A69969","Macrococcus carouselicus"]]},{"id":"NCBITaxon:706587","l":"Desulfomonile tiedjei DSM 6799","na":1,"nb":2,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A2358","Desulfomonile tiedjei"],["NCBITaxon%3A706587","Desulfomonile tiedjei DSM 6799"]]},{"id":"NCBITaxon:707232","l":"Acinetobacter haemolyticus ATCC 19194","na":1,"nb":2,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["NCBITaxon%3A29430","Acinetobacter haemolyticus"],["NCBITaxon%3A707232","Acinetobacter haemolyticus ATCC 19194"]]},{"id":"NCBITaxon:707241","l":"Sinorhizobium meliloti SM11","na":2,"nb":1,"a":[["mountain-pass-envo-00000084.html","mountain pass"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A707241","Sinorhizobium meliloti SM11"]]},{"id":"NCBITaxon:709986","l":"Deinococcus maricopensis DSM 21211","na":1,"nb":2,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A309887","Deinococcus maricopensis"],["NCBITaxon%3A709986","Deinococcus maricopensis DSM 21211"]]},{"id":"NCBITaxon:713586","l":"Thioalkalivibrio thiocyanodenitrificans ARhD 1","na":1,"nb":2,"a":[["wadi-envo-00000031.html","wadi"]],"b":[["NCBITaxon%3A243063","Thioalkalivibrio thiocyanodenitrificans"],["NCBITaxon%3A713586","Thioalkalivibrio thiocyanodenitrificans ARhD 1"]]},{"id":"NCBITaxon:714943","l":"Mucilaginibacter paludis DSM 18603","na":1,"nb":2,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A423351","Mucilaginibacter paludis"],["NCBITaxon%3A714943","Mucilaginibacter paludis DSM 18603"]]},{"id":"NCBITaxon:717231","l":"Flexistipes sinusarabici DSM 4947","na":1,"nb":2,"a":[["brine-envo-00003044.html","brine"]],"b":[["NCBITaxon%3A2352","Flexistipes sinusarabici"],["NCBITaxon%3A717231","Flexistipes sinusarabici DSM 4947"]]},{"id":"NCBITaxon:717606","l":"Paenibacillus curdlanolyticus YK9","na":1,"nb":2,"a":[["city-envo-00000856.html","city"]],"b":[["NCBITaxon%3A59840","Paenibacillus curdlanolyticus"],["NCBITaxon%3A717606","Paenibacillus curdlanolyticus YK9"]]},{"id":"NCBITaxon:720","l":"Actinobacillus lignieresii","na":2,"nb":1,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["NCBITaxon%3A720","Actinobacillus lignieresii"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":2,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["NCBITaxon%3A72226","Lysobacter sp."],["NCBITaxon%3A1645665","Solilutibacter silvestris"]]},{"id":"NCBITaxon:723627","l":"uncultured Rhizobium sp. HF0500_35F13","na":2,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A723627","uncultured Rhizobium sp. HF0500_35F13"]]},{"id":"NCBITaxon:742767","l":"Dysgonomonas mossii DSM 22836","na":1,"nb":2,"a":[["hospital-envo-00002173.html","hospital"]],"b":[["NCBITaxon%3A163665","Dysgonomonas mossii"],["NCBITaxon%3A742767","Dysgonomonas mossii DSM 22836"]]},{"id":"NCBITaxon:748908","l":"Alpinimonas psychrophila","na":2,"nb":1,"a":[["water-ice-envo-01000277.html","water ice"],["glacier-envo-00000133.html","glacier"]],"b":[["NCBITaxon%3A748908","Alpinimonas psychrophila"]]},{"id":"NCBITaxon:749","l":"[Pasteurella] aerogenes","na":2,"nb":1,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A749","[Pasteurella] aerogenes"]]},{"id":"NCBITaxon:749550","l":"Escherichia coli MS 200-1","na":2,"nb":1,"a":[["city-envo-00000856.html","city"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["NCBITaxon%3A749550","Escherichia coli MS 200-1"]]},{"id":"NCBITaxon:751945","l":"Thermus oshimai JL-2","na":1,"nb":2,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A56957","Thermus oshimai"],["NCBITaxon%3A751945","Thermus oshimai JL-2"]]},{"id":"NCBITaxon:756067","l":"Microcoleus vaginatus FGP-2","na":2,"nb":1,"a":[["desert-area-envo-00000097.html","desert area"],["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A756067","Microcoleus vaginatus FGP-2"]]},{"id":"NCBITaxon:75697","l":"Castellaniella defragrans","na":1,"nb":2,"a":[["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A75697","Castellaniella defragrans"],["NCBITaxon%3A1437824","Castellaniella defragrans 65Phen"]]},{"id":"NCBITaxon:758583","l":"Thermococcus sp. 26/2","na":2,"nb":1,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A758583","Thermococcus sp. 26/2"]]},{"id":"NCBITaxon:758847","l":"Leptospira santarosai serovar Shermani str. LT 821","na":1,"nb":2,"a":[["renal-tubule-bto-0000343.html","renal tubule"]],"b":[["NCBITaxon%3A28183","Leptospira santarosai"],["NCBITaxon%3A758847","Leptospira santarosai serovar Shermani str. LT 821"]]},{"id":"NCBITaxon:759","l":"Pasteurella sp.","na":2,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["NCBITaxon%3A759","Pasteurella sp."]]},{"id":"NCBITaxon:760","l":"Pasteurella stomatis","na":2,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"]],"b":[["NCBITaxon%3A760","Pasteurella stomatis"]]},{"id":"NCBITaxon:760011","l":"Parasphaerochaeta coccoides DSM 17374","na":1,"nb":2,"a":[["hindgut-bto-0000510.html","hindgut"]],"b":[["NCBITaxon%3A273376","Parasphaerochaeta coccoides"],["NCBITaxon%3A760011","Parasphaerochaeta coccoides DSM 17374"]]},{"id":"NCBITaxon:760154","l":"Sulfurospirillum barnesii SES-3","na":1,"nb":2,"a":[["marsh-envo-00000035.html","marsh"]],"b":[["NCBITaxon%3A44674","Sulfurospirillum barnesii"],["NCBITaxon%3A760154","Sulfurospirillum barnesii SES-3"]]},{"id":"NCBITaxon:760568","l":"Desulfofundulus kuznetsovii DSM 6115","na":1,"nb":2,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A58135","Desulfofundulus kuznetsovii"],["NCBITaxon%3A760568","Desulfofundulus kuznetsovii DSM 6115"]]},{"id":"NCBITaxon:765420","l":"Oscillochloris trichoides DG-6","na":1,"nb":2,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A104176","Oscillochloris trichoides"],["NCBITaxon%3A765420","Oscillochloris trichoides DG-6"]]},{"id":"NCBITaxon:765698","l":"Mesorhizobium ciceri biovar biserrulae WSM1271","na":1,"nb":2,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A39645","Mesorhizobium ciceri"],["NCBITaxon%3A765698","Mesorhizobium ciceri biovar biserrulae WSM1271"]]},{"id":"NCBITaxon:765873","l":"Ectothiorhodospira haloalkaliphila ATCC 51935","na":1,"nb":2,"a":[["wadi-envo-00000031.html","wadi"]],"b":[["NCBITaxon%3A421628","Ectothiorhodospira haloalkaliphila"],["NCBITaxon%3A765873","Ectothiorhodospira haloalkaliphila ATCC 51935"]]},{"id":"NCBITaxon:765912","l":"Thioflavicoccus mobilis 8321","na":2,"nb":1,"a":[["marsh-envo-00000035.html","marsh"],["saline-marsh-envo-00000054.html","saline marsh"]],"b":[["NCBITaxon%3A765912","Thioflavicoccus mobilis 8321"]]},{"id":"NCBITaxon:768066","l":"Halomonas elongata DSM 2581","na":1,"nb":2,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["NCBITaxon%3A2746","Halomonas elongata"],["NCBITaxon%3A768066","Halomonas elongata DSM 2581"]]},{"id":"NCBITaxon:768492","l":"Serratia plymuthica AS9","na":1,"nb":2,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A768492","Serratia plymuthica AS9"],["NCBITaxon%3A239175","uncultured Serratia sp."]]},{"id":"NCBITaxon:768672","l":"Desulfurococcus amylolyticus DSM 16532","na":1,"nb":2,"a":[["caldera-envo-00000096.html","caldera"]],"b":[["NCBITaxon%3A94694","Desulfurococcus amylolyticus"],["NCBITaxon%3A768672","Desulfurococcus amylolyticus DSM 16532"]]},{"id":"NCBITaxon:768704","l":"Desulfosporosinus meridiei DSM 13257","na":1,"nb":2,"a":[["hill-envo-00000083.html","hill"]],"b":[["NCBITaxon%3A79209","Desulfosporosinus meridiei"],["NCBITaxon%3A768704","Desulfosporosinus meridiei DSM 13257"]]},{"id":"NCBITaxon:79266","l":"Mesorhizobium sp. ZJ15B7","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A79266","Mesorhizobium sp. ZJ15B7"]]},{"id":"NCBITaxon:794903","l":"Opitutaceae bacterium TAV5","na":2,"nb":1,"a":[["hindgut-bto-0000510.html","hindgut"],["wood-bto-0005516.html","wood"]],"b":[["NCBITaxon%3A794903","Opitutaceae bacterium TAV5"]]},{"id":"NCBITaxon:795797","l":"Halalkalicoccus jeotgali B3","na":1,"nb":2,"a":[["food-product-foodon-00001002.html","food product"]],"b":[["NCBITaxon%3A413810","Halalkalicoccus jeotgali"],["NCBITaxon%3A795797","Halalkalicoccus jeotgali B3"]]},{"id":"NCBITaxon:798130","l":"Pseudomonas aeruginosa 39016","na":2,"nb":1,"a":[["underground-water-envo-00005792.html","underground water"],["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A798130","Pseudomonas aeruginosa 39016"]]},{"id":"NCBITaxon:81406","l":"Solidesulfovibrio alcoholivorans","na":1,"nb":2,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A81406","Solidesulfovibrio alcoholivorans"],["NCBITaxon%3A1121438","Solidesulfovibrio alcoholivorans DSM 5433"]]},{"id":"NCBITaxon:82348","l":"Streptococcus pluranimalium","na":1,"nb":2,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"]],"b":[["NCBITaxon%3A149015","Streptococcus hyovaginalis"],["NCBITaxon%3A82348","Streptococcus pluranimalium"]]},{"id":"NCBITaxon:82380","l":"Microbacterium oxydans","na":1,"nb":2,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A82380","Microbacterium oxydans"],["NCBITaxon%3A1255678","Microbacterium oxydans PCA1"]]},{"id":"NCBITaxon:826","l":"Sebaldella termitidis","na":1,"nb":2,"a":[["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A826","Sebaldella termitidis"],["NCBITaxon%3A526218","Sebaldella termitidis ATCC 33386"]]},{"id":"NCBITaxon:82806","l":"Streptococcus ovis","na":1,"nb":2,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"]],"b":[["NCBITaxon%3A82806","Streptococcus ovis"],["NCBITaxon%3A1123312","Streptococcus ovis DSM 16829"]]},{"id":"NCBITaxon:82985","l":"Pragia fontium","na":1,"nb":2,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"]],"b":[["NCBITaxon%3A82985","Pragia fontium"],["NCBITaxon%3A1122977","Pragia fontium DSM 5563 = ATCC 49100"]]},{"id":"NCBITaxon:82991","l":"Buttiauxella izardii","na":1,"nb":2,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A82991","Buttiauxella izardii"],["NCBITaxon%3A1354254","Buttiauxella izardii ATCC 51606"]]},{"id":"NCBITaxon:83219","l":"Sulfitobacter mediterraneus","na":1,"nb":2,"a":[["sandstone-envo-00002055.html","sandstone"]],"b":[["NCBITaxon%3A83219","Sulfitobacter mediterraneus"],["NCBITaxon%3A1443112","Sulfitobacter mediterraneus KCTC 32188"]]},{"id":"NCBITaxon:83262","l":"Mycobacteroides immunogenum","na":1,"nb":2,"a":[["central-nervous-system-bto-0000227.html","central nervous system"]],"b":[["NCBITaxon%3A36809","Mycobacteroides abscessus"],["NCBITaxon%3A83262","Mycobacteroides immunogenum"]]},{"id":"NCBITaxon:83331","l":"Mycobacterium tuberculosis (strain CDC 1551 / Oshkosh)","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A83331","Mycobacterium tuberculosis CDC1551"]]},{"id":"NCBITaxon:83557","l":"Chlamydia caviae","na":1,"nb":2,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A83557","Chlamydia caviae"],["NCBITaxon%3A227941","Chlamydia caviae GPIC"]]},{"id":"NCBITaxon:84032","l":"Clostridium thermosuccinogenes","na":1,"nb":2,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["NCBITaxon%3A84032","Clostridium thermosuccinogenes"],["NCBITaxon%3A1121341","Pseudoclostridium thermosuccinogenes DSM 5807"]]},{"id":"NCBITaxon:84159","l":"Paramagnetospirillum magneticum","na":1,"nb":2,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A84159","Paramagnetospirillum magneticum"],["NCBITaxon%3A342108","Paramagnetospirillum magneticum AMB-1"]]},{"id":"NCBITaxon:844","l":"Wolinella succinogenes","na":1,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A844","Wolinella succinogenes"],["NCBITaxon%3A273121","Wolinella succinogenes DSM 1740"]]},{"id":"NCBITaxon:84980","l":"Desulfotalea psychrophila","na":1,"nb":2,"a":[["shoreline-envo-00000486.html","shoreline"]],"b":[["NCBITaxon%3A84980","Desulfotalea psychrophila"],["NCBITaxon%3A177439","Desulfotalea psychrophila LSv54"]]},{"id":"NCBITaxon:85336","l":"Rothia nasimurium","na":1,"nb":2,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"]],"b":[["NCBITaxon%3A85336","Rothia nasimurium"],["NCBITaxon%3A553203","Rothia nasimurium JCVIHMP032"]]},{"id":"NCBITaxon:85643","l":"","na":2,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["NCBITaxon%3A164330","Thauera aminoaromatica"]]},{"id":"NCBITaxon:85831","l":"Bacteroides acidifaciens","na":1,"nb":2,"a":[["colon-bto-0000269.html","colon"]],"b":[["NCBITaxon%3A85831","Bacteroides acidifaciens"],["NCBITaxon%3A1235814","Bacteroides acidifaciens JCM 10556"]]},{"id":"NCBITaxon:86185","l":"Pseudomonas lundensis","na":1,"nb":2,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A86185","Pseudomonas lundensis"],["NCBITaxon%3A1255687","Pseudomonas lundensis PCAi_D2.2"]]},{"id":"NCBITaxon:862515","l":"Hoylesella marshii DSM 16973 = JCM 13450","na":1,"nb":2,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A189722","Hoylesella marshii"],["NCBITaxon%3A862515","Hoylesella marshii DSM 16973 = JCM 13450"]]},{"id":"NCBITaxon:862908","l":"Halobacteriovorax marinus SJ","na":1,"nb":2,"a":[["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A97084","Halobacteriovorax marinus"],["NCBITaxon%3A862908","Halobacteriovorax marinus SJ"]]},{"id":"NCBITaxon:865937","l":"Gillisia limnaea DSM 15749","na":1,"nb":2,"a":[["dry-valley-envo-00000128.html","dry valley"]],"b":[["NCBITaxon%3A195907","Gillisia limnaea"],["NCBITaxon%3A865937","Gillisia limnaea DSM 15749"]]},{"id":"NCBITaxon:866499","l":"Cloacibacillus evryensis DSM 19522","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A508460","Cloacibacillus evryensis"],["NCBITaxon%3A866499","Cloacibacillus evryensis DSM 19522"]]},{"id":"NCBITaxon:86668","l":"Neobacillus niacini","na":1,"nb":2,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A86668","Neobacillus niacini"],["NCBITaxon%3A1348654","Neobacillus niacini NBRC 15566"]]},{"id":"NCBITaxon:866789","l":"Escherichia coli DSM 30083 = JCM 1649 = ATCC 11775","na":1,"nb":2,"a":[["urethra-bto-0001426.html","urethra"]],"b":[["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A866789","Escherichia coli DSM 30083 = JCM 1649 = ATCC 11775"]]},{"id":"NCBITaxon:869210","l":"Marinithermus hydrothermalis DSM 14884","na":1,"nb":2,"a":[["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A186192","Marinithermus hydrothermalis"],["NCBITaxon%3A869210","Marinithermus hydrothermalis DSM 14884"]]},{"id":"NCBITaxon:86959","l":"Propionispira raffinosivorans","na":1,"nb":2,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"]],"b":[["NCBITaxon%3A86959","Propionispira raffinosivorans"],["NCBITaxon%3A1123511","Propionispira raffinosivorans DSM 20765"]]},{"id":"NCBITaxon:873513","l":"Segatella buccae ATCC 33574","na":1,"nb":2,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A28126","Segatella buccae"],["NCBITaxon%3A873513","Segatella buccae ATCC 33574"]]},{"id":"NCBITaxon:880","l":"Maridesulfovibrio salexigens","na":1,"nb":2,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A880","Maridesulfovibrio salexigens"],["NCBITaxon%3A526222","Maridesulfovibrio salexigens DSM 2638"]]},{"id":"NCBITaxon:880447","l":"Mycoplasma leachii PG50","na":1,"nb":2,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A2105","Mycoplasma leachii"],["NCBITaxon%3A880447","Mycoplasma leachii PG50"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A881","Nitratidesulfovibrio vulgaris"],["NCBITaxon%3A882","Nitratidesulfovibrio vulgaris str. Hildenborough"]]},{"id":"NCBITaxon:883","l":"Nitratidesulfovibrio vulgaris str. 'Miyazaki F'","na":1,"nb":2,"a":[["saline-marsh-envo-00000054.html","saline marsh"]],"b":[["NCBITaxon%3A881","Nitratidesulfovibrio vulgaris"],["NCBITaxon%3A883","Nitratidesulfovibrio vulgaris str. 'Miyazaki F'"]]},{"id":"NCBITaxon:883169","l":"Corynebacterium otitidis ATCC 51513","na":1,"nb":2,"a":[["middle-ear-bto-0002099.html","middle ear"]],"b":[["NCBITaxon%3A29321","Corynebacterium otitidis"],["NCBITaxon%3A883169","Corynebacterium otitidis ATCC 51513"]]},{"id":"NCBITaxon:88373","l":"Agromyces luteolus","na":1,"nb":2,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A88373","Agromyces luteolus"],["NCBITaxon%3A881268","Herbiconiux flava"]]},{"id":"NCBITaxon:886293","l":"Singulisphaera acidiphila (strain ATCC BAA-1392 / DSM 18658 / VKM B-2454 / MOB10)","na":1,"nb":2,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A466153","Singulisphaera acidiphila"],["NCBITaxon%3A886293","Singulisphaera acidiphila DSM 18658"]]},{"id":"NCBITaxon:887899","l":"Mobiluncus holmesii ATCC 35242","na":1,"nb":2,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["NCBITaxon%3A144178","Mobiluncus holmesii"],["NCBITaxon%3A887899","Mobiluncus holmesii ATCC 35242"]]},{"id":"NCBITaxon:887929","l":"Pseudoramibacter alactolyticus ATCC 23263","na":1,"nb":2,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"]],"b":[["NCBITaxon%3A113287","Pseudoramibacter alactolyticus"],["NCBITaxon%3A887929","Pseudoramibacter alactolyticus ATCC 23263"]]},{"id":"NCBITaxon:888061","l":"Desulfomicrobium orale DSM 12838","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A132132","Desulfomicrobium orale"],["NCBITaxon%3A888061","Desulfomicrobium orale DSM 12838"]]},{"id":"NCBITaxon:88874","l":"Luteococcus peritonei","na":1,"nb":2,"a":[["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A88874","Luteococcus peritonei"],["NCBITaxon%3A170679","Vibrio chagasii"]]},{"id":"NCBITaxon:888743","l":"Prevotella multiformis DSM 16608","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A282402","Prevotella multiformis"],["NCBITaxon%3A888743","Prevotella multiformis DSM 16608"]]},{"id":"NCBITaxon:889274","l":"Polyangium sorediatum","na":2,"nb":1,"a":[["wood-bto-0005516.html","wood"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A889274","Polyangium sorediatum"]]},{"id":"NCBITaxon:89065","l":"Pseudomonas abietaniphila","na":2,"nb":1,"a":[["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A89065","Pseudomonas abietaniphila"]]},{"id":"NCBITaxon:89184","l":"Ruegeria pomeroyi","na":1,"nb":2,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A89184","Ruegeria pomeroyi"],["NCBITaxon%3A246200","Ruegeria pomeroyi DSS-3"]]},{"id":"NCBITaxon:90240","l":"Moraxella caprae","na":1,"nb":2,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"]],"b":[["NCBITaxon%3A90240","Moraxella caprae"],["NCBITaxon%3A1122244","Moraxella caprae DSM 19149"]]},{"id":"NCBITaxon:908937","l":"Prevotella dentalis DSM 3688","na":1,"nb":2,"a":[["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A52227","Prevotella dentalis"],["NCBITaxon%3A908937","Prevotella dentalis DSM 3688"]]},{"id":"NCBITaxon:912594","l":"Mycolicibacterium iranicum","na":1,"nb":2,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["NCBITaxon%3A912594","Mycolicibacterium iranicum"],["NCBITaxon%3A1370125","Mycolicibacterium iranicum UM_TJL"]]},{"id":"NCBITaxon:915438","l":"Xylanibacter oryzae DSM 17970","na":1,"nb":2,"a":[["rice-field-envo-00000296.html","rice field"]],"b":[["NCBITaxon%3A185293","Xylanibacter oryzae"],["NCBITaxon%3A915438","Xylanibacter oryzae DSM 17970"]]},{"id":"NCBITaxon:916","l":"Nitrosomonas eutropha","na":1,"nb":2,"a":[["waste-treatment-plant-envo-00002272.html","waste treatment plant"]],"b":[["NCBITaxon%3A916","Nitrosomonas eutropha"],["NCBITaxon%3A335283","Nitrosomonas eutropha C91"]]},{"id":"NCBITaxon:91892","l":"Legionella pneumophila subsp. fraseri","na":1,"nb":2,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A446","Legionella pneumophila"],["NCBITaxon%3A91892","Legionella pneumophila subsp. fraseri"]]},{"id":"NCBITaxon:91917","l":"Burkholderia sp. NF100","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A91917","Burkholderia sp. NF100"]]},{"id":"NCBITaxon:926550","l":"Caldilinea aerophila DSM 14535 = NBRC 104270","na":1,"nb":2,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A133453","Caldilinea aerophila"],["NCBITaxon%3A926550","Caldilinea aerophila DSM 14535 = NBRC 104270"]]},{"id":"NCBITaxon:926554","l":"Deinococcus pimensis DSM 21231","na":1,"nb":2,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A309888","Deinococcus pimensis"],["NCBITaxon%3A926554","Deinococcus pimensis DSM 21231"]]},{"id":"NCBITaxon:926567","l":"Thermanaerovibrio velox DSM 12556","na":1,"nb":2,"a":[["caldera-envo-00000096.html","caldera"]],"b":[["NCBITaxon%3A108007","Thermanaerovibrio velox"],["NCBITaxon%3A926567","Thermanaerovibrio velox DSM 12556"]]},{"id":"NCBITaxon:926690","l":"Haloplanus natans DSM 17983","na":1,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A376171","Haloplanus natans"],["NCBITaxon%3A926690","Haloplanus natans DSM 17983"]]},{"id":"NCBITaxon:927655","l":"Corynebacterium bovis DSM 20582 = CIP 54.80","na":1,"nb":2,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["NCBITaxon%3A36808","Corynebacterium bovis"],["NCBITaxon%3A927655","Corynebacterium bovis DSM 20582 = CIP 54.80"]]},{"id":"NCBITaxon:928729","l":"Saccharomonospora halophila 8","na":1,"nb":2,"a":[["saline-marsh-envo-00000054.html","saline marsh"]],"b":[["NCBITaxon%3A129922","Saccharomonospora halophila"],["NCBITaxon%3A928729","Saccharomonospora halophila 8"]]},{"id":"NCBITaxon:929558","l":"","na":1,"nb":2,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A1176482","Sulfurimonas gotlandica"],["NCBITaxon%3A929558","Sulfurimonas gotlandica GD1"]]},{"id":"NCBITaxon:929705","l":"Sulfobacillus thermosulfidooxidans DSM 9293","na":1,"nb":2,"a":[["mineral-deposit-envo-01000255.html","mineral deposit"]],"b":[["NCBITaxon%3A28034","Sulfobacillus thermosulfidooxidans"],["NCBITaxon%3A929705","Sulfobacillus thermosulfidooxidans DSM 9293"]]},{"id":"NCBITaxon:93220","l":"Pandoraea pnomenusa","na":1,"nb":2,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"]],"b":[["NCBITaxon%3A93220","Pandoraea pnomenusa"],["NCBITaxon%3A1416914","Pandoraea pnomenusa 3kgm"]]},{"id":"NCBITaxon:935948","l":"Caldanaerobius polysaccharolyticus DSM 13641","na":1,"nb":2,"a":[["leachate-envo-00002141.html","leachate"]],"b":[["NCBITaxon%3A44256","Caldanaerobius polysaccharolyticus"],["NCBITaxon%3A935948","Caldanaerobius polysaccharolyticus DSM 13641"]]},{"id":"NCBITaxon:945550","l":"Vibrio sinaloensis DSM 21326","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A379097","Vibrio sinaloensis"],["NCBITaxon%3A945550","Vibrio sinaloensis DSM 21326"]]},{"id":"NCBITaxon:945555","l":"Acinetobacter baumannii WM99c","na":2,"nb":1,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"],["lung-epithelial-cell-bto-0004299.html","lung epithelial cell"]],"b":[["NCBITaxon%3A945555","Acinetobacter baumannii WM99c"]]},{"id":"NCBITaxon:945556","l":"Acinetobacter baumannii D1279779","na":2,"nb":1,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"],["lung-epithelial-cell-bto-0004299.html","lung epithelial cell"]],"b":[["NCBITaxon%3A945556","Acinetobacter baumannii D1279779"]]},{"id":"NCBITaxon:95485","l":"Burkholderia stabilis","na":1,"nb":2,"a":[["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["NCBITaxon%3A292","Burkholderia cepacia"],["NCBITaxon%3A95485","Burkholderia stabilis"]]},{"id":"NCBITaxon:981386","l":"Brucella vulpis","na":2,"nb":1,"a":[["lymph-node-bto-0000784.html","lymph node"],["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["NCBITaxon%3A981386","Brucella vulpis"]]},{"id":"NCBITaxon:983920","l":"Novosphingobium nitrogenifigens DSM 19370","na":1,"nb":2,"a":[["pulp-bto-0001142.html","pulp"]],"b":[["NCBITaxon%3A378548","Novosphingobium nitrogenifigens"],["NCBITaxon%3A983920","Novosphingobium nitrogenifigens DSM 19370"]]},{"id":"NCBITaxon:984260","l":"Rhizobium skierniewicense","na":1,"nb":2,"a":[["plant-gall-po-0025626.html","plant gall"]],"b":[["NCBITaxon%3A984260","Rhizobium skierniewicense"],["NCBITaxon%3A1368417","Rhizobium skierniewicense Ch11"]]},{"id":"NCBITaxon:985762","l":"Staphylococcus agnetis","na":1,"nb":2,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"]],"b":[["NCBITaxon%3A985762","Staphylococcus agnetis"],["NCBITaxon%3A1216360","Staphylococcus agnetis MU1"]]},{"id":"NCBITaxon:987","l":"Aquimarina latercula","na":1,"nb":2,"a":[["sandstone-envo-00002055.html","sandstone"]],"b":[["NCBITaxon%3A987","Aquimarina latercula"],["NCBITaxon%3A1121006","Aquimarina latercula DSM 2041"]]},{"id":"NCBITaxon:987045","l":"Jiangella gansuensis DSM 44835","na":1,"nb":2,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A281473","Jiangella gansuensis"],["NCBITaxon%3A987045","Jiangella gansuensis DSM 44835"]]},{"id":"NCBITaxon:987059","l":"Rubrivivax benzoatilyticus JA2 = ATCC BAA-35","na":1,"nb":2,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A316997","Rubrivivax benzoatilyticus"],["NCBITaxon%3A987059","Rubrivivax benzoatilyticus JA2 = ATCC BAA-35"]]},{"id":"NCBITaxon:988827","l":"Kocuria oceani","na":1,"nb":2,"a":[["in-situ-habitatmech-bacdive-3edb563d49.html","In-situ"]],"b":[["NCBITaxon%3A988827","Kocuria oceani"],["NCBITaxon%3A174038","Luteococcus sanguinis"]]},{"id":"NCBITaxon:990315","l":"Xanthomonas campestris pv. raphani 756C","na":2,"nb":1,"a":[["mesophyll-bto-0000858.html","mesophyll"],["vascular-tissue-bto-0001432.html","vascular tissue"]],"b":[["NCBITaxon%3A990315","Xanthomonas campestris pv. raphani 756C"]]},{"id":"NCBITaxon:991789","l":"Anaerotignum propionicum DSM 1682","na":1,"nb":2,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["NCBITaxon%3A28446","Anaerotignum propionicum"],["NCBITaxon%3A991789","Anaerotignum propionicum DSM 1682"]]},{"id":"NCBITaxon:99481","l":"Nostocoides japonicum","na":1,"nb":2,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["NCBITaxon%3A99481","Nostocoides japonicum"],["NCBITaxon%3A1194083","Nostocoides japonicum T1-X7"]]},{"id":"NCBITaxon:99656","l":"[Clostridium] fimetarium","na":1,"nb":2,"a":[["animal-waste-material-envo-00002276.html","animal waste material"]],"b":[["NCBITaxon%3A99656","[Clostridium] fimetarium"],["NCBITaxon%3A1121311","[Clostridium] fimetarium DSM 9179"]]},{"id":"NCBITaxon:997349","l":"Olsenella profusa DSM 13989","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A138595","Olsenella profusa"],["NCBITaxon%3A997349","Olsenella profusa DSM 13989"]]},{"id":"NCBITaxon:999","l":"Bernardetia litoralis","na":1,"nb":2,"a":[["lagoon-envo-00000038.html","lagoon"]],"b":[["NCBITaxon%3A999","Bernardetia litoralis"],["NCBITaxon%3A880071","Bernardetia litoralis DSM 6794"]]},{"id":"NCBITaxon:999547","l":"Leisingera daeponensis DSM 23529","na":1,"nb":2,"a":[["beach-envo-00000091.html","beach"]],"b":[["NCBITaxon%3A405746","Leisingera daeponensis"],["NCBITaxon%3A999547","Leisingera daeponensis DSM 23529"]]},{"id":"NCBITaxon:999552","l":"Leisingera methylohalidivorans DSM 14336","na":1,"nb":2,"a":[["marine-neritic-zone-envo-00000206.html","marine neritic zone"]],"b":[["NCBITaxon%3A133924","Leisingera methylohalidivorans"],["NCBITaxon%3A999552","Leisingera methylohalidivorans DSM 14336"]]},{"id":"NCBITaxon:1000560","l":"Escherichia coli VDP","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1000560","Escherichia coli VDP"]]},{"id":"NCBITaxon:1000567","l":"Bifidobacterium longum 3_1_37DFAAB","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1000567","Bifidobacterium longum 3_1_37DFAAB"]]},{"id":"NCBITaxon:1000568","l":"","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1000568","Megasphaera lornae"]]},{"id":"NCBITaxon:1000569","l":"Megasphaera sp. UPII 135-E","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1000569","Megasphaera sp. UPII 135-E"]]},{"id":"NCBITaxon:1000935","l":"","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1000935","Anaplasma marginale str. Florida Relapse"]]},{"id":"NCBITaxon:1000936","l":"","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1000936","Anaplasma marginale str. Okeechobee"]]},{"id":"NCBITaxon:1000937","l":"","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1000937","Anaplasma marginale str. Washington Okanogan"]]},{"id":"NCBITaxon:1000938","l":"","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1000938","Anaplasma marginale str. Oklahoma"]]},{"id":"NCBITaxon:1000939","l":"","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1000939","Anaplasma marginale str. South Idaho"]]},{"id":"NCBITaxon:1000950","l":"Vibrio cholerae HC-55C1","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1000950","Vibrio cholerae HC-55C1"]]},{"id":"NCBITaxon:1001223","l":"Avibacterium paragallinarum 72C","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1001223","Avibacterium paragallinarum 72C"]]},{"id":"NCBITaxon:1001224","l":"Avibacterium paragallinarum 72C1","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1001224","Avibacterium paragallinarum 72C1"]]},{"id":"NCBITaxon:1001530","l":"","na":1,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001530","Photobacterium leiognathi subsp. mandapamensis svers.1.1."]]},{"id":"NCBITaxon:1001582","l":"Bacillus amyloliquefaciens LL3","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A1001582","Bacillus amyloliquefaciens LL3"]]},{"id":"NCBITaxon:1001583","l":"Levilactobacillus brevis KB290","na":1,"nb":1,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A1001583","Levilactobacillus brevis KB290"]]},{"id":"NCBITaxon:1001585","l":"","na":1,"nb":1,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A1001585","Ectopseudomonas mendocina NK-01"]]},{"id":"NCBITaxon:1001586","l":"","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001586","Leptospira interrogans serovar Bulgarica str. Mallika"]]},{"id":"NCBITaxon:1001587","l":"","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001587","Leptospira interrogans serovar Pomona str. Pomona"]]},{"id":"NCBITaxon:1001588","l":"","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001588","Leptospira interrogans str. 2002000621"]]},{"id":"NCBITaxon:1001589","l":"","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001589","Leptospira weilii str. 2006001853"]]},{"id":"NCBITaxon:1001590","l":"Leptospira interrogans str. 2006001854","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001590","Leptospira interrogans str. 2006001854"]]},{"id":"NCBITaxon:1001591","l":"","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001591","Leptospira interrogans str. C10069"]]},{"id":"NCBITaxon:1001592","l":"","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001592","Leptospira santarosai str. 2000027870"]]},{"id":"NCBITaxon:1001593","l":"","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001593","Leptospira noguchii str. 2006001870"]]},{"id":"NCBITaxon:1001594","l":"","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001594","Leptospira interrogans serovar Australis str. LT2148"]]},{"id":"NCBITaxon:1001595","l":"","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001595","Leptospira noguchii serovar Panama str. CZ214"]]},{"id":"NCBITaxon:1001596","l":"","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001596","Leptospira interrogans serovar Djasiman str. LT1649"]]},{"id":"NCBITaxon:1001597","l":"","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001597","Leptospira interrogans serovar Canicola str. LT1962"]]},{"id":"NCBITaxon:1001598","l":"","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001598","Leptospira interrogans serovar Copenhageni str. LT2050"]]},{"id":"NCBITaxon:1001599","l":"","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001599","Leptospira interrogans serovar Grippotyphosa str. LT2186"]]},{"id":"NCBITaxon:1001601","l":"","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001601","Leptospira interrogans serovar Zanoni str. LT2156"]]},{"id":"NCBITaxon:1001602","l":"","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001602","Leptospira interrogans serovar Copenhageni str. Fiocruz LV2756C6"]]},{"id":"NCBITaxon:1001603","l":"","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001603","Leptospira interrogans serovar Copenhageni str. Fiocruz R154"]]},{"id":"NCBITaxon:1001704","l":"","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001704","Mycobacteroides abscessus subsp. bolletii 1S-151-0930"]]},{"id":"NCBITaxon:1001705","l":"","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001705","Mycobacteroides abscessus subsp. bolletii 1S-152-0914"]]},{"id":"NCBITaxon:1001706","l":"","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001706","Mycobacteroides abscessus subsp. bolletii 1S-153-0915"]]},{"id":"NCBITaxon:1001707","l":"","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001707","Mycobacteroides abscessus subsp. bolletii 1S-154-0310"]]},{"id":"NCBITaxon:1001708","l":"","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001708","Mycobacteroides abscessus subsp. bolletii 2B-0626"]]},{"id":"NCBITaxon:1001709","l":"","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001709","Mycobacteroides abscessus subsp. bolletii 2B-1231"]]},{"id":"NCBITaxon:1001710","l":"","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001710","Mycobacteroides abscessus subsp. bolletii 2B-0107"]]},{"id":"NCBITaxon:1001711","l":"","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001711","Mycobacteroides abscessus subsp. bolletii 2B-0912-R"]]},{"id":"NCBITaxon:1001712","l":"","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001712","Mycobacteroides abscessus subsp. bolletii 2B-0912-S"]]},{"id":"NCBITaxon:1001713","l":"","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001713","Mycobacteroides abscessus subsp. bolletii 2B-0307"]]},{"id":"NCBITaxon:1001715","l":"","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001715","Mycobacteroides abscessus 3A-0122-R"]]},{"id":"NCBITaxon:1001716","l":"","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001716","Mycobacteroides abscessus 3A-0122-S"]]},{"id":"NCBITaxon:1001717","l":"","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001717","Mycobacteroides abscessus 3A-0810-R"]]},{"id":"NCBITaxon:1001718","l":"","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001718","Mycobacteroides abscessus 3A-0731"]]},{"id":"NCBITaxon:1001719","l":"","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001719","Mycobacteroides abscessus 3A-0930-S"]]},{"id":"NCBITaxon:1001720","l":"","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001720","Mycobacteroides abscessus 3A-0930-R"]]},{"id":"NCBITaxon:1001721","l":"","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001721","Mycobacteroides abscessus 3A-0119-R"]]},{"id":"NCBITaxon:1001722","l":"","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001722","Mycobacteroides abscessus 4S-0303"]]},{"id":"NCBITaxon:1001723","l":"","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001723","Mycobacteroides abscessus 4S-0206"]]},{"id":"NCBITaxon:1001724","l":"","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001724","Mycobacteroides abscessus 4S-0116-S"]]},{"id":"NCBITaxon:1001725","l":"","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001725","Mycobacteroides abscessus 4S-0116-R"]]},{"id":"NCBITaxon:1001732","l":"","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1001732","Mycobacteroides abscessus 5S-0921"]]},{"id":"NCBITaxon:100174","l":"Clostridium peptidivorans","na":1,"nb":1,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A100174","Clostridium peptidivorans"]]},{"id":"NCBITaxon:1001986","l":"","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001986","Leptospira interrogans serovar Copenhageni str. 2006007831"]]},{"id":"NCBITaxon:1001987","l":"","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001987","Leptospira interrogans serovar Copenhageni str. 2001025091"]]},{"id":"NCBITaxon:1001989","l":"Escherichia coli PCN033","na":1,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A1001989","Escherichia coli PCN033"]]},{"id":"NCBITaxon:1002339","l":"","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1002339","Psychrobacter sp. 1501(2011)"]]},{"id":"NCBITaxon:1002526","l":"","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A1002526","Halopseudomonas formosensis"]]},{"id":"NCBITaxon:1002691","l":"Occallatibacter savannae","na":1,"nb":1,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A1002691","Occallatibacter savannae"]]},{"id":"NCBITaxon:1002795","l":"","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A1002795","Pectinatus sottacetonis"]]},{"id":"NCBITaxon:1002809","l":"Solibacillus silvestris StLB046","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1002809","Solibacillus silvestris StLB046"]]},{"id":"NCBITaxon:1003188","l":"","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A1003188","Salmonella enterica subsp. enterica serovar Agona str. SA-4"]]},{"id":"NCBITaxon:1003200","l":"","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1003200","Achromobacter insuavis AXX-A"]]},{"id":"NCBITaxon:1003201","l":"Rickettsia typhi str. TH1527","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1003201","Rickettsia typhi str. TH1527"]]},{"id":"NCBITaxon:1004165","l":"","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1004165","Photorhabdus caribbeanensis"]]},{"id":"NCBITaxon:1004166","l":"","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1004166","Photorhabdus hainanensis"]]},{"id":"NCBITaxon:1004261","l":"Oceanobacillus indicireducens","na":1,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A1004261","Oceanobacillus indicireducens"]]},{"id":"NCBITaxon:1004279","l":"","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1004279","Mesorhizobium muleiense"]]},{"id":"NCBITaxon:1004316","l":"Vibrio sonorensis","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A1004316","Vibrio sonorensis"]]},{"id":"NCBITaxon:1004322","l":"Vibrio crosai","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A1004322","Vibrio crosai"]]},{"id":"NCBITaxon:1004326","l":"Vibrio mexicanus","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A1004326","Vibrio mexicanus"]]},{"id":"NCBITaxon:1004836","l":"Gluconacetobacter sp. SXCC-1","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A1004836","Gluconacetobacter sp. SXCC-1"]]},{"id":"NCBITaxon:1005043","l":"Candidatus Regiella insecticola 5.15","na":1,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1005043","Candidatus Regiella insecticola 5.15"]]},{"id":"NCBITaxon:1005046","l":"","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1005046","[Haemophilus] ducreyi ATCC 33921"]]},{"id":"NCBITaxon:1005048","l":"Collimonas fungivorans Ter331","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1005048","Collimonas fungivorans Ter331"]]},{"id":"NCBITaxon:1005057","l":"Buchnera aphidicola str. Ua (Uroleucon ambrosiae)","na":1,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1005057","Buchnera aphidicola str. Ua (Uroleucon ambrosiae)"]]},{"id":"NCBITaxon:1005090","l":"Buchnera aphidicola str. Ak (Acyrthosiphon kondoi)","na":1,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1005090","Buchnera aphidicola str. Ak (Acyrthosiphon kondoi)"]]},{"id":"NCBITaxon:1005403","l":"Escherichia coli 93.0055","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A1005403","Escherichia coli 93.0055"]]},{"id":"NCBITaxon:1005404","l":"Escherichia coli 93.0056","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A1005404","Escherichia coli 93.0056"]]},{"id":"NCBITaxon:1005405","l":"Escherichia coli 94.0618","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A1005405","Escherichia coli 94.0618"]]},{"id":"NCBITaxon:1005462","l":"Escherichia coli 8.0566","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A1005462","Escherichia coli 8.0566"]]},{"id":"NCBITaxon:1005463","l":"Escherichia coli 8.0416","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A1005463","Escherichia coli 8.0416"]]},{"id":"NCBITaxon:1005464","l":"Escherichia coli 8.0569","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A1005464","Escherichia coli 8.0569"]]},{"id":"NCBITaxon:1005527","l":"Escherichia coli EC4421","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1005527","Escherichia coli EC4421"]]},{"id":"NCBITaxon:1005528","l":"Escherichia coli EC4422","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1005528","Escherichia coli EC4422"]]},{"id":"NCBITaxon:1005704","l":"Streptococcus oralis SK255","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1005704","Streptococcus oralis SK255"]]},{"id":"NCBITaxon:1005925","l":"Kordiimonas aestuarii","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1005925","Kordiimonas aestuarii"]]},{"id":"NCBITaxon:1006551","l":"Klebsiella michiganensis (strain ATCC 8724 / DSM 4798 / JCM 20051 / NBRC 3318 / NRRL B-199 / KCTC 1686 / BUCSAV 143 / CCM 1901)","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1006551","Klebsiella michiganensis KCTC 1686"]]},{"id":"NCBITaxon:1007064","l":"Streptococcus suis ST3","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1007064","Streptococcus suis ST3"]]},{"id":"NCBITaxon:1007065","l":"Escherichia coli M15","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1007065","Escherichia coli M15"]]},{"id":"NCBITaxon:1007098","l":"Deinococcus daejeonensis","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A1007098","Deinococcus daejeonensis"]]},{"id":"NCBITaxon:1007104","l":"Sphingomonas sp. S17","na":1,"nb":1,"a":[["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A1007104","Sphingomonas sp. S17"]]},{"id":"NCBITaxon:1007511","l":"Sphingobium limneticum","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A1007511","Sphingobium limneticum"]]},{"id":"NCBITaxon:1007656","l":"Pseudomonas fluorescens Wayne1","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1007656","Pseudomonas fluorescens Wayne1"]]},{"id":"NCBITaxon:1008392","l":"Chitinispirillum alkaliphilum","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A1008392","Chitinispirillum alkaliphilum"]]},{"id":"NCBITaxon:1009419","l":"Verrucomicrobia bacterium SCGC AAA164-N20","na":1,"nb":1,"a":[["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1009419","Verrucomicrobia bacterium SCGC AAA164-N20"]]},{"id":"NCBITaxon:1009421","l":"Verrucomicrobia bacterium SCGC AAA164-P11","na":1,"nb":1,"a":[["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1009421","Verrucomicrobia bacterium SCGC AAA164-P11"]]},{"id":"NCBITaxon:1009695","l":"Verrucomicrobia bacterium SCGC AAA164-A21","na":1,"nb":1,"a":[["inlet-envo-00000475.html","inlet"]],"b":[["NCBITaxon%3A1009695","Verrucomicrobia bacterium SCGC AAA164-A21"]]},{"id":"NCBITaxon:1009853","l":"Xanthomonas oryzae X11-5A","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1009853","Xanthomonas oryzae X11-5A"]]},{"id":"NCBITaxon:1009854","l":"Xanthomonas oryzae X8-1A","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1009854","Xanthomonas oryzae X8-1A"]]},{"id":"NCBITaxon:1010610","l":"","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1010610","Methylobacterium gnaphalii"]]},{"id":"NCBITaxon:1016997","l":"Polycladomyces subterraneus","na":1,"nb":1,"a":[["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A1016997","Polycladomyces subterraneus"]]},{"id":"NCBITaxon:1017018","l":"Paenimyroides anatoliense","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A1017018","Paenimyroides anatoliense"]]},{"id":"NCBITaxon:1017177","l":"Gluconacetobacter tumulicola","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1017177","Gluconacetobacter tumulicola"]]},{"id":"NCBITaxon:1017181","l":"Gluconacetobacter asukensis","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1017181","Gluconacetobacter asukensis"]]},{"id":"NCBITaxon:1017264","l":"Bordetella pertussis CS","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1017264","Bordetella pertussis CS"]]},{"id":"NCBITaxon:1017266","l":"Lactococcus garvieae UNIUD074","na":1,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1017266","Lactococcus garvieae UNIUD074"]]},{"id":"NCBITaxon:1017277","l":"","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A296995","Exiguobacterium indicum"]]},{"id":"NCBITaxon:102127","l":"","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A102127","Baaleninema simplex PCC 7105"]]},{"id":"NCBITaxon:102227","l":"","na":1,"nb":1,"a":[["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A102227","Pseudonocardia kongjuensis"]]},{"id":"NCBITaxon:1027249","l":"","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A1027249","Gracilibacillus kekensis"]]},{"id":"NCBITaxon:1027364","l":"Edwardsiella tarda DT","na":1,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1027364","Edwardsiella tarda DT"]]},{"id":"NCBITaxon:1027372","l":"Enterococcus faecalis OG1X","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1027372","Enterococcus faecalis OG1X"]]},{"id":"NCBITaxon:1027373","l":"Nitrosopumilus sp. AR","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1027373","Nitrosopumilus sp. AR"]]},{"id":"NCBITaxon:1027374","l":"Nitrosopumilus sp. SJ","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1027374","Nitrosopumilus sp. SJ"]]},{"id":"NCBITaxon:1027397","l":"Erwinia amylovora ACW56400","na":1,"nb":1,"a":[["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A1027397","Erwinia amylovora ACW56400"]]},{"id":"NCBITaxon:1028743","l":"Arenibacter hampyeongensis","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1028743","Arenibacter hampyeongensis"]]},{"id":"NCBITaxon:1028745","l":"Aestuariibaculum suncheonense","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1028745","Aestuariibaculum suncheonense"]]},{"id":"NCBITaxon:1028746","l":"","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1028746","Christiangramia aestuarii"]]},{"id":"NCBITaxon:1028749","l":"Microbulbifer gwangyangensis","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1028749","Microbulbifer gwangyangensis"]]},{"id":"NCBITaxon:1028750","l":"Photobacterium aestuarii","na":1,"nb":1,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["NCBITaxon%3A1028750","Photobacterium aestuarii"]]},{"id":"NCBITaxon:1028752","l":"Shewanella aestuarii","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1028752","Shewanella aestuarii"]]},{"id":"NCBITaxon:1028799","l":"Staphylococcus aureus subsp. aureus VC40","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1028799","Staphylococcus aureus subsp. aureus VC40"]]},{"id":"NCBITaxon:1028801","l":"Neorhizobium galegae bv. officinalis bv. officinalis str. HAMBI 1141","na":1,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A1028801","Neorhizobium galegae bv. officinalis bv. officinalis str. HAMBI 1141"]]},{"id":"NCBITaxon:1028804","l":"Haemophilus haemolyticus M21127","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1028804","Haemophilus haemolyticus M21127"]]},{"id":"NCBITaxon:1028805","l":"Haemophilus haemolyticus M21621","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1028805","Haemophilus haemolyticus M21621"]]},{"id":"NCBITaxon:1028806","l":"Haemophilus haemolyticus M21639","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1028806","Haemophilus haemolyticus M21639"]]},{"id":"NCBITaxon:102891","l":"Frankia sp. ACN1ag","na":1,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A102891","Frankia sp. ACN1ag"]]},{"id":"NCBITaxon:1028989","l":"Pseudomonas sp. StFLB209","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1028989","Pseudomonas sp. StFLB209"]]},{"id":"NCBITaxon:1029822","l":"","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1029822","Ligilactobacillus salivarius NIAS840"]]},{"id":"NCBITaxon:1029823","l":"Acinetobacter sp. P8-3-8","na":1,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1029823","Acinetobacter sp. P8-3-8"]]},{"id":"NCBITaxon:1029824","l":"Kocuria rhizophila P7-4","na":1,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1029824","Kocuria rhizophila P7-4"]]},{"id":"NCBITaxon:1029977","l":"Salmonella enterica subsp. enterica serovar Paratyphi B str. SARA42","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1029977","Salmonella enterica subsp. enterica serovar Paratyphi B str. SARA42"]]},{"id":"NCBITaxon:1029978","l":"Salmonella enterica subsp. enterica serovar Typhimurium str. SARA13","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1029978","Salmonella enterica subsp. enterica serovar Typhimurium str. SARA13"]]},{"id":"NCBITaxon:1029980","l":"Salmonella enterica subsp. enterica serovar Kentucky str. 5349","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1029980","Salmonella enterica subsp. enterica serovar Kentucky str. 5349"]]},{"id":"NCBITaxon:1029982","l":"Salmonella enterica subsp. enterica serovar Tallahassee str. 0012","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1029982","Salmonella enterica subsp. enterica serovar Tallahassee str. 0012"]]},{"id":"NCBITaxon:1029983","l":"Salmonella enterica subsp. enterica serovar Abony str. 0014","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1029983","Salmonella enterica subsp. enterica serovar Abony str. 0014"]]},{"id":"NCBITaxon:1029997","l":"Salmonella enterica subsp. enterica serovar Heidelberg str. SARA35","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1029997","Salmonella enterica subsp. enterica serovar Heidelberg str. SARA35"]]},{"id":"NCBITaxon:1030009","l":"Listeria monocytogenes M7","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1030009","Listeria monocytogenes M7"]]},{"id":"NCBITaxon:1030145","l":"Pseudomonas tolaasii PMS117","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A1030145","Pseudomonas tolaasii PMS117"]]},{"id":"NCBITaxon:1031273","l":"Gaetbulibacter lutimaris","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1031273","Gaetbulibacter lutimaris"]]},{"id":"NCBITaxon:1031711","l":"Ralstonia solanacearum Po82","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1031711","Ralstonia solanacearum Po82"]]},{"id":"NCBITaxon:1032","l":"Thiothrix sp.","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A1032","Thiothrix sp."]]},{"id":"NCBITaxon:1032071","l":"","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1032071","Aliarcobacter cryaerophilus D2610"]]},{"id":"NCBITaxon:1032475","l":"Marine group II euryarchaeote SCGC AAA288-C18","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A1032475","Marine group II euryarchaeote SCGC AAA288-C18"]]},{"id":"NCBITaxon:1032505","l":"Fusobacterium sp. OBRC1","na":1,"nb":1,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A1032505","Fusobacterium sp. OBRC1"]]},{"id":"NCBITaxon:1032866","l":"Pasteurella multocida subsp. gallicida str. Anand1_poultry","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1032866","Pasteurella multocida subsp. gallicida str. Anand1_poultry"]]},{"id":"NCBITaxon:1033813","l":"Escherichia coli NA114","na":1,"nb":1,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A1033813","Escherichia coli NA114"]]},{"id":"NCBITaxon:1033922","l":"Rhodococcus sp. WB1","na":1,"nb":1,"a":[["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A1033922","Rhodococcus sp. WB1"]]},{"id":"NCBITaxon:1033991","l":"Rhizobium leguminosarum bv. trifolii CB782","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1033991","Rhizobium leguminosarum bv. trifolii CB782"]]},{"id":"NCBITaxon:1033992","l":"Ectopseudomonas oleovorans MOIL14HWK12","na":1,"nb":1,"a":[["plant-bto-0001481.html","plant"]],"b":[["NCBITaxon%3A1033992","Ectopseudomonas oleovorans MOIL14HWK12"]]},{"id":"NCBITaxon:1033993","l":"Pseudomonas sp. MOIL14HWK12:I1","na":1,"nb":1,"a":[["plant-bto-0001481.html","plant"]],"b":[["NCBITaxon%3A1033993","Pseudomonas sp. MOIL14HWK12:I1"]]},{"id":"NCBITaxon:1033994","l":"Pseudomonas sp. MOIL14HWK12:I2","na":1,"nb":1,"a":[["plant-bto-0001481.html","plant"]],"b":[["NCBITaxon%3A1033994","Pseudomonas sp. MOIL14HWK12:I2"]]},{"id":"NCBITaxon:1034346","l":"Dielma fastidiosa","na":1,"nb":1,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A1034346","Dielma fastidiosa"]]},{"id":"NCBITaxon:1034471","l":"","na":1,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1034471","Xenorhabdus ishibashii"]]},{"id":"NCBITaxon:1034943","l":"Legionella massiliensis","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A1034943","Legionella massiliensis"]]},{"id":"NCBITaxon:1034944","l":"","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A1034944","Legionella tunisiensis"]]},{"id":"NCBITaxon:1035189","l":"Streptococcus infantis SK970","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1035189","Streptococcus infantis SK970"]]},{"id":"NCBITaxon:1035309","l":"Ceratocystis fimbriata CBS 114723","na":1,"nb":1,"a":[["plant-bto-0001481.html","plant"]],"b":[["NCBITaxon%3A1035309","Ceratocystis fimbriata CBS 114723"]]},{"id":"NCBITaxon:1035817","l":"Bifidobacterium longum subsp. longum KACC 91563","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1035817","Bifidobacterium longum subsp. longum KACC 91563"]]},{"id":"NCBITaxon:1035916","l":"Echinicola shivajiensis","na":1,"nb":1,"a":[["brackish-water-body-envo-01001321.html","brackish water body"]],"b":[["NCBITaxon%3A1035916","Echinicola shivajiensis"]]},{"id":"NCBITaxon:1036133","l":"Kistimonas scapharcae","na":1,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1036133","Kistimonas scapharcae"]]},{"id":"NCBITaxon:1036177","l":"Lactiplantibacillus plantarum subsp. plantarum NC8","na":1,"nb":1,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A1036177","Lactiplantibacillus plantarum subsp. plantarum NC8"]]},{"id":"NCBITaxon:1036180","l":"","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A1036180","Pseudoduganella lurida"]]},{"id":"NCBITaxon:1036182","l":"Paractinoplanes atraurantiacus","na":1,"nb":1,"a":[["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A1036182","Paractinoplanes atraurantiacus"]]},{"id":"NCBITaxon:1036674","l":"Idiomarina sp. A28L","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A1036674","Idiomarina sp. A28L"]]},{"id":"NCBITaxon:1036679","l":"Methanosarcina spelaei","na":1,"nb":1,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A1036679","Methanosarcina spelaei"]]},{"id":"NCBITaxon:1036735","l":"","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1036735","Bifidobacterium breve CECT 7263"]]},{"id":"NCBITaxon:1036778","l":"","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1036778","Allobosea lathyri"]]},{"id":"NCBITaxon:1036779","l":"","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1036779","Allobosea lupini"]]},{"id":"NCBITaxon:1036780","l":"","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1036780","Allobosea robiniae"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A103690","Nostoc sp. PCC 7120 = FACHB-418"]]},{"id":"NCBITaxon:103725","l":"","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A103725","Kutzneria kofuensis"]]},{"id":"NCBITaxon:1037262","l":"Salmonella enterica subsp. enterica serovar Typhimurium str. AZ 057","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1037262","Salmonella enterica subsp. enterica serovar Typhimurium str. AZ 057"]]},{"id":"NCBITaxon:1037377","l":"Chryseobacterium viscerum","na":1,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1037377","Chryseobacterium viscerum"]]},{"id":"NCBITaxon:1037409","l":"Bradyrhizobium japonicum USDA 6","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1037409","Bradyrhizobium japonicum USDA 6"]]},{"id":"NCBITaxon:1037890","l":"Klebsiella pneumoniae JH1","na":1,"nb":1,"a":[["urinary-tract-bto-0001244.html","urinary tract"]],"b":[["NCBITaxon%3A1037890","Klebsiella pneumoniae JH1"]]},{"id":"NCBITaxon:1037908","l":"Klebsiella pneumoniae 1162281","na":1,"nb":1,"a":[["urinary-tract-bto-0001244.html","urinary tract"]],"b":[["NCBITaxon%3A1037908","Klebsiella pneumoniae 1162281"]]},{"id":"NCBITaxon:1038014","l":"Aquimarina amphilecti","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1038014","Aquimarina amphilecti"]]},{"id":"NCBITaxon:103838","l":"Nonomuraea turkmeniaca","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A103838","Nonomuraea turkmeniaca"]]},{"id":"NCBITaxon:1038845","l":"Flavobacterium rakeshii","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1038845","Flavobacterium rakeshii"]]},{"id":"NCBITaxon:1038860","l":"Bradyrhizobium elkanii WSM2783","na":1,"nb":1,"a":[["plant-bto-0001481.html","plant"]],"b":[["NCBITaxon%3A1038860","Bradyrhizobium elkanii WSM2783"]]},{"id":"NCBITaxon:1038861","l":"Bradyrhizobium japonicum USDA 122","na":1,"nb":1,"a":[["plant-bto-0001481.html","plant"]],"b":[["NCBITaxon%3A1038861","Bradyrhizobium japonicum USDA 122"]]},{"id":"NCBITaxon:1038862","l":"Bradyrhizobium japonicum USDA 124","na":1,"nb":1,"a":[["plant-bto-0001481.html","plant"]],"b":[["NCBITaxon%3A1038862","Bradyrhizobium japonicum USDA 124"]]},{"id":"NCBITaxon:1038863","l":"Bradyrhizobium japonicum USDA 135","na":1,"nb":1,"a":[["plant-bto-0001481.html","plant"]],"b":[["NCBITaxon%3A1038863","Bradyrhizobium japonicum USDA 135"]]},{"id":"NCBITaxon:1038864","l":"Bradyrhizobium ottawense USDA 4","na":1,"nb":1,"a":[["plant-bto-0001481.html","plant"]],"b":[["NCBITaxon%3A1038864","Bradyrhizobium ottawense USDA 4"]]},{"id":"NCBITaxon:1038866","l":"Bradyrhizobium sp. WSM2793","na":1,"nb":1,"a":[["plant-bto-0001481.html","plant"]],"b":[["NCBITaxon%3A1038866","Bradyrhizobium sp. WSM2793"]]},{"id":"NCBITaxon:103891","l":"Veillonella criceti","na":1,"nb":1,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A103891","Veillonella criceti"]]},{"id":"NCBITaxon:1038922","l":"Pseudomonas fluorescens Q2-87","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1038922","Pseudomonas fluorescens Q2-87"]]},{"id":"NCBITaxon:1038923","l":"Pseudomonas fluorescens Q8r1-96","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1038923","Pseudomonas fluorescens Q8r1-96"]]},{"id":"NCBITaxon:1040964","l":"","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1040964","Ligilactobacillus ruminis SPM0211"]]},{"id":"NCBITaxon:1040978","l":"Cupriavidus taiwanensis STM 6018","na":1,"nb":1,"a":[["city-envo-00000856.html","city"]],"b":[["NCBITaxon%3A1040978","Cupriavidus taiwanensis STM 6018"]]},{"id":"NCBITaxon:1040981","l":"Mesorhizobium ciceri WSM4083","na":1,"nb":1,"a":[["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A1040981","Mesorhizobium ciceri WSM4083"]]},{"id":"NCBITaxon:1040988","l":"Bradyrhizobium sp. WSM4349","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1040988","Bradyrhizobium sp. WSM4349"]]},{"id":"NCBITaxon:1040989","l":"Bradyrhizobium sp. ARR65","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A1040989","Bradyrhizobium sp. ARR65"]]},{"id":"NCBITaxon:1041141","l":"Rhizobium leguminosarum bv. viciae 128C53","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1041141","Rhizobium leguminosarum bv. viciae 128C53"]]},{"id":"NCBITaxon:1041157","l":"Sinorhizobium meliloti WSM1022","na":1,"nb":1,"a":[["city-envo-00000856.html","city"]],"b":[["NCBITaxon%3A1041157","Sinorhizobium meliloti WSM1022"]]},{"id":"NCBITaxon:104205","l":"Streptomonospora salina","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A104205","Streptomonospora salina"]]},{"id":"NCBITaxon:1042399","l":"Lactobacillus delbrueckii subsp. bulgaricus CNCM I-1632","na":1,"nb":1,"a":[["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A1042399","Lactobacillus delbrueckii subsp. bulgaricus CNCM I-1632"]]},{"id":"NCBITaxon:1042400","l":"Lactobacillus delbrueckii subsp. bulgaricus CNCM I-1519","na":1,"nb":1,"a":[["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A1042400","Lactobacillus delbrueckii subsp. bulgaricus CNCM I-1519"]]},{"id":"NCBITaxon:1042402","l":"Lactococcus lactis subsp. lactis CNCM I-1631","na":1,"nb":1,"a":[["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A1042402","Lactococcus lactis subsp. lactis CNCM I-1631"]]},{"id":"NCBITaxon:1042403","l":"Bifidobacterium animalis subsp. lactis CNCM I-2494","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1042403","Bifidobacterium animalis subsp. lactis CNCM I-2494"]]},{"id":"NCBITaxon:1042404","l":"Streptococcus thermophilus CNCM I-1630","na":1,"nb":1,"a":[["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A1042404","Streptococcus thermophilus CNCM I-1630"]]},{"id":"NCBITaxon:1042877","l":"Thermococcus sp. 4557","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1042877","Thermococcus sp. 4557"]]},{"id":"NCBITaxon:1045558","l":"Neptunomonas qingdaonensis","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1045558","Neptunomonas qingdaonensis"]]},{"id":"NCBITaxon:1045764","l":"Methanothermobacter crinale","na":1,"nb":1,"a":[["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A1045764","Methanothermobacter crinale"]]},{"id":"NCBITaxon:1045854","l":"Weissella koreensis KACC 15510","na":1,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A1045854","Weissella koreensis KACC 15510"]]},{"id":"NCBITaxon:1045857","l":"Cronobacter sakazakii ES713","na":1,"nb":1,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A1045857","Cronobacter sakazakii ES713"]]},{"id":"NCBITaxon:1046128","l":"Vibrio zhanjiangensis","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A1046128","Vibrio zhanjiangensis"]]},{"id":"NCBITaxon:1046556","l":"Nocardioides daejeonensis","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A1046556","Nocardioides daejeonensis"]]},{"id":"NCBITaxon:1046629","l":"Streptococcus salivarius 57.I","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1046629","Streptococcus salivarius 57.I"]]},{"id":"NCBITaxon:104663","l":"Chitinophaga filiformis","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A104663","Chitinophaga filiformis"]]},{"id":"NCBITaxon:104665","l":"Pseudomonas sp. DSM 12877","na":1,"nb":1,"a":[["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A104665","Pseudomonas sp. DSM 12877"]]},{"id":"NCBITaxon:1046935","l":"BRC1 bacterium SCGC AAA257-C11","na":1,"nb":1,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A1046935","BRC1 bacterium SCGC AAA257-C11"]]},{"id":"NCBITaxon:1046954","l":"Cloacimonetes bacterium SCGC AAA252-E20","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046954","Cloacimonetes bacterium SCGC AAA252-E20"]]},{"id":"NCBITaxon:1046955","l":"Cloacimonetes bacterium SCGC AAA252-F02","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046955","Cloacimonetes bacterium SCGC AAA252-F02"]]},{"id":"NCBITaxon:1046956","l":"Cloacimonetes bacterium SCGC AAA252-G07","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046956","Cloacimonetes bacterium SCGC AAA252-G07"]]},{"id":"NCBITaxon:1046957","l":"Cloacimonetes bacterium SCGC AAA252-G08","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046957","Cloacimonetes bacterium SCGC AAA252-G08"]]},{"id":"NCBITaxon:1046958","l":"Cloacimonetes bacterium SCGC AAA252-I11","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046958","Cloacimonetes bacterium SCGC AAA252-I11"]]},{"id":"NCBITaxon:1046959","l":"Cloacimonetes bacterium SCGC AAA252-I16","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046959","Cloacimonetes bacterium SCGC AAA252-I16"]]},{"id":"NCBITaxon:1046960","l":"Cloacimonetes bacterium SCGC AAA252-K16","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046960","Cloacimonetes bacterium SCGC AAA252-K16"]]},{"id":"NCBITaxon:1046961","l":"Cloacimonetes bacterium SCGC AAA252-L05","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046961","Cloacimonetes bacterium SCGC AAA252-L05"]]},{"id":"NCBITaxon:1046962","l":"Cloacimonetes bacterium SCGC AAA252-L13","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046962","Cloacimonetes bacterium SCGC AAA252-L13"]]},{"id":"NCBITaxon:1046963","l":"Cloacimonetes bacterium SCGC AAA252-M08","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046963","Cloacimonetes bacterium SCGC AAA252-M08"]]},{"id":"NCBITaxon:1046964","l":"Cloacimonetes bacterium SCGC AAA252-N05","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046964","Cloacimonetes bacterium SCGC AAA252-N05"]]},{"id":"NCBITaxon:1046965","l":"Cloacimonetes bacterium SCGC AAA252-N14","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046965","Cloacimonetes bacterium SCGC AAA252-N14"]]},{"id":"NCBITaxon:1046966","l":"Cloacimonetes bacterium SCGC AAA252-N17","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046966","Cloacimonetes bacterium SCGC AAA252-N17"]]},{"id":"NCBITaxon:1046967","l":"Cloacimonetes bacterium SCGC AAA252-O02","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046967","Cloacimonetes bacterium SCGC AAA252-O02"]]},{"id":"NCBITaxon:1046970","l":"Cloacimonetes bacterium SCGC AAA252-O17","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046970","Cloacimonetes bacterium SCGC AAA252-O17"]]},{"id":"NCBITaxon:1046971","l":"Cloacimonetes bacterium SCGC AAA252-P02","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046971","Cloacimonetes bacterium SCGC AAA252-P02"]]},{"id":"NCBITaxon:1046972","l":"Cloacimonetes bacterium SCGC AAA252-P10","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046972","Cloacimonetes bacterium SCGC AAA252-P10"]]},{"id":"NCBITaxon:1046973","l":"Cloacimonetes bacterium SCGC AAA252-P14","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046973","Cloacimonetes bacterium SCGC AAA252-P14"]]},{"id":"NCBITaxon:1046974","l":"Cloacimonetes bacterium SCGC AAA255-B16","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046974","Cloacimonetes bacterium SCGC AAA255-B16"]]},{"id":"NCBITaxon:1046975","l":"Cloacimonetes bacterium SCGC AAA255-C20","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046975","Cloacimonetes bacterium SCGC AAA255-C20"]]},{"id":"NCBITaxon:1046978","l":"Cloacimonetes bacterium SCGC AAA255-L20","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046978","Cloacimonetes bacterium SCGC AAA255-L20"]]},{"id":"NCBITaxon:1046983","l":"Hydrogenedentes bacterium JGI 0000059-N10","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1046983","Hydrogenedentes bacterium JGI 0000059-N10"]]},{"id":"NCBITaxon:1046991","l":"Acetothermia bacterium SCGC AAA255-C06","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046991","Acetothermia bacterium SCGC AAA255-C06"]]},{"id":"NCBITaxon:1047002","l":"Microgenomates bacterium SCGC AAA255-J07","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1047002","Microgenomates bacterium SCGC AAA255-J07"]]},{"id":"NCBITaxon:1047006","l":"Omnitrophica bacterium SCGC AAA252-B19","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1047006","Omnitrophica bacterium SCGC AAA252-B19"]]},{"id":"NCBITaxon:1047007","l":"Omnitrophica bacterium SCGC AAA257-O07","na":1,"nb":1,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A1047007","Omnitrophica bacterium SCGC AAA257-O07"]]},{"id":"NCBITaxon:1047009","l":"Fidelibacterota bacterium SCGC AAA011-A05","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047009","Fidelibacterota bacterium SCGC AAA011-A05"]]},{"id":"NCBITaxon:1047012","l":"Caldiserica bacterium JGI 0000059-M03","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047012","Caldiserica bacterium JGI 0000059-M03"]]},{"id":"NCBITaxon:1047014","l":"Aminicenantes bacterium SCGC AAA252-B17","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1047014","Aminicenantes bacterium SCGC AAA252-B17"]]},{"id":"NCBITaxon:1047053","l":"Atribacteria bacterium JGI 0000059-I14","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047053","Atribacteria bacterium JGI 0000059-I14"]]},{"id":"NCBITaxon:1047054","l":"Fidelibacterota bacterium SCGC AAA257-N23","na":1,"nb":1,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A1047054","Fidelibacterota bacterium SCGC AAA257-N23"]]},{"id":"NCBITaxon:1047055","l":"Fidelibacterota bacterium JGI 0000039-D08","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047055","Fidelibacterota bacterium JGI 0000039-D08"]]},{"id":"NCBITaxon:1047056","l":"Fidelibacterota bacterium JGI 0000039-E15","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047056","Fidelibacterota bacterium JGI 0000039-E15"]]},{"id":"NCBITaxon:1047058","l":"Fidelibacterota bacterium JGI 0000039-O11","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047058","Fidelibacterota bacterium JGI 0000039-O11"]]},{"id":"NCBITaxon:1047059","l":"Fidelibacterota bacterium JGI 0000059-D20","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047059","Fidelibacterota bacterium JGI 0000059-D20"]]},{"id":"NCBITaxon:1047060","l":"Fidelibacterota bacterium JGI 0000059-E23","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047060","Fidelibacterota bacterium JGI 0000059-E23"]]},{"id":"NCBITaxon:1047061","l":"Fidelibacterota bacterium JGI 0000059-L03","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047061","Fidelibacterota bacterium JGI 0000059-L03"]]},{"id":"NCBITaxon:1047063","l":"WS1 bacterium JGI 0000059-K21","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047063","WS1 bacterium JGI 0000059-K21"]]},{"id":"NCBITaxon:1047066","l":"Latescibacteria bacterium SCGC AAA257-K07","na":1,"nb":1,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A1047066","Latescibacteria bacterium SCGC AAA257-K07"]]},{"id":"NCBITaxon:1047073","l":"Cloacimonetes bacterium JGI 0000039-I17","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047073","Cloacimonetes bacterium JGI 0000039-I17"]]},{"id":"NCBITaxon:1047076","l":"Cloacimonetes bacterium JGI 0000039-M09","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047076","Cloacimonetes bacterium JGI 0000039-M09"]]},{"id":"NCBITaxon:1047077","l":"Cloacimonetes bacterium JGI 0000039-P09","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047077","Cloacimonetes bacterium JGI 0000039-P09"]]},{"id":"NCBITaxon:1047078","l":"Cloacimonetes bacterium JGI 0000059-F17","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047078","Cloacimonetes bacterium JGI 0000059-F17"]]},{"id":"NCBITaxon:1047079","l":"Cloacimonetes bacterium JGI 0000059-L07","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047079","Cloacimonetes bacterium JGI 0000059-L07"]]},{"id":"NCBITaxon:1047080","l":"Cloacimonetes bacterium JGI 0000059-P03","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047080","Cloacimonetes bacterium JGI 0000059-P03"]]},{"id":"NCBITaxon:1047081","l":"Cloacimonetes bacterium JGI 0000059-P11","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047081","Cloacimonetes bacterium JGI 0000059-P11"]]},{"id":"NCBITaxon:1048221","l":"Mucilaginibacter litoreus","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1048221","Mucilaginibacter litoreus"]]},{"id":"NCBITaxon:1048245","l":"","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1048245","Mycobacterium canetti CIPT 140010059"]]},{"id":"NCBITaxon:1048332","l":"Streptococcus salivarius CCHSS3","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1048332","Streptococcus salivarius CCHSS3"]]},{"id":"NCBITaxon:1048340","l":"Marininema mesophilum","na":1,"nb":1,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A1048340","Marininema mesophilum"]]},{"id":"NCBITaxon:1048357","l":"Nocardiopsis coralliicola","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A1048357","Nocardiopsis coralliicola"]]},{"id":"NCBITaxon:1048380","l":"Fusibacter sp. 3D3","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A1048380","Fusibacter sp. 3D3"]]},{"id":"NCBITaxon:1048396","l":"Halopenitus persicus","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A1048396","Halopenitus persicus"]]},{"id":"NCBITaxon:1048689","l":"","na":1,"nb":1,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A1048689","Escherichia coli O55:H7 str. RM12579"]]},{"id":"NCBITaxon:1049564","l":"endosymbiont of Tevnia jerichonana (vent Tica)","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1049564","endosymbiont of Tevnia jerichonana (vent Tica)"]]},{"id":"NCBITaxon:1049582","l":"Deinococcus enclensis","na":1,"nb":1,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["NCBITaxon%3A1049582","Deinococcus enclensis"]]},{"id":"NCBITaxon:1049980","l":"","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1049980","Leptospira santarosai str. HAI134"]]},{"id":"NCBITaxon:1049981","l":"","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1049981","Leptospira santarosai str. HAI1349"]]},{"id":"NCBITaxon:1049982","l":"","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1049982","Leptospira santarosai str. HAI1380"]]},{"id":"NCBITaxon:1049983","l":"","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1049983","Leptospira santarosai str. HAI821"]]},{"id":"NCBITaxon:1050153","l":"","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1050153","Ornithinimicrobium murale"]]},{"id":"NCBITaxon:1050174","l":"","na":1,"nb":1,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A1050174","Corynebacterium epidermidicanis"]]},{"id":"NCBITaxon:1051006","l":"","na":1,"nb":1,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A1051006","[Propionibacterium] namnetense SK182B-JCVI"]]},{"id":"NCBITaxon:1051075","l":"Paracoccus denitrificans SD1","na":1,"nb":1,"a":[["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A1051075","Paracoccus denitrificans SD1"]]},{"id":"NCBITaxon:1051531","l":"Saccharothrix tamanrassetensis","na":1,"nb":1,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A1051531","Saccharothrix tamanrassetensis"]]},{"id":"NCBITaxon:1051651","l":"Lacticaseibacillus casei 21/1","na":1,"nb":1,"a":[["silage-envo-00003030.html","silage"]],"b":[["NCBITaxon%3A1051651","Lacticaseibacillus casei 21/1"]]},{"id":"NCBITaxon:1051653","l":"","na":1,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A1051653","Lacticaseibacillus casei A2-362"]]},{"id":"NCBITaxon:1051654","l":"","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1051654","Lacticaseibacillus casei CRF28"]]},{"id":"NCBITaxon:1051658","l":"","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1051658","Lacticaseibacillus casei T71499"]]},{"id":"NCBITaxon:1051659","l":"","na":1,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A1051659","Lacticaseibacillus casei UCD174"]]},{"id":"NCBITaxon:1052014","l":"","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1052014","Natronococcus roseus"]]},{"id":"NCBITaxon:1052017","l":"Leucobacter margaritiformis","na":1,"nb":1,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A1052017","Leucobacter margaritiformis"]]},{"id":"NCBITaxon:1052257","l":"Aquihabitans daechungensis","na":1,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"]],"b":[["NCBITaxon%3A1052257","Aquihabitans daechungensis"]]},{"id":"NCBITaxon:1052260","l":"Klenkia soli","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A1052260","Klenkia soli"]]},{"id":"NCBITaxon:1053220","l":"Bacillus cereus MSX-A1","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1053220","Bacillus cereus MSX-A1"]]},{"id":"NCBITaxon:1053221","l":"Bacillus cereus MSX-A12","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1053221","Bacillus cereus MSX-A12"]]},{"id":"NCBITaxon:1053222","l":"Bacillus cereus MSX-D12","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1053222","Bacillus cereus MSX-D12"]]},{"id":"NCBITaxon:1054202","l":"Rhodobacter viridis","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1054202","Rhodobacter viridis"]]},{"id":"NCBITaxon:1054217","l":"Thermoplasmatales archaeon BRNA1","na":1,"nb":1,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A1054217","Thermoplasmatales archaeon BRNA1"]]},{"id":"NCBITaxon:105422","l":"","na":1,"nb":1,"a":[["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A105422","Streptacidiphilus carbonis"]]},{"id":"NCBITaxon:1055192","l":"Comamonas sp. B-9","na":1,"nb":1,"a":[["pulp-bto-0001142.html","pulp"]],"b":[["NCBITaxon%3A1055192","Comamonas sp. B-9"]]},{"id":"NCBITaxon:1055466","l":"Rhodococcus canchipurensis","na":1,"nb":1,"a":[["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A1055466","Rhodococcus canchipurensis"]]},{"id":"NCBITaxon:1055526","l":"Candidatus Paraburkholderia kirkii UZHbot1","na":1,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A1055526","Candidatus Paraburkholderia kirkii UZHbot1"]]},{"id":"NCBITaxon:1056810","l":"","na":1,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A1056810","Prolinoborus fasciculus"]]},{"id":"NCBITaxon:106147","l":"Pelistega europaea","na":1,"nb":1,"a":[["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["NCBITaxon%3A106147","Pelistega europaea"]]},{"id":"NCBITaxon:1062","l":"Rhodobacter sp.","na":1,"nb":1,"a":[["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["NCBITaxon%3A1062","Rhodobacter sp."]]},{"id":"NCBITaxon:1069475","l":"Arthrobacter paludis","na":1,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["NCBITaxon%3A1069475","Arthrobacter paludis"]]},{"id":"NCBITaxon:1069495","l":"Escherichia coli XH001","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1069495","Escherichia coli XH001"]]},{"id":"NCBITaxon:1069608","l":"Neisseria meningitidis 93003","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1069608","Neisseria meningitidis 93003"]]},{"id":"NCBITaxon:1069609","l":"Neisseria meningitidis 93004","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1069609","Neisseria meningitidis 93004"]]},{"id":"NCBITaxon:1069610","l":"Neisseria meningitidis NM255","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1069610","Neisseria meningitidis NM255"]]},{"id":"NCBITaxon:1069612","l":"Neisseria meningitidis NM183","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1069612","Neisseria meningitidis NM183"]]},{"id":"NCBITaxon:1069613","l":"Neisseria meningitidis NM2781","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1069613","Neisseria meningitidis NM2781"]]},{"id":"NCBITaxon:1069614","l":"Neisseria meningitidis 69166","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1069614","Neisseria meningitidis 69166"]]},{"id":"NCBITaxon:1069615","l":"Neisseria meningitidis NM576","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1069615","Neisseria meningitidis NM576"]]},{"id":"NCBITaxon:1069616","l":"Neisseria meningitidis 98008","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1069616","Neisseria meningitidis 98008"]]},{"id":"NCBITaxon:1069617","l":"Neisseria meningitidis 80179","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1069617","Neisseria meningitidis 80179"]]},{"id":"NCBITaxon:1069618","l":"Neisseria meningitidis 92045","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1069618","Neisseria meningitidis 92045"]]},{"id":"NCBITaxon:1069619","l":"Neisseria meningitidis NM2657","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1069619","Neisseria meningitidis NM2657"]]},{"id":"NCBITaxon:1069620","l":"Neisseria meningitidis NM2795","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1069620","Neisseria meningitidis NM2795"]]},{"id":"NCBITaxon:1069621","l":"Neisseria meningitidis NM3081","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1069621","Neisseria meningitidis NM3081"]]},{"id":"NCBITaxon:1069622","l":"Neisseria meningitidis NM3001","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1069622","Neisseria meningitidis NM3001"]]},{"id":"NCBITaxon:1069623","l":"Streptococcus pneumoniae GA05578","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1069623","Streptococcus pneumoniae GA05578"]]},{"id":"NCBITaxon:1069624","l":"Streptococcus pneumoniae GA04216","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1069624","Streptococcus pneumoniae GA04216"]]},{"id":"NCBITaxon:1069626","l":"Streptococcus pneumoniae GA02506","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1069626","Streptococcus pneumoniae GA02506"]]},{"id":"NCBITaxon:1069627","l":"Streptococcus pneumoniae GA04672","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1069627","Streptococcus pneumoniae GA04672"]]},{"id":"NCBITaxon:1069628","l":"Streptococcus pneumoniae GA08825","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1069628","Streptococcus pneumoniae GA08825"]]},{"id":"NCBITaxon:1069963","l":"Janibacter alkaliphilus","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A1069963","Janibacter alkaliphilus"]]},{"id":"NCBITaxon:1070866","l":"Amycolatopsis dongchuanensis","na":1,"nb":1,"a":[["watercourse-envo-00000029.html","watercourse"]],"b":[["NCBITaxon%3A1070866","Amycolatopsis dongchuanensis"]]},{"id":"NCBITaxon:1071054","l":"","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1071054","Domibacillus robiginosus"]]},{"id":"NCBITaxon:1071078","l":"Bacillus sp. NSP9.1","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A1071078","Bacillus sp. NSP9.1"]]},{"id":"NCBITaxon:1071079","l":"Bacillus sp. SB47","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A1071079","Bacillus sp. SB47"]]},{"id":"NCBITaxon:1071395","l":"Heyndrickxia coagulans XZL4","na":1,"nb":1,"a":[["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A1071395","Heyndrickxia coagulans XZL4"]]},{"id":"NCBITaxon:1071400","l":"","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A1071400","Lentilactobacillus buchneri subsp. silagei CD034"]]},{"id":"NCBITaxon:1071679","l":"Caballeronia grimmiae","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A1071679","Caballeronia grimmiae"]]},{"id":"NCBITaxon:1071886","l":"Streptococcus troglodytidis","na":1,"nb":1,"a":[["foot-bto-0000476.html","foot"]],"b":[["NCBITaxon%3A1071886","Streptococcus troglodytidis"]]},{"id":"NCBITaxon:1071983","l":"","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1071983","Legionella cardiaca"]]},{"id":"NCBITaxon:1072459","l":"Escherichia coli O7:K1 str. CE10","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1072459","Escherichia coli O7:K1 str. CE10"]]},{"id":"NCBITaxon:1073382","l":"Aeromonas veronii AER39","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1073382","Aeromonas veronii AER39"]]},{"id":"NCBITaxon:1073423","l":"Carnobacterium iners","na":1,"nb":1,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A1073423","Carnobacterium iners"]]},{"id":"NCBITaxon:1074112","l":"Streptococcus mutans TCI-99","na":1,"nb":1,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A1074112","Streptococcus mutans TCI-99"]]},{"id":"NCBITaxon:1074467","l":"","na":1,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A1074467","Companilactobacillus heilongjiangensis"]]},{"id":"NCBITaxon:1074889","l":"Blattabacterium sp. (Mastotermes darwiniensis) str. MADAR","na":1,"nb":1,"a":[["hindgut-bto-0000510.html","hindgut"]],"b":[["NCBITaxon%3A1074889","Blattabacterium sp. (Mastotermes darwiniensis) str. MADAR"]]},{"id":"NCBITaxon:1075088","l":"Corynebacterium glutamicum S9114","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1075088","Corynebacterium glutamicum S9114"]]},{"id":"NCBITaxon:1075089","l":"Pasteurella multocida 36950","na":1,"nb":1,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A1075089","Pasteurella multocida 36950"]]},{"id":"NCBITaxon:107634","l":"Methylosinus sp. LW2","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A107634","Methylosinus sp. LW2"]]},{"id":"NCBITaxon:1076412","l":"Pelosinus defluvii","na":1,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A1076412","Pelosinus defluvii"]]},{"id":"NCBITaxon:1076524","l":"Rhodanobacter sp. OR92","na":1,"nb":1,"a":[["ridge-envo-00000283.html","ridge"]],"b":[["NCBITaxon%3A1076524","Rhodanobacter sp. OR92"]]},{"id":"NCBITaxon:1076588","l":"Thiolapillus brandeum","na":1,"nb":1,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A1076588","Thiolapillus brandeum"]]},{"id":"NCBITaxon:1076695","l":"Halanaerobium sehlinense","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A1076695","Halanaerobium sehlinense"]]},{"id":"NCBITaxon:1077256","l":"Methanosphaera cuniculi","na":1,"nb":1,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"]],"b":[["NCBITaxon%3A1077256","Methanosphaera cuniculi"]]},{"id":"NCBITaxon:1077936","l":"Pontibacter lucknowensis","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A1077936","Pontibacter lucknowensis"]]},{"id":"NCBITaxon:1077944","l":"Streptomyces muensis","na":1,"nb":1,"a":[["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["NCBITaxon%3A1077944","Streptomyces muensis"]]},{"id":"NCBITaxon:1078","l":"Rhodopseudomonas sp.","na":1,"nb":1,"a":[["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["NCBITaxon%3A1078","Rhodopseudomonas sp."]]},{"id":"NCBITaxon:1078016","l":"Rhodococcus erythropolis XP","na":1,"nb":1,"a":[["resting-cell-bto-0001170.html","resting cell"]],"b":[["NCBITaxon%3A1078016","Rhodococcus erythropolis XP"]]},{"id":"NCBITaxon:1078050","l":"Seleniivibrio woodruffii","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A1078050","Seleniivibrio woodruffii"]]},{"id":"NCBITaxon:107806","l":"Buchnera aphidicola subsp. Acyrthosiphon pisum (strain APS)","na":1,"nb":1,"a":[["embryo-bto-0000379.html","embryo"]],"b":[["NCBITaxon%3A107806","Buchnera aphidicola str. APS (Acyrthosiphon pisum)"]]},{"id":"NCBITaxon:107820","l":"","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A107820","Thioalkalivibrio nitratis"]]},{"id":"NCBITaxon:1078754","l":"Dyadobacter arcticus","na":1,"nb":1,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A1078754","Dyadobacter arcticus"]]},{"id":"NCBITaxon:1079469","l":"Salmonella enterica subsp. enterica serovar Saintpaul str. JO2008","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1079469","Salmonella enterica subsp. enterica serovar Saintpaul str. JO2008"]]},{"id":"NCBITaxon:1079470","l":"Salmonella enterica subsp. enterica serovar Pullorum str. 19945","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1079470","Salmonella enterica subsp. enterica serovar Pullorum str. 19945"]]},{"id":"NCBITaxon:1079473","l":"Salmonella enterica subsp. enterica serovar Montevideo str. 8387","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1079473","Salmonella enterica subsp. enterica serovar Montevideo str. 8387"]]},{"id":"NCBITaxon:1079474","l":"Salmonella enterica subsp. enterica serovar Javiana str. 10721","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1079474","Salmonella enterica subsp. enterica serovar Javiana str. 10721"]]},{"id":"NCBITaxon:1079477","l":"Salmonella enterica subsp. enterica serovar Muenchen str. baa1594","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1079477","Salmonella enterica subsp. enterica serovar Muenchen str. baa1594"]]},{"id":"NCBITaxon:1079478","l":"Salmonella enterica subsp. enterica serovar Muenchen str. baa1674","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1079478","Salmonella enterica subsp. enterica serovar Muenchen str. baa1674"]]},{"id":"NCBITaxon:108003","l":"","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A108003","Thioalkalivibrio denitrificans"]]},{"id":"NCBITaxon:1080072","l":"Streptococcus dentasini","na":1,"nb":1,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A1080072","Streptococcus dentasini"]]},{"id":"NCBITaxon:1080187","l":"Cupriavidus sp. UYPR2.512","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1080187","Cupriavidus sp. UYPR2.512"]]},{"id":"NCBITaxon:1081040","l":"","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1081040","Microbacterium murale"]]},{"id":"NCBITaxon:1081640","l":"Sphingomonas elodea ATCC 31461","na":1,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A1081640","Sphingomonas elodea ATCC 31461"]]},{"id":"NCBITaxon:1082276","l":"Hydrogenispora ethanolica","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1082276","Hydrogenispora ethanolica"]]},{"id":"NCBITaxon:1082479","l":"","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A1082479","Limimonas halophila"]]},{"id":"NCBITaxon:1082933","l":"Mesorhizobium amorphae CCNWGS0123","na":1,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A1082933","Mesorhizobium amorphae CCNWGS0123"]]},{"id":"NCBITaxon:1084229","l":"","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1084229","Yersinia pestis biovar Orientalis str. BA200901703"]]},{"id":"NCBITaxon:1085538","l":"Leptospira interrogans serovar Bataviae str. HAI135","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1085538","Leptospira interrogans serovar Bataviae str. HAI135"]]},{"id":"NCBITaxon:1085628","l":"Streptomyces sp. Wigar10","na":1,"nb":1,"a":[["bulb-bto-0000159.html","bulb"]],"b":[["NCBITaxon%3A1085628","Streptomyces sp. Wigar10"]]},{"id":"NCBITaxon:1085644","l":"Allofrancisella frigidaquae","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A1085644","Allofrancisella frigidaquae"]]},{"id":"NCBITaxon:1085647","l":"Allofrancisella inopinata","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A1085647","Allofrancisella inopinata"]]},{"id":"NCBITaxon:1086030","l":"","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1086030","Shigella flexneri 5a str. M90T"]]},{"id":"NCBITaxon:1087253","l":"Nocardioides marmoraquaticus","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1087253","Nocardioides marmoraquaticus"]]},{"id":"NCBITaxon:1087277","l":"Williamsia spongiae","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1087277","Williamsia spongiae"]]},{"id":"NCBITaxon:1087448","l":"Exiguobacterium antarcticum B7","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A1087448","Exiguobacterium antarcticum B7"]]},{"id":"NCBITaxon:1087453","l":"Corynebacterium pseudotuberculosis 42/02-A","na":1,"nb":1,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A1087453","Corynebacterium pseudotuberculosis 42/02-A"]]},{"id":"NCBITaxon:1087483","l":"Mycobacteroides abscessus 47J26","na":1,"nb":1,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1087483","Mycobacteroides abscessus 47J26"]]},{"id":"NCBITaxon:1088719","l":"Aliivibrio fischeri SR5","na":1,"nb":1,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["NCBITaxon%3A1088719","Aliivibrio fischeri SR5"]]},{"id":"NCBITaxon:1088720","l":"Lacticaseibacillus rhamnosus ATCC 8530","na":1,"nb":1,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A1088720","Lacticaseibacillus rhamnosus ATCC 8530"]]},{"id":"NCBITaxon:1089433","l":"Francisella noatunensis subsp. noatunensis FSC772","na":1,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A1089433","Francisella noatunensis subsp. noatunensis FSC772"]]},{"id":"NCBITaxon:1089442","l":"Pediococcus damnosus 9-6b","na":1,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A1089442","Pediococcus damnosus 9-6b"]]},{"id":"NCBITaxon:1089446","l":"Corynebacterium pseudotuberculosis 267","na":1,"nb":1,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A1089446","Corynebacterium pseudotuberculosis 267"]]},{"id":"NCBITaxon:1089456","l":"Pseudomonas aeruginosa NCGM2.S1","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1089456","Pseudomonas aeruginosa NCGM2.S1"]]},{"id":"NCBITaxon:1093787","l":"Pseudomonas aeruginosa DK2","na":1,"nb":1,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1093787","Pseudomonas aeruginosa DK2"]]},{"id":"NCBITaxon:1094175","l":"Pseudomonas syringae pv. theae NCPPB 2598","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1094175","Pseudomonas syringae pv. theae NCPPB 2598"]]},{"id":"NCBITaxon:1094980","l":"Methanolobus psychrophilus R15","na":1,"nb":1,"a":[["marsh-envo-00000035.html","marsh"]],"b":[["NCBITaxon%3A1094980","Methanolobus psychrophilus R15"]]},{"id":"NCBITaxon:1095955","l":"Treponema pallidum subsp. pallidum str. Sea 81-4","na":1,"nb":1,"a":[["central-nervous-system-bto-0000227.html","central nervous system"]],"b":[["NCBITaxon%3A1095955","Treponema pallidum subsp. pallidum str. Sea 81-4"]]},{"id":"NCBITaxon:1096546","l":"Methylobacterium sp. GXF4","na":1,"nb":1,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["NCBITaxon%3A1096546","Methylobacterium sp. GXF4"]]},{"id":"NCBITaxon:1097668","l":"Burkholderia sp. YI23","na":1,"nb":1,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A1097668","Burkholderia sp. YI23"]]},{"id":"NCBITaxon:1100721","l":"Limnohabitans sp. Rim47","na":1,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A1100721","Limnohabitans sp. Rim47"]]},{"id":"NCBITaxon:1101193","l":"Methylotenera versatilis 7","na":1,"nb":1,"a":[["lake-envo-00000020.html","lake"]],"b":[["NCBITaxon%3A1101193","Methylotenera versatilis 7"]]},{"id":"NCBITaxon:1101402","l":"Flavobacterium aciduliphilum","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A1101402","Flavobacterium aciduliphilum"]]},{"id":"NCBITaxon:1104324","l":"","na":1,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A1104324","Pyrobaculum ferrireducens"]]},{"id":"NCBITaxon:1104565","l":"Candidatus Poribacteria bacterium WGA-4CII","na":1,"nb":1,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["NCBITaxon%3A1104565","Candidatus Poribacteria bacterium WGA-4CII"]]},{"id":"NCBITaxon:1104566","l":"Candidatus Poribacteria bacterium WGA-3G","na":1,"nb":1,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["NCBITaxon%3A1104566","Candidatus Poribacteria bacterium WGA-3G"]]},{"id":"NCBITaxon:1104568","l":"Synergistetes bacterium JGI 0000079-D21","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1104568","Synergistetes bacterium JGI 0000079-D21"]]},{"id":"NCBITaxon:1104603","l":"Atribacteria bacterium JGI 0000079-L04","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1104603","Atribacteria bacterium JGI 0000079-L04"]]},{"id":"NCBITaxon:1104604","l":"Atribacteria bacterium JGI 0000079-F20","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1104604","Atribacteria bacterium JGI 0000079-F20"]]},{"id":"NCBITaxon:1104605","l":"Armatimonadetes bacterium JGI 0000077-K19","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1104605","Armatimonadetes bacterium JGI 0000077-K19"]]},{"id":"NCBITaxon:1104619","l":"Hydrogenedentes bacterium JGI 0000077-D07","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1104619","Hydrogenedentes bacterium JGI 0000077-D07"]]},{"id":"NCBITaxon:110662","l":"Synechococcus sp. CC9605","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A110662","Synechococcus sp. CC9605"]]},{"id":"NCBITaxon:110663","l":"Synechococcus sp. CC9616","na":1,"nb":1,"a":[["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"]],"b":[["NCBITaxon%3A110663","Synechococcus sp. CC9616"]]},{"id":"NCBITaxon:1108140","l":"Burkholderia catarinensis","na":1,"nb":1,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A1108140","Burkholderia catarinensis"]]},{"id":"NCBITaxon:1108595","l":"Chromobacterium vaccinii","na":1,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["NCBITaxon%3A1108595","Chromobacterium vaccinii"]]},{"id":"NCBITaxon:1108812","l":"","na":1,"nb":1,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A1108812","Mycolicibacter longobardus"]]},{"id":"NCBITaxon:111015","l":"Actinomyces radicidentis","na":1,"nb":1,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A111015","Actinomyces radicidentis"]]},{"id":"NCBITaxon:1110504","l":"Mycoplasmopsis agalactiae 14628","na":1,"nb":1,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1110504","Mycoplasmopsis agalactiae 14628"]]},{"id":"NCBITaxon:1110545","l":"Methanosaeta pelagica","na":1,"nb":1,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["NCBITaxon%3A1110545","Methanosaeta pelagica"]]},{"id":"NCBITaxon:1111121","l":"","na":1,"nb":1,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A1111121","Atopobium sp. BV3Ac4"]]},{"id":"NCBITaxon:1111140","l":"Herminiimonas contaminans","na":1,"nb":1,"a":[["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["NCBITaxon%3A1111140","Herminiimonas contaminans"]]},{"id":"NCBITaxon:1111454","l":"","na":1,"nb":1,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A1111454","Megasphaera vaginalis (ex Srinivasan et al. 2021)"]]},{"id":"NCBITaxon:1111677","l":"Enterococcus faecalis M7","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1111677","Enterococcus faecalis M7"]]},{"id":"NCBITaxon:1111760","l":"Streptococcus troglodytae","na":1,"nb":1,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A1111760","Streptococcus troglodytae"]]},{"id":"NCBITaxon:1112211","l":"Janthinobacterium lividum PAMC 25724","na":1,"nb":1,"a":[["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A1112211","Janthinobacterium lividum PAMC 25724"]]},{"id":"NCBITaxon:1112217","l":"Pseudomonas psychrotolerans L19","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1112217","Pseudomonas psychrotolerans L19"]]},{"id":"NCBITaxon:1112272","l":"Hyphomicrobium sp. 802","na":1,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A1112272","Hyphomicrobium sp. 802"]]},{"id":"NCBITaxon:1112912","l":"Brucella suis VBI22","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1112912","Brucella suis VBI22"]]},{"id":"NCBITaxon:1114867","l":"Flavobacterium plurextorum","na":1,"nb":1,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["NCBITaxon%3A1114867","Flavobacterium plurextorum"]]},{"id":"NCBITaxon:1114878","l":"Geomobilimonas luticola","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A1114878","Geomobilimonas luticola"]]},{"id":"NCBITaxon:1115809","l":"","na":1,"nb":1,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A1115809","Segatella baroniae F0067"]]},{"id":"NCBITaxon:1117177","l":"Desulfatiferula berrensis","na":1,"nb":1,"a":[["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A1117177","Desulfatiferula berrensis"]]},{"id":"NCBITaxon:1117322","l":"Glaesserella parasuis str. Nagasaki","na":1,"nb":1,"a":[["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1117322","Glaesserella parasuis str. Nagasaki"]]},{"id":"NCBITaxon:1117702","l":"Novosphingobium fuchskuhlense","na":1,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["NCBITaxon%3A1117702","Novosphingobium fuchskuhlense"]]},{"id":"NCBITaxon:1117703","l":"Novosphingobium aquaticum (ex Glaeser et al. 2013)","na":1,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["NCBITaxon%3A1117703","Novosphingobium aquaticum (ex Glaeser et al. 2013)"]]},{"id":"NCBITaxon:111781","l":"Leptolyngbya sp. PCC 7376","na":1,"nb":1,"a":[["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A111781","[Leptolyngbya] sp. PCC 7376"]]},{"id":"NCBITaxon:1117943","l":"Sinorhizobium fredii HH103","na":1,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A1117943","Sinorhizobium fredii HH103"]]},{"id":"NCBITaxon:1117958","l":"Pseudomonas extremaustralis 14-3 substr. 14-3b","na":1,"nb":1,"a":[["143-b-cell-bto-0003167.html","143-B cell"]],"b":[["NCBITaxon%3A1117958","Pseudomonas extremaustralis 14-3 substr. 14-3b"]]},{"id":"NCBITaxon:111844","l":"Mannheimia pernigra","na":1,"nb":1,"a":[["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["NCBITaxon%3A111844","Mannheimia pernigra"]]},{"id":"NCBITaxon:1119058","l":"Affinundibacterium macrobrachii","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A1119058","Affinundibacterium macrobrachii"]]},{"id":"NCBITaxon:1119534","l":"Nocardioides perillae","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1119534","Nocardioides perillae"]]},{"id":"NCBITaxon:1120797","l":"Mycobacterium sp. 141","na":1,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["NCBITaxon%3A1120797","Mycobacterium sp. 141"]]},{"id":"NCBITaxon:1123042","l":"","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1123042","Photorhabdus stackebrandtii"]]},{"id":"NCBITaxon:1123043","l":"Telmatocola sphagniphila","na":1,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["NCBITaxon%3A1123043","Telmatocola sphagniphila"]]},{"id":"NCBITaxon:112331","l":"Planococcus koreensis","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A112331","Planococcus koreensis"]]},{"id":"NCBITaxon:1123520","l":"Neisseria meningitidis DE9686","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1123520","Neisseria meningitidis DE9686"]]},{"id":"NCBITaxon:1123521","l":"Neisseria meningitidis DE9622","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1123521","Neisseria meningitidis DE9622"]]},{"id":"NCBITaxon:1123522","l":"Neisseria meningitidis DE9938","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1123522","Neisseria meningitidis DE9938"]]},{"id":"NCBITaxon:1123558","l":"Leucobacter kyeonggiensis","na":1,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"]],"b":[["NCBITaxon%3A1123558","Leucobacter kyeonggiensis"]]},{"id":"NCBITaxon:1123687","l":"","na":1,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A1123687","Lacticaseibacillus porcinae"]]},{"id":"NCBITaxon:1124835","l":"Chryseobacterium carnipullorum","na":1,"nb":1,"a":[["factory-envo-01000536.html","factory"]],"b":[["NCBITaxon%3A1124835","Chryseobacterium carnipullorum"]]},{"id":"NCBITaxon:1124919","l":"Salmonella enterica subsp. enterica serovar Agona str. 632182-2","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1124919","Salmonella enterica subsp. enterica serovar Agona str. 632182-2"]]},{"id":"NCBITaxon:1124921","l":"Salmonella enterica subsp. enterica serovar Agona str. 419639 2-1","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1124921","Salmonella enterica subsp. enterica serovar Agona str. 419639 2-1"]]},{"id":"NCBITaxon:1124923","l":"Salmonella enterica subsp. enterica serovar Agona str. 648586-1","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1124923","Salmonella enterica subsp. enterica serovar Agona str. 648586-1"]]},{"id":"NCBITaxon:1124924","l":"Salmonella enterica subsp. enterica serovar Anatum str. USDA 100","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1124924","Salmonella enterica subsp. enterica serovar Anatum str. USDA 100"]]},{"id":"NCBITaxon:1124925","l":"Salmonella enterica subsp. enterica serovar Bareilly str. ATCC 9115","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1124925","Salmonella enterica subsp. enterica serovar Bareilly str. ATCC 9115"]]},{"id":"NCBITaxon:1124926","l":"Salmonella enterica subsp. enterica serovar Berta str. ATCC 8392","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1124926","Salmonella enterica subsp. enterica serovar Berta str. ATCC 8392"]]},{"id":"NCBITaxon:1124928","l":"Salmonella enterica subsp. enterica serovar Cerro str. 818","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1124928","Salmonella enterica subsp. enterica serovar Cerro str. 818"]]},{"id":"NCBITaxon:1124929","l":"Salmonella enterica subsp. enterica serovar Derby str. 626","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1124929","Salmonella enterica subsp. enterica serovar Derby str. 626"]]},{"id":"NCBITaxon:1124933","l":"Salmonella enterica subsp. enterica serovar Hadar str. ATCC 51956","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1124933","Salmonella enterica subsp. enterica serovar Hadar str. ATCC 51956"]]},{"id":"NCBITaxon:1124934","l":"Salmonella enterica subsp. enterica serovar Heidelberg str. 82-2052","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1124934","Salmonella enterica subsp. enterica serovar Heidelberg str. 82-2052"]]},{"id":"NCBITaxon:1124991","l":"Morganella morganii subsp. morganii KT","na":1,"nb":1,"a":[["gall-bladder-bto-0000493.html","gall bladder"]],"b":[["NCBITaxon%3A1124991","Morganella morganii subsp. morganii KT"]]},{"id":"NCBITaxon:1125630","l":"Klebsiella pneumoniae subsp. pneumoniae (strain HS11286)","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1125630","Klebsiella pneumoniae subsp. pneumoniae HS11286"]]},{"id":"NCBITaxon:1125876","l":"Halpernia frigidisoli","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A1125876","Halpernia frigidisoli"]]},{"id":"NCBITaxon:1125975","l":"Thermoanaerobacter ethanolicus subsp. indiensis BSB-33","na":1,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["NCBITaxon%3A1125975","Thermoanaerobacter ethanolicus subsp. indiensis BSB-33"]]},{"id":"NCBITaxon:1126236","l":"Halobellus inordinatus","na":1,"nb":1,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["NCBITaxon%3A1126236","Halobellus inordinatus"]]},{"id":"NCBITaxon:1126681","l":"Bacillus cereus F","na":1,"nb":1,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A1126681","Bacillus cereus F"]]},{"id":"NCBITaxon:1126911","l":"Escherichia coli C639_08","na":1,"nb":1,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["NCBITaxon%3A1126911","Escherichia coli C639_08"]]},{"id":"NCBITaxon:1126932","l":"Escherichia coli C844_97","na":1,"nb":1,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["NCBITaxon%3A1126932","Escherichia coli C844_97"]]},{"id":"NCBITaxon:1127743","l":"Bacillus sp. 5B6","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1127743","Bacillus sp. 5B6"]]},{"id":"NCBITaxon:1128113","l":"Algimonas porphyrae","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A1128113","Algimonas porphyrae"]]},{"id":"NCBITaxon:1128665","l":"Lentzea nigeriaca","na":1,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A1128665","Lentzea nigeriaca"]]},{"id":"NCBITaxon:1128670","l":"Microvirga makkahensis","na":1,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A1128670","Microvirga makkahensis"]]},{"id":"NCBITaxon:1130046","l":"Oceanivirga miroungae","na":1,"nb":1,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"]],"b":[["NCBITaxon%3A1130046","Oceanivirga miroungae"]]},{"id":"NCBITaxon:1130080","l":"Alkalibacterium gilvum","na":1,"nb":1,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["NCBITaxon%3A1130080","Alkalibacterium gilvum"]]},{"id":"NCBITaxon:1130798","l":"Limosilactobacillus mucosae LM1","na":1,"nb":1,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"]],"b":[["NCBITaxon%3A1130798","Limosilactobacillus mucosae LM1"]]},{"id":"NCBITaxon:1130804","l":"Streptococcus pneumoniae ST556","na":1,"nb":1,"a":[["middle-ear-bto-0002099.html","middle ear"]],"b":[["NCBITaxon%3A1130804","Streptococcus pneumoniae ST556"]]},{"id":"NCBITaxon:1131567","l":"Cognatundibacterium squillarum","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A1131567","Cognatundibacterium squillarum"]]},{"id":"NCBITaxon:1131812","l":"Flavobacterium sp. 83","na":1,"nb":1,"a":[["lake-envo-00000020.html","lake"]],"b":[["NCBITaxon%3A1131812","Flavobacterium sp. 83"]]},{"id":"NCBITaxon:1132836","l":"Rhizobium sp. CCGE 510","na":1,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A1132836","Rhizobium sp. CCGE 510"]]},{"id":"NCBITaxon:1133106","l":"Plasticicumulans lactativorans","na":1,"nb":1,"a":[["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["NCBITaxon%3A1133106","Plasticicumulans lactativorans"]]},{"id":"NCBITaxon:113355","l":"Geminocystis herdmanii PCC 6308","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A113355","Geminocystis herdmanii PCC 6308"]]},{"id":"NCBITaxon:1134435","l":"","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A1134435","Thauera humireducens"]]},{"id":"NCBITaxon:1134459","l":"Pseudomonas aeruginosa PADK2_CF510","na":1,"nb":1,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1134459","Pseudomonas aeruginosa PADK2_CF510"]]},{"id":"NCBITaxon:1134474","l":"Cellvibrio sp. BR","na":1,"nb":1,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A1134474","Cellvibrio sp. BR"]]},{"id":"NCBITaxon:1134914","l":"Staphylococcus haemolyticus R1P1","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1134914","Staphylococcus haemolyticus R1P1"]]},{"id":"NCBITaxon:1135990","l":"Geopseudomonas sagittaria","na":1,"nb":1,"a":[["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A1135990","Geopseudomonas sagittaria"]]},{"id":"NCBITaxon:1136177","l":"","na":1,"nb":1,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A1136177","Lactiplantibacillus pentosus KCA1"]]},{"id":"NCBITaxon:1136416","l":"Salinispora pacifica CNT001","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1136416","Salinispora pacifica CNT001"]]},{"id":"NCBITaxon:113653","l":"Geoglobus ahangari","na":1,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A113653","Geoglobus ahangari"]]},{"id":"NCBITaxon:1137135","l":"","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1137135","Escherichia coli O157:H43 str. T22"]]},{"id":"NCBITaxon:1137251","l":"Salinispora arenicola CNH905","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1137251","Salinispora arenicola CNH905"]]},{"id":"NCBITaxon:1137255","l":"Salinispora arenicola CNT005","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1137255","Salinispora arenicola CNT005"]]},{"id":"NCBITaxon:1137257","l":"Salinispora arenicola CNX508","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1137257","Salinispora arenicola CNX508"]]},{"id":"NCBITaxon:1137780","l":"Polaribacter porphyrae","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A1137780","Polaribacter porphyrae"]]},{"id":"NCBITaxon:1137799","l":"Endozoicomonas numazuensis","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1137799","Endozoicomonas numazuensis"]]},{"id":"NCBITaxon:1137990","l":"Geodermatophilus arenarius","na":1,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A1137990","Geodermatophilus arenarius"]]},{"id":"NCBITaxon:114101","l":"Brenneria lupinicola","na":1,"nb":1,"a":[["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"]],"b":[["NCBITaxon%3A114101","Brenneria lupinicola"]]},{"id":"NCBITaxon:1141657","l":"Nocardia vulneris","na":1,"nb":1,"a":[["finger-bto-0004669.html","finger"]],"b":[["NCBITaxon%3A1141657","Nocardia vulneris"]]},{"id":"NCBITaxon:1141883","l":"Massilia putida","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A1141883","Massilia putida"]]},{"id":"NCBITaxon:1141888","l":"Sphingomonas difficilis","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A1141888","Sphingomonas difficilis"]]},{"id":"NCBITaxon:1142511","l":"","na":1,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A1142511","Wigglesworthia glossinidia endosymbiont of Glossina morsitans morsitans (Yale"]]},{"id":"NCBITaxon:1144300","l":"","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1144300","Limosilactobacillus gastricus PS3"]]},{"id":"NCBITaxon:1144553","l":"Nonomuraea solani","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1144553","Nonomuraea solani"]]},{"id":"NCBITaxon:1144618","l":"Allonocardiopsis opalescens","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1144618","Allonocardiopsis opalescens"]]},{"id":"NCBITaxon:1144750","l":"","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A1144750","Olleya namhaensis"]]},{"id":"NCBITaxon:1145111","l":"Helicobacter pylori R030b","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A1145111","Helicobacter pylori R030b"]]},{"id":"NCBITaxon:1145112","l":"Helicobacter pylori R32b","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A1145112","Helicobacter pylori R32b"]]},{"id":"NCBITaxon:1145114","l":"Helicobacter pylori R037c","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A1145114","Helicobacter pylori R037c"]]},{"id":"NCBITaxon:1145115","l":"Helicobacter pylori R038b","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A1145115","Helicobacter pylori R038b"]]},{"id":"NCBITaxon:1145116","l":"Helicobacter pylori R046Wa","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A1145116","Helicobacter pylori R046Wa"]]},{"id":"NCBITaxon:1145118","l":"Helicobacter pylori R056a","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A1145118","Helicobacter pylori R056a"]]},{"id":"NCBITaxon:114527","l":"Mogibacterium diversum","na":1,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["NCBITaxon%3A114527","Mogibacterium diversum"]]},{"id":"NCBITaxon:1145276","l":"Lysinibacillus varians","na":1,"nb":1,"a":[["filament-bto-0000463.html","filament"]],"b":[["NCBITaxon%3A1145276","Lysinibacillus varians"]]},{"id":"NCBITaxon:1146882","l":"Pseudomonas aeruginosa PAHM4","na":1,"nb":1,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1146882","Pseudomonas aeruginosa PAHM4"]]},{"id":"NCBITaxon:114712","l":"uncultured Azospirillum sp.","na":1,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"]],"b":[["NCBITaxon%3A114712","uncultured Azospirillum sp."]]},{"id":"NCBITaxon:114880","l":"","na":1,"nb":1,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A114880","Mycoplasmopsis columbinasalis"]]},{"id":"NCBITaxon:114975","l":"Sporosarcina aquimarina","na":1,"nb":1,"a":[["skin-bto-0001253.html","skin"]],"b":[["NCBITaxon%3A114975","Sporosarcina aquimarina"]]},{"id":"NCBITaxon:1150112","l":"Myroides guanonis","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A1150112","Myroides guanonis"]]},{"id":"NCBITaxon:1150298","l":"Fusicatenibacter saccharivorans","na":1,"nb":1,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A1150298","Fusicatenibacter saccharivorans"]]},{"id":"NCBITaxon:1150475","l":"Bacillus velezensis UCMB5036","na":1,"nb":1,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["NCBITaxon%3A1150475","Bacillus velezensis UCMB5036"]]},{"id":"NCBITaxon:1150776","l":"Winogradskyella multivorans","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A1150776","Winogradskyella multivorans"]]},{"id":"NCBITaxon:1150867","l":"Kingella kingae PYKK081","na":1,"nb":1,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["NCBITaxon%3A1150867","Kingella kingae PYKK081"]]},{"id":"NCBITaxon:1151061","l":"Tsukamurella sp. 1534","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1151061","Tsukamurella sp. 1534"]]},{"id":"NCBITaxon:1153","l":"Pseudanabaena sp.","na":1,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"]],"b":[["NCBITaxon%3A1153","Pseudanabaena sp."]]},{"id":"NCBITaxon:1154763","l":"Oceanicaulis sp. NGOC","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A1154763","Oceanicaulis sp. NGOC"]]},{"id":"NCBITaxon:1154820","l":"Streptococcus agalactiae LMG 15091","na":1,"nb":1,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A1154820","Streptococcus agalactiae LMG 15091"]]},{"id":"NCBITaxon:1154821","l":"Streptococcus agalactiae LMG 15092","na":1,"nb":1,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A1154821","Streptococcus agalactiae LMG 15092"]]},{"id":"NCBITaxon:1154822","l":"Streptococcus agalactiae LMG 15093","na":1,"nb":1,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A1154822","Streptococcus agalactiae LMG 15093"]]},{"id":"NCBITaxon:1154823","l":"Streptococcus agalactiae LMG 15094","na":1,"nb":1,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A1154823","Streptococcus agalactiae LMG 15094"]]},{"id":"NCBITaxon:1155689","l":"Psychroflexus salarius","na":1,"nb":1,"a":[["pond-envo-00000033.html","pond"]],"b":[["NCBITaxon%3A1155689","Psychroflexus salarius"]]},{"id":"NCBITaxon:1155775","l":"Treponema pallidum str. Fribourg-Blanc","na":1,"nb":1,"a":[["globus-pallidus-bto-0002246.html","globus pallidus"]],"b":[["NCBITaxon%3A1155775","Treponema pallidum str. Fribourg-Blanc"]]},{"id":"NCBITaxon:1156842","l":"Streptomyces sp. LaPpAH-180","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1156842","Streptomyces sp. LaPpAH-180"]]},{"id":"NCBITaxon:1157490","l":"Tumebacillus flagellatus","na":1,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A1157490","Tumebacillus flagellatus"]]},{"id":"NCBITaxon:1157629","l":"Streptomyces sp. KhCrAH-340","na":1,"nb":1,"a":[["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A1157629","Streptomyces sp. KhCrAH-340"]]},{"id":"NCBITaxon:1157947","l":"Thermotoga sp. Cell2","na":1,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A1157947","Thermotoga sp. Cell2"]]},{"id":"NCBITaxon:115808","l":"Bradyrhizobium sp. ORS 285","na":1,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A115808","Bradyrhizobium sp. ORS 285"]]},{"id":"NCBITaxon:1158132","l":"Bordetella sp. NGBO","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A1158132","Bordetella sp. NGBO"]]},{"id":"NCBITaxon:1158134","l":"Roseobacter sp. NGRO","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A1158134","Roseobacter sp. NGRO"]]},{"id":"NCBITaxon:115862","l":"","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A115862","Mycobacterium tuberculosis variant caprae"]]},{"id":"NCBITaxon:1159490","l":"Cronobacter sakazakii E764","na":1,"nb":1,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A1159490","Cronobacter sakazakii E764"]]},{"id":"NCBITaxon:1159614","l":"Cronobacter sakazakii ES35","na":1,"nb":1,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A1159614","Cronobacter sakazakii ES35"]]},{"id":"NCBITaxon:1159617","l":"Yersinia pestis INS","na":1,"nb":1,"a":[["lymph-node-bto-0000784.html","lymph node"]],"b":[["NCBITaxon%3A1159617","Yersinia pestis INS"]]},{"id":"NCBITaxon:1160091","l":"","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1160091","Alloscardovia macacae"]]},{"id":"NCBITaxon:1160704","l":"Francisella tularensis subsp. holarctica FSC162","na":1,"nb":1,"a":[["medial-geniculate-body-bto-0002674.html","medial geniculate body"]],"b":[["NCBITaxon%3A1160704","Francisella tularensis subsp. holarctica FSC162"]]},{"id":"NCBITaxon:1160721","l":"","na":1,"nb":1,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A1160721","Ruminococcus bicirculans (ex Wegman et al. 2014)"]]},{"id":"NCBITaxon:1161101","l":"Pseudomonas tolaasii 6264","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A1161101","Pseudomonas tolaasii 6264"]]},{"id":"NCBITaxon:1161102","l":"Pasteurella multocida subsp. multocida VTCCBAA264","na":1,"nb":1,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["NCBITaxon%3A1161102","Pasteurella multocida subsp. multocida VTCCBAA264"]]},{"id":"NCBITaxon:1162283","l":"Mycobacteroides abscessus subsp. bolletii M18","na":1,"nb":1,"a":[["lymph-node-bto-0000784.html","lymph node"]],"b":[["NCBITaxon%3A1162283","Mycobacteroides abscessus subsp. bolletii M18"]]},{"id":"NCBITaxon:1162284","l":"Mycobacteroides abscessus M24","na":1,"nb":1,"a":[["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"]],"b":[["NCBITaxon%3A1162284","Mycobacteroides abscessus M24"]]},{"id":"NCBITaxon:1162286","l":"Mycobacteroides abscessus M172","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1162286","Mycobacteroides abscessus M172"]]},{"id":"NCBITaxon:1162287","l":"Mycobacteroides abscessus M115","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1162287","Mycobacteroides abscessus M115"]]},{"id":"NCBITaxon:1162294","l":"Serratia marcescens LCT-SM213","na":1,"nb":1,"a":[["urinary-tract-bto-0001244.html","urinary tract"]],"b":[["NCBITaxon%3A1162294","Serratia marcescens LCT-SM213"]]},{"id":"NCBITaxon:1162967","l":"Diaminobutyricimonas aerilata","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A1162967","Diaminobutyricimonas aerilata"]]},{"id":"NCBITaxon:1162970","l":"Homoserinimonas aerilata","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A1162970","Homoserinimonas aerilata"]]},{"id":"NCBITaxon:1163745","l":"Helicobacter cetorum MIT 99-5656","na":1,"nb":1,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["NCBITaxon%3A1163745","Helicobacter cetorum MIT 99-5656"]]},{"id":"NCBITaxon:1164594","l":"Massilia yuzhufengensis","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1164594","Massilia yuzhufengensis"]]},{"id":"NCBITaxon:1165092","l":"Lachnospiraceae bacterium JC7","na":1,"nb":1,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A1165092","Lachnospiraceae bacterium JC7"]]},{"id":"NCBITaxon:1165852","l":"Melaminivora alkalimesophila","na":1,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A1165852","Melaminivora alkalimesophila"]]},{"id":"NCBITaxon:1166017","l":"Mycobacteroides abscessus CF","na":1,"nb":1,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1166017","Mycobacteroides abscessus CF"]]},{"id":"NCBITaxon:1166073","l":"Aureimonas jatrophae","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1166073","Aureimonas jatrophae"]]},{"id":"NCBITaxon:1166158","l":"Methylobacterium sp. L2-4","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1166158","Methylobacterium sp. L2-4"]]},{"id":"NCBITaxon:1166257","l":"Pleomorphomonas diazotrophica","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1166257","Pleomorphomonas diazotrophica"]]},{"id":"NCBITaxon:1166323","l":"Sphingomonas carotinifaciens","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1166323","Sphingomonas carotinifaciens"]]},{"id":"NCBITaxon:1166337","l":"Sphingomonas jatrophae","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1166337","Sphingomonas jatrophae"]]},{"id":"NCBITaxon:1167631","l":"Oenococcus oeni AWRIB318","na":1,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A1167631","Oenococcus oeni AWRIB318"]]},{"id":"NCBITaxon:1167641","l":"","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1167641","Stenotrophomonas geniculata N1"]]},{"id":"NCBITaxon:1167697","l":"Enterococcus faecium LCT-EF90","na":1,"nb":1,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A1167697","Enterococcus faecium LCT-EF90"]]},{"id":"NCBITaxon:1168039","l":"Saccharicrinis carchari","na":1,"nb":1,"a":[["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A1168039","Saccharicrinis carchari"]]},{"id":"NCBITaxon:1169863","l":"Escherichia coli NCCP15657","na":1,"nb":1,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["NCBITaxon%3A1169863","Escherichia coli NCCP15657"]]},{"id":"NCBITaxon:1170318","l":"Cutibacterium avidum 44067","na":1,"nb":1,"a":[["trunk-bto-0001493.html","trunk"]],"b":[["NCBITaxon%3A1170318","Cutibacterium avidum 44067"]]},{"id":"NCBITaxon:1170562","l":"Calothrix sp. PCC 6303","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A1170562","Calothrix sp. PCC 6303"]]},{"id":"NCBITaxon:1172204","l":"","na":1,"nb":1,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A1172204","Paraclostridium sordellii 8483"]]},{"id":"NCBITaxon:1172205","l":"Bordetella holmesii 44057","na":1,"nb":1,"a":[["sickle-cell-bto-0002656.html","sickle cell"]],"b":[["NCBITaxon%3A1172205","Bordetella holmesii 44057"]]},{"id":"NCBITaxon:1172565","l":"Lonsdalea populi","na":1,"nb":1,"a":[["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["NCBITaxon%3A1172565","Lonsdalea populi"]]},{"id":"NCBITaxon:1173107","l":"Lysinibacillus tabacifolii","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1173107","Lysinibacillus tabacifolii"]]},{"id":"NCBITaxon:1173481","l":"Pseudomonas sp. DrzB1_18_61a","na":1,"nb":1,"a":[["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A1173481","Pseudomonas sp. DrzB1_18_61a"]]},{"id":"NCBITaxon:1173689","l":"Escherichia coli VL2874","na":1,"nb":1,"a":[["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["NCBITaxon%3A1173689","Escherichia coli VL2874"]]},{"id":"NCBITaxon:1173690","l":"Escherichia coli VL2732","na":1,"nb":1,"a":[["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["NCBITaxon%3A1173690","Escherichia coli VL2732"]]},{"id":"NCBITaxon:1173995","l":"Parvularcula dongshanensis","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A1173995","Parvularcula dongshanensis"]]},{"id":"NCBITaxon:1176176","l":"Methylobacterium haplocladii","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A1176176","Methylobacterium haplocladii"]]},{"id":"NCBITaxon:1176177","l":"Methylobacterium brachythecii","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A1176177","Methylobacterium brachythecii"]]},{"id":"NCBITaxon:1176198","l":"Streptomyces harbinensis","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1176198","Streptomyces harbinensis"]]},{"id":"NCBITaxon:1176728","l":"Escherichia coli K71","na":1,"nb":1,"a":[["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["NCBITaxon%3A1176728","Escherichia coli K71"]]},{"id":"NCBITaxon:1177574","l":"Prevotella jejuni","na":1,"nb":1,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["NCBITaxon%3A1177574","Prevotella jejuni"]]},{"id":"NCBITaxon:1177927","l":"Enterobacter cloacae subsp. cloacae GS1","na":1,"nb":1,"a":[["seedling-bto-0001228.html","seedling"]],"b":[["NCBITaxon%3A1177927","Enterobacter cloacae subsp. cloacae GS1"]]},{"id":"NCBITaxon:1177931","l":"Thiovulum sp. ES","na":1,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A1177931","Thiovulum sp. ES"]]},{"id":"NCBITaxon:1178528","l":"Enterococcus faecium LCT-EF128","na":1,"nb":1,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A1178528","Enterococcus faecium LCT-EF128"]]},{"id":"NCBITaxon:1178540","l":"Bacillus zhangzhouensis","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A1178540","Bacillus zhangzhouensis"]]},{"id":"NCBITaxon:1179467","l":"Hazenella coriacea","na":1,"nb":1,"a":[["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A1179467","Hazenella coriacea"]]},{"id":"NCBITaxon:1181879","l":"Amycolatopsis jiangsuensis","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1181879","Amycolatopsis jiangsuensis"]]},{"id":"NCBITaxon:1181882","l":"Glycomyces phytohabitans","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1181882","Glycomyces phytohabitans"]]},{"id":"NCBITaxon:1181884","l":"Modestobacter roseus","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1181884","Modestobacter roseus"]]},{"id":"NCBITaxon:1181886","l":"Saccharopolyspora dendranthemae","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1181886","Saccharopolyspora dendranthemae"]]},{"id":"NCBITaxon:1181887","l":"Streptomyces halophytocola","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1181887","Streptomyces halophytocola"]]},{"id":"NCBITaxon:1182164","l":"Salmonella enterica subsp. enterica serovar Heidelberg str. CFSAN00322","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1182164","Salmonella enterica subsp. enterica serovar Heidelberg str. CFSAN00322"]]},{"id":"NCBITaxon:1182167","l":"Salmonella enterica subsp. enterica serovar Heidelberg str. CFSAN00325","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1182167","Salmonella enterica subsp. enterica serovar Heidelberg str. CFSAN00325"]]},{"id":"NCBITaxon:1182168","l":"Salmonella enterica subsp. enterica serovar Heidelberg str. CFSAN00326","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1182168","Salmonella enterica subsp. enterica serovar Heidelberg str. CFSAN00326"]]},{"id":"NCBITaxon:1182170","l":"Salmonella enterica subsp. enterica serovar Heidelberg str. CFSAN00328","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1182170","Salmonella enterica subsp. enterica serovar Heidelberg str. CFSAN00328"]]},{"id":"NCBITaxon:1182408","l":"Luteivirga sdotyamensis","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1182408","Luteivirga sdotyamensis"]]},{"id":"NCBITaxon:1182444","l":"Fulvitalea axinellae","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1182444","Fulvitalea axinellae"]]},{"id":"NCBITaxon:1182451","l":"Aureivirga marina","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1182451","Aureivirga marina"]]},{"id":"NCBITaxon:1184706","l":"Micromonospora sonneratiae","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1184706","Micromonospora sonneratiae"]]},{"id":"NCBITaxon:1185324","l":"Lactobacillus gasseri CECT 5714","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1185324","Lactobacillus gasseri CECT 5714"]]},{"id":"NCBITaxon:1185325","l":"","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1185325","Loigolactobacillus coryniformis subsp. coryniformis CECT 5711"]]},{"id":"NCBITaxon:1185682","l":"","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1185682","Xanthomonas phaseoli pv. manihotis str. IBSBF 2673"]]},{"id":"NCBITaxon:1186196","l":"Natrinema salaciae","na":1,"nb":1,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["NCBITaxon%3A1186196","Natrinema salaciae"]]},{"id":"NCBITaxon:1187845","l":"","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1187845","Vibrio genomosp. F10 str. 9ZB36"]]},{"id":"NCBITaxon:1187846","l":"","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1187846","Vibrio genomosp. F10 str. 9ZD137"]]},{"id":"NCBITaxon:1187847","l":"","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1187847","Vibrio genomosp. F10 str. 9ZC157"]]},{"id":"NCBITaxon:1187852","l":"Methylobacterium tarhaniae","na":1,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A1187852","Methylobacterium tarhaniae"]]},{"id":"NCBITaxon:1188229","l":"Gloeomargarita lithophora Alchichica-D10","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A1188229","Gloeomargarita lithophora Alchichica-D10"]]},{"id":"NCBITaxon:1188233","l":"Metamycoplasma auris 15026","na":1,"nb":1,"a":[["outer-ear-bto-0002100.html","outer ear"]],"b":[["NCBITaxon%3A1188233","Metamycoplasma auris 15026"]]},{"id":"NCBITaxon:1188238","l":"","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1188238","Mycoplasma capricolum subsp. capricolum 14232"]]},{"id":"NCBITaxon:1188240","l":"Mycoplasma yeatsii 13926","na":1,"nb":1,"a":[["outer-ear-bto-0002100.html","outer ear"]],"b":[["NCBITaxon%3A1188240","Mycoplasma yeatsii 13926"]]},{"id":"NCBITaxon:1188994","l":"Chromohalobacter sp. HS-2","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A1188994","Chromohalobacter sp. HS-2"]]},{"id":"NCBITaxon:1189289","l":"Pseudomonas sp. NS1","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A1189289","Pseudomonas sp. NS1"]]},{"id":"NCBITaxon:1189304","l":"Sodalis-like symbiont of Philaenus spumarius","na":1,"nb":1,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["NCBITaxon%3A1189304","Sodalis-like symbiont of Philaenus spumarius"]]},{"id":"NCBITaxon:1189325","l":"Oceanicella actignis","na":1,"nb":1,"a":[["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["NCBITaxon%3A1189325","Oceanicella actignis"]]},{"id":"NCBITaxon:119000","l":"Modicisalibacter muralis","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A119000","Modicisalibacter muralis"]]},{"id":"NCBITaxon:1191279","l":"Helicobacter pylori FD423","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1191279","Helicobacter pylori FD423"]]},{"id":"NCBITaxon:1191280","l":"Helicobacter pylori FD430","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1191280","Helicobacter pylori FD430"]]},{"id":"NCBITaxon:1191281","l":"Helicobacter pylori FD506","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1191281","Helicobacter pylori FD506"]]},{"id":"NCBITaxon:1191282","l":"Helicobacter pylori FD568","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1191282","Helicobacter pylori FD568"]]},{"id":"NCBITaxon:1191283","l":"Helicobacter pylori FD577","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1191283","Helicobacter pylori FD577"]]},{"id":"NCBITaxon:1191284","l":"Helicobacter pylori FD662","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1191284","Helicobacter pylori FD662"]]},{"id":"NCBITaxon:1191285","l":"Helicobacter pylori FD703","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1191285","Helicobacter pylori FD703"]]},{"id":"NCBITaxon:1191286","l":"Helicobacter pylori FD719","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1191286","Helicobacter pylori FD719"]]},{"id":"NCBITaxon:1191287","l":"Helicobacter pylori GC26","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1191287","Helicobacter pylori GC26"]]},{"id":"NCBITaxon:1191464","l":"Helicobacter pylori FD535","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1191464","Helicobacter pylori FD535"]]},{"id":"NCBITaxon:1192196","l":"Bacillus subtilis subsp. subtilis str. BSP1","na":1,"nb":1,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A1192196","Bacillus subtilis subsp. subtilis str. BSP1"]]},{"id":"NCBITaxon:1192868","l":"Pseudaminobacter salicylatoxidans KCT001","na":1,"nb":1,"a":[["mo-b-cell-bto-0003680.html","Mo-B cell"]],"b":[["NCBITaxon%3A1192868","Pseudaminobacter salicylatoxidans KCT001"]]},{"id":"NCBITaxon:1193041","l":"","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1193041","Leptospira interrogans str. HAI1536"]]},{"id":"NCBITaxon:1193060","l":"","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1193060","Leptospira interrogans str. HAI1594"]]},{"id":"NCBITaxon:1193292","l":"Klebsiella pneumoniae subsp. pneumoniae 1084","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1193292","Klebsiella pneumoniae subsp. pneumoniae 1084"]]},{"id":"NCBITaxon:1194165","l":"Microbacterium yannicii PS01","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1194165","Microbacterium yannicii PS01"]]},{"id":"NCBITaxon:1194427","l":"Vibrio toranzoniae","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A1194427","Vibrio toranzoniae"]]},{"id":"NCBITaxon:1194719","l":"Sinorhizobium meliloti H1","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1194719","Sinorhizobium meliloti H1"]]},{"id":"NCBITaxon:1195237","l":"Mycobacterium tuberculosis variant bovis BCG str. Frappier","na":1,"nb":1,"a":[["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1195237","Mycobacterium tuberculosis variant bovis BCG str. Frappier"]]},{"id":"NCBITaxon:1195244","l":"Gallibacterium anatis 12656/12","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1195244","Gallibacterium anatis 12656/12"]]},{"id":"NCBITaxon:1195465","l":"Mycobacterium tuberculosis variant bovis BCG str. Glaxo","na":1,"nb":1,"a":[["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1195465","Mycobacterium tuberculosis variant bovis BCG str. Glaxo"]]},{"id":"NCBITaxon:1195466","l":"Mycobacterium tuberculosis variant bovis BCG str. Moreau","na":1,"nb":1,"a":[["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1195466","Mycobacterium tuberculosis variant bovis BCG str. Moreau"]]},{"id":"NCBITaxon:1195467","l":"Mycobacterium tuberculosis variant bovis BCG str. Phipps","na":1,"nb":1,"a":[["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1195467","Mycobacterium tuberculosis variant bovis BCG str. Phipps"]]},{"id":"NCBITaxon:1195468","l":"Mycobacterium tuberculosis variant bovis BCG str. Prague","na":1,"nb":1,"a":[["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1195468","Mycobacterium tuberculosis variant bovis BCG str. Prague"]]},{"id":"NCBITaxon:1195469","l":"Mycobacterium tuberculosis variant bovis BCG str. Sweden","na":1,"nb":1,"a":[["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1195469","Mycobacterium tuberculosis variant bovis BCG str. Sweden"]]},{"id":"NCBITaxon:1195760","l":"Wenyingzhuangia marina","na":1,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"]],"b":[["NCBITaxon%3A1195760","Wenyingzhuangia marina"]]},{"id":"NCBITaxon:1196034","l":"Klebsiella sp. 10982","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1196034","Klebsiella sp. 10982"]]},{"id":"NCBITaxon:119853","l":"Oscillospira guilliermondii","na":1,"nb":1,"a":[["intestine-bto-0000648.html","intestine"]],"b":[["NCBITaxon%3A119853","Oscillospira guilliermondii"]]},{"id":"NCBITaxon:1199154","l":"Lysobacter sp. A03","na":1,"nb":1,"a":[["feather-bto-0000447.html","feather"]],"b":[["NCBITaxon%3A1199154","Lysobacter sp. A03"]]},{"id":"NCBITaxon:1199187","l":"Mycobacterium avium subsp. paratuberculosis MAP4","na":1,"nb":1,"a":[["breast-bto-0000149.html","breast"]],"b":[["NCBITaxon%3A1199187","Mycobacterium avium subsp. paratuberculosis MAP4"]]},{"id":"NCBITaxon:119978","l":"Acidithiobacillus albertensis","na":1,"nb":1,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A119978","Acidithiobacillus albertensis"]]},{"id":"NCBITaxon:1200302","l":"Photobacterium damselae subsp. piscicida DI21","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1200302","Photobacterium damselae subsp. piscicida DI21"]]},{"id":"NCBITaxon:1200345","l":"","na":1,"nb":1,"a":[["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A1200345","Stutzerimonas stutzeri XLDN-R"]]},{"id":"NCBITaxon:1200775","l":"Cupriavidus basilensis B-8","na":1,"nb":1,"a":[["pulp-bto-0001142.html","pulp"]],"b":[["NCBITaxon%3A1200775","Cupriavidus basilensis B-8"]]},{"id":"NCBITaxon:1201036","l":"Pseudochrobactrum sp. AO18b","na":1,"nb":1,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A1201036","Pseudochrobactrum sp. AO18b"]]},{"id":"NCBITaxon:1201295","l":"Shewanella sp. POL2","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1201295","Shewanella sp. POL2"]]},{"id":"NCBITaxon:120213","l":"Subtercola boreus","na":1,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A120213","Subtercola boreus"]]},{"id":"NCBITaxon:1202456","l":"Bacillus sp. Aph1","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1202456","Bacillus sp. Aph1"]]},{"id":"NCBITaxon:1202533","l":"","na":1,"nb":1,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A1202533","Niallia nealsonii AAU1"]]},{"id":"NCBITaxon:1204724","l":"Escherichia coli IMT2125","na":1,"nb":1,"a":[["alveolus-bto-0000060.html","alveolus"]],"b":[["NCBITaxon%3A1204724","Escherichia coli IMT2125"]]},{"id":"NCBITaxon:1205674","l":"Mycobacterium canetti CIPT 140070010","na":1,"nb":1,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["NCBITaxon%3A1205674","Mycobacterium canetti CIPT 140070010"]]},{"id":"NCBITaxon:1205675","l":"Mycobacterium canetti CIPT 140070008","na":1,"nb":1,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["NCBITaxon%3A1205675","Mycobacterium canetti CIPT 140070008"]]},{"id":"NCBITaxon:1205676","l":"Mycobacterium canetti CIPT 140060008","na":1,"nb":1,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["NCBITaxon%3A1205676","Mycobacterium canetti CIPT 140060008"]]},{"id":"NCBITaxon:1205677","l":"Mycobacterium canetti CIPT 140070017","na":1,"nb":1,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["NCBITaxon%3A1205677","Mycobacterium canetti CIPT 140070017"]]},{"id":"NCBITaxon:1206085","l":"Jatrophihabitans endophyticus","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1206085","Jatrophihabitans endophyticus"]]},{"id":"NCBITaxon:1206753","l":"Maribacter spongiicola","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1206753","Maribacter spongiicola"]]},{"id":"NCBITaxon:1206774","l":"Oenococcus oeni AWRIB568","na":1,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A1206774","Oenococcus oeni AWRIB568"]]},{"id":"NCBITaxon:1206776","l":"Serratia plymuthica A30","na":1,"nb":1,"a":[["tuber-bto-0001400.html","tuber"]],"b":[["NCBITaxon%3A1206776","Serratia plymuthica A30"]]},{"id":"NCBITaxon:1206816","l":"Maribacter vaceletii","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1206816","Maribacter vaceletii"]]},{"id":"NCBITaxon:1206817","l":"Allorhizobium paknamense","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A1206817","Allorhizobium paknamense"]]},{"id":"NCBITaxon:1208663","l":"Cronobacter sakazakii 701","na":1,"nb":1,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A1208663","Cronobacter sakazakii 701"]]},{"id":"NCBITaxon:1208664","l":"Cronobacter sakazakii 696","na":1,"nb":1,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A1208664","Cronobacter sakazakii 696"]]},{"id":"NCBITaxon:1208918","l":"Candidatus Kinetoplastidibacterium crithidiae TCC036E","na":1,"nb":1,"a":[["flagellate-bto-0000464.html","flagellate"]],"b":[["NCBITaxon%3A1208918","Candidatus Kinetoplastidibacterium crithidiae TCC036E"]]},{"id":"NCBITaxon:1208919","l":"Candidatus Kinetoplastidibacterium desouzai TCC079E","na":1,"nb":1,"a":[["flagellate-bto-0000464.html","flagellate"]],"b":[["NCBITaxon%3A1208919","Candidatus Kinetoplastidibacterium desouzai TCC079E"]]},{"id":"NCBITaxon:1208920","l":"Candidatus Kinetoplastidibacterium stringomonadis TCC290E","na":1,"nb":1,"a":[["flagellate-bto-0000464.html","flagellate"]],"b":[["NCBITaxon%3A1208920","Candidatus Kinetoplastidibacterium stringomonadis TCC290E"]]},{"id":"NCBITaxon:1208921","l":"Candidatus Kinetoplastidibacterium galati TCC219","na":1,"nb":1,"a":[["flagellate-bto-0000464.html","flagellate"]],"b":[["NCBITaxon%3A1208921","Candidatus Kinetoplastidibacterium galati TCC219"]]},{"id":"NCBITaxon:1208922","l":"Candidatus Kinetoplastidibacterium blastocrithidiae TCC012E","na":1,"nb":1,"a":[["flagellate-bto-0000464.html","flagellate"]],"b":[["NCBITaxon%3A1208922","Candidatus Kinetoplastidibacterium blastocrithidiae TCC012E"]]},{"id":"NCBITaxon:120958","l":"Thermoanaerobacter sulfurigignens","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A120958","Thermoanaerobacter sulfurigignens"]]},{"id":"NCBITaxon:1210932","l":"Peteryoungia ipomoeae","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A1210932","Peteryoungia ipomoeae"]]},{"id":"NCBITaxon:1212765","l":"Candidatus Mycoplasma haematolamae str. Purdue","na":1,"nb":1,"a":[["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["NCBITaxon%3A1212765","Candidatus Mycoplasma haematolamae str. Purdue"]]},{"id":"NCBITaxon:1213457","l":"Helicobacter pylori HLJHP193","na":1,"nb":1,"a":[["gastric-ulcer-bto-0002990.html","gastric ulcer"]],"b":[["NCBITaxon%3A1213457","Helicobacter pylori HLJHP193"]]},{"id":"NCBITaxon:1214063","l":"Mycobacterium intracellulare M.i.198","na":1,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A1214063","Mycobacterium intracellulare M.i.198"]]},{"id":"NCBITaxon:1214221","l":"Helicobacter pylori HLJHP256","na":1,"nb":1,"a":[["gastric-ulcer-bto-0002990.html","gastric ulcer"]],"b":[["NCBITaxon%3A1214221","Helicobacter pylori HLJHP256"]]},{"id":"NCBITaxon:1214222","l":"Helicobacter pylori HLJHP271","na":1,"nb":1,"a":[["gastric-ulcer-bto-0002990.html","gastric ulcer"]],"b":[["NCBITaxon%3A1214222","Helicobacter pylori HLJHP271"]]},{"id":"NCBITaxon:1215087","l":"Pseudomonas putida S12","na":1,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A1215087","Pseudomonas putida S12"]]},{"id":"NCBITaxon:1216961","l":"Aeromonas sp. 159","na":1,"nb":1,"a":[["peritoneal-fluid-bto-0001031.html","peritoneal fluid"]],"b":[["NCBITaxon%3A1216961","Aeromonas sp. 159"]]},{"id":"NCBITaxon:1217418","l":"","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A1217418","Cupriavidus sp. HPC(L)"]]},{"id":"NCBITaxon:1218081","l":"Paraburkholderia kururiensis subsp. thiooxydans NBRC 107107","na":1,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A1218081","Paraburkholderia kururiensis subsp. thiooxydans NBRC 107107"]]},{"id":"NCBITaxon:1219037","l":"Sphingobium xenophagum NBRC 107872","na":1,"nb":1,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["NCBITaxon%3A1219037","Sphingobium xenophagum NBRC 107872"]]},{"id":"NCBITaxon:1220","l":"Prochlorococcus sp.","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A1220","Prochlorococcus sp."]]},{"id":"NCBITaxon:1221522","l":"Pseudomonas fluorescens NCIMB 11764","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1221522","Pseudomonas fluorescens NCIMB 11764"]]},{"id":"NCBITaxon:1223534","l":"Sphingobium amiense NBRC 102518","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1223534","Sphingobium amiense NBRC 102518"]]},{"id":"NCBITaxon:1223566","l":"Bradyrhizobium sp. CCGE-LA001","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1223566","Bradyrhizobium sp. CCGE-LA001"]]},{"id":"NCBITaxon:1224142","l":"Actinobacillus pleuropneumoniae S8","na":1,"nb":1,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1224142","Actinobacillus pleuropneumoniae S8"]]},{"id":"NCBITaxon:1225127","l":"","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1225127","Klenkia taihuensis"]]},{"id":"NCBITaxon:1225184","l":"Pantoea sp. A4","na":1,"nb":1,"a":[["flower-bto-0000469.html","flower"]],"b":[["NCBITaxon%3A1225184","Pantoea sp. A4"]]},{"id":"NCBITaxon:1226633","l":"Fusobacterium necrophorum subsp. funduliforme B35","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1226633","Fusobacterium necrophorum subsp. funduliforme B35"]]},{"id":"NCBITaxon:1226994","l":"Pseudomonas nitroreducens TX1","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1226994","Pseudomonas nitroreducens TX1"]]},{"id":"NCBITaxon:1229491","l":"Bradyrhizobium lupini HPC(L)","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A1229491","Bradyrhizobium lupini HPC(L)"]]},{"id":"NCBITaxon:1230341","l":"Salimicrobium jeotgali","na":1,"nb":1,"a":[["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A1230341","Salimicrobium jeotgali"]]},{"id":"NCBITaxon:1230343","l":"Legionella anisa str. Linanisette","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1230343","Legionella anisa str. Linanisette"]]},{"id":"NCBITaxon:1230477","l":"Bacillus subtilis S1-4","na":1,"nb":1,"a":[["feather-bto-0000447.html","feather"]],"b":[["NCBITaxon%3A1230477","Bacillus subtilis S1-4"]]},{"id":"NCBITaxon:1230480","l":"Escherichia coli EC302/04","na":1,"nb":1,"a":[["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1230480","Escherichia coli EC302/04"]]},{"id":"NCBITaxon:1231058","l":"Vibrio diabolicus E0666","na":1,"nb":1,"a":[["ascites-bto-0000091.html","ascites"]],"b":[["NCBITaxon%3A1231058","Vibrio diabolicus E0666"]]},{"id":"NCBITaxon:1232713","l":"Xanthomonas euvesicatoria pv. viticola LMG 965","na":1,"nb":1,"a":[["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A1232713","Xanthomonas euvesicatoria pv. viticola LMG 965"]]},{"id":"NCBITaxon:1232724","l":"Mycobacterium intracellulare subsp. intracellulare MTCC 9506","na":1,"nb":1,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A1232724","Mycobacterium intracellulare subsp. intracellulare MTCC 9506"]]},{"id":"NCBITaxon:1234143","l":"Endozoicomonas euniceicola","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A1234143","Endozoicomonas euniceicola"]]},{"id":"NCBITaxon:1234144","l":"Endozoicomonas gorgoniicola","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A1234144","Endozoicomonas gorgoniicola"]]},{"id":"NCBITaxon:1234367","l":"Chlamydia pecorum PV3056/3","na":1,"nb":1,"a":[["synovia-bto-0001339.html","synovia"]],"b":[["NCBITaxon%3A1234367","Chlamydia pecorum PV3056/3"]]},{"id":"NCBITaxon:1234368","l":"Chlamydia pecorum W73","na":1,"nb":1,"a":[["synovia-bto-0001339.html","synovia"]],"b":[["NCBITaxon%3A1234368","Chlamydia pecorum W73"]]},{"id":"NCBITaxon:1234380","l":"Cutibacterium acnes C1","na":1,"nb":1,"a":[["sebaceous-gland-bto-0001980.html","sebaceous gland"]],"b":[["NCBITaxon%3A1234380","Cutibacterium acnes C1"]]},{"id":"NCBITaxon:1234597","l":"Brucella intermedia M86","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A1234597","Brucella intermedia M86"]]},{"id":"NCBITaxon:1235259","l":"Oceanobacillus polygoni","na":1,"nb":1,"a":[["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A1235259","Oceanobacillus polygoni"]]},{"id":"NCBITaxon:1235440","l":"Staphylococcus epidermidis 12142587","na":1,"nb":1,"a":[["aortic-valve-bto-0004628.html","aortic valve"]],"b":[["NCBITaxon%3A1235440","Staphylococcus epidermidis 12142587"]]},{"id":"NCBITaxon:1236689","l":"Candidatus Methanomethylophilus alvi Mx1201","na":1,"nb":1,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A1236689","Candidatus Methanomethylophilus alvi Mx1201"]]},{"id":"NCBITaxon:1238885","l":"Bacillus thuringiensis serovar aizawai str. Hu4-2","na":1,"nb":1,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A1238885","Bacillus thuringiensis serovar aizawai str. Hu4-2"]]},{"id":"NCBITaxon:1241935","l":"","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A1241935","Saccharolobus islandicus LAL14/1"]]},{"id":"NCBITaxon:1242148","l":"Melghirimyces profundicolus","na":1,"nb":1,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["NCBITaxon%3A1242148","Melghirimyces profundicolus"]]},{"id":"NCBITaxon:1242245","l":"Acinetobacter johnsonii XBB1","na":1,"nb":1,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A1242245","Acinetobacter johnsonii XBB1"]]},{"id":"NCBITaxon:1242999","l":"Enterococcus olivae","na":1,"nb":1,"a":[["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A1242999","Enterococcus olivae"]]},{"id":"NCBITaxon:1243000","l":"Acidipropionibacterium olivae","na":1,"nb":1,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["NCBITaxon%3A1243000","Acidipropionibacterium olivae"]]},{"id":"NCBITaxon:1243001","l":"Acidipropionibacterium damnosum","na":1,"nb":1,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["NCBITaxon%3A1243001","Acidipropionibacterium damnosum"]]},{"id":"NCBITaxon:1244087","l":"Paenibacillus lentimorbus NRRL B-30488","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1244087","Paenibacillus lentimorbus NRRL B-30488"]]},{"id":"NCBITaxon:1245026","l":"Heyndrickxia coagulans XZL9","na":1,"nb":1,"a":[["cob-bto-0000266.html","cob"]],"b":[["NCBITaxon%3A1245026","Heyndrickxia coagulans XZL9"]]},{"id":"NCBITaxon:1245526","l":"","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A1245526","Geopseudomonas guangdongensis"]]},{"id":"NCBITaxon:1246119","l":"Mycobacterium canetti CIPT 140070002","na":1,"nb":1,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["NCBITaxon%3A1246119","Mycobacterium canetti CIPT 140070002"]]},{"id":"NCBITaxon:1246120","l":"Mycobacterium canetti CIPT 140070005","na":1,"nb":1,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["NCBITaxon%3A1246120","Mycobacterium canetti CIPT 140070005"]]},{"id":"NCBITaxon:1246121","l":"Mycobacterium canetti CIPT 140070013","na":1,"nb":1,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["NCBITaxon%3A1246121","Mycobacterium canetti CIPT 140070013"]]},{"id":"NCBITaxon:1246530","l":"Calderihabitans maritimus","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1246530","Calderihabitans maritimus"]]},{"id":"NCBITaxon:1246634","l":"Mycobacterium canetti CIPT 140070007","na":1,"nb":1,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["NCBITaxon%3A1246634","Mycobacterium canetti CIPT 140070007"]]},{"id":"NCBITaxon:1256514","l":"Novosphingobium arvoryzae","na":1,"nb":1,"a":[["paddy-ricefield-habitatmech-bacdive-6e3154acd8.html","Paddy-Ricefield"]],"b":[["NCBITaxon%3A1256514","Novosphingobium arvoryzae"]]},{"id":"NCBITaxon:1257079","l":"Bacillus thuringiensis DAR 81934","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A1257079","Bacillus thuringiensis DAR 81934"]]},{"id":"NCBITaxon:1257080","l":"Paenibacillus sp. PAMC 26794","na":1,"nb":1,"a":[["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1257080","Paenibacillus sp. PAMC 26794"]]},{"id":"NCBITaxon:1258567","l":"Escherichia coli LCT-EC52","na":1,"nb":1,"a":[["urinary-tract-bto-0001244.html","urinary tract"]],"b":[["NCBITaxon%3A1258567","Escherichia coli LCT-EC52"]]},{"id":"NCBITaxon:1260132","l":"Streptococcus parauberis KCTC 11980BP","na":1,"nb":1,"a":[["kidney-bto-0000671.html","kidney"]],"b":[["NCBITaxon%3A1260132","Streptococcus parauberis KCTC 11980BP"]]},{"id":"NCBITaxon:1260359","l":"Enterococcus faecalis 06-MB-S-04","na":1,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A1260359","Enterococcus faecalis 06-MB-S-04"]]},{"id":"NCBITaxon:1260987","l":"Noviherbaspirillum malthae","na":1,"nb":1,"a":[["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A1260987","Noviherbaspirillum malthae"]]},{"id":"NCBITaxon:1261131","l":"Candidatus Liberibacter americanus str. Sao Paulo","na":1,"nb":1,"a":[["phloem-bto-0001058.html","phloem"]],"b":[["NCBITaxon%3A1261131","Candidatus Liberibacter americanus str. Sao Paulo"]]},{"id":"NCBITaxon:1261567","l":"Streptococcus agalactiae 2-22","na":1,"nb":1,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A1261567","Streptococcus agalactiae 2-22"]]},{"id":"NCBITaxon:1262550","l":"Brevibacterium jeotgali","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A1262550","Brevibacterium jeotgali"]]},{"id":"NCBITaxon:1262554","l":"Garicola koreensis","na":1,"nb":1,"a":[["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A1262554","Garicola koreensis"]]},{"id":"NCBITaxon:1262583","l":"Tamaricihabitans halophyticus","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1262583","Tamaricihabitans halophyticus"]]},{"id":"NCBITaxon:1263636","l":"Microbacterium kyungheense","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A1263636","Microbacterium kyungheense"]]},{"id":"NCBITaxon:1263637","l":"Microbacterium jejuense","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A1263637","Microbacterium jejuense"]]},{"id":"NCBITaxon:1265302","l":"","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1265302","Staphylococcus aureus subsp. aureus PB32"]]},{"id":"NCBITaxon:1265309","l":"Tritonibacter mobilis F1926","na":1,"nb":1,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A1265309","Tritonibacter mobilis F1926"]]},{"id":"NCBITaxon:1265350","l":"Buchnera aphidicola (Aphis glycines)","na":1,"nb":1,"a":[["phloem-bto-0001058.html","phloem"]],"b":[["NCBITaxon%3A1265350","Buchnera aphidicola (Aphis glycines)"]]},{"id":"NCBITaxon:1265684","l":"Streptococcus agalactiae SS1219","na":1,"nb":1,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A1265684","Streptococcus agalactiae SS1219"]]},{"id":"NCBITaxon:1265931","l":"Rhizobium metallidurans","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A1265931","Rhizobium metallidurans"]]},{"id":"NCBITaxon:1266066","l":"Streptococcus agalactiae LADL-90-503","na":1,"nb":1,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A1266066","Streptococcus agalactiae LADL-90-503"]]},{"id":"NCBITaxon:1266067","l":"Streptococcus agalactiae LADL_05-108a","na":1,"nb":1,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A1266067","Streptococcus agalactiae LADL_05-108a"]]},{"id":"NCBITaxon:1266068","l":"Streptococcus agalactiae SS1218","na":1,"nb":1,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A1266068","Streptococcus agalactiae SS1218"]]},{"id":"NCBITaxon:1266069","l":"Streptococcus agalactiae CF01173","na":1,"nb":1,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A1266069","Streptococcus agalactiae CF01173"]]},{"id":"NCBITaxon:1266070","l":"Streptococcus agalactiae SS1014","na":1,"nb":1,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A1266070","Streptococcus agalactiae SS1014"]]},{"id":"NCBITaxon:1266370","l":"Nitrospina gracilis 3/211","na":1,"nb":1,"a":[["gracilis-muscle-bto-0000536.html","gracilis muscle"]],"b":[["NCBITaxon%3A1266370","Nitrospina gracilis 3/211"]]},{"id":"NCBITaxon:1266729","l":"Bordetella holmesii F627","na":1,"nb":1,"a":[["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["NCBITaxon%3A1266729","Bordetella holmesii F627"]]},{"id":"NCBITaxon:1267217","l":"Melaminivora jejuensis","na":1,"nb":1,"a":[["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A1267217","Melaminivora jejuensis"]]},{"id":"NCBITaxon:126740","l":"Thermotoga sp. RQ2","na":1,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["NCBITaxon%3A126740","Thermotoga sp. RQ2"]]},{"id":"NCBITaxon:1267423","l":"Roseivirga pacifica","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1267423","Roseivirga pacifica"]]},{"id":"NCBITaxon:1267547","l":"","na":1,"nb":1,"a":[["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1267547","Bacillus subtilis MB73/2"]]},{"id":"NCBITaxon:1267766","l":"","na":1,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A1267766","Croceibacterium atlanticum"]]},{"id":"NCBITaxon:1267768","l":"Brevirhabdus pacifica","na":1,"nb":1,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["NCBITaxon%3A1267768","Brevirhabdus pacifica"]]},{"id":"NCBITaxon:1267769","l":"Allosediminivita pacifica","na":1,"nb":1,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["NCBITaxon%3A1267769","Allosediminivita pacifica"]]},{"id":"NCBITaxon:1267897","l":"Klebsiella pneumoniae hvKP1","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1267897","Klebsiella pneumoniae hvKP1"]]},{"id":"NCBITaxon:1271862","l":"","na":1,"nb":1,"a":[["breast-bto-0000149.html","breast"]],"b":[["NCBITaxon%3A1271862","Salmonella enterica subsp. enterica serovar Typhimurium var. 5- str. CFSAN001921"]]},{"id":"NCBITaxon:1273133","l":"Ligilactobacillus salivarius cp400","na":1,"nb":1,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A1273133","Ligilactobacillus salivarius cp400"]]},{"id":"NCBITaxon:1273541","l":"Pyrodictium delaneyi","na":1,"nb":1,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A1273541","Pyrodictium delaneyi"]]},{"id":"NCBITaxon:1274374","l":"Paenibacillus antibioticophila","na":1,"nb":1,"a":[["tuberculosis-habitatmech-bacdive-e5d21f85b7.html","Tuberculosis"]],"b":[["NCBITaxon%3A1274374","Paenibacillus antibioticophila"]]},{"id":"NCBITaxon:1274631","l":"Bradyrhizobium icense","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1274631","Bradyrhizobium icense"]]},{"id":"NCBITaxon:1275966","l":"Glaesserella parasuis SW114","na":1,"nb":1,"a":[["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1275966","Glaesserella parasuis SW114"]]},{"id":"NCBITaxon:1275967","l":"Glaesserella parasuis MN-H","na":1,"nb":1,"a":[["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1275967","Glaesserella parasuis MN-H"]]},{"id":"NCBITaxon:1275968","l":"Glaesserella parasuis 12939","na":1,"nb":1,"a":[["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1275968","Glaesserella parasuis 12939"]]},{"id":"NCBITaxon:1275969","l":"Glaesserella parasuis 84-15995","na":1,"nb":1,"a":[["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1275969","Glaesserella parasuis 84-15995"]]},{"id":"NCBITaxon:1276890","l":"Alteromonas sp. TK-46(2)","na":1,"nb":1,"a":[["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A1276890","Alteromonas sp. TK-46(2)"]]},{"id":"NCBITaxon:1277350","l":"Geobacter sp. DSM 9736","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A1277350","Geobacter sp. DSM 9736"]]},{"id":"NCBITaxon:1278232","l":"Keratinibaculum paraultunense","na":1,"nb":1,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A1278232","Keratinibaculum paraultunense"]]},{"id":"NCBITaxon:1279010","l":"Proteus mirabilis PR03","na":1,"nb":1,"a":[["urinary-tract-bto-0001244.html","urinary tract"]],"b":[["NCBITaxon%3A1279010","Proteus mirabilis PR03"]]},{"id":"NCBITaxon:1280940","l":"Mycoplasmoides pneumoniae M2592","na":1,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"]],"b":[["NCBITaxon%3A1280940","Mycoplasmoides pneumoniae M2592"]]},{"id":"NCBITaxon:1281779","l":"Agrobacterium tumefaciens str. Cherry 2E-2-2","na":1,"nb":1,"a":[["crown-gall-bto-0000303.html","crown gall"]],"b":[["NCBITaxon%3A1281779","Agrobacterium tumefaciens str. Cherry 2E-2-2"]]},{"id":"NCBITaxon:1281885","l":"Bordetella holmesii H558","na":1,"nb":1,"a":[["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["NCBITaxon%3A1281885","Bordetella holmesii H558"]]},{"id":"NCBITaxon:1286170","l":"","na":1,"nb":1,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"]],"b":[["NCBITaxon%3A1286170","Klebsiella ornithinolytica B6"]]},{"id":"NCBITaxon:1286354","l":"Escherichia coli TOP2662-4","na":1,"nb":1,"a":[["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286354","Escherichia coli TOP2662-4"]]},{"id":"NCBITaxon:1286405","l":"","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1286405","Lacticaseibacillus rhamnosus CRL1505"]]},{"id":"NCBITaxon:1287068","l":"Micromonospora andamanensis","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1287068","Micromonospora andamanensis"]]},{"id":"NCBITaxon:128780","l":"Stenotrophomonas acidaminiphila","na":1,"nb":1,"a":[["biome-envo-00000428.html","biome"]],"b":[["NCBITaxon%3A128780","Stenotrophomonas acidaminiphila"]]},{"id":"NCBITaxon:128785","l":"Pseudoxanthomonas mexicana","na":1,"nb":1,"a":[["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["NCBITaxon%3A128785","Pseudoxanthomonas mexicana"]]},{"id":"NCBITaxon:1289594","l":"Pectobacterium atrosepticum CFBP 6276","na":1,"nb":1,"a":[["tuber-bto-0001400.html","tuber"]],"b":[["NCBITaxon%3A1289594","Pectobacterium atrosepticum CFBP 6276"]]},{"id":"NCBITaxon:1290393","l":"Pasteurella multocida 671/90","na":1,"nb":1,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1290393","Pasteurella multocida 671/90"]]},{"id":"NCBITaxon:1290553","l":"Halocynthiibacter namhaensis","na":1,"nb":1,"a":[["ascidian-bto-0000090.html","ascidian"]],"b":[["NCBITaxon%3A1290553","Halocynthiibacter namhaensis"]]},{"id":"NCBITaxon:1290995","l":"Treponema pedis isoM1224","na":1,"nb":1,"a":[["gingiva-bto-0000519.html","gingiva"]],"b":[["NCBITaxon%3A1290995","Treponema pedis isoM1224"]]},{"id":"NCBITaxon:1290998","l":"Treponema pedis str. T M1","na":1,"nb":1,"a":[["gingiva-bto-0000519.html","gingiva"]],"b":[["NCBITaxon%3A1290998","Treponema pedis str. T M1"]]},{"id":"NCBITaxon:1290999","l":"Treponema pedis str. B 683","na":1,"nb":1,"a":[["gingiva-bto-0000519.html","gingiva"]],"b":[["NCBITaxon%3A1290999","Treponema pedis str. B 683"]]},{"id":"NCBITaxon:1291000","l":"Treponema pedis isoM1111","na":1,"nb":1,"a":[["gingiva-bto-0000519.html","gingiva"]],"b":[["NCBITaxon%3A1291000","Treponema pedis isoM1111"]]},{"id":"NCBITaxon:1291001","l":"Treponema pedis isoE1186","na":1,"nb":1,"a":[["gingiva-bto-0000519.html","gingiva"]],"b":[["NCBITaxon%3A1291001","Treponema pedis isoE1186"]]},{"id":"NCBITaxon:1291002","l":"Treponema pedis isoM1220","na":1,"nb":1,"a":[["gingiva-bto-0000519.html","gingiva"]],"b":[["NCBITaxon%3A1291002","Treponema pedis isoM1220"]]},{"id":"NCBITaxon:1291379","l":"Treponema pedis str. T A4","na":1,"nb":1,"a":[["gingiva-bto-0000519.html","gingiva"]],"b":[["NCBITaxon%3A1291379","Treponema pedis str. T A4"]]},{"id":"NCBITaxon:1293441","l":"Lysinibacillus contaminans","na":1,"nb":1,"a":[["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["NCBITaxon%3A1293441","Lysinibacillus contaminans"]]},{"id":"NCBITaxon:1293442","l":"Falsochrobactrum ovis","na":1,"nb":1,"a":[["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A1293442","Falsochrobactrum ovis"]]},{"id":"NCBITaxon:1295009","l":"Methanomassiliicoccus intestinalis (strain Issoire-Mx1)","na":1,"nb":1,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A1295009","Candidatus Methanomassiliicoccus intestinalis Issoire-Mx1"]]},{"id":"NCBITaxon:1296537","l":"Enterococcus xiangfangensis","na":1,"nb":1,"a":[["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A1296537","Enterococcus xiangfangensis"]]},{"id":"NCBITaxon:1296538","l":"Lactiplantibacillus mudanjiangensis","na":1,"nb":1,"a":[["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A1296538","Lactiplantibacillus mudanjiangensis"]]},{"id":"NCBITaxon:1296565","l":"Geodermatophilus amargosae","na":1,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A1296565","Geodermatophilus amargosae"]]},{"id":"NCBITaxon:1296619","l":"Staphylococcus capitis CR01","na":1,"nb":1,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A1296619","Staphylococcus capitis CR01"]]},{"id":"NCBITaxon:1296669","l":"Aquabacterium olei","na":1,"nb":1,"a":[["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A1296669","Aquabacterium olei"]]},{"id":"NCBITaxon:1297534","l":"Streptococcus oralis subsp. dentisani 7746","na":1,"nb":1,"a":[["tooth-bto-0000397.html","tooth"]],"b":[["NCBITaxon%3A1297534","Streptococcus oralis subsp. dentisani 7746"]]},{"id":"NCBITaxon:1297750","l":"Bacteroides luti","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1297750","Bacteroides luti"]]},{"id":"NCBITaxon:1297799","l":"Meiothermus ruber H328","na":1,"nb":1,"a":[["feather-bto-0000447.html","feather"]],"b":[["NCBITaxon%3A1297799","Meiothermus ruber H328"]]},{"id":"NCBITaxon:1298860","l":"Microbacterium sp. URHA0036","na":1,"nb":1,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A1298860","Microbacterium sp. URHA0036"]]},{"id":"NCBITaxon:1298868","l":"Flavobacterium sp. URHB0058","na":1,"nb":1,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A1298868","Flavobacterium sp. URHB0058"]]},{"id":"NCBITaxon:129961","l":"Spirulina major PCC 6313","na":1,"nb":1,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A129961","Spirulina major PCC 6313"]]},{"id":"NCBITaxon:129985","l":"Mesobacillus jeotgali","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A129985","Mesobacillus jeotgali"]]},{"id":"NCBITaxon:1300267","l":"Streptomyces zhaozhouensis","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1300267","Streptomyces zhaozhouensis"]]},{"id":"NCBITaxon:1300914","l":"Mucilaginibacter sp. PAMC 26640","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A1300914","Mucilaginibacter sp. PAMC 26640"]]},{"id":"NCBITaxon:1301100","l":"Faecalimicrobium dakarense","na":1,"nb":1,"a":[["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A1301100","Faecalimicrobium dakarense"]]},{"id":"NCBITaxon:1302614","l":"Nanoarchaeota archaeon SCGC AAA011-J2","na":1,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A1302614","Nanoarchaeota archaeon SCGC AAA011-J2"]]},{"id":"NCBITaxon:1302659","l":"Planococcus versutus","na":1,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A1302659","Planococcus versutus"]]},{"id":"NCBITaxon:1302685","l":"Chryseobacterium takakiae","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A1302685","Chryseobacterium takakiae"]]},{"id":"NCBITaxon:1302687","l":"Chryseobacterium polytrichastri","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A1302687","Chryseobacterium polytrichastri"]]},{"id":"NCBITaxon:1302690","l":"Cnuella takakiae","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A1302690","Cnuella takakiae"]]},{"id":"NCBITaxon:13035","l":"Dactylococcopsis salina PCC 8305","na":1,"nb":1,"a":[["inlet-envo-00000475.html","inlet"]],"b":[["NCBITaxon%3A13035","Dactylococcopsis salina PCC 8305"]]},{"id":"NCBITaxon:1303716","l":"Penicillium egyptiacum","na":1,"nb":1,"a":[["low-tide-zone-envo-00000319.html","low tide zone"]],"b":[["NCBITaxon%3A1303716","Penicillium egyptiacum"]]},{"id":"NCBITaxon:1303921","l":"endosymbiont of Bathymodiolus septemdierum str. Myojin knoll","na":1,"nb":1,"a":[["gill-bto-0000518.html","gill"]],"b":[["NCBITaxon%3A1303921","endosymbiont of Bathymodiolus septemdierum str. Myojin knoll"]]},{"id":"NCBITaxon:1306407","l":"Treponema phagedenis 4A","na":1,"nb":1,"a":[["reproductive-system-bto-0000081.html","reproductive system"]],"b":[["NCBITaxon%3A1306407","Treponema phagedenis 4A"]]},{"id":"NCBITaxon:1306948","l":"","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1306948","Xanthomonas arboricola pv. corylina str. NCCB 100457"]]},{"id":"NCBITaxon:1306952","l":"Pediococcus acidilactici D3","na":1,"nb":1,"a":[["pa-1-cell-bto-0001591.html","PA-1 cell"]],"b":[["NCBITaxon%3A1306952","Pediococcus acidilactici D3"]]},{"id":"NCBITaxon:1307436","l":"Cytobacillus firmus DS1","na":1,"nb":1,"a":[["cuticle-bto-0001600.html","cuticle"]],"b":[["NCBITaxon%3A1307436","Cytobacillus firmus DS1"]]},{"id":"NCBITaxon:1307761","l":"Salinispira pacifica","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A1307761","Salinispira pacifica"]]},{"id":"NCBITaxon:1308924","l":"","na":1,"nb":1,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"]],"b":[["NCBITaxon%3A1308924","Agromyces bauzanensis"]]},{"id":"NCBITaxon:1309411","l":"Deinococcus soli (ex Cha et al. 2016)","na":1,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A1309411","Deinococcus soli (ex Cha et al. 2016)"]]},{"id":"NCBITaxon:1310431","l":"","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A1310431","Bacillus subtilis subsp. subtilis str. MP11"]]},{"id":"NCBITaxon:1311757","l":"Escherichia coli ACN001","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1311757","Escherichia coli ACN001"]]},{"id":"NCBITaxon:1311759","l":"Mannheimia haemolytica D171","na":1,"nb":1,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1311759","Mannheimia haemolytica D171"]]},{"id":"NCBITaxon:1312367","l":"Proteus hauseri ZMd44","na":1,"nb":1,"a":[["pulp-bto-0001142.html","pulp"]],"b":[["NCBITaxon%3A1312367","Proteus hauseri ZMd44"]]},{"id":"NCBITaxon:131318","l":"Corynebacterium felinum","na":1,"nb":1,"a":[["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A131318","Corynebacterium felinum"]]},{"id":"NCBITaxon:1315307","l":"Streptococcus pneumoniae MNZ11b","na":1,"nb":1,"a":[["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["NCBITaxon%3A1315307","Streptococcus pneumoniae MNZ11b"]]},{"id":"NCBITaxon:1315308","l":"Streptococcus pneumoniae MNZ14","na":1,"nb":1,"a":[["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["NCBITaxon%3A1315308","Streptococcus pneumoniae MNZ14"]]},{"id":"NCBITaxon:1315309","l":"Streptococcus pneumoniae MNZ37","na":1,"nb":1,"a":[["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["NCBITaxon%3A1315309","Streptococcus pneumoniae MNZ37"]]},{"id":"NCBITaxon:1315310","l":"Streptococcus pneumoniae MNZ41","na":1,"nb":1,"a":[["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["NCBITaxon%3A1315310","Streptococcus pneumoniae MNZ41"]]},{"id":"NCBITaxon:1315311","l":"Streptococcus pneumoniae MNZ85","na":1,"nb":1,"a":[["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["NCBITaxon%3A1315311","Streptococcus pneumoniae MNZ85"]]},{"id":"NCBITaxon:1315977","l":"Mycobacterium tuberculosis PR08","na":1,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"]],"b":[["NCBITaxon%3A1315977","Mycobacterium tuberculosis PR08"]]},{"id":"NCBITaxon:1316254","l":"Veillonella parvula HSIVP1","na":1,"nb":1,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["NCBITaxon%3A1316254","Veillonella parvula HSIVP1"]]},{"id":"NCBITaxon:1316408","l":"Streptococcus sp. HSISM1","na":1,"nb":1,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["NCBITaxon%3A1316408","Streptococcus sp. HSISM1"]]},{"id":"NCBITaxon:1316409","l":"Streptococcus sp. HSISB1","na":1,"nb":1,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["NCBITaxon%3A1316409","Streptococcus sp. HSISB1"]]},{"id":"NCBITaxon:1316410","l":"Streptococcus sp. HSISS1","na":1,"nb":1,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["NCBITaxon%3A1316410","Streptococcus sp. HSISS1"]]},{"id":"NCBITaxon:1316411","l":"Streptococcus sp. HSISS2","na":1,"nb":1,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["NCBITaxon%3A1316411","Streptococcus sp. HSISS2"]]},{"id":"NCBITaxon:1316412","l":"Streptococcus sp. HSISS3","na":1,"nb":1,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["NCBITaxon%3A1316412","Streptococcus sp. HSISS3"]]},{"id":"NCBITaxon:1316414","l":"Enterococcus sp. HSIEG1","na":1,"nb":1,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["NCBITaxon%3A1316414","Enterococcus sp. HSIEG1"]]},{"id":"NCBITaxon:1316928","l":"Gordonia terrae C-6","na":1,"nb":1,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"]],"b":[["NCBITaxon%3A1316928","Gordonia terrae C-6"]]},{"id":"NCBITaxon:1318743","l":"Bartonella ancashensis","na":1,"nb":1,"a":[["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"]],"b":[["NCBITaxon%3A1318743","Bartonella ancashensis"]]},{"id":"NCBITaxon:1321939","l":"Helicobacter pylori UM037","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1321939","Helicobacter pylori UM037"]]},{"id":"NCBITaxon:1321940","l":"Helicobacter pylori UM066","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1321940","Helicobacter pylori UM066"]]},{"id":"NCBITaxon:1322346","l":"Glaesserella parasuis ZJ0906","na":1,"nb":1,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["NCBITaxon%3A1322346","Glaesserella parasuis ZJ0906"]]},{"id":"NCBITaxon:1323370","l":"Caloranaerobacter ferrireducens","na":1,"nb":1,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A1323370","Caloranaerobacter ferrireducens"]]},{"id":"NCBITaxon:1323375","l":"Anoxybacter fermentans","na":1,"nb":1,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A1323375","Anoxybacter fermentans"]]},{"id":"NCBITaxon:1323664","l":"Paraburkholderia caribensis MBA4","na":1,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A1323664","Paraburkholderia caribensis MBA4"]]},{"id":"NCBITaxon:1324350","l":"Acinetobacter equi","na":1,"nb":1,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A1324350","Acinetobacter equi"]]},{"id":"NCBITaxon:1324766","l":"Rothia endophytica","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A1324766","Rothia endophytica"]]},{"id":"NCBITaxon:1324966","l":"Bacillus thuringiensis T01-328","na":1,"nb":1,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A1324966","Bacillus thuringiensis T01-328"]]},{"id":"NCBITaxon:1326758","l":"Morganella sp. GLFB","na":1,"nb":1,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"]],"b":[["NCBITaxon%3A1326758","Morganella sp. GLFB"]]},{"id":"NCBITaxon:1326759","l":"Serratia sp. GLFA","na":1,"nb":1,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"]],"b":[["NCBITaxon%3A1326759","Serratia sp. GLFA"]]},{"id":"NCBITaxon:1329250","l":"Weissella oryzae (strain DSM 25784 / JCM 18191 / LMG 30913 / SG25)","na":1,"nb":1,"a":[["caryopsis-bto-0000208.html","caryopsis"]],"b":[["NCBITaxon%3A1329250","Weissella oryzae SG25"]]},{"id":"NCBITaxon:1329262","l":"Mobilisporobacter senegalensis","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A1329262","Mobilisporobacter senegalensis"]]},{"id":"NCBITaxon:1329370","l":"Franzmannia qiaohouensis","na":1,"nb":1,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["NCBITaxon%3A1329370","Franzmannia qiaohouensis"]]},{"id":"NCBITaxon:1329905","l":"Mannheimia haemolytica D35","na":1,"nb":1,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1329905","Mannheimia haemolytica D35"]]},{"id":"NCBITaxon:1331042","l":"Pasteurella multocida subsp. multocida P1062","na":1,"nb":1,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1331042","Pasteurella multocida subsp. multocida P1062"]]},{"id":"NCBITaxon:1331043","l":"","na":1,"nb":1,"a":[["ovary-bto-0000975.html","ovary"]],"b":[["NCBITaxon%3A1331043","Salmonella enterica subsp. enterica serovar Gallinarum/Pullorum str. FCAV198"]]},{"id":"NCBITaxon:133189","l":"Bdellovibrio sp. W","na":1,"nb":1,"a":[["stream-envo-00000023.html","stream"]],"b":[["NCBITaxon%3A133189","Bdellovibrio sp. W"]]},{"id":"NCBITaxon:1333523","l":"Salinarchaeum sp. Harcht-Bsk1","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A1333523","Salinarchaeum sp. Harcht-Bsk1"]]},{"id":"NCBITaxon:1333529","l":"Campylobacter fetus subsp. venerealis bv. intermedius str. 99541","na":1,"nb":1,"a":[["prepuce-bto-0001113.html","prepuce"]],"b":[["NCBITaxon%3A1333529","Campylobacter fetus subsp. venerealis bv. intermedius str. 99541"]]},{"id":"NCBITaxon:1333540","l":"Pseudomonas aeruginosa str. C 763","na":1,"nb":1,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1333540","Pseudomonas aeruginosa str. C 763"]]},{"id":"NCBITaxon:1333541","l":"Pseudomonas aeruginosa str. C 1334","na":1,"nb":1,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1333541","Pseudomonas aeruginosa str. C 1334"]]},{"id":"NCBITaxon:1333543","l":"Pseudomonas aeruginosa str. C 1433","na":1,"nb":1,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1333543","Pseudomonas aeruginosa str. C 1433"]]},{"id":"NCBITaxon:1333660","l":"Endozoicomonas atrinae","na":1,"nb":1,"a":[["ascidian-bto-0000090.html","ascidian"]],"b":[["NCBITaxon%3A1333660","Endozoicomonas atrinae"]]},{"id":"NCBITaxon:1333864","l":"Streptococcus oralis subsp. tigurinus 2425","na":1,"nb":1,"a":[["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A1333864","Streptococcus oralis subsp. tigurinus 2425"]]},{"id":"NCBITaxon:1333865","l":"Streptococcus oralis subsp. tigurinus 2426","na":1,"nb":1,"a":[["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A1333865","Streptococcus oralis subsp. tigurinus 2426"]]},{"id":"NCBITaxon:1334019","l":"Alcanivorax sp. EPR7","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A1334019","Alcanivorax sp. EPR7"]]},{"id":"NCBITaxon:133422","l":"Pseudoalteromonas sp. A316","na":1,"nb":1,"a":[["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A133422","Pseudoalteromonas sp. A316"]]},{"id":"NCBITaxon:1334629","l":"Myxococcus fulvus 124B02","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1334629","Myxococcus fulvus 124B02"]]},{"id":"NCBITaxon:1336203","l":"Pseudomonas aeruginosa MH38","na":1,"nb":1,"a":[["urethra-bto-0001426.html","urethra"]],"b":[["NCBITaxon%3A1336203","Pseudomonas aeruginosa MH38"]]},{"id":"NCBITaxon:1337051","l":"Murimonas intestini","na":1,"nb":1,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["NCBITaxon%3A1337051","Murimonas intestini"]]},{"id":"NCBITaxon:1337054","l":"Paenibacillus sp. A3","na":1,"nb":1,"a":[["thigh-bto-0001376.html","thigh"]],"b":[["NCBITaxon%3A1337054","Paenibacillus sp. A3"]]},{"id":"NCBITaxon:1337839","l":"Flavobacterium sp. DSM 425","na":1,"nb":1,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A1337839","Flavobacterium sp. DSM 425"]]},{"id":"NCBITaxon:1337887","l":"Brucella intermedia 229E","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A1337887","Brucella intermedia 229E"]]},{"id":"NCBITaxon:1338426","l":"Arthrobacter bambusae","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A1338426","Arthrobacter bambusae"]]},{"id":"NCBITaxon:1338436","l":"","na":1,"nb":1,"a":[["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1338436","Sinomonas humi"]]},{"id":"NCBITaxon:1340529","l":"Photobacterium panuliri","na":1,"nb":1,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["NCBITaxon%3A1340529","Photobacterium panuliri"]]},{"id":"NCBITaxon:1341157","l":"Ruminococcus flavefaciens 007c","na":1,"nb":1,"a":[["fiber-bto-0000450.html","fiber"]],"b":[["NCBITaxon%3A1341157","Ruminococcus flavefaciens 007c"]]},{"id":"NCBITaxon:1341644","l":"Pseudomonas aeruginosa WS136","na":1,"nb":1,"a":[["bone-marrow-bto-0000141.html","bone marrow"]],"b":[["NCBITaxon%3A1341644","Pseudomonas aeruginosa WS136"]]},{"id":"NCBITaxon:1342794","l":"Photobacterium sanctipauli","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A1342794","Photobacterium sanctipauli"]]},{"id":"NCBITaxon:1342818","l":"Vibrio madracius","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A1342818","Vibrio madracius"]]},{"id":"NCBITaxon:1343737","l":"","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1343737","Xylella fastidiosa subsp. multiplex Griffin-1"]]},{"id":"NCBITaxon:1344948","l":"Sphingomonas aerophila","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A1344948","Sphingomonas aerophila"]]},{"id":"NCBITaxon:134602","l":"Actinomadura nitritigenes","na":1,"nb":1,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"]],"b":[["NCBITaxon%3A134602","Actinomadura nitritigenes"]]},{"id":"NCBITaxon:1346286","l":"Indolivaga macrotermitis","na":1,"nb":1,"a":[["hindgut-bto-0000510.html","hindgut"]],"b":[["NCBITaxon%3A1346286","Indolivaga macrotermitis"]]},{"id":"NCBITaxon:1346290","l":"Methyloversatilis thermotolerans","na":1,"nb":1,"a":[["caldera-envo-00000096.html","caldera"]],"b":[["NCBITaxon%3A1346290","Methyloversatilis thermotolerans"]]},{"id":"NCBITaxon:1346330","l":"Sphingobacterium paucimobilis HER1398","na":1,"nb":1,"a":[["corn-silk-bto-0002854.html","corn silk"]],"b":[["NCBITaxon%3A1346330","Sphingobacterium paucimobilis HER1398"]]},{"id":"NCBITaxon:1347420","l":"Aeromonas veronii Hm21","na":1,"nb":1,"a":[["alimentary-canal-bto-0000058.html","alimentary canal"]],"b":[["NCBITaxon%3A1347420","Aeromonas veronii Hm21"]]},{"id":"NCBITaxon:1347891","l":"Naumannella cuiyingiana","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A1347891","Naumannella cuiyingiana"]]},{"id":"NCBITaxon:1348114","l":"Pseudoalteromonas piratica","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A1348114","Pseudoalteromonas piratica"]]},{"id":"NCBITaxon:1348339","l":"Pseudomonas aeruginosa LCT-PA41","na":1,"nb":1,"a":[["orbit-bto-0004687.html","orbit"]],"b":[["NCBITaxon%3A1348339","Pseudomonas aeruginosa LCT-PA41"]]},{"id":"NCBITaxon:1351836","l":"Brucella melitensis ADMAS-G1","na":1,"nb":1,"a":[["placenta-bto-0001078.html","placenta"]],"b":[["NCBITaxon%3A1351836","Brucella melitensis ADMAS-G1"]]},{"id":"NCBITaxon:1352223","l":"Streptococcus dentiloxodontae","na":1,"nb":1,"a":[["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A1352223","Streptococcus dentiloxodontae"]]},{"id":"NCBITaxon:1352343","l":"Helicobacter pylori UM038","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1352343","Helicobacter pylori UM038"]]},{"id":"NCBITaxon:1352344","l":"Helicobacter pylori UM085","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1352344","Helicobacter pylori UM085"]]},{"id":"NCBITaxon:1352345","l":"Helicobacter pylori UM111","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1352345","Helicobacter pylori UM111"]]},{"id":"NCBITaxon:1352346","l":"Helicobacter pylori UM077","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1352346","Helicobacter pylori UM077"]]},{"id":"NCBITaxon:1354301","l":"Clostridium sp. BL8","na":1,"nb":1,"a":[["vero-cell-bto-0001444.html","Vero cell"]],"b":[["NCBITaxon%3A1354301","Clostridium sp. BL8"]]},{"id":"NCBITaxon:1355528","l":"Helicobacter pylori UM065","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1355528","Helicobacter pylori UM065"]]},{"id":"NCBITaxon:1355529","l":"Helicobacter pylori UM067","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1355529","Helicobacter pylori UM067"]]},{"id":"NCBITaxon:1355530","l":"Helicobacter pylori UM084","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1355530","Helicobacter pylori UM084"]]},{"id":"NCBITaxon:1355531","l":"Helicobacter pylori UM114","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1355531","Helicobacter pylori UM114"]]},{"id":"NCBITaxon:1356851","l":"Prauserella soli","na":1,"nb":1,"a":[["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A1356851","Prauserella soli"]]},{"id":"NCBITaxon:1357294","l":"Staphylococcus equorum UMC-CNS-924","na":1,"nb":1,"a":[["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["NCBITaxon%3A1357294","Staphylococcus equorum UMC-CNS-924"]]},{"id":"NCBITaxon:135740","l":"Paracoccus kondratievae","na":1,"nb":1,"a":[["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["NCBITaxon%3A135740","Paracoccus kondratievae"]]},{"id":"NCBITaxon:135826","l":"Jeotgalibacillus alimentarius","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A135826","Jeotgalibacillus alimentarius"]]},{"id":"NCBITaxon:1359204","l":"","na":1,"nb":1,"a":[["vero-cell-bto-0001444.html","Vero cell"]],"b":[["NCBITaxon%3A1359204","Rickettsia rhipicephali str. HJ#5"]]},{"id":"NCBITaxon:136468","l":"Vibrio lentus","na":1,"nb":1,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A136468","Vibrio lentus"]]},{"id":"NCBITaxon:1365636","l":"Helicobacter pylori UM023","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1365636","Helicobacter pylori UM023"]]},{"id":"NCBITaxon:1367852","l":"Izhakiella capsodis","na":1,"nb":1,"a":[["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A1367852","Izhakiella capsodis"]]},{"id":"NCBITaxon:137584","l":"Thalassomonas viridans","na":1,"nb":1,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A137584","Thalassomonas viridans"]]},{"id":"NCBITaxon:137778","l":"Helicobacter aurati","na":1,"nb":1,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A137778","Helicobacter aurati"]]},{"id":"NCBITaxon:137838","l":"Clostridium neonatale","na":1,"nb":1,"a":[["ileum-bto-0000620.html","ileum"]],"b":[["NCBITaxon%3A137838","Clostridium neonatale"]]},{"id":"NCBITaxon:1379676","l":"Xenorhabdus bovienii str. Jollieti","na":1,"nb":1,"a":[["exoskeleton-bto-0004659.html","exoskeleton"]],"b":[["NCBITaxon%3A1379676","Xenorhabdus bovienii str. Jollieti"]]},{"id":"NCBITaxon:1379787","l":"Wolbachia pipientis wUni","na":1,"nb":1,"a":[["semen-bto-0001230.html","semen"]],"b":[["NCBITaxon%3A1379787","Wolbachia pipientis wUni"]]},{"id":"NCBITaxon:1380347","l":"Geodermatophilaceae bacterium URHB0048","na":1,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["NCBITaxon%3A1380347","Geodermatophilaceae bacterium URHB0048"]]},{"id":"NCBITaxon:1380348","l":"Acidobacteriaceae bacterium URHE0068","na":1,"nb":1,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A1380348","Acidobacteriaceae bacterium URHE0068"]]},{"id":"NCBITaxon:1380394","l":"Rhodospirillales bacterium URHD0088","na":1,"nb":1,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A1380394","Rhodospirillales bacterium URHD0088"]]},{"id":"NCBITaxon:1380685","l":"Kroppenstedtia pulmonis","na":1,"nb":1,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["NCBITaxon%3A1380685","Kroppenstedtia pulmonis"]]},{"id":"NCBITaxon:1380771","l":"Smithella sp. ME-1","na":1,"nb":1,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"]],"b":[["NCBITaxon%3A1380771","Smithella sp. ME-1"]]},{"id":"NCBITaxon:1381081","l":"Vibrio panuliri","na":1,"nb":1,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["NCBITaxon%3A1381081","Vibrio panuliri"]]},{"id":"NCBITaxon:1381124","l":"Limosilactobacillus fermentum 3872","na":1,"nb":1,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"]],"b":[["NCBITaxon%3A1381124","Limosilactobacillus fermentum 3872"]]},{"id":"NCBITaxon:1384051","l":"Bacillus amyloliquefaciens UASWS BA1","na":1,"nb":1,"a":[["wood-bto-0005516.html","wood"]],"b":[["NCBITaxon%3A1384051","Bacillus amyloliquefaciens UASWS BA1"]]},{"id":"NCBITaxon:1384060","l":"Rhodococcus sp. P27","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1384060","Rhodococcus sp. P27"]]},{"id":"NCBITaxon:1384063","l":"Mediterraneibacter gnavus AGR2154","na":1,"nb":1,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A1384063","Mediterraneibacter gnavus AGR2154"]]},{"id":"NCBITaxon:1384064","l":"Levilactobacillus brevis AG48","na":1,"nb":1,"a":[["foregut-bto-0000507.html","foregut"]],"b":[["NCBITaxon%3A1384064","Levilactobacillus brevis AG48"]]},{"id":"NCBITaxon:1384065","l":"Hominimerdicola alba AD2013","na":1,"nb":1,"a":[["foregut-bto-0000507.html","foregut"]],"b":[["NCBITaxon%3A1384065","Hominimerdicola alba AD2013"]]},{"id":"NCBITaxon:1384066","l":"Ruminococcus flavefaciens AE3010","na":1,"nb":1,"a":[["foregut-bto-0000507.html","foregut"]],"b":[["NCBITaxon%3A1384066","Ruminococcus flavefaciens AE3010"]]},{"id":"NCBITaxon:1384067","l":"Pediococcus acidilactici AGR20","na":1,"nb":1,"a":[["foregut-bto-0000507.html","foregut"]],"b":[["NCBITaxon%3A1384067","Pediococcus acidilactici AGR20"]]},{"id":"NCBITaxon:1384638","l":"Aridibacter famidurans","na":1,"nb":1,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A1384638","Aridibacter famidurans"]]},{"id":"NCBITaxon:1385420","l":"Allofrancisella heilbronnii","na":1,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A1385420","Allofrancisella heilbronnii"]]},{"id":"NCBITaxon:1386083","l":"Helicobacter pylori X47-2AL","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A1386083","Helicobacter pylori X47-2AL"]]},{"id":"NCBITaxon:1387197","l":"Candidatus Schmidhempelia bombi str. Bimp","na":1,"nb":1,"a":[["hindgut-bto-0000510.html","hindgut"]],"b":[["NCBITaxon%3A1387197","Candidatus Schmidhempelia bombi str. Bimp"]]},{"id":"NCBITaxon:1387275","l":"Chryseobacterium profundimaris","na":1,"nb":1,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["NCBITaxon%3A1387275","Chryseobacterium profundimaris"]]},{"id":"NCBITaxon:1389006","l":"Shimia sp. SK013","na":1,"nb":1,"a":[["filament-bto-0000463.html","filament"]],"b":[["NCBITaxon%3A1389006","Shimia sp. SK013"]]},{"id":"NCBITaxon:1389932","l":"Achromobacter pulmonis","na":1,"nb":1,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"]],"b":[["NCBITaxon%3A1389932","Achromobacter pulmonis"]]},{"id":"NCBITaxon:1390076","l":"Streptococcus pyogenes SP1-LAU","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A1390076","Streptococcus pyogenes SP1-LAU"]]},{"id":"NCBITaxon:1390077","l":"Streptococcus pyogenes SP2-LAU","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A1390077","Streptococcus pyogenes SP2-LAU"]]},{"id":"NCBITaxon:1390078","l":"Streptococcus pyogenes SP3-LAU","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A1390078","Streptococcus pyogenes SP3-LAU"]]},{"id":"NCBITaxon:1390079","l":"Streptococcus pyogenes SP4-LAU","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A1390079","Streptococcus pyogenes SP4-LAU"]]},{"id":"NCBITaxon:1390080","l":"Streptococcus pyogenes SP5-LAU","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A1390080","Streptococcus pyogenes SP5-LAU"]]},{"id":"NCBITaxon:1390081","l":"Streptococcus pyogenes SP6-LAU","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A1390081","Streptococcus pyogenes SP6-LAU"]]},{"id":"NCBITaxon:1390082","l":"Streptococcus pyogenes SP7-LAU","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A1390082","Streptococcus pyogenes SP7-LAU"]]},{"id":"NCBITaxon:1390083","l":"Streptococcus pyogenes SP8-LAU","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A1390083","Streptococcus pyogenes SP8-LAU"]]},{"id":"NCBITaxon:1390084","l":"Streptococcus pyogenes SP10-LAU","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A1390084","Streptococcus pyogenes SP10-LAU"]]},{"id":"NCBITaxon:1390361","l":"Ochrobactrum sp. EGD-AQ16","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A1390361","Ochrobactrum sp. EGD-AQ16"]]},{"id":"NCBITaxon:1390380","l":"Cronobacter turicensis z610","na":1,"nb":1,"a":[["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A1390380","Cronobacter turicensis z610"]]},{"id":"NCBITaxon:1392007","l":"Ligilactobacillus equi DPC 6820","na":1,"nb":1,"a":[["hindgut-bto-0000510.html","hindgut"]],"b":[["NCBITaxon%3A1392007","Ligilactobacillus equi DPC 6820"]]},{"id":"NCBITaxon:1392497","l":"Clostridioides mangenotii LM2","na":1,"nb":1,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A1392497","Clostridioides mangenotii LM2"]]},{"id":"NCBITaxon:1392836","l":"Lachnospiraceae bacterium TWA4","na":1,"nb":1,"a":[["forestomach-bto-0000480.html","forestomach"]],"b":[["NCBITaxon%3A1392836","Lachnospiraceae bacterium TWA4"]]},{"id":"NCBITaxon:1392852","l":"Escherichia coli M6","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392852","Escherichia coli M6"]]},{"id":"NCBITaxon:1392853","l":"Escherichia coli M7","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392853","Escherichia coli M7"]]},{"id":"NCBITaxon:1392855","l":"Escherichia coli M9","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392855","Escherichia coli M9"]]},{"id":"NCBITaxon:1392857","l":"Escherichia coli M11","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392857","Escherichia coli M11"]]},{"id":"NCBITaxon:1392858","l":"Escherichia coli M12","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392858","Escherichia coli M12"]]},{"id":"NCBITaxon:1392859","l":"Escherichia coli M13","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392859","Escherichia coli M13"]]},{"id":"NCBITaxon:1392860","l":"Escherichia coli M14","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392860","Escherichia coli M14"]]},{"id":"NCBITaxon:1392861","l":"Escherichia coli M16","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392861","Escherichia coli M16"]]},{"id":"NCBITaxon:1392862","l":"Escherichia coli M17","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392862","Escherichia coli M17"]]},{"id":"NCBITaxon:1392863","l":"Escherichia coli M18","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392863","Escherichia coli M18"]]},{"id":"NCBITaxon:1392866","l":"Escherichia coli M21","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392866","Escherichia coli M21"]]},{"id":"NCBITaxon:1392867","l":"Escherichia coli M22","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392867","Escherichia coli M22"]]},{"id":"NCBITaxon:1392868","l":"Escherichia coli M23","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392868","Escherichia coli M23"]]},{"id":"NCBITaxon:1392871","l":"Escherichia coli WC1","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392871","Escherichia coli WC1"]]},{"id":"NCBITaxon:1395579","l":"Enterobacter sp. DC3","na":1,"nb":1,"a":[["tuber-bto-0001400.html","tuber"]],"b":[["NCBITaxon%3A1395579","Enterobacter sp. DC3"]]},{"id":"NCBITaxon:1395580","l":"Enterobacter sp. DC4","na":1,"nb":1,"a":[["tuber-bto-0001400.html","tuber"]],"b":[["NCBITaxon%3A1395580","Enterobacter sp. DC4"]]},{"id":"NCBITaxon:1395944","l":"","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1395944","Aliirhizobium smilacinae"]]},{"id":"NCBITaxon:1397850","l":"Mycoplasmopsis californica HAZ160_1","na":1,"nb":1,"a":[["somatic-cell-bto-0001268.html","somatic cell"]],"b":[["NCBITaxon%3A1397850","Mycoplasmopsis californica HAZ160_1"]]},{"id":"NCBITaxon:1398664","l":"Paraburkholderia metalliresistens","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A1398664","Paraburkholderia metalliresistens"]]},{"id":"NCBITaxon:1398776","l":"Pseudomonas chlororaphis YL-1","na":1,"nb":1,"a":[["root-tip-bto-0001191.html","root tip"]],"b":[["NCBITaxon%3A1398776","Pseudomonas chlororaphis YL-1"]]},{"id":"NCBITaxon:1399774","l":"Enterobacter cloacae JD6301","na":1,"nb":1,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A1399774","Enterobacter cloacae JD6301"]]},{"id":"NCBITaxon:1399793","l":"Lactiplantibacillus plantarum 19L3","na":1,"nb":1,"a":[["rennet-bto-0001168.html","rennet"]],"b":[["NCBITaxon%3A1399793","Lactiplantibacillus plantarum 19L3"]]},{"id":"NCBITaxon:1399969","l":"Caballeronia megalochromosomata","na":1,"nb":1,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A1399969","Caballeronia megalochromosomata"]]},{"id":"NCBITaxon:1400868","l":"Pseudomonas aeruginosa VRFPA04","na":1,"nb":1,"a":[["cornea-bto-0000286.html","cornea"]],"b":[["NCBITaxon%3A1400868","Pseudomonas aeruginosa VRFPA04"]]},{"id":"NCBITaxon:1401264","l":"Prauserella coralliicola","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A1401264","Prauserella coralliicola"]]},{"id":"NCBITaxon:1402208","l":"Ligilactobacillus ruminis DPC 6832","na":1,"nb":1,"a":[["flagellate-bto-0000464.html","flagellate"]],"b":[["NCBITaxon%3A1402208","Ligilactobacillus ruminis DPC 6832"]]},{"id":"NCBITaxon:1403829","l":"Streptococcus mutans PKUSS-HG01","na":1,"nb":1,"a":[["dental-plaque-bto-0000338.html","dental plaque"]],"b":[["NCBITaxon%3A1403829","Streptococcus mutans PKUSS-HG01"]]},{"id":"NCBITaxon:1404260","l":"Streptococcus mutans PKUSS-LG01","na":1,"nb":1,"a":[["dental-plaque-bto-0000338.html","dental plaque"]],"b":[["NCBITaxon%3A1404260","Streptococcus mutans PKUSS-LG01"]]},{"id":"NCBITaxon:1405296","l":"Chlamydia suis MD56","na":1,"nb":1,"a":[["conjunctiva-bto-0003415.html","conjunctiva"]],"b":[["NCBITaxon%3A1405296","Chlamydia suis MD56"]]},{"id":"NCBITaxon:1405499","l":"Franconibacter helveticus 1159","na":1,"nb":1,"a":[["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A1405499","Franconibacter helveticus 1159"]]},{"id":"NCBITaxon:1406822","l":"Franconibacter pulveris 1160","na":1,"nb":1,"a":[["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A1406822","Franconibacter pulveris 1160"]]},{"id":"NCBITaxon:1408179","l":"Streptococcus pneumoniae A026","na":1,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"]],"b":[["NCBITaxon%3A1408179","Streptococcus pneumoniae A026"]]},{"id":"NCBITaxon:1408207","l":"Pseudomonas aeruginosa PK6","na":1,"nb":1,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"]],"b":[["NCBITaxon%3A1408207","Pseudomonas aeruginosa PK6"]]},{"id":"NCBITaxon:1408275","l":"Pseudomonas aeruginosa LESlike4","na":1,"nb":1,"a":[["amoeba-bto-0005312.html","amoeba"]],"b":[["NCBITaxon%3A1408275","Pseudomonas aeruginosa LESlike4"]]},{"id":"NCBITaxon:1408276","l":"Pseudomonas aeruginosa LESlike5","na":1,"nb":1,"a":[["amoeba-bto-0005312.html","amoeba"]],"b":[["NCBITaxon%3A1408276","Pseudomonas aeruginosa LESlike5"]]},{"id":"NCBITaxon:1408277","l":"Pseudomonas aeruginosa LESlike7","na":1,"nb":1,"a":[["amoeba-bto-0005312.html","amoeba"]],"b":[["NCBITaxon%3A1408277","Pseudomonas aeruginosa LESlike7"]]},{"id":"NCBITaxon:1408287","l":"Fusobacterium nucleatum W1481","na":1,"nb":1,"a":[["dental-plaque-bto-0000338.html","dental plaque"]],"b":[["NCBITaxon%3A1408287","Fusobacterium nucleatum W1481"]]},{"id":"NCBITaxon:1408452","l":"Mycobacterium genavense ATCC 51234","na":1,"nb":1,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A1408452","Mycobacterium genavense ATCC 51234"]]},{"id":"NCBITaxon:1409927","l":"Acinetobacter baumannii MRSN 7339","na":1,"nb":1,"a":[["fibroblast-bto-0000452.html","fibroblast"]],"b":[["NCBITaxon%3A1409927","Acinetobacter baumannii MRSN 7339"]]},{"id":"NCBITaxon:1409961","l":"Klebsiella pneumoniae MRSN 1319","na":1,"nb":1,"a":[["fibroblast-bto-0000452.html","fibroblast"]],"b":[["NCBITaxon%3A1409961","Klebsiella pneumoniae MRSN 1319"]]},{"id":"NCBITaxon:1410916","l":"Salmonella enterica subsp. enterica serovar Cerro str. CFSAN001588","na":1,"nb":1,"a":[["hindgut-bto-0000510.html","hindgut"]],"b":[["NCBITaxon%3A1410916","Salmonella enterica subsp. enterica serovar Cerro str. CFSAN001588"]]},{"id":"NCBITaxon:1411902","l":"Pacificitalea manganoxidans","na":1,"nb":1,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["NCBITaxon%3A1411902","Pacificitalea manganoxidans"]]},{"id":"NCBITaxon:141349","l":"Mycobacterium lentiflavum","na":1,"nb":1,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["NCBITaxon%3A141349","Mycobacterium lentiflavum"]]},{"id":"NCBITaxon:141451","l":"Oleiphilus messinensis","na":1,"nb":1,"a":[["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A141451","Oleiphilus messinensis"]]},{"id":"NCBITaxon:1415606","l":"Bifidobacterium animalis subsp. lactis CECT 8145","na":1,"nb":1,"a":[["blood-plasma-bto-0000131.html","blood plasma"]],"b":[["NCBITaxon%3A1415606","Bifidobacterium animalis subsp. lactis CECT 8145"]]},{"id":"NCBITaxon:1417989","l":"Burkholderia glumae 336gr-1","na":1,"nb":1,"a":[["panicle-bto-0005436.html","panicle"]],"b":[["NCBITaxon%3A1417989","Burkholderia glumae 336gr-1"]]},{"id":"NCBITaxon:1421531","l":"Pseudomonas aeruginosa 0C2E","na":1,"nb":1,"a":[["secretory-cell-bto-0003659.html","secretory cell"]],"b":[["NCBITaxon%3A1421531","Pseudomonas aeruginosa 0C2E"]]},{"id":"NCBITaxon:1424653","l":"Caminibacter pacificus","na":1,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["NCBITaxon%3A1424653","Caminibacter pacificus"]]},{"id":"NCBITaxon:1427984","l":"Candidatus Hepatoplasma crinochetorum Av","na":1,"nb":1,"a":[["hepatopancreas-bto-0000597.html","hepatopancreas"]],"b":[["NCBITaxon%3A1427984","Candidatus Hepatoplasma crinochetorum Av"]]},{"id":"NCBITaxon:1427985","l":"Bordetella bronchiseptica KM22","na":1,"nb":1,"a":[["nasal-cavity-bto-0002096.html","nasal cavity"]],"b":[["NCBITaxon%3A1427985","Bordetella bronchiseptica KM22"]]},{"id":"NCBITaxon:1429886","l":"Mycobacterium tuberculosis MTB-489","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1429886","Mycobacterium tuberculosis MTB-489"]]},{"id":"NCBITaxon:1429887","l":"Mycobacterium tuberculosis MTB-476","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1429887","Mycobacterium tuberculosis MTB-476"]]},{"id":"NCBITaxon:1430326","l":"Mycobacterium decipiens","na":1,"nb":1,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["NCBITaxon%3A1430326","Mycobacterium decipiens"]]},{"id":"NCBITaxon:1433126","l":"Mucinivorans hirudinis","na":1,"nb":1,"a":[["alimentary-canal-bto-0000058.html","alimentary canal"]],"b":[["NCBITaxon%3A1433126","Mucinivorans hirudinis"]]},{"id":"NCBITaxon:1434066","l":"Psychroserpens luteus","na":1,"nb":1,"a":[["subarctic-habitatmech-bacdive-09ded89de7.html","Subarctic"]],"b":[["NCBITaxon%3A1434066","Psychroserpens luteus"]]},{"id":"NCBITaxon:1434770","l":"Chlamydia muridarum str. Nigg3 CMUT3-5","na":1,"nb":1,"a":[["oviduct-bto-0000980.html","oviduct"]],"b":[["NCBITaxon%3A1434770","Chlamydia muridarum str. Nigg3 CMUT3-5"]]},{"id":"NCBITaxon:1434773","l":"Chlamydia muridarum str. Nigg CM972","na":1,"nb":1,"a":[["oviduct-bto-0000980.html","oviduct"]],"b":[["NCBITaxon%3A1434773","Chlamydia muridarum str. Nigg CM972"]]},{"id":"NCBITaxon:1435357","l":"Bacillus anthracis str. V770-NP1-R","na":1,"nb":1,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A1435357","Bacillus anthracis str. V770-NP1-R"]]},{"id":"NCBITaxon:1435425","l":"Pseudomonas sp. QTF5","na":1,"nb":1,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A1435425","Pseudomonas sp. QTF5"]]},{"id":"NCBITaxon:1436000","l":"Edwardsiella anguillarum ET080729","na":1,"nb":1,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["NCBITaxon%3A1436000","Edwardsiella anguillarum ET080729"]]},{"id":"NCBITaxon:1436301","l":"Edwardsiella anguillarum ET070829","na":1,"nb":1,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["NCBITaxon%3A1436301","Edwardsiella anguillarum ET070829"]]},{"id":"NCBITaxon:1436798","l":"Rickettsia fournieri","na":1,"nb":1,"a":[["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["NCBITaxon%3A1436798","Rickettsia fournieri"]]},{"id":"NCBITaxon:1436965","l":"Peptoniphilus stercorisuis","na":1,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"]],"b":[["NCBITaxon%3A1436965","Peptoniphilus stercorisuis"]]},{"id":"NCBITaxon:1437009","l":"Chenggangzhangella methanolivorans","na":1,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"]],"b":[["NCBITaxon%3A1437009","Chenggangzhangella methanolivorans"]]},{"id":"NCBITaxon:143802","l":"Ralstonia sp. HAB-11","na":1,"nb":1,"a":[["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A143802","Ralstonia sp. HAB-11"]]},{"id":"NCBITaxon:1438822","l":"Mycobacterium tuberculosis variant bovis B2 7505","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1438822","Mycobacterium tuberculosis variant bovis B2 7505"]]},{"id":"NCBITaxon:1438823","l":"Mycobacterium tuberculosis variant bovis Bz 31150","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1438823","Mycobacterium tuberculosis variant bovis Bz 31150"]]},{"id":"NCBITaxon:1440054","l":"Vibrio sp. OY15","na":1,"nb":1,"a":[["embryonic-stem-cell-bto-0001086.html","embryonic stem cell"]],"b":[["NCBITaxon%3A1440054","Vibrio sp. OY15"]]},{"id":"NCBITaxon:1444768","l":"Kitasatospora sp. MBT63","na":1,"nb":1,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A1444768","Kitasatospora sp. MBT63"]]},{"id":"NCBITaxon:1446466","l":"Candidatus Acetithermum autotrophicum","na":1,"nb":1,"a":[["finger-bto-0004669.html","finger"]],"b":[["NCBITaxon%3A1446466","Candidatus Acetithermum autotrophicum"]]},{"id":"NCBITaxon:1448137","l":"Staphylococcus aureus MRSA_CVM43477","na":1,"nb":1,"a":[["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["NCBITaxon%3A1448137","Staphylococcus aureus MRSA_CVM43477"]]},{"id":"NCBITaxon:1448141","l":"Trueperella pyogenes MS249","na":1,"nb":1,"a":[["uterus-bto-0001424.html","uterus"]],"b":[["NCBITaxon%3A1448141","Trueperella pyogenes MS249"]]},{"id":"NCBITaxon:1450449","l":"Mannheimia haemolytica serotype A1/A6 str. PKL10","na":1,"nb":1,"a":[["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A1450449","Mannheimia haemolytica serotype A1/A6 str. PKL10"]]},{"id":"NCBITaxon:1450517","l":"Escherichia coli MS499","na":1,"nb":1,"a":[["uterus-bto-0001424.html","uterus"]],"b":[["NCBITaxon%3A1450517","Escherichia coli MS499"]]},{"id":"NCBITaxon:1452538","l":"Microbacterium aureliae","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A1452538","Microbacterium aureliae"]]},{"id":"NCBITaxon:1454184","l":"Alkaliphilus namsaraevii","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A1454184","Alkaliphilus namsaraevii"]]},{"id":"NCBITaxon:145483","l":"Frigoribacterium faeni","na":1,"nb":1,"a":[["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A145483","Frigoribacterium faeni"]]},{"id":"NCBITaxon:1455611","l":"Mycobacterium tuberculosis K85","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A1455611","Mycobacterium tuberculosis K85"]]},{"id":"NCBITaxon:1457191","l":"Lacticaseibacillus rhamnosus E800","na":1,"nb":1,"a":[["gut-mucosa-bto-0000546.html","gut mucosa"]],"b":[["NCBITaxon%3A1457191","Lacticaseibacillus rhamnosus E800"]]},{"id":"NCBITaxon:1457392","l":"Pseudomonas aeruginosa PA96","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1457392","Pseudomonas aeruginosa PA96"]]},{"id":"NCBITaxon:1457395","l":"Lacticaseibacillus rhamnosus PEL5","na":1,"nb":1,"a":[["gut-mucosa-bto-0000546.html","gut mucosa"]],"b":[["NCBITaxon%3A1457395","Lacticaseibacillus rhamnosus PEL5"]]},{"id":"NCBITaxon:1457396","l":"Lacticaseibacillus rhamnosus PEL6","na":1,"nb":1,"a":[["gut-mucosa-bto-0000546.html","gut mucosa"]],"b":[["NCBITaxon%3A1457396","Lacticaseibacillus rhamnosus PEL6"]]},{"id":"NCBITaxon:1458279","l":"Staphylococcus aureus USA300-ISMMS1","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1458279","Staphylococcus aureus USA300-ISMMS1"]]},{"id":"NCBITaxon:1458472","l":"Mycobacterium tuberculosis CWCFVRF MDRTB 670","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1458472","Mycobacterium tuberculosis CWCFVRF MDRTB 670"]]},{"id":"NCBITaxon:1461579","l":"Haemophilus massiliensis","na":1,"nb":1,"a":[["peritoneal-fluid-bto-0001031.html","peritoneal fluid"]],"b":[["NCBITaxon%3A1461579","Haemophilus massiliensis"]]},{"id":"NCBITaxon:146819","l":"Streptomyces europaeiscabiei","na":1,"nb":1,"a":[["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A146819","Streptomyces europaeiscabiei"]]},{"id":"NCBITaxon:1470180","l":"Prauserella isguenensis","na":1,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A1470180","Prauserella isguenensis"]]},{"id":"NCBITaxon:1470200","l":"Neisseria arctica","na":1,"nb":1,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["NCBITaxon%3A1470200","Neisseria arctica"]]},{"id":"NCBITaxon:1471438","l":"Prochlorococcus sp. scB241_526B19","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1471438","Prochlorococcus sp. scB241_526B19"]]},{"id":"NCBITaxon:1471439","l":"Prochlorococcus sp. scB241_526B22","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1471439","Prochlorococcus sp. scB241_526B22"]]},{"id":"NCBITaxon:1471498","l":"Prochlorococcus sp. scB243_498N8","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1471498","Prochlorococcus sp. scB243_498N8"]]},{"id":"NCBITaxon:1471499","l":"Prochlorococcus sp. scB243_498P15","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1471499","Prochlorococcus sp. scB243_498P15"]]},{"id":"NCBITaxon:147248","l":"Halomonas alimentaria","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A147248","Halomonas alimentaria"]]},{"id":"NCBITaxon:1472682","l":"Psychrobacter sp. 310(2012)","na":1,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"]],"b":[["NCBITaxon%3A1472682","Psychrobacter sp. 310(2012)"]]},{"id":"NCBITaxon:1476","l":"Sporosarcina psychrophila","na":1,"nb":1,"a":[["surface-water-envo-00002042.html","surface water"]],"b":[["NCBITaxon%3A1476","Sporosarcina psychrophila"]]},{"id":"NCBITaxon:1476996","l":"Arthrobacter liuii","na":1,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A1476996","Arthrobacter liuii"]]},{"id":"NCBITaxon:1479025","l":"Myceligenerans cantabricum","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A1479025","Myceligenerans cantabricum"]]},{"id":"NCBITaxon:1481923","l":"Vibrio astriarenae","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A1481923","Vibrio astriarenae"]]},{"id":"NCBITaxon:1484116","l":"","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A1484116","Hymenobacter psoromatis"]]},{"id":"NCBITaxon:1484118","l":"Hymenobacter sp. PAMC 26628","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A1484118","Hymenobacter sp. PAMC 26628"]]},{"id":"NCBITaxon:148449","l":"","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A148449","Halopiger aswanensis"]]},{"id":"NCBITaxon:1485217","l":"Massilia eurypsychrophila","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1485217","Massilia eurypsychrophila"]]},{"id":"NCBITaxon:1485544","l":"Ferriphaselus sp. R-1","na":1,"nb":1,"a":[["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1485544","Ferriphaselus sp. R-1"]]},{"id":"NCBITaxon:1486034","l":"Lacinutrix venerupis","na":1,"nb":1,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A1486034","Lacinutrix venerupis"]]},{"id":"NCBITaxon:1487861","l":"Actinopolyspora sp. M5A","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A1487861","Actinopolyspora sp. M5A"]]},{"id":"NCBITaxon:1488331","l":"Fusibacter bizertensis","na":1,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"]],"b":[["NCBITaxon%3A1488331","Fusibacter bizertensis"]]},{"id":"NCBITaxon:1490222","l":"Actinoallomurus bryophytorum","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A1490222","Actinoallomurus bryophytorum"]]},{"id":"NCBITaxon:1494448","l":"Chelatococcus reniformis","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1494448","Chelatococcus reniformis"]]},{"id":"NCBITaxon:1495045","l":"Thermopetrobacter sp. TC1","na":1,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["NCBITaxon%3A1495045","Thermopetrobacter sp. TC1"]]},{"id":"NCBITaxon:1497681","l":"Paenilisteria newyorkensis","na":1,"nb":1,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["NCBITaxon%3A1497681","Paenilisteria newyorkensis"]]},{"id":"NCBITaxon:150","l":"Spirochaeta isovalerica","na":1,"nb":1,"a":[["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["NCBITaxon%3A150","Spirochaeta isovalerica"]]},{"id":"NCBITaxon:1500506","l":"Halopolyspora algeriensis","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A1500506","Halopolyspora algeriensis"]]},{"id":"NCBITaxon:1500538","l":"Teredinibacter waterburyi","na":1,"nb":1,"a":[["sound-envo-00000393.html","sound"]],"b":[["NCBITaxon%3A1500538","Teredinibacter waterburyi"]]},{"id":"NCBITaxon:150121","l":"","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A150121","Agreia pratensis"]]},{"id":"NCBITaxon:150122","l":"","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A150122","Curtobacterium herbarum"]]},{"id":"NCBITaxon:1501432","l":"Thiopseudomonas denitrificans","na":1,"nb":1,"a":[["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["NCBITaxon%3A1501432","Thiopseudomonas denitrificans"]]},{"id":"NCBITaxon:150248","l":"","na":1,"nb":1,"a":[["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["NCBITaxon%3A150248","Anoxybacillus pushchinoensis"]]},{"id":"NCBITaxon:1502762","l":"Janthinobacterium sp. RA13","na":1,"nb":1,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A1502762","Janthinobacterium sp. RA13"]]},{"id":"NCBITaxon:1505946","l":"Mesorhizobium sp. SOD10","na":1,"nb":1,"a":[["hair-follicle-outer-root-sheath-bto-0003969.html","hair follicle outer root sheath"]],"b":[["NCBITaxon%3A1505946","Mesorhizobium sp. SOD10"]]},{"id":"NCBITaxon:1513468","l":"Rouxiella chamberiensis","na":1,"nb":1,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["NCBITaxon%3A1513468","Rouxiella chamberiensis"]]},{"id":"NCBITaxon:1515612","l":"Sphingopyxis fribergensis","na":1,"nb":1,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A1515612","Sphingopyxis fribergensis"]]},{"id":"NCBITaxon:151654","l":"","na":1,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A151654","Cupriavidus laharis"]]},{"id":"NCBITaxon:1522140","l":"Nocardia xestospongiae","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1522140","Nocardia xestospongiae"]]},{"id":"NCBITaxon:1524095","l":"Hymenobacter frigidus","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1524095","Hymenobacter frigidus"]]},{"id":"NCBITaxon:1524097","l":"Massilia glaciei","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1524097","Massilia glaciei"]]},{"id":"NCBITaxon:1524460","l":"Phaeodactylibacter xiamenensis","na":1,"nb":1,"a":[["co-culture-habitatmech-bacdive-ff945d8a69.html","Co-culture"]],"b":[["NCBITaxon%3A1524460","Phaeodactylibacter xiamenensis"]]},{"id":"NCBITaxon:1524467","l":"Serratia sp. Ag1","na":1,"nb":1,"a":[["midgut-bto-0000863.html","midgut"]],"b":[["NCBITaxon%3A1524467","Serratia sp. Ag1"]]},{"id":"NCBITaxon:1526762","l":"Vibrio sp. B183","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1526762","Vibrio sp. B183"]]},{"id":"NCBITaxon:1528099","l":"Lawsonella clevelandensis","na":1,"nb":1,"a":[["peritoneum-bto-0001472.html","peritoneum"]],"b":[["NCBITaxon%3A1528099","Lawsonella clevelandensis"]]},{"id":"NCBITaxon:1532556","l":"Serratia sp. Ag2","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1532556","Serratia sp. Ag2"]]},{"id":"NCBITaxon:153494","l":"Rarobacter incanus","na":1,"nb":1,"a":[["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["NCBITaxon%3A153494","Rarobacter incanus"]]},{"id":"NCBITaxon:153500","l":"uncultured Methylomonas sp.","na":1,"nb":1,"a":[["low-tide-zone-envo-00000319.html","low tide zone"]],"b":[["NCBITaxon%3A153500","uncultured Methylomonas sp."]]},{"id":"NCBITaxon:1537524","l":"Thiogranum longum","na":1,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["NCBITaxon%3A1537524","Thiogranum longum"]]},{"id":"NCBITaxon:1538102","l":"Pseudochelatococcus lubricantis","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A1538102","Pseudochelatococcus lubricantis"]]},{"id":"NCBITaxon:1538103","l":"Pseudochelatococcus contaminans","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A1538103","Pseudochelatococcus contaminans"]]},{"id":"NCBITaxon:1538552","l":"Clostridium sp. NCR","na":1,"nb":1,"a":[["fiber-bto-0000450.html","fiber"]],"b":[["NCBITaxon%3A1538552","Clostridium sp. NCR"]]},{"id":"NCBITaxon:1543381","l":"Oleiagrimonas soli","na":1,"nb":1,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A1543381","Oleiagrimonas soli"]]},{"id":"NCBITaxon:1543721","l":"Sedimenticola thiotaurini","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A1543721","Sedimenticola thiotaurini"]]},{"id":"NCBITaxon:1545728","l":"Mycobacterium sp. EPa45","na":1,"nb":1,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"]],"b":[["NCBITaxon%3A1545728","Mycobacterium sp. EPa45"]]},{"id":"NCBITaxon:1550","l":"Clostridium subterminale","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A1550","Clostridium subterminale"]]},{"id":"NCBITaxon:1550035","l":"Streptomyces sp. NBRC 109706","na":1,"nb":1,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["NCBITaxon%3A1550035","Streptomyces sp. NBRC 109706"]]},{"id":"NCBITaxon:155042","l":"Geobacter grbiciae","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A155042","Geobacter grbiciae"]]},{"id":"NCBITaxon:1550736","l":"Corticibacter populi","na":1,"nb":1,"a":[["wood-envo-00002040.html","wood"]],"b":[["NCBITaxon%3A1550736","Corticibacter populi"]]},{"id":"NCBITaxon:155085","l":"Staphylococcus lutrae","na":1,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"]],"b":[["NCBITaxon%3A155085","Staphylococcus lutrae"]]},{"id":"NCBITaxon:1552123","l":"Listeria booriae","na":1,"nb":1,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["NCBITaxon%3A1552123","Listeria booriae"]]},{"id":"NCBITaxon:1553448","l":"","na":1,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A1553448","Falsigemmobacter intermedius"]]},{"id":"NCBITaxon:1553449","l":"Psychrobacter ciconiae","na":1,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A1553449","Psychrobacter ciconiae"]]},{"id":"NCBITaxon:155537","l":"Microscilla sp. PRE1","na":1,"nb":1,"a":[["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A155537","Microscilla sp. PRE1"]]},{"id":"NCBITaxon:155567","l":"uncultured Rhizobium sp.","na":1,"nb":1,"a":[["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"]],"b":[["NCBITaxon%3A155567","uncultured Rhizobium sp."]]},{"id":"NCBITaxon:1559","l":"Clostridium tertium","na":1,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"]],"b":[["NCBITaxon%3A1559","Clostridium tertium"]]},{"id":"NCBITaxon:1560217","l":"Clostridium sp. L74","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1560217","Clostridium sp. L74"]]},{"id":"NCBITaxon:1560324","l":"Arenimicrobium luteum","na":1,"nb":1,"a":[["semiarid-habitatmech-bacdive-766cd9f54f.html","Semiarid"]],"b":[["NCBITaxon%3A1560324","Arenimicrobium luteum"]]},{"id":"NCBITaxon:1561923","l":"Paenibacillus tibetensis","na":1,"nb":1,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A1561923","Paenibacillus tibetensis"]]},{"id":"NCBITaxon:1562124","l":"Hymenobacter glacieicola","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1562124","Hymenobacter glacieicola"]]},{"id":"NCBITaxon:1564159","l":"Geodermatophilus pulveris","na":1,"nb":1,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A1564159","Geodermatophilus pulveris"]]},{"id":"NCBITaxon:156523","l":"Nocardioides sp. 4P1-A","na":1,"nb":1,"a":[["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["NCBITaxon%3A156523","Nocardioides sp. 4P1-A"]]},{"id":"NCBITaxon:1566270","l":"Variovorax sp. EL159","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1566270","Variovorax sp. EL159"]]},{"id":"NCBITaxon:1566271","l":"Variovorax sp. 770b2","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1566271","Variovorax sp. 770b2"]]},{"id":"NCBITaxon:1566277","l":"Paenibacillus sp. 276b","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1566277","Paenibacillus sp. 276b"]]},{"id":"NCBITaxon:1566278","l":"Paenibacillus sp. 1_12","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1566278","Paenibacillus sp. 1_12"]]},{"id":"NCBITaxon:1566280","l":"Janthinobacterium sp. 344","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1566280","Janthinobacterium sp. 344"]]},{"id":"NCBITaxon:1566281","l":"Janthinobacterium sp. 551a","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1566281","Janthinobacterium sp. 551a"]]},{"id":"NCBITaxon:1566886","l":"Mycolicibacterium malmesburyense","na":1,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A1566886","Mycolicibacterium malmesburyense"]]},{"id":"NCBITaxon:156892","l":"Boudabousia marimammalium","na":1,"nb":1,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"]],"b":[["NCBITaxon%3A156892","Boudabousia marimammalium"]]},{"id":"NCBITaxon:156978","l":"Corynebacterium imitans","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A156978","Corynebacterium imitans"]]},{"id":"NCBITaxon:1570330","l":"Bacillus sp. BH072","na":1,"nb":1,"a":[["honey-bto-0000605.html","honey"]],"b":[["NCBITaxon%3A1570330","Bacillus sp. BH072"]]},{"id":"NCBITaxon:157227","l":"Jeotgalicoccus halotolerans","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A157227","Jeotgalicoccus halotolerans"]]},{"id":"NCBITaxon:157277","l":"uncultured Agrobacterium sp.","na":1,"nb":1,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["NCBITaxon%3A157277","uncultured Agrobacterium sp."]]},{"id":"NCBITaxon:157278","l":"uncultured Methylobacterium sp.","na":1,"nb":1,"a":[["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A157278","uncultured Methylobacterium sp."]]},{"id":"NCBITaxon:1574623","l":"Lyngbya confervoides BDU141951","na":1,"nb":1,"a":[["filament-bto-0000463.html","filament"]],"b":[["NCBITaxon%3A1574623","Lyngbya confervoides BDU141951"]]},{"id":"NCBITaxon:1576596","l":"Pseudovibrio sp. POLY-S9","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1576596","Pseudovibrio sp. POLY-S9"]]},{"id":"NCBITaxon:157733","l":"Alkalihalobacillus macyae","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A208199","Guptibacillus hwajinpoensis"]]},{"id":"NCBITaxon:1577474","l":"Raineyella antarctica","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A1577474","Raineyella antarctica"]]},{"id":"NCBITaxon:1577895","l":"Leisingera sp. ANG-M1","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["NCBITaxon%3A1577895","Leisingera sp. ANG-M1"]]},{"id":"NCBITaxon:1577896","l":"Leisingera sp. ANG-Vp","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["NCBITaxon%3A1577896","Leisingera sp. ANG-Vp"]]},{"id":"NCBITaxon:1577897","l":"Leisingera sp. ANG-DT","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["NCBITaxon%3A1577897","Leisingera sp. ANG-DT"]]},{"id":"NCBITaxon:1577898","l":"Leisingera sp. ANG-S","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["NCBITaxon%3A1577898","Leisingera sp. ANG-S"]]},{"id":"NCBITaxon:1577899","l":"Leisingera sp. ANG-S3","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["NCBITaxon%3A1577899","Leisingera sp. ANG-S3"]]},{"id":"NCBITaxon:1577900","l":"Leisingera sp. ANG-M6","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["NCBITaxon%3A1577900","Leisingera sp. ANG-M6"]]},{"id":"NCBITaxon:1577901","l":"Leisingera sp. ANG-S5","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["NCBITaxon%3A1577901","Leisingera sp. ANG-S5"]]},{"id":"NCBITaxon:1577902","l":"Leisingera sp. ANG-M7","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["NCBITaxon%3A1577902","Leisingera sp. ANG-M7"]]},{"id":"NCBITaxon:1577903","l":"Ruegeria sp. ANG-R","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["NCBITaxon%3A1577903","Ruegeria sp. ANG-R"]]},{"id":"NCBITaxon:1577904","l":"Ruegeria sp. ANG-S4","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["NCBITaxon%3A1577904","Ruegeria sp. ANG-S4"]]},{"id":"NCBITaxon:1577905","l":"Tateyamaria sp. ANG-S1","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["NCBITaxon%3A1577905","Tateyamaria sp. ANG-S1"]]},{"id":"NCBITaxon:157842","l":"Desulfofaba hansenii","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A157842","Desulfofaba hansenii"]]},{"id":"NCBITaxon:1578756","l":"Brevibacterium metallicum","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A1578756","Brevibacterium metallicum"]]},{"id":"NCBITaxon:1585697","l":"Agrobacterium arsenijevicii","na":1,"nb":1,"a":[["crown-gall-bto-0000303.html","crown gall"]],"b":[["NCBITaxon%3A1585697","Agrobacterium arsenijevicii"]]},{"id":"NCBITaxon:1585974","l":"Beduini massiliensis","na":1,"nb":1,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["NCBITaxon%3A1585974","Beduini massiliensis"]]},{"id":"NCBITaxon:1586233","l":"Halomicrobium urmianum","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A1586233","Halomicrobium urmianum"]]},{"id":"NCBITaxon:1586242","l":"Luteimonas arsenica","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A1586242","Luteimonas arsenica"]]},{"id":"NCBITaxon:1592106","l":"Terriglobus albidus","na":1,"nb":1,"a":[["semiarid-habitatmech-bacdive-766cd9f54f.html","Semiarid"]],"b":[["NCBITaxon%3A1592106","Terriglobus albidus"]]},{"id":"NCBITaxon:159478","l":"Alkanibacter difficilis","na":1,"nb":1,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"]],"b":[["NCBITaxon%3A159478","Alkanibacter difficilis"]]},{"id":"NCBITaxon:1603353","l":"Massilia psychrophila","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1603353","Massilia psychrophila"]]},{"id":"NCBITaxon:1603869","l":"Stenotrophobacter roseus","na":1,"nb":1,"a":[["semiarid-habitatmech-bacdive-766cd9f54f.html","Semiarid"]],"b":[["NCBITaxon%3A1603869","Stenotrophobacter roseus"]]},{"id":"NCBITaxon:1603870","l":"Brevitalea deliciosa","na":1,"nb":1,"a":[["semiarid-habitatmech-bacdive-766cd9f54f.html","Semiarid"]],"b":[["NCBITaxon%3A1603870","Brevitalea deliciosa"]]},{"id":"NCBITaxon:160492","l":"Xylella fastidiosa (strain 9a5c)","na":1,"nb":1,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["NCBITaxon%3A160492","Xylella fastidiosa 9a5c"]]},{"id":"NCBITaxon:1609288","l":"Streptomyces sp. ACT-1","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A1609288","Streptomyces sp. ACT-1"]]},{"id":"NCBITaxon:1609977","l":"Sphingomonas hengshuiensis","na":1,"nb":1,"a":[["marsh-envo-00000035.html","marsh"]],"b":[["NCBITaxon%3A1609977","Sphingomonas hengshuiensis"]]},{"id":"NCBITaxon:1611423","l":"Flavobacterium sp. DSM 9626","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A1611423","Flavobacterium sp. DSM 9626"]]},{"id":"NCBITaxon:161213","l":"Micrococcus sp. 28","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A161213","Micrococcus sp. 28"]]},{"id":"NCBITaxon:1612149","l":"Chryseobacterium limigenitum","na":1,"nb":1,"a":[["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A1612149","Chryseobacterium limigenitum"]]},{"id":"NCBITaxon:1612308","l":"Methylocapsa palsarum","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A1612308","Methylocapsa palsarum"]]},{"id":"NCBITaxon:1612552","l":"Actinoalloteichus fjordicus","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1612552","Actinoalloteichus fjordicus"]]},{"id":"NCBITaxon:1614635","l":"Polaromonas eurypsychrophila","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1614635","Polaromonas eurypsychrophila"]]},{"id":"NCBITaxon:1614636","l":"Sandarakinorhabdus glacialis","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1614636","Sandarakinorhabdus glacialis"]]},{"id":"NCBITaxon:161899","l":"Corynebacterium singulare","na":1,"nb":1,"a":[["semen-bto-0001230.html","semen"]],"b":[["NCBITaxon%3A161899","Corynebacterium singulare"]]},{"id":"NCBITaxon:1619308","l":"Cnuibacter physcomitrellae","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A1619308","Cnuibacter physcomitrellae"]]},{"id":"NCBITaxon:1619309","l":"Paenibacillus herberti","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A1619309","Paenibacillus herberti"]]},{"id":"NCBITaxon:1619310","l":"Paenibacillus marchantiophytorum","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A1619310","Paenibacillus marchantiophytorum"]]},{"id":"NCBITaxon:162028","l":"Haliangium tepidum","na":1,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A162028","Haliangium tepidum"]]},{"id":"NCBITaxon:162154","l":"","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A162154","Candidatus Arcobacter sulfidicus"]]},{"id":"NCBITaxon:162176","l":"Azospira sp. KJ","na":1,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A162176","Azospira sp. KJ"]]},{"id":"NCBITaxon:1630135","l":"Dermabacter vaginalis","na":1,"nb":1,"a":[["vaginal-fluid-uberon-0036243.html","vaginal fluid"]],"b":[["NCBITaxon%3A1630135","Dermabacter vaginalis"]]},{"id":"NCBITaxon:1631871","l":"Weissella jogaejeotgali","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A1631871","Weissella jogaejeotgali"]]},{"id":"NCBITaxon:163604","l":"Nocardiopsis exhalans","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A163604","Nocardiopsis exhalans"]]},{"id":"NCBITaxon:163605","l":"","na":1,"nb":1,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["NCBITaxon%3A109330","Nocardiopsis tropica"]]},{"id":"NCBITaxon:1636188","l":"Mycoplana azooxidifex","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1636188","Mycoplana azooxidifex"]]},{"id":"NCBITaxon:163877","l":"Virgibacillus necropolis","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A163877","Virgibacillus necropolis"]]},{"id":"NCBITaxon:163879","l":"Pseudalkalibacillus decolorationis","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A163879","Pseudalkalibacillus decolorationis"]]},{"id":"NCBITaxon:1639133","l":"Citrobacter portucalensis","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A1639133","Citrobacter portucalensis"]]},{"id":"NCBITaxon:1641715","l":"Sinobacterium norvegicum","na":1,"nb":1,"a":[["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["NCBITaxon%3A1641715","Sinobacterium norvegicum"]]},{"id":"NCBITaxon:1642469","l":"Mariniluteicoccus endophyticus","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1642469","Mariniluteicoccus endophyticus"]]},{"id":"NCBITaxon:1643450","l":"Devosia sp. H5989","na":1,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"]],"b":[["NCBITaxon%3A1643450","Devosia sp. H5989"]]},{"id":"NCBITaxon:1643675","l":"Candidatus Caldipriscus sp. T1.2","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A1643675","Candidatus Caldipriscus sp. T1.2"]]},{"id":"NCBITaxon:1643676","l":"Candidatus Thermoproauctor sp. T2.1","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A1643676","Candidatus Thermoproauctor sp. T2.1"]]},{"id":"NCBITaxon:164608","l":"Novosphingobium sp. KA1","na":1,"nb":1,"a":[["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A164608","Novosphingobium sp. KA1"]]},{"id":"NCBITaxon:1646373","l":"Rouxiella silvae","na":1,"nb":1,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A1646373","Rouxiella silvae"]]},{"id":"NCBITaxon:1647102","l":"Vibrio sp. VPAP30","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1647102","Vibrio sp. VPAP30"]]},{"id":"NCBITaxon:1648404","l":"Aurantiacibacter atlanticus","na":1,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A1648404","Aurantiacibacter atlanticus"]]},{"id":"NCBITaxon:1648871","l":"Mycolicibacterium oryzae","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A1648871","Mycolicibacterium oryzae"]]},{"id":"NCBITaxon:1652545","l":"Arthrobacter sp. YC-RL1","na":1,"nb":1,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"]],"b":[["NCBITaxon%3A1652545","Arthrobacter sp. YC-RL1"]]},{"id":"NCBITaxon:1658620","l":"Rubrivirga profundi","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1658620","Rubrivirga profundi"]]},{"id":"NCBITaxon:166318","l":"Synechococcus sp. WH 8016","na":1,"nb":1,"a":[["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["NCBITaxon%3A166318","Synechococcus sp. WH 8016"]]},{"id":"NCBITaxon:1663241","l":"Geodermatophilus marinus","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1663241","Geodermatophilus marinus"]]},{"id":"NCBITaxon:1665626","l":"Deinococcus budaensis","na":1,"nb":1,"a":[["cave-water-habitatmech-bacdive-9ae6cfc178.html","Cave-water"]],"b":[["NCBITaxon%3A1665626","Deinococcus budaensis"]]},{"id":"NCBITaxon:1671023","l":"Tsukamurella hongkongensis","na":1,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"]],"b":[["NCBITaxon%3A1671023","Tsukamurella hongkongensis"]]},{"id":"NCBITaxon:167644","l":"Ilyobacter tartaricus","na":1,"nb":1,"a":[["lagoon-envo-00000038.html","lagoon"]],"b":[["NCBITaxon%3A167644","Ilyobacter tartaricus"]]},{"id":"NCBITaxon:1677","l":"Arthrobacter pascens","na":1,"nb":1,"a":[["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["NCBITaxon%3A1677","Arthrobacter pascens"]]},{"id":"NCBITaxon:1679495","l":"Variovorax gossypii","na":1,"nb":1,"a":[["endosymbiont-habitatmech-bacdive-7d840c7ddc.html","Endosymbiont"]],"b":[["NCBITaxon%3A1679495","Variovorax gossypii"]]},{"id":"NCBITaxon:167968","l":"uncultured Desulfovibrio sp.","na":1,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A167968","uncultured Desulfovibrio sp."]]},{"id":"NCBITaxon:1682490","l":"Ferrigenium kumadai","na":1,"nb":1,"a":[["paddy-ricefield-habitatmech-bacdive-6e3154acd8.html","Paddy-Ricefield"]],"b":[["NCBITaxon%3A1682490","Ferrigenium kumadai"]]},{"id":"NCBITaxon:1682748","l":"Streptosporangium algeriense","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A1682748","Streptosporangium algeriense"]]},{"id":"NCBITaxon:1683161","l":"Chthonobacter albigriseus","na":1,"nb":1,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A1683161","Chthonobacter albigriseus"]]},{"id":"NCBITaxon:168379","l":"Halorhodospira neutriphila","na":1,"nb":1,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["NCBITaxon%3A168379","Halorhodospira neutriphila"]]},{"id":"NCBITaxon:1685124","l":"miscellaneous Crenarchaeota group-1 archaeon SG8-32-1","na":1,"nb":1,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["NCBITaxon%3A1685124","miscellaneous Crenarchaeota group-1 archaeon SG8-32-1"]]},{"id":"NCBITaxon:1685125","l":"miscellaneous Crenarchaeota group-1 archaeon SG8-32-3","na":1,"nb":1,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["NCBITaxon%3A1685125","miscellaneous Crenarchaeota group-1 archaeon SG8-32-3"]]},{"id":"NCBITaxon:1685126","l":"miscellaneous Crenarchaeota group-6 archaeon AD8-1","na":1,"nb":1,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["NCBITaxon%3A1685126","miscellaneous Crenarchaeota group-6 archaeon AD8-1"]]},{"id":"NCBITaxon:1685127","l":"miscellaneous Crenarchaeota group-15 archaeon DG-45","na":1,"nb":1,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["NCBITaxon%3A1685127","miscellaneous Crenarchaeota group-15 archaeon DG-45"]]},{"id":"NCBITaxon:1685133","l":"miscellaneous Crenarchaeota group archaeon SMTZ1-55","na":1,"nb":1,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["NCBITaxon%3A1685133","miscellaneous Crenarchaeota group archaeon SMTZ1-55"]]},{"id":"NCBITaxon:1685135","l":"miscellaneous Crenarchaeota group archaeon SMTZ-80","na":1,"nb":1,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["NCBITaxon%3A1685135","miscellaneous Crenarchaeota group archaeon SMTZ-80"]]},{"id":"NCBITaxon:1685415","l":"Stenotrophomonas tumulicola","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A1685415","Stenotrophomonas tumulicola"]]},{"id":"NCBITaxon:1690008","l":"Halomonas garicola","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A1690008","Halomonas garicola"]]},{"id":"NCBITaxon:1690221","l":"Streptomyces spongiicola","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1690221","Streptomyces spongiicola"]]},{"id":"NCBITaxon:169134","l":"Citricoccus muralis","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A169134","Citricoccus muralis"]]},{"id":"NCBITaxon:1696072","l":"Microbacterium sp. CGR1","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A1696072","Microbacterium sp. CGR1"]]},{"id":"NCBITaxon:1697797","l":"Actinobacteria bacterium UC5.1-1B11","na":1,"nb":1,"a":[["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697797","Actinobacteria bacterium UC5.1-1B11"]]},{"id":"NCBITaxon:1697798","l":"Actinobacteria bacterium UC5.1-1C2","na":1,"nb":1,"a":[["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697798","Actinobacteria bacterium UC5.1-1C2"]]},{"id":"NCBITaxon:1698521","l":"Endozoicomonas ascidiicola","na":1,"nb":1,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A1698521","Endozoicomonas ascidiicola"]]},{"id":"NCBITaxon:1701","l":"Brevibacterium sp.","na":1,"nb":1,"a":[["research-facility-envo-00000469.html","research facility"]],"b":[["NCBITaxon%3A1701","Brevibacterium sp."]]},{"id":"NCBITaxon:170187","l":"Streptococcus pneumoniae serotype 4 (strain ATCC BAA-334 / TIGR4)","na":1,"nb":1,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["NCBITaxon%3A170187","Streptococcus pneumoniae TIGR4"]]},{"id":"NCBITaxon:1703256","l":"Pseudoalteromonas gelatinilytica","na":1,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A1703256","Pseudoalteromonas gelatinilytica"]]},{"id":"NCBITaxon:1703351","l":"Bacteroides sp. SM1_62","na":1,"nb":1,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["NCBITaxon%3A1703351","Bacteroides sp. SM1_62"]]},{"id":"NCBITaxon:1703352","l":"Bacteroides sp. SM23_62","na":1,"nb":1,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["NCBITaxon%3A1703352","Bacteroides sp. SM23_62"]]},{"id":"NCBITaxon:1703960","l":"Rhizobium sp. N113","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1703960","Rhizobium sp. N113"]]},{"id":"NCBITaxon:1703961","l":"Rhizobium sp. N1314","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1703961","Rhizobium sp. N1314"]]},{"id":"NCBITaxon:1703962","l":"Rhizobium sp. N1341","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1703962","Rhizobium sp. N1341"]]},{"id":"NCBITaxon:1703963","l":"Rhizobium sp. N561","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1703963","Rhizobium sp. N561"]]},{"id":"NCBITaxon:1703964","l":"Rhizobium sp. N621","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1703964","Rhizobium sp. N621"]]},{"id":"NCBITaxon:1703965","l":"Rhizobium sp. N6212","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1703965","Rhizobium sp. N6212"]]},{"id":"NCBITaxon:1703966","l":"Rhizobium sp. N731","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1703966","Rhizobium sp. N731"]]},{"id":"NCBITaxon:1703967","l":"Rhizobium sp. N741","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1703967","Rhizobium sp. N741"]]},{"id":"NCBITaxon:1703968","l":"Rhizobium sp. N871","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1703968","Rhizobium sp. N871"]]},{"id":"NCBITaxon:1703969","l":"Rhizobium sp. N324","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1703969","Rhizobium sp. N324"]]},{"id":"NCBITaxon:1703970","l":"Rhizobium sp. N541","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1703970","Rhizobium sp. N541"]]},{"id":"NCBITaxon:1703971","l":"Rhizobium sp. N941","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1703971","Rhizobium sp. N941"]]},{"id":"NCBITaxon:1704307","l":"Candidatus Xiphinematobacter sp. Idaho Grape","na":1,"nb":1,"a":[["ovary-bto-0000975.html","ovary"]],"b":[["NCBITaxon%3A1704307","Candidatus Xiphinematobacter sp. Idaho Grape"]]},{"id":"NCBITaxon:1705730","l":"Candidatus Adiutrix intracellularis","na":1,"nb":1,"a":[["area-of-national-forest-envo-00000360.html","area of national forest"]],"b":[["NCBITaxon%3A1705730","Candidatus Adiutrix intracellularis"]]},{"id":"NCBITaxon:170622","l":"Bordetella sp. 10d","na":1,"nb":1,"a":[["clay-envo-00002982.html","clay"]],"b":[["NCBITaxon%3A170622","Bordetella sp. 10d"]]},{"id":"NCBITaxon:1708715","l":"Ensifer aridi","na":1,"nb":1,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A1708715","Ensifer aridi"]]},{"id":"NCBITaxon:1710353","l":"Pseudoalteromonas sp. P1-8","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1710353","Pseudoalteromonas sp. P1-8"]]},{"id":"NCBITaxon:1710354","l":"Pseudoalteromonas sp. P1-9","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1710354","Pseudoalteromonas sp. P1-9"]]},{"id":"NCBITaxon:171291","l":"Mycoplasmopsis verecunda","na":1,"nb":1,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A171291","Mycoplasmopsis verecunda"]]},{"id":"NCBITaxon:171399","l":"Paenibacillus sp. DSM 6358","na":1,"nb":1,"a":[["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["NCBITaxon%3A171399","Paenibacillus sp. DSM 6358"]]},{"id":"NCBITaxon:1714","l":"","na":1,"nb":1,"a":[["compost-envo-00002170.html","compost"]],"b":[["NCBITaxon%3A1714","Cellulomonas uda"]]},{"id":"NCBITaxon:171402","l":"Paenibacillus sp. DSM 1474","na":1,"nb":1,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A171402","Paenibacillus sp. DSM 1474"]]},{"id":"NCBITaxon:1715254","l":"Pseudoalteromonas sp. P1-11","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1715254","Pseudoalteromonas sp. P1-11"]]},{"id":"NCBITaxon:1715285","l":"Candidatus Providencia siddallii","na":1,"nb":1,"a":[["phloem-bto-0001058.html","phloem"]],"b":[["NCBITaxon%3A1715285","Candidatus Providencia siddallii"]]},{"id":"NCBITaxon:1716141","l":"Streptomyces jeddahensis","na":1,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A1716141","Streptomyces jeddahensis"]]},{"id":"NCBITaxon:1716143","l":"Pseudodesulfovibrio indicus","na":1,"nb":1,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["NCBITaxon%3A1716143","Pseudodesulfovibrio indicus"]]},{"id":"NCBITaxon:1716175","l":"Pseudoalteromonas sp. UCD-33C","na":1,"nb":1,"a":[["leaf-lamina-bto-0000719.html","leaf lamina"]],"b":[["NCBITaxon%3A1716175","Pseudoalteromonas sp. UCD-33C"]]},{"id":"NCBITaxon:171685","l":"Alkalicoccobacillus murimartini","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A171685","Alkalicoccobacillus murimartini"]]},{"id":"NCBITaxon:171688","l":"Paenibacillus sp. LMG 20245","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A171688","Paenibacillus sp. LMG 20245"]]},{"id":"NCBITaxon:171692","l":"Virgibacillus carmonensis","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A171692","Virgibacillus carmonensis"]]},{"id":"NCBITaxon:171693","l":"Oceanobacillus picturae","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A171693","Oceanobacillus picturae"]]},{"id":"NCBITaxon:171865","l":"Sulfuriferula plumbiphila","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A171865","Sulfuriferula plumbiphila"]]},{"id":"NCBITaxon:1721088","l":"Maridesulfovibrio salinus","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A1721088","Maridesulfovibrio salinus"]]},{"id":"NCBITaxon:1723755","l":"Pseudoalteromonas sp. P1-7a","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1723755","Pseudoalteromonas sp. P1-7a"]]},{"id":"NCBITaxon:1723756","l":"Pseudoalteromonas sp. P1-13-1a","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1723756","Pseudoalteromonas sp. P1-13-1a"]]},{"id":"NCBITaxon:1723757","l":"Pseudoalteromonas sp. P1-16-1b","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1723757","Pseudoalteromonas sp. P1-16-1b"]]},{"id":"NCBITaxon:1723758","l":"Pseudoalteromonas sp. P1-25","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1723758","Pseudoalteromonas sp. P1-25"]]},{"id":"NCBITaxon:1723759","l":"Pseudoalteromonas sp. P1-26","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1723759","Pseudoalteromonas sp. P1-26"]]},{"id":"NCBITaxon:1723760","l":"Pseudoalteromonas sp. P1-30","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1723760","Pseudoalteromonas sp. P1-30"]]},{"id":"NCBITaxon:1727163","l":"Algoriphagus sanaruensis","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1727163","Algoriphagus sanaruensis"]]},{"id":"NCBITaxon:1730094","l":"Methylobacterium sp. GXS13","na":1,"nb":1,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["NCBITaxon%3A1730094","Methylobacterium sp. GXS13"]]},{"id":"NCBITaxon:1734049","l":"Serpentinicella alkaliphila","na":1,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["NCBITaxon%3A1734049","Serpentinicella alkaliphila"]]},{"id":"NCBITaxon:1735038","l":"Oryzomicrobium terrae","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A1735038","Oryzomicrobium terrae"]]},{"id":"NCBITaxon:173560","l":"Saccharothrix algeriensis","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A173560","Saccharothrix algeriensis"]]},{"id":"NCBITaxon:1736691","l":"Aeromicrobium choanae","na":1,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A1736691","Aeromicrobium choanae"]]},{"id":"NCBITaxon:1737","l":"Paraclostridium tenue","na":1,"nb":1,"a":[["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A1737","Paraclostridium tenue"]]},{"id":"NCBITaxon:173735","l":"Cytophaga sp. MBIC04684","na":1,"nb":1,"a":[["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["NCBITaxon%3A173735","Cytophaga sp. MBIC04684"]]},{"id":"NCBITaxon:173738","l":"Cytophaga sp. I-762","na":1,"nb":1,"a":[["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["NCBITaxon%3A173738","Cytophaga sp. I-762"]]},{"id":"NCBITaxon:173740","l":"Cytophaga sp. T-588","na":1,"nb":1,"a":[["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["NCBITaxon%3A173740","Cytophaga sp. T-588"]]},{"id":"NCBITaxon:173959","l":"Brevibacillus invocatus","na":1,"nb":1,"a":[["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"]],"b":[["NCBITaxon%3A173959","Brevibacillus invocatus"]]},{"id":"NCBITaxon:1742358","l":"Cytobacillus praedii","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A1742358","Cytobacillus praedii"]]},{"id":"NCBITaxon:1742686","l":"Paractinoplanes deserti","na":1,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A1742686","Paractinoplanes deserti"]]},{"id":"NCBITaxon:1742687","l":"Arthrobacter deserti","na":1,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A1742687","Arthrobacter deserti"]]},{"id":"NCBITaxon:1747766","l":"Mycobacterium sp. NAZ190054","na":1,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"]],"b":[["NCBITaxon%3A1747766","Mycobacterium sp. NAZ190054"]]},{"id":"NCBITaxon:1751286","l":"Nostoc sp. NIES-3756","na":1,"nb":1,"a":[["photoreceptor-cell-bto-0001060.html","photoreceptor cell"]],"b":[["NCBITaxon%3A1751286","Nostoc sp. NIES-3756"]]},{"id":"NCBITaxon:1756185","l":"Nocardioides opuntiae","na":1,"nb":1,"a":[["xerophytic-habitatmech-bacdive-3abed720b8.html","Xerophytic"]],"b":[["NCBITaxon%3A1756185","Nocardioides opuntiae"]]},{"id":"NCBITaxon:1759399","l":"Streptococcus sp. A12","na":1,"nb":1,"a":[["dental-plaque-bto-0000338.html","dental plaque"]],"b":[["NCBITaxon%3A1759399","Streptococcus sp. A12"]]},{"id":"NCBITaxon:176090","l":"Streptococcus sinensis","na":1,"nb":1,"a":[["archeological-site-envo-00000564.html","archeological site"]],"b":[["NCBITaxon%3A176090","Streptococcus sinensis"]]},{"id":"NCBITaxon:1761780","l":"Butyrivibrio sp. ob235","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1761780","Butyrivibrio sp. ob235"]]},{"id":"NCBITaxon:1761782","l":"Enterobacter sp. kpr-6","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1761782","Enterobacter sp. kpr-6"]]},{"id":"NCBITaxon:1761783","l":"Enterococcus sp. kppr-6","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1761783","Enterococcus sp. kppr-6"]]},{"id":"NCBITaxon:1761883","l":"Prevotella sp. kh1p2","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1761883","Prevotella sp. kh1p2"]]},{"id":"NCBITaxon:1761884","l":"Prevotella sp. khp1","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1761884","Prevotella sp. khp1"]]},{"id":"NCBITaxon:1761885","l":"Prevotella sp. khp7","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1761885","Prevotella sp. khp7"]]},{"id":"NCBITaxon:1761886","l":"Prevotella sp. lc2012","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1761886","Prevotella sp. lc2012"]]},{"id":"NCBITaxon:176307","l":"uncultured Methanosarcina sp.","na":1,"nb":1,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A176307","uncultured Methanosarcina sp."]]},{"id":"NCBITaxon:1766719","l":"Caviibacter abscessus","na":1,"nb":1,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A1766719","Caviibacter abscessus"]]},{"id":"NCBITaxon:1768010","l":"Actinophytocola algeriensis","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A1768010","Actinophytocola algeriensis"]]},{"id":"NCBITaxon:1775","l":"Mycobacterium cookii","na":1,"nb":1,"a":[["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["NCBITaxon%3A1775","Mycobacterium cookii"]]},{"id":"NCBITaxon:1780362","l":"Campylobacter geochelonis","na":1,"nb":1,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A1780362","Campylobacter geochelonis"]]},{"id":"NCBITaxon:1783348","l":"Corynebacterium guangdongense","na":1,"nb":1,"a":[["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["NCBITaxon%3A1783348","Corynebacterium guangdongense"]]},{"id":"NCBITaxon:1788301","l":"Pseudomonas versuta","na":1,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A1788301","Pseudomonas versuta"]]},{"id":"NCBITaxon:179010","l":"Psychrobacter jeotgali","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A179010","Psychrobacter jeotgali"]]},{"id":"NCBITaxon:179095","l":"","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A179095","Microbacterium ulmi"]]},{"id":"NCBITaxon:1792307","l":"","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A1792307","Allobosea sp. PAMC 26642"]]},{"id":"NCBITaxon:1792845","l":"Mucilaginibacter pedocola","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A1792845","Mucilaginibacter pedocola"]]},{"id":"NCBITaxon:179326","l":"Schizothecium curvisporum","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A179326","Schizothecium curvisporum"]]},{"id":"NCBITaxon:1794912","l":"Anaerosporomusa subterranea","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1794912","Anaerosporomusa subterranea"]]},{"id":"NCBITaxon:1795053","l":"Microbacterium sp. PAMC 28756","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A1795053","Microbacterium sp. PAMC 28756"]]},{"id":"NCBITaxon:1795630","l":"Frondihabitans sp. PAMC 28766","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A1795630","Frondihabitans sp. PAMC 28766"]]},{"id":"NCBITaxon:1795631","l":"Variovorax sp. PAMC 28711","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A1795631","Variovorax sp. PAMC 28711"]]},{"id":"NCBITaxon:1796","l":"Mycolicibacterium senegalense","na":1,"nb":1,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"]],"b":[["NCBITaxon%3A1796","Mycolicibacterium senegalense"]]},{"id":"NCBITaxon:1796644","l":"Rodentibacter caecimuris","na":1,"nb":1,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["NCBITaxon%3A1796644","Rodentibacter caecimuris"]]},{"id":"NCBITaxon:1797112","l":"Olsenella sp. kh2p3","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1797112","Olsenella sp. kh2p3"]]},{"id":"NCBITaxon:1797175","l":"Acidobacteria bacterium RIFCSPHIGHO2_01_FULL_67_28","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797175","Acidobacteria bacterium RIFCSPHIGHO2_01_FULL_67_28"]]},{"id":"NCBITaxon:1797176","l":"Acidobacteria bacterium RIFCSPHIGHO2_02_FULL_67_57","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797176","Acidobacteria bacterium RIFCSPHIGHO2_02_FULL_67_57"]]},{"id":"NCBITaxon:1797177","l":"Acidobacteria bacterium RIFCSPHIGHO2_12_FULL_67_30","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797177","Acidobacteria bacterium RIFCSPHIGHO2_12_FULL_67_30"]]},{"id":"NCBITaxon:1797186","l":"Acidobacteria bacterium RIFCSPLOWO2_12_FULL_54_10","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797186","Acidobacteria bacterium RIFCSPLOWO2_12_FULL_54_10"]]},{"id":"NCBITaxon:1797187","l":"Acidobacteria bacterium RIFCSPLOWO2_12_FULL_59_11","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797187","Acidobacteria bacterium RIFCSPLOWO2_12_FULL_59_11"]]},{"id":"NCBITaxon:1797188","l":"Acidobacteria bacterium RIFCSPLOWO2_12_FULL_60_22","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797188","Acidobacteria bacterium RIFCSPLOWO2_12_FULL_60_22"]]},{"id":"NCBITaxon:1797189","l":"Acidobacteria bacterium RIFCSPLOWO2_12_FULL_65_11","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797189","Acidobacteria bacterium RIFCSPLOWO2_12_FULL_65_11"]]},{"id":"NCBITaxon:1797190","l":"Acidobacteria bacterium RIFCSPLOWO2_12_FULL_66_10","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797190","Acidobacteria bacterium RIFCSPLOWO2_12_FULL_66_10"]]},{"id":"NCBITaxon:1797191","l":"","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797191","Acidobacteria bacterium RIFCSPLOWO2_12_FULL_66_21"]]},{"id":"NCBITaxon:1797192","l":"Acidobacteria bacterium RIFCSPLOWO2_12_FULL_67_14","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797192","Acidobacteria bacterium RIFCSPLOWO2_12_FULL_67_14"]]},{"id":"NCBITaxon:1797193","l":"Acidobacteria bacterium RIFCSPLOWO2_12_FULL_67_14b","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797193","Acidobacteria bacterium RIFCSPLOWO2_12_FULL_67_14b"]]},{"id":"NCBITaxon:1797194","l":"Acidobacteria bacterium RIFCSPLOWO2_12_FULL_68_19","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797194","Acidobacteria bacterium RIFCSPLOWO2_12_FULL_68_19"]]},{"id":"NCBITaxon:1797216","l":"Alphaproteobacteria bacterium RIFCSPHIGHO2_01_FULL_40_8","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797216","Alphaproteobacteria bacterium RIFCSPHIGHO2_01_FULL_40_8"]]},{"id":"NCBITaxon:1797217","l":"Alphaproteobacteria bacterium RIFCSPHIGHO2_01_FULL_41_14","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797217","Alphaproteobacteria bacterium RIFCSPHIGHO2_01_FULL_41_14"]]},{"id":"NCBITaxon:1797218","l":"Alphaproteobacteria bacterium RIFCSPHIGHO2_02_FULL_40_34","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797218","Alphaproteobacteria bacterium RIFCSPHIGHO2_02_FULL_40_34"]]},{"id":"NCBITaxon:1797219","l":"Alphaproteobacteria bacterium RIFCSPHIGHO2_02_FULL_42_30","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797219","Alphaproteobacteria bacterium RIFCSPHIGHO2_02_FULL_42_30"]]},{"id":"NCBITaxon:1797220","l":"Alphaproteobacteria bacterium RIFCSPHIGHO2_02_FULL_46_13","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797220","Alphaproteobacteria bacterium RIFCSPHIGHO2_02_FULL_46_13"]]},{"id":"NCBITaxon:1797221","l":"Alphaproteobacteria bacterium RIFCSPHIGHO2_12_42_13","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797221","Alphaproteobacteria bacterium RIFCSPHIGHO2_12_42_13"]]},{"id":"NCBITaxon:1797222","l":"Alphaproteobacteria bacterium RIFCSPHIGHO2_12_FULL_42_100","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797222","Alphaproteobacteria bacterium RIFCSPHIGHO2_12_FULL_42_100"]]},{"id":"NCBITaxon:1798168","l":"Pseudobutyrivibrio sp. NOR37","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1798168","Pseudobutyrivibrio sp. NOR37"]]},{"id":"NCBITaxon:1798185","l":"Pseudobutyrivibrio sp. UC1225","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1798185","Pseudobutyrivibrio sp. UC1225"]]},{"id":"NCBITaxon:1798186","l":"Pseudobutyrivibrio sp. OR37","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1798186","Pseudobutyrivibrio sp. OR37"]]},{"id":"NCBITaxon:1799789","l":"Paraglaciecola hydrolytica","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A1799789","Paraglaciecola hydrolytica"]]},{"id":"NCBITaxon:1803212","l":"Sporosarcina terrae","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A1803212","Sporosarcina terrae"]]},{"id":"NCBITaxon:1806508","l":"","na":1,"nb":1,"a":[["filament-bto-0000463.html","filament"]],"b":[["NCBITaxon%3A1806508","Promineifilum breve (SeqCode)"]]},{"id":"NCBITaxon:1807","l":"Mycolicibacterium obuense","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1807","Mycolicibacterium obuense"]]},{"id":"NCBITaxon:1807133","l":"Natronospira proteinivora","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A1807133","Natronospira proteinivora"]]},{"id":"NCBITaxon:1808508","l":"Altericroceibacterium endophyticum","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A1808508","Altericroceibacterium endophyticum"]]},{"id":"NCBITaxon:1808945","l":"Zunongwangia endophytica","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A1808945","Zunongwangia endophytica"]]},{"id":"NCBITaxon:1812261","l":"Phocicoccus schoeneichii","na":1,"nb":1,"a":[["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A1812261","Phocicoccus schoeneichii"]]},{"id":"NCBITaxon:1812810","l":"Rhodohalobacter halophilus","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A1812810","Rhodohalobacter halophilus"]]},{"id":"NCBITaxon:1813471","l":"Actinokineospora acnipugnans","na":1,"nb":1,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A1813471","Actinokineospora acnipugnans"]]},{"id":"NCBITaxon:1817405","l":"Abyssicoccus albus","na":1,"nb":1,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["NCBITaxon%3A1817405","Abyssicoccus albus"]]},{"id":"NCBITaxon:1819600","l":"Actinomadura adrarensis","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A1819600","Actinomadura adrarensis"]]},{"id":"NCBITaxon:182136","l":"Fictibacillus barbaricus","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A182136","Fictibacillus barbaricus"]]},{"id":"NCBITaxon:182180","l":"Aromatoleum anaerobium","na":1,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"]],"b":[["NCBITaxon%3A182180","Aromatoleum anaerobium"]]},{"id":"NCBITaxon:182264","l":"Sporotomaculum syntrophicum","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A182264","Sporotomaculum syntrophicum"]]},{"id":"NCBITaxon:1825933","l":"Rhizobium sp. WYCCWR10014","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1825933","Rhizobium sp. WYCCWR10014"]]},{"id":"NCBITaxon:182690","l":"uncultured Achromobacter sp.","na":1,"nb":1,"a":[["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"]],"b":[["NCBITaxon%3A182690","uncultured Achromobacter sp."]]},{"id":"NCBITaxon:1827136","l":"Candidatus Marithrix sp. Canyon 246","na":1,"nb":1,"a":[["filament-bto-0000463.html","filament"]],"b":[["NCBITaxon%3A1827136","Candidatus Marithrix sp. Canyon 246"]]},{"id":"NCBITaxon:1830138","l":"","na":1,"nb":1,"a":[["park-envo-00000562.html","park"]],"b":[["NCBITaxon%3A90970","Alicyclobacillus tolerans"]]},{"id":"NCBITaxon:1831","l":"","na":1,"nb":1,"a":[["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["NCBITaxon%3A1831","Rhodococcus sp. (in: high G+C Gram-positive bacteria)"]]},{"id":"NCBITaxon:183190","l":"Xylella fastidiosa (strain Temecula1 / ATCC 700964)","na":1,"nb":1,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["NCBITaxon%3A183190","Xylella fastidiosa Temecula1"]]},{"id":"NCBITaxon:1834516","l":"Pseudofrankia asymbiotica","na":1,"nb":1,"a":[["sporangium-bto-0001287.html","sporangium"]],"b":[["NCBITaxon%3A1834516","Pseudofrankia asymbiotica"]]},{"id":"NCBITaxon:1834927","l":"Kordia zosterae","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A1834927","Kordia zosterae"]]},{"id":"NCBITaxon:1836499","l":"Algoriphagus iocasae","na":1,"nb":1,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["NCBITaxon%3A1836499","Algoriphagus iocasae"]]},{"id":"NCBITaxon:1838","l":"Saccharopolyspora hordei","na":1,"nb":1,"a":[["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"]],"b":[["NCBITaxon%3A1838","Saccharopolyspora hordei"]]},{"id":"NCBITaxon:1838280","l":"","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A1838280","Desulfotomaculum copahuensis"]]},{"id":"NCBITaxon:1840606","l":"Krasilnikoviella muralis","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A1840606","Krasilnikoviella muralis"]]},{"id":"NCBITaxon:1841","l":"Nocardioides albus","na":1,"nb":1,"a":[["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["NCBITaxon%3A1841","Nocardioides albus"]]},{"id":"NCBITaxon:1842533","l":"Acidovorax sp. RAC01","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A1842533","Acidovorax sp. RAC01"]]},{"id":"NCBITaxon:1842534","l":"Sinorhizobium sp. RAC02","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A1842534","Sinorhizobium sp. RAC02"]]},{"id":"NCBITaxon:1842535","l":"Blastomonas sp. RAC04","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A1842535","Blastomonas sp. RAC04"]]},{"id":"NCBITaxon:1842536","l":"Agrobacterium sp. RAC06","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A1842536","Agrobacterium sp. RAC06"]]},{"id":"NCBITaxon:1843237","l":"Sphingomonas prati","na":1,"nb":1,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A1843237","Sphingomonas prati"]]},{"id":"NCBITaxon:1843580","l":"Xanthomonas floridensis","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A1843580","Xanthomonas floridensis"]]},{"id":"NCBITaxon:1843581","l":"Xanthomonas nasturtii","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A1843581","Xanthomonas nasturtii"]]},{"id":"NCBITaxon:1847949","l":"Saccharopolyspora spongiae","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1847949","Saccharopolyspora spongiae"]]},{"id":"NCBITaxon:1854496","l":"Microvirga soli","na":1,"nb":1,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A1854496","Microvirga soli"]]},{"id":"NCBITaxon:185678","l":"Amycolatopsis viridis","na":1,"nb":1,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A185678","Amycolatopsis viridis"]]},{"id":"NCBITaxon:185950","l":"Sphingomonas faeni","na":1,"nb":1,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["NCBITaxon%3A185950","Sphingomonas faeni"]]},{"id":"NCBITaxon:186022","l":"Thalassionema frauenfeldii","na":1,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A186022","Thalassionema frauenfeldii"]]},{"id":"NCBITaxon:1862160","l":"Marinirhabdus citrea","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A1862160","Marinirhabdus citrea"]]},{"id":"NCBITaxon:1867933","l":"Aggregatibacter pneumotropica (nom. nud.)","na":1,"nb":1,"a":[["head-bto-0000282.html","head"]],"b":[["NCBITaxon%3A1867933","Aggregatibacter pneumotropica (nom. nud.)"]]},{"id":"NCBITaxon:1869214","l":"Rheinheimera sp.","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1869214","Rheinheimera sp."]]},{"id":"NCBITaxon:1869344","l":"Curtobacterium sp.","na":1,"nb":1,"a":[["lab-synthesis-habitatmech-bacdive-0e92e77cd4.html","Lab-synthesis"]],"b":[["NCBITaxon%3A1869344","Curtobacterium sp."]]},{"id":"NCBITaxon:1870902","l":"Leifsonia sp.","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["NCBITaxon%3A1870902","Leifsonia sp."]]},{"id":"NCBITaxon:1871025","l":"Ndongobacter massiliensis","na":1,"nb":1,"a":[["kidney-bto-0000671.html","kidney"]],"b":[["NCBITaxon%3A1871025","Ndongobacter massiliensis"]]},{"id":"NCBITaxon:1871043","l":"Variovorax sp.","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["NCBITaxon%3A1871043","Variovorax sp."]]},{"id":"NCBITaxon:1871052","l":"Afipia sp.","na":1,"nb":1,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["NCBITaxon%3A1871052","Afipia sp."]]},{"id":"NCBITaxon:1871066","l":"Mesorhizobium sp.","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["NCBITaxon%3A1871066","Mesorhizobium sp."]]},{"id":"NCBITaxon:1871068","l":"Phyllobacteriaceae bacterium","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A1871068","Phyllobacteriaceae bacterium"]]},{"id":"NCBITaxon:1871086","l":"Brevundimonas sp.","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A1871086","Brevundimonas sp."]]},{"id":"NCBITaxon:1871328","l":"Kocuria sp.","na":1,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A1871328","Kocuria sp."]]},{"id":"NCBITaxon:1871622","l":"Oceanobacillus sp.","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1871622","Oceanobacillus sp."]]},{"id":"NCBITaxon:1872094","l":"Acetobacterium sp.","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A1872094","Acetobacterium sp."]]},{"id":"NCBITaxon:1872138","l":"Actinophytocola sp.","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A1872138","Actinophytocola sp."]]},{"id":"NCBITaxon:1872412","l":"Agarivorans sp.","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A1872412","Agarivorans sp."]]},{"id":"NCBITaxon:1872416","l":"Agreia sp.","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1872416","Agreia sp."]]},{"id":"NCBITaxon:1872578","l":"Aquabacterium sp.","na":1,"nb":1,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["NCBITaxon%3A1872578","Aquabacterium sp."]]},{"id":"NCBITaxon:1872635","l":"Arenimonas sp.","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A1872635","Arenimonas sp."]]},{"id":"NCBITaxon:187303","l":"Methylocystis hydrogenophila","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A187303","Methylocystis hydrogenophila"]]},{"id":"NCBITaxon:1873459","l":"Blastococcus sp.","na":1,"nb":1,"a":[["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["NCBITaxon%3A1873459","Blastococcus sp."]]},{"id":"NCBITaxon:1873498","l":"Hafnia sp.","na":1,"nb":1,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A1873498","Hafnia sp."]]},{"id":"NCBITaxon:1876758","l":"Gluconobacter sp.","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A1876758","Gluconobacter sp."]]},{"id":"NCBITaxon:1879320","l":"Ruegeria sp.","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A1879320","Ruegeria sp."]]},{"id":"NCBITaxon:1880915","l":"Frigoribacterium sp.","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1880915","Frigoribacterium sp."]]},{"id":"NCBITaxon:1881060","l":"Clostridium sp. USBA 49","na":1,"nb":1,"a":[["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"]],"b":[["NCBITaxon%3A1881060","Clostridium sp. USBA 49"]]},{"id":"NCBITaxon:1882747","l":"Afipia sp. GAS231","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1882747","Afipia sp. GAS231"]]},{"id":"NCBITaxon:1882748","l":"Beijerinckia sp. 28-YEA-48","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1882748","Beijerinckia sp. 28-YEA-48"]]},{"id":"NCBITaxon:1882749","l":"Opitutus sp. GAS368","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1882749","Opitutus sp. GAS368"]]},{"id":"NCBITaxon:1882750","l":"Burkholderia sp. GAS332","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1882750","Burkholderia sp. GAS332"]]},{"id":"NCBITaxon:1882751","l":"Paenibacillus sp. GP183","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1882751","Paenibacillus sp. GP183"]]},{"id":"NCBITaxon:1882752","l":"Singulisphaera sp. GP187","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1882752","Singulisphaera sp. GP187"]]},{"id":"NCBITaxon:1882830","l":"Rhizobiales bacterium GAS191","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1882830","Rhizobiales bacterium GAS191"]]},{"id":"NCBITaxon:1882831","l":"Verrucomicrobium sp. GAS474","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1882831","Verrucomicrobium sp. GAS474"]]},{"id":"NCBITaxon:1882832","l":"Paenibacillaceae bacterium GAS479","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1882832","Paenibacillaceae bacterium GAS479"]]},{"id":"NCBITaxon:1882833","l":"Frankineae bacterium MT45","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1882833","Frankineae bacterium MT45"]]},{"id":"NCBITaxon:1883105","l":"Nonomuraea sp.","na":1,"nb":1,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["NCBITaxon%3A1883105","Nonomuraea sp."]]},{"id":"NCBITaxon:1884310","l":"Rhodobacter sp. 24-YEA-8","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1884310","Rhodobacter sp. 24-YEA-8"]]},{"id":"NCBITaxon:1884351","l":"Rhizobiales bacterium GAS188","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1884351","Rhizobiales bacterium GAS188"]]},{"id":"NCBITaxon:1884352","l":"Rhizobiales bacterium GAS113","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1884352","Rhizobiales bacterium GAS113"]]},{"id":"NCBITaxon:1884992","l":"Cumulibacter manganitolerans","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A1884992","Cumulibacter manganitolerans"]]},{"id":"NCBITaxon:188541","l":"Stellarima microtrias","na":1,"nb":1,"a":[["saline-water-envo-00002010.html","saline water"]],"b":[["NCBITaxon%3A188541","Stellarima microtrias"]]},{"id":"NCBITaxon:188626","l":"Dermacoccus sp. Ellin185","na":1,"nb":1,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["NCBITaxon%3A188626","Dermacoccus sp. Ellin185"]]},{"id":"NCBITaxon:1888168","l":"Curvibacter sp.","na":1,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A1888168","Curvibacter sp."]]},{"id":"NCBITaxon:1890675","l":"Herbaspirillum sp.","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A1890675","Herbaspirillum sp."]]},{"id":"NCBITaxon:1891233","l":"Dysgonomonas sp.","na":1,"nb":1,"a":[["protist-associated-environment-habitatmech-gold-eee7408afd.html","protist-associated environment"]],"b":[["NCBITaxon%3A1891233","Dysgonomonas sp."]]},{"id":"NCBITaxon:1891630","l":"Rathayibacter sp.","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1891630","Rathayibacter sp."]]},{"id":"NCBITaxon:1895005","l":"Alteromonadales bacterium BS08","na":1,"nb":1,"a":[["sound-envo-00000393.html","sound"]],"b":[["NCBITaxon%3A1895005","Alteromonadales bacterium BS08"]]},{"id":"NCBITaxon:1895664","l":"Halanaerobium sp.","na":1,"nb":1,"a":[["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["NCBITaxon%3A1895664","Halanaerobium sp."]]},{"id":"NCBITaxon:189685","l":"uncultured Paracoccus sp.","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A189685","uncultured Paracoccus sp."]]},{"id":"NCBITaxon:1898203","l":"Lachnospiraceae bacterium","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1898203","Lachnospiraceae bacterium"]]},{"id":"NCBITaxon:1898979","l":"Sodalis sp. (in: enterobacteria)","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1898979","Sodalis sp. (in: enterobacteria)"]]},{"id":"NCBITaxon:1899569","l":"Spirosoma sp.","na":1,"nb":1,"a":[["air-conditioning-unit-envo-00002874.html","air conditioning unit"]],"b":[["NCBITaxon%3A1899569","Spirosoma sp."]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":1,"nb":1,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A1901","Streptomyces clavuligerus"]]},{"id":"NCBITaxon:1902579","l":"Candidatus Tokpelaia hoelldobleri","na":1,"nb":1,"a":[["gut-epithelium-bto-0000956.html","gut epithelium"]],"b":[["NCBITaxon%3A1902579","Candidatus Tokpelaia hoelldobleri"]]},{"id":"NCBITaxon:1903071","l":"Sulfitobacter sp.","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A1903071","Sulfitobacter sp."]]},{"id":"NCBITaxon:190308","l":"Shewanella schlegeliana","na":1,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A190308","Shewanella schlegeliana"]]},{"id":"NCBITaxon:1904254","l":"Hydrogenophaga sp.","na":1,"nb":1,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"]],"b":[["NCBITaxon%3A1904254","Hydrogenophaga sp."]]},{"id":"NCBITaxon:190655","l":"Legionella busanensis","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A190655","Legionella busanensis"]]},{"id":"NCBITaxon:1906666","l":"Thermoplasmata archaeon","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A1906666","Thermoplasmata archaeon"]]},{"id":"NCBITaxon:1907575","l":"Jatrophihabitans sp. GAS493","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1907575","Jatrophihabitans sp. GAS493"]]},{"id":"NCBITaxon:1908203","l":"uncultured Methanomethylophilus sp.","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1908203","uncultured Methanomethylophilus sp."]]},{"id":"NCBITaxon:190967","l":"","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A190967","Desulfofundulus solfataricus"]]},{"id":"NCBITaxon:191302","l":"Devosia neptuniae","na":1,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A191302","Devosia neptuniae"]]},{"id":"NCBITaxon:191564","l":"Nonlabens xylanidelens","na":1,"nb":1,"a":[["cove-envo-00000138.html","cove"]],"b":[["NCBITaxon%3A191564","Nonlabens xylanidelens"]]},{"id":"NCBITaxon:1916082","l":"Alteromonadaceae bacterium","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A1916082","Alteromonadaceae bacterium"]]},{"id":"NCBITaxon:1918640","l":"Streptacidiphilus sp.","na":1,"nb":1,"a":[["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["NCBITaxon%3A1918640","Streptacidiphilus sp."]]},{"id":"NCBITaxon:1922205","l":"Thalassobacillus sp.","na":1,"nb":1,"a":[["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["NCBITaxon%3A1922205","Thalassobacillus sp."]]},{"id":"NCBITaxon:1926289","l":"Herminiimonas sp.","na":1,"nb":1,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["NCBITaxon%3A1926289","Herminiimonas sp."]]},{"id":"NCBITaxon:1926584","l":"Nitrincola sp.","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A1926584","Nitrincola sp."]]},{"id":"NCBITaxon:1926630","l":"Pseudoblastomonas halimionae","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A1926630","Pseudoblastomonas halimionae"]]},{"id":"NCBITaxon:1930901","l":"Spiribacter sp.","na":1,"nb":1,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["NCBITaxon%3A1930901","Spiribacter sp."]]},{"id":"NCBITaxon:193108","l":"Methylocystis sp. M42/1","na":1,"nb":1,"a":[["surface-water-envo-00002042.html","surface water"]],"b":[["NCBITaxon%3A193108","Methylocystis sp. M42/1"]]},{"id":"NCBITaxon:1938638","l":"Clostridiaceae bacterium JGI 000176CP_B01","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938638","Clostridiaceae bacterium JGI 000176CP_B01"]]},{"id":"NCBITaxon:1938639","l":"Clostridiaceae bacterium JGI 000176CP_E08","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938639","Clostridiaceae bacterium JGI 000176CP_E08"]]},{"id":"NCBITaxon:1938641","l":"Clostridiales bacterium JGI 000170CP_A02","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938641","Clostridiales bacterium JGI 000170CP_A02"]]},{"id":"NCBITaxon:1938642","l":"Clostridiales bacterium JGI 000170CP_C01","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938642","Clostridiales bacterium JGI 000170CP_C01"]]},{"id":"NCBITaxon:1938643","l":"Clostridiales bacterium JGI 000170CP_C03","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938643","Clostridiales bacterium JGI 000170CP_C03"]]},{"id":"NCBITaxon:1938647","l":"Clostridiales bacterium JGI 000176CP_B07","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938647","Clostridiales bacterium JGI 000176CP_B07"]]},{"id":"NCBITaxon:1938649","l":"Clostridiales bacterium JGI 000176CP_E06","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938649","Clostridiales bacterium JGI 000176CP_E06"]]},{"id":"NCBITaxon:1938652","l":"Lachnospiraceae bacterium JGI 000170CP_F01","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938652","Lachnospiraceae bacterium JGI 000170CP_F01"]]},{"id":"NCBITaxon:1938653","l":"Ruminococcaceae bacterium JGI 000176CP_B03","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938653","Ruminococcaceae bacterium JGI 000176CP_B03"]]},{"id":"NCBITaxon:1938739","l":"Alkaliphilus sp. JGI 000170CP_B06","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938739","Alkaliphilus sp. JGI 000170CP_B06"]]},{"id":"NCBITaxon:1938743","l":"Bacillus sp. JKS001846","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A1938743","Bacillus sp. JKS001846"]]},{"id":"NCBITaxon:1938747","l":"Burkholderia sp. JKS000303","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1938747","Burkholderia sp. JKS000303"]]},{"id":"NCBITaxon:1938748","l":"Clostridium sp. JGI 000170CP_A06","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938748","Clostridium sp. JGI 000170CP_A06"]]},{"id":"NCBITaxon:1938750","l":"Clostridium sp. JGI 000170CP_E05","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938750","Clostridium sp. JGI 000170CP_E05"]]},{"id":"NCBITaxon:1938752","l":"Comamonas sp. JGI 000176CP_D06","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938752","Comamonas sp. JGI 000176CP_D06"]]},{"id":"NCBITaxon:1938795","l":"Pantoea sp. JKS000250","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A1938795","Pantoea sp. JKS000250"]]},{"id":"NCBITaxon:1938820","l":"Serratia sp. JKS000199","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A1938820","Serratia sp. JKS000199"]]},{"id":"NCBITaxon:1938824","l":"Serratia sp. JKS296","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A1938824","Serratia sp. JKS296"]]},{"id":"NCBITaxon:1938825","l":"Spirosoma sp. JGI 000178CP_D11","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938825","Spirosoma sp. JGI 000178CP_D11"]]},{"id":"NCBITaxon:1938826","l":"Streptococcus sp. JGI 000170CP_B04","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938826","Streptococcus sp. JGI 000170CP_B04"]]},{"id":"NCBITaxon:1938829","l":"Streptococcus sp. JGI 000170CP_G01","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938829","Streptococcus sp. JGI 000170CP_G01"]]},{"id":"NCBITaxon:1938864","l":"Syntrophomonas sp. JGI 000170CP_G06","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938864","Syntrophomonas sp. JGI 000170CP_G06"]]},{"id":"NCBITaxon:1938865","l":"Syntrophomonas sp. JGI 000170CP_C07","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938865","Syntrophomonas sp. JGI 000170CP_C07"]]},{"id":"NCBITaxon:1938867","l":"Alkaliphilus sp. JGI 000170CP_H07","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938867","Alkaliphilus sp. JGI 000170CP_H07"]]},{"id":"NCBITaxon:1938868","l":"Clostridium sp. JGI 000170CP_A08","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938868","Clostridium sp. JGI 000170CP_A08"]]},{"id":"NCBITaxon:1938869","l":"Enterobacteriaceae bacterium JKS000233","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A1938869","Enterobacteriaceae bacterium JKS000233"]]},{"id":"NCBITaxon:1938870","l":"Candidatus Pantoea floridensis","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A1938870","Candidatus Pantoea floridensis"]]},{"id":"NCBITaxon:1938887","l":"Fastidiosipila sp. JGI 000176CP_A02","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938887","Fastidiosipila sp. JGI 000176CP_A02"]]},{"id":"NCBITaxon:1940240","l":"Wohlfahrtiimonas populi","na":1,"nb":1,"a":[["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["NCBITaxon%3A1940240","Wohlfahrtiimonas populi"]]},{"id":"NCBITaxon:1940617","l":"Angustibacter speluncae","na":1,"nb":1,"a":[["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["NCBITaxon%3A1940617","Angustibacter speluncae"]]},{"id":"NCBITaxon:1945871","l":"Hallerella porci","na":1,"nb":1,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A1945871","Hallerella porci"]]},{"id":"NCBITaxon:1945874","l":"Fibrobacter sp. UWB16","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1945874","Fibrobacter sp. UWB16"]]},{"id":"NCBITaxon:1945883","l":"Dehalococcoidia bacterium SCGC AG-206-J22","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A1945883","Dehalococcoidia bacterium SCGC AG-206-J22"]]},{"id":"NCBITaxon:1945884","l":"Olsenella sp. KH1P3","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1945884","Olsenella sp. KH1P3"]]},{"id":"NCBITaxon:1946","l":"Streptomyces kasugaensis","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A1946","Streptomyces kasugaensis"]]},{"id":"NCBITaxon:1955624","l":"Propionicimonas ferrireducens","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A1955624","Propionicimonas ferrireducens"]]},{"id":"NCBITaxon:1955637","l":"Candidatus Gracilibacteria bacterium JGI MDM2 000217CP-N10","na":1,"nb":1,"a":[["drinking-water-envo-00003064.html","drinking water"]],"b":[["NCBITaxon%3A1955637","Candidatus Gracilibacteria bacterium JGI MDM2 000217CP-N10"]]},{"id":"NCBITaxon:1955672","l":"Candidatus Omnitrophica bacterium JGI MDM2 000217CP-F19","na":1,"nb":1,"a":[["drinking-water-envo-00003064.html","drinking water"]],"b":[["NCBITaxon%3A1955672","Candidatus Omnitrophica bacterium JGI MDM2 000217CP-F19"]]},{"id":"NCBITaxon:1955673","l":"Candidatus Omnitrophica bacterium JGI MDM2 000217CP-I15","na":1,"nb":1,"a":[["drinking-water-envo-00003064.html","drinking water"]],"b":[["NCBITaxon%3A1955673","Candidatus Omnitrophica bacterium JGI MDM2 000217CP-I15"]]},{"id":"NCBITaxon:1955674","l":"Candidatus Omnitrophica bacterium JGI MDM2 000217CP-N5","na":1,"nb":1,"a":[["drinking-water-envo-00003064.html","drinking water"]],"b":[["NCBITaxon%3A1955674","Candidatus Omnitrophica bacterium JGI MDM2 000217CP-N5"]]},{"id":"NCBITaxon:1955675","l":"Candidatus Omnitrophica bacterium JGI MDM2 000217CP-K11","na":1,"nb":1,"a":[["drinking-water-envo-00003064.html","drinking water"]],"b":[["NCBITaxon%3A1955675","Candidatus Omnitrophica bacterium JGI MDM2 000217CP-K11"]]},{"id":"NCBITaxon:195913","l":"Loktanella salsilacus","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A195913","Loktanella salsilacus"]]},{"id":"NCBITaxon:1960093","l":"Rodentibacter sp.","na":1,"nb":1,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["NCBITaxon%3A1960093","Rodentibacter sp."]]},{"id":"NCBITaxon:1960103","l":"Listeria sp.","na":1,"nb":1,"a":[["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A1960103","Listeria sp."]]},{"id":"NCBITaxon:1961642","l":"Chryseobacterium salipaludis","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A1961642","Chryseobacterium salipaludis"]]},{"id":"NCBITaxon:1962263","l":"Clostridium tepidum","na":1,"nb":1,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["NCBITaxon%3A1962263","Clostridium tepidum"]]},{"id":"NCBITaxon:196490","l":"Bradyrhizobium sp. Ai1a-2","na":1,"nb":1,"a":[["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A196490","Bradyrhizobium sp. Ai1a-2"]]},{"id":"NCBITaxon:1965334","l":"Cystobacter sp.","na":1,"nb":1,"a":[["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["NCBITaxon%3A1965334","Cystobacter sp."]]},{"id":"NCBITaxon:196600","l":"Vibrio vulnificus YJ016","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A196600","Vibrio vulnificus YJ016"]]},{"id":"NCBITaxon:1967","l":"Streptomyces kanamyceticus","na":1,"nb":1,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A1967","Streptomyces kanamyceticus"]]},{"id":"NCBITaxon:1970199","l":"Sorangiineae bacterium NIC37A 2","na":1,"nb":1,"a":[["compost-envo-00002170.html","compost"]],"b":[["NCBITaxon%3A1970199","Sorangiineae bacterium NIC37A_2"]]},{"id":"NCBITaxon:1978231","l":"Acidobacteriota bacterium","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A1978231","Acidobacteriota bacterium"]]},{"id":"NCBITaxon:1981331","l":"Pelobacter sp. DSM 2984","na":1,"nb":1,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["NCBITaxon%3A1981331","Pelobacter sp. DSM 2984"]]},{"id":"NCBITaxon:198703","l":"Persephonella hydrogeniphila","na":1,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["NCBITaxon%3A198703","Persephonella hydrogeniphila"]]},{"id":"NCBITaxon:1987382","l":"Spirosoma horti","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A1987382","Spirosoma horti"]]},{"id":"NCBITaxon:198804","l":"Buchnera aphidicola subsp. Schizaphis graminum (strain Sg)","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A198804","Buchnera aphidicola str. Sg (Schizaphis graminum)"]]},{"id":"NCBITaxon:1989","l":"Actinomadura sp.","na":1,"nb":1,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A1989","Actinomadura sp."]]},{"id":"NCBITaxon:200251","l":"Rhodococcus sp. AN-22","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A200251","Rhodococcus sp. AN-22"]]},{"id":"NCBITaxon:200616","l":"Rhodoplanes tepidamans","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A200616","Rhodoplanes tepidamans"]]},{"id":"NCBITaxon:2006849","l":"Xanthomonadales bacterium","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2006849","Lysobacterales bacterium"]]},{"id":"NCBITaxon:2012684","l":"Bacteroidaceae bacterium JGI 000170CP_F02","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A2012684","Bacteroidaceae bacterium JGI 000170CP_F02"]]},{"id":"NCBITaxon:2012733","l":"Dehalococcoidia bacterium SCGC AG-200-A03","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012733","Dehalococcoidia bacterium SCGC AG-200-A03"]]},{"id":"NCBITaxon:2012734","l":"Dehalococcoidia bacterium SCGC AG-200-B03","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012734","Dehalococcoidia bacterium SCGC AG-200-B03"]]},{"id":"NCBITaxon:2012735","l":"Dehalococcoidia bacterium SCGC AG-200-C05","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012735","Dehalococcoidia bacterium SCGC AG-200-C05"]]},{"id":"NCBITaxon:2012736","l":"Dehalococcoidia bacterium SCGC AG-200-E23","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012736","Dehalococcoidia bacterium SCGC AG-200-E23"]]},{"id":"NCBITaxon:2012737","l":"Dehalococcoidia bacterium SCGC AG-200-G19","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012737","Dehalococcoidia bacterium SCGC AG-200-G19"]]},{"id":"NCBITaxon:2012738","l":"Dehalococcoidia bacterium SCGC AG-200-G22","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012738","Dehalococcoidia bacterium SCGC AG-200-G22"]]},{"id":"NCBITaxon:2012739","l":"Dehalococcoidia bacterium SCGC AG-200-K21","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012739","Dehalococcoidia bacterium SCGC AG-200-K21"]]},{"id":"NCBITaxon:2012740","l":"Dehalococcoidia bacterium SCGC AG-205-B13","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012740","Dehalococcoidia bacterium SCGC AG-205-B13"]]},{"id":"NCBITaxon:2012741","l":"Dehalococcoidia bacterium SCGC AG-205-C05","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012741","Dehalococcoidia bacterium SCGC AG-205-C05"]]},{"id":"NCBITaxon:2012742","l":"Dehalococcoidia bacterium SCGC AG-205-C16","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012742","Dehalococcoidia bacterium SCGC AG-205-C16"]]},{"id":"NCBITaxon:2012743","l":"Dehalococcoidia bacterium SCGC AG-205-C19","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012743","Dehalococcoidia bacterium SCGC AG-205-C19"]]},{"id":"NCBITaxon:2012744","l":"Dehalococcoidia bacterium SCGC AG-205-E11","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012744","Dehalococcoidia bacterium SCGC AG-205-E11"]]},{"id":"NCBITaxon:2012745","l":"Dehalococcoidia bacterium SCGC AG-205-F11","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012745","Dehalococcoidia bacterium SCGC AG-205-F11"]]},{"id":"NCBITaxon:2012746","l":"Dehalococcoidia bacterium SCGC AG-205-F19","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012746","Dehalococcoidia bacterium SCGC AG-205-F19"]]},{"id":"NCBITaxon:2012747","l":"Dehalococcoidia bacterium SCGC AG-205-F21","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012747","Dehalococcoidia bacterium SCGC AG-205-F21"]]},{"id":"NCBITaxon:2012749","l":"Dehalococcoidia bacterium SCGC AG-205-G03","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012749","Dehalococcoidia bacterium SCGC AG-205-G03"]]},{"id":"NCBITaxon:2012750","l":"Dehalococcoidia bacterium SCGC AG-205-G09","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012750","Dehalococcoidia bacterium SCGC AG-205-G09"]]},{"id":"NCBITaxon:2012751","l":"Dehalococcoidia bacterium SCGC AG-205-G20","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012751","Dehalococcoidia bacterium SCGC AG-205-G20"]]},{"id":"NCBITaxon:2012752","l":"Dehalococcoidia bacterium SCGC AG-205-I02","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012752","Dehalococcoidia bacterium SCGC AG-205-I02"]]},{"id":"NCBITaxon:2012753","l":"Dehalococcoidia bacterium SCGC AG-205-I03","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012753","Dehalococcoidia bacterium SCGC AG-205-I03"]]},{"id":"NCBITaxon:2012754","l":"Dehalococcoidia bacterium SCGC AG-205-I04","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012754","Dehalococcoidia bacterium SCGC AG-205-I04"]]},{"id":"NCBITaxon:2012755","l":"Dehalococcoidia bacterium SCGC AG-205-I10","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012755","Dehalococcoidia bacterium SCGC AG-205-I10"]]},{"id":"NCBITaxon:2012756","l":"Dehalococcoidia bacterium SCGC AG-205-I13","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012756","Dehalococcoidia bacterium SCGC AG-205-I13"]]},{"id":"NCBITaxon:2022602","l":"Thiorhodococcus sp.","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A2022602","Thiorhodococcus sp."]]},{"id":"NCBITaxon:2024860","l":"Spongiibacter sp.","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A2024860","Spongiibacter sp."]]},{"id":"NCBITaxon:2026715","l":"Pseudobdellovibrionaceae bacterium","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2026715","Pseudobdellovibrionaceae bacterium"]]},{"id":"NCBITaxon:2026725","l":"Chromatiales bacterium","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2026725","Chromatiales bacterium"]]},{"id":"NCBITaxon:2026742","l":"Gemmatimonadota bacterium","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2026742","Gemmatimonadota bacterium"]]},{"id":"NCBITaxon:2026746","l":"Halomonadaceae bacterium","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2026746","Halomonadaceae bacterium"]]},{"id":"NCBITaxon:2026789","l":"Salinisphaeraceae bacterium","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2026789","Salinisphaeraceae bacterium"]]},{"id":"NCBITaxon:2026795","l":"Nitrososphaerota archaeon","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2026795","Nitrososphaerota archaeon"]]},{"id":"NCBITaxon:2026801","l":"Verrucomicrobiales bacterium","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2026801","Verrucomicrobiales bacterium"]]},{"id":"NCBITaxon:202748","l":"Saprospira sp. SS98-5","na":1,"nb":1,"a":[["anaerobic-sludge-blanket-reactor-envo-00002213.html","anaerobic sludge blanket reactor"]],"b":[["NCBITaxon%3A202748","Saprospira sp. SS98-5"]]},{"id":"NCBITaxon:2035108","l":"Flavobacteriaceae bacterium JGI 02_E13","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2035108","Flavobacteriaceae bacterium JGI 02_E13"]]},{"id":"NCBITaxon:2035109","l":"Flavobacteriaceae bacterium JGI 02_G12","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2035109","Flavobacteriaceae bacterium JGI 02_G12"]]},{"id":"NCBITaxon:2035111","l":"Flavobacteriaceae bacterium JGI 02_N12","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2035111","Flavobacteriaceae bacterium JGI 02_N12"]]},{"id":"NCBITaxon:2035112","l":"Flavobacteriaceae bacterium JGI 04_M14","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2035112","Flavobacteriaceae bacterium JGI 04_M14"]]},{"id":"NCBITaxon:2035114","l":"Flavobacteriaceae bacterium JGI 04_M9","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2035114","Flavobacteriaceae bacterium JGI 04_M9"]]},{"id":"NCBITaxon:2035115","l":"Flavobacteriaceae bacterium JGI 04_N11","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2035115","Flavobacteriaceae bacterium JGI 04_N11"]]},{"id":"NCBITaxon:2035116","l":"Flavobacteriaceae bacterium JGI 04_N16","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2035116","Flavobacteriaceae bacterium JGI 04_N16"]]},{"id":"NCBITaxon:2035120","l":"Rhodobacteraceae bacterium JGI 02_G21","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2035120","Rhodobacteraceae bacterium JGI 02_G21"]]},{"id":"NCBITaxon:2035121","l":"Rhodobacteraceae bacterium JGI 02_J20","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2035121","Rhodobacteraceae bacterium JGI 02_J20"]]},{"id":"NCBITaxon:2038117","l":"Actinomadura deserti","na":1,"nb":1,"a":[["transportation-ways-roads-habitatmech-bacdive-1b4071cb1d.html","Transportation-ways-Roads"]],"b":[["NCBITaxon%3A2038117","Actinomadura deserti"]]},{"id":"NCBITaxon:2047734","l":"Paenibacillus azotifigens","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A2047734","Paenibacillus azotifigens"]]},{"id":"NCBITaxon:2052484","l":"Roseateles noduli","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A2052484","Roseateles noduli"]]},{"id":"NCBITaxon:2053930","l":"Xanthomonas prunicola","na":1,"nb":1,"a":[["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["NCBITaxon%3A2053930","Xanthomonas prunicola"]]},{"id":"NCBITaxon:2057004","l":"Paraburkholderia azotifigens","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A2057004","Paraburkholderia azotifigens"]]},{"id":"NCBITaxon:2057246","l":"Acidipropionibacterium virtanenii","na":1,"nb":1,"a":[["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A2057246","Acidipropionibacterium virtanenii"]]},{"id":"NCBITaxon:205913","l":"Bifidobacterium longum DJO10A","na":1,"nb":1,"a":[["breast-bto-0000149.html","breast"]],"b":[["NCBITaxon%3A205913","Bifidobacterium longum DJO10A"]]},{"id":"NCBITaxon:205918","l":"Pseudomonas syringae pv. syringae B728a","na":1,"nb":1,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A205918","Pseudomonas syringae pv. syringae B728a"]]},{"id":"NCBITaxon:205920","l":"Ehrlichia chaffeensis str. Arkansas","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A205920","Ehrlichia chaffeensis str. Arkansas"]]},{"id":"NCBITaxon:206394","l":"Paenibacillus sp. YK5","na":1,"nb":1,"a":[["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A206394","Paenibacillus sp. YK5"]]},{"id":"NCBITaxon:206665","l":"Desulfonauticus submarinus","na":1,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["NCBITaxon%3A206665","Desulfonauticus submarinus"]]},{"id":"NCBITaxon:207949","l":"Bermanella marisrubri","na":1,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["NCBITaxon%3A207949","Bermanella marisrubri"]]},{"id":"NCBITaxon:207954","l":"Neptuniibacter caesariensis","na":1,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["NCBITaxon%3A207954","Neptuniibacter caesariensis"]]},{"id":"NCBITaxon:208963","l":"Pseudomonas aeruginosa (strain UCBPP-PA14)","na":1,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A208963","Pseudomonas aeruginosa UCBPP-PA14"]]},{"id":"NCBITaxon:2093377","l":"Sorangium sp.","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A2093377","Sorangium sp."]]},{"id":"NCBITaxon:2094151","l":"Paramuribaculum intestinale","na":1,"nb":1,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"]],"b":[["NCBITaxon%3A2094151","Paramuribaculum intestinale"]]},{"id":"NCBITaxon:2094236","l":"Candidatus Microgenomates bacterium JGI MDM2 000217CP-F20","na":1,"nb":1,"a":[["drinking-water-envo-00003064.html","drinking water"]],"b":[["NCBITaxon%3A2094236","Candidatus Microgenomates bacterium JGI MDM2 000217CP-F20"]]},{"id":"NCBITaxon:2099376","l":"Desulforhopalus sp.","na":1,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A2099376","Desulforhopalus sp."]]},{"id":"NCBITaxon:210007","l":"Streptococcus mutans serotype c (strain ATCC 700610 / UA159)","na":1,"nb":1,"a":[["tooth-bto-0000397.html","tooth"]],"b":[["NCBITaxon%3A210007","Streptococcus mutans UA159"]]},{"id":"NCBITaxon:2100533","l":"Sphingobacterium haloxyli","na":1,"nb":1,"a":[["endosphere-habitatmech-bacdive-3e4680f074.html","Endosphere"]],"b":[["NCBITaxon%3A2100533","Sphingobacterium haloxyli"]]},{"id":"NCBITaxon:2109933","l":"Alsobacter soli","na":1,"nb":1,"a":[["paddy-ricefield-habitatmech-bacdive-6e3154acd8.html","Paddy-Ricefield"]],"b":[["NCBITaxon%3A2109933","Alsobacter soli"]]},{"id":"NCBITaxon:211457","l":"uncultured Allobosea sp.","na":1,"nb":1,"a":[["watercourse-envo-00000029.html","watercourse"]],"b":[["NCBITaxon%3A211457","uncultured Allobosea sp."]]},{"id":"NCBITaxon:2125990","l":"Pseudodesulfovibrio hydrargyri","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A2125990","Pseudodesulfovibrio hydrargyri"]]},{"id":"NCBITaxon:212667","l":"Vibrio fortis","na":1,"nb":1,"a":[["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["NCBITaxon%3A212667","Vibrio fortis"]]},{"id":"NCBITaxon:212717","l":"Clostridium tetani E88","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A212717","Clostridium tetani E88"]]},{"id":"NCBITaxon:2133958","l":"Nocardioides currus","na":1,"nb":1,"a":[["air-conditioning-unit-envo-00002874.html","air conditioning unit"]],"b":[["NCBITaxon%3A2133958","Nocardioides currus"]]},{"id":"NCBITaxon:2136097","l":"Deinococcus rufus","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A2136097","Deinococcus rufus"]]},{"id":"NCBITaxon:213804","l":"Janthinobacterium sp. J3","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A213804","Janthinobacterium sp. J3"]]},{"id":"NCBITaxon:215580","l":"","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A215580","Caldimonas thermodepolymerans"]]},{"id":"NCBITaxon:215918","l":"Mycobacterium sp. IP20010947","na":1,"nb":1,"a":[["water-body-envo-00000063.html","water body"]],"b":[["NCBITaxon%3A215918","Mycobacterium sp. IP20010947"]]},{"id":"NCBITaxon:2161","l":"Methanobacterium bryantii","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A2161","Methanobacterium bryantii"]]},{"id":"NCBITaxon:2161673","l":"Roseicyclus marinus","na":1,"nb":1,"a":[["simulated-communities-habitatmech-bacdive-5fa4710934.html","Simulated-communities"]],"b":[["NCBITaxon%3A2161673","Roseicyclus marinus"]]},{"id":"NCBITaxon:216389","l":"Dehalococcoides mccartyi BAV1","na":1,"nb":1,"a":[["road-envo-00000064.html","road"]],"b":[["NCBITaxon%3A216389","Dehalococcoides mccartyi BAV1"]]},{"id":"NCBITaxon:2164","l":"Methanobacterium sp.","na":1,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"]],"b":[["NCBITaxon%3A2164","Methanobacterium sp."]]},{"id":"NCBITaxon:216599","l":"Shigella sonnei 53G","na":1,"nb":1,"a":[["gut-mucosa-bto-0000546.html","gut mucosa"]],"b":[["NCBITaxon%3A216599","Shigella sonnei 53G"]]},{"id":"NCBITaxon:216895","l":"Vibrio vulnificus CMCP6","na":1,"nb":1,"a":[["hela-cell-bto-0000567.html","HeLa cell"]],"b":[["NCBITaxon%3A216895","Vibrio vulnificus CMCP6"]]},{"id":"NCBITaxon:216903","l":"","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A216903","Epilithonimonas mollis"]]},{"id":"NCBITaxon:2171","l":"Methanobacterium palustre","na":1,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A2171","Methanobacterium palustre"]]},{"id":"NCBITaxon:217139","l":"uncultured Acetobacterium sp.","na":1,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A217139","uncultured Acetobacterium sp."]]},{"id":"NCBITaxon:2177","l":"","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A2177","Methanohalophilus halophilus"]]},{"id":"NCBITaxon:2181","l":"Methanothermus sociabilis","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A2181","Methanothermus sociabilis"]]},{"id":"NCBITaxon:2183934","l":"Marinospirillum sp.","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A2183934","Marinospirillum sp."]]},{"id":"NCBITaxon:2183988","l":"Idiomarina sp. 017G","na":1,"nb":1,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["NCBITaxon%3A2183988","Idiomarina sp. 017G"]]},{"id":"NCBITaxon:219572","l":"Pseudomonas antarctica","na":1,"nb":1,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A219572","Pseudomonas antarctica"]]},{"id":"NCBITaxon:2219663","l":"Streptacidiphilus pinicola","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A2219663","Streptacidiphilus pinicola"]]},{"id":"NCBITaxon:2231721","l":"Muricoccus radiodurans","na":1,"nb":1,"a":[["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A2231721","Muricoccus radiodurans"]]},{"id":"NCBITaxon:223556","l":"Deinococcus indicus","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A223556","Deinococcus indicus"]]},{"id":"NCBITaxon:223786","l":"Hydrogenimonas thermophila","na":1,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["NCBITaxon%3A223786","Hydrogenimonas thermophila"]]},{"id":"NCBITaxon:223788","l":"Balnearium lithotrophicum","na":1,"nb":1,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["NCBITaxon%3A223788","Balnearium lithotrophicum"]]},{"id":"NCBITaxon:224013","l":"Nostoc piscinale CENA21","na":1,"nb":1,"a":[["heterocyst-bto-0000600.html","heterocyst"]],"b":[["NCBITaxon%3A224013","Nostoc piscinale CENA21"]]},{"id":"NCBITaxon:224915","l":"Buchnera aphidicola subsp. Baizongia pistaciae (strain Bp)","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A224915","Buchnera aphidicola str. Bp (Baizongia pistaciae)"]]},{"id":"NCBITaxon:2250708","l":"Pseudogemmobacter bohemicus","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A2250708","Pseudogemmobacter bohemicus"]]},{"id":"NCBITaxon:227605","l":"Methylocella tundrae","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A227605","Methylocella tundrae"]]},{"id":"NCBITaxon:227865","l":"Cerasibacillus quisquiliarum","na":1,"nb":1,"a":[["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"]],"b":[["NCBITaxon%3A227865","Cerasibacillus quisquiliarum"]]},{"id":"NCBITaxon:2283","l":"Acidianus ambivalens","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A2283","Acidianus ambivalens"]]},{"id":"NCBITaxon:228410","l":"Nitrosomonas europaea ATCC 19718","na":1,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A228410","Nitrosomonas europaea ATCC 19718"]]},{"id":"NCBITaxon:228973","l":"","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A228973","Xylanimonas ulmi"]]},{"id":"NCBITaxon:229919","l":"Anaerolinea thermolimosa","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A229919","Anaerolinea thermolimosa"]]},{"id":"NCBITaxon:229920","l":"Leptolinea tardivitalis","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A229920","Leptolinea tardivitalis"]]},{"id":"NCBITaxon:229921","l":"Levilinea saccharolytica","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A229921","Levilinea saccharolytica"]]},{"id":"NCBITaxon:230089","l":"Photorhabdus thracensis","na":1,"nb":1,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A230089","Photorhabdus thracensis"]]},{"id":"NCBITaxon:230105","l":"","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A40223","Methylophaga thalassica"]]},{"id":"NCBITaxon:232537","l":"Rhodoluna limnophila","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A232537","Rhodoluna limnophila"]]},{"id":"NCBITaxon:233101","l":"Methylobacillus pratensis","na":1,"nb":1,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A233101","Methylobacillus pratensis"]]},{"id":"NCBITaxon:233413","l":"Mycobacterium bovis (strain ATCC BAA-935 / AF2122/97)","na":1,"nb":1,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["NCBITaxon%3A233413","Mycobacterium tuberculosis variant bovis AF2122/97"]]},{"id":"NCBITaxon:2338647","l":"Ottowia konkukae","na":1,"nb":1,"a":[["food-spoiled-foodon-00003366.html","food (spoiled)"]],"b":[["NCBITaxon%3A2338647","Ottowia konkukae"]]},{"id":"NCBITaxon:234621","l":"Rhodococcus erythropolis PR4","na":1,"nb":1,"a":[["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A234621","Rhodococcus erythropolis PR4"]]},{"id":"NCBITaxon:234826","l":"Anaplasma marginale str. St. Maries","na":1,"nb":1,"a":[["midgut-bto-0000863.html","midgut"]],"b":[["NCBITaxon%3A234826","Anaplasma marginale str. St. Maries"]]},{"id":"NCBITaxon:235140","l":"Gemmata sp. Wa1-1","na":1,"nb":1,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A235140","Gemmata sp. Wa1-1"]]},{"id":"NCBITaxon:236097","l":"Alcanivorax sp. DG881","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A236097","Alcanivorax sp. DG881"]]},{"id":"NCBITaxon:236101","l":"Marinobacter sp. DG979","na":1,"nb":1,"a":[["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["NCBITaxon%3A236101","Marinobacter sp. DG979"]]},{"id":"NCBITaxon:2364647","l":"Pantoea piersonii","na":1,"nb":1,"a":[["surface-swab-habitatmech-bacdive-6911460a4a.html","Surface-swab"]],"b":[["NCBITaxon%3A2364647","Pantoea piersonii"]]},{"id":"NCBITaxon:237611","l":"Sphingomonas abaci","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A237611","Sphingomonas abaci"]]},{"id":"NCBITaxon:239498","l":"Tsukamurella pseudospumae","na":1,"nb":1,"a":[["foam-habitatmech-bacdive-df2f59b773.html","Foam"]],"b":[["NCBITaxon%3A239498","Tsukamurella pseudospumae"]]},{"id":"NCBITaxon:239745","l":"uncultured Desulfobulbus sp.","na":1,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"]],"b":[["NCBITaxon%3A239745","uncultured Desulfobulbus sp."]]},{"id":"NCBITaxon:240169","l":"","na":1,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["NCBITaxon%3A240169","Desulfurobacterium atlanticum"]]},{"id":"NCBITaxon:241145","l":"Salegentibacter holothuriorum","na":1,"nb":1,"a":[["sea-envo-00000016.html","sea"]],"b":[["NCBITaxon%3A241145","Salegentibacter holothuriorum"]]},{"id":"NCBITaxon:242161","l":"Candidatus Paraburkholderia calva","na":1,"nb":1,"a":[["mesophyll-bto-0000858.html","mesophyll"]],"b":[["NCBITaxon%3A242161","Candidatus Paraburkholderia calva"]]},{"id":"NCBITaxon:242163","l":"Candidatus Burkholderia verschuerenii","na":1,"nb":1,"a":[["mesophyll-bto-0000858.html","mesophyll"]],"b":[["NCBITaxon%3A242163","Candidatus Burkholderia verschuerenii"]]},{"id":"NCBITaxon:242619","l":"Porphyromonas gingivalis (strain ATCC BAA-308 / W83)","na":1,"nb":1,"a":[["gingiva-bto-0000519.html","gingiva"]],"b":[["NCBITaxon%3A242619","Porphyromonas gingivalis W83"]]},{"id":"NCBITaxon:243243","l":"Mycobacterium avium (strain 104)","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A243243","Mycobacterium avium 104"]]},{"id":"NCBITaxon:243701","l":"Pasteurella caballi","na":1,"nb":1,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["NCBITaxon%3A243701","Pasteurella caballi"]]},{"id":"NCBITaxon:243835","l":"Stenotrophomonas sp. PAMU-2.32","na":1,"nb":1,"a":[["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"]],"b":[["NCBITaxon%3A243835","Stenotrophomonas sp. PAMU-2.32"]]},{"id":"NCBITaxon:243922","l":"Acinetobacter rhizosphaerae","na":1,"nb":1,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["NCBITaxon%3A243922","Acinetobacter rhizosphaerae"]]},{"id":"NCBITaxon:244562","l":"Bradyrhizobium sp. RD5-C2","na":1,"nb":1,"a":[["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A244562","Bradyrhizobium sp. RD5-C2"]]},{"id":"NCBITaxon:245187","l":"","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A245187","Loktanella fryxellensis"]]},{"id":"NCBITaxon:246969","l":"Thermococcus sp. AM4","na":1,"nb":1,"a":[["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A246969","Thermococcus sp. AM4"]]},{"id":"NCBITaxon:247022","l":"","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A247022","Microbulbifer maritimus"]]},{"id":"NCBITaxon:247480","l":"Thermaerobacillus caldiproteolyticus","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A247480","Thermaerobacillus caldiproteolyticus"]]},{"id":"NCBITaxon:2485134","l":"Ochrobactrum sp. LP_5_YM","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A2485134","Ochrobactrum sp. LP_5_YM"]]},{"id":"NCBITaxon:2485135","l":"Pseudomonas sp. LP_4_YM","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A2485135","Pseudomonas sp. LP_4_YM"]]},{"id":"NCBITaxon:2485136","l":"Pseudomonas sp. LP_6_YM","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A2485136","Pseudomonas sp. LP_6_YM"]]},{"id":"NCBITaxon:2485137","l":"Pseudomonas sp. LP_7_YM","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A2485137","Pseudomonas sp. LP_7_YM"]]},{"id":"NCBITaxon:2485138","l":"Pseudomonas sp. LP_8_YM","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A2485138","Pseudomonas sp. LP_8_YM"]]},{"id":"NCBITaxon:2485162","l":"Neorhizobium sp. R1-B","na":1,"nb":1,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A2485162","Neorhizobium sp. R1-B"]]},{"id":"NCBITaxon:2485163","l":"","na":1,"nb":1,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A2485163","Methylocaldum gracile subsp. desertum"]]},{"id":"NCBITaxon:2485164","l":"Bradyrhizobium sp. W","na":1,"nb":1,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A2485164","Bradyrhizobium sp. W"]]},{"id":"NCBITaxon:2485165","l":"Bradyrhizobium sp. R2.2-H","na":1,"nb":1,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A2485165","Bradyrhizobium sp. R2.2-H"]]},{"id":"NCBITaxon:2485170","l":"Granulicella sp. GAS466","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A2485170","Granulicella sp. GAS466"]]},{"id":"NCBITaxon:2485207","l":"Rhodococcus sp. LP_11_YM","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A2485207","Rhodococcus sp. LP_11_YM"]]},{"id":"NCBITaxon:2485208","l":"Rhodococcus sp. LP_3_YM","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A2485208","Rhodococcus sp. LP_3_YM"]]},{"id":"NCBITaxon:249351","l":"","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A249351","Flavobacterium psychrolimnae"]]},{"id":"NCBITaxon:249352","l":"","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A249352","Flavobacterium fryxellicola"]]},{"id":"NCBITaxon:249586","l":"","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A249586","Streptomyces asoensis"]]},{"id":"NCBITaxon:2509153","l":"Rubellimicrobium sp.","na":1,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A2509153","Rubellimicrobium sp."]]},{"id":"NCBITaxon:252230","l":"","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A252230","Nocardioides ganghwensis"]]},{"id":"NCBITaxon:252514","l":"Microbulbifer thermotolerans","na":1,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A252514","Microbulbifer thermotolerans"]]},{"id":"NCBITaxon:252597","l":"","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A252597","Alteromonas litorea"]]},{"id":"NCBITaxon:2527775","l":"Polynucleobacter paneuropaeus","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A2527775","Polynucleobacter paneuropaeus"]]},{"id":"NCBITaxon:253160","l":"","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A253160","Planomicrobium stackebrandtii"]]},{"id":"NCBITaxon:253161","l":"uncultured Methanobrevibacter sp.","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A253161","uncultured Methanobrevibacter sp."]]},{"id":"NCBITaxon:2547395","l":"Paenibacillus piri","na":1,"nb":1,"a":[["transportation-ways-roads-habitatmech-bacdive-1b4071cb1d.html","Transportation-ways-Roads"]],"b":[["NCBITaxon%3A2547395","Paenibacillus piri"]]},{"id":"NCBITaxon:255984","l":"","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A255984","Qipengyuania aquimaris"]]},{"id":"NCBITaxon:258050","l":"","na":1,"nb":1,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A258050","Kitasatospora gansuensis"]]},{"id":"NCBITaxon:258475","l":"Pelotomaculum propionicicum","na":1,"nb":1,"a":[["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"]],"b":[["NCBITaxon%3A258475","Pelotomaculum propionicicum"]]},{"id":"NCBITaxon:2586924","l":"Psychrilyobacter sp.","na":1,"nb":1,"a":[["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A2586924","Psychrilyobacter sp."]]},{"id":"NCBITaxon:2608088","l":"Aliihoeflea sp.","na":1,"nb":1,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"]],"b":[["NCBITaxon%3A2608088","Aliihoeflea sp."]]},{"id":"NCBITaxon:263724","l":"Idiomarina ramblicola","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A263724","Idiomarina ramblicola"]]},{"id":"NCBITaxon:263820","l":"Picrophilus torridus DSM 9790","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A46632","Picrophilus oshimae"]]},{"id":"NCBITaxon:264951","l":"Paecilomyces variotii","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A264951","Paecilomyces variotii"]]},{"id":"NCBITaxon:265883","l":"Hydrogenovibrio thermophilus","na":1,"nb":1,"a":[["in-situ-habitatmech-bacdive-3edb563d49.html","In-situ"]],"b":[["NCBITaxon%3A265883","Hydrogenovibrio thermophilus"]]},{"id":"NCBITaxon:266126","l":"Azonexus caeni","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A266126","Azonexus caeni"]]},{"id":"NCBITaxon:266749","l":"Kaistella jeonii","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A266749","Kaistella jeonii"]]},{"id":"NCBITaxon:267135","l":"Erythrobacter donghaensis","na":1,"nb":1,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["NCBITaxon%3A267135","Erythrobacter donghaensis"]]},{"id":"NCBITaxon:267671","l":"Leptospira interrogans serovar Copenhageni str. Fiocruz L1-130","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A267671","Leptospira interrogans serovar Copenhageni str. Fiocruz L1-130"]]},{"id":"NCBITaxon:268410","l":"Rhodovarius lipocyclicus","na":1,"nb":1,"a":[["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["NCBITaxon%3A268410","Rhodovarius lipocyclicus"]]},{"id":"NCBITaxon:268954","l":"Corynebacterium sp. C12","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A268954","Corynebacterium sp. C12"]]},{"id":"NCBITaxon:269660","l":"Methylobacterium brachiatum","na":1,"nb":1,"a":[["factory-envo-01000536.html","factory"]],"b":[["NCBITaxon%3A269660","Methylobacterium brachiatum"]]},{"id":"NCBITaxon:270374","l":"Marinobacter sp. ELB17","na":1,"nb":1,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A270374","Marinobacter sp. ELB17"]]},{"id":"NCBITaxon:271432","l":"Arthrobacter pigmenti","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A271432","Arthrobacter pigmenti"]]},{"id":"NCBITaxon:2719616","l":"Hymenobacter artigasi","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A2719616","Hymenobacter artigasi"]]},{"id":"NCBITaxon:272556","l":"Aggregatibacter actinomycetemcomitans HK1651","na":1,"nb":1,"a":[["archeological-site-envo-00000564.html","archeological site"]],"b":[["NCBITaxon%3A272556","Aggregatibacter actinomycetemcomitans HK1651"]]},{"id":"NCBITaxon:272560","l":"Burkholderia pseudomallei (strain K96243)","na":1,"nb":1,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A272560","Burkholderia pseudomallei K96243"]]},{"id":"NCBITaxon:272620","l":"Klebsiella pneumoniae subsp. pneumoniae (strain ATCC 700721 / MGH 78578)","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A272620","Klebsiella pneumoniae subsp. pneumoniae MGH 78578"]]},{"id":"NCBITaxon:272621","l":"Lactobacillus acidophilus NCFM","na":1,"nb":1,"a":[["intestinal-mucosa-bto-0000642.html","intestinal mucosa"]],"b":[["NCBITaxon%3A272621","Lactobacillus acidophilus NCFM"]]},{"id":"NCBITaxon:272626","l":"Listeria innocua serovar 6a (strain ATCC BAA-680 / CLIP 11262)","na":1,"nb":1,"a":[["heart-bto-0000562.html","heart"]],"b":[["NCBITaxon%3A272626","Listeria innocua Clip11262"]]},{"id":"NCBITaxon:272942","l":"Rhodobacter capsulatus (strain ATCC BAA-309 / NBRC 16581 / SB1003)","na":1,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A272942","Rhodobacter capsulatus SB 1003"]]},{"id":"NCBITaxon:273035","l":"Spiroplasma kunkelii CR2-3x","na":1,"nb":1,"a":[["mo-b-cell-bto-0003680.html","Mo-B cell"]],"b":[["NCBITaxon%3A273035","Spiroplasma kunkelii CR2-3x"]]},{"id":"NCBITaxon:273251","l":"","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A273251","Paraburkholderia sabiae"]]},{"id":"NCBITaxon:2735894","l":"Hymenobacter caeli","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A2735894","Hymenobacter caeli"]]},{"id":"NCBITaxon:2735895","l":"Flavobacterium gelidicaeli","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A2735895","Flavobacterium gelidicaeli"]]},{"id":"NCBITaxon:2735896","l":"Flavobacterium aeripolare","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A2735896","Flavobacterium aeripolare"]]},{"id":"NCBITaxon:2735899","l":"Frigoriflavimonas asaccharolytica","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A2735899","Frigoriflavimonas asaccharolytica"]]},{"id":"NCBITaxon:2738566","l":"Aerophobetes bacterium JGI MDM2 B17-2-N21","na":1,"nb":1,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["NCBITaxon%3A2738566","Aerophobetes bacterium JGI MDM2 B17-2-N21"]]},{"id":"NCBITaxon:2738689","l":"Omnitrophica bacterium JGI MDM2 000217CP-H20","na":1,"nb":1,"a":[["drinking-water-envo-00003064.html","drinking water"]],"b":[["NCBITaxon%3A2738689","Omnitrophica bacterium JGI MDM2 000217CP-H20"]]},{"id":"NCBITaxon:2738762","l":"Candidatus Woesearchaeota archaeon AG-122-F03","na":1,"nb":1,"a":[["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A2738762","Candidatus Woesearchaeota archaeon AG-122-F03"]]},{"id":"NCBITaxon:2780094","l":"Ramlibacter aquaticus","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A2780094","Ramlibacter aquaticus"]]},{"id":"NCBITaxon:279826","l":"Mesobacillus foraminis","na":1,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["NCBITaxon%3A279826","Mesobacillus foraminis"]]},{"id":"NCBITaxon:279828","l":"Microcella alkaliphila","na":1,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["NCBITaxon%3A279828","Microcella alkaliphila"]]},{"id":"NCBITaxon:280093","l":"Flavobacterium granuli","na":1,"nb":1,"a":[["factory-envo-01000536.html","factory"]],"b":[["NCBITaxon%3A280093","Flavobacterium granuli"]]},{"id":"NCBITaxon:280237","l":"nocardiopsis_rosea","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A280238","Nocardiopsis rhodophaea"]]},{"id":"NCBITaxon:280238","l":"","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A280238","Nocardiopsis rhodophaea"]]},{"id":"NCBITaxon:28045","l":"Mycobacterium celatum","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A28045","Mycobacterium celatum"]]},{"id":"NCBITaxon:280871","l":"Mycolicibacterium llatzerense","na":1,"nb":1,"a":[["central-nervous-system-bto-0000227.html","central nervous system"]],"b":[["NCBITaxon%3A280871","Mycolicibacterium llatzerense"]]},{"id":"NCBITaxon:28121","l":"Butyrivibrio sp.","na":1,"nb":1,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"]],"b":[["NCBITaxon%3A28121","Butyrivibrio sp."]]},{"id":"NCBITaxon:28181","l":"Magnetovibrio blakemorei","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A28181","Magnetovibrio blakemorei"]]},{"id":"NCBITaxon:28210","l":"Chelatococcus asaccharovorans","na":1,"nb":1,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A28210","Chelatococcus asaccharovorans"]]},{"id":"NCBITaxon:283205","l":"Mycobacterium sp. THO100","na":1,"nb":1,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["NCBITaxon%3A283205","Mycobacterium sp. THO100"]]},{"id":"NCBITaxon:283718","l":"Gordonia defluvii","na":1,"nb":1,"a":[["foam-habitatmech-bacdive-df2f59b773.html","Foam"]],"b":[["NCBITaxon%3A283718","Gordonia defluvii"]]},{"id":"NCBITaxon:283878","l":"Leucobacter aridicollis","na":1,"nb":1,"a":[["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["NCBITaxon%3A283878","Leucobacter aridicollis"]]},{"id":"NCBITaxon:284578","l":"","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A284578","Lentibacillus salarius"]]},{"id":"NCBITaxon:284579","l":"Salibacterium salarium","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A284579","Salibacterium salarium"]]},{"id":"NCBITaxon:284580","l":"","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A284580","Bacillus seohaeanensis"]]},{"id":"NCBITaxon:285070","l":"Petrimonas sulfuriphila","na":1,"nb":1,"a":[["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A285070","Petrimonas sulfuriphila"]]},{"id":"NCBITaxon:285444","l":"","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A285444","Streptomyces pseudoechinosporeus"]]},{"id":"NCBITaxon:285482","l":"Streptomyces tsusimaensis","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A285482","Streptomyces tsusimaensis"]]},{"id":"NCBITaxon:288019","l":"Yeosuana aromativorans","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A288019","Yeosuana aromativorans"]]},{"id":"NCBITaxon:288681","l":"Bacillus cereus E33L","na":1,"nb":1,"a":[["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A288681","Bacillus cereus E33L"]]},{"id":"NCBITaxon:290055","l":"Faecalicatena fissicatena","na":1,"nb":1,"a":[["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["NCBITaxon%3A290055","Faecalicatena fissicatena"]]},{"id":"NCBITaxon:290338","l":"Citrobacter koseri (strain ATCC BAA-895 / CDC 4225-83 / SGSC4696)","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A290338","Citrobacter koseri ATCC BAA-895"]]},{"id":"NCBITaxon:290339","l":"","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A290339","Cronobacter sakazakii ATCC BAA-894"]]},{"id":"NCBITaxon:291602","l":"","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A291602","Kribbella lupini"]]},{"id":"NCBITaxon:292414","l":"Ruegeria sp. TM1040","na":1,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["NCBITaxon%3A292414","Ruegeria sp. TM1040"]]},{"id":"NCBITaxon:292807","l":"","na":1,"nb":1,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A292807","Desulfonatronum cooperativum"]]},{"id":"NCBITaxon:2930037","l":"Phaeospirillum sp.","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A2930037","Phaeospirillum sp."]]},{"id":"NCBITaxon:29316","l":"Schaalia hyovaginalis","na":1,"nb":1,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["NCBITaxon%3A29316","Schaalia hyovaginalis"]]},{"id":"NCBITaxon:293614","l":"Rickettsia akari str. Hartford","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A293614","Rickettsia akari str. Hartford"]]},{"id":"NCBITaxon:29389","l":"Streptococcus alactolyticus","na":1,"nb":1,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["NCBITaxon%3A29389","Streptococcus alactolyticus"]]},{"id":"NCBITaxon:29422","l":"Legionella brunensis","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A29422","Legionella brunensis"]]},{"id":"NCBITaxon:294671","l":"Methanobrevibacter olleyae","na":1,"nb":1,"a":[["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"]],"b":[["NCBITaxon%3A294671","Methanobrevibacter olleyae"]]},{"id":"NCBITaxon:294699","l":"Anoxybacteroides amylolyticum","na":1,"nb":1,"a":[["mount-envo-00000477.html","mount"]],"b":[["NCBITaxon%3A294699","Anoxybacteroides amylolyticum"]]},{"id":"NCBITaxon:294936","l":"Photobacterium rosenbergii","na":1,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"]],"b":[["NCBITaxon%3A294936","Photobacterium rosenbergii"]]},{"id":"NCBITaxon:29522","l":"Brachyspira aalborgi","na":1,"nb":1,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["NCBITaxon%3A29522","Brachyspira aalborgi"]]},{"id":"NCBITaxon:295236","l":"Clostridium sp. RKD","na":1,"nb":1,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"]],"b":[["NCBITaxon%3A295236","Clostridium sp. RKD"]]},{"id":"NCBITaxon:295324","l":"Paenibacillus motobuensis","na":1,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A295324","Paenibacillus motobuensis"]]},{"id":"NCBITaxon:29554","l":"Metamycoplasma canadense","na":1,"nb":1,"a":[["inflammatory-cell-bto-0003861.html","inflammatory cell"]],"b":[["NCBITaxon%3A29554","Metamycoplasma canadense"]]},{"id":"NCBITaxon:29558","l":"Mycoplasmopsis hyopharyngis","na":1,"nb":1,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A29558","Mycoplasmopsis hyopharyngis"]]},{"id":"NCBITaxon:29559","l":"Metamycoplasma hyosynoviae","na":1,"nb":1,"a":[["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A29559","Metamycoplasma hyosynoviae"]]},{"id":"NCBITaxon:297245","l":"Legionella pneumophila str. Lens","na":1,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A297245","Legionella pneumophila str. Lens"]]},{"id":"NCBITaxon:297536","l":"Oryzihumus leptocrescens","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A297536","Oryzihumus leptocrescens"]]},{"id":"NCBITaxon:298653","l":"Frankia sp. EAN1pec","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A298653","Parafrankia sp. EAN1pec"]]},{"id":"NCBITaxon:299254","l":"Streptomyces sp. NRRL 11266","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A299254","Streptomyces sp. NRRL 11266"]]},{"id":"NCBITaxon:300181","l":"Serratia ureilytica","na":1,"nb":1,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["NCBITaxon%3A300181","Serratia ureilytica"]]},{"id":"NCBITaxon:301154","l":"Sphingomonas oligophenolica","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A301154","Sphingomonas oligophenolica"]]},{"id":"NCBITaxon:301708","l":"Clostridium sp. MLG480","na":1,"nb":1,"a":[["mud-envo-01000001.html","mud"]],"b":[["NCBITaxon%3A301708","Clostridium sp. MLG480"]]},{"id":"NCBITaxon:302409","l":"Ehrlichia ruminantium str. Gardel","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A302409","Ehrlichia ruminantium str. Gardel"]]},{"id":"NCBITaxon:304","l":"Roseateles saccharophilus","na":1,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"]],"b":[["NCBITaxon%3A304","Roseateles saccharophilus"]]},{"id":"NCBITaxon:3041","l":"Chlorophyta","na":1,"nb":1,"a":[["leaf-bto-0000713.html","leaf"]],"b":[["NCBITaxon%3A2812611","Micromonas sp."]]},{"id":"NCBITaxon:306545","l":"Marinimicrobium koreense","na":1,"nb":1,"a":[["strait-envo-00000394.html","strait"]],"b":[["NCBITaxon%3A306545","Marinimicrobium koreense"]]},{"id":"NCBITaxon:307120","l":"Micromonospora marina","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A307120","Micromonospora marina"]]},{"id":"NCBITaxon:308853","l":"Natronorubrum thiooxidans","na":1,"nb":1,"a":[["steppe-envo-00000262.html","steppe"]],"b":[["NCBITaxon%3A308853","Natronorubrum thiooxidans"]]},{"id":"NCBITaxon:309483","l":"exiguobacterium_soli","na":1,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A132920","Exiguobacterium antarcticum"]]},{"id":"NCBITaxon:309890","l":"","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A309890","Deinococcus papagonensis"]]},{"id":"NCBITaxon:310350","l":"Nocardiopsis sp.","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A310350","Nocardiopsis sp."]]},{"id":"NCBITaxon:310396","l":"Nitrosomonas sp. IWT310","na":1,"nb":1,"a":[["waste-treatment-plant-envo-00002272.html","waste treatment plant"]],"b":[["NCBITaxon%3A310396","Nitrosomonas sp. IWT310"]]},{"id":"NCBITaxon:311458","l":"Candidatus Caldarchaeum subterraneum","na":1,"nb":1,"a":[["finger-bto-0004669.html","finger"]],"b":[["NCBITaxon%3A311458","Candidatus Caldarchaeum subterraneum"]]},{"id":"NCBITaxon:311460","l":"Anoxybacteroides rupiense","na":1,"nb":1,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A311460","Anoxybacteroides rupiense"]]},{"id":"NCBITaxon:312309","l":"","na":1,"nb":1,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["NCBITaxon%3A312309","Aliivibrio fischeri ES114"]]},{"id":"NCBITaxon:314200","l":"Giesbergeria voronezhensis","na":1,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"]],"b":[["NCBITaxon%3A314200","Giesbergeria voronezhensis"]]},{"id":"NCBITaxon:314232","l":"Yoonia vestfoldensis SKA53","na":1,"nb":1,"a":[["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A314232","Yoonia vestfoldensis SKA53"]]},{"id":"NCBITaxon:314238","l":"Phyllobacterium ifriqiyense","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A314238","Phyllobacterium ifriqiyense"]]},{"id":"NCBITaxon:314253","l":"Nitrobacter sp. Nb-311A","na":1,"nb":1,"a":[["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A314253","Nitrobacter sp. Nb-311A"]]},{"id":"NCBITaxon:314256","l":"Oceanicola granulosus HTCC2516","na":1,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["NCBITaxon%3A314256","Oceanicola granulosus HTCC2516"]]},{"id":"NCBITaxon:314266","l":"Sphingomonas sp. SKA58","na":1,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["NCBITaxon%3A314266","Sphingomonas sp. SKA58"]]},{"id":"NCBITaxon:314267","l":"Sulfitobacter sp. NAS-14.1","na":1,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["NCBITaxon%3A314267","Sulfitobacter sp. NAS-14.1"]]},{"id":"NCBITaxon:314278","l":"Nitrococcus mobilis Nb-231","na":1,"nb":1,"a":[["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["NCBITaxon%3A314278","Nitrococcus mobilis Nb-231"]]},{"id":"NCBITaxon:314282","l":"Psychromonas sp. CNPT3","na":1,"nb":1,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A314282","Psychromonas sp. CNPT3"]]},{"id":"NCBITaxon:314291","l":"Vibrio splendidus 12B01","na":1,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["NCBITaxon%3A314291","Vibrio splendidus 12B01"]]},{"id":"NCBITaxon:314330","l":"Enterobacter sp. DC1","na":1,"nb":1,"a":[["tuber-bto-0001400.html","tuber"]],"b":[["NCBITaxon%3A314330","Enterobacter sp. DC1"]]},{"id":"NCBITaxon:314608","l":"Shewanella benthica KT99","na":1,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["NCBITaxon%3A314608","Shewanella benthica KT99"]]},{"id":"NCBITaxon:314723","l":"Borrelia hermsii DAH","na":1,"nb":1,"a":[["salivary-gland-bto-0001203.html","salivary gland"]],"b":[["NCBITaxon%3A314723","Borrelia hermsii DAH"]]},{"id":"NCBITaxon:315456","l":"Rickettsia felis (strain ATCC VR-1525 / URRWXCal2)","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A315456","Rickettsia felis Marseille-URRWFXCal2"]]},{"id":"NCBITaxon:315750","l":"Bacillus pumilus SAFR-032","na":1,"nb":1,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A315750","Bacillus pumilus SAFR-032"]]},{"id":"NCBITaxon:316055","l":"Rhodopseudomonas palustris BisA53","na":1,"nb":1,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A316055","Rhodopseudomonas palustris BisA53"]]},{"id":"NCBITaxon:316056","l":"Rhodopseudomonas palustris BisB18","na":1,"nb":1,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A316056","Rhodopseudomonas palustris BisB18"]]},{"id":"NCBITaxon:316057","l":"Rhodopseudomonas palustris BisB5","na":1,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A316057","Rhodopseudomonas palustris BisB5"]]},{"id":"NCBITaxon:316279","l":"Synechococcus sp. CC9902","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A316279","Synechococcus sp. CC9902"]]},{"id":"NCBITaxon:317580","l":"Flavobacterium sp. 4214","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A317580","Flavobacterium sp. 4214"]]},{"id":"NCBITaxon:317664","l":"Quadrisphaera granulorum","na":1,"nb":1,"a":[["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["NCBITaxon%3A317664","Quadrisphaera granulorum"]]},{"id":"NCBITaxon:318751","l":"Westerdykella ornata","na":1,"nb":1,"a":[["desert-sand-envo-00005800.html","desert sand"]],"b":[["NCBITaxon%3A318751","Westerdykella ornata"]]},{"id":"NCBITaxon:319003","l":"Bradyrhizobium sp. WSM1253","na":1,"nb":1,"a":[["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A319003","Bradyrhizobium sp. WSM1253"]]},{"id":"NCBITaxon:320374","l":"Burkholderia pseudomallei S13","na":1,"nb":1,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A320374","Burkholderia pseudomallei S13"]]},{"id":"NCBITaxon:320388","l":"Burkholderia mallei SAVP1","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A320388","Burkholderia mallei SAVP1"]]},{"id":"NCBITaxon:320771","l":"","na":1,"nb":1,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A320771","Pedosphaera parvula Ellin514"]]},{"id":"NCBITaxon:321267","l":"Shimia marina","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A321267","Shimia marina"]]},{"id":"NCBITaxon:321984","l":"Pseudoduganella plicata","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A321984","Pseudoduganella plicata"]]},{"id":"NCBITaxon:321985","l":"Pseudoduganella lutea","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A321985","Pseudoduganella lutea"]]},{"id":"NCBITaxon:322710","l":"Azotobacter vinelandii DJ","na":1,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["NCBITaxon%3A322710","Azotobacter vinelandii DJ"]]},{"id":"NCBITaxon:323426","l":"Jezberella montanilacus","na":1,"nb":1,"a":[["pond-envo-00000033.html","pond"]],"b":[["NCBITaxon%3A323426","Jezberella montanilacus"]]},{"id":"NCBITaxon:324617","l":"Aeromonas tecta","na":1,"nb":1,"a":[["surface-swab-habitatmech-bacdive-6911460a4a.html","Surface-swab"]],"b":[["NCBITaxon%3A324617","Aeromonas tecta"]]},{"id":"NCBITaxon:325473","l":"Psychroserpens mesophilus","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A325473","Psychroserpens mesophilus"]]},{"id":"NCBITaxon:328552","l":"","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A2734912","Bradyrhizobium denitrificans"]]},{"id":"NCBITaxon:328839","l":"Azospirillum melinis","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A328839","Azospirillum melinis"]]},{"id":"NCBITaxon:328971","l":"Leptospira borgpetersenii serovar Hardjo","na":1,"nb":1,"a":[["kidney-bto-0000671.html","kidney"]],"b":[["NCBITaxon%3A328971","Leptospira borgpetersenii serovar Hardjo"]]},{"id":"NCBITaxon:329406","l":"","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A329406","Thiorhodococcus mannitoliphagus"]]},{"id":"NCBITaxon:331104","l":"Blattabacterium sp. (Blattella germanica) str. Bge","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A331104","Blattabacterium sp. (Blattella germanica) str. Bge"]]},{"id":"NCBITaxon:331112","l":"Escherichia coli O9:H4 (strain HS)","na":1,"nb":1,"a":[["adrenal-gland-bto-0000047.html","adrenal gland"]],"b":[["NCBITaxon%3A331112","Escherichia coli HS"]]},{"id":"NCBITaxon:332415","l":"Ehrlichia chaffeensis str. Sapulpa","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A332415","Ehrlichia chaffeensis str. Sapulpa"]]},{"id":"NCBITaxon:332522","l":"Halospina denitrificans","na":1,"nb":1,"a":[["steppe-envo-00000262.html","steppe"]],"b":[["NCBITaxon%3A332522","Halospina denitrificans"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":1,"nb":1,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["NCBITaxon%3A332952","Aspergillus flavus NRRL3357"]]},{"id":"NCBITaxon:332977","l":"Parapedobacter koreensis","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A332977","Parapedobacter koreensis"]]},{"id":"NCBITaxon:333138","l":"","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A333138","Halalkalibacter okhensis"]]},{"id":"NCBITaxon:333146","l":"Ferroplasma acidarmanus Fer1","na":1,"nb":1,"a":[["mountain-envo-00000081.html","mountain"]],"b":[["NCBITaxon%3A333146","Ferroplasma acidarmanus Fer1"]]},{"id":"NCBITaxon:333368","l":"Rhodoblastus sphagnicola","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A333368","Rhodoblastus sphagnicola"]]},{"id":"NCBITaxon:333668","l":"Theileria parva strain Muguga","na":1,"nb":1,"a":[["lymphocyte-bto-0000775.html","lymphocyte"]],"b":[["NCBITaxon%3A333668","Theileria parva strain Muguga"]]},{"id":"NCBITaxon:333728","l":"Streptomyces erringtonii","na":1,"nb":1,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A333728","Streptomyces erringtonii"]]},{"id":"NCBITaxon:333964","l":"Xenorhabdus indica","na":1,"nb":1,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A333964","Xenorhabdus indica"]]},{"id":"NCBITaxon:333965","l":"Providencia vermicola","na":1,"nb":1,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A333965","Providencia vermicola"]]},{"id":"NCBITaxon:334406","l":"Bacillus cereus NC7401","na":1,"nb":1,"a":[["spermatozoon-bto-0001277.html","spermatozoon"]],"b":[["NCBITaxon%3A334406","Bacillus cereus NC7401"]]},{"id":"NCBITaxon:336179","l":"Pseudoalteromonas sp. 643A","na":1,"nb":1,"a":[["fumarole-envo-00000216.html","fumarole"]],"b":[["NCBITaxon%3A336179","Pseudoalteromonas sp. 643A"]]},{"id":"NCBITaxon:337701","l":"Roseovarius pacificus","na":1,"nb":1,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["NCBITaxon%3A337701","Roseovarius pacificus"]]},{"id":"NCBITaxon:338044","l":"Bacillus sp. GB02-25","na":1,"nb":1,"a":[["organic-waste-material-envo-00002873.html","organic waste material"]],"b":[["NCBITaxon%3A338044","Bacillus sp. GB02-25"]]},{"id":"NCBITaxon:338047","l":"Bacillus sp. GB02-31","na":1,"nb":1,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A338047","Bacillus sp. GB02-31"]]},{"id":"NCBITaxon:33883","l":"Microbacterium arborescens","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A33883","Microbacterium arborescens"]]},{"id":"NCBITaxon:33915","l":"Saccharopolyspora sp.","na":1,"nb":1,"a":[["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A33915","Saccharopolyspora sp."]]},{"id":"NCBITaxon:33922","l":"Mycoplasmopsis agassizii","na":1,"nb":1,"a":[["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A33922","Mycoplasmopsis agassizii"]]},{"id":"NCBITaxon:33950","l":"Thermoanaerobacterium thermosulfurigenes","na":1,"nb":1,"a":[["park-envo-00000562.html","park"]],"b":[["NCBITaxon%3A33950","Thermoanaerobacterium thermosulfurigenes"]]},{"id":"NCBITaxon:34012","l":"Azospirillum sp.","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A34012","Azospirillum sp."]]},{"id":"NCBITaxon:34017","l":"Rhodobium orientis","na":1,"nb":1,"a":[["marine-neritic-zone-envo-00000206.html","marine neritic zone"]],"b":[["NCBITaxon%3A34017","Rhodobium orientis"]]},{"id":"NCBITaxon:340177","l":"Chlorobium chlorochromatii CaD3","na":1,"nb":1,"a":[["photoreceptor-cell-bto-0001060.html","photoreceptor cell"]],"b":[["NCBITaxon%3A340177","Chlorobium chlorochromatii CaD3"]]},{"id":"NCBITaxon:340320","l":"Leucobacter luti","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A340320","Leucobacter luti"]]},{"id":"NCBITaxon:340321","l":"Leucobacter alluvii","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A340321","Leucobacter alluvii"]]},{"id":"NCBITaxon:340345","l":"Actinoalloteichus hymeniacidonis","na":1,"nb":1,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A340345","Actinoalloteichus hymeniacidonis"]]},{"id":"NCBITaxon:34101","l":"Sporosarcina limicola","na":1,"nb":1,"a":[["tarn-envo-00000455.html","tarn"]],"b":[["NCBITaxon%3A34101","Sporosarcina limicola"]]},{"id":"NCBITaxon:341027","l":"Sphingobacterium sp.","na":1,"nb":1,"a":[["air-conditioning-unit-envo-00002874.html","air conditioning unit"]],"b":[["NCBITaxon%3A341027","Sphingobacterium sp."]]},{"id":"NCBITaxon:341199","l":"Nocardia kroppenstedtii","na":1,"nb":1,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["NCBITaxon%3A341199","Nocardia kroppenstedtii"]]},{"id":"NCBITaxon:342616","l":"","na":1,"nb":1,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A342616","Streptococcus agalactiae COH1"]]},{"id":"NCBITaxon:342944","l":"","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A342944","Sinobaca qinghaiensis"]]},{"id":"NCBITaxon:343013","l":"","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A343013","Paenacidovorax caeni"]]},{"id":"NCBITaxon:343080","l":"Chryseobacterium sp. R-25053","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A343080","Chryseobacterium sp. R-25053"]]},{"id":"NCBITaxon:343403","l":"Costertonia aggregata","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A343403","Costertonia aggregata"]]},{"id":"NCBITaxon:343509","l":"Sodalis glossinidius str. 'morsitans'","na":1,"nb":1,"a":[["needle-bto-0000917.html","needle"]],"b":[["NCBITaxon%3A343509","Sodalis glossinidius str. 'morsitans'"]]},{"id":"NCBITaxon:345072","l":"Vibrio cholerae MO10","na":1,"nb":1,"a":[["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["NCBITaxon%3A345072","Vibrio cholerae MO10"]]},{"id":"NCBITaxon:345075","l":"Vibrio cholerae V51","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A345075","Vibrio cholerae V51"]]},{"id":"NCBITaxon:345631","l":"Geobacter argillaceus","na":1,"nb":1,"a":[["clay-envo-00002982.html","clay"]],"b":[["NCBITaxon%3A345631","Geobacter argillaceus"]]},{"id":"NCBITaxon:345632","l":"","na":1,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A345632","Geobacter pickeringii"]]},{"id":"NCBITaxon:347495","l":"Bacillus cereus F837/76","na":1,"nb":1,"a":[["prostate-gland-bto-0001129.html","prostate gland"]],"b":[["NCBITaxon%3A347495","Bacillus cereus F837/76"]]},{"id":"NCBITaxon:347515","l":"Leishmania major strain Friedlin","na":1,"nb":1,"a":[["kinetoplastid-bto-0002502.html","kinetoplastid"]],"b":[["NCBITaxon%3A347515","Leishmania major strain Friedlin"]]},{"id":"NCBITaxon:349725","l":"Micromonospora sp. ML1","na":1,"nb":1,"a":[["clay-envo-00002982.html","clay"]],"b":[["NCBITaxon%3A349725","Micromonospora sp. ML1"]]},{"id":"NCBITaxon:350702","l":"Burkholderia cenocepacia PC184","na":1,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A350702","Burkholderia cenocepacia PC184"]]},{"id":"NCBITaxon:354352","l":"Pseudochrobactrum saccharolyticum","na":1,"nb":1,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["NCBITaxon%3A354352","Pseudochrobactrum saccharolyticum"]]},{"id":"NCBITaxon:35616","l":"Pyrodictium brockii","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A35616","Pyrodictium brockii"]]},{"id":"NCBITaxon:357244","l":"Orientia tsutsugamushi str. Boryong","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A357244","Orientia tsutsugamushi str. Boryong"]]},{"id":"NCBITaxon:35743","l":"Halorubrum sodomense","na":1,"nb":1,"a":[["marine-anoxic-zone-envo-01000066.html","marine anoxic zone"]],"b":[["NCBITaxon%3A35743","Halorubrum sodomense"]]},{"id":"NCBITaxon:35752","l":"Actinoplanes philippinensis","na":1,"nb":1,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A35752","Actinoplanes philippinensis"]]},{"id":"NCBITaxon:357544","l":"Helicobacter pylori HPAG1","na":1,"nb":1,"a":[["oxyntic-cell-bto-0001780.html","oxyntic cell"]],"b":[["NCBITaxon%3A357544","Helicobacter pylori HPAG1"]]},{"id":"NCBITaxon:35755","l":"Corynebacterium kutscheri","na":1,"nb":1,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["NCBITaxon%3A35755","Corynebacterium kutscheri"]]},{"id":"NCBITaxon:358099","l":"","na":1,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A358099","Brevibacterium oceani"]]},{"id":"NCBITaxon:358592","l":"Rheinheimera chironomi","na":1,"nb":1,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["NCBITaxon%3A358592","Rheinheimera chironomi"]]},{"id":"NCBITaxon:358709","l":"Escherichia coli 101-1","na":1,"nb":1,"a":[["hep-2-cell-bto-0000976.html","HEp-2 cell"]],"b":[["NCBITaxon%3A358709","Escherichia coli 101-1"]]},{"id":"NCBITaxon:359391","l":"Brucella abortus (strain 2308)","na":1,"nb":1,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A359391","Brucella abortus 2308"]]},{"id":"NCBITaxon:360104","l":"Campylobacter concisus 13826","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A360104","Campylobacter concisus 13826"]]},{"id":"NCBITaxon:360411","l":"Bellilinea caldifistulae","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A360411","Bellilinea caldifistulae"]]},{"id":"NCBITaxon:360422","l":"Clostridium tagluense","na":1,"nb":1,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A360422","Clostridium tagluense"]]},{"id":"NCBITaxon:360911","l":"Exiguobacterium sp. AT1b","na":1,"nb":1,"a":[["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A360911","Exiguobacterium sp. AT1b"]]},{"id":"NCBITaxon:361","l":"Agrobacterium sp.","na":1,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"]],"b":[["NCBITaxon%3A361","Agrobacterium sp."]]},{"id":"NCBITaxon:361576","l":"Halovibrio mesolongii","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A361576","Halovibrio mesolongii"]]},{"id":"NCBITaxon:364106","l":"Escherichia coli (strain UTI89 / UPEC)","na":1,"nb":1,"a":[["rectum-bto-0001158.html","rectum"]],"b":[["NCBITaxon%3A364106","Escherichia coli UTI89"]]},{"id":"NCBITaxon:364199","l":"Paracoccus homiensis","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A364199","Paracoccus homiensis"]]},{"id":"NCBITaxon:364200","l":"Cognatiyoonia koreensis","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A364200","Cognatiyoonia koreensis"]]},{"id":"NCBITaxon:36813","l":"Mycolicibacterium pulveris","na":1,"nb":1,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["NCBITaxon%3A36813","Mycolicibacterium pulveris"]]},{"id":"NCBITaxon:36870","l":"Wigglesworthia glossinidia endosymbiont of Glossina brevipalpis","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A36870","Wigglesworthia glossinidia endosymbiont of Glossina brevipalpis"]]},{"id":"NCBITaxon:36875","l":"Porphyromonas canoris","na":1,"nb":1,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A36875","Porphyromonas canoris"]]},{"id":"NCBITaxon:370106","l":"Thermococcus sp. GT","na":1,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["NCBITaxon%3A370106","Thermococcus sp. GT"]]},{"id":"NCBITaxon:370551","l":"Streptococcus pyogenes MGAS9429","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A370551","Streptococcus pyogenes MGAS9429"]]},{"id":"NCBITaxon:370552","l":"Streptococcus pyogenes MGAS10270","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A370552","Streptococcus pyogenes MGAS10270"]]},{"id":"NCBITaxon:370553","l":"Streptococcus pyogenes MGAS2096","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A370553","Streptococcus pyogenes MGAS2096"]]},{"id":"NCBITaxon:370554","l":"Streptococcus pyogenes MGAS10750","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A370554","Streptococcus pyogenes MGAS10750"]]},{"id":"NCBITaxon:370979","l":"","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A370979","Flavobacterium defluvii"]]},{"id":"NCBITaxon:371602","l":"Aerococcus suis","na":1,"nb":1,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["NCBITaxon%3A371602","Aerococcus suis"]]},{"id":"NCBITaxon:372072","l":"Cohaesibacter gelatinilyticus","na":1,"nb":1,"a":[["sandstone-envo-00002055.html","sandstone"]],"b":[["NCBITaxon%3A372072","Cohaesibacter gelatinilyticus"]]},{"id":"NCBITaxon:372461","l":"Buchnera aphidicola BCc","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A372461","Buchnera aphidicola BCc"]]},{"id":"NCBITaxon:373672","l":"Chryseobacterium gambrini","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A373672","Chryseobacterium gambrini"]]},{"id":"NCBITaxon:374858","l":"Zoogloea caeni","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A374858","Zoogloea caeni"]]},{"id":"NCBITaxon:374928","l":"Haemophilus influenzae PittAA","na":1,"nb":1,"a":[["middle-ear-bto-0002099.html","middle ear"]],"b":[["NCBITaxon%3A374928","Haemophilus influenzae PittAA"]]},{"id":"NCBITaxon:374930","l":"Haemophilus influenzae (strain PittEE)","na":1,"nb":1,"a":[["middle-ear-bto-0002099.html","middle ear"]],"b":[["NCBITaxon%3A374930","Haemophilus influenzae PittEE"]]},{"id":"NCBITaxon:374931","l":"Haemophilus influenzae PittGG","na":1,"nb":1,"a":[["middle-ear-bto-0002099.html","middle ear"]],"b":[["NCBITaxon%3A374931","Haemophilus influenzae PittGG"]]},{"id":"NCBITaxon:374932","l":"Haemophilus influenzae PittHH","na":1,"nb":1,"a":[["middle-ear-bto-0002099.html","middle ear"]],"b":[["NCBITaxon%3A374932","Haemophilus influenzae PittHH"]]},{"id":"NCBITaxon:374933","l":"Haemophilus influenzae PittII","na":1,"nb":1,"a":[["middle-ear-bto-0002099.html","middle ear"]],"b":[["NCBITaxon%3A374933","Haemophilus influenzae PittII"]]},{"id":"NCBITaxon:375175","l":"Loigolactobacillus backii","na":1,"nb":1,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["NCBITaxon%3A375175","Loigolactobacillus backii"]]},{"id":"NCBITaxon:375177","l":"Haemophilus influenzae 3655","na":1,"nb":1,"a":[["b-lymphocyte-cell-line-bto-0001522.html","B-lymphocyte cell line"]],"b":[["NCBITaxon%3A375177","Haemophilus influenzae 3655"]]},{"id":"NCBITaxon:375286","l":"","na":1,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"]],"b":[["NCBITaxon%3A375286","Janthinobacterium sp. Marseille"]]},{"id":"NCBITaxon:376219","l":"","na":1,"nb":1,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A376219","Limnospira indica PCC 8005"]]},{"id":"NCBITaxon:37632","l":"Amycolatopsis sp.","na":1,"nb":1,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A37632","Amycolatopsis sp."]]},{"id":"NCBITaxon:378534","l":"Pseudomonas sp. Eur1 9.41","na":1,"nb":1,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A378534","Pseudomonas sp. Eur1 9.41"]]},{"id":"NCBITaxon:378543","l":"Tumebacillus permanentifrigoris","na":1,"nb":1,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A378543","Tumebacillus permanentifrigoris"]]},{"id":"NCBITaxon:379731","l":"Stutzerimonas stutzeri A1501","na":1,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["NCBITaxon%3A379731","Stutzerimonas stutzeri A1501"]]},{"id":"NCBITaxon:38033","l":"Chaetomium globosum","na":1,"nb":1,"a":[["desert-sand-envo-00005800.html","desert sand"]],"b":[["NCBITaxon%3A38033","Chaetomium globosum"]]},{"id":"NCBITaxon:380358","l":"Xanthomonas albilineans GPE PC73","na":1,"nb":1,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["NCBITaxon%3A380358","Xanthomonas albilineans GPE PC73"]]},{"id":"NCBITaxon:380481","l":"Methylomicrobium sp. HG-1","na":1,"nb":1,"a":[["gold-mine-envo-00002168.html","gold mine"]],"b":[["NCBITaxon%3A380481","Methylomicrobium sp. HG-1"]]},{"id":"NCBITaxon:38072","l":"Bacillus infernus","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A38072","Bacillus infernus"]]},{"id":"NCBITaxon:380749","l":"Hydrogenobaculum sp. Y04AAS1","na":1,"nb":1,"a":[["acidic-hot-spring-envo-00002120.html","acidic hot spring"]],"b":[["NCBITaxon%3A380749","Hydrogenobaculum sp. Y04AAS1"]]},{"id":"NCBITaxon:381630","l":"Methylobacterium jeotgali","na":1,"nb":1,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["NCBITaxon%3A381630","Methylobacterium jeotgali"]]},{"id":"NCBITaxon:381754","l":"Pseudomonas paraeruginosa PA7","na":1,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A381754","Pseudomonas paraeruginosa PA7"]]},{"id":"NCBITaxon:382638","l":"Helicobacter acinonychis str. Sheeba","na":1,"nb":1,"a":[["gracilis-muscle-bto-0000536.html","gracilis muscle"]],"b":[["NCBITaxon%3A382638","Helicobacter acinonychis str. Sheeba"]]},{"id":"NCBITaxon:385025","l":"Cycloclasticus sp. P1","na":1,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A385025","Cycloclasticus sp. P1"]]},{"id":"NCBITaxon:386456","l":"Methanobacterium arcticum","na":1,"nb":1,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A386456","Methanobacterium arcticum"]]},{"id":"NCBITaxon:386585","l":"Escherichia coli O157:H7 str. Sakai","na":1,"nb":1,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["NCBITaxon%3A386585","Escherichia coli O157:H7 str. Sakai"]]},{"id":"NCBITaxon:387094","l":"Flavobacterium hercynium","na":1,"nb":1,"a":[["stream-bed-envo-00000383.html","stream bed"]],"b":[["NCBITaxon%3A387094","Flavobacterium hercynium"]]},{"id":"NCBITaxon:387426","l":"Pseudoalteromonas sp. KMM 701","na":1,"nb":1,"a":[["fumarole-envo-00000216.html","fumarole"]],"b":[["NCBITaxon%3A387426","Pseudoalteromonas sp. KMM 701"]]},{"id":"NCBITaxon:387890","l":"Prauserella aidingensis","na":1,"nb":1,"a":[["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A387890","Prauserella aidingensis"]]},{"id":"NCBITaxon:388349","l":"Thermoplasma sp. S02","na":1,"nb":1,"a":[["lagoon-envo-00000038.html","lagoon"]],"b":[["NCBITaxon%3A388349","Thermoplasma sp. S02"]]},{"id":"NCBITaxon:388396","l":"Aliivibrio fischeri MJ11","na":1,"nb":1,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["NCBITaxon%3A388396","Aliivibrio fischeri MJ11"]]},{"id":"NCBITaxon:388413","l":"Algoriphagus machipongonensis","na":1,"nb":1,"a":[["choanomastigote-bto-0003434.html","choanomastigote"]],"b":[["NCBITaxon%3A388413","Algoriphagus machipongonensis"]]},{"id":"NCBITaxon:388467","l":"Planktothrix agardhii NIVA-CYA 126/8","na":1,"nb":1,"a":[["filament-bto-0000463.html","filament"]],"b":[["NCBITaxon%3A388467","Planktothrix agardhii NIVA-CYA 126/8"]]},{"id":"NCBITaxon:388739","l":"Roseobacter sp. SK209-2-6","na":1,"nb":1,"a":[["sandstone-envo-00002055.html","sandstone"]],"b":[["NCBITaxon%3A388739","Roseobacter sp. SK209-2-6"]]},{"id":"NCBITaxon:388746","l":"","na":1,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A388746","Puniceicoccus vermicola"]]},{"id":"NCBITaxon:388924","l":"Agromyces sp. KY5R","na":1,"nb":1,"a":[["clay-envo-00002982.html","clay"]],"b":[["NCBITaxon%3A388924","Agromyces sp. KY5R"]]},{"id":"NCBITaxon:390235","l":"Pseudomonas putida W619","na":1,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A390235","Pseudomonas putida W619"]]},{"id":"NCBITaxon:390612","l":"Bacteriovorax sp. NZ7","na":1,"nb":1,"a":[["sandstone-envo-00002055.html","sandstone"]],"b":[["NCBITaxon%3A390612","Bacteriovorax sp. NZ7"]]},{"id":"NCBITaxon:390807","l":"Jannaschia pohangensis","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A390807","Jannaschia pohangensis"]]},{"id":"NCBITaxon:391366","l":"Sporosarcina sp. A20","na":1,"nb":1,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A391366","Sporosarcina sp. A20"]]},{"id":"NCBITaxon:391589","l":"Roseobacter sp. GAI101","na":1,"nb":1,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A391589","Roseobacter sp. GAI101"]]},{"id":"NCBITaxon:391593","l":"Roseobacter sp. CCS2","na":1,"nb":1,"a":[["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A391593","Roseobacter sp. CCS2"]]},{"id":"NCBITaxon:391596","l":"Pedobacter sp. BAL39","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A391596","Pedobacter sp. BAL39"]]},{"id":"NCBITaxon:391597","l":"Limnobacter sp. MED105","na":1,"nb":1,"a":[["environmental-material-envo-00010483.html","environmental material"]],"b":[["NCBITaxon%3A391597","Limnobacter sp. MED105"]]},{"id":"NCBITaxon:391600","l":"Brevundimonas sp. BAL3","na":1,"nb":1,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A391600","Brevundimonas sp. BAL3"]]},{"id":"NCBITaxon:391774","l":"Nitratidesulfovibrio vulgaris DP4","na":1,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"]],"b":[["NCBITaxon%3A391774","Nitratidesulfovibrio vulgaris DP4"]]},{"id":"NCBITaxon:392018","l":"Methanobacterium alcaliphilum","na":1,"nb":1,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A392018","Methanobacterium alcaliphilum"]]},{"id":"NCBITaxon:392423","l":"Hydrogenivirga sp. 128-5-R1-1","na":1,"nb":1,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A392423","Hydrogenivirga sp. 128-5-R1-1"]]},{"id":"NCBITaxon:392430","l":"Roseobacter sp. SO3","na":1,"nb":1,"a":[["sandstone-envo-00002055.html","sandstone"]],"b":[["NCBITaxon%3A392430","Roseobacter sp. SO3"]]},{"id":"NCBITaxon:392844","l":"Desulfothermus naphthae","na":1,"nb":1,"a":[["lagoon-envo-00000038.html","lagoon"]],"b":[["NCBITaxon%3A392844","Desulfothermus naphthae"]]},{"id":"NCBITaxon:392917","l":"Paenibacillus larvae subsp. larvae BRL-230010","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A392917","Paenibacillus larvae subsp. larvae BRL-230010"]]},{"id":"NCBITaxon:393011","l":"Francisella tularensis subsp. holarctica OSU18","na":1,"nb":1,"a":[["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["NCBITaxon%3A393011","Francisella tularensis subsp. holarctica OSU18"]]},{"id":"NCBITaxon:393481","l":"Roseinatronobacter monicus","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A393481","Roseinatronobacter monicus"]]},{"id":"NCBITaxon:394091","l":"Cystobacter badius","na":1,"nb":1,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"]],"b":[["NCBITaxon%3A394091","Cystobacter badius"]]},{"id":"NCBITaxon:394093","l":"Cystobacter miniatus","na":1,"nb":1,"a":[["wood-bto-0005516.html","wood"]],"b":[["NCBITaxon%3A394093","Cystobacter miniatus"]]},{"id":"NCBITaxon:394097","l":"Allostigmatella hybrida","na":1,"nb":1,"a":[["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["NCBITaxon%3A394097","Allostigmatella hybrida"]]},{"id":"NCBITaxon:394193","l":"Amycolatopsis saalfeldensis","na":1,"nb":1,"a":[["cave-envo-00000067.html","cave"]],"b":[["NCBITaxon%3A394193","Amycolatopsis saalfeldensis"]]},{"id":"NCBITaxon:394221","l":"Maricaulis maris MCS10","na":1,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["NCBITaxon%3A394221","Maricaulis maris MCS10"]]},{"id":"NCBITaxon:394958","l":"Clostridium taeniosporum","na":1,"nb":1,"a":[["trunk-bto-0001493.html","trunk"]],"b":[["NCBITaxon%3A394958","Clostridium taeniosporum"]]},{"id":"NCBITaxon:395087","l":"Paenimyroides ceti","na":1,"nb":1,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"]],"b":[["NCBITaxon%3A395087","Paenimyroides ceti"]]},{"id":"NCBITaxon:395491","l":"Rhizobium leguminosarum bv. trifolii WSM1325","na":1,"nb":1,"a":[["beach-envo-00000091.html","beach"]],"b":[["NCBITaxon%3A395491","Rhizobium leguminosarum bv. trifolii WSM1325"]]},{"id":"NCBITaxon:395494","l":"","na":1,"nb":1,"a":[["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A395494","Gallionella capsiferriformans ES-2"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A395960","Rhodopseudomonas palustris TIE-1"]]},{"id":"NCBITaxon:39691","l":"Mycolicibacterium moriokaense","na":1,"nb":1,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A39691","Mycolicibacterium moriokaense"]]},{"id":"NCBITaxon:397945","l":"","na":1,"nb":1,"a":[["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A397945","Paracidovorax citrulli AAC00-1"]]},{"id":"NCBITaxon:398257","l":"Luteimonas composti","na":1,"nb":1,"a":[["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"]],"b":[["NCBITaxon%3A398257","Luteimonas composti"]]},{"id":"NCBITaxon:399599","l":"Shewanella baltica (strain OS195)","na":1,"nb":1,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A399599","Shewanella baltica OS195"]]},{"id":"NCBITaxon:399726","l":"Thermoanaerobacter sp. X514","na":1,"nb":1,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A399726","Thermoanaerobacter sp. X514"]]},{"id":"NCBITaxon:399739","l":"Ectopseudomonas mendocina (strain ymp)","na":1,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["NCBITaxon%3A399739","Ectopseudomonas mendocina ymp"]]},{"id":"NCBITaxon:400091","l":"","na":1,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A400091","Hymenobacter xinjiangensis"]]},{"id":"NCBITaxon:400092","l":"Pontibacter korlensis","na":1,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A400092","Pontibacter korlensis"]]},{"id":"NCBITaxon:400668","l":"Marinomonas sp. MWYL1","na":1,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["NCBITaxon%3A400668","Marinomonas sp. MWYL1"]]},{"id":"NCBITaxon:401976","l":"Pseudonocardia endophytica","na":1,"nb":1,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["NCBITaxon%3A401976","Pseudonocardia endophytica"]]},{"id":"NCBITaxon:404941","l":"Mycobacteroides salmoniphilum","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A404941","Mycobacteroides salmoniphilum"]]},{"id":"NCBITaxon:405436","l":"Micromonospora pattaloongensis","na":1,"nb":1,"a":[["mangrove-swamp-envo-00000057.html","mangrove swamp"]],"b":[["NCBITaxon%3A405436","Micromonospora pattaloongensis"]]},{"id":"NCBITaxon:405440","l":"Xylella fastidiosa M12","na":1,"nb":1,"a":[["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A405440","Xylella fastidiosa M12"]]},{"id":"NCBITaxon:405441","l":"Xylella fastidiosa M23","na":1,"nb":1,"a":[["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A405441","Xylella fastidiosa M23"]]},{"id":"NCBITaxon:40549","l":"Thermoanaerobacterium sp.","na":1,"nb":1,"a":[["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["NCBITaxon%3A40549","Thermoanaerobacterium sp."]]},{"id":"NCBITaxon:405946","l":"Oceanobacillus caeni","na":1,"nb":1,"a":[["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"]],"b":[["NCBITaxon%3A405946","Oceanobacillus caeni"]]},{"id":"NCBITaxon:405955","l":"Escherichia coli O1:K1 / APEC","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A405955","Escherichia coli APEC O1"]]},{"id":"NCBITaxon:406100","l":"","na":1,"nb":1,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A406100","Aquisalimonas asiatica"]]},{"id":"NCBITaxon:406546","l":"Nocardioides sp. CMU5","na":1,"nb":1,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A406546","Nocardioides sp. CMU5"]]},{"id":"NCBITaxon:406547","l":"Rubripirellula obstinata","na":1,"nb":1,"a":[["epibiont-habitatmech-bacdive-f4eb470a03.html","Epibiont"]],"b":[["NCBITaxon%3A406547","Rubripirellula obstinata"]]},{"id":"NCBITaxon:407152","l":"","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A407152","Brucella cytisi"]]},{"id":"NCBITaxon:408180","l":"Mesorhizobium sp. ORS 3324","na":1,"nb":1,"a":[["hair-follicle-outer-root-sheath-bto-0003969.html","hair follicle outer root sheath"]],"b":[["NCBITaxon%3A408180","Mesorhizobium sp. ORS 3324"]]},{"id":"NCBITaxon:408184","l":"Mesorhizobium sp. ORS 3359","na":1,"nb":1,"a":[["hair-follicle-outer-root-sheath-bto-0003969.html","hair follicle outer root sheath"]],"b":[["NCBITaxon%3A408184","Mesorhizobium sp. ORS 3359"]]},{"id":"NCBITaxon:409290","l":"Arthrobacter oryzae","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A409290","Arthrobacter oryzae"]]},{"id":"NCBITaxon:410291","l":"Vibrio campbellii HY01","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A410291","Vibrio campbellii HY01"]]},{"id":"NCBITaxon:41114","l":"Actinobacillus sp.","na":1,"nb":1,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["NCBITaxon%3A41114","Actinobacillus sp."]]},{"id":"NCBITaxon:411489","l":"Clostridium sp. L2-50","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A411489","Clostridium sp. L2-50"]]},{"id":"NCBITaxon:411959","l":"Virgibacillus chiguensis","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A411959","Virgibacillus chiguensis"]]},{"id":"NCBITaxon:412034","l":"Celerinatantimonas diazotrophica","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["NCBITaxon%3A412034","Celerinatantimonas diazotrophica"]]},{"id":"NCBITaxon:412614","l":"Vibrio cholerae 2740-80","na":1,"nb":1,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"]],"b":[["NCBITaxon%3A412614","Vibrio cholerae 2740-80"]]},{"id":"NCBITaxon:41315","l":"Yersinia sp. (in: enterobacteria)","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A41315","Yersinia sp. (in: enterobacteria)"]]},{"id":"NCBITaxon:413949","l":"Eimeria tenella strain Houghton","na":1,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"]],"b":[["NCBITaxon%3A413949","Eimeria tenella strain Houghton"]]},{"id":"NCBITaxon:414052","l":"Caenispirillum bisanense","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A414052","Caenispirillum bisanense"]]},{"id":"NCBITaxon:414684","l":"Rhodospirillum centenum SW","na":1,"nb":1,"a":[["cyst-bto-0000320.html","cyst"]],"b":[["NCBITaxon%3A414684","Rhodospirillum centenum SW"]]},{"id":"NCBITaxon:417203","l":"","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A417203","Mycetohabitans endofungorum"]]},{"id":"NCBITaxon:417397","l":"Vibrio cholerae 623-39","na":1,"nb":1,"a":[["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["NCBITaxon%3A417397","Vibrio cholerae 623-39"]]},{"id":"NCBITaxon:417399","l":"Vibrio cholerae NCTC 8457","na":1,"nb":1,"a":[["anaerobic-sludge-blanket-reactor-envo-00002213.html","anaerobic sludge blanket reactor"]],"b":[["NCBITaxon%3A417399","Vibrio cholerae NCTC 8457"]]},{"id":"NCBITaxon:418643","l":"Brevibacterium marinum","na":1,"nb":1,"a":[["beach-envo-00000091.html","beach"]],"b":[["NCBITaxon%3A418643","Brevibacterium marinum"]]},{"id":"NCBITaxon:419481","l":"Desulfoluna spongiiphila","na":1,"nb":1,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["NCBITaxon%3A419481","Desulfoluna spongiiphila"]]},{"id":"NCBITaxon:419542","l":"Leptospirillum rubarum","na":1,"nb":1,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A419542","Leptospirillum rubarum"]]},{"id":"NCBITaxon:420953","l":"Paraburkholderia megapolitana","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A420953","Paraburkholderia megapolitana"]]},{"id":"NCBITaxon:420955","l":"Sphingobium olei","na":1,"nb":1,"a":[["oil-envo-00002985.html","oil"]],"b":[["NCBITaxon%3A420955","Sphingobium olei"]]},{"id":"NCBITaxon:422289","l":"Beggiatoa sp. PS","na":1,"nb":1,"a":[["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A422289","Beggiatoa sp. PS"]]},{"id":"NCBITaxon:42322","l":"Eubacterium ruminantium","na":1,"nb":1,"a":[["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["NCBITaxon%3A42322","Eubacterium ruminantium"]]},{"id":"NCBITaxon:425006","l":"","na":1,"nb":1,"a":[["marsh-envo-00000035.html","marsh"]],"b":[["NCBITaxon%3A425006","Cohnella yongneupensis"]]},{"id":"NCBITaxon:426118","l":"Saccharolobus islandicus M.16.4","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A426118","Saccharolobus islandicus M.16.4"]]},{"id":"NCBITaxon:426368","l":"Methanococcus maripaludis C7","na":1,"nb":1,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["NCBITaxon%3A426368","Methanococcus maripaludis C7"]]},{"id":"NCBITaxon:427","l":"Methylosinus sp.","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A427","Methylosinus sp."]]},{"id":"NCBITaxon:427317","l":"Saccharolobus islandicus M.14.25","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A427317","Saccharolobus islandicus M.14.25"]]},{"id":"NCBITaxon:427318","l":"Saccharolobus islandicus M.16.27","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A427318","Saccharolobus islandicus M.16.27"]]},{"id":"NCBITaxon:43064","l":"Trichococcus pasteurii","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A43064","Trichococcus pasteurii"]]},{"id":"NCBITaxon:433296","l":"Aminipila butyrica","na":1,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"]],"b":[["NCBITaxon%3A433296","Aminipila butyrica"]]},{"id":"NCBITaxon:433647","l":"Terrimesophilobacter mesophilus","na":1,"nb":1,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A433647","Terrimesophilobacter mesophilus"]]},{"id":"NCBITaxon:435258","l":"Leishmania infantum JPCM5","na":1,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A435258","Leishmania infantum JPCM5"]]},{"id":"NCBITaxon:43666","l":"Paeniglutamicibacter sulfureus","na":1,"nb":1,"a":[["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"]],"b":[["NCBITaxon%3A43666","Paeniglutamicibacter sulfureus"]]},{"id":"NCBITaxon:43774","l":"Syntrophus buswellii","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A43774","Syntrophus buswellii"]]},{"id":"NCBITaxon:43775","l":"Syntrophus gentianae","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A43775","Syntrophus gentianae"]]},{"id":"NCBITaxon:439184","l":"Escherichia coli RS218","na":1,"nb":1,"a":[["microvascular-endothelial-cell-bto-0003123.html","microvascular endothelial cell"]],"b":[["NCBITaxon%3A439184","Escherichia coli RS218"]]},{"id":"NCBITaxon:439235","l":"Desulfatibacillum alkenivorans AK-01","na":1,"nb":1,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["NCBITaxon%3A439235","Desulfatibacillum alkenivorans AK-01"]]},{"id":"NCBITaxon:43928","l":"Halobaculum gomorrense","na":1,"nb":1,"a":[["marine-anoxic-zone-envo-01000066.html","marine anoxic zone"]],"b":[["NCBITaxon%3A43928","Halobaculum gomorrense"]]},{"id":"NCBITaxon:439386","l":"Saccharolobus islandicus Y.G.57.14","na":1,"nb":1,"a":[["geyser-envo-00000050.html","geyser"]],"b":[["NCBITaxon%3A439386","Saccharolobus islandicus Y.G.57.14"]]},{"id":"NCBITaxon:439497","l":"Ruegeria sp. R11","na":1,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["NCBITaxon%3A439497","Ruegeria sp. R11"]]},{"id":"NCBITaxon:439842","l":"Salmonella enterica subsp. enterica serovar Kentucky str. CVM29188","na":1,"nb":1,"a":[["breast-bto-0000149.html","breast"]],"b":[["NCBITaxon%3A439842","Salmonella enterica subsp. enterica serovar Kentucky str. CVM29188"]]},{"id":"NCBITaxon:440","l":"Acetobacter sp.","na":1,"nb":1,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A440","Acetobacter sp."]]},{"id":"NCBITaxon:441153","l":"Burkholderia pseudomallei NCTC 13177","na":1,"nb":1,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A441153","Burkholderia pseudomallei NCTC 13177"]]},{"id":"NCBITaxon:441157","l":"","na":1,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"]],"b":[["NCBITaxon%3A441157","Burkholderia humptydooensis MSMB43"]]},{"id":"NCBITaxon:441161","l":"Burkholderia pseudomallei DM98","na":1,"nb":1,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A441161","Burkholderia pseudomallei DM98"]]},{"id":"NCBITaxon:441772","l":"","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A441772","Clostridium botulinum F str. Langeland"]]},{"id":"NCBITaxon:444158","l":"Methanococcus maripaludis (strain C6 / ATCC BAA-1332)","na":1,"nb":1,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["NCBITaxon%3A444158","Methanococcus maripaludis C6"]]},{"id":"NCBITaxon:444612","l":"Rickettsia endosymbiont of Ixodes scapularis","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A444612","Rickettsia endosymbiont of Ixodes scapularis"]]},{"id":"NCBITaxon:445327","l":"Neorhodopirellula lusitana","na":1,"nb":1,"a":[["epibiont-habitatmech-bacdive-f4eb470a03.html","Epibiont"]],"b":[["NCBITaxon%3A445327","Neorhodopirellula lusitana"]]},{"id":"NCBITaxon:44576","l":"Nitrosomonas halophila","na":1,"nb":1,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"]],"b":[["NCBITaxon%3A44576","Nitrosomonas halophila"]]},{"id":"NCBITaxon:445930","l":"Trueperella abortisuis","na":1,"nb":1,"a":[["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A445930","Trueperella abortisuis"]]},{"id":"NCBITaxon:446787","l":"Actinopolymorpha rutila","na":1,"nb":1,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A446787","Actinopolymorpha rutila"]]},{"id":"NCBITaxon:447082","l":"Flavobacterium sp. S1","na":1,"nb":1,"a":[["city-envo-00000856.html","city"]],"b":[["NCBITaxon%3A447082","Flavobacterium sp. S1"]]},{"id":"NCBITaxon:447217","l":"Anaeromyxobacter sp. K","na":1,"nb":1,"a":[["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A447217","Anaeromyxobacter sp. K"]]},{"id":"NCBITaxon:44737","l":"Capnocytophaga sp.","na":1,"nb":1,"a":[["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A44737","Capnocytophaga sp."]]},{"id":"NCBITaxon:447687","l":"Mesorhizobium sp. CJ1","na":1,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A447687","Mesorhizobium sp. CJ1"]]},{"id":"NCBITaxon:448","l":"Legionella erythra","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A448","Legionella erythra"]]},{"id":"NCBITaxon:449308","l":"Desulfotomaculum sp. DSM 7440","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A449308","Desulfotomaculum sp. DSM 7440"]]},{"id":"NCBITaxon:449312","l":"Desulfotomaculum sp. DSM 8775","na":1,"nb":1,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A449312","Desulfotomaculum sp. DSM 8775"]]},{"id":"NCBITaxon:45056","l":"Legionella adelaidensis","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A45056","Legionella adelaidensis"]]},{"id":"NCBITaxon:45068","l":"Legionella londiniensis","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A45068","Legionella londiniensis"]]},{"id":"NCBITaxon:45071","l":"Legionella parisiensis","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A45071","Legionella parisiensis"]]},{"id":"NCBITaxon:45076","l":"Legionella worsleiensis","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A45076","Legionella worsleiensis"]]},{"id":"NCBITaxon:451","l":"Legionella micdadei","na":1,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A451","Legionella micdadei"]]},{"id":"NCBITaxon:453142","l":"Polaribacter sp. 3-17","na":1,"nb":1,"a":[["fumarole-envo-00000216.html","fumarole"]],"b":[["NCBITaxon%3A453142","Polaribacter sp. 3-17"]]},{"id":"NCBITaxon:454006","l":"Epilithonimonas hungarica","na":1,"nb":1,"a":[["oil-envo-00002985.html","oil"]],"b":[["NCBITaxon%3A454006","Epilithonimonas hungarica"]]},{"id":"NCBITaxon:454148","l":"Roseibacillus persicicus","na":1,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A454148","Roseibacillus persicicus"]]},{"id":"NCBITaxon:454153","l":"Luteolibacter pohnpeiensis","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A454153","Luteolibacter pohnpeiensis"]]},{"id":"NCBITaxon:454165","l":"Salmonella enterica subsp. enterica serovar Schwarzengrund str. SL480","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A454165","Salmonella enterica subsp. enterica serovar Schwarzengrund str. SL480"]]},{"id":"NCBITaxon:45465","l":"Vogesella indigofera","na":1,"nb":1,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"]],"b":[["NCBITaxon%3A45465","Vogesella indigofera"]]},{"id":"NCBITaxon:456320","l":"Methanococcus voltae A3","na":1,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"]],"b":[["NCBITaxon%3A456320","Methanococcus voltae A3"]]},{"id":"NCBITaxon:456482","l":"Haemophilus influenzae HK1212","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A456482","Haemophilus influenzae HK1212"]]},{"id":"NCBITaxon:45670","l":"Salinicoccus roseus","na":1,"nb":1,"a":[["pond-envo-00000033.html","pond"]],"b":[["NCBITaxon%3A45670","Salinicoccus roseus"]]},{"id":"NCBITaxon:457425","l":"Streptomyces albus J1074","na":1,"nb":1,"a":[["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["NCBITaxon%3A457425","Streptomyces albus J1074"]]},{"id":"NCBITaxon:457428","l":"Streptomyces lividans TK24","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A457428","Streptomyces lividans TK24"]]},{"id":"NCBITaxon:458233","l":"Macrococcoides caseolyticum JCSC5402","na":1,"nb":1,"a":[["primordium-bto-0001886.html","primordium"]],"b":[["NCBITaxon%3A458233","Macrococcoides caseolyticum JCSC5402"]]},{"id":"NCBITaxon:459471","l":"Flavobacterium tiangeerense","na":1,"nb":1,"a":[["glacier-envo-00000133.html","glacier"]],"b":[["NCBITaxon%3A459471","Flavobacterium tiangeerense"]]},{"id":"NCBITaxon:459528","l":"Pseudomonas duriflava","na":1,"nb":1,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A459528","Pseudomonas duriflava"]]},{"id":"NCBITaxon:46127","l":"Staphylococcus felis","na":1,"nb":1,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["NCBITaxon%3A46127","Staphylococcus felis"]]},{"id":"NCBITaxon:46170","l":"","na":1,"nb":1,"a":[["spike-bto-0001278.html","spike"]],"b":[["NCBITaxon%3A1280","Staphylococcus aureus"]]},{"id":"NCBITaxon:46223","l":"Thermoflavimicrobium dichotomicum","na":1,"nb":1,"a":[["village-biome-envo-01000246.html","village biome"]],"b":[["NCBITaxon%3A46223","Thermoflavimicrobium dichotomicum"]]},{"id":"NCBITaxon:46224","l":"Heyndrickxia sporothermodurans","na":1,"nb":1,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["NCBITaxon%3A46224","Heyndrickxia sporothermodurans"]]},{"id":"NCBITaxon:463301","l":"Halomonas korlensis","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A463301","Halomonas korlensis"]]},{"id":"NCBITaxon:46353","l":"Agrococcus jenensis","na":1,"nb":1,"a":[["surface-swab-habitatmech-bacdive-6911460a4a.html","Surface-swab"]],"b":[["NCBITaxon%3A46353","Agrococcus jenensis"]]},{"id":"NCBITaxon:463794","l":"Pseudomonas fluorescens BBc6R8","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A463794","Pseudomonas fluorescens BBc6R8"]]},{"id":"NCBITaxon:464","l":"Fluoribacter gormanii","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A464","Fluoribacter gormanii"]]},{"id":"NCBITaxon:469551","l":"Aquamicrobium ahrensii","na":1,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"]],"b":[["NCBITaxon%3A469551","Aquamicrobium ahrensii"]]},{"id":"NCBITaxon:469616","l":"Fusobacterium mortiferum ATCC 9817","na":1,"nb":1,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["NCBITaxon%3A469616","Fusobacterium mortiferum ATCC 9817"]]},{"id":"NCBITaxon:469869","l":"","na":1,"nb":1,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A469869","Virgibacillus arcticus"]]},{"id":"NCBITaxon:471473","l":"Chlamydia trachomatis L2b/UCH-1/proctitis","na":1,"nb":1,"a":[["lymph-node-bto-0000784.html","lymph node"]],"b":[["NCBITaxon%3A471473","Chlamydia trachomatis L2b/UCH-1/proctitis"]]},{"id":"NCBITaxon:471514","l":"","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A471514","Paenalicyclobacillus ferrooxydans"]]},{"id":"NCBITaxon:471575","l":"Photorhabdus cinerea","na":1,"nb":1,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A471575","Photorhabdus cinerea"]]},{"id":"NCBITaxon:471876","l":"Streptococcus pyogenes NZ131","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A471876","Streptococcus pyogenes NZ131"]]},{"id":"NCBITaxon:472","l":"Acinetobacter sp.","na":1,"nb":1,"a":[["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A472","Acinetobacter sp."]]},{"id":"NCBITaxon:472166","l":"","na":1,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A472166","Brevundimonas basaltis"]]},{"id":"NCBITaxon:472181","l":"","na":1,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A472181","Halopseudomonas sabulinigri"]]},{"id":"NCBITaxon:472183","l":"Shewanella basaltis","na":1,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A472183","Shewanella basaltis"]]},{"id":"NCBITaxon:472186","l":"","na":1,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A472186","Vibrio areninigrae"]]},{"id":"NCBITaxon:47254","l":"Leptolyngbya sp.","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A47254","Leptolyngbya sp."]]},{"id":"NCBITaxon:474949","l":"Granulicella aggregans","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A474949","Granulicella aggregans"]]},{"id":"NCBITaxon:474951","l":"","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A474951","Granulicella paludicola"]]},{"id":"NCBITaxon:474953","l":"","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A474953","Telmatobacter bradus"]]},{"id":"NCBITaxon:475299","l":"Algoriphagus aquaeductus","na":1,"nb":1,"a":[["drinking-water-envo-00003064.html","drinking water"]],"b":[["NCBITaxon%3A475299","Algoriphagus aquaeductus"]]},{"id":"NCBITaxon:475609","l":"Escherichia coli chi7122","na":1,"nb":1,"a":[["alveolus-bto-0000060.html","alveolus"]],"b":[["NCBITaxon%3A475609","Escherichia coli chi7122"]]},{"id":"NCBITaxon:476213","l":"Salmonella enterica subsp. enterica serovar Paratyphi C str. RKS4594","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A476213","Salmonella enterica subsp. enterica serovar Paratyphi C str. RKS4594"]]},{"id":"NCBITaxon:478010","l":"Microterricola pindariensis","na":1,"nb":1,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["NCBITaxon%3A478010","Microterricola pindariensis"]]},{"id":"NCBITaxon:478107","l":"Actinoallomurus iriomotensis","na":1,"nb":1,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A478107","Actinoallomurus iriomotensis"]]},{"id":"NCBITaxon:478111","l":"Actinoallomurus luridus","na":1,"nb":1,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A478111","Actinoallomurus luridus"]]},{"id":"NCBITaxon:47846","l":"Brachybacterium conglomeratum","na":1,"nb":1,"a":[["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"]],"b":[["NCBITaxon%3A47846","Brachybacterium conglomeratum"]]},{"id":"NCBITaxon:47988","l":"Actinoplanes auranticolor","na":1,"nb":1,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A47988","Actinoplanes auranticolor"]]},{"id":"NCBITaxon:480035","l":"Nocardia wallacei","na":1,"nb":1,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["NCBITaxon%3A480035","Nocardia wallacei"]]},{"id":"NCBITaxon:484020","l":"Bifidobacterium bifidum BGN4","na":1,"nb":1,"a":[["breast-bto-0000149.html","breast"]],"b":[["NCBITaxon%3A484020","Bifidobacterium bifidum BGN4"]]},{"id":"NCBITaxon:484021","l":"Klebsiella pneumoniae subsp. pneumoniae NTUH-K2044","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A484021","Klebsiella pneumoniae subsp. pneumoniae NTUH-K2044"]]},{"id":"NCBITaxon:48729","l":"Rhabdochromatium marinum","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A48729","Rhabdochromatium marinum"]]},{"id":"NCBITaxon:487514","l":"Mycobacterium kyorinense","na":1,"nb":1,"a":[["lymph-node-bto-0000784.html","lymph node"]],"b":[["NCBITaxon%3A487514","Mycobacterium kyorinense"]]},{"id":"NCBITaxon:488446","l":"Burkholderia latens","na":1,"nb":1,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"]],"b":[["NCBITaxon%3A488446","Burkholderia latens"]]},{"id":"NCBITaxon:488927","l":"Ipomoea phytoplasma","na":1,"nb":1,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A488927","Ipomoea phytoplasma"]]},{"id":"NCBITaxon:488938","l":"Desulfonatronospira delicata","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A488938","Desulfonatronospira delicata"]]},{"id":"NCBITaxon:489632","l":"Ectopseudomonas chengduensis","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A489632","Ectopseudomonas chengduensis"]]},{"id":"NCBITaxon:490098","l":"Methanobacterium flexile","na":1,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A490098","Methanobacterium flexile"]]},{"id":"NCBITaxon:490759","l":"Marinobacter sp. BSs20148","na":1,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A490759","Marinobacter sp. BSs20148"]]},{"id":"NCBITaxon:491207","l":"Chryseobacterium oleae","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A491207","Chryseobacterium oleae"]]},{"id":"NCBITaxon:491916","l":"Rhizobium etli CIAT 652","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A491916","Rhizobium etli CIAT 652"]]},{"id":"NCBITaxon:49252","l":"Eucampia antarctica","na":1,"nb":1,"a":[["saline-water-envo-00002010.html","saline water"]],"b":[["NCBITaxon%3A49252","Eucampia antarctica"]]},{"id":"NCBITaxon:49447","l":"Halochromatium salexigens","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A49447","Halochromatium salexigens"]]},{"id":"NCBITaxon:497963","l":"Streptococcus pneumoniae SP-BS293","na":1,"nb":1,"a":[["archeological-site-envo-00000564.html","archeological site"]],"b":[["NCBITaxon%3A497963","Streptococcus pneumoniae SP-BS293"]]},{"id":"NCBITaxon:498213","l":"Clostridium botulinum B1 str. Okra","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A498213","Clostridium botulinum B1 str. Okra"]]},{"id":"NCBITaxon:498214","l":"","na":1,"nb":1,"a":[["plateau-envo-00000182.html","plateau"]],"b":[["NCBITaxon%3A498214","Clostridium botulinum A3 str. Loch Maree"]]},{"id":"NCBITaxon:499174","l":"Clostridioides difficile QCD-23m63","na":1,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["NCBITaxon%3A499174","Clostridioides difficile QCD-23m63"]]},{"id":"NCBITaxon:500639","l":"Enterobacter cancerogenus ATCC 35316","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A500639","Enterobacter cancerogenus ATCC 35316"]]},{"id":"NCBITaxon:500640","l":"Citrobacter youngae ATCC 29220","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A500640","Citrobacter youngae ATCC 29220"]]},{"id":"NCBITaxon:502915","l":"Pseudomonas sp. AW54a","na":1,"nb":1,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["NCBITaxon%3A502915","Pseudomonas sp. AW54a"]]},{"id":"NCBITaxon:503997","l":"Hydrogenophaga sp. PL2G6","na":1,"nb":1,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A503997","Hydrogenophaga sp. PL2G6"]]},{"id":"NCBITaxon:504000","l":"Thauera sp. E7","na":1,"nb":1,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A504000","Thauera sp. E7"]]},{"id":"NCBITaxon:507522","l":"","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A507522","Klebsiella variicola 342"]]},{"id":"NCBITaxon:507619","l":"Chromobacterium sp. DS-1","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A507619","Chromobacterium sp. DS-1"]]},{"id":"NCBITaxon:507626","l":"Halomonas chromatireducens","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A507626","Halomonas chromatireducens"]]},{"id":"NCBITaxon:508767","l":"Clostridium botulinum E3 str. Alaska E43","na":1,"nb":1,"a":[["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A508767","Clostridium botulinum E3 str. Alaska E43"]]},{"id":"NCBITaxon:511062","l":"Oceanimonas sp. GK1","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A511062","Oceanimonas sp. GK1"]]},{"id":"NCBITaxon:512","l":"Alcaligenes sp","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A512","Alcaligenes sp."]]},{"id":"NCBITaxon:512762","l":"Kineococcus xinjiangensis","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A512762","Kineococcus xinjiangensis"]]},{"id":"NCBITaxon:513051","l":"Burkholderia multivorans CGD1","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A513051","Burkholderia multivorans CGD1"]]},{"id":"NCBITaxon:515393","l":"Pseudomonas yamanorum","na":1,"nb":1,"a":[["subarctic-habitatmech-bacdive-09ded89de7.html","Subarctic"]],"b":[["NCBITaxon%3A515393","Pseudomonas yamanorum"]]},{"id":"NCBITaxon:515415","l":"Microbacterium invictum","na":1,"nb":1,"a":[["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"]],"b":[["NCBITaxon%3A515415","Microbacterium invictum"]]},{"id":"NCBITaxon:515618","l":"Candidatus Riesia pediculicola USDA","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A515618","Candidatus Riesia pediculicola USDA"]]},{"id":"NCBITaxon:519989","l":"Ectothiorhodospira sp. PHS-1","na":1,"nb":1,"a":[["primordium-bto-0001886.html","primordium"]],"b":[["NCBITaxon%3A519989","Ectothiorhodospira sp. PHS-1"]]},{"id":"NCBITaxon:521013","l":"Limimaricola pyoseonensis","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A521013","Limimaricola pyoseonensis"]]},{"id":"NCBITaxon:524884","l":"Saccharopolyspora rosea","na":1,"nb":1,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["NCBITaxon%3A524884","Saccharopolyspora rosea"]]},{"id":"NCBITaxon:526588","l":"Vibrio ostreicida","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A526588","Vibrio ostreicida"]]},{"id":"NCBITaxon:526944","l":"Tetragenococcus osmophilus","na":1,"nb":1,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A526944","Tetragenococcus osmophilus"]]},{"id":"NCBITaxon:526947","l":"Rhizobium etli GR56","na":1,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["NCBITaxon%3A526947","Rhizobium etli GR56"]]},{"id":"NCBITaxon:526968","l":"Bacillus cereus R309803","na":1,"nb":1,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["NCBITaxon%3A526968","Bacillus cereus R309803"]]},{"id":"NCBITaxon:526971","l":"Bacillus cereus MM3","na":1,"nb":1,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A526971","Bacillus cereus MM3"]]},{"id":"NCBITaxon:527028","l":"","na":1,"nb":1,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A527028","Bacillus thuringiensis serovar pulsiensis BGSC 4CC1"]]},{"id":"NCBITaxon:52761","l":"Azospirillum largimobile","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["NCBITaxon%3A52761","Azospirillum largimobile"]]},{"id":"NCBITaxon:52770","l":"Buchananella hordeovulneris","na":1,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"]],"b":[["NCBITaxon%3A52770","Buchananella hordeovulneris"]]},{"id":"NCBITaxon:52771","l":"Actinomyces howellii","na":1,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["NCBITaxon%3A52771","Actinomyces howellii"]]},{"id":"NCBITaxon:52773","l":"Schaalia meyeri","na":1,"nb":1,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["NCBITaxon%3A52773","Schaalia meyeri"]]},{"id":"NCBITaxon:529005","l":"Sphingobium vermicomposti","na":1,"nb":1,"a":[["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"]],"b":[["NCBITaxon%3A529005","Sphingobium vermicomposti"]]},{"id":"NCBITaxon:531814","l":"","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A531814","Gracilibacillus ureilyticus"]]},{"id":"NCBITaxon:531938","l":"Lentzea atacamensis","na":1,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A531938","Lentzea atacamensis"]]},{"id":"NCBITaxon:53356","l":"Terracoccus luteus","na":1,"nb":1,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A53356","Terracoccus luteus"]]},{"id":"NCBITaxon:536044","l":"Methanolobus zinderi","na":1,"nb":1,"a":[["coalbed-water-habitatmech-bacdive-499e641dc2.html","Coalbed-water"]],"b":[["NCBITaxon%3A536044","Methanolobus zinderi"]]},{"id":"NCBITaxon:536230","l":"Burkholderia pseudomallei MSHR346","na":1,"nb":1,"a":[["hospital-envo-00002173.html","hospital"]],"b":[["NCBITaxon%3A536230","Burkholderia pseudomallei MSHR346"]]},{"id":"NCBITaxon:537021","l":"Candidatus Liberibacter asiaticus str. psy62","na":1,"nb":1,"a":[["phloem-bto-0001058.html","phloem"]],"b":[["NCBITaxon%3A537021","Candidatus Liberibacter asiaticus str. psy62"]]},{"id":"NCBITaxon:537288","l":"Megasphaera sp. DJF_B143","na":1,"nb":1,"a":[["hindgut-bto-0000510.html","hindgut"]],"b":[["NCBITaxon%3A537288","Megasphaera sp. DJF_B143"]]},{"id":"NCBITaxon:540251","l":"","na":1,"nb":1,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A540251","Rhodovulum steppense"]]},{"id":"NCBITaxon:54061","l":"Ralstonia sp.","na":1,"nb":1,"a":[["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A54061","Ralstonia sp."]]},{"id":"NCBITaxon:54067","l":"Xylophilus ampelinus","na":1,"nb":1,"a":[["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A54067","Xylophilus ampelinus"]]},{"id":"NCBITaxon:542300","l":"","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A542300","Acidicapsa ligni"]]},{"id":"NCBITaxon:543891","l":"Comamonas testosteroni CNB-1","na":1,"nb":1,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A543891","Comamonas testosteroni CNB-1"]]},{"id":"NCBITaxon:544405","l":"Helicobacter pylori 98-10","na":1,"nb":1,"a":[["duodenum-bto-0000365.html","duodenum"]],"b":[["NCBITaxon%3A544405","Helicobacter pylori 98-10"]]},{"id":"NCBITaxon:544406","l":"Helicobacter pylori B128","na":1,"nb":1,"a":[["duodenum-bto-0000365.html","duodenum"]],"b":[["NCBITaxon%3A544406","Helicobacter pylori B128"]]},{"id":"NCBITaxon:544480","l":"Shinella fusca","na":1,"nb":1,"a":[["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"]],"b":[["NCBITaxon%3A544480","Shinella fusca"]]},{"id":"NCBITaxon:546115","l":"","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A546115","Microbacterium ginsengiterrae"]]},{"id":"NCBITaxon:548474","l":"Staphylococcus aureus subsp. aureus TCH130","na":1,"nb":1,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"]],"b":[["NCBITaxon%3A548474","Staphylococcus aureus subsp. aureus TCH130"]]},{"id":"NCBITaxon:5530","l":"Metarhizium anisopliae","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A5530","Metarhizium anisopliae"]]},{"id":"NCBITaxon:553198","l":"Propionibacterium acidifaciens F0233","na":1,"nb":1,"a":[["central-nervous-system-bto-0000227.html","central nervous system"]],"b":[["NCBITaxon%3A553198","Propionibacterium acidifaciens F0233"]]},{"id":"NCBITaxon:553217","l":"Enhydrobacter aerosaccus SK60","na":1,"nb":1,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A553217","Enhydrobacter aerosaccus SK60"]]},{"id":"NCBITaxon:553480","l":"Photorhabdus asymbiotica subsp. asymbiotica ATCC 43949","na":1,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A553480","Photorhabdus asymbiotica subsp. asymbiotica ATCC 43949"]]},{"id":"NCBITaxon:554290","l":"Salmonella enterica subsp. enterica serovar Paratyphi A str. AKU_12601","na":1,"nb":1,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["NCBITaxon%3A554290","Salmonella enterica subsp. enterica serovar Paratyphi A str. AKU_12601"]]},{"id":"NCBITaxon:555372","l":"","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A555372","Plantactinospora siamensis"]]},{"id":"NCBITaxon:555793","l":"Novosphingobium sp. Rr 2-17","na":1,"nb":1,"a":[["crown-gall-bto-0000303.html","crown gall"]],"b":[["NCBITaxon%3A555793","Novosphingobium sp. Rr 2-17"]]},{"id":"NCBITaxon:556258","l":"Bacteroides sp. D1","na":1,"nb":1,"a":[["bay-envo-00000032.html","bay"]],"b":[["NCBITaxon%3A556258","Bacteroides sp. D1"]]},{"id":"NCBITaxon:558165","l":"Chryseomicrobium amylolyticum","na":1,"nb":1,"a":[["semiarid-habitatmech-bacdive-766cd9f54f.html","Semiarid"]],"b":[["NCBITaxon%3A558165","Chryseomicrobium amylolyticum"]]},{"id":"NCBITaxon:560080","l":"Shewanella corallii","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A560080","Shewanella corallii"]]},{"id":"NCBITaxon:563008","l":"Segatella oris C735","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A563008","Segatella oris C735"]]},{"id":"NCBITaxon:563036","l":"Streptococcus sp. C300","na":1,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["NCBITaxon%3A563036","Streptococcus sp. C300"]]},{"id":"NCBITaxon:563045","l":"Comamonas testosteroni S44","na":1,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"]],"b":[["NCBITaxon%3A563045","Comamonas testosteroni S44"]]},{"id":"NCBITaxon:564421","l":"Pseudomonas fluorescens NZ052","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A564421","Pseudomonas fluorescens NZ052"]]},{"id":"NCBITaxon:564422","l":"","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A564422","Pseudomonas fluorescens NZI7"]]},{"id":"NCBITaxon:565645","l":"Enterococcus faecalis Merz96","na":1,"nb":1,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["NCBITaxon%3A565645","Enterococcus faecalis Merz96"]]},{"id":"NCBITaxon:568099","l":"Litorimonas taeanensis","na":1,"nb":1,"a":[["beach-envo-00000091.html","beach"]],"b":[["NCBITaxon%3A568099","Litorimonas taeanensis"]]},{"id":"NCBITaxon:569857","l":"Staphylococcus microti","na":1,"nb":1,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A569857","Staphylococcus microti"]]},{"id":"NCBITaxon:569860","l":"Methylovirgula ligni","na":1,"nb":1,"a":[["wood-envo-00002040.html","wood"]],"b":[["NCBITaxon%3A569860","Methylovirgula ligni"]]},{"id":"NCBITaxon:57001","l":"Amaricoccus macauensis","na":1,"nb":1,"a":[["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"]],"b":[["NCBITaxon%3A57001","Amaricoccus macauensis"]]},{"id":"NCBITaxon:570936","l":"","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A570936","Pseudonocardia parietis"]]},{"id":"NCBITaxon:571190","l":"Saccharothrix saharensis","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A571190","Saccharothrix saharensis"]]},{"id":"NCBITaxon:571256","l":"Brucella pituitosa","na":1,"nb":1,"a":[["seedling-bto-0001228.html","seedling"]],"b":[["NCBITaxon%3A571256","Brucella pituitosa"]]},{"id":"NCBITaxon:571298","l":"Aliiruegeria lutimaris","na":1,"nb":1,"a":[["sandstone-envo-00002055.html","sandstone"]],"b":[["NCBITaxon%3A571298","Aliiruegeria lutimaris"]]},{"id":"NCBITaxon:573737","l":"Pandoraea oxalativorans","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A573737","Pandoraea oxalativorans"]]},{"id":"NCBITaxon:574375","l":"Bacillus gaemokensis","na":1,"nb":1,"a":[["bl-3-cell-bto-0004404.html","BL-3 cell"]],"b":[["NCBITaxon%3A574375","Bacillus gaemokensis"]]},{"id":"NCBITaxon:574699","l":"Laceyella tengchongensis","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A574699","Laceyella tengchongensis"]]},{"id":"NCBITaxon:575599","l":"Limosilactobacillus fermentum 28-3-CHN","na":1,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["NCBITaxon%3A575599","Limosilactobacillus fermentum 28-3-CHN"]]},{"id":"NCBITaxon:575611","l":"Segatella buccae D17","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A575611","Segatella buccae D17"]]},{"id":"NCBITaxon:575612","l":"Prevotella melaninogenica D18","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A575612","Prevotella melaninogenica D18"]]},{"id":"NCBITaxon:575614","l":"Prevotella sp. oral taxon 299 str. F0039","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A575614","Prevotella sp. oral taxon 299 str. F0039"]]},{"id":"NCBITaxon:576","l":"Klebsiella sp.","na":1,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"]],"b":[["NCBITaxon%3A576","Klebsiella sp."]]},{"id":"NCBITaxon:578460","l":"Vairimorpha ceranae BRL01","na":1,"nb":1,"a":[["microsporidian-bto-0003132.html","microsporidian"]],"b":[["NCBITaxon%3A578460","Vairimorpha ceranae BRL01"]]},{"id":"NCBITaxon:578943","l":"Dongia mobilis","na":1,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A578943","Dongia mobilis"]]},{"id":"NCBITaxon:580050","l":"Bifidobacterium animalis subsp. lactis Bl-04","na":1,"nb":1,"a":[["intestinal-epithelium-bto-0000781.html","intestinal epithelium"]],"b":[["NCBITaxon%3A580050","Bifidobacterium animalis subsp. lactis Bl-04"]]},{"id":"NCBITaxon:582419","l":"Thermococcus paralvinellae","na":1,"nb":1,"a":[["chago-k-1-cell-bto-0003108.html","ChaGo-K-1 cell"]],"b":[["NCBITaxon%3A582419","Thermococcus paralvinellae"]]},{"id":"NCBITaxon:5866","l":"Babesia bigemina","na":1,"nb":1,"a":[["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["NCBITaxon%3A5866","Babesia bigemina"]]},{"id":"NCBITaxon:586733","l":"Staphylococcus devriesei","na":1,"nb":1,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["NCBITaxon%3A586733","Staphylococcus devriesei"]]},{"id":"NCBITaxon:590061","l":"Halomonas sp. KM-1","na":1,"nb":1,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["NCBITaxon%3A590061","Halomonas sp. KM-1"]]},{"id":"NCBITaxon:591023","l":"Actinobacillus minor 202","na":1,"nb":1,"a":[["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["NCBITaxon%3A591023","Actinobacillus minor 202"]]},{"id":"NCBITaxon:591158","l":"Streptomyces sp. AA4","na":1,"nb":1,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["NCBITaxon%3A591158","Streptomyces sp. AA4"]]},{"id":"NCBITaxon:59277","l":"Methanobacterium subterraneum","na":1,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A59277","Methanobacterium subterraneum"]]},{"id":"NCBITaxon:593135","l":"Orbus hercynius","na":1,"nb":1,"a":[["zoological-garden-envo-00010625.html","zoological garden"]],"b":[["NCBITaxon%3A593135","Orbus hercynius"]]},{"id":"NCBITaxon:59406","l":"Aromatoleum evansii","na":1,"nb":1,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A59406","Aromatoleum evansii"]]},{"id":"NCBITaxon:595416","l":"Rhodopirellula sp. CS15","na":1,"nb":1,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A595416","Rhodopirellula sp. CS15"]]},{"id":"NCBITaxon:595537","l":"Variovorax paradoxus EPS","na":1,"nb":1,"a":[["environmental-material-envo-00010483.html","environmental material"]],"b":[["NCBITaxon%3A595537","Variovorax paradoxus EPS"]]},{"id":"NCBITaxon:59561","l":"Trueperella bernardiae","na":1,"nb":1,"a":[["foot-bto-0000476.html","foot"]],"b":[["NCBITaxon%3A59561","Trueperella bernardiae"]]},{"id":"NCBITaxon:596320","l":"Neisseria flavescens SK114","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A596320","Neisseria flavescens SK114"]]},{"id":"NCBITaxon:596322","l":"Streptococcus salivarius SK126","na":1,"nb":1,"a":[["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A596322","Streptococcus salivarius SK126"]]},{"id":"NCBITaxon:596330","l":"Peptoniphilus lacrimalis 315-B","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A596330","Peptoniphilus lacrimalis 315-B"]]},{"id":"NCBITaxon:598553","l":"Clostridium sp. enrichment culture clone 7-25","na":1,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["NCBITaxon%3A598553","Clostridium sp. enrichment culture clone 7-25"]]},{"id":"NCBITaxon:59920","l":"Prochlorococcus marinus str. NATL2A","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A59920","Prochlorococcus marinus str. NATL2A"]]},{"id":"NCBITaxon:604330","l":"Parafannyhessea umbonata","na":1,"nb":1,"a":[["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"]],"b":[["NCBITaxon%3A604330","Parafannyhessea umbonata"]]},{"id":"NCBITaxon:60480","l":"","na":1,"nb":1,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["NCBITaxon%3A60480","Shewanella sp. MR-4"]]},{"id":"NCBITaxon:61169","l":"Alicyclobacillus sp.","na":1,"nb":1,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A61169","Alicyclobacillus sp."]]},{"id":"NCBITaxon:614648","l":"Ureibacillus xyleni","na":1,"nb":1,"a":[["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["NCBITaxon%3A614648","Ureibacillus xyleni"]]},{"id":"NCBITaxon:617000","l":"Desulfonatronovibrio thiodismutans","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A617000","Desulfonatronovibrio thiodismutans"]]},{"id":"NCBITaxon:617001","l":"Desulfonatronum thioautotrophicum","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A617001","Desulfonatronum thioautotrophicum"]]},{"id":"NCBITaxon:619693","l":"Prevotella sp. oral taxon 472 str. F0295","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A619693","Prevotella sp. oral taxon 472 str. F0295"]]},{"id":"NCBITaxon:622617","l":"Burkholderia sp. JS667","na":1,"nb":1,"a":[["waste-treatment-plant-envo-00002272.html","waste treatment plant"]],"b":[["NCBITaxon%3A622617","Burkholderia sp. JS667"]]},{"id":"NCBITaxon:634436","l":"Marisediminitalea aggregata","na":1,"nb":1,"a":[["mangrove-biome-envo-01000181.html","mangrove biome"]],"b":[["NCBITaxon%3A634436","Marisediminitalea aggregata"]]},{"id":"NCBITaxon:634500","l":"Erwinia billingiae Eb661","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A634500","Erwinia billingiae Eb661"]]},{"id":"NCBITaxon:634504","l":"Bartonella grahamii as4aup","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A634504","Bartonella grahamii as4aup"]]},{"id":"NCBITaxon:634956","l":"Parageobacillus thermoglucosidasius C56-YS93","na":1,"nb":1,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A634956","Parageobacillus thermoglucosidasius C56-YS93"]]},{"id":"NCBITaxon:637386","l":"Yersinia pestis Z176003","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A637386","Yersinia pestis Z176003"]]},{"id":"NCBITaxon:637910","l":"Citrobacter rodentium ICC168","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A637910","Citrobacter rodentium ICC168"]]},{"id":"NCBITaxon:640131","l":"Klebsiella variicola At-22","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A640131","Klebsiella variicola At-22"]]},{"id":"NCBITaxon:640938","l":"Trichococcus ilyis","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A640938","Trichococcus ilyis"]]},{"id":"NCBITaxon:641491","l":"Pseudodesulfovibrio mercurii","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A641491","Pseudodesulfovibrio mercurii"]]},{"id":"NCBITaxon:643568","l":"Sphingomonas xinjiangensis","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A643568","Sphingomonas xinjiangensis"]]},{"id":"NCBITaxon:643672","l":"","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A643672","Singulisphaera rosea"]]},{"id":"NCBITaxon:643673","l":"Paenochrobactrum gallinarii","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A643673","Paenochrobactrum gallinarii"]]},{"id":"NCBITaxon:645465","l":"Streptomyces sp. e14","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A645465","Streptomyces sp. e14"]]},{"id":"NCBITaxon:645472","l":"Halomonas sp. HTNK1","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A645472","Halomonas sp. HTNK1"]]},{"id":"NCBITaxon:645887","l":"Alkalibaculum bacchi","na":1,"nb":1,"a":[["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A645887","Alkalibaculum bacchi"]]},{"id":"NCBITaxon:648999","l":"Micromonospora sp. L5","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A648999","Micromonospora sp. L5"]]},{"id":"NCBITaxon:649007","l":"Dactylosporangium luteum","na":1,"nb":1,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A649007","Dactylosporangium luteum"]]},{"id":"NCBITaxon:649008","l":"Dactylosporangium luridum","na":1,"nb":1,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A649008","Dactylosporangium luridum"]]},{"id":"NCBITaxon:649760","l":"Segatella oris F0302","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A649760","Segatella oris F0302"]]},{"id":"NCBITaxon:649761","l":"Prevotella veroralis F0319","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A649761","Prevotella veroralis F0319"]]},{"id":"NCBITaxon:651661","l":"Dyadobacter psychrophilus","na":1,"nb":1,"a":[["contaminated-soil-envo-00002116.html","contaminated soil"]],"b":[["NCBITaxon%3A651661","Dyadobacter psychrophilus"]]},{"id":"NCBITaxon:651822","l":"Fretibacterium fastidiosum","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A651822","Fretibacterium fastidiosum"]]},{"id":"NCBITaxon:652103","l":"Rhodopseudomonas palustris DX-1","na":1,"nb":1,"a":[["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A652103","Rhodopseudomonas palustris DX-1"]]},{"id":"NCBITaxon:652788","l":"Mucilaginibacter frigoritolerans","na":1,"nb":1,"a":[["area-designated-as-a-nature-reserve-envo-00000363.html","area designated as a nature reserve"]],"b":[["NCBITaxon%3A652788","Mucilaginibacter frigoritolerans"]]},{"id":"NCBITaxon:653045","l":"Streptomyces violaceusniger Tu 4113","na":1,"nb":1,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A653045","Streptomyces violaceusniger Tu 4113"]]},{"id":"NCBITaxon:653940","l":"Basfia succiniciproducens","na":1,"nb":1,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"]],"b":[["NCBITaxon%3A653940","Basfia succiniciproducens"]]},{"id":"NCBITaxon:657014","l":"Thalassovita taeanensis","na":1,"nb":1,"a":[["beach-envo-00000091.html","beach"]],"b":[["NCBITaxon%3A657014","Thalassovita taeanensis"]]},{"id":"NCBITaxon:657319","l":"[Eubacterium] siraeum 70/3","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A657319","[Eubacterium] siraeum 70/3"]]},{"id":"NCBITaxon:657321","l":"Ruminococcus bromii L2-63","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A657321","Ruminococcus bromii L2-63"]]},{"id":"NCBITaxon:658172","l":"Candidatus Liberibacter solanacearum CLso-ZC1","na":1,"nb":1,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A658172","Candidatus Liberibacter solanacearum CLso-ZC1"]]},{"id":"NCBITaxon:663321","l":"Candidatus Regiella insecticola LSR1","na":1,"nb":1,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A663321","Candidatus Regiella insecticola LSR1"]]},{"id":"NCBITaxon:663386","l":"","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A663386","Pseudonocardia babensis"]]},{"id":"NCBITaxon:663602","l":"Actinomycetospora corticicola","na":1,"nb":1,"a":[["wood-envo-00002040.html","wood"]],"b":[["NCBITaxon%3A663602","Actinomycetospora corticicola"]]},{"id":"NCBITaxon:663607","l":"Actinomycetospora straminea","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A663607","Actinomycetospora straminea"]]},{"id":"NCBITaxon:663609","l":"Actinomycetospora cinnamomea","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A663609","Actinomycetospora cinnamomea"]]},{"id":"NCBITaxon:663917","l":"Geobacter sulfurreducens KN400","na":1,"nb":1,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A663917","Geobacter sulfurreducens KN400"]]},{"id":"NCBITaxon:665118","l":"Devosia enhydra","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A665118","Devosia enhydra"]]},{"id":"NCBITaxon:665131","l":"Prosthecomicrobium sp. ATCC 27835","na":1,"nb":1,"a":[["factory-envo-01000536.html","factory"]],"b":[["NCBITaxon%3A665131","Prosthecomicrobium sp. ATCC 27835"]]},{"id":"NCBITaxon:665467","l":"Bauldia litoralis","na":1,"nb":1,"a":[["sound-envo-00000393.html","sound"]],"b":[["NCBITaxon%3A665467","Bauldia litoralis"]]},{"id":"NCBITaxon:668820","l":"Burkholderia sp. JPY366","na":1,"nb":1,"a":[["bayou-envo-00000234.html","bayou"]],"b":[["NCBITaxon%3A668820","Burkholderia sp. JPY366"]]},{"id":"NCBITaxon:669365","l":"Microcoleus vaginatus PCC 9802","na":1,"nb":1,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A669365","Microcoleus vaginatus PCC 9802"]]},{"id":"NCBITaxon:670481","l":"Nocardioides sp. SG-4G","na":1,"nb":1,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A670481","Nocardioides sp. SG-4G"]]},{"id":"NCBITaxon:670484","l":"Citrobacter freundii str. ballerup 7851/39","na":1,"nb":1,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["NCBITaxon%3A670484","Citrobacter freundii str. ballerup 7851/39"]]},{"id":"NCBITaxon:670890","l":"Escherichia coli LT-68","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A670890","Escherichia coli LT-68"]]},{"id":"NCBITaxon:670895","l":"Escherichia coli EPEC11","na":1,"nb":1,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["NCBITaxon%3A670895","Escherichia coli EPEC11"]]},{"id":"NCBITaxon:670899","l":"Escherichia coli RN587/1","na":1,"nb":1,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["NCBITaxon%3A670899","Escherichia coli RN587/1"]]},{"id":"NCBITaxon:674977","l":"Vibrio alginolyticus 40B","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A674977","Vibrio alginolyticus 40B"]]},{"id":"NCBITaxon:675518","l":"Mycobacterium tuberculosis SUMu007","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A675518","Mycobacterium tuberculosis SUMu007"]]},{"id":"NCBITaxon:675864","l":"Auraticoccus monumenti","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A675864","Auraticoccus monumenti"]]},{"id":"NCBITaxon:67855","l":"Muribacter muris","na":1,"nb":1,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["NCBITaxon%3A67855","Muribacter muris"]]},{"id":"NCBITaxon:679191","l":"Prevotella amnii CRIS 21A-A","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A679191","Prevotella amnii CRIS 21A-A"]]},{"id":"NCBITaxon:680198","l":"Streptomyces scabiei 87.22","na":1,"nb":1,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A680198","Streptomyces scabiei 87.22"]]},{"id":"NCBITaxon:680375","l":"Desulfonatronum alkalitolerans","na":1,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"]],"b":[["NCBITaxon%3A680375","Desulfonatronum alkalitolerans"]]},{"id":"NCBITaxon:681339","l":"Halothiobacillus sp. HL2","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A681339","Halothiobacillus sp. HL2"]]},{"id":"NCBITaxon:681573","l":"Streptococcus equi subsp. zooepidemicus BHS5","na":1,"nb":1,"a":[["peripheral-blood-mononuclear-cell-bto-0001025.html","peripheral blood mononuclear cell"]],"b":[["NCBITaxon%3A681573","Streptococcus equi subsp. zooepidemicus BHS5"]]},{"id":"NCBITaxon:68170","l":"","na":1,"nb":1,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["NCBITaxon%3A68170","Lentzea aerocolonigenes"]]},{"id":"NCBITaxon:682979","l":"Microlunatus parietis","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A682979","Microlunatus parietis"]]},{"id":"NCBITaxon:68570","l":"","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A1971","Streptomyces noursei"]]},{"id":"NCBITaxon:68766","l":"Fusobacterium sp.","na":1,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["NCBITaxon%3A68766","Fusobacterium sp."]]},{"id":"NCBITaxon:68825","l":"Rasamsonia emersonii","na":1,"nb":1,"a":[["mountain-pass-envo-00000084.html","mountain pass"]],"b":[["NCBITaxon%3A68825","Rasamsonia emersonii"]]},{"id":"NCBITaxon:688867","l":"Ohtaekwangia koreensis","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A688867","Ohtaekwangia koreensis"]]},{"id":"NCBITaxon:688913","l":"Ohtaekwangia kribbensis","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A688913","Ohtaekwangia kribbensis"]]},{"id":"NCBITaxon:69208","l":"Clostridium polyendosporum","na":1,"nb":1,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A69208","Clostridium polyendosporum"]]},{"id":"NCBITaxon:69221","l":"Pectobacterium cacticida","na":1,"nb":1,"a":[["xerophytic-habitatmech-bacdive-3abed720b8.html","Xerophytic"]],"b":[["NCBITaxon%3A69221","Pectobacterium cacticida"]]},{"id":"NCBITaxon:69328","l":"Pseudomonas sp. VLB120","na":1,"nb":1,"a":[["g-cell-bto-0004108.html","G cell"]],"b":[["NCBITaxon%3A69328","Pseudomonas sp. VLB120"]]},{"id":"NCBITaxon:69370","l":"Microbacterium trichothecenolyticum","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A69370","Microbacterium trichothecenolyticum"]]},{"id":"NCBITaxon:69392","l":"Stenotrophomonas sp.","na":1,"nb":1,"a":[["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["NCBITaxon%3A69392","Stenotrophomonas sp."]]},{"id":"NCBITaxon:69485","l":"Actinoplanes garbadinensis","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A69485","Actinoplanes garbadinensis"]]},{"id":"NCBITaxon:695560","l":"Lactobacillus amylovorus GRL 1112","na":1,"nb":1,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["NCBITaxon%3A695560","Lactobacillus amylovorus GRL 1112"]]},{"id":"NCBITaxon:696125","l":"Bartonella clarridgeiae 73","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A696125","Bartonella clarridgeiae 73"]]},{"id":"NCBITaxon:696216","l":"Streptococcus constellatus subsp. pharyngis C232","na":1,"nb":1,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A696216","Streptococcus constellatus subsp. pharyngis C232"]]},{"id":"NCBITaxon:69666","l":"Caulobacter mirabilis","na":1,"nb":1,"a":[["scolex-bto-0002305.html","scolex"]],"b":[["NCBITaxon%3A69666","Caulobacter mirabilis"]]},{"id":"NCBITaxon:69670","l":"Brevundimonas halotolerans","na":1,"nb":1,"a":[["brackish-water-body-envo-01001321.html","brackish water body"]],"b":[["NCBITaxon%3A69670","Brevundimonas halotolerans"]]},{"id":"NCBITaxon:69773","l":"Penicillium glabrum","na":1,"nb":1,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["NCBITaxon%3A69773","Penicillium glabrum"]]},{"id":"NCBITaxon:69960","l":"Rhodospira trueperi","na":1,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"]],"b":[["NCBITaxon%3A69960","Rhodospira trueperi"]]},{"id":"NCBITaxon:700500","l":"Catenisphaera adipataccumulans","na":1,"nb":1,"a":[["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"]],"b":[["NCBITaxon%3A700500","Catenisphaera adipataccumulans"]]},{"id":"NCBITaxon:702452","l":"Listeria seeligeri FSL S4-171","na":1,"nb":1,"a":[["village-biome-envo-01000246.html","village biome"]],"b":[["NCBITaxon%3A702452","Listeria seeligeri FSL S4-171"]]},{"id":"NCBITaxon:702459","l":"Bifidobacterium bifidum PRL2010","na":1,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["NCBITaxon%3A702459","Bifidobacterium bifidum PRL2010"]]},{"id":"NCBITaxon:702568","l":"Litoribacter ruber","na":1,"nb":1,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A702568","Litoribacter ruber"]]},{"id":"NCBITaxon:703577","l":"Dactylosporangium aurantiacum subsp. hamdenensis","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A703577","Dactylosporangium aurantiacum subsp. hamdenensis"]]},{"id":"NCBITaxon:704201","l":"Nesterenkonia sp.","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A704201","Nesterenkonia sp."]]},{"id":"NCBITaxon:70586","l":"Aquabacterium commune","na":1,"nb":1,"a":[["drinking-water-envo-00003064.html","drinking water"]],"b":[["NCBITaxon%3A70586","Aquabacterium commune"]]},{"id":"NCBITaxon:706422","l":"Streptomyces sp. x4(2010)","na":1,"nb":1,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A706422","Streptomyces sp. x4(2010)"]]},{"id":"NCBITaxon:706433","l":"Solobacterium moorei F0204","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A706433","Solobacterium moorei F0204"]]},{"id":"NCBITaxon:708248","l":"Mycoplasma suis KI3806","na":1,"nb":1,"a":[["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["NCBITaxon%3A708248","Mycoplasma suis KI3806"]]},{"id":"NCBITaxon:70856","l":"Aeromonas popoffii","na":1,"nb":1,"a":[["factory-envo-01000536.html","factory"]],"b":[["NCBITaxon%3A70856","Aeromonas popoffii"]]},{"id":"NCBITaxon:710421","l":"Mycolicibacterium chubuense NBB4","na":1,"nb":1,"a":[["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"]],"b":[["NCBITaxon%3A710421","Mycolicibacterium chubuense NBB4"]]},{"id":"NCBITaxon:710687","l":"Mycolicibacterium tusciae JS617","na":1,"nb":1,"a":[["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"]],"b":[["NCBITaxon%3A710687","Mycolicibacterium tusciae JS617"]]},{"id":"NCBITaxon:710992","l":"uncultured Sphingobacterium sp. EB080_L08E11","na":1,"nb":1,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"]],"b":[["NCBITaxon%3A710992","uncultured Sphingobacterium sp. EB080_L08E11"]]},{"id":"NCBITaxon:712898","l":"Pantoea vagans C9-1","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A712898","Pantoea vagans C9-1"]]},{"id":"NCBITaxon:714166","l":"Streptomyces endophyticus","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A714166","Streptomyces endophyticus"]]},{"id":"NCBITaxon:71421","l":"Haemophilus influenzae (strain ATCC 51907 / DSM 11121 / KW20 / Rd)","na":1,"nb":1,"a":[["respiratory-mucosa-bto-0000973.html","respiratory mucosa"]],"b":[["NCBITaxon%3A71421","Haemophilus influenzae Rd KW20"]]},{"id":"NCBITaxon:716659","l":"Collimonas sp. MPS11E8","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A716659","Collimonas sp. MPS11E8"]]},{"id":"NCBITaxon:717522","l":"Mycobacterium tuberculosis variant bovis BCG str. Mexico","na":1,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A717522","Mycobacterium tuberculosis variant bovis BCG str. Mexico"]]},{"id":"NCBITaxon:718254","l":"Enterobacter cloacae subsp. cloacae NCTC 9394","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A718254","Enterobacter cloacae subsp. cloacae NCTC 9394"]]},{"id":"NCBITaxon:720633","l":"Lysinibacillus composti","na":1,"nb":1,"a":[["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"]],"b":[["NCBITaxon%3A720633","Lysinibacillus composti"]]},{"id":"NCBITaxon:722","l":"Actinobacillus seminis","na":1,"nb":1,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"]],"b":[["NCBITaxon%3A722","Actinobacillus seminis"]]},{"id":"NCBITaxon:722413","l":"Bradyrhizobium sp. JS329","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A722413","Bradyrhizobium sp. JS329"]]},{"id":"NCBITaxon:722911","l":"Bifidobacterium longum subsp. longum F8","na":1,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["NCBITaxon%3A722911","Bifidobacterium longum subsp. longum F8"]]},{"id":"NCBITaxon:728004","l":"Glaciimonas immobilis","na":1,"nb":1,"a":[["glacier-envo-00000133.html","glacier"]],"b":[["NCBITaxon%3A728004","Glaciimonas immobilis"]]},{"id":"NCBITaxon:732241","l":"Neomicrococcus lactis","na":1,"nb":1,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["NCBITaxon%3A732241","Neomicrococcus lactis"]]},{"id":"NCBITaxon:735332","l":"Leptothrix ochracea L12","na":1,"nb":1,"a":[["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A735332","Leptothrix ochracea L12"]]},{"id":"NCBITaxon:741093","l":"Escherichia coli Xuzhou21","na":1,"nb":1,"a":[["peripheral-blood-mononuclear-cell-bto-0001025.html","peripheral blood mononuclear cell"]],"b":[["NCBITaxon%3A741093","Escherichia coli Xuzhou21"]]},{"id":"NCBITaxon:742013","l":"Delftia sp. Cs1-4","na":1,"nb":1,"a":[["waterfall-envo-00000040.html","waterfall"]],"b":[["NCBITaxon%3A742013","Delftia sp. Cs1-4"]]},{"id":"NCBITaxon:742741","l":"[Clostridium] symbiosum WAL-14673","na":1,"nb":1,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["NCBITaxon%3A742741","[Clostridium] symbiosum WAL-14673"]]},{"id":"NCBITaxon:743720","l":"Pseudomonas fulva 12-X","na":1,"nb":1,"a":[["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["NCBITaxon%3A743720","Pseudomonas fulva 12-X"]]},{"id":"NCBITaxon:743721","l":"Pseudoxanthomonas suwonensis 11-1","na":1,"nb":1,"a":[["compost-envo-00002170.html","compost"]],"b":[["NCBITaxon%3A743721","Pseudoxanthomonas suwonensis 11-1"]]},{"id":"NCBITaxon:744980","l":"Roseibium sp. TrichSKD4","na":1,"nb":1,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A744980","Roseibium sp. TrichSKD4"]]},{"id":"NCBITaxon:74546","l":"Prochlorococcus marinus str. MIT 9312","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A74546","Prochlorococcus marinus str. MIT 9312"]]},{"id":"NCBITaxon:74547","l":"Prochlorococcus marinus str. MIT 9313","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A74547","Prochlorococcus marinus str. MIT 9313"]]},{"id":"NCBITaxon:748224","l":"Faecalibacterium cf. prausnitzii KLE1255","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A748224","Faecalibacterium cf. prausnitzii KLE1255"]]},{"id":"NCBITaxon:748671","l":"Lactobacillus crispatus ST1","na":1,"nb":1,"a":[["poultry-litter-envo-00002192.html","poultry litter"]],"b":[["NCBITaxon%3A748671","Lactobacillus crispatus ST1"]]},{"id":"NCBITaxon:749414","l":"","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A749414","Streptomyces bingchenggensis BCW-1"]]},{"id":"NCBITaxon:74969","l":"Ferroplasma acidiphilum","na":1,"nb":1,"a":[["factory-envo-01000536.html","factory"]],"b":[["NCBITaxon%3A74969","Ferroplasma acidiphilum"]]},{"id":"NCBITaxon:749927","l":"Amycolatopsis mediterranei U32","na":1,"nb":1,"a":[["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["NCBITaxon%3A749927","Amycolatopsis mediterranei U32"]]},{"id":"NCBITaxon:754088","l":"Escherichia coli STEC_H.I.8","na":1,"nb":1,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["NCBITaxon%3A754088","Escherichia coli STEC_H.I.8"]]},{"id":"NCBITaxon:754476","l":"Methylophaga nitratireducenticrescens","na":1,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A754476","Methylophaga nitratireducenticrescens"]]},{"id":"NCBITaxon:754477","l":"Methylophaga frappieri","na":1,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A754477","Methylophaga frappieri"]]},{"id":"NCBITaxon:754762","l":"Rhizobium leguminosarum bv. trifolii WSM2297","na":1,"nb":1,"a":[["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A754762","Rhizobium leguminosarum bv. trifolii WSM2297"]]},{"id":"NCBITaxon:755731","l":"Clostridium sp. BNL1100","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A755731","Clostridium sp. BNL1100"]]},{"id":"NCBITaxon:757424","l":"Herbaspirillum seropedicae SmR1","na":1,"nb":1,"a":[["environmental-material-envo-00010483.html","environmental material"]],"b":[["NCBITaxon%3A757424","Herbaspirillum seropedicae SmR1"]]},{"id":"NCBITaxon:758793","l":"Caballeronia insecticola","na":1,"nb":1,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["NCBITaxon%3A758793","Caballeronia insecticola"]]},{"id":"NCBITaxon:758831","l":"Escherichia coli ECC-1470","na":1,"nb":1,"a":[["mammary-epithelial-cell-bto-0004300.html","mammary epithelial cell"]],"b":[["NCBITaxon%3A758831","Escherichia coli ECC-1470"]]},{"id":"NCBITaxon:761659","l":"Salinibacter ruber M8","na":1,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["NCBITaxon%3A761659","Salinibacter ruber M8"]]},{"id":"NCBITaxon:763993","l":"Pseudokineococcus lusitanus","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A763993","Pseudokineococcus lusitanus"]]},{"id":"NCBITaxon:765067","l":"Cutibacterium acnes HL053PA2","na":1,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A765067","Cutibacterium acnes HL053PA2"]]},{"id":"NCBITaxon:765109","l":"Cutibacterium modestum HL044PA1","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A765109","Cutibacterium modestum HL044PA1"]]},{"id":"NCBITaxon:765118","l":"Cutibacterium acnes HL007PA1","na":1,"nb":1,"a":[["research-facility-envo-00000469.html","research facility"]],"b":[["NCBITaxon%3A765118","Cutibacterium acnes HL007PA1"]]},{"id":"NCBITaxon:767452","l":"Serinicoccus chungangensis","na":1,"nb":1,"a":[["duodenal-mucosa-bto-0000367.html","duodenal mucosa"]],"b":[["NCBITaxon%3A767452","Serinicoccus chungangensis"]]},{"id":"NCBITaxon:767465","l":"Mycoplasmopsis bovis HB0801","na":1,"nb":1,"a":[["lymph-node-bto-0000784.html","lymph node"]],"b":[["NCBITaxon%3A767465","Mycoplasmopsis bovis HB0801"]]},{"id":"NCBITaxon:76775","l":"Malassezia restricta","na":1,"nb":1,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["NCBITaxon%3A76775","Malassezia restricta"]]},{"id":"NCBITaxon:768534","l":"Sphingobacterium thermophilum","na":1,"nb":1,"a":[["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"]],"b":[["NCBITaxon%3A768534","Sphingobacterium thermophilum"]]},{"id":"NCBITaxon:768535","l":"Acidipila rosea","na":1,"nb":1,"a":[["acid-mine-drainage-envo-00001997.html","acid mine drainage"]],"b":[["NCBITaxon%3A768535","Acidipila rosea"]]},{"id":"NCBITaxon:77152","l":"Moraxella sp. TA144","na":1,"nb":1,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A77152","Moraxella sp. TA144"]]},{"id":"NCBITaxon:77524","l":"Colwellia maris","na":1,"nb":1,"a":[["fumarole-envo-00000216.html","fumarole"]],"b":[["NCBITaxon%3A77524","Colwellia maris"]]},{"id":"NCBITaxon:77917","l":"Fusobacterium naviforme","na":1,"nb":1,"a":[["hospital-envo-00002173.html","hospital"]],"b":[["NCBITaxon%3A77917","Fusobacterium naviforme"]]},{"id":"NCBITaxon:78","l":"Caulobacter sp.","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["NCBITaxon%3A78","Caulobacter sp."]]},{"id":"NCBITaxon:78229","l":"Paracidovorax anthurii","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A78229","Paracidovorax anthurii"]]},{"id":"NCBITaxon:78350","l":"Pelotomaculum schinkii","na":1,"nb":1,"a":[["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["NCBITaxon%3A78350","Pelotomaculum schinkii"]]},{"id":"NCBITaxon:795725","l":"Vibrio sp. VT2(2010)","na":1,"nb":1,"a":[["fumarole-envo-00000216.html","fumarole"]],"b":[["NCBITaxon%3A795725","Vibrio sp. VT2(2010)"]]},{"id":"NCBITaxon:795728","l":"Vibrio sp. VT5(2010)","na":1,"nb":1,"a":[["fumarole-envo-00000216.html","fumarole"]],"b":[["NCBITaxon%3A795728","Vibrio sp. VT5(2010)"]]},{"id":"NCBITaxon:796334","l":"Erwinia oleae","na":1,"nb":1,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A796334","Erwinia oleae"]]},{"id":"NCBITaxon:796891","l":"Rhizobium mesoamericanum STM6155","na":1,"nb":1,"a":[["massif-envo-00000381.html","massif"]],"b":[["NCBITaxon%3A796891","Rhizobium mesoamericanum STM6155"]]},{"id":"NCBITaxon:796937","l":"Peptoanaerobacter stomatis","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A796937","Peptoanaerobacter stomatis"]]},{"id":"NCBITaxon:797292","l":"Sphingobacterium alimentarium","na":1,"nb":1,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["NCBITaxon%3A797292","Sphingobacterium alimentarium"]]},{"id":"NCBITaxon:798300","l":"Streptococcus pyogenes MGAS15252","na":1,"nb":1,"a":[["oropharynx-bto-0005257.html","oropharynx"]],"b":[["NCBITaxon%3A798300","Streptococcus pyogenes MGAS15252"]]},{"id":"NCBITaxon:81569","l":"Ruegeria atlantica","na":1,"nb":1,"a":[["sandstone-envo-00002055.html","sandstone"]],"b":[["NCBITaxon%3A81569","Ruegeria atlantica"]]},{"id":"NCBITaxon:82","l":"Hyphomicrobium sp.","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A82","Hyphomicrobium sp."]]},{"id":"NCBITaxon:83263","l":"Aminobacter aminovorans","na":1,"nb":1,"a":[["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["NCBITaxon%3A83263","Aminobacter aminovorans"]]},{"id":"NCBITaxon:83617","l":"Stenotrophomonas nitritireducens","na":1,"nb":1,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"]],"b":[["NCBITaxon%3A83617","Stenotrophomonas nitritireducens"]]},{"id":"NCBITaxon:83784","l":"Paraburkholderia sartisoli","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A83784","Paraburkholderia sartisoli"]]},{"id":"NCBITaxon:83983","l":"Methanobacterium uliginosum","na":1,"nb":1,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A83983","Methanobacterium uliginosum"]]},{"id":"NCBITaxon:849756","l":"Mongoliitalea lutea","na":1,"nb":1,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A849756","Mongoliitalea lutea"]]},{"id":"NCBITaxon:85401","l":"Mannheimia glucosida","na":1,"nb":1,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"]],"b":[["NCBITaxon%3A85401","Mannheimia glucosida"]]},{"id":"NCBITaxon:859143","l":"Cytobacillus kochii","na":1,"nb":1,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["NCBITaxon%3A859143","Cytobacillus kochii"]]},{"id":"NCBITaxon:85993","l":"Hydrogenophilus hirschii","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A85993","Hydrogenophilus hirschii"]]},{"id":"NCBITaxon:86105","l":"Candidatus Jidaibacter acanthamoebae","na":1,"nb":1,"a":[["cornea-bto-0000286.html","cornea"]],"b":[["NCBITaxon%3A86105","Candidatus Jidaibacter acanthamoebae"]]},{"id":"NCBITaxon:861865","l":"Edaphosphingomonas laterariae","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A861865","Edaphosphingomonas laterariae"]]},{"id":"NCBITaxon:862966","l":"Streptococcus intermedius C270","na":1,"nb":1,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A862966","Streptococcus intermedius C270"]]},{"id":"NCBITaxon:862967","l":"Streptococcus intermedius B196","na":1,"nb":1,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A862967","Streptococcus intermedius B196"]]},{"id":"NCBITaxon:862968","l":"Streptococcus constellatus subsp. pharyngis C818","na":1,"nb":1,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A862968","Streptococcus constellatus subsp. pharyngis C818"]]},{"id":"NCBITaxon:862969","l":"Streptococcus constellatus subsp. pharyngis C1050","na":1,"nb":1,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A862969","Streptococcus constellatus subsp. pharyngis C1050"]]},{"id":"NCBITaxon:862970","l":"Streptococcus anginosus C1051","na":1,"nb":1,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A862970","Streptococcus anginosus C1051"]]},{"id":"NCBITaxon:862971","l":"Streptococcus anginosus C238","na":1,"nb":1,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A862971","Streptococcus anginosus C238"]]},{"id":"NCBITaxon:863522","l":"Bryocella elongata","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A863522","Bryocella elongata"]]},{"id":"NCBITaxon:864732","l":"Acetobacter musti","na":1,"nb":1,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A864732","Acetobacter musti"]]},{"id":"NCBITaxon:865","l":"Pectinatus frisingensis","na":1,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A865","Pectinatus frisingensis"]]},{"id":"NCBITaxon:86667","l":"Jeotgalibacillus marinus","na":1,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"]],"b":[["NCBITaxon%3A86667","Jeotgalibacillus marinus"]]},{"id":"NCBITaxon:86956","l":"Pectinatus cerevisiiphilus","na":1,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A86956","Pectinatus cerevisiiphilus"]]},{"id":"NCBITaxon:86957","l":"","na":1,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"]],"b":[["NCBITaxon%3A86957","Schleiferibacter lacticifex"]]},{"id":"NCBITaxon:86958","l":"Propionispira paucivorans","na":1,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"]],"b":[["NCBITaxon%3A86958","Propionispira paucivorans"]]},{"id":"NCBITaxon:869728","l":"Burkholderia thailandensis E555","na":1,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A869728","Burkholderia thailandensis E555"]]},{"id":"NCBITaxon:873127","l":"Enterococcus faecium E4453","na":1,"nb":1,"a":[["rectum-bto-0001158.html","rectum"]],"b":[["NCBITaxon%3A873127","Enterococcus faecium E4453"]]},{"id":"NCBITaxon:876142","l":"Encephalitozoon intestinalis ATCC 50506","na":1,"nb":1,"a":[["microsporidian-bto-0003132.html","microsporidian"]],"b":[["NCBITaxon%3A876142","Encephalitozoon intestinalis ATCC 50506"]]},{"id":"NCBITaxon:877455","l":"Methanobacterium lacus","na":1,"nb":1,"a":[["fen-envo-00000232.html","fen"]],"b":[["NCBITaxon%3A877455","Methanobacterium lacus"]]},{"id":"NCBITaxon:880157","l":"Xenorhabdus khoisanae","na":1,"nb":1,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A880157","Xenorhabdus khoisanae"]]},{"id":"NCBITaxon:880633","l":"Lactobacillus helveticus R0052","na":1,"nb":1,"a":[["research-facility-envo-00000469.html","research facility"]],"b":[["NCBITaxon%3A880633","Lactobacillus helveticus R0052"]]},{"id":"NCBITaxon:881260","l":"Enterobacter bugandensis","na":1,"nb":1,"a":[["railway-envo-00000065.html","railway"]],"b":[["NCBITaxon%3A881260","Enterobacter bugandensis"]]},{"id":"NCBITaxon:882869","l":"Salmonella enterica subsp. enterica serovar Montevideo str. IA_2010008287","na":1,"nb":1,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["NCBITaxon%3A882869","Salmonella enterica subsp. enterica serovar Montevideo str. IA_2010008287"]]},{"id":"NCBITaxon:883062","l":"Bifidobacterium bifidum S17","na":1,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["NCBITaxon%3A883062","Bifidobacterium bifidum S17"]]},{"id":"NCBITaxon:888845","l":"Minicystis rosea","na":1,"nb":1,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A888845","Minicystis rosea"]]},{"id":"NCBITaxon:889211","l":"Erwinia amylovora ATCC BAA-2158","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A889211","Erwinia amylovora ATCC BAA-2158"]]},{"id":"NCBITaxon:889453","l":"Alkalitalea saponilacus","na":1,"nb":1,"a":[["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A889453","Alkalitalea saponilacus"]]},{"id":"NCBITaxon:889932","l":"Lactiplantibacillus plantarum ST-III","na":1,"nb":1,"a":[["research-facility-envo-00000469.html","research facility"]],"b":[["NCBITaxon%3A889932","Lactiplantibacillus plantarum ST-III"]]},{"id":"NCBITaxon:89067","l":"","na":1,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A89067","Moritella japonica"]]},{"id":"NCBITaxon:90241","l":"Lwoffella lincolnii","na":1,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A90241","Lwoffella lincolnii"]]},{"id":"NCBITaxon:903522","l":"Lacticaseibacillus paracasei TXW","na":1,"nb":1,"a":[["research-facility-envo-00000469.html","research facility"]],"b":[["NCBITaxon%3A903522","Lacticaseibacillus paracasei TXW"]]},{"id":"NCBITaxon:908285","l":"Necropsobacter rosorum","na":1,"nb":1,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A908285","Necropsobacter rosorum"]]},{"id":"NCBITaxon:909613","l":"Actinokineospora spheciospongiae","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A909613","Actinokineospora spheciospongiae"]]},{"id":"NCBITaxon:910312","l":"Porphyromonas asaccharolytica PR426713P-I","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A910312","Porphyromonas asaccharolytica PR426713P-I"]]},{"id":"NCBITaxon:913324","l":"gamma proteobacterium SCGC AAA001-B15","na":1,"nb":1,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A913324","gamma proteobacterium SCGC AAA001-B15"]]},{"id":"NCBITaxon:913327","l":"gamma proteobacterium SCGC AAA007-O20","na":1,"nb":1,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A913327","gamma proteobacterium SCGC AAA007-O20"]]},{"id":"NCBITaxon:913329","l":"SAR324 cluster bacterium SCGC AAA001-C10","na":1,"nb":1,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A913329","SAR324 cluster bacterium SCGC AAA001-C10"]]},{"id":"NCBITaxon:913331","l":"SAR324 cluster bacterium SCGC AAA240-J09","na":1,"nb":1,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A913331","SAR324 cluster bacterium SCGC AAA240-J09"]]},{"id":"NCBITaxon:914127","l":"Vibrio vulnificus MO6-24/O","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A914127","Vibrio vulnificus MO6-24/O"]]},{"id":"NCBITaxon:92743","l":"","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A92743","Streptomyces paromomycinus"]]},{"id":"NCBITaxon:930943","l":"","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A930943","Saccharolobus islandicus HVE10/4"]]},{"id":"NCBITaxon:931202","l":"Candidatus Liberibacter asiaticus str. Ishi-1","na":1,"nb":1,"a":[["phloem-bto-0001058.html","phloem"]],"b":[["NCBITaxon%3A931202","Candidatus Liberibacter asiaticus str. Ishi-1"]]},{"id":"NCBITaxon:931625","l":"Winogradskyella ulvae","na":1,"nb":1,"a":[["epibiont-habitatmech-bacdive-f4eb470a03.html","Epibiont"]],"b":[["NCBITaxon%3A931625","Winogradskyella ulvae"]]},{"id":"NCBITaxon:931627","l":"Mycolicibacterium rhodesiae JS60","na":1,"nb":1,"a":[["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"]],"b":[["NCBITaxon%3A931627","Mycolicibacterium rhodesiae JS60"]]},{"id":"NCBITaxon:93218","l":"Pandoraea apista","na":1,"nb":1,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"]],"b":[["NCBITaxon%3A93218","Pandoraea apista"]]},{"id":"NCBITaxon:93222","l":"Pandoraea sputorum","na":1,"nb":1,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"]],"b":[["NCBITaxon%3A93222","Pandoraea sputorum"]]},{"id":"NCBITaxon:933063","l":"Dichotomicrobium thermohalophilum","na":1,"nb":1,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["NCBITaxon%3A933063","Dichotomicrobium thermohalophilum"]]},{"id":"NCBITaxon:933356","l":"Enterococcus faecium E4452","na":1,"nb":1,"a":[["rectum-bto-0001158.html","rectum"]],"b":[["NCBITaxon%3A933356","Enterococcus faecium E4452"]]},{"id":"NCBITaxon:935293","l":"Yersinia entomophaga","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A935293","Yersinia entomophaga"]]},{"id":"NCBITaxon:935546","l":"Mesorhizobium loti NZP2037","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A935546","Mesorhizobium loti NZP2037"]]},{"id":"NCBITaxon:935548","l":"Mesorhizobium loti R88b","na":1,"nb":1,"a":[["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A935548","Mesorhizobium loti R88b"]]},{"id":"NCBITaxon:935865","l":"Nocardioides sp. J52","na":1,"nb":1,"a":[["agricultural-waste-material-envo-01000371.html","agricultural waste material"]],"b":[["NCBITaxon%3A935865","Nocardioides sp. J52"]]},{"id":"NCBITaxon:936138","l":"Phorcysia thermohydrogeniphila","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A936138","Phorcysia thermohydrogeniphila"]]},{"id":"NCBITaxon:936139","l":"Mesomycoplasma hyorhinis MCLD","na":1,"nb":1,"a":[["melanoma-cell-line-bto-0000849.html","melanoma cell line"]],"b":[["NCBITaxon%3A936139","Mesomycoplasma hyorhinis MCLD"]]},{"id":"NCBITaxon:93684","l":"Roseivivax halotolerans","na":1,"nb":1,"a":[["epibiont-habitatmech-bacdive-f4eb470a03.html","Epibiont"]],"b":[["NCBITaxon%3A93684","Roseivivax halotolerans"]]},{"id":"NCBITaxon:93718","l":"Acetobacterium psammolithicum","na":1,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A93718","Acetobacterium psammolithicum"]]},{"id":"NCBITaxon:937334","l":"Caldicoprobacter faecalis","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A937334","Caldicoprobacter faecalis"]]},{"id":"NCBITaxon:939306","l":"alpha proteobacterium SCGC AAA240-E13","na":1,"nb":1,"a":[["marine-mesopelagic-zone-envo-00000213.html","marine mesopelagic zone"]],"b":[["NCBITaxon%3A939306","alpha proteobacterium SCGC AAA240-E13"]]},{"id":"NCBITaxon:939316","l":"alpha proteobacterium SCGC AAA288-E13","na":1,"nb":1,"a":[["marine-mesopelagic-zone-envo-00000213.html","marine mesopelagic zone"]],"b":[["NCBITaxon%3A939316","alpha proteobacterium SCGC AAA288-E13"]]},{"id":"NCBITaxon:939324","l":"alpha proteobacterium SCGC AAA288-G21","na":1,"nb":1,"a":[["marine-mesopelagic-zone-envo-00000213.html","marine mesopelagic zone"]],"b":[["NCBITaxon%3A939324","alpha proteobacterium SCGC AAA288-G21"]]},{"id":"NCBITaxon:939346","l":"alpha proteobacterium SCGC AAA288-N07","na":1,"nb":1,"a":[["marine-mesopelagic-zone-envo-00000213.html","marine mesopelagic zone"]],"b":[["NCBITaxon%3A939346","alpha proteobacterium SCGC AAA288-N07"]]},{"id":"NCBITaxon:941323","l":"Escherichia coli VR50","na":1,"nb":1,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"]],"b":[["NCBITaxon%3A941323","Escherichia coli VR50"]]},{"id":"NCBITaxon:941907","l":"Allosphingosinicella indica","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A941907","Allosphingosinicella indica"]]},{"id":"NCBITaxon:946336","l":"","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A946336","Acidicapsa borealis"]]},{"id":"NCBITaxon:946678","l":"Flavobacterium araucananum","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A946678","Flavobacterium araucananum"]]},{"id":"NCBITaxon:948106","l":"Paraburkholderia dilworthii","na":1,"nb":1,"a":[["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A948106","Paraburkholderia dilworthii"]]},{"id":"NCBITaxon:94868","l":"Lacrimispora algidixylanolytica","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A94868","Lacrimispora algidixylanolytica"]]},{"id":"NCBITaxon:95160","l":"","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A79909","Actinomadura livida"]]},{"id":"NCBITaxon:957042","l":"","na":1,"nb":1,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A957042","Fuchsiella alkaliacetigena"]]},{"id":"NCBITaxon:96773","l":"Thauera chlorobenzoica","na":1,"nb":1,"a":[["anaerobic-sludge-blanket-reactor-envo-00002213.html","anaerobic sludge blanket reactor"]],"b":[["NCBITaxon%3A96773","Thauera chlorobenzoica"]]},{"id":"NCBITaxon:980254","l":"Roseimaritima ulvae","na":1,"nb":1,"a":[["epibiont-habitatmech-bacdive-f4eb470a03.html","Epibiont"]],"b":[["NCBITaxon%3A980254","Roseimaritima ulvae"]]},{"id":"NCBITaxon:980271","l":"Aporhodopirellula rubra","na":1,"nb":1,"a":[["epibiont-habitatmech-bacdive-f4eb470a03.html","Epibiont"]],"b":[["NCBITaxon%3A980271","Aporhodopirellula rubra"]]},{"id":"NCBITaxon:985076","l":"Burkholderia cenocepacia K56-2Valvano","na":1,"nb":1,"a":[["k-562-cell-bto-0000664.html","K-562 cell"]],"b":[["NCBITaxon%3A985076","Burkholderia cenocepacia K56-2Valvano"]]},{"id":"NCBITaxon:985077","l":"Burkholderia cenocepacia BC7","na":1,"nb":1,"a":[["k-562-cell-bto-0000664.html","K-562 cell"]],"b":[["NCBITaxon%3A985077","Burkholderia cenocepacia BC7"]]},{"id":"NCBITaxon:992013","l":"Helicobacter pylori CPY1124","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A992013","Helicobacter pylori CPY1124"]]},{"id":"NCBITaxon:992014","l":"Helicobacter pylori CPY1313","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A992014","Helicobacter pylori CPY1313"]]},{"id":"NCBITaxon:992016","l":"Helicobacter pylori CPY1962","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A992016","Helicobacter pylori CPY1962"]]},{"id":"NCBITaxon:992017","l":"Helicobacter pylori CPY3281","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A992017","Helicobacter pylori CPY3281"]]},{"id":"NCBITaxon:992018","l":"Helicobacter pylori CPY6081","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A992018","Helicobacter pylori CPY6081"]]},{"id":"NCBITaxon:992019","l":"Helicobacter pylori CPY6261","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A992019","Helicobacter pylori CPY6261"]]},{"id":"NCBITaxon:992020","l":"Helicobacter pylori CPY6271","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A992020","Helicobacter pylori CPY6271"]]},{"id":"NCBITaxon:992022","l":"Helicobacter pylori CPY6311","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A992022","Helicobacter pylori CPY6311"]]},{"id":"NCBITaxon:992023","l":"Helicobacter pylori NQ4216","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A992023","Helicobacter pylori NQ4216"]]},{"id":"NCBITaxon:992024","l":"Helicobacter pylori NQ4200","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A992024","Helicobacter pylori NQ4200"]]},{"id":"NCBITaxon:992025","l":"Helicobacter pylori NQ4228","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A992025","Helicobacter pylori NQ4228"]]},{"id":"NCBITaxon:993414","l":"Naumannella halotolerans","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A993414","Naumannella halotolerans"]]},{"id":"NCBITaxon:993416","l":"Micrococcus cohnii","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A993416","Micrococcus cohnii"]]},{"id":"NCBITaxon:99807","l":"Corynebacterium auriscanis","na":1,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"]],"b":[["NCBITaxon%3A99807","Corynebacterium auriscanis"]]}]} \ No newline at end of file +{"a":"HabitatMech","b":"TaxonMech","base":{"HabitatMech":"https://culturebotai.github.io/HabitatMech/pages/habitats/","TaxonMech":"https://culturebotai.github.io/TaxonMech/pages/taxon.html?id="},"n":6423,"by":{"NCBITaxon":6423},"terms":[{"id":"NCBITaxon:2","l":"Bacteria","na":40,"nb":605695,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["factory-envo-01000536.html","factory"],["adult-bto-0001043.html","adult"]],"b":[["NCBITaxon%3A119160","2,3-D degrading bacterium NHC2"],["NCBITaxon%3A119159","2,3-D degrading bacterium NHG3"],["NCBITaxon%3A103498","2,4-D-degrading bacterium 001"],["NCBITaxon%3A103499","2,4-D-degrading bacterium 007"],["NCBITaxon%3A103492","2,4-D-degrading bacterium 010"],["NCBITaxon%3A103495","2,4-D-degrading bacterium 012"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":40,"nb":4740,"a":[["liquid-water-envo-00002006.html","liquid water"],["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["laboratory-facility-envo-01001406.html","laboratory facility"],["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["biofilm-bto-0002690.html","biofilm"]],"b":[["NCBITaxon%3A475088","Methanosphaerula palustris"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1389955","Escherichia coli ATCC 35150"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A574","Klebsiella pneumoniae subsp. ozaenae"],["NCBITaxon%3A1218098","Klebsiella pneumoniae subsp. ozaenae NBRC 105683"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":36,"nb":3868,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["bay-envo-00000032.html","bay"],["freshwater-biome-envo-00000873.html","freshwater biome"],["liquid-water-envo-00002006.html","liquid water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A196023","Aeromonas hydrophila subsp. hydrophila"],["NCBITaxon%3A380703","Aeromonas hydrophila subsp. hydrophila ATCC 7966"],["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A35703","Citrobacter amalonaticus"],["NCBITaxon%3A163202","Corynebacterium appendicis"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":28,"nb":557,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["liquid-water-envo-00002006.html","liquid water"],["watercourse-envo-00000029.html","watercourse"],["compost-envo-00002170.html","compost"],["hospital-envo-00002173.html","hospital"],["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A2073169","Chromobacterium alticapitis"],["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1454219","Pseudomonas aeruginosa 059A"],["NCBITaxon%3A1421538","Pseudomonas aeruginosa 0812"],["NCBITaxon%3A1421545","Pseudomonas aeruginosa 0822"],["NCBITaxon%3A1421531","Pseudomonas aeruginosa 0C2E"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":27,"nb":168,"a":[["small-river-biome-envo-00000890.html","small river biome"],["factory-envo-01000536.html","factory"],["organic-waste-material-envo-00002873.html","organic waste material"],["leaf-po-0025034.html","leaf"],["milk-uberon-0001913.html","milk"],["rhizosphere-envo-00005801.html","rhizosphere"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A572264","Bacillus cereus 03BB102"],["NCBITaxon%3A451709","Bacillus cereus 03BB108"],["NCBITaxon%3A526967","Bacillus cereus 172560W"],["NCBITaxon%3A363751","Bacillus cereus 31673"],["NCBITaxon%3A526979","Bacillus cereus 95/8201"]]},{"id":"NCBITaxon:1485","l":"Clostridium","na":26,"nb":3036,"a":[["biofilm-envo-00002034.html","biofilm"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["alimentary-canal-bto-0000058.html","alimentary canal"],["colon-bto-0000269.html","colon"]],"b":[["NCBITaxon%3A288965","Acetivibrio clariflavus"],["NCBITaxon%3A720554","Acetivibrio clariflavus DSM 19732"],["NCBITaxon%3A461876","Alkaliphilus oremlandii"],["NCBITaxon%3A259063","Anaerocolumna jejuensis"],["NCBITaxon%3A1121322","Anaerocolumna jejuensis DSM 15929"],["NCBITaxon%3A264463","Anaerosporobacter mobilis"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":25,"nb":118,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-water-body-envo-00001999.html","marine water body"],["sea-water-envo-00002149.html","sea water"],["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["NCBITaxon%3A69966","Macrococcoides caseolyticum"],["NCBITaxon%3A1822","Nocardia vaccinii"],["NCBITaxon%3A1210098","Nocardia vaccinii NBRC 15922"],["NCBITaxon%3A1282","Staphylococcus epidermidis"],["NCBITaxon%3A1235440","Staphylococcus epidermidis 12142587"],["NCBITaxon%3A1000590","Staphylococcus epidermidis 14.1.R1.SE"]]},{"id":"NCBITaxon:1279","l":"Staphylococcus","na":23,"nb":9540,"a":[["adult-bto-0001043.html","adult"],["cecum-bto-0000166.html","cecum"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["head-bto-0000282.html","head"]],"b":[["NCBITaxon%3A196884","Arctic sea ice bacterum ARK9973"],["NCBITaxon%3A91995","bacterium #2 from Psoroptes ovis"],["NCBITaxon%3A2875764","Macrococcus armenti"],["NCBITaxon%3A150056","Mammaliicoccus fleurettii"],["NCBITaxon%3A42858","Mammaliicoccus lentus"],["NCBITaxon%3A246568","marine bacterium 13691"]]},{"id":"NCBITaxon:1301","l":"Streptococcus","na":23,"nb":4599,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["head-bto-0000282.html","head"]],"b":[["NCBITaxon%3A2838763","Candidatus Streptococcus faecavium"],["NCBITaxon%3A3711814","Candidatus Streptococcus gullae"],["NCBITaxon%3A2962908","Candidatus Streptococcus sp. bin.001"],["NCBITaxon%3A33945","Enterococcus avium"],["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A1358","Lactococcus lactis"]]},{"id":"NCBITaxon:1328","l":"Streptococcus anginosus","na":21,"nb":23,"a":[["bone-element-uberon-0001474.html","bone element"],["brain-bto-0000142.html","brain"],["dental-plaque-uberon-0016482.html","dental plaque"],["dorsum-bto-0001713.html","dorsum"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["forearm-bto-0001447.html","forearm"]],"b":[["NCBITaxon%3A1328","Streptococcus anginosus"],["NCBITaxon%3A1163301","Streptococcus anginosus 1505"],["NCBITaxon%3A742820","Streptococcus anginosus 1_2_62CV"],["NCBITaxon%3A862970","Streptococcus anginosus C1051"],["NCBITaxon%3A862971","Streptococcus anginosus C238"],["NCBITaxon%3A1403946","Streptococcus anginosus DORA_7"]]},{"id":"NCBITaxon:1578","l":"Lactobacillus","na":20,"nb":2379,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["blood-bto-0000089.html","blood"],["brain-bto-0000142.html","brain"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["hand-bto-0004668.html","hand"]],"b":[["NCBITaxon%3A2838636","Candidatus Lactobacillus pullistercoris"],["NCBITaxon%3A2838724","Candidatus Paralactobacillus gallistercoris"],["NCBITaxon%3A1612","Companilactobacillus farciminis"],["NCBITaxon%3A3435293","Faecalibacterium langellae"],["NCBITaxon%3A1614","Fructilactobacillus fructivorans"],["NCBITaxon%3A1597","Lacticaseibacillus paracasei"]]},{"id":"NCBITaxon:1386","l":"Bacillus","na":19,"nb":33976,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["crop-bto-0000301.html","crop"],["dorsum-bto-0001713.html","dorsum"],["hand-bto-0004668.html","hand"],["head-bto-0000282.html","head"],["juvenile-bto-0002168.html","juvenile"]],"b":[["NCBITaxon%3A208551","alkaliphilic bacterium AF112"],["NCBITaxon%3A33934","Anoxybacillus flavithermus"],["NCBITaxon%3A1185649","Anoxybacillus flavithermus subsp. flavithermus"],["NCBITaxon%3A28030","Bacillus acidopullulyticus"],["NCBITaxon%3A33017","Bacillus acidovorans"],["NCBITaxon%3A203540","Bacillus aeolius"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":19,"nb":19,"a":[["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["bone-element-uberon-0001474.html","bone element"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["NCBITaxon%3A1402","Bacillus licheniformis"],["NCBITaxon%3A1169411","Bacillus licheniformis 10-1-A"],["NCBITaxon%3A44097","Bacillus licheniformis 2709"],["NCBITaxon%3A1169412","Bacillus licheniformis 5-2-D"],["NCBITaxon%3A1368424","Bacillus licheniformis CG-B52"],["NCBITaxon%3A1232672","Bacillus licheniformis CGMCC 3963"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":18,"nb":79,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["NCBITaxon%3A1931223","Caballeronia sp."],["NCBITaxon%3A89065","Pseudomonas abietaniphila"],["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1123912","Pseudomonas auricularis"],["NCBITaxon%3A930166","Pseudomonas brassicacearum"],["NCBITaxon%3A129817","Pseudomonas brenneri"]]},{"id":"NCBITaxon:1263","l":"Ruminococcus","na":17,"nb":405,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["alimentary-canal-bto-0000058.html","alimentary canal"],["cecum-bto-0000166.html","cecum"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"]],"b":[["NCBITaxon%3A2838748","Candidatus Ruminococcus avistercoris"],["NCBITaxon%3A3083130","Candidatus Ruminococcus equi"],["NCBITaxon%3A2838749","Candidatus Ruminococcus gallistercoris"],["NCBITaxon%3A3401956","Candidatus Ruminococcus hominiciens"],["NCBITaxon%3A2838750","Candidatus Ruminococcus intestinipullorum"],["NCBITaxon%3A3400595","Candidatus Ruminococcus primaciens"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":17,"nb":375,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["hospital-envo-00002173.html","hospital"],["egg-food-product-foodon-00001274.html","egg food product"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A1352","Enterococcus faecium"],["NCBITaxon%3A1391465","Enterococcus faecium 10/96A"],["NCBITaxon%3A1259824","Enterococcus faecium 13.SD.W.09"],["NCBITaxon%3A1429401","Enterococcus faecium 17282"],["NCBITaxon%3A565659","Enterococcus faecium 1,141,733"]]},{"id":"NCBITaxon:135621","l":"Pseudomonadaceae","na":16,"nb":33948,"a":[["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["ileum-bto-0000620.html","ileum"],["intestine-bto-0000648.html","intestine"],["juvenile-bto-0002168.html","juvenile"],["leaf-bto-0000713.html","leaf"]],"b":[["NCBITaxon%3A300685","antibiotic-resistant bacterium RA4"],["NCBITaxon%3A300699","antibiotic-resistant bacterium RD5"],["NCBITaxon%3A300700","antibiotic-resistant bacterium RD6"],["NCBITaxon%3A300701","antibiotic-resistant bacterium RD8"],["NCBITaxon%3A43263","Aquipseudomonas alcaligenes"],["NCBITaxon%3A1405803","Aquipseudomonas alcaligenes MRY13-0052"]]},{"id":"NCBITaxon:186802","l":"Eubacteriales","na":16,"nb":7591,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["alimentary-canal-bto-0000058.html","alimentary canal"],["blood-bto-0000089.html","blood"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"]],"b":[["NCBITaxon%3A1766203","Abyssisolibacter fermentans"],["NCBITaxon%3A2684878","Abyssisolibacter sp."],["NCBITaxon%3A3035615","Abyssisolibacter sp. ZYX002"],["NCBITaxon%3A2912264","Acetanaerobacter sp."],["NCBITaxon%3A258515","Acetanaerobacterium elongatum"],["NCBITaxon%3A1872089","Acetanaerobacterium sp."]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":17,"nb":16,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["fruit-bto-0000486.html","fruit"],["leaf-po-0025034.html","leaf"],["rhizosphere-envo-00005801.html","rhizosphere"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["NCBITaxon%3A114136","Paenibacillus jamilae"],["NCBITaxon%3A225917","Paenibacillus massiliensis"],["NCBITaxon%3A1406","Paenibacillus polymyxa"],["NCBITaxon%3A1333863","Paenibacillus polymyxa 1-43"],["NCBITaxon%3A1414587","Paenibacillus polymyxa A18"],["NCBITaxon%3A1206104","Paenibacillus polymyxa ATCC 12321"]]},{"id":"NCBITaxon:117563","l":"Granulicatella","na":15,"nb":54,"a":[["cecum-bto-0000166.html","cecum"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["head-bto-0000282.html","head"],["intestine-bto-0000648.html","intestine"]],"b":[["NCBITaxon%3A2962907","Candidatus Granulicatella gullae"],["NCBITaxon%3A46124","Granulicatella adiacens"],["NCBITaxon%3A638301","Granulicatella adiacens ATCC 49175"],["NCBITaxon%3A1073361","Granulicatella adiacens CC94D"],["NCBITaxon%3A137733","Granulicatella balaenopterae"],["NCBITaxon%3A137732","Granulicatella elegans"]]},{"id":"NCBITaxon:40324","l":"Stenotrophomonas maltophilia","na":15,"nb":44,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["catheter-device-ncit-c50344.html","Catheter Device"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["seedling-bto-0001228.html","seedling"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["NCBITaxon%3A13689","Sphingomonas paucimobilis"],["NCBITaxon%3A1292134","Stenotrophomonas africana"],["NCBITaxon%3A3384461","Stenotrophomonas beteli"],["NCBITaxon%3A86189","Stenotrophomonas hibiscicola"],["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A1288954","Stenotrophomonas maltophilia 503"]]},{"id":"NCBITaxon:1045010","l":"Escherichia coli O157","na":18,"nb":15,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["liquid-water-envo-00002006.html","liquid water"],["animal-house-envo-00003040.html","animal house"],["river-envo-00000022.html","river"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biofilm-material-envo-01000156.html","biofilm material"]],"b":[["NCBITaxon%3A1051347","Escherichia coli 3.4880"],["NCBITaxon%3A1051348","Escherichia coli 7.1982"],["NCBITaxon%3A1051346","Escherichia coli 95.0083"],["NCBITaxon%3A1051353","Escherichia coli ATCC 700728"],["NCBITaxon%3A1045010","Escherichia coli O157"],["NCBITaxon%3A1446606","Escherichia coli O157: str. 2010EL-2044"]]},{"id":"NCBITaxon:1268","l":"Micrococcaceae","na":14,"nb":10291,"a":[["cecum-bto-0000166.html","cecum"],["crop-bto-0000301.html","crop"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["leaf-bto-0000713.html","leaf"]],"b":[["NCBITaxon%3A291968","Acaricomes phytoseiuli"],["NCBITaxon%3A1120917","Acaricomes phytoseiuli DSM 14247"],["NCBITaxon%3A1872088","Acaricomes sp."],["NCBITaxon%3A1026830","Acaricomes sp. RHF117"],["NCBITaxon%3A196885","Arctic sea ice bacterium ARK9983"],["NCBITaxon%3A37921","Arthrobacter agilis"]]},{"id":"NCBITaxon:13687","l":"Sphingomonas","na":14,"nb":4913,"a":[["crop-bto-0000301.html","crop"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["ileum-bto-0000620.html","ileum"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"]],"b":[["NCBITaxon%3A196160","Arctic sea ice bacterium ARK10016"],["NCBITaxon%3A3121369","Candidatus Sphingomonas colombiensis"],["NCBITaxon%3A2838760","Candidatus Sphingomonas excrementigallinarum"],["NCBITaxon%3A3121370","Candidatus Sphingomonas phytovorans"],["NCBITaxon%3A1996","Microtetraspora glauca"],["NCBITaxon%3A135719","Sphingobium amiense"]]},{"id":"NCBITaxon:171549","l":"Bacteroidales","na":14,"nb":4513,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["alimentary-canal-bto-0000058.html","alimentary canal"],["blood-bto-0000089.html","blood"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"]],"b":[["NCBITaxon%3A979970","Acetobacteroides hydrogenigenes"],["NCBITaxon%3A1872095","Acetobacteroides sp."],["NCBITaxon%3A2764708","Acetobacteroides sp. MIZ14"],["NCBITaxon%3A1653170","Acetofilamentum rigidum"],["NCBITaxon%3A1872096","Acetofilamentum sp."],["NCBITaxon%3A1653171","Acetothermus paucivorans"]]},{"id":"NCBITaxon:173","l":"Leptospira interrogans","na":14,"nb":312,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["small-river-biome-envo-00000890.html","small river biome"],["surface-water-envo-00002042.html","surface water"]],"b":[["NCBITaxon%3A173","Leptospira interrogans"],["NCBITaxon%3A860644","Leptospira interrogans serovar Akiyami"],["NCBITaxon%3A428408","Leptospira interrogans serovar Anhui"],["NCBITaxon%3A211882","Leptospira interrogans serovar Australis"],["NCBITaxon%3A1085541","Leptospira interrogans serovar Australis str. 200703203"],["NCBITaxon%3A1308441","Leptospira interrogans serovar Australis str. LT2080"]]},{"id":"NCBITaxon:1590","l":"Lactiplantibacillus plantarum","na":14,"nb":36,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["food-fermented-foodon-00001258.html","food (fermented)"],["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"],["breast-bto-0000149.html","breast"],["colonic-epithelium-bto-0001709.html","colonic epithelium"],["epithelial-cell-bto-0000414.html","epithelial cell"]],"b":[["NCBITaxon%3A271881","Lactiplantibacillus argentoratensis"],["NCBITaxon%3A1423831","Lactiplantibacillus argentoratensis DSM 16365"],["NCBITaxon%3A60520","Lactiplantibacillus paraplantarum"],["NCBITaxon%3A1590","Lactiplantibacillus plantarum"],["NCBITaxon%3A1327988","Lactiplantibacillus plantarum 16"],["NCBITaxon%3A1399793","Lactiplantibacillus plantarum 19L3"]]},{"id":"NCBITaxon:1598","l":"Limosilactobacillus reuteri","na":14,"nb":23,"a":[["cecum-mucosa-bto-0000213.html","cecum mucosa"],["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["ileum-bto-0000620.html","ileum"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"]],"b":[["NCBITaxon%3A1581","Lentilactobacillus buchneri"],["NCBITaxon%3A2767931","Lentilactobacillus sp."],["NCBITaxon%3A1613","Limosilactobacillus fermentum"],["NCBITaxon%3A1598","Limosilactobacillus reuteri"],["NCBITaxon%3A1273150","Limosilactobacillus reuteri 1063"],["NCBITaxon%3A525341","Limosilactobacillus reuteri CF48-3A"]]},{"id":"NCBITaxon:1580","l":"Levilactobacillus brevis","na":14,"nb":17,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["organic-waste-material-envo-00002873.html","organic waste material"],["research-facility-envo-00000469.html","research facility"],["food-fermented-foodon-00001258.html","food (fermented)"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["caco-2-cell-bto-0000195.html","CACO-2 cell"]],"b":[["NCBITaxon%3A1590","Lactiplantibacillus plantarum"],["NCBITaxon%3A2767846","Lactiplantibacillus sp."],["NCBITaxon%3A1591","Lactobacillus sp."],["NCBITaxon%3A1581","Lentilactobacillus buchneri"],["NCBITaxon%3A1580","Levilactobacillus brevis"],["NCBITaxon%3A1384064","Levilactobacillus brevis AG48"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":14,"nb":16,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["compost-envo-00002170.html","compost"],["organic-waste-material-envo-00002873.html","organic waste material"],["larva-bto-0000707.html","larva"],["rhizosphere-envo-00005801.html","rhizosphere"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A1408","Bacillus pumilus"],["NCBITaxon%3A536229","Bacillus pumilus ATCC 7061"],["NCBITaxon%3A1227811","Bacillus pumilus BA06"],["NCBITaxon%3A1189615","Bacillus pumilus BL8"],["NCBITaxon%3A1350468","Bacillus pumilus CCMA-560"],["NCBITaxon%3A1330463","Bacillus pumilus CIMFR"]]},{"id":"NCBITaxon:1350","l":"Enterococcus","na":13,"nb":4515,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["dorsum-bto-0001713.html","dorsum"],["hand-bto-0004668.html","hand"],["intestine-bto-0000648.html","intestine"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"]],"b":[["NCBITaxon%3A2838561","Candidatus Enterococcus avicola"],["NCBITaxon%3A1834193","Candidatus Enterococcus clewellii"],["NCBITaxon%3A2815329","Candidatus Enterococcus courvalinii"],["NCBITaxon%3A1834192","Candidatus Enterococcus dunnyi"],["NCBITaxon%3A2815324","Candidatus Enterococcus ferrettii"],["NCBITaxon%3A1857217","Candidatus Enterococcus huntleyi"]]},{"id":"NCBITaxon:186803","l":"Lachnospiraceae","na":13,"nb":2553,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["alimentary-canal-bto-0000058.html","alimentary canal"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["ileum-bto-0000620.html","ileum"]],"b":[["NCBITaxon%3A2941233","Acetatifactor aquisgranensis"],["NCBITaxon%3A879566","Acetatifactor muris"],["NCBITaxon%3A1872090","Acetatifactor sp."],["NCBITaxon%3A2908897","Acetatifactor sp. DFI.5.50"],["NCBITaxon%3A2382","Acetitomaculum ruminis"],["NCBITaxon%3A1120918","Acetitomaculum ruminis DSM 5522"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":13,"nb":422,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["neutrophil-bto-0000130.html","neutrophil"],["rectum-bto-0001158.html","rectum"],["spleen-bto-0001281.html","spleen"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["NCBITaxon%3A1653844","Erwinia carnegieana"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A2058152","Klebsiella grimontii"],["NCBITaxon%3A54291","Klebsiella ornithinolytica"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A1443592","Klebsiella pneumoniae 07A044"]]},{"id":"NCBITaxon:1357","l":"Lactococcus","na":13,"nb":383,"a":[["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["ileum-bto-0000620.html","ileum"],["intestine-bto-0000648.html","intestine"],["mouth-bto-0001090.html","mouth"]],"b":[["NCBITaxon%3A2419773","Lactococcus allomyrinae"],["NCBITaxon%3A1359","Lactococcus cremoris"],["NCBITaxon%3A1286879","Lactococcus cremoris HB61"],["NCBITaxon%3A1286880","Lactococcus cremoris HB63"],["NCBITaxon%3A2816960","Lactococcus cremoris subsp. cremoris"],["NCBITaxon%3A1104322","Lactococcus cremoris subsp. cremoris A76"]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":12,"nb":389,"a":[["hospital-envo-00002173.html","hospital"],["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["epithelial-cell-bto-0000414.html","epithelial cell"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["meninx-bto-0000144.html","meninx"]],"b":[["NCBITaxon%3A1503055","Burkholderia territorii"],["NCBITaxon%3A1270","Micrococcus luteus"],["NCBITaxon%3A465515","Micrococcus luteus NCTC 2665"],["NCBITaxon%3A33051","Sphingomonas sanguinis"],["NCBITaxon%3A1219054","Sphingomonas sanguinis NBRC 13937"],["NCBITaxon%3A1313","Streptococcus pneumoniae"]]},{"id":"NCBITaxon:102234","l":"Cyanobacterium","na":12,"nb":127,"a":[["cecum-bto-0000166.html","cecum"],["colon-bto-0000269.html","colon"],["gut-bto-0000545.html","gut"],["head-bto-0000282.html","head"],["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"]],"b":[["NCBITaxon%3A379064","Cyanobacterium aponinum"],["NCBITaxon%3A2676140","Cyanobacterium aponinum 0216"],["NCBITaxon%3A2862632","Cyanobacterium aponinum 0TAC 3"],["NCBITaxon%3A2862635","Cyanobacterium aponinum 0TAC 8"],["NCBITaxon%3A2867950","Cyanobacterium aponinum 11TAC23"],["NCBITaxon%3A3090662","Cyanobacterium aponinum AL20115"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":33,"nb":12,"a":[["biofilm-envo-00002034.html","biofilm"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["pond-water-envo-00002228.html","pond water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["water-body-envo-00000063.html","water body"]],"b":[["NCBITaxon%3A72000","Kocuria rhizophila"],["NCBITaxon%3A378753","Kocuria rhizophila DC2201"],["NCBITaxon%3A1272","Kocuria varians"],["NCBITaxon%3A1270","Micrococcus luteus"],["NCBITaxon%3A1357403","Micrococcus luteus CD1_FAA_NB_1"],["NCBITaxon%3A935864","Micrococcus luteus J28"]]},{"id":"NCBITaxon:1596","l":"Lactobacillus gasseri","na":12,"nb":29,"a":[["biofilm-envo-00002034.html","biofilm"],["catheter-device-ncit-c50344.html","Catheter Device"],["city-envo-00000856.html","city"],["egg-food-product-foodon-00001274.html","egg food product"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"]],"b":[["NCBITaxon%3A305793","Companilactobacillus nantensis"],["NCBITaxon%3A1596","Lactobacillus gasseri"],["NCBITaxon%3A440498","Lactobacillus gasseri 1151"],["NCBITaxon%3A1403312","Lactobacillus gasseri 130918"],["NCBITaxon%3A1346615","Lactobacillus gasseri 2016"],["NCBITaxon%3A630527","Lactobacillus gasseri 202-4"]]},{"id":"NCBITaxon:1117","l":"Cyanobacteriota","na":11,"nb":36120,"a":[["cecum-bto-0000166.html","cecum"],["colon-bto-0000269.html","colon"],["gut-bto-0000545.html","gut"],["head-bto-0000282.html","head"],["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"]],"b":[["NCBITaxon%3A3106961","Acaryochloridaceae cyanobacterium"],["NCBITaxon%3A2720417","Acaryochloridaceae cyanobacterium CSU_3_4"],["NCBITaxon%3A2720418","Acaryochloridaceae cyanobacterium CSU_5_19"],["NCBITaxon%3A2964578","Acaryochloridaceae cyanobacterium OTE_25_metabat_464"],["NCBITaxon%3A2964579","Acaryochloridaceae cyanobacterium OTE_75_metabat_521"],["NCBITaxon%3A2720424","Acaryochloridaceae cyanobacterium RL_2_7"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":11,"nb":124,"a":[["pond-water-envo-00002228.html","pond water"],["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["laboratory-facility-envo-01001406.html","laboratory facility"],["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["bone-element-uberon-0001474.html","bone element"],["juvenile-bto-0002168.html","juvenile"]],"b":[["NCBITaxon%3A1748","Acidipropionibacterium acidipropionici"],["NCBITaxon%3A1171373","Acidipropionibacterium acidipropionici ATCC 4875"],["NCBITaxon%3A1750","Arachnia propionica"],["NCBITaxon%3A38288","Corynebacterium genitalium"],["NCBITaxon%3A585529","Corynebacterium genitalium ATCC 33030"],["NCBITaxon%3A1747","Cutibacterium acnes"]]},{"id":"NCBITaxon:1380","l":"Atopobium","na":11,"nb":61,"a":[["alimentary-canal-bto-0000058.html","alimentary canal"],["dorsum-bto-0001713.html","dorsum"],["intestine-bto-0000648.html","intestine"],["mouth-bto-0001090.html","mouth"],["rumen-uberon-0007365.html","rumen"],["saliva-bto-0001202.html","saliva"]],"b":[["NCBITaxon%3A1393034","Atopobium deltae"],["NCBITaxon%3A39487","Atopobium fossor"],["NCBITaxon%3A1121023","Atopobium fossor DSM 15642"],["NCBITaxon%3A2094145","Atopobium massiliense"],["NCBITaxon%3A1381","Atopobium minutum"],["NCBITaxon%3A997872","Atopobium minutum 10063974"]]},{"id":"NCBITaxon:1378","l":"Gemella","na":11,"nb":60,"a":[["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["intestine-bto-0000648.html","intestine"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"]],"b":[["NCBITaxon%3A84136","Gemella bergeri"],["NCBITaxon%3A1321820","Gemella bergeri ATCC 700627"],["NCBITaxon%3A150240","Gemella cuniculi"],["NCBITaxon%3A1121914","Gemella cuniculi DSM 15828"],["NCBITaxon%3A1379","Gemella haemolysans"],["NCBITaxon%3A546270","Gemella haemolysans ATCC 10379"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":11,"nb":53,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["resting-cell-bto-0001170.html","resting cell"],["seedling-bto-0001228.html","seedling"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A47920","Acidovorax delafieldii"],["NCBITaxon%3A301","Ectopseudomonas oleovorans"],["NCBITaxon%3A29581","Janthinobacterium lividum"],["NCBITaxon%3A294","Pseudomonas fluorescens"],["NCBITaxon%3A77298","Pseudomonas jessenii"],["NCBITaxon%3A1968891","Pseudomonas jessenii subsp. pseudoputida"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":11,"nb":32,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["fermentation-starter-envo-03600040.html","fermentation starter"],["fruit-bto-0000486.html","fruit"],["mammary-epithelial-cell-bto-0004300.html","mammary epithelial cell"],["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["NCBITaxon%3A1359","Lactococcus cremoris"],["NCBITaxon%3A2816960","Lactococcus cremoris subsp. cremoris"],["NCBITaxon%3A1348655","Lactococcus cremoris subsp. cremoris NBRC 100676"],["NCBITaxon%3A1363","Lactococcus garvieae"],["NCBITaxon%3A1358","Lactococcus lactis"],["NCBITaxon%3A2731284","Lactococcus lactis (ex Latorre-Guzman et al. 1977) Schleifer et al. 1986"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":16,"nb":11,"a":[["fresh-water-envo-00002011.html","fresh water"],["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"]],"b":[["NCBITaxon%3A1063","Cereibacter sphaeroides"],["NCBITaxon%3A272943","Cereibacter sphaeroides 2.4.1"],["NCBITaxon%3A349102","Cereibacter sphaeroides ATCC 17025"],["NCBITaxon%3A349101","Cereibacter sphaeroides ATCC 17029"],["NCBITaxon%3A39723","Cereibacter sphaeroides f. sp. denitrificans"],["NCBITaxon%3A633146","Cereibacter sphaeroides GA"]]},{"id":"NCBITaxon:119852","l":"Oscillospira","na":12,"nb":11,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["cecum-bto-0000166.html","cecum"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["ileum-bto-0000620.html","ileum"]],"b":[["NCBITaxon%3A431589","cf. Oscillospira sp. BA04013493"],["NCBITaxon%3A119853","Oscillospira guilliermondii"],["NCBITaxon%3A227395","Oscillospira sp. A"],["NCBITaxon%3A227394","Oscillospira sp. B"],["NCBITaxon%3A227393","Oscillospira sp. C"],["NCBITaxon%3A227392","Oscillospira sp. D"]]},{"id":"NCBITaxon:543","l":"Enterobacteriaceae","na":10,"nb":33950,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"],["midgut-bto-0000863.html","midgut"]],"b":[["NCBITaxon%3A240150","alkaliphilic bacterium N10"],["NCBITaxon%3A3049091","Apirhabdus apintestini"],["NCBITaxon%3A64559","[Aquamonas] haywardensis"],["NCBITaxon%3A58338","Aranicola proteolyticus"],["NCBITaxon%3A1150713","Aranicola sp. 9AL34"],["NCBITaxon%3A707055","Aranicola sp. Cf3F"]]},{"id":"NCBITaxon:286","l":"Pseudomonas","na":10,"nb":33485,"a":[["heart-bto-0000562.html","heart"],["juvenile-bto-0002168.html","juvenile"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"],["pseudostem-bto-0005992.html","pseudostem"]],"b":[["NCBITaxon%3A196824","Arctic sea ice associated bacterium ARK10142"],["NCBITaxon%3A196823","Arctic sea ice bacterium ARK10061"],["NCBITaxon%3A196825","Arctic sea ice bacterium ARK9971"],["NCBITaxon%3A196826","Arctic sea ice bacterium ARK9995"],["NCBITaxon%3A215583","bacterium G5"],["NCBITaxon%3A1871086","Brevundimonas sp."]]},{"id":"NCBITaxon:1716","l":"Corynebacterium","na":10,"nb":1413,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["ileum-bto-0000620.html","ileum"],["juvenile-bto-0002168.html","juvenile"],["mucosa-bto-0000886.html","mucosa"],["nectar-bto-0000537.html","nectar"]],"b":[["NCBITaxon%3A41986","Agromyces mediolanus"],["NCBITaxon%3A1667","Arthrobacter sp."],["NCBITaxon%3A92706","[Brevibacterium] flavum"],["NCBITaxon%3A1232385","[Brevibacterium] flavum ZL-1"],["NCBITaxon%3A2838527","Candidatus Corynebacterium avicola"],["NCBITaxon%3A2838528","Candidatus Corynebacterium faecigallinarum"]]},{"id":"NCBITaxon:29","l":"Myxococcales","na":10,"nb":725,"a":[["column-bto-0005692.html","column"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["oil-secretion-bto-0005373.html","oil secretion"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["co-culture-habitatmech-bacdive-ff945d8a69.html","Co-culture"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"]],"b":[["NCBITaxon%3A1450165","Aggregicoccus edonensis"],["NCBITaxon%3A1872414","Aggregicoccus sp."],["NCBITaxon%3A2583808","Aggregicoccus sp. 17bor-14"],["NCBITaxon%3A2995309","Allostigmatella ashevillensis"],["NCBITaxon%3A41","Allostigmatella aurantiaca"],["NCBITaxon%3A378806","Allostigmatella aurantiaca DW4/3-1"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":10,"nb":216,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"]],"b":[["NCBITaxon%3A863522","Bryocella elongata"],["NCBITaxon%3A195","Campylobacter coli"],["NCBITaxon%3A197","Campylobacter jejuni"],["NCBITaxon%3A1365653","Campylobacter jejuni 10186"],["NCBITaxon%3A1365189","Campylobacter jejuni 10187"],["NCBITaxon%3A1327986","Campylobacter jejuni 10227"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":10,"nb":82,"a":[["anther-bto-0000079.html","anther"],["epithelial-cell-bto-0000414.html","epithelial cell"],["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["NCBITaxon%3A1390","Bacillus amyloliquefaciens"],["NCBITaxon%3A1452","Bacillus atrophaeus"],["NCBITaxon%3A640707","Bacillus atrophaeus ATCC 9372"],["NCBITaxon%3A483913","Bacillus inaquosorum"],["NCBITaxon%3A1236548","Bacillus inaquosorum KCTC 13429"],["NCBITaxon%3A1402","Bacillus licheniformis"]]},{"id":"NCBITaxon:47715","l":"Lacticaseibacillus rhamnosus","na":10,"nb":38,"a":[["hospital-envo-00002173.html","hospital"],["fermentation-starter-envo-03600040.html","fermentation starter"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["NCBITaxon%3A1597","Lacticaseibacillus paracasei"],["NCBITaxon%3A47715","Lacticaseibacillus rhamnosus"],["NCBITaxon%3A1381116","Lacticaseibacillus rhamnosus 2166"],["NCBITaxon%3A1408180","Lacticaseibacillus rhamnosus 51B"],["NCBITaxon%3A1002365","Lacticaseibacillus rhamnosus ATCC 21052"],["NCBITaxon%3A1088720","Lacticaseibacillus rhamnosus ATCC 8530"]]},{"id":"NCBITaxon:118747","l":"Bulleidia","na":10,"nb":12,"a":[["cecum-bto-0000166.html","cecum"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["intestine-bto-0000648.html","intestine"],["mouth-bto-0001090.html","mouth"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A118748","Bulleidia extructa"],["NCBITaxon%3A679192","Bulleidia extructa W1219"],["NCBITaxon%3A2704657","Bulleidia sp."],["NCBITaxon%3A3241172","Bulleidia sp. 10714-15"],["NCBITaxon%3A3438914","Bulleidia sp. HCP3S3_C9"],["NCBITaxon%3A3438915","Bulleidia sp. HCP3S3_F2"]]},{"id":"NCBITaxon:1397","l":"Niallia circulans","na":12,"nb":10,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["organic-waste-material-envo-00002873.html","organic waste material"],["rhizosphere-envo-00005801.html","rhizosphere"],["cultivated-environment-envo-01000311.html","cultivated environment"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A1393","Brevibacillus brevis"],["NCBITaxon%3A1397","Niallia circulans"],["NCBITaxon%3A1348626","Niallia circulans NBRC 13626"],["NCBITaxon%3A44160","Niallia circulans subsp. alkalophilus"],["NCBITaxon%3A74308","Niallia circulans subsp. circulans"],["NCBITaxon%3A59846","Paenibacillus chibensis"]]},{"id":"NCBITaxon:34085","l":"Riemerella anatipestifer","na":10,"nb":10,"a":[["bay-envo-00000032.html","bay"],["eutrophic-water-envo-00002224.html","eutrophic water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["saline-water-envo-00002010.html","saline water"],["mud-envo-01000001.html","mud"]],"b":[["NCBITaxon%3A34085","Riemerella anatipestifer"],["NCBITaxon%3A693978","Riemerella anatipestifer ATCC 11845 = DSM 15868"],["NCBITaxon%3A1354240","Riemerella anatipestifer CH3"],["NCBITaxon%3A1380769","Riemerella anatipestifer KC104"],["NCBITaxon%3A1228997","Riemerella anatipestifer RA-CH-1"],["NCBITaxon%3A1271752","Riemerella anatipestifer RA-CH-2"]]},{"id":"NCBITaxon:1300","l":"Streptococcaceae","na":9,"nb":5054,"a":[["cecum-bto-0000166.html","cecum"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"],["sgs-cell-bto-0001210.html","SGS cell"]],"b":[["NCBITaxon%3A2838763","Candidatus Streptococcus faecavium"],["NCBITaxon%3A3711814","Candidatus Streptococcus gullae"],["NCBITaxon%3A2962908","Candidatus Streptococcus sp. bin.001"],["NCBITaxon%3A1859475","Floricoccus penangensis"],["NCBITaxon%3A2047721","Floricoccus sp."],["NCBITaxon%3A1859473","Floricoccus tropicus"]]},{"id":"NCBITaxon:1314","l":"Streptococcus pyogenes","na":9,"nb":839,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"],["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"],["epithelial-cell-bto-0000414.html","epithelial cell"],["nasopharynx-bto-0000662.html","nasopharynx"],["skin-of-body-uberon-0002097.html","skin of body"],["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A45634","Streptococcus cristatus"],["NCBITaxon%3A1314","Streptococcus pyogenes"],["NCBITaxon%3A1050217","Streptococcus pyogenes 005-D5"],["NCBITaxon%3A1210041","Streptococcus pyogenes 06BA18369"],["NCBITaxon%3A1235829","Streptococcus pyogenes A20"],["NCBITaxon%3A562016","Streptococcus pyogenes AA216"]]},{"id":"NCBITaxon:1639","l":"Listeria monocytogenes","na":9,"nb":478,"a":[["liquid-water-envo-00002006.html","liquid water"],["brain-bto-0000142.html","brain"],["central-nervous-system-bto-0000227.html","central nervous system"],["fruit-bto-0000486.html","fruit"],["placenta-bto-0001078.html","placenta"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["NCBITaxon%3A1639","Listeria monocytogenes"],["NCBITaxon%3A1126011","Listeria monocytogenes 07PF0776"],["NCBITaxon%3A653938","Listeria monocytogenes 08-5578"],["NCBITaxon%3A637381","Listeria monocytogenes 08-5923"],["NCBITaxon%3A393133","Listeria monocytogenes 10403S"],["NCBITaxon%3A1380708","Listeria monocytogenes 36-25-1"]]},{"id":"NCBITaxon:1016","l":"Capnocytophaga","na":9,"nb":249,"a":[["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["gut-bto-0000545.html","gut"],["hand-bto-0004668.html","hand"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"]],"b":[["NCBITaxon%3A2819369","Capnocytophaga bilenii"],["NCBITaxon%3A28188","Capnocytophaga canimorsus"],["NCBITaxon%3A860228","Capnocytophaga canimorsus Cc5"],["NCBITaxon%3A1848903","Capnocytophaga canis"],["NCBITaxon%3A1004260","Capnocytophaga catalasegens"],["NCBITaxon%3A28189","Capnocytophaga cynodegmi"]]},{"id":"NCBITaxon:727","l":"Haemophilus influenzae","na":9,"nb":43,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["head-bto-0000282.html","head"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["NCBITaxon%3A727","Haemophilus influenzae"],["NCBITaxon%3A862964","Haemophilus influenzae 10810"],["NCBITaxon%3A1232659","Haemophilus influenzae 2019"],["NCBITaxon%3A374927","Haemophilus influenzae 22.1-21"],["NCBITaxon%3A520729","Haemophilus influenzae 22.1-24"],["NCBITaxon%3A375063","Haemophilus influenzae 22.4-21"]]},{"id":"NCBITaxon:1265","l":"Ruminococcus flavefaciens","na":29,"nb":9,"a":[["biofilm-envo-00002034.html","biofilm"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A1265","Ruminococcus flavefaciens"],["NCBITaxon%3A1341157","Ruminococcus flavefaciens 007c"],["NCBITaxon%3A1030842","Ruminococcus flavefaciens 17"],["NCBITaxon%3A1384066","Ruminococcus flavefaciens AE3010"],["NCBITaxon%3A1336236","Ruminococcus flavefaciens ATCC 19208"],["NCBITaxon%3A1313302","Ruminococcus flavefaciens B34b"]]},{"id":"NCBITaxon:1264","l":"Hominimerdicola alba","na":13,"nb":9,"a":[["biofilm-envo-00002034.html","biofilm"],["stream-envo-00000023.html","stream"],["animal-house-envo-00003040.html","animal house"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biome-envo-00000428.html","biome"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"]],"b":[["NCBITaxon%3A1264","Hominimerdicola alba"],["NCBITaxon%3A697329","Hominimerdicola alba 7 = DSM 20455"],["NCBITaxon%3A246199","Hominimerdicola alba 8"],["NCBITaxon%3A1384065","Hominimerdicola alba AD2013"],["NCBITaxon%3A1341156","Hominimerdicola alba SY3"],["NCBITaxon%3A1339594","Hominimerdicola alba TSDC17.2-1.1"]]},{"id":"NCBITaxon:31979","l":"Clostridiaceae","na":8,"nb":3495,"a":[["adult-bto-0001043.html","adult"],["alimentary-canal-bto-0000058.html","alimentary canal"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"]],"b":[["NCBITaxon%3A1766203","Abyssisolibacter fermentans"],["NCBITaxon%3A2684878","Abyssisolibacter sp."],["NCBITaxon%3A3035615","Abyssisolibacter sp. ZYX002"],["NCBITaxon%3A3036945","Anaerococcoides asporogena"],["NCBITaxon%3A3713578","Anaerococcoides sp."],["NCBITaxon%3A2498136","Anaerophilus nitritigenes"]]},{"id":"NCBITaxon:210","l":"Helicobacter pylori","na":8,"nb":631,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["hospital-envo-00002173.html","hospital"],["duodenum-bto-0000365.html","duodenum"],["gastric-juice-bto-0000501.html","gastric juice"],["gastric-mucosa-bto-0001308.html","gastric mucosa"],["gastric-ulcer-bto-0002990.html","gastric ulcer"]],"b":[["NCBITaxon%3A210","Helicobacter pylori"],["NCBITaxon%3A1028810","Helicobacter pylori 10700"],["NCBITaxon%3A585532","Helicobacter pylori 118"],["NCBITaxon%3A102610","Helicobacter pylori #12"],["NCBITaxon%3A585533","Helicobacter pylori 120"],["NCBITaxon%3A103187","Helicobacter pylori 15818"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":8,"nb":391,"a":[["reservoir-envo-00000025.html","reservoir"],["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["secretion-bto-0002979.html","secretion"],["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A1260363","Enterococcus faecalis 02-MB-BW-10"],["NCBITaxon%3A1260365","Enterococcus faecalis 02-MB-P-10"],["NCBITaxon%3A1260358","Enterococcus faecalis 06-MB-DW-09"],["NCBITaxon%3A1260359","Enterococcus faecalis 06-MB-S-04"],["NCBITaxon%3A1260360","Enterococcus faecalis 06-MB-S-10"]]},{"id":"NCBITaxon:171550","l":"Rikenellaceae","na":8,"nb":241,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["ileum-bto-0000620.html","ileum"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"]],"b":[["NCBITaxon%3A979970","Acetobacteroides hydrogenigenes"],["NCBITaxon%3A1872095","Acetobacteroides sp."],["NCBITaxon%3A2764708","Acetobacteroides sp. MIZ14"],["NCBITaxon%3A2585118","Alistipes communis"],["NCBITaxon%3A2585119","Alistipes dispar"],["NCBITaxon%3A214856","Alistipes finegoldii"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":8,"nb":183,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["NCBITaxon%3A86840","Pseudomonas cannabina"],["NCBITaxon%3A53409","Pseudomonas coronafaciens"],["NCBITaxon%3A29438","Pseudomonas savastanoi"],["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A1204471","Pseudomonas syringae BRIP34876"]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":8,"nb":88,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"]],"b":[["NCBITaxon%3A298","Pseudomonas marginalis"],["NCBITaxon%3A56448","Xanthomonas arboricola"],["NCBITaxon%3A339","Xanthomonas campestris"],["NCBITaxon%3A1281290","Xanthomonas campestris CFBP 5824"],["NCBITaxon%3A1281289","Xanthomonas campestris CFBP 5825"],["NCBITaxon%3A1182783","Xanthomonas campestris JX"]]},{"id":"NCBITaxon:33042","l":"Coprococcus","na":8,"nb":72,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["alimentary-canal-bto-0000058.html","alimentary canal"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"]],"b":[["NCBITaxon%3A2981786","Coprococcus aceti"],["NCBITaxon%3A2981785","Coprococcus ammoniilyticus"],["NCBITaxon%3A33043","Coprococcus eutactus"],["NCBITaxon%3A411474","Coprococcus eutactus ATCC 27759"],["NCBITaxon%3A1263071","Coprococcus eutactus CAG:665"],["NCBITaxon%3A2881262","Coprococcus hominis (ex Arizal et al. 2022)"]]},{"id":"NCBITaxon:2702","l":"Gardnerella vaginalis","na":8,"nb":35,"a":[["egg-food-product-foodon-00001274.html","egg food product"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["NCBITaxon%3A2702","Gardnerella vaginalis"],["NCBITaxon%3A698952","Gardnerella vaginalis 0288E"],["NCBITaxon%3A698957","Gardnerella vaginalis 1500E"],["NCBITaxon%3A698950","Gardnerella vaginalis 284V"],["NCBITaxon%3A879307","Gardnerella vaginalis 315-A"],["NCBITaxon%3A553190","Gardnerella vaginalis 409-05"]]},{"id":"NCBITaxon:147802","l":"Lactobacillus iners","na":8,"nb":18,"a":[["egg-food-product-foodon-00001274.html","egg food product"],["blood-bto-0000089.html","blood"],["brain-bto-0000142.html","brain"],["heart-bto-0000562.html","heart"],["urine-bto-0001419.html","urine"],["vagina-bto-0000243.html","vagina"]],"b":[["NCBITaxon%3A78329","Allocoenonia anatina"],["NCBITaxon%3A147802","Lactobacillus iners"],["NCBITaxon%3A713605","Lactobacillus iners AB-1"],["NCBITaxon%3A883160","Lactobacillus iners ACS-070-V-Col3"],["NCBITaxon%3A888801","Lactobacillus iners ATCC 55195"],["NCBITaxon%3A525328","Lactobacillus iners DSM 13335"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":8,"nb":15,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["alimentary-canal-bto-0000058.html","alimentary canal"],["blood-bto-0000089.html","blood"],["small-intestine-bto-0000651.html","small intestine"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["geographic-feature-envo-00000000.html","geographic feature"]],"b":[["NCBITaxon%3A1304","Streptococcus salivarius"],["NCBITaxon%3A1046629","Streptococcus salivarius 57.I"],["NCBITaxon%3A1420586","Streptococcus salivarius ATCC 25975"],["NCBITaxon%3A1263109","Streptococcus salivarius CAG:79"],["NCBITaxon%3A1048332","Streptococcus salivarius CCHSS3"],["NCBITaxon%3A1255635","Streptococcus salivarius CJ181"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":8,"nb":14,"a":[["groundwater-envo-01001004.html","groundwater"],["bioreactor-envo-00002123.html","bioreactor"],["river-envo-00000022.html","river"],["freshwater-environment-envo-01000306.html","freshwater environment"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A1076","Rhodopseudomonas palustris"],["NCBITaxon%3A74570","Rhodopseudomonas palustris ATCC 17001"],["NCBITaxon%3A74573","Rhodopseudomonas palustris ATCC 17007"],["NCBITaxon%3A316055","Rhodopseudomonas palustris BisA53"],["NCBITaxon%3A316056","Rhodopseudomonas palustris BisB18"],["NCBITaxon%3A316057","Rhodopseudomonas palustris BisB5"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":8,"nb":14,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["lab-synthesis-habitatmech-bacdive-0e92e77cd4.html","Lab-synthesis"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["oil-spill-envo-00002061.html","oil spill"],["temperate-envo-01000206.html","temperate"]],"b":[["NCBITaxon%3A72360","Bacillus mojavensis"],["NCBITaxon%3A1051501","Bacillus mojavensis RO-H-1 = KCTC 3706"],["NCBITaxon%3A1478","Peribacillus simplex"],["NCBITaxon%3A86664","Priestia flexa"],["NCBITaxon%3A1404","Priestia megaterium"],["NCBITaxon%3A592022","Priestia megaterium DSM 319"]]},{"id":"NCBITaxon:33038","l":"Mediterraneibacter gnavus","na":8,"nb":13,"a":[["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["juvenile-bto-0002168.html","juvenile"],["animal-litter-envo-00002191.html","animal litter"]],"b":[["NCBITaxon%3A33038","Mediterraneibacter gnavus"],["NCBITaxon%3A1384063","Mediterraneibacter gnavus AGR2154"],["NCBITaxon%3A411470","Mediterraneibacter gnavus ATCC 29149"],["NCBITaxon%3A1263106","Mediterraneibacter gnavus CAG:126"],["NCBITaxon%3A1073375","Mediterraneibacter gnavus CC55_001C"],["NCBITaxon%3A935582","Mediterraneibacter gnavus E1"]]},{"id":"NCBITaxon:554","l":"Pectobacterium carotovorum","na":8,"nb":13,"a":[["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["root-or-stem-rot-environment-habitatmech-bacdive-04ddbbeabe.html","root-or-stem rot environment"],["wilt-habitatmech-bacdive-4c48b5114d.html","Wilt"]],"b":[["NCBITaxon%3A2527970","Blastopirellula retiformator"],["NCBITaxon%3A1201031","Pectobacterium aroidearum"],["NCBITaxon%3A55207","Pectobacterium betavasculorum"],["NCBITaxon%3A180957","Pectobacterium brasiliense"],["NCBITaxon%3A554","Pectobacterium carotovorum"],["NCBITaxon%3A555","Pectobacterium carotovorum subsp. carotovorum"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":9,"nb":8,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["fresh-water-envo-00002011.html","fresh water"],["river-envo-00000022.html","river"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A1061","Rhodobacter capsulatus"],["NCBITaxon%3A1415162","Rhodobacter capsulatus B6"],["NCBITaxon%3A1415160","Rhodobacter capsulatus DE442"],["NCBITaxon%3A1415163","Rhodobacter capsulatus R121"],["NCBITaxon%3A272942","Rhodobacter capsulatus SB 1003"],["NCBITaxon%3A1415161","Rhodobacter capsulatus Y262"]]},{"id":"NCBITaxon:1261","l":"Peptostreptococcus anaerobius","na":9,"nb":8,"a":[["dorsum-bto-0001713.html","dorsum"],["saliva-bto-0001202.html","saliva"],["sgs-cell-bto-0001210.html","SGS cell"],["tongue-bto-0001385.html","tongue"],["urine-bto-0001419.html","urine"],["vagina-bto-0000243.html","vagina"]],"b":[["NCBITaxon%3A1944660","Parvimonas sp."],["NCBITaxon%3A1261","Peptostreptococcus anaerobius"],["NCBITaxon%3A596329","Peptostreptococcus anaerobius 653-L"],["NCBITaxon%3A1263100","Peptostreptococcus anaerobius CAG:621"],["NCBITaxon%3A1073365","Peptostreptococcus anaerobius CC14N"],["NCBITaxon%3A1035196","Peptostreptococcus anaerobius VPI 4330 = DSM 2949"]]},{"id":"NCBITaxon:1655","l":"Actinomyces naeslundii","na":8,"nb":8,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"],["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"],["archeological-site-envo-00000564.html","archeological site"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["NCBITaxon%3A3050225","Actinomyces acetigenes"],["NCBITaxon%3A544581","Actinomyces johnsonii"],["NCBITaxon%3A1655","Actinomyces naeslundii"],["NCBITaxon%3A240017","Actinomyces naeslundii MG1"],["NCBITaxon%3A1115803","Actinomyces naeslundii str. Howell 279"],["NCBITaxon%3A544580","Actinomyces oris"]]},{"id":"NCBITaxon:28216","l":"Betaproteobacteria","na":7,"nb":31526,"a":[["column-bto-0005692.html","column"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["spike-bto-0001278.html","spike"]],"b":[["NCBITaxon%3A103498","2,4-D-degrading bacterium 001"],["NCBITaxon%3A103499","2,4-D-degrading bacterium 007"],["NCBITaxon%3A103495","2,4-D-degrading bacterium 012"],["NCBITaxon%3A103500","2,4-D-degrading bacterium 017"],["NCBITaxon%3A103501","2,4-D-degrading bacterium 018"],["NCBITaxon%3A103502","2,4-D-degrading bacterium 019"]]},{"id":"NCBITaxon:32033","l":"Lysobacteraceae","na":7,"nb":6844,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["leaf-bto-0000713.html","leaf"],["midgut-bto-0000863.html","midgut"],["pitcher-bto-0001069.html","pitcher"],["pseudostem-bto-0005992.html","pseudostem"],["stem-bto-0001300.html","stem"]],"b":[["NCBITaxon%3A346181","Aerolutibacter daejeonensis"],["NCBITaxon%3A686800","Aerolutibacter ruishenii"],["NCBITaxon%3A380628","Agrilutibacter niabensis"],["NCBITaxon%3A2763317","Agrilutibacter solisilvae"],["NCBITaxon%3A3382711","Agrilutibacter sp."],["NCBITaxon%3A2865112","Agrilutibacter terrestris"]]},{"id":"NCBITaxon:469","l":"Acinetobacter","na":7,"nb":6769,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["endotracheal-fluid-ncit-c171504.html","Endotracheal Fluid"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"],["pseudostem-bto-0005992.html","pseudostem"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"]],"b":[["NCBITaxon%3A1673609","Acinetobacter albensis"],["NCBITaxon%3A2942470","Acinetobacter amyesii"],["NCBITaxon%3A363192","Acinetobacter antiviralis"],["NCBITaxon%3A1229165","Acinetobacter apis"],["NCBITaxon%3A2605383","Acinetobacter baretiae"],["NCBITaxon%3A470","Acinetobacter baumannii"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":7,"nb":5776,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["pseudostem-bto-0005992.html","pseudostem"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["NCBITaxon%3A54736","Salmonella bongori"],["NCBITaxon%3A218493","Salmonella bongori NCTC 12419"],["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59203","Salmonella enterica subsp. arizonae"],["NCBITaxon%3A2577126","Salmonella enterica subsp. arizonae serovar 11:z4,z23:-"],["NCBITaxon%3A2577127","Salmonella enterica subsp. arizonae serovar 13,22:z4,z23:-"]]},{"id":"NCBITaxon:2037","l":"Actinomycetales","na":7,"nb":2280,"a":[["saline-water-body-envo-01001319.html","saline water body"],["column-bto-0005692.html","column"],["crop-bto-0000301.html","crop"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"],["stem-bto-0001300.html","stem"]],"b":[["NCBITaxon%3A202789","Actinobaculum massiliense"],["NCBITaxon%3A883066","Actinobaculum massiliense ACS-171-V-Col2"],["NCBITaxon%3A1872129","Actinobaculum sp."],["NCBITaxon%3A749734","Actinobaculum sp. 127266/05"],["NCBITaxon%3A1456838","Actinobaculum sp. 2012257545"],["NCBITaxon%3A1456839","Actinobaculum sp. 2012259764"]]},{"id":"NCBITaxon:128827","l":"Erysipelotrichaceae","na":7,"nb":378,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["cecum-bto-0000166.html","cecum"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["intestine-bto-0000648.html","intestine"],["mouth-bto-0001090.html","mouth"],["mucosa-bto-0000886.html","mucosa"]],"b":[["NCBITaxon%3A2926319","Absicoccus intestinalis"],["NCBITaxon%3A2486576","Absicoccus porci"],["NCBITaxon%3A2718527","Absicoccus sp."],["NCBITaxon%3A2291993","Absiella sp. AM09-45"],["NCBITaxon%3A2291994","Absiella sp. AM09-50"],["NCBITaxon%3A2291995","Absiella sp. AM10-20"]]},{"id":"NCBITaxon:1243","l":"Leuconostoc","na":7,"nb":271,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["intestine-bto-0000648.html","intestine"],["mouth-bto-0001090.html","mouth"],["stem-bto-0001300.html","stem"]],"b":[["NCBITaxon%3A3236804","Leuconostoc aquikimchii"],["NCBITaxon%3A1252","Leuconostoc carnosum"],["NCBITaxon%3A1229758","Leuconostoc carnosum JB16"],["NCBITaxon%3A1046593","Leuconostoc carnosum KCTC 3525"],["NCBITaxon%3A33964","Leuconostoc citreum"],["NCBITaxon%3A349519","Leuconostoc citreum KM20"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":7,"nb":35,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["liquid-water-envo-00002006.html","liquid water"],["crown-gall-bto-0000303.html","crown gall"],["finger-bto-0004669.html","finger"],["resting-cell-bto-0001170.html","resting cell"],["water-scum-envo-00005794.html","water scum"]],"b":[["NCBITaxon%3A1183421","Agrobacterium fabacearum CFBP 5771"],["NCBITaxon%3A1300224","Agrobacterium fabacearum P4"],["NCBITaxon%3A1183429","Agrobacterium fabacearum S56"],["NCBITaxon%3A1368455","Agrobacterium fabacearum str. Foundi"],["NCBITaxon%3A1183430","Agrobacterium fabacearum TT111"],["NCBITaxon%3A1176649","Agrobacterium fabrum"]]},{"id":"NCBITaxon:1107","l":"Chloroflexus","na":7,"nb":28,"a":[["crop-bto-0000301.html","crop"],["gut-bto-0000545.html","gut"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["seedling-bto-0001228.html","seedling"],["skin-bto-0001253.html","skin"]],"b":[["NCBITaxon%3A152260","Chloroflexus aggregans"],["NCBITaxon%3A326427","Chloroflexus aggregans DSM 9485"],["NCBITaxon%3A1108","Chloroflexus aurantiacus"],["NCBITaxon%3A324602","Chloroflexus aurantiacus J-10-fl"],["NCBITaxon%3A480224","Chloroflexus aurantiacus Y-400-fl"],["NCBITaxon%3A1707952","Chloroflexus islandicus"]]},{"id":"NCBITaxon:1502","l":"Clostridium perfringens","na":7,"nb":24,"a":[["small-river-biome-envo-00000890.html","small river biome"],["animal-house-envo-00003040.html","animal house"],["ileum-bto-0000620.html","ileum"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["NCBITaxon%3A1502","Clostridium perfringens"],["NCBITaxon%3A753641","Clostridium perfringens 310"],["NCBITaxon%3A753640","Clostridium perfringens 3100"],["NCBITaxon%3A37763","Clostridium perfringens A"],["NCBITaxon%3A195103","Clostridium perfringens ATCC 13124"],["NCBITaxon%3A451751","Clostridium perfringens B"]]},{"id":"NCBITaxon:1464","l":"Paenibacillus larvae","na":10,"nb":7,"a":[["surface-water-envo-00002042.html","surface water"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["carcass-envo-00002033.html","carcass"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A1464","Paenibacillus larvae"],["NCBITaxon%3A147375","Paenibacillus larvae subsp. larvae"],["NCBITaxon%3A741161","Paenibacillus larvae subsp. larvae B-3650"],["NCBITaxon%3A392917","Paenibacillus larvae subsp. larvae BRL-230010"],["NCBITaxon%3A697284","Paenibacillus larvae subsp. larvae DSM 25430"],["NCBITaxon%3A697286","Paenibacillus larvae subsp. larvae DSM 25719"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":10,"nb":7,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["air-conditioning-unit-envo-00002874.html","air conditioning unit"],["leaf-bto-0000713.html","leaf"],["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["NCBITaxon%3A34073","Variovorax paradoxus"],["NCBITaxon%3A1150395","Variovorax paradoxus 4MFCol3.1"],["NCBITaxon%3A1246301","Variovorax paradoxus B4"],["NCBITaxon%3A595537","Variovorax paradoxus EPS"],["NCBITaxon%3A1321610","Variovorax paradoxus NBRC 15149"],["NCBITaxon%3A543728","Variovorax paradoxus S110"]]},{"id":"NCBITaxon:1283","l":"Staphylococcus haemolyticus","na":9,"nb":7,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["biofilm-bto-0002690.html","biofilm"],["bone-element-uberon-0001474.html","bone element"],["conjunctiva-bto-0003415.html","conjunctiva"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"]],"b":[["NCBITaxon%3A1283","Staphylococcus haemolyticus"],["NCBITaxon%3A1308739","Staphylococcus haemolyticus ADL-104"],["NCBITaxon%3A1308735","Staphylococcus haemolyticus ADL-204"],["NCBITaxon%3A1095104","Staphylococcus haemolyticus BL-2"],["NCBITaxon%3A1401071","Staphylococcus haemolyticus DNF00585"],["NCBITaxon%3A279808","Staphylococcus haemolyticus JCSC1435"]]},{"id":"NCBITaxon:1656","l":"Actinomyces viscosus","na":7,"nb":9,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"],["skin-of-body-uberon-0002097.html","skin of body"],["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["NCBITaxon%3A1655","Actinomyces naeslundii"],["NCBITaxon%3A544580","Actinomyces oris"],["NCBITaxon%3A29317","Actinomyces sp."],["NCBITaxon%3A3050227","Actinomyces stomatis"],["NCBITaxon%3A1656","Actinomyces viscosus"],["NCBITaxon%3A562973","Actinomyces viscosus C505"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":9,"nb":7,"a":[["liquid-water-envo-00002006.html","liquid water"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["mud-envo-01000001.html","mud"]],"b":[["NCBITaxon%3A293","Brevundimonas diminuta"],["NCBITaxon%3A1255603","Brevundimonas diminuta 3F5N"],["NCBITaxon%3A1035191","Brevundimonas diminuta 470-4"],["NCBITaxon%3A751586","Brevundimonas diminuta ATCC 11568"],["NCBITaxon%3A588932","Brevundimonas naejangsanensis"],["NCBITaxon%3A1325724","Brevundimonas vancanneytii"]]},{"id":"NCBITaxon:1236","l":"Gammaproteobacteria","na":6,"nb":145676,"a":[["column-bto-0005692.html","column"],["hemolymph-bto-0000572.html","hemolymph"],["oil-secretion-bto-0005373.html","oil secretion"],["spike-bto-0001278.html","spike"],["urine-bto-0001419.html","urine"],["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A103492","2,4-D-degrading bacterium 010"],["NCBITaxon%3A103493","2,4-D-degrading bacterium 030"],["NCBITaxon%3A120969","abyssal strain AIII3*"],["NCBITaxon%3A2182787","Abyssibacter profundi"],["NCBITaxon%3A2320200","Abyssibacter sp."],["NCBITaxon%3A596095","Abyssogena phaseoliformis symbiont"]]},{"id":"NCBITaxon:28211","l":"Alphaproteobacteria","na":6,"nb":72845,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"],["alimentary-canal-bto-0000058.html","alimentary canal"],["column-bto-0005692.html","column"],["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["spike-bto-0001278.html","spike"]],"b":[["NCBITaxon%3A119160","2,3-D degrading bacterium NHC2"],["NCBITaxon%3A119159","2,3-D degrading bacterium NHG3"],["NCBITaxon%3A103494","2,4-D-degrading bacterium 022"],["NCBITaxon%3A83493","2,4-D degrading bacterium 2,4-D1"],["NCBITaxon%3A103496","2,4-D-degrading bacterium 524"],["NCBITaxon%3A83492","2,4-D degrading bacterium B6-10"]]},{"id":"NCBITaxon:80864","l":"Comamonadaceae","na":6,"nb":5616,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["small-intestine-bto-0000651.html","small intestine"],["trunk-bto-0001493.html","trunk"],["wood-bto-0005516.html","wood"]],"b":[["NCBITaxon%3A103495","2,4-D-degrading bacterium 012"],["NCBITaxon%3A83498","2,4-D degrading bacterium B6-9"],["NCBITaxon%3A83495","2,4-D degrading bacterium TFD23"],["NCBITaxon%3A3386178","Aalborgiella aggregata (SeqCode)"],["NCBITaxon%3A3879854","Aalborgiella sp. (SeqCode)"],["NCBITaxon%3A192388","Acidovorax aerodenitrificans"]]},{"id":"NCBITaxon:1269","l":"Micrococcus","na":6,"nb":1469,"a":[["cecum-bto-0000166.html","cecum"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["saliva-bto-0001202.html","saliva"],["tongue-bto-0001385.html","tongue"]],"b":[["NCBITaxon%3A1871615","Dermacoccus sp."],["NCBITaxon%3A1275","Kocuria rosea"],["NCBITaxon%3A29377","Micrococcus aerogenes"],["NCBITaxon%3A306270","Micrococcus alkanovora"],["NCBITaxon%3A1391911","Micrococcus aloeverae"],["NCBITaxon%3A86171","Micrococcus antarcticus"]]},{"id":"NCBITaxon:1311","l":"Streptococcus agalactiae","na":6,"nb":332,"a":[["kidney-bto-0000671.html","kidney"],["milk-uberon-0001913.html","milk"],["oropharynx-bto-0005257.html","oropharynx"],["urine-bto-0001419.html","urine"],["urogenital-system-bto-0003091.html","urogenital system"],["vagina-bto-0000243.html","vagina"]],"b":[["NCBITaxon%3A536","Chromobacterium violaceum"],["NCBITaxon%3A2896850","Phocaeicola oris"],["NCBITaxon%3A1311","Streptococcus agalactiae"],["NCBITaxon%3A997295","Streptococcus agalactiae 072.21"],["NCBITaxon%3A1309806","Streptococcus agalactiae 09mas018883"],["NCBITaxon%3A1333579","Streptococcus agalactiae 112469214-isolate1"]]},{"id":"NCBITaxon:1496","l":"Clostridioides difficile","na":6,"nb":296,"a":[["hospital-envo-00002173.html","hospital"],["feces-uberon-0001988.html","feces"],["leukocyte-bto-0000751.html","leukocyte"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["intestine-environment-envo-2100002.html","intestine environment"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A1496","Clostridioides difficile"],["NCBITaxon%3A997827","Clostridioides difficile 002-P50-2011"],["NCBITaxon%3A997828","Clostridioides difficile 050-P50-2011"],["NCBITaxon%3A699033","Clostridioides difficile 2007855"],["NCBITaxon%3A1151306","Clostridioides difficile 342"],["NCBITaxon%3A1151307","Clostridioides difficile 360"]]},{"id":"NCBITaxon:1375","l":"Aerococcus","na":6,"nb":234,"a":[["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["saliva-bto-0001202.html","saliva"],["urine-bto-0001419.html","urine"],["vagina-bto-0000243.html","vagina"],["vaginal-fluid-bto-0003084.html","vaginal fluid"]],"b":[["NCBITaxon%3A2487350","Aerococcus agrisoli"],["NCBITaxon%3A87541","Aerococcus christensenii"],["NCBITaxon%3A525247","Aerococcus christensenii DSM 15819 = CCUG 28831"],["NCBITaxon%3A2999064","Aerococcus kribbianus"],["NCBITaxon%3A2976809","Aerococcus loyolae"],["NCBITaxon%3A2976810","Aerococcus mictus"]]},{"id":"NCBITaxon:189330","l":"Dorea","na":6,"nb":83,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["ileum-bto-0000620.html","ileum"],["mucosa-bto-0000886.html","mucosa"]],"b":[["NCBITaxon%3A2838540","Candidatus Dorea faecigallinarum"],["NCBITaxon%3A2838541","Candidatus Dorea faecipullorum"],["NCBITaxon%3A2838542","Candidatus Dorea gallistercoris"],["NCBITaxon%3A2838543","Candidatus Dorea intestinavium"],["NCBITaxon%3A2838544","Candidatus Dorea intestinigallinarum"],["NCBITaxon%3A1470355","Candidatus Dorea massiliensis"]]},{"id":"NCBITaxon:13159","l":"Mycoplana","na":6,"nb":50,"a":[["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"],["style-bto-0001313.html","style"],["urine-bto-0001419.html","urine"]],"b":[["NCBITaxon%3A1636188","Mycoplana azooxidifex"],["NCBITaxon%3A28320","Mycoplana dimorpha"],["NCBITaxon%3A416229","Mycoplana peli"],["NCBITaxon%3A40837","Mycoplana ramosa"],["NCBITaxon%3A2746702","Mycoplana rhizolycopersici"],["NCBITaxon%3A1874381","Mycoplana sp."]]},{"id":"NCBITaxon:446","l":"Legionella pneumophila","na":6,"nb":47,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["hospital-envo-00002173.html","hospital"],["macrophage-bto-0000801.html","macrophage"],["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A446","Legionella pneumophila"],["NCBITaxon%3A866628","Legionella pneumophila 130b"],["NCBITaxon%3A423212","Legionella pneumophila 2300/99 Alcoy"],["NCBITaxon%3A1370127","Legionella pneumophila Leg01/16"],["NCBITaxon%3A66976","Legionella pneumophila serogroup 1"],["NCBITaxon%3A66985","Legionella pneumophila serogroup 10"]]},{"id":"NCBITaxon:777","l":"Coxiella burnetii","na":6,"nb":44,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["marine-bathyal-zone-biome-envo-01000026.html","marine bathyal zone biome"],["neritic-epipelagic-zone-biome-envo-01000042.html","neritic epipelagic zone biome"],["lagoon-envo-00000038.html","lagoon"],["orchard-envo-00000115.html","orchard"],["sea-shore-envo-00000485.html","sea shore"]],"b":[["NCBITaxon%3A777","Coxiella burnetii"],["NCBITaxon%3A1321944","Coxiella burnetii 2338"],["NCBITaxon%3A1321942","Coxiella burnetii C2"],["NCBITaxon%3A1196327","Coxiella burnetii cb109"],["NCBITaxon%3A1364988","Coxiella burnetii Cb111"],["NCBITaxon%3A1401249","Coxiella burnetii Cb118"]]},{"id":"NCBITaxon:1305","l":"Streptococcus sanguinis","na":6,"nb":27,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["throat-bto-0000828.html","throat"],["geographic-feature-envo-00000000.html","geographic feature"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["NCBITaxon%3A1302","Streptococcus gordonii"],["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1305","Streptococcus sanguinis"],["NCBITaxon%3A1247655","Streptococcus sanguinis ATCC 15914"],["NCBITaxon%3A997356","Streptococcus sanguinis ATCC 29667"],["NCBITaxon%3A1073373","Streptococcus sanguinis CC94A"]]},{"id":"NCBITaxon:56","l":"Sorangium cellulosum","na":27,"nb":6,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["watercourse-envo-00000029.html","watercourse"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["NCBITaxon%3A2093422","Sorangium ambruticinum"],["NCBITaxon%3A2093423","Sorangium bulgaricum"],["NCBITaxon%3A56","Sorangium cellulosum"],["NCBITaxon%3A1254432","Sorangium cellulosum So0157-2"],["NCBITaxon%3A448385","Sorangium cellulosum So ce56"],["NCBITaxon%3A2093377","Sorangium sp."]]},{"id":"NCBITaxon:1018","l":"Capnocytophaga ochracea","na":17,"nb":6,"a":[["biofilm-envo-00002034.html","biofilm"],["dorsum-bto-0001713.html","dorsum"],["forearm-bto-0001447.html","forearm"],["gut-bto-0000545.html","gut"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"]],"b":[["NCBITaxon%3A1018","Capnocytophaga ochracea"],["NCBITaxon%3A521097","Capnocytophaga ochracea DSM 7271"],["NCBITaxon%3A873517","Capnocytophaga ochracea F0287"],["NCBITaxon%3A1410029","Capnocytophaga ochracea HMP_JCVI_SC0240"],["NCBITaxon%3A1125719","Capnocytophaga ochracea str. Holt 25"],["NCBITaxon%3A1019","Capnocytophaga sputigena"]]},{"id":"NCBITaxon:67263","l":"Streptomyces griseus subsp. griseus","na":6,"nb":14,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["laboratory-facility-envo-01001406.html","laboratory facility"],["clay-envo-00002982.html","clay"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A132249","Nocardia veterana"],["NCBITaxon%3A1884","Streptomyces acrimycini"],["NCBITaxon%3A67274","Streptomyces argenteolus"],["NCBITaxon%3A66872","Streptomyces baarnensis"],["NCBITaxon%3A1896","Streptomyces bikiniensis"],["NCBITaxon%3A90079","Streptomyces caviscabies"]]},{"id":"NCBITaxon:1624","l":"Ligilactobacillus salivarius","na":6,"nb":13,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["trachea-bto-0001388.html","trachea"],["animal-litter-envo-00002191.html","animal litter"],["intestine-environment-envo-2100002.html","intestine environment"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["NCBITaxon%3A1624","Ligilactobacillus salivarius"],["NCBITaxon%3A768728","Ligilactobacillus salivarius ACS-116-V-Col5a"],["NCBITaxon%3A1195377","Ligilactobacillus salivarius B-30514"],["NCBITaxon%3A712961","Ligilactobacillus salivarius CECT 5713"],["NCBITaxon%3A1036738","Ligilactobacillus salivarius CELA2"],["NCBITaxon%3A1273133","Ligilactobacillus salivarius cp400"]]},{"id":"NCBITaxon:238","l":"Elizabethkingia meningoseptica","na":10,"nb":6,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["pond-water-envo-00002228.html","pond water"],["small-river-biome-envo-00000890.html","small river biome"],["bronchus-uberon-0002185.html","bronchus"],["midgut-bto-0000863.html","midgut"],["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["NCBITaxon%3A1453492","Chryseobacterium hispalense"],["NCBITaxon%3A238","Elizabethkingia meningoseptica"],["NCBITaxon%3A1216967","Elizabethkingia meningoseptica ATCC 13253 = NBRC 12535"],["NCBITaxon%3A1379264","Elizabethkingia meningoseptica KuYH"],["NCBITaxon%3A247","Empedobacter brevis"],["NCBITaxon%3A343874","Empedobacter falsenii"]]},{"id":"NCBITaxon:1154585","l":"Gaiellaceae","na":6,"nb":9,"a":[["crop-bto-0000301.html","crop"],["forearm-bto-0001447.html","forearm"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["seedling-bto-0001228.html","seedling"],["skin-bto-0001253.html","skin"]],"b":[["NCBITaxon%3A2928748","Candidatus Gaiellasilicea maunaloa"],["NCBITaxon%3A1002870","Gaiella occulta"],["NCBITaxon%3A2663207","Gaiella sp."],["NCBITaxon%3A1282738","Gaiella sp. EBR4-R2"],["NCBITaxon%3A1282739","Gaiella sp. EBR4-RS1"],["NCBITaxon%3A1799656","Gaiella sp. SCGC AG-212-M14"]]},{"id":"NCBITaxon:1830","l":"Rhodococcus ruber","na":6,"nb":9,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A941184","Nocardia salmonicolor"],["NCBITaxon%3A1830","Rhodococcus ruber"],["NCBITaxon%3A1278076","Rhodococcus ruber BKS 20-38"],["NCBITaxon%3A1240349","Rhodococcus ruber Chol-4"],["NCBITaxon%3A3392186","Rhodococcus ruber IEGM1217"],["NCBITaxon%3A3392194","Rhodococcus ruber IEGM453"]]},{"id":"NCBITaxon:28251","l":"Ornithobacterium rhinotracheale","na":9,"nb":6,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["small-river-biome-envo-00000890.html","small river biome"],["water-body-envo-00000063.html","water body"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["cultivated-environment-envo-01000311.html","cultivated environment"],["mud-envo-01000001.html","mud"]],"b":[["NCBITaxon%3A28251","Ornithobacterium rhinotracheale"],["NCBITaxon%3A1112205","Ornithobacterium rhinotracheale B3263/91"],["NCBITaxon%3A1112206","Ornithobacterium rhinotracheale BAC-96-8334"],["NCBITaxon%3A867902","Ornithobacterium rhinotracheale DSM 15997"],["NCBITaxon%3A1401326","Ornithobacterium rhinotracheale H06-030791"],["NCBITaxon%3A1401325","Ornithobacterium rhinotracheale ORT-UMN 88"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":6,"nb":8,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"],["sludge-envo-00002044.html","sludge"],["forested-area-envo-00000111.html","forested area"],["scrubland-area-envo-00000300.html","scrubland area"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A119219","Cupriavidus metallidurans"],["NCBITaxon%3A106590","Cupriavidus necator"],["NCBITaxon%3A1304882","Cupriavidus necator A5-1"],["NCBITaxon%3A381666","Cupriavidus necator H16"],["NCBITaxon%3A53482","Cupriavidus necator H850"],["NCBITaxon%3A1042878","Cupriavidus necator N-1"]]},{"id":"NCBITaxon:1510","l":"Thermoclostridium stercorarium","na":6,"nb":8,"a":[["small-river-biome-envo-00000890.html","small river biome"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"],["rock-envo-00001995.html","rock"],["sulfur-spring-envo-00000126.html","sulfur spring"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["NCBITaxon%3A1510","Thermoclostridium stercorarium"],["NCBITaxon%3A160385","Thermoclostridium stercorarium subsp. leptospartum"],["NCBITaxon%3A1346611","Thermoclostridium stercorarium subsp. leptospartum DSM 9219"],["NCBITaxon%3A160845","Thermoclostridium stercorarium subsp. stercorarium"],["NCBITaxon%3A1121335","Thermoclostridium stercorarium subsp. stercorarium DSM 8532"],["NCBITaxon%3A29351","Thermoclostridium stercorarium subsp. thermolacticum"]]},{"id":"NCBITaxon:1512","l":"[Clostridium] symbiosum","na":6,"nb":6,"a":[["biofilm-envo-00002034.html","biofilm"],["animal-house-envo-00003040.html","animal house"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["emulsion-envo-00010506.html","emulsion"],["environmental-feature-envo-00002297.html","environmental feature"],["pig-manure-envo-00003860.html","pig manure"]],"b":[["NCBITaxon%3A1506","Clostridium sp."],["NCBITaxon%3A1512","[Clostridium] symbiosum"],["NCBITaxon%3A411472","[Clostridium] symbiosum ATCC 14940"],["NCBITaxon%3A742740","[Clostridium] symbiosum WAL-14163"],["NCBITaxon%3A742741","[Clostridium] symbiosum WAL-14673"],["NCBITaxon%3A854","Fusobacterium russii"]]},{"id":"NCBITaxon:1773","l":"Mycobacterium tuberculosis","na":5,"nb":2946,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["posterior-lobe-bto-0000561.html","posterior lobe"],["sputum-bto-0001297.html","sputum"],["thorax-bto-0001368.html","thorax"],["thp-1-cell-bto-0001370.html","THP-1 cell"]],"b":[["NCBITaxon%3A1773","Mycobacterium tuberculosis"],["NCBITaxon%3A668339","Mycobacterium tuberculosis 00_1695"],["NCBITaxon%3A1455192","Mycobacterium tuberculosis 01-Cr4_ND_3_A"],["NCBITaxon%3A1455078","Mycobacterium tuberculosis 01-Ps1_0_A"],["NCBITaxon%3A515616","Mycobacterium tuberculosis 02_1987"],["NCBITaxon%3A1455200","Mycobacterium tuberculosis 02-Cr4_ND_3_B"]]},{"id":"NCBITaxon:119045","l":"Methylobacteriaceae","na":5,"nb":2784,"a":[["forearm-bto-0001447.html","forearm"],["hand-bto-0004668.html","hand"],["hemolymph-bto-0000572.html","hemolymph"],["urine-bto-0001419.html","urine"],["vaginal-fluid-bto-0003084.html","vaginal fluid"]],"b":[["NCBITaxon%3A204700","bacterium Ellin318"],["NCBITaxon%3A204701","bacterium Ellin330"],["NCBITaxon%3A2730920","Enterovirga aerilata"],["NCBITaxon%3A1339210","Enterovirga rhinocerotis"],["NCBITaxon%3A2026350","Enterovirga sp."],["NCBITaxon%3A3400910","Enterovirga sp. CN4-39"]]},{"id":"NCBITaxon:106589","l":"Cupriavidus","na":5,"nb":878,"a":[["gut-bto-0000545.html","gut"],["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["skin-bto-0001253.html","skin"]],"b":[["NCBITaxon%3A1001822","Cupriavidus agavae"],["NCBITaxon%3A942866","Cupriavidus alkaliphilus"],["NCBITaxon%3A68895","Cupriavidus basilensis"],["NCBITaxon%3A1200775","Cupriavidus basilensis B-8"],["NCBITaxon%3A1127483","Cupriavidus basilensis OR16"],["NCBITaxon%3A151783","Cupriavidus campinensis"]]},{"id":"NCBITaxon:838","l":"Prevotella","na":5,"nb":735,"a":[["brain-bto-0000142.html","brain"],["colon-bto-0000269.html","colon"],["heart-bto-0000562.html","heart"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"]],"b":[["NCBITaxon%3A2838738","Candidatus Prevotella avicola"],["NCBITaxon%3A3083129","Candidatus Prevotella equi"],["NCBITaxon%3A2838739","Candidatus Prevotella intestinigallinarum"],["NCBITaxon%3A2838740","Candidatus Prevotella stercoripullorum"],["NCBITaxon%3A81582","Prevotella aff. ruminicola Tc2-24"],["NCBITaxon%3A419005","Prevotella amnii"]]},{"id":"NCBITaxon:1060","l":"Rhodobacter","na":5,"nb":342,"a":[["gut-bto-0000545.html","gut"],["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["skin-bto-0001253.html","skin"]],"b":[["NCBITaxon%3A196780","Arctic sea ice bacterium ARK10036"],["NCBITaxon%3A1675527","Candidatus Rhodobacter oscarellae"],["NCBITaxon%3A1063","Cereibacter sphaeroides"],["NCBITaxon%3A453582","Rhodobacter aestuarii"],["NCBITaxon%3A70067","Rhodobacter apigmentum"],["NCBITaxon%3A1608946","Rhodobacter azollae"]]},{"id":"NCBITaxon:118968","l":"Coxiellaceae","na":5,"nb":311,"a":[["dorsum-bto-0001713.html","dorsum"],["hemolymph-bto-0000572.html","hemolymph"],["skin-bto-0001253.html","skin"],["tongue-bto-0001385.html","tongue"],["vaginal-fluid-bto-0003084.html","vaginal fluid"]],"b":[["NCBITaxon%3A254246","Aquicella lusitana"],["NCBITaxon%3A254247","Aquicella siphonis"],["NCBITaxon%3A1872583","Aquicella sp."],["NCBITaxon%3A868357","Aquicella sp. 1(27-11)"],["NCBITaxon%3A1084584","Aquicella sp. enrichment culture clone B21"],["NCBITaxon%3A1136692","Aquicella sp. enrichment culture clone CTBE CDB1001G12"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":5,"nb":287,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"],["feces-uberon-0001988.html","feces"],["rectum-bto-0001158.html","rectum"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A666","Vibrio cholerae"],["NCBITaxon%3A693741","Vibrio cholerae 0139-ARG"],["NCBITaxon%3A1294144","Vibrio cholerae 01-1751"],["NCBITaxon%3A592313","Vibrio cholerae 12129(1)"],["NCBITaxon%3A412966","Vibrio cholerae 1587"]]},{"id":"NCBITaxon:1129771","l":"Leptotrichiaceae","na":5,"nb":169,"a":[["dorsum-bto-0001713.html","dorsum"],["gut-bto-0000545.html","gut"],["saliva-bto-0001202.html","saliva"],["skin-bto-0001253.html","skin"],["vaginal-fluid-bto-0003084.html","vaginal fluid"]],"b":[["NCBITaxon%3A1766719","Caviibacter abscessus"],["NCBITaxon%3A2024962","Caviibacter sp."],["NCBITaxon%3A3239304","Leptotrichia alba"],["NCBITaxon%3A40542","Leptotrichia buccalis"],["NCBITaxon%3A523794","Leptotrichia buccalis C-1013-b"],["NCBITaxon%3A230138","Leptotrichia genomosp. C1"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":5,"nb":56,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["pseudostem-bto-0005992.html","pseudostem"],["seedling-bto-0001228.html","seedling"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A61645","Enterobacter asburiae"],["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A1328422","Enterobacter cloacae BIDMC 33A"],["NCBITaxon%3A1439324","Enterobacter cloacae BIDMC 66"],["NCBITaxon%3A1439325","Enterobacter cloacae BIDMC 67"],["NCBITaxon%3A1329846","Enterobacter cloacae BIDMC 8"]]},{"id":"NCBITaxon:747","l":"Pasteurella multocida","na":5,"nb":38,"a":[["bronchus-uberon-0002185.html","bronchus"],["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["finger-bto-0004669.html","finger"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A714","Aggregatibacter actinomycetemcomitans"],["NCBITaxon%3A747","Pasteurella multocida"],["NCBITaxon%3A1298929","Pasteurella multocida 1500C"],["NCBITaxon%3A1298924","Pasteurella multocida 1500E"],["NCBITaxon%3A1298925","Pasteurella multocida 2000"],["NCBITaxon%3A1075089","Pasteurella multocida 36950"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":5,"nb":33,"a":[["liquid-water-envo-00002006.html","liquid water"],["food-spoiled-foodon-00003366.html","food (spoiled)"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"]],"b":[["NCBITaxon%3A85698","Achromobacter xylosoxidans"],["NCBITaxon%3A152480","Burkholderia ambifaria"],["NCBITaxon%3A179879","Burkholderia anthina"],["NCBITaxon%3A488730","Burkholderia arboris"],["NCBITaxon%3A95486","Burkholderia cenocepacia"],["NCBITaxon%3A292","Burkholderia cepacia"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":32,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"],["midgut-bto-0000863.html","midgut"],["paddy-field-envo-00000297.html","paddy field"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["NCBITaxon%3A2703793","Serratia bockelmannii"],["NCBITaxon%3A615","Serratia marcescens"],["NCBITaxon%3A1257036","Serratia marcescens 12"],["NCBITaxon%3A1255611","Serratia marcescens 448"],["NCBITaxon%3A1333586","Serratia marcescens AB42556419-isolate1"],["NCBITaxon%3A1400186","Serratia marcescens BIDMC 44"]]},{"id":"NCBITaxon:114248","l":"Tepidimonas","na":5,"nb":25,"a":[["gut-bto-0000545.html","gut"],["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["skin-bto-0001253.html","skin"]],"b":[["NCBITaxon%3A2588942","Tepidimonas alkaliphilus"],["NCBITaxon%3A247482","Tepidimonas aquatica"],["NCBITaxon%3A288769","Tepidimonas arfidensis"],["NCBITaxon%3A2267262","Tepidimonas charontis"],["NCBITaxon%3A1101373","Tepidimonas fonticaldi"],["NCBITaxon%3A114249","Tepidimonas ignava"]]},{"id":"NCBITaxon:109790","l":"Lactobacillus jensenii","na":5,"nb":22,"a":[["egg-food-product-foodon-00001274.html","egg food product"],["vagina-uberon-0000996.html","vagina"],["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A1579","Lactobacillus acidophilus"],["NCBITaxon%3A109790","Lactobacillus jensenii"],["NCBITaxon%3A440497","Lactobacillus jensenii 1153"],["NCBITaxon%3A575605","Lactobacillus jensenii 115-3-CHN"],["NCBITaxon%3A596326","Lactobacillus jensenii 208-1"],["NCBITaxon%3A596325","Lactobacillus jensenii 269-3"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":5,"nb":22,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["pseudostem-bto-0005992.html","pseudostem"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A221276","[Curtobacterium] plantarum"],["NCBITaxon%3A558","Erwinia sp."],["NCBITaxon%3A83655","Leclercia adecarboxylata"],["NCBITaxon%3A549","Pantoea agglomerans"],["NCBITaxon%3A1261128","Pantoea agglomerans 299R"]]},{"id":"NCBITaxon:1245","l":"Leuconostoc mesenteroides","na":5,"nb":20,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["leaf-po-0025034.html","leaf"],["animal-manure-envo-00003031.html","animal manure"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A33964","Leuconostoc citreum"],["NCBITaxon%3A1245","Leuconostoc mesenteroides"],["NCBITaxon%3A1357402","Leuconostoc mesenteroides A16_17"],["NCBITaxon%3A427140","Leuconostoc mesenteroides KFRI-MG"],["NCBITaxon%3A1429888","Leuconostoc mesenteroides P45"],["NCBITaxon%3A33965","Leuconostoc mesenteroides subsp. cremoris"]]},{"id":"NCBITaxon:95486","l":"Burkholderia cenocepacia","na":5,"nb":18,"a":[["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["NCBITaxon%3A95486","Burkholderia cenocepacia"],["NCBITaxon%3A1110700","Burkholderia cenocepacia AU16956"],["NCBITaxon%3A1110701","Burkholderia cenocepacia AU16958"],["NCBITaxon%3A985077","Burkholderia cenocepacia BC7"],["NCBITaxon%3A1165869","Burkholderia cenocepacia D2AES"],["NCBITaxon%3A1055524","Burkholderia cenocepacia H111"]]},{"id":"NCBITaxon:1363","l":"Lactococcus garvieae","na":5,"nb":16,"a":[["animal-house-envo-00003040.html","animal house"],["gall-bladder-bto-0000493.html","gall bladder"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["geographic-feature-envo-00000000.html","geographic feature"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["NCBITaxon%3A1363","Lactococcus garvieae"],["NCBITaxon%3A998087","Lactococcus garvieae 21881"],["NCBITaxon%3A913847","Lactococcus garvieae 8831"],["NCBITaxon%3A420889","Lactococcus garvieae ATCC 49156"],["NCBITaxon%3A1231377","Lactococcus garvieae DCC43"],["NCBITaxon%3A1229517","Lactococcus garvieae I113"]]},{"id":"NCBITaxon:109326","l":"Anaerovorax","na":5,"nb":15,"a":[["cecum-bto-0000166.html","cecum"],["dorsum-bto-0001713.html","dorsum"],["gut-bto-0000545.html","gut"],["intestine-bto-0000648.html","intestine"],["tongue-bto-0001385.html","tongue"]],"b":[["NCBITaxon%3A109327","Anaerovorax odorimutans"],["NCBITaxon%3A1120998","Anaerovorax odorimutans DSM 5092"],["NCBITaxon%3A1872534","Anaerovorax sp."],["NCBITaxon%3A1151487","Anaerovorax sp. canine oral taxon 125"],["NCBITaxon%3A1729608","Anaerovorax sp. E109"],["NCBITaxon%3A511452","Anaerovorax sp. enrichment culture clone D2CL_Bac_16S_Clone16"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":14,"nb":5,"a":[["watercourse-envo-00000029.html","watercourse"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A34","Myxococcus xanthus"],["NCBITaxon%3A246197","Myxococcus xanthus DK 1622"],["NCBITaxon%3A1198133","Myxococcus xanthus DZ2"],["NCBITaxon%3A1198538","Myxococcus xanthus DZF1"],["NCBITaxon%3A675543","Myxococcus xanthus NewJersey2"]]},{"id":"NCBITaxon:1292","l":"Staphylococcus warneri","na":5,"nb":13,"a":[["neonate-bto-0001762.html","neonate"],["skin-of-body-uberon-0002097.html","skin of body"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A1283","Staphylococcus haemolyticus"],["NCBITaxon%3A1290","Staphylococcus hominis"],["NCBITaxon%3A29385","Staphylococcus saprophyticus"],["NCBITaxon%3A29387","Staphylococcus sp."],["NCBITaxon%3A1292","Staphylococcus warneri"],["NCBITaxon%3A1255582","Staphylococcus warneri 1445"]]},{"id":"NCBITaxon:529","l":"Brucella anthropi","na":5,"nb":13,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["hospital-envo-00002173.html","hospital"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A1775538","Acidovorax sp. JCM 10070"],["NCBITaxon%3A1775539","Acidovorax sp. JCM 10072"],["NCBITaxon%3A529","Brucella anthropi"],["NCBITaxon%3A1201037","Brucella anthropi 60a"],["NCBITaxon%3A439375","Brucella anthropi ATCC 49188"],["NCBITaxon%3A1151114","Brucella anthropi CTS-325"]]},{"id":"NCBITaxon:1318","l":"Streptococcus parasanguinis","na":5,"nb":12,"a":[["biofilm-envo-00002034.html","biofilm"],["geographic-feature-envo-00000000.html","geographic feature"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"],["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["NCBITaxon%3A45634","Streptococcus cristatus"],["NCBITaxon%3A1318","Streptococcus parasanguinis"],["NCBITaxon%3A760570","Streptococcus parasanguinis ATCC 15912"],["NCBITaxon%3A888048","Streptococcus parasanguinis ATCC 903"],["NCBITaxon%3A1073372","Streptococcus parasanguinis CC87K"],["NCBITaxon%3A1403947","Streptococcus parasanguinis DORA_23_24"]]},{"id":"NCBITaxon:1393","l":"Brevibacillus brevis","na":5,"nb":12,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A1391","Aneurinibacillus aneurinilyticus"],["NCBITaxon%3A267746","Aneurinibacillus danicus"],["NCBITaxon%3A47500","Aneurinibacillus migulanus"],["NCBITaxon%3A45462","Brevibacillus borstelensis"],["NCBITaxon%3A1393","Brevibacillus brevis"],["NCBITaxon%3A1129895","Brevibacillus brevis FJAT-0809-GLX"]]},{"id":"NCBITaxon:1405","l":"Bacillus mycoides","na":5,"nb":10,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["milk-uberon-0001913.html","milk"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A1405","Bacillus mycoides"],["NCBITaxon%3A695755","Bacillus mycoides AH1143"],["NCBITaxon%3A526997","Bacillus mycoides DSM 2048"],["NCBITaxon%3A1227358","Bacillus mycoides FSL H7-687"],["NCBITaxon%3A1227359","Bacillus mycoides FSL R5-860"],["NCBITaxon%3A315730","Bacillus mycoides KBAB4"]]},{"id":"NCBITaxon:354242","l":"Campylobacter jejuni subsp. jejuni 81-176","na":5,"nb":9,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["leukocyte-bto-0000751.html","leukocyte"],["lymphocyte-bto-0000775.html","lymphocyte"],["neutrophil-bto-0000130.html","neutrophil"],["small-intestine-bto-0000651.html","small intestine"]],"b":[["NCBITaxon%3A354242","Campylobacter jejuni subsp. jejuni 81-176"],["NCBITaxon%3A1368608","Campylobacter jejuni subsp. jejuni 81-176-55"],["NCBITaxon%3A1368609","Campylobacter jejuni subsp. jejuni 81-176-55-O1"],["NCBITaxon%3A1368610","Campylobacter jejuni subsp. jejuni 81-176-55-O3"],["NCBITaxon%3A1368611","Campylobacter jejuni subsp. jejuni 81-176-55-T1"],["NCBITaxon%3A1368612","Campylobacter jejuni subsp. jejuni 81-176-55-T3"]]},{"id":"NCBITaxon:37919","l":"Rhodococcus opacus","na":5,"nb":9,"a":[["watercourse-envo-00000029.html","watercourse"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"],["sludge-envo-00002044.html","sludge"],["water-scum-envo-00005794.html","water scum"]],"b":[["NCBITaxon%3A1833","Rhodococcus erythropolis"],["NCBITaxon%3A37919","Rhodococcus opacus"],["NCBITaxon%3A632772","Rhodococcus opacus B4"],["NCBITaxon%3A1129896","Rhodococcus opacus M213"],["NCBITaxon%3A1219021","Rhodococcus opacus NBRC 100626"],["NCBITaxon%3A543736","Rhodococcus opacus PD630"]]},{"id":"NCBITaxon:732","l":"Aggregatibacter aphrophilus","na":9,"nb":5,"a":[["bone-element-uberon-0001474.html","bone element"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["archeological-site-envo-00000564.html","archeological site"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["NCBITaxon%3A732","Aggregatibacter aphrophilus"],["NCBITaxon%3A985008","Aggregatibacter aphrophilus ATCC 33389"],["NCBITaxon%3A679198","Aggregatibacter aphrophilus F0387"],["NCBITaxon%3A634176","Aggregatibacter aphrophilus NJ8700"],["NCBITaxon%3A249188","Haemophilus pittmaniae"]]},{"id":"NCBITaxon:1015","l":"Bergeyella zoohelcum","na":8,"nb":5,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["biotope-envo-00002036.html","biotope"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A1962306","Bergeyella sp."],["NCBITaxon%3A1015","Bergeyella zoohelcum"],["NCBITaxon%3A883096","Bergeyella zoohelcum ATCC 43767"],["NCBITaxon%3A883098","Bergeyella zoohelcum CCUG 30536"],["NCBITaxon%3A34059","Faucicola atlantae"]]},{"id":"NCBITaxon:1505","l":"Paraclostridium sordellii","na":8,"nb":5,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["animal-house-envo-00003040.html","animal house"],["animal-litter-envo-00002191.html","animal litter"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["mud-envo-01000001.html","mud"]],"b":[["NCBITaxon%3A1490","Paraclostridium bifermentans"],["NCBITaxon%3A1505","Paraclostridium sordellii"],["NCBITaxon%3A1172204","Paraclostridium sordellii 8483"],["NCBITaxon%3A1292036","Paraclostridium sordellii ATCC 9714"],["NCBITaxon%3A1292035","Paraclostridium sordellii VPI 9048"]]},{"id":"NCBITaxon:28038","l":"Latilactobacillus curvatus","na":5,"nb":8,"a":[["research-facility-envo-00000469.html","research facility"],["food-fermented-foodon-00001258.html","food (fermented)"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A418199","Lactobacillus sp. JCM 7527"],["NCBITaxon%3A28038","Latilactobacillus curvatus"],["NCBITaxon%3A1074451","Latilactobacillus curvatus CRL 705"],["NCBITaxon%3A1357401","Latilactobacillus curvatus F16_9"],["NCBITaxon%3A1293592","Latilactobacillus curvatus JCM 1096 = DSM 20019"],["NCBITaxon%3A1318630","Latilactobacillus curvatus WSU1"]]},{"id":"NCBITaxon:29355","l":"Ruminiclostridium cellobioparum","na":7,"nb":5,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["activated-sludge-envo-00002046.html","activated sludge"],["cultivated-environment-envo-01000311.html","cultivated environment"],["mud-envo-01000001.html","mud"],["pig-manure-envo-00003860.html","pig manure"]],"b":[["NCBITaxon%3A29355","Ruminiclostridium cellobioparum"],["NCBITaxon%3A1121303","Ruminiclostridium cellobioparum DSM 1351 = ATCC 15832"],["NCBITaxon%3A2305018","Ruminiclostridium cellobioparum subsp. cellobioparum"],["NCBITaxon%3A29371","Ruminiclostridium cellobioparum subsp. termitidis"],["NCBITaxon%3A1195236","Ruminiclostridium cellobioparum subsp. termitidis CT1112"]]},{"id":"NCBITaxon:40518","l":"Ruminococcus bromii","na":5,"nb":7,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["emulsion-envo-00010506.html","emulsion"],["skin-environment-envo-2100003.html","skin environment"],["animal-habitation-envo-00005803.html","animal habitation"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A40518","Ruminococcus bromii"],["NCBITaxon%3A657321","Ruminococcus bromii L2-63"],["NCBITaxon%3A1339598","Ruminococcus bromii TSDC10.1-1.1"],["NCBITaxon%3A1339599","Ruminococcus bromii TSDC10.2-1.1"],["NCBITaxon%3A1339600","Ruminococcus bromii TSDC17.2-1.1"],["NCBITaxon%3A1339601","Ruminococcus bromii TSDC17.2-1.2"]]},{"id":"NCBITaxon:1032526","l":"Pedosphaera","na":5,"nb":6,"a":[["cecum-bto-0000166.html","cecum"],["gut-bto-0000545.html","gut"],["inflorescence-bto-0000628.html","inflorescence"],["plant-bto-0001481.html","plant"],["root-bto-0001188.html","root"]],"b":[["NCBITaxon%3A1032527","Pedosphaera parvula"],["NCBITaxon%3A320771","Pedosphaera parvula Ellin514"],["NCBITaxon%3A2024890","Pedosphaera sp."],["NCBITaxon%3A1805321","Pedosphaera sp. 13_1_40CM_3_59_3"],["NCBITaxon%3A1982324","Pedosphaera sp. Tous-C6FEB"],["NCBITaxon%3A1191521","uncultured Pedosphaera sp."]]},{"id":"NCBITaxon:114847","l":"uncultured Roseobacter sp.","na":5,"nb":6,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"],["marine-environment-envo-01000320.html","marine environment"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"]],"b":[["NCBITaxon%3A1906325","uncultured Roseobacter bacterium"],["NCBITaxon%3A1906326","uncultured Roseobacter clade_AS-21 lineage bacterium"],["NCBITaxon%3A1906327","uncultured Roseobacter clade_DC5-80-3 lineage bacterium"],["NCBITaxon%3A1906328","uncultured Roseobacter clade_NAC11-7 lineage bacterium"],["NCBITaxon%3A1906329","uncultured Roseobacter clade_OCT lineage bacterium"],["NCBITaxon%3A114847","uncultured Roseobacter sp."]]},{"id":"NCBITaxon:1288","l":"Staphylococcus xylosus","na":5,"nb":6,"a":[["stream-envo-00000023.html","stream"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"],["fecal-environment-envo-01001029.html","fecal environment"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["NCBITaxon%3A246432","Staphylococcus equorum"],["NCBITaxon%3A1293","Staphylococcus gallinarum"],["NCBITaxon%3A29387","Staphylococcus sp."],["NCBITaxon%3A1288","Staphylococcus xylosus"],["NCBITaxon%3A1353979","Staphylococcus xylosus DMB3-Bh1"],["NCBITaxon%3A1262650","Staphylococcus xylosus NJ"]]},{"id":"NCBITaxon:1861","l":"Geodermatophilus obscurus","na":5,"nb":6,"a":[["desert-sand-envo-00005800.html","desert sand"],["tropical-envo-01000204.html","tropical"],["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A1296565","Geodermatophilus amargosae"],["NCBITaxon%3A1523247","Geodermatophilus dictyosporus"],["NCBITaxon%3A1861","Geodermatophilus obscurus"],["NCBITaxon%3A526225","Geodermatophilus obscurus DSM 43160"],["NCBITaxon%3A1523248","Geodermatophilus obscurus subsp. utahensis"],["NCBITaxon%3A97398","Streptomyces abikoensis"]]},{"id":"NCBITaxon:29549","l":"Rhodothermus marinus","na":6,"nb":5,"a":[["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["cultivated-environment-envo-01000311.html","cultivated environment"],["freshwater-environment-envo-01000306.html","freshwater environment"],["oil-spill-envo-00002061.html","oil spill"],["phreatic-zone-envo-00000329.html","phreatic zone"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A29549","Rhodothermus marinus"],["NCBITaxon%3A518766","Rhodothermus marinus DSM 4252"],["NCBITaxon%3A1295135","Rhodothermus marinus JCM 9785"],["NCBITaxon%3A762569","Rhodothermus marinus SG0.5JP17-171"],["NCBITaxon%3A762570","Rhodothermus marinus SG0.5JP17-172"]]},{"id":"NCBITaxon:34062","l":"Faucicola osloensis","na":5,"nb":6,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"],["water-scum-envo-00005794.html","water scum"]],"b":[["NCBITaxon%3A34062","Faucicola osloensis"],["NCBITaxon%3A478","Moraxella nonliquefaciens"],["NCBITaxon%3A1138309","Moraxella osloensis ARD 1"],["NCBITaxon%3A1138312","Moraxella osloensis ARD 11"],["NCBITaxon%3A1138310","Moraxella osloensis ARD 2"],["NCBITaxon%3A1138311","Moraxella osloensis ARD 3"]]},{"id":"NCBITaxon:730","l":"[Haemophilus] ducreyi","na":5,"nb":6,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["NCBITaxon%3A730","[Haemophilus] ducreyi"],["NCBITaxon%3A1005044","[Haemophilus] ducreyi 025"],["NCBITaxon%3A233412","[Haemophilus] ducreyi 35000HP"],["NCBITaxon%3A1005045","[Haemophilus] ducreyi 511"],["NCBITaxon%3A1005046","[Haemophilus] ducreyi ATCC 33921"],["NCBITaxon%3A1005047","[Haemophilus] ducreyi HMC112"]]},{"id":"NCBITaxon:1659","l":"Actinomyces israelii","na":5,"nb":5,"a":[["bone-element-uberon-0001474.html","bone element"],["archeological-site-envo-00000564.html","archeological site"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"],["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["NCBITaxon%3A52769","Actinomyces gerencseriae"],["NCBITaxon%3A1659","Actinomyces israelii"],["NCBITaxon%3A1120944","Actinomyces israelii DSM 43320"],["NCBITaxon%3A686663","Actinomyces israelii F0345"],["NCBITaxon%3A1655","Actinomyces naeslundii"]]},{"id":"NCBITaxon:2047","l":"Rothia dentocariosa","na":5,"nb":5,"a":[["water-body-envo-00000063.html","water body"],["skin-of-body-uberon-0002097.html","skin of body"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["tropical-envo-01000204.html","tropical"],["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["NCBITaxon%3A42858","Mammaliicoccus lentus"],["NCBITaxon%3A2047","Rothia dentocariosa"],["NCBITaxon%3A762948","Rothia dentocariosa ATCC 17931"],["NCBITaxon%3A553202","Rothia dentocariosa JCVIHMP031"],["NCBITaxon%3A563032","Rothia dentocariosa M567"]]},{"id":"NCBITaxon:1385","l":"Caryophanales","na":4,"nb":64257,"a":[["hand-bto-0004668.html","hand"],["intestine-bto-0000648.html","intestine"],["leaf-bto-0000713.html","leaf"],["mouth-bto-0001090.html","mouth"]],"b":[["NCBITaxon%3A3417167","Abyssicoccaceae bacterium KTH-63"],["NCBITaxon%3A1817405","Abyssicoccus albus"],["NCBITaxon%3A1973112","Abyssicoccus sp."],["NCBITaxon%3A1870825","Acidibacillus sp."],["NCBITaxon%3A3054939","Aciduricibacillus chroicocephali"],["NCBITaxon%3A279215","Aeribacillus alveayuensis"]]},{"id":"NCBITaxon:356","l":"Hyphomicrobiales","na":4,"nb":37310,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["stem-bto-0001300.html","stem"]],"b":[["NCBITaxon%3A119160","2,3-D degrading bacterium NHC2"],["NCBITaxon%3A119159","2,3-D degrading bacterium NHG3"],["NCBITaxon%3A83488","2,4-D degrading bacterium M1"],["NCBITaxon%3A2910977","Acuticoccus kalidii"],["NCBITaxon%3A2073160","Acuticoccus kandeliae"],["NCBITaxon%3A2796142","Acuticoccus mangrovi"]]},{"id":"NCBITaxon:374","l":"Bradyrhizobium","na":4,"nb":9860,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"],["wood-bto-0005516.html","wood"]],"b":[["NCBITaxon%3A2683706","Bradyrhizobium acaciae"],["NCBITaxon%3A2734909","Bradyrhizobium aeschynomenes"],["NCBITaxon%3A2751811","Bradyrhizobium agreste"],["NCBITaxon%3A634784","Bradyrhizobium algeriense"],["NCBITaxon%3A1571202","Bradyrhizobium altum"],["NCBITaxon%3A1300045","Bradyrhizobium americanum"]]},{"id":"NCBITaxon:33882","l":"Microbacterium","na":4,"nb":5935,"a":[["leaf-bto-0000713.html","leaf"],["pitcher-bto-0001069.html","pitcher"],["small-intestine-bto-0000651.html","small intestine"],["stem-bto-0001300.html","stem"]],"b":[["NCBITaxon%3A196883","Arctic sea ice bacterium ARK10030"],["NCBITaxon%3A3121366","Candidatus Microbacterium colombiense"],["NCBITaxon%3A3121374","Candidatus Microbacterium phytovorans"],["NCBITaxon%3A2838696","Candidatus Microbacterium pullistercoris"],["NCBITaxon%3A2838697","Candidatus Microbacterium stercoravium"],["NCBITaxon%3A272239","Gulosibacter bifidus"]]},{"id":"NCBITaxon:1827","l":"Rhodococcus","na":4,"nb":3197,"a":[["nectar-bto-0000537.html","nectar"],["pitcher-bto-0001069.html","pitcher"],["small-intestine-bto-0000651.html","small intestine"],["stem-bto-0001300.html","stem"]],"b":[["NCBITaxon%3A179179","bromate-reducing bacterium B7"],["NCBITaxon%3A179180","bromate-reducing bacterium B8"],["NCBITaxon%3A983873","Dietzia aurantiaca"],["NCBITaxon%3A84096","Gordonia alkanivorans"],["NCBITaxon%3A178933","PAH-contaminated sludge bacterium PB-32"],["NCBITaxon%3A43767","Prescottella equi"]]},{"id":"NCBITaxon:75682","l":"Oxalobacteraceae","na":4,"nb":3139,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["NCBITaxon%3A1051899","Actimicrobium antarcticum"],["NCBITaxon%3A2792609","Actimicrobium sp."],["NCBITaxon%3A3048606","Actimicrobium sp. CCC2.4"],["NCBITaxon%3A3048616","Actimicrobium sp. CCI2.3"],["NCBITaxon%3A3071708","Actimicrobium sp. GrIS 1.19"],["NCBITaxon%3A1550357","Actimicrobium sp. MsC-12-4CB4-02"]]},{"id":"NCBITaxon:186804","l":"Peptostreptococcaceae","na":4,"nb":684,"a":[["adult-bto-0001043.html","adult"],["ileum-bto-0000620.html","ileum"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A29359","Asaccharospora irregularis"],["NCBITaxon%3A1121321","Asaccharospora irregularis DSM 2635"],["NCBITaxon%3A1965303","Asaccharospora sp."],["NCBITaxon%3A226526","Candidatus Peptostreptococcus massiliensis"],["NCBITaxon%3A155565","Clostridioides aff. difficile AA1"],["NCBITaxon%3A1496","Clostridioides difficile"]]},{"id":"NCBITaxon:204432","l":"Terriglobia","na":4,"nb":410,"a":[["crop-bto-0000301.html","crop"],["leaf-bto-0000713.html","leaf"],["oil-secretion-bto-0005373.html","oil secretion"],["trunk-bto-0001493.html","trunk"]],"b":[["NCBITaxon%3A1335627","Acidicapsa acidiphila"],["NCBITaxon%3A1615681","Acidicapsa acidisoli"],["NCBITaxon%3A946336","Acidicapsa borealis"],["NCBITaxon%3A2218256","Acidicapsa dinghuensis"],["NCBITaxon%3A1335629","Acidicapsa ferrireducens"],["NCBITaxon%3A542300","Acidicapsa ligni"]]},{"id":"NCBITaxon:102106","l":"Collinsella","na":4,"nb":287,"a":[["cecum-bto-0000166.html","cecum"],["gut-bto-0000545.html","gut"],["intestine-bto-0000648.html","intestine"],["juvenile-bto-0002168.html","juvenile"]],"b":[["NCBITaxon%3A2838522","Candidatus Collinsella stercoripullorum"],["NCBITaxon%3A2713419","Collinsella acetigenes"],["NCBITaxon%3A74426","Collinsella aerofaciens"],["NCBITaxon%3A411903","Collinsella aerofaciens ATCC 25986"],["NCBITaxon%3A1339403","Collinsella aerofaciens TSDA1.2-1.1"],["NCBITaxon%3A1339404","Collinsella aerofaciens TSDA1.2-1.2"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":4,"nb":178,"a":[["stream-envo-00000023.html","stream"],["biome-envo-00000428.html","biome"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["NCBITaxon%3A150055","Streptococcus lutetiensis"],["NCBITaxon%3A1309","Streptococcus mutans"],["NCBITaxon%3A857155","Streptococcus mutans 11A1"],["NCBITaxon%3A857147","Streptococcus mutans 11SSST2"],["NCBITaxon%3A857143","Streptococcus mutans 11VS1"],["NCBITaxon%3A857113","Streptococcus mutans 14D"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":4,"nb":156,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A1428","Bacillus thuringiensis"],["NCBITaxon%3A1340496","Bacillus thuringiensis AKS-7"],["NCBITaxon%3A714359","Bacillus thuringiensis BMB171"],["NCBITaxon%3A1423143","Bacillus thuringiensis Bt18247"],["NCBITaxon%3A1423142","Bacillus thuringiensis Bt18679"],["NCBITaxon%3A527021","Bacillus thuringiensis Bt407"]]},{"id":"NCBITaxon:195","l":"Campylobacter coli","na":4,"nb":122,"a":[["feces-uberon-0001988.html","feces"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A195","Campylobacter coli"],["NCBITaxon%3A887290","Campylobacter coli 1091"],["NCBITaxon%3A887291","Campylobacter coli 1098"],["NCBITaxon%3A887280","Campylobacter coli 111-3"],["NCBITaxon%3A887292","Campylobacter coli 1148"],["NCBITaxon%3A887282","Campylobacter coli 132-6"]]},{"id":"NCBITaxon:518","l":"Bordetella bronchiseptica","na":4,"nb":68,"a":[["mc3t3-e1-cell-bto-0001957.html","MC3T3-E1 cell"],["osteoblast-bto-0001593.html","osteoblast"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"]],"b":[["NCBITaxon%3A518","Bordetella bronchiseptica"],["NCBITaxon%3A1331198","Bordetella bronchiseptica 00-P-2730"],["NCBITaxon%3A1331199","Bordetella bronchiseptica 00-P-2796"],["NCBITaxon%3A1208657","Bordetella bronchiseptica 1289"],["NCBITaxon%3A1331246","Bordetella bronchiseptica 2230997"],["NCBITaxon%3A568707","Bordetella bronchiseptica 253"]]},{"id":"NCBITaxon:10","l":"Cellvibrio","na":4,"nb":67,"a":[["inflorescence-bto-0000628.html","inflorescence"],["plant-bto-0001481.html","plant"],["root-bto-0001188.html","root"],["seedling-bto-0001228.html","seedling"]],"b":[["NCBITaxon%3A3102792","Cellvibrio chitinivorans"],["NCBITaxon%3A1193626","Cellvibrio diazotrophicus"],["NCBITaxon%3A126350","Cellvibrio fibrivorans"],["NCBITaxon%3A1815559","Cellvibrio fontiphilus"],["NCBITaxon%3A180916","Cellvibrio fulvus"],["NCBITaxon%3A126348","Cellvibrio gandavensis"]]},{"id":"NCBITaxon:1257","l":"Peptostreptococcus","na":4,"nb":59,"a":[["dorsum-bto-0001713.html","dorsum"],["saliva-bto-0001202.html","saliva"],["sgs-cell-bto-0001210.html","SGS cell"],["tongue-bto-0001385.html","tongue"]],"b":[["NCBITaxon%3A226526","Candidatus Peptostreptococcus massiliensis"],["NCBITaxon%3A1261","Peptostreptococcus anaerobius"],["NCBITaxon%3A596329","Peptostreptococcus anaerobius 653-L"],["NCBITaxon%3A1263100","Peptostreptococcus anaerobius CAG:621"],["NCBITaxon%3A1073365","Peptostreptococcus anaerobius CC14N"],["NCBITaxon%3A1035196","Peptostreptococcus anaerobius VPI 4330 = DSM 2949"]]},{"id":"NCBITaxon:520","l":"Bordetella pertussis","na":4,"nb":50,"a":[["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["NCBITaxon%3A520","Bordetella pertussis"],["NCBITaxon%3A1403053","Bordetella pertussis 137"],["NCBITaxon%3A568706","Bordetella pertussis 18323"],["NCBITaxon%3A1460378","Bordetella pertussis 1996168"],["NCBITaxon%3A1331247","Bordetella pertussis 2250905"],["NCBITaxon%3A1331248","Bordetella pertussis 2356847"]]},{"id":"NCBITaxon:504","l":"Kingella kingae","na":4,"nb":47,"a":[["bone-element-uberon-0001474.html","bone element"],["foot-bto-0000476.html","foot"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["NCBITaxon%3A504","Kingella kingae"],["NCBITaxon%3A1188007","Kingella kingae 11220434"],["NCBITaxon%3A1305792","Kingella kingae AA068"],["NCBITaxon%3A1305787","Kingella kingae AA105"],["NCBITaxon%3A1305788","Kingella kingae AA255"],["NCBITaxon%3A1305791","Kingella kingae AA417"]]},{"id":"NCBITaxon:150022","l":"Finegoldia","na":4,"nb":39,"a":[["hand-bto-0004668.html","hand"],["sgs-cell-bto-0001210.html","SGS cell"],["vagina-bto-0000243.html","vagina"],["vaginal-fluid-bto-0003084.html","vaginal fluid"]],"b":[["NCBITaxon%3A3145239","Finegoldia dalianensis"],["NCBITaxon%3A1260","Finegoldia magna"],["NCBITaxon%3A768713","Finegoldia magna ACS-171-V-Col3"],["NCBITaxon%3A1459804","Finegoldia magna ALB8"],["NCBITaxon%3A334413","Finegoldia magna ATCC 29328"],["NCBITaxon%3A525282","Finegoldia magna ATCC 53516"]]},{"id":"NCBITaxon:155493","l":"Gallibacterium","na":4,"nb":35,"a":[["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"],["tongue-bto-0001385.html","tongue"],["trachea-bto-0001388.html","trachea"]],"b":[["NCBITaxon%3A750","Gallibacterium anatis"],["NCBITaxon%3A1396515","Gallibacterium anatis 10672-6"],["NCBITaxon%3A1195244","Gallibacterium anatis 12656/12"],["NCBITaxon%3A1396510","Gallibacterium anatis 4895"],["NCBITaxon%3A1396511","Gallibacterium anatis 7990"],["NCBITaxon%3A1380411","Gallibacterium anatis biovar haemolytica"]]},{"id":"NCBITaxon:1335","l":"Streptococcus equinus","na":4,"nb":27,"a":[["foregut-bto-0000507.html","foregut"],["stomach-bto-0001307.html","stomach"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["NCBITaxon%3A1335","Streptococcus equinus"],["NCBITaxon%3A1410675","Streptococcus equinus 2B"],["NCBITaxon%3A1210006","Streptococcus equinus ATCC 33317"],["NCBITaxon%3A864569","Streptococcus equinus ATCC 700338"],["NCBITaxon%3A525379","Streptococcus equinus ATCC 9812"],["NCBITaxon%3A1280690","Streptococcus equinus B315"]]},{"id":"NCBITaxon:158851","l":"Trabulsiella","na":4,"nb":24,"a":[["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"],["midgut-bto-0000863.html","midgut"],["pseudostem-bto-0005992.html","pseudostem"]],"b":[["NCBITaxon%3A158852","Trabulsiella guamensis"],["NCBITaxon%3A1005994","Trabulsiella guamensis ATCC 49490"],["NCBITaxon%3A379893","Trabulsiella odontotermitis"],["NCBITaxon%3A1905692","Trabulsiella sp."],["NCBITaxon%3A1661248","Trabulsiella sp. 12x"],["NCBITaxon%3A1547017","Trabulsiella sp. 140H"]]},{"id":"NCBITaxon:33","l":"Myxococcus fulvus","na":21,"nb":4,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"]],"b":[["NCBITaxon%3A33","Myxococcus fulvus"],["NCBITaxon%3A1334629","Myxococcus fulvus 124B02"],["NCBITaxon%3A483219","Myxococcus fulvus HW-1"],["NCBITaxon%3A675525","Myxococcus fulvus Mx f65"]]},{"id":"NCBITaxon:85698","l":"Achromobacter xylosoxidans","na":4,"nb":21,"a":[["hospital-envo-00002173.html","hospital"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["NCBITaxon%3A1389935","Achromobacter animicus"],["NCBITaxon%3A1353891","Achromobacter deleyi"],["NCBITaxon%3A32002","Achromobacter denitrificans"],["NCBITaxon%3A217204","Achromobacter insolitus"],["NCBITaxon%3A1287735","Achromobacter insuavis"],["NCBITaxon%3A470868","Achromobacter marplatensis"]]},{"id":"NCBITaxon:305","l":"Ralstonia solanacearum","na":4,"nb":19,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"],["pseudostem-bto-0005992.html","pseudostem"],["xylem-bto-0001468.html","xylem"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A1310165","Ralstonia pseudosolanacearum"],["NCBITaxon%3A305","Ralstonia solanacearum"],["NCBITaxon%3A859656","Ralstonia solanacearum CFBP2957"],["NCBITaxon%3A859655","Ralstonia solanacearum CMR15"],["NCBITaxon%3A1130828","Ralstonia solanacearum FJAT-1458"],["NCBITaxon%3A1130829","Ralstonia solanacearum FJAT-91"]]},{"id":"NCBITaxon:1334","l":"Streptococcus dysgalactiae","na":4,"nb":15,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["NCBITaxon%3A1334","Streptococcus dysgalactiae"],["NCBITaxon%3A99822","Streptococcus dysgalactiae subsp. dysgalactiae"],["NCBITaxon%3A663952","Streptococcus dysgalactiae subsp. dysgalactiae ATCC 27957"],["NCBITaxon%3A119602","Streptococcus dysgalactiae subsp. equisimilis"],["NCBITaxon%3A1247189","Streptococcus dysgalactiae subsp. equisimilis 167"],["NCBITaxon%3A759913","Streptococcus dysgalactiae subsp. equisimilis AC-2713"]]},{"id":"NCBITaxon:36773","l":"Burkholderia sp.","na":4,"nb":15,"a":[["compost-envo-00002170.html","compost"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["NCBITaxon%3A1108140","Burkholderia catarinensis"],["NCBITaxon%3A36773","Burkholderia sp."],["NCBITaxon%3A1777142","Caballeronia arationis"],["NCBITaxon%3A1777135","Caballeronia arvi"],["NCBITaxon%3A1777139","Caballeronia calidae"],["NCBITaxon%3A1777136","Caballeronia catudaia"]]},{"id":"NCBITaxon:480","l":"Moraxella catarrhalis","na":4,"nb":15,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["middle-ear-bto-0002099.html","middle ear"],["nasopharynx-bto-0000662.html","nasopharynx"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A480","Moraxella catarrhalis"],["NCBITaxon%3A857572","Moraxella catarrhalis 101P30B1"],["NCBITaxon%3A857579","Moraxella catarrhalis 103P14B1"],["NCBITaxon%3A857577","Moraxella catarrhalis 12P80B1"],["NCBITaxon%3A857578","Moraxella catarrhalis 46P47B1"],["NCBITaxon%3A857581","Moraxella catarrhalis 7169"]]},{"id":"NCBITaxon:1587","l":"Lactobacillus helveticus","na":4,"nb":14,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["intestine-environment-envo-2100002.html","intestine environment"],["urban-biome-envo-01000249.html","urban biome"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A1587","Lactobacillus helveticus"],["NCBITaxon%3A1226336","Lactobacillus helveticus CIRM-BIA 101"],["NCBITaxon%3A1226332","Lactobacillus helveticus CIRM-BIA 103"],["NCBITaxon%3A1226333","Lactobacillus helveticus CIRM-BIA 104"],["NCBITaxon%3A1226334","Lactobacillus helveticus CIRM-BIA 951"],["NCBITaxon%3A1226335","Lactobacillus helveticus CIRM-BIA 953"]]},{"id":"NCBITaxon:206","l":"Campylobacter sputorum","na":4,"nb":13,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["feces-uberon-0001988.html","feces"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A198","Campylobacter hyointestinalis"],["NCBITaxon%3A91352","Campylobacter hyointestinalis subsp. hyointestinalis"],["NCBITaxon%3A202","Campylobacter mucosalis"],["NCBITaxon%3A206","Campylobacter sputorum"],["NCBITaxon%3A1031919","Campylobacter sputorum biovar fecalis"],["NCBITaxon%3A593874","Campylobacter sputorum biovar paraureolyticus"]]},{"id":"NCBITaxon:1254","l":"Pediococcus acidilactici","na":4,"nb":11,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["research-facility-envo-00000469.html","research facility"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A1245","Leuconostoc mesenteroides"],["NCBITaxon%3A1254","Pediococcus acidilactici"],["NCBITaxon%3A563194","Pediococcus acidilactici 7_4"],["NCBITaxon%3A1384067","Pediococcus acidilactici AGR20"],["NCBITaxon%3A1306952","Pediococcus acidilactici D3"],["NCBITaxon%3A862514","Pediococcus acidilactici DSM 20284"]]},{"id":"NCBITaxon:111805","l":"Actinomadura pelletieri","na":10,"nb":4,"a":[["lake-envo-00000020.html","lake"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["foot-bto-0000476.html","foot"],["rhizosphere-envo-00005801.html","rhizosphere"],["organic-material-envo-01000155.html","organic material"]],"b":[["NCBITaxon%3A163603","Actinomadura latina"],["NCBITaxon%3A111805","Actinomadura pelletieri"],["NCBITaxon%3A1120940","Actinomadura pelletieri DSM 43383"],["NCBITaxon%3A37329","Nocardia farcinica"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":4,"nb":10,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A1891658","Geobacillus sp."],["NCBITaxon%3A1422","Geobacillus stearothermophilus"],["NCBITaxon%3A272567","Geobacillus stearothermophilus 10"],["NCBITaxon%3A1366047","Geobacillus stearothermophilus ATCC 12980"],["NCBITaxon%3A937593","Geobacillus stearothermophilus ATCC 7953"],["NCBITaxon%3A664733","Geobacillus stearothermophilus C56-N21"]]},{"id":"NCBITaxon:147","l":"Spirochaeta aurantia","na":10,"nb":4,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["water-body-envo-00000063.html","water body"]],"b":[["NCBITaxon%3A147","Spirochaeta aurantia"],["NCBITaxon%3A143778","Spirochaeta aurantia subsp. aurantia"],["NCBITaxon%3A555314","Spirochaeta aurantia subsp. aurantia M1"],["NCBITaxon%3A143779","Spirochaeta aurantia subsp. stricta"]]},{"id":"NCBITaxon:2209","l":"Methanosarcina mazei","na":4,"nb":10,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["sludge-envo-00002044.html","sludge"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["NCBITaxon%3A2209","Methanosarcina mazei"],["NCBITaxon%3A1434113","Methanosarcina mazei C16"],["NCBITaxon%3A192952","Methanosarcina mazei Go1"],["NCBITaxon%3A1293038","Methanosarcina mazei JCM 9314"],["NCBITaxon%3A1434114","Methanosarcina mazei LYC"],["NCBITaxon%3A213585","Methanosarcina mazei S-6"]]},{"id":"NCBITaxon:32002","l":"Achromobacter denitrificans","na":4,"nb":10,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"],["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A1353888","Achromobacter agilis"],["NCBITaxon%3A1353891","Achromobacter deleyi"],["NCBITaxon%3A32002","Achromobacter denitrificans"],["NCBITaxon%3A1255278","Achromobacter denitrificans NBRC 15125"],["NCBITaxon%3A1389922","Achromobacter mucicolens"],["NCBITaxon%3A134375","Achromobacter sp."]]},{"id":"NCBITaxon:76832","l":"Myroides odoratimimus","na":4,"nb":10,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["foot-bto-0000476.html","foot"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A979","Cellulophaga lytica"],["NCBITaxon%3A867900","Cellulophaga lytica DSM 7489"],["NCBITaxon%3A76832","Myroides odoratimimus"],["NCBITaxon%3A883150","Myroides odoratimimus CCUG 10230"],["NCBITaxon%3A883151","Myroides odoratimimus CCUG 12700"],["NCBITaxon%3A883152","Myroides odoratimimus CCUG 12901"]]},{"id":"NCBITaxon:87883","l":"Burkholderia multivorans","na":4,"nb":10,"a":[["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["NCBITaxon%3A87883","Burkholderia multivorans"],["NCBITaxon%3A395019","Burkholderia multivorans ATCC 17616"],["NCBITaxon%3A985079","Burkholderia multivorans ATCC BAA-247"],["NCBITaxon%3A985078","Burkholderia multivorans CF2"],["NCBITaxon%3A513051","Burkholderia multivorans CGD1"],["NCBITaxon%3A513052","Burkholderia multivorans CGD2"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":4,"nb":9,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["carcass-envo-00002033.html","carcass"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A28031","Lysinibacillus fusiformis"],["NCBITaxon%3A1130819","Lysinibacillus mangiferihumi"],["NCBITaxon%3A1421","Lysinibacillus sphaericus"],["NCBITaxon%3A444177","Lysinibacillus sphaericus C3-41"],["NCBITaxon%3A1400869","Lysinibacillus sphaericus CBAM5"],["NCBITaxon%3A1354027","Lysinibacillus sphaericus KCTC 3346"]]},{"id":"NCBITaxon:1682","l":"Bifidobacterium longum subsp. infantis","na":4,"nb":9,"a":[["egg-food-product-foodon-00001274.html","egg food product"],["breast-bto-0000149.html","breast"],["ht-29-cell-bto-0000182.html","HT-29 cell"],["ma-104-cell-bto-0004983.html","MA-104 cell"]],"b":[["NCBITaxon%3A1686","Bifidobacterium catenulatum"],["NCBITaxon%3A630129","Bifidobacterium catenulatum subsp. kashiwanohense"],["NCBITaxon%3A216816","Bifidobacterium longum"],["NCBITaxon%3A1682","Bifidobacterium longum subsp. infantis"],["NCBITaxon%3A565040","Bifidobacterium longum subsp. infantis 157F"],["NCBITaxon%3A391904","Bifidobacterium longum subsp. infantis ATCC 15697 = JCM 1222 = DSM 20088"]]},{"id":"NCBITaxon:1930","l":"Streptomyces scabiei","na":4,"nb":9,"a":[["a10-cell-bto-0002196.html","A10 cell"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["NCBITaxon%3A2993540","Streptomyces griseiscabiei"],["NCBITaxon%3A1930","Streptomyces scabiei"],["NCBITaxon%3A680198","Streptomyces scabiei 87.22"],["NCBITaxon%3A175280","Streptomyces scabiei subsp. chosun"],["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A74595","Streptomyces sp. ATCC 10246"]]},{"id":"NCBITaxon:1660","l":"Schaalia odontolytica","na":8,"nb":4,"a":[["macrophage-bto-0000801.html","macrophage"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["plant-gall-po-0025626.html","plant gall"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"]],"b":[["NCBITaxon%3A52769","Actinomyces gerencseriae"],["NCBITaxon%3A1660","Schaalia odontolytica"],["NCBITaxon%3A562972","Schaalia odontolytica C702"],["NCBITaxon%3A649742","Schaalia odontolytica F0309"]]},{"id":"NCBITaxon:362","l":"Agrobacterium radiobacter","na":4,"nb":7,"a":[["plant-gall-po-0025626.html","plant gall"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A362","Agrobacterium radiobacter"],["NCBITaxon%3A1336745","Agrobacterium radiobacter DSM 30147"],["NCBITaxon%3A361","Agrobacterium sp."],["NCBITaxon%3A358","Agrobacterium tumefaciens"],["NCBITaxon%3A359","Martinezella rhizogenes"],["NCBITaxon%3A204072","Ramlibacter henchirensis"]]},{"id":"NCBITaxon:60552","l":"Burkholderia vietnamiensis","na":4,"nb":7,"a":[["hospital-envo-00002173.html","hospital"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["NCBITaxon%3A292","Burkholderia cepacia"],["NCBITaxon%3A36773","Burkholderia sp."],["NCBITaxon%3A60552","Burkholderia vietnamiensis"],["NCBITaxon%3A269482","Burkholderia vietnamiensis G4"],["NCBITaxon%3A1449978","Burkholderia vietnamiensis LMG 10929"],["NCBITaxon%3A1254","Pediococcus acidilactici"]]},{"id":"NCBITaxon:1229","l":"Nitrosococcus oceani","na":6,"nb":4,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["sea-water-envo-00002149.html","sea water"],["stream-envo-00000023.html","stream"],["biome-envo-00000428.html","biome"],["farm-envo-00000078.html","farm"]],"b":[["NCBITaxon%3A1229","Nitrosococcus oceani"],["NCBITaxon%3A473788","Nitrosococcus oceani AFC27"],["NCBITaxon%3A323261","Nitrosococcus oceani ATCC 19707"],["NCBITaxon%3A314279","Nitrosococcus oceani C-27"]]},{"id":"NCBITaxon:1348","l":"Streptococcus parauberis","na":4,"nb":6,"a":[["animal-house-envo-00003040.html","animal house"],["brain-bto-0000142.html","brain"],["spleen-bto-0001281.html","spleen"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["NCBITaxon%3A1348","Streptococcus parauberis"],["NCBITaxon%3A936154","Streptococcus parauberis KCTC 11537"],["NCBITaxon%3A1260132","Streptococcus parauberis KCTC 11980BP"],["NCBITaxon%3A1207545","Streptococcus parauberis KRS-02083"],["NCBITaxon%3A1207544","Streptococcus parauberis KRS-02109"],["NCBITaxon%3A873447","Streptococcus parauberis NCFD 2020"]]},{"id":"NCBITaxon:1710","l":"Cellulosimicrobium cellulans","na":4,"nb":6,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"],["oil-spill-envo-00002061.html","oil spill"],["peat-soil-envo-00005774.html","peat soil"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A1710","Cellulosimicrobium cellulans"],["NCBITaxon%3A1350482","Cellulosimicrobium cellulans F16"],["NCBITaxon%3A903523","Cellulosimicrobium cellulans J1"],["NCBITaxon%3A935838","Cellulosimicrobium cellulans J34"],["NCBITaxon%3A935839","Cellulosimicrobium cellulans J36"],["NCBITaxon%3A1242247","Cellulosimicrobium cellulans LMG 16121"]]},{"id":"NCBITaxon:253","l":"Chryseobacterium indologenes","na":6,"nb":4,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["seedling-bto-0001228.html","seedling"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["tropical-envo-01000204.html","tropical"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["NCBITaxon%3A246","Chryseobacterium balustinum"],["NCBITaxon%3A253","Chryseobacterium indologenes"],["NCBITaxon%3A1218103","Chryseobacterium indologenes NBRC 14944"],["NCBITaxon%3A239","Flavobacterium sp."]]},{"id":"NCBITaxon:38284","l":"Corynebacterium accolens","na":4,"nb":6,"a":[["bone-element-uberon-0001474.html","bone element"],["vaginal-fluid-uberon-0036243.html","vaginal fluid"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"]],"b":[["NCBITaxon%3A38284","Corynebacterium accolens"],["NCBITaxon%3A525260","Corynebacterium accolens ATCC 49725"],["NCBITaxon%3A862512","Corynebacterium accolens ATCC 49726"],["NCBITaxon%3A38287","Corynebacterium fastidiosum"],["NCBITaxon%3A1720","Corynebacterium sp."],["NCBITaxon%3A38304","Corynebacterium tuberculostearicum"]]},{"id":"NCBITaxon:113557","l":"Lacticaseibacillus paracasei subsp. tolerans","na":4,"nb":5,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["milk-uberon-0001913.html","milk"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A1597","Lacticaseibacillus paracasei"],["NCBITaxon%3A113557","Lacticaseibacillus paracasei subsp. tolerans"],["NCBITaxon%3A1423830","Lacticaseibacillus paracasei subsp. tolerans DSM 20258"],["NCBITaxon%3A1256229","Lacticaseibacillus paracasei subsp. tolerans Lpl14"],["NCBITaxon%3A1256230","Lacticaseibacillus paracasei subsp. tolerans Lpl7"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":4,"nb":5,"a":[["reservoir-envo-00000025.html","reservoir"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["NCBITaxon%3A119219","Cupriavidus metallidurans"],["NCBITaxon%3A266264","Cupriavidus metallidurans CH34"],["NCBITaxon%3A1395123","Cupriavidus metallidurans H1130"],["NCBITaxon%3A1218106","Cupriavidus metallidurans NBRC 101272"],["NCBITaxon%3A1873897","Cupriavidus sp."]]},{"id":"NCBITaxon:1302","l":"Streptococcus gordonii","na":4,"nb":5,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["dental-plaque-uberon-0016482.html","dental plaque"],["archeological-site-envo-00000564.html","archeological site"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["NCBITaxon%3A1302","Streptococcus gordonii"],["NCBITaxon%3A1308737","Streptococcus gordonii ADL-228"],["NCBITaxon%3A29390","Streptococcus gordonii str. Challis"],["NCBITaxon%3A467705","Streptococcus gordonii str. Challis substr. CH1"],["NCBITaxon%3A1339616","Streptococcus gordonii TSDC19.2-1.1"]]},{"id":"NCBITaxon:144185","l":"Leifsonia aquatica","na":5,"nb":4,"a":[["hospital-envo-00002173.html","hospital"],["laboratory-facility-envo-01001406.html","laboratory facility"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A272239","Gulosibacter bifidus"],["NCBITaxon%3A144185","Leifsonia aquatica"],["NCBITaxon%3A1358026","Leifsonia aquatica ATCC 14665"],["NCBITaxon%3A1416759","Leifsonia aquatica H1aii"]]},{"id":"NCBITaxon:1478","l":"Peribacillus simplex","na":4,"nb":5,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"]],"b":[["NCBITaxon%3A33935","Lysinibacillus macroides"],["NCBITaxon%3A1478","Peribacillus simplex"],["NCBITaxon%3A1403313","Peribacillus simplex BA2H3"],["NCBITaxon%3A707251","Peribacillus simplex KBS1F-3"],["NCBITaxon%3A1349754","Peribacillus simplex NBRC 15720 = DSM 1321"]]},{"id":"NCBITaxon:2098","l":"Metamycoplasma hominis","na":5,"nb":4,"a":[["egg-food-product-foodon-00001274.html","egg food product"],["amniotic-cavity-bto-0000025.html","amniotic cavity"],["amniotic-fluid-bto-0000068.html","amniotic fluid"],["placenta-bto-0001078.html","placenta"],["reproductive-system-bto-0000081.html","reproductive system"]],"b":[["NCBITaxon%3A2098","Metamycoplasma hominis"],["NCBITaxon%3A347256","Metamycoplasma hominis ATCC 23114"],["NCBITaxon%3A1267000","Metamycoplasma hominis ATCC 27545"],["NCBITaxon%3A287","Pseudomonas aeruginosa"]]},{"id":"NCBITaxon:214326","l":"Latilactobacillus sakei subsp. sakei","na":4,"nb":5,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["food-habitatmech-madin-81cb9e74cb.html","food"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A1599","Latilactobacillus sakei"],["NCBITaxon%3A214326","Latilactobacillus sakei subsp. sakei"],["NCBITaxon%3A314315","Latilactobacillus sakei subsp. sakei 23K"],["NCBITaxon%3A1423833","Latilactobacillus sakei subsp. sakei DSM 20017 = JCM 1157"],["NCBITaxon%3A1285582","Latilactobacillus sakei subsp. sakei LS25"]]},{"id":"NCBITaxon:106649","l":"Acinetobacter guillouiae","na":4,"nb":4,"a":[["gut-bto-0000545.html","gut"],["skin-bto-0001253.html","skin"],["fecal-environment-envo-01001029.html","fecal environment"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A106649","Acinetobacter guillouiae"],["NCBITaxon%3A1217655","Acinetobacter guillouiae CIP 63.46"],["NCBITaxon%3A1330038","Acinetobacter guillouiae MSP4-18"],["NCBITaxon%3A1217656","Acinetobacter guillouiae NIPH 991"]]},{"id":"NCBITaxon:119542","l":"Roseinatronobacter bogoriensis","na":4,"nb":4,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"],["marine-environment-envo-01000320.html","marine environment"]],"b":[["NCBITaxon%3A119542","Roseinatronobacter bogoriensis"],["NCBITaxon%3A1188254","Roseinatronobacter bogoriensis DSM 18756"],["NCBITaxon%3A441209","Roseinatronobacter bogoriensis subsp. barguzinensis"],["NCBITaxon%3A3161156","Roseinatronobacter bogoriensis subsp. bogoriensis"]]},{"id":"NCBITaxon:1366","l":"Pseudolactococcus raffinolactis","na":4,"nb":4,"a":[["animal-house-envo-00003040.html","animal house"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["NCBITaxon%3A1366","Pseudolactococcus raffinolactis"],["NCBITaxon%3A1215915","Pseudolactococcus raffinolactis 4877"],["NCBITaxon%3A1255675","Pseudolactococcus raffinolactis JIM2957"],["NCBITaxon%3A1348633","Pseudolactococcus raffinolactis NBRC 100932"]]},{"id":"NCBITaxon:158847","l":"Megamonas hypermegale","na":4,"nb":4,"a":[["biofilm-envo-00002034.html","biofilm"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["emulsion-envo-00010506.html","emulsion"]],"b":[["NCBITaxon%3A482957","Burkholderia lata"],["NCBITaxon%3A158847","Megamonas hypermegale"],["NCBITaxon%3A657316","Megamonas hypermegale ART12/1"],["NCBITaxon%3A1122216","Megamonas hypermegale DSM 1672"]]},{"id":"NCBITaxon:37330","l":"Nocardia nova","na":4,"nb":4,"a":[["foot-bto-0000476.html","foot"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"],["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A300029","Nocardia elegans"],["NCBITaxon%3A37330","Nocardia nova"],["NCBITaxon%3A1210081","Nocardia nova NBRC 15556"],["NCBITaxon%3A1415166","Nocardia nova SH22a"]]},{"id":"NCBITaxon:731","l":"Histophilus somni","na":4,"nb":4,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["NCBITaxon%3A740","Haemophilus sp."],["NCBITaxon%3A731","Histophilus somni"],["NCBITaxon%3A205914","Histophilus somni 129PT"],["NCBITaxon%3A228400","Histophilus somni 2336"]]},{"id":"NCBITaxon:41294","l":"Nitrobacteraceae","na":3,"nb":10866,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["NCBITaxon%3A83488","2,4-D degrading bacterium M1"],["NCBITaxon%3A151414","Afipia birgiae"],["NCBITaxon%3A1197906","Afipia birgiae 34632"],["NCBITaxon%3A56946","Afipia broomeae"],["NCBITaxon%3A883078","Afipia broomeae ATCC 49717"],["NCBITaxon%3A40137","Afipia carboxidovorans"]]},{"id":"NCBITaxon:135622","l":"Alteromonadales","na":3,"nb":10390,"a":[["column-bto-0005692.html","column"],["oil-secretion-bto-0005373.html","oil secretion"],["trachea-bto-0001388.html","trachea"]],"b":[["NCBITaxon%3A120969","abyssal strain AIII3*"],["NCBITaxon%3A1619912","Adhaerimonas asanensis"],["NCBITaxon%3A3131927","Aegicerorhabdus qinzhovensis"],["NCBITaxon%3A226010","Aestuariibacter salexigens"],["NCBITaxon%3A1120953","Aestuariibacter salexigens DSM 15300"],["NCBITaxon%3A1872400","Aestuariibacter sp."]]},{"id":"NCBITaxon:32008","l":"Burkholderia","na":3,"nb":7299,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["midgut-bto-0000863.html","midgut"]],"b":[["NCBITaxon%3A2015348","Burkholderia aenigmatica"],["NCBITaxon%3A2683677","Burkholderia alba"],["NCBITaxon%3A152480","Burkholderia ambifaria"],["NCBITaxon%3A339670","Burkholderia ambifaria AMMD"],["NCBITaxon%3A396596","Burkholderia ambifaria IOP40-10"],["NCBITaxon%3A398577","Burkholderia ambifaria MC40-6"]]},{"id":"NCBITaxon:41297","l":"Sphingomonadaceae","na":3,"nb":6106,"a":[["oil-secretion-bto-0005373.html","oil secretion"],["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["NCBITaxon%3A83493","2,4-D degrading bacterium 2,4-D1"],["NCBITaxon%3A103496","2,4-D-degrading bacterium 524"],["NCBITaxon%3A83492","2,4-D degrading bacterium B6-10"],["NCBITaxon%3A83491","2,4-D degrading bacterium B6-5"],["NCBITaxon%3A83489","2,4-D degrading bacterium K1443"],["NCBITaxon%3A112499","alpha proteobacterium 15s.b."]]},{"id":"NCBITaxon:237","l":"Flavobacterium","na":3,"nb":4449,"a":[["column-bto-0005692.html","column"],["nectar-bto-0000537.html","nectar"],["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["NCBITaxon%3A196875","Arctic sea ice associated bacterium ARK10272"],["NCBITaxon%3A196870","Arctic sea ice bacterium ARK10104"],["NCBITaxon%3A196871","Arctic sea ice bacterium ARK10159"],["NCBITaxon%3A196872","Arctic sea ice bacterium ARK10161"],["NCBITaxon%3A196873","Arctic sea ice bacterium ARK10164"],["NCBITaxon%3A196874","Arctic sea ice bacterium ARK10270"]]},{"id":"NCBITaxon:84642","l":"Aeromonadaceae","na":3,"nb":3610,"a":[["midgut-bto-0000863.html","midgut"],["pseudostem-bto-0005992.html","pseudostem"],["spike-bto-0001278.html","spike"]],"b":[["NCBITaxon%3A1948889","Aeromonadaceae bacterium"],["NCBITaxon%3A1546596","Aeromonadaceae bacterium 124L2"],["NCBITaxon%3A1546597","Aeromonadaceae bacterium 126H"],["NCBITaxon%3A1546598","Aeromonadaceae bacterium 129C"],["NCBITaxon%3A1546599","Aeromonadaceae bacterium 130I2"],["NCBITaxon%3A1546600","Aeromonadaceae bacterium 136C"]]},{"id":"NCBITaxon:31989","l":"Paracoccaceae","na":3,"nb":3139,"a":[["juvenile-bto-0002168.html","juvenile"],["leaf-bto-0000713.html","leaf"],["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["NCBITaxon%3A2881234","Abyssibius alkaniclasticus"],["NCBITaxon%3A3029207","Abyssibius sp."],["NCBITaxon%3A2030798","Acidimangrovimonas pyrenivorans"],["NCBITaxon%3A2056283","Acidimangrovimonas sediminis"],["NCBITaxon%3A2676791","Acidimangrovimonas sp."],["NCBITaxon%3A2058287","Aestuariibius insulae"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":3,"nb":1075,"a":[["bile-bto-0000121.html","bile"],["rectum-bto-0001158.html","rectum"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A1311139","Acinetobacter baumannii 016901DP_1"],["NCBITaxon%3A1311140","Acinetobacter baumannii 016901DP_2"],["NCBITaxon%3A1310784","Acinetobacter baumannii 1007214"],["NCBITaxon%3A1310751","Acinetobacter baumannii 1022959"],["NCBITaxon%3A1310586","Acinetobacter baumannii 1031433"]]},{"id":"NCBITaxon:48736","l":"Ralstonia","na":3,"nb":906,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"]],"b":[["NCBITaxon%3A1944648","blood disease bacterium A2-HR MARDI"],["NCBITaxon%3A213608","blood disease bacterium BananaE"],["NCBITaxon%3A297304","blood disease bacterium JT656"],["NCBITaxon%3A297303","blood disease bacterium JT657"],["NCBITaxon%3A40803","blood disease bacterium R223"],["NCBITaxon%3A741978","blood disease bacterium R229"]]},{"id":"NCBITaxon:194924","l":"Desulfovibrionaceae","na":3,"nb":862,"a":[["cecum-mucosa-bto-0000213.html","cecum mucosa"],["ileum-bto-0000620.html","ileum"],["mucosa-bto-0000886.html","mucosa"]],"b":[["NCBITaxon%3A293256","Alkalidesulfovibrio alkalitolerans"],["NCBITaxon%3A1121439","Alkalidesulfovibrio alkalitolerans DSM 16529"],["NCBITaxon%3A1929485","Bilophila sp."],["NCBITaxon%3A693988","Bilophila sp. 4_1_30"],["NCBITaxon%3A3839265","Bilophila sp. HF3_202"],["NCBITaxon%3A3839266","Bilophila sp. HF3_202_2"]]},{"id":"NCBITaxon:1046","l":"Chromatiaceae","na":3,"nb":781,"a":[["gut-bto-0000545.html","gut"],["hemolymph-bto-0000572.html","hemolymph"],["skin-bto-0001253.html","skin"]],"b":[["NCBITaxon%3A504901","Allochromatium humboldtianum"],["NCBITaxon%3A61596","Allochromatium minutissimum"],["NCBITaxon%3A231048","Allochromatium palmeri"],["NCBITaxon%3A430676","Allochromatium phaeobacterium"],["NCBITaxon%3A402883","Allochromatium renukae"],["NCBITaxon%3A1872465","Allochromatium sp."]]},{"id":"NCBITaxon:157","l":"Treponema","na":3,"nb":663,"a":[["rumen-uberon-0007365.html","rumen"],["sgs-cell-bto-0001210.html","SGS cell"],["tongue-bto-0001385.html","tongue"]],"b":[["NCBITaxon%3A3083137","Candidatus Treponema caballi"],["NCBITaxon%3A3083138","Candidatus Treponema equi"],["NCBITaxon%3A3083139","Candidatus Treponema equifaecale"],["NCBITaxon%3A2838768","Candidatus Treponema excrementipullorum"],["NCBITaxon%3A2838769","Candidatus Treponema faecavium"],["NCBITaxon%3A3083140","Candidatus Treponema merdequi"]]},{"id":"NCBITaxon:1654","l":"Actinomyces","na":3,"nb":460,"a":[["hand-bto-0004668.html","hand"],["vaginal-fluid-bto-0003084.html","vaginal fluid"],["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["NCBITaxon%3A3050225","Actinomyces acetigenes"],["NCBITaxon%3A1852361","Actinomyces bouchesdurhonensis"],["NCBITaxon%3A1658","Actinomyces bovis"],["NCBITaxon%3A131109","Actinomyces bowdenii"],["NCBITaxon%3A2755559","Actinomyces capricornis"],["NCBITaxon%3A119495","Actinomyces catuli"]]},{"id":"NCBITaxon:84107","l":"Coriobacteriaceae","na":3,"nb":399,"a":[["alimentary-canal-bto-0000058.html","alimentary canal"],["brain-bto-0000142.html","brain"],["heart-bto-0000562.html","heart"]],"b":[["NCBITaxon%3A2838522","Candidatus Collinsella stercoripullorum"],["NCBITaxon%3A2840753","Candidatus Coprousia avicola"],["NCBITaxon%3A3101127","Candidatus Coprousia sp."],["NCBITaxon%3A2840754","Candidatus Coprovicinus avistercoris"],["NCBITaxon%3A3101126","Candidatus Coprovicinus sp."],["NCBITaxon%3A2840848","Candidatus Limicola stercorigallinarum"]]},{"id":"NCBITaxon:1090","l":"Chlorobiota","na":3,"nb":300,"a":[["hemolymph-bto-0000572.html","hemolymph"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"]],"b":[["NCBITaxon%3A338819","anammox bacterium A-3"],["NCBITaxon%3A1653826","Ancalochloris perfilievii"],["NCBITaxon%3A1872565","Ancalochloris sp."],["NCBITaxon%3A3039321","Candidatus Chlorobium antarcticum"],["NCBITaxon%3A2716876","Candidatus Chlorobium masyuteum"],["NCBITaxon%3A1868324","Candidatus Thermochlorobacter aerophilus"]]},{"id":"NCBITaxon:572511","l":"Blautia","na":3,"nb":249,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["adult-bto-0001043.html","adult"],["colon-bto-0000269.html","colon"]],"b":[["NCBITaxon%3A3133036","Blautia acetica"],["NCBITaxon%3A2981783","Blautia acetigignens"],["NCBITaxon%3A2981782","Blautia ammoniilytica"],["NCBITaxon%3A3133153","Blautia aquisgranensis"],["NCBITaxon%3A1912897","Blautia argi"],["NCBITaxon%3A2696678","Blautia brookingsii"]]},{"id":"NCBITaxon:375288","l":"Parabacteroides","na":3,"nb":199,"a":[["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"]],"b":[["NCBITaxon%3A2838720","Candidatus Parabacteroides faecavium"],["NCBITaxon%3A2838721","Candidatus Parabacteroides intestinavium"],["NCBITaxon%3A2838722","Candidatus Parabacteroides intestinigallinarum"],["NCBITaxon%3A2838723","Candidatus Parabacteroides intestinipullorum"],["NCBITaxon%3A2951805","Parabacteroides absconsus"],["NCBITaxon%3A2290935","Parabacteroides acidifaciens"]]},{"id":"NCBITaxon:162289","l":"Peptoniphilus","na":3,"nb":170,"a":[["hand-bto-0004668.html","hand"],["vagina-bto-0000243.html","vagina"],["vaginal-fluid-bto-0003084.html","vaginal fluid"]],"b":[["NCBITaxon%3A1871017","Aedoeadaptatus urinae"],["NCBITaxon%3A33034","Anaerococcus prevotii"],["NCBITaxon%3A337315","Candidatus Peptoniphilus massiliensis (ex Fenollar et al. 2006)"],["NCBITaxon%3A507749","Peptoniphilus allenii"],["NCBITaxon%3A1258","Peptoniphilus asaccharolyticus"],["NCBITaxon%3A1357407","Peptoniphilus asaccharolyticus CD1_D5_FAA_2"]]},{"id":"NCBITaxon:1307","l":"Streptococcus suis","na":3,"nb":145,"a":[["monocyte-bto-0000876.html","monocyte"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["tonsil-bto-0001387.html","tonsil"]],"b":[["NCBITaxon%3A229549","Streptococcus minor"],["NCBITaxon%3A82806","Streptococcus ovis"],["NCBITaxon%3A1307","Streptococcus suis"],["NCBITaxon%3A672190","Streptococcus suis 05HAS68"],["NCBITaxon%3A391295","Streptococcus suis 05ZYH33"],["NCBITaxon%3A1214149","Streptococcus suis 07SC3"]]},{"id":"NCBITaxon:665874","l":"Limnohabitans","na":3,"nb":144,"a":[["head-bto-0000282.html","head"],["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["NCBITaxon%3A544681","Limnohabitans australis"],["NCBITaxon%3A323423","Limnohabitans curvus"],["NCBITaxon%3A3844323","Limnohabitans kasalickyi (SeqCode)"],["NCBITaxon%3A3045173","Limnohabitans lacus"],["NCBITaxon%3A540061","Limnohabitans parvus"],["NCBITaxon%3A1293052","Limnohabitans parvus II-B4"]]},{"id":"NCBITaxon:39","l":"Archangiaceae","na":3,"nb":100,"a":[["wood-bto-0005516.html","wood"],["plant-litter-envo-01000628.html","plant litter"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A2995309","Allostigmatella ashevillensis"],["NCBITaxon%3A41","Allostigmatella aurantiaca"],["NCBITaxon%3A378806","Allostigmatella aurantiaca DW4/3-1"],["NCBITaxon%3A675526","Allostigmatella aurantiaca Sg a15"],["NCBITaxon%3A83460","Allostigmatella erecta"],["NCBITaxon%3A394097","Allostigmatella hybrida"]]},{"id":"NCBITaxon:813","l":"Chlamydia trachomatis","na":3,"nb":100,"a":[["conjunctiva-bto-0003415.html","conjunctiva"],["epithelial-cell-bto-0000414.html","epithelial cell"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A813","Chlamydia trachomatis"],["NCBITaxon%3A564416","Chlamydia trachomatis 6276"],["NCBITaxon%3A564417","Chlamydia trachomatis 6276s"],["NCBITaxon%3A564418","Chlamydia trachomatis 70"],["NCBITaxon%3A564419","Chlamydia trachomatis 70s"],["NCBITaxon%3A580047","Chlamydia trachomatis A2497"]]},{"id":"NCBITaxon:36809","l":"Mycobacteroides abscessus","na":3,"nb":89,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["NCBITaxon%3A36809","Mycobacteroides abscessus"],["NCBITaxon%3A1299323","Mycobacteroides abscessus 1948"],["NCBITaxon%3A1299324","Mycobacteroides abscessus 21"],["NCBITaxon%3A1001721","Mycobacteroides abscessus 3A-0119-R"],["NCBITaxon%3A1001715","Mycobacteroides abscessus 3A-0122-R"],["NCBITaxon%3A1001716","Mycobacteroides abscessus 3A-0122-S"]]},{"id":"NCBITaxon:72407","l":"Klebsiella pneumoniae subsp. pneumoniae","na":3,"nb":78,"a":[["bronchus-uberon-0002185.html","bronchus"],["neutrophil-bto-0000130.html","neutrophil"],["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A1653844","Erwinia carnegieana"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A1316938","Klebsiella pneumoniae ATCC 25955"],["NCBITaxon%3A72407","Klebsiella pneumoniae subsp. pneumoniae"],["NCBITaxon%3A1193292","Klebsiella pneumoniae subsp. pneumoniae 1084"]]},{"id":"NCBITaxon:216816","l":"Bifidobacterium longum","na":3,"nb":69,"a":[["coral-reef-envo-00000150.html","coral reef"],["egg-food-product-foodon-00001274.html","egg food product"],["juvenile-bto-0002168.html","juvenile"]],"b":[["NCBITaxon%3A1680","Bifidobacterium adolescentis"],["NCBITaxon%3A216816","Bifidobacterium longum"],["NCBITaxon%3A1000567","Bifidobacterium longum 3_1_37DFAAB"],["NCBITaxon%3A1280702","Bifidobacterium longum AGR2137"],["NCBITaxon%3A478445","Bifidobacterium longum BORI"],["NCBITaxon%3A1263059","Bifidobacterium longum CAG:69"]]},{"id":"NCBITaxon:100883","l":"Coprobacillus","na":3,"nb":65,"a":[["cecum-bto-0000166.html","cecum"],["gut-bto-0000545.html","gut"],["intestine-bto-0000648.html","intestine"]],"b":[["NCBITaxon%3A100884","Coprobacillus cateniformis"],["NCBITaxon%3A1297794","Coprobacillus cateniformis JCM 10604"],["NCBITaxon%3A2137881","Coprobacillus sp."],["NCBITaxon%3A2787134","Coprobacillus sp. 1001095IJ_161003_A8"],["NCBITaxon%3A2787096","Coprobacillus sp. 1001099B_141217_E2"],["NCBITaxon%3A1896994","Coprobacillus sp. 28_7"]]},{"id":"NCBITaxon:1597","l":"Lacticaseibacillus paracasei","na":3,"nb":56,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A1582","Lacticaseibacillus casei"],["NCBITaxon%3A1597","Lacticaseibacillus paracasei"],["NCBITaxon%3A321967","Lacticaseibacillus paracasei ATCC 334"],["NCBITaxon%3A1226299","Lacticaseibacillus paracasei COM0101"],["NCBITaxon%3A1446494","Lacticaseibacillus paracasei N1115"],["NCBITaxon%3A1435038","Lacticaseibacillus paracasei NRIC 0644"]]},{"id":"NCBITaxon:1247","l":"Oenococcus oeni","na":3,"nb":54,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A1247","Oenococcus oeni"],["NCBITaxon%3A379360","Oenococcus oeni ATCC BAA-1163"],["NCBITaxon%3A1160703","Oenococcus oeni AWRIB202"],["NCBITaxon%3A1160702","Oenococcus oeni AWRIB304"],["NCBITaxon%3A1167631","Oenococcus oeni AWRIB318"],["NCBITaxon%3A1206769","Oenococcus oeni AWRIB418"]]},{"id":"NCBITaxon:1310","l":"Streptococcus sobrinus","na":3,"nb":52,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"],["urine-bto-0001419.html","urine"],["biome-envo-00000428.html","biome"]],"b":[["NCBITaxon%3A1310","Streptococcus sobrinus"],["NCBITaxon%3A246202","Streptococcus sobrinus 6715"],["NCBITaxon%3A1123317","Streptococcus sobrinus DSM 20742 = ATCC 33478"],["NCBITaxon%3A1074066","Streptococcus sobrinus TCI-107"],["NCBITaxon%3A1074117","Streptococcus sobrinus TCI-118"],["NCBITaxon%3A1074067","Streptococcus sobrinus TCI-119"]]},{"id":"NCBITaxon:47714","l":"Lacticaseibacillus paracasei subsp. paracasei","na":3,"nb":41,"a":[["city-envo-00000856.html","city"],["food-fermented-foodon-00001258.html","food (fermented)"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["NCBITaxon%3A1582","Lacticaseibacillus casei"],["NCBITaxon%3A1597","Lacticaseibacillus paracasei"],["NCBITaxon%3A47714","Lacticaseibacillus paracasei subsp. paracasei"],["NCBITaxon%3A537973","Lacticaseibacillus paracasei subsp. paracasei 8700:2"],["NCBITaxon%3A525337","Lacticaseibacillus paracasei subsp. paracasei ATCC 25302 = DSM 5622 = JCM 8130"],["NCBITaxon%3A1235989","Lacticaseibacillus paracasei subsp. paracasei BGSJ2-8"]]},{"id":"NCBITaxon:283168","l":"Odoribacter","na":3,"nb":39,"a":[["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"],["mucosa-bto-0000886.html","mucosa"]],"b":[["NCBITaxon%3A2838706","Candidatus Odoribacter faecigallinarum"],["NCBITaxon%3A283169","Odoribacter denticanis"],["NCBITaxon%3A626933","Odoribacter laneus"],["NCBITaxon%3A1263089","Odoribacter laneus CAG:561"],["NCBITaxon%3A742817","Odoribacter laneus YIT 12061"],["NCBITaxon%3A2941335","Odoribacter lunatus"]]},{"id":"NCBITaxon:1030","l":"Thiothrix","na":3,"nb":38,"a":[["gut-bto-0000545.html","gut"],["hemolymph-bto-0000572.html","hemolymph"],["spike-bto-0001278.html","spike"]],"b":[["NCBITaxon%3A2823902","Candidatus Thiothrix anitrata"],["NCBITaxon%3A2799668","Candidatus Thiothrix moscowensis"],["NCBITaxon%3A3149045","Candidatus Thiothrix namsaraevi"],["NCBITaxon%3A3112415","Candidatus Thiothrix phosphatis"],["NCBITaxon%3A3080811","Candidatus Thiothrix putei"],["NCBITaxon%3A2799669","Candidatus Thiothrix singaporensis"]]},{"id":"NCBITaxon:28037","l":"Streptococcus mitis","na":3,"nb":38,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["archeological-site-envo-00000564.html","archeological site"],["tropical-envo-01000204.html","tropical"]],"b":[["NCBITaxon%3A1660","Schaalia odontolytica"],["NCBITaxon%3A45634","Streptococcus cristatus"],["NCBITaxon%3A1302863","Streptococcus cristatus AS 1.3089"],["NCBITaxon%3A1302","Streptococcus gordonii"],["NCBITaxon%3A28037","Streptococcus mitis"],["NCBITaxon%3A1239792","Streptococcus mitis 11/5"]]},{"id":"NCBITaxon:438","l":"Acetobacter pasteurianus","na":3,"nb":34,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"],["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A435","Acetobacter aceti"],["NCBITaxon%3A178900","Acetobacter cerevisiae"],["NCBITaxon%3A1307903","Acetobacter cerevisiae DSM 14362"],["NCBITaxon%3A1737472","Acetobacter conturbans"],["NCBITaxon%3A104097","Acetobacter estunensis"],["NCBITaxon%3A104101","Acetobacter indonesiensis"]]},{"id":"NCBITaxon:1582","l":"Lacticaseibacillus casei","na":3,"nb":32,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["NCBITaxon%3A1582","Lacticaseibacillus casei"],["NCBITaxon%3A1051650","Lacticaseibacillus casei 12A"],["NCBITaxon%3A1051651","Lacticaseibacillus casei 21/1"],["NCBITaxon%3A1051652","Lacticaseibacillus casei 32G"],["NCBITaxon%3A1378069","Lacticaseibacillus casei 5b"],["NCBITaxon%3A1051653","Lacticaseibacillus casei A2-362"]]},{"id":"NCBITaxon:75985","l":"Mannheimia haemolytica","na":3,"nb":32,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["leukocyte-bto-0000751.html","leukocyte"],["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["NCBITaxon%3A47735","Bibersteinia trehalosi"],["NCBITaxon%3A85401","Mannheimia glucosida"],["NCBITaxon%3A75985","Mannheimia haemolytica"],["NCBITaxon%3A1261126","Mannheimia haemolytica D153"],["NCBITaxon%3A1311759","Mannheimia haemolytica D171"],["NCBITaxon%3A1311760","Mannheimia haemolytica D174"]]},{"id":"NCBITaxon:33973","l":"Acidobacterium","na":3,"nb":31,"a":[["leaf-bto-0000713.html","leaf"],["oil-secretion-bto-0005373.html","oil secretion"],["trunk-bto-0001493.html","trunk"]],"b":[["NCBITaxon%3A33075","Acidobacterium capsulatum"],["NCBITaxon%3A240015","Acidobacterium capsulatum ATCC 51196"],["NCBITaxon%3A1872119","Acidobacterium sp."],["NCBITaxon%3A433983","Acidobacterium sp. BK18"],["NCBITaxon%3A1336583","Acidobacterium sp. Colony17"],["NCBITaxon%3A192103","Acidobacterium sp. Ellin289"]]},{"id":"NCBITaxon:1717","l":"Corynebacterium diphtheriae","na":3,"nb":28,"a":[["foot-bto-0000476.html","foot"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A1717","Corynebacterium diphtheriae"],["NCBITaxon%3A698966","Corynebacterium diphtheriae 241"],["NCBITaxon%3A698962","Corynebacterium diphtheriae 31A"],["NCBITaxon%3A698973","Corynebacterium diphtheriae BH8"],["NCBITaxon%3A1720349","Corynebacterium diphtheriae bv. gravis"],["NCBITaxon%3A1450521","Corynebacterium diphtheriae bv. gravis str. ISS 4060"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":3,"nb":28,"a":[["liquid-water-envo-00002006.html","liquid water"],["sludge-envo-00002044.html","sludge"],["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A729","Haemophilus parainfluenzae"],["NCBITaxon%3A43306","Pseudomonas denitrificans (nom. rej.)"],["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A203192","Stutzerimonas chloritidismutans"],["NCBITaxon%3A3022791","Stutzerimonas decontaminans"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":27,"nb":3,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["watercourse-envo-00000029.html","watercourse"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["egg-food-product-foodon-00001274.html","egg food product"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"]],"b":[["NCBITaxon%3A2219225","Pseudomonas asiatica"],["NCBITaxon%3A1628086","Pseudomonas kribbensis"],["NCBITaxon%3A306","Pseudomonas sp."]]},{"id":"NCBITaxon:2371","l":"Xylella fastidiosa","na":3,"nb":26,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"],["water-scum-envo-00005794.html","water scum"]],"b":[["NCBITaxon%3A329529","environmental samples"],["NCBITaxon%3A329530","uncultured Xylella fastidiosa"],["NCBITaxon%3A2371","Xylella fastidiosa"],["NCBITaxon%3A1214121","Xylella fastidiosa 32"],["NCBITaxon%3A1211847","Xylella fastidiosa 6c"],["NCBITaxon%3A160492","Xylella fastidiosa 9a5c"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":3,"nb":25,"a":[["milk-uberon-0001913.html","milk"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["NCBITaxon%3A35783","Enterococcus sp."],["NCBITaxon%3A1308","Streptococcus thermophilus"],["NCBITaxon%3A1435981","Streptococcus thermophilus 1F8CT"],["NCBITaxon%3A1408178","Streptococcus thermophilus ASCC 1275"],["NCBITaxon%3A1263110","Streptococcus thermophilus CAG:236"],["NCBITaxon%3A1042404","Streptococcus thermophilus CNCM I-1630"]]},{"id":"NCBITaxon:1359","l":"Lactococcus cremoris","na":3,"nb":24,"a":[["b-lymphocyte-bto-0000776.html","B-lymphocyte"],["peripheral-blood-mononuclear-cell-bto-0001025.html","peripheral blood mononuclear cell"],["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A1359","Lactococcus cremoris"],["NCBITaxon%3A1286879","Lactococcus cremoris HB61"],["NCBITaxon%3A1286880","Lactococcus cremoris HB63"],["NCBITaxon%3A2816960","Lactococcus cremoris subsp. cremoris"],["NCBITaxon%3A1104322","Lactococcus cremoris subsp. cremoris A76"],["NCBITaxon%3A1415168","Lactococcus cremoris subsp. cremoris GE214"]]},{"id":"NCBITaxon:157687","l":"Leptotrichia wadei","na":3,"nb":23,"a":[["biofilm-envo-00002034.html","biofilm"],["grassland-soil-envo-00005750.html","grassland soil"],["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["NCBITaxon%3A157687","Leptotrichia wadei"],["NCBITaxon%3A1122174","Leptotrichia wadei DSM 19758"],["NCBITaxon%3A888055","Leptotrichia wadei F0279"],["NCBITaxon%3A1409967","Leptotrichia wadei HMP_JCVI_SC0129"],["NCBITaxon%3A1409968","Leptotrichia wadei HMP_JCVI_SC0130"],["NCBITaxon%3A1409969","Leptotrichia wadei HMP_JCVI_SC0192"]]},{"id":"NCBITaxon:191303","l":"Turicibacter","na":3,"nb":23,"a":[["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"],["mucosa-bto-0000886.html","mucosa"]],"b":[["NCBITaxon%3A2735723","Turicibacter bilis"],["NCBITaxon%3A2963365","Turicibacter faecis"],["NCBITaxon%3A154288","Turicibacter sanguinis"],["NCBITaxon%3A702450","Turicibacter sanguinis PC909"],["NCBITaxon%3A2049042","Turicibacter sp."],["NCBITaxon%3A2951143","Turicibacter sp. 1E2"]]},{"id":"NCBITaxon:442","l":"Gluconobacter oxydans","na":3,"nb":22,"a":[["research-facility-envo-00000469.html","research facility"],["food-fermented-foodon-00001258.html","food (fermented)"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["NCBITaxon%3A438","Acetobacter pasteurianus"],["NCBITaxon%3A318683","Gluconobacter albidus"],["NCBITaxon%3A1307944","Gluconobacter albidus NBRC 3250"],["NCBITaxon%3A2728101","Gluconobacter cadivus"],["NCBITaxon%3A38308","Gluconobacter frateurii"],["NCBITaxon%3A442","Gluconobacter oxydans"]]},{"id":"NCBITaxon:106592","l":"Ensifer adhaerens","na":20,"nb":3,"a":[["fresh-water-envo-00002011.html","fresh water"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["NCBITaxon%3A106592","Ensifer adhaerens"],["NCBITaxon%3A1416753","Ensifer adhaerens OV14"],["NCBITaxon%3A1113910","Ensifer sp. NBRC 102459"]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":3,"nb":20,"a":[["liquid-water-envo-00002006.html","liquid water"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"]],"b":[["NCBITaxon%3A548","Klebsiella aerogenes"],["NCBITaxon%3A1308731","Klebsiella aerogenes ADL-323"],["NCBITaxon%3A935296","Klebsiella aerogenes EA1509E"],["NCBITaxon%3A685445","Klebsiella aerogenes FGI35"],["NCBITaxon%3A1028307","Klebsiella aerogenes KCTC 2190"],["NCBITaxon%3A1439320","Klebsiella aerogenes MGH 61"]]},{"id":"NCBITaxon:1085","l":"Rhodospirillum rubrum","na":19,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"],["brackish-water-body-envo-01001321.html","brackish water body"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["liquid-water-envo-00002006.html","liquid water"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["river-envo-00000022.html","river"]],"b":[["NCBITaxon%3A1085","Rhodospirillum rubrum"],["NCBITaxon%3A269796","Rhodospirillum rubrum ATCC 11170"],["NCBITaxon%3A1036743","Rhodospirillum rubrum F11"]]},{"id":"NCBITaxon:158","l":"Treponema denticola","na":3,"nb":19,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["archeological-site-envo-00000564.html","archeological site"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A158","Treponema denticola"],["NCBITaxon%3A999426","Treponema denticola AL-2"],["NCBITaxon%3A999427","Treponema denticola ASLM"],["NCBITaxon%3A999428","Treponema denticola ATCC 33520"],["NCBITaxon%3A999429","Treponema denticola ATCC 33521"],["NCBITaxon%3A999430","Treponema denticola ATCC 35404"]]},{"id":"NCBITaxon:1833","l":"Rhodococcus erythropolis","na":3,"nb":19,"a":[["watercourse-envo-00000029.html","watercourse"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"],["water-scum-envo-00005794.html","water scum"]],"b":[["NCBITaxon%3A1818","Nocardia globerula"],["NCBITaxon%3A1821","Nocardia sp."],["NCBITaxon%3A53432","Nocardia uniformis"],["NCBITaxon%3A1210100","Nocardia uniformis NBRC 13702"],["NCBITaxon%3A1833","Rhodococcus erythropolis"],["NCBITaxon%3A1136179","Rhodococcus erythropolis CCM2595"]]},{"id":"NCBITaxon:375","l":"Bradyrhizobium japonicum","na":3,"nb":19,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A1355477","Bradyrhizobium diazoefficiens"],["NCBITaxon%3A224911","Bradyrhizobium diazoefficiens USDA 110"],["NCBITaxon%3A375","Bradyrhizobium japonicum"],["NCBITaxon%3A306164","Bradyrhizobium japonicum bv. genistearum"],["NCBITaxon%3A305581","Bradyrhizobium japonicum bv. glycinearum"],["NCBITaxon%3A1128253","Bradyrhizobium japonicum CCBAU 15354"]]},{"id":"NCBITaxon:1492","l":"Clostridium butyricum","na":3,"nb":15,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["intestine-environment-envo-2100002.html","intestine environment"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["NCBITaxon%3A1520","Clostridium beijerinckii"],["NCBITaxon%3A1492","Clostridium butyricum"],["NCBITaxon%3A634501","Clostridium butyricum 2CR37"],["NCBITaxon%3A447214","Clostridium butyricum 5521"],["NCBITaxon%3A997898","Clostridium butyricum 60E.3"],["NCBITaxon%3A1280693","Clostridium butyricum AGR2140"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":15,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["NCBITaxon%3A38285","Corynebacterium acetoacidophilum"],["NCBITaxon%3A1718","Corynebacterium glutamicum"],["NCBITaxon%3A196627","Corynebacterium glutamicum ATCC 13032"],["NCBITaxon%3A1079988","Corynebacterium glutamicum ATCC 14067"],["NCBITaxon%3A1204414","Corynebacterium glutamicum K051"],["NCBITaxon%3A1310161","Corynebacterium glutamicum MB001"]]},{"id":"NCBITaxon:1011","l":"Sporocytophaga","na":3,"nb":14,"a":[["inflorescence-bto-0000628.html","inflorescence"],["plant-bto-0001481.html","plant"],["root-bto-0001188.html","root"]],"b":[["NCBITaxon%3A1012","Sporocytophaga cauliformis"],["NCBITaxon%3A153721","Sporocytophaga myxococcoides"],["NCBITaxon%3A926565","Sporocytophaga myxococcoides DSM 11118"],["NCBITaxon%3A2231183","Sporocytophaga sp."],["NCBITaxon%3A420530","Sporocytophaga sp. 25B"],["NCBITaxon%3A571179","Sporocytophaga sp. 4v"]]},{"id":"NCBITaxon:29466","l":"Veillonella parvula","na":3,"nb":14,"a":[["dental-plaque-bto-0000338.html","dental plaque"],["juvenile-bto-0002168.html","juvenile"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["NCBITaxon%3A39777","Veillonella atypica"],["NCBITaxon%3A29466","Veillonella parvula"],["NCBITaxon%3A1357417","Veillonella parvula AC2_8_11_AN_NA_2"],["NCBITaxon%3A768727","Veillonella parvula ACS-068-V-Sch12"],["NCBITaxon%3A686660","Veillonella parvula ATCC 17745"],["NCBITaxon%3A479436","Veillonella parvula DSM 2008"]]},{"id":"NCBITaxon:582","l":"Morganella morganii","na":3,"nb":14,"a":[["blast-cell-bto-0000125.html","blast cell"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"],["spike-bto-0001278.html","spike"]],"b":[["NCBITaxon%3A582","Morganella morganii"],["NCBITaxon%3A1365974","Morganella morganii AC2_8_11_AN_D6_FAA_4"],["NCBITaxon%3A1428452","Morganella morganii F675"],["NCBITaxon%3A1416758","Morganella morganii H1r"],["NCBITaxon%3A1411647","Morganella morganii IS15"],["NCBITaxon%3A1239989","Morganella morganii SC01"]]},{"id":"NCBITaxon:28090","l":"Acinetobacter lwoffii","na":3,"nb":13,"a":[["nectar-bto-0000537.html","nectar"],["pseudostem-bto-0005992.html","pseudostem"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["NCBITaxon%3A1311822","Acinetobacter genomosp. 9 str. ATCC 17910"],["NCBITaxon%3A40215","Acinetobacter junii"],["NCBITaxon%3A28090","Acinetobacter lwoffii"],["NCBITaxon%3A1311804","Acinetobacter lwoffii ATCC 9957 = CIP 70.31"],["NCBITaxon%3A54394","Acinetobacter lwoffii K24"],["NCBITaxon%3A981327","Acinetobacter lwoffii NCTC 5866 = CIP 64.10 = NIPH 512"]]},{"id":"NCBITaxon:113286","l":"Pseudoramibacter","na":3,"nb":12,"a":[["cecum-bto-0000166.html","cecum"],["gut-bto-0000545.html","gut"],["sgs-cell-bto-0001210.html","SGS cell"]],"b":[["NCBITaxon%3A2594427","Candidatus Pseudoramibacter fermentans"],["NCBITaxon%3A113287","Pseudoramibacter alactolyticus"],["NCBITaxon%3A887929","Pseudoramibacter alactolyticus ATCC 23263"],["NCBITaxon%3A3108534","Pseudoramibacter faecis"],["NCBITaxon%3A2606631","Pseudoramibacter porci"],["NCBITaxon%3A2034862","Pseudoramibacter sp."]]},{"id":"NCBITaxon:119602","l":"Streptococcus dysgalactiae subsp. equisimilis","na":3,"nb":12,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["animal-manure-envo-00003031.html","animal manure"]],"b":[["NCBITaxon%3A1334","Streptococcus dysgalactiae"],["NCBITaxon%3A119602","Streptococcus dysgalactiae subsp. equisimilis"],["NCBITaxon%3A1247189","Streptococcus dysgalactiae subsp. equisimilis 167"],["NCBITaxon%3A759913","Streptococcus dysgalactiae subsp. equisimilis AC-2713"],["NCBITaxon%3A452436","Streptococcus dysgalactiae subsp. equisimilis AKSDE4288"],["NCBITaxon%3A663954","Streptococcus dysgalactiae subsp. equisimilis ATCC 12394"]]},{"id":"NCBITaxon:24","l":"Shewanella putrefaciens","na":3,"nb":12,"a":[["reservoir-envo-00000025.html","reservoir"],["foot-bto-0000476.html","foot"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A1882437","Massilia sp."],["NCBITaxon%3A38313","Shewanella algae"],["NCBITaxon%3A62322","Shewanella baltica"],["NCBITaxon%3A24","Shewanella putrefaciens"],["NCBITaxon%3A399804","Shewanella putrefaciens 200"],["NCBITaxon%3A319224","Shewanella putrefaciens CN-32"]]},{"id":"NCBITaxon:28447","l":"Clavibacter michiganensis","na":3,"nb":12,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["canker-habitatmech-bacdive-0f078d72a7.html","Canker"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["NCBITaxon%3A1874630","Clavibacter capsici"],["NCBITaxon%3A2301718","Clavibacter lycopersici"],["NCBITaxon%3A28447","Clavibacter michiganensis"],["NCBITaxon%3A33014","Clavibacter michiganensis subsp. insidiosus"],["NCBITaxon%3A33013","Clavibacter michiganensis subsp. michiganensis"],["NCBITaxon%3A443906","Clavibacter michiganensis subsp. michiganensis NCPPB 382"]]},{"id":"NCBITaxon:1154584","l":"Gaiellales","na":3,"nb":11,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["skin-bto-0001253.html","skin"]],"b":[["NCBITaxon%3A2928748","Candidatus Gaiellasilicea maunaloa"],["NCBITaxon%3A1002870","Gaiella occulta"],["NCBITaxon%3A2663207","Gaiella sp."],["NCBITaxon%3A1282738","Gaiella sp. EBR4-R2"],["NCBITaxon%3A1282739","Gaiella sp. EBR4-RS1"],["NCBITaxon%3A1799656","Gaiella sp. SCGC AG-212-M14"]]},{"id":"NCBITaxon:168808","l":"Sneathia","na":3,"nb":11,"a":[["blood-bto-0000089.html","blood"],["brain-bto-0000142.html","brain"],["heart-bto-0000562.html","heart"]],"b":[["NCBITaxon%3A40543","Sneathia sanguinegens"],["NCBITaxon%3A1123259","Sneathia sanguinegens DSM 22970"],["NCBITaxon%3A553163","Sneathia sanguinegens JCVIHMP003"],["NCBITaxon%3A2776143","Sneathia sp."],["NCBITaxon%3A2777993","Sneathia sp. DSM 16630"],["NCBITaxon%3A2777994","Sneathia sp. DSM 16631"]]},{"id":"NCBITaxon:2426","l":"Teredinibacter turnerae","na":3,"nb":11,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["NCBITaxon%3A2426","Teredinibacter turnerae"],["NCBITaxon%3A1313298","Teredinibacter turnerae 1133Y.S.0a.04"],["NCBITaxon%3A1313297","Teredinibacter turnerae 1675L.S.0a.01"],["NCBITaxon%3A1206095","Teredinibacter turnerae T0609"],["NCBITaxon%3A377629","Teredinibacter turnerae T7901"],["NCBITaxon%3A1056820","Teredinibacter turnerae T7902"]]},{"id":"NCBITaxon:1260","l":"Finegoldia magna","na":3,"nb":10,"a":[["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A1260","Finegoldia magna"],["NCBITaxon%3A768713","Finegoldia magna ACS-171-V-Col3"],["NCBITaxon%3A1459804","Finegoldia magna ALB8"],["NCBITaxon%3A334413","Finegoldia magna ATCC 29328"],["NCBITaxon%3A525282","Finegoldia magna ATCC 53516"],["NCBITaxon%3A866773","Finegoldia magna BVS033A4"]]},{"id":"NCBITaxon:1399","l":"Cytobacillus firmus","na":10,"nb":3,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"],["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["NCBITaxon%3A1399","Cytobacillus firmus"],["NCBITaxon%3A1307436","Cytobacillus firmus DS1"],["NCBITaxon%3A1314753","Cytobacillus firmus NBRC 15306"]]},{"id":"NCBITaxon:2035","l":"Curtobacterium flaccumfaciens","na":3,"nb":10,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["wilt-habitatmech-bacdive-4c48b5114d.html","Wilt"]],"b":[["NCBITaxon%3A3236919","Curtobacterium aurantiacum"],["NCBITaxon%3A2035","Curtobacterium flaccumfaciens"],["NCBITaxon%3A2878384","Curtobacterium flaccumfaciens pv. allii"],["NCBITaxon%3A83664","Curtobacterium flaccumfaciens pv. betae"],["NCBITaxon%3A221277","Curtobacterium flaccumfaciens pv. beticola"],["NCBITaxon%3A138532","Curtobacterium flaccumfaciens pv. flaccumfaciens"]]},{"id":"NCBITaxon:28095","l":"Burkholderia gladioli","na":3,"nb":10,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["NCBITaxon%3A28095","Burkholderia gladioli"],["NCBITaxon%3A1263856","Burkholderia gladioli 3848s-5"],["NCBITaxon%3A999541","Burkholderia gladioli BSR3"],["NCBITaxon%3A1218079","Burkholderia gladioli NBRC 13700"],["NCBITaxon%3A336070","Burkholderia gladioli pv. agaricicola"],["NCBITaxon%3A32010","Burkholderia gladioli pv. alliicola"]]},{"id":"NCBITaxon:315405","l":"Streptococcus gallolyticus","na":3,"nb":10,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A1036677","Methanosarcina soligelidi"],["NCBITaxon%3A1335","Streptococcus equinus"],["NCBITaxon%3A315405","Streptococcus gallolyticus"],["NCBITaxon%3A53354","Streptococcus gallolyticus subsp. gallolyticus"],["NCBITaxon%3A981539","Streptococcus gallolyticus subsp. gallolyticus ATCC 43143"],["NCBITaxon%3A990317","Streptococcus gallolyticus subsp. gallolyticus ATCC BAA-2069"]]},{"id":"NCBITaxon:33959","l":"Lactobacillus johnsonii","na":3,"nb":10,"a":[["animal-litter-envo-00002191.html","animal litter"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["NCBITaxon%3A1596","Lactobacillus gasseri"],["NCBITaxon%3A33959","Lactobacillus johnsonii"],["NCBITaxon%3A572503","Lactobacillus johnsonii 135-1-CHN"],["NCBITaxon%3A1033983","Lactobacillus johnsonii 16"],["NCBITaxon%3A525330","Lactobacillus johnsonii ATCC 33200"],["NCBITaxon%3A909954","Lactobacillus johnsonii DPC 6026"]]},{"id":"NCBITaxon:40214","l":"Acinetobacter johnsonii","na":3,"nb":10,"a":[["liquid-water-envo-00002006.html","liquid water"],["pitcher-bto-0001069.html","pitcher"],["water-scum-envo-00005794.html","water scum"]],"b":[["NCBITaxon%3A40214","Acinetobacter johnsonii"],["NCBITaxon%3A1255605","Acinetobacter johnsonii 3M05"],["NCBITaxon%3A1217662","Acinetobacter johnsonii ANC 3681"],["NCBITaxon%3A1217663","Acinetobacter johnsonii CIP 64.6"],["NCBITaxon%3A1160709","Acinetobacter johnsonii L18"],["NCBITaxon%3A701047","Acinetobacter johnsonii SE1"]]},{"id":"NCBITaxon:1017","l":"Capnocytophaga gingivalis","na":9,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"],["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biotope-envo-00002036.html","biotope"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["organic-feature-envo-01000159.html","organic feature"]],"b":[["NCBITaxon%3A1017","Capnocytophaga gingivalis"],["NCBITaxon%3A553178","Capnocytophaga gingivalis ATCC 33624"],["NCBITaxon%3A45242","Capnocytophaga granulosa"]]},{"id":"NCBITaxon:1238","l":"Piscirickettsia salmonis","na":3,"nb":9,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["sea-water-envo-00002149.html","sea water"],["stream-envo-00000023.html","stream"]],"b":[["NCBITaxon%3A1238","Piscirickettsia salmonis"],["NCBITaxon%3A1269812","Piscirickettsia salmonis Al10015"],["NCBITaxon%3A1398558","Piscirickettsia salmonis AUSTRAL-005"],["NCBITaxon%3A1441380","Piscirickettsia salmonis CGA/3731"],["NCBITaxon%3A1435375","Piscirickettsia salmonis EM-90"],["NCBITaxon%3A1435376","Piscirickettsia salmonis ES-3"]]},{"id":"NCBITaxon:133193","l":"Alkalilimnicola","na":3,"nb":9,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["sea-water-envo-00002149.html","sea water"],["stream-envo-00000023.html","stream"]],"b":[["NCBITaxon%3A351052","Alkalilimnicola ehrlichii"],["NCBITaxon%3A187272","Alkalilimnicola ehrlichii MLHE-1"],["NCBITaxon%3A133194","Alkalilimnicola halodurans"],["NCBITaxon%3A1872450","Alkalilimnicola sp."],["NCBITaxon%3A1985295","Alkalilimnicola sp. AK92"],["NCBITaxon%3A2613922","Alkalilimnicola sp. S0819"]]},{"id":"NCBITaxon:28188","l":"Capnocytophaga canimorsus","na":9,"nb":3,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["alkaline-environment-envo-01000316.html","alkaline environment"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["NCBITaxon%3A28188","Capnocytophaga canimorsus"],["NCBITaxon%3A860228","Capnocytophaga canimorsus Cc5"],["NCBITaxon%3A1848903","Capnocytophaga canis"]]},{"id":"NCBITaxon:359","l":"Martinezella rhizogenes","na":3,"nb":9,"a":[["hairy-root-bto-0004305.html","hairy root"],["plant-gall-po-0025626.html","plant gall"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["NCBITaxon%3A362","Agrobacterium radiobacter"],["NCBITaxon%3A1972867","Agrobacterium rosae"],["NCBITaxon%3A28099","Agrobacterium rubi"],["NCBITaxon%3A1368415","Agrobacterium rubi TR3 = NBRC 13261"],["NCBITaxon%3A361","Agrobacterium sp."],["NCBITaxon%3A359","Martinezella rhizogenes"]]},{"id":"NCBITaxon:729","l":"Haemophilus parainfluenzae","na":3,"nb":9,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"],["tropical-envo-01000204.html","tropical"]],"b":[["NCBITaxon%3A732","Aggregatibacter aphrophilus"],["NCBITaxon%3A726","Haemophilus haemolyticus"],["NCBITaxon%3A729","Haemophilus parainfluenzae"],["NCBITaxon%3A888828","Haemophilus parainfluenzae ATCC 33392"],["NCBITaxon%3A1095746","Haemophilus parainfluenzae HK2019"],["NCBITaxon%3A1095745","Haemophilus parainfluenzae HK262"]]},{"id":"NCBITaxon:1623","l":"Ligilactobacillus ruminis","na":3,"nb":8,"a":[["biofilm-envo-00002034.html","biofilm"],["flagellate-bto-0000464.html","flagellate"],["juvenile-bto-0002168.html","juvenile"]],"b":[["NCBITaxon%3A1623","Ligilactobacillus ruminis"],["NCBITaxon%3A525362","Ligilactobacillus ruminis ATCC 25644"],["NCBITaxon%3A1069534","Ligilactobacillus ruminis ATCC 27782"],["NCBITaxon%3A1263085","Ligilactobacillus ruminis CAG:367"],["NCBITaxon%3A1402208","Ligilactobacillus ruminis DPC 6832"],["NCBITaxon%3A1423798","Ligilactobacillus ruminis DSM 20403 = NBRC 102161"]]},{"id":"NCBITaxon:198","l":"Campylobacter hyointestinalis","na":3,"nb":8,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["feces-uberon-0001988.html","feces"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["NCBITaxon%3A198","Campylobacter hyointestinalis"],["NCBITaxon%3A91352","Campylobacter hyointestinalis subsp. hyointestinalis"],["NCBITaxon%3A1031746","Campylobacter hyointestinalis subsp. hyointestinalis LMG 9260"],["NCBITaxon%3A91353","Campylobacter hyointestinalis subsp. lawsonii"],["NCBITaxon%3A1031752","Campylobacter hyointestinalis subsp. lawsonii CCUG 27631"],["NCBITaxon%3A206","Campylobacter sputorum"]]},{"id":"NCBITaxon:47885","l":"Pseudomonas oryzihabitans","na":8,"nb":3,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"],["hospital-envo-00002173.html","hospital"],["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"],["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["NCBITaxon%3A47885","Pseudomonas oryzihabitans"],["NCBITaxon%3A1215113","Pseudomonas oryzihabitans NBRC 102199"],["NCBITaxon%3A1112217","Pseudomonas psychrotolerans L19"]]},{"id":"NCBITaxon:537937","l":"Bifidobacterium longum subsp. infantis CCUG 52486","na":8,"nb":3,"a":[["bay-envo-00000032.html","bay"],["black-smoker-envo-00000218.html","black smoker"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["saline-water-envo-00002010.html","saline water"],["village-biome-envo-01000246.html","village biome"]],"b":[["NCBITaxon%3A216816","Bifidobacterium longum"],["NCBITaxon%3A1682","Bifidobacterium longum subsp. infantis"],["NCBITaxon%3A537937","Bifidobacterium longum subsp. infantis CCUG 52486"]]},{"id":"NCBITaxon:1299","l":"Deinococcus radiodurans","na":7,"nb":3,"a":[["animal-house-envo-00003040.html","animal house"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["water-scum-envo-00005794.html","water scum"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"]],"b":[["NCBITaxon%3A1299","Deinococcus radiodurans"],["NCBITaxon%3A243230","Deinococcus radiodurans R1 = ATCC 13939 = DSM 20539"],["NCBITaxon%3A47478","Deinococcus sp."]]},{"id":"NCBITaxon:13690","l":"Sphingobium yanoikuyae","na":7,"nb":3,"a":[["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["resting-cell-bto-0001170.html","resting cell"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"],["water-scum-envo-00005794.html","water scum"]],"b":[["NCBITaxon%3A13690","Sphingobium yanoikuyae"],["NCBITaxon%3A883163","Sphingobium yanoikuyae ATCC 51230"],["NCBITaxon%3A1074493","Sphingobium yanoikuyae XLDN2-5"]]},{"id":"NCBITaxon:154046","l":"Hungatella hathewayi","na":3,"nb":7,"a":[["biofilm-envo-00002034.html","biofilm"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["NCBITaxon%3A154046","Hungatella hathewayi"],["NCBITaxon%3A999412","Hungatella hathewayi 12489931"],["NCBITaxon%3A1263067","Hungatella hathewayi CAG:224"],["NCBITaxon%3A566550","Hungatella hathewayi DSM 13479"],["NCBITaxon%3A1232440","Hungatella hathewayi VE202-04"],["NCBITaxon%3A1232451","Hungatella hathewayi VE202-11"]]},{"id":"NCBITaxon:165179","l":"Segatella copri","na":7,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"],["juvenile-bto-0002168.html","juvenile"],["rumen-uberon-0007365.html","rumen"],["tongue-bto-0001385.html","tongue"],["vaginal-fluid-bto-0003084.html","vaginal fluid"],["animal-litter-envo-00002191.html","animal litter"]],"b":[["NCBITaxon%3A165179","Segatella copri"],["NCBITaxon%3A1263102","Segatella copri CAG:164"],["NCBITaxon%3A537011","Segatella copri DSM 18205"]]},{"id":"NCBITaxon:28108","l":"Alteromonas macleodii","na":3,"nb":7,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["marine-water-body-envo-00001999.html","marine water body"],["sandstone-envo-00002055.html","sandstone"]],"b":[["NCBITaxon%3A28108","Alteromonas macleodii"],["NCBITaxon%3A529120","Alteromonas macleodii ATCC 27126"],["NCBITaxon%3A1004787","Alteromonas macleodii str. 'Balearic Sea AD45'"],["NCBITaxon%3A1004785","Alteromonas macleodii str. 'Black Sea 11'"],["NCBITaxon%3A1004788","Alteromonas macleodii str. 'English Channel 673'"],["NCBITaxon%3A160763","Alteromonas macleodii subsp. abyssi"]]},{"id":"NCBITaxon:283734","l":"Staphylococcus pseudintermedius","na":3,"nb":7,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["NCBITaxon%3A1280","Staphylococcus aureus"],["NCBITaxon%3A1285","Staphylococcus intermedius"],["NCBITaxon%3A283734","Staphylococcus pseudintermedius"],["NCBITaxon%3A1266717","Staphylococcus pseudintermedius E140"],["NCBITaxon%3A984892","Staphylococcus pseudintermedius ED99"],["NCBITaxon%3A937773","Staphylococcus pseudintermedius HKU10-03"]]},{"id":"NCBITaxon:43770","l":"Corynebacterium striatum","na":3,"nb":7,"a":[["bone-element-uberon-0001474.html","bone element"],["foot-bto-0000476.html","foot"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"]],"b":[["NCBITaxon%3A43765","Corynebacterium amycolatum"],["NCBITaxon%3A1717","Corynebacterium diphtheriae"],["NCBITaxon%3A38301","Corynebacterium minutissimum"],["NCBITaxon%3A1720","Corynebacterium sp."],["NCBITaxon%3A43770","Corynebacterium striatum"],["NCBITaxon%3A525268","Corynebacterium striatum ATCC 6940"]]},{"id":"NCBITaxon:55518","l":"Magnetospirillum gryphiswaldense","na":7,"nb":3,"a":[["bay-envo-00000032.html","bay"],["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"],["saline-water-envo-00002010.html","saline water"],["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["farm-soil-envo-00005749.html","farm soil"],["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A55518","Magnetospirillum gryphiswaldense"],["NCBITaxon%3A431944","Magnetospirillum gryphiswaldense MSR-1"],["NCBITaxon%3A1430440","Magnetospirillum gryphiswaldense MSR-1 v2"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":3,"nb":7,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A663","Vibrio alginolyticus"],["NCBITaxon%3A314288","Vibrio alginolyticus 12G01"],["NCBITaxon%3A674977","Vibrio alginolyticus 40B"],["NCBITaxon%3A664","Vibrio alginolyticus chemovar iophagus"],["NCBITaxon%3A1219076","Vibrio alginolyticus NBRC 15630 = ATCC 17749"],["NCBITaxon%3A669","Vibrio harveyi"]]},{"id":"NCBITaxon:83451","l":"Archangium violaceum","na":7,"nb":3,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["wood-bto-0005516.html","wood"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["plant-litter-envo-01000628.html","plant litter"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A48","Archangium gephyra"],["NCBITaxon%3A83451","Archangium violaceum"],["NCBITaxon%3A1406225","Archangium violaceum Cb vi76"]]},{"id":"NCBITaxon:1005038","l":"Fimbriimonas","na":3,"nb":6,"a":[["inflorescence-bto-0000628.html","inflorescence"],["plant-bto-0001481.html","plant"],["root-bto-0001188.html","root"]],"b":[["NCBITaxon%3A3712373","Fimbriimonas antarctica (SeqCode)"],["NCBITaxon%3A1005039","Fimbriimonas ginsengisoli"],["NCBITaxon%3A661478","Fimbriimonas ginsengisoli Gsoil 348"],["NCBITaxon%3A1936159","Fimbriimonas sp."],["NCBITaxon%3A3378866","Fimbriimonas sp. LA-C6"],["NCBITaxon%3A1936177","uncultured Fimbriimonas sp."]]},{"id":"NCBITaxon:137591","l":"Weissella cibaria","na":3,"nb":6,"a":[["biofilm-bto-0002690.html","biofilm"],["epithelial-cell-bto-0000414.html","epithelial cell"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A137591","Weissella cibaria"],["NCBITaxon%3A1255594","Weissella cibaria 3385"],["NCBITaxon%3A1255595","Weissella cibaria 3386"],["NCBITaxon%3A1357418","Weissella cibaria F16_1"],["NCBITaxon%3A911104","Weissella cibaria KACC 11862"],["NCBITaxon%3A1583","Weissella confusa"]]},{"id":"NCBITaxon:1391","l":"Aneurinibacillus aneurinilyticus","na":6,"nb":3,"a":[["animal-house-envo-00003040.html","animal house"],["rhizosphere-envo-00005801.html","rhizosphere"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["NCBITaxon%3A1391","Aneurinibacillus aneurinilyticus"],["NCBITaxon%3A649747","Aneurinibacillus aneurinilyticus ATCC 12856"],["NCBITaxon%3A83428","uncultured Bacillus sp."]]},{"id":"NCBITaxon:46124","l":"Granulicatella adiacens","na":6,"nb":3,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["bone-element-uberon-0001474.html","bone element"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["NCBITaxon%3A46124","Granulicatella adiacens"],["NCBITaxon%3A638301","Granulicatella adiacens ATCC 49175"],["NCBITaxon%3A1073361","Granulicatella adiacens CC94D"]]},{"id":"NCBITaxon:1275","l":"Kocuria rosea","na":5,"nb":3,"a":[["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["marine-environment-envo-01000320.html","marine environment"],["oil-spill-envo-00002061.html","oil spill"],["painting-habitatmech-bacdive-0bfb662164.html","Painting"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A37921","Arthrobacter agilis"],["NCBITaxon%3A1275","Kocuria rosea"],["NCBITaxon%3A136273","Kocuria rosea subsp. polaris"]]},{"id":"NCBITaxon:135569","l":"Helicobacter apodemus","na":5,"nb":3,"a":[["cecum-mucosa-bto-0000213.html","cecum mucosa"],["epithelium-bto-0000416.html","epithelium"],["ht-29-cell-bto-0000182.html","HT-29 cell"],["lymphoid-tissue-bto-0000753.html","lymphoid tissue"],["mucosa-bto-0000886.html","mucosa"]],"b":[["NCBITaxon%3A135569","Helicobacter apodemus"],["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"]]},{"id":"NCBITaxon:1365","l":"Pseudolactococcus plantarum","na":3,"nb":5,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["NCBITaxon%3A44273","Lactococcus sp."],["NCBITaxon%3A40542","Leptotrichia buccalis"],["NCBITaxon%3A1365","Pseudolactococcus plantarum"],["NCBITaxon%3A1255636","Pseudolactococcus plantarum CNRZ 1322"],["NCBITaxon%3A1348632","Pseudolactococcus plantarum NBRC 100936"]]},{"id":"NCBITaxon:145262","l":"Methanothermobacter thermautotrophicus","na":5,"nb":3,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["intestine-environment-envo-2100002.html","intestine environment"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A145262","Methanothermobacter thermautotrophicus"],["NCBITaxon%3A187420","Methanothermobacter thermautotrophicus str. Delta H"],["NCBITaxon%3A79930","Methanothermobacter thermautotrophicus str. Winter"]]},{"id":"NCBITaxon:1516","l":"Thermoanaerobacter ethanolicus subsp. thermohydrosulfuricus","na":3,"nb":5,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A1757","Thermoanaerobacter ethanolicus"],["NCBITaxon%3A1125974","Thermoanaerobacter ethanolicus subsp. indiensis"],["NCBITaxon%3A1516","Thermoanaerobacter ethanolicus subsp. thermohydrosulfuricus"],["NCBITaxon%3A248492","Thermoanaerobacter thermohydrosulfuricus subsp. carboxydovorans"],["NCBITaxon%3A1198630","Thermoanaerobacter thermohydrosulfuricus WC1"]]},{"id":"NCBITaxon:1633","l":"Limosilactobacillus vaginalis","na":3,"nb":5,"a":[["ileum-bto-0000620.html","ileum"],["vaginal-fluid-bto-0003084.html","vaginal fluid"],["cropland-biome-envo-01000245.html","cropland biome"]],"b":[["NCBITaxon%3A1633","Limosilactobacillus vaginalis"],["NCBITaxon%3A1423814","Limosilactobacillus vaginalis DSM 5837 = ATCC 49540"],["NCBITaxon%3A858674","Limosilactobacillus vaginalis EX336960VC05"],["NCBITaxon%3A858675","Limosilactobacillus vaginalis EX336960VC11"],["NCBITaxon%3A858676","Limosilactobacillus vaginalis EX336960VC12"]]},{"id":"NCBITaxon:1648","l":"Erysipelothrix rhusiopathiae","na":3,"nb":5,"a":[["skin-of-body-uberon-0002097.html","skin of body"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["animal-litter-envo-00002191.html","animal litter"]],"b":[["NCBITaxon%3A1648","Erysipelothrix rhusiopathiae"],["NCBITaxon%3A525280","Erysipelothrix rhusiopathiae ATCC 19414"],["NCBITaxon%3A650150","Erysipelothrix rhusiopathiae str. Fujisawa"],["NCBITaxon%3A3119429","Erysipelothrix rhusiopathiae subsp. ohloneorum"],["NCBITaxon%3A1313290","Erysipelothrix rhusiopathiae SY1027"]]},{"id":"NCBITaxon:1661","l":"Trueperella pyogenes","na":5,"nb":3,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["uterus-bto-0001424.html","uterus"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["NCBITaxon%3A1661","Trueperella pyogenes"],["NCBITaxon%3A1448141","Trueperella pyogenes MS249"],["NCBITaxon%3A1435056","Trueperella pyogenes TP8"]]},{"id":"NCBITaxon:256","l":"Myroides odoratus","na":3,"nb":5,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"]],"b":[["NCBITaxon%3A1820002","Bartonella mastomydis"],["NCBITaxon%3A76832","Myroides odoratimimus"],["NCBITaxon%3A256","Myroides odoratus"],["NCBITaxon%3A883155","Myroides odoratus CIP 103059"],["NCBITaxon%3A929704","Myroides odoratus DSM 2801"]]},{"id":"NCBITaxon:2751","l":"Carnobacterium maltaromaticum","na":3,"nb":5,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["food-habitatmech-madin-81cb9e74cb.html","food"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["NCBITaxon%3A2751","Carnobacterium maltaromaticum"],["NCBITaxon%3A1255596","Carnobacterium maltaromaticum 38b"],["NCBITaxon%3A1087479","Carnobacterium maltaromaticum ATCC 35586"],["NCBITaxon%3A1449341","Carnobacterium maltaromaticum DSM 20342"],["NCBITaxon%3A1234679","Carnobacterium maltaromaticum LMA28"]]},{"id":"NCBITaxon:28262","l":"Thermodesulfovibrio yellowstonii","na":5,"nb":3,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["cultivated-environment-envo-01000311.html","cultivated environment"],["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"]],"b":[["NCBITaxon%3A1123375","Thermodesulfovibrio islandicus DSM 12570"],["NCBITaxon%3A28262","Thermodesulfovibrio yellowstonii"],["NCBITaxon%3A289376","Thermodesulfovibrio yellowstonii DSM 11347"]]},{"id":"NCBITaxon:292800","l":"Flavonifractor plautii","na":3,"nb":5,"a":[["goblet-cell-bto-0001540.html","goblet cell"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["secretion-bto-0002979.html","secretion"]],"b":[["NCBITaxon%3A292800","Flavonifractor plautii"],["NCBITaxon%3A742738","Flavonifractor plautii 1_3_50AFAA"],["NCBITaxon%3A411475","Flavonifractor plautii ATCC 29863"],["NCBITaxon%3A1073358","Flavonifractor plautii CC43_001K"],["NCBITaxon%3A649753","Flavonifractor plautii DSM 6740"]]},{"id":"NCBITaxon:29346","l":"Alkalithermobacter thermoalcaliphilus","na":5,"nb":3,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"],["cultivated-environment-envo-01000311.html","cultivated environment"],["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"]],"b":[["NCBITaxon%3A29349","Alkalithermobacter paradoxus"],["NCBITaxon%3A29346","Alkalithermobacter thermoalcaliphilus"],["NCBITaxon%3A1121328","Alkalithermobacter thermoalcaliphilus JW-YL-7 = DSM 7308"]]},{"id":"NCBITaxon:29575","l":"Taylorella equigenitalis","na":3,"nb":5,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["semen-bto-0001230.html","semen"],["urethra-bto-0001426.html","urethra"]],"b":[["NCBITaxon%3A29575","Taylorella equigenitalis"],["NCBITaxon%3A1091497","Taylorella equigenitalis 14/56"],["NCBITaxon%3A1323579","Taylorella equigenitalis 96-58774"],["NCBITaxon%3A743973","Taylorella equigenitalis ATCC 35865"],["NCBITaxon%3A937774","Taylorella equigenitalis MCE9"]]},{"id":"NCBITaxon:33059","l":"Acidithiobacillus caldus","na":3,"nb":5,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["paddy-field-envo-00000297.html","paddy field"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A33059","Acidithiobacillus caldus"],["NCBITaxon%3A637389","Acidithiobacillus caldus ATCC 51756"],["NCBITaxon%3A990288","Acidithiobacillus caldus SM-1"],["NCBITaxon%3A184426","environmental samples"],["NCBITaxon%3A184427","uncultured Acidithiobacillus caldus"]]},{"id":"NCBITaxon:76759","l":"Pseudomonas monteilii","na":3,"nb":5,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["NCBITaxon%3A76759","Pseudomonas monteilii"],["NCBITaxon%3A1215110","Pseudomonas monteilii NBRC 103158 = DSM 14164"],["NCBITaxon%3A1123524","Pseudomonas monteilii QM"],["NCBITaxon%3A1435044","Pseudomonas monteilii SB3078"],["NCBITaxon%3A1435058","Pseudomonas monteilii SB3101"]]},{"id":"NCBITaxon:103817","l":"Janibacter terrae","na":4,"nb":3,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"],["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A103817","Janibacter terrae"],["NCBITaxon%3A1216972","Janibacter terrae NBRC 107853"],["NCBITaxon%3A1053688","Janibacter terrae NBRC 107854 = JCM 12887"]]},{"id":"NCBITaxon:108015","l":"Bradyrhizobium yuanmingense","na":3,"nb":4,"a":[["rhizosphere-envo-00005801.html","rhizosphere"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["NCBITaxon%3A108015","Bradyrhizobium yuanmingense"],["NCBITaxon%3A1128326","Bradyrhizobium yuanmingense CCBAU 05623"],["NCBITaxon%3A1128327","Bradyrhizobium yuanmingense CCBAU 25021"],["NCBITaxon%3A1128328","Bradyrhizobium yuanmingense CCBAU 35157"]]},{"id":"NCBITaxon:1249","l":"Weissella paramesenteroides","na":3,"nb":4,"a":[["cecum-bto-0000166.html","cecum"],["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"]],"b":[["NCBITaxon%3A1930076","Leuconostoc sp."],["NCBITaxon%3A46256","Weissella hellenica"],["NCBITaxon%3A1249","Weissella paramesenteroides"],["NCBITaxon%3A585506","Weissella paramesenteroides ATCC 33313"]]},{"id":"NCBITaxon:129338","l":"Geobacillus subterraneus","na":3,"nb":4,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A129338","Geobacillus subterraneus"],["NCBITaxon%3A1382357","Geobacillus subterraneus PSS2"],["NCBITaxon%3A1117704","Geobacillus subterraneus subsp. aromaticivorans"],["NCBITaxon%3A1690415","Geobacillus subterraneus subsp. subterraneus"]]},{"id":"NCBITaxon:131111","l":"Schaalia turicensis","na":4,"nb":3,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["skin-of-body-uberon-0002097.html","skin of body"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"]],"b":[["NCBITaxon%3A131111","Schaalia turicensis"],["NCBITaxon%3A883077","Schaalia turicensis ACS-279-V-Col4"],["NCBITaxon%3A184870","Varibaculum cambriense"]]},{"id":"NCBITaxon:1328866","l":"Rathayibacter festucae DSM 15932","na":3,"nb":4,"a":[["leaf-po-0025034.html","leaf"],["plant-gall-po-0025626.html","plant gall"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["NCBITaxon%3A33941","Geobacillus thermoleovorans"],["NCBITaxon%3A278196","Geobacillus thermoleovorans subsp. stromboliensis"],["NCBITaxon%3A110937","Rathayibacter festucae"],["NCBITaxon%3A1328866","Rathayibacter festucae DSM 15932"]]},{"id":"NCBITaxon:135083","l":"Centipeda noxia","na":4,"nb":3,"a":[["dorsum-bto-0001713.html","dorsum"],["saliva-bto-0001202.html","saliva"],["sgs-cell-bto-0001210.html","SGS cell"],["tongue-bto-0001385.html","tongue"]],"b":[["NCBITaxon%3A135083","Centipeda noxia"],["NCBITaxon%3A585503","Centipeda noxia ATCC 43541"],["NCBITaxon%3A702437","Centipeda noxia F0398"]]},{"id":"NCBITaxon:1353","l":"Enterococcus gallinarum","na":3,"nb":4,"a":[["foregut-bto-0000507.html","foregut"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A1353","Enterococcus gallinarum"],["NCBITaxon%3A565653","Enterococcus gallinarum EG2"],["NCBITaxon%3A1357296","Enterococcus gallinarum EGD-AAK12"],["NCBITaxon%3A1218091","Enterococcus gallinarum NBRC 100675"]]},{"id":"NCBITaxon:1472","l":"Paenibacillus pabuli","na":4,"nb":3,"a":[["animal-house-envo-00003040.html","animal house"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A1397","Niallia circulans"],["NCBITaxon%3A1472","Paenibacillus pabuli"],["NCBITaxon%3A1349782","Paenibacillus pabuli NBRC 13638"]]},{"id":"NCBITaxon:1479","l":"Bacillus smithii","na":4,"nb":3,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A1479","Bacillus smithii"],["NCBITaxon%3A665952","Bacillus smithii 7_3_47FAA"],["NCBITaxon%3A1220590","Bacillus smithii NBRC 15311"]]},{"id":"NCBITaxon:148604","l":"Limosilactobacillus ingluviei","na":4,"nb":3,"a":[["animal-house-envo-00003040.html","animal house"],["organic-waste-material-envo-00002873.html","organic waste material"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["NCBITaxon%3A148604","Limosilactobacillus ingluviei"],["NCBITaxon%3A1423760","Limosilactobacillus ingluviei DSM 15946"],["NCBITaxon%3A1203076","Limosilactobacillus ingluviei str. Autruche 4"]]},{"id":"NCBITaxon:1519","l":"Clostridium tyrobutyricum","na":3,"nb":4,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A1519","Clostridium tyrobutyricum"],["NCBITaxon%3A1408889","Clostridium tyrobutyricum DIVETGP"],["NCBITaxon%3A1121342","Clostridium tyrobutyricum DSM 2637 = ATCC 25755 = JCM 11008"],["NCBITaxon%3A1212547","Clostridium tyrobutyricum UC7086"]]},{"id":"NCBITaxon:1588","l":"Lentilactobacillus hilgardii","na":3,"nb":4,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A1588","Lentilactobacillus hilgardii"],["NCBITaxon%3A525310","Lentilactobacillus hilgardii ATCC 27305"],["NCBITaxon%3A1423757","Lentilactobacillus hilgardii DSM 20176 = ATCC 8290"],["NCBITaxon%3A1580","Levilactobacillus brevis"]]},{"id":"NCBITaxon:1622","l":"Ligilactobacillus murinus","na":4,"nb":3,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"],["animal-litter-envo-00002191.html","animal litter"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["NCBITaxon%3A1622","Ligilactobacillus murinus"],["NCBITaxon%3A1235801","Ligilactobacillus murinus ASF361"],["NCBITaxon%3A1423772","Ligilactobacillus murinus DSM 20452 = NBRC 14221"]]},{"id":"NCBITaxon:164","l":"Treponema pectinovorum","na":4,"nb":3,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["pig-manure-envo-00003860.html","pig manure"],["skin-environment-envo-2100003.html","skin environment"],["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["NCBITaxon%3A164","Treponema pectinovorum"],["NCBITaxon%3A83524","Treponema pectinovorum 8:A:33768"],["NCBITaxon%3A1081905","Treponema pectinovorum VPI D-36DR-2"]]},{"id":"NCBITaxon:1697","l":"Corynebacterium ammoniagenes","na":3,"nb":4,"a":[["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A1697","Corynebacterium ammoniagenes"],["NCBITaxon%3A649754","Corynebacterium ammoniagenes DSM 20306"],["NCBITaxon%3A1255706","Corynebacterium ammoniagenes ws_2211"],["NCBITaxon%3A1705","Corynebacterium stationis"]]},{"id":"NCBITaxon:1961","l":"Streptomyces virginiae","na":3,"nb":4,"a":[["clay-envo-00002982.html","clay"],["plain-envo-00000086.html","plain"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A1535204","Metabacillus endolithicus"],["NCBITaxon%3A67381","Streptomyces violascens"],["NCBITaxon%3A1961","Streptomyces virginiae"],["NCBITaxon%3A3478784","Streptomyces virginiae subsp. lipoxae (nom. nud.)"]]},{"id":"NCBITaxon:28115","l":"Porphyromonas macacae","na":4,"nb":3,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"],["mud-envo-01000001.html","mud"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A28115","Porphyromonas macacae"],["NCBITaxon%3A1122974","Porphyromonas macacae DSM 20710 = JCM 13914"],["NCBITaxon%3A1236521","Porphyromonas macacae JCM 15984"]]},{"id":"NCBITaxon:321318","l":"Dietzia cinnamea","na":3,"nb":4,"a":[["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["NCBITaxon%3A321318","Dietzia cinnamea"],["NCBITaxon%3A1223524","Dietzia cinnamea NBRC 102147"],["NCBITaxon%3A910954","Dietzia cinnamea P4"],["NCBITaxon%3A37915","Dietzia maris"]]},{"id":"NCBITaxon:36808","l":"Corynebacterium bovis","na":3,"nb":4,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["NCBITaxon%3A36808","Corynebacterium bovis"],["NCBITaxon%3A927655","Corynebacterium bovis DSM 20582 = CIP 54.80"],["NCBITaxon%3A272240","Gulosibacter faecalis"],["NCBITaxon%3A1915061","Pseudoclavibacter sp."]]},{"id":"NCBITaxon:398578","l":"Delftia acidovorans SPH-1","na":4,"nb":3,"a":[["aquifer-envo-00012408.html","aquifer"],["large-river-biome-envo-00000887.html","large river biome"],["sewage-envo-00002018.html","sewage"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["NCBITaxon%3A80866","Delftia acidovorans"],["NCBITaxon%3A1218107","Delftia acidovorans NBRC 14950"],["NCBITaxon%3A398578","Delftia acidovorans SPH-1"]]},{"id":"NCBITaxon:400946","l":"Wohlfahrtiimonas chitiniclastica","na":3,"nb":4,"a":[["foot-bto-0000476.html","foot"],["pancreas-bto-0000988.html","pancreas"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A472","Acinetobacter sp."],["NCBITaxon%3A400946","Wohlfahrtiimonas chitiniclastica"],["NCBITaxon%3A1123502","Wohlfahrtiimonas chitiniclastica DSM 18708"],["NCBITaxon%3A1261130","Wohlfahrtiimonas chitiniclastica SH04"]]},{"id":"NCBITaxon:43771","l":"Corynebacterium urealyticum","na":3,"nb":4,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"]],"b":[["NCBITaxon%3A43771","Corynebacterium urealyticum"],["NCBITaxon%3A504474","Corynebacterium urealyticum DSM 7109"],["NCBITaxon%3A1267754","Corynebacterium urealyticum DSM 7111"],["NCBITaxon%3A401472","Corynebacterium ureicelerivorans"]]},{"id":"NCBITaxon:51665","l":"Aerococcus urinaeequi","na":4,"nb":3,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A51665","Aerococcus urinaeequi"],["NCBITaxon%3A1120952","Aerococcus urinaeequi DSM 20341 = CCUG 28094"],["NCBITaxon%3A1377","Aerococcus viridans"]]},{"id":"NCBITaxon:59505","l":"Actinotignum schaalii","na":4,"nb":3,"a":[["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["NCBITaxon%3A59505","Actinotignum schaalii"],["NCBITaxon%3A1120932","Actinotignum schaalii DSM 15541"],["NCBITaxon%3A883067","Actinotignum schaalii FB123-CNA-2"]]},{"id":"NCBITaxon:678","l":"Vibrio sp.","na":4,"nb":3,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["aquaculture-farm-envo-03600074.html","aquaculture farm"],["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["NCBITaxon%3A2077090","Vibrio gangliei"],["NCBITaxon%3A678","Vibrio sp."],["NCBITaxon%3A1046128","Vibrio zhanjiangensis"]]},{"id":"NCBITaxon:1019","l":"Capnocytophaga sputigena","na":3,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"],["biotope-envo-00002036.html","biotope"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A1019","Capnocytophaga sputigena"],["NCBITaxon%3A553177","Capnocytophaga sputigena ATCC 33612"],["NCBITaxon%3A1073354","Capnocytophaga sputigena CC21_001D"]]},{"id":"NCBITaxon:104102","l":"Acetobacter tropicalis","na":3,"nb":3,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"],["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A104102","Acetobacter tropicalis"],["NCBITaxon%3A749388","Acetobacter tropicalis NBRC 101654"],["NCBITaxon%3A1307920","Acetobacter tropicalis NRIC 0312"]]},{"id":"NCBITaxon:1108","l":"Chloroflexus aurantiacus","na":3,"nb":3,"a":[["rhizosphere-envo-00005801.html","rhizosphere"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["NCBITaxon%3A1108","Chloroflexus aurantiacus"],["NCBITaxon%3A324602","Chloroflexus aurantiacus J-10-fl"],["NCBITaxon%3A480224","Chloroflexus aurantiacus Y-400-fl"]]},{"id":"NCBITaxon:119224","l":"Streptococcus phocae","na":3,"nb":3,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"]],"b":[["NCBITaxon%3A119224","Streptococcus phocae"],["NCBITaxon%3A1698290","Streptococcus phocae subsp. phocae"],["NCBITaxon%3A1000562","Streptococcus phocae subsp. salmonis"]]},{"id":"NCBITaxon:1278308","l":"[Zimmermannella] faecalis ATCC 13722","na":3,"nb":3,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["fecal-environment-envo-01001029.html","fecal environment"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A272240","Gulosibacter faecalis"],["NCBITaxon%3A1915061","Pseudoclavibacter sp."],["NCBITaxon%3A1278308","[Zimmermannella] faecalis ATCC 13722"]]},{"id":"NCBITaxon:1329","l":"Streptococcus canis","na":3,"nb":3,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["NCBITaxon%3A1329","Streptococcus canis"],["NCBITaxon%3A482234","Streptococcus canis FSL Z3-227"],["NCBITaxon%3A1306","Streptococcus sp."]]},{"id":"NCBITaxon:1381","l":"Atopobium minutum","na":3,"nb":3,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["geographic-feature-envo-00000000.html","geographic feature"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A54007","Anaerococcus octavius"],["NCBITaxon%3A1381","Atopobium minutum"],["NCBITaxon%3A997872","Atopobium minutum 10063974"]]},{"id":"NCBITaxon:1423830","l":"Lacticaseibacillus paracasei subsp. tolerans DSM 20258","na":3,"nb":3,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A1597","Lacticaseibacillus paracasei"],["NCBITaxon%3A113557","Lacticaseibacillus paracasei subsp. tolerans"],["NCBITaxon%3A1423830","Lacticaseibacillus paracasei subsp. tolerans DSM 20258"]]},{"id":"NCBITaxon:153026","l":"Desulforegula conservatrix","na":3,"nb":3,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["low-tide-zone-envo-00000319.html","low tide zone"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["NCBITaxon%3A153026","Desulforegula conservatrix"],["NCBITaxon%3A1121417","Desulforegula conservatrix DSM 13527"],["NCBITaxon%3A1304885","Desulforegula conservatrix Mb1Pa"]]},{"id":"NCBITaxon:1534","l":"Clostridium kluyveri","na":3,"nb":3,"a":[["reservoir-envo-00000025.html","reservoir"],["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"]],"b":[["NCBITaxon%3A1534","Clostridium kluyveri"],["NCBITaxon%3A431943","Clostridium kluyveri DSM 555"],["NCBITaxon%3A583346","Clostridium kluyveri NBRC 12016"]]},{"id":"NCBITaxon:154","l":"Winmispira thermophila","na":3,"nb":3,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["lagoon-envo-00000038.html","lagoon"],["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A154","Winmispira thermophila"],["NCBITaxon%3A665571","Winmispira thermophila DSM 6192"],["NCBITaxon%3A869211","Winmispira thermophila DSM 6578"]]},{"id":"NCBITaxon:1570","l":"Halobacillus halophilus","na":3,"nb":3,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["NCBITaxon%3A1570","Halobacillus halophilus"],["NCBITaxon%3A866895","Halobacillus halophilus DSM 2266"],["NCBITaxon%3A56800","Halobacillus sp."]]},{"id":"NCBITaxon:2041036","l":"Corynebacterium gottingense","na":3,"nb":3,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["co-culture-habitatmech-bacdive-ff945d8a69.html","Co-culture"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A2041036","Corynebacterium gottingense"],["NCBITaxon%3A2026255","Corynebacterium hadale"],["NCBITaxon%3A156978","Corynebacterium imitans"]]},{"id":"NCBITaxon:239935","l":"Akkermansia muciniphila","na":3,"nb":3,"a":[["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["secretion-bto-0002979.html","secretion"]],"b":[["NCBITaxon%3A239935","Akkermansia muciniphila"],["NCBITaxon%3A349741","Akkermansia muciniphila ATCC BAA-835"],["NCBITaxon%3A1263034","Akkermansia muciniphila CAG:154"]]},{"id":"NCBITaxon:28091","l":"Neisseria weaveri","na":3,"nb":3,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"]],"b":[["NCBITaxon%3A28091","Neisseria weaveri"],["NCBITaxon%3A1051972","Neisseria weaveri ATCC 51223"],["NCBITaxon%3A1051985","Neisseria weaveri LMG 5135"]]},{"id":"NCBITaxon:301375","l":"Methanothrix harundinacea","na":3,"nb":3,"a":[["small-river-biome-envo-00000890.html","small river biome"],["shoreline-envo-00000486.html","shoreline"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["NCBITaxon%3A301375","Methanothrix harundinacea"],["NCBITaxon%3A1110509","Methanothrix harundinacea 6Ac"],["NCBITaxon%3A1127228","Methanothrix harundinacea 8Ac"]]},{"id":"NCBITaxon:360807","l":"Roseburia inulinivorans","na":3,"nb":3,"a":[["pig-manure-envo-00003860.html","pig manure"],["tropical-envo-01000204.html","tropical"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A360807","Roseburia inulinivorans"],["NCBITaxon%3A1263105","Roseburia inulinivorans CAG:15"],["NCBITaxon%3A622312","Roseburia inulinivorans DSM 16841"]]},{"id":"NCBITaxon:467210","l":"Lachnoanaerobaculum saburreum","na":3,"nb":3,"a":[["archeological-site-envo-00000564.html","archeological site"],["animal-habitation-envo-00005803.html","animal habitation"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["NCBITaxon%3A467210","Lachnoanaerobaculum saburreum"],["NCBITaxon%3A887325","Lachnoanaerobaculum saburreum DSM 3986"],["NCBITaxon%3A1095750","Lachnoanaerobaculum saburreum F0468"]]},{"id":"NCBITaxon:501571","l":"Butyricicoccus pullicaecorum","na":3,"nb":3,"a":[["poultry-litter-envo-00002192.html","poultry litter"],["urban-biome-envo-01000249.html","urban biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["NCBITaxon%3A501571","Butyricicoccus pullicaecorum"],["NCBITaxon%3A1203606","Butyricicoccus pullicaecorum 1.2"],["NCBITaxon%3A1121128","Butyricicoccus pullicaecorum DSM 23266"]]},{"id":"NCBITaxon:51663","l":"Pediococcus damnosus","na":3,"nb":3,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["blast-cell-bto-0000125.html","blast cell"]],"b":[["NCBITaxon%3A51663","Pediococcus damnosus"],["NCBITaxon%3A1089442","Pediococcus damnosus 9-6b"],["NCBITaxon%3A1448143","Pediococcus damnosus LMG 28219"]]},{"id":"NCBITaxon:83655","l":"Leclercia adecarboxylata","na":3,"nb":3,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["NCBITaxon%3A42895","Enterobacter sp."],["NCBITaxon%3A83655","Leclercia adecarboxylata"],["NCBITaxon%3A911008","Leclercia adecarboxylata ATCC 23216 = NBRC 102595"]]},{"id":"NCBITaxon:186817","l":"Bacillaceae","na":2,"nb":40935,"a":[["leaf-bto-0000713.html","leaf"],["trachea-bto-0001388.html","trachea"]],"b":[["NCBITaxon%3A3054939","Aciduricibacillus chroicocephali"],["NCBITaxon%3A279215","Aeribacillus alveayuensis"],["NCBITaxon%3A1868734","Aeribacillus composti"],["NCBITaxon%3A2078952","Aeribacillus kexueae"],["NCBITaxon%3A33936","Aeribacillus pallidus"],["NCBITaxon%3A1196032","Aeribacillus pallidus CIC9"]]},{"id":"NCBITaxon:1883","l":"Streptomyces","na":2,"nb":31267,"a":[["crop-bto-0000301.html","crop"],["lab-synthesis-habitatmech-bacdive-0e92e77cd4.html","Lab-synthesis"]],"b":[["NCBITaxon%3A208445","Amycolatopsis tolypomycina"],["NCBITaxon%3A1470348","Candidatus Streptomyces massiliensis"],["NCBITaxon%3A1211820","Candidatus Streptomyces massiliensis AP10"],["NCBITaxon%3A371608","Candidatus Streptomyces philanthi"],["NCBITaxon%3A1563718","Candidatus Streptomyces philanthi bv. albopilosus"],["NCBITaxon%3A371609","Candidatus Streptomyces philanthi bv. barbiger"]]},{"id":"NCBITaxon:186826","l":"Lactobacillales","na":2,"nb":15185,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["stem-bto-0001300.html","stem"]],"b":[["NCBITaxon%3A46125","Abiotrophia defectiva"],["NCBITaxon%3A592010","Abiotrophia defectiva ATCC 49176"],["NCBITaxon%3A1410024","Abiotrophia defectiva HMP_JCVI_SC0171"],["NCBITaxon%3A1410025","Abiotrophia defectiva HMP_JCVI_SC0235"],["NCBITaxon%3A191553","Abiotrophia para-adiacens"],["NCBITaxon%3A76631","Abiotrophia sp."]]},{"id":"NCBITaxon:468","l":"Moraxellaceae","na":2,"nb":9079,"a":[["head-bto-0000282.html","head"],["pseudostem-bto-0005992.html","pseudostem"]],"b":[["NCBITaxon%3A1673609","Acinetobacter albensis"],["NCBITaxon%3A2942470","Acinetobacter amyesii"],["NCBITaxon%3A363192","Acinetobacter antiviralis"],["NCBITaxon%3A1229165","Acinetobacter apis"],["NCBITaxon%3A2605383","Acinetobacter baretiae"],["NCBITaxon%3A470","Acinetobacter baumannii"]]},{"id":"NCBITaxon:1162","l":"Nostocaceae","na":2,"nb":8565,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"]],"b":[["NCBITaxon%3A3127779","Ahomia kamrupensis"],["NCBITaxon%3A3036653","Ahomia kamrupensis ASM11-PS"],["NCBITaxon%3A3127780","Ahomia purpurea"],["NCBITaxon%3A3036654","Ahomia purpurea NP-KLS-5A-PS"],["NCBITaxon%3A3449825","Ahomia purpurea RAT4D-PS"],["NCBITaxon%3A3127781","Ahomia soli"]]},{"id":"NCBITaxon:59201","l":"Salmonella enterica subsp. enterica","na":2,"nb":4549,"a":[["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A486987","Salmonella enterica subsp. enterica serovar '02-6026 18:1 v-z-Arizona'"],["NCBITaxon%3A2978376","Salmonella enterica subsp. enterica serovar 11:b:1,7"],["NCBITaxon%3A2808980","Salmonella enterica subsp. enterica serovar 11:r:-"],["NCBITaxon%3A3367019","Salmonella enterica subsp. enterica serovar 13,22:y:-"]]},{"id":"NCBITaxon:135624","l":"Aeromonadales","na":2,"nb":3684,"a":[["trachea-bto-0001388.html","trachea"],["urine-bto-0001419.html","urine"]],"b":[["NCBITaxon%3A1948889","Aeromonadaceae bacterium"],["NCBITaxon%3A1546596","Aeromonadaceae bacterium 124L2"],["NCBITaxon%3A1546597","Aeromonadaceae bacterium 126H"],["NCBITaxon%3A1546598","Aeromonadaceae bacterium 129C"],["NCBITaxon%3A1546599","Aeromonadaceae bacterium 130I2"],["NCBITaxon%3A1546600","Aeromonadaceae bacterium 136C"]]},{"id":"NCBITaxon:76892","l":"Caulobacteraceae","na":2,"nb":2633,"a":[["pitcher-bto-0001069.html","pitcher"],["trunk-bto-0001493.html","trunk"]],"b":[["NCBITaxon%3A81457","alpha proteobacterium MBIC3025"],["NCBITaxon%3A81458","alpha proteobacterium MBIC3029"],["NCBITaxon%3A81442","alpha proteobacterium MBIC3032"],["NCBITaxon%3A81443","alpha proteobacterium MBIC3033"],["NCBITaxon%3A81441","alpha proteobacterium MBIC3034"],["NCBITaxon%3A81444","alpha proteobacterium MBIC3036"]]},{"id":"NCBITaxon:1129","l":"Synechococcus","na":2,"nb":2170,"a":[["column-bto-0005692.html","column"],["hemolymph-bto-0000572.html","hemolymph"]],"b":[["NCBITaxon%3A2081909","Anacystis marina"],["NCBITaxon%3A2081929","Anacystis marina UTEX LB 1634"],["NCBITaxon%3A1522304","Candidatus Synechococcus calcipolaris"],["NCBITaxon%3A1497997","Candidatus Synechococcus calcipolaris G9"],["NCBITaxon%3A431041","Candidatus Synechococcus spongiarum"],["NCBITaxon%3A1608213","Candidatus Synechococcus spongiarum 142"]]},{"id":"NCBITaxon:357","l":"Agrobacterium","na":2,"nb":1466,"a":[["stem-bto-0001300.html","stem"],["trunk-bto-0001493.html","trunk"]],"b":[["NCBITaxon%3A76979","Agrobacterium agile"],["NCBITaxon%3A147266","Agrobacterium albertimagni"],["NCBITaxon%3A1156935","Agrobacterium albertimagni AOL15"],["NCBITaxon%3A1585697","Agrobacterium arsenijevicii"],["NCBITaxon%3A44155","Agrobacterium aurantiacum"],["NCBITaxon%3A2052828","Agrobacterium bohemicum"]]},{"id":"NCBITaxon:203682","l":"Planctomycetota","na":2,"nb":1406,"a":[["column-bto-0005692.html","column"],["crop-bto-0000301.html","crop"]],"b":[["NCBITaxon%3A1930276","Adhaeretor mobilis"],["NCBITaxon%3A2862453","Adhaeretor sp."],["NCBITaxon%3A3454464","Aeoliella fuhlenseeensis"],["NCBITaxon%3A2527972","Aeoliella mucimassa"],["NCBITaxon%3A2795800","Aeoliella sp."],["NCBITaxon%3A2954799","Aeoliella straminimaris"]]},{"id":"NCBITaxon:528","l":"Ochrobactrum","na":2,"nb":1276,"a":[["pitcher-bto-0001069.html","pitcher"],["small-intestine-bto-0000651.html","small intestine"]],"b":[["NCBITaxon%3A529","Brucella anthropi"],["NCBITaxon%3A659015","Brucella daejeonensis"],["NCBITaxon%3A52132","Brucella sp."],["NCBITaxon%3A246569","marine bacterium 13737"],["NCBITaxon%3A259359","microbial fuel cell bacterium ISO1"],["NCBITaxon%3A2993941","Ochrobactrum chromiisoli"]]},{"id":"NCBITaxon:2013","l":"Nocardiopsis","na":2,"nb":1175,"a":[["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["NCBITaxon%3A2838703","Candidatus Nocardiopsis merdipullorum"],["NCBITaxon%3A220378","Nocardiopsis aegyptia"],["NCBITaxon%3A2831968","Nocardiopsis akebiae"],["NCBITaxon%3A1236269","Nocardiopsis akesuensis"],["NCBITaxon%3A53437","Nocardiopsis alba"],["NCBITaxon%3A1205910","Nocardiopsis alba ATCC BAA-2165"]]},{"id":"NCBITaxon:816","l":"Bacteroides","na":2,"nb":1027,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"],["colon-bto-0000269.html","colon"]],"b":[["NCBITaxon%3A85831","Bacteroides acidifaciens"],["NCBITaxon%3A1235814","Bacteroides acidifaciens JCM 10556"],["NCBITaxon%3A1841855","Bacteroides bouchesdurhonensis"],["NCBITaxon%3A47678","Bacteroides caccae"],["NCBITaxon%3A411901","Bacteroides caccae ATCC 43185"],["NCBITaxon%3A1263037","Bacteroides caccae CAG:21"]]},{"id":"NCBITaxon:171552","l":"Prevotellaceae","na":2,"nb":1003,"a":[["colon-bto-0000269.html","colon"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A671218","Alloprevotella rava"],["NCBITaxon%3A524034","Alloprevotella rava F0020"],["NCBITaxon%3A679199","Alloprevotella rava F0323"],["NCBITaxon%3A1872471","Alloprevotella sp."],["NCBITaxon%3A2338072","Alloprevotella sp. A1798"],["NCBITaxon%3A2594464","Alloprevotella sp. CON1"]]},{"id":"NCBITaxon:1678","l":"Bifidobacterium","na":2,"nb":993,"a":[["ileum-bto-0000620.html","ileum"],["juvenile-bto-0002168.html","juvenile"]],"b":[["NCBITaxon%3A638619","Bifidobacterium actinocoloniiforme"],["NCBITaxon%3A1437605","Bifidobacterium actinocoloniiforme DSM 22766"],["NCBITaxon%3A1680","Bifidobacterium adolescentis"],["NCBITaxon%3A367928","Bifidobacterium adolescentis ATCC 15703"],["NCBITaxon%3A1263057","Bifidobacterium adolescentis CAG:119"],["NCBITaxon%3A1410644","Bifidobacterium adolescentis DSM 20087"]]},{"id":"NCBITaxon:209","l":"Helicobacter","na":2,"nb":974,"a":[["cecum-mucosa-bto-0000213.html","cecum mucosa"],["mucosa-bto-0000886.html","mucosa"]],"b":[["NCBITaxon%3A2838618","Candidatus Helicobacter avicola"],["NCBITaxon%3A2838619","Candidatus Helicobacter avistercoris"],["NCBITaxon%3A104629","Candidatus Helicobacter bovis"],["NCBITaxon%3A167880","Candidatus Helicobacter cebus"],["NCBITaxon%3A146753","cilia-associated respiratory bacterium B6"],["NCBITaxon%3A212","Helicobacter acinonychis"]]},{"id":"NCBITaxon:203683","l":"Planctomycetia","na":2,"nb":969,"a":[["column-bto-0005692.html","column"],["crop-bto-0000301.html","crop"]],"b":[["NCBITaxon%3A1930276","Adhaeretor mobilis"],["NCBITaxon%3A2862453","Adhaeretor sp."],["NCBITaxon%3A3454464","Aeoliella fuhlenseeensis"],["NCBITaxon%3A2527972","Aeoliella mucimassa"],["NCBITaxon%3A2795800","Aeoliella sp."],["NCBITaxon%3A2954799","Aeoliella straminimaris"]]},{"id":"NCBITaxon:84567","l":"Pedobacter","na":2,"nb":889,"a":[["air-envo-00002005.html","air"],["glacier-envo-00000133.html","glacier"]],"b":[["NCBITaxon%3A3121371","Candidatus Pedobacter colombiensis"],["NCBITaxon%3A2807681","Nubsella sp. EM7"],["NCBITaxon%3A1325323","Nubsella sp. EsD18"],["NCBITaxon%3A1362345","Nubsella sp. Ri3Pt_4400"],["NCBITaxon%3A151894","Pedobacter africanus"],["NCBITaxon%3A454586","Pedobacter agri"]]},{"id":"NCBITaxon:118969","l":"Legionellales","na":2,"nb":803,"a":[["hemolymph-bto-0000572.html","hemolymph"],["skin-bto-0001253.html","skin"]],"b":[["NCBITaxon%3A254246","Aquicella lusitana"],["NCBITaxon%3A254247","Aquicella siphonis"],["NCBITaxon%3A1872583","Aquicella sp."],["NCBITaxon%3A868357","Aquicella sp. 1(27-11)"],["NCBITaxon%3A1084584","Aquicella sp. enrichment culture clone B21"],["NCBITaxon%3A1136692","Aquicella sp. enrichment culture clone CTBE CDB1001G12"]]},{"id":"NCBITaxon:551","l":"Erwinia","na":2,"nb":743,"a":[["pseudostem-bto-0005992.html","pseudostem"],["trunk-bto-0001493.html","trunk"]],"b":[["NCBITaxon%3A252393","Candidatus Erwinia dacicola"],["NCBITaxon%3A1922217","Candidatus Erwinia haradaeae"],["NCBITaxon%3A3141250","Candidatus Erwinia impunctatus"],["NCBITaxon%3A556","Dickeya chrysanthemi"],["NCBITaxon%3A3239803","Erwinia aeris"],["NCBITaxon%3A552","Erwinia amylovora"]]},{"id":"NCBITaxon:165695","l":"Sphingobium","na":2,"nb":663,"a":[["juvenile-bto-0002168.html","juvenile"],["leaf-bto-0000713.html","leaf"]],"b":[["NCBITaxon%3A86193","Sphingobium abikonense"],["NCBITaxon%3A1219036","Sphingobium abikonense NBRC 16140"],["NCBITaxon%3A2933566","Sphingobium agri"],["NCBITaxon%3A3341828","Sphingobium agrisoli"],["NCBITaxon%3A2008318","Sphingobium algorifonticola"],["NCBITaxon%3A135719","Sphingobium amiense"]]},{"id":"NCBITaxon:29580","l":"Janthinobacterium","na":2,"nb":640,"a":[["water-ice-envo-01000277.html","water ice"],["glacier-envo-00000133.html","glacier"]],"b":[["NCBITaxon%3A2985511","Janthinobacterium aestuarii"],["NCBITaxon%3A55508","Janthinobacterium agaricidamnosum"],["NCBITaxon%3A1349767","Janthinobacterium agaricidamnosum NBRC 102515 = DSM 9628"],["NCBITaxon%3A1259339","Janthinobacterium algoris"],["NCBITaxon%3A3424188","Janthinobacterium amylolyticum"],["NCBITaxon%3A2751477","Janthinobacterium aquaticum"]]},{"id":"NCBITaxon:41295","l":"Rhodospirillaceae","na":2,"nb":528,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["NCBITaxon%3A1709002","Aerophototrophica crusticola"],["NCBITaxon%3A2811398","Aerophototrophica sp."],["NCBITaxon%3A173005","alpha proteobacterium BiesA12"],["NCBITaxon%3A173006","alpha proteobacterium BiesA14"],["NCBITaxon%3A173007","alpha proteobacterium BiesA23"],["NCBITaxon%3A173008","alpha proteobacterium BiesA51"]]},{"id":"NCBITaxon:96492","l":"Frigoribacterium","na":2,"nb":431,"a":[["water-ice-envo-01000277.html","water ice"],["glacier-envo-00000133.html","glacier"]],"b":[["NCBITaxon%3A3402170","Frigoribacterium adelgis"],["NCBITaxon%3A132924","Frigoribacterium aff. faeni A-1/C-an/E"],["NCBITaxon%3A1522176","Frigoribacterium endophyticum"],["NCBITaxon%3A145483","Frigoribacterium faeni"],["NCBITaxon%3A1616784","Frigoribacterium salinisoli"],["NCBITaxon%3A1880915","Frigoribacterium sp."]]},{"id":"NCBITaxon:75787","l":"Rhodocyclaceae","na":2,"nb":390,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["NCBITaxon%3A182180","Aromatoleum anaerobium"],["NCBITaxon%3A551760","Aromatoleum aromaticum"],["NCBITaxon%3A76114","Aromatoleum aromaticum EbN1"],["NCBITaxon%3A76115","Aromatoleum bremense"],["NCBITaxon%3A200254","Aromatoleum buckelii"],["NCBITaxon%3A75796","Aromatoleum diolicum"]]},{"id":"NCBITaxon:255475","l":"Aurantimonadaceae","na":2,"nb":333,"a":[["leaf-bto-0000713.html","leaf"],["nectar-bto-0000537.html","nectar"]],"b":[["NCBITaxon%3A2606717","Antarcticirhabdus aurantiaca"],["NCBITaxon%3A1978523","Aurantimonadaceae bacterium"],["NCBITaxon%3A766839","Aurantimonadaceae bacterium 08WSH1-24"],["NCBITaxon%3A532743","Aurantimonadaceae bacterium ACEMC 6-4"],["NCBITaxon%3A1556364","Aurantimonadaceae bacterium CC13I"],["NCBITaxon%3A2998450","Aurantimonadaceae bacterium DY-R2A-11"]]},{"id":"NCBITaxon:104267","l":"Tenacibaculum","na":2,"nb":295,"a":[["column-bto-0005692.html","column"],["hemolymph-bto-0000572.html","hemolymph"]],"b":[["NCBITaxon%3A3141958","Candidatus Tenacibaculum medusae"],["NCBITaxon%3A413713","Tenacibaculum adriaticum"],["NCBITaxon%3A362781","Tenacibaculum aestuarii"],["NCBITaxon%3A2006131","Tenacibaculum aestuariivivum"],["NCBITaxon%3A1908389","Tenacibaculum agarivorans"],["NCBITaxon%3A426481","Tenacibaculum aiptasiae"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":2,"nb":264,"a":[["watercourse-envo-00000029.html","watercourse"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A663","Vibrio alginolyticus"],["NCBITaxon%3A29494","Vibrio furnissii"],["NCBITaxon%3A675811","Vibrio furnissii CIP 102972"],["NCBITaxon%3A670","Vibrio parahaemolyticus"],["NCBITaxon%3A1238231","Vibrio parahaemolyticus 10290"],["NCBITaxon%3A1238195","Vibrio parahaemolyticus 10296"]]},{"id":"NCBITaxon:487","l":"Neisseria meningitidis","na":2,"nb":232,"a":[["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["NCBITaxon%3A487","Neisseria meningitidis"],["NCBITaxon%3A374833","Neisseria meningitidis 053442"],["NCBITaxon%3A926508","Neisseria meningitidis 1076"],["NCBITaxon%3A926533","Neisseria meningitidis 1101"],["NCBITaxon%3A926506","Neisseria meningitidis 1102"],["NCBITaxon%3A926507","Neisseria meningitidis 115 CB V1"]]},{"id":"NCBITaxon:119532","l":"Microcoleus vaginatus","na":2,"nb":186,"a":[["desert-biome-envo-01000179.html","desert biome"],["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A2290990","Microcoleus cf. vaginatus Ru-6-12"],["NCBITaxon%3A119532","Microcoleus vaginatus"],["NCBITaxon%3A3034630","Microcoleus vaginatus 98"],["NCBITaxon%3A2493238","Microcoleus vaginatus ACT688"],["NCBITaxon%3A3459536","Microcoleus vaginatus APE406"],["NCBITaxon%3A669364","Microcoleus vaginatus ASU LT04"]]},{"id":"NCBITaxon:1033","l":"Afipia","na":2,"nb":182,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"]],"b":[["NCBITaxon%3A151414","Afipia birgiae"],["NCBITaxon%3A1197906","Afipia birgiae 34632"],["NCBITaxon%3A56946","Afipia broomeae"],["NCBITaxon%3A883078","Afipia broomeae ATCC 49717"],["NCBITaxon%3A40137","Afipia carboxidovorans"],["NCBITaxon%3A1031710","Afipia carboxidovorans OM4"]]},{"id":"NCBITaxon:1234","l":"Nitrospira","na":2,"nb":181,"a":[["crop-bto-0000301.html","crop"],["seedling-bto-0001228.html","seedling"]],"b":[["NCBITaxon%3A3020900","Candidatus Nitrospira allomarina"],["NCBITaxon%3A463288","Candidatus Nitrospira bockiana"],["NCBITaxon%3A1715989","Candidatus Nitrospira inopinata"],["NCBITaxon%3A3721632","Candidatus Nitrospira jureiensis"],["NCBITaxon%3A2652173","Candidatus Nitrospira kreftii"],["NCBITaxon%3A3020899","Candidatus Nitrospira neomarina"]]},{"id":"NCBITaxon:20","l":"Phenylobacterium","na":2,"nb":156,"a":[["crop-bto-0000301.html","crop"],["nectar-bto-0000537.html","nectar"]],"b":[["NCBITaxon%3A1763816","Phenylobacterium aquaticum"],["NCBITaxon%3A457173","Phenylobacterium composti"],["NCBITaxon%3A1122958","Phenylobacterium composti DSM 19425"],["NCBITaxon%3A1298959","Phenylobacterium conjunctum"],["NCBITaxon%3A1914756","Phenylobacterium deserti"],["NCBITaxon%3A279827","Phenylobacterium falsum"]]},{"id":"NCBITaxon:235888","l":"Salinibacterium","na":2,"nb":147,"a":[["water-ice-envo-01000277.html","water ice"],["glacier-envo-00000133.html","glacier"]],"b":[["NCBITaxon%3A1348338","Leifsonia rubra CMS 76R"],["NCBITaxon%3A205941","Salinibacterium amurskyense"],["NCBITaxon%3A191389","Salinibacterium rubrum"],["NCBITaxon%3A1915057","Salinibacterium sp."],["NCBITaxon%3A3439527","Salinibacterium sp. 10G20-15"],["NCBITaxon%3A3444110","Salinibacterium sp. 10J20-7"]]},{"id":"NCBITaxon:830","l":"Butyrivibrio","na":2,"nb":146,"a":[["alimentary-canal-bto-0000058.html","alimentary canal"],["colon-bto-0000269.html","colon"]],"b":[["NCBITaxon%3A129556","Butyrivibrio cf. fibrisolvens EAT6"],["NCBITaxon%3A831","Butyrivibrio fibrisolvens"],["NCBITaxon%3A657324","Butyrivibrio fibrisolvens 16/4"],["NCBITaxon%3A1280697","Butyrivibrio fibrisolvens AB2020"],["NCBITaxon%3A1121131","Butyrivibrio fibrisolvens DSM 3071"],["NCBITaxon%3A1280700","Butyrivibrio fibrisolvens FE2007"]]},{"id":"NCBITaxon:2701","l":"Gardnerella","na":2,"nb":137,"a":[["brain-bto-0000142.html","brain"],["heart-bto-0000562.html","heart"]],"b":[["NCBITaxon%3A3698142","Gardnerella aggregata"],["NCBITaxon%3A3455249","Gardnerella aggregata subsp. aggregata"],["NCBITaxon%3A2749064","Gardnerella aggregata subsp. hutchinsoni"],["NCBITaxon%3A2749049","Gardnerella bivia"],["NCBITaxon%3A3383031","Gardnerella bretellae"],["NCBITaxon%3A2749071","Gardnerella coleohominis"]]},{"id":"NCBITaxon:2836","l":"Bacillariophyta","na":2,"nb":122,"a":[["diatom-associated-environment-habitatmech-gold-1276bea544.html","diatom-associated environment"],["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["NCBITaxon%3A451788","Acanthoceras zachariasii"],["NCBITaxon%3A431333","Achnanthidium minutissimum"],["NCBITaxon%3A49231","Actinocyclus curvatulus"],["NCBITaxon%3A265554","Amphora coffeiformis"],["NCBITaxon%3A1155433","Arcocellulus cornucervis"],["NCBITaxon%3A210441","Asterionella formosa"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":2,"nb":101,"a":[["hospital-envo-00002173.html","hospital"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A817","Bacteroides fragilis"],["NCBITaxon%3A457424","Bacteroides fragilis 3_1_12"],["NCBITaxon%3A862962","Bacteroides fragilis 638R"],["NCBITaxon%3A1308728","Bacteroides fragilis ADL-402"],["NCBITaxon%3A1263046","Bacteroides fragilis CAG:47"],["NCBITaxon%3A1263047","Bacteroides fragilis CAG:558"]]},{"id":"NCBITaxon:28183","l":"Leptospira santarosai","na":2,"nb":72,"a":[["kidney-bto-0000671.html","kidney"],["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A28183","Leptospira santarosai"],["NCBITaxon%3A312171","Leptospira santarosai serovar Alexi"],["NCBITaxon%3A407851","Leptospira santarosai serovar Alice"],["NCBITaxon%3A1049975","Leptospira santarosai serovar Arenal"],["NCBITaxon%3A1085549","Leptospira santarosai serovar Arenal str. 11"],["NCBITaxon%3A1085550","Leptospira santarosai serovar Arenal str. 7"]]},{"id":"NCBITaxon:83554","l":"Chlamydia psittaci","na":2,"nb":69,"a":[["spleen-bto-0001281.html","spleen"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A83554","Chlamydia psittaci"],["NCBITaxon%3A1112252","Chlamydia psittaci 01DC11"],["NCBITaxon%3A1221877","Chlamydia psittaci 01DC12"],["NCBITaxon%3A1112253","Chlamydia psittaci 02DC14"],["NCBITaxon%3A1112254","Chlamydia psittaci 02DC15"],["NCBITaxon%3A1112255","Chlamydia psittaci 02DC16"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":2,"nb":66,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A382","Sinorhizobium meliloti"],["NCBITaxon%3A266834","Sinorhizobium meliloti 1021"],["NCBITaxon%3A1194706","Sinorhizobium meliloti 1A42"],["NCBITaxon%3A1286640","Sinorhizobium meliloti 2011"],["NCBITaxon%3A1041151","Sinorhizobium meliloti 4H41"],["NCBITaxon%3A1194707","Sinorhizobium meliloti 5A14"]]},{"id":"NCBITaxon:76634","l":"Mycetocola","na":2,"nb":66,"a":[["water-ice-envo-01000277.html","water ice"],["glacier-envo-00000133.html","glacier"]],"b":[["NCBITaxon%3A76637","Mycetocola lacteus"],["NCBITaxon%3A699879","Mycetocola manganoxydans"],["NCBITaxon%3A995034","Mycetocola miduiensis"],["NCBITaxon%3A331618","Mycetocola reblochoni"],["NCBITaxon%3A1255698","Mycetocola reblochoni REB411"],["NCBITaxon%3A76636","Mycetocola saprophilus"]]},{"id":"NCBITaxon:103796","l":"Pseudomonas syringae pv. actinidiae","na":2,"nb":65,"a":[["leaf-po-0025034.html","leaf"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A103796","Pseudomonas syringae pv. actinidiae"],["NCBITaxon%3A1094176","Pseudomonas syringae pv. actinidiae CFBP 7286"],["NCBITaxon%3A1108967","Pseudomonas syringae pv. actinidiae CH2010-5"],["NCBITaxon%3A1108968","Pseudomonas syringae pv. actinidiae CH2010-6"],["NCBITaxon%3A1343752","Pseudomonas syringae pv. actinidiae CH2010-7"],["NCBITaxon%3A1343741","Pseudomonas syringae pv. actinidiae Haxa4"]]},{"id":"NCBITaxon:504481","l":"Sediminibacterium","na":2,"nb":65,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"],["pitcher-bto-0001069.html","pitcher"]],"b":[["NCBITaxon%3A1706829","Sediminibacterium aquarii"],["NCBITaxon%3A413434","Sediminibacterium ginsengisoli"],["NCBITaxon%3A1086393","Sediminibacterium goheungense"],["NCBITaxon%3A1162689","Sediminibacterium lactis"],["NCBITaxon%3A1751071","Sediminibacterium longum"],["NCBITaxon%3A669455","Sediminibacterium magnilacihabitans"]]},{"id":"NCBITaxon:235572","l":"Candidatus Portiera","na":2,"nb":57,"a":[["column-bto-0005692.html","column"],["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["NCBITaxon%3A91844","Candidatus Portiera aleyrodidarum"],["NCBITaxon%3A1386065","Candidatus Portiera aleyrodidarum AD-VLC"],["NCBITaxon%3A1206109","Candidatus Portiera aleyrodidarum BT-B-HRs"],["NCBITaxon%3A1232201","Candidatus Portiera aleyrodidarum BT-Q"],["NCBITaxon%3A1231388","Candidatus Portiera aleyrodidarum BT-Q-AWRs"],["NCBITaxon%3A1239881","Candidatus Portiera aleyrodidarum BT-QVLC"]]},{"id":"NCBITaxon:40544","l":"Sutterella","na":2,"nb":53,"a":[["adult-bto-0001043.html","adult"],["cecum-mucosa-bto-0000213.html","cecum mucosa"]],"b":[["NCBITaxon%3A2838764","Candidatus Sutterella merdavium"],["NCBITaxon%3A2584944","Sutterella faecalis"],["NCBITaxon%3A1816689","Sutterella massiliensis"],["NCBITaxon%3A2494234","Sutterella megalosphaeroides"],["NCBITaxon%3A293545","Sutterella morbirenis"],["NCBITaxon%3A437898","Sutterella parvirubra"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":2,"nb":47,"a":[["feces-uberon-0001988.html","feces"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A630","Yersinia enterocolitica"],["NCBITaxon%3A947561","Yersinia enterocolitica IP2222"],["NCBITaxon%3A1243181","Yersinia enterocolitica IP 10393"],["NCBITaxon%3A1443113","Yersinia enterocolitica LC20"],["NCBITaxon%3A947557","Yersinia enterocolitica NFO"],["NCBITaxon%3A150052","Yersinia enterocolitica subsp. enterocolitica"]]},{"id":"NCBITaxon:139","l":"Borreliella burgdorferi","na":2,"nb":43,"a":[["joint-bto-0001686.html","joint"],["needle-bto-0000917.html","needle"]],"b":[["NCBITaxon%3A139","Borreliella burgdorferi"],["NCBITaxon%3A476210","Borreliella burgdorferi 118a"],["NCBITaxon%3A445983","Borreliella burgdorferi 156a"],["NCBITaxon%3A521009","Borreliella burgdorferi 297"],["NCBITaxon%3A498738","Borreliella burgdorferi 29805"],["NCBITaxon%3A498740","Borreliella burgdorferi 64b"]]},{"id":"NCBITaxon:266940","l":"Kineococcus radiotolerans SRS30216 = ATCC BAA-149","na":38,"nb":2,"a":[["air-envo-00002005.html","air"],["bay-envo-00000032.html","bay"],["coastal-sea-water-envo-00002150.html","coastal sea water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"]],"b":[["NCBITaxon%3A131568","Kineococcus radiotolerans"],["NCBITaxon%3A266940","Kineococcus radiotolerans SRS30216 = ATCC BAA-149"]]},{"id":"NCBITaxon:1303","l":"Streptococcus oralis","na":2,"nb":35,"a":[["throat-bto-0000828.html","throat"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["NCBITaxon%3A68892","Streptococcus infantis"],["NCBITaxon%3A768726","Streptococcus mitis bv. 2 str. F0392"],["NCBITaxon%3A1000588","Streptococcus mitis bv. 2 str. SK95"],["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A655813","Streptococcus oralis ATCC 35037"],["NCBITaxon%3A888049","Streptococcus oralis ATCC 49296"]]},{"id":"NCBITaxon:184914","l":"Corallococcus coralloides","na":35,"nb":2,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["watercourse-envo-00000029.html","watercourse"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["NCBITaxon%3A184914","Corallococcus coralloides"],["NCBITaxon%3A1144275","Corallococcus coralloides DSM 2259"]]},{"id":"NCBITaxon:714","l":"Aggregatibacter actinomycetemcomitans","na":2,"nb":35,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A714","Aggregatibacter actinomycetemcomitans"],["NCBITaxon%3A754507","Aggregatibacter actinomycetemcomitans ANH9381"],["NCBITaxon%3A668336","Aggregatibacter actinomycetemcomitans D11S-1"],["NCBITaxon%3A754505","Aggregatibacter actinomycetemcomitans D17P-3"],["NCBITaxon%3A694569","Aggregatibacter actinomycetemcomitans D7S-1"],["NCBITaxon%3A1120957","Aggregatibacter actinomycetemcomitans DSM 8324"]]},{"id":"NCBITaxon:128","l":"Isosphaera pallida","na":34,"nb":2,"a":[["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["low-tide-zone-envo-00000319.html","low tide zone"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"]],"b":[["NCBITaxon%3A128","Isosphaera pallida"],["NCBITaxon%3A575540","Isosphaera pallida ATCC 43644"]]},{"id":"NCBITaxon:1077257","l":"Chthonomonadia","na":2,"nb":32,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"]],"b":[["NCBITaxon%3A2739509","Chthonomonadaceae bacterium"],["NCBITaxon%3A2282151","Chthonomonadales bacterium"],["NCBITaxon%3A2282152","Chthonomonadia bacterium"],["NCBITaxon%3A454171","Chthonomonas calidirosea"],["NCBITaxon%3A1416929","Chthonomonas calidirosea P488"],["NCBITaxon%3A1303518","Chthonomonas calidirosea T49"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":2,"nb":29,"a":[["city-envo-00000856.html","city"],["cropland-biome-envo-01000245.html","cropland biome"]],"b":[["NCBITaxon%3A1579","Lactobacillus acidophilus"],["NCBITaxon%3A47770","Lactobacillus crispatus"],["NCBITaxon%3A575595","Lactobacillus crispatus 125-2-CHN"],["NCBITaxon%3A1381118","Lactobacillus crispatus 2029"],["NCBITaxon%3A679188","Lactobacillus crispatus 214-1"],["NCBITaxon%3A440496","Lactobacillus crispatus CTV-05"]]},{"id":"NCBITaxon:1026","l":"Marinoscillum furvescens","na":28,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"]],"b":[["NCBITaxon%3A1026","Marinoscillum furvescens"],["NCBITaxon%3A1122208","Marinoscillum furvescens DSM 4134"]]},{"id":"NCBITaxon:1077264","l":"Chthonomonadaceae","na":2,"nb":28,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"]],"b":[["NCBITaxon%3A2739509","Chthonomonadaceae bacterium"],["NCBITaxon%3A454171","Chthonomonas calidirosea"],["NCBITaxon%3A1416929","Chthonomonas calidirosea P488"],["NCBITaxon%3A1303518","Chthonomonas calidirosea T49"],["NCBITaxon%3A1427520","Chthonomonas calidirosea TKA4.10"],["NCBITaxon%3A1427521","Chthonomonas calidirosea WRG1.2"]]},{"id":"NCBITaxon:28141","l":"Cronobacter sakazakii","na":2,"nb":28,"a":[["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["NCBITaxon%3A413497","Cronobacter dublinensis"],["NCBITaxon%3A413501","Cronobacter muytjensii"],["NCBITaxon%3A1159613","Cronobacter muytjensii ATCC 51329"],["NCBITaxon%3A28141","Cronobacter sakazakii"],["NCBITaxon%3A1159489","Cronobacter sakazakii 2151"],["NCBITaxon%3A1208592","Cronobacter sakazakii 680"]]},{"id":"NCBITaxon:103","l":"Flectobacillus major","na":27,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"]],"b":[["NCBITaxon%3A103","Flectobacillus major"],["NCBITaxon%3A929703","Flectobacillus major DSM 103"]]},{"id":"NCBITaxon:1680","l":"Bifidobacterium adolescentis","na":2,"nb":27,"a":[["brain-bto-0000142.html","brain"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["NCBITaxon%3A1680","Bifidobacterium adolescentis"],["NCBITaxon%3A367928","Bifidobacterium adolescentis ATCC 15703"],["NCBITaxon%3A1263057","Bifidobacterium adolescentis CAG:119"],["NCBITaxon%3A1410644","Bifidobacterium adolescentis DSM 20087"],["NCBITaxon%3A1437612","Bifidobacterium adolescentis JCM 15918"],["NCBITaxon%3A411481","Bifidobacterium adolescentis L2-32"]]},{"id":"NCBITaxon:1004301","l":"Flavihumibacter","na":2,"nb":26,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"]],"b":[["NCBITaxon%3A1442385","Flavihumibacter cheonanensis"],["NCBITaxon%3A2909236","Flavihumibacter fluminis"],["NCBITaxon%3A2838157","Flavihumibacter fluvii"],["NCBITaxon%3A549295","Flavihumibacter petaseus"],["NCBITaxon%3A1220578","Flavihumibacter petaseus NBRC 106054"],["NCBITaxon%3A2716883","Flavihumibacter profundi"]]},{"id":"NCBITaxon:74426","l":"Collinsella aerofaciens","na":2,"nb":25,"a":[["coral-reef-envo-00000150.html","coral reef"],["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["NCBITaxon%3A74426","Collinsella aerofaciens"],["NCBITaxon%3A411903","Collinsella aerofaciens ATCC 25986"],["NCBITaxon%3A1339403","Collinsella aerofaciens TSDA1.2-1.1"],["NCBITaxon%3A1339404","Collinsella aerofaciens TSDA1.2-1.2"],["NCBITaxon%3A1339405","Collinsella aerofaciens TSDA1.2-1.3"],["NCBITaxon%3A1339406","Collinsella aerofaciens TSDC17.1-1.1"]]},{"id":"NCBITaxon:1336","l":"Streptococcus equi","na":2,"nb":23,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["saliva-bto-0001202.html","saliva"]],"b":[["NCBITaxon%3A1336","Streptococcus equi"],["NCBITaxon%3A148942","Streptococcus equi subsp. equi"],["NCBITaxon%3A553482","Streptococcus equi subsp. equi 4047"],["NCBITaxon%3A254358","Streptococcus equi subsp. ruminatorum"],["NCBITaxon%3A1051981","Streptococcus equi subsp. ruminatorum CECT 5772"],["NCBITaxon%3A40041","Streptococcus equi subsp. zooepidemicus"]]},{"id":"NCBITaxon:1679","l":"Bifidobacterium longum subsp. longum","na":2,"nb":22,"a":[["breast-bto-0000149.html","breast"],["juvenile-bto-0002168.html","juvenile"]],"b":[["NCBITaxon%3A216816","Bifidobacterium longum"],["NCBITaxon%3A1682","Bifidobacterium longum subsp. infantis"],["NCBITaxon%3A1679","Bifidobacterium longum subsp. longum"],["NCBITaxon%3A1350473","Bifidobacterium longum subsp. longum 17-1B"],["NCBITaxon%3A1350471","Bifidobacterium longum subsp. longum 1-5B"],["NCBITaxon%3A1161744","Bifidobacterium longum subsp. longum 1-6B"]]},{"id":"NCBITaxon:54","l":"Nannocystis exedens","na":22,"nb":2,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["watercourse-envo-00000029.html","watercourse"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["NCBITaxon%3A54","Nannocystis exedens"],["NCBITaxon%3A1366054","Nannocystis exedens subsp. cinnabaria"]]},{"id":"NCBITaxon:104176","l":"Oscillochloris trichoides","na":21,"nb":2,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["low-tide-zone-envo-00000319.html","low tide zone"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"]],"b":[["NCBITaxon%3A104176","Oscillochloris trichoides"],["NCBITaxon%3A765420","Oscillochloris trichoides DG-6"]]},{"id":"NCBITaxon:32020","l":"Campylobacter fetus subsp. venerealis","na":2,"nb":21,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A196","Campylobacter fetus"],["NCBITaxon%3A32020","Campylobacter fetus subsp. venerealis"],["NCBITaxon%3A1093099","Campylobacter fetus subsp. venerealis 97/608"],["NCBITaxon%3A2789416","Campylobacter fetus subsp. venerealis bv. intermedius"],["NCBITaxon%3A1167640","Campylobacter fetus subsp. venerealis bv. intermedius str. 642-21"],["NCBITaxon%3A1333529","Campylobacter fetus subsp. venerealis bv. intermedius str. 99541"]]},{"id":"NCBITaxon:1911","l":"Streptomyces griseus","na":2,"nb":20,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A1884","Streptomyces acrimycini"],["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A67274","Streptomyces argenteolus"],["NCBITaxon%3A1896","Streptomyces bikiniensis"],["NCBITaxon%3A90079","Streptomyces caviscabies"],["NCBITaxon%3A66883","Streptomyces cyaneofuscatus"]]},{"id":"NCBITaxon:633","l":"Yersinia pseudotuberculosis","na":2,"nb":20,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A633","Yersinia pseudotuberculosis"],["NCBITaxon%3A1286084","Yersinia pseudotuberculosis B-6796"],["NCBITaxon%3A1286085","Yersinia pseudotuberculosis B-6862"],["NCBITaxon%3A1286086","Yersinia pseudotuberculosis B-6863"],["NCBITaxon%3A1286087","Yersinia pseudotuberculosis B-6864"],["NCBITaxon%3A1286088","Yersinia pseudotuberculosis B-6865"]]},{"id":"NCBITaxon:114628","l":"Alkaliphilus transvaalensis","na":19,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biome-envo-00000428.html","biome"]],"b":[["NCBITaxon%3A114628","Alkaliphilus transvaalensis"],["NCBITaxon%3A1408422","Alkaliphilus transvaalensis ATCC 700919"]]},{"id":"NCBITaxon:1613","l":"Limosilactobacillus fermentum","na":2,"nb":19,"a":[["intestine-environment-envo-2100002.html","intestine environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A1591","Lactobacillus sp."],["NCBITaxon%3A2767931","Lentilactobacillus sp."],["NCBITaxon%3A1613","Limosilactobacillus fermentum"],["NCBITaxon%3A1449750","Limosilactobacillus fermentum 222"],["NCBITaxon%3A575599","Limosilactobacillus fermentum 28-3-CHN"],["NCBITaxon%3A1381124","Limosilactobacillus fermentum 3872"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":19,"nb":2,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["saline-water-body-envo-01001319.html","saline water body"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["NCBITaxon%3A324833","Streptomyces lasalocidi"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:48296","l":"Acinetobacter pittii","na":2,"nb":19,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A106654","Acinetobacter nosocomialis"],["NCBITaxon%3A1217670","Acinetobacter nosocomialis NIPH 2119"],["NCBITaxon%3A48296","Acinetobacter pittii"],["NCBITaxon%3A1147132","Acinetobacter pittii 42F"],["NCBITaxon%3A1217673","Acinetobacter pittii ANC 3678"]]},{"id":"NCBITaxon:1719","l":"Corynebacterium pseudotuberculosis","na":2,"nb":18,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["NCBITaxon%3A1719","Corynebacterium pseudotuberculosis"],["NCBITaxon%3A679896","Corynebacterium pseudotuberculosis 1002"],["NCBITaxon%3A1087454","Corynebacterium pseudotuberculosis 1/06-A"],["NCBITaxon%3A1168865","Corynebacterium pseudotuberculosis 258"],["NCBITaxon%3A1089446","Corynebacterium pseudotuberculosis 267"],["NCBITaxon%3A1087451","Corynebacterium pseudotuberculosis 31"]]},{"id":"NCBITaxon:214688","l":"Gemmata obscuriglobus UQM 2246","na":18,"nb":2,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["pond-water-envo-00002228.html","pond water"],["water-body-envo-00000063.html","water body"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["aquatic-environment-envo-01000317.html","aquatic environment"]],"b":[["NCBITaxon%3A114","Gemmata obscuriglobus"],["NCBITaxon%3A214688","Gemmata obscuriglobus UQM 2246"]]},{"id":"NCBITaxon:103810","l":"Riemerella columbina","na":17,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"],["low-tide-zone-envo-00000319.html","low tide zone"]],"b":[["NCBITaxon%3A103810","Riemerella columbina"],["NCBITaxon%3A1123058","Riemerella columbina DSM 16469"]]},{"id":"NCBITaxon:379066","l":"Gemmatimonas aurantiaca T-27","na":17,"nb":2,"a":[["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["alkaline-environment-envo-01000316.html","alkaline environment"],["aquatic-environment-envo-01000317.html","aquatic environment"],["desert-sand-envo-00005800.html","desert sand"]],"b":[["NCBITaxon%3A173480","Gemmatimonas aurantiaca"],["NCBITaxon%3A379066","Gemmatimonas aurantiaca T-27"]]},{"id":"NCBITaxon:68042","l":"Streptomyces hygroscopicus subsp. hygroscopicus","na":2,"nb":17,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A68175","Streptomyces antimycoticus"],["NCBITaxon%3A1226758","Streptomyces antimycoticus subsp. mordarskii"],["NCBITaxon%3A476551","Streptomyces ascomycinicus"],["NCBITaxon%3A114699","Streptomyces asiaticus"],["NCBITaxon%3A3098222","Streptomyces asiaticus subsp. ignotus"],["NCBITaxon%3A998084","Streptomyces himastatinicus"]]},{"id":"NCBITaxon:244366","l":"Klebsiella variicola","na":2,"nb":16,"a":[["liquid-water-envo-00002006.html","liquid water"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A576","Klebsiella sp."],["NCBITaxon%3A244366","Klebsiella variicola"],["NCBITaxon%3A507522","Klebsiella variicola 342"],["NCBITaxon%3A640131","Klebsiella variicola At-22"],["NCBITaxon%3A1438700","Klebsiella variicola BIDMC 61"]]},{"id":"NCBITaxon:28214","l":"Sphingomonas sp.","na":16,"nb":2,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["air-conditioning-unit-envo-00002874.html","air conditioning unit"],["laboratory-facility-envo-01001406.html","laboratory facility"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A28214","Sphingomonas sp."],["NCBITaxon%3A1888892","Sphingomonas turrisvirgatae"]]},{"id":"NCBITaxon:285","l":"Comamonas testosteroni","na":2,"nb":16,"a":[["waste-habitatmech-bacdive-36df85e4a4.html","Waste"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A1775535","Acidovorax sp. JCM 10065"],["NCBITaxon%3A285","Comamonas testosteroni"],["NCBITaxon%3A1009852","Comamonas testosteroni ATCC 11996"],["NCBITaxon%3A543891","Comamonas testosteroni CNB-1"],["NCBITaxon%3A688245","Comamonas testosteroni CNB-2"],["NCBITaxon%3A1440775","Comamonas testosteroni I2"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":2,"nb":15,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["NCBITaxon%3A1681","Bifidobacterium bifidum"],["NCBITaxon%3A500634","Bifidobacterium bifidum ATCC 29521 = JCM 1255 = DSM 20456"],["NCBITaxon%3A484020","Bifidobacterium bifidum BGN4"],["NCBITaxon%3A1263058","Bifidobacterium bifidum CAG:234"],["NCBITaxon%3A1173065","Bifidobacterium bifidum CECT 7366"],["NCBITaxon%3A398515","Bifidobacterium bifidum DSM 20215"]]},{"id":"NCBITaxon:39486","l":"Dorea formicigenerans","na":2,"nb":15,"a":[["adult-bto-0001043.html","adult"],["juvenile-bto-0002168.html","juvenile"]],"b":[["NCBITaxon%3A39486","Dorea formicigenerans"],["NCBITaxon%3A742765","Dorea formicigenerans 4_6_53AFAA"],["NCBITaxon%3A411461","Dorea formicigenerans ATCC 27755"],["NCBITaxon%3A1263073","Dorea formicigenerans CAG:28"],["NCBITaxon%3A1339457","Dorea formicigenerans TSDA1.2-1.1"],["NCBITaxon%3A1339458","Dorea formicigenerans TSDA1.2-1.2"]]},{"id":"NCBITaxon:43767","l":"Prescottella equi","na":2,"nb":15,"a":[["hospital-envo-00002173.html","hospital"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["NCBITaxon%3A84096","Gordonia alkanivorans"],["NCBITaxon%3A2683586","Luteimonas cellulosilyticus"],["NCBITaxon%3A43767","Prescottella equi"],["NCBITaxon%3A685727","Prescottella equi 103S"],["NCBITaxon%3A525370","Prescottella equi ATCC 33707"],["NCBITaxon%3A1219013","Prescottella equi NBRC 101255 = C 7"]]},{"id":"NCBITaxon:1027","l":"Microscilla marina","na":14,"nb":2,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["river-envo-00000022.html","river"],["animal-manure-envo-00003031.html","animal manure"],["biofilm-material-envo-01000156.html","biofilm material"],["biotope-envo-00002036.html","biotope"],["desert-biome-envo-01000179.html","desert biome"]],"b":[["NCBITaxon%3A1027","Microscilla marina"],["NCBITaxon%3A313606","Microscilla marina ATCC 23134"]]},{"id":"NCBITaxon:138074","l":"Serratia symbiotica","na":2,"nb":14,"a":[["intestine-bto-0000648.html","intestine"],["pseudostem-bto-0005992.html","pseudostem"]],"b":[["NCBITaxon%3A655401","Serratia symbiont of Stomaphis sp."],["NCBITaxon%3A138074","Serratia symbiotica"],["NCBITaxon%3A1592400","Serratia symbiotica AfA2.1"],["NCBITaxon%3A1592401","Serratia symbiotica AfA3.1"],["NCBITaxon%3A2856988","Serratia symbiotica (Cacopsylla coccinea)"],["NCBITaxon%3A1339251","Serratia symbiotica CWBI2.3"]]},{"id":"NCBITaxon:411467","l":"Pseudoflavonifractor capillosus ATCC 29799","na":14,"nb":2,"a":[["bay-envo-00000032.html","bay"],["saline-water-envo-00002010.html","saline water"],["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["emulsion-envo-00010506.html","emulsion"],["freshwater-environment-envo-01000306.html","freshwater environment"],["lagoon-envo-00000038.html","lagoon"]],"b":[["NCBITaxon%3A106588","Pseudoflavonifractor capillosus"],["NCBITaxon%3A411467","Pseudoflavonifractor capillosus ATCC 29799"]]},{"id":"NCBITaxon:84112","l":"Eggerthella lenta","na":2,"nb":14,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["feces-uberon-0001988.html","feces"]],"b":[["NCBITaxon%3A84112","Eggerthella lenta"],["NCBITaxon%3A742768","Eggerthella lenta 1_1_60AFAA"],["NCBITaxon%3A479437","Eggerthella lenta DSM 2243"],["NCBITaxon%3A1203548","Eggerthella lenta HPP0013"],["NCBITaxon%3A1357395","Eggerthella lenta MR1_12"],["NCBITaxon%3A1339486","Eggerthella lenta TSDC20.1-1.1"]]},{"id":"NCBITaxon:1042312","l":"Armatimonadia","na":2,"nb":13,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"]],"b":[["NCBITaxon%3A2933160","Armatimonadaceae bacterium"],["NCBITaxon%3A3106989","Armatimonadales bacterium"],["NCBITaxon%3A2663015","Armatimonadia bacterium"],["NCBITaxon%3A685828","Armatimonas rosea"],["NCBITaxon%3A1872638","Armatimonas sp."],["NCBITaxon%3A2953755","Capsulimonadaceae bacterium"]]},{"id":"NCBITaxon:107401","l":"Tenacibaculum maritimum","na":12,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["low-tide-zone-envo-00000319.html","low tide zone"],["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A107401","Tenacibaculum maritimum"],["NCBITaxon%3A1349785","Tenacibaculum maritimum NCIMB 2154"]]},{"id":"NCBITaxon:1398","l":"Heyndrickxia coagulans","na":2,"nb":12,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["NCBITaxon%3A3464050","Bacillus coagulans MPL-25"],["NCBITaxon%3A1422","Geobacillus stearothermophilus"],["NCBITaxon%3A1398","Heyndrickxia coagulans"],["NCBITaxon%3A941639","Heyndrickxia coagulans 2-6"],["NCBITaxon%3A345219","Heyndrickxia coagulans 36D1"],["NCBITaxon%3A1298921","Heyndrickxia coagulans CSIL1"]]},{"id":"NCBITaxon:1423814","l":"Limosilactobacillus vaginalis DSM 5837 = ATCC 49540","na":12,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["small-river-biome-envo-00000890.html","small river biome"],["animal-house-envo-00003040.html","animal house"],["desert-sand-envo-00005800.html","desert sand"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["NCBITaxon%3A1633","Limosilactobacillus vaginalis"],["NCBITaxon%3A1423814","Limosilactobacillus vaginalis DSM 5837 = ATCC 49540"]]},{"id":"NCBITaxon:316407","l":"Escherichia coli str. K-12 substr. W3110","na":12,"nb":2,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["cv-1-cell-bto-0000318.html","CV-1 cell"],["electric-organ-bto-0000376.html","electric organ"],["erythrocyte-bto-0000424.html","erythrocyte"],["filament-bto-0000463.html","filament"],["free-living-state-bto-0001551.html","free-living state"]],"b":[["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A316407","Escherichia coli str. K-12 substr. W3110"]]},{"id":"NCBITaxon:469383","l":"Conexibacter woesei DSM 14684","na":12,"nb":2,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["oil-spill-envo-00002061.html","oil spill"],["village-biome-envo-01000246.html","village biome"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A191495","Conexibacter woesei"],["NCBITaxon%3A469383","Conexibacter woesei DSM 14684"]]},{"id":"NCBITaxon:498761","l":"Heliomicrobium modesticaldum Ice1","na":12,"nb":2,"a":[["bay-envo-00000032.html","bay"],["black-smoker-envo-00000218.html","black smoker"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["saline-water-envo-00002010.html","saline water"],["sea-envo-00000016.html","sea"]],"b":[["NCBITaxon%3A35701","Heliomicrobium modesticaldum"],["NCBITaxon%3A498761","Heliomicrobium modesticaldum Ice1"]]},{"id":"NCBITaxon:1886","l":"Streptomyces albidoflavus","na":2,"nb":11,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A53445","Streptomyces canescens"],["NCBITaxon%3A68184","Streptomyces champavatii"],["NCBITaxon%3A1902","Streptomyces coelicolor"],["NCBITaxon%3A53447","Streptomyces felleus"],["NCBITaxon%3A1911","Streptomyces griseus"]]},{"id":"NCBITaxon:674","l":"Vibrio mimicus","na":2,"nb":11,"a":[["watercourse-envo-00000029.html","watercourse"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"]],"b":[["NCBITaxon%3A674","Vibrio mimicus"],["NCBITaxon%3A693747","Vibrio mimicus 7555"],["NCBITaxon%3A1267896","Vibrio mimicus ATCC 33654"],["NCBITaxon%3A1400797","Vibrio mimicus CAIM 1882"],["NCBITaxon%3A1400798","Vibrio mimicus CAIM 1883"],["NCBITaxon%3A1259812","Vibrio mimicus CAIM 602"]]},{"id":"NCBITaxon:102684","l":"Streptococcus infantarius","na":2,"nb":10,"a":[["bone-element-uberon-0001474.html","bone element"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"]],"b":[["NCBITaxon%3A315405","Streptococcus gallolyticus"],["NCBITaxon%3A102684","Streptococcus infantarius"],["NCBITaxon%3A150054","Streptococcus infantarius subsp. infantarius"],["NCBITaxon%3A1255580","Streptococcus infantarius subsp. infantarius 11FA"],["NCBITaxon%3A1255600","Streptococcus infantarius subsp. infantarius 3AG"],["NCBITaxon%3A471872","Streptococcus infantarius subsp. infantarius ATCC BAA-102"]]},{"id":"NCBITaxon:121608","l":"Paenibacillus koleovorans","na":10,"nb":2,"a":[["rhizosphere-envo-00005801.html","rhizosphere"],["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["desert-biome-envo-01000179.html","desert biome"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"]],"b":[["NCBITaxon%3A121608","Paenibacillus koleovorans"],["NCBITaxon%3A1220568","Paenibacillus koleovorans NBRC 103111"]]},{"id":"NCBITaxon:153721","l":"Sporocytophaga myxococcoides","na":10,"nb":2,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["climate-habitatmech-bacdive-1599585546.html","Climate"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"]],"b":[["NCBITaxon%3A153721","Sporocytophaga myxococcoides"],["NCBITaxon%3A926565","Sporocytophaga myxococcoides DSM 11118"]]},{"id":"NCBITaxon:2850","l":"Phaeodactylum tricornutum","na":10,"nb":2,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"],["large-river-biome-envo-00000887.html","large river biome"],["oligotrophic-water-envo-00002223.html","oligotrophic water"],["saline-marsh-envo-00000054.html","saline marsh"],["shoreline-envo-00000486.html","shoreline"],["stromatolite-mat-envo-00002157.html","stromatolite mat"]],"b":[["NCBITaxon%3A2850","Phaeodactylum tricornutum"],["NCBITaxon%3A556484","Phaeodactylum tricornutum CCAP 1055/1"]]},{"id":"NCBITaxon:29448","l":"Bradyrhizobium elkanii","na":2,"nb":10,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["area-of-tundra-envo-00000112.html","area of tundra"]],"b":[["NCBITaxon%3A29448","Bradyrhizobium elkanii"],["NCBITaxon%3A1156987","Bradyrhizobium elkanii 587"],["NCBITaxon%3A1128203","Bradyrhizobium elkanii CCBAU 05737"],["NCBITaxon%3A1128204","Bradyrhizobium elkanii CCBAU 43297"],["NCBITaxon%3A1079479","Bradyrhizobium elkanii USDA 3254"],["NCBITaxon%3A1079466","Bradyrhizobium elkanii USDA 3259"]]},{"id":"NCBITaxon:302912","l":"Bifidobacterium animalis subsp. animalis","na":2,"nb":10,"a":[["goblet-cell-bto-0001540.html","goblet cell"],["secretion-bto-0002979.html","secretion"]],"b":[["NCBITaxon%3A28025","Bifidobacterium animalis"],["NCBITaxon%3A302912","Bifidobacterium animalis subsp. animalis"],["NCBITaxon%3A703613","Bifidobacterium animalis subsp. animalis ATCC 25527"],["NCBITaxon%3A1365959","Bifidobacterium animalis subsp. animalis ATCC 27672"],["NCBITaxon%3A1402194","Bifidobacterium animalis subsp. animalis IM386"],["NCBITaxon%3A1365955","Bifidobacterium animalis subsp. animalis MCC 0483"]]},{"id":"NCBITaxon:314275","l":"Alteromonas mediterranea","na":2,"nb":10,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A314275","Alteromonas mediterranea"],["NCBITaxon%3A1300253","Alteromonas mediterranea 615"],["NCBITaxon%3A1774373","Alteromonas mediterranea DE"],["NCBITaxon%3A1004786","Alteromonas mediterranea DE1"],["NCBITaxon%3A1300254","Alteromonas mediterranea MED64"],["NCBITaxon%3A1300255","Alteromonas mediterranea U4"]]},{"id":"NCBITaxon:33075","l":"Acidobacterium capsulatum","na":10,"nb":2,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["paddy-field-envo-00000297.html","paddy field"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"],["area-of-tundra-envo-00000112.html","area of tundra"],["forested-area-envo-00000111.html","forested area"],["mountain-pass-envo-00000084.html","mountain pass"]],"b":[["NCBITaxon%3A33075","Acidobacterium capsulatum"],["NCBITaxon%3A240015","Acidobacterium capsulatum ATCC 51196"]]},{"id":"NCBITaxon:1255","l":"Pediococcus pentosaceus","na":2,"nb":9,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"]],"b":[["NCBITaxon%3A1254","Pediococcus acidilactici"],["NCBITaxon%3A114090","Pediococcus inopinatus"],["NCBITaxon%3A54062","Pediococcus parvulus"],["NCBITaxon%3A1255","Pediococcus pentosaceus"],["NCBITaxon%3A278197","Pediococcus pentosaceus ATCC 25745"],["NCBITaxon%3A1460385","Pediococcus pentosaceus CGMCC 7049"]]},{"id":"NCBITaxon:1290","l":"Staphylococcus hominis","na":2,"nb":9,"a":[["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"]],"b":[["NCBITaxon%3A1290","Staphylococcus hominis"],["NCBITaxon%3A629742","Staphylococcus hominis SK119"],["NCBITaxon%3A145391","Staphylococcus hominis subsp. hominis"],["NCBITaxon%3A435837","Staphylococcus hominis subsp. hominis C80"],["NCBITaxon%3A1185421","Staphylococcus hominis subsp. hominis ZBW5"],["NCBITaxon%3A145393","Staphylococcus hominis subsp. novobiosepticus"]]},{"id":"NCBITaxon:1601","l":"Ligilactobacillus agilis","na":9,"nb":2,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["blood-bto-0000089.html","blood"],["brain-bto-0000142.html","brain"],["heart-bto-0000562.html","heart"],["trachea-bto-0001388.html","trachea"],["vagina-bto-0000243.html","vagina"]],"b":[["NCBITaxon%3A1601","Ligilactobacillus agilis"],["NCBITaxon%3A1423718","Ligilactobacillus agilis DSM 20509"]]},{"id":"NCBITaxon:2208","l":"Methanosarcina barkeri","na":2,"nb":9,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A2208","Methanosarcina barkeri"],["NCBITaxon%3A1434106","Methanosarcina barkeri 227"],["NCBITaxon%3A1434107","Methanosarcina barkeri 3"],["NCBITaxon%3A796385","Methanosarcina barkeri CM1"],["NCBITaxon%3A1298606","Methanosarcina barkeri JCM 10043"],["NCBITaxon%3A1434108","Methanosarcina barkeri MS"]]},{"id":"NCBITaxon:428125","l":"[Clostridium] leptum DSM 753","na":9,"nb":2,"a":[["bay-envo-00000032.html","bay"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["saline-water-envo-00002010.html","saline water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["desert-sand-envo-00005800.html","desert sand"]],"b":[["NCBITaxon%3A1535","[Clostridium] leptum"],["NCBITaxon%3A428125","[Clostridium] leptum DSM 753"]]},{"id":"NCBITaxon:457427","l":"Streptomyces himastatinicus ATCC 53653","na":9,"nb":2,"a":[["bay-envo-00000032.html","bay"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["saline-water-envo-00002010.html","saline water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["food-product-foodon-00001002.html","food product"]],"b":[["NCBITaxon%3A998084","Streptomyces himastatinicus"],["NCBITaxon%3A457427","Streptomyces himastatinicus ATCC 53653"]]},{"id":"NCBITaxon:556","l":"Dickeya chrysanthemi","na":2,"nb":9,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["NCBITaxon%3A556","Dickeya chrysanthemi"],["NCBITaxon%3A561229","Dickeya chrysanthemi Ech1591"],["NCBITaxon%3A1224148","Dickeya chrysanthemi NCPPB 3533"],["NCBITaxon%3A1223569","Dickeya chrysanthemi NCPPB 402"],["NCBITaxon%3A3474837","Dickeya chrysanthemi pv. chrysanthemi"],["NCBITaxon%3A3474953","Dickeya chrysanthemi pv. parthenii"]]},{"id":"NCBITaxon:1014","l":"Weeksella virosa","na":8,"nb":2,"a":[["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"],["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"],["animal-manure-envo-00003031.html","animal manure"],["biotope-envo-00002036.html","biotope"]],"b":[["NCBITaxon%3A1014","Weeksella virosa"],["NCBITaxon%3A865938","Weeksella virosa DSM 16922"]]},{"id":"NCBITaxon:104270","l":"Tenacibaculum ovolyticum","na":8,"nb":2,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"],["marine-environment-envo-01000320.html","marine environment"]],"b":[["NCBITaxon%3A104270","Tenacibaculum ovolyticum"],["NCBITaxon%3A1123347","Tenacibaculum ovolyticum DSM 18103"]]},{"id":"NCBITaxon:1120954","l":"Aestuariimicrobium kwangyangense DSM 21549","na":8,"nb":2,"a":[["ocean-envo-00000015.html","ocean"],["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"],["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A396389","Aestuariimicrobium kwangyangense"],["NCBITaxon%3A1120954","Aestuariimicrobium kwangyangense DSM 21549"]]},{"id":"NCBITaxon:1121938","l":"Halobacillus kuroshimensis DSM 18393","na":8,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["intertidal-zone-envo-00000316.html","intertidal zone"],["ocean-trench-envo-00000275.html","ocean trench"],["hill-envo-00000083.html","hill"],["mount-envo-00000477.html","mount"],["mountain-envo-00000081.html","mountain"]],"b":[["NCBITaxon%3A302481","Halobacillus kuroshimensis"],["NCBITaxon%3A1121938","Halobacillus kuroshimensis DSM 18393"]]},{"id":"NCBITaxon:13689","l":"Sphingomonas paucimobilis","na":2,"nb":8,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"]],"b":[["NCBITaxon%3A178355","Flavobacterium omnivorum"],["NCBITaxon%3A1404341","Sphingobium scionense"],["NCBITaxon%3A13689","Sphingomonas paucimobilis"],["NCBITaxon%3A1219050","Sphingomonas paucimobilis NBRC 13935"],["NCBITaxon%3A33051","Sphingomonas sanguinis"],["NCBITaxon%3A1219054","Sphingomonas sanguinis NBRC 13937"]]},{"id":"NCBITaxon:1490","l":"Paraclostridium bifermentans","na":2,"nb":8,"a":[["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A1490","Paraclostridium bifermentans"],["NCBITaxon%3A1233170","Paraclostridium bifermentans ATCC 19299"],["NCBITaxon%3A1233171","Paraclostridium bifermentans ATCC 638 = DSM 14991"],["NCBITaxon%3A1357385","Paraclostridium bifermentans NI48_6"],["NCBITaxon%3A2663174","Paraclostridium bifermentans subsp. bifermentans"],["NCBITaxon%3A2663173","Paraclostridium bifermentans subsp. muricolitidis"]]},{"id":"NCBITaxon:1537","l":"Romboutsia lituseburensis","na":8,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["low-tide-zone-envo-00000319.html","low tide zone"],["surface-water-envo-00002042.html","surface water"],["animal-litter-envo-00002191.html","animal litter"]],"b":[["NCBITaxon%3A1537","Romboutsia lituseburensis"],["NCBITaxon%3A1121325","Romboutsia lituseburensis DSM 797"]]},{"id":"NCBITaxon:257758","l":"Streptococcus pseudopneumoniae","na":2,"nb":8,"a":[["bile-duct-bto-0000122.html","bile duct"],["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A257758","Streptococcus pseudopneumoniae"],["NCBITaxon%3A1415760","Streptococcus pseudopneumoniae 1321"],["NCBITaxon%3A1415759","Streptococcus pseudopneumoniae 22725"],["NCBITaxon%3A1415761","Streptococcus pseudopneumoniae 5247"],["NCBITaxon%3A889205","Streptococcus pseudopneumoniae ATCC BAA-960 = CCUG 49455"],["NCBITaxon%3A1415758","Streptococcus pseudopneumoniae G42"]]},{"id":"NCBITaxon:35761","l":"Nocardioides sp.","na":8,"nb":2,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"],["desert-sand-envo-00005800.html","desert sand"],["endosymbiont-habitatmech-bacdive-7d840c7ddc.html","Endosymbiont"],["oil-spill-envo-00002061.html","oil spill"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A35761","Nocardioides sp."],["NCBITaxon%3A2568655","Nocardioides vastitatis"]]},{"id":"NCBITaxon:411459","l":"Blautia obeum ATCC 29174","na":8,"nb":2,"a":[["colonic-mucosa-bto-0000271.html","colonic mucosa"],["desert-sand-envo-00005800.html","desert sand"],["lagoon-envo-00000038.html","lagoon"],["tropical-envo-01000204.html","tropical"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"],["cropland-biome-envo-01000245.html","cropland biome"]],"b":[["NCBITaxon%3A40520","Blautia obeum"],["NCBITaxon%3A411459","Blautia obeum ATCC 29174"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":8,"nb":2,"a":[["beach-envo-00000091.html","beach"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["sea-sand-envo-00002118.html","sea sand"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A80816","Haliangium ochraceum"],["NCBITaxon%3A502025","Haliangium ochraceum DSM 14365"]]},{"id":"NCBITaxon:648","l":"Aeromonas caviae","na":2,"nb":8,"a":[["human-construction-envo-00000070.html","human construction"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["NCBITaxon%3A648","Aeromonas caviae"],["NCBITaxon%3A878320","Aeromonas caviae Ae398"],["NCBITaxon%3A1458270","Aeromonas caviae NM22"],["NCBITaxon%3A1458271","Aeromonas caviae NM33"],["NCBITaxon%3A3418572","Aeromonas caviae subsp. aquatica"],["NCBITaxon%3A644","Aeromonas hydrophila"]]},{"id":"NCBITaxon:1053","l":"Halorhodospira halophila","na":7,"nb":2,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["marine-environment-envo-01000320.html","marine environment"],["organic-feature-envo-01000159.html","organic feature"],["organic-material-envo-01000155.html","organic material"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A1053","Halorhodospira halophila"],["NCBITaxon%3A349124","Halorhodospira halophila SL1"]]},{"id":"NCBITaxon:1121479","l":"Pseudodonghicola xiamenensis DSM 18339","na":7,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"],["strait-envo-00000394.html","strait"],["petroleum-envo-00002984.html","petroleum"],["bank-envo-00000141.html","bank"],["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A337702","Pseudodonghicola xiamenensis"],["NCBITaxon%3A1121479","Pseudodonghicola xiamenensis DSM 18339"]]},{"id":"NCBITaxon:1211807","l":"Stutzerimonas kunmingensis","na":7,"nb":2,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["laboratory-facility-envo-01001406.html","laboratory facility"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A1211807","Stutzerimonas kunmingensis"],["NCBITaxon%3A316","Stutzerimonas stutzeri"]]},{"id":"NCBITaxon:1231","l":"Nitrosospira multiformis","na":7,"nb":2,"a":[["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["biome-envo-00000428.html","biome"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"],["sludge-envo-00002044.html","sludge"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"]],"b":[["NCBITaxon%3A1231","Nitrosospira multiformis"],["NCBITaxon%3A323848","Nitrosospira multiformis ATCC 25196"]]},{"id":"NCBITaxon:1266","l":"Sarcina","na":2,"nb":7,"a":[["cecum-bto-0000166.html","cecum"],["intestine-bto-0000648.html","intestine"]],"b":[["NCBITaxon%3A2726954","Candidatus Sarcina troglodytae"],["NCBITaxon%3A35785","Sarcina maxima"],["NCBITaxon%3A2053610","Sarcina sp."],["NCBITaxon%3A1798184","Sarcina sp. DSM 11001"],["NCBITaxon%3A3240357","Sarcina sp. JB3"],["NCBITaxon%3A1267","Sarcina ventriculi"]]},{"id":"NCBITaxon:165813","l":"Sporanaerobacter acetigenes","na":7,"nb":2,"a":[["bay-envo-00000032.html","bay"],["desert-sand-envo-00005800.html","desert sand"],["mud-envo-01000001.html","mud"],["village-biome-envo-01000246.html","village biome"],["area-of-tundra-envo-00000112.html","area of tundra"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["NCBITaxon%3A165813","Sporanaerobacter acetigenes"],["NCBITaxon%3A1123281","Sporanaerobacter acetigenes DSM 13106"]]},{"id":"NCBITaxon:1938","l":"Streptomyces viridochromogenes","na":2,"nb":7,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A1969","Streptomyces chartreusis"],["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A1938","Streptomyces viridochromogenes"],["NCBITaxon%3A591159","Streptomyces viridochromogenes DSM 40736"],["NCBITaxon%3A285521","Streptomyces viridochromogenes subsp. komabensis"],["NCBITaxon%3A285503","Streptomyces viridochromogenes subsp. sulfomycini"]]},{"id":"NCBITaxon:2014","l":"Nocardiopsis dassonvillei","na":2,"nb":7,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A146802","Nocardiopsis alborubida"],["NCBITaxon%3A1223496","Nocardiopsis alborubida NBRC 13392"],["NCBITaxon%3A2014","Nocardiopsis dassonvillei"],["NCBITaxon%3A2580523","Nocardiopsis dassonvillei subsp. crassaminis"],["NCBITaxon%3A568208","Nocardiopsis dassonvillei subsp. dassonvillei"],["NCBITaxon%3A446468","Nocardiopsis dassonvillei subsp. dassonvillei DSM 43111"]]},{"id":"NCBITaxon:314230","l":"Blastopirellula marina DSM 3645","na":7,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["shoreline-envo-00000486.html","shoreline"],["bulk-soil-envo-00005802.html","bulk soil"],["forested-area-envo-00000111.html","forested area"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A124","Blastopirellula marina"],["NCBITaxon%3A314230","Blastopirellula marina DSM 3645"]]},{"id":"NCBITaxon:337330","l":"Lactiplantibacillus plantarum subsp. plantarum","na":2,"nb":7,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A1590","Lactiplantibacillus plantarum"],["NCBITaxon%3A337330","Lactiplantibacillus plantarum subsp. plantarum"],["NCBITaxon%3A525338","Lactiplantibacillus plantarum subsp. plantarum ATCC 14917 = JCM 1149 = CGMCC 1.2437"],["NCBITaxon%3A889516","Lactiplantibacillus plantarum subsp. plantarum KCA-1"],["NCBITaxon%3A1036177","Lactiplantibacillus plantarum subsp. plantarum NC8"],["NCBITaxon%3A767468","Lactiplantibacillus plantarum subsp. plantarum P-8"]]},{"id":"NCBITaxon:411477","l":"Parabacteroides merdae ATCC 43184","na":7,"nb":2,"a":[["bay-envo-00000032.html","bay"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["saline-water-envo-00002010.html","saline water"],["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"]],"b":[["NCBITaxon%3A46503","Parabacteroides merdae"],["NCBITaxon%3A411477","Parabacteroides merdae ATCC 43184"]]},{"id":"NCBITaxon:438753","l":"Azorhizobium caulinodans ORS 571","na":7,"nb":2,"a":[["bacteroid-bto-0000109.html","bacteroid"],["free-living-state-bto-0001551.html","free-living state"],["lateral-root-bto-0005441.html","lateral root"],["rootlet-bto-0001192.html","rootlet"],["seedling-bto-0001228.html","seedling"],["stem-nodule-bto-0001816.html","stem nodule"]],"b":[["NCBITaxon%3A7","Azorhizobium caulinodans"],["NCBITaxon%3A438753","Azorhizobium caulinodans ORS 571"]]},{"id":"NCBITaxon:56780","l":"Syntrophus aciditrophicus SB","na":7,"nb":2,"a":[["bay-envo-00000032.html","bay"],["black-smoker-envo-00000218.html","black smoker"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["saline-water-envo-00002010.html","saline water"],["village-biome-envo-01000246.html","village biome"]],"b":[["NCBITaxon%3A316277","Syntrophus aciditrophicus"],["NCBITaxon%3A56780","Syntrophus aciditrophicus SB"]]},{"id":"NCBITaxon:583355","l":"Coraliomargarita akajimensis DSM 45221","na":7,"nb":2,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["oligotrophic-water-envo-00002223.html","oligotrophic water"],["sandstone-envo-00002055.html","sandstone"]],"b":[["NCBITaxon%3A395922","Coraliomargarita akajimensis"],["NCBITaxon%3A583355","Coraliomargarita akajimensis DSM 45221"]]},{"id":"NCBITaxon:614","l":"Serratia liquefaciens","na":2,"nb":7,"a":[["foot-bto-0000476.html","foot"],["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A82995","Serratia grimesii"],["NCBITaxon%3A614","Serratia liquefaciens"],["NCBITaxon%3A1255584","Serratia liquefaciens 1B4F"],["NCBITaxon%3A1346614","Serratia liquefaciens ATCC 27592"],["NCBITaxon%3A1460083","Serratia liquefaciens FK01"],["NCBITaxon%3A615","Serratia marcescens"]]},{"id":"NCBITaxon:68892","l":"Streptococcus infantis","na":2,"nb":7,"a":[["head-bto-0000282.html","head"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A68892","Streptococcus infantis"],["NCBITaxon%3A889204","Streptococcus infantis ATCC 700779"],["NCBITaxon%3A1005705","Streptococcus infantis SK1076"],["NCBITaxon%3A871237","Streptococcus infantis SK1302"],["NCBITaxon%3A1035189","Streptococcus infantis SK970"],["NCBITaxon%3A1159208","Streptococcus infantis SPAR10"]]},{"id":"NCBITaxon:710696","l":"Intrasporangium calvum DSM 43043","na":7,"nb":2,"a":[["air-envo-00002005.html","air"],["large-river-biome-envo-00000887.html","large river biome"],["petroleum-envo-00002984.html","petroleum"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"],["grassland-biome-envo-01000177.html","grassland biome"]],"b":[["NCBITaxon%3A53358","Intrasporangium calvum"],["NCBITaxon%3A710696","Intrasporangium calvum DSM 43043"]]},{"id":"NCBITaxon:83455","l":"Myxococcus stipitatus","na":7,"nb":2,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["plant-litter-envo-01000628.html","plant litter"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A83455","Myxococcus stipitatus"],["NCBITaxon%3A1278073","Myxococcus stipitatus DSM 14675"]]},{"id":"NCBITaxon:102148","l":"Solobacterium moorei","na":2,"nb":6,"a":[["mouth-environment-envo-08000002.html","mouth environment"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A142586","Eubacterium sp."],["NCBITaxon%3A102148","Solobacterium moorei"],["NCBITaxon%3A1073370","Solobacterium moorei CC14Y"],["NCBITaxon%3A1073371","Solobacterium moorei CC57E"],["NCBITaxon%3A1123263","Solobacterium moorei DSM 22971"],["NCBITaxon%3A706433","Solobacterium moorei F0204"]]},{"id":"NCBITaxon:104336","l":"Microbacterium foliorum","na":6,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["building-envo-00000073.html","building"],["leaf-po-0025034.html","leaf"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["desert-biome-envo-01000179.html","desert biome"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"]],"b":[["NCBITaxon%3A104336","Microbacterium foliorum"],["NCBITaxon%3A1255620","Microbacterium foliorum C45"]]},{"id":"NCBITaxon:1069","l":"Rhodomicrobium vannielii","na":6,"nb":2,"a":[["lake-envo-00000020.html","lake"],["stream-envo-00000023.html","stream"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["rhizosphere-envo-00005801.html","rhizosphere"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["NCBITaxon%3A1069","Rhodomicrobium vannielii"],["NCBITaxon%3A648757","Rhodomicrobium vannielii ATCC 17100"]]},{"id":"NCBITaxon:1069080","l":"Succinispira mobilis DSM 6222","na":6,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"],["pond-envo-00000033.html","pond"],["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["NCBITaxon%3A78120","Succinispira mobilis"],["NCBITaxon%3A1069080","Succinispira mobilis DSM 6222"]]},{"id":"NCBITaxon:1079","l":"Blastochloris viridis","na":6,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["NCBITaxon%3A50712","Blastochloris sulfoviridis"],["NCBITaxon%3A1079","Blastochloris viridis"]]},{"id":"NCBITaxon:1087","l":"Rhodovibrio salinarum","na":6,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["liquid-water-envo-00002006.html","liquid water"],["ocean-envo-00000015.html","ocean"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["sea-water-envo-00002149.html","sea water"],["stream-envo-00000023.html","stream"]],"b":[["NCBITaxon%3A1087","Rhodovibrio salinarum"],["NCBITaxon%3A1089552","Rhodovibrio salinarum DSM 9154"]]},{"id":"NCBITaxon:1121398","l":"Desulfobacter vibrioformis DSM 8776","na":6,"nb":2,"a":[["ocean-envo-00000015.html","ocean"],["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"],["undersea-feature-envo-00000104.html","undersea feature"],["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"]],"b":[["NCBITaxon%3A34031","Desulfobacter vibrioformis"],["NCBITaxon%3A1121398","Desulfobacter vibrioformis DSM 8776"]]},{"id":"NCBITaxon:1121404","l":"Desulfogranum mediterraneum DSM 13871","na":6,"nb":2,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"],["ocean-envo-00000015.html","ocean"],["ocean-biome-envo-01000048.html","ocean biome"],["ocean-trench-envo-00000275.html","ocean trench"],["oceanic-zone-envo-00000207.html","oceanic zone"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A160661","Desulfogranum mediterraneum"],["NCBITaxon%3A1121404","Desulfogranum mediterraneum DSM 13871"]]},{"id":"NCBITaxon:1121466","l":"Oleidesulfovibrio vietnamensis DSM 10520","na":6,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["groundwater-envo-01001004.html","groundwater"],["reservoir-envo-00000025.html","reservoir"],["city-envo-00000856.html","city"],["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A201571","Oleidesulfovibrio vietnamensis"],["NCBITaxon%3A1121466","Oleidesulfovibrio vietnamensis DSM 10520"]]},{"id":"NCBITaxon:1121927","l":"Gordonia hirsuta DSM 44140 = NBRC 16056","na":6,"nb":2,"a":[["biofilter-envo-00002152.html","biofilter"],["compost-envo-00002170.html","compost"],["wood-bto-0005516.html","wood"],["wood-envo-00002040.html","wood"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A53427","Gordonia hirsuta"],["NCBITaxon%3A1121927","Gordonia hirsuta DSM 44140 = NBRC 16056"]]},{"id":"NCBITaxon:1147159","l":"Ornithinibacillus scapharcae","na":6,"nb":2,"a":[["gut-bto-0000545.html","gut"],["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["seedling-bto-0001228.html","seedling"],["skin-bto-0001253.html","skin"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A1147159","Ornithinibacillus scapharcae"],["NCBITaxon%3A981383","Ornithinibacillus scapharcae TW25"]]},{"id":"NCBITaxon:1184267","l":"Pseudobdellovibrio exovorus JSS","na":6,"nb":2,"a":[["stream-envo-00000023.html","stream"],["biome-envo-00000428.html","biome"],["desert-biome-envo-01000179.html","desert biome"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["NCBITaxon%3A453816","Pseudobdellovibrio exovorus"],["NCBITaxon%3A1184267","Pseudobdellovibrio exovorus JSS"]]},{"id":"NCBITaxon:1286","l":"Staphylococcus simulans","na":2,"nb":6,"a":[["animal-house-envo-00003040.html","animal house"],["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["NCBITaxon%3A1285","Staphylococcus intermedius"],["NCBITaxon%3A1286","Staphylococcus simulans"],["NCBITaxon%3A883166","Staphylococcus simulans ACS-120-V-Sch1"],["NCBITaxon%3A1287","Staphylococcus simulans bv. staphylolyticus"],["NCBITaxon%3A1405498","Staphylococcus simulans UMC-CNS-990"],["NCBITaxon%3A29387","Staphylococcus sp."]]},{"id":"NCBITaxon:1509","l":"Clostridium sporogenes","na":2,"nb":6,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["NCBITaxon%3A1491","Clostridium botulinum"],["NCBITaxon%3A1506","Clostridium sp."],["NCBITaxon%3A1509","Clostridium sporogenes"],["NCBITaxon%3A471871","Clostridium sporogenes ATCC 15579"],["NCBITaxon%3A1075091","Clostridium sporogenes PA 3679"],["NCBITaxon%3A378516","Clostridium sporogenes subsp. tusciae"]]},{"id":"NCBITaxon:1871047","l":"Chryseobacterium sp.","na":6,"nb":2,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["leaf-po-0025034.html","leaf"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["humid-habitatmech-bacdive-0fa0234f43.html","Humid"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["NCBITaxon%3A651561","Chryseobacterium arthrosphaerae"],["NCBITaxon%3A1871047","Chryseobacterium sp."]]},{"id":"NCBITaxon:187326","l":"Megasphaera micronuciformis","na":2,"nb":6,"a":[["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"],["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["NCBITaxon%3A219650","environmental samples"],["NCBITaxon%3A187326","Megasphaera micronuciformis"],["NCBITaxon%3A626371","Megasphaera micronuciformis C1054"],["NCBITaxon%3A1401076","Megasphaera micronuciformis DNF00954"],["NCBITaxon%3A706434","Megasphaera micronuciformis F0359"],["NCBITaxon%3A163573","Megasphaera sp. oral clone BU057"]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":2,"nb":6,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A1906","Streptomyces fradiae"],["NCBITaxon%3A1319510","Streptomyces fradiae ATCC 10745 = DSM 40063"],["NCBITaxon%3A285449","Streptomyces fradiae subsp. acinicolor"],["NCBITaxon%3A2871172","Streptomyces fradiae V-1-3"],["NCBITaxon%3A66894","Streptomyces griseobrunneus"],["NCBITaxon%3A1909","Streptomyces griseolus"]]},{"id":"NCBITaxon:243365","l":"Chromobacterium violaceum ATCC 12472","na":6,"nb":2,"a":[["acute-lymphoblastic-leukemia-cell-bto-0000731.html","acute lymphoblastic leukemia cell"],["adrenal-gland-bto-0000047.html","adrenal gland"],["eosinophil-bto-0000399.html","eosinophil"],["lymphocyte-bto-0000775.html","lymphocyte"],["neutrophil-bto-0000130.html","neutrophil"],["peripheral-blood-bto-0000553.html","peripheral blood"]],"b":[["NCBITaxon%3A536","Chromobacterium violaceum"],["NCBITaxon%3A243365","Chromobacterium violaceum ATCC 12472"]]},{"id":"NCBITaxon:280","l":"Xanthobacter autotrophicus","na":2,"nb":6,"a":[["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A280","Xanthobacter autotrophicus"],["NCBITaxon%3A3119915","Xanthobacter autotrophicus ATCC 700551"],["NCBITaxon%3A3119916","Xanthobacter autotrophicus ATCC 700552"],["NCBITaxon%3A3119912","Xanthobacter nonsaccharivorans"],["NCBITaxon%3A78245","Xanthobacter versatilis"],["NCBITaxon%3A3119913","Xanthobacter wiegelii"]]},{"id":"NCBITaxon:28080","l":"Campylobacter upsaliensis","na":2,"nb":6,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["feces-uberon-0001988.html","feces"]],"b":[["NCBITaxon%3A28898","Campylobacter helveticus"],["NCBITaxon%3A28080","Campylobacter upsaliensis"],["NCBITaxon%3A1121269","Campylobacter upsaliensis DSM 5365"],["NCBITaxon%3A888826","Campylobacter upsaliensis JV21"],["NCBITaxon%3A306264","Campylobacter upsaliensis RM3195"],["NCBITaxon%3A1031733","Campylobacter upsaliensis RM3940"]]},{"id":"NCBITaxon:28129","l":"Prevotella denticola","na":2,"nb":6,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["pig-manure-envo-00003860.html","pig manure"]],"b":[["NCBITaxon%3A28125","Prevotella bivia"],["NCBITaxon%3A28129","Prevotella denticola"],["NCBITaxon%3A944557","Prevotella denticola CRIS 18C-A"],["NCBITaxon%3A1401077","Prevotella denticola DNF00960"],["NCBITaxon%3A1122982","Prevotella denticola DSM 20614 = JCM 13449"],["NCBITaxon%3A767031","Prevotella denticola F0289"]]},{"id":"NCBITaxon:29382","l":"Staphylococcus cohnii","na":2,"nb":6,"a":[["skin-of-body-uberon-0002097.html","skin of body"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["NCBITaxon%3A29382","Staphylococcus cohnii"],["NCBITaxon%3A1415164","Staphylococcus cohnii hu-01"],["NCBITaxon%3A1356853","Staphylococcus cohnii MU-CNS-924"],["NCBITaxon%3A2834574","Staphylococcus cohnii subsp. barensis"],["NCBITaxon%3A74704","Staphylococcus cohnii subsp. cohnii"],["NCBITaxon%3A94138","Staphylococcus ureilyticus"]]},{"id":"NCBITaxon:31910","l":"Halovibrio variabilis","na":6,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"],["oceanic-sea-surface-microlayer-biome-envo-01000034.html","oceanic sea surface microlayer biome"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["cultivated-environment-envo-01000311.html","cultivated environment"],["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"]],"b":[["NCBITaxon%3A31910","Halovibrio variabilis"],["NCBITaxon%3A86177","Vreelandella halophila"]]},{"id":"NCBITaxon:33953","l":"Clostridium aminobutyricum","na":6,"nb":2,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["animal-litter-envo-00002191.html","animal litter"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["mud-envo-01000001.html","mud"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"]],"b":[["NCBITaxon%3A33953","Clostridium aminobutyricum"],["NCBITaxon%3A1506","Clostridium sp."]]},{"id":"NCBITaxon:34003","l":"Paracoccus aminophilus","na":6,"nb":2,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["small-river-biome-envo-00000890.html","small river biome"],["water-scum-envo-00005794.html","water scum"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"],["stony-desert-envo-00000183.html","stony desert"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["NCBITaxon%3A34003","Paracoccus aminophilus"],["NCBITaxon%3A1367847","Paracoccus aminophilus JCM 7686"]]},{"id":"NCBITaxon:411460","l":"[Ruminococcus] torques ATCC 27756","na":6,"nb":2,"a":[["colonic-mucosa-bto-0000271.html","colonic mucosa"],["animal-litter-envo-00002191.html","animal litter"],["emulsion-envo-00010506.html","emulsion"],["tropical-envo-01000204.html","tropical"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"],["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A33039","Mediterraneibacter torques"],["NCBITaxon%3A411460","[Ruminococcus] torques ATCC 27756"]]},{"id":"NCBITaxon:471852","l":"Thermomonospora curvata DSM 43183","na":6,"nb":2,"a":[["city-envo-00000856.html","city"],["compost-envo-00002170.html","compost"],["urban-biome-envo-01000249.html","urban biome"],["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A2020","Thermomonospora curvata"],["NCBITaxon%3A471852","Thermomonospora curvata DSM 43183"]]},{"id":"NCBITaxon:47917","l":"Serratia fonticola","na":2,"nb":6,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"]],"b":[["NCBITaxon%3A47917","Serratia fonticola"],["NCBITaxon%3A1332071","Serratia fonticola AU-AP2C"],["NCBITaxon%3A1332070","Serratia fonticola AU-P3(3)"],["NCBITaxon%3A649197","Serratia fonticola DSM 22080"],["NCBITaxon%3A1378072","Serratia fonticola LMG 7882"],["NCBITaxon%3A1379259","Serratia fonticola UTAD54"]]},{"id":"NCBITaxon:498","l":"Psychrobacter immobilis","na":2,"nb":6,"a":[["skin-of-body-uberon-0002097.html","skin of body"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A498","Psychrobacter immobilis"],["NCBITaxon%3A1256511","Psychrobacter immobilis PG1"],["NCBITaxon%3A29432","Psychrobacter phenylpyruvicus"],["NCBITaxon%3A56811","Psychrobacter sp."],["NCBITaxon%3A1113655","Psychrobacter sp. NBRC 15736"],["NCBITaxon%3A45610","Psychrobacter urativorans"]]},{"id":"NCBITaxon:77608","l":"Pseudoalteromonas distincta","na":2,"nb":6,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A86104","Arenibacter latericius"],["NCBITaxon%3A1121012","Arenibacter latericius DSM 15913"],["NCBITaxon%3A77608","Pseudoalteromonas distincta"],["NCBITaxon%3A1315279","Pseudoalteromonas distincta KMM 3548"],["NCBITaxon%3A166935","Pseudoalteromonas translucida"],["NCBITaxon%3A1315283","Pseudoalteromonas translucida KMM 520"]]},{"id":"NCBITaxon:82135","l":"Fannyhessea vaginae","na":2,"nb":6,"a":[["brain-bto-0000142.html","brain"],["heart-bto-0000562.html","heart"]],"b":[["NCBITaxon%3A1872650","Atopobium sp."],["NCBITaxon%3A82135","Fannyhessea vaginae"],["NCBITaxon%3A525256","Fannyhessea vaginae DSM 15829"],["NCBITaxon%3A553187","Fannyhessea vaginae JCVIHMP018"],["NCBITaxon%3A553188","Fannyhessea vaginae JCVIHMP019"],["NCBITaxon%3A866774","Fannyhessea vaginae PB189-T1-4"]]},{"id":"NCBITaxon:853","l":"Faecalibacterium prausnitzii","na":2,"nb":6,"a":[["coral-reef-envo-00000150.html","coral reef"],["tropical-envo-01000204.html","tropical"]],"b":[["NCBITaxon%3A748224","Faecalibacterium cf. prausnitzii KLE1255"],["NCBITaxon%3A411483","Faecalibacterium duncaniae"],["NCBITaxon%3A853","Faecalibacterium prausnitzii"],["NCBITaxon%3A718252","Faecalibacterium prausnitzii L2-6"],["NCBITaxon%3A411485","Faecalibacterium prausnitzii M21/2"],["NCBITaxon%3A657322","Faecalibacterium prausnitzii SL3/3"]]},{"id":"NCBITaxon:102618","l":"Helicobacter pylori NCTC 11637 = CCUG 17874 = ATCC 43504 = JCM 12093","na":5,"nb":2,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["duodenum-bto-0000365.html","duodenum"],["gastric-mucosa-bto-0001308.html","gastric mucosa"],["gastric-ulcer-bto-0002990.html","gastric ulcer"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A210","Helicobacter pylori"],["NCBITaxon%3A102618","Helicobacter pylori NCTC 11637 = CCUG 17874 = ATCC 43504 = JCM 12093"]]},{"id":"NCBITaxon:1042314","l":"Armatimonadaceae","na":2,"nb":5,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"]],"b":[["NCBITaxon%3A2933160","Armatimonadaceae bacterium"],["NCBITaxon%3A685828","Armatimonas rosea"],["NCBITaxon%3A1872638","Armatimonas sp."],["NCBITaxon%3A1579981","uncultured Armatimonadaceae bacterium"],["NCBITaxon%3A1920858","uncultured Armatimonas sp."]]},{"id":"NCBITaxon:1069081","l":"Nitratiruptor tergarcus DSM 16512","na":5,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["sea-envo-00000016.html","sea"],["agricultural-field-envo-00000114.html","agricultural field"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A269259","Nitratiruptor tergarcus"],["NCBITaxon%3A1069081","Nitratiruptor tergarcus DSM 16512"]]},{"id":"NCBITaxon:1082","l":"Magnetospirillum fulvum","na":5,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["stream-envo-00000023.html","stream"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["river-envo-00000022.html","river"],["subpolar-coniferous-forest-biome-envo-01000250.html","subpolar coniferous forest biome"]],"b":[["NCBITaxon%3A1082","Magnetospirillum fulvum"],["NCBITaxon%3A1316936","Magnetospirillum fulvum MGU-K5"]]},{"id":"NCBITaxon:111105","l":"Porphyromonas gulae","na":5,"nb":2,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["dental-plaque-uberon-0016482.html","dental plaque"],["biome-envo-00000428.html","biome"],["biotope-envo-00002036.html","biotope"],["organic-material-envo-01000155.html","organic material"]],"b":[["NCBITaxon%3A111105","Porphyromonas gulae"],["NCBITaxon%3A1122972","Porphyromonas gulae DSM 15663"]]},{"id":"NCBITaxon:112002","l":"Psychrobacter pacificensis","na":5,"nb":2,"a":[["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"],["gut-bto-0000545.html","gut"],["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"],["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["NCBITaxon%3A112002","Psychrobacter pacificensis"],["NCBITaxon%3A2800839","Psychrobacter pacificensis E23"]]},{"id":"NCBITaxon:112009","l":"Ignatzschineria larvae","na":5,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"],["stream-envo-00000023.html","stream"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A112009","Ignatzschineria larvae"],["NCBITaxon%3A1111732","Ignatzschineria larvae DSM 13226"]]},{"id":"NCBITaxon:1120966","l":"Algoriphagus marincola DSM 16067","na":5,"nb":2,"a":[["beach-envo-00000091.html","beach"],["sea-envo-00000016.html","sea"],["sea-water-envo-00002149.html","sea water"],["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A264027","Algoriphagus marincola"],["NCBITaxon%3A1120966","Algoriphagus marincola DSM 16067"]]},{"id":"NCBITaxon:1121264","l":"Caloranaerobacter azorensis DSM 13643","na":5,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["sea-envo-00000016.html","sea"],["ridge-envo-00000283.html","ridge"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A116090","Caloranaerobacter azorensis"],["NCBITaxon%3A1121264","Caloranaerobacter azorensis DSM 13643"]]},{"id":"NCBITaxon:1121392","l":"Desulfatibacillum aliphaticivorans DSM 15576","na":5,"nb":2,"a":[["cove-envo-00000138.html","cove"],["inlet-envo-00000475.html","inlet"],["canal-envo-00000014.html","canal"],["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A218208","Desulfatibacillum aliphaticivorans"],["NCBITaxon%3A1121392","Desulfatibacillum aliphaticivorans DSM 15576"]]},{"id":"NCBITaxon:129958","l":"Carboxydothermus hydrogenoformans","na":5,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["stream-envo-00000023.html","stream"],["temperate-envo-01000206.html","temperate"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A129958","Carboxydothermus hydrogenoformans"],["NCBITaxon%3A246194","Carboxydothermus hydrogenoformans Z-2901"]]},{"id":"NCBITaxon:130049","l":"Paenibacillus dendritiformis","na":5,"nb":2,"a":[["lake-envo-00000020.html","lake"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["NCBITaxon%3A130049","Paenibacillus dendritiformis"],["NCBITaxon%3A1131935","Paenibacillus dendritiformis C454"]]},{"id":"NCBITaxon:1465","l":"Brevibacillus laterosporus","na":2,"nb":5,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["NCBITaxon%3A1465","Brevibacillus laterosporus"],["NCBITaxon%3A1121121","Brevibacillus laterosporus DSM 25"],["NCBITaxon%3A1118154","Brevibacillus laterosporus GI-9"],["NCBITaxon%3A1042163","Brevibacillus laterosporus LMG 15441"],["NCBITaxon%3A1399144","Brevibacillus laterosporus PE36"]]},{"id":"NCBITaxon:1525","l":"Neomoorella thermoacetica","na":2,"nb":5,"a":[["liquid-water-envo-00002006.html","liquid water"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["NCBITaxon%3A264732","Moorella thermoacetica ATCC 39073"],["NCBITaxon%3A1122242","Moorella thermoacetica DSM 1974"],["NCBITaxon%3A1325331","Moorella thermoacetica Y72"],["NCBITaxon%3A3051332","Neomoorella caeni"],["NCBITaxon%3A1525","Neomoorella thermoacetica"]]},{"id":"NCBITaxon:1526","l":"[Clostridium] aminophilum","na":5,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["rumen-uberon-0007365.html","rumen"],["stomach-bto-0001307.html","stomach"],["intestine-environment-envo-2100002.html","intestine environment"],["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["NCBITaxon%3A1526","[Clostridium] aminophilum"],["NCBITaxon%3A1121296","[Clostridium] aminophilum DSM 10710"]]},{"id":"NCBITaxon:158899","l":"Collimonas fungivorans","na":5,"nb":2,"a":[["surface-water-envo-00002042.html","surface water"],["water-body-envo-00000063.html","water body"],["fungi-associated-environment-envo-01001041.html","fungi-associated environment"],["blanket-bog-envo-00000511.html","blanket bog"],["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["NCBITaxon%3A158899","Collimonas fungivorans"],["NCBITaxon%3A1005048","Collimonas fungivorans Ter331"]]},{"id":"NCBITaxon:1642","l":"Listeria innocua","na":2,"nb":5,"a":[["abort-habitatmech-bacdive-b61f30c070.html","Abort"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["NCBITaxon%3A1642","Listeria innocua"],["NCBITaxon%3A1002366","Listeria innocua ATCC 33091"],["NCBITaxon%3A272626","Listeria innocua Clip11262"],["NCBITaxon%3A702455","Listeria innocua FSL J1-023"],["NCBITaxon%3A702456","Listeria innocua FSL S4-378"]]},{"id":"NCBITaxon:172371","l":"Alloalcanivorax venustensis","na":5,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"],["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"],["oceanic-sea-surface-microlayer-biome-envo-01000034.html","oceanic sea surface microlayer biome"]],"b":[["NCBITaxon%3A172371","Alloalcanivorax venustensis"],["NCBITaxon%3A1177184","Alloalcanivorax venustensis ISO4"]]},{"id":"NCBITaxon:1776","l":"Mycolicibacterium flavescens","na":5,"nb":2,"a":[["fibroblast-bto-0000452.html","fibroblast"],["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["kidney-bto-0000671.html","kidney"],["spleen-bto-0001281.html","spleen"],["tuberculosis-habitatmech-bacdive-e5d21f85b7.html","Tuberculosis"]],"b":[["NCBITaxon%3A1776","Mycolicibacterium flavescens"],["NCBITaxon%3A1303678","Mycolicibacterium flavescens JCM 14741"]]},{"id":"NCBITaxon:1802","l":"Mycobacterium farcinogenes","na":2,"nb":5,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"]],"b":[["NCBITaxon%3A1802","Mycobacterium farcinogenes"],["NCBITaxon%3A1237860","Mycobacterium farcinogenes DSM 43637"],["NCBITaxon%3A1796","Mycolicibacterium senegalense"],["NCBITaxon%3A37329","Nocardia farcinica"],["NCBITaxon%3A1210076","Nocardia farcinica NBRC 15532"]]},{"id":"NCBITaxon:193","l":"Azospirillum lipoferum","na":2,"nb":5,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"]],"b":[["NCBITaxon%3A442870","Acanthopleuribacter pedis"],["NCBITaxon%3A52761","Azospirillum largimobile"],["NCBITaxon%3A193","Azospirillum lipoferum"],["NCBITaxon%3A862719","Azospirillum lipoferum 4B"],["NCBITaxon%3A34012","Azospirillum sp."]]},{"id":"NCBITaxon:204","l":"Campylobacter showae","na":2,"nb":5,"a":[["archeological-site-envo-00000564.html","archeological site"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A204","Campylobacter showae"],["NCBITaxon%3A1073353","Campylobacter showae CC57C"],["NCBITaxon%3A1244083","Campylobacter showae CSUNSWCD"],["NCBITaxon%3A553219","Campylobacter showae RM3277"],["NCBITaxon%3A205","Campylobacter sp."]]},{"id":"NCBITaxon:224911","l":"Bradyrhizobium diazoefficiens USDA 110","na":5,"nb":2,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["microbial-mat-material-envo-01000157.html","microbial mat material"],["agricultural-soil-envo-00002259.html","agricultural soil"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A1355477","Bradyrhizobium diazoefficiens"],["NCBITaxon%3A224911","Bradyrhizobium diazoefficiens USDA 110"]]},{"id":"NCBITaxon:232721","l":"Acidovorax sp. JS42","na":5,"nb":2,"a":[["large-river-biome-envo-00000887.html","large river biome"],["pond-water-envo-00002228.html","pond water"],["nitrobenzene-enriched-sediment-envo-00002182.html","nitrobenzene enriched sediment"],["river-bed-envo-00000384.html","river bed"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A1872122","Acidovorax sp."],["NCBITaxon%3A232721","Acidovorax sp. JS42"]]},{"id":"NCBITaxon:240016","l":"Verrucomicrobium spinosum DSM 4136 = JCM 18804","na":5,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["pond-water-envo-00002228.html","pond water"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A2736","Verrucomicrobium spinosum"],["NCBITaxon%3A240016","Verrucomicrobium spinosum DSM 4136 = JCM 18804"]]},{"id":"NCBITaxon:248039","l":"Mucispirillum schaedleri","na":5,"nb":2,"a":[["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["leukocyte-bto-0000751.html","leukocyte"],["mucosa-bto-0000886.html","mucosa"]],"b":[["NCBITaxon%3A248039","Mucispirillum schaedleri"],["NCBITaxon%3A1379858","Mucispirillum schaedleri ASF457"]]},{"id":"NCBITaxon:265072","l":"Methylobacillus flagellatus KT","na":5,"nb":2,"a":[["pond-water-envo-00002228.html","pond water"],["water-body-envo-00000063.html","water body"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["activated-sludge-envo-00002046.html","activated sludge"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A405","Methylobacillus flagellatus"],["NCBITaxon%3A265072","Methylobacillus flagellatus KT"]]},{"id":"NCBITaxon:28034","l":"Sulfobacillus thermosulfidooxidans","na":2,"nb":5,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["NCBITaxon%3A28034","Sulfobacillus thermosulfidooxidans"],["NCBITaxon%3A929705","Sulfobacillus thermosulfidooxidans DSM 9293"],["NCBITaxon%3A1366420","Sulfobacillus thermosulfidooxidans ST"],["NCBITaxon%3A1214914","Sulfobacillus thermosulfidooxidans str. Cutipay"],["NCBITaxon%3A108014","Sulfobacillus thermosulfidooxidans subsp. asporogenes"]]},{"id":"NCBITaxon:293091","l":"Haloquadratum walsbyi","na":2,"nb":5,"a":[["small-river-biome-envo-00000890.html","small river biome"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["NCBITaxon%3A293091","Haloquadratum walsbyi"],["NCBITaxon%3A768065","Haloquadratum walsbyi C23"],["NCBITaxon%3A362976","Haloquadratum walsbyi DSM 16790"],["NCBITaxon%3A1238424","Haloquadratum walsbyi J07HQW1"],["NCBITaxon%3A1238425","Haloquadratum walsbyi J07HQW2"]]},{"id":"NCBITaxon:33034","l":"Anaerococcus prevotii","na":2,"nb":5,"a":[["skin-environment-envo-2100003.html","skin environment"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A33034","Anaerococcus prevotii"],["NCBITaxon%3A879305","Anaerococcus prevotii ACS-065-V-Col13"],["NCBITaxon%3A525919","Anaerococcus prevotii DSM 20548"],["NCBITaxon%3A33036","Anaerococcus tetradius"],["NCBITaxon%3A1827099","Peptoniphilus sp. JCM 8141"]]},{"id":"NCBITaxon:338969","l":"Rhodoferax ferrireducens T118","na":5,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["petroleum-envo-00002984.html","petroleum"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["NCBITaxon%3A192843","Rhodoferax ferrireducens"],["NCBITaxon%3A338969","Rhodoferax ferrireducens T118"]]},{"id":"NCBITaxon:388399","l":"Sagittula stellata E-37","na":5,"nb":2,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["oligotrophic-water-envo-00002223.html","oligotrophic water"],["pulp-bto-0001142.html","pulp"],["rosette-bto-0001201.html","rosette"],["scolex-bto-0002305.html","scolex"]],"b":[["NCBITaxon%3A52603","Sagittula stellata"],["NCBITaxon%3A388399","Sagittula stellata E-37"]]},{"id":"NCBITaxon:391625","l":"Plesiocystis pacifica SIR-1","na":5,"nb":2,"a":[["coral-reef-envo-00000150.html","coral reef"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["bulk-soil-envo-00005802.html","bulk soil"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A191768","Plesiocystis pacifica"],["NCBITaxon%3A391625","Plesiocystis pacifica SIR-1"]]},{"id":"NCBITaxon:393480","l":"Fusobacterium polymorphum ATCC 10953","na":5,"nb":2,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"],["forested-area-envo-00000111.html","forested area"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["NCBITaxon%3A76857","Fusobacterium polymorphum"],["NCBITaxon%3A393480","Fusobacterium polymorphum ATCC 10953"]]},{"id":"NCBITaxon:41976","l":"Porphyromonas catoniae","na":2,"nb":5,"a":[["archeological-site-envo-00000564.html","archeological site"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["NCBITaxon%3A41976","Porphyromonas catoniae"],["NCBITaxon%3A887901","Porphyromonas catoniae ATCC 51270"],["NCBITaxon%3A1127696","Porphyromonas catoniae F0037"],["NCBITaxon%3A1410034","Porphyromonas catoniae HMP_JCVI_SC0176"],["NCBITaxon%3A1924944","Porphyromonas sp."]]},{"id":"NCBITaxon:484","l":"Neisseria flavescens","na":2,"nb":5,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A483","Neisseria cinerea"],["NCBITaxon%3A484","Neisseria flavescens"],["NCBITaxon%3A546264","Neisseria flavescens NRL30031/H210"],["NCBITaxon%3A596320","Neisseria flavescens SK114"],["NCBITaxon%3A490","Neisseria sicca"]]},{"id":"NCBITaxon:49118","l":"Candidatus Arthromitus sp. SFB-mouse","na":2,"nb":5,"a":[["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["NCBITaxon%3A49118","Candidatus Arthromitus sp. SFB-mouse"],["NCBITaxon%3A937846","Candidatus Arthromitus sp. SFB-mouse-1"],["NCBITaxon%3A1029718","Candidatus Arthromitus sp. SFB-mouse-Japan"],["NCBITaxon%3A1073972","Candidatus Arthromitus sp. SFB-mouse-NYU"],["NCBITaxon%3A1041809","Candidatus Arthromitus sp. SFB-mouse-Yit"]]},{"id":"NCBITaxon:526225","l":"Geodermatophilus obscurus DSM 43160","na":5,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A1861","Geodermatophilus obscurus"],["NCBITaxon%3A526225","Geodermatophilus obscurus DSM 43160"]]},{"id":"NCBITaxon:70993","l":"Flexithrix dorotheae","na":5,"nb":2,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["sandstone-envo-00002055.html","sandstone"],["lagoon-envo-00000038.html","lagoon"],["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A70993","Flexithrix dorotheae"],["NCBITaxon%3A1121904","Flexithrix dorotheae DSM 6795"]]},{"id":"NCBITaxon:82367","l":"Paracoccus pantotrophus","na":2,"nb":5,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A266","Paracoccus denitrificans"],["NCBITaxon%3A1302247","Paracoccus denitrificans JCM 21484"],["NCBITaxon%3A82367","Paracoccus pantotrophus"],["NCBITaxon%3A936051","Paracoccus pantotrophus J40"],["NCBITaxon%3A935565","Paracoccus pantotrophus J46"]]},{"id":"NCBITaxon:86104","l":"Arenibacter latericius","na":2,"nb":5,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"],["fumarole-envo-00000216.html","fumarole"]],"b":[["NCBITaxon%3A86104","Arenibacter latericius"],["NCBITaxon%3A1121012","Arenibacter latericius DSM 15913"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A72407","Klebsiella pneumoniae subsp. pneumoniae"],["NCBITaxon%3A1162296","Klebsiella pneumoniae subsp. pneumoniae DSM 30104 = JCM 1662 = NBRC 14940"]]},{"id":"NCBITaxon:876","l":"Desulfovibrio desulfuricans","na":2,"nb":5,"a":[["sludge-envo-00002044.html","sludge"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A876","Desulfovibrio desulfuricans"],["NCBITaxon%3A525146","Desulfovibrio desulfuricans ATCC 27774"],["NCBITaxon%3A1121445","Desulfovibrio desulfuricans DSM 642"],["NCBITaxon%3A885","Desulfovibrio sp."],["NCBITaxon%3A126333","Halodesulfovibrio aestuarii"]]},{"id":"NCBITaxon:937777","l":"Deinococcus peraridilitoris DSM 19664","na":5,"nb":2,"a":[["desert-area-envo-00000097.html","desert area"],["hill-envo-00000083.html","hill"],["mount-envo-00000477.html","mount"],["mountain-envo-00000081.html","mountain"],["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A432329","Deinococcus peraridilitoris"],["NCBITaxon%3A937777","Deinococcus peraridilitoris DSM 19664"]]},{"id":"NCBITaxon:100884","l":"Coprobacillus cateniformis","na":4,"nb":2,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["gut-bto-0000545.html","gut"],["sediment-envo-00002007.html","sediment"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A100884","Coprobacillus cateniformis"],["NCBITaxon%3A1297794","Coprobacillus cateniformis JCM 10604"]]},{"id":"NCBITaxon:102862","l":"Proteus penneri","na":4,"nb":2,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"],["geographic-feature-envo-00000000.html","geographic feature"],["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A102862","Proteus penneri"],["NCBITaxon%3A471881","Proteus penneri ATCC 35198"]]},{"id":"NCBITaxon:1035271","l":"Rhizobium nepotum","na":2,"nb":4,"a":[["plant-gall-po-0025626.html","plant gall"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["NCBITaxon%3A1035271","Rhizobium nepotum"],["NCBITaxon%3A1368418","Rhizobium nepotum 39/7"],["NCBITaxon%3A1368419","Rhizobium nepotum AGR18"],["NCBITaxon%3A1368420","Rhizobium nepotum AGR19"]]},{"id":"NCBITaxon:105219","l":"Ralstonia mannitolilytica","na":4,"nb":2,"a":[["factory-envo-01000536.html","factory"],["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"],["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A105219","Ralstonia mannitolilytica"],["NCBITaxon%3A54061","Ralstonia sp."]]},{"id":"NCBITaxon:105612","l":"Dellaglioa algida","na":4,"nb":2,"a":[["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biotope-envo-00002036.html","biotope"],["organic-feature-envo-01000159.html","organic feature"]],"b":[["NCBITaxon%3A105612","Dellaglioa algida"],["NCBITaxon%3A1423719","Dellaglioa algida DSM 15638"]]},{"id":"NCBITaxon:1069448","l":"Nitriliruptor alkaliphilus DSM 45188","na":4,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"],["freshwater-environment-envo-01000306.html","freshwater environment"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A427918","Nitriliruptor alkaliphilus"],["NCBITaxon%3A1069448","Nitriliruptor alkaliphilus DSM 45188"]]},{"id":"NCBITaxon:108328","l":"Anaerobranca gottschalkii","na":4,"nb":2,"a":[["animal-manure-envo-00003031.html","animal manure"],["biotope-envo-00002036.html","biotope"],["environmental-feature-envo-00002297.html","environmental feature"],["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["NCBITaxon%3A108328","Anaerobranca gottschalkii"],["NCBITaxon%3A1120990","Anaerobranca gottschalkii DSM 13577"]]},{"id":"NCBITaxon:1089553","l":"Thermacetogenium phaeum DSM 12270","na":4,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["pulp-bto-0001142.html","pulp"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["NCBITaxon%3A85874","Thermacetogenium phaeum"],["NCBITaxon%3A1089553","Thermacetogenium phaeum DSM 12270"]]},{"id":"NCBITaxon:108981","l":"Acinetobacter schindleri","na":2,"nb":4,"a":[["gut-bto-0000545.html","gut"],["skin-bto-0001253.html","skin"]],"b":[["NCBITaxon%3A108981","Acinetobacter schindleri"],["NCBITaxon%3A1217988","Acinetobacter schindleri CIP 107287"],["NCBITaxon%3A1217675","Acinetobacter schindleri NIPH 900"],["NCBITaxon%3A1221311","Acinetobacter schindleri TG19614"]]},{"id":"NCBITaxon:109328","l":"Leptotrichia trevisanii","na":4,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biotope-envo-00002036.html","biotope"],["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["NCBITaxon%3A109328","Leptotrichia trevisanii"],["NCBITaxon%3A1122173","Leptotrichia trevisanii DSM 22070"]]},{"id":"NCBITaxon:1111735","l":"Sedimenticola selenatireducens DSM 17993","na":4,"nb":2,"a":[["brackish-water-body-envo-01001321.html","brackish water body"],["estuarine-biome-envo-01000020.html","estuarine biome"],["estuary-envo-00000045.html","estuary"],["watercourse-envo-00000029.html","watercourse"]],"b":[["NCBITaxon%3A191960","Sedimenticola selenatireducens"],["NCBITaxon%3A1111735","Sedimenticola selenatireducens DSM 17993"]]},{"id":"NCBITaxon:1111737","l":"Thermocrispum municipale DSM 44069","na":4,"nb":2,"a":[["city-envo-00000856.html","city"],["compost-envo-00002170.html","compost"],["urban-biome-envo-01000249.html","urban biome"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A37926","Thermocrispum municipale"],["NCBITaxon%3A1111737","Thermocrispum municipale DSM 44069"]]},{"id":"NCBITaxon:1120951","l":"Aequorivita capsosiphonis DSM 23843","na":4,"nb":2,"a":[["sea-envo-00000016.html","sea"],["sea-water-envo-00002149.html","sea water"],["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A487317","Aequorivita capsosiphonis"],["NCBITaxon%3A1120951","Aequorivita capsosiphonis DSM 23843"]]},{"id":"NCBITaxon:1120963","l":"Algicola sagamiensis DSM 14643","na":4,"nb":2,"a":[["inlet-envo-00000475.html","inlet"],["sea-water-envo-00002149.html","sea water"],["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A163869","Algicola sagamiensis"],["NCBITaxon%3A1120963","Algicola sagamiensis DSM 14643"]]},{"id":"NCBITaxon:1120977","l":"Alkanindiges illinoisensis DSM 15370","na":4,"nb":2,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"],["oil-envo-00002985.html","oil"]],"b":[["NCBITaxon%3A197183","Alkanindiges illinoisensis"],["NCBITaxon%3A1120977","Alkanindiges illinoisensis DSM 15370"]]},{"id":"NCBITaxon:1121007","l":"Aquimarina muelleri DSM 19832","na":4,"nb":2,"a":[["inlet-envo-00000475.html","inlet"],["marginal-sea-biome-envo-01000046.html","marginal sea biome"],["sea-envo-00000016.html","sea"],["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A279356","Aquimarina muelleri"],["NCBITaxon%3A1121007","Aquimarina muelleri DSM 19832"]]},{"id":"NCBITaxon:1121014","l":"Arenimonas donghaensis DSM 18148 = HO3-R19","na":4,"nb":2,"a":[["beach-envo-00000091.html","beach"],["intertidal-zone-envo-00000316.html","intertidal zone"],["city-envo-00000856.html","city"],["sea-sand-envo-00002118.html","sea sand"]],"b":[["NCBITaxon%3A375061","Arenimonas donghaensis"],["NCBITaxon%3A1121014","Arenimonas donghaensis DSM 18148 = HO3-R19"]]},{"id":"NCBITaxon:1121132","l":"Butyrivibrio hungatei DSM 14810","na":4,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"],["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A185008","Butyrivibrio hungatei"],["NCBITaxon%3A1121132","Butyrivibrio hungatei DSM 14810"]]},{"id":"NCBITaxon:1121266","l":"Caminicella sporogenes DSM 14501","na":4,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["undersea-feature-envo-00000104.html","undersea feature"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A166485","Caminicella sporogenes"],["NCBITaxon%3A1121266","Caminicella sporogenes DSM 14501"]]},{"id":"NCBITaxon:1121301","l":"Paramaledivibacter caminithermalis DSM 15212","na":4,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A191027","Paramaledivibacter caminithermalis"],["NCBITaxon%3A1121301","Paramaledivibacter caminithermalis DSM 15212"]]},{"id":"NCBITaxon:1121324","l":"Peptoclostridium litorale DSM 5388","na":4,"nb":2,"a":[["inlet-envo-00000475.html","inlet"],["ocean-envo-00000015.html","ocean"],["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"]],"b":[["NCBITaxon%3A1557","Peptoclostridium litorale"],["NCBITaxon%3A1121324","Peptoclostridium litorale DSM 5388"]]},{"id":"NCBITaxon:1121374","l":"Dasania marina DSM 21967","na":4,"nb":2,"a":[["ocean-envo-00000015.html","ocean"],["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"],["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A471499","Dasania marina"],["NCBITaxon%3A1121374","Dasania marina DSM 21967"]]},{"id":"NCBITaxon:1121449","l":"Paucidesulfovibrio gracilis DSM 16080","na":4,"nb":2,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"],["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A47158","Paucidesulfovibrio gracilis"],["NCBITaxon%3A1121449","Paucidesulfovibrio gracilis DSM 16080"]]},{"id":"NCBITaxon:1121451","l":"Maridesulfovibrio hydrothermalis AM13 = DSM 14728","na":4,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["undersea-feature-envo-00000104.html","undersea feature"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A191026","Maridesulfovibrio hydrothermalis"],["NCBITaxon%3A1121451","Maridesulfovibrio hydrothermalis AM13 = DSM 14728"]]},{"id":"NCBITaxon:1121456","l":"Paucidesulfovibrio longus DSM 6739","na":4,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"],["drainage-basin-envo-00000291.html","drainage basin"],["oil-envo-00002985.html","oil"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A889","Paucidesulfovibrio longus"],["NCBITaxon%3A1121456","Paucidesulfovibrio longus DSM 6739"]]},{"id":"NCBITaxon:1121877","l":"Ferrimicrobium acidiphilum DSM 19497","na":4,"nb":2,"a":[["acid-mine-drainage-envo-00001997.html","acid mine drainage"],["mine-envo-00000076.html","mine"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A121039","Ferrimicrobium acidiphilum"],["NCBITaxon%3A1121877","Ferrimicrobium acidiphilum DSM 19497"]]},{"id":"NCBITaxon:1121911","l":"Garciella nitratireducens DSM 15102","na":4,"nb":2,"a":[["inlet-envo-00000475.html","inlet"],["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A218205","Garciella nitratireducens"],["NCBITaxon%3A1121911","Garciella nitratireducens DSM 15102"]]},{"id":"NCBITaxon:1121912","l":"Gelidibacter mesophilus DSM 14095","na":4,"nb":2,"a":[["marginal-sea-biome-envo-01000046.html","marginal sea biome"],["sea-envo-00000016.html","sea"],["sea-water-envo-00002149.html","sea water"],["mediterranean-envo-01000207.html","mediterranean"]],"b":[["NCBITaxon%3A169050","Gelidibacter mesophilus"],["NCBITaxon%3A1121912","Gelidibacter mesophilus DSM 14095"]]},{"id":"NCBITaxon:1121922","l":"Brumicola pallidula DSM 14239 = ACAM 615","na":4,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"],["sea-water-envo-00002149.html","sea water"],["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A56807","Brumicola pallidula"],["NCBITaxon%3A1121922","Brumicola pallidula DSM 14239 = ACAM 615"]]},{"id":"NCBITaxon:1121937","l":"Haliea salexigens DSM 19537","na":4,"nb":2,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"],["sea-water-envo-00002149.html","sea water"],["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A287487","Haliea salexigens"],["NCBITaxon%3A1121937","Haliea salexigens DSM 19537"]]},{"id":"NCBITaxon:1122192","l":"Marinactinospora thermotolerans DSM 45154","na":4,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["ocean-trench-envo-00000275.html","ocean trench"],["oceanic-zone-envo-00000207.html","oceanic zone"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A531310","Marinactinospora thermotolerans"],["NCBITaxon%3A1122192","Marinactinospora thermotolerans DSM 45154"]]},{"id":"NCBITaxon:1122195","l":"Marinitoga hydrogenitolerans DSM 16785","na":4,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["ridge-envo-00000283.html","ridge"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A287990","Marinitoga hydrogenitolerans"],["NCBITaxon%3A1122195","Marinitoga hydrogenitolerans DSM 16785"]]},{"id":"NCBITaxon:1122238","l":"Microbacterium indicum DSM 19969","na":4,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["ocean-trench-envo-00000275.html","ocean trench"],["oceanic-zone-envo-00000207.html","oceanic zone"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A358100","Microbacterium indicum"],["NCBITaxon%3A1122238","Microbacterium indicum DSM 19969"]]},{"id":"NCBITaxon:1123233","l":"Salinicoccus luteus DSM 17002","na":4,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"],["desert-biome-envo-01000179.html","desert biome"],["desert-area-envo-00000097.html","desert area"],["wadi-envo-00000031.html","wadi"]],"b":[["NCBITaxon%3A367840","Salinicoccus luteus"],["NCBITaxon%3A1123233","Salinicoccus luteus DSM 17002"]]},{"id":"NCBITaxon:1123349","l":"Tepidibacter formicigenes DSM 15518","na":4,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["ridge-envo-00000283.html","ridge"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A227138","Tepidibacter formicigenes"],["NCBITaxon%3A1123349","Tepidibacter formicigenes DSM 15518"]]},{"id":"NCBITaxon:1123383","l":"Pseudothermotoga elfii DSM 9442 = NBRC 107921","na":4,"nb":2,"a":[["blast-cell-bto-0000125.html","blast cell"],["flagellum-bto-0002292.html","flagellum"],["petroleum-envo-00002984.html","petroleum"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A38322","Pseudothermotoga elfii"],["NCBITaxon%3A1123383","Pseudothermotoga elfii DSM 9442 = NBRC 107921"]]},{"id":"NCBITaxon:1123384","l":"Pseudothermotoga hypogea DSM 11164 = NBRC 106472","na":4,"nb":2,"a":[["blast-cell-bto-0000125.html","blast cell"],["flagellum-bto-0002292.html","flagellum"],["petroleum-envo-00002984.html","petroleum"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A57487","Pseudothermotoga hypogea"],["NCBITaxon%3A1123384","Pseudothermotoga hypogea DSM 11164 = NBRC 106472"]]},{"id":"NCBITaxon:1137989","l":"Geodermatophilus normandii","na":4,"nb":2,"a":[["desert-biome-envo-01000179.html","desert biome"],["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"],["desert-area-envo-00000097.html","desert area"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A1137989","Geodermatophilus normandii"],["NCBITaxon%3A52020","Geodermatophilus sp."]]},{"id":"NCBITaxon:114259","l":"Nocardia paucivorans","na":4,"nb":2,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["NCBITaxon%3A114259","Nocardia paucivorans"],["NCBITaxon%3A1206734","Nocardia paucivorans NBRC 100373"]]},{"id":"NCBITaxon:114652","l":"Streptococcus orisratti","na":2,"nb":4,"a":[["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"]],"b":[["NCBITaxon%3A114652","Streptococcus orisratti"],["NCBITaxon%3A1123311","Streptococcus orisratti DSM 15617"],["NCBITaxon%3A3409805","Streptococcus orisratti subsp. futianensis"],["NCBITaxon%3A3709338","Streptococcus orisratti subsp. orisratti"]]},{"id":"NCBITaxon:121719","l":"Pannonibacter phragmitetus","na":2,"nb":4,"a":[["nectar-bto-0000537.html","nectar"],["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A134375","Achromobacter sp."],["NCBITaxon%3A121719","Pannonibacter phragmitetus"],["NCBITaxon%3A1402210","Pannonibacter phragmitetus BB"],["NCBITaxon%3A1122929","Pannonibacter phragmitetus DSM 14782"]]},{"id":"NCBITaxon:1217908","l":"Octadecabacter antarcticus","na":4,"nb":2,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["sea-water-envo-00002149.html","sea water"],["hemolymph-bto-0000572.html","hemolymph"]],"b":[["NCBITaxon%3A1217908","Octadecabacter antarcticus"],["NCBITaxon%3A391626","Octadecabacter antarcticus 307"]]},{"id":"NCBITaxon:1306","l":"Streptococcus sp.","na":4,"nb":2,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["co-culture-habitatmech-bacdive-ff945d8a69.html","Co-culture"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1306","Streptococcus sp."]]},{"id":"NCBITaxon:1469607","l":"[Scytonema hofmanni] UTEX 2349","na":4,"nb":2,"a":[["track-envo-00000122.html","track"],["iucn-national-park-envo-00000367.html","IUCN national park"],["canyon-envo-00000169.html","canyon"],["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A1469607","[Scytonema hofmanni] UTEX 2349"],["NCBITaxon%3A379533","Tolypothrix sp. PCC 9009"]]},{"id":"NCBITaxon:1495","l":"Clostridium cylindrosporum","na":4,"nb":2,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["surface-water-envo-00002042.html","surface water"],["sludge-envo-00002044.html","sludge"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"]],"b":[["NCBITaxon%3A1495","Clostridium cylindrosporum"],["NCBITaxon%3A1121307","Clostridium cylindrosporum DSM 605"]]},{"id":"NCBITaxon:152142","l":"Mycolicibacterium holsaticum","na":4,"nb":2,"a":[["fibroblast-bto-0000452.html","fibroblast"],["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["kidney-bto-0000671.html","kidney"],["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A152142","Mycolicibacterium holsaticum"],["NCBITaxon%3A1226752","Mycolicibacterium holsaticum DSM 44478 = JCM 12374"]]},{"id":"NCBITaxon:153233","l":"Oceanicaulis alexandrii","na":4,"nb":2,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"],["forested-area-envo-00000111.html","forested area"],["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["NCBITaxon%3A153233","Oceanicaulis alexandrii"],["NCBITaxon%3A1122613","Oceanicaulis alexandrii DSM 11625"]]},{"id":"NCBITaxon:1565","l":"Desulfotomaculum nigrificans","na":2,"nb":4,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A2419843","Desulfofundulus salinus"],["NCBITaxon%3A1565","Desulfotomaculum nigrificans"],["NCBITaxon%3A868595","Desulfotomaculum nigrificans CO-1-SRB"],["NCBITaxon%3A696369","Desulfotomaculum nigrificans DSM 574"]]},{"id":"NCBITaxon:163","l":"Treponema bryantii","na":4,"nb":2,"a":[["stomach-bto-0001307.html","stomach"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["intestine-environment-envo-2100002.html","intestine environment"],["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["NCBITaxon%3A163","Treponema bryantii"],["NCBITaxon%3A877418","Treponema bryantii NK4A124"]]},{"id":"NCBITaxon:164393","l":"Latilactobacillus fuchuensis","na":4,"nb":2,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A164393","Latilactobacillus fuchuensis"],["NCBITaxon%3A1423747","Latilactobacillus fuchuensis DSM 14340 = JCM 11249"]]},{"id":"NCBITaxon:1684","l":"Bifidobacterium asteroides","na":2,"nb":4,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"]],"b":[["NCBITaxon%3A419015","Alloscardovia omnicolens"],["NCBITaxon%3A1684","Bifidobacterium asteroides"],["NCBITaxon%3A1437594","Bifidobacterium asteroides DSM 20089"],["NCBITaxon%3A1147128","Bifidobacterium asteroides PRL2011"]]},{"id":"NCBITaxon:172045","l":"Elizabethkingia miricola","na":4,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["hindgut-bto-0000510.html","hindgut"],["wood-bto-0005516.html","wood"],["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A238","Elizabethkingia meningoseptica"],["NCBITaxon%3A172045","Elizabethkingia miricola"]]},{"id":"NCBITaxon:1725","l":"Corynebacterium xerosis","na":2,"nb":4,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A1720","Corynebacterium sp."],["NCBITaxon%3A43770","Corynebacterium striatum"],["NCBITaxon%3A1725","Corynebacterium xerosis"],["NCBITaxon%3A1223513","Corynebacterium xerosis NBRC 16721 = ATCC 373"]]},{"id":"NCBITaxon:1736","l":"Eubacterium limosum","na":2,"nb":4,"a":[["watercourse-envo-00000029.html","watercourse"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A1852361","Actinomyces bouchesdurhonensis"],["NCBITaxon%3A1736","Eubacterium limosum"],["NCBITaxon%3A903814","Eubacterium limosum KIST612"],["NCBITaxon%3A2041044","Eubacterium maltosivorans"]]},{"id":"NCBITaxon:190721","l":"Ralstonia insidiosa","na":4,"nb":2,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["NCBITaxon%3A3058597","Ralstonia flaminis"],["NCBITaxon%3A190721","Ralstonia insidiosa"]]},{"id":"NCBITaxon:192","l":"Azospirillum brasilense","na":2,"nb":4,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A1064539","Azospirillum baldaniorum"],["NCBITaxon%3A192","Azospirillum brasilense"],["NCBITaxon%3A1117321","Azospirillum brasilense CBG497"],["NCBITaxon%3A1262469","Azospirillum brasilense FP2"]]},{"id":"NCBITaxon:2021","l":"Thermobifida fusca","na":2,"nb":4,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["NCBITaxon%3A2021","Thermobifida fusca"],["NCBITaxon%3A1223522","Thermobifida fusca NBRC 14071 = JCM 3263"],["NCBITaxon%3A1169414","Thermobifida fusca TM51"],["NCBITaxon%3A269800","Thermobifida fusca YX"]]},{"id":"NCBITaxon:203122","l":"Saccharophagus degradans 2-40","na":4,"nb":2,"a":[["intertidal-zone-envo-00000316.html","intertidal zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["saline-marsh-envo-00000054.html","saline marsh"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["NCBITaxon%3A86304","Saccharophagus degradans"],["NCBITaxon%3A203122","Saccharophagus degradans 2-40"]]},{"id":"NCBITaxon:208223","l":"Kosakonia cowanii","na":4,"nb":2,"a":[["midgut-bto-0000863.html","midgut"],["midgut-epithelium-bto-0005053.html","midgut epithelium"],["nectar-bto-0000537.html","nectar"],["ookinete-bto-0004857.html","ookinete"]],"b":[["NCBITaxon%3A208223","Kosakonia cowanii"],["NCBITaxon%3A1300165","Kosakonia cowanii JCM 10956 = DSM 18146"]]},{"id":"NCBITaxon:243061","l":"Mycobacterium sherrisii","na":4,"nb":2,"a":[["fibroblast-bto-0000452.html","fibroblast"],["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["kidney-bto-0000671.html","kidney"],["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A154654","Mycobacterium montefiorense"],["NCBITaxon%3A243061","Mycobacterium sherrisii"]]},{"id":"NCBITaxon:243090","l":"Rhodopirellula baltica SH 1","na":4,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["oligotrophic-water-envo-00002223.html","oligotrophic water"],["pond-water-envo-00002228.html","pond water"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A265606","Rhodopirellula baltica"],["NCBITaxon%3A243090","Rhodopirellula baltica SH 1"]]},{"id":"NCBITaxon:264462","l":"Bdellovibrio bacteriovorus HD100","na":4,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A959","Bdellovibrio bacteriovorus"],["NCBITaxon%3A264462","Bdellovibrio bacteriovorus HD100"]]},{"id":"NCBITaxon:272624","l":"Legionella pneumophila subsp. pneumophila str. Philadelphia 1","na":2,"nb":4,"a":[["underground-water-envo-00005792.html","underground water"],["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A446","Legionella pneumophila"],["NCBITaxon%3A91891","Legionella pneumophila subsp. pneumophila"],["NCBITaxon%3A1236535","Legionella pneumophila subsp. pneumophila JCM 7571"],["NCBITaxon%3A272624","Legionella pneumophila subsp. pneumophila str. Philadelphia 1"]]},{"id":"NCBITaxon:2748","l":"Carnobacterium divergens","na":2,"nb":4,"a":[["food-product-foodon-00001002.html","food product"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["NCBITaxon%3A2748","Carnobacterium divergens"],["NCBITaxon%3A1449336","Carnobacterium divergens DSM 20623"],["NCBITaxon%3A2751","Carnobacterium maltaromaticum"],["NCBITaxon%3A1579","Lactobacillus acidophilus"]]},{"id":"NCBITaxon:28051","l":"Lachnospira multipara","na":2,"nb":4,"a":[["animal-litter-envo-00002191.html","animal litter"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["NCBITaxon%3A28051","Lachnospira multipara"],["NCBITaxon%3A1282887","Lachnospira multipara ATCC 19207"],["NCBITaxon%3A1410661","Lachnospira multipara LB2003"],["NCBITaxon%3A1410662","Lachnospira multipara MC2003"]]},{"id":"NCBITaxon:28114","l":"Porphyromonas levii","na":4,"nb":2,"a":[["environmental-feature-envo-00002297.html","environmental feature"],["lagoon-envo-00000038.html","lagoon"],["skin-environment-envo-2100003.html","skin environment"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A28114","Porphyromonas levii"],["NCBITaxon%3A1122973","Porphyromonas levii DSM 23370"]]},{"id":"NCBITaxon:29345","l":"Sedimentibacter hydroxybenzoicus","na":4,"nb":2,"a":[["mud-envo-01000001.html","mud"],["oil-spill-envo-00002061.html","oil spill"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A29345","Sedimentibacter hydroxybenzoicus"],["NCBITaxon%3A1123245","Sedimentibacter hydroxybenzoicus DSM 7310"]]},{"id":"NCBITaxon:35703","l":"Citrobacter amalonaticus","na":2,"nb":4,"a":[["dental-plaque-bto-0000338.html","dental plaque"],["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["NCBITaxon%3A35703","Citrobacter amalonaticus"],["NCBITaxon%3A1261127","Citrobacter amalonaticus Y19"],["NCBITaxon%3A67824","Citrobacter farmeri"],["NCBITaxon%3A546","Citrobacter freundii"]]},{"id":"NCBITaxon:365044","l":"Polaromonas naphthalenivorans CJ2","na":4,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["large-river-biome-envo-00000887.html","large river biome"],["waterfall-envo-00000040.html","waterfall"],["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A216465","Polaromonas naphthalenivorans"],["NCBITaxon%3A365044","Polaromonas naphthalenivorans CJ2"]]},{"id":"NCBITaxon:37637","l":"Corynebacterium pseudodiphtheriticum","na":2,"nb":4,"a":[["hospital-envo-00002173.html","hospital"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["NCBITaxon%3A43769","Corynebacterium propinquum"],["NCBITaxon%3A37637","Corynebacterium pseudodiphtheriticum"],["NCBITaxon%3A1381111","Corynebacterium pseudodiphtheriticum 090104"],["NCBITaxon%3A1121368","Corynebacterium pseudodiphtheriticum DSM 44287"]]},{"id":"NCBITaxon:391606","l":"Caldanaerobacter subterraneus subsp. pacificus DSM 12653","na":2,"nb":4,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"]],"b":[["NCBITaxon%3A911092","Caldanaerobacter subterraneus"],["NCBITaxon%3A109807","Caldanaerobacter subterraneus subsp. pacificus"],["NCBITaxon%3A391606","Caldanaerobacter subterraneus subsp. pacificus DSM 12653"],["NCBITaxon%3A119072","Caldanaerobacter subterraneus subsp. tengcongensis"]]},{"id":"NCBITaxon:391735","l":"Verminephrobacter eiseniae EF01-2","na":4,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["embryo-bto-0000379.html","embryo"],["nephridium-bto-0000923.html","nephridium"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["NCBITaxon%3A364317","Verminephrobacter eiseniae"],["NCBITaxon%3A391735","Verminephrobacter eiseniae EF01-2"]]},{"id":"NCBITaxon:39441","l":"Methanobrevibacter arboriphilus","na":2,"nb":4,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A39441","Methanobrevibacter arboriphilus"],["NCBITaxon%3A1401244","Methanobrevibacter arboriphilus ANOR1"],["NCBITaxon%3A1300164","Methanobrevibacter arboriphilus JCM 13429 = DSM 1125"],["NCBITaxon%3A1293039","Methanobrevibacter arboriphilus JCM 9315"]]},{"id":"NCBITaxon:395019","l":"Burkholderia multivorans ATCC 17616","na":4,"nb":2,"a":[["human-construction-envo-00000070.html","human construction"],["desert-sand-envo-00005800.html","desert sand"],["orchard-envo-00000115.html","orchard"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["NCBITaxon%3A87883","Burkholderia multivorans"],["NCBITaxon%3A395019","Burkholderia multivorans ATCC 17616"]]},{"id":"NCBITaxon:411465","l":"Parvimonas micra ATCC 33270","na":4,"nb":2,"a":[["hip-bto-0001457.html","hip"],["joint-bto-0001686.html","joint"],["tooth-bto-0000397.html","tooth"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A33033","Parvimonas micra"],["NCBITaxon%3A411465","Parvimonas micra ATCC 33270"]]},{"id":"NCBITaxon:449973","l":"Chelativorans multitrophicus","na":4,"nb":2,"a":[["factory-envo-01000536.html","factory"],["sludge-envo-00002044.html","sludge"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A449973","Chelativorans multitrophicus"],["NCBITaxon%3A449974","Chelativorans oligotrophicus"]]},{"id":"NCBITaxon:479432","l":"Streptosporangium roseum DSM 43021","na":4,"nb":2,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"],["vegetable-garden-soil-envo-00005779.html","vegetable garden soil"]],"b":[["NCBITaxon%3A2001","Streptosporangium roseum"],["NCBITaxon%3A479432","Streptosporangium roseum DSM 43021"]]},{"id":"NCBITaxon:479433","l":"Catenulispora acidiphila DSM 44928","na":4,"nb":2,"a":[["filament-bto-0000463.html","filament"],["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A304895","Catenulispora acidiphila"],["NCBITaxon%3A479433","Catenulispora acidiphila DSM 44928"]]},{"id":"NCBITaxon:480224","l":"Chloroflexus aurantiacus Y-400-fl","na":4,"nb":2,"a":[["alkaline-hot-spring-envo-00002119.html","alkaline hot spring"],["mountain-pass-envo-00000084.html","mountain pass"],["silty-sediment-envo-01000119.html","silty sediment"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A1108","Chloroflexus aurantiacus"],["NCBITaxon%3A480224","Chloroflexus aurantiacus Y-400-fl"]]},{"id":"NCBITaxon:485914","l":"Halomicrobium mukohataei DSM 12286","na":4,"nb":2,"a":[["saline-lake-envo-00000019.html","saline lake"],["saline-marsh-envo-00000054.html","saline marsh"],["alkaline-flat-envo-00000196.html","alkaline flat"],["plateau-envo-00000182.html","plateau"]],"b":[["NCBITaxon%3A57705","Halomicrobium mukohataei"],["NCBITaxon%3A485914","Halomicrobium mukohataei DSM 12286"]]},{"id":"NCBITaxon:51514","l":"Dehalobacterium","na":2,"nb":4,"a":[["cecum-mucosa-bto-0000213.html","cecum mucosa"],["colon-bto-0000269.html","colon"]],"b":[["NCBITaxon%3A51515","Dehalobacterium formicoaceticum"],["NCBITaxon%3A2022806","Dehalobacterium sp."],["NCBITaxon%3A3143029","Dehalobacterium sp. XH"],["NCBITaxon%3A926829","uncultured Dehalobacterium sp."]]},{"id":"NCBITaxon:519","l":"Bordetella parapertussis","na":2,"nb":4,"a":[["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["NCBITaxon%3A519","Bordetella parapertussis"],["NCBITaxon%3A257311","Bordetella parapertussis 12822"],["NCBITaxon%3A1208717","Bordetella parapertussis 18323"],["NCBITaxon%3A1208660","Bordetella parapertussis Bpp5"]]},{"id":"NCBITaxon:525909","l":"Acidimicrobium ferrooxidans DSM 10331","na":4,"nb":2,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A53635","Acidimicrobium ferrooxidans"],["NCBITaxon%3A525909","Acidimicrobium ferrooxidans DSM 10331"]]},{"id":"NCBITaxon:555779","l":"Desulfonatronospira thiodismutans ASO3-1","na":4,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"],["soil-envo-00001998.html","soil"],["steppe-envo-00000262.html","steppe"]],"b":[["NCBITaxon%3A488939","Desulfonatronospira thiodismutans"],["NCBITaxon%3A555779","Desulfonatronospira thiodismutans ASO3-1"]]},{"id":"NCBITaxon:563040","l":"Sulfurimonas autotrophica DSM 16294","na":4,"nb":2,"a":[["hill-envo-00000083.html","hill"],["mount-envo-00000477.html","mount"],["mountain-envo-00000081.html","mountain"],["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A202747","Sulfurimonas autotrophica"],["NCBITaxon%3A563040","Sulfurimonas autotrophica DSM 16294"]]},{"id":"NCBITaxon:575540","l":"Isosphaera pallida ATCC 43644","na":4,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["agricultural-soil-envo-00002259.html","agricultural soil"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A128","Isosphaera pallida"],["NCBITaxon%3A575540","Isosphaera pallida ATCC 43644"]]},{"id":"NCBITaxon:577","l":"Klebsiella terrigena","na":2,"nb":4,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A577","Klebsiella terrigena"],["NCBITaxon%3A1354274","Klebsiella terrigena ATCC 33257"],["NCBITaxon%3A1255696","Klebsiella terrigena Pi19"]]},{"id":"NCBITaxon:587","l":"Providencia rettgeri","na":2,"nb":4,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["fumarole-envo-00000216.html","fumarole"]],"b":[["NCBITaxon%3A587","Providencia rettgeri"],["NCBITaxon%3A1255575","Providencia rettgeri 947"],["NCBITaxon%3A1141663","Providencia rettgeri Dmel1"],["NCBITaxon%3A521000","Providencia rettgeri DSM 1131"]]},{"id":"NCBITaxon:588319","l":"Palaeococcus ferrophilus DSM 13482","na":4,"nb":2,"a":[["hill-envo-00000083.html","hill"],["mount-envo-00000477.html","mount"],["mountain-envo-00000081.html","mountain"],["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A83868","Palaeococcus ferrophilus"],["NCBITaxon%3A588319","Palaeococcus ferrophilus DSM 13482"]]},{"id":"NCBITaxon:61646","l":"Lelliottia amnigena","na":2,"nb":4,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["NCBITaxon%3A61646","Lelliottia amnigena"],["NCBITaxon%3A1439331","Lelliottia amnigena CHS 78"],["NCBITaxon%3A1255644","Lelliottia amnigena CV9"],["NCBITaxon%3A1219085","Lelliottia amnigena NBRC 105700"]]},{"id":"NCBITaxon:633148","l":"Thermosphaera aggregans DSM 11486","na":4,"nb":2,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["park-envo-00000562.html","park"],["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A54254","Thermosphaera aggregans"],["NCBITaxon%3A633148","Thermosphaera aggregans DSM 11486"]]},{"id":"NCBITaxon:651","l":"Aeromonas media","na":4,"nb":2,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"],["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A651","Aeromonas media"],["NCBITaxon%3A1208104","Aeromonas media WS"]]},{"id":"NCBITaxon:753","l":"Pasteurella canis","na":2,"nb":4,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"]],"b":[["NCBITaxon%3A317577","Deinococcus ficus"],["NCBITaxon%3A1121379","Deinococcus ficus DSM 19119"],["NCBITaxon%3A753","Pasteurella canis"],["NCBITaxon%3A1538102","Pseudochelatococcus lubricantis"]]},{"id":"NCBITaxon:1000570","l":"Streptococcus anginosus SK52 = DSM 20563","na":2,"nb":3,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"],["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1328","Streptococcus anginosus"],["NCBITaxon%3A1000570","Streptococcus anginosus SK52 = DSM 20563"],["NCBITaxon%3A1671923","Streptococcus anginosus subsp. anginosus"]]},{"id":"NCBITaxon:1001714","l":"Mycobacteroides abscessus subsp. massiliense CCUG 48898 = JCM 15300","na":2,"nb":3,"a":[["respiratory-system-bto-0000203.html","respiratory system"],["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A36809","Mycobacteroides abscessus"],["NCBITaxon%3A1962118","Mycobacteroides abscessus subsp. massiliense"],["NCBITaxon%3A1001714","Mycobacteroides abscessus subsp. massiliense CCUG 48898 = JCM 15300"]]},{"id":"NCBITaxon:1027273","l":"Endozoicomonas montiporae","na":3,"nb":2,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"],["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"],["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1027273","Endozoicomonas montiporae"],["NCBITaxon%3A570277","Endozoicomonas montiporae CL-33"]]},{"id":"NCBITaxon:102886","l":"Streptococcus didelphis","na":3,"nb":2,"a":[["animal-manure-envo-00003031.html","animal manure"],["organic-feature-envo-01000159.html","organic feature"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A102886","Streptococcus didelphis"],["NCBITaxon%3A1123301","Streptococcus didelphis DSM 15616"]]},{"id":"NCBITaxon:104097","l":"Acetobacter estunensis","na":3,"nb":2,"a":[["river-envo-00000022.html","river"],["food-fermented-foodon-00001258.html","food (fermented)"],["subpolar-coniferous-forest-biome-envo-01000250.html","subpolar coniferous forest biome"]],"b":[["NCBITaxon%3A104097","Acetobacter estunensis"],["NCBITaxon%3A1307905","Acetobacter estunensis NRIC 0472"]]},{"id":"NCBITaxon:1050107","l":"Lactobacillus delbrueckii subsp. allosunkii","na":2,"nb":3,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A1584","Lactobacillus delbrueckii"],["NCBITaxon%3A1050107","Lactobacillus delbrueckii subsp. allosunkii"],["NCBITaxon%3A29397","Lactobacillus delbrueckii subsp. lactis"]]},{"id":"NCBITaxon:1055104","l":"Cobetia amphilecti","na":2,"nb":3,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A1055104","Cobetia amphilecti"],["NCBITaxon%3A412417","Streptomonospora arabica"],["NCBITaxon%3A58345","Streptomyces mauvecolor"]]},{"id":"NCBITaxon:105841","l":"Anaerostipes caccae","na":3,"nb":2,"a":[["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["emulsion-envo-00010506.html","emulsion"],["organic-feature-envo-01000159.html","organic feature"]],"b":[["NCBITaxon%3A105841","Anaerostipes caccae"],["NCBITaxon%3A411490","Anaerostipes caccae L1-92"]]},{"id":"NCBITaxon:1069082","l":"Halomicrobium katesii DSM 19301","na":3,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A437163","Halomicrobium katesii"],["NCBITaxon%3A1069082","Halomicrobium katesii DSM 19301"]]},{"id":"NCBITaxon:1069083","l":"Methanocaldococcus villosus KIN24-T80","na":3,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["flagellum-bto-0002292.html","flagellum"],["ridge-envo-00000283.html","ridge"]],"b":[["NCBITaxon%3A667126","Methanocaldococcus villosus"],["NCBITaxon%3A1069083","Methanocaldococcus villosus KIN24-T80"]]},{"id":"NCBITaxon:1071","l":"Rhodopila globiformis","na":3,"nb":2,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A563170","Ferruginibacter alkalilentus"],["NCBITaxon%3A1071","Rhodopila globiformis"]]},{"id":"NCBITaxon:107635","l":"Methylosinus sp. LW3","na":3,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A427","Methylosinus sp."],["NCBITaxon%3A107635","Methylosinus sp. LW3"]]},{"id":"NCBITaxon:107637","l":"Methylomonas sp. LW13","na":3,"nb":2,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["freshwater-environment-envo-01000306.html","freshwater environment"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A418","Methylomonas sp."],["NCBITaxon%3A107637","Methylomonas sp. LW13"]]},{"id":"NCBITaxon:1086","l":"Rhodothalassium salexigens","na":3,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A1086","Rhodothalassium salexigens"],["NCBITaxon%3A1188247","Rhodothalassium salexigens DSM 2132"]]},{"id":"NCBITaxon:1091038","l":"Streptococcus thermophilus DSM 20617","na":3,"nb":2,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A1308","Streptococcus thermophilus"],["NCBITaxon%3A1091038","Streptococcus thermophilus DSM 20617"]]},{"id":"NCBITaxon:1096","l":"Chlorobium phaeobacteroides","na":2,"nb":3,"a":[["animal-manure-envo-00003031.html","animal manure"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"]],"b":[["NCBITaxon%3A1096","Chlorobium phaeobacteroides"],["NCBITaxon%3A331678","Chlorobium phaeobacteroides BS1"],["NCBITaxon%3A290317","Chlorobium phaeobacteroides DSM 266"]]},{"id":"NCBITaxon:110101","l":"Laceyella putida","na":3,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"],["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["NCBITaxon%3A1538144","Aeromicrobium camelliae"],["NCBITaxon%3A110101","Laceyella putida"]]},{"id":"NCBITaxon:1112212","l":"Sphingomonas echinoides ATCC 14820","na":3,"nb":2,"a":[["bioreactor-envo-00002123.html","bioreactor"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["NCBITaxon%3A59803","Sphingomonas echinoides"],["NCBITaxon%3A1112212","Sphingomonas echinoides ATCC 14820"]]},{"id":"NCBITaxon:1117644","l":"Mycoplasmopsis canis PG 14","na":3,"nb":2,"a":[["brain-bto-0000142.html","brain"],["throat-bto-0000828.html","throat"],["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A29555","Mycoplasmopsis canis"],["NCBITaxon%3A1117644","Mycoplasmopsis canis PG 14"]]},{"id":"NCBITaxon:1117647","l":"Simiduia agarivorans SA1 = DSM 21679","na":3,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"],["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A447471","Simiduia agarivorans"],["NCBITaxon%3A1117647","Simiduia agarivorans SA1 = DSM 21679"]]},{"id":"NCBITaxon:1120925","l":"Acinetobacter bouvetii DSM 14964 = CIP 107468","na":3,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A202951","Acinetobacter bouvetii"],["NCBITaxon%3A1120925","Acinetobacter bouvetii DSM 14964 = CIP 107468"]]},{"id":"NCBITaxon:1120927","l":"Acinetobacter tandoii DSM 14970 = CIP 107469","na":3,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A202954","Acinetobacter tandoii"],["NCBITaxon%3A1120927","Acinetobacter tandoii DSM 14970 = CIP 107469"]]},{"id":"NCBITaxon:1120928","l":"Acinetobacter tjernbergiae DSM 14971 = CIP 107465","na":3,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A202955","Acinetobacter tjernbergiae"],["NCBITaxon%3A1120928","Acinetobacter tjernbergiae DSM 14971 = CIP 107465"]]},{"id":"NCBITaxon:1120953","l":"Aestuariibacter salexigens DSM 15300","na":3,"nb":2,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"],["island-envo-00000098.html","island"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A226010","Aestuariibacter salexigens"],["NCBITaxon%3A1120953","Aestuariibacter salexigens DSM 15300"]]},{"id":"NCBITaxon:1120956","l":"Afifella pfennigii DSM 17143","na":3,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A209897","Afifella pfennigii"],["NCBITaxon%3A1120956","Afifella pfennigii DSM 17143"]]},{"id":"NCBITaxon:1120961","l":"Ahrensia kielensis DSM 5890","na":3,"nb":2,"a":[["brackish-water-body-envo-01001321.html","brackish water body"],["hypersaline-water-envo-00002012.html","hypersaline water"],["sea-envo-00000016.html","sea"]],"b":[["NCBITaxon%3A76980","Ahrensia kielensis"],["NCBITaxon%3A1120961","Ahrensia kielensis DSM 5890"]]},{"id":"NCBITaxon:1120965","l":"Algoriphagus mannitolivorans DSM 15301","na":3,"nb":2,"a":[["intertidal-zone-envo-00000316.html","intertidal zone"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A226504","Algoriphagus mannitolivorans"],["NCBITaxon%3A1120965","Algoriphagus mannitolivorans DSM 15301"]]},{"id":"NCBITaxon:1120969","l":"Aliagarivorans marinus DSM 23064","na":3,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"],["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A561965","Aliagarivorans marinus"],["NCBITaxon%3A1120969","Aliagarivorans marinus DSM 23064"]]},{"id":"NCBITaxon:1120983","l":"Amorphus coralli DSM 19760","na":3,"nb":2,"a":[["inlet-envo-00000475.html","inlet"],["sea-envo-00000016.html","sea"],["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A340680","Amorphus coralli"],["NCBITaxon%3A1120983","Amorphus coralli DSM 19760"]]},{"id":"NCBITaxon:1120985","l":"Anaeromusa burkinensis DSM 6283","na":3,"nb":2,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A82376","Anaeromusa burkinensis"],["NCBITaxon%3A1120985","Anaeromusa burkinensis DSM 6283"]]},{"id":"NCBITaxon:1120987","l":"Acetomicrobium thermoterrenum DSM 13490","na":3,"nb":2,"a":[["reservoir-envo-00000025.html","reservoir"],["agricultural-field-envo-00000114.html","agricultural field"],["oil-envo-00002985.html","oil"]],"b":[["NCBITaxon%3A1120986","Acetomicrobium thermoterrenum"],["NCBITaxon%3A1120987","Acetomicrobium thermoterrenum DSM 13490"]]},{"id":"NCBITaxon:1120998","l":"Anaerovorax odorimutans DSM 5092","na":3,"nb":2,"a":[["brackish-water-body-envo-01001321.html","brackish water body"],["hypersaline-water-envo-00002012.html","hypersaline water"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A109327","Anaerovorax odorimutans"],["NCBITaxon%3A1120998","Anaerovorax odorimutans DSM 5092"]]},{"id":"NCBITaxon:1120999","l":"Andreprevotia chitinilytica DSM 18519","na":3,"nb":2,"a":[["forest-soil-envo-00002261.html","forest soil"],["island-envo-00000098.html","island"],["mountain-envo-00000081.html","mountain"]],"b":[["NCBITaxon%3A396808","Andreprevotia chitinilytica"],["NCBITaxon%3A1120999","Andreprevotia chitinilytica DSM 18519"]]},{"id":"NCBITaxon:1121012","l":"Arenibacter latericius DSM 15913","na":3,"nb":2,"a":[["sea-envo-00000016.html","sea"],["island-envo-00000098.html","island"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A86104","Arenibacter latericius"],["NCBITaxon%3A1121012","Arenibacter latericius DSM 15913"]]},{"id":"NCBITaxon:1121013","l":"Arenimonas composti TR7-09 = DSM 18010","na":3,"nb":2,"a":[["agricultural-waste-material-envo-01000371.html","agricultural waste material"],["compost-envo-00002170.html","compost"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A370776","Arenimonas composti"],["NCBITaxon%3A1121013","Arenimonas composti TR7-09 = DSM 18010"]]},{"id":"NCBITaxon:1121015","l":"Arenimonas oryziterrae DSM 21050 = YC6267","na":3,"nb":2,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A498055","Arenimonas oryziterrae"],["NCBITaxon%3A1121015","Arenimonas oryziterrae DSM 21050 = YC6267"]]},{"id":"NCBITaxon:1121016","l":"Arhodomonas aquaeolei DSM 8974","na":3,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A2369","Arhodomonas aquaeolei"],["NCBITaxon%3A1121016","Arhodomonas aquaeolei DSM 8974"]]},{"id":"NCBITaxon:1121025","l":"Atopostipes suicloacalis DSM 15692","na":3,"nb":2,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["fecal-environment-envo-01001029.html","fecal environment"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A180295","Atopostipes suicloacalis"],["NCBITaxon%3A1121025","Atopostipes suicloacalis DSM 15692"]]},{"id":"NCBITaxon:1121085","l":"Salibacterium aidingense DSM 18341","na":3,"nb":2,"a":[["saline-lake-envo-00000019.html","saline lake"],["undersea-feature-envo-00000104.html","undersea feature"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A384933","Salibacterium aidingense"],["NCBITaxon%3A1121085","Salibacterium aidingense DSM 18341"]]},{"id":"NCBITaxon:1121087","l":"Alkalicoccus chagannorensis DSM 18086","na":3,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["hypersaline-water-envo-00002012.html","hypersaline water"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A427072","Alkalicoccus chagannorensis"],["NCBITaxon%3A1121087","Alkalicoccus chagannorensis DSM 18086"]]},{"id":"NCBITaxon:1121111","l":"Bifidobacterium thermacidophilum subsp. thermacidophilum DSM 15837","na":2,"nb":3,"a":[["waste-water-envo-00002001.html","waste water"],["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A246618","Bifidobacterium thermacidophilum"],["NCBITaxon%3A79262","Bifidobacterium thermacidophilum subsp. thermacidophilum"],["NCBITaxon%3A1121111","Bifidobacterium thermacidophilum subsp. thermacidophilum DSM 15837"]]},{"id":"NCBITaxon:1121112","l":"Bifidobacterium tsurumiense DSM 17777","na":3,"nb":2,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A356829","Bifidobacterium tsurumiense"],["NCBITaxon%3A1121112","Bifidobacterium tsurumiense DSM 17777"]]},{"id":"NCBITaxon:1121256","l":"Caldanaerobius fijiensis DSM 17918","na":3,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"],["island-envo-00000098.html","island"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A456330","Caldanaerobius fijiensis"],["NCBITaxon%3A1121256","Caldanaerobius fijiensis DSM 17918"]]},{"id":"NCBITaxon:1121291","l":"Clostridium acidisoli DSM 12555","na":3,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A91624","Clostridium acidisoli"],["NCBITaxon%3A1121291","Clostridium acidisoli DSM 12555"]]},{"id":"NCBITaxon:1121303","l":"Ruminiclostridium cellobioparum DSM 1351 = ATCC 15832","na":2,"nb":3,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A29355","Ruminiclostridium cellobioparum"],["NCBITaxon%3A1121303","Ruminiclostridium cellobioparum DSM 1351 = ATCC 15832"],["NCBITaxon%3A2305018","Ruminiclostridium cellobioparum subsp. cellobioparum"]]},{"id":"NCBITaxon:1121349","l":"Comamonas composti DSM 21721","na":3,"nb":2,"a":[["compost-envo-00002170.html","compost"],["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A408558","Comamonas composti"],["NCBITaxon%3A1121349","Comamonas composti DSM 21721"]]},{"id":"NCBITaxon:1121377","l":"Deinococcus apachensis DSM 19763","na":3,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"],["desert-biome-envo-01000179.html","desert biome"],["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A309886","Deinococcus apachensis"],["NCBITaxon%3A1121377","Deinococcus apachensis DSM 19763"]]},{"id":"NCBITaxon:1121381","l":"Deinococcus marmoris DSM 12784","na":3,"nb":2,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"],["dry-valley-envo-00000128.html","dry valley"],["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A249408","Deinococcus marmoris"],["NCBITaxon%3A1121381","Deinococcus marmoris DSM 12784"]]},{"id":"NCBITaxon:1121391","l":"Desulfacinum infernum DSM 9756","na":3,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A35837","Desulfacinum infernum"],["NCBITaxon%3A1121391","Desulfacinum infernum DSM 9756"]]},{"id":"NCBITaxon:1121393","l":"Desulfatibacillum alkenivorans DSM 16219","na":3,"nb":2,"a":[["sewage-plant-envo-00003043.html","sewage plant"],["waste-water-envo-00002001.html","waste water"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A259354","Desulfatibacillum alkenivorans"],["NCBITaxon%3A1121393","Desulfatibacillum alkenivorans DSM 16219"]]},{"id":"NCBITaxon:1121403","l":"Desulfogranum japonicum DSM 18378","na":3,"nb":2,"a":[["brackish-water-body-envo-01001321.html","brackish water body"],["estuary-envo-00000045.html","estuary"],["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["NCBITaxon%3A231447","Desulfogranum japonicum"],["NCBITaxon%3A1121403","Desulfogranum japonicum DSM 18378"]]},{"id":"NCBITaxon:1121406","l":"Desulfocurvus vexinensis DSM 17965","na":3,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["groundwater-envo-01001004.html","groundwater"],["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A399548","Desulfocurvus vexinensis"],["NCBITaxon%3A1121406","Desulfocurvus vexinensis DSM 17965"]]},{"id":"NCBITaxon:1121416","l":"Desulfopila aestuarii DSM 18488","na":3,"nb":2,"a":[["brackish-water-body-envo-01001321.html","brackish water body"],["estuary-envo-00000045.html","estuary"],["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["NCBITaxon%3A231440","Desulfopila aestuarii"],["NCBITaxon%3A1121416","Desulfopila aestuarii DSM 18488"]]},{"id":"NCBITaxon:1121423","l":"Desulfofalx alkaliphila DSM 12257","na":3,"nb":2,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["fecal-environment-envo-01001029.html","fecal environment"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A105483","Desulfofalx alkaliphila"],["NCBITaxon%3A1121423","Desulfofalx alkaliphila DSM 12257"]]},{"id":"NCBITaxon:1121429","l":"Desulforamulus putei DSM 12395","na":3,"nb":2,"a":[["ocean-trench-envo-00000275.html","ocean trench"],["drainage-basin-envo-00000291.html","drainage basin"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A74701","Desulforamulus putei"],["NCBITaxon%3A1121429","Desulforamulus putei DSM 12395"]]},{"id":"NCBITaxon:1121430","l":"Desulfofundulus thermocisternus DSM 10259","na":3,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A42471","Desulfofundulus thermocisternus"],["NCBITaxon%3A1121430","Desulfofundulus thermocisternus DSM 10259"]]},{"id":"NCBITaxon:1121431","l":"Desulfallas thermosapovorans DSM 6562","na":3,"nb":2,"a":[["agricultural-waste-material-envo-01000371.html","agricultural waste material"],["compost-envo-00002170.html","compost"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A58137","Desulfallas thermosapovorans"],["NCBITaxon%3A1121431","Desulfallas thermosapovorans DSM 6562"]]},{"id":"NCBITaxon:1121436","l":"Oleidesulfovibrio alaskensis DSM 16109","na":3,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A58180","Oleidesulfovibrio alaskensis"],["NCBITaxon%3A1121436","Oleidesulfovibrio alaskensis DSM 16109"]]},{"id":"NCBITaxon:1121463","l":"Desulfobaculum senezii DSM 8436","na":3,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"],["pond-envo-00000033.html","pond"],["saline-evaporation-pond-envo-00000055.html","saline evaporation pond"]],"b":[["NCBITaxon%3A76007","Desulfobaculum senezii"],["NCBITaxon%3A1121463","Desulfobaculum senezii DSM 8436"]]},{"id":"NCBITaxon:1121472","l":"Desulfurispora thermophila DSM 16022","na":3,"nb":2,"a":[["bioreactor-envo-00002123.html","bioreactor"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A265470","Desulfurispora thermophila"],["NCBITaxon%3A1121472","Desulfurispora thermophila DSM 16022"]]},{"id":"NCBITaxon:1121481","l":"Dyadobacter alkalitolerans DSM 23607","na":3,"nb":2,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"],["rock-envo-00001995.html","rock"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A492736","Dyadobacter alkalitolerans"],["NCBITaxon%3A1121481","Dyadobacter alkalitolerans DSM 23607"]]},{"id":"NCBITaxon:1121875","l":"Eudoraea adriatica DSM 19308","na":3,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"],["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A446681","Eudoraea adriatica"],["NCBITaxon%3A1121875","Eudoraea adriatica DSM 19308"]]},{"id":"NCBITaxon:1121881","l":"Ferrithrix thermotolerans DSM 19514","na":3,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"],["iucn-national-park-envo-00000367.html","IUCN national park"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A209649","Ferrithrix thermotolerans"],["NCBITaxon%3A1121881","Ferrithrix thermotolerans DSM 19514"]]},{"id":"NCBITaxon:1121890","l":"Flavobacterium frigidarium DSM 17623","na":3,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"],["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A99286","Flavobacterium frigidarium"],["NCBITaxon%3A1121890","Flavobacterium frigidarium DSM 17623"]]},{"id":"NCBITaxon:1121919","l":"Geosporobacter subterraneus DSM 17957","na":3,"nb":2,"a":[["ocean-trench-envo-00000275.html","ocean trench"],["drainage-basin-envo-00000291.html","drainage basin"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A390806","Geosporobacter subterraneus"],["NCBITaxon%3A1121919","Geosporobacter subterraneus DSM 17957"]]},{"id":"NCBITaxon:1121920","l":"Geothrix fermentans DSM 14018","na":3,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["oil-envo-00002985.html","oil"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A44676","Geothrix fermentans"],["NCBITaxon%3A1121920","Geothrix fermentans DSM 14018"]]},{"id":"NCBITaxon:1121935","l":"Hahella ganghwensis DSM 17046","na":3,"nb":2,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"],["island-envo-00000098.html","island"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A286420","Hahella ganghwensis"],["NCBITaxon%3A1121935","Hahella ganghwensis DSM 17046"]]},{"id":"NCBITaxon:1121942","l":"Modicisalibacter ilicicola DSM 19980","na":3,"nb":2,"a":[["pond-envo-00000033.html","pond"],["saline-evaporation-pond-envo-00000055.html","saline evaporation pond"],["mediterranean-envo-01000207.html","mediterranean"]],"b":[["NCBITaxon%3A480814","Modicisalibacter ilicicola"],["NCBITaxon%3A1121942","Modicisalibacter ilicicola DSM 19980"]]},{"id":"NCBITaxon:1121950","l":"Hespellia stercorisuis DSM 15480","na":3,"nb":2,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["fecal-environment-envo-01001029.html","fecal environment"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A180311","Hespellia stercorisuis"],["NCBITaxon%3A1121950","Hespellia stercorisuis DSM 15480"]]},{"id":"NCBITaxon:1121952","l":"Humibacter albus DSM 18994","na":3,"nb":2,"a":[["compost-envo-00002170.html","compost"],["sewage-envo-00002018.html","sewage"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A427754","Humibacter albus"],["NCBITaxon%3A1121952","Humibacter albus DSM 18994"]]},{"id":"NCBITaxon:1121959","l":"Hymenobacter psychrotolerans DSM 18569","na":3,"nb":2,"a":[["drainage-basin-envo-00000291.html","drainage basin"],["permafrost-envo-00000134.html","permafrost"],["plateau-envo-00000182.html","plateau"]],"b":[["NCBITaxon%3A344998","Hymenobacter psychrotolerans"],["NCBITaxon%3A1121959","Hymenobacter psychrotolerans DSM 18569"]]},{"id":"NCBITaxon:1122124","l":"Pseudidiomarina sediminum DSM 21906","na":3,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"],["undersea-feature-envo-00000104.html","undersea feature"]],"b":[["NCBITaxon%3A431675","Pseudidiomarina sediminum"],["NCBITaxon%3A1122124","Pseudidiomarina sediminum DSM 21906"]]},{"id":"NCBITaxon:1122133","l":"Kaistia soli DSM 19436","na":3,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A446684","Kaistia soli"],["NCBITaxon%3A1122133","Kaistia soli DSM 19436"]]},{"id":"NCBITaxon:1122134","l":"Kangiella aquimarina DSM 16071","na":3,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"],["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["NCBITaxon%3A261965","Kangiella aquimarina"],["NCBITaxon%3A1122134","Kangiella aquimarina DSM 16071"]]},{"id":"NCBITaxon:1122143","l":"Lacticigenium naphthae DSM 19658","na":3,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A515351","Lacticigenium naphthae"],["NCBITaxon%3A1122143","Lacticigenium naphthae DSM 19658"]]},{"id":"NCBITaxon:1122147","l":"Schleiferilactobacillus harbinensis DSM 16991","na":3,"nb":2,"a":[["food-product-foodon-00001002.html","food product"],["immune-system-bto-0005810.html","immune system"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A304207","Schleiferilactobacillus harbinensis"],["NCBITaxon%3A1122147","Schleiferilactobacillus harbinensis DSM 16991"]]},{"id":"NCBITaxon:1122148","l":"Fructilactobacillus lindneri DSM 20690 = JCM 11027","na":3,"nb":2,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["food-product-foodon-00001002.html","food product"],["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A53444","Fructilactobacillus lindneri"],["NCBITaxon%3A1122148","Fructilactobacillus lindneri DSM 20690 = JCM 11027"]]},{"id":"NCBITaxon:1122158","l":"Leeia oryzae DSM 17879","na":3,"nb":2,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A356662","Leeia oryzae"],["NCBITaxon%3A1122158","Leeia oryzae DSM 17879"]]},{"id":"NCBITaxon:1122176","l":"Lewinella cohaerens DSM 23179","na":3,"nb":2,"a":[["beach-envo-00000091.html","beach"],["intertidal-zone-envo-00000316.html","intertidal zone"],["sea-sand-envo-00002118.html","sea sand"]],"b":[["NCBITaxon%3A70995","Lewinella cohaerens"],["NCBITaxon%3A1122176","Lewinella cohaerens DSM 23179"]]},{"id":"NCBITaxon:1122197","l":"Marinobacter daepoensis DSM 16072","na":3,"nb":2,"a":[["beach-envo-00000091.html","beach"],["intertidal-zone-envo-00000316.html","intertidal zone"],["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A262077","Marinobacter daepoensis"],["NCBITaxon%3A1122197","Marinobacter daepoensis DSM 16072"]]},{"id":"NCBITaxon:1122211","l":"Marinospirillum insulare DSM 21763","na":3,"nb":2,"a":[["food-product-foodon-00001002.html","food product"],["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"],["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A217169","Marinospirillum insulare"],["NCBITaxon%3A1122211","Marinospirillum insulare DSM 21763"]]},{"id":"NCBITaxon:1122233","l":"Methermicoccus shengliensis DSM 18856","na":3,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A660064","Methermicoccus shengliensis"],["NCBITaxon%3A1122233","Methermicoccus shengliensis DSM 18856"]]},{"id":"NCBITaxon:1122599","l":"Neptunomonas japonica DSM 18939","na":3,"nb":2,"a":[["intertidal-zone-envo-00000316.html","intertidal zone"],["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A417574","Neptunomonas japonica"],["NCBITaxon%3A1122599","Neptunomonas japonica DSM 18939"]]},{"id":"NCBITaxon:1122612","l":"Novosphingobium acidiphilum DSM 19966","na":3,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A505248","Novosphingobium acidiphilum"],["NCBITaxon%3A1122612","Novosphingobium acidiphilum DSM 19966"]]},{"id":"NCBITaxon:1122614","l":"Pseudooceanicola nanhaiensis DSM 18065","na":3,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"],["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A375761","Pseudooceanicola nanhaiensis"],["NCBITaxon%3A1122614","Pseudooceanicola nanhaiensis DSM 18065"]]},{"id":"NCBITaxon:1122922","l":"Paenibacillus massiliensis subsp. panacisoli DSM 21345","na":2,"nb":3,"a":[["undersea-feature-envo-00000104.html","undersea feature"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A225917","Paenibacillus massiliensis"],["NCBITaxon%3A363858","Paenibacillus massiliensis subsp. panacisoli"],["NCBITaxon%3A1122922","Paenibacillus massiliensis subsp. panacisoli DSM 21345"]]},{"id":"NCBITaxon:1122958","l":"Phenylobacterium composti DSM 19425","na":3,"nb":2,"a":[["compost-envo-00002170.html","compost"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A457173","Phenylobacterium composti"],["NCBITaxon%3A1122958","Phenylobacterium composti DSM 19425"]]},{"id":"NCBITaxon:1123012","l":"Pseudobutyrivibrio xylanivorans DSM 14809","na":3,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"],["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"]],"b":[["NCBITaxon%3A185007","Pseudobutyrivibrio xylanivorans"],["NCBITaxon%3A1123012","Pseudobutyrivibrio xylanivorans DSM 14809"]]},{"id":"NCBITaxon:1123024","l":"Pseudonocardia asaccharolytica DSM 44247 = NBRC 16224","na":3,"nb":2,"a":[["compost-envo-00002170.html","compost"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"]],"b":[["NCBITaxon%3A54010","Pseudonocardia asaccharolytica"],["NCBITaxon%3A1123024","Pseudonocardia asaccharolytica DSM 44247 = NBRC 16224"]]},{"id":"NCBITaxon:1123226","l":"Saccharibacillus kuerlensis DSM 22868","na":3,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"],["desert-biome-envo-01000179.html","desert biome"],["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A459527","Saccharibacillus kuerlensis"],["NCBITaxon%3A1123226","Saccharibacillus kuerlensis DSM 22868"]]},{"id":"NCBITaxon:1123239","l":"Salsuginibacillus kocurii DSM 18087","na":3,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"],["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A427078","Salsuginibacillus kocurii"],["NCBITaxon%3A1123239","Salsuginibacillus kocurii DSM 18087"]]},{"id":"NCBITaxon:1123258","l":"Smaragdicoccus niigatensis DSM 44881 = NBRC 103563","na":3,"nb":2,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"],["oil-envo-00002985.html","oil"]],"b":[["NCBITaxon%3A359359","Smaragdicoccus niigatensis"],["NCBITaxon%3A1123258","Smaragdicoccus niigatensis DSM 44881 = NBRC 103563"]]},{"id":"NCBITaxon:1123317","l":"Streptococcus sobrinus DSM 20742 = ATCC 33478","na":3,"nb":2,"a":[["biofilm-bto-0002690.html","biofilm"],["dental-plaque-uberon-0016482.html","dental plaque"],["tooth-bto-0000397.html","tooth"]],"b":[["NCBITaxon%3A1310","Streptococcus sobrinus"],["NCBITaxon%3A1123317","Streptococcus sobrinus DSM 20742 = ATCC 33478"]]},{"id":"NCBITaxon:1123350","l":"Tepidibacter thalassicus DSM 15285","na":3,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ocean-trench-envo-00000275.html","ocean trench"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A214905","Tepidibacter thalassicus"],["NCBITaxon%3A1123350","Tepidibacter thalassicus DSM 15285"]]},{"id":"NCBITaxon:1123501","l":"Wenxinia marina DSM 24838","na":3,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"],["chemically-enriched-sediment-envo-00002114.html","chemically enriched sediment"],["oil-envo-00002985.html","oil"]],"b":[["NCBITaxon%3A390641","Wenxinia marina"],["NCBITaxon%3A1123501","Wenxinia marina DSM 24838"]]},{"id":"NCBITaxon:1123503","l":"Woodsholea maritima DSM 17123","na":3,"nb":2,"a":[["brackish-water-body-envo-01001321.html","brackish water body"],["estuary-envo-00000045.html","estuary"],["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["NCBITaxon%3A240237","Woodsholea maritima"],["NCBITaxon%3A1123503","Woodsholea maritima DSM 17123"]]},{"id":"NCBITaxon:1123517","l":"Thiomicrospira pelophila DSM 1534","na":3,"nb":2,"a":[["brackish-water-body-envo-01001321.html","brackish water body"],["estuary-envo-00000045.html","estuary"],["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["NCBITaxon%3A934","Thiomicrospira pelophila"],["NCBITaxon%3A1123517","Thiomicrospira pelophila DSM 1534"]]},{"id":"NCBITaxon:1150864","l":"Micromonospora lupini str. Lupac 08","na":3,"nb":2,"a":[["carcinoma-cell-bto-0000176.html","carcinoma cell"],["colonic-cancer-cell-bto-0000586.html","colonic cancer cell"],["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A285679","Micromonospora lupini"],["NCBITaxon%3A1150864","Micromonospora lupini str. Lupac 08"]]},{"id":"NCBITaxon:115335","l":"Actinomadura rubrobrunea","na":2,"nb":3,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A115335","Actinomadura rubrobrunea"],["NCBITaxon%3A1220567","Actinomadura rubrobrunea NBRC 15275"],["NCBITaxon%3A58112","Actinomadura viridilutea"]]},{"id":"NCBITaxon:115781","l":"Desulfotignum balticum","na":3,"nb":2,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A115781","Desulfotignum balticum"],["NCBITaxon%3A1304886","Desulfotignum balticum DSM 7044"]]},{"id":"NCBITaxon:117506","l":"Comamonas denitrificans","na":3,"nb":2,"a":[["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["NCBITaxon%3A117506","Comamonas denitrificans"],["NCBITaxon%3A1713625","Marinococcus salis"]]},{"id":"NCBITaxon:117681","l":"Pseudomonas gingeri","na":3,"nb":2,"a":[["lake-envo-00000020.html","lake"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"]],"b":[["NCBITaxon%3A117681","Pseudomonas gingeri"],["NCBITaxon%3A707248","Pseudomonas gingeri NCPPB 3146 = LMG 5327"]]},{"id":"NCBITaxon:1177117","l":"Vreelandella stevensii S18214","na":3,"nb":2,"a":[["biofilm-bto-0002690.html","biofilm"],["brain-bto-0000142.html","brain"],["heart-bto-0000562.html","heart"]],"b":[["NCBITaxon%3A502821","Vreelandella stevensii"],["NCBITaxon%3A1177117","Vreelandella stevensii S18214"]]},{"id":"NCBITaxon:1212491","l":"Legionella fallonii LLAP-10","na":3,"nb":2,"a":[["flagellum-bto-0002292.html","flagellum"],["lung-bto-0000763.html","lung"],["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A96230","Legionella fallonii"],["NCBITaxon%3A1212491","Legionella fallonii LLAP-10"]]},{"id":"NCBITaxon:121428","l":"Sphingobium xenophagum","na":2,"nb":3,"a":[["sludge-envo-00002044.html","sludge"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A121428","Sphingobium xenophagum"],["NCBITaxon%3A1219037","Sphingobium xenophagum NBRC 107872"],["NCBITaxon%3A1192759","Sphingobium xenophagum QYY"]]},{"id":"NCBITaxon:1215095","l":"Pseudomonas chlororaphis subsp. aureofaciens NBRC 3521","na":2,"nb":3,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A587753","Pseudomonas chlororaphis"],["NCBITaxon%3A587851","Pseudomonas chlororaphis subsp. aureofaciens"],["NCBITaxon%3A1215095","Pseudomonas chlororaphis subsp. aureofaciens NBRC 3521"]]},{"id":"NCBITaxon:1220595","l":"Geobacillus kaustophilus NBRC 102445","na":3,"nb":2,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A1462","Geobacillus kaustophilus"],["NCBITaxon%3A1220595","Geobacillus kaustophilus NBRC 102445"]]},{"id":"NCBITaxon:1223541","l":"Gordonia hydrophobica NBRC 16057","na":3,"nb":2,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A40516","Gordonia hydrophobica"],["NCBITaxon%3A1223541","Gordonia hydrophobica NBRC 16057"]]},{"id":"NCBITaxon:123899","l":"Bordetella trematum","na":2,"nb":3,"a":[["bone-element-uberon-0001474.html","bone element"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["NCBITaxon%3A123899","Bordetella trematum"],["NCBITaxon%3A1392839","Bordetella trematum CCUG 13902"],["NCBITaxon%3A1496","Clostridioides difficile"]]},{"id":"NCBITaxon:1238993","l":"Mycoplasmoides pneumoniae M129-B7","na":3,"nb":2,"a":[["biofilm-bto-0002690.html","biofilm"],["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A2104","Mycoplasmoides pneumoniae"],["NCBITaxon%3A1238993","Mycoplasmoides pneumoniae M129-B7"]]},{"id":"NCBITaxon:1255632","l":"Ornithinibacillus bavariensis CIP 109287","na":3,"nb":2,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A545502","Ornithinibacillus bavariensis"],["NCBITaxon%3A1255632","Ornithinibacillus bavariensis CIP 109287"]]},{"id":"NCBITaxon:1257041","l":"Streptococcus mutans ATCC 25175","na":2,"nb":3,"a":[["biofilm-bto-0002690.html","biofilm"],["tooth-bto-0000397.html","tooth"]],"b":[["NCBITaxon%3A1309","Streptococcus mutans"],["NCBITaxon%3A1257041","Streptococcus mutans ATCC 25175"],["NCBITaxon%3A1123310","Streptococcus mutans DSM 20523"]]},{"id":"NCBITaxon:1266720","l":"Neomoorella stamsii","na":2,"nb":3,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A539813","Enterobacter mori"],["NCBITaxon%3A980518","Enterobacter mori LMG 25706"],["NCBITaxon%3A1266720","Neomoorella stamsii"]]},{"id":"NCBITaxon:1278307","l":"Psychromonas ossibalaenae ATCC BAA-1528","na":3,"nb":2,"a":[["intertidal-zone-envo-00000316.html","intertidal zone"],["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A444922","Psychromonas ossibalaenae"],["NCBITaxon%3A1278307","Psychromonas ossibalaenae ATCC BAA-1528"]]},{"id":"NCBITaxon:1280706","l":"Selenomonas ruminantium subsp. ruminantium ATCC 12561","na":2,"nb":3,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A971","Pseudoselenomonas ruminantium"],["NCBITaxon%3A114196","Selenomonas ruminantium subsp. ruminantium"],["NCBITaxon%3A1280706","Selenomonas ruminantium subsp. ruminantium ATCC 12561"]]},{"id":"NCBITaxon:1281","l":"Staphylococcus carnosus","na":2,"nb":3,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A1281","Staphylococcus carnosus"],["NCBITaxon%3A1158532","Staphylococcus carnosus M0504"],["NCBITaxon%3A396513","Staphylococcus carnosus subsp. carnosus TM300"]]},{"id":"NCBITaxon:1295","l":"Staphylococcus schleiferi","na":2,"nb":3,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["foot-bto-0000476.html","foot"]],"b":[["NCBITaxon%3A74706","Staphylococcus coagulans"],["NCBITaxon%3A1295","Staphylococcus schleiferi"],["NCBITaxon%3A74707","Staphylococcus schleiferi subsp. schleiferi"]]},{"id":"NCBITaxon:1322345","l":"Escherichia coli ATCC 25922","na":2,"nb":3,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1322345","Escherichia coli ATCC 25922"],["NCBITaxon%3A1236527","Escherichia coli JCM 5491"]]},{"id":"NCBITaxon:133552","l":"Methylocapsa acidiphila","na":3,"nb":2,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A133552","Methylocapsa acidiphila"],["NCBITaxon%3A395964","Methylocapsa acidiphila B2"]]},{"id":"NCBITaxon:133924","l":"Leisingera methylohalidivorans","na":3,"nb":2,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A133924","Leisingera methylohalidivorans"],["NCBITaxon%3A999552","Leisingera methylohalidivorans DSM 14336"]]},{"id":"NCBITaxon:136093","l":"Globicatella sulfidifaciens","na":2,"nb":3,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A62321","Globicatella sp."],["NCBITaxon%3A136093","Globicatella sulfidifaciens"],["NCBITaxon%3A1121925","Globicatella sulfidifaciens DSM 15739"]]},{"id":"NCBITaxon:13684","l":"Parastagonospora nodorum","na":2,"nb":3,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["desert-sand-envo-00005800.html","desert sand"]],"b":[["NCBITaxon%3A13684","Parastagonospora nodorum"],["NCBITaxon%3A1211001","Parastagonospora nodorum Sn4"],["NCBITaxon%3A1211002","Parastagonospora nodorum Sn79"]]},{"id":"NCBITaxon:137722","l":"Azospirillum sp. B510","na":3,"nb":2,"a":[["pond-water-envo-00002228.html","pond water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["NCBITaxon%3A34012","Azospirillum sp."],["NCBITaxon%3A137722","Azospirillum sp. B510"]]},{"id":"NCBITaxon:1383","l":"Lancefieldella rimae","na":3,"nb":2,"a":[["mouth-bto-0001090.html","mouth"],["saliva-bto-0001202.html","saliva"],["sgs-cell-bto-0001210.html","SGS cell"]],"b":[["NCBITaxon%3A1383","Lancefieldella rimae"],["NCBITaxon%3A553184","Lancefieldella rimae ATCC 49626"]]},{"id":"NCBITaxon:1408433","l":"Crocinitomix catalasitica ATCC 23190","na":3,"nb":2,"a":[["beach-envo-00000091.html","beach"],["intertidal-zone-envo-00000316.html","intertidal zone"],["sea-sand-envo-00002118.html","sea sand"]],"b":[["NCBITaxon%3A184607","Crocinitomix catalasitica"],["NCBITaxon%3A1408433","Crocinitomix catalasitica ATCC 23190"]]},{"id":"NCBITaxon:1408441","l":"Helicobacter bilis ATCC 51630","na":3,"nb":2,"a":[["epithelium-bto-0000416.html","epithelium"],["ht-29-cell-bto-0000182.html","HT-29 cell"],["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"]]},{"id":"NCBITaxon:1451","l":"Paenibacillus amylolyticus","na":3,"nb":2,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["NCBITaxon%3A1451","Paenibacillus amylolyticus"],["NCBITaxon%3A59846","Paenibacillus chibensis"]]},{"id":"NCBITaxon:145996","l":"Kibdelosporangium aridum subsp. largum","na":3,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"],["mineral-material-envo-01000256.html","mineral material"],["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A2030","Kibdelosporangium aridum"],["NCBITaxon%3A145996","Kibdelosporangium aridum subsp. largum"]]},{"id":"NCBITaxon:146919","l":"Salinibacter ruber","na":2,"nb":3,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A146919","Salinibacter ruber"],["NCBITaxon%3A309807","Salinibacter ruber DSM 13855"],["NCBITaxon%3A761659","Salinibacter ruber M8"]]},{"id":"NCBITaxon:148814","l":"Apilactobacillus kunkeei","na":2,"nb":3,"a":[["fruit-bto-0000486.html","fruit"],["honey-bto-0000605.html","honey"]],"b":[["NCBITaxon%3A148814","Apilactobacillus kunkeei"],["NCBITaxon%3A1423768","Apilactobacillus kunkeei DSM 12361 = ATCC 700308"],["NCBITaxon%3A1419324","Apilactobacillus kunkeei EFB6"]]},{"id":"NCBITaxon:1511749","l":"Geobacillus thermodenitrificans subsp. thermodenitrificans","na":2,"nb":3,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A33940","Geobacillus thermodenitrificans"],["NCBITaxon%3A1511749","Geobacillus thermodenitrificans subsp. thermodenitrificans"],["NCBITaxon%3A1413215","Geobacillus thermodenitrificans subsp. thermodenitrificans DSM 465"]]},{"id":"NCBITaxon:152500","l":"Burkholderia dolosa","na":2,"nb":3,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A152500","Burkholderia dolosa"],["NCBITaxon%3A350701","Burkholderia dolosa AU0158"],["NCBITaxon%3A1385930","Burkholderia dolosa PC543"]]},{"id":"NCBITaxon:153376","l":"Pseudonocardia zijingensis","na":3,"nb":2,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A682979","Microlunatus parietis"],["NCBITaxon%3A153376","Pseudonocardia zijingensis"]]},{"id":"NCBITaxon:153496","l":"Kozakia baliensis","na":3,"nb":2,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"],["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A153496","Kozakia baliensis"],["NCBITaxon%3A1307929","Kozakia baliensis NRIC 0488"]]},{"id":"NCBITaxon:1548018","l":"Helicobacter saguini","na":2,"nb":3,"a":[["epithelium-bto-0000416.html","epithelium"],["ht-29-cell-bto-0000182.html","HT-29 cell"]],"b":[["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"],["NCBITaxon%3A1548018","Helicobacter saguini"]]},{"id":"NCBITaxon:1548147","l":"Helicobacter sp. MIT 03-1614","na":2,"nb":3,"a":[["epithelium-bto-0000416.html","epithelium"],["ht-29-cell-bto-0000182.html","HT-29 cell"]],"b":[["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"],["NCBITaxon%3A1548147","Helicobacter sp. MIT 03-1614"]]},{"id":"NCBITaxon:1548148","l":"Helicobacter sp. MIT 03-1616","na":2,"nb":3,"a":[["epithelium-bto-0000416.html","epithelium"],["ht-29-cell-bto-0000182.html","HT-29 cell"]],"b":[["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"],["NCBITaxon%3A1548148","Helicobacter sp. MIT 03-1616"]]},{"id":"NCBITaxon:1548149","l":"Helicobacter sp. MIT 05-5293","na":2,"nb":3,"a":[["epithelium-bto-0000416.html","epithelium"],["ht-29-cell-bto-0000182.html","HT-29 cell"]],"b":[["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"],["NCBITaxon%3A1548149","Helicobacter sp. MIT 05-5293"]]},{"id":"NCBITaxon:1548150","l":"Helicobacter sp. MIT 05-5294","na":2,"nb":3,"a":[["epithelium-bto-0000416.html","epithelium"],["ht-29-cell-bto-0000182.html","HT-29 cell"]],"b":[["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"],["NCBITaxon%3A1548150","Helicobacter sp. MIT 05-5294"]]},{"id":"NCBITaxon:1548151","l":"Helicobacter sp. MIT 11-5569","na":2,"nb":3,"a":[["epithelium-bto-0000416.html","epithelium"],["ht-29-cell-bto-0000182.html","HT-29 cell"]],"b":[["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"],["NCBITaxon%3A1548151","Helicobacter sp. MIT 11-5569"]]},{"id":"NCBITaxon:1548153","l":"Campylobacter sp. MIT 97-5078","na":2,"nb":3,"a":[["epithelium-bto-0000416.html","epithelium"],["ht-29-cell-bto-0000182.html","HT-29 cell"]],"b":[["NCBITaxon%3A1548153","Campylobacter sp. MIT 97-5078"],["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"]]},{"id":"NCBITaxon:1553","l":"Clostridium tetanomorphum","na":2,"nb":3,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"]],"b":[["NCBITaxon%3A1494","Clostridium cochlearium"],["NCBITaxon%3A1553","Clostridium tetanomorphum"],["NCBITaxon%3A1230342","Clostridium tetanomorphum DSM 665"]]},{"id":"NCBITaxon:1605","l":"Ligilactobacillus animalis","na":2,"nb":3,"a":[["animal-litter-envo-00002191.html","animal litter"],["cropland-biome-envo-01000245.html","cropland biome"]],"b":[["NCBITaxon%3A1591","Lactobacillus sp."],["NCBITaxon%3A1605","Ligilactobacillus animalis"],["NCBITaxon%3A930942","Ligilactobacillus animalis KCTC 3501 = DSM 20602"]]},{"id":"NCBITaxon:161493","l":"Anaeromyxobacter dehalogenans","na":2,"nb":3,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A161493","Anaeromyxobacter dehalogenans"],["NCBITaxon%3A455488","Anaeromyxobacter dehalogenans 2CP-1"],["NCBITaxon%3A290397","Anaeromyxobacter dehalogenans 2CP-C"]]},{"id":"NCBITaxon:1629","l":"Weissella viridescens","na":3,"nb":2,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A1896315","Weissella sp."],["NCBITaxon%3A1629","Weissella viridescens"]]},{"id":"NCBITaxon:1658","l":"Actinomyces bovis","na":2,"nb":3,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A1658","Actinomyces bovis"],["NCBITaxon%3A29317","Actinomyces sp."],["NCBITaxon%3A1648","Erysipelothrix rhusiopathiae"]]},{"id":"NCBITaxon:1677920","l":"Helicobacter jaachi","na":2,"nb":3,"a":[["epithelium-bto-0000416.html","epithelium"],["ht-29-cell-bto-0000182.html","HT-29 cell"]],"b":[["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"],["NCBITaxon%3A1677920","Helicobacter jaachi"]]},{"id":"NCBITaxon:168275","l":"Psychromonas arctica","na":3,"nb":2,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A168275","Psychromonas arctica"],["NCBITaxon%3A1123036","Psychromonas arctica DSM 14288"]]},{"id":"NCBITaxon:168471","l":"Laribacter hongkongensis","na":2,"nb":3,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"]],"b":[["NCBITaxon%3A168471","Laribacter hongkongensis"],["NCBITaxon%3A1122157","Laribacter hongkongensis DSM 14985"],["NCBITaxon%3A557598","Laribacter hongkongensis HLHK9"]]},{"id":"NCBITaxon:1713","l":"Oerskovia turbata","na":2,"nb":3,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A162169","Oerskovia jenensis"],["NCBITaxon%3A1713","Oerskovia turbata"],["NCBITaxon%3A1322249","Oerskovia turbata NBRC 15015"]]},{"id":"NCBITaxon:176299","l":"Agrobacterium fabrum str. C58","na":2,"nb":3,"a":[["human-construction-envo-00000070.html","human construction"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["NCBITaxon%3A1176649","Agrobacterium fabrum"],["NCBITaxon%3A176299","Agrobacterium fabrum str. C58"],["NCBITaxon%3A362","Agrobacterium radiobacter"]]},{"id":"NCBITaxon:1785","l":"Mycobacterium sp.","na":2,"nb":3,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"],["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["NCBITaxon%3A722731","Mycobacterium shigaense"],["NCBITaxon%3A1785","Mycobacterium sp."],["NCBITaxon%3A1792835","Mycolicibacter icosiumassiliensis"]]},{"id":"NCBITaxon:1796613","l":"Bacteroides caecimuris","na":3,"nb":2,"a":[["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["secretion-bto-0002979.html","secretion"]],"b":[["NCBITaxon%3A1796613","Bacteroides caecimuris"],["NCBITaxon%3A2516959","Bacteroides caecimuris NM63_1-25"]]},{"id":"NCBITaxon:180282","l":"Delftia tsuruhatensis","na":2,"nb":3,"a":[["surface-water-envo-00002042.html","surface water"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["NCBITaxon%3A180282","Delftia tsuruhatensis"],["NCBITaxon%3A1280939","Delftia tsuruhatensis ARB"],["NCBITaxon%3A1220577","Delftia tsuruhatensis NBRC 16741"]]},{"id":"NCBITaxon:180295","l":"Atopostipes suicloacalis","na":3,"nb":2,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["skin-environment-envo-2100003.html","skin environment"],["cropland-biome-envo-01000245.html","cropland biome"]],"b":[["NCBITaxon%3A180295","Atopostipes suicloacalis"],["NCBITaxon%3A1121025","Atopostipes suicloacalis DSM 15692"]]},{"id":"NCBITaxon:185008","l":"Butyrivibrio hungatei","na":2,"nb":3,"a":[["animal-habitation-envo-00005803.html","animal habitation"],["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["NCBITaxon%3A185008","Butyrivibrio hungatei"],["NCBITaxon%3A1121132","Butyrivibrio hungatei DSM 14810"],["NCBITaxon%3A877422","Butyrivibrio hungatei NK4A153"]]},{"id":"NCBITaxon:185294","l":"Segatella paludivivens","na":3,"nb":2,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["research-facility-envo-00000469.html","research facility"]],"b":[["NCBITaxon%3A185294","Segatella paludivivens"],["NCBITaxon%3A1122990","Segatella paludivivens DSM 17968 = JCM 13650"]]},{"id":"NCBITaxon:188908","l":"Oleispira antarctica","na":3,"nb":2,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A188908","Oleispira antarctica"],["NCBITaxon%3A698738","Oleispira antarctica RB-8"]]},{"id":"NCBITaxon:190304","l":"Fusobacterium nucleatum subsp. nucleatum ATCC 25586","na":2,"nb":3,"a":[["fibroblast-bto-0000452.html","fibroblast"],["gingival-epithelium-bto-0004998.html","gingival epithelium"]],"b":[["NCBITaxon%3A851","Fusobacterium nucleatum"],["NCBITaxon%3A76856","Fusobacterium nucleatum subsp. nucleatum"],["NCBITaxon%3A190304","Fusobacterium nucleatum subsp. nucleatum ATCC 25586"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":3,"nb":2,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A1928","Streptomyces rochei"],["NCBITaxon%3A885435","Streptomyces rochei subsp. volubilis"]]},{"id":"NCBITaxon:197222","l":"Paraglaciecola mesophila","na":3,"nb":2,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A197222","Paraglaciecola mesophila"],["NCBITaxon%3A1128912","Paraglaciecola mesophila KMM 241"]]},{"id":"NCBITaxon:2026","l":"Thermoactinomyces vulgaris","na":2,"nb":3,"a":[["air-conditioning-unit-envo-00002874.html","air conditioning unit"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"]],"b":[["NCBITaxon%3A58112","Actinomadura viridilutea"],["NCBITaxon%3A37482","Laceyella sacchari"],["NCBITaxon%3A2026","Thermoactinomyces vulgaris"]]},{"id":"NCBITaxon:202747","l":"Sulfurimonas autotrophica","na":3,"nb":2,"a":[["black-smoker-envo-00000218.html","black smoker"],["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["volcanic-rock-envo-00002015.html","volcanic rock"]],"b":[["NCBITaxon%3A202747","Sulfurimonas autotrophica"],["NCBITaxon%3A563040","Sulfurimonas autotrophica DSM 16294"]]},{"id":"NCBITaxon:2108","l":"Mycoplasma sp.","na":3,"nb":2,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["post-mortem-habitatmech-bacdive-4e5b25adcb.html","Post-mortem"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A2499220","Mycoplasma enhydrae"],["NCBITaxon%3A2108","Mycoplasma sp."]]},{"id":"NCBITaxon:213810","l":"Ruminococcus champanellensis 18P13 = JCM 17042","na":3,"nb":2,"a":[["environmental-feature-envo-00002297.html","environmental feature"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["pig-manure-envo-00003860.html","pig manure"]],"b":[["NCBITaxon%3A1161942","Ruminococcus champanellensis"],["NCBITaxon%3A213810","Ruminococcus champanellensis 18P13 = JCM 17042"]]},{"id":"NCBITaxon:214856","l":"Alistipes finegoldii","na":2,"nb":3,"a":[["environmental-feature-envo-00002297.html","environmental feature"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A214856","Alistipes finegoldii"],["NCBITaxon%3A1263035","Alistipes finegoldii CAG:68"],["NCBITaxon%3A679935","Alistipes finegoldii DSM 17242"]]},{"id":"NCBITaxon:216","l":"Helicobacter muridarum","na":2,"nb":3,"a":[["epithelium-bto-0000416.html","epithelium"],["ht-29-cell-bto-0000182.html","HT-29 cell"]],"b":[["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"],["NCBITaxon%3A216","Helicobacter muridarum"]]},{"id":"NCBITaxon:224999","l":"Tepidanaerobacter syntrophicus","na":3,"nb":2,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A224999","Tepidanaerobacter syntrophicus"],["NCBITaxon%3A1123348","Tepidanaerobacter syntrophicus DSM 15584"]]},{"id":"NCBITaxon:228405","l":"Hyphomonas neptunium ATCC 15444","na":3,"nb":2,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"],["pond-water-envo-00002228.html","pond water"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["NCBITaxon%3A81032","Hyphomonas neptunium"],["NCBITaxon%3A228405","Hyphomonas neptunium ATCC 15444"]]},{"id":"NCBITaxon:232991","l":"Dulcicalothrix desertica PCC 7102","na":3,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"],["desert-area-envo-00000097.html","desert area"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A32056","Dulcicalothrix desertica"],["NCBITaxon%3A232991","Dulcicalothrix desertica PCC 7102"]]},{"id":"NCBITaxon:2353","l":"Flexispira","na":2,"nb":3,"a":[["cecum-mucosa-bto-0000213.html","cecum mucosa"],["mucosa-bto-0000886.html","mucosa"]],"b":[["NCBITaxon%3A2354","Flexispira rappini"],["NCBITaxon%3A98428","Flexispira sp. CDC-H69"],["NCBITaxon%3A1776876","uncultured Flexispira sp."]]},{"id":"NCBITaxon:240015","l":"Acidobacterium capsulatum ATCC 51196","na":3,"nb":2,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A33075","Acidobacterium capsulatum"],["NCBITaxon%3A240015","Acidobacterium capsulatum ATCC 51196"]]},{"id":"NCBITaxon:243161","l":"Chlamydia muridarum str. Nigg","na":3,"nb":2,"a":[["cervical-adenocarcinoma-cell-bto-0003165.html","cervical adenocarcinoma cell"],["fibroblast-bto-0000452.html","fibroblast"],["hela-229-cell-bto-0005030.html","HeLa-229 cell"]],"b":[["NCBITaxon%3A243161","Chlamydia muridarum str. Nigg"],["NCBITaxon%3A1434773","Chlamydia muridarum str. Nigg CM972"]]},{"id":"NCBITaxon:245188","l":"Yoonia vestfoldensis","na":2,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"],["sandstone-envo-00002055.html","sandstone"]],"b":[["NCBITaxon%3A245188","Yoonia vestfoldensis"],["NCBITaxon%3A1122181","Yoonia vestfoldensis DSM 16212"],["NCBITaxon%3A314232","Yoonia vestfoldensis SKA53"]]},{"id":"NCBITaxon:278137","l":"Mycolicibacterium gilvum Spyr1","na":3,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"],["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A1804","Mycolicibacterium gilvum"],["NCBITaxon%3A278137","Mycolicibacterium gilvum Spyr1"]]},{"id":"NCBITaxon:28042","l":"Saccharopolyspora rectivirgula","na":2,"nb":3,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["desert-sand-envo-00005800.html","desert sand"]],"b":[["NCBITaxon%3A28042","Saccharopolyspora rectivirgula"],["NCBITaxon%3A1283279","Saccharopolyspora rectivirgula DSM 43747"],["NCBITaxon%3A37926","Thermocrispum municipale"]]},{"id":"NCBITaxon:28220","l":"Allobrachymonas denitrificans","na":3,"nb":2,"a":[["factory-envo-01000536.html","factory"],["archeological-site-envo-00000564.html","archeological site"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["NCBITaxon%3A28220","Allobrachymonas denitrificans"],["NCBITaxon%3A1121117","Allobrachymonas denitrificans DSM 15123"]]},{"id":"NCBITaxon:28264","l":"Arcanobacterium haemolyticum","na":2,"nb":3,"a":[["foot-bto-0000476.html","foot"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"]],"b":[["NCBITaxon%3A28264","Arcanobacterium haemolyticum"],["NCBITaxon%3A644284","Arcanobacterium haemolyticum DSM 20595"],["NCBITaxon%3A1328","Streptococcus anginosus"]]},{"id":"NCBITaxon:28454","l":"Sphingobacterium multivorum","na":3,"nb":2,"a":[["mud-envo-01000001.html","mud"],["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A28454","Sphingobacterium multivorum"],["NCBITaxon%3A1123264","Sphingobacterium multivorum DSM 11691"]]},{"id":"NCBITaxon:286730","l":"Alkaliflexus imshenetskii","na":3,"nb":2,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["NCBITaxon%3A286730","Alkaliflexus imshenetskii"],["NCBITaxon%3A927658","Alkaliflexus imshenetskii DSM 15055"]]},{"id":"NCBITaxon:28898","l":"Campylobacter helveticus","na":2,"nb":3,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["NCBITaxon%3A28898","Campylobacter helveticus"],["NCBITaxon%3A1031739","Campylobacter helveticus CCUG 30566"],["NCBITaxon%3A28080","Campylobacter upsaliensis"]]},{"id":"NCBITaxon:290398","l":"Chromohalobacter israelensis DSM 3043","na":3,"nb":2,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["saline-evaporation-pond-envo-00000055.html","saline evaporation pond"],["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A141390","Chromohalobacter israelensis"],["NCBITaxon%3A290398","Chromohalobacter israelensis DSM 3043"]]},{"id":"NCBITaxon:29405","l":"Microlunatus phosphovorus","na":3,"nb":2,"a":[["water-scum-envo-00005794.html","water scum"],["orchard-envo-00000115.html","orchard"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["NCBITaxon%3A29405","Microlunatus phosphovorus"],["NCBITaxon%3A1032480","Microlunatus phosphovorus NM-1"]]},{"id":"NCBITaxon:312153","l":"Polynucleobacter asymbioticus QLW-P1DMWA-1","na":3,"nb":2,"a":[["large-river-biome-envo-00000887.html","large river biome"],["joint-bto-0001686.html","joint"],["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A576611","Polynucleobacter asymbioticus"],["NCBITaxon%3A312153","Polynucleobacter asymbioticus QLW-P1DMWA-1"]]},{"id":"NCBITaxon:313595","l":"Psychroflexus torquis ATCC 700755","na":3,"nb":2,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["coral-reef-envo-00000150.html","coral reef"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["NCBITaxon%3A57029","Psychroflexus torquis"],["NCBITaxon%3A313595","Psychroflexus torquis ATCC 700755"]]},{"id":"NCBITaxon:313606","l":"Microscilla marina ATCC 23134","na":3,"nb":2,"a":[["coral-reef-envo-00000150.html","coral reef"],["liquid-water-envo-00002006.html","liquid water"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["NCBITaxon%3A1027","Microscilla marina"],["NCBITaxon%3A313606","Microscilla marina ATCC 23134"]]},{"id":"NCBITaxon:317655","l":"Sphingopyxis alaskensis RB2256","na":3,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["environmental-material-envo-00010483.html","environmental material"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["NCBITaxon%3A117207","Sphingopyxis alaskensis"],["NCBITaxon%3A317655","Sphingopyxis alaskensis RB2256"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans PD1222","na":2,"nb":3,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["NCBITaxon%3A266","Paracoccus denitrificans"],["NCBITaxon%3A1302247","Paracoccus denitrificans JCM 21484"],["NCBITaxon%3A318586","Paracoccus denitrificans PD1222"]]},{"id":"NCBITaxon:320497","l":"Neoasaia chiangmaiensis","na":3,"nb":2,"a":[["research-facility-envo-00000469.html","research facility"],["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A320497","Neoasaia chiangmaiensis"],["NCBITaxon%3A1307930","Neoasaia chiangmaiensis NBRC 101099"]]},{"id":"NCBITaxon:326298","l":"Sulfurimonas denitrificans DSM 1251","na":3,"nb":2,"a":[["estuary-envo-00000045.html","estuary"],["underground-water-envo-00005792.html","underground water"],["estuarine-mud-envo-00002160.html","estuarine mud"]],"b":[["NCBITaxon%3A39766","Sulfurimonas denitrificans"],["NCBITaxon%3A326298","Sulfurimonas denitrificans DSM 1251"]]},{"id":"NCBITaxon:326442","l":"Pseudoalteromonas translucida TAC125","na":3,"nb":2,"a":[["bay-envo-00000032.html","bay"],["coastal-water-body-envo-02000049.html","coastal water body"],["saline-water-envo-00002010.html","saline water"]],"b":[["NCBITaxon%3A166935","Pseudoalteromonas translucida"],["NCBITaxon%3A326442","Pseudoalteromonas translucida TAC125"]]},{"id":"NCBITaxon:33028","l":"Staphylococcus saccharolyticus","na":3,"nb":2,"a":[["bone-element-uberon-0001474.html","bone element"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["NCBITaxon%3A45972","Staphylococcus pasteuri"],["NCBITaxon%3A33028","Staphylococcus saccharolyticus"]]},{"id":"NCBITaxon:335543","l":"Syntrophobacter fumaroxidans MPOB","na":3,"nb":2,"a":[["anaerobic-sludge-envo-00002129.html","anaerobic sludge"],["submerged-bed-envo-00000501.html","submerged bed"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A119484","Syntrophobacter fumaroxidans"],["NCBITaxon%3A335543","Syntrophobacter fumaroxidans MPOB"]]},{"id":"NCBITaxon:33889","l":"Brevibacterium casei","na":2,"nb":3,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"]],"b":[["NCBITaxon%3A33889","Brevibacterium casei"],["NCBITaxon%3A1255625","Brevibacterium casei CIP 102111"],["NCBITaxon%3A1229781","Brevibacterium casei S18"]]},{"id":"NCBITaxon:340102","l":"Pyrobaculum arsenaticum DSM 13514","na":3,"nb":2,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"],["solfatara-envo-00000217.html","solfatara"]],"b":[["NCBITaxon%3A121277","Pyrobaculum arsenaticum"],["NCBITaxon%3A340102","Pyrobaculum arsenaticum DSM 13514"]]},{"id":"NCBITaxon:344747","l":"Gimesia maris DSM 8797","na":3,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["shoreline-envo-00000486.html","shoreline"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A122","Gimesia maris"],["NCBITaxon%3A344747","Gimesia maris DSM 8797"]]},{"id":"NCBITaxon:37329","l":"Nocardia farcinica","na":2,"nb":3,"a":[["hospital-envo-00002173.html","hospital"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["NCBITaxon%3A37329","Nocardia farcinica"],["NCBITaxon%3A247156","Nocardia farcinica IFM 10152"],["NCBITaxon%3A1210076","Nocardia farcinica NBRC 15532"]]},{"id":"NCBITaxon:391624","l":"Sulfitobacter indolifex HEL-45","na":3,"nb":2,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["oligotrophic-water-envo-00002223.html","oligotrophic water"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A225422","Sulfitobacter indolifex"],["NCBITaxon%3A391624","Sulfitobacter indolifex HEL-45"]]},{"id":"NCBITaxon:39488","l":"Anaerobutyricum hallii","na":2,"nb":3,"a":[["emulsion-envo-00010506.html","emulsion"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A39488","Anaerobutyricum hallii"],["NCBITaxon%3A1263078","Anaerobutyricum hallii CAG:12"],["NCBITaxon%3A411469","Anaerobutyricum hallii DSM 3353"]]},{"id":"NCBITaxon:395965","l":"Methylocella silvestris BL2","na":3,"nb":2,"a":[["cambisol-envo-00002235.html","cambisol"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A199596","Methylocella silvestris"],["NCBITaxon%3A395965","Methylocella silvestris BL2"]]},{"id":"NCBITaxon:399550","l":"Staphylothermus marinus F1","na":3,"nb":2,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A2280","Staphylothermus marinus"],["NCBITaxon%3A399550","Staphylothermus marinus F1"]]},{"id":"NCBITaxon:401053","l":"Terriglobus saanensis SP1PR4","na":3,"nb":2,"a":[["bulk-soil-envo-00005802.html","bulk soil"],["forested-area-envo-00000111.html","forested area"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A870903","Terriglobus saanensis"],["NCBITaxon%3A401053","Terriglobus saanensis SP1PR4"]]},{"id":"NCBITaxon:402881","l":"Parvibaculum lavamentivorans DS-1","na":3,"nb":2,"a":[["sewage-plant-envo-00003043.html","sewage plant"],["cold-environment-envo-01000309.html","cold environment"],["environmental-material-envo-00010483.html","environmental material"]],"b":[["NCBITaxon%3A256618","Parvibaculum lavamentivorans"],["NCBITaxon%3A402881","Parvibaculum lavamentivorans DS-1"]]},{"id":"NCBITaxon:411901","l":"Bacteroides caccae ATCC 43185","na":3,"nb":2,"a":[["bay-envo-00000032.html","bay"],["animal-habitation-envo-00005803.html","animal habitation"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["NCBITaxon%3A47678","Bacteroides caccae"],["NCBITaxon%3A411901","Bacteroides caccae ATCC 43185"]]},{"id":"NCBITaxon:418699","l":"Azoarcus olearius","na":3,"nb":2,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A418699","Azoarcus olearius"],["NCBITaxon%3A29544","Azoarcus sp."]]},{"id":"NCBITaxon:441209","l":"Roseinatronobacter bogoriensis subsp. barguzinensis","na":3,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"],["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A119542","Roseinatronobacter bogoriensis"],["NCBITaxon%3A441209","Roseinatronobacter bogoriensis subsp. barguzinensis"]]},{"id":"NCBITaxon:445973","l":"Intestinibacter bartlettii DSM 16795","na":2,"nb":3,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A261299","Intestinibacter bartlettii"],["NCBITaxon%3A445973","Intestinibacter bartlettii DSM 16795"],["NCBITaxon%3A36841","Terrisporobacter glycolicus"]]},{"id":"NCBITaxon:446465","l":"Brachybacterium faecium DSM 4810","na":3,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"],["poultry-deep-litter-envo-00003908.html","poultry deep litter"],["village-biome-envo-01000246.html","village biome"]],"b":[["NCBITaxon%3A43669","Brachybacterium faecium"],["NCBITaxon%3A446465","Brachybacterium faecium DSM 4810"]]},{"id":"NCBITaxon:469371","l":"Thermobispora bispora DSM 43833","na":3,"nb":2,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A2006","Thermobispora bispora"],["NCBITaxon%3A469371","Thermobispora bispora DSM 43833"]]},{"id":"NCBITaxon:479431","l":"Nakamurella multipartita DSM 44233","na":3,"nb":2,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["NCBITaxon%3A53461","Nakamurella multipartita"],["NCBITaxon%3A479431","Nakamurella multipartita DSM 44233"]]},{"id":"NCBITaxon:482957","l":"Burkholderia lata","na":2,"nb":3,"a":[["human-construction-envo-00000070.html","human construction"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A2015348","Burkholderia aenigmatica"],["NCBITaxon%3A292","Burkholderia cepacia"],["NCBITaxon%3A482957","Burkholderia lata"]]},{"id":"NCBITaxon:502","l":"Kingella denitrificans","na":2,"nb":3,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["NCBITaxon%3A502","Kingella denitrificans"],["NCBITaxon%3A888741","Kingella denitrificans ATCC 33394"],["NCBITaxon%3A3100349","Simonsiella sp."]]},{"id":"NCBITaxon:509191","l":"Acetivibrio cellulolyticus CD2","na":3,"nb":2,"a":[["village-biome-envo-01000246.html","village biome"],["forested-area-envo-00000111.html","forested area"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A35830","Acetivibrio cellulolyticus"],["NCBITaxon%3A509191","Acetivibrio cellulolyticus CD2"]]},{"id":"NCBITaxon:50960","l":"Helicobacter trogontum","na":2,"nb":3,"a":[["ht-29-cell-bto-0000182.html","HT-29 cell"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"],["NCBITaxon%3A50960","Helicobacter trogontum"]]},{"id":"NCBITaxon:523846","l":"Methanothermus fervidus DSM 2088","na":3,"nb":2,"a":[["mountain-envo-00000081.html","mountain"],["seamount-envo-00000264.html","seamount"],["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A2180","Methanothermus fervidus"],["NCBITaxon%3A523846","Methanothermus fervidus DSM 2088"]]},{"id":"NCBITaxon:530564","l":"Pirellula staleyi DSM 6068","na":3,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["agricultural-soil-envo-00002259.html","agricultural soil"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A125","Pirellula staleyi"],["NCBITaxon%3A530564","Pirellula staleyi DSM 6068"]]},{"id":"NCBITaxon:53408","l":"Pseudomonas citronellolis","na":3,"nb":2,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["cuticle-bto-0001600.html","cuticle"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"]],"b":[["NCBITaxon%3A53408","Pseudomonas citronellolis"],["NCBITaxon%3A1215097","Pseudomonas citronellolis NBRC 103043"]]},{"id":"NCBITaxon:573064","l":"Methanocaldococcus fervens AG86","na":3,"nb":2,"a":[["inlet-envo-00000475.html","inlet"],["shoreline-envo-00000486.html","shoreline"],["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A83171","Methanocaldococcus fervens"],["NCBITaxon%3A573064","Methanocaldococcus fervens AG86"]]},{"id":"NCBITaxon:574521","l":"Escherichia coli O127:H6 str. E2348/69","na":2,"nb":3,"a":[["enterocyte-bto-0000398.html","enterocyte"],["gut-epithelium-bto-0000956.html","gut epithelium"]],"b":[["NCBITaxon%3A574521","Escherichia coli O127:H6 str. E2348/69"],["NCBITaxon%3A1336205","Escherichia coli O127:H6 str. E2348/69 substr. CVDNalr"],["NCBITaxon%3A1336206","Escherichia coli O127:H6 str. E2348/69 substr. UMD753"]]},{"id":"NCBITaxon:591019","l":"Staphylothermus hellenicus DSM 12710","na":3,"nb":2,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A84599","Staphylothermus hellenicus"],["NCBITaxon%3A591019","Staphylothermus hellenicus DSM 12710"]]},{"id":"NCBITaxon:59405","l":"Thauera aromatica","na":2,"nb":3,"a":[["sludge-envo-00002044.html","sludge"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A59405","Thauera aromatica"],["NCBITaxon%3A859322","Thauera aromatica 3CB2"],["NCBITaxon%3A44139","Thauera aromatica K172"]]},{"id":"NCBITaxon:632348","l":"Caldicellulosiruptor kronotskyensis 2002","na":3,"nb":2,"a":[["geyser-envo-00000050.html","geyser"],["peninsula-envo-00000305.html","peninsula"],["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A413889","Caldicellulosiruptor kronotskyensis"],["NCBITaxon%3A632348","Caldicellulosiruptor kronotskyensis 2002"]]},{"id":"NCBITaxon:641112","l":"Ruminococcus flavefaciens FD-1","na":3,"nb":2,"a":[["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["fiber-bto-0000450.html","fiber"]],"b":[["NCBITaxon%3A1265","Ruminococcus flavefaciens"],["NCBITaxon%3A641112","Ruminococcus flavefaciens FD-1"]]},{"id":"NCBITaxon:643562","l":"Pseudodesulfovibrio aespoeensis Aspo-2","na":3,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["ocean-trench-envo-00000275.html","ocean trench"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A182210","Pseudodesulfovibrio aespoeensis"],["NCBITaxon%3A643562","Pseudodesulfovibrio aespoeensis Aspo-2"]]},{"id":"NCBITaxon:643867","l":"Marivirga tractuosa DSM 4126","na":3,"nb":2,"a":[["beach-envo-00000091.html","beach"],["coral-reef-envo-00000150.html","coral reef"],["sea-sand-envo-00002118.html","sea sand"]],"b":[["NCBITaxon%3A1006","Marivirga tractuosa"],["NCBITaxon%3A643867","Marivirga tractuosa DSM 4126"]]},{"id":"NCBITaxon:65553","l":"Sulfurospirillum deleyianum","na":2,"nb":3,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A65553","Sulfurospirillum deleyianum"],["NCBITaxon%3A525898","Sulfurospirillum deleyianum DSM 6946"],["NCBITaxon%3A2053622","Sulfurospirillum sp."]]},{"id":"NCBITaxon:666681","l":"Methylotenera versatilis 301","na":3,"nb":2,"a":[["large-river-biome-envo-00000887.html","large river biome"],["environmental-material-envo-00010483.html","environmental material"],["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A1055487","Methylotenera versatilis"],["NCBITaxon%3A666681","Methylotenera versatilis 301"]]},{"id":"NCBITaxon:697282","l":"Methylobacter tundripaludum SV96","na":3,"nb":2,"a":[["cold-environment-envo-01000309.html","cold environment"],["environmental-material-envo-00010483.html","environmental material"],["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A173365","Methylobacter tundripaludum"],["NCBITaxon%3A697282","Methylobacter tundripaludum SV96"]]},{"id":"NCBITaxon:717","l":"Actinobacillus capsulatus","na":3,"nb":2,"a":[["bone-element-uberon-0001474.html","bone element"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A717","Actinobacillus capsulatus"],["NCBITaxon%3A1120931","Actinobacillus capsulatus DSM 19761"]]},{"id":"NCBITaxon:71999","l":"Kocuria palustris","na":2,"nb":3,"a":[["duodenal-mucosa-bto-0000367.html","duodenal mucosa"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"]],"b":[["NCBITaxon%3A71999","Kocuria palustris"],["NCBITaxon%3A1236550","Kocuria palustris PEL"],["NCBITaxon%3A1272","Kocuria varians"]]},{"id":"NCBITaxon:759851","l":"Sporosarcina newyorkensis","na":2,"nb":3,"a":[["hospital-envo-00002173.html","hospital"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A759851","Sporosarcina newyorkensis"],["NCBITaxon%3A1027292","Sporosarcina newyorkensis 2681"],["NCBITaxon%3A49982","Sporosarcina sp."]]},{"id":"NCBITaxon:765177","l":"Desulfurococcus mucosus DSM 2162","na":3,"nb":2,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"],["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A2275","Desulfurococcus mucosus"],["NCBITaxon%3A765177","Desulfurococcus mucosus DSM 2162"]]},{"id":"NCBITaxon:83552","l":"Parachlamydia acanthamoebae","na":2,"nb":3,"a":[["elementary-body-bto-0000377.html","elementary body"],["hep-2-cell-bto-0000976.html","HEp-2 cell"]],"b":[["NCBITaxon%3A83552","Parachlamydia acanthamoebae"],["NCBITaxon%3A159254","Parachlamydia acanthamoebae str. Hall's coccus"],["NCBITaxon%3A765952","Parachlamydia acanthamoebae UV-7"]]},{"id":"NCBITaxon:83555","l":"Chlamydia abortus","na":2,"nb":3,"a":[["elementary-body-bto-0000377.html","elementary body"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A83555","Chlamydia abortus"],["NCBITaxon%3A1003238","Chlamydia abortus LLG"],["NCBITaxon%3A218497","Chlamydia abortus S26/3"]]},{"id":"NCBITaxon:85963","l":"Helicobacter pylori J99","na":2,"nb":3,"a":[["anaerobic-sludge-blanket-reactor-envo-00002213.html","anaerobic sludge blanket reactor"],["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A141390","Chromohalobacter israelensis"],["NCBITaxon%3A210","Helicobacter pylori"],["NCBITaxon%3A85963","Helicobacter pylori J99"]]},{"id":"NCBITaxon:889378","l":"Spirochaeta africana DSM 8902","na":3,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["alkaline-water-envo-01000357.html","alkaline water"],["brine-envo-00003044.html","brine"]],"b":[["NCBITaxon%3A46355","Spirochaeta africana"],["NCBITaxon%3A889378","Spirochaeta africana DSM 8902"]]},{"id":"NCBITaxon:897","l":"Desulfococcus multivorans","na":3,"nb":2,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A897","Desulfococcus multivorans"],["NCBITaxon%3A1121405","Desulfococcus multivorans DSM 2059"]]},{"id":"NCBITaxon:91360","l":"Desulforhopalus singaporensis","na":3,"nb":2,"a":[["marsh-envo-00000035.html","marsh"],["road-envo-00000064.html","road"],["garden-envo-00000011.html","garden"]],"b":[["NCBITaxon%3A91360","Desulforhopalus singaporensis"],["NCBITaxon%3A1121418","Desulforhopalus singaporensis DSM 12130"]]},{"id":"NCBITaxon:926569","l":"Anaerolinea thermophila UNI-1","na":3,"nb":2,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["shoreline-envo-00000486.html","shoreline"]],"b":[["NCBITaxon%3A167964","Anaerolinea thermophila"],["NCBITaxon%3A926569","Anaerolinea thermophila UNI-1"]]},{"id":"NCBITaxon:1006155","l":"Paenilisteria weihenstephanensis","na":2,"nb":2,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1006155","Paenilisteria weihenstephanensis"],["NCBITaxon%3A1265845","Paenilisteria weihenstephanensis FSL R9-0317"]]},{"id":"NCBITaxon:1007105","l":"Pusillimonas sp. T7-7","na":2,"nb":2,"a":[["marine-sediment-envo-03000033.html","marine sediment"],["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A1979962","Pusillimonas sp."],["NCBITaxon%3A1007105","Pusillimonas sp. T7-7"]]},{"id":"NCBITaxon:100901","l":"Wolbachia endosymbiont of Onchocerca ochengi","na":2,"nb":2,"a":[["gonad-bto-0000534.html","gonad"],["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A100901","Wolbachia endosymbiont of Onchocerca ochengi"],["NCBITaxon%3A1141110","Wolbachia endosymbiont of Onchocerca ochengi str. Adamawa_Cameroon"]]},{"id":"NCBITaxon:1028800","l":"Neorhizobium galegae bv. orientalis str. HAMBI 540","na":2,"nb":2,"a":[["root-nodule-bto-0001190.html","root nodule"],["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A399","Neorhizobium galegae"],["NCBITaxon%3A1028800","Neorhizobium galegae bv. orientalis str. HAMBI 540"]]},{"id":"NCBITaxon:1032070","l":"Aliarcobacter cryaerophilus ATCC 43158","na":2,"nb":2,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A28198","Aliarcobacter cryaerophilus"],["NCBITaxon%3A1032070","Aliarcobacter cryaerophilus ATCC 43158"]]},{"id":"NCBITaxon:1038869","l":"Paraburkholderia mimosarum LMG 23256 = NBRC 106338","na":2,"nb":2,"a":[["root-nodule-bto-0001190.html","root nodule"],["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A312026","Paraburkholderia mimosarum"],["NCBITaxon%3A1038869","Paraburkholderia mimosarum LMG 23256 = NBRC 106338"]]},{"id":"NCBITaxon:1041930","l":"Methanocella conradii HZ254","na":2,"nb":2,"a":[["flagellum-bto-0002292.html","flagellum"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A1175444","Methanocella conradii"],["NCBITaxon%3A1041930","Methanocella conradii HZ254"]]},{"id":"NCBITaxon:1042209","l":"Pseudomonas fluorescens HK44","na":2,"nb":2,"a":[["bioreactor-envo-00002123.html","bioreactor"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A294","Pseudomonas fluorescens"],["NCBITaxon%3A1042209","Pseudomonas fluorescens HK44"]]},{"id":"NCBITaxon:1045004","l":"Oenococcus kitaharae DSM 17330","na":2,"nb":2,"a":[["compost-envo-00002170.html","compost"],["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A336988","Oenococcus kitaharae"],["NCBITaxon%3A1045004","Oenococcus kitaharae DSM 17330"]]},{"id":"NCBITaxon:1045855","l":"Pseudoxanthomonas spadix BD-a59","na":2,"nb":2,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A415229","Pseudoxanthomonas spadix"],["NCBITaxon%3A1045855","Pseudoxanthomonas spadix BD-a59"]]},{"id":"NCBITaxon:1046593","l":"Leuconostoc carnosum KCTC 3525","na":2,"nb":2,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A1252","Leuconostoc carnosum"],["NCBITaxon%3A1046593","Leuconostoc carnosum KCTC 3525"]]},{"id":"NCBITaxon:1046596","l":"Liquorilactobacillus mali KCTC 3596 = DSM 20444","na":2,"nb":2,"a":[["juice-bto-0000659.html","juice"],["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A1618","Liquorilactobacillus mali"],["NCBITaxon%3A1046596","Liquorilactobacillus mali KCTC 3596 = DSM 20444"]]},{"id":"NCBITaxon:1049","l":"Allochromatium vinosum","na":2,"nb":2,"a":[["brackish-water-body-envo-01001321.html","brackish water body"],["factory-envo-01000536.html","factory"]],"b":[["NCBITaxon%3A1049","Allochromatium vinosum"],["NCBITaxon%3A572477","Allochromatium vinosum DSM 180"]]},{"id":"NCBITaxon:104955","l":"Limosilactobacillus frumenti","na":2,"nb":2,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["animal-manure-envo-00003031.html","animal manure"]],"b":[["NCBITaxon%3A104955","Limosilactobacillus frumenti"],["NCBITaxon%3A1423746","Limosilactobacillus frumenti DSM 13145"]]},{"id":"NCBITaxon:1049583","l":"Kocuria marina subsp. indica","na":2,"nb":2,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A223184","Kocuria marina"],["NCBITaxon%3A1049583","Kocuria marina subsp. indica"]]},{"id":"NCBITaxon:1050202","l":"Actinopolyspora mortivallis DSM 44261","na":2,"nb":2,"a":[["soil-envo-00001998.html","soil"],["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A33906","Actinopolyspora mortivallis"],["NCBITaxon%3A1050202","Actinopolyspora mortivallis DSM 44261"]]},{"id":"NCBITaxon:1056495","l":"Caldisphaera lagunensis DSM 15908","na":2,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"],["acidic-hot-spring-envo-00002120.html","acidic hot spring"]],"b":[["NCBITaxon%3A200415","Caldisphaera lagunensis"],["NCBITaxon%3A1056495","Caldisphaera lagunensis DSM 15908"]]},{"id":"NCBITaxon:1068979","l":"Amycolatopsis thermoflava N1165","na":2,"nb":2,"a":[["island-envo-00000098.html","island"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A84480","Amycolatopsis thermoflava"],["NCBITaxon%3A1068979","Amycolatopsis thermoflava N1165"]]},{"id":"NCBITaxon:1068980","l":"Amycolatopsis nigrescens CSC17Ta-90","na":2,"nb":2,"a":[["building-envo-00000073.html","building"],["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A381445","Amycolatopsis nigrescens"],["NCBITaxon%3A1068980","Amycolatopsis nigrescens CSC17Ta-90"]]},{"id":"NCBITaxon:1071947","l":"Pasteurella oralis","na":2,"nb":2,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A988827","Kocuria oceani"],["NCBITaxon%3A1071947","Pasteurella oralis"]]},{"id":"NCBITaxon:1074493","l":"Sphingobium yanoikuyae XLDN2-5","na":2,"nb":2,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A13690","Sphingobium yanoikuyae"],["NCBITaxon%3A1074493","Sphingobium yanoikuyae XLDN2-5"]]},{"id":"NCBITaxon:107636","l":"Methylosinus sp. PW1","na":2,"nb":2,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A427","Methylosinus sp."],["NCBITaxon%3A107636","Methylosinus sp. PW1"]]},{"id":"NCBITaxon:1080","l":"Afifella marina","na":2,"nb":2,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"]],"b":[["NCBITaxon%3A1080","Afifella marina"],["NCBITaxon%3A1120955","Afifella marina DSM 2698"]]},{"id":"NCBITaxon:108486","l":"Corynebacterium falsenii","na":2,"nb":2,"a":[["animal-house-envo-00003040.html","animal house"],["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A108486","Corynebacterium falsenii"],["NCBITaxon%3A1451189","Corynebacterium falsenii DSM 44353"]]},{"id":"NCBITaxon:1089547","l":"Rudanella lutea DSM 19387","na":2,"nb":2,"a":[["air-envo-00002005.html","air"],["city-envo-00000856.html","city"]],"b":[["NCBITaxon%3A451374","Rudanella lutea"],["NCBITaxon%3A1089547","Rudanella lutea DSM 19387"]]},{"id":"NCBITaxon:1089549","l":"Haloglycomyces albus DSM 45210","na":2,"nb":2,"a":[["undersea-feature-envo-00000104.html","undersea feature"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A526067","Haloglycomyces albus"],["NCBITaxon%3A1089549","Haloglycomyces albus DSM 45210"]]},{"id":"NCBITaxon:1089550","l":"Salisaeta longa DSM 21114","na":2,"nb":2,"a":[["marine-anoxic-zone-envo-01000066.html","marine anoxic zone"],["sea-envo-00000016.html","sea"]],"b":[["NCBITaxon%3A503170","Salisaeta longa"],["NCBITaxon%3A1089550","Salisaeta longa DSM 21114"]]},{"id":"NCBITaxon:1089551","l":"Geminicoccus roseus DSM 18922","na":2,"nb":2,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A404900","Geminicoccus roseus"],["NCBITaxon%3A1089551","Geminicoccus roseus DSM 18922"]]},{"id":"NCBITaxon:1089552","l":"Rhodovibrio salinarum DSM 9154","na":2,"nb":2,"a":[["compost-envo-00002170.html","compost"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A1087","Rhodovibrio salinarum"],["NCBITaxon%3A1089552","Rhodovibrio salinarum DSM 9154"]]},{"id":"NCBITaxon:110479","l":"Asaia siamensis","na":2,"nb":2,"a":[["river-envo-00000022.html","river"],["subpolar-coniferous-forest-biome-envo-01000250.html","subpolar coniferous forest biome"]],"b":[["NCBITaxon%3A110479","Asaia siamensis"],["NCBITaxon%3A1307927","Asaia siamensis NRIC 0323"]]},{"id":"NCBITaxon:110500","l":"Pelotomaculum thermopropionicum","na":2,"nb":2,"a":[["river-envo-00000022.html","river"],["subpolar-coniferous-forest-biome-envo-01000250.html","subpolar coniferous forest biome"]],"b":[["NCBITaxon%3A110500","Pelotomaculum thermopropionicum"],["NCBITaxon%3A370438","Pelotomaculum thermopropionicum SI"]]},{"id":"NCBITaxon:1111728","l":"Budvicia aquatica DSM 5075 = ATCC 35567","na":2,"nb":2,"a":[["drinking-water-envo-00003064.html","drinking water"],["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A82979","Budvicia aquatica"],["NCBITaxon%3A1111728","Budvicia aquatica DSM 5075 = ATCC 35567"]]},{"id":"NCBITaxon:1111738","l":"Thermocrispum agreste DSM 44070","na":2,"nb":2,"a":[["compost-envo-00002170.html","compost"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A37925","Thermocrispum agreste"],["NCBITaxon%3A1111738","Thermocrispum agreste DSM 44070"]]},{"id":"NCBITaxon:1112","l":"Erythrobacter neustonensis","na":2,"nb":2,"a":[["groundwater-envo-01001004.html","groundwater"],["marine-environment-envo-01000320.html","marine environment"]],"b":[["NCBITaxon%3A1112","Erythrobacter neustonensis"],["NCBITaxon%3A1042","Erythrobacter sp."]]},{"id":"NCBITaxon:1114856","l":"Natronorubrum tibetense GA33","na":2,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A63128","Natronorubrum tibetense"],["NCBITaxon%3A1114856","Natronorubrum tibetense GA33"]]},{"id":"NCBITaxon:1114972","l":"Furfurilactobacillus rossiae DSM 15814","na":2,"nb":2,"a":[["food-product-foodon-00001002.html","food product"],["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A231049","Furfurilactobacillus rossiae"],["NCBITaxon%3A1114972","Furfurilactobacillus rossiae DSM 15814"]]},{"id":"NCBITaxon:1115512","l":"Atlantibacter hermannii NBRC 105704","na":2,"nb":2,"a":[["foot-bto-0000476.html","foot"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A565","Atlantibacter hermannii"],["NCBITaxon%3A1115512","Atlantibacter hermannii NBRC 105704"]]},{"id":"NCBITaxon:1120918","l":"Acetitomaculum ruminis DSM 5522","na":2,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A2382","Acetitomaculum ruminis"],["NCBITaxon%3A1120918","Acetitomaculum ruminis DSM 5522"]]},{"id":"NCBITaxon:1120923","l":"Acidocella aminolytica 101 = DSM 11237","na":2,"nb":2,"a":[["mine-envo-00000076.html","mine"],["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A33998","Acidocella aminolytica"],["NCBITaxon%3A1120923","Acidocella aminolytica 101 = DSM 11237"]]},{"id":"NCBITaxon:1120924","l":"Acinetobacter baylyi DSM 14961 = CIP 107474","na":2,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A202950","Acinetobacter baylyi"],["NCBITaxon%3A1120924","Acinetobacter baylyi DSM 14961 = CIP 107474"]]},{"id":"NCBITaxon:1120929","l":"Acinetobacter towneri DSM 14962 = CIP 107472","na":2,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"],["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A202956","Acinetobacter towneri"],["NCBITaxon%3A1120929","Acinetobacter towneri DSM 14962 = CIP 107472"]]},{"id":"NCBITaxon:1120955","l":"Afifella marina DSM 2698","na":2,"nb":2,"a":[["sea-envo-00000016.html","sea"],["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1080","Afifella marina"],["NCBITaxon%3A1120955","Afifella marina DSM 2698"]]},{"id":"NCBITaxon:1120959","l":"Agromyces italicus DSM 16388","na":2,"nb":2,"a":[["cave-envo-00000067.html","cave"],["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A279572","Agromyces italicus"],["NCBITaxon%3A1120959","Agromyces italicus DSM 16388"]]},{"id":"NCBITaxon:1120968","l":"Algoriphagus vanfongensis DSM 17529","na":2,"nb":2,"a":[["sea-envo-00000016.html","sea"],["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A426371","Algoriphagus vanfongensis"],["NCBITaxon%3A1120968","Algoriphagus vanfongensis DSM 17529"]]},{"id":"NCBITaxon:1120989","l":"Anaerobranca californiensis DSM 14826","na":2,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"],["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A182411","Anaerobranca californiensis"],["NCBITaxon%3A1120989","Anaerobranca californiensis DSM 14826"]]},{"id":"NCBITaxon:1120997","l":"Anaerovibrio lipolyticus DSM 3074","na":2,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A82374","Anaerovibrio lipolyticus"],["NCBITaxon%3A1120997","Anaerovibrio lipolyticus DSM 3074"]]},{"id":"NCBITaxon:1121001","l":"Andreprevotia lacus DSM 23236","na":2,"nb":2,"a":[["pond-envo-00000033.html","pond"],["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A1121000","Andreprevotia lacus"],["NCBITaxon%3A1121001","Andreprevotia lacus DSM 23236"]]},{"id":"NCBITaxon:1121003","l":"Aquamicrobium aerolatum DSM 21857","na":2,"nb":2,"a":[["air-envo-00002005.html","air"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A561088","Aerobium aerolatum"],["NCBITaxon%3A1121003","Aquamicrobium aerolatum DSM 21857"]]},{"id":"NCBITaxon:1121018","l":"Arsenophonus nasoniae DSM 15247","na":2,"nb":2,"a":[["saline-lake-envo-00000019.html","saline lake"],["city-envo-00000856.html","city"]],"b":[["NCBITaxon%3A638","Arsenophonus nasoniae"],["NCBITaxon%3A1121018","Arsenophonus nasoniae DSM 15247"]]},{"id":"NCBITaxon:1121019","l":"Arthrobacter castelli DSM 16402","na":2,"nb":2,"a":[["environmental-system-envo-01000254.html","environmental system"],["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A271431","Arthrobacter castelli"],["NCBITaxon%3A1121019","Arthrobacter castelli DSM 16402"]]},{"id":"NCBITaxon:1121022","l":"Asticcacaulis benevestitus DSM 16100 = ATCC BAA-896","na":2,"nb":2,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A347481","Asticcacaulis benevestitus"],["NCBITaxon%3A1121022","Asticcacaulis benevestitus DSM 16100 = ATCC BAA-896"]]},{"id":"NCBITaxon:1121026","l":"Aureimonas altamirensis DSM 21988","na":2,"nb":2,"a":[["cave-envo-00000067.html","cave"],["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A370622","Aureimonas altamirensis"],["NCBITaxon%3A1121026","Aureimonas altamirensis DSM 21988"]]},{"id":"NCBITaxon:1121028","l":"Aureimonas ureilytica DSM 18598 = NBRC 106430","na":2,"nb":2,"a":[["air-envo-00002005.html","air"],["city-envo-00000856.html","city"]],"b":[["NCBITaxon%3A401562","Aureimonas ureilytica"],["NCBITaxon%3A1121028","Aureimonas ureilytica DSM 18598 = NBRC 106430"]]},{"id":"NCBITaxon:1121032","l":"Azonexus hydrophilus DSM 23864","na":2,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A418702","Azonexus hydrophilus"],["NCBITaxon%3A1121032","Azonexus hydrophilus DSM 23864"]]},{"id":"NCBITaxon:1121086","l":"Alteribacter aurantiacus DSM 18675","na":2,"nb":2,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A254410","Alteribacter aurantiacus"],["NCBITaxon%3A1121086","Alteribacter aurantiacus DSM 18675"]]},{"id":"NCBITaxon:1121106","l":"Belnapia moabensis DSM 16746","na":2,"nb":2,"a":[["city-envo-00000856.html","city"],["plateau-envo-00000182.html","plateau"]],"b":[["NCBITaxon%3A365533","Belnapia moabensis"],["NCBITaxon%3A1121106","Belnapia moabensis DSM 16746"]]},{"id":"NCBITaxon:1121109","l":"Bifidobacterium minimum DSM 20102","na":2,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"],["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A1693","Bifidobacterium minimum"],["NCBITaxon%3A1121109","Bifidobacterium minimum DSM 20102"]]},{"id":"NCBITaxon:1121110","l":"Bifidobacterium subtile DSM 20096","na":2,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"],["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A77635","Bifidobacterium subtile"],["NCBITaxon%3A1121110","Bifidobacterium subtile DSM 20096"]]},{"id":"NCBITaxon:1121117","l":"Allobrachymonas denitrificans DSM 15123","na":2,"nb":2,"a":[["sewage-envo-00002018.html","sewage"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["NCBITaxon%3A28220","Allobrachymonas denitrificans"],["NCBITaxon%3A1121117","Allobrachymonas denitrificans DSM 15123"]]},{"id":"NCBITaxon:1121131","l":"Butyrivibrio fibrisolvens DSM 3071","na":2,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A831","Butyrivibrio fibrisolvens"],["NCBITaxon%3A1121131","Butyrivibrio fibrisolvens DSM 3071"]]},{"id":"NCBITaxon:1121262","l":"Caloramator proteoclasticus DSM 10124","na":2,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"],["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A53342","Caloramator proteoclasticus"],["NCBITaxon%3A1121262","Caloramator proteoclasticus DSM 10124"]]},{"id":"NCBITaxon:1121270","l":"Carboxydocella thermautotrophica DSM 16521","na":2,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"],["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A178899","Carboxydocella thermautotrophica"],["NCBITaxon%3A1121270","Carboxydocella thermautotrophica DSM 16521"]]},{"id":"NCBITaxon:1121275","l":"Chitinilyticum aquatile DSM 21506","na":2,"nb":2,"a":[["pond-envo-00000033.html","pond"],["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A362520","Chitinilyticum aquatile"],["NCBITaxon%3A1121275","Chitinilyticum aquatile DSM 21506"]]},{"id":"NCBITaxon:1121295","l":"Clostridium algidicarnis DSM 15099","na":2,"nb":2,"a":[["food-product-foodon-00001002.html","food product"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["NCBITaxon%3A37659","Clostridium algidicarnis"],["NCBITaxon%3A1121295","Clostridium algidicarnis DSM 15099"]]},{"id":"NCBITaxon:1121296","l":"[Clostridium] aminophilum DSM 10710","na":2,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A1526","[Clostridium] aminophilum"],["NCBITaxon%3A1121296","[Clostridium] aminophilum DSM 10710"]]},{"id":"NCBITaxon:1121302","l":"Clostridium cavendishii DSM 21758","na":2,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A349931","Clostridium cavendishii"],["NCBITaxon%3A1121302","Clostridium cavendishii DSM 21758"]]},{"id":"NCBITaxon:1121312","l":"Clostridium frigidicarnis DSM 12271","na":2,"nb":2,"a":[["food-product-foodon-00001002.html","food product"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["NCBITaxon%3A84698","Clostridium frigidicarnis"],["NCBITaxon%3A1121312","Clostridium frigidicarnis DSM 12271"]]},{"id":"NCBITaxon:1121314","l":"Clostridium gasigenes DSM 12272","na":2,"nb":2,"a":[["food-product-foodon-00001002.html","food product"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["NCBITaxon%3A94869","Clostridium gasigenes"],["NCBITaxon%3A1121314","Clostridium gasigenes DSM 12272"]]},{"id":"NCBITaxon:1121317","l":"Maledivibacter halophilus DSM 5387","na":2,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A36842","Maledivibacter halophilus"],["NCBITaxon%3A1121317","Maledivibacter halophilus DSM 5387"]]},{"id":"NCBITaxon:1121318","l":"Clostridium homopropionicum DSM 5847","na":2,"nb":2,"a":[["sewage-envo-00002018.html","sewage"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A36844","Clostridium homopropionicum"],["NCBITaxon%3A1121318","Clostridium homopropionicum DSM 5847"]]},{"id":"NCBITaxon:1121319","l":"Clostridium hydrogeniformans DSM 21757","na":2,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A349933","Clostridium hydrogeniformans"],["NCBITaxon%3A1121319","Clostridium hydrogeniformans DSM 21757"]]},{"id":"NCBITaxon:1121327","l":"Anaerotignum neopropionicum DSM 3847","na":2,"nb":2,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A36847","Anaerotignum neopropionicum"],["NCBITaxon%3A1121327","Anaerotignum neopropionicum DSM 3847"]]},{"id":"NCBITaxon:1121344","l":"[Clostridium] viride DSM 6836","na":2,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A47246","[Clostridium] viride"],["NCBITaxon%3A1121344","[Clostridium] viride DSM 6836"]]},{"id":"NCBITaxon:1121364","l":"Corynebacterium massiliense DSM 45435","na":2,"nb":2,"a":[["hospital-envo-00002173.html","hospital"],["bone-element-uberon-0001474.html","bone element"]],"b":[["NCBITaxon%3A441501","Corynebacterium massiliense"],["NCBITaxon%3A1121364","Corynebacterium massiliense DSM 45435"]]},{"id":"NCBITaxon:1121375","l":"Deefgea rivuli DSM 18356","na":2,"nb":2,"a":[["mountain-envo-00000081.html","mountain"],["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A400948","Deefgea rivuli"],["NCBITaxon%3A1121375","Deefgea rivuli DSM 18356"]]},{"id":"NCBITaxon:1121385","l":"Demetria terragena DSM 11295","na":2,"nb":2,"a":[["compost-envo-00002170.html","compost"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A63959","Demetria terragena"],["NCBITaxon%3A1121385","Demetria terragena DSM 11295"]]},{"id":"NCBITaxon:1121390","l":"Desulfacinum hydrothermale DSM 13146","na":2,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A109258","Desulfacinum hydrothermale"],["NCBITaxon%3A1121390","Desulfacinum hydrothermale DSM 13146"]]},{"id":"NCBITaxon:1121395","l":"Desulfitobacterium chlororespirans DSM 11544","na":2,"nb":2,"a":[["compost-envo-00002170.html","compost"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A51616","Desulfitobacterium chlororespirans"],["NCBITaxon%3A1121395","Desulfitobacterium chlororespirans DSM 11544"]]},{"id":"NCBITaxon:1121396","l":"Desulfobacter curvatus DSM 3379","na":2,"nb":2,"a":[["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A2290","Desulfobacter curvatus"],["NCBITaxon%3A1121396","Desulfobacter curvatus DSM 3379"]]},{"id":"NCBITaxon:1121399","l":"Desulfatiglans anilini DSM 4660","na":2,"nb":2,"a":[["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A90728","Desulfatiglans anilini"],["NCBITaxon%3A1121399","Desulfatiglans anilini DSM 4660"]]},{"id":"NCBITaxon:1121405","l":"Desulfococcus multivorans DSM 2059","na":2,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A897","Desulfococcus multivorans"],["NCBITaxon%3A1121405","Desulfococcus multivorans DSM 2059"]]},{"id":"NCBITaxon:1121409","l":"Desulfofustis glycolicus DSM 9705","na":2,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"]],"b":[["NCBITaxon%3A51195","Desulfofustis glycolicus"],["NCBITaxon%3A1121409","Desulfofustis glycolicus DSM 9705"]]},{"id":"NCBITaxon:1121428","l":"Desulforamulus hydrothermalis Lam5 = DSM 18033","na":2,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"],["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A412895","Desulforamulus hydrothermalis"],["NCBITaxon%3A1121428","Desulforamulus hydrothermalis Lam5 = DSM 18033"]]},{"id":"NCBITaxon:1121432","l":"Desulfofundulus thermosubterraneus DSM 16057","na":2,"nb":2,"a":[["mine-envo-00000076.html","mine"],["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A348840","Desulfofundulus thermosubterraneus"],["NCBITaxon%3A1121432","Desulfofundulus thermosubterraneus DSM 16057"]]},{"id":"NCBITaxon:1121433","l":"Desulfovermiculus halophilus DSM 18834","na":2,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"],["oil-envo-00002985.html","oil"]],"b":[["NCBITaxon%3A339722","Desulfovermiculus halophilus"],["NCBITaxon%3A1121433","Desulfovermiculus halophilus DSM 18834"]]},{"id":"NCBITaxon:1121434","l":"Halodesulfovibrio aestuarii DSM 10141","na":2,"nb":2,"a":[["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A126333","Halodesulfovibrio aestuarii"],["NCBITaxon%3A1121434","Halodesulfovibrio aestuarii DSM 10141"]]},{"id":"NCBITaxon:1121441","l":"Maridesulfovibrio bastinii DSM 16055","na":2,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A47157","Maridesulfovibrio bastinii"],["NCBITaxon%3A1121441","Maridesulfovibrio bastinii DSM 16055"]]},{"id":"NCBITaxon:1121442","l":"Desulfobaculum bizertense DSM 18034","na":2,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"]],"b":[["NCBITaxon%3A376490","Desulfobaculum bizertense"],["NCBITaxon%3A1121442","Desulfobaculum bizertense DSM 18034"]]},{"id":"NCBITaxon:1121445","l":"Desulfovibrio desulfuricans DSM 642","na":2,"nb":2,"a":[["rock-envo-00001995.html","rock"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A876","Desulfovibrio desulfuricans"],["NCBITaxon%3A1121445","Desulfovibrio desulfuricans DSM 642"]]},{"id":"NCBITaxon:1121447","l":"Maridesulfovibrio frigidus DSM 17176","na":2,"nb":2,"a":[["sea-coast-envo-00000303.html","sea coast"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A340956","Maridesulfovibrio frigidus"],["NCBITaxon%3A1121447","Maridesulfovibrio frigidus DSM 17176"]]},{"id":"NCBITaxon:1121448","l":"Megalodesulfovibrio gigas DSM 1382 = ATCC 19364","na":2,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["primordium-bto-0001886.html","primordium"]],"b":[["NCBITaxon%3A879","Megalodesulfovibrio gigas"],["NCBITaxon%3A1121448","Megalodesulfovibrio gigas DSM 1382 = ATCC 19364"]]},{"id":"NCBITaxon:1121453","l":"Desulfovibrio inopinatus DSM 10711","na":2,"nb":2,"a":[["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A102109","Desulfovibrio inopinatus"],["NCBITaxon%3A1121453","Desulfovibrio inopinatus DSM 10711"]]},{"id":"NCBITaxon:1121457","l":"Halodesulfovibrio marinisediminis DSM 17456","na":2,"nb":2,"a":[["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A458711","Halodesulfovibrio marinisediminis"],["NCBITaxon%3A1121457","Halodesulfovibrio marinisediminis DSM 17456"]]},{"id":"NCBITaxon:1121458","l":"Humidesulfovibrio mexicanus DSM 13116","na":2,"nb":2,"a":[["activated-sludge-envo-00002046.html","activated sludge"],["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A147047","Humidesulfovibrio mexicanus"],["NCBITaxon%3A1121458","Humidesulfovibrio mexicanus DSM 13116"]]},{"id":"NCBITaxon:1121460","l":"Megalodesulfovibrio paquesii DSM 16681","na":2,"nb":2,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A299072","Megalodesulfovibrio paquesii"],["NCBITaxon%3A1121460","Megalodesulfovibrio paquesii DSM 16681"]]},{"id":"NCBITaxon:1121462","l":"Fundidesulfovibrio putealis DSM 16056","na":2,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A270496","Fundidesulfovibrio putealis"],["NCBITaxon%3A1121462","Fundidesulfovibrio putealis DSM 16056"]]},{"id":"NCBITaxon:1121468","l":"Desulfovirgula thermocuniculi DSM 16036","na":2,"nb":2,"a":[["mine-envo-00000076.html","mine"],["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A348842","Desulfovirgula thermocuniculi"],["NCBITaxon%3A1121468","Desulfovirgula thermocuniculi DSM 16036"]]},{"id":"NCBITaxon:1121476","l":"Dethiosulfatibacter aminovorans DSM 17477","na":2,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"]],"b":[["NCBITaxon%3A332095","Dethiosulfatibacter aminovorans"],["NCBITaxon%3A1121476","Dethiosulfatibacter aminovorans DSM 17477"]]},{"id":"NCBITaxon:1121480","l":"Pseudoduganella violaceinigra DSM 15887","na":2,"nb":2,"a":[["undersea-feature-envo-00000104.html","undersea feature"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A246602","Pseudoduganella violaceinigra"],["NCBITaxon%3A1121480","Pseudoduganella violaceinigra DSM 15887"]]},{"id":"NCBITaxon:1121484","l":"Dyadobacter ginsengisoli DSM 21015","na":2,"nb":2,"a":[["undersea-feature-envo-00000104.html","undersea feature"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A363850","Dyadobacter ginsengisoli"],["NCBITaxon%3A1121484","Dyadobacter ginsengisoli DSM 21015"]]},{"id":"NCBITaxon:1121878","l":"Ferrimonas futtsuensis DSM 18154","na":2,"nb":2,"a":[["beach-envo-00000091.html","beach"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A364764","Ferrimonas futtsuensis"],["NCBITaxon%3A1121878","Ferrimonas futtsuensis DSM 18154"]]},{"id":"NCBITaxon:1121884","l":"Flavisolibacter ginsengisoli DSM 18119","na":2,"nb":2,"a":[["undersea-feature-envo-00000104.html","undersea feature"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A462367","Flavisolibacter ginsengisoli"],["NCBITaxon%3A1121884","Flavisolibacter ginsengisoli DSM 18119"]]},{"id":"NCBITaxon:1121885","l":"Flavisolibacter ginsengiterrae DSM 18136","na":2,"nb":2,"a":[["undersea-feature-envo-00000104.html","undersea feature"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A398045","Flavisolibacter ginsengiterrae"],["NCBITaxon%3A1121885","Flavisolibacter ginsengiterrae DSM 18136"]]},{"id":"NCBITaxon:1121899","l":"Flavobacterium suncheonense GH29-5 = DSM 17707","na":2,"nb":2,"a":[["city-envo-00000856.html","city"],["greenhouse-soil-envo-00005780.html","greenhouse soil"]],"b":[["NCBITaxon%3A350894","Flavobacterium suncheonense"],["NCBITaxon%3A1121899","Flavobacterium suncheonense GH29-5 = DSM 17707"]]},{"id":"NCBITaxon:1121901","l":"Flavobacterium tegetincola DSM 22377","na":2,"nb":2,"a":[["hill-envo-00000083.html","hill"],["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A150172","Flavobacterium tegetincola"],["NCBITaxon%3A1121901","Flavobacterium tegetincola DSM 22377"]]},{"id":"NCBITaxon:1121909","l":"Gaetbulibacter saemankumensis DSM 17032","na":2,"nb":2,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A311208","Gaetbulibacter saemankumensis"],["NCBITaxon%3A1121909","Gaetbulibacter saemankumensis DSM 17032"]]},{"id":"NCBITaxon:1121915","l":"Geoalkalibacter ferrihydriticus DSM 17813","na":2,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A392333","Geoalkalibacter ferrihydriticus"],["NCBITaxon%3A1121915","Geoalkalibacter ferrihydriticus DSM 17813"]]},{"id":"NCBITaxon:1121918","l":"Geopsychrobacter electrodiphilus DSM 16401","na":2,"nb":2,"a":[["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"],["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A225196","Geopsychrobacter electrodiphilus"],["NCBITaxon%3A1121918","Geopsychrobacter electrodiphilus DSM 16401"]]},{"id":"NCBITaxon:1121921","l":"Gilvimarinus chinensis DSM 19667","na":2,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"],["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A396005","Gilvimarinus chinensis"],["NCBITaxon%3A1121921","Gilvimarinus chinensis DSM 19667"]]},{"id":"NCBITaxon:1121924","l":"Glaciibacter superstes DSM 21135","na":2,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"],["tunnel-envo-00000068.html","tunnel"]],"b":[["NCBITaxon%3A501023","Glaciibacter superstes"],["NCBITaxon%3A1121924","Glaciibacter superstes DSM 21135"]]},{"id":"NCBITaxon:1121929","l":"Gracilibacillus lacisalsi DSM 19029","na":2,"nb":2,"a":[["undersea-feature-envo-00000104.html","undersea feature"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A393087","Gracilibacillus lacisalsi"],["NCBITaxon%3A1121929","Gracilibacillus lacisalsi DSM 19029"]]},{"id":"NCBITaxon:1121930","l":"Gracilimonas tropica DSM 19535","na":2,"nb":2,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["NCBITaxon%3A454600","Gracilimonas tropica"],["NCBITaxon%3A1121930","Gracilimonas tropica DSM 19535"]]},{"id":"NCBITaxon:1121932","l":"Christiangramia portivictoriae DSM 23547","na":2,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"]],"b":[["NCBITaxon%3A326069","Christiangramia portivictoriae"],["NCBITaxon%3A1121932","Christiangramia portivictoriae DSM 23547"]]},{"id":"NCBITaxon:1121948","l":"Hellea balneolensis DSM 19091","na":2,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["NCBITaxon%3A287478","Hellea balneolensis"],["NCBITaxon%3A1121948","Hellea balneolensis DSM 19091"]]},{"id":"NCBITaxon:1122129","l":"Jeotgalicoccus psychrophilus DSM 19085","na":2,"nb":2,"a":[["food-product-foodon-00001002.html","food product"],["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A157228","Jeotgalicoccus psychrophilus"],["NCBITaxon%3A1122129","Jeotgalicoccus psychrophilus DSM 19085"]]},{"id":"NCBITaxon:1122130","l":"Jonesia quinghaiensis DSM 15701","na":2,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A262806","Jonesia quinghaiensis"],["NCBITaxon%3A1122130","Jonesia quinghaiensis DSM 15701"]]},{"id":"NCBITaxon:1122135","l":"Kiloniella laminariae DSM 19542","na":2,"nb":2,"a":[["inlet-envo-00000475.html","inlet"],["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A454162","Kiloniella laminariae"],["NCBITaxon%3A1122135","Kiloniella laminariae DSM 19542"]]},{"id":"NCBITaxon:1122137","l":"Kordiimonas gwangyangensis DSM 19435 = JCM 12864","na":2,"nb":2,"a":[["marginal-sea-biome-envo-01000046.html","marginal sea biome"],["sea-envo-00000016.html","sea"]],"b":[["NCBITaxon%3A288022","Kordiimonas gwangyangensis"],["NCBITaxon%3A1122137","Kordiimonas gwangyangensis DSM 19435 = JCM 12864"]]},{"id":"NCBITaxon:1122146","l":"Ligilactobacillus ceti DSM 22408","na":2,"nb":2,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A395085","Ligilactobacillus ceti"],["NCBITaxon%3A1122146","Ligilactobacillus ceti DSM 22408"]]},{"id":"NCBITaxon:1122149","l":"Secundilactobacillus malefermentans DSM 5705 = KCTC 3548","na":2,"nb":2,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A176292","Secundilactobacillus malefermentans"],["NCBITaxon%3A1122149","Secundilactobacillus malefermentans DSM 5705 = KCTC 3548"]]},{"id":"NCBITaxon:1122150","l":"Liquorilactobacillus nagelii DSM 13675","na":2,"nb":2,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A82688","Liquorilactobacillus nagelii"],["NCBITaxon%3A1122150","Liquorilactobacillus nagelii DSM 13675"]]},{"id":"NCBITaxon:1122151","l":"Companilactobacillus paralimentarius DSM 13238 = JCM 10415","na":2,"nb":2,"a":[["food-product-foodon-00001002.html","food product"],["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A83526","Companilactobacillus paralimentarius"],["NCBITaxon%3A1122151","Companilactobacillus paralimentarius DSM 13238 = JCM 10415"]]},{"id":"NCBITaxon:1122161","l":"Legionella geestiana DSM 21217","na":2,"nb":2,"a":[["drinking-water-envo-00003064.html","drinking water"],["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A45065","Legionella geestiana"],["NCBITaxon%3A1122161","Legionella geestiana DSM 21217"]]},{"id":"NCBITaxon:1122181","l":"Yoonia vestfoldensis DSM 16212","na":2,"nb":2,"a":[["hill-envo-00000083.html","hill"],["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A245188","Yoonia vestfoldensis"],["NCBITaxon%3A1122181","Yoonia vestfoldensis DSM 16212"]]},{"id":"NCBITaxon:1122191","l":"Maribacter antarcticus DSM 21422","na":2,"nb":2,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"],["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A505250","Maribacter antarcticus"],["NCBITaxon%3A1122191","Maribacter antarcticus DSM 21422"]]},{"id":"NCBITaxon:1122198","l":"Marinobacterium iners DSM 11526","na":2,"nb":2,"a":[["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["NCBITaxon%3A48076","Marinobacterium iners"],["NCBITaxon%3A1122198","Marinobacterium iners DSM 11526"]]},{"id":"NCBITaxon:1122201","l":"Marinobacterium litorale DSM 23545","na":2,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"],["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A404770","Marinobacterium litorale"],["NCBITaxon%3A1122201","Marinobacterium litorale DSM 23545"]]},{"id":"NCBITaxon:1122206","l":"Marinomonas polaris DSM 16579","na":2,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"],["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A293552","Marinomonas polaris"],["NCBITaxon%3A1122206","Marinomonas polaris DSM 16579"]]},{"id":"NCBITaxon:1122209","l":"Marinospirillum alkaliphilum DSM 21637","na":2,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A148454","Marinospirillum alkaliphilum"],["NCBITaxon%3A1122209","Marinospirillum alkaliphilum DSM 21637"]]},{"id":"NCBITaxon:1122225","l":"Mesoflavibacter zeaxanthinifaciens DSM 18436","na":2,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"],["shoreline-envo-00000486.html","shoreline"]],"b":[["NCBITaxon%3A393060","Mesoflavibacter zeaxanthinifaciens"],["NCBITaxon%3A1122225","Mesoflavibacter zeaxanthinifaciens DSM 18436"]]},{"id":"NCBITaxon:1122226","l":"Mesonia mobilis DSM 19841","na":2,"nb":2,"a":[["inlet-envo-00000475.html","inlet"],["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A369791","Mesonia mobilis"],["NCBITaxon%3A1122226","Mesonia mobilis DSM 19841"]]},{"id":"NCBITaxon:1122228","l":"Alloscardovia criceti DSM 17774","na":2,"nb":2,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A356828","Alloscardovia criceti"],["NCBITaxon%3A1122228","Alloscardovia criceti DSM 17774"]]},{"id":"NCBITaxon:1122239","l":"Microbacterium luticocti DSM 19459","na":2,"nb":2,"a":[["compost-envo-00002170.html","compost"],["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A451764","Microbacterium luticocti"],["NCBITaxon%3A1122239","Microbacterium luticocti DSM 19459"]]},{"id":"NCBITaxon:1122248","l":"Mycoplasmopsis gallinarum DSM 19816","na":2,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"],["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A29557","Mycoplasmopsis gallinarum"],["NCBITaxon%3A1122248","Mycoplasmopsis gallinarum DSM 19816"]]},{"id":"NCBITaxon:1122600","l":"Nereida ignava DSM 16309","na":2,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"],["mediterranean-envo-01000207.html","mediterranean"]],"b":[["NCBITaxon%3A282199","Nereida ignava"],["NCBITaxon%3A1122600","Nereida ignava DSM 16309"]]},{"id":"NCBITaxon:1122601","l":"Pseudovibrio exalbescens DSM 16456","na":2,"nb":2,"a":[["atoll-envo-00000166.html","atoll"],["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A197461","Pseudovibrio exalbescens"],["NCBITaxon%3A1122601","Pseudovibrio exalbescens DSM 16456"]]},{"id":"NCBITaxon:1122602","l":"Nesterenkonia alba DSM 19423","na":2,"nb":2,"a":[["bioreactor-envo-00002123.html","bioreactor"],["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A515814","Nesterenkonia alba"],["NCBITaxon%3A1122602","Nesterenkonia alba DSM 19423"]]},{"id":"NCBITaxon:1122603","l":"Nevskia ramosa DSM 11499","na":2,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A64002","Nevskia ramosa"],["NCBITaxon%3A1122603","Nevskia ramosa DSM 11499"]]},{"id":"NCBITaxon:1122607","l":"Nisaea denitrificans DSM 18348","na":2,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["NCBITaxon%3A390877","Nisaea denitrificans"],["NCBITaxon%3A1122607","Nisaea denitrificans DSM 18348"]]},{"id":"NCBITaxon:1122613","l":"Oceanicaulis alexandrii DSM 11625","na":2,"nb":2,"a":[["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"],["ria-envo-00000418.html","ria"]],"b":[["NCBITaxon%3A153233","Oceanicaulis alexandrii"],["NCBITaxon%3A1122613","Oceanicaulis alexandrii DSM 11625"]]},{"id":"NCBITaxon:1122920","l":"Paenibacillus harenae DSM 16969","na":2,"nb":2,"a":[["undersea-feature-envo-00000104.html","undersea feature"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A306543","Paenibacillus harenae"],["NCBITaxon%3A1122920","Paenibacillus harenae DSM 16969"]]},{"id":"NCBITaxon:1122923","l":"Paenibacillus pasadenensis DSM 19293","na":2,"nb":2,"a":[["building-envo-00000073.html","building"],["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A217090","Paenibacillus pasadenensis"],["NCBITaxon%3A1122923","Paenibacillus pasadenensis DSM 19293"]]},{"id":"NCBITaxon:1122928","l":"Paludibacterium yongneupense DSM 18731","na":2,"nb":2,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A400061","Paludibacterium yongneupense"],["NCBITaxon%3A1122928","Paludibacterium yongneupense DSM 18731"]]},{"id":"NCBITaxon:1122933","l":"Paraoerskovia marina DSM 21750","na":2,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"]],"b":[["NCBITaxon%3A545619","Paraoerskovia marina"],["NCBITaxon%3A1122933","Paraoerskovia marina DSM 21750"]]},{"id":"NCBITaxon:1122935","l":"Alitibacter langaaensis DSM 22999","na":2,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"],["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A756","Alitibacter langaaensis"],["NCBITaxon%3A1122935","Alitibacter langaaensis DSM 22999"]]},{"id":"NCBITaxon:1122946","l":"Pelobacter seleniigenes DSM 18267","na":2,"nb":2,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A407188","Pelobacter seleniigenes"],["NCBITaxon%3A1122946","Pelobacter seleniigenes DSM 18267"]]},{"id":"NCBITaxon:1122961","l":"Picrophilus oshimae DSM 9789","na":2,"nb":2,"a":[["volcanic-field-envo-00000354.html","volcanic field"],["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A46632","Picrophilus oshimae"],["NCBITaxon%3A1122961","Picrophilus oshimae DSM 9789"]]},{"id":"NCBITaxon:1122973","l":"Porphyromonas levii DSM 23370","na":2,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A28114","Porphyromonas levii"],["NCBITaxon%3A1122973","Porphyromonas levii DSM 23370"]]},{"id":"NCBITaxon:1122978","l":"Segatella albensis DSM 11370 = JCM 12258","na":2,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A77768","Segatella albensis"],["NCBITaxon%3A1122978","Segatella albensis DSM 11370 = JCM 12258"]]},{"id":"NCBITaxon:1122981","l":"Prevotella corporis DSM 18810 = JCM 8529","na":2,"nb":2,"a":[["vagina-uberon-0000996.html","vagina"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A28128","Prevotella corporis"],["NCBITaxon%3A1122981","Prevotella corporis DSM 18810 = JCM 8529"]]},{"id":"NCBITaxon:1122990","l":"Segatella paludivivens DSM 17968 = JCM 13650","na":2,"nb":2,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["NCBITaxon%3A185294","Segatella paludivivens"],["NCBITaxon%3A1122990","Segatella paludivivens DSM 17968 = JCM 13650"]]},{"id":"NCBITaxon:1123000","l":"Propionigenium maris DSM 9537","na":2,"nb":2,"a":[["estuary-envo-00000045.html","estuary"],["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["NCBITaxon%3A45622","Propionigenium maris"],["NCBITaxon%3A1123000","Propionigenium maris DSM 9537"]]},{"id":"NCBITaxon:1123032","l":"Psychrilyobacter atlanticus DSM 19335","na":2,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"]],"b":[["NCBITaxon%3A271091","Psychrilyobacter atlanticus"],["NCBITaxon%3A1123032","Psychrilyobacter atlanticus DSM 19335"]]},{"id":"NCBITaxon:1123037","l":"Psychroserpens burtonensis DSM 12212","na":2,"nb":2,"a":[["hill-envo-00000083.html","hill"],["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A49278","Psychroserpens burtonensis"],["NCBITaxon%3A1123037","Psychroserpens burtonensis DSM 12212"]]},{"id":"NCBITaxon:1123053","l":"Rheinheimera baltica DSM 14885","na":2,"nb":2,"a":[["marginal-sea-biome-envo-01000046.html","marginal sea biome"],["sea-envo-00000016.html","sea"]],"b":[["NCBITaxon%3A67576","Rheinheimera baltica"],["NCBITaxon%3A1123053","Rheinheimera baltica DSM 14885"]]},{"id":"NCBITaxon:1123057","l":"Rhodonellum psychrophilum GCM71 = DSM 17998","na":2,"nb":2,"a":[["fjord-envo-00000039.html","fjord"],["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A336828","Rhodonellum psychrophilum"],["NCBITaxon%3A1123057","Rhodonellum psychrophilum GCM71 = DSM 17998"]]},{"id":"NCBITaxon:1123071","l":"Rubritalea squalenifaciens DSM 18772","na":2,"nb":2,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"],["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A407226","Rubritalea squalenifaciens"],["NCBITaxon%3A1123071","Rubritalea squalenifaciens DSM 18772"]]},{"id":"NCBITaxon:1123075","l":"Ruminococcus gauvreauii DSM 19829","na":2,"nb":2,"a":[["large-intestine-bto-0000706.html","large intestine"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A438033","Ruminococcus gauvreauii"],["NCBITaxon%3A1123075","Ruminococcus gauvreauii DSM 19829"]]},{"id":"NCBITaxon:1123231","l":"Lacicoccus alkaliphilus DSM 16010","na":2,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A148453","Lacicoccus alkaliphilus"],["NCBITaxon%3A1123231","Lacicoccus alkaliphilus DSM 16010"]]},{"id":"NCBITaxon:1123234","l":"Salinimicrobium terrae DSM 17865","na":2,"nb":2,"a":[["saline-lake-envo-00000019.html","saline lake"],["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A470866","Salinimicrobium terrae"],["NCBITaxon%3A1123234","Salinimicrobium terrae DSM 17865"]]},{"id":"NCBITaxon:1123236","l":"Salinimonas chungwhensis DSM 16280","na":2,"nb":2,"a":[["pond-envo-00000033.html","pond"],["saline-evaporation-pond-envo-00000055.html","saline evaporation pond"]],"b":[["NCBITaxon%3A265425","Salinimonas chungwhensis"],["NCBITaxon%3A1123236","Salinimonas chungwhensis DSM 16280"]]},{"id":"NCBITaxon:1123243","l":"Schwartzia succinivorans DSM 10502","na":2,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A55507","Schwartzia succinivorans"],["NCBITaxon%3A1123243","Schwartzia succinivorans DSM 10502"]]},{"id":"NCBITaxon:1123244","l":"Sciscionella marina DSM 45152","na":2,"nb":2,"a":[["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"]],"b":[["NCBITaxon%3A508770","Sciscionella marina"],["NCBITaxon%3A1123244","Sciscionella marina DSM 45152"]]},{"id":"NCBITaxon:1123250","l":"Selenomonas bovis DSM 23594","na":2,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A416586","Dongibacter bovis"],["NCBITaxon%3A1123250","Selenomonas bovis DSM 23594"]]},{"id":"NCBITaxon:1123251","l":"Serinicoccus marinus DSM 15273","na":2,"nb":2,"a":[["marginal-sea-biome-envo-01000046.html","marginal sea biome"],["sea-envo-00000016.html","sea"]],"b":[["NCBITaxon%3A247333","Serinicoccus marinus"],["NCBITaxon%3A1123251","Serinicoccus marinus DSM 15273"]]},{"id":"NCBITaxon:1123253","l":"Silanimonas lenta DSM 16282","na":2,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"],["mountain-envo-00000081.html","mountain"]],"b":[["NCBITaxon%3A265429","Silanimonas lenta"],["NCBITaxon%3A1123253","Silanimonas lenta DSM 16282"]]},{"id":"NCBITaxon:1123255","l":"Simplicispira psychrophila DSM 11588","na":2,"nb":2,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A80882","Simplicispira psychrophila"],["NCBITaxon%3A1123255","Simplicispira psychrophila DSM 11588"]]},{"id":"NCBITaxon:1123270","l":"Novosphingopyxis baekryungensis DSM 16222","na":2,"nb":2,"a":[["marginal-sea-biome-envo-01000046.html","marginal sea biome"],["sea-envo-00000016.html","sea"]],"b":[["NCBITaxon%3A279369","Novosphingopyxis baekryungensis"],["NCBITaxon%3A1123270","Novosphingopyxis baekryungensis DSM 16222"]]},{"id":"NCBITaxon:1123275","l":"Spirochaeta cellobiosiphila DSM 17781","na":2,"nb":2,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["saline-marsh-envo-00000054.html","saline marsh"]],"b":[["NCBITaxon%3A504483","Spirochaeta cellobiosiphila"],["NCBITaxon%3A1123275","Spirochaeta cellobiosiphila DSM 17781"]]},{"id":"NCBITaxon:1123276","l":"Spirosoma luteum DSM 19990","na":2,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"],["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A431553","Spirosoma luteum"],["NCBITaxon%3A1123276","Spirosoma luteum DSM 19990"]]},{"id":"NCBITaxon:1123278","l":"Spirosoma spitsbergense DSM 19989","na":2,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"],["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A431554","Spirosoma spitsbergense"],["NCBITaxon%3A1123278","Spirosoma spitsbergense DSM 19989"]]},{"id":"NCBITaxon:1123299","l":"Streptococcus castoreus DSM 17536","na":2,"nb":2,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A254786","Streptococcus castoreus"],["NCBITaxon%3A1123299","Streptococcus castoreus DSM 17536"]]},{"id":"NCBITaxon:1123323","l":"Succiniclasticum ruminis DSM 9236","na":2,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A40841","Succiniclasticum ruminis"],["NCBITaxon%3A1123323","Succiniclasticum ruminis DSM 9236"]]},{"id":"NCBITaxon:1123324","l":"Succinivibrio dextrinosolvens DSM 3072","na":2,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A83771","Succinivibrio dextrinosolvens"],["NCBITaxon%3A1123324","Succinivibrio dextrinosolvens DSM 3072"]]},{"id":"NCBITaxon:1123325","l":"Sulfurihydrogenibium subterraneum DSM 15120","na":2,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["gold-mine-envo-00002168.html","gold mine"]],"b":[["NCBITaxon%3A171121","Sulfurihydrogenibium subterraneum"],["NCBITaxon%3A1123325","Sulfurihydrogenibium subterraneum DSM 15120"]]},{"id":"NCBITaxon:1123326","l":"Sulfurospirillum arcachonense DSM 9755","na":2,"nb":2,"a":[["ocean-trench-envo-00000275.html","ocean trench"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A57666","Sulfurospirillum arcachonense"],["NCBITaxon%3A1123326","Sulfurospirillum arcachonense DSM 9755"]]},{"id":"NCBITaxon:1123359","l":"Tetragenococcus muriaticus DSM 15685","na":2,"nb":2,"a":[["food-product-foodon-00001002.html","food product"],["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A64642","Tetragenococcus muriaticus"],["NCBITaxon%3A1123359","Tetragenococcus muriaticus DSM 15685"]]},{"id":"NCBITaxon:1123368","l":"Thermithiobacillus tepidarius DSM 3134","na":2,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A929","Thermithiobacillus tepidarius"],["NCBITaxon%3A1123368","Thermithiobacillus tepidarius DSM 3134"]]},{"id":"NCBITaxon:1123371","l":"Thermodesulfatator atlanticus DSM 21156","na":2,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ridge-envo-00000283.html","ridge"]],"b":[["NCBITaxon%3A501497","Thermodesulfatator atlanticus"],["NCBITaxon%3A1123371","Thermodesulfatator atlanticus DSM 21156"]]},{"id":"NCBITaxon:1123373","l":"Thermodesulfobacterium thermophilum DSM 1276","na":2,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A886","Thermodesulfobacterium thermophilum"],["NCBITaxon%3A1123373","Thermodesulfobacterium thermophilum DSM 1276"]]},{"id":"NCBITaxon:1123380","l":"Thermosipho atlanticus DSM 15807","na":2,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["ridge-envo-00000283.html","ridge"]],"b":[["NCBITaxon%3A238991","Thermosipho atlanticus"],["NCBITaxon%3A1123380","Thermosipho atlanticus DSM 15807"]]},{"id":"NCBITaxon:1123405","l":"Tuberibacillus calidus DSM 17572","na":2,"nb":2,"a":[["compost-envo-00002170.html","compost"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A340097","Tuberibacillus calidus"],["NCBITaxon%3A1123405","Tuberibacillus calidus DSM 17572"]]},{"id":"NCBITaxon:1123500","l":"Weissella halotolerans DSM 20190","na":2,"nb":2,"a":[["food-product-foodon-00001002.html","food product"],["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A1615","Weissella halotolerans"],["NCBITaxon%3A1123500","Weissella halotolerans DSM 20190"]]},{"id":"NCBITaxon:1124597","l":"Magnetococcus marinus","na":2,"nb":2,"a":[["brackish-water-envo-00002019.html","brackish water"],["brackish-water-body-envo-01001321.html","brackish water body"]],"b":[["NCBITaxon%3A1124597","Magnetococcus marinus"],["NCBITaxon%3A156889","Magnetococcus marinus MC-1"]]},{"id":"NCBITaxon:1132443","l":"Methylosarcina fibrata AML-C10","na":2,"nb":2,"a":[["landfill-envo-00000533.html","landfill"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A105972","Methylosarcina fibrata"],["NCBITaxon%3A1132443","Methylosarcina fibrata AML-C10"]]},{"id":"NCBITaxon:1160719","l":"Cutibacterium granulosum DSM 20700","na":2,"nb":2,"a":[["sebaceous-gland-bto-0001980.html","sebaceous gland"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["NCBITaxon%3A33011","Cutibacterium granulosum"],["NCBITaxon%3A1160719","Cutibacterium granulosum DSM 20700"]]},{"id":"NCBITaxon:1165090","l":"Imtechella halotolerans","na":2,"nb":2,"a":[["brackish-water-envo-00002019.html","brackish water"],["brackish-water-body-envo-01001321.html","brackish water body"]],"b":[["NCBITaxon%3A1165090","Imtechella halotolerans"],["NCBITaxon%3A946077","Imtechella halotolerans K1"]]},{"id":"NCBITaxon:1168067","l":"Hydrogenovibrio kuenenii DSM 12350","na":2,"nb":2,"a":[["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A63658","Hydrogenovibrio kuenenii"],["NCBITaxon%3A1168067","Hydrogenovibrio kuenenii DSM 12350"]]},{"id":"NCBITaxon:1173061","l":"Geotrichum candidum","na":2,"nb":2,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A104098","Acetobacter peroxydans"],["NCBITaxon%3A1173061","Geotrichum candidum"]]},{"id":"NCBITaxon:1193095","l":"Paucilactobacillus hokkaidonensis","na":2,"nb":2,"a":[["immune-system-bto-0005810.html","immune system"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A1193095","Paucilactobacillus hokkaidonensis"],["NCBITaxon%3A1291742","Paucilactobacillus hokkaidonensis JCM 18461"]]},{"id":"NCBITaxon:119394","l":"Pseudothermotoga thermarum","na":2,"nb":2,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A119394","Pseudothermotoga thermarum"],["NCBITaxon%3A688269","Pseudothermotoga thermarum DSM 5069"]]},{"id":"NCBITaxon:1206734","l":"Nocardia paucivorans NBRC 100373","na":2,"nb":2,"a":[["secretion-bto-0002979.html","secretion"],["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A114259","Nocardia paucivorans"],["NCBITaxon%3A1206734","Nocardia paucivorans NBRC 100373"]]},{"id":"NCBITaxon:1207542","l":"Bifidobacterium bifidum LMG 13195","na":2,"nb":2,"a":[["leukocyte-bto-0000751.html","leukocyte"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"]],"b":[["NCBITaxon%3A1681","Bifidobacterium bifidum"],["NCBITaxon%3A1207542","Bifidobacterium bifidum LMG 13195"]]},{"id":"NCBITaxon:120962","l":"Roseiflexus castenholzii","na":2,"nb":2,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["NCBITaxon%3A120962","Roseiflexus castenholzii"],["NCBITaxon%3A383372","Roseiflexus castenholzii DSM 13941"]]},{"id":"NCBITaxon:1210098","l":"Nocardia vaccinii NBRC 15922","na":2,"nb":2,"a":[["plant-gall-po-0025626.html","plant gall"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["NCBITaxon%3A1822","Nocardia vaccinii"],["NCBITaxon%3A1210098","Nocardia vaccinii NBRC 15922"]]},{"id":"NCBITaxon:1215098","l":"Pseudomonas cremoricolorata DSM 17059 = NBRC 16634","na":2,"nb":2,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["NCBITaxon%3A157783","Pseudomonas cremoricolorata"],["NCBITaxon%3A1215098","Pseudomonas cremoricolorata DSM 17059 = NBRC 16634"]]},{"id":"NCBITaxon:1215103","l":"Pseudomonas indica NBRC 103045","na":2,"nb":2,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A137658","Pseudomonas indica"],["NCBITaxon%3A1215103","Pseudomonas indica NBRC 103045"]]},{"id":"NCBITaxon:1215114","l":"Pseudomonas parafulva NBRC 16636 = DSM 17004","na":2,"nb":2,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["NCBITaxon%3A157782","Pseudomonas parafulva"],["NCBITaxon%3A1215114","Pseudomonas parafulva NBRC 16636 = DSM 17004"]]},{"id":"NCBITaxon:1219042","l":"Novosphingobium capsulatum NBRC 12533","na":2,"nb":2,"a":[["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A13688","Novosphingobium capsulatum"],["NCBITaxon%3A1219042","Novosphingobium capsulatum NBRC 12533"]]},{"id":"NCBITaxon:1219071","l":"Vibrio harveyi NBRC 15634 = ATCC 14126 = KCTC 12724","na":2,"nb":2,"a":[["alimentary-canal-bto-0000058.html","alimentary canal"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A669","Vibrio harveyi"],["NCBITaxon%3A1219071","Vibrio harveyi NBRC 15634 = ATCC 14126 = KCTC 12724"]]},{"id":"NCBITaxon:1220554","l":"Actinomadura chibensis NBRC 106107","na":2,"nb":2,"a":[["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A392828","Actinomadura chibensis"],["NCBITaxon%3A1220554","Actinomadura chibensis NBRC 106107"]]},{"id":"NCBITaxon:1223527","l":"Microbacterium hydrocarbonoxydans NBRC 103074","na":2,"nb":2,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A273678","Microbacterium hydrocarbonoxydans"],["NCBITaxon%3A1223527","Microbacterium hydrocarbonoxydans NBRC 103074"]]},{"id":"NCBITaxon:1224163","l":"Corynebacterium maris DSM 45190","na":2,"nb":2,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"],["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A575200","Corynebacterium maris"],["NCBITaxon%3A1224163","Corynebacterium maris DSM 45190"]]},{"id":"NCBITaxon:1224742","l":"Vibrio campbellii CAIM 519 = NBRC 15631 = ATCC 25920","na":2,"nb":2,"a":[["kidney-bto-0000671.html","kidney"],["renal-cortex-bto-0001166.html","renal cortex"]],"b":[["NCBITaxon%3A680","Vibrio campbellii"],["NCBITaxon%3A1224742","Vibrio campbellii CAIM 519 = NBRC 15631 = ATCC 25920"]]},{"id":"NCBITaxon:1226751","l":"Mycolicibacterium monacense DSM 44395","na":2,"nb":2,"a":[["bronchus-uberon-0002185.html","bronchus"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A85693","Mycolicibacterium monacense"],["NCBITaxon%3A1226751","Mycolicibacterium monacense DSM 44395"]]},{"id":"NCBITaxon:1227812","l":"Piscirickettsia salmonis LF-89 = ATCC VR-1361","na":2,"nb":2,"a":[["head-kidney-bto-0005189.html","head kidney"],["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A1238","Piscirickettsia salmonis"],["NCBITaxon%3A1227812","Piscirickettsia salmonis LF-89 = ATCC VR-1361"]]},{"id":"NCBITaxon:122960","l":"Paenalicyclobacillus herbarius","na":2,"nb":2,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A1120972","Alicyclobacillus herbarius DSM 13609"],["NCBITaxon%3A122960","Paenalicyclobacillus herbarius"]]},{"id":"NCBITaxon:1236548","l":"Bacillus inaquosorum KCTC 13429","na":2,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"],["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A483913","Bacillus inaquosorum"],["NCBITaxon%3A1236548","Bacillus inaquosorum KCTC 13429"]]},{"id":"NCBITaxon:1251","l":"Leuconostoc fallax","na":2,"nb":2,"a":[["plant-resin-po-0025603.html","plant resin"],["animal-manure-envo-00003031.html","animal manure"]],"b":[["NCBITaxon%3A1251","Leuconostoc fallax"],["NCBITaxon%3A907931","Leuconostoc fallax KCTC 3537"]]},{"id":"NCBITaxon:1265311","l":"Mycobacterium arosiense ATCC BAA-1401 = DSM 45069","na":2,"nb":2,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["bone-element-uberon-0001474.html","bone element"]],"b":[["NCBITaxon%3A425468","Mycobacterium arosiense"],["NCBITaxon%3A1265311","Mycobacterium arosiense ATCC BAA-1401 = DSM 45069"]]},{"id":"NCBITaxon:1265504","l":"Curvibacter lanceolatus ATCC 14669","na":2,"nb":2,"a":[["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A86182","Curvibacter lanceolatus"],["NCBITaxon%3A1265504","Curvibacter lanceolatus ATCC 14669"]]},{"id":"NCBITaxon:1265505","l":"Desulfospira joergensenii DSM 10085","na":2,"nb":2,"a":[["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A53329","Desulfospira joergensenii"],["NCBITaxon%3A1265505","Desulfospira joergensenii DSM 10085"]]},{"id":"NCBITaxon:1265507","l":"Succinimonas amylolytica DSM 2873","na":2,"nb":2,"a":[["foregut-bto-0000507.html","foregut"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A83769","Succinimonas amylolytica"],["NCBITaxon%3A1265507","Succinimonas amylolytica DSM 2873"]]},{"id":"NCBITaxon:1267754","l":"Corynebacterium urealyticum DSM 7111","na":2,"nb":2,"a":[["kidney-bto-0000671.html","kidney"],["urinary-tract-bto-0001244.html","urinary tract"]],"b":[["NCBITaxon%3A43771","Corynebacterium urealyticum"],["NCBITaxon%3A1267754","Corynebacterium urealyticum DSM 7111"]]},{"id":"NCBITaxon:1278303","l":"Psychromonas macrocephali ATCC BAA-1527","na":2,"nb":2,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A444920","Psychromonas macrocephali"],["NCBITaxon%3A1278303","Psychromonas macrocephali ATCC BAA-1527"]]},{"id":"NCBITaxon:1278309","l":"Amphritea japonica ATCC BAA-1530","na":2,"nb":2,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A452627","Amphritea japonica"],["NCBITaxon%3A1278309","Amphritea japonica ATCC BAA-1530"]]},{"id":"NCBITaxon:1278310","l":"Amphritea balenae ATCC BAA-1529","na":2,"nb":2,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A452629","Amphritea balenae"],["NCBITaxon%3A1278310","Amphritea balenae ATCC BAA-1529"]]},{"id":"NCBITaxon:1278312","l":"Psychromonas aquimarina ATCC BAA-1526","na":2,"nb":2,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A444919","Psychromonas aquimarina"],["NCBITaxon%3A1278312","Psychromonas aquimarina ATCC BAA-1526"]]},{"id":"NCBITaxon:1291048","l":"Thermoanaerobacter thermocopriae JCM 7501","na":2,"nb":2,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A29350","Thermoanaerobacter thermocopriae"],["NCBITaxon%3A1291048","Thermoanaerobacter thermocopriae JCM 7501"]]},{"id":"NCBITaxon:12917","l":"Acidovorax facilis","na":2,"nb":2,"a":[["biome-envo-00000428.html","biome"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A12917","Acidovorax facilis"],["NCBITaxon%3A1872122","Acidovorax sp."]]},{"id":"NCBITaxon:1292027","l":"Stutzerimonas azotifigens DSM 17556","na":2,"nb":2,"a":[["compost-envo-00002170.html","compost"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A291995","Stutzerimonas azotifigens"],["NCBITaxon%3A1292027","Stutzerimonas azotifigens DSM 17556"]]},{"id":"NCBITaxon:1297617","l":"Intestinimonas butyriciproducens","na":2,"nb":2,"a":[["enterocyte-bto-0000398.html","enterocyte"],["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A1297617","Intestinimonas butyriciproducens"],["NCBITaxon%3A1470357","Intestinimonas butyriciproducens AP4"]]},{"id":"NCBITaxon:1313303","l":"Xanthomonas oryzae ATCC 35933","na":2,"nb":2,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["NCBITaxon%3A347","Xanthomonas oryzae"],["NCBITaxon%3A1313303","Xanthomonas oryzae ATCC 35933"]]},{"id":"NCBITaxon:132144","l":"Candidatus Glomeribacter gigasporarum","na":2,"nb":2,"a":[["marine-water-body-envo-00001999.html","marine water body"],["stream-envo-00000023.html","stream"]],"b":[["NCBITaxon%3A132144","Candidatus Glomeribacter gigasporarum"],["NCBITaxon%3A1070319","Candidatus Glomeribacter gigasporarum BEG34"]]},{"id":"NCBITaxon:132249","l":"Nocardia veterana","na":2,"nb":2,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A132249","Nocardia veterana"],["NCBITaxon%3A1206743","Nocardia veterana NBRC 100344"]]},{"id":"NCBITaxon:134034","l":"Corynebacterium freneyi","na":2,"nb":2,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A134034","Corynebacterium freneyi"],["NCBITaxon%3A1287475","Corynebacterium freneyi DNF00450"]]},{"id":"NCBITaxon:1349763","l":"Curvibacter delicatus NBRC 14919","na":2,"nb":2,"a":[["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A80879","Curvibacter delicatus"],["NCBITaxon%3A1349763","Curvibacter delicatus NBRC 14919"]]},{"id":"NCBITaxon:1358026","l":"Leifsonia aquatica ATCC 14665","na":2,"nb":2,"a":[["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A144185","Leifsonia aquatica"],["NCBITaxon%3A1358026","Leifsonia aquatica ATCC 14665"]]},{"id":"NCBITaxon:1366054","l":"Nannocystis exedens subsp. cinnabaria","na":2,"nb":2,"a":[["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A54","Nannocystis exedens"],["NCBITaxon%3A1366054","Nannocystis exedens subsp. cinnabaria"]]},{"id":"NCBITaxon:1367848","l":"Cronobacter sakazakii NCIMB 8272","na":2,"nb":2,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A28141","Cronobacter sakazakii"],["NCBITaxon%3A1367848","Cronobacter sakazakii NCIMB 8272"]]},{"id":"NCBITaxon:1385511","l":"Pontibacillus marinus BH030004 = DSM 16465","na":2,"nb":2,"a":[["pond-envo-00000033.html","pond"],["saline-evaporation-pond-envo-00000055.html","saline evaporation pond"]],"b":[["NCBITaxon%3A273164","Pontibacillus marinus"],["NCBITaxon%3A1385511","Pontibacillus marinus BH030004 = DSM 16465"]]},{"id":"NCBITaxon:1385515","l":"Lysobacter defluvii IMMIB APB-9 = DSM 18482","na":2,"nb":2,"a":[["landfill-envo-00000533.html","landfill"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A1385515","Lysobacter defluvii IMMIB APB-9 = DSM 18482"],["NCBITaxon%3A391738","Novilysobacter defluvii"]]},{"id":"NCBITaxon:1385984","l":"Exiguobacterium chiriqhucha","na":2,"nb":2,"a":[["water-ice-envo-01000277.html","water ice"],["peak-envo-00000480.html","peak"]],"b":[["NCBITaxon%3A1385984","Exiguobacterium chiriqhucha"],["NCBITaxon%3A1345023","Exiguobacterium chiriqhucha RW-2"]]},{"id":"NCBITaxon:1397696","l":"Exiguobacterium marinum DSM 16307","na":2,"nb":2,"a":[["beach-envo-00000091.html","beach"],["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["NCBITaxon%3A273528","Exiguobacterium marinum"],["NCBITaxon%3A1397696","Exiguobacterium marinum DSM 16307"]]},{"id":"NCBITaxon:1401","l":"Paenibacillus lautus","na":2,"nb":2,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A1401","Paenibacillus lautus"],["NCBITaxon%3A1349780","Paenibacillus lautus NBRC 15380"]]},{"id":"NCBITaxon:1404341","l":"Sphingobium scionense","na":2,"nb":2,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"],["oil-envo-00002985.html","oil"]],"b":[["NCBITaxon%3A1206997","Pseudonocardia nematodicida"],["NCBITaxon%3A1404341","Sphingobium scionense"]]},{"id":"NCBITaxon:1408191","l":"Corynebacterium deserti","na":2,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"],["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A1408191","Corynebacterium deserti"],["NCBITaxon%3A931089","Corynebacterium deserti GIMN1.010"]]},{"id":"NCBITaxon:1408420","l":"Paracidovorax oryzae ATCC 19882","na":2,"nb":2,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["NCBITaxon%3A862720","Paracidovorax oryzae"],["NCBITaxon%3A1408420","Paracidovorax oryzae ATCC 19882"]]},{"id":"NCBITaxon:1408424","l":"Alkalihalobacillus bogoriensis ATCC BAA-922","na":2,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A1408424","Alkalihalobacillus bogoriensis ATCC BAA-922"],["NCBITaxon%3A246272","Alkalihalobacterium bogoriense"]]},{"id":"NCBITaxon:1423144","l":"Phaeobacter gallaeciensis DSM 26640","na":2,"nb":2,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A60890","Phaeobacter gallaeciensis"],["NCBITaxon%3A1423144","Phaeobacter gallaeciensis DSM 26640"]]},{"id":"NCBITaxon:1435036","l":"Acinetobacter bohemicus","na":2,"nb":2,"a":[["sludge-envo-00002044.html","sludge"],["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A1435036","Acinetobacter bohemicus"],["NCBITaxon%3A1217715","Acinetobacter bohemicus ANC 3994"]]},{"id":"NCBITaxon:1449351","l":"Roseivivax isoporae LMG 25204","na":2,"nb":2,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A591206","Roseivivax isoporae"],["NCBITaxon%3A1449351","Roseivivax isoporae LMG 25204"]]},{"id":"NCBITaxon:1462938","l":"Rickettsia tamurae subsp. buchneri","na":2,"nb":2,"a":[["embryonic-cell-line-bto-0000669.html","embryonic cell line"],["ovary-bto-0000975.html","ovary"]],"b":[["NCBITaxon%3A334545","Rickettsia tamurae"],["NCBITaxon%3A1462938","Rickettsia tamurae subsp. buchneri"]]},{"id":"NCBITaxon:1523","l":"Clostridium longisporum","na":2,"nb":2,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1523","Clostridium longisporum"],["NCBITaxon%3A1761781","Clostridium sp. DSM 8431"]]},{"id":"NCBITaxon:1527","l":"Anaerocolumna aminovalerica","na":2,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"]],"b":[["NCBITaxon%3A1527","Anaerocolumna aminovalerica"],["NCBITaxon%3A1121297","Anaerocolumna aminovalerica DSM 1283"]]},{"id":"NCBITaxon:153151","l":"Parageobacillus toebii","na":2,"nb":2,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A153151","Parageobacillus toebii"],["NCBITaxon%3A1223503","Parageobacillus toebii NBRC 107807"]]},{"id":"NCBITaxon:1563","l":"Desulfosporosinus orientis","na":2,"nb":2,"a":[["grassland-soil-envo-00005750.html","grassland soil"],["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["NCBITaxon%3A1563","Desulfosporosinus orientis"],["NCBITaxon%3A768706","Desulfosporosinus orientis DSM 765"]]},{"id":"NCBITaxon:156889","l":"Magnetococcus marinus MC-1","na":2,"nb":2,"a":[["estuary-envo-00000045.html","estuary"],["marine-neritic-zone-envo-00000206.html","marine neritic zone"]],"b":[["NCBITaxon%3A1124597","Magnetococcus marinus"],["NCBITaxon%3A156889","Magnetococcus marinus MC-1"]]},{"id":"NCBITaxon:156977","l":"Microbacterium resistens","na":2,"nb":2,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A156977","Microbacterium resistens"],["NCBITaxon%3A1223505","Microbacterium resistens NBRC 103078"]]},{"id":"NCBITaxon:161890","l":"Corynebacterium mastitidis","na":2,"nb":2,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["NCBITaxon%3A161890","Corynebacterium mastitidis"],["NCBITaxon%3A1121365","Corynebacterium mastitidis DSM 44356"]]},{"id":"NCBITaxon:162426","l":"Microbacterium hominis","na":2,"nb":2,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A162426","Microbacterium hominis"],["NCBITaxon%3A1348634","Microbacterium hominis NBRC 15708"]]},{"id":"NCBITaxon:1626","l":"Lacticaseibacillus sharpeae","na":2,"nb":2,"a":[["pig-manure-envo-00003860.html","pig manure"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["NCBITaxon%3A1626","Lacticaseibacillus sharpeae"],["NCBITaxon%3A1291052","Lacticaseibacillus sharpeae JCM 1186 = DSM 20505"]]},{"id":"NCBITaxon:164759","l":"Diaphorobacter nitroreducens","na":2,"nb":2,"a":[["activated-sludge-envo-00002046.html","activated sludge"],["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A164759","Diaphorobacter nitroreducens"],["NCBITaxon%3A1236961","Diaphorobacter nitroreducens JCM 11421"]]},{"id":"NCBITaxon:165","l":"Treponema saccharophilum","na":2,"nb":2,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["lagoon-envo-00000038.html","lagoon"]],"b":[["NCBITaxon%3A165","Treponema saccharophilum"],["NCBITaxon%3A907348","Treponema saccharophilum DSM 2985"]]},{"id":"NCBITaxon:169679","l":"Clostridium saccharobutylicum","na":2,"nb":2,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"]],"b":[["NCBITaxon%3A169679","Clostridium saccharobutylicum"],["NCBITaxon%3A1345695","Clostridium saccharobutylicum DSM 13864"]]},{"id":"NCBITaxon:176292","l":"Secundilactobacillus malefermentans","na":2,"nb":2,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["NCBITaxon%3A176292","Secundilactobacillus malefermentans"],["NCBITaxon%3A1122149","Secundilactobacillus malefermentans DSM 5705 = KCTC 3548"]]},{"id":"NCBITaxon:180311","l":"Hespellia stercorisuis","na":2,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["NCBITaxon%3A180311","Hespellia stercorisuis"],["NCBITaxon%3A1121950","Hespellia stercorisuis DSM 15480"]]},{"id":"NCBITaxon:184067","l":"Kushneria indalinina","na":2,"nb":2,"a":[["pond-envo-00000033.html","pond"],["saline-evaporation-pond-envo-00000055.html","saline evaporation pond"]],"b":[["NCBITaxon%3A184067","Kushneria indalinina"],["NCBITaxon%3A1122140","Kushneria indalinina DSM 14324"]]},{"id":"NCBITaxon:1863","l":"Dermatophilus congolensis","na":2,"nb":2,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["NCBITaxon%3A1863","Dermatophilus congolensis"],["NCBITaxon%3A1121387","Dermatophilus congolensis DSM 44180 = NBRC 105199"]]},{"id":"NCBITaxon:187101","l":"Sneathia vaginalis","na":2,"nb":2,"a":[["reproductive-system-bto-0000081.html","reproductive system"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A187101","Sneathia vaginalis"],["NCBITaxon%3A553161","Sneathia vaginalis JCVIHMP001"]]},{"id":"NCBITaxon:1871063","l":"Aeromicrobium sp.","na":2,"nb":2,"a":[["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A2708114","Aeromicrobium panacisoli"],["NCBITaxon%3A1871063","Aeromicrobium sp."]]},{"id":"NCBITaxon:190485","l":"Xanthomonas campestris pv. campestris str. ATCC 33913","na":2,"nb":2,"a":[["fruit-bto-0000486.html","fruit"],["vascular-tissue-bto-0001432.html","vascular tissue"]],"b":[["NCBITaxon%3A339","Xanthomonas campestris"],["NCBITaxon%3A190485","Xanthomonas campestris pv. campestris str. ATCC 33913"]]},{"id":"NCBITaxon:190650","l":"Caulobacter vibrioides CB15","na":2,"nb":2,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A155892","Caulobacter vibrioides"],["NCBITaxon%3A190650","Caulobacter vibrioides CB15"]]},{"id":"NCBITaxon:194963","l":"Sinorhizobium americanum","na":2,"nb":2,"a":[["root-nodule-envo-01000164.html","root nodule"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A194963","Sinorhizobium americanum"],["NCBITaxon%3A1408224","Sinorhizobium americanum CCGM7"]]},{"id":"NCBITaxon:204470","l":"Paenalicyclobacillus pomorum","na":2,"nb":2,"a":[["surface-water-envo-00002042.html","surface water"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["NCBITaxon%3A1111479","Alicyclobacillus pomorum DSM 14955"],["NCBITaxon%3A204470","Paenalicyclobacillus pomorum"]]},{"id":"NCBITaxon:209897","l":"Afifella pfennigii","na":2,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["NCBITaxon%3A209897","Afifella pfennigii"],["NCBITaxon%3A1120956","Afifella pfennigii DSM 17143"]]},{"id":"NCBITaxon:210512","l":"Sandarakinorhabdus limnophila","na":2,"nb":2,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["water-body-envo-00000063.html","water body"]],"b":[["NCBITaxon%3A210512","Sandarakinorhabdus limnophila"],["NCBITaxon%3A1123240","Sandarakinorhabdus limnophila DSM 17366"]]},{"id":"NCBITaxon:216432","l":"Croceibacter atlanticus HTCC2559","na":2,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["NCBITaxon%3A313588","Croceibacter atlanticus"],["NCBITaxon%3A216432","Croceibacter atlanticus HTCC2559"]]},{"id":"NCBITaxon:218205","l":"Garciella nitratireducens","na":2,"nb":2,"a":[["ocean-trench-envo-00000275.html","ocean trench"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A218205","Garciella nitratireducens"],["NCBITaxon%3A1121911","Garciella nitratireducens DSM 15102"]]},{"id":"NCBITaxon:2200","l":"Methanoculleus thermophilus","na":2,"nb":2,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"]],"b":[["NCBITaxon%3A2200","Methanoculleus thermophilus"],["NCBITaxon%3A1122231","Methanoculleus thermophilus DSM 2373"]]},{"id":"NCBITaxon:221109","l":"Oceanobacillus iheyensis HTE831","na":2,"nb":2,"a":[["duodenum-bto-0000365.html","duodenum"],["kidney-bto-0000671.html","kidney"]],"b":[["NCBITaxon%3A182710","Oceanobacillus iheyensis"],["NCBITaxon%3A221109","Oceanobacillus iheyensis HTE831"]]},{"id":"NCBITaxon:223390","l":"Ancylobacter polymorphus","na":2,"nb":2,"a":[["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"]],"b":[["NCBITaxon%3A286438","Agromyces hippuratus"],["NCBITaxon%3A223390","Ancylobacter polymorphus"]]},{"id":"NCBITaxon:2264","l":"Thermococcus celer","na":2,"nb":2,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A2264","Thermococcus celer"],["NCBITaxon%3A1293037","Thermococcus celer Vu 13 = JCM 8558"]]},{"id":"NCBITaxon:2303","l":"Thermoplasma acidophilum","na":2,"nb":2,"a":[["paddy-field-envo-00000297.html","paddy field"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["NCBITaxon%3A2303","Thermoplasma acidophilum"],["NCBITaxon%3A273075","Thermoplasma acidophilum DSM 1728"]]},{"id":"NCBITaxon:231233","l":"Streptococcus devriesei","na":2,"nb":2,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A231233","Streptococcus devriesei"],["NCBITaxon%3A1123300","Streptococcus devriesei DSM 19639"]]},{"id":"NCBITaxon:2369","l":"Arhodomonas aquaeolei","na":2,"nb":2,"a":[["small-river-biome-envo-00000890.html","small river biome"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["NCBITaxon%3A2369","Arhodomonas aquaeolei"],["NCBITaxon%3A1121016","Arhodomonas aquaeolei DSM 8974"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii DSM 2661","na":2,"nb":2,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A2190","Methanocaldococcus jannaschii"],["NCBITaxon%3A243232","Methanocaldococcus jannaschii DSM 2661"]]},{"id":"NCBITaxon:244592","l":"Roseibium alexandrii DFL-11","na":2,"nb":2,"a":[["sandstone-envo-00002055.html","sandstone"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["NCBITaxon%3A388408","Roseibium alexandrii"],["NCBITaxon%3A244592","Roseibium alexandrii DFL-11"]]},{"id":"NCBITaxon:266265","l":"Paraburkholderia xenovorans LB400","na":2,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["landfill-envo-00000533.html","landfill"]],"b":[["NCBITaxon%3A36873","Paraburkholderia xenovorans"],["NCBITaxon%3A266265","Paraburkholderia xenovorans LB400"]]},{"id":"NCBITaxon:269482","l":"Burkholderia vietnamiensis G4","na":2,"nb":2,"a":[["air-envo-00002005.html","air"],["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A60552","Burkholderia vietnamiensis"],["NCBITaxon%3A269482","Burkholderia vietnamiensis G4"]]},{"id":"NCBITaxon:271848","l":"Burkholderia thailandensis E264","na":2,"nb":2,"a":[["needle-bto-0000917.html","needle"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A57975","Burkholderia thailandensis"],["NCBITaxon%3A271848","Burkholderia thailandensis E264"]]},{"id":"NCBITaxon:272161","l":"Arthrobacter stackebrandtii","na":2,"nb":2,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A272161","Arthrobacter stackebrandtii"],["NCBITaxon%3A1302660","Arthrobacter stackebrandtii Ln5.10"]]},{"id":"NCBITaxon:2746","l":"Halomonas elongata","na":2,"nb":2,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"],["saline-water-body-envo-01001319.html","saline water body"]],"b":[["NCBITaxon%3A2746","Halomonas elongata"],["NCBITaxon%3A768066","Halomonas elongata DSM 2581"]]},{"id":"NCBITaxon:28128","l":"Prevotella corporis","na":2,"nb":2,"a":[["environmental-feature-envo-00002297.html","environmental feature"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A28128","Prevotella corporis"],["NCBITaxon%3A1122981","Prevotella corporis DSM 18810 = JCM 8529"]]},{"id":"NCBITaxon:28172","l":"Vibrio metschnikovii","na":2,"nb":2,"a":[["heated-burned-habitatmech-bacdive-8bf2766463.html","Heated-Burned"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A28172","Vibrio metschnikovii"],["NCBITaxon%3A675813","Vibrio metschnikovii CIP 69.14"]]},{"id":"NCBITaxon:282199","l":"Nereida ignava","na":2,"nb":2,"a":[["sandstone-envo-00002055.html","sandstone"],["bile-bto-0000121.html","bile"]],"b":[["NCBITaxon%3A282199","Nereida ignava"],["NCBITaxon%3A1122600","Nereida ignava DSM 16309"]]},{"id":"NCBITaxon:28223","l":"Desulfobacula toluolica","na":2,"nb":2,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A28223","Desulfobacula toluolica"],["NCBITaxon%3A651182","Desulfobacula toluolica Tol2"]]},{"id":"NCBITaxon:28229","l":"Colwellia psychrerythraea","na":2,"nb":2,"a":[["egg-food-product-foodon-00001274.html","egg food product"],["fumarole-envo-00000216.html","fumarole"]],"b":[["NCBITaxon%3A28229","Colwellia psychrerythraea"],["NCBITaxon%3A167879","Colwellia psychrerythraea 34H"]]},{"id":"NCBITaxon:28254","l":"Marinomonas communis","na":2,"nb":2,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A2743","Marinobacter nauticus"],["NCBITaxon%3A28254","Marinomonas communis"]]},{"id":"NCBITaxon:283166","l":"Bartonella henselae str. Houston-1","na":2,"nb":2,"a":[["endothelial-cell-bto-0001176.html","endothelial cell"],["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["NCBITaxon%3A38323","Bartonella henselae"],["NCBITaxon%3A283166","Bartonella henselae str. Houston-1"]]},{"id":"NCBITaxon:28446","l":"Anaerotignum propionicum","na":2,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["NCBITaxon%3A28446","Anaerotignum propionicum"],["NCBITaxon%3A991789","Anaerotignum propionicum DSM 1682"]]},{"id":"NCBITaxon:285106","l":"Tepidimicrobium ferriphilum","na":2,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["NCBITaxon%3A285106","Tepidimicrobium ferriphilum"],["NCBITaxon%3A1123351","Tepidimicrobium ferriphilum DSM 16624"]]},{"id":"NCBITaxon:292806","l":"Ureibacillus massiliensis","na":2,"nb":2,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["NCBITaxon%3A292806","Ureibacillus massiliensis"],["NCBITaxon%3A1211035","Ureibacillus massiliensis 4400831 = CIP 108448 = CCUG 49529"]]},{"id":"NCBITaxon:29292","l":"Pyrococcus abyssi","na":2,"nb":2,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A29292","Pyrococcus abyssi"],["NCBITaxon%3A272844","Pyrococcus abyssi GE5"]]},{"id":"NCBITaxon:29344","l":"Caloramator fervidus","na":2,"nb":2,"a":[["park-envo-00000562.html","park"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A29344","Caloramator fervidus"],["NCBITaxon%3A1121261","Caloramator fervidus DSM 5463"]]},{"id":"NCBITaxon:29364","l":"[Clostridium] polysaccharolyticum","na":2,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A29364","[Clostridium] polysaccharolyticum"],["NCBITaxon%3A1121329","[Clostridium] polysaccharolyticum DSM 1801"]]},{"id":"NCBITaxon:29446","l":"Xanthomonas sp.","na":2,"nb":2,"a":[["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["NCBITaxon%3A1720302","Xanthomonas massiliensis"],["NCBITaxon%3A29446","Xanthomonas sp."]]},{"id":"NCBITaxon:304371","l":"Methanocella paludicola SANAE","na":2,"nb":2,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["NCBITaxon%3A570267","Methanocella paludicola"],["NCBITaxon%3A304371","Methanocella paludicola SANAE"]]},{"id":"NCBITaxon:309807","l":"Salinibacter ruber DSM 13855","na":2,"nb":2,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A146919","Salinibacter ruber"],["NCBITaxon%3A309807","Salinibacter ruber DSM 13855"]]},{"id":"NCBITaxon:309889","l":"Deinococcus yavapaiensis","na":2,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"],["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A309889","Deinococcus yavapaiensis"],["NCBITaxon%3A694435","Deinococcus yavapaiensis KR-236"]]},{"id":"NCBITaxon:313594","l":"Polaribacter irgensii 23-P","na":2,"nb":2,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["NCBITaxon%3A531","Polaribacter irgensii"],["NCBITaxon%3A313594","Polaribacter irgensii 23-P"]]},{"id":"NCBITaxon:314345","l":"Mariprofundus ferrooxydans PV-1","na":2,"nb":2,"a":[["filament-bto-0000463.html","filament"],["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A314344","Mariprofundus ferrooxydans"],["NCBITaxon%3A314345","Mariprofundus ferrooxydans PV-1"]]},{"id":"NCBITaxon:316274","l":"Herpetosiphon aurantiacus DSM 785","na":2,"nb":2,"a":[["filament-bto-0000463.html","filament"],["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A65","Herpetosiphon aurantiacus"],["NCBITaxon%3A316274","Herpetosiphon aurantiacus DSM 785"]]},{"id":"NCBITaxon:320502","l":"Acetivibrio alkalicellulosi","na":2,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A320502","Acetivibrio alkalicellulosi"],["NCBITaxon%3A1002220","Acetivibrio alkalicellulosi DSM 17461"]]},{"id":"NCBITaxon:323097","l":"Nitrobacter hamburgensis X14","na":2,"nb":2,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A912","Nitrobacter hamburgensis"],["NCBITaxon%3A323097","Nitrobacter hamburgensis X14"]]},{"id":"NCBITaxon:3381696","l":"Methanothermobacter sp. DSM 3267","na":2,"nb":2,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["NCBITaxon%3A3381696","Methanothermobacter sp. DSM 3267"],["NCBITaxon%3A145262","Methanothermobacter thermautotrophicus"]]},{"id":"NCBITaxon:33885","l":"Microbacterium lacticum","na":2,"nb":2,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"],["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["NCBITaxon%3A33885","Microbacterium lacticum"],["NCBITaxon%3A596316","Microbacterium lacticum SK124"]]},{"id":"NCBITaxon:33936","l":"Aeribacillus pallidus","na":2,"nb":2,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["organic-waste-material-envo-00002873.html","organic waste material"]],"b":[["NCBITaxon%3A33936","Aeribacillus pallidus"],["NCBITaxon%3A1196032","Aeribacillus pallidus CIC9"]]},{"id":"NCBITaxon:33946","l":"Kurthia gibsonii","na":2,"nb":2,"a":[["area-of-tundra-envo-00000112.html","area of tundra"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["NCBITaxon%3A33946","Kurthia gibsonii"],["NCBITaxon%3A1650","Kurthia zopfii"]]},{"id":"NCBITaxon:33954","l":"Clostridium magnum","na":2,"nb":2,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"]],"b":[["NCBITaxon%3A33954","Clostridium magnum"],["NCBITaxon%3A1121326","Clostridium magnum DSM 2767"]]},{"id":"NCBITaxon:349307","l":"Methanothrix thermoacetophila PT","na":2,"nb":2,"a":[["rice-field-envo-00000296.html","rice field"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["NCBITaxon%3A2224","Methanothrix thermoacetophila"],["NCBITaxon%3A349307","Methanothrix thermoacetophila PT"]]},{"id":"NCBITaxon:350688","l":"Alkaliphilus oremlandii OhILAs","na":2,"nb":2,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["NCBITaxon%3A461876","Alkaliphilus oremlandii"],["NCBITaxon%3A350688","Alkaliphilus oremlandii OhILAs"]]},{"id":"NCBITaxon:356828","l":"Alloscardovia criceti","na":2,"nb":2,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A356828","Alloscardovia criceti"],["NCBITaxon%3A1122228","Alloscardovia criceti DSM 17774"]]},{"id":"NCBITaxon:357809","l":"Lachnoclostridium phytofermentans ISDg","na":2,"nb":2,"a":[["reservoir-envo-00000025.html","reservoir"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A66219","Lachnoclostridium phytofermentans"],["NCBITaxon%3A357809","Lachnoclostridium phytofermentans ISDg"]]},{"id":"NCBITaxon:35786","l":"Coprothermobacter proteolyticus","na":2,"nb":2,"a":[["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["NCBITaxon%3A35786","Coprothermobacter proteolyticus"],["NCBITaxon%3A309798","Coprothermobacter proteolyticus DSM 5265"]]},{"id":"NCBITaxon:358766","l":"Methanoregula boonei","na":2,"nb":2,"a":[["marsh-envo-00000035.html","marsh"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A358766","Methanoregula boonei"],["NCBITaxon%3A456442","Methanoregula boonei 6A8"]]},{"id":"NCBITaxon:369723","l":"Salinispora tropica CNB-440","na":2,"nb":2,"a":[["coarse-beach-sand-envo-00002148.html","coarse beach sand"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A168695","Salinispora tropica"],["NCBITaxon%3A369723","Salinispora tropica CNB-440"]]},{"id":"NCBITaxon:376805","l":"Phocaeicola salanitronis","na":2,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"],["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["NCBITaxon%3A376805","Phocaeicola salanitronis"],["NCBITaxon%3A667015","Phocaeicola salanitronis DSM 18170"]]},{"id":"NCBITaxon:383629","l":"Phaeobacter inhibens 2.10","na":2,"nb":2,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A221822","Phaeobacter inhibens"],["NCBITaxon%3A383629","Phaeobacter inhibens 2.10"]]},{"id":"NCBITaxon:388051","l":"Cupriavidus sp. amp6","na":2,"nb":2,"a":[["environmental-system-envo-01000254.html","environmental system"],["national-wildlife-refuge-envo-00000364.html","national wildlife refuge"]],"b":[["NCBITaxon%3A2821359","Cupriavidus phytohabitans"],["NCBITaxon%3A388051","Cupriavidus sp. amp6"]]},{"id":"NCBITaxon:391165","l":"Granulibacter bethesdensis CGDNIH1","na":2,"nb":2,"a":[["lymph-node-bto-0000784.html","lymph node"],["phagocyte-bto-0001044.html","phagocyte"]],"b":[["NCBITaxon%3A364410","Granulibacter bethesdensis"],["NCBITaxon%3A391165","Granulibacter bethesdensis CGDNIH1"]]},{"id":"NCBITaxon:391587","l":"Kordia algicida OT-1","na":2,"nb":2,"a":[["coral-reef-envo-00000150.html","coral reef"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A221066","Kordia algicida"],["NCBITaxon%3A391587","Kordia algicida OT-1"]]},{"id":"NCBITaxon:392499","l":"Rhizorhabdus wittichii RW1","na":2,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["NCBITaxon%3A160791","Rhizorhabdus wittichii"],["NCBITaxon%3A392499","Rhizorhabdus wittichii RW1"]]},{"id":"NCBITaxon:393664","l":"Aliirhizobium cellulosilyticum","na":2,"nb":2,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A393664","Aliirhizobium cellulosilyticum"],["NCBITaxon%3A1368426","Aliirhizobium cellulosilyticum ALA10B2"]]},{"id":"NCBITaxon:393762","l":"Natronincola ferrireducens","na":2,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A393762","Natronincola ferrireducens"],["NCBITaxon%3A1122595","Natronincola ferrireducens DSM 18346"]]},{"id":"NCBITaxon:394503","l":"Ruminiclostridium cellulolyticum H10","na":2,"nb":2,"a":[["agricultural-waste-material-envo-01000371.html","agricultural waste material"],["compost-envo-00002170.html","compost"]],"b":[["NCBITaxon%3A1521","Ruminiclostridium cellulolyticum"],["NCBITaxon%3A394503","Ruminiclostridium cellulolyticum H10"]]},{"id":"NCBITaxon:39490","l":"Eubacterium ramulus","na":2,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A39490","Eubacterium ramulus"],["NCBITaxon%3A1256908","Eubacterium ramulus ATCC 29099"]]},{"id":"NCBITaxon:395964","l":"Methylocapsa acidiphila B2","na":2,"nb":2,"a":[["wetland-area-envo-00000043.html","wetland area"],["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A133552","Methylocapsa acidiphila"],["NCBITaxon%3A395964","Methylocapsa acidiphila B2"]]},{"id":"NCBITaxon:398579","l":"Shewanella pealeana ATCC 700345","na":2,"nb":2,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["gland-bto-0000522.html","gland"]],"b":[["NCBITaxon%3A70864","Shewanella pealeana"],["NCBITaxon%3A398579","Shewanella pealeana ATCC 700345"]]},{"id":"NCBITaxon:398580","l":"Dinoroseobacter shibae DFL 12 = DSM 16493","na":2,"nb":2,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["stromatolite-mat-envo-00002157.html","stromatolite mat"]],"b":[["NCBITaxon%3A215813","Dinoroseobacter shibae"],["NCBITaxon%3A398580","Dinoroseobacter shibae DFL 12 = DSM 16493"]]},{"id":"NCBITaxon:398720","l":"Leeuwenhoekiella blandensis MED217","na":2,"nb":2,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A360293","Leeuwenhoekiella blandensis"],["NCBITaxon%3A398720","Leeuwenhoekiella blandensis MED217"]]},{"id":"NCBITaxon:39956","l":"Methylobacterium mesophilicum","na":2,"nb":2,"a":[["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A39956","Methylobacterium mesophilicum"],["NCBITaxon%3A908290","Methylobacterium mesophilicum SR1.6/6"]]},{"id":"NCBITaxon:400667","l":"Acinetobacter baumannii ATCC 17978","na":2,"nb":2,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"],["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A400667","Acinetobacter baumannii ATCC 17978"]]},{"id":"NCBITaxon:40091","l":"Helcococcus kunzii","na":2,"nb":2,"a":[["foot-bto-0000476.html","foot"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A40091","Helcococcus kunzii"],["NCBITaxon%3A883114","Helcococcus kunzii ATCC 51366"]]},{"id":"NCBITaxon:406327","l":"Methanococcus vannielii SB","na":2,"nb":2,"a":[["estuary-envo-00000045.html","estuary"],["mudflat-envo-00000192.html","mudflat"]],"b":[["NCBITaxon%3A2187","Methanococcus vannielii"],["NCBITaxon%3A406327","Methanococcus vannielii SB"]]},{"id":"NCBITaxon:411461","l":"Dorea formicigenerans ATCC 27755","na":2,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["NCBITaxon%3A39486","Dorea formicigenerans"],["NCBITaxon%3A411461","Dorea formicigenerans ATCC 27755"]]},{"id":"NCBITaxon:411462","l":"Dorea longicatena DSM 13814","na":2,"nb":2,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"]],"b":[["NCBITaxon%3A88431","Dorea longicatena"],["NCBITaxon%3A411462","Dorea longicatena DSM 13814"]]},{"id":"NCBITaxon:411463","l":"Eubacterium ventriosum ATCC 27560","na":2,"nb":2,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["NCBITaxon%3A39496","Eubacterium ventriosum"],["NCBITaxon%3A411463","Eubacterium ventriosum ATCC 27560"]]},{"id":"NCBITaxon:411469","l":"Anaerobutyricum hallii DSM 3353","na":2,"nb":2,"a":[["cow-shed-envo-00003041.html","cow shed"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["NCBITaxon%3A39488","Anaerobutyricum hallii"],["NCBITaxon%3A411469","Anaerobutyricum hallii DSM 3353"]]},{"id":"NCBITaxon:411902","l":"Enterocloster bolteae ATCC BAA-613","na":2,"nb":2,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"]],"b":[["NCBITaxon%3A208479","Enterocloster bolteae"],["NCBITaxon%3A411902","Enterocloster bolteae ATCC BAA-613"]]},{"id":"NCBITaxon:411903","l":"Collinsella aerofaciens ATCC 25986","na":2,"nb":2,"a":[["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"],["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A74426","Collinsella aerofaciens"],["NCBITaxon%3A411903","Collinsella aerofaciens ATCC 25986"]]},{"id":"NCBITaxon:41899","l":"Burkholderia plantarii","na":2,"nb":2,"a":[["panicle-bto-0005436.html","panicle"],["seedling-bto-0001228.html","seedling"]],"b":[["NCBITaxon%3A41899","Burkholderia plantarii"],["NCBITaxon%3A796107","Burkholderia plantarii MAFF 301723"]]},{"id":"NCBITaxon:420662","l":"Methylibium petroleiphilum PM1","na":2,"nb":2,"a":[["compost-biofilter-envo-00002153.html","compost biofilter"],["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A105560","Methylibium petroleiphilum"],["NCBITaxon%3A420662","Methylibium petroleiphilum PM1"]]},{"id":"NCBITaxon:420952","l":"Paraburkholderia bryophila","na":2,"nb":2,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A420952","Paraburkholderia bryophila"],["NCBITaxon%3A1169143","Paraburkholderia bryophila 376MFSha3.1"]]},{"id":"NCBITaxon:42256","l":"Rubrobacter radiotolerans","na":2,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["desert-sand-envo-00005800.html","desert sand"]],"b":[["NCBITaxon%3A42256","Rubrobacter radiotolerans"],["NCBITaxon%3A643560","Rubrobacter radiotolerans DSM 5868"]]},{"id":"NCBITaxon:424718","l":"Shigella flexneri 5a","na":2,"nb":2,"a":[["waste-treatment-plant-envo-00002272.html","waste treatment plant"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["NCBITaxon%3A424718","Shigella flexneri 5a"],["NCBITaxon%3A1086030","Shigella flexneri 5a str. M90T"]]},{"id":"NCBITaxon:426128","l":"Natronincola peptidivorans","na":2,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A426128","Natronincola peptidivorans"],["NCBITaxon%3A1122597","Natronincola peptidivorans DSM 18979"]]},{"id":"NCBITaxon:435590","l":"Phocaeicola vulgatus ATCC 8482","na":2,"nb":2,"a":[["bay-envo-00000032.html","bay"],["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["NCBITaxon%3A821","Phocaeicola vulgatus"],["NCBITaxon%3A435590","Phocaeicola vulgatus ATCC 8482"]]},{"id":"NCBITaxon:43671","l":"Actinotalea fermentans","na":2,"nb":2,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A43671","Actinotalea fermentans"],["NCBITaxon%3A862422","Actinotalea fermentans ATCC 43279 = JCM 9966 = DSM 3133"]]},{"id":"NCBITaxon:443152","l":"Marinobacter algicola DG893","na":2,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["NCBITaxon%3A236100","Marinobacter algicola"],["NCBITaxon%3A443152","Marinobacter algicola DG893"]]},{"id":"NCBITaxon:444157","l":"Pyrobaculum neutrophilum V24Sta","na":2,"nb":2,"a":[["silty-sediment-envo-01000119.html","silty sediment"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A70771","Pyrobaculum neutrophilum"],["NCBITaxon%3A444157","Pyrobaculum neutrophilum V24Sta"]]},{"id":"NCBITaxon:445972","l":"Anaerotruncus colihominis DSM 17241","na":2,"nb":2,"a":[["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["NCBITaxon%3A169435","Anaerotruncus colihominis"],["NCBITaxon%3A445972","Anaerotruncus colihominis DSM 17241"]]},{"id":"NCBITaxon:446471","l":"Xylanimonas cellulosilytica DSM 15894","na":2,"nb":2,"a":[["wood-envo-00002040.html","wood"],["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A186189","Xylanimonas cellulosilytica"],["NCBITaxon%3A446471","Xylanimonas cellulosilytica DSM 15894"]]},{"id":"NCBITaxon:450851","l":"Phenylobacterium zucineum HLK1","na":2,"nb":2,"a":[["erythroleukemia-cell-line-bto-0000846.html","erythroleukemia cell line"],["leukemia-cell-line-bto-0000737.html","leukemia cell line"]],"b":[["NCBITaxon%3A284016","Phenylobacterium zucineum"],["NCBITaxon%3A450851","Phenylobacterium zucineum HLK1"]]},{"id":"NCBITaxon:451757","l":"Clostridium perfringens NCTC 8239","na":2,"nb":2,"a":[["heated-burned-habitatmech-bacdive-8bf2766463.html","Heated-Burned"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A1502","Clostridium perfringens"],["NCBITaxon%3A451757","Clostridium perfringens NCTC 8239"]]},{"id":"NCBITaxon:456442","l":"Methanoregula boonei 6A8","na":2,"nb":2,"a":[["wetland-area-envo-00000043.html","wetland area"],["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A358766","Methanoregula boonei"],["NCBITaxon%3A456442","Methanoregula boonei 6A8"]]},{"id":"NCBITaxon:456493","l":"Saccharibacillus sacchari","na":2,"nb":2,"a":[["vasculature-uberon-0002049.html","vasculature"],["part-of-plant-habitatmech-madin-25325947e2.html","part of plant"]],"b":[["NCBITaxon%3A456493","Saccharibacillus sacchari"],["NCBITaxon%3A915437","Saccharibacillus sacchari DSM 19268"]]},{"id":"NCBITaxon:46539","l":"Thermococcus hydrothermalis","na":2,"nb":2,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A46539","Thermococcus hydrothermalis"],["NCBITaxon%3A522522","Thermococcus hydrothermalis AL662"]]},{"id":"NCBITaxon:468059","l":"Daejeonella oryzae DSM 19973","na":2,"nb":2,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["NCBITaxon%3A1122943","Daejeonella oryzae"],["NCBITaxon%3A468059","Daejeonella oryzae DSM 19973"]]},{"id":"NCBITaxon:469382","l":"Halogeometricum borinquense DSM 11551","na":2,"nb":2,"a":[["pond-envo-00000033.html","pond"],["saline-evaporation-pond-envo-00000055.html","saline evaporation pond"]],"b":[["NCBITaxon%3A60847","Halogeometricum borinquense"],["NCBITaxon%3A469382","Halogeometricum borinquense DSM 11551"]]},{"id":"NCBITaxon:471853","l":"Beutenbergia cavernae DSM 12333","na":2,"nb":2,"a":[["cave-envo-00000067.html","cave"],["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A84757","Beutenbergia cavernae"],["NCBITaxon%3A471853","Beutenbergia cavernae DSM 12333"]]},{"id":"NCBITaxon:471854","l":"Dyadobacter fermentans DSM 18053","na":2,"nb":2,"a":[["filament-bto-0000463.html","filament"],["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A94254","Dyadobacter fermentans"],["NCBITaxon%3A471854","Dyadobacter fermentans DSM 18053"]]},{"id":"NCBITaxon:471857","l":"Saccharomonospora viridis DSM 43017","na":2,"nb":2,"a":[["wetland-area-envo-00000043.html","wetland area"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A1852","Saccharomonospora viridis"],["NCBITaxon%3A471857","Saccharomonospora viridis DSM 43017"]]},{"id":"NCBITaxon:472759","l":"Nitrosococcus halophilus Nc 4","na":2,"nb":2,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A133539","Nitrosococcus halophilus"],["NCBITaxon%3A472759","Nitrosococcus halophilus Nc 4"]]},{"id":"NCBITaxon:47879","l":"Pseudomonas corrugata","na":2,"nb":2,"a":[["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["wilt-habitatmech-bacdive-4c48b5114d.html","Wilt"]],"b":[["NCBITaxon%3A47879","Pseudomonas corrugata"],["NCBITaxon%3A1316927","Pseudomonas corrugata CFBP 5454"]]},{"id":"NCBITaxon:479434","l":"Sphaerobacter thermophilus DSM 20745","na":2,"nb":2,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A2057","Sphaerobacter thermophilus"],["NCBITaxon%3A479434","Sphaerobacter thermophilus DSM 20745"]]},{"id":"NCBITaxon:479435","l":"Kribbella flavida DSM 17836","na":2,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["NCBITaxon%3A182640","Kribbella flavida"],["NCBITaxon%3A479435","Kribbella flavida DSM 17836"]]},{"id":"NCBITaxon:485918","l":"Chitinophaga pinensis DSM 2588","na":2,"nb":2,"a":[["filament-bto-0000463.html","filament"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A79329","Chitinophaga pinensis"],["NCBITaxon%3A485918","Chitinophaga pinensis DSM 2588"]]},{"id":"NCBITaxon:492476","l":"Acetivibrio thermocellus JW20","na":2,"nb":2,"a":[["sea-envo-00000016.html","sea"],["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"]],"b":[["NCBITaxon%3A1515","Acetivibrio thermocellus"],["NCBITaxon%3A492476","Acetivibrio thermocellus JW20"]]},{"id":"NCBITaxon:504472","l":"Spirosoma linguale DSM 74","na":2,"nb":2,"a":[["drinking-water-envo-00003064.html","drinking water"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["NCBITaxon%3A108","Spirosoma linguale"],["NCBITaxon%3A504472","Spirosoma linguale DSM 74"]]},{"id":"NCBITaxon:504728","l":"Meiothermus ruber DSM 1279","na":2,"nb":2,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"],["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A277","Meiothermus ruber"],["NCBITaxon%3A504728","Meiothermus ruber DSM 1279"]]},{"id":"NCBITaxon:519050","l":"Liquorilactobacillus sucicola","na":2,"nb":2,"a":[["vasculature-uberon-0002049.html","vasculature"],["part-of-plant-habitatmech-madin-25325947e2.html","part of plant"]],"b":[["NCBITaxon%3A519050","Liquorilactobacillus sucicola"],["NCBITaxon%3A1423806","Liquorilactobacillus sucicola DSM 21376 = JCM 15457"]]},{"id":"NCBITaxon:521674","l":"Planctopirus limnophila DSM 3776","na":2,"nb":2,"a":[["liquid-water-envo-00002006.html","liquid water"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A120","Planctopirus limnophila"],["NCBITaxon%3A521674","Planctopirus limnophila DSM 3776"]]},{"id":"NCBITaxon:523791","l":"Kangiella koreensis DSM 16069","na":2,"nb":2,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["NCBITaxon%3A261964","Kangiella koreensis"],["NCBITaxon%3A523791","Kangiella koreensis DSM 16069"]]},{"id":"NCBITaxon:523849","l":"Thermococcus litoralis DSM 5473","na":2,"nb":2,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A2265","Thermococcus litoralis"],["NCBITaxon%3A523849","Thermococcus litoralis DSM 5473"]]},{"id":"NCBITaxon:52767","l":"Actinomyces denticolens","na":2,"nb":2,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["NCBITaxon%3A52767","Actinomyces denticolens"],["NCBITaxon%3A29317","Actinomyces sp."]]},{"id":"NCBITaxon:53245","l":"Desulfonatronovibrio hydrogenovorans","na":2,"nb":2,"a":[["brine-pool-envo-00000369.html","brine pool"],["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["NCBITaxon%3A53245","Desulfonatronovibrio hydrogenovorans"],["NCBITaxon%3A1121413","Desulfonatronovibrio hydrogenovorans DSM 9292"]]},{"id":"NCBITaxon:53444","l":"Fructilactobacillus lindneri","na":2,"nb":2,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["blast-cell-bto-0000125.html","blast cell"]],"b":[["NCBITaxon%3A53444","Fructilactobacillus lindneri"],["NCBITaxon%3A1122148","Fructilactobacillus lindneri DSM 20690 = JCM 11027"]]},{"id":"NCBITaxon:53953","l":"Pyrococcus horikoshii","na":2,"nb":2,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A53953","Pyrococcus horikoshii"],["NCBITaxon%3A70601","Pyrococcus horikoshii OT3"]]},{"id":"NCBITaxon:554117","l":"Paenibacillus phoenicis","na":2,"nb":2,"a":[["factory-envo-01000536.html","factory"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A554117","Paenibacillus phoenicis"],["NCBITaxon%3A58172","Paenibacillus sp."]]},{"id":"NCBITaxon:555088","l":"Dethiobacter alkaliphilus AHT 1","na":2,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["NCBITaxon%3A427926","Dethiobacter alkaliphilus"],["NCBITaxon%3A555088","Dethiobacter alkaliphilus AHT 1"]]},{"id":"NCBITaxon:572546","l":"Archaeoglobus profundus DSM 5631","na":2,"nb":2,"a":[["inlet-envo-00000475.html","inlet"],["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A84156","Archaeoglobus profundus"],["NCBITaxon%3A572546","Archaeoglobus profundus DSM 5631"]]},{"id":"NCBITaxon:579137","l":"Methanocaldococcus vulcanius M7","na":2,"nb":2,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A73913","Methanocaldococcus vulcanius"],["NCBITaxon%3A579137","Methanocaldococcus vulcanius M7"]]},{"id":"NCBITaxon:580332","l":"Sideroxydans lithotrophicus ES-1","na":2,"nb":2,"a":[["cold-environment-envo-01000309.html","cold environment"],["environmental-material-envo-00010483.html","environmental material"]],"b":[["NCBITaxon%3A63745","Sideroxydans lithotrophicus"],["NCBITaxon%3A580332","Sideroxydans lithotrophicus ES-1"]]},{"id":"NCBITaxon:580340","l":"Thermovirga lienii DSM 17291","na":2,"nb":2,"a":[["reservoir-envo-00000025.html","reservoir"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A336261","Thermovirga lienii"],["NCBITaxon%3A580340","Thermovirga lienii DSM 17291"]]},{"id":"NCBITaxon:582402","l":"Hirschia baltica ATCC 49814","na":2,"nb":2,"a":[["alkaline-water-envo-01000357.html","alkaline water"],["fjord-envo-00000039.html","fjord"]],"b":[["NCBITaxon%3A2724","Hirschia baltica"],["NCBITaxon%3A582402","Hirschia baltica ATCC 49814"]]},{"id":"NCBITaxon:582899","l":"Hyphomicrobium denitrificans ATCC 51888","na":2,"nb":2,"a":[["environmental-material-envo-00010483.html","environmental material"],["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A53399","Hyphomicrobium denitrificans"],["NCBITaxon%3A582899","Hyphomicrobium denitrificans ATCC 51888"]]},{"id":"NCBITaxon:588581","l":"Ruminiclostridium papyrosolvens DSM 2782","na":2,"nb":2,"a":[["estuary-envo-00000045.html","estuary"],["sporangium-bto-0001287.html","sporangium"]],"b":[["NCBITaxon%3A29362","Ruminiclostridium papyrosolvens"],["NCBITaxon%3A588581","Ruminiclostridium papyrosolvens DSM 2782"]]},{"id":"NCBITaxon:589865","l":"Desulfurivibrio alkaliphilus AHT 2","na":2,"nb":2,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"],["wadi-envo-00000031.html","wadi"]],"b":[["NCBITaxon%3A427923","Desulfurivibrio alkaliphilus"],["NCBITaxon%3A589865","Desulfurivibrio alkaliphilus AHT 2"]]},{"id":"NCBITaxon:608538","l":"Hydrogenobacter thermophilus TK-6","na":2,"nb":2,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"],["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A940","Hydrogenobacter thermophilus"],["NCBITaxon%3A608538","Hydrogenobacter thermophilus TK-6"]]},{"id":"NCBITaxon:61592","l":"Corynebacterium durum","na":2,"nb":2,"a":[["filament-bto-0000463.html","filament"],["archeological-site-envo-00000564.html","archeological site"]],"b":[["NCBITaxon%3A61592","Corynebacterium durum"],["NCBITaxon%3A1035195","Corynebacterium durum F0235"]]},{"id":"NCBITaxon:643561","l":"Paracidovorax avenae ATCC 19860","na":2,"nb":2,"a":[["large-river-biome-envo-00000887.html","large river biome"],["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A80867","Paracidovorax avenae"],["NCBITaxon%3A643561","Paracidovorax avenae ATCC 19860"]]},{"id":"NCBITaxon:644283","l":"Micromonospora aurantiaca ATCC 27029","na":2,"nb":2,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A644283","Micromonospora aurantiaca ATCC 27029"],["NCBITaxon%3A47850","Micromonospora aurantiaca (nom. illeg.)"]]},{"id":"NCBITaxon:647113","l":"Methanothermococcus okinawensis IH1","na":2,"nb":2,"a":[["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A155863","Methanothermococcus okinawensis"],["NCBITaxon%3A647113","Methanothermococcus okinawensis IH1"]]},{"id":"NCBITaxon:649349","l":"Leadbetterella byssophila DSM 17132","na":2,"nb":2,"a":[["compost-envo-00002170.html","compost"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["NCBITaxon%3A316068","Leadbetterella byssophila"],["NCBITaxon%3A649349","Leadbetterella byssophila DSM 17132"]]},{"id":"NCBITaxon:66228","l":"Gleimia europaea","na":2,"nb":2,"a":[["bone-element-uberon-0001474.html","bone element"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"]],"b":[["NCBITaxon%3A66228","Gleimia europaea"],["NCBITaxon%3A883069","Gleimia europaea ACS-120-V-Col10b"]]},{"id":"NCBITaxon:675813","l":"Vibrio metschnikovii CIP 69.14","na":2,"nb":2,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A28172","Vibrio metschnikovii"],["NCBITaxon%3A675813","Vibrio metschnikovii CIP 69.14"]]},{"id":"NCBITaxon:679926","l":"Methanolacinia petrolearia DSM 11571","na":2,"nb":2,"a":[["inlet-envo-00000475.html","inlet"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A54120","Methanolacinia petrolearia"],["NCBITaxon%3A679926","Methanolacinia petrolearia DSM 11571"]]},{"id":"NCBITaxon:688066","l":"Kosmotoga arenicorallina","na":2,"nb":2,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A688066","Kosmotoga arenicorallina"],["NCBITaxon%3A1453497","Kosmotoga arenicorallina S304"]]},{"id":"NCBITaxon:693216","l":"Cronobacter turicensis z3032","na":2,"nb":2,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A413502","Cronobacter turicensis"],["NCBITaxon%3A693216","Cronobacter turicensis z3032"]]},{"id":"NCBITaxon:693986","l":"Methylobacterium oryzae CBMB20","na":2,"nb":2,"a":[["aerial-part-bto-0001658.html","aerial part"],["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A334852","Methylobacterium oryzae"],["NCBITaxon%3A693986","Methylobacterium oryzae CBMB20"]]},{"id":"NCBITaxon:694427","l":"Paludibacter propionicigenes WB4","na":2,"nb":2,"a":[["agricultural-field-envo-00000114.html","agricultural field"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A185300","Paludibacter propionicigenes"],["NCBITaxon%3A694427","Paludibacter propionicigenes WB4"]]},{"id":"NCBITaxon:694430","l":"Natronococcus occultus SP4","na":2,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A29288","Natronococcus occultus"],["NCBITaxon%3A694430","Natronococcus occultus SP4"]]},{"id":"NCBITaxon:697281","l":"Mahella australiensis 50-1 BON","na":2,"nb":2,"a":[["drainage-basin-envo-00000291.html","drainage basin"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A252966","Mahella australiensis"],["NCBITaxon%3A697281","Mahella australiensis 50-1 BON"]]},{"id":"NCBITaxon:703612","l":"Bacillus spizizenii ATCC 6633 = JCM 2499","na":2,"nb":2,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A96241","Bacillus spizizenii"],["NCBITaxon%3A703612","Bacillus spizizenii ATCC 6633 = JCM 2499"]]},{"id":"NCBITaxon:739","l":"Aggregatibacter segnis","na":2,"nb":2,"a":[["archeological-site-envo-00000564.html","archeological site"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["NCBITaxon%3A739","Aggregatibacter segnis"],["NCBITaxon%3A888057","Aggregatibacter segnis ATCC 33393"]]},{"id":"NCBITaxon:74349","l":"Sulfitobacter guttiformis","na":2,"nb":2,"a":[["hill-envo-00000083.html","hill"],["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A74349","Sulfitobacter guttiformis"],["NCBITaxon%3A1443111","Sulfitobacter guttiformis KCTC 32187"]]},{"id":"NCBITaxon:746697","l":"Aequorivita sublithincola DSM 14238","na":2,"nb":2,"a":[["hill-envo-00000083.html","hill"],["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A101385","Aequorivita sublithincola"],["NCBITaxon%3A746697","Aequorivita sublithincola DSM 14238"]]},{"id":"NCBITaxon:748449","l":"Halobacteroides halobius DSM 5150","na":2,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["marine-anoxic-zone-envo-01000066.html","marine anoxic zone"]],"b":[["NCBITaxon%3A42422","Halobacteroides halobius"],["NCBITaxon%3A748449","Halobacteroides halobius DSM 5150"]]},{"id":"NCBITaxon:754","l":"Pasteurella dagmatis","na":2,"nb":2,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"]],"b":[["NCBITaxon%3A754","Pasteurella dagmatis"],["NCBITaxon%3A667128","Pasteurella dagmatis ATCC 43325"]]},{"id":"NCBITaxon:756272","l":"Rubinisphaera brasiliensis DSM 5305","na":2,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["NCBITaxon%3A119","Rubinisphaera brasiliensis"],["NCBITaxon%3A756272","Rubinisphaera brasiliensis DSM 5305"]]},{"id":"NCBITaxon:756689","l":"Nocardia amikacinitolerans","na":2,"nb":2,"a":[["hospital-envo-00002173.html","hospital"],["bronchus-uberon-0002185.html","bronchus"]],"b":[["NCBITaxon%3A756689","Nocardia amikacinitolerans"],["NCBITaxon%3A1379680","Nocardia amikacinitolerans NBRC 108937"]]},{"id":"NCBITaxon:76114","l":"Aromatoleum aromaticum EbN1","na":2,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["NCBITaxon%3A551760","Aromatoleum aromaticum"],["NCBITaxon%3A76114","Aromatoleum aromaticum EbN1"]]},{"id":"NCBITaxon:80878","l":"Acidovorax temperans","na":2,"nb":2,"a":[["urethra-bto-0001426.html","urethra"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"]],"b":[["NCBITaxon%3A80878","Acidovorax temperans"],["NCBITaxon%3A665025","Acidovorax temperans CB2"]]},{"id":"NCBITaxon:85558","l":"Streptomyces turgidiscabies","na":2,"nb":2,"a":[["a10-cell-bto-0002196.html","A10 cell"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["NCBITaxon%3A85558","Streptomyces turgidiscabies"],["NCBITaxon%3A698760","Streptomyces turgidiscabies Car8"]]},{"id":"NCBITaxon:865938","l":"Weeksella virosa DSM 16922","na":2,"nb":2,"a":[["urethra-bto-0001426.html","urethra"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A1014","Weeksella virosa"],["NCBITaxon%3A865938","Weeksella virosa DSM 16922"]]},{"id":"NCBITaxon:870187","l":"Thiothrix nivea DSM 5205","na":2,"nb":2,"a":[["rosette-bto-0001201.html","rosette"],["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A1031","Thiothrix nivea"],["NCBITaxon%3A870187","Thiothrix nivea DSM 5205"]]},{"id":"NCBITaxon:880478","l":"Thermoanaerobacter siderophilus SR4","na":2,"nb":2,"a":[["peninsula-envo-00000305.html","peninsula"],["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A106578","Thermoanaerobacter siderophilus"],["NCBITaxon%3A880478","Thermoanaerobacter siderophilus SR4"]]},{"id":"NCBITaxon:926559","l":"Galbibacter orientalis DSM 19592","na":2,"nb":2,"a":[["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A453852","Galbibacter orientalis"],["NCBITaxon%3A926559","Galbibacter orientalis DSM 19592"]]},{"id":"NCBITaxon:927658","l":"Alkaliflexus imshenetskii DSM 15055","na":2,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A286730","Alkaliflexus imshenetskii"],["NCBITaxon%3A927658","Alkaliflexus imshenetskii DSM 15055"]]},{"id":"NCBITaxon:935295","l":"Leuconostoc pseudomesenteroides KCTC 3652","na":2,"nb":2,"a":[["juice-bto-0000659.html","juice"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A33968","Leuconostoc pseudomesenteroides"],["NCBITaxon%3A935295","Leuconostoc pseudomesenteroides KCTC 3652"]]},{"id":"NCBITaxon:94136","l":"Alkalibacillus haloalkaliphilus","na":2,"nb":2,"a":[["saline-water-body-envo-01001319.html","saline water body"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["NCBITaxon%3A94136","Alkalibacillus haloalkaliphilus"],["NCBITaxon%3A1193119","Alkalibacillus haloalkaliphilus C5"]]},{"id":"NCBITaxon:942938","l":"Alkalispirochaeta alkalica DSM 8900","na":2,"nb":2,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A46356","Alkalispirochaeta alkalica"],["NCBITaxon%3A942938","Alkalispirochaeta alkalica DSM 8900"]]},{"id":"NCBITaxon:999549","l":"Leisingera caerulea DSM 24564","na":2,"nb":2,"a":[["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A506591","Leisingera caerulea"],["NCBITaxon%3A999549","Leisingera caerulea DSM 24564"]]},{"id":"NCBITaxon:1224","l":"Pseudomonadota","na":1,"nb":251482,"a":[["hemolymph-bto-0000572.html","hemolymph"]],"b":[["NCBITaxon%3A119160","2,3-D degrading bacterium NHC2"],["NCBITaxon%3A119159","2,3-D degrading bacterium NHG3"],["NCBITaxon%3A103498","2,4-D-degrading bacterium 001"],["NCBITaxon%3A103499","2,4-D-degrading bacterium 007"],["NCBITaxon%3A103492","2,4-D-degrading bacterium 010"],["NCBITaxon%3A103495","2,4-D-degrading bacterium 012"]]},{"id":"NCBITaxon:2062","l":"Streptomycetaceae","na":1,"nb":32318,"a":[["crop-bto-0000301.html","crop"]],"b":[["NCBITaxon%3A2784346","Actinacidiphila acididurans"],["NCBITaxon%3A2873382","Actinacidiphila acidipaludis"],["NCBITaxon%3A380248","Actinacidiphila alni"],["NCBITaxon%3A1436133","Actinacidiphila bryophytorum"],["NCBITaxon%3A887465","Actinacidiphila cocklensis"],["NCBITaxon%3A2053013","Actinacidiphila epipremni"]]},{"id":"NCBITaxon:80840","l":"Burkholderiales","na":1,"nb":24584,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"]],"b":[["NCBITaxon%3A103498","2,4-D-degrading bacterium 001"],["NCBITaxon%3A103499","2,4-D-degrading bacterium 007"],["NCBITaxon%3A103495","2,4-D-degrading bacterium 012"],["NCBITaxon%3A103500","2,4-D-degrading bacterium 017"],["NCBITaxon%3A103501","2,4-D-degrading bacterium 018"],["NCBITaxon%3A103502","2,4-D-degrading bacterium 019"]]},{"id":"NCBITaxon:200644","l":"Flavobacteriales","na":1,"nb":12879,"a":[["column-bto-0005692.html","column"]],"b":[["NCBITaxon%3A2967091","Abyssalbus sp."],["NCBITaxon%3A2926907","Abyssalbus ytuae"],["NCBITaxon%3A2692424","Acidiluteibacter ferrifornacis"],["NCBITaxon%3A2819283","Acidiluteibacter sp."],["NCBITaxon%3A2964002","Acidiluteibacter sp. SCM31"],["NCBITaxon%3A1295005","Actibacter haliotis"]]},{"id":"NCBITaxon:119060","l":"Burkholderiaceae","na":1,"nb":11091,"a":[["trunk-bto-0001493.html","trunk"]],"b":[["NCBITaxon%3A135641","2,4-D degrading transconjugant WD2"],["NCBITaxon%3A135642","2,4-D degrading transconjugant WD3"],["NCBITaxon%3A204704","bacterium Ellin349"],["NCBITaxon%3A204705","bacterium Ellin350"],["NCBITaxon%3A204706","bacterium Ellin364"],["NCBITaxon%3A204707","bacterium Ellin365"]]},{"id":"NCBITaxon:82115","l":"Rhizobiaceae","na":1,"nb":10105,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"]],"b":[["NCBITaxon%3A119160","2,3-D degrading bacterium NHC2"],["NCBITaxon%3A119159","2,3-D degrading bacterium NHG3"],["NCBITaxon%3A879568","Affinirhizobium capsici"],["NCBITaxon%3A2952477","Affinirhizobium gouqiense"],["NCBITaxon%3A1132695","Affinirhizobium helianthi"],["NCBITaxon%3A1214924","Affinirhizobium lemnae"]]},{"id":"NCBITaxon:547","l":"Enterobacter","na":1,"nb":6599,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["NCBITaxon%3A3142537","Enterobacter adelaidei"],["NCBITaxon%3A61645","Enterobacter asburiae"],["NCBITaxon%3A1330532","Enterobacter asburiae B1-3"],["NCBITaxon%3A1330533","Enterobacter asburiae B5-60"],["NCBITaxon%3A1442602","Enterobacter asburiae C1"],["NCBITaxon%3A1298604","Enterobacter asburiae JCM 6051"]]},{"id":"NCBITaxon:1177","l":"Nostoc","na":1,"nb":6579,"a":[["inflorescence-bto-0000628.html","inflorescence"]],"b":[["NCBITaxon%3A3085085","Anabaena oryzae CF66701"],["NCBITaxon%3A2739044","Cyanocohniella crotaloides"],["NCBITaxon%3A1179","Desmonostoc muscorum"],["NCBITaxon%3A3366270","Nostoc breve"],["NCBITaxon%3A3040065","Nostoc breve BG11-PS"],["NCBITaxon%3A1521619","Nostoc caeruleum"]]},{"id":"NCBITaxon:135619","l":"Oceanospirillales","na":1,"nb":6491,"a":[["column-bto-0005692.html","column"]],"b":[["NCBITaxon%3A2717337","Aestuariirhabdaceae bacterium"],["NCBITaxon%3A2918751","Aestuariirhabdus haliotis"],["NCBITaxon%3A2528527","Aestuariirhabdus litorea"],["NCBITaxon%3A2717333","Aestuariirhabdus sp."],["NCBITaxon%3A3417462","Aestuariirhabdus sp. LZHN29"],["NCBITaxon%3A574349","Aidingimonas halophila"]]},{"id":"NCBITaxon:766","l":"Rickettsiales","na":1,"nb":6218,"a":[["alimentary-canal-bto-0000058.html","alimentary canal"]],"b":[["NCBITaxon%3A3236821","Aaplasma endosymbiont of Hyalomma asiaticum"],["NCBITaxon%3A203862","Aegyptianella pullorum"],["NCBITaxon%3A1872389","Aegyptianella sp."],["NCBITaxon%3A186733","Anaplasma bovis"],["NCBITaxon%3A1562740","Anaplasma capra"],["NCBITaxon%3A2823527","Anaplasma caudatum"]]},{"id":"NCBITaxon:570","l":"Klebsiella","na":1,"nb":4683,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["NCBITaxon%3A548","Klebsiella aerogenes"],["NCBITaxon%3A1308731","Klebsiella aerogenes ADL-323"],["NCBITaxon%3A935296","Klebsiella aerogenes EA1509E"],["NCBITaxon%3A685445","Klebsiella aerogenes FGI35"],["NCBITaxon%3A1028307","Klebsiella aerogenes KCTC 2190"],["NCBITaxon%3A1439320","Klebsiella aerogenes MGH 61"]]},{"id":"NCBITaxon:69277","l":"Phyllobacteriaceae","na":1,"nb":4623,"a":[["head-bto-0000282.html","head"]],"b":[["NCBITaxon%3A561088","Aerobium aerolatum"],["NCBITaxon%3A3143725","Aerobium sp."],["NCBITaxon%3A453840","Aliihoeflea aestuarii"],["NCBITaxon%3A2608088","Aliihoeflea sp."],["NCBITaxon%3A1381123","Aliihoeflea sp. 2WW"],["NCBITaxon%3A2696467","Aliihoeflea sp. 40Bstr573"]]},{"id":"NCBITaxon:40323","l":"Stenotrophomonas","na":1,"nb":3947,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["NCBITaxon%3A255","[Flavobacterium] lutescens"],["NCBITaxon%3A178909","PAH-contaminated sludge bacterium PB-8"],["NCBITaxon%3A178910","PAH-contaminated sludge bacterium PB-9"],["NCBITaxon%3A128780","Stenotrophomonas acidaminiphila"],["NCBITaxon%3A1292134","Stenotrophomonas africana"],["NCBITaxon%3A1212488","Stenotrophomonas africana MGB"]]},{"id":"NCBITaxon:68287","l":"Mesorhizobium","na":1,"nb":3794,"a":[["head-bto-0000282.html","head"]],"b":[["NCBITaxon%3A325218","alpha proteobacterium WG1"],["NCBITaxon%3A102683","Biserrula isolate"],["NCBITaxon%3A1209958","Mesorhizobium abyssinicae"],["NCBITaxon%3A1326083","Mesorhizobium acaciae"],["NCBITaxon%3A3072314","Mesorhizobium album"],["NCBITaxon%3A2448478","Mesorhizobium alexandrii"]]},{"id":"NCBITaxon:2745","l":"Halomonas","na":1,"nb":3499,"a":[["wood-bto-0005516.html","wood"]],"b":[["NCBITaxon%3A1107859","Candidatus Halomonas phosphatis"],["NCBITaxon%3A2838617","Candidatus Halomonas stercoripullorum"],["NCBITaxon%3A1897729","Halomonas aestuarii"],["NCBITaxon%3A659123","Halomonas aidingensis"],["NCBITaxon%3A147248","Halomonas alimentaria"],["NCBITaxon%3A1930622","Halomonas alkalicola"]]},{"id":"NCBITaxon:22","l":"Shewanella","na":1,"nb":2330,"a":[["wood-bto-0005516.html","wood"]],"b":[["NCBITaxon%3A196819","Arctic sea ice bacterium ARK10035"],["NCBITaxon%3A259291","cf. Shewanella SAR-1"],["NCBITaxon%3A259292","cf. Shewanella SAR-2"],["NCBITaxon%3A73131","Mariana eubacterium no. 11"],["NCBITaxon%3A73132","Mariana eubacterium no. 13"],["NCBITaxon%3A73133","Mariana eubacterium no. 24"]]},{"id":"NCBITaxon:200666","l":"Sphingobacteriales","na":1,"nb":2327,"a":[["column-bto-0005692.html","column"]],"b":[["NCBITaxon%3A653929","Albibacterium bauzanense"],["NCBITaxon%3A2292082","Albibacterium indicum"],["NCBITaxon%3A3134906","Albibacterium profundi"],["NCBITaxon%3A2952885","Albibacterium sp."],["NCBITaxon%3A496056","Anseongella ginsenosidimutans"],["NCBITaxon%3A2023704","Anseongella sp."]]},{"id":"NCBITaxon:118882","l":"Brucellaceae","na":1,"nb":2154,"a":[["skin-bto-0001253.html","skin"]],"b":[["NCBITaxon%3A235","Brucella abortus"],["NCBITaxon%3A1310176","Brucella abortus 00-666"],["NCBITaxon%3A1328357","Brucella abortus 01-0065"],["NCBITaxon%3A1328356","Brucella abortus 01-0585"],["NCBITaxon%3A1328355","Brucella abortus 01-0648"],["NCBITaxon%3A1341669","Brucella abortus 01-4165"]]},{"id":"NCBITaxon:72275","l":"Alteromonadaceae","na":1,"nb":2007,"a":[["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["NCBITaxon%3A120969","abyssal strain AIII3*"],["NCBITaxon%3A1619912","Adhaerimonas asanensis"],["NCBITaxon%3A226010","Aestuariibacter salexigens"],["NCBITaxon%3A1120953","Aestuariibacter salexigens DSM 15300"],["NCBITaxon%3A1872400","Aestuariibacter sp."],["NCBITaxon%3A2841571","Aestuariibacter sp. A3R04"]]},{"id":"NCBITaxon:186818","l":"Caryophanaceae","na":1,"nb":1900,"a":[["trachea-bto-0001388.html","trachea"]],"b":[["NCBITaxon%3A426756","Bhargavaea beijingensis"],["NCBITaxon%3A394098","Bhargavaea cecembensis"],["NCBITaxon%3A1235279","Bhargavaea cecembensis DSE10"],["NCBITaxon%3A2134037","Bhargavaea changchunensis"],["NCBITaxon%3A426757","Bhargavaea ginsengi"],["NCBITaxon%3A627618","Bhargavaea indica"]]},{"id":"NCBITaxon:544","l":"Citrobacter","na":1,"nb":1678,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["NCBITaxon%3A35703","Citrobacter amalonaticus"],["NCBITaxon%3A1261127","Citrobacter amalonaticus Y19"],["NCBITaxon%3A2546350","Citrobacter arsenatis"],["NCBITaxon%3A1585982","Citrobacter bitternis"],["NCBITaxon%3A57706","Citrobacter braakii"],["NCBITaxon%3A1748967","Citrobacter cronae"]]},{"id":"NCBITaxon:1817","l":"Nocardia","na":1,"nb":1573,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["NCBITaxon%3A120957","Nocardia abscessus"],["NCBITaxon%3A1206723","Nocardia abscessus NBRC 100374"],["NCBITaxon%3A2802282","Nocardia acididurans"],["NCBITaxon%3A1224718","Nocardia aciditolerans"],["NCBITaxon%3A404580","Nocardia acidivorans"],["NCBITaxon%3A1210062","Nocardia acidivorans NBRC 108247"]]},{"id":"NCBITaxon:200795","l":"Chloroflexota","na":1,"nb":1565,"a":[["crop-bto-0000301.html","crop"]],"b":[["NCBITaxon%3A913108","Aggregatilinea lenta"],["NCBITaxon%3A2806333","Aggregatilinea sp."],["NCBITaxon%3A2952881","Aggregatilineaceae bacterium"],["NCBITaxon%3A2952883","Aggregatilineales bacterium"],["NCBITaxon%3A3117437","Aggregatilineales bacterium SYSU G02658"],["NCBITaxon%3A2738567","Anaerolinaceae bacterium JGI_KA33_A04_032"]]},{"id":"NCBITaxon:135613","l":"Chromatiales","na":1,"nb":1456,"a":[["column-bto-0005692.html","column"]],"b":[["NCBITaxon%3A2182787","Abyssibacter profundi"],["NCBITaxon%3A2320200","Abyssibacter sp."],["NCBITaxon%3A2792603","Acidihalobacter aeolianus"],["NCBITaxon%3A1765967","Acidihalobacter ferrooxydans"],["NCBITaxon%3A160660","Acidihalobacter prosperus"],["NCBITaxon%3A1872108","Acidihalobacter sp."]]},{"id":"NCBITaxon:28221","l":"Deltaproteobacteria","na":1,"nb":1266,"a":[["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["NCBITaxon%3A2946587","Acetispira formosa (nom. nud.)"],["NCBITaxon%3A318480","Algidimarina propionica"],["NCBITaxon%3A2600177","Allomicrovenator marinus"],["NCBITaxon%3A2946509","Allomicrovenator sp."],["NCBITaxon%3A3107492","Allomicrovenatoraceae bacterium"],["NCBITaxon%3A93990","Alvinella pompejana symbiont 3.11"]]},{"id":"NCBITaxon:712","l":"Pasteurellaceae","na":1,"nb":1252,"a":[["head-bto-0000282.html","head"]],"b":[["NCBITaxon%3A221404","Actinobacillus anseriformium"],["NCBITaxon%3A221398","Actinobacillus anseriformium biovar 1"],["NCBITaxon%3A221399","Actinobacillus anseriformium biovar 2"],["NCBITaxon%3A157339","Actinobacillus arthritidis"],["NCBITaxon%3A717","Actinobacillus capsulatus"],["NCBITaxon%3A1120931","Actinobacillus capsulatus DSM 19761"]]},{"id":"NCBITaxon:226","l":"Alteromonas","na":1,"nb":1246,"a":[["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["NCBITaxon%3A1892904","Alteromonas abrolhosensis"],["NCBITaxon%3A1938339","Alteromonas aestuariivivens"],["NCBITaxon%3A105692","Alteromonas agarilytica"],["NCBITaxon%3A3410268","Alteromonas algae"],["NCBITaxon%3A135000","Alteromonas alvinellae"],["NCBITaxon%3A2803813","Alteromonas antoniana"]]},{"id":"NCBITaxon:57723","l":"Acidobacteriota","na":1,"nb":1245,"a":[["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["NCBITaxon%3A442870","Acanthopleuribacter pedis"],["NCBITaxon%3A1872087","Acanthopleuribacter sp."],["NCBITaxon%3A2696471","Acanthopleuribacteraceae bacterium"],["NCBITaxon%3A1335627","Acidicapsa acidiphila"],["NCBITaxon%3A1615681","Acidicapsa acidisoli"],["NCBITaxon%3A946336","Acidicapsa borealis"]]},{"id":"NCBITaxon:265","l":"Paracoccus","na":1,"nb":1093,"a":[["nectar-bto-0000537.html","nectar"]],"b":[["NCBITaxon%3A246571","marine bacterium 13733"],["NCBITaxon%3A1795310","Paracoccus acridae"],["NCBITaxon%3A3064531","Paracoccus actinidiae"],["NCBITaxon%3A1966466","Paracoccus aeridis"],["NCBITaxon%3A1915382","Paracoccus aerius"],["NCBITaxon%3A3017781","Paracoccus aerodenitrificans"]]},{"id":"NCBITaxon:563835","l":"Chitinophagaceae","na":1,"nb":893,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"]],"b":[["NCBITaxon%3A1104781","Agriterribacter humi"],["NCBITaxon%3A2171976","Agriterribacter soli"],["NCBITaxon%3A2821509","Agriterribacter sp."],["NCBITaxon%3A1850526","Arachidicoccus ginsenosidimutans"],["NCBITaxon%3A496057","Arachidicoccus ginsenosidivorans"],["NCBITaxon%3A551991","Arachidicoccus rhizosphaerae"]]},{"id":"NCBITaxon:12916","l":"Acidovorax","na":1,"nb":822,"a":[["urine-bto-0001419.html","urine"]],"b":[["NCBITaxon%3A192388","Acidovorax aerodenitrificans"],["NCBITaxon%3A2976702","Acidovorax bellezanensis"],["NCBITaxon%3A2987520","Acidovorax benzenivorans"],["NCBITaxon%3A553814","Acidovorax carolinensis"],["NCBITaxon%3A1675792","Acidovorax cavernicola"],["NCBITaxon%3A86669","Acidovorax defluvii"]]},{"id":"NCBITaxon:283","l":"Comamonas","na":1,"nb":742,"a":[["nectar-bto-0000537.html","nectar"]],"b":[["NCBITaxon%3A472","Acinetobacter sp."],["NCBITaxon%3A3083076","Candidatus Comamonas equi"],["NCBITaxon%3A2743470","Comamonas antarctica"],["NCBITaxon%3A225991","Comamonas aquatica"],["NCBITaxon%3A1457173","Comamonas aquatica DA1877"],["NCBITaxon%3A1219031","Comamonas aquatica NBRC 14918"]]},{"id":"NCBITaxon:1041","l":"Erythrobacter","na":1,"nb":667,"a":[["hemolymph-bto-0000572.html","hemolymph"]],"b":[["NCBITaxon%3A1896145","Erythrobacter alti"],["NCBITaxon%3A2827235","Erythrobacter ani"],["NCBITaxon%3A2909249","Erythrobacter aurantius"],["NCBITaxon%3A2182384","Erythrobacter aureus"],["NCBITaxon%3A1161202","Erythrobacter colymbi"],["NCBITaxon%3A2828328","Erythrobacter crassostreae"]]},{"id":"NCBITaxon:204428","l":"Chlamydiota","na":1,"nb":627,"a":[["epilimnion-envo-00002131.html","epilimnion"]],"b":[["NCBITaxon%3A3076874","Candidatus Acheromyda pituitae"],["NCBITaxon%3A1742710","Candidatus Actinochlamydia clariatis"],["NCBITaxon%3A2040623","Candidatus Actinochlamydia pangasianodontis"],["NCBITaxon%3A3341976","Candidatus Algichlamydia australiensis"],["NCBITaxon%3A1123968","Candidatus Amphibiichlamydia ranarum"],["NCBITaxon%3A1115881","Candidatus Amphibiichlamydia salamandrae"]]},{"id":"NCBITaxon:85413","l":"Allobosea","na":1,"nb":605,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"]],"b":[["NCBITaxon%3A132928","Allobosea aff. thiooxidans 1.10"],["NCBITaxon%3A3068632","Allobosea beijingensis"],["NCBITaxon%3A2763117","Allobosea caraganae"],["NCBITaxon%3A151454","Allobosea eneae"],["NCBITaxon%3A1211774","Allobosea eneae 34614"],["NCBITaxon%3A1036778","Allobosea lathyri"]]},{"id":"NCBITaxon:872","l":"Desulfovibrio","na":1,"nb":600,"a":[["colon-bto-0000269.html","colon"]],"b":[["NCBITaxon%3A2838532","Candidatus Desulfovibrio faecigallinarum"],["NCBITaxon%3A2838533","Candidatus Desulfovibrio gallistercoris"],["NCBITaxon%3A2838534","Candidatus Desulfovibrio intestinavium"],["NCBITaxon%3A2838535","Candidatus Desulfovibrio intestinigallinarum"],["NCBITaxon%3A2838536","Candidatus Desulfovibrio intestinipullorum"],["NCBITaxon%3A2696086","Candidatus Desulfovibrio kirbyi"]]},{"id":"NCBITaxon:29465","l":"Veillonella","na":1,"nb":490,"a":[["juvenile-bto-0002168.html","juvenile"]],"b":[["NCBITaxon%3A3474240","Candidatus Veillonella sanguinis"],["NCBITaxon%3A147802","Lactobacillus iners"],["NCBITaxon%3A159268","uncultured Veillonella sp."],["NCBITaxon%3A3079305","Veillonella absiana"],["NCBITaxon%3A2941340","Veillonella agrestimuris"],["NCBITaxon%3A39777","Veillonella atypica"]]},{"id":"NCBITaxon:1298","l":"Deinococcus","na":1,"nb":488,"a":[["forearm-bto-0001447.html","forearm"]],"b":[["NCBITaxon%3A1768108","Deinococcus actinosclerus"],["NCBITaxon%3A200253","Deinococcus aerius"],["NCBITaxon%3A522487","Deinococcus aerolatus"],["NCBITaxon%3A522488","Deinococcus aerophilus"],["NCBITaxon%3A2774531","Deinococcus aestuarii"],["NCBITaxon%3A200252","Deinococcus aetherius"]]},{"id":"NCBITaxon:1655514","l":"Candidatus Pelagibacteraceae","na":1,"nb":486,"a":[["column-bto-0005692.html","column"]],"b":[["NCBITaxon%3A684719","alpha proteobacterium HIMB114"],["NCBITaxon%3A859653","alpha proteobacterium HIMB5"],["NCBITaxon%3A744985","alpha proteobacterium HIMB59"],["NCBITaxon%3A1502488","alpha proteobacterium QL1"],["NCBITaxon%3A939306","alpha proteobacterium SCGC AAA240-E13"],["NCBITaxon%3A939316","alpha proteobacterium SCGC AAA288-E13"]]},{"id":"NCBITaxon:186814","l":"Thermoanaerobacteraceae","na":1,"nb":422,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A2755338","Aceticella autotrophica"],["NCBITaxon%3A3692757","Aceticella sp. 75b-Ac"],["NCBITaxon%3A42838","Ammonifex degensii"],["NCBITaxon%3A429009","Ammonifex degensii KC4"],["NCBITaxon%3A1872493","Ammonifex sp."],["NCBITaxon%3A444093","Ammonifex thiophilus"]]},{"id":"NCBITaxon:724","l":"Haemophilus","na":1,"nb":412,"a":[["head-bto-0000282.html","head"]],"b":[["NCBITaxon%3A762","Avibacterium volantium"],["NCBITaxon%3A3711815","Candidatus Haemophilus gullae"],["NCBITaxon%3A2962910","Candidatus Haemophilus sp. bin.10"],["NCBITaxon%3A259279","cf. Haemophilus SAR-1"],["NCBITaxon%3A197575","Haemophilus aegyptius"],["NCBITaxon%3A888728","Haemophilus aegyptius ATCC 11116"]]},{"id":"NCBITaxon:135616","l":"Piscirickettsiaceae","na":1,"nb":366,"a":[["crop-bto-0000301.html","crop"]],"b":[["NCBITaxon%3A1871189","Cycloclasticus endosymbiont of Bathymodiolus heckerae"],["NCBITaxon%3A1871190","Cycloclasticus endosymbiont of sponge"],["NCBITaxon%3A46457","Cycloclasticus oligotrophus"],["NCBITaxon%3A34068","Cycloclasticus pugetii"],["NCBITaxon%3A655438","Cycloclasticus pugetii PS-1"],["NCBITaxon%3A2024830","Cycloclasticus sp."]]},{"id":"NCBITaxon:31993","l":"Methylocystaceae","na":1,"nb":327,"a":[["leaf-bto-0000713.html","leaf"]],"b":[["NCBITaxon%3A67602","alpha methylotroph Hohenstaufen"],["NCBITaxon%3A493383","methanotroph B8"],["NCBITaxon%3A493384","methanotroph C9"],["NCBITaxon%3A129791","methanotroph FL20"],["NCBITaxon%3A493386","methanotroph H8"],["NCBITaxon%3A210772","methanotroph K1-1"]]},{"id":"NCBITaxon:108619","l":"Salmonella enterica subsp. enterica serovar Newport","na":1,"nb":305,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A108619","Salmonella enterica subsp. enterica serovar Newport"],["NCBITaxon%3A1173883","Salmonella enterica subsp. enterica serovar Newport str. 0015"],["NCBITaxon%3A1173884","Salmonella enterica subsp. enterica serovar Newport str. 0029"],["NCBITaxon%3A1173885","Salmonella enterica subsp. enterica serovar Newport str. 0039"]]},{"id":"NCBITaxon:203693","l":"Nitrospiria","na":1,"nb":287,"a":[["crop-bto-0000301.html","crop"]],"b":[["NCBITaxon%3A3692265","Candidatus Inralta sp."],["NCBITaxon%3A3692264","Candidatus Inrsubterrania sp."],["NCBITaxon%3A3137712","Candidatus Magnetominusculus dajiuhuensis"],["NCBITaxon%3A2914034","Candidatus Magnetominusculus sp. LBB02"],["NCBITaxon%3A1748249","Candidatus Magnetominusculus xianensis"],["NCBITaxon%3A2552947","Candidatus Magnetomonas plexicatena"]]},{"id":"NCBITaxon:2691357","l":"Pirellulaceae","na":1,"nb":272,"a":[["column-bto-0005692.html","column"]],"b":[["NCBITaxon%3A2714739","Allorhodopirellula heiligendammensis"],["NCBITaxon%3A2527987","Allorhodopirellula solitaria"],["NCBITaxon%3A2528021","Anatilimnocola aggregata"],["NCBITaxon%3A3415683","Anatilimnocola aquadivae"],["NCBITaxon%3A2948575","Anatilimnocola floriformis"],["NCBITaxon%3A2807433","Anatilimnocola sp."]]},{"id":"NCBITaxon:475","l":"Moraxella","na":1,"nb":269,"a":[["head-bto-0000282.html","head"]],"b":[["NCBITaxon%3A34059","Faucicola atlantae"],["NCBITaxon%3A34062","Faucicola osloensis"],["NCBITaxon%3A1736026","Moraxella aff. catarrhalis 324_MCAT"],["NCBITaxon%3A1736027","Moraxella aff. catarrhalis 394_MCAT"],["NCBITaxon%3A476","Moraxella bovis"],["NCBITaxon%3A387425","Moraxella bovis Epp63"]]},{"id":"NCBITaxon:32012","l":"Thiomonas","na":1,"nb":257,"a":[["watercourse-envo-00000029.html","watercourse"]],"b":[["NCBITaxon%3A426114","Thiomonas arsenitoxydans"],["NCBITaxon%3A339866","Thiomonas bhubaneswarensis"],["NCBITaxon%3A364030","Thiomonas delicata"],["NCBITaxon%3A926","Thiomonas intermedia"],["NCBITaxon%3A75379","Thiomonas intermedia K12"],["NCBITaxon%3A545537","Thiomonas islandica"]]},{"id":"NCBITaxon:45401","l":"Hyphomicrobiaceae","na":1,"nb":250,"a":[["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["NCBITaxon%3A1608628","Candidatus Filomicrobium marinum"],["NCBITaxon%3A3098631","Candidatus Tectiglobus diatomicola"],["NCBITaxon%3A3098632","Candidatus Tectiglobus profundi"],["NCBITaxon%3A2952957","Dichotomicrobium sp."],["NCBITaxon%3A933063","Dichotomicrobium thermohalophilum"],["NCBITaxon%3A66850","Filomicrobium fusiforme"]]},{"id":"NCBITaxon:142182","l":"Gemmatimonadota","na":1,"nb":249,"a":[["crop-bto-0000301.html","crop"]],"b":[["NCBITaxon%3A234666","bacterium Ellin5220"],["NCBITaxon%3A234674","bacterium Ellin5290"],["NCBITaxon%3A234675","bacterium Ellin5301"],["NCBITaxon%3A3056743","Candidatus Benthicola azotiphorus"],["NCBITaxon%3A3056742","Candidatus Benthicola marisminoris"],["NCBITaxon%3A3101352","Candidatus Benthicola sp."]]},{"id":"NCBITaxon:84993","l":"Acidimicrobiales","na":1,"nb":240,"a":[["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["NCBITaxon%3A2664430","Acidiferrimicrobium australe"],["NCBITaxon%3A3100505","Acidiferrimicrobium sp."],["NCBITaxon%3A2871700","Acidiferrimicrobium sp. IK"],["NCBITaxon%3A2024894","Acidimicrobiaceae bacterium"],["NCBITaxon%3A2814543","Acidimicrobiaceae bacterium AH-315-P05"],["NCBITaxon%3A2023289","Acidimicrobiaceae bacterium BS0038C4"]]},{"id":"NCBITaxon:28450","l":"Burkholderia pseudomallei","na":1,"nb":214,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"]],"b":[["NCBITaxon%3A28450","Burkholderia pseudomallei"],["NCBITaxon%3A1085027","Burkholderia pseudomallei 1026a"],["NCBITaxon%3A884204","Burkholderia pseudomallei 1026b"],["NCBITaxon%3A1310219","Burkholderia pseudomallei 104(1990)"],["NCBITaxon%3A357348","Burkholderia pseudomallei 1106a"],["NCBITaxon%3A357347","Burkholderia pseudomallei 1106b"]]},{"id":"NCBITaxon:137","l":"Spirochaetaceae","na":1,"nb":208,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A46356","Alkalispirochaeta alkalica"],["NCBITaxon%3A942938","Alkalispirochaeta alkalica DSM 8900"],["NCBITaxon%3A159291","Alkalispirochaeta americana"],["NCBITaxon%3A1410329","Alkalispirochaeta cellulosivorans"],["NCBITaxon%3A1329640","Alkalispirochaeta odontotermitis"],["NCBITaxon%3A2024959","Alkalispirochaeta sp."]]},{"id":"NCBITaxon:245186","l":"Loktanella","na":1,"nb":208,"a":[["column-bto-0005692.html","column"]],"b":[["NCBITaxon%3A101376","alpha proteobacterium QSSC9-5"],["NCBITaxon%3A287097","Loktanella agnita"],["NCBITaxon%3A1610528","Loktanella aquimaris"],["NCBITaxon%3A366533","Loktanella atrilutea"],["NCBITaxon%3A245187","Loktanella fryxellensis"],["NCBITaxon%3A2881335","Loktanella gaetbuli"]]},{"id":"NCBITaxon:74152","l":"Elusimicrobiota","na":1,"nb":201,"a":[["hypolimnion-envo-00002130.html","hypolimnion"]],"b":[["NCBITaxon%3A3416221","Candidatus Avelusimicrobium alvi"],["NCBITaxon%3A3416206","Candidatus Avelusimicrobium aviculae"],["NCBITaxon%3A3416215","Candidatus Avelusimicrobium bubulum"],["NCBITaxon%3A3416220","Candidatus Avelusimicrobium caledoniensis"],["NCBITaxon%3A1947906","Candidatus Avelusimicrobium cornigerorum"],["NCBITaxon%3A2840689","Candidatus Avelusimicrobium excrementipullorum"]]},{"id":"NCBITaxon:1253","l":"Pediococcus","na":1,"nb":186,"a":[["cecum-bto-0000166.html","cecum"]],"b":[["NCBITaxon%3A1872398","Aerococcus sp."],["NCBITaxon%3A51665","Aerococcus urinaeequi"],["NCBITaxon%3A1254","Pediococcus acidilactici"],["NCBITaxon%3A563194","Pediococcus acidilactici 7_4"],["NCBITaxon%3A1384067","Pediococcus acidilactici AGR20"],["NCBITaxon%3A1306952","Pediococcus acidilactici D3"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":176,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A90371","Salmonella enterica subsp. enterica serovar Typhimurium"],["NCBITaxon%3A1173928","Salmonella enterica subsp. enterica serovar Typhimurium str. 0052"],["NCBITaxon%3A1114946","Salmonella enterica subsp. enterica serovar Typhimurium str. 00-01036"],["NCBITaxon%3A1173930","Salmonella enterica subsp. enterica serovar Typhimurium str. 0364"]]},{"id":"NCBITaxon:186650","l":"Microvirga","na":1,"nb":171,"a":[["crop-bto-0000301.html","crop"]],"b":[["NCBITaxon%3A670292","Microvirga aerilata"],["NCBITaxon%3A670291","Microvirga aerophila"],["NCBITaxon%3A2791025","Microvirga alba"],["NCBITaxon%3A2819233","Microvirga antarctica"],["NCBITaxon%3A1128671","Microvirga arabica"],["NCBITaxon%3A2692265","Microvirga arsenatis"]]},{"id":"NCBITaxon:59203","l":"Salmonella enterica subsp. arizonae","na":1,"nb":151,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59203","Salmonella enterica subsp. arizonae"],["NCBITaxon%3A2577126","Salmonella enterica subsp. arizonae serovar 11:z4,z23:-"],["NCBITaxon%3A2577127","Salmonella enterica subsp. arizonae serovar 13,22:z4,z23:-"],["NCBITaxon%3A2691147","Salmonella enterica subsp. arizonae serovar 13,23:g,z51:-"],["NCBITaxon%3A2577128","Salmonella enterica subsp. arizonae serovar 13,23:z4,z23,[z32]:-"]]},{"id":"NCBITaxon:1134404","l":"Ignavibacteriota","na":1,"nb":150,"a":[["gut-bto-0000545.html","gut"]],"b":[["NCBITaxon%3A3879837","Candidatus Tepidaquicellaceae bacterium"],["NCBITaxon%3A3414687","Candidatus Tepidiaquacella proteinivora"],["NCBITaxon%3A3455485","Candidatus Tepidiaquacellales bacterium"],["NCBITaxon%3A1617411","Candidatus Tepidiaquacellales bacterium OLB4/UTCHB1"],["NCBITaxon%3A1617412","Candidatus Tepidiaquacellales bacterium OLB5"],["NCBITaxon%3A1948666","Candidatus Tepidiaquacellales bacterium UBA2330"]]},{"id":"NCBITaxon:83334","l":"Escherichia coli O157:H7","na":1,"nb":140,"a":[["uterus-bto-0001424.html","uterus"]],"b":[["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1389955","Escherichia coli ATCC 35150"],["NCBITaxon%3A83334","Escherichia coli O157:H7"],["NCBITaxon%3A1446609","Escherichia coli O157:H7 str. 06-3745"],["NCBITaxon%3A1446610","Escherichia coli O157:H7 str. 06-4039"],["NCBITaxon%3A1446611","Escherichia coli O157:H7 str. 07-3091"]]},{"id":"NCBITaxon:203557","l":"Verrucomicrobiaceae","na":1,"nb":130,"a":[["column-bto-0005692.html","column"]],"b":[["NCBITaxon%3A748831","Prosthecobacter gellanilyticus"],["NCBITaxon%3A177412","Fucophilus fucoidanolyticus"],["NCBITaxon%3A1048331","Haloferula chungangensis"],["NCBITaxon%3A490092","Haloferula harenae"],["NCBITaxon%3A490095","Haloferula helveola"],["NCBITaxon%3A595692","Haloferula luteola"]]},{"id":"NCBITaxon:1860","l":"Geodermatophilus","na":1,"nb":127,"a":[["crop-bto-0000301.html","crop"]],"b":[["NCBITaxon%3A1137993","Geodermatophilus africanus"],["NCBITaxon%3A1296565","Geodermatophilus amargosae"],["NCBITaxon%3A1564161","Geodermatophilus aquaeductus"],["NCBITaxon%3A1137990","Geodermatophilus arenarius"],["NCBITaxon%3A1564160","Geodermatophilus bullaregiensis"],["NCBITaxon%3A2035835","Geodermatophilus chilensis"]]},{"id":"NCBITaxon:265488","l":"Rhodopirellula","na":1,"nb":121,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A980271","Aporhodopirellula rubra"],["NCBITaxon%3A1263869","Aporhodopirellula sallentina"],["NCBITaxon%3A1265734","Novipirellula maiorica"],["NCBITaxon%3A2014065","Rhodopirellula bahusiensis"],["NCBITaxon%3A265606","Rhodopirellula baltica"],["NCBITaxon%3A993517","Rhodopirellula baltica SH28"]]},{"id":"NCBITaxon:219685","l":"Gemmatimonadia","na":1,"nb":108,"a":[["crop-bto-0000301.html","crop"]],"b":[["NCBITaxon%3A3056743","Candidatus Benthicola azotiphorus"],["NCBITaxon%3A3056742","Candidatus Benthicola marisminoris"],["NCBITaxon%3A3101352","Candidatus Benthicola sp."],["NCBITaxon%3A3056746","Candidatus Caribbeanibacter nitroreducens"],["NCBITaxon%3A3056744","Candidatus Carthagonibacter metallireducens"],["NCBITaxon%3A3101351","Candidatus Carthagonibacter sp."]]},{"id":"NCBITaxon:1577788","l":"Methanomassiliicoccaceae","na":1,"nb":103,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A1234667","Candidatus Methanogranum caenicola"],["NCBITaxon%3A2848114","Candidatus Methanogranum gryphiswaldense"],["NCBITaxon%3A3101443","Candidatus Methanogranum sp."],["NCBITaxon%3A1406512","Candidatus Methanomassiliicoccus intestinalis"],["NCBITaxon%3A1295009","Candidatus Methanomassiliicoccus intestinalis Issoire-Mx1"],["NCBITaxon%3A3136098","Candidatus Methanoplasma cognatum"]]},{"id":"NCBITaxon:281915","l":"Curvibacter","na":1,"nb":100,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"]],"b":[["NCBITaxon%3A3026422","Curvibacter cyanobacteriorum"],["NCBITaxon%3A80879","Curvibacter delicatus"],["NCBITaxon%3A1349763","Curvibacter delicatus NBRC 14919"],["NCBITaxon%3A247486","Curvibacter fontanus"],["NCBITaxon%3A230310","Curvibacter gracilis"],["NCBITaxon%3A1336244","Curvibacter gracilis ATCC BAA-807"]]},{"id":"NCBITaxon:568386","l":"Nevskiaceae","na":1,"nb":99,"a":[["oil-secretion-bto-0005373.html","oil secretion"]],"b":[["NCBITaxon%3A159478","Alkanibacter difficilis"],["NCBITaxon%3A1872458","Alkanibacter sp."],["NCBITaxon%3A2806210","Flagellatimonas centrodinii"],["NCBITaxon%3A2893024","Flagellatimonas sp."],["NCBITaxon%3A1891218","Fontimonas sp."],["NCBITaxon%3A3693038","Fontimonas sp. FW305-C-3"]]},{"id":"NCBITaxon:107","l":"Spirosoma","na":1,"nb":96,"a":[["skin-bto-0001253.html","skin"]],"b":[["NCBITaxon%3A1211326","Spirosoma aerolatum"],["NCBITaxon%3A1717229","Spirosoma aerophilum"],["NCBITaxon%3A1987381","Spirosoma agri"],["NCBITaxon%3A2682092","Spirosoma arboris"],["NCBITaxon%3A1465616","Spirosoma arcticum"],["NCBITaxon%3A1806202","Spirosoma areae"]]},{"id":"NCBITaxon:1562","l":"Desulfotomaculum","na":1,"nb":94,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"]],"b":[["NCBITaxon%3A2792885","Desulfotomaculum antarcticum"],["NCBITaxon%3A1838280","Desulfotomaculum copahuensis"],["NCBITaxon%3A369958","Desulfotomaculum defluvii"],["NCBITaxon%3A1565","Desulfotomaculum nigrificans"],["NCBITaxon%3A868595","Desulfotomaculum nigrificans CO-1-SRB"],["NCBITaxon%3A696369","Desulfotomaculum nigrificans DSM 574"]]},{"id":"NCBITaxon:212791","l":"Enhydrobacter","na":1,"nb":86,"a":[["trachea-bto-0001388.html","trachea"]],"b":[["NCBITaxon%3A225324","Enhydrobacter aerosaccus"],["NCBITaxon%3A553217","Enhydrobacter aerosaccus SK60"],["NCBITaxon%3A1894999","Enhydrobacter sp."],["NCBITaxon%3A1449459","Enhydrobacter sp. 1153-i7"],["NCBITaxon%3A881987","Enhydrobacter sp. 1_36p"],["NCBITaxon%3A2653137","Enhydrobacter sp. 8BJ"]]},{"id":"NCBITaxon:4762","l":"Oomycota","na":1,"nb":85,"a":[["oomycete-associated-environment-habitatmech-gold-a233293e47.html","oomycete-associated environment"]],"b":[["NCBITaxon%3A1202772","Achlya hypogyna"],["NCBITaxon%3A65357","Albugo candida"],["NCBITaxon%3A112090","Aphanomyces astaci"],["NCBITaxon%3A112091","Aphanomyces cochlioides"],["NCBITaxon%3A100861","Aphanomyces euteiches"],["NCBITaxon%3A157072","Aphanomyces invadans"]]},{"id":"NCBITaxon:713","l":"Actinobacillus","na":1,"nb":85,"a":[["head-bto-0000282.html","head"]],"b":[["NCBITaxon%3A221404","Actinobacillus anseriformium"],["NCBITaxon%3A221398","Actinobacillus anseriformium biovar 1"],["NCBITaxon%3A221399","Actinobacillus anseriformium biovar 2"],["NCBITaxon%3A157339","Actinobacillus arthritidis"],["NCBITaxon%3A717","Actinobacillus capsulatus"],["NCBITaxon%3A1120931","Actinobacillus capsulatus DSM 19761"]]},{"id":"NCBITaxon:213465","l":"Syntrophobacteraceae","na":1,"nb":84,"a":[["crop-bto-0000301.html","crop"]],"b":[["NCBITaxon%3A1930578","Candidatus Desulfonatronobulbus propionicus"],["NCBITaxon%3A109258","Desulfacinum hydrothermale"],["NCBITaxon%3A1121390","Desulfacinum hydrothermale DSM 13146"],["NCBITaxon%3A35837","Desulfacinum infernum"],["NCBITaxon%3A1121391","Desulfacinum infernum DSM 9756"],["NCBITaxon%3A2301220","Desulfacinum sp."]]},{"id":"NCBITaxon:219686","l":"Gemmatimonadales","na":1,"nb":83,"a":[["spike-bto-0001278.html","spike"]],"b":[["NCBITaxon%3A2026741","Gemmatimonadaceae bacterium"],["NCBITaxon%3A1956166","Gemmatimonadaceae bacterium 4484_173"],["NCBITaxon%3A1387400","Gemmatimonadaceae bacterium LWQ133"],["NCBITaxon%3A2448054","Gemmatimonadales bacterium"],["NCBITaxon%3A2478550","Gemmatimonadales bacterium JGI 01_G21"],["NCBITaxon%3A2478549","Gemmatimonadales bacterium JGI 01_H16"]]},{"id":"NCBITaxon:174951","l":"Ramlibacter","na":1,"nb":81,"a":[["crop-bto-0000301.html","crop"]],"b":[["NCBITaxon%3A2728837","Ramlibacter agri"],["NCBITaxon%3A2079448","Ramlibacter albus"],["NCBITaxon%3A2795217","Ramlibacter algicola"],["NCBITaxon%3A2039631","Ramlibacter alkalitolerans"],["NCBITaxon%3A2780094","Ramlibacter aquaticus"],["NCBITaxon%3A2801330","Ramlibacter aurantiacus"]]},{"id":"NCBITaxon:28067","l":"Rubrivivax","na":1,"nb":76,"a":[["nectar-bto-0000537.html","nectar"]],"b":[["NCBITaxon%3A3400288","Candidatus Rubrivivax defluviihabitans"],["NCBITaxon%3A2499835","Rubrivivax albus"],["NCBITaxon%3A316997","Rubrivivax benzoatilyticus"],["NCBITaxon%3A987059","Rubrivivax benzoatilyticus JA2 = ATCC BAA-35"],["NCBITaxon%3A28068","Rubrivivax gelatinosus"],["NCBITaxon%3A1154769","Rubrivivax gelatinosus CBS"]]},{"id":"NCBITaxon:1101","l":"Prosthecochloris","na":1,"nb":70,"a":[["hemolymph-bto-0000572.html","hemolymph"]],"b":[["NCBITaxon%3A1102","Prosthecochloris aestuarii"],["NCBITaxon%3A290512","Prosthecochloris aestuarii DSM 271"],["NCBITaxon%3A2743976","Prosthecochloris ethylica"],["NCBITaxon%3A315457","Prosthecochloris indica"],["NCBITaxon%3A2017681","Prosthecochloris marina"],["NCBITaxon%3A1692047","Prosthecochloris phaeoasteroidea"]]},{"id":"NCBITaxon:1313211","l":"Lentisphaeria","na":1,"nb":69,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A2840947","Candidatus Spyradenecus faecavium"],["NCBITaxon%3A3004486","Candidatus Spyradenecus sp."],["NCBITaxon%3A256847","Lentisphaera araneosa"],["NCBITaxon%3A313628","Lentisphaera araneosa HTCC2155"],["NCBITaxon%3A1111041","Lentisphaera marina"],["NCBITaxon%3A1658616","Lentisphaera profundi"]]},{"id":"NCBITaxon:168697","l":"Salinispora arenicola","na":1,"nb":66,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A168697","Salinispora arenicola"],["NCBITaxon%3A391967","Salinispora arenicola ATCC BAA-917"],["NCBITaxon%3A1136425","Salinispora arenicola CNB458"],["NCBITaxon%3A1137250","Salinispora arenicola CNB527"],["NCBITaxon%3A1136427","Salinispora arenicola CNH646"],["NCBITaxon%3A1408327","Salinispora arenicola CNH713"]]},{"id":"NCBITaxon:174","l":"Leptospira borgpetersenii","na":1,"nb":61,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A174","Leptospira borgpetersenii"],["NCBITaxon%3A652580","Leptospira borgpetersenii serovar Arborea"],["NCBITaxon%3A1218566","Leptospira borgpetersenii serovar Arborea str. LT2208"],["NCBITaxon%3A508535","Leptospira borgpetersenii serovar Balcanica"],["NCBITaxon%3A280505","Leptospira borgpetersenii serovar Ballum"],["NCBITaxon%3A376921","Leptospira borgpetersenii serovar Castellonis"]]},{"id":"NCBITaxon:49082","l":"Candidatus Neoarthromitus","na":1,"nb":57,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["NCBITaxon%3A2666074","Candidatus Arthromitus sp. GSU"],["NCBITaxon%3A2608943","Candidatus Arthromitus sp. M17"],["NCBITaxon%3A2608944","Candidatus Arthromitus sp. M18"],["NCBITaxon%3A2608945","Candidatus Arthromitus sp. M19"],["NCBITaxon%3A2608946","Candidatus Arthromitus sp. M20"],["NCBITaxon%3A2608947","Candidatus Arthromitus sp. M21"]]},{"id":"NCBITaxon:187","l":"Aquaspirillum","na":1,"nb":54,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A87645","Aquaspirillum arcticum"],["NCBITaxon%3A682713","Aquaspirillum denitrificans"],["NCBITaxon%3A80877","Aquaspirillum polymorphum"],["NCBITaxon%3A181658","Aquaspirillum putridiconchylium"],["NCBITaxon%3A190","Aquaspirillum serpens"],["NCBITaxon%3A1121004","Aquaspirillum serpens DSM 68"]]},{"id":"NCBITaxon:2864","l":"Dinophyceae","na":1,"nb":53,"a":[["dinoflagellate-associated-environment-habitatmech-gold-94019ddb33.html","dinoflagellate-associated environment"]],"b":[["NCBITaxon%3A143672","Akashiwo sanguinea"],["NCBITaxon%3A327968","Alexandrium andersonii"],["NCBITaxon%3A2925","Alexandrium catenella"],["NCBITaxon%3A2932","Alexandrium fundyense"],["NCBITaxon%3A109239","Alexandrium margalefii"],["NCBITaxon%3A39455","Alexandrium minutum"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":51,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A1392","Bacillus anthracis"],["NCBITaxon%3A1412844","Bacillus anthracis 52-G"],["NCBITaxon%3A1412843","Bacillus anthracis 8903-G"],["NCBITaxon%3A1412842","Bacillus anthracis 9080-G"],["NCBITaxon%3A1420588","Bacillus anthracis CVCC 40048"],["NCBITaxon%3A1439874","Bacillus anthracis CZC5"]]},{"id":"NCBITaxon:227979","l":"Jeotgalicoccus","na":1,"nb":50,"a":[["trachea-bto-0001388.html","trachea"]],"b":[["NCBITaxon%3A2838629","Candidatus Jeotgalicoccus stercoravium"],["NCBITaxon%3A709510","Jeotgalicoccus aerolatus"],["NCBITaxon%3A709509","Jeotgalicoccus coquinae"],["NCBITaxon%3A157227","Jeotgalicoccus halotolerans"],["NCBITaxon%3A589010","Jeotgalicoccus huakuii"],["NCBITaxon%3A516700","Jeotgalicoccus marinus"]]},{"id":"NCBITaxon:2830","l":"Haptophyta","na":1,"nb":44,"a":[["column-bto-0005692.html","column"]],"b":[["NCBITaxon%3A127549","Calcidiscus leptoporus"],["NCBITaxon%3A412156","Chrysochromulina leadbeateri"],["NCBITaxon%3A127563","Chrysochromulina parva"],["NCBITaxon%3A412157","Chrysochromulina rotalis"],["NCBITaxon%3A412158","Chrysochromulina simplex"],["NCBITaxon%3A1460289","Chrysochromulina tobinii"]]},{"id":"NCBITaxon:50709","l":"Acidocella","na":1,"nb":42,"a":[["atherosclerotic-plaque-bto-0003120.html","atherosclerotic plaque"]],"b":[["NCBITaxon%3A472056","Acidocella aluminiidurans"],["NCBITaxon%3A33998","Acidocella aminolytica"],["NCBITaxon%3A1120923","Acidocella aminolytica 101 = DSM 11237"],["NCBITaxon%3A1922313","Acidocella aquatica"],["NCBITaxon%3A1303579","Acidocella aromatica"],["NCBITaxon%3A525","Acidocella facilis"]]},{"id":"NCBITaxon:340","l":"Xanthomonas campestris pv. campestris","na":1,"nb":41,"a":[["waste-treatment-plant-envo-00002272.html","waste treatment plant"]],"b":[["NCBITaxon%3A339","Xanthomonas campestris"],["NCBITaxon%3A340","Xanthomonas campestris pv. campestris"],["NCBITaxon%3A1357995","Xanthomonas campestris pv. campestris str. 147"],["NCBITaxon%3A314565","Xanthomonas campestris pv. campestris str. 8004"],["NCBITaxon%3A190485","Xanthomonas campestris pv. campestris str. ATCC 33913"],["NCBITaxon%3A509169","Xanthomonas campestris pv. campestris str. B100"]]},{"id":"NCBITaxon:384","l":"Rhizobium leguminosarum","na":1,"nb":39,"a":[["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["NCBITaxon%3A3019932","Rhizobium brockwellii"],["NCBITaxon%3A384","Rhizobium leguminosarum"],["NCBITaxon%3A385","Rhizobium leguminosarum bv. phaseoli"],["NCBITaxon%3A936350","Rhizobium leguminosarum bv. phaseoli 4292"],["NCBITaxon%3A1408223","Rhizobium leguminosarum bv. phaseoli CCGM1"],["NCBITaxon%3A1041140","Rhizobium leguminosarum bv. phaseoli FA23"]]},{"id":"NCBITaxon:261933","l":"Pleomorphomonas","na":1,"nb":38,"a":[["nectar-bto-0000537.html","nectar"]],"b":[["NCBITaxon%3A2023338","Pleomorphomonas carboxyditropha"],["NCBITaxon%3A1166257","Pleomorphomonas diazotrophica"],["NCBITaxon%3A257440","Pleomorphomonas koreensis"],["NCBITaxon%3A1122962","Pleomorphomonas koreensis DSM 23070"],["NCBITaxon%3A261934","Pleomorphomonas oryzae"],["NCBITaxon%3A1122963","Pleomorphomonas oryzae DSM 16300"]]},{"id":"NCBITaxon:447020","l":"Adlercreutzia","na":1,"nb":37,"a":[["cecum-mucosa-bto-0000213.html","cecum mucosa"]],"b":[["NCBITaxon%3A2941324","Adlercreutzia agrestimuris"],["NCBITaxon%3A2941323","Adlercreutzia aquisgranensis"],["NCBITaxon%3A671266","Adlercreutzia caecimuris"],["NCBITaxon%3A1235794","Adlercreutzia caecimuris B7"],["NCBITaxon%3A446660","Adlercreutzia equolifaciens"],["NCBITaxon%3A1384484","Adlercreutzia equolifaciens DSM 19450"]]},{"id":"NCBITaxon:54736","l":"Salmonella bongori","na":1,"nb":36,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A54736","Salmonella bongori"],["NCBITaxon%3A1299281","Salmonella bongori CFSAN000509"],["NCBITaxon%3A1299282","Salmonella bongori CFSAN000510"],["NCBITaxon%3A1197719","Salmonella bongori N268-08"],["NCBITaxon%3A218493","Salmonella bongori NCTC 12419"],["NCBITaxon%3A2577113","Salmonella bongori serovar 13,22:r:-"]]},{"id":"NCBITaxon:1080709","l":"Methanomassiliicoccus","na":1,"nb":35,"a":[["gut-bto-0000545.html","gut"]],"b":[["NCBITaxon%3A1406512","Candidatus Methanomassiliicoccus intestinalis"],["NCBITaxon%3A1295009","Candidatus Methanomassiliicoccus intestinalis Issoire-Mx1"],["NCBITaxon%3A1080712","Methanomassiliicoccus luminyensis"],["NCBITaxon%3A1175296","Methanomassiliicoccus luminyensis B10"],["NCBITaxon%3A2528041","Methanomassiliicoccus sp."],["NCBITaxon%3A1622079","Methanomassiliicoccus sp. 138"]]},{"id":"NCBITaxon:715","l":"Actinobacillus pleuropneumoniae","na":1,"nb":35,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["NCBITaxon%3A44930","Natronobacterium gregoryi"],["NCBITaxon%3A797304","Natronobacterium gregoryi SP2"],["NCBITaxon%3A715","Actinobacillus pleuropneumoniae"],["NCBITaxon%3A1224142","Actinobacillus pleuropneumoniae S8"],["NCBITaxon%3A40325","Actinobacillus pleuropneumoniae serovar 1"],["NCBITaxon%3A754347","Actinobacillus pleuropneumoniae serovar 10"]]},{"id":"NCBITaxon:28050","l":"Lachnospira","na":1,"nb":34,"a":[["adult-bto-0001043.html","adult"]],"b":[["NCBITaxon%3A39485","Lachnospira eligens"],["NCBITaxon%3A515620","Lachnospira eligens ATCC 27750"],["NCBITaxon%3A1263077","Lachnospira eligens CAG:72"],["NCBITaxon%3A3230259","Lachnospira hominis (ex Hitch et al. 2025)"],["NCBITaxon%3A2763051","Lachnospira hominis (ex Liu et al. 2021)"],["NCBITaxon%3A3133158","Lachnospira intestinalis"]]},{"id":"NCBITaxon:246874","l":"Cryomorphaceae","na":1,"nb":33,"a":[["column-bto-0005692.html","column"]],"b":[["NCBITaxon%3A2692424","Acidiluteibacter ferrifornacis"],["NCBITaxon%3A2819283","Acidiluteibacter sp."],["NCBITaxon%3A2964002","Acidiluteibacter sp. SCM31"],["NCBITaxon%3A2953872","Candidatus Marisimplicoccus framensis"],["NCBITaxon%3A3101254","Candidatus Marisimplicoccus sp."],["NCBITaxon%3A101383","Cryomorpha ignava"]]},{"id":"NCBITaxon:105850","l":"Acidilobus","na":1,"nb":32,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A105851","Acidilobus aceticus"],["NCBITaxon%3A242703","Acidilobus saccharovorans"],["NCBITaxon%3A666510","Acidilobus saccharovorans 345-15"],["NCBITaxon%3A1872109","Acidilobus sp."],["NCBITaxon%3A242702","Acidilobus sp. 124-87"],["NCBITaxon%3A242704","Acidilobus sp. 405-16"]]},{"id":"NCBITaxon:114627","l":"Alkaliphilus","na":1,"nb":32,"a":[["ileum-bto-0000620.html","ileum"]],"b":[["NCBITaxon%3A185693","Alkaliphilus crotonatoxidans"],["NCBITaxon%3A2841507","Alkaliphilus flagellatus"],["NCBITaxon%3A522397","Alkaliphilus halophilus"],["NCBITaxon%3A1482730","Alkaliphilus hydrothermalis"],["NCBITaxon%3A208226","Alkaliphilus metalliredigens"],["NCBITaxon%3A293826","Alkaliphilus metalliredigens QYMF"]]},{"id":"NCBITaxon:83428","l":"uncultured Bacillus sp.","na":32,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"],["saline-water-body-envo-01001319.html","saline water body"],["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["NCBITaxon%3A83428","uncultured Bacillus sp."]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":1,"nb":31,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["NCBITaxon%3A571","Klebsiella oxytoca"],["NCBITaxon%3A883116","Klebsiella oxytoca 09-7231"],["NCBITaxon%3A883117","Klebsiella oxytoca 10-5242"],["NCBITaxon%3A883118","Klebsiella oxytoca 10-5243"],["NCBITaxon%3A883119","Klebsiella oxytoca 10-5244"],["NCBITaxon%3A883120","Klebsiella oxytoca 10-5245"]]},{"id":"NCBITaxon:890","l":"Desulfuromonas","na":1,"nb":30,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A891","Desulfuromonas acetoxidans"],["NCBITaxon%3A281689","Desulfuromonas acetoxidans DSM 684"],["NCBITaxon%3A1523623","Desulfuromonas carbonis"],["NCBITaxon%3A93716","Desulfuromonas chloroethenica"],["NCBITaxon%3A158192","Desulfuromonas michiganensis"],["NCBITaxon%3A40982","Desulfuromonas palmitatis"]]},{"id":"NCBITaxon:109168","l":"Desulfotalea","na":1,"nb":28,"a":[["hemolymph-bto-0000572.html","hemolymph"]],"b":[["NCBITaxon%3A84979","Desulfotalea arctica"],["NCBITaxon%3A84980","Desulfotalea psychrophila"],["NCBITaxon%3A177439","Desulfotalea psychrophila LSv54"],["NCBITaxon%3A2030813","Desulfotalea sp."],["NCBITaxon%3A303199","Desulfotalea sp. NA22"],["NCBITaxon%3A1092757","Desulfotalea sp. PR5_A04"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":27,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A57706","Citrobacter braakii"],["NCBITaxon%3A1914243","Citrobacter europaeus"],["NCBITaxon%3A546","Citrobacter freundii"],["NCBITaxon%3A1173724","Citrobacter freundii 47N"],["NCBITaxon%3A742730","Citrobacter freundii 4_7_47CFAA"],["NCBITaxon%3A1444046","Citrobacter freundii 5-172-05_S1_C1"]]},{"id":"NCBITaxon:1077265","l":"Chthonomonas","na":1,"nb":26,"a":[["root-bto-0001188.html","root"]],"b":[["NCBITaxon%3A454171","Chthonomonas calidirosea"],["NCBITaxon%3A1416929","Chthonomonas calidirosea P488"],["NCBITaxon%3A1303518","Chthonomonas calidirosea T49"],["NCBITaxon%3A1427520","Chthonomonas calidirosea TKA4.10"],["NCBITaxon%3A1427521","Chthonomonas calidirosea WRG1.2"],["NCBITaxon%3A2282153","Chthonomonas sp."]]},{"id":"NCBITaxon:118","l":"Planctomyces","na":1,"nb":26,"a":[["column-bto-0005692.html","column"]],"b":[["NCBITaxon%3A1653850","Planctomyces bekefii"],["NCBITaxon%3A37635","Planctomyces sp."],["NCBITaxon%3A79925","Planctomyces sp. 248"],["NCBITaxon%3A79927","Planctomyces sp. 282"],["NCBITaxon%3A79926","Planctomyces sp. 287"],["NCBITaxon%3A79924","Planctomyces sp. 423"]]},{"id":"NCBITaxon:1869227","l":"bacterium","na":26,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["marine-water-body-envo-00001999.html","marine water body"],["watercourse-envo-00000029.html","watercourse"],["laboratory-facility-envo-01001406.html","laboratory facility"]],"b":[["NCBITaxon%3A1869227","bacterium"]]},{"id":"NCBITaxon:2173","l":"Methanobrevibacter smithii","na":1,"nb":26,"a":[["lagoon-envo-00000038.html","lagoon"]],"b":[["NCBITaxon%3A2173","Methanobrevibacter smithii"],["NCBITaxon%3A420247","Methanobrevibacter smithii ATCC 35061"],["NCBITaxon%3A1263088","Methanobrevibacter smithii CAG:186"],["NCBITaxon%3A521001","Methanobrevibacter smithii DSM 11975"],["NCBITaxon%3A521002","Methanobrevibacter smithii DSM 2374"],["NCBITaxon%3A483214","Methanobrevibacter smithii DSM 2375"]]},{"id":"NCBITaxon:106111","l":"Pedobacter sp. KP-2","na":25,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"]],"b":[["NCBITaxon%3A106111","Pedobacter sp. KP-2"]]},{"id":"NCBITaxon:1360","l":"Lactococcus lactis subsp. lactis","na":1,"nb":25,"a":[["foregut-bto-0000507.html","foregut"]],"b":[["NCBITaxon%3A1358","Lactococcus lactis"],["NCBITaxon%3A203404","Lactococcus lactis subsp. hordniae"],["NCBITaxon%3A1348656","Lactococcus lactis subsp. hordniae NBRC 100931"],["NCBITaxon%3A1360","Lactococcus lactis subsp. lactis"],["NCBITaxon%3A1379274","Lactococcus lactis subsp. lactis 1AA59"],["NCBITaxon%3A1137134","Lactococcus lactis subsp. lactis A12"]]},{"id":"NCBITaxon:1765","l":"Mycobacterium tuberculosis variant bovis","na":1,"nb":25,"a":[["lymph-node-bto-0000784.html","lymph node"]],"b":[["NCBITaxon%3A1773","Mycobacterium tuberculosis"],["NCBITaxon%3A1765","Mycobacterium tuberculosis variant bovis"],["NCBITaxon%3A1384084","Mycobacterium tuberculosis variant bovis 04-303"],["NCBITaxon%3A233413","Mycobacterium tuberculosis variant bovis AF2122/97"],["NCBITaxon%3A1389959","Mycobacterium tuberculosis variant bovis AN5"],["NCBITaxon%3A1438822","Mycobacterium tuberculosis variant bovis B2 7505"]]},{"id":"NCBITaxon:2740","l":"Peptococcus","na":1,"nb":25,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"]],"b":[["NCBITaxon%3A2741","Peptococcus niger"],["NCBITaxon%3A1643805","Peptococcus simiae"],["NCBITaxon%3A2049038","Peptococcus sp."],["NCBITaxon%3A665947","Peptococcus sp. 2_1_54CFAA_CT1"],["NCBITaxon%3A1357330","Peptococcus sp. 2_1_54CFAACT2"],["NCBITaxon%3A1151468","Peptococcus sp. canine oral taxon 044"]]},{"id":"NCBITaxon:114715","l":"uncultured Ralstonia sp.","na":24,"nb":1,"a":[["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"]],"b":[["NCBITaxon%3A114715","uncultured Ralstonia sp."]]},{"id":"NCBITaxon:1828","l":"Rhodococcoides fascians","na":1,"nb":23,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["NCBITaxon%3A1828","Rhodococcoides fascians"],["NCBITaxon%3A1443888","Rhodococcoides fascians 02-815"],["NCBITaxon%3A1443889","Rhodococcoides fascians 02-816c"],["NCBITaxon%3A1443890","Rhodococcoides fascians 04-516"],["NCBITaxon%3A1443891","Rhodococcoides fascians 05-339-1"],["NCBITaxon%3A1443892","Rhodococcoides fascians 05-561-1"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa PAO1","na":1,"nb":23,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1453991","Pseudomonas aeruginosa BK1"],["NCBITaxon%3A1236530","Pseudomonas aeruginosa JCM 14847"],["NCBITaxon%3A1131757","Pseudomonas aeruginosa MPAO1/P1"],["NCBITaxon%3A1131758","Pseudomonas aeruginosa MPAO1/P2"],["NCBITaxon%3A208964","Pseudomonas aeruginosa PAO1"]]},{"id":"NCBITaxon:431041","l":"Candidatus Synechococcus spongiarum","na":1,"nb":23,"a":[["inlet-envo-00000475.html","inlet"]],"b":[["NCBITaxon%3A431041","Candidatus Synechococcus spongiarum"],["NCBITaxon%3A1608213","Candidatus Synechococcus spongiarum 142"],["NCBITaxon%3A1608419","Candidatus Synechococcus spongiarum 15L"],["NCBITaxon%3A452893","Candidatus Synechococcus spongiarum 604SC1"],["NCBITaxon%3A452894","Candidatus Synechococcus spongiarum 607SC1"],["NCBITaxon%3A452895","Candidatus Synechococcus spongiarum 614SC3"]]},{"id":"NCBITaxon:112248","l":"Seinonella peptonophila","na":20,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["stream-envo-00000023.html","stream"],["surface-water-envo-00002042.html","surface water"]],"b":[["NCBITaxon%3A112248","Seinonella peptonophila"]]},{"id":"NCBITaxon:1452","l":"Bacillus atrophaeus","na":1,"nb":20,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A1452","Bacillus atrophaeus"],["NCBITaxon%3A723888","Bacillus atrophaeus 1013-1"],["NCBITaxon%3A723889","Bacillus atrophaeus 1013-2"],["NCBITaxon%3A720555","Bacillus atrophaeus 1942"],["NCBITaxon%3A743709","Bacillus atrophaeus ATCC 49822"],["NCBITaxon%3A743710","Bacillus atrophaeus ATCC 49822-1"]]},{"id":"NCBITaxon:1579","l":"Lactobacillus acidophilus","na":1,"nb":20,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"]],"b":[["NCBITaxon%3A1597","Lacticaseibacillus paracasei"],["NCBITaxon%3A1590","Lactiplantibacillus plantarum"],["NCBITaxon%3A1579","Lactobacillus acidophilus"],["NCBITaxon%3A891391","Lactobacillus acidophilus 30SC"],["NCBITaxon%3A525306","Lactobacillus acidophilus ATCC 4796"],["NCBITaxon%3A1421011","Lactobacillus acidophilus CFH"]]},{"id":"NCBITaxon:29488","l":"Photorhabdus luminescens","na":1,"nb":20,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A171438","Photorhabdus akhurstii"],["NCBITaxon%3A2934395","Photorhabdus akhurstii subsp. akhurstii"],["NCBITaxon%3A1004165","Photorhabdus caribbeanensis"],["NCBITaxon%3A1004166","Photorhabdus hainanensis"],["NCBITaxon%3A230088","Photorhabdus kayaii"],["NCBITaxon%3A768034","Photorhabdus kleinii"]]},{"id":"NCBITaxon:302911","l":"Bifidobacterium animalis subsp. lactis","na":1,"nb":20,"a":[["simulated-communities-habitatmech-bacdive-5fa4710934.html","Simulated-communities"]],"b":[["NCBITaxon%3A28025","Bifidobacterium animalis"],["NCBITaxon%3A302911","Bifidobacterium animalis subsp. lactis"],["NCBITaxon%3A442563","Bifidobacterium animalis subsp. lactis AD011"],["NCBITaxon%3A1365953","Bifidobacterium animalis subsp. lactis ATCC 27536"],["NCBITaxon%3A1167629","Bifidobacterium animalis subsp. lactis ATCC 27673"],["NCBITaxon%3A1365954","Bifidobacterium animalis subsp. lactis ATCC 27674"]]},{"id":"NCBITaxon:330214","l":"Nitrospira defluvii","na":20,"nb":1,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["activated-sludge-envo-00002046.html","activated sludge"],["aquatic-environment-envo-01000317.html","aquatic environment"],["archeological-site-envo-00000564.html","archeological site"],["cultivated-environment-envo-01000311.html","cultivated environment"]],"b":[["NCBITaxon%3A330214","Nitrospira defluvii"]]},{"id":"NCBITaxon:2050","l":"Mobiluncus","na":1,"nb":19,"a":[["heart-bto-0000562.html","heart"]],"b":[["NCBITaxon%3A2051","Mobiluncus curtisii"],["NCBITaxon%3A548479","Mobiluncus curtisii ATCC 43063"],["NCBITaxon%3A887326","Mobiluncus curtisii ATCC 51333"],["NCBITaxon%3A144177","Mobiluncus curtisii subsp. curtisii"],["NCBITaxon%3A585198","Mobiluncus curtisii subsp. curtisii ATCC 35241"],["NCBITaxon%3A144178","Mobiluncus holmesii"]]},{"id":"NCBITaxon:40041","l":"Streptococcus equi subsp. zooepidemicus","na":1,"nb":19,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["NCBITaxon%3A1336","Streptococcus equi"],["NCBITaxon%3A40041","Streptococcus equi subsp. zooepidemicus"],["NCBITaxon%3A1051072","Streptococcus equi subsp. zooepidemicus ATCC 35246"],["NCBITaxon%3A681573","Streptococcus equi subsp. zooepidemicus BHS5"],["NCBITaxon%3A1403449","Streptococcus equi subsp. zooepidemicus CY"],["NCBITaxon%3A553483","Streptococcus equi subsp. zooepidemicus H70"]]},{"id":"NCBITaxon:110321","l":"Sinorhizobium medicae","na":1,"nb":18,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A110321","Sinorhizobium medicae"],["NCBITaxon%3A1230619","Sinorhizobium medicae A321"],["NCBITaxon%3A1041148","Sinorhizobium medicae DI28"],["NCBITaxon%3A1230620","Sinorhizobium medicae KH36b"],["NCBITaxon%3A1230621","Sinorhizobium medicae KH36c"],["NCBITaxon%3A1230622","Sinorhizobium medicae KH36d"]]},{"id":"NCBITaxon:1462430","l":"Candidatus Nanohalarchaeota","na":1,"nb":18,"a":[["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A3138763","Asbonarchaeaceae archaeon (SeqCode)"],["NCBITaxon%3A3138746","Asbonarchaeum danakilense (SeqCode)"],["NCBITaxon%3A2987745","Candidatus Nanoanaerosalina archaeon"],["NCBITaxon%3A2987741","Candidatus Nanoanaerosalina halalkaliphila"],["NCBITaxon%3A2987742","Candidatus Nanohalalkaliarchaeum halalkaliphilum"],["NCBITaxon%3A2099673","Candidatus Nanohalarchaeota archaeon"]]},{"id":"NCBITaxon:158836","l":"Enterobacter hormaechei","na":1,"nb":18,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A3461408","Enterobacter hoffmannii subsp. nototheniae"],["NCBITaxon%3A158836","Enterobacter hormaechei"],["NCBITaxon%3A888063","Enterobacter hormaechei ATCC 49162"],["NCBITaxon%3A1812934","Enterobacter hormaechei subsp. hoffmannii"],["NCBITaxon%3A1333851","Enterobacter hormaechei subsp. hoffmannii ECNIH3"]]},{"id":"NCBITaxon:859","l":"Fusobacterium necrophorum","na":1,"nb":18,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A134605","Fusobacterium equinum"],["NCBITaxon%3A849","Fusobacterium gonidiaformans"],["NCBITaxon%3A859","Fusobacterium necrophorum"],["NCBITaxon%3A1441734","Fusobacterium necrophorum BFTR-1"],["NCBITaxon%3A1441736","Fusobacterium necrophorum BFTR-2"],["NCBITaxon%3A1441732","Fusobacterium necrophorum BL"]]},{"id":"NCBITaxon:1007","l":"Saprospira","na":1,"nb":17,"a":[["hemolymph-bto-0000572.html","hemolymph"]],"b":[["NCBITaxon%3A1008","Saprospira grandis"],["NCBITaxon%3A694433","Saprospira grandis DSM 2844"],["NCBITaxon%3A984262","Saprospira grandis str. Lewin"],["NCBITaxon%3A3100341","Saprospira sp."],["NCBITaxon%3A3023936","Saprospira sp. CCB-QB6"],["NCBITaxon%3A263635","Saprospira sp. CNJ451"]]},{"id":"NCBITaxon:135858","l":"Catenibacterium","na":1,"nb":17,"a":[["intestine-bto-0000648.html","intestine"]],"b":[["NCBITaxon%3A2764323","Catenibacterium faecis"],["NCBITaxon%3A100886","Catenibacterium mitsuokai"],["NCBITaxon%3A451640","Catenibacterium mitsuokai DSM 15897"],["NCBITaxon%3A3035606","Catenibacterium mitsuokai subsp. tridentinum"],["NCBITaxon%3A2049022","Catenibacterium sp."],["NCBITaxon%3A2292991","Catenibacterium sp. AM22-15"]]},{"id":"NCBITaxon:1767","l":"Mycobacterium intracellulare","na":1,"nb":17,"a":[["co-culture-habitatmech-bacdive-ff945d8a69.html","Co-culture"]],"b":[["NCBITaxon%3A1764","Mycobacterium avium"],["NCBITaxon%3A1767","Mycobacterium intracellulare"],["NCBITaxon%3A1299331","Mycobacterium intracellulare 1956"],["NCBITaxon%3A1160713","Mycobacterium intracellulare 3387"],["NCBITaxon%3A487521","Mycobacterium intracellulare ATCC 13950"],["NCBITaxon%3A1134473","Mycobacterium intracellulare H2"]]},{"id":"NCBITaxon:1829","l":"Rhodococcus rhodochrous","na":1,"nb":17,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A1872672","Azotobacter sp."],["NCBITaxon%3A36822","Gordonia rubripertincta"],["NCBITaxon%3A1824","Nocardia asteroides"],["NCBITaxon%3A37329","Nocardia farcinica"],["NCBITaxon%3A1833","Rhodococcus erythropolis"],["NCBITaxon%3A33008","Rhodococcus globerulus"]]},{"id":"NCBITaxon:114707","l":"uncultured Pseudomonas sp.","na":16,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["animal-house-envo-00003040.html","animal house"]],"b":[["NCBITaxon%3A114707","uncultured Pseudomonas sp."]]},{"id":"NCBITaxon:1292046","l":"Desulfobulbus sp. oral taxon 041 str. Dsb1-5","na":16,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["central-nervous-system-bto-0000227.html","central nervous system"],["colonic-mucosa-bto-0000271.html","colonic mucosa"],["epithelium-bto-0000416.html","epithelium"],["gingiva-bto-0000519.html","gingiva"],["hip-bto-0001457.html","hip"]],"b":[["NCBITaxon%3A1292046","Desulfobulbus sp. oral taxon 041 str. Dsb1-5"]]},{"id":"NCBITaxon:1409","l":"Bacillus sp. (in: firmicutes)","na":16,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["low-tide-zone-envo-00000319.html","low tide zone"],["organic-waste-material-envo-00002873.html","organic waste material"],["rhizosphere-envo-00005801.html","rhizosphere"],["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1409","Bacillus sp. (in: firmicutes)"]]},{"id":"NCBITaxon:1872627","l":"Archangium sp.","na":16,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["reservoir-envo-00000025.html","reservoir"],["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["NCBITaxon%3A1872627","Archangium sp."]]},{"id":"NCBITaxon:411485","l":"Faecalibacterium prausnitzii M21/2","na":16,"nb":1,"a":[["bay-envo-00000032.html","bay"],["black-smoker-envo-00000218.html","black smoker"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["saline-water-envo-00002010.html","saline water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"]],"b":[["NCBITaxon%3A411485","Faecalibacterium prausnitzii M21/2"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":1,"nb":16,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["NCBITaxon%3A1114880","Aeromonas australiensis"],["NCBITaxon%3A1264931","Flavobacterium acidificum"],["NCBITaxon%3A553","Pantoea ananatis"],["NCBITaxon%3A1419326","Pantoea ananatis 15320"],["NCBITaxon%3A932677","Pantoea ananatis AJ13355"],["NCBITaxon%3A1048262","Pantoea ananatis B1-9"]]},{"id":"NCBITaxon:636","l":"Edwardsiella tarda","na":1,"nb":16,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["NCBITaxon%3A1896336","Citrobacter sp."],["NCBITaxon%3A636","Edwardsiella tarda"],["NCBITaxon%3A1418112","Edwardsiella tarda 3-novo"],["NCBITaxon%3A1418111","Edwardsiella tarda 3P"],["NCBITaxon%3A667121","Edwardsiella tarda ATCC 15947 = NBRC 105688"],["NCBITaxon%3A500638","Edwardsiella tarda ATCC 23685"]]},{"id":"NCBITaxon:1585","l":"Lactobacillus delbrueckii subsp. bulgaricus","na":1,"nb":15,"a":[["pig-manure-envo-00003860.html","pig manure"]],"b":[["NCBITaxon%3A2775876","Lacticaseibacillus sp."],["NCBITaxon%3A1584","Lactobacillus delbrueckii"],["NCBITaxon%3A1585","Lactobacillus delbrueckii subsp. bulgaricus"],["NCBITaxon%3A353496","Lactobacillus delbrueckii subsp. bulgaricus 2038"],["NCBITaxon%3A390333","Lactobacillus delbrueckii subsp. bulgaricus ATCC 11842 = JCM 1002"],["NCBITaxon%3A321956","Lactobacillus delbrueckii subsp. bulgaricus ATCC BAA-365"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":1,"nb":15,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["NCBITaxon%3A175628","Gordonia paraffinivorans"],["NCBITaxon%3A1785","Mycobacterium sp."],["NCBITaxon%3A1772","Mycolicibacterium smegmatis"],["NCBITaxon%3A1455235","Mycolicibacterium smegmatis 30-MsmegS_ND_60_A"],["NCBITaxon%3A1455243","Mycolicibacterium smegmatis 31-MsmegS_CIP_60_A"],["NCBITaxon%3A1455251","Mycolicibacterium smegmatis 32-MsmegS_CIP_30_A"]]},{"id":"NCBITaxon:233189","l":"Anaerolinea","na":1,"nb":15,"a":[["crop-bto-0000301.html","crop"]],"b":[["NCBITaxon%3A1872519","Anaerolinea sp."],["NCBITaxon%3A1968532","Anaerolinea sp. 4484_236"],["NCBITaxon%3A511451","Anaerolinea sp. enrichment culture clone D2CL_Bac_16S_Clone24"],["NCBITaxon%3A1797237","Anaerolinea sp. RIFOXYB12_FULL_60_12"],["NCBITaxon%3A1674540","Anaerolinea sp. SCGC AB-790-B16"],["NCBITaxon%3A1674536","Anaerolinea sp. SCGC AB-790-K11"]]},{"id":"NCBITaxon:264","l":"Francisella tularensis subsp. novicida","na":1,"nb":15,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A984129","Francisella cf. novicida Fx1"],["NCBITaxon%3A676032","Francisella cf. tularensis subsp. novicida 3523"],["NCBITaxon%3A263","Francisella tularensis"],["NCBITaxon%3A264","Francisella tularensis subsp. novicida"],["NCBITaxon%3A1450527","Francisella tularensis subsp. novicida D9876"],["NCBITaxon%3A1452728","Francisella tularensis subsp. novicida F6168"]]},{"id":"NCBITaxon:301","l":"Ectopseudomonas oleovorans","na":1,"nb":15,"a":[["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A43263","Aquipseudomonas alcaligenes"],["NCBITaxon%3A301","Ectopseudomonas oleovorans"],["NCBITaxon%3A1453503","Ectopseudomonas oleovorans AD6"],["NCBITaxon%3A1182590","Ectopseudomonas oleovorans CECT 5344"],["NCBITaxon%3A1033992","Ectopseudomonas oleovorans MOIL14HWK12"],["NCBITaxon%3A468557","Ectopseudomonas oleovorans MTCC 5210"]]},{"id":"NCBITaxon:542","l":"Zymomonas mobilis","na":1,"nb":15,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A223958","Exiguobacterium oxidotolerans"],["NCBITaxon%3A1397699","Exiguobacterium oxidotolerans JCM 12280"],["NCBITaxon%3A542","Zymomonas mobilis"],["NCBITaxon%3A325472","Zymomonas mobilis subsp. francensis"],["NCBITaxon%3A120045","Zymomonas mobilis subsp. mobilis"],["NCBITaxon%3A555217","Zymomonas mobilis subsp. mobilis ATCC 10988"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":1,"nb":15,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["NCBITaxon%3A668","Aliivibrio fischeri"],["NCBITaxon%3A617136","Aliivibrio fischeri 1-C10"],["NCBITaxon%3A617138","Aliivibrio fischeri 9ZB36"],["NCBITaxon%3A1298605","Aliivibrio fischeri ATCC 7744 = JCM 18803 = DSM 507"],["NCBITaxon%3A1367486","Aliivibrio fischeri CB37"],["NCBITaxon%3A1367487","Aliivibrio fischeri EM17"]]},{"id":"NCBITaxon:83456","l":"Myxococcus virescens","na":15,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["feces-uberon-0001988.html","feces"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"]],"b":[["NCBITaxon%3A83456","Myxococcus virescens"]]},{"id":"NCBITaxon:106370","l":"Frankia casuarinae","na":14,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["river-envo-00000022.html","river"],["rhizosphere-envo-00005801.html","rhizosphere"],["root-nodule-bto-0001190.html","root nodule"],["biome-envo-00000428.html","biome"],["biotope-envo-00002036.html","biotope"]],"b":[["NCBITaxon%3A106370","Frankia casuarinae"]]},{"id":"NCBITaxon:134561","l":"Nocardioides sp. C190","na":14,"nb":1,"a":[["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["rhizosphere-envo-00005801.html","rhizosphere"],["biome-envo-00000428.html","biome"]],"b":[["NCBITaxon%3A134561","Nocardioides sp. C190"]]},{"id":"NCBITaxon:1408194","l":"Endomicrobium","na":1,"nb":14,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A3242313","Candidatus Endomicrobium embiratermitis"],["NCBITaxon%3A3242314","Candidatus Endomicrobium labiotermitis"],["NCBITaxon%3A3242315","Candidatus Endomicrobium macrotermitis"],["NCBITaxon%3A3242316","Candidatus Endomicrobium neocapritermitis"],["NCBITaxon%3A3242317","Candidatus Endomicrobium procryptotermitis"],["NCBITaxon%3A1795642","Candidatus Endomicrobium sp. HsTcC-Em16"]]},{"id":"NCBITaxon:2242","l":"Halobacterium salinarum","na":1,"nb":14,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["NCBITaxon%3A2242","Halobacterium salinarum"],["NCBITaxon%3A2597657","Halobacterium salinarum DSM 3754"],["NCBITaxon%3A64091","Halobacterium salinarum NRC-1"],["NCBITaxon%3A2886895","Halobacterium salinarum NRC-34001"],["NCBITaxon%3A478009","Halobacterium salinarum R1"],["NCBITaxon%3A2109941","Halobacterium salinarum str. WSR1 (ex H. Halobium)"]]},{"id":"NCBITaxon:511","l":"Alcaligenes faecalis","na":1,"nb":14,"a":[["foot-bto-0000476.html","foot"]],"b":[["NCBITaxon%3A134375","Achromobacter sp."],["NCBITaxon%3A511","Alcaligenes faecalis"],["NCBITaxon%3A1255592","Alcaligenes faecalis 2L10"],["NCBITaxon%3A32001","Alcaligenes faecalis subsp. faecalis"],["NCBITaxon%3A1218102","Alcaligenes faecalis subsp. faecalis NBRC 13111"],["NCBITaxon%3A1156918","Alcaligenes faecalis subsp. faecalis NCIB 8687"]]},{"id":"NCBITaxon:71864","l":"Herpetosiphon sp.","na":14,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["NCBITaxon%3A71864","Herpetosiphon sp."]]},{"id":"NCBITaxon:1227","l":"Nitrosococcus","na":1,"nb":13,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A133539","Nitrosococcus halophilus"],["NCBITaxon%3A472759","Nitrosococcus halophilus Nc 4"],["NCBITaxon%3A38146","Nitrosococcus nitrosus"],["NCBITaxon%3A1229","Nitrosococcus oceani"],["NCBITaxon%3A473788","Nitrosococcus oceani AFC27"],["NCBITaxon%3A323261","Nitrosococcus oceani ATCC 19707"]]},{"id":"NCBITaxon:150053","l":"Yersinia enterocolitica subsp. palearctica","na":1,"nb":13,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["NCBITaxon%3A630","Yersinia enterocolitica"],["NCBITaxon%3A150052","Yersinia enterocolitica subsp. enterocolitica"],["NCBITaxon%3A150053","Yersinia enterocolitica subsp. palearctica"],["NCBITaxon%3A994476","Yersinia enterocolitica subsp. palearctica 105.5R(r)"],["NCBITaxon%3A940287","Yersinia enterocolitica subsp. palearctica 556/8265"],["NCBITaxon%3A940288","Yersinia enterocolitica subsp. palearctica 647/5307"]]},{"id":"NCBITaxon:168695","l":"Salinispora tropica","na":1,"nb":13,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A168695","Salinispora tropica"],["NCBITaxon%3A1137247","Salinispora tropica CNB476"],["NCBITaxon%3A1136431","Salinispora tropica CNB536"],["NCBITaxon%3A369723","Salinispora tropica CNB-440"],["NCBITaxon%3A1137248","Salinispora tropica CNH898"],["NCBITaxon%3A1169198","Salinispora tropica CNR699"]]},{"id":"NCBITaxon:204516","l":"Phocaeicola massiliensis","na":1,"nb":13,"a":[["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["NCBITaxon%3A204516","Phocaeicola massiliensis"],["NCBITaxon%3A1121098","Phocaeicola massiliensis B84634 = Timone 84634 = DSM 17679 = JCM 13223"],["NCBITaxon%3A1338881","Phocaeicola massiliensis TS7.1-1.1"],["NCBITaxon%3A1338882","Phocaeicola massiliensis TS7.1-1.2"],["NCBITaxon%3A1338883","Phocaeicola massiliensis TS7.1-1.3"],["NCBITaxon%3A1333703","Phocaeicola massiliensis TS7.1_V2.1.1"]]},{"id":"NCBITaxon:28122","l":"Fibrobacter intestinalis","na":13,"nb":1,"a":[["bay-envo-00000032.html","bay"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["small-river-biome-envo-00000890.html","small river biome"],["water-body-envo-00000063.html","water body"]],"b":[["NCBITaxon%3A28122","Fibrobacter intestinalis"]]},{"id":"NCBITaxon:413497","l":"Cronobacter dublinensis","na":1,"nb":13,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["NCBITaxon%3A691816","Bacteroides rodentium"],["NCBITaxon%3A1236512","Bacteroides rodentium JCM 16496"],["NCBITaxon%3A413497","Cronobacter dublinensis"],["NCBITaxon%3A1208656","Cronobacter dublinensis 1210"],["NCBITaxon%3A1208661","Cronobacter dublinensis 582"],["NCBITaxon%3A3459541","Cronobacter dublinensis subsp. beijingensis"]]},{"id":"NCBITaxon:669","l":"Vibrio harveyi","na":1,"nb":13,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["NCBITaxon%3A342113","Burkholderia oklahomensis"],["NCBITaxon%3A669","Vibrio harveyi"],["NCBITaxon%3A673519","Vibrio harveyi 1DA3"],["NCBITaxon%3A1287887","Vibrio harveyi AOD131"],["NCBITaxon%3A1125980","Vibrio harveyi CAIM 1792"],["NCBITaxon%3A1352943","Vibrio harveyi E385"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis H37Rv","na":1,"nb":13,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["NCBITaxon%3A1773","Mycobacterium tuberculosis"],["NCBITaxon%3A83332","Mycobacterium tuberculosis H37Rv"],["NCBITaxon%3A747078","Mycobacterium tuberculosis H37Rv_2009"],["NCBITaxon%3A928249","Mycobacterium tuberculosis H37Rv_ideR_mutant_ST22"],["NCBITaxon%3A757417","Mycobacterium tuberculosis H37RvAE"],["NCBITaxon%3A757419","Mycobacterium tuberculosis H37RvCO"]]},{"id":"NCBITaxon:104268","l":"Tenacibaculum mesophilum","na":12,"nb":1,"a":[["bay-envo-00000032.html","bay"],["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"],["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A104268","Tenacibaculum mesophilum"]]},{"id":"NCBITaxon:126385","l":"Providencia alcalifaciens","na":1,"nb":12,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A126385","Providencia alcalifaciens"],["NCBITaxon%3A1256988","Providencia alcalifaciens 205/92"],["NCBITaxon%3A663916","Providencia alcalifaciens Ban1"],["NCBITaxon%3A1141661","Providencia alcalifaciens Dmel2"],["NCBITaxon%3A520999","Providencia alcalifaciens DSM 30120"],["NCBITaxon%3A1256987","Providencia alcalifaciens F90-2004"]]},{"id":"NCBITaxon:28026","l":"Bifidobacterium pseudocatenulatum","na":1,"nb":12,"a":[["breast-bto-0000149.html","breast"]],"b":[["NCBITaxon%3A1423","Bacillus subtilis"],["NCBITaxon%3A135461","Bacillus subtilis subsp. subtilis"],["NCBITaxon%3A1686","Bifidobacterium catenulatum"],["NCBITaxon%3A28026","Bifidobacterium pseudocatenulatum"],["NCBITaxon%3A1263060","Bifidobacterium pseudocatenulatum CAG:263"],["NCBITaxon%3A718253","Bifidobacterium pseudocatenulatum D2CA"]]},{"id":"NCBITaxon:28035","l":"Staphylococcus lugdunensis","na":1,"nb":12,"a":[["foot-bto-0000476.html","foot"]],"b":[["NCBITaxon%3A1308746","Staphylococcus lugdenensis ADL-114"],["NCBITaxon%3A1308747","Staphylococcus lugdenensis ADL-405"],["NCBITaxon%3A28035","Staphylococcus lugdunensis"],["NCBITaxon%3A883164","Staphylococcus lugdunensis ACS-027-V-Sch2"],["NCBITaxon%3A698737","Staphylococcus lugdunensis HKU09-01"],["NCBITaxon%3A525377","Staphylococcus lugdunensis M23590"]]},{"id":"NCBITaxon:53409","l":"Pseudomonas coronafaciens","na":1,"nb":12,"a":[["pc-12-cell-bto-0001009.html","PC-12 cell"]],"b":[["NCBITaxon%3A53409","Pseudomonas coronafaciens"],["NCBITaxon%3A129135","Pseudomonas coronafaciens pv. atropurpurea"],["NCBITaxon%3A235275","Pseudomonas coronafaciens pv. coronafaciens"],["NCBITaxon%3A251653","Pseudomonas coronafaciens pv. garcae"],["NCBITaxon%3A1515743","Pseudomonas coronafaciens pv. morceparum"],["NCBITaxon%3A235277","Pseudomonas coronafaciens pv. oryzae"]]},{"id":"NCBITaxon:56454","l":"Xanthomonas hortorum","na":1,"nb":12,"a":[["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A339","Xanthomonas campestris"],["NCBITaxon%3A56454","Xanthomonas hortorum"],["NCBITaxon%3A925777","Xanthomonas hortorum ATCC 19865"],["NCBITaxon%3A3075649","Xanthomonas hortorum NBC5720"],["NCBITaxon%3A487904","Xanthomonas hortorum pv. carotae"],["NCBITaxon%3A863365","Xanthomonas hortorum pv. carotae str. M081"]]},{"id":"NCBITaxon:58172","l":"Paenibacillus sp.","na":12,"nb":1,"a":[["factory-envo-01000536.html","factory"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A58172","Paenibacillus sp."]]},{"id":"NCBITaxon:58340","l":"Streptomyces lavendulae subsp. lavendulae","na":1,"nb":12,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A1894","Kitasatospora aureofaciens"],["NCBITaxon%3A1914","Streptomyces lavendulae"],["NCBITaxon%3A68190","Streptomyces lavendulae subsp. colombiensis"],["NCBITaxon%3A66421","Streptomyces lavendulae subsp. grasserius"],["NCBITaxon%3A58340","Streptomyces lavendulae subsp. lavendulae"],["NCBITaxon%3A1303691","Streptomyces lavendulae subsp. lavendulae JCM 4055"]]},{"id":"NCBITaxon:584","l":"Proteus mirabilis","na":1,"nb":12,"a":[["salivary-gland-bto-0001203.html","salivary gland"]],"b":[["NCBITaxon%3A584","Proteus mirabilis"],["NCBITaxon%3A1285374","Proteus mirabilis 1014"],["NCBITaxon%3A1308721","Proteus mirabilis ADL-319"],["NCBITaxon%3A1308722","Proteus mirabilis ADL-321"],["NCBITaxon%3A1308723","Proteus mirabilis ADL-401"],["NCBITaxon%3A525369","Proteus mirabilis ATCC 29906"]]},{"id":"NCBITaxon:61645","l":"Enterobacter asburiae","na":1,"nb":12,"a":[["bone-marrow-bto-0000141.html","bone marrow"]],"b":[["NCBITaxon%3A61645","Enterobacter asburiae"],["NCBITaxon%3A1330532","Enterobacter asburiae B1-3"],["NCBITaxon%3A1330533","Enterobacter asburiae B5-60"],["NCBITaxon%3A1442602","Enterobacter asburiae C1"],["NCBITaxon%3A1298604","Enterobacter asburiae JCM 6051"],["NCBITaxon%3A1421338","Enterobacter asburiae L1"]]},{"id":"NCBITaxon:106654","l":"Acinetobacter nosocomialis","na":1,"nb":11,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A981325","Acinetobacter genomosp. 13TU str. NCTC 8102"],["NCBITaxon%3A106654","Acinetobacter nosocomialis"],["NCBITaxon%3A1147131","Acinetobacter nosocomialis 28F"],["NCBITaxon%3A1183155","Acinetobacter nosocomialis Ab22222"],["NCBITaxon%3A1343071","Acinetobacter nosocomialis M2"],["NCBITaxon%3A1217670","Acinetobacter nosocomialis NIPH 2119"]]},{"id":"NCBITaxon:110319","l":"Nocardioides sp. CF8","na":11,"nb":1,"a":[["stream-envo-00000023.html","stream"],["bioreactor-envo-00002123.html","bioreactor"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["biofilm-material-envo-01000156.html","biofilm material"],["biotope-envo-00002036.html","biotope"],["desert-biome-envo-01000179.html","desert biome"]],"b":[["NCBITaxon%3A110319","Nocardioides sp. CF8"]]},{"id":"NCBITaxon:110933","l":"Leifsonia poae","na":11,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["plant-gall-po-0025626.html","plant gall"],["animal-associated-environment-envo-01001002.html","animal-associated environment"],["desert-biome-envo-01000179.html","desert biome"],["farm-envo-00000078.html","farm"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["NCBITaxon%3A110933","Leifsonia poae"]]},{"id":"NCBITaxon:120045","l":"Zymomonas mobilis subsp. mobilis","na":1,"nb":11,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A542","Zymomonas mobilis"],["NCBITaxon%3A120045","Zymomonas mobilis subsp. mobilis"],["NCBITaxon%3A555217","Zymomonas mobilis subsp. mobilis ATCC 10988"],["NCBITaxon%3A627344","Zymomonas mobilis subsp. mobilis ATCC 29191"],["NCBITaxon%3A1231376","Zymomonas mobilis subsp. mobilis ATCC 31822"],["NCBITaxon%3A1389958","Zymomonas mobilis subsp. mobilis IRMH52"]]},{"id":"NCBITaxon:1720","l":"Corynebacterium sp.","na":11,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"]],"b":[["NCBITaxon%3A1720","Corynebacterium sp."]]},{"id":"NCBITaxon:208962","l":"Escherichia albertii","na":1,"nb":11,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["NCBITaxon%3A208962","Escherichia albertii"],["NCBITaxon%3A550692","Escherichia albertii B090"],["NCBITaxon%3A550693","Escherichia albertii B156"],["NCBITaxon%3A1440052","Escherichia albertii KF1"],["NCBITaxon%3A1115511","Escherichia albertii NBRC 107761 = DSM 17582"],["NCBITaxon%3A502347","Escherichia albertii TW07627"]]},{"id":"NCBITaxon:231024","l":"Streptomyces africanus","na":11,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["research-facility-envo-00000469.html","research facility"],["activated-sludge-envo-00002046.html","activated sludge"],["village-biome-envo-01000246.html","village biome"],["area-of-tundra-envo-00000112.html","area of tundra"]],"b":[["NCBITaxon%3A231024","Streptomyces africanus"]]},{"id":"NCBITaxon:234267","l":"Candidatus Solibacter usitatus Ellin6076","na":11,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["pond-water-envo-00002228.html","pond water"],["aquatic-environment-envo-01000317.html","aquatic environment"],["desert-sand-envo-00005800.html","desert sand"],["environmental-material-envo-00010483.html","environmental material"],["mud-envo-01000001.html","mud"]],"b":[["NCBITaxon%3A234267","Candidatus Solibacter usitatus Ellin6076"]]},{"id":"NCBITaxon:409","l":"Methylobacterium sp.","na":11,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["air-conditioning-unit-envo-00002874.html","air conditioning unit"],["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A409","Methylobacterium sp."]]},{"id":"NCBITaxon:83560","l":"Chlamydia muridarum","na":1,"nb":11,"a":[["oviduct-bto-0000980.html","oviduct"]],"b":[["NCBITaxon%3A83560","Chlamydia muridarum"],["NCBITaxon%3A658600","Chlamydia muridarum MopnTet14"],["NCBITaxon%3A243161","Chlamydia muridarum str. Nigg"],["NCBITaxon%3A1434769","Chlamydia muridarum str. Nigg3"],["NCBITaxon%3A1434771","Chlamydia muridarum str. Nigg3 CMUT3-13"],["NCBITaxon%3A1434772","Chlamydia muridarum str. Nigg3 CMUT3-42"]]},{"id":"NCBITaxon:103855","l":"Bordetella hinzii","na":1,"nb":10,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A103855","Bordetella hinzii"],["NCBITaxon%3A1331255","Bordetella hinzii 1277"],["NCBITaxon%3A1331256","Bordetella hinzii 4161"],["NCBITaxon%3A1331257","Bordetella hinzii 5132"],["NCBITaxon%3A1392838","Bordetella hinzii ATCC 51730"],["NCBITaxon%3A398517","Bordetella hinzii BC-306"]]},{"id":"NCBITaxon:1058","l":"Thiocapsa roseopersicina","na":10,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["saline-marsh-envo-00000054.html","saline marsh"],["river-envo-00000022.html","river"],["waste-water-envo-00002001.html","waste water"],["environmental-feature-envo-00002297.html","environmental feature"],["stromatolite-mat-envo-00002157.html","stromatolite mat"]],"b":[["NCBITaxon%3A1058","Thiocapsa roseopersicina"]]},{"id":"NCBITaxon:108028","l":"Arcanobacterium pluranimalium","na":10,"nb":1,"a":[["river-envo-00000022.html","river"],["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"],["biofilm-material-envo-01000156.html","biofilm material"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A108028","Arcanobacterium pluranimalium"]]},{"id":"NCBITaxon:1205679","l":"Bifidobacterium longum subsp. longum CECT 7347","na":10,"nb":1,"a":[["caco-2-cell-bto-0000195.html","CACO-2 cell"],["enterocyte-bto-0000398.html","enterocyte"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["jejunum-bto-0000657.html","jejunum"],["leukocyte-bto-0000751.html","leukocyte"]],"b":[["NCBITaxon%3A1205679","Bifidobacterium longum subsp. longum CECT 7347"]]},{"id":"NCBITaxon:1338","l":"Streptococcus intermedius","na":1,"nb":10,"a":[["geographic-feature-envo-00000000.html","geographic feature"]],"b":[["NCBITaxon%3A1328","Streptococcus anginosus"],["NCBITaxon%3A1302","Streptococcus gordonii"],["NCBITaxon%3A1338","Streptococcus intermedius"],["NCBITaxon%3A862967","Streptococcus intermedius B196"],["NCBITaxon%3A1248420","Streptococcus intermedius BA1"],["NCBITaxon%3A862966","Streptococcus intermedius C270"]]},{"id":"NCBITaxon:1506","l":"Clostridium sp.","na":10,"nb":1,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["animal-waste-material-envo-00002276.html","animal waste material"],["laboratory-facility-envo-01001406.html","laboratory facility"],["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["NCBITaxon%3A1506","Clostridium sp."]]},{"id":"NCBITaxon:1855","l":"Frankia sp.","na":10,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["surface-water-envo-00002042.html","surface water"],["water-body-envo-00000063.html","water body"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["cultivated-environment-envo-01000311.html","cultivated environment"],["area-of-tundra-envo-00000112.html","area of tundra"]],"b":[["NCBITaxon%3A1855","Frankia sp."]]},{"id":"NCBITaxon:28118","l":"Odoribacter splanchnicus","na":1,"nb":10,"a":[["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["NCBITaxon%3A28118","Odoribacter splanchnicus"],["NCBITaxon%3A1263090","Odoribacter splanchnicus CAG:14"],["NCBITaxon%3A709991","Odoribacter splanchnicus DSM 20712"],["NCBITaxon%3A1339535","Odoribacter splanchnicus TSDC10.2-1.1"],["NCBITaxon%3A1339536","Odoribacter splanchnicus TSDC17.1-1.1"],["NCBITaxon%3A1339537","Odoribacter splanchnicus TSDC17.2-1.1"]]},{"id":"NCBITaxon:2926447","l":"Marinispora","na":1,"nb":10,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A562918","Marinispora sp. CNQ-140"],["NCBITaxon%3A563581","Streptomyces sp. MAR2 13647N"],["NCBITaxon%3A563582","Streptomyces sp. MAR2 13665F"],["NCBITaxon%3A563583","Streptomyces sp. MAR2 13668C"],["NCBITaxon%3A378617","Streptomyces sp. MAR2 CNJ962 PL04"],["NCBITaxon%3A378618","Streptomyces sp. MAR2 CNR872 PL04"]]},{"id":"NCBITaxon:293387","l":"Bacillus altitudinis","na":1,"nb":10,"a":[["resting-cell-bto-0001170.html","resting cell"]],"b":[["NCBITaxon%3A293387","Bacillus altitudinis"],["NCBITaxon%3A1255572","Bacillus altitudinis 263"],["NCBITaxon%3A1178544","Bacillus altitudinis 41KF2b"],["NCBITaxon%3A1326972","Bacillus altitudinis A23-8"],["NCBITaxon%3A1326971","Bacillus altitudinis C101"],["NCBITaxon%3A1326970","Bacillus altitudinis C16B11"]]},{"id":"NCBITaxon:38304","l":"Corynebacterium tuberculostearicum","na":1,"nb":10,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["NCBITaxon%3A38284","Corynebacterium accolens"],["NCBITaxon%3A1736004","Corynebacterium cf. tuberculostearicum 1237_CAUR"],["NCBITaxon%3A1736005","Corynebacterium cf. tuberculostearicum 620_CAUR"],["NCBITaxon%3A1736006","Corynebacterium cf. tuberculostearicum 911_CAUR"],["NCBITaxon%3A38287","Corynebacterium fastidiosum"],["NCBITaxon%3A1720","Corynebacterium sp."]]},{"id":"NCBITaxon:439334","l":"Mycobacterium avium subsp. hominissuis","na":1,"nb":10,"a":[["lymph-node-bto-0000784.html","lymph node"]],"b":[["NCBITaxon%3A439334","Mycobacterium avium subsp. hominissuis"],["NCBITaxon%3A1402966","Mycobacterium avium subsp. hominissuis 100"],["NCBITaxon%3A1402967","Mycobacterium avium subsp. hominissuis 101"],["NCBITaxon%3A1391990","Mycobacterium avium subsp. hominissuis 10-4249"],["NCBITaxon%3A1381559","Mycobacterium avium subsp. hominissuis 10-5606"],["NCBITaxon%3A1160712","Mycobacterium avium subsp. hominissuis 3388"]]},{"id":"NCBITaxon:109263","l":"Halothiobacillus kellyi","na":9,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"],["small-river-biome-envo-00000890.html","small river biome"]],"b":[["NCBITaxon%3A109263","Halothiobacillus kellyi"]]},{"id":"NCBITaxon:111770","l":"Thiothrix fructosivorans","na":9,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"],["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A111770","Thiothrix fructosivorans"]]},{"id":"NCBITaxon:112235","l":"Neochlamydia hartmannellae","na":9,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["rhizosphere-envo-00005801.html","rhizosphere"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["biome-envo-00000428.html","biome"],["desert-biome-envo-01000179.html","desert biome"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"]],"b":[["NCBITaxon%3A112235","Neochlamydia hartmannellae"]]},{"id":"NCBITaxon:1134687","l":"Klebsiella michiganensis","na":1,"nb":9,"a":[["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"]],"b":[["NCBITaxon%3A1134687","Klebsiella michiganensis"],["NCBITaxon%3A1191061","Klebsiella michiganensis E718"],["NCBITaxon%3A1416754","Klebsiella michiganensis H1g"],["NCBITaxon%3A1308980","Klebsiella michiganensis HKOPL1"],["NCBITaxon%3A1006551","Klebsiella michiganensis KCTC 1686"],["NCBITaxon%3A290336","Klebsiella michiganensis M5al"]]},{"id":"NCBITaxon:1155385","l":"Proteiniclasticum","na":1,"nb":9,"a":[["urine-bto-0001419.html","urine"]],"b":[["NCBITaxon%3A2817862","Proteiniclasticum aestuarii"],["NCBITaxon%3A398199","Proteiniclasticum ruminis"],["NCBITaxon%3A1410668","Proteiniclasticum ruminis DSM 24773"],["NCBITaxon%3A2804028","Proteiniclasticum sediminis"],["NCBITaxon%3A2053595","Proteiniclasticum sp."],["NCBITaxon%3A3374101","Proteiniclasticum sp. C24MP"]]},{"id":"NCBITaxon:1599","l":"Latilactobacillus sakei","na":1,"nb":9,"a":[["research-facility-envo-00000469.html","research facility"]],"b":[["NCBITaxon%3A1599","Latilactobacillus sakei"],["NCBITaxon%3A1381395","Latilactobacillus sakei dgh6"],["NCBITaxon%3A1634","Latilactobacillus sakei L45"],["NCBITaxon%3A214325","Latilactobacillus sakei subsp. carnosus"],["NCBITaxon%3A525363","Latilactobacillus sakei subsp. carnosus DSM 15831"],["NCBITaxon%3A214326","Latilactobacillus sakei subsp. sakei"]]},{"id":"NCBITaxon:1604","l":"Lactobacillus amylovorus","na":1,"nb":9,"a":[["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A1604","Lactobacillus amylovorus"],["NCBITaxon%3A1263084","Lactobacillus amylovorus CAG:719"],["NCBITaxon%3A1423723","Lactobacillus amylovorus DSM 20531"],["NCBITaxon%3A695562","Lactobacillus amylovorus GRL1118"],["NCBITaxon%3A695560","Lactobacillus amylovorus GRL 1112"],["NCBITaxon%3A695561","Lactobacillus amylovorus GRL 1115"]]},{"id":"NCBITaxon:1667","l":"Arthrobacter sp.","na":9,"nb":1,"a":[["organic-waste-material-envo-00002873.html","organic waste material"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["leaf-po-0025034.html","leaf"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["NCBITaxon%3A1667","Arthrobacter sp."]]},{"id":"NCBITaxon:1768","l":"Mycobacterium kansasii","na":1,"nb":9,"a":[["liquid-water-envo-00002006.html","liquid water"]],"b":[["NCBITaxon%3A1768","Mycobacterium kansasii"],["NCBITaxon%3A1299326","Mycobacterium kansasii 662"],["NCBITaxon%3A1299327","Mycobacterium kansasii 732"],["NCBITaxon%3A1299328","Mycobacterium kansasii 824"],["NCBITaxon%3A557599","Mycobacterium kansasii ATCC 12478"],["NCBITaxon%3A1451191","Mycobacterium kansasii Z61"]]},{"id":"NCBITaxon:1812935","l":"Enterobacter roggenkampii","na":1,"nb":9,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A299767","Enterobacter ludwigii"],["NCBITaxon%3A1812935","Enterobacter roggenkampii"],["NCBITaxon%3A1439326","Enterobacter roggenkampii CHS 79"],["NCBITaxon%3A1334630","Enterobacter roggenkampii EC_38VIM1"],["NCBITaxon%3A1329832","Enterobacter roggenkampii MGH 34"]]},{"id":"NCBITaxon:1898207","l":"Clostridiales bacterium","na":1,"nb":9,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1898207","Clostridiales bacterium"],["NCBITaxon%3A3070003","Clostridiales bacterium T6-6.105"],["NCBITaxon%3A3070004","Clostridiales bacterium T6-6.35"],["NCBITaxon%3A3070005","Clostridiales bacterium T6-6.39"],["NCBITaxon%3A3070006","Clostridiales bacterium T6-7.35"],["NCBITaxon%3A3070007","Clostridiales bacterium T6-7.60"]]},{"id":"NCBITaxon:192222","l":"Campylobacter jejuni subsp. jejuni NCTC 11168 = ATCC 700819","na":1,"nb":9,"a":[["flagellate-bto-0000464.html","flagellate"]],"b":[["NCBITaxon%3A197","Campylobacter jejuni"],["NCBITaxon%3A192222","Campylobacter jejuni subsp. jejuni NCTC 11168 = ATCC 700819"],["NCBITaxon%3A1211776","Campylobacter jejuni subsp. jejuni NCTC 11168-BN148"],["NCBITaxon%3A1385724","Campylobacter jejuni subsp. jejuni NCTC 11168-GSv"],["NCBITaxon%3A1385720","Campylobacter jejuni subsp. jejuni NCTC 11168-K12E5"],["NCBITaxon%3A1385723","Campylobacter jejuni subsp. jejuni NCTC 11168-Kf1"]]},{"id":"NCBITaxon:199","l":"Campylobacter concisus","na":1,"nb":9,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["NCBITaxon%3A199","Campylobacter concisus"],["NCBITaxon%3A360104","Campylobacter concisus 13826"],["NCBITaxon%3A1243032","Campylobacter concisus ATCC 51561"],["NCBITaxon%3A1242969","Campylobacter concisus ATCC 51562"],["NCBITaxon%3A1242967","Campylobacter concisus UNSW1"],["NCBITaxon%3A1242965","Campylobacter concisus UNSW2"]]},{"id":"NCBITaxon:29539","l":"Thermoleophilum album","na":9,"nb":1,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"],["desert-sand-envo-00005800.html","desert sand"],["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"],["village-biome-envo-01000246.html","village biome"]],"b":[["NCBITaxon%3A29539","Thermoleophilum album"]]},{"id":"NCBITaxon:298","l":"Pseudomonas marginalis","na":1,"nb":9,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["NCBITaxon%3A129847","Pseudomonas grimontii"],["NCBITaxon%3A298","Pseudomonas marginalis"],["NCBITaxon%3A1198318","Pseudomonas marginalis ICMP 11289"],["NCBITaxon%3A1198317","Pseudomonas marginalis ICMP 9505"],["NCBITaxon%3A69646","Pseudomonas marginalis pv. alfalfae"],["NCBITaxon%3A97473","Pseudomonas marginalis pv. marginalis"]]},{"id":"NCBITaxon:32019","l":"Campylobacter fetus subsp. fetus","na":1,"nb":9,"a":[["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["NCBITaxon%3A196","Campylobacter fetus"],["NCBITaxon%3A32019","Campylobacter fetus subsp. fetus"],["NCBITaxon%3A1240980","Campylobacter fetus subsp. fetus 04/554"],["NCBITaxon%3A360106","Campylobacter fetus subsp. fetus 82-40"],["NCBITaxon%3A1273268","Campylobacter fetus subsp. fetus BT 10/98"],["NCBITaxon%3A1273130","Campylobacter fetus subsp. fetus cff110800-21-2"]]},{"id":"NCBITaxon:39152","l":"Methanococcus maripaludis","na":1,"nb":9,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A39152","Methanococcus maripaludis"],["NCBITaxon%3A402880","Methanococcus maripaludis C5"],["NCBITaxon%3A444158","Methanococcus maripaludis C6"],["NCBITaxon%3A426368","Methanococcus maripaludis C7"],["NCBITaxon%3A637914","Methanococcus maripaludis KA1"],["NCBITaxon%3A637915","Methanococcus maripaludis OS7"]]},{"id":"NCBITaxon:40215","l":"Acinetobacter junii","na":1,"nb":9,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["NCBITaxon%3A471","Acinetobacter calcoaceticus"],["NCBITaxon%3A40215","Acinetobacter junii"],["NCBITaxon%3A1217666","Acinetobacter junii CIP 107470 = MTCC 11364"],["NCBITaxon%3A1217664","Acinetobacter junii CIP 64.5"],["NCBITaxon%3A1217665","Acinetobacter junii NIPH 182"],["NCBITaxon%3A575587","Acinetobacter junii SH205"]]},{"id":"NCBITaxon:44454","l":"Mycobacterium avium subsp. avium","na":1,"nb":9,"a":[["tuberculosis-habitatmech-bacdive-e5d21f85b7.html","Tuberculosis"]],"b":[["NCBITaxon%3A1764","Mycobacterium avium"],["NCBITaxon%3A44454","Mycobacterium avium subsp. avium"],["NCBITaxon%3A1391991","Mycobacterium avium subsp. avium 10-9275"],["NCBITaxon%3A1391992","Mycobacterium avium subsp. avium 11-4751"],["NCBITaxon%3A1299330","Mycobacterium avium subsp. avium 2285 (R)"],["NCBITaxon%3A1299329","Mycobacterium avium subsp. avium 2285 (S)"]]},{"id":"NCBITaxon:80866","l":"Delftia acidovorans","na":1,"nb":9,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A1872122","Acidovorax sp."],["NCBITaxon%3A80866","Delftia acidovorans"],["NCBITaxon%3A883100","Delftia acidovorans CCUG 15835"],["NCBITaxon%3A883101","Delftia acidovorans CCUG 274B"],["NCBITaxon%3A1218107","Delftia acidovorans NBRC 14950"],["NCBITaxon%3A1255679","Delftia acidovorans PCA12"]]},{"id":"NCBITaxon:83462","l":"Corallococcus exiguus","na":9,"nb":1,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["feces-uberon-0001988.html","feces"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"]],"b":[["NCBITaxon%3A83462","Corallococcus exiguus"]]},{"id":"NCBITaxon:911092","l":"Caldanaerobacter subterraneus","na":1,"nb":9,"a":[["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A911092","Caldanaerobacter subterraneus"],["NCBITaxon%3A3055846","Caldanaerobacter subterraneus subsp. keratinolyticus"],["NCBITaxon%3A109807","Caldanaerobacter subterraneus subsp. pacificus"],["NCBITaxon%3A391606","Caldanaerobacter subterraneus subsp. pacificus DSM 12653"],["NCBITaxon%3A111823","Caldanaerobacter subterraneus subsp. subterraneus"],["NCBITaxon%3A119072","Caldanaerobacter subterraneus subsp. tengcongensis"]]},{"id":"NCBITaxon:1074","l":"Rhodoblastus acidophilus","na":8,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"],["liquid-water-envo-00002006.html","liquid water"],["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["rhizosphere-envo-00005801.html","rhizosphere"]],"b":[["NCBITaxon%3A1074","Rhodoblastus acidophilus"]]},{"id":"NCBITaxon:109166","l":"Desulfofrigus","na":1,"nb":8,"a":[["hemolymph-bto-0000572.html","hemolymph"]],"b":[["NCBITaxon%3A84983","Desulfofrigus fragile"],["NCBITaxon%3A84982","Desulfofrigus oceanense"],["NCBITaxon%3A449291","Desulfofrigus sp. HRS-La3x"],["NCBITaxon%3A265931","Desulfofrigus sp. J152"],["NCBITaxon%3A303210","Desulfofrigus sp. NA201"],["NCBITaxon%3A303200","Desulfofrigus sp. NB81"]]},{"id":"NCBITaxon:115433","l":"Amycolatopsis sacchari","na":8,"nb":1,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["factory-envo-01000536.html","factory"],["desert-biome-envo-01000179.html","desert biome"],["grassland-soil-envo-00005750.html","grassland soil"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"]],"b":[["NCBITaxon%3A115433","Amycolatopsis sacchari"]]},{"id":"NCBITaxon:1254439","l":"Bifidobacterium thermophilum RBL67","na":8,"nb":1,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"],["epithelium-bto-0000416.html","epithelium"],["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"],["ht-29-cell-bto-0000182.html","HT-29 cell"],["ht-29-mtx-cell-bto-0001565.html","HT-29-MTX cell"],["left-colon-bto-0000646.html","left colon"]],"b":[["NCBITaxon%3A1254439","Bifidobacterium thermophilum RBL67"]]},{"id":"NCBITaxon:1272","l":"Kocuria varians","na":1,"nb":8,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A71999","Kocuria palustris"],["NCBITaxon%3A72000","Kocuria rhizophila"],["NCBITaxon%3A378753","Kocuria rhizophila DC2201"],["NCBITaxon%3A1871328","Kocuria sp."],["NCBITaxon%3A1272","Kocuria varians"],["NCBITaxon%3A1255672","Kocuria varians Mu208"]]},{"id":"NCBITaxon:1486246","l":"Halomonas sp.","na":8,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["saline-water-body-envo-01001319.html","saline water body"],["laboratory-facility-envo-01001406.html","laboratory facility"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["NCBITaxon%3A1486246","Halomonas sp."]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":8,"a":[["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["NCBITaxon%3A1515","Acetivibrio thermocellus"],["NCBITaxon%3A1138384","Acetivibrio thermocellus AD2"],["NCBITaxon%3A203119","Acetivibrio thermocellus ATCC 27405"],["NCBITaxon%3A1349417","Acetivibrio thermocellus BC1"],["NCBITaxon%3A637887","Acetivibrio thermocellus DSM 1313"],["NCBITaxon%3A572545","Acetivibrio thermocellus DSM 2360"]]},{"id":"NCBITaxon:1694","l":"Bifidobacterium pseudolongum","na":1,"nb":8,"a":[["ileum-bto-0000620.html","ileum"]],"b":[["NCBITaxon%3A35760","Bifidobacterium choerinum"],["NCBITaxon%3A1694","Bifidobacterium pseudolongum"],["NCBITaxon%3A1280701","Bifidobacterium pseudolongum AGR2145"],["NCBITaxon%3A1447715","Bifidobacterium pseudolongum PV8-2"],["NCBITaxon%3A1690","Bifidobacterium pseudolongum subsp. globosum"],["NCBITaxon%3A1410605","Bifidobacterium pseudolongum subsp. globosum DSM 20092"]]},{"id":"NCBITaxon:1732","l":"Eubacterium oxidoreducens","na":8,"nb":1,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["animal-litter-envo-00002191.html","animal litter"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["environmental-feature-envo-00002297.html","environmental feature"],["mud-envo-01000001.html","mud"]],"b":[["NCBITaxon%3A1732","Eubacterium oxidoreducens"]]},{"id":"NCBITaxon:1744","l":"Propionibacterium freudenreichii","na":1,"nb":8,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A1591","Lactobacillus sp."],["NCBITaxon%3A1744","Propionibacterium freudenreichii"],["NCBITaxon%3A66712","Propionibacterium freudenreichii subsp. freudenreichii"],["NCBITaxon%3A1408888","Propionibacterium freudenreichii subsp. freudenreichii ITG P20"],["NCBITaxon%3A1219357","Propionibacterium freudenreichii subsp. freudenreichii NBRC 12424"],["NCBITaxon%3A1752","Propionibacterium freudenreichii subsp. shermanii"]]},{"id":"NCBITaxon:196162","l":"Nocardioides sp. JS614","na":8,"nb":1,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["oil-spill-envo-00002061.html","oil spill"],["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A196162","Nocardioides sp. JS614"]]},{"id":"NCBITaxon:28125","l":"Prevotella bivia","na":1,"nb":8,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["NCBITaxon%3A28125","Prevotella bivia"],["NCBITaxon%3A1115806","Prevotella bivia B11"],["NCBITaxon%3A1287476","Prevotella bivia DNF00188"],["NCBITaxon%3A1401068","Prevotella bivia DNF00320"],["NCBITaxon%3A1401072","Prevotella bivia DNF00650"],["NCBITaxon%3A868129","Prevotella bivia DSM 20514"]]},{"id":"NCBITaxon:300","l":"Ectopseudomonas mendocina","na":1,"nb":8,"a":[["liquid-water-envo-00002006.html","liquid water"]],"b":[["NCBITaxon%3A300","Ectopseudomonas mendocina"],["NCBITaxon%3A1197721","Ectopseudomonas mendocina DLHK"],["NCBITaxon%3A1390370","Ectopseudomonas mendocina EGD-AQ5"],["NCBITaxon%3A1215108","Ectopseudomonas mendocina NBRC 14162"],["NCBITaxon%3A1001585","Ectopseudomonas mendocina NK-01"],["NCBITaxon%3A1225174","Ectopseudomonas mendocina S5.2"]]},{"id":"NCBITaxon:33967","l":"Leuconostoc mesenteroides subsp. mesenteroides","na":1,"nb":8,"a":[["adipose-tissue-bto-0001487.html","adipose tissue"]],"b":[["NCBITaxon%3A33964","Leuconostoc citreum"],["NCBITaxon%3A1245","Leuconostoc mesenteroides"],["NCBITaxon%3A33967","Leuconostoc mesenteroides subsp. mesenteroides"],["NCBITaxon%3A203120","Leuconostoc mesenteroides subsp. mesenteroides ATCC 8293"],["NCBITaxon%3A1107880","Leuconostoc mesenteroides subsp. mesenteroides J18"],["NCBITaxon%3A889970","Leuconostoc mesenteroides subsp. mesenteroides Y110"]]},{"id":"NCBITaxon:37734","l":"Enterococcus casseliflavus","na":1,"nb":8,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["NCBITaxon%3A37734","Enterococcus casseliflavus"],["NCBITaxon%3A1259825","Enterococcus casseliflavus 14-MB-W-14"],["NCBITaxon%3A888066","Enterococcus casseliflavus ATCC 12755"],["NCBITaxon%3A1158603","Enterococcus casseliflavus ATCC 49996"],["NCBITaxon%3A565654","Enterococcus casseliflavus EC10"],["NCBITaxon%3A565655","Enterococcus casseliflavus EC20"]]},{"id":"NCBITaxon:488","l":"Neisseria mucosa","na":1,"nb":8,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["NCBITaxon%3A496","Neisseria macacae"],["NCBITaxon%3A997348","Neisseria macacae ATCC 33926"],["NCBITaxon%3A488","Neisseria mucosa"],["NCBITaxon%3A546266","Neisseria mucosa ATCC 25996"],["NCBITaxon%3A435832","Neisseria mucosa C102"],["NCBITaxon%3A33053","Neisseria perflava"]]},{"id":"NCBITaxon:51671","l":"Microbacterium sp.","na":8,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"]],"b":[["NCBITaxon%3A51671","Microbacterium sp."]]},{"id":"NCBITaxon:726","l":"Haemophilus haemolyticus","na":1,"nb":8,"a":[["trunk-uberon-0002100.html","trunk"]],"b":[["NCBITaxon%3A726","Haemophilus haemolyticus"],["NCBITaxon%3A1095742","Haemophilus haemolyticus HK386"],["NCBITaxon%3A1028802","Haemophilus haemolyticus M19107"],["NCBITaxon%3A1028803","Haemophilus haemolyticus M19501"],["NCBITaxon%3A1028804","Haemophilus haemolyticus M21127"],["NCBITaxon%3A1028805","Haemophilus haemolyticus M21621"]]},{"id":"NCBITaxon:94625","l":"Brucella intermedia","na":1,"nb":8,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["NCBITaxon%3A94625","Brucella intermedia"],["NCBITaxon%3A1337887","Brucella intermedia 229E"],["NCBITaxon%3A1444311","Brucella intermedia 2745-2"],["NCBITaxon%3A1328308","Brucella intermedia CCUG 57381"],["NCBITaxon%3A2975438","Brucella intermedia GD04153"],["NCBITaxon%3A903525","Brucella intermedia J2"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":7,"nb":1,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["farm-envo-00000078.html","farm"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A101510","Rhodococcus jostii RHA1"]]},{"id":"NCBITaxon:1044","l":"Erythrobacter longus","na":7,"nb":1,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["small-river-biome-envo-00000890.html","small river biome"],["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["biofilm-material-envo-01000156.html","biofilm material"]],"b":[["NCBITaxon%3A1044","Erythrobacter longus"]]},{"id":"NCBITaxon:114615","l":"Bradyrhizobium sp. ORS 278","na":7,"nb":1,"a":[["river-envo-00000022.html","river"],["bacteroid-bto-0000109.html","bacteroid"],["root-nodule-bto-0001190.html","root nodule"],["stem-nodule-bto-0001816.html","stem nodule"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A114615","Bradyrhizobium sp. ORS 278"]]},{"id":"NCBITaxon:1261128","l":"Pantoea agglomerans 299R","na":7,"nb":1,"a":[["cuticle-bto-0001600.html","cuticle"],["epidermal-cell-bto-0001470.html","epidermal cell"],["epidermis-bto-0000404.html","epidermis"],["lateral-root-bto-0005441.html","lateral root"],["root-tip-bto-0001191.html","root tip"],["secretory-trichome-bto-0003799.html","secretory trichome"]],"b":[["NCBITaxon%3A1261128","Pantoea agglomerans 299R"]]},{"id":"NCBITaxon:1267","l":"Sarcina ventriculi","na":7,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["NCBITaxon%3A1267","Sarcina ventriculi"]]},{"id":"NCBITaxon:1346","l":"Streptococcus iniae","na":1,"nb":7,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"]],"b":[["NCBITaxon%3A230495","Reinekea marinisedimentorum"],["NCBITaxon%3A1346","Streptococcus iniae"],["NCBITaxon%3A386894","Streptococcus iniae 9117"],["NCBITaxon%3A1273539","Streptococcus iniae IUSA1"],["NCBITaxon%3A1260129","Streptococcus iniae KCTC 11634BP"],["NCBITaxon%3A1318633","Streptococcus iniae SF1"]]},{"id":"NCBITaxon:1392869","l":"Escherichia coli K1","na":7,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["brain-bto-0000142.html","brain"],["brain-cell-line-bto-0000255.html","brain cell line"],["caco-2-cell-bto-0000195.html","CACO-2 cell"],["macrophage-bto-0000801.html","macrophage"],["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392869","Escherichia coli K1"]]},{"id":"NCBITaxon:152","l":"Zuelzera stenostrepta","na":7,"nb":1,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["low-tide-zone-envo-00000319.html","low tide zone"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["cultivated-environment-envo-01000311.html","cultivated environment"],["mud-envo-01000001.html","mud"]],"b":[["NCBITaxon%3A152","Zuelzera stenostrepta"]]},{"id":"NCBITaxon:156","l":"Teretinema zuelzerae","na":7,"nb":1,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["cultivated-environment-envo-01000311.html","cultivated environment"],["mud-envo-01000001.html","mud"]],"b":[["NCBITaxon%3A156","Teretinema zuelzerae"]]},{"id":"NCBITaxon:159087","l":"Dechloromonas aromatica RCB","na":7,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["large-river-biome-envo-00000887.html","large river biome"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"],["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A159087","Dechloromonas aromatica RCB"]]},{"id":"NCBITaxon:1686","l":"Bifidobacterium catenulatum","na":1,"nb":7,"a":[["catheter-device-ncit-c50344.html","Catheter Device"]],"b":[["NCBITaxon%3A1686","Bifidobacterium catenulatum"],["NCBITaxon%3A566552","Bifidobacterium catenulatum DSM 16992 = JCM 1194 = LMG 11043"],["NCBITaxon%3A2981616","Bifidobacterium catenulatum subsp. catenulatum"],["NCBITaxon%3A630129","Bifidobacterium catenulatum subsp. kashiwanohense"],["NCBITaxon%3A1150460","Bifidobacterium catenulatum subsp. kashiwanohense JCM 15439 = DSM 21854"],["NCBITaxon%3A3692808","Bifidobacterium catenulatum subsp. puerorum"]]},{"id":"NCBITaxon:1876","l":"Micromonospora sp.","na":7,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["freshwater-biome-envo-00000873.html","freshwater biome"],["marine-water-body-envo-00001999.html","marine water body"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["sludge-envo-00002044.html","sludge"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["NCBITaxon%3A1876","Micromonospora sp."]]},{"id":"NCBITaxon:1908","l":"Streptomyces globisporus","na":1,"nb":7,"a":[["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A332582","Streptomyces flavofuscus"],["NCBITaxon%3A1908","Streptomyces globisporus"],["NCBITaxon%3A1172567","Streptomyces globisporus C-1027"],["NCBITaxon%3A66858","Streptomyces globisporus subsp. globisporus"],["NCBITaxon%3A1522106","Streptomyces globisporus subsp. griseus"]]},{"id":"NCBITaxon:1935","l":"Streptomyces violaceoruber","na":1,"nb":7,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A67291","Streptomyces cyanocolor"],["NCBITaxon%3A80860","Streptomyces cyanogenus"],["NCBITaxon%3A1916","Streptomyces lividans"],["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A68277","Streptomyces tricolor"]]},{"id":"NCBITaxon:199684","l":"uncultured Bradyrhizobium sp.","na":7,"nb":1,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"],["water-scum-envo-00005794.html","water scum"],["area-of-tundra-envo-00000112.html","area of tundra"],["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"]],"b":[["NCBITaxon%3A199684","uncultured Bradyrhizobium sp."]]},{"id":"NCBITaxon:2051","l":"Mobiluncus curtisii","na":1,"nb":7,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["NCBITaxon%3A2051","Mobiluncus curtisii"],["NCBITaxon%3A548479","Mobiluncus curtisii ATCC 43063"],["NCBITaxon%3A887326","Mobiluncus curtisii ATCC 51333"],["NCBITaxon%3A144177","Mobiluncus curtisii subsp. curtisii"],["NCBITaxon%3A585198","Mobiluncus curtisii subsp. curtisii ATCC 35241"],["NCBITaxon%3A144178","Mobiluncus holmesii"]]},{"id":"NCBITaxon:246432","l":"Staphylococcus equorum","na":1,"nb":7,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A246432","Staphylococcus equorum"],["NCBITaxon%3A29383","Staphylococcus equorum subsp. equorum"],["NCBITaxon%3A1159488","Staphylococcus equorum subsp. equorum Mu2"],["NCBITaxon%3A201829","Staphylococcus equorum subsp. linens"],["NCBITaxon%3A1357294","Staphylococcus equorum UMC-CNS-924"],["NCBITaxon%3A214473","Staphylococcus nepalensis"]]},{"id":"NCBITaxon:28198","l":"Aliarcobacter cryaerophilus","na":1,"nb":7,"a":[["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A28197","Aliarcobacter butzleri"],["NCBITaxon%3A28198","Aliarcobacter cryaerophilus"],["NCBITaxon%3A1032070","Aliarcobacter cryaerophilus ATCC 43158"],["NCBITaxon%3A1032071","Aliarcobacter cryaerophilus D2610"],["NCBITaxon%3A2933790","Arcobacter cryaerophilus gv. crypticus"],["NCBITaxon%3A2027466","Arcobacter cryaerophilus gv. occultus"]]},{"id":"NCBITaxon:29290","l":"Candidatus Magnetobacterium bavaricum","na":7,"nb":1,"a":[["water-body-envo-00000063.html","water body"],["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["activated-sludge-envo-00002046.html","activated sludge"],["cultivated-environment-envo-01000311.html","cultivated environment"],["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A29290","Candidatus Magnetobacterium bavaricum"]]},{"id":"NCBITaxon:33968","l":"Leuconostoc pseudomesenteroides","na":1,"nb":7,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"]],"b":[["NCBITaxon%3A2766470","Leuconostoc falkenbergense"],["NCBITaxon%3A33968","Leuconostoc pseudomesenteroides"],["NCBITaxon%3A1339246","Leuconostoc pseudomesenteroides 1159"],["NCBITaxon%3A1154757","Leuconostoc pseudomesenteroides 4882"],["NCBITaxon%3A935295","Leuconostoc pseudomesenteroides KCTC 3652"],["NCBITaxon%3A1255668","Leuconostoc pseudomesenteroides MSE7"]]},{"id":"NCBITaxon:38","l":"Archangium disciforme","na":7,"nb":1,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["feces-uberon-0001988.html","feces"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["wood-bto-0005516.html","wood"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A38","Archangium disciforme"]]},{"id":"NCBITaxon:39777","l":"Veillonella atypica","na":1,"nb":7,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["NCBITaxon%3A39777","Veillonella atypica"],["NCBITaxon%3A866776","Veillonella atypica ACS-049-V-Sch6"],["NCBITaxon%3A866778","Veillonella atypica ACS-134-V-Col7a"],["NCBITaxon%3A1357414","Veillonella atypica CD1_NA_1"],["NCBITaxon%3A575616","Veillonella atypica D15"],["NCBITaxon%3A1128111","Veillonella atypica KON"]]},{"id":"NCBITaxon:445336","l":"Clostridium botulinum Bf","na":7,"nb":1,"a":[["bay-envo-00000032.html","bay"],["coral-reef-envo-00000150.html","coral reef"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"],["saline-water-envo-00002010.html","saline water"],["desert-sand-envo-00005800.html","desert sand"]],"b":[["NCBITaxon%3A445336","Clostridium botulinum Bf"]]},{"id":"NCBITaxon:51669","l":"Tetragenococcus halophilus","na":1,"nb":7,"a":[["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["NCBITaxon%3A1254","Pediococcus acidilactici"],["NCBITaxon%3A51669","Tetragenococcus halophilus"],["NCBITaxon%3A1004777","Tetragenococcus halophilus HO"],["NCBITaxon%3A945021","Tetragenococcus halophilus NBRC 12172"],["NCBITaxon%3A1513898","Tetragenococcus halophilus subsp. flandriensis"],["NCBITaxon%3A1513897","Tetragenococcus halophilus subsp. halophilus"]]},{"id":"NCBITaxon:667019","l":"Curvibacter putative symbiont of Hydra magnipapillata","na":7,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["petroleum-envo-00002984.html","petroleum"],["shoreline-envo-00000486.html","shoreline"],["farm-soil-envo-00005749.html","farm soil"],["orchard-envo-00000115.html","orchard"],["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A667019","Curvibacter putative symbiont of Hydra magnipapillata"]]},{"id":"NCBITaxon:83460","l":"Allostigmatella erecta","na":7,"nb":1,"a":[["feces-uberon-0001988.html","feces"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["plant-litter-envo-01000628.html","plant litter"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A83460","Allostigmatella erecta"]]},{"id":"NCBITaxon:930166","l":"Pseudomonas brassicacearum","na":1,"nb":7,"a":[["spike-bto-0001278.html","spike"]],"b":[["NCBITaxon%3A29299","Nocardioides plantarum"],["NCBITaxon%3A930166","Pseudomonas brassicacearum"],["NCBITaxon%3A1050347","Pseudomonas brassicacearum 51MFCVI2.1"],["NCBITaxon%3A1403314","Pseudomonas brassicacearum PP1_210F"],["NCBITaxon%3A86264","Pseudomonas brassicacearum subsp. brassicacearum"],["NCBITaxon%3A994484","Pseudomonas brassicacearum subsp. brassicacearum NFM421"]]},{"id":"NCBITaxon:1007122","l":"Fidelibacterota bacterium SCGC AAA160-C11","na":6,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["inlet-envo-00000475.html","inlet"],["marine-biome-envo-00000447.html","marine biome"],["ocean-envo-00000015.html","ocean"],["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"]],"b":[["NCBITaxon%3A1007122","Fidelibacterota bacterium SCGC AAA160-C11"]]},{"id":"NCBITaxon:1007124","l":"Fidelibacterota bacterium SCGC AAA076-M08","na":6,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["inlet-envo-00000475.html","inlet"],["marine-biome-envo-00000447.html","marine biome"],["ocean-envo-00000015.html","ocean"],["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"]],"b":[["NCBITaxon%3A1007124","Fidelibacterota bacterium SCGC AAA076-M08"]]},{"id":"NCBITaxon:101571","l":"Burkholderia ubonensis","na":1,"nb":6,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A101571","Burkholderia ubonensis"],["NCBITaxon%3A441166","Burkholderia ubonensis Bu"],["NCBITaxon%3A1436049","Burkholderia ubonensis MSMB153"],["NCBITaxon%3A1249668","Burkholderia ubonensis MSMB22"],["NCBITaxon%3A1436063","Burkholderia ubonensis MSMB57"],["NCBITaxon%3A265293","Burkholderia ubonensis subsp. mesacidophila"]]},{"id":"NCBITaxon:102","l":"Polaribacter glomeratus","na":6,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"],["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"],["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A102","Polaribacter glomeratus"]]},{"id":"NCBITaxon:103816","l":"Rhodococcus pyridinivorans","na":1,"nb":6,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A103816","Rhodococcus pyridinivorans"],["NCBITaxon%3A1114960","Rhodococcus pyridinivorans AK37"],["NCBITaxon%3A1303690","Rhodococcus pyridinivorans JCM 10940 = NBRC 100608"],["NCBITaxon%3A1441730","Rhodococcus pyridinivorans KG-16"],["NCBITaxon%3A1041510","Rhodococcus pyridinivorans NAM81"],["NCBITaxon%3A1435356","Rhodococcus pyridinivorans SB3094"]]},{"id":"NCBITaxon:1057","l":"Thiococcus pfennigii","na":6,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["saline-water-body-envo-01001319.html","saline water body"],["river-envo-00000022.html","river"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["sediment-envo-00002007.html","sediment"],["subpolar-coniferous-forest-biome-envo-01000250.html","subpolar coniferous forest biome"]],"b":[["NCBITaxon%3A1057","Thiococcus pfennigii"]]},{"id":"NCBITaxon:1072256","l":"Corynebacterium uterequi","na":6,"nb":1,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"],["urogenital-system-bto-0003091.html","urogenital system"],["uterus-bto-0001424.html","uterus"],["vagina-uberon-0000996.html","vagina"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A1072256","Corynebacterium uterequi"]]},{"id":"NCBITaxon:110638","l":"Arthrobacter sp. 'SMCC G982'","na":6,"nb":1,"a":[["biofilm-material-envo-01000156.html","biofilm material"],["farm-envo-00000078.html","farm"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["NCBITaxon%3A110638","Arthrobacter sp. 'SMCC G982'"]]},{"id":"NCBITaxon:1133849","l":"Nocardia brasiliensis ATCC 700358","na":6,"nb":1,"a":[["b-lymphocyte-bto-0000776.html","B-lymphocyte"],["brain-bto-0000142.html","brain"],["heart-bto-0000562.html","heart"],["lymphocyte-bto-0000775.html","lymphocyte"],["macrophage-bto-0000801.html","macrophage"],["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A1133849","Nocardia brasiliensis ATCC 700358"]]},{"id":"NCBITaxon:1329902","l":"Mannheimia haemolytica MhBrain2012","na":6,"nb":1,"a":[["blood-vessel-bto-0001102.html","blood vessel"],["brain-stem-bto-0000146.html","brain stem"],["cerebellum-bto-0000232.html","cerebellum"],["lung-bto-0000763.html","lung"],["midbrain-bto-0000138.html","midbrain"],["neutrophil-bto-0000130.html","neutrophil"]],"b":[["NCBITaxon%3A1329902","Mannheimia haemolytica MhBrain2012"]]},{"id":"NCBITaxon:1488","l":"Clostridium acetobutylicum","na":1,"nb":6,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A1488","Clostridium acetobutylicum"],["NCBITaxon%3A272562","Clostridium acetobutylicum ATCC 824"],["NCBITaxon%3A991791","Clostridium acetobutylicum DSM 1731"],["NCBITaxon%3A863638","Clostridium acetobutylicum EA 2018"],["NCBITaxon%3A1520","Clostridium beijerinckii"],["NCBITaxon%3A1506","Clostridium sp."]]},{"id":"NCBITaxon:1522","l":"[Clostridium] innocuum","na":1,"nb":6,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["NCBITaxon%3A1522","[Clostridium] innocuum"],["NCBITaxon%3A999413","[Clostridium] innocuum 2959"],["NCBITaxon%3A450752","[Clostridium] innocuum 6_1_30"],["NCBITaxon%3A665134","[Clostridium] innocuum SB23"],["NCBITaxon%3A1357388","[Clostridium] innocuum UC1_FAA_N"],["NCBITaxon%3A68766","Fusobacterium sp."]]},{"id":"NCBITaxon:1583","l":"Weissella confusa","na":1,"nb":6,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["NCBITaxon%3A137591","Weissella cibaria"],["NCBITaxon%3A1583","Weissella confusa"],["NCBITaxon%3A1225227","Weissella confusa 10D"],["NCBITaxon%3A1225265","Weissella confusa 10E"],["NCBITaxon%3A1127131","Weissella confusa LBAE C39-2"],["NCBITaxon%3A1629","Weissella viridescens"]]},{"id":"NCBITaxon:162290","l":"Gallicola","na":1,"nb":6,"a":[["vagina-bto-0000243.html","vagina"]],"b":[["NCBITaxon%3A116087","Gallicola barnesae"],["NCBITaxon%3A2683910","Gallicola sp."],["NCBITaxon%3A2683940","Gallicola sp. RM-6"],["NCBITaxon%3A1684165","Gallicola sp. SG1.4B"],["NCBITaxon%3A3438785","Gallicola sp. Sow4_E12"],["NCBITaxon%3A527661","uncultured Gallicola sp."]]},{"id":"NCBITaxon:1640","l":"Listeria seeligeri","na":1,"nb":6,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["NCBITaxon%3A1642","Listeria innocua"],["NCBITaxon%3A1002366","Listeria innocua ATCC 33091"],["NCBITaxon%3A1640","Listeria seeligeri"],["NCBITaxon%3A702453","Listeria seeligeri FSL N1-067"],["NCBITaxon%3A702452","Listeria seeligeri FSL S4-171"],["NCBITaxon%3A683837","Listeria seeligeri serovar 1/2b str. SLCC3954"]]},{"id":"NCBITaxon:1769","l":"Mycobacterium leprae","na":1,"nb":6,"a":[["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"]],"b":[["NCBITaxon%3A1769","Mycobacterium leprae"],["NCBITaxon%3A1297123","Mycobacterium leprae 3125609"],["NCBITaxon%3A1297124","Mycobacterium leprae 7935681"],["NCBITaxon%3A561304","Mycobacterium leprae Br4923"],["NCBITaxon%3A1008298","Mycobacterium leprae Kyoto-2"],["NCBITaxon%3A272631","Mycobacterium leprae TN"]]},{"id":"NCBITaxon:180332","l":"Robinsoniella peoriensis","na":6,"nb":1,"a":[["animal-litter-envo-00002191.html","animal litter"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["emulsion-envo-00010506.html","emulsion"],["environmental-feature-envo-00002297.html","environmental feature"],["pig-manure-envo-00003860.html","pig manure"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A180332","Robinsoniella peoriensis"]]},{"id":"NCBITaxon:1872122","l":"Acidovorax sp.","na":6,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["NCBITaxon%3A1872122","Acidovorax sp."]]},{"id":"NCBITaxon:202","l":"Campylobacter mucosalis","na":1,"nb":6,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["NCBITaxon%3A198","Campylobacter hyointestinalis"],["NCBITaxon%3A91352","Campylobacter hyointestinalis subsp. hyointestinalis"],["NCBITaxon%3A2790656","Campylobacter majalis"],["NCBITaxon%3A202","Campylobacter mucosalis"],["NCBITaxon%3A1032067","Campylobacter mucosalis CCUG 21559"],["NCBITaxon%3A205","Campylobacter sp."]]},{"id":"NCBITaxon:205922","l":"Pseudomonas fluorescens Pf0-1","na":6,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["cold-environment-envo-01000309.html","cold environment"],["microbial-mat-material-envo-01000157.html","microbial mat material"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"],["agricultural-soil-envo-00002259.html","agricultural soil"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A205922","Pseudomonas fluorescens Pf0-1"]]},{"id":"NCBITaxon:225991","l":"Comamonas aquatica","na":1,"nb":6,"a":[["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["NCBITaxon%3A225991","Comamonas aquatica"],["NCBITaxon%3A1457173","Comamonas aquatica DA1877"],["NCBITaxon%3A1219031","Comamonas aquatica NBRC 14918"],["NCBITaxon%3A2708318","Comamonas aquatica subsp. aquatica"],["NCBITaxon%3A2708319","Comamonas aquatica subsp. rana"],["NCBITaxon%3A32013","Comamonas terrigena"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":6,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["NCBITaxon%3A266","Paracoccus denitrificans"],["NCBITaxon%3A1302247","Paracoccus denitrificans JCM 21484"],["NCBITaxon%3A318586","Paracoccus denitrificans PD1222"],["NCBITaxon%3A1051075","Paracoccus denitrificans SD1"],["NCBITaxon%3A82367","Paracoccus pantotrophus"],["NCBITaxon%3A189685","uncultured Paracoccus sp."]]},{"id":"NCBITaxon:28131","l":"Prevotella intermedia","na":1,"nb":6,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["NCBITaxon%3A28131","Prevotella intermedia"],["NCBITaxon%3A246198","Prevotella intermedia 17"],["NCBITaxon%3A1122984","Prevotella intermedia ATCC 25611 = DSM 20706"],["NCBITaxon%3A1347790","Prevotella intermedia ZT"],["NCBITaxon%3A28133","Prevotella nigrescens"],["NCBITaxon%3A997352","Prevotella nigrescens ATCC 33563"]]},{"id":"NCBITaxon:33964","l":"Leuconostoc citreum","na":1,"nb":6,"a":[["plant-resin-po-0025603.html","plant resin"]],"b":[["NCBITaxon%3A33964","Leuconostoc citreum"],["NCBITaxon%3A349519","Leuconostoc citreum KM20"],["NCBITaxon%3A1108974","Leuconostoc citreum LBAE C10"],["NCBITaxon%3A1127128","Leuconostoc citreum LBAE C11"],["NCBITaxon%3A1127129","Leuconostoc citreum LBAE E16"],["NCBITaxon%3A1255667","Leuconostoc citreum MSE2"]]},{"id":"NCBITaxon:373","l":"Gillisella vitis","na":1,"nb":6,"a":[["trunk-bto-0001493.html","trunk"]],"b":[["NCBITaxon%3A361","Agrobacterium sp."],["NCBITaxon%3A1265506","Agrobacterium vitis ATCC 49767"],["NCBITaxon%3A1385422","Agrobacterium vitis pv. musae"],["NCBITaxon%3A1384504","Agrobacterium vitis pv. vitis"],["NCBITaxon%3A373","Gillisella vitis"],["NCBITaxon%3A204072","Ramlibacter henchirensis"]]},{"id":"NCBITaxon:37372","l":"Helicobacter bilis","na":1,"nb":6,"a":[["ht-29-cell-bto-0000182.html","HT-29 cell"]],"b":[["NCBITaxon%3A28447","Clavibacter michiganensis"],["NCBITaxon%3A33014","Clavibacter michiganensis subsp. insidiosus"],["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A613026","Helicobacter bilis ATCC 43879"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"],["NCBITaxon%3A1235804","Helicobacter bilis WiWa"]]},{"id":"NCBITaxon:38289","l":"Corynebacterium jeikeium","na":1,"nb":6,"a":[["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["NCBITaxon%3A38288","Corynebacterium genitalium"],["NCBITaxon%3A38289","Corynebacterium jeikeium"],["NCBITaxon%3A525262","Corynebacterium jeikeium ATCC 43734"],["NCBITaxon%3A306537","Corynebacterium jeikeium K411"],["NCBITaxon%3A1720","Corynebacterium sp."],["NCBITaxon%3A43770","Corynebacterium striatum"]]},{"id":"NCBITaxon:43675","l":"Rothia mucilaginosa","na":1,"nb":6,"a":[["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["NCBITaxon%3A43675","Rothia mucilaginosa"],["NCBITaxon%3A553201","Rothia mucilaginosa ATCC 25296"],["NCBITaxon%3A1073369","Rothia mucilaginosa CC87LB"],["NCBITaxon%3A680646","Rothia mucilaginosa DY-18"],["NCBITaxon%3A1255664","Rothia mucilaginosa M1710"],["NCBITaxon%3A563033","Rothia mucilaginosa M508"]]},{"id":"NCBITaxon:43765","l":"Corynebacterium amycolatum","na":1,"nb":6,"a":[["other-habitatmech-bacdive-1cc8e3791c.html","Other"]],"b":[["NCBITaxon%3A43765","Corynebacterium amycolatum"],["NCBITaxon%3A553204","Corynebacterium amycolatum SK46"],["NCBITaxon%3A134034","Corynebacterium freneyi"],["NCBITaxon%3A156978","Corynebacterium imitans"],["NCBITaxon%3A1725","Corynebacterium xerosis"],["NCBITaxon%3A28172","Vibrio metschnikovii"]]},{"id":"NCBITaxon:47880","l":"Pseudomonas fulva","na":1,"nb":6,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A157783","Pseudomonas cremoricolorata"],["NCBITaxon%3A1215098","Pseudomonas cremoricolorata DSM 17059 = NBRC 16634"],["NCBITaxon%3A47880","Pseudomonas fulva"],["NCBITaxon%3A743720","Pseudomonas fulva 12-X"],["NCBITaxon%3A1215102","Pseudomonas fulva NBRC 16637 = DSM 17717"],["NCBITaxon%3A306","Pseudomonas sp."]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":1,"nb":6,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["NCBITaxon%3A547018","Zhihengliuella alba"],["NCBITaxon%3A5061","Aspergillus niger"],["NCBITaxon%3A380704","Aspergillus niger ATCC 1015"],["NCBITaxon%3A1353008","Aspergillus niger ATCC 13496"],["NCBITaxon%3A1450533","Aspergillus niger CBS 101883"],["NCBITaxon%3A425011","Aspergillus niger CBS 513.88"]]},{"id":"NCBITaxon:544580","l":"Actinomyces oris","na":1,"nb":6,"a":[["archeological-site-envo-00000564.html","archeological site"]],"b":[["NCBITaxon%3A3050225","Actinomyces acetigenes"],["NCBITaxon%3A1655","Actinomyces naeslundii"],["NCBITaxon%3A544580","Actinomyces oris"],["NCBITaxon%3A871541","Actinomyces oris K20"],["NCBITaxon%3A29317","Actinomyces sp."],["NCBITaxon%3A1656","Actinomyces viscosus"]]},{"id":"NCBITaxon:569","l":"Hafnia alvei","na":1,"nb":6,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A569","Hafnia alvei"],["NCBITaxon%3A910996","Hafnia alvei ATCC 13337"],["NCBITaxon%3A1002364","Hafnia alvei ATCC 51873"],["NCBITaxon%3A1453496","Hafnia alvei FB1"],["NCBITaxon%3A546367","Hafnia paralvei"],["NCBITaxon%3A1354263","Hafnia paralvei ATCC 29927"]]},{"id":"NCBITaxon:80867","l":"Paracidovorax avenae","na":1,"nb":6,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A80867","Paracidovorax avenae"],["NCBITaxon%3A643561","Paracidovorax avenae ATCC 19860"],["NCBITaxon%3A995087","Paracidovorax avenae RS-1"],["NCBITaxon%3A80868","Paracidovorax cattleyae"],["NCBITaxon%3A862720","Paracidovorax oryzae"],["NCBITaxon%3A1408420","Paracidovorax oryzae ATCC 19882"]]},{"id":"NCBITaxon:863372","l":"Herbaspirillum huttiense","na":1,"nb":6,"a":[["factory-envo-01000536.html","factory"]],"b":[["NCBITaxon%3A863372","Herbaspirillum huttiense"],["NCBITaxon%3A86172","Herbaspirillum huttiense subsp. huttiense"],["NCBITaxon%3A3074428","Herbaspirillum huttiense subsp. lycopersici"],["NCBITaxon%3A3075126","Herbaspirillum huttiense subsp. nephrolepidis"],["NCBITaxon%3A230311","Herbaspirillum huttiense subsp. putei"],["NCBITaxon%3A1235558","Herbaspirillum huttiense subsp. putei IAM 15032"]]},{"id":"NCBITaxon:1001240","l":"Cryobacterium roopkundense","na":5,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"],["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A1001240","Cryobacterium roopkundense"]]},{"id":"NCBITaxon:103836","l":"Thermopolyspora flexuosa","na":5,"nb":1,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["intestine-environment-envo-2100002.html","intestine environment"],["organic-feature-envo-01000159.html","organic feature"],["compost-soil-envo-00005747.html","compost soil"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A103836","Thermopolyspora flexuosa"]]},{"id":"NCBITaxon:1048","l":"Marichromatium gracile","na":5,"nb":1,"a":[["brackish-water-body-envo-01001321.html","brackish water body"],["estuary-envo-00000045.html","estuary"],["intertidal-zone-envo-00000316.html","intertidal zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1048","Marichromatium gracile"]]},{"id":"NCBITaxon:110539","l":"","na":5,"nb":1,"a":[["brackish-water-body-envo-01001321.html","brackish water body"],["river-envo-00000022.html","river"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"],["subpolar-coniferous-forest-biome-envo-01000250.html","subpolar coniferous forest biome"]],"b":[["NCBITaxon%3A39687","Mycolicibacterium austroafricanum"]]},{"id":"NCBITaxon:1125980","l":"Vibrio harveyi CAIM 1792","na":5,"nb":1,"a":[["abdomen-bto-0000020.html","abdomen"],["connective-tissue-bto-0000421.html","connective tissue"],["lymphoid-tissue-bto-0000753.html","lymphoid tissue"],["muscle-fibre-bto-0000888.html","muscle fibre"],["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A1125980","Vibrio harveyi CAIM 1792"]]},{"id":"NCBITaxon:115336","l":"Actinomadura vinacea","na":5,"nb":1,"a":[["inflorescence-bto-0000628.html","inflorescence"],["root-bto-0001188.html","root"],["desert-biome-envo-01000179.html","desert biome"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A115336","Actinomadura vinacea"]]},{"id":"NCBITaxon:115828","l":"Streptomyces maritimus","na":5,"nb":1,"a":[["farm-envo-00000078.html","farm"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["plain-envo-00000086.html","plain"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["NCBITaxon%3A115828","Streptomyces maritimus"]]},{"id":"NCBITaxon:1183413","l":"Agrobacterium salinitolerans","na":1,"nb":5,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1183413","Agrobacterium salinitolerans"],["NCBITaxon%3A1368460","Agrobacterium salinitolerans AGR7"],["NCBITaxon%3A1368459","Agrobacterium salinitolerans str. Hayward 0362"],["NCBITaxon%3A1183434","Agrobacterium salinitolerans str. Hayward 0363"],["NCBITaxon%3A361","Agrobacterium sp."]]},{"id":"NCBITaxon:1246","l":"Leuconostoc lactis","na":1,"nb":5,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1590","Lactiplantibacillus plantarum"],["NCBITaxon%3A1246","Leuconostoc lactis"],["NCBITaxon%3A1255576","Leuconostoc lactis 1283"],["NCBITaxon%3A935294","Leuconostoc lactis KCTC 3528 = DSM 20202"],["NCBITaxon%3A886872","Leuconostoc lactis KCTC 3773"]]},{"id":"NCBITaxon:126378","l":"Prevotella sp. RS2","na":5,"nb":1,"a":[["biome-envo-00000428.html","biome"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"],["pig-manure-envo-00003860.html","pig manure"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A126378","Prevotella sp. RS2"]]},{"id":"NCBITaxon:1292039","l":"Cutibacterium acnes P6","na":5,"nb":1,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"],["mammary-gland-bto-0000817.html","mammary gland"],["prostate-gland-bto-0001129.html","prostate gland"],["prostate-gland-epithelium-bto-0002397.html","prostate gland epithelium"],["sebaceous-gland-bto-0001980.html","sebaceous gland"]],"b":[["NCBITaxon%3A1292039","Cutibacterium acnes P6"]]},{"id":"NCBITaxon:1296","l":"Mammaliicoccus sciuri","na":5,"nb":1,"a":[["bone-element-uberon-0001474.html","bone element"],["cecum-bto-0000166.html","cecum"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"],["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["NCBITaxon%3A1296","Mammaliicoccus sciuri"]]},{"id":"NCBITaxon:13243","l":"Rarobacter faecitabidus","na":5,"nb":1,"a":[["water-body-envo-00000063.html","water body"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["NCBITaxon%3A13243","Rarobacter faecitabidus"]]},{"id":"NCBITaxon:1326","l":"Streptococcus acidominimus","na":1,"nb":5,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["NCBITaxon%3A46124","Granulicatella adiacens"],["NCBITaxon%3A638301","Granulicatella adiacens ATCC 49175"],["NCBITaxon%3A1326","Streptococcus acidominimus"],["NCBITaxon%3A149015","Streptococcus hyovaginalis"],["NCBITaxon%3A82348","Streptococcus pluranimalium"]]},{"id":"NCBITaxon:1367494","l":"Pseudomonas aeruginosa PAO1-VE13","na":5,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["lung-epithelial-cell-bto-0004299.html","lung epithelial cell"],["lung-epithelium-bto-0001653.html","lung epithelium"],["neutrophil-bto-0000130.html","neutrophil"],["phagocyte-bto-0001044.html","phagocyte"]],"b":[["NCBITaxon%3A1367494","Pseudomonas aeruginosa PAO1-VE13"]]},{"id":"NCBITaxon:137732","l":"Granulicatella elegans","na":1,"nb":5,"a":[["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["NCBITaxon%3A137732","Granulicatella elegans"],["NCBITaxon%3A626369","Granulicatella elegans ATCC 700633"],["NCBITaxon%3A1409954","Granulicatella elegans HMP_JCVI_SC0159"],["NCBITaxon%3A1409955","Granulicatella elegans HMP_JCVI_SC0160"],["NCBITaxon%3A1409956","Granulicatella elegans HMP_JCVI_SC0246"]]},{"id":"NCBITaxon:1382230","l":"Asaia platycodi SF2.1","na":5,"nb":1,"a":[["female-reproductive-system-bto-0000083.html","female reproductive system"],["larva-bto-0000707.html","larva"],["male-reproductive-system-bto-0000082.html","male reproductive system"],["reproductive-system-bto-0000081.html","reproductive system"],["salivary-gland-bto-0001203.html","salivary gland"]],"b":[["NCBITaxon%3A1382230","Asaia platycodi SF2.1"]]},{"id":"NCBITaxon:1388","l":"Alicyclobacillus acidocaldarius subsp. acidocaldarius","na":1,"nb":5,"a":[["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["NCBITaxon%3A405212","Alicyclobacillus acidocaldarius"],["NCBITaxon%3A1388","Alicyclobacillus acidocaldarius subsp. acidocaldarius"],["NCBITaxon%3A521098","Alicyclobacillus acidocaldarius subsp. acidocaldarius DSM 446"],["NCBITaxon%3A1197885","Alicyclobacillus acidocaldarius subsp. acidocaldarius HSU9"],["NCBITaxon%3A1048834","Alicyclobacillus acidocaldarius subsp. acidocaldarius Tc-4-1"]]},{"id":"NCBITaxon:1411316","l":"Pedobacter sp.","na":5,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A1411316","Pedobacter sp."]]},{"id":"NCBITaxon:143495","l":"Aneurinibacillus thermoaerophilus","na":5,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A143495","Aneurinibacillus thermoaerophilus"]]},{"id":"NCBITaxon:145391","l":"Staphylococcus hominis subsp. hominis","na":1,"nb":5,"a":[["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["NCBITaxon%3A1290","Staphylococcus hominis"],["NCBITaxon%3A145391","Staphylococcus hominis subsp. hominis"],["NCBITaxon%3A435837","Staphylococcus hominis subsp. hominis C80"],["NCBITaxon%3A1185421","Staphylococcus hominis subsp. hominis ZBW5"],["NCBITaxon%3A1292","Staphylococcus warneri"]]},{"id":"NCBITaxon:1462","l":"Geobacillus kaustophilus","na":1,"nb":5,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"]],"b":[["NCBITaxon%3A1462","Geobacillus kaustophilus"],["NCBITaxon%3A1337888","Geobacillus kaustophilus GBlys"],["NCBITaxon%3A235909","Geobacillus kaustophilus HTA426"],["NCBITaxon%3A1220595","Geobacillus kaustophilus NBRC 102445"],["NCBITaxon%3A433974","Geobacillus kaustophilus subsp. vulgivagus"]]},{"id":"NCBITaxon:1501","l":"Clostridium pasteurianum","na":1,"nb":5,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A1501","Clostridium pasteurianum"],["NCBITaxon%3A86416","Clostridium pasteurianum BC1"],["NCBITaxon%3A1262449","Clostridium pasteurianum DSM 525 = ATCC 6013"],["NCBITaxon%3A1341159","Clostridium pasteurianum TK"],["NCBITaxon%3A1506","Clostridium sp."]]},{"id":"NCBITaxon:1513","l":"Clostridium tetani","na":1,"nb":5,"a":[["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A1513","Clostridium tetani"],["NCBITaxon%3A1231072","Clostridium tetani 12124569"],["NCBITaxon%3A1172202","Clostridium tetani ATCC 454"],["NCBITaxon%3A1172203","Clostridium tetani ATCC 9441"],["NCBITaxon%3A212717","Clostridium tetani E88"]]},{"id":"NCBITaxon:152682","l":"Sphingomonas melonis","na":1,"nb":5,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["NCBITaxon%3A152682","Sphingomonas melonis"],["NCBITaxon%3A1090316","Sphingomonas melonis C3"],["NCBITaxon%3A1090320","Sphingomonas melonis DAPP-PG 224"],["NCBITaxon%3A1090317","Sphingomonas melonis FR1"],["NCBITaxon%3A621456","Sphingomonas melonis TY"]]},{"id":"NCBITaxon:1575","l":"Leifsonia xyli","na":1,"nb":5,"a":[["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["NCBITaxon%3A1575","Leifsonia xyli"],["NCBITaxon%3A31966","Leifsonia xyli subsp. cynodontis"],["NCBITaxon%3A1389489","Leifsonia xyli subsp. cynodontis DSM 46306"],["NCBITaxon%3A59736","Leifsonia xyli subsp. xyli"],["NCBITaxon%3A281090","Leifsonia xyli subsp. xyli str. CTCB07"]]},{"id":"NCBITaxon:158192","l":"Desulfuromonas michiganensis","na":5,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["cultivated-environment-envo-01000311.html","cultivated environment"],["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A158192","Desulfuromonas michiganensis"]]},{"id":"NCBITaxon:158751","l":"uncultured Acidovorax sp.","na":5,"nb":1,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["water-body-envo-00000063.html","water body"],["water-scum-envo-00005794.html","water scum"],["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"]],"b":[["NCBITaxon%3A158751","uncultured Acidovorax sp."]]},{"id":"NCBITaxon:1614","l":"Fructilactobacillus fructivorans","na":1,"nb":5,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A1614","Fructilactobacillus fructivorans"],["NCBITaxon%3A1600","Lactobacillus acetotolerans"],["NCBITaxon%3A1591","Lactobacillus sp."],["NCBITaxon%3A418198","Lactobacillus sp. JCM 7525"],["NCBITaxon%3A418199","Lactobacillus sp. JCM 7527"]]},{"id":"NCBITaxon:173764","l":"Cytophaga sp. MBIC01539","na":5,"nb":1,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A173764","Cytophaga sp. MBIC01539"]]},{"id":"NCBITaxon:1778","l":"Mycobacterium gordonae","na":5,"nb":1,"a":[["fibroblast-bto-0000452.html","fibroblast"],["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["kidney-bto-0000671.html","kidney"],["spleen-bto-0001281.html","spleen"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["NCBITaxon%3A1778","Mycobacterium gordonae"]]},{"id":"NCBITaxon:1919273","l":"Candidatus Desulfopertinax cowenii","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1919273","Candidatus Desulfopertinax cowenii"]]},{"id":"NCBITaxon:1934978","l":"Acinetobacter sp. JdFR-94","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934978","Acinetobacter sp. JdFR-94"]]},{"id":"NCBITaxon:1934979","l":"Archaeoglobus sp. JdFR-22","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934979","Archaeoglobus sp. JdFR-22"]]},{"id":"NCBITaxon:1934980","l":"Archaeoglobus sp. JdFR-23","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934980","Archaeoglobus sp. JdFR-23"]]},{"id":"NCBITaxon:1934981","l":"Archaeoglobus sp. JdFR-24","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934981","Archaeoglobus sp. JdFR-24"]]},{"id":"NCBITaxon:1934982","l":"Archaeoglobus sp. JdFR-25","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934982","Archaeoglobus sp. JdFR-25"]]},{"id":"NCBITaxon:1934983","l":"Archaeoglobus sp. JdFR-26","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934983","Archaeoglobus sp. JdFR-26"]]},{"id":"NCBITaxon:1934984","l":"Archaeoglobus sp. JdFR-27","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934984","Archaeoglobus sp. JdFR-27"]]},{"id":"NCBITaxon:1934985","l":"Archaeoglobus sp. JdFR-28","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934985","Archaeoglobus sp. JdFR-28"]]},{"id":"NCBITaxon:1934986","l":"Archaeoglobus sp. JdFR-29","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934986","Archaeoglobus sp. JdFR-29"]]},{"id":"NCBITaxon:1934987","l":"Archaeoglobus sp. JdFR-30","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934987","Archaeoglobus sp. JdFR-30"]]},{"id":"NCBITaxon:1934988","l":"Archaeoglobus sp. JdFR-31","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934988","Archaeoglobus sp. JdFR-31"]]},{"id":"NCBITaxon:1934989","l":"Archaeoglobus sp. JdFR-32","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934989","Archaeoglobus sp. JdFR-32"]]},{"id":"NCBITaxon:1934990","l":"Archaeoglobus sp. JdFR-33","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934990","Archaeoglobus sp. JdFR-33"]]},{"id":"NCBITaxon:1934991","l":"Archaeoglobus sp. JdFR-34","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934991","Archaeoglobus sp. JdFR-34"]]},{"id":"NCBITaxon:1934992","l":"Archaeoglobus sp. JdFR-35","na":5,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["ridge-envo-00000283.html","ridge"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934992","Archaeoglobus sp. JdFR-35"]]},{"id":"NCBITaxon:1962118","l":"Mycobacteroides abscessus subsp. massiliense","na":1,"nb":5,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["NCBITaxon%3A36809","Mycobacteroides abscessus"],["NCBITaxon%3A1185650","Mycobacteroides abscessus subsp. abscessus"],["NCBITaxon%3A1962118","Mycobacteroides abscessus subsp. massiliense"],["NCBITaxon%3A1001714","Mycobacteroides abscessus subsp. massiliense CCUG 48898 = JCM 15300"],["NCBITaxon%3A1198627","Mycobacteroides abscessus subsp. massiliense str. GO 06"]]},{"id":"NCBITaxon:200","l":"Campylobacter curvus","na":1,"nb":5,"a":[["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A28099","Agrobacterium rubi"],["NCBITaxon%3A1368415","Agrobacterium rubi TR3 = NBRC 13261"],["NCBITaxon%3A200","Campylobacter curvus"],["NCBITaxon%3A360105","Campylobacter curvus 525.92"],["NCBITaxon%3A1121268","Campylobacter curvus DSM 6644"]]},{"id":"NCBITaxon:204773","l":"Herminiimonas arsenicoxydans","na":5,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["liquid-water-envo-00002006.html","liquid water"],["cold-environment-envo-01000309.html","cold environment"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A204773","Herminiimonas arsenicoxydans"]]},{"id":"NCBITaxon:208224","l":"Enterobacter kobei","na":1,"nb":5,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1896336","Citrobacter sp."],["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A208224","Enterobacter kobei"],["NCBITaxon%3A1354261","Enterobacter kobei ATCC BAA-260"],["NCBITaxon%3A42895","Enterobacter sp."]]},{"id":"NCBITaxon:2210","l":"Methanosarcina thermophila","na":1,"nb":5,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A1520800","Methanosarcina sp. DSM 11855"],["NCBITaxon%3A2210","Methanosarcina thermophila"],["NCBITaxon%3A1434121","Methanosarcina thermophila CHTI-55"],["NCBITaxon%3A1434122","Methanosarcina thermophila MST-A1"],["NCBITaxon%3A523844","Methanosarcina thermophila TM-1"]]},{"id":"NCBITaxon:2213","l":"Methanosarcina sp.","na":5,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["marine-water-body-envo-00001999.html","marine water body"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A2213","Methanosarcina sp."]]},{"id":"NCBITaxon:2218628","l":"Photorhabdus laumondii","na":1,"nb":5,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A2218628","Photorhabdus laumondii"],["NCBITaxon%3A2029685","Photorhabdus laumondii subsp. clarkei"],["NCBITaxon%3A141679","Photorhabdus laumondii subsp. laumondii"],["NCBITaxon%3A243265","Photorhabdus laumondii subsp. laumondii TTO1"],["NCBITaxon%3A3459528","Photorhabdus laumondii subsp. malanae"]]},{"id":"NCBITaxon:224914","l":"Brucella melitensis bv. 1 str. 16M","na":1,"nb":5,"a":[["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A29459","Brucella melitensis"],["NCBITaxon%3A1143191","Brucella melitensis 16M13W"],["NCBITaxon%3A1143190","Brucella melitensis 16M1W"],["NCBITaxon%3A644337","Brucella melitensis bv. 1"],["NCBITaxon%3A224914","Brucella melitensis bv. 1 str. 16M"]]},{"id":"NCBITaxon:239","l":"Flavobacterium sp.","na":5,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["mud-envo-01000001.html","mud"],["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"],["orchard-envo-00000115.html","orchard"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A239","Flavobacterium sp."]]},{"id":"NCBITaxon:265606","l":"Rhodopirellula baltica","na":1,"nb":5,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A265606","Rhodopirellula baltica"],["NCBITaxon%3A993517","Rhodopirellula baltica SH28"],["NCBITaxon%3A243090","Rhodopirellula baltica SH 1"],["NCBITaxon%3A993516","Rhodopirellula baltica SWK14"],["NCBITaxon%3A991778","Rhodopirellula baltica WH47"]]},{"id":"NCBITaxon:290054","l":"Eubacterium coprostanoligenes","na":5,"nb":1,"a":[["emulsion-envo-00010506.html","emulsion"],["environmental-feature-envo-00002297.html","environmental feature"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["pig-manure-envo-00003860.html","pig manure"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A290054","Eubacterium coprostanoligenes"]]},{"id":"NCBITaxon:29494","l":"Vibrio furnissii","na":1,"nb":5,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A676","Vibrio fluvialis"],["NCBITaxon%3A29494","Vibrio furnissii"],["NCBITaxon%3A675811","Vibrio furnissii CIP 102972"],["NCBITaxon%3A903510","Vibrio furnissii NCTC 11218"],["NCBITaxon%3A1339240","Vibrio furnissii ZOR0035"]]},{"id":"NCBITaxon:296591","l":"Polaromonas sp. JS666","na":5,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["resting-cell-bto-0001170.html","resting cell"],["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A296591","Polaromonas sp. JS666"]]},{"id":"NCBITaxon:305719","l":"Segatella baroniae","na":1,"nb":5,"a":[["pig-manure-envo-00003860.html","pig manure"]],"b":[["NCBITaxon%3A305719","Segatella baroniae"],["NCBITaxon%3A752555","Segatella baroniae B14"],["NCBITaxon%3A1280705","Segatella baroniae C21a"],["NCBITaxon%3A1122980","Segatella baroniae DSM 16972 = JCM 13447"],["NCBITaxon%3A1115809","Segatella baroniae F0067"]]},{"id":"NCBITaxon:310575","l":"Advenella kashmirensis","na":1,"nb":5,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A310575","Advenella kashmirensis"],["NCBITaxon%3A1914954","Advenella kashmirensis subsp. kashmirensis"],["NCBITaxon%3A1439717","Advenella kashmirensis subsp. methylica"],["NCBITaxon%3A1424334","Advenella kashmirensis W13003"],["NCBITaxon%3A1036672","Advenella kashmirensis WT001"]]},{"id":"NCBITaxon:314722","l":"Pseudoxanthomonas suwonensis","na":1,"nb":5,"a":[["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["NCBITaxon%3A314722","Pseudoxanthomonas suwonensis"],["NCBITaxon%3A743721","Pseudoxanthomonas suwonensis 11-1"],["NCBITaxon%3A935566","Pseudoxanthomonas suwonensis J42"],["NCBITaxon%3A935567","Pseudoxanthomonas suwonensis J43"],["NCBITaxon%3A935568","Pseudoxanthomonas suwonensis J47"]]},{"id":"NCBITaxon:32021","l":"Campylobacter jejuni subsp. doylei","na":1,"nb":5,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["NCBITaxon%3A197","Campylobacter jejuni"],["NCBITaxon%3A32021","Campylobacter jejuni subsp. doylei"],["NCBITaxon%3A360109","Campylobacter jejuni subsp. doylei 269.97"],["NCBITaxon%3A1408360","Campylobacter jejuni subsp. doylei ATCC 49349"],["NCBITaxon%3A1070741","Campylobacter jejuni subsp. doylei str. RM3440"]]},{"id":"NCBITaxon:351016","l":"Roseobacter sp. AzwK-3b","na":5,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["oligotrophic-water-envo-00002223.html","oligotrophic water"],["lagoon-envo-00000038.html","lagoon"],["tropical-envo-01000204.html","tropical"],["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A351016","Roseobacter sp. AzwK-3b"]]},{"id":"NCBITaxon:376","l":"Bradyrhizobium sp.","na":5,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A376","Bradyrhizobium sp."]]},{"id":"NCBITaxon:38301","l":"Corynebacterium minutissimum","na":1,"nb":5,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["NCBITaxon%3A43765","Corynebacterium amycolatum"],["NCBITaxon%3A169292","Corynebacterium aurimucosum"],["NCBITaxon%3A156978","Corynebacterium imitans"],["NCBITaxon%3A38301","Corynebacterium minutissimum"],["NCBITaxon%3A1223512","Corynebacterium minutissimum NBRC 15361"]]},{"id":"NCBITaxon:38313","l":"Shewanella algae","na":1,"nb":5,"a":[["foot-bto-0000476.html","foot"]],"b":[["NCBITaxon%3A38313","Shewanella algae"],["NCBITaxon%3A1331670","Shewanella algae ACDC"],["NCBITaxon%3A1236541","Shewanella algae JCM 14758"],["NCBITaxon%3A1236544","Shewanella algae JCM 21037 = NBRC 103173"],["NCBITaxon%3A24","Shewanella putrefaciens"]]},{"id":"NCBITaxon:394092","l":"Hyalangium gracile","na":5,"nb":1,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["wood-bto-0005516.html","wood"],["free-living-environment-habitatmech-bacdive-0f1e92a02c.html","free-living environment"],["plant-litter-envo-01000628.html","plant litter"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A394092","Hyalangium gracile"]]},{"id":"NCBITaxon:39650","l":"Cellvibrio mixtus","na":1,"nb":5,"a":[["compost-envo-00002170.html","compost"]],"b":[["NCBITaxon%3A39650","Cellvibrio mixtus"],["NCBITaxon%3A180904","Cellvibrio mixtus subsp. dextranolyticus"],["NCBITaxon%3A126346","Cellvibrio mixtus subsp. mixtus"],["NCBITaxon%3A1209072","Cellvibrio mixtus subsp. mixtus J3-8"],["NCBITaxon%3A180915","Cellvibrio vulgaris"]]},{"id":"NCBITaxon:488447","l":"Burkholderia contaminans","na":1,"nb":5,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A488447","Burkholderia contaminans"],["NCBITaxon%3A1423418","Burkholderia contaminans FFH2050"],["NCBITaxon%3A1423419","Burkholderia contaminans FFH2055"],["NCBITaxon%3A1334628","Burkholderia contaminans LMG 23361"],["NCBITaxon%3A36773","Burkholderia sp."]]},{"id":"NCBITaxon:573060","l":"Acidovorax delafieldii 2AN","na":5,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["large-river-biome-envo-00000887.html","large river biome"],["liquid-water-envo-00002006.html","liquid water"],["petroleum-envo-00002984.html","petroleum"],["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A573060","Acidovorax delafieldii 2AN"]]},{"id":"NCBITaxon:57743","l":"Salmonella enterica subsp. enterica serovar Weltevreden","na":1,"nb":5,"a":[["hep-2-cell-bto-0000976.html","HEp-2 cell"]],"b":[["NCBITaxon%3A57743","Salmonella enterica subsp. enterica serovar Weltevreden"],["NCBITaxon%3A1173939","Salmonella enterica subsp. enterica serovar Weltevreden str. 1655"],["NCBITaxon%3A936157","Salmonella enterica subsp. enterica serovar Weltevreden str. 2007-60-3289-1"],["NCBITaxon%3A465518","Salmonella enterica subsp. enterica serovar Weltevreden str. HI_N05-537"],["NCBITaxon%3A488480","Salmonella enterica subsp. enterica serovar Weltevreden str. SL484"]]},{"id":"NCBITaxon:68175","l":"Streptomyces antimycoticus","na":1,"nb":5,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["NCBITaxon%3A68175","Streptomyces antimycoticus"],["NCBITaxon%3A1226758","Streptomyces antimycoticus subsp. mordarskii"],["NCBITaxon%3A53451","Streptomyces rutgersensis"],["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A68280","Streptomyces violaceusniger"]]},{"id":"NCBITaxon:68886","l":"Theileria orientalis","na":5,"nb":1,"a":[["erythrocyte-bto-0000424.html","erythrocyte"],["leukocyte-bto-0000751.html","leukocyte"],["lymphocyte-bto-0000775.html","lymphocyte"],["macrophage-bto-0000801.html","macrophage"],["monocyte-bto-0000876.html","monocyte"]],"b":[["NCBITaxon%3A68886","Theileria orientalis"]]},{"id":"NCBITaxon:718","l":"Actinobacillus equuli","na":1,"nb":5,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["NCBITaxon%3A718","Actinobacillus equuli"],["NCBITaxon%3A202947","Actinobacillus equuli subsp. equuli"],["NCBITaxon%3A202948","Actinobacillus equuli subsp. haemolyticus"],["NCBITaxon%3A41114","Actinobacillus sp."],["NCBITaxon%3A716","Actinobacillus suis"]]},{"id":"NCBITaxon:72556","l":"Achromobacter piechaudii","na":1,"nb":5,"a":[["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["NCBITaxon%3A72556","Achromobacter piechaudii"],["NCBITaxon%3A742159","Achromobacter piechaudii ATCC 43553"],["NCBITaxon%3A1156919","Achromobacter piechaudii HLE"],["NCBITaxon%3A1216977","Achromobacter piechaudii NBRC 102461"],["NCBITaxon%3A217203","Achromobacter spanius"]]},{"id":"NCBITaxon:75612","l":"Pseudomonas mandelii","na":1,"nb":5,"a":[["plant-gall-po-0025626.html","plant gall"]],"b":[["NCBITaxon%3A75612","Pseudomonas mandelii"],["NCBITaxon%3A1151127","Pseudomonas mandelii 36MFCvi1.1"],["NCBITaxon%3A1147786","Pseudomonas mandelii JR-1"],["NCBITaxon%3A1215107","Pseudomonas mandelii NBRC 103147"],["NCBITaxon%3A1419583","Pseudomonas mandelii PD30"]]},{"id":"NCBITaxon:758","l":"Rodentibacter pneumotropicus","na":1,"nb":5,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["NCBITaxon%3A301","Ectopseudomonas oleovorans"],["NCBITaxon%3A1215116","Ectopseudomonas oleovorans NBRC 14167"],["NCBITaxon%3A1796644","Rodentibacter caecimuris"],["NCBITaxon%3A758","Rodentibacter pneumotropicus"],["NCBITaxon%3A1122936","Rodentibacter pneumotropicus DSM 21403"]]},{"id":"NCBITaxon:827","l":"Campylobacter ureolyticus","na":1,"nb":5,"a":[["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["NCBITaxon%3A827","Campylobacter ureolyticus"],["NCBITaxon%3A883095","Campylobacter ureolyticus ACS-172-V-Col6"],["NCBITaxon%3A883165","Campylobacter ureolyticus ACS-301-V-Sch3b"],["NCBITaxon%3A1121102","Campylobacter ureolyticus DSM 20703"],["NCBITaxon%3A1032069","Campylobacter ureolyticus RIGS 9880"]]},{"id":"NCBITaxon:885","l":"Desulfovibrio sp.","na":5,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"],["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["sludge-envo-00002044.html","sludge"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["NCBITaxon%3A885","Desulfovibrio sp."]]},{"id":"NCBITaxon:100","l":"Ancylobacter aquaticus","na":4,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["groundwater-envo-01001004.html","groundwater"],["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"]],"b":[["NCBITaxon%3A100","Ancylobacter aquaticus"]]},{"id":"NCBITaxon:1000561","l":"Pseudomonas aeruginosa AES-1R","na":4,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["lung-bto-0000763.html","lung"],["respiratory-tract-uberon-0000065.html","respiratory tract"],["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1000561","Pseudomonas aeruginosa AES-1R"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":4,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"],["human-construction-envo-00000070.html","human construction"],["sediment-envo-00002007.html","sediment"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A100226","Streptomyces coelicolor A3(2)"]]},{"id":"NCBITaxon:1005928","l":"Roseovarius lutimaris","na":4,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"],["marine-sediment-envo-03000033.html","marine sediment"],["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["NCBITaxon%3A1005928","Roseovarius lutimaris"]]},{"id":"NCBITaxon:102170","l":"Desulfallas sapomandens","na":4,"nb":1,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["organic-feature-envo-01000159.html","organic feature"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A102170","Desulfallas sapomandens"]]},{"id":"NCBITaxon:102897","l":"Parafrankia sp. EUN1f","na":4,"nb":1,"a":[["plant-bto-0001481.html","plant"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["NCBITaxon%3A102897","Parafrankia sp. EUN1f"]]},{"id":"NCBITaxon:1029718","l":"Candidatus Arthromitus sp. SFB-mouse-Japan","na":4,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["lymphocyte-bto-0000775.html","lymphocyte"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A1029718","Candidatus Arthromitus sp. SFB-mouse-Japan"]]},{"id":"NCBITaxon:103621","l":"Actinomyces urogenitalis","na":1,"nb":4,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A103621","Actinomyces urogenitalis"],["NCBITaxon%3A1403939","Actinomyces urogenitalis DORA_12"],["NCBITaxon%3A525246","Actinomyces urogenitalis DSM 15434"],["NCBITaxon%3A1284679","Actinomyces urogenitalis S6-C4"]]},{"id":"NCBITaxon:1038859","l":"Bradyrhizobium murdochi","na":4,"nb":1,"a":[["plant-bto-0001481.html","plant"],["iucn-national-park-envo-00000367.html","IUCN national park"],["peninsula-envo-00000305.html","peninsula"],["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A1038859","Bradyrhizobium murdochi"]]},{"id":"NCBITaxon:103892","l":"Veillonella ratti","na":4,"nb":1,"a":[["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["intestine-environment-envo-2100002.html","intestine environment"],["organic-feature-envo-01000159.html","organic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["NCBITaxon%3A103892","Veillonella ratti"]]},{"id":"NCBITaxon:104099","l":"Acetobacter orleanensis","na":1,"nb":4,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A178900","Acetobacter cerevisiae"],["NCBITaxon%3A104099","Acetobacter orleanensis"],["NCBITaxon%3A1231342","Acetobacter orleanensis JCM 7639"],["NCBITaxon%3A1307914","Acetobacter orleanensis NRIC 0473"]]},{"id":"NCBITaxon:104269","l":"Tenacibaculum amylolyticum","na":4,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"],["marine-environment-envo-01000320.html","marine environment"],["organic-feature-envo-01000159.html","organic feature"],["organic-material-envo-01000155.html","organic material"]],"b":[["NCBITaxon%3A104269","Tenacibaculum amylolyticum"]]},{"id":"NCBITaxon:1046938","l":"Candidatus Aenigmarchaeota archaeon SCGC AAA011-F07","na":4,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1046938","Candidatus Aenigmarchaeota archaeon SCGC AAA011-F07"]]},{"id":"NCBITaxon:1046985","l":"Parcubacteria bacterium SCGC AAA011-A08","na":4,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1046985","Parcubacteria bacterium SCGC AAA011-A08"]]},{"id":"NCBITaxon:1046987","l":"Parcubacteria bacterium SCGC AAA011-A09","na":4,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1046987","Parcubacteria bacterium SCGC AAA011-A09"]]},{"id":"NCBITaxon:1046989","l":"Parcubacteria bacterium SCGC AAA011-J21","na":4,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1046989","Parcubacteria bacterium SCGC AAA011-J21"]]},{"id":"NCBITaxon:1046996","l":"Parcubacteria bacterium SCGC AAA010-E09","na":4,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1046996","Parcubacteria bacterium SCGC AAA010-E09"]]},{"id":"NCBITaxon:1047003","l":"Candidatus Microgenomatus auricola SCGC AAA011-E14","na":4,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1047003","Candidatus Microgenomatus auricola SCGC AAA011-E14"]]},{"id":"NCBITaxon:1047010","l":"Omnitrophica bacterium SCGC AAA011-L16","na":4,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1047010","Omnitrophica bacterium SCGC AAA011-L16"]]},{"id":"NCBITaxon:1052844","l":"Parcubacteria bacterium SCGC AAA040-L21","na":4,"nb":1,"a":[["ocean-envo-00000015.html","ocean"],["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"],["undersea-feature-envo-00000104.html","undersea feature"]],"b":[["NCBITaxon%3A1052844","Parcubacteria bacterium SCGC AAA040-L21"]]},{"id":"NCBITaxon:1052848","l":"Parcubacteria bacterium SCGC AAA036-E14","na":4,"nb":1,"a":[["ocean-envo-00000015.html","ocean"],["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"],["undersea-feature-envo-00000104.html","undersea feature"]],"b":[["NCBITaxon%3A1052848","Parcubacteria bacterium SCGC AAA036-E14"]]},{"id":"NCBITaxon:1055487","l":"Methylotenera versatilis","na":1,"nb":4,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1055487","Methylotenera versatilis"],["NCBITaxon%3A666681","Methylotenera versatilis 301"],["NCBITaxon%3A1101193","Methylotenera versatilis 7"],["NCBITaxon%3A1115835","Methylotenera versatilis 79"]]},{"id":"NCBITaxon:1066","l":"Rhodocyclus tenuis","na":1,"nb":4,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["NCBITaxon%3A34014","Pararhizobium capsulatum"],["NCBITaxon%3A2929842","Rhodocyclus gracilis"],["NCBITaxon%3A1066","Rhodocyclus tenuis"],["NCBITaxon%3A1188245","Rhodocyclus tenuis DSM 109"]]},{"id":"NCBITaxon:107400","l":"Methylobacterium fujisawaense","na":4,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["liquid-water-envo-00002006.html","liquid water"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"]],"b":[["NCBITaxon%3A107400","Methylobacterium fujisawaense"]]},{"id":"NCBITaxon:108980","l":"Acinetobacter ursingii","na":1,"nb":4,"a":[["foot-bto-0000476.html","foot"]],"b":[["NCBITaxon%3A108980","Acinetobacter ursingii"],["NCBITaxon%3A1257043","Acinetobacter ursingii ANC 3649"],["NCBITaxon%3A981336","Acinetobacter ursingii DSM 16037 = CIP 107286"],["NCBITaxon%3A1217716","Acinetobacter ursingii NIPH 706"]]},{"id":"NCBITaxon:1104584","l":"Candidatus Altimarinus pacificus JGI 0000068-E11","na":4,"nb":1,"a":[["ocean-envo-00000015.html","ocean"],["ocean-biome-envo-01000048.html","ocean biome"],["oceanic-zone-envo-00000207.html","oceanic zone"],["undersea-feature-envo-00000104.html","undersea feature"]],"b":[["NCBITaxon%3A1104584","Candidatus Altimarinus pacificus JGI 0000068-E11"]]},{"id":"NCBITaxon:110578","l":"Bartonella vinsonii subsp. arupensis","na":1,"nb":4,"a":[["farm-envo-00000078.html","farm"]],"b":[["NCBITaxon%3A33047","Bartonella vinsonii"],["NCBITaxon%3A110578","Bartonella vinsonii subsp. arupensis"],["NCBITaxon%3A1094562","Bartonella vinsonii subsp. arupensis OK-94-513"],["NCBITaxon%3A1094561","Bartonella vinsonii subsp. arupensis Pm136co"]]},{"id":"NCBITaxon:110639","l":"Arthrobacter sp. 'SMCC G984'","na":4,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["biofilm-material-envo-01000156.html","biofilm material"],["farm-envo-00000078.html","farm"],["temperate-envo-01000206.html","temperate"]],"b":[["NCBITaxon%3A110639","Arthrobacter sp. 'SMCC G984'"]]},{"id":"NCBITaxon:110645","l":"Arthrobacter sp. 'SMCC ZAT004'","na":4,"nb":1,"a":[["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["biofilm-material-envo-01000156.html","biofilm material"],["farm-envo-00000078.html","farm"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"]],"b":[["NCBITaxon%3A110645","Arthrobacter sp. 'SMCC ZAT004'"]]},{"id":"NCBITaxon:111807","l":"Actinomadura yumaensis","na":1,"nb":4,"a":[["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["NCBITaxon%3A111807","Actinomadura yumaensis"],["NCBITaxon%3A1408421","Actinomadura yumaensis ATCC 43060"],["NCBITaxon%3A1749037","Microbacterium zeae"],["NCBITaxon%3A2479765","Ochrobactrum teleogrylli"]]},{"id":"NCBITaxon:1131757","l":"Pseudomonas aeruginosa MPAO1/P1","na":4,"nb":1,"a":[["esophagus-bto-0000959.html","esophagus"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["left-colon-bto-0000646.html","left colon"],["rectum-bto-0001158.html","rectum"]],"b":[["NCBITaxon%3A1131757","Pseudomonas aeruginosa MPAO1/P1"]]},{"id":"NCBITaxon:1131758","l":"Pseudomonas aeruginosa MPAO1/P2","na":4,"nb":1,"a":[["esophagus-bto-0000959.html","esophagus"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["left-colon-bto-0000646.html","left colon"],["rectum-bto-0001158.html","rectum"]],"b":[["NCBITaxon%3A1131758","Pseudomonas aeruginosa MPAO1/P2"]]},{"id":"NCBITaxon:114404","l":"Edaphosphingomonas fennica","na":4,"nb":1,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-water-body-envo-00001999.html","marine water body"],["stream-envo-00000023.html","stream"]],"b":[["NCBITaxon%3A114404","Edaphosphingomonas fennica"]]},{"id":"NCBITaxon:1148157","l":"Acinetobacter oleivorans","na":1,"nb":4,"a":[["plume-bto-0002480.html","plume"]],"b":[["NCBITaxon%3A1148157","Acinetobacter oleivorans"],["NCBITaxon%3A1391912","Acinetobacter oleivorans CIP 110421"],["NCBITaxon%3A436717","Acinetobacter oleivorans DR1"],["NCBITaxon%3A472","Acinetobacter sp."]]},{"id":"NCBITaxon:1150423","l":"Bifidobacterium dentium JCM 1195 = DSM 20436","na":1,"nb":4,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A146474","Acetobacter orientalis"],["NCBITaxon%3A1307913","Acetobacter orientalis NRIC 0481"],["NCBITaxon%3A1689","Bifidobacterium dentium"],["NCBITaxon%3A1150423","Bifidobacterium dentium JCM 1195 = DSM 20436"]]},{"id":"NCBITaxon:115541","l":"Loigolactobacillus coryniformis subsp. coryniformis","na":1,"nb":4,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A1610","Loigolactobacillus coryniformis"],["NCBITaxon%3A115541","Loigolactobacillus coryniformis subsp. coryniformis"],["NCBITaxon%3A1185325","Loigolactobacillus coryniformis subsp. coryniformis CECT 5711"],["NCBITaxon%3A913848","Loigolactobacillus coryniformis subsp. coryniformis KCTC 3167 = DSM 20001"]]},{"id":"NCBITaxon:1156985","l":"Epibacterium ulvae","na":4,"nb":1,"a":[["bar-envo-00000167.html","bar"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"],["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A1156985","Epibacterium ulvae"]]},{"id":"NCBITaxon:119206","l":"Aerococcus sanguinicola","na":4,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["animal-manure-envo-00003031.html","animal manure"],["intestine-environment-envo-2100002.html","intestine environment"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"]],"b":[["NCBITaxon%3A119206","Aerococcus sanguinicola"]]},{"id":"NCBITaxon:1235990","l":"Candidatus Pantoea carbekii","na":4,"nb":1,"a":[["fruit-bto-0000486.html","fruit"],["midgut-bto-0000863.html","midgut"],["nymph-bto-0000954.html","nymph"],["secretion-bto-0002979.html","secretion"]],"b":[["NCBITaxon%3A1235990","Candidatus Pantoea carbekii"]]},{"id":"NCBITaxon:124798","l":"Microbacterium phyllosphaerae","na":4,"nb":1,"a":[["leaf-po-0025034.html","leaf"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["intestine-environment-envo-2100002.html","intestine environment"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"]],"b":[["NCBITaxon%3A124798","Microbacterium phyllosphaerae"]]},{"id":"NCBITaxon:126157","l":"Psychrobacillus psychrodurans","na":4,"nb":1,"a":[["desert-biome-envo-01000179.html","desert biome"],["painting-habitatmech-bacdive-0bfb662164.html","Painting"],["temperate-envo-01000206.html","temperate"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A126157","Psychrobacillus psychrodurans"]]},{"id":"NCBITaxon:1273539","l":"Streptococcus iniae IUSA1","na":4,"nb":1,"a":[["fibroblast-bto-0000452.html","fibroblast"],["kidney-bto-0000671.html","kidney"],["macrophage-bto-0000801.html","macrophage"],["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A1273539","Streptococcus iniae IUSA1"]]},{"id":"NCBITaxon:129817","l":"Pseudomonas brenneri","na":4,"nb":1,"a":[["lake-envo-00000020.html","lake"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["surface-water-envo-00002042.html","surface water"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["NCBITaxon%3A129817","Pseudomonas brenneri"]]},{"id":"NCBITaxon:13076","l":"Globicatella sanguinis","na":1,"nb":4,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A13076","Globicatella sanguinis"],["NCBITaxon%3A1223493","Globicatella sanguinis NBRC 15551"],["NCBITaxon%3A62321","Globicatella sp."],["NCBITaxon%3A136093","Globicatella sulfidifaciens"]]},{"id":"NCBITaxon:134533","l":"Acinetobacter parvus","na":1,"nb":4,"a":[["animal-house-envo-00003040.html","animal house"]],"b":[["NCBITaxon%3A134533","Acinetobacter parvus"],["NCBITaxon%3A981333","Acinetobacter parvus DSM 16617 = CIP 108168"],["NCBITaxon%3A1217671","Acinetobacter parvus NIPH 1103"],["NCBITaxon%3A1844114","Hymenobacter bucti"]]},{"id":"NCBITaxon:1371","l":"Marinococcus halophilus","na":4,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"],["rhizosphere-envo-00005801.html","rhizosphere"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["NCBITaxon%3A1371","Marinococcus halophilus"]]},{"id":"NCBITaxon:138563","l":"Helicobacter cetorum","na":1,"nb":4,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"]],"b":[["NCBITaxon%3A138563","Helicobacter cetorum"],["NCBITaxon%3A182217","Helicobacter cetorum MIT 00-7128"],["NCBITaxon%3A1163745","Helicobacter cetorum MIT 99-5656"],["NCBITaxon%3A837933","Helicobacter cetorum MIT 99-5665"]]},{"id":"NCBITaxon:143223","l":"Salegentibacter salegens","na":4,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"],["small-river-biome-envo-00000890.html","small river biome"],["marine-environment-envo-01000320.html","marine environment"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["NCBITaxon%3A143223","Salegentibacter salegens"]]},{"id":"NCBITaxon:1463164","l":"Klebsiella quasipneumoniae subsp. similipneumoniae","na":1,"nb":4,"a":[["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"]],"b":[["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A1463165","Klebsiella quasipneumoniae"],["NCBITaxon%3A1463164","Klebsiella quasipneumoniae subsp. similipneumoniae"],["NCBITaxon%3A1328376","Klebsiella quasipneumoniae subsp. similipneumoniae MGH 44"]]},{"id":"NCBITaxon:1484","l":"Hydrogenibacillus schlegelii","na":4,"nb":1,"a":[["factory-envo-01000536.html","factory"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["sludge-envo-00002044.html","sludge"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A1484","Hydrogenibacillus schlegelii"]]},{"id":"NCBITaxon:1507806","l":"Campylobacter fetus subsp. testudinum","na":1,"nb":4,"a":[["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["NCBITaxon%3A196","Campylobacter fetus"],["NCBITaxon%3A1507806","Campylobacter fetus subsp. testudinum"],["NCBITaxon%3A1244528","Campylobacter fetus subsp. testudinum 03-427"],["NCBITaxon%3A1244529","Campylobacter fetus subsp. testudinum Sp3"]]},{"id":"NCBITaxon:151454","l":"Allobosea eneae","na":1,"nb":4,"a":[["hospital-envo-00002173.html","hospital"]],"b":[["NCBITaxon%3A151454","Allobosea eneae"],["NCBITaxon%3A1211774","Allobosea eneae 34614"],["NCBITaxon%3A353","Azotobacter chroococcum"],["NCBITaxon%3A2707774","Azotobacter chroococcum subsp. chroococcum"]]},{"id":"NCBITaxon:1517","l":"Thermoanaerobacterium thermosaccharolyticum","na":1,"nb":4,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["NCBITaxon%3A1517","Thermoanaerobacterium thermosaccharolyticum"],["NCBITaxon%3A698949","Thermoanaerobacterium thermosaccharolyticum 33"],["NCBITaxon%3A580327","Thermoanaerobacterium thermosaccharolyticum DSM 571"],["NCBITaxon%3A698948","Thermoanaerobacterium thermosaccharolyticum M0795"]]},{"id":"NCBITaxon:1679001","l":"Pasteurellaceae bacterium NI1060","na":4,"nb":1,"a":[["alveolar-bone-bto-0001383.html","alveolar bone"],["gingiva-bto-0000519.html","gingiva"],["neutrophil-bto-0000130.html","neutrophil"],["osteoclast-bto-0000968.html","osteoclast"]],"b":[["NCBITaxon%3A1679001","Pasteurellaceae bacterium NI1060"]]},{"id":"NCBITaxon:169963","l":"Listeria monocytogenes EGD-e","na":4,"nb":1,"a":[["brain-bto-0000142.html","brain"],["heart-bto-0000562.html","heart"],["macrophage-cell-line-bto-0002278.html","macrophage cell line"],["p-388d1-cell-bto-0000984.html","P-388D1 cell"]],"b":[["NCBITaxon%3A169963","Listeria monocytogenes EGD-e"]]},{"id":"NCBITaxon:1712410","l":"Thermanaerosceptrum fracticalcis","na":4,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["ocean-trench-envo-00000275.html","ocean trench"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A1712410","Thermanaerosceptrum fracticalcis"]]},{"id":"NCBITaxon:173365","l":"Methylobacter tundripaludum","na":1,"nb":4,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A173365","Methylobacter tundripaludum"],["NCBITaxon%3A1408450","Methylobacter tundripaludum 21/22"],["NCBITaxon%3A1408451","Methylobacter tundripaludum 31/32"],["NCBITaxon%3A697282","Methylobacter tundripaludum SV96"]]},{"id":"NCBITaxon:1796646","l":"Muribaculum intestinale","na":4,"nb":1,"a":[["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["secretion-bto-0002979.html","secretion"]],"b":[["NCBITaxon%3A1796646","Muribaculum intestinale"]]},{"id":"NCBITaxon:1798","l":"Mycolicibacillus trivialis","na":4,"nb":1,"a":[["fibroblast-bto-0000452.html","fibroblast"],["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["kidney-bto-0000671.html","kidney"],["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A1798","Mycolicibacillus trivialis"]]},{"id":"NCBITaxon:1804","l":"Mycolicibacterium gilvum","na":1,"nb":4,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["NCBITaxon%3A1785","Mycobacterium sp."],["NCBITaxon%3A1804","Mycolicibacterium gilvum"],["NCBITaxon%3A350054","Mycolicibacterium gilvum PYR-GCK"],["NCBITaxon%3A278137","Mycolicibacterium gilvum Spyr1"]]},{"id":"NCBITaxon:184870","l":"Varibaculum cambriense","na":1,"nb":4,"a":[["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"]],"b":[["NCBITaxon%3A184870","Varibaculum cambriense"],["NCBITaxon%3A1357413","Varibaculum cambriense AB12_3"],["NCBITaxon%3A1403948","Varibaculum cambriense DORA_20"],["NCBITaxon%3A1123488","Varibaculum cambriense DSM 15806"]]},{"id":"NCBITaxon:184917","l":"Solidesulfovibrio magneticus","na":1,"nb":4,"a":[["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["NCBITaxon%3A1304872","Solidesulfovibrio cf. magneticus IFRC170"],["NCBITaxon%3A184917","Solidesulfovibrio magneticus"],["NCBITaxon%3A573370","Solidesulfovibrio magneticus RS-1"],["NCBITaxon%3A1206767","Solidesulfovibrio magneticus str. Maddingley MBC34"]]},{"id":"NCBITaxon:187327","l":"Acidaminococcus intestini","na":1,"nb":4,"a":[["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["NCBITaxon%3A187327","Acidaminococcus intestini"],["NCBITaxon%3A1263033","Acidaminococcus intestini CAG:325"],["NCBITaxon%3A1120921","Acidaminococcus intestini DSM 21505"],["NCBITaxon%3A568816","Acidaminococcus intestini RyC-MR95"]]},{"id":"NCBITaxon:1934993","l":"Archaeoglobus sp. JdFR-36","na":4,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934993","Archaeoglobus sp. JdFR-36"]]},{"id":"NCBITaxon:1934994","l":"Archaeoglobus sp. JdFR-37","na":4,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934994","Archaeoglobus sp. JdFR-37"]]},{"id":"NCBITaxon:1934995","l":"Archaeoglobus sp. JdFR-38","na":4,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934995","Archaeoglobus sp. JdFR-38"]]},{"id":"NCBITaxon:1934996","l":"Archaeoglobus sp. JdFR-39","na":4,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934996","Archaeoglobus sp. JdFR-39"]]},{"id":"NCBITaxon:1934997","l":"Archaeoglobus sp. JdFR-40","na":4,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934997","Archaeoglobus sp. JdFR-40"]]},{"id":"NCBITaxon:1934998","l":"Archaeoglobus sp. JdFR-41","na":4,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934998","Archaeoglobus sp. JdFR-41"]]},{"id":"NCBITaxon:1934999","l":"Cupriavidus sp. JdFR-90","na":4,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"],["slope-envo-00002000.html","slope"]],"b":[["NCBITaxon%3A1934999","Cupriavidus sp. JdFR-90"]]},{"id":"NCBITaxon:194249","l":"uncultured Rhodococcus sp.","na":4,"nb":1,"a":[["leaf-po-0025034.html","leaf"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"],["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A194249","uncultured Rhodococcus sp."]]},{"id":"NCBITaxon:1993","l":"Actinomadura madurae","na":1,"nb":4,"a":[["foot-bto-0000476.html","foot"]],"b":[["NCBITaxon%3A1993","Actinomadura madurae"],["NCBITaxon%3A1394178","Actinomadura madurae LIID-AJ290"],["NCBITaxon%3A1220569","Actinomadura madurae NBRC 14623"],["NCBITaxon%3A1465509","Lactobacillus sp. JCM 7736"]]},{"id":"NCBITaxon:207340","l":"Roseomonas mucosa","na":1,"nb":4,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A207340","Roseomonas mucosa"],["NCBITaxon%3A1448136","Roseomonas mucosa ATCC BAA-692"],["NCBITaxon%3A1869190","Roseomonas sp."],["NCBITaxon%3A204525","Teichococcus cervicalis"]]},{"id":"NCBITaxon:2074","l":"Pseudonocardia autotrophica","na":1,"nb":4,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["NCBITaxon%3A255205","Pseudoclavibacter helvolus"],["NCBITaxon%3A2074","Pseudonocardia autotrophica"],["NCBITaxon%3A29401","Pseudonocardia halophobica"],["NCBITaxon%3A471802","Pseudonocardia halophobica NRRL B-16514"]]},{"id":"NCBITaxon:209260","l":"Swaminathania","na":1,"nb":4,"a":[["midgut-bto-0000863.html","midgut"]],"b":[["NCBITaxon%3A182838","Swaminathania salitolerans"],["NCBITaxon%3A1307931","Swaminathania salitolerans LMG 21291"],["NCBITaxon%3A447633","Swaminathania sp. SI15-1"],["NCBITaxon%3A876101","uncultured Swaminathania sp."]]},{"id":"NCBITaxon:231455","l":"Dyella japonica","na":1,"nb":4,"a":[["area-of-tundra-envo-00000112.html","area of tundra"]],"b":[["NCBITaxon%3A231455","Dyella japonica"],["NCBITaxon%3A1217721","Dyella japonica A8"],["NCBITaxon%3A1440762","Dyella japonica DSM 16301"],["NCBITaxon%3A1380365","Dyella japonica UNC79MFTsu3.2"]]},{"id":"NCBITaxon:237491","l":"Clostridium sp. Sukashi-1","na":4,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["environmental-feature-envo-00002297.html","environmental feature"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A237491","Clostridium sp. Sukashi-1"]]},{"id":"NCBITaxon:237727","l":"Erythrobacter sp. NAP1","na":4,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"],["pond-water-envo-00002228.html","pond water"],["small-river-biome-envo-00000890.html","small river biome"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["NCBITaxon%3A237727","Erythrobacter sp. NAP1"]]},{"id":"NCBITaxon:267990","l":"Lebetimonas acidiphila","na":4,"nb":1,"a":[["black-smoker-envo-00000218.html","black smoker"],["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["in-situ-habitatmech-bacdive-3edb563d49.html","In-situ"],["volcanic-rock-envo-00002015.html","volcanic rock"]],"b":[["NCBITaxon%3A267990","Lebetimonas acidiphila"]]},{"id":"NCBITaxon:28031","l":"Lysinibacillus fusiformis","na":1,"nb":4,"a":[["organic-waste-material-envo-00002873.html","organic waste material"]],"b":[["NCBITaxon%3A28031","Lysinibacillus fusiformis"],["NCBITaxon%3A1416755","Lysinibacillus fusiformis H1k"],["NCBITaxon%3A1231627","Lysinibacillus fusiformis ZB2"],["NCBITaxon%3A714961","Lysinibacillus fusiformis ZC1"]]},{"id":"NCBITaxon:28087","l":"Legionella sainthelensi","na":1,"nb":4,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["NCBITaxon%3A28087","Legionella sainthelensi"],["NCBITaxon%3A1408445","Legionella sainthelensi ATCC 35248 = DSM 19231"],["NCBITaxon%3A3413801","Legionella sainthelensi serogroup 1"],["NCBITaxon%3A66962","Legionella sainthelensi serogroup 2"]]},{"id":"NCBITaxon:28111","l":"Bacteroides eggerthii","na":1,"nb":4,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["NCBITaxon%3A28111","Bacteroides eggerthii"],["NCBITaxon%3A665953","Bacteroides eggerthii 1_2_48FAA"],["NCBITaxon%3A1263043","Bacteroides eggerthii CAG:109"],["NCBITaxon%3A483216","Bacteroides eggerthii DSM 20697"]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":1,"nb":4,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A28112","Tannerella forsythia"],["NCBITaxon%3A1307832","Tannerella forsythia 3313"],["NCBITaxon%3A203275","Tannerella forsythia 92A2"],["NCBITaxon%3A1307833","Tannerella forsythia KS16"]]},{"id":"NCBITaxon:28135","l":"Segatella oris","na":1,"nb":4,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["NCBITaxon%3A28135","Segatella oris"],["NCBITaxon%3A563008","Segatella oris C735"],["NCBITaxon%3A1122989","Segatella oris DSM 18711 = JCM 12252"],["NCBITaxon%3A649760","Segatella oris F0302"]]},{"id":"NCBITaxon:28445","l":"Mycobacterium intermedium","na":4,"nb":1,"a":[["fibroblast-bto-0000452.html","fibroblast"],["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["kidney-bto-0000671.html","kidney"],["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A28445","Mycobacterium intermedium"]]},{"id":"NCBITaxon:290400","l":"Jannaschia sp. CCS1","na":4,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["oligotrophic-water-envo-00002223.html","oligotrophic water"],["sandstone-envo-00002055.html","sandstone"],["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A290400","Jannaschia sp. CCS1"]]},{"id":"NCBITaxon:29313","l":"Mycobacterium shimoidei","na":4,"nb":1,"a":[["fibroblast-bto-0000452.html","fibroblast"],["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["kidney-bto-0000671.html","kidney"],["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A29313","Mycobacterium shimoidei"]]},{"id":"NCBITaxon:29491","l":"Aeromonas salmonicida subsp. salmonicida","na":1,"nb":4,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A645","Aeromonas salmonicida"],["NCBITaxon%3A29491","Aeromonas salmonicida subsp. salmonicida"],["NCBITaxon%3A1076135","Aeromonas salmonicida subsp. salmonicida 01-B526"],["NCBITaxon%3A382245","Aeromonas salmonicida subsp. salmonicida A449"]]},{"id":"NCBITaxon:29581","l":"Janthinobacterium lividum","na":1,"nb":4,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A29581","Janthinobacterium lividum"],["NCBITaxon%3A1112211","Janthinobacterium lividum PAMC 25724"],["NCBITaxon%3A303","Pseudomonas putida"],["NCBITaxon%3A13690","Sphingobium yanoikuyae"]]},{"id":"NCBITaxon:313596","l":"Robiginitalea biformata HTCC2501","na":4,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"],["small-river-biome-envo-00000890.html","small river biome"],["lagoon-envo-00000038.html","lagoon"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["NCBITaxon%3A313596","Robiginitalea biformata HTCC2501"]]},{"id":"NCBITaxon:313603","l":"Maribacter sp. HTCC2170","na":4,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"],["hydrographic-feature-envo-00000012.html","hydrographic feature"],["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["NCBITaxon%3A313603","Maribacter sp. HTCC2170"]]},{"id":"NCBITaxon:314724","l":"Borrelia turicatae 91E135","na":4,"nb":1,"a":[["central-nervous-system-bto-0000227.html","central nervous system"],["heart-bto-0000562.html","heart"],["huvec-cell-bto-0001949.html","HUVEC cell"],["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A314724","Borrelia turicatae 91E135"]]},{"id":"NCBITaxon:317577","l":"Deinococcus ficus","na":1,"nb":4,"a":[["waste-treatment-plant-envo-00002272.html","waste treatment plant"]],"b":[["NCBITaxon%3A317577","Deinococcus ficus"],["NCBITaxon%3A1054569","Deinococcus ficus cp02"],["NCBITaxon%3A1054570","Deinococcus ficus cp4502"],["NCBITaxon%3A1121379","Deinococcus ficus DSM 19119"]]},{"id":"NCBITaxon:324057","l":"Paenibacillus sp. JDR-2","na":4,"nb":1,"a":[["vasculature-uberon-0002049.html","vasculature"],["wood-envo-00002040.html","wood"],["part-of-plant-habitatmech-madin-25325947e2.html","part of plant"],["village-biome-envo-01000246.html","village biome"]],"b":[["NCBITaxon%3A324057","Paenibacillus sp. JDR-2"]]},{"id":"NCBITaxon:33010","l":"Cutibacterium avidum","na":1,"nb":4,"a":[["bone-element-uberon-0001474.html","bone element"]],"b":[["NCBITaxon%3A33010","Cutibacterium avidum"],["NCBITaxon%3A1170318","Cutibacterium avidum 44067"],["NCBITaxon%3A997355","Cutibacterium avidum ATCC 25577"],["NCBITaxon%3A1292372","Cutibacterium avidum TM16"]]},{"id":"NCBITaxon:33011","l":"Cutibacterium granulosum","na":1,"nb":4,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["NCBITaxon%3A33011","Cutibacterium granulosum"],["NCBITaxon%3A1160719","Cutibacterium granulosum DSM 20700"],["NCBITaxon%3A553200","Cutibacterium granulosum JCVIHMP029"],["NCBITaxon%3A1292373","Cutibacterium granulosum TM11"]]},{"id":"NCBITaxon:33013","l":"Clavibacter michiganensis subsp. michiganensis","na":1,"nb":4,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A28447","Clavibacter michiganensis"],["NCBITaxon%3A33013","Clavibacter michiganensis subsp. michiganensis"],["NCBITaxon%3A443906","Clavibacter michiganensis subsp. michiganensis NCPPB 382"],["NCBITaxon%3A2035","Curtobacterium flaccumfaciens"]]},{"id":"NCBITaxon:34105","l":"Streptobacillus moniliformis","na":1,"nb":4,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["NCBITaxon%3A1766719","Caviibacter abscessus"],["NCBITaxon%3A34105","Streptobacillus moniliformis"],["NCBITaxon%3A519441","Streptobacillus moniliformis DSM 12112"],["NCBITaxon%3A1410039","Streptobacillus moniliformis HMP_JCVI_SC0164"]]},{"id":"NCBITaxon:36740","l":"Dermabacter hominis","na":1,"nb":4,"a":[["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["NCBITaxon%3A52770","Buchananella hordeovulneris"],["NCBITaxon%3A36740","Dermabacter hominis"],["NCBITaxon%3A1450519","Dermabacter hominis 1368"],["NCBITaxon%3A1349750","Dermabacter hominis NBRC 106157"]]},{"id":"NCBITaxon:36814","l":"Mycolicibacterium rhodesiae","na":1,"nb":4,"a":[["tuberculosis-habitatmech-bacdive-e5d21f85b7.html","Tuberculosis"]],"b":[["NCBITaxon%3A36814","Mycolicibacterium rhodesiae"],["NCBITaxon%3A710467","Mycolicibacterium rhodesiae IS60"],["NCBITaxon%3A931627","Mycolicibacterium rhodesiae JS60"],["NCBITaxon%3A710685","Mycolicibacterium rhodesiae NBB3"]]},{"id":"NCBITaxon:36856","l":"Sinorhizobium saheli","na":1,"nb":4,"a":[["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A36856","Sinorhizobium saheli"],["NCBITaxon%3A142624","Sinorhizobium saheli bv. acaciae"],["NCBITaxon%3A142621","Sinorhizobium saheli bv. sesbaniae"],["NCBITaxon%3A1230633","Sinorhizobium saheli USDA 4893"]]},{"id":"NCBITaxon:378806","l":"Allostigmatella aurantiaca DW4/3-1","na":4,"nb":1,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"],["aquatic-environment-envo-01000317.html","aquatic environment"],["orchard-envo-00000115.html","orchard"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A378806","Allostigmatella aurantiaca DW4/3-1"]]},{"id":"NCBITaxon:385067","l":"Bacillus sp. N2a","na":4,"nb":1,"a":[["oil-spill-envo-00002061.html","oil spill"],["cropland-biome-envo-01000245.html","cropland biome"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A385067","Bacillus sp. N2a"]]},{"id":"NCBITaxon:388919","l":"Streptococcus sanguinis SK36","na":4,"nb":1,"a":[["buccal-mucosa-bto-0003833.html","buccal mucosa"],["dental-plaque-bto-0000338.html","dental plaque"],["pharyngeal-mucosa-bto-0001047.html","pharyngeal mucosa"],["pharynx-bto-0001049.html","pharynx"]],"b":[["NCBITaxon%3A388919","Streptococcus sanguinis SK36"]]},{"id":"NCBITaxon:391","l":"Rhizobium sp.","na":4,"nb":1,"a":[["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["paddy-ricefield-habitatmech-bacdive-6e3154acd8.html","Paddy-Ricefield"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["NCBITaxon%3A391","Rhizobium sp."]]},{"id":"NCBITaxon:394090","l":"Cystobacter armeniaca","na":4,"nb":1,"a":[["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A394090","Cystobacter armeniaca"]]},{"id":"NCBITaxon:40542","l":"Leptotrichia buccalis","na":1,"nb":4,"a":[["archeological-site-envo-00000564.html","archeological site"]],"b":[["NCBITaxon%3A40542","Leptotrichia buccalis"],["NCBITaxon%3A523794","Leptotrichia buccalis C-1013-b"],["NCBITaxon%3A157692","Pseudoleptotrichia goodfellowii"],["NCBITaxon%3A714315","Pseudoleptotrichia goodfellowii DSM 19756"]]},{"id":"NCBITaxon:42895","l":"Enterobacter sp.","na":4,"nb":1,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"],["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A42895","Enterobacter sp."]]},{"id":"NCBITaxon:44753","l":"Tsukamurella spumae","na":4,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"],["foam-habitatmech-bacdive-df2f59b773.html","Foam"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A44753","Tsukamurella spumae"]]},{"id":"NCBITaxon:45243","l":"Capnocytophaga haemolytica","na":1,"nb":4,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A45243","Capnocytophaga haemolytica"],["NCBITaxon%3A1410026","Capnocytophaga haemolytica HMP_JCVI_SC0216"],["NCBITaxon%3A1410027","Capnocytophaga haemolytica HMP_JCVI_SC0218"],["NCBITaxon%3A1827100","Capnocytophaga sp. JCM 8568"]]},{"id":"NCBITaxon:45634","l":"Streptococcus cristatus","na":1,"nb":4,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["NCBITaxon%3A45634","Streptococcus cristatus"],["NCBITaxon%3A1302863","Streptococcus cristatus AS 1.3089"],["NCBITaxon%3A889201","Streptococcus cristatus ATCC 51100"],["NCBITaxon%3A1305","Streptococcus sanguinis"]]},{"id":"NCBITaxon:476","l":"Moraxella bovis","na":1,"nb":4,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"]],"b":[["NCBITaxon%3A476","Moraxella bovis"],["NCBITaxon%3A387425","Moraxella bovis Epp63"],["NCBITaxon%3A386891","Moraxella bovoculi"],["NCBITaxon%3A60442","Moraxella equi"]]},{"id":"NCBITaxon:477974","l":"Candidatus Desulforudis audaxviator MP104C","na":4,"nb":1,"a":[["borehole-envo-00002226.html","borehole"],["gold-mine-envo-00002168.html","gold mine"],["style-bto-0001313.html","style"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A477974","Candidatus Desulforudis audaxviator MP104C"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae RIB40","na":4,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["mountain-pass-envo-00000084.html","mountain pass"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A510516","Aspergillus oryzae RIB40"]]},{"id":"NCBITaxon:525919","l":"Anaerococcus prevotii DSM 20548","na":1,"nb":4,"a":[["blood-plasma-bto-0000131.html","blood plasma"]],"b":[["NCBITaxon%3A33034","Anaerococcus prevotii"],["NCBITaxon%3A525919","Anaerococcus prevotii DSM 20548"],["NCBITaxon%3A81462","Thermanaerovibrio acidaminovorans"],["NCBITaxon%3A525903","Thermanaerovibrio acidaminovorans DSM 6589"]]},{"id":"NCBITaxon:53249","l":"Pseudoalteromonas sp.","na":4,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-water-body-envo-00001999.html","marine water body"],["aquaculture-farm-envo-03600074.html","aquaculture farm"],["fumarole-envo-00000216.html","fumarole"]],"b":[["NCBITaxon%3A53249","Pseudoalteromonas sp."]]},{"id":"NCBITaxon:546263","l":"Neisseria elongata subsp. glycolytica ATCC 29315","na":1,"nb":4,"a":[["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["NCBITaxon%3A495","Neisseria elongata"],["NCBITaxon%3A88719","Neisseria elongata subsp. glycolytica"],["NCBITaxon%3A546263","Neisseria elongata subsp. glycolytica ATCC 29315"],["NCBITaxon%3A90367","Neisseria elongata subsp. nitroreducens"]]},{"id":"NCBITaxon:622637","l":"Methylocystis sp. ATCC 49242","na":4,"nb":1,"a":[["park-envo-00000562.html","park"],["sewage-plant-envo-00003043.html","sewage plant"],["rice-field-envo-00000296.html","rice field"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["NCBITaxon%3A622637","Methylocystis sp. ATCC 49242"]]},{"id":"NCBITaxon:644281","l":"Methanocaldococcus sp. FS406-22","na":4,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"],["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A644281","Methanocaldococcus sp. FS406-22"]]},{"id":"NCBITaxon:67274","l":"Streptomyces argenteolus","na":1,"nb":4,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A67274","Streptomyces argenteolus"],["NCBITaxon%3A285516","Streptomyces argenteolus subsp. toyonakensis"],["NCBITaxon%3A1911","Streptomyces griseus"],["NCBITaxon%3A67263","Streptomyces griseus subsp. griseus"]]},{"id":"NCBITaxon:703","l":"Plesiomonas shigelloides","na":1,"nb":4,"a":[["feces-uberon-0001988.html","feces"]],"b":[["NCBITaxon%3A703","Plesiomonas shigelloides"],["NCBITaxon%3A1315976","Plesiomonas shigelloides 302-73"],["NCBITaxon%3A1354269","Plesiomonas shigelloides ATCC 14029"],["NCBITaxon%3A3398690","Plesiomonas shigelloides subsp. oncorhynchi"]]},{"id":"NCBITaxon:710685","l":"Mycolicibacterium rhodesiae NBB3","na":4,"nb":1,"a":[["bar-envo-00000167.html","bar"],["estuary-envo-00000045.html","estuary"],["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"],["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A710685","Mycolicibacterium rhodesiae NBB3"]]},{"id":"NCBITaxon:746360","l":"Pseudomonas fluorescens WH6","na":4,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["human-construction-envo-00000070.html","human construction"],["cold-environment-envo-01000309.html","cold environment"],["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A746360","Pseudomonas fluorescens WH6"]]},{"id":"NCBITaxon:76936","l":"Helicobacter typhlonius","na":1,"nb":4,"a":[["ht-29-cell-bto-0000182.html","HT-29 cell"]],"b":[["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"],["NCBITaxon%3A87012","Helicobacter mesocricetorum"],["NCBITaxon%3A76936","Helicobacter typhlonius"]]},{"id":"NCBITaxon:82983","l":"Obesumbacterium proteus","na":1,"nb":4,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A82983","Obesumbacterium proteus"],["NCBITaxon%3A1354268","Obesumbacterium proteus ATCC 12841"],["NCBITaxon%3A570012","Shimwellia pseudoproteus"]]},{"id":"NCBITaxon:83449","l":"Cystobacter ferrugineus","na":4,"nb":1,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["wood-bto-0005516.html","wood"],["sand-envo-01000017.html","sand"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A83449","Cystobacter ferrugineus"]]},{"id":"NCBITaxon:839","l":"Xylanibacter ruminicola","na":1,"nb":4,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A1531","Enterocloster clostridioformis"],["NCBITaxon%3A839","Xylanibacter ruminicola"],["NCBITaxon%3A264731","Xylanibacter ruminicola 23"],["NCBITaxon%3A1410667","Xylanibacter ruminicola Ga6B6"]]},{"id":"NCBITaxon:85402","l":"Mannheimia granulomatis","na":1,"nb":4,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"]],"b":[["NCBITaxon%3A56878","Helicobacter salomonis"],["NCBITaxon%3A85402","Mannheimia granulomatis"],["NCBITaxon%3A1122190","Mannheimia granulomatis DSM 19156"],["NCBITaxon%3A2081794","Mannheimia sp."]]},{"id":"NCBITaxon:859144","l":"Cytobacillus gottheilii","na":1,"nb":4,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["NCBITaxon%3A1416876","Actinomycetospora rhizophila"],["NCBITaxon%3A859144","Cytobacillus gottheilii"],["NCBITaxon%3A33903","Streptomyces avermitilis"],["NCBITaxon%3A227882","Streptomyces avermitilis MA-4680 = NBRC 14893"]]},{"id":"NCBITaxon:930","l":"Acidithiobacillus thiooxidans","na":1,"nb":4,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A3063952","Acidithiobacillus concretivorus"],["NCBITaxon%3A930","Acidithiobacillus thiooxidans"],["NCBITaxon%3A1432062","Acidithiobacillus thiooxidans A01"],["NCBITaxon%3A637390","Acidithiobacillus thiooxidans ATCC 19377"]]},{"id":"NCBITaxon:1000589","l":"Streptococcus dysgalactiae subsp. equisimilis SK1249","na":1,"nb":3,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1334","Streptococcus dysgalactiae"],["NCBITaxon%3A119602","Streptococcus dysgalactiae subsp. equisimilis"],["NCBITaxon%3A1000589","Streptococcus dysgalactiae subsp. equisimilis SK1249"]]},{"id":"NCBITaxon:1003237","l":"Nitrospirillum viridazoti Y2","na":1,"nb":3,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A28077","Nitrospirillum amazonense"],["NCBITaxon%3A3144925","Nitrospirillum viridazoti"],["NCBITaxon%3A1003237","Nitrospirillum viridazoti Y2"]]},{"id":"NCBITaxon:1004151","l":"Photorhabdus khanii NC19","na":1,"nb":3,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1004150","Photorhabdus khanii"],["NCBITaxon%3A1004151","Photorhabdus khanii NC19"],["NCBITaxon%3A2675885","Photorhabdus khanii subsp. khanii"]]},{"id":"NCBITaxon:100469","l":"Schaalia canis","na":3,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A100469","Schaalia canis"]]},{"id":"NCBITaxon:1006","l":"Marivirga tractuosa","na":1,"nb":3,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A2010992","Marivirga harenae"],["NCBITaxon%3A1006","Marivirga tractuosa"],["NCBITaxon%3A643867","Marivirga tractuosa DSM 4126"]]},{"id":"NCBITaxon:1007092","l":"Microlunatus terrae","na":3,"nb":1,"a":[["forested-area-envo-00000111.html","forested area"],["soil-envo-00001998.html","soil"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A1007092","Microlunatus terrae"]]},{"id":"NCBITaxon:1008","l":"Saprospira grandis","na":1,"nb":3,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A1008","Saprospira grandis"],["NCBITaxon%3A694433","Saprospira grandis DSM 2844"],["NCBITaxon%3A984262","Saprospira grandis str. Lewin"]]},{"id":"NCBITaxon:1010","l":"Sphingobacterium mizutaii","na":1,"nb":3,"a":[["gut-bto-0000545.html","gut"]],"b":[["NCBITaxon%3A239","Flavobacterium sp."],["NCBITaxon%3A1010","Sphingobacterium mizutaii"],["NCBITaxon%3A1220576","Sphingobacterium mizutaii NBRC 14946 = DSM 11724"]]},{"id":"NCBITaxon:1012","l":"Sporocytophaga cauliformis","na":3,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"]],"b":[["NCBITaxon%3A1012","Sporocytophaga cauliformis"]]},{"id":"NCBITaxon:102232","l":"Gloeocapsa sp. PCC 73106","na":3,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A102232","Gloeocapsa sp. PCC 73106"]]},{"id":"NCBITaxon:1031536","l":"Campylobacter lari subsp. concheus LMG 11760","na":1,"nb":3,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A201","Campylobacter lari"],["NCBITaxon%3A488545","Campylobacter lari subsp. concheus"],["NCBITaxon%3A1031536","Campylobacter lari subsp. concheus LMG 11760"]]},{"id":"NCBITaxon:1031541","l":"Tropicimonas sediminicola","na":3,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"],["aquaculture-farm-envo-03600074.html","aquaculture farm"],["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A1031541","Tropicimonas sediminicola"]]},{"id":"NCBITaxon:1031752","l":"Campylobacter hyointestinalis subsp. lawsonii CCUG 27631","na":1,"nb":3,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["NCBITaxon%3A198","Campylobacter hyointestinalis"],["NCBITaxon%3A91353","Campylobacter hyointestinalis subsp. lawsonii"],["NCBITaxon%3A1031752","Campylobacter hyointestinalis subsp. lawsonii CCUG 27631"]]},{"id":"NCBITaxon:1032845","l":"Rickettsia conorii subsp. heilongjiangensis 054","na":1,"nb":3,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A781","Rickettsia conorii"],["NCBITaxon%3A226665","Rickettsia conorii subsp. heilongjiangensis"],["NCBITaxon%3A1032845","Rickettsia conorii subsp. heilongjiangensis 054"]]},{"id":"NCBITaxon:1036743","l":"Rhodospirillum rubrum F11","na":1,"nb":3,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1085","Rhodospirillum rubrum"],["NCBITaxon%3A269796","Rhodospirillum rubrum ATCC 11170"],["NCBITaxon%3A1036743","Rhodospirillum rubrum F11"]]},{"id":"NCBITaxon:103710","l":"Cellulomonas sp. GM13","na":3,"nb":1,"a":[["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["NCBITaxon%3A103710","Cellulomonas sp. GM13"]]},{"id":"NCBITaxon:103728","l":"Actinokineospora diospyrosa","na":3,"nb":1,"a":[["inflorescence-bto-0000628.html","inflorescence"],["plant-bto-0001481.html","plant"],["root-bto-0001188.html","root"]],"b":[["NCBITaxon%3A103728","Actinokineospora diospyrosa"]]},{"id":"NCBITaxon:103732","l":"Lentzea flava","na":3,"nb":1,"a":[["biofilm-material-envo-01000156.html","biofilm material"],["farm-envo-00000078.html","farm"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A103732","Lentzea flava"]]},{"id":"NCBITaxon:1037355","l":"","na":3,"nb":1,"a":[["undersea-feature-envo-00000104.html","undersea feature"],["city-envo-00000856.html","city"],["factory-envo-01000536.html","factory"]],"b":[["NCBITaxon%3A879969","Macellibacteroides fermentans"]]},{"id":"NCBITaxon:1037411","l":"Lactobacillus johnsonii pf01","na":3,"nb":1,"a":[["duodenum-bto-0000365.html","duodenum"],["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"],["jejunal-epithelium-bto-0001743.html","jejunal epithelium"]],"b":[["NCBITaxon%3A1037411","Lactobacillus johnsonii pf01"]]},{"id":"NCBITaxon:1038928","l":"Streptomyces xinghaiensis","na":1,"nb":3,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1906","Streptomyces fradiae"],["NCBITaxon%3A1038928","Streptomyces xinghaiensis"],["NCBITaxon%3A1038929","Streptomyces xinghaiensis S187"]]},{"id":"NCBITaxon:1040984","l":"Mesorhizobium sp. WSM1293","na":3,"nb":1,"a":[["beach-envo-00000091.html","beach"],["intertidal-zone-envo-00000316.html","intertidal zone"],["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1040984","Mesorhizobium sp. WSM1293"]]},{"id":"NCBITaxon:1041150","l":"Sinorhizobium medicae WSM244","na":3,"nb":1,"a":[["joint-bto-0001686.html","joint"],["rhizosphere-envo-00005801.html","rhizosphere"],["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A1041150","Sinorhizobium medicae WSM244"]]},{"id":"NCBITaxon:1051353","l":"Escherichia coli ATCC 700728","na":1,"nb":3,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1051353","Escherichia coli ATCC 700728"],["NCBITaxon%3A1236522","Escherichia coli JCM 18426"]]},{"id":"NCBITaxon:105420","l":"Streptacidiphilus neutrinimicus","na":3,"nb":1,"a":[["rhizosphere-envo-00005801.html","rhizosphere"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["NCBITaxon%3A105420","Streptacidiphilus neutrinimicus"]]},{"id":"NCBITaxon:1054942","l":"Candidatus Arthromitus sp. SFB-1","na":3,"nb":1,"a":[["filament-bto-0000463.html","filament"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["scolex-bto-0002305.html","scolex"]],"b":[["NCBITaxon%3A1054942","Candidatus Arthromitus sp. SFB-1"]]},{"id":"NCBITaxon:1054943","l":"Candidatus Arthromitus sp. SFB-2","na":3,"nb":1,"a":[["filament-bto-0000463.html","filament"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["scolex-bto-0002305.html","scolex"]],"b":[["NCBITaxon%3A1054943","Candidatus Arthromitus sp. SFB-2"]]},{"id":"NCBITaxon:1068975","l":"Acetobacterium malicum subsp. dehalogenans DSM 11527","na":1,"nb":3,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A52692","Acetobacterium malicum"],["NCBITaxon%3A82116","Acetobacterium malicum subsp. dehalogenans"],["NCBITaxon%3A1068975","Acetobacterium malicum subsp. dehalogenans DSM 11527"]]},{"id":"NCBITaxon:1069073","l":"Haloechinothrix halophila","na":1,"nb":3,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A1069073","Haloechinothrix halophila"],["NCBITaxon%3A3698341","Haloechinothrix halophila 77291"],["NCBITaxon%3A592678","Haloechinothrix halophila YIM 93223"]]},{"id":"NCBITaxon:1069530","l":"Candidatus Paraburkholderia schumanniana","na":3,"nb":1,"a":[["heart-bto-0000562.html","heart"],["mesophyll-bto-0000858.html","mesophyll"],["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A1069530","Candidatus Paraburkholderia schumanniana"]]},{"id":"NCBITaxon:1075399","l":"Blattabacterium sp. (Cryptocercus punctulatus) str. Cpu","na":3,"nb":1,"a":[["abdominal-adipose-tissue-bto-0004041.html","abdominal adipose tissue"],["hindgut-bto-0000510.html","hindgut"],["wood-bto-0005516.html","wood"]],"b":[["NCBITaxon%3A1075399","Blattabacterium sp. (Cryptocercus punctulatus) str. Cpu"]]},{"id":"NCBITaxon:107633","l":"Methylocystis sp. LW5","na":3,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"],["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A107633","Methylocystis sp. LW5"]]},{"id":"NCBITaxon:1077942","l":"Micromonospora kangleipakensis","na":3,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"],["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A1077942","Micromonospora kangleipakensis"]]},{"id":"NCBITaxon:1080179","l":"Burkholderia sp. UYPR1.413","na":3,"nb":1,"a":[["plantation-envo-00000117.html","plantation"],["agricultural-field-envo-00000114.html","agricultural field"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A1080179","Burkholderia sp. UYPR1.413"]]},{"id":"NCBITaxon:108901","l":"Porodaedalea pini","na":3,"nb":1,"a":[["lake-envo-00000020.html","lake"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["organic-material-envo-01000155.html","organic material"]],"b":[["NCBITaxon%3A108901","Porodaedalea pini"]]},{"id":"NCBITaxon:1091045","l":"Cutibacterium acnes subsp. defendens ATCC 11828","na":1,"nb":3,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A1747","Cutibacterium acnes"],["NCBITaxon%3A1905725","Cutibacterium acnes subsp. defendens"],["NCBITaxon%3A1091045","Cutibacterium acnes subsp. defendens ATCC 11828"]]},{"id":"NCBITaxon:109635","l":"Flammula alnicola","na":3,"nb":1,"a":[["lake-envo-00000020.html","lake"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["organic-material-envo-01000155.html","organic material"]],"b":[["NCBITaxon%3A109635","Flammula alnicola"]]},{"id":"NCBITaxon:110505","l":"Mycobacterium heckeshornense","na":3,"nb":1,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["respiratory-airway-uberon-0001005.html","respiratory airway"],["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A110505","Mycobacterium heckeshornense"]]},{"id":"NCBITaxon:110643","l":"Arthrobacter sp. 'SMCC ZAT001'","na":3,"nb":1,"a":[["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"],["temperate-mixed-forest-biome-envo-01000212.html","temperate mixed forest biome"]],"b":[["NCBITaxon%3A110643","Arthrobacter sp. 'SMCC ZAT001'"]]},{"id":"NCBITaxon:110845","l":"Phocicoccus pinnipedialis","na":1,"nb":3,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A2599412","Paracoccus aurantiacus"],["NCBITaxon%3A110845","Phocicoccus pinnipedialis"],["NCBITaxon%3A1812261","Phocicoccus schoeneichii"]]},{"id":"NCBITaxon:111769","l":"Thiothrix unzii","na":3,"nb":1,"a":[["ocean-envo-00000015.html","ocean"],["sea-water-envo-00002149.html","sea water"],["stream-envo-00000023.html","stream"]],"b":[["NCBITaxon%3A111769","Thiothrix unzii"]]},{"id":"NCBITaxon:1118964","l":"Mesomycoplasma hyorhinis SK76","na":3,"nb":1,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"],["prostate-gland-bto-0001129.html","prostate gland"],["prostate-gland-cancer-cell-bto-0001130.html","prostate gland cancer cell"]],"b":[["NCBITaxon%3A1118964","Mesomycoplasma hyorhinis SK76"]]},{"id":"NCBITaxon:1121336","l":"Thermoclostridium stercorarium subsp. thermolacticum DSM 2910","na":1,"nb":3,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A1510","Thermoclostridium stercorarium"],["NCBITaxon%3A29351","Thermoclostridium stercorarium subsp. thermolacticum"],["NCBITaxon%3A1121336","Thermoclostridium stercorarium subsp. thermolacticum DSM 2910"]]},{"id":"NCBITaxon:1121435","l":"Desulfocurvibacter africanus subsp. africanus DSM 2603","na":1,"nb":3,"a":[["fresh-water-envo-00002011.html","fresh water"]],"b":[["NCBITaxon%3A873","Desulfocurvibacter africanus"],["NCBITaxon%3A1511600","Desulfocurvibacter africanus subsp. africanus"],["NCBITaxon%3A1121435","Desulfocurvibacter africanus subsp. africanus DSM 2603"]]},{"id":"NCBITaxon:112234","l":"Chryseobacterium joostei","na":1,"nb":3,"a":[["reservoir-envo-00000025.html","reservoir"]],"b":[["NCBITaxon%3A112234","Chryseobacterium joostei"],["NCBITaxon%3A1255689","Chryseobacterium joostei PCAi_D6.3"],["NCBITaxon%3A1871047","Chryseobacterium sp."]]},{"id":"NCBITaxon:1122921","l":"Paenibacillus massiliensis 2301065 = DSM 16942","na":1,"nb":3,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A225917","Paenibacillus massiliensis"],["NCBITaxon%3A1122921","Paenibacillus massiliensis 2301065 = DSM 16942"],["NCBITaxon%3A2884454","Paenibacillus massiliensis subsp. massiliensis"]]},{"id":"NCBITaxon:1123015","l":"Pseudomonas aeruginosa DSM 50071 = NBRC 12689","na":1,"nb":3,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1123015","Pseudomonas aeruginosa DSM 50071 = NBRC 12689"],["NCBITaxon%3A1236528","Pseudomonas aeruginosa JCM 5962"]]},{"id":"NCBITaxon:1128671","l":"Microvirga arabica","na":1,"nb":3,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A1651218","Delftia deserti"],["NCBITaxon%3A1128671","Microvirga arabica"],["NCBITaxon%3A1243014","Vibrio thalassae"]]},{"id":"NCBITaxon:1134510","l":"Bartonella koehlerae C-29","na":1,"nb":3,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["NCBITaxon%3A92181","Bartonella koehlerae"],["NCBITaxon%3A1134510","Bartonella koehlerae C-29"],["NCBITaxon%3A1819240","Bartonella koehlerae subsp. koehlerae"]]},{"id":"NCBITaxon:1137988","l":"Geodermatophilus tzadiensis","na":3,"nb":1,"a":[["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"],["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A1137988","Geodermatophilus tzadiensis"]]},{"id":"NCBITaxon:114197","l":"Pseudoselenomonas lactilytica","na":1,"nb":3,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A114197","Pseudoselenomonas lactilytica"],["NCBITaxon%3A971","Pseudoselenomonas ruminantium"],["NCBITaxon%3A927704","Selenomonas ruminantium subsp. lactilytica TAM6421"]]},{"id":"NCBITaxon:1147128","l":"Bifidobacterium asteroides PRL2011","na":3,"nb":1,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"],["hindgut-bto-0000510.html","hindgut"],["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["NCBITaxon%3A1147128","Bifidobacterium asteroides PRL2011"]]},{"id":"NCBITaxon:1150460","l":"Bifidobacterium catenulatum subsp. kashiwanohense JCM 15439 = DSM 21854","na":1,"nb":3,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A1686","Bifidobacterium catenulatum"],["NCBITaxon%3A630129","Bifidobacterium catenulatum subsp. kashiwanohense"],["NCBITaxon%3A1150460","Bifidobacterium catenulatum subsp. kashiwanohense JCM 15439 = DSM 21854"]]},{"id":"NCBITaxon:115542","l":"Loigolactobacillus coryniformis subsp. torquens","na":1,"nb":3,"a":[["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A1610","Loigolactobacillus coryniformis"],["NCBITaxon%3A115542","Loigolactobacillus coryniformis subsp. torquens"],["NCBITaxon%3A1423822","Loigolactobacillus coryniformis subsp. torquens DSM 20004 = KCTC 3535"]]},{"id":"NCBITaxon:115778","l":"Leuconostoc gasicomitatum","na":1,"nb":3,"a":[["research-facility-envo-00000469.html","research facility"]],"b":[["NCBITaxon%3A115778","Leuconostoc gasicomitatum"],["NCBITaxon%3A1165892","Leuconostoc gasicomitatum KG16-1"],["NCBITaxon%3A762550","Leuconostoc gasicomitatum LMG 18811"]]},{"id":"NCBITaxon:1159213","l":"Peptostreptococcus canis","na":3,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["dental-plaque-uberon-0016482.html","dental plaque"],["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A1159213","Peptostreptococcus canis"]]},{"id":"NCBITaxon:1159496","l":"Cronobacter dublinensis subsp. lactaridi LMG 23825","na":1,"nb":3,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A413497","Cronobacter dublinensis"],["NCBITaxon%3A413499","Cronobacter dublinensis subsp. lactaridi"],["NCBITaxon%3A1159496","Cronobacter dublinensis subsp. lactaridi LMG 23825"]]},{"id":"NCBITaxon:1159554","l":"Cronobacter dublinensis subsp. dublinensis LMG 23823","na":1,"nb":3,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A413497","Cronobacter dublinensis"],["NCBITaxon%3A413498","Cronobacter dublinensis subsp. dublinensis"],["NCBITaxon%3A1159554","Cronobacter dublinensis subsp. dublinensis LMG 23823"]]},{"id":"NCBITaxon:1159560","l":"Cronobacter dublinensis subsp. lausannensis LMG 23824","na":1,"nb":3,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A413497","Cronobacter dublinensis"],["NCBITaxon%3A413500","Cronobacter dublinensis subsp. lausannensis"],["NCBITaxon%3A1159560","Cronobacter dublinensis subsp. lausannensis LMG 23824"]]},{"id":"NCBITaxon:1159752","l":"Enterococcus lemanii","na":3,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"]],"b":[["NCBITaxon%3A1159752","Enterococcus lemanii"]]},{"id":"NCBITaxon:1159753","l":"Enterococcus eurekensis","na":3,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"]],"b":[["NCBITaxon%3A1159753","Enterococcus eurekensis"]]},{"id":"NCBITaxon:116087","l":"Gallicola barnesae","na":3,"nb":1,"a":[["intestine-environment-envo-2100002.html","intestine environment"],["sludge-envo-00002044.html","sludge"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A116087","Gallicola barnesae"]]},{"id":"NCBITaxon:1169025","l":"Streptomyces pratensis","na":1,"nb":3,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A52258","Streptomyces flavovirens"],["NCBITaxon%3A1169025","Streptomyces pratensis"],["NCBITaxon%3A591167","Streptomyces pratensis ATCC 33331"]]},{"id":"NCBITaxon:1172194","l":"Hydrocarboniphaga effusa AP103","na":1,"nb":3,"a":[["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A243629","Hydrocarboniphaga effusa"],["NCBITaxon%3A1172194","Hydrocarboniphaga effusa AP103"],["NCBITaxon%3A77608","Pseudoalteromonas distincta"]]},{"id":"NCBITaxon:117567","l":"Mycolicibacterium frederiksbergense","na":3,"nb":1,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A117567","Mycolicibacterium frederiksbergense"]]},{"id":"NCBITaxon:117680","l":"Pseudomonas reactans","na":3,"nb":1,"a":[["sea-water-envo-00002149.html","sea water"],["farm-envo-00000078.html","farm"],["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["NCBITaxon%3A117680","Pseudomonas reactans"]]},{"id":"NCBITaxon:1178541","l":"Bacillus safensis FO-36b","na":1,"nb":3,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A561879","Bacillus safensis"],["NCBITaxon%3A1178541","Bacillus safensis FO-36b"],["NCBITaxon%3A2490859","Bacillus safensis subsp. safensis"]]},{"id":"NCBITaxon:118062","l":"Methanobacterium congolense","na":3,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A118062","Methanobacterium congolense"]]},{"id":"NCBITaxon:1188","l":"Tolypothrix sp. PCC 7601","na":1,"nb":3,"a":[["photoreceptor-cell-bto-0001060.html","photoreceptor cell"]],"b":[["NCBITaxon%3A293451","Fremyella diplosiphon Fd33"],["NCBITaxon%3A1188","Tolypothrix sp. PCC 7601"],["NCBITaxon%3A169964","Tolypothrix sp. PCC 7601/1"]]},{"id":"NCBITaxon:1194085","l":"Staphylococcus aureus subsp. aureus SA40","na":3,"nb":1,"a":[["a-549-cell-bto-0000018.html","A-549 cell"],["neutrophil-bto-0000130.html","neutrophil"],["suprachiasmatic-nucleus-bto-0001822.html","suprachiasmatic nucleus"]],"b":[["NCBITaxon%3A1194085","Staphylococcus aureus subsp. aureus SA40"]]},{"id":"NCBITaxon:1201010","l":"Staphylococcus aureus subsp. aureus SA957","na":3,"nb":1,"a":[["a-549-cell-bto-0000018.html","A-549 cell"],["neutrophil-bto-0000130.html","neutrophil"],["suprachiasmatic-nucleus-bto-0001822.html","suprachiasmatic nucleus"]],"b":[["NCBITaxon%3A1201010","Staphylococcus aureus subsp. aureus SA957"]]},{"id":"NCBITaxon:1214102","l":"Mycolicibacterium fortuitum subsp. fortuitum DSM 46621 = ATCC 6841 = JCM 6387","na":1,"nb":3,"a":[["brain-bto-0000142.html","brain"]],"b":[["NCBITaxon%3A1766","Mycolicibacterium fortuitum"],["NCBITaxon%3A144549","Mycolicibacterium fortuitum subsp. fortuitum"],["NCBITaxon%3A1214102","Mycolicibacterium fortuitum subsp. fortuitum DSM 46621 = ATCC 6841 = JCM 6387"]]},{"id":"NCBITaxon:1217420","l":"Lactobacillus delbrueckii subsp. jakobsenii ZN7a-9 = DSM 26046","na":1,"nb":3,"a":[["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A1584","Lactobacillus delbrueckii"],["NCBITaxon%3A1537158","Lactobacillus delbrueckii subsp. jakobsenii"],["NCBITaxon%3A1217420","Lactobacillus delbrueckii subsp. jakobsenii ZN7a-9 = DSM 26046"]]},{"id":"NCBITaxon:121872","l":"Natrinema thermotolerans","na":1,"nb":3,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A121872","Natrinema thermotolerans"],["NCBITaxon%3A1455609","Natrinema thermotolerans A29"],["NCBITaxon%3A1227489","Natrinema thermotolerans DSM 11552"]]},{"id":"NCBITaxon:1218948","l":"Pseudomonas fluorescens PF5","na":3,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["human-construction-envo-00000070.html","human construction"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A1218948","Pseudomonas fluorescens PF5"]]},{"id":"NCBITaxon:1224749","l":"Exiguobacterium sp. ZWU0009","na":3,"nb":1,"a":[["epithelium-bto-0000416.html","epithelium"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"],["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1224749","Exiguobacterium sp. ZWU0009"]]},{"id":"NCBITaxon:122866","l":"Arthrobacter keyseri","na":3,"nb":1,"a":[["farm-envo-00000078.html","farm"],["intestine-environment-envo-2100002.html","intestine environment"],["cropland-biome-envo-01000245.html","cropland biome"]],"b":[["NCBITaxon%3A122866","Arthrobacter keyseri"]]},{"id":"NCBITaxon:1232438","l":"Clostridiales bacterium VE202-01","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232438","Clostridiales bacterium VE202-01"]]},{"id":"NCBITaxon:1232439","l":"Clostridiales bacterium VE202-03","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232439","Clostridiales bacterium VE202-03"]]},{"id":"NCBITaxon:1232440","l":"Hungatella hathewayi VE202-04","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232440","Hungatella hathewayi VE202-04"]]},{"id":"NCBITaxon:1232442","l":"Clostridiales bacterium VE202-06","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232442","Clostridiales bacterium VE202-06"]]},{"id":"NCBITaxon:1232443","l":"Clostridiales bacterium VE202-13","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232443","Clostridiales bacterium VE202-13"]]},{"id":"NCBITaxon:1232444","l":"Clostridiales bacterium VE202-15","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232444","Clostridiales bacterium VE202-15"]]},{"id":"NCBITaxon:1232445","l":"Clostridiales bacterium VE202-16","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232445","Clostridiales bacterium VE202-16"]]},{"id":"NCBITaxon:1232446","l":"Clostridiales bacterium VE202-18","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232446","Clostridiales bacterium VE202-18"]]},{"id":"NCBITaxon:1232447","l":"Clostridiales bacterium VE202-09","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232447","Clostridiales bacterium VE202-09"]]},{"id":"NCBITaxon:1232448","l":"Clostridiales bacterium VE202-07","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232448","Clostridiales bacterium VE202-07"]]},{"id":"NCBITaxon:1232449","l":"Clostridiales bacterium VE202-08","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232449","Clostridiales bacterium VE202-08"]]},{"id":"NCBITaxon:1232452","l":"Clostridiales bacterium VE202-14","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232452","Clostridiales bacterium VE202-14"]]},{"id":"NCBITaxon:1232453","l":"Clostridiales bacterium VE202-21","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232453","Clostridiales bacterium VE202-21"]]},{"id":"NCBITaxon:1232454","l":"Clostridiales bacterium VE202-26","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232454","Clostridiales bacterium VE202-26"]]},{"id":"NCBITaxon:1232457","l":"Clostridiales bacterium VE202-27","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232457","Clostridiales bacterium VE202-27"]]},{"id":"NCBITaxon:1232458","l":"Clostridiales bacterium VE202-29","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232458","Clostridiales bacterium VE202-29"]]},{"id":"NCBITaxon:1232460","l":"Clostridiales bacterium VE202-28","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["regulatory-t-lymphocyte-bto-0004520.html","regulatory T-lymphocyte"],["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1232460","Clostridiales bacterium VE202-28"]]},{"id":"NCBITaxon:1233262","l":"Mycoplasmoides pneumoniae PO1","na":3,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1233262","Mycoplasmoides pneumoniae PO1"]]},{"id":"NCBITaxon:1236540","l":"Prolixibacter bellariivorans JCM 13498","na":1,"nb":3,"a":[["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A314319","Prolixibacter bellariivorans"],["NCBITaxon%3A1408473","Prolixibacter bellariivorans ATCC BAA-1284"],["NCBITaxon%3A1236540","Prolixibacter bellariivorans JCM 13498"]]},{"id":"NCBITaxon:1236904","l":"Mycoplasmoides pneumoniae PI 1428","na":3,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1236904","Mycoplasmoides pneumoniae PI 1428"]]},{"id":"NCBITaxon:1246994","l":"Elizabethkingia anophelis R26","na":1,"nb":3,"a":[["midgut-bto-0000863.html","midgut"]],"b":[["NCBITaxon%3A1117645","Elizabethkingia anophelis"],["NCBITaxon%3A1246994","Elizabethkingia anophelis R26"],["NCBITaxon%3A3047319","Elizabethkingia anophelis subsp. anophelis"]]},{"id":"NCBITaxon:1267000","l":"Metamycoplasma hominis ATCC 27545","na":1,"nb":3,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A2098","Metamycoplasma hominis"],["NCBITaxon%3A347256","Metamycoplasma hominis ATCC 23114"],["NCBITaxon%3A1267000","Metamycoplasma hominis ATCC 27545"]]},{"id":"NCBITaxon:1267545","l":"Pectobacterium carotovorum subsp. carotovorum ICMP 5702","na":1,"nb":3,"a":[["tuber-bto-0001400.html","tuber"]],"b":[["NCBITaxon%3A554","Pectobacterium carotovorum"],["NCBITaxon%3A555","Pectobacterium carotovorum subsp. carotovorum"],["NCBITaxon%3A1267545","Pectobacterium carotovorum subsp. carotovorum ICMP 5702"]]},{"id":"NCBITaxon:1279038","l":"Novispirillum itersonii subsp. itersonii ATCC 12639","na":1,"nb":3,"a":[["pond-envo-00000033.html","pond"]],"b":[["NCBITaxon%3A189","Novispirillum itersonii"],["NCBITaxon%3A180199","Novispirillum itersonii subsp. itersonii"],["NCBITaxon%3A1279038","Novispirillum itersonii subsp. itersonii ATCC 12639"]]},{"id":"NCBITaxon:1281486","l":"Lactococcus formosensis","na":1,"nb":3,"a":[["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A1281486","Lactococcus formosensis"],["NCBITaxon%3A1850438","Lactococcus formosensis subsp. bovis"],["NCBITaxon%3A2906461","Lactococcus formosensis subsp. formosensis"]]},{"id":"NCBITaxon:1282664","l":"Streptococcus oralis subsp. tigurinus AZ_3a","na":1,"nb":3,"a":[["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1077464","Streptococcus oralis subsp. tigurinus"],["NCBITaxon%3A1282664","Streptococcus oralis subsp. tigurinus AZ_3a"]]},{"id":"NCBITaxon:1282665","l":"Streptococcus oralis subsp. tigurinus 1366","na":1,"nb":3,"a":[["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1077464","Streptococcus oralis subsp. tigurinus"],["NCBITaxon%3A1282665","Streptococcus oralis subsp. tigurinus 1366"]]},{"id":"NCBITaxon:1286329","l":"Escherichia coli TOP379","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286329","Escherichia coli TOP379"]]},{"id":"NCBITaxon:1286330","l":"Escherichia coli TOP382-1","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286330","Escherichia coli TOP382-1"]]},{"id":"NCBITaxon:1286331","l":"Escherichia coli TOP382-2","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286331","Escherichia coli TOP382-2"]]},{"id":"NCBITaxon:1286332","l":"Escherichia coli TOP382-3","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286332","Escherichia coli TOP382-3"]]},{"id":"NCBITaxon:1286333","l":"Escherichia coli TOP291","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286333","Escherichia coli TOP291"]]},{"id":"NCBITaxon:1286334","l":"Escherichia coli TOP293-1","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286334","Escherichia coli TOP293-1"]]},{"id":"NCBITaxon:1286335","l":"Escherichia coli TOP293-2","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286335","Escherichia coli TOP293-2"]]},{"id":"NCBITaxon:1286336","l":"Escherichia coli TOP293-3","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286336","Escherichia coli TOP293-3"]]},{"id":"NCBITaxon:1286337","l":"Escherichia coli TOP293-4","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286337","Escherichia coli TOP293-4"]]},{"id":"NCBITaxon:1286338","l":"Escherichia coli TOP498","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286338","Escherichia coli TOP498"]]},{"id":"NCBITaxon:1286339","l":"Escherichia coli TOP550-1","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286339","Escherichia coli TOP550-1"]]},{"id":"NCBITaxon:1286340","l":"Escherichia coli TOP550-2","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286340","Escherichia coli TOP550-2"]]},{"id":"NCBITaxon:1286341","l":"Escherichia coli TOP550-3","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286341","Escherichia coli TOP550-3"]]},{"id":"NCBITaxon:1286342","l":"Escherichia coli TOP550-4","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286342","Escherichia coli TOP550-4"]]},{"id":"NCBITaxon:1286343","l":"Escherichia coli TOP2386","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286343","Escherichia coli TOP2386"]]},{"id":"NCBITaxon:1286344","l":"Escherichia coli TOP2396-1","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286344","Escherichia coli TOP2396-1"]]},{"id":"NCBITaxon:1286345","l":"Escherichia coli TOP2396-2","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286345","Escherichia coli TOP2396-2"]]},{"id":"NCBITaxon:1286346","l":"Escherichia coli TOP2396-3","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286346","Escherichia coli TOP2396-3"]]},{"id":"NCBITaxon:1286347","l":"Escherichia coli TOP2515","na":3,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["urinary-tract-bto-0001244.html","urinary tract"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286347","Escherichia coli TOP2515"]]},{"id":"NCBITaxon:1292038","l":"Cutibacterium acnes PA2","na":3,"nb":1,"a":[["prostate-gland-bto-0001129.html","prostate gland"],["sebaceous-gland-bto-0001980.html","sebaceous gland"],["urethra-bto-0001426.html","urethra"]],"b":[["NCBITaxon%3A1292038","Cutibacterium acnes PA2"]]},{"id":"NCBITaxon:1292372","l":"Cutibacterium avidum TM16","na":3,"nb":1,"a":[["prostate-gland-bto-0001129.html","prostate gland"],["sebaceous-gland-bto-0001980.html","sebaceous gland"],["urethra-bto-0001426.html","urethra"]],"b":[["NCBITaxon%3A1292372","Cutibacterium avidum TM16"]]},{"id":"NCBITaxon:1293054","l":"Halanaerobium saccharolyticum subsp. saccharolyticum DSM 6643","na":1,"nb":3,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A43595","Halanaerobium saccharolyticum"],["NCBITaxon%3A267736","Halanaerobium saccharolyticum subsp. saccharolyticum"],["NCBITaxon%3A1293054","Halanaerobium saccharolyticum subsp. saccharolyticum DSM 6643"]]},{"id":"NCBITaxon:129578","l":"Oceanimonas baumannii","na":1,"nb":3,"a":[["brackish-water-body-envo-01001321.html","brackish water body"]],"b":[["NCBITaxon%3A164546","Cupriavidus taiwanensis"],["NCBITaxon%3A977880","Cupriavidus taiwanensis LMG 19424"],["NCBITaxon%3A129578","Oceanimonas baumannii"]]},{"id":"NCBITaxon:1296536","l":"Enterobacter hormaechei subsp. xiangfangensis","na":1,"nb":3,"a":[["fibroblast-bto-0000452.html","fibroblast"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A158836","Enterobacter hormaechei"],["NCBITaxon%3A1296536","Enterobacter hormaechei subsp. xiangfangensis"]]},{"id":"NCBITaxon:1297579","l":"Fusobacterium nucleatum CC53","na":3,"nb":1,"a":[["colorectum-bto-0001613.html","colorectum"],["gut-mucosa-bto-0000546.html","gut mucosa"],["lymph-node-bto-0000784.html","lymph node"]],"b":[["NCBITaxon%3A1297579","Fusobacterium nucleatum CC53"]]},{"id":"NCBITaxon:1297857","l":"Streptococcus oralis subsp. dentisani 7747","na":1,"nb":3,"a":[["tooth-bto-0000397.html","tooth"]],"b":[["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1458253","Streptococcus oralis subsp. dentisani"],["NCBITaxon%3A1297857","Streptococcus oralis subsp. dentisani 7747"]]},{"id":"NCBITaxon:1298856","l":"Sphingomonas sp. URHD0007","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1298856","Sphingomonas sp. URHD0007"]]},{"id":"NCBITaxon:1298857","l":"Candidatus Solirubrobacter pratensis","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1298857","Candidatus Solirubrobacter pratensis"]]},{"id":"NCBITaxon:1298861","l":"Lysobacter sp. URHA0019","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1298861","Lysobacter sp. URHA0019"]]},{"id":"NCBITaxon:1298862","l":"Caulobacter sp. URHA0033","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1298862","Caulobacter sp. URHA0033"]]},{"id":"NCBITaxon:1298863","l":"Marmoricola sp. URHB0036","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1298863","Marmoricola sp. URHB0036"]]},{"id":"NCBITaxon:1298864","l":"Mycobacterium sp. URHD0025","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1298864","Mycobacterium sp. URHD0025"]]},{"id":"NCBITaxon:1302620","l":"Cellulomonas sp. URHD0024","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1302620","Cellulomonas sp. URHD0024"]]},{"id":"NCBITaxon:1302863","l":"Streptococcus cristatus AS 1.3089","na":1,"nb":3,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["NCBITaxon%3A45634","Streptococcus cristatus"],["NCBITaxon%3A1302863","Streptococcus cristatus AS 1.3089"],["NCBITaxon%3A28037","Streptococcus mitis"]]},{"id":"NCBITaxon:1308539","l":"Klebsiella pneumoniae subsp. pneumoniae ATCC 43816","na":3,"nb":1,"a":[["j-774a-1-cell-bto-0000804.html","J-774A.1 cell"],["macrophage-cell-line-bto-0002278.html","macrophage cell line"],["raw-264-7-cell-bto-0003292.html","RAW-264.7 cell"]],"b":[["NCBITaxon%3A1308539","Klebsiella pneumoniae subsp. pneumoniae ATCC 43816"]]},{"id":"NCBITaxon:131112","l":"Arcanobacterium phocae","na":3,"nb":1,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A131112","Arcanobacterium phocae"]]},{"id":"NCBITaxon:1336208","l":"Roseomonas gilardii subsp. rosea ATCC BAA-691","na":1,"nb":3,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A257708","Roseomonas gilardii"],["NCBITaxon%3A243956","Roseomonas gilardii subsp. rosea"],["NCBITaxon%3A1336208","Roseomonas gilardii subsp. rosea ATCC BAA-691"]]},{"id":"NCBITaxon:134537","l":"Paraburkholderia fungorum","na":1,"nb":3,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["NCBITaxon%3A36773","Burkholderia sp."],["NCBITaxon%3A134537","Paraburkholderia fungorum"],["NCBITaxon%3A1218077","Paraburkholderia fungorum NBRC 102489"]]},{"id":"NCBITaxon:1348655","l":"Lactococcus cremoris subsp. cremoris NBRC 100676","na":1,"nb":3,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"]],"b":[["NCBITaxon%3A1359","Lactococcus cremoris"],["NCBITaxon%3A2816960","Lactococcus cremoris subsp. cremoris"],["NCBITaxon%3A1348655","Lactococcus cremoris subsp. cremoris NBRC 100676"]]},{"id":"NCBITaxon:137357","l":"Ligilactobacillus equi","na":1,"nb":3,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A137357","Ligilactobacillus equi"],["NCBITaxon%3A1392007","Ligilactobacillus equi DPC 6820"],["NCBITaxon%3A1423740","Ligilactobacillus equi DSM 15833 = JCM 10991"]]},{"id":"NCBITaxon:1380346","l":"Streptomyces sp. URHA0041","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1380346","Streptomyces sp. URHA0041"]]},{"id":"NCBITaxon:1380349","l":"Micromonosporaceae bacterium URHE0070","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1380349","Micromonosporaceae bacterium URHE0070"]]},{"id":"NCBITaxon:1380350","l":"Mesorhizobium sp. URHC0008","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1380350","Mesorhizobium sp. URHC0008"]]},{"id":"NCBITaxon:1380351","l":"Mesorhizobium sp. URHB0007","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1380351","Mesorhizobium sp. URHB0007"]]},{"id":"NCBITaxon:1380352","l":"Bradyrhizobium sp. URHA0013","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1380352","Bradyrhizobium sp. URHA0013"]]},{"id":"NCBITaxon:1380353","l":"Geodermatophilaceae bacterium URHB0062","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1380353","Geodermatophilaceae bacterium URHB0062"]]},{"id":"NCBITaxon:1380354","l":"Cellulomonas sp. URHE0023","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1380354","Cellulomonas sp. URHE0023"]]},{"id":"NCBITaxon:1380355","l":"Bradyrhizobium sp. URHD0069","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1380355","Bradyrhizobium sp. URHD0069"]]},{"id":"NCBITaxon:1380356","l":"Blastococcus sp. URHD0036","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1380356","Blastococcus sp. URHD0036"]]},{"id":"NCBITaxon:1380357","l":"Rhodospirillales bacterium URHD0017","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1380357","Rhodospirillales bacterium URHD0017"]]},{"id":"NCBITaxon:1380385","l":"Variovorax sp. URHB0020","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1380385","Variovorax sp. URHB0020"]]},{"id":"NCBITaxon:1380386","l":"Mycobacterium sp. URHB0044","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1380386","Mycobacterium sp. URHB0044"]]},{"id":"NCBITaxon:1380388","l":"Nocardioides sp. URHA0032","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1380388","Nocardioides sp. URHA0032"]]},{"id":"NCBITaxon:1380389","l":"Sphingomonas sp. URHD0057","na":3,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"],["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1380389","Sphingomonas sp. URHD0057"]]},{"id":"NCBITaxon:138073","l":"Candidatus Regiella insecticola","na":1,"nb":3,"a":[["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["NCBITaxon%3A138073","Candidatus Regiella insecticola"],["NCBITaxon%3A1005043","Candidatus Regiella insecticola 5.15"],["NCBITaxon%3A663321","Candidatus Regiella insecticola LSR1"]]},{"id":"NCBITaxon:1387353","l":"Paludisphaera borealis","na":3,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["filament-bto-0000463.html","filament"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A1387353","Paludisphaera borealis"]]},{"id":"NCBITaxon:1389489","l":"Leifsonia xyli subsp. cynodontis DSM 46306","na":1,"nb":3,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A1575","Leifsonia xyli"],["NCBITaxon%3A31966","Leifsonia xyli subsp. cynodontis"],["NCBITaxon%3A1389489","Leifsonia xyli subsp. cynodontis DSM 46306"]]},{"id":"NCBITaxon:1390075","l":"Cronobacter turicensis z508","na":1,"nb":3,"a":[["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A1390075","Cronobacter turicensis z508"],["NCBITaxon%3A357233","Siccibacter turicensis"],["NCBITaxon%3A1388748","Siccibacter turicensis LMG 23730"]]},{"id":"NCBITaxon:1397698","l":"Exiguobacterium artemiae 7-3","na":3,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"],["water-ice-envo-01000277.html","water ice"],["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A1397698","Exiguobacterium artemiae 7-3"]]},{"id":"NCBITaxon:1406823","l":"Franconibacter pulveris 601","na":1,"nb":3,"a":[["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A435910","Franconibacter pulveris"],["NCBITaxon%3A1406823","Franconibacter pulveris 601"],["NCBITaxon%3A1121863","Franconibacter pulveris DSM 19144"]]},{"id":"NCBITaxon:1408286","l":"Parvimonas micra A293","na":3,"nb":1,"a":[["alveolar-bone-bto-0001383.html","alveolar bone"],["gingiva-bto-0000519.html","gingiva"],["tooth-bto-0000397.html","tooth"]],"b":[["NCBITaxon%3A1408286","Parvimonas micra A293"]]},{"id":"NCBITaxon:1408360","l":"Campylobacter jejuni subsp. doylei ATCC 49349","na":1,"nb":3,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A197","Campylobacter jejuni"],["NCBITaxon%3A32021","Campylobacter jejuni subsp. doylei"],["NCBITaxon%3A1408360","Campylobacter jejuni subsp. doylei ATCC 49349"]]},{"id":"NCBITaxon:1413215","l":"Geobacillus thermodenitrificans subsp. thermodenitrificans DSM 465","na":1,"nb":3,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A33940","Geobacillus thermodenitrificans"],["NCBITaxon%3A1511749","Geobacillus thermodenitrificans subsp. thermodenitrificans"],["NCBITaxon%3A1413215","Geobacillus thermodenitrificans subsp. thermodenitrificans DSM 465"]]},{"id":"NCBITaxon:143224","l":"Zobellia uliginosa","na":3,"nb":1,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A143224","Zobellia uliginosa"]]},{"id":"NCBITaxon:1452724","l":"Flavobacterium psychrophilum FPG3","na":1,"nb":3,"a":[["kidney-bto-0000671.html","kidney"]],"b":[["NCBITaxon%3A96345","Flavobacterium psychrophilum"],["NCBITaxon%3A1121894","Flavobacterium psychrophilum DSM 3660 = ATCC 49418"],["NCBITaxon%3A1452724","Flavobacterium psychrophilum FPG3"]]},{"id":"NCBITaxon:1454","l":"Schinkia azotoformans","na":1,"nb":3,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A1454","Schinkia azotoformans"],["NCBITaxon%3A1131731","Schinkia azotoformans LMG 9581"],["NCBITaxon%3A1348973","Schinkia azotoformans MEV2011"]]},{"id":"NCBITaxon:1458","l":"Metabacillus fastidiosus","na":1,"nb":3,"a":[["animal-waste-material-envo-00002276.html","animal waste material"]],"b":[["NCBITaxon%3A1458","Metabacillus fastidiosus"],["NCBITaxon%3A1348628","Metabacillus fastidiosus NBRC 101226"],["NCBITaxon%3A83428","uncultured Bacillus sp."]]},{"id":"NCBITaxon:1482","l":"Virgibacillus halodenitrificans","na":1,"nb":3,"a":[["organic-waste-material-envo-00002873.html","organic waste material"]],"b":[["NCBITaxon%3A1482","Virgibacillus halodenitrificans"],["NCBITaxon%3A1196028","Virgibacillus halodenitrificans 1806"],["NCBITaxon%3A1236975","Virgibacillus halodenitrificans JCM 12304"]]},{"id":"NCBITaxon:149712","l":"Desulfovirga adipica","na":3,"nb":1,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["cultivated-environment-envo-01000311.html","cultivated environment"]],"b":[["NCBITaxon%3A149712","Desulfovirga adipica"]]},{"id":"NCBITaxon:1501329","l":"Oribacterium parvum","na":1,"nb":3,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A1501329","Oribacterium parvum"],["NCBITaxon%3A796943","Oribacterium parvum ACB1"],["NCBITaxon%3A796945","Oribacterium parvum ACB8"]]},{"id":"NCBITaxon:1503","l":"Gottschalkia purinilytica","na":3,"nb":1,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A1503","Gottschalkia purinilytica"]]},{"id":"NCBITaxon:1514140","l":"Trieres chinensis","na":3,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["estuarine-biome-envo-01000020.html","estuarine biome"],["shoreline-envo-00000486.html","shoreline"]],"b":[["NCBITaxon%3A1514140","Trieres chinensis"]]},{"id":"NCBITaxon:151416","l":"Allobosea vestrisii","na":1,"nb":3,"a":[["hospital-envo-00002173.html","hospital"]],"b":[["NCBITaxon%3A151416","Allobosea vestrisii"],["NCBITaxon%3A1212487","Allobosea vestrisii 34635"],["NCBITaxon%3A2665495","Phenylobacterium terrae"]]},{"id":"NCBITaxon:152331","l":"Lentilactobacillus parabuchneri","na":1,"nb":3,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["NCBITaxon%3A152331","Lentilactobacillus parabuchneri"],["NCBITaxon%3A1423784","Lentilactobacillus parabuchneri DSM 5707 = NBRC 107865"],["NCBITaxon%3A264697","Peribacillus muralis"]]},{"id":"NCBITaxon:1530","l":"Clostridium carnis","na":3,"nb":1,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["NCBITaxon%3A1530","Clostridium carnis"]]},{"id":"NCBITaxon:1541063","l":"Prolixibacter denitrificans","na":3,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"],["petroleum-envo-00002984.html","petroleum"],["oil-envo-00002985.html","oil"]],"b":[["NCBITaxon%3A1541063","Prolixibacter denitrificans"]]},{"id":"NCBITaxon:158500","l":"Novosphingobium resinovorum","na":1,"nb":3,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A1495645","Xanthomarina arctica"],["NCBITaxon%3A158500","Novosphingobium resinovorum"],["NCBITaxon%3A284035","Streptomyces lienomycini"]]},{"id":"NCBITaxon:1591","l":"Lactobacillus sp.","na":3,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A1591","Lactobacillus sp."]]},{"id":"NCBITaxon:161156","l":"Thermodesulfobacterium hydrogeniphilum","na":3,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["inlet-envo-00000475.html","inlet"],["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A161156","Thermodesulfobacterium hydrogeniphilum"]]},{"id":"NCBITaxon:161528","l":"Erythrobacter sp. SD-21","na":3,"nb":1,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["NCBITaxon%3A161528","Erythrobacter sp. SD-21"]]},{"id":"NCBITaxon:161879","l":"Corynebacterium kroppenstedtii","na":1,"nb":3,"a":[["breast-bto-0000149.html","breast"]],"b":[["NCBITaxon%3A161879","Corynebacterium kroppenstedtii"],["NCBITaxon%3A645127","Corynebacterium kroppenstedtii DSM 44385"],["NCBITaxon%3A2736648","Corynebacterium kroppenstedtii subsp. demodicis"]]},{"id":"NCBITaxon:1625","l":"Fructilactobacillus sanfranciscensis","na":1,"nb":3,"a":[["cropland-biome-envo-01000245.html","cropland biome"]],"b":[["NCBITaxon%3A1625","Fructilactobacillus sanfranciscensis"],["NCBITaxon%3A1423800","Fructilactobacillus sanfranciscensis DSM 20451"],["NCBITaxon%3A714313","Fructilactobacillus sanfranciscensis TMW 1.1304"]]},{"id":"NCBITaxon:164757","l":"Mycobacterium sp. JLS","na":3,"nb":1,"a":[["superfund-site-envo-00002156.html","Superfund site"],["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A164757","Mycobacterium sp. JLS"]]},{"id":"NCBITaxon:1651218","l":"Delftia deserti","na":1,"nb":3,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A1651218","Delftia deserti"],["NCBITaxon%3A1199156","Hirschia litorea"],["NCBITaxon%3A590593","Iodobacter arcticus"]]},{"id":"NCBITaxon:1657","l":"Actinobaculum suis","na":1,"nb":3,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["NCBITaxon%3A1657","Actinobaculum suis"],["NCBITaxon%3A1408","Bacillus pumilus"],["NCBITaxon%3A29316","Schaalia hyovaginalis"]]},{"id":"NCBITaxon:1683","l":"Bifidobacterium angulatum","na":1,"nb":3,"a":[["brain-bto-0000142.html","brain"]],"b":[["NCBITaxon%3A1683","Bifidobacterium angulatum"],["NCBITaxon%3A518635","Bifidobacterium angulatum DSM 20098 = JCM 7096"],["NCBITaxon%3A1357382","Bifidobacterium angulatum F16_22"]]},{"id":"NCBITaxon:1690","l":"Bifidobacterium pseudolongum subsp. globosum","na":1,"nb":3,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["NCBITaxon%3A1694","Bifidobacterium pseudolongum"],["NCBITaxon%3A1690","Bifidobacterium pseudolongum subsp. globosum"],["NCBITaxon%3A1410605","Bifidobacterium pseudolongum subsp. globosum DSM 20092"]]},{"id":"NCBITaxon:169760","l":"Paenibacillus stellifer","na":3,"nb":1,"a":[["factory-envo-01000536.html","factory"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A169760","Paenibacillus stellifer"]]},{"id":"NCBITaxon:1697779","l":"Clostridia bacterium UC5.1-1F7","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697779","Clostridia bacterium UC5.1-1F7"]]},{"id":"NCBITaxon:1697780","l":"Clostridia bacterium UC5.1-1D2","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697780","Clostridia bacterium UC5.1-1D2"]]},{"id":"NCBITaxon:1697781","l":"Clostridia bacterium UC5.1-2E3","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697781","Clostridia bacterium UC5.1-2E3"]]},{"id":"NCBITaxon:1697782","l":"Clostridia bacterium UC5.1-1A9","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697782","Clostridia bacterium UC5.1-1A9"]]},{"id":"NCBITaxon:1697783","l":"Clostridia bacterium UC5.1-1F8","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697783","Clostridia bacterium UC5.1-1F8"]]},{"id":"NCBITaxon:1697784","l":"Clostridia bacterium UC5.1-1D4","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697784","Clostridia bacterium UC5.1-1D4"]]},{"id":"NCBITaxon:1697785","l":"Clostridia bacterium UC5.1-2D9","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697785","Clostridia bacterium UC5.1-2D9"]]},{"id":"NCBITaxon:1697786","l":"Clostridia bacterium UC5.1-2E1","na":3,"nb":1,"a":[["germ-bto-0000514.html","germ"],["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697786","Clostridia bacterium UC5.1-2E1"]]},{"id":"NCBITaxon:1703","l":"Brevibacterium linens","na":1,"nb":3,"a":[["animal-waste-material-envo-00002276.html","animal waste material"]],"b":[["NCBITaxon%3A273384","Brevibacterium aurantiacum"],["NCBITaxon%3A1703","Brevibacterium linens"],["NCBITaxon%3A1255617","Brevibacterium linens ATCC 9172"]]},{"id":"NCBITaxon:170861","l":"Methanosarcina lacustris","na":1,"nb":3,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A170861","Methanosarcina lacustris"],["NCBITaxon%3A1434111","Methanosarcina lacustris Z-7289"],["NCBITaxon%3A1434112","Methanosarcina lacustris ZS"]]},{"id":"NCBITaxon:171674","l":"Inquilinus limosus","na":1,"nb":3,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"]],"b":[["NCBITaxon%3A171674","Inquilinus limosus"],["NCBITaxon%3A1122125","Inquilinus limosus DSM 16000"],["NCBITaxon%3A1398085","Inquilinus limosus MP06"]]},{"id":"NCBITaxon:1724","l":"Corynebacterium renale","na":3,"nb":1,"a":[["water-body-envo-00000063.html","water body"],["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A1724","Corynebacterium renale"]]},{"id":"NCBITaxon:173364","l":"Brachybacterium sacelli","na":1,"nb":3,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A173364","Brachybacterium sacelli"],["NCBITaxon%3A1756043","Cypionkella sinensis"],["NCBITaxon%3A1636843","Paenibacillus wenxiniae"]]},{"id":"NCBITaxon:173737","l":"Cytophaga sp. MBIC04693","na":3,"nb":1,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["NCBITaxon%3A173737","Cytophaga sp. MBIC04693"]]},{"id":"NCBITaxon:1796616","l":"Blautia pseudococcoides","na":3,"nb":1,"a":[["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["secretion-bto-0002979.html","secretion"]],"b":[["NCBITaxon%3A1796616","Blautia pseudococcoides"]]},{"id":"NCBITaxon:180542","l":"Salinisphaera shabanensis","na":1,"nb":3,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A180542","Salinisphaera shabanensis"],["NCBITaxon%3A1033802","Salinisphaera shabanensis E1L3A"],["NCBITaxon%3A1304276","Salinisphaera shabanensis T35B1"]]},{"id":"NCBITaxon:1810840","l":"Piscirickettsiaceae bacterium NZ-RLO1","na":3,"nb":1,"a":[["bhk-21-cell-bto-0000120.html","BHK-21 cell"],["endothelial-progenitor-cell-bto-0004093.html","endothelial progenitor cell"],["sf-21-cell-bto-0001196.html","SF-21 cell"]],"b":[["NCBITaxon%3A1810840","Piscirickettsiaceae bacterium NZ-RLO1"]]},{"id":"NCBITaxon:183","l":"Leptonema illini","na":1,"nb":3,"a":[["mud-envo-01000001.html","mud"]],"b":[["NCBITaxon%3A183","Leptonema illini"],["NCBITaxon%3A929563","Leptonema illini DSM 21528"],["NCBITaxon%3A330706","Leptonema illini serovar Habaki"]]},{"id":"NCBITaxon:1834196","l":"Lachnoclostridium sp. YL32","na":3,"nb":1,"a":[["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["secretion-bto-0002979.html","secretion"]],"b":[["NCBITaxon%3A1834196","Lachnoclostridium sp. YL32"]]},{"id":"NCBITaxon:1834198","l":"Hungateiclostridiaceae bacterium KB18","na":3,"nb":1,"a":[["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["secretion-bto-0002979.html","secretion"]],"b":[["NCBITaxon%3A1834198","Hungateiclostridiaceae bacterium KB18"]]},{"id":"NCBITaxon:1834205","l":"Burkholderiales bacterium YL45","na":3,"nb":1,"a":[["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["secretion-bto-0002979.html","secretion"]],"b":[["NCBITaxon%3A1834205","Burkholderiales bacterium YL45"]]},{"id":"NCBITaxon:1834207","l":"Erysipelotrichaceae bacterium I46","na":3,"nb":1,"a":[["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["secretion-bto-0002979.html","secretion"]],"b":[["NCBITaxon%3A1834207","Erysipelotrichaceae bacterium I46"]]},{"id":"NCBITaxon:1836","l":"Saccharopolyspora erythraea","na":1,"nb":3,"a":[["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["NCBITaxon%3A1836","Saccharopolyspora erythraea"],["NCBITaxon%3A1382595","Saccharopolyspora erythraea D"],["NCBITaxon%3A405948","Saccharopolyspora erythraea NRRL 2338"]]},{"id":"NCBITaxon:1852","l":"Saccharomonospora viridis","na":1,"nb":3,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A40988","Saccharomonospora azurea"],["NCBITaxon%3A1852","Saccharomonospora viridis"],["NCBITaxon%3A471857","Saccharomonospora viridis DSM 43017"]]},{"id":"NCBITaxon:1871618","l":"Gracilibacillus sp.","na":3,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"],["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["NCBITaxon%3A1871618","Gracilibacillus sp."]]},{"id":"NCBITaxon:1872119","l":"Acidobacterium sp.","na":3,"nb":1,"a":[["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"],["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A1872119","Acidobacterium sp."]]},{"id":"NCBITaxon:1872700","l":"Virgibacillus sp.","na":3,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"],["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["NCBITaxon%3A1872700","Virgibacillus sp."]]},{"id":"NCBITaxon:1874361","l":"Idiomarina sp.","na":3,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"],["saline-water-body-envo-01001319.html","saline water body"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["NCBITaxon%3A1874361","Idiomarina sp."]]},{"id":"NCBITaxon:188906","l":"Jannaschia helgolandensis","na":3,"nb":1,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"],["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["NCBITaxon%3A188906","Jannaschia helgolandensis"]]},{"id":"NCBITaxon:189518","l":"Leptospira interrogans serovar Lai str. 56601","na":3,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A189518","Leptospira interrogans serovar Lai str. 56601"]]},{"id":"NCBITaxon:1896336","l":"Citrobacter sp.","na":3,"nb":1,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A1896336","Citrobacter sp."]]},{"id":"NCBITaxon:191292","l":"Rhodococcus aetherivorans","na":1,"nb":3,"a":[["bcp-1-cell-bto-0002728.html","BCP-1 cell"]],"b":[["NCBITaxon%3A191292","Rhodococcus aetherivorans"],["NCBITaxon%3A1036179","Rhodococcus aetherivorans I24"],["NCBITaxon%3A194249","uncultured Rhodococcus sp."]]},{"id":"NCBITaxon:1935000","l":"Pseudomonas sp. JdFR-91","na":3,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["volcanic-field-envo-00000354.html","volcanic field"],["basalt-envo-01000236.html","basalt"]],"b":[["NCBITaxon%3A1935000","Pseudomonas sp. JdFR-91"]]},{"id":"NCBITaxon:195064","l":"Ectothiorhodospira mobilis","na":3,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["NCBITaxon%3A195064","Ectothiorhodospira mobilis"]]},{"id":"NCBITaxon:2030","l":"Kibdelosporangium aridum","na":1,"nb":3,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A2030","Kibdelosporangium aridum"],["NCBITaxon%3A145995","Kibdelosporangium aridum subsp. aridum"],["NCBITaxon%3A145996","Kibdelosporangium aridum subsp. largum"]]},{"id":"NCBITaxon:203124","l":"Trichodesmium erythraeum IMS101","na":3,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["coastal-water-body-envo-02000049.html","coastal water body"],["marine-neritic-zone-envo-00000206.html","marine neritic zone"]],"b":[["NCBITaxon%3A203124","Trichodesmium erythraeum IMS101"]]},{"id":"NCBITaxon:2087","l":"Anaeroplasma abactoclasticum","na":3,"nb":1,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["pig-manure-envo-00003860.html","pig manure"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["NCBITaxon%3A2087","Anaeroplasma abactoclasticum"]]},{"id":"NCBITaxon:212042","l":"Anaplasma phagocytophilum str. HZ","na":3,"nb":1,"a":[["hl-60-cell-bto-0000738.html","HL-60 cell"],["leukocyte-bto-0000751.html","leukocyte"],["promyelocytic-leukemia-cell-line-bto-0002489.html","promyelocytic leukemia cell line"]],"b":[["NCBITaxon%3A212042","Anaplasma phagocytophilum str. HZ"]]},{"id":"NCBITaxon:2162","l":"Methanobacterium formicicum","na":1,"nb":3,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A2162","Methanobacterium formicicum"],["NCBITaxon%3A1204725","Methanobacterium formicicum DSM 3637"],["NCBITaxon%3A1300163","Methanobacterium formicicum JCM 10132"]]},{"id":"NCBITaxon:216595","l":"Pseudomonas [fluorescens] SBW25","na":3,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["human-construction-envo-00000070.html","human construction"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["NCBITaxon%3A216595","Pseudomonas [fluorescens] SBW25"]]},{"id":"NCBITaxon:216778","l":"Stenotrophomonas rhizophila","na":1,"nb":3,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A216778","Stenotrophomonas rhizophila"],["NCBITaxon%3A1255680","Stenotrophomonas rhizophila PCA13"]]},{"id":"NCBITaxon:220341","l":"Salmonella enterica subsp. enterica serovar Typhi str. CT18","na":3,"nb":1,"a":[["bone-marrow-bto-0000141.html","bone marrow"],["liver-bto-0000759.html","liver"],["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A220341","Salmonella enterica subsp. enterica serovar Typhi str. CT18"]]},{"id":"NCBITaxon:222805","l":"Mycobacterium intracellulare subsp. chimaera","na":1,"nb":3,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["NCBITaxon%3A1767","Mycobacterium intracellulare"],["NCBITaxon%3A222805","Mycobacterium intracellulare subsp. chimaera"],["NCBITaxon%3A1203599","Mycobacterium intracellulare subsp. yongonense"]]},{"id":"NCBITaxon:228603","l":"Hoylesella shahii","na":1,"nb":3,"a":[["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["NCBITaxon%3A228603","Hoylesella shahii"],["NCBITaxon%3A1122991","Hoylesella shahii DSM 15611 = JCM 12083"],["NCBITaxon%3A1410035","Hoylesella shahii HMP_JCVI_SC0182"]]},{"id":"NCBITaxon:228604","l":"Segatella salivae","na":1,"nb":3,"a":[["tundra-biome-envo-01000180.html","tundra biome"]],"b":[["NCBITaxon%3A228604","Segatella salivae"],["NCBITaxon%3A888832","Segatella salivae DSM 15606"],["NCBITaxon%3A1395125","Segatella salivae F0493"]]},{"id":"NCBITaxon:2423","l":"Fervidobacterium islandicum","na":3,"nb":1,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["feather-bto-0000447.html","feather"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A2423","Fervidobacterium islandicum"]]},{"id":"NCBITaxon:243265","l":"Photorhabdus laumondii subsp. laumondii TTO1","na":1,"nb":3,"a":[["carcass-bto-0001965.html","carcass"]],"b":[["NCBITaxon%3A2218628","Photorhabdus laumondii"],["NCBITaxon%3A141679","Photorhabdus laumondii subsp. laumondii"],["NCBITaxon%3A243265","Photorhabdus laumondii subsp. laumondii TTO1"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK 1622","na":3,"nb":1,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["NCBITaxon%3A246197","Myxococcus xanthus DK 1622"]]},{"id":"NCBITaxon:248026","l":"Cupriavidus pinatubonensis","na":1,"nb":3,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A1220023","Halolamina salina"],["NCBITaxon%3A248026","Cupriavidus pinatubonensis"],["NCBITaxon%3A264198","Cupriavidus pinatubonensis JMP134"]]},{"id":"NCBITaxon:250","l":"Chryseobacterium gleum","na":1,"nb":3,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A250","Chryseobacterium gleum"],["NCBITaxon%3A525257","Chryseobacterium gleum ATCC 35910"],["NCBITaxon%3A1871047","Chryseobacterium sp."]]},{"id":"NCBITaxon:257501","l":"Candidatus Chlorotrichoides halophilum","na":3,"nb":1,"a":[["pond-envo-00000033.html","pond"],["saline-evaporation-pond-envo-00000055.html","saline evaporation pond"],["microbial-mat-envo-01000008.html","microbial mat"]],"b":[["NCBITaxon%3A257501","Candidatus Chlorotrichoides halophilum"]]},{"id":"NCBITaxon:257984","l":"Glutamicibacter mysorens","na":1,"nb":3,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A257984","Glutamicibacter mysorens"],["NCBITaxon%3A1216975","Glutamicibacter mysorens NBRC 103060"],["NCBITaxon%3A37929","Glutamicibacter nicotianae"]]},{"id":"NCBITaxon:267736","l":"Halanaerobium saccharolyticum subsp. saccharolyticum","na":1,"nb":3,"a":[["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["NCBITaxon%3A43595","Halanaerobium saccharolyticum"],["NCBITaxon%3A267736","Halanaerobium saccharolyticum subsp. saccharolyticum"],["NCBITaxon%3A1293054","Halanaerobium saccharolyticum subsp. saccharolyticum DSM 6643"]]},{"id":"NCBITaxon:272951","l":"Rickettsia sibirica 246","na":1,"nb":3,"a":[["endothelial-cell-bto-0001176.html","endothelial cell"]],"b":[["NCBITaxon%3A35793","Rickettsia sibirica"],["NCBITaxon%3A272951","Rickettsia sibirica 246"],["NCBITaxon%3A1144281","Rickettsia sibirica subsp. sibirica"]]},{"id":"NCBITaxon:28136","l":"Segatella oulorum","na":1,"nb":3,"a":[["crevice-envo-01000294.html","crevice"]],"b":[["NCBITaxon%3A28136","Segatella oulorum"],["NCBITaxon%3A702438","Segatella oulorum F0390"],["NCBITaxon%3A1236497","Segatella oulorum JCM 14966"]]},{"id":"NCBITaxon:28139","l":"Rikenella microfusus","na":1,"nb":3,"a":[["lagoon-envo-00000038.html","lagoon"]],"b":[["NCBITaxon%3A28139","Rikenella microfusus"],["NCBITaxon%3A880526","Rikenella microfusus DSM 15922"],["NCBITaxon%3A28136","Segatella oulorum"]]},{"id":"NCBITaxon:28232","l":"Geobacter metallireducens","na":1,"nb":3,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A28232","Geobacter metallireducens"],["NCBITaxon%3A269799","Geobacter metallireducens GS-15"],["NCBITaxon%3A691164","Geobacter metallireducens RCH3"]]},{"id":"NCBITaxon:286698","l":"Geobacter psychrophilus","na":3,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["cultivated-environment-envo-01000311.html","cultivated environment"]],"b":[["NCBITaxon%3A286698","Geobacter psychrophilus"]]},{"id":"NCBITaxon:288","l":"Pseudoalteromonas atlantica","na":1,"nb":3,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A1871086","Brevundimonas sp."],["NCBITaxon%3A288","Pseudoalteromonas atlantica"],["NCBITaxon%3A306","Pseudomonas sp."]]},{"id":"NCBITaxon:290402","l":"Clostridium beijerinckii NCIMB 8052","na":1,"nb":3,"a":[["garden-soil-envo-00002263.html","garden soil"]],"b":[["NCBITaxon%3A1488","Clostridium acetobutylicum"],["NCBITaxon%3A272562","Clostridium acetobutylicum ATCC 824"],["NCBITaxon%3A290402","Clostridium beijerinckii NCIMB 8052"]]},{"id":"NCBITaxon:291645","l":"Bacteroides nordii","na":1,"nb":3,"a":[["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["NCBITaxon%3A291645","Bacteroides nordii"],["NCBITaxon%3A997884","Bacteroides nordii CL02T12C05"],["NCBITaxon%3A1203608","Bacteroides nordii WAL 11050 = JCM 12987"]]},{"id":"NCBITaxon:29320","l":"Paenarthrobacter nicotinovorans","na":1,"nb":3,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A29320","Paenarthrobacter nicotinovorans"],["NCBITaxon%3A1304876","Paenarthrobacter nicotinovorans 231Sha2.1M6"],["NCBITaxon%3A1292042","Paenarthrobacter nicotinovorans 26Cvi1.1E"]]},{"id":"NCBITaxon:29321","l":"Corynebacterium otitidis","na":1,"nb":3,"a":[["middle-ear-bto-0002099.html","middle ear"]],"b":[["NCBITaxon%3A29321","Corynebacterium otitidis"],["NCBITaxon%3A883169","Corynebacterium otitidis ATCC 51513"],["NCBITaxon%3A1978491","Marinococcus sp."]]},{"id":"NCBITaxon:29370","l":"Lacrimispora sphenoides","na":1,"nb":3,"a":[["emulsion-envo-00010506.html","emulsion"]],"b":[["NCBITaxon%3A29370","Lacrimispora sphenoides"],["NCBITaxon%3A1298920","Lacrimispora sphenoides DSM 4024"],["NCBITaxon%3A1297793","Lacrimispora sphenoides JCM 1415"]]},{"id":"NCBITaxon:29419","l":"Helicobacter canis","na":1,"nb":3,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"]],"b":[["NCBITaxon%3A29419","Helicobacter canis"],["NCBITaxon%3A1357399","Helicobacter canis NCTC 12740"],["NCBITaxon%3A218","Helicobacter sp."]]},{"id":"NCBITaxon:29535","l":"Cytophaga sp.","na":3,"nb":1,"a":[["bay-envo-00000032.html","bay"],["lagoon-envo-00000038.html","lagoon"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["NCBITaxon%3A29535","Cytophaga sp."]]},{"id":"NCBITaxon:295419","l":"Rubellimicrobium thermophilum","na":1,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A2509153","Rubellimicrobium sp."],["NCBITaxon%3A295419","Rubellimicrobium thermophilum"],["NCBITaxon%3A1123069","Rubellimicrobium thermophilum DSM 16684"]]},{"id":"NCBITaxon:297246","l":"Legionella pneumophila str. Paris","na":3,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"],["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A297246","Legionella pneumophila str. Paris"]]},{"id":"NCBITaxon:313589","l":"Janibacter sp. HTCC2649","na":3,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["bulk-soil-envo-00005802.html","bulk soil"],["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A313589","Janibacter sp. HTCC2649"]]},{"id":"NCBITaxon:314260","l":"Parvularcula bermudensis HTCC2503","na":3,"nb":1,"a":[["small-river-biome-envo-00000890.html","small river biome"],["stromatolite-mat-envo-00002157.html","stromatolite mat"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["NCBITaxon%3A314260","Parvularcula bermudensis HTCC2503"]]},{"id":"NCBITaxon:317936","l":"Nostoc sp. PCC 7107","na":3,"nb":1,"a":[["bar-envo-00000167.html","bar"],["pond-envo-00000033.html","pond"],["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A317936","Nostoc sp. PCC 7107"]]},{"id":"NCBITaxon:31994","l":"Beijerinckia indica subsp. indica","na":1,"nb":3,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A533","Beijerinckia indica"],["NCBITaxon%3A31994","Beijerinckia indica subsp. indica"],["NCBITaxon%3A395963","Beijerinckia indica subsp. indica ATCC 9039"]]},{"id":"NCBITaxon:31998","l":"Methylobacterium radiotolerans","na":1,"nb":3,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A410","Methylobacterium organophilum"],["NCBITaxon%3A31998","Methylobacterium radiotolerans"],["NCBITaxon%3A426355","Methylobacterium radiotolerans JCM 2831"]]},{"id":"NCBITaxon:322509","l":"Dietzia kunjamensis","na":1,"nb":3,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A322509","Dietzia kunjamensis"],["NCBITaxon%3A2792887","Dietzia kunjamensis subsp. kunjamensis"],["NCBITaxon%3A498198","Dietzia kunjamensis subsp. schimae"]]},{"id":"NCBITaxon:326522","l":"Neisseria animaloris","na":3,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["foot-bto-0000476.html","foot"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"]],"b":[["NCBITaxon%3A326522","Neisseria animaloris"]]},{"id":"NCBITaxon:33036","l":"Anaerococcus tetradius","na":1,"nb":3,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["NCBITaxon%3A33034","Anaerococcus prevotii"],["NCBITaxon%3A33036","Anaerococcus tetradius"],["NCBITaxon%3A525255","Anaerococcus tetradius ATCC 35098"]]},{"id":"NCBITaxon:33932","l":"Sutcliffiella cohnii","na":1,"nb":3,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["NCBITaxon%3A33932","Sutcliffiella cohnii"],["NCBITaxon%3A1314751","Sutcliffiella cohnii NBRC 15565"],["NCBITaxon%3A83428","uncultured Bacillus sp."]]},{"id":"NCBITaxon:340047","l":"Mycoplasma capricolum subsp. capricolum ATCC 27343","na":1,"nb":3,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A2095","Mycoplasma capricolum"],["NCBITaxon%3A40479","Mycoplasma capricolum subsp. capricolum"],["NCBITaxon%3A340047","Mycoplasma capricolum subsp. capricolum ATCC 27343"]]},{"id":"NCBITaxon:341202","l":"Williamsia faeni","na":3,"nb":1,"a":[["park-envo-00000562.html","park"],["grassland-biome-envo-01000177.html","grassland biome"],["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A341202","Williamsia faeni"]]},{"id":"NCBITaxon:35756","l":"Corynebacterium pilosum","na":1,"nb":3,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A35756","Corynebacterium pilosum"],["NCBITaxon%3A1121366","Corynebacterium pilosum DSM 20521 = CIP 103422"],["NCBITaxon%3A28172","Vibrio metschnikovii"]]},{"id":"NCBITaxon:35787","l":"Limosilactobacillus pontis","na":1,"nb":3,"a":[["pig-manure-envo-00003860.html","pig manure"]],"b":[["NCBITaxon%3A1591","Lactobacillus sp."],["NCBITaxon%3A35787","Limosilactobacillus pontis"],["NCBITaxon%3A1423794","Limosilactobacillus pontis DSM 8475"]]},{"id":"NCBITaxon:35816","l":"Pelobacter acidigallici","na":3,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A35816","Pelobacter acidigallici"]]},{"id":"NCBITaxon:35817","l":"Helicobacter heilmannii","na":1,"nb":3,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["NCBITaxon%3A35817","Helicobacter heilmannii"],["NCBITaxon%3A1216962","Helicobacter heilmannii ASB1.4"],["NCBITaxon%3A28204","Helicobacter heilmannii type 1"]]},{"id":"NCBITaxon:361581","l":"Tenacibaculum discolor","na":3,"nb":1,"a":[["kidney-bto-0000671.html","kidney"],["sludge-envo-00002044.html","sludge"],["fumarole-envo-00000216.html","fumarole"]],"b":[["NCBITaxon%3A361581","Tenacibaculum discolor"]]},{"id":"NCBITaxon:363265","l":"Leyella stercorea","na":1,"nb":3,"a":[["pig-manure-envo-00003860.html","pig manure"]],"b":[["NCBITaxon%3A363265","Leyella stercorea"],["NCBITaxon%3A1263103","Leyella stercorea CAG:629"],["NCBITaxon%3A1002367","Leyella stercorea DSM 18206"]]},{"id":"NCBITaxon:36746","l":"Pseudomonas cichorii","na":1,"nb":3,"a":[["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["NCBITaxon%3A2488639","Pectobacterium versatile"],["NCBITaxon%3A36746","Pseudomonas cichorii"],["NCBITaxon%3A1441629","Pseudomonas cichorii JBC1"]]},{"id":"NCBITaxon:36841","l":"Terrisporobacter glycolicus","na":1,"nb":3,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["NCBITaxon%3A36841","Terrisporobacter glycolicus"],["NCBITaxon%3A1121315","Terrisporobacter glycolicus ATCC 14880 = DSM 1288"],["NCBITaxon%3A1125703","Terrisporobacter glycolicus CC88H"]]},{"id":"NCBITaxon:371731","l":"Rhodobacter ferrooxidans","na":3,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["large-river-biome-envo-00000887.html","large river biome"],["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A371731","Rhodobacter ferrooxidans"]]},{"id":"NCBITaxon:386415","l":"Clostridium novyi NT","na":3,"nb":1,"a":[["myocardium-bto-0000901.html","myocardium"],["reticuloendothelial-system-bto-0001174.html","reticuloendothelial system"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A386415","Clostridium novyi NT"]]},{"id":"NCBITaxon:391904","l":"Bifidobacterium longum subsp. infantis ATCC 15697 = JCM 1222 = DSM 20088","na":1,"nb":3,"a":[["breast-bto-0000149.html","breast"]],"b":[["NCBITaxon%3A216816","Bifidobacterium longum"],["NCBITaxon%3A1682","Bifidobacterium longum subsp. infantis"],["NCBITaxon%3A391904","Bifidobacterium longum subsp. infantis ATCC 15697 = JCM 1222 = DSM 20088"]]},{"id":"NCBITaxon:393131","l":"Listeria monocytogenes J2818","na":3,"nb":1,"a":[["bay-envo-00000032.html","bay"],["freshwater-environment-envo-01000306.html","freshwater environment"],["phreatic-zone-envo-00000329.html","phreatic zone"]],"b":[["NCBITaxon%3A393131","Listeria monocytogenes J2818"]]},{"id":"NCBITaxon:395963","l":"Beijerinckia indica subsp. indica ATCC 9039","na":1,"nb":3,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["NCBITaxon%3A533","Beijerinckia indica"],["NCBITaxon%3A31994","Beijerinckia indica subsp. indica"],["NCBITaxon%3A395963","Beijerinckia indica subsp. indica ATCC 9039"]]},{"id":"NCBITaxon:396","l":"Rhizobium phaseoli","na":1,"nb":3,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A396","Rhizobium phaseoli"],["NCBITaxon%3A526949","Rhizobium phaseoli Brasil 5"],["NCBITaxon%3A1128399","Rhizobium phaseoli Ch24-10"]]},{"id":"NCBITaxon:396595","l":"Thioalkalivibrio sp. K90mix","na":3,"nb":1,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"],["steppe-envo-00000262.html","steppe"]],"b":[["NCBITaxon%3A396595","Thioalkalivibrio sp. K90mix"]]},{"id":"NCBITaxon:39693","l":"Mycolicibacterium porcinum","na":3,"nb":1,"a":[["fibroblast-bto-0000452.html","fibroblast"],["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A39693","Mycolicibacterium porcinum"]]},{"id":"NCBITaxon:399742","l":"Enterobacter sp. 638","na":3,"nb":1,"a":[["vasculature-uberon-0002049.html","vasculature"],["part-of-plant-habitatmech-madin-25325947e2.html","part of plant"],["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A399742","Enterobacter sp. 638"]]},{"id":"NCBITaxon:40223","l":"Methylophaga thalassica","na":1,"nb":3,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A568897","Ectothiorhodospira salini"],["NCBITaxon%3A40223","Methylophaga thalassica"],["NCBITaxon%3A1026882","Methylophaga thalassica MP"]]},{"id":"NCBITaxon:404589","l":"Anaeromyxobacter sp. Fw109-5","na":3,"nb":1,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["NCBITaxon%3A404589","Anaeromyxobacter sp. Fw109-5"]]},{"id":"NCBITaxon:416261","l":"Desulfobacterium sp. AK1","na":3,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["shoreline-envo-00000486.html","shoreline"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A416261","Desulfobacterium sp. AK1"]]},{"id":"NCBITaxon:42234","l":"Streptomyces acidiscabies","na":1,"nb":3,"a":[["a10-cell-bto-0002196.html","A10 cell"]],"b":[["NCBITaxon%3A42234","Streptomyces acidiscabies"],["NCBITaxon%3A1116232","Streptomyces acidiscabies 84-104"],["NCBITaxon%3A1930","Streptomyces scabiei"]]},{"id":"NCBITaxon:426117","l":"Methylobacterium sp. 4-46","na":3,"nb":1,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A426117","Methylobacterium sp. 4-46"]]},{"id":"NCBITaxon:428406","l":"Ralstonia pickettii 12D","na":1,"nb":3,"a":[["chemically-enriched-sediment-envo-00002114.html","chemically enriched sediment"]],"b":[["NCBITaxon%3A329","Ralstonia pickettii"],["NCBITaxon%3A428406","Ralstonia pickettii 12D"],["NCBITaxon%3A1218114","Ralstonia pickettii NBRC 102503"]]},{"id":"NCBITaxon:43768","l":"Corynebacterium matruchotii","na":1,"nb":3,"a":[["archeological-site-envo-00000564.html","archeological site"]],"b":[["NCBITaxon%3A43768","Corynebacterium matruchotii"],["NCBITaxon%3A553207","Corynebacterium matruchotii ATCC 14266"],["NCBITaxon%3A566549","Corynebacterium matruchotii ATCC 33806"]]},{"id":"NCBITaxon:439495","l":"Pseudovibrio sp. JE062","na":3,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["germ-cell-bto-0000535.html","germ cell"],["desert-sand-envo-00005800.html","desert sand"]],"b":[["NCBITaxon%3A439495","Pseudovibrio sp. JE062"]]},{"id":"NCBITaxon:44008","l":"Enterococcus cecorum","na":1,"nb":3,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["NCBITaxon%3A44008","Enterococcus cecorum"],["NCBITaxon%3A1121864","Enterococcus cecorum DSM 20682 = ATCC 43198"],["NCBITaxon%3A1352","Enterococcus faecium"]]},{"id":"NCBITaxon:442899","l":"Halolactibacillus alkaliphilus","na":3,"nb":1,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["alkaline-water-envo-01000357.html","alkaline water"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A442899","Halolactibacillus alkaliphilus"]]},{"id":"NCBITaxon:445335","l":"Clostridium botulinum NCTC 2916","na":3,"nb":1,"a":[["sea-envo-00000016.html","sea"],["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A445335","Clostridium botulinum NCTC 2916"]]},{"id":"NCBITaxon:446468","l":"Nocardiopsis dassonvillei subsp. dassonvillei DSM 43111","na":1,"nb":3,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A2014","Nocardiopsis dassonvillei"],["NCBITaxon%3A568208","Nocardiopsis dassonvillei subsp. dassonvillei"],["NCBITaxon%3A446468","Nocardiopsis dassonvillei subsp. dassonvillei DSM 43111"]]},{"id":"NCBITaxon:45","l":"Melittangium lichenicola","na":3,"nb":1,"a":[["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A45","Melittangium lichenicola"]]},{"id":"NCBITaxon:457391","l":"Bacteroides sp. 3_1_33FAA","na":3,"nb":1,"a":[["bay-envo-00000032.html","bay"],["saline-water-envo-00002010.html","saline water"],["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["NCBITaxon%3A457391","Bacteroides sp. 3_1_33FAA"]]},{"id":"NCBITaxon:457429","l":"Streptomyces pristinaespiralis ATCC 25486","na":1,"nb":3,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A38300","Streptomyces pristinaespiralis"],["NCBITaxon%3A457429","Streptomyces pristinaespiralis ATCC 25486"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:463","l":"Fluoribacter dumoffii","na":1,"nb":3,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A463","Fluoribacter dumoffii"],["NCBITaxon%3A1094715","Fluoribacter dumoffii NY 23"],["NCBITaxon%3A1094714","Fluoribacter dumoffii Tex-KL"]]},{"id":"NCBITaxon:471472","l":"Chlamydia trachomatis L2/434/Bu","na":1,"nb":3,"a":[["lymph-node-bto-0000784.html","lymph node"]],"b":[["NCBITaxon%3A471472","Chlamydia trachomatis L2/434/Bu"],["NCBITaxon%3A1262673","Chlamydia trachomatis L2/434/Bu(f)"],["NCBITaxon%3A1263406","Chlamydia trachomatis L2/434/Bu(i)"]]},{"id":"NCBITaxon:471858","l":"Helicobacter magdeburgensis","na":1,"nb":3,"a":[["ht-29-cell-bto-0000182.html","HT-29 cell"]],"b":[["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"],["NCBITaxon%3A471858","Helicobacter magdeburgensis"]]},{"id":"NCBITaxon:47312","l":"Tsukamurella pulmonis","na":3,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"],["tuberculosis-habitatmech-bacdive-e5d21f85b7.html","Tuberculosis"]],"b":[["NCBITaxon%3A47312","Tsukamurella pulmonis"]]},{"id":"NCBITaxon:47920","l":"Acidovorax delafieldii","na":1,"nb":3,"a":[["bone-element-uberon-0001474.html","bone element"]],"b":[["NCBITaxon%3A47920","Acidovorax delafieldii"],["NCBITaxon%3A573060","Acidovorax delafieldii 2AN"],["NCBITaxon%3A80878","Acidovorax temperans"]]},{"id":"NCBITaxon:50741","l":"Marinobacter sp.","na":3,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"],["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["NCBITaxon%3A50741","Marinobacter sp."]]},{"id":"NCBITaxon:515440","l":"Oceanotoga teriensis","na":3,"nb":1,"a":[["ocean-trench-envo-00000275.html","ocean trench"],["oil-well-envo-01000003.html","oil well"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A515440","Oceanotoga teriensis"]]},{"id":"NCBITaxon:517424","l":"Salsuginibacillus halophilus","na":3,"nb":1,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["alkaline-water-envo-01000357.html","alkaline water"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A517424","Salsuginibacillus halophilus"]]},{"id":"NCBITaxon:520487","l":"Brucella suis bv. 3 str. 686","na":3,"nb":1,"a":[["city-envo-00000856.html","city"],["orchard-envo-00000115.html","orchard"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["NCBITaxon%3A520487","Brucella suis bv. 3 str. 686"]]},{"id":"NCBITaxon:53364","l":"Brevibacterium otitidis","na":1,"nb":3,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"]],"b":[["NCBITaxon%3A53364","Brevibacterium otitidis"],["NCBITaxon%3A1855725","Mucilaginibacter antarcticus"],["NCBITaxon%3A875043","Rheinheimera tilapiae"]]},{"id":"NCBITaxon:539","l":"Eikenella corrodens","na":1,"nb":3,"a":[["archeological-site-envo-00000564.html","archeological site"]],"b":[["NCBITaxon%3A539","Eikenella corrodens"],["NCBITaxon%3A546274","Eikenella corrodens ATCC 23834"],["NCBITaxon%3A1073362","Eikenella corrodens CC92I"]]},{"id":"NCBITaxon:553171","l":"Prevotella bivia JCVIHMP010","na":1,"nb":3,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A28125","Prevotella bivia"],["NCBITaxon%3A868129","Prevotella bivia DSM 20514"],["NCBITaxon%3A553171","Prevotella bivia JCVIHMP010"]]},{"id":"NCBITaxon:55565","l":"Actinomyces graevenitzii","na":1,"nb":3,"a":[["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["NCBITaxon%3A55565","Actinomyces graevenitzii"],["NCBITaxon%3A435830","Actinomyces graevenitzii C83"],["NCBITaxon%3A1321817","Actinomyces graevenitzii F0530"]]},{"id":"NCBITaxon:555970","l":"Bifidobacterium animalis subsp. lactis DSM 10140","na":1,"nb":3,"a":[["intestinal-epithelium-bto-0000781.html","intestinal epithelium"]],"b":[["NCBITaxon%3A28025","Bifidobacterium animalis"],["NCBITaxon%3A302911","Bifidobacterium animalis subsp. lactis"],["NCBITaxon%3A555970","Bifidobacterium animalis subsp. lactis DSM 10140"]]},{"id":"NCBITaxon:557433","l":"Limosilactobacillus reuteri subsp. reuteri JCM 1112 = DSM 20016","na":1,"nb":3,"a":[["caco-2-cell-bto-0000195.html","CACO-2 cell"]],"b":[["NCBITaxon%3A1598","Limosilactobacillus reuteri"],["NCBITaxon%3A557436","Limosilactobacillus reuteri subsp. reuteri"],["NCBITaxon%3A557433","Limosilactobacillus reuteri subsp. reuteri JCM 1112 = DSM 20016"]]},{"id":"NCBITaxon:566552","l":"Bifidobacterium catenulatum DSM 16992 = JCM 1194 = LMG 11043","na":1,"nb":3,"a":[["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A1686","Bifidobacterium catenulatum"],["NCBITaxon%3A566552","Bifidobacterium catenulatum DSM 16992 = JCM 1194 = LMG 11043"],["NCBITaxon%3A2981616","Bifidobacterium catenulatum subsp. catenulatum"]]},{"id":"NCBITaxon:570156","l":"Pseudoalteromonas lipolytica","na":1,"nb":3,"a":[["leaf-lamina-bto-0000719.html","leaf lamina"]],"b":[["NCBITaxon%3A570156","Pseudoalteromonas lipolytica"],["NCBITaxon%3A1315275","Pseudoalteromonas lipolytica LMEB 39"],["NCBITaxon%3A1452721","Pseudoalteromonas lipolytica SCSIO 04301"]]},{"id":"NCBITaxon:573062","l":"Thermoanaerobacter sp. X513","na":3,"nb":1,"a":[["ocean-trench-envo-00000275.html","ocean trench"],["drainage-basin-envo-00000291.html","drainage basin"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A573062","Thermoanaerobacter sp. X513"]]},{"id":"NCBITaxon:583346","l":"Clostridium kluyveri NBRC 12016","na":1,"nb":3,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A1534","Clostridium kluyveri"],["NCBITaxon%3A431943","Clostridium kluyveri DSM 555"],["NCBITaxon%3A583346","Clostridium kluyveri NBRC 12016"]]},{"id":"NCBITaxon:586220","l":"Leuconostoc mesenteroides subsp. cremoris ATCC 19254","na":1,"nb":3,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"]],"b":[["NCBITaxon%3A1245","Leuconostoc mesenteroides"],["NCBITaxon%3A33965","Leuconostoc mesenteroides subsp. cremoris"],["NCBITaxon%3A586220","Leuconostoc mesenteroides subsp. cremoris ATCC 19254"]]},{"id":"NCBITaxon:588","l":"Providencia stuartii","na":1,"nb":3,"a":[["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["NCBITaxon%3A588","Providencia stuartii"],["NCBITaxon%3A471874","Providencia stuartii ATCC 25827"],["NCBITaxon%3A1157951","Providencia stuartii MRSN 2154"]]},{"id":"NCBITaxon:595452","l":"Rhodopirellula sp. SM49","na":3,"nb":1,"a":[["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"]],"b":[["NCBITaxon%3A595452","Rhodopirellula sp. SM49"]]},{"id":"NCBITaxon:59919","l":"Prochlorococcus marinus subsp. pastoris str. CCMP1986","na":3,"nb":1,"a":[["marginal-sea-biome-envo-01000046.html","marginal sea biome"],["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"],["sea-envo-00000016.html","sea"]],"b":[["NCBITaxon%3A59919","Prochlorococcus marinus subsp. pastoris str. CCMP1986"]]},{"id":"NCBITaxon:647","l":"Aeromonas sp.","na":3,"nb":1,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["cave-water-habitatmech-bacdive-9ae6cfc178.html","Cave-water"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["NCBITaxon%3A647","Aeromonas sp."]]},{"id":"NCBITaxon:647227","l":"Chlamydia muridarum str. Weiss","na":3,"nb":1,"a":[["cervical-adenocarcinoma-cell-bto-0003165.html","cervical adenocarcinoma cell"],["fibroblast-bto-0000452.html","fibroblast"],["hela-229-cell-bto-0005030.html","HeLa-229 cell"]],"b":[["NCBITaxon%3A647227","Chlamydia muridarum str. Weiss"]]},{"id":"NCBITaxon:658457","l":"Ectopseudomonas composti","na":3,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["NCBITaxon%3A658457","Ectopseudomonas composti"]]},{"id":"NCBITaxon:663606","l":"Actinomycetospora chibensis","na":1,"nb":3,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A663606","Actinomycetospora chibensis"],["NCBITaxon%3A173364","Brachybacterium sacelli"],["NCBITaxon%3A42895","Enterobacter sp."]]},{"id":"NCBITaxon:665913","l":"Mixta calida","na":1,"nb":3,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["NCBITaxon%3A665913","Mixta calida"],["NCBITaxon%3A1440767","Mixta calida B021323"],["NCBITaxon%3A665914","Mixta gaviniae"]]},{"id":"NCBITaxon:667127","l":"Klebsiella pneumoniae subsp. rhinoscleromatis ATCC 13884","na":1,"nb":3,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A39831","Klebsiella pneumoniae subsp. rhinoscleromatis"],["NCBITaxon%3A667127","Klebsiella pneumoniae subsp. rhinoscleromatis ATCC 13884"]]},{"id":"NCBITaxon:66976","l":"Legionella pneumophila serogroup 1","na":1,"nb":3,"a":[["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A866628","Legionella pneumophila 130b"],["NCBITaxon%3A423212","Legionella pneumophila 2300/99 Alcoy"],["NCBITaxon%3A66976","Legionella pneumophila serogroup 1"]]},{"id":"NCBITaxon:671218","l":"Alloprevotella rava","na":1,"nb":3,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A671218","Alloprevotella rava"],["NCBITaxon%3A524034","Alloprevotella rava F0020"],["NCBITaxon%3A679199","Alloprevotella rava F0323"]]},{"id":"NCBITaxon:68242","l":"Streptomyces natalensis","na":1,"nb":3,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A68242","Streptomyces natalensis"],["NCBITaxon%3A1240678","Streptomyces natalensis ATCC 27448"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:68895","l":"Cupriavidus basilensis","na":1,"nb":3,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A68895","Cupriavidus basilensis"],["NCBITaxon%3A1200775","Cupriavidus basilensis B-8"],["NCBITaxon%3A1127483","Cupriavidus basilensis OR16"]]},{"id":"NCBITaxon:69218","l":"Enterobacter cancerogenus","na":1,"nb":3,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["NCBITaxon%3A69218","Enterobacter cancerogenus"],["NCBITaxon%3A500639","Enterobacter cancerogenus ATCC 35316"],["NCBITaxon%3A1260277","Enterobacter cancerogenus YZ1"]]},{"id":"NCBITaxon:69373","l":"Curtobacterium pusillum","na":3,"nb":1,"a":[["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["seedling-bto-0001228.html","seedling"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A69373","Curtobacterium pusillum"]]},{"id":"NCBITaxon:698936","l":"Sinorhizobium meliloti BL225C","na":3,"nb":1,"a":[["agricultural-field-envo-00000114.html","agricultural field"],["agricultural-soil-envo-00002259.html","agricultural soil"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A698936","Sinorhizobium meliloti BL225C"]]},{"id":"NCBITaxon:69974","l":"Mesorhizobium plurifarium","na":1,"nb":3,"a":[["hair-follicle-outer-root-sheath-bto-0003969.html","hair follicle outer root sheath"]],"b":[["NCBITaxon%3A69974","Mesorhizobium plurifarium"],["NCBITaxon%3A198626","Mesorhizobium plurifarium subsp. americum"],["NCBITaxon%3A391","Rhizobium sp."]]},{"id":"NCBITaxon:70775","l":"Pseudomonas plecoglossicida","na":1,"nb":3,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A70775","Pseudomonas plecoglossicida"],["NCBITaxon%3A1330531","Pseudomonas plecoglossicida NB2011"],["NCBITaxon%3A1215115","Pseudomonas plecoglossicida NBRC 103162 = DSM 15088"]]},{"id":"NCBITaxon:716","l":"Actinobacillus suis","na":1,"nb":3,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["NCBITaxon%3A716","Actinobacillus suis"],["NCBITaxon%3A743972","Actinobacillus suis ATCC 33415"],["NCBITaxon%3A696748","Actinobacillus suis H91-0380"]]},{"id":"NCBITaxon:716541","l":"Enterobacter cloacae subsp. cloacae ATCC 13047","na":1,"nb":3,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A336306","Enterobacter cloacae subsp. cloacae"],["NCBITaxon%3A716541","Enterobacter cloacae subsp. cloacae ATCC 13047"]]},{"id":"NCBITaxon:736","l":"Haemophilus paraphrohaemolyticus","na":1,"nb":3,"a":[["trunk-uberon-0002100.html","trunk"]],"b":[["NCBITaxon%3A729","Haemophilus parainfluenzae"],["NCBITaxon%3A736","Haemophilus paraphrohaemolyticus"],["NCBITaxon%3A1095743","Haemophilus paraphrohaemolyticus HK411"]]},{"id":"NCBITaxon:74109","l":"Photobacterium profundum","na":1,"nb":3,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A74109","Photobacterium profundum"],["NCBITaxon%3A314280","Photobacterium profundum 3TCK"],["NCBITaxon%3A298386","Photobacterium profundum SS9"]]},{"id":"NCBITaxon:78344","l":"Bifidobacterium pullorum subsp. gallinarum","na":1,"nb":3,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"]],"b":[["NCBITaxon%3A78448","Bifidobacterium pullorum"],["NCBITaxon%3A78344","Bifidobacterium pullorum subsp. gallinarum"],["NCBITaxon%3A1437602","Bifidobacterium pullorum subsp. gallinarum DSM 20670"]]},{"id":"NCBITaxon:79880","l":"Shouchella clausii","na":1,"nb":3,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A79880","Shouchella clausii"],["NCBITaxon%3A66692","Shouchella clausii KSM-K16"],["NCBITaxon%3A83428","uncultured Bacillus sp."]]},{"id":"NCBITaxon:79967","l":"Erwinia pyrifoliae","na":1,"nb":3,"a":[["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["NCBITaxon%3A79967","Erwinia pyrifoliae"],["NCBITaxon%3A644651","Erwinia pyrifoliae DSM 12163"],["NCBITaxon%3A634499","Erwinia pyrifoliae Ep1/96"]]},{"id":"NCBITaxon:82116","l":"Acetobacterium malicum subsp. dehalogenans","na":1,"nb":3,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A52692","Acetobacterium malicum"],["NCBITaxon%3A82116","Acetobacterium malicum subsp. dehalogenans"],["NCBITaxon%3A1068975","Acetobacterium malicum subsp. dehalogenans DSM 11527"]]},{"id":"NCBITaxon:824","l":"Campylobacter gracilis","na":1,"nb":3,"a":[["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A824","Campylobacter gracilis"],["NCBITaxon%3A553220","Campylobacter gracilis RM3268"],["NCBITaxon%3A203","Campylobacter rectus"]]},{"id":"NCBITaxon:83453","l":"Melittangium boletus","na":1,"nb":3,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["NCBITaxon%3A83452","Melittangium alboraceum"],["NCBITaxon%3A83453","Melittangium boletus"],["NCBITaxon%3A1294270","Melittangium boletus DSM 14713"]]},{"id":"NCBITaxon:86665","l":"Halalkalibacterium halodurans","na":1,"nb":3,"a":[["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A86665","Halalkalibacterium halodurans"],["NCBITaxon%3A272558","Halalkalibacterium halodurans C-125"],["NCBITaxon%3A83428","uncultured Bacillus sp."]]},{"id":"NCBITaxon:880156","l":"Photorhabdus heterorhabditis","na":1,"nb":3,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A880156","Photorhabdus heterorhabditis"],["NCBITaxon%3A2805094","Photorhabdus heterorhabditis subsp. aluminescens"],["NCBITaxon%3A2805095","Photorhabdus heterorhabditis subsp. heterorhabditis"]]},{"id":"NCBITaxon:91353","l":"Campylobacter hyointestinalis subsp. lawsonii","na":1,"nb":3,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["NCBITaxon%3A198","Campylobacter hyointestinalis"],["NCBITaxon%3A91353","Campylobacter hyointestinalis subsp. lawsonii"],["NCBITaxon%3A1031752","Campylobacter hyointestinalis subsp. lawsonii CCUG 27631"]]},{"id":"NCBITaxon:94122","l":"Shewanella sp. ANA-3","na":3,"nb":1,"a":[["alkaline-water-envo-01000357.html","alkaline water"],["brackish-estuary-envo-00002137.html","brackish estuary"],["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A94122","Shewanella sp. ANA-3"]]},{"id":"NCBITaxon:97478","l":"Limosilactobacillus mucosae","na":1,"nb":3,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["NCBITaxon%3A97478","Limosilactobacillus mucosae"],["NCBITaxon%3A1423771","Limosilactobacillus mucosae DSM 13345"],["NCBITaxon%3A1130798","Limosilactobacillus mucosae LM1"]]},{"id":"NCBITaxon:989","l":"Marinilabilia salmonicolor","na":1,"nb":3,"a":[["lagoon-envo-00000038.html","lagoon"]],"b":[["NCBITaxon%3A989","Marinilabilia salmonicolor"],["NCBITaxon%3A60555","Marinilabilia salmonicolor biovar Agarovorans"],["NCBITaxon%3A1168289","Marinilabilia salmonicolor JCM 21150"]]},{"id":"NCBITaxon:996","l":"Flavobacterium columnare","na":1,"nb":3,"a":[["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["NCBITaxon%3A996","Flavobacterium columnare"],["NCBITaxon%3A1041826","Flavobacterium columnare ATCC 49512"],["NCBITaxon%3A1218111","Flavobacterium columnare NBRC 100251 = ATCC 23463"]]},{"id":"NCBITaxon:100052","l":"Delitschia winteri","na":2,"nb":1,"a":[["desert-biome-envo-01000179.html","desert biome"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A100052","Delitschia winteri"]]},{"id":"NCBITaxon:1000562","l":"Streptococcus phocae subsp. salmonis","na":1,"nb":2,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A119224","Streptococcus phocae"],["NCBITaxon%3A1000562","Streptococcus phocae subsp. salmonis"]]},{"id":"NCBITaxon:1000565","l":"Methyloversatilis universalis FAM5","na":1,"nb":2,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A378211","Methyloversatilis universalis"],["NCBITaxon%3A1000565","Methyloversatilis universalis FAM5"]]},{"id":"NCBITaxon:1000566","l":"Halosaccharopolyspora lacisalsi","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1000566","Halosaccharopolyspora lacisalsi"]]},{"id":"NCBITaxon:1000588","l":"Streptococcus mitis bv. 2 str. SK95","na":1,"nb":2,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1000588","Streptococcus mitis bv. 2 str. SK95"],["NCBITaxon%3A1306","Streptococcus sp."]]},{"id":"NCBITaxon:1000590","l":"Staphylococcus epidermidis 14.1.R1.SE","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A1282","Staphylococcus epidermidis"],["NCBITaxon%3A1000590","Staphylococcus epidermidis 14.1.R1.SE"]]},{"id":"NCBITaxon:1001","l":"Garritya polymorpha","na":2,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A1001","Garritya polymorpha"]]},{"id":"NCBITaxon:100133","l":"Sporobacterium olearium","na":1,"nb":2,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A100133","Sporobacterium olearium"],["NCBITaxon%3A1123283","Sporobacterium olearium DSM 12504"]]},{"id":"NCBITaxon:1001534","l":"Francisella tularensis subsp. tularensis TI0902","na":1,"nb":2,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001534","Francisella tularensis subsp. tularensis TI0902"],["NCBITaxon%3A1001542","Francisella tularensis subsp. tularensis TIGB03"]]},{"id":"NCBITaxon:100176","l":"Papillibacter cinnamivorans","na":1,"nb":2,"a":[["cecum-bto-0000166.html","cecum"]],"b":[["NCBITaxon%3A100176","Papillibacter cinnamivorans"],["NCBITaxon%3A1122930","Papillibacter cinnamivorans DSM 12816"]]},{"id":"NCBITaxon:1001994","l":"Nitrosarchaeum koreense MY1","na":1,"nb":2,"a":[["plant-bto-0001481.html","plant"]],"b":[["NCBITaxon%3A1088740","Nitrosarchaeum koreense"],["NCBITaxon%3A1001994","Nitrosarchaeum koreense MY1"]]},{"id":"NCBITaxon:1002340","l":"Leisingera sp. ANG1","na":2,"nb":1,"a":[["gland-bto-0000522.html","gland"],["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1002340","Leisingera sp. ANG1"]]},{"id":"NCBITaxon:1002689","l":"Occallatibacter riparius","na":2,"nb":1,"a":[["watercourse-envo-00000029.html","watercourse"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A1002689","Occallatibacter riparius"]]},{"id":"NCBITaxon:1003","l":"Thermoflexibacter ruber","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A1003","Thermoflexibacter ruber"]]},{"id":"NCBITaxon:1003091","l":"Methylobacterium thuringiense","na":1,"nb":2,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A409","Methylobacterium sp."],["NCBITaxon%3A1003091","Methylobacterium thuringiense"]]},{"id":"NCBITaxon:1003092","l":"Methylobacterium trifolii","na":1,"nb":2,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A409","Methylobacterium sp."],["NCBITaxon%3A1003092","Methylobacterium trifolii"]]},{"id":"NCBITaxon:1003110","l":"Micromonospora maris","na":1,"nb":2,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1003110","Micromonospora maris"],["NCBITaxon%3A263358","Micromonospora maris AB-18-032"]]},{"id":"NCBITaxon:1003191","l":"Salmonella enterica subsp. enterica serovar Tennessee str. TXSC_TXSC08-19","na":2,"nb":1,"a":[["scale-bto-0005055.html","scale"],["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A1003191","Salmonella enterica subsp. enterica serovar Tennessee str. TXSC_TXSC08-19"]]},{"id":"NCBITaxon:1003192","l":"Salmonella enterica subsp. enterica serovar Tennessee str. TXSC_TXSC08-21","na":2,"nb":1,"a":[["scale-bto-0005055.html","scale"],["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A1003192","Salmonella enterica subsp. enterica serovar Tennessee str. TXSC_TXSC08-21"]]},{"id":"NCBITaxon:1004","l":"Chitinophaga sancti","na":1,"nb":2,"a":[["plant-bto-0001481.html","plant"]],"b":[["NCBITaxon%3A1004","Chitinophaga sancti"],["NCBITaxon%3A1121282","Chitinophaga sancti DSM 784"]]},{"id":"NCBITaxon:1004304","l":"Hydrotalea sandarakina","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A1004304","Hydrotalea sandarakina"]]},{"id":"NCBITaxon:100468","l":"Schleiferilactobacillus perolens","na":1,"nb":2,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A100468","Schleiferilactobacillus perolens"],["NCBITaxon%3A1423792","Schleiferilactobacillus perolens DSM 12744"]]},{"id":"NCBITaxon:1005","l":"Flexibacter sp.","na":2,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A1005","Flexibacter sp."]]},{"id":"NCBITaxon:1005705","l":"Streptococcus infantis SK1076","na":1,"nb":2,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1005705","Streptococcus infantis SK1076"],["NCBITaxon%3A28037","Streptococcus mitis"]]},{"id":"NCBITaxon:1005740","l":"Aminivibrio pyruvatiphilus","na":2,"nb":1,"a":[["soil-envo-00001998.html","soil"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A1005740","Aminivibrio pyruvatiphilus"]]},{"id":"NCBITaxon:1005926","l":"Flagellimonas taeanensis","na":2,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"],["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["NCBITaxon%3A1005926","Flagellimonas taeanensis"]]},{"id":"NCBITaxon:1005941","l":"Planococcus halocryophilus Or1","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A1215089","Planococcus halocryophilus"],["NCBITaxon%3A1005941","Planococcus halocryophilus Or1"]]},{"id":"NCBITaxon:1005996","l":"Klebsiella planticola ATCC 33531","na":1,"nb":2,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A575","Klebsiella planticola"],["NCBITaxon%3A1005996","Klebsiella planticola ATCC 33531"]]},{"id":"NCBITaxon:1005999","l":"Leminorella grimontii ATCC 33999 = DSM 5078","na":1,"nb":2,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A82981","Leminorella grimontii"],["NCBITaxon%3A1005999","Leminorella grimontii ATCC 33999 = DSM 5078"]]},{"id":"NCBITaxon:1006576","l":"Defluviitoga tunisiensis","na":2,"nb":1,"a":[["factory-envo-01000536.html","factory"],["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A1006576","Defluviitoga tunisiensis"]]},{"id":"NCBITaxon:1007096","l":"Oscillibacter ruminantium GH1","na":1,"nb":2,"a":[["fiber-bto-0000450.html","fiber"]],"b":[["NCBITaxon%3A1263547","Oscillibacter ruminantium"],["NCBITaxon%3A1007096","Oscillibacter ruminantium GH1"]]},{"id":"NCBITaxon:1007097","l":"Gordonia caeni","na":2,"nb":1,"a":[["sludge-envo-00002044.html","sludge"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A1007097","Gordonia caeni"]]},{"id":"NCBITaxon:1007109","l":"alpha proteobacterium SCGC AAA076-C03","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1007109","alpha proteobacterium SCGC AAA076-C03"]]},{"id":"NCBITaxon:1007110","l":"alpha proteobacterium SCGC AAA076-E06","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1007110","alpha proteobacterium SCGC AAA076-E06"]]},{"id":"NCBITaxon:1007111","l":"alpha proteobacterium SCGC AAA158-B04","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1007111","alpha proteobacterium SCGC AAA158-B04"]]},{"id":"NCBITaxon:1007112","l":"alpha proteobacterium SCGC AAA158-M15","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1007112","alpha proteobacterium SCGC AAA158-M15"]]},{"id":"NCBITaxon:1007113","l":"alpha proteobacterium SCGC AAA160-J14","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1007113","alpha proteobacterium SCGC AAA160-J14"]]},{"id":"NCBITaxon:1007114","l":"gamma proteobacterium SCGC AAA076-D02","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1007114","gamma proteobacterium SCGC AAA076-D02"]]},{"id":"NCBITaxon:1007115","l":"gamma proteobacterium SCGC AAA076-D13","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1007115","gamma proteobacterium SCGC AAA076-D13"]]},{"id":"NCBITaxon:1007116","l":"gamma proteobacterium SCGC AAA076-E13","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1007116","gamma proteobacterium SCGC AAA076-E13"]]},{"id":"NCBITaxon:1007117","l":"gamma proteobacterium SCGC AAA076-F14","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1007117","gamma proteobacterium SCGC AAA076-F14"]]},{"id":"NCBITaxon:1007118","l":"gamma proteobacterium SCGC AAA076-P09","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1007118","gamma proteobacterium SCGC AAA076-P09"]]},{"id":"NCBITaxon:1007119","l":"gamma proteobacterium SCGC AAA076-P13","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1007119","gamma proteobacterium SCGC AAA076-P13"]]},{"id":"NCBITaxon:1007120","l":"gamma proteobacterium SCGC AAA160-D02","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1007120","gamma proteobacterium SCGC AAA160-D02"]]},{"id":"NCBITaxon:1007676","l":"Companilactobacillus ginsenosidimutans","na":2,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A1007676","Companilactobacillus ginsenosidimutans"]]},{"id":"NCBITaxon:1008452","l":"Streptococcus mitis SK1073","na":1,"nb":2,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1008452","Streptococcus mitis SK1073"],["NCBITaxon%3A1303","Streptococcus oralis"]]},{"id":"NCBITaxon:1008453","l":"Streptococcus mitis SK1080","na":1,"nb":2,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1008453","Streptococcus mitis SK1080"],["NCBITaxon%3A1313","Streptococcus pneumoniae"]]},{"id":"NCBITaxon:1008454","l":"Staphylococcus epidermidis FS1","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A1282","Staphylococcus epidermidis"],["NCBITaxon%3A1008454","Staphylococcus epidermidis FS1"]]},{"id":"NCBITaxon:1009370","l":"Acetonema longum DSM 6540","na":1,"nb":2,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A2374","Acetonema longum"],["NCBITaxon%3A1009370","Acetonema longum DSM 6540"]]},{"id":"NCBITaxon:1009412","l":"Flavobacterium sp. SCGC AAA160-P02","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1009412","Flavobacterium sp. SCGC AAA160-P02"]]},{"id":"NCBITaxon:1009413","l":"Verrucomicrobia bacterium SCGC AAA164-A08","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1009413","Verrucomicrobia bacterium SCGC AAA164-A08"]]},{"id":"NCBITaxon:1009414","l":"Verrucomicrobia bacterium SCGC AAA164-B23","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1009414","Verrucomicrobia bacterium SCGC AAA164-B23"]]},{"id":"NCBITaxon:1009415","l":"Verrucomicrobia bacterium SCGC AAA164-E04","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1009415","Verrucomicrobia bacterium SCGC AAA164-E04"]]},{"id":"NCBITaxon:1009416","l":"Verrucomicrobia bacterium SCGC AAA164-I21","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1009416","Verrucomicrobia bacterium SCGC AAA164-I21"]]},{"id":"NCBITaxon:1009418","l":"Verrucomicrobia bacterium SCGC AAA164-M04","na":2,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1009418","Verrucomicrobia bacterium SCGC AAA164-M04"]]},{"id":"NCBITaxon:1009420","l":"Verrucomicrobia bacterium SCGC AAA164-O14","na":2,"nb":1,"a":[["inlet-envo-00000475.html","inlet"],["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1009420","Verrucomicrobia bacterium SCGC AAA164-O14"]]},{"id":"NCBITaxon:1009464","l":"Gardnerella vaginalis HMP9231","na":1,"nb":2,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A309120","Dialister micraerophilus"],["NCBITaxon%3A1009464","Gardnerella vaginalis HMP9231"]]},{"id":"NCBITaxon:1009856","l":"Buchnera aphidicola str. USDA (Myzus persicae)","na":2,"nb":1,"a":[["phloem-bto-0001058.html","phloem"],["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1009856","Buchnera aphidicola str. USDA (Myzus persicae)"]]},{"id":"NCBITaxon:1009857","l":"Buchnera aphidicola str. W106 (Myzus persicae)","na":2,"nb":1,"a":[["phloem-bto-0001058.html","phloem"],["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1009857","Buchnera aphidicola str. W106 (Myzus persicae)"]]},{"id":"NCBITaxon:1009858","l":"Buchnera aphidicola str. G002 (Myzus persicae)","na":2,"nb":1,"a":[["phloem-bto-0001058.html","phloem"],["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1009858","Buchnera aphidicola str. G002 (Myzus persicae)"]]},{"id":"NCBITaxon:1009859","l":"Buchnera aphidicola str. F009 (Myzus persicae)","na":2,"nb":1,"a":[["phloem-bto-0001058.html","phloem"],["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1009859","Buchnera aphidicola str. F009 (Myzus persicae)"]]},{"id":"NCBITaxon:101489","l":"Xylanimonas pachnodae","na":1,"nb":2,"a":[["plant-bto-0001481.html","plant"]],"b":[["NCBITaxon%3A1305855","Xylanimicrobium pachnodae JCM 13526 = NBRC 107786"],["NCBITaxon%3A101489","Xylanimonas pachnodae"]]},{"id":"NCBITaxon:1017184","l":"Camelimonas abortus","na":2,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A1017184","Camelimonas abortus"]]},{"id":"NCBITaxon:102129","l":"Leptolyngbya sp. PCC 7375","na":2,"nb":1,"a":[["undersea-feature-envo-00000104.html","undersea feature"],["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A102129","Leptolyngbya sp. PCC 7375"]]},{"id":"NCBITaxon:1027360","l":"Edwardsiella ictaluri ATCC 33202","na":1,"nb":2,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A67780","Edwardsiella ictaluri"],["NCBITaxon%3A1027360","Edwardsiella ictaluri ATCC 33202"]]},{"id":"NCBITaxon:1027371","l":"Gordonia alkanivorans NBRC 16433","na":1,"nb":2,"a":[["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A84096","Gordonia alkanivorans"],["NCBITaxon%3A1027371","Gordonia alkanivorans NBRC 16433"]]},{"id":"NCBITaxon:1027633","l":"Enteractinococcus coprophilus","na":2,"nb":1,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A1027633","Enteractinococcus coprophilus"]]},{"id":"NCBITaxon:1028307","l":"Klebsiella aerogenes KCTC 2190","na":1,"nb":2,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A548","Klebsiella aerogenes"],["NCBITaxon%3A1028307","Klebsiella aerogenes KCTC 2190"]]},{"id":"NCBITaxon:1028566","l":"Sulfolobus acidocaldarius N8","na":1,"nb":2,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A2285","Sulfolobus acidocaldarius"],["NCBITaxon%3A1028566","Sulfolobus acidocaldarius N8"]]},{"id":"NCBITaxon:1028742","l":"Pontixanthobacter gangjinensis","na":2,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"],["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["NCBITaxon%3A1028742","Pontixanthobacter gangjinensis"]]},{"id":"NCBITaxon:1029756","l":"Hyphomicrobium nitrativorans NL23","na":1,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A1427356","Hyphomicrobium nitrativorans"],["NCBITaxon%3A1029756","Hyphomicrobium nitrativorans NL23"]]},{"id":"NCBITaxon:1030841","l":"Neisseria wadsworthii 9715","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A607711","Neisseria wadsworthii"],["NCBITaxon%3A1030841","Neisseria wadsworthii 9715"]]},{"id":"NCBITaxon:1030843","l":"Porphyromonas gingivalis TDC60","na":1,"nb":2,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A837","Porphyromonas gingivalis"],["NCBITaxon%3A1030843","Porphyromonas gingivalis TDC60"]]},{"id":"NCBITaxon:1031537","l":"Bremerella cremea","na":2,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A1031537","Bremerella cremea"]]},{"id":"NCBITaxon:1031538","l":"Neptunomonas concharum","na":2,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A1031538","Neptunomonas concharum"]]},{"id":"NCBITaxon:1031542","l":"Campylobacter volucris","na":1,"nb":2,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A1031542","Campylobacter volucris"],["NCBITaxon%3A580033","Campylobacter volucris LMG 24379"]]},{"id":"NCBITaxon:1031564","l":"Campylobacter insulaenigrae NCTC 12927","na":1,"nb":2,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A260714","Campylobacter insulaenigrae"],["NCBITaxon%3A1031564","Campylobacter insulaenigrae NCTC 12927"]]},{"id":"NCBITaxon:1031739","l":"Campylobacter helveticus CCUG 30566","na":1,"nb":2,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["NCBITaxon%3A28898","Campylobacter helveticus"],["NCBITaxon%3A1031739","Campylobacter helveticus CCUG 30566"]]},{"id":"NCBITaxon:1031746","l":"Campylobacter hyointestinalis subsp. hyointestinalis LMG 9260","na":1,"nb":2,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A198","Campylobacter hyointestinalis"],["NCBITaxon%3A1031746","Campylobacter hyointestinalis subsp. hyointestinalis LMG 9260"]]},{"id":"NCBITaxon:1032238","l":"Malaciobacter mytili LMG 24559","na":1,"nb":2,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A603050","Malaciobacter mytili"],["NCBITaxon%3A1032238","Malaciobacter mytili LMG 24559"]]},{"id":"NCBITaxon:1032240","l":"Aliarcobacter thereius LMG 24486","na":1,"nb":2,"a":[["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A544718","Aliarcobacter thereius"],["NCBITaxon%3A1032240","Aliarcobacter thereius LMG 24486"]]},{"id":"NCBITaxon:103232","l":"Streptomyces ipomoeae","na":1,"nb":2,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A103232","Streptomyces ipomoeae"],["NCBITaxon%3A698759","Streptomyces ipomoeae 91-03"]]},{"id":"NCBITaxon:1032476","l":"Nonomuraea soli","na":2,"nb":1,"a":[["soil-envo-00001998.html","soil"],["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A1032476","Nonomuraea soli"]]},{"id":"NCBITaxon:1032623","l":"Otariodibacter oris","na":2,"nb":1,"a":[["mouth-environment-envo-08000002.html","mouth environment"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A1032623","Otariodibacter oris"]]},{"id":"NCBITaxon:1033802","l":"Salinisphaera shabanensis E1L3A","na":1,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A180542","Salinisphaera shabanensis"],["NCBITaxon%3A1033802","Salinisphaera shabanensis E1L3A"]]},{"id":"NCBITaxon:1033806","l":"Halorhabdus tiamatea SARL4B","na":1,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A430914","Halorhabdus tiamatea"],["NCBITaxon%3A1033806","Halorhabdus tiamatea SARL4B"]]},{"id":"NCBITaxon:1033810","l":"Haloplasma contractile SSD-17B","na":1,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A471825","Haloplasma contractile"],["NCBITaxon%3A1033810","Haloplasma contractile SSD-17B"]]},{"id":"NCBITaxon:1033854","l":"Thioalkalivibrio sulfidiphilus","na":1,"nb":2,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1033854","Thioalkalivibrio sulfidiphilus"],["NCBITaxon%3A396588","Thioalkalivibrio sulfidiphilus HL-EbGr7"]]},{"id":"NCBITaxon:1034807","l":"Flavobacterium branchiophilum FL-15","na":2,"nb":1,"a":[["gill-bto-0000518.html","gill"],["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1034807","Flavobacterium branchiophilum FL-15"]]},{"id":"NCBITaxon:1035187","l":"Streptococcus mitis SK569","na":1,"nb":2,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A28037","Streptococcus mitis"],["NCBITaxon%3A1035187","Streptococcus mitis SK569"]]},{"id":"NCBITaxon:1035188","l":"Haemophilus pittmaniae HK 85","na":1,"nb":2,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A249188","Haemophilus pittmaniae"],["NCBITaxon%3A1035188","Haemophilus pittmaniae HK 85"]]},{"id":"NCBITaxon:1035194","l":"Aggregatibacter actinomycetemcomitans Y4","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A714","Aggregatibacter actinomycetemcomitans"],["NCBITaxon%3A1035194","Aggregatibacter actinomycetemcomitans Y4"]]},{"id":"NCBITaxon:1035196","l":"Peptostreptococcus anaerobius VPI 4330 = DSM 2949","na":1,"nb":2,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A1261","Peptostreptococcus anaerobius"],["NCBITaxon%3A1035196","Peptostreptococcus anaerobius VPI 4330 = DSM 2949"]]},{"id":"NCBITaxon:1035839","l":"Haemophilus sputorum CCUG 13788","na":1,"nb":2,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A1078480","Haemophilus sputorum"],["NCBITaxon%3A1035839","Haemophilus sputorum CCUG 13788"]]},{"id":"NCBITaxon:1037911","l":"Pseudomonas fluorescens A506","na":2,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A1037911","Pseudomonas fluorescens A506"]]},{"id":"NCBITaxon:1038856","l":"Planococcus plakortidis","na":2,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"],["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1038856","Planococcus plakortidis"]]},{"id":"NCBITaxon:1038858","l":"Azorhizobium doebereinerae UFLA1-100","na":1,"nb":2,"a":[["plant-bto-0001481.html","plant"]],"b":[["NCBITaxon%3A281091","Azorhizobium doebereinerae"],["NCBITaxon%3A1038858","Azorhizobium doebereinerae UFLA1-100"]]},{"id":"NCBITaxon:1038867","l":"Bradyrhizobium sp. WSM3983","na":2,"nb":1,"a":[["plant-bto-0001481.html","plant"],["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A1038867","Bradyrhizobium sp. WSM3983"]]},{"id":"NCBITaxon:1038929","l":"Streptomyces xinghaiensis S187","na":1,"nb":2,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1038928","Streptomyces xinghaiensis"],["NCBITaxon%3A1038929","Streptomyces xinghaiensis S187"]]},{"id":"NCBITaxon:104087","l":"Pseudomonas frederiksbergensis","na":2,"nb":1,"a":[["ocean-envo-00000015.html","ocean"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A104087","Pseudomonas frederiksbergensis"]]},{"id":"NCBITaxon:1040985","l":"Mesorhizobium sp. WSM2561","na":2,"nb":1,"a":[["agricultural-field-envo-00000114.html","agricultural field"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A1040985","Mesorhizobium sp. WSM2561"]]},{"id":"NCBITaxon:1040987","l":"Mesorhizobium sp. WSM3626","na":2,"nb":1,"a":[["mountain-envo-00000081.html","mountain"],["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A1040987","Mesorhizobium sp. WSM3626"]]},{"id":"NCBITaxon:104100","l":"Acetobacter lovaniensis","na":1,"nb":2,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A104100","Acetobacter lovaniensis"],["NCBITaxon%3A1307909","Acetobacter lovaniensis NRIC 0474"]]},{"id":"NCBITaxon:104101","l":"Acetobacter indonesiensis","na":1,"nb":2,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A104101","Acetobacter indonesiensis"],["NCBITaxon%3A1307908","Acetobacter indonesiensis NRIC 0313"]]},{"id":"NCBITaxon:1041146","l":"Rhizobium sullae WSM1592","na":2,"nb":1,"a":[["agricultural-field-envo-00000114.html","agricultural field"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A1041146","Rhizobium sullae WSM1592"]]},{"id":"NCBITaxon:1041151","l":"Sinorhizobium meliloti 4H41","na":2,"nb":1,"a":[["joint-bto-0001686.html","joint"],["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A1041151","Sinorhizobium meliloti 4H41"]]},{"id":"NCBITaxon:1041152","l":"Sinorhizobium meliloti CIAM1775","na":2,"nb":1,"a":[["marginal-sea-biome-envo-01000046.html","marginal sea biome"],["sea-envo-00000016.html","sea"]],"b":[["NCBITaxon%3A1041152","Sinorhizobium meliloti CIAM1775"]]},{"id":"NCBITaxon:1041504","l":"Candidatus Arthromitus sp. SFB-rat-Yit","na":2,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1041504","Candidatus Arthromitus sp. SFB-rat-Yit"]]},{"id":"NCBITaxon:1041809","l":"Candidatus Arthromitus sp. SFB-mouse-Yit","na":2,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1041809","Candidatus Arthromitus sp. SFB-mouse-Yit"]]},{"id":"NCBITaxon:1041826","l":"Flavobacterium columnare ATCC 49512","na":1,"nb":2,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A996","Flavobacterium columnare"],["NCBITaxon%3A1041826","Flavobacterium columnare ATCC 49512"]]},{"id":"NCBITaxon:1042","l":"Erythrobacter sp.","na":2,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A1042","Erythrobacter sp."]]},{"id":"NCBITaxon:1042321","l":"Ureaplasma miroungigenitalium","na":2,"nb":1,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A1042321","Ureaplasma miroungigenitalium"]]},{"id":"NCBITaxon:1043206","l":"Acidiphilium sp. PM","na":1,"nb":2,"a":[["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A527","Acidiphilium sp."],["NCBITaxon%3A1043206","Acidiphilium sp. PM"]]},{"id":"NCBITaxon:1045012","l":"Acetivibrio clariflavus 4-2a","na":2,"nb":1,"a":[["compost-envo-00002170.html","compost"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A1045012","Acetivibrio clariflavus 4-2a"]]},{"id":"NCBITaxon:1045317","l":"Sphingomonas lutea","na":1,"nb":2,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A1045317","Sphingomonas lutea"],["NCBITaxon%3A3096157","Sphingomonas sandaracina"]]},{"id":"NCBITaxon:1045776","l":"Kutzneria buriramensis","na":2,"nb":1,"a":[["forested-area-envo-00000111.html","forested area"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A1045776","Kutzneria buriramensis"]]},{"id":"NCBITaxon:104662","l":"Chitinophaga japonensis","na":1,"nb":2,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A104662","Chitinophaga japonensis"],["NCBITaxon%3A1121281","Chitinophaga japonensis DSM 13484"]]},{"id":"NCBITaxon:1046624","l":"Lactococcus lactis subsp. lactis IO-1","na":1,"nb":2,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1358","Lactococcus lactis"],["NCBITaxon%3A1046624","Lactococcus lactis subsp. lactis IO-1"]]},{"id":"NCBITaxon:1048339","l":"Sporichthya polymorpha DSM 43042","na":1,"nb":2,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A35751","Sporichthya polymorpha"],["NCBITaxon%3A1048339","Sporichthya polymorpha DSM 43042"]]},{"id":"NCBITaxon:1048394","l":"Compostimonas suwonensis","na":2,"nb":1,"a":[["agricultural-waste-material-envo-01000371.html","agricultural waste material"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A1048394","Compostimonas suwonensis"]]},{"id":"NCBITaxon:1049790","l":"Leptospira inadai serovar Lyme str. 10","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A29506","Leptospira inadai"],["NCBITaxon%3A1049790","Leptospira inadai serovar Lyme str. 10"]]},{"id":"NCBITaxon:1052258","l":"Arenimonas daechungensis","na":2,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"],["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1052258","Arenimonas daechungensis"]]},{"id":"NCBITaxon:105229","l":"Neobacillus fumarioli","na":1,"nb":2,"a":[["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A105229","Neobacillus fumarioli"],["NCBITaxon%3A1314754","Neobacillus fumarioli NBRC 102428"]]},{"id":"NCBITaxon:1052585","l":"Bacillus spizizenii TU-B-10","na":1,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A96241","Bacillus spizizenii"],["NCBITaxon%3A1052585","Bacillus spizizenii TU-B-10"]]},{"id":"NCBITaxon:1052802","l":"Crenarchaeota archaeon SCGC AAA471-B23","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052802","Crenarchaeota archaeon SCGC AAA471-B23"]]},{"id":"NCBITaxon:1052803","l":"Crenarchaeota archaeon SCGC AAA471-C03","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052803","Crenarchaeota archaeon SCGC AAA471-C03"]]},{"id":"NCBITaxon:1052804","l":"Crenarchaeota archaeon SCGC AAA471-L13","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052804","Crenarchaeota archaeon SCGC AAA471-L13"]]},{"id":"NCBITaxon:1052805","l":"Crenarchaeota archaeon SCGC AAA471-L14","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052805","Crenarchaeota archaeon SCGC AAA471-L14"]]},{"id":"NCBITaxon:1052806","l":"Crenarchaeota archaeon SCGC AAA471-O08","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052806","Crenarchaeota archaeon SCGC AAA471-O08"]]},{"id":"NCBITaxon:1052810","l":"Calescamantes bacterium SCGC AAA471-M6","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052810","Calescamantes bacterium SCGC AAA471-M6"]]},{"id":"NCBITaxon:1052811","l":"Candidatus Fervidibacteria bacterium JGI 0000001-B9","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052811","Candidatus Fervidibacteria bacterium JGI 0000001-B9"]]},{"id":"NCBITaxon:1052812","l":"Candidatus Fervidibacteria bacterium JGI 0000001-D5","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052812","Candidatus Fervidibacteria bacterium JGI 0000001-D5"]]},{"id":"NCBITaxon:1052813","l":"Candidatus Fervidibacteria bacterium JGI 0000001-G10","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052813","Candidatus Fervidibacteria bacterium JGI 0000001-G10"]]},{"id":"NCBITaxon:1052814","l":"Candidatus Fervidibacteria bacterium JGI 0000054-H05","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052814","Candidatus Fervidibacteria bacterium JGI 0000054-H05"]]},{"id":"NCBITaxon:1052828","l":"Aigarchaeota archaeon SCGC AAA471-E16","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052828","Aigarchaeota archaeon SCGC AAA471-E16"]]},{"id":"NCBITaxon:1052829","l":"Candidatus Calditenuaceae archaeon SCGC AAA471-F17","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052829","Candidatus Calditenuaceae archaeon SCGC AAA471-F17"]]},{"id":"NCBITaxon:1052830","l":"Aigarchaeota archaeon SCGC AAA471-G05","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052830","Aigarchaeota archaeon SCGC AAA471-G05"]]},{"id":"NCBITaxon:1052831","l":"Aigarchaeota archaeon SCGC AAA471-I13","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052831","Aigarchaeota archaeon SCGC AAA471-I13"]]},{"id":"NCBITaxon:1052832","l":"Aigarchaeota archaeon SCGC AAA471-J07","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052832","Aigarchaeota archaeon SCGC AAA471-J07"]]},{"id":"NCBITaxon:1052833","l":"Aigarchaeota archaeon SCGC AAA471-J08","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052833","Aigarchaeota archaeon SCGC AAA471-J08"]]},{"id":"NCBITaxon:1052838","l":"Aigarchaeota archaeon JGI 0000001-A7","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052838","Aigarchaeota archaeon JGI 0000001-A7"]]},{"id":"NCBITaxon:1052839","l":"Aigarchaeota archaeon JGI 0000001-B8","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052839","Aigarchaeota archaeon JGI 0000001-B8"]]},{"id":"NCBITaxon:1052841","l":"Aigarchaeota archaeon JGI 0000001-H6","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1052841","Aigarchaeota archaeon JGI 0000001-H6"]]},{"id":"NCBITaxon:1054034","l":"Arcobacter cloacae","na":2,"nb":1,"a":[["sludge-envo-00002044.html","sludge"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A1054034","Arcobacter cloacae"]]},{"id":"NCBITaxon:1054041","l":"Levilactobacillus yonginensis","na":2,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A1054041","Levilactobacillus yonginensis"]]},{"id":"NCBITaxon:1054498","l":"Rivihabitans pingtungensis","na":2,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A1054498","Rivihabitans pingtungensis"]]},{"id":"NCBITaxon:1054860","l":"Streptomyces purpureus KA281","na":1,"nb":2,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A1951","Streptomyces purpureus"],["NCBITaxon%3A1054860","Streptomyces purpureus KA281"]]},{"id":"NCBITaxon:1054862","l":"Streptomyces bottropensis ATCC 25435","na":1,"nb":2,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A42235","Streptomyces bottropensis"],["NCBITaxon%3A1054862","Streptomyces bottropensis ATCC 25435"]]},{"id":"NCBITaxon:1055524","l":"Burkholderia cenocepacia H111","na":2,"nb":1,"a":[["k-562-cell-bto-0000664.html","K-562 cell"],["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A1055524","Burkholderia cenocepacia H111"]]},{"id":"NCBITaxon:105559","l":"Nitrosococcus watsonii C-113","na":1,"nb":2,"a":[["sea-envo-00000016.html","sea"]],"b":[["NCBITaxon%3A473531","Nitrosococcus watsonii"],["NCBITaxon%3A105559","Nitrosococcus watsonii C-113"]]},{"id":"NCBITaxon:105560","l":"Methylibium petroleiphilum","na":1,"nb":2,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"]],"b":[["NCBITaxon%3A105560","Methylibium petroleiphilum"],["NCBITaxon%3A420662","Methylibium petroleiphilum PM1"]]},{"id":"NCBITaxon:1056807","l":"Morococcus cerebrosus","na":2,"nb":1,"a":[["neonate-bto-0001762.html","neonate"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A1056807","Morococcus cerebrosus"]]},{"id":"NCBITaxon:1056982","l":"Gordonia phosphorivorans","na":1,"nb":2,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1056982","Gordonia phosphorivorans"],["NCBITaxon%3A375757","Streptomyces fildesensis"]]},{"id":"NCBITaxon:105972","l":"Methylosarcina fibrata","na":1,"nb":2,"a":[["stream-envo-00000023.html","stream"]],"b":[["NCBITaxon%3A105972","Methylosarcina fibrata"],["NCBITaxon%3A1132443","Methylosarcina fibrata AML-C10"]]},{"id":"NCBITaxon:1064535","l":"Megasphaera elsdenii DSM 20460","na":1,"nb":2,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A907","Megasphaera elsdenii"],["NCBITaxon%3A1064535","Megasphaera elsdenii DSM 20460"]]},{"id":"NCBITaxon:106634","l":"Thioalkalivibrio versutus","na":1,"nb":2,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A106634","Thioalkalivibrio versutus"],["NCBITaxon%3A886877","Thioalkalivibrio versutus AL 2"]]},{"id":"NCBITaxon:1068978","l":"Amycolatopsis methanolica 239","na":1,"nb":2,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A1814","Amycolatopsis methanolica"],["NCBITaxon%3A1068978","Amycolatopsis methanolica 239"]]},{"id":"NCBITaxon:1069221","l":"Mycolicibacillus parakoreensis","na":2,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"],["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A1069221","Mycolicibacillus parakoreensis"]]},{"id":"NCBITaxon:1073081","l":"","na":2,"nb":1,"a":[["foam-habitatmech-bacdive-df2f59b773.html","Foam"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A489913","Halarchaeum nitratireducens"]]},{"id":"NCBITaxon:1073250","l":"Desulfamplus magnetovallimortis BW-1","na":1,"nb":2,"a":[["brackish-water-body-envo-01001321.html","brackish water body"]],"b":[["NCBITaxon%3A1246637","Desulfamplus magnetovallimortis"],["NCBITaxon%3A1073250","Desulfamplus magnetovallimortis BW-1"]]},{"id":"NCBITaxon:1073972","l":"Candidatus Arthromitus sp. SFB-mouse-NYU","na":2,"nb":1,"a":[["lamina-propria-bto-0002330.html","lamina propria"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1073972","Candidatus Arthromitus sp. SFB-mouse-NYU"]]},{"id":"NCBITaxon:1074000","l":"Cronobacter universalis NCTC 9529","na":1,"nb":2,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A535744","Cronobacter universalis"],["NCBITaxon%3A1074000","Cronobacter universalis NCTC 9529"]]},{"id":"NCBITaxon:1074049","l":"Candidatus Burkholderia crenata","na":2,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"],["seedling-bto-0001228.html","seedling"]],"b":[["NCBITaxon%3A1074049","Candidatus Burkholderia crenata"]]},{"id":"NCBITaxon:1074311","l":"Vibrio alfacsensis","na":2,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A1074311","Vibrio alfacsensis"]]},{"id":"NCBITaxon:1075090","l":"Gordonia amarae NBRC 15530","na":1,"nb":2,"a":[["foam-habitatmech-bacdive-df2f59b773.html","Foam"]],"b":[["NCBITaxon%3A36821","Gordonia amarae"],["NCBITaxon%3A1075090","Gordonia amarae NBRC 15530"]]},{"id":"NCBITaxon:1076331","l":"Arsenicicoccus dermatophilus","na":2,"nb":1,"a":[["foot-bto-0000476.html","foot"],["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["NCBITaxon%3A1076331","Arsenicicoccus dermatophilus"]]},{"id":"NCBITaxon:1076596","l":"Acetobacter persici","na":1,"nb":2,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A1076596","Acetobacter persici"],["NCBITaxon%3A1236503","Acetobacter persici JCM 25330"]]},{"id":"NCBITaxon:1077144","l":"Dietzia alimentaria 72","na":1,"nb":2,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A665550","Dietzia alimentaria"],["NCBITaxon%3A1077144","Dietzia alimentaria 72"]]},{"id":"NCBITaxon:1077285","l":"Bacteroides faecis MAJ27","na":1,"nb":2,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A674529","Bacteroides faecis"],["NCBITaxon%3A1077285","Bacteroides faecis MAJ27"]]},{"id":"NCBITaxon:1077976","l":"Gordonia polyisoprenivorans NBRC 16320 = JCM 10675","na":1,"nb":2,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A84595","Gordonia polyisoprenivorans"],["NCBITaxon%3A1077976","Gordonia polyisoprenivorans NBRC 16320 = JCM 10675"]]},{"id":"NCBITaxon:1078846","l":"Methylovulum miyakonense HT12","na":1,"nb":2,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A645578","Methylovulum miyakonense"],["NCBITaxon%3A1078846","Methylovulum miyakonense HT12"]]},{"id":"NCBITaxon:1080071","l":"Streptococcus orisasini","na":2,"nb":1,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"],["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A1080071","Streptococcus orisasini"]]},{"id":"NCBITaxon:1080712","l":"Methanomassiliicoccus luminyensis","na":1,"nb":2,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A1080712","Methanomassiliicoccus luminyensis"],["NCBITaxon%3A1175296","Methanomassiliicoccus luminyensis B10"]]},{"id":"NCBITaxon:1081094","l":"Legionella pneumophila subsp. pneumophila str. Hextuple_2q","na":2,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"],["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A1081094","Legionella pneumophila subsp. pneumophila str. Hextuple_2q"]]},{"id":"NCBITaxon:1081095","l":"Legionella pneumophila subsp. pneumophila str. Hextuple_3a","na":2,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"],["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A1081095","Legionella pneumophila subsp. pneumophila str. Hextuple_3a"]]},{"id":"NCBITaxon:1081736","l":"Listeria fleischmannii subsp. coloradonensis","na":1,"nb":2,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A1069827","Listeria fleischmannii"],["NCBITaxon%3A1081736","Listeria fleischmannii subsp. coloradonensis"]]},{"id":"NCBITaxon:1082345","l":"Sphingobium boeckii","na":2,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A1082345","Sphingobium boeckii"]]},{"id":"NCBITaxon:1082932","l":"Agrobacterium tumefaciens CCNWGS0286","na":2,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"],["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A1082932","Agrobacterium tumefaciens CCNWGS0286"]]},{"id":"NCBITaxon:1084","l":"Pararhodospirillum photometricum","na":1,"nb":2,"a":[["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A1084","Pararhodospirillum photometricum"],["NCBITaxon%3A1150469","Pararhodospirillum photometricum DSM 122"]]},{"id":"NCBITaxon:1084519","l":"Nibribacter koreensis","na":2,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"],["brackish-water-body-envo-01001321.html","brackish water body"]],"b":[["NCBITaxon%3A1084519","Nibribacter koreensis"]]},{"id":"NCBITaxon:1087449","l":"Aquimarina agarilytica","na":1,"nb":2,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A1087449","Aquimarina agarilytica"],["NCBITaxon%3A620914","Aquimarina agarilytica ZC1"]]},{"id":"NCBITaxon:1088875","l":"Francisella philomiragia FSC145","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A28110","Francisella philomiragia"],["NCBITaxon%3A1088875","Francisella philomiragia FSC145"]]},{"id":"NCBITaxon:1089439","l":"Fangia hongkongensis FSC776 = DSM 21703","na":1,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A270495","Fangia hongkongensis"],["NCBITaxon%3A1089439","Fangia hongkongensis FSC776 = DSM 21703"]]},{"id":"NCBITaxon:1089453","l":"Gordonia sputi NBRC 100414","na":1,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A36823","Gordonia sputi"],["NCBITaxon%3A1089453","Gordonia sputi NBRC 100414"]]},{"id":"NCBITaxon:1089545","l":"Amycolatopsis balhimycina FH 1894","na":1,"nb":2,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A208443","Amycolatopsis balhimycina"],["NCBITaxon%3A1089545","Amycolatopsis balhimycina FH 1894"]]},{"id":"NCBITaxon:1089546","l":"Actinopolyspora halophila DSM 43834","na":1,"nb":2,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["NCBITaxon%3A1850","Actinopolyspora halophila"],["NCBITaxon%3A1089546","Actinopolyspora halophila DSM 43834"]]},{"id":"NCBITaxon:1089548","l":"Thermicanus aegyptius DSM 12793","na":1,"nb":2,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A94009","Thermicanus aegyptius"],["NCBITaxon%3A1089548","Thermicanus aegyptius DSM 12793"]]},{"id":"NCBITaxon:1090319","l":"Sphingomonas phyllosphaerae FA2","na":1,"nb":2,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A257003","Sphingomonas phyllosphaerae"],["NCBITaxon%3A1090319","Sphingomonas phyllosphaerae FA2"]]},{"id":"NCBITaxon:1090322","l":"Methanolobus tindarius DSM 2278","na":1,"nb":2,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A2221","Methanolobus tindarius"],["NCBITaxon%3A1090322","Methanolobus tindarius DSM 2278"]]},{"id":"NCBITaxon:1090375","l":"Candidatus Burkholderia pumila","na":2,"nb":1,"a":[["mesophyll-bto-0000858.html","mesophyll"],["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A1090375","Candidatus Burkholderia pumila"]]},{"id":"NCBITaxon:1090379","l":"Candidatus Burkholderia brachyanthoides","na":2,"nb":1,"a":[["mesophyll-bto-0000858.html","mesophyll"],["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A1090379","Candidatus Burkholderia brachyanthoides"]]},{"id":"NCBITaxon:1090471","l":"Candidatus Burkholderia humilis","na":2,"nb":1,"a":[["mesophyll-bto-0000858.html","mesophyll"],["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A1090471","Candidatus Burkholderia humilis"]]},{"id":"NCBITaxon:1091494","l":"Methylotuvimicrobium alcaliphilum 20Z","na":1,"nb":2,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A271065","Methylotuvimicrobium alcaliphilum"],["NCBITaxon%3A1091494","Methylotuvimicrobium alcaliphilum 20Z"]]},{"id":"NCBITaxon:1094","l":"Chlorobium phaeovibrioides","na":1,"nb":2,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A1094","Chlorobium phaeovibrioides"],["NCBITaxon%3A290318","Chlorobium phaeovibrioides DSM 265"]]},{"id":"NCBITaxon:1094555","l":"Bartonella elizabethae F9251 = ATCC 49927","na":1,"nb":2,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A807","Bartonella elizabethae"],["NCBITaxon%3A1094555","Bartonella elizabethae F9251 = ATCC 49927"]]},{"id":"NCBITaxon:109472","l":"Bisgaardia hudsonensis","na":2,"nb":1,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A109472","Bisgaardia hudsonensis"]]},{"id":"NCBITaxon:1095727","l":"Streptococcus sp. SK643","na":1,"nb":2,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A1306","Streptococcus sp."],["NCBITaxon%3A1095727","Streptococcus sp. SK643"]]},{"id":"NCBITaxon:1095745","l":"Haemophilus parainfluenzae HK262","na":1,"nb":2,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A729","Haemophilus parainfluenzae"],["NCBITaxon%3A1095745","Haemophilus parainfluenzae HK262"]]},{"id":"NCBITaxon:1095749","l":"Pasteurella bettyae CCUG 2042","na":1,"nb":2,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A752","Pasteurella bettyae"],["NCBITaxon%3A1095749","Pasteurella bettyae CCUG 2042"]]},{"id":"NCBITaxon:1096091","l":"Labrys methylaminiphilus JLW10","na":1,"nb":2,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A298598","Labrys methylaminiphilus"],["NCBITaxon%3A1096091","Labrys methylaminiphilus JLW10"]]},{"id":"NCBITaxon:1096243","l":"Idiomarina piscisalsi","na":2,"nb":1,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A1096243","Idiomarina piscisalsi"]]},{"id":"NCBITaxon:1096246","l":"Hungatella effluvii","na":2,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A1096246","Hungatella effluvii"]]},{"id":"NCBITaxon:1096930","l":"Novosphingobium lindaniclasticum LE124","na":1,"nb":2,"a":[["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A1329895","Novosphingobium lindaniclasticum"],["NCBITaxon%3A1096930","Novosphingobium lindaniclasticum LE124"]]},{"id":"NCBITaxon:1096995","l":"Acinetobacter baumannii BJAB07104","na":2,"nb":1,"a":[["ascites-bto-0000091.html","ascites"],["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"]],"b":[["NCBITaxon%3A1096995","Acinetobacter baumannii BJAB07104"]]},{"id":"NCBITaxon:1096996","l":"Acinetobacter baumannii BJAB0715","na":2,"nb":1,"a":[["ascites-bto-0000091.html","ascites"],["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"]],"b":[["NCBITaxon%3A1096996","Acinetobacter baumannii BJAB0715"]]},{"id":"NCBITaxon:1096997","l":"Acinetobacter baumannii BJAB0868","na":2,"nb":1,"a":[["ascites-bto-0000091.html","ascites"],["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"]],"b":[["NCBITaxon%3A1096997","Acinetobacter baumannii BJAB0868"]]},{"id":"NCBITaxon:1097","l":"Chlorobaculum tepidum","na":1,"nb":2,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A1097","Chlorobaculum tepidum"],["NCBITaxon%3A194439","Chlorobaculum tepidum TLS"]]},{"id":"NCBITaxon:109936","l":"Cladochytrium replicatum","na":2,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"],["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["NCBITaxon%3A109936","Cladochytrium replicatum"]]},{"id":"NCBITaxon:1099853","l":"Coprobacter fastidiosus","na":1,"nb":2,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A1099853","Coprobacter fastidiosus"],["NCBITaxon%3A1349822","Coprobacter fastidiosus NSB1 = JCM 33896"]]},{"id":"NCBITaxon:1100","l":"Pelodictyon luteolum","na":1,"nb":2,"a":[["brackish-water-body-envo-01001321.html","brackish water body"]],"b":[["NCBITaxon%3A1100","Pelodictyon luteolum"],["NCBITaxon%3A319225","Pelodictyon luteolum DSM 273"]]},{"id":"NCBITaxon:1100720","l":"Limnohabitans sp. Rim28","na":1,"nb":2,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A1907725","Limnohabitans sp."],["NCBITaxon%3A1100720","Limnohabitans sp. Rim28"]]},{"id":"NCBITaxon:1100833","l":"Chlamydia trachomatis F/SWFPminus","na":2,"nb":1,"a":[["respiratory-system-bto-0000203.html","respiratory system"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A1100833","Chlamydia trachomatis F/SWFPminus"]]},{"id":"NCBITaxon:110163","l":"Thermococcus aggregans","na":2,"nb":1,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A110163","Thermococcus aggregans"]]},{"id":"NCBITaxon:1104571","l":"Thaumarchaeota archaeon SCGC AB-179-E04","na":2,"nb":1,"a":[["hot-spring-envo-00000051.html","hot spring"],["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1104571","Thaumarchaeota archaeon SCGC AB-179-E04"]]},{"id":"NCBITaxon:1104575","l":"Diapherotrites archaeon SCGC AAA011-K09","na":2,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1104575","Diapherotrites archaeon SCGC AAA011-K09"]]},{"id":"NCBITaxon:1104576","l":"Candidatus Iainarchaeum andersonii SCGC AAA011-E11","na":2,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1104576","Candidatus Iainarchaeum andersonii SCGC AAA011-E11"]]},{"id":"NCBITaxon:1104577","l":"Nanoarchaeota archaeon SCGC AAA011-G17","na":2,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1104577","Nanoarchaeota archaeon SCGC AAA011-G17"]]},{"id":"NCBITaxon:1104580","l":"Nanoarchaeota archaeon SCGC AAA011-L15","na":2,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1104580","Nanoarchaeota archaeon SCGC AAA011-L15"]]},{"id":"NCBITaxon:1104607","l":"Microgenomates bacterium SCGC AAA011-A19","na":2,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1104607","Microgenomates bacterium SCGC AAA011-A19"]]},{"id":"NCBITaxon:1104609","l":"Microgenomates bacterium SCGC AAA011-M05","na":2,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1104609","Microgenomates bacterium SCGC AAA011-M05"]]},{"id":"NCBITaxon:1104610","l":"Microgenomates bacterium SCGC AAA011-B20","na":2,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1104610","Microgenomates bacterium SCGC AAA011-B20"]]},{"id":"NCBITaxon:1104614","l":"Microgenomates bacterium SCGC AAA011-I21","na":2,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1104614","Microgenomates bacterium SCGC AAA011-I21"]]},{"id":"NCBITaxon:1104615","l":"Microgenomates bacterium SCGC AAA011-L05","na":2,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"],["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A1104615","Microgenomates bacterium SCGC AAA011-L05"]]},{"id":"NCBITaxon:110637","l":"Arthrobacter sp. 'SMCC G980'","na":2,"nb":1,"a":[["biofilm-material-envo-01000156.html","biofilm material"],["farm-envo-00000078.html","farm"]],"b":[["NCBITaxon%3A110637","Arthrobacter sp. 'SMCC G980'"]]},{"id":"NCBITaxon:110648","l":"Arthrobacter sp. 'SMCC ZAT013'","na":2,"nb":1,"a":[["biofilm-material-envo-01000156.html","biofilm material"],["farm-envo-00000078.html","farm"]],"b":[["NCBITaxon%3A110648","Arthrobacter sp. 'SMCC ZAT013'"]]},{"id":"NCBITaxon:1107882","l":"Mesorhizobium alhagi CCNWXJ12-2","na":1,"nb":2,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A475067","Allomesorhizobium alhagi"],["NCBITaxon%3A1107882","Mesorhizobium alhagi CCNWXJ12-2"]]},{"id":"NCBITaxon:110935","l":"Agreia bicolorata","na":2,"nb":1,"a":[["plant-gall-po-0025626.html","plant gall"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["NCBITaxon%3A110935","Agreia bicolorata"]]},{"id":"NCBITaxon:110936","l":"Rathayibacter caricis","na":1,"nb":2,"a":[["skin-bto-0001253.html","skin"]],"b":[["NCBITaxon%3A110936","Rathayibacter caricis"],["NCBITaxon%3A1328867","Rathayibacter caricis DSM 15933"]]},{"id":"NCBITaxon:1110509","l":"Methanothrix harundinacea 6Ac","na":2,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["cob-bto-0000266.html","cob"]],"b":[["NCBITaxon%3A1110509","Methanothrix harundinacea 6Ac"]]},{"id":"NCBITaxon:1110546","l":"Veillonella tobetsuensis","na":2,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A1110546","Veillonella tobetsuensis"]]},{"id":"NCBITaxon:1110697","l":"Nocardia asteroides NBRC 15531","na":1,"nb":2,"a":[["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1824","Nocardia asteroides"],["NCBITaxon%3A1110697","Nocardia asteroides NBRC 15531"]]},{"id":"NCBITaxon:111143","l":"Alishewanella fetalis","na":2,"nb":1,"a":[["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"]],"b":[["NCBITaxon%3A111143","Alishewanella fetalis"]]},{"id":"NCBITaxon:1111729","l":"Corynebacterium sputi DSM 45148","na":1,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A489915","Corynebacterium sputi"],["NCBITaxon%3A1111729","Corynebacterium sputi DSM 45148"]]},{"id":"NCBITaxon:1111730","l":"Flavobacterium antarcticum DSM 19726","na":1,"nb":2,"a":[["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A271155","Flavobacterium antarcticum"],["NCBITaxon%3A1111730","Flavobacterium antarcticum DSM 19726"]]},{"id":"NCBITaxon:1111733","l":"Massilia alkalitolerans DSM 17462","na":1,"nb":2,"a":[["undersea-feature-envo-00000104.html","undersea feature"]],"b":[["NCBITaxon%3A286638","Massilia alkalitolerans"],["NCBITaxon%3A1111733","Massilia alkalitolerans DSM 17462"]]},{"id":"NCBITaxon:1111734","l":"Acidipropionibacterium acidipropionici DSM 4900","na":1,"nb":2,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["NCBITaxon%3A1748","Acidipropionibacterium acidipropionici"],["NCBITaxon%3A1111734","Acidipropionibacterium acidipropionici DSM 4900"]]},{"id":"NCBITaxon:1112204","l":"Gordonia polyisoprenivorans VH2","na":1,"nb":2,"a":[["latex-bto-0000710.html","latex"]],"b":[["NCBITaxon%3A84595","Gordonia polyisoprenivorans"],["NCBITaxon%3A1112204","Gordonia polyisoprenivorans VH2"]]},{"id":"NCBITaxon:1112856","l":"Mycoplasmoides pneumoniae 309","na":2,"nb":1,"a":[["sputum-bto-0001297.html","sputum"],["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A1112856","Mycoplasmoides pneumoniae 309"]]},{"id":"NCBITaxon:1114960","l":"Rhodococcus pyridinivorans AK37","na":2,"nb":1,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A1114960","Rhodococcus pyridinivorans AK37"]]},{"id":"NCBITaxon:1114962","l":"Actinoalloteichus spitiensis RMV-1378","na":1,"nb":2,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A252394","Actinoalloteichus spitiensis"],["NCBITaxon%3A1114962","Actinoalloteichus spitiensis RMV-1378"]]},{"id":"NCBITaxon:1114965","l":"Streptococcus parasanguinis FW213","na":2,"nb":1,"a":[["tooth-bto-0000397.html","tooth"],["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A1114965","Streptococcus parasanguinis FW213"]]},{"id":"NCBITaxon:111564","l":"Kineosphaera limosa","na":1,"nb":2,"a":[["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["NCBITaxon%3A111564","Kineosphaera limosa"],["NCBITaxon%3A1184609","Kineosphaera limosa NBRC 100340"]]},{"id":"NCBITaxon:1116472","l":"Methyloglobulus morosus KoM1","na":1,"nb":2,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1410681","Methyloglobulus morosus"],["NCBITaxon%3A1116472","Methyloglobulus morosus KoM1"]]},{"id":"NCBITaxon:1117316","l":"Pseudoalteromonas marina DSM 17587","na":1,"nb":2,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["NCBITaxon%3A267375","Pseudoalteromonas marina"],["NCBITaxon%3A1117316","Pseudoalteromonas marina DSM 17587"]]},{"id":"NCBITaxon:1117379","l":"Neobacillus bataviensis LMG 21833","na":1,"nb":2,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A220685","Neobacillus bataviensis"],["NCBITaxon%3A1117379","Neobacillus bataviensis LMG 21833"]]},{"id":"NCBITaxon:111780","l":"Stanieria cyanosphaera PCC 7437","na":2,"nb":1,"a":[["fresh-water-envo-00002011.html","fresh water"],["pond-envo-00000033.html","pond"]],"b":[["NCBITaxon%3A111780","Stanieria cyanosphaera PCC 7437"]]},{"id":"NCBITaxon:1118153","l":"Halomonas sp. GFAJ-1","na":1,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A1486246","Halomonas sp."],["NCBITaxon%3A1118153","Halomonas sp. GFAJ-1"]]},{"id":"NCBITaxon:1118379","l":"Mycolicibacter minnesotensis","na":2,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A1118379","Mycolicibacter minnesotensis"]]},{"id":"NCBITaxon:1120920","l":"Acidaminobacter hydrogenoformans DSM 2784","na":1,"nb":2,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["NCBITaxon%3A65403","Acidaminobacter hydrogenoformans"],["NCBITaxon%3A1120920","Acidaminobacter hydrogenoformans DSM 2784"]]},{"id":"NCBITaxon:1120921","l":"Acidaminococcus intestini DSM 21505","na":1,"nb":2,"a":[["hospital-envo-00002173.html","hospital"]],"b":[["NCBITaxon%3A187327","Acidaminococcus intestini"],["NCBITaxon%3A1120921","Acidaminococcus intestini DSM 21505"]]},{"id":"NCBITaxon:1120926","l":"Acinetobacter gerneri DSM 14967 = CIP 107464 = MTCC 9824","na":1,"nb":2,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A202952","Acinetobacter gerneri"],["NCBITaxon%3A1120926","Acinetobacter gerneri DSM 14967 = CIP 107464 = MTCC 9824"]]},{"id":"NCBITaxon:1120932","l":"Actinotignum schaalii DSM 15541","na":1,"nb":2,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A59505","Actinotignum schaalii"],["NCBITaxon%3A1120932","Actinotignum schaalii DSM 15541"]]},{"id":"NCBITaxon:1120933","l":"Actinotignum urinale DSM 15805","na":1,"nb":2,"a":[["urethra-bto-0001426.html","urethra"]],"b":[["NCBITaxon%3A190146","Actinotignum urinale"],["NCBITaxon%3A1120933","Actinotignum urinale DSM 15805"]]},{"id":"NCBITaxon:1120934","l":"Actinokineospora enzanensis DSM 44649","na":1,"nb":2,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A155975","Actinokineospora enzanensis"],["NCBITaxon%3A1120934","Actinokineospora enzanensis DSM 44649"]]},{"id":"NCBITaxon:1120941","l":"Actinomyces dentalis DSM 19115","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A272548","Actinomyces dentalis"],["NCBITaxon%3A1120941","Actinomyces dentalis DSM 19115"]]},{"id":"NCBITaxon:1120942","l":"Schaalia georgiae DSM 6843","na":1,"nb":2,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A52768","Schaalia georgiae"],["NCBITaxon%3A1120942","Schaalia georgiae DSM 6843"]]},{"id":"NCBITaxon:1120943","l":"Actinomyces gerencseriae DSM 6844","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A52769","Actinomyces gerencseriae"],["NCBITaxon%3A1120943","Actinomyces gerencseriae DSM 6844"]]},{"id":"NCBITaxon:1120944","l":"Actinomyces israelii DSM 43320","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A1659","Actinomyces israelii"],["NCBITaxon%3A1120944","Actinomyces israelii DSM 43320"]]},{"id":"NCBITaxon:1120946","l":"Schaalia suimastitidis DSM 15538","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A121163","Schaalia suimastitidis"],["NCBITaxon%3A1120946","Schaalia suimastitidis DSM 15538"]]},{"id":"NCBITaxon:1120948","l":"Actinomycetospora chiangmaiensis DSM 45062","na":1,"nb":2,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A402650","Actinomycetospora chiangmaiensis"],["NCBITaxon%3A1120948","Actinomycetospora chiangmaiensis DSM 45062"]]},{"id":"NCBITaxon:1120957","l":"Aggregatibacter actinomycetemcomitans DSM 8324","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A714","Aggregatibacter actinomycetemcomitans"],["NCBITaxon%3A1120957","Aggregatibacter actinomycetemcomitans DSM 8324"]]},{"id":"NCBITaxon:1120958","l":"Agrococcus lahaulensis DSM 17612","na":1,"nb":2,"a":[["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A341722","Agrococcus lahaulensis"],["NCBITaxon%3A1120958","Agrococcus lahaulensis DSM 17612"]]},{"id":"NCBITaxon:1120960","l":"Agromyces subbeticus DSM 16689","na":1,"nb":2,"a":[["cave-envo-00000067.html","cave"]],"b":[["NCBITaxon%3A293890","Agromyces subbeticus"],["NCBITaxon%3A1120960","Agromyces subbeticus DSM 16689"]]},{"id":"NCBITaxon:1120962","l":"Alcaligenes phenolicus DSM 16503","na":1,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A232846","Alcaligenes phenolicus"],["NCBITaxon%3A1120962","Alcaligenes phenolicus DSM 16503"]]},{"id":"NCBITaxon:1120970","l":"Aliagarivorans taiwanensis DSM 22990","na":1,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A561966","Aliagarivorans taiwanensis"],["NCBITaxon%3A1120970","Aliagarivorans taiwanensis DSM 22990"]]},{"id":"NCBITaxon:1120971","l":"Alicyclobacillus contaminans DSM 17975","na":1,"nb":2,"a":[["city-envo-00000856.html","city"]],"b":[["NCBITaxon%3A1120971","Alicyclobacillus contaminans DSM 17975"],["NCBITaxon%3A392016","Paenalicyclobacillus contaminans"]]},{"id":"NCBITaxon:1120973","l":"Effusibacillus pohliae DSM 22757","na":1,"nb":2,"a":[["mount-envo-00000477.html","mount"]],"b":[["NCBITaxon%3A232270","Effusibacillus pohliae"],["NCBITaxon%3A1120973","Effusibacillus pohliae DSM 22757"]]},{"id":"NCBITaxon:1120979","l":"Alloscardovia omnicolens DSM 21503","na":1,"nb":2,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A419015","Alloscardovia omnicolens"],["NCBITaxon%3A1120979","Alloscardovia omnicolens DSM 21503"]]},{"id":"NCBITaxon:1120994","l":"Anaerosphaera aminiphila","na":1,"nb":2,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A1120994","Anaerosphaera aminiphila"],["NCBITaxon%3A1120995","Anaerosphaera aminiphila DSM 21120"]]},{"id":"NCBITaxon:1120996","l":"Anaerosporobacter mobilis DSM 15930","na":1,"nb":2,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A264463","Anaerosporobacter mobilis"],["NCBITaxon%3A1120996","Anaerosporobacter mobilis DSM 15930"]]},{"id":"NCBITaxon:1121002","l":"Aneurinibacillus terranovensis DSM 18919","na":1,"nb":2,"a":[["ridge-envo-00000283.html","ridge"]],"b":[["NCBITaxon%3A278991","Aneurinibacillus terranovensis"],["NCBITaxon%3A1121002","Aneurinibacillus terranovensis DSM 18919"]]},{"id":"NCBITaxon:1121004","l":"Aquaspirillum serpens DSM 68","na":1,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"]],"b":[["NCBITaxon%3A190","Aquaspirillum serpens"],["NCBITaxon%3A1121004","Aquaspirillum serpens DSM 68"]]},{"id":"NCBITaxon:1121005","l":"Aquimarina brevivitae DSM 17196","na":1,"nb":2,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["NCBITaxon%3A323412","Aquimarina brevivitae"],["NCBITaxon%3A1121005","Aquimarina brevivitae DSM 17196"]]},{"id":"NCBITaxon:1121011","l":"Arenibacter certesii DSM 19833","na":1,"nb":2,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A228955","Arenibacter certesii"],["NCBITaxon%3A1121011","Arenibacter certesii DSM 19833"]]},{"id":"NCBITaxon:1121017","l":"Arsenicicoccus bolidensis DSM 15745","na":1,"nb":2,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A229480","Arsenicicoccus bolidensis"],["NCBITaxon%3A1121017","Arsenicicoccus bolidensis DSM 15745"]]},{"id":"NCBITaxon:1121020","l":"Haematomicrobium sanguinis DSM 21259","na":1,"nb":2,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A479106","Haematomicrobium sanguinis"],["NCBITaxon%3A1121020","Haematomicrobium sanguinis DSM 21259"]]},{"id":"NCBITaxon:1121027","l":"Aurantimonas coralicida DSM 14790","na":1,"nb":2,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A182270","Aurantimonas coralicida"],["NCBITaxon%3A1121027","Aurantimonas coralicida DSM 14790"]]},{"id":"NCBITaxon:1121034","l":"Niveispirillum irakense DSM 11586","na":1,"nb":2,"a":[["rice-field-envo-00000296.html","rice field"]],"b":[["NCBITaxon%3A34011","Niveispirillum irakense"],["NCBITaxon%3A1121034","Niveispirillum irakense DSM 11586"]]},{"id":"NCBITaxon:1121035","l":"Azovibrio restrictus DSM 23866","na":1,"nb":2,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A146938","Azovibrio restrictus"],["NCBITaxon%3A1121035","Azovibrio restrictus DSM 23866"]]},{"id":"NCBITaxon:1121088","l":"Heyndrickxia coagulans DSM 1 = ATCC 7050","na":1,"nb":2,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1398","Heyndrickxia coagulans"],["NCBITaxon%3A1121088","Heyndrickxia coagulans DSM 1 = ATCC 7050"]]},{"id":"NCBITaxon:1121090","l":"Siminovitchia fordii DSM 16014 = CIP 108821","na":1,"nb":2,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["NCBITaxon%3A254759","Siminovitchia fordii"],["NCBITaxon%3A1121090","Siminovitchia fordii DSM 16014 = CIP 108821"]]},{"id":"NCBITaxon:1121093","l":"Ectobacillus panaciterrae DSM 19096","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A363872","Ectobacillus panaciterrae"],["NCBITaxon%3A1121093","Ectobacillus panaciterrae DSM 19096"]]},{"id":"NCBITaxon:1121098","l":"Phocaeicola massiliensis B84634 = Timone 84634 = DSM 17679 = JCM 13223","na":1,"nb":2,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A204516","Phocaeicola massiliensis"],["NCBITaxon%3A1121098","Phocaeicola massiliensis B84634 = Timone 84634 = DSM 17679 = JCM 13223"]]},{"id":"NCBITaxon:1121100","l":"Bacteroides pyogenes DSM 20611 = JCM 6294","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A310300","Bacteroides pyogenes"],["NCBITaxon%3A1121100","Bacteroides pyogenes DSM 20611 = JCM 6294"]]},{"id":"NCBITaxon:1121102","l":"Campylobacter ureolyticus DSM 20703","na":1,"nb":2,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A827","Campylobacter ureolyticus"],["NCBITaxon%3A1121102","Campylobacter ureolyticus DSM 20703"]]},{"id":"NCBITaxon:1121103","l":"Balneatrix alpica DSM 16621","na":1,"nb":2,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"]],"b":[["NCBITaxon%3A75684","Balneatrix alpica"],["NCBITaxon%3A1121103","Balneatrix alpica DSM 16621"]]},{"id":"NCBITaxon:1121104","l":"Balneola vulgaris DSM 17893","na":1,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"]],"b":[["NCBITaxon%3A287535","Balneola vulgaris"],["NCBITaxon%3A1121104","Balneola vulgaris DSM 17893"]]},{"id":"NCBITaxon:1121107","l":"Bifidobacterium choerinum DSM 20434","na":1,"nb":2,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A35760","Bifidobacterium choerinum"],["NCBITaxon%3A1121107","Bifidobacterium choerinum DSM 20434"]]},{"id":"NCBITaxon:1121108","l":"Bifidobacterium magnum DSM 20222","na":1,"nb":2,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A1692","Bifidobacterium magnum"],["NCBITaxon%3A1121108","Bifidobacterium magnum DSM 20222"]]},{"id":"NCBITaxon:1121114","l":"Blautia producta ATCC 27340 = DSM 2950","na":1,"nb":2,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A33035","Blautia producta"],["NCBITaxon%3A1121114","Blautia producta ATCC 27340 = DSM 2950"]]},{"id":"NCBITaxon:1121115","l":"Blautia wexlerae DSM 19850","na":1,"nb":2,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A418240","Blautia wexlerae"],["NCBITaxon%3A1121115","Blautia wexlerae DSM 19850"]]},{"id":"NCBITaxon:1121116","l":"Allobrachymonas chironomi DSM 19884","na":1,"nb":2,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["NCBITaxon%3A491919","Allobrachymonas chironomi"],["NCBITaxon%3A1121116","Allobrachymonas chironomi DSM 19884"]]},{"id":"NCBITaxon:1121122","l":"Brevibacterium album DSM 18261","na":1,"nb":2,"a":[["undersea-feature-envo-00000104.html","undersea feature"]],"b":[["NCBITaxon%3A417948","Brevibacterium album"],["NCBITaxon%3A1121122","Brevibacterium album DSM 18261"]]},{"id":"NCBITaxon:1121123","l":"Brevundimonas aveniformis DSM 17977","na":1,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A370977","Brevundimonas aveniformis"],["NCBITaxon%3A1121123","Brevundimonas aveniformis DSM 17977"]]},{"id":"NCBITaxon:1121124","l":"Brevundimonas bacteroides DSM 4726","na":1,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"]],"b":[["NCBITaxon%3A74311","Brevundimonas bacteroides"],["NCBITaxon%3A1121124","Brevundimonas bacteroides DSM 4726"]]},{"id":"NCBITaxon:1121125","l":"Brevundimonas naejangsanensis DSM 23858","na":1,"nb":2,"a":[["mountain-envo-00000081.html","mountain"]],"b":[["NCBITaxon%3A588932","Brevundimonas naejangsanensis"],["NCBITaxon%3A1121125","Brevundimonas naejangsanensis DSM 23858"]]},{"id":"NCBITaxon:1121126","l":"Brochothrix thermosphacta DSM 20171 = FSL F6-1036","na":1,"nb":2,"a":[["food-product-foodon-00001002.html","food product"]],"b":[["NCBITaxon%3A2756","Brochothrix thermosphacta"],["NCBITaxon%3A1121126","Brochothrix thermosphacta DSM 20171 = FSL F6-1036"]]},{"id":"NCBITaxon:1121255","l":"Caenimonas koreensis DSM 17982","na":1,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A367474","Caenimonas koreensis"],["NCBITaxon%3A1121255","Caenimonas koreensis DSM 17982"]]},{"id":"NCBITaxon:1121259","l":"Caldicellulosiruptor acetigenus DSM 7040","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A301953","Caldicellulosiruptor acetigenus"],["NCBITaxon%3A1121259","Caldicellulosiruptor acetigenus DSM 7040"]]},{"id":"NCBITaxon:1121268","l":"Campylobacter curvus DSM 6644","na":1,"nb":2,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A200","Campylobacter curvus"],["NCBITaxon%3A1121268","Campylobacter curvus DSM 6644"]]},{"id":"NCBITaxon:1121271","l":"Gemmobacter nectariphilus DSM 15620","na":1,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A220343","Gemmobacter nectariphilus"],["NCBITaxon%3A1121271","Gemmobacter nectariphilus DSM 15620"]]},{"id":"NCBITaxon:1121278","l":"Chitinimonas koreensis DSM 17726","na":1,"nb":2,"a":[["undersea-feature-envo-00000104.html","undersea feature"]],"b":[["NCBITaxon%3A356302","Chitinimonas koreensis"],["NCBITaxon%3A1121278","Chitinimonas koreensis DSM 17726"]]},{"id":"NCBITaxon:1121279","l":"Chitinimonas taiwanensis DSM 18899","na":1,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"]],"b":[["NCBITaxon%3A240412","Chitinimonas taiwanensis"],["NCBITaxon%3A1121279","Chitinimonas taiwanensis DSM 18899"]]},{"id":"NCBITaxon:1121285","l":"Epilithonimonas caeni DSM 17710","na":1,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A365343","Epilithonimonas caeni"],["NCBITaxon%3A1121285","Epilithonimonas caeni DSM 17710"]]},{"id":"NCBITaxon:1121286","l":"Chryseobacterium daeguense DSM 19388","na":1,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A412438","Chryseobacterium daeguense"],["NCBITaxon%3A1121286","Chryseobacterium daeguense DSM 19388"]]},{"id":"NCBITaxon:1121290","l":"Clostridium acetireducens DSM 10703","na":1,"nb":2,"a":[["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["NCBITaxon%3A76489","Clostridium acetireducens"],["NCBITaxon%3A1121290","Clostridium acetireducens DSM 10703"]]},{"id":"NCBITaxon:1121297","l":"Anaerocolumna aminovalerica DSM 1283","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A1527","Anaerocolumna aminovalerica"],["NCBITaxon%3A1121297","Anaerocolumna aminovalerica DSM 1283"]]},{"id":"NCBITaxon:1121298","l":"Clostridium amylolyticum","na":1,"nb":2,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1121298","Clostridium amylolyticum"],["NCBITaxon%3A1121299","Clostridium amylolyticum DSM 21864"]]},{"id":"NCBITaxon:1121306","l":"Clostridium collagenovorans DSM 3089","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A29357","Clostridium collagenovorans"],["NCBITaxon%3A1121306","Clostridium collagenovorans DSM 3089"]]},{"id":"NCBITaxon:1121308","l":"Clostridioides difficile ATCC 9689 = DSM 1296","na":1,"nb":2,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A1496","Clostridioides difficile"],["NCBITaxon%3A1121308","Clostridioides difficile ATCC 9689 = DSM 1296"]]},{"id":"NCBITaxon:1121322","l":"Anaerocolumna jejuensis DSM 15929","na":1,"nb":2,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A259063","Anaerocolumna jejuensis"],["NCBITaxon%3A1121322","Anaerocolumna jejuensis DSM 15929"]]},{"id":"NCBITaxon:1121326","l":"Clostridium magnum DSM 2767","na":1,"nb":2,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A33954","Clostridium magnum"],["NCBITaxon%3A1121326","Clostridium magnum DSM 2767"]]},{"id":"NCBITaxon:1121333","l":"Thomasclavelia saccharogumia DSM 17460","na":1,"nb":2,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A341225","Thomasclavelia saccharogumia"],["NCBITaxon%3A1121333","Thomasclavelia saccharogumia DSM 17460"]]},{"id":"NCBITaxon:1121343","l":"Clostridium uliginosum DSM 12992","na":1,"nb":2,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["NCBITaxon%3A119641","Clostridium uliginosum"],["NCBITaxon%3A1121343","Clostridium uliginosum DSM 12992"]]},{"id":"NCBITaxon:1121345","l":"Anaerocolumna xylanovorans DSM 12503","na":1,"nb":2,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A100134","Anaerocolumna xylanovorans"],["NCBITaxon%3A1121345","Anaerocolumna xylanovorans DSM 12503"]]},{"id":"NCBITaxon:1121348","l":"Comamonas badia DSM 17552","na":1,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A265291","Comamonas badia"],["NCBITaxon%3A1121348","Comamonas badia DSM 17552"]]},{"id":"NCBITaxon:1121351","l":"Conchiformibius kuhniae DSM 17694","na":1,"nb":2,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["NCBITaxon%3A211502","Conchiformibius kuhniae"],["NCBITaxon%3A1121351","Conchiformibius kuhniae DSM 17694"]]},{"id":"NCBITaxon:1121353","l":"Corynebacterium callunae DSM 20147","na":1,"nb":2,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1721","Corynebacterium callunae"],["NCBITaxon%3A1121353","Corynebacterium callunae DSM 20147"]]},{"id":"NCBITaxon:1121355","l":"Corynebacterium caspium DSM 44850","na":1,"nb":2,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"]],"b":[["NCBITaxon%3A234828","Corynebacterium caspium"],["NCBITaxon%3A1121355","Corynebacterium caspium DSM 44850"]]},{"id":"NCBITaxon:1121356","l":"Corynebacterium ciconiae DSM 44920","na":1,"nb":2,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A227319","Corynebacterium ciconiae"],["NCBITaxon%3A1121356","Corynebacterium ciconiae DSM 44920"]]},{"id":"NCBITaxon:1121362","l":"Corynebacterium halotolerans YIM 70093 = DSM 44683","na":1,"nb":2,"a":[["undersea-feature-envo-00000104.html","undersea feature"]],"b":[["NCBITaxon%3A225326","Corynebacterium halotolerans"],["NCBITaxon%3A1121362","Corynebacterium halotolerans YIM 70093 = DSM 44683"]]},{"id":"NCBITaxon:1121365","l":"Corynebacterium mastitidis DSM 44356","na":1,"nb":2,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["NCBITaxon%3A161890","Corynebacterium mastitidis"],["NCBITaxon%3A1121365","Corynebacterium mastitidis DSM 44356"]]},{"id":"NCBITaxon:1121367","l":"Corynebacterium propinquum DSM 44285","na":1,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A43769","Corynebacterium propinquum"],["NCBITaxon%3A1121367","Corynebacterium propinquum DSM 44285"]]},{"id":"NCBITaxon:1121370","l":"Corynebacterium ulceribovis DSM 45146","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A487732","Corynebacterium ulceribovis"],["NCBITaxon%3A1121370","Corynebacterium ulceribovis DSM 45146"]]},{"id":"NCBITaxon:1121372","l":"Gryllotalpicola ginsengisoli DSM 22003","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A444608","Gryllotalpicola ginsengisoli"],["NCBITaxon%3A1121372","Gryllotalpicola ginsengisoli DSM 22003"]]},{"id":"NCBITaxon:1121378","l":"Deinococcus aquatilis DSM 23025","na":1,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A519440","Deinococcus aquatilis"],["NCBITaxon%3A1121378","Deinococcus aquatilis DSM 23025"]]},{"id":"NCBITaxon:1121380","l":"Deinococcus frigens DSM 12807","na":1,"nb":2,"a":[["dry-valley-envo-00000128.html","dry valley"]],"b":[["NCBITaxon%3A249403","Deinococcus frigens"],["NCBITaxon%3A1121380","Deinococcus frigens DSM 12807"]]},{"id":"NCBITaxon:1121383","l":"Deinococcus murrayi DSM 11303","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A68910","Deinococcus murrayi"],["NCBITaxon%3A1121383","Deinococcus murrayi DSM 11303"]]},{"id":"NCBITaxon:1121384","l":"","na":1,"nb":2,"a":[["food-product-foodon-00001002.html","food product"]],"b":[["NCBITaxon%3A1299","Deinococcus radiodurans"],["NCBITaxon%3A243230","Deinococcus radiodurans R1 = ATCC 13939 = DSM 20539"]]},{"id":"NCBITaxon:1121387","l":"Dermatophilus congolensis DSM 44180 = NBRC 105199","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A1863","Dermatophilus congolensis"],["NCBITaxon%3A1121387","Dermatophilus congolensis DSM 44180 = NBRC 105199"]]},{"id":"NCBITaxon:1121389","l":"Desmospora activa DSM 45169","na":1,"nb":2,"a":[["tuberculosis-habitatmech-bacdive-e5d21f85b7.html","Tuberculosis"]],"b":[["NCBITaxon%3A500615","Desmospora activa"],["NCBITaxon%3A1121389","Desmospora activa DSM 45169"]]},{"id":"NCBITaxon:1121394","l":"Desulfatirhabdium butyrativorans DSM 18734","na":1,"nb":2,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A340467","Desulfatirhabdium butyrativorans"],["NCBITaxon%3A1121394","Desulfatirhabdium butyrativorans DSM 18734"]]},{"id":"NCBITaxon:1121410","l":"Desulfoluna butyratoxydans DSM 19427","na":1,"nb":2,"a":[["brackish-water-body-envo-01001321.html","brackish water body"]],"b":[["NCBITaxon%3A231438","Desulfoluna butyratoxydans"],["NCBITaxon%3A1121410","Desulfoluna butyratoxydans DSM 19427"]]},{"id":"NCBITaxon:1121411","l":"Desulfomicrobium escambiense DSM 10707","na":1,"nb":2,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A29503","Desulfomicrobium escambiense"],["NCBITaxon%3A1121411","Desulfomicrobium escambiense DSM 10707"]]},{"id":"NCBITaxon:1121412","l":"Thermodesulfomicrobium thermophilum DSM 16697","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A380392","Thermodesulfomicrobium thermophilum"],["NCBITaxon%3A1121412","Thermodesulfomicrobium thermophilum DSM 16697"]]},{"id":"NCBITaxon:1121415","l":"Desulfonauticus autotrophicus DSM 4206","na":1,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A564288","Desulfonauticus autotrophicus"],["NCBITaxon%3A1121415","Desulfonauticus autotrophicus DSM 4206"]]},{"id":"NCBITaxon:1121418","l":"Desulforhopalus singaporensis DSM 12130","na":1,"nb":2,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A91360","Desulforhopalus singaporensis"],["NCBITaxon%3A1121418","Desulforhopalus singaporensis DSM 12130"]]},{"id":"NCBITaxon:1121419","l":"Desulfosporosinus hippei DSM 8344","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A569859","Desulfosporosinus hippei"],["NCBITaxon%3A1121419","Desulfosporosinus hippei DSM 8344"]]},{"id":"NCBITaxon:1121420","l":"Desulfosporosinus lacus DSM 15449","na":1,"nb":2,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A329936","Desulfosporosinus lacus"],["NCBITaxon%3A1121420","Desulfosporosinus lacus DSM 15449"]]},{"id":"NCBITaxon:1121422","l":"Desulfotruncus alcoholivorax DSM 16058","na":1,"nb":2,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A265477","Desulfotruncus alcoholivorax"],["NCBITaxon%3A1121422","Desulfotruncus alcoholivorax DSM 16058"]]},{"id":"NCBITaxon:1121424","l":"Desulfotruncus arcticus DSM 17038","na":1,"nb":2,"a":[["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A341036","Desulfotruncus arcticus"],["NCBITaxon%3A1121424","Desulfotruncus arcticus DSM 17038"]]},{"id":"NCBITaxon:1121425","l":"Desulfofundulus australicus DSM 11792","na":1,"nb":2,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A1566","Desulfofundulus australicus"],["NCBITaxon%3A1121425","Desulfofundulus australicus DSM 11792"]]},{"id":"NCBITaxon:1121426","l":"Desulfoscipio geothermicus DSM 3669","na":1,"nb":2,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A39060","Desulfoscipio geothermicus"],["NCBITaxon%3A1121426","Desulfoscipio geothermicus DSM 3669"]]},{"id":"NCBITaxon:1121438","l":"Solidesulfovibrio alcoholivorans DSM 5433","na":1,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A81406","Solidesulfovibrio alcoholivorans"],["NCBITaxon%3A1121438","Solidesulfovibrio alcoholivorans DSM 5433"]]},{"id":"NCBITaxon:1121440","l":"Desulfovibrio aminophilus DSM 12254","na":1,"nb":2,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A81425","Desulfovibrio aminophilus"],["NCBITaxon%3A1121440","Desulfovibrio aminophilus DSM 12254"]]},{"id":"NCBITaxon:1121443","l":"Desulfovibrio cuneatus DSM 11391","na":1,"nb":2,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A159728","Desulfovibrio cuneatus"],["NCBITaxon%3A1121443","Desulfovibrio cuneatus DSM 11391"]]},{"id":"NCBITaxon:1121452","l":"Humidesulfovibrio idahonensis DSM 15450","na":1,"nb":2,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A575978","Humidesulfovibrio idahonensis"],["NCBITaxon%3A1121452","Humidesulfovibrio idahonensis DSM 15450"]]},{"id":"NCBITaxon:1121455","l":"Desulfovibrio litoralis DSM 11393","na":1,"nb":2,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A466107","Desulfovibrio litoralis"],["NCBITaxon%3A1121455","Desulfovibrio litoralis DSM 11393"]]},{"id":"NCBITaxon:1121459","l":"Desulfovibrio oxyclinae DSM 11498","na":1,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A63560","Desulfovibrio oxyclinae"],["NCBITaxon%3A1121459","Desulfovibrio oxyclinae DSM 11498"]]},{"id":"NCBITaxon:1121467","l":"Maridesulfovibrio zosterae DSM 11974","na":1,"nb":2,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A82171","Maridesulfovibrio zosterae"],["NCBITaxon%3A1121467","Maridesulfovibrio zosterae DSM 11974"]]},{"id":"NCBITaxon:1121478","l":"Diaphorobacter oryzae DSM 22780","na":1,"nb":2,"a":[["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["NCBITaxon%3A491745","Diaphorobacter oryzae"],["NCBITaxon%3A1121478","Diaphorobacter oryzae DSM 22780"]]},{"id":"NCBITaxon:1121482","l":"Dyadobacter beijingensis DSM 21582","na":1,"nb":2,"a":[["park-envo-00000562.html","park"]],"b":[["NCBITaxon%3A365489","Dyadobacter beijingensis"],["NCBITaxon%3A1121482","Dyadobacter beijingensis DSM 21582"]]},{"id":"NCBITaxon:1121483","l":"Dyadobacter crusticola DSM 16708","na":1,"nb":2,"a":[["plateau-envo-00000182.html","plateau"]],"b":[["NCBITaxon%3A292407","Dyadobacter crusticola"],["NCBITaxon%3A1121483","Dyadobacter crusticola DSM 16708"]]},{"id":"NCBITaxon:1121485","l":"Indolivaga capnocytophagoides DSM 22835","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A45254","Indolivaga capnocytophagoides"],["NCBITaxon%3A1121485","Indolivaga capnocytophagoides DSM 22835"]]},{"id":"NCBITaxon:1121830","l":"Fodinicurvata fenggangensis","na":1,"nb":2,"a":[["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A1121830","Fodinicurvata fenggangensis"],["NCBITaxon%3A570967","Fodinicurvata fenggangensis DSM 21160"]]},{"id":"NCBITaxon:1121861","l":"Elioraea tepidiphila DSM 17972","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A457934","Elioraea tepidiphila"],["NCBITaxon%3A1121861","Elioraea tepidiphila DSM 17972"]]},{"id":"NCBITaxon:1121862","l":"Endozoicomonas elysicola DSM 22380","na":1,"nb":2,"a":[["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A305900","Endozoicomonas elysicola"],["NCBITaxon%3A1121862","Endozoicomonas elysicola DSM 22380"]]},{"id":"NCBITaxon:1121867","l":"Enterovibrio calviensis DSM 14347","na":1,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A91359","Enterovibrio calviensis"],["NCBITaxon%3A1121867","Enterovibrio calviensis DSM 14347"]]},{"id":"NCBITaxon:1121868","l":"Enterovibrio nigricans DSM 22720","na":1,"nb":2,"a":[["mediterranean-envo-01000207.html","mediterranean"]],"b":[["NCBITaxon%3A504469","Enterovibrio nigricans"],["NCBITaxon%3A1121868","Enterovibrio nigricans DSM 22720"]]},{"id":"NCBITaxon:1121873","l":"Erysipelothrix inopinata DSM 15511","na":1,"nb":2,"a":[["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["NCBITaxon%3A225084","Erysipelothrix inopinata"],["NCBITaxon%3A1121873","Erysipelothrix inopinata DSM 15511"]]},{"id":"NCBITaxon:1121879","l":"Ferrimonas kyonanensis DSM 18153","na":1,"nb":2,"a":[["beach-envo-00000091.html","beach"]],"b":[["NCBITaxon%3A364763","Ferrimonas kyonanensis"],["NCBITaxon%3A1121879","Ferrimonas kyonanensis DSM 18153"]]},{"id":"NCBITaxon:1121883","l":"Fervidobacterium gondwanense DSM 13020","na":1,"nb":2,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A44754","Fervidobacterium gondwanense"],["NCBITaxon%3A1121883","Fervidobacterium gondwanense DSM 13020"]]},{"id":"NCBITaxon:1121889","l":"Flavobacterium filum DSM 17961","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A370974","Flavobacterium filum"],["NCBITaxon%3A1121889","Flavobacterium filum DSM 17961"]]},{"id":"NCBITaxon:1121895","l":"Flavobacterium rivuli WB 3.3-2 = DSM 21788","na":1,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"]],"b":[["NCBITaxon%3A498301","Flavobacterium rivuli"],["NCBITaxon%3A1121895","Flavobacterium rivuli WB 3.3-2 = DSM 21788"]]},{"id":"NCBITaxon:1121896","l":"Flavobacterium sasangense DSM 21067","na":1,"nb":2,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A503361","Flavobacterium sasangense"],["NCBITaxon%3A1121896","Flavobacterium sasangense DSM 21067"]]},{"id":"NCBITaxon:1121898","l":"Flavobacterium subsaxonicum WB 4.1-42 = DSM 21790","na":1,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"]],"b":[["NCBITaxon%3A426226","Flavobacterium subsaxonicum"],["NCBITaxon%3A1121898","Flavobacterium subsaxonicum WB 4.1-42 = DSM 21790"]]},{"id":"NCBITaxon:1121902","l":"Eisenibacter elegans DSM 3317","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A997","Eisenibacter elegans"],["NCBITaxon%3A1121902","Eisenibacter elegans DSM 3317"]]},{"id":"NCBITaxon:1121903","l":"Hugenholtzia roseola DSM 9546","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A1002","Hugenholtzia roseola"],["NCBITaxon%3A1121903","Hugenholtzia roseola DSM 9546"]]},{"id":"NCBITaxon:1121904","l":"Flexithrix dorotheae DSM 6795","na":1,"nb":2,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A70993","Flexithrix dorotheae"],["NCBITaxon%3A1121904","Flexithrix dorotheae DSM 6795"]]},{"id":"NCBITaxon:1121906","l":"Fructobacillus durionis DSM 19113","na":1,"nb":2,"a":[["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A283737","Fructobacillus durionis"],["NCBITaxon%3A1121906","Fructobacillus durionis DSM 19113"]]},{"id":"NCBITaxon:1121914","l":"Gemella cuniculi DSM 15828","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A150240","Gemella cuniculi"],["NCBITaxon%3A1121914","Gemella cuniculi DSM 15828"]]},{"id":"NCBITaxon:1121926","l":"Glycomyces arizonensis DSM 44726","na":1,"nb":2,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A256035","Glycomyces arizonensis"],["NCBITaxon%3A1121926","Glycomyces arizonensis DSM 44726"]]},{"id":"NCBITaxon:1121928","l":"Gordonia shandongensis DSM 45094","na":1,"nb":2,"a":[["undersea-feature-envo-00000104.html","undersea feature"]],"b":[["NCBITaxon%3A376351","Gordonia shandongensis"],["NCBITaxon%3A1121928","Gordonia shandongensis DSM 45094"]]},{"id":"NCBITaxon:1121931","l":"Christiangramia echinicola DSM 19838","na":1,"nb":2,"a":[["inlet-envo-00000475.html","inlet"]],"b":[["NCBITaxon%3A279359","Christiangramia echinicola"],["NCBITaxon%3A1121931","Christiangramia echinicola DSM 19838"]]},{"id":"NCBITaxon:1121933","l":"Granulicoccus phenolivorans DSM 17626 = NBRC 107789 = JCM 15570","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A266854","Granulicoccus phenolivorans"],["NCBITaxon%3A1121933","Granulicoccus phenolivorans DSM 17626 = NBRC 107789 = JCM 15570"]]},{"id":"NCBITaxon:1121936","l":"Halalkalibacillus halophilus DSM 18494","na":1,"nb":2,"a":[["city-envo-00000856.html","city"]],"b":[["NCBITaxon%3A392827","Halalkalibacillus halophilus"],["NCBITaxon%3A1121936","Halalkalibacillus halophilus DSM 18494"]]},{"id":"NCBITaxon:1121940","l":"Halomonas halocynthiae DSM 14573","na":1,"nb":2,"a":[["inlet-envo-00000475.html","inlet"]],"b":[["NCBITaxon%3A176290","Halomonas halocynthiae"],["NCBITaxon%3A1121940","Halomonas halocynthiae DSM 14573"]]},{"id":"NCBITaxon:1121941","l":"Halomonas halodenitrificans DSM 735","na":1,"nb":2,"a":[["food-product-foodon-00001002.html","food product"]],"b":[["NCBITaxon%3A28252","Halomonas halodenitrificans"],["NCBITaxon%3A1121941","Halomonas halodenitrificans DSM 735"]]},{"id":"NCBITaxon:1121943","l":"Modicisalibacter luteus DSM 23508","na":1,"nb":2,"a":[["undersea-feature-envo-00000104.html","undersea feature"]],"b":[["NCBITaxon%3A453962","Modicisalibacter luteus"],["NCBITaxon%3A1121943","Modicisalibacter luteus DSM 23508"]]},{"id":"NCBITaxon:1121945","l":"Halorubrum ezzemoulense DSM 17463","na":1,"nb":2,"a":[["sabkha-envo-00000151.html","sabkha"]],"b":[["NCBITaxon%3A337243","Halorubrum ezzemoulense"],["NCBITaxon%3A1121945","Halorubrum ezzemoulense DSM 17463"]]},{"id":"NCBITaxon:1121946","l":"Hamadaea tsunoensis DSM 44101","na":1,"nb":2,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A53368","Hamadaea tsunoensis"],["NCBITaxon%3A1121946","Hamadaea tsunoensis DSM 44101"]]},{"id":"NCBITaxon:1121949","l":"Henriciella marina DSM 19595","na":1,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A453851","Henriciella marina"],["NCBITaxon%3A1121949","Henriciella marina DSM 19595"]]},{"id":"NCBITaxon:1121953","l":"Hymenobacter aerophilus DSM 13606","na":1,"nb":2,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A119644","Hymenobacter aerophilus"],["NCBITaxon%3A1121953","Hymenobacter aerophilus DSM 13606"]]},{"id":"NCBITaxon:1121955","l":"Hymenobacter daecheongensis DSM 21074","na":1,"nb":2,"a":[["dam-envo-00000074.html","dam"]],"b":[["NCBITaxon%3A496053","Hymenobacter daecheongensis"],["NCBITaxon%3A1121955","Hymenobacter daecheongensis DSM 21074"]]},{"id":"NCBITaxon:1121957","l":"Hymenobacter norwichensis DSM 15439","na":1,"nb":2,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A223903","Hymenobacter norwichensis"],["NCBITaxon%3A1121957","Hymenobacter norwichensis DSM 15439"]]},{"id":"NCBITaxon:1122132","l":"Kaistia granuli DSM 23481","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A363259","Kaistia granuli"],["NCBITaxon%3A1122132","Kaistia granuli DSM 23481"]]},{"id":"NCBITaxon:1122138","l":"Kribbella catacumbae DSM 19601","na":1,"nb":2,"a":[["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A460086","Kribbella catacumbae"],["NCBITaxon%3A1122138","Kribbella catacumbae DSM 19601"]]},{"id":"NCBITaxon:1122152","l":"Lactobacillus psittaci DSM 15354","na":1,"nb":2,"a":[["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A116089","Lactobacillus psittaci"],["NCBITaxon%3A1122152","Lactobacillus psittaci DSM 15354"]]},{"id":"NCBITaxon:1122153","l":"Ligilactobacillus saerimneri DSM 16049","na":1,"nb":2,"a":[["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A228229","Ligilactobacillus saerimneri"],["NCBITaxon%3A1122153","Ligilactobacillus saerimneri DSM 16049"]]},{"id":"NCBITaxon:1122154","l":"Pseudolactococcus chungangensis CAU 28 = DSM 22330","na":1,"nb":2,"a":[["foam-habitatmech-bacdive-df2f59b773.html","Foam"]],"b":[["NCBITaxon%3A451457","Pseudolactococcus chungangensis"],["NCBITaxon%3A1122154","Pseudolactococcus chungangensis CAU 28 = DSM 22330"]]},{"id":"NCBITaxon:1122155","l":"Lactonifactor longoviformis DSM 17459","na":1,"nb":2,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A341220","Lactonifactor longoviformis"],["NCBITaxon%3A1122155","Lactonifactor longoviformis DSM 17459"]]},{"id":"NCBITaxon:1122156","l":"Lampropedia hyalina DSM 16112","na":1,"nb":2,"a":[["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A198706","Lampropedia hyalina"],["NCBITaxon%3A1122156","Lampropedia hyalina DSM 16112"]]},{"id":"NCBITaxon:1122159","l":"Leeuwenhoekiella marinoflava DSM 3653","na":1,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A988","Leeuwenhoekiella marinoflava"],["NCBITaxon%3A1122159","Leeuwenhoekiella marinoflava DSM 3653"]]},{"id":"NCBITaxon:1122162","l":"Legionella israelensis DSM 19235","na":1,"nb":2,"a":[["pond-envo-00000033.html","pond"]],"b":[["NCBITaxon%3A454","Legionella israelensis"],["NCBITaxon%3A1122162","Legionella israelensis DSM 19235"]]},{"id":"NCBITaxon:1122164","l":"Legionella lansingensis DSM 19556 = ATCC 49751","na":1,"nb":2,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["NCBITaxon%3A45067","Legionella lansingensis"],["NCBITaxon%3A1122164","Legionella lansingensis DSM 19556 = ATCC 49751"]]},{"id":"NCBITaxon:1122165","l":"Legionella moravica DSM 19234","na":1,"nb":2,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A39962","Legionella moravica"],["NCBITaxon%3A1122165","Legionella moravica DSM 19234"]]},{"id":"NCBITaxon:1122167","l":"Legionella quinlivanii DSM 21216","na":1,"nb":2,"a":[["air-conditioning-unit-envo-00002874.html","air conditioning unit"]],"b":[["NCBITaxon%3A45073","Legionella quinlivanii"],["NCBITaxon%3A1122167","Legionella quinlivanii DSM 21216"]]},{"id":"NCBITaxon:1122169","l":"Legionella shakespearei DSM 23087","na":1,"nb":2,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A45075","Legionella shakespearei"],["NCBITaxon%3A1122169","Legionella shakespearei DSM 23087"]]},{"id":"NCBITaxon:1122171","l":"Leptotrichia hofstadii DSM 21651","na":1,"nb":2,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A157688","Leptotrichia hofstadii"],["NCBITaxon%3A1122171","Leptotrichia hofstadii DSM 21651"]]},{"id":"NCBITaxon:1122173","l":"Leptotrichia trevisanii DSM 22070","na":1,"nb":2,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A109328","Leptotrichia trevisanii"],["NCBITaxon%3A1122173","Leptotrichia trevisanii DSM 22070"]]},{"id":"NCBITaxon:1122174","l":"Leptotrichia wadei DSM 19758","na":1,"nb":2,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A157687","Leptotrichia wadei"],["NCBITaxon%3A1122174","Leptotrichia wadei DSM 19758"]]},{"id":"NCBITaxon:1122175","l":"Leucobacter chironomi DSM 19883","na":1,"nb":2,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["NCBITaxon%3A491918","Leucobacter chironomi"],["NCBITaxon%3A1122175","Leucobacter chironomi DSM 19883"]]},{"id":"NCBITaxon:1122183","l":"Luteimonas mephitis DSM 12574","na":1,"nb":2,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"]],"b":[["NCBITaxon%3A83615","Luteimonas mephitis"],["NCBITaxon%3A1122183","Luteimonas mephitis DSM 12574"]]},{"id":"NCBITaxon:1122187","l":"Lysobacter oryzae DSM 21044","na":1,"nb":2,"a":[["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A498057","Lysobacter oryzae"],["NCBITaxon%3A1122187","Lysobacter oryzae DSM 21044"]]},{"id":"NCBITaxon:1122188","l":"Lysobacter spongiicola DSM 21749","na":1,"nb":2,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1122188","Lysobacter spongiicola DSM 21749"],["NCBITaxon%3A435289","Novilysobacter spongiicola"]]},{"id":"NCBITaxon:1122189","l":"Malonomonas rubra DSM 5091","na":1,"nb":2,"a":[["canal-envo-00000014.html","canal"]],"b":[["NCBITaxon%3A57040","Malonomonas rubra"],["NCBITaxon%3A1122189","Malonomonas rubra DSM 5091"]]},{"id":"NCBITaxon:1122200","l":"Marinobacterium jannaschii DSM 6295","na":1,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A64970","Marinobacterium jannaschii"],["NCBITaxon%3A1122200","Marinobacterium jannaschii DSM 6295"]]},{"id":"NCBITaxon:1122202","l":"Marinobacterium rhizophilum DSM 18822","na":1,"nb":2,"a":[["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A420402","Marinobacterium rhizophilum"],["NCBITaxon%3A1122202","Marinobacterium rhizophilum DSM 18822"]]},{"id":"NCBITaxon:1122213","l":"Maritalea myrionectae DSM 19524","na":1,"nb":2,"a":[["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["NCBITaxon%3A454601","Maritalea myrionectae"],["NCBITaxon%3A1122213","Maritalea myrionectae DSM 19524"]]},{"id":"NCBITaxon:1122214","l":"Martelella mediterranea DSM 17316","na":1,"nb":2,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A293089","Martelella mediterranea"],["NCBITaxon%3A1122214","Martelella mediterranea DSM 17316"]]},{"id":"NCBITaxon:1122215","l":"Massilia niastensis DSM 21313","na":1,"nb":2,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A544911","Massilia niastensis"],["NCBITaxon%3A1122215","Massilia niastensis DSM 21313"]]},{"id":"NCBITaxon:1122219","l":"Megasphaera cerevisiae DSM 20462","na":1,"nb":2,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A39029","Megasphaera cerevisiae"],["NCBITaxon%3A1122219","Megasphaera cerevisiae DSM 20462"]]},{"id":"NCBITaxon:1122221","l":"Meiothermus cerbereus DSM 11376","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A65552","Meiothermus cerbereus"],["NCBITaxon%3A1122221","Meiothermus cerbereus DSM 11376"]]},{"id":"NCBITaxon:1122222","l":"Meiothermus taiwanensis DSM 14542","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A172827","Meiothermus taiwanensis"],["NCBITaxon%3A1122222","Meiothermus taiwanensis DSM 14542"]]},{"id":"NCBITaxon:1122224","l":"Neomelitea salexigens DSM 19753","na":1,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A1122224","Neomelitea salexigens DSM 19753"],["NCBITaxon%3A354246","Spongiibacter marinus"]]},{"id":"NCBITaxon:1122236","l":"Methylophilus methylotrophus DSM 46235 = ATCC 53528","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A17","Methylophilus methylotrophus"],["NCBITaxon%3A1122236","Methylophilus methylotrophus DSM 46235 = ATCC 53528"]]},{"id":"NCBITaxon:1122237","l":"Microbacterium gubbeenense DSM 15944","na":1,"nb":2,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["NCBITaxon%3A159896","Microbacterium gubbeenense"],["NCBITaxon%3A1122237","Microbacterium gubbeenense DSM 15944"]]},{"id":"NCBITaxon:1122241","l":"Moorella mulderi DSM 14980","na":1,"nb":2,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A1122241","Moorella mulderi DSM 14980"],["NCBITaxon%3A202604","Neomoorella mulderi"]]},{"id":"NCBITaxon:1122243","l":"Moraxella boevrei DSM 14165","na":1,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A346665","Faucicola boevrei"],["NCBITaxon%3A1122243","Moraxella boevrei DSM 14165"]]},{"id":"NCBITaxon:1122244","l":"Moraxella caprae DSM 19149","na":1,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A90240","Moraxella caprae"],["NCBITaxon%3A1122244","Moraxella caprae DSM 19149"]]},{"id":"NCBITaxon:1122247","l":"Mycolicibacterium hassiacum DSM 44199","na":1,"nb":2,"a":[["urethra-bto-0001426.html","urethra"]],"b":[["NCBITaxon%3A46351","Mycolicibacterium hassiacum"],["NCBITaxon%3A1122247","Mycolicibacterium hassiacum DSM 44199"]]},{"id":"NCBITaxon:1122252","l":"Marinospirillum celere","na":1,"nb":2,"a":[["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A1122252","Marinospirillum celere"],["NCBITaxon%3A497722","Marinospirillum celere DSM 18438"]]},{"id":"NCBITaxon:1122604","l":"Nevskia soli DSM 19509","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A418856","Nevskia soli"],["NCBITaxon%3A1122604","Nevskia soli DSM 19509"]]},{"id":"NCBITaxon:1122609","l":"Nocardioides halotolerans DSM 19273","na":1,"nb":2,"a":[["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A433660","Nocardioides halotolerans"],["NCBITaxon%3A1122609","Nocardioides halotolerans DSM 19273"]]},{"id":"NCBITaxon:1122611","l":"Nonomuraea coxensis DSM 45129","na":1,"nb":2,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A404386","Nonomuraea coxensis"],["NCBITaxon%3A1122611","Nonomuraea coxensis DSM 45129"]]},{"id":"NCBITaxon:1122615","l":"Oceanobacter kriegii DSM 6294","na":1,"nb":2,"a":[["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A64972","Oceanobacter kriegii"],["NCBITaxon%3A1122615","Oceanobacter kriegii DSM 6294"]]},{"id":"NCBITaxon:1122618","l":"Oenococcus oeni DSM 20252 = AWRIB129","na":1,"nb":2,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A1247","Oenococcus oeni"],["NCBITaxon%3A1122618","Oenococcus oeni DSM 20252 = AWRIB129"]]},{"id":"NCBITaxon:1122619","l":"Oligella ureolytica DSM 18253","na":1,"nb":2,"a":[["urethra-bto-0001426.html","urethra"]],"b":[["NCBITaxon%3A90244","Oligella ureolytica"],["NCBITaxon%3A1122619","Oligella ureolytica DSM 18253"]]},{"id":"NCBITaxon:1122919","l":"Paenibacillus ginsengihumi DSM 21568","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A431596","Paenibacillus ginsengihumi"],["NCBITaxon%3A1122919","Paenibacillus ginsengihumi DSM 21568"]]},{"id":"NCBITaxon:1122925","l":"Paenibacillus sanguinis 2301083 = DSM 16941","na":1,"nb":2,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A225906","Paenibacillus sanguinis"],["NCBITaxon%3A1122925","Paenibacillus sanguinis 2301083 = DSM 16941"]]},{"id":"NCBITaxon:1122930","l":"Papillibacter cinnamivorans DSM 12816","na":1,"nb":2,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A100176","Papillibacter cinnamivorans"],["NCBITaxon%3A1122930","Papillibacter cinnamivorans DSM 12816"]]},{"id":"NCBITaxon:1122938","l":"Pasteurella testudinis DSM 23072","na":1,"nb":2,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A761","Pasteurella testudinis"],["NCBITaxon%3A1122938","Pasteurella testudinis DSM 23072"]]},{"id":"NCBITaxon:1122939","l":"Patulibacter americanus DSM 16676","na":1,"nb":2,"a":[["plateau-envo-00000182.html","plateau"]],"b":[["NCBITaxon%3A588672","Patulibacter americanus"],["NCBITaxon%3A1122939","Patulibacter americanus DSM 16676"]]},{"id":"NCBITaxon:1122947","l":"Pelosinus fermentans DSM 17108","na":1,"nb":2,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A365349","Pelosinus fermentans"],["NCBITaxon%3A1122947","Pelosinus fermentans DSM 17108"]]},{"id":"NCBITaxon:1122951","l":"Perlucidibaca piscinae DSM 21586","na":1,"nb":2,"a":[["pond-envo-00000033.html","pond"]],"b":[["NCBITaxon%3A392589","Perlucidibaca piscinae"],["NCBITaxon%3A1122951","Perlucidibaca piscinae DSM 21586"]]},{"id":"NCBITaxon:1122953","l":"Petrotoga halophila DSM 16923","na":1,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A301141","Petrotoga halophila"],["NCBITaxon%3A1122953","Petrotoga halophila DSM 16923"]]},{"id":"NCBITaxon:1122955","l":"Petrotoga olearia DSM 13574","na":1,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A156203","Petrotoga olearia"],["NCBITaxon%3A1122955","Petrotoga olearia DSM 13574"]]},{"id":"NCBITaxon:1122956","l":"Petrotoga sibirica DSM 13575","na":1,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A156202","Petrotoga sibirica"],["NCBITaxon%3A1122956","Petrotoga sibirica DSM 13575"]]},{"id":"NCBITaxon:1122963","l":"Pleomorphomonas oryzae DSM 16300","na":1,"nb":2,"a":[["rice-field-envo-00000296.html","rice field"]],"b":[["NCBITaxon%3A261934","Pleomorphomonas oryzae"],["NCBITaxon%3A1122963","Pleomorphomonas oryzae DSM 16300"]]},{"id":"NCBITaxon:1122970","l":"Erythrobacter cryptus DSM 12079","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A196588","Erythrobacter cryptus"],["NCBITaxon%3A1122970","Erythrobacter cryptus DSM 12079"]]},{"id":"NCBITaxon:1122980","l":"Segatella baroniae DSM 16972 = JCM 13447","na":1,"nb":2,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A305719","Segatella baroniae"],["NCBITaxon%3A1122980","Segatella baroniae DSM 16972 = JCM 13447"]]},{"id":"NCBITaxon:1122982","l":"Prevotella denticola DSM 20614 = JCM 13449","na":1,"nb":2,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["NCBITaxon%3A28129","Prevotella denticola"],["NCBITaxon%3A1122982","Prevotella denticola DSM 20614 = JCM 13449"]]},{"id":"NCBITaxon:1122983","l":"Prevotella falsenii DSM 22864 = JCM 15124","na":1,"nb":2,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["NCBITaxon%3A515414","Prevotella falsenii"],["NCBITaxon%3A1122983","Prevotella falsenii DSM 22864 = JCM 15124"]]},{"id":"NCBITaxon:1122988","l":"Hoylesella nanceiensis DSM 19126 = JCM 15639","na":1,"nb":2,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A425941","Hoylesella nanceiensis"],["NCBITaxon%3A1122988","Hoylesella nanceiensis DSM 19126 = JCM 15639"]]},{"id":"NCBITaxon:1122997","l":"Acidipropionibacterium jensenii DSM 20535","na":1,"nb":2,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["NCBITaxon%3A1749","Acidipropionibacterium jensenii"],["NCBITaxon%3A1122997","Acidipropionibacterium jensenii DSM 20535"]]},{"id":"NCBITaxon:1122998","l":"Acidipropionibacterium thoenii DSM 20276","na":1,"nb":2,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["NCBITaxon%3A1751","Acidipropionibacterium thoenii"],["NCBITaxon%3A1122998","Acidipropionibacterium thoenii DSM 20276"]]},{"id":"NCBITaxon:1122999","l":"Propionicicella superfundia DSM 22317","na":1,"nb":2,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A348582","Propionicicella superfundia"],["NCBITaxon%3A1122999","Propionicicella superfundia DSM 22317"]]},{"id":"NCBITaxon:1123004","l":"Propionispora vibrioides DSM 13305","na":1,"nb":2,"a":[["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A112903","Propionispora vibrioides"],["NCBITaxon%3A1123004","Propionispora vibrioides DSM 13305"]]},{"id":"NCBITaxon:1123006","l":"Propionivibrio pelophilus DSM 12018","na":1,"nb":2,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["NCBITaxon%3A65401","Propionivibrio pelophilus"],["NCBITaxon%3A1123006","Propionivibrio pelophilus DSM 12018"]]},{"id":"NCBITaxon:1123008","l":"Proteiniphilum acetatigenes DSM 18083","na":1,"nb":2,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A294710","Proteiniphilum acetatigenes"],["NCBITaxon%3A1123008","Proteiniphilum acetatigenes DSM 18083"]]},{"id":"NCBITaxon:1123013","l":"Pseudoclavibacter soli DSM 23366","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A452623","Pseudoclavibacter soli"],["NCBITaxon%3A1123013","Pseudoclavibacter soli DSM 23366"]]},{"id":"NCBITaxon:1123016","l":"Stutzerimonas balearica DSM 6083","na":1,"nb":2,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A74829","Stutzerimonas balearica"],["NCBITaxon%3A1123016","Stutzerimonas balearica DSM 6083"]]},{"id":"NCBITaxon:1123021","l":"Pseudomonas thermotolerans DSM 14292","na":1,"nb":2,"a":[["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A1123021","Pseudomonas thermotolerans DSM 14292"],["NCBITaxon%3A157784","Zestomonas thermotolerans"]]},{"id":"NCBITaxon:1123022","l":"Halopseudomonas xiamenensis DSM 22326","na":1,"nb":2,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A157792","Halopseudomonas xiamenensis"],["NCBITaxon%3A1123022","Halopseudomonas xiamenensis DSM 22326"]]},{"id":"NCBITaxon:1123027","l":"Pseudorhodobacter ferrugineus DSM 5888","na":1,"nb":2,"a":[["brackish-water-body-envo-01001321.html","brackish water body"]],"b":[["NCBITaxon%3A77008","Pseudorhodobacter ferrugineus"],["NCBITaxon%3A1123027","Pseudorhodobacter ferrugineus DSM 5888"]]},{"id":"NCBITaxon:1123030","l":"Pseudoxanthomonas kalamensis DSM 18571","na":1,"nb":2,"a":[["atoll-envo-00000166.html","atoll"]],"b":[["NCBITaxon%3A289483","Pseudoxanthomonas kalamensis"],["NCBITaxon%3A1123030","Pseudoxanthomonas kalamensis DSM 18571"]]},{"id":"NCBITaxon:1123031","l":"Pseudoxanthomonas taiwanensis DSM 22914","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A176598","Pseudoxanthomonas taiwanensis"],["NCBITaxon%3A1123031","Pseudoxanthomonas taiwanensis DSM 22914"]]},{"id":"NCBITaxon:1123034","l":"Psychrobacter phenylpyruvicus DSM 7000 = NBRC 102152","na":1,"nb":2,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A29432","Psychrobacter phenylpyruvicus"],["NCBITaxon%3A1123034","Psychrobacter phenylpyruvicus DSM 7000 = NBRC 102152"]]},{"id":"NCBITaxon:1123035","l":"Psychroflexus tropicus DSM 15496","na":1,"nb":2,"a":[["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A197345","Psychroflexus tropicus"],["NCBITaxon%3A1123035","Psychroflexus tropicus DSM 15496"]]},{"id":"NCBITaxon:1123052","l":"Rathayibacter toxicus DSM 7488","na":1,"nb":2,"a":[["bridge-envo-00000075.html","bridge"]],"b":[["NCBITaxon%3A145458","Rathayibacter toxicus"],["NCBITaxon%3A1123052","Rathayibacter toxicus DSM 7488"]]},{"id":"NCBITaxon:1123059","l":"Robiginitomaculum antarcticum DSM 21748","na":1,"nb":2,"a":[["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"]],"b":[["NCBITaxon%3A437507","Robiginitomaculum antarcticum"],["NCBITaxon%3A1123059","Robiginitomaculum antarcticum DSM 21748"]]},{"id":"NCBITaxon:1123060","l":"Roseomonas aerilata DSM 19363","na":1,"nb":2,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A452982","Muricoccus aerilatus"],["NCBITaxon%3A1123060","Roseomonas aerilata DSM 19363"]]},{"id":"NCBITaxon:1123061","l":"Neoroseomonas lacus DSM 19439","na":1,"nb":2,"a":[["undersea-feature-envo-00000104.html","undersea feature"]],"b":[["NCBITaxon%3A287609","Neoroseomonas lacus"],["NCBITaxon%3A1123061","Neoroseomonas lacus DSM 19439"]]},{"id":"NCBITaxon:1123064","l":"Roseomonas vinacea DSM 19362","na":1,"nb":2,"a":[["plateau-envo-00000182.html","plateau"]],"b":[["NCBITaxon%3A424704","Muricoccus vinaceus"],["NCBITaxon%3A1123064","Roseomonas vinacea DSM 19362"]]},{"id":"NCBITaxon:1123070","l":"Rubritalea marina DSM 17716","na":1,"nb":2,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A361055","Rubritalea marina"],["NCBITaxon%3A1123070","Rubritalea marina DSM 17716"]]},{"id":"NCBITaxon:1123072","l":"Rubritepida flocculans DSM 14296","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A182403","Rubritepida flocculans"],["NCBITaxon%3A1123072","Rubritepida flocculans DSM 14296"]]},{"id":"NCBITaxon:1123078","l":"Runella zeae DSM 19591","na":1,"nb":2,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A94255","Runella zeae"],["NCBITaxon%3A1123078","Runella zeae DSM 19591"]]},{"id":"NCBITaxon:1123225","l":"Spongiispira norvegica","na":1,"nb":2,"a":[["hemolymph-bto-0000572.html","hemolymph"]],"b":[["NCBITaxon%3A1123225","Spongiispira norvegica"],["NCBITaxon%3A354245","Spongiispira norvegica DSM 17749"]]},{"id":"NCBITaxon:1123229","l":"Salinarimonas rosea DSM 21201","na":1,"nb":2,"a":[["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A552063","Salinarimonas rosea"],["NCBITaxon%3A1123229","Salinarimonas rosea DSM 21201"]]},{"id":"NCBITaxon:1123230","l":"Salinicoccus albus DSM 19776","na":1,"nb":2,"a":[["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A418756","Salinicoccus albus"],["NCBITaxon%3A1123230","Salinicoccus albus DSM 19776"]]},{"id":"NCBITaxon:1123232","l":"Lacicoccus kunmingensis DSM 17847","na":1,"nb":2,"a":[["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A399363","Lacicoccus kunmingensis"],["NCBITaxon%3A1123232","Lacicoccus kunmingensis DSM 17847"]]},{"id":"NCBITaxon:1123238","l":"Atlantibacter subterranea DSM 16208","na":1,"nb":2,"a":[["ridge-envo-00000283.html","ridge"]],"b":[["NCBITaxon%3A1123238","Atlantibacter subterranea DSM 16208"],["NCBITaxon%3A255519","Atlantibacter subterraneus"]]},{"id":"NCBITaxon:1123241","l":"Nakamurella lactea DSM 19367","na":1,"nb":2,"a":[["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A459515","Nakamurella lactea"],["NCBITaxon%3A1123241","Nakamurella lactea DSM 19367"]]},{"id":"NCBITaxon:1123242","l":"Schlesneria paludicola DSM 18645","na":1,"nb":2,"a":[["marsh-envo-00000035.html","marsh"]],"b":[["NCBITaxon%3A360056","Schlesneria paludicola"],["NCBITaxon%3A1123242","Schlesneria paludicola DSM 18645"]]},{"id":"NCBITaxon:1123247","l":"Sediminimonas qiaohouensis DSM 21189","na":1,"nb":2,"a":[["mine-envo-00000076.html","mine"]],"b":[["NCBITaxon%3A552061","Sediminimonas qiaohouensis"],["NCBITaxon%3A1123247","Sediminimonas qiaohouensis DSM 21189"]]},{"id":"NCBITaxon:1123248","l":"Segetibacter koreensis DSM 18137","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A398037","Segetibacter koreensis"],["NCBITaxon%3A1123248","Segetibacter koreensis DSM 18137"]]},{"id":"NCBITaxon:1123252","l":"Shimazuella kribbensis DSM 45090","na":1,"nb":2,"a":[["mountain-envo-00000081.html","mountain"]],"b":[["NCBITaxon%3A139808","Shimazuella kribbensis"],["NCBITaxon%3A1123252","Shimazuella kribbensis DSM 45090"]]},{"id":"NCBITaxon:1123256","l":"Solimonas variicoloris DSM 15731","na":1,"nb":2,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"]],"b":[["NCBITaxon%3A254408","Solimonas variicoloris"],["NCBITaxon%3A1123256","Solimonas variicoloris DSM 15731"]]},{"id":"NCBITaxon:1123261","l":"Solimonas soli DSM 21787","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A413479","Solimonas soli"],["NCBITaxon%3A1123261","Solimonas soli DSM 21787"]]},{"id":"NCBITaxon:1123262","l":"Solirubrobacter soli DSM 22325","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A363832","Solirubrobacter soli"],["NCBITaxon%3A1123262","Solirubrobacter soli DSM 22325"]]},{"id":"NCBITaxon:1123263","l":"Solobacterium moorei DSM 22971","na":1,"nb":2,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A102148","Solobacterium moorei"],["NCBITaxon%3A1123263","Solobacterium moorei DSM 22971"]]},{"id":"NCBITaxon:1123264","l":"Sphingobacterium multivorum DSM 11691","na":1,"nb":2,"a":[["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A28454","Sphingobacterium multivorum"],["NCBITaxon%3A1123264","Sphingobacterium multivorum DSM 11691"]]},{"id":"NCBITaxon:1123277","l":"Spirosoma panaciterrae DSM 21099","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A496058","Spirosoma panaciterrae"],["NCBITaxon%3A1123277","Spirosoma panaciterrae DSM 21099"]]},{"id":"NCBITaxon:1123279","l":"Spongiibacter tropicus DSM 19543","na":1,"nb":2,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["NCBITaxon%3A454602","Spongiibacter tropicus"],["NCBITaxon%3A1123279","Spongiibacter tropicus DSM 19543"]]},{"id":"NCBITaxon:1123280","l":"Sporacetigenium mesophilum DSM 16796","na":1,"nb":2,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A286803","Sporacetigenium mesophilum"],["NCBITaxon%3A1123280","Sporacetigenium mesophilum DSM 16796"]]},{"id":"NCBITaxon:1123281","l":"Sporanaerobacter acetigenes DSM 13106","na":1,"nb":2,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A165813","Sporanaerobacter acetigenes"],["NCBITaxon%3A1123281","Sporanaerobacter acetigenes DSM 13106"]]},{"id":"NCBITaxon:1123282","l":"Sporobacter termitidis DSM 10068","na":1,"nb":2,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A44749","Sporobacter termitidis"],["NCBITaxon%3A1123282","Sporobacter termitidis DSM 10068"]]},{"id":"NCBITaxon:1123288","l":"Sporomusa ovata DSM 2662","na":1,"nb":2,"a":[["silage-envo-00003030.html","silage"]],"b":[["NCBITaxon%3A2378","Sporomusa ovata"],["NCBITaxon%3A1123288","Sporomusa ovata DSM 2662"]]},{"id":"NCBITaxon:1123347","l":"Tenacibaculum ovolyticum DSM 18103","na":1,"nb":2,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["NCBITaxon%3A104270","Tenacibaculum ovolyticum"],["NCBITaxon%3A1123347","Tenacibaculum ovolyticum DSM 18103"]]},{"id":"NCBITaxon:1123355","l":"Terasakiella pusilla DSM 6293","na":1,"nb":2,"a":[["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A64973","Terasakiella pusilla"],["NCBITaxon%3A1123355","Terasakiella pusilla DSM 6293"]]},{"id":"NCBITaxon:1123366","l":"Thalassospira xiamenensis M-5 = DSM 17429","na":1,"nb":2,"a":[["oil-envo-00002985.html","oil"]],"b":[["NCBITaxon%3A220697","Thalassospira xiamenensis"],["NCBITaxon%3A1123366","Thalassospira xiamenensis M-5 = DSM 17429"]]},{"id":"NCBITaxon:1123369","l":"Thermoanaerobacter uzonensis DSM 18761","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A447593","Thermoanaerobacter uzonensis"],["NCBITaxon%3A1123369","Thermoanaerobacter uzonensis DSM 18761"]]},{"id":"NCBITaxon:1123372","l":"Thermodesulfobacterium hveragerdense DSM 12571","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A53424","Thermodesulfobacterium hveragerdense"],["NCBITaxon%3A1123372","Thermodesulfobacterium hveragerdense DSM 12571"]]},{"id":"NCBITaxon:1123374","l":"Thermodesulfovibrio hydrogeniphilus DSM 18151","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A412896","Thermodesulfovibrio hydrogeniphilus"],["NCBITaxon%3A1123374","Thermodesulfovibrio hydrogeniphilus DSM 18151"]]},{"id":"NCBITaxon:1123375","l":"Thermodesulfovibrio islandicus DSM 12570","na":1,"nb":2,"a":[["hot-spring-envo-00000051.html","hot spring"]],"b":[["NCBITaxon%3A1123375","Thermodesulfovibrio islandicus DSM 12570"],["NCBITaxon%3A28262","Thermodesulfovibrio yellowstonii"]]},{"id":"NCBITaxon:1123379","l":"Thermosediminibacter litoriperuensis DSM 16647","na":1,"nb":2,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A291989","Thermosediminibacter litoriperuensis"],["NCBITaxon%3A1123379","Thermosediminibacter litoriperuensis DSM 16647"]]},{"id":"NCBITaxon:1123385","l":"Pseudothermotoga subterranea DSM 9912 = NBRC 107924","na":1,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A39100","Pseudothermotoga subterranea"],["NCBITaxon%3A1123385","Pseudothermotoga subterranea DSM 9912 = NBRC 107924"]]},{"id":"NCBITaxon:1123391","l":"Thermus scotoductus DSM 8553","na":1,"nb":2,"a":[["drinking-water-envo-00003064.html","drinking water"]],"b":[["NCBITaxon%3A37636","Thermus scotoductus"],["NCBITaxon%3A1123391","Thermus scotoductus DSM 8553"]]},{"id":"NCBITaxon:1123392","l":"Thiobacillus denitrificans DSM 12475","na":1,"nb":2,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A36861","Thiobacillus denitrificans"],["NCBITaxon%3A1123392","Thiobacillus denitrificans DSM 12475"]]},{"id":"NCBITaxon:1123398","l":"Thiothrix caldifontis DSM 21228","na":1,"nb":2,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A525918","Thiothrix caldifontis"],["NCBITaxon%3A1123398","Thiothrix caldifontis DSM 21228"]]},{"id":"NCBITaxon:1123399","l":"Thiolinea disciformis DSM 14473","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A125614","Thiolinea disciformis"],["NCBITaxon%3A1123399","Thiolinea disciformis DSM 14473"]]},{"id":"NCBITaxon:1123400","l":"Thiofilum flexile DSM 14609","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A125627","Thiofilum flexile"],["NCBITaxon%3A1123400","Thiofilum flexile DSM 14609"]]},{"id":"NCBITaxon:1123487","l":"Uliginosibacterium gangwonense DSM 18521","na":1,"nb":2,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A392736","Uliginosibacterium gangwonense"],["NCBITaxon%3A1123487","Uliginosibacterium gangwonense DSM 18521"]]},{"id":"NCBITaxon:1123491","l":"Vibrio cincinnatiensis DSM 19608","na":1,"nb":2,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["NCBITaxon%3A675","Vibrio cincinnatiensis"],["NCBITaxon%3A1123491","Vibrio cincinnatiensis DSM 19608"]]},{"id":"NCBITaxon:1123508","l":"Zavarzinella formosa DSM 19928","na":1,"nb":2,"a":[["rosette-bto-0001201.html","rosette"]],"b":[["NCBITaxon%3A360055","Zavarzinella formosa"],["NCBITaxon%3A1123508","Zavarzinella formosa DSM 19928"]]},{"id":"NCBITaxon:1123509","l":"Zooshikella ganghwensis DSM 15267","na":1,"nb":2,"a":[["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["NCBITaxon%3A202772","Zooshikella ganghwensis"],["NCBITaxon%3A1123509","Zooshikella ganghwensis DSM 15267"]]},{"id":"NCBITaxon:1123511","l":"Propionispira raffinosivorans DSM 20765","na":1,"nb":2,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"]],"b":[["NCBITaxon%3A86959","Propionispira raffinosivorans"],["NCBITaxon%3A1123511","Propionispira raffinosivorans DSM 20765"]]},{"id":"NCBITaxon:1123514","l":"Thiomicrorhabdus arctica DSM 13458","na":1,"nb":2,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A131540","Thiomicrorhabdus arctica"],["NCBITaxon%3A1123514","Thiomicrorhabdus arctica DSM 13458"]]},{"id":"NCBITaxon:1123515","l":"Thiomicrorhabdus chilensis DSM 12352","na":1,"nb":2,"a":[["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["NCBITaxon%3A63656","Thiomicrorhabdus chilensis"],["NCBITaxon%3A1123515","Thiomicrorhabdus chilensis DSM 12352"]]},{"id":"NCBITaxon:1123721","l":"Weissella koreensis KCTC 3621","na":1,"nb":2,"a":[["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A165096","Weissella koreensis"],["NCBITaxon%3A1123721","Weissella koreensis KCTC 3621"]]},{"id":"NCBITaxon:1124743","l":"Kribbella soli","na":2,"nb":1,"a":[["park-envo-00000562.html","park"],["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1124743","Kribbella soli"]]},{"id":"NCBITaxon:1124780","l":"Nafulsella turpanensis ZLM-10","na":1,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A1265690","Nafulsella turpanensis"],["NCBITaxon%3A1124780","Nafulsella turpanensis ZLM-10"]]},{"id":"NCBITaxon:1124982","l":"Treponema sp. JC4","na":2,"nb":1,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"],["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A1124982","Treponema sp. JC4"]]},{"id":"NCBITaxon:1125973","l":"Allobosea sp. 117","na":2,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"],["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1125973","Allobosea sp. 117"]]},{"id":"NCBITaxon:1126011","l":"Listeria monocytogenes 07PF0776","na":2,"nb":1,"a":[["central-nervous-system-bto-0000227.html","central nervous system"],["myocardium-bto-0000901.html","myocardium"]],"b":[["NCBITaxon%3A1126011","Listeria monocytogenes 07PF0776"]]},{"id":"NCBITaxon:1126627","l":"Bradyrhizobium sp. DOA9","na":2,"nb":1,"a":[["free-living-state-bto-0001551.html","free-living state"],["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A1126627","Bradyrhizobium sp. DOA9"]]},{"id":"NCBITaxon:1128911","l":"Paraglaciecola arctica","na":1,"nb":2,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A1128911","Paraglaciecola arctica"],["NCBITaxon%3A493475","Paraglaciecola arctica BSs20135"]]},{"id":"NCBITaxon:1128912","l":"Paraglaciecola mesophila KMM 241","na":1,"nb":2,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A197222","Paraglaciecola mesophila"],["NCBITaxon%3A1128912","Paraglaciecola mesophila KMM 241"]]},{"id":"NCBITaxon:1129374","l":"Alishewanella jeotgali KCTC 22429","na":1,"nb":2,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A545533","Alishewanella jeotgali"],["NCBITaxon%3A1129374","Alishewanella jeotgali KCTC 22429"]]},{"id":"NCBITaxon:1129792","l":"Weissella oryzae","na":1,"nb":2,"a":[["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A1129792","Weissella oryzae"],["NCBITaxon%3A1329250","Weissella oryzae SG25"]]},{"id":"NCBITaxon:1129896","l":"Rhodococcus opacus M213","na":2,"nb":1,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A1129896","Rhodococcus opacus M213"]]},{"id":"NCBITaxon:1130382","l":"Spirochaetes bacterium SCGC AAA257-G10","na":2,"nb":1,"a":[["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A1130382","Spirochaetes bacterium SCGC AAA257-G10"]]},{"id":"NCBITaxon:1130383","l":"Spirochaetes bacterium SCGC AAA257-P05","na":2,"nb":1,"a":[["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A1130383","Spirochaetes bacterium SCGC AAA257-P05"]]},{"id":"NCBITaxon:1131452","l":"Mycoplasmopsis canis UF31","na":2,"nb":1,"a":[["brain-bto-0000142.html","brain"],["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A1131452","Mycoplasmopsis canis UF31"]]},{"id":"NCBITaxon:1131453","l":"Mycoplasmopsis canis UF33","na":2,"nb":1,"a":[["brain-bto-0000142.html","brain"],["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A1131453","Mycoplasmopsis canis UF33"]]},{"id":"NCBITaxon:1131454","l":"Mycoplasmopsis canis UFG1","na":2,"nb":1,"a":[["brain-bto-0000142.html","brain"],["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A1131454","Mycoplasmopsis canis UFG1"]]},{"id":"NCBITaxon:1131455","l":"Mycoplasmopsis canis UFG4","na":2,"nb":1,"a":[["brain-bto-0000142.html","brain"],["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A1131455","Mycoplasmopsis canis UFG4"]]},{"id":"NCBITaxon:1131703","l":"Sphaerochaeta globosa","na":1,"nb":2,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1131703","Sphaerochaeta globosa"],["NCBITaxon%3A158189","Sphaerochaeta globosa str. Buddy"]]},{"id":"NCBITaxon:1131707","l":"Sphaerochaeta pleomorpha","na":1,"nb":2,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1131707","Sphaerochaeta pleomorpha"],["NCBITaxon%3A158190","Sphaerochaeta pleomorpha str. Grapes"]]},{"id":"NCBITaxon:1131731","l":"Schinkia azotoformans LMG 9581","na":1,"nb":2,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A1454","Schinkia azotoformans"],["NCBITaxon%3A1131731","Schinkia azotoformans LMG 9581"]]},{"id":"NCBITaxon:1132444","l":"Methylocystis rosea SV97","na":1,"nb":2,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A173366","Methylocystis rosea"],["NCBITaxon%3A1132444","Methylocystis rosea SV97"]]},{"id":"NCBITaxon:1132696","l":"Chryseobacterium rigui","na":2,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"],["brackish-water-body-envo-01001321.html","brackish water body"]],"b":[["NCBITaxon%3A1132696","Chryseobacterium rigui"]]},{"id":"NCBITaxon:1133569","l":"Liquorilactobacillus vini DSM 20605","na":1,"nb":2,"a":[["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A238015","Liquorilactobacillus vini"],["NCBITaxon%3A1133569","Liquorilactobacillus vini DSM 20605"]]},{"id":"NCBITaxon:1134445","l":"Streptomyces somaliensis DSM 40738","na":1,"nb":2,"a":[["foot-bto-0000476.html","foot"]],"b":[["NCBITaxon%3A78355","Streptomyces somaliensis"],["NCBITaxon%3A1134445","Streptomyces somaliensis DSM 40738"]]},{"id":"NCBITaxon:1137848","l":"Clostridium arbusti","na":1,"nb":2,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A1137848","Clostridium arbusti"],["NCBITaxon%3A545243","Clostridium arbusti SL206"]]},{"id":"NCBITaxon:1137991","l":"Geodermatophilus siccatus","na":2,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A1137991","Geodermatophilus siccatus"]]},{"id":"NCBITaxon:1137993","l":"Geodermatophilus africanus","na":2,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A1137993","Geodermatophilus africanus"]]},{"id":"NCBITaxon:1137994","l":"Geodermatophilus saharensis","na":2,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A1137994","Geodermatophilus saharensis"]]},{"id":"NCBITaxon:1138429","l":"Glaesserella parasuis gx033","na":2,"nb":1,"a":[["lung-bto-0000763.html","lung"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1138429","Glaesserella parasuis gx033"]]},{"id":"NCBITaxon:114090","l":"Pediococcus inopinatus","na":2,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A114090","Pediococcus inopinatus"]]},{"id":"NCBITaxon:1141221","l":"Chryseobacterium taihuense","na":1,"nb":2,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A1871047","Chryseobacterium sp."],["NCBITaxon%3A1141221","Chryseobacterium taihuense"]]},{"id":"NCBITaxon:1141647","l":"Nocardia arizonensis","na":2,"nb":1,"a":[["bronchus-uberon-0002185.html","bronchus"],["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1141647","Nocardia arizonensis"]]},{"id":"NCBITaxon:1142394","l":"Phycisphaera mikurensis NBRC 102666","na":1,"nb":2,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A547188","Phycisphaera mikurensis"],["NCBITaxon%3A1142394","Phycisphaera mikurensis NBRC 102666"]]},{"id":"NCBITaxon:114814","l":"Xylaria cubensis","na":2,"nb":1,"a":[["temperate-envo-01000206.html","temperate"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A114814","Xylaria cubensis"]]},{"id":"NCBITaxon:1150461","l":"Bifidobacterium scardovii JCM 12489 = DSM 13734","na":1,"nb":2,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A158787","Bifidobacterium scardovii"],["NCBITaxon%3A1150461","Bifidobacterium scardovii JCM 12489 = DSM 13734"]]},{"id":"NCBITaxon:1150474","l":"Mesoaciditoga lauensis cd-1655R = DSM 25116","na":1,"nb":2,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["NCBITaxon%3A1495039","Mesoaciditoga lauensis"],["NCBITaxon%3A1150474","Mesoaciditoga lauensis cd-1655R = DSM 25116"]]},{"id":"NCBITaxon:1151117","l":"Thermococcus zilligii AN1","na":1,"nb":2,"a":[["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A54076","Thermococcus zilligii"],["NCBITaxon%3A1151117","Thermococcus zilligii AN1"]]},{"id":"NCBITaxon:1154817","l":"Streptococcus agalactiae CCUG 44077","na":1,"nb":2,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A1311","Streptococcus agalactiae"],["NCBITaxon%3A1154817","Streptococcus agalactiae CCUG 44077"]]},{"id":"NCBITaxon:1154862","l":"Streptococcus agalactiae CCUG 34230","na":1,"nb":2,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A1311","Streptococcus agalactiae"],["NCBITaxon%3A1154862","Streptococcus agalactiae CCUG 34230"]]},{"id":"NCBITaxon:1155079","l":"Staphylococcus aureus subsp. aureus DR10","na":2,"nb":1,"a":[["keratinocyte-bto-0000667.html","keratinocyte"],["suprachiasmatic-nucleus-bto-0001822.html","suprachiasmatic nucleus"]],"b":[["NCBITaxon%3A1155079","Staphylococcus aureus subsp. aureus DR10"]]},{"id":"NCBITaxon:1155084","l":"Staphylococcus aureus subsp. aureus 71193","na":2,"nb":1,"a":[["keratinocyte-bto-0000667.html","keratinocyte"],["suprachiasmatic-nucleus-bto-0001822.html","suprachiasmatic nucleus"]],"b":[["NCBITaxon%3A1155084","Staphylococcus aureus subsp. aureus 71193"]]},{"id":"NCBITaxon:115545","l":"Pasteurella multocida subsp. septica","na":1,"nb":2,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["NCBITaxon%3A747","Pasteurella multocida"],["NCBITaxon%3A115545","Pasteurella multocida subsp. septica"]]},{"id":"NCBITaxon:115553","l":"Vreelandella sulfidaeris","na":1,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A115553","Vreelandella sulfidaeris"],["NCBITaxon%3A891402","Vreelandella sulfidaeris Esulfide1"]]},{"id":"NCBITaxon:115561","l":"","na":2,"nb":1,"a":[["river-envo-00000022.html","river"],["subpolar-coniferous-forest-biome-envo-01000250.html","subpolar coniferous forest biome"]],"b":[["NCBITaxon%3A44935","Vreelandella venusta"]]},{"id":"NCBITaxon:1157946","l":"Streptococcus salivarius PS4","na":2,"nb":1,"a":[["breast-bto-0000149.html","breast"],["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1157946","Streptococcus salivarius PS4"]]},{"id":"NCBITaxon:1159489","l":"Cronobacter sakazakii 2151","na":2,"nb":1,"a":[["neonate-bto-0001762.html","neonate"],["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1159489","Cronobacter sakazakii 2151"]]},{"id":"NCBITaxon:1159491","l":"Cronobacter malonaticus LMG 23826","na":1,"nb":2,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A413503","Cronobacter malonaticus"],["NCBITaxon%3A1159491","Cronobacter malonaticus LMG 23826"]]},{"id":"NCBITaxon:1159613","l":"Cronobacter muytjensii ATCC 51329","na":1,"nb":2,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A413501","Cronobacter muytjensii"],["NCBITaxon%3A1159613","Cronobacter muytjensii ATCC 51329"]]},{"id":"NCBITaxon:115979","l":"Niallia nealsonii","na":1,"nb":2,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A115979","Niallia nealsonii"],["NCBITaxon%3A1202533","Niallia nealsonii AAU1"]]},{"id":"NCBITaxon:1161100","l":"Flavobacterium lindanitolerans CIP 109890","na":1,"nb":2,"a":[["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A428988","Flavobacterium lindanitolerans"],["NCBITaxon%3A1161100","Flavobacterium lindanitolerans CIP 109890"]]},{"id":"NCBITaxon:1161919","l":"Erwinia piriflorinigrans CFBP 5888","na":1,"nb":2,"a":[["flower-bto-0000469.html","flower"]],"b":[["NCBITaxon%3A665097","Erwinia piriflorinigrans"],["NCBITaxon%3A1161919","Erwinia piriflorinigrans CFBP 5888"]]},{"id":"NCBITaxon:1161942","l":"Ruminococcus champanellensis","na":1,"nb":2,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A1161942","Ruminococcus champanellensis"],["NCBITaxon%3A213810","Ruminococcus champanellensis 18P13 = JCM 17042"]]},{"id":"NCBITaxon:1162288","l":"Mycobacteroides abscessus M154","na":2,"nb":1,"a":[["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1162288","Mycobacteroides abscessus M154"]]},{"id":"NCBITaxon:1163748","l":"Marinobacter nauticus ATCC 49840","na":1,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A2743","Marinobacter nauticus"],["NCBITaxon%3A1163748","Marinobacter nauticus ATCC 49840"]]},{"id":"NCBITaxon:1163751","l":"Candidatus Hamiltonella defensa MED (Bemisia tabaci)","na":1,"nb":2,"a":[["phloem-bto-0001058.html","phloem"]],"b":[["NCBITaxon%3A1163751","Candidatus Hamiltonella defensa MED (Bemisia tabaci)"],["NCBITaxon%3A1240083","Candidatus Hamiltonella defensa MED (Bemisia tabaci) BT-B-HRs"]]},{"id":"NCBITaxon:1165867","l":"Rhodococcus opacus RKJ300 = JCM 13270","na":1,"nb":2,"a":[["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A37919","Rhodococcus opacus"],["NCBITaxon%3A1165867","Rhodococcus opacus RKJ300 = JCM 13270"]]},{"id":"NCBITaxon:1166078","l":"Aureimonas phyllosphaerae","na":2,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A1166078","Aureimonas phyllosphaerae"]]},{"id":"NCBITaxon:1167694","l":"Escherichia coli O32:H37 str. P4","na":2,"nb":1,"a":[["mammary-gland-bto-0000817.html","mammary gland"],["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1167694","Escherichia coli O32:H37 str. P4"]]},{"id":"NCBITaxon:1168170","l":"Klebsiella oxytoca BRL6-2","na":1,"nb":2,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A1168170","Klebsiella oxytoca BRL6-2"],["NCBITaxon%3A576","Klebsiella sp."]]},{"id":"NCBITaxon:117207","l":"Sphingopyxis alaskensis","na":1,"nb":2,"a":[["skin-bto-0001253.html","skin"]],"b":[["NCBITaxon%3A117207","Sphingopyxis alaskensis"],["NCBITaxon%3A317655","Sphingopyxis alaskensis RB2256"]]},{"id":"NCBITaxon:1173062","l":"Acinetobacter sp. HA","na":2,"nb":1,"a":[["larva-bto-0000707.html","larva"],["midgut-bto-0000863.html","midgut"]],"b":[["NCBITaxon%3A1173062","Acinetobacter sp. HA"]]},{"id":"NCBITaxon:1173263","l":"Pseudanabaenococcus habilitatus PCC 7502","na":2,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A1173263","Pseudanabaenococcus habilitatus PCC 7502"]]},{"id":"NCBITaxon:117503","l":"Thermosipho geolei","na":1,"nb":2,"a":[["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A117503","Thermosipho geolei"],["NCBITaxon%3A1123381","Thermosipho geolei DSM 13256"]]},{"id":"NCBITaxon:1175296","l":"Methanomassiliicoccus luminyensis B10","na":1,"nb":2,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A1080712","Methanomassiliicoccus luminyensis"],["NCBITaxon%3A1175296","Methanomassiliicoccus luminyensis B10"]]},{"id":"NCBITaxon:1175486","l":"Nocardioides albertanoniae","na":2,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A1175486","Nocardioides albertanoniae"]]},{"id":"NCBITaxon:1177180","l":"Kosakonia radicincitans DSM 16656","na":1,"nb":2,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A283686","Kosakonia radicincitans"],["NCBITaxon%3A1177180","Kosakonia radicincitans DSM 16656"]]},{"id":"NCBITaxon:118166","l":"Nodosilinea nodulosa PCC 7104","na":2,"nb":1,"a":[["bar-envo-00000167.html","bar"],["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A118166","Nodosilinea nodulosa PCC 7104"]]},{"id":"NCBITaxon:1184251","l":"Thermogladius calderae 1633","na":1,"nb":2,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A1200300","Thermogladius calderae"],["NCBITaxon%3A1184251","Thermogladius calderae 1633"]]},{"id":"NCBITaxon:1185920","l":"Phaeovulum veldkampii DSM 11550","na":1,"nb":2,"a":[["pond-envo-00000033.html","pond"]],"b":[["NCBITaxon%3A33049","Phaeovulum veldkampii"],["NCBITaxon%3A1185920","Phaeovulum veldkampii DSM 11550"]]},{"id":"NCBITaxon:1188261","l":"Alkalihalophilus marmarensis DSM 21297","na":1,"nb":2,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A521377","Alkalihalophilus marmarensis"],["NCBITaxon%3A1188261","Alkalihalophilus marmarensis DSM 21297"]]},{"id":"NCBITaxon:1189612","l":"Indibacter alkaliphilus LW1","na":1,"nb":2,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["NCBITaxon%3A579922","Indibacter alkaliphilus"],["NCBITaxon%3A1189612","Indibacter alkaliphilus LW1"]]},{"id":"NCBITaxon:1189613","l":"Staphylococcus massiliensis CCUG 55927","na":1,"nb":2,"a":[["brain-bto-0000142.html","brain"]],"b":[["NCBITaxon%3A555791","Staphylococcus massiliensis"],["NCBITaxon%3A1189613","Staphylococcus massiliensis CCUG 55927"]]},{"id":"NCBITaxon:1190417","l":"Geodermatophilus telluris","na":2,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A1190417","Geodermatophilus telluris"]]},{"id":"NCBITaxon:1191475","l":"Pseudomonas aeruginosa PAO579","na":2,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1191475","Pseudomonas aeruginosa PAO579"]]},{"id":"NCBITaxon:1192854","l":"Granulosicoccus antarcticus IMCC3135","na":1,"nb":2,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A437505","Granulosicoccus antarcticus"],["NCBITaxon%3A1192854","Granulosicoccus antarcticus IMCC3135"]]},{"id":"NCBITaxon:1193128","l":"Parascardovia denticolens IPLA 20019","na":2,"nb":1,"a":[["breast-bto-0000149.html","breast"],["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1193128","Parascardovia denticolens IPLA 20019"]]},{"id":"NCBITaxon:1193501","l":"Pseudomonas aeruginosa SJTD-1","na":2,"nb":1,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A1193501","Pseudomonas aeruginosa SJTD-1"]]},{"id":"NCBITaxon:1194079","l":"Streptomyces chilikensis","na":2,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"],["brackish-water-body-envo-01001321.html","brackish water body"]],"b":[["NCBITaxon%3A1194079","Streptomyces chilikensis"]]},{"id":"NCBITaxon:1194086","l":"Yersinia enterocolitica subsp. enterocolitica WA-314","na":2,"nb":1,"a":[["liver-bto-0000759.html","liver"],["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A1194086","Yersinia enterocolitica subsp. enterocolitica WA-314"]]},{"id":"NCBITaxon:1194669","l":"Pseudomonas aeruginosa N002","na":2,"nb":1,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"],["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A1194669","Pseudomonas aeruginosa N002"]]},{"id":"NCBITaxon:1195761","l":"Ornithinimicrobium tianjinense","na":1,"nb":2,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A189863","Falsarthrobacter nasiphocae"],["NCBITaxon%3A1195761","Ornithinimicrobium tianjinense"]]},{"id":"NCBITaxon:119641","l":"Clostridium uliginosum","na":1,"nb":2,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A119641","Clostridium uliginosum"],["NCBITaxon%3A1121343","Clostridium uliginosum DSM 12992"]]},{"id":"NCBITaxon:119644","l":"Hymenobacter aerophilus","na":1,"nb":2,"a":[["desert-biome-envo-01000179.html","desert biome"]],"b":[["NCBITaxon%3A119644","Hymenobacter aerophilus"],["NCBITaxon%3A1121953","Hymenobacter aerophilus DSM 13606"]]},{"id":"NCBITaxon:1197727","l":"Pseudomonas sp. Ag1","na":2,"nb":1,"a":[["larva-bto-0000707.html","larva"],["midgut-bto-0000863.html","midgut"]],"b":[["NCBITaxon%3A1197727","Pseudomonas sp. Ag1"]]},{"id":"NCBITaxon:1198114","l":"Granulicella tundricola MP5ACTX9","na":1,"nb":2,"a":[["area-designated-as-a-nature-reserve-envo-00000363.html","area designated as a nature reserve"]],"b":[["NCBITaxon%3A940615","Granulicella tundricola"],["NCBITaxon%3A1198114","Granulicella tundricola MP5ACTX9"]]},{"id":"NCBITaxon:119864","l":"Marinomonas mediterranea","na":1,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A119864","Marinomonas mediterranea"],["NCBITaxon%3A717774","Marinomonas mediterranea MMB-1"]]},{"id":"NCBITaxon:1202448","l":"Enterobacter sp. Ag1","na":2,"nb":1,"a":[["larva-bto-0000707.html","larva"],["midgut-bto-0000863.html","midgut"]],"b":[["NCBITaxon%3A1202448","Enterobacter sp. Ag1"]]},{"id":"NCBITaxon:1202668","l":"Secundilactobacillus oryzae","na":1,"nb":2,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A1202668","Secundilactobacillus oryzae"],["NCBITaxon%3A1291743","Secundilactobacillus oryzae JCM 18671"]]},{"id":"NCBITaxon:1203033","l":"Lactobacillus hominis","na":1,"nb":2,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A1203033","Lactobacillus hominis"],["NCBITaxon%3A1423758","Lactobacillus hominis DSM 23910 = CRBIP 24.179"]]},{"id":"NCBITaxon:1203258","l":"Lacticaseibacillus rhamnosus LRHMDP2","na":2,"nb":1,"a":[["dental-pulp-bto-0000339.html","dental pulp"],["pulp-bto-0001142.html","pulp"]],"b":[["NCBITaxon%3A1203258","Lacticaseibacillus rhamnosus LRHMDP2"]]},{"id":"NCBITaxon:1203259","l":"Lacticaseibacillus rhamnosus LRHMDP3","na":2,"nb":1,"a":[["dental-pulp-bto-0000339.html","dental pulp"],["pulp-bto-0001142.html","pulp"]],"b":[["NCBITaxon%3A1203259","Lacticaseibacillus rhamnosus LRHMDP3"]]},{"id":"NCBITaxon:1203471","l":"Geotalea daltonii","na":1,"nb":2,"a":[["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A1203471","Geotalea daltonii"],["NCBITaxon%3A316067","Geotalea daltonii FRC-32"]]},{"id":"NCBITaxon:120377","l":"Salana multivorans","na":2,"nb":1,"a":[["watercourse-envo-00000029.html","watercourse"],["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A120377","Salana multivorans"]]},{"id":"NCBITaxon:1204725","l":"Methanobacterium formicicum DSM 3637","na":1,"nb":2,"a":[["protist-associated-environment-habitatmech-gold-eee7408afd.html","protist-associated environment"]],"b":[["NCBITaxon%3A2162","Methanobacterium formicicum"],["NCBITaxon%3A1204725","Methanobacterium formicicum DSM 3637"]]},{"id":"NCBITaxon:1206108","l":"Escherichia coli J96","na":2,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["kidney-bto-0000671.html","kidney"]],"b":[["NCBITaxon%3A1206108","Escherichia coli J96"]]},{"id":"NCBITaxon:1206722","l":"Nocardia araoensis NBRC 100135","na":1,"nb":2,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A228600","Nocardia araoensis"],["NCBITaxon%3A1206722","Nocardia araoensis NBRC 100135"]]},{"id":"NCBITaxon:1206724","l":"Nocardia brasiliensis NBRC 14402","na":1,"nb":2,"a":[["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A37326","Nocardia brasiliensis"],["NCBITaxon%3A1206724","Nocardia brasiliensis NBRC 14402"]]},{"id":"NCBITaxon:1206725","l":"Nocardia brevicatena NBRC 12119","na":1,"nb":2,"a":[["tuberculosis-habitatmech-bacdive-e5d21f85b7.html","Tuberculosis"]],"b":[["NCBITaxon%3A37327","Nocardia brevicatena"],["NCBITaxon%3A1206725","Nocardia brevicatena NBRC 12119"]]},{"id":"NCBITaxon:1206729","l":"Nocardia exalbida NBRC 100660","na":1,"nb":2,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["NCBITaxon%3A290231","Nocardia exalbida"],["NCBITaxon%3A1206729","Nocardia exalbida NBRC 100660"]]},{"id":"NCBITaxon:1206730","l":"Nocardia higoensis NBRC 100133","na":1,"nb":2,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A228599","Nocardia higoensis"],["NCBITaxon%3A1206730","Nocardia higoensis NBRC 100133"]]},{"id":"NCBITaxon:1206732","l":"Nocardia otitidiscaviarum NBRC 14405","na":1,"nb":2,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A1823","Nocardia otitidiscaviarum"],["NCBITaxon%3A1206732","Nocardia otitidiscaviarum NBRC 14405"]]},{"id":"NCBITaxon:1206737","l":"Nocardia pneumoniae NBRC 100136","na":1,"nb":2,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A228601","Nocardia pneumoniae"],["NCBITaxon%3A1206737","Nocardia pneumoniae NBRC 100136"]]},{"id":"NCBITaxon:1206739","l":"Nocardia testacea NBRC 100365","na":1,"nb":2,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A248551","Nocardia testacea"],["NCBITaxon%3A1206739","Nocardia testacea NBRC 100365"]]},{"id":"NCBITaxon:1206744","l":"Nocardia transvalensis NBRC 15921","na":1,"nb":2,"a":[["foot-bto-0000476.html","foot"]],"b":[["NCBITaxon%3A37333","Nocardia transvalensis"],["NCBITaxon%3A1206744","Nocardia transvalensis NBRC 15921"]]},{"id":"NCBITaxon:1207063","l":"Oceanibaculum indicum P24","na":1,"nb":2,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A526216","Oceanibaculum indicum"],["NCBITaxon%3A1207063","Oceanibaculum indicum P24"]]},{"id":"NCBITaxon:1208324","l":"Celeribacter indicus","na":2,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["NCBITaxon%3A1208324","Celeribacter indicus"]]},{"id":"NCBITaxon:1209989","l":"Tepidanaerobacter acetatoxydans Re1","na":1,"nb":2,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A499229","Tepidanaerobacter acetatoxydans"],["NCBITaxon%3A1209989","Tepidanaerobacter acetatoxydans Re1"]]},{"id":"NCBITaxon:1210069","l":"Nocardia coubleae NBRC 108252","na":1,"nb":2,"a":[["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A356147","Nocardia coubleae"],["NCBITaxon%3A1210069","Nocardia coubleae NBRC 108252"]]},{"id":"NCBITaxon:1210075","l":"Nocardia ignorata NBRC 108230","na":1,"nb":2,"a":[["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A145285","Nocardia ignorata"],["NCBITaxon%3A1210075","Nocardia ignorata NBRC 108230"]]},{"id":"NCBITaxon:1210078","l":"Nocardia kruczakiae NBRC 101016","na":1,"nb":2,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["NCBITaxon%3A261477","Nocardia kruczakiae"],["NCBITaxon%3A1210078","Nocardia kruczakiae NBRC 101016"]]},{"id":"NCBITaxon:1210091","l":"Nocardia ninae NBRC 108245","na":1,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A356145","Nocardia ninae"],["NCBITaxon%3A1210091","Nocardia ninae NBRC 108245"]]},{"id":"NCBITaxon:1212764","l":"Paenibacillus popilliae ATCC 14706","na":1,"nb":2,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["NCBITaxon%3A78057","Paenibacillus popilliae"],["NCBITaxon%3A1212764","Paenibacillus popilliae ATCC 14706"]]},{"id":"NCBITaxon:1213463","l":"Mycoplasmoides pneumoniae 19294","na":2,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1213463","Mycoplasmoides pneumoniae 19294"]]},{"id":"NCBITaxon:1215100","l":"Pseudomonas fluorescens NBRC 14160","na":1,"nb":2,"a":[["reservoir-envo-00000025.html","reservoir"]],"b":[["NCBITaxon%3A294","Pseudomonas fluorescens"],["NCBITaxon%3A1215100","Pseudomonas fluorescens NBRC 14160"]]},{"id":"NCBITaxon:1215110","l":"Pseudomonas monteilii NBRC 103158 = DSM 14164","na":1,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A76759","Pseudomonas monteilii"],["NCBITaxon%3A1215110","Pseudomonas monteilii NBRC 103158 = DSM 14164"]]},{"id":"NCBITaxon:1215111","l":"Pseudomonas mucidolens NBRC 103159","na":1,"nb":2,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["NCBITaxon%3A46679","Pseudomonas mucidolens"],["NCBITaxon%3A1215111","Pseudomonas mucidolens NBRC 103159"]]},{"id":"NCBITaxon:1215116","l":"Ectopseudomonas oleovorans NBRC 14167","na":1,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A301","Ectopseudomonas oleovorans"],["NCBITaxon%3A1215116","Ectopseudomonas oleovorans NBRC 14167"]]},{"id":"NCBITaxon:1216006","l":"Vibrio aerogenes CECT 7868","na":1,"nb":2,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A92172","Vibrio aerogenes"],["NCBITaxon%3A1216006","Vibrio aerogenes CECT 7868"]]},{"id":"NCBITaxon:1216008","l":"Amphibacillus jilinensis","na":1,"nb":2,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A1216008","Amphibacillus jilinensis"],["NCBITaxon%3A562743","Amphibacillus jilinensis Y1"]]},{"id":"NCBITaxon:1216962","l":"Helicobacter heilmannii ASB1.4","na":1,"nb":2,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A35817","Helicobacter heilmannii"],["NCBITaxon%3A1216962","Helicobacter heilmannii ASB1.4"]]},{"id":"NCBITaxon:1216966","l":"Edwardsiella hoshinae NBRC 105699 = ATCC 33379","na":1,"nb":2,"a":[["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A93378","Edwardsiella hoshinae"],["NCBITaxon%3A1216966","Edwardsiella hoshinae NBRC 105699 = ATCC 33379"]]},{"id":"NCBITaxon:1216969","l":"Janibacter corallicola NBRC 107790","na":1,"nb":2,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A415212","Janibacter corallicola"],["NCBITaxon%3A1216969","Janibacter corallicola NBRC 107790"]]},{"id":"NCBITaxon:1218078","l":"Paraburkholderia ginsengisoli NBRC 100965","na":1,"nb":2,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A311231","Paraburkholderia ginsengisoli"],["NCBITaxon%3A1218078","Paraburkholderia ginsengisoli NBRC 100965"]]},{"id":"NCBITaxon:1218085","l":"Citrobacter rodentium NBRC 105723 = DSM 16636","na":1,"nb":2,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A67825","Citrobacter rodentium"],["NCBITaxon%3A1218085","Citrobacter rodentium NBRC 105723 = DSM 16636"]]},{"id":"NCBITaxon:121821","l":"Roseinatronobacter thiooxidans","na":2,"nb":1,"a":[["alkaline-salt-lake-envo-00002121.html","alkaline salt lake"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A121821","Roseinatronobacter thiooxidans"]]},{"id":"NCBITaxon:1219011","l":"Rhodococcus coprophilus NBRC 100603","na":1,"nb":2,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A38310","Rhodococcus coprophilus"],["NCBITaxon%3A1219011","Rhodococcus coprophilus NBRC 100603"]]},{"id":"NCBITaxon:1219012","l":"Rhodococcoides corynebacterioides NBRC 14404","na":1,"nb":2,"a":[["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["NCBITaxon%3A53972","Rhodococcoides corynebacterioides"],["NCBITaxon%3A1219012","Rhodococcoides corynebacterioides NBRC 14404"]]},{"id":"NCBITaxon:1219017","l":"Rhodococcus jostii NBRC 16295","na":1,"nb":2,"a":[["bone-element-uberon-0001474.html","bone element"]],"b":[["NCBITaxon%3A132919","Rhodococcus jostii"],["NCBITaxon%3A1219017","Rhodococcus jostii NBRC 16295"]]},{"id":"NCBITaxon:1219036","l":"Sphingobium abikonense NBRC 16140","na":1,"nb":2,"a":[["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A86193","Sphingobium abikonense"],["NCBITaxon%3A1219036","Sphingobium abikonense NBRC 16140"]]},{"id":"NCBITaxon:1219045","l":"Sphingobium herbicidovorans NBRC 16415","na":1,"nb":2,"a":[["resting-cell-bto-0001170.html","resting cell"]],"b":[["NCBITaxon%3A76947","Sphingobium herbicidovorans"],["NCBITaxon%3A1219045","Sphingobium herbicidovorans NBRC 16415"]]},{"id":"NCBITaxon:1219057","l":"Novosphingobium subterraneum NBRC 16086","na":1,"nb":2,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A48936","Novosphingobium subterraneum"],["NCBITaxon%3A1219057","Novosphingobium subterraneum NBRC 16086"]]},{"id":"NCBITaxon:1219065","l":"Vibrio proteolyticus NBRC 13287","na":1,"nb":2,"a":[["alimentary-canal-bto-0000058.html","alimentary canal"]],"b":[["NCBITaxon%3A671","Vibrio proteolyticus"],["NCBITaxon%3A1219065","Vibrio proteolyticus NBRC 13287"]]},{"id":"NCBITaxon:1219067","l":"Vibrio natriegens NBRC 15636 = ATCC 14048 = DSM 759","na":1,"nb":2,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A691","Vibrio natriegens"],["NCBITaxon%3A1219067","Vibrio natriegens NBRC 15636 = ATCC 14048 = DSM 759"]]},{"id":"NCBITaxon:1219076","l":"Vibrio alginolyticus NBRC 15630 = ATCC 17749","na":1,"nb":2,"a":[["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A663","Vibrio alginolyticus"],["NCBITaxon%3A1219076","Vibrio alginolyticus NBRC 15630 = ATCC 17749"]]},{"id":"NCBITaxon:1219375","l":"Xanthomonas cassavae CFBP 4642","na":1,"nb":2,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A56450","Xanthomonas cassavae"],["NCBITaxon%3A1219375","Xanthomonas cassavae CFBP 4642"]]},{"id":"NCBITaxon:1220584","l":"Herbiconiux solani NBRC 106740","na":1,"nb":2,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A661329","Herbiconiux solani"],["NCBITaxon%3A1220584","Herbiconiux solani NBRC 106740"]]},{"id":"NCBITaxon:1220591","l":"Bacillus sonorensis NBRC 101234 = KCTC 13918","na":1,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A119858","Bacillus sonorensis"],["NCBITaxon%3A1220591","Bacillus sonorensis NBRC 101234 = KCTC 13918"]]},{"id":"NCBITaxon:1221451","l":"Staphylococcus aureus subsp. aureus 120","na":2,"nb":1,"a":[["immune-system-bto-0005810.html","immune system"],["neutrophil-bto-0000130.html","neutrophil"]],"b":[["NCBITaxon%3A1221451","Staphylococcus aureus subsp. aureus 120"]]},{"id":"NCBITaxon:1221452","l":"Staphylococcus aureus subsp. aureus 333","na":2,"nb":1,"a":[["immune-system-bto-0005810.html","immune system"],["neutrophil-bto-0000130.html","neutrophil"]],"b":[["NCBITaxon%3A1221452","Staphylococcus aureus subsp. aureus 333"]]},{"id":"NCBITaxon:1221453","l":"Staphylococcus aureus subsp. aureus 3989","na":2,"nb":1,"a":[["immune-system-bto-0005810.html","immune system"],["neutrophil-bto-0000130.html","neutrophil"]],"b":[["NCBITaxon%3A1221453","Staphylococcus aureus subsp. aureus 3989"]]},{"id":"NCBITaxon:1223489","l":"Nocardia niwae NBRC 108934 = DSM 45340","na":1,"nb":2,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["NCBITaxon%3A626084","Nocardia niwae"],["NCBITaxon%3A1223489","Nocardia niwae NBRC 108934 = DSM 45340"]]},{"id":"NCBITaxon:1223499","l":"Mycolicibacterium vaccae NBRC 14118 = CIP 105934","na":1,"nb":2,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1810","Mycolicibacterium vaccae"],["NCBITaxon%3A1223499","Mycolicibacterium vaccae NBRC 14118 = CIP 105934"]]},{"id":"NCBITaxon:1223511","l":"Pseudonocardia sulfidoxydans NBRC 16205","na":1,"nb":2,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"]],"b":[["NCBITaxon%3A54011","Pseudonocardia sulfidoxydans"],["NCBITaxon%3A1223511","Pseudonocardia sulfidoxydans NBRC 16205"]]},{"id":"NCBITaxon:1223528","l":"Microbacterium oleivorans NBRC 103075","na":1,"nb":2,"a":[["reservoir-envo-00000025.html","reservoir"]],"b":[["NCBITaxon%3A273677","Microbacterium oleivorans"],["NCBITaxon%3A1223528","Microbacterium oleivorans NBRC 103075"]]},{"id":"NCBITaxon:1223544","l":"Gordonia sihwensis NBRC 108236","na":1,"nb":2,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A173559","Gordonia sihwensis"],["NCBITaxon%3A1223544","Gordonia sihwensis NBRC 108236"]]},{"id":"NCBITaxon:1224164","l":"Corynebacterium vitaeruminis DSM 20294","na":1,"nb":2,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A38305","Corynebacterium vitaeruminis"],["NCBITaxon%3A1224164","Corynebacterium vitaeruminis DSM 20294"]]},{"id":"NCBITaxon:122587","l":"Neisseria meningitidis Z2491","na":1,"nb":2,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"]],"b":[["NCBITaxon%3A487","Neisseria meningitidis"],["NCBITaxon%3A122587","Neisseria meningitidis Z2491"]]},{"id":"NCBITaxon:1227482","l":"Halorubrum lipolyticum DSM 21995","na":1,"nb":2,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A368624","Halorubrum lipolyticum"],["NCBITaxon%3A1227482","Halorubrum lipolyticum DSM 21995"]]},{"id":"NCBITaxon:1227484","l":"Halorubrum saccharovorum DSM 1137","na":1,"nb":2,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A2248","Halorubrum saccharovorum"],["NCBITaxon%3A1227484","Halorubrum saccharovorum DSM 1137"]]},{"id":"NCBITaxon:1227493","l":"Natrialba hulunbeirensis JCM 10989","na":1,"nb":2,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A123783","Natrialba hulunbeirensis"],["NCBITaxon%3A1227493","Natrialba hulunbeirensis JCM 10989"]]},{"id":"NCBITaxon:1227498","l":"Natronococcus jeotgali DSM 18795","na":1,"nb":2,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A413812","Natronococcus jeotgali"],["NCBITaxon%3A1227498","Natronococcus jeotgali DSM 18795"]]},{"id":"NCBITaxon:1231184","l":"Nitratireductor kimnyeongensis KY 101","na":1,"nb":2,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A430679","Nitratireductor kimnyeongensis"],["NCBITaxon%3A1231184","Nitratireductor kimnyeongensis KY 101"]]},{"id":"NCBITaxon:1231624","l":"Asaia bogorensis NBRC 16594","na":1,"nb":2,"a":[["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A91915","Asaia bogorensis"],["NCBITaxon%3A1231624","Asaia bogorensis NBRC 16594"]]},{"id":"NCBITaxon:1232203","l":"Bacillus thuringiensis serovar aizawai str. Leapi01","na":2,"nb":1,"a":[["larva-bto-0000707.html","larva"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A1232203","Bacillus thuringiensis serovar aizawai str. Leapi01"]]},{"id":"NCBITaxon:1234369","l":"Chlamydia pecorum P787","na":1,"nb":2,"a":[["synovia-bto-0001339.html","synovia"]],"b":[["NCBITaxon%3A85991","Chlamydia pecorum"],["NCBITaxon%3A1234369","Chlamydia pecorum P787"]]},{"id":"NCBITaxon:1235813","l":"Bacteroides pyogenes JCM 10003","na":1,"nb":2,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["NCBITaxon%3A310300","Bacteroides pyogenes"],["NCBITaxon%3A1235813","Bacteroides pyogenes JCM 10003"]]},{"id":"NCBITaxon:1235834","l":"Kosakonia sacchari SP1","na":1,"nb":2,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1158459","Kosakonia sacchari"],["NCBITaxon%3A1235834","Kosakonia sacchari SP1"]]},{"id":"NCBITaxon:1236512","l":"Bacteroides rodentium JCM 16496","na":1,"nb":2,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A691816","Bacteroides rodentium"],["NCBITaxon%3A1236512","Bacteroides rodentium JCM 16496"]]},{"id":"NCBITaxon:1236513","l":"Bacteroides faecichinchillae JCM 17102","na":1,"nb":2,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A871325","Bacteroides faecichinchillae"],["NCBITaxon%3A1236513","Bacteroides faecichinchillae JCM 17102"]]},{"id":"NCBITaxon:1236514","l":"Bacteroides stercorirosoris JCM 17103","na":1,"nb":2,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A871324","Bacteroides stercorirosoris"],["NCBITaxon%3A1236514","Bacteroides stercorirosoris JCM 17103"]]},{"id":"NCBITaxon:1236517","l":"Prevotella fusca JCM 17724","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A589436","Prevotella fusca"],["NCBITaxon%3A1236517","Prevotella fusca JCM 17724"]]},{"id":"NCBITaxon:1236521","l":"Porphyromonas macacae JCM 15984","na":1,"nb":2,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["NCBITaxon%3A28115","Porphyromonas macacae"],["NCBITaxon%3A1236521","Porphyromonas macacae JCM 15984"]]},{"id":"NCBITaxon:1236522","l":"Escherichia coli JCM 18426","na":1,"nb":2,"a":[["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1236522","Escherichia coli JCM 18426"]]},{"id":"NCBITaxon:1236544","l":"Shewanella algae JCM 21037 = NBRC 103173","na":1,"nb":2,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A38313","Shewanella algae"],["NCBITaxon%3A1236544","Shewanella algae JCM 21037 = NBRC 103173"]]},{"id":"NCBITaxon:1238186","l":"Leucobacter salsicius M1-8","na":1,"nb":2,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A664638","Leucobacter salsicius"],["NCBITaxon%3A1238186","Leucobacter salsicius M1-8"]]},{"id":"NCBITaxon:123820","l":"[Actinobacillus] rossii","na":2,"nb":1,"a":[["vaginal-fluid-uberon-0036243.html","vaginal fluid"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A123820","[Actinobacillus] rossii"]]},{"id":"NCBITaxon:123822","l":"[Haemophilus] felis","na":2,"nb":1,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A123822","[Haemophilus] felis"]]},{"id":"NCBITaxon:1239783","l":"Bacillus atrophaeus UCMB-5137","na":2,"nb":1,"a":[["fruit-bto-0000486.html","fruit"],["seedling-bto-0001228.html","seedling"]],"b":[["NCBITaxon%3A1239783","Bacillus atrophaeus UCMB-5137"]]},{"id":"NCBITaxon:124","l":"Blastopirellula marina","na":1,"nb":2,"a":[["marine-environment-envo-01000320.html","marine environment"]],"b":[["NCBITaxon%3A124","Blastopirellula marina"],["NCBITaxon%3A314230","Blastopirellula marina DSM 3645"]]},{"id":"NCBITaxon:1240678","l":"Streptomyces natalensis ATCC 27448","na":1,"nb":2,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A1240678","Streptomyces natalensis ATCC 27448"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:1243002","l":"Vibrio olivae","na":1,"nb":2,"a":[["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A1433403","Glycocaulis abyssi"],["NCBITaxon%3A1243002","Vibrio olivae"]]},{"id":"NCBITaxon:1245469","l":"Bradyrhizobium oligotrophicum S58","na":1,"nb":2,"a":[["bacteroid-bto-0000109.html","bacteroid"]],"b":[["NCBITaxon%3A44255","Bradyrhizobium oligotrophicum"],["NCBITaxon%3A1245469","Bradyrhizobium oligotrophicum S58"]]},{"id":"NCBITaxon:1246444","l":"Nocardiopsis halotolerans DSM 44410","na":1,"nb":2,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A124252","Nocardiopsis halotolerans"],["NCBITaxon%3A1246444","Nocardiopsis halotolerans DSM 44410"]]},{"id":"NCBITaxon:1246445","l":"Nocardiopsis kunsanensis DSM 44524","na":1,"nb":2,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A141693","Nocardiopsis kunsanensis"],["NCBITaxon%3A1246445","Nocardiopsis kunsanensis DSM 44524"]]},{"id":"NCBITaxon:1246448","l":"Nocardiopsis valliformis DSM 45023","na":1,"nb":2,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A239974","Nocardiopsis valliformis"],["NCBITaxon%3A1246448","Nocardiopsis valliformis DSM 45023"]]},{"id":"NCBITaxon:1246460","l":"Nocardiopsis lucentensis DSM 44048","na":1,"nb":2,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A53441","Nocardiopsis lucentensis"],["NCBITaxon%3A1246460","Nocardiopsis lucentensis DSM 44048"]]},{"id":"NCBITaxon:1246461","l":"Nocardiopsis alkaliphila YIM 80379","na":1,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A225762","Nocardiopsis alkaliphila"],["NCBITaxon%3A1246461","Nocardiopsis alkaliphila YIM 80379"]]},{"id":"NCBITaxon:1246995","l":"Actinoplanes friuliensis DSM 7358","na":1,"nb":2,"a":[["sporangium-bto-0001287.html","sporangium"]],"b":[["NCBITaxon%3A196914","Actinoplanes friuliensis"],["NCBITaxon%3A1246995","Actinoplanes friuliensis DSM 7358"]]},{"id":"NCBITaxon:1255628","l":"Mammaliicoccus fleurettii CIP 106114 = DSM 13212","na":1,"nb":2,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A150056","Mammaliicoccus fleurettii"],["NCBITaxon%3A1255628","Mammaliicoccus fleurettii CIP 106114 = DSM 13212"]]},{"id":"NCBITaxon:125602","l":"Desulfococcus biacutus","na":2,"nb":1,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"],["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A125602","Desulfococcus biacutus"]]},{"id":"NCBITaxon:1257026","l":"Streptomyces barkulensis","na":2,"nb":1,"a":[["brackish-water-body-envo-01001321.html","brackish water body"],["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A1257026","Streptomyces barkulensis"]]},{"id":"NCBITaxon:1257037","l":"Streptococcus mutans 5DC8","na":2,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["tooth-bto-0000397.html","tooth"]],"b":[["NCBITaxon%3A1257037","Streptococcus mutans 5DC8"]]},{"id":"NCBITaxon:1257038","l":"Streptococcus mutans KK21","na":2,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["tooth-bto-0000397.html","tooth"]],"b":[["NCBITaxon%3A1257038","Streptococcus mutans KK21"]]},{"id":"NCBITaxon:1257039","l":"Streptococcus mutans KK23","na":2,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["tooth-bto-0000397.html","tooth"]],"b":[["NCBITaxon%3A1257039","Streptococcus mutans KK23"]]},{"id":"NCBITaxon:1257040","l":"Streptococcus mutans AC4446","na":2,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["tooth-bto-0000397.html","tooth"]],"b":[["NCBITaxon%3A1257040","Streptococcus mutans AC4446"]]},{"id":"NCBITaxon:1257042","l":"Streptococcus mutans NCTC 11060","na":2,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["tooth-bto-0000397.html","tooth"]],"b":[["NCBITaxon%3A1257042","Streptococcus mutans NCTC 11060"]]},{"id":"NCBITaxon:1259795","l":"Coprothermobacter platensis DSM 11748","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A108819","Coprothermobacter platensis"],["NCBITaxon%3A1259795","Coprothermobacter platensis DSM 11748"]]},{"id":"NCBITaxon:1260928","l":"Geobacter sulfurreducens subsp. ethanolicus","na":1,"nb":2,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A35554","Geobacter sulfurreducens"],["NCBITaxon%3A1260928","Geobacter sulfurreducens subsp. ethanolicus"]]},{"id":"NCBITaxon:1261125","l":"Mannheimia haemolytica serotype 6 str. H23","na":2,"nb":1,"a":[["nasopharynx-bto-0000662.html","nasopharynx"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1261125","Mannheimia haemolytica serotype 6 str. H23"]]},{"id":"NCBITaxon:1263547","l":"Oscillibacter ruminantium","na":1,"nb":2,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A1263547","Oscillibacter ruminantium"],["NCBITaxon%3A1007096","Oscillibacter ruminantium GH1"]]},{"id":"NCBITaxon:1263756","l":"Mycoplasmoides pneumoniae 54089","na":2,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1263756","Mycoplasmoides pneumoniae 54089"]]},{"id":"NCBITaxon:1263757","l":"Mycoplasmoides pneumoniae 54524","na":2,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1263757","Mycoplasmoides pneumoniae 54524"]]},{"id":"NCBITaxon:1263758","l":"Mycoplasmoides pneumoniae 51494","na":2,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1263758","Mycoplasmoides pneumoniae 51494"]]},{"id":"NCBITaxon:1263760","l":"Mycoplasmoides pneumoniae 85138","na":2,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1263760","Mycoplasmoides pneumoniae 85138"]]},{"id":"NCBITaxon:1263761","l":"Mycoplasmoides pneumoniae 39443","na":2,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1263761","Mycoplasmoides pneumoniae 39443"]]},{"id":"NCBITaxon:1263762","l":"Mycoplasmoides pneumoniae 85084","na":2,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1263762","Mycoplasmoides pneumoniae 85084"]]},{"id":"NCBITaxon:1263763","l":"Mycoplasmoides pneumoniae M1139","na":2,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1263763","Mycoplasmoides pneumoniae M1139"]]},{"id":"NCBITaxon:1263835","l":"Mycoplasmoides pneumoniae MAC","na":2,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1263835","Mycoplasmoides pneumoniae MAC"]]},{"id":"NCBITaxon:1266845","l":"Carnobacterium inhibens subsp. gilichinskyi","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A147709","Carnobacterium inhibens"],["NCBITaxon%3A1266845","Carnobacterium inhibens subsp. gilichinskyi"]]},{"id":"NCBITaxon:1267002","l":"Mycoplasmoides gallisepticum ATCC 19610","na":1,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A2096","Mycoplasmoides gallisepticum"],["NCBITaxon%3A1267002","Mycoplasmoides gallisepticum ATCC 19610"]]},{"id":"NCBITaxon:126741","l":"Thermotoga sp. KOL6","na":2,"nb":1,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A126741","Thermotoga sp. KOL6"]]},{"id":"NCBITaxon:126843","l":"Mesorhizobium chacoense","na":2,"nb":1,"a":[["anthropogenic-environment-envo-01000313.html","anthropogenic environment"],["mesoscopic-physical-object-envo-00002004.html","mesoscopic physical object"]],"b":[["NCBITaxon%3A126843","Mesorhizobium chacoense"]]},{"id":"NCBITaxon:1268635","l":"Legionella oakridgensis ATCC 33761 = DSM 21215","na":1,"nb":2,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A29423","Legionella oakridgensis"],["NCBITaxon%3A1268635","Legionella oakridgensis ATCC 33761 = DSM 21215"]]},{"id":"NCBITaxon:1271","l":"Micrococcus sp.","na":2,"nb":1,"a":[["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"]],"b":[["NCBITaxon%3A1271","Micrococcus sp."]]},{"id":"NCBITaxon:127458","l":"Thiobaca trueperi","na":2,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["lake-envo-00000020.html","lake"]],"b":[["NCBITaxon%3A127458","Thiobaca trueperi"]]},{"id":"NCBITaxon:127520","l":"Gremmeniella abietina","na":2,"nb":1,"a":[["lake-envo-00000020.html","lake"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"]],"b":[["NCBITaxon%3A127520","Gremmeniella abietina"]]},{"id":"NCBITaxon:1276","l":"Kytococcus sedentarius","na":1,"nb":2,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A1276","Kytococcus sedentarius"],["NCBITaxon%3A478801","Kytococcus sedentarius DSM 20547"]]},{"id":"NCBITaxon:1276220","l":"Spiroplasma taiwanense CT-1","na":1,"nb":2,"a":[["cardiovascular-system-bto-0000088.html","cardiovascular system"]],"b":[["NCBITaxon%3A2145","Spiroplasma taiwanense"],["NCBITaxon%3A1276220","Spiroplasma taiwanense CT-1"]]},{"id":"NCBITaxon:1276221","l":"Spiroplasma diminutum CUAS-1","na":1,"nb":2,"a":[["cardiovascular-system-bto-0000088.html","cardiovascular system"]],"b":[["NCBITaxon%3A216936","Spiroplasma diminutum"],["NCBITaxon%3A1276221","Spiroplasma diminutum CUAS-1"]]},{"id":"NCBITaxon:1276246","l":"Spiroplasma culicicola AES-1","na":1,"nb":2,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A216935","Spiroplasma culicicola"],["NCBITaxon%3A1276246","Spiroplasma culicicola AES-1"]]},{"id":"NCBITaxon:1279017","l":"Microbulbifer variabilis ATCC 700307","na":1,"nb":2,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A266805","Microbulbifer variabilis"],["NCBITaxon%3A1279017","Microbulbifer variabilis ATCC 700307"]]},{"id":"NCBITaxon:1280004","l":"Vibrio owensii LMG 25430","na":1,"nb":2,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A696485","Vibrio owensii"],["NCBITaxon%3A1280004","Vibrio owensii LMG 25430"]]},{"id":"NCBITaxon:128104","l":"Lentzea albidocapillata subsp. violacea","na":1,"nb":2,"a":[["geographic-feature-envo-00000000.html","geographic feature"]],"b":[["NCBITaxon%3A40571","Lentzea albidocapillata"],["NCBITaxon%3A128104","Lentzea albidocapillata subsp. violacea"]]},{"id":"NCBITaxon:1282887","l":"Lachnospira multipara ATCC 19207","na":1,"nb":2,"a":[["foregut-bto-0000507.html","foregut"]],"b":[["NCBITaxon%3A28051","Lachnospira multipara"],["NCBITaxon%3A1282887","Lachnospira multipara ATCC 19207"]]},{"id":"NCBITaxon:1283291","l":"Pseudomonas sp. URMO17WK12:I11","na":2,"nb":1,"a":[["cuticle-bto-0001600.html","cuticle"],["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A1283291","Pseudomonas sp. URMO17WK12:I11"]]},{"id":"NCBITaxon:1283300","l":"Methylohalobius crimeensis 10Ki","na":1,"nb":2,"a":[["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A244365","Methylohalobius crimeensis"],["NCBITaxon%3A1283300","Methylohalobius crimeensis 10Ki"]]},{"id":"NCBITaxon:1284","l":"Staphylococcus hyicus","na":1,"nb":2,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["NCBITaxon%3A1284","Staphylococcus hyicus"],["NCBITaxon%3A29387","Staphylococcus sp."]]},{"id":"NCBITaxon:128574","l":"Paenibacillus brasilensis","na":2,"nb":1,"a":[["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["NCBITaxon%3A128574","Paenibacillus brasilensis"]]},{"id":"NCBITaxon:1286348","l":"Escherichia coli TOP2522-1","na":2,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286348","Escherichia coli TOP2522-1"]]},{"id":"NCBITaxon:1286350","l":"Escherichia coli TOP2652","na":2,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286350","Escherichia coli TOP2652"]]},{"id":"NCBITaxon:1286351","l":"Escherichia coli TOP2662-1","na":2,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286351","Escherichia coli TOP2662-1"]]},{"id":"NCBITaxon:1286352","l":"Escherichia coli TOP2662-2","na":2,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286352","Escherichia coli TOP2662-2"]]},{"id":"NCBITaxon:1286353","l":"Escherichia coli TOP2662-3","na":2,"nb":1,"a":[["bladder-bto-0000123.html","bladder"],["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286353","Escherichia coli TOP2662-3"]]},{"id":"NCBITaxon:1287736","l":"Achromobacter aegrifaciens","na":1,"nb":2,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"]],"b":[["NCBITaxon%3A1287736","Achromobacter aegrifaciens"],["NCBITaxon%3A32002","Achromobacter denitrificans"]]},{"id":"NCBITaxon:128782","l":"Allobosea minatitlanensis","na":1,"nb":2,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A128782","Allobosea minatitlanensis"],["NCBITaxon%3A2126436","Carnobacterium antarcticum"]]},{"id":"NCBITaxon:1288027","l":"Arcticibacter svalbardensis","na":1,"nb":2,"a":[["subarctic-habitatmech-bacdive-09ded89de7.html","Subarctic"]],"b":[["NCBITaxon%3A1288027","Arcticibacter svalbardensis"],["NCBITaxon%3A1150600","Arcticibacter svalbardensis MN12-7"]]},{"id":"NCBITaxon:1288391","l":"Actinomyces timonensis","na":1,"nb":2,"a":[["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"]],"b":[["NCBITaxon%3A1288391","Actinomyces timonensis"],["NCBITaxon%3A521393","Actinomyces timonensis DSM 23838"]]},{"id":"NCBITaxon:1288392","l":"Moraxella porci","na":1,"nb":2,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["NCBITaxon%3A1288392","Moraxella porci"],["NCBITaxon%3A573983","Moraxella porci DSM 25326"]]},{"id":"NCBITaxon:1288492","l":"Enterococcus durans IPLA 655","na":2,"nb":1,"a":[["enterocyte-bto-0000398.html","enterocyte"],["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A1288492","Enterococcus durans IPLA 655"]]},{"id":"NCBITaxon:1291742","l":"Paucilactobacillus hokkaidonensis JCM 18461","na":1,"nb":2,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A1193095","Paucilactobacillus hokkaidonensis"],["NCBITaxon%3A1291742","Paucilactobacillus hokkaidonensis JCM 18461"]]},{"id":"NCBITaxon:1291743","l":"Secundilactobacillus oryzae JCM 18671","na":1,"nb":2,"a":[["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A1202668","Secundilactobacillus oryzae"],["NCBITaxon%3A1291743","Secundilactobacillus oryzae JCM 18671"]]},{"id":"NCBITaxon:1293","l":"Staphylococcus gallinarum","na":1,"nb":2,"a":[["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["NCBITaxon%3A1293","Staphylococcus gallinarum"],["NCBITaxon%3A1288","Staphylococcus xylosus"]]},{"id":"NCBITaxon:1293038","l":"Methanosarcina mazei JCM 9314","na":1,"nb":2,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A2209","Methanosarcina mazei"],["NCBITaxon%3A1293038","Methanosarcina mazei JCM 9314"]]},{"id":"NCBITaxon:1293039","l":"Methanobrevibacter arboriphilus JCM 9315","na":1,"nb":2,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A39441","Methanobrevibacter arboriphilus"],["NCBITaxon%3A1293039","Methanobrevibacter arboriphilus JCM 9315"]]},{"id":"NCBITaxon:1293042","l":"Methanoculleus chikugoensis JCM 10825","na":1,"nb":2,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A118126","Methanoculleus chikugoensis"],["NCBITaxon%3A1293042","Methanoculleus chikugoensis JCM 10825"]]},{"id":"NCBITaxon:1294022","l":"Piscibacillus salipiscarius JCM 13188","na":1,"nb":2,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A299480","Piscibacillus salipiscarius"],["NCBITaxon%3A1294022","Piscibacillus salipiscarius JCM 13188"]]},{"id":"NCBITaxon:1294260","l":"Geotalea toluenoxydans JCM 15764","na":1,"nb":2,"a":[["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A421624","Geotalea toluenoxydans"],["NCBITaxon%3A1294260","Geotalea toluenoxydans JCM 15764"]]},{"id":"NCBITaxon:1295128","l":"Thermodesulfovibrio aggregans JCM 13213","na":1,"nb":2,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A86166","Thermodesulfovibrio aggregans"],["NCBITaxon%3A1295128","Thermodesulfovibrio aggregans JCM 13213"]]},{"id":"NCBITaxon:1295373","l":"Acidiplasma cupricumulans JCM 13668 = DSM 16651","na":1,"nb":2,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A312540","Acidiplasma cupricumulans"],["NCBITaxon%3A1295373","Acidiplasma cupricumulans JCM 13668 = DSM 16651"]]},{"id":"NCBITaxon:1298595","l":"Veillonella rogosae JCM 15642","na":1,"nb":2,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["NCBITaxon%3A423477","Veillonella rogosae"],["NCBITaxon%3A1298595","Veillonella rogosae JCM 15642"]]},{"id":"NCBITaxon:1298604","l":"Enterobacter asburiae JCM 6051","na":1,"nb":2,"a":[["vaginal-fluid-uberon-0036243.html","vaginal fluid"]],"b":[["NCBITaxon%3A61645","Enterobacter asburiae"],["NCBITaxon%3A1298604","Enterobacter asburiae JCM 6051"]]},{"id":"NCBITaxon:1298606","l":"Methanosarcina barkeri JCM 10043","na":1,"nb":2,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A2208","Methanosarcina barkeri"],["NCBITaxon%3A1298606","Methanosarcina barkeri JCM 10043"]]},{"id":"NCBITaxon:1300163","l":"Methanobacterium formicicum JCM 10132","na":1,"nb":2,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A2162","Methanobacterium formicicum"],["NCBITaxon%3A1300163","Methanobacterium formicicum JCM 10132"]]},{"id":"NCBITaxon:1302689","l":"Mucilaginibacter polytrichastri","na":2,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A1302689","Mucilaginibacter polytrichastri"]]},{"id":"NCBITaxon:1302723","l":"Agromyces ulmi JCM 13315","na":1,"nb":2,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["NCBITaxon%3A248902","Agromyces ulmi"],["NCBITaxon%3A1302723","Agromyces ulmi JCM 13315"]]},{"id":"NCBITaxon:1303680","l":"Rhodococcus phenolicus JCM 14914","na":1,"nb":2,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A263849","Rhodococcus phenolicus"],["NCBITaxon%3A1303680","Rhodococcus phenolicus JCM 14914"]]},{"id":"NCBITaxon:1304875","l":"Aminobacterium mobile DSM 12262","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A81467","Aminobacterium mobile"],["NCBITaxon%3A1304875","Aminobacterium mobile DSM 12262"]]},{"id":"NCBITaxon:1305835","l":"Rhodococcus sp. JG-3","na":2,"nb":1,"a":[["dry-valley-envo-00000128.html","dry valley"],["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A1305835","Rhodococcus sp. JG-3"]]},{"id":"NCBITaxon:1305857","l":"Cellulomonas composti JCM 14898","na":1,"nb":2,"a":[["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A266130","Cellulomonas composti"],["NCBITaxon%3A1305857","Cellulomonas composti JCM 14898"]]},{"id":"NCBITaxon:1305865","l":"Cellulomonas chitinilytica JCM 16927","na":1,"nb":2,"a":[["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A398759","Cellulomonas chitinilytica"],["NCBITaxon%3A1305865","Cellulomonas chitinilytica JCM 16927"]]},{"id":"NCBITaxon:1307457","l":"Kineosporia mikuniensis JCM 9961","na":1,"nb":2,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A499547","Kineosporia mikuniensis"],["NCBITaxon%3A1307457","Kineosporia mikuniensis JCM 9961"]]},{"id":"NCBITaxon:1307759","l":"Desulfohalovibrio reitneri","na":2,"nb":1,"a":[["microbial-mat-envo-01000008.html","microbial mat"],["atoll-envo-00000166.html","atoll"]],"b":[["NCBITaxon%3A1307759","Desulfohalovibrio reitneri"]]},{"id":"NCBITaxon:1307912","l":"Acetobacter oeni LMG 21952","na":1,"nb":2,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A304077","Acetobacter oeni"],["NCBITaxon%3A1307912","Acetobacter oeni LMG 21952"]]},{"id":"NCBITaxon:1307920","l":"Acetobacter tropicalis NRIC 0312","na":1,"nb":2,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A104102","Acetobacter tropicalis"],["NCBITaxon%3A1307920","Acetobacter tropicalis NRIC 0312"]]},{"id":"NCBITaxon:1307939","l":"Komagataeibacter rhaeticus DSM 16663","na":1,"nb":2,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A215221","Komagataeibacter rhaeticus"],["NCBITaxon%3A1307939","Komagataeibacter rhaeticus DSM 16663"]]},{"id":"NCBITaxon:1307943","l":"Komagataeibacter swingsii DSM 16373","na":1,"nb":2,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A215220","Komagataeibacter swingsii"],["NCBITaxon%3A1307943","Komagataeibacter swingsii DSM 16373"]]},{"id":"NCBITaxon:131081","l":"Corynebacterium capitovis","na":1,"nb":2,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"]],"b":[["NCBITaxon%3A131081","Corynebacterium capitovis"],["NCBITaxon%3A1121354","Corynebacterium capitovis DSM 44611"]]},{"id":"NCBITaxon:131109","l":"Actinomyces bowdenii","na":2,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["NCBITaxon%3A131109","Actinomyces bowdenii"]]},{"id":"NCBITaxon:131110","l":"Schaalia radingae","na":1,"nb":2,"a":[["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["NCBITaxon%3A29317","Actinomyces sp."],["NCBITaxon%3A131110","Schaalia radingae"]]},{"id":"NCBITaxon:1314751","l":"Sutcliffiella cohnii NBRC 15565","na":1,"nb":2,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A33932","Sutcliffiella cohnii"],["NCBITaxon%3A1314751","Sutcliffiella cohnii NBRC 15565"]]},{"id":"NCBITaxon:1314958","l":"Parachlamydiaceae bacterium HS-T3","na":2,"nb":1,"a":[["epithelium-bto-0000416.html","epithelium"],["hep-2-cell-bto-0000976.html","HEp-2 cell"]],"b":[["NCBITaxon%3A1314958","Parachlamydiaceae bacterium HS-T3"]]},{"id":"NCBITaxon:13160","l":"Brevundimonas bullata","na":1,"nb":2,"a":[["biome-envo-00000428.html","biome"]],"b":[["NCBITaxon%3A13160","Brevundimonas bullata"],["NCBITaxon%3A1550907","Kiloniella antarctica"]]},{"id":"NCBITaxon:1319815","l":"Cetobacterium somerae ATCC BAA-474","na":1,"nb":2,"a":[["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"]],"b":[["NCBITaxon%3A188913","Cetobacterium somerae"],["NCBITaxon%3A1319815","Cetobacterium somerae ATCC BAA-474"]]},{"id":"NCBITaxon:1321369","l":"Staphylococcus aureus Bmb9393","na":2,"nb":1,"a":[["biofilm-bto-0002690.html","biofilm"],["epithelial-cell-bto-0000414.html","epithelial cell"]],"b":[["NCBITaxon%3A1321369","Staphylococcus aureus Bmb9393"]]},{"id":"NCBITaxon:132476","l":"Pseudomonas kilonensis","na":1,"nb":2,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A132476","Pseudomonas kilonensis"],["NCBITaxon%3A1173480","Pseudomonas kilonensis CBLA-66"]]},{"id":"NCBITaxon:1327988","l":"Lactiplantibacillus plantarum 16","na":2,"nb":1,"a":[["juice-bto-0000659.html","juice"],["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A1327988","Lactiplantibacillus plantarum 16"]]},{"id":"NCBITaxon:1328859","l":"Escherichia coli O157:H7 str. SS17","na":2,"nb":1,"a":[["rectal-epithelium-bto-0005445.html","rectal epithelium"],["squamous-epithelium-bto-0002072.html","squamous epithelium"]],"b":[["NCBITaxon%3A1328859","Escherichia coli O157:H7 str. SS17"]]},{"id":"NCBITaxon:1330043","l":"Bacillus bombysepticus str. Wang","na":2,"nb":1,"a":[["carcass-bto-0001965.html","carcass"],["thorax-bto-0001368.html","thorax"]],"b":[["NCBITaxon%3A1330043","Bacillus bombysepticus str. Wang"]]},{"id":"NCBITaxon:1333","l":"Streptococcus criceti","na":1,"nb":2,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A1333","Streptococcus criceti"],["NCBITaxon%3A873449","Streptococcus criceti HS-6"]]},{"id":"NCBITaxon:1333542","l":"Pseudomonas aeruginosa str. C 1426","na":1,"nb":2,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1333542","Pseudomonas aeruginosa str. C 1426"],["NCBITaxon%3A1333543","Pseudomonas aeruginosa str. C 1433"]]},{"id":"NCBITaxon:1333544","l":"Pseudomonas aeruginosa str. J 1385","na":1,"nb":2,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1333544","Pseudomonas aeruginosa str. J 1385"],["NCBITaxon%3A1333545","Pseudomonas aeruginosa str. J 1532"]]},{"id":"NCBITaxon:1334565","l":"Listeria monocytogenes EGD","na":2,"nb":1,"a":[["liver-bto-0000759.html","liver"],["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A1334565","Listeria monocytogenes EGD"]]},{"id":"NCBITaxon:1334628","l":"Burkholderia contaminans LMG 23361","na":1,"nb":2,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A488447","Burkholderia contaminans"],["NCBITaxon%3A1334628","Burkholderia contaminans LMG 23361"]]},{"id":"NCBITaxon:133534","l":"Dethiosulfovibrio russensis","na":2,"nb":1,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A133534","Dethiosulfovibrio russensis"]]},{"id":"NCBITaxon:1336234","l":"Atopobacter phocae ATCC BAA-285","na":1,"nb":2,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"]],"b":[["NCBITaxon%3A136492","Atopobacter phocae"],["NCBITaxon%3A1336234","Atopobacter phocae ATCC BAA-285"]]},{"id":"NCBITaxon:1336236","l":"Ruminococcus flavefaciens ATCC 19208","na":1,"nb":2,"a":[["foregut-bto-0000507.html","foregut"]],"b":[["NCBITaxon%3A1265","Ruminococcus flavefaciens"],["NCBITaxon%3A1336236","Ruminococcus flavefaciens ATCC 19208"]]},{"id":"NCBITaxon:1336240","l":"Shewanella colwelliana ATCC 39565","na":1,"nb":2,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["NCBITaxon%3A23","Shewanella colwelliana"],["NCBITaxon%3A1336240","Shewanella colwelliana ATCC 39565"]]},{"id":"NCBITaxon:1336241","l":"Eubacterium xylanophilum ATCC 35991","na":1,"nb":2,"a":[["foregut-bto-0000507.html","foregut"]],"b":[["NCBITaxon%3A39497","Eubacterium xylanophilum"],["NCBITaxon%3A1336241","Eubacterium xylanophilum ATCC 35991"]]},{"id":"NCBITaxon:1337958","l":"Amycolatopsis orientalis DSM 46075","na":1,"nb":2,"a":[["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A31958","Amycolatopsis orientalis"],["NCBITaxon%3A1337958","Amycolatopsis orientalis DSM 46075"]]},{"id":"NCBITaxon:1337996","l":"Paraburkholderia phenoliruptrix AC1100","na":1,"nb":2,"a":[["resting-cell-bto-0001170.html","resting cell"]],"b":[["NCBITaxon%3A252970","Paraburkholderia phenoliruptrix"],["NCBITaxon%3A1337996","Paraburkholderia phenoliruptrix AC1100"]]},{"id":"NCBITaxon:1341154","l":"Flavobacterium cauense R2A-7","na":1,"nb":2,"a":[["lake-envo-00000020.html","lake"]],"b":[["NCBITaxon%3A510946","Flavobacterium cauense"],["NCBITaxon%3A1341154","Flavobacterium cauense R2A-7"]]},{"id":"NCBITaxon:1341646","l":"Mycolicibacterium septicum DSM 44393","na":1,"nb":2,"a":[["catheter-device-ncit-c50344.html","Catheter Device"]],"b":[["NCBITaxon%3A98668","Mycolicibacterium septicum"],["NCBITaxon%3A1341646","Mycolicibacterium septicum DSM 44393"]]},{"id":"NCBITaxon:1341692","l":"Clostridium autoethanogenum DSM 10061","na":1,"nb":2,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A84023","Clostridium autoethanogenum"],["NCBITaxon%3A1341692","Clostridium autoethanogenum DSM 10061"]]},{"id":"NCBITaxon:1343076","l":"Candidatus Karelsulcia muelleri str. Sulcia-ALF","na":2,"nb":1,"a":[["phloem-bto-0001058.html","phloem"],["xylem-bto-0001468.html","xylem"]],"b":[["NCBITaxon%3A1343076","Candidatus Karelsulcia muelleri str. Sulcia-ALF"]]},{"id":"NCBITaxon:1343077","l":"Candidatus Nasuia deltocephalinicola str. NAS-ALF","na":2,"nb":1,"a":[["phloem-bto-0001058.html","phloem"],["xylem-bto-0001468.html","xylem"]],"b":[["NCBITaxon%3A1343077","Candidatus Nasuia deltocephalinicola str. NAS-ALF"]]},{"id":"NCBITaxon:1346614","l":"Serratia liquefaciens ATCC 27592","na":1,"nb":2,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A614","Serratia liquefaciens"],["NCBITaxon%3A1346614","Serratia liquefaciens ATCC 27592"]]},{"id":"NCBITaxon:1346791","l":"Sphingobium ummariense RL-3","na":1,"nb":2,"a":[["resting-cell-bto-0001170.html","resting cell"]],"b":[["NCBITaxon%3A420994","Sphingobium ummariense"],["NCBITaxon%3A1346791","Sphingobium ummariense RL-3"]]},{"id":"NCBITaxon:1348249","l":"Methanobrevibacter boviskoreani","na":1,"nb":2,"a":[["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"]],"b":[["NCBITaxon%3A1348249","Methanobrevibacter boviskoreani"],["NCBITaxon%3A1214066","Methanobrevibacter boviskoreani JH1"]]},{"id":"NCBITaxon:1348334","l":"Lyngbya aestuarii BL J","na":2,"nb":1,"a":[["filament-bto-0000463.html","filament"],["trichome-bto-0001395.html","trichome"]],"b":[["NCBITaxon%3A1348334","Lyngbya aestuarii BL J"]]},{"id":"NCBITaxon:1348637","l":"Nocardiopsis listeri NBRC 13360","na":1,"nb":2,"a":[["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A53440","Nocardiopsis listeri"],["NCBITaxon%3A1348637","Nocardiopsis listeri NBRC 13360"]]},{"id":"NCBITaxon:1348660","l":"Serratia plymuthica S13","na":2,"nb":1,"a":[["fruit-bto-0000486.html","fruit"],["pollen-bto-0001097.html","pollen"]],"b":[["NCBITaxon%3A1348660","Serratia plymuthica S13"]]},{"id":"NCBITaxon:1348662","l":"Corynebacterium argentoratense DSM 44202","na":1,"nb":2,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A42817","Corynebacterium argentoratense"],["NCBITaxon%3A1348662","Corynebacterium argentoratense DSM 44202"]]},{"id":"NCBITaxon:1349767","l":"Janthinobacterium agaricidamnosum NBRC 102515 = DSM 9628","na":1,"nb":2,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A55508","Janthinobacterium agaricidamnosum"],["NCBITaxon%3A1349767","Janthinobacterium agaricidamnosum NBRC 102515 = DSM 9628"]]},{"id":"NCBITaxon:1353537","l":"Thioclava pacifica DSM 10166","na":1,"nb":2,"a":[["filament-bto-0000463.html","filament"]],"b":[["NCBITaxon%3A285109","Thioclava pacifica"],["NCBITaxon%3A1353537","Thioclava pacifica DSM 10166"]]},{"id":"NCBITaxon:1354791","l":"Halorhodospira halochloris str. A","na":1,"nb":2,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A1052","Halorhodospira halochloris"],["NCBITaxon%3A1354791","Halorhodospira halochloris str. A"]]},{"id":"NCBITaxon:1355374","l":"Aliarcobacter lanthieri","na":2,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A1355374","Aliarcobacter lanthieri"]]},{"id":"NCBITaxon:1356854","l":"Alicyclobacillus acidoterrestris ATCC 49025","na":1,"nb":2,"a":[["fruit-juice-bto-0004057.html","fruit juice"]],"b":[["NCBITaxon%3A1450","Alicyclobacillus acidoterrestris"],["NCBITaxon%3A1356854","Alicyclobacillus acidoterrestris ATCC 49025"]]},{"id":"NCBITaxon:1364","l":"Pseudolactococcus piscium","na":1,"nb":2,"a":[["juice-bto-0000659.html","juice"]],"b":[["NCBITaxon%3A1364","Pseudolactococcus piscium"],["NCBITaxon%3A297352","Pseudolactococcus piscium MKFS47"]]},{"id":"NCBITaxon:136492","l":"Atopobacter phocae","na":1,"nb":2,"a":[["co-culture-habitatmech-bacdive-ff945d8a69.html","Co-culture"]],"b":[["NCBITaxon%3A136492","Atopobacter phocae"],["NCBITaxon%3A1336234","Atopobacter phocae ATCC BAA-285"]]},{"id":"NCBITaxon:1365176","l":"Thermofilum adornatum","na":1,"nb":2,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A1365176","Thermofilum adornatum"],["NCBITaxon%3A697581","Thermofilum adornatum 1505"]]},{"id":"NCBITaxon:1366047","l":"Geobacillus stearothermophilus ATCC 12980","na":1,"nb":2,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["NCBITaxon%3A1422","Geobacillus stearothermophilus"],["NCBITaxon%3A1366047","Geobacillus stearothermophilus ATCC 12980"]]},{"id":"NCBITaxon:1367847","l":"Paracoccus aminophilus JCM 7686","na":1,"nb":2,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A34003","Paracoccus aminophilus"],["NCBITaxon%3A1367847","Paracoccus aminophilus JCM 7686"]]},{"id":"NCBITaxon:1368418","l":"Rhizobium nepotum 39/7","na":1,"nb":2,"a":[["crown-gall-bto-0000303.html","crown gall"]],"b":[["NCBITaxon%3A1035271","Rhizobium nepotum"],["NCBITaxon%3A1368418","Rhizobium nepotum 39/7"]]},{"id":"NCBITaxon:13725","l":"Thiocystis violacea","na":2,"nb":1,"a":[["sea-grass-bed-envo-01000059.html","sea grass bed"],["sandy-sediment-envo-01000118.html","sandy sediment"]],"b":[["NCBITaxon%3A13725","Thiocystis violacea"]]},{"id":"NCBITaxon:137545","l":"Serratia quinivorans","na":1,"nb":2,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A28151","Serratia proteamaculans"],["NCBITaxon%3A137545","Serratia quinivorans"]]},{"id":"NCBITaxon:137733","l":"Granulicatella balaenopterae","na":2,"nb":1,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["dorsum-bto-0001713.html","dorsum"]],"b":[["NCBITaxon%3A137733","Granulicatella balaenopterae"]]},{"id":"NCBITaxon:1379786","l":"Wolbachia pipientis wVitA","na":2,"nb":1,"a":[["embryo-bto-0000379.html","embryo"],["semen-bto-0001230.html","semen"]],"b":[["NCBITaxon%3A1379786","Wolbachia pipientis wVitA"]]},{"id":"NCBITaxon:137993","l":"Ectobacillus funiculus","na":1,"nb":2,"a":[["reservoir-envo-00000025.html","reservoir"]],"b":[["NCBITaxon%3A137993","Ectobacillus funiculus"],["NCBITaxon%3A1844115","Sphingomonas floccifaciens"]]},{"id":"NCBITaxon:1380392","l":"Nocardioides sp. URHA0020","na":2,"nb":1,"a":[["grassland-area-envo-00000106.html","grassland area"],["grassland-biome-envo-01000177.html","grassland biome"]],"b":[["NCBITaxon%3A1380392","Nocardioides sp. URHA0020"]]},{"id":"NCBITaxon:1385512","l":"Pontibacillus litoralis JSM 072002","na":1,"nb":2,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A516703","Pontibacillus litoralis"],["NCBITaxon%3A1385512","Pontibacillus litoralis JSM 072002"]]},{"id":"NCBITaxon:1392848","l":"Escherichia coli M2","na":1,"nb":2,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1392848","Escherichia coli M2"]]},{"id":"NCBITaxon:1394","l":"[Bacillus] caldolyticus","na":2,"nb":1,"a":[["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"]],"b":[["NCBITaxon%3A1394","[Bacillus] caldolyticus"]]},{"id":"NCBITaxon:1395571","l":"Pseudomonas taeanensis MS-3","na":1,"nb":2,"a":[["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A574962","Pseudomonas taeanensis"],["NCBITaxon%3A1395571","Pseudomonas taeanensis MS-3"]]},{"id":"NCBITaxon:1397693","l":"Exiguobacterium undae DSM 14481","na":1,"nb":2,"a":[["pond-envo-00000033.html","pond"]],"b":[["NCBITaxon%3A169177","Exiguobacterium undae"],["NCBITaxon%3A1397693","Exiguobacterium undae DSM 14481"]]},{"id":"NCBITaxon:1397695","l":"Exiguobacterium undae 190-11","na":2,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"],["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A1397695","Exiguobacterium undae 190-11"]]},{"id":"NCBITaxon:1397697","l":"Exiguobacterium acetylicum DSM 20416","na":1,"nb":2,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["NCBITaxon%3A41170","Exiguobacterium acetylicum"],["NCBITaxon%3A1397697","Exiguobacterium acetylicum DSM 20416"]]},{"id":"NCBITaxon:1397700","l":"Exiguobacterium antarcticum DSM 14480","na":1,"nb":2,"a":[["dry-valley-envo-00000128.html","dry valley"]],"b":[["NCBITaxon%3A132920","Exiguobacterium antarcticum"],["NCBITaxon%3A1397700","Exiguobacterium antarcticum DSM 14480"]]},{"id":"NCBITaxon:1400522","l":"Sediminibacterium salmoneum NBRC 103935","na":1,"nb":2,"a":[["reservoir-envo-00000025.html","reservoir"]],"b":[["NCBITaxon%3A426421","Sediminibacterium salmoneum"],["NCBITaxon%3A1400522","Sediminibacterium salmoneum NBRC 103935"]]},{"id":"NCBITaxon:1402163","l":"Wolbachia endosymbiont wPip_Mol of Culex molestus","na":2,"nb":1,"a":[["embryo-bto-0000379.html","embryo"],["finger-bto-0004669.html","finger"]],"b":[["NCBITaxon%3A1402163","Wolbachia endosymbiont wPip_Mol of Culex molestus"]]},{"id":"NCBITaxon:140314","l":"Trichococcus palustris","na":2,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A140314","Trichococcus palustris"]]},{"id":"NCBITaxon:1407","l":"Peribacillus psychrosaccharolyticus","na":1,"nb":2,"a":[["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["NCBITaxon%3A1407","Peribacillus psychrosaccharolyticus"],["NCBITaxon%3A1174504","Peribacillus psychrosaccharolyticus ATCC 23296"]]},{"id":"NCBITaxon:1408159","l":"Pseudothermotoga caldifontis AZM44c09","na":1,"nb":2,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["NCBITaxon%3A1508419","Pseudothermotoga caldifontis"],["NCBITaxon%3A1408159","Pseudothermotoga caldifontis AZM44c09"]]},{"id":"NCBITaxon:1408160","l":"Thermotoga profunda AZM34c06","na":1,"nb":2,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["NCBITaxon%3A1508420","Pseudothermotoga profunda"],["NCBITaxon%3A1408160","Thermotoga profunda AZM34c06"]]},{"id":"NCBITaxon:1408271","l":"Pseudomonas aeruginosa LES400","na":2,"nb":1,"a":[["amoeba-bto-0005312.html","amoeba"],["biofilm-bto-0002690.html","biofilm"]],"b":[["NCBITaxon%3A1408271","Pseudomonas aeruginosa LES400"]]},{"id":"NCBITaxon:1408272","l":"Pseudomonas aeruginosa LES431","na":2,"nb":1,"a":[["amoeba-bto-0005312.html","amoeba"],["biofilm-bto-0002690.html","biofilm"]],"b":[["NCBITaxon%3A1408272","Pseudomonas aeruginosa LES431"]]},{"id":"NCBITaxon:1408273","l":"Pseudomonas aeruginosa LESB65","na":2,"nb":1,"a":[["amoeba-bto-0005312.html","amoeba"],["biofilm-bto-0002690.html","biofilm"]],"b":[["NCBITaxon%3A1408273","Pseudomonas aeruginosa LESB65"]]},{"id":"NCBITaxon:1408274","l":"Pseudomonas aeruginosa LESlike1","na":2,"nb":1,"a":[["amoeba-bto-0005312.html","amoeba"],["biofilm-bto-0002690.html","biofilm"]],"b":[["NCBITaxon%3A1408274","Pseudomonas aeruginosa LESlike1"]]},{"id":"NCBITaxon:1408281","l":"Endomicrobium proavitum","na":2,"nb":1,"a":[["flagellate-bto-0000464.html","flagellate"],["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1408281","Endomicrobium proavitum"]]},{"id":"NCBITaxon:1408434","l":"","na":1,"nb":2,"a":[["food-product-foodon-00001002.html","food product"]],"b":[["NCBITaxon%3A1299","Deinococcus radiodurans"],["NCBITaxon%3A243230","Deinococcus radiodurans R1 = ATCC 13939 = DSM 20539"]]},{"id":"NCBITaxon:1408438","l":"Hutsoniella sourekii ATCC 700629","na":1,"nb":2,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A87650","Hutsoniella sourekii"],["NCBITaxon%3A1408438","Hutsoniella sourekii ATCC 700629"]]},{"id":"NCBITaxon:1408440","l":"Gemella sanguinis ATCC 700632","na":1,"nb":2,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A84135","Gemella sanguinis"],["NCBITaxon%3A1408440","Gemella sanguinis ATCC 700632"]]},{"id":"NCBITaxon:1408478","l":"Vibrio cholerae ATCC 14035","na":1,"nb":2,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A666","Vibrio cholerae"],["NCBITaxon%3A1408478","Vibrio cholerae ATCC 14035"]]},{"id":"NCBITaxon:1410383","l":"Candidatus Tachikawaea gelatinosa","na":2,"nb":1,"a":[["midgut-bto-0000863.html","midgut"],["ovary-bto-0000975.html","ovary"]],"b":[["NCBITaxon%3A1410383","Candidatus Tachikawaea gelatinosa"]]},{"id":"NCBITaxon:1410653","l":"Clostridium lundense DSM 17049","na":1,"nb":2,"a":[["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"]],"b":[["NCBITaxon%3A319475","Clostridium lundense"],["NCBITaxon%3A1410653","Clostridium lundense DSM 17049"]]},{"id":"NCBITaxon:1411141","l":"Serratia ficaria NBRC 102596","na":1,"nb":2,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A61651","Serratia ficaria"],["NCBITaxon%3A1411141","Serratia ficaria NBRC 102596"]]},{"id":"NCBITaxon:1415755","l":"Halomonas sp. TG39a","na":2,"nb":1,"a":[["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A1415755","Halomonas sp. TG39a"]]},{"id":"NCBITaxon:141693","l":"Nocardiopsis kunsanensis","na":1,"nb":2,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A141693","Nocardiopsis kunsanensis"],["NCBITaxon%3A1246445","Nocardiopsis kunsanensis DSM 44524"]]},{"id":"NCBITaxon:1417985","l":"Bacillus thuringiensis LM1212","na":2,"nb":1,"a":[["carcass-bto-0001965.html","carcass"],["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1417985","Bacillus thuringiensis LM1212"]]},{"id":"NCBITaxon:141949","l":"Thermomonas haemolytica","na":2,"nb":1,"a":[["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A141949","Thermomonas haemolytica"]]},{"id":"NCBITaxon:1421019","l":"Kurthia huakuii","na":1,"nb":2,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A1421019","Kurthia huakuii"],["NCBITaxon%3A1334046","Kurthia huakuii LAM0618"]]},{"id":"NCBITaxon:1423716","l":"Ligilactobacillus acidipiscis DSM 15836","na":1,"nb":2,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A89059","Ligilactobacillus acidipiscis"],["NCBITaxon%3A1423716","Ligilactobacillus acidipiscis DSM 15836"]]},{"id":"NCBITaxon:1423719","l":"Dellaglioa algida DSM 15638","na":1,"nb":2,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["NCBITaxon%3A105612","Dellaglioa algida"],["NCBITaxon%3A1423719","Dellaglioa algida DSM 15638"]]},{"id":"NCBITaxon:1423731","l":"Liquorilactobacillus capillatus DSM 19910","na":1,"nb":2,"a":[["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A480931","Liquorilactobacillus capillatus"],["NCBITaxon%3A1423731","Liquorilactobacillus capillatus DSM 19910"]]},{"id":"NCBITaxon:1423749","l":"Limosilactobacillus gastricus DSM 16045","na":1,"nb":2,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["NCBITaxon%3A227942","Limosilactobacillus gastricus"],["NCBITaxon%3A1423749","Limosilactobacillus gastricus DSM 16045"]]},{"id":"NCBITaxon:1423759","l":"Liquorilactobacillus hordei DSM 19519","na":1,"nb":2,"a":[["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A468911","Liquorilactobacillus hordei"],["NCBITaxon%3A1423759","Liquorilactobacillus hordei DSM 19519"]]},{"id":"NCBITaxon:1423762","l":"Lactobacillus jensenii DSM 20557","na":1,"nb":2,"a":[["vaginal-fluid-uberon-0036243.html","vaginal fluid"]],"b":[["NCBITaxon%3A109790","Lactobacillus jensenii"],["NCBITaxon%3A1423762","Lactobacillus jensenii DSM 20557"]]},{"id":"NCBITaxon:1423763","l":"Lactobacillus kalixensis DSM 16043","na":1,"nb":2,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["NCBITaxon%3A227944","Lactobacillus kalixensis"],["NCBITaxon%3A1423763","Lactobacillus kalixensis DSM 16043"]]},{"id":"NCBITaxon:1423768","l":"Apilactobacillus kunkeei DSM 12361 = ATCC 700308","na":1,"nb":2,"a":[["honey-bto-0000605.html","honey"]],"b":[["NCBITaxon%3A148814","Apilactobacillus kunkeei"],["NCBITaxon%3A1423768","Apilactobacillus kunkeei DSM 12361 = ATCC 700308"]]},{"id":"NCBITaxon:1423789","l":"Lactiplantibacillus paraplantarum DSM 10667","na":1,"nb":2,"a":[["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["NCBITaxon%3A60520","Lactiplantibacillus paraplantarum"],["NCBITaxon%3A1423789","Lactiplantibacillus paraplantarum DSM 10667"]]},{"id":"NCBITaxon:1423796","l":"Loigolactobacillus rennini DSM 20253","na":1,"nb":2,"a":[["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["NCBITaxon%3A238013","Loigolactobacillus rennini"],["NCBITaxon%3A1423796","Loigolactobacillus rennini DSM 20253"]]},{"id":"NCBITaxon:1423808","l":"Lentilactobacillus sunkii DSM 19904","na":1,"nb":2,"a":[["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A481719","Lentilactobacillus sunkii"],["NCBITaxon%3A1423808","Lentilactobacillus sunkii DSM 19904"]]},{"id":"NCBITaxon:1427368","l":"Chlamydia pecorum IPTaLE","na":2,"nb":1,"a":[["conjunctiva-bto-0003415.html","conjunctiva"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A1427368","Chlamydia pecorum IPTaLE"]]},{"id":"NCBITaxon:1427369","l":"Chlamydia pecorum MC/MarsBar","na":2,"nb":1,"a":[["conjunctiva-bto-0003415.html","conjunctiva"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A1427369","Chlamydia pecorum MC/MarsBar"]]},{"id":"NCBITaxon:1427370","l":"Chlamydia pecorum DBDeUG","na":2,"nb":1,"a":[["conjunctiva-bto-0003415.html","conjunctiva"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A1427370","Chlamydia pecorum DBDeUG"]]},{"id":"NCBITaxon:1427371","l":"Chlamydia pecorum VR629","na":2,"nb":1,"a":[["conjunctiva-bto-0003415.html","conjunctiva"],["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A1427371","Chlamydia pecorum VR629"]]},{"id":"NCBITaxon:1429916","l":"Afipia sp. P52-10","na":2,"nb":1,"a":[["fruit-bto-0000486.html","fruit"],["vero-cell-bto-0001444.html","Vero cell"]],"b":[["NCBITaxon%3A1429916","Afipia sp. P52-10"]]},{"id":"NCBITaxon:1431546","l":"Corynebacterium aquilae DSM 44791","na":1,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A203263","Corynebacterium aquilae"],["NCBITaxon%3A1431546","Corynebacterium aquilae DSM 44791"]]},{"id":"NCBITaxon:1436133","l":"Actinacidiphila bryophytorum","na":1,"nb":2,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A1436133","Actinacidiphila bryophytorum"],["NCBITaxon%3A245294","Chromohalobacter sarecensis"]]},{"id":"NCBITaxon:1436140","l":"Ulnaria acus","na":2,"nb":1,"a":[["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"]],"b":[["NCBITaxon%3A1436140","Ulnaria acus"]]},{"id":"NCBITaxon:1437605","l":"Bifidobacterium actinocoloniiforme DSM 22766","na":1,"nb":2,"a":[["alimentary-canal-bto-0000058.html","alimentary canal"]],"b":[["NCBITaxon%3A638619","Bifidobacterium actinocoloniiforme"],["NCBITaxon%3A1437605","Bifidobacterium actinocoloniiforme DSM 22766"]]},{"id":"NCBITaxon:1437875","l":"Corynebacterium frankenforstense DSM 45800","na":1,"nb":2,"a":[["reservoir-envo-00000025.html","reservoir"]],"b":[["NCBITaxon%3A1230998","Corynebacterium frankenforstense"],["NCBITaxon%3A1437875","Corynebacterium frankenforstense DSM 45800"]]},{"id":"NCBITaxon:1442586","l":"Winogradskyella wandonensis","na":2,"nb":1,"a":[["intertidal-zone-envo-00000316.html","intertidal zone"],["mudflat-envo-00000192.html","mudflat"]],"b":[["NCBITaxon%3A1442586","Winogradskyella wandonensis"]]},{"id":"NCBITaxon:1443941","l":"Acinetobacter gandensis","na":2,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["NCBITaxon%3A1443941","Acinetobacter gandensis"]]},{"id":"NCBITaxon:1444712","l":"Candidatus Rubidus massiliensis","na":2,"nb":1,"a":[["elementary-body-bto-0000377.html","elementary body"],["reticulate-body-bto-0001172.html","reticulate body"]],"b":[["NCBITaxon%3A1444712","Candidatus Rubidus massiliensis"]]},{"id":"NCBITaxon:144550","l":"Mycolicibacterium fortuitum subsp. acetamidolyticum","na":1,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A1766","Mycolicibacterium fortuitum"],["NCBITaxon%3A144550","Mycolicibacterium fortuitum subsp. acetamidolyticum"]]},{"id":"NCBITaxon:1448136","l":"Roseomonas mucosa ATCC BAA-692","na":1,"nb":2,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A207340","Roseomonas mucosa"],["NCBITaxon%3A1448136","Roseomonas mucosa ATCC BAA-692"]]},{"id":"NCBITaxon:1449336","l":"Carnobacterium divergens DSM 20623","na":1,"nb":2,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["NCBITaxon%3A2748","Carnobacterium divergens"],["NCBITaxon%3A1449336","Carnobacterium divergens DSM 20623"]]},{"id":"NCBITaxon:1449345","l":"Helicobacter rodentium ATCC 700285","na":1,"nb":2,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A59617","Helicobacter rodentium"],["NCBITaxon%3A1449345","Helicobacter rodentium ATCC 700285"]]},{"id":"NCBITaxon:1449352","l":"Streptacidiphilus albus JL83","na":1,"nb":2,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A105425","Streptacidiphilus albus"],["NCBITaxon%3A1449352","Streptacidiphilus albus JL83"]]},{"id":"NCBITaxon:1450","l":"Alicyclobacillus acidoterrestris","na":1,"nb":2,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A1450","Alicyclobacillus acidoterrestris"],["NCBITaxon%3A1356854","Alicyclobacillus acidoterrestris ATCC 49025"]]},{"id":"NCBITaxon:1453497","l":"Kosmotoga arenicorallina S304","na":1,"nb":2,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A688066","Kosmotoga arenicorallina"],["NCBITaxon%3A1453497","Kosmotoga arenicorallina S304"]]},{"id":"NCBITaxon:1455","l":"Pseudobacillus badius","na":1,"nb":2,"a":[["organic-waste-material-envo-00002873.html","organic waste material"]],"b":[["NCBITaxon%3A1348627","Bacillus badius NBRC 15713"],["NCBITaxon%3A1455","Pseudobacillus badius"]]},{"id":"NCBITaxon:1455608","l":"Haladaptatus cibarius D43","na":1,"nb":2,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A453847","Haladaptatus cibarius"],["NCBITaxon%3A1455608","Haladaptatus cibarius D43"]]},{"id":"NCBITaxon:1460882","l":"Microbispora bryophytorum","na":1,"nb":2,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A1460882","Microbispora bryophytorum"],["NCBITaxon%3A1677852","Microbispora bryophytorum subsp. camponoti"]]},{"id":"NCBITaxon:147207","l":"Collinsella intestinalis","na":1,"nb":2,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A147207","Collinsella intestinalis"],["NCBITaxon%3A521003","Collinsella intestinalis DSM 13280"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A1474","Sporosarcina pasteurii"],["NCBITaxon%3A1415631","Sporosarcina pasteurii NCIM 2477"]]},{"id":"NCBITaxon:148219","l":"uncultured Crater Lake bacterium CL500-11","na":2,"nb":1,"a":[["freshwater-lake-envo-00000021.html","freshwater lake"],["freshwater-lake-biome-envo-01000252.html","freshwater lake biome"]],"b":[["NCBITaxon%3A148219","uncultured Crater Lake bacterium CL500-11"]]},{"id":"NCBITaxon:149015","l":"Streptococcus hyovaginalis","na":1,"nb":2,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["NCBITaxon%3A149015","Streptococcus hyovaginalis"],["NCBITaxon%3A1123305","Streptococcus hyovaginalis DSM 12219"]]},{"id":"NCBITaxon:1493","l":"Clostridium cellulovorans","na":1,"nb":2,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"]],"b":[["NCBITaxon%3A1493","Clostridium cellulovorans"],["NCBITaxon%3A573061","Clostridium cellulovorans 743B"]]},{"id":"NCBITaxon:1494","l":"Clostridium cochlearium","na":2,"nb":1,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"]],"b":[["NCBITaxon%3A1494","Clostridium cochlearium"]]},{"id":"NCBITaxon:1497","l":"Andreesenella formicacetica","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A1497","Andreesenella formicacetica"],["NCBITaxon%3A92488","Pantoea endophytica"]]},{"id":"NCBITaxon:1498499","l":"Legionella norrlandica","na":2,"nb":1,"a":[["wood-bto-0005516.html","wood"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"]],"b":[["NCBITaxon%3A1498499","Legionella norrlandica"]]},{"id":"NCBITaxon:150120","l":"Shewanella livingstonensis","na":2,"nb":1,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"]],"b":[["NCBITaxon%3A150120","Shewanella livingstonensis"]]},{"id":"NCBITaxon:1501332","l":"Oribacterium asaccharolyticum","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A1501332","Oribacterium asaccharolyticum"],["NCBITaxon%3A796944","Oribacterium asaccharolyticum ACB7"]]},{"id":"NCBITaxon:150146","l":"Flavobacterium gillisiae","na":2,"nb":1,"a":[["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A150146","Flavobacterium gillisiae"]]},{"id":"NCBITaxon:150172","l":"Flavobacterium tegetincola","na":1,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A150172","Flavobacterium tegetincola"],["NCBITaxon%3A1121901","Flavobacterium tegetincola DSM 22377"]]},{"id":"NCBITaxon:1504","l":"Clostridium septicum","na":2,"nb":1,"a":[["carcass-envo-00002033.html","carcass"],["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["NCBITaxon%3A1504","Clostridium septicum"]]},{"id":"NCBITaxon:1505232","l":"Chitinivibrio alkaliphilus","na":1,"nb":2,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["NCBITaxon%3A1505232","Chitinivibrio alkaliphilus"],["NCBITaxon%3A1313304","Chitinivibrio alkaliphilus ACht1"]]},{"id":"NCBITaxon:1508420","l":"Pseudothermotoga profunda","na":1,"nb":2,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1508420","Pseudothermotoga profunda"],["NCBITaxon%3A1408160","Thermotoga profunda AZM34c06"]]},{"id":"NCBITaxon:1511","l":"Acetoanaerobium sticklandii","na":1,"nb":2,"a":[["animal-house-envo-00003040.html","animal house"]],"b":[["NCBITaxon%3A1511","Acetoanaerobium sticklandii"],["NCBITaxon%3A499177","Acetoanaerobium sticklandii DSM 519"]]},{"id":"NCBITaxon:151276","l":"Bacteroides coprosuis","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A151276","Bacteroides coprosuis"],["NCBITaxon%3A679937","Bacteroides coprosuis DSM 18011"]]},{"id":"NCBITaxon:1513898","l":"Tetragenococcus halophilus subsp. flandriensis","na":1,"nb":2,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A51669","Tetragenococcus halophilus"],["NCBITaxon%3A1513898","Tetragenococcus halophilus subsp. flandriensis"]]},{"id":"NCBITaxon:151783","l":"Cupriavidus campinensis","na":1,"nb":2,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A151783","Cupriavidus campinensis"],["NCBITaxon%3A1706855","Deinococcus malanensis"]]},{"id":"NCBITaxon:152268","l":"Metabacillus litoralis","na":2,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A152268","Metabacillus litoralis"]]},{"id":"NCBITaxon:152297","l":"Pseudoalteromonas issachenkonii","na":1,"nb":2,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A152297","Pseudoalteromonas issachenkonii"],["NCBITaxon%3A1315274","Pseudoalteromonas issachenkonii KMM 3549"]]},{"id":"NCBITaxon:153501","l":"uncultured Methylocystis sp.","na":2,"nb":1,"a":[["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["cultivated-environment-envo-01000311.html","cultivated environment"]],"b":[["NCBITaxon%3A153501","uncultured Methylocystis sp."]]},{"id":"NCBITaxon:1536","l":"Hathewaya limosa","na":1,"nb":2,"a":[["cropland-biome-envo-01000245.html","cropland biome"]],"b":[["NCBITaxon%3A1506","Clostridium sp."],["NCBITaxon%3A1536","Hathewaya limosa"]]},{"id":"NCBITaxon:1538","l":"Clostridium ljungdahlii","na":1,"nb":2,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A1538","Clostridium ljungdahlii"],["NCBITaxon%3A748727","Clostridium ljungdahlii DSM 13528"]]},{"id":"NCBITaxon:154117","l":"Georgenia muralis","na":2,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"],["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A154117","Georgenia muralis"]]},{"id":"NCBITaxon:154288","l":"Turicibacter sanguinis","na":1,"nb":2,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A154288","Turicibacter sanguinis"],["NCBITaxon%3A702450","Turicibacter sanguinis PC909"]]},{"id":"NCBITaxon:1543","l":"Clostridium oceanicum","na":2,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"]],"b":[["NCBITaxon%3A1543","Clostridium oceanicum"]]},{"id":"NCBITaxon:1549639","l":"Rufibacter quisquiliarum","na":2,"nb":1,"a":[["leachate-envo-00002141.html","leachate"],["landfill-envo-00000533.html","landfill"]],"b":[["NCBITaxon%3A1549639","Rufibacter quisquiliarum"]]},{"id":"NCBITaxon:155077","l":"Cellvibrio japonicus","na":1,"nb":2,"a":[["compost-envo-00002170.html","compost"]],"b":[["NCBITaxon%3A155077","Cellvibrio japonicus"],["NCBITaxon%3A498211","Cellvibrio japonicus Ueda107"]]},{"id":"NCBITaxon:1552750","l":"Zoogloea oleivorans","na":2,"nb":1,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A1552750","Zoogloea oleivorans"]]},{"id":"NCBITaxon:155866","l":"Weissella soli","na":2,"nb":1,"a":[["high-temperature-environment-envo-01000305.html","high temperature environment"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["NCBITaxon%3A155866","Weissella soli"]]},{"id":"NCBITaxon:1560005","l":"Edaphobacter dinghuensis","na":2,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"],["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A1560005","Edaphobacter dinghuensis"]]},{"id":"NCBITaxon:1561","l":"Clostridium baratii","na":1,"nb":2,"a":[["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["NCBITaxon%3A1561","Clostridium baratii"],["NCBITaxon%3A1415775","Clostridium baratii str. Sullivan"]]},{"id":"NCBITaxon:156202","l":"Petrotoga sibirica","na":1,"nb":2,"a":[["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A156202","Petrotoga sibirica"],["NCBITaxon%3A1122956","Petrotoga sibirica DSM 13575"]]},{"id":"NCBITaxon:156203","l":"Petrotoga olearia","na":1,"nb":2,"a":[["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A156203","Petrotoga olearia"],["NCBITaxon%3A1122955","Petrotoga olearia DSM 13574"]]},{"id":"NCBITaxon:1566","l":"Desulfofundulus australicus","na":1,"nb":2,"a":[["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1566","Desulfofundulus australicus"],["NCBITaxon%3A1121425","Desulfofundulus australicus DSM 11792"]]},{"id":"NCBITaxon:156979","l":"Pseudoglutamicibacter cumminsii","na":1,"nb":2,"a":[["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A156979","Pseudoglutamicibacter cumminsii"],["NCBITaxon%3A1255707","Pseudoglutamicibacter cumminsii ws2216"]]},{"id":"NCBITaxon:156980","l":"Arthrobacter woluwensis","na":1,"nb":2,"a":[["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["NCBITaxon%3A156980","Arthrobacter woluwensis"],["NCBITaxon%3A1216974","Arthrobacter woluwensis NBRC 107840"]]},{"id":"NCBITaxon:157465","l":"Nocardiopsis composta","na":2,"nb":1,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"],["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A157465","Nocardiopsis composta"]]},{"id":"NCBITaxon:157732","l":"Rhodococcus sp. NCIMB 9784","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A157732","Rhodococcus sp. NCIMB 9784"]]},{"id":"NCBITaxon:1578720","l":"Helicobacter ailurogastricus","na":2,"nb":1,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["mycosis-habitatmech-bacdive-6d5784a4c5.html","Mycosis"]],"b":[["NCBITaxon%3A1578720","Helicobacter ailurogastricus"]]},{"id":"NCBITaxon:158627","l":"Pseudomonas graminis","na":2,"nb":1,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"],["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"]],"b":[["NCBITaxon%3A158627","Pseudomonas graminis"]]},{"id":"NCBITaxon:159254","l":"Parachlamydia acanthamoebae str. Hall's coccus","na":2,"nb":1,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A159254","Parachlamydia acanthamoebae str. Hall's coccus"]]},{"id":"NCBITaxon:1592728","l":"Haloarcula sp. CBA1115","na":1,"nb":2,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A44098","Haloarcula sp."],["NCBITaxon%3A1592728","Haloarcula sp. CBA1115"]]},{"id":"NCBITaxon:159346","l":"Roseicyclus elongatus","na":1,"nb":2,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A159346","Roseicyclus elongatus"],["NCBITaxon%3A1294273","Roseicyclus elongatus DSM 19469"]]},{"id":"NCBITaxon:1594731","l":"Candidatus Westeberhardia cardiocondylae","na":2,"nb":1,"a":[["nurse-cell-bto-0000953.html","nurse cell"],["oocyte-bto-0000964.html","oocyte"]],"b":[["NCBITaxon%3A1594731","Candidatus Westeberhardia cardiocondylae"]]},{"id":"NCBITaxon:159728","l":"Desulfovibrio cuneatus","na":1,"nb":2,"a":[["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["NCBITaxon%3A159728","Desulfovibrio cuneatus"],["NCBITaxon%3A1121443","Desulfovibrio cuneatus DSM 11391"]]},{"id":"NCBITaxon:160488","l":"Pseudomonas putida KT2440","na":1,"nb":2,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A303","Pseudomonas putida"],["NCBITaxon%3A160488","Pseudomonas putida KT2440"]]},{"id":"NCBITaxon:1607837","l":"Leuconostoc gelidum subsp. aenigmaticum","na":1,"nb":2,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["NCBITaxon%3A1244","Leuconostoc gelidum"],["NCBITaxon%3A1607837","Leuconostoc gelidum subsp. aenigmaticum"]]},{"id":"NCBITaxon:161360","l":"Planococcus antarcticus","na":1,"nb":2,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A161360","Planococcus antarcticus"],["NCBITaxon%3A1185653","Planococcus antarcticus DSM 14505"]]},{"id":"NCBITaxon:1615","l":"Weissella halotolerans","na":1,"nb":2,"a":[["research-facility-envo-00000469.html","research facility"]],"b":[["NCBITaxon%3A1615","Weissella halotolerans"],["NCBITaxon%3A1123500","Weissella halotolerans DSM 20190"]]},{"id":"NCBITaxon:161895","l":"Corynebacterium phocae","na":1,"nb":2,"a":[["nasal-cavity-bto-0002096.html","nasal cavity"]],"b":[["NCBITaxon%3A131112","Arcanobacterium phocae"],["NCBITaxon%3A161895","Corynebacterium phocae"]]},{"id":"NCBITaxon:162209","l":"Paenibacillus naphthalenovorans","na":2,"nb":1,"a":[["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["surface-water-envo-00002042.html","surface water"]],"b":[["NCBITaxon%3A162209","Paenibacillus naphthalenovorans"]]},{"id":"NCBITaxon:163908","l":"Anabaena sp. PCC 7108","na":2,"nb":1,"a":[["beach-envo-00000091.html","beach"],["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["NCBITaxon%3A163908","Anabaena sp. PCC 7108"]]},{"id":"NCBITaxon:164330","l":"Thauera aminoaromatica","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A164330","Thauera aminoaromatica"],["NCBITaxon%3A1234381","Thauera aminoaromatica S2"]]},{"id":"NCBITaxon:164400","l":"Thauera phenylacetica","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A164400","Thauera phenylacetica"],["NCBITaxon%3A1234382","Thauera phenylacetica B4P"]]},{"id":"NCBITaxon:1645614","l":"Psychromicrobium silvestre","na":2,"nb":1,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"],["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A1645614","Psychromicrobium silvestre"]]},{"id":"NCBITaxon:1646377","l":"Rouxiella badensis","na":1,"nb":2,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A1646377","Rouxiella badensis"],["NCBITaxon%3A3041084","Rouxiella badensis subsp. acadiensis"]]},{"id":"NCBITaxon:1646498","l":"Acinetobacter sp. TTH0-4","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A472","Acinetobacter sp."],["NCBITaxon%3A1646498","Acinetobacter sp. TTH0-4"]]},{"id":"NCBITaxon:164756","l":"Mycobacterium sp. MCS","na":2,"nb":1,"a":[["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A164756","Mycobacterium sp. MCS"]]},{"id":"NCBITaxon:1653064","l":"Halanaerobium sp. DL-01","na":2,"nb":1,"a":[["ocean-trench-envo-00000275.html","ocean trench"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A1653064","Halanaerobium sp. DL-01"]]},{"id":"NCBITaxon:166","l":"Treponema sp.","na":2,"nb":1,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A166","Treponema sp."]]},{"id":"NCBITaxon:167879","l":"Colwellia psychrerythraea 34H","na":2,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A167879","Colwellia psychrerythraea 34H"]]},{"id":"NCBITaxon:168384","l":"Marvinbryantia formatexigens","na":1,"nb":2,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A168384","Marvinbryantia formatexigens"],["NCBITaxon%3A478749","Marvinbryantia formatexigens DSM 14469"]]},{"id":"NCBITaxon:168685","l":"Rhizobium sp. AC100","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A168685","Rhizobium sp. AC100"]]},{"id":"NCBITaxon:1691979","l":"Chitinophagaceae bacterium PMP191F","na":1,"nb":2,"a":[["peritoneum-bto-0001472.html","peritoneum"]],"b":[["NCBITaxon%3A1691979","Chitinophagaceae bacterium PMP191F"],["NCBITaxon%3A2100819","Pseudoflavitalea muciniphila"]]},{"id":"NCBITaxon:169292","l":"Corynebacterium aurimucosum","na":1,"nb":2,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A169292","Corynebacterium aurimucosum"],["NCBITaxon%3A548476","Corynebacterium aurimucosum ATCC 700975"]]},{"id":"NCBITaxon:1697787","l":"Clostridia bacterium UC5.1-1D10","na":2,"nb":1,"a":[["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697787","Clostridia bacterium UC5.1-1D10"]]},{"id":"NCBITaxon:1697788","l":"Clostridia bacterium UC5.1-2H6","na":2,"nb":1,"a":[["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697788","Clostridia bacterium UC5.1-2H6"]]},{"id":"NCBITaxon:1697789","l":"Clostridia bacterium UC5.1-1E3","na":2,"nb":1,"a":[["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697789","Clostridia bacterium UC5.1-1E3"]]},{"id":"NCBITaxon:1697790","l":"Clostridia bacterium UC5.1-1C12","na":2,"nb":1,"a":[["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697790","Clostridia bacterium UC5.1-1C12"]]},{"id":"NCBITaxon:1697791","l":"Clostridia bacterium UC5.1-2G4","na":2,"nb":1,"a":[["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697791","Clostridia bacterium UC5.1-2G4"]]},{"id":"NCBITaxon:1697792","l":"Clostridia bacterium UC5.1-2F7","na":2,"nb":1,"a":[["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697792","Clostridia bacterium UC5.1-2F7"]]},{"id":"NCBITaxon:1697793","l":"Clostridia bacterium UC5.1-1E11","na":2,"nb":1,"a":[["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697793","Clostridia bacterium UC5.1-1E11"]]},{"id":"NCBITaxon:1697794","l":"Clostridia bacterium UC5.1-1D1","na":2,"nb":1,"a":[["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697794","Clostridia bacterium UC5.1-1D1"]]},{"id":"NCBITaxon:1697795","l":"Clostridia bacterium UC5.1-2H11","na":2,"nb":1,"a":[["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697795","Clostridia bacterium UC5.1-2H11"]]},{"id":"NCBITaxon:1697796","l":"Bacteroidia bacterium UC5.1-2G11","na":2,"nb":1,"a":[["intestinal-epithelial-cell-bto-0005937.html","intestinal epithelial cell"],["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697796","Bacteroidia bacterium UC5.1-2G11"]]},{"id":"NCBITaxon:170673","l":"Vibrio kanaloae","na":1,"nb":2,"a":[["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["NCBITaxon%3A170673","Vibrio kanaloae"],["NCBITaxon%3A1191299","Vibrio kanaloae 5S-149"]]},{"id":"NCBITaxon:170994","l":"Brevibacterium paucivorans","na":1,"nb":2,"a":[["catheter-device-ncit-c50344.html","Catheter Device"]],"b":[["NCBITaxon%3A53363","Brevibacterium mcbrellneri"],["NCBITaxon%3A170994","Brevibacterium paucivorans"]]},{"id":"NCBITaxon:1712031","l":"Streptobacillus notomytis","na":1,"nb":2,"a":[["heart-bto-0000562.html","heart"]],"b":[["NCBITaxon%3A34105","Streptobacillus moniliformis"],["NCBITaxon%3A1712031","Streptobacillus notomytis"]]},{"id":"NCBITaxon:1712665","l":"Agathobacter ruminis","na":2,"nb":1,"a":[["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"],["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A1712665","Agathobacter ruminis"]]},{"id":"NCBITaxon:171401","l":"Paenibacillus agarexedens","na":2,"nb":1,"a":[["forested-area-envo-00000111.html","forested area"],["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A171401","Paenibacillus agarexedens"]]},{"id":"NCBITaxon:172044","l":"Sphingomonas yabuuchiae","na":1,"nb":2,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A172044","Sphingomonas yabuuchiae"],["NCBITaxon%3A1508805","Sphingorhabdus buctiana"]]},{"id":"NCBITaxon:173363","l":"Brachybacterium fresconis","na":1,"nb":2,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A173363","Brachybacterium fresconis"],["NCBITaxon%3A2675430","Ottowia flava"]]},{"id":"NCBITaxon:173861","l":"Streptomyces stramineus","na":1,"nb":2,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A68182","Streptomyces capillispiralis"],["NCBITaxon%3A173861","Streptomyces stramineus"]]},{"id":"NCBITaxon:174587","l":"Carnobacterium viridans","na":2,"nb":1,"a":[["food-product-foodon-00001002.html","food product"],["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["NCBITaxon%3A174587","Carnobacterium viridans"]]},{"id":"NCBITaxon:177437","l":"Desulforapulum autotrophicum HRM2","na":1,"nb":2,"a":[["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["NCBITaxon%3A2296","Desulforapulum autotrophicum"],["NCBITaxon%3A177437","Desulforapulum autotrophicum HRM2"]]},{"id":"NCBITaxon:1774373","l":"Alteromonas mediterranea DE","na":1,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["NCBITaxon%3A314275","Alteromonas mediterranea"],["NCBITaxon%3A1774373","Alteromonas mediterranea DE"]]},{"id":"NCBITaxon:178306","l":"Pyrobaculum aerophilum str. IM2","na":1,"nb":2,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A13773","Pyrobaculum aerophilum"],["NCBITaxon%3A178306","Pyrobaculum aerophilum str. IM2"]]},{"id":"NCBITaxon:1798184","l":"Sarcina sp. DSM 11001","na":1,"nb":2,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A1798184","Sarcina sp. DSM 11001"]]},{"id":"NCBITaxon:1798213","l":"Pseudovibrio sp. Tun.PSC04-5.I4","na":2,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A1798213","Pseudovibrio sp. Tun.PSC04-5.I4"]]},{"id":"NCBITaxon:179878","l":"Sphingomonas elodea","na":1,"nb":2,"a":[["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A179878","Sphingomonas elodea"],["NCBITaxon%3A1081640","Sphingomonas elodea ATCC 31461"]]},{"id":"NCBITaxon:1799529","l":"Leptospira sp. ZV016","na":2,"nb":1,"a":[["kidney-bto-0000671.html","kidney"],["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1799529","Leptospira sp. ZV016"]]},{"id":"NCBITaxon:180441","l":"Flavobacterium limicola","na":1,"nb":2,"a":[["watercourse-envo-00000029.html","watercourse"]],"b":[["NCBITaxon%3A180441","Flavobacterium limicola"],["NCBITaxon%3A182264","Sporotomaculum syntrophicum"]]},{"id":"NCBITaxon:181487","l":"Schaalia cardiffensis","na":1,"nb":2,"a":[["medical-device-habitatmech-bacdive-7ea89610a2.html","Medical-device"]],"b":[["NCBITaxon%3A181487","Schaalia cardiffensis"],["NCBITaxon%3A888050","Schaalia cardiffensis F0333"]]},{"id":"NCBITaxon:1848","l":"Pseudonocardia thermophila","na":1,"nb":2,"a":[["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["NCBITaxon%3A1848","Pseudonocardia thermophila"],["NCBITaxon%3A1123026","Pseudonocardia thermophila DSM 43832"]]},{"id":"NCBITaxon:185007","l":"Pseudobutyrivibrio xylanivorans","na":1,"nb":2,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"]],"b":[["NCBITaxon%3A185007","Pseudobutyrivibrio xylanivorans"],["NCBITaxon%3A1123012","Pseudobutyrivibrio xylanivorans DSM 14809"]]},{"id":"NCBITaxon:1851395","l":"Actinomyces sp. Chiba101","na":2,"nb":1,"a":[["dental-plaque-bto-0000338.html","dental plaque"],["submandibular-lymph-node-bto-0000769.html","submandibular lymph node"]],"b":[["NCBITaxon%3A1851395","Actinomyces sp. Chiba101"]]},{"id":"NCBITaxon:1855377","l":"Candidatus Aquiluna sp. UB-MaderosW2red","na":1,"nb":2,"a":[["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A2053504","Aquiluna sp."],["NCBITaxon%3A1855377","Candidatus Aquiluna sp. UB-MaderosW2red"]]},{"id":"NCBITaxon:185761","l":"Corynebacterium spheniscorum","na":2,"nb":1,"a":[["alimentary-canal-bto-0000058.html","alimentary canal"],["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A185761","Corynebacterium spheniscorum"]]},{"id":"NCBITaxon:185949","l":"Sphingomonas aurantiaca","na":2,"nb":1,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"],["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A185949","Sphingomonas aurantiaca"]]},{"id":"NCBITaxon:186497","l":"Pyrococcus furiosus DSM 3638","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A2261","Pyrococcus furiosus"],["NCBITaxon%3A186497","Pyrococcus furiosus DSM 3638"]]},{"id":"NCBITaxon:1867252","l":"Borrelia hermsii HS1","na":1,"nb":2,"a":[["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A140","Borrelia hermsii"],["NCBITaxon%3A1867252","Borrelia hermsii HS1"]]},{"id":"NCBITaxon:186741","l":"uncultured Geobacter sp.","na":2,"nb":1,"a":[["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["cultivated-environment-envo-01000311.html","cultivated environment"]],"b":[["NCBITaxon%3A186741","uncultured Geobacter sp."]]},{"id":"NCBITaxon:1868325","l":"Prosthecochloris sp. CIB 2401","na":1,"nb":2,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A1844006","Phaeobacter porticola"],["NCBITaxon%3A1868325","Prosthecochloris sp. CIB 2401"]]},{"id":"NCBITaxon:1868734","l":"Aeribacillus composti","na":2,"nb":1,"a":[["compost-envo-00002170.html","compost"],["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A1868734","Aeribacillus composti"]]},{"id":"NCBITaxon:1871044","l":"Clavibacter sp.","na":2,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"]],"b":[["NCBITaxon%3A1871044","Clavibacter sp."]]},{"id":"NCBITaxon:1871616","l":"Dietzia sp.","na":2,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"]],"b":[["NCBITaxon%3A1871616","Dietzia sp."]]},{"id":"NCBITaxon:1872086","l":"Ensifer sp.","na":2,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["NCBITaxon%3A1872086","Ensifer sp."]]},{"id":"NCBITaxon:1872654","l":"Aurantimonas sp.","na":1,"nb":2,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1872654","Aurantimonas sp."],["NCBITaxon%3A570951","Aurantimonas sp. YIM J01"]]},{"id":"NCBITaxon:1873466","l":"Modestobacter sp.","na":2,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["NCBITaxon%3A1873466","Modestobacter sp."]]},{"id":"NCBITaxon:1873897","l":"Cupriavidus sp.","na":2,"nb":1,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"],["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A1873897","Cupriavidus sp."]]},{"id":"NCBITaxon:187452","l":"Pediococcus claussenii","na":1,"nb":2,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["NCBITaxon%3A187452","Pediococcus claussenii"],["NCBITaxon%3A701521","Pediococcus claussenii ATCC BAA-344"]]},{"id":"NCBITaxon:1898027","l":"Ornithinibacillus sp.","na":2,"nb":1,"a":[["saline-water-body-envo-01001319.html","saline water body"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["NCBITaxon%3A1898027","Ornithinibacillus sp."]]},{"id":"NCBITaxon:189918","l":"Mycobacterium sp. KMS","na":2,"nb":1,"a":[["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"],["mountain-pass-envo-00000084.html","mountain pass"]],"b":[["NCBITaxon%3A189918","Mycobacterium sp. KMS"]]},{"id":"NCBITaxon:1904","l":"Streptomyces cyaneus","na":1,"nb":2,"a":[["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A146537","Streptomyces azureus"],["NCBITaxon%3A1904","Streptomyces cyaneus"]]},{"id":"NCBITaxon:1904441","l":"Paracoccaceae bacterium","na":1,"nb":2,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2301217","Marinibacterium anthonyi"],["NCBITaxon%3A1904441","Paracoccaceae bacterium"]]},{"id":"NCBITaxon:191535","l":"Flavobacterium sp. BH12.12","na":2,"nb":1,"a":[["marine-benthic-feature-envo-01000105.html","marine benthic feature"],["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A191535","Flavobacterium sp. BH12.12"]]},{"id":"NCBITaxon:192066","l":"Neisseria sp.","na":2,"nb":1,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"],["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A192066","Neisseria sp."]]},{"id":"NCBITaxon:1926495","l":"Paraburkholderia sp.","na":2,"nb":1,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"],["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A1926495","Paraburkholderia sp."]]},{"id":"NCBITaxon:1932","l":"Streptomyces tendae","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A1932","Streptomyces tendae"]]},{"id":"NCBITaxon:1935001","l":"Pseudomonas sp. JdFR-92","na":2,"nb":1,"a":[["hydrothermal-fluid-envo-01000134.html","hydrothermal fluid"],["basalt-envo-01000236.html","basalt"]],"b":[["NCBITaxon%3A1935001","Pseudomonas sp. JdFR-92"]]},{"id":"NCBITaxon:1937692","l":"Lacinutrix sp.","na":2,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A1937692","Lacinutrix sp."]]},{"id":"NCBITaxon:1938889","l":"Agreia sp. VKM Ac-1783","na":2,"nb":1,"a":[["plant-gall-po-0025626.html","plant gall"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["NCBITaxon%3A1938889","Agreia sp. VKM Ac-1783"]]},{"id":"NCBITaxon:194373","l":"uncultured Hyphomicrobium sp.","na":2,"nb":1,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"],["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["NCBITaxon%3A194373","uncultured Hyphomicrobium sp."]]},{"id":"NCBITaxon:195105","l":"Haematobacter massiliensis","na":2,"nb":1,"a":[["protist-associated-environment-habitatmech-gold-eee7408afd.html","protist-associated environment"],["simulated-communities-habitatmech-bacdive-5fa4710934.html","Simulated-communities"]],"b":[["NCBITaxon%3A195105","Haematobacter massiliensis"]]},{"id":"NCBITaxon:195522","l":"Thermococcus nautili","na":2,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["finger-bto-0004669.html","finger"]],"b":[["NCBITaxon%3A195522","Thermococcus nautili"]]},{"id":"NCBITaxon:1958950","l":"Pseudomonas floridensis","na":2,"nb":1,"a":[["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"]],"b":[["NCBITaxon%3A1958950","Pseudomonas floridensis"]]},{"id":"NCBITaxon:195907","l":"Gillisia limnaea","na":1,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A195907","Gillisia limnaea"],["NCBITaxon%3A865937","Gillisia limnaea DSM 15749"]]},{"id":"NCBITaxon:1962667","l":"Nannocystis sp.","na":2,"nb":1,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["wood-bto-0005516.html","wood"]],"b":[["NCBITaxon%3A1962667","Nannocystis sp."]]},{"id":"NCBITaxon:1965234","l":"Ureaplasma sp.","na":2,"nb":1,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A1965234","Ureaplasma sp."]]},{"id":"NCBITaxon:198437","l":"uncultured Gordonia sp.","na":2,"nb":1,"a":[["foam-habitatmech-bacdive-df2f59b773.html","Foam"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["NCBITaxon%3A198437","uncultured Gordonia sp."]]},{"id":"NCBITaxon:199591","l":"Brevibacterium luteolum","na":1,"nb":2,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["NCBITaxon%3A199591","Brevibacterium luteolum"],["NCBITaxon%3A1401069","Brevibacterium luteolum DNF00447"]]},{"id":"NCBITaxon:200125","l":"Nitrosomonas sp. Nm86","na":2,"nb":1,"a":[["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"],["cultivated-environment-envo-01000311.html","cultivated environment"]],"b":[["NCBITaxon%3A200125","Nitrosomonas sp. Nm86"]]},{"id":"NCBITaxon:200617","l":"Rhodopseudomonas julia","na":2,"nb":1,"a":[["marine-reef-envo-01000143.html","marine reef"],["marine-reef-biome-envo-01000029.html","marine reef biome"]],"b":[["NCBITaxon%3A200617","Rhodopseudomonas julia"]]},{"id":"NCBITaxon:2014887","l":"Herbaspirillum robiniae","na":2,"nb":1,"a":[["seedling-bto-0001228.html","seedling"],["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A2014887","Herbaspirillum robiniae"]]},{"id":"NCBITaxon:2024","l":"Thermoactinomyces intermedius","na":1,"nb":2,"a":[["air-conditioning-unit-envo-00002874.html","air conditioning unit"]],"b":[["NCBITaxon%3A46173","Nonomuraea fastidiosa"],["NCBITaxon%3A2024","Thermoactinomyces intermedius"]]},{"id":"NCBITaxon:2024826","l":"Blastopirellula sp.","na":2,"nb":1,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["NCBITaxon%3A2024826","Blastopirellula sp."]]},{"id":"NCBITaxon:2024855","l":"Rhodopirellula sp.","na":1,"nb":2,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A1263866","Rhodopirellula europaea"],["NCBITaxon%3A2024855","Rhodopirellula sp."]]},{"id":"NCBITaxon:203","l":"Campylobacter rectus","na":1,"nb":2,"a":[["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A203","Campylobacter rectus"],["NCBITaxon%3A553218","Campylobacter rectus RM3267"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus ATCC 27405","na":1,"nb":2,"a":[["blood-plasma-bto-0000131.html","blood plasma"]],"b":[["NCBITaxon%3A1515","Acetivibrio thermocellus"],["NCBITaxon%3A203119","Acetivibrio thermocellus ATCC 27405"]]},{"id":"NCBITaxon:203264","l":"Corynebacterium suicordis","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A203264","Corynebacterium suicordis"],["NCBITaxon%3A1121369","Corynebacterium suicordis DSM 45110"]]},{"id":"NCBITaxon:2036","l":"Curtobacterium citreum","na":1,"nb":2,"a":[["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["NCBITaxon%3A2036","Curtobacterium citreum"],["NCBITaxon%3A221278","Curtobacterium citreum pv. basellae"]]},{"id":"NCBITaxon:203907","l":"Candidatus Blochmanniella floridana","na":2,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"],["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A203907","Candidatus Blochmanniella floridana"]]},{"id":"NCBITaxon:2040280","l":"Marmoricola endophyticus","na":2,"nb":1,"a":[["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A2040280","Marmoricola endophyticus"]]},{"id":"NCBITaxon:2042057","l":"Pectobacterium polaris","na":2,"nb":1,"a":[["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["root-or-stem-rot-environment-habitatmech-bacdive-04ddbbeabe.html","root-or-stem rot environment"]],"b":[["NCBITaxon%3A2042057","Pectobacterium polaris"]]},{"id":"NCBITaxon:2044847","l":"Streptomyces roietensis","na":2,"nb":1,"a":[["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A2044847","Streptomyces roietensis"]]},{"id":"NCBITaxon:2045","l":"Pimelobacter simplex","na":2,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A2045","Pimelobacter simplex"]]},{"id":"NCBITaxon:204536","l":"Sulfurihydrogenibium azorense Az-Fu1","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A309806","Sulfurihydrogenibium azorense"],["NCBITaxon%3A204536","Sulfurihydrogenibium azorense Az-Fu1"]]},{"id":"NCBITaxon:204669","l":"Candidatus Koribacter versatilis Ellin345","na":2,"nb":1,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"],["pasture-envo-00000266.html","pasture"]],"b":[["NCBITaxon%3A204669","Candidatus Koribacter versatilis Ellin345"]]},{"id":"NCBITaxon:205844","l":"Novosphingobium pentaromativorans","na":1,"nb":2,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A205844","Novosphingobium pentaromativorans"],["NCBITaxon%3A1088721","Novosphingobium pentaromativorans US6-1"]]},{"id":"NCBITaxon:207559","l":"Oleidesulfovibrio alaskensis G20","na":1,"nb":2,"a":[["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A58180","Oleidesulfovibrio alaskensis"],["NCBITaxon%3A207559","Oleidesulfovibrio alaskensis G20"]]},{"id":"NCBITaxon:2081794","l":"Mannheimia sp.","na":2,"nb":1,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"]],"b":[["NCBITaxon%3A2081794","Mannheimia sp."]]},{"id":"NCBITaxon:208304","l":"Thermoanaerobacterium bryantii","na":2,"nb":1,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["NCBITaxon%3A208304","Thermoanaerobacterium bryantii"]]},{"id":"NCBITaxon:211460","l":"Afipia massiliensis","na":1,"nb":2,"a":[["drinking-water-envo-00003064.html","drinking water"]],"b":[["NCBITaxon%3A211460","Afipia massiliensis"],["NCBITaxon%3A1211024","Afipia massiliensis 34633"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A70863","Shewanella oneidensis"],["NCBITaxon%3A211586","Shewanella oneidensis MR-1"]]},{"id":"NCBITaxon:211669","l":"Psychromonas hadalis","na":1,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A211669","Psychromonas hadalis"],["NCBITaxon%3A1278302","Psychromonas hadalis ATCC BAA-638"]]},{"id":"NCBITaxon:212050","l":"Fervidobacterium sp. YNP","na":2,"nb":1,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A212050","Fervidobacterium sp. YNP"]]},{"id":"NCBITaxon:212218","l":"uncultured Neochlamydia sp.","na":2,"nb":1,"a":[["endosymbiont-habitatmech-bacdive-7d840c7ddc.html","Endosymbiont"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A212218","uncultured Neochlamydia sp."]]},{"id":"NCBITaxon:213071","l":"Nocardioides sp. SP12","na":2,"nb":1,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A213071","Nocardioides sp. SP12"]]},{"id":"NCBITaxon:213224","l":"Geothermobacter ehrlichii","na":2,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A213224","Geothermobacter ehrlichii"]]},{"id":"NCBITaxon:214092","l":"Yersinia pestis CO92","na":2,"nb":1,"a":[["alimentary-canal-bto-0000058.html","alimentary canal"],["blood-plasma-bto-0000131.html","blood plasma"]],"b":[["NCBITaxon%3A214092","Yersinia pestis CO92"]]},{"id":"NCBITaxon:214473","l":"Staphylococcus nepalensis","na":1,"nb":2,"a":[["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["NCBITaxon%3A214473","Staphylococcus nepalensis"],["NCBITaxon%3A1288","Staphylococcus xylosus"]]},{"id":"NCBITaxon:2148","l":"Acholeplasma laidlawii","na":1,"nb":2,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A2148","Acholeplasma laidlawii"],["NCBITaxon%3A441768","Acholeplasma laidlawii PG-8A"]]},{"id":"NCBITaxon:216591","l":"Burkholderia cenocepacia J2315","na":1,"nb":2,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A95486","Burkholderia cenocepacia"],["NCBITaxon%3A216591","Burkholderia cenocepacia J2315"]]},{"id":"NCBITaxon:216773","l":"Corethron hystrix","na":2,"nb":1,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"],["saline-water-envo-00002010.html","saline water"]],"b":[["NCBITaxon%3A216773","Corethron hystrix"]]},{"id":"NCBITaxon:216937","l":"Spiroplasma floricola","na":1,"nb":2,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["NCBITaxon%3A216937","Spiroplasma floricola"],["NCBITaxon%3A1336749","Spiroplasma floricola 23-6"]]},{"id":"NCBITaxon:217","l":"Helicobacter mustelae","na":1,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A217","Helicobacter mustelae"],["NCBITaxon%3A679897","Helicobacter mustelae 12198"]]},{"id":"NCBITaxon:217068","l":"Ancylobacter tetraedralis","na":1,"nb":2,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A217069","Ancylobacter amanitiformis"],["NCBITaxon%3A217068","Ancylobacter tetraedralis"]]},{"id":"NCBITaxon:217204","l":"Achromobacter insolitus","na":1,"nb":2,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"]],"b":[["NCBITaxon%3A32002","Achromobacter denitrificans"],["NCBITaxon%3A217204","Achromobacter insolitus"]]},{"id":"NCBITaxon:218208","l":"Desulfatibacillum aliphaticivorans","na":1,"nb":2,"a":[["watercourse-envo-00000029.html","watercourse"]],"b":[["NCBITaxon%3A218208","Desulfatibacillum aliphaticivorans"],["NCBITaxon%3A1121392","Desulfatibacillum aliphaticivorans DSM 15576"]]},{"id":"NCBITaxon:2182385","l":"Brachybacterium endophyticum","na":2,"nb":1,"a":[["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A2182385","Brachybacterium endophyticum"]]},{"id":"NCBITaxon:2183913","l":"Halanaerobium sp. MA284_MarDTE_T2","na":2,"nb":1,"a":[["ocean-trench-envo-00000275.html","ocean trench"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A2183913","Halanaerobium sp. MA284_MarDTE_T2"]]},{"id":"NCBITaxon:2183914","l":"Halanaerobium sp. ST460_2HS_T2","na":2,"nb":1,"a":[["ocean-trench-envo-00000275.html","ocean trench"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A2183914","Halanaerobium sp. ST460_2HS_T2"]]},{"id":"NCBITaxon:2183985","l":"Halomonas sp. A11-A","na":2,"nb":1,"a":[["ocean-trench-envo-00000275.html","ocean trench"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A2183985","Halomonas sp. A11-A"]]},{"id":"NCBITaxon:2203","l":"Methanospirillum hungatei","na":1,"nb":2,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"]],"b":[["NCBITaxon%3A2203","Methanospirillum hungatei"],["NCBITaxon%3A323259","Methanospirillum hungatei JF-1"]]},{"id":"NCBITaxon:2223","l":"Methanothrix soehngenii","na":1,"nb":2,"a":[["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["NCBITaxon%3A2223","Methanothrix soehngenii"],["NCBITaxon%3A990316","Methanothrix soehngenii GP6"]]},{"id":"NCBITaxon:224438","l":"Marichromatium indicum","na":2,"nb":1,"a":[["small-river-biome-envo-00000890.html","small river biome"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["NCBITaxon%3A224438","Marichromatium indicum"]]},{"id":"NCBITaxon:225324","l":"Enhydrobacter aerosaccus","na":1,"nb":2,"a":[["nectar-bto-0000537.html","nectar"]],"b":[["NCBITaxon%3A225324","Enhydrobacter aerosaccus"],["NCBITaxon%3A553217","Enhydrobacter aerosaccus SK60"]]},{"id":"NCBITaxon:225345","l":"Clostridium chromiireducens","na":2,"nb":1,"a":[["marsh-envo-00000035.html","marsh"],["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A225345","Clostridium chromiireducens"]]},{"id":"NCBITaxon:225849","l":"Shewanella piezotolerans WP3","na":1,"nb":2,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["NCBITaxon%3A404011","Shewanella piezotolerans"],["NCBITaxon%3A225849","Shewanella piezotolerans WP3"]]},{"id":"NCBITaxon:225937","l":"Marinobacter adhaerens HP15","na":1,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["NCBITaxon%3A1033846","Marinobacter adhaerens"],["NCBITaxon%3A225937","Marinobacter adhaerens HP15"]]},{"id":"NCBITaxon:226185","l":"Enterococcus faecalis V583","na":1,"nb":2,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A226185","Enterococcus faecalis V583"]]},{"id":"NCBITaxon:226186","l":"Bacteroides thetaiotaomicron VPI-5482","na":1,"nb":2,"a":[["gut-epithelium-bto-0000956.html","gut epithelium"]],"b":[["NCBITaxon%3A818","Bacteroides thetaiotaomicron"],["NCBITaxon%3A226186","Bacteroides thetaiotaomicron VPI-5482"]]},{"id":"NCBITaxon:226504","l":"Algoriphagus mannitolivorans","na":1,"nb":2,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A226504","Algoriphagus mannitolivorans"],["NCBITaxon%3A1120965","Algoriphagus mannitolivorans DSM 15301"]]},{"id":"NCBITaxon:226505","l":"Algoriphagus halophilus","na":2,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"],["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["NCBITaxon%3A226505","Algoriphagus halophilus"]]},{"id":"NCBITaxon:226506","l":"Algoriphagus ornithinivorans","na":2,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"],["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["NCBITaxon%3A226506","Algoriphagus ornithinivorans"]]},{"id":"NCBITaxon:227882","l":"Streptomyces avermitilis MA-4680 = NBRC 14893","na":1,"nb":2,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A33903","Streptomyces avermitilis"],["NCBITaxon%3A227882","Streptomyces avermitilis MA-4680 = NBRC 14893"]]},{"id":"NCBITaxon:2292705","l":"Paenibacillus paeoniae","na":2,"nb":1,"a":[["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A2292705","Paenibacillus paeoniae"]]},{"id":"NCBITaxon:23","l":"Shewanella colwelliana","na":1,"nb":2,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A23","Shewanella colwelliana"],["NCBITaxon%3A1336240","Shewanella colwelliana ATCC 39565"]]},{"id":"NCBITaxon:231438","l":"Desulfoluna butyratoxydans","na":1,"nb":2,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A231438","Desulfoluna butyratoxydans"],["NCBITaxon%3A1121410","Desulfoluna butyratoxydans DSM 19427"]]},{"id":"NCBITaxon:231440","l":"Desulfopila aestuarii","na":1,"nb":2,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A231440","Desulfopila aestuarii"],["NCBITaxon%3A1121416","Desulfopila aestuarii DSM 18488"]]},{"id":"NCBITaxon:231447","l":"Desulfogranum japonicum","na":1,"nb":2,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A231447","Desulfogranum japonicum"],["NCBITaxon%3A1121403","Desulfogranum japonicum DSM 18378"]]},{"id":"NCBITaxon:233412","l":"[Haemophilus] ducreyi 35000HP","na":1,"nb":2,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A730","[Haemophilus] ducreyi"],["NCBITaxon%3A233412","[Haemophilus] ducreyi 35000HP"]]},{"id":"NCBITaxon:234831","l":"Pseudoalteromonas sp. SM9913","na":2,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A234831","Pseudoalteromonas sp. SM9913"]]},{"id":"NCBITaxon:235279","l":"Helicobacter hepaticus ATCC 51449","na":1,"nb":2,"a":[["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"]],"b":[["NCBITaxon%3A32025","Helicobacter hepaticus"],["NCBITaxon%3A235279","Helicobacter hepaticus ATCC 51449"]]},{"id":"NCBITaxon:2358","l":"Desulfomonile tiedjei","na":1,"nb":2,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A2358","Desulfomonile tiedjei"],["NCBITaxon%3A706587","Desulfomonile tiedjei DSM 6799"]]},{"id":"NCBITaxon:235909","l":"Geobacillus kaustophilus HTA426","na":1,"nb":2,"a":[["semen-bto-0001230.html","semen"]],"b":[["NCBITaxon%3A1462","Geobacillus kaustophilus"],["NCBITaxon%3A235909","Geobacillus kaustophilus HTA426"]]},{"id":"NCBITaxon:237497","l":"Clostridium sp. Kas107-2","na":2,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"]],"b":[["NCBITaxon%3A237497","Clostridium sp. Kas107-2"]]},{"id":"NCBITaxon:238013","l":"Loigolactobacillus rennini","na":1,"nb":2,"a":[["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["NCBITaxon%3A238013","Loigolactobacillus rennini"],["NCBITaxon%3A1423796","Loigolactobacillus rennini DSM 20253"]]},{"id":"NCBITaxon:238209","l":"Desulfotomaculum sp. MPNeg1","na":2,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"]],"b":[["NCBITaxon%3A238209","Desulfotomaculum sp. MPNeg1"]]},{"id":"NCBITaxon:238540","l":"Algoriphagus antarcticus","na":2,"nb":1,"a":[["hill-envo-00000083.html","hill"],["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A238540","Algoriphagus antarcticus"]]},{"id":"NCBITaxon:240166","l":"Desulfurobacterium pacificum","na":1,"nb":2,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["NCBITaxon%3A240166","Desulfurobacterium pacificum"],["NCBITaxon%3A1121473","Desulfurobacterium pacificum DSM 15522"]]},{"id":"NCBITaxon:240167","l":"Thermovibrio guaymasensis","na":2,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"],["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A240167","Thermovibrio guaymasensis"]]},{"id":"NCBITaxon:240427","l":"Secundilactobacillus paracollinoides","na":1,"nb":2,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["NCBITaxon%3A240427","Secundilactobacillus paracollinoides"],["NCBITaxon%3A1423785","Secundilactobacillus paracollinoides DSM 15502 = JCM 11969"]]},{"id":"NCBITaxon:241368","l":"Desulfovibrio ferrophilus","na":2,"nb":1,"a":[["small-river-biome-envo-00000890.html","small river biome"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["NCBITaxon%3A241368","Desulfovibrio ferrophilus"]]},{"id":"NCBITaxon:242606","l":"Luteibacter rhizovicinus","na":1,"nb":2,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A242606","Luteibacter rhizovicinus"],["NCBITaxon%3A1440763","Luteibacter rhizovicinus DSM 16549"]]},{"id":"NCBITaxon:243160","l":"Burkholderia mallei ATCC 23344","na":1,"nb":2,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A13373","Burkholderia mallei"],["NCBITaxon%3A243160","Burkholderia mallei ATCC 23344"]]},{"id":"NCBITaxon:243273","l":"Mycoplasmoides genitalium G37","na":1,"nb":2,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["NCBITaxon%3A2097","Mycoplasmoides genitalium"],["NCBITaxon%3A243273","Mycoplasmoides genitalium G37"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima MSB8","na":1,"nb":2,"a":[["feather-bto-0000447.html","feather"]],"b":[["NCBITaxon%3A2336","Thermotoga maritima"],["NCBITaxon%3A243274","Thermotoga maritima MSB8"]]},{"id":"NCBITaxon:243275","l":"Treponema denticola ATCC 35405","na":1,"nb":2,"a":[["dental-plaque-bto-0000338.html","dental plaque"]],"b":[["NCBITaxon%3A158","Treponema denticola"],["NCBITaxon%3A243275","Treponema denticola ATCC 35405"]]},{"id":"NCBITaxon:243690","l":"Methylobacterium goesingense","na":1,"nb":2,"a":[["endosphere-habitatmech-bacdive-3e4680f074.html","Endosphere"]],"b":[["NCBITaxon%3A243690","Methylobacterium goesingense"],["NCBITaxon%3A409","Methylobacterium sp."]]},{"id":"NCBITaxon:244563","l":"Bradyrhizobium sp. HWK12","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A244563","Bradyrhizobium sp. HWK12"]]},{"id":"NCBITaxon:245","l":"Flavobacterium aquatile","na":1,"nb":2,"a":[["water-body-envo-00000063.html","water body"]],"b":[["NCBITaxon%3A245","Flavobacterium aquatile"],["NCBITaxon%3A1453498","Flavobacterium aquatile LMG 4008 = ATCC 11947"]]},{"id":"NCBITaxon:246200","l":"Ruegeria pomeroyi DSS-3","na":1,"nb":2,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["NCBITaxon%3A89184","Ruegeria pomeroyi"],["NCBITaxon%3A246200","Ruegeria pomeroyi DSS-3"]]},{"id":"NCBITaxon:252231","l":"Nocardioides aestuarii","na":1,"nb":2,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1323750","Lacimonas salitolerans"],["NCBITaxon%3A252231","Nocardioides aestuarii"]]},{"id":"NCBITaxon:253239","l":"Ethanoligenens harbinense","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A253239","Ethanoligenens harbinense"],["NCBITaxon%3A663278","Ethanoligenens harbinense YUAN-3"]]},{"id":"NCBITaxon:253839","l":"Streptomyces sp. C","na":2,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A253839","Streptomyces sp. C"]]},{"id":"NCBITaxon:254410","l":"Alteribacter aurantiacus","na":1,"nb":2,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A254410","Alteribacter aurantiacus"],["NCBITaxon%3A1121086","Alteribacter aurantiacus DSM 18675"]]},{"id":"NCBITaxon:255045","l":"Bradyrhizobium canariense","na":1,"nb":2,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A255045","Bradyrhizobium canariense"],["NCBITaxon%3A305580","Bradyrhizobium canariense bv. genistearum"]]},{"id":"NCBITaxon:255205","l":"Pseudoclavibacter helvolus","na":1,"nb":2,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["NCBITaxon%3A255205","Pseudoclavibacter helvolus"],["NCBITaxon%3A1673741","Thalassotalea marina"]]},{"id":"NCBITaxon:256466","l":"Pseudomonas japonica","na":1,"nb":2,"a":[["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["NCBITaxon%3A256466","Pseudomonas japonica"],["NCBITaxon%3A1215104","Pseudomonas japonica NBRC 103040 = DSM 22348"]]},{"id":"NCBITaxon:257277","l":"Nocardia aobensis","na":1,"nb":2,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A257277","Nocardia aobensis"],["NCBITaxon%3A1206720","Nocardia aobensis NBRC 100429"]]},{"id":"NCBITaxon:257314","l":"Lactobacillus johnsonii NCC 533","na":2,"nb":1,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"],["urban-biome-envo-01000249.html","urban biome"]],"b":[["NCBITaxon%3A257314","Lactobacillus johnsonii NCC 533"]]},{"id":"NCBITaxon:257363","l":"Rickettsia typhi str. Wilmington","na":1,"nb":2,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A785","Rickettsia typhi"],["NCBITaxon%3A257363","Rickettsia typhi str. Wilmington"]]},{"id":"NCBITaxon:259390","l":"Nocardia takedensis","na":1,"nb":2,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A259390","Nocardia takedensis"],["NCBITaxon%3A1206735","Nocardia takedensis NBRC 100417"]]},{"id":"NCBITaxon:259536","l":"Psychrobacter arcticus 273-4","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A334543","Psychrobacter arcticus"],["NCBITaxon%3A259536","Psychrobacter arcticus 273-4"]]},{"id":"NCBITaxon:259564","l":"Methanococcoides burtonii DSM 6242","na":1,"nb":2,"a":[["hypolimnion-envo-00002130.html","hypolimnion"]],"b":[["NCBITaxon%3A29291","Methanococcoides burtonii"],["NCBITaxon%3A259564","Methanococcoides burtonii DSM 6242"]]},{"id":"NCBITaxon:260552","l":"Microbulbifer agarilyticus","na":1,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A260552","Microbulbifer agarilyticus"],["NCBITaxon%3A1042377","Microbulbifer agarilyticus S89"]]},{"id":"NCBITaxon:261164","l":"Psychrobacter alimentarius","na":2,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A261164","Psychrobacter alimentarius"]]},{"id":"NCBITaxon:262076","l":"Marinobacter flavimaris","na":2,"nb":1,"a":[["small-river-biome-envo-00000890.html","small river biome"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["NCBITaxon%3A262076","Marinobacter flavimaris"]]},{"id":"NCBITaxon:262316","l":"Mycobacterium avium subsp. paratuberculosis K-10","na":2,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A262316","Mycobacterium avium subsp. paratuberculosis K-10"]]},{"id":"NCBITaxon:262543","l":"Exiguobacterium artemiae 255-15","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A340145","Exiguobacterium artemiae"],["NCBITaxon%3A262543","Exiguobacterium artemiae 255-15"]]},{"id":"NCBITaxon:263358","l":"Micromonospora maris AB-18-032","na":1,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A1003110","Micromonospora maris"],["NCBITaxon%3A263358","Micromonospora maris AB-18-032"]]},{"id":"NCBITaxon:264023","l":"Mariniflexile fucanivorans","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A264023","Mariniflexile fucanivorans"],["NCBITaxon%3A1122193","Mariniflexile fucanivorans DSM 18792"]]},{"id":"NCBITaxon:265948","l":"Anoxybacteroides tepidamans","na":1,"nb":2,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A1382358","Anoxybacillus tepidamans PS2"],["NCBITaxon%3A265948","Anoxybacteroides tepidamans"]]},{"id":"NCBITaxon:266117","l":"Rubrobacter xylanophilus DSM 9941","na":1,"nb":2,"a":[["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["NCBITaxon%3A49319","Rubrobacter xylanophilus"],["NCBITaxon%3A266117","Rubrobacter xylanophilus DSM 9941"]]},{"id":"NCBITaxon:266123","l":"Castellaniella caeni","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A266123","Castellaniella caeni"],["NCBITaxon%3A1349760","Castellaniella caeni NBRC 101664"]]},{"id":"NCBITaxon:266264","l":"Cupriavidus metallidurans CH34","na":1,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["NCBITaxon%3A119219","Cupriavidus metallidurans"],["NCBITaxon%3A266264","Cupriavidus metallidurans CH34"]]},{"id":"NCBITaxon:2663692","l":"bacterium JGI MDM2 M14Mat9-1-D14","na":2,"nb":1,"a":[["inlet-envo-00000475.html","inlet"],["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A2663692","bacterium JGI MDM2 M14Mat9-1-D14"]]},{"id":"NCBITaxon:266779","l":"Chelativorans sp. BNC1","na":1,"nb":2,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A449973","Chelativorans multitrophicus"],["NCBITaxon%3A266779","Chelativorans sp. BNC1"]]},{"id":"NCBITaxon:266809","l":"Thalassobacter stenotrophicus","na":1,"nb":2,"a":[["cyst-bto-0000320.html","cyst"]],"b":[["NCBITaxon%3A266809","Thalassobacter stenotrophicus"],["NCBITaxon%3A1123361","Thalassobacter stenotrophicus DSM 16310"]]},{"id":"NCBITaxon:267374","l":"Marinobacterium halophilum","na":1,"nb":2,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A267374","Marinobacterium halophilum"],["NCBITaxon%3A1122199","Marinobacterium halophilum DSM 17586"]]},{"id":"NCBITaxon:267375","l":"Pseudoalteromonas marina","na":1,"nb":2,"a":[["bay-envo-00000032.html","bay"]],"b":[["NCBITaxon%3A267375","Pseudoalteromonas marina"],["NCBITaxon%3A1117316","Pseudoalteromonas marina DSM 17587"]]},{"id":"NCBITaxon:267747","l":"Cutibacterium acnes KPA171202","na":1,"nb":2,"a":[["sebaceous-gland-bto-0001980.html","sebaceous gland"]],"b":[["NCBITaxon%3A1747","Cutibacterium acnes"],["NCBITaxon%3A267747","Cutibacterium acnes KPA171202"]]},{"id":"NCBITaxon:268735","l":"Halonotius pteroides","na":1,"nb":2,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["NCBITaxon%3A268735","Halonotius pteroides"],["NCBITaxon%3A1333847","Halonotius pteroides DSM 18729"]]},{"id":"NCBITaxon:269666","l":"Streptococcus marimammalium","na":1,"nb":2,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"]],"b":[["NCBITaxon%3A269666","Streptococcus marimammalium"],["NCBITaxon%3A1123306","Streptococcus marimammalium DSM 18627"]]},{"id":"NCBITaxon:269796","l":"Rhodospirillum rubrum ATCC 11170","na":1,"nb":2,"a":[["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A1085","Rhodospirillum rubrum"],["NCBITaxon%3A269796","Rhodospirillum rubrum ATCC 11170"]]},{"id":"NCBITaxon:269800","l":"Thermobifida fusca YX","na":2,"nb":1,"a":[["compost-envo-00002170.html","compost"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A269800","Thermobifida fusca YX"]]},{"id":"NCBITaxon:270371","l":"Ralstonia sp. SJ98","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A270371","Ralstonia sp. SJ98"]]},{"id":"NCBITaxon:271160","l":"Nicoletella semolina","na":2,"nb":1,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"]],"b":[["NCBITaxon%3A271160","Nicoletella semolina"]]},{"id":"NCBITaxon:2716812","l":"Candidatus Protofrankia datiscae","na":2,"nb":1,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A2716812","Candidatus Protofrankia datiscae"]]},{"id":"NCBITaxon:272563","l":"Clostridioides difficile 630","na":1,"nb":2,"a":[["central-nervous-system-bto-0000227.html","central nervous system"]],"b":[["NCBITaxon%3A1496","Clostridioides difficile"],["NCBITaxon%3A272563","Clostridioides difficile 630"]]},{"id":"NCBITaxon:272627","l":"Paramagnetospirillum magnetotacticum MS-1","na":1,"nb":2,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A188","Paramagnetospirillum magnetotacticum"],["NCBITaxon%3A272627","Paramagnetospirillum magnetotacticum MS-1"]]},{"id":"NCBITaxon:272630","l":"Methylorubrum extorquens AM1","na":1,"nb":2,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A408","Methylorubrum extorquens"],["NCBITaxon%3A272630","Methylorubrum extorquens AM1"]]},{"id":"NCBITaxon:272631","l":"Mycobacterium leprae TN","na":2,"nb":1,"a":[["peripheral-blood-mononuclear-cell-bto-0001025.html","peripheral blood mononuclear cell"],["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["NCBITaxon%3A272631","Mycobacterium leprae TN"]]},{"id":"NCBITaxon:272831","l":"Neisseria meningitidis FAM18","na":1,"nb":2,"a":[["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["NCBITaxon%3A487","Neisseria meningitidis"],["NCBITaxon%3A272831","Neisseria meningitidis FAM18"]]},{"id":"NCBITaxon:272918","l":"Nesterenkonia sandarakina","na":1,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A317018","Nesterenkonia jeotgali"],["NCBITaxon%3A272918","Nesterenkonia sandarakina"]]},{"id":"NCBITaxon:273057","l":"Saccharolobus solfataricus P2","na":1,"nb":2,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A2287","Saccharolobus solfataricus"],["NCBITaxon%3A273057","Saccharolobus solfataricus P2"]]},{"id":"NCBITaxon:273075","l":"Thermoplasma acidophilum DSM 1728","na":1,"nb":2,"a":[["blood-plasma-bto-0000131.html","blood plasma"]],"b":[["NCBITaxon%3A2303","Thermoplasma acidophilum"],["NCBITaxon%3A273075","Thermoplasma acidophilum DSM 1728"]]},{"id":"NCBITaxon:273384","l":"Brevibacterium aurantiacum","na":1,"nb":2,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["NCBITaxon%3A273384","Brevibacterium aurantiacum"],["NCBITaxon%3A1703","Brevibacterium linens"]]},{"id":"NCBITaxon:2741","l":"Peptococcus niger","na":2,"nb":1,"a":[["animal-litter-envo-00002191.html","animal litter"],["pig-manure-envo-00003860.html","pig manure"]],"b":[["NCBITaxon%3A2741","Peptococcus niger"]]},{"id":"NCBITaxon:278956","l":"Opitutaceae bacterium TAV1","na":2,"nb":1,"a":[["hindgut-bto-0000510.html","hindgut"],["wood-bto-0005516.html","wood"]],"b":[["NCBITaxon%3A278956","Opitutaceae bacterium TAV1"]]},{"id":"NCBITaxon:278957","l":"Geminisphaera colitermitum TAV2","na":1,"nb":2,"a":[["wood-envo-00002040.html","wood"]],"b":[["NCBITaxon%3A1148786","Geminisphaera colitermitum"],["NCBITaxon%3A278957","Geminisphaera colitermitum TAV2"]]},{"id":"NCBITaxon:278992","l":"Streptomyces ambofaciens ATCC 23877","na":1,"nb":2,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A1889","Streptomyces ambofaciens"],["NCBITaxon%3A278992","Streptomyces ambofaciens ATCC 23877"]]},{"id":"NCBITaxon:279238","l":"Novosphingobium aromaticivorans DSM 12444","na":1,"nb":2,"a":[["pond-water-envo-00002228.html","pond water"]],"b":[["NCBITaxon%3A48935","Novosphingobium aromaticivorans"],["NCBITaxon%3A279238","Novosphingobium aromaticivorans DSM 12444"]]},{"id":"NCBITaxon:279714","l":"Pseudogulbenkiania ferrooxidans 2002","na":2,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["pond-water-envo-00002228.html","pond water"]],"b":[["NCBITaxon%3A279714","Pseudogulbenkiania ferrooxidans 2002"]]},{"id":"NCBITaxon:280236","l":"Nocardiopsis gilva","na":1,"nb":2,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A280236","Nocardiopsis gilva"],["NCBITaxon%3A1235441","Nocardiopsis gilva YIM 90087"]]},{"id":"NCBITaxon:280239","l":"Nocardiopsis chromatogenes","na":1,"nb":2,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A280239","Nocardiopsis chromatogenes"],["NCBITaxon%3A1246475","Nocardiopsis chromatogenes YIM 90109"]]},{"id":"NCBITaxon:280240","l":"Nocardiopsis baichengensis","na":1,"nb":2,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A280240","Nocardiopsis baichengensis"],["NCBITaxon%3A1236902","Nocardiopsis baichengensis YIM 90130"]]},{"id":"NCBITaxon:28092","l":"Robbsia andropogonis","na":1,"nb":2,"a":[["water-body-envo-00000063.html","water body"]],"b":[["NCBITaxon%3A28092","Robbsia andropogonis"],["NCBITaxon%3A1423893","Robbsia andropogonis Ba3549"]]},{"id":"NCBITaxon:28094","l":"Trinickia caryophylli","na":1,"nb":2,"a":[["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A1632866","Alkalimarinus sediminis"],["NCBITaxon%3A28094","Trinickia caryophylli"]]},{"id":"NCBITaxon:281090","l":"Leifsonia xyli subsp. xyli str. CTCB07","na":2,"nb":1,"a":[["xylem-bto-0001468.html","xylem"],["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A281090","Leifsonia xyli subsp. xyli str. CTCB07"]]},{"id":"NCBITaxon:28113","l":"Prevotella heparinolytica","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A28113","Prevotella heparinolytica"],["NCBITaxon%3A888058","Prevotella heparinolytica ATCC 35895"]]},{"id":"NCBITaxon:281361","l":"Flavobacterium denitrificans","na":1,"nb":2,"a":[["pond-water-envo-00002228.html","pond water"]],"b":[["NCBITaxon%3A281361","Flavobacterium denitrificans"],["NCBITaxon%3A1121888","Flavobacterium denitrificans DSM 15936"]]},{"id":"NCBITaxon:28185","l":"Spirochaeta sp.","na":2,"nb":1,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"],["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A28185","Spirochaeta sp."]]},{"id":"NCBITaxon:28200","l":"Aliarcobacter skirrowii","na":1,"nb":2,"a":[["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A28200","Aliarcobacter skirrowii"],["NCBITaxon%3A1032239","Aliarcobacter skirrowii CCUG 10374"]]},{"id":"NCBITaxon:28258","l":"Cobetia marina","na":1,"nb":2,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A28258","Cobetia marina"],["NCBITaxon%3A204798","Saccharothrix xinjiangensis"]]},{"id":"NCBITaxon:282669","l":"Psychrobacter cibarius","na":2,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"],["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A282669","Psychrobacter cibarius"]]},{"id":"NCBITaxon:283165","l":"Bartonella quintana str. Toulouse","na":2,"nb":1,"a":[["endothelial-cell-bto-0001176.html","endothelial cell"],["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["NCBITaxon%3A283165","Bartonella quintana str. Toulouse"]]},{"id":"NCBITaxon:28442","l":"Haloarcula vallismortis","na":1,"nb":2,"a":[["pond-envo-00000033.html","pond"]],"b":[["NCBITaxon%3A28442","Haloarcula vallismortis"],["NCBITaxon%3A662477","Haloarcula vallismortis ATCC 29715"]]},{"id":"NCBITaxon:285091","l":"Alloalcanivorax dieselolei","na":1,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A285091","Alloalcanivorax dieselolei"],["NCBITaxon%3A930169","Alloalcanivorax dieselolei B5"]]},{"id":"NCBITaxon:285109","l":"Thioclava pacifica","na":1,"nb":2,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A285109","Thioclava pacifica"],["NCBITaxon%3A1353537","Thioclava pacifica DSM 10166"]]},{"id":"NCBITaxon:285258","l":"Tenacibaculum lutimaris","na":2,"nb":1,"a":[["beach-envo-00000091.html","beach"],["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["NCBITaxon%3A285258","Tenacibaculum lutimaris"]]},{"id":"NCBITaxon:285271","l":"uncultured Methylophaga sp.","na":2,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"],["oceanic-sea-surface-microlayer-biome-envo-01000034.html","oceanic sea surface microlayer biome"]],"b":[["NCBITaxon%3A285271","uncultured Methylophaga sp."]]},{"id":"NCBITaxon:285558","l":"Streptomyces carpaticus","na":2,"nb":1,"a":[["area-of-tundra-envo-00000112.html","area of tundra"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["NCBITaxon%3A285558","Streptomyces carpaticus"]]},{"id":"NCBITaxon:286804","l":"Segniliparus rugosus","na":1,"nb":2,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["NCBITaxon%3A286804","Segniliparus rugosus"],["NCBITaxon%3A679197","Segniliparus rugosus ATCC BAA-974"]]},{"id":"NCBITaxon:287844","l":"Lapidilactobacillus concavus","na":1,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A287844","Lapidilactobacillus concavus"],["NCBITaxon%3A1423735","Lapidilactobacillus concavus DSM 17758"]]},{"id":"NCBITaxon:288022","l":"Kordiimonas gwangyangensis","na":1,"nb":2,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A288022","Kordiimonas gwangyangensis"],["NCBITaxon%3A1122137","Kordiimonas gwangyangensis DSM 19435 = JCM 12864"]]},{"id":"NCBITaxon:28892","l":"Methanofollis liminatans DSM 4140","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A2201","Methanofollis liminatans"],["NCBITaxon%3A28892","Methanofollis liminatans DSM 4140"]]},{"id":"NCBITaxon:290053","l":"Bacteroides helcogenes","na":1,"nb":2,"a":[["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["NCBITaxon%3A290053","Bacteroides helcogenes"],["NCBITaxon%3A693979","Bacteroides helcogenes P 36-108"]]},{"id":"NCBITaxon:291615","l":"Thermoanaerobacter mathranii subsp. alimentarius","na":1,"nb":2,"a":[["food-spoiled-foodon-00003366.html","food (spoiled)"]],"b":[["NCBITaxon%3A291615","Thermoanaerobacter mathranii subsp. alimentarius"],["NCBITaxon%3A29350","Thermoanaerobacter thermocopriae"]]},{"id":"NCBITaxon:292415","l":"Thiobacillus denitrificans ATCC 25259","na":2,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A292415","Thiobacillus denitrificans ATCC 25259"]]},{"id":"NCBITaxon:292459","l":"Symbiobacterium thermophilum IAM 14863","na":1,"nb":2,"a":[["compost-envo-00002170.html","compost"]],"b":[["NCBITaxon%3A2734","Symbiobacterium thermophilum"],["NCBITaxon%3A292459","Symbiobacterium thermophilum IAM 14863"]]},{"id":"NCBITaxon:292587","l":"Synechococcus rubescens","na":1,"nb":2,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A292587","Synechococcus rubescens"],["NCBITaxon%3A169675","Synechococcus rubescens SAG 3.81"]]},{"id":"NCBITaxon:29303","l":"Streptantibioticus cattleyicolor","na":1,"nb":2,"a":[["clay-envo-00002982.html","clay"]],"b":[["NCBITaxon%3A29303","Streptantibioticus cattleyicolor"],["NCBITaxon%3A1003195","Streptantibioticus cattleyicolor NRRL 8057 = DSM 46488"]]},{"id":"NCBITaxon:293050","l":"Rhodococcoides kroppenstedtii","na":1,"nb":2,"a":[["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A293050","Rhodococcoides kroppenstedtii"],["NCBITaxon%3A1123056","Rhodococcoides kroppenstedtii DSM 44908"]]},{"id":"NCBITaxon:29317","l":"Actinomyces sp.","na":2,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"],["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"]],"b":[["NCBITaxon%3A29317","Actinomyces sp."]]},{"id":"NCBITaxon:29318","l":"Winkia neuii subsp. anitrata","na":1,"nb":2,"a":[["bone-element-uberon-0001474.html","bone element"]],"b":[["NCBITaxon%3A33007","Winkia neuii"],["NCBITaxon%3A29318","Winkia neuii subsp. anitrata"]]},{"id":"NCBITaxon:293256","l":"Alkalidesulfovibrio alkalitolerans","na":1,"nb":2,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A293256","Alkalidesulfovibrio alkalitolerans"],["NCBITaxon%3A1121439","Alkalidesulfovibrio alkalitolerans DSM 16529"]]},{"id":"NCBITaxon:293371","l":"Paucilactobacillus oligofermentans","na":1,"nb":2,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["NCBITaxon%3A293371","Paucilactobacillus oligofermentans"],["NCBITaxon%3A1423778","Paucilactobacillus oligofermentans DSM 15707 = LMG 22743"]]},{"id":"NCBITaxon:29378","l":"Staphylococcus arlettae","na":1,"nb":2,"a":[["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["NCBITaxon%3A29378","Staphylococcus arlettae"],["NCBITaxon%3A1212545","Staphylococcus arlettae CVD059"]]},{"id":"NCBITaxon:293826","l":"Alkaliphilus metalliredigens QYMF","na":2,"nb":1,"a":[["borax-leachate-envo-00002142.html","borax leachate"],["anaerobic-sediment-envo-00002045.html","anaerobic sediment"]],"b":[["NCBITaxon%3A293826","Alkaliphilus metalliredigens QYMF"]]},{"id":"NCBITaxon:293890","l":"Agromyces subbeticus","na":1,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A293890","Agromyces subbeticus"],["NCBITaxon%3A1120960","Agromyces subbeticus DSM 16689"]]},{"id":"NCBITaxon:29394","l":"Dolosigranulum pigrum","na":1,"nb":2,"a":[["bone-element-uberon-0001474.html","bone element"]],"b":[["NCBITaxon%3A29394","Dolosigranulum pigrum"],["NCBITaxon%3A883103","Dolosigranulum pigrum ATCC 51524"]]},{"id":"NCBITaxon:29447","l":"Xanthomonas albilineans","na":1,"nb":2,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["NCBITaxon%3A29447","Xanthomonas albilineans"],["NCBITaxon%3A380358","Xanthomonas albilineans GPE PC73"]]},{"id":"NCBITaxon:29557","l":"Mycoplasmopsis gallinarum","na":1,"nb":2,"a":[["medial-geniculate-nucleus-bto-0002670.html","medial geniculate nucleus"]],"b":[["NCBITaxon%3A29557","Mycoplasmopsis gallinarum"],["NCBITaxon%3A1122248","Mycoplasmopsis gallinarum DSM 19816"]]},{"id":"NCBITaxon:295596","l":"Hepatoplasma crinochetorum (SeqCode)","na":1,"nb":2,"a":[["hepatopancreas-bto-0000597.html","hepatopancreas"]],"b":[["NCBITaxon%3A295596","Hepatoplasma crinochetorum (SeqCode)"],["NCBITaxon%3A1427984","Candidatus Hepatoplasma crinochetorum Av"]]},{"id":"NCBITaxon:29561","l":"Mycoplasmopsis meleagridis","na":1,"nb":2,"a":[["medial-geniculate-nucleus-bto-0002670.html","medial geniculate nucleus"]],"b":[["NCBITaxon%3A29561","Mycoplasmopsis meleagridis"],["NCBITaxon%3A1264554","Mycoplasmopsis meleagridis ATCC 25294"]]},{"id":"NCBITaxon:29563","l":"Halanaerobium salsuginis","na":2,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A29563","Halanaerobium salsuginis"]]},{"id":"NCBITaxon:298265","l":"Comamonas sp. JS46","na":2,"nb":1,"a":[["stony-desert-envo-00000183.html","stony desert"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A298265","Comamonas sp. JS46"]]},{"id":"NCBITaxon:298386","l":"Photobacterium profundum SS9","na":2,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A298386","Photobacterium profundum SS9"]]},{"id":"NCBITaxon:298654","l":"Pseudofrankia inefficax","na":2,"nb":1,"a":[["bulk-soil-envo-00005802.html","bulk soil"],["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["NCBITaxon%3A298654","Pseudofrankia inefficax"]]},{"id":"NCBITaxon:299767","l":"Enterobacter ludwigii","na":1,"nb":2,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A299767","Enterobacter ludwigii"]]},{"id":"NCBITaxon:301301","l":"Roseburia hominis","na":1,"nb":2,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["NCBITaxon%3A301301","Roseburia hominis"],["NCBITaxon%3A585394","Roseburia hominis A2-183"]]},{"id":"NCBITaxon:301302","l":"Roseburia faecis","na":1,"nb":2,"a":[["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A301302","Roseburia faecis"],["NCBITaxon%3A451638","Roseburia faecis M72/1"]]},{"id":"NCBITaxon:303682","l":"Thauera sp. 28","na":1,"nb":2,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["NCBITaxon%3A1905334","Thauera sp."],["NCBITaxon%3A303682","Thauera sp. 28"]]},{"id":"NCBITaxon:305977","l":"Pusillimonas noertemannii","na":1,"nb":2,"a":[["simulated-communities-habitatmech-bacdive-5fa4710934.html","Simulated-communities"]],"b":[["NCBITaxon%3A305977","Pusillimonas noertemannii"],["NCBITaxon%3A1231391","Pusillimonas noertemannii BS8"]]},{"id":"NCBITaxon:306537","l":"Corynebacterium jeikeium K411","na":1,"nb":2,"a":[["bone-marrow-bto-0000141.html","bone marrow"]],"b":[["NCBITaxon%3A38289","Corynebacterium jeikeium"],["NCBITaxon%3A306537","Corynebacterium jeikeium K411"]]},{"id":"NCBITaxon:306540","l":"Halolactibacillus halophilus","na":2,"nb":1,"a":[["beach-envo-00000091.html","beach"],["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A306540","Halolactibacillus halophilus"]]},{"id":"NCBITaxon:306541","l":"Halolactibacillus miurensis","na":2,"nb":1,"a":[["beach-envo-00000091.html","beach"],["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A306541","Halolactibacillus miurensis"]]},{"id":"NCBITaxon:306543","l":"Paenibacillus harenae","na":1,"nb":2,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A306543","Paenibacillus harenae"],["NCBITaxon%3A1122920","Paenibacillus harenae DSM 16969"]]},{"id":"NCBITaxon:307119","l":"Micromonospora chaiyaphumensis","na":2,"nb":1,"a":[["area-of-tundra-envo-00000112.html","area of tundra"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["NCBITaxon%3A307119","Micromonospora chaiyaphumensis"]]},{"id":"NCBITaxon:307126","l":"Ligilactobacillus apodemi","na":1,"nb":2,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["NCBITaxon%3A307126","Ligilactobacillus apodemi"],["NCBITaxon%3A1423724","Ligilactobacillus apodemi DSM 16634 = JCM 16172"]]},{"id":"NCBITaxon:308354","l":"Staphylococcus simiae","na":1,"nb":2,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A308354","Staphylococcus simiae"],["NCBITaxon%3A911238","Staphylococcus simiae CCM 7213 = CCUG 51256"]]},{"id":"NCBITaxon:308994","l":"Dialister propionicifaciens","na":2,"nb":1,"a":[["pig-manure-envo-00003860.html","pig manure"],["harbour-envo-00000463.html","harbour"]],"b":[["NCBITaxon%3A308994","Dialister propionicifaciens"]]},{"id":"NCBITaxon:310783","l":"Deinococcus deserti","na":1,"nb":2,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A310783","Deinococcus deserti"],["NCBITaxon%3A546414","Deinococcus deserti VCD115"]]},{"id":"NCBITaxon:312286","l":"Trueperella bonasi","na":2,"nb":1,"a":[["water-body-envo-00000063.html","water body"],["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A312286","Trueperella bonasi"]]},{"id":"NCBITaxon:313007","l":"Ureibacillus suwonensis","na":1,"nb":2,"a":[["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A701041","Mycobacterium bouchedurhonense"],["NCBITaxon%3A313007","Ureibacillus suwonensis"]]},{"id":"NCBITaxon:313590","l":"Dokdonia sp. MED134","na":2,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A313590","Dokdonia sp. MED134"]]},{"id":"NCBITaxon:313598","l":"Polaribacter sp. MED152","na":2,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["NCBITaxon%3A313598","Polaribacter sp. MED152"]]},{"id":"NCBITaxon:314229","l":"Nitrospira marina","na":1,"nb":2,"a":[["inlet-envo-00000475.html","inlet"]],"b":[["NCBITaxon%3A314229","Nitrospira marina"],["NCBITaxon%3A35815","Nitrospira marina Nb-295"]]},{"id":"NCBITaxon:314237","l":"Paramesorhizobium leguminum","na":2,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"],["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A314237","Paramesorhizobium leguminum"]]},{"id":"NCBITaxon:314262","l":"Roseobacter sp. MED193","na":2,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["NCBITaxon%3A314262","Roseobacter sp. MED193"]]},{"id":"NCBITaxon:314271","l":"Maritimibacter alkaliphilus HTCC2654","na":1,"nb":2,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["NCBITaxon%3A404236","Maritimibacter alkaliphilus"],["NCBITaxon%3A314271","Maritimibacter alkaliphilus HTCC2654"]]},{"id":"NCBITaxon:314277","l":"Marinomonas sp. MED121","na":2,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A314277","Marinomonas sp. MED121"]]},{"id":"NCBITaxon:315277","l":"Chlamydia trachomatis A/HAR-13","na":1,"nb":2,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A813","Chlamydia trachomatis"],["NCBITaxon%3A315277","Chlamydia trachomatis A/HAR-13"]]},{"id":"NCBITaxon:316058","l":"Rhodopseudomonas palustris HaA2","na":2,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"],["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A316058","Rhodopseudomonas palustris HaA2"]]},{"id":"NCBITaxon:316067","l":"Geotalea daltonii FRC-32","na":1,"nb":2,"a":[["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A1203471","Geotalea daltonii"],["NCBITaxon%3A316067","Geotalea daltonii FRC-32"]]},{"id":"NCBITaxon:317010","l":"Enterococcus canintestini","na":1,"nb":2,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"]],"b":[["NCBITaxon%3A1448267","Corynebacterium nasicanis"],["NCBITaxon%3A317010","Enterococcus canintestini"]]},{"id":"NCBITaxon:317619","l":"Prochlorothrix hollandica PCC 9006 = CALU 1027","na":1,"nb":2,"a":[["fjord-envo-00000039.html","fjord"]],"b":[["NCBITaxon%3A1223","Prochlorothrix hollandica"],["NCBITaxon%3A317619","Prochlorothrix hollandica PCC 9006 = CALU 1027"]]},{"id":"NCBITaxon:318161","l":"Shewanella denitrificans OS217","na":1,"nb":2,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A192073","Shewanella denitrificans"],["NCBITaxon%3A318161","Shewanella denitrificans OS217"]]},{"id":"NCBITaxon:319225","l":"Pelodictyon luteolum DSM 273","na":1,"nb":2,"a":[["meromictic-lake-envo-00000199.html","meromictic lake"]],"b":[["NCBITaxon%3A1100","Pelodictyon luteolum"],["NCBITaxon%3A319225","Pelodictyon luteolum DSM 273"]]},{"id":"NCBITaxon:31963","l":"Clavibacter nebraskensis","na":1,"nb":2,"a":[["immunocompromised-habitatmech-bacdive-0d6b871731.html","Immunocompromised"]],"b":[["NCBITaxon%3A31963","Clavibacter nebraskensis"],["NCBITaxon%3A1097677","Clavibacter nebraskensis NCPPB 2581"]]},{"id":"NCBITaxon:320483","l":"Anaplasma marginale str. Florida","na":2,"nb":1,"a":[["erythrocyte-bto-0000424.html","erythrocyte"],["filament-bto-0000463.html","filament"]],"b":[["NCBITaxon%3A320483","Anaplasma marginale str. Florida"]]},{"id":"NCBITaxon:321967","l":"Lacticaseibacillus paracasei ATCC 334","na":1,"nb":2,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["NCBITaxon%3A1597","Lacticaseibacillus paracasei"],["NCBITaxon%3A321967","Lacticaseibacillus paracasei ATCC 334"]]},{"id":"NCBITaxon:322009","l":"Sinomonas cyclohexanicum","na":2,"nb":1,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["research-facility-envo-00000469.html","research facility"]],"b":[["NCBITaxon%3A322009","Sinomonas cyclohexanicum"]]},{"id":"NCBITaxon:322095","l":"Porphyromonas somerae","na":1,"nb":2,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A322095","Porphyromonas somerae"],["NCBITaxon%3A1122975","Porphyromonas somerae DSM 23386"]]},{"id":"NCBITaxon:323098","l":"Nitrobacter winogradskyi Nb-255","na":1,"nb":2,"a":[["stromatolite-mat-envo-00002157.html","stromatolite mat"]],"b":[["NCBITaxon%3A913","Nitrobacter winogradskyi"],["NCBITaxon%3A323098","Nitrobacter winogradskyi Nb-255"]]},{"id":"NCBITaxon:323259","l":"Methanospirillum hungatei JF-1","na":1,"nb":2,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A2203","Methanospirillum hungatei"],["NCBITaxon%3A323259","Methanospirillum hungatei JF-1"]]},{"id":"NCBITaxon:323850","l":"Shewanella loihica PV-4","na":1,"nb":2,"a":[["rift-valley-envo-00000302.html","rift valley"]],"b":[["NCBITaxon%3A359303","Shewanella loihica"],["NCBITaxon%3A323850","Shewanella loihica PV-4"]]},{"id":"NCBITaxon:324602","l":"Chloroflexus aurantiacus J-10-fl","na":1,"nb":2,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A1108","Chloroflexus aurantiacus"],["NCBITaxon%3A324602","Chloroflexus aurantiacus J-10-fl"]]},{"id":"NCBITaxon:324925","l":"Pelodictyon phaeoclathratiforme BU-1","na":1,"nb":2,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A34090","Pelodictyon phaeoclathratiforme"],["NCBITaxon%3A324925","Pelodictyon phaeoclathratiforme BU-1"]]},{"id":"NCBITaxon:326320","l":"Dokdonia donghaensis","na":1,"nb":2,"a":[["sandstone-envo-00002055.html","sandstone"]],"b":[["NCBITaxon%3A326320","Dokdonia donghaensis"],["NCBITaxon%3A1300343","Dokdonia donghaensis DSW-1"]]},{"id":"NCBITaxon:326423","l":"Bacillus velezensis FZB42","na":1,"nb":2,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["NCBITaxon%3A492670","Bacillus velezensis"],["NCBITaxon%3A326423","Bacillus velezensis FZB42"]]},{"id":"NCBITaxon:326424","l":"Frankia alni ACN14a","na":1,"nb":2,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["NCBITaxon%3A1859","Frankia alni"],["NCBITaxon%3A326424","Frankia alni ACN14a"]]},{"id":"NCBITaxon:33035","l":"Blautia producta","na":1,"nb":2,"a":[["juvenile-bto-0002168.html","juvenile"]],"b":[["NCBITaxon%3A33035","Blautia producta"],["NCBITaxon%3A1121114","Blautia producta ATCC 27340 = DSM 2950"]]},{"id":"NCBITaxon:33050","l":"Sphingopyxis macrogoltabida","na":1,"nb":2,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A33050","Sphingopyxis macrogoltabida"],["NCBITaxon%3A1219047","Sphingopyxis macrogoltabida NBRC 15033"]]},{"id":"NCBITaxon:330922","l":"Psychrobacter cryohalolentis","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A330922","Psychrobacter cryohalolentis"],["NCBITaxon%3A335284","Psychrobacter cryohalolentis K5"]]},{"id":"NCBITaxon:331272","l":"Burkholderia cenocepacia HI2424","na":2,"nb":1,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A331272","Burkholderia cenocepacia HI2424"]]},{"id":"NCBITaxon:332163","l":"Candidatus Solibacter usitatus","na":1,"nb":2,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A332163","Candidatus Solibacter usitatus"],["NCBITaxon%3A234267","Candidatus Solibacter usitatus Ellin6076"]]},{"id":"NCBITaxon:332168","l":"Halococcus hamelinensis","na":1,"nb":2,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A332168","Halococcus hamelinensis"],["NCBITaxon%3A1132509","Halococcus hamelinensis 100A6"]]},{"id":"NCBITaxon:332175","l":"Desulfosalsimonas propionicica","na":2,"nb":1,"a":[["inlet-envo-00000475.html","inlet"],["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A332175","Desulfosalsimonas propionicica"]]},{"id":"NCBITaxon:333725","l":"Streptomyces kaempferi","na":1,"nb":2,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A333725","Streptomyces kaempferi"],["NCBITaxon%3A156453","Streptomyces yunnanensis"]]},{"id":"NCBITaxon:334543","l":"Psychrobacter arcticus","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A334543","Psychrobacter arcticus"],["NCBITaxon%3A259536","Psychrobacter arcticus 273-4"]]},{"id":"NCBITaxon:335284","l":"Psychrobacter cryohalolentis K5","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A330922","Psychrobacter cryohalolentis"],["NCBITaxon%3A335284","Psychrobacter cryohalolentis K5"]]},{"id":"NCBITaxon:336203","l":"Sphingobium fuliginis","na":1,"nb":2,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["NCBITaxon%3A336203","Sphingobium fuliginis"],["NCBITaxon%3A1208342","Sphingobium fuliginis ATCC 27551"]]},{"id":"NCBITaxon:33881","l":"Curtobacterium luteum","na":1,"nb":2,"a":[["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["NCBITaxon%3A33881","Curtobacterium luteum"],["NCBITaxon%3A465820","Curtobacterium oceanosedimentum"]]},{"id":"NCBITaxon:338966","l":"Pelobacter propionicus DSM 2379","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A29543","Pelobacter propionicus"],["NCBITaxon%3A338966","Pelobacter propionicus DSM 2379"]]},{"id":"NCBITaxon:33935","l":"Lysinibacillus macroides","na":2,"nb":1,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A33935","Lysinibacillus macroides"]]},{"id":"NCBITaxon:33952","l":"Acetobacterium woodii","na":1,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A33952","Acetobacterium woodii"],["NCBITaxon%3A931626","Acetobacterium woodii DSM 1030"]]},{"id":"NCBITaxon:339861","l":"Clostridium aciditolerans","na":1,"nb":2,"a":[["marsh-envo-00000035.html","marsh"]],"b":[["NCBITaxon%3A339861","Clostridium aciditolerans"],["NCBITaxon%3A1506","Clostridium sp."]]},{"id":"NCBITaxon:340100","l":"Bordetella petrii DSM 12804","na":1,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["NCBITaxon%3A94624","Bordetella petrii"],["NCBITaxon%3A340100","Bordetella petrii DSM 12804"]]},{"id":"NCBITaxon:340146","l":"Exiguobacterium mexicanum","na":1,"nb":2,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A340146","Exiguobacterium mexicanum"],["NCBITaxon%3A68258","Streptomyces pulveraceus"]]},{"id":"NCBITaxon:340186","l":"Escherichia coli E110019","na":2,"nb":1,"a":[["hep-2-cell-bto-0000976.html","HEp-2 cell"],["intestinal-epithelium-bto-0000781.html","intestinal epithelium"]],"b":[["NCBITaxon%3A340186","Escherichia coli E110019"]]},{"id":"NCBITaxon:340197","l":"Escherichia coli F11","na":2,"nb":1,"a":[["diaphragm-bto-0000341.html","diaphragm"],["kidney-bto-0000671.html","kidney"]],"b":[["NCBITaxon%3A340197","Escherichia coli F11"]]},{"id":"NCBITaxon:342110","l":"Ralstonia solanacearum UW551","na":2,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A342110","Ralstonia solanacearum UW551"]]},{"id":"NCBITaxon:344998","l":"Hymenobacter psychrotolerans","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A344998","Hymenobacter psychrotolerans"],["NCBITaxon%3A1121959","Hymenobacter psychrotolerans DSM 18569"]]},{"id":"NCBITaxon:345219","l":"Heyndrickxia coagulans 36D1","na":1,"nb":2,"a":[["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["NCBITaxon%3A1398","Heyndrickxia coagulans"],["NCBITaxon%3A345219","Heyndrickxia coagulans 36D1"]]},{"id":"NCBITaxon:345341","l":"Kutzneria sp. 744","na":2,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"],["clay-envo-00002982.html","clay"]],"b":[["NCBITaxon%3A345341","Kutzneria sp. 744"]]},{"id":"NCBITaxon:349106","l":"Psychrobacter sp. PRwf-1","na":2,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A349106","Psychrobacter sp. PRwf-1"]]},{"id":"NCBITaxon:349124","l":"Halorhodospira halophila SL1","na":1,"nb":2,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A1053","Halorhodospira halophila"],["NCBITaxon%3A349124","Halorhodospira halophila SL1"]]},{"id":"NCBITaxon:349163","l":"Acidiphilium cryptum JF-5","na":2,"nb":1,"a":[["acid-mine-drainage-envo-00001997.html","acid mine drainage"],["coal-mine-lake-sediment-envo-00002147.html","coal mine lake sediment"]],"b":[["NCBITaxon%3A349163","Acidiphilium cryptum JF-5"]]},{"id":"NCBITaxon:349521","l":"Hahella chejuensis KCTC 2396","na":1,"nb":2,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["NCBITaxon%3A158327","Hahella chejuensis"],["NCBITaxon%3A349521","Hahella chejuensis KCTC 2396"]]},{"id":"NCBITaxon:349741","l":"Akkermansia muciniphila ATCC BAA-835","na":1,"nb":2,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["NCBITaxon%3A239935","Akkermansia muciniphila"],["NCBITaxon%3A349741","Akkermansia muciniphila ATCC BAA-835"]]},{"id":"NCBITaxon:349910","l":"Streptomyces bullii","na":1,"nb":2,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A349910","Streptomyces bullii"],["NCBITaxon%3A1818004","Streptomyces zhihengii"]]},{"id":"NCBITaxon:35","l":"Corallococcus macrosporus","na":1,"nb":2,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"]],"b":[["NCBITaxon%3A35","Corallococcus macrosporus"],["NCBITaxon%3A1189310","Corallococcus macrosporus DSM 14697"]]},{"id":"NCBITaxon:350054","l":"Mycolicibacterium gilvum PYR-GCK","na":2,"nb":1,"a":[["soil-envo-00001998.html","soil"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A350054","Mycolicibacterium gilvum PYR-GCK"]]},{"id":"NCBITaxon:351348","l":"Marinobacter nauticus VT8","na":1,"nb":2,"a":[["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A2743","Marinobacter nauticus"],["NCBITaxon%3A351348","Marinobacter nauticus VT8"]]},{"id":"NCBITaxon:351607","l":"Acidothermus cellulolyticus 11B","na":1,"nb":2,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A28049","Acidothermus cellulolyticus"],["NCBITaxon%3A351607","Acidothermus cellulolyticus 11B"]]},{"id":"NCBITaxon:353153","l":"Trypanosoma cruzi strain CL Brener","na":2,"nb":1,"a":[["amastigote-bto-0000062.html","amastigote"],["kinetoplastid-bto-0002502.html","kinetoplastid"]],"b":[["NCBITaxon%3A353153","Trypanosoma cruzi strain CL Brener"]]},{"id":"NCBITaxon:356829","l":"Bifidobacterium tsurumiense","na":1,"nb":2,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A356829","Bifidobacterium tsurumiense"],["NCBITaxon%3A1121112","Bifidobacterium tsurumiense DSM 17777"]]},{"id":"NCBITaxon:357347","l":"Burkholderia pseudomallei 1106b","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A357347","Burkholderia pseudomallei 1106b"]]},{"id":"NCBITaxon:357794","l":"Psychromonas ingrahamii","na":1,"nb":2,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A357794","Psychromonas ingrahamii"],["NCBITaxon%3A357804","Psychromonas ingrahamii 37"]]},{"id":"NCBITaxon:357804","l":"Psychromonas ingrahamii 37","na":1,"nb":2,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["NCBITaxon%3A357794","Psychromonas ingrahamii"],["NCBITaxon%3A357804","Psychromonas ingrahamii 37"]]},{"id":"NCBITaxon:358100","l":"Microbacterium indicum","na":1,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A358100","Microbacterium indicum"],["NCBITaxon%3A1122238","Microbacterium indicum DSM 19969"]]},{"id":"NCBITaxon:35841","l":"Caldibacillus thermoamylovorans","na":2,"nb":1,"a":[["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"],["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["NCBITaxon%3A35841","Caldibacillus thermoamylovorans"]]},{"id":"NCBITaxon:360054","l":"Bryobacter aggregatus","na":1,"nb":2,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A360054","Bryobacter aggregatus"],["NCBITaxon%3A1340493","Bryobacter aggregatus MPL3"]]},{"id":"NCBITaxon:362242","l":"Mycobacterium ulcerans Agy99","na":2,"nb":1,"a":[["subcutaneous-tissue-bto-0004525.html","subcutaneous tissue"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A362242","Mycobacterium ulcerans Agy99"]]},{"id":"NCBITaxon:362787","l":"Candidatus Protochlamydia amoebophila","na":1,"nb":2,"a":[["endosymbiont-habitatmech-bacdive-7d840c7ddc.html","Endosymbiont"]],"b":[["NCBITaxon%3A362787","Candidatus Protochlamydia amoebophila"],["NCBITaxon%3A264201","Candidatus Protochlamydia amoebophila UWE25"]]},{"id":"NCBITaxon:363260","l":"Sphingobacterium composti","na":1,"nb":2,"a":[["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["NCBITaxon%3A415956","Sphingobacterium allocomposti"],["NCBITaxon%3A363260","Sphingobacterium composti"]]},{"id":"NCBITaxon:364197","l":"Pseudomonas pohangensis","na":2,"nb":1,"a":[["beach-envo-00000091.html","beach"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A364197","Pseudomonas pohangensis"]]},{"id":"NCBITaxon:366289","l":"Pseudomonas delhiensis","na":1,"nb":2,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["NCBITaxon%3A366289","Pseudomonas delhiensis"],["NCBITaxon%3A482461","Sediminibacillus halophilus"]]},{"id":"NCBITaxon:36738","l":"Halococcus salifodinae","na":1,"nb":2,"a":[["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["NCBITaxon%3A36738","Halococcus salifodinae"],["NCBITaxon%3A1227456","Halococcus salifodinae DSM 8989"]]},{"id":"NCBITaxon:367928","l":"Bifidobacterium adolescentis ATCC 15703","na":1,"nb":2,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["NCBITaxon%3A1680","Bifidobacterium adolescentis"],["NCBITaxon%3A367928","Bifidobacterium adolescentis ATCC 15703"]]},{"id":"NCBITaxon:36821","l":"Gordonia amarae","na":1,"nb":2,"a":[["foam-habitatmech-bacdive-df2f59b773.html","Foam"]],"b":[["NCBITaxon%3A36821","Gordonia amarae"],["NCBITaxon%3A1075090","Gordonia amarae NBRC 15530"]]},{"id":"NCBITaxon:36832","l":"Lacrimispora aerotolerans","na":1,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"]],"b":[["NCBITaxon%3A1410651","[Clostridium] aerotolerans DSM 5434"],["NCBITaxon%3A36832","Lacrimispora aerotolerans"]]},{"id":"NCBITaxon:368407","l":"Methanoculleus marisnigri JR1","na":1,"nb":2,"a":[["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A2198","Methanoculleus marisnigri"],["NCBITaxon%3A368407","Methanoculleus marisnigri JR1"]]},{"id":"NCBITaxon:36874","l":"Porphyromonas cangingivalis","na":1,"nb":2,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["NCBITaxon%3A36874","Porphyromonas cangingivalis"],["NCBITaxon%3A1236520","Porphyromonas cangingivalis JCM 15983"]]},{"id":"NCBITaxon:369822","l":"Rickettsia conorii subsp. raoultii","na":1,"nb":2,"a":[["scalp-bto-0001809.html","scalp"]],"b":[["NCBITaxon%3A781","Rickettsia conorii"],["NCBITaxon%3A369822","Rickettsia conorii subsp. raoultii"]]},{"id":"NCBITaxon:370973","l":"Runella defluvii","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A370973","Runella defluvii"],["NCBITaxon%3A1123076","Runella defluvii DSM 17976"]]},{"id":"NCBITaxon:373903","l":"Halothermothrix orenii H 168","na":1,"nb":2,"a":[["lake-sediment-envo-00000546.html","lake sediment"]],"b":[["NCBITaxon%3A31909","Halothermothrix orenii"],["NCBITaxon%3A373903","Halothermothrix orenii H 168"]]},{"id":"NCBITaxon:374424","l":"Methylobacterium gregans","na":1,"nb":2,"a":[["factory-envo-01000536.html","factory"]],"b":[["NCBITaxon%3A237017","Algoriphagus winogradskyi"],["NCBITaxon%3A374424","Methylobacterium gregans"]]},{"id":"NCBITaxon:374463","l":"Baumannia cicadellinicola str. Hc (Homalodisca coagulata)","na":2,"nb":1,"a":[["phloem-bto-0001058.html","phloem"],["xylem-bto-0001468.html","xylem"]],"b":[["NCBITaxon%3A374463","Baumannia cicadellinicola str. Hc (Homalodisca coagulata)"]]},{"id":"NCBITaxon:374675","l":"Candidatus Karelsulcia muelleri str. Hc (Homalodisca coagulata)","na":2,"nb":1,"a":[["phloem-bto-0001058.html","phloem"],["xylem-bto-0001468.html","xylem"]],"b":[["NCBITaxon%3A374675","Candidatus Karelsulcia muelleri str. Hc (Homalodisca coagulata)"]]},{"id":"NCBITaxon:375451","l":"Roseobacter denitrificans OCh 114","na":1,"nb":2,"a":[["inlet-envo-00000475.html","inlet"]],"b":[["NCBITaxon%3A2434","Roseobacter denitrificans"],["NCBITaxon%3A375451","Roseobacter denitrificans OCh 114"]]},{"id":"NCBITaxon:37658","l":"Anaeromicropila populeti","na":1,"nb":2,"a":[["wood-envo-00002040.html","wood"]],"b":[["NCBITaxon%3A37658","Anaeromicropila populeti"],["NCBITaxon%3A1121330","Anaeromicropila populeti DSM 5832"]]},{"id":"NCBITaxon:376686","l":"Flavobacterium johnsoniae UW101","na":1,"nb":2,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["NCBITaxon%3A986","Flavobacterium johnsoniae"],["NCBITaxon%3A376686","Flavobacterium johnsoniae UW101"]]},{"id":"NCBITaxon:376804","l":"Phocaeicola barnesiae","na":1,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"]],"b":[["NCBITaxon%3A376804","Phocaeicola barnesiae"],["NCBITaxon%3A1121094","Phocaeicola barnesiae DSM 18169 = JCM 13652"]]},{"id":"NCBITaxon:377431","l":"Chlorobium ferrooxidans DSM 13031","na":1,"nb":2,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A84205","Chlorobium ferrooxidans"],["NCBITaxon%3A377431","Chlorobium ferrooxidans DSM 13031"]]},{"id":"NCBITaxon:379347","l":"Tritonibacter mobilis","na":1,"nb":2,"a":[["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["NCBITaxon%3A379347","Tritonibacter mobilis"],["NCBITaxon%3A1265309","Tritonibacter mobilis F1926"]]},{"id":"NCBITaxon:380174","l":"Cohnella laeviribosi","na":1,"nb":2,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A380174","Cohnella laeviribosi"],["NCBITaxon%3A1121346","Cohnella laeviribosi DSM 21336"]]},{"id":"NCBITaxon:380394","l":"Acidithiobacillus ferrooxidans ATCC 53993","na":2,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A380394","Acidithiobacillus ferrooxidans ATCC 53993"]]},{"id":"NCBITaxon:381845","l":"Clostridium sp. CYP5","na":2,"nb":1,"a":[["eutrophic-water-envo-00002224.html","eutrophic water"],["container-of-an-intermittent-water-body-envo-00000549.html","container of an intermittent water body"]],"b":[["NCBITaxon%3A381845","Clostridium sp. CYP5"]]},{"id":"NCBITaxon:382514","l":"Telmatospirillum siberiense","na":2,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A382514","Telmatospirillum siberiense"]]},{"id":"NCBITaxon:382640","l":"Bartonella tribocorum CIP 105476","na":1,"nb":2,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A85701","Bartonella tribocorum"],["NCBITaxon%3A382640","Bartonella tribocorum CIP 105476"]]},{"id":"NCBITaxon:383407","l":"Xanthomonas oryzae pv. oryzicola BLS256","na":2,"nb":1,"a":[["mesophyll-bto-0000858.html","mesophyll"],["vascular-tissue-bto-0001432.html","vascular tissue"]],"b":[["NCBITaxon%3A383407","Xanthomonas oryzae pv. oryzicola BLS256"]]},{"id":"NCBITaxon:384602","l":"Micrococcus flavus","na":1,"nb":2,"a":[["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A384602","Micrococcus flavus"],["NCBITaxon%3A1271","Micrococcus sp."]]},{"id":"NCBITaxon:384616","l":"Pyrobaculum islandicum DSM 4184","na":1,"nb":2,"a":[["geothermal-power-plant-envo-00002215.html","geothermal power plant"]],"b":[["NCBITaxon%3A2277","Pyrobaculum islandicum"],["NCBITaxon%3A384616","Pyrobaculum islandicum DSM 4184"]]},{"id":"NCBITaxon:384676","l":"Pseudomonas entomophila L48","na":1,"nb":2,"a":[["coelom-bto-0001707.html","coelom"]],"b":[["NCBITaxon%3A312306","Pseudomonas entomophila"],["NCBITaxon%3A384676","Pseudomonas entomophila L48"]]},{"id":"NCBITaxon:384765","l":"Roseibium aggregatum IAM 12614","na":1,"nb":2,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["NCBITaxon%3A187304","Roseibium aggregatum"],["NCBITaxon%3A384765","Roseibium aggregatum IAM 12614"]]},{"id":"NCBITaxon:386891","l":"Moraxella bovoculi","na":1,"nb":2,"a":[["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["NCBITaxon%3A386891","Moraxella bovoculi"],["NCBITaxon%3A743974","Moraxella bovoculi 237"]]},{"id":"NCBITaxon:387344","l":"Levilactobacillus brevis ATCC 367","na":1,"nb":2,"a":[["silage-envo-00003030.html","silage"]],"b":[["NCBITaxon%3A1580","Levilactobacillus brevis"],["NCBITaxon%3A387344","Levilactobacillus brevis ATCC 367"]]},{"id":"NCBITaxon:387889","l":"Prauserella salsuginis","na":1,"nb":2,"a":[["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A577679","Prauserella flava"],["NCBITaxon%3A387889","Prauserella salsuginis"]]},{"id":"NCBITaxon:389348","l":"Candidatus Protochlamydia naegleriophila","na":2,"nb":1,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A389348","Candidatus Protochlamydia naegleriophila"]]},{"id":"NCBITaxon:391009","l":"Thermosipho melanesiensis BI429","na":1,"nb":2,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A46541","Thermosipho melanesiensis"],["NCBITaxon%3A391009","Thermosipho melanesiensis BI429"]]},{"id":"NCBITaxon:391037","l":"Salinispora arenicola CNS-205","na":2,"nb":1,"a":[["beach-sand-envo-00002138.html","beach sand"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A391037","Salinispora arenicola CNS-205"]]},{"id":"NCBITaxon:391038","l":"Paraburkholderia phymatum STM815","na":1,"nb":2,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A148447","Paraburkholderia phymatum"],["NCBITaxon%3A391038","Paraburkholderia phymatum STM815"]]},{"id":"NCBITaxon:39122","l":"Skermania pinensis","na":1,"nb":2,"a":[["foam-habitatmech-bacdive-df2f59b773.html","Foam"]],"b":[["NCBITaxon%3A39122","Skermania pinensis"],["NCBITaxon%3A1223536","Skermania pinensis NBRC 15059"]]},{"id":"NCBITaxon:391287","l":"Brucella ciceri","na":1,"nb":2,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A391287","Brucella ciceri"],["NCBITaxon%3A94625","Brucella intermedia"]]},{"id":"NCBITaxon:391613","l":"Roseovarius sp. TM1035","na":1,"nb":2,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A2203213","Roseovarius sp. AK1035"],["NCBITaxon%3A391613","Roseovarius sp. TM1035"]]},{"id":"NCBITaxon:391626","l":"Octadecabacter antarcticus 307","na":1,"nb":2,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["NCBITaxon%3A1217908","Octadecabacter antarcticus"],["NCBITaxon%3A391626","Octadecabacter antarcticus 307"]]},{"id":"NCBITaxon:392015","l":"Paenalicyclobacillus macrosporangiidus","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A1382304","Alicyclobacillus macrosporangiidus CPP55"],["NCBITaxon%3A392015","Paenalicyclobacillus macrosporangiidus"]]},{"id":"NCBITaxon:392838","l":"Bacteroides propionicifaciens","na":1,"nb":2,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A392838","Bacteroides propionicifaciens"],["NCBITaxon%3A1121099","Bacteroides propionicifaciens DSM 19291 = JCM 14649"]]},{"id":"NCBITaxon:393133","l":"Listeria monocytogenes 10403S","na":2,"nb":1,"a":[["lymphocyte-bto-0000775.html","lymphocyte"],["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A393133","Listeria monocytogenes 10403S"]]},{"id":"NCBITaxon:393595","l":"Alcanivorax borkumensis SK2","na":1,"nb":2,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["NCBITaxon%3A59754","Alcanivorax borkumensis"],["NCBITaxon%3A393595","Alcanivorax borkumensis SK2"]]},{"id":"NCBITaxon:394094","l":"Cystobacter velatus","na":2,"nb":1,"a":[["wood-bto-0005516.html","wood"],["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A394094","Cystobacter velatus"]]},{"id":"NCBITaxon:394096","l":"Hyalangium minutum","na":2,"nb":1,"a":[["wood-bto-0005516.html","wood"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A394096","Hyalangium minutum"]]},{"id":"NCBITaxon:394935","l":"Chromobacterium haemolyticum","na":1,"nb":2,"a":[["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["NCBITaxon%3A394935","Chromobacterium haemolyticum"],["NCBITaxon%3A1121283","Chromobacterium haemolyticum DSM 19808"]]},{"id":"NCBITaxon:395493","l":"Beggiatoa alba B18LD","na":1,"nb":2,"a":[["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["NCBITaxon%3A1022","Beggiatoa alba"],["NCBITaxon%3A395493","Beggiatoa alba B18LD"]]},{"id":"NCBITaxon:395598","l":"Pseudomonas reinekei","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A395598","Pseudomonas reinekei"]]},{"id":"NCBITaxon:395961","l":"Cyanothece sp. PCC 7425","na":2,"nb":1,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["NCBITaxon%3A395961","Cyanothece sp. PCC 7425"]]},{"id":"NCBITaxon:395962","l":"Rippkaea orientalis PCC 8802","na":2,"nb":1,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A395962","Rippkaea orientalis PCC 8802"]]},{"id":"NCBITaxon:396588","l":"Thioalkalivibrio sulfidiphilus HL-EbGr7","na":2,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A396588","Thioalkalivibrio sulfidiphilus HL-EbGr7"]]},{"id":"NCBITaxon:397448","l":"Escherichia coli O119:H6","na":2,"nb":1,"a":[["enterocyte-bto-0000398.html","enterocyte"],["hela-cell-bto-0000567.html","HeLa cell"]],"b":[["NCBITaxon%3A397448","Escherichia coli O119:H6"]]},{"id":"NCBITaxon:397865","l":"Barnesiella viscericola","na":1,"nb":2,"a":[["emulsion-envo-00010506.html","emulsion"]],"b":[["NCBITaxon%3A397865","Barnesiella viscericola"],["NCBITaxon%3A880074","Barnesiella viscericola DSM 18177"]]},{"id":"NCBITaxon:397948","l":"Caldivirga maquilingensis IC-167","na":1,"nb":2,"a":[["acidic-hot-spring-envo-00002120.html","acidic hot spring"]],"b":[["NCBITaxon%3A76887","Caldivirga maquilingensis"],["NCBITaxon%3A397948","Caldivirga maquilingensis IC-167"]]},{"id":"NCBITaxon:398000","l":"Campylobacter jejuni subsp. jejuni CG8486","na":2,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"],["epithelial-cell-bto-0000414.html","epithelial cell"]],"b":[["NCBITaxon%3A398000","Campylobacter jejuni subsp. jejuni CG8486"]]},{"id":"NCBITaxon:398527","l":"Paraburkholderia phytofirmans PsJN","na":1,"nb":2,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["NCBITaxon%3A261302","Paraburkholderia phytofirmans"],["NCBITaxon%3A398527","Paraburkholderia phytofirmans PsJN"]]},{"id":"NCBITaxon:399549","l":"Metallosphaera sedula DSM 5348","na":1,"nb":2,"a":[["solfatara-envo-00000217.html","solfatara"]],"b":[["NCBITaxon%3A43687","Metallosphaera sedula"],["NCBITaxon%3A399549","Metallosphaera sedula DSM 5348"]]},{"id":"NCBITaxon:399579","l":"Thermogymnomonas acidicola","na":1,"nb":2,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A399579","Thermogymnomonas acidicola"],["NCBITaxon%3A1295120","Thermogymnomonas acidicola JCM 13583"]]},{"id":"NCBITaxon:399741","l":"Serratia proteamaculans 568","na":2,"nb":1,"a":[["pleura-bto-0001791.html","pleura"],["seedling-bto-0001228.html","seedling"]],"b":[["NCBITaxon%3A399741","Serratia proteamaculans 568"]]},{"id":"NCBITaxon:399795","l":"Comamonas testosteroni KF-1","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A285","Comamonas testosteroni"],["NCBITaxon%3A399795","Comamonas testosteroni KF-1"]]},{"id":"NCBITaxon:401472","l":"Corynebacterium ureicelerivorans","na":1,"nb":2,"a":[["ascites-bto-0000091.html","ascites"]],"b":[["NCBITaxon%3A57171","Corynebacterium mucifaciens"],["NCBITaxon%3A401472","Corynebacterium ureicelerivorans"]]},{"id":"NCBITaxon:401526","l":"Thermosinus carboxydivorans Nor1","na":1,"nb":2,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A261685","Thermosinus carboxydivorans"],["NCBITaxon%3A401526","Thermosinus carboxydivorans Nor1"]]},{"id":"NCBITaxon:402612","l":"Flavobacterium psychrophilum JIP02/86","na":1,"nb":2,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A96345","Flavobacterium psychrophilum"],["NCBITaxon%3A402612","Flavobacterium psychrophilum JIP02/86"]]},{"id":"NCBITaxon:402880","l":"Methanococcus maripaludis C5","na":2,"nb":1,"a":[["marsh-envo-00000035.html","marsh"],["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A402880","Methanococcus maripaludis C5"]]},{"id":"NCBITaxon:403833","l":"Petrotoga mobilis SJ95","na":1,"nb":2,"a":[["oil-envo-00002985.html","oil"]],"b":[["NCBITaxon%3A69499","Petrotoga mobilis"],["NCBITaxon%3A403833","Petrotoga mobilis SJ95"]]},{"id":"NCBITaxon:404385","l":"Nonomuraea bangladeshensis","na":1,"nb":2,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A404385","Nonomuraea bangladeshensis"],["NCBITaxon%3A282078","Streptococcus orisuis"]]},{"id":"NCBITaxon:404386","l":"Nonomuraea coxensis","na":1,"nb":2,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A404386","Nonomuraea coxensis"],["NCBITaxon%3A1122611","Nonomuraea coxensis DSM 45129"]]},{"id":"NCBITaxon:404881","l":"Albidovulum denitrificans","na":2,"nb":1,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A404881","Albidovulum denitrificans"]]},{"id":"NCBITaxon:405559","l":"Paracoccus saliphilus","na":1,"nb":2,"a":[["area-designated-as-a-nature-reserve-envo-00000363.html","area designated as a nature reserve"]],"b":[["NCBITaxon%3A2778531","Paracoccus halotolerans"],["NCBITaxon%3A405559","Paracoccus saliphilus"]]},{"id":"NCBITaxon:406425","l":"Burkholderia orbicola MC0-3","na":2,"nb":1,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"],["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A406425","Burkholderia orbicola MC0-3"]]},{"id":"NCBITaxon:406817","l":"Xenorhabdus nematophila ATCC 19061","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A628","Xenorhabdus nematophila"],["NCBITaxon%3A406817","Xenorhabdus nematophila ATCC 19061"]]},{"id":"NCBITaxon:407022","l":"Olivibacter domesticus","na":1,"nb":2,"a":[["compost-envo-00002170.html","compost"]],"b":[["NCBITaxon%3A407022","Olivibacter domesticus"],["NCBITaxon%3A1123028","Olivibacter domesticus DSM 18733"]]},{"id":"NCBITaxon:408577","l":"Methanobacterium veterum","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A386456","Methanobacterium arcticum"],["NCBITaxon%3A408577","Methanobacterium veterum"]]},{"id":"NCBITaxon:409291","l":"Arthrobacter humicola","na":1,"nb":2,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A1665","Arthrobacter globiformis"],["NCBITaxon%3A409291","Arthrobacter humicola"]]},{"id":"NCBITaxon:40990","l":"Saccharomonospora glauca","na":1,"nb":2,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"]],"b":[["NCBITaxon%3A40990","Saccharomonospora glauca"],["NCBITaxon%3A928724","Saccharomonospora glauca K62"]]},{"id":"NCBITaxon:410358","l":"Methanocorpusculum labreanum Z","na":1,"nb":2,"a":[["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A83984","Methanocorpusculum labreanum"],["NCBITaxon%3A410358","Methanocorpusculum labreanum Z"]]},{"id":"NCBITaxon:410359","l":"Pyrobaculum calidifontis JCM 11548","na":1,"nb":2,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A181486","Pyrobaculum calidifontis"],["NCBITaxon%3A410359","Pyrobaculum calidifontis JCM 11548"]]},{"id":"NCBITaxon:411154","l":"Christiangramia forsetii KT0803","na":1,"nb":2,"a":[["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A411153","Christiangramia forsetii"],["NCBITaxon%3A411154","Christiangramia forsetii KT0803"]]},{"id":"NCBITaxon:411466","l":"Schaalia dentiphila ATCC 17982","na":1,"nb":2,"a":[["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["NCBITaxon%3A411466","Schaalia dentiphila ATCC 17982"],["NCBITaxon%3A1660","Schaalia odontolytica"]]},{"id":"NCBITaxon:411474","l":"Coprococcus eutactus ATCC 27759","na":1,"nb":2,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A33043","Coprococcus eutactus"],["NCBITaxon%3A411474","Coprococcus eutactus ATCC 27759"]]},{"id":"NCBITaxon:411479","l":"Bacteroides uniformis ATCC 8492","na":1,"nb":2,"a":[["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["NCBITaxon%3A820","Bacteroides uniformis"],["NCBITaxon%3A411479","Bacteroides uniformis ATCC 8492"]]},{"id":"NCBITaxon:411684","l":"Hoeflea phototrophica DFL-43","na":1,"nb":2,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["NCBITaxon%3A411684","Hoeflea phototrophica DFL-43"],["NCBITaxon%3A244596","Parahoeflea phototrophica"]]},{"id":"NCBITaxon:41211","l":"Desulfotomaculum sp.","na":2,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"],["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A41211","Desulfotomaculum sp."]]},{"id":"NCBITaxon:41276","l":"Brevundimonas vesicularis","na":1,"nb":2,"a":[["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A41276","Brevundimonas vesicularis"],["NCBITaxon%3A1349759","Brevundimonas vesicularis NBRC 12165"]]},{"id":"NCBITaxon:412965","l":"Candidatus Vesicomyidisocius calyptogenae","na":2,"nb":1,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"],["gill-bto-0000518.html","gill"]],"b":[["NCBITaxon%3A412965","Candidatus Vesicomyidisocius calyptogenae"]]},{"id":"NCBITaxon:413712","l":"Sphingomonas pseudosanguinis","na":2,"nb":1,"a":[["air-envo-00002005.html","air"],["air-conditioning-unit-envo-00002874.html","air conditioning unit"]],"b":[["NCBITaxon%3A413712","Sphingomonas pseudosanguinis"]]},{"id":"NCBITaxon:41431","l":"Rippkaea orientalis PCC 8801","na":2,"nb":1,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["NCBITaxon%3A41431","Rippkaea orientalis PCC 8801"]]},{"id":"NCBITaxon:415015","l":"Proteiniborus ethanoligenes","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A415015","Proteiniborus ethanoligenes"],["NCBITaxon%3A1123007","Proteiniborus ethanoligenes DSM 21650"]]},{"id":"NCBITaxon:415229","l":"Pseudoxanthomonas spadix","na":1,"nb":2,"a":[["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A415229","Pseudoxanthomonas spadix"],["NCBITaxon%3A1045855","Pseudoxanthomonas spadix BD-a59"]]},{"id":"NCBITaxon:419665","l":"Methanococcus aeolicus Nankai-3","na":1,"nb":2,"a":[["shoreline-envo-00000486.html","shoreline"]],"b":[["NCBITaxon%3A42879","Methanococcus aeolicus"],["NCBITaxon%3A419665","Methanococcus aeolicus Nankai-3"]]},{"id":"NCBITaxon:41977","l":"Parazoarcus communis","na":1,"nb":2,"a":[["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A41977","Parazoarcus communis"],["NCBITaxon%3A1121029","Parazoarcus communis SWub3 = DSM 12120"]]},{"id":"NCBITaxon:41986","l":"Agromyces mediolanus","na":1,"nb":2,"a":[["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["NCBITaxon%3A41986","Agromyces mediolanus"],["NCBITaxon%3A1303686","Agromyces mediolanus JCM 9631"]]},{"id":"NCBITaxon:419942","l":"Saccharolobus islandicus Y.N.15.51","na":2,"nb":1,"a":[["geyser-envo-00000050.html","geyser"],["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A419942","Saccharolobus islandicus Y.N.15.51"]]},{"id":"NCBITaxon:419947","l":"Mycobacterium tuberculosis H37Ra","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A419947","Mycobacterium tuberculosis H37Ra"]]},{"id":"NCBITaxon:420247","l":"Methanobrevibacter smithii ATCC 35061","na":1,"nb":2,"a":[["gut-mucosa-bto-0000546.html","gut mucosa"]],"b":[["NCBITaxon%3A2173","Methanobrevibacter smithii"],["NCBITaxon%3A420247","Methanobrevibacter smithii ATCC 35061"]]},{"id":"NCBITaxon:420404","l":"Epilithonimonas hominis","na":2,"nb":1,"a":[["kidney-bto-0000671.html","kidney"],["medical-practice-habitatmech-bacdive-ddf5f83abc.html","Medical-practice"]],"b":[["NCBITaxon%3A420404","Epilithonimonas hominis"]]},{"id":"NCBITaxon:42252","l":"Nitratidesulfovibrio termitidis","na":1,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A42252","Nitratidesulfovibrio termitidis"],["NCBITaxon%3A644897","Nitratidesulfovibrio termitidis HI1"]]},{"id":"NCBITaxon:423350","l":"Mucilaginibacter gracilis","na":2,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A423350","Mucilaginibacter gracilis"]]},{"id":"NCBITaxon:423351","l":"Mucilaginibacter paludis","na":1,"nb":2,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A423351","Mucilaginibacter paludis"],["NCBITaxon%3A714943","Mucilaginibacter paludis DSM 18603"]]},{"id":"NCBITaxon:42353","l":"Nitrosomonas sp.","na":2,"nb":1,"a":[["anaerobic-sludge-blanket-reactor-envo-00002213.html","anaerobic sludge blanket reactor"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A42353","Nitrosomonas sp."]]},{"id":"NCBITaxon:425067","l":"Burkholderia pseudomallei 305","na":2,"nb":1,"a":[["hospital-envo-00002173.html","hospital"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A425067","Burkholderia pseudomallei 305"]]},{"id":"NCBITaxon:425104","l":"Shewanella sediminis HAW-EB3","na":1,"nb":2,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A271097","Shewanella sediminis"],["NCBITaxon%3A425104","Shewanella sediminis HAW-EB3"]]},{"id":"NCBITaxon:426355","l":"Methylobacterium radiotolerans JCM 2831","na":1,"nb":2,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["NCBITaxon%3A31998","Methylobacterium radiotolerans"],["NCBITaxon%3A426355","Methylobacterium radiotolerans JCM 2831"]]},{"id":"NCBITaxon:43","l":"Cystobacter fuscus","na":1,"nb":2,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"]],"b":[["NCBITaxon%3A43","Cystobacter fuscus"],["NCBITaxon%3A1242864","Cystobacter fuscus DSM 2262"]]},{"id":"NCBITaxon:43131","l":"Tissierella praeacuta","na":1,"nb":2,"a":[["village-biome-envo-01000246.html","village biome"]],"b":[["NCBITaxon%3A43131","Tissierella praeacuta"],["NCBITaxon%3A1123404","Tissierella praeacuta DSM 18095"]]},{"id":"NCBITaxon:431489","l":"Demequina lutea","na":2,"nb":1,"a":[["permafrost-envo-00000134.html","permafrost"],["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A431489","Demequina lutea"]]},{"id":"NCBITaxon:431943","l":"Clostridium kluyveri DSM 555","na":1,"nb":2,"a":[["desert-sand-envo-00005800.html","desert sand"]],"b":[["NCBITaxon%3A1534","Clostridium kluyveri"],["NCBITaxon%3A431943","Clostridium kluyveri DSM 555"]]},{"id":"NCBITaxon:435805","l":"Flavobacterium sp. '80m A1 isolate-4'","na":2,"nb":1,"a":[["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"]],"b":[["NCBITaxon%3A435805","Flavobacterium sp. '80m A1 isolate-4'"]]},{"id":"NCBITaxon:436115","l":"Burkholderia mallei PRL-20","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A436115","Burkholderia mallei PRL-20"]]},{"id":"NCBITaxon:436308","l":"Nitrosopumilus maritimus SCM1","na":1,"nb":2,"a":[["aquarium-envo-00002196.html","aquarium"]],"b":[["NCBITaxon%3A338192","Nitrosopumilus maritimus"],["NCBITaxon%3A436308","Nitrosopumilus maritimus SCM1"]]},{"id":"NCBITaxon:436717","l":"Acinetobacter oleivorans DR1","na":1,"nb":2,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A1148157","Acinetobacter oleivorans"],["NCBITaxon%3A436717","Acinetobacter oleivorans DR1"]]},{"id":"NCBITaxon:43677","l":"Promicromonospora citrea","na":1,"nb":2,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A2126556","Flavobacterium artemisiae"],["NCBITaxon%3A43677","Promicromonospora citrea"]]},{"id":"NCBITaxon:43769","l":"Corynebacterium propinquum","na":1,"nb":2,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A43769","Corynebacterium propinquum"],["NCBITaxon%3A1121367","Corynebacterium propinquum DSM 44285"]]},{"id":"NCBITaxon:439292","l":"[Bacillus] selenitireducens MLS10","na":1,"nb":2,"a":[["anaerobic-mud-envo-00002133.html","anaerobic mud"]],"b":[["NCBITaxon%3A439292","[Bacillus] selenitireducens MLS10"],["NCBITaxon%3A85683","Salisediminibacterium selenitireducens"]]},{"id":"NCBITaxon:439612","l":"Daeguia caeni","na":1,"nb":2,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A439612","Daeguia caeni"],["NCBITaxon%3A2665146","Thauera sinica"]]},{"id":"NCBITaxon:440085","l":"Methylorubrum extorquens CM4","na":1,"nb":2,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A408","Methylorubrum extorquens"],["NCBITaxon%3A440085","Methylorubrum extorquens CM4"]]},{"id":"NCBITaxon:441156","l":"Burkholderia pseudomallei 7894","na":2,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A441156","Burkholderia pseudomallei 7894"]]},{"id":"NCBITaxon:441165","l":"Burkholderia thailandensis TXDOH","na":2,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A441165","Burkholderia thailandensis TXDOH"]]},{"id":"NCBITaxon:441620","l":"Methylorubrum populi BJ001","na":1,"nb":2,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A223967","Methylorubrum populi"],["NCBITaxon%3A441620","Methylorubrum populi BJ001"]]},{"id":"NCBITaxon:442956","l":"Thermococcus sp. HJ21","na":2,"nb":1,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A442956","Thermococcus sp. HJ21"]]},{"id":"NCBITaxon:443906","l":"Clavibacter michiganensis subsp. michiganensis NCPPB 382","na":2,"nb":1,"a":[["xylem-bto-0001468.html","xylem"],["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A443906","Clavibacter michiganensis subsp. michiganensis NCPPB 382"]]},{"id":"NCBITaxon:444103","l":"Streptomyces sp. CNQ-509","na":2,"nb":1,"a":[["colonic-cancer-cell-bto-0000586.html","colonic cancer cell"],["vas-efferens-bto-0002254.html","vas efferens"]],"b":[["NCBITaxon%3A444103","Streptomyces sp. CNQ-509"]]},{"id":"NCBITaxon:445220","l":"Reyranella massiliensis","na":1,"nb":2,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A445220","Reyranella massiliensis"],["NCBITaxon%3A1205680","Reyranella massiliensis 521"]]},{"id":"NCBITaxon:445932","l":"Elusimicrobium minutum Pei191","na":1,"nb":2,"a":[["hindgut-bto-0000510.html","hindgut"]],"b":[["NCBITaxon%3A423605","Elusimicrobium minutum"],["NCBITaxon%3A445932","Elusimicrobium minutum Pei191"]]},{"id":"NCBITaxon:446469","l":"Sanguibacter keddieii DSM 10542","na":1,"nb":2,"a":[["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A60920","Sanguibacter keddieii"],["NCBITaxon%3A446469","Sanguibacter keddieii DSM 10542"]]},{"id":"NCBITaxon:446470","l":"Stackebrandtia nassauensis DSM 44728","na":1,"nb":2,"a":[["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["NCBITaxon%3A283811","Stackebrandtia nassauensis"],["NCBITaxon%3A446470","Stackebrandtia nassauensis DSM 44728"]]},{"id":"NCBITaxon:44751","l":"Exiguobacterium sp.","na":2,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"],["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A44751","Exiguobacterium sp."]]},{"id":"NCBITaxon:447595","l":"Caldanaerovirga acetigignens","na":1,"nb":2,"a":[["rocky-desert-envo-00000173.html","rocky desert"]],"b":[["NCBITaxon%3A447595","Caldanaerovirga acetigignens"],["NCBITaxon%3A1121258","Caldanaerovirga acetigignens DSM 18802"]]},{"id":"NCBITaxon:448385","l":"Sorangium cellulosum So ce56","na":1,"nb":2,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A56","Sorangium cellulosum"],["NCBITaxon%3A448385","Sorangium cellulosum So ce56"]]},{"id":"NCBITaxon:449306","l":"Desulfobulbus sp. DSM 2033","na":2,"nb":1,"a":[["black-smoker-envo-00000218.html","black smoker"],["volcanic-rock-envo-00002015.html","volcanic rock"]],"b":[["NCBITaxon%3A449306","Desulfobulbus sp. DSM 2033"]]},{"id":"NCBITaxon:449673","l":"Bacteroides stercoris ATCC 43183","na":1,"nb":2,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["NCBITaxon%3A46506","Bacteroides stercoris"],["NCBITaxon%3A449673","Bacteroides stercoris ATCC 43183"]]},{"id":"NCBITaxon:451640","l":"Catenibacterium mitsuokai DSM 15897","na":1,"nb":2,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["NCBITaxon%3A100886","Catenibacterium mitsuokai"],["NCBITaxon%3A451640","Catenibacterium mitsuokai DSM 15897"]]},{"id":"NCBITaxon:451754","l":"Clostridium perfringens B str. ATCC 3626","na":1,"nb":2,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["NCBITaxon%3A1502","Clostridium perfringens"],["NCBITaxon%3A451754","Clostridium perfringens B str. ATCC 3626"]]},{"id":"NCBITaxon:45248","l":"Leucothrix mucor","na":1,"nb":2,"a":[["epibiont-habitatmech-bacdive-f4eb470a03.html","Epibiont"]],"b":[["NCBITaxon%3A45248","Leucothrix mucor"],["NCBITaxon%3A998674","Leucothrix mucor DSM 2157"]]},{"id":"NCBITaxon:452637","l":"Opitutus terrae PB90-1","na":1,"nb":2,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A107709","Opitutus terrae"],["NCBITaxon%3A452637","Opitutus terrae PB90-1"]]},{"id":"NCBITaxon:452638","l":"Polynucleobacter necessarius STIR1","na":2,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A452638","Polynucleobacter necessarius STIR1"]]},{"id":"NCBITaxon:452652","l":"Kitasatospora setae KM-6054","na":1,"nb":2,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A2066","Kitasatospora setae"],["NCBITaxon%3A452652","Kitasatospora setae KM-6054"]]},{"id":"NCBITaxon:452662","l":"Sphingobium indicum UT26S","na":1,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["NCBITaxon%3A332055","Sphingobium indicum"],["NCBITaxon%3A452662","Sphingobium indicum UT26S"]]},{"id":"NCBITaxon:452863","l":"Pseudarthrobacter chlorophenolicus A6","na":1,"nb":2,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A85085","Pseudarthrobacter chlorophenolicus"],["NCBITaxon%3A452863","Pseudarthrobacter chlorophenolicus A6"]]},{"id":"NCBITaxon:453","l":"Legionella feeleii","na":1,"nb":2,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A453","Legionella feeleii"],["NCBITaxon%3A66975","Legionella feeleii serogroup 2"]]},{"id":"NCBITaxon:455488","l":"Anaeromyxobacter dehalogenans 2CP-1","na":1,"nb":2,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A161493","Anaeromyxobacter dehalogenans"],["NCBITaxon%3A455488","Anaeromyxobacter dehalogenans 2CP-1"]]},{"id":"NCBITaxon:455632","l":"Streptomyces griseus subsp. griseus NBRC 13350","na":1,"nb":2,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A1896","Streptomyces bikiniensis"],["NCBITaxon%3A455632","Streptomyces griseus subsp. griseus NBRC 13350"]]},{"id":"NCBITaxon:456299","l":"Chryseobacterium gregarium","na":1,"nb":2,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A456299","Chryseobacterium gregarium"],["NCBITaxon%3A1121287","Chryseobacterium gregarium DSM 19109"]]},{"id":"NCBITaxon:457412","l":"Ruminococcus sp. 5_1_39BFAA","na":2,"nb":1,"a":[["animal-litter-envo-00002191.html","animal litter"],["tropical-envo-01000204.html","tropical"]],"b":[["NCBITaxon%3A457412","Ruminococcus sp. 5_1_39BFAA"]]},{"id":"NCBITaxon:457416","l":"Veillonella sp. 3_1_44","na":2,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"],["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"]],"b":[["NCBITaxon%3A457416","Veillonella sp. 3_1_44"]]},{"id":"NCBITaxon:457424","l":"Bacteroides fragilis 3_1_12","na":2,"nb":1,"a":[["bay-envo-00000032.html","bay"],["saline-water-envo-00002010.html","saline water"]],"b":[["NCBITaxon%3A457424","Bacteroides fragilis 3_1_12"]]},{"id":"NCBITaxon:457431","l":"Streptomyces filamentosus NRRL 15998","na":2,"nb":1,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A457431","Streptomyces filamentosus NRRL 15998"]]},{"id":"NCBITaxon:457570","l":"Natranaerobius thermophilus JW/NM-WN-LF","na":1,"nb":2,"a":[["wadi-envo-00000031.html","wadi"]],"b":[["NCBITaxon%3A375929","Natranaerobius thermophilus"],["NCBITaxon%3A457570","Natranaerobius thermophilus JW/NM-WN-LF"]]},{"id":"NCBITaxon:459529","l":"Sphingobacterium siyangense","na":1,"nb":2,"a":[["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["NCBITaxon%3A459529","Sphingobacterium siyangense"],["NCBITaxon%3A634159","Sphingobacterium siyangense subsp. cladoniae"]]},{"id":"NCBITaxon:460265","l":"Methylobacterium nodulans ORS 2060","na":1,"nb":2,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["NCBITaxon%3A114616","Methylobacterium nodulans"],["NCBITaxon%3A460265","Methylobacterium nodulans ORS 2060"]]},{"id":"NCBITaxon:463191","l":"Streptomyces sviceus ATCC 29083","na":1,"nb":2,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A463191","Streptomyces sviceus ATCC 29083"]]},{"id":"NCBITaxon:465817","l":"Erwinia tasmaniensis Et1/99","na":1,"nb":2,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A338565","Erwinia tasmaniensis"],["NCBITaxon%3A465817","Erwinia tasmaniensis Et1/99"]]},{"id":"NCBITaxon:46609","l":"Clostridium pascui","na":2,"nb":1,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A46609","Clostridium pascui"]]},{"id":"NCBITaxon:466153","l":"Singulisphaera acidiphila","na":1,"nb":2,"a":[["marsh-envo-00000035.html","marsh"]],"b":[["NCBITaxon%3A466153","Singulisphaera acidiphila"],["NCBITaxon%3A886293","Singulisphaera acidiphila DSM 18658"]]},{"id":"NCBITaxon:467705","l":"Streptococcus gordonii str. Challis substr. CH1","na":2,"nb":1,"a":[["dental-plaque-bto-0000338.html","dental plaque"],["tooth-bto-0000397.html","tooth"]],"b":[["NCBITaxon%3A467705","Streptococcus gordonii str. Challis substr. CH1"]]},{"id":"NCBITaxon:468911","l":"Liquorilactobacillus hordei","na":1,"nb":2,"a":[["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A468911","Liquorilactobacillus hordei"],["NCBITaxon%3A1423759","Liquorilactobacillus hordei DSM 19519"]]},{"id":"NCBITaxon:469381","l":"Dethiosulfovibrio peptidovorans DSM 11002","na":1,"nb":2,"a":[["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A47055","Dethiosulfovibrio peptidovorans"],["NCBITaxon%3A469381","Dethiosulfovibrio peptidovorans DSM 11002"]]},{"id":"NCBITaxon:469547","l":"Aquamicrobium segne","na":1,"nb":2,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"]],"b":[["NCBITaxon%3A469547","Aquamicrobium segne"],["NCBITaxon%3A66876","Streptomyces chattanoogensis"]]},{"id":"NCBITaxon:470864","l":"Gracilibacillus halophilus","na":1,"nb":2,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A470864","Gracilibacillus halophilus"],["NCBITaxon%3A1308866","Gracilibacillus halophilus YIM-C55.5"]]},{"id":"NCBITaxon:470866","l":"Salinimicrobium terrae","na":1,"nb":2,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A470866","Salinimicrobium terrae"],["NCBITaxon%3A1123234","Salinimicrobium terrae DSM 17865"]]},{"id":"NCBITaxon:471855","l":"Slackia heliotrinireducens DSM 20476","na":1,"nb":2,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["NCBITaxon%3A84110","Slackia heliotrinireducens"],["NCBITaxon%3A471855","Slackia heliotrinireducens DSM 20476"]]},{"id":"NCBITaxon:471875","l":"[Ruminococcus] lactaris ATCC 29176","na":1,"nb":2,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A46228","[Ruminococcus] lactaris"],["NCBITaxon%3A471875","[Ruminococcus] lactaris ATCC 29176"]]},{"id":"NCBITaxon:474950","l":"Granulicella pectinivorans","na":2,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A474950","Granulicella pectinivorans"]]},{"id":"NCBITaxon:474952","l":"Granulicella rosea","na":2,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A474952","Granulicella rosea"]]},{"id":"NCBITaxon:475253","l":"Pedobacter alluvionis","na":2,"nb":1,"a":[["watercourse-envo-00000029.html","watercourse"],["flood-plain-envo-00000255.html","flood plain"]],"b":[["NCBITaxon%3A475253","Pedobacter alluvionis"]]},{"id":"NCBITaxon:477666","l":"Bacteroides graminisolvens","na":1,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A477666","Bacteroides graminisolvens"],["NCBITaxon%3A1121097","Bacteroides graminisolvens DSM 19988 = JCM 15093"]]},{"id":"NCBITaxon:478","l":"Moraxella nonliquefaciens","na":1,"nb":2,"a":[["disease-habitatmech-bacdive-c659c7e939.html","Disease"]],"b":[["NCBITaxon%3A478","Moraxella nonliquefaciens"],["NCBITaxon%3A1441929","Moraxella nonliquefaciens DSM 6327"]]},{"id":"NCBITaxon:479430","l":"Actinospica robiniae DSM 44927","na":1,"nb":2,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A304901","Actinospica robiniae"],["NCBITaxon%3A479430","Actinospica robiniae DSM 44927"]]},{"id":"NCBITaxon:47958","l":"Methylorubrum thiocyanatum","na":1,"nb":2,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A47958","Methylorubrum thiocyanatum"],["NCBITaxon%3A1236972","Methylorubrum thiocyanatum JCM 10893"]]},{"id":"NCBITaxon:480418","l":"Mycobacterium lepromatosis","na":2,"nb":1,"a":[["peripheral-nervous-system-bto-0001028.html","peripheral nervous system"],["schwann-cell-bto-0001220.html","Schwann cell"]],"b":[["NCBITaxon%3A480418","Mycobacterium lepromatosis"]]},{"id":"NCBITaxon:481138","l":"Bartonella queenslandensis","na":1,"nb":2,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["NCBITaxon%3A481138","Bartonella queenslandensis"],["NCBITaxon%3A1221525","Bartonella queenslandensis AUST/NH15"]]},{"id":"NCBITaxon:481139","l":"Bartonella rattaustraliani","na":1,"nb":2,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["NCBITaxon%3A481139","Bartonella rattaustraliani"],["NCBITaxon%3A1205681","Bartonella rattaustraliani AUST/NH4"]]},{"id":"NCBITaxon:484019","l":"Thermosipho africanus TCF52B","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A2421","Thermosipho africanus"],["NCBITaxon%3A484019","Thermosipho africanus TCF52B"]]},{"id":"NCBITaxon:485371","l":"Bacillus sp. FSL_h8473","na":2,"nb":1,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A485371","Bacillus sp. FSL_h8473"]]},{"id":"NCBITaxon:485913","l":"Ktedonobacter racemifer DSM 44963","na":1,"nb":2,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"]],"b":[["NCBITaxon%3A363277","Ktedonobacter racemifer"],["NCBITaxon%3A485913","Ktedonobacter racemifer DSM 44963"]]},{"id":"NCBITaxon:485916","l":"Desulfofarcimen acetoxidans DSM 771","na":1,"nb":2,"a":[["animal-waste-material-envo-00002276.html","animal waste material"]],"b":[["NCBITaxon%3A58138","Desulfofarcimen acetoxidans"],["NCBITaxon%3A485916","Desulfofarcimen acetoxidans DSM 771"]]},{"id":"NCBITaxon:487796","l":"Flavobacteria bacterium MS024-2A","na":2,"nb":1,"a":[["marine-neritic-zone-envo-00000206.html","marine neritic zone"],["coastal-plain-envo-00000090.html","coastal plain"]],"b":[["NCBITaxon%3A487796","Flavobacteria bacterium MS024-2A"]]},{"id":"NCBITaxon:487797","l":"Flavobacteria bacterium MS024-3C","na":2,"nb":1,"a":[["marine-neritic-zone-envo-00000206.html","marine neritic zone"],["coastal-plain-envo-00000090.html","coastal plain"]],"b":[["NCBITaxon%3A487797","Flavobacteria bacterium MS024-3C"]]},{"id":"NCBITaxon:48935","l":"Novosphingobium aromaticivorans","na":1,"nb":2,"a":[["savanna-envo-00000261.html","savanna"]],"b":[["NCBITaxon%3A48935","Novosphingobium aromaticivorans"],["NCBITaxon%3A279238","Novosphingobium aromaticivorans DSM 12444"]]},{"id":"NCBITaxon:490899","l":"Desulfurococcus amylolyticus 1221n","na":1,"nb":2,"a":[["shoreline-envo-00000486.html","shoreline"]],"b":[["NCBITaxon%3A94694","Desulfurococcus amylolyticus"],["NCBITaxon%3A490899","Desulfurococcus amylolyticus 1221n"]]},{"id":"NCBITaxon:491069","l":"Mesorhizobium sp. F28","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A491069","Mesorhizobium sp. F28"]]},{"id":"NCBITaxon:491952","l":"Marinomonas posidonica IVIA-Po-181","na":1,"nb":2,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["NCBITaxon%3A936476","Marinomonas posidonica"],["NCBITaxon%3A491952","Marinomonas posidonica IVIA-Po-181"]]},{"id":"NCBITaxon:49319","l":"Rubrobacter xylanophilus","na":1,"nb":2,"a":[["village-biome-envo-01000246.html","village biome"]],"b":[["NCBITaxon%3A49319","Rubrobacter xylanophilus"],["NCBITaxon%3A266117","Rubrobacter xylanophilus DSM 9941"]]},{"id":"NCBITaxon:497689","l":"Streptomyces sp. SNA15896","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A497689","Streptomyces sp. SNA15896"]]},{"id":"NCBITaxon:497965","l":"Gloeothece verrucosa PCC 7822","na":2,"nb":1,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["NCBITaxon%3A497965","Gloeothece verrucosa PCC 7822"]]},{"id":"NCBITaxon:498211","l":"Cellvibrio japonicus Ueda107","na":1,"nb":2,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A155077","Cellvibrio japonicus"],["NCBITaxon%3A498211","Cellvibrio japonicus Ueda107"]]},{"id":"NCBITaxon:499171","l":"Helicobacter pylori HPKX_438_AG0C1","na":2,"nb":1,"a":[["gastric-epithelium-bto-0000500.html","gastric epithelium"],["gastric-epithelium-cell-line-bto-0004493.html","gastric epithelium cell line"]],"b":[["NCBITaxon%3A499171","Helicobacter pylori HPKX_438_AG0C1"]]},{"id":"NCBITaxon:499172","l":"Helicobacter pylori HPKX_438_CA4C1","na":2,"nb":1,"a":[["gastric-epithelium-bto-0000500.html","gastric epithelium"],["gastric-epithelium-cell-line-bto-0004493.html","gastric epithelium cell line"]],"b":[["NCBITaxon%3A499172","Helicobacter pylori HPKX_438_CA4C1"]]},{"id":"NCBITaxon:500","l":"Thermomicrobium roseum","na":1,"nb":2,"a":[["village-biome-envo-01000246.html","village biome"]],"b":[["NCBITaxon%3A500","Thermomicrobium roseum"],["NCBITaxon%3A309801","Thermomicrobium roseum DSM 5159"]]},{"id":"NCBITaxon:500485","l":"Penicillium rubens Wisconsin 54-1255","na":2,"nb":1,"a":[["finger-bto-0004669.html","finger"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A500485","Penicillium rubens Wisconsin 54-1255"]]},{"id":"NCBITaxon:500632","l":"[Clostridium] nexile DSM 1787","na":1,"nb":2,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["NCBITaxon%3A500632","[Clostridium] nexile DSM 1787"],["NCBITaxon%3A29361","Faecalimonas nexilis"]]},{"id":"NCBITaxon:501023","l":"Glaciibacter superstes","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A501023","Glaciibacter superstes"],["NCBITaxon%3A1121924","Glaciibacter superstes DSM 21135"]]},{"id":"NCBITaxon:50339","l":"Thermoplasma volcanium","na":1,"nb":2,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A50339","Thermoplasma volcanium"],["NCBITaxon%3A273116","Thermoplasma volcanium GSS1"]]},{"id":"NCBITaxon:504474","l":"Corynebacterium urealyticum DSM 7109","na":1,"nb":2,"a":[["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["NCBITaxon%3A43771","Corynebacterium urealyticum"],["NCBITaxon%3A504474","Corynebacterium urealyticum DSM 7109"]]},{"id":"NCBITaxon:508451","l":"Lactobacillus taiwanensis","na":1,"nb":2,"a":[["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["NCBITaxon%3A508451","Lactobacillus taiwanensis"],["NCBITaxon%3A1423809","Lactobacillus taiwanensis DSM 21401"]]},{"id":"NCBITaxon:509190","l":"Caulobacter segnis ATCC 21756","na":1,"nb":2,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A88688","Caulobacter segnis"],["NCBITaxon%3A509190","Caulobacter segnis ATCC 21756"]]},{"id":"NCBITaxon:511680","l":"Eshraghiella crossota DSM 2876","na":1,"nb":2,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A45851","Eshraghiella crossota"],["NCBITaxon%3A511680","Eshraghiella crossota DSM 2876"]]},{"id":"NCBITaxon:51173","l":"Ureibacillus thermosphaericus","na":1,"nb":2,"a":[["landfill-envo-00000533.html","landfill"]],"b":[["NCBITaxon%3A51173","Ureibacillus thermosphaericus"],["NCBITaxon%3A1160707","Ureibacillus thermosphaericus str. Thermo-BF"]]},{"id":"NCBITaxon:515619","l":"Agathobacter rectalis ATCC 33656","na":1,"nb":2,"a":[["gut-epithelium-bto-0000956.html","gut epithelium"]],"b":[["NCBITaxon%3A39491","Agathobacter rectalis"],["NCBITaxon%3A515619","Agathobacter rectalis ATCC 33656"]]},{"id":"NCBITaxon:515620","l":"Lachnospira eligens ATCC 27750","na":1,"nb":2,"a":[["gut-epithelium-bto-0000956.html","gut epithelium"]],"b":[["NCBITaxon%3A39485","Lachnospira eligens"],["NCBITaxon%3A515620","Lachnospira eligens ATCC 27750"]]},{"id":"NCBITaxon:517417","l":"Chlorobaculum parvum NCIB 8327","na":1,"nb":2,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A274539","Chlorobaculum parvum"],["NCBITaxon%3A517417","Chlorobaculum parvum NCIB 8327"]]},{"id":"NCBITaxon:518766","l":"Rhodothermus marinus DSM 4252","na":1,"nb":2,"a":[["marine-oligotrophic-desert-envo-01000073.html","marine oligotrophic desert"]],"b":[["NCBITaxon%3A29549","Rhodothermus marinus"],["NCBITaxon%3A518766","Rhodothermus marinus DSM 4252"]]},{"id":"NCBITaxon:519442","l":"Halorhabdus utahensis DSM 12940","na":1,"nb":2,"a":[["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A146826","Halorhabdus utahensis"],["NCBITaxon%3A519442","Halorhabdus utahensis DSM 12940"]]},{"id":"NCBITaxon:520461","l":"Brucella pinnipedialis B2/94","na":1,"nb":2,"a":[["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["NCBITaxon%3A120576","Brucella pinnipedialis"],["NCBITaxon%3A520461","Brucella pinnipedialis B2/94"]]},{"id":"NCBITaxon:520463","l":"Brucella pinnipedialis M163/99/10","na":2,"nb":1,"a":[["lagoon-envo-00000038.html","lagoon"],["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A520463","Brucella pinnipedialis M163/99/10"]]},{"id":"NCBITaxon:520488","l":"Brucella suis bv. 4 str. 40","na":2,"nb":1,"a":[["sea-envo-00000016.html","sea"],["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A520488","Brucella suis bv. 4 str. 40"]]},{"id":"NCBITaxon:521011","l":"Methanosphaerula palustris E1-9c","na":1,"nb":2,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A475088","Methanosphaerula palustris"],["NCBITaxon%3A521011","Methanosphaerula palustris E1-9c"]]},{"id":"NCBITaxon:521095","l":"Lancefieldella parvula DSM 20469","na":1,"nb":2,"a":[["lagoon-envo-00000038.html","lagoon"]],"b":[["NCBITaxon%3A1382","Lancefieldella parvula"],["NCBITaxon%3A521095","Lancefieldella parvula DSM 20469"]]},{"id":"NCBITaxon:522772","l":"Denitrovibrio acetiphilus DSM 12809","na":1,"nb":2,"a":[["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A118000","Denitrovibrio acetiphilus"],["NCBITaxon%3A522772","Denitrovibrio acetiphilus DSM 12809"]]},{"id":"NCBITaxon:523845","l":"Methanothermococcus thermolithotrophicus DSM 2095","na":1,"nb":2,"a":[["beach-envo-00000091.html","beach"]],"b":[["NCBITaxon%3A2186","Methanothermococcus thermolithotrophicus"],["NCBITaxon%3A523845","Methanothermococcus thermolithotrophicus DSM 2095"]]},{"id":"NCBITaxon:523850","l":"Thermococcus onnurineus NA1","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A342948","Thermococcus onnurineus"],["NCBITaxon%3A523850","Thermococcus onnurineus NA1"]]},{"id":"NCBITaxon:525245","l":"Gleimia coleocanis DSM 15436","na":1,"nb":2,"a":[["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A103618","Gleimia coleocanis"],["NCBITaxon%3A525245","Gleimia coleocanis DSM 15436"]]},{"id":"NCBITaxon:525246","l":"Actinomyces urogenitalis DSM 15434","na":1,"nb":2,"a":[["vaginal-fluid-uberon-0036243.html","vaginal fluid"]],"b":[["NCBITaxon%3A103621","Actinomyces urogenitalis"],["NCBITaxon%3A525246","Actinomyces urogenitalis DSM 15434"]]},{"id":"NCBITaxon:525254","l":"Anaerococcus lactolyticus ATCC 51172","na":1,"nb":2,"a":[["vaginal-fluid-uberon-0036243.html","vaginal fluid"]],"b":[["NCBITaxon%3A33032","Anaerococcus lactolyticus"],["NCBITaxon%3A525254","Anaerococcus lactolyticus ATCC 51172"]]},{"id":"NCBITaxon:525264","l":"Corynebacterium pseudogenitalium ATCC 33035","na":1,"nb":2,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A525264","Corynebacterium pseudogenitalium ATCC 33035"],["NCBITaxon%3A38304","Corynebacterium tuberculostearicum"]]},{"id":"NCBITaxon:525367","l":"Listeria grayi DSM 20601","na":1,"nb":2,"a":[["city-envo-00000856.html","city"]],"b":[["NCBITaxon%3A1641","Listeria grayi"],["NCBITaxon%3A525367","Listeria grayi DSM 20601"]]},{"id":"NCBITaxon:525370","l":"Prescottella equi ATCC 33707","na":1,"nb":2,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A43767","Prescottella equi"],["NCBITaxon%3A525370","Prescottella equi ATCC 33707"]]},{"id":"NCBITaxon:525372","l":"Sphingobacterium spiritivorum ATCC 33300","na":1,"nb":2,"a":[["vaginal-fluid-uberon-0036243.html","vaginal fluid"]],"b":[["NCBITaxon%3A258","Sphingobacterium spiritivorum"],["NCBITaxon%3A525372","Sphingobacterium spiritivorum ATCC 33300"]]},{"id":"NCBITaxon:52560","l":"Desulfomicrobium apsheronum","na":2,"nb":1,"a":[["black-smoker-envo-00000218.html","black smoker"],["volcanic-rock-envo-00002015.html","volcanic rock"]],"b":[["NCBITaxon%3A52560","Desulfomicrobium apsheronum"]]},{"id":"NCBITaxon:525898","l":"Sulfurospirillum deleyianum DSM 6946","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A65553","Sulfurospirillum deleyianum"],["NCBITaxon%3A525898","Sulfurospirillum deleyianum DSM 6946"]]},{"id":"NCBITaxon:52598","l":"Sulfitobacter sp. EE-36","na":1,"nb":2,"a":[["pulp-bto-0001142.html","pulp"]],"b":[["NCBITaxon%3A1903071","Sulfitobacter sp."],["NCBITaxon%3A52598","Sulfitobacter sp. EE-36"]]},{"id":"NCBITaxon:526221","l":"Verticillium alfalfae VaMs.102","na":2,"nb":1,"a":[["vascular-system-bto-0001085.html","vascular system"],["xylem-bto-0001468.html","xylem"]],"b":[["NCBITaxon%3A526221","Verticillium alfalfae VaMs.102"]]},{"id":"NCBITaxon:52690","l":"Acetobacterium carbinolicum","na":1,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A52690","Acetobacterium carbinolicum"],["NCBITaxon%3A346376","Acetobacterium carbinolicum subsp. kysingense"]]},{"id":"NCBITaxon:52774","l":"Actinomyces slackii","na":1,"nb":2,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["NCBITaxon%3A52774","Actinomyces slackii"],["NCBITaxon%3A1278298","Actinomyces slackii ATCC 49928"]]},{"id":"NCBITaxon:529086","l":"Chitinilyticum litopenaei DSM 21440","na":1,"nb":2,"a":[["pond-envo-00000033.html","pond"]],"b":[["NCBITaxon%3A1121276","Chitinilyticum litopenaei"],["NCBITaxon%3A529086","Chitinilyticum litopenaei DSM 21440"]]},{"id":"NCBITaxon:529507","l":"Proteus mirabilis HI4320","na":2,"nb":1,"a":[["needle-bto-0000917.html","needle"],["spinal-cord-bto-0001279.html","spinal cord"]],"b":[["NCBITaxon%3A529507","Proteus mirabilis HI4320"]]},{"id":"NCBITaxon:53254","l":"Allobosea thiooxidans","na":1,"nb":2,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A132928","Allobosea aff. thiooxidans 1.10"],["NCBITaxon%3A53254","Allobosea thiooxidans"]]},{"id":"NCBITaxon:53344","l":"Staphylococcus delphini","na":1,"nb":2,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"]],"b":[["NCBITaxon%3A53344","Staphylococcus delphini"],["NCBITaxon%3A1141105","Staphylococcus delphini 8086"]]},{"id":"NCBITaxon:53445","l":"Streptomyces canescens","na":1,"nb":2,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A53445","Streptomyces canescens"]]},{"id":"NCBITaxon:53463","l":"Paracoccus solventivorans","na":2,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"],["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A53463","Paracoccus solventivorans"]]},{"id":"NCBITaxon:535025","l":"Bacillus subtilis subsp. subtilis str. JH642","na":1,"nb":2,"a":[["archeological-site-envo-00000564.html","archeological site"]],"b":[["NCBITaxon%3A535025","Bacillus subtilis subsp. subtilis str. JH642"],["NCBITaxon%3A1232554","Bacillus subtilis subsp. subtilis str. JH642 substr. AG174"]]},{"id":"NCBITaxon:535289","l":"[Acidovorax] ebreus TPSY","na":2,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"],["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A535289","[Acidovorax] ebreus TPSY"]]},{"id":"NCBITaxon:536019","l":"Mesorhizobium opportunistum WSM2075","na":1,"nb":2,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["NCBITaxon%3A593909","Mesorhizobium opportunistum"],["NCBITaxon%3A536019","Mesorhizobium opportunistum WSM2075"]]},{"id":"NCBITaxon:536231","l":"Roseburia intestinalis L1-82","na":1,"nb":2,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["NCBITaxon%3A166486","Roseburia intestinalis"],["NCBITaxon%3A536231","Roseburia intestinalis L1-82"]]},{"id":"NCBITaxon:537013","l":"[Clostridium] methylpentosum DSM 5476","na":1,"nb":2,"a":[["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["NCBITaxon%3A84026","[Clostridium] methylpentosum"],["NCBITaxon%3A537013","[Clostridium] methylpentosum DSM 5476"]]},{"id":"NCBITaxon:537210","l":"Mycobacterium tuberculosis T17","na":2,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A537210","Mycobacterium tuberculosis T17"]]},{"id":"NCBITaxon:54063","l":"Actinopolyspora sp.","na":2,"nb":1,"a":[["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["NCBITaxon%3A54063","Actinopolyspora sp."]]},{"id":"NCBITaxon:54121","l":"Halanaerobium congolense","na":2,"nb":1,"a":[["brine-pool-envo-00000369.html","brine pool"],["alkaline-environment-envo-01000316.html","alkaline environment"]],"b":[["NCBITaxon%3A54121","Halanaerobium congolense"]]},{"id":"NCBITaxon:543728","l":"Variovorax paradoxus S110","na":2,"nb":1,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"]],"b":[["NCBITaxon%3A543728","Variovorax paradoxus S110"]]},{"id":"NCBITaxon:545534","l":"Carnobacterium jeotgali","na":1,"nb":2,"a":[["food-product-foodon-00001002.html","food product"]],"b":[["NCBITaxon%3A545534","Carnobacterium jeotgali"],["NCBITaxon%3A1449340","Carnobacterium jeotgali MS3"]]},{"id":"NCBITaxon:545696","l":"Holdemania filiformis DSM 12042","na":1,"nb":2,"a":[["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["NCBITaxon%3A61171","Holdemania filiformis"],["NCBITaxon%3A545696","Holdemania filiformis DSM 12042"]]},{"id":"NCBITaxon:547558","l":"Methanohalophilus mahii DSM 5219","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A2176","Methanohalophilus mahii"],["NCBITaxon%3A547558","Methanohalophilus mahii DSM 5219"]]},{"id":"NCBITaxon:548476","l":"Corynebacterium aurimucosum ATCC 700975","na":1,"nb":2,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A169292","Corynebacterium aurimucosum"],["NCBITaxon%3A548476","Corynebacterium aurimucosum ATCC 700975"]]},{"id":"NCBITaxon:548477","l":"Corynebacterium glucuronolyticum ATCC 51867","na":2,"nb":1,"a":[["semen-bto-0001230.html","semen"],["urethra-bto-0001426.html","urethra"]],"b":[["NCBITaxon%3A548477","Corynebacterium glucuronolyticum ATCC 51867"]]},{"id":"NCBITaxon:548579","l":"Isoptericola jiangsuensis","na":2,"nb":1,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A548579","Isoptericola jiangsuensis"]]},{"id":"NCBITaxon:550984","l":"Halomonas sp. HAL1","na":2,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"],["oceanic-sea-surface-microlayer-biome-envo-01000034.html","oceanic sea surface microlayer biome"]],"b":[["NCBITaxon%3A550984","Halomonas sp. HAL1"]]},{"id":"NCBITaxon:551275","l":"Hirschia maritima DSM 19733","na":1,"nb":2,"a":[["beach-envo-00000091.html","beach"]],"b":[["NCBITaxon%3A1121961","Hirschia maritima"],["NCBITaxon%3A551275","Hirschia maritima DSM 19733"]]},{"id":"NCBITaxon:551760","l":"Aromatoleum aromaticum","na":1,"nb":2,"a":[["watercourse-envo-00000029.html","watercourse"]],"b":[["NCBITaxon%3A551760","Aromatoleum aromaticum"],["NCBITaxon%3A76114","Aromatoleum aromaticum EbN1"]]},{"id":"NCBITaxon:551789","l":"Ponticaulis koreensis DSM 19734","na":1,"nb":2,"a":[["beach-envo-00000091.html","beach"]],"b":[["NCBITaxon%3A1123045","Ponticaulis koreensis"],["NCBITaxon%3A551789","Ponticaulis koreensis DSM 19734"]]},{"id":"NCBITaxon:55209","l":"Pantoea cypripedii","na":2,"nb":1,"a":[["leaf-po-0025034.html","leaf"],["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A55209","Pantoea cypripedii"]]},{"id":"NCBITaxon:553174","l":"Prevotella melaninogenica ATCC 25845","na":1,"nb":2,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A28132","Prevotella melaninogenica"],["NCBITaxon%3A553174","Prevotella melaninogenica ATCC 25845"]]},{"id":"NCBITaxon:553184","l":"Lancefieldella rimae ATCC 49626","na":1,"nb":2,"a":[["gingiva-bto-0000519.html","gingiva"]],"b":[["NCBITaxon%3A1383","Lancefieldella rimae"],["NCBITaxon%3A553184","Lancefieldella rimae ATCC 49626"]]},{"id":"NCBITaxon:555079","l":"Thermosediminibacter oceani DSM 16646","na":1,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A291990","Thermosediminibacter oceani"],["NCBITaxon%3A555079","Thermosediminibacter oceani DSM 16646"]]},{"id":"NCBITaxon:555512","l":"Salipiger marinus","na":1,"nb":2,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["NCBITaxon%3A537017","Kaistia terrae"],["NCBITaxon%3A555512","Salipiger marinus"]]},{"id":"NCBITaxon:555778","l":"Halothiobacillus neapolitanus c2","na":1,"nb":2,"a":[["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["NCBITaxon%3A927","Halothiobacillus neapolitanus"],["NCBITaxon%3A555778","Halothiobacillus neapolitanus c2"]]},{"id":"NCBITaxon:556484","l":"Phaeodactylum tricornutum CCAP 1055/1","na":2,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"],["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["NCBITaxon%3A556484","Phaeodactylum tricornutum CCAP 1055/1"]]},{"id":"NCBITaxon:557599","l":"Mycobacterium kansasii ATCC 12478","na":1,"nb":2,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A1768","Mycobacterium kansasii"],["NCBITaxon%3A557599","Mycobacterium kansasii ATCC 12478"]]},{"id":"NCBITaxon:558173","l":"Corynebacterium doosanense CAU 212 = DSM 45436","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A1121358","Corynebacterium doosanense"],["NCBITaxon%3A558173","Corynebacterium doosanense CAU 212 = DSM 45436"]]},{"id":"NCBITaxon:562970","l":"Kyrpidia tusciae DSM 2912","na":1,"nb":2,"a":[["pond-envo-00000033.html","pond"]],"b":[["NCBITaxon%3A33943","Kyrpidia tusciae"],["NCBITaxon%3A562970","Kyrpidia tusciae DSM 2912"]]},{"id":"NCBITaxon:563043","l":"Thermococcus sp. AMT11","na":2,"nb":1,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A563043","Thermococcus sp. AMT11"]]},{"id":"NCBITaxon:564423","l":"Pseudomonas tolaasii NCPPB 2192","na":1,"nb":2,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A29442","Pseudomonas tolaasii"],["NCBITaxon%3A564423","Pseudomonas tolaasii NCPPB 2192"]]},{"id":"NCBITaxon:56636","l":"Aeropyrum pernix","na":1,"nb":2,"a":[["fumarole-envo-00000216.html","fumarole"]],"b":[["NCBITaxon%3A56636","Aeropyrum pernix"],["NCBITaxon%3A272557","Aeropyrum pernix K1"]]},{"id":"NCBITaxon:566549","l":"Corynebacterium matruchotii ATCC 33806","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A43768","Corynebacterium matruchotii"],["NCBITaxon%3A566549","Corynebacterium matruchotii ATCC 33806"]]},{"id":"NCBITaxon:56698","l":"Sulfurospirillum arsenophilum","na":1,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A56698","Sulfurospirillum arsenophilum"],["NCBITaxon%3A1349789","Sulfurospirillum arsenophilum NBRC 109478"]]},{"id":"NCBITaxon:568106","l":"Marinobacterium lutimaris","na":1,"nb":2,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["NCBITaxon%3A568106","Marinobacterium lutimaris"],["NCBITaxon%3A657014","Thalassovita taeanensis"]]},{"id":"NCBITaxon:56811","l":"Psychrobacter sp.","na":2,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"],["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["NCBITaxon%3A56811","Psychrobacter sp."]]},{"id":"NCBITaxon:569859","l":"Desulfosporosinus hippei","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A569859","Desulfosporosinus hippei"],["NCBITaxon%3A1121419","Desulfosporosinus hippei DSM 8344"]]},{"id":"NCBITaxon:570268","l":"Nocardiopsis potens DSM 45234","na":1,"nb":2,"a":[["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"]],"b":[["NCBITaxon%3A1246458","Nocardiopsis potens"],["NCBITaxon%3A570268","Nocardiopsis potens DSM 45234"]]},{"id":"NCBITaxon:57043","l":"Microbacterium esteraromaticum","na":2,"nb":1,"a":[["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"]],"b":[["NCBITaxon%3A57043","Microbacterium esteraromaticum"]]},{"id":"NCBITaxon:572477","l":"Allochromatium vinosum DSM 180","na":1,"nb":2,"a":[["ditch-water-envo-00002158.html","ditch water"]],"b":[["NCBITaxon%3A1049","Allochromatium vinosum"],["NCBITaxon%3A572477","Allochromatium vinosum DSM 180"]]},{"id":"NCBITaxon:572547","l":"Aminobacterium colombiense DSM 12261","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A81468","Aminobacterium colombiense"],["NCBITaxon%3A572547","Aminobacterium colombiense DSM 12261"]]},{"id":"NCBITaxon:573063","l":"Methanocaldococcus infernus ME","na":1,"nb":2,"a":[["shoreline-envo-00000486.html","shoreline"]],"b":[["NCBITaxon%3A67760","Methanocaldococcus infernus"],["NCBITaxon%3A573063","Methanocaldococcus infernus ME"]]},{"id":"NCBITaxon:573065","l":"Asticcacaulis excentricus CB 48","na":1,"nb":2,"a":[["pond-envo-00000033.html","pond"]],"b":[["NCBITaxon%3A78587","Asticcacaulis excentricus"],["NCBITaxon%3A573065","Asticcacaulis excentricus CB 48"]]},{"id":"NCBITaxon:573413","l":"Sediminispirochaeta smaragdinae DSM 11293","na":1,"nb":2,"a":[["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A55206","Sediminispirochaeta smaragdinae"],["NCBITaxon%3A573413","Sediminispirochaeta smaragdinae DSM 11293"]]},{"id":"NCBITaxon:573983","l":"Moraxella porci DSM 25326","na":1,"nb":2,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["NCBITaxon%3A1288392","Moraxella porci"],["NCBITaxon%3A573983","Moraxella porci DSM 25326"]]},{"id":"NCBITaxon:575564","l":"Acinetobacter sp. RUH 2624","na":1,"nb":2,"a":[["thigh-bto-0001376.html","thigh"]],"b":[["NCBITaxon%3A106654","Acinetobacter nosocomialis"],["NCBITaxon%3A575564","Acinetobacter sp. RUH 2624"]]},{"id":"NCBITaxon:575585","l":"Acinetobacter calcoaceticus RUH2202","na":1,"nb":2,"a":[["thigh-bto-0001376.html","thigh"]],"b":[["NCBITaxon%3A471","Acinetobacter calcoaceticus"],["NCBITaxon%3A575585","Acinetobacter calcoaceticus RUH2202"]]},{"id":"NCBITaxon:575586","l":"Acinetobacter johnsonii SH046","na":1,"nb":2,"a":[["thigh-bto-0001376.html","thigh"]],"b":[["NCBITaxon%3A40214","Acinetobacter johnsonii"],["NCBITaxon%3A575586","Acinetobacter johnsonii SH046"]]},{"id":"NCBITaxon:575587","l":"Acinetobacter junii SH205","na":1,"nb":2,"a":[["thigh-bto-0001376.html","thigh"]],"b":[["NCBITaxon%3A40215","Acinetobacter junii"],["NCBITaxon%3A575587","Acinetobacter junii SH205"]]},{"id":"NCBITaxon:575588","l":"Acinetobacter lwoffii SH145","na":1,"nb":2,"a":[["thigh-bto-0001376.html","thigh"]],"b":[["NCBITaxon%3A28090","Acinetobacter lwoffii"],["NCBITaxon%3A575588","Acinetobacter lwoffii SH145"]]},{"id":"NCBITaxon:575589","l":"Acinetobacter radioresistens SH164","na":1,"nb":2,"a":[["thigh-bto-0001376.html","thigh"]],"b":[["NCBITaxon%3A40216","Acinetobacter radioresistens"],["NCBITaxon%3A575589","Acinetobacter radioresistens SH164"]]},{"id":"NCBITaxon:579922","l":"Indibacter alkaliphilus","na":1,"nb":2,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A579922","Indibacter alkaliphilus"],["NCBITaxon%3A1189612","Indibacter alkaliphilus LW1"]]},{"id":"NCBITaxon:582855","l":"Streptomyces haliclonae","na":1,"nb":2,"a":[["shoreline-envo-00000486.html","shoreline"]],"b":[["NCBITaxon%3A582855","Streptomyces haliclonae"],["NCBITaxon%3A582854","Streptomyces marinus"]]},{"id":"NCBITaxon:58314","l":"Rhodovulum strictum","na":2,"nb":1,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"],["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A58314","Rhodovulum strictum"]]},{"id":"NCBITaxon:583345","l":"Methylotenera mobilis JLW8","na":1,"nb":2,"a":[["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A359408","Methylotenera mobilis"],["NCBITaxon%3A583345","Methylotenera mobilis JLW8"]]},{"id":"NCBITaxon:584708","l":"Aminomonas paucivorans DSM 12260","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A81412","Aminomonas paucivorans"],["NCBITaxon%3A584708","Aminomonas paucivorans DSM 12260"]]},{"id":"NCBITaxon:585054","l":"Escherichia fergusonii ATCC 35469","na":1,"nb":2,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A564","Escherichia fergusonii"],["NCBITaxon%3A585054","Escherichia fergusonii ATCC 35469"]]},{"id":"NCBITaxon:5851","l":"Plasmodium knowlesi strain H","na":2,"nb":1,"a":[["hematopoietic-cell-bto-0000574.html","hematopoietic cell"],["hypnozoite-bto-0003594.html","hypnozoite"]],"b":[["NCBITaxon%3A5851","Plasmodium knowlesi strain H"]]},{"id":"NCBITaxon:585501","l":"Oribacterium sinus F0268","na":2,"nb":1,"a":[["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"]],"b":[["NCBITaxon%3A585501","Oribacterium sinus F0268"]]},{"id":"NCBITaxon:585528","l":"Gardnerella vaginalis ATCC 14018 = JCM 11026","na":1,"nb":2,"a":[["vaginal-fluid-uberon-0036243.html","vaginal fluid"]],"b":[["NCBITaxon%3A2702","Gardnerella vaginalis"],["NCBITaxon%3A585528","Gardnerella vaginalis ATCC 14018 = JCM 11026"]]},{"id":"NCBITaxon:585531","l":"Aeromicrobium marinum DSM 15272","na":1,"nb":2,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A219314","Aeromicrobium marinum"],["NCBITaxon%3A585531","Aeromicrobium marinum DSM 15272"]]},{"id":"NCBITaxon:58621","l":"Desulfovibrio intestinalis","na":1,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A58621","Desulfovibrio intestinalis"],["NCBITaxon%3A1121454","Desulfovibrio intestinalis DSM 11275"]]},{"id":"NCBITaxon:588067","l":"Prauserella muralis","na":2,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"],["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A588067","Prauserella muralis"]]},{"id":"NCBITaxon:588857","l":"Thermoanaerobacter sp. X561","na":2,"nb":1,"a":[["ocean-trench-envo-00000275.html","ocean trench"],["trough-envo-00000499.html","trough"]],"b":[["NCBITaxon%3A588857","Thermoanaerobacter sp. X561"]]},{"id":"NCBITaxon:589924","l":"Ferroglobus placidus DSM 10642","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A54261","Ferroglobus placidus"],["NCBITaxon%3A589924","Ferroglobus placidus DSM 10642"]]},{"id":"NCBITaxon:592015","l":"Acetomicrobium hydrogeniformans ATCC BAA-1850","na":1,"nb":2,"a":[["village-biome-envo-01000246.html","village biome"]],"b":[["NCBITaxon%3A649746","Acetomicrobium hydrogeniformans"],["NCBITaxon%3A592015","Acetomicrobium hydrogeniformans ATCC BAA-1850"]]},{"id":"NCBITaxon:592031","l":"Eubacterium saphenum ATCC 49989","na":1,"nb":2,"a":[["archeological-site-envo-00000564.html","archeological site"]],"b":[["NCBITaxon%3A51123","[Eubacterium] saphenum"],["NCBITaxon%3A592031","Eubacterium saphenum ATCC 49989"]]},{"id":"NCBITaxon:592205","l":"Helicobacter pylori B38","na":2,"nb":1,"a":[["b-lymphocyte-bto-0000776.html","B-lymphocyte"],["duodenum-bto-0000365.html","duodenum"]],"b":[["NCBITaxon%3A592205","Helicobacter pylori B38"]]},{"id":"NCBITaxon:593117","l":"Thermococcus gammatolerans EJ3","na":1,"nb":2,"a":[["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A187878","Thermococcus gammatolerans"],["NCBITaxon%3A593117","Thermococcus gammatolerans EJ3"]]},{"id":"NCBITaxon:594679","l":"Allofrancisella guangzhouensis","na":2,"nb":1,"a":[["air-conditioning-unit-envo-00002874.html","air conditioning unit"],["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A594679","Allofrancisella guangzhouensis"]]},{"id":"NCBITaxon:595453","l":"Rhodopirellula sp. SM50","na":2,"nb":1,"a":[["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"]],"b":[["NCBITaxon%3A595453","Rhodopirellula sp. SM50"]]},{"id":"NCBITaxon:595497","l":"Brucella ceti str. Cudo","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A595497","Brucella ceti str. Cudo"]]},{"id":"NCBITaxon:596153","l":"Alicycliphilus denitrificans BC","na":1,"nb":2,"a":[["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A179636","Alicycliphilus denitrificans"],["NCBITaxon%3A596153","Alicycliphilus denitrificans BC"]]},{"id":"NCBITaxon:59843","l":"Paenibacillus glucanolyticus","na":1,"nb":2,"a":[["pulp-bto-0001142.html","pulp"]],"b":[["NCBITaxon%3A59843","Paenibacillus glucanolyticus"],["NCBITaxon%3A1349777","Paenibacillus glucanolyticus NBRC 15330"]]},{"id":"NCBITaxon:598660","l":"Corynebacterium pyruviciproducens","na":1,"nb":2,"a":[["bone-element-uberon-0001474.html","bone element"]],"b":[["NCBITaxon%3A598660","Corynebacterium pyruviciproducens"],["NCBITaxon%3A1125779","Corynebacterium pyruviciproducens ATCC BAA-1742"]]},{"id":"NCBITaxon:600645","l":"Aeromonas piscicola","na":2,"nb":1,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["NCBITaxon%3A600645","Aeromonas piscicola"]]},{"id":"NCBITaxon:600809","l":"Blattabacterium sp. (Periplaneta americana) str. BPLAN","na":2,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A600809","Blattabacterium sp. (Periplaneta americana) str. BPLAN"]]},{"id":"NCBITaxon:60133","l":"Prevotella pallens","na":1,"nb":2,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["NCBITaxon%3A60133","Prevotella pallens"],["NCBITaxon%3A997353","Prevotella pallens ATCC 700821"]]},{"id":"NCBITaxon:60443","l":"Terrabacter tumescens","na":2,"nb":1,"a":[["oil-spill-envo-00002061.html","oil spill"],["tropical-soil-envo-00005778.html","tropical soil"]],"b":[["NCBITaxon%3A60443","Terrabacter tumescens"]]},{"id":"NCBITaxon:60548","l":"Paraburkholderia graminis","na":1,"nb":2,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A60548","Paraburkholderia graminis"],["NCBITaxon%3A396598","Paraburkholderia graminis C4D1M"]]},{"id":"NCBITaxon:60550","l":"Burkholderia pyrrocinia","na":1,"nb":2,"a":[["seedling-bto-0001228.html","seedling"]],"b":[["NCBITaxon%3A60550","Burkholderia pyrrocinia"],["NCBITaxon%3A1212819","Burkholderia pyrrocinia CH-67"]]},{"id":"NCBITaxon:60890","l":"Phaeobacter gallaeciensis","na":1,"nb":2,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A60890","Phaeobacter gallaeciensis"],["NCBITaxon%3A1423144","Phaeobacter gallaeciensis DSM 26640"]]},{"id":"NCBITaxon:60894","l":"Saccharopolyspora spinosa","na":1,"nb":2,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A60894","Saccharopolyspora spinosa"],["NCBITaxon%3A994479","Saccharopolyspora spinosa NRRL 18395"]]},{"id":"NCBITaxon:610130","l":"[Clostridium] saccharolyticum WM1","na":1,"nb":2,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A610130","[Clostridium] saccharolyticum WM1"],["NCBITaxon%3A84030","Lacrimispora saccharolytica"]]},{"id":"NCBITaxon:616997","l":"Hoyosella altamirensis","na":2,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["cave-envo-00000067.html","cave"]],"b":[["NCBITaxon%3A616997","Hoyosella altamirensis"]]},{"id":"NCBITaxon:622312","l":"Roseburia inulinivorans DSM 16841","na":1,"nb":2,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["NCBITaxon%3A360807","Roseburia inulinivorans"],["NCBITaxon%3A622312","Roseburia inulinivorans DSM 16841"]]},{"id":"NCBITaxon:623280","l":"Parapedobacter luteus","na":2,"nb":1,"a":[["sewage-envo-00002018.html","sewage"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["NCBITaxon%3A623280","Parapedobacter luteus"]]},{"id":"NCBITaxon:623281","l":"Parapedobacter composti","na":2,"nb":1,"a":[["sewage-envo-00002018.html","sewage"],["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["NCBITaxon%3A623281","Parapedobacter composti"]]},{"id":"NCBITaxon:626418","l":"Burkholderia glumae BGR1","na":2,"nb":1,"a":[["panicle-bto-0005436.html","panicle"],["seedling-bto-0001228.html","seedling"]],"b":[["NCBITaxon%3A626418","Burkholderia glumae BGR1"]]},{"id":"NCBITaxon:629741","l":"Kingella oralis ATCC 51147","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A505","Kingella oralis"],["NCBITaxon%3A629741","Kingella oralis ATCC 51147"]]},{"id":"NCBITaxon:630403","l":"Tomitella biformata","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A630403","Tomitella biformata"],["NCBITaxon%3A1448389","Tomitella biformata AHU 1821"]]},{"id":"NCBITaxon:633147","l":"Olsenella uli DSM 7084","na":1,"nb":2,"a":[["crevice-envo-01000294.html","crevice"]],"b":[["NCBITaxon%3A133926","Olsenella uli"],["NCBITaxon%3A633147","Olsenella uli DSM 7084"]]},{"id":"NCBITaxon:633149","l":"Brevundimonas subvibrioides ATCC 15264","na":1,"nb":2,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A74313","Brevundimonas subvibrioides"],["NCBITaxon%3A633149","Brevundimonas subvibrioides ATCC 15264"]]},{"id":"NCBITaxon:634177","l":"Komagataeibacter medellinensis NBRC 3288","na":1,"nb":2,"a":[["mountain-pass-envo-00000084.html","mountain pass"]],"b":[["NCBITaxon%3A1177712","Komagataeibacter medellinensis"],["NCBITaxon%3A634177","Komagataeibacter medellinensis NBRC 3288"]]},{"id":"NCBITaxon:63737","l":"Nostoc punctiforme PCC 73102","na":2,"nb":1,"a":[["heterocyst-bto-0000600.html","heterocyst"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A63737","Nostoc punctiforme PCC 73102"]]},{"id":"NCBITaxon:637911","l":"Actinobacillus minor NM305","na":1,"nb":2,"a":[["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["NCBITaxon%3A51047","Actinobacillus minor"],["NCBITaxon%3A637911","Actinobacillus minor NM305"]]},{"id":"NCBITaxon:638300","l":"Cardiobacterium hominis ATCC 15826","na":1,"nb":2,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A2718","Cardiobacterium hominis"],["NCBITaxon%3A638300","Cardiobacterium hominis ATCC 15826"]]},{"id":"NCBITaxon:639283","l":"Ancylobacter novellus DSM 506","na":1,"nb":2,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["NCBITaxon%3A921","Ancylobacter novellus"],["NCBITaxon%3A639283","Ancylobacter novellus DSM 506"]]},{"id":"NCBITaxon:640030","l":"Neisseria zalophi","na":2,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A640030","Neisseria zalophi"]]},{"id":"NCBITaxon:640132","l":"Segniliparus rotundus DSM 44985","na":1,"nb":2,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A286802","Segniliparus rotundus"],["NCBITaxon%3A640132","Segniliparus rotundus DSM 44985"]]},{"id":"NCBITaxon:641143","l":"Capnocytophaga granulosa ATCC 51502","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A45242","Capnocytophaga granulosa"],["NCBITaxon%3A641143","Capnocytophaga granulosa ATCC 51502"]]},{"id":"NCBITaxon:642492","l":"Cellulosilyticum lentocellum DSM 5427","na":1,"nb":2,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["NCBITaxon%3A29360","Cellulosilyticum lentocellum"],["NCBITaxon%3A642492","Cellulosilyticum lentocellum DSM 5427"]]},{"id":"NCBITaxon:642780","l":"Nocardioides scoriae","na":1,"nb":2,"a":[["mud-volcano-envo-00000402.html","mud volcano"]],"b":[["NCBITaxon%3A642780","Nocardioides scoriae"],["NCBITaxon%3A35761","Nocardioides sp."]]},{"id":"NCBITaxon:644107","l":"Ruegeria lacuscaerulensis ITI-1157","na":1,"nb":2,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["NCBITaxon%3A55218","Ruegeria lacuscaerulensis"],["NCBITaxon%3A644107","Ruegeria lacuscaerulensis ITI-1157"]]},{"id":"NCBITaxon:644282","l":"Desulfarculus baarsii DSM 2075","na":1,"nb":2,"a":[["ditch-envo-00000037.html","ditch"]],"b":[["NCBITaxon%3A453230","Desulfarculus baarsii"],["NCBITaxon%3A644282","Desulfarculus baarsii DSM 2075"]]},{"id":"NCBITaxon:644295","l":"Methanohalobium evestigatum Z-7303","na":1,"nb":2,"a":[["microbial-mat-envo-01000008.html","microbial mat"]],"b":[["NCBITaxon%3A2322","Methanohalobium evestigatum"],["NCBITaxon%3A644295","Methanohalobium evestigatum Z-7303"]]},{"id":"NCBITaxon:644383","l":"Thermosporothrix hazakensis","na":2,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"],["compost-envo-00002170.html","compost"]],"b":[["NCBITaxon%3A644383","Thermosporothrix hazakensis"]]},{"id":"NCBITaxon:645463","l":"Clostridioides difficile R20291","na":1,"nb":2,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["NCBITaxon%3A1496","Clostridioides difficile"],["NCBITaxon%3A645463","Clostridioides difficile R20291"]]},{"id":"NCBITaxon:647171","l":"Methanotorris formicicus Mc-S-70","na":1,"nb":2,"a":[["black-smoker-envo-00000218.html","black smoker"]],"b":[["NCBITaxon%3A213185","Methanotorris formicicus"],["NCBITaxon%3A647171","Methanotorris formicicus Mc-S-70"]]},{"id":"NCBITaxon:65","l":"Herpetosiphon aurantiacus","na":1,"nb":2,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A65","Herpetosiphon aurantiacus"],["NCBITaxon%3A316274","Herpetosiphon aurantiacus DSM 785"]]},{"id":"NCBITaxon:653733","l":"Desulfurispirillum indicum S5","na":1,"nb":2,"a":[["canal-envo-00000014.html","canal"]],"b":[["NCBITaxon%3A936456","Desulfurispirillum indicum"],["NCBITaxon%3A653733","Desulfurispirillum indicum S5"]]},{"id":"NCBITaxon:65393","l":"Gloeothece citriformis PCC 7424","na":2,"nb":1,"a":[["rice-field-envo-00000296.html","rice field"],["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["NCBITaxon%3A65393","Gloeothece citriformis PCC 7424"]]},{"id":"NCBITaxon:655438","l":"Cycloclasticus pugetii PS-1","na":2,"nb":1,"a":[["inlet-envo-00000475.html","inlet"],["sound-envo-00000393.html","sound"]],"b":[["NCBITaxon%3A655438","Cycloclasticus pugetii PS-1"]]},{"id":"NCBITaxon:655815","l":"Zunongwangia profunda SM-A87","na":1,"nb":2,"a":[["oceanic-mesopelagic-zone-biome-envo-01000036.html","oceanic mesopelagic zone biome"]],"b":[["NCBITaxon%3A398743","Zunongwangia profunda"],["NCBITaxon%3A655815","Zunongwangia profunda SM-A87"]]},{"id":"NCBITaxon:656912","l":"Haemophilus influenzae RdAW","na":2,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"],["estuarine-biome-envo-01000020.html","estuarine biome"]],"b":[["NCBITaxon%3A656912","Haemophilus influenzae RdAW"]]},{"id":"NCBITaxon:656914","l":"Desulfonispora thiosulfatigenes DSM 11270","na":1,"nb":2,"a":[["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["NCBITaxon%3A83661","Desulfonispora thiosulfatigenes"],["NCBITaxon%3A656914","Desulfonispora thiosulfatigenes DSM 11270"]]},{"id":"NCBITaxon:65735","l":"Paracoccus alkenifer","na":2,"nb":1,"a":[["sewage-envo-00002018.html","sewage"],["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"]],"b":[["NCBITaxon%3A65735","Paracoccus alkenifer"]]},{"id":"NCBITaxon:659425","l":"Thermoclostridium caenicola","na":1,"nb":2,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A659425","Thermoclostridium caenicola"],["NCBITaxon%3A1121300","Thermoclostridium caenicola DSM 19027"]]},{"id":"NCBITaxon:661410","l":"Methylorubrum extorquens DM4","na":1,"nb":2,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A408","Methylorubrum extorquens"],["NCBITaxon%3A661410","Methylorubrum extorquens DM4"]]},{"id":"NCBITaxon:665038","l":"Breoghania corrubedonensis","na":2,"nb":1,"a":[["chemically-enriched-sediment-envo-00002114.html","chemically enriched sediment"],["oil-envo-00002985.html","oil"]],"b":[["NCBITaxon%3A665038","Breoghania corrubedonensis"]]},{"id":"NCBITaxon:666510","l":"Acidilobus saccharovorans 345-15","na":1,"nb":2,"a":[["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A242703","Acidilobus saccharovorans"],["NCBITaxon%3A666510","Acidilobus saccharovorans 345-15"]]},{"id":"NCBITaxon:666684","l":"Afipia sp. 1NLS2","na":1,"nb":2,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["NCBITaxon%3A1871052","Afipia sp."],["NCBITaxon%3A666684","Afipia sp. 1NLS2"]]},{"id":"NCBITaxon:667306","l":"Aciditerrimonas ferrireducens","na":1,"nb":2,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A667306","Aciditerrimonas ferrireducens"],["NCBITaxon%3A1294026","Aciditerrimonas ferrireducens JCM 15389"]]},{"id":"NCBITaxon:675631","l":"Desulfurococcus mucosus DSM 2161","na":1,"nb":2,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A2275","Desulfurococcus mucosus"],["NCBITaxon%3A675631","Desulfurococcus mucosus DSM 2161"]]},{"id":"NCBITaxon:675814","l":"Vibrio coralliilyticus ATCC BAA-450","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A190893","Vibrio coralliilyticus"],["NCBITaxon%3A675814","Vibrio coralliilyticus ATCC BAA-450"]]},{"id":"NCBITaxon:675817","l":"Photobacterium damselae subsp. damselae CIP 102761","na":1,"nb":2,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["NCBITaxon%3A38293","Photobacterium damselae"],["NCBITaxon%3A675817","Photobacterium damselae subsp. damselae CIP 102761"]]},{"id":"NCBITaxon:679192","l":"Bulleidia extructa W1219","na":1,"nb":2,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A118748","Bulleidia extructa"],["NCBITaxon%3A679192","Bulleidia extructa W1219"]]},{"id":"NCBITaxon:679901","l":"Methanosalsum zhilinae DSM 4017","na":1,"nb":2,"a":[["wadi-envo-00000031.html","wadi"]],"b":[["NCBITaxon%3A39669","Methanosalsum zhilinae"],["NCBITaxon%3A679901","Methanosalsum zhilinae DSM 4017"]]},{"id":"NCBITaxon:679937","l":"Bacteroides coprosuis DSM 18011","na":1,"nb":2,"a":[["animal-waste-material-envo-00002276.html","animal waste material"]],"b":[["NCBITaxon%3A151276","Bacteroides coprosuis"],["NCBITaxon%3A679937","Bacteroides coprosuis DSM 18011"]]},{"id":"NCBITaxon:68203","l":"Streptomyces fungicidicus","na":1,"nb":2,"a":[["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A68203","Streptomyces fungicidicus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:685","l":"Vibrio diazotrophicus","na":1,"nb":2,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A685","Vibrio diazotrophicus"],["NCBITaxon%3A1348635","Vibrio diazotrophicus NBRC 103148"]]},{"id":"NCBITaxon:685706","l":"Yersinia nurmii","na":2,"nb":1,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A685706","Yersinia nurmii"]]},{"id":"NCBITaxon:688246","l":"Hallella multisaccharivorax DSM 17128","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A310514","Hallella multisaccharivorax"],["NCBITaxon%3A688246","Hallella multisaccharivorax DSM 17128"]]},{"id":"NCBITaxon:688269","l":"Pseudothermotoga thermarum DSM 5069","na":1,"nb":2,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A119394","Pseudothermotoga thermarum"],["NCBITaxon%3A688269","Pseudothermotoga thermarum DSM 5069"]]},{"id":"NCBITaxon:688270","l":"Cellulophaga algicola DSM 14237","na":1,"nb":2,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["NCBITaxon%3A59600","Cellulophaga algicola"],["NCBITaxon%3A688270","Cellulophaga algicola DSM 14237"]]},{"id":"NCBITaxon:68891","l":"Streptococcus peroris","na":1,"nb":2,"a":[["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A68891","Streptococcus peroris"],["NCBITaxon%3A888746","Streptococcus peroris ATCC 700780"]]},{"id":"NCBITaxon:69014","l":"Thermococcus kodakarensis KOD1","na":1,"nb":2,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A311400","Thermococcus kodakarensis"],["NCBITaxon%3A69014","Thermococcus kodakarensis KOD1"]]},{"id":"NCBITaxon:693444","l":"Enterobacteriaceae bacterium strain FGI 57","na":2,"nb":1,"a":[["road-envo-00000064.html","road"],["garden-envo-00000011.html","garden"]],"b":[["NCBITaxon%3A693444","Enterobacteriaceae bacterium strain FGI 57"]]},{"id":"NCBITaxon:693661","l":"Archaeoglobus veneficus SNP6","na":1,"nb":2,"a":[["black-smoker-envo-00000218.html","black smoker"]],"b":[["NCBITaxon%3A58290","Archaeoglobus veneficus"],["NCBITaxon%3A693661","Archaeoglobus veneficus SNP6"]]},{"id":"NCBITaxon:693972","l":"Shewanella baltica OS625","na":2,"nb":1,"a":[["marginal-sea-biome-envo-01000046.html","marginal sea biome"],["sea-envo-00000016.html","sea"]],"b":[["NCBITaxon%3A693972","Shewanella baltica OS625"]]},{"id":"NCBITaxon:694431","l":"Desulfurella acetivorans A63","na":1,"nb":2,"a":[["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A33002","Desulfurella acetivorans"],["NCBITaxon%3A694431","Desulfurella acetivorans A63"]]},{"id":"NCBITaxon:694433","l":"Saprospira grandis DSM 2844","na":1,"nb":2,"a":[["carapace-bto-0001701.html","carapace"]],"b":[["NCBITaxon%3A1008","Saprospira grandis"],["NCBITaxon%3A694433","Saprospira grandis DSM 2844"]]},{"id":"NCBITaxon:695939","l":"Deinococcus hopiensis KR-140","na":1,"nb":2,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A309885","Deinococcus hopiensis"],["NCBITaxon%3A695939","Deinococcus hopiensis KR-140"]]},{"id":"NCBITaxon:698758","l":"Amphibacillus xylanus NBRC 15112","na":1,"nb":2,"a":[["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["NCBITaxon%3A1449","Amphibacillus xylanus"],["NCBITaxon%3A698758","Amphibacillus xylanus NBRC 15112"]]},{"id":"NCBITaxon:699248","l":"Streptococcus ratti FA-1 = DSM 20564","na":1,"nb":2,"a":[["tooth-bto-0000397.html","tooth"]],"b":[["NCBITaxon%3A1341","Streptococcus ratti"],["NCBITaxon%3A699248","Streptococcus ratti FA-1 = DSM 20564"]]},{"id":"NCBITaxon:69969","l":"Macrococcus carouselicus","na":2,"nb":1,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"],["skin-of-body-uberon-0002097.html","skin of body"]],"b":[["NCBITaxon%3A69969","Macrococcus carouselicus"]]},{"id":"NCBITaxon:706587","l":"Desulfomonile tiedjei DSM 6799","na":1,"nb":2,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A2358","Desulfomonile tiedjei"],["NCBITaxon%3A706587","Desulfomonile tiedjei DSM 6799"]]},{"id":"NCBITaxon:707232","l":"Acinetobacter haemolyticus ATCC 19194","na":1,"nb":2,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["NCBITaxon%3A29430","Acinetobacter haemolyticus"],["NCBITaxon%3A707232","Acinetobacter haemolyticus ATCC 19194"]]},{"id":"NCBITaxon:707241","l":"Sinorhizobium meliloti SM11","na":2,"nb":1,"a":[["mountain-pass-envo-00000084.html","mountain pass"],["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A707241","Sinorhizobium meliloti SM11"]]},{"id":"NCBITaxon:709986","l":"Deinococcus maricopensis DSM 21211","na":1,"nb":2,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A309887","Deinococcus maricopensis"],["NCBITaxon%3A709986","Deinococcus maricopensis DSM 21211"]]},{"id":"NCBITaxon:713586","l":"Thioalkalivibrio thiocyanodenitrificans ARhD 1","na":1,"nb":2,"a":[["wadi-envo-00000031.html","wadi"]],"b":[["NCBITaxon%3A243063","Thioalkalivibrio thiocyanodenitrificans"],["NCBITaxon%3A713586","Thioalkalivibrio thiocyanodenitrificans ARhD 1"]]},{"id":"NCBITaxon:714943","l":"Mucilaginibacter paludis DSM 18603","na":1,"nb":2,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A423351","Mucilaginibacter paludis"],["NCBITaxon%3A714943","Mucilaginibacter paludis DSM 18603"]]},{"id":"NCBITaxon:717231","l":"Flexistipes sinusarabici DSM 4947","na":1,"nb":2,"a":[["brine-envo-00003044.html","brine"]],"b":[["NCBITaxon%3A2352","Flexistipes sinusarabici"],["NCBITaxon%3A717231","Flexistipes sinusarabici DSM 4947"]]},{"id":"NCBITaxon:717606","l":"Paenibacillus curdlanolyticus YK9","na":1,"nb":2,"a":[["city-envo-00000856.html","city"]],"b":[["NCBITaxon%3A59840","Paenibacillus curdlanolyticus"],["NCBITaxon%3A717606","Paenibacillus curdlanolyticus YK9"]]},{"id":"NCBITaxon:720","l":"Actinobacillus lignieresii","na":2,"nb":1,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["NCBITaxon%3A720","Actinobacillus lignieresii"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":2,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["NCBITaxon%3A72226","Lysobacter sp."],["NCBITaxon%3A1645665","Solilutibacter silvestris"]]},{"id":"NCBITaxon:723627","l":"uncultured Rhizobium sp. HF0500_35F13","na":2,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A723627","uncultured Rhizobium sp. HF0500_35F13"]]},{"id":"NCBITaxon:742767","l":"Dysgonomonas mossii DSM 22836","na":1,"nb":2,"a":[["hospital-envo-00002173.html","hospital"]],"b":[["NCBITaxon%3A163665","Dysgonomonas mossii"],["NCBITaxon%3A742767","Dysgonomonas mossii DSM 22836"]]},{"id":"NCBITaxon:748908","l":"Alpinimonas psychrophila","na":2,"nb":1,"a":[["water-ice-envo-01000277.html","water ice"],["glacier-envo-00000133.html","glacier"]],"b":[["NCBITaxon%3A748908","Alpinimonas psychrophila"]]},{"id":"NCBITaxon:749","l":"[Pasteurella] aerogenes","na":2,"nb":1,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A749","[Pasteurella] aerogenes"]]},{"id":"NCBITaxon:749550","l":"Escherichia coli MS 200-1","na":2,"nb":1,"a":[["city-envo-00000856.html","city"],["temperate-broadleaf-forest-biome-envo-01000202.html","temperate broadleaf forest biome"]],"b":[["NCBITaxon%3A749550","Escherichia coli MS 200-1"]]},{"id":"NCBITaxon:751945","l":"Thermus oshimai JL-2","na":1,"nb":2,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A56957","Thermus oshimai"],["NCBITaxon%3A751945","Thermus oshimai JL-2"]]},{"id":"NCBITaxon:756067","l":"Microcoleus vaginatus FGP-2","na":2,"nb":1,"a":[["desert-area-envo-00000097.html","desert area"],["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A756067","Microcoleus vaginatus FGP-2"]]},{"id":"NCBITaxon:75697","l":"Castellaniella defragrans","na":1,"nb":2,"a":[["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A75697","Castellaniella defragrans"],["NCBITaxon%3A1437824","Castellaniella defragrans 65Phen"]]},{"id":"NCBITaxon:758583","l":"Thermococcus sp. 26/2","na":2,"nb":1,"a":[["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A758583","Thermococcus sp. 26/2"]]},{"id":"NCBITaxon:758847","l":"Leptospira santarosai serovar Shermani str. LT 821","na":1,"nb":2,"a":[["renal-tubule-bto-0000343.html","renal tubule"]],"b":[["NCBITaxon%3A28183","Leptospira santarosai"],["NCBITaxon%3A758847","Leptospira santarosai serovar Shermani str. LT 821"]]},{"id":"NCBITaxon:759","l":"Pasteurella sp.","na":2,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["NCBITaxon%3A759","Pasteurella sp."]]},{"id":"NCBITaxon:760","l":"Pasteurella stomatis","na":2,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"]],"b":[["NCBITaxon%3A760","Pasteurella stomatis"]]},{"id":"NCBITaxon:760011","l":"Parasphaerochaeta coccoides DSM 17374","na":1,"nb":2,"a":[["hindgut-bto-0000510.html","hindgut"]],"b":[["NCBITaxon%3A273376","Parasphaerochaeta coccoides"],["NCBITaxon%3A760011","Parasphaerochaeta coccoides DSM 17374"]]},{"id":"NCBITaxon:760154","l":"Sulfurospirillum barnesii SES-3","na":1,"nb":2,"a":[["marsh-envo-00000035.html","marsh"]],"b":[["NCBITaxon%3A44674","Sulfurospirillum barnesii"],["NCBITaxon%3A760154","Sulfurospirillum barnesii SES-3"]]},{"id":"NCBITaxon:760568","l":"Desulfofundulus kuznetsovii DSM 6115","na":1,"nb":2,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A58135","Desulfofundulus kuznetsovii"],["NCBITaxon%3A760568","Desulfofundulus kuznetsovii DSM 6115"]]},{"id":"NCBITaxon:765420","l":"Oscillochloris trichoides DG-6","na":1,"nb":2,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A104176","Oscillochloris trichoides"],["NCBITaxon%3A765420","Oscillochloris trichoides DG-6"]]},{"id":"NCBITaxon:765698","l":"Mesorhizobium ciceri biovar biserrulae WSM1271","na":1,"nb":2,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A39645","Mesorhizobium ciceri"],["NCBITaxon%3A765698","Mesorhizobium ciceri biovar biserrulae WSM1271"]]},{"id":"NCBITaxon:765873","l":"Ectothiorhodospira haloalkaliphila ATCC 51935","na":1,"nb":2,"a":[["wadi-envo-00000031.html","wadi"]],"b":[["NCBITaxon%3A421628","Ectothiorhodospira haloalkaliphila"],["NCBITaxon%3A765873","Ectothiorhodospira haloalkaliphila ATCC 51935"]]},{"id":"NCBITaxon:765912","l":"Thioflavicoccus mobilis 8321","na":2,"nb":1,"a":[["marsh-envo-00000035.html","marsh"],["saline-marsh-envo-00000054.html","saline marsh"]],"b":[["NCBITaxon%3A765912","Thioflavicoccus mobilis 8321"]]},{"id":"NCBITaxon:768066","l":"Halomonas elongata DSM 2581","na":1,"nb":2,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["NCBITaxon%3A2746","Halomonas elongata"],["NCBITaxon%3A768066","Halomonas elongata DSM 2581"]]},{"id":"NCBITaxon:768492","l":"Serratia plymuthica AS9","na":1,"nb":2,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A768492","Serratia plymuthica AS9"],["NCBITaxon%3A239175","uncultured Serratia sp."]]},{"id":"NCBITaxon:768672","l":"Desulfurococcus amylolyticus DSM 16532","na":1,"nb":2,"a":[["caldera-envo-00000096.html","caldera"]],"b":[["NCBITaxon%3A94694","Desulfurococcus amylolyticus"],["NCBITaxon%3A768672","Desulfurococcus amylolyticus DSM 16532"]]},{"id":"NCBITaxon:768704","l":"Desulfosporosinus meridiei DSM 13257","na":1,"nb":2,"a":[["hill-envo-00000083.html","hill"]],"b":[["NCBITaxon%3A79209","Desulfosporosinus meridiei"],["NCBITaxon%3A768704","Desulfosporosinus meridiei DSM 13257"]]},{"id":"NCBITaxon:79266","l":"Mesorhizobium sp. ZJ15B7","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A79266","Mesorhizobium sp. ZJ15B7"]]},{"id":"NCBITaxon:794903","l":"Opitutaceae bacterium TAV5","na":2,"nb":1,"a":[["hindgut-bto-0000510.html","hindgut"],["wood-bto-0005516.html","wood"]],"b":[["NCBITaxon%3A794903","Opitutaceae bacterium TAV5"]]},{"id":"NCBITaxon:795797","l":"Halalkalicoccus jeotgali B3","na":1,"nb":2,"a":[["food-product-foodon-00001002.html","food product"]],"b":[["NCBITaxon%3A413810","Halalkalicoccus jeotgali"],["NCBITaxon%3A795797","Halalkalicoccus jeotgali B3"]]},{"id":"NCBITaxon:798130","l":"Pseudomonas aeruginosa 39016","na":2,"nb":1,"a":[["underground-water-envo-00005792.html","underground water"],["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A798130","Pseudomonas aeruginosa 39016"]]},{"id":"NCBITaxon:81406","l":"Solidesulfovibrio alcoholivorans","na":1,"nb":2,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A81406","Solidesulfovibrio alcoholivorans"],["NCBITaxon%3A1121438","Solidesulfovibrio alcoholivorans DSM 5433"]]},{"id":"NCBITaxon:82348","l":"Streptococcus pluranimalium","na":1,"nb":2,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"]],"b":[["NCBITaxon%3A149015","Streptococcus hyovaginalis"],["NCBITaxon%3A82348","Streptococcus pluranimalium"]]},{"id":"NCBITaxon:82380","l":"Microbacterium oxydans","na":1,"nb":2,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A82380","Microbacterium oxydans"],["NCBITaxon%3A1255678","Microbacterium oxydans PCA1"]]},{"id":"NCBITaxon:826","l":"Sebaldella termitidis","na":1,"nb":2,"a":[["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A826","Sebaldella termitidis"],["NCBITaxon%3A526218","Sebaldella termitidis ATCC 33386"]]},{"id":"NCBITaxon:82806","l":"Streptococcus ovis","na":1,"nb":2,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"]],"b":[["NCBITaxon%3A82806","Streptococcus ovis"],["NCBITaxon%3A1123312","Streptococcus ovis DSM 16829"]]},{"id":"NCBITaxon:82985","l":"Pragia fontium","na":1,"nb":2,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"]],"b":[["NCBITaxon%3A82985","Pragia fontium"],["NCBITaxon%3A1122977","Pragia fontium DSM 5563 = ATCC 49100"]]},{"id":"NCBITaxon:82991","l":"Buttiauxella izardii","na":1,"nb":2,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A82991","Buttiauxella izardii"],["NCBITaxon%3A1354254","Buttiauxella izardii ATCC 51606"]]},{"id":"NCBITaxon:83219","l":"Sulfitobacter mediterraneus","na":1,"nb":2,"a":[["sandstone-envo-00002055.html","sandstone"]],"b":[["NCBITaxon%3A83219","Sulfitobacter mediterraneus"],["NCBITaxon%3A1443112","Sulfitobacter mediterraneus KCTC 32188"]]},{"id":"NCBITaxon:83262","l":"Mycobacteroides immunogenum","na":1,"nb":2,"a":[["central-nervous-system-bto-0000227.html","central nervous system"]],"b":[["NCBITaxon%3A36809","Mycobacteroides abscessus"],["NCBITaxon%3A83262","Mycobacteroides immunogenum"]]},{"id":"NCBITaxon:83331","l":"Mycobacterium tuberculosis CDC1551","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A83331","Mycobacterium tuberculosis CDC1551"]]},{"id":"NCBITaxon:83557","l":"Chlamydia caviae","na":1,"nb":2,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A83557","Chlamydia caviae"],["NCBITaxon%3A227941","Chlamydia caviae GPIC"]]},{"id":"NCBITaxon:84032","l":"Clostridium thermosuccinogenes","na":1,"nb":2,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"]],"b":[["NCBITaxon%3A84032","Clostridium thermosuccinogenes"],["NCBITaxon%3A1121341","Pseudoclostridium thermosuccinogenes DSM 5807"]]},{"id":"NCBITaxon:84159","l":"Paramagnetospirillum magneticum","na":1,"nb":2,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A84159","Paramagnetospirillum magneticum"],["NCBITaxon%3A342108","Paramagnetospirillum magneticum AMB-1"]]},{"id":"NCBITaxon:844","l":"Wolinella succinogenes","na":1,"nb":2,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A844","Wolinella succinogenes"],["NCBITaxon%3A273121","Wolinella succinogenes DSM 1740"]]},{"id":"NCBITaxon:84980","l":"Desulfotalea psychrophila","na":1,"nb":2,"a":[["shoreline-envo-00000486.html","shoreline"]],"b":[["NCBITaxon%3A84980","Desulfotalea psychrophila"],["NCBITaxon%3A177439","Desulfotalea psychrophila LSv54"]]},{"id":"NCBITaxon:85336","l":"Rothia nasimurium","na":1,"nb":2,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"]],"b":[["NCBITaxon%3A85336","Rothia nasimurium"],["NCBITaxon%3A553203","Rothia nasimurium JCVIHMP032"]]},{"id":"NCBITaxon:85643","l":"","na":2,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"],["cold-environment-envo-01000309.html","cold environment"]],"b":[["NCBITaxon%3A164330","Thauera aminoaromatica"]]},{"id":"NCBITaxon:85831","l":"Bacteroides acidifaciens","na":1,"nb":2,"a":[["colon-bto-0000269.html","colon"]],"b":[["NCBITaxon%3A85831","Bacteroides acidifaciens"],["NCBITaxon%3A1235814","Bacteroides acidifaciens JCM 10556"]]},{"id":"NCBITaxon:86185","l":"Pseudomonas lundensis","na":1,"nb":2,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A86185","Pseudomonas lundensis"],["NCBITaxon%3A1255687","Pseudomonas lundensis PCAi_D2.2"]]},{"id":"NCBITaxon:862515","l":"Hoylesella marshii DSM 16973 = JCM 13450","na":1,"nb":2,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A189722","Hoylesella marshii"],["NCBITaxon%3A862515","Hoylesella marshii DSM 16973 = JCM 13450"]]},{"id":"NCBITaxon:862908","l":"Halobacteriovorax marinus SJ","na":1,"nb":2,"a":[["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A97084","Halobacteriovorax marinus"],["NCBITaxon%3A862908","Halobacteriovorax marinus SJ"]]},{"id":"NCBITaxon:865937","l":"Gillisia limnaea DSM 15749","na":1,"nb":2,"a":[["dry-valley-envo-00000128.html","dry valley"]],"b":[["NCBITaxon%3A195907","Gillisia limnaea"],["NCBITaxon%3A865937","Gillisia limnaea DSM 15749"]]},{"id":"NCBITaxon:866499","l":"Cloacibacillus evryensis DSM 19522","na":1,"nb":2,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A508460","Cloacibacillus evryensis"],["NCBITaxon%3A866499","Cloacibacillus evryensis DSM 19522"]]},{"id":"NCBITaxon:86668","l":"Neobacillus niacini","na":1,"nb":2,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A86668","Neobacillus niacini"],["NCBITaxon%3A1348654","Neobacillus niacini NBRC 15566"]]},{"id":"NCBITaxon:866789","l":"Escherichia coli DSM 30083 = JCM 1649 = ATCC 11775","na":1,"nb":2,"a":[["urethra-bto-0001426.html","urethra"]],"b":[["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A866789","Escherichia coli DSM 30083 = JCM 1649 = ATCC 11775"]]},{"id":"NCBITaxon:869210","l":"Marinithermus hydrothermalis DSM 14884","na":1,"nb":2,"a":[["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A186192","Marinithermus hydrothermalis"],["NCBITaxon%3A869210","Marinithermus hydrothermalis DSM 14884"]]},{"id":"NCBITaxon:86959","l":"Propionispira raffinosivorans","na":1,"nb":2,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"]],"b":[["NCBITaxon%3A86959","Propionispira raffinosivorans"],["NCBITaxon%3A1123511","Propionispira raffinosivorans DSM 20765"]]},{"id":"NCBITaxon:873513","l":"Segatella buccae ATCC 33574","na":1,"nb":2,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A28126","Segatella buccae"],["NCBITaxon%3A873513","Segatella buccae ATCC 33574"]]},{"id":"NCBITaxon:880","l":"Maridesulfovibrio salexigens","na":1,"nb":2,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A880","Maridesulfovibrio salexigens"],["NCBITaxon%3A526222","Maridesulfovibrio salexigens DSM 2638"]]},{"id":"NCBITaxon:880447","l":"Mycoplasma leachii PG50","na":1,"nb":2,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A2105","Mycoplasma leachii"],["NCBITaxon%3A880447","Mycoplasma leachii PG50"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A881","Nitratidesulfovibrio vulgaris"],["NCBITaxon%3A882","Nitratidesulfovibrio vulgaris str. Hildenborough"]]},{"id":"NCBITaxon:883","l":"Nitratidesulfovibrio vulgaris str. 'Miyazaki F'","na":1,"nb":2,"a":[["saline-marsh-envo-00000054.html","saline marsh"]],"b":[["NCBITaxon%3A881","Nitratidesulfovibrio vulgaris"],["NCBITaxon%3A883","Nitratidesulfovibrio vulgaris str. 'Miyazaki F'"]]},{"id":"NCBITaxon:883169","l":"Corynebacterium otitidis ATCC 51513","na":1,"nb":2,"a":[["middle-ear-bto-0002099.html","middle ear"]],"b":[["NCBITaxon%3A29321","Corynebacterium otitidis"],["NCBITaxon%3A883169","Corynebacterium otitidis ATCC 51513"]]},{"id":"NCBITaxon:88373","l":"Agromyces luteolus","na":1,"nb":2,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A88373","Agromyces luteolus"],["NCBITaxon%3A881268","Herbiconiux flava"]]},{"id":"NCBITaxon:886293","l":"Singulisphaera acidiphila DSM 18658","na":1,"nb":2,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A466153","Singulisphaera acidiphila"],["NCBITaxon%3A886293","Singulisphaera acidiphila DSM 18658"]]},{"id":"NCBITaxon:887899","l":"Mobiluncus holmesii ATCC 35242","na":1,"nb":2,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["NCBITaxon%3A144178","Mobiluncus holmesii"],["NCBITaxon%3A887899","Mobiluncus holmesii ATCC 35242"]]},{"id":"NCBITaxon:887929","l":"Pseudoramibacter alactolyticus ATCC 23263","na":1,"nb":2,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"]],"b":[["NCBITaxon%3A113287","Pseudoramibacter alactolyticus"],["NCBITaxon%3A887929","Pseudoramibacter alactolyticus ATCC 23263"]]},{"id":"NCBITaxon:888061","l":"Desulfomicrobium orale DSM 12838","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A132132","Desulfomicrobium orale"],["NCBITaxon%3A888061","Desulfomicrobium orale DSM 12838"]]},{"id":"NCBITaxon:88874","l":"Luteococcus peritonei","na":1,"nb":2,"a":[["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A88874","Luteococcus peritonei"],["NCBITaxon%3A170679","Vibrio chagasii"]]},{"id":"NCBITaxon:888743","l":"Prevotella multiformis DSM 16608","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A282402","Prevotella multiformis"],["NCBITaxon%3A888743","Prevotella multiformis DSM 16608"]]},{"id":"NCBITaxon:889274","l":"Polyangium sorediatum","na":2,"nb":1,"a":[["wood-bto-0005516.html","wood"],["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A889274","Polyangium sorediatum"]]},{"id":"NCBITaxon:89065","l":"Pseudomonas abietaniphila","na":2,"nb":1,"a":[["coastal-plain-envo-00000090.html","coastal plain"],["sea-coast-envo-00000303.html","sea coast"]],"b":[["NCBITaxon%3A89065","Pseudomonas abietaniphila"]]},{"id":"NCBITaxon:89184","l":"Ruegeria pomeroyi","na":1,"nb":2,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A89184","Ruegeria pomeroyi"],["NCBITaxon%3A246200","Ruegeria pomeroyi DSS-3"]]},{"id":"NCBITaxon:90240","l":"Moraxella caprae","na":1,"nb":2,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"]],"b":[["NCBITaxon%3A90240","Moraxella caprae"],["NCBITaxon%3A1122244","Moraxella caprae DSM 19149"]]},{"id":"NCBITaxon:908937","l":"Prevotella dentalis DSM 3688","na":1,"nb":2,"a":[["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A52227","Prevotella dentalis"],["NCBITaxon%3A908937","Prevotella dentalis DSM 3688"]]},{"id":"NCBITaxon:912594","l":"Mycolicibacterium iranicum","na":1,"nb":2,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["NCBITaxon%3A912594","Mycolicibacterium iranicum"],["NCBITaxon%3A1370125","Mycolicibacterium iranicum UM_TJL"]]},{"id":"NCBITaxon:915438","l":"Xylanibacter oryzae DSM 17970","na":1,"nb":2,"a":[["rice-field-envo-00000296.html","rice field"]],"b":[["NCBITaxon%3A185293","Xylanibacter oryzae"],["NCBITaxon%3A915438","Xylanibacter oryzae DSM 17970"]]},{"id":"NCBITaxon:916","l":"Nitrosomonas eutropha","na":1,"nb":2,"a":[["waste-treatment-plant-envo-00002272.html","waste treatment plant"]],"b":[["NCBITaxon%3A916","Nitrosomonas eutropha"],["NCBITaxon%3A335283","Nitrosomonas eutropha C91"]]},{"id":"NCBITaxon:91892","l":"Legionella pneumophila subsp. fraseri","na":1,"nb":2,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A446","Legionella pneumophila"],["NCBITaxon%3A91892","Legionella pneumophila subsp. fraseri"]]},{"id":"NCBITaxon:91917","l":"Burkholderia sp. NF100","na":2,"nb":1,"a":[["clay-envo-00002982.html","clay"],["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A91917","Burkholderia sp. NF100"]]},{"id":"NCBITaxon:926550","l":"Caldilinea aerophila DSM 14535 = NBRC 104270","na":1,"nb":2,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A133453","Caldilinea aerophila"],["NCBITaxon%3A926550","Caldilinea aerophila DSM 14535 = NBRC 104270"]]},{"id":"NCBITaxon:926554","l":"Deinococcus pimensis DSM 21231","na":1,"nb":2,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A309888","Deinococcus pimensis"],["NCBITaxon%3A926554","Deinococcus pimensis DSM 21231"]]},{"id":"NCBITaxon:926567","l":"Thermanaerovibrio velox DSM 12556","na":1,"nb":2,"a":[["caldera-envo-00000096.html","caldera"]],"b":[["NCBITaxon%3A108007","Thermanaerovibrio velox"],["NCBITaxon%3A926567","Thermanaerovibrio velox DSM 12556"]]},{"id":"NCBITaxon:926690","l":"Haloplanus natans DSM 17983","na":1,"nb":2,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A376171","Haloplanus natans"],["NCBITaxon%3A926690","Haloplanus natans DSM 17983"]]},{"id":"NCBITaxon:927655","l":"Corynebacterium bovis DSM 20582 = CIP 54.80","na":1,"nb":2,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["NCBITaxon%3A36808","Corynebacterium bovis"],["NCBITaxon%3A927655","Corynebacterium bovis DSM 20582 = CIP 54.80"]]},{"id":"NCBITaxon:928729","l":"Saccharomonospora halophila 8","na":1,"nb":2,"a":[["saline-marsh-envo-00000054.html","saline marsh"]],"b":[["NCBITaxon%3A129922","Saccharomonospora halophila"],["NCBITaxon%3A928729","Saccharomonospora halophila 8"]]},{"id":"NCBITaxon:929558","l":"Sulfurimonas gotlandica GD1","na":1,"nb":2,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A1176482","Sulfurimonas gotlandica"],["NCBITaxon%3A929558","Sulfurimonas gotlandica GD1"]]},{"id":"NCBITaxon:929705","l":"Sulfobacillus thermosulfidooxidans DSM 9293","na":1,"nb":2,"a":[["mineral-deposit-envo-01000255.html","mineral deposit"]],"b":[["NCBITaxon%3A28034","Sulfobacillus thermosulfidooxidans"],["NCBITaxon%3A929705","Sulfobacillus thermosulfidooxidans DSM 9293"]]},{"id":"NCBITaxon:93220","l":"Pandoraea pnomenusa","na":1,"nb":2,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"]],"b":[["NCBITaxon%3A93220","Pandoraea pnomenusa"],["NCBITaxon%3A1416914","Pandoraea pnomenusa 3kgm"]]},{"id":"NCBITaxon:935948","l":"Caldanaerobius polysaccharolyticus DSM 13641","na":1,"nb":2,"a":[["leachate-envo-00002141.html","leachate"]],"b":[["NCBITaxon%3A44256","Caldanaerobius polysaccharolyticus"],["NCBITaxon%3A935948","Caldanaerobius polysaccharolyticus DSM 13641"]]},{"id":"NCBITaxon:945550","l":"Vibrio sinaloensis DSM 21326","na":1,"nb":2,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A379097","Vibrio sinaloensis"],["NCBITaxon%3A945550","Vibrio sinaloensis DSM 21326"]]},{"id":"NCBITaxon:945555","l":"Acinetobacter baumannii WM99c","na":2,"nb":1,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"],["lung-epithelial-cell-bto-0004299.html","lung epithelial cell"]],"b":[["NCBITaxon%3A945555","Acinetobacter baumannii WM99c"]]},{"id":"NCBITaxon:945556","l":"Acinetobacter baumannii D1279779","na":2,"nb":1,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"],["lung-epithelial-cell-bto-0004299.html","lung epithelial cell"]],"b":[["NCBITaxon%3A945556","Acinetobacter baumannii D1279779"]]},{"id":"NCBITaxon:95485","l":"Burkholderia stabilis","na":1,"nb":2,"a":[["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["NCBITaxon%3A292","Burkholderia cepacia"],["NCBITaxon%3A95485","Burkholderia stabilis"]]},{"id":"NCBITaxon:981386","l":"Brucella vulpis","na":2,"nb":1,"a":[["lymph-node-bto-0000784.html","lymph node"],["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["NCBITaxon%3A981386","Brucella vulpis"]]},{"id":"NCBITaxon:983920","l":"Novosphingobium nitrogenifigens DSM 19370","na":1,"nb":2,"a":[["pulp-bto-0001142.html","pulp"]],"b":[["NCBITaxon%3A378548","Novosphingobium nitrogenifigens"],["NCBITaxon%3A983920","Novosphingobium nitrogenifigens DSM 19370"]]},{"id":"NCBITaxon:984260","l":"Rhizobium skierniewicense","na":1,"nb":2,"a":[["plant-gall-po-0025626.html","plant gall"]],"b":[["NCBITaxon%3A984260","Rhizobium skierniewicense"],["NCBITaxon%3A1368417","Rhizobium skierniewicense Ch11"]]},{"id":"NCBITaxon:985762","l":"Staphylococcus agnetis","na":1,"nb":2,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"]],"b":[["NCBITaxon%3A985762","Staphylococcus agnetis"],["NCBITaxon%3A1216360","Staphylococcus agnetis MU1"]]},{"id":"NCBITaxon:987","l":"Aquimarina latercula","na":1,"nb":2,"a":[["sandstone-envo-00002055.html","sandstone"]],"b":[["NCBITaxon%3A987","Aquimarina latercula"],["NCBITaxon%3A1121006","Aquimarina latercula DSM 2041"]]},{"id":"NCBITaxon:987045","l":"Jiangella gansuensis DSM 44835","na":1,"nb":2,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A281473","Jiangella gansuensis"],["NCBITaxon%3A987045","Jiangella gansuensis DSM 44835"]]},{"id":"NCBITaxon:987059","l":"Rubrivivax benzoatilyticus JA2 = ATCC BAA-35","na":1,"nb":2,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A316997","Rubrivivax benzoatilyticus"],["NCBITaxon%3A987059","Rubrivivax benzoatilyticus JA2 = ATCC BAA-35"]]},{"id":"NCBITaxon:988827","l":"Kocuria oceani","na":1,"nb":2,"a":[["in-situ-habitatmech-bacdive-3edb563d49.html","In-situ"]],"b":[["NCBITaxon%3A988827","Kocuria oceani"],["NCBITaxon%3A174038","Luteococcus sanguinis"]]},{"id":"NCBITaxon:990315","l":"Xanthomonas campestris pv. raphani 756C","na":2,"nb":1,"a":[["mesophyll-bto-0000858.html","mesophyll"],["vascular-tissue-bto-0001432.html","vascular tissue"]],"b":[["NCBITaxon%3A990315","Xanthomonas campestris pv. raphani 756C"]]},{"id":"NCBITaxon:991789","l":"Anaerotignum propionicum DSM 1682","na":1,"nb":2,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["NCBITaxon%3A28446","Anaerotignum propionicum"],["NCBITaxon%3A991789","Anaerotignum propionicum DSM 1682"]]},{"id":"NCBITaxon:99481","l":"Nostocoides japonicum","na":1,"nb":2,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["NCBITaxon%3A99481","Nostocoides japonicum"],["NCBITaxon%3A1194083","Nostocoides japonicum T1-X7"]]},{"id":"NCBITaxon:99656","l":"[Clostridium] fimetarium","na":1,"nb":2,"a":[["animal-waste-material-envo-00002276.html","animal waste material"]],"b":[["NCBITaxon%3A99656","[Clostridium] fimetarium"],["NCBITaxon%3A1121311","[Clostridium] fimetarium DSM 9179"]]},{"id":"NCBITaxon:997349","l":"Olsenella profusa DSM 13989","na":1,"nb":2,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A138595","Olsenella profusa"],["NCBITaxon%3A997349","Olsenella profusa DSM 13989"]]},{"id":"NCBITaxon:999","l":"Bernardetia litoralis","na":1,"nb":2,"a":[["lagoon-envo-00000038.html","lagoon"]],"b":[["NCBITaxon%3A999","Bernardetia litoralis"],["NCBITaxon%3A880071","Bernardetia litoralis DSM 6794"]]},{"id":"NCBITaxon:999547","l":"Leisingera daeponensis DSM 23529","na":1,"nb":2,"a":[["beach-envo-00000091.html","beach"]],"b":[["NCBITaxon%3A405746","Leisingera daeponensis"],["NCBITaxon%3A999547","Leisingera daeponensis DSM 23529"]]},{"id":"NCBITaxon:999552","l":"Leisingera methylohalidivorans DSM 14336","na":1,"nb":2,"a":[["marine-neritic-zone-envo-00000206.html","marine neritic zone"]],"b":[["NCBITaxon%3A133924","Leisingera methylohalidivorans"],["NCBITaxon%3A999552","Leisingera methylohalidivorans DSM 14336"]]},{"id":"NCBITaxon:1000560","l":"Escherichia coli VDP","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1000560","Escherichia coli VDP"]]},{"id":"NCBITaxon:1000567","l":"Bifidobacterium longum 3_1_37DFAAB","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1000567","Bifidobacterium longum 3_1_37DFAAB"]]},{"id":"NCBITaxon:1000568","l":"Megasphaera lornae","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1000568","Megasphaera lornae"]]},{"id":"NCBITaxon:1000569","l":"Megasphaera sp. UPII 135-E","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1000569","Megasphaera sp. UPII 135-E"]]},{"id":"NCBITaxon:1000935","l":"Anaplasma marginale str. Florida Relapse","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1000935","Anaplasma marginale str. Florida Relapse"]]},{"id":"NCBITaxon:1000936","l":"Anaplasma marginale str. Okeechobee","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1000936","Anaplasma marginale str. Okeechobee"]]},{"id":"NCBITaxon:1000937","l":"Anaplasma marginale str. Washington Okanogan","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1000937","Anaplasma marginale str. Washington Okanogan"]]},{"id":"NCBITaxon:1000938","l":"Anaplasma marginale str. Oklahoma","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1000938","Anaplasma marginale str. Oklahoma"]]},{"id":"NCBITaxon:1000939","l":"Anaplasma marginale str. South Idaho","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1000939","Anaplasma marginale str. South Idaho"]]},{"id":"NCBITaxon:1000950","l":"Vibrio cholerae HC-55C1","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1000950","Vibrio cholerae HC-55C1"]]},{"id":"NCBITaxon:1001223","l":"Avibacterium paragallinarum 72C","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1001223","Avibacterium paragallinarum 72C"]]},{"id":"NCBITaxon:1001224","l":"Avibacterium paragallinarum 72C1","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1001224","Avibacterium paragallinarum 72C1"]]},{"id":"NCBITaxon:1001530","l":"Photobacterium leiognathi subsp. mandapamensis svers.1.1.","na":1,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001530","Photobacterium leiognathi subsp. mandapamensis svers.1.1."]]},{"id":"NCBITaxon:1001582","l":"Bacillus amyloliquefaciens LL3","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A1001582","Bacillus amyloliquefaciens LL3"]]},{"id":"NCBITaxon:1001583","l":"Levilactobacillus brevis KB290","na":1,"nb":1,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A1001583","Levilactobacillus brevis KB290"]]},{"id":"NCBITaxon:1001585","l":"Ectopseudomonas mendocina NK-01","na":1,"nb":1,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A1001585","Ectopseudomonas mendocina NK-01"]]},{"id":"NCBITaxon:1001586","l":"Leptospira interrogans serovar Bulgarica str. Mallika","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001586","Leptospira interrogans serovar Bulgarica str. Mallika"]]},{"id":"NCBITaxon:1001587","l":"Leptospira interrogans serovar Pomona str. Pomona","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001587","Leptospira interrogans serovar Pomona str. Pomona"]]},{"id":"NCBITaxon:1001588","l":"Leptospira interrogans str. 2002000621","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001588","Leptospira interrogans str. 2002000621"]]},{"id":"NCBITaxon:1001589","l":"Leptospira weilii str. 2006001853","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001589","Leptospira weilii str. 2006001853"]]},{"id":"NCBITaxon:1001590","l":"Leptospira interrogans str. 2006001854","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001590","Leptospira interrogans str. 2006001854"]]},{"id":"NCBITaxon:1001591","l":"Leptospira interrogans str. C10069","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001591","Leptospira interrogans str. C10069"]]},{"id":"NCBITaxon:1001592","l":"Leptospira santarosai str. 2000027870","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001592","Leptospira santarosai str. 2000027870"]]},{"id":"NCBITaxon:1001593","l":"Leptospira noguchii str. 2006001870","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001593","Leptospira noguchii str. 2006001870"]]},{"id":"NCBITaxon:1001594","l":"Leptospira interrogans serovar Australis str. LT2148","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001594","Leptospira interrogans serovar Australis str. LT2148"]]},{"id":"NCBITaxon:1001595","l":"Leptospira noguchii serovar Panama str. CZ214","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001595","Leptospira noguchii serovar Panama str. CZ214"]]},{"id":"NCBITaxon:1001596","l":"Leptospira interrogans serovar Djasiman str. LT1649","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001596","Leptospira interrogans serovar Djasiman str. LT1649"]]},{"id":"NCBITaxon:1001597","l":"Leptospira interrogans serovar Canicola str. LT1962","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001597","Leptospira interrogans serovar Canicola str. LT1962"]]},{"id":"NCBITaxon:1001598","l":"Leptospira interrogans serovar Copenhageni str. LT2050","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001598","Leptospira interrogans serovar Copenhageni str. LT2050"]]},{"id":"NCBITaxon:1001599","l":"Leptospira interrogans serovar Grippotyphosa str. LT2186","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001599","Leptospira interrogans serovar Grippotyphosa str. LT2186"]]},{"id":"NCBITaxon:1001601","l":"Leptospira interrogans serovar Zanoni str. LT2156","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001601","Leptospira interrogans serovar Zanoni str. LT2156"]]},{"id":"NCBITaxon:1001602","l":"Leptospira interrogans serovar Copenhageni str. Fiocruz LV2756C6","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001602","Leptospira interrogans serovar Copenhageni str. Fiocruz LV2756C6"]]},{"id":"NCBITaxon:1001603","l":"Leptospira interrogans serovar Copenhageni str. Fiocruz R154","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001603","Leptospira interrogans serovar Copenhageni str. Fiocruz R154"]]},{"id":"NCBITaxon:1001704","l":"Mycobacteroides abscessus subsp. bolletii 1S-151-0930","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001704","Mycobacteroides abscessus subsp. bolletii 1S-151-0930"]]},{"id":"NCBITaxon:1001705","l":"Mycobacteroides abscessus subsp. bolletii 1S-152-0914","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001705","Mycobacteroides abscessus subsp. bolletii 1S-152-0914"]]},{"id":"NCBITaxon:1001706","l":"Mycobacteroides abscessus subsp. bolletii 1S-153-0915","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001706","Mycobacteroides abscessus subsp. bolletii 1S-153-0915"]]},{"id":"NCBITaxon:1001707","l":"Mycobacteroides abscessus subsp. bolletii 1S-154-0310","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001707","Mycobacteroides abscessus subsp. bolletii 1S-154-0310"]]},{"id":"NCBITaxon:1001708","l":"Mycobacteroides abscessus subsp. bolletii 2B-0626","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001708","Mycobacteroides abscessus subsp. bolletii 2B-0626"]]},{"id":"NCBITaxon:1001709","l":"Mycobacteroides abscessus subsp. bolletii 2B-1231","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001709","Mycobacteroides abscessus subsp. bolletii 2B-1231"]]},{"id":"NCBITaxon:1001710","l":"Mycobacteroides abscessus subsp. bolletii 2B-0107","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001710","Mycobacteroides abscessus subsp. bolletii 2B-0107"]]},{"id":"NCBITaxon:1001711","l":"Mycobacteroides abscessus subsp. bolletii 2B-0912-R","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001711","Mycobacteroides abscessus subsp. bolletii 2B-0912-R"]]},{"id":"NCBITaxon:1001712","l":"Mycobacteroides abscessus subsp. bolletii 2B-0912-S","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001712","Mycobacteroides abscessus subsp. bolletii 2B-0912-S"]]},{"id":"NCBITaxon:1001713","l":"Mycobacteroides abscessus subsp. bolletii 2B-0307","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001713","Mycobacteroides abscessus subsp. bolletii 2B-0307"]]},{"id":"NCBITaxon:1001715","l":"Mycobacteroides abscessus 3A-0122-R","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001715","Mycobacteroides abscessus 3A-0122-R"]]},{"id":"NCBITaxon:1001716","l":"Mycobacteroides abscessus 3A-0122-S","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001716","Mycobacteroides abscessus 3A-0122-S"]]},{"id":"NCBITaxon:1001717","l":"Mycobacteroides abscessus 3A-0810-R","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001717","Mycobacteroides abscessus 3A-0810-R"]]},{"id":"NCBITaxon:1001718","l":"Mycobacteroides abscessus 3A-0731","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001718","Mycobacteroides abscessus 3A-0731"]]},{"id":"NCBITaxon:1001719","l":"Mycobacteroides abscessus 3A-0930-S","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001719","Mycobacteroides abscessus 3A-0930-S"]]},{"id":"NCBITaxon:1001720","l":"Mycobacteroides abscessus 3A-0930-R","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001720","Mycobacteroides abscessus 3A-0930-R"]]},{"id":"NCBITaxon:1001721","l":"Mycobacteroides abscessus 3A-0119-R","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001721","Mycobacteroides abscessus 3A-0119-R"]]},{"id":"NCBITaxon:1001722","l":"Mycobacteroides abscessus 4S-0303","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001722","Mycobacteroides abscessus 4S-0303"]]},{"id":"NCBITaxon:1001723","l":"Mycobacteroides abscessus 4S-0206","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001723","Mycobacteroides abscessus 4S-0206"]]},{"id":"NCBITaxon:1001724","l":"Mycobacteroides abscessus 4S-0116-S","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001724","Mycobacteroides abscessus 4S-0116-S"]]},{"id":"NCBITaxon:1001725","l":"Mycobacteroides abscessus 4S-0116-R","na":1,"nb":1,"a":[["respiratory-tract-uberon-0000065.html","respiratory tract"]],"b":[["NCBITaxon%3A1001725","Mycobacteroides abscessus 4S-0116-R"]]},{"id":"NCBITaxon:1001732","l":"Mycobacteroides abscessus 5S-0921","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1001732","Mycobacteroides abscessus 5S-0921"]]},{"id":"NCBITaxon:100174","l":"Clostridium peptidivorans","na":1,"nb":1,"a":[["anaerobic-digestor-habitatmech-bacdive-0180300130.html","Anaerobic-digestor"]],"b":[["NCBITaxon%3A100174","Clostridium peptidivorans"]]},{"id":"NCBITaxon:1001986","l":"Leptospira interrogans serovar Copenhageni str. 2006007831","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001986","Leptospira interrogans serovar Copenhageni str. 2006007831"]]},{"id":"NCBITaxon:1001987","l":"Leptospira interrogans serovar Copenhageni str. 2001025091","na":1,"nb":1,"a":[["endothermic-animal-associated-environment-habitatmech-bacdive-3d543e6b49.html","endothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1001987","Leptospira interrogans serovar Copenhageni str. 2001025091"]]},{"id":"NCBITaxon:1001989","l":"Escherichia coli PCN033","na":1,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A1001989","Escherichia coli PCN033"]]},{"id":"NCBITaxon:1002339","l":"Psychrobacter sp. 1501(2011)","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1002339","Psychrobacter sp. 1501(2011)"]]},{"id":"NCBITaxon:1002526","l":"Halopseudomonas formosensis","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A1002526","Halopseudomonas formosensis"]]},{"id":"NCBITaxon:1002691","l":"Occallatibacter savannae","na":1,"nb":1,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A1002691","Occallatibacter savannae"]]},{"id":"NCBITaxon:1002795","l":"Pectinatus sottacetonis","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A1002795","Pectinatus sottacetonis"]]},{"id":"NCBITaxon:1002809","l":"Solibacillus silvestris StLB046","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1002809","Solibacillus silvestris StLB046"]]},{"id":"NCBITaxon:1003188","l":"Salmonella enterica subsp. enterica serovar Agona str. SA-4","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A1003188","Salmonella enterica subsp. enterica serovar Agona str. SA-4"]]},{"id":"NCBITaxon:1003200","l":"Achromobacter insuavis AXX-A","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1003200","Achromobacter insuavis AXX-A"]]},{"id":"NCBITaxon:1003201","l":"Rickettsia typhi str. TH1527","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1003201","Rickettsia typhi str. TH1527"]]},{"id":"NCBITaxon:1004165","l":"Photorhabdus caribbeanensis","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1004165","Photorhabdus caribbeanensis"]]},{"id":"NCBITaxon:1004166","l":"Photorhabdus hainanensis","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1004166","Photorhabdus hainanensis"]]},{"id":"NCBITaxon:1004261","l":"Oceanobacillus indicireducens","na":1,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A1004261","Oceanobacillus indicireducens"]]},{"id":"NCBITaxon:1004279","l":"Mesorhizobium muleiense","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1004279","Mesorhizobium muleiense"]]},{"id":"NCBITaxon:1004316","l":"Vibrio sonorensis","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A1004316","Vibrio sonorensis"]]},{"id":"NCBITaxon:1004322","l":"Vibrio crosai","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A1004322","Vibrio crosai"]]},{"id":"NCBITaxon:1004326","l":"Vibrio mexicanus","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A1004326","Vibrio mexicanus"]]},{"id":"NCBITaxon:1004836","l":"Gluconacetobacter sp. SXCC-1","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A1004836","Gluconacetobacter sp. SXCC-1"]]},{"id":"NCBITaxon:1005043","l":"Candidatus Regiella insecticola 5.15","na":1,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1005043","Candidatus Regiella insecticola 5.15"]]},{"id":"NCBITaxon:1005046","l":"[Haemophilus] ducreyi ATCC 33921","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1005046","[Haemophilus] ducreyi ATCC 33921"]]},{"id":"NCBITaxon:1005048","l":"Collimonas fungivorans Ter331","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1005048","Collimonas fungivorans Ter331"]]},{"id":"NCBITaxon:1005057","l":"Buchnera aphidicola str. Ua (Uroleucon ambrosiae)","na":1,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1005057","Buchnera aphidicola str. Ua (Uroleucon ambrosiae)"]]},{"id":"NCBITaxon:1005090","l":"Buchnera aphidicola str. Ak (Acyrthosiphon kondoi)","na":1,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1005090","Buchnera aphidicola str. Ak (Acyrthosiphon kondoi)"]]},{"id":"NCBITaxon:1005403","l":"Escherichia coli 93.0055","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A1005403","Escherichia coli 93.0055"]]},{"id":"NCBITaxon:1005404","l":"Escherichia coli 93.0056","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A1005404","Escherichia coli 93.0056"]]},{"id":"NCBITaxon:1005405","l":"Escherichia coli 94.0618","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A1005405","Escherichia coli 94.0618"]]},{"id":"NCBITaxon:1005462","l":"Escherichia coli 8.0566","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A1005462","Escherichia coli 8.0566"]]},{"id":"NCBITaxon:1005463","l":"Escherichia coli 8.0416","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A1005463","Escherichia coli 8.0416"]]},{"id":"NCBITaxon:1005464","l":"Escherichia coli 8.0569","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A1005464","Escherichia coli 8.0569"]]},{"id":"NCBITaxon:1005527","l":"Escherichia coli EC4421","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1005527","Escherichia coli EC4421"]]},{"id":"NCBITaxon:1005528","l":"Escherichia coli EC4422","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1005528","Escherichia coli EC4422"]]},{"id":"NCBITaxon:1005704","l":"Streptococcus oralis SK255","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1005704","Streptococcus oralis SK255"]]},{"id":"NCBITaxon:1005925","l":"Kordiimonas aestuarii","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1005925","Kordiimonas aestuarii"]]},{"id":"NCBITaxon:1006551","l":"Klebsiella michiganensis KCTC 1686","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1006551","Klebsiella michiganensis KCTC 1686"]]},{"id":"NCBITaxon:1007064","l":"Streptococcus suis ST3","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1007064","Streptococcus suis ST3"]]},{"id":"NCBITaxon:1007065","l":"Escherichia coli M15","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1007065","Escherichia coli M15"]]},{"id":"NCBITaxon:1007098","l":"Deinococcus daejeonensis","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A1007098","Deinococcus daejeonensis"]]},{"id":"NCBITaxon:1007104","l":"Sphingomonas sp. S17","na":1,"nb":1,"a":[["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A1007104","Sphingomonas sp. S17"]]},{"id":"NCBITaxon:1007511","l":"Sphingobium limneticum","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A1007511","Sphingobium limneticum"]]},{"id":"NCBITaxon:1007656","l":"Pseudomonas fluorescens Wayne1","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1007656","Pseudomonas fluorescens Wayne1"]]},{"id":"NCBITaxon:1008392","l":"Chitinispirillum alkaliphilum","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A1008392","Chitinispirillum alkaliphilum"]]},{"id":"NCBITaxon:1009419","l":"Verrucomicrobia bacterium SCGC AAA164-N20","na":1,"nb":1,"a":[["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1009419","Verrucomicrobia bacterium SCGC AAA164-N20"]]},{"id":"NCBITaxon:1009421","l":"Verrucomicrobia bacterium SCGC AAA164-P11","na":1,"nb":1,"a":[["marine-biome-envo-00000447.html","marine biome"]],"b":[["NCBITaxon%3A1009421","Verrucomicrobia bacterium SCGC AAA164-P11"]]},{"id":"NCBITaxon:1009695","l":"Verrucomicrobia bacterium SCGC AAA164-A21","na":1,"nb":1,"a":[["inlet-envo-00000475.html","inlet"]],"b":[["NCBITaxon%3A1009695","Verrucomicrobia bacterium SCGC AAA164-A21"]]},{"id":"NCBITaxon:1009853","l":"Xanthomonas oryzae X11-5A","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1009853","Xanthomonas oryzae X11-5A"]]},{"id":"NCBITaxon:1009854","l":"Xanthomonas oryzae X8-1A","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1009854","Xanthomonas oryzae X8-1A"]]},{"id":"NCBITaxon:1010610","l":"Methylobacterium gnaphalii","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1010610","Methylobacterium gnaphalii"]]},{"id":"NCBITaxon:1016997","l":"Polycladomyces subterraneus","na":1,"nb":1,"a":[["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A1016997","Polycladomyces subterraneus"]]},{"id":"NCBITaxon:1017018","l":"Paenimyroides anatoliense","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A1017018","Paenimyroides anatoliense"]]},{"id":"NCBITaxon:1017177","l":"Gluconacetobacter tumulicola","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1017177","Gluconacetobacter tumulicola"]]},{"id":"NCBITaxon:1017181","l":"Gluconacetobacter asukensis","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1017181","Gluconacetobacter asukensis"]]},{"id":"NCBITaxon:1017264","l":"Bordetella pertussis CS","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1017264","Bordetella pertussis CS"]]},{"id":"NCBITaxon:1017266","l":"Lactococcus garvieae UNIUD074","na":1,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1017266","Lactococcus garvieae UNIUD074"]]},{"id":"NCBITaxon:1017277","l":"","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A296995","Exiguobacterium indicum"]]},{"id":"NCBITaxon:102127","l":"Baaleninema simplex PCC 7105","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A102127","Baaleninema simplex PCC 7105"]]},{"id":"NCBITaxon:102227","l":"Pseudonocardia kongjuensis","na":1,"nb":1,"a":[["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A102227","Pseudonocardia kongjuensis"]]},{"id":"NCBITaxon:1027249","l":"Gracilibacillus kekensis","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A1027249","Gracilibacillus kekensis"]]},{"id":"NCBITaxon:1027364","l":"Edwardsiella tarda DT","na":1,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1027364","Edwardsiella tarda DT"]]},{"id":"NCBITaxon:1027372","l":"Enterococcus faecalis OG1X","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1027372","Enterococcus faecalis OG1X"]]},{"id":"NCBITaxon:1027373","l":"Nitrosopumilus sp. AR","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1027373","Nitrosopumilus sp. AR"]]},{"id":"NCBITaxon:1027374","l":"Nitrosopumilus sp. SJ","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1027374","Nitrosopumilus sp. SJ"]]},{"id":"NCBITaxon:1027397","l":"Erwinia amylovora ACW56400","na":1,"nb":1,"a":[["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A1027397","Erwinia amylovora ACW56400"]]},{"id":"NCBITaxon:1028743","l":"Arenibacter hampyeongensis","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1028743","Arenibacter hampyeongensis"]]},{"id":"NCBITaxon:1028745","l":"Aestuariibaculum suncheonense","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1028745","Aestuariibaculum suncheonense"]]},{"id":"NCBITaxon:1028746","l":"Christiangramia aestuarii","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1028746","Christiangramia aestuarii"]]},{"id":"NCBITaxon:1028749","l":"Microbulbifer gwangyangensis","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1028749","Microbulbifer gwangyangensis"]]},{"id":"NCBITaxon:1028750","l":"Photobacterium aestuarii","na":1,"nb":1,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["NCBITaxon%3A1028750","Photobacterium aestuarii"]]},{"id":"NCBITaxon:1028752","l":"Shewanella aestuarii","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1028752","Shewanella aestuarii"]]},{"id":"NCBITaxon:1028799","l":"Staphylococcus aureus subsp. aureus VC40","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1028799","Staphylococcus aureus subsp. aureus VC40"]]},{"id":"NCBITaxon:1028801","l":"Neorhizobium galegae bv. officinalis bv. officinalis str. HAMBI 1141","na":1,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A1028801","Neorhizobium galegae bv. officinalis bv. officinalis str. HAMBI 1141"]]},{"id":"NCBITaxon:1028804","l":"Haemophilus haemolyticus M21127","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1028804","Haemophilus haemolyticus M21127"]]},{"id":"NCBITaxon:1028805","l":"Haemophilus haemolyticus M21621","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1028805","Haemophilus haemolyticus M21621"]]},{"id":"NCBITaxon:1028806","l":"Haemophilus haemolyticus M21639","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1028806","Haemophilus haemolyticus M21639"]]},{"id":"NCBITaxon:102891","l":"Frankia sp. ACN1ag","na":1,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A102891","Frankia sp. ACN1ag"]]},{"id":"NCBITaxon:1028989","l":"Pseudomonas sp. StFLB209","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1028989","Pseudomonas sp. StFLB209"]]},{"id":"NCBITaxon:1029822","l":"Ligilactobacillus salivarius NIAS840","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1029822","Ligilactobacillus salivarius NIAS840"]]},{"id":"NCBITaxon:1029823","l":"Acinetobacter sp. P8-3-8","na":1,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1029823","Acinetobacter sp. P8-3-8"]]},{"id":"NCBITaxon:1029824","l":"Kocuria rhizophila P7-4","na":1,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1029824","Kocuria rhizophila P7-4"]]},{"id":"NCBITaxon:1029977","l":"Salmonella enterica subsp. enterica serovar Paratyphi B str. SARA42","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1029977","Salmonella enterica subsp. enterica serovar Paratyphi B str. SARA42"]]},{"id":"NCBITaxon:1029978","l":"Salmonella enterica subsp. enterica serovar Typhimurium str. SARA13","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1029978","Salmonella enterica subsp. enterica serovar Typhimurium str. SARA13"]]},{"id":"NCBITaxon:1029980","l":"Salmonella enterica subsp. enterica serovar Kentucky str. 5349","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1029980","Salmonella enterica subsp. enterica serovar Kentucky str. 5349"]]},{"id":"NCBITaxon:1029982","l":"Salmonella enterica subsp. enterica serovar Tallahassee str. 0012","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1029982","Salmonella enterica subsp. enterica serovar Tallahassee str. 0012"]]},{"id":"NCBITaxon:1029983","l":"Salmonella enterica subsp. enterica serovar Abony str. 0014","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1029983","Salmonella enterica subsp. enterica serovar Abony str. 0014"]]},{"id":"NCBITaxon:1029997","l":"Salmonella enterica subsp. enterica serovar Heidelberg str. SARA35","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1029997","Salmonella enterica subsp. enterica serovar Heidelberg str. SARA35"]]},{"id":"NCBITaxon:1030009","l":"Listeria monocytogenes M7","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1030009","Listeria monocytogenes M7"]]},{"id":"NCBITaxon:1030145","l":"Pseudomonas tolaasii PMS117","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A1030145","Pseudomonas tolaasii PMS117"]]},{"id":"NCBITaxon:1031273","l":"Gaetbulibacter lutimaris","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1031273","Gaetbulibacter lutimaris"]]},{"id":"NCBITaxon:1031711","l":"Ralstonia solanacearum Po82","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1031711","Ralstonia solanacearum Po82"]]},{"id":"NCBITaxon:1032","l":"Thiothrix sp.","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A1032","Thiothrix sp."]]},{"id":"NCBITaxon:1032071","l":"Aliarcobacter cryaerophilus D2610","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1032071","Aliarcobacter cryaerophilus D2610"]]},{"id":"NCBITaxon:1032475","l":"Marine group II euryarchaeote SCGC AAA288-C18","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A1032475","Marine group II euryarchaeote SCGC AAA288-C18"]]},{"id":"NCBITaxon:1032505","l":"Fusobacterium sp. OBRC1","na":1,"nb":1,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A1032505","Fusobacterium sp. OBRC1"]]},{"id":"NCBITaxon:1032866","l":"Pasteurella multocida subsp. gallicida str. Anand1_poultry","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1032866","Pasteurella multocida subsp. gallicida str. Anand1_poultry"]]},{"id":"NCBITaxon:1033813","l":"Escherichia coli NA114","na":1,"nb":1,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A1033813","Escherichia coli NA114"]]},{"id":"NCBITaxon:1033922","l":"Rhodococcus sp. WB1","na":1,"nb":1,"a":[["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A1033922","Rhodococcus sp. WB1"]]},{"id":"NCBITaxon:1033991","l":"Rhizobium leguminosarum bv. trifolii CB782","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1033991","Rhizobium leguminosarum bv. trifolii CB782"]]},{"id":"NCBITaxon:1033992","l":"Ectopseudomonas oleovorans MOIL14HWK12","na":1,"nb":1,"a":[["plant-bto-0001481.html","plant"]],"b":[["NCBITaxon%3A1033992","Ectopseudomonas oleovorans MOIL14HWK12"]]},{"id":"NCBITaxon:1033993","l":"Pseudomonas sp. MOIL14HWK12:I1","na":1,"nb":1,"a":[["plant-bto-0001481.html","plant"]],"b":[["NCBITaxon%3A1033993","Pseudomonas sp. MOIL14HWK12:I1"]]},{"id":"NCBITaxon:1033994","l":"Pseudomonas sp. MOIL14HWK12:I2","na":1,"nb":1,"a":[["plant-bto-0001481.html","plant"]],"b":[["NCBITaxon%3A1033994","Pseudomonas sp. MOIL14HWK12:I2"]]},{"id":"NCBITaxon:1034346","l":"Dielma fastidiosa","na":1,"nb":1,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A1034346","Dielma fastidiosa"]]},{"id":"NCBITaxon:1034471","l":"Xenorhabdus ishibashii","na":1,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1034471","Xenorhabdus ishibashii"]]},{"id":"NCBITaxon:1034943","l":"Legionella massiliensis","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A1034943","Legionella massiliensis"]]},{"id":"NCBITaxon:1034944","l":"Legionella tunisiensis","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A1034944","Legionella tunisiensis"]]},{"id":"NCBITaxon:1035189","l":"Streptococcus infantis SK970","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1035189","Streptococcus infantis SK970"]]},{"id":"NCBITaxon:1035309","l":"Ceratocystis fimbriata CBS 114723","na":1,"nb":1,"a":[["plant-bto-0001481.html","plant"]],"b":[["NCBITaxon%3A1035309","Ceratocystis fimbriata CBS 114723"]]},{"id":"NCBITaxon:1035817","l":"Bifidobacterium longum subsp. longum KACC 91563","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1035817","Bifidobacterium longum subsp. longum KACC 91563"]]},{"id":"NCBITaxon:1035916","l":"Echinicola shivajiensis","na":1,"nb":1,"a":[["brackish-water-body-envo-01001321.html","brackish water body"]],"b":[["NCBITaxon%3A1035916","Echinicola shivajiensis"]]},{"id":"NCBITaxon:1036133","l":"Kistimonas scapharcae","na":1,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1036133","Kistimonas scapharcae"]]},{"id":"NCBITaxon:1036177","l":"Lactiplantibacillus plantarum subsp. plantarum NC8","na":1,"nb":1,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A1036177","Lactiplantibacillus plantarum subsp. plantarum NC8"]]},{"id":"NCBITaxon:1036180","l":"Pseudoduganella lurida","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A1036180","Pseudoduganella lurida"]]},{"id":"NCBITaxon:1036182","l":"Paractinoplanes atraurantiacus","na":1,"nb":1,"a":[["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A1036182","Paractinoplanes atraurantiacus"]]},{"id":"NCBITaxon:1036674","l":"Idiomarina sp. A28L","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A1036674","Idiomarina sp. A28L"]]},{"id":"NCBITaxon:1036679","l":"Methanosarcina spelaei","na":1,"nb":1,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A1036679","Methanosarcina spelaei"]]},{"id":"NCBITaxon:1036735","l":"Bifidobacterium breve CECT 7263","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1036735","Bifidobacterium breve CECT 7263"]]},{"id":"NCBITaxon:1036778","l":"Allobosea lathyri","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1036778","Allobosea lathyri"]]},{"id":"NCBITaxon:1036779","l":"Allobosea lupini","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1036779","Allobosea lupini"]]},{"id":"NCBITaxon:1036780","l":"Allobosea robiniae","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1036780","Allobosea robiniae"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. PCC 7120 = FACHB-418","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A103690","Nostoc sp. PCC 7120 = FACHB-418"]]},{"id":"NCBITaxon:103725","l":"Kutzneria kofuensis","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A103725","Kutzneria kofuensis"]]},{"id":"NCBITaxon:1037262","l":"Salmonella enterica subsp. enterica serovar Typhimurium str. AZ 057","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1037262","Salmonella enterica subsp. enterica serovar Typhimurium str. AZ 057"]]},{"id":"NCBITaxon:1037377","l":"Chryseobacterium viscerum","na":1,"nb":1,"a":[["ectothermic-animal-associated-environment-habitatmech-bacdive-e68bf42dcb.html","ectothermic-animal-associated environment"]],"b":[["NCBITaxon%3A1037377","Chryseobacterium viscerum"]]},{"id":"NCBITaxon:1037409","l":"Bradyrhizobium japonicum USDA 6","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1037409","Bradyrhizobium japonicum USDA 6"]]},{"id":"NCBITaxon:1037890","l":"Klebsiella pneumoniae JH1","na":1,"nb":1,"a":[["urinary-tract-bto-0001244.html","urinary tract"]],"b":[["NCBITaxon%3A1037890","Klebsiella pneumoniae JH1"]]},{"id":"NCBITaxon:1037908","l":"Klebsiella pneumoniae 1162281","na":1,"nb":1,"a":[["urinary-tract-bto-0001244.html","urinary tract"]],"b":[["NCBITaxon%3A1037908","Klebsiella pneumoniae 1162281"]]},{"id":"NCBITaxon:1038014","l":"Aquimarina amphilecti","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1038014","Aquimarina amphilecti"]]},{"id":"NCBITaxon:103838","l":"Nonomuraea turkmeniaca","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A103838","Nonomuraea turkmeniaca"]]},{"id":"NCBITaxon:1038845","l":"Flavobacterium rakeshii","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1038845","Flavobacterium rakeshii"]]},{"id":"NCBITaxon:1038860","l":"Bradyrhizobium elkanii WSM2783","na":1,"nb":1,"a":[["plant-bto-0001481.html","plant"]],"b":[["NCBITaxon%3A1038860","Bradyrhizobium elkanii WSM2783"]]},{"id":"NCBITaxon:1038861","l":"Bradyrhizobium japonicum USDA 122","na":1,"nb":1,"a":[["plant-bto-0001481.html","plant"]],"b":[["NCBITaxon%3A1038861","Bradyrhizobium japonicum USDA 122"]]},{"id":"NCBITaxon:1038862","l":"Bradyrhizobium japonicum USDA 124","na":1,"nb":1,"a":[["plant-bto-0001481.html","plant"]],"b":[["NCBITaxon%3A1038862","Bradyrhizobium japonicum USDA 124"]]},{"id":"NCBITaxon:1038863","l":"Bradyrhizobium japonicum USDA 135","na":1,"nb":1,"a":[["plant-bto-0001481.html","plant"]],"b":[["NCBITaxon%3A1038863","Bradyrhizobium japonicum USDA 135"]]},{"id":"NCBITaxon:1038864","l":"Bradyrhizobium ottawense USDA 4","na":1,"nb":1,"a":[["plant-bto-0001481.html","plant"]],"b":[["NCBITaxon%3A1038864","Bradyrhizobium ottawense USDA 4"]]},{"id":"NCBITaxon:1038866","l":"Bradyrhizobium sp. WSM2793","na":1,"nb":1,"a":[["plant-bto-0001481.html","plant"]],"b":[["NCBITaxon%3A1038866","Bradyrhizobium sp. WSM2793"]]},{"id":"NCBITaxon:103891","l":"Veillonella criceti","na":1,"nb":1,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A103891","Veillonella criceti"]]},{"id":"NCBITaxon:1038922","l":"Pseudomonas fluorescens Q2-87","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1038922","Pseudomonas fluorescens Q2-87"]]},{"id":"NCBITaxon:1038923","l":"Pseudomonas fluorescens Q8r1-96","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A1038923","Pseudomonas fluorescens Q8r1-96"]]},{"id":"NCBITaxon:1040964","l":"Ligilactobacillus ruminis SPM0211","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1040964","Ligilactobacillus ruminis SPM0211"]]},{"id":"NCBITaxon:1040978","l":"Cupriavidus taiwanensis STM 6018","na":1,"nb":1,"a":[["city-envo-00000856.html","city"]],"b":[["NCBITaxon%3A1040978","Cupriavidus taiwanensis STM 6018"]]},{"id":"NCBITaxon:1040981","l":"Mesorhizobium ciceri WSM4083","na":1,"nb":1,"a":[["island-envo-00000098.html","island"]],"b":[["NCBITaxon%3A1040981","Mesorhizobium ciceri WSM4083"]]},{"id":"NCBITaxon:1040988","l":"Bradyrhizobium sp. WSM4349","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1040988","Bradyrhizobium sp. WSM4349"]]},{"id":"NCBITaxon:1040989","l":"Bradyrhizobium sp. ARR65","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A1040989","Bradyrhizobium sp. ARR65"]]},{"id":"NCBITaxon:1041141","l":"Rhizobium leguminosarum bv. viciae 128C53","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1041141","Rhizobium leguminosarum bv. viciae 128C53"]]},{"id":"NCBITaxon:1041157","l":"Sinorhizobium meliloti WSM1022","na":1,"nb":1,"a":[["city-envo-00000856.html","city"]],"b":[["NCBITaxon%3A1041157","Sinorhizobium meliloti WSM1022"]]},{"id":"NCBITaxon:104205","l":"Streptomonospora salina","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A104205","Streptomonospora salina"]]},{"id":"NCBITaxon:1042399","l":"Lactobacillus delbrueckii subsp. bulgaricus CNCM I-1632","na":1,"nb":1,"a":[["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A1042399","Lactobacillus delbrueckii subsp. bulgaricus CNCM I-1632"]]},{"id":"NCBITaxon:1042400","l":"Lactobacillus delbrueckii subsp. bulgaricus CNCM I-1519","na":1,"nb":1,"a":[["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A1042400","Lactobacillus delbrueckii subsp. bulgaricus CNCM I-1519"]]},{"id":"NCBITaxon:1042402","l":"Lactococcus lactis subsp. lactis CNCM I-1631","na":1,"nb":1,"a":[["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A1042402","Lactococcus lactis subsp. lactis CNCM I-1631"]]},{"id":"NCBITaxon:1042403","l":"Bifidobacterium animalis subsp. lactis CNCM I-2494","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1042403","Bifidobacterium animalis subsp. lactis CNCM I-2494"]]},{"id":"NCBITaxon:1042404","l":"Streptococcus thermophilus CNCM I-1630","na":1,"nb":1,"a":[["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A1042404","Streptococcus thermophilus CNCM I-1630"]]},{"id":"NCBITaxon:1042877","l":"Thermococcus sp. 4557","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1042877","Thermococcus sp. 4557"]]},{"id":"NCBITaxon:1045558","l":"Neptunomonas qingdaonensis","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1045558","Neptunomonas qingdaonensis"]]},{"id":"NCBITaxon:1045764","l":"Methanothermobacter crinale","na":1,"nb":1,"a":[["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A1045764","Methanothermobacter crinale"]]},{"id":"NCBITaxon:1045854","l":"Weissella koreensis KACC 15510","na":1,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A1045854","Weissella koreensis KACC 15510"]]},{"id":"NCBITaxon:1045857","l":"Cronobacter sakazakii ES713","na":1,"nb":1,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A1045857","Cronobacter sakazakii ES713"]]},{"id":"NCBITaxon:1046128","l":"Vibrio zhanjiangensis","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A1046128","Vibrio zhanjiangensis"]]},{"id":"NCBITaxon:1046556","l":"Nocardioides daejeonensis","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A1046556","Nocardioides daejeonensis"]]},{"id":"NCBITaxon:1046629","l":"Streptococcus salivarius 57.I","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1046629","Streptococcus salivarius 57.I"]]},{"id":"NCBITaxon:104663","l":"Chitinophaga filiformis","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A104663","Chitinophaga filiformis"]]},{"id":"NCBITaxon:104665","l":"Pseudomonas sp. DSM 12877","na":1,"nb":1,"a":[["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A104665","Pseudomonas sp. DSM 12877"]]},{"id":"NCBITaxon:1046935","l":"BRC1 bacterium SCGC AAA257-C11","na":1,"nb":1,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A1046935","BRC1 bacterium SCGC AAA257-C11"]]},{"id":"NCBITaxon:1046954","l":"Cloacimonetes bacterium SCGC AAA252-E20","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046954","Cloacimonetes bacterium SCGC AAA252-E20"]]},{"id":"NCBITaxon:1046955","l":"Cloacimonetes bacterium SCGC AAA252-F02","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046955","Cloacimonetes bacterium SCGC AAA252-F02"]]},{"id":"NCBITaxon:1046956","l":"Cloacimonetes bacterium SCGC AAA252-G07","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046956","Cloacimonetes bacterium SCGC AAA252-G07"]]},{"id":"NCBITaxon:1046957","l":"Cloacimonetes bacterium SCGC AAA252-G08","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046957","Cloacimonetes bacterium SCGC AAA252-G08"]]},{"id":"NCBITaxon:1046958","l":"Cloacimonetes bacterium SCGC AAA252-I11","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046958","Cloacimonetes bacterium SCGC AAA252-I11"]]},{"id":"NCBITaxon:1046959","l":"Cloacimonetes bacterium SCGC AAA252-I16","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046959","Cloacimonetes bacterium SCGC AAA252-I16"]]},{"id":"NCBITaxon:1046960","l":"Cloacimonetes bacterium SCGC AAA252-K16","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046960","Cloacimonetes bacterium SCGC AAA252-K16"]]},{"id":"NCBITaxon:1046961","l":"Cloacimonetes bacterium SCGC AAA252-L05","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046961","Cloacimonetes bacterium SCGC AAA252-L05"]]},{"id":"NCBITaxon:1046962","l":"Cloacimonetes bacterium SCGC AAA252-L13","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046962","Cloacimonetes bacterium SCGC AAA252-L13"]]},{"id":"NCBITaxon:1046963","l":"Cloacimonetes bacterium SCGC AAA252-M08","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046963","Cloacimonetes bacterium SCGC AAA252-M08"]]},{"id":"NCBITaxon:1046964","l":"Cloacimonetes bacterium SCGC AAA252-N05","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046964","Cloacimonetes bacterium SCGC AAA252-N05"]]},{"id":"NCBITaxon:1046965","l":"Cloacimonetes bacterium SCGC AAA252-N14","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046965","Cloacimonetes bacterium SCGC AAA252-N14"]]},{"id":"NCBITaxon:1046966","l":"Cloacimonetes bacterium SCGC AAA252-N17","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046966","Cloacimonetes bacterium SCGC AAA252-N17"]]},{"id":"NCBITaxon:1046967","l":"Cloacimonetes bacterium SCGC AAA252-O02","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046967","Cloacimonetes bacterium SCGC AAA252-O02"]]},{"id":"NCBITaxon:1046970","l":"Cloacimonetes bacterium SCGC AAA252-O17","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046970","Cloacimonetes bacterium SCGC AAA252-O17"]]},{"id":"NCBITaxon:1046971","l":"Cloacimonetes bacterium SCGC AAA252-P02","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046971","Cloacimonetes bacterium SCGC AAA252-P02"]]},{"id":"NCBITaxon:1046972","l":"Cloacimonetes bacterium SCGC AAA252-P10","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046972","Cloacimonetes bacterium SCGC AAA252-P10"]]},{"id":"NCBITaxon:1046973","l":"Cloacimonetes bacterium SCGC AAA252-P14","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046973","Cloacimonetes bacterium SCGC AAA252-P14"]]},{"id":"NCBITaxon:1046974","l":"Cloacimonetes bacterium SCGC AAA255-B16","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046974","Cloacimonetes bacterium SCGC AAA255-B16"]]},{"id":"NCBITaxon:1046975","l":"Cloacimonetes bacterium SCGC AAA255-C20","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046975","Cloacimonetes bacterium SCGC AAA255-C20"]]},{"id":"NCBITaxon:1046978","l":"Cloacimonetes bacterium SCGC AAA255-L20","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046978","Cloacimonetes bacterium SCGC AAA255-L20"]]},{"id":"NCBITaxon:1046983","l":"Hydrogenedentes bacterium JGI 0000059-N10","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1046983","Hydrogenedentes bacterium JGI 0000059-N10"]]},{"id":"NCBITaxon:1046991","l":"Acetothermia bacterium SCGC AAA255-C06","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1046991","Acetothermia bacterium SCGC AAA255-C06"]]},{"id":"NCBITaxon:1047002","l":"Microgenomates bacterium SCGC AAA255-J07","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1047002","Microgenomates bacterium SCGC AAA255-J07"]]},{"id":"NCBITaxon:1047006","l":"Omnitrophica bacterium SCGC AAA252-B19","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1047006","Omnitrophica bacterium SCGC AAA252-B19"]]},{"id":"NCBITaxon:1047007","l":"Omnitrophica bacterium SCGC AAA257-O07","na":1,"nb":1,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A1047007","Omnitrophica bacterium SCGC AAA257-O07"]]},{"id":"NCBITaxon:1047009","l":"Fidelibacterota bacterium SCGC AAA011-A05","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047009","Fidelibacterota bacterium SCGC AAA011-A05"]]},{"id":"NCBITaxon:1047012","l":"Caldiserica bacterium JGI 0000059-M03","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047012","Caldiserica bacterium JGI 0000059-M03"]]},{"id":"NCBITaxon:1047014","l":"Aminicenantes bacterium SCGC AAA252-B17","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1047014","Aminicenantes bacterium SCGC AAA252-B17"]]},{"id":"NCBITaxon:1047053","l":"Atribacteria bacterium JGI 0000059-I14","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047053","Atribacteria bacterium JGI 0000059-I14"]]},{"id":"NCBITaxon:1047054","l":"Fidelibacterota bacterium SCGC AAA257-N23","na":1,"nb":1,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A1047054","Fidelibacterota bacterium SCGC AAA257-N23"]]},{"id":"NCBITaxon:1047055","l":"Fidelibacterota bacterium JGI 0000039-D08","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047055","Fidelibacterota bacterium JGI 0000039-D08"]]},{"id":"NCBITaxon:1047056","l":"Fidelibacterota bacterium JGI 0000039-E15","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047056","Fidelibacterota bacterium JGI 0000039-E15"]]},{"id":"NCBITaxon:1047058","l":"Fidelibacterota bacterium JGI 0000039-O11","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047058","Fidelibacterota bacterium JGI 0000039-O11"]]},{"id":"NCBITaxon:1047059","l":"Fidelibacterota bacterium JGI 0000059-D20","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047059","Fidelibacterota bacterium JGI 0000059-D20"]]},{"id":"NCBITaxon:1047060","l":"Fidelibacterota bacterium JGI 0000059-E23","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047060","Fidelibacterota bacterium JGI 0000059-E23"]]},{"id":"NCBITaxon:1047061","l":"Fidelibacterota bacterium JGI 0000059-L03","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047061","Fidelibacterota bacterium JGI 0000059-L03"]]},{"id":"NCBITaxon:1047063","l":"WS1 bacterium JGI 0000059-K21","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047063","WS1 bacterium JGI 0000059-K21"]]},{"id":"NCBITaxon:1047066","l":"Latescibacteria bacterium SCGC AAA257-K07","na":1,"nb":1,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A1047066","Latescibacteria bacterium SCGC AAA257-K07"]]},{"id":"NCBITaxon:1047073","l":"Cloacimonetes bacterium JGI 0000039-I17","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047073","Cloacimonetes bacterium JGI 0000039-I17"]]},{"id":"NCBITaxon:1047076","l":"Cloacimonetes bacterium JGI 0000039-M09","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047076","Cloacimonetes bacterium JGI 0000039-M09"]]},{"id":"NCBITaxon:1047077","l":"Cloacimonetes bacterium JGI 0000039-P09","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047077","Cloacimonetes bacterium JGI 0000039-P09"]]},{"id":"NCBITaxon:1047078","l":"Cloacimonetes bacterium JGI 0000059-F17","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047078","Cloacimonetes bacterium JGI 0000059-F17"]]},{"id":"NCBITaxon:1047079","l":"Cloacimonetes bacterium JGI 0000059-L07","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047079","Cloacimonetes bacterium JGI 0000059-L07"]]},{"id":"NCBITaxon:1047080","l":"Cloacimonetes bacterium JGI 0000059-P03","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047080","Cloacimonetes bacterium JGI 0000059-P03"]]},{"id":"NCBITaxon:1047081","l":"Cloacimonetes bacterium JGI 0000059-P11","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1047081","Cloacimonetes bacterium JGI 0000059-P11"]]},{"id":"NCBITaxon:1048221","l":"Mucilaginibacter litoreus","na":1,"nb":1,"a":[["marine-sediment-envo-03000033.html","marine sediment"]],"b":[["NCBITaxon%3A1048221","Mucilaginibacter litoreus"]]},{"id":"NCBITaxon:1048245","l":"Mycobacterium canetti CIPT 140010059","na":1,"nb":1,"a":[["multicellular-organism-habitatmech-madin-d6e2979509.html","multicellular organism"]],"b":[["NCBITaxon%3A1048245","Mycobacterium canetti CIPT 140010059"]]},{"id":"NCBITaxon:1048332","l":"Streptococcus salivarius CCHSS3","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1048332","Streptococcus salivarius CCHSS3"]]},{"id":"NCBITaxon:1048340","l":"Marininema mesophilum","na":1,"nb":1,"a":[["sediment-envo-00002007.html","sediment"]],"b":[["NCBITaxon%3A1048340","Marininema mesophilum"]]},{"id":"NCBITaxon:1048357","l":"Nocardiopsis coralliicola","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A1048357","Nocardiopsis coralliicola"]]},{"id":"NCBITaxon:1048380","l":"Fusibacter sp. 3D3","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A1048380","Fusibacter sp. 3D3"]]},{"id":"NCBITaxon:1048396","l":"Halopenitus persicus","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A1048396","Halopenitus persicus"]]},{"id":"NCBITaxon:1048689","l":"Escherichia coli O55:H7 str. RM12579","na":1,"nb":1,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A1048689","Escherichia coli O55:H7 str. RM12579"]]},{"id":"NCBITaxon:1049564","l":"endosymbiont of Tevnia jerichonana (vent Tica)","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1049564","endosymbiont of Tevnia jerichonana (vent Tica)"]]},{"id":"NCBITaxon:1049582","l":"Deinococcus enclensis","na":1,"nb":1,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["NCBITaxon%3A1049582","Deinococcus enclensis"]]},{"id":"NCBITaxon:1049980","l":"Leptospira santarosai str. HAI134","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1049980","Leptospira santarosai str. HAI134"]]},{"id":"NCBITaxon:1049981","l":"Leptospira santarosai str. HAI1349","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1049981","Leptospira santarosai str. HAI1349"]]},{"id":"NCBITaxon:1049982","l":"Leptospira santarosai str. HAI1380","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1049982","Leptospira santarosai str. HAI1380"]]},{"id":"NCBITaxon:1049983","l":"Leptospira santarosai str. HAI821","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1049983","Leptospira santarosai str. HAI821"]]},{"id":"NCBITaxon:1050153","l":"Ornithinimicrobium murale","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1050153","Ornithinimicrobium murale"]]},{"id":"NCBITaxon:1050174","l":"Corynebacterium epidermidicanis","na":1,"nb":1,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A1050174","Corynebacterium epidermidicanis"]]},{"id":"NCBITaxon:1051006","l":"[Propionibacterium] namnetense SK182B-JCVI","na":1,"nb":1,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A1051006","[Propionibacterium] namnetense SK182B-JCVI"]]},{"id":"NCBITaxon:1051075","l":"Paracoccus denitrificans SD1","na":1,"nb":1,"a":[["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A1051075","Paracoccus denitrificans SD1"]]},{"id":"NCBITaxon:1051531","l":"Saccharothrix tamanrassetensis","na":1,"nb":1,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A1051531","Saccharothrix tamanrassetensis"]]},{"id":"NCBITaxon:1051651","l":"Lacticaseibacillus casei 21/1","na":1,"nb":1,"a":[["silage-envo-00003030.html","silage"]],"b":[["NCBITaxon%3A1051651","Lacticaseibacillus casei 21/1"]]},{"id":"NCBITaxon:1051653","l":"Lacticaseibacillus casei A2-362","na":1,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A1051653","Lacticaseibacillus casei A2-362"]]},{"id":"NCBITaxon:1051654","l":"Lacticaseibacillus casei CRF28","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1051654","Lacticaseibacillus casei CRF28"]]},{"id":"NCBITaxon:1051658","l":"Lacticaseibacillus casei T71499","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1051658","Lacticaseibacillus casei T71499"]]},{"id":"NCBITaxon:1051659","l":"Lacticaseibacillus casei UCD174","na":1,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A1051659","Lacticaseibacillus casei UCD174"]]},{"id":"NCBITaxon:1052014","l":"Natronococcus roseus","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1052014","Natronococcus roseus"]]},{"id":"NCBITaxon:1052017","l":"Leucobacter margaritiformis","na":1,"nb":1,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A1052017","Leucobacter margaritiformis"]]},{"id":"NCBITaxon:1052257","l":"Aquihabitans daechungensis","na":1,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"]],"b":[["NCBITaxon%3A1052257","Aquihabitans daechungensis"]]},{"id":"NCBITaxon:1052260","l":"Klenkia soli","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A1052260","Klenkia soli"]]},{"id":"NCBITaxon:1053220","l":"Bacillus cereus MSX-A1","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1053220","Bacillus cereus MSX-A1"]]},{"id":"NCBITaxon:1053221","l":"Bacillus cereus MSX-A12","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1053221","Bacillus cereus MSX-A12"]]},{"id":"NCBITaxon:1053222","l":"Bacillus cereus MSX-D12","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1053222","Bacillus cereus MSX-D12"]]},{"id":"NCBITaxon:1054202","l":"Rhodobacter viridis","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1054202","Rhodobacter viridis"]]},{"id":"NCBITaxon:1054217","l":"Thermoplasmatales archaeon BRNA1","na":1,"nb":1,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A1054217","Thermoplasmatales archaeon BRNA1"]]},{"id":"NCBITaxon:105422","l":"Streptacidiphilus carbonis","na":1,"nb":1,"a":[["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A105422","Streptacidiphilus carbonis"]]},{"id":"NCBITaxon:1055192","l":"Comamonas sp. B-9","na":1,"nb":1,"a":[["pulp-bto-0001142.html","pulp"]],"b":[["NCBITaxon%3A1055192","Comamonas sp. B-9"]]},{"id":"NCBITaxon:1055466","l":"Rhodococcus canchipurensis","na":1,"nb":1,"a":[["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A1055466","Rhodococcus canchipurensis"]]},{"id":"NCBITaxon:1055526","l":"Candidatus Paraburkholderia kirkii UZHbot1","na":1,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A1055526","Candidatus Paraburkholderia kirkii UZHbot1"]]},{"id":"NCBITaxon:1056810","l":"Prolinoborus fasciculus","na":1,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A1056810","Prolinoborus fasciculus"]]},{"id":"NCBITaxon:106147","l":"Pelistega europaea","na":1,"nb":1,"a":[["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["NCBITaxon%3A106147","Pelistega europaea"]]},{"id":"NCBITaxon:1062","l":"Rhodobacter sp.","na":1,"nb":1,"a":[["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["NCBITaxon%3A1062","Rhodobacter sp."]]},{"id":"NCBITaxon:1069475","l":"Arthrobacter paludis","na":1,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["NCBITaxon%3A1069475","Arthrobacter paludis"]]},{"id":"NCBITaxon:1069495","l":"Escherichia coli XH001","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1069495","Escherichia coli XH001"]]},{"id":"NCBITaxon:1069608","l":"Neisseria meningitidis 93003","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1069608","Neisseria meningitidis 93003"]]},{"id":"NCBITaxon:1069609","l":"Neisseria meningitidis 93004","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1069609","Neisseria meningitidis 93004"]]},{"id":"NCBITaxon:1069610","l":"Neisseria meningitidis NM255","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1069610","Neisseria meningitidis NM255"]]},{"id":"NCBITaxon:1069612","l":"Neisseria meningitidis NM183","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1069612","Neisseria meningitidis NM183"]]},{"id":"NCBITaxon:1069613","l":"Neisseria meningitidis NM2781","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1069613","Neisseria meningitidis NM2781"]]},{"id":"NCBITaxon:1069614","l":"Neisseria meningitidis 69166","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1069614","Neisseria meningitidis 69166"]]},{"id":"NCBITaxon:1069615","l":"Neisseria meningitidis NM576","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1069615","Neisseria meningitidis NM576"]]},{"id":"NCBITaxon:1069616","l":"Neisseria meningitidis 98008","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1069616","Neisseria meningitidis 98008"]]},{"id":"NCBITaxon:1069617","l":"Neisseria meningitidis 80179","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1069617","Neisseria meningitidis 80179"]]},{"id":"NCBITaxon:1069618","l":"Neisseria meningitidis 92045","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1069618","Neisseria meningitidis 92045"]]},{"id":"NCBITaxon:1069619","l":"Neisseria meningitidis NM2657","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1069619","Neisseria meningitidis NM2657"]]},{"id":"NCBITaxon:1069620","l":"Neisseria meningitidis NM2795","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1069620","Neisseria meningitidis NM2795"]]},{"id":"NCBITaxon:1069621","l":"Neisseria meningitidis NM3081","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1069621","Neisseria meningitidis NM3081"]]},{"id":"NCBITaxon:1069622","l":"Neisseria meningitidis NM3001","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1069622","Neisseria meningitidis NM3001"]]},{"id":"NCBITaxon:1069623","l":"Streptococcus pneumoniae GA05578","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1069623","Streptococcus pneumoniae GA05578"]]},{"id":"NCBITaxon:1069624","l":"Streptococcus pneumoniae GA04216","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1069624","Streptococcus pneumoniae GA04216"]]},{"id":"NCBITaxon:1069626","l":"Streptococcus pneumoniae GA02506","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1069626","Streptococcus pneumoniae GA02506"]]},{"id":"NCBITaxon:1069627","l":"Streptococcus pneumoniae GA04672","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1069627","Streptococcus pneumoniae GA04672"]]},{"id":"NCBITaxon:1069628","l":"Streptococcus pneumoniae GA08825","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1069628","Streptococcus pneumoniae GA08825"]]},{"id":"NCBITaxon:1069963","l":"Janibacter alkaliphilus","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A1069963","Janibacter alkaliphilus"]]},{"id":"NCBITaxon:1070866","l":"Amycolatopsis dongchuanensis","na":1,"nb":1,"a":[["watercourse-envo-00000029.html","watercourse"]],"b":[["NCBITaxon%3A1070866","Amycolatopsis dongchuanensis"]]},{"id":"NCBITaxon:1071054","l":"Domibacillus robiginosus","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1071054","Domibacillus robiginosus"]]},{"id":"NCBITaxon:1071078","l":"Bacillus sp. NSP9.1","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A1071078","Bacillus sp. NSP9.1"]]},{"id":"NCBITaxon:1071079","l":"Bacillus sp. SB47","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A1071079","Bacillus sp. SB47"]]},{"id":"NCBITaxon:1071395","l":"Heyndrickxia coagulans XZL4","na":1,"nb":1,"a":[["immune-system-bto-0005810.html","immune system"]],"b":[["NCBITaxon%3A1071395","Heyndrickxia coagulans XZL4"]]},{"id":"NCBITaxon:1071400","l":"Lentilactobacillus buchneri subsp. silagei CD034","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A1071400","Lentilactobacillus buchneri subsp. silagei CD034"]]},{"id":"NCBITaxon:1071679","l":"Caballeronia grimmiae","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A1071679","Caballeronia grimmiae"]]},{"id":"NCBITaxon:1071886","l":"Streptococcus troglodytidis","na":1,"nb":1,"a":[["foot-bto-0000476.html","foot"]],"b":[["NCBITaxon%3A1071886","Streptococcus troglodytidis"]]},{"id":"NCBITaxon:1071983","l":"Legionella cardiaca","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1071983","Legionella cardiaca"]]},{"id":"NCBITaxon:1072459","l":"Escherichia coli O7:K1 str. CE10","na":1,"nb":1,"a":[["internal-tissue-environment-of-an-endothermic-animal-habitatmech-bacdive-319ac5f8f8.html","internal tissue environment of an endothermic animal"]],"b":[["NCBITaxon%3A1072459","Escherichia coli O7:K1 str. CE10"]]},{"id":"NCBITaxon:1073382","l":"Aeromonas veronii AER39","na":1,"nb":1,"a":[["blood-uberon-0000178.html","blood"]],"b":[["NCBITaxon%3A1073382","Aeromonas veronii AER39"]]},{"id":"NCBITaxon:1073423","l":"Carnobacterium iners","na":1,"nb":1,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A1073423","Carnobacterium iners"]]},{"id":"NCBITaxon:1074112","l":"Streptococcus mutans TCI-99","na":1,"nb":1,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A1074112","Streptococcus mutans TCI-99"]]},{"id":"NCBITaxon:1074467","l":"Companilactobacillus heilongjiangensis","na":1,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A1074467","Companilactobacillus heilongjiangensis"]]},{"id":"NCBITaxon:1074889","l":"Blattabacterium sp. (Mastotermes darwiniensis) str. MADAR","na":1,"nb":1,"a":[["hindgut-bto-0000510.html","hindgut"]],"b":[["NCBITaxon%3A1074889","Blattabacterium sp. (Mastotermes darwiniensis) str. MADAR"]]},{"id":"NCBITaxon:1075088","l":"Corynebacterium glutamicum S9114","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1075088","Corynebacterium glutamicum S9114"]]},{"id":"NCBITaxon:1075089","l":"Pasteurella multocida 36950","na":1,"nb":1,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A1075089","Pasteurella multocida 36950"]]},{"id":"NCBITaxon:107634","l":"Methylosinus sp. LW2","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A107634","Methylosinus sp. LW2"]]},{"id":"NCBITaxon:1076412","l":"Pelosinus defluvii","na":1,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A1076412","Pelosinus defluvii"]]},{"id":"NCBITaxon:1076524","l":"Rhodanobacter sp. OR92","na":1,"nb":1,"a":[["ridge-envo-00000283.html","ridge"]],"b":[["NCBITaxon%3A1076524","Rhodanobacter sp. OR92"]]},{"id":"NCBITaxon:1076588","l":"Thiolapillus brandeum","na":1,"nb":1,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A1076588","Thiolapillus brandeum"]]},{"id":"NCBITaxon:1076695","l":"Halanaerobium sehlinense","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A1076695","Halanaerobium sehlinense"]]},{"id":"NCBITaxon:1077256","l":"Methanosphaera cuniculi","na":1,"nb":1,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"]],"b":[["NCBITaxon%3A1077256","Methanosphaera cuniculi"]]},{"id":"NCBITaxon:1077936","l":"Pontibacter lucknowensis","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A1077936","Pontibacter lucknowensis"]]},{"id":"NCBITaxon:1077944","l":"Streptomyces muensis","na":1,"nb":1,"a":[["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["NCBITaxon%3A1077944","Streptomyces muensis"]]},{"id":"NCBITaxon:1078","l":"Rhodopseudomonas sp.","na":1,"nb":1,"a":[["lab-enrichment-habitatmech-bacdive-6e0d8a73f2.html","Lab-enrichment"]],"b":[["NCBITaxon%3A1078","Rhodopseudomonas sp."]]},{"id":"NCBITaxon:1078016","l":"Rhodococcus erythropolis XP","na":1,"nb":1,"a":[["resting-cell-bto-0001170.html","resting cell"]],"b":[["NCBITaxon%3A1078016","Rhodococcus erythropolis XP"]]},{"id":"NCBITaxon:1078050","l":"Seleniivibrio woodruffii","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A1078050","Seleniivibrio woodruffii"]]},{"id":"NCBITaxon:107806","l":"Buchnera aphidicola str. APS (Acyrthosiphon pisum)","na":1,"nb":1,"a":[["embryo-bto-0000379.html","embryo"]],"b":[["NCBITaxon%3A107806","Buchnera aphidicola str. APS (Acyrthosiphon pisum)"]]},{"id":"NCBITaxon:107820","l":"Thioalkalivibrio nitratis","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A107820","Thioalkalivibrio nitratis"]]},{"id":"NCBITaxon:1078754","l":"Dyadobacter arcticus","na":1,"nb":1,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A1078754","Dyadobacter arcticus"]]},{"id":"NCBITaxon:1079469","l":"Salmonella enterica subsp. enterica serovar Saintpaul str. JO2008","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1079469","Salmonella enterica subsp. enterica serovar Saintpaul str. JO2008"]]},{"id":"NCBITaxon:1079470","l":"Salmonella enterica subsp. enterica serovar Pullorum str. 19945","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1079470","Salmonella enterica subsp. enterica serovar Pullorum str. 19945"]]},{"id":"NCBITaxon:1079473","l":"Salmonella enterica subsp. enterica serovar Montevideo str. 8387","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1079473","Salmonella enterica subsp. enterica serovar Montevideo str. 8387"]]},{"id":"NCBITaxon:1079474","l":"Salmonella enterica subsp. enterica serovar Javiana str. 10721","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1079474","Salmonella enterica subsp. enterica serovar Javiana str. 10721"]]},{"id":"NCBITaxon:1079477","l":"Salmonella enterica subsp. enterica serovar Muenchen str. baa1594","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1079477","Salmonella enterica subsp. enterica serovar Muenchen str. baa1594"]]},{"id":"NCBITaxon:1079478","l":"Salmonella enterica subsp. enterica serovar Muenchen str. baa1674","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1079478","Salmonella enterica subsp. enterica serovar Muenchen str. baa1674"]]},{"id":"NCBITaxon:108003","l":"Thioalkalivibrio denitrificans","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A108003","Thioalkalivibrio denitrificans"]]},{"id":"NCBITaxon:1080072","l":"Streptococcus dentasini","na":1,"nb":1,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A1080072","Streptococcus dentasini"]]},{"id":"NCBITaxon:1080187","l":"Cupriavidus sp. UYPR2.512","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1080187","Cupriavidus sp. UYPR2.512"]]},{"id":"NCBITaxon:1081040","l":"Microbacterium murale","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1081040","Microbacterium murale"]]},{"id":"NCBITaxon:1081640","l":"Sphingomonas elodea ATCC 31461","na":1,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A1081640","Sphingomonas elodea ATCC 31461"]]},{"id":"NCBITaxon:1082276","l":"Hydrogenispora ethanolica","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1082276","Hydrogenispora ethanolica"]]},{"id":"NCBITaxon:1082479","l":"Limimonas halophila","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A1082479","Limimonas halophila"]]},{"id":"NCBITaxon:1082933","l":"Mesorhizobium amorphae CCNWGS0123","na":1,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A1082933","Mesorhizobium amorphae CCNWGS0123"]]},{"id":"NCBITaxon:1084229","l":"Yersinia pestis biovar Orientalis str. BA200901703","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1084229","Yersinia pestis biovar Orientalis str. BA200901703"]]},{"id":"NCBITaxon:1085538","l":"Leptospira interrogans serovar Bataviae str. HAI135","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1085538","Leptospira interrogans serovar Bataviae str. HAI135"]]},{"id":"NCBITaxon:1085628","l":"Streptomyces sp. Wigar10","na":1,"nb":1,"a":[["bulb-bto-0000159.html","bulb"]],"b":[["NCBITaxon%3A1085628","Streptomyces sp. Wigar10"]]},{"id":"NCBITaxon:1085644","l":"Allofrancisella frigidaquae","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A1085644","Allofrancisella frigidaquae"]]},{"id":"NCBITaxon:1085647","l":"Allofrancisella inopinata","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A1085647","Allofrancisella inopinata"]]},{"id":"NCBITaxon:1086030","l":"Shigella flexneri 5a str. M90T","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1086030","Shigella flexneri 5a str. M90T"]]},{"id":"NCBITaxon:1087253","l":"Nocardioides marmoraquaticus","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1087253","Nocardioides marmoraquaticus"]]},{"id":"NCBITaxon:1087277","l":"Williamsia spongiae","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1087277","Williamsia spongiae"]]},{"id":"NCBITaxon:1087448","l":"Exiguobacterium antarcticum B7","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A1087448","Exiguobacterium antarcticum B7"]]},{"id":"NCBITaxon:1087453","l":"Corynebacterium pseudotuberculosis 42/02-A","na":1,"nb":1,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A1087453","Corynebacterium pseudotuberculosis 42/02-A"]]},{"id":"NCBITaxon:1087483","l":"Mycobacteroides abscessus 47J26","na":1,"nb":1,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1087483","Mycobacteroides abscessus 47J26"]]},{"id":"NCBITaxon:1088719","l":"Aliivibrio fischeri SR5","na":1,"nb":1,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["NCBITaxon%3A1088719","Aliivibrio fischeri SR5"]]},{"id":"NCBITaxon:1088720","l":"Lacticaseibacillus rhamnosus ATCC 8530","na":1,"nb":1,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A1088720","Lacticaseibacillus rhamnosus ATCC 8530"]]},{"id":"NCBITaxon:1089433","l":"Francisella noatunensis subsp. noatunensis FSC772","na":1,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A1089433","Francisella noatunensis subsp. noatunensis FSC772"]]},{"id":"NCBITaxon:1089442","l":"Pediococcus damnosus 9-6b","na":1,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A1089442","Pediococcus damnosus 9-6b"]]},{"id":"NCBITaxon:1089446","l":"Corynebacterium pseudotuberculosis 267","na":1,"nb":1,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A1089446","Corynebacterium pseudotuberculosis 267"]]},{"id":"NCBITaxon:1089456","l":"Pseudomonas aeruginosa NCGM2.S1","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1089456","Pseudomonas aeruginosa NCGM2.S1"]]},{"id":"NCBITaxon:1093787","l":"Pseudomonas aeruginosa DK2","na":1,"nb":1,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1093787","Pseudomonas aeruginosa DK2"]]},{"id":"NCBITaxon:1094175","l":"Pseudomonas syringae pv. theae NCPPB 2598","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1094175","Pseudomonas syringae pv. theae NCPPB 2598"]]},{"id":"NCBITaxon:1094980","l":"Methanolobus psychrophilus R15","na":1,"nb":1,"a":[["marsh-envo-00000035.html","marsh"]],"b":[["NCBITaxon%3A1094980","Methanolobus psychrophilus R15"]]},{"id":"NCBITaxon:1095955","l":"Treponema pallidum subsp. pallidum str. Sea 81-4","na":1,"nb":1,"a":[["central-nervous-system-bto-0000227.html","central nervous system"]],"b":[["NCBITaxon%3A1095955","Treponema pallidum subsp. pallidum str. Sea 81-4"]]},{"id":"NCBITaxon:1096546","l":"Methylobacterium sp. GXF4","na":1,"nb":1,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["NCBITaxon%3A1096546","Methylobacterium sp. GXF4"]]},{"id":"NCBITaxon:1097668","l":"Burkholderia sp. YI23","na":1,"nb":1,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A1097668","Burkholderia sp. YI23"]]},{"id":"NCBITaxon:1100721","l":"Limnohabitans sp. Rim47","na":1,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A1100721","Limnohabitans sp. Rim47"]]},{"id":"NCBITaxon:1101193","l":"Methylotenera versatilis 7","na":1,"nb":1,"a":[["lake-envo-00000020.html","lake"]],"b":[["NCBITaxon%3A1101193","Methylotenera versatilis 7"]]},{"id":"NCBITaxon:1101402","l":"Flavobacterium aciduliphilum","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A1101402","Flavobacterium aciduliphilum"]]},{"id":"NCBITaxon:1104324","l":"Pyrobaculum ferrireducens","na":1,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A1104324","Pyrobaculum ferrireducens"]]},{"id":"NCBITaxon:1104565","l":"Candidatus Poribacteria bacterium WGA-4CII","na":1,"nb":1,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["NCBITaxon%3A1104565","Candidatus Poribacteria bacterium WGA-4CII"]]},{"id":"NCBITaxon:1104566","l":"Candidatus Poribacteria bacterium WGA-3G","na":1,"nb":1,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["NCBITaxon%3A1104566","Candidatus Poribacteria bacterium WGA-3G"]]},{"id":"NCBITaxon:1104568","l":"Synergistetes bacterium JGI 0000079-D21","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1104568","Synergistetes bacterium JGI 0000079-D21"]]},{"id":"NCBITaxon:1104603","l":"Atribacteria bacterium JGI 0000079-L04","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1104603","Atribacteria bacterium JGI 0000079-L04"]]},{"id":"NCBITaxon:1104604","l":"Atribacteria bacterium JGI 0000079-F20","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1104604","Atribacteria bacterium JGI 0000079-F20"]]},{"id":"NCBITaxon:1104605","l":"Armatimonadetes bacterium JGI 0000077-K19","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1104605","Armatimonadetes bacterium JGI 0000077-K19"]]},{"id":"NCBITaxon:1104619","l":"Hydrogenedentes bacterium JGI 0000077-D07","na":1,"nb":1,"a":[["waste-water-envo-00002001.html","waste water"]],"b":[["NCBITaxon%3A1104619","Hydrogenedentes bacterium JGI 0000077-D07"]]},{"id":"NCBITaxon:110662","l":"Synechococcus sp. CC9605","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A110662","Synechococcus sp. CC9605"]]},{"id":"NCBITaxon:110663","l":"Synechococcus sp. CC9616","na":1,"nb":1,"a":[["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"]],"b":[["NCBITaxon%3A110663","Synechococcus sp. CC9616"]]},{"id":"NCBITaxon:1108140","l":"Burkholderia catarinensis","na":1,"nb":1,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A1108140","Burkholderia catarinensis"]]},{"id":"NCBITaxon:1108595","l":"Chromobacterium vaccinii","na":1,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["NCBITaxon%3A1108595","Chromobacterium vaccinii"]]},{"id":"NCBITaxon:1108812","l":"Mycolicibacter longobardus","na":1,"nb":1,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A1108812","Mycolicibacter longobardus"]]},{"id":"NCBITaxon:111015","l":"Actinomyces radicidentis","na":1,"nb":1,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A111015","Actinomyces radicidentis"]]},{"id":"NCBITaxon:1110504","l":"Mycoplasmopsis agalactiae 14628","na":1,"nb":1,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1110504","Mycoplasmopsis agalactiae 14628"]]},{"id":"NCBITaxon:1110545","l":"Methanosaeta pelagica","na":1,"nb":1,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["NCBITaxon%3A1110545","Methanosaeta pelagica"]]},{"id":"NCBITaxon:1111121","l":"Atopobium sp. BV3Ac4","na":1,"nb":1,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A1111121","Atopobium sp. BV3Ac4"]]},{"id":"NCBITaxon:1111140","l":"Herminiimonas contaminans","na":1,"nb":1,"a":[["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["NCBITaxon%3A1111140","Herminiimonas contaminans"]]},{"id":"NCBITaxon:1111454","l":"Megasphaera vaginalis (ex Srinivasan et al. 2021)","na":1,"nb":1,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A1111454","Megasphaera vaginalis (ex Srinivasan et al. 2021)"]]},{"id":"NCBITaxon:1111677","l":"Enterococcus faecalis M7","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1111677","Enterococcus faecalis M7"]]},{"id":"NCBITaxon:1111760","l":"Streptococcus troglodytae","na":1,"nb":1,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A1111760","Streptococcus troglodytae"]]},{"id":"NCBITaxon:1112211","l":"Janthinobacterium lividum PAMC 25724","na":1,"nb":1,"a":[["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A1112211","Janthinobacterium lividum PAMC 25724"]]},{"id":"NCBITaxon:1112217","l":"Pseudomonas psychrotolerans L19","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1112217","Pseudomonas psychrotolerans L19"]]},{"id":"NCBITaxon:1112272","l":"Hyphomicrobium sp. 802","na":1,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A1112272","Hyphomicrobium sp. 802"]]},{"id":"NCBITaxon:1112912","l":"Brucella suis VBI22","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1112912","Brucella suis VBI22"]]},{"id":"NCBITaxon:1114867","l":"Flavobacterium plurextorum","na":1,"nb":1,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["NCBITaxon%3A1114867","Flavobacterium plurextorum"]]},{"id":"NCBITaxon:1114878","l":"Geomobilimonas luticola","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A1114878","Geomobilimonas luticola"]]},{"id":"NCBITaxon:1115809","l":"Segatella baroniae F0067","na":1,"nb":1,"a":[["mouth-environment-envo-08000002.html","mouth environment"]],"b":[["NCBITaxon%3A1115809","Segatella baroniae F0067"]]},{"id":"NCBITaxon:1117177","l":"Desulfatiferula berrensis","na":1,"nb":1,"a":[["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A1117177","Desulfatiferula berrensis"]]},{"id":"NCBITaxon:1117322","l":"Glaesserella parasuis str. Nagasaki","na":1,"nb":1,"a":[["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1117322","Glaesserella parasuis str. Nagasaki"]]},{"id":"NCBITaxon:1117702","l":"Novosphingobium fuchskuhlense","na":1,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["NCBITaxon%3A1117702","Novosphingobium fuchskuhlense"]]},{"id":"NCBITaxon:1117703","l":"Novosphingobium aquaticum (ex Glaeser et al. 2013)","na":1,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["NCBITaxon%3A1117703","Novosphingobium aquaticum (ex Glaeser et al. 2013)"]]},{"id":"NCBITaxon:111781","l":"[Leptolyngbya] sp. PCC 7376","na":1,"nb":1,"a":[["rock-envo-00001995.html","rock"]],"b":[["NCBITaxon%3A111781","[Leptolyngbya] sp. PCC 7376"]]},{"id":"NCBITaxon:1117943","l":"Sinorhizobium fredii HH103","na":1,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A1117943","Sinorhizobium fredii HH103"]]},{"id":"NCBITaxon:1117958","l":"Pseudomonas extremaustralis 14-3 substr. 14-3b","na":1,"nb":1,"a":[["143-b-cell-bto-0003167.html","143-B cell"]],"b":[["NCBITaxon%3A1117958","Pseudomonas extremaustralis 14-3 substr. 14-3b"]]},{"id":"NCBITaxon:111844","l":"Mannheimia pernigra","na":1,"nb":1,"a":[["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["NCBITaxon%3A111844","Mannheimia pernigra"]]},{"id":"NCBITaxon:1119058","l":"Affinundibacterium macrobrachii","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A1119058","Affinundibacterium macrobrachii"]]},{"id":"NCBITaxon:1119534","l":"Nocardioides perillae","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1119534","Nocardioides perillae"]]},{"id":"NCBITaxon:1120797","l":"Mycobacterium sp. 141","na":1,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["NCBITaxon%3A1120797","Mycobacterium sp. 141"]]},{"id":"NCBITaxon:1123042","l":"Photorhabdus stackebrandtii","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1123042","Photorhabdus stackebrandtii"]]},{"id":"NCBITaxon:1123043","l":"Telmatocola sphagniphila","na":1,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"]],"b":[["NCBITaxon%3A1123043","Telmatocola sphagniphila"]]},{"id":"NCBITaxon:112331","l":"Planococcus koreensis","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A112331","Planococcus koreensis"]]},{"id":"NCBITaxon:1123520","l":"Neisseria meningitidis DE9686","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1123520","Neisseria meningitidis DE9686"]]},{"id":"NCBITaxon:1123521","l":"Neisseria meningitidis DE9622","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1123521","Neisseria meningitidis DE9622"]]},{"id":"NCBITaxon:1123522","l":"Neisseria meningitidis DE9938","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1123522","Neisseria meningitidis DE9938"]]},{"id":"NCBITaxon:1123558","l":"Leucobacter kyeonggiensis","na":1,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"]],"b":[["NCBITaxon%3A1123558","Leucobacter kyeonggiensis"]]},{"id":"NCBITaxon:1123687","l":"Lacticaseibacillus porcinae","na":1,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A1123687","Lacticaseibacillus porcinae"]]},{"id":"NCBITaxon:1124835","l":"Chryseobacterium carnipullorum","na":1,"nb":1,"a":[["factory-envo-01000536.html","factory"]],"b":[["NCBITaxon%3A1124835","Chryseobacterium carnipullorum"]]},{"id":"NCBITaxon:1124919","l":"Salmonella enterica subsp. enterica serovar Agona str. 632182-2","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1124919","Salmonella enterica subsp. enterica serovar Agona str. 632182-2"]]},{"id":"NCBITaxon:1124921","l":"Salmonella enterica subsp. enterica serovar Agona str. 419639 2-1","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1124921","Salmonella enterica subsp. enterica serovar Agona str. 419639 2-1"]]},{"id":"NCBITaxon:1124923","l":"Salmonella enterica subsp. enterica serovar Agona str. 648586-1","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1124923","Salmonella enterica subsp. enterica serovar Agona str. 648586-1"]]},{"id":"NCBITaxon:1124924","l":"Salmonella enterica subsp. enterica serovar Anatum str. USDA 100","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1124924","Salmonella enterica subsp. enterica serovar Anatum str. USDA 100"]]},{"id":"NCBITaxon:1124925","l":"Salmonella enterica subsp. enterica serovar Bareilly str. ATCC 9115","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1124925","Salmonella enterica subsp. enterica serovar Bareilly str. ATCC 9115"]]},{"id":"NCBITaxon:1124926","l":"Salmonella enterica subsp. enterica serovar Berta str. ATCC 8392","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1124926","Salmonella enterica subsp. enterica serovar Berta str. ATCC 8392"]]},{"id":"NCBITaxon:1124928","l":"Salmonella enterica subsp. enterica serovar Cerro str. 818","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1124928","Salmonella enterica subsp. enterica serovar Cerro str. 818"]]},{"id":"NCBITaxon:1124929","l":"Salmonella enterica subsp. enterica serovar Derby str. 626","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1124929","Salmonella enterica subsp. enterica serovar Derby str. 626"]]},{"id":"NCBITaxon:1124933","l":"Salmonella enterica subsp. enterica serovar Hadar str. ATCC 51956","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1124933","Salmonella enterica subsp. enterica serovar Hadar str. ATCC 51956"]]},{"id":"NCBITaxon:1124934","l":"Salmonella enterica subsp. enterica serovar Heidelberg str. 82-2052","na":1,"nb":1,"a":[["scale-bto-0005055.html","scale"]],"b":[["NCBITaxon%3A1124934","Salmonella enterica subsp. enterica serovar Heidelberg str. 82-2052"]]},{"id":"NCBITaxon:1124991","l":"Morganella morganii subsp. morganii KT","na":1,"nb":1,"a":[["gall-bladder-bto-0000493.html","gall bladder"]],"b":[["NCBITaxon%3A1124991","Morganella morganii subsp. morganii KT"]]},{"id":"NCBITaxon:1125630","l":"Klebsiella pneumoniae subsp. pneumoniae HS11286","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1125630","Klebsiella pneumoniae subsp. pneumoniae HS11286"]]},{"id":"NCBITaxon:1125876","l":"Halpernia frigidisoli","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A1125876","Halpernia frigidisoli"]]},{"id":"NCBITaxon:1125975","l":"Thermoanaerobacter ethanolicus subsp. indiensis BSB-33","na":1,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["NCBITaxon%3A1125975","Thermoanaerobacter ethanolicus subsp. indiensis BSB-33"]]},{"id":"NCBITaxon:1126236","l":"Halobellus inordinatus","na":1,"nb":1,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["NCBITaxon%3A1126236","Halobellus inordinatus"]]},{"id":"NCBITaxon:1126681","l":"Bacillus cereus F","na":1,"nb":1,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A1126681","Bacillus cereus F"]]},{"id":"NCBITaxon:1126911","l":"Escherichia coli C639_08","na":1,"nb":1,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["NCBITaxon%3A1126911","Escherichia coli C639_08"]]},{"id":"NCBITaxon:1126932","l":"Escherichia coli C844_97","na":1,"nb":1,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["NCBITaxon%3A1126932","Escherichia coli C844_97"]]},{"id":"NCBITaxon:1127743","l":"Bacillus sp. 5B6","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1127743","Bacillus sp. 5B6"]]},{"id":"NCBITaxon:1128113","l":"Algimonas porphyrae","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A1128113","Algimonas porphyrae"]]},{"id":"NCBITaxon:1128665","l":"Lentzea nigeriaca","na":1,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A1128665","Lentzea nigeriaca"]]},{"id":"NCBITaxon:1128670","l":"Microvirga makkahensis","na":1,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A1128670","Microvirga makkahensis"]]},{"id":"NCBITaxon:1130046","l":"Oceanivirga miroungae","na":1,"nb":1,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"]],"b":[["NCBITaxon%3A1130046","Oceanivirga miroungae"]]},{"id":"NCBITaxon:1130080","l":"Alkalibacterium gilvum","na":1,"nb":1,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["NCBITaxon%3A1130080","Alkalibacterium gilvum"]]},{"id":"NCBITaxon:1130798","l":"Limosilactobacillus mucosae LM1","na":1,"nb":1,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"]],"b":[["NCBITaxon%3A1130798","Limosilactobacillus mucosae LM1"]]},{"id":"NCBITaxon:1130804","l":"Streptococcus pneumoniae ST556","na":1,"nb":1,"a":[["middle-ear-bto-0002099.html","middle ear"]],"b":[["NCBITaxon%3A1130804","Streptococcus pneumoniae ST556"]]},{"id":"NCBITaxon:1131567","l":"Cognatundibacterium squillarum","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A1131567","Cognatundibacterium squillarum"]]},{"id":"NCBITaxon:1131812","l":"Flavobacterium sp. 83","na":1,"nb":1,"a":[["lake-envo-00000020.html","lake"]],"b":[["NCBITaxon%3A1131812","Flavobacterium sp. 83"]]},{"id":"NCBITaxon:1132836","l":"Rhizobium sp. CCGE 510","na":1,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A1132836","Rhizobium sp. CCGE 510"]]},{"id":"NCBITaxon:1133106","l":"Plasticicumulans lactativorans","na":1,"nb":1,"a":[["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["NCBITaxon%3A1133106","Plasticicumulans lactativorans"]]},{"id":"NCBITaxon:113355","l":"Geminocystis herdmanii PCC 6308","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A113355","Geminocystis herdmanii PCC 6308"]]},{"id":"NCBITaxon:1134435","l":"Thauera humireducens","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A1134435","Thauera humireducens"]]},{"id":"NCBITaxon:1134459","l":"Pseudomonas aeruginosa PADK2_CF510","na":1,"nb":1,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1134459","Pseudomonas aeruginosa PADK2_CF510"]]},{"id":"NCBITaxon:1134474","l":"Cellvibrio sp. BR","na":1,"nb":1,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A1134474","Cellvibrio sp. BR"]]},{"id":"NCBITaxon:1134914","l":"Staphylococcus haemolyticus R1P1","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1134914","Staphylococcus haemolyticus R1P1"]]},{"id":"NCBITaxon:1135990","l":"Geopseudomonas sagittaria","na":1,"nb":1,"a":[["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A1135990","Geopseudomonas sagittaria"]]},{"id":"NCBITaxon:1136177","l":"Lactiplantibacillus pentosus KCA1","na":1,"nb":1,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A1136177","Lactiplantibacillus pentosus KCA1"]]},{"id":"NCBITaxon:1136416","l":"Salinispora pacifica CNT001","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1136416","Salinispora pacifica CNT001"]]},{"id":"NCBITaxon:113653","l":"Geoglobus ahangari","na":1,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A113653","Geoglobus ahangari"]]},{"id":"NCBITaxon:1137135","l":"Escherichia coli O157:H43 str. T22","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1137135","Escherichia coli O157:H43 str. T22"]]},{"id":"NCBITaxon:1137251","l":"Salinispora arenicola CNH905","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1137251","Salinispora arenicola CNH905"]]},{"id":"NCBITaxon:1137255","l":"Salinispora arenicola CNT005","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1137255","Salinispora arenicola CNT005"]]},{"id":"NCBITaxon:1137257","l":"Salinispora arenicola CNX508","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1137257","Salinispora arenicola CNX508"]]},{"id":"NCBITaxon:1137780","l":"Polaribacter porphyrae","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A1137780","Polaribacter porphyrae"]]},{"id":"NCBITaxon:1137799","l":"Endozoicomonas numazuensis","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1137799","Endozoicomonas numazuensis"]]},{"id":"NCBITaxon:1137990","l":"Geodermatophilus arenarius","na":1,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A1137990","Geodermatophilus arenarius"]]},{"id":"NCBITaxon:114101","l":"Brenneria lupinicola","na":1,"nb":1,"a":[["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"]],"b":[["NCBITaxon%3A114101","Brenneria lupinicola"]]},{"id":"NCBITaxon:1141657","l":"Nocardia vulneris","na":1,"nb":1,"a":[["finger-bto-0004669.html","finger"]],"b":[["NCBITaxon%3A1141657","Nocardia vulneris"]]},{"id":"NCBITaxon:1141883","l":"Massilia putida","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A1141883","Massilia putida"]]},{"id":"NCBITaxon:1141888","l":"Sphingomonas difficilis","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A1141888","Sphingomonas difficilis"]]},{"id":"NCBITaxon:1142511","l":"Wigglesworthia glossinidia endosymbiont of Glossina morsitans morsitans (Yale colony)","na":1,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A1142511","Wigglesworthia glossinidia endosymbiont of Glossina morsitans morsitans (Yale colony)"]]},{"id":"NCBITaxon:1144300","l":"Limosilactobacillus gastricus PS3","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1144300","Limosilactobacillus gastricus PS3"]]},{"id":"NCBITaxon:1144553","l":"Nonomuraea solani","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1144553","Nonomuraea solani"]]},{"id":"NCBITaxon:1144618","l":"Allonocardiopsis opalescens","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1144618","Allonocardiopsis opalescens"]]},{"id":"NCBITaxon:1144750","l":"Olleya namhaensis","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A1144750","Olleya namhaensis"]]},{"id":"NCBITaxon:1145111","l":"Helicobacter pylori R030b","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A1145111","Helicobacter pylori R030b"]]},{"id":"NCBITaxon:1145112","l":"Helicobacter pylori R32b","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A1145112","Helicobacter pylori R32b"]]},{"id":"NCBITaxon:1145114","l":"Helicobacter pylori R037c","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A1145114","Helicobacter pylori R037c"]]},{"id":"NCBITaxon:1145115","l":"Helicobacter pylori R038b","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A1145115","Helicobacter pylori R038b"]]},{"id":"NCBITaxon:1145116","l":"Helicobacter pylori R046Wa","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A1145116","Helicobacter pylori R046Wa"]]},{"id":"NCBITaxon:1145118","l":"Helicobacter pylori R056a","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A1145118","Helicobacter pylori R056a"]]},{"id":"NCBITaxon:114527","l":"Mogibacterium diversum","na":1,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["NCBITaxon%3A114527","Mogibacterium diversum"]]},{"id":"NCBITaxon:1145276","l":"Lysinibacillus varians","na":1,"nb":1,"a":[["filament-bto-0000463.html","filament"]],"b":[["NCBITaxon%3A1145276","Lysinibacillus varians"]]},{"id":"NCBITaxon:1146882","l":"Pseudomonas aeruginosa PAHM4","na":1,"nb":1,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1146882","Pseudomonas aeruginosa PAHM4"]]},{"id":"NCBITaxon:114712","l":"uncultured Azospirillum sp.","na":1,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"]],"b":[["NCBITaxon%3A114712","uncultured Azospirillum sp."]]},{"id":"NCBITaxon:114880","l":"Mycoplasmopsis columbinasalis","na":1,"nb":1,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A114880","Mycoplasmopsis columbinasalis"]]},{"id":"NCBITaxon:114975","l":"Sporosarcina aquimarina","na":1,"nb":1,"a":[["skin-bto-0001253.html","skin"]],"b":[["NCBITaxon%3A114975","Sporosarcina aquimarina"]]},{"id":"NCBITaxon:1150112","l":"Myroides guanonis","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A1150112","Myroides guanonis"]]},{"id":"NCBITaxon:1150298","l":"Fusicatenibacter saccharivorans","na":1,"nb":1,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A1150298","Fusicatenibacter saccharivorans"]]},{"id":"NCBITaxon:1150475","l":"Bacillus velezensis UCMB5036","na":1,"nb":1,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["NCBITaxon%3A1150475","Bacillus velezensis UCMB5036"]]},{"id":"NCBITaxon:1150776","l":"Winogradskyella multivorans","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A1150776","Winogradskyella multivorans"]]},{"id":"NCBITaxon:1150867","l":"Kingella kingae PYKK081","na":1,"nb":1,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["NCBITaxon%3A1150867","Kingella kingae PYKK081"]]},{"id":"NCBITaxon:1151061","l":"Tsukamurella sp. 1534","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1151061","Tsukamurella sp. 1534"]]},{"id":"NCBITaxon:1153","l":"Pseudanabaena sp.","na":1,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"]],"b":[["NCBITaxon%3A1153","Pseudanabaena sp."]]},{"id":"NCBITaxon:1154763","l":"Oceanicaulis sp. NGOC","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A1154763","Oceanicaulis sp. NGOC"]]},{"id":"NCBITaxon:1154820","l":"Streptococcus agalactiae LMG 15091","na":1,"nb":1,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A1154820","Streptococcus agalactiae LMG 15091"]]},{"id":"NCBITaxon:1154821","l":"Streptococcus agalactiae LMG 15092","na":1,"nb":1,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A1154821","Streptococcus agalactiae LMG 15092"]]},{"id":"NCBITaxon:1154822","l":"Streptococcus agalactiae LMG 15093","na":1,"nb":1,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A1154822","Streptococcus agalactiae LMG 15093"]]},{"id":"NCBITaxon:1154823","l":"Streptococcus agalactiae LMG 15094","na":1,"nb":1,"a":[["vagina-uberon-0000996.html","vagina"]],"b":[["NCBITaxon%3A1154823","Streptococcus agalactiae LMG 15094"]]},{"id":"NCBITaxon:1155689","l":"Psychroflexus salarius","na":1,"nb":1,"a":[["pond-envo-00000033.html","pond"]],"b":[["NCBITaxon%3A1155689","Psychroflexus salarius"]]},{"id":"NCBITaxon:1155775","l":"Treponema pallidum str. Fribourg-Blanc","na":1,"nb":1,"a":[["globus-pallidus-bto-0002246.html","globus pallidus"]],"b":[["NCBITaxon%3A1155775","Treponema pallidum str. Fribourg-Blanc"]]},{"id":"NCBITaxon:1156842","l":"Streptomyces sp. LaPpAH-180","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1156842","Streptomyces sp. LaPpAH-180"]]},{"id":"NCBITaxon:1157490","l":"Tumebacillus flagellatus","na":1,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A1157490","Tumebacillus flagellatus"]]},{"id":"NCBITaxon:1157629","l":"Streptomyces sp. KhCrAH-340","na":1,"nb":1,"a":[["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A1157629","Streptomyces sp. KhCrAH-340"]]},{"id":"NCBITaxon:1157947","l":"Thermotoga sp. Cell2","na":1,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A1157947","Thermotoga sp. Cell2"]]},{"id":"NCBITaxon:115808","l":"Bradyrhizobium sp. ORS 285","na":1,"nb":1,"a":[["root-nodule-bto-0001190.html","root nodule"]],"b":[["NCBITaxon%3A115808","Bradyrhizobium sp. ORS 285"]]},{"id":"NCBITaxon:1158132","l":"Bordetella sp. NGBO","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A1158132","Bordetella sp. NGBO"]]},{"id":"NCBITaxon:1158134","l":"Roseobacter sp. NGRO","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A1158134","Roseobacter sp. NGRO"]]},{"id":"NCBITaxon:115862","l":"Mycobacterium tuberculosis variant caprae","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A115862","Mycobacterium tuberculosis variant caprae"]]},{"id":"NCBITaxon:1159490","l":"Cronobacter sakazakii E764","na":1,"nb":1,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A1159490","Cronobacter sakazakii E764"]]},{"id":"NCBITaxon:1159614","l":"Cronobacter sakazakii ES35","na":1,"nb":1,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A1159614","Cronobacter sakazakii ES35"]]},{"id":"NCBITaxon:1159617","l":"Yersinia pestis INS","na":1,"nb":1,"a":[["lymph-node-bto-0000784.html","lymph node"]],"b":[["NCBITaxon%3A1159617","Yersinia pestis INS"]]},{"id":"NCBITaxon:1160091","l":"Alloscardovia macacae","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1160091","Alloscardovia macacae"]]},{"id":"NCBITaxon:1160704","l":"Francisella tularensis subsp. holarctica FSC162","na":1,"nb":1,"a":[["medial-geniculate-body-bto-0002674.html","medial geniculate body"]],"b":[["NCBITaxon%3A1160704","Francisella tularensis subsp. holarctica FSC162"]]},{"id":"NCBITaxon:1160721","l":"Ruminococcus bicirculans (ex Wegman et al. 2014)","na":1,"nb":1,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A1160721","Ruminococcus bicirculans (ex Wegman et al. 2014)"]]},{"id":"NCBITaxon:1161101","l":"Pseudomonas tolaasii 6264","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A1161101","Pseudomonas tolaasii 6264"]]},{"id":"NCBITaxon:1161102","l":"Pasteurella multocida subsp. multocida VTCCBAA264","na":1,"nb":1,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["NCBITaxon%3A1161102","Pasteurella multocida subsp. multocida VTCCBAA264"]]},{"id":"NCBITaxon:1162283","l":"Mycobacteroides abscessus subsp. bolletii M18","na":1,"nb":1,"a":[["lymph-node-bto-0000784.html","lymph node"]],"b":[["NCBITaxon%3A1162283","Mycobacteroides abscessus subsp. bolletii M18"]]},{"id":"NCBITaxon:1162284","l":"Mycobacteroides abscessus M24","na":1,"nb":1,"a":[["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"]],"b":[["NCBITaxon%3A1162284","Mycobacteroides abscessus M24"]]},{"id":"NCBITaxon:1162286","l":"Mycobacteroides abscessus M172","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1162286","Mycobacteroides abscessus M172"]]},{"id":"NCBITaxon:1162287","l":"Mycobacteroides abscessus M115","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1162287","Mycobacteroides abscessus M115"]]},{"id":"NCBITaxon:1162294","l":"Serratia marcescens LCT-SM213","na":1,"nb":1,"a":[["urinary-tract-bto-0001244.html","urinary tract"]],"b":[["NCBITaxon%3A1162294","Serratia marcescens LCT-SM213"]]},{"id":"NCBITaxon:1162967","l":"Diaminobutyricimonas aerilata","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A1162967","Diaminobutyricimonas aerilata"]]},{"id":"NCBITaxon:1162970","l":"Homoserinimonas aerilata","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A1162970","Homoserinimonas aerilata"]]},{"id":"NCBITaxon:1163745","l":"Helicobacter cetorum MIT 99-5656","na":1,"nb":1,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["NCBITaxon%3A1163745","Helicobacter cetorum MIT 99-5656"]]},{"id":"NCBITaxon:1164594","l":"Massilia yuzhufengensis","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1164594","Massilia yuzhufengensis"]]},{"id":"NCBITaxon:1165092","l":"Lachnospiraceae bacterium JC7","na":1,"nb":1,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A1165092","Lachnospiraceae bacterium JC7"]]},{"id":"NCBITaxon:1165852","l":"Melaminivora alkalimesophila","na":1,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A1165852","Melaminivora alkalimesophila"]]},{"id":"NCBITaxon:1166017","l":"Mycobacteroides abscessus CF","na":1,"nb":1,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1166017","Mycobacteroides abscessus CF"]]},{"id":"NCBITaxon:1166073","l":"Aureimonas jatrophae","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1166073","Aureimonas jatrophae"]]},{"id":"NCBITaxon:1166158","l":"Methylobacterium sp. L2-4","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1166158","Methylobacterium sp. L2-4"]]},{"id":"NCBITaxon:1166257","l":"Pleomorphomonas diazotrophica","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1166257","Pleomorphomonas diazotrophica"]]},{"id":"NCBITaxon:1166323","l":"Sphingomonas carotinifaciens","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1166323","Sphingomonas carotinifaciens"]]},{"id":"NCBITaxon:1166337","l":"Sphingomonas jatrophae","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1166337","Sphingomonas jatrophae"]]},{"id":"NCBITaxon:1167631","l":"Oenococcus oeni AWRIB318","na":1,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A1167631","Oenococcus oeni AWRIB318"]]},{"id":"NCBITaxon:1167641","l":"Stenotrophomonas geniculata N1","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1167641","Stenotrophomonas geniculata N1"]]},{"id":"NCBITaxon:1167697","l":"Enterococcus faecium LCT-EF90","na":1,"nb":1,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A1167697","Enterococcus faecium LCT-EF90"]]},{"id":"NCBITaxon:1168039","l":"Saccharicrinis carchari","na":1,"nb":1,"a":[["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A1168039","Saccharicrinis carchari"]]},{"id":"NCBITaxon:1169863","l":"Escherichia coli NCCP15657","na":1,"nb":1,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["NCBITaxon%3A1169863","Escherichia coli NCCP15657"]]},{"id":"NCBITaxon:1170318","l":"Cutibacterium avidum 44067","na":1,"nb":1,"a":[["trunk-bto-0001493.html","trunk"]],"b":[["NCBITaxon%3A1170318","Cutibacterium avidum 44067"]]},{"id":"NCBITaxon:1170562","l":"Calothrix sp. PCC 6303","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A1170562","Calothrix sp. PCC 6303"]]},{"id":"NCBITaxon:1172204","l":"Paraclostridium sordellii 8483","na":1,"nb":1,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A1172204","Paraclostridium sordellii 8483"]]},{"id":"NCBITaxon:1172205","l":"Bordetella holmesii 44057","na":1,"nb":1,"a":[["sickle-cell-bto-0002656.html","sickle cell"]],"b":[["NCBITaxon%3A1172205","Bordetella holmesii 44057"]]},{"id":"NCBITaxon:1172565","l":"Lonsdalea populi","na":1,"nb":1,"a":[["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["NCBITaxon%3A1172565","Lonsdalea populi"]]},{"id":"NCBITaxon:1173107","l":"Lysinibacillus tabacifolii","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1173107","Lysinibacillus tabacifolii"]]},{"id":"NCBITaxon:1173481","l":"Pseudomonas sp. DrzB1_18_61a","na":1,"nb":1,"a":[["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A1173481","Pseudomonas sp. DrzB1_18_61a"]]},{"id":"NCBITaxon:1173689","l":"Escherichia coli VL2874","na":1,"nb":1,"a":[["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["NCBITaxon%3A1173689","Escherichia coli VL2874"]]},{"id":"NCBITaxon:1173690","l":"Escherichia coli VL2732","na":1,"nb":1,"a":[["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["NCBITaxon%3A1173690","Escherichia coli VL2732"]]},{"id":"NCBITaxon:1173995","l":"Parvularcula dongshanensis","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A1173995","Parvularcula dongshanensis"]]},{"id":"NCBITaxon:1176176","l":"Methylobacterium haplocladii","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A1176176","Methylobacterium haplocladii"]]},{"id":"NCBITaxon:1176177","l":"Methylobacterium brachythecii","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A1176177","Methylobacterium brachythecii"]]},{"id":"NCBITaxon:1176198","l":"Streptomyces harbinensis","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1176198","Streptomyces harbinensis"]]},{"id":"NCBITaxon:1176728","l":"Escherichia coli K71","na":1,"nb":1,"a":[["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["NCBITaxon%3A1176728","Escherichia coli K71"]]},{"id":"NCBITaxon:1177574","l":"Prevotella jejuni","na":1,"nb":1,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["NCBITaxon%3A1177574","Prevotella jejuni"]]},{"id":"NCBITaxon:1177927","l":"Enterobacter cloacae subsp. cloacae GS1","na":1,"nb":1,"a":[["seedling-bto-0001228.html","seedling"]],"b":[["NCBITaxon%3A1177927","Enterobacter cloacae subsp. cloacae GS1"]]},{"id":"NCBITaxon:1177931","l":"Thiovulum sp. ES","na":1,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A1177931","Thiovulum sp. ES"]]},{"id":"NCBITaxon:1178528","l":"Enterococcus faecium LCT-EF128","na":1,"nb":1,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A1178528","Enterococcus faecium LCT-EF128"]]},{"id":"NCBITaxon:1178540","l":"Bacillus zhangzhouensis","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A1178540","Bacillus zhangzhouensis"]]},{"id":"NCBITaxon:1179467","l":"Hazenella coriacea","na":1,"nb":1,"a":[["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A1179467","Hazenella coriacea"]]},{"id":"NCBITaxon:1181879","l":"Amycolatopsis jiangsuensis","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1181879","Amycolatopsis jiangsuensis"]]},{"id":"NCBITaxon:1181882","l":"Glycomyces phytohabitans","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1181882","Glycomyces phytohabitans"]]},{"id":"NCBITaxon:1181884","l":"Modestobacter roseus","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1181884","Modestobacter roseus"]]},{"id":"NCBITaxon:1181886","l":"Saccharopolyspora dendranthemae","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1181886","Saccharopolyspora dendranthemae"]]},{"id":"NCBITaxon:1181887","l":"Streptomyces halophytocola","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1181887","Streptomyces halophytocola"]]},{"id":"NCBITaxon:1182164","l":"Salmonella enterica subsp. enterica serovar Heidelberg str. CFSAN00322","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1182164","Salmonella enterica subsp. enterica serovar Heidelberg str. CFSAN00322"]]},{"id":"NCBITaxon:1182167","l":"Salmonella enterica subsp. enterica serovar Heidelberg str. CFSAN00325","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1182167","Salmonella enterica subsp. enterica serovar Heidelberg str. CFSAN00325"]]},{"id":"NCBITaxon:1182168","l":"Salmonella enterica subsp. enterica serovar Heidelberg str. CFSAN00326","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1182168","Salmonella enterica subsp. enterica serovar Heidelberg str. CFSAN00326"]]},{"id":"NCBITaxon:1182170","l":"Salmonella enterica subsp. enterica serovar Heidelberg str. CFSAN00328","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1182170","Salmonella enterica subsp. enterica serovar Heidelberg str. CFSAN00328"]]},{"id":"NCBITaxon:1182408","l":"Luteivirga sdotyamensis","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1182408","Luteivirga sdotyamensis"]]},{"id":"NCBITaxon:1182444","l":"Fulvitalea axinellae","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1182444","Fulvitalea axinellae"]]},{"id":"NCBITaxon:1182451","l":"Aureivirga marina","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1182451","Aureivirga marina"]]},{"id":"NCBITaxon:1184706","l":"Micromonospora sonneratiae","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1184706","Micromonospora sonneratiae"]]},{"id":"NCBITaxon:1185324","l":"Lactobacillus gasseri CECT 5714","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1185324","Lactobacillus gasseri CECT 5714"]]},{"id":"NCBITaxon:1185325","l":"Loigolactobacillus coryniformis subsp. coryniformis CECT 5711","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1185325","Loigolactobacillus coryniformis subsp. coryniformis CECT 5711"]]},{"id":"NCBITaxon:1185682","l":"Xanthomonas phaseoli pv. manihotis str. IBSBF 2673","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1185682","Xanthomonas phaseoli pv. manihotis str. IBSBF 2673"]]},{"id":"NCBITaxon:1186196","l":"Natrinema salaciae","na":1,"nb":1,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["NCBITaxon%3A1186196","Natrinema salaciae"]]},{"id":"NCBITaxon:1187845","l":"Vibrio genomosp. F10 str. 9ZB36","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1187845","Vibrio genomosp. F10 str. 9ZB36"]]},{"id":"NCBITaxon:1187846","l":"Vibrio genomosp. F10 str. 9ZD137","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1187846","Vibrio genomosp. F10 str. 9ZD137"]]},{"id":"NCBITaxon:1187847","l":"Vibrio genomosp. F10 str. 9ZC157","na":1,"nb":1,"a":[["animal-associated-environment-envo-01001002.html","animal-associated environment"]],"b":[["NCBITaxon%3A1187847","Vibrio genomosp. F10 str. 9ZC157"]]},{"id":"NCBITaxon:1187852","l":"Methylobacterium tarhaniae","na":1,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A1187852","Methylobacterium tarhaniae"]]},{"id":"NCBITaxon:1188229","l":"Gloeomargarita lithophora Alchichica-D10","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A1188229","Gloeomargarita lithophora Alchichica-D10"]]},{"id":"NCBITaxon:1188233","l":"Metamycoplasma auris 15026","na":1,"nb":1,"a":[["outer-ear-bto-0002100.html","outer ear"]],"b":[["NCBITaxon%3A1188233","Metamycoplasma auris 15026"]]},{"id":"NCBITaxon:1188238","l":"Mycoplasma capricolum subsp. capricolum 14232","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1188238","Mycoplasma capricolum subsp. capricolum 14232"]]},{"id":"NCBITaxon:1188240","l":"Mycoplasma yeatsii 13926","na":1,"nb":1,"a":[["outer-ear-bto-0002100.html","outer ear"]],"b":[["NCBITaxon%3A1188240","Mycoplasma yeatsii 13926"]]},{"id":"NCBITaxon:1188994","l":"Chromohalobacter sp. HS-2","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A1188994","Chromohalobacter sp. HS-2"]]},{"id":"NCBITaxon:1189289","l":"Pseudomonas sp. NS1","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A1189289","Pseudomonas sp. NS1"]]},{"id":"NCBITaxon:1189304","l":"Sodalis-like symbiont of Philaenus spumarius","na":1,"nb":1,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["NCBITaxon%3A1189304","Sodalis-like symbiont of Philaenus spumarius"]]},{"id":"NCBITaxon:1189325","l":"Oceanicella actignis","na":1,"nb":1,"a":[["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["NCBITaxon%3A1189325","Oceanicella actignis"]]},{"id":"NCBITaxon:119000","l":"Modicisalibacter muralis","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A119000","Modicisalibacter muralis"]]},{"id":"NCBITaxon:1191279","l":"Helicobacter pylori FD423","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1191279","Helicobacter pylori FD423"]]},{"id":"NCBITaxon:1191280","l":"Helicobacter pylori FD430","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1191280","Helicobacter pylori FD430"]]},{"id":"NCBITaxon:1191281","l":"Helicobacter pylori FD506","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1191281","Helicobacter pylori FD506"]]},{"id":"NCBITaxon:1191282","l":"Helicobacter pylori FD568","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1191282","Helicobacter pylori FD568"]]},{"id":"NCBITaxon:1191283","l":"Helicobacter pylori FD577","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1191283","Helicobacter pylori FD577"]]},{"id":"NCBITaxon:1191284","l":"Helicobacter pylori FD662","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1191284","Helicobacter pylori FD662"]]},{"id":"NCBITaxon:1191285","l":"Helicobacter pylori FD703","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1191285","Helicobacter pylori FD703"]]},{"id":"NCBITaxon:1191286","l":"Helicobacter pylori FD719","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1191286","Helicobacter pylori FD719"]]},{"id":"NCBITaxon:1191287","l":"Helicobacter pylori GC26","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1191287","Helicobacter pylori GC26"]]},{"id":"NCBITaxon:1191464","l":"Helicobacter pylori FD535","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1191464","Helicobacter pylori FD535"]]},{"id":"NCBITaxon:1192196","l":"Bacillus subtilis subsp. subtilis str. BSP1","na":1,"nb":1,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A1192196","Bacillus subtilis subsp. subtilis str. BSP1"]]},{"id":"NCBITaxon:1192868","l":"Pseudaminobacter salicylatoxidans KCT001","na":1,"nb":1,"a":[["mo-b-cell-bto-0003680.html","Mo-B cell"]],"b":[["NCBITaxon%3A1192868","Pseudaminobacter salicylatoxidans KCT001"]]},{"id":"NCBITaxon:1193041","l":"Leptospira interrogans str. HAI1536","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1193041","Leptospira interrogans str. HAI1536"]]},{"id":"NCBITaxon:1193060","l":"Leptospira interrogans str. HAI1594","na":1,"nb":1,"a":[["building-envo-00000073.html","building"]],"b":[["NCBITaxon%3A1193060","Leptospira interrogans str. HAI1594"]]},{"id":"NCBITaxon:1193292","l":"Klebsiella pneumoniae subsp. pneumoniae 1084","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1193292","Klebsiella pneumoniae subsp. pneumoniae 1084"]]},{"id":"NCBITaxon:1194165","l":"Microbacterium yannicii PS01","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1194165","Microbacterium yannicii PS01"]]},{"id":"NCBITaxon:1194427","l":"Vibrio toranzoniae","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A1194427","Vibrio toranzoniae"]]},{"id":"NCBITaxon:1194719","l":"Sinorhizobium meliloti H1","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1194719","Sinorhizobium meliloti H1"]]},{"id":"NCBITaxon:1195237","l":"Mycobacterium tuberculosis variant bovis BCG str. Frappier","na":1,"nb":1,"a":[["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1195237","Mycobacterium tuberculosis variant bovis BCG str. Frappier"]]},{"id":"NCBITaxon:1195244","l":"Gallibacterium anatis 12656/12","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1195244","Gallibacterium anatis 12656/12"]]},{"id":"NCBITaxon:1195465","l":"Mycobacterium tuberculosis variant bovis BCG str. Glaxo","na":1,"nb":1,"a":[["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1195465","Mycobacterium tuberculosis variant bovis BCG str. Glaxo"]]},{"id":"NCBITaxon:1195466","l":"Mycobacterium tuberculosis variant bovis BCG str. Moreau","na":1,"nb":1,"a":[["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1195466","Mycobacterium tuberculosis variant bovis BCG str. Moreau"]]},{"id":"NCBITaxon:1195467","l":"Mycobacterium tuberculosis variant bovis BCG str. Phipps","na":1,"nb":1,"a":[["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1195467","Mycobacterium tuberculosis variant bovis BCG str. Phipps"]]},{"id":"NCBITaxon:1195468","l":"Mycobacterium tuberculosis variant bovis BCG str. Prague","na":1,"nb":1,"a":[["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1195468","Mycobacterium tuberculosis variant bovis BCG str. Prague"]]},{"id":"NCBITaxon:1195469","l":"Mycobacterium tuberculosis variant bovis BCG str. Sweden","na":1,"nb":1,"a":[["t-lymphocyte-bto-0000782.html","T-lymphocyte"]],"b":[["NCBITaxon%3A1195469","Mycobacterium tuberculosis variant bovis BCG str. Sweden"]]},{"id":"NCBITaxon:1195760","l":"Wenyingzhuangia marina","na":1,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"]],"b":[["NCBITaxon%3A1195760","Wenyingzhuangia marina"]]},{"id":"NCBITaxon:1196034","l":"Klebsiella sp. 10982","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1196034","Klebsiella sp. 10982"]]},{"id":"NCBITaxon:119853","l":"Oscillospira guilliermondii","na":1,"nb":1,"a":[["intestine-bto-0000648.html","intestine"]],"b":[["NCBITaxon%3A119853","Oscillospira guilliermondii"]]},{"id":"NCBITaxon:1199154","l":"Lysobacter sp. A03","na":1,"nb":1,"a":[["feather-bto-0000447.html","feather"]],"b":[["NCBITaxon%3A1199154","Lysobacter sp. A03"]]},{"id":"NCBITaxon:1199187","l":"Mycobacterium avium subsp. paratuberculosis MAP4","na":1,"nb":1,"a":[["breast-bto-0000149.html","breast"]],"b":[["NCBITaxon%3A1199187","Mycobacterium avium subsp. paratuberculosis MAP4"]]},{"id":"NCBITaxon:119978","l":"Acidithiobacillus albertensis","na":1,"nb":1,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A119978","Acidithiobacillus albertensis"]]},{"id":"NCBITaxon:1200302","l":"Photobacterium damselae subsp. piscicida DI21","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1200302","Photobacterium damselae subsp. piscicida DI21"]]},{"id":"NCBITaxon:1200345","l":"Stutzerimonas stutzeri XLDN-R","na":1,"nb":1,"a":[["soil-pollution-habitatmech-madin-ece0235b87.html","soil pollution"]],"b":[["NCBITaxon%3A1200345","Stutzerimonas stutzeri XLDN-R"]]},{"id":"NCBITaxon:1200775","l":"Cupriavidus basilensis B-8","na":1,"nb":1,"a":[["pulp-bto-0001142.html","pulp"]],"b":[["NCBITaxon%3A1200775","Cupriavidus basilensis B-8"]]},{"id":"NCBITaxon:1201036","l":"Pseudochrobactrum sp. AO18b","na":1,"nb":1,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A1201036","Pseudochrobactrum sp. AO18b"]]},{"id":"NCBITaxon:1201295","l":"Shewanella sp. POL2","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1201295","Shewanella sp. POL2"]]},{"id":"NCBITaxon:120213","l":"Subtercola boreus","na":1,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A120213","Subtercola boreus"]]},{"id":"NCBITaxon:1202456","l":"Bacillus sp. Aph1","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1202456","Bacillus sp. Aph1"]]},{"id":"NCBITaxon:1202533","l":"Niallia nealsonii AAU1","na":1,"nb":1,"a":[["rumen-uberon-0007365.html","rumen"]],"b":[["NCBITaxon%3A1202533","Niallia nealsonii AAU1"]]},{"id":"NCBITaxon:1204724","l":"Escherichia coli IMT2125","na":1,"nb":1,"a":[["alveolus-bto-0000060.html","alveolus"]],"b":[["NCBITaxon%3A1204724","Escherichia coli IMT2125"]]},{"id":"NCBITaxon:1205674","l":"Mycobacterium canetti CIPT 140070010","na":1,"nb":1,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["NCBITaxon%3A1205674","Mycobacterium canetti CIPT 140070010"]]},{"id":"NCBITaxon:1205675","l":"Mycobacterium canetti CIPT 140070008","na":1,"nb":1,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["NCBITaxon%3A1205675","Mycobacterium canetti CIPT 140070008"]]},{"id":"NCBITaxon:1205676","l":"Mycobacterium canetti CIPT 140060008","na":1,"nb":1,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["NCBITaxon%3A1205676","Mycobacterium canetti CIPT 140060008"]]},{"id":"NCBITaxon:1205677","l":"Mycobacterium canetti CIPT 140070017","na":1,"nb":1,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["NCBITaxon%3A1205677","Mycobacterium canetti CIPT 140070017"]]},{"id":"NCBITaxon:1206085","l":"Jatrophihabitans endophyticus","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1206085","Jatrophihabitans endophyticus"]]},{"id":"NCBITaxon:1206753","l":"Maribacter spongiicola","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1206753","Maribacter spongiicola"]]},{"id":"NCBITaxon:1206774","l":"Oenococcus oeni AWRIB568","na":1,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A1206774","Oenococcus oeni AWRIB568"]]},{"id":"NCBITaxon:1206776","l":"Serratia plymuthica A30","na":1,"nb":1,"a":[["tuber-bto-0001400.html","tuber"]],"b":[["NCBITaxon%3A1206776","Serratia plymuthica A30"]]},{"id":"NCBITaxon:1206816","l":"Maribacter vaceletii","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1206816","Maribacter vaceletii"]]},{"id":"NCBITaxon:1206817","l":"Allorhizobium paknamense","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A1206817","Allorhizobium paknamense"]]},{"id":"NCBITaxon:1208663","l":"Cronobacter sakazakii 701","na":1,"nb":1,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A1208663","Cronobacter sakazakii 701"]]},{"id":"NCBITaxon:1208664","l":"Cronobacter sakazakii 696","na":1,"nb":1,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A1208664","Cronobacter sakazakii 696"]]},{"id":"NCBITaxon:1208918","l":"Candidatus Kinetoplastidibacterium crithidiae TCC036E","na":1,"nb":1,"a":[["flagellate-bto-0000464.html","flagellate"]],"b":[["NCBITaxon%3A1208918","Candidatus Kinetoplastidibacterium crithidiae TCC036E"]]},{"id":"NCBITaxon:1208919","l":"Candidatus Kinetoplastidibacterium desouzai TCC079E","na":1,"nb":1,"a":[["flagellate-bto-0000464.html","flagellate"]],"b":[["NCBITaxon%3A1208919","Candidatus Kinetoplastidibacterium desouzai TCC079E"]]},{"id":"NCBITaxon:1208920","l":"Candidatus Kinetoplastidibacterium stringomonadis TCC290E","na":1,"nb":1,"a":[["flagellate-bto-0000464.html","flagellate"]],"b":[["NCBITaxon%3A1208920","Candidatus Kinetoplastidibacterium stringomonadis TCC290E"]]},{"id":"NCBITaxon:1208921","l":"Candidatus Kinetoplastidibacterium galati TCC219","na":1,"nb":1,"a":[["flagellate-bto-0000464.html","flagellate"]],"b":[["NCBITaxon%3A1208921","Candidatus Kinetoplastidibacterium galati TCC219"]]},{"id":"NCBITaxon:1208922","l":"Candidatus Kinetoplastidibacterium blastocrithidiae TCC012E","na":1,"nb":1,"a":[["flagellate-bto-0000464.html","flagellate"]],"b":[["NCBITaxon%3A1208922","Candidatus Kinetoplastidibacterium blastocrithidiae TCC012E"]]},{"id":"NCBITaxon:120958","l":"Thermoanaerobacter sulfurigignens","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A120958","Thermoanaerobacter sulfurigignens"]]},{"id":"NCBITaxon:1210932","l":"Peteryoungia ipomoeae","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A1210932","Peteryoungia ipomoeae"]]},{"id":"NCBITaxon:1212765","l":"Candidatus Mycoplasma haematolamae str. Purdue","na":1,"nb":1,"a":[["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["NCBITaxon%3A1212765","Candidatus Mycoplasma haematolamae str. Purdue"]]},{"id":"NCBITaxon:1213457","l":"Helicobacter pylori HLJHP193","na":1,"nb":1,"a":[["gastric-ulcer-bto-0002990.html","gastric ulcer"]],"b":[["NCBITaxon%3A1213457","Helicobacter pylori HLJHP193"]]},{"id":"NCBITaxon:1214063","l":"Mycobacterium intracellulare M.i.198","na":1,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A1214063","Mycobacterium intracellulare M.i.198"]]},{"id":"NCBITaxon:1214221","l":"Helicobacter pylori HLJHP256","na":1,"nb":1,"a":[["gastric-ulcer-bto-0002990.html","gastric ulcer"]],"b":[["NCBITaxon%3A1214221","Helicobacter pylori HLJHP256"]]},{"id":"NCBITaxon:1214222","l":"Helicobacter pylori HLJHP271","na":1,"nb":1,"a":[["gastric-ulcer-bto-0002990.html","gastric ulcer"]],"b":[["NCBITaxon%3A1214222","Helicobacter pylori HLJHP271"]]},{"id":"NCBITaxon:1215087","l":"Pseudomonas putida S12","na":1,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A1215087","Pseudomonas putida S12"]]},{"id":"NCBITaxon:1216961","l":"Aeromonas sp. 159","na":1,"nb":1,"a":[["peritoneal-fluid-bto-0001031.html","peritoneal fluid"]],"b":[["NCBITaxon%3A1216961","Aeromonas sp. 159"]]},{"id":"NCBITaxon:1217418","l":"Cupriavidus sp. HPC(L)","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A1217418","Cupriavidus sp. HPC(L)"]]},{"id":"NCBITaxon:1218081","l":"Paraburkholderia kururiensis subsp. thiooxydans NBRC 107107","na":1,"nb":1,"a":[["flagellum-bto-0002292.html","flagellum"]],"b":[["NCBITaxon%3A1218081","Paraburkholderia kururiensis subsp. thiooxydans NBRC 107107"]]},{"id":"NCBITaxon:1219037","l":"Sphingobium xenophagum NBRC 107872","na":1,"nb":1,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["NCBITaxon%3A1219037","Sphingobium xenophagum NBRC 107872"]]},{"id":"NCBITaxon:1220","l":"Prochlorococcus sp.","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A1220","Prochlorococcus sp."]]},{"id":"NCBITaxon:1221522","l":"Pseudomonas fluorescens NCIMB 11764","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1221522","Pseudomonas fluorescens NCIMB 11764"]]},{"id":"NCBITaxon:1223534","l":"Sphingobium amiense NBRC 102518","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1223534","Sphingobium amiense NBRC 102518"]]},{"id":"NCBITaxon:1223566","l":"Bradyrhizobium sp. CCGE-LA001","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1223566","Bradyrhizobium sp. CCGE-LA001"]]},{"id":"NCBITaxon:1224142","l":"Actinobacillus pleuropneumoniae S8","na":1,"nb":1,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1224142","Actinobacillus pleuropneumoniae S8"]]},{"id":"NCBITaxon:1225127","l":"Klenkia taihuensis","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1225127","Klenkia taihuensis"]]},{"id":"NCBITaxon:1225184","l":"Pantoea sp. A4","na":1,"nb":1,"a":[["flower-bto-0000469.html","flower"]],"b":[["NCBITaxon%3A1225184","Pantoea sp. A4"]]},{"id":"NCBITaxon:1226633","l":"Fusobacterium necrophorum subsp. funduliforme B35","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1226633","Fusobacterium necrophorum subsp. funduliforme B35"]]},{"id":"NCBITaxon:1226994","l":"Pseudomonas nitroreducens TX1","na":1,"nb":1,"a":[["freshwater-environment-envo-01000306.html","freshwater environment"]],"b":[["NCBITaxon%3A1226994","Pseudomonas nitroreducens TX1"]]},{"id":"NCBITaxon:1229491","l":"Bradyrhizobium lupini HPC(L)","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A1229491","Bradyrhizobium lupini HPC(L)"]]},{"id":"NCBITaxon:1230341","l":"Salimicrobium jeotgali","na":1,"nb":1,"a":[["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A1230341","Salimicrobium jeotgali"]]},{"id":"NCBITaxon:1230343","l":"Legionella anisa str. Linanisette","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1230343","Legionella anisa str. Linanisette"]]},{"id":"NCBITaxon:1230477","l":"Bacillus subtilis S1-4","na":1,"nb":1,"a":[["feather-bto-0000447.html","feather"]],"b":[["NCBITaxon%3A1230477","Bacillus subtilis S1-4"]]},{"id":"NCBITaxon:1230480","l":"Escherichia coli EC302/04","na":1,"nb":1,"a":[["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1230480","Escherichia coli EC302/04"]]},{"id":"NCBITaxon:1231058","l":"Vibrio diabolicus E0666","na":1,"nb":1,"a":[["ascites-bto-0000091.html","ascites"]],"b":[["NCBITaxon%3A1231058","Vibrio diabolicus E0666"]]},{"id":"NCBITaxon:1232713","l":"Xanthomonas euvesicatoria pv. viticola LMG 965","na":1,"nb":1,"a":[["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A1232713","Xanthomonas euvesicatoria pv. viticola LMG 965"]]},{"id":"NCBITaxon:1232724","l":"Mycobacterium intracellulare subsp. intracellulare MTCC 9506","na":1,"nb":1,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A1232724","Mycobacterium intracellulare subsp. intracellulare MTCC 9506"]]},{"id":"NCBITaxon:1234143","l":"Endozoicomonas euniceicola","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A1234143","Endozoicomonas euniceicola"]]},{"id":"NCBITaxon:1234144","l":"Endozoicomonas gorgoniicola","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A1234144","Endozoicomonas gorgoniicola"]]},{"id":"NCBITaxon:1234367","l":"Chlamydia pecorum PV3056/3","na":1,"nb":1,"a":[["synovia-bto-0001339.html","synovia"]],"b":[["NCBITaxon%3A1234367","Chlamydia pecorum PV3056/3"]]},{"id":"NCBITaxon:1234368","l":"Chlamydia pecorum W73","na":1,"nb":1,"a":[["synovia-bto-0001339.html","synovia"]],"b":[["NCBITaxon%3A1234368","Chlamydia pecorum W73"]]},{"id":"NCBITaxon:1234380","l":"Cutibacterium acnes C1","na":1,"nb":1,"a":[["sebaceous-gland-bto-0001980.html","sebaceous gland"]],"b":[["NCBITaxon%3A1234380","Cutibacterium acnes C1"]]},{"id":"NCBITaxon:1234597","l":"Brucella intermedia M86","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A1234597","Brucella intermedia M86"]]},{"id":"NCBITaxon:1235259","l":"Oceanobacillus polygoni","na":1,"nb":1,"a":[["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A1235259","Oceanobacillus polygoni"]]},{"id":"NCBITaxon:1235440","l":"Staphylococcus epidermidis 12142587","na":1,"nb":1,"a":[["aortic-valve-bto-0004628.html","aortic valve"]],"b":[["NCBITaxon%3A1235440","Staphylococcus epidermidis 12142587"]]},{"id":"NCBITaxon:1236689","l":"Candidatus Methanomethylophilus alvi Mx1201","na":1,"nb":1,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A1236689","Candidatus Methanomethylophilus alvi Mx1201"]]},{"id":"NCBITaxon:1238885","l":"Bacillus thuringiensis serovar aizawai str. Hu4-2","na":1,"nb":1,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A1238885","Bacillus thuringiensis serovar aizawai str. Hu4-2"]]},{"id":"NCBITaxon:1241935","l":"Saccharolobus islandicus LAL14/1","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A1241935","Saccharolobus islandicus LAL14/1"]]},{"id":"NCBITaxon:1242148","l":"Melghirimyces profundicolus","na":1,"nb":1,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["NCBITaxon%3A1242148","Melghirimyces profundicolus"]]},{"id":"NCBITaxon:1242245","l":"Acinetobacter johnsonii XBB1","na":1,"nb":1,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A1242245","Acinetobacter johnsonii XBB1"]]},{"id":"NCBITaxon:1242999","l":"Enterococcus olivae","na":1,"nb":1,"a":[["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A1242999","Enterococcus olivae"]]},{"id":"NCBITaxon:1243000","l":"Acidipropionibacterium olivae","na":1,"nb":1,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["NCBITaxon%3A1243000","Acidipropionibacterium olivae"]]},{"id":"NCBITaxon:1243001","l":"Acidipropionibacterium damnosum","na":1,"nb":1,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["NCBITaxon%3A1243001","Acidipropionibacterium damnosum"]]},{"id":"NCBITaxon:1244087","l":"Paenibacillus lentimorbus NRRL B-30488","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1244087","Paenibacillus lentimorbus NRRL B-30488"]]},{"id":"NCBITaxon:1245026","l":"Heyndrickxia coagulans XZL9","na":1,"nb":1,"a":[["cob-bto-0000266.html","cob"]],"b":[["NCBITaxon%3A1245026","Heyndrickxia coagulans XZL9"]]},{"id":"NCBITaxon:1245526","l":"Geopseudomonas guangdongensis","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A1245526","Geopseudomonas guangdongensis"]]},{"id":"NCBITaxon:1246119","l":"Mycobacterium canetti CIPT 140070002","na":1,"nb":1,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["NCBITaxon%3A1246119","Mycobacterium canetti CIPT 140070002"]]},{"id":"NCBITaxon:1246120","l":"Mycobacterium canetti CIPT 140070005","na":1,"nb":1,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["NCBITaxon%3A1246120","Mycobacterium canetti CIPT 140070005"]]},{"id":"NCBITaxon:1246121","l":"Mycobacterium canetti CIPT 140070013","na":1,"nb":1,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["NCBITaxon%3A1246121","Mycobacterium canetti CIPT 140070013"]]},{"id":"NCBITaxon:1246530","l":"Calderihabitans maritimus","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1246530","Calderihabitans maritimus"]]},{"id":"NCBITaxon:1246634","l":"Mycobacterium canetti CIPT 140070007","na":1,"nb":1,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["NCBITaxon%3A1246634","Mycobacterium canetti CIPT 140070007"]]},{"id":"NCBITaxon:1256514","l":"Novosphingobium arvoryzae","na":1,"nb":1,"a":[["paddy-ricefield-habitatmech-bacdive-6e3154acd8.html","Paddy-Ricefield"]],"b":[["NCBITaxon%3A1256514","Novosphingobium arvoryzae"]]},{"id":"NCBITaxon:1257079","l":"Bacillus thuringiensis DAR 81934","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A1257079","Bacillus thuringiensis DAR 81934"]]},{"id":"NCBITaxon:1257080","l":"Paenibacillus sp. PAMC 26794","na":1,"nb":1,"a":[["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1257080","Paenibacillus sp. PAMC 26794"]]},{"id":"NCBITaxon:1258567","l":"Escherichia coli LCT-EC52","na":1,"nb":1,"a":[["urinary-tract-bto-0001244.html","urinary tract"]],"b":[["NCBITaxon%3A1258567","Escherichia coli LCT-EC52"]]},{"id":"NCBITaxon:1260132","l":"Streptococcus parauberis KCTC 11980BP","na":1,"nb":1,"a":[["kidney-bto-0000671.html","kidney"]],"b":[["NCBITaxon%3A1260132","Streptococcus parauberis KCTC 11980BP"]]},{"id":"NCBITaxon:1260359","l":"Enterococcus faecalis 06-MB-S-04","na":1,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A1260359","Enterococcus faecalis 06-MB-S-04"]]},{"id":"NCBITaxon:1260987","l":"Noviherbaspirillum malthae","na":1,"nb":1,"a":[["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A1260987","Noviherbaspirillum malthae"]]},{"id":"NCBITaxon:1261131","l":"Candidatus Liberibacter americanus str. Sao Paulo","na":1,"nb":1,"a":[["phloem-bto-0001058.html","phloem"]],"b":[["NCBITaxon%3A1261131","Candidatus Liberibacter americanus str. Sao Paulo"]]},{"id":"NCBITaxon:1261567","l":"Streptococcus agalactiae 2-22","na":1,"nb":1,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A1261567","Streptococcus agalactiae 2-22"]]},{"id":"NCBITaxon:1262550","l":"Brevibacterium jeotgali","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A1262550","Brevibacterium jeotgali"]]},{"id":"NCBITaxon:1262554","l":"Garicola koreensis","na":1,"nb":1,"a":[["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A1262554","Garicola koreensis"]]},{"id":"NCBITaxon:1262583","l":"Tamaricihabitans halophyticus","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1262583","Tamaricihabitans halophyticus"]]},{"id":"NCBITaxon:1263636","l":"Microbacterium kyungheense","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A1263636","Microbacterium kyungheense"]]},{"id":"NCBITaxon:1263637","l":"Microbacterium jejuense","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A1263637","Microbacterium jejuense"]]},{"id":"NCBITaxon:1265302","l":"Staphylococcus aureus subsp. aureus PB32","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1265302","Staphylococcus aureus subsp. aureus PB32"]]},{"id":"NCBITaxon:1265309","l":"Tritonibacter mobilis F1926","na":1,"nb":1,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A1265309","Tritonibacter mobilis F1926"]]},{"id":"NCBITaxon:1265350","l":"Buchnera aphidicola (Aphis glycines)","na":1,"nb":1,"a":[["phloem-bto-0001058.html","phloem"]],"b":[["NCBITaxon%3A1265350","Buchnera aphidicola (Aphis glycines)"]]},{"id":"NCBITaxon:1265684","l":"Streptococcus agalactiae SS1219","na":1,"nb":1,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A1265684","Streptococcus agalactiae SS1219"]]},{"id":"NCBITaxon:1265931","l":"Rhizobium metallidurans","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A1265931","Rhizobium metallidurans"]]},{"id":"NCBITaxon:1266066","l":"Streptococcus agalactiae LADL-90-503","na":1,"nb":1,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A1266066","Streptococcus agalactiae LADL-90-503"]]},{"id":"NCBITaxon:1266067","l":"Streptococcus agalactiae LADL_05-108a","na":1,"nb":1,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A1266067","Streptococcus agalactiae LADL_05-108a"]]},{"id":"NCBITaxon:1266068","l":"Streptococcus agalactiae SS1218","na":1,"nb":1,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A1266068","Streptococcus agalactiae SS1218"]]},{"id":"NCBITaxon:1266069","l":"Streptococcus agalactiae CF01173","na":1,"nb":1,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A1266069","Streptococcus agalactiae CF01173"]]},{"id":"NCBITaxon:1266070","l":"Streptococcus agalactiae SS1014","na":1,"nb":1,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A1266070","Streptococcus agalactiae SS1014"]]},{"id":"NCBITaxon:1266370","l":"Nitrospina gracilis 3/211","na":1,"nb":1,"a":[["gracilis-muscle-bto-0000536.html","gracilis muscle"]],"b":[["NCBITaxon%3A1266370","Nitrospina gracilis 3/211"]]},{"id":"NCBITaxon:1266729","l":"Bordetella holmesii F627","na":1,"nb":1,"a":[["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["NCBITaxon%3A1266729","Bordetella holmesii F627"]]},{"id":"NCBITaxon:1267217","l":"Melaminivora jejuensis","na":1,"nb":1,"a":[["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A1267217","Melaminivora jejuensis"]]},{"id":"NCBITaxon:126740","l":"Thermotoga sp. RQ2","na":1,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["NCBITaxon%3A126740","Thermotoga sp. RQ2"]]},{"id":"NCBITaxon:1267423","l":"Roseivirga pacifica","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1267423","Roseivirga pacifica"]]},{"id":"NCBITaxon:1267547","l":"Bacillus subtilis MB73/2","na":1,"nb":1,"a":[["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1267547","Bacillus subtilis MB73/2"]]},{"id":"NCBITaxon:1267766","l":"Croceibacterium atlanticum","na":1,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A1267766","Croceibacterium atlanticum"]]},{"id":"NCBITaxon:1267768","l":"Brevirhabdus pacifica","na":1,"nb":1,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["NCBITaxon%3A1267768","Brevirhabdus pacifica"]]},{"id":"NCBITaxon:1267769","l":"Allosediminivita pacifica","na":1,"nb":1,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["NCBITaxon%3A1267769","Allosediminivita pacifica"]]},{"id":"NCBITaxon:1267897","l":"Klebsiella pneumoniae hvKP1","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1267897","Klebsiella pneumoniae hvKP1"]]},{"id":"NCBITaxon:1271862","l":"Salmonella enterica subsp. enterica serovar Typhimurium var. 5- str. CFSAN001921","na":1,"nb":1,"a":[["breast-bto-0000149.html","breast"]],"b":[["NCBITaxon%3A1271862","Salmonella enterica subsp. enterica serovar Typhimurium var. 5- str. CFSAN001921"]]},{"id":"NCBITaxon:1273133","l":"Ligilactobacillus salivarius cp400","na":1,"nb":1,"a":[["gastrointestinal-tract-bto-0000511.html","gastrointestinal tract"]],"b":[["NCBITaxon%3A1273133","Ligilactobacillus salivarius cp400"]]},{"id":"NCBITaxon:1273541","l":"Pyrodictium delaneyi","na":1,"nb":1,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A1273541","Pyrodictium delaneyi"]]},{"id":"NCBITaxon:1274374","l":"Paenibacillus antibioticophila","na":1,"nb":1,"a":[["tuberculosis-habitatmech-bacdive-e5d21f85b7.html","Tuberculosis"]],"b":[["NCBITaxon%3A1274374","Paenibacillus antibioticophila"]]},{"id":"NCBITaxon:1274631","l":"Bradyrhizobium icense","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1274631","Bradyrhizobium icense"]]},{"id":"NCBITaxon:1275966","l":"Glaesserella parasuis SW114","na":1,"nb":1,"a":[["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1275966","Glaesserella parasuis SW114"]]},{"id":"NCBITaxon:1275967","l":"Glaesserella parasuis MN-H","na":1,"nb":1,"a":[["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1275967","Glaesserella parasuis MN-H"]]},{"id":"NCBITaxon:1275968","l":"Glaesserella parasuis 12939","na":1,"nb":1,"a":[["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1275968","Glaesserella parasuis 12939"]]},{"id":"NCBITaxon:1275969","l":"Glaesserella parasuis 84-15995","na":1,"nb":1,"a":[["respiratory-system-bto-0000203.html","respiratory system"]],"b":[["NCBITaxon%3A1275969","Glaesserella parasuis 84-15995"]]},{"id":"NCBITaxon:1276890","l":"Alteromonas sp. TK-46(2)","na":1,"nb":1,"a":[["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A1276890","Alteromonas sp. TK-46(2)"]]},{"id":"NCBITaxon:1277350","l":"Geobacter sp. DSM 9736","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A1277350","Geobacter sp. DSM 9736"]]},{"id":"NCBITaxon:1278232","l":"Keratinibaculum paraultunense","na":1,"nb":1,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A1278232","Keratinibaculum paraultunense"]]},{"id":"NCBITaxon:1279010","l":"Proteus mirabilis PR03","na":1,"nb":1,"a":[["urinary-tract-bto-0001244.html","urinary tract"]],"b":[["NCBITaxon%3A1279010","Proteus mirabilis PR03"]]},{"id":"NCBITaxon:1280940","l":"Mycoplasmoides pneumoniae M2592","na":1,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"]],"b":[["NCBITaxon%3A1280940","Mycoplasmoides pneumoniae M2592"]]},{"id":"NCBITaxon:1281779","l":"Agrobacterium tumefaciens str. Cherry 2E-2-2","na":1,"nb":1,"a":[["crown-gall-bto-0000303.html","crown gall"]],"b":[["NCBITaxon%3A1281779","Agrobacterium tumefaciens str. Cherry 2E-2-2"]]},{"id":"NCBITaxon:1281885","l":"Bordetella holmesii H558","na":1,"nb":1,"a":[["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["NCBITaxon%3A1281885","Bordetella holmesii H558"]]},{"id":"NCBITaxon:1286170","l":"Klebsiella ornithinolytica B6","na":1,"nb":1,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"]],"b":[["NCBITaxon%3A1286170","Klebsiella ornithinolytica B6"]]},{"id":"NCBITaxon:1286354","l":"Escherichia coli TOP2662-4","na":1,"nb":1,"a":[["uroepithelium-bto-0003906.html","uroepithelium"]],"b":[["NCBITaxon%3A1286354","Escherichia coli TOP2662-4"]]},{"id":"NCBITaxon:1286405","l":"Lacticaseibacillus rhamnosus CRL1505","na":1,"nb":1,"a":[["milk-uberon-0001913.html","milk"]],"b":[["NCBITaxon%3A1286405","Lacticaseibacillus rhamnosus CRL1505"]]},{"id":"NCBITaxon:1287068","l":"Micromonospora andamanensis","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1287068","Micromonospora andamanensis"]]},{"id":"NCBITaxon:128780","l":"Stenotrophomonas acidaminiphila","na":1,"nb":1,"a":[["biome-envo-00000428.html","biome"]],"b":[["NCBITaxon%3A128780","Stenotrophomonas acidaminiphila"]]},{"id":"NCBITaxon:128785","l":"Pseudoxanthomonas mexicana","na":1,"nb":1,"a":[["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["NCBITaxon%3A128785","Pseudoxanthomonas mexicana"]]},{"id":"NCBITaxon:1289594","l":"Pectobacterium atrosepticum CFBP 6276","na":1,"nb":1,"a":[["tuber-bto-0001400.html","tuber"]],"b":[["NCBITaxon%3A1289594","Pectobacterium atrosepticum CFBP 6276"]]},{"id":"NCBITaxon:1290393","l":"Pasteurella multocida 671/90","na":1,"nb":1,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1290393","Pasteurella multocida 671/90"]]},{"id":"NCBITaxon:1290553","l":"Halocynthiibacter namhaensis","na":1,"nb":1,"a":[["ascidian-bto-0000090.html","ascidian"]],"b":[["NCBITaxon%3A1290553","Halocynthiibacter namhaensis"]]},{"id":"NCBITaxon:1290995","l":"Treponema pedis isoM1224","na":1,"nb":1,"a":[["gingiva-bto-0000519.html","gingiva"]],"b":[["NCBITaxon%3A1290995","Treponema pedis isoM1224"]]},{"id":"NCBITaxon:1290998","l":"Treponema pedis str. T M1","na":1,"nb":1,"a":[["gingiva-bto-0000519.html","gingiva"]],"b":[["NCBITaxon%3A1290998","Treponema pedis str. T M1"]]},{"id":"NCBITaxon:1290999","l":"Treponema pedis str. B 683","na":1,"nb":1,"a":[["gingiva-bto-0000519.html","gingiva"]],"b":[["NCBITaxon%3A1290999","Treponema pedis str. B 683"]]},{"id":"NCBITaxon:1291000","l":"Treponema pedis isoM1111","na":1,"nb":1,"a":[["gingiva-bto-0000519.html","gingiva"]],"b":[["NCBITaxon%3A1291000","Treponema pedis isoM1111"]]},{"id":"NCBITaxon:1291001","l":"Treponema pedis isoE1186","na":1,"nb":1,"a":[["gingiva-bto-0000519.html","gingiva"]],"b":[["NCBITaxon%3A1291001","Treponema pedis isoE1186"]]},{"id":"NCBITaxon:1291002","l":"Treponema pedis isoM1220","na":1,"nb":1,"a":[["gingiva-bto-0000519.html","gingiva"]],"b":[["NCBITaxon%3A1291002","Treponema pedis isoM1220"]]},{"id":"NCBITaxon:1291379","l":"Treponema pedis str. T A4","na":1,"nb":1,"a":[["gingiva-bto-0000519.html","gingiva"]],"b":[["NCBITaxon%3A1291379","Treponema pedis str. T A4"]]},{"id":"NCBITaxon:1293441","l":"Lysinibacillus contaminans","na":1,"nb":1,"a":[["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["NCBITaxon%3A1293441","Lysinibacillus contaminans"]]},{"id":"NCBITaxon:1293442","l":"Falsochrobactrum ovis","na":1,"nb":1,"a":[["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A1293442","Falsochrobactrum ovis"]]},{"id":"NCBITaxon:1295009","l":"Candidatus Methanomassiliicoccus intestinalis Issoire-Mx1","na":1,"nb":1,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A1295009","Candidatus Methanomassiliicoccus intestinalis Issoire-Mx1"]]},{"id":"NCBITaxon:1296537","l":"Enterococcus xiangfangensis","na":1,"nb":1,"a":[["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A1296537","Enterococcus xiangfangensis"]]},{"id":"NCBITaxon:1296538","l":"Lactiplantibacillus mudanjiangensis","na":1,"nb":1,"a":[["vegetable-incl-grains-habitatmech-bacdive-d843032e51.html","Vegetable-incl.-Grains"]],"b":[["NCBITaxon%3A1296538","Lactiplantibacillus mudanjiangensis"]]},{"id":"NCBITaxon:1296565","l":"Geodermatophilus amargosae","na":1,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A1296565","Geodermatophilus amargosae"]]},{"id":"NCBITaxon:1296619","l":"Staphylococcus capitis CR01","na":1,"nb":1,"a":[["neonate-bto-0001762.html","neonate"]],"b":[["NCBITaxon%3A1296619","Staphylococcus capitis CR01"]]},{"id":"NCBITaxon:1296669","l":"Aquabacterium olei","na":1,"nb":1,"a":[["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A1296669","Aquabacterium olei"]]},{"id":"NCBITaxon:1297534","l":"Streptococcus oralis subsp. dentisani 7746","na":1,"nb":1,"a":[["tooth-bto-0000397.html","tooth"]],"b":[["NCBITaxon%3A1297534","Streptococcus oralis subsp. dentisani 7746"]]},{"id":"NCBITaxon:1297750","l":"Bacteroides luti","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1297750","Bacteroides luti"]]},{"id":"NCBITaxon:1297799","l":"Meiothermus ruber H328","na":1,"nb":1,"a":[["feather-bto-0000447.html","feather"]],"b":[["NCBITaxon%3A1297799","Meiothermus ruber H328"]]},{"id":"NCBITaxon:1298860","l":"Microbacterium sp. URHA0036","na":1,"nb":1,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A1298860","Microbacterium sp. URHA0036"]]},{"id":"NCBITaxon:1298868","l":"Flavobacterium sp. URHB0058","na":1,"nb":1,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A1298868","Flavobacterium sp. URHB0058"]]},{"id":"NCBITaxon:129961","l":"Spirulina major PCC 6313","na":1,"nb":1,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A129961","Spirulina major PCC 6313"]]},{"id":"NCBITaxon:129985","l":"Mesobacillus jeotgali","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A129985","Mesobacillus jeotgali"]]},{"id":"NCBITaxon:1300267","l":"Streptomyces zhaozhouensis","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1300267","Streptomyces zhaozhouensis"]]},{"id":"NCBITaxon:1300914","l":"Mucilaginibacter sp. PAMC 26640","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A1300914","Mucilaginibacter sp. PAMC 26640"]]},{"id":"NCBITaxon:1301100","l":"Faecalimicrobium dakarense","na":1,"nb":1,"a":[["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A1301100","Faecalimicrobium dakarense"]]},{"id":"NCBITaxon:1302614","l":"Nanoarchaeota archaeon SCGC AAA011-J2","na":1,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"]],"b":[["NCBITaxon%3A1302614","Nanoarchaeota archaeon SCGC AAA011-J2"]]},{"id":"NCBITaxon:1302659","l":"Planococcus versutus","na":1,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A1302659","Planococcus versutus"]]},{"id":"NCBITaxon:1302685","l":"Chryseobacterium takakiae","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A1302685","Chryseobacterium takakiae"]]},{"id":"NCBITaxon:1302687","l":"Chryseobacterium polytrichastri","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A1302687","Chryseobacterium polytrichastri"]]},{"id":"NCBITaxon:1302690","l":"Cnuella takakiae","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A1302690","Cnuella takakiae"]]},{"id":"NCBITaxon:13035","l":"Dactylococcopsis salina PCC 8305","na":1,"nb":1,"a":[["inlet-envo-00000475.html","inlet"]],"b":[["NCBITaxon%3A13035","Dactylococcopsis salina PCC 8305"]]},{"id":"NCBITaxon:1303716","l":"Penicillium egyptiacum","na":1,"nb":1,"a":[["low-tide-zone-envo-00000319.html","low tide zone"]],"b":[["NCBITaxon%3A1303716","Penicillium egyptiacum"]]},{"id":"NCBITaxon:1303921","l":"endosymbiont of Bathymodiolus septemdierum str. Myojin knoll","na":1,"nb":1,"a":[["gill-bto-0000518.html","gill"]],"b":[["NCBITaxon%3A1303921","endosymbiont of Bathymodiolus septemdierum str. Myojin knoll"]]},{"id":"NCBITaxon:1306407","l":"Treponema phagedenis 4A","na":1,"nb":1,"a":[["reproductive-system-bto-0000081.html","reproductive system"]],"b":[["NCBITaxon%3A1306407","Treponema phagedenis 4A"]]},{"id":"NCBITaxon:1306948","l":"Xanthomonas arboricola pv. corylina str. NCCB 100457","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1306948","Xanthomonas arboricola pv. corylina str. NCCB 100457"]]},{"id":"NCBITaxon:1306952","l":"Pediococcus acidilactici D3","na":1,"nb":1,"a":[["pa-1-cell-bto-0001591.html","PA-1 cell"]],"b":[["NCBITaxon%3A1306952","Pediococcus acidilactici D3"]]},{"id":"NCBITaxon:1307436","l":"Cytobacillus firmus DS1","na":1,"nb":1,"a":[["cuticle-bto-0001600.html","cuticle"]],"b":[["NCBITaxon%3A1307436","Cytobacillus firmus DS1"]]},{"id":"NCBITaxon:1307761","l":"Salinispira pacifica","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A1307761","Salinispira pacifica"]]},{"id":"NCBITaxon:1308924","l":"Agromyces bauzanensis","na":1,"nb":1,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"]],"b":[["NCBITaxon%3A1308924","Agromyces bauzanensis"]]},{"id":"NCBITaxon:1309411","l":"Deinococcus soli (ex Cha et al. 2016)","na":1,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A1309411","Deinococcus soli (ex Cha et al. 2016)"]]},{"id":"NCBITaxon:1310431","l":"Bacillus subtilis subsp. subtilis str. MP11","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A1310431","Bacillus subtilis subsp. subtilis str. MP11"]]},{"id":"NCBITaxon:1311757","l":"Escherichia coli ACN001","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1311757","Escherichia coli ACN001"]]},{"id":"NCBITaxon:1311759","l":"Mannheimia haemolytica D171","na":1,"nb":1,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1311759","Mannheimia haemolytica D171"]]},{"id":"NCBITaxon:1312367","l":"Proteus hauseri ZMd44","na":1,"nb":1,"a":[["pulp-bto-0001142.html","pulp"]],"b":[["NCBITaxon%3A1312367","Proteus hauseri ZMd44"]]},{"id":"NCBITaxon:131318","l":"Corynebacterium felinum","na":1,"nb":1,"a":[["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A131318","Corynebacterium felinum"]]},{"id":"NCBITaxon:1315307","l":"Streptococcus pneumoniae MNZ11b","na":1,"nb":1,"a":[["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["NCBITaxon%3A1315307","Streptococcus pneumoniae MNZ11b"]]},{"id":"NCBITaxon:1315308","l":"Streptococcus pneumoniae MNZ14","na":1,"nb":1,"a":[["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["NCBITaxon%3A1315308","Streptococcus pneumoniae MNZ14"]]},{"id":"NCBITaxon:1315309","l":"Streptococcus pneumoniae MNZ37","na":1,"nb":1,"a":[["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["NCBITaxon%3A1315309","Streptococcus pneumoniae MNZ37"]]},{"id":"NCBITaxon:1315310","l":"Streptococcus pneumoniae MNZ41","na":1,"nb":1,"a":[["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["NCBITaxon%3A1315310","Streptococcus pneumoniae MNZ41"]]},{"id":"NCBITaxon:1315311","l":"Streptococcus pneumoniae MNZ85","na":1,"nb":1,"a":[["nasopharynx-bto-0000662.html","nasopharynx"]],"b":[["NCBITaxon%3A1315311","Streptococcus pneumoniae MNZ85"]]},{"id":"NCBITaxon:1315977","l":"Mycobacterium tuberculosis PR08","na":1,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"]],"b":[["NCBITaxon%3A1315977","Mycobacterium tuberculosis PR08"]]},{"id":"NCBITaxon:1316254","l":"Veillonella parvula HSIVP1","na":1,"nb":1,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["NCBITaxon%3A1316254","Veillonella parvula HSIVP1"]]},{"id":"NCBITaxon:1316408","l":"Streptococcus sp. HSISM1","na":1,"nb":1,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["NCBITaxon%3A1316408","Streptococcus sp. HSISM1"]]},{"id":"NCBITaxon:1316409","l":"Streptococcus sp. HSISB1","na":1,"nb":1,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["NCBITaxon%3A1316409","Streptococcus sp. HSISB1"]]},{"id":"NCBITaxon:1316410","l":"Streptococcus sp. HSISS1","na":1,"nb":1,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["NCBITaxon%3A1316410","Streptococcus sp. HSISS1"]]},{"id":"NCBITaxon:1316411","l":"Streptococcus sp. HSISS2","na":1,"nb":1,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["NCBITaxon%3A1316411","Streptococcus sp. HSISS2"]]},{"id":"NCBITaxon:1316412","l":"Streptococcus sp. HSISS3","na":1,"nb":1,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["NCBITaxon%3A1316412","Streptococcus sp. HSISS3"]]},{"id":"NCBITaxon:1316414","l":"Enterococcus sp. HSIEG1","na":1,"nb":1,"a":[["small-intestine-bto-0000651.html","small intestine"]],"b":[["NCBITaxon%3A1316414","Enterococcus sp. HSIEG1"]]},{"id":"NCBITaxon:1316928","l":"Gordonia terrae C-6","na":1,"nb":1,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"]],"b":[["NCBITaxon%3A1316928","Gordonia terrae C-6"]]},{"id":"NCBITaxon:1318743","l":"Bartonella ancashensis","na":1,"nb":1,"a":[["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"]],"b":[["NCBITaxon%3A1318743","Bartonella ancashensis"]]},{"id":"NCBITaxon:1321939","l":"Helicobacter pylori UM037","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1321939","Helicobacter pylori UM037"]]},{"id":"NCBITaxon:1321940","l":"Helicobacter pylori UM066","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1321940","Helicobacter pylori UM066"]]},{"id":"NCBITaxon:1322346","l":"Glaesserella parasuis ZJ0906","na":1,"nb":1,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["NCBITaxon%3A1322346","Glaesserella parasuis ZJ0906"]]},{"id":"NCBITaxon:1323370","l":"Caloranaerobacter ferrireducens","na":1,"nb":1,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A1323370","Caloranaerobacter ferrireducens"]]},{"id":"NCBITaxon:1323375","l":"Anoxybacter fermentans","na":1,"nb":1,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A1323375","Anoxybacter fermentans"]]},{"id":"NCBITaxon:1323664","l":"Paraburkholderia caribensis MBA4","na":1,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A1323664","Paraburkholderia caribensis MBA4"]]},{"id":"NCBITaxon:1324350","l":"Acinetobacter equi","na":1,"nb":1,"a":[["fecal-environment-envo-01001029.html","fecal environment"]],"b":[["NCBITaxon%3A1324350","Acinetobacter equi"]]},{"id":"NCBITaxon:1324766","l":"Rothia endophytica","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A1324766","Rothia endophytica"]]},{"id":"NCBITaxon:1324966","l":"Bacillus thuringiensis T01-328","na":1,"nb":1,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A1324966","Bacillus thuringiensis T01-328"]]},{"id":"NCBITaxon:1326758","l":"Morganella sp. GLFB","na":1,"nb":1,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"]],"b":[["NCBITaxon%3A1326758","Morganella sp. GLFB"]]},{"id":"NCBITaxon:1326759","l":"Serratia sp. GLFA","na":1,"nb":1,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"]],"b":[["NCBITaxon%3A1326759","Serratia sp. GLFA"]]},{"id":"NCBITaxon:1329250","l":"Weissella oryzae SG25","na":1,"nb":1,"a":[["caryopsis-bto-0000208.html","caryopsis"]],"b":[["NCBITaxon%3A1329250","Weissella oryzae SG25"]]},{"id":"NCBITaxon:1329262","l":"Mobilisporobacter senegalensis","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A1329262","Mobilisporobacter senegalensis"]]},{"id":"NCBITaxon:1329370","l":"Franzmannia qiaohouensis","na":1,"nb":1,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["NCBITaxon%3A1329370","Franzmannia qiaohouensis"]]},{"id":"NCBITaxon:1329905","l":"Mannheimia haemolytica D35","na":1,"nb":1,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1329905","Mannheimia haemolytica D35"]]},{"id":"NCBITaxon:1331042","l":"Pasteurella multocida subsp. multocida P1062","na":1,"nb":1,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1331042","Pasteurella multocida subsp. multocida P1062"]]},{"id":"NCBITaxon:1331043","l":"Salmonella enterica subsp. enterica serovar Gallinarum/Pullorum str. FCAV198","na":1,"nb":1,"a":[["ovary-bto-0000975.html","ovary"]],"b":[["NCBITaxon%3A1331043","Salmonella enterica subsp. enterica serovar Gallinarum/Pullorum str. FCAV198"]]},{"id":"NCBITaxon:133189","l":"Bdellovibrio sp. W","na":1,"nb":1,"a":[["stream-envo-00000023.html","stream"]],"b":[["NCBITaxon%3A133189","Bdellovibrio sp. W"]]},{"id":"NCBITaxon:1333523","l":"Salinarchaeum sp. Harcht-Bsk1","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A1333523","Salinarchaeum sp. Harcht-Bsk1"]]},{"id":"NCBITaxon:1333529","l":"Campylobacter fetus subsp. venerealis bv. intermedius str. 99541","na":1,"nb":1,"a":[["prepuce-bto-0001113.html","prepuce"]],"b":[["NCBITaxon%3A1333529","Campylobacter fetus subsp. venerealis bv. intermedius str. 99541"]]},{"id":"NCBITaxon:1333540","l":"Pseudomonas aeruginosa str. C 763","na":1,"nb":1,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1333540","Pseudomonas aeruginosa str. C 763"]]},{"id":"NCBITaxon:1333541","l":"Pseudomonas aeruginosa str. C 1334","na":1,"nb":1,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1333541","Pseudomonas aeruginosa str. C 1334"]]},{"id":"NCBITaxon:1333543","l":"Pseudomonas aeruginosa str. C 1433","na":1,"nb":1,"a":[["lung-bto-0000763.html","lung"]],"b":[["NCBITaxon%3A1333543","Pseudomonas aeruginosa str. C 1433"]]},{"id":"NCBITaxon:1333660","l":"Endozoicomonas atrinae","na":1,"nb":1,"a":[["ascidian-bto-0000090.html","ascidian"]],"b":[["NCBITaxon%3A1333660","Endozoicomonas atrinae"]]},{"id":"NCBITaxon:1333864","l":"Streptococcus oralis subsp. tigurinus 2425","na":1,"nb":1,"a":[["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A1333864","Streptococcus oralis subsp. tigurinus 2425"]]},{"id":"NCBITaxon:1333865","l":"Streptococcus oralis subsp. tigurinus 2426","na":1,"nb":1,"a":[["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A1333865","Streptococcus oralis subsp. tigurinus 2426"]]},{"id":"NCBITaxon:1334019","l":"Alcanivorax sp. EPR7","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A1334019","Alcanivorax sp. EPR7"]]},{"id":"NCBITaxon:133422","l":"Pseudoalteromonas sp. A316","na":1,"nb":1,"a":[["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A133422","Pseudoalteromonas sp. A316"]]},{"id":"NCBITaxon:1334629","l":"Myxococcus fulvus 124B02","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1334629","Myxococcus fulvus 124B02"]]},{"id":"NCBITaxon:1336203","l":"Pseudomonas aeruginosa MH38","na":1,"nb":1,"a":[["urethra-bto-0001426.html","urethra"]],"b":[["NCBITaxon%3A1336203","Pseudomonas aeruginosa MH38"]]},{"id":"NCBITaxon:1337051","l":"Murimonas intestini","na":1,"nb":1,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["NCBITaxon%3A1337051","Murimonas intestini"]]},{"id":"NCBITaxon:1337054","l":"Paenibacillus sp. A3","na":1,"nb":1,"a":[["thigh-bto-0001376.html","thigh"]],"b":[["NCBITaxon%3A1337054","Paenibacillus sp. A3"]]},{"id":"NCBITaxon:1337839","l":"Flavobacterium sp. DSM 425","na":1,"nb":1,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A1337839","Flavobacterium sp. DSM 425"]]},{"id":"NCBITaxon:1337887","l":"Brucella intermedia 229E","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A1337887","Brucella intermedia 229E"]]},{"id":"NCBITaxon:1338426","l":"Arthrobacter bambusae","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A1338426","Arthrobacter bambusae"]]},{"id":"NCBITaxon:1338436","l":"Sinomonas humi","na":1,"nb":1,"a":[["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A1338436","Sinomonas humi"]]},{"id":"NCBITaxon:1340529","l":"Photobacterium panuliri","na":1,"nb":1,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["NCBITaxon%3A1340529","Photobacterium panuliri"]]},{"id":"NCBITaxon:1341157","l":"Ruminococcus flavefaciens 007c","na":1,"nb":1,"a":[["fiber-bto-0000450.html","fiber"]],"b":[["NCBITaxon%3A1341157","Ruminococcus flavefaciens 007c"]]},{"id":"NCBITaxon:1341644","l":"Pseudomonas aeruginosa WS136","na":1,"nb":1,"a":[["bone-marrow-bto-0000141.html","bone marrow"]],"b":[["NCBITaxon%3A1341644","Pseudomonas aeruginosa WS136"]]},{"id":"NCBITaxon:1342794","l":"Photobacterium sanctipauli","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A1342794","Photobacterium sanctipauli"]]},{"id":"NCBITaxon:1342818","l":"Vibrio madracius","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A1342818","Vibrio madracius"]]},{"id":"NCBITaxon:1343737","l":"Xylella fastidiosa subsp. multiplex Griffin-1","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1343737","Xylella fastidiosa subsp. multiplex Griffin-1"]]},{"id":"NCBITaxon:1344948","l":"Sphingomonas aerophila","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A1344948","Sphingomonas aerophila"]]},{"id":"NCBITaxon:134602","l":"Actinomadura nitritigenes","na":1,"nb":1,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"]],"b":[["NCBITaxon%3A134602","Actinomadura nitritigenes"]]},{"id":"NCBITaxon:1346286","l":"Indolivaga macrotermitis","na":1,"nb":1,"a":[["hindgut-bto-0000510.html","hindgut"]],"b":[["NCBITaxon%3A1346286","Indolivaga macrotermitis"]]},{"id":"NCBITaxon:1346290","l":"Methyloversatilis thermotolerans","na":1,"nb":1,"a":[["caldera-envo-00000096.html","caldera"]],"b":[["NCBITaxon%3A1346290","Methyloversatilis thermotolerans"]]},{"id":"NCBITaxon:1346330","l":"Sphingobacterium paucimobilis HER1398","na":1,"nb":1,"a":[["corn-silk-bto-0002854.html","corn silk"]],"b":[["NCBITaxon%3A1346330","Sphingobacterium paucimobilis HER1398"]]},{"id":"NCBITaxon:1347420","l":"Aeromonas veronii Hm21","na":1,"nb":1,"a":[["alimentary-canal-bto-0000058.html","alimentary canal"]],"b":[["NCBITaxon%3A1347420","Aeromonas veronii Hm21"]]},{"id":"NCBITaxon:1347891","l":"Naumannella cuiyingiana","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A1347891","Naumannella cuiyingiana"]]},{"id":"NCBITaxon:1348114","l":"Pseudoalteromonas piratica","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A1348114","Pseudoalteromonas piratica"]]},{"id":"NCBITaxon:1348339","l":"Pseudomonas aeruginosa LCT-PA41","na":1,"nb":1,"a":[["orbit-bto-0004687.html","orbit"]],"b":[["NCBITaxon%3A1348339","Pseudomonas aeruginosa LCT-PA41"]]},{"id":"NCBITaxon:1351836","l":"Brucella melitensis ADMAS-G1","na":1,"nb":1,"a":[["placenta-bto-0001078.html","placenta"]],"b":[["NCBITaxon%3A1351836","Brucella melitensis ADMAS-G1"]]},{"id":"NCBITaxon:1352223","l":"Streptococcus dentiloxodontae","na":1,"nb":1,"a":[["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["NCBITaxon%3A1352223","Streptococcus dentiloxodontae"]]},{"id":"NCBITaxon:1352343","l":"Helicobacter pylori UM038","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1352343","Helicobacter pylori UM038"]]},{"id":"NCBITaxon:1352344","l":"Helicobacter pylori UM085","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1352344","Helicobacter pylori UM085"]]},{"id":"NCBITaxon:1352345","l":"Helicobacter pylori UM111","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1352345","Helicobacter pylori UM111"]]},{"id":"NCBITaxon:1352346","l":"Helicobacter pylori UM077","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1352346","Helicobacter pylori UM077"]]},{"id":"NCBITaxon:1354301","l":"Clostridium sp. BL8","na":1,"nb":1,"a":[["vero-cell-bto-0001444.html","Vero cell"]],"b":[["NCBITaxon%3A1354301","Clostridium sp. BL8"]]},{"id":"NCBITaxon:1355528","l":"Helicobacter pylori UM065","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1355528","Helicobacter pylori UM065"]]},{"id":"NCBITaxon:1355529","l":"Helicobacter pylori UM067","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1355529","Helicobacter pylori UM067"]]},{"id":"NCBITaxon:1355530","l":"Helicobacter pylori UM084","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1355530","Helicobacter pylori UM084"]]},{"id":"NCBITaxon:1355531","l":"Helicobacter pylori UM114","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1355531","Helicobacter pylori UM114"]]},{"id":"NCBITaxon:1356851","l":"Prauserella soli","na":1,"nb":1,"a":[["oil-fuel-habitatmech-bacdive-9f31ab2d87.html","Oil-Fuel"]],"b":[["NCBITaxon%3A1356851","Prauserella soli"]]},{"id":"NCBITaxon:1357294","l":"Staphylococcus equorum UMC-CNS-924","na":1,"nb":1,"a":[["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["NCBITaxon%3A1357294","Staphylococcus equorum UMC-CNS-924"]]},{"id":"NCBITaxon:135740","l":"Paracoccus kondratievae","na":1,"nb":1,"a":[["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["NCBITaxon%3A135740","Paracoccus kondratievae"]]},{"id":"NCBITaxon:135826","l":"Jeotgalibacillus alimentarius","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A135826","Jeotgalibacillus alimentarius"]]},{"id":"NCBITaxon:1359204","l":"Rickettsia rhipicephali str. HJ#5","na":1,"nb":1,"a":[["vero-cell-bto-0001444.html","Vero cell"]],"b":[["NCBITaxon%3A1359204","Rickettsia rhipicephali str. HJ#5"]]},{"id":"NCBITaxon:136468","l":"Vibrio lentus","na":1,"nb":1,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A136468","Vibrio lentus"]]},{"id":"NCBITaxon:1365636","l":"Helicobacter pylori UM023","na":1,"nb":1,"a":[["lymphoid-tissue-bto-0000753.html","lymphoid tissue"]],"b":[["NCBITaxon%3A1365636","Helicobacter pylori UM023"]]},{"id":"NCBITaxon:1367852","l":"Izhakiella capsodis","na":1,"nb":1,"a":[["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A1367852","Izhakiella capsodis"]]},{"id":"NCBITaxon:137584","l":"Thalassomonas viridans","na":1,"nb":1,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A137584","Thalassomonas viridans"]]},{"id":"NCBITaxon:137778","l":"Helicobacter aurati","na":1,"nb":1,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A137778","Helicobacter aurati"]]},{"id":"NCBITaxon:137838","l":"Clostridium neonatale","na":1,"nb":1,"a":[["ileum-bto-0000620.html","ileum"]],"b":[["NCBITaxon%3A137838","Clostridium neonatale"]]},{"id":"NCBITaxon:1379676","l":"Xenorhabdus bovienii str. Jollieti","na":1,"nb":1,"a":[["exoskeleton-bto-0004659.html","exoskeleton"]],"b":[["NCBITaxon%3A1379676","Xenorhabdus bovienii str. Jollieti"]]},{"id":"NCBITaxon:1379787","l":"Wolbachia pipientis wUni","na":1,"nb":1,"a":[["semen-bto-0001230.html","semen"]],"b":[["NCBITaxon%3A1379787","Wolbachia pipientis wUni"]]},{"id":"NCBITaxon:1380347","l":"Geodermatophilaceae bacterium URHB0048","na":1,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["NCBITaxon%3A1380347","Geodermatophilaceae bacterium URHB0048"]]},{"id":"NCBITaxon:1380348","l":"Acidobacteriaceae bacterium URHE0068","na":1,"nb":1,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A1380348","Acidobacteriaceae bacterium URHE0068"]]},{"id":"NCBITaxon:1380394","l":"Rhodospirillales bacterium URHD0088","na":1,"nb":1,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A1380394","Rhodospirillales bacterium URHD0088"]]},{"id":"NCBITaxon:1380685","l":"Kroppenstedtia pulmonis","na":1,"nb":1,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["NCBITaxon%3A1380685","Kroppenstedtia pulmonis"]]},{"id":"NCBITaxon:1380771","l":"Smithella sp. ME-1","na":1,"nb":1,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"]],"b":[["NCBITaxon%3A1380771","Smithella sp. ME-1"]]},{"id":"NCBITaxon:1381081","l":"Vibrio panuliri","na":1,"nb":1,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["NCBITaxon%3A1381081","Vibrio panuliri"]]},{"id":"NCBITaxon:1381124","l":"Limosilactobacillus fermentum 3872","na":1,"nb":1,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"]],"b":[["NCBITaxon%3A1381124","Limosilactobacillus fermentum 3872"]]},{"id":"NCBITaxon:1384051","l":"Bacillus amyloliquefaciens UASWS BA1","na":1,"nb":1,"a":[["wood-bto-0005516.html","wood"]],"b":[["NCBITaxon%3A1384051","Bacillus amyloliquefaciens UASWS BA1"]]},{"id":"NCBITaxon:1384060","l":"Rhodococcus sp. P27","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1384060","Rhodococcus sp. P27"]]},{"id":"NCBITaxon:1384063","l":"Mediterraneibacter gnavus AGR2154","na":1,"nb":1,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A1384063","Mediterraneibacter gnavus AGR2154"]]},{"id":"NCBITaxon:1384064","l":"Levilactobacillus brevis AG48","na":1,"nb":1,"a":[["foregut-bto-0000507.html","foregut"]],"b":[["NCBITaxon%3A1384064","Levilactobacillus brevis AG48"]]},{"id":"NCBITaxon:1384065","l":"Hominimerdicola alba AD2013","na":1,"nb":1,"a":[["foregut-bto-0000507.html","foregut"]],"b":[["NCBITaxon%3A1384065","Hominimerdicola alba AD2013"]]},{"id":"NCBITaxon:1384066","l":"Ruminococcus flavefaciens AE3010","na":1,"nb":1,"a":[["foregut-bto-0000507.html","foregut"]],"b":[["NCBITaxon%3A1384066","Ruminococcus flavefaciens AE3010"]]},{"id":"NCBITaxon:1384067","l":"Pediococcus acidilactici AGR20","na":1,"nb":1,"a":[["foregut-bto-0000507.html","foregut"]],"b":[["NCBITaxon%3A1384067","Pediococcus acidilactici AGR20"]]},{"id":"NCBITaxon:1384638","l":"Aridibacter famidurans","na":1,"nb":1,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A1384638","Aridibacter famidurans"]]},{"id":"NCBITaxon:1385420","l":"Allofrancisella heilbronnii","na":1,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A1385420","Allofrancisella heilbronnii"]]},{"id":"NCBITaxon:1386083","l":"Helicobacter pylori X47-2AL","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A1386083","Helicobacter pylori X47-2AL"]]},{"id":"NCBITaxon:1387197","l":"Candidatus Schmidhempelia bombi str. Bimp","na":1,"nb":1,"a":[["hindgut-bto-0000510.html","hindgut"]],"b":[["NCBITaxon%3A1387197","Candidatus Schmidhempelia bombi str. Bimp"]]},{"id":"NCBITaxon:1387275","l":"Chryseobacterium profundimaris","na":1,"nb":1,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["NCBITaxon%3A1387275","Chryseobacterium profundimaris"]]},{"id":"NCBITaxon:1389006","l":"Shimia sp. SK013","na":1,"nb":1,"a":[["filament-bto-0000463.html","filament"]],"b":[["NCBITaxon%3A1389006","Shimia sp. SK013"]]},{"id":"NCBITaxon:1389932","l":"Achromobacter pulmonis","na":1,"nb":1,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"]],"b":[["NCBITaxon%3A1389932","Achromobacter pulmonis"]]},{"id":"NCBITaxon:1390076","l":"Streptococcus pyogenes SP1-LAU","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A1390076","Streptococcus pyogenes SP1-LAU"]]},{"id":"NCBITaxon:1390077","l":"Streptococcus pyogenes SP2-LAU","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A1390077","Streptococcus pyogenes SP2-LAU"]]},{"id":"NCBITaxon:1390078","l":"Streptococcus pyogenes SP3-LAU","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A1390078","Streptococcus pyogenes SP3-LAU"]]},{"id":"NCBITaxon:1390079","l":"Streptococcus pyogenes SP4-LAU","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A1390079","Streptococcus pyogenes SP4-LAU"]]},{"id":"NCBITaxon:1390080","l":"Streptococcus pyogenes SP5-LAU","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A1390080","Streptococcus pyogenes SP5-LAU"]]},{"id":"NCBITaxon:1390081","l":"Streptococcus pyogenes SP6-LAU","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A1390081","Streptococcus pyogenes SP6-LAU"]]},{"id":"NCBITaxon:1390082","l":"Streptococcus pyogenes SP7-LAU","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A1390082","Streptococcus pyogenes SP7-LAU"]]},{"id":"NCBITaxon:1390083","l":"Streptococcus pyogenes SP8-LAU","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A1390083","Streptococcus pyogenes SP8-LAU"]]},{"id":"NCBITaxon:1390084","l":"Streptococcus pyogenes SP10-LAU","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A1390084","Streptococcus pyogenes SP10-LAU"]]},{"id":"NCBITaxon:1390361","l":"Ochrobactrum sp. EGD-AQ16","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A1390361","Ochrobactrum sp. EGD-AQ16"]]},{"id":"NCBITaxon:1390380","l":"Cronobacter turicensis z610","na":1,"nb":1,"a":[["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A1390380","Cronobacter turicensis z610"]]},{"id":"NCBITaxon:1392007","l":"Ligilactobacillus equi DPC 6820","na":1,"nb":1,"a":[["hindgut-bto-0000510.html","hindgut"]],"b":[["NCBITaxon%3A1392007","Ligilactobacillus equi DPC 6820"]]},{"id":"NCBITaxon:1392497","l":"Clostridioides mangenotii LM2","na":1,"nb":1,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A1392497","Clostridioides mangenotii LM2"]]},{"id":"NCBITaxon:1392836","l":"Lachnospiraceae bacterium TWA4","na":1,"nb":1,"a":[["forestomach-bto-0000480.html","forestomach"]],"b":[["NCBITaxon%3A1392836","Lachnospiraceae bacterium TWA4"]]},{"id":"NCBITaxon:1392852","l":"Escherichia coli M6","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392852","Escherichia coli M6"]]},{"id":"NCBITaxon:1392853","l":"Escherichia coli M7","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392853","Escherichia coli M7"]]},{"id":"NCBITaxon:1392855","l":"Escherichia coli M9","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392855","Escherichia coli M9"]]},{"id":"NCBITaxon:1392857","l":"Escherichia coli M11","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392857","Escherichia coli M11"]]},{"id":"NCBITaxon:1392858","l":"Escherichia coli M12","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392858","Escherichia coli M12"]]},{"id":"NCBITaxon:1392859","l":"Escherichia coli M13","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392859","Escherichia coli M13"]]},{"id":"NCBITaxon:1392860","l":"Escherichia coli M14","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392860","Escherichia coli M14"]]},{"id":"NCBITaxon:1392861","l":"Escherichia coli M16","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392861","Escherichia coli M16"]]},{"id":"NCBITaxon:1392862","l":"Escherichia coli M17","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392862","Escherichia coli M17"]]},{"id":"NCBITaxon:1392863","l":"Escherichia coli M18","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392863","Escherichia coli M18"]]},{"id":"NCBITaxon:1392866","l":"Escherichia coli M21","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392866","Escherichia coli M21"]]},{"id":"NCBITaxon:1392867","l":"Escherichia coli M22","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392867","Escherichia coli M22"]]},{"id":"NCBITaxon:1392868","l":"Escherichia coli M23","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392868","Escherichia coli M23"]]},{"id":"NCBITaxon:1392871","l":"Escherichia coli WC1","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1392871","Escherichia coli WC1"]]},{"id":"NCBITaxon:1395579","l":"Enterobacter sp. DC3","na":1,"nb":1,"a":[["tuber-bto-0001400.html","tuber"]],"b":[["NCBITaxon%3A1395579","Enterobacter sp. DC3"]]},{"id":"NCBITaxon:1395580","l":"Enterobacter sp. DC4","na":1,"nb":1,"a":[["tuber-bto-0001400.html","tuber"]],"b":[["NCBITaxon%3A1395580","Enterobacter sp. DC4"]]},{"id":"NCBITaxon:1395944","l":"Aliirhizobium smilacinae","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1395944","Aliirhizobium smilacinae"]]},{"id":"NCBITaxon:1397850","l":"Mycoplasmopsis californica HAZ160_1","na":1,"nb":1,"a":[["somatic-cell-bto-0001268.html","somatic cell"]],"b":[["NCBITaxon%3A1397850","Mycoplasmopsis californica HAZ160_1"]]},{"id":"NCBITaxon:1398664","l":"Paraburkholderia metalliresistens","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A1398664","Paraburkholderia metalliresistens"]]},{"id":"NCBITaxon:1398776","l":"Pseudomonas chlororaphis YL-1","na":1,"nb":1,"a":[["root-tip-bto-0001191.html","root tip"]],"b":[["NCBITaxon%3A1398776","Pseudomonas chlororaphis YL-1"]]},{"id":"NCBITaxon:1399774","l":"Enterobacter cloacae JD6301","na":1,"nb":1,"a":[["wastewater-treatment-plant-envo-00002043.html","wastewater treatment plant"]],"b":[["NCBITaxon%3A1399774","Enterobacter cloacae JD6301"]]},{"id":"NCBITaxon:1399793","l":"Lactiplantibacillus plantarum 19L3","na":1,"nb":1,"a":[["rennet-bto-0001168.html","rennet"]],"b":[["NCBITaxon%3A1399793","Lactiplantibacillus plantarum 19L3"]]},{"id":"NCBITaxon:1399969","l":"Caballeronia megalochromosomata","na":1,"nb":1,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A1399969","Caballeronia megalochromosomata"]]},{"id":"NCBITaxon:1400868","l":"Pseudomonas aeruginosa VRFPA04","na":1,"nb":1,"a":[["cornea-bto-0000286.html","cornea"]],"b":[["NCBITaxon%3A1400868","Pseudomonas aeruginosa VRFPA04"]]},{"id":"NCBITaxon:1401264","l":"Prauserella coralliicola","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A1401264","Prauserella coralliicola"]]},{"id":"NCBITaxon:1402208","l":"Ligilactobacillus ruminis DPC 6832","na":1,"nb":1,"a":[["flagellate-bto-0000464.html","flagellate"]],"b":[["NCBITaxon%3A1402208","Ligilactobacillus ruminis DPC 6832"]]},{"id":"NCBITaxon:1403829","l":"Streptococcus mutans PKUSS-HG01","na":1,"nb":1,"a":[["dental-plaque-bto-0000338.html","dental plaque"]],"b":[["NCBITaxon%3A1403829","Streptococcus mutans PKUSS-HG01"]]},{"id":"NCBITaxon:1404260","l":"Streptococcus mutans PKUSS-LG01","na":1,"nb":1,"a":[["dental-plaque-bto-0000338.html","dental plaque"]],"b":[["NCBITaxon%3A1404260","Streptococcus mutans PKUSS-LG01"]]},{"id":"NCBITaxon:1405296","l":"Chlamydia suis MD56","na":1,"nb":1,"a":[["conjunctiva-bto-0003415.html","conjunctiva"]],"b":[["NCBITaxon%3A1405296","Chlamydia suis MD56"]]},{"id":"NCBITaxon:1405499","l":"Franconibacter helveticus 1159","na":1,"nb":1,"a":[["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A1405499","Franconibacter helveticus 1159"]]},{"id":"NCBITaxon:1406822","l":"Franconibacter pulveris 1160","na":1,"nb":1,"a":[["fruit-bto-0000486.html","fruit"]],"b":[["NCBITaxon%3A1406822","Franconibacter pulveris 1160"]]},{"id":"NCBITaxon:1408179","l":"Streptococcus pneumoniae A026","na":1,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"]],"b":[["NCBITaxon%3A1408179","Streptococcus pneumoniae A026"]]},{"id":"NCBITaxon:1408207","l":"Pseudomonas aeruginosa PK6","na":1,"nb":1,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"]],"b":[["NCBITaxon%3A1408207","Pseudomonas aeruginosa PK6"]]},{"id":"NCBITaxon:1408275","l":"Pseudomonas aeruginosa LESlike4","na":1,"nb":1,"a":[["amoeba-bto-0005312.html","amoeba"]],"b":[["NCBITaxon%3A1408275","Pseudomonas aeruginosa LESlike4"]]},{"id":"NCBITaxon:1408276","l":"Pseudomonas aeruginosa LESlike5","na":1,"nb":1,"a":[["amoeba-bto-0005312.html","amoeba"]],"b":[["NCBITaxon%3A1408276","Pseudomonas aeruginosa LESlike5"]]},{"id":"NCBITaxon:1408277","l":"Pseudomonas aeruginosa LESlike7","na":1,"nb":1,"a":[["amoeba-bto-0005312.html","amoeba"]],"b":[["NCBITaxon%3A1408277","Pseudomonas aeruginosa LESlike7"]]},{"id":"NCBITaxon:1408287","l":"Fusobacterium nucleatum W1481","na":1,"nb":1,"a":[["dental-plaque-bto-0000338.html","dental plaque"]],"b":[["NCBITaxon%3A1408287","Fusobacterium nucleatum W1481"]]},{"id":"NCBITaxon:1408452","l":"Mycobacterium genavense ATCC 51234","na":1,"nb":1,"a":[["blood-bto-0000089.html","blood"]],"b":[["NCBITaxon%3A1408452","Mycobacterium genavense ATCC 51234"]]},{"id":"NCBITaxon:1409927","l":"Acinetobacter baumannii MRSN 7339","na":1,"nb":1,"a":[["fibroblast-bto-0000452.html","fibroblast"]],"b":[["NCBITaxon%3A1409927","Acinetobacter baumannii MRSN 7339"]]},{"id":"NCBITaxon:1409961","l":"Klebsiella pneumoniae MRSN 1319","na":1,"nb":1,"a":[["fibroblast-bto-0000452.html","fibroblast"]],"b":[["NCBITaxon%3A1409961","Klebsiella pneumoniae MRSN 1319"]]},{"id":"NCBITaxon:1410916","l":"Salmonella enterica subsp. enterica serovar Cerro str. CFSAN001588","na":1,"nb":1,"a":[["hindgut-bto-0000510.html","hindgut"]],"b":[["NCBITaxon%3A1410916","Salmonella enterica subsp. enterica serovar Cerro str. CFSAN001588"]]},{"id":"NCBITaxon:1411902","l":"Pacificitalea manganoxidans","na":1,"nb":1,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["NCBITaxon%3A1411902","Pacificitalea manganoxidans"]]},{"id":"NCBITaxon:141349","l":"Mycobacterium lentiflavum","na":1,"nb":1,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["NCBITaxon%3A141349","Mycobacterium lentiflavum"]]},{"id":"NCBITaxon:141451","l":"Oleiphilus messinensis","na":1,"nb":1,"a":[["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A141451","Oleiphilus messinensis"]]},{"id":"NCBITaxon:1415606","l":"Bifidobacterium animalis subsp. lactis CECT 8145","na":1,"nb":1,"a":[["blood-plasma-bto-0000131.html","blood plasma"]],"b":[["NCBITaxon%3A1415606","Bifidobacterium animalis subsp. lactis CECT 8145"]]},{"id":"NCBITaxon:1417989","l":"Burkholderia glumae 336gr-1","na":1,"nb":1,"a":[["panicle-bto-0005436.html","panicle"]],"b":[["NCBITaxon%3A1417989","Burkholderia glumae 336gr-1"]]},{"id":"NCBITaxon:1421531","l":"Pseudomonas aeruginosa 0C2E","na":1,"nb":1,"a":[["secretory-cell-bto-0003659.html","secretory cell"]],"b":[["NCBITaxon%3A1421531","Pseudomonas aeruginosa 0C2E"]]},{"id":"NCBITaxon:1424653","l":"Caminibacter pacificus","na":1,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["NCBITaxon%3A1424653","Caminibacter pacificus"]]},{"id":"NCBITaxon:1427984","l":"Candidatus Hepatoplasma crinochetorum Av","na":1,"nb":1,"a":[["hepatopancreas-bto-0000597.html","hepatopancreas"]],"b":[["NCBITaxon%3A1427984","Candidatus Hepatoplasma crinochetorum Av"]]},{"id":"NCBITaxon:1427985","l":"Bordetella bronchiseptica KM22","na":1,"nb":1,"a":[["nasal-cavity-bto-0002096.html","nasal cavity"]],"b":[["NCBITaxon%3A1427985","Bordetella bronchiseptica KM22"]]},{"id":"NCBITaxon:1429886","l":"Mycobacterium tuberculosis MTB-489","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1429886","Mycobacterium tuberculosis MTB-489"]]},{"id":"NCBITaxon:1429887","l":"Mycobacterium tuberculosis MTB-476","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1429887","Mycobacterium tuberculosis MTB-476"]]},{"id":"NCBITaxon:1430326","l":"Mycobacterium decipiens","na":1,"nb":1,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"]],"b":[["NCBITaxon%3A1430326","Mycobacterium decipiens"]]},{"id":"NCBITaxon:1433126","l":"Mucinivorans hirudinis","na":1,"nb":1,"a":[["alimentary-canal-bto-0000058.html","alimentary canal"]],"b":[["NCBITaxon%3A1433126","Mucinivorans hirudinis"]]},{"id":"NCBITaxon:1434066","l":"Psychroserpens luteus","na":1,"nb":1,"a":[["subarctic-habitatmech-bacdive-09ded89de7.html","Subarctic"]],"b":[["NCBITaxon%3A1434066","Psychroserpens luteus"]]},{"id":"NCBITaxon:1434770","l":"Chlamydia muridarum str. Nigg3 CMUT3-5","na":1,"nb":1,"a":[["oviduct-bto-0000980.html","oviduct"]],"b":[["NCBITaxon%3A1434770","Chlamydia muridarum str. Nigg3 CMUT3-5"]]},{"id":"NCBITaxon:1434773","l":"Chlamydia muridarum str. Nigg CM972","na":1,"nb":1,"a":[["oviduct-bto-0000980.html","oviduct"]],"b":[["NCBITaxon%3A1434773","Chlamydia muridarum str. Nigg CM972"]]},{"id":"NCBITaxon:1435357","l":"Bacillus anthracis str. V770-NP1-R","na":1,"nb":1,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A1435357","Bacillus anthracis str. V770-NP1-R"]]},{"id":"NCBITaxon:1435425","l":"Pseudomonas sp. QTF5","na":1,"nb":1,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A1435425","Pseudomonas sp. QTF5"]]},{"id":"NCBITaxon:1436000","l":"Edwardsiella anguillarum ET080729","na":1,"nb":1,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["NCBITaxon%3A1436000","Edwardsiella anguillarum ET080729"]]},{"id":"NCBITaxon:1436301","l":"Edwardsiella anguillarum ET070829","na":1,"nb":1,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["NCBITaxon%3A1436301","Edwardsiella anguillarum ET070829"]]},{"id":"NCBITaxon:1436798","l":"Rickettsia fournieri","na":1,"nb":1,"a":[["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["NCBITaxon%3A1436798","Rickettsia fournieri"]]},{"id":"NCBITaxon:1436965","l":"Peptoniphilus stercorisuis","na":1,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"]],"b":[["NCBITaxon%3A1436965","Peptoniphilus stercorisuis"]]},{"id":"NCBITaxon:1437009","l":"Chenggangzhangella methanolivorans","na":1,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"]],"b":[["NCBITaxon%3A1437009","Chenggangzhangella methanolivorans"]]},{"id":"NCBITaxon:143802","l":"Ralstonia sp. HAB-11","na":1,"nb":1,"a":[["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A143802","Ralstonia sp. HAB-11"]]},{"id":"NCBITaxon:1438822","l":"Mycobacterium tuberculosis variant bovis B2 7505","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1438822","Mycobacterium tuberculosis variant bovis B2 7505"]]},{"id":"NCBITaxon:1438823","l":"Mycobacterium tuberculosis variant bovis Bz 31150","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1438823","Mycobacterium tuberculosis variant bovis Bz 31150"]]},{"id":"NCBITaxon:1440054","l":"Vibrio sp. OY15","na":1,"nb":1,"a":[["embryonic-stem-cell-bto-0001086.html","embryonic stem cell"]],"b":[["NCBITaxon%3A1440054","Vibrio sp. OY15"]]},{"id":"NCBITaxon:1444768","l":"Kitasatospora sp. MBT63","na":1,"nb":1,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A1444768","Kitasatospora sp. MBT63"]]},{"id":"NCBITaxon:1446466","l":"Candidatus Acetithermum autotrophicum","na":1,"nb":1,"a":[["finger-bto-0004669.html","finger"]],"b":[["NCBITaxon%3A1446466","Candidatus Acetithermum autotrophicum"]]},{"id":"NCBITaxon:1448137","l":"Staphylococcus aureus MRSA_CVM43477","na":1,"nb":1,"a":[["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["NCBITaxon%3A1448137","Staphylococcus aureus MRSA_CVM43477"]]},{"id":"NCBITaxon:1448141","l":"Trueperella pyogenes MS249","na":1,"nb":1,"a":[["uterus-bto-0001424.html","uterus"]],"b":[["NCBITaxon%3A1448141","Trueperella pyogenes MS249"]]},{"id":"NCBITaxon:1450449","l":"Mannheimia haemolytica serotype A1/A6 str. PKL10","na":1,"nb":1,"a":[["spleen-bto-0001281.html","spleen"]],"b":[["NCBITaxon%3A1450449","Mannheimia haemolytica serotype A1/A6 str. PKL10"]]},{"id":"NCBITaxon:1450517","l":"Escherichia coli MS499","na":1,"nb":1,"a":[["uterus-bto-0001424.html","uterus"]],"b":[["NCBITaxon%3A1450517","Escherichia coli MS499"]]},{"id":"NCBITaxon:1452538","l":"Microbacterium aureliae","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A1452538","Microbacterium aureliae"]]},{"id":"NCBITaxon:1454184","l":"Alkaliphilus namsaraevii","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A1454184","Alkaliphilus namsaraevii"]]},{"id":"NCBITaxon:145483","l":"Frigoribacterium faeni","na":1,"nb":1,"a":[["sea-water-envo-00002149.html","sea water"]],"b":[["NCBITaxon%3A145483","Frigoribacterium faeni"]]},{"id":"NCBITaxon:1455611","l":"Mycobacterium tuberculosis K85","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A1455611","Mycobacterium tuberculosis K85"]]},{"id":"NCBITaxon:1457191","l":"Lacticaseibacillus rhamnosus E800","na":1,"nb":1,"a":[["gut-mucosa-bto-0000546.html","gut mucosa"]],"b":[["NCBITaxon%3A1457191","Lacticaseibacillus rhamnosus E800"]]},{"id":"NCBITaxon:1457392","l":"Pseudomonas aeruginosa PA96","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1457392","Pseudomonas aeruginosa PA96"]]},{"id":"NCBITaxon:1457395","l":"Lacticaseibacillus rhamnosus PEL5","na":1,"nb":1,"a":[["gut-mucosa-bto-0000546.html","gut mucosa"]],"b":[["NCBITaxon%3A1457395","Lacticaseibacillus rhamnosus PEL5"]]},{"id":"NCBITaxon:1457396","l":"Lacticaseibacillus rhamnosus PEL6","na":1,"nb":1,"a":[["gut-mucosa-bto-0000546.html","gut mucosa"]],"b":[["NCBITaxon%3A1457396","Lacticaseibacillus rhamnosus PEL6"]]},{"id":"NCBITaxon:1458279","l":"Staphylococcus aureus USA300-ISMMS1","na":1,"nb":1,"a":[["liver-bto-0000759.html","liver"]],"b":[["NCBITaxon%3A1458279","Staphylococcus aureus USA300-ISMMS1"]]},{"id":"NCBITaxon:1458472","l":"Mycobacterium tuberculosis CWCFVRF MDRTB 670","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1458472","Mycobacterium tuberculosis CWCFVRF MDRTB 670"]]},{"id":"NCBITaxon:1461579","l":"Haemophilus massiliensis","na":1,"nb":1,"a":[["peritoneal-fluid-bto-0001031.html","peritoneal fluid"]],"b":[["NCBITaxon%3A1461579","Haemophilus massiliensis"]]},{"id":"NCBITaxon:146819","l":"Streptomyces europaeiscabiei","na":1,"nb":1,"a":[["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A146819","Streptomyces europaeiscabiei"]]},{"id":"NCBITaxon:1470180","l":"Prauserella isguenensis","na":1,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A1470180","Prauserella isguenensis"]]},{"id":"NCBITaxon:1470200","l":"Neisseria arctica","na":1,"nb":1,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["NCBITaxon%3A1470200","Neisseria arctica"]]},{"id":"NCBITaxon:1471438","l":"Prochlorococcus sp. scB241_526B19","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1471438","Prochlorococcus sp. scB241_526B19"]]},{"id":"NCBITaxon:1471439","l":"Prochlorococcus sp. scB241_526B22","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1471439","Prochlorococcus sp. scB241_526B22"]]},{"id":"NCBITaxon:1471498","l":"Prochlorococcus sp. scB243_498N8","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1471498","Prochlorococcus sp. scB243_498N8"]]},{"id":"NCBITaxon:1471499","l":"Prochlorococcus sp. scB243_498P15","na":1,"nb":1,"a":[["spinal-column-bto-0000818.html","spinal column"]],"b":[["NCBITaxon%3A1471499","Prochlorococcus sp. scB243_498P15"]]},{"id":"NCBITaxon:147248","l":"Halomonas alimentaria","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A147248","Halomonas alimentaria"]]},{"id":"NCBITaxon:1472682","l":"Psychrobacter sp. 310(2012)","na":1,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"]],"b":[["NCBITaxon%3A1472682","Psychrobacter sp. 310(2012)"]]},{"id":"NCBITaxon:1476","l":"Sporosarcina psychrophila","na":1,"nb":1,"a":[["surface-water-envo-00002042.html","surface water"]],"b":[["NCBITaxon%3A1476","Sporosarcina psychrophila"]]},{"id":"NCBITaxon:1476996","l":"Arthrobacter liuii","na":1,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A1476996","Arthrobacter liuii"]]},{"id":"NCBITaxon:1479025","l":"Myceligenerans cantabricum","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A1479025","Myceligenerans cantabricum"]]},{"id":"NCBITaxon:1481923","l":"Vibrio astriarenae","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A1481923","Vibrio astriarenae"]]},{"id":"NCBITaxon:1484116","l":"Hymenobacter psoromatis","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A1484116","Hymenobacter psoromatis"]]},{"id":"NCBITaxon:1484118","l":"Hymenobacter sp. PAMC 26628","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A1484118","Hymenobacter sp. PAMC 26628"]]},{"id":"NCBITaxon:148449","l":"Halopiger aswanensis","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A148449","Halopiger aswanensis"]]},{"id":"NCBITaxon:1485217","l":"Massilia eurypsychrophila","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1485217","Massilia eurypsychrophila"]]},{"id":"NCBITaxon:1485544","l":"Ferriphaselus sp. R-1","na":1,"nb":1,"a":[["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A1485544","Ferriphaselus sp. R-1"]]},{"id":"NCBITaxon:1486034","l":"Lacinutrix venerupis","na":1,"nb":1,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A1486034","Lacinutrix venerupis"]]},{"id":"NCBITaxon:1487861","l":"Actinopolyspora sp. M5A","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A1487861","Actinopolyspora sp. M5A"]]},{"id":"NCBITaxon:1488331","l":"Fusibacter bizertensis","na":1,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"]],"b":[["NCBITaxon%3A1488331","Fusibacter bizertensis"]]},{"id":"NCBITaxon:1490222","l":"Actinoallomurus bryophytorum","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A1490222","Actinoallomurus bryophytorum"]]},{"id":"NCBITaxon:1494448","l":"Chelatococcus reniformis","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1494448","Chelatococcus reniformis"]]},{"id":"NCBITaxon:1495045","l":"Thermopetrobacter sp. TC1","na":1,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["NCBITaxon%3A1495045","Thermopetrobacter sp. TC1"]]},{"id":"NCBITaxon:1497681","l":"Paenilisteria newyorkensis","na":1,"nb":1,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["NCBITaxon%3A1497681","Paenilisteria newyorkensis"]]},{"id":"NCBITaxon:150","l":"Spirochaeta isovalerica","na":1,"nb":1,"a":[["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["NCBITaxon%3A150","Spirochaeta isovalerica"]]},{"id":"NCBITaxon:1500506","l":"Halopolyspora algeriensis","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A1500506","Halopolyspora algeriensis"]]},{"id":"NCBITaxon:1500538","l":"Teredinibacter waterburyi","na":1,"nb":1,"a":[["sound-envo-00000393.html","sound"]],"b":[["NCBITaxon%3A1500538","Teredinibacter waterburyi"]]},{"id":"NCBITaxon:150121","l":"Agreia pratensis","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A150121","Agreia pratensis"]]},{"id":"NCBITaxon:150122","l":"Curtobacterium herbarum","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A150122","Curtobacterium herbarum"]]},{"id":"NCBITaxon:1501432","l":"Thiopseudomonas denitrificans","na":1,"nb":1,"a":[["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["NCBITaxon%3A1501432","Thiopseudomonas denitrificans"]]},{"id":"NCBITaxon:150248","l":"Anoxybacillus pushchinoensis","na":1,"nb":1,"a":[["intestine-environment-envo-2100002.html","intestine environment"]],"b":[["NCBITaxon%3A150248","Anoxybacillus pushchinoensis"]]},{"id":"NCBITaxon:1502762","l":"Janthinobacterium sp. RA13","na":1,"nb":1,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A1502762","Janthinobacterium sp. RA13"]]},{"id":"NCBITaxon:1505946","l":"Mesorhizobium sp. SOD10","na":1,"nb":1,"a":[["hair-follicle-outer-root-sheath-bto-0003969.html","hair follicle outer root sheath"]],"b":[["NCBITaxon%3A1505946","Mesorhizobium sp. SOD10"]]},{"id":"NCBITaxon:1513468","l":"Rouxiella chamberiensis","na":1,"nb":1,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["NCBITaxon%3A1513468","Rouxiella chamberiensis"]]},{"id":"NCBITaxon:1515612","l":"Sphingopyxis fribergensis","na":1,"nb":1,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A1515612","Sphingopyxis fribergensis"]]},{"id":"NCBITaxon:151654","l":"Cupriavidus laharis","na":1,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A151654","Cupriavidus laharis"]]},{"id":"NCBITaxon:1522140","l":"Nocardia xestospongiae","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1522140","Nocardia xestospongiae"]]},{"id":"NCBITaxon:1524095","l":"Hymenobacter frigidus","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1524095","Hymenobacter frigidus"]]},{"id":"NCBITaxon:1524097","l":"Massilia glaciei","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1524097","Massilia glaciei"]]},{"id":"NCBITaxon:1524460","l":"Phaeodactylibacter xiamenensis","na":1,"nb":1,"a":[["co-culture-habitatmech-bacdive-ff945d8a69.html","Co-culture"]],"b":[["NCBITaxon%3A1524460","Phaeodactylibacter xiamenensis"]]},{"id":"NCBITaxon:1524467","l":"Serratia sp. Ag1","na":1,"nb":1,"a":[["midgut-bto-0000863.html","midgut"]],"b":[["NCBITaxon%3A1524467","Serratia sp. Ag1"]]},{"id":"NCBITaxon:1526762","l":"Vibrio sp. B183","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1526762","Vibrio sp. B183"]]},{"id":"NCBITaxon:1528099","l":"Lawsonella clevelandensis","na":1,"nb":1,"a":[["peritoneum-bto-0001472.html","peritoneum"]],"b":[["NCBITaxon%3A1528099","Lawsonella clevelandensis"]]},{"id":"NCBITaxon:1532556","l":"Serratia sp. Ag2","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1532556","Serratia sp. Ag2"]]},{"id":"NCBITaxon:153494","l":"Rarobacter incanus","na":1,"nb":1,"a":[["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["NCBITaxon%3A153494","Rarobacter incanus"]]},{"id":"NCBITaxon:153500","l":"uncultured Methylomonas sp.","na":1,"nb":1,"a":[["low-tide-zone-envo-00000319.html","low tide zone"]],"b":[["NCBITaxon%3A153500","uncultured Methylomonas sp."]]},{"id":"NCBITaxon:1537524","l":"Thiogranum longum","na":1,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["NCBITaxon%3A1537524","Thiogranum longum"]]},{"id":"NCBITaxon:1538102","l":"Pseudochelatococcus lubricantis","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A1538102","Pseudochelatococcus lubricantis"]]},{"id":"NCBITaxon:1538103","l":"Pseudochelatococcus contaminans","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A1538103","Pseudochelatococcus contaminans"]]},{"id":"NCBITaxon:1538552","l":"Clostridium sp. NCR","na":1,"nb":1,"a":[["fiber-bto-0000450.html","fiber"]],"b":[["NCBITaxon%3A1538552","Clostridium sp. NCR"]]},{"id":"NCBITaxon:1543381","l":"Oleiagrimonas soli","na":1,"nb":1,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A1543381","Oleiagrimonas soli"]]},{"id":"NCBITaxon:1543721","l":"Sedimenticola thiotaurini","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A1543721","Sedimenticola thiotaurini"]]},{"id":"NCBITaxon:1545728","l":"Mycobacterium sp. EPa45","na":1,"nb":1,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"]],"b":[["NCBITaxon%3A1545728","Mycobacterium sp. EPa45"]]},{"id":"NCBITaxon:1550","l":"Clostridium subterminale","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A1550","Clostridium subterminale"]]},{"id":"NCBITaxon:1550035","l":"Streptomyces sp. NBRC 109706","na":1,"nb":1,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["NCBITaxon%3A1550035","Streptomyces sp. NBRC 109706"]]},{"id":"NCBITaxon:155042","l":"Geobacter grbiciae","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A155042","Geobacter grbiciae"]]},{"id":"NCBITaxon:1550736","l":"Corticibacter populi","na":1,"nb":1,"a":[["wood-envo-00002040.html","wood"]],"b":[["NCBITaxon%3A1550736","Corticibacter populi"]]},{"id":"NCBITaxon:155085","l":"Staphylococcus lutrae","na":1,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"]],"b":[["NCBITaxon%3A155085","Staphylococcus lutrae"]]},{"id":"NCBITaxon:1552123","l":"Listeria booriae","na":1,"nb":1,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["NCBITaxon%3A1552123","Listeria booriae"]]},{"id":"NCBITaxon:1553448","l":"Falsigemmobacter intermedius","na":1,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A1553448","Falsigemmobacter intermedius"]]},{"id":"NCBITaxon:1553449","l":"Psychrobacter ciconiae","na":1,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A1553449","Psychrobacter ciconiae"]]},{"id":"NCBITaxon:155537","l":"Microscilla sp. PRE1","na":1,"nb":1,"a":[["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A155537","Microscilla sp. PRE1"]]},{"id":"NCBITaxon:155567","l":"uncultured Rhizobium sp.","na":1,"nb":1,"a":[["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"]],"b":[["NCBITaxon%3A155567","uncultured Rhizobium sp."]]},{"id":"NCBITaxon:1559","l":"Clostridium tertium","na":1,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"]],"b":[["NCBITaxon%3A1559","Clostridium tertium"]]},{"id":"NCBITaxon:1560217","l":"Clostridium sp. L74","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1560217","Clostridium sp. L74"]]},{"id":"NCBITaxon:1560324","l":"Arenimicrobium luteum","na":1,"nb":1,"a":[["semiarid-habitatmech-bacdive-766cd9f54f.html","Semiarid"]],"b":[["NCBITaxon%3A1560324","Arenimicrobium luteum"]]},{"id":"NCBITaxon:1561923","l":"Paenibacillus tibetensis","na":1,"nb":1,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A1561923","Paenibacillus tibetensis"]]},{"id":"NCBITaxon:1562124","l":"Hymenobacter glacieicola","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1562124","Hymenobacter glacieicola"]]},{"id":"NCBITaxon:1564159","l":"Geodermatophilus pulveris","na":1,"nb":1,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A1564159","Geodermatophilus pulveris"]]},{"id":"NCBITaxon:156523","l":"Nocardioides sp. 4P1-A","na":1,"nb":1,"a":[["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["NCBITaxon%3A156523","Nocardioides sp. 4P1-A"]]},{"id":"NCBITaxon:1566270","l":"Variovorax sp. EL159","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1566270","Variovorax sp. EL159"]]},{"id":"NCBITaxon:1566271","l":"Variovorax sp. 770b2","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1566271","Variovorax sp. 770b2"]]},{"id":"NCBITaxon:1566277","l":"Paenibacillus sp. 276b","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1566277","Paenibacillus sp. 276b"]]},{"id":"NCBITaxon:1566278","l":"Paenibacillus sp. 1_12","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1566278","Paenibacillus sp. 1_12"]]},{"id":"NCBITaxon:1566280","l":"Janthinobacterium sp. 344","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1566280","Janthinobacterium sp. 344"]]},{"id":"NCBITaxon:1566281","l":"Janthinobacterium sp. 551a","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1566281","Janthinobacterium sp. 551a"]]},{"id":"NCBITaxon:1566886","l":"Mycolicibacterium malmesburyense","na":1,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A1566886","Mycolicibacterium malmesburyense"]]},{"id":"NCBITaxon:156892","l":"Boudabousia marimammalium","na":1,"nb":1,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"]],"b":[["NCBITaxon%3A156892","Boudabousia marimammalium"]]},{"id":"NCBITaxon:156978","l":"Corynebacterium imitans","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A156978","Corynebacterium imitans"]]},{"id":"NCBITaxon:1570330","l":"Bacillus sp. BH072","na":1,"nb":1,"a":[["honey-bto-0000605.html","honey"]],"b":[["NCBITaxon%3A1570330","Bacillus sp. BH072"]]},{"id":"NCBITaxon:157227","l":"Jeotgalicoccus halotolerans","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A157227","Jeotgalicoccus halotolerans"]]},{"id":"NCBITaxon:157277","l":"uncultured Agrobacterium sp.","na":1,"nb":1,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["NCBITaxon%3A157277","uncultured Agrobacterium sp."]]},{"id":"NCBITaxon:157278","l":"uncultured Methylobacterium sp.","na":1,"nb":1,"a":[["grassland-soil-envo-00005750.html","grassland soil"]],"b":[["NCBITaxon%3A157278","uncultured Methylobacterium sp."]]},{"id":"NCBITaxon:1574623","l":"Lyngbya confervoides BDU141951","na":1,"nb":1,"a":[["filament-bto-0000463.html","filament"]],"b":[["NCBITaxon%3A1574623","Lyngbya confervoides BDU141951"]]},{"id":"NCBITaxon:1576596","l":"Pseudovibrio sp. POLY-S9","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1576596","Pseudovibrio sp. POLY-S9"]]},{"id":"NCBITaxon:157733","l":"Alkalihalobacillus macyae","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A208199","Guptibacillus hwajinpoensis"]]},{"id":"NCBITaxon:1577474","l":"Raineyella antarctica","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A1577474","Raineyella antarctica"]]},{"id":"NCBITaxon:1577895","l":"Leisingera sp. ANG-M1","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["NCBITaxon%3A1577895","Leisingera sp. ANG-M1"]]},{"id":"NCBITaxon:1577896","l":"Leisingera sp. ANG-Vp","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["NCBITaxon%3A1577896","Leisingera sp. ANG-Vp"]]},{"id":"NCBITaxon:1577897","l":"Leisingera sp. ANG-DT","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["NCBITaxon%3A1577897","Leisingera sp. ANG-DT"]]},{"id":"NCBITaxon:1577898","l":"Leisingera sp. ANG-S","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["NCBITaxon%3A1577898","Leisingera sp. ANG-S"]]},{"id":"NCBITaxon:1577899","l":"Leisingera sp. ANG-S3","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["NCBITaxon%3A1577899","Leisingera sp. ANG-S3"]]},{"id":"NCBITaxon:1577900","l":"Leisingera sp. ANG-M6","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["NCBITaxon%3A1577900","Leisingera sp. ANG-M6"]]},{"id":"NCBITaxon:1577901","l":"Leisingera sp. ANG-S5","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["NCBITaxon%3A1577901","Leisingera sp. ANG-S5"]]},{"id":"NCBITaxon:1577902","l":"Leisingera sp. ANG-M7","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["NCBITaxon%3A1577902","Leisingera sp. ANG-M7"]]},{"id":"NCBITaxon:1577903","l":"Ruegeria sp. ANG-R","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["NCBITaxon%3A1577903","Ruegeria sp. ANG-R"]]},{"id":"NCBITaxon:1577904","l":"Ruegeria sp. ANG-S4","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["NCBITaxon%3A1577904","Ruegeria sp. ANG-S4"]]},{"id":"NCBITaxon:1577905","l":"Tateyamaria sp. ANG-S1","na":1,"nb":1,"a":[["gland-bto-0000522.html","gland"]],"b":[["NCBITaxon%3A1577905","Tateyamaria sp. ANG-S1"]]},{"id":"NCBITaxon:157842","l":"Desulfofaba hansenii","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A157842","Desulfofaba hansenii"]]},{"id":"NCBITaxon:1578756","l":"Brevibacterium metallicum","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A1578756","Brevibacterium metallicum"]]},{"id":"NCBITaxon:1585697","l":"Agrobacterium arsenijevicii","na":1,"nb":1,"a":[["crown-gall-bto-0000303.html","crown gall"]],"b":[["NCBITaxon%3A1585697","Agrobacterium arsenijevicii"]]},{"id":"NCBITaxon:1585974","l":"Beduini massiliensis","na":1,"nb":1,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["NCBITaxon%3A1585974","Beduini massiliensis"]]},{"id":"NCBITaxon:1586233","l":"Halomicrobium urmianum","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A1586233","Halomicrobium urmianum"]]},{"id":"NCBITaxon:1586242","l":"Luteimonas arsenica","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A1586242","Luteimonas arsenica"]]},{"id":"NCBITaxon:1592106","l":"Terriglobus albidus","na":1,"nb":1,"a":[["semiarid-habitatmech-bacdive-766cd9f54f.html","Semiarid"]],"b":[["NCBITaxon%3A1592106","Terriglobus albidus"]]},{"id":"NCBITaxon:159478","l":"Alkanibacter difficilis","na":1,"nb":1,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"]],"b":[["NCBITaxon%3A159478","Alkanibacter difficilis"]]},{"id":"NCBITaxon:1603353","l":"Massilia psychrophila","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1603353","Massilia psychrophila"]]},{"id":"NCBITaxon:1603869","l":"Stenotrophobacter roseus","na":1,"nb":1,"a":[["semiarid-habitatmech-bacdive-766cd9f54f.html","Semiarid"]],"b":[["NCBITaxon%3A1603869","Stenotrophobacter roseus"]]},{"id":"NCBITaxon:1603870","l":"Brevitalea deliciosa","na":1,"nb":1,"a":[["semiarid-habitatmech-bacdive-766cd9f54f.html","Semiarid"]],"b":[["NCBITaxon%3A1603870","Brevitalea deliciosa"]]},{"id":"NCBITaxon:160492","l":"Xylella fastidiosa 9a5c","na":1,"nb":1,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["NCBITaxon%3A160492","Xylella fastidiosa 9a5c"]]},{"id":"NCBITaxon:1609288","l":"Streptomyces sp. ACT-1","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A1609288","Streptomyces sp. ACT-1"]]},{"id":"NCBITaxon:1609977","l":"Sphingomonas hengshuiensis","na":1,"nb":1,"a":[["marsh-envo-00000035.html","marsh"]],"b":[["NCBITaxon%3A1609977","Sphingomonas hengshuiensis"]]},{"id":"NCBITaxon:1611423","l":"Flavobacterium sp. DSM 9626","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A1611423","Flavobacterium sp. DSM 9626"]]},{"id":"NCBITaxon:161213","l":"Micrococcus sp. 28","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A161213","Micrococcus sp. 28"]]},{"id":"NCBITaxon:1612149","l":"Chryseobacterium limigenitum","na":1,"nb":1,"a":[["waste-material-envo-00002264.html","waste material"]],"b":[["NCBITaxon%3A1612149","Chryseobacterium limigenitum"]]},{"id":"NCBITaxon:1612308","l":"Methylocapsa palsarum","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A1612308","Methylocapsa palsarum"]]},{"id":"NCBITaxon:1612552","l":"Actinoalloteichus fjordicus","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1612552","Actinoalloteichus fjordicus"]]},{"id":"NCBITaxon:1614635","l":"Polaromonas eurypsychrophila","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1614635","Polaromonas eurypsychrophila"]]},{"id":"NCBITaxon:1614636","l":"Sandarakinorhabdus glacialis","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1614636","Sandarakinorhabdus glacialis"]]},{"id":"NCBITaxon:161899","l":"Corynebacterium singulare","na":1,"nb":1,"a":[["semen-bto-0001230.html","semen"]],"b":[["NCBITaxon%3A161899","Corynebacterium singulare"]]},{"id":"NCBITaxon:1619308","l":"Cnuibacter physcomitrellae","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A1619308","Cnuibacter physcomitrellae"]]},{"id":"NCBITaxon:1619309","l":"Paenibacillus herberti","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A1619309","Paenibacillus herberti"]]},{"id":"NCBITaxon:1619310","l":"Paenibacillus marchantiophytorum","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A1619310","Paenibacillus marchantiophytorum"]]},{"id":"NCBITaxon:162028","l":"Haliangium tepidum","na":1,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A162028","Haliangium tepidum"]]},{"id":"NCBITaxon:162154","l":"Candidatus Arcobacter sulfidicus","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A162154","Candidatus Arcobacter sulfidicus"]]},{"id":"NCBITaxon:162176","l":"Azospira sp. KJ","na":1,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A162176","Azospira sp. KJ"]]},{"id":"NCBITaxon:1630135","l":"Dermabacter vaginalis","na":1,"nb":1,"a":[["vaginal-fluid-uberon-0036243.html","vaginal fluid"]],"b":[["NCBITaxon%3A1630135","Dermabacter vaginalis"]]},{"id":"NCBITaxon:1631871","l":"Weissella jogaejeotgali","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A1631871","Weissella jogaejeotgali"]]},{"id":"NCBITaxon:163604","l":"Nocardiopsis exhalans","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A163604","Nocardiopsis exhalans"]]},{"id":"NCBITaxon:163605","l":"","na":1,"nb":1,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["NCBITaxon%3A109330","Nocardiopsis tropica"]]},{"id":"NCBITaxon:1636188","l":"Mycoplana azooxidifex","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1636188","Mycoplana azooxidifex"]]},{"id":"NCBITaxon:163877","l":"Virgibacillus necropolis","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A163877","Virgibacillus necropolis"]]},{"id":"NCBITaxon:163879","l":"Pseudalkalibacillus decolorationis","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A163879","Pseudalkalibacillus decolorationis"]]},{"id":"NCBITaxon:1639133","l":"Citrobacter portucalensis","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A1639133","Citrobacter portucalensis"]]},{"id":"NCBITaxon:1641715","l":"Sinobacterium norvegicum","na":1,"nb":1,"a":[["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["NCBITaxon%3A1641715","Sinobacterium norvegicum"]]},{"id":"NCBITaxon:1642469","l":"Mariniluteicoccus endophyticus","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A1642469","Mariniluteicoccus endophyticus"]]},{"id":"NCBITaxon:1643450","l":"Devosia sp. H5989","na":1,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"]],"b":[["NCBITaxon%3A1643450","Devosia sp. H5989"]]},{"id":"NCBITaxon:1643675","l":"Candidatus Caldipriscus sp. T1.2","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A1643675","Candidatus Caldipriscus sp. T1.2"]]},{"id":"NCBITaxon:1643676","l":"Candidatus Thermoproauctor sp. T2.1","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A1643676","Candidatus Thermoproauctor sp. T2.1"]]},{"id":"NCBITaxon:164608","l":"Novosphingobium sp. KA1","na":1,"nb":1,"a":[["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A164608","Novosphingobium sp. KA1"]]},{"id":"NCBITaxon:1646373","l":"Rouxiella silvae","na":1,"nb":1,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A1646373","Rouxiella silvae"]]},{"id":"NCBITaxon:1647102","l":"Vibrio sp. VPAP30","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1647102","Vibrio sp. VPAP30"]]},{"id":"NCBITaxon:1648404","l":"Aurantiacibacter atlanticus","na":1,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A1648404","Aurantiacibacter atlanticus"]]},{"id":"NCBITaxon:1648871","l":"Mycolicibacterium oryzae","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A1648871","Mycolicibacterium oryzae"]]},{"id":"NCBITaxon:1652545","l":"Arthrobacter sp. YC-RL1","na":1,"nb":1,"a":[["hydrocarbon-habitatmech-madin-6d3f5f967f.html","hydrocarbon"]],"b":[["NCBITaxon%3A1652545","Arthrobacter sp. YC-RL1"]]},{"id":"NCBITaxon:1658620","l":"Rubrivirga profundi","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1658620","Rubrivirga profundi"]]},{"id":"NCBITaxon:166318","l":"Synechococcus sp. WH 8016","na":1,"nb":1,"a":[["intertidal-zone-envo-00000316.html","intertidal zone"]],"b":[["NCBITaxon%3A166318","Synechococcus sp. WH 8016"]]},{"id":"NCBITaxon:1663241","l":"Geodermatophilus marinus","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1663241","Geodermatophilus marinus"]]},{"id":"NCBITaxon:1665626","l":"Deinococcus budaensis","na":1,"nb":1,"a":[["cave-water-habitatmech-bacdive-9ae6cfc178.html","Cave-water"]],"b":[["NCBITaxon%3A1665626","Deinococcus budaensis"]]},{"id":"NCBITaxon:1671023","l":"Tsukamurella hongkongensis","na":1,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"]],"b":[["NCBITaxon%3A1671023","Tsukamurella hongkongensis"]]},{"id":"NCBITaxon:167644","l":"Ilyobacter tartaricus","na":1,"nb":1,"a":[["lagoon-envo-00000038.html","lagoon"]],"b":[["NCBITaxon%3A167644","Ilyobacter tartaricus"]]},{"id":"NCBITaxon:1677","l":"Arthrobacter pascens","na":1,"nb":1,"a":[["temperate-coniferous-forest-biome-envo-01000211.html","temperate coniferous forest biome"]],"b":[["NCBITaxon%3A1677","Arthrobacter pascens"]]},{"id":"NCBITaxon:1679495","l":"Variovorax gossypii","na":1,"nb":1,"a":[["endosymbiont-habitatmech-bacdive-7d840c7ddc.html","Endosymbiont"]],"b":[["NCBITaxon%3A1679495","Variovorax gossypii"]]},{"id":"NCBITaxon:167968","l":"uncultured Desulfovibrio sp.","na":1,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A167968","uncultured Desulfovibrio sp."]]},{"id":"NCBITaxon:1682490","l":"Ferrigenium kumadai","na":1,"nb":1,"a":[["paddy-ricefield-habitatmech-bacdive-6e3154acd8.html","Paddy-Ricefield"]],"b":[["NCBITaxon%3A1682490","Ferrigenium kumadai"]]},{"id":"NCBITaxon:1682748","l":"Streptosporangium algeriense","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A1682748","Streptosporangium algeriense"]]},{"id":"NCBITaxon:1683161","l":"Chthonobacter albigriseus","na":1,"nb":1,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A1683161","Chthonobacter albigriseus"]]},{"id":"NCBITaxon:168379","l":"Halorhodospira neutriphila","na":1,"nb":1,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["NCBITaxon%3A168379","Halorhodospira neutriphila"]]},{"id":"NCBITaxon:1685124","l":"miscellaneous Crenarchaeota group-1 archaeon SG8-32-1","na":1,"nb":1,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["NCBITaxon%3A1685124","miscellaneous Crenarchaeota group-1 archaeon SG8-32-1"]]},{"id":"NCBITaxon:1685125","l":"miscellaneous Crenarchaeota group-1 archaeon SG8-32-3","na":1,"nb":1,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["NCBITaxon%3A1685125","miscellaneous Crenarchaeota group-1 archaeon SG8-32-3"]]},{"id":"NCBITaxon:1685126","l":"miscellaneous Crenarchaeota group-6 archaeon AD8-1","na":1,"nb":1,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["NCBITaxon%3A1685126","miscellaneous Crenarchaeota group-6 archaeon AD8-1"]]},{"id":"NCBITaxon:1685127","l":"miscellaneous Crenarchaeota group-15 archaeon DG-45","na":1,"nb":1,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["NCBITaxon%3A1685127","miscellaneous Crenarchaeota group-15 archaeon DG-45"]]},{"id":"NCBITaxon:1685133","l":"miscellaneous Crenarchaeota group archaeon SMTZ1-55","na":1,"nb":1,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["NCBITaxon%3A1685133","miscellaneous Crenarchaeota group archaeon SMTZ1-55"]]},{"id":"NCBITaxon:1685135","l":"miscellaneous Crenarchaeota group archaeon SMTZ-80","na":1,"nb":1,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["NCBITaxon%3A1685135","miscellaneous Crenarchaeota group archaeon SMTZ-80"]]},{"id":"NCBITaxon:1685415","l":"Stenotrophomonas tumulicola","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A1685415","Stenotrophomonas tumulicola"]]},{"id":"NCBITaxon:1690008","l":"Halomonas garicola","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A1690008","Halomonas garicola"]]},{"id":"NCBITaxon:1690221","l":"Streptomyces spongiicola","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1690221","Streptomyces spongiicola"]]},{"id":"NCBITaxon:169134","l":"Citricoccus muralis","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A169134","Citricoccus muralis"]]},{"id":"NCBITaxon:1696072","l":"Microbacterium sp. CGR1","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A1696072","Microbacterium sp. CGR1"]]},{"id":"NCBITaxon:1697797","l":"Actinobacteria bacterium UC5.1-1B11","na":1,"nb":1,"a":[["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697797","Actinobacteria bacterium UC5.1-1B11"]]},{"id":"NCBITaxon:1697798","l":"Actinobacteria bacterium UC5.1-1C2","na":1,"nb":1,"a":[["th17-cell-bto-0005655.html","Th17 cell"]],"b":[["NCBITaxon%3A1697798","Actinobacteria bacterium UC5.1-1C2"]]},{"id":"NCBITaxon:1698521","l":"Endozoicomonas ascidiicola","na":1,"nb":1,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A1698521","Endozoicomonas ascidiicola"]]},{"id":"NCBITaxon:1701","l":"Brevibacterium sp.","na":1,"nb":1,"a":[["research-facility-envo-00000469.html","research facility"]],"b":[["NCBITaxon%3A1701","Brevibacterium sp."]]},{"id":"NCBITaxon:170187","l":"Streptococcus pneumoniae TIGR4","na":1,"nb":1,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["NCBITaxon%3A170187","Streptococcus pneumoniae TIGR4"]]},{"id":"NCBITaxon:1703256","l":"Pseudoalteromonas gelatinilytica","na":1,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A1703256","Pseudoalteromonas gelatinilytica"]]},{"id":"NCBITaxon:1703351","l":"Bacteroides sp. SM1_62","na":1,"nb":1,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["NCBITaxon%3A1703351","Bacteroides sp. SM1_62"]]},{"id":"NCBITaxon:1703352","l":"Bacteroides sp. SM23_62","na":1,"nb":1,"a":[["estuary-envo-00000045.html","estuary"]],"b":[["NCBITaxon%3A1703352","Bacteroides sp. SM23_62"]]},{"id":"NCBITaxon:1703960","l":"Rhizobium sp. N113","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1703960","Rhizobium sp. N113"]]},{"id":"NCBITaxon:1703961","l":"Rhizobium sp. N1314","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1703961","Rhizobium sp. N1314"]]},{"id":"NCBITaxon:1703962","l":"Rhizobium sp. N1341","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1703962","Rhizobium sp. N1341"]]},{"id":"NCBITaxon:1703963","l":"Rhizobium sp. N561","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1703963","Rhizobium sp. N561"]]},{"id":"NCBITaxon:1703964","l":"Rhizobium sp. N621","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1703964","Rhizobium sp. N621"]]},{"id":"NCBITaxon:1703965","l":"Rhizobium sp. N6212","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1703965","Rhizobium sp. N6212"]]},{"id":"NCBITaxon:1703966","l":"Rhizobium sp. N731","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1703966","Rhizobium sp. N731"]]},{"id":"NCBITaxon:1703967","l":"Rhizobium sp. N741","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1703967","Rhizobium sp. N741"]]},{"id":"NCBITaxon:1703968","l":"Rhizobium sp. N871","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1703968","Rhizobium sp. N871"]]},{"id":"NCBITaxon:1703969","l":"Rhizobium sp. N324","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1703969","Rhizobium sp. N324"]]},{"id":"NCBITaxon:1703970","l":"Rhizobium sp. N541","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1703970","Rhizobium sp. N541"]]},{"id":"NCBITaxon:1703971","l":"Rhizobium sp. N941","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1703971","Rhizobium sp. N941"]]},{"id":"NCBITaxon:1704307","l":"Candidatus Xiphinematobacter sp. Idaho Grape","na":1,"nb":1,"a":[["ovary-bto-0000975.html","ovary"]],"b":[["NCBITaxon%3A1704307","Candidatus Xiphinematobacter sp. Idaho Grape"]]},{"id":"NCBITaxon:1705730","l":"Candidatus Adiutrix intracellularis","na":1,"nb":1,"a":[["area-of-national-forest-envo-00000360.html","area of national forest"]],"b":[["NCBITaxon%3A1705730","Candidatus Adiutrix intracellularis"]]},{"id":"NCBITaxon:170622","l":"Bordetella sp. 10d","na":1,"nb":1,"a":[["clay-envo-00002982.html","clay"]],"b":[["NCBITaxon%3A170622","Bordetella sp. 10d"]]},{"id":"NCBITaxon:1708715","l":"Ensifer aridi","na":1,"nb":1,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A1708715","Ensifer aridi"]]},{"id":"NCBITaxon:1710353","l":"Pseudoalteromonas sp. P1-8","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1710353","Pseudoalteromonas sp. P1-8"]]},{"id":"NCBITaxon:1710354","l":"Pseudoalteromonas sp. P1-9","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1710354","Pseudoalteromonas sp. P1-9"]]},{"id":"NCBITaxon:171291","l":"Mycoplasmopsis verecunda","na":1,"nb":1,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A171291","Mycoplasmopsis verecunda"]]},{"id":"NCBITaxon:171399","l":"Paenibacillus sp. DSM 6358","na":1,"nb":1,"a":[["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"]],"b":[["NCBITaxon%3A171399","Paenibacillus sp. DSM 6358"]]},{"id":"NCBITaxon:1714","l":"Cellulomonas uda","na":1,"nb":1,"a":[["compost-envo-00002170.html","compost"]],"b":[["NCBITaxon%3A1714","Cellulomonas uda"]]},{"id":"NCBITaxon:171402","l":"Paenibacillus sp. DSM 1474","na":1,"nb":1,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A171402","Paenibacillus sp. DSM 1474"]]},{"id":"NCBITaxon:1715254","l":"Pseudoalteromonas sp. P1-11","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1715254","Pseudoalteromonas sp. P1-11"]]},{"id":"NCBITaxon:1715285","l":"Candidatus Providencia siddallii","na":1,"nb":1,"a":[["phloem-bto-0001058.html","phloem"]],"b":[["NCBITaxon%3A1715285","Candidatus Providencia siddallii"]]},{"id":"NCBITaxon:1716141","l":"Streptomyces jeddahensis","na":1,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A1716141","Streptomyces jeddahensis"]]},{"id":"NCBITaxon:1716143","l":"Pseudodesulfovibrio indicus","na":1,"nb":1,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["NCBITaxon%3A1716143","Pseudodesulfovibrio indicus"]]},{"id":"NCBITaxon:1716175","l":"Pseudoalteromonas sp. UCD-33C","na":1,"nb":1,"a":[["leaf-lamina-bto-0000719.html","leaf lamina"]],"b":[["NCBITaxon%3A1716175","Pseudoalteromonas sp. UCD-33C"]]},{"id":"NCBITaxon:171685","l":"Alkalicoccobacillus murimartini","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A171685","Alkalicoccobacillus murimartini"]]},{"id":"NCBITaxon:171688","l":"Paenibacillus sp. LMG 20245","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A171688","Paenibacillus sp. LMG 20245"]]},{"id":"NCBITaxon:171692","l":"Virgibacillus carmonensis","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A171692","Virgibacillus carmonensis"]]},{"id":"NCBITaxon:171693","l":"Oceanobacillus picturae","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A171693","Oceanobacillus picturae"]]},{"id":"NCBITaxon:171865","l":"Sulfuriferula plumbiphila","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A171865","Sulfuriferula plumbiphila"]]},{"id":"NCBITaxon:1721088","l":"Maridesulfovibrio salinus","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A1721088","Maridesulfovibrio salinus"]]},{"id":"NCBITaxon:1723755","l":"Pseudoalteromonas sp. P1-7a","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1723755","Pseudoalteromonas sp. P1-7a"]]},{"id":"NCBITaxon:1723756","l":"Pseudoalteromonas sp. P1-13-1a","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1723756","Pseudoalteromonas sp. P1-13-1a"]]},{"id":"NCBITaxon:1723757","l":"Pseudoalteromonas sp. P1-16-1b","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1723757","Pseudoalteromonas sp. P1-16-1b"]]},{"id":"NCBITaxon:1723758","l":"Pseudoalteromonas sp. P1-25","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1723758","Pseudoalteromonas sp. P1-25"]]},{"id":"NCBITaxon:1723759","l":"Pseudoalteromonas sp. P1-26","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1723759","Pseudoalteromonas sp. P1-26"]]},{"id":"NCBITaxon:1723760","l":"Pseudoalteromonas sp. P1-30","na":1,"nb":1,"a":[["larva-bto-0000707.html","larva"]],"b":[["NCBITaxon%3A1723760","Pseudoalteromonas sp. P1-30"]]},{"id":"NCBITaxon:1727163","l":"Algoriphagus sanaruensis","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A1727163","Algoriphagus sanaruensis"]]},{"id":"NCBITaxon:1730094","l":"Methylobacterium sp. GXS13","na":1,"nb":1,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["NCBITaxon%3A1730094","Methylobacterium sp. GXS13"]]},{"id":"NCBITaxon:1734049","l":"Serpentinicella alkaliphila","na":1,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["NCBITaxon%3A1734049","Serpentinicella alkaliphila"]]},{"id":"NCBITaxon:1735038","l":"Oryzomicrobium terrae","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A1735038","Oryzomicrobium terrae"]]},{"id":"NCBITaxon:173560","l":"Saccharothrix algeriensis","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A173560","Saccharothrix algeriensis"]]},{"id":"NCBITaxon:1736691","l":"Aeromicrobium choanae","na":1,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A1736691","Aeromicrobium choanae"]]},{"id":"NCBITaxon:1737","l":"Paraclostridium tenue","na":1,"nb":1,"a":[["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A1737","Paraclostridium tenue"]]},{"id":"NCBITaxon:173735","l":"Cytophaga sp. MBIC04684","na":1,"nb":1,"a":[["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["NCBITaxon%3A173735","Cytophaga sp. MBIC04684"]]},{"id":"NCBITaxon:173738","l":"Cytophaga sp. I-762","na":1,"nb":1,"a":[["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["NCBITaxon%3A173738","Cytophaga sp. I-762"]]},{"id":"NCBITaxon:173740","l":"Cytophaga sp. T-588","na":1,"nb":1,"a":[["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["NCBITaxon%3A173740","Cytophaga sp. T-588"]]},{"id":"NCBITaxon:173959","l":"Brevibacillus invocatus","na":1,"nb":1,"a":[["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"]],"b":[["NCBITaxon%3A173959","Brevibacillus invocatus"]]},{"id":"NCBITaxon:1742358","l":"Cytobacillus praedii","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A1742358","Cytobacillus praedii"]]},{"id":"NCBITaxon:1742686","l":"Paractinoplanes deserti","na":1,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A1742686","Paractinoplanes deserti"]]},{"id":"NCBITaxon:1742687","l":"Arthrobacter deserti","na":1,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A1742687","Arthrobacter deserti"]]},{"id":"NCBITaxon:1747766","l":"Mycobacterium sp. NAZ190054","na":1,"nb":1,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"]],"b":[["NCBITaxon%3A1747766","Mycobacterium sp. NAZ190054"]]},{"id":"NCBITaxon:1751286","l":"Nostoc sp. NIES-3756","na":1,"nb":1,"a":[["photoreceptor-cell-bto-0001060.html","photoreceptor cell"]],"b":[["NCBITaxon%3A1751286","Nostoc sp. NIES-3756"]]},{"id":"NCBITaxon:1756185","l":"Nocardioides opuntiae","na":1,"nb":1,"a":[["xerophytic-habitatmech-bacdive-3abed720b8.html","Xerophytic"]],"b":[["NCBITaxon%3A1756185","Nocardioides opuntiae"]]},{"id":"NCBITaxon:1759399","l":"Streptococcus sp. A12","na":1,"nb":1,"a":[["dental-plaque-bto-0000338.html","dental plaque"]],"b":[["NCBITaxon%3A1759399","Streptococcus sp. A12"]]},{"id":"NCBITaxon:176090","l":"Streptococcus sinensis","na":1,"nb":1,"a":[["archeological-site-envo-00000564.html","archeological site"]],"b":[["NCBITaxon%3A176090","Streptococcus sinensis"]]},{"id":"NCBITaxon:1761780","l":"Butyrivibrio sp. ob235","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1761780","Butyrivibrio sp. ob235"]]},{"id":"NCBITaxon:1761782","l":"Enterobacter sp. kpr-6","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1761782","Enterobacter sp. kpr-6"]]},{"id":"NCBITaxon:1761783","l":"Enterococcus sp. kppr-6","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1761783","Enterococcus sp. kppr-6"]]},{"id":"NCBITaxon:1761883","l":"Prevotella sp. kh1p2","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1761883","Prevotella sp. kh1p2"]]},{"id":"NCBITaxon:1761884","l":"Prevotella sp. khp1","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1761884","Prevotella sp. khp1"]]},{"id":"NCBITaxon:1761885","l":"Prevotella sp. khp7","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1761885","Prevotella sp. khp7"]]},{"id":"NCBITaxon:1761886","l":"Prevotella sp. lc2012","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1761886","Prevotella sp. lc2012"]]},{"id":"NCBITaxon:176307","l":"uncultured Methanosarcina sp.","na":1,"nb":1,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A176307","uncultured Methanosarcina sp."]]},{"id":"NCBITaxon:1766719","l":"Caviibacter abscessus","na":1,"nb":1,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A1766719","Caviibacter abscessus"]]},{"id":"NCBITaxon:1768010","l":"Actinophytocola algeriensis","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A1768010","Actinophytocola algeriensis"]]},{"id":"NCBITaxon:1775","l":"Mycobacterium cookii","na":1,"nb":1,"a":[["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["NCBITaxon%3A1775","Mycobacterium cookii"]]},{"id":"NCBITaxon:1780362","l":"Campylobacter geochelonis","na":1,"nb":1,"a":[["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["NCBITaxon%3A1780362","Campylobacter geochelonis"]]},{"id":"NCBITaxon:1783348","l":"Corynebacterium guangdongense","na":1,"nb":1,"a":[["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["NCBITaxon%3A1783348","Corynebacterium guangdongense"]]},{"id":"NCBITaxon:1788301","l":"Pseudomonas versuta","na":1,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A1788301","Pseudomonas versuta"]]},{"id":"NCBITaxon:179010","l":"Psychrobacter jeotgali","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A179010","Psychrobacter jeotgali"]]},{"id":"NCBITaxon:179095","l":"Microbacterium ulmi","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A179095","Microbacterium ulmi"]]},{"id":"NCBITaxon:1792307","l":"Allobosea sp. PAMC 26642","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A1792307","Allobosea sp. PAMC 26642"]]},{"id":"NCBITaxon:1792845","l":"Mucilaginibacter pedocola","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A1792845","Mucilaginibacter pedocola"]]},{"id":"NCBITaxon:179326","l":"Schizothecium curvisporum","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A179326","Schizothecium curvisporum"]]},{"id":"NCBITaxon:1794912","l":"Anaerosporomusa subterranea","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1794912","Anaerosporomusa subterranea"]]},{"id":"NCBITaxon:1795053","l":"Microbacterium sp. PAMC 28756","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A1795053","Microbacterium sp. PAMC 28756"]]},{"id":"NCBITaxon:1795630","l":"Frondihabitans sp. PAMC 28766","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A1795630","Frondihabitans sp. PAMC 28766"]]},{"id":"NCBITaxon:1795631","l":"Variovorax sp. PAMC 28711","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A1795631","Variovorax sp. PAMC 28711"]]},{"id":"NCBITaxon:1796","l":"Mycolicibacterium senegalense","na":1,"nb":1,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"]],"b":[["NCBITaxon%3A1796","Mycolicibacterium senegalense"]]},{"id":"NCBITaxon:1796644","l":"Rodentibacter caecimuris","na":1,"nb":1,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["NCBITaxon%3A1796644","Rodentibacter caecimuris"]]},{"id":"NCBITaxon:1797112","l":"Olsenella sp. kh2p3","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1797112","Olsenella sp. kh2p3"]]},{"id":"NCBITaxon:1797175","l":"Acidobacteria bacterium RIFCSPHIGHO2_01_FULL_67_28","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797175","Acidobacteria bacterium RIFCSPHIGHO2_01_FULL_67_28"]]},{"id":"NCBITaxon:1797176","l":"Acidobacteria bacterium RIFCSPHIGHO2_02_FULL_67_57","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797176","Acidobacteria bacterium RIFCSPHIGHO2_02_FULL_67_57"]]},{"id":"NCBITaxon:1797177","l":"Acidobacteria bacterium RIFCSPHIGHO2_12_FULL_67_30","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797177","Acidobacteria bacterium RIFCSPHIGHO2_12_FULL_67_30"]]},{"id":"NCBITaxon:1797186","l":"Acidobacteria bacterium RIFCSPLOWO2_12_FULL_54_10","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797186","Acidobacteria bacterium RIFCSPLOWO2_12_FULL_54_10"]]},{"id":"NCBITaxon:1797187","l":"Acidobacteria bacterium RIFCSPLOWO2_12_FULL_59_11","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797187","Acidobacteria bacterium RIFCSPLOWO2_12_FULL_59_11"]]},{"id":"NCBITaxon:1797188","l":"Acidobacteria bacterium RIFCSPLOWO2_12_FULL_60_22","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797188","Acidobacteria bacterium RIFCSPLOWO2_12_FULL_60_22"]]},{"id":"NCBITaxon:1797189","l":"Acidobacteria bacterium RIFCSPLOWO2_12_FULL_65_11","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797189","Acidobacteria bacterium RIFCSPLOWO2_12_FULL_65_11"]]},{"id":"NCBITaxon:1797190","l":"Acidobacteria bacterium RIFCSPLOWO2_12_FULL_66_10","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797190","Acidobacteria bacterium RIFCSPLOWO2_12_FULL_66_10"]]},{"id":"NCBITaxon:1797191","l":"Acidobacteria bacterium RIFCSPLOWO2_12_FULL_66_21","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797191","Acidobacteria bacterium RIFCSPLOWO2_12_FULL_66_21"]]},{"id":"NCBITaxon:1797192","l":"Acidobacteria bacterium RIFCSPLOWO2_12_FULL_67_14","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797192","Acidobacteria bacterium RIFCSPLOWO2_12_FULL_67_14"]]},{"id":"NCBITaxon:1797193","l":"Acidobacteria bacterium RIFCSPLOWO2_12_FULL_67_14b","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797193","Acidobacteria bacterium RIFCSPLOWO2_12_FULL_67_14b"]]},{"id":"NCBITaxon:1797194","l":"Acidobacteria bacterium RIFCSPLOWO2_12_FULL_68_19","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797194","Acidobacteria bacterium RIFCSPLOWO2_12_FULL_68_19"]]},{"id":"NCBITaxon:1797216","l":"Alphaproteobacteria bacterium RIFCSPHIGHO2_01_FULL_40_8","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797216","Alphaproteobacteria bacterium RIFCSPHIGHO2_01_FULL_40_8"]]},{"id":"NCBITaxon:1797217","l":"Alphaproteobacteria bacterium RIFCSPHIGHO2_01_FULL_41_14","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797217","Alphaproteobacteria bacterium RIFCSPHIGHO2_01_FULL_41_14"]]},{"id":"NCBITaxon:1797218","l":"Alphaproteobacteria bacterium RIFCSPHIGHO2_02_FULL_40_34","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797218","Alphaproteobacteria bacterium RIFCSPHIGHO2_02_FULL_40_34"]]},{"id":"NCBITaxon:1797219","l":"Alphaproteobacteria bacterium RIFCSPHIGHO2_02_FULL_42_30","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797219","Alphaproteobacteria bacterium RIFCSPHIGHO2_02_FULL_42_30"]]},{"id":"NCBITaxon:1797220","l":"Alphaproteobacteria bacterium RIFCSPHIGHO2_02_FULL_46_13","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797220","Alphaproteobacteria bacterium RIFCSPHIGHO2_02_FULL_46_13"]]},{"id":"NCBITaxon:1797221","l":"Alphaproteobacteria bacterium RIFCSPHIGHO2_12_42_13","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797221","Alphaproteobacteria bacterium RIFCSPHIGHO2_12_42_13"]]},{"id":"NCBITaxon:1797222","l":"Alphaproteobacteria bacterium RIFCSPHIGHO2_12_FULL_42_100","na":1,"nb":1,"a":[["loam-envo-00002258.html","loam"]],"b":[["NCBITaxon%3A1797222","Alphaproteobacteria bacterium RIFCSPHIGHO2_12_FULL_42_100"]]},{"id":"NCBITaxon:1798168","l":"Pseudobutyrivibrio sp. NOR37","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1798168","Pseudobutyrivibrio sp. NOR37"]]},{"id":"NCBITaxon:1798185","l":"Pseudobutyrivibrio sp. UC1225","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1798185","Pseudobutyrivibrio sp. UC1225"]]},{"id":"NCBITaxon:1798186","l":"Pseudobutyrivibrio sp. OR37","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1798186","Pseudobutyrivibrio sp. OR37"]]},{"id":"NCBITaxon:1799789","l":"Paraglaciecola hydrolytica","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A1799789","Paraglaciecola hydrolytica"]]},{"id":"NCBITaxon:1803212","l":"Sporosarcina terrae","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A1803212","Sporosarcina terrae"]]},{"id":"NCBITaxon:1806508","l":"Promineifilum breve (SeqCode)","na":1,"nb":1,"a":[["filament-bto-0000463.html","filament"]],"b":[["NCBITaxon%3A1806508","Promineifilum breve (SeqCode)"]]},{"id":"NCBITaxon:1807","l":"Mycolicibacterium obuense","na":1,"nb":1,"a":[["sputum-bto-0001297.html","sputum"]],"b":[["NCBITaxon%3A1807","Mycolicibacterium obuense"]]},{"id":"NCBITaxon:1807133","l":"Natronospira proteinivora","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A1807133","Natronospira proteinivora"]]},{"id":"NCBITaxon:1808508","l":"Altericroceibacterium endophyticum","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A1808508","Altericroceibacterium endophyticum"]]},{"id":"NCBITaxon:1808945","l":"Zunongwangia endophytica","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A1808945","Zunongwangia endophytica"]]},{"id":"NCBITaxon:1812261","l":"Phocicoccus schoeneichii","na":1,"nb":1,"a":[["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A1812261","Phocicoccus schoeneichii"]]},{"id":"NCBITaxon:1812810","l":"Rhodohalobacter halophilus","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A1812810","Rhodohalobacter halophilus"]]},{"id":"NCBITaxon:1813471","l":"Actinokineospora acnipugnans","na":1,"nb":1,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A1813471","Actinokineospora acnipugnans"]]},{"id":"NCBITaxon:1817405","l":"Abyssicoccus albus","na":1,"nb":1,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["NCBITaxon%3A1817405","Abyssicoccus albus"]]},{"id":"NCBITaxon:1819600","l":"Actinomadura adrarensis","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A1819600","Actinomadura adrarensis"]]},{"id":"NCBITaxon:182136","l":"Fictibacillus barbaricus","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A182136","Fictibacillus barbaricus"]]},{"id":"NCBITaxon:182180","l":"Aromatoleum anaerobium","na":1,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"]],"b":[["NCBITaxon%3A182180","Aromatoleum anaerobium"]]},{"id":"NCBITaxon:182264","l":"Sporotomaculum syntrophicum","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A182264","Sporotomaculum syntrophicum"]]},{"id":"NCBITaxon:1825933","l":"Rhizobium sp. WYCCWR10014","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A1825933","Rhizobium sp. WYCCWR10014"]]},{"id":"NCBITaxon:182690","l":"uncultured Achromobacter sp.","na":1,"nb":1,"a":[["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"]],"b":[["NCBITaxon%3A182690","uncultured Achromobacter sp."]]},{"id":"NCBITaxon:1827136","l":"Candidatus Marithrix sp. Canyon 246","na":1,"nb":1,"a":[["filament-bto-0000463.html","filament"]],"b":[["NCBITaxon%3A1827136","Candidatus Marithrix sp. Canyon 246"]]},{"id":"NCBITaxon:1830138","l":"","na":1,"nb":1,"a":[["park-envo-00000562.html","park"]],"b":[["NCBITaxon%3A90970","Alicyclobacillus tolerans"]]},{"id":"NCBITaxon:1831","l":"Rhodococcus sp. (in: high G+C Gram-positive bacteria)","na":1,"nb":1,"a":[["freshwater-wetland-ecosystem-envo-00000243.html","freshwater wetland ecosystem"]],"b":[["NCBITaxon%3A1831","Rhodococcus sp. (in: high G+C Gram-positive bacteria)"]]},{"id":"NCBITaxon:183190","l":"Xylella fastidiosa Temecula1","na":1,"nb":1,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["NCBITaxon%3A183190","Xylella fastidiosa Temecula1"]]},{"id":"NCBITaxon:1834516","l":"Pseudofrankia asymbiotica","na":1,"nb":1,"a":[["sporangium-bto-0001287.html","sporangium"]],"b":[["NCBITaxon%3A1834516","Pseudofrankia asymbiotica"]]},{"id":"NCBITaxon:1834927","l":"Kordia zosterae","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A1834927","Kordia zosterae"]]},{"id":"NCBITaxon:1836499","l":"Algoriphagus iocasae","na":1,"nb":1,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["NCBITaxon%3A1836499","Algoriphagus iocasae"]]},{"id":"NCBITaxon:1838","l":"Saccharopolyspora hordei","na":1,"nb":1,"a":[["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"]],"b":[["NCBITaxon%3A1838","Saccharopolyspora hordei"]]},{"id":"NCBITaxon:1838280","l":"Desulfotomaculum copahuensis","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A1838280","Desulfotomaculum copahuensis"]]},{"id":"NCBITaxon:1840606","l":"Krasilnikoviella muralis","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A1840606","Krasilnikoviella muralis"]]},{"id":"NCBITaxon:1841","l":"Nocardioides albus","na":1,"nb":1,"a":[["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["NCBITaxon%3A1841","Nocardioides albus"]]},{"id":"NCBITaxon:1842533","l":"Acidovorax sp. RAC01","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A1842533","Acidovorax sp. RAC01"]]},{"id":"NCBITaxon:1842534","l":"Sinorhizobium sp. RAC02","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A1842534","Sinorhizobium sp. RAC02"]]},{"id":"NCBITaxon:1842535","l":"Blastomonas sp. RAC04","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A1842535","Blastomonas sp. RAC04"]]},{"id":"NCBITaxon:1842536","l":"Agrobacterium sp. RAC06","na":1,"nb":1,"a":[["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"]],"b":[["NCBITaxon%3A1842536","Agrobacterium sp. RAC06"]]},{"id":"NCBITaxon:1843237","l":"Sphingomonas prati","na":1,"nb":1,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A1843237","Sphingomonas prati"]]},{"id":"NCBITaxon:1843580","l":"Xanthomonas floridensis","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A1843580","Xanthomonas floridensis"]]},{"id":"NCBITaxon:1843581","l":"Xanthomonas nasturtii","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A1843581","Xanthomonas nasturtii"]]},{"id":"NCBITaxon:1847949","l":"Saccharopolyspora spongiae","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1847949","Saccharopolyspora spongiae"]]},{"id":"NCBITaxon:1854496","l":"Microvirga soli","na":1,"nb":1,"a":[["grassland-ecosystem-envo-01001206.html","grassland ecosystem"]],"b":[["NCBITaxon%3A1854496","Microvirga soli"]]},{"id":"NCBITaxon:185678","l":"Amycolatopsis viridis","na":1,"nb":1,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A185678","Amycolatopsis viridis"]]},{"id":"NCBITaxon:185950","l":"Sphingomonas faeni","na":1,"nb":1,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["NCBITaxon%3A185950","Sphingomonas faeni"]]},{"id":"NCBITaxon:186022","l":"Thalassionema frauenfeldii","na":1,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A186022","Thalassionema frauenfeldii"]]},{"id":"NCBITaxon:1862160","l":"Marinirhabdus citrea","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A1862160","Marinirhabdus citrea"]]},{"id":"NCBITaxon:1867933","l":"Aggregatibacter pneumotropica (nom. nud.)","na":1,"nb":1,"a":[["head-bto-0000282.html","head"]],"b":[["NCBITaxon%3A1867933","Aggregatibacter pneumotropica (nom. nud.)"]]},{"id":"NCBITaxon:1869214","l":"Rheinheimera sp.","na":1,"nb":1,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["NCBITaxon%3A1869214","Rheinheimera sp."]]},{"id":"NCBITaxon:1869344","l":"Curtobacterium sp.","na":1,"nb":1,"a":[["lab-synthesis-habitatmech-bacdive-0e92e77cd4.html","Lab-synthesis"]],"b":[["NCBITaxon%3A1869344","Curtobacterium sp."]]},{"id":"NCBITaxon:1870902","l":"Leifsonia sp.","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["NCBITaxon%3A1870902","Leifsonia sp."]]},{"id":"NCBITaxon:1871025","l":"Ndongobacter massiliensis","na":1,"nb":1,"a":[["kidney-bto-0000671.html","kidney"]],"b":[["NCBITaxon%3A1871025","Ndongobacter massiliensis"]]},{"id":"NCBITaxon:1871043","l":"Variovorax sp.","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["NCBITaxon%3A1871043","Variovorax sp."]]},{"id":"NCBITaxon:1871052","l":"Afipia sp.","na":1,"nb":1,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["NCBITaxon%3A1871052","Afipia sp."]]},{"id":"NCBITaxon:1871066","l":"Mesorhizobium sp.","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["NCBITaxon%3A1871066","Mesorhizobium sp."]]},{"id":"NCBITaxon:1871068","l":"Phyllobacteriaceae bacterium","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A1871068","Phyllobacteriaceae bacterium"]]},{"id":"NCBITaxon:1871086","l":"Brevundimonas sp.","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A1871086","Brevundimonas sp."]]},{"id":"NCBITaxon:1871328","l":"Kocuria sp.","na":1,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A1871328","Kocuria sp."]]},{"id":"NCBITaxon:1871622","l":"Oceanobacillus sp.","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A1871622","Oceanobacillus sp."]]},{"id":"NCBITaxon:1872094","l":"Acetobacterium sp.","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A1872094","Acetobacterium sp."]]},{"id":"NCBITaxon:1872138","l":"Actinophytocola sp.","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A1872138","Actinophytocola sp."]]},{"id":"NCBITaxon:1872412","l":"Agarivorans sp.","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A1872412","Agarivorans sp."]]},{"id":"NCBITaxon:1872416","l":"Agreia sp.","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1872416","Agreia sp."]]},{"id":"NCBITaxon:1872578","l":"Aquabacterium sp.","na":1,"nb":1,"a":[["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"]],"b":[["NCBITaxon%3A1872578","Aquabacterium sp."]]},{"id":"NCBITaxon:1872635","l":"Arenimonas sp.","na":1,"nb":1,"a":[["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"]],"b":[["NCBITaxon%3A1872635","Arenimonas sp."]]},{"id":"NCBITaxon:187303","l":"Methylocystis hydrogenophila","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A187303","Methylocystis hydrogenophila"]]},{"id":"NCBITaxon:1873459","l":"Blastococcus sp.","na":1,"nb":1,"a":[["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["NCBITaxon%3A1873459","Blastococcus sp."]]},{"id":"NCBITaxon:1873498","l":"Hafnia sp.","na":1,"nb":1,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A1873498","Hafnia sp."]]},{"id":"NCBITaxon:1876758","l":"Gluconobacter sp.","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A1876758","Gluconobacter sp."]]},{"id":"NCBITaxon:1879320","l":"Ruegeria sp.","na":1,"nb":1,"a":[["seafood-product-eurofir-foodon-03400803.html","seafood product (eurofir)"]],"b":[["NCBITaxon%3A1879320","Ruegeria sp."]]},{"id":"NCBITaxon:1880915","l":"Frigoribacterium sp.","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1880915","Frigoribacterium sp."]]},{"id":"NCBITaxon:1881060","l":"Clostridium sp. USBA 49","na":1,"nb":1,"a":[["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"]],"b":[["NCBITaxon%3A1881060","Clostridium sp. USBA 49"]]},{"id":"NCBITaxon:1882747","l":"Afipia sp. GAS231","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1882747","Afipia sp. GAS231"]]},{"id":"NCBITaxon:1882748","l":"Beijerinckia sp. 28-YEA-48","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1882748","Beijerinckia sp. 28-YEA-48"]]},{"id":"NCBITaxon:1882749","l":"Opitutus sp. GAS368","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1882749","Opitutus sp. GAS368"]]},{"id":"NCBITaxon:1882750","l":"Burkholderia sp. GAS332","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1882750","Burkholderia sp. GAS332"]]},{"id":"NCBITaxon:1882751","l":"Paenibacillus sp. GP183","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1882751","Paenibacillus sp. GP183"]]},{"id":"NCBITaxon:1882752","l":"Singulisphaera sp. GP187","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1882752","Singulisphaera sp. GP187"]]},{"id":"NCBITaxon:1882830","l":"Rhizobiales bacterium GAS191","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1882830","Rhizobiales bacterium GAS191"]]},{"id":"NCBITaxon:1882831","l":"Verrucomicrobium sp. GAS474","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1882831","Verrucomicrobium sp. GAS474"]]},{"id":"NCBITaxon:1882832","l":"Paenibacillaceae bacterium GAS479","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1882832","Paenibacillaceae bacterium GAS479"]]},{"id":"NCBITaxon:1882833","l":"Frankineae bacterium MT45","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1882833","Frankineae bacterium MT45"]]},{"id":"NCBITaxon:1883105","l":"Nonomuraea sp.","na":1,"nb":1,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["NCBITaxon%3A1883105","Nonomuraea sp."]]},{"id":"NCBITaxon:1884310","l":"Rhodobacter sp. 24-YEA-8","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1884310","Rhodobacter sp. 24-YEA-8"]]},{"id":"NCBITaxon:1884351","l":"Rhizobiales bacterium GAS188","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1884351","Rhizobiales bacterium GAS188"]]},{"id":"NCBITaxon:1884352","l":"Rhizobiales bacterium GAS113","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1884352","Rhizobiales bacterium GAS113"]]},{"id":"NCBITaxon:1884992","l":"Cumulibacter manganitolerans","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A1884992","Cumulibacter manganitolerans"]]},{"id":"NCBITaxon:188541","l":"Stellarima microtrias","na":1,"nb":1,"a":[["saline-water-envo-00002010.html","saline water"]],"b":[["NCBITaxon%3A188541","Stellarima microtrias"]]},{"id":"NCBITaxon:188626","l":"Dermacoccus sp. Ellin185","na":1,"nb":1,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["NCBITaxon%3A188626","Dermacoccus sp. Ellin185"]]},{"id":"NCBITaxon:1888168","l":"Curvibacter sp.","na":1,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A1888168","Curvibacter sp."]]},{"id":"NCBITaxon:1890675","l":"Herbaspirillum sp.","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A1890675","Herbaspirillum sp."]]},{"id":"NCBITaxon:1891233","l":"Dysgonomonas sp.","na":1,"nb":1,"a":[["protist-associated-environment-habitatmech-gold-eee7408afd.html","protist-associated environment"]],"b":[["NCBITaxon%3A1891233","Dysgonomonas sp."]]},{"id":"NCBITaxon:1891630","l":"Rathayibacter sp.","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A1891630","Rathayibacter sp."]]},{"id":"NCBITaxon:1895005","l":"Alteromonadales bacterium BS08","na":1,"nb":1,"a":[["sound-envo-00000393.html","sound"]],"b":[["NCBITaxon%3A1895005","Alteromonadales bacterium BS08"]]},{"id":"NCBITaxon:1895664","l":"Halanaerobium sp.","na":1,"nb":1,"a":[["decomposing-algae-habitatmech-bacdive-dded810572.html","Decomposing-algae"]],"b":[["NCBITaxon%3A1895664","Halanaerobium sp."]]},{"id":"NCBITaxon:189685","l":"uncultured Paracoccus sp.","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A189685","uncultured Paracoccus sp."]]},{"id":"NCBITaxon:1898203","l":"Lachnospiraceae bacterium","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1898203","Lachnospiraceae bacterium"]]},{"id":"NCBITaxon:1898979","l":"Sodalis sp. (in: enterobacteria)","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1898979","Sodalis sp. (in: enterobacteria)"]]},{"id":"NCBITaxon:1899569","l":"Spirosoma sp.","na":1,"nb":1,"a":[["air-conditioning-unit-envo-00002874.html","air conditioning unit"]],"b":[["NCBITaxon%3A1899569","Spirosoma sp."]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":1,"nb":1,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A1901","Streptomyces clavuligerus"]]},{"id":"NCBITaxon:1902579","l":"Candidatus Tokpelaia hoelldobleri","na":1,"nb":1,"a":[["gut-epithelium-bto-0000956.html","gut epithelium"]],"b":[["NCBITaxon%3A1902579","Candidatus Tokpelaia hoelldobleri"]]},{"id":"NCBITaxon:1903071","l":"Sulfitobacter sp.","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A1903071","Sulfitobacter sp."]]},{"id":"NCBITaxon:190308","l":"Shewanella schlegeliana","na":1,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A190308","Shewanella schlegeliana"]]},{"id":"NCBITaxon:1904254","l":"Hydrogenophaga sp.","na":1,"nb":1,"a":[["biodegradation-habitatmech-bacdive-fb79ffe39f.html","Biodegradation"]],"b":[["NCBITaxon%3A1904254","Hydrogenophaga sp."]]},{"id":"NCBITaxon:190655","l":"Legionella busanensis","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A190655","Legionella busanensis"]]},{"id":"NCBITaxon:1906666","l":"Thermoplasmata archaeon","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A1906666","Thermoplasmata archaeon"]]},{"id":"NCBITaxon:1907575","l":"Jatrophihabitans sp. GAS493","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1907575","Jatrophihabitans sp. GAS493"]]},{"id":"NCBITaxon:1908203","l":"uncultured Methanomethylophilus sp.","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1908203","uncultured Methanomethylophilus sp."]]},{"id":"NCBITaxon:190967","l":"Desulfofundulus solfataricus","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A190967","Desulfofundulus solfataricus"]]},{"id":"NCBITaxon:191302","l":"Devosia neptuniae","na":1,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A191302","Devosia neptuniae"]]},{"id":"NCBITaxon:191564","l":"Nonlabens xylanidelens","na":1,"nb":1,"a":[["cove-envo-00000138.html","cove"]],"b":[["NCBITaxon%3A191564","Nonlabens xylanidelens"]]},{"id":"NCBITaxon:1916082","l":"Alteromonadaceae bacterium","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A1916082","Alteromonadaceae bacterium"]]},{"id":"NCBITaxon:1918640","l":"Streptacidiphilus sp.","na":1,"nb":1,"a":[["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["NCBITaxon%3A1918640","Streptacidiphilus sp."]]},{"id":"NCBITaxon:1922205","l":"Thalassobacillus sp.","na":1,"nb":1,"a":[["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["NCBITaxon%3A1922205","Thalassobacillus sp."]]},{"id":"NCBITaxon:1926289","l":"Herminiimonas sp.","na":1,"nb":1,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["NCBITaxon%3A1926289","Herminiimonas sp."]]},{"id":"NCBITaxon:1926584","l":"Nitrincola sp.","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A1926584","Nitrincola sp."]]},{"id":"NCBITaxon:1926630","l":"Pseudoblastomonas halimionae","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A1926630","Pseudoblastomonas halimionae"]]},{"id":"NCBITaxon:1930901","l":"Spiribacter sp.","na":1,"nb":1,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["NCBITaxon%3A1930901","Spiribacter sp."]]},{"id":"NCBITaxon:193108","l":"Methylocystis sp. M42/1","na":1,"nb":1,"a":[["surface-water-envo-00002042.html","surface water"]],"b":[["NCBITaxon%3A193108","Methylocystis sp. M42/1"]]},{"id":"NCBITaxon:1938638","l":"Clostridiaceae bacterium JGI 000176CP_B01","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938638","Clostridiaceae bacterium JGI 000176CP_B01"]]},{"id":"NCBITaxon:1938639","l":"Clostridiaceae bacterium JGI 000176CP_E08","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938639","Clostridiaceae bacterium JGI 000176CP_E08"]]},{"id":"NCBITaxon:1938641","l":"Clostridiales bacterium JGI 000170CP_A02","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938641","Clostridiales bacterium JGI 000170CP_A02"]]},{"id":"NCBITaxon:1938642","l":"Clostridiales bacterium JGI 000170CP_C01","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938642","Clostridiales bacterium JGI 000170CP_C01"]]},{"id":"NCBITaxon:1938643","l":"Clostridiales bacterium JGI 000170CP_C03","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938643","Clostridiales bacterium JGI 000170CP_C03"]]},{"id":"NCBITaxon:1938647","l":"Clostridiales bacterium JGI 000176CP_B07","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938647","Clostridiales bacterium JGI 000176CP_B07"]]},{"id":"NCBITaxon:1938649","l":"Clostridiales bacterium JGI 000176CP_E06","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938649","Clostridiales bacterium JGI 000176CP_E06"]]},{"id":"NCBITaxon:1938652","l":"Lachnospiraceae bacterium JGI 000170CP_F01","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938652","Lachnospiraceae bacterium JGI 000170CP_F01"]]},{"id":"NCBITaxon:1938653","l":"Ruminococcaceae bacterium JGI 000176CP_B03","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938653","Ruminococcaceae bacterium JGI 000176CP_B03"]]},{"id":"NCBITaxon:1938739","l":"Alkaliphilus sp. JGI 000170CP_B06","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938739","Alkaliphilus sp. JGI 000170CP_B06"]]},{"id":"NCBITaxon:1938743","l":"Bacillus sp. JKS001846","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A1938743","Bacillus sp. JKS001846"]]},{"id":"NCBITaxon:1938747","l":"Burkholderia sp. JKS000303","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A1938747","Burkholderia sp. JKS000303"]]},{"id":"NCBITaxon:1938748","l":"Clostridium sp. JGI 000170CP_A06","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938748","Clostridium sp. JGI 000170CP_A06"]]},{"id":"NCBITaxon:1938750","l":"Clostridium sp. JGI 000170CP_E05","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938750","Clostridium sp. JGI 000170CP_E05"]]},{"id":"NCBITaxon:1938752","l":"Comamonas sp. JGI 000176CP_D06","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938752","Comamonas sp. JGI 000176CP_D06"]]},{"id":"NCBITaxon:1938795","l":"Pantoea sp. JKS000250","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A1938795","Pantoea sp. JKS000250"]]},{"id":"NCBITaxon:1938820","l":"Serratia sp. JKS000199","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A1938820","Serratia sp. JKS000199"]]},{"id":"NCBITaxon:1938824","l":"Serratia sp. JKS296","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A1938824","Serratia sp. JKS296"]]},{"id":"NCBITaxon:1938825","l":"Spirosoma sp. JGI 000178CP_D11","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938825","Spirosoma sp. JGI 000178CP_D11"]]},{"id":"NCBITaxon:1938826","l":"Streptococcus sp. JGI 000170CP_B04","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938826","Streptococcus sp. JGI 000170CP_B04"]]},{"id":"NCBITaxon:1938829","l":"Streptococcus sp. JGI 000170CP_G01","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938829","Streptococcus sp. JGI 000170CP_G01"]]},{"id":"NCBITaxon:1938864","l":"Syntrophomonas sp. JGI 000170CP_G06","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938864","Syntrophomonas sp. JGI 000170CP_G06"]]},{"id":"NCBITaxon:1938865","l":"Syntrophomonas sp. JGI 000170CP_C07","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938865","Syntrophomonas sp. JGI 000170CP_C07"]]},{"id":"NCBITaxon:1938867","l":"Alkaliphilus sp. JGI 000170CP_H07","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938867","Alkaliphilus sp. JGI 000170CP_H07"]]},{"id":"NCBITaxon:1938868","l":"Clostridium sp. JGI 000170CP_A08","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938868","Clostridium sp. JGI 000170CP_A08"]]},{"id":"NCBITaxon:1938869","l":"Enterobacteriaceae bacterium JKS000233","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A1938869","Enterobacteriaceae bacterium JKS000233"]]},{"id":"NCBITaxon:1938870","l":"Candidatus Pantoea floridensis","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A1938870","Candidatus Pantoea floridensis"]]},{"id":"NCBITaxon:1938887","l":"Fastidiosipila sp. JGI 000176CP_A02","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A1938887","Fastidiosipila sp. JGI 000176CP_A02"]]},{"id":"NCBITaxon:1940240","l":"Wohlfahrtiimonas populi","na":1,"nb":1,"a":[["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["NCBITaxon%3A1940240","Wohlfahrtiimonas populi"]]},{"id":"NCBITaxon:1940617","l":"Angustibacter speluncae","na":1,"nb":1,"a":[["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["NCBITaxon%3A1940617","Angustibacter speluncae"]]},{"id":"NCBITaxon:1945871","l":"Hallerella porci","na":1,"nb":1,"a":[["large-intestine-bto-0000706.html","large intestine"]],"b":[["NCBITaxon%3A1945871","Hallerella porci"]]},{"id":"NCBITaxon:1945874","l":"Fibrobacter sp. UWB16","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1945874","Fibrobacter sp. UWB16"]]},{"id":"NCBITaxon:1945883","l":"Dehalococcoidia bacterium SCGC AG-206-J22","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A1945883","Dehalococcoidia bacterium SCGC AG-206-J22"]]},{"id":"NCBITaxon:1945884","l":"Olsenella sp. KH1P3","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A1945884","Olsenella sp. KH1P3"]]},{"id":"NCBITaxon:1946","l":"Streptomyces kasugaensis","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A1946","Streptomyces kasugaensis"]]},{"id":"NCBITaxon:1955624","l":"Propionicimonas ferrireducens","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A1955624","Propionicimonas ferrireducens"]]},{"id":"NCBITaxon:1955637","l":"Candidatus Gracilibacteria bacterium JGI MDM2 000217CP-N10","na":1,"nb":1,"a":[["drinking-water-envo-00003064.html","drinking water"]],"b":[["NCBITaxon%3A1955637","Candidatus Gracilibacteria bacterium JGI MDM2 000217CP-N10"]]},{"id":"NCBITaxon:1955672","l":"Candidatus Omnitrophica bacterium JGI MDM2 000217CP-F19","na":1,"nb":1,"a":[["drinking-water-envo-00003064.html","drinking water"]],"b":[["NCBITaxon%3A1955672","Candidatus Omnitrophica bacterium JGI MDM2 000217CP-F19"]]},{"id":"NCBITaxon:1955673","l":"Candidatus Omnitrophica bacterium JGI MDM2 000217CP-I15","na":1,"nb":1,"a":[["drinking-water-envo-00003064.html","drinking water"]],"b":[["NCBITaxon%3A1955673","Candidatus Omnitrophica bacterium JGI MDM2 000217CP-I15"]]},{"id":"NCBITaxon:1955674","l":"Candidatus Omnitrophica bacterium JGI MDM2 000217CP-N5","na":1,"nb":1,"a":[["drinking-water-envo-00003064.html","drinking water"]],"b":[["NCBITaxon%3A1955674","Candidatus Omnitrophica bacterium JGI MDM2 000217CP-N5"]]},{"id":"NCBITaxon:1955675","l":"Candidatus Omnitrophica bacterium JGI MDM2 000217CP-K11","na":1,"nb":1,"a":[["drinking-water-envo-00003064.html","drinking water"]],"b":[["NCBITaxon%3A1955675","Candidatus Omnitrophica bacterium JGI MDM2 000217CP-K11"]]},{"id":"NCBITaxon:195913","l":"Loktanella salsilacus","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A195913","Loktanella salsilacus"]]},{"id":"NCBITaxon:1960093","l":"Rodentibacter sp.","na":1,"nb":1,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["NCBITaxon%3A1960093","Rodentibacter sp."]]},{"id":"NCBITaxon:1960103","l":"Listeria sp.","na":1,"nb":1,"a":[["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A1960103","Listeria sp."]]},{"id":"NCBITaxon:1961642","l":"Chryseobacterium salipaludis","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A1961642","Chryseobacterium salipaludis"]]},{"id":"NCBITaxon:1962263","l":"Clostridium tepidum","na":1,"nb":1,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["NCBITaxon%3A1962263","Clostridium tepidum"]]},{"id":"NCBITaxon:196490","l":"Bradyrhizobium sp. Ai1a-2","na":1,"nb":1,"a":[["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A196490","Bradyrhizobium sp. Ai1a-2"]]},{"id":"NCBITaxon:1965334","l":"Cystobacter sp.","na":1,"nb":1,"a":[["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"]],"b":[["NCBITaxon%3A1965334","Cystobacter sp."]]},{"id":"NCBITaxon:196600","l":"Vibrio vulnificus YJ016","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A196600","Vibrio vulnificus YJ016"]]},{"id":"NCBITaxon:1967","l":"Streptomyces kanamyceticus","na":1,"nb":1,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A1967","Streptomyces kanamyceticus"]]},{"id":"NCBITaxon:1970199","l":"Sorangiineae bacterium NIC37A_2","na":1,"nb":1,"a":[["compost-envo-00002170.html","compost"]],"b":[["NCBITaxon%3A1970199","Sorangiineae bacterium NIC37A_2"]]},{"id":"NCBITaxon:1978231","l":"Acidobacteriota bacterium","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A1978231","Acidobacteriota bacterium"]]},{"id":"NCBITaxon:1981331","l":"Pelobacter sp. DSM 2984","na":1,"nb":1,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"]],"b":[["NCBITaxon%3A1981331","Pelobacter sp. DSM 2984"]]},{"id":"NCBITaxon:198703","l":"Persephonella hydrogeniphila","na":1,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["NCBITaxon%3A198703","Persephonella hydrogeniphila"]]},{"id":"NCBITaxon:1987382","l":"Spirosoma horti","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A1987382","Spirosoma horti"]]},{"id":"NCBITaxon:198804","l":"Buchnera aphidicola str. Sg (Schizaphis graminum)","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A198804","Buchnera aphidicola str. Sg (Schizaphis graminum)"]]},{"id":"NCBITaxon:1989","l":"Actinomadura sp.","na":1,"nb":1,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A1989","Actinomadura sp."]]},{"id":"NCBITaxon:200251","l":"Rhodococcus sp. AN-22","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A200251","Rhodococcus sp. AN-22"]]},{"id":"NCBITaxon:200616","l":"Rhodoplanes tepidamans","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A200616","Rhodoplanes tepidamans"]]},{"id":"NCBITaxon:2006849","l":"Lysobacterales bacterium","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2006849","Lysobacterales bacterium"]]},{"id":"NCBITaxon:2012684","l":"Bacteroidaceae bacterium JGI 000170CP_F02","na":1,"nb":1,"a":[["bioreactor-envo-00002123.html","bioreactor"]],"b":[["NCBITaxon%3A2012684","Bacteroidaceae bacterium JGI 000170CP_F02"]]},{"id":"NCBITaxon:2012733","l":"Dehalococcoidia bacterium SCGC AG-200-A03","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012733","Dehalococcoidia bacterium SCGC AG-200-A03"]]},{"id":"NCBITaxon:2012734","l":"Dehalococcoidia bacterium SCGC AG-200-B03","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012734","Dehalococcoidia bacterium SCGC AG-200-B03"]]},{"id":"NCBITaxon:2012735","l":"Dehalococcoidia bacterium SCGC AG-200-C05","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012735","Dehalococcoidia bacterium SCGC AG-200-C05"]]},{"id":"NCBITaxon:2012736","l":"Dehalococcoidia bacterium SCGC AG-200-E23","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012736","Dehalococcoidia bacterium SCGC AG-200-E23"]]},{"id":"NCBITaxon:2012737","l":"Dehalococcoidia bacterium SCGC AG-200-G19","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012737","Dehalococcoidia bacterium SCGC AG-200-G19"]]},{"id":"NCBITaxon:2012738","l":"Dehalococcoidia bacterium SCGC AG-200-G22","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012738","Dehalococcoidia bacterium SCGC AG-200-G22"]]},{"id":"NCBITaxon:2012739","l":"Dehalococcoidia bacterium SCGC AG-200-K21","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012739","Dehalococcoidia bacterium SCGC AG-200-K21"]]},{"id":"NCBITaxon:2012740","l":"Dehalococcoidia bacterium SCGC AG-205-B13","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012740","Dehalococcoidia bacterium SCGC AG-205-B13"]]},{"id":"NCBITaxon:2012741","l":"Dehalococcoidia bacterium SCGC AG-205-C05","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012741","Dehalococcoidia bacterium SCGC AG-205-C05"]]},{"id":"NCBITaxon:2012742","l":"Dehalococcoidia bacterium SCGC AG-205-C16","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012742","Dehalococcoidia bacterium SCGC AG-205-C16"]]},{"id":"NCBITaxon:2012743","l":"Dehalococcoidia bacterium SCGC AG-205-C19","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012743","Dehalococcoidia bacterium SCGC AG-205-C19"]]},{"id":"NCBITaxon:2012744","l":"Dehalococcoidia bacterium SCGC AG-205-E11","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012744","Dehalococcoidia bacterium SCGC AG-205-E11"]]},{"id":"NCBITaxon:2012745","l":"Dehalococcoidia bacterium SCGC AG-205-F11","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012745","Dehalococcoidia bacterium SCGC AG-205-F11"]]},{"id":"NCBITaxon:2012746","l":"Dehalococcoidia bacterium SCGC AG-205-F19","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012746","Dehalococcoidia bacterium SCGC AG-205-F19"]]},{"id":"NCBITaxon:2012747","l":"Dehalococcoidia bacterium SCGC AG-205-F21","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012747","Dehalococcoidia bacterium SCGC AG-205-F21"]]},{"id":"NCBITaxon:2012749","l":"Dehalococcoidia bacterium SCGC AG-205-G03","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012749","Dehalococcoidia bacterium SCGC AG-205-G03"]]},{"id":"NCBITaxon:2012750","l":"Dehalococcoidia bacterium SCGC AG-205-G09","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012750","Dehalococcoidia bacterium SCGC AG-205-G09"]]},{"id":"NCBITaxon:2012751","l":"Dehalococcoidia bacterium SCGC AG-205-G20","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012751","Dehalococcoidia bacterium SCGC AG-205-G20"]]},{"id":"NCBITaxon:2012752","l":"Dehalococcoidia bacterium SCGC AG-205-I02","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012752","Dehalococcoidia bacterium SCGC AG-205-I02"]]},{"id":"NCBITaxon:2012753","l":"Dehalococcoidia bacterium SCGC AG-205-I03","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012753","Dehalococcoidia bacterium SCGC AG-205-I03"]]},{"id":"NCBITaxon:2012754","l":"Dehalococcoidia bacterium SCGC AG-205-I04","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012754","Dehalococcoidia bacterium SCGC AG-205-I04"]]},{"id":"NCBITaxon:2012755","l":"Dehalococcoidia bacterium SCGC AG-205-I10","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012755","Dehalococcoidia bacterium SCGC AG-205-I10"]]},{"id":"NCBITaxon:2012756","l":"Dehalococcoidia bacterium SCGC AG-205-I13","na":1,"nb":1,"a":[["mid-ocean-ridge-envo-00000406.html","mid-ocean ridge"]],"b":[["NCBITaxon%3A2012756","Dehalococcoidia bacterium SCGC AG-205-I13"]]},{"id":"NCBITaxon:2022602","l":"Thiorhodococcus sp.","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A2022602","Thiorhodococcus sp."]]},{"id":"NCBITaxon:2024860","l":"Spongiibacter sp.","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A2024860","Spongiibacter sp."]]},{"id":"NCBITaxon:2026715","l":"Pseudobdellovibrionaceae bacterium","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2026715","Pseudobdellovibrionaceae bacterium"]]},{"id":"NCBITaxon:2026725","l":"Chromatiales bacterium","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2026725","Chromatiales bacterium"]]},{"id":"NCBITaxon:2026742","l":"Gemmatimonadota bacterium","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2026742","Gemmatimonadota bacterium"]]},{"id":"NCBITaxon:2026746","l":"Halomonadaceae bacterium","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2026746","Halomonadaceae bacterium"]]},{"id":"NCBITaxon:2026789","l":"Salinisphaeraceae bacterium","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2026789","Salinisphaeraceae bacterium"]]},{"id":"NCBITaxon:2026795","l":"Nitrososphaerota archaeon","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2026795","Nitrososphaerota archaeon"]]},{"id":"NCBITaxon:2026801","l":"Verrucomicrobiales bacterium","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2026801","Verrucomicrobiales bacterium"]]},{"id":"NCBITaxon:202748","l":"Saprospira sp. SS98-5","na":1,"nb":1,"a":[["anaerobic-sludge-blanket-reactor-envo-00002213.html","anaerobic sludge blanket reactor"]],"b":[["NCBITaxon%3A202748","Saprospira sp. SS98-5"]]},{"id":"NCBITaxon:2035108","l":"Flavobacteriaceae bacterium JGI 02_E13","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2035108","Flavobacteriaceae bacterium JGI 02_E13"]]},{"id":"NCBITaxon:2035109","l":"Flavobacteriaceae bacterium JGI 02_G12","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2035109","Flavobacteriaceae bacterium JGI 02_G12"]]},{"id":"NCBITaxon:2035111","l":"Flavobacteriaceae bacterium JGI 02_N12","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2035111","Flavobacteriaceae bacterium JGI 02_N12"]]},{"id":"NCBITaxon:2035112","l":"Flavobacteriaceae bacterium JGI 04_M14","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2035112","Flavobacteriaceae bacterium JGI 04_M14"]]},{"id":"NCBITaxon:2035114","l":"Flavobacteriaceae bacterium JGI 04_M9","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2035114","Flavobacteriaceae bacterium JGI 04_M9"]]},{"id":"NCBITaxon:2035115","l":"Flavobacteriaceae bacterium JGI 04_N11","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2035115","Flavobacteriaceae bacterium JGI 04_N11"]]},{"id":"NCBITaxon:2035116","l":"Flavobacteriaceae bacterium JGI 04_N16","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2035116","Flavobacteriaceae bacterium JGI 04_N16"]]},{"id":"NCBITaxon:2035120","l":"Rhodobacteraceae bacterium JGI 02_G21","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2035120","Rhodobacteraceae bacterium JGI 02_G21"]]},{"id":"NCBITaxon:2035121","l":"Rhodobacteraceae bacterium JGI 02_J20","na":1,"nb":1,"a":[["subtropical-envo-01000205.html","subtropical"]],"b":[["NCBITaxon%3A2035121","Rhodobacteraceae bacterium JGI 02_J20"]]},{"id":"NCBITaxon:2038117","l":"Actinomadura deserti","na":1,"nb":1,"a":[["transportation-ways-roads-habitatmech-bacdive-1b4071cb1d.html","Transportation-ways-Roads"]],"b":[["NCBITaxon%3A2038117","Actinomadura deserti"]]},{"id":"NCBITaxon:2047734","l":"Paenibacillus azotifigens","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A2047734","Paenibacillus azotifigens"]]},{"id":"NCBITaxon:2052484","l":"Roseateles noduli","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A2052484","Roseateles noduli"]]},{"id":"NCBITaxon:2053930","l":"Xanthomonas prunicola","na":1,"nb":1,"a":[["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["NCBITaxon%3A2053930","Xanthomonas prunicola"]]},{"id":"NCBITaxon:2057004","l":"Paraburkholderia azotifigens","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A2057004","Paraburkholderia azotifigens"]]},{"id":"NCBITaxon:2057246","l":"Acidipropionibacterium virtanenii","na":1,"nb":1,"a":[["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A2057246","Acidipropionibacterium virtanenii"]]},{"id":"NCBITaxon:205913","l":"Bifidobacterium longum DJO10A","na":1,"nb":1,"a":[["breast-bto-0000149.html","breast"]],"b":[["NCBITaxon%3A205913","Bifidobacterium longum DJO10A"]]},{"id":"NCBITaxon:205918","l":"Pseudomonas syringae pv. syringae B728a","na":1,"nb":1,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A205918","Pseudomonas syringae pv. syringae B728a"]]},{"id":"NCBITaxon:205920","l":"Ehrlichia chaffeensis str. Arkansas","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A205920","Ehrlichia chaffeensis str. Arkansas"]]},{"id":"NCBITaxon:206394","l":"Paenibacillus sp. YK5","na":1,"nb":1,"a":[["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A206394","Paenibacillus sp. YK5"]]},{"id":"NCBITaxon:206665","l":"Desulfonauticus submarinus","na":1,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["NCBITaxon%3A206665","Desulfonauticus submarinus"]]},{"id":"NCBITaxon:207949","l":"Bermanella marisrubri","na":1,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["NCBITaxon%3A207949","Bermanella marisrubri"]]},{"id":"NCBITaxon:207954","l":"Neptuniibacter caesariensis","na":1,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["NCBITaxon%3A207954","Neptuniibacter caesariensis"]]},{"id":"NCBITaxon:208963","l":"Pseudomonas aeruginosa UCBPP-PA14","na":1,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A208963","Pseudomonas aeruginosa UCBPP-PA14"]]},{"id":"NCBITaxon:2093377","l":"Sorangium sp.","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A2093377","Sorangium sp."]]},{"id":"NCBITaxon:2094151","l":"Paramuribaculum intestinale","na":1,"nb":1,"a":[["laboratory-facility-envo-01001406.html","laboratory facility"]],"b":[["NCBITaxon%3A2094151","Paramuribaculum intestinale"]]},{"id":"NCBITaxon:2094236","l":"Candidatus Microgenomates bacterium JGI MDM2 000217CP-F20","na":1,"nb":1,"a":[["drinking-water-envo-00003064.html","drinking water"]],"b":[["NCBITaxon%3A2094236","Candidatus Microgenomates bacterium JGI MDM2 000217CP-F20"]]},{"id":"NCBITaxon:2099376","l":"Desulforhopalus sp.","na":1,"nb":1,"a":[["marine-water-body-envo-00001999.html","marine water body"]],"b":[["NCBITaxon%3A2099376","Desulforhopalus sp."]]},{"id":"NCBITaxon:210007","l":"Streptococcus mutans UA159","na":1,"nb":1,"a":[["tooth-bto-0000397.html","tooth"]],"b":[["NCBITaxon%3A210007","Streptococcus mutans UA159"]]},{"id":"NCBITaxon:2100533","l":"Sphingobacterium haloxyli","na":1,"nb":1,"a":[["endosphere-habitatmech-bacdive-3e4680f074.html","Endosphere"]],"b":[["NCBITaxon%3A2100533","Sphingobacterium haloxyli"]]},{"id":"NCBITaxon:2109933","l":"Alsobacter soli","na":1,"nb":1,"a":[["paddy-ricefield-habitatmech-bacdive-6e3154acd8.html","Paddy-Ricefield"]],"b":[["NCBITaxon%3A2109933","Alsobacter soli"]]},{"id":"NCBITaxon:211457","l":"uncultured Allobosea sp.","na":1,"nb":1,"a":[["watercourse-envo-00000029.html","watercourse"]],"b":[["NCBITaxon%3A211457","uncultured Allobosea sp."]]},{"id":"NCBITaxon:2125990","l":"Pseudodesulfovibrio hydrargyri","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A2125990","Pseudodesulfovibrio hydrargyri"]]},{"id":"NCBITaxon:212667","l":"Vibrio fortis","na":1,"nb":1,"a":[["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["NCBITaxon%3A212667","Vibrio fortis"]]},{"id":"NCBITaxon:212717","l":"Clostridium tetani E88","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A212717","Clostridium tetani E88"]]},{"id":"NCBITaxon:2133958","l":"Nocardioides currus","na":1,"nb":1,"a":[["air-conditioning-unit-envo-00002874.html","air conditioning unit"]],"b":[["NCBITaxon%3A2133958","Nocardioides currus"]]},{"id":"NCBITaxon:2136097","l":"Deinococcus rufus","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A2136097","Deinococcus rufus"]]},{"id":"NCBITaxon:213804","l":"Janthinobacterium sp. J3","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A213804","Janthinobacterium sp. J3"]]},{"id":"NCBITaxon:215580","l":"Caldimonas thermodepolymerans","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A215580","Caldimonas thermodepolymerans"]]},{"id":"NCBITaxon:215918","l":"Mycobacterium sp. IP20010947","na":1,"nb":1,"a":[["water-body-envo-00000063.html","water body"]],"b":[["NCBITaxon%3A215918","Mycobacterium sp. IP20010947"]]},{"id":"NCBITaxon:2161","l":"Methanobacterium bryantii","na":1,"nb":1,"a":[["plant-associated-environment-envo-01001001.html","plant-associated environment"]],"b":[["NCBITaxon%3A2161","Methanobacterium bryantii"]]},{"id":"NCBITaxon:2161673","l":"Roseicyclus marinus","na":1,"nb":1,"a":[["simulated-communities-habitatmech-bacdive-5fa4710934.html","Simulated-communities"]],"b":[["NCBITaxon%3A2161673","Roseicyclus marinus"]]},{"id":"NCBITaxon:216389","l":"Dehalococcoides mccartyi BAV1","na":1,"nb":1,"a":[["road-envo-00000064.html","road"]],"b":[["NCBITaxon%3A216389","Dehalococcoides mccartyi BAV1"]]},{"id":"NCBITaxon:2164","l":"Methanobacterium sp.","na":1,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"]],"b":[["NCBITaxon%3A2164","Methanobacterium sp."]]},{"id":"NCBITaxon:216599","l":"Shigella sonnei 53G","na":1,"nb":1,"a":[["gut-mucosa-bto-0000546.html","gut mucosa"]],"b":[["NCBITaxon%3A216599","Shigella sonnei 53G"]]},{"id":"NCBITaxon:216895","l":"Vibrio vulnificus CMCP6","na":1,"nb":1,"a":[["hela-cell-bto-0000567.html","HeLa cell"]],"b":[["NCBITaxon%3A216895","Vibrio vulnificus CMCP6"]]},{"id":"NCBITaxon:216903","l":"Epilithonimonas mollis","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A216903","Epilithonimonas mollis"]]},{"id":"NCBITaxon:2171","l":"Methanobacterium palustre","na":1,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A2171","Methanobacterium palustre"]]},{"id":"NCBITaxon:217139","l":"uncultured Acetobacterium sp.","na":1,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A217139","uncultured Acetobacterium sp."]]},{"id":"NCBITaxon:2177","l":"Methanohalophilus halophilus","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A2177","Methanohalophilus halophilus"]]},{"id":"NCBITaxon:2181","l":"Methanothermus sociabilis","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A2181","Methanothermus sociabilis"]]},{"id":"NCBITaxon:2183934","l":"Marinospirillum sp.","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A2183934","Marinospirillum sp."]]},{"id":"NCBITaxon:2183988","l":"Idiomarina sp. 017G","na":1,"nb":1,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["NCBITaxon%3A2183988","Idiomarina sp. 017G"]]},{"id":"NCBITaxon:219572","l":"Pseudomonas antarctica","na":1,"nb":1,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A219572","Pseudomonas antarctica"]]},{"id":"NCBITaxon:2219663","l":"Streptacidiphilus pinicola","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A2219663","Streptacidiphilus pinicola"]]},{"id":"NCBITaxon:2231721","l":"Muricoccus radiodurans","na":1,"nb":1,"a":[["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["NCBITaxon%3A2231721","Muricoccus radiodurans"]]},{"id":"NCBITaxon:223556","l":"Deinococcus indicus","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A223556","Deinococcus indicus"]]},{"id":"NCBITaxon:223786","l":"Hydrogenimonas thermophila","na":1,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["NCBITaxon%3A223786","Hydrogenimonas thermophila"]]},{"id":"NCBITaxon:223788","l":"Balnearium lithotrophicum","na":1,"nb":1,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["NCBITaxon%3A223788","Balnearium lithotrophicum"]]},{"id":"NCBITaxon:224013","l":"Nostoc piscinale CENA21","na":1,"nb":1,"a":[["heterocyst-bto-0000600.html","heterocyst"]],"b":[["NCBITaxon%3A224013","Nostoc piscinale CENA21"]]},{"id":"NCBITaxon:224915","l":"Buchnera aphidicola str. Bp (Baizongia pistaciae)","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A224915","Buchnera aphidicola str. Bp (Baizongia pistaciae)"]]},{"id":"NCBITaxon:2250708","l":"Pseudogemmobacter bohemicus","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A2250708","Pseudogemmobacter bohemicus"]]},{"id":"NCBITaxon:227605","l":"Methylocella tundrae","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A227605","Methylocella tundrae"]]},{"id":"NCBITaxon:227865","l":"Cerasibacillus quisquiliarum","na":1,"nb":1,"a":[["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"]],"b":[["NCBITaxon%3A227865","Cerasibacillus quisquiliarum"]]},{"id":"NCBITaxon:2283","l":"Acidianus ambivalens","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A2283","Acidianus ambivalens"]]},{"id":"NCBITaxon:228410","l":"Nitrosomonas europaea ATCC 19718","na":1,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A228410","Nitrosomonas europaea ATCC 19718"]]},{"id":"NCBITaxon:228973","l":"Xylanimonas ulmi","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A228973","Xylanimonas ulmi"]]},{"id":"NCBITaxon:229919","l":"Anaerolinea thermolimosa","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A229919","Anaerolinea thermolimosa"]]},{"id":"NCBITaxon:229920","l":"Leptolinea tardivitalis","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A229920","Leptolinea tardivitalis"]]},{"id":"NCBITaxon:229921","l":"Levilinea saccharolytica","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A229921","Levilinea saccharolytica"]]},{"id":"NCBITaxon:230089","l":"Photorhabdus thracensis","na":1,"nb":1,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A230089","Photorhabdus thracensis"]]},{"id":"NCBITaxon:230105","l":"","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A40223","Methylophaga thalassica"]]},{"id":"NCBITaxon:232537","l":"Rhodoluna limnophila","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A232537","Rhodoluna limnophila"]]},{"id":"NCBITaxon:233101","l":"Methylobacillus pratensis","na":1,"nb":1,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A233101","Methylobacillus pratensis"]]},{"id":"NCBITaxon:233413","l":"Mycobacterium tuberculosis variant bovis AF2122/97","na":1,"nb":1,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["NCBITaxon%3A233413","Mycobacterium tuberculosis variant bovis AF2122/97"]]},{"id":"NCBITaxon:2338647","l":"Ottowia konkukae","na":1,"nb":1,"a":[["food-spoiled-foodon-00003366.html","food (spoiled)"]],"b":[["NCBITaxon%3A2338647","Ottowia konkukae"]]},{"id":"NCBITaxon:234621","l":"Rhodococcus erythropolis PR4","na":1,"nb":1,"a":[["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A234621","Rhodococcus erythropolis PR4"]]},{"id":"NCBITaxon:234826","l":"Anaplasma marginale str. St. Maries","na":1,"nb":1,"a":[["midgut-bto-0000863.html","midgut"]],"b":[["NCBITaxon%3A234826","Anaplasma marginale str. St. Maries"]]},{"id":"NCBITaxon:235140","l":"Gemmata sp. Wa1-1","na":1,"nb":1,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A235140","Gemmata sp. Wa1-1"]]},{"id":"NCBITaxon:236097","l":"Alcanivorax sp. DG881","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A236097","Alcanivorax sp. DG881"]]},{"id":"NCBITaxon:236101","l":"Marinobacter sp. DG979","na":1,"nb":1,"a":[["marine-benthic-feature-envo-01000105.html","marine benthic feature"]],"b":[["NCBITaxon%3A236101","Marinobacter sp. DG979"]]},{"id":"NCBITaxon:2364647","l":"Pantoea piersonii","na":1,"nb":1,"a":[["surface-swab-habitatmech-bacdive-6911460a4a.html","Surface-swab"]],"b":[["NCBITaxon%3A2364647","Pantoea piersonii"]]},{"id":"NCBITaxon:237611","l":"Sphingomonas abaci","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A237611","Sphingomonas abaci"]]},{"id":"NCBITaxon:239498","l":"Tsukamurella pseudospumae","na":1,"nb":1,"a":[["foam-habitatmech-bacdive-df2f59b773.html","Foam"]],"b":[["NCBITaxon%3A239498","Tsukamurella pseudospumae"]]},{"id":"NCBITaxon:239745","l":"uncultured Desulfobulbus sp.","na":1,"nb":1,"a":[["pond-water-envo-00002228.html","pond water"]],"b":[["NCBITaxon%3A239745","uncultured Desulfobulbus sp."]]},{"id":"NCBITaxon:240169","l":"Desulfurobacterium atlanticum","na":1,"nb":1,"a":[["hydrothermal-vent-envo-00000215.html","hydrothermal vent"]],"b":[["NCBITaxon%3A240169","Desulfurobacterium atlanticum"]]},{"id":"NCBITaxon:241145","l":"Salegentibacter holothuriorum","na":1,"nb":1,"a":[["sea-envo-00000016.html","sea"]],"b":[["NCBITaxon%3A241145","Salegentibacter holothuriorum"]]},{"id":"NCBITaxon:242161","l":"Candidatus Paraburkholderia calva","na":1,"nb":1,"a":[["mesophyll-bto-0000858.html","mesophyll"]],"b":[["NCBITaxon%3A242161","Candidatus Paraburkholderia calva"]]},{"id":"NCBITaxon:242163","l":"Candidatus Burkholderia verschuerenii","na":1,"nb":1,"a":[["mesophyll-bto-0000858.html","mesophyll"]],"b":[["NCBITaxon%3A242163","Candidatus Burkholderia verschuerenii"]]},{"id":"NCBITaxon:242619","l":"Porphyromonas gingivalis W83","na":1,"nb":1,"a":[["gingiva-bto-0000519.html","gingiva"]],"b":[["NCBITaxon%3A242619","Porphyromonas gingivalis W83"]]},{"id":"NCBITaxon:243243","l":"Mycobacterium avium 104","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A243243","Mycobacterium avium 104"]]},{"id":"NCBITaxon:243701","l":"Pasteurella caballi","na":1,"nb":1,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["NCBITaxon%3A243701","Pasteurella caballi"]]},{"id":"NCBITaxon:243835","l":"Stenotrophomonas sp. PAMU-2.32","na":1,"nb":1,"a":[["mediterranean-forest-biome-envo-01000199.html","mediterranean forest biome"]],"b":[["NCBITaxon%3A243835","Stenotrophomonas sp. PAMU-2.32"]]},{"id":"NCBITaxon:243922","l":"Acinetobacter rhizosphaerae","na":1,"nb":1,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["NCBITaxon%3A243922","Acinetobacter rhizosphaerae"]]},{"id":"NCBITaxon:244562","l":"Bradyrhizobium sp. RD5-C2","na":1,"nb":1,"a":[["tropical-broadleaf-forest-biome-envo-01000200.html","tropical broadleaf forest biome"]],"b":[["NCBITaxon%3A244562","Bradyrhizobium sp. RD5-C2"]]},{"id":"NCBITaxon:245187","l":"Loktanella fryxellensis","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A245187","Loktanella fryxellensis"]]},{"id":"NCBITaxon:246969","l":"Thermococcus sp. AM4","na":1,"nb":1,"a":[["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["NCBITaxon%3A246969","Thermococcus sp. AM4"]]},{"id":"NCBITaxon:247022","l":"Microbulbifer maritimus","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A247022","Microbulbifer maritimus"]]},{"id":"NCBITaxon:247480","l":"Thermaerobacillus caldiproteolyticus","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A247480","Thermaerobacillus caldiproteolyticus"]]},{"id":"NCBITaxon:2485134","l":"Ochrobactrum sp. LP_5_YM","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A2485134","Ochrobactrum sp. LP_5_YM"]]},{"id":"NCBITaxon:2485135","l":"Pseudomonas sp. LP_4_YM","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A2485135","Pseudomonas sp. LP_4_YM"]]},{"id":"NCBITaxon:2485136","l":"Pseudomonas sp. LP_6_YM","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A2485136","Pseudomonas sp. LP_6_YM"]]},{"id":"NCBITaxon:2485137","l":"Pseudomonas sp. LP_7_YM","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A2485137","Pseudomonas sp. LP_7_YM"]]},{"id":"NCBITaxon:2485138","l":"Pseudomonas sp. LP_8_YM","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A2485138","Pseudomonas sp. LP_8_YM"]]},{"id":"NCBITaxon:2485162","l":"Neorhizobium sp. R1-B","na":1,"nb":1,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A2485162","Neorhizobium sp. R1-B"]]},{"id":"NCBITaxon:2485163","l":"Methylocaldum gracile subsp. desertum","na":1,"nb":1,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A2485163","Methylocaldum gracile subsp. desertum"]]},{"id":"NCBITaxon:2485164","l":"Bradyrhizobium sp. W","na":1,"nb":1,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A2485164","Bradyrhizobium sp. W"]]},{"id":"NCBITaxon:2485165","l":"Bradyrhizobium sp. R2.2-H","na":1,"nb":1,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A2485165","Bradyrhizobium sp. R2.2-H"]]},{"id":"NCBITaxon:2485170","l":"Granulicella sp. GAS466","na":1,"nb":1,"a":[["forest-biome-envo-01000174.html","forest biome"]],"b":[["NCBITaxon%3A2485170","Granulicella sp. GAS466"]]},{"id":"NCBITaxon:2485207","l":"Rhodococcus sp. LP_11_YM","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A2485207","Rhodococcus sp. LP_11_YM"]]},{"id":"NCBITaxon:2485208","l":"Rhodococcus sp. LP_3_YM","na":1,"nb":1,"a":[["iucn-national-park-envo-00000367.html","IUCN national park"]],"b":[["NCBITaxon%3A2485208","Rhodococcus sp. LP_3_YM"]]},{"id":"NCBITaxon:249351","l":"Flavobacterium psychrolimnae","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A249351","Flavobacterium psychrolimnae"]]},{"id":"NCBITaxon:249352","l":"Flavobacterium fryxellicola","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A249352","Flavobacterium fryxellicola"]]},{"id":"NCBITaxon:249586","l":"Streptomyces asoensis","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A249586","Streptomyces asoensis"]]},{"id":"NCBITaxon:2509153","l":"Rubellimicrobium sp.","na":1,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A2509153","Rubellimicrobium sp."]]},{"id":"NCBITaxon:252230","l":"Nocardioides ganghwensis","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A252230","Nocardioides ganghwensis"]]},{"id":"NCBITaxon:252514","l":"Microbulbifer thermotolerans","na":1,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A252514","Microbulbifer thermotolerans"]]},{"id":"NCBITaxon:252597","l":"Alteromonas litorea","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A252597","Alteromonas litorea"]]},{"id":"NCBITaxon:2527775","l":"Polynucleobacter paneuropaeus","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A2527775","Polynucleobacter paneuropaeus"]]},{"id":"NCBITaxon:253160","l":"Planomicrobium stackebrandtii","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A253160","Planomicrobium stackebrandtii"]]},{"id":"NCBITaxon:253161","l":"uncultured Methanobrevibacter sp.","na":1,"nb":1,"a":[["stomach-bto-0001307.html","stomach"]],"b":[["NCBITaxon%3A253161","uncultured Methanobrevibacter sp."]]},{"id":"NCBITaxon:2547395","l":"Paenibacillus piri","na":1,"nb":1,"a":[["transportation-ways-roads-habitatmech-bacdive-1b4071cb1d.html","Transportation-ways-Roads"]],"b":[["NCBITaxon%3A2547395","Paenibacillus piri"]]},{"id":"NCBITaxon:255984","l":"Qipengyuania aquimaris","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A255984","Qipengyuania aquimaris"]]},{"id":"NCBITaxon:258050","l":"Kitasatospora gansuensis","na":1,"nb":1,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A258050","Kitasatospora gansuensis"]]},{"id":"NCBITaxon:258475","l":"Pelotomaculum propionicicum","na":1,"nb":1,"a":[["anaerobic-bioreactor-envo-00002124.html","anaerobic bioreactor"]],"b":[["NCBITaxon%3A258475","Pelotomaculum propionicicum"]]},{"id":"NCBITaxon:2586924","l":"Psychrilyobacter sp.","na":1,"nb":1,"a":[["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A2586924","Psychrilyobacter sp."]]},{"id":"NCBITaxon:2608088","l":"Aliihoeflea sp.","na":1,"nb":1,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"]],"b":[["NCBITaxon%3A2608088","Aliihoeflea sp."]]},{"id":"NCBITaxon:263724","l":"Idiomarina ramblicola","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A263724","Idiomarina ramblicola"]]},{"id":"NCBITaxon:263820","l":"Picrophilus torridus DSM 9790","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A46632","Picrophilus oshimae"]]},{"id":"NCBITaxon:264951","l":"Paecilomyces variotii","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A264951","Paecilomyces variotii"]]},{"id":"NCBITaxon:265883","l":"Hydrogenovibrio thermophilus","na":1,"nb":1,"a":[["in-situ-habitatmech-bacdive-3edb563d49.html","In-situ"]],"b":[["NCBITaxon%3A265883","Hydrogenovibrio thermophilus"]]},{"id":"NCBITaxon:266126","l":"Azonexus caeni","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A266126","Azonexus caeni"]]},{"id":"NCBITaxon:266749","l":"Kaistella jeonii","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A266749","Kaistella jeonii"]]},{"id":"NCBITaxon:267135","l":"Erythrobacter donghaensis","na":1,"nb":1,"a":[["tidal-mudflat-envo-00000241.html","tidal mudflat"]],"b":[["NCBITaxon%3A267135","Erythrobacter donghaensis"]]},{"id":"NCBITaxon:267671","l":"Leptospira interrogans serovar Copenhageni str. Fiocruz L1-130","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A267671","Leptospira interrogans serovar Copenhageni str. Fiocruz L1-130"]]},{"id":"NCBITaxon:268410","l":"Rhodovarius lipocyclicus","na":1,"nb":1,"a":[["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["NCBITaxon%3A268410","Rhodovarius lipocyclicus"]]},{"id":"NCBITaxon:268954","l":"Corynebacterium sp. C12","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A268954","Corynebacterium sp. C12"]]},{"id":"NCBITaxon:269660","l":"Methylobacterium brachiatum","na":1,"nb":1,"a":[["factory-envo-01000536.html","factory"]],"b":[["NCBITaxon%3A269660","Methylobacterium brachiatum"]]},{"id":"NCBITaxon:270374","l":"Marinobacter sp. ELB17","na":1,"nb":1,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A270374","Marinobacter sp. ELB17"]]},{"id":"NCBITaxon:271432","l":"Arthrobacter pigmenti","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A271432","Arthrobacter pigmenti"]]},{"id":"NCBITaxon:2719616","l":"Hymenobacter artigasi","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A2719616","Hymenobacter artigasi"]]},{"id":"NCBITaxon:272556","l":"Aggregatibacter actinomycetemcomitans HK1651","na":1,"nb":1,"a":[["archeological-site-envo-00000564.html","archeological site"]],"b":[["NCBITaxon%3A272556","Aggregatibacter actinomycetemcomitans HK1651"]]},{"id":"NCBITaxon:272560","l":"Burkholderia pseudomallei K96243","na":1,"nb":1,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A272560","Burkholderia pseudomallei K96243"]]},{"id":"NCBITaxon:272620","l":"Klebsiella pneumoniae subsp. pneumoniae MGH 78578","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A272620","Klebsiella pneumoniae subsp. pneumoniae MGH 78578"]]},{"id":"NCBITaxon:272621","l":"Lactobacillus acidophilus NCFM","na":1,"nb":1,"a":[["intestinal-mucosa-bto-0000642.html","intestinal mucosa"]],"b":[["NCBITaxon%3A272621","Lactobacillus acidophilus NCFM"]]},{"id":"NCBITaxon:272626","l":"Listeria innocua Clip11262","na":1,"nb":1,"a":[["heart-bto-0000562.html","heart"]],"b":[["NCBITaxon%3A272626","Listeria innocua Clip11262"]]},{"id":"NCBITaxon:272942","l":"Rhodobacter capsulatus SB 1003","na":1,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A272942","Rhodobacter capsulatus SB 1003"]]},{"id":"NCBITaxon:273035","l":"Spiroplasma kunkelii CR2-3x","na":1,"nb":1,"a":[["mo-b-cell-bto-0003680.html","Mo-B cell"]],"b":[["NCBITaxon%3A273035","Spiroplasma kunkelii CR2-3x"]]},{"id":"NCBITaxon:273251","l":"Paraburkholderia sabiae","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A273251","Paraburkholderia sabiae"]]},{"id":"NCBITaxon:2735894","l":"Hymenobacter caeli","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A2735894","Hymenobacter caeli"]]},{"id":"NCBITaxon:2735895","l":"Flavobacterium gelidicaeli","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A2735895","Flavobacterium gelidicaeli"]]},{"id":"NCBITaxon:2735896","l":"Flavobacterium aeripolare","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A2735896","Flavobacterium aeripolare"]]},{"id":"NCBITaxon:2735899","l":"Frigoriflavimonas asaccharolytica","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A2735899","Frigoriflavimonas asaccharolytica"]]},{"id":"NCBITaxon:2738566","l":"Aerophobetes bacterium JGI MDM2 B17-2-N21","na":1,"nb":1,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["NCBITaxon%3A2738566","Aerophobetes bacterium JGI MDM2 B17-2-N21"]]},{"id":"NCBITaxon:2738689","l":"Omnitrophica bacterium JGI MDM2 000217CP-H20","na":1,"nb":1,"a":[["drinking-water-envo-00003064.html","drinking water"]],"b":[["NCBITaxon%3A2738689","Omnitrophica bacterium JGI MDM2 000217CP-H20"]]},{"id":"NCBITaxon:2738762","l":"Candidatus Woesearchaeota archaeon AG-122-F03","na":1,"nb":1,"a":[["spring-envo-00000027.html","spring"]],"b":[["NCBITaxon%3A2738762","Candidatus Woesearchaeota archaeon AG-122-F03"]]},{"id":"NCBITaxon:2780094","l":"Ramlibacter aquaticus","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A2780094","Ramlibacter aquaticus"]]},{"id":"NCBITaxon:279826","l":"Mesobacillus foraminis","na":1,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["NCBITaxon%3A279826","Mesobacillus foraminis"]]},{"id":"NCBITaxon:279828","l":"Microcella alkaliphila","na":1,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["NCBITaxon%3A279828","Microcella alkaliphila"]]},{"id":"NCBITaxon:280093","l":"Flavobacterium granuli","na":1,"nb":1,"a":[["factory-envo-01000536.html","factory"]],"b":[["NCBITaxon%3A280093","Flavobacterium granuli"]]},{"id":"NCBITaxon:280237","l":"nocardiopsis_rosea","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A280238","Nocardiopsis rhodophaea"]]},{"id":"NCBITaxon:280238","l":"Nocardiopsis rhodophaea","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A280238","Nocardiopsis rhodophaea"]]},{"id":"NCBITaxon:28045","l":"Mycobacterium celatum","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A28045","Mycobacterium celatum"]]},{"id":"NCBITaxon:280871","l":"Mycolicibacterium llatzerense","na":1,"nb":1,"a":[["central-nervous-system-bto-0000227.html","central nervous system"]],"b":[["NCBITaxon%3A280871","Mycolicibacterium llatzerense"]]},{"id":"NCBITaxon:28121","l":"Butyrivibrio sp.","na":1,"nb":1,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"]],"b":[["NCBITaxon%3A28121","Butyrivibrio sp."]]},{"id":"NCBITaxon:28181","l":"Magnetovibrio blakemorei","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A28181","Magnetovibrio blakemorei"]]},{"id":"NCBITaxon:28210","l":"Chelatococcus asaccharovorans","na":1,"nb":1,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A28210","Chelatococcus asaccharovorans"]]},{"id":"NCBITaxon:283205","l":"Mycobacterium sp. THO100","na":1,"nb":1,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["NCBITaxon%3A283205","Mycobacterium sp. THO100"]]},{"id":"NCBITaxon:283718","l":"Gordonia defluvii","na":1,"nb":1,"a":[["foam-habitatmech-bacdive-df2f59b773.html","Foam"]],"b":[["NCBITaxon%3A283718","Gordonia defluvii"]]},{"id":"NCBITaxon:283878","l":"Leucobacter aridicollis","na":1,"nb":1,"a":[["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["NCBITaxon%3A283878","Leucobacter aridicollis"]]},{"id":"NCBITaxon:284578","l":"Lentibacillus salarius","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A284578","Lentibacillus salarius"]]},{"id":"NCBITaxon:284579","l":"Salibacterium salarium","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A284579","Salibacterium salarium"]]},{"id":"NCBITaxon:284580","l":"Bacillus seohaeanensis","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A284580","Bacillus seohaeanensis"]]},{"id":"NCBITaxon:285070","l":"Petrimonas sulfuriphila","na":1,"nb":1,"a":[["oil-reservoir-envo-00002185.html","oil reservoir"]],"b":[["NCBITaxon%3A285070","Petrimonas sulfuriphila"]]},{"id":"NCBITaxon:285444","l":"Streptomyces pseudoechinosporeus","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A285444","Streptomyces pseudoechinosporeus"]]},{"id":"NCBITaxon:285482","l":"Streptomyces tsusimaensis","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A285482","Streptomyces tsusimaensis"]]},{"id":"NCBITaxon:288019","l":"Yeosuana aromativorans","na":1,"nb":1,"a":[["brackish-water-envo-00002019.html","brackish water"]],"b":[["NCBITaxon%3A288019","Yeosuana aromativorans"]]},{"id":"NCBITaxon:288681","l":"Bacillus cereus E33L","na":1,"nb":1,"a":[["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A288681","Bacillus cereus E33L"]]},{"id":"NCBITaxon:290055","l":"Faecalicatena fissicatena","na":1,"nb":1,"a":[["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["NCBITaxon%3A290055","Faecalicatena fissicatena"]]},{"id":"NCBITaxon:290338","l":"Citrobacter koseri ATCC BAA-895","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A290338","Citrobacter koseri ATCC BAA-895"]]},{"id":"NCBITaxon:290339","l":"Cronobacter sakazakii ATCC BAA-894","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A290339","Cronobacter sakazakii ATCC BAA-894"]]},{"id":"NCBITaxon:291602","l":"Kribbella lupini","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A291602","Kribbella lupini"]]},{"id":"NCBITaxon:292414","l":"Ruegeria sp. TM1040","na":1,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["NCBITaxon%3A292414","Ruegeria sp. TM1040"]]},{"id":"NCBITaxon:292807","l":"Desulfonatronum cooperativum","na":1,"nb":1,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A292807","Desulfonatronum cooperativum"]]},{"id":"NCBITaxon:2930037","l":"Phaeospirillum sp.","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A2930037","Phaeospirillum sp."]]},{"id":"NCBITaxon:29316","l":"Schaalia hyovaginalis","na":1,"nb":1,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["NCBITaxon%3A29316","Schaalia hyovaginalis"]]},{"id":"NCBITaxon:293614","l":"Rickettsia akari str. Hartford","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A293614","Rickettsia akari str. Hartford"]]},{"id":"NCBITaxon:29389","l":"Streptococcus alactolyticus","na":1,"nb":1,"a":[["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"]],"b":[["NCBITaxon%3A29389","Streptococcus alactolyticus"]]},{"id":"NCBITaxon:29422","l":"Legionella brunensis","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A29422","Legionella brunensis"]]},{"id":"NCBITaxon:294671","l":"Methanobrevibacter olleyae","na":1,"nb":1,"a":[["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"]],"b":[["NCBITaxon%3A294671","Methanobrevibacter olleyae"]]},{"id":"NCBITaxon:294699","l":"Anoxybacteroides amylolyticum","na":1,"nb":1,"a":[["mount-envo-00000477.html","mount"]],"b":[["NCBITaxon%3A294699","Anoxybacteroides amylolyticum"]]},{"id":"NCBITaxon:294936","l":"Photobacterium rosenbergii","na":1,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"]],"b":[["NCBITaxon%3A294936","Photobacterium rosenbergii"]]},{"id":"NCBITaxon:29522","l":"Brachyspira aalborgi","na":1,"nb":1,"a":[["fresh-animal-manure-envo-00003032.html","fresh animal manure"]],"b":[["NCBITaxon%3A29522","Brachyspira aalborgi"]]},{"id":"NCBITaxon:295236","l":"Clostridium sp. RKD","na":1,"nb":1,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"]],"b":[["NCBITaxon%3A295236","Clostridium sp. RKD"]]},{"id":"NCBITaxon:295324","l":"Paenibacillus motobuensis","na":1,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A295324","Paenibacillus motobuensis"]]},{"id":"NCBITaxon:29554","l":"Metamycoplasma canadense","na":1,"nb":1,"a":[["inflammatory-cell-bto-0003861.html","inflammatory cell"]],"b":[["NCBITaxon%3A29554","Metamycoplasma canadense"]]},{"id":"NCBITaxon:29558","l":"Mycoplasmopsis hyopharyngis","na":1,"nb":1,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A29558","Mycoplasmopsis hyopharyngis"]]},{"id":"NCBITaxon:29559","l":"Metamycoplasma hyosynoviae","na":1,"nb":1,"a":[["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A29559","Metamycoplasma hyosynoviae"]]},{"id":"NCBITaxon:297245","l":"Legionella pneumophila str. Lens","na":1,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A297245","Legionella pneumophila str. Lens"]]},{"id":"NCBITaxon:297536","l":"Oryzihumus leptocrescens","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A297536","Oryzihumus leptocrescens"]]},{"id":"NCBITaxon:298653","l":"Parafrankia sp. EAN1pec","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A298653","Parafrankia sp. EAN1pec"]]},{"id":"NCBITaxon:299254","l":"Streptomyces sp. NRRL 11266","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A299254","Streptomyces sp. NRRL 11266"]]},{"id":"NCBITaxon:300181","l":"Serratia ureilytica","na":1,"nb":1,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["NCBITaxon%3A300181","Serratia ureilytica"]]},{"id":"NCBITaxon:301154","l":"Sphingomonas oligophenolica","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A301154","Sphingomonas oligophenolica"]]},{"id":"NCBITaxon:301708","l":"Clostridium sp. MLG480","na":1,"nb":1,"a":[["mud-envo-01000001.html","mud"]],"b":[["NCBITaxon%3A301708","Clostridium sp. MLG480"]]},{"id":"NCBITaxon:302409","l":"Ehrlichia ruminantium str. Gardel","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A302409","Ehrlichia ruminantium str. Gardel"]]},{"id":"NCBITaxon:304","l":"Roseateles saccharophilus","na":1,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"]],"b":[["NCBITaxon%3A304","Roseateles saccharophilus"]]},{"id":"NCBITaxon:3041","l":"Chlorophyta","na":1,"nb":1,"a":[["leaf-bto-0000713.html","leaf"]],"b":[["NCBITaxon%3A2812611","Micromonas sp."]]},{"id":"NCBITaxon:306545","l":"Marinimicrobium koreense","na":1,"nb":1,"a":[["strait-envo-00000394.html","strait"]],"b":[["NCBITaxon%3A306545","Marinimicrobium koreense"]]},{"id":"NCBITaxon:307120","l":"Micromonospora marina","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A307120","Micromonospora marina"]]},{"id":"NCBITaxon:308853","l":"Natronorubrum thiooxidans","na":1,"nb":1,"a":[["steppe-envo-00000262.html","steppe"]],"b":[["NCBITaxon%3A308853","Natronorubrum thiooxidans"]]},{"id":"NCBITaxon:309483","l":"exiguobacterium_soli","na":1,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A132920","Exiguobacterium antarcticum"]]},{"id":"NCBITaxon:309890","l":"Deinococcus papagonensis","na":1,"nb":1,"a":[["arid-habitatmech-madin-8eaf8ee93c.html","arid"]],"b":[["NCBITaxon%3A309890","Deinococcus papagonensis"]]},{"id":"NCBITaxon:310350","l":"Nocardiopsis sp.","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A310350","Nocardiopsis sp."]]},{"id":"NCBITaxon:310396","l":"Nitrosomonas sp. IWT310","na":1,"nb":1,"a":[["waste-treatment-plant-envo-00002272.html","waste treatment plant"]],"b":[["NCBITaxon%3A310396","Nitrosomonas sp. IWT310"]]},{"id":"NCBITaxon:311458","l":"Candidatus Caldarchaeum subterraneum","na":1,"nb":1,"a":[["finger-bto-0004669.html","finger"]],"b":[["NCBITaxon%3A311458","Candidatus Caldarchaeum subterraneum"]]},{"id":"NCBITaxon:311460","l":"Anoxybacteroides rupiense","na":1,"nb":1,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A311460","Anoxybacteroides rupiense"]]},{"id":"NCBITaxon:312309","l":"Aliivibrio fischeri ES114","na":1,"nb":1,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["NCBITaxon%3A312309","Aliivibrio fischeri ES114"]]},{"id":"NCBITaxon:314200","l":"Giesbergeria voronezhensis","na":1,"nb":1,"a":[["reservoir-envo-00000025.html","reservoir"]],"b":[["NCBITaxon%3A314200","Giesbergeria voronezhensis"]]},{"id":"NCBITaxon:314232","l":"Yoonia vestfoldensis SKA53","na":1,"nb":1,"a":[["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A314232","Yoonia vestfoldensis SKA53"]]},{"id":"NCBITaxon:314238","l":"Phyllobacterium ifriqiyense","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A314238","Phyllobacterium ifriqiyense"]]},{"id":"NCBITaxon:314253","l":"Nitrobacter sp. Nb-311A","na":1,"nb":1,"a":[["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A314253","Nitrobacter sp. Nb-311A"]]},{"id":"NCBITaxon:314256","l":"Oceanicola granulosus HTCC2516","na":1,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["NCBITaxon%3A314256","Oceanicola granulosus HTCC2516"]]},{"id":"NCBITaxon:314266","l":"Sphingomonas sp. SKA58","na":1,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["NCBITaxon%3A314266","Sphingomonas sp. SKA58"]]},{"id":"NCBITaxon:314267","l":"Sulfitobacter sp. NAS-14.1","na":1,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["NCBITaxon%3A314267","Sulfitobacter sp. NAS-14.1"]]},{"id":"NCBITaxon:314278","l":"Nitrococcus mobilis Nb-231","na":1,"nb":1,"a":[["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["NCBITaxon%3A314278","Nitrococcus mobilis Nb-231"]]},{"id":"NCBITaxon:314282","l":"Psychromonas sp. CNPT3","na":1,"nb":1,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A314282","Psychromonas sp. CNPT3"]]},{"id":"NCBITaxon:314291","l":"Vibrio splendidus 12B01","na":1,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["NCBITaxon%3A314291","Vibrio splendidus 12B01"]]},{"id":"NCBITaxon:314330","l":"Enterobacter sp. DC1","na":1,"nb":1,"a":[["tuber-bto-0001400.html","tuber"]],"b":[["NCBITaxon%3A314330","Enterobacter sp. DC1"]]},{"id":"NCBITaxon:314608","l":"Shewanella benthica KT99","na":1,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["NCBITaxon%3A314608","Shewanella benthica KT99"]]},{"id":"NCBITaxon:314723","l":"Borrelia hermsii DAH","na":1,"nb":1,"a":[["salivary-gland-bto-0001203.html","salivary gland"]],"b":[["NCBITaxon%3A314723","Borrelia hermsii DAH"]]},{"id":"NCBITaxon:315456","l":"Rickettsia felis Marseille-URRWFXCal2","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A315456","Rickettsia felis Marseille-URRWFXCal2"]]},{"id":"NCBITaxon:315750","l":"Bacillus pumilus SAFR-032","na":1,"nb":1,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A315750","Bacillus pumilus SAFR-032"]]},{"id":"NCBITaxon:316055","l":"Rhodopseudomonas palustris BisA53","na":1,"nb":1,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A316055","Rhodopseudomonas palustris BisA53"]]},{"id":"NCBITaxon:316056","l":"Rhodopseudomonas palustris BisB18","na":1,"nb":1,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A316056","Rhodopseudomonas palustris BisB18"]]},{"id":"NCBITaxon:316057","l":"Rhodopseudomonas palustris BisB5","na":1,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A316057","Rhodopseudomonas palustris BisB5"]]},{"id":"NCBITaxon:316279","l":"Synechococcus sp. CC9902","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A316279","Synechococcus sp. CC9902"]]},{"id":"NCBITaxon:317580","l":"Flavobacterium sp. 4214","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A317580","Flavobacterium sp. 4214"]]},{"id":"NCBITaxon:317664","l":"Quadrisphaera granulorum","na":1,"nb":1,"a":[["activated-sludge-envo-00002046.html","activated sludge"]],"b":[["NCBITaxon%3A317664","Quadrisphaera granulorum"]]},{"id":"NCBITaxon:318751","l":"Westerdykella ornata","na":1,"nb":1,"a":[["desert-sand-envo-00005800.html","desert sand"]],"b":[["NCBITaxon%3A318751","Westerdykella ornata"]]},{"id":"NCBITaxon:319003","l":"Bradyrhizobium sp. WSM1253","na":1,"nb":1,"a":[["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A319003","Bradyrhizobium sp. WSM1253"]]},{"id":"NCBITaxon:320374","l":"Burkholderia pseudomallei S13","na":1,"nb":1,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A320374","Burkholderia pseudomallei S13"]]},{"id":"NCBITaxon:320388","l":"Burkholderia mallei SAVP1","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A320388","Burkholderia mallei SAVP1"]]},{"id":"NCBITaxon:320771","l":"Pedosphaera parvula Ellin514","na":1,"nb":1,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A320771","Pedosphaera parvula Ellin514"]]},{"id":"NCBITaxon:321267","l":"Shimia marina","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A321267","Shimia marina"]]},{"id":"NCBITaxon:321984","l":"Pseudoduganella plicata","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A321984","Pseudoduganella plicata"]]},{"id":"NCBITaxon:321985","l":"Pseudoduganella lutea","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A321985","Pseudoduganella lutea"]]},{"id":"NCBITaxon:322710","l":"Azotobacter vinelandii DJ","na":1,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["NCBITaxon%3A322710","Azotobacter vinelandii DJ"]]},{"id":"NCBITaxon:323426","l":"Jezberella montanilacus","na":1,"nb":1,"a":[["pond-envo-00000033.html","pond"]],"b":[["NCBITaxon%3A323426","Jezberella montanilacus"]]},{"id":"NCBITaxon:324617","l":"Aeromonas tecta","na":1,"nb":1,"a":[["surface-swab-habitatmech-bacdive-6911460a4a.html","Surface-swab"]],"b":[["NCBITaxon%3A324617","Aeromonas tecta"]]},{"id":"NCBITaxon:325473","l":"Psychroserpens mesophilus","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A325473","Psychroserpens mesophilus"]]},{"id":"NCBITaxon:328552","l":"","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A2734912","Bradyrhizobium denitrificans"]]},{"id":"NCBITaxon:328839","l":"Azospirillum melinis","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A328839","Azospirillum melinis"]]},{"id":"NCBITaxon:328971","l":"Leptospira borgpetersenii serovar Hardjo","na":1,"nb":1,"a":[["kidney-bto-0000671.html","kidney"]],"b":[["NCBITaxon%3A328971","Leptospira borgpetersenii serovar Hardjo"]]},{"id":"NCBITaxon:329406","l":"Thiorhodococcus mannitoliphagus","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A329406","Thiorhodococcus mannitoliphagus"]]},{"id":"NCBITaxon:331104","l":"Blattabacterium sp. (Blattella germanica) str. Bge","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A331104","Blattabacterium sp. (Blattella germanica) str. Bge"]]},{"id":"NCBITaxon:331112","l":"Escherichia coli HS","na":1,"nb":1,"a":[["adrenal-gland-bto-0000047.html","adrenal gland"]],"b":[["NCBITaxon%3A331112","Escherichia coli HS"]]},{"id":"NCBITaxon:332415","l":"Ehrlichia chaffeensis str. Sapulpa","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A332415","Ehrlichia chaffeensis str. Sapulpa"]]},{"id":"NCBITaxon:332522","l":"Halospina denitrificans","na":1,"nb":1,"a":[["steppe-envo-00000262.html","steppe"]],"b":[["NCBITaxon%3A332522","Halospina denitrificans"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":1,"nb":1,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["NCBITaxon%3A332952","Aspergillus flavus NRRL3357"]]},{"id":"NCBITaxon:332977","l":"Parapedobacter koreensis","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A332977","Parapedobacter koreensis"]]},{"id":"NCBITaxon:333138","l":"Halalkalibacter okhensis","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A333138","Halalkalibacter okhensis"]]},{"id":"NCBITaxon:333146","l":"Ferroplasma acidarmanus Fer1","na":1,"nb":1,"a":[["mountain-envo-00000081.html","mountain"]],"b":[["NCBITaxon%3A333146","Ferroplasma acidarmanus Fer1"]]},{"id":"NCBITaxon:333368","l":"Rhodoblastus sphagnicola","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A333368","Rhodoblastus sphagnicola"]]},{"id":"NCBITaxon:333668","l":"Theileria parva strain Muguga","na":1,"nb":1,"a":[["lymphocyte-bto-0000775.html","lymphocyte"]],"b":[["NCBITaxon%3A333668","Theileria parva strain Muguga"]]},{"id":"NCBITaxon:333728","l":"Streptomyces erringtonii","na":1,"nb":1,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A333728","Streptomyces erringtonii"]]},{"id":"NCBITaxon:333964","l":"Xenorhabdus indica","na":1,"nb":1,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A333964","Xenorhabdus indica"]]},{"id":"NCBITaxon:333965","l":"Providencia vermicola","na":1,"nb":1,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A333965","Providencia vermicola"]]},{"id":"NCBITaxon:334406","l":"Bacillus cereus NC7401","na":1,"nb":1,"a":[["spermatozoon-bto-0001277.html","spermatozoon"]],"b":[["NCBITaxon%3A334406","Bacillus cereus NC7401"]]},{"id":"NCBITaxon:336179","l":"Pseudoalteromonas sp. 643A","na":1,"nb":1,"a":[["fumarole-envo-00000216.html","fumarole"]],"b":[["NCBITaxon%3A336179","Pseudoalteromonas sp. 643A"]]},{"id":"NCBITaxon:337701","l":"Roseovarius pacificus","na":1,"nb":1,"a":[["marine-aphotic-zone-envo-00000210.html","marine aphotic zone"]],"b":[["NCBITaxon%3A337701","Roseovarius pacificus"]]},{"id":"NCBITaxon:338044","l":"Bacillus sp. GB02-25","na":1,"nb":1,"a":[["organic-waste-material-envo-00002873.html","organic waste material"]],"b":[["NCBITaxon%3A338044","Bacillus sp. GB02-25"]]},{"id":"NCBITaxon:338047","l":"Bacillus sp. GB02-31","na":1,"nb":1,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A338047","Bacillus sp. GB02-31"]]},{"id":"NCBITaxon:33883","l":"Microbacterium arborescens","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A33883","Microbacterium arborescens"]]},{"id":"NCBITaxon:33915","l":"Saccharopolyspora sp.","na":1,"nb":1,"a":[["forested-area-envo-00000111.html","forested area"]],"b":[["NCBITaxon%3A33915","Saccharopolyspora sp."]]},{"id":"NCBITaxon:33922","l":"Mycoplasmopsis agassizii","na":1,"nb":1,"a":[["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A33922","Mycoplasmopsis agassizii"]]},{"id":"NCBITaxon:33950","l":"Thermoanaerobacterium thermosulfurigenes","na":1,"nb":1,"a":[["park-envo-00000562.html","park"]],"b":[["NCBITaxon%3A33950","Thermoanaerobacterium thermosulfurigenes"]]},{"id":"NCBITaxon:34012","l":"Azospirillum sp.","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A34012","Azospirillum sp."]]},{"id":"NCBITaxon:34017","l":"Rhodobium orientis","na":1,"nb":1,"a":[["marine-neritic-zone-envo-00000206.html","marine neritic zone"]],"b":[["NCBITaxon%3A34017","Rhodobium orientis"]]},{"id":"NCBITaxon:340177","l":"Chlorobium chlorochromatii CaD3","na":1,"nb":1,"a":[["photoreceptor-cell-bto-0001060.html","photoreceptor cell"]],"b":[["NCBITaxon%3A340177","Chlorobium chlorochromatii CaD3"]]},{"id":"NCBITaxon:340320","l":"Leucobacter luti","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A340320","Leucobacter luti"]]},{"id":"NCBITaxon:340321","l":"Leucobacter alluvii","na":1,"nb":1,"a":[["heavy-metal-habitatmech-bacdive-8f711387b2.html","Heavy-metal"]],"b":[["NCBITaxon%3A340321","Leucobacter alluvii"]]},{"id":"NCBITaxon:340345","l":"Actinoalloteichus hymeniacidonis","na":1,"nb":1,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A340345","Actinoalloteichus hymeniacidonis"]]},{"id":"NCBITaxon:34101","l":"Sporosarcina limicola","na":1,"nb":1,"a":[["tarn-envo-00000455.html","tarn"]],"b":[["NCBITaxon%3A34101","Sporosarcina limicola"]]},{"id":"NCBITaxon:341027","l":"Sphingobacterium sp.","na":1,"nb":1,"a":[["air-conditioning-unit-envo-00002874.html","air conditioning unit"]],"b":[["NCBITaxon%3A341027","Sphingobacterium sp."]]},{"id":"NCBITaxon:341199","l":"Nocardia kroppenstedtii","na":1,"nb":1,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["NCBITaxon%3A341199","Nocardia kroppenstedtii"]]},{"id":"NCBITaxon:342616","l":"Streptococcus agalactiae COH1","na":1,"nb":1,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A342616","Streptococcus agalactiae COH1"]]},{"id":"NCBITaxon:342944","l":"Sinobaca qinghaiensis","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A342944","Sinobaca qinghaiensis"]]},{"id":"NCBITaxon:343013","l":"Paenacidovorax caeni","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A343013","Paenacidovorax caeni"]]},{"id":"NCBITaxon:343080","l":"Chryseobacterium sp. R-25053","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A343080","Chryseobacterium sp. R-25053"]]},{"id":"NCBITaxon:343403","l":"Costertonia aggregata","na":1,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"]],"b":[["NCBITaxon%3A343403","Costertonia aggregata"]]},{"id":"NCBITaxon:343509","l":"Sodalis glossinidius str. 'morsitans'","na":1,"nb":1,"a":[["needle-bto-0000917.html","needle"]],"b":[["NCBITaxon%3A343509","Sodalis glossinidius str. 'morsitans'"]]},{"id":"NCBITaxon:345072","l":"Vibrio cholerae MO10","na":1,"nb":1,"a":[["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["NCBITaxon%3A345072","Vibrio cholerae MO10"]]},{"id":"NCBITaxon:345075","l":"Vibrio cholerae V51","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A345075","Vibrio cholerae V51"]]},{"id":"NCBITaxon:345631","l":"Geobacter argillaceus","na":1,"nb":1,"a":[["clay-envo-00002982.html","clay"]],"b":[["NCBITaxon%3A345631","Geobacter argillaceus"]]},{"id":"NCBITaxon:345632","l":"Geobacter pickeringii","na":1,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A345632","Geobacter pickeringii"]]},{"id":"NCBITaxon:347495","l":"Bacillus cereus F837/76","na":1,"nb":1,"a":[["prostate-gland-bto-0001129.html","prostate gland"]],"b":[["NCBITaxon%3A347495","Bacillus cereus F837/76"]]},{"id":"NCBITaxon:347515","l":"Leishmania major strain Friedlin","na":1,"nb":1,"a":[["kinetoplastid-bto-0002502.html","kinetoplastid"]],"b":[["NCBITaxon%3A347515","Leishmania major strain Friedlin"]]},{"id":"NCBITaxon:349725","l":"Micromonospora sp. ML1","na":1,"nb":1,"a":[["clay-envo-00002982.html","clay"]],"b":[["NCBITaxon%3A349725","Micromonospora sp. ML1"]]},{"id":"NCBITaxon:350702","l":"Burkholderia cenocepacia PC184","na":1,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A350702","Burkholderia cenocepacia PC184"]]},{"id":"NCBITaxon:354352","l":"Pseudochrobactrum saccharolyticum","na":1,"nb":1,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["NCBITaxon%3A354352","Pseudochrobactrum saccharolyticum"]]},{"id":"NCBITaxon:35616","l":"Pyrodictium brockii","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A35616","Pyrodictium brockii"]]},{"id":"NCBITaxon:357244","l":"Orientia tsutsugamushi str. Boryong","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A357244","Orientia tsutsugamushi str. Boryong"]]},{"id":"NCBITaxon:35743","l":"Halorubrum sodomense","na":1,"nb":1,"a":[["marine-anoxic-zone-envo-01000066.html","marine anoxic zone"]],"b":[["NCBITaxon%3A35743","Halorubrum sodomense"]]},{"id":"NCBITaxon:35752","l":"Actinoplanes philippinensis","na":1,"nb":1,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A35752","Actinoplanes philippinensis"]]},{"id":"NCBITaxon:357544","l":"Helicobacter pylori HPAG1","na":1,"nb":1,"a":[["oxyntic-cell-bto-0001780.html","oxyntic cell"]],"b":[["NCBITaxon%3A357544","Helicobacter pylori HPAG1"]]},{"id":"NCBITaxon:35755","l":"Corynebacterium kutscheri","na":1,"nb":1,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["NCBITaxon%3A35755","Corynebacterium kutscheri"]]},{"id":"NCBITaxon:358099","l":"Brevibacterium oceani","na":1,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A358099","Brevibacterium oceani"]]},{"id":"NCBITaxon:358592","l":"Rheinheimera chironomi","na":1,"nb":1,"a":[["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["NCBITaxon%3A358592","Rheinheimera chironomi"]]},{"id":"NCBITaxon:358709","l":"Escherichia coli 101-1","na":1,"nb":1,"a":[["hep-2-cell-bto-0000976.html","HEp-2 cell"]],"b":[["NCBITaxon%3A358709","Escherichia coli 101-1"]]},{"id":"NCBITaxon:359391","l":"Brucella abortus 2308","na":1,"nb":1,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A359391","Brucella abortus 2308"]]},{"id":"NCBITaxon:360104","l":"Campylobacter concisus 13826","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A360104","Campylobacter concisus 13826"]]},{"id":"NCBITaxon:360411","l":"Bellilinea caldifistulae","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A360411","Bellilinea caldifistulae"]]},{"id":"NCBITaxon:360422","l":"Clostridium tagluense","na":1,"nb":1,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A360422","Clostridium tagluense"]]},{"id":"NCBITaxon:360911","l":"Exiguobacterium sp. AT1b","na":1,"nb":1,"a":[["joint-bto-0001686.html","joint"]],"b":[["NCBITaxon%3A360911","Exiguobacterium sp. AT1b"]]},{"id":"NCBITaxon:361","l":"Agrobacterium sp.","na":1,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"]],"b":[["NCBITaxon%3A361","Agrobacterium sp."]]},{"id":"NCBITaxon:361576","l":"Halovibrio mesolongii","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A361576","Halovibrio mesolongii"]]},{"id":"NCBITaxon:364106","l":"Escherichia coli UTI89","na":1,"nb":1,"a":[["rectum-bto-0001158.html","rectum"]],"b":[["NCBITaxon%3A364106","Escherichia coli UTI89"]]},{"id":"NCBITaxon:364199","l":"Paracoccus homiensis","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A364199","Paracoccus homiensis"]]},{"id":"NCBITaxon:364200","l":"Cognatiyoonia koreensis","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A364200","Cognatiyoonia koreensis"]]},{"id":"NCBITaxon:36813","l":"Mycolicibacterium pulveris","na":1,"nb":1,"a":[["dust-ash-habitatmech-bacdive-4b8650dee7.html","Dust-Ash"]],"b":[["NCBITaxon%3A36813","Mycolicibacterium pulveris"]]},{"id":"NCBITaxon:36870","l":"Wigglesworthia glossinidia endosymbiont of Glossina brevipalpis","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A36870","Wigglesworthia glossinidia endosymbiont of Glossina brevipalpis"]]},{"id":"NCBITaxon:36875","l":"Porphyromonas canoris","na":1,"nb":1,"a":[["skin-environment-envo-2100003.html","skin environment"]],"b":[["NCBITaxon%3A36875","Porphyromonas canoris"]]},{"id":"NCBITaxon:370106","l":"Thermococcus sp. GT","na":1,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["NCBITaxon%3A370106","Thermococcus sp. GT"]]},{"id":"NCBITaxon:370551","l":"Streptococcus pyogenes MGAS9429","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A370551","Streptococcus pyogenes MGAS9429"]]},{"id":"NCBITaxon:370552","l":"Streptococcus pyogenes MGAS10270","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A370552","Streptococcus pyogenes MGAS10270"]]},{"id":"NCBITaxon:370553","l":"Streptococcus pyogenes MGAS2096","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A370553","Streptococcus pyogenes MGAS2096"]]},{"id":"NCBITaxon:370554","l":"Streptococcus pyogenes MGAS10750","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A370554","Streptococcus pyogenes MGAS10750"]]},{"id":"NCBITaxon:370979","l":"Flavobacterium defluvii","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A370979","Flavobacterium defluvii"]]},{"id":"NCBITaxon:371602","l":"Aerococcus suis","na":1,"nb":1,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["NCBITaxon%3A371602","Aerococcus suis"]]},{"id":"NCBITaxon:372072","l":"Cohaesibacter gelatinilyticus","na":1,"nb":1,"a":[["sandstone-envo-00002055.html","sandstone"]],"b":[["NCBITaxon%3A372072","Cohaesibacter gelatinilyticus"]]},{"id":"NCBITaxon:372461","l":"Buchnera aphidicola BCc","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A372461","Buchnera aphidicola BCc"]]},{"id":"NCBITaxon:373672","l":"Chryseobacterium gambrini","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A373672","Chryseobacterium gambrini"]]},{"id":"NCBITaxon:374858","l":"Zoogloea caeni","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A374858","Zoogloea caeni"]]},{"id":"NCBITaxon:374928","l":"Haemophilus influenzae PittAA","na":1,"nb":1,"a":[["middle-ear-bto-0002099.html","middle ear"]],"b":[["NCBITaxon%3A374928","Haemophilus influenzae PittAA"]]},{"id":"NCBITaxon:374930","l":"Haemophilus influenzae PittEE","na":1,"nb":1,"a":[["middle-ear-bto-0002099.html","middle ear"]],"b":[["NCBITaxon%3A374930","Haemophilus influenzae PittEE"]]},{"id":"NCBITaxon:374931","l":"Haemophilus influenzae PittGG","na":1,"nb":1,"a":[["middle-ear-bto-0002099.html","middle ear"]],"b":[["NCBITaxon%3A374931","Haemophilus influenzae PittGG"]]},{"id":"NCBITaxon:374932","l":"Haemophilus influenzae PittHH","na":1,"nb":1,"a":[["middle-ear-bto-0002099.html","middle ear"]],"b":[["NCBITaxon%3A374932","Haemophilus influenzae PittHH"]]},{"id":"NCBITaxon:374933","l":"Haemophilus influenzae PittII","na":1,"nb":1,"a":[["middle-ear-bto-0002099.html","middle ear"]],"b":[["NCBITaxon%3A374933","Haemophilus influenzae PittII"]]},{"id":"NCBITaxon:375175","l":"Loigolactobacillus backii","na":1,"nb":1,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["NCBITaxon%3A375175","Loigolactobacillus backii"]]},{"id":"NCBITaxon:375177","l":"Haemophilus influenzae 3655","na":1,"nb":1,"a":[["b-lymphocyte-cell-line-bto-0001522.html","B-lymphocyte cell line"]],"b":[["NCBITaxon%3A375177","Haemophilus influenzae 3655"]]},{"id":"NCBITaxon:375286","l":"Janthinobacterium sp. Marseille","na":1,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"]],"b":[["NCBITaxon%3A375286","Janthinobacterium sp. Marseille"]]},{"id":"NCBITaxon:376219","l":"Limnospira indica PCC 8005","na":1,"nb":1,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A376219","Limnospira indica PCC 8005"]]},{"id":"NCBITaxon:37632","l":"Amycolatopsis sp.","na":1,"nb":1,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["NCBITaxon%3A37632","Amycolatopsis sp."]]},{"id":"NCBITaxon:378534","l":"Pseudomonas sp. Eur1 9.41","na":1,"nb":1,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A378534","Pseudomonas sp. Eur1 9.41"]]},{"id":"NCBITaxon:378543","l":"Tumebacillus permanentifrigoris","na":1,"nb":1,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A378543","Tumebacillus permanentifrigoris"]]},{"id":"NCBITaxon:379731","l":"Stutzerimonas stutzeri A1501","na":1,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["NCBITaxon%3A379731","Stutzerimonas stutzeri A1501"]]},{"id":"NCBITaxon:38033","l":"Chaetomium globosum","na":1,"nb":1,"a":[["desert-sand-envo-00005800.html","desert sand"]],"b":[["NCBITaxon%3A38033","Chaetomium globosum"]]},{"id":"NCBITaxon:380358","l":"Xanthomonas albilineans GPE PC73","na":1,"nb":1,"a":[["xylem-bto-0001468.html","xylem"]],"b":[["NCBITaxon%3A380358","Xanthomonas albilineans GPE PC73"]]},{"id":"NCBITaxon:380481","l":"Methylomicrobium sp. HG-1","na":1,"nb":1,"a":[["gold-mine-envo-00002168.html","gold mine"]],"b":[["NCBITaxon%3A380481","Methylomicrobium sp. HG-1"]]},{"id":"NCBITaxon:38072","l":"Bacillus infernus","na":1,"nb":1,"a":[["core-sample-habitatmech-bacdive-3bf519722c.html","Core-sample"]],"b":[["NCBITaxon%3A38072","Bacillus infernus"]]},{"id":"NCBITaxon:380749","l":"Hydrogenobaculum sp. Y04AAS1","na":1,"nb":1,"a":[["acidic-hot-spring-envo-00002120.html","acidic hot spring"]],"b":[["NCBITaxon%3A380749","Hydrogenobaculum sp. Y04AAS1"]]},{"id":"NCBITaxon:381630","l":"Methylobacterium jeotgali","na":1,"nb":1,"a":[["tropical-envo-01000204.html","tropical"]],"b":[["NCBITaxon%3A381630","Methylobacterium jeotgali"]]},{"id":"NCBITaxon:381754","l":"Pseudomonas paraeruginosa PA7","na":1,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A381754","Pseudomonas paraeruginosa PA7"]]},{"id":"NCBITaxon:382638","l":"Helicobacter acinonychis str. Sheeba","na":1,"nb":1,"a":[["gracilis-muscle-bto-0000536.html","gracilis muscle"]],"b":[["NCBITaxon%3A382638","Helicobacter acinonychis str. Sheeba"]]},{"id":"NCBITaxon:385025","l":"Cycloclasticus sp. P1","na":1,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A385025","Cycloclasticus sp. P1"]]},{"id":"NCBITaxon:386456","l":"Methanobacterium arcticum","na":1,"nb":1,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A386456","Methanobacterium arcticum"]]},{"id":"NCBITaxon:386585","l":"Escherichia coli O157:H7 str. Sakai","na":1,"nb":1,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["NCBITaxon%3A386585","Escherichia coli O157:H7 str. Sakai"]]},{"id":"NCBITaxon:387094","l":"Flavobacterium hercynium","na":1,"nb":1,"a":[["stream-bed-envo-00000383.html","stream bed"]],"b":[["NCBITaxon%3A387094","Flavobacterium hercynium"]]},{"id":"NCBITaxon:387426","l":"Pseudoalteromonas sp. KMM 701","na":1,"nb":1,"a":[["fumarole-envo-00000216.html","fumarole"]],"b":[["NCBITaxon%3A387426","Pseudoalteromonas sp. KMM 701"]]},{"id":"NCBITaxon:387890","l":"Prauserella aidingensis","na":1,"nb":1,"a":[["saline-lake-envo-00000019.html","saline lake"]],"b":[["NCBITaxon%3A387890","Prauserella aidingensis"]]},{"id":"NCBITaxon:388349","l":"Thermoplasma sp. S02","na":1,"nb":1,"a":[["lagoon-envo-00000038.html","lagoon"]],"b":[["NCBITaxon%3A388349","Thermoplasma sp. S02"]]},{"id":"NCBITaxon:388396","l":"Aliivibrio fischeri MJ11","na":1,"nb":1,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["NCBITaxon%3A388396","Aliivibrio fischeri MJ11"]]},{"id":"NCBITaxon:388413","l":"Algoriphagus machipongonensis","na":1,"nb":1,"a":[["choanomastigote-bto-0003434.html","choanomastigote"]],"b":[["NCBITaxon%3A388413","Algoriphagus machipongonensis"]]},{"id":"NCBITaxon:388467","l":"Planktothrix agardhii NIVA-CYA 126/8","na":1,"nb":1,"a":[["filament-bto-0000463.html","filament"]],"b":[["NCBITaxon%3A388467","Planktothrix agardhii NIVA-CYA 126/8"]]},{"id":"NCBITaxon:388739","l":"Roseobacter sp. SK209-2-6","na":1,"nb":1,"a":[["sandstone-envo-00002055.html","sandstone"]],"b":[["NCBITaxon%3A388739","Roseobacter sp. SK209-2-6"]]},{"id":"NCBITaxon:388746","l":"Puniceicoccus vermicola","na":1,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A388746","Puniceicoccus vermicola"]]},{"id":"NCBITaxon:388924","l":"Agromyces sp. KY5R","na":1,"nb":1,"a":[["clay-envo-00002982.html","clay"]],"b":[["NCBITaxon%3A388924","Agromyces sp. KY5R"]]},{"id":"NCBITaxon:390235","l":"Pseudomonas putida W619","na":1,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["NCBITaxon%3A390235","Pseudomonas putida W619"]]},{"id":"NCBITaxon:390612","l":"Bacteriovorax sp. NZ7","na":1,"nb":1,"a":[["sandstone-envo-00002055.html","sandstone"]],"b":[["NCBITaxon%3A390612","Bacteriovorax sp. NZ7"]]},{"id":"NCBITaxon:390807","l":"Jannaschia pohangensis","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A390807","Jannaschia pohangensis"]]},{"id":"NCBITaxon:391366","l":"Sporosarcina sp. A20","na":1,"nb":1,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A391366","Sporosarcina sp. A20"]]},{"id":"NCBITaxon:391589","l":"Roseobacter sp. GAI101","na":1,"nb":1,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A391589","Roseobacter sp. GAI101"]]},{"id":"NCBITaxon:391593","l":"Roseobacter sp. CCS2","na":1,"nb":1,"a":[["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A391593","Roseobacter sp. CCS2"]]},{"id":"NCBITaxon:391596","l":"Pedobacter sp. BAL39","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A391596","Pedobacter sp. BAL39"]]},{"id":"NCBITaxon:391597","l":"Limnobacter sp. MED105","na":1,"nb":1,"a":[["environmental-material-envo-00010483.html","environmental material"]],"b":[["NCBITaxon%3A391597","Limnobacter sp. MED105"]]},{"id":"NCBITaxon:391600","l":"Brevundimonas sp. BAL3","na":1,"nb":1,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A391600","Brevundimonas sp. BAL3"]]},{"id":"NCBITaxon:391774","l":"Nitratidesulfovibrio vulgaris DP4","na":1,"nb":1,"a":[["blanket-bog-envo-00000511.html","blanket bog"]],"b":[["NCBITaxon%3A391774","Nitratidesulfovibrio vulgaris DP4"]]},{"id":"NCBITaxon:392018","l":"Methanobacterium alcaliphilum","na":1,"nb":1,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A392018","Methanobacterium alcaliphilum"]]},{"id":"NCBITaxon:392423","l":"Hydrogenivirga sp. 128-5-R1-1","na":1,"nb":1,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A392423","Hydrogenivirga sp. 128-5-R1-1"]]},{"id":"NCBITaxon:392430","l":"Roseobacter sp. SO3","na":1,"nb":1,"a":[["sandstone-envo-00002055.html","sandstone"]],"b":[["NCBITaxon%3A392430","Roseobacter sp. SO3"]]},{"id":"NCBITaxon:392844","l":"Desulfothermus naphthae","na":1,"nb":1,"a":[["lagoon-envo-00000038.html","lagoon"]],"b":[["NCBITaxon%3A392844","Desulfothermus naphthae"]]},{"id":"NCBITaxon:392917","l":"Paenibacillus larvae subsp. larvae BRL-230010","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A392917","Paenibacillus larvae subsp. larvae BRL-230010"]]},{"id":"NCBITaxon:393011","l":"Francisella tularensis subsp. holarctica OSU18","na":1,"nb":1,"a":[["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["NCBITaxon%3A393011","Francisella tularensis subsp. holarctica OSU18"]]},{"id":"NCBITaxon:393481","l":"Roseinatronobacter monicus","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A393481","Roseinatronobacter monicus"]]},{"id":"NCBITaxon:394091","l":"Cystobacter badius","na":1,"nb":1,"a":[["leporid-associated-environment-habitatmech-bacdive-82dc7d11b9.html","leporid-associated environment"]],"b":[["NCBITaxon%3A394091","Cystobacter badius"]]},{"id":"NCBITaxon:394093","l":"Cystobacter miniatus","na":1,"nb":1,"a":[["wood-bto-0005516.html","wood"]],"b":[["NCBITaxon%3A394093","Cystobacter miniatus"]]},{"id":"NCBITaxon:394097","l":"Allostigmatella hybrida","na":1,"nb":1,"a":[["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"]],"b":[["NCBITaxon%3A394097","Allostigmatella hybrida"]]},{"id":"NCBITaxon:394193","l":"Amycolatopsis saalfeldensis","na":1,"nb":1,"a":[["cave-envo-00000067.html","cave"]],"b":[["NCBITaxon%3A394193","Amycolatopsis saalfeldensis"]]},{"id":"NCBITaxon:394221","l":"Maricaulis maris MCS10","na":1,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"]],"b":[["NCBITaxon%3A394221","Maricaulis maris MCS10"]]},{"id":"NCBITaxon:394958","l":"Clostridium taeniosporum","na":1,"nb":1,"a":[["trunk-bto-0001493.html","trunk"]],"b":[["NCBITaxon%3A394958","Clostridium taeniosporum"]]},{"id":"NCBITaxon:395087","l":"Paenimyroides ceti","na":1,"nb":1,"a":[["aquatic-mammal-associated-environment-habitatmech-bacdive-15180e7ff9.html","aquatic mammal-associated environment"]],"b":[["NCBITaxon%3A395087","Paenimyroides ceti"]]},{"id":"NCBITaxon:395491","l":"Rhizobium leguminosarum bv. trifolii WSM1325","na":1,"nb":1,"a":[["beach-envo-00000091.html","beach"]],"b":[["NCBITaxon%3A395491","Rhizobium leguminosarum bv. trifolii WSM1325"]]},{"id":"NCBITaxon:395494","l":"Gallionella capsiferriformans ES-2","na":1,"nb":1,"a":[["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A395494","Gallionella capsiferriformans ES-2"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["NCBITaxon%3A395960","Rhodopseudomonas palustris TIE-1"]]},{"id":"NCBITaxon:39691","l":"Mycolicibacterium moriokaense","na":1,"nb":1,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A39691","Mycolicibacterium moriokaense"]]},{"id":"NCBITaxon:397945","l":"Paracidovorax citrulli AAC00-1","na":1,"nb":1,"a":[["river-bed-envo-00000384.html","river bed"]],"b":[["NCBITaxon%3A397945","Paracidovorax citrulli AAC00-1"]]},{"id":"NCBITaxon:398257","l":"Luteimonas composti","na":1,"nb":1,"a":[["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"]],"b":[["NCBITaxon%3A398257","Luteimonas composti"]]},{"id":"NCBITaxon:399599","l":"Shewanella baltica OS195","na":1,"nb":1,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A399599","Shewanella baltica OS195"]]},{"id":"NCBITaxon:399726","l":"Thermoanaerobacter sp. X514","na":1,"nb":1,"a":[["drainage-basin-envo-00000291.html","drainage basin"]],"b":[["NCBITaxon%3A399726","Thermoanaerobacter sp. X514"]]},{"id":"NCBITaxon:399739","l":"Ectopseudomonas mendocina ymp","na":1,"nb":1,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["NCBITaxon%3A399739","Ectopseudomonas mendocina ymp"]]},{"id":"NCBITaxon:400091","l":"Hymenobacter xinjiangensis","na":1,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A400091","Hymenobacter xinjiangensis"]]},{"id":"NCBITaxon:400092","l":"Pontibacter korlensis","na":1,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A400092","Pontibacter korlensis"]]},{"id":"NCBITaxon:400668","l":"Marinomonas sp. MWYL1","na":1,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"]],"b":[["NCBITaxon%3A400668","Marinomonas sp. MWYL1"]]},{"id":"NCBITaxon:401976","l":"Pseudonocardia endophytica","na":1,"nb":1,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["NCBITaxon%3A401976","Pseudonocardia endophytica"]]},{"id":"NCBITaxon:404941","l":"Mycobacteroides salmoniphilum","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A404941","Mycobacteroides salmoniphilum"]]},{"id":"NCBITaxon:405436","l":"Micromonospora pattaloongensis","na":1,"nb":1,"a":[["mangrove-swamp-envo-00000057.html","mangrove swamp"]],"b":[["NCBITaxon%3A405436","Micromonospora pattaloongensis"]]},{"id":"NCBITaxon:405440","l":"Xylella fastidiosa M12","na":1,"nb":1,"a":[["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A405440","Xylella fastidiosa M12"]]},{"id":"NCBITaxon:405441","l":"Xylella fastidiosa M23","na":1,"nb":1,"a":[["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A405441","Xylella fastidiosa M23"]]},{"id":"NCBITaxon:40549","l":"Thermoanaerobacterium sp.","na":1,"nb":1,"a":[["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["NCBITaxon%3A40549","Thermoanaerobacterium sp."]]},{"id":"NCBITaxon:405946","l":"Oceanobacillus caeni","na":1,"nb":1,"a":[["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"]],"b":[["NCBITaxon%3A405946","Oceanobacillus caeni"]]},{"id":"NCBITaxon:405955","l":"Escherichia coli APEC O1","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A405955","Escherichia coli APEC O1"]]},{"id":"NCBITaxon:406100","l":"Aquisalimonas asiatica","na":1,"nb":1,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A406100","Aquisalimonas asiatica"]]},{"id":"NCBITaxon:406546","l":"Nocardioides sp. CMU5","na":1,"nb":1,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A406546","Nocardioides sp. CMU5"]]},{"id":"NCBITaxon:406547","l":"Rubripirellula obstinata","na":1,"nb":1,"a":[["epibiont-habitatmech-bacdive-f4eb470a03.html","Epibiont"]],"b":[["NCBITaxon%3A406547","Rubripirellula obstinata"]]},{"id":"NCBITaxon:407152","l":"Brucella cytisi","na":1,"nb":1,"a":[["root-nodule-envo-01000164.html","root nodule"]],"b":[["NCBITaxon%3A407152","Brucella cytisi"]]},{"id":"NCBITaxon:408180","l":"Mesorhizobium sp. ORS 3324","na":1,"nb":1,"a":[["hair-follicle-outer-root-sheath-bto-0003969.html","hair follicle outer root sheath"]],"b":[["NCBITaxon%3A408180","Mesorhizobium sp. ORS 3324"]]},{"id":"NCBITaxon:408184","l":"Mesorhizobium sp. ORS 3359","na":1,"nb":1,"a":[["hair-follicle-outer-root-sheath-bto-0003969.html","hair follicle outer root sheath"]],"b":[["NCBITaxon%3A408184","Mesorhizobium sp. ORS 3359"]]},{"id":"NCBITaxon:409290","l":"Arthrobacter oryzae","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A409290","Arthrobacter oryzae"]]},{"id":"NCBITaxon:410291","l":"Vibrio campbellii HY01","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A410291","Vibrio campbellii HY01"]]},{"id":"NCBITaxon:41114","l":"Actinobacillus sp.","na":1,"nb":1,"a":[["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["NCBITaxon%3A41114","Actinobacillus sp."]]},{"id":"NCBITaxon:411489","l":"Clostridium sp. L2-50","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A411489","Clostridium sp. L2-50"]]},{"id":"NCBITaxon:411959","l":"Virgibacillus chiguensis","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A411959","Virgibacillus chiguensis"]]},{"id":"NCBITaxon:412034","l":"Celerinatantimonas diazotrophica","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["NCBITaxon%3A412034","Celerinatantimonas diazotrophica"]]},{"id":"NCBITaxon:412614","l":"Vibrio cholerae 2740-80","na":1,"nb":1,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"]],"b":[["NCBITaxon%3A412614","Vibrio cholerae 2740-80"]]},{"id":"NCBITaxon:41315","l":"Yersinia sp. (in: enterobacteria)","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A41315","Yersinia sp. (in: enterobacteria)"]]},{"id":"NCBITaxon:413949","l":"Eimeria tenella strain Houghton","na":1,"nb":1,"a":[["coastal-sea-water-envo-00002150.html","coastal sea water"]],"b":[["NCBITaxon%3A413949","Eimeria tenella strain Houghton"]]},{"id":"NCBITaxon:414052","l":"Caenispirillum bisanense","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A414052","Caenispirillum bisanense"]]},{"id":"NCBITaxon:414684","l":"Rhodospirillum centenum SW","na":1,"nb":1,"a":[["cyst-bto-0000320.html","cyst"]],"b":[["NCBITaxon%3A414684","Rhodospirillum centenum SW"]]},{"id":"NCBITaxon:417203","l":"Mycetohabitans endofungorum","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A417203","Mycetohabitans endofungorum"]]},{"id":"NCBITaxon:417397","l":"Vibrio cholerae 623-39","na":1,"nb":1,"a":[["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["NCBITaxon%3A417397","Vibrio cholerae 623-39"]]},{"id":"NCBITaxon:417399","l":"Vibrio cholerae NCTC 8457","na":1,"nb":1,"a":[["anaerobic-sludge-blanket-reactor-envo-00002213.html","anaerobic sludge blanket reactor"]],"b":[["NCBITaxon%3A417399","Vibrio cholerae NCTC 8457"]]},{"id":"NCBITaxon:418643","l":"Brevibacterium marinum","na":1,"nb":1,"a":[["beach-envo-00000091.html","beach"]],"b":[["NCBITaxon%3A418643","Brevibacterium marinum"]]},{"id":"NCBITaxon:419481","l":"Desulfoluna spongiiphila","na":1,"nb":1,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["NCBITaxon%3A419481","Desulfoluna spongiiphila"]]},{"id":"NCBITaxon:419542","l":"Leptospirillum rubarum","na":1,"nb":1,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A419542","Leptospirillum rubarum"]]},{"id":"NCBITaxon:420953","l":"Paraburkholderia megapolitana","na":1,"nb":1,"a":[["area-of-moss-dominated-vegetation-envo-01000890.html","area of moss-dominated vegetation"]],"b":[["NCBITaxon%3A420953","Paraburkholderia megapolitana"]]},{"id":"NCBITaxon:420955","l":"Sphingobium olei","na":1,"nb":1,"a":[["oil-envo-00002985.html","oil"]],"b":[["NCBITaxon%3A420955","Sphingobium olei"]]},{"id":"NCBITaxon:422289","l":"Beggiatoa sp. PS","na":1,"nb":1,"a":[["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A422289","Beggiatoa sp. PS"]]},{"id":"NCBITaxon:42322","l":"Eubacterium ruminantium","na":1,"nb":1,"a":[["animal-habitation-envo-00005803.html","animal habitation"]],"b":[["NCBITaxon%3A42322","Eubacterium ruminantium"]]},{"id":"NCBITaxon:425006","l":"Cohnella yongneupensis","na":1,"nb":1,"a":[["marsh-envo-00000035.html","marsh"]],"b":[["NCBITaxon%3A425006","Cohnella yongneupensis"]]},{"id":"NCBITaxon:426118","l":"Saccharolobus islandicus M.16.4","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A426118","Saccharolobus islandicus M.16.4"]]},{"id":"NCBITaxon:426368","l":"Methanococcus maripaludis C7","na":1,"nb":1,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["NCBITaxon%3A426368","Methanococcus maripaludis C7"]]},{"id":"NCBITaxon:427","l":"Methylosinus sp.","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A427","Methylosinus sp."]]},{"id":"NCBITaxon:427317","l":"Saccharolobus islandicus M.14.25","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A427317","Saccharolobus islandicus M.14.25"]]},{"id":"NCBITaxon:427318","l":"Saccharolobus islandicus M.16.27","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A427318","Saccharolobus islandicus M.16.27"]]},{"id":"NCBITaxon:43064","l":"Trichococcus pasteurii","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A43064","Trichococcus pasteurii"]]},{"id":"NCBITaxon:433296","l":"Aminipila butyrica","na":1,"nb":1,"a":[["animal-waste-material-envo-00002276.html","animal waste material"]],"b":[["NCBITaxon%3A433296","Aminipila butyrica"]]},{"id":"NCBITaxon:433647","l":"Terrimesophilobacter mesophilus","na":1,"nb":1,"a":[["agricultural-ecosystem-envo-00000077.html","agricultural ecosystem"]],"b":[["NCBITaxon%3A433647","Terrimesophilobacter mesophilus"]]},{"id":"NCBITaxon:435258","l":"Leishmania infantum JPCM5","na":1,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A435258","Leishmania infantum JPCM5"]]},{"id":"NCBITaxon:43666","l":"Paeniglutamicibacter sulfureus","na":1,"nb":1,"a":[["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"]],"b":[["NCBITaxon%3A43666","Paeniglutamicibacter sulfureus"]]},{"id":"NCBITaxon:43774","l":"Syntrophus buswellii","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["NCBITaxon%3A43774","Syntrophus buswellii"]]},{"id":"NCBITaxon:43775","l":"Syntrophus gentianae","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A43775","Syntrophus gentianae"]]},{"id":"NCBITaxon:439184","l":"Escherichia coli RS218","na":1,"nb":1,"a":[["microvascular-endothelial-cell-bto-0003123.html","microvascular endothelial cell"]],"b":[["NCBITaxon%3A439184","Escherichia coli RS218"]]},{"id":"NCBITaxon:439235","l":"Desulfatibacillum alkenivorans AK-01","na":1,"nb":1,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["NCBITaxon%3A439235","Desulfatibacillum alkenivorans AK-01"]]},{"id":"NCBITaxon:43928","l":"Halobaculum gomorrense","na":1,"nb":1,"a":[["marine-anoxic-zone-envo-01000066.html","marine anoxic zone"]],"b":[["NCBITaxon%3A43928","Halobaculum gomorrense"]]},{"id":"NCBITaxon:439386","l":"Saccharolobus islandicus Y.G.57.14","na":1,"nb":1,"a":[["geyser-envo-00000050.html","geyser"]],"b":[["NCBITaxon%3A439386","Saccharolobus islandicus Y.G.57.14"]]},{"id":"NCBITaxon:439497","l":"Ruegeria sp. R11","na":1,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["NCBITaxon%3A439497","Ruegeria sp. R11"]]},{"id":"NCBITaxon:439842","l":"Salmonella enterica subsp. enterica serovar Kentucky str. CVM29188","na":1,"nb":1,"a":[["breast-bto-0000149.html","breast"]],"b":[["NCBITaxon%3A439842","Salmonella enterica subsp. enterica serovar Kentucky str. CVM29188"]]},{"id":"NCBITaxon:440","l":"Acetobacter sp.","na":1,"nb":1,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A440","Acetobacter sp."]]},{"id":"NCBITaxon:441153","l":"Burkholderia pseudomallei NCTC 13177","na":1,"nb":1,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A441153","Burkholderia pseudomallei NCTC 13177"]]},{"id":"NCBITaxon:441157","l":"Burkholderia humptydooensis MSMB43","na":1,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"]],"b":[["NCBITaxon%3A441157","Burkholderia humptydooensis MSMB43"]]},{"id":"NCBITaxon:441161","l":"Burkholderia pseudomallei DM98","na":1,"nb":1,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A441161","Burkholderia pseudomallei DM98"]]},{"id":"NCBITaxon:441772","l":"Clostridium botulinum F str. Langeland","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A441772","Clostridium botulinum F str. Langeland"]]},{"id":"NCBITaxon:444158","l":"Methanococcus maripaludis C6","na":1,"nb":1,"a":[["intertidal-sediment-envo-00002179.html","intertidal sediment"]],"b":[["NCBITaxon%3A444158","Methanococcus maripaludis C6"]]},{"id":"NCBITaxon:444612","l":"Rickettsia endosymbiont of Ixodes scapularis","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A444612","Rickettsia endosymbiont of Ixodes scapularis"]]},{"id":"NCBITaxon:445327","l":"Neorhodopirellula lusitana","na":1,"nb":1,"a":[["epibiont-habitatmech-bacdive-f4eb470a03.html","Epibiont"]],"b":[["NCBITaxon%3A445327","Neorhodopirellula lusitana"]]},{"id":"NCBITaxon:44576","l":"Nitrosomonas halophila","na":1,"nb":1,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"]],"b":[["NCBITaxon%3A44576","Nitrosomonas halophila"]]},{"id":"NCBITaxon:445930","l":"Trueperella abortisuis","na":1,"nb":1,"a":[["abort-habitatmech-bacdive-b61f30c070.html","Abort"]],"b":[["NCBITaxon%3A445930","Trueperella abortisuis"]]},{"id":"NCBITaxon:446787","l":"Actinopolymorpha rutila","na":1,"nb":1,"a":[["forest-soil-envo-00002261.html","forest soil"]],"b":[["NCBITaxon%3A446787","Actinopolymorpha rutila"]]},{"id":"NCBITaxon:447082","l":"Flavobacterium sp. S1","na":1,"nb":1,"a":[["city-envo-00000856.html","city"]],"b":[["NCBITaxon%3A447082","Flavobacterium sp. S1"]]},{"id":"NCBITaxon:447217","l":"Anaeromyxobacter sp. K","na":1,"nb":1,"a":[["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A447217","Anaeromyxobacter sp. K"]]},{"id":"NCBITaxon:44737","l":"Capnocytophaga sp.","na":1,"nb":1,"a":[["root-tooth-habitatmech-bacdive-5bac6e6496.html","Root-Tooth"]],"b":[["NCBITaxon%3A44737","Capnocytophaga sp."]]},{"id":"NCBITaxon:447687","l":"Mesorhizobium sp. CJ1","na":1,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A447687","Mesorhizobium sp. CJ1"]]},{"id":"NCBITaxon:448","l":"Legionella erythra","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A448","Legionella erythra"]]},{"id":"NCBITaxon:449308","l":"Desulfotomaculum sp. DSM 7440","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A449308","Desulfotomaculum sp. DSM 7440"]]},{"id":"NCBITaxon:449312","l":"Desulfotomaculum sp. DSM 8775","na":1,"nb":1,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A449312","Desulfotomaculum sp. DSM 8775"]]},{"id":"NCBITaxon:45056","l":"Legionella adelaidensis","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A45056","Legionella adelaidensis"]]},{"id":"NCBITaxon:45068","l":"Legionella londiniensis","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A45068","Legionella londiniensis"]]},{"id":"NCBITaxon:45071","l":"Legionella parisiensis","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A45071","Legionella parisiensis"]]},{"id":"NCBITaxon:45076","l":"Legionella worsleiensis","na":1,"nb":1,"a":[["cooling-tower-habitatmech-bacdive-71d5f01e03.html","cooling tower"]],"b":[["NCBITaxon%3A45076","Legionella worsleiensis"]]},{"id":"NCBITaxon:451","l":"Legionella micdadei","na":1,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A451","Legionella micdadei"]]},{"id":"NCBITaxon:453142","l":"Polaribacter sp. 3-17","na":1,"nb":1,"a":[["fumarole-envo-00000216.html","fumarole"]],"b":[["NCBITaxon%3A453142","Polaribacter sp. 3-17"]]},{"id":"NCBITaxon:454006","l":"Epilithonimonas hungarica","na":1,"nb":1,"a":[["oil-envo-00002985.html","oil"]],"b":[["NCBITaxon%3A454006","Epilithonimonas hungarica"]]},{"id":"NCBITaxon:454148","l":"Roseibacillus persicicus","na":1,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A454148","Roseibacillus persicicus"]]},{"id":"NCBITaxon:454153","l":"Luteolibacter pohnpeiensis","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A454153","Luteolibacter pohnpeiensis"]]},{"id":"NCBITaxon:454165","l":"Salmonella enterica subsp. enterica serovar Schwarzengrund str. SL480","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A454165","Salmonella enterica subsp. enterica serovar Schwarzengrund str. SL480"]]},{"id":"NCBITaxon:45465","l":"Vogesella indigofera","na":1,"nb":1,"a":[["xeric-basin-biome-envo-00000893.html","xeric basin biome"]],"b":[["NCBITaxon%3A45465","Vogesella indigofera"]]},{"id":"NCBITaxon:456320","l":"Methanococcus voltae A3","na":1,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"]],"b":[["NCBITaxon%3A456320","Methanococcus voltae A3"]]},{"id":"NCBITaxon:456482","l":"Haemophilus influenzae HK1212","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A456482","Haemophilus influenzae HK1212"]]},{"id":"NCBITaxon:45670","l":"Salinicoccus roseus","na":1,"nb":1,"a":[["pond-envo-00000033.html","pond"]],"b":[["NCBITaxon%3A45670","Salinicoccus roseus"]]},{"id":"NCBITaxon:457425","l":"Streptomyces albus J1074","na":1,"nb":1,"a":[["anthropogenic-terrestrial-biome-envo-01000219.html","anthropogenic terrestrial biome"]],"b":[["NCBITaxon%3A457425","Streptomyces albus J1074"]]},{"id":"NCBITaxon:457428","l":"Streptomyces lividans TK24","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A457428","Streptomyces lividans TK24"]]},{"id":"NCBITaxon:458233","l":"Macrococcoides caseolyticum JCSC5402","na":1,"nb":1,"a":[["primordium-bto-0001886.html","primordium"]],"b":[["NCBITaxon%3A458233","Macrococcoides caseolyticum JCSC5402"]]},{"id":"NCBITaxon:459471","l":"Flavobacterium tiangeerense","na":1,"nb":1,"a":[["glacier-envo-00000133.html","glacier"]],"b":[["NCBITaxon%3A459471","Flavobacterium tiangeerense"]]},{"id":"NCBITaxon:459528","l":"Pseudomonas duriflava","na":1,"nb":1,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A459528","Pseudomonas duriflava"]]},{"id":"NCBITaxon:46127","l":"Staphylococcus felis","na":1,"nb":1,"a":[["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"]],"b":[["NCBITaxon%3A46127","Staphylococcus felis"]]},{"id":"NCBITaxon:46170","l":"","na":1,"nb":1,"a":[["spike-bto-0001278.html","spike"]],"b":[["NCBITaxon%3A1280","Staphylococcus aureus"]]},{"id":"NCBITaxon:46223","l":"Thermoflavimicrobium dichotomicum","na":1,"nb":1,"a":[["village-biome-envo-01000246.html","village biome"]],"b":[["NCBITaxon%3A46223","Thermoflavimicrobium dichotomicum"]]},{"id":"NCBITaxon:46224","l":"Heyndrickxia sporothermodurans","na":1,"nb":1,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["NCBITaxon%3A46224","Heyndrickxia sporothermodurans"]]},{"id":"NCBITaxon:463301","l":"Halomonas korlensis","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A463301","Halomonas korlensis"]]},{"id":"NCBITaxon:46353","l":"Agrococcus jenensis","na":1,"nb":1,"a":[["surface-swab-habitatmech-bacdive-6911460a4a.html","Surface-swab"]],"b":[["NCBITaxon%3A46353","Agrococcus jenensis"]]},{"id":"NCBITaxon:463794","l":"Pseudomonas fluorescens BBc6R8","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A463794","Pseudomonas fluorescens BBc6R8"]]},{"id":"NCBITaxon:464","l":"Fluoribacter gormanii","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A464","Fluoribacter gormanii"]]},{"id":"NCBITaxon:469551","l":"Aquamicrobium ahrensii","na":1,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"]],"b":[["NCBITaxon%3A469551","Aquamicrobium ahrensii"]]},{"id":"NCBITaxon:469616","l":"Fusobacterium mortiferum ATCC 9817","na":1,"nb":1,"a":[["animal-litter-envo-00002191.html","animal litter"]],"b":[["NCBITaxon%3A469616","Fusobacterium mortiferum ATCC 9817"]]},{"id":"NCBITaxon:469869","l":"Virgibacillus arcticus","na":1,"nb":1,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["NCBITaxon%3A469869","Virgibacillus arcticus"]]},{"id":"NCBITaxon:471473","l":"Chlamydia trachomatis L2b/UCH-1/proctitis","na":1,"nb":1,"a":[["lymph-node-bto-0000784.html","lymph node"]],"b":[["NCBITaxon%3A471473","Chlamydia trachomatis L2b/UCH-1/proctitis"]]},{"id":"NCBITaxon:471514","l":"Paenalicyclobacillus ferrooxydans","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A471514","Paenalicyclobacillus ferrooxydans"]]},{"id":"NCBITaxon:471575","l":"Photorhabdus cinerea","na":1,"nb":1,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A471575","Photorhabdus cinerea"]]},{"id":"NCBITaxon:471876","l":"Streptococcus pyogenes NZ131","na":1,"nb":1,"a":[["throat-bto-0000828.html","throat"]],"b":[["NCBITaxon%3A471876","Streptococcus pyogenes NZ131"]]},{"id":"NCBITaxon:472","l":"Acinetobacter sp.","na":1,"nb":1,"a":[["carcass-envo-00002033.html","carcass"]],"b":[["NCBITaxon%3A472","Acinetobacter sp."]]},{"id":"NCBITaxon:472166","l":"Brevundimonas basaltis","na":1,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A472166","Brevundimonas basaltis"]]},{"id":"NCBITaxon:472181","l":"Halopseudomonas sabulinigri","na":1,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A472181","Halopseudomonas sabulinigri"]]},{"id":"NCBITaxon:472183","l":"Shewanella basaltis","na":1,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A472183","Shewanella basaltis"]]},{"id":"NCBITaxon:472186","l":"Vibrio areninigrae","na":1,"nb":1,"a":[["mineral-material-envo-01000256.html","mineral material"]],"b":[["NCBITaxon%3A472186","Vibrio areninigrae"]]},{"id":"NCBITaxon:47254","l":"Leptolyngbya sp.","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A47254","Leptolyngbya sp."]]},{"id":"NCBITaxon:474949","l":"Granulicella aggregans","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A474949","Granulicella aggregans"]]},{"id":"NCBITaxon:474951","l":"Granulicella paludicola","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A474951","Granulicella paludicola"]]},{"id":"NCBITaxon:474953","l":"Telmatobacter bradus","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A474953","Telmatobacter bradus"]]},{"id":"NCBITaxon:475299","l":"Algoriphagus aquaeductus","na":1,"nb":1,"a":[["drinking-water-envo-00003064.html","drinking water"]],"b":[["NCBITaxon%3A475299","Algoriphagus aquaeductus"]]},{"id":"NCBITaxon:475609","l":"Escherichia coli chi7122","na":1,"nb":1,"a":[["alveolus-bto-0000060.html","alveolus"]],"b":[["NCBITaxon%3A475609","Escherichia coli chi7122"]]},{"id":"NCBITaxon:476213","l":"Salmonella enterica subsp. enterica serovar Paratyphi C str. RKS4594","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A476213","Salmonella enterica subsp. enterica serovar Paratyphi C str. RKS4594"]]},{"id":"NCBITaxon:478010","l":"Microterricola pindariensis","na":1,"nb":1,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["NCBITaxon%3A478010","Microterricola pindariensis"]]},{"id":"NCBITaxon:478107","l":"Actinoallomurus iriomotensis","na":1,"nb":1,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A478107","Actinoallomurus iriomotensis"]]},{"id":"NCBITaxon:478111","l":"Actinoallomurus luridus","na":1,"nb":1,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A478111","Actinoallomurus luridus"]]},{"id":"NCBITaxon:47846","l":"Brachybacterium conglomeratum","na":1,"nb":1,"a":[["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"]],"b":[["NCBITaxon%3A47846","Brachybacterium conglomeratum"]]},{"id":"NCBITaxon:47988","l":"Actinoplanes auranticolor","na":1,"nb":1,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A47988","Actinoplanes auranticolor"]]},{"id":"NCBITaxon:480035","l":"Nocardia wallacei","na":1,"nb":1,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["NCBITaxon%3A480035","Nocardia wallacei"]]},{"id":"NCBITaxon:484020","l":"Bifidobacterium bifidum BGN4","na":1,"nb":1,"a":[["breast-bto-0000149.html","breast"]],"b":[["NCBITaxon%3A484020","Bifidobacterium bifidum BGN4"]]},{"id":"NCBITaxon:484021","l":"Klebsiella pneumoniae subsp. pneumoniae NTUH-K2044","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A484021","Klebsiella pneumoniae subsp. pneumoniae NTUH-K2044"]]},{"id":"NCBITaxon:48729","l":"Rhabdochromatium marinum","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A48729","Rhabdochromatium marinum"]]},{"id":"NCBITaxon:487514","l":"Mycobacterium kyorinense","na":1,"nb":1,"a":[["lymph-node-bto-0000784.html","lymph node"]],"b":[["NCBITaxon%3A487514","Mycobacterium kyorinense"]]},{"id":"NCBITaxon:488446","l":"Burkholderia latens","na":1,"nb":1,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"]],"b":[["NCBITaxon%3A488446","Burkholderia latens"]]},{"id":"NCBITaxon:488927","l":"Ipomoea phytoplasma","na":1,"nb":1,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A488927","Ipomoea phytoplasma"]]},{"id":"NCBITaxon:488938","l":"Desulfonatronospira delicata","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A488938","Desulfonatronospira delicata"]]},{"id":"NCBITaxon:489632","l":"Ectopseudomonas chengduensis","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A489632","Ectopseudomonas chengduensis"]]},{"id":"NCBITaxon:490098","l":"Methanobacterium flexile","na":1,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A490098","Methanobacterium flexile"]]},{"id":"NCBITaxon:490759","l":"Marinobacter sp. BSs20148","na":1,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A490759","Marinobacter sp. BSs20148"]]},{"id":"NCBITaxon:491207","l":"Chryseobacterium oleae","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A491207","Chryseobacterium oleae"]]},{"id":"NCBITaxon:491916","l":"Rhizobium etli CIAT 652","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A491916","Rhizobium etli CIAT 652"]]},{"id":"NCBITaxon:49252","l":"Eucampia antarctica","na":1,"nb":1,"a":[["saline-water-envo-00002010.html","saline water"]],"b":[["NCBITaxon%3A49252","Eucampia antarctica"]]},{"id":"NCBITaxon:49447","l":"Halochromatium salexigens","na":1,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"]],"b":[["NCBITaxon%3A49447","Halochromatium salexigens"]]},{"id":"NCBITaxon:497963","l":"Streptococcus pneumoniae SP-BS293","na":1,"nb":1,"a":[["archeological-site-envo-00000564.html","archeological site"]],"b":[["NCBITaxon%3A497963","Streptococcus pneumoniae SP-BS293"]]},{"id":"NCBITaxon:498213","l":"Clostridium botulinum B1 str. Okra","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A498213","Clostridium botulinum B1 str. Okra"]]},{"id":"NCBITaxon:498214","l":"Clostridium botulinum A3 str. Loch Maree","na":1,"nb":1,"a":[["plateau-envo-00000182.html","plateau"]],"b":[["NCBITaxon%3A498214","Clostridium botulinum A3 str. Loch Maree"]]},{"id":"NCBITaxon:499174","l":"Clostridioides difficile QCD-23m63","na":1,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["NCBITaxon%3A499174","Clostridioides difficile QCD-23m63"]]},{"id":"NCBITaxon:500639","l":"Enterobacter cancerogenus ATCC 35316","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A500639","Enterobacter cancerogenus ATCC 35316"]]},{"id":"NCBITaxon:500640","l":"Citrobacter youngae ATCC 29220","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A500640","Citrobacter youngae ATCC 29220"]]},{"id":"NCBITaxon:502915","l":"Pseudomonas sp. AW54a","na":1,"nb":1,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["NCBITaxon%3A502915","Pseudomonas sp. AW54a"]]},{"id":"NCBITaxon:503997","l":"Hydrogenophaga sp. PL2G6","na":1,"nb":1,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A503997","Hydrogenophaga sp. PL2G6"]]},{"id":"NCBITaxon:504000","l":"Thauera sp. E7","na":1,"nb":1,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A504000","Thauera sp. E7"]]},{"id":"NCBITaxon:507522","l":"Klebsiella variicola 342","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A507522","Klebsiella variicola 342"]]},{"id":"NCBITaxon:507619","l":"Chromobacterium sp. DS-1","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A507619","Chromobacterium sp. DS-1"]]},{"id":"NCBITaxon:507626","l":"Halomonas chromatireducens","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A507626","Halomonas chromatireducens"]]},{"id":"NCBITaxon:508767","l":"Clostridium botulinum E3 str. Alaska E43","na":1,"nb":1,"a":[["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A508767","Clostridium botulinum E3 str. Alaska E43"]]},{"id":"NCBITaxon:511062","l":"Oceanimonas sp. GK1","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A511062","Oceanimonas sp. GK1"]]},{"id":"NCBITaxon:512","l":"Alcaligenes sp.","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A512","Alcaligenes sp."]]},{"id":"NCBITaxon:512762","l":"Kineococcus xinjiangensis","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A512762","Kineococcus xinjiangensis"]]},{"id":"NCBITaxon:513051","l":"Burkholderia multivorans CGD1","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A513051","Burkholderia multivorans CGD1"]]},{"id":"NCBITaxon:515393","l":"Pseudomonas yamanorum","na":1,"nb":1,"a":[["subarctic-habitatmech-bacdive-09ded89de7.html","Subarctic"]],"b":[["NCBITaxon%3A515393","Pseudomonas yamanorum"]]},{"id":"NCBITaxon:515415","l":"Microbacterium invictum","na":1,"nb":1,"a":[["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"]],"b":[["NCBITaxon%3A515415","Microbacterium invictum"]]},{"id":"NCBITaxon:515618","l":"Candidatus Riesia pediculicola USDA","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A515618","Candidatus Riesia pediculicola USDA"]]},{"id":"NCBITaxon:519989","l":"Ectothiorhodospira sp. PHS-1","na":1,"nb":1,"a":[["primordium-bto-0001886.html","primordium"]],"b":[["NCBITaxon%3A519989","Ectothiorhodospira sp. PHS-1"]]},{"id":"NCBITaxon:521013","l":"Limimaricola pyoseonensis","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A521013","Limimaricola pyoseonensis"]]},{"id":"NCBITaxon:524884","l":"Saccharopolyspora rosea","na":1,"nb":1,"a":[["bronchus-uberon-0002185.html","bronchus"]],"b":[["NCBITaxon%3A524884","Saccharopolyspora rosea"]]},{"id":"NCBITaxon:526588","l":"Vibrio ostreicida","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A526588","Vibrio ostreicida"]]},{"id":"NCBITaxon:526944","l":"Tetragenococcus osmophilus","na":1,"nb":1,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A526944","Tetragenococcus osmophilus"]]},{"id":"NCBITaxon:526947","l":"Rhizobium etli GR56","na":1,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["NCBITaxon%3A526947","Rhizobium etli GR56"]]},{"id":"NCBITaxon:526968","l":"Bacillus cereus R309803","na":1,"nb":1,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["NCBITaxon%3A526968","Bacillus cereus R309803"]]},{"id":"NCBITaxon:526971","l":"Bacillus cereus MM3","na":1,"nb":1,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A526971","Bacillus cereus MM3"]]},{"id":"NCBITaxon:527028","l":"Bacillus thuringiensis serovar pulsiensis BGSC 4CC1","na":1,"nb":1,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A527028","Bacillus thuringiensis serovar pulsiensis BGSC 4CC1"]]},{"id":"NCBITaxon:52761","l":"Azospirillum largimobile","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["NCBITaxon%3A52761","Azospirillum largimobile"]]},{"id":"NCBITaxon:52770","l":"Buchananella hordeovulneris","na":1,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"]],"b":[["NCBITaxon%3A52770","Buchananella hordeovulneris"]]},{"id":"NCBITaxon:52771","l":"Actinomyces howellii","na":1,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["NCBITaxon%3A52771","Actinomyces howellii"]]},{"id":"NCBITaxon:52773","l":"Schaalia meyeri","na":1,"nb":1,"a":[["meningitis-habitatmech-bacdive-693692f9f6.html","Meningitis"]],"b":[["NCBITaxon%3A52773","Schaalia meyeri"]]},{"id":"NCBITaxon:529005","l":"Sphingobium vermicomposti","na":1,"nb":1,"a":[["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"]],"b":[["NCBITaxon%3A529005","Sphingobium vermicomposti"]]},{"id":"NCBITaxon:531814","l":"Gracilibacillus ureilyticus","na":1,"nb":1,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["NCBITaxon%3A531814","Gracilibacillus ureilyticus"]]},{"id":"NCBITaxon:531938","l":"Lentzea atacamensis","na":1,"nb":1,"a":[["xerophilic-habitatmech-bacdive-f5201ef8d6.html","Xerophilic"]],"b":[["NCBITaxon%3A531938","Lentzea atacamensis"]]},{"id":"NCBITaxon:53356","l":"Terracoccus luteus","na":1,"nb":1,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A53356","Terracoccus luteus"]]},{"id":"NCBITaxon:536044","l":"Methanolobus zinderi","na":1,"nb":1,"a":[["coalbed-water-habitatmech-bacdive-499e641dc2.html","Coalbed-water"]],"b":[["NCBITaxon%3A536044","Methanolobus zinderi"]]},{"id":"NCBITaxon:536230","l":"Burkholderia pseudomallei MSHR346","na":1,"nb":1,"a":[["hospital-envo-00002173.html","hospital"]],"b":[["NCBITaxon%3A536230","Burkholderia pseudomallei MSHR346"]]},{"id":"NCBITaxon:537021","l":"Candidatus Liberibacter asiaticus str. psy62","na":1,"nb":1,"a":[["phloem-bto-0001058.html","phloem"]],"b":[["NCBITaxon%3A537021","Candidatus Liberibacter asiaticus str. psy62"]]},{"id":"NCBITaxon:537288","l":"Megasphaera sp. DJF_B143","na":1,"nb":1,"a":[["hindgut-bto-0000510.html","hindgut"]],"b":[["NCBITaxon%3A537288","Megasphaera sp. DJF_B143"]]},{"id":"NCBITaxon:540251","l":"Rhodovulum steppense","na":1,"nb":1,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A540251","Rhodovulum steppense"]]},{"id":"NCBITaxon:54061","l":"Ralstonia sp.","na":1,"nb":1,"a":[["industrial-production-habitatmech-bacdive-cb34a860e6.html","Industrial-production"]],"b":[["NCBITaxon%3A54061","Ralstonia sp."]]},{"id":"NCBITaxon:54067","l":"Xylophilus ampelinus","na":1,"nb":1,"a":[["scrubland-area-envo-00000300.html","scrubland area"]],"b":[["NCBITaxon%3A54067","Xylophilus ampelinus"]]},{"id":"NCBITaxon:542300","l":"Acidicapsa ligni","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A542300","Acidicapsa ligni"]]},{"id":"NCBITaxon:543891","l":"Comamonas testosteroni CNB-1","na":1,"nb":1,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A543891","Comamonas testosteroni CNB-1"]]},{"id":"NCBITaxon:544405","l":"Helicobacter pylori 98-10","na":1,"nb":1,"a":[["duodenum-bto-0000365.html","duodenum"]],"b":[["NCBITaxon%3A544405","Helicobacter pylori 98-10"]]},{"id":"NCBITaxon:544406","l":"Helicobacter pylori B128","na":1,"nb":1,"a":[["duodenum-bto-0000365.html","duodenum"]],"b":[["NCBITaxon%3A544406","Helicobacter pylori B128"]]},{"id":"NCBITaxon:544480","l":"Shinella fusca","na":1,"nb":1,"a":[["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"]],"b":[["NCBITaxon%3A544480","Shinella fusca"]]},{"id":"NCBITaxon:546115","l":"Microbacterium ginsengiterrae","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A546115","Microbacterium ginsengiterrae"]]},{"id":"NCBITaxon:548474","l":"Staphylococcus aureus subsp. aureus TCH130","na":1,"nb":1,"a":[["anaerobic-digester-sludge-envo-00003965.html","anaerobic digester sludge"]],"b":[["NCBITaxon%3A548474","Staphylococcus aureus subsp. aureus TCH130"]]},{"id":"NCBITaxon:5530","l":"Metarhizium anisopliae","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A5530","Metarhizium anisopliae"]]},{"id":"NCBITaxon:553198","l":"Propionibacterium acidifaciens F0233","na":1,"nb":1,"a":[["central-nervous-system-bto-0000227.html","central nervous system"]],"b":[["NCBITaxon%3A553198","Propionibacterium acidifaciens F0233"]]},{"id":"NCBITaxon:553217","l":"Enhydrobacter aerosaccus SK60","na":1,"nb":1,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A553217","Enhydrobacter aerosaccus SK60"]]},{"id":"NCBITaxon:553480","l":"Photorhabdus asymbiotica subsp. asymbiotica ATCC 43949","na":1,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A553480","Photorhabdus asymbiotica subsp. asymbiotica ATCC 43949"]]},{"id":"NCBITaxon:554290","l":"Salmonella enterica subsp. enterica serovar Paratyphi A str. AKU_12601","na":1,"nb":1,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["NCBITaxon%3A554290","Salmonella enterica subsp. enterica serovar Paratyphi A str. AKU_12601"]]},{"id":"NCBITaxon:555372","l":"Plantactinospora siamensis","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A555372","Plantactinospora siamensis"]]},{"id":"NCBITaxon:555793","l":"Novosphingobium sp. Rr 2-17","na":1,"nb":1,"a":[["crown-gall-bto-0000303.html","crown gall"]],"b":[["NCBITaxon%3A555793","Novosphingobium sp. Rr 2-17"]]},{"id":"NCBITaxon:556258","l":"Bacteroides sp. D1","na":1,"nb":1,"a":[["bay-envo-00000032.html","bay"]],"b":[["NCBITaxon%3A556258","Bacteroides sp. D1"]]},{"id":"NCBITaxon:558165","l":"Chryseomicrobium amylolyticum","na":1,"nb":1,"a":[["semiarid-habitatmech-bacdive-766cd9f54f.html","Semiarid"]],"b":[["NCBITaxon%3A558165","Chryseomicrobium amylolyticum"]]},{"id":"NCBITaxon:560080","l":"Shewanella corallii","na":1,"nb":1,"a":[["cnidarian-associated-environment-envo-01001179.html","cnidarian-associated environment"]],"b":[["NCBITaxon%3A560080","Shewanella corallii"]]},{"id":"NCBITaxon:563008","l":"Segatella oris C735","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A563008","Segatella oris C735"]]},{"id":"NCBITaxon:563036","l":"Streptococcus sp. C300","na":1,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["NCBITaxon%3A563036","Streptococcus sp. C300"]]},{"id":"NCBITaxon:563045","l":"Comamonas testosteroni S44","na":1,"nb":1,"a":[["large-river-biome-envo-00000887.html","large river biome"]],"b":[["NCBITaxon%3A563045","Comamonas testosteroni S44"]]},{"id":"NCBITaxon:564421","l":"Pseudomonas fluorescens NZ052","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A564421","Pseudomonas fluorescens NZ052"]]},{"id":"NCBITaxon:564422","l":"Pseudomonas fluorescens NZI7","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A564422","Pseudomonas fluorescens NZI7"]]},{"id":"NCBITaxon:565645","l":"Enterococcus faecalis Merz96","na":1,"nb":1,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["NCBITaxon%3A565645","Enterococcus faecalis Merz96"]]},{"id":"NCBITaxon:568099","l":"Litorimonas taeanensis","na":1,"nb":1,"a":[["beach-envo-00000091.html","beach"]],"b":[["NCBITaxon%3A568099","Litorimonas taeanensis"]]},{"id":"NCBITaxon:569857","l":"Staphylococcus microti","na":1,"nb":1,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A569857","Staphylococcus microti"]]},{"id":"NCBITaxon:569860","l":"Methylovirgula ligni","na":1,"nb":1,"a":[["wood-envo-00002040.html","wood"]],"b":[["NCBITaxon%3A569860","Methylovirgula ligni"]]},{"id":"NCBITaxon:57001","l":"Amaricoccus macauensis","na":1,"nb":1,"a":[["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"]],"b":[["NCBITaxon%3A57001","Amaricoccus macauensis"]]},{"id":"NCBITaxon:570936","l":"Pseudonocardia parietis","na":1,"nb":1,"a":[["fungi-associated-environment-envo-01001041.html","fungi-associated environment"]],"b":[["NCBITaxon%3A570936","Pseudonocardia parietis"]]},{"id":"NCBITaxon:571190","l":"Saccharothrix saharensis","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A571190","Saccharothrix saharensis"]]},{"id":"NCBITaxon:571256","l":"Brucella pituitosa","na":1,"nb":1,"a":[["seedling-bto-0001228.html","seedling"]],"b":[["NCBITaxon%3A571256","Brucella pituitosa"]]},{"id":"NCBITaxon:571298","l":"Aliiruegeria lutimaris","na":1,"nb":1,"a":[["sandstone-envo-00002055.html","sandstone"]],"b":[["NCBITaxon%3A571298","Aliiruegeria lutimaris"]]},{"id":"NCBITaxon:573737","l":"Pandoraea oxalativorans","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A573737","Pandoraea oxalativorans"]]},{"id":"NCBITaxon:574375","l":"Bacillus gaemokensis","na":1,"nb":1,"a":[["bl-3-cell-bto-0004404.html","BL-3 cell"]],"b":[["NCBITaxon%3A574375","Bacillus gaemokensis"]]},{"id":"NCBITaxon:574699","l":"Laceyella tengchongensis","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A574699","Laceyella tengchongensis"]]},{"id":"NCBITaxon:575599","l":"Limosilactobacillus fermentum 28-3-CHN","na":1,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["NCBITaxon%3A575599","Limosilactobacillus fermentum 28-3-CHN"]]},{"id":"NCBITaxon:575611","l":"Segatella buccae D17","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A575611","Segatella buccae D17"]]},{"id":"NCBITaxon:575612","l":"Prevotella melaninogenica D18","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A575612","Prevotella melaninogenica D18"]]},{"id":"NCBITaxon:575614","l":"Prevotella sp. oral taxon 299 str. F0039","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A575614","Prevotella sp. oral taxon 299 str. F0039"]]},{"id":"NCBITaxon:576","l":"Klebsiella sp.","na":1,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"]],"b":[["NCBITaxon%3A576","Klebsiella sp."]]},{"id":"NCBITaxon:578460","l":"Vairimorpha ceranae BRL01","na":1,"nb":1,"a":[["microsporidian-bto-0003132.html","microsporidian"]],"b":[["NCBITaxon%3A578460","Vairimorpha ceranae BRL01"]]},{"id":"NCBITaxon:578943","l":"Dongia mobilis","na":1,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A578943","Dongia mobilis"]]},{"id":"NCBITaxon:580050","l":"Bifidobacterium animalis subsp. lactis Bl-04","na":1,"nb":1,"a":[["intestinal-epithelium-bto-0000781.html","intestinal epithelium"]],"b":[["NCBITaxon%3A580050","Bifidobacterium animalis subsp. lactis Bl-04"]]},{"id":"NCBITaxon:582419","l":"Thermococcus paralvinellae","na":1,"nb":1,"a":[["chago-k-1-cell-bto-0003108.html","ChaGo-K-1 cell"]],"b":[["NCBITaxon%3A582419","Thermococcus paralvinellae"]]},{"id":"NCBITaxon:5866","l":"Babesia bigemina","na":1,"nb":1,"a":[["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["NCBITaxon%3A5866","Babesia bigemina"]]},{"id":"NCBITaxon:586733","l":"Staphylococcus devriesei","na":1,"nb":1,"a":[["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["NCBITaxon%3A586733","Staphylococcus devriesei"]]},{"id":"NCBITaxon:590061","l":"Halomonas sp. KM-1","na":1,"nb":1,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["NCBITaxon%3A590061","Halomonas sp. KM-1"]]},{"id":"NCBITaxon:591023","l":"Actinobacillus minor 202","na":1,"nb":1,"a":[["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["NCBITaxon%3A591023","Actinobacillus minor 202"]]},{"id":"NCBITaxon:591158","l":"Streptomyces sp. AA4","na":1,"nb":1,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["NCBITaxon%3A591158","Streptomyces sp. AA4"]]},{"id":"NCBITaxon:59277","l":"Methanobacterium subterraneum","na":1,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A59277","Methanobacterium subterraneum"]]},{"id":"NCBITaxon:593135","l":"Orbus hercynius","na":1,"nb":1,"a":[["zoological-garden-envo-00010625.html","zoological garden"]],"b":[["NCBITaxon%3A593135","Orbus hercynius"]]},{"id":"NCBITaxon:59406","l":"Aromatoleum evansii","na":1,"nb":1,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A59406","Aromatoleum evansii"]]},{"id":"NCBITaxon:595416","l":"Rhodopirellula sp. CS15","na":1,"nb":1,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A595416","Rhodopirellula sp. CS15"]]},{"id":"NCBITaxon:595537","l":"Variovorax paradoxus EPS","na":1,"nb":1,"a":[["environmental-material-envo-00010483.html","environmental material"]],"b":[["NCBITaxon%3A595537","Variovorax paradoxus EPS"]]},{"id":"NCBITaxon:59561","l":"Trueperella bernardiae","na":1,"nb":1,"a":[["foot-bto-0000476.html","foot"]],"b":[["NCBITaxon%3A59561","Trueperella bernardiae"]]},{"id":"NCBITaxon:596320","l":"Neisseria flavescens SK114","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A596320","Neisseria flavescens SK114"]]},{"id":"NCBITaxon:596322","l":"Streptococcus salivarius SK126","na":1,"nb":1,"a":[["terrestrial-biome-envo-00000446.html","terrestrial biome"]],"b":[["NCBITaxon%3A596322","Streptococcus salivarius SK126"]]},{"id":"NCBITaxon:596330","l":"Peptoniphilus lacrimalis 315-B","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A596330","Peptoniphilus lacrimalis 315-B"]]},{"id":"NCBITaxon:598553","l":"Clostridium sp. enrichment culture clone 7-25","na":1,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["NCBITaxon%3A598553","Clostridium sp. enrichment culture clone 7-25"]]},{"id":"NCBITaxon:59920","l":"Prochlorococcus marinus str. NATL2A","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A59920","Prochlorococcus marinus str. NATL2A"]]},{"id":"NCBITaxon:604330","l":"Parafannyhessea umbonata","na":1,"nb":1,"a":[["rumen-fluid-habitatmech-bacdive-25af5eede6.html","Rumen-fluid"]],"b":[["NCBITaxon%3A604330","Parafannyhessea umbonata"]]},{"id":"NCBITaxon:60480","l":"Shewanella sp. MR-4","na":1,"nb":1,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["NCBITaxon%3A60480","Shewanella sp. MR-4"]]},{"id":"NCBITaxon:61169","l":"Alicyclobacillus sp.","na":1,"nb":1,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["NCBITaxon%3A61169","Alicyclobacillus sp."]]},{"id":"NCBITaxon:614648","l":"Ureibacillus xyleni","na":1,"nb":1,"a":[["defined-media-habitatmech-bacdive-a2edc55556.html","Defined-media"]],"b":[["NCBITaxon%3A614648","Ureibacillus xyleni"]]},{"id":"NCBITaxon:617000","l":"Desulfonatronovibrio thiodismutans","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A617000","Desulfonatronovibrio thiodismutans"]]},{"id":"NCBITaxon:617001","l":"Desulfonatronum thioautotrophicum","na":1,"nb":1,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["NCBITaxon%3A617001","Desulfonatronum thioautotrophicum"]]},{"id":"NCBITaxon:619693","l":"Prevotella sp. oral taxon 472 str. F0295","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A619693","Prevotella sp. oral taxon 472 str. F0295"]]},{"id":"NCBITaxon:622617","l":"Burkholderia sp. JS667","na":1,"nb":1,"a":[["waste-treatment-plant-envo-00002272.html","waste treatment plant"]],"b":[["NCBITaxon%3A622617","Burkholderia sp. JS667"]]},{"id":"NCBITaxon:634436","l":"Marisediminitalea aggregata","na":1,"nb":1,"a":[["mangrove-biome-envo-01000181.html","mangrove biome"]],"b":[["NCBITaxon%3A634436","Marisediminitalea aggregata"]]},{"id":"NCBITaxon:634500","l":"Erwinia billingiae Eb661","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A634500","Erwinia billingiae Eb661"]]},{"id":"NCBITaxon:634504","l":"Bartonella grahamii as4aup","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A634504","Bartonella grahamii as4aup"]]},{"id":"NCBITaxon:634956","l":"Parageobacillus thermoglucosidasius C56-YS93","na":1,"nb":1,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A634956","Parageobacillus thermoglucosidasius C56-YS93"]]},{"id":"NCBITaxon:637386","l":"Yersinia pestis Z176003","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A637386","Yersinia pestis Z176003"]]},{"id":"NCBITaxon:637910","l":"Citrobacter rodentium ICC168","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A637910","Citrobacter rodentium ICC168"]]},{"id":"NCBITaxon:640131","l":"Klebsiella variicola At-22","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A640131","Klebsiella variicola At-22"]]},{"id":"NCBITaxon:640938","l":"Trichococcus ilyis","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A640938","Trichococcus ilyis"]]},{"id":"NCBITaxon:641491","l":"Pseudodesulfovibrio mercurii","na":1,"nb":1,"a":[["soil-envo-00001998.html","soil"]],"b":[["NCBITaxon%3A641491","Pseudodesulfovibrio mercurii"]]},{"id":"NCBITaxon:643568","l":"Sphingomonas xinjiangensis","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A643568","Sphingomonas xinjiangensis"]]},{"id":"NCBITaxon:643672","l":"Singulisphaera rosea","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A643672","Singulisphaera rosea"]]},{"id":"NCBITaxon:643673","l":"Paenochrobactrum gallinarii","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A643673","Paenochrobactrum gallinarii"]]},{"id":"NCBITaxon:645465","l":"Streptomyces sp. e14","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A645465","Streptomyces sp. e14"]]},{"id":"NCBITaxon:645472","l":"Halomonas sp. HTNK1","na":1,"nb":1,"a":[["hypersaline-water-envo-00002012.html","hypersaline water"]],"b":[["NCBITaxon%3A645472","Halomonas sp. HTNK1"]]},{"id":"NCBITaxon:645887","l":"Alkalibaculum bacchi","na":1,"nb":1,"a":[["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["NCBITaxon%3A645887","Alkalibaculum bacchi"]]},{"id":"NCBITaxon:648999","l":"Micromonospora sp. L5","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A648999","Micromonospora sp. L5"]]},{"id":"NCBITaxon:649007","l":"Dactylosporangium luteum","na":1,"nb":1,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A649007","Dactylosporangium luteum"]]},{"id":"NCBITaxon:649008","l":"Dactylosporangium luridum","na":1,"nb":1,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A649008","Dactylosporangium luridum"]]},{"id":"NCBITaxon:649760","l":"Segatella oris F0302","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A649760","Segatella oris F0302"]]},{"id":"NCBITaxon:649761","l":"Prevotella veroralis F0319","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A649761","Prevotella veroralis F0319"]]},{"id":"NCBITaxon:651661","l":"Dyadobacter psychrophilus","na":1,"nb":1,"a":[["contaminated-soil-envo-00002116.html","contaminated soil"]],"b":[["NCBITaxon%3A651661","Dyadobacter psychrophilus"]]},{"id":"NCBITaxon:651822","l":"Fretibacterium fastidiosum","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A651822","Fretibacterium fastidiosum"]]},{"id":"NCBITaxon:652103","l":"Rhodopseudomonas palustris DX-1","na":1,"nb":1,"a":[["surface-soil-envo-02000059.html","surface soil"]],"b":[["NCBITaxon%3A652103","Rhodopseudomonas palustris DX-1"]]},{"id":"NCBITaxon:652788","l":"Mucilaginibacter frigoritolerans","na":1,"nb":1,"a":[["area-designated-as-a-nature-reserve-envo-00000363.html","area designated as a nature reserve"]],"b":[["NCBITaxon%3A652788","Mucilaginibacter frigoritolerans"]]},{"id":"NCBITaxon:653045","l":"Streptomyces violaceusniger Tu 4113","na":1,"nb":1,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A653045","Streptomyces violaceusniger Tu 4113"]]},{"id":"NCBITaxon:653940","l":"Basfia succiniciproducens","na":1,"nb":1,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"]],"b":[["NCBITaxon%3A653940","Basfia succiniciproducens"]]},{"id":"NCBITaxon:657014","l":"Thalassovita taeanensis","na":1,"nb":1,"a":[["beach-envo-00000091.html","beach"]],"b":[["NCBITaxon%3A657014","Thalassovita taeanensis"]]},{"id":"NCBITaxon:657319","l":"[Eubacterium] siraeum 70/3","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A657319","[Eubacterium] siraeum 70/3"]]},{"id":"NCBITaxon:657321","l":"Ruminococcus bromii L2-63","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A657321","Ruminococcus bromii L2-63"]]},{"id":"NCBITaxon:658172","l":"Candidatus Liberibacter solanacearum CLso-ZC1","na":1,"nb":1,"a":[["agricultural-soil-envo-00002259.html","agricultural soil"]],"b":[["NCBITaxon%3A658172","Candidatus Liberibacter solanacearum CLso-ZC1"]]},{"id":"NCBITaxon:663321","l":"Candidatus Regiella insecticola LSR1","na":1,"nb":1,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["NCBITaxon%3A663321","Candidatus Regiella insecticola LSR1"]]},{"id":"NCBITaxon:663386","l":"Pseudonocardia babensis","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A663386","Pseudonocardia babensis"]]},{"id":"NCBITaxon:663602","l":"Actinomycetospora corticicola","na":1,"nb":1,"a":[["wood-envo-00002040.html","wood"]],"b":[["NCBITaxon%3A663602","Actinomycetospora corticicola"]]},{"id":"NCBITaxon:663607","l":"Actinomycetospora straminea","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A663607","Actinomycetospora straminea"]]},{"id":"NCBITaxon:663609","l":"Actinomycetospora cinnamomea","na":1,"nb":1,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"]],"b":[["NCBITaxon%3A663609","Actinomycetospora cinnamomea"]]},{"id":"NCBITaxon:663917","l":"Geobacter sulfurreducens KN400","na":1,"nb":1,"a":[["stream-sediment-envo-00002127.html","stream sediment"]],"b":[["NCBITaxon%3A663917","Geobacter sulfurreducens KN400"]]},{"id":"NCBITaxon:665118","l":"Devosia enhydra","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["NCBITaxon%3A665118","Devosia enhydra"]]},{"id":"NCBITaxon:665131","l":"Prosthecomicrobium sp. ATCC 27835","na":1,"nb":1,"a":[["factory-envo-01000536.html","factory"]],"b":[["NCBITaxon%3A665131","Prosthecomicrobium sp. ATCC 27835"]]},{"id":"NCBITaxon:665467","l":"Bauldia litoralis","na":1,"nb":1,"a":[["sound-envo-00000393.html","sound"]],"b":[["NCBITaxon%3A665467","Bauldia litoralis"]]},{"id":"NCBITaxon:668820","l":"Burkholderia sp. JPY366","na":1,"nb":1,"a":[["bayou-envo-00000234.html","bayou"]],"b":[["NCBITaxon%3A668820","Burkholderia sp. JPY366"]]},{"id":"NCBITaxon:669365","l":"Microcoleus vaginatus PCC 9802","na":1,"nb":1,"a":[["desert-area-envo-00000097.html","desert area"]],"b":[["NCBITaxon%3A669365","Microcoleus vaginatus PCC 9802"]]},{"id":"NCBITaxon:670481","l":"Nocardioides sp. SG-4G","na":1,"nb":1,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A670481","Nocardioides sp. SG-4G"]]},{"id":"NCBITaxon:670484","l":"Citrobacter freundii str. ballerup 7851/39","na":1,"nb":1,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["NCBITaxon%3A670484","Citrobacter freundii str. ballerup 7851/39"]]},{"id":"NCBITaxon:670890","l":"Escherichia coli LT-68","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A670890","Escherichia coli LT-68"]]},{"id":"NCBITaxon:670895","l":"Escherichia coli EPEC11","na":1,"nb":1,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["NCBITaxon%3A670895","Escherichia coli EPEC11"]]},{"id":"NCBITaxon:670899","l":"Escherichia coli RN587/1","na":1,"nb":1,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["NCBITaxon%3A670899","Escherichia coli RN587/1"]]},{"id":"NCBITaxon:674977","l":"Vibrio alginolyticus 40B","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A674977","Vibrio alginolyticus 40B"]]},{"id":"NCBITaxon:675518","l":"Mycobacterium tuberculosis SUMu007","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A675518","Mycobacterium tuberculosis SUMu007"]]},{"id":"NCBITaxon:675864","l":"Auraticoccus monumenti","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A675864","Auraticoccus monumenti"]]},{"id":"NCBITaxon:67855","l":"Muribacter muris","na":1,"nb":1,"a":[["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"]],"b":[["NCBITaxon%3A67855","Muribacter muris"]]},{"id":"NCBITaxon:679191","l":"Prevotella amnii CRIS 21A-A","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A679191","Prevotella amnii CRIS 21A-A"]]},{"id":"NCBITaxon:680198","l":"Streptomyces scabiei 87.22","na":1,"nb":1,"a":[["farm-soil-envo-00005749.html","farm soil"]],"b":[["NCBITaxon%3A680198","Streptomyces scabiei 87.22"]]},{"id":"NCBITaxon:680375","l":"Desulfonatronum alkalitolerans","na":1,"nb":1,"a":[["waste-gas-habitatmech-bacdive-3eec8fcfc4.html","waste gas"]],"b":[["NCBITaxon%3A680375","Desulfonatronum alkalitolerans"]]},{"id":"NCBITaxon:681339","l":"Halothiobacillus sp. HL2","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A681339","Halothiobacillus sp. HL2"]]},{"id":"NCBITaxon:681573","l":"Streptococcus equi subsp. zooepidemicus BHS5","na":1,"nb":1,"a":[["peripheral-blood-mononuclear-cell-bto-0001025.html","peripheral blood mononuclear cell"]],"b":[["NCBITaxon%3A681573","Streptococcus equi subsp. zooepidemicus BHS5"]]},{"id":"NCBITaxon:68170","l":"Lentzea aerocolonigenes","na":1,"nb":1,"a":[["skeletal-system-bto-0001486.html","skeletal system"]],"b":[["NCBITaxon%3A68170","Lentzea aerocolonigenes"]]},{"id":"NCBITaxon:682979","l":"Microlunatus parietis","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A682979","Microlunatus parietis"]]},{"id":"NCBITaxon:68570","l":"","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A1971","Streptomyces noursei"]]},{"id":"NCBITaxon:68766","l":"Fusobacterium sp.","na":1,"nb":1,"a":[["dental-plaque-uberon-0016482.html","dental plaque"]],"b":[["NCBITaxon%3A68766","Fusobacterium sp."]]},{"id":"NCBITaxon:68825","l":"Rasamsonia emersonii","na":1,"nb":1,"a":[["mountain-pass-envo-00000084.html","mountain pass"]],"b":[["NCBITaxon%3A68825","Rasamsonia emersonii"]]},{"id":"NCBITaxon:688867","l":"Ohtaekwangia koreensis","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A688867","Ohtaekwangia koreensis"]]},{"id":"NCBITaxon:688913","l":"Ohtaekwangia kribbensis","na":1,"nb":1,"a":[["sand-envo-01000017.html","sand"]],"b":[["NCBITaxon%3A688913","Ohtaekwangia kribbensis"]]},{"id":"NCBITaxon:69208","l":"Clostridium polyendosporum","na":1,"nb":1,"a":[["meadow-ecosystem-envo-00000108.html","meadow ecosystem"]],"b":[["NCBITaxon%3A69208","Clostridium polyendosporum"]]},{"id":"NCBITaxon:69221","l":"Pectobacterium cacticida","na":1,"nb":1,"a":[["xerophytic-habitatmech-bacdive-3abed720b8.html","Xerophytic"]],"b":[["NCBITaxon%3A69221","Pectobacterium cacticida"]]},{"id":"NCBITaxon:69328","l":"Pseudomonas sp. VLB120","na":1,"nb":1,"a":[["g-cell-bto-0004108.html","G cell"]],"b":[["NCBITaxon%3A69328","Pseudomonas sp. VLB120"]]},{"id":"NCBITaxon:69370","l":"Microbacterium trichothecenolyticum","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A69370","Microbacterium trichothecenolyticum"]]},{"id":"NCBITaxon:69392","l":"Stenotrophomonas sp.","na":1,"nb":1,"a":[["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"]],"b":[["NCBITaxon%3A69392","Stenotrophomonas sp."]]},{"id":"NCBITaxon:69485","l":"Actinoplanes garbadinensis","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A69485","Actinoplanes garbadinensis"]]},{"id":"NCBITaxon:695560","l":"Lactobacillus amylovorus GRL 1112","na":1,"nb":1,"a":[["urban-biome-envo-01000249.html","urban biome"]],"b":[["NCBITaxon%3A695560","Lactobacillus amylovorus GRL 1112"]]},{"id":"NCBITaxon:696125","l":"Bartonella clarridgeiae 73","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A696125","Bartonella clarridgeiae 73"]]},{"id":"NCBITaxon:696216","l":"Streptococcus constellatus subsp. pharyngis C232","na":1,"nb":1,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A696216","Streptococcus constellatus subsp. pharyngis C232"]]},{"id":"NCBITaxon:69666","l":"Caulobacter mirabilis","na":1,"nb":1,"a":[["scolex-bto-0002305.html","scolex"]],"b":[["NCBITaxon%3A69666","Caulobacter mirabilis"]]},{"id":"NCBITaxon:69670","l":"Brevundimonas halotolerans","na":1,"nb":1,"a":[["brackish-water-body-envo-01001321.html","brackish water body"]],"b":[["NCBITaxon%3A69670","Brevundimonas halotolerans"]]},{"id":"NCBITaxon:69773","l":"Penicillium glabrum","na":1,"nb":1,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["NCBITaxon%3A69773","Penicillium glabrum"]]},{"id":"NCBITaxon:69960","l":"Rhodospira trueperi","na":1,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"]],"b":[["NCBITaxon%3A69960","Rhodospira trueperi"]]},{"id":"NCBITaxon:700500","l":"Catenisphaera adipataccumulans","na":1,"nb":1,"a":[["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"]],"b":[["NCBITaxon%3A700500","Catenisphaera adipataccumulans"]]},{"id":"NCBITaxon:702452","l":"Listeria seeligeri FSL S4-171","na":1,"nb":1,"a":[["village-biome-envo-01000246.html","village biome"]],"b":[["NCBITaxon%3A702452","Listeria seeligeri FSL S4-171"]]},{"id":"NCBITaxon:702459","l":"Bifidobacterium bifidum PRL2010","na":1,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["NCBITaxon%3A702459","Bifidobacterium bifidum PRL2010"]]},{"id":"NCBITaxon:702568","l":"Litoribacter ruber","na":1,"nb":1,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A702568","Litoribacter ruber"]]},{"id":"NCBITaxon:703577","l":"Dactylosporangium aurantiacum subsp. hamdenensis","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A703577","Dactylosporangium aurantiacum subsp. hamdenensis"]]},{"id":"NCBITaxon:704201","l":"Nesterenkonia sp.","na":1,"nb":1,"a":[["painting-habitatmech-bacdive-0bfb662164.html","Painting"]],"b":[["NCBITaxon%3A704201","Nesterenkonia sp."]]},{"id":"NCBITaxon:70586","l":"Aquabacterium commune","na":1,"nb":1,"a":[["drinking-water-envo-00003064.html","drinking water"]],"b":[["NCBITaxon%3A70586","Aquabacterium commune"]]},{"id":"NCBITaxon:706422","l":"Streptomyces sp. x4(2010)","na":1,"nb":1,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A706422","Streptomyces sp. x4(2010)"]]},{"id":"NCBITaxon:706433","l":"Solobacterium moorei F0204","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A706433","Solobacterium moorei F0204"]]},{"id":"NCBITaxon:708248","l":"Mycoplasma suis KI3806","na":1,"nb":1,"a":[["erythrocyte-bto-0000424.html","erythrocyte"]],"b":[["NCBITaxon%3A708248","Mycoplasma suis KI3806"]]},{"id":"NCBITaxon:70856","l":"Aeromonas popoffii","na":1,"nb":1,"a":[["factory-envo-01000536.html","factory"]],"b":[["NCBITaxon%3A70856","Aeromonas popoffii"]]},{"id":"NCBITaxon:710421","l":"Mycolicibacterium chubuense NBB4","na":1,"nb":1,"a":[["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"]],"b":[["NCBITaxon%3A710421","Mycolicibacterium chubuense NBB4"]]},{"id":"NCBITaxon:710687","l":"Mycolicibacterium tusciae JS617","na":1,"nb":1,"a":[["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"]],"b":[["NCBITaxon%3A710687","Mycolicibacterium tusciae JS617"]]},{"id":"NCBITaxon:710992","l":"uncultured Sphingobacterium sp. EB080_L08E11","na":1,"nb":1,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"]],"b":[["NCBITaxon%3A710992","uncultured Sphingobacterium sp. EB080_L08E11"]]},{"id":"NCBITaxon:712898","l":"Pantoea vagans C9-1","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A712898","Pantoea vagans C9-1"]]},{"id":"NCBITaxon:714166","l":"Streptomyces endophyticus","na":1,"nb":1,"a":[["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["NCBITaxon%3A714166","Streptomyces endophyticus"]]},{"id":"NCBITaxon:71421","l":"Haemophilus influenzae Rd KW20","na":1,"nb":1,"a":[["respiratory-mucosa-bto-0000973.html","respiratory mucosa"]],"b":[["NCBITaxon%3A71421","Haemophilus influenzae Rd KW20"]]},{"id":"NCBITaxon:716659","l":"Collimonas sp. MPS11E8","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A716659","Collimonas sp. MPS11E8"]]},{"id":"NCBITaxon:717522","l":"Mycobacterium tuberculosis variant bovis BCG str. Mexico","na":1,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A717522","Mycobacterium tuberculosis variant bovis BCG str. Mexico"]]},{"id":"NCBITaxon:718254","l":"Enterobacter cloacae subsp. cloacae NCTC 9394","na":1,"nb":1,"a":[["tropical-grassland-biome-envo-01000192.html","tropical grassland biome"]],"b":[["NCBITaxon%3A718254","Enterobacter cloacae subsp. cloacae NCTC 9394"]]},{"id":"NCBITaxon:720633","l":"Lysinibacillus composti","na":1,"nb":1,"a":[["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"]],"b":[["NCBITaxon%3A720633","Lysinibacillus composti"]]},{"id":"NCBITaxon:722","l":"Actinobacillus seminis","na":1,"nb":1,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"]],"b":[["NCBITaxon%3A722","Actinobacillus seminis"]]},{"id":"NCBITaxon:722413","l":"Bradyrhizobium sp. JS329","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A722413","Bradyrhizobium sp. JS329"]]},{"id":"NCBITaxon:722911","l":"Bifidobacterium longum subsp. longum F8","na":1,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["NCBITaxon%3A722911","Bifidobacterium longum subsp. longum F8"]]},{"id":"NCBITaxon:728004","l":"Glaciimonas immobilis","na":1,"nb":1,"a":[["glacier-envo-00000133.html","glacier"]],"b":[["NCBITaxon%3A728004","Glaciimonas immobilis"]]},{"id":"NCBITaxon:732241","l":"Neomicrococcus lactis","na":1,"nb":1,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["NCBITaxon%3A732241","Neomicrococcus lactis"]]},{"id":"NCBITaxon:735332","l":"Leptothrix ochracea L12","na":1,"nb":1,"a":[["seep-envo-01000262.html","seep"]],"b":[["NCBITaxon%3A735332","Leptothrix ochracea L12"]]},{"id":"NCBITaxon:741093","l":"Escherichia coli Xuzhou21","na":1,"nb":1,"a":[["peripheral-blood-mononuclear-cell-bto-0001025.html","peripheral blood mononuclear cell"]],"b":[["NCBITaxon%3A741093","Escherichia coli Xuzhou21"]]},{"id":"NCBITaxon:742013","l":"Delftia sp. Cs1-4","na":1,"nb":1,"a":[["waterfall-envo-00000040.html","waterfall"]],"b":[["NCBITaxon%3A742013","Delftia sp. Cs1-4"]]},{"id":"NCBITaxon:742741","l":"[Clostridium] symbiosum WAL-14673","na":1,"nb":1,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["NCBITaxon%3A742741","[Clostridium] symbiosum WAL-14673"]]},{"id":"NCBITaxon:743720","l":"Pseudomonas fulva 12-X","na":1,"nb":1,"a":[["agricultural-field-envo-00000114.html","agricultural field"]],"b":[["NCBITaxon%3A743720","Pseudomonas fulva 12-X"]]},{"id":"NCBITaxon:743721","l":"Pseudoxanthomonas suwonensis 11-1","na":1,"nb":1,"a":[["compost-envo-00002170.html","compost"]],"b":[["NCBITaxon%3A743721","Pseudoxanthomonas suwonensis 11-1"]]},{"id":"NCBITaxon:744980","l":"Roseibium sp. TrichSKD4","na":1,"nb":1,"a":[["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["NCBITaxon%3A744980","Roseibium sp. TrichSKD4"]]},{"id":"NCBITaxon:74546","l":"Prochlorococcus marinus str. MIT 9312","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A74546","Prochlorococcus marinus str. MIT 9312"]]},{"id":"NCBITaxon:74547","l":"Prochlorococcus marinus str. MIT 9313","na":1,"nb":1,"a":[["marine-photic-zone-envo-00000209.html","marine photic zone"]],"b":[["NCBITaxon%3A74547","Prochlorococcus marinus str. MIT 9313"]]},{"id":"NCBITaxon:748224","l":"Faecalibacterium cf. prausnitzii KLE1255","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A748224","Faecalibacterium cf. prausnitzii KLE1255"]]},{"id":"NCBITaxon:748671","l":"Lactobacillus crispatus ST1","na":1,"nb":1,"a":[["poultry-litter-envo-00002192.html","poultry litter"]],"b":[["NCBITaxon%3A748671","Lactobacillus crispatus ST1"]]},{"id":"NCBITaxon:749414","l":"Streptomyces bingchenggensis BCW-1","na":1,"nb":1,"a":[["woodland-area-envo-00000109.html","woodland area"]],"b":[["NCBITaxon%3A749414","Streptomyces bingchenggensis BCW-1"]]},{"id":"NCBITaxon:74969","l":"Ferroplasma acidiphilum","na":1,"nb":1,"a":[["factory-envo-01000536.html","factory"]],"b":[["NCBITaxon%3A74969","Ferroplasma acidiphilum"]]},{"id":"NCBITaxon:749927","l":"Amycolatopsis mediterranei U32","na":1,"nb":1,"a":[["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["NCBITaxon%3A749927","Amycolatopsis mediterranei U32"]]},{"id":"NCBITaxon:754088","l":"Escherichia coli STEC_H.I.8","na":1,"nb":1,"a":[["enterocyte-bto-0000398.html","enterocyte"]],"b":[["NCBITaxon%3A754088","Escherichia coli STEC_H.I.8"]]},{"id":"NCBITaxon:754476","l":"Methylophaga nitratireducenticrescens","na":1,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A754476","Methylophaga nitratireducenticrescens"]]},{"id":"NCBITaxon:754477","l":"Methylophaga frappieri","na":1,"nb":1,"a":[["machines-and-devices-habitatmech-bacdive-1dbb2b0c6f.html","Machines-and-devices"]],"b":[["NCBITaxon%3A754477","Methylophaga frappieri"]]},{"id":"NCBITaxon:754762","l":"Rhizobium leguminosarum bv. trifolii WSM2297","na":1,"nb":1,"a":[["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A754762","Rhizobium leguminosarum bv. trifolii WSM2297"]]},{"id":"NCBITaxon:755731","l":"Clostridium sp. BNL1100","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A755731","Clostridium sp. BNL1100"]]},{"id":"NCBITaxon:757424","l":"Herbaspirillum seropedicae SmR1","na":1,"nb":1,"a":[["environmental-material-envo-00010483.html","environmental material"]],"b":[["NCBITaxon%3A757424","Herbaspirillum seropedicae SmR1"]]},{"id":"NCBITaxon:758793","l":"Caballeronia insecticola","na":1,"nb":1,"a":[["blast-cell-bto-0000125.html","blast cell"]],"b":[["NCBITaxon%3A758793","Caballeronia insecticola"]]},{"id":"NCBITaxon:758831","l":"Escherichia coli ECC-1470","na":1,"nb":1,"a":[["mammary-epithelial-cell-bto-0004300.html","mammary epithelial cell"]],"b":[["NCBITaxon%3A758831","Escherichia coli ECC-1470"]]},{"id":"NCBITaxon:761659","l":"Salinibacter ruber M8","na":1,"nb":1,"a":[["coastal-water-body-envo-02000049.html","coastal water body"]],"b":[["NCBITaxon%3A761659","Salinibacter ruber M8"]]},{"id":"NCBITaxon:763993","l":"Pseudokineococcus lusitanus","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A763993","Pseudokineococcus lusitanus"]]},{"id":"NCBITaxon:765067","l":"Cutibacterium acnes HL053PA2","na":1,"nb":1,"a":[["petroleum-envo-00002984.html","petroleum"]],"b":[["NCBITaxon%3A765067","Cutibacterium acnes HL053PA2"]]},{"id":"NCBITaxon:765109","l":"Cutibacterium modestum HL044PA1","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A765109","Cutibacterium modestum HL044PA1"]]},{"id":"NCBITaxon:765118","l":"Cutibacterium acnes HL007PA1","na":1,"nb":1,"a":[["research-facility-envo-00000469.html","research facility"]],"b":[["NCBITaxon%3A765118","Cutibacterium acnes HL007PA1"]]},{"id":"NCBITaxon:767452","l":"Serinicoccus chungangensis","na":1,"nb":1,"a":[["duodenal-mucosa-bto-0000367.html","duodenal mucosa"]],"b":[["NCBITaxon%3A767452","Serinicoccus chungangensis"]]},{"id":"NCBITaxon:767465","l":"Mycoplasmopsis bovis HB0801","na":1,"nb":1,"a":[["lymph-node-bto-0000784.html","lymph node"]],"b":[["NCBITaxon%3A767465","Mycoplasmopsis bovis HB0801"]]},{"id":"NCBITaxon:76775","l":"Malassezia restricta","na":1,"nb":1,"a":[["mediterranean-sea-biome-envo-01000047.html","mediterranean sea biome"]],"b":[["NCBITaxon%3A76775","Malassezia restricta"]]},{"id":"NCBITaxon:768534","l":"Sphingobacterium thermophilum","na":1,"nb":1,"a":[["domestic-waste-habitatmech-bacdive-66ce48b936.html","Domestic-waste"]],"b":[["NCBITaxon%3A768534","Sphingobacterium thermophilum"]]},{"id":"NCBITaxon:768535","l":"Acidipila rosea","na":1,"nb":1,"a":[["acid-mine-drainage-envo-00001997.html","acid mine drainage"]],"b":[["NCBITaxon%3A768535","Acidipila rosea"]]},{"id":"NCBITaxon:77152","l":"Moraxella sp. TA144","na":1,"nb":1,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["NCBITaxon%3A77152","Moraxella sp. TA144"]]},{"id":"NCBITaxon:77524","l":"Colwellia maris","na":1,"nb":1,"a":[["fumarole-envo-00000216.html","fumarole"]],"b":[["NCBITaxon%3A77524","Colwellia maris"]]},{"id":"NCBITaxon:77917","l":"Fusobacterium naviforme","na":1,"nb":1,"a":[["hospital-envo-00002173.html","hospital"]],"b":[["NCBITaxon%3A77917","Fusobacterium naviforme"]]},{"id":"NCBITaxon:78","l":"Caulobacter sp.","na":1,"nb":1,"a":[["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"]],"b":[["NCBITaxon%3A78","Caulobacter sp."]]},{"id":"NCBITaxon:78229","l":"Paracidovorax anthurii","na":1,"nb":1,"a":[["leaf-po-0025034.html","leaf"]],"b":[["NCBITaxon%3A78229","Paracidovorax anthurii"]]},{"id":"NCBITaxon:78350","l":"Pelotomaculum schinkii","na":1,"nb":1,"a":[["solid-plant-waste-habitatmech-bacdive-8086ba1250.html","Solid-plant-waste"]],"b":[["NCBITaxon%3A78350","Pelotomaculum schinkii"]]},{"id":"NCBITaxon:795725","l":"Vibrio sp. VT2(2010)","na":1,"nb":1,"a":[["fumarole-envo-00000216.html","fumarole"]],"b":[["NCBITaxon%3A795725","Vibrio sp. VT2(2010)"]]},{"id":"NCBITaxon:795728","l":"Vibrio sp. VT5(2010)","na":1,"nb":1,"a":[["fumarole-envo-00000216.html","fumarole"]],"b":[["NCBITaxon%3A795728","Vibrio sp. VT5(2010)"]]},{"id":"NCBITaxon:796334","l":"Erwinia oleae","na":1,"nb":1,"a":[["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["NCBITaxon%3A796334","Erwinia oleae"]]},{"id":"NCBITaxon:796891","l":"Rhizobium mesoamericanum STM6155","na":1,"nb":1,"a":[["massif-envo-00000381.html","massif"]],"b":[["NCBITaxon%3A796891","Rhizobium mesoamericanum STM6155"]]},{"id":"NCBITaxon:796937","l":"Peptoanaerobacter stomatis","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["NCBITaxon%3A796937","Peptoanaerobacter stomatis"]]},{"id":"NCBITaxon:797292","l":"Sphingobacterium alimentarium","na":1,"nb":1,"a":[["dairy-envo-00003862.html","dairy"]],"b":[["NCBITaxon%3A797292","Sphingobacterium alimentarium"]]},{"id":"NCBITaxon:798300","l":"Streptococcus pyogenes MGAS15252","na":1,"nb":1,"a":[["oropharynx-bto-0005257.html","oropharynx"]],"b":[["NCBITaxon%3A798300","Streptococcus pyogenes MGAS15252"]]},{"id":"NCBITaxon:81569","l":"Ruegeria atlantica","na":1,"nb":1,"a":[["sandstone-envo-00002055.html","sandstone"]],"b":[["NCBITaxon%3A81569","Ruegeria atlantica"]]},{"id":"NCBITaxon:82","l":"Hyphomicrobium sp.","na":1,"nb":1,"a":[["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["NCBITaxon%3A82","Hyphomicrobium sp."]]},{"id":"NCBITaxon:83263","l":"Aminobacter aminovorans","na":1,"nb":1,"a":[["waste-habitatmech-bacdive-36df85e4a4.html","Waste"]],"b":[["NCBITaxon%3A83263","Aminobacter aminovorans"]]},{"id":"NCBITaxon:83617","l":"Stenotrophomonas nitritireducens","na":1,"nb":1,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"]],"b":[["NCBITaxon%3A83617","Stenotrophomonas nitritireducens"]]},{"id":"NCBITaxon:83784","l":"Paraburkholderia sartisoli","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A83784","Paraburkholderia sartisoli"]]},{"id":"NCBITaxon:83983","l":"Methanobacterium uliginosum","na":1,"nb":1,"a":[["paddy-field-soil-envo-00005740.html","paddy field soil"]],"b":[["NCBITaxon%3A83983","Methanobacterium uliginosum"]]},{"id":"NCBITaxon:849756","l":"Mongoliitalea lutea","na":1,"nb":1,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A849756","Mongoliitalea lutea"]]},{"id":"NCBITaxon:85401","l":"Mannheimia glucosida","na":1,"nb":1,"a":[["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"]],"b":[["NCBITaxon%3A85401","Mannheimia glucosida"]]},{"id":"NCBITaxon:859143","l":"Cytobacillus kochii","na":1,"nb":1,"a":[["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["NCBITaxon%3A859143","Cytobacillus kochii"]]},{"id":"NCBITaxon:85993","l":"Hydrogenophilus hirschii","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A85993","Hydrogenophilus hirschii"]]},{"id":"NCBITaxon:86105","l":"Candidatus Jidaibacter acanthamoebae","na":1,"nb":1,"a":[["cornea-bto-0000286.html","cornea"]],"b":[["NCBITaxon%3A86105","Candidatus Jidaibacter acanthamoebae"]]},{"id":"NCBITaxon:861865","l":"Edaphosphingomonas laterariae","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A861865","Edaphosphingomonas laterariae"]]},{"id":"NCBITaxon:862966","l":"Streptococcus intermedius C270","na":1,"nb":1,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A862966","Streptococcus intermedius C270"]]},{"id":"NCBITaxon:862967","l":"Streptococcus intermedius B196","na":1,"nb":1,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A862967","Streptococcus intermedius B196"]]},{"id":"NCBITaxon:862968","l":"Streptococcus constellatus subsp. pharyngis C818","na":1,"nb":1,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A862968","Streptococcus constellatus subsp. pharyngis C818"]]},{"id":"NCBITaxon:862969","l":"Streptococcus constellatus subsp. pharyngis C1050","na":1,"nb":1,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A862969","Streptococcus constellatus subsp. pharyngis C1050"]]},{"id":"NCBITaxon:862970","l":"Streptococcus anginosus C1051","na":1,"nb":1,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A862970","Streptococcus anginosus C1051"]]},{"id":"NCBITaxon:862971","l":"Streptococcus anginosus C238","na":1,"nb":1,"a":[["urogenital-system-bto-0003091.html","urogenital system"]],"b":[["NCBITaxon%3A862971","Streptococcus anginosus C238"]]},{"id":"NCBITaxon:863522","l":"Bryocella elongata","na":1,"nb":1,"a":[["peat-soil-envo-00005774.html","peat soil"]],"b":[["NCBITaxon%3A863522","Bryocella elongata"]]},{"id":"NCBITaxon:864732","l":"Acetobacter musti","na":1,"nb":1,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["NCBITaxon%3A864732","Acetobacter musti"]]},{"id":"NCBITaxon:865","l":"Pectinatus frisingensis","na":1,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A865","Pectinatus frisingensis"]]},{"id":"NCBITaxon:86667","l":"Jeotgalibacillus marinus","na":1,"nb":1,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"]],"b":[["NCBITaxon%3A86667","Jeotgalibacillus marinus"]]},{"id":"NCBITaxon:86956","l":"Pectinatus cerevisiiphilus","na":1,"nb":1,"a":[["food-fermented-foodon-00001258.html","food (fermented)"]],"b":[["NCBITaxon%3A86956","Pectinatus cerevisiiphilus"]]},{"id":"NCBITaxon:86957","l":"Schleiferibacter lacticifex","na":1,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"]],"b":[["NCBITaxon%3A86957","Schleiferibacter lacticifex"]]},{"id":"NCBITaxon:86958","l":"Propionispira paucivorans","na":1,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"]],"b":[["NCBITaxon%3A86958","Propionispira paucivorans"]]},{"id":"NCBITaxon:869728","l":"Burkholderia thailandensis E555","na":1,"nb":1,"a":[["macrophage-bto-0000801.html","macrophage"]],"b":[["NCBITaxon%3A869728","Burkholderia thailandensis E555"]]},{"id":"NCBITaxon:873127","l":"Enterococcus faecium E4453","na":1,"nb":1,"a":[["rectum-bto-0001158.html","rectum"]],"b":[["NCBITaxon%3A873127","Enterococcus faecium E4453"]]},{"id":"NCBITaxon:876142","l":"Encephalitozoon intestinalis ATCC 50506","na":1,"nb":1,"a":[["microsporidian-bto-0003132.html","microsporidian"]],"b":[["NCBITaxon%3A876142","Encephalitozoon intestinalis ATCC 50506"]]},{"id":"NCBITaxon:877455","l":"Methanobacterium lacus","na":1,"nb":1,"a":[["fen-envo-00000232.html","fen"]],"b":[["NCBITaxon%3A877455","Methanobacterium lacus"]]},{"id":"NCBITaxon:880157","l":"Xenorhabdus khoisanae","na":1,"nb":1,"a":[["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["NCBITaxon%3A880157","Xenorhabdus khoisanae"]]},{"id":"NCBITaxon:880633","l":"Lactobacillus helveticus R0052","na":1,"nb":1,"a":[["research-facility-envo-00000469.html","research facility"]],"b":[["NCBITaxon%3A880633","Lactobacillus helveticus R0052"]]},{"id":"NCBITaxon:881260","l":"Enterobacter bugandensis","na":1,"nb":1,"a":[["railway-envo-00000065.html","railway"]],"b":[["NCBITaxon%3A881260","Enterobacter bugandensis"]]},{"id":"NCBITaxon:882869","l":"Salmonella enterica subsp. enterica serovar Montevideo str. IA_2010008287","na":1,"nb":1,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["NCBITaxon%3A882869","Salmonella enterica subsp. enterica serovar Montevideo str. IA_2010008287"]]},{"id":"NCBITaxon:883062","l":"Bifidobacterium bifidum S17","na":1,"nb":1,"a":[["coral-reef-envo-00000150.html","coral reef"]],"b":[["NCBITaxon%3A883062","Bifidobacterium bifidum S17"]]},{"id":"NCBITaxon:888845","l":"Minicystis rosea","na":1,"nb":1,"a":[["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["NCBITaxon%3A888845","Minicystis rosea"]]},{"id":"NCBITaxon:889211","l":"Erwinia amylovora ATCC BAA-2158","na":1,"nb":1,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["NCBITaxon%3A889211","Erwinia amylovora ATCC BAA-2158"]]},{"id":"NCBITaxon:889453","l":"Alkalitalea saponilacus","na":1,"nb":1,"a":[["valley-envo-00000100.html","valley"]],"b":[["NCBITaxon%3A889453","Alkalitalea saponilacus"]]},{"id":"NCBITaxon:889932","l":"Lactiplantibacillus plantarum ST-III","na":1,"nb":1,"a":[["research-facility-envo-00000469.html","research facility"]],"b":[["NCBITaxon%3A889932","Lactiplantibacillus plantarum ST-III"]]},{"id":"NCBITaxon:89067","l":"Moritella japonica","na":1,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["NCBITaxon%3A89067","Moritella japonica"]]},{"id":"NCBITaxon:90241","l":"Lwoffella lincolnii","na":1,"nb":1,"a":[["respiratory-airway-uberon-0001005.html","respiratory airway"]],"b":[["NCBITaxon%3A90241","Lwoffella lincolnii"]]},{"id":"NCBITaxon:903522","l":"Lacticaseibacillus paracasei TXW","na":1,"nb":1,"a":[["research-facility-envo-00000469.html","research facility"]],"b":[["NCBITaxon%3A903522","Lacticaseibacillus paracasei TXW"]]},{"id":"NCBITaxon:908285","l":"Necropsobacter rosorum","na":1,"nb":1,"a":[["rodentia-other-habitatmech-bacdive-745e245512.html","Rodentia-Other"]],"b":[["NCBITaxon%3A908285","Necropsobacter rosorum"]]},{"id":"NCBITaxon:909613","l":"Actinokineospora spheciospongiae","na":1,"nb":1,"a":[["orchard-envo-00000115.html","orchard"]],"b":[["NCBITaxon%3A909613","Actinokineospora spheciospongiae"]]},{"id":"NCBITaxon:910312","l":"Porphyromonas asaccharolytica PR426713P-I","na":1,"nb":1,"a":[["cow-shed-envo-00003041.html","cow shed"]],"b":[["NCBITaxon%3A910312","Porphyromonas asaccharolytica PR426713P-I"]]},{"id":"NCBITaxon:913324","l":"gamma proteobacterium SCGC AAA001-B15","na":1,"nb":1,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A913324","gamma proteobacterium SCGC AAA001-B15"]]},{"id":"NCBITaxon:913327","l":"gamma proteobacterium SCGC AAA007-O20","na":1,"nb":1,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A913327","gamma proteobacterium SCGC AAA007-O20"]]},{"id":"NCBITaxon:913329","l":"SAR324 cluster bacterium SCGC AAA001-C10","na":1,"nb":1,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A913329","SAR324 cluster bacterium SCGC AAA001-C10"]]},{"id":"NCBITaxon:913331","l":"SAR324 cluster bacterium SCGC AAA240-J09","na":1,"nb":1,"a":[["style-bto-0001313.html","style"]],"b":[["NCBITaxon%3A913331","SAR324 cluster bacterium SCGC AAA240-J09"]]},{"id":"NCBITaxon:914127","l":"Vibrio vulnificus MO6-24/O","na":1,"nb":1,"a":[["channel-of-a-watercourse-envo-00000395.html","channel of a watercourse"]],"b":[["NCBITaxon%3A914127","Vibrio vulnificus MO6-24/O"]]},{"id":"NCBITaxon:92743","l":"Streptomyces paromomycinus","na":1,"nb":1,"a":[["plain-envo-00000086.html","plain"]],"b":[["NCBITaxon%3A92743","Streptomyces paromomycinus"]]},{"id":"NCBITaxon:930943","l":"Saccharolobus islandicus HVE10/4","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["NCBITaxon%3A930943","Saccharolobus islandicus HVE10/4"]]},{"id":"NCBITaxon:931202","l":"Candidatus Liberibacter asiaticus str. Ishi-1","na":1,"nb":1,"a":[["phloem-bto-0001058.html","phloem"]],"b":[["NCBITaxon%3A931202","Candidatus Liberibacter asiaticus str. Ishi-1"]]},{"id":"NCBITaxon:931625","l":"Winogradskyella ulvae","na":1,"nb":1,"a":[["epibiont-habitatmech-bacdive-f4eb470a03.html","Epibiont"]],"b":[["NCBITaxon%3A931625","Winogradskyella ulvae"]]},{"id":"NCBITaxon:931627","l":"Mycolicibacterium rhodesiae JS60","na":1,"nb":1,"a":[["creosote-contaminated-soil-envo-00002117.html","creosote contaminated soil"]],"b":[["NCBITaxon%3A931627","Mycolicibacterium rhodesiae JS60"]]},{"id":"NCBITaxon:93218","l":"Pandoraea apista","na":1,"nb":1,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"]],"b":[["NCBITaxon%3A93218","Pandoraea apista"]]},{"id":"NCBITaxon:93222","l":"Pandoraea sputorum","na":1,"nb":1,"a":[["cystic-fibrosis-habitatmech-bacdive-a0bdf011ac.html","Cystic-fibrosis"]],"b":[["NCBITaxon%3A93222","Pandoraea sputorum"]]},{"id":"NCBITaxon:933063","l":"Dichotomicrobium thermohalophilum","na":1,"nb":1,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["NCBITaxon%3A933063","Dichotomicrobium thermohalophilum"]]},{"id":"NCBITaxon:933356","l":"Enterococcus faecium E4452","na":1,"nb":1,"a":[["rectum-bto-0001158.html","rectum"]],"b":[["NCBITaxon%3A933356","Enterococcus faecium E4452"]]},{"id":"NCBITaxon:935293","l":"Yersinia entomophaga","na":1,"nb":1,"a":[["paddy-field-envo-00000297.html","paddy field"]],"b":[["NCBITaxon%3A935293","Yersinia entomophaga"]]},{"id":"NCBITaxon:935546","l":"Mesorhizobium loti NZP2037","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A935546","Mesorhizobium loti NZP2037"]]},{"id":"NCBITaxon:935548","l":"Mesorhizobium loti R88b","na":1,"nb":1,"a":[["seamount-envo-00000264.html","seamount"]],"b":[["NCBITaxon%3A935548","Mesorhizobium loti R88b"]]},{"id":"NCBITaxon:935865","l":"Nocardioides sp. J52","na":1,"nb":1,"a":[["agricultural-waste-material-envo-01000371.html","agricultural waste material"]],"b":[["NCBITaxon%3A935865","Nocardioides sp. J52"]]},{"id":"NCBITaxon:936138","l":"Phorcysia thermohydrogeniphila","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A936138","Phorcysia thermohydrogeniphila"]]},{"id":"NCBITaxon:936139","l":"Mesomycoplasma hyorhinis MCLD","na":1,"nb":1,"a":[["melanoma-cell-line-bto-0000849.html","melanoma cell line"]],"b":[["NCBITaxon%3A936139","Mesomycoplasma hyorhinis MCLD"]]},{"id":"NCBITaxon:93684","l":"Roseivivax halotolerans","na":1,"nb":1,"a":[["epibiont-habitatmech-bacdive-f4eb470a03.html","Epibiont"]],"b":[["NCBITaxon%3A93684","Roseivivax halotolerans"]]},{"id":"NCBITaxon:93718","l":"Acetobacterium psammolithicum","na":1,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["NCBITaxon%3A93718","Acetobacterium psammolithicum"]]},{"id":"NCBITaxon:937334","l":"Caldicoprobacter faecalis","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A937334","Caldicoprobacter faecalis"]]},{"id":"NCBITaxon:939306","l":"alpha proteobacterium SCGC AAA240-E13","na":1,"nb":1,"a":[["marine-mesopelagic-zone-envo-00000213.html","marine mesopelagic zone"]],"b":[["NCBITaxon%3A939306","alpha proteobacterium SCGC AAA240-E13"]]},{"id":"NCBITaxon:939316","l":"alpha proteobacterium SCGC AAA288-E13","na":1,"nb":1,"a":[["marine-mesopelagic-zone-envo-00000213.html","marine mesopelagic zone"]],"b":[["NCBITaxon%3A939316","alpha proteobacterium SCGC AAA288-E13"]]},{"id":"NCBITaxon:939324","l":"alpha proteobacterium SCGC AAA288-G21","na":1,"nb":1,"a":[["marine-mesopelagic-zone-envo-00000213.html","marine mesopelagic zone"]],"b":[["NCBITaxon%3A939324","alpha proteobacterium SCGC AAA288-G21"]]},{"id":"NCBITaxon:939346","l":"alpha proteobacterium SCGC AAA288-N07","na":1,"nb":1,"a":[["marine-mesopelagic-zone-envo-00000213.html","marine mesopelagic zone"]],"b":[["NCBITaxon%3A939346","alpha proteobacterium SCGC AAA288-N07"]]},{"id":"NCBITaxon:941323","l":"Escherichia coli VR50","na":1,"nb":1,"a":[["epithelial-cell-bto-0000414.html","epithelial cell"]],"b":[["NCBITaxon%3A941323","Escherichia coli VR50"]]},{"id":"NCBITaxon:941907","l":"Allosphingosinicella indica","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A941907","Allosphingosinicella indica"]]},{"id":"NCBITaxon:946336","l":"Acidicapsa borealis","na":1,"nb":1,"a":[["plant-litter-envo-01000628.html","plant litter"]],"b":[["NCBITaxon%3A946336","Acidicapsa borealis"]]},{"id":"NCBITaxon:946678","l":"Flavobacterium araucananum","na":1,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"]],"b":[["NCBITaxon%3A946678","Flavobacterium araucananum"]]},{"id":"NCBITaxon:948106","l":"Paraburkholderia dilworthii","na":1,"nb":1,"a":[["peninsula-envo-00000305.html","peninsula"]],"b":[["NCBITaxon%3A948106","Paraburkholderia dilworthii"]]},{"id":"NCBITaxon:94868","l":"Lacrimispora algidixylanolytica","na":1,"nb":1,"a":[["food-habitatmech-madin-81cb9e74cb.html","food"]],"b":[["NCBITaxon%3A94868","Lacrimispora algidixylanolytica"]]},{"id":"NCBITaxon:95160","l":"","na":1,"nb":1,"a":[["sewage-envo-00002018.html","sewage"]],"b":[["NCBITaxon%3A79909","Actinomadura livida"]]},{"id":"NCBITaxon:957042","l":"Fuchsiella alkaliacetigena","na":1,"nb":1,"a":[["alkaline-water-envo-01000357.html","alkaline water"]],"b":[["NCBITaxon%3A957042","Fuchsiella alkaliacetigena"]]},{"id":"NCBITaxon:96773","l":"Thauera chlorobenzoica","na":1,"nb":1,"a":[["anaerobic-sludge-blanket-reactor-envo-00002213.html","anaerobic sludge blanket reactor"]],"b":[["NCBITaxon%3A96773","Thauera chlorobenzoica"]]},{"id":"NCBITaxon:980254","l":"Roseimaritima ulvae","na":1,"nb":1,"a":[["epibiont-habitatmech-bacdive-f4eb470a03.html","Epibiont"]],"b":[["NCBITaxon%3A980254","Roseimaritima ulvae"]]},{"id":"NCBITaxon:980271","l":"Aporhodopirellula rubra","na":1,"nb":1,"a":[["epibiont-habitatmech-bacdive-f4eb470a03.html","Epibiont"]],"b":[["NCBITaxon%3A980271","Aporhodopirellula rubra"]]},{"id":"NCBITaxon:985076","l":"Burkholderia cenocepacia K56-2Valvano","na":1,"nb":1,"a":[["k-562-cell-bto-0000664.html","K-562 cell"]],"b":[["NCBITaxon%3A985076","Burkholderia cenocepacia K56-2Valvano"]]},{"id":"NCBITaxon:985077","l":"Burkholderia cenocepacia BC7","na":1,"nb":1,"a":[["k-562-cell-bto-0000664.html","K-562 cell"]],"b":[["NCBITaxon%3A985077","Burkholderia cenocepacia BC7"]]},{"id":"NCBITaxon:992013","l":"Helicobacter pylori CPY1124","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A992013","Helicobacter pylori CPY1124"]]},{"id":"NCBITaxon:992014","l":"Helicobacter pylori CPY1313","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A992014","Helicobacter pylori CPY1313"]]},{"id":"NCBITaxon:992016","l":"Helicobacter pylori CPY1962","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A992016","Helicobacter pylori CPY1962"]]},{"id":"NCBITaxon:992017","l":"Helicobacter pylori CPY3281","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A992017","Helicobacter pylori CPY3281"]]},{"id":"NCBITaxon:992018","l":"Helicobacter pylori CPY6081","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A992018","Helicobacter pylori CPY6081"]]},{"id":"NCBITaxon:992019","l":"Helicobacter pylori CPY6261","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A992019","Helicobacter pylori CPY6261"]]},{"id":"NCBITaxon:992020","l":"Helicobacter pylori CPY6271","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A992020","Helicobacter pylori CPY6271"]]},{"id":"NCBITaxon:992022","l":"Helicobacter pylori CPY6311","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A992022","Helicobacter pylori CPY6311"]]},{"id":"NCBITaxon:992023","l":"Helicobacter pylori NQ4216","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A992023","Helicobacter pylori NQ4216"]]},{"id":"NCBITaxon:992024","l":"Helicobacter pylori NQ4200","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A992024","Helicobacter pylori NQ4200"]]},{"id":"NCBITaxon:992025","l":"Helicobacter pylori NQ4228","na":1,"nb":1,"a":[["gastric-mucosa-bto-0001308.html","gastric mucosa"]],"b":[["NCBITaxon%3A992025","Helicobacter pylori NQ4228"]]},{"id":"NCBITaxon:993414","l":"Naumannella halotolerans","na":1,"nb":1,"a":[["environmental-system-envo-01000254.html","environmental system"]],"b":[["NCBITaxon%3A993414","Naumannella halotolerans"]]},{"id":"NCBITaxon:993416","l":"Micrococcus cohnii","na":1,"nb":1,"a":[["air-envo-00002005.html","air"]],"b":[["NCBITaxon%3A993416","Micrococcus cohnii"]]},{"id":"NCBITaxon:99807","l":"Corynebacterium auriscanis","na":1,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"]],"b":[["NCBITaxon%3A99807","Corynebacterium auriscanis"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/HabitatMech--TraitMech.json b/assets/fleet/edges/HabitatMech--TraitMech.json index 09f4d06..fb4cfa2 100644 --- a/assets/fleet/edges/HabitatMech--TraitMech.json +++ b/assets/fleet/edges/HabitatMech--TraitMech.json @@ -1 +1 @@ -{"a":"HabitatMech","b":"TraitMech","base":{"HabitatMech":"https://culturebotai.github.io/HabitatMech/pages/habitats/","TraitMech":"https://culturebotai.github.io/TraitMech/pages/traits/"},"n":122,"by":{"NCBITaxon":115,"ENVO":4,"PATO":2,"CHEBI":1},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":36,"nb":65,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["bay-envo-00000032.html","bay"],["freshwater-biome-envo-00000873.html","freshwater biome"],["liquid-water-envo-00002006.html","liquid water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["ecology/biosafety_level.html","biosafety level"],["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/host_associated.html","host-associated"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/halophily_preference.html","halophily preference"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":40,"nb":15,"a":[["liquid-water-envo-00002006.html","liquid water"],["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["laboratory-facility-envo-01001406.html","laboratory facility"],["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["biofilm-bto-0002690.html","biofilm"]],"b":[["ecology/biosafety_level_2.html","biosafety level 2"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/coccus_shaped.html","coccus shaped"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":28,"nb":11,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["liquid-water-envo-00002006.html","liquid water"],["watercourse-envo-00000029.html","watercourse"],["compost-envo-00002170.html","compost"],["hospital-envo-00002173.html","hospital"],["human-construction-envo-00000070.html","human construction"]],"b":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/aerobic.html","aerobic"],["genomics/avast_system.html","AVAST system"],["genomics/jukab_system.html","JukAB system"],["morphology/motile.html","motile"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":11,"nb":19,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["fermentation-starter-envo-03600040.html","fermentation starter"],["fruit-bto-0000486.html","fruit"],["mammary-epithelial-cell-bto-0004300.html","mammary epithelial cell"],["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["environment/aerotolerant.html","aerotolerant"],["genomics/abia_system.html","AbiA system"],["genomics/abib_system.html","AbiB system"],["genomics/abic_system.html","AbiC system"],["genomics/abid_system.html","AbiD system"],["genomics/abie_system.html","AbiE system"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":10,"nb":18,"a":[["anther-bto-0000079.html","anther"],["epithelial-cell-bto-0000414.html","epithelial cell"],["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/neutrophilic.html","neutrophilic"],["environment/non_halophilic.html","non halophilic"],["genomics/spbk_system.html","SpbK system"]]},{"id":"NCBITaxon:1085","l":"Rhodospirillum rubrum","na":19,"nb":6,"a":[["biofilm-envo-00002034.html","biofilm"],["brackish-water-body-envo-01001321.html","brackish water body"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["liquid-water-envo-00002006.html","liquid water"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["river-envo-00000022.html","river"]],"b":[["metabolism/phototrophy.html","phototrophy"],["morphology/spiral_shaped.html","spiral shaped"],["physiology/carboxydotrophic.html","carboxydotrophic"],["physiology/photoheterotrophic.html","photoheterotrophic"],["physiology/photoorganoheterotrophic.html","photoorganoheterotrophic"],["physiology/phototrophic.html","phototrophic"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":13,"nb":6,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["neutrophil-bto-0000130.html","neutrophil"],["rectum-bto-0001158.html","rectum"],["spleen-bto-0001281.html","spleen"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["metabolism/butanediol_fermentation.html","2,3-butanediol fermentation"],["metabolism/citrate_fermentation.html","citrate fermentation"],["morphology/capsule.html","capsule"],["morphology/non_motile.html","non motile"],["other/indole_test_negative.html","indole test negative"],["other/methyl_red_test_negative.html","methyl red test negative"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":11,"nb":6,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["resting-cell-bto-0001170.html","resting cell"],["seedling-bto-0001228.html","seedling"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["ecology/free_living.html","free-living"],["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["genomics/transposable_element.html","transposable element"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"]]},{"id":"NCBITaxon:1299","l":"Deinococcus radiodurans","na":7,"nb":6,"a":[["animal-house-envo-00003040.html","animal house"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["water-scum-envo-00005794.html","water scum"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"]],"b":[["environment/ionizing_radiation_tolerant.html","ionizing radiation tolerant"],["environment/radiotolerant.html","radiotolerant"],["environment/uv_radiation_tolerant.html","UV radiation tolerant"],["environment/xerophilic.html","xerophilic"],["morphology/orange_pigmented.html","orange pigmented"],["physiology/stress_response.html","stress response"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":7,"nb":6,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["pseudostem-bto-0005992.html","pseudostem"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["ecology/animal_pathogen.html","animal pathogen"],["ecology/biosafety_level_2.html","biosafety level 2"],["genomics/genomic_island.html","genomic island"],["genomics/prophage.html","prophage"],["morphology/flagellated.html","flagellated"],["morphology/peritrichous.html","peritrichous"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":27,"nb":5,"a":[["small-river-biome-envo-00000890.html","small river biome"],["factory-envo-01000536.html","factory"],["organic-waste-material-envo-00002873.html","organic waste material"],["leaf-po-0025034.html","leaf"],["milk-uberon-0001913.html","milk"],["rhizosphere-envo-00005801.html","rhizosphere"]],"b":[["genomics/gabija_system.html","Gabija system"],["genomics/shedu_system.html","Shedu system"],["genomics/thoeris_system.html","Thoeris system"],["physiology/caseinase_activity.html","caseinase activity"],["physiology/lecithinase_activity.html","lecithinase activity"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":5,"nb":9,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"],["feces-uberon-0001988.html","feces"],["rectum-bto-0001158.html","rectum"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["environment/euryhaline.html","euryhaline"],["genomics/dartg_system.html","DarTG system"],["genomics/ddmde_system.html","DdmDE system"],["genomics/genomic_island.html","genomic island"],["genomics/lamassu_system.html","Lamassu system"],["genomics/nixi_system.html","NixI system"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":6,"nb":5,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"],["sludge-envo-00002044.html","sludge"],["forested-area-envo-00000111.html","forested area"],["scrubland-area-envo-00000300.html","scrubland area"],["soil-envo-00001998.html","soil"]],"b":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"],["physiology/hydrogenotrophic.html","hydrogenotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"]]},{"id":"NCBITaxon:1773","l":"Mycobacterium tuberculosis","na":5,"nb":5,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["posterior-lobe-bto-0000561.html","posterior lobe"],["sputum-bto-0001297.html","sputum"],["thorax-bto-0001368.html","thorax"],["thp-1-cell-bto-0001370.html","THP-1 cell"]],"b":[["ecology/biosafety_level_3.html","biosafety level 3"],["ecology/human_pathogen.html","human pathogen"],["physiology/acid_phosphatase_activity.html","acid phosphatase activity"],["physiology/dormancy.html","dormancy"],["physiology/pyrazinamidase_activity.html","pyrazinamidase activity"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":5,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"],["midgut-bto-0000863.html","midgut"],["paddy-field-envo-00000297.html","paddy field"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["metabolism/chitinolysis.html","chitinolysis"],["morphology/pigmentation.html","pigmentation"],["morphology/red_pigmented.html","red pigmented"],["morphology/white_pigmented.html","white pigmented"],["physiology/beta_n_acetylhexosaminidase_activity.html","beta-N-acetylhexosaminidase activity"]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":12,"nb":4,"a":[["hospital-envo-00002173.html","hospital"],["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["epithelial-cell-bto-0000414.html","epithelial cell"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["meninx-bto-0000144.html","meninx"]],"b":[["morphology/diplococcus_shaped.html","diplococcus shaped"],["morphology/non_motile.html","non motile"],["morphology/sphere_shaped.html","sphere shaped"],["physiology/natural_competence.html","natural competence"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":4,"nb":7,"a":[["reservoir-envo-00000025.html","reservoir"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/copper_tolerant.html","copper tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["environment/metal_tolerant.html","metal tolerant"]]},{"id":"ENVO:01001057","l":"","na":6,"nb":4,"a":[["peat-moss-associated-environment-habitatmech-gold-7f57b82cab.html","peat moss-associated environment"],["part-of-plant-habitatmech-madin-25325947e2.html","part of plant"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["root-or-stem-rot-environment-habitatmech-bacdive-04ddbbeabe.html","root-or-stem rot environment"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"],["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["environment/strictly_anaerobic.html","strictly anaerobic"],["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/disproportionation.html","Disproportionation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":33,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["pond-water-envo-00002228.html","pond water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["water-body-envo-00000063.html","water body"]],"b":[["environment/aerobic.html","aerobic"],["environment/obligately_aerobic.html","obligately aerobic"],["morphology/tetrad_arrangement.html","tetrad arrangement"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":25,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-water-body-envo-00001999.html","marine water body"],["sea-water-envo-00002149.html","sea water"],["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["ecology/commensalism.html","commensalism"],["genomics/nhi_system.html","Nhi system"],["other/coagulase_negative.html","coagulase negative"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":18,"nb":3,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["ecology/rhizosphere_association.html","rhizosphere association"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/psychrotolerant.html","psychrotolerant"]]},{"id":"NCBITaxon:1314","l":"Streptococcus pyogenes","na":9,"nb":3,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"],["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"],["epithelial-cell-bto-0000414.html","epithelial cell"],["nasopharynx-bto-0000662.html","nasopharynx"],["skin-of-body-uberon-0002097.html","skin of body"],["throat-bto-0000828.html","throat"]],"b":[["environment/aerotolerant.html","aerotolerant"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"],["morphology/streptococcus_arrangement.html","streptococcus arrangement"]]},{"id":"NCBITaxon:210","l":"Helicobacter pylori","na":8,"nb":3,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["hospital-envo-00002173.html","hospital"],["duodenum-bto-0000365.html","duodenum"],["gastric-juice-bto-0000501.html","gastric juice"],["gastric-mucosa-bto-0001308.html","gastric mucosa"],["gastric-ulcer-bto-0002990.html","gastric ulcer"]],"b":[["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/helical_shaped.html","helical shaped"],["morphology/lophotrichous.html","lophotrichous"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":16,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"]],"b":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"]]},{"id":"NCBITaxon:727","l":"Haemophilus influenzae","na":9,"nb":2,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["head-bto-0000282.html","head"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["genomics/restriction_modification_system.html","restriction-modification system"],["morphology/coccobacillus_shaped.html","coccobacillus shaped"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":8,"nb":2,"a":[["reservoir-envo-00000025.html","reservoir"],["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["secretion-bto-0002979.html","secretion"],["stomach-bto-0001307.html","stomach"]],"b":[["genomics/abialpha_system.html","AbiAlpha system"],["physiology/gelatinase_activity.html","gelatinase activity"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":4,"nb":2,"a":[["bioreactor-envo-00002123.html","bioreactor"],["human-construction-envo-00000070.html","human construction"],["sediment-envo-00002007.html","sediment"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["genomics/gc_mid1.html","GC mid1"],["metabolism/lignin_degradation.html","lignin degradation"]]},{"id":"NCBITaxon:2746","l":"Halomonas elongata","na":2,"nb":4,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"],["saline-water-body-envo-01001319.html","saline water body"]],"b":[["environment/euryhaline.html","euryhaline"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/moderately_halophilic.html","moderately halophilic"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":2,"nb":4,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["ecology/mutualism.html","mutualism"],["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["ecology/symbiosis.html","symbiosis"],["genomics/hna_system.html","Hna system"]]},{"id":"NCBITaxon:1108","l":"Chloroflexus aurantiacus","na":3,"nb":2,"a":[["rhizosphere-envo-00005801.html","rhizosphere"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["morphology/green_pigmented.html","green pigmented"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":3,"nb":2,"a":[["milk-uberon-0001913.html","milk"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["genomics/crispr_cas_system.html","CRISPR-Cas system"],["genomics/phage_defense_system.html","phage defense system"]]},{"id":"NCBITaxon:1525","l":"Neomoorella thermoacetica","na":2,"nb":3,"a":[["liquid-water-envo-00002006.html","liquid water"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":2,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["genomics/wadjet_system.html","Wadjet system"],["morphology/irregular_shaped.html","irregular shaped"]]},{"id":"NCBITaxon:317655","l":"Sphingopyxis alaskensis RB2256","na":3,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["environmental-material-envo-00010483.html","environmental material"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":2,"nb":3,"a":[["hospital-envo-00002173.html","hospital"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["environment/anaerobic.html","anaerobic"],["environment/strictly_anaerobic.html","strictly anaerobic"],["metabolism/fumarate_respiration.html","fumarate respiration"]]},{"id":"NCBITaxon:292415","l":"Thiobacillus denitrificans ATCC 25259","na":2,"nb":2,"a":[["large-river-biome-envo-00000887.html","large river biome"],["river-bed-envo-00000384.html","river bed"]],"b":[["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/chemoautotrophic.html","chemoautotrophic"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":19,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["bone-element-uberon-0001474.html","bone element"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["metabolism/starch_degradation.html","starch degradation"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":17,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["hospital-envo-00002173.html","hospital"],["egg-food-product-foodon-00001274.html","egg food product"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["other/catalase_negative.html","catalase negative"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":14,"nb":1,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["compost-envo-00002170.html","compost"],["organic-waste-material-envo-00002873.html","organic waste material"],["larva-bto-0000707.html","larva"],["rhizosphere-envo-00005801.html","rhizosphere"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["physiology/lipase_activity.html","lipase activity"]]},{"id":"NCBITaxon:173","l":"Leptospira interrogans","na":14,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["small-river-biome-envo-00000890.html","small river biome"],["surface-water-envo-00002042.html","surface water"]],"b":[["morphology/axially_filamented.html","axially filamented"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":14,"nb":1,"a":[["watercourse-envo-00000029.html","watercourse"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["leaf-po-0025034.html","leaf"]],"b":[["morphology/gliding.html","gliding"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":10,"nb":1,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"]],"b":[["environment/microaerophilic.html","microaerophilic"]]},{"id":"NCBITaxon:1639","l":"Listeria monocytogenes","na":9,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["brain-bto-0000142.html","brain"],["central-nervous-system-bto-0000227.html","central nervous system"],["fruit-bto-0000486.html","fruit"],["placenta-bto-0001078.html","placenta"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["environment/psychrotolerant.html","psychrotolerant"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":8,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"],["bioreactor-envo-00002123.html","bioreactor"],["river-envo-00000022.html","river"],["freshwater-environment-envo-01000306.html","freshwater environment"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["physiology/photoheterotrophic.html","photoheterotrophic"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":8,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["ecology/plant_pathogen.html","plant pathogen"]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":8,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"]],"b":[["morphology/yellow_pigmented.html","yellow pigmented"]]},{"id":"NCBITaxon:1053","l":"Halorhodospira halophila","na":7,"nb":1,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["marine-environment-envo-01000320.html","marine environment"],["organic-feature-envo-01000159.html","organic feature"],["organic-material-envo-01000155.html","organic material"],["sediment-envo-00002007.html","sediment"]],"b":[["environment/haloalkaliphilic.html","haloalkaliphilic"]]},{"id":"NCBITaxon:1267","l":"Sarcina ventriculi","na":7,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["morphology/sarcina_arrangement.html","sarcina arrangement"]]},{"id":"NCBITaxon:1488","l":"Clostridium acetobutylicum","na":1,"nb":7,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["environment/anaerobic.html","anaerobic"],["environment/obligately_anaerobic.html","obligately anaerobic"],["metabolism/fermentation.html","Fermentation"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"],["morphology/gram_variable.html","gram variable"],["morphology/spindle_shaped.html","spindle shaped"]]},{"id":"NCBITaxon:1830","l":"Rhodococcus ruber","na":6,"nb":1,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["morphology/orange_pigmented.html","orange pigmented"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":6,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/oxidase_activity.html","oxidase activity"]]},{"id":"NCBITaxon:266264","l":"Cupriavidus metallidurans CH34","na":1,"nb":6,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/copper_tolerant.html","copper tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["environment/zinc_tolerant.html","zinc tolerant"]]},{"id":"PATO:0001430","l":"","na":1,"nb":6,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["environment/alkalotolerant.html","alkalotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"],["environment/obligately_alkaphilic.html","obligately alkaliphilic"],["environment/ph_growth_preference.html","pH growth preference"],["environment/ph_optimum_high.html","pH optimum high"]]},{"id":"NCBITaxon:129958","l":"Carboxydothermus hydrogenoformans","na":5,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["stream-envo-00000023.html","stream"],["temperate-envo-01000206.html","temperate"],["seep-envo-01000262.html","seep"]],"b":[["physiology/carboxydotrophic.html","carboxydotrophic"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":1,"nb":5,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["metabolism/dimethyl_sulfoxide_respiration.html","dimethyl sulfoxide respiration"],["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/electron_transfer.html","Electron transfer"]]},{"id":"NCBITaxon:224911","l":"Bradyrhizobium diazoefficiens USDA 110","na":5,"nb":1,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["microbial-mat-material-envo-01000157.html","microbial mat material"],["agricultural-soil-envo-00002259.html","agricultural soil"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["morphology/subpolar_flagellation.html","subpolar flagellation"]]},{"id":"NCBITaxon:228410","l":"Nitrosomonas europaea ATCC 19718","na":1,"nb":5,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"],["physiology/lithotrophic.html","lithotrophic"]]},{"id":"NCBITaxon:747","l":"Pasteurella multocida","na":5,"nb":1,"a":[["bronchus-uberon-0002185.html","bronchus"],["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["finger-bto-0004669.html","finger"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["ecology/animal_pathogen.html","animal pathogen"]]},{"id":"PATO:0001456","l":"","na":1,"nb":5,"a":[["anaerobic-wastewater-treatment-reactor-habitatmech-gold-bb0eb00ccb.html","anaerobic wastewater treatment reactor"]],"b":[["environment/anaerobic.html","anaerobic"],["environment/strictly_anaerobic.html","strictly anaerobic"],["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/disproportionation.html","Disproportionation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"]]},{"id":"NCBITaxon:1111735","l":"Sedimenticola selenatireducens DSM 17993","na":4,"nb":1,"a":[["brackish-water-body-envo-01001321.html","brackish water body"],["estuarine-biome-envo-01000020.html","estuarine biome"],["estuary-envo-00000045.html","estuary"],["watercourse-envo-00000029.html","watercourse"]],"b":[["metabolism/selenate_respiration.html","selenate respiration"]]},{"id":"NCBITaxon:1156985","l":"Epibacterium ulvae","na":4,"nb":1,"a":[["bar-envo-00000167.html","bar"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"],["peninsula-envo-00000305.html","peninsula"]],"b":[["other/epibiont_phenotype.html","epibiont phenotype"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":4,"nb":1,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["morphology/s_layer.html","S-layer"]]},{"id":"NCBITaxon:237727","l":"Erythrobacter sp. NAP1","na":4,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"],["pond-water-envo-00002228.html","pond water"],["small-river-biome-envo-00000890.html","small river biome"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["physiology/aerobic_anoxygenic_phototrophy.html","aerobic anoxygenic phototrophy"]]},{"id":"NCBITaxon:651","l":"Aeromonas media","na":4,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"],["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["morphology/brown_pigmented.html","brown pigmented"]]},{"id":"CHEBI:16183","l":"methane","na":1,"nb":3,"a":[["methane-bioremediation-material-habitatmech-gold-d510166905.html","methane bioremediation material"]],"b":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/methanogenesis.html","Methanogenesis"],["physiology/methanotrophic.html","methanotrophic"]]},{"id":"NCBITaxon:1519","l":"Clostridium tyrobutyricum","na":3,"nb":1,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["peatland-envo-00000044.html","peatland"]],"b":[["metabolism/butyric_acid_fermentation.html","butyric acid fermentation"]]},{"id":"NCBITaxon:1570","l":"Halobacillus halophilus","na":3,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["environment/halotolerant.html","halotolerant"]]},{"id":"NCBITaxon:1717","l":"Corynebacterium diphtheriae","na":3,"nb":1,"a":[["foot-bto-0000476.html","foot"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["morphology/dumbbell_shaped.html","dumbbell shaped"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa (strain ATCC 15692 / DSM 22644 / CIP 104116 / JCM 14847 / LMG 12228 / 1C / PRS 101 / PAO1)","na":1,"nb":3,"a":[["style-bto-0001313.html","style"]],"b":[["ecology/biofilm_formation.html","biofilm formation"],["morphology/twitching_motility.html","twitching motility"],["morphology/type_iv_pilus.html","type IV pilus"]]},{"id":"NCBITaxon:2242","l":"Halobacterium salinarum","na":1,"nb":3,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["environment/extremely_halophilic.html","extremely halophilic"],["environment/halophilic.html","halophilic"],["morphology/intracellular_inclusion.html","intracellular inclusion"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK1622","na":3,"nb":1,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["morphology/gliding.html","gliding"]]},{"id":"NCBITaxon:29405","l":"Microlunatus phosphovorus","na":3,"nb":1,"a":[["water-scum-envo-00005794.html","water scum"],["orchard-envo-00000115.html","orchard"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["morphology/polyphosphate_granule.html","polyphosphate granule"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":3,"nb":1,"a":[["bile-bto-0000121.html","bile"],["rectum-bto-0001158.html","rectum"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["ecology/opportunistic_pathogen.html","opportunistic pathogen"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":3,"nb":1,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["morphology/polar_flagellation.html","polar flagellation"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":1,"nb":3,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["ecology/mutualism.html","mutualism"],["physiology/bioluminescence.html","bioluminescence"],["physiology/quorum_sensing.html","quorum sensing"]]},{"id":"NCBITaxon:94122","l":"Shewanella sp. ANA-3","na":3,"nb":1,"a":[["alkaline-water-envo-01000357.html","alkaline water"],["brackish-estuary-envo-00002137.html","brackish estuary"],["underground-water-envo-00005792.html","underground water"]],"b":[["metabolism/arsenate_respiration.html","arsenate respiration"]]},{"id":"ENVO:01000687","l":"","na":1,"nb":2,"a":[["sea-coast-envo-00000303.html","sea coast"]],"b":[["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"]]},{"id":"ENVO:01001040","l":"saline environment","na":1,"nb":2,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"]]},{"id":"NCBITaxon:1097","l":"Chlorobaculum tepidum","na":1,"nb":2,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"],["morphology/green_pigmented.html","green pigmented"]]},{"id":"NCBITaxon:1182451","l":"Aureivirga marina","na":1,"nb":2,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["environment/nacl_delta_mid1.html","NaCl delta mid1"],["environment/nacl_range_mid2.html","NaCl range mid2"]]},{"id":"NCBITaxon:1385984","l":"Exiguobacterium chiriqhucha","na":2,"nb":1,"a":[["water-ice-envo-01000277.html","water ice"],["peak-envo-00000480.html","peak"]],"b":[["environment/temperature_delta_high.html","temperature delta high"]]},{"id":"NCBITaxon:139","l":"Borreliella burgdorferi","na":2,"nb":1,"a":[["joint-bto-0001686.html","joint"],["needle-bto-0000917.html","needle"]],"b":[["genomics/plasmid_carriage.html","plasmid carriage"]]},{"id":"NCBITaxon:165695","l":"Sphingobium","na":2,"nb":1,"a":[["juvenile-bto-0002168.html","juvenile"],["leaf-bto-0000713.html","leaf"]],"b":[["metabolism/lignin_degradation.html","lignin degradation"]]},{"id":"NCBITaxon:167879","l":"Colwellia psychrerythraea 34H","na":2,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["soil-envo-00001998.html","soil"]],"b":[["environment/psychrophilic.html","psychrophilic"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":2,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["morphology/branched_shaped.html","branched shaped"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii (strain ATCC 43067 / DSM 2661 / JAL-1 / JCM 10045 / NBRC 100440)","na":2,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["metabolism/methanogenesis.html","Methanogenesis"]]},{"id":"NCBITaxon:243273","l":"Mycoplasmoides genitalium (strain ATCC 33530 / DSM 19775 / NCTC 10195 / G37)","na":1,"nb":2,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["genomics/gc_high.html","GC high"],["genomics/genome_size.html","genome size"]]},{"id":"NCBITaxon:28264","l":"Arcanobacterium haemolyticum","na":2,"nb":1,"a":[["foot-bto-0000476.html","foot"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"]],"b":[["physiology/alpha_mannosidase_activity.html","alpha-mannosidase activity"]]},{"id":"NCBITaxon:293091","l":"Haloquadratum walsbyi","na":2,"nb":1,"a":[["small-river-biome-envo-00000890.html","small river biome"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["morphology/square_shaped.html","square shaped"]]},{"id":"NCBITaxon:313590","l":"Dokdonia sp. MED134","na":2,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["metabolism/proteorhodopsin_phototrophy.html","proteorhodopsin phototrophy"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans Pd1222","na":2,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["physiology/mixotrophic.html","mixotrophic"]]},{"id":"NCBITaxon:334543","l":"Psychrobacter arcticus","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["environment/delta_phenotype_with_numerical_limits.html","delta phenotype with numerical limits"],["environment/facultative_psychrophilic.html","facultative psychrophilic"]]},{"id":"NCBITaxon:521674","l":"Planctopirus limnophila DSM 3776","na":2,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["morphology/flask_shaped.html","flask shaped"]]},{"id":"NCBITaxon:542","l":"Zymomonas mobilis","na":1,"nb":2,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["physiology/nad_dependent_alcohol_dehydrogenase_activity.html","NAD-dependent alcohol dehydrogenase activity"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":2,"nb":1,"a":[["watercourse-envo-00000029.html","watercourse"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["morphology/lateral_flagellation.html","lateral flagellation"]]},{"id":"NCBITaxon:74109","l":"Photobacterium profundum","na":1,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["environment/piezophilic.html","piezophilic"],["environment/piezotolerant.html","piezotolerant"]]},{"id":"NCBITaxon:86665","l":"Halalkalibacterium halodurans","na":1,"nb":2,"a":[["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["environment/alkalotolerant.html","alkalotolerant"],["environment/alkaphilic.html","alkaliphilic"]]},{"id":"ENVO:01000309","l":"cold environment","na":1,"nb":1,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["environment/temperature_optimum_very_low.html","temperature optimum very low"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["morphology/heterocyst.html","heterocyst"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["physiology/urease_activity.html","urease activity"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":1,"a":[["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["metabolism/cellulolysis.html","cellulolysis"]]},{"id":"NCBITaxon:1579","l":"Lactobacillus acidophilus","na":1,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"]],"b":[["environment/acidotolerant.html","acidotolerant"]]},{"id":"NCBITaxon:1599","l":"Latilactobacillus sakei","na":1,"nb":1,"a":[["research-facility-envo-00000469.html","research facility"]],"b":[["physiology/arginine_dihydrolase_activity.html","arginine dihydrolase activity"]]},{"id":"NCBITaxon:1744","l":"Propionibacterium freudenreichii","na":1,"nb":1,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":1,"nb":1,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["physiology/alkaline_phosphatase_activity.html","alkaline phosphatase activity"]]},{"id":"NCBITaxon:192222","l":"Campylobacter jejuni subsp. jejuni NCTC 11168 = ATCC 700819","na":1,"nb":1,"a":[["flagellate-bto-0000464.html","flagellate"]],"b":[["environment/capnophilic.html","capnophilic"]]},{"id":"NCBITaxon:2283","l":"Acidianus ambivalens","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["metabolism/disproportionation.html","Disproportionation"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima (strain ATCC 43589 / DSM 3109 / JCM 10099 / NBRC 100826 / MSB8)","na":1,"nb":1,"a":[["feather-bto-0000447.html","feather"]],"b":[["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"]]},{"id":"NCBITaxon:272630","l":"Methylorubrum extorquens (strain ATCC 14718 / DSM 1338 / JCM 2805 / NCIMB 9133 / AM1)","na":1,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["physiology/methylotrophic.html","methylotrophic"]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["physiology/alpha_fucosidase_activity.html","alpha-fucosidase activity"]]},{"id":"NCBITaxon:33952","l":"Acetobacterium woodii","na":1,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["metabolism/homoacetogenesis.html","Homoacetogenesis"]]},{"id":"NCBITaxon:357794","l":"Psychromonas ingrahamii","na":1,"nb":1,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["environment/temperature_range_very_low.html","temperature range very low"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["metabolism/photoferrotrophy.html","photoferrotrophy"]]},{"id":"NCBITaxon:399549","l":"Metallosphaera sedula DSM 5348","na":1,"nb":1,"a":[["solfatara-envo-00000217.html","solfatara"]],"b":[["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":1,"nb":1,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["other/voges_proskauer_test_positive.html","Voges-Proskauer test positive"]]},{"id":"NCBITaxon:584","l":"Proteus mirabilis","na":1,"nb":1,"a":[["salivary-gland-bto-0001203.html","salivary gland"]],"b":[["morphology/swarming_motility.html","swarming motility"]]},{"id":"NCBITaxon:71421","l":"Haemophilus influenzae (strain ATCC 51907 / DSM 11121 / KW20 / Rd)","na":1,"nb":1,"a":[["respiratory-mucosa-bto-0000973.html","respiratory mucosa"]],"b":[["genomics/restriction_modification_system.html","restriction-modification system"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":1,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["physiology/dormancy.html","dormancy"]]},{"id":"NCBITaxon:844","l":"Wolinella succinogenes","na":1,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":1,"nb":1,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":1,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["morphology/motility.html","motility"]]},{"id":"NCBITaxon:99807","l":"Corynebacterium auriscanis","na":1,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"]],"b":[["physiology/pyrrolidonyl_arylamidase_activity.html","pyrrolidonyl arylamidase activity"]]}]} \ No newline at end of file +{"a":"HabitatMech","b":"TraitMech","base":{"HabitatMech":"https://culturebotai.github.io/HabitatMech/pages/habitats/","TraitMech":"https://culturebotai.github.io/TraitMech/pages/traits/"},"n":122,"by":{"NCBITaxon":115,"ENVO":4,"PATO":2,"CHEBI":1},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":36,"nb":65,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["bay-envo-00000032.html","bay"],["freshwater-biome-envo-00000873.html","freshwater biome"],["liquid-water-envo-00002006.html","liquid water"],["marine-pelagic-zone-envo-00000208.html","marine pelagic zone"],["marine-water-body-envo-00001999.html","marine water body"]],"b":[["ecology/biosafety_level.html","biosafety level"],["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/host_associated.html","host-associated"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/halophily_preference.html","halophily preference"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":40,"nb":15,"a":[["liquid-water-envo-00002006.html","liquid water"],["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["laboratory-facility-envo-01001406.html","laboratory facility"],["vegetable-oil-food-product-foodon-00001087.html","vegetable oil food product"],["biofilm-bto-0002690.html","biofilm"]],"b":[["ecology/biosafety_level_2.html","biosafety level 2"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/coccus_shaped.html","coccus shaped"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":28,"nb":11,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["liquid-water-envo-00002006.html","liquid water"],["watercourse-envo-00000029.html","watercourse"],["compost-envo-00002170.html","compost"],["hospital-envo-00002173.html","hospital"],["human-construction-envo-00000070.html","human construction"]],"b":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/aerobic.html","aerobic"],["genomics/avast_system.html","AVAST system"],["genomics/jukab_system.html","JukAB system"],["morphology/motile.html","motile"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":11,"nb":19,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["fermentation-starter-envo-03600040.html","fermentation starter"],["fruit-bto-0000486.html","fruit"],["mammary-epithelial-cell-bto-0004300.html","mammary epithelial cell"],["mammary-gland-bto-0000817.html","mammary gland"]],"b":[["environment/aerotolerant.html","aerotolerant"],["genomics/abia_system.html","AbiA system"],["genomics/abib_system.html","AbiB system"],["genomics/abic_system.html","AbiC system"],["genomics/abid_system.html","AbiD system"],["genomics/abie_system.html","AbiE system"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":10,"nb":18,"a":[["anther-bto-0000079.html","anther"],["epithelial-cell-bto-0000414.html","epithelial cell"],["antibiotic-treatment-habitatmech-bacdive-bb97519ae8.html","Antibiotic-treatment"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["engineered-habitatmech-bacdive-7d4708950e.html","Engineered"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"]],"b":[["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/neutrophilic.html","neutrophilic"],["environment/non_halophilic.html","non halophilic"],["genomics/spbk_system.html","SpbK system"]]},{"id":"NCBITaxon:1085","l":"Rhodospirillum rubrum","na":19,"nb":6,"a":[["biofilm-envo-00002034.html","biofilm"],["brackish-water-body-envo-01001321.html","brackish water body"],["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["liquid-water-envo-00002006.html","liquid water"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["river-envo-00000022.html","river"]],"b":[["metabolism/phototrophy.html","phototrophy"],["morphology/spiral_shaped.html","spiral shaped"],["physiology/carboxydotrophic.html","carboxydotrophic"],["physiology/photoheterotrophic.html","photoheterotrophic"],["physiology/photoorganoheterotrophic.html","photoorganoheterotrophic"],["physiology/phototrophic.html","phototrophic"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":13,"nb":6,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["hospital-envo-00002173.html","hospital"],["neutrophil-bto-0000130.html","neutrophil"],["rectum-bto-0001158.html","rectum"],["spleen-bto-0001281.html","spleen"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["metabolism/butanediol_fermentation.html","2,3-butanediol fermentation"],["metabolism/citrate_fermentation.html","citrate fermentation"],["morphology/capsule.html","capsule"],["morphology/non_motile.html","non motile"],["other/indole_test_negative.html","indole test negative"],["other/methyl_red_test_negative.html","methyl red test negative"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":11,"nb":6,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["resting-cell-bto-0001170.html","resting cell"],["seedling-bto-0001228.html","seedling"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["ecology/free_living.html","free-living"],["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["genomics/transposable_element.html","transposable element"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"]]},{"id":"NCBITaxon:1299","l":"Deinococcus radiodurans","na":7,"nb":6,"a":[["animal-house-envo-00003040.html","animal house"],["engineered-product-habitatmech-bacdive-9c253e43c0.html","Engineered-product"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["water-scum-envo-00005794.html","water scum"],["meadow-soil-envo-00005761.html","meadow soil"],["mixed-forest-biome-envo-01000198.html","mixed forest biome"]],"b":[["environment/ionizing_radiation_tolerant.html","ionizing radiation tolerant"],["environment/radiotolerant.html","radiotolerant"],["environment/uv_radiation_tolerant.html","UV radiation tolerant"],["environment/xerophilic.html","xerophilic"],["morphology/orange_pigmented.html","orange pigmented"],["physiology/stress_response.html","stress response"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":7,"nb":6,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["pseudostem-bto-0005992.html","pseudostem"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"],["patient-habitatmech-bacdive-b8fea19ee8.html","Patient"]],"b":[["ecology/animal_pathogen.html","animal pathogen"],["ecology/biosafety_level_2.html","biosafety level 2"],["genomics/genomic_island.html","genomic island"],["genomics/prophage.html","prophage"],["morphology/flagellated.html","flagellated"],["morphology/peritrichous.html","peritrichous"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":27,"nb":5,"a":[["small-river-biome-envo-00000890.html","small river biome"],["factory-envo-01000536.html","factory"],["organic-waste-material-envo-00002873.html","organic waste material"],["leaf-po-0025034.html","leaf"],["milk-uberon-0001913.html","milk"],["rhizosphere-envo-00005801.html","rhizosphere"]],"b":[["genomics/gabija_system.html","Gabija system"],["genomics/shedu_system.html","Shedu system"],["genomics/thoeris_system.html","Thoeris system"],["physiology/caseinase_activity.html","caseinase activity"],["physiology/lecithinase_activity.html","lecithinase activity"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":5,"nb":9,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"],["feces-uberon-0001988.html","feces"],["rectum-bto-0001158.html","rectum"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["food-production-habitatmech-bacdive-b415adf879.html","Food-production"]],"b":[["environment/euryhaline.html","euryhaline"],["genomics/dartg_system.html","DarTG system"],["genomics/ddmde_system.html","DdmDE system"],["genomics/genomic_island.html","genomic island"],["genomics/lamassu_system.html","Lamassu system"],["genomics/nixi_system.html","NixI system"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":6,"nb":5,"a":[["humid-habitatmech-bacdive-0fa0234f43.html","Humid"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"],["sludge-envo-00002044.html","sludge"],["forested-area-envo-00000111.html","forested area"],["scrubland-area-envo-00000300.html","scrubland area"],["soil-envo-00001998.html","soil"]],"b":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"],["physiology/hydrogenotrophic.html","hydrogenotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"]]},{"id":"NCBITaxon:1773","l":"Mycobacterium tuberculosis","na":5,"nb":5,"a":[["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["posterior-lobe-bto-0000561.html","posterior lobe"],["sputum-bto-0001297.html","sputum"],["thorax-bto-0001368.html","thorax"],["thp-1-cell-bto-0001370.html","THP-1 cell"]],"b":[["ecology/biosafety_level_3.html","biosafety level 3"],["ecology/human_pathogen.html","human pathogen"],["physiology/acid_phosphatase_activity.html","acid phosphatase activity"],["physiology/dormancy.html","dormancy"],["physiology/pyrazinamidase_activity.html","pyrazinamidase activity"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":5,"a":[["food-preserved-foodon-00002158.html","food (preserved)"],["digestive-system-secreted-substance-uberon-0006911.html","digestive system secreted substance"],["midgut-bto-0000863.html","midgut"],["paddy-field-envo-00000297.html","paddy field"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"]],"b":[["metabolism/chitinolysis.html","chitinolysis"],["morphology/pigmentation.html","pigmentation"],["morphology/red_pigmented.html","red pigmented"],["morphology/white_pigmented.html","white pigmented"],["physiology/beta_n_acetylhexosaminidase_activity.html","beta-N-acetylhexosaminidase activity"]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":12,"nb":4,"a":[["hospital-envo-00002173.html","hospital"],["cerebrospinal-fluid-bto-0000237.html","cerebrospinal fluid"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["epithelial-cell-bto-0000414.html","epithelial cell"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["meninx-bto-0000144.html","meninx"]],"b":[["morphology/diplococcus_shaped.html","diplococcus shaped"],["morphology/non_motile.html","non motile"],["morphology/sphere_shaped.html","sphere shaped"],["physiology/natural_competence.html","natural competence"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":4,"nb":7,"a":[["reservoir-envo-00000025.html","reservoir"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["industrial-habitatmech-bacdive-a60a058479.html","Industrial"],["medical-product-habitatmech-bacdive-5209e5b46e.html","Medical-product"]],"b":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/copper_tolerant.html","copper tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["environment/metal_tolerant.html","metal tolerant"]]},{"id":"ENVO:01001057","l":"","na":6,"nb":4,"a":[["peat-moss-associated-environment-habitatmech-gold-7f57b82cab.html","peat moss-associated environment"],["part-of-plant-habitatmech-madin-25325947e2.html","part of plant"],["root-rhizome-habitatmech-bacdive-7945156e00.html","Root-Rhizome"],["root-or-stem-rot-environment-habitatmech-bacdive-04ddbbeabe.html","root-or-stem rot environment"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"],["sterilized-plant-part-habitatmech-bacdive-27fe5ab8fb.html","Sterilized-plant-part"]],"b":[["environment/strictly_anaerobic.html","strictly anaerobic"],["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/disproportionation.html","Disproportionation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":33,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"],["lake-envo-00000020.html","lake"],["liquid-water-envo-00002006.html","liquid water"],["pond-water-envo-00002228.html","pond water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"],["water-body-envo-00000063.html","water body"]],"b":[["environment/aerobic.html","aerobic"],["environment/obligately_aerobic.html","obligately aerobic"],["morphology/tetrad_arrangement.html","tetrad arrangement"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":25,"nb":3,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-water-body-envo-00001999.html","marine water body"],["sea-water-envo-00002149.html","sea water"],["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["urinary-bladder-stone-ncit-c26707.html","Urinary Bladder Stone"]],"b":[["ecology/commensalism.html","commensalism"],["genomics/nhi_system.html","Nhi system"],["other/coagulase_negative.html","coagulase negative"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":18,"nb":3,"a":[["aquatic-biome-envo-00002030.html","aquatic biome"],["eutrophic-water-envo-00002224.html","eutrophic water"],["watercourse-envo-00000029.html","watercourse"],["factory-envo-01000536.html","factory"],["laboratory-facility-envo-01001406.html","laboratory facility"],["egg-food-product-foodon-00001274.html","egg food product"]],"b":[["ecology/rhizosphere_association.html","rhizosphere association"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/psychrotolerant.html","psychrotolerant"]]},{"id":"NCBITaxon:1314","l":"Streptococcus pyogenes","na":9,"nb":3,"a":[["estuarine-biome-envo-01000020.html","estuarine biome"],["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"],["epithelial-cell-bto-0000414.html","epithelial cell"],["nasopharynx-bto-0000662.html","nasopharynx"],["skin-of-body-uberon-0002097.html","skin of body"],["throat-bto-0000828.html","throat"]],"b":[["environment/aerotolerant.html","aerotolerant"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"],["morphology/streptococcus_arrangement.html","streptococcus arrangement"]]},{"id":"NCBITaxon:210","l":"Helicobacter pylori","na":8,"nb":3,"a":[["biopsy-habitatmech-bacdive-3d4fdc29fb.html","Biopsy"],["hospital-envo-00002173.html","hospital"],["duodenum-bto-0000365.html","duodenum"],["gastric-juice-bto-0000501.html","gastric juice"],["gastric-mucosa-bto-0001308.html","gastric mucosa"],["gastric-ulcer-bto-0002990.html","gastric ulcer"]],"b":[["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/helical_shaped.html","helical shaped"],["morphology/lophotrichous.html","lophotrichous"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":16,"nb":2,"a":[["fresh-water-envo-00002011.html","fresh water"],["lake-envo-00000020.html","lake"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["liquid-water-envo-00002006.html","liquid water"],["saline-lake-sediment-envo-00002209.html","saline lake sediment"]],"b":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"]]},{"id":"NCBITaxon:727","l":"Haemophilus influenzae","na":9,"nb":2,"a":[["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["head-bto-0000282.html","head"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"],["disease-habitatmech-bacdive-c659c7e939.html","Disease"],["infection-habitatmech-bacdive-995fbdda26.html","Infection"]],"b":[["genomics/restriction_modification_system.html","restriction-modification system"],["morphology/coccobacillus_shaped.html","coccobacillus shaped"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":8,"nb":2,"a":[["reservoir-envo-00000025.html","reservoir"],["epithelium-bto-0000416.html","epithelium"],["goblet-cell-bto-0001540.html","goblet cell"],["murid-associated-environment-habitatmech-bacdive-ab17ecb10f.html","murid-associated environment"],["secretion-bto-0002979.html","secretion"],["stomach-bto-0001307.html","stomach"]],"b":[["genomics/abialpha_system.html","AbiAlpha system"],["physiology/gelatinase_activity.html","gelatinase activity"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":4,"nb":2,"a":[["bioreactor-envo-00002123.html","bioreactor"],["human-construction-envo-00000070.html","human construction"],["sediment-envo-00002007.html","sediment"],["woodland-area-envo-00000109.html","woodland area"]],"b":[["genomics/gc_mid1.html","GC mid1"],["metabolism/lignin_degradation.html","lignin degradation"]]},{"id":"NCBITaxon:2746","l":"Halomonas elongata","na":2,"nb":4,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"],["saline-water-body-envo-01001319.html","saline water body"]],"b":[["environment/euryhaline.html","euryhaline"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/moderately_halophilic.html","moderately halophilic"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":2,"nb":4,"a":[["blanket-bog-envo-00000511.html","blanket bog"],["peat-soil-envo-00005774.html","peat soil"]],"b":[["ecology/mutualism.html","mutualism"],["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["ecology/symbiosis.html","symbiosis"],["genomics/hna_system.html","Hna system"]]},{"id":"NCBITaxon:1108","l":"Chloroflexus aurantiacus","na":3,"nb":2,"a":[["rhizosphere-envo-00005801.html","rhizosphere"],["rock-envo-00001995.html","rock"],["tropical-moist-broadleaf-forest-biome-envo-01000228.html","tropical moist broadleaf forest biome"]],"b":[["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["morphology/green_pigmented.html","green pigmented"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":3,"nb":2,"a":[["milk-uberon-0001913.html","milk"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["genomics/crispr_cas_system.html","CRISPR-Cas system"],["genomics/phage_defense_system.html","phage defense system"]]},{"id":"NCBITaxon:1525","l":"Neomoorella thermoacetica","na":2,"nb":3,"a":[["liquid-water-envo-00002006.html","liquid water"],["equid-associated-environment-habitatmech-bacdive-09c3544e85.html","equid-associated environment"]],"b":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":2,"a":[["blood-plasma-bto-0000131.html","blood plasma"],["bronchoalveolar-lavage-fluid-bto-0000155.html","bronchoalveolar lavage fluid"],["lung-epithelium-bto-0001653.html","lung epithelium"]],"b":[["genomics/wadjet_system.html","Wadjet system"],["morphology/irregular_shaped.html","irregular shaped"]]},{"id":"NCBITaxon:317655","l":"Sphingopyxis alaskensis RB2256","na":3,"nb":2,"a":[["aquifer-envo-00012408.html","aquifer"],["environmental-material-envo-00010483.html","environmental material"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":2,"nb":3,"a":[["hospital-envo-00002173.html","hospital"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["environment/anaerobic.html","anaerobic"],["environment/strictly_anaerobic.html","strictly anaerobic"],["metabolism/fumarate_respiration.html","fumarate respiration"]]},{"id":"NCBITaxon:292415","l":"Thiobacillus denitrificans ATCC 25259","na":2,"nb":2,"a":[["large-river-biome-envo-00000887.html","large river biome"],["river-bed-envo-00000384.html","river bed"]],"b":[["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/chemoautotrophic.html","chemoautotrophic"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":19,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["small-freshwater-lake-biome-envo-00000892.html","small freshwater lake biome"],["laboratory-facility-envo-01001406.html","laboratory facility"],["organic-waste-material-envo-00002873.html","organic waste material"],["bone-element-uberon-0001474.html","bone element"],["animal-produced-food-natural-habitatmech-bacdive-57e74dd487.html","Animal-produced-food-natural"]],"b":[["metabolism/starch_degradation.html","starch degradation"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":17,"nb":1,"a":[["catheter-device-ncit-c50344.html","Catheter Device"],["animal-house-envo-00003040.html","animal house"],["hospital-envo-00002173.html","hospital"],["egg-food-product-foodon-00001274.html","egg food product"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"]],"b":[["other/catalase_negative.html","catalase negative"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":14,"nb":1,"a":[["low-tide-zone-envo-00000319.html","low tide zone"],["compost-envo-00002170.html","compost"],["organic-waste-material-envo-00002873.html","organic waste material"],["larva-bto-0000707.html","larva"],["rhizosphere-envo-00005801.html","rhizosphere"],["vegetative-cell-bto-0001434.html","vegetative cell"]],"b":[["physiology/lipase_activity.html","lipase activity"]]},{"id":"NCBITaxon:173","l":"Leptospira interrogans","na":14,"nb":1,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"],["lake-inlet-envo-00000476.html","lake inlet"],["large-freshwater-lake-biome-envo-00000891.html","large freshwater lake biome"],["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["small-river-biome-envo-00000890.html","small river biome"],["surface-water-envo-00002042.html","surface water"]],"b":[["morphology/axially_filamented.html","axially filamented"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":14,"nb":1,"a":[["watercourse-envo-00000029.html","watercourse"],["aquatic-macrophyte-associated-environment-habitatmech-bacdive-38260eea00.html","aquatic macrophyte-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["leaf-po-0025034.html","leaf"]],"b":[["morphology/gliding.html","gliding"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":10,"nb":1,"a":[["bovine-associated-environment-habitatmech-bacdive-a4a67c4a7f.html","bovine-associated environment"],["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"],["caprine-associated-environment-habitatmech-bacdive-4d3086a839.html","caprine-associated environment"],["environmental-system-determined-by-an-organism-envo-01001000.html","environmental system determined by an organism"],["feces-uberon-0001988.html","feces"],["human-associated-environment-habitatmech-gold-cd0b0940e5.html","human-associated environment"]],"b":[["environment/microaerophilic.html","microaerophilic"]]},{"id":"NCBITaxon:1639","l":"Listeria monocytogenes","na":9,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["brain-bto-0000142.html","brain"],["central-nervous-system-bto-0000227.html","central nervous system"],["fruit-bto-0000486.html","fruit"],["placenta-bto-0001078.html","placenta"],["bodily-fluid-material-envo-02000019.html","bodily fluid material"]],"b":[["environment/psychrotolerant.html","psychrotolerant"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":8,"nb":1,"a":[["groundwater-envo-01001004.html","groundwater"],["bioreactor-envo-00002123.html","bioreactor"],["river-envo-00000022.html","river"],["freshwater-environment-envo-01000306.html","freshwater environment"],["sediment-envo-00002007.html","sediment"],["soil-envo-00001998.html","soil"]],"b":[["physiology/photoheterotrophic.html","photoheterotrophic"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":8,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["wood-bto-0005516.html","wood"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"]],"b":[["ecology/plant_pathogen.html","plant pathogen"]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":8,"nb":1,"a":[["fruit-seed-habitatmech-bacdive-ba016fe448.html","Fruit-Seed"],["leaf-po-0025034.html","leaf"],["plant-associated-environment-envo-01001001.html","plant-associated environment"],["tree-associated-environment-habitatmech-bacdive-3192a0f47e.html","tree-associated environment"],["plant-infections-habitatmech-bacdive-2f22b1d05b.html","Plant-infections"],["leaf-or-stem-spot-lesion-environment-habitatmech-bacdive-31392c69b9.html","leaf-or-stem spot lesion environment"]],"b":[["morphology/yellow_pigmented.html","yellow pigmented"]]},{"id":"NCBITaxon:1053","l":"Halorhodospira halophila","na":7,"nb":1,"a":[["river-envo-00000022.html","river"],["biofilm-material-envo-01000156.html","biofilm material"],["marine-environment-envo-01000320.html","marine environment"],["organic-feature-envo-01000159.html","organic feature"],["organic-material-envo-01000155.html","organic material"],["sediment-envo-00002007.html","sediment"]],"b":[["environment/haloalkaliphilic.html","haloalkaliphilic"]]},{"id":"NCBITaxon:1267","l":"Sarcina ventriculi","na":7,"nb":1,"a":[["swamp-ecosystem-envo-00000233.html","swamp ecosystem"],["anthropogenic-environmental-material-envo-0010001.html","anthropogenic environmental material"],["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["fresh-animal-manure-envo-00003032.html","fresh animal manure"],["geographic-feature-envo-00000000.html","geographic feature"],["organic-object-formed-through-microbial-activity-envo-01000007.html","organic object formed through microbial activity"]],"b":[["morphology/sarcina_arrangement.html","sarcina arrangement"]]},{"id":"NCBITaxon:1488","l":"Clostridium acetobutylicum","na":1,"nb":7,"a":[["peatland-envo-00000044.html","peatland"]],"b":[["environment/anaerobic.html","anaerobic"],["environment/obligately_anaerobic.html","obligately anaerobic"],["metabolism/fermentation.html","Fermentation"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"],["morphology/gram_variable.html","gram variable"],["morphology/spindle_shaped.html","spindle shaped"]]},{"id":"NCBITaxon:1830","l":"Rhodococcus ruber","na":6,"nb":1,"a":[["bioremediation-habitatmech-bacdive-99663bb3ee.html","Bioremediation"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["contamination-habitatmech-bacdive-0c0740efd8.html","Contamination"],["lithic-environmental-material-habitatmech-bacdive-bf10ea3ae4.html","lithic environmental material"],["waste-habitatmech-bacdive-36df85e4a4.html","Waste"],["water-treatment-plant-habitatmech-bacdive-13ab77c66c.html","Water-treatment-plant"]],"b":[["morphology/orange_pigmented.html","orange pigmented"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":6,"a":[["water-scum-envo-00005794.html","water scum"]],"b":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/oxidase_activity.html","oxidase activity"]]},{"id":"NCBITaxon:266264","l":"Cupriavidus metallidurans CH34","na":1,"nb":6,"a":[["aquifer-envo-00012408.html","aquifer"]],"b":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/copper_tolerant.html","copper tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["environment/zinc_tolerant.html","zinc tolerant"]]},{"id":"PATO:0001430","l":"","na":1,"nb":6,"a":[["inland-saline-or-alkaline-aquatic-environment-habitatmech-gold-ce244e62cd.html","inland saline or alkaline aquatic environment"]],"b":[["environment/alkalotolerant.html","alkalotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"],["environment/obligately_alkaphilic.html","obligately alkaliphilic"],["environment/ph_growth_preference.html","pH growth preference"],["environment/ph_optimum_high.html","pH optimum high"]]},{"id":"NCBITaxon:129958","l":"Carboxydothermus hydrogenoformans","na":5,"nb":1,"a":[["biofilm-envo-00002034.html","biofilm"],["marine-cold-seep-biome-envo-01000127.html","marine cold seep biome"],["stream-envo-00000023.html","stream"],["temperate-envo-01000206.html","temperate"],["seep-envo-01000262.html","seep"]],"b":[["physiology/carboxydotrophic.html","carboxydotrophic"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":1,"nb":5,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["metabolism/dimethyl_sulfoxide_respiration.html","dimethyl sulfoxide respiration"],["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/electron_transfer.html","Electron transfer"]]},{"id":"NCBITaxon:224911","l":"Bradyrhizobium diazoefficiens USDA 110","na":5,"nb":1,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["environmental-material-envo-00010483.html","environmental material"],["microbial-mat-material-envo-01000157.html","microbial mat material"],["agricultural-soil-envo-00002259.html","agricultural soil"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["morphology/subpolar_flagellation.html","subpolar flagellation"]]},{"id":"NCBITaxon:228410","l":"Nitrosomonas europaea ATCC 19718","na":1,"nb":5,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"],["physiology/lithotrophic.html","lithotrophic"]]},{"id":"NCBITaxon:747","l":"Pasteurella multocida","na":5,"nb":1,"a":[["bronchus-uberon-0002185.html","bronchus"],["felid-associated-environment-habitatmech-bacdive-e6b73de092.html","felid-associated environment"],["finger-bto-0004669.html","finger"],["suid-associated-environment-habitatmech-bacdive-3a13ee8a57.html","suid-associated environment"],["stony-desert-envo-00000183.html","stony desert"]],"b":[["ecology/animal_pathogen.html","animal pathogen"]]},{"id":"PATO:0001456","l":"","na":1,"nb":5,"a":[["anaerobic-wastewater-treatment-reactor-habitatmech-gold-bb0eb00ccb.html","anaerobic wastewater treatment reactor"]],"b":[["environment/anaerobic.html","anaerobic"],["environment/strictly_anaerobic.html","strictly anaerobic"],["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/disproportionation.html","Disproportionation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"]]},{"id":"NCBITaxon:1111735","l":"Sedimenticola selenatireducens DSM 17993","na":4,"nb":1,"a":[["brackish-water-body-envo-01001321.html","brackish water body"],["estuarine-biome-envo-01000020.html","estuarine biome"],["estuary-envo-00000045.html","estuary"],["watercourse-envo-00000029.html","watercourse"]],"b":[["metabolism/selenate_respiration.html","selenate respiration"]]},{"id":"NCBITaxon:1156985","l":"Epibacterium ulvae","na":4,"nb":1,"a":[["bar-envo-00000167.html","bar"],["tidal-mudflat-envo-00000241.html","tidal mudflat"],["alga-associated-environment-habitatmech-gold-02383c20a7.html","alga-associated environment"],["peninsula-envo-00000305.html","peninsula"]],"b":[["other/epibiont_phenotype.html","epibiont phenotype"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":4,"nb":1,"a":[["bottled-canned-packed-food-habitatmech-bacdive-2acf2810c5.html","Bottled,-canned,-packed-food"],["high-temperature-environment-envo-01000305.html","high temperature environment"],["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"],["compost-soil-envo-00005747.html","compost soil"]],"b":[["morphology/s_layer.html","S-layer"]]},{"id":"NCBITaxon:237727","l":"Erythrobacter sp. NAP1","na":4,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"],["pond-water-envo-00002228.html","pond water"],["small-river-biome-envo-00000890.html","small river biome"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["physiology/aerobic_anoxygenic_phototrophy.html","aerobic anoxygenic phototrophy"]]},{"id":"NCBITaxon:651","l":"Aeromonas media","na":4,"nb":1,"a":[["aquaculture-farm-envo-03600074.html","aquaculture farm"],["food-preserved-foodon-00002158.html","food (preserved)"],["sterilized-desinfected-habitatmech-bacdive-aabf4aeae4.html","Sterilized-Desinfected"],["treatment-habitatmech-bacdive-e3272331b8.html","Treatment"]],"b":[["morphology/brown_pigmented.html","brown pigmented"]]},{"id":"CHEBI:16183","l":"methane","na":1,"nb":3,"a":[["methane-bioremediation-material-habitatmech-gold-d510166905.html","methane bioremediation material"]],"b":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/methanogenesis.html","Methanogenesis"],["physiology/methanotrophic.html","methanotrophic"]]},{"id":"NCBITaxon:1519","l":"Clostridium tyrobutyricum","na":3,"nb":1,"a":[["biotic-mesoscopic-physical-object-envo-01000009.html","biotic mesoscopic physical object"],["contaminant-habitatmech-bacdive-4d06ff4bb5.html","Contaminant"],["peatland-envo-00000044.html","peatland"]],"b":[["metabolism/butyric_acid_fermentation.html","butyric acid fermentation"]]},{"id":"NCBITaxon:1570","l":"Halobacillus halophilus","na":3,"nb":1,"a":[["marine-salt-marsh-biome-envo-01000022.html","marine salt marsh biome"],["saline-water-body-envo-01001319.html","saline water body"],["condition-habitatmech-bacdive-9b21b7d13b.html","Condition"]],"b":[["environment/halotolerant.html","halotolerant"]]},{"id":"NCBITaxon:1717","l":"Corynebacterium diphtheriae","na":3,"nb":1,"a":[["foot-bto-0000476.html","foot"],["upper-aerodigestive-tract-environment-habitatmech-bacdive-3974b3f169.html","upper aerodigestive tract environment"],["swab-habitatmech-bacdive-ebdac6db98.html","Swab"]],"b":[["morphology/dumbbell_shaped.html","dumbbell shaped"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa PAO1","na":1,"nb":3,"a":[["style-bto-0001313.html","style"]],"b":[["ecology/biofilm_formation.html","biofilm formation"],["morphology/twitching_motility.html","twitching motility"],["morphology/type_iv_pilus.html","type IV pilus"]]},{"id":"NCBITaxon:2242","l":"Halobacterium salinarum","na":1,"nb":3,"a":[["saline-water-body-envo-01001319.html","saline water body"]],"b":[["environment/extremely_halophilic.html","extremely halophilic"],["environment/halophilic.html","halophilic"],["morphology/intracellular_inclusion.html","intracellular inclusion"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK 1622","na":3,"nb":1,"a":[["aquatic-environment-envo-01000317.html","aquatic environment"],["agricultural-soil-envo-00002259.html","agricultural soil"],["bulk-soil-envo-00005802.html","bulk soil"]],"b":[["morphology/gliding.html","gliding"]]},{"id":"NCBITaxon:29405","l":"Microlunatus phosphovorus","na":3,"nb":1,"a":[["water-scum-envo-00005794.html","water scum"],["orchard-envo-00000115.html","orchard"],["temperate-grassland-biome-envo-01000193.html","temperate grassland biome"]],"b":[["morphology/polyphosphate_granule.html","polyphosphate granule"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":3,"nb":1,"a":[["bile-bto-0000121.html","bile"],["rectum-bto-0001158.html","rectum"],["specimen-habitatmech-bacdive-db240195f6.html","Specimen"]],"b":[["ecology/opportunistic_pathogen.html","opportunistic pathogen"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":3,"nb":1,"a":[["food-production-habitatmech-bacdive-b415adf879.html","Food-production"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"],["microbial-habitatmech-bacdive-e01be4868f.html","Microbial"]],"b":[["morphology/polar_flagellation.html","polar flagellation"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":1,"nb":3,"a":[["photophore-bto-0001477.html","photophore"]],"b":[["ecology/mutualism.html","mutualism"],["physiology/bioluminescence.html","bioluminescence"],["physiology/quorum_sensing.html","quorum sensing"]]},{"id":"NCBITaxon:94122","l":"Shewanella sp. ANA-3","na":3,"nb":1,"a":[["alkaline-water-envo-01000357.html","alkaline water"],["brackish-estuary-envo-00002137.html","brackish estuary"],["underground-water-envo-00005792.html","underground water"]],"b":[["metabolism/arsenate_respiration.html","arsenate respiration"]]},{"id":"ENVO:01000687","l":"","na":1,"nb":2,"a":[["sea-coast-envo-00000303.html","sea coast"]],"b":[["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"]]},{"id":"ENVO:01001040","l":"saline environment","na":1,"nb":2,"a":[["saline-environment-envo-01001040.html","saline environment"]],"b":[["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"]]},{"id":"NCBITaxon:1097","l":"Chlorobaculum tepidum","na":1,"nb":2,"a":[["sulfuric-habitatmech-bacdive-f655f51b59.html","Sulfuric"]],"b":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"],["morphology/green_pigmented.html","green pigmented"]]},{"id":"NCBITaxon:1182451","l":"Aureivirga marina","na":1,"nb":2,"a":[["sponge-associated-environment-habitatmech-gold-64acf9132c.html","sponge-associated environment"]],"b":[["environment/nacl_delta_mid1.html","NaCl delta mid1"],["environment/nacl_range_mid2.html","NaCl range mid2"]]},{"id":"NCBITaxon:1385984","l":"Exiguobacterium chiriqhucha","na":2,"nb":1,"a":[["water-ice-envo-01000277.html","water ice"],["peak-envo-00000480.html","peak"]],"b":[["environment/temperature_delta_high.html","temperature delta high"]]},{"id":"NCBITaxon:139","l":"Borreliella burgdorferi","na":2,"nb":1,"a":[["joint-bto-0001686.html","joint"],["needle-bto-0000917.html","needle"]],"b":[["genomics/plasmid_carriage.html","plasmid carriage"]]},{"id":"NCBITaxon:165695","l":"Sphingobium","na":2,"nb":1,"a":[["juvenile-bto-0002168.html","juvenile"],["leaf-bto-0000713.html","leaf"]],"b":[["metabolism/lignin_degradation.html","lignin degradation"]]},{"id":"NCBITaxon:167879","l":"Colwellia psychrerythraea 34H","na":2,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["soil-envo-00001998.html","soil"]],"b":[["environment/psychrophilic.html","psychrophilic"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":2,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"],["environmental-feature-envo-00002297.html","environmental feature"]],"b":[["morphology/branched_shaped.html","branched shaped"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii DSM 2661","na":2,"nb":1,"a":[["saline-marsh-envo-00000054.html","saline marsh"],["silty-sediment-envo-01000119.html","silty sediment"]],"b":[["metabolism/methanogenesis.html","Methanogenesis"]]},{"id":"NCBITaxon:243273","l":"Mycoplasmoides genitalium G37","na":1,"nb":2,"a":[["capillary-bto-0002045.html","capillary"]],"b":[["genomics/gc_high.html","GC high"],["genomics/genome_size.html","genome size"]]},{"id":"NCBITaxon:28264","l":"Arcanobacterium haemolyticum","na":2,"nb":1,"a":[["foot-bto-0000476.html","foot"],["other-habitatmech-bacdive-1cc8e3791c.html","Other"]],"b":[["physiology/alpha_mannosidase_activity.html","alpha-mannosidase activity"]]},{"id":"NCBITaxon:293091","l":"Haloquadratum walsbyi","na":2,"nb":1,"a":[["small-river-biome-envo-00000890.html","small river biome"],["sulfur-spring-envo-00000126.html","sulfur spring"]],"b":[["morphology/square_shaped.html","square shaped"]]},{"id":"NCBITaxon:313590","l":"Dokdonia sp. MED134","na":2,"nb":1,"a":[["oligotrophic-water-envo-00002223.html","oligotrophic water"],["microbial-mat-material-envo-01000157.html","microbial mat material"]],"b":[["metabolism/proteorhodopsin_phototrophy.html","proteorhodopsin phototrophy"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans PD1222","na":2,"nb":1,"a":[["hydrographic-feature-envo-00000012.html","hydrographic feature"],["sewage-plant-envo-00003043.html","sewage plant"]],"b":[["physiology/mixotrophic.html","mixotrophic"]]},{"id":"NCBITaxon:334543","l":"Psychrobacter arcticus","na":1,"nb":2,"a":[["permafrost-envo-00000134.html","permafrost"]],"b":[["environment/delta_phenotype_with_numerical_limits.html","delta phenotype with numerical limits"],["environment/facultative_psychrophilic.html","facultative psychrophilic"]]},{"id":"NCBITaxon:521674","l":"Planctopirus limnophila DSM 3776","na":2,"nb":1,"a":[["liquid-water-envo-00002006.html","liquid water"],["surface-soil-envo-02000059.html","surface soil"]],"b":[["morphology/flask_shaped.html","flask shaped"]]},{"id":"NCBITaxon:542","l":"Zymomonas mobilis","na":1,"nb":2,"a":[["juice-natural-habitatmech-bacdive-0b7fa25ca9.html","Juice-natural"]],"b":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["physiology/nad_dependent_alcohol_dehydrogenase_activity.html","NAD-dependent alcohol dehydrogenase activity"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":2,"nb":1,"a":[["watercourse-envo-00000029.html","watercourse"],["invertebrates-other-habitatmech-bacdive-e864a16f03.html","Invertebrates-Other"]],"b":[["morphology/lateral_flagellation.html","lateral flagellation"]]},{"id":"NCBITaxon:74109","l":"Photobacterium profundum","na":1,"nb":2,"a":[["deep-marine-sediment-envo-00002113.html","deep marine sediment"]],"b":[["environment/piezophilic.html","piezophilic"],["environment/piezotolerant.html","piezotolerant"]]},{"id":"NCBITaxon:86665","l":"Halalkalibacterium halodurans","na":1,"nb":2,"a":[["livestock-husbandry-habitatmech-bacdive-ec17e237ad.html","Livestock-Husbandry"]],"b":[["environment/alkalotolerant.html","alkalotolerant"],["environment/alkaphilic.html","alkaliphilic"]]},{"id":"ENVO:01000309","l":"cold environment","na":1,"nb":1,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["environment/temperature_optimum_very_low.html","temperature optimum very low"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. PCC 7120 = FACHB-418","na":1,"nb":1,"a":[["freshwater-biome-envo-00000873.html","freshwater biome"]],"b":[["morphology/heterocyst.html","heterocyst"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":1,"nb":1,"a":[["sludge-envo-00002044.html","sludge"]],"b":[["physiology/urease_activity.html","urease activity"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":1,"a":[["cotton-other-fibres-habitatmech-bacdive-009b89b30a.html","Cotton-other-fibres"]],"b":[["metabolism/cellulolysis.html","cellulolysis"]]},{"id":"NCBITaxon:1579","l":"Lactobacillus acidophilus","na":1,"nb":1,"a":[["fermentation-starter-envo-03600040.html","fermentation starter"]],"b":[["environment/acidotolerant.html","acidotolerant"]]},{"id":"NCBITaxon:1599","l":"Latilactobacillus sakei","na":1,"nb":1,"a":[["research-facility-envo-00000469.html","research facility"]],"b":[["physiology/arginine_dihydrolase_activity.html","arginine dihydrolase activity"]]},{"id":"NCBITaxon:1744","l":"Propionibacterium freudenreichii","na":1,"nb":1,"a":[["stony-desert-envo-00000183.html","stony desert"]],"b":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":1,"nb":1,"a":[["coniferous-forest-biome-envo-01000196.html","coniferous forest biome"]],"b":[["physiology/alkaline_phosphatase_activity.html","alkaline phosphatase activity"]]},{"id":"NCBITaxon:192222","l":"Campylobacter jejuni subsp. jejuni NCTC 11168 = ATCC 700819","na":1,"nb":1,"a":[["flagellate-bto-0000464.html","flagellate"]],"b":[["environment/capnophilic.html","capnophilic"]]},{"id":"NCBITaxon:2283","l":"Acidianus ambivalens","na":1,"nb":1,"a":[["volcano-envo-00000247.html","volcano"]],"b":[["metabolism/disproportionation.html","Disproportionation"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima MSB8","na":1,"nb":1,"a":[["feather-bto-0000447.html","feather"]],"b":[["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"]]},{"id":"NCBITaxon:272630","l":"Methylorubrum extorquens AM1","na":1,"nb":1,"a":[["human-construction-envo-00000070.html","human construction"]],"b":[["physiology/methylotrophic.html","methylotrophic"]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":1,"nb":1,"a":[["subgingival-dental-plaque-uberon-0016484.html","subgingival dental plaque"]],"b":[["physiology/alpha_fucosidase_activity.html","alpha-fucosidase activity"]]},{"id":"NCBITaxon:33952","l":"Acetobacterium woodii","na":1,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["metabolism/homoacetogenesis.html","Homoacetogenesis"]]},{"id":"NCBITaxon:357794","l":"Psychromonas ingrahamii","na":1,"nb":1,"a":[["climate-habitatmech-bacdive-1599585546.html","Climate"]],"b":[["environment/temperature_range_very_low.html","temperature range very low"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["wetland-area-envo-00000043.html","wetland area"]],"b":[["metabolism/photoferrotrophy.html","photoferrotrophy"]]},{"id":"NCBITaxon:399549","l":"Metallosphaera sedula DSM 5348","na":1,"nb":1,"a":[["solfatara-envo-00000217.html","solfatara"]],"b":[["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":1,"nb":1,"a":[["pseudostem-bto-0005992.html","pseudostem"]],"b":[["other/voges_proskauer_test_positive.html","Voges-Proskauer test positive"]]},{"id":"NCBITaxon:584","l":"Proteus mirabilis","na":1,"nb":1,"a":[["salivary-gland-bto-0001203.html","salivary gland"]],"b":[["morphology/swarming_motility.html","swarming motility"]]},{"id":"NCBITaxon:71421","l":"Haemophilus influenzae Rd KW20","na":1,"nb":1,"a":[["respiratory-mucosa-bto-0000973.html","respiratory mucosa"]],"b":[["genomics/restriction_modification_system.html","restriction-modification system"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis H37Rv","na":1,"nb":1,"a":[["tuberculous-granuloma-habitatmech-prego-c312b0d6fc.html","tuberculous granuloma"]],"b":[["physiology/dormancy.html","dormancy"]]},{"id":"NCBITaxon:844","l":"Wolinella succinogenes","na":1,"nb":1,"a":[["anoxic-water-envo-01000173.html","anoxic water"]],"b":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":1,"nb":1,"a":[["underground-water-envo-00005792.html","underground water"]],"b":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":1,"a":[["cold-environment-envo-01000309.html","cold environment"]],"b":[["morphology/motility.html","motility"]]},{"id":"NCBITaxon:99807","l":"Corynebacterium auriscanis","na":1,"nb":1,"a":[["canid-associated-environment-habitatmech-bacdive-33fde10528.html","canid-associated environment"]],"b":[["physiology/pyrrolidonyl_arylamidase_activity.html","pyrrolidonyl arylamidase activity"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/NaturalProductMech--AntibioticMech.json b/assets/fleet/edges/NaturalProductMech--AntibioticMech.json index f3de098..0c16a9f 100644 --- a/assets/fleet/edges/NaturalProductMech--AntibioticMech.json +++ b/assets/fleet/edges/NaturalProductMech--AntibioticMech.json @@ -1 +1 @@ -{"a":"NaturalProductMech","b":"AntibioticMech","base":{"NaturalProductMech":"https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/natural_products/","AntibioticMech":"https://culturebotai.github.io/AntibioticMech/pages/"},"n":278,"by":{"CHEBI":180,"NCBITaxon":96,"UniProt":2},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":24,"nb":30,"a":[["alkaloids/biotin.yaml","biotin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":12,"nb":12,"a":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"NCBITaxon:330879","l":"Aspergillus fumigatus (strain ATCC MYA-4609 / CBS 101355 / FGSC A1100 / Af293)","na":14,"nb":5,"a":[["alkaloids/fumigaclavine-c.yaml","fumigaclavine C"],["alkaloids/fumiquinazoline-a.yaml","fumiquinazoline A"],["alkaloids/fumiquinazoline-c.yaml","fumiquinazoline C"],["alkaloids/fumiquinazoline-d.yaml","fumiquinazoline D"],["alkaloids/hexadehydroastechrome.yaml","hexadehydroastechrome"],["polyketides/endocrocin.yaml","endocrocin"]],"b":[["antibacterial/fumagillin.html","fumagillin"],["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/terbinafine.html","terbinafine"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:5518","l":"Fusarium graminearum","na":14,"nb":5,"a":[["amino_acids_and_peptides/fusaoctaxin-a.yaml","fusaoctaxin A"],["polyketides/aurofusarin.yaml","aurofusarin"],["polyketides/fusarielin-h.yaml","fusarielin H"],["polyketides/gibepyrone-a.yaml","gibepyrone A"],["polyketides/prolipyrone-b.yaml","prolipyrone B"],["polyketides/zearalenone.yaml","zearalenone"]],"b":[["antifungal/carbendazim.html","carbendazim"],["antifungal/difenoconazole.html","difenoconazole"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/prochloraz.html","prochloraz"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":5,"nb":13,"a":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"],["unclassified/leuvalin.yaml","leuvalin"],["unclassified/phevalin.yaml","phevalin"],["unclassified/tyrvalin.yaml","tyrvalin"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/bromodeoxytopsentin.html","bromodeoxytopsentin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"NCBITaxon:229533","l":"Fusarium graminearum PH-1","na":11,"nb":5,"a":[["alkaloids/chrysogine.yaml","chrysogine"],["amino_acids_and_peptides/fusaoctaxin-a.yaml","fusaoctaxin A"],["polyketides/aurofusarin.yaml","aurofusarin"],["polyketides/prolipyrone-b.yaml","prolipyrone B"],["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"],["terpenoids/15-acetyldeoxynivalenol.yaml","15-acetyldeoxynivalenol"]],"b":[["antifungal/carbendazim.html","carbendazim"],["antifungal/difenoconazole.html","difenoconazole"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/prochloraz.html","prochloraz"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:40559","l":"Botrytis cinerea","na":23,"nb":4,"a":[["terpenoids/1-epibotrydial.yaml","1-epibotrydial"],["terpenoids/10-dehydroxy-dihydrobotrydialone.yaml","10-dehydroxy dihydrobotrydialone"],["terpenoids/10-epi-dihydrobotrydial.yaml","10-epi-dihydrobotrydial"],["terpenoids/10-oxo-dihydrobotrydial.yaml","10-Oxo-dihydrobotrydial"],["terpenoids/10-oxodehydrodihydrobotrydial.yaml","10-Oxodehydrodihydrobotrydial"],["terpenoids/10-oxodihydrobotry-1-9-4-5-diendial.yaml","10-Oxodihydrobotry-1(9),4(5)-diendial"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/iprodione.html","iprodione"],["antifungal/pyrisoxazole.html","pyrisoxazole"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":4,"nb":22,"a":[["alkaloids/tilivalline.yaml","tilivalline"],["amino_acids_and_peptides/colibactin.yaml","colibactin"],["amino_acids_and_peptides/klebsidin.yaml","klebsidin"],["carbohydrates/capsular-polysaccharide-2.yaml","capsular polysaccharide"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"]]},{"id":"NCBITaxon:746128","l":"Aspergillus fumigatus","na":20,"nb":4,"a":[["alkaloids/fumigaclavine-c.yaml","fumigaclavine C"],["alkaloids/fumiquinazoline-a.yaml","fumiquinazoline A"],["alkaloids/fumiquinazoline-c.yaml","fumiquinazoline C"],["alkaloids/fumiquinazoline-d.yaml","fumiquinazoline D"],["alkaloids/hexadehydroastechrome.yaml","hexadehydroastechrome"],["carbohydrates/tobramycin.yaml","tobramycin"]],"b":[["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/terbinafine.html","terbinafine"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:405948","l":"Saccharopolyspora erythraea NRRL 2338","na":7,"nb":4,"a":[["amino_acids_and_peptides/erythrochelin.yaml","erythrochelin"],["polyketides/erythromycin-a.yaml","erythromycin A"],["polyketides/erythromycin-b.yaml","erythromycin B"],["polyketides/erythromycin-c.yaml","erythromycin C"],["polyketides/erythromycin-d.yaml","erythromycin D"],["polyketides/flaviolin.yaml","flaviolin"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["unspecified/erythromycin-b.html","erythromycin B"],["unspecified/erythromycin-c.html","erythromycin C"],["unspecified/erythromycin-d.html","erythromycin D"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":16,"nb":3,"a":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["amino_acids_and_peptides/ericin-s.yaml","ericin S"],["amino_acids_and_peptides/iturin.yaml","iturin"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"NCBITaxon:1890","l":"Streptomyces antibioticus","na":14,"nb":3,"a":[["alkaloids/esmeraldin.yaml","esmeraldin"],["alkaloids/pentostatin.yaml","pentostatin"],["amino_acids_and_peptides/2-2-hydroxyethyl-clavam.yaml","(-)-2-(2-hydroxyethyl)clavam"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["amino_acids_and_peptides/scabichelin.yaml","scabichelin"],["amino_acids_and_peptides/valclavam.yaml","valclavam"]],"b":[["antibacterial/indanomycin.html","indanomycin"],["unspecified/oviedomycin.html","oviedomycin"],["unspecified/pentostatin.html","pentostatin"]]},{"id":"NCBITaxon:117187","l":"Fusarium verticillioides","na":8,"nb":3,"a":[["alkaloids/dihydrofusarin-c.yaml","dihydrofusarin C"],["alkaloids/epi-fusarin-c.yaml","epi-fusarin C"],["alkaloids/fusaric-acid.yaml","fusaric acid"],["alkaloids/fusarin-c.yaml","fusarin C"],["alkaloids/fusarin-d.yaml","fusarin D"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/fludioxonil.html","fludioxonil"]]},{"id":"NCBITaxon:1867","l":"Actinoplanes teichomyceticus","na":6,"nb":3,"a":[["amino_acids_and_peptides/teicoplanin-a2-1.yaml","Teicoplanin A2-1"],["amino_acids_and_peptides/teicoplanin-a2-2.yaml","teicoplanin A2-2"],["amino_acids_and_peptides/teicoplanin-a2-3.yaml","teicoplanin A2-3"],["amino_acids_and_peptides/teicoplanin-a2-4.yaml","teicoplanin A2-4"],["amino_acids_and_peptides/teicoplanin-a2-5.yaml","Teicoplanin A2-5"],["amino_acids_and_peptides/teicoplanin.yaml","teicoplanin"]],"b":[["antibacterial/teicoplanin.html","teicoplanin"],["unspecified/teicoplanin-a2-2.html","teicoplanin A2-2"],["unspecified/teicoplanin-a2-3.html","teicoplanin A2-3"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":3,"nb":4,"a":[["amino_acids_and_peptides/epidermin.yaml","epidermin"],["amino_acids_and_peptides/epilancin-15x.yaml","epilancin 15x"],["amino_acids_and_peptides/pep5.yaml","pep5"]],"b":[["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/oxacillin.html","oxacillin"]]},{"id":"NCBITaxon:451804","l":"Aspergillus fumigatus (strain CBS 144.89 / FGSC A1163 / CEA10)","na":3,"nb":3,"a":[["terpenoids/21-h-hopane-3beta-22-diol.yaml","21-β-H-hopane-3beta, 22-diol"],["terpenoids/compound-3-3.yaml","compound 3"],["terpenoids/fumihopaside-a.yaml","fumihopaside A"]],"b":[["antifungal/itraconazole.html","itraconazole"],["antifungal/terbinafine.html","terbinafine"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":27,"nb":2,"a":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["alkaloids/pseudomonine.yaml","pseudomonine"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyreudione-c.yaml","pyreudione C"],["alkaloids/quinolobactin.yaml","quinolobactin"]],"b":[["antibacterial/mupirocin.html","mupirocin"],["antifungal/2-4-diacetylphloroglucinol.html","2,4-diacetylphloroglucinol"]]},{"id":"NCBITaxon:332648","l":"Botrytis cinerea B05.10","na":21,"nb":2,"a":[["terpenoids/1-epibotrydial.yaml","1-epibotrydial"],["terpenoids/10-dehydroxy-dihydrobotrydialone.yaml","10-dehydroxy dihydrobotrydialone"],["terpenoids/10-epi-dihydrobotrydial.yaml","10-epi-dihydrobotrydial"],["terpenoids/10-oxo-dihydrobotrydial.yaml","10-Oxo-dihydrobotrydial"],["terpenoids/10-oxodehydrodihydrobotrydial.yaml","10-Oxodehydrodihydrobotrydial"],["terpenoids/10-oxodihydrobotry-1-9-4-5-diendial.yaml","10-Oxodihydrobotry-1(9),4(5)-diendial"]],"b":[["antifungal/fludioxonil.html","fludioxonil"],["antifungal/iprodione.html","iprodione"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":2,"nb":15,"a":[["alkaloids/acinetobactin.yaml","acinetobactin"],["amino_acids_and_peptides/fimsbactin-a.yaml","fimsbactin A"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"NCBITaxon:58346","l":"Streptomyces platensis","na":14,"nb":2,"a":[["alkaloids/13-epi-dorrigocin-a.yaml","13-epi-dorrigocin A"],["alkaloids/17-hydroxy-8-desmethoxy-isomigrastatin.yaml","17-hydroxy-8-desmethoxy-isomigrastatin"],["alkaloids/dorrigocin-a.yaml","dorrigocin A"],["alkaloids/dorrigocin-b.yaml","dorrigocin B"],["alkaloids/iso-migrastatin.yaml","iso-migrastatin"],["alkaloids/staurosporine.yaml","staurosporine"]],"b":[["antibacterial/platencin.html","platencin"],["antibacterial/platensimycin.html","platensimycin"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":10,"nb":2,"a":[["amino_acids_and_peptides/lipopeptide-8d1-1.yaml","lipopeptide 8D1-1"],["amino_acids_and_peptides/lipopeptide-8d1-2.yaml","lipopeptide 8D1-2"],["carbohydrates/amicetin.yaml","amicetin"],["carbohydrates/streptothricin-c.yaml","streptothricin C"],["carbohydrates/streptothricin-d.yaml","streptothricin D"],["carbohydrates/streptothricin-e.yaml","streptothricin E"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"],["unspecified/streptothricin-d.html","streptothricin D"]]},{"id":"NCBITaxon:242507","l":"","na":10,"nb":2,"a":[["polyketides/1-alpha-l-2-o-methyl-6-deoxymannopyranosyloxy-3-6-8-trimethoxynaphthalene.yaml","1-(alpha-l-(2-O-methyl)-6-deoxymannopyranosyloxy)-3,6,8-trimethoxynaphthalene"],["polyketides/10-11-dihydroxymagnaporthepyrone.yaml","10,11-dihydroxymagnaporthepyrone"],["polyketides/12-13-dihydroxymagnaporthepyrone.yaml","12,13-dihydroxymagnaporthepyrone"],["polyketides/epipyriculol.yaml","epipyriculol"],["polyketides/naphthalene-1-3-6-8-tetrol.yaml","naphthalene-1,3,6,8-tetrol"],["polyketides/nectriapyrone-c.yaml","nectriapyrone C"]],"b":[["antifungal/carboxin.html","carboxin"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:1223523","l":"Streptomyces mobaraensis NBRC 13819 = DSM 40847","na":5,"nb":2,"a":[["amino_acids_and_peptides/bleomycin-a2.yaml","bleomycin A2"],["amino_acids_and_peptides/bleomycin-b2.yaml","bleomycin B2"],["amino_acids_and_peptides/cyclothiazomycin-b1.yaml","cyclothiazomycin b1"],["amino_acids_and_peptides/ketomemicin-b3.yaml","ketomemicin B3"],["amino_acids_and_peptides/ketomemicin-b4.yaml","ketomemicin B4"]],"b":[["antibacterial/bleomycin-a2.html","bleomycin A2"],["antibacterial/bleomycin-b2.html","bleomycin B2"]]},{"id":"NCBITaxon:467194","l":"Streptomyces sp. CNQ-418","na":5,"nb":2,"a":[["alkaloids/marinopyrrole-a.yaml","(−)-marinopyrrole A"],["alkaloids/marinopyrrole-b.yaml","(−)-marinopyrrole B"],["alkaloids/marinopyrrole-c.yaml","marinopyrrole C"],["alkaloids/marinopyrrole-d.yaml","marinopyrrole D"],["alkaloids/marinopyrrole-e.yaml","marinopyrrole E"]],"b":[["antibacterial/marinopyrrole-a.html","(−)-marinopyrrole A"],["antibacterial/marinopyrrole-b.html","(−)-marinopyrrole B"]]},{"id":"NCBITaxon:559292","l":"Saccharomyces cerevisiae (strain ATCC 204508 / S288c)","na":2,"nb":5,"a":[["polyketides/kojic-acid.yaml","kojic acid"],["polyketides/radicicol.yaml","radicicol"]],"b":[["antifungal/anidulafungin.html","anidulafungin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/caspofungin.html","caspofungin"],["antifungal/cycloheximide.html","cycloheximide"],["antifungal/micafungin.html","micafungin"]]},{"id":"NCBITaxon:212423","l":"Streptomyces kaniharaensis","na":2,"nb":2,"a":[["alkaloids/formycin-a.yaml","formycin A"],["carbohydrates/coformycin.yaml","coformycin"]],"b":[["unspecified/coformycin.html","coformycin"],["unspecified/formycin-a.html","formycin A"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":31,"nb":1,"a":[["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["alkaloids/myxofacycline-e.yaml","myxofacycline E"],["alkaloids/myxofacycline-f.yaml","myxofacycline F"],["alkaloids/myxofacycline-g.yaml","myxofacycline G"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"]],"b":[["antibacterial/althiomycin.html","althiomycin"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":30,"nb":1,"a":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["amino_acids_and_peptides/ditryptophenaline.yaml","(-)-ditryptophenaline"],["amino_acids_and_peptides/imizoquin-a.yaml","imizoquin A"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":23,"nb":1,"a":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/melanin.yaml","melanin"],["alkaloids/undecylprodigiosin.yaml","undecylprodigiosin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/sapb.yaml","SapB"]],"b":[["antibacterial/nocardamine.html","nocardamine"]]},{"id":"NCBITaxon:162425","l":"Aspergillus nidulans","na":22,"nb":1,"a":[["alkaloids/aspernidine-a.yaml","aspernidine A"],["alkaloids/aspyridone-a.yaml","aspyridone A"],["alkaloids/aspyridone-b.yaml","aspyridone B"],["alkaloids/biotin.yaml","biotin"],["alkaloids/cichorine.yaml","cichorine"],["alkaloids/pentostatin.yaml","pentostatin"]],"b":[["antifungal/thiabendazole.html","thiabendazole"]]},{"id":"NCBITaxon:227321","l":"Emericella nidulans (strain FGSC A4 / ATCC 38163 / CBS 112.46 / NRRL 194 / M139)","na":22,"nb":1,"a":[["alkaloids/aspernidine-a.yaml","aspernidine A"],["alkaloids/aspyridone-a.yaml","aspyridone A"],["alkaloids/aspyridone-b.yaml","aspyridone B"],["alkaloids/cichorine.yaml","cichorine"],["alkaloids/terrequinone-a.yaml","terrequinone A"],["amino_acids_and_peptides/fellutamide-b.yaml","fellutamide B"]],"b":[["antifungal/thiabendazole.html","thiabendazole"]]},{"id":"NCBITaxon:54571","l":"Streptomyces venezuelae","na":21,"nb":1,"a":[["alkaloids/anthelvencin-a.yaml","anthelvencin A"],["alkaloids/anthelvencin-b.yaml","anthelvencin B"],["alkaloids/anthelvencin-c.yaml","anthelvencin C"],["alkaloids/chloramphenicol.yaml","chloramphenicol"],["alkaloids/corynecin-ii.yaml","corynecin II"],["alkaloids/gaburedin-d.yaml","gaburedin D"]],"b":[["antibacterial/methymycin.html","methymycin"]]},{"id":"NCBITaxon:2878388","l":"Streptomyces sp. SCSIO 03032","na":20,"nb":1,"a":[["alkaloids/indimicin-a.yaml","indimicin A"],["alkaloids/indimicin-b.yaml","indimicin B"],["alkaloids/indimicin-c.yaml","indimicin C"],["alkaloids/indimicin-d.yaml","indimicin D"],["alkaloids/indimicin-e.yaml","indimicin E"],["alkaloids/lynamicin-a.yaml","lynamicin A"]],"b":[["unspecified/piericidin-a.html","piericidin A"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":20,"nb":1,"a":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/c-3-sulfonylated-derivative.yaml","C-3 sulfonylated derivative"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["alkaloids/n-n-dioxide-containing-derivate.yaml","N,N-dioxide containing derivate"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:341663","l":"","na":17,"nb":1,"a":[["alkaloids/asterriquinone-ct5.yaml","asterriquinone CT5"],["alkaloids/dihydroisoflavipucine.yaml","dihydroisoflavipucine"],["alkaloids/isoflavipucine.yaml","isoflavipucine"],["polyketides/citreoviridin.yaml","citreoviridin"],["polyketides/geodin.yaml","geodin"],["polyketides/terreic-acid.yaml","terreic acid"]],"b":[["antiviral/aspulvinone-e.html","aspulvinone E"]]},{"id":"NCBITaxon:41951","l":"Streptomyces argillaceus","na":15,"nb":1,"a":[["alkaloids/argimycin-pi.yaml","argimycin PI"],["alkaloids/argimycin-pii.yaml","argimycin PII"],["alkaloids/argimycin-piv.yaml","argimycin PIV"],["alkaloids/argimycin-pix.yaml","argimycin PIX"],["alkaloids/argimycin-pv.yaml","argimycin PV"],["alkaloids/argimycin-pvi.yaml","argimycin PVI"]],"b":[["unspecified/mithramycin.html","mithramycin"]]},{"id":"NCBITaxon:5127","l":"Fusarium fujikuroi","na":15,"nb":1,"a":[["alkaloids/fusaric-acid.yaml","fusaric acid"],["alkaloids/fusarin-c.yaml","fusarin C"],["polyketides/bikaverin.yaml","bikaverin"],["polyketides/fujikurin-c.yaml","fujikurin C"],["polyketides/fujikurin-d.yaml","fujikurin D"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":14,"nb":1,"a":[["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/framycetin.yaml","framycetin"],["carbohydrates/neomycin-c.yaml","neomycin C"],["carbohydrates/paromomycin.yaml","paromomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":13,"nb":1,"a":[["alkaloids/holomycin.yaml","holomycin"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/2-formyloxymethylclavam.yaml","2-formyloxymethylclavam"],["amino_acids_and_peptides/2-hydroxymethylclavam.yaml","2-hydroxymethylclavam"],["amino_acids_and_peptides/alanylclavam.yaml","alanylclavam"],["amino_acids_and_peptides/cephamycin-c.yaml","cephamycin C"]],"b":[["antibacterial/clavulanic-acid.html","clavulanic acid"]]},{"id":"NCBITaxon:1433842","l":"Hapalosiphon welwitschii UTEX B 1830","na":12,"nb":1,"a":[["alkaloids/12-epi-fischerindole-i-isonitrile.yaml","12-epi-fischerindole I isonitrile"],["alkaloids/12-epi-fischerindole-u-isonitrile.yaml","12-epi-fischerindole U isonitrile"],["alkaloids/12-epi-hapalindole-c-isonitrile.yaml","12-epi-hapalindole C isonitrile"],["alkaloids/12-epi-hapalindole-e.yaml","12-epi-hapalindole E"],["alkaloids/3-epi-welwitindolinone-b-isothiocyanate.yaml","3-epi-welwitindolinone B isothiocyanate"],["alkaloids/3-z-2-isocyanovinyl-indole.yaml","3-[(Z)-2-isocyanovinyl]indole"]],"b":[["antibacterial/3-z-2-isocyanovinyl-indole.html","3-[(Z)-2-isocyanovinyl]indole"]]},{"id":"NCBITaxon:5053","l":"Aspergillus aculeatus","na":11,"nb":1,"a":[["alkaloids/acurin-a.yaml","acurin A"],["polyketides/secalonic-acid-a.yaml","Secalonic acid A"],["terpenoids/aculene-a.yaml","aculene A"],["terpenoids/aculene-b.yaml","aculene B"],["terpenoids/aculene-c.yaml","aculene C"],["terpenoids/aculene-d.yaml","aculene D"]],"b":[["antifungal/aculeacin-a.html","aculeacin A"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":10,"nb":1,"a":[["alkaloids/labradorin-1.yaml","labradorin 1"],["alkaloids/labradorin-2.yaml","labradorin 2"],["alkaloids/secimide.yaml","secimide"],["amino_acids_and_peptides/phaseolotoxin.yaml","phaseolotoxin"],["amino_acids_and_peptides/syringolin-a.yaml","syringolin A"],["amino_acids_and_peptides/tabtoxin.yaml","tabtoxin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae (strain ATCC 42149 / RIB 40)","na":10,"nb":1,"a":[["fatty_acids/oryzine-a.yaml","oryzine A"],["polyketides/kojic-acid.yaml","kojic acid"],["polyketides/oryzine-b.yaml","oryzine B"],["polyketides/ywa1.yaml","YWA1"],["shikimates_and_phenylpropanoids/2-4-dihydroxy-3-methoxypropiophenone.yaml","2,4'-dihydroxy-3'-methoxypropiophenone"],["shikimates_and_phenylpropanoids/8-methyldiaporthin.yaml","8-methyldiaporthin"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"NCBITaxon:1159556","l":"Ustilaginoidea virens","na":9,"nb":1,"a":[["amino_acids_and_peptides/ustiloxin-b.yaml","ustiloxin B"],["polyketides/ustilaginoidin-a.yaml","ustilaginoidin A"],["polyketides/ustilaginoidin-d.yaml","ustilaginoidin D"],["polyketides/ustilaginoidin-e.yaml","ustilaginoidin E"],["polyketides/ustilaginoidin-f.yaml","ustilaginoidin F"],["polyketides/ustilaginoidin-g.yaml","ustilaginoidin G"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"]]},{"id":"NCBITaxon:1979465","l":"Phoma betae","na":9,"nb":1,"a":[["polyketides/betaenone-a.yaml","betaenone A"],["polyketides/betaenone-b.yaml","betaenone B"],["polyketides/betaenone-c.yaml","betaenone C"],["terpenoids/17-deoxyaphidicolin.yaml","17-deoxyaphidicolin"],["terpenoids/3-deoxyaphidicolin.yaml","3-deoxyaphidicolin"],["terpenoids/aphidicolan-16-ol.yaml","aphidicolan-16β-ol"]],"b":[["antiviral/aphidicolin.html","aphidicolin"]]},{"id":"NCBITaxon:5076","l":"Penicillium chrysogenum","na":9,"nb":1,"a":[["alkaloids/chrysogine.yaml","chrysogine"],["amino_acids_and_peptides/benzylpenicillin-sodium.yaml","benzylpenicillin sodium"],["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"],["amino_acids_and_peptides/n-5s-5-ammonio-5-carboxylatopentanoyl-l-cysteinyl-d-valinate.yaml","N-[(5S)-5-ammonio-5-carboxylatopentanoyl]-L-cysteinyl-D-valinate"],["polyketides/2-3-dihydrosorbicillin.yaml","2'3'-dihydrosorbicillin"],["polyketides/bisorbicillinol.yaml","bisorbicillinol"]],"b":[["unspecified/isopenicillin-n.html","isopenicillin N"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":1,"nb":8,"a":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]],"b":[["antifungal/anidulafungin.html","anidulafungin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/caspofungin.html","caspofungin"],["antifungal/cycloheximide.html","cycloheximide"],["antifungal/micafungin.html","micafungin"],["antifungal/oligomycin-a.html","oligomycin A"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":8,"nb":1,"a":[["amino_acids_and_peptides/ferrichrome-2.yaml","ferrichrome"],["polyketides/2-acetyl-1-3-6-8-tetrahydroxynaphthalene.yaml","2-acetyl-1,3,6,8-tetrahydroxynaphthalene"],["polyketides/kojic-acid.yaml","kojic acid"],["terpenoids/aphidicolin.yaml","aphidicolin"],["unclassified/2-oxocyclopiazonic-acid.yaml","2-oxocyclopiazonic acid"],["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":1,"nb":7,"a":[["amino_acids_and_peptides/enterocin-a.yaml","enterocin A"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":1,"nb":7,"a":[["unclassified/antimycin-a1b.yaml","antimycin A1B"]],"b":[["antibacterial/brefeldin-a.html","brefeldin A"],["antifungal/anidulafungin.html","anidulafungin"],["antifungal/caspofungin.html","caspofungin"],["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/micafungin.html","micafungin"]]},{"id":"NCBITaxon:68280","l":"Streptomyces violaceusniger","na":7,"nb":1,"a":[["fatty_acids/desulfoclethramycin.yaml","desulfoclethramycin"],["polyketides/be-24566b.yaml","BE-24566B"],["polyketides/elaiophylin.yaml","elaiophylin"],["polyketides/meridamycin-2.yaml","meridamycin"],["polyketides/nigericin.yaml","nigericin"],["terpenoids/2-methylisoborneol.yaml","2-methylisoborneol"]],"b":[["antibacterial/nigericin.html","nigericin"]]},{"id":"NCBITaxon:37326","l":"Nocardia brasiliensis","na":6,"nb":1,"a":[["polyketides/brasilinolide-a.yaml","brasilinolide A"],["polyketides/brasilinolide-b.yaml","brasilinolide B"],["polyketides/brasilinolide-c.yaml","brasilinolide C"],["polyketides/brasiliquinone-a.yaml","brasiliquinone A"],["polyketides/brasiliquinone-b.yaml","brasiliquinone B"],["terpenoids/brasilicardin-a.yaml","brasilicardin A"]],"b":[["antibacterial/brasiliquinone-b.html","brasiliquinone B"]]},{"id":"NCBITaxon:47763","l":"Streptomyces lydicus","na":6,"nb":1,"a":[["amino_acids_and_peptides/ectoine.yaml","ectoine"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"],["polyketides/erythromycin-a.yaml","erythromycin A"],["polyketides/natamycin.yaml","natamycin"],["polyketides/streptolydigin.yaml","streptolydigin"],["unclassified/lydicamycin.yaml","lydicamycin"]],"b":[["unspecified/streptolydigin.html","streptolydigin"]]},{"id":"NCBITaxon:5082","l":"Penicillium roqueforti","na":6,"nb":1,"a":[["alkaloids/mycophenolic-acid-2.yaml","mycophenolic acid"],["polyketides/mycophenolic-acid.yaml","mycophenolic acid"],["terpenoids/pr-toxin.yaml","PR-toxin"],["unclassified/andrastin-a.yaml","andrastin A"],["unclassified/roquefortine-c.yaml","roquefortine C"],["unclassified/roquefortine-d.yaml","roquefortine D"]],"b":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]]},{"id":"NCBITaxon:52","l":"Chondromyces crocatus","na":6,"nb":1,"a":[["polyketides/chondrochloren-a.yaml","chondrochloren A"],["polyketides/cmc-thuggacin-a.yaml","Cmc-thuggacin A"],["polyketides/crocacin.yaml","crocacin"],["shikimates_and_phenylpropanoids/ajudazol-a.yaml","ajudazol A"],["unclassified/chondramide-a.yaml","chondramide A"],["unclassified/cmc-thuggacin-b.yaml","Cmc-thuggacin B"]],"b":[["unspecified/chondrochloren-a.html","chondrochloren A"]]},{"id":"NCBITaxon:43658","l":"Pseudoalteromonas rubra","na":5,"nb":1,"a":[["alkaloids/prodigiosin.yaml","prodigiosin"],["polyketides/nonyltyrazolone.yaml","nonyltyrazolone"],["polyketides/undecyltyrazolone.yaml","undecyltyrazolone"],["shikimates_and_phenylpropanoids/z-6-undecenyltyrazolone.yaml","(Z)-ω-6-undecenyltyrazolone"],["unclassified/heptyltyrazolone.yaml","heptyltyrazolone"]],"b":[["unspecified/prodigiosin.html","prodigiosin"]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":1,"nb":5,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/imipenem.html","imipenem"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":1,"a":[["alkaloids/prodigiosin-2.yaml","prodigiosin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/serratiochelin-a.yaml","serratiochelin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["polyketides/oocydin-a.yaml","oocydin A"]],"b":[["antibacterial/althiomycin.html","althiomycin"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":4,"a":[["alkaloids/petrobactin.yaml","petrobactin"]],"b":[["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/trimethoprim.html","trimethoprim"],["antiprotozoal/suramin.html","suramin"],["antiviral/tilorone.html","tilorone"]]},{"id":"NCBITaxon:318829","l":"Magnaporthe oryzae","na":1,"nb":4,"a":[["polyketides/nectriapyrone.yaml","nectriapyrone"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/carboxin.html","carboxin"],["antifungal/carpropamid.html","carpropamid"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:36650","l":"Penicillium aethiopicum","na":4,"nb":1,"a":[["alkaloids/tryptoquialanine.yaml","tryptoquialanine"],["polyketides/epidechlorogriseofulvin.yaml","epidechlorogriseofulvin"],["polyketides/griseofulvin.yaml","griseofulvin"],["unclassified/viridicatumtoxin.yaml","viridicatumtoxin"]],"b":[["unspecified/viridicatumtoxin.html","viridicatumtoxin"]]},{"id":"NCBITaxon:412963","l":"","na":4,"nb":1,"a":[["amino_acids_and_peptides/endopyrrole-b.yaml","endopyrrole B"],["amino_acids_and_peptides/holrhizin-a.yaml","holrhizin A"],["unclassified/endopyrrole-a.yaml","endopyrrole A"],["unclassified/rhizoxin-a.yaml","rhizoxin A"]],"b":[["unspecified/rhizoxin.html","rhizoxin"]]},{"id":"NCBITaxon:68214","l":"Streptomyces griseochromogenes","na":4,"nb":1,"a":[["carbohydrates/blasticidin-s.yaml","blasticidin S"],["carbohydrates/streptothricin-f.yaml","streptothricin F"],["polyketides/tautomycetin-2.yaml","tautomycetin"],["polyketides/tautomycetin.yaml","tautomycetin"]],"b":[["antifungal/blasticidin-s.html","blasticidin S"]]},{"id":"NCBITaxon:1907","l":"Streptomyces glaucescens","na":3,"nb":1,"a":[["carbohydrates/5-hydroxystreptomycin.yaml","5'-hydroxystreptomycin"],["carbohydrates/streptomycin.yaml","streptomycin"],["polyketides/tetracenomycin-c.yaml","tetracenomycin C"]],"b":[["antibacterial/tetracenomycin-c.html","tetracenomycin C"]]},{"id":"NCBITaxon:264951","l":"Paecilomyces variotii","na":3,"nb":1,"a":[["polyketides/agnestin-a.yaml","agnestin A"],["polyketides/agnestin-b.yaml","agnestin B"],["polyketides/viriditoxin.yaml","viriditoxin"]],"b":[["antibacterial/m-viriditoxin.html","(M)-viriditoxin"]]},{"id":"NCBITaxon:316284","l":"Streptomyces noursei ATCC 11455","na":3,"nb":1,"a":[["amino_acids_and_peptides/dechlorocuracomycin.yaml","dechlorocuracomycin"],["polyketides/nystatin-a1.yaml","nystatin A1"],["unclassified/albonoursin.yaml","albonoursin"]],"b":[["antifungal/nystatin-a1.html","nystatin A1"]]},{"id":"NCBITaxon:334819","l":"Fusarium verticillioides 7600","na":1,"nb":3,"a":[["alkaloids/fusaric-acid.yaml","fusaric acid"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/fludioxonil.html","fludioxonil"]]},{"id":"NCBITaxon:53446","l":"Streptomyces cinnamoneus","na":3,"nb":1,"a":[["amino_acids_and_peptides/cinnamycin.yaml","cinnamycin"],["amino_acids_and_peptides/duramycin.yaml","duramycin"],["unclassified/bicozamycin.yaml","bicozamycin"]],"b":[["antibacterial/bicozamycin.html","bicozamycin"]]},{"id":"NCBITaxon:536","l":"Chromobacterium violaceum","na":3,"nb":1,"a":[["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["unclassified/romidepsin.yaml","romidepsin"]],"b":[["unspecified/romidepsin.html","romidepsin"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":3,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"NCBITaxon:668825","l":"Streptomyces sp. ATCC 700974","na":3,"nb":1,"a":[["amino_acids_and_peptides/albomycin-1.yaml","albomycin δ1"],["amino_acids_and_peptides/albomycin-delta2.yaml","albomycin delta2"],["amino_acids_and_peptides/albomycin-epsilon.yaml","albomycin epsilon"]],"b":[["antibacterial/albomycin-%CE%B41.html","albomycin δ1"]]},{"id":"NCBITaxon:686309","l":"Micromonospora haikouensis","na":3,"nb":1,"a":[["carbohydrates/aristeromycin.yaml","aristeromycin"],["carbohydrates/coformycin.yaml","coformycin"],["carbohydrates/kanamycin-a.yaml","kanamycin A"]],"b":[["unspecified/coformycin.html","coformycin"]]},{"id":"CHEBI:26789","l":"","na":1,"nb":2,"a":[["carbohydrates/streptothricin-f.yaml","streptothricin F"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"],["unspecified/streptothricin-d.html","streptothricin D"]]},{"id":"NCBITaxon:1079985","l":"Streptomyces chartreusis NRRL 3882","na":2,"nb":1,"a":[["carbohydrates/tunicamycin-b1.yaml","tunicamycin B1"],["polyketides/a23187.yaml","A23187"]],"b":[["unspecified/tunicamycin-b1.html","tunicamycin B1"]]},{"id":"NCBITaxon:27337","l":"Verticillium dahliae","na":2,"nb":1,"a":[["polyketides/flaviolin.yaml","flaviolin"],["polyketides/scytalone.yaml","scytalone"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"NCBITaxon:28576","l":"Talaromyces variabilis","na":2,"nb":1,"a":[["alkaloids/ilicicolin-h.yaml","ilicicolin H"],["unclassified/varicidin-a.yaml","varicidin A"]],"b":[["unspecified/ilicicolin-h.html","ilicicolin H"]]},{"id":"NCBITaxon:36651","l":"Penicillium digitatum","na":1,"nb":2,"a":[["alkaloids/tryptoquialanine.yaml","tryptoquialanine"]],"b":[["antifungal/pyrifenox.html","pyrifenox"],["antifungal/triflumizole.html","triflumizole"]]},{"id":"NCBITaxon:5074","l":"Penicillium brevicompactum","na":2,"nb":1,"a":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"],["unclassified/asperphenamate.yaml","asperphenamate"]],"b":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]]},{"id":"NCBITaxon:5270","l":"","na":2,"nb":1,"a":[["fatty_acids/itaconic-acid.yaml","itaconic acid"],["fatty_acids/ustilagic-acid.yaml","ustilagic acid"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":2,"nb":1,"a":[["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["alkaloids/yersiniabactin.yaml","yersiniabactin"]],"b":[["unspecified/chir-090.html","CHIR-090"]]},{"id":"NCBITaxon:68264","l":"Streptomyces rishiriensis","na":2,"nb":1,"a":[["shikimates_and_phenylpropanoids/coumermycin-a1.yaml","coumermycin A1"],["unclassified/lactonamycin.yaml","lactonamycin"]],"b":[["antibacterial/coumermycin-a1.html","coumermycin A1"]]},{"id":"CHEBI:131914","l":"violacein","na":1,"nb":1,"a":[["alkaloids/violacein.yaml","violacein"]],"b":[["antibacterial/violacein.html","violacein"]]},{"id":"CHEBI:132426","l":"chondrochloren A","na":1,"nb":1,"a":[["polyketides/chondrochloren-a.yaml","chondrochloren A"]],"b":[["unspecified/chondrochloren-a.html","chondrochloren A"]]},{"id":"CHEBI:133127","l":"lugdunin","na":1,"nb":1,"a":[["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]],"b":[["antibacterial/lugdunin.html","lugdunin"]]},{"id":"CHEBI:134606","l":"toyocamycin","na":1,"nb":1,"a":[["carbohydrates/toyocamycin.yaml","toyocamycin"]],"b":[["antifungal/toyocamycin.html","toyocamycin"]]},{"id":"CHEBI:138511","l":"piericidin A","na":1,"nb":1,"a":[["polyketides/piericidin-a.yaml","piericidin A"]],"b":[["unspecified/piericidin-a.html","piericidin A"]]},{"id":"CHEBI:140173","l":"malacidin A","na":1,"nb":1,"a":[["amino_acids_and_peptides/malacidin-a.yaml","malacidin A"]],"b":[["antibacterial/malacidin-a.html","malacidin A"]]},{"id":"CHEBI:140174","l":"malacidin B","na":1,"nb":1,"a":[["amino_acids_and_peptides/malacidin-b.yaml","malacidin B"]],"b":[["antibacterial/malacidin-b.html","malacidin B"]]},{"id":"CHEBI:140434","l":"3-[(Z)-2-isocyanovinyl]indole","na":1,"nb":1,"a":[["alkaloids/3-z-2-isocyanovinyl-indole.yaml","3-[(Z)-2-isocyanovinyl]indole"]],"b":[["antibacterial/3-z-2-isocyanovinyl-indole.html","3-[(Z)-2-isocyanovinyl]indole"]]},{"id":"CHEBI:141338","l":"sporothriolide","na":1,"nb":1,"a":[["polyketides/sporothriolide.yaml","sporothriolide"]],"b":[["antifungal/sporothriolide.html","sporothriolide"]]},{"id":"CHEBI:141380","l":"indanomycin","na":1,"nb":1,"a":[["polyketides/indanomycin.yaml","indanomycin"]],"b":[["antibacterial/indanomycin.html","indanomycin"]]},{"id":"CHEBI:144441","l":"triacsin C","na":1,"nb":1,"a":[["fatty_acids/triacsin-c.yaml","triacsin C"]],"b":[["antiprotozoal/triacsin-c.html","triacsin C"]]},{"id":"CHEBI:144729","l":"L-β-ethynylserine zwitterion","na":1,"nb":1,"a":[["amino_acids_and_peptides/ethynylserine.yaml","β-ethynylserine"]],"b":[["antibacterial/l-%CE%B2-ethynylserine-zwitterion.html","L-β-ethynylserine zwitterion"]]},{"id":"CHEBI:144833","l":"L-β-ethynylserine","na":1,"nb":1,"a":[["amino_acids_and_peptides/ethynylserine.yaml","β-ethynylserine"]],"b":[["antibacterial/l-%CE%B2-ethynylserine.html","L-β-ethynylserine"]]},{"id":"CHEBI:146007","l":"(M)-viriditoxin","na":1,"nb":1,"a":[["polyketides/viriditoxin.yaml","viriditoxin"]],"b":[["antibacterial/m-viriditoxin.html","(M)-viriditoxin"]]},{"id":"CHEBI:146153","l":"ilicicolin B","na":1,"nb":1,"a":[["unclassified/ilicicolin-b.yaml","ilicicolin B"]],"b":[["unspecified/ilicicolin-b.html","ilicicolin B"]]},{"id":"CHEBI:149660","l":"atromentin","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/atromentin.yaml","atromentin"]],"b":[["antibacterial/atromentin.html","atromentin"]]},{"id":"CHEBI:15353","l":"blasticidin S","na":1,"nb":1,"a":[["carbohydrates/blasticidin-s.yaml","blasticidin S"]],"b":[["antifungal/blasticidin-s.html","blasticidin S"]]},{"id":"CHEBI:156148","l":"ascofuranone","na":1,"nb":1,"a":[["unclassified/ascofuranone.yaml","ascofuranone"]],"b":[["antiprotozoal/ascofuranone.html","ascofuranone"]]},{"id":"CHEBI:156219","l":"ascochlorin","na":1,"nb":1,"a":[["unclassified/ascochlorin.yaml","ascochlorin"]],"b":[["antifungal/ascochlorin.html","ascochlorin"]]},{"id":"CHEBI:156291","l":"oviedomycin","na":1,"nb":1,"a":[["polyketides/oviedomycin.yaml","oviedomycin"]],"b":[["unspecified/oviedomycin.html","oviedomycin"]]},{"id":"CHEBI:156298","l":"aurafuron A","na":1,"nb":1,"a":[["polyketides/aurafuron-a.yaml","aurafuron A"]],"b":[["antifungal/aurafuron-a.html","aurafuron A"]]},{"id":"CHEBI:156301","l":"auricin","na":1,"nb":1,"a":[["polyketides/auricin.yaml","auricin"]],"b":[["unspecified/auricin.html","auricin"]]},{"id":"CHEBI:156313","l":"erdasporine A","na":1,"nb":1,"a":[["alkaloids/erdasporine-a.yaml","erdasporine A"]],"b":[["antibacterial/erdasporine-a.html","erdasporine A"]]},{"id":"CHEBI:156314","l":"erdasporine B","na":1,"nb":1,"a":[["alkaloids/erdasporine-b.yaml","erdasporine B"]],"b":[["antibacterial/erdasporine-b.html","erdasporine B"]]},{"id":"CHEBI:156315","l":"erdasporine C","na":1,"nb":1,"a":[["alkaloids/erdasporine-c.yaml","erdasporine C"]],"b":[["antibacterial/erdasporine-c.html","erdasporine C"]]},{"id":"CHEBI:156363","l":"gibepyrone A","na":1,"nb":1,"a":[["polyketides/gibepyrone-a.yaml","gibepyrone A"]],"b":[["antibacterial/gibepyrone-a.html","gibepyrone A"]]},{"id":"CHEBI:156386","l":"asperlactone","na":1,"nb":1,"a":[["polyketides/asperlactone.yaml","asperlactone"]],"b":[["antibacterial/asperlactone.html","asperlactone"]]},{"id":"CHEBI:156426","l":"curacomycin","na":1,"nb":1,"a":[["amino_acids_and_peptides/curacomycin.yaml","curacomycin"]],"b":[["antibacterial/curacomycin.html","curacomycin"]]},{"id":"CHEBI:156450","l":"thiolutin","na":1,"nb":1,"a":[["alkaloids/thiolutin.yaml","thiolutin"]],"b":[["antibacterial/thiolutin.html","thiolutin"]]},{"id":"CHEBI:156451","l":"holomycin","na":1,"nb":1,"a":[["alkaloids/holomycin.yaml","holomycin"]],"b":[["antibacterial/holomycin.html","holomycin"]]},{"id":"CHEBI:156453","l":"pyoluteorin","na":1,"nb":1,"a":[["alkaloids/pyoluteorin.yaml","pyoluteorin"]],"b":[["antibacterial/pyoluteorin.html","pyoluteorin"]]},{"id":"CHEBI:156455","l":"tropodithietic acid","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/tropodithietic-acid.yaml","tropodithietic acid"]],"b":[["antibacterial/tropodithietic-acid.html","tropodithietic acid"]]},{"id":"CHEBI:156550","l":"pyrrolomycin A","na":1,"nb":1,"a":[["alkaloids/pyrrolomycin-a.yaml","pyrrolomycin A"]],"b":[["antibacterial/pyrrolomycin-a.html","pyrrolomycin A"]]},{"id":"CHEBI:15732","l":"phosphonoacetic acid","na":1,"nb":1,"a":[["unclassified/phosphonoacetic-acid.yaml","phosphonoacetic acid"]],"b":[["antiviral/phosphonoacetic-acid.html","phosphonoacetic acid"]]},{"id":"CHEBI:161680","l":"aztreonam","na":1,"nb":1,"a":[["amino_acids_and_peptides/aztreonam.yaml","aztreonam"]],"b":[["antibacterial/aztreonam.html","aztreonam"]]},{"id":"CHEBI:16213","l":"coformycin","na":1,"nb":1,"a":[["carbohydrates/coformycin.yaml","coformycin"]],"b":[["unspecified/coformycin.html","coformycin"]]},{"id":"CHEBI:166872","l":"nucleocidin","na":1,"nb":1,"a":[["carbohydrates/nucleocidin.yaml","nucleocidin"]],"b":[["antibacterial/nucleocidin.html","nucleocidin"]]},{"id":"CHEBI:167043","l":"ochrindole A","na":1,"nb":1,"a":[["alkaloids/ochrindole-a.yaml","ochrindole A"]],"b":[["antibacterial/ochrindole-a.html","ochrindole A"]]},{"id":"CHEBI:167054","l":"acrophiarin","na":1,"nb":1,"a":[["amino_acids_and_peptides/acrophiarin.yaml","acrophiarin"]],"b":[["antifungal/acrophiarin.html","acrophiarin"]]},{"id":"CHEBI:168396","l":"mycophenolic acid","na":1,"nb":1,"a":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"]],"b":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]]},{"id":"CHEBI:17076","l":"streptomycin","na":1,"nb":1,"a":[["carbohydrates/streptomycin.yaml","streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"CHEBI:17630","l":"kanamycin A","na":1,"nb":1,"a":[["carbohydrates/kanamycin-a.yaml","kanamycin A"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"CHEBI:17695","l":"casbene","na":1,"nb":1,"a":[["terpenoids/casbene.yaml","casbene"]],"b":[["antifungal/casbene.html","casbene"]]},{"id":"CHEBI:17704","l":"aspulvinone E","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/aspulvinone-e.yaml","aspulvinone E"]],"b":[["antiviral/aspulvinone-e.html","aspulvinone E"]]},{"id":"CHEBI:17939","l":"puromycin","na":1,"nb":1,"a":[["carbohydrates/puromycin.yaml","puromycin"]],"b":[["antibacterial/puromycin.html","puromycin"]]},{"id":"CHEBI:18165","l":"isopenicillin N","na":1,"nb":1,"a":[["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"]],"b":[["unspecified/isopenicillin-n.html","isopenicillin N"]]},{"id":"CHEBI:184373","l":"cremeomycin","na":1,"nb":1,"a":[["unclassified/cremeomycin.yaml","cremeomycin"]],"b":[["antibacterial/cremeomycin.html","cremeomycin"]]},{"id":"CHEBI:190009","l":"himastatin","na":1,"nb":1,"a":[["amino_acids_and_peptides/himastatin.yaml","himastatin"]],"b":[["antibacterial/himastatin.html","himastatin"]]},{"id":"CHEBI:193157","l":"sceliphrolactam","na":1,"nb":1,"a":[["unclassified/sceliphrolactam.yaml","sceliphrolactam"]],"b":[["antifungal/sceliphrolactam.html","sceliphrolactam"]]},{"id":"CHEBI:206040","l":"","na":1,"nb":1,"a":[["polyketides/tartrolon-d.yaml","tartrolon D"]],"b":[["antibacterial/tartrolon-d.html","tartrolon D"]]},{"id":"CHEBI:219363","l":"reedsmycin A","na":1,"nb":1,"a":[["polyketides/reedsmycin-a.yaml","reedsmycin A"]],"b":[["antifungal/reedsmycin-a.html","reedsmycin A"]]},{"id":"CHEBI:219367","l":"reedsmycin B","na":1,"nb":1,"a":[["polyketides/reedsmycin-b.yaml","reedsmycin B"]],"b":[["antifungal/reedsmycin-b.html","reedsmycin B"]]},{"id":"CHEBI:219386","l":"reedsmycin E","na":1,"nb":1,"a":[["polyketides/reedsmycin-e.yaml","reedsmycin E"]],"b":[["antifungal/reedsmycin-e.html","reedsmycin E"]]},{"id":"CHEBI:2448","l":"actinorhodin","na":1,"nb":1,"a":[["polyketides/actinorhodin.yaml","actinorhodin"]],"b":[["unspecified/actinorhodin.html","actinorhodin"]]},{"id":"CHEBI:24750","l":"","na":1,"nb":1,"a":[["carbohydrates/5-hydroxystreptomycin.yaml","5'-hydroxystreptomycin"]],"b":[["unspecified/5-hydroxystreptomycin.html","5'-hydroxystreptomycin"]]},{"id":"CHEBI:2762","l":"antimycin A","na":1,"nb":1,"a":[["unclassified/antimycin-a.yaml","antimycin A"]],"b":[["antifungal/antimycin-a.html","antimycin A"]]},{"id":"CHEBI:2766","l":"aphidicolin","na":1,"nb":1,"a":[["terpenoids/aphidicolin.yaml","aphidicolin"]],"b":[["antiviral/aphidicolin.html","aphidicolin"]]},{"id":"CHEBI:27666","l":"actinomycin D","na":1,"nb":1,"a":[["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"]],"b":[["antibacterial/actinomycin-d.html","actinomycin D"]]},{"id":"CHEBI:27834","l":"pentostatin","na":1,"nb":1,"a":[["alkaloids/pentostatin.yaml","pentostatin"]],"b":[["unspecified/pentostatin.html","pentostatin"]]},{"id":"CHEBI:28001","l":"vancomycin","na":1,"nb":1,"a":[["amino_acids_and_peptides/vancomycin.yaml","vancomycin"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"CHEBI:28196","l":"erythromycin B","na":1,"nb":1,"a":[["polyketides/erythromycin-b.yaml","erythromycin B"]],"b":[["unspecified/erythromycin-b.html","erythromycin B"]]},{"id":"CHEBI:28283","l":"capsidiol","na":1,"nb":1,"a":[["terpenoids/capsidiol.yaml","capsidiol"]],"b":[["antifungal/capsidiol.html","capsidiol"]]},{"id":"CHEBI:28331","l":"erythromycin D","na":1,"nb":1,"a":[["polyketides/erythromycin-d.yaml","erythromycin D"]],"b":[["unspecified/erythromycin-d.html","erythromycin D"]]},{"id":"CHEBI:28748","l":"doxorubicin","na":1,"nb":1,"a":[["polyketides/doxorubicin.yaml","doxorubicin"]],"b":[["unspecified/doxorubicin.html","doxorubicin"]]},{"id":"CHEBI:28864","l":"tobramycin","na":1,"nb":1,"a":[["carbohydrates/tobramycin.yaml","tobramycin"]],"b":[["antibacterial/tobramycin.html","tobramycin"]]},{"id":"CHEBI:28915","l":"fosfomycin","na":1,"nb":1,"a":[["unclassified/fosfomycin.yaml","fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"CHEBI:29515","l":"ansamitocin P3","na":1,"nb":1,"a":[["polyketides/ansamitocin-p3.yaml","ansamitocin P3"]],"b":[["unspecified/ansamitocin-p3.html","ansamitocin P3"]]},{"id":"CHEBI:29556","l":"chloroeremomycin","na":1,"nb":1,"a":[["amino_acids_and_peptides/chloroeremomycin.yaml","chloroeremomycin"]],"b":[["antibacterial/chloroeremomycin.html","chloroeremomycin"]]},{"id":"CHEBI:29630","l":"methymycin","na":1,"nb":1,"a":[["polyketides/methymycin.yaml","methymycin"]],"b":[["antibacterial/methymycin.html","methymycin"]]},{"id":"CHEBI:29649","l":"narbomycin","na":1,"nb":1,"a":[["polyketides/narbomycin.yaml","narbomycin"]],"b":[["antibacterial/narbomycin.html","narbomycin"]]},{"id":"CHEBI:29656","l":"neomethymycin","na":1,"nb":1,"a":[["polyketides/neomethymycin.yaml","neomethymycin"]],"b":[["unspecified/neomethymycin.html","neomethymycin"]]},{"id":"CHEBI:29665","l":"pikromycin","na":1,"nb":1,"a":[["polyketides/pikromycin.yaml","pikromycin"]],"b":[["antibacterial/pikromycin.html","pikromycin"]]},{"id":"CHEBI:29673","l":"rifamycin SV","na":1,"nb":1,"a":[["polyketides/rifamycin-sv.yaml","rifamycin SV"]],"b":[["antimycobacterial/rifamycin-sv.html","rifamycin SV"]]},{"id":"CHEBI:29701","l":"tyrocidine A","na":1,"nb":1,"a":[["amino_acids_and_peptides/tyrocidine-a.yaml","tyrocidine A"]],"b":[["antibacterial/tyrocidine-a.html","tyrocidine A"]]},{"id":"CHEBI:29703","l":"validamycin A","na":1,"nb":1,"a":[["carbohydrates/validamycin-a.yaml","validamycin A"]],"b":[["antifungal/validamycin-a.html","validamycin A"]]},{"id":"CHEBI:3096","l":"bikaverin","na":1,"nb":1,"a":[["polyketides/bikaverin.yaml","bikaverin"]],"b":[["antibacterial/bikaverin.html","bikaverin"]]},{"id":"CHEBI:3139","l":"bleomycin A2","na":1,"nb":1,"a":[["amino_acids_and_peptides/bleomycin-a2.yaml","bleomycin A2"]],"b":[["antibacterial/bleomycin-a2.html","bleomycin A2"]]},{"id":"CHEBI:315018","l":"echinocandin B","na":1,"nb":1,"a":[["amino_acids_and_peptides/echinocandin-b.yaml","echinocandin B"]],"b":[["antifungal/echinocandin-b.html","echinocandin B"]]},{"id":"CHEBI:31856","l":"mithramycin","na":1,"nb":1,"a":[["polyketides/mithramycin.yaml","mithramycin"]],"b":[["unspecified/mithramycin.html","mithramycin"]]},{"id":"CHEBI:32079","l":"pyrrolnitrin","na":1,"nb":1,"a":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]],"b":[["antifungal/pyrrolnitrin.html","pyrrolnitrin"]]},{"id":"CHEBI:3252","l":"C-1027 chromophore","na":1,"nb":1,"a":[["polyketides/c-1027-chromophore.yaml","C-1027 chromophore"]],"b":[["unspecified/c-1027-chromophore.html","C-1027 chromophore"]]},{"id":"CHEBI:338412","l":"(-)-anisomycin","na":1,"nb":1,"a":[["alkaloids/anisomycin.yaml","(−)-anisomycin"]],"b":[["antiviral/anisomycin.html","(−)-anisomycin"]]},{"id":"CHEBI:34996","l":"teicoplanin A2-3","na":1,"nb":1,"a":[["amino_acids_and_peptides/teicoplanin-a2-3.yaml","teicoplanin A2-3"]],"b":[["unspecified/teicoplanin-a2-3.html","teicoplanin A2-3"]]},{"id":"CHEBI:34997","l":"teicoplanin A2-4","na":1,"nb":1,"a":[["amino_acids_and_peptides/teicoplanin-a2-4.yaml","teicoplanin A2-4"]],"b":[["unspecified/teicoplanin-a2-4.html","teicoplanin A2-4"]]},{"id":"CHEBI:3613","l":"chlorflavonin","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/chlorflavonin.yaml","chlorflavonin"]],"b":[["antifungal/chlorflavonin.html","chlorflavonin"]]},{"id":"CHEBI:3907","l":"coumermycin A1","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/coumermycin-a1.yaml","coumermycin A1"]],"b":[["antibacterial/coumermycin-a1.html","coumermycin A1"]]},{"id":"CHEBI:40009","l":"D-cycloserine","na":1,"nb":1,"a":[["amino_acids_and_peptides/cycloserine.yaml","cycloserine"]],"b":[["antimycobacterial/d-cycloserine.html","D-cycloserine"]]},{"id":"CHEBI:4031","l":"cyclosporin A","na":1,"nb":1,"a":[["amino_acids_and_peptides/cyclosporin-a.yaml","cyclosporin A"]],"b":[["antifungal/cyclosporin-a.html","cyclosporin A"]]},{"id":"CHEBI:41977","l":"daunorubicin","na":1,"nb":1,"a":[["polyketides/daunorubicin.yaml","daunorubicin"]],"b":[["unspecified/daunorubicin.html","daunorubicin"]]},{"id":"CHEBI:42355","l":"erythromycin A","na":1,"nb":1,"a":[["polyketides/erythromycin-a.yaml","erythromycin A"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"CHEBI:42452","l":"formycin A","na":1,"nb":1,"a":[["alkaloids/formycin-a.yaml","formycin A"]],"b":[["unspecified/formycin-a.html","formycin A"]]},{"id":"CHEBI:43616","l":"K-252a","na":1,"nb":1,"a":[["alkaloids/k-252a.yaml","K-252a"]],"b":[["unspecified/k-252a.html","K-252a"]]},{"id":"CHEBI:45257","l":"ribostamycin","na":1,"nb":1,"a":[["carbohydrates/ribostamycin.yaml","ribostamycin"]],"b":[["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"CHEBI:45327","l":"adenine arabinoside","na":1,"nb":1,"a":[["carbohydrates/adenine-arabinoside.yaml","adenine arabinoside"]],"b":[["unspecified/adenine-arabinoside.html","adenine arabinoside"]]},{"id":"CHEBI:45773","l":"streptolydigin","na":1,"nb":1,"a":[["polyketides/streptolydigin.yaml","streptolydigin"]],"b":[["unspecified/streptolydigin.html","streptolydigin"]]},{"id":"CHEBI:46416","l":"virginiamycin S1","na":1,"nb":1,"a":[["unclassified/virginiamycin-s1.yaml","virginiamycin S1"]],"b":[["antibacterial/virginiamycin-s1.html","virginiamycin S1"]]},{"id":"CHEBI:473992","l":"nystatin A1","na":1,"nb":1,"a":[["polyketides/nystatin-a1.yaml","nystatin A1"]],"b":[["antifungal/nystatin-a1.html","nystatin A1"]]},{"id":"CHEBI:48200","l":"griseusin B","na":1,"nb":1,"a":[["polyketides/griseusin-b.yaml","griseusin B"]],"b":[["unspecified/griseusin-b.html","griseusin B"]]},{"id":"CHEBI:48201","l":"frenolicin B","na":1,"nb":1,"a":[["polyketides/frenolicin-b.yaml","frenolicin B"]],"b":[["unspecified/frenolicin-b.html","frenolicin B"]]},{"id":"CHEBI:48267","l":"tubercidin","na":1,"nb":1,"a":[["carbohydrates/tubercidin.yaml","tubercidin"]],"b":[["antifungal/tubercidin.html","tubercidin"]]},{"id":"CHEBI:48635","l":"fumagillin","na":1,"nb":1,"a":[["polyketides/fumagillin.yaml","fumagillin"]],"b":[["antibacterial/fumagillin.html","fumagillin"]]},{"id":"CHEBI:48947","l":"clavulanic acid","na":1,"nb":1,"a":[["amino_acids_and_peptides/clavulanic-acid.yaml","clavulanic acid"]],"b":[["antibacterial/clavulanic-acid.html","clavulanic acid"]]},{"id":"CHEBI:50437","l":"nocardamine","na":1,"nb":1,"a":[["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"]],"b":[["antibacterial/nocardamine.html","nocardamine"]]},{"id":"CHEBI:51460","l":"albaflavenone","na":1,"nb":1,"a":[["terpenoids/albaflavenone.yaml","albaflavenone"]],"b":[["unspecified/albaflavenone.html","albaflavenone"]]},{"id":"CHEBI:52549","l":"sordarin","na":1,"nb":1,"a":[["terpenoids/sordarin.yaml","sordarin"]],"b":[["antifungal/sordarin.html","sordarin"]]},{"id":"CHEBI:5292","l":"geldanamycin","na":1,"nb":1,"a":[["polyketides/geldanamycin.yaml","geldanamycin"]],"b":[["antiviral/geldanamycin.html","geldanamycin"]]},{"id":"CHEBI:5674","l":"herbimycin","na":1,"nb":1,"a":[["polyketides/herbimycin-a.yaml","herbimycin A"]],"b":[["unspecified/herbimycin.html","herbimycin"]]},{"id":"CHEBI:59064","l":"colistin A","na":1,"nb":1,"a":[["amino_acids_and_peptides/colistin-a.yaml","colistin A"]],"b":[["antibacterial/colistin-a.html","colistin A"]]},{"id":"CHEBI:59673","l":"colistin B","na":1,"nb":1,"a":[["amino_acids_and_peptides/colistin-b.yaml","colistin B"]],"b":[["antibacterial/colistin-b.html","colistin B"]]},{"id":"CHEBI:60584","l":"bicozamycin","na":1,"nb":1,"a":[["unclassified/bicozamycin.yaml","bicozamycin"]],"b":[["antibacterial/bicozamycin.html","bicozamycin"]]},{"id":"CHEBI:60821","l":"streptothricin F","na":1,"nb":1,"a":[["carbohydrates/streptothricin-f.yaml","streptothricin F"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"]]},{"id":"CHEBI:60828","l":"streptothricin D","na":1,"nb":1,"a":[["carbohydrates/streptothricin-d.yaml","streptothricin D"]],"b":[["unspecified/streptothricin-d.html","streptothricin D"]]},{"id":"CHEBI:61080","l":"romidepsin","na":1,"nb":1,"a":[["unclassified/romidepsin.yaml","romidepsin"]],"b":[["unspecified/romidepsin.html","romidepsin"]]},{"id":"CHEBI:62219","l":"2-heptyl-4-quinolone","na":1,"nb":1,"a":[["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"]],"b":[["antibacterial/2-heptyl-4-quinolone.html","2-heptyl-4-quinolone"]]},{"id":"CHEBI:623918","l":"nikkomycin Z","na":1,"nb":1,"a":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"]],"b":[["antifungal/nikkomycin-z.html","nikkomycin Z"]]},{"id":"CHEBI:64248","l":"tunicamycin B1","na":1,"nb":1,"a":[["carbohydrates/tunicamycin-b1.yaml","tunicamycin B1"]],"b":[["unspecified/tunicamycin-b1.html","tunicamycin B1"]]},{"id":"CHEBI:64273","l":"erythromycin C","na":1,"nb":1,"a":[["polyketides/erythromycin-c.yaml","erythromycin C"]],"b":[["unspecified/erythromycin-c.html","erythromycin C"]]},{"id":"CHEBI:6472","l":"lincomycin","na":1,"nb":1,"a":[["carbohydrates/lincomycin.yaml","lincomycin"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"CHEBI:65110","l":"butirosin B","na":1,"nb":1,"a":[["carbohydrates/butirosin-b.yaml","butirosin B"]],"b":[["unspecified/butirosin-b.html","butirosin B"]]},{"id":"CHEBI:65112","l":"butirosin A","na":1,"nb":1,"a":[["carbohydrates/butirosin-a.yaml","butirosin A"]],"b":[["unspecified/butirosin-a.html","butirosin A"]]},{"id":"CHEBI:65401","l":"ambiguine I","na":1,"nb":1,"a":[["alkaloids/ambiguine-i-isonitrile.yaml","ambiguine I isonitrile"]],"b":[["antibacterial/ambiguine-i.html","ambiguine I"]]},{"id":"CHEBI:65474","l":"BE-24566B","na":1,"nb":1,"a":[["polyketides/be-24566b.yaml","BE-24566B"]],"b":[["antibacterial/be-24566b.html","BE-24566B"]]},{"id":"CHEBI:65517","l":"brasiliquinone B","na":1,"nb":1,"a":[["polyketides/brasiliquinone-b.yaml","brasiliquinone B"]],"b":[["antibacterial/brasiliquinone-b.html","brasiliquinone B"]]},{"id":"CHEBI:65619","l":"chloropeptin II","na":1,"nb":1,"a":[["amino_acids_and_peptides/isocomplestatin.yaml","isocomplestatin"]],"b":[["antiviral/chloropeptin-ii.html","chloropeptin II"]]},{"id":"CHEBI:65716","l":"cystothiazole A","na":1,"nb":1,"a":[["unclassified/cystothiazole-a.yaml","cystothiazole A"]],"b":[["antifungal/cystothiazole-a.html","cystothiazole A"]]},{"id":"CHEBI:65915","l":"FR901464","na":1,"nb":1,"a":[["fatty_acids/fr901464.yaml","FR901464"]],"b":[["unspecified/fr901464.html","FR901464"]]},{"id":"CHEBI:65964","l":"gilvusmycin","na":1,"nb":1,"a":[["alkaloids/gilvusmycin.yaml","gilvusmycin"]],"b":[["unspecified/gilvusmycin.html","gilvusmycin"]]},{"id":"CHEBI:66006","l":"harziphilone","na":1,"nb":1,"a":[["polyketides/harziphilone.yaml","harziphilone"]],"b":[["antiviral/harziphilone.html","harziphilone"]]},{"id":"CHEBI:66093","l":"isocomplestatin","na":1,"nb":1,"a":[["amino_acids_and_peptides/isocomplestatin.yaml","isocomplestatin"]],"b":[["antiviral/complestatin.html","isocomplestatin"]]},{"id":"CHEBI:66135","l":"kalimantacin A","na":1,"nb":1,"a":[["polyketides/kalimantacin-a.yaml","kalimantacin A"]],"b":[["antibacterial/kalimantacin-a.html","kalimantacin A"]]},{"id":"CHEBI:66553","l":"lactonamycin","na":1,"nb":1,"a":[["unclassified/lactonamycin.yaml","lactonamycin"]],"b":[["antibacterial/lactonamycin.html","lactonamycin"]]},{"id":"CHEBI:66678","l":"(−)-marinopyrrole A","na":1,"nb":1,"a":[["alkaloids/marinopyrrole-a.yaml","(−)-marinopyrrole A"]],"b":[["antibacterial/marinopyrrole-a.html","(−)-marinopyrrole A"]]},{"id":"CHEBI:66679","l":"(−)-marinopyrrole B","na":1,"nb":1,"a":[["alkaloids/marinopyrrole-b.yaml","(−)-marinopyrrole B"]],"b":[["antibacterial/marinopyrrole-b.html","(−)-marinopyrrole B"]]},{"id":"CHEBI:66687","l":"mediomycin A","na":1,"nb":1,"a":[["fatty_acids/mediomycin-a.yaml","mediomycin A"]],"b":[["antifungal/mediomycin-a.html","mediomycin A"]]},{"id":"CHEBI:66771","l":"polyketomycin","na":1,"nb":1,"a":[["polyketides/polyketomycin.yaml","polyketomycin"]],"b":[["antibacterial/polyketomycin.html","polyketomycin"]]},{"id":"CHEBI:6701","l":"maytansine","na":1,"nb":1,"a":[["polyketides/maytansine.yaml","maytansine"]],"b":[["unspecified/maytansine.html","maytansine"]]},{"id":"CHEBI:67811","l":"zorbamycin","na":1,"nb":1,"a":[["amino_acids_and_peptides/zorbamycin.yaml","zorbamycin"]],"b":[["unspecified/zorbamycin.html","zorbamycin"]]},{"id":"CHEBI:68236","l":"platensimycin","na":1,"nb":1,"a":[["terpenoids/platensimycin.yaml","platensimycin"]],"b":[["antibacterial/platensimycin.html","platensimycin"]]},{"id":"CHEBI:68241","l":"platencin","na":1,"nb":1,"a":[["terpenoids/platencin.yaml","platencin"]],"b":[["antibacterial/platencin.html","platencin"]]},{"id":"CHEBI:7025","l":"mupirocin","na":1,"nb":1,"a":[["polyketides/mupirocin.yaml","mupirocin"]],"b":[["antibacterial/mupirocin.html","mupirocin"]]},{"id":"CHEBI:70816","l":"pentalenolactone","na":1,"nb":1,"a":[["terpenoids/pentalenolactone.yaml","pentalenolactone"]],"b":[["unspecified/pentalenolactone.html","pentalenolactone"]]},{"id":"CHEBI:71961","l":"lividomycin A","na":1,"nb":1,"a":[["carbohydrates/lividomycin-a.yaml","lividomycin A"]],"b":[["antimycobacterial/lividomycin-a.html","lividomycin A"]]},{"id":"CHEBI:72590","l":"rhizoxin","na":1,"nb":1,"a":[["unclassified/rhizoxin-a.yaml","rhizoxin A"]],"b":[["unspecified/rhizoxin.html","rhizoxin"]]},{"id":"CHEBI:73167","l":"concanamycin A","na":1,"nb":1,"a":[["polyketides/concanamycin-a.yaml","concanamycin A"]],"b":[["antifungal/concanamycin-a.html","concanamycin A"]]},{"id":"CHEBI:7488","l":"natamycin","na":1,"nb":1,"a":[["polyketides/natamycin.yaml","natamycin"]],"b":[["antifungal/natamycin.html","natamycin"]]},{"id":"CHEBI:74926","l":"patulin","na":1,"nb":1,"a":[["polyketides/patulin.yaml","patulin"]],"b":[["unspecified/patulin.html","patulin"]]},{"id":"CHEBI:7508","l":"framycetin","na":1,"nb":1,"a":[["carbohydrates/framycetin.yaml","framycetin"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"CHEBI:75276","l":"ikarugamycin","na":1,"nb":1,"a":[["unclassified/ikarugamycin.yaml","ikarugamycin"]],"b":[["antiprotozoal/ikarugamycin.html","ikarugamycin"]]},{"id":"CHEBI:75306","l":"2-heptyl-4-hydroxyquinoline","na":1,"nb":1,"a":[["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"]],"b":[["antibacterial/2-heptyl-4-hydroxyquinoline.html","2-heptyl-4-hydroxyquinoline"]]},{"id":"CHEBI:7569","l":"nigericin","na":1,"nb":1,"a":[["polyketides/nigericin.yaml","nigericin"]],"b":[["antibacterial/nigericin.html","nigericin"]]},{"id":"CHEBI:77772","l":"ilicicolin H","na":1,"nb":1,"a":[["alkaloids/ilicicolin-h.yaml","ilicicolin H"]],"b":[["unspecified/ilicicolin-h.html","ilicicolin H"]]},{"id":"CHEBI:77879","l":"elaiophylin","na":1,"nb":1,"a":[["polyketides/elaiophylin.yaml","elaiophylin"]],"b":[["antifungal/elaiophylin.html","elaiophylin"]]},{"id":"CHEBI:78156","l":"mucidin","na":1,"nb":1,"a":[["polyketides/mucidin.yaml","mucidin"]],"b":[["antifungal/mucidin.html","mucidin"]]},{"id":"CHEBI:78688","l":"2,4-diacetylphloroglucinol","na":1,"nb":1,"a":[["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"]],"b":[["antifungal/2-4-diacetylphloroglucinol.html","2,4-diacetylphloroglucinol"]]},{"id":"CHEBI:79391","l":"(−)-chuangxinmycin","na":1,"nb":1,"a":[["alkaloids/chuangxinmycin.yaml","(−)-chuangxinmycin"]],"b":[["antibacterial/chuangxinmycin.html","(−)-chuangxinmycin"]]},{"id":"CHEBI:80729","l":"toxoflavin","na":1,"nb":1,"a":[["alkaloids/toxoflavin.yaml","toxoflavin"]],"b":[["antibacterial/toxoflavin.html","toxoflavin"]]},{"id":"CHEBI:82758","l":"prodigiosin","na":1,"nb":1,"a":[["alkaloids/prodigiosin.yaml","prodigiosin"]],"b":[["unspecified/prodigiosin.html","prodigiosin"]]},{"id":"CHEBI:83206","l":"albomycin δ1","na":1,"nb":1,"a":[["amino_acids_and_peptides/albomycin-1.yaml","albomycin δ1"]],"b":[["antibacterial/albomycin-%CE%B41.html","albomycin δ1"]]},{"id":"CHEBI:8349","l":"pradimicin A","na":1,"nb":1,"a":[["polyketides/pradimicin-a.yaml","pradimicin A"]],"b":[["antifungal/pradimicin-a.html","pradimicin A"]]},{"id":"CHEBI:84037","l":"ravidomycin","na":1,"nb":1,"a":[["polyketides/ravidomycin.yaml","ravidomycin"]],"b":[["unspecified/ravidomycin.html","ravidomycin"]]},{"id":"CHEBI:85129","l":"ristocetin","na":1,"nb":1,"a":[["amino_acids_and_peptides/ristocetin-a.yaml","Ristocetin A"]],"b":[["antibacterial/ristocetin.html","ristocetin"]]},{"id":"CHEBI:85251","l":"teicoplanin A2-2","na":1,"nb":1,"a":[["amino_acids_and_peptides/teicoplanin-a2-2.yaml","teicoplanin A2-2"]],"b":[["unspecified/teicoplanin-a2-2.html","teicoplanin A2-2"]]},{"id":"CHEBI:85616","l":"viridicatumtoxin","na":1,"nb":1,"a":[["unclassified/viridicatumtoxin.yaml","viridicatumtoxin"]],"b":[["unspecified/viridicatumtoxin.html","viridicatumtoxin"]]},{"id":"CHEBI:86012","l":"oxetanocin A","na":1,"nb":1,"a":[["carbohydrates/oxetanocin-a.yaml","oxetanocin A"]],"b":[["antibacterial/oxetanocin-a.html","oxetanocin A"]]},{"id":"CHEBI:8653","l":"pyocyanine","na":1,"nb":1,"a":[["alkaloids/pyocyanine.yaml","pyocyanine"]],"b":[["antibacterial/pyocyanine.html","pyocyanine"]]},{"id":"CHEBI:87084","l":"rosaramicin","na":1,"nb":1,"a":[["polyketides/rosaramicin.yaml","rosaramicin"]],"b":[["antibacterial/rosaramicin.html","rosaramicin"]]},{"id":"CHEBI:87399","l":"UK 63598","na":1,"nb":1,"a":[["unclassified/uk-63598.yaml","UK 63598"]],"b":[["unspecified/uk-63598.html","UK 63598"]]},{"id":"CHEBI:90284","l":"pirazofurin","na":1,"nb":1,"a":[["unclassified/pirazofurin.yaml","pirazofurin"]],"b":[["unspecified/pirazofurin.html","pirazofurin"]]},{"id":"CHEBI:90888","l":"aurachin C","na":1,"nb":1,"a":[["alkaloids/aurachin-c.yaml","aurachin C"]],"b":[["antibacterial/aurachin-c.html","aurachin C"]]},{"id":"CHEBI:90924","l":"aurachin A","na":1,"nb":1,"a":[["alkaloids/aurachin-a.yaml","aurachin A"]],"b":[["antibacterial/aurachin-a.html","aurachin A"]]},{"id":"CHEBI:90941","l":"sibiromycin","na":1,"nb":1,"a":[["carbohydrates/sibiromycin.yaml","sibiromycin"]],"b":[["unspecified/sibiromycin.html","sibiromycin"]]},{"id":"CHEBI:9168","l":"sirolimus","na":1,"nb":1,"a":[["polyketides/sirolimus.yaml","sirolimus"]],"b":[["antibacterial/sirolimus.html","sirolimus"]]},{"id":"CHEBI:9169","l":"sisomycin","na":1,"nb":1,"a":[["carbohydrates/sisomycin.yaml","sisomycin"]],"b":[["antibacterial/sisomycin.html","sisomycin"]]},{"id":"CHEBI:9215","l":"spectinomycin","na":1,"nb":1,"a":[["carbohydrates/spectinomycin.yaml","spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"CHEBI:92181","l":"lasalocid","na":1,"nb":1,"a":[["polyketides/lasalocid.yaml","lasalocid"]],"b":[["antiprotozoal/lasalocid.html","lasalocid"]]},{"id":"CHEBI:9232","l":"spinosyn D","na":1,"nb":1,"a":[["polyketides/spinosyn-d.yaml","spinosyn D"]],"b":[["unspecified/spinosyn-d.html","spinosyn D"]]},{"id":"CHEBI:9287","l":"streptonigrin","na":1,"nb":1,"a":[["alkaloids/streptonigrin.yaml","streptonigrin"]],"b":[["unspecified/streptonigrin.html","streptonigrin"]]},{"id":"CHEBI:9470","l":"tetracenomycin C","na":1,"nb":1,"a":[["polyketides/tetracenomycin-c.yaml","tetracenomycin C"]],"b":[["antibacterial/tetracenomycin-c.html","tetracenomycin C"]]},{"id":"CHEBI:9555","l":"tioguanine","na":1,"nb":1,"a":[["alkaloids/tioguanine.yaml","tioguanine"]],"b":[["antiviral/tioguanine.html","tioguanine"]]},{"id":"NCBITaxon:1156913","l":"","na":1,"nb":1,"a":[["amino_acids_and_peptides/vancomycin.yaml","vancomycin"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"NCBITaxon:1352936","l":"Streptomyces roseochromogenus subsp. oscitans DS 12.976","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/clorobiocin.yaml","clorobiocin"]],"b":[["antibacterial/clorobiocin.html","clorobiocin"]]},{"id":"NCBITaxon:1469403","l":"Streptomyces sp. ZJ306","na":1,"nb":1,"a":[["unclassified/ikarugamycin.yaml","ikarugamycin"]],"b":[["antiprotozoal/ikarugamycin.html","ikarugamycin"]]},{"id":"NCBITaxon:1654360","l":"Photobacterium galatheae","na":1,"nb":1,"a":[["alkaloids/holomycin.yaml","holomycin"]],"b":[["antibacterial/holomycin.html","holomycin"]]},{"id":"NCBITaxon:1764","l":"Mycobacterium avium","na":1,"nb":1,"a":[["fatty_acids/gpl-21.yaml","GPL-21"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"NCBITaxon:2583819","l":"Streptomyces sp. DASNCL29","na":1,"nb":1,"a":[["polyketides/nigericin.yaml","nigericin"]],"b":[["antibacterial/nigericin.html","nigericin"]]},{"id":"NCBITaxon:263","l":"Francisella tularensis","na":1,"nb":1,"a":[["polyketides/emodin.yaml","emodin"]],"b":[["unspecified/%CE%B1-mangostin.html","α-mangostin"]]},{"id":"NCBITaxon:41251","l":"Strobilurus tenacellus","na":1,"nb":1,"a":[["polyketides/mucidin.yaml","mucidin"]],"b":[["antifungal/mucidin.html","mucidin"]]},{"id":"NCBITaxon:527005","l":"Yersinia ruckeri ATCC 29473","na":1,"nb":1,"a":[["alkaloids/holomycin.yaml","holomycin"]],"b":[["antibacterial/holomycin.html","holomycin"]]},{"id":"NCBITaxon:5382","l":"Suillus grevillei","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/atromentin.yaml","atromentin"]],"b":[["antibacterial/atromentin.html","atromentin"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":1,"nb":1,"a":[["alkaloids/congocidine.yaml","congocidine"]],"b":[["antiprotozoal/emetine.html","emetine"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":1,"nb":1,"a":[["polyketides/emodin.yaml","emodin"]],"b":[["unspecified/%CE%B1-mangostin.html","α-mangostin"]]},{"id":"NCBITaxon:67283","l":"Streptomyces candidus","na":1,"nb":1,"a":[["unclassified/pirazofurin.yaml","pirazofurin"]],"b":[["unspecified/pirazofurin.html","pirazofurin"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":1,"a":[["unclassified/lysocin-e.yaml","lysocin E"]],"b":[["antibacterial/lysocin-e.html","lysocin E"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":1,"a":[["unclassified/mycobactin.yaml","mycobactin"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:889487","l":"Streptomyces sp. S4","na":1,"nb":1,"a":[["unclassified/antimycin-a.yaml","antimycin A"]],"b":[["antifungal/antimycin-a.html","antimycin A"]]},{"id":"UniProt:A0A1S5RQP7","l":"","na":1,"nb":1,"a":[["alkaloids/pentostatin.yaml","pentostatin"]],"b":[["unspecified/pentostatin.html","pentostatin"]]},{"id":"UniProt:B1JQH1","l":"","na":1,"nb":1,"a":[["polyketides/emodin.yaml","emodin"]],"b":[["unspecified/%CE%B1-mangostin.html","α-mangostin"]]}]} \ No newline at end of file +{"a":"NaturalProductMech","b":"AntibioticMech","base":{"NaturalProductMech":"https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/natural_products/","AntibioticMech":"https://culturebotai.github.io/AntibioticMech/pages/"},"n":278,"by":{"CHEBI":180,"NCBITaxon":96,"UniProt":2},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":24,"nb":30,"a":[["alkaloids/biotin.yaml","biotin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":12,"nb":12,"a":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"NCBITaxon:330879","l":"Aspergillus fumigatus (strain ATCC MYA-4609 / CBS 101355 / FGSC A1100 / Af293)","na":14,"nb":5,"a":[["alkaloids/fumigaclavine-c.yaml","fumigaclavine C"],["alkaloids/fumiquinazoline-a.yaml","fumiquinazoline A"],["alkaloids/fumiquinazoline-c.yaml","fumiquinazoline C"],["alkaloids/fumiquinazoline-d.yaml","fumiquinazoline D"],["alkaloids/hexadehydroastechrome.yaml","hexadehydroastechrome"],["polyketides/endocrocin.yaml","endocrocin"]],"b":[["antibacterial/fumagillin.html","fumagillin"],["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/terbinafine.html","terbinafine"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:5518","l":"Fusarium graminearum","na":14,"nb":5,"a":[["amino_acids_and_peptides/fusaoctaxin-a.yaml","fusaoctaxin A"],["polyketides/aurofusarin.yaml","aurofusarin"],["polyketides/fusarielin-h.yaml","fusarielin H"],["polyketides/gibepyrone-a.yaml","gibepyrone A"],["polyketides/prolipyrone-b.yaml","prolipyrone B"],["polyketides/zearalenone.yaml","zearalenone"]],"b":[["antifungal/carbendazim.html","carbendazim"],["antifungal/difenoconazole.html","difenoconazole"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/prochloraz.html","prochloraz"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":5,"nb":13,"a":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"],["unclassified/leuvalin.yaml","leuvalin"],["unclassified/phevalin.yaml","phevalin"],["unclassified/tyrvalin.yaml","tyrvalin"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/bromodeoxytopsentin.html","bromodeoxytopsentin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"NCBITaxon:229533","l":"Fusarium graminearum PH-1","na":11,"nb":5,"a":[["alkaloids/chrysogine.yaml","chrysogine"],["amino_acids_and_peptides/fusaoctaxin-a.yaml","fusaoctaxin A"],["polyketides/aurofusarin.yaml","aurofusarin"],["polyketides/prolipyrone-b.yaml","prolipyrone B"],["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"],["terpenoids/15-acetyldeoxynivalenol.yaml","15-acetyldeoxynivalenol"]],"b":[["antifungal/carbendazim.html","carbendazim"],["antifungal/difenoconazole.html","difenoconazole"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/prochloraz.html","prochloraz"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:40559","l":"Botrytis cinerea","na":23,"nb":4,"a":[["terpenoids/1-epibotrydial.yaml","1-epibotrydial"],["terpenoids/10-dehydroxy-dihydrobotrydialone.yaml","10-dehydroxy dihydrobotrydialone"],["terpenoids/10-epi-dihydrobotrydial.yaml","10-epi-dihydrobotrydial"],["terpenoids/10-oxo-dihydrobotrydial.yaml","10-Oxo-dihydrobotrydial"],["terpenoids/10-oxodehydrodihydrobotrydial.yaml","10-Oxodehydrodihydrobotrydial"],["terpenoids/10-oxodihydrobotry-1-9-4-5-diendial.yaml","10-Oxodihydrobotry-1(9),4(5)-diendial"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/iprodione.html","iprodione"],["antifungal/pyrisoxazole.html","pyrisoxazole"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":4,"nb":22,"a":[["alkaloids/tilivalline.yaml","tilivalline"],["amino_acids_and_peptides/colibactin.yaml","colibactin"],["amino_acids_and_peptides/klebsidin.yaml","klebsidin"],["carbohydrates/capsular-polysaccharide-2.yaml","capsular polysaccharide"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"]]},{"id":"NCBITaxon:746128","l":"Aspergillus fumigatus","na":20,"nb":4,"a":[["alkaloids/fumigaclavine-c.yaml","fumigaclavine C"],["alkaloids/fumiquinazoline-a.yaml","fumiquinazoline A"],["alkaloids/fumiquinazoline-c.yaml","fumiquinazoline C"],["alkaloids/fumiquinazoline-d.yaml","fumiquinazoline D"],["alkaloids/hexadehydroastechrome.yaml","hexadehydroastechrome"],["carbohydrates/tobramycin.yaml","tobramycin"]],"b":[["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/terbinafine.html","terbinafine"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:405948","l":"Saccharopolyspora erythraea NRRL 2338","na":7,"nb":4,"a":[["amino_acids_and_peptides/erythrochelin.yaml","erythrochelin"],["polyketides/erythromycin-a.yaml","erythromycin A"],["polyketides/erythromycin-b.yaml","erythromycin B"],["polyketides/erythromycin-c.yaml","erythromycin C"],["polyketides/erythromycin-d.yaml","erythromycin D"],["polyketides/flaviolin.yaml","flaviolin"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["unspecified/erythromycin-b.html","erythromycin B"],["unspecified/erythromycin-c.html","erythromycin C"],["unspecified/erythromycin-d.html","erythromycin D"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":16,"nb":3,"a":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["amino_acids_and_peptides/ericin-s.yaml","ericin S"],["amino_acids_and_peptides/iturin.yaml","iturin"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"NCBITaxon:1890","l":"Streptomyces antibioticus","na":14,"nb":3,"a":[["alkaloids/esmeraldin.yaml","esmeraldin"],["alkaloids/pentostatin.yaml","pentostatin"],["amino_acids_and_peptides/2-2-hydroxyethyl-clavam.yaml","(-)-2-(2-hydroxyethyl)clavam"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["amino_acids_and_peptides/scabichelin.yaml","scabichelin"],["amino_acids_and_peptides/valclavam.yaml","valclavam"]],"b":[["antibacterial/indanomycin.html","indanomycin"],["unspecified/oviedomycin.html","oviedomycin"],["unspecified/pentostatin.html","pentostatin"]]},{"id":"NCBITaxon:117187","l":"Fusarium verticillioides","na":8,"nb":3,"a":[["alkaloids/dihydrofusarin-c.yaml","dihydrofusarin C"],["alkaloids/epi-fusarin-c.yaml","epi-fusarin C"],["alkaloids/fusaric-acid.yaml","fusaric acid"],["alkaloids/fusarin-c.yaml","fusarin C"],["alkaloids/fusarin-d.yaml","fusarin D"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/fludioxonil.html","fludioxonil"]]},{"id":"NCBITaxon:1867","l":"Actinoplanes teichomyceticus","na":6,"nb":3,"a":[["amino_acids_and_peptides/teicoplanin-a2-1.yaml","Teicoplanin A2-1"],["amino_acids_and_peptides/teicoplanin-a2-2.yaml","teicoplanin A2-2"],["amino_acids_and_peptides/teicoplanin-a2-3.yaml","teicoplanin A2-3"],["amino_acids_and_peptides/teicoplanin-a2-4.yaml","teicoplanin A2-4"],["amino_acids_and_peptides/teicoplanin-a2-5.yaml","Teicoplanin A2-5"],["amino_acids_and_peptides/teicoplanin.yaml","teicoplanin"]],"b":[["antibacterial/teicoplanin.html","teicoplanin"],["unspecified/teicoplanin-a2-2.html","teicoplanin A2-2"],["unspecified/teicoplanin-a2-3.html","teicoplanin A2-3"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":3,"nb":4,"a":[["amino_acids_and_peptides/epidermin.yaml","epidermin"],["amino_acids_and_peptides/epilancin-15x.yaml","epilancin 15x"],["amino_acids_and_peptides/pep5.yaml","pep5"]],"b":[["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/oxacillin.html","oxacillin"]]},{"id":"NCBITaxon:451804","l":"Aspergillus fumigatus A1163","na":3,"nb":3,"a":[["terpenoids/21-h-hopane-3beta-22-diol.yaml","21-β-H-hopane-3beta, 22-diol"],["terpenoids/compound-3-3.yaml","compound 3"],["terpenoids/fumihopaside-a.yaml","fumihopaside A"]],"b":[["antifungal/itraconazole.html","itraconazole"],["antifungal/terbinafine.html","terbinafine"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":27,"nb":2,"a":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["alkaloids/pseudomonine.yaml","pseudomonine"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyreudione-c.yaml","pyreudione C"],["alkaloids/quinolobactin.yaml","quinolobactin"]],"b":[["antibacterial/mupirocin.html","mupirocin"],["antifungal/2-4-diacetylphloroglucinol.html","2,4-diacetylphloroglucinol"]]},{"id":"NCBITaxon:332648","l":"Botrytis cinerea B05.10","na":21,"nb":2,"a":[["terpenoids/1-epibotrydial.yaml","1-epibotrydial"],["terpenoids/10-dehydroxy-dihydrobotrydialone.yaml","10-dehydroxy dihydrobotrydialone"],["terpenoids/10-epi-dihydrobotrydial.yaml","10-epi-dihydrobotrydial"],["terpenoids/10-oxo-dihydrobotrydial.yaml","10-Oxo-dihydrobotrydial"],["terpenoids/10-oxodehydrodihydrobotrydial.yaml","10-Oxodehydrodihydrobotrydial"],["terpenoids/10-oxodihydrobotry-1-9-4-5-diendial.yaml","10-Oxodihydrobotry-1(9),4(5)-diendial"]],"b":[["antifungal/fludioxonil.html","fludioxonil"],["antifungal/iprodione.html","iprodione"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":2,"nb":15,"a":[["alkaloids/acinetobactin.yaml","acinetobactin"],["amino_acids_and_peptides/fimsbactin-a.yaml","fimsbactin A"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"NCBITaxon:58346","l":"Streptomyces platensis","na":14,"nb":2,"a":[["alkaloids/13-epi-dorrigocin-a.yaml","13-epi-dorrigocin A"],["alkaloids/17-hydroxy-8-desmethoxy-isomigrastatin.yaml","17-hydroxy-8-desmethoxy-isomigrastatin"],["alkaloids/dorrigocin-a.yaml","dorrigocin A"],["alkaloids/dorrigocin-b.yaml","dorrigocin B"],["alkaloids/iso-migrastatin.yaml","iso-migrastatin"],["alkaloids/staurosporine.yaml","staurosporine"]],"b":[["antibacterial/platencin.html","platencin"],["antibacterial/platensimycin.html","platensimycin"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":10,"nb":2,"a":[["amino_acids_and_peptides/lipopeptide-8d1-1.yaml","lipopeptide 8D1-1"],["amino_acids_and_peptides/lipopeptide-8d1-2.yaml","lipopeptide 8D1-2"],["carbohydrates/amicetin.yaml","amicetin"],["carbohydrates/streptothricin-c.yaml","streptothricin C"],["carbohydrates/streptothricin-d.yaml","streptothricin D"],["carbohydrates/streptothricin-e.yaml","streptothricin E"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"],["unspecified/streptothricin-d.html","streptothricin D"]]},{"id":"NCBITaxon:242507","l":"","na":10,"nb":2,"a":[["polyketides/1-alpha-l-2-o-methyl-6-deoxymannopyranosyloxy-3-6-8-trimethoxynaphthalene.yaml","1-(alpha-l-(2-O-methyl)-6-deoxymannopyranosyloxy)-3,6,8-trimethoxynaphthalene"],["polyketides/10-11-dihydroxymagnaporthepyrone.yaml","10,11-dihydroxymagnaporthepyrone"],["polyketides/12-13-dihydroxymagnaporthepyrone.yaml","12,13-dihydroxymagnaporthepyrone"],["polyketides/epipyriculol.yaml","epipyriculol"],["polyketides/naphthalene-1-3-6-8-tetrol.yaml","naphthalene-1,3,6,8-tetrol"],["polyketides/nectriapyrone-c.yaml","nectriapyrone C"]],"b":[["antifungal/carboxin.html","carboxin"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:1223523","l":"Streptomyces mobaraensis NBRC 13819 = DSM 40847","na":5,"nb":2,"a":[["amino_acids_and_peptides/bleomycin-a2.yaml","bleomycin A2"],["amino_acids_and_peptides/bleomycin-b2.yaml","bleomycin B2"],["amino_acids_and_peptides/cyclothiazomycin-b1.yaml","cyclothiazomycin b1"],["amino_acids_and_peptides/ketomemicin-b3.yaml","ketomemicin B3"],["amino_acids_and_peptides/ketomemicin-b4.yaml","ketomemicin B4"]],"b":[["antibacterial/bleomycin-a2.html","bleomycin A2"],["antibacterial/bleomycin-b2.html","bleomycin B2"]]},{"id":"NCBITaxon:467194","l":"Streptomyces sp. CNQ-418","na":5,"nb":2,"a":[["alkaloids/marinopyrrole-a.yaml","(−)-marinopyrrole A"],["alkaloids/marinopyrrole-b.yaml","(−)-marinopyrrole B"],["alkaloids/marinopyrrole-c.yaml","marinopyrrole C"],["alkaloids/marinopyrrole-d.yaml","marinopyrrole D"],["alkaloids/marinopyrrole-e.yaml","marinopyrrole E"]],"b":[["antibacterial/marinopyrrole-a.html","(−)-marinopyrrole A"],["antibacterial/marinopyrrole-b.html","(−)-marinopyrrole B"]]},{"id":"NCBITaxon:559292","l":"Saccharomyces cerevisiae (strain ATCC 204508 / S288c)","na":2,"nb":5,"a":[["polyketides/kojic-acid.yaml","kojic acid"],["polyketides/radicicol.yaml","radicicol"]],"b":[["antifungal/anidulafungin.html","anidulafungin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/caspofungin.html","caspofungin"],["antifungal/cycloheximide.html","cycloheximide"],["antifungal/micafungin.html","micafungin"]]},{"id":"NCBITaxon:212423","l":"Streptomyces kaniharaensis","na":2,"nb":2,"a":[["alkaloids/formycin-a.yaml","formycin A"],["carbohydrates/coformycin.yaml","coformycin"]],"b":[["unspecified/coformycin.html","coformycin"],["unspecified/formycin-a.html","formycin A"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":31,"nb":1,"a":[["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["alkaloids/myxofacycline-e.yaml","myxofacycline E"],["alkaloids/myxofacycline-f.yaml","myxofacycline F"],["alkaloids/myxofacycline-g.yaml","myxofacycline G"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"]],"b":[["antibacterial/althiomycin.html","althiomycin"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":30,"nb":1,"a":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["amino_acids_and_peptides/ditryptophenaline.yaml","(-)-ditryptophenaline"],["amino_acids_and_peptides/imizoquin-a.yaml","imizoquin A"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":23,"nb":1,"a":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/melanin.yaml","melanin"],["alkaloids/undecylprodigiosin.yaml","undecylprodigiosin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/sapb.yaml","SapB"]],"b":[["antibacterial/nocardamine.html","nocardamine"]]},{"id":"NCBITaxon:162425","l":"Aspergillus nidulans","na":22,"nb":1,"a":[["alkaloids/aspernidine-a.yaml","aspernidine A"],["alkaloids/aspyridone-a.yaml","aspyridone A"],["alkaloids/aspyridone-b.yaml","aspyridone B"],["alkaloids/biotin.yaml","biotin"],["alkaloids/cichorine.yaml","cichorine"],["alkaloids/pentostatin.yaml","pentostatin"]],"b":[["antifungal/thiabendazole.html","thiabendazole"]]},{"id":"NCBITaxon:227321","l":"Emericella nidulans (strain FGSC A4 / ATCC 38163 / CBS 112.46 / NRRL 194 / M139)","na":22,"nb":1,"a":[["alkaloids/aspernidine-a.yaml","aspernidine A"],["alkaloids/aspyridone-a.yaml","aspyridone A"],["alkaloids/aspyridone-b.yaml","aspyridone B"],["alkaloids/cichorine.yaml","cichorine"],["alkaloids/terrequinone-a.yaml","terrequinone A"],["amino_acids_and_peptides/fellutamide-b.yaml","fellutamide B"]],"b":[["antifungal/thiabendazole.html","thiabendazole"]]},{"id":"NCBITaxon:54571","l":"Streptomyces venezuelae","na":21,"nb":1,"a":[["alkaloids/anthelvencin-a.yaml","anthelvencin A"],["alkaloids/anthelvencin-b.yaml","anthelvencin B"],["alkaloids/anthelvencin-c.yaml","anthelvencin C"],["alkaloids/chloramphenicol.yaml","chloramphenicol"],["alkaloids/corynecin-ii.yaml","corynecin II"],["alkaloids/gaburedin-d.yaml","gaburedin D"]],"b":[["antibacterial/methymycin.html","methymycin"]]},{"id":"NCBITaxon:2878388","l":"Streptomyces marincola","na":20,"nb":1,"a":[["alkaloids/indimicin-a.yaml","indimicin A"],["alkaloids/indimicin-b.yaml","indimicin B"],["alkaloids/indimicin-c.yaml","indimicin C"],["alkaloids/indimicin-d.yaml","indimicin D"],["alkaloids/indimicin-e.yaml","indimicin E"],["alkaloids/lynamicin-a.yaml","lynamicin A"]],"b":[["unspecified/piericidin-a.html","piericidin A"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":20,"nb":1,"a":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/c-3-sulfonylated-derivative.yaml","C-3 sulfonylated derivative"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["alkaloids/n-n-dioxide-containing-derivate.yaml","N,N-dioxide containing derivate"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:341663","l":"","na":17,"nb":1,"a":[["alkaloids/asterriquinone-ct5.yaml","asterriquinone CT5"],["alkaloids/dihydroisoflavipucine.yaml","dihydroisoflavipucine"],["alkaloids/isoflavipucine.yaml","isoflavipucine"],["polyketides/citreoviridin.yaml","citreoviridin"],["polyketides/geodin.yaml","geodin"],["polyketides/terreic-acid.yaml","terreic acid"]],"b":[["antiviral/aspulvinone-e.html","aspulvinone E"]]},{"id":"NCBITaxon:41951","l":"Streptomyces argillaceus","na":15,"nb":1,"a":[["alkaloids/argimycin-pi.yaml","argimycin PI"],["alkaloids/argimycin-pii.yaml","argimycin PII"],["alkaloids/argimycin-piv.yaml","argimycin PIV"],["alkaloids/argimycin-pix.yaml","argimycin PIX"],["alkaloids/argimycin-pv.yaml","argimycin PV"],["alkaloids/argimycin-pvi.yaml","argimycin PVI"]],"b":[["unspecified/mithramycin.html","mithramycin"]]},{"id":"NCBITaxon:5127","l":"Fusarium fujikuroi","na":15,"nb":1,"a":[["alkaloids/fusaric-acid.yaml","fusaric acid"],["alkaloids/fusarin-c.yaml","fusarin C"],["polyketides/bikaverin.yaml","bikaverin"],["polyketides/fujikurin-c.yaml","fujikurin C"],["polyketides/fujikurin-d.yaml","fujikurin D"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":14,"nb":1,"a":[["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/framycetin.yaml","framycetin"],["carbohydrates/neomycin-c.yaml","neomycin C"],["carbohydrates/paromomycin.yaml","paromomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":13,"nb":1,"a":[["alkaloids/holomycin.yaml","holomycin"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/2-formyloxymethylclavam.yaml","2-formyloxymethylclavam"],["amino_acids_and_peptides/2-hydroxymethylclavam.yaml","2-hydroxymethylclavam"],["amino_acids_and_peptides/alanylclavam.yaml","alanylclavam"],["amino_acids_and_peptides/cephamycin-c.yaml","cephamycin C"]],"b":[["antibacterial/clavulanic-acid.html","clavulanic acid"]]},{"id":"NCBITaxon:1433842","l":"Hapalosiphon welwitschii UTEX B 1830","na":12,"nb":1,"a":[["alkaloids/12-epi-fischerindole-i-isonitrile.yaml","12-epi-fischerindole I isonitrile"],["alkaloids/12-epi-fischerindole-u-isonitrile.yaml","12-epi-fischerindole U isonitrile"],["alkaloids/12-epi-hapalindole-c-isonitrile.yaml","12-epi-hapalindole C isonitrile"],["alkaloids/12-epi-hapalindole-e.yaml","12-epi-hapalindole E"],["alkaloids/3-epi-welwitindolinone-b-isothiocyanate.yaml","3-epi-welwitindolinone B isothiocyanate"],["alkaloids/3-z-2-isocyanovinyl-indole.yaml","3-[(Z)-2-isocyanovinyl]indole"]],"b":[["antibacterial/3-z-2-isocyanovinyl-indole.html","3-[(Z)-2-isocyanovinyl]indole"]]},{"id":"NCBITaxon:5053","l":"Aspergillus aculeatus","na":11,"nb":1,"a":[["alkaloids/acurin-a.yaml","acurin A"],["polyketides/secalonic-acid-a.yaml","Secalonic acid A"],["terpenoids/aculene-a.yaml","aculene A"],["terpenoids/aculene-b.yaml","aculene B"],["terpenoids/aculene-c.yaml","aculene C"],["terpenoids/aculene-d.yaml","aculene D"]],"b":[["antifungal/aculeacin-a.html","aculeacin A"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":10,"nb":1,"a":[["alkaloids/labradorin-1.yaml","labradorin 1"],["alkaloids/labradorin-2.yaml","labradorin 2"],["alkaloids/secimide.yaml","secimide"],["amino_acids_and_peptides/phaseolotoxin.yaml","phaseolotoxin"],["amino_acids_and_peptides/syringolin-a.yaml","syringolin A"],["amino_acids_and_peptides/tabtoxin.yaml","tabtoxin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae RIB40","na":10,"nb":1,"a":[["fatty_acids/oryzine-a.yaml","oryzine A"],["polyketides/kojic-acid.yaml","kojic acid"],["polyketides/oryzine-b.yaml","oryzine B"],["polyketides/ywa1.yaml","YWA1"],["shikimates_and_phenylpropanoids/2-4-dihydroxy-3-methoxypropiophenone.yaml","2,4'-dihydroxy-3'-methoxypropiophenone"],["shikimates_and_phenylpropanoids/8-methyldiaporthin.yaml","8-methyldiaporthin"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"NCBITaxon:1159556","l":"Ustilaginoidea virens","na":9,"nb":1,"a":[["amino_acids_and_peptides/ustiloxin-b.yaml","ustiloxin B"],["polyketides/ustilaginoidin-a.yaml","ustilaginoidin A"],["polyketides/ustilaginoidin-d.yaml","ustilaginoidin D"],["polyketides/ustilaginoidin-e.yaml","ustilaginoidin E"],["polyketides/ustilaginoidin-f.yaml","ustilaginoidin F"],["polyketides/ustilaginoidin-g.yaml","ustilaginoidin G"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"]]},{"id":"NCBITaxon:1979465","l":"Neocamarosporium betae","na":9,"nb":1,"a":[["polyketides/betaenone-a.yaml","betaenone A"],["polyketides/betaenone-b.yaml","betaenone B"],["polyketides/betaenone-c.yaml","betaenone C"],["terpenoids/17-deoxyaphidicolin.yaml","17-deoxyaphidicolin"],["terpenoids/3-deoxyaphidicolin.yaml","3-deoxyaphidicolin"],["terpenoids/aphidicolan-16-ol.yaml","aphidicolan-16β-ol"]],"b":[["antiviral/aphidicolin.html","aphidicolin"]]},{"id":"NCBITaxon:5076","l":"Penicillium chrysogenum","na":9,"nb":1,"a":[["alkaloids/chrysogine.yaml","chrysogine"],["amino_acids_and_peptides/benzylpenicillin-sodium.yaml","benzylpenicillin sodium"],["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"],["amino_acids_and_peptides/n-5s-5-ammonio-5-carboxylatopentanoyl-l-cysteinyl-d-valinate.yaml","N-[(5S)-5-ammonio-5-carboxylatopentanoyl]-L-cysteinyl-D-valinate"],["polyketides/2-3-dihydrosorbicillin.yaml","2'3'-dihydrosorbicillin"],["polyketides/bisorbicillinol.yaml","bisorbicillinol"]],"b":[["unspecified/isopenicillin-n.html","isopenicillin N"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":1,"nb":8,"a":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]],"b":[["antifungal/anidulafungin.html","anidulafungin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/caspofungin.html","caspofungin"],["antifungal/cycloheximide.html","cycloheximide"],["antifungal/micafungin.html","micafungin"],["antifungal/oligomycin-a.html","oligomycin A"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":8,"nb":1,"a":[["amino_acids_and_peptides/ferrichrome-2.yaml","ferrichrome"],["polyketides/2-acetyl-1-3-6-8-tetrahydroxynaphthalene.yaml","2-acetyl-1,3,6,8-tetrahydroxynaphthalene"],["polyketides/kojic-acid.yaml","kojic acid"],["terpenoids/aphidicolin.yaml","aphidicolin"],["unclassified/2-oxocyclopiazonic-acid.yaml","2-oxocyclopiazonic acid"],["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":1,"nb":7,"a":[["amino_acids_and_peptides/enterocin-a.yaml","enterocin A"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":1,"nb":7,"a":[["unclassified/antimycin-a1b.yaml","antimycin A1B"]],"b":[["antibacterial/brefeldin-a.html","brefeldin A"],["antifungal/anidulafungin.html","anidulafungin"],["antifungal/caspofungin.html","caspofungin"],["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/micafungin.html","micafungin"]]},{"id":"NCBITaxon:68280","l":"Streptomyces violaceusniger","na":7,"nb":1,"a":[["fatty_acids/desulfoclethramycin.yaml","desulfoclethramycin"],["polyketides/be-24566b.yaml","BE-24566B"],["polyketides/elaiophylin.yaml","elaiophylin"],["polyketides/meridamycin-2.yaml","meridamycin"],["polyketides/nigericin.yaml","nigericin"],["terpenoids/2-methylisoborneol.yaml","2-methylisoborneol"]],"b":[["antibacterial/nigericin.html","nigericin"]]},{"id":"NCBITaxon:37326","l":"Nocardia brasiliensis","na":6,"nb":1,"a":[["polyketides/brasilinolide-a.yaml","brasilinolide A"],["polyketides/brasilinolide-b.yaml","brasilinolide B"],["polyketides/brasilinolide-c.yaml","brasilinolide C"],["polyketides/brasiliquinone-a.yaml","brasiliquinone A"],["polyketides/brasiliquinone-b.yaml","brasiliquinone B"],["terpenoids/brasilicardin-a.yaml","brasilicardin A"]],"b":[["antibacterial/brasiliquinone-b.html","brasiliquinone B"]]},{"id":"NCBITaxon:47763","l":"Streptomyces lydicus","na":6,"nb":1,"a":[["amino_acids_and_peptides/ectoine.yaml","ectoine"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"],["polyketides/erythromycin-a.yaml","erythromycin A"],["polyketides/natamycin.yaml","natamycin"],["polyketides/streptolydigin.yaml","streptolydigin"],["unclassified/lydicamycin.yaml","lydicamycin"]],"b":[["unspecified/streptolydigin.html","streptolydigin"]]},{"id":"NCBITaxon:5082","l":"Penicillium roqueforti","na":6,"nb":1,"a":[["alkaloids/mycophenolic-acid-2.yaml","mycophenolic acid"],["polyketides/mycophenolic-acid.yaml","mycophenolic acid"],["terpenoids/pr-toxin.yaml","PR-toxin"],["unclassified/andrastin-a.yaml","andrastin A"],["unclassified/roquefortine-c.yaml","roquefortine C"],["unclassified/roquefortine-d.yaml","roquefortine D"]],"b":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]]},{"id":"NCBITaxon:52","l":"Chondromyces crocatus","na":6,"nb":1,"a":[["polyketides/chondrochloren-a.yaml","chondrochloren A"],["polyketides/cmc-thuggacin-a.yaml","Cmc-thuggacin A"],["polyketides/crocacin.yaml","crocacin"],["shikimates_and_phenylpropanoids/ajudazol-a.yaml","ajudazol A"],["unclassified/chondramide-a.yaml","chondramide A"],["unclassified/cmc-thuggacin-b.yaml","Cmc-thuggacin B"]],"b":[["unspecified/chondrochloren-a.html","chondrochloren A"]]},{"id":"NCBITaxon:43658","l":"Pseudoalteromonas rubra","na":5,"nb":1,"a":[["alkaloids/prodigiosin.yaml","prodigiosin"],["polyketides/nonyltyrazolone.yaml","nonyltyrazolone"],["polyketides/undecyltyrazolone.yaml","undecyltyrazolone"],["shikimates_and_phenylpropanoids/z-6-undecenyltyrazolone.yaml","(Z)-ω-6-undecenyltyrazolone"],["unclassified/heptyltyrazolone.yaml","heptyltyrazolone"]],"b":[["unspecified/prodigiosin.html","prodigiosin"]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":1,"nb":5,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/imipenem.html","imipenem"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":1,"a":[["alkaloids/prodigiosin-2.yaml","prodigiosin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/serratiochelin-a.yaml","serratiochelin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["polyketides/oocydin-a.yaml","oocydin A"]],"b":[["antibacterial/althiomycin.html","althiomycin"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":4,"a":[["alkaloids/petrobactin.yaml","petrobactin"]],"b":[["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/trimethoprim.html","trimethoprim"],["antiprotozoal/suramin.html","suramin"],["antiviral/tilorone.html","tilorone"]]},{"id":"NCBITaxon:318829","l":"Pyricularia oryzae","na":1,"nb":4,"a":[["polyketides/nectriapyrone.yaml","nectriapyrone"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/carboxin.html","carboxin"],["antifungal/carpropamid.html","carpropamid"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:36650","l":"Penicillium aethiopicum","na":4,"nb":1,"a":[["alkaloids/tryptoquialanine.yaml","tryptoquialanine"],["polyketides/epidechlorogriseofulvin.yaml","epidechlorogriseofulvin"],["polyketides/griseofulvin.yaml","griseofulvin"],["unclassified/viridicatumtoxin.yaml","viridicatumtoxin"]],"b":[["unspecified/viridicatumtoxin.html","viridicatumtoxin"]]},{"id":"NCBITaxon:412963","l":"Mycetohabitans rhizoxinica","na":4,"nb":1,"a":[["amino_acids_and_peptides/endopyrrole-b.yaml","endopyrrole B"],["amino_acids_and_peptides/holrhizin-a.yaml","holrhizin A"],["unclassified/endopyrrole-a.yaml","endopyrrole A"],["unclassified/rhizoxin-a.yaml","rhizoxin A"]],"b":[["unspecified/rhizoxin.html","rhizoxin"]]},{"id":"NCBITaxon:68214","l":"Streptomyces griseochromogenes","na":4,"nb":1,"a":[["carbohydrates/blasticidin-s.yaml","blasticidin S"],["carbohydrates/streptothricin-f.yaml","streptothricin F"],["polyketides/tautomycetin-2.yaml","tautomycetin"],["polyketides/tautomycetin.yaml","tautomycetin"]],"b":[["antifungal/blasticidin-s.html","blasticidin S"]]},{"id":"NCBITaxon:1907","l":"Streptomyces glaucescens","na":3,"nb":1,"a":[["carbohydrates/5-hydroxystreptomycin.yaml","5'-hydroxystreptomycin"],["carbohydrates/streptomycin.yaml","streptomycin"],["polyketides/tetracenomycin-c.yaml","tetracenomycin C"]],"b":[["antibacterial/tetracenomycin-c.html","tetracenomycin C"]]},{"id":"NCBITaxon:264951","l":"Paecilomyces variotii","na":3,"nb":1,"a":[["polyketides/agnestin-a.yaml","agnestin A"],["polyketides/agnestin-b.yaml","agnestin B"],["polyketides/viriditoxin.yaml","viriditoxin"]],"b":[["antibacterial/m-viriditoxin.html","(M)-viriditoxin"]]},{"id":"NCBITaxon:316284","l":"Streptomyces noursei ATCC 11455","na":3,"nb":1,"a":[["amino_acids_and_peptides/dechlorocuracomycin.yaml","dechlorocuracomycin"],["polyketides/nystatin-a1.yaml","nystatin A1"],["unclassified/albonoursin.yaml","albonoursin"]],"b":[["antifungal/nystatin-a1.html","nystatin A1"]]},{"id":"NCBITaxon:334819","l":"Fusarium verticillioides 7600","na":1,"nb":3,"a":[["alkaloids/fusaric-acid.yaml","fusaric acid"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/fludioxonil.html","fludioxonil"]]},{"id":"NCBITaxon:53446","l":"Streptomyces cinnamoneus","na":3,"nb":1,"a":[["amino_acids_and_peptides/cinnamycin.yaml","cinnamycin"],["amino_acids_and_peptides/duramycin.yaml","duramycin"],["unclassified/bicozamycin.yaml","bicozamycin"]],"b":[["antibacterial/bicozamycin.html","bicozamycin"]]},{"id":"NCBITaxon:536","l":"Chromobacterium violaceum","na":3,"nb":1,"a":[["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["unclassified/romidepsin.yaml","romidepsin"]],"b":[["unspecified/romidepsin.html","romidepsin"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":3,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"NCBITaxon:668825","l":"Streptomyces sp. ATCC 700974","na":3,"nb":1,"a":[["amino_acids_and_peptides/albomycin-1.yaml","albomycin δ1"],["amino_acids_and_peptides/albomycin-delta2.yaml","albomycin delta2"],["amino_acids_and_peptides/albomycin-epsilon.yaml","albomycin epsilon"]],"b":[["antibacterial/albomycin-%CE%B41.html","albomycin δ1"]]},{"id":"NCBITaxon:686309","l":"Micromonospora haikouensis","na":3,"nb":1,"a":[["carbohydrates/aristeromycin.yaml","aristeromycin"],["carbohydrates/coformycin.yaml","coformycin"],["carbohydrates/kanamycin-a.yaml","kanamycin A"]],"b":[["unspecified/coformycin.html","coformycin"]]},{"id":"CHEBI:26789","l":"","na":1,"nb":2,"a":[["carbohydrates/streptothricin-f.yaml","streptothricin F"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"],["unspecified/streptothricin-d.html","streptothricin D"]]},{"id":"NCBITaxon:1079985","l":"Streptomyces chartreusis NRRL 3882","na":2,"nb":1,"a":[["carbohydrates/tunicamycin-b1.yaml","tunicamycin B1"],["polyketides/a23187.yaml","A23187"]],"b":[["unspecified/tunicamycin-b1.html","tunicamycin B1"]]},{"id":"NCBITaxon:27337","l":"Verticillium dahliae","na":2,"nb":1,"a":[["polyketides/flaviolin.yaml","flaviolin"],["polyketides/scytalone.yaml","scytalone"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"NCBITaxon:28576","l":"Talaromyces variabilis","na":2,"nb":1,"a":[["alkaloids/ilicicolin-h.yaml","ilicicolin H"],["unclassified/varicidin-a.yaml","varicidin A"]],"b":[["unspecified/ilicicolin-h.html","ilicicolin H"]]},{"id":"NCBITaxon:36651","l":"Penicillium digitatum","na":1,"nb":2,"a":[["alkaloids/tryptoquialanine.yaml","tryptoquialanine"]],"b":[["antifungal/pyrifenox.html","pyrifenox"],["antifungal/triflumizole.html","triflumizole"]]},{"id":"NCBITaxon:5074","l":"Penicillium brevicompactum","na":2,"nb":1,"a":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"],["unclassified/asperphenamate.yaml","asperphenamate"]],"b":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]]},{"id":"NCBITaxon:5270","l":"Mycosarcoma maydis","na":2,"nb":1,"a":[["fatty_acids/itaconic-acid.yaml","itaconic acid"],["fatty_acids/ustilagic-acid.yaml","ustilagic acid"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":2,"nb":1,"a":[["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["alkaloids/yersiniabactin.yaml","yersiniabactin"]],"b":[["unspecified/chir-090.html","CHIR-090"]]},{"id":"NCBITaxon:68264","l":"Streptomyces rishiriensis","na":2,"nb":1,"a":[["shikimates_and_phenylpropanoids/coumermycin-a1.yaml","coumermycin A1"],["unclassified/lactonamycin.yaml","lactonamycin"]],"b":[["antibacterial/coumermycin-a1.html","coumermycin A1"]]},{"id":"CHEBI:131914","l":"violacein","na":1,"nb":1,"a":[["alkaloids/violacein.yaml","violacein"]],"b":[["antibacterial/violacein.html","violacein"]]},{"id":"CHEBI:132426","l":"chondrochloren A","na":1,"nb":1,"a":[["polyketides/chondrochloren-a.yaml","chondrochloren A"]],"b":[["unspecified/chondrochloren-a.html","chondrochloren A"]]},{"id":"CHEBI:133127","l":"lugdunin","na":1,"nb":1,"a":[["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]],"b":[["antibacterial/lugdunin.html","lugdunin"]]},{"id":"CHEBI:134606","l":"toyocamycin","na":1,"nb":1,"a":[["carbohydrates/toyocamycin.yaml","toyocamycin"]],"b":[["antifungal/toyocamycin.html","toyocamycin"]]},{"id":"CHEBI:138511","l":"piericidin A","na":1,"nb":1,"a":[["polyketides/piericidin-a.yaml","piericidin A"]],"b":[["unspecified/piericidin-a.html","piericidin A"]]},{"id":"CHEBI:140173","l":"malacidin A","na":1,"nb":1,"a":[["amino_acids_and_peptides/malacidin-a.yaml","malacidin A"]],"b":[["antibacterial/malacidin-a.html","malacidin A"]]},{"id":"CHEBI:140174","l":"malacidin B","na":1,"nb":1,"a":[["amino_acids_and_peptides/malacidin-b.yaml","malacidin B"]],"b":[["antibacterial/malacidin-b.html","malacidin B"]]},{"id":"CHEBI:140434","l":"3-[(Z)-2-isocyanovinyl]indole","na":1,"nb":1,"a":[["alkaloids/3-z-2-isocyanovinyl-indole.yaml","3-[(Z)-2-isocyanovinyl]indole"]],"b":[["antibacterial/3-z-2-isocyanovinyl-indole.html","3-[(Z)-2-isocyanovinyl]indole"]]},{"id":"CHEBI:141338","l":"sporothriolide","na":1,"nb":1,"a":[["polyketides/sporothriolide.yaml","sporothriolide"]],"b":[["antifungal/sporothriolide.html","sporothriolide"]]},{"id":"CHEBI:141380","l":"indanomycin","na":1,"nb":1,"a":[["polyketides/indanomycin.yaml","indanomycin"]],"b":[["antibacterial/indanomycin.html","indanomycin"]]},{"id":"CHEBI:144441","l":"triacsin C","na":1,"nb":1,"a":[["fatty_acids/triacsin-c.yaml","triacsin C"]],"b":[["antiprotozoal/triacsin-c.html","triacsin C"]]},{"id":"CHEBI:144729","l":"L-β-ethynylserine zwitterion","na":1,"nb":1,"a":[["amino_acids_and_peptides/ethynylserine.yaml","β-ethynylserine"]],"b":[["antibacterial/l-%CE%B2-ethynylserine-zwitterion.html","L-β-ethynylserine zwitterion"]]},{"id":"CHEBI:144833","l":"L-β-ethynylserine","na":1,"nb":1,"a":[["amino_acids_and_peptides/ethynylserine.yaml","β-ethynylserine"]],"b":[["antibacterial/l-%CE%B2-ethynylserine.html","L-β-ethynylserine"]]},{"id":"CHEBI:146007","l":"(M)-viriditoxin","na":1,"nb":1,"a":[["polyketides/viriditoxin.yaml","viriditoxin"]],"b":[["antibacterial/m-viriditoxin.html","(M)-viriditoxin"]]},{"id":"CHEBI:146153","l":"ilicicolin B","na":1,"nb":1,"a":[["unclassified/ilicicolin-b.yaml","ilicicolin B"]],"b":[["unspecified/ilicicolin-b.html","ilicicolin B"]]},{"id":"CHEBI:149660","l":"atromentin","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/atromentin.yaml","atromentin"]],"b":[["antibacterial/atromentin.html","atromentin"]]},{"id":"CHEBI:15353","l":"blasticidin S","na":1,"nb":1,"a":[["carbohydrates/blasticidin-s.yaml","blasticidin S"]],"b":[["antifungal/blasticidin-s.html","blasticidin S"]]},{"id":"CHEBI:156148","l":"ascofuranone","na":1,"nb":1,"a":[["unclassified/ascofuranone.yaml","ascofuranone"]],"b":[["antiprotozoal/ascofuranone.html","ascofuranone"]]},{"id":"CHEBI:156219","l":"ascochlorin","na":1,"nb":1,"a":[["unclassified/ascochlorin.yaml","ascochlorin"]],"b":[["antifungal/ascochlorin.html","ascochlorin"]]},{"id":"CHEBI:156291","l":"oviedomycin","na":1,"nb":1,"a":[["polyketides/oviedomycin.yaml","oviedomycin"]],"b":[["unspecified/oviedomycin.html","oviedomycin"]]},{"id":"CHEBI:156298","l":"aurafuron A","na":1,"nb":1,"a":[["polyketides/aurafuron-a.yaml","aurafuron A"]],"b":[["antifungal/aurafuron-a.html","aurafuron A"]]},{"id":"CHEBI:156301","l":"auricin","na":1,"nb":1,"a":[["polyketides/auricin.yaml","auricin"]],"b":[["unspecified/auricin.html","auricin"]]},{"id":"CHEBI:156313","l":"erdasporine A","na":1,"nb":1,"a":[["alkaloids/erdasporine-a.yaml","erdasporine A"]],"b":[["antibacterial/erdasporine-a.html","erdasporine A"]]},{"id":"CHEBI:156314","l":"erdasporine B","na":1,"nb":1,"a":[["alkaloids/erdasporine-b.yaml","erdasporine B"]],"b":[["antibacterial/erdasporine-b.html","erdasporine B"]]},{"id":"CHEBI:156315","l":"erdasporine C","na":1,"nb":1,"a":[["alkaloids/erdasporine-c.yaml","erdasporine C"]],"b":[["antibacterial/erdasporine-c.html","erdasporine C"]]},{"id":"CHEBI:156363","l":"gibepyrone A","na":1,"nb":1,"a":[["polyketides/gibepyrone-a.yaml","gibepyrone A"]],"b":[["antibacterial/gibepyrone-a.html","gibepyrone A"]]},{"id":"CHEBI:156386","l":"asperlactone","na":1,"nb":1,"a":[["polyketides/asperlactone.yaml","asperlactone"]],"b":[["antibacterial/asperlactone.html","asperlactone"]]},{"id":"CHEBI:156426","l":"curacomycin","na":1,"nb":1,"a":[["amino_acids_and_peptides/curacomycin.yaml","curacomycin"]],"b":[["antibacterial/curacomycin.html","curacomycin"]]},{"id":"CHEBI:156450","l":"thiolutin","na":1,"nb":1,"a":[["alkaloids/thiolutin.yaml","thiolutin"]],"b":[["antibacterial/thiolutin.html","thiolutin"]]},{"id":"CHEBI:156451","l":"holomycin","na":1,"nb":1,"a":[["alkaloids/holomycin.yaml","holomycin"]],"b":[["antibacterial/holomycin.html","holomycin"]]},{"id":"CHEBI:156453","l":"pyoluteorin","na":1,"nb":1,"a":[["alkaloids/pyoluteorin.yaml","pyoluteorin"]],"b":[["antibacterial/pyoluteorin.html","pyoluteorin"]]},{"id":"CHEBI:156455","l":"tropodithietic acid","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/tropodithietic-acid.yaml","tropodithietic acid"]],"b":[["antibacterial/tropodithietic-acid.html","tropodithietic acid"]]},{"id":"CHEBI:156550","l":"pyrrolomycin A","na":1,"nb":1,"a":[["alkaloids/pyrrolomycin-a.yaml","pyrrolomycin A"]],"b":[["antibacterial/pyrrolomycin-a.html","pyrrolomycin A"]]},{"id":"CHEBI:15732","l":"phosphonoacetic acid","na":1,"nb":1,"a":[["unclassified/phosphonoacetic-acid.yaml","phosphonoacetic acid"]],"b":[["antiviral/phosphonoacetic-acid.html","phosphonoacetic acid"]]},{"id":"CHEBI:161680","l":"aztreonam","na":1,"nb":1,"a":[["amino_acids_and_peptides/aztreonam.yaml","aztreonam"]],"b":[["antibacterial/aztreonam.html","aztreonam"]]},{"id":"CHEBI:16213","l":"coformycin","na":1,"nb":1,"a":[["carbohydrates/coformycin.yaml","coformycin"]],"b":[["unspecified/coformycin.html","coformycin"]]},{"id":"CHEBI:166872","l":"nucleocidin","na":1,"nb":1,"a":[["carbohydrates/nucleocidin.yaml","nucleocidin"]],"b":[["antibacterial/nucleocidin.html","nucleocidin"]]},{"id":"CHEBI:167043","l":"ochrindole A","na":1,"nb":1,"a":[["alkaloids/ochrindole-a.yaml","ochrindole A"]],"b":[["antibacterial/ochrindole-a.html","ochrindole A"]]},{"id":"CHEBI:167054","l":"acrophiarin","na":1,"nb":1,"a":[["amino_acids_and_peptides/acrophiarin.yaml","acrophiarin"]],"b":[["antifungal/acrophiarin.html","acrophiarin"]]},{"id":"CHEBI:168396","l":"mycophenolic acid","na":1,"nb":1,"a":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"]],"b":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]]},{"id":"CHEBI:17076","l":"streptomycin","na":1,"nb":1,"a":[["carbohydrates/streptomycin.yaml","streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"CHEBI:17630","l":"kanamycin A","na":1,"nb":1,"a":[["carbohydrates/kanamycin-a.yaml","kanamycin A"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"CHEBI:17695","l":"casbene","na":1,"nb":1,"a":[["terpenoids/casbene.yaml","casbene"]],"b":[["antifungal/casbene.html","casbene"]]},{"id":"CHEBI:17704","l":"aspulvinone E","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/aspulvinone-e.yaml","aspulvinone E"]],"b":[["antiviral/aspulvinone-e.html","aspulvinone E"]]},{"id":"CHEBI:17939","l":"puromycin","na":1,"nb":1,"a":[["carbohydrates/puromycin.yaml","puromycin"]],"b":[["antibacterial/puromycin.html","puromycin"]]},{"id":"CHEBI:18165","l":"isopenicillin N","na":1,"nb":1,"a":[["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"]],"b":[["unspecified/isopenicillin-n.html","isopenicillin N"]]},{"id":"CHEBI:184373","l":"cremeomycin","na":1,"nb":1,"a":[["unclassified/cremeomycin.yaml","cremeomycin"]],"b":[["antibacterial/cremeomycin.html","cremeomycin"]]},{"id":"CHEBI:190009","l":"himastatin","na":1,"nb":1,"a":[["amino_acids_and_peptides/himastatin.yaml","himastatin"]],"b":[["antibacterial/himastatin.html","himastatin"]]},{"id":"CHEBI:193157","l":"sceliphrolactam","na":1,"nb":1,"a":[["unclassified/sceliphrolactam.yaml","sceliphrolactam"]],"b":[["antifungal/sceliphrolactam.html","sceliphrolactam"]]},{"id":"CHEBI:206040","l":"","na":1,"nb":1,"a":[["polyketides/tartrolon-d.yaml","tartrolon D"]],"b":[["antibacterial/tartrolon-d.html","tartrolon D"]]},{"id":"CHEBI:219363","l":"reedsmycin A","na":1,"nb":1,"a":[["polyketides/reedsmycin-a.yaml","reedsmycin A"]],"b":[["antifungal/reedsmycin-a.html","reedsmycin A"]]},{"id":"CHEBI:219367","l":"reedsmycin B","na":1,"nb":1,"a":[["polyketides/reedsmycin-b.yaml","reedsmycin B"]],"b":[["antifungal/reedsmycin-b.html","reedsmycin B"]]},{"id":"CHEBI:219386","l":"reedsmycin E","na":1,"nb":1,"a":[["polyketides/reedsmycin-e.yaml","reedsmycin E"]],"b":[["antifungal/reedsmycin-e.html","reedsmycin E"]]},{"id":"CHEBI:2448","l":"actinorhodin","na":1,"nb":1,"a":[["polyketides/actinorhodin.yaml","actinorhodin"]],"b":[["unspecified/actinorhodin.html","actinorhodin"]]},{"id":"CHEBI:24750","l":"","na":1,"nb":1,"a":[["carbohydrates/5-hydroxystreptomycin.yaml","5'-hydroxystreptomycin"]],"b":[["unspecified/5-hydroxystreptomycin.html","5'-hydroxystreptomycin"]]},{"id":"CHEBI:2762","l":"antimycin A","na":1,"nb":1,"a":[["unclassified/antimycin-a.yaml","antimycin A"]],"b":[["antifungal/antimycin-a.html","antimycin A"]]},{"id":"CHEBI:2766","l":"aphidicolin","na":1,"nb":1,"a":[["terpenoids/aphidicolin.yaml","aphidicolin"]],"b":[["antiviral/aphidicolin.html","aphidicolin"]]},{"id":"CHEBI:27666","l":"actinomycin D","na":1,"nb":1,"a":[["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"]],"b":[["antibacterial/actinomycin-d.html","actinomycin D"]]},{"id":"CHEBI:27834","l":"pentostatin","na":1,"nb":1,"a":[["alkaloids/pentostatin.yaml","pentostatin"]],"b":[["unspecified/pentostatin.html","pentostatin"]]},{"id":"CHEBI:28001","l":"vancomycin","na":1,"nb":1,"a":[["amino_acids_and_peptides/vancomycin.yaml","vancomycin"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"CHEBI:28196","l":"erythromycin B","na":1,"nb":1,"a":[["polyketides/erythromycin-b.yaml","erythromycin B"]],"b":[["unspecified/erythromycin-b.html","erythromycin B"]]},{"id":"CHEBI:28283","l":"capsidiol","na":1,"nb":1,"a":[["terpenoids/capsidiol.yaml","capsidiol"]],"b":[["antifungal/capsidiol.html","capsidiol"]]},{"id":"CHEBI:28331","l":"erythromycin D","na":1,"nb":1,"a":[["polyketides/erythromycin-d.yaml","erythromycin D"]],"b":[["unspecified/erythromycin-d.html","erythromycin D"]]},{"id":"CHEBI:28748","l":"doxorubicin","na":1,"nb":1,"a":[["polyketides/doxorubicin.yaml","doxorubicin"]],"b":[["unspecified/doxorubicin.html","doxorubicin"]]},{"id":"CHEBI:28864","l":"tobramycin","na":1,"nb":1,"a":[["carbohydrates/tobramycin.yaml","tobramycin"]],"b":[["antibacterial/tobramycin.html","tobramycin"]]},{"id":"CHEBI:28915","l":"fosfomycin","na":1,"nb":1,"a":[["unclassified/fosfomycin.yaml","fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"CHEBI:29515","l":"ansamitocin P3","na":1,"nb":1,"a":[["polyketides/ansamitocin-p3.yaml","ansamitocin P3"]],"b":[["unspecified/ansamitocin-p3.html","ansamitocin P3"]]},{"id":"CHEBI:29556","l":"chloroeremomycin","na":1,"nb":1,"a":[["amino_acids_and_peptides/chloroeremomycin.yaml","chloroeremomycin"]],"b":[["antibacterial/chloroeremomycin.html","chloroeremomycin"]]},{"id":"CHEBI:29630","l":"methymycin","na":1,"nb":1,"a":[["polyketides/methymycin.yaml","methymycin"]],"b":[["antibacterial/methymycin.html","methymycin"]]},{"id":"CHEBI:29649","l":"narbomycin","na":1,"nb":1,"a":[["polyketides/narbomycin.yaml","narbomycin"]],"b":[["antibacterial/narbomycin.html","narbomycin"]]},{"id":"CHEBI:29656","l":"neomethymycin","na":1,"nb":1,"a":[["polyketides/neomethymycin.yaml","neomethymycin"]],"b":[["unspecified/neomethymycin.html","neomethymycin"]]},{"id":"CHEBI:29665","l":"pikromycin","na":1,"nb":1,"a":[["polyketides/pikromycin.yaml","pikromycin"]],"b":[["antibacterial/pikromycin.html","pikromycin"]]},{"id":"CHEBI:29673","l":"rifamycin SV","na":1,"nb":1,"a":[["polyketides/rifamycin-sv.yaml","rifamycin SV"]],"b":[["antimycobacterial/rifamycin-sv.html","rifamycin SV"]]},{"id":"CHEBI:29701","l":"tyrocidine A","na":1,"nb":1,"a":[["amino_acids_and_peptides/tyrocidine-a.yaml","tyrocidine A"]],"b":[["antibacterial/tyrocidine-a.html","tyrocidine A"]]},{"id":"CHEBI:29703","l":"validamycin A","na":1,"nb":1,"a":[["carbohydrates/validamycin-a.yaml","validamycin A"]],"b":[["antifungal/validamycin-a.html","validamycin A"]]},{"id":"CHEBI:3096","l":"bikaverin","na":1,"nb":1,"a":[["polyketides/bikaverin.yaml","bikaverin"]],"b":[["antibacterial/bikaverin.html","bikaverin"]]},{"id":"CHEBI:3139","l":"bleomycin A2","na":1,"nb":1,"a":[["amino_acids_and_peptides/bleomycin-a2.yaml","bleomycin A2"]],"b":[["antibacterial/bleomycin-a2.html","bleomycin A2"]]},{"id":"CHEBI:315018","l":"echinocandin B","na":1,"nb":1,"a":[["amino_acids_and_peptides/echinocandin-b.yaml","echinocandin B"]],"b":[["antifungal/echinocandin-b.html","echinocandin B"]]},{"id":"CHEBI:31856","l":"mithramycin","na":1,"nb":1,"a":[["polyketides/mithramycin.yaml","mithramycin"]],"b":[["unspecified/mithramycin.html","mithramycin"]]},{"id":"CHEBI:32079","l":"pyrrolnitrin","na":1,"nb":1,"a":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]],"b":[["antifungal/pyrrolnitrin.html","pyrrolnitrin"]]},{"id":"CHEBI:3252","l":"C-1027 chromophore","na":1,"nb":1,"a":[["polyketides/c-1027-chromophore.yaml","C-1027 chromophore"]],"b":[["unspecified/c-1027-chromophore.html","C-1027 chromophore"]]},{"id":"CHEBI:338412","l":"(-)-anisomycin","na":1,"nb":1,"a":[["alkaloids/anisomycin.yaml","(−)-anisomycin"]],"b":[["antiviral/anisomycin.html","(−)-anisomycin"]]},{"id":"CHEBI:34996","l":"teicoplanin A2-3","na":1,"nb":1,"a":[["amino_acids_and_peptides/teicoplanin-a2-3.yaml","teicoplanin A2-3"]],"b":[["unspecified/teicoplanin-a2-3.html","teicoplanin A2-3"]]},{"id":"CHEBI:34997","l":"teicoplanin A2-4","na":1,"nb":1,"a":[["amino_acids_and_peptides/teicoplanin-a2-4.yaml","teicoplanin A2-4"]],"b":[["unspecified/teicoplanin-a2-4.html","teicoplanin A2-4"]]},{"id":"CHEBI:3613","l":"chlorflavonin","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/chlorflavonin.yaml","chlorflavonin"]],"b":[["antifungal/chlorflavonin.html","chlorflavonin"]]},{"id":"CHEBI:3907","l":"coumermycin A1","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/coumermycin-a1.yaml","coumermycin A1"]],"b":[["antibacterial/coumermycin-a1.html","coumermycin A1"]]},{"id":"CHEBI:40009","l":"D-cycloserine","na":1,"nb":1,"a":[["amino_acids_and_peptides/cycloserine.yaml","cycloserine"]],"b":[["antimycobacterial/d-cycloserine.html","D-cycloserine"]]},{"id":"CHEBI:4031","l":"cyclosporin A","na":1,"nb":1,"a":[["amino_acids_and_peptides/cyclosporin-a.yaml","cyclosporin A"]],"b":[["antifungal/cyclosporin-a.html","cyclosporin A"]]},{"id":"CHEBI:41977","l":"daunorubicin","na":1,"nb":1,"a":[["polyketides/daunorubicin.yaml","daunorubicin"]],"b":[["unspecified/daunorubicin.html","daunorubicin"]]},{"id":"CHEBI:42355","l":"erythromycin A","na":1,"nb":1,"a":[["polyketides/erythromycin-a.yaml","erythromycin A"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"CHEBI:42452","l":"formycin A","na":1,"nb":1,"a":[["alkaloids/formycin-a.yaml","formycin A"]],"b":[["unspecified/formycin-a.html","formycin A"]]},{"id":"CHEBI:43616","l":"K-252a","na":1,"nb":1,"a":[["alkaloids/k-252a.yaml","K-252a"]],"b":[["unspecified/k-252a.html","K-252a"]]},{"id":"CHEBI:45257","l":"ribostamycin","na":1,"nb":1,"a":[["carbohydrates/ribostamycin.yaml","ribostamycin"]],"b":[["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"CHEBI:45327","l":"adenine arabinoside","na":1,"nb":1,"a":[["carbohydrates/adenine-arabinoside.yaml","adenine arabinoside"]],"b":[["unspecified/adenine-arabinoside.html","adenine arabinoside"]]},{"id":"CHEBI:45773","l":"streptolydigin","na":1,"nb":1,"a":[["polyketides/streptolydigin.yaml","streptolydigin"]],"b":[["unspecified/streptolydigin.html","streptolydigin"]]},{"id":"CHEBI:46416","l":"virginiamycin S1","na":1,"nb":1,"a":[["unclassified/virginiamycin-s1.yaml","virginiamycin S1"]],"b":[["antibacterial/virginiamycin-s1.html","virginiamycin S1"]]},{"id":"CHEBI:473992","l":"nystatin A1","na":1,"nb":1,"a":[["polyketides/nystatin-a1.yaml","nystatin A1"]],"b":[["antifungal/nystatin-a1.html","nystatin A1"]]},{"id":"CHEBI:48200","l":"griseusin B","na":1,"nb":1,"a":[["polyketides/griseusin-b.yaml","griseusin B"]],"b":[["unspecified/griseusin-b.html","griseusin B"]]},{"id":"CHEBI:48201","l":"frenolicin B","na":1,"nb":1,"a":[["polyketides/frenolicin-b.yaml","frenolicin B"]],"b":[["unspecified/frenolicin-b.html","frenolicin B"]]},{"id":"CHEBI:48267","l":"tubercidin","na":1,"nb":1,"a":[["carbohydrates/tubercidin.yaml","tubercidin"]],"b":[["antifungal/tubercidin.html","tubercidin"]]},{"id":"CHEBI:48635","l":"fumagillin","na":1,"nb":1,"a":[["polyketides/fumagillin.yaml","fumagillin"]],"b":[["antibacterial/fumagillin.html","fumagillin"]]},{"id":"CHEBI:48947","l":"clavulanic acid","na":1,"nb":1,"a":[["amino_acids_and_peptides/clavulanic-acid.yaml","clavulanic acid"]],"b":[["antibacterial/clavulanic-acid.html","clavulanic acid"]]},{"id":"CHEBI:50437","l":"nocardamine","na":1,"nb":1,"a":[["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"]],"b":[["antibacterial/nocardamine.html","nocardamine"]]},{"id":"CHEBI:51460","l":"albaflavenone","na":1,"nb":1,"a":[["terpenoids/albaflavenone.yaml","albaflavenone"]],"b":[["unspecified/albaflavenone.html","albaflavenone"]]},{"id":"CHEBI:52549","l":"sordarin","na":1,"nb":1,"a":[["terpenoids/sordarin.yaml","sordarin"]],"b":[["antifungal/sordarin.html","sordarin"]]},{"id":"CHEBI:5292","l":"geldanamycin","na":1,"nb":1,"a":[["polyketides/geldanamycin.yaml","geldanamycin"]],"b":[["antiviral/geldanamycin.html","geldanamycin"]]},{"id":"CHEBI:5674","l":"herbimycin","na":1,"nb":1,"a":[["polyketides/herbimycin-a.yaml","herbimycin A"]],"b":[["unspecified/herbimycin.html","herbimycin"]]},{"id":"CHEBI:59064","l":"colistin A","na":1,"nb":1,"a":[["amino_acids_and_peptides/colistin-a.yaml","colistin A"]],"b":[["antibacterial/colistin-a.html","colistin A"]]},{"id":"CHEBI:59673","l":"colistin B","na":1,"nb":1,"a":[["amino_acids_and_peptides/colistin-b.yaml","colistin B"]],"b":[["antibacterial/colistin-b.html","colistin B"]]},{"id":"CHEBI:60584","l":"bicozamycin","na":1,"nb":1,"a":[["unclassified/bicozamycin.yaml","bicozamycin"]],"b":[["antibacterial/bicozamycin.html","bicozamycin"]]},{"id":"CHEBI:60821","l":"streptothricin F","na":1,"nb":1,"a":[["carbohydrates/streptothricin-f.yaml","streptothricin F"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"]]},{"id":"CHEBI:60828","l":"streptothricin D","na":1,"nb":1,"a":[["carbohydrates/streptothricin-d.yaml","streptothricin D"]],"b":[["unspecified/streptothricin-d.html","streptothricin D"]]},{"id":"CHEBI:61080","l":"romidepsin","na":1,"nb":1,"a":[["unclassified/romidepsin.yaml","romidepsin"]],"b":[["unspecified/romidepsin.html","romidepsin"]]},{"id":"CHEBI:62219","l":"2-heptyl-4-quinolone","na":1,"nb":1,"a":[["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"]],"b":[["antibacterial/2-heptyl-4-quinolone.html","2-heptyl-4-quinolone"]]},{"id":"CHEBI:623918","l":"nikkomycin Z","na":1,"nb":1,"a":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"]],"b":[["antifungal/nikkomycin-z.html","nikkomycin Z"]]},{"id":"CHEBI:64248","l":"tunicamycin B1","na":1,"nb":1,"a":[["carbohydrates/tunicamycin-b1.yaml","tunicamycin B1"]],"b":[["unspecified/tunicamycin-b1.html","tunicamycin B1"]]},{"id":"CHEBI:64273","l":"erythromycin C","na":1,"nb":1,"a":[["polyketides/erythromycin-c.yaml","erythromycin C"]],"b":[["unspecified/erythromycin-c.html","erythromycin C"]]},{"id":"CHEBI:6472","l":"lincomycin","na":1,"nb":1,"a":[["carbohydrates/lincomycin.yaml","lincomycin"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"CHEBI:65110","l":"butirosin B","na":1,"nb":1,"a":[["carbohydrates/butirosin-b.yaml","butirosin B"]],"b":[["unspecified/butirosin-b.html","butirosin B"]]},{"id":"CHEBI:65112","l":"butirosin A","na":1,"nb":1,"a":[["carbohydrates/butirosin-a.yaml","butirosin A"]],"b":[["unspecified/butirosin-a.html","butirosin A"]]},{"id":"CHEBI:65401","l":"ambiguine I","na":1,"nb":1,"a":[["alkaloids/ambiguine-i-isonitrile.yaml","ambiguine I isonitrile"]],"b":[["antibacterial/ambiguine-i.html","ambiguine I"]]},{"id":"CHEBI:65474","l":"BE-24566B","na":1,"nb":1,"a":[["polyketides/be-24566b.yaml","BE-24566B"]],"b":[["antibacterial/be-24566b.html","BE-24566B"]]},{"id":"CHEBI:65517","l":"brasiliquinone B","na":1,"nb":1,"a":[["polyketides/brasiliquinone-b.yaml","brasiliquinone B"]],"b":[["antibacterial/brasiliquinone-b.html","brasiliquinone B"]]},{"id":"CHEBI:65619","l":"chloropeptin II","na":1,"nb":1,"a":[["amino_acids_and_peptides/isocomplestatin.yaml","isocomplestatin"]],"b":[["antiviral/chloropeptin-ii.html","chloropeptin II"]]},{"id":"CHEBI:65716","l":"cystothiazole A","na":1,"nb":1,"a":[["unclassified/cystothiazole-a.yaml","cystothiazole A"]],"b":[["antifungal/cystothiazole-a.html","cystothiazole A"]]},{"id":"CHEBI:65915","l":"FR901464","na":1,"nb":1,"a":[["fatty_acids/fr901464.yaml","FR901464"]],"b":[["unspecified/fr901464.html","FR901464"]]},{"id":"CHEBI:65964","l":"gilvusmycin","na":1,"nb":1,"a":[["alkaloids/gilvusmycin.yaml","gilvusmycin"]],"b":[["unspecified/gilvusmycin.html","gilvusmycin"]]},{"id":"CHEBI:66006","l":"harziphilone","na":1,"nb":1,"a":[["polyketides/harziphilone.yaml","harziphilone"]],"b":[["antiviral/harziphilone.html","harziphilone"]]},{"id":"CHEBI:66093","l":"isocomplestatin","na":1,"nb":1,"a":[["amino_acids_and_peptides/isocomplestatin.yaml","isocomplestatin"]],"b":[["antiviral/complestatin.html","isocomplestatin"]]},{"id":"CHEBI:66135","l":"kalimantacin A","na":1,"nb":1,"a":[["polyketides/kalimantacin-a.yaml","kalimantacin A"]],"b":[["antibacterial/kalimantacin-a.html","kalimantacin A"]]},{"id":"CHEBI:66553","l":"lactonamycin","na":1,"nb":1,"a":[["unclassified/lactonamycin.yaml","lactonamycin"]],"b":[["antibacterial/lactonamycin.html","lactonamycin"]]},{"id":"CHEBI:66678","l":"(−)-marinopyrrole A","na":1,"nb":1,"a":[["alkaloids/marinopyrrole-a.yaml","(−)-marinopyrrole A"]],"b":[["antibacterial/marinopyrrole-a.html","(−)-marinopyrrole A"]]},{"id":"CHEBI:66679","l":"(−)-marinopyrrole B","na":1,"nb":1,"a":[["alkaloids/marinopyrrole-b.yaml","(−)-marinopyrrole B"]],"b":[["antibacterial/marinopyrrole-b.html","(−)-marinopyrrole B"]]},{"id":"CHEBI:66687","l":"mediomycin A","na":1,"nb":1,"a":[["fatty_acids/mediomycin-a.yaml","mediomycin A"]],"b":[["antifungal/mediomycin-a.html","mediomycin A"]]},{"id":"CHEBI:66771","l":"polyketomycin","na":1,"nb":1,"a":[["polyketides/polyketomycin.yaml","polyketomycin"]],"b":[["antibacterial/polyketomycin.html","polyketomycin"]]},{"id":"CHEBI:6701","l":"maytansine","na":1,"nb":1,"a":[["polyketides/maytansine.yaml","maytansine"]],"b":[["unspecified/maytansine.html","maytansine"]]},{"id":"CHEBI:67811","l":"zorbamycin","na":1,"nb":1,"a":[["amino_acids_and_peptides/zorbamycin.yaml","zorbamycin"]],"b":[["unspecified/zorbamycin.html","zorbamycin"]]},{"id":"CHEBI:68236","l":"platensimycin","na":1,"nb":1,"a":[["terpenoids/platensimycin.yaml","platensimycin"]],"b":[["antibacterial/platensimycin.html","platensimycin"]]},{"id":"CHEBI:68241","l":"platencin","na":1,"nb":1,"a":[["terpenoids/platencin.yaml","platencin"]],"b":[["antibacterial/platencin.html","platencin"]]},{"id":"CHEBI:7025","l":"mupirocin","na":1,"nb":1,"a":[["polyketides/mupirocin.yaml","mupirocin"]],"b":[["antibacterial/mupirocin.html","mupirocin"]]},{"id":"CHEBI:70816","l":"pentalenolactone","na":1,"nb":1,"a":[["terpenoids/pentalenolactone.yaml","pentalenolactone"]],"b":[["unspecified/pentalenolactone.html","pentalenolactone"]]},{"id":"CHEBI:71961","l":"lividomycin A","na":1,"nb":1,"a":[["carbohydrates/lividomycin-a.yaml","lividomycin A"]],"b":[["antimycobacterial/lividomycin-a.html","lividomycin A"]]},{"id":"CHEBI:72590","l":"rhizoxin","na":1,"nb":1,"a":[["unclassified/rhizoxin-a.yaml","rhizoxin A"]],"b":[["unspecified/rhizoxin.html","rhizoxin"]]},{"id":"CHEBI:73167","l":"concanamycin A","na":1,"nb":1,"a":[["polyketides/concanamycin-a.yaml","concanamycin A"]],"b":[["antifungal/concanamycin-a.html","concanamycin A"]]},{"id":"CHEBI:7488","l":"natamycin","na":1,"nb":1,"a":[["polyketides/natamycin.yaml","natamycin"]],"b":[["antifungal/natamycin.html","natamycin"]]},{"id":"CHEBI:74926","l":"patulin","na":1,"nb":1,"a":[["polyketides/patulin.yaml","patulin"]],"b":[["unspecified/patulin.html","patulin"]]},{"id":"CHEBI:7508","l":"framycetin","na":1,"nb":1,"a":[["carbohydrates/framycetin.yaml","framycetin"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"CHEBI:75276","l":"ikarugamycin","na":1,"nb":1,"a":[["unclassified/ikarugamycin.yaml","ikarugamycin"]],"b":[["antiprotozoal/ikarugamycin.html","ikarugamycin"]]},{"id":"CHEBI:75306","l":"2-heptyl-4-hydroxyquinoline","na":1,"nb":1,"a":[["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"]],"b":[["antibacterial/2-heptyl-4-hydroxyquinoline.html","2-heptyl-4-hydroxyquinoline"]]},{"id":"CHEBI:7569","l":"nigericin","na":1,"nb":1,"a":[["polyketides/nigericin.yaml","nigericin"]],"b":[["antibacterial/nigericin.html","nigericin"]]},{"id":"CHEBI:77772","l":"ilicicolin H","na":1,"nb":1,"a":[["alkaloids/ilicicolin-h.yaml","ilicicolin H"]],"b":[["unspecified/ilicicolin-h.html","ilicicolin H"]]},{"id":"CHEBI:77879","l":"elaiophylin","na":1,"nb":1,"a":[["polyketides/elaiophylin.yaml","elaiophylin"]],"b":[["antifungal/elaiophylin.html","elaiophylin"]]},{"id":"CHEBI:78156","l":"mucidin","na":1,"nb":1,"a":[["polyketides/mucidin.yaml","mucidin"]],"b":[["antifungal/mucidin.html","mucidin"]]},{"id":"CHEBI:78688","l":"2,4-diacetylphloroglucinol","na":1,"nb":1,"a":[["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"]],"b":[["antifungal/2-4-diacetylphloroglucinol.html","2,4-diacetylphloroglucinol"]]},{"id":"CHEBI:79391","l":"(−)-chuangxinmycin","na":1,"nb":1,"a":[["alkaloids/chuangxinmycin.yaml","(−)-chuangxinmycin"]],"b":[["antibacterial/chuangxinmycin.html","(−)-chuangxinmycin"]]},{"id":"CHEBI:80729","l":"toxoflavin","na":1,"nb":1,"a":[["alkaloids/toxoflavin.yaml","toxoflavin"]],"b":[["antibacterial/toxoflavin.html","toxoflavin"]]},{"id":"CHEBI:82758","l":"prodigiosin","na":1,"nb":1,"a":[["alkaloids/prodigiosin.yaml","prodigiosin"]],"b":[["unspecified/prodigiosin.html","prodigiosin"]]},{"id":"CHEBI:83206","l":"albomycin δ1","na":1,"nb":1,"a":[["amino_acids_and_peptides/albomycin-1.yaml","albomycin δ1"]],"b":[["antibacterial/albomycin-%CE%B41.html","albomycin δ1"]]},{"id":"CHEBI:8349","l":"pradimicin A","na":1,"nb":1,"a":[["polyketides/pradimicin-a.yaml","pradimicin A"]],"b":[["antifungal/pradimicin-a.html","pradimicin A"]]},{"id":"CHEBI:84037","l":"ravidomycin","na":1,"nb":1,"a":[["polyketides/ravidomycin.yaml","ravidomycin"]],"b":[["unspecified/ravidomycin.html","ravidomycin"]]},{"id":"CHEBI:85129","l":"ristocetin","na":1,"nb":1,"a":[["amino_acids_and_peptides/ristocetin-a.yaml","Ristocetin A"]],"b":[["antibacterial/ristocetin.html","ristocetin"]]},{"id":"CHEBI:85251","l":"teicoplanin A2-2","na":1,"nb":1,"a":[["amino_acids_and_peptides/teicoplanin-a2-2.yaml","teicoplanin A2-2"]],"b":[["unspecified/teicoplanin-a2-2.html","teicoplanin A2-2"]]},{"id":"CHEBI:85616","l":"viridicatumtoxin","na":1,"nb":1,"a":[["unclassified/viridicatumtoxin.yaml","viridicatumtoxin"]],"b":[["unspecified/viridicatumtoxin.html","viridicatumtoxin"]]},{"id":"CHEBI:86012","l":"oxetanocin A","na":1,"nb":1,"a":[["carbohydrates/oxetanocin-a.yaml","oxetanocin A"]],"b":[["antibacterial/oxetanocin-a.html","oxetanocin A"]]},{"id":"CHEBI:8653","l":"pyocyanine","na":1,"nb":1,"a":[["alkaloids/pyocyanine.yaml","pyocyanine"]],"b":[["antibacterial/pyocyanine.html","pyocyanine"]]},{"id":"CHEBI:87084","l":"rosaramicin","na":1,"nb":1,"a":[["polyketides/rosaramicin.yaml","rosaramicin"]],"b":[["antibacterial/rosaramicin.html","rosaramicin"]]},{"id":"CHEBI:87399","l":"UK 63598","na":1,"nb":1,"a":[["unclassified/uk-63598.yaml","UK 63598"]],"b":[["unspecified/uk-63598.html","UK 63598"]]},{"id":"CHEBI:90284","l":"pirazofurin","na":1,"nb":1,"a":[["unclassified/pirazofurin.yaml","pirazofurin"]],"b":[["unspecified/pirazofurin.html","pirazofurin"]]},{"id":"CHEBI:90888","l":"aurachin C","na":1,"nb":1,"a":[["alkaloids/aurachin-c.yaml","aurachin C"]],"b":[["antibacterial/aurachin-c.html","aurachin C"]]},{"id":"CHEBI:90924","l":"aurachin A","na":1,"nb":1,"a":[["alkaloids/aurachin-a.yaml","aurachin A"]],"b":[["antibacterial/aurachin-a.html","aurachin A"]]},{"id":"CHEBI:90941","l":"sibiromycin","na":1,"nb":1,"a":[["carbohydrates/sibiromycin.yaml","sibiromycin"]],"b":[["unspecified/sibiromycin.html","sibiromycin"]]},{"id":"CHEBI:9168","l":"sirolimus","na":1,"nb":1,"a":[["polyketides/sirolimus.yaml","sirolimus"]],"b":[["antibacterial/sirolimus.html","sirolimus"]]},{"id":"CHEBI:9169","l":"sisomycin","na":1,"nb":1,"a":[["carbohydrates/sisomycin.yaml","sisomycin"]],"b":[["antibacterial/sisomycin.html","sisomycin"]]},{"id":"CHEBI:9215","l":"spectinomycin","na":1,"nb":1,"a":[["carbohydrates/spectinomycin.yaml","spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"CHEBI:92181","l":"lasalocid","na":1,"nb":1,"a":[["polyketides/lasalocid.yaml","lasalocid"]],"b":[["antiprotozoal/lasalocid.html","lasalocid"]]},{"id":"CHEBI:9232","l":"spinosyn D","na":1,"nb":1,"a":[["polyketides/spinosyn-d.yaml","spinosyn D"]],"b":[["unspecified/spinosyn-d.html","spinosyn D"]]},{"id":"CHEBI:9287","l":"streptonigrin","na":1,"nb":1,"a":[["alkaloids/streptonigrin.yaml","streptonigrin"]],"b":[["unspecified/streptonigrin.html","streptonigrin"]]},{"id":"CHEBI:9470","l":"tetracenomycin C","na":1,"nb":1,"a":[["polyketides/tetracenomycin-c.yaml","tetracenomycin C"]],"b":[["antibacterial/tetracenomycin-c.html","tetracenomycin C"]]},{"id":"CHEBI:9555","l":"tioguanine","na":1,"nb":1,"a":[["alkaloids/tioguanine.yaml","tioguanine"]],"b":[["antiviral/tioguanine.html","tioguanine"]]},{"id":"NCBITaxon:1156913","l":"Amycolatopsis orientalis HCCB10007","na":1,"nb":1,"a":[["amino_acids_and_peptides/vancomycin.yaml","vancomycin"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"NCBITaxon:1352936","l":"Streptomyces roseochromogenus subsp. oscitans DS 12.976","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/clorobiocin.yaml","clorobiocin"]],"b":[["antibacterial/clorobiocin.html","clorobiocin"]]},{"id":"NCBITaxon:1469403","l":"Streptomyces sp. ZJ306","na":1,"nb":1,"a":[["unclassified/ikarugamycin.yaml","ikarugamycin"]],"b":[["antiprotozoal/ikarugamycin.html","ikarugamycin"]]},{"id":"NCBITaxon:1654360","l":"Photobacterium galatheae","na":1,"nb":1,"a":[["alkaloids/holomycin.yaml","holomycin"]],"b":[["antibacterial/holomycin.html","holomycin"]]},{"id":"NCBITaxon:1764","l":"Mycobacterium avium","na":1,"nb":1,"a":[["fatty_acids/gpl-21.yaml","GPL-21"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"NCBITaxon:2583819","l":"Streptomyces sp. DASNCL29","na":1,"nb":1,"a":[["polyketides/nigericin.yaml","nigericin"]],"b":[["antibacterial/nigericin.html","nigericin"]]},{"id":"NCBITaxon:263","l":"Francisella tularensis","na":1,"nb":1,"a":[["polyketides/emodin.yaml","emodin"]],"b":[["unspecified/%CE%B1-mangostin.html","α-mangostin"]]},{"id":"NCBITaxon:41251","l":"Strobilurus tenacellus","na":1,"nb":1,"a":[["polyketides/mucidin.yaml","mucidin"]],"b":[["antifungal/mucidin.html","mucidin"]]},{"id":"NCBITaxon:527005","l":"Yersinia ruckeri ATCC 29473","na":1,"nb":1,"a":[["alkaloids/holomycin.yaml","holomycin"]],"b":[["antibacterial/holomycin.html","holomycin"]]},{"id":"NCBITaxon:5382","l":"Suillus grevillei","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/atromentin.yaml","atromentin"]],"b":[["antibacterial/atromentin.html","atromentin"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":1,"nb":1,"a":[["alkaloids/congocidine.yaml","congocidine"]],"b":[["antiprotozoal/emetine.html","emetine"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":1,"nb":1,"a":[["polyketides/emodin.yaml","emodin"]],"b":[["unspecified/%CE%B1-mangostin.html","α-mangostin"]]},{"id":"NCBITaxon:67283","l":"Streptomyces candidus","na":1,"nb":1,"a":[["unclassified/pirazofurin.yaml","pirazofurin"]],"b":[["unspecified/pirazofurin.html","pirazofurin"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":1,"a":[["unclassified/lysocin-e.yaml","lysocin E"]],"b":[["antibacterial/lysocin-e.html","lysocin E"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis H37Rv","na":1,"nb":1,"a":[["unclassified/mycobactin.yaml","mycobactin"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:889487","l":"Streptomyces sp. S4","na":1,"nb":1,"a":[["unclassified/antimycin-a.yaml","antimycin A"]],"b":[["antifungal/antimycin-a.html","antimycin A"]]},{"id":"UniProt:A0A1S5RQP7","l":"","na":1,"nb":1,"a":[["alkaloids/pentostatin.yaml","pentostatin"]],"b":[["unspecified/pentostatin.html","pentostatin"]]},{"id":"UniProt:B1JQH1","l":"","na":1,"nb":1,"a":[["polyketides/emodin.yaml","emodin"]],"b":[["unspecified/%CE%B1-mangostin.html","α-mangostin"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/NaturalProductMech--TaxonMech.json b/assets/fleet/edges/NaturalProductMech--TaxonMech.json index 0ca8368..2661bc5 100644 --- a/assets/fleet/edges/NaturalProductMech--TaxonMech.json +++ b/assets/fleet/edges/NaturalProductMech--TaxonMech.json @@ -1 +1 @@ -{"a":"NaturalProductMech","b":"TaxonMech","base":{"NaturalProductMech":"https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/natural_products/","TaxonMech":"https://culturebotai.github.io/TaxonMech/pages/taxon.html?id="},"n":1708,"by":{"NCBITaxon":1708},"terms":[{"id":"NCBITaxon:1883","l":"Streptomyces","na":438,"nb":31267,"a":[["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/7-prenylisatin.yaml","7-prenylisatin"],["alkaloids/9-methylstreptimidone.yaml","9-methylstreptimidone"],["alkaloids/anisomycin.yaml","(−)-anisomycin"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"]],"b":[["NCBITaxon%3A208445","Amycolatopsis tolypomycina"],["NCBITaxon%3A1470348","Candidatus Streptomyces massiliensis"],["NCBITaxon%3A1211820","Candidatus Streptomyces massiliensis AP10"],["NCBITaxon%3A371608","Candidatus Streptomyces philanthi"],["NCBITaxon%3A1563718","Candidatus Streptomyces philanthi bv. albopilosus"],["NCBITaxon%3A371609","Candidatus Streptomyces philanthi bv. barbiger"]]},{"id":"NCBITaxon:1873","l":"Micromonospora","na":49,"nb":3346,"a":[["alkaloids/diazaquinomycin-h.yaml","diazaquinomycin H"],["alkaloids/diazaquinomycin-j.yaml","diazaquinomycin J"],["alkaloids/diazepinomicin.yaml","diazepinomicin"],["alkaloids/microansamycin-i.yaml","microansamycin I"],["alkaloids/staurosporine.yaml","staurosporine"],["alkaloids/streptonigrin.yaml","streptonigrin"]],"b":[["NCBITaxon%3A2202421","Micromonospora acroterricola"],["NCBITaxon%3A2911212","Micromonospora alfalfae"],["NCBITaxon%3A1287068","Micromonospora andamanensis"],["NCBITaxon%3A2807623","Micromonospora antibiotica"],["NCBITaxon%3A309046","Micromonospora aquatica"],["NCBITaxon%3A2116518","Micromonospora arborensis"]]},{"id":"NCBITaxon:286","l":"Pseudomonas","na":41,"nb":33485,"a":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["alkaloids/tioguanine.yaml","tioguanine"],["amino_acids_and_peptides/napsamycin-c.yaml","napsamycin C"],["amino_acids_and_peptides/napsamycin-d.yaml","napsamycin D"]],"b":[["NCBITaxon%3A196824","Arctic sea ice associated bacterium ARK10142"],["NCBITaxon%3A196823","Arctic sea ice bacterium ARK10061"],["NCBITaxon%3A196825","Arctic sea ice bacterium ARK9971"],["NCBITaxon%3A196826","Arctic sea ice bacterium ARK9995"],["NCBITaxon%3A215583","bacterium G5"],["NCBITaxon%3A1871086","Brevundimonas sp."]]},{"id":"NCBITaxon:1177","l":"Nostoc","na":41,"nb":6579,"a":[["alkaloids/nocuolin-a.yaml","Nocuolin A"],["amino_acids_and_peptides/anabaenopeptin-802.yaml","anabaenopeptin 802"],["amino_acids_and_peptides/heinamide-a1.yaml","heinamide A1"],["amino_acids_and_peptides/heinamide-a2.yaml","heinamide A2"],["amino_acids_and_peptides/heinamide-a3.yaml","heinamide A3"],["amino_acids_and_peptides/heinamide-b1.yaml","heinamide B1"]],"b":[["NCBITaxon%3A3085085","Anabaena oryzae CF66701"],["NCBITaxon%3A2739044","Cyanocohniella crotaloides"],["NCBITaxon%3A1179","Desmonostoc muscorum"],["NCBITaxon%3A3366270","Nostoc breve"],["NCBITaxon%3A3040065","Nostoc breve BG11-PS"],["NCBITaxon%3A1521619","Nostoc caeruleum"]]},{"id":"NCBITaxon:1126","l":"Microcystis aeruginosa","na":36,"nb":1085,"a":[["alkaloids/anatoxin-a.yaml","anatoxin-a"],["amino_acids_and_peptides/aerucyclamide-a.yaml","aerucyclamide A"],["amino_acids_and_peptides/aerucyclamide-c.yaml","aerucyclamide C"],["amino_acids_and_peptides/aerucyclamide-d.yaml","aerucyclamide D"],["amino_acids_and_peptides/aeruginosamide-b.yaml","aeruginosamide B"],["amino_acids_and_peptides/aeruginosamide-c.yaml","aeruginosamide C"]],"b":[["NCBITaxon%3A1126","Microcystis aeruginosa"],["NCBITaxon%3A270630","Microcystis aeruginosa 0BB35S02"],["NCBITaxon%3A270631","Microcystis aeruginosa 0BF29S01"],["NCBITaxon%3A270632","Microcystis aeruginosa 0BF29S03"],["NCBITaxon%3A2358142","Microcystis aeruginosa 11-30S32"],["NCBITaxon%3A3113711","Microcystis aeruginosa 1339"]]},{"id":"NCBITaxon:1912","l":"Streptomyces hygroscopicus","na":29,"nb":35,"a":[["alkaloids/9-methylstreptimidone.yaml","9-methylstreptimidone"],["alkaloids/indigoidine-2.yaml","indigoidine"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/cyclothiazomycin.yaml","cyclothiazomycin"],["amino_acids_and_peptides/eponemycin.yaml","eponemycin"],["amino_acids_and_peptides/himastatin.yaml","himastatin"]],"b":[["NCBITaxon%3A285578","Streptomyces angustmyceticus"],["NCBITaxon%3A68175","Streptomyces antimycoticus"],["NCBITaxon%3A1226758","Streptomyces antimycoticus subsp. mordarskii"],["NCBITaxon%3A476551","Streptomyces ascomycinicus"],["NCBITaxon%3A114699","Streptomyces asiaticus"],["NCBITaxon%3A3098222","Streptomyces asiaticus subsp. ignotus"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":27,"nb":79,"a":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["alkaloids/pseudomonine.yaml","pseudomonine"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyreudione-c.yaml","pyreudione C"],["alkaloids/quinolobactin.yaml","quinolobactin"]],"b":[["NCBITaxon%3A1931223","Caballeronia sp."],["NCBITaxon%3A89065","Pseudomonas abietaniphila"],["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1123912","Pseudomonas auricularis"],["NCBITaxon%3A930166","Pseudomonas brassicacearum"],["NCBITaxon%3A129817","Pseudomonas brenneri"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":24,"nb":3868,"a":[["alkaloids/biotin.yaml","biotin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A196023","Aeromonas hydrophila subsp. hydrophila"],["NCBITaxon%3A380703","Aeromonas hydrophila subsp. hydrophila ATCC 7966"],["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A35703","Citrobacter amalonaticus"],["NCBITaxon%3A163202","Corynebacterium appendicis"]]},{"id":"NCBITaxon:5073","l":"Penicillium","na":20,"nb":290,"a":[["alkaloids/citridone-a.yaml","citridone A"],["alkaloids/citridone-b-2.yaml","citridone B'"],["alkaloids/citridone-b.yaml","citridone B"],["alkaloids/communesin-b.yaml","communesin B"],["alkaloids/communesin-c.yaml","communesin C"],["alkaloids/communesin-d.yaml","communesin D"]],"b":[["NCBITaxon%3A70094","Penicillium adametzioides"],["NCBITaxon%3A36650","Penicillium aethiopicum"],["NCBITaxon%3A74831","Penicillium albocoremium"],["NCBITaxon%3A1324773","Penicillium alexiae"],["NCBITaxon%3A2998136","Penicillium allaniae"],["NCBITaxon%3A1459053","Penicillium allii"]]},{"id":"NCBITaxon:1911","l":"Streptomyces griseus","na":32,"nb":20,"a":[["alkaloids/cycloheximide.yaml","cycloheximide"],["alkaloids/grixazone-a.yaml","grixazone A"],["alkaloids/iminimycin-a.yaml","iminimycin A"],["alkaloids/iminimycin-b.yaml","iminimycin B"],["alkaloids/indolmycin.yaml","indolmycin"],["alkaloids/melanin.yaml","melanin"]],"b":[["NCBITaxon%3A1884","Streptomyces acrimycini"],["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A67274","Streptomyces argenteolus"],["NCBITaxon%3A1896","Streptomyces bikiniensis"],["NCBITaxon%3A90079","Streptomyces caviscabies"],["NCBITaxon%3A66883","Streptomyces cyaneofuscatus"]]},{"id":"NCBITaxon:5052","l":"Aspergillus","na":18,"nb":320,"a":[["alkaloids/psychrophilin-e.yaml","psychrophilin E"],["alkaloids/terrequinone-a.yaml","terrequinone A"],["fatty_acids/himeic-acid-a.yaml","himeic acid A"],["polyketides/asperlin.yaml","(+)-asperlin"],["polyketides/geodin.yaml","geodin"],["polyketides/mycophenolic-acid.yaml","mycophenolic acid"]],"b":[["NCBITaxon%3A1904037","Aspergillus acidohumus"],["NCBITaxon%3A487661","Aspergillus aculeatinus"],["NCBITaxon%3A1070780","Aspergillus affinis"],["NCBITaxon%3A657433","Aspergillus alabamensis"],["NCBITaxon%3A1612426","Aspergillus allahabadii"],["NCBITaxon%3A209559","Aspergillus alliaceus"]]},{"id":"NCBITaxon:1190","l":"Fischerella","na":16,"nb":189,"a":[["alkaloids/12-epi-hapalindole-c-isonitrile.yaml","12-epi-hapalindole C isonitrile"],["alkaloids/12-epi-hapalindole-e.yaml","12-epi-hapalindole E"],["alkaloids/12-epi-hapalindole-j-isonitrile.yaml","12-epi-hapalindole J isonitrile"],["alkaloids/ambiguine-a-isonitrile.yaml","ambiguine A isonitrile"],["alkaloids/ambiguine-b-isonitrile.yaml","ambiguine B isonitrile"],["alkaloids/ambiguine-d-isonitrile.yaml","ambiguine D isonitrile"]],"b":[["NCBITaxon%3A384603","filamentous thermophilic cyanobacterium tBTRCCn 101"],["NCBITaxon%3A384608","filamentous thermophilic cyanobacterium tBTRCCn 403"],["NCBITaxon%3A56108","Fischerella ambigua"],["NCBITaxon%3A2904298","Fischerella ambigua AFC012"],["NCBITaxon%3A1678516","Fischerella ambigua BAT1"],["NCBITaxon%3A452092","Fischerella ambigua FS 18"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":16,"nb":82,"a":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["amino_acids_and_peptides/ericin-s.yaml","ericin S"],["amino_acids_and_peptides/iturin.yaml","iturin"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"]],"b":[["NCBITaxon%3A1390","Bacillus amyloliquefaciens"],["NCBITaxon%3A1452","Bacillus atrophaeus"],["NCBITaxon%3A640707","Bacillus atrophaeus ATCC 9372"],["NCBITaxon%3A483913","Bacillus inaquosorum"],["NCBITaxon%3A1236548","Bacillus inaquosorum KCTC 13429"],["NCBITaxon%3A1402","Bacillus licheniformis"]]},{"id":"NCBITaxon:2063","l":"Kitasatospora","na":15,"nb":639,"a":[["alkaloids/5-2-hydroxyacetyl-5-10-dihydrophenazine-1-carboxylic-acid.yaml","5-(2-hydroxyacetyl)-5,10-dihydrophenazine-1-carboxylic acid"],["alkaloids/5-acetyl-5-10-dihydrophenazine-1-carboxylic-acid.yaml","5-acetyl-5,10-dihydrophenazine-1-carboxylic acid"],["alkaloids/endophenazine-a1.yaml","endophenazine A1"],["alkaloids/endophenazine-f.yaml","endophenazine F"],["alkaloids/endophenazine-g.yaml","endophenazine G"],["amino_acids_and_peptides/zelkovamycin-b.yaml","zelkovamycin B"]],"b":[["NCBITaxon%3A67265","Kitasatospora aburaviensis"],["NCBITaxon%3A285481","Kitasatospora aburaviensis subsp. tuftformis"],["NCBITaxon%3A2567942","Kitasatospora acidiphila"],["NCBITaxon%3A68173","Kitasatospora albolonga"],["NCBITaxon%3A258052","Kitasatospora arboriphila"],["NCBITaxon%3A285545","Kitasatospora atroaurantiaca"]]},{"id":"NCBITaxon:2013","l":"Nocardiopsis","na":14,"nb":1175,"a":[["alkaloids/k-252a-2.yaml","K-252a"],["alkaloids/k-252a.yaml","K-252a"],["alkaloids/methylpendolmycin.yaml","methylpendolmycin"],["alkaloids/pendolmycin.yaml","pendolmycin"],["amino_acids_and_peptides/tp-1161.yaml","TP-1161"],["polyketides/apoptolidin.yaml","apoptolidin"]],"b":[["NCBITaxon%3A2838703","Candidatus Nocardiopsis merdipullorum"],["NCBITaxon%3A220378","Nocardiopsis aegyptia"],["NCBITaxon%3A2831968","Nocardiopsis akebiae"],["NCBITaxon%3A1236269","Nocardiopsis akesuensis"],["NCBITaxon%3A53437","Nocardiopsis alba"],["NCBITaxon%3A1205910","Nocardiopsis alba ATCC BAA-2165"]]},{"id":"NCBITaxon:29488","l":"Photorhabdus luminescens","na":14,"nb":20,"a":[["alkaloids/photobactin.yaml","photobactin"],["alkaloids/pzn5.yaml","PZN5"],["amino_acids_and_peptides/gamexpeptide-c.yaml","gamexpeptide C"],["amino_acids_and_peptides/glidobactin.yaml","glidobactin"],["amino_acids_and_peptides/luminmycin-a.yaml","luminmycin A"],["polyketides/photopyrone-a.yaml","photopyrone A"]],"b":[["NCBITaxon%3A171438","Photorhabdus akhurstii"],["NCBITaxon%3A2934395","Photorhabdus akhurstii subsp. akhurstii"],["NCBITaxon%3A1004165","Photorhabdus caribbeanensis"],["NCBITaxon%3A1004166","Photorhabdus hainanensis"],["NCBITaxon%3A230088","Photorhabdus kayaii"],["NCBITaxon%3A768034","Photorhabdus kleinii"]]},{"id":"NCBITaxon:1654","l":"Actinomyces","na":13,"nb":460,"a":[["alkaloids/lynamicin-a.yaml","lynamicin A"],["alkaloids/lynamicin-d.yaml","lynamicin D"],["amino_acids_and_peptides/cephamycin-c.yaml","cephamycin C"],["amino_acids_and_peptides/glycinocin-a.yaml","glycinocin A"],["carbohydrates/cetoniacytone-a.yaml","cetoniacytone A"],["polyketides/4-hexadecanoyl-3-hydroxy-2-hydroxymethyl-2h-furan-5-one.yaml","4-hexadecanoyl-3-hydroxy-2-(hydroxymethyl)-2H-furan-5-one"]],"b":[["NCBITaxon%3A3050225","Actinomyces acetigenes"],["NCBITaxon%3A1852361","Actinomyces bouchesdurhonensis"],["NCBITaxon%3A1658","Actinomyces bovis"],["NCBITaxon%3A131109","Actinomyces bowdenii"],["NCBITaxon%3A2755559","Actinomyces capricornis"],["NCBITaxon%3A119495","Actinomyces catuli"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":12,"nb":557,"a":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]],"b":[["NCBITaxon%3A2073169","Chromobacterium alticapitis"],["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1454219","Pseudomonas aeruginosa 059A"],["NCBITaxon%3A1421538","Pseudomonas aeruginosa 0812"],["NCBITaxon%3A1421545","Pseudomonas aeruginosa 0822"],["NCBITaxon%3A1421531","Pseudomonas aeruginosa 0C2E"]]},{"id":"NCBITaxon:168694","l":"Salinispora","na":12,"nb":263,"a":[["amino_acids_and_peptides/salinosporamide-a.yaml","salinosporamide A"],["fatty_acids/salinipostin-a.yaml","Salinipostin A"],["fatty_acids/salinipostin-b.yaml","Salinipostin B"],["fatty_acids/salinipostin-c.yaml","Salinipostin C"],["fatty_acids/salinipostin-d.yaml","Salinipostin D"],["fatty_acids/salinipostin-e.yaml","Salinipostin E"]],"b":[["NCBITaxon%3A168697","Salinispora arenicola"],["NCBITaxon%3A391967","Salinispora arenicola ATCC BAA-917"],["NCBITaxon%3A1136425","Salinispora arenicola CNB458"],["NCBITaxon%3A1137250","Salinispora arenicola CNB527"],["NCBITaxon%3A1136427","Salinispora arenicola CNH646"],["NCBITaxon%3A1408327","Salinispora arenicola CNH713"]]},{"id":"NCBITaxon:1914","l":"Streptomyces lavendulae","na":12,"nb":17,"a":[["alkaloids/indigoidine.yaml","indigoidine"],["alkaloids/saframycin-a.yaml","saframycin A"],["alkaloids/saframycin-b.yaml","saframycin B"],["amino_acids_and_peptides/cycloserine.yaml","cycloserine"],["amino_acids_and_peptides/isocomplestatin.yaml","isocomplestatin"],["carbohydrates/showdomycin.yaml","showdomycin"]],"b":[["NCBITaxon%3A1914","Streptomyces lavendulae"],["NCBITaxon%3A1522107","Streptomyces lavendulae subsp. avirens"],["NCBITaxon%3A1522108","Streptomyces lavendulae subsp. brasilicus"],["NCBITaxon%3A68190","Streptomyces lavendulae subsp. colombiensis"],["NCBITaxon%3A516458","Streptomyces lavendulae subsp. fuscus"],["NCBITaxon%3A66421","Streptomyces lavendulae subsp. grasserius"]]},{"id":"NCBITaxon:1163","l":"Anabaena","na":11,"nb":988,"a":[["alkaloids/anatoxin-a.yaml","anatoxin-a"],["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"],["alkaloids/saxitoxin.yaml","saxitoxin"],["alkaloids/schizokinen.yaml","schizokinen"],["amino_acids_and_peptides/anabaenopeptin.yaml","anabaenopeptin"],["amino_acids_and_peptides/anacyclamide-a10.yaml","anacyclamide A10"]],"b":[["NCBITaxon%3A212361","Anabaena aequalis"],["NCBITaxon%3A732138","Anabaena aequalis ACCS 089"],["NCBITaxon%3A264684","Anabaena augstumalis"],["NCBITaxon%3A436026","Anabaena augstumalis A802"],["NCBITaxon%3A1217902","Anabaena augstumalis CA2a-1"],["NCBITaxon%3A1940708","Anabaena augstumalis I013-0007"]]},{"id":"NCBITaxon:1813","l":"Amycolatopsis","na":11,"nb":705,"a":[["amino_acids_and_peptides/amychelin-a.yaml","amychelin A"],["amino_acids_and_peptides/amychelin-b.yaml","amychelin B"],["amino_acids_and_peptides/felipeptin-a1.yaml","felipeptin A1"],["amino_acids_and_peptides/felipeptin-a2.yaml","felipeptin A2"],["polyketides/azicemicin-b.yaml","azicemicin B"],["polyketides/nocamycin-v.yaml","nocamycin V"]],"b":[["NCBITaxon%3A2596893","Amycolatopsis acidicola"],["NCBITaxon%3A2724524","Amycolatopsis acididurans"],["NCBITaxon%3A715473","Amycolatopsis acidiphila"],["NCBITaxon%3A2842453","Amycolatopsis aidingensis"],["NCBITaxon%3A76020","Amycolatopsis alba"],["NCBITaxon%3A1125972","Amycolatopsis alba DSM 44262"]]},{"id":"NCBITaxon:1886","l":"Streptomyces albidoflavus","na":54,"nb":11,"a":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/anthramycin.yaml","anthramycin"],["alkaloids/diazaquinomycin-f.yaml","diazaquinomycin F"],["alkaloids/diazaquinomycin-g.yaml","diazaquinomycin G"],["alkaloids/holomycin.yaml","holomycin"],["alkaloids/melanin.yaml","melanin"]],"b":[["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A53445","Streptomyces canescens"],["NCBITaxon%3A68184","Streptomyces champavatii"],["NCBITaxon%3A1902","Streptomyces coelicolor"],["NCBITaxon%3A53447","Streptomyces felleus"],["NCBITaxon%3A1911","Streptomyces griseus"]]},{"id":"NCBITaxon:1888","l":"Streptomyces albus","na":32,"nb":11,"a":[["alkaloids/berninamycin-j.yaml","berninamycin J"],["alkaloids/berninamycin-k.yaml","berninamycin K"],["alkaloids/indolmycin.yaml","indolmycin"],["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/streptonigrin.yaml","streptonigrin"],["alkaloids/sulfadixiamycin-a.yaml","sulfadixiamycin A"]],"b":[["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A1888","Streptomyces albus"],["NCBITaxon%3A1962","Streptomyces albus G"],["NCBITaxon%3A457425","Streptomyces albus J1074"],["NCBITaxon%3A67257","Streptomyces albus subsp. albus"],["NCBITaxon%3A1081613","Streptomyces albus subsp. albus DSM 41398"]]},{"id":"NCBITaxon:5507","l":"Fusarium oxysporum","na":11,"nb":27,"a":[["alkaloids/fusaric-acid.yaml","fusaric acid"],["polyketides/bikaverin.yaml","bikaverin"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"],["polyketides/fumonisin-c1.yaml","Fumonisin C1"],["polyketides/fumonisin-c2.yaml","Fumonisin C2"],["polyketides/fumonisin-c3.yaml","Fumonisin C3"]],"b":[["NCBITaxon%3A5507","Fusarium oxysporum"],["NCBITaxon%3A72712","Fusarium oxysporum f. sp. albedinis"],["NCBITaxon%3A396571","Fusarium oxysporum f. sp. cepae"],["NCBITaxon%3A62683","Fusarium oxysporum f. sp. ciceris"],["NCBITaxon%3A100902","Fusarium oxysporum f. sp. conglutinans"],["NCBITaxon%3A660025","Fusarium oxysporum f. sp. conglutinans Fo5176"]]},{"id":"NCBITaxon:162986","l":"Hapalosiphon welwitschii","na":11,"nb":17,"a":[["alkaloids/12-epi-fischerindole-i-isonitrile.yaml","12-epi-fischerindole I isonitrile"],["alkaloids/12-epi-fischerindole-u-isonitrile.yaml","12-epi-fischerindole U isonitrile"],["alkaloids/12-epi-hapalindole-c-isonitrile.yaml","12-epi-hapalindole C isonitrile"],["alkaloids/12-epi-hapalindole-e.yaml","12-epi-hapalindole E"],["alkaloids/3-epi-welwitindolinone-b-isothiocyanate.yaml","3-epi-welwitindolinone B isothiocyanate"],["alkaloids/welwitindolinone-a-isonitrile.yaml","welwitindolinone A isonitrile"]],"b":[["NCBITaxon%3A162986","Hapalosiphon welwitschii"],["NCBITaxon%3A1565563","Hapalosiphon welwitschii AUS-JR/BS/MS/NT-076"],["NCBITaxon%3A1917997","Hapalosiphon welwitschii BHU49"],["NCBITaxon%3A3024995","Hapalosiphon welwitschii *C2-JAYA"],["NCBITaxon%3A2837618","Hapalosiphon welwitschii EB01A2"],["NCBITaxon%3A2907140","Hapalosiphon welwitschii HKAR-18"]]},{"id":"NCBITaxon:158786","l":"Lyngbya majuscula","na":11,"nb":11,"a":[["alkaloids/lyngbyatoxin.yaml","lyngbyatoxin"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/malyngamide-c-acetate.yaml","malyngamide C acetate"],["carbohydrates/streptomycin.yaml","streptomycin"],["polyketides/curacin-a-2.yaml","curacin A"],["polyketides/curacin-a.yaml","curacin A"]],"b":[["NCBITaxon%3A1414809","Lyngbya cf. majuscula miya1-1mo9"],["NCBITaxon%3A158786","Lyngbya majuscula"],["NCBITaxon%3A1930583","Lyngbya majuscula BG01H01"],["NCBITaxon%3A1930584","Lyngbya majuscula BG03H03"],["NCBITaxon%3A2654332","Lyngbya majuscula HA5"],["NCBITaxon%3A276770","Lyngbya majuscula HECT"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":10,"nb":183,"a":[["alkaloids/labradorin-1.yaml","labradorin 1"],["alkaloids/labradorin-2.yaml","labradorin 2"],["alkaloids/secimide.yaml","secimide"],["amino_acids_and_peptides/phaseolotoxin.yaml","phaseolotoxin"],["amino_acids_and_peptides/syringolin-a.yaml","syringolin A"],["amino_acids_and_peptides/tabtoxin.yaml","tabtoxin"]],"b":[["NCBITaxon%3A86840","Pseudomonas cannabina"],["NCBITaxon%3A53409","Pseudomonas coronafaciens"],["NCBITaxon%3A29438","Pseudomonas savastanoi"],["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A1204471","Pseudomonas syringae BRIP34876"]]},{"id":"NCBITaxon:1178","l":"Nostoc commune","na":10,"nb":174,"a":[["amino_acids_and_peptides/microviridin-n3.yaml","microviridin N3"],["amino_acids_and_peptides/microviridin-n4.yaml","microviridin N4"],["amino_acids_and_peptides/microviridin-n6.yaml","microviridin N6"],["amino_acids_and_peptides/microviridin-n7.yaml","microviridin N7"],["amino_acids_and_peptides/microviridin-n8.yaml","microviridin N8"],["amino_acids_and_peptides/microviridin-n9.yaml","microviridin N9"]],"b":[["NCBITaxon%3A995089","Nostoc cf. commune 257-15"],["NCBITaxon%3A995090","Nostoc cf. commune 257-16"],["NCBITaxon%3A995091","Nostoc cf. commune 257-20"],["NCBITaxon%3A449210","Nostoc cf. commune KG-102"],["NCBITaxon%3A449209","Nostoc cf. commune KG-54"],["NCBITaxon%3A449208","Nostoc cf. commune SO-36"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa (strain ATCC 15692 / DSM 22644 / CIP 104116 / JCM 14847 / LMG 12228 / 1C / PRS 101 / PAO1)","na":10,"nb":23,"a":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]],"b":[["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1453991","Pseudomonas aeruginosa BK1"],["NCBITaxon%3A1236530","Pseudomonas aeruginosa JCM 14847"],["NCBITaxon%3A1131757","Pseudomonas aeruginosa MPAO1/P1"],["NCBITaxon%3A1131758","Pseudomonas aeruginosa MPAO1/P2"],["NCBITaxon%3A208964","Pseudomonas aeruginosa PAO1"]]},{"id":"NCBITaxon:56108","l":"Fischerella ambigua","na":13,"nb":10,"a":[["alkaloids/12-epi-hapalindole-j-isonitrile.yaml","12-epi-hapalindole J isonitrile"],["alkaloids/ambiguine-a-isonitrile.yaml","ambiguine A isonitrile"],["alkaloids/ambiguine-b-isonitrile.yaml","ambiguine B isonitrile"],["alkaloids/ambiguine-c-isonitrile.yaml","ambiguine C isonitrile"],["alkaloids/ambiguine-d-isonitrile.yaml","ambiguine D isonitrile"],["alkaloids/ambiguine-e-isonitrile.yaml","ambiguine E isonitrile"]],"b":[["NCBITaxon%3A56108","Fischerella ambigua"],["NCBITaxon%3A2904298","Fischerella ambigua AFC012"],["NCBITaxon%3A1678516","Fischerella ambigua BAT1"],["NCBITaxon%3A452092","Fischerella ambigua FS 18"],["NCBITaxon%3A1440167","Fischerella ambigua ISC 107"],["NCBITaxon%3A1084562","Fischerella ambigua ISC 4"]]},{"id":"NCBITaxon:628","l":"Xenorhabdus nematophila","na":13,"nb":10,"a":[["alkaloids/nematophin.yaml","nematophin"],["alkaloids/odilorhabdin-noso-95a.yaml","odilorhabdin NOSO-95A"],["alkaloids/odilorhabdin-noso-95b.yaml","odilorhabdin NOSO-95B"],["alkaloids/odilorhabdin-noso-95c.yaml","odilorhabdin NOSO-95C"],["amino_acids_and_peptides/rhabdopeptide-4.yaml","rhabdopeptide 4"],["amino_acids_and_peptides/xenortide-a.yaml","xenortide A"]],"b":[["NCBITaxon%3A40576","Xenorhabdus bovienii"],["NCBITaxon%3A628","Xenorhabdus nematophila"],["NCBITaxon%3A1437823","Xenorhabdus nematophila AN6/1"],["NCBITaxon%3A406817","Xenorhabdus nematophila ATCC 19061"],["NCBITaxon%3A1306162","Xenorhabdus nematophila F1"],["NCBITaxon%3A1437825","Xenorhabdus nematophila str. Anatoliense"]]},{"id":"NCBITaxon:28095","l":"Burkholderia gladioli","na":12,"nb":10,"a":[["alkaloids/gladiofungin-a.yaml","gladiofungin A"],["alkaloids/gladiofungin-b.yaml","gladiofungin B"],["alkaloids/toxoflavin.yaml","toxoflavin"],["amino_acids_and_peptides/arsinothricin.yaml","arsinothricin"],["amino_acids_and_peptides/bolagladin-a.yaml","bolagladin A"],["fatty_acids/bongkrekic-acid-2.yaml","bongkrekic acid"]],"b":[["NCBITaxon%3A28095","Burkholderia gladioli"],["NCBITaxon%3A1263856","Burkholderia gladioli 3848s-5"],["NCBITaxon%3A999541","Burkholderia gladioli BSR3"],["NCBITaxon%3A1218079","Burkholderia gladioli NBRC 13700"],["NCBITaxon%3A336070","Burkholderia gladioli pv. agaricicola"],["NCBITaxon%3A32010","Burkholderia gladioli pv. alliicola"]]},{"id":"NCBITaxon:1386","l":"Bacillus","na":9,"nb":33976,"a":[["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bogorol-a.yaml","bogorol A"],["amino_acids_and_peptides/koranimine.yaml","koranimine"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"],["amino_acids_and_peptides/rhizocticin-a.yaml","rhizocticin A"],["polyketides/difficidin.yaml","difficidin"]],"b":[["NCBITaxon%3A208551","alkaliphilic bacterium AF112"],["NCBITaxon%3A33934","Anoxybacillus flavithermus"],["NCBITaxon%3A1185649","Anoxybacillus flavithermus subsp. flavithermus"],["NCBITaxon%3A28030","Bacillus acidopullulyticus"],["NCBITaxon%3A33017","Bacillus acidovorans"],["NCBITaxon%3A203540","Bacillus aeolius"]]},{"id":"NCBITaxon:1817","l":"Nocardia","na":9,"nb":1573,"a":[["alkaloids/rebeccamycin.yaml","rebeccamycin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/nocathiacin-i.yaml","nocathiacin I"],["amino_acids_and_peptides/ristocetin-a.yaml","Ristocetin A"],["amino_acids_and_peptides/vancomycin.yaml","vancomycin"],["polyketides/macbecin-ii.yaml","macbecin II"]],"b":[["NCBITaxon%3A120957","Nocardia abscessus"],["NCBITaxon%3A1206723","Nocardia abscessus NBRC 100374"],["NCBITaxon%3A2802282","Nocardia acididurans"],["NCBITaxon%3A1224718","Nocardia aciditolerans"],["NCBITaxon%3A404580","Nocardia acidivorans"],["NCBITaxon%3A1210062","Nocardia acidivorans NBRC 108247"]]},{"id":"NCBITaxon:1988","l":"Actinomadura","na":9,"nb":562,"a":[["alkaloids/k-252a.yaml","K-252a"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["carbohydrates/2-chloropentostatin.yaml","2'-chloropentostatin"],["polyketides/actinospirol-a.yaml","actinospirol A"],["polyketides/actinospirol-b.yaml","actinospirol B"],["polyketides/maduralactomycin-a.yaml","maduralactomycin A"]],"b":[["NCBITaxon%3A1819600","Actinomadura adrarensis"],["NCBITaxon%3A406431","Actinomadura alba"],["NCBITaxon%3A1679523","Actinomadura algeriensis"],["NCBITaxon%3A1735446","Actinomadura alkaliterrae"],["NCBITaxon%3A755139","Actinomadura apis"],["NCBITaxon%3A1990","Actinomadura atramentaria"]]},{"id":"NCBITaxon:1160","l":"Planktothrix agardhii","na":9,"nb":289,"a":[["amino_acids_and_peptides/aeruginoside-126a.yaml","aeruginoside 126A"],["amino_acids_and_peptides/aeruginoside-126b.yaml","aeruginoside 126B"],["amino_acids_and_peptides/anabaenopeptin-908.yaml","anabaenopeptin 908"],["amino_acids_and_peptides/anabaenopeptin-915.yaml","anabaenopeptin 915"],["amino_acids_and_peptides/microcystin.yaml","microcystin"],["amino_acids_and_peptides/prenylagaramide-b.yaml","prenylagaramide B"]],"b":[["NCBITaxon%3A1160","Planktothrix agardhii"],["NCBITaxon%3A358557","Planktothrix agardhii 0ES34S1"],["NCBITaxon%3A2884158","Planktothrix agardhii 1025"],["NCBITaxon%3A2884159","Planktothrix agardhii 1026"],["NCBITaxon%3A2884160","Planktothrix agardhii 1027"],["NCBITaxon%3A2884161","Planktothrix agardhii 1029"]]},{"id":"NCBITaxon:2071","l":"Saccharothrix","na":9,"nb":151,"a":[["amino_acids_and_peptides/saccharochelin-a.yaml","saccharochelin A"],["amino_acids_and_peptides/saccharochelin-b.yaml","saccharochelin B"],["amino_acids_and_peptides/saccharochelin-c.yaml","saccharochelin C"],["amino_acids_and_peptides/saccharochelin-d.yaml","saccharochelin D"],["amino_acids_and_peptides/saccharochelin-e.yaml","saccharochelin E"],["amino_acids_and_peptides/saccharochelin-f.yaml","saccharochelin F"]],"b":[["NCBITaxon%3A173560","Saccharothrix algeriensis"],["NCBITaxon%3A2072","Saccharothrix australiensis"],["NCBITaxon%3A3231910","Saccharothrix camelliae"],["NCBITaxon%3A1280637","Saccharothrix carnea"],["NCBITaxon%3A33919","Saccharothrix coeruleofusca"],["NCBITaxon%3A2593674","Saccharothrix deserti"]]},{"id":"NCBITaxon:5506","l":"Fusarium","na":9,"nb":143,"a":[["alkaloids/lucilactaene.yaml","lucilactaene"],["alkaloids/ng-391.yaml","NG-391"],["polyketides/fusarubin.yaml","fusarubin"],["unclassified/ascochlorin.yaml","ascochlorin"],["unclassified/fusaristatin-a.yaml","fusaristatin A"],["unclassified/roquefortine-d.yaml","roquefortine D"]],"b":[["NCBITaxon%3A5515","Fusarium acuminatum"],["NCBITaxon%3A1803897","Fusarium agapanthi"],["NCBITaxon%3A1237068","Fusarium albosuccineum"],["NCBITaxon%3A2050978","Fusarium algeriense"],["NCBITaxon%3A131363","Fusarium ambrosium"],["NCBITaxon%3A183586","Fusarium anguioides"]]},{"id":"NCBITaxon:1155739","l":"Moorena producens","na":9,"nb":40,"a":[["amino_acids_and_peptides/cryptomaldamide.yaml","cryptomaldamide"],["amino_acids_and_peptides/vatiamide-e.yaml","vatiamide E"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"],["polyketides/doxorubicin.yaml","doxorubicin"],["polyketides/vatiamide-a.yaml","vatiamide A"],["polyketides/vatiamide-b.yaml","vatiamide B"]],"b":[["NCBITaxon%3A1155739","Moorena producens"],["NCBITaxon%3A276768","Moorena producens 19L"],["NCBITaxon%3A489825","Moorena producens 3L"],["NCBITaxon%3A2546228","Moorena producens ASI16Jul14-2"],["NCBITaxon%3A1288314","Moorena producens BCBC11-14"],["NCBITaxon%3A1288315","Moorena producens FK12-19"]]},{"id":"NCBITaxon:57975","l":"Burkholderia thailandensis","na":9,"nb":17,"a":[["fatty_acids/fr901464.yaml","FR901464"],["polyketides/malleicyprol.yaml","malleicyprol"],["polyketides/thailandamide-lactone.yaml","thailandamide lactone"],["polyketides/thailandamide.yaml","thailandamide"],["polyketides/thailanstatin-a.yaml","thailanstatin A"],["shikimates_and_phenylpropanoids/bactobolin.yaml","bactobolin"]],"b":[["NCBITaxon%3A57975","Burkholderia thailandensis"],["NCBITaxon%3A1249660","Burkholderia thailandensis 2002721643"],["NCBITaxon%3A1241582","Burkholderia thailandensis 2002721723"],["NCBITaxon%3A1249664","Burkholderia thailandensis 34"],["NCBITaxon%3A441164","Burkholderia thailandensis Bt4"],["NCBITaxon%3A1436064","Burkholderia thailandensis E0444"]]},{"id":"NCBITaxon:1854","l":"Frankia","na":8,"nb":584,"a":[["amino_acids_and_peptides/frankobactin-a1.yaml","frankobactin A1"],["amino_acids_and_peptides/frankobactin-a3.yaml","frankobactin A3"],["amino_acids_and_peptides/frankobactin-b1.yaml","frankobactin B1"],["amino_acids_and_peptides/frankobactin-b3.yaml","frankobactin B3"],["amino_acids_and_peptides/frankobactin-c1.yaml","frankobactin C1"],["polyketides/frankiamicin.yaml","frankiamicin"]],"b":[["NCBITaxon%3A2699483","Candidatus Frankia alpina"],["NCBITaxon%3A2714109","Candidatus Frankia meridionalis"],["NCBITaxon%3A2060052","Candidatus Frankia nodulisporulans"],["NCBITaxon%3A1859","Frankia alni"],["NCBITaxon%3A326424","Frankia alni ACN14a"],["NCBITaxon%3A1836972","Frankia canadensis"]]},{"id":"NCBITaxon:351187","l":"Salinispora pacifica","na":8,"nb":40,"a":[["alkaloids/lymphostin.yaml","lymphostin"],["polyketides/lomaiviticin-a.yaml","lomaiviticin A"],["polyketides/lomaiviticin-c.yaml","lomaiviticin C"],["polyketides/lomaiviticin-d-2.yaml","lomaiviticin D"],["polyketides/lomaiviticin-e.yaml","lomaiviticin E"],["polyketides/pacificanone-a.yaml","pacificanone A"]],"b":[["NCBITaxon%3A351187","Salinispora pacifica"],["NCBITaxon%3A1408347","Salinispora pacifica CNH732"],["NCBITaxon%3A1169193","Salinispora pacifica CNQ768"],["NCBITaxon%3A1137260","Salinispora pacifica CNR114"],["NCBITaxon%3A1408348","Salinispora pacifica CNR510"],["NCBITaxon%3A1137259","Salinispora pacifica CNR551"]]},{"id":"NCBITaxon:492670","l":"Bacillus velezensis","na":8,"nb":18,"a":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["polyketides/bacillaene.yaml","bacillaene"],["polyketides/difficidin.yaml","difficidin"],["polyketides/macrolactin-h.yaml","macrolactin H"],["unclassified/corynebactin.yaml","corynebactin"]],"b":[["NCBITaxon%3A492670","Bacillus velezensis"],["NCBITaxon%3A2517241","Bacillus velezensis A3"],["NCBITaxon%3A1225788","Bacillus velezensis AS43.3"],["NCBITaxon%3A1239834","Bacillus velezensis At1"],["NCBITaxon%3A1114958","Bacillus velezensis CAU B946"],["NCBITaxon%3A2853458","Bacillus velezensis EYE_388"]]},{"id":"NCBITaxon:43356","l":"Kutzneria","na":8,"nb":16,"a":[["polyketides/epemicin-a.yaml","epemicin A"],["polyketides/epemicin-b.yaml","epemicin B"],["unclassified/kutzneride-1.yaml","Kutzneride 1"],["unclassified/kutzneride-2.yaml","Kutzneride 2"],["unclassified/kutzneride-3.yaml","Kutzneride 3"],["unclassified/kutzneride-4.yaml","Kutzneride 4"]],"b":[["NCBITaxon%3A1045776","Kutzneria buriramensis"],["NCBITaxon%3A1483604","Kutzneria chonburiensis"],["NCBITaxon%3A103725","Kutzneria kofuensis"],["NCBITaxon%3A1930788","Kutzneria sp."],["NCBITaxon%3A250526","Kutzneria sp. 306G04"],["NCBITaxon%3A345341","Kutzneria sp. 744"]]},{"id":"NCBITaxon:58346","l":"Streptomyces platensis","na":14,"nb":8,"a":[["alkaloids/13-epi-dorrigocin-a.yaml","13-epi-dorrigocin A"],["alkaloids/17-hydroxy-8-desmethoxy-isomigrastatin.yaml","17-hydroxy-8-desmethoxy-isomigrastatin"],["alkaloids/dorrigocin-a.yaml","dorrigocin A"],["alkaloids/dorrigocin-b.yaml","dorrigocin B"],["alkaloids/iso-migrastatin.yaml","iso-migrastatin"],["alkaloids/staurosporine.yaml","staurosporine"]],"b":[["NCBITaxon%3A249580","Streptomyces glebosus"],["NCBITaxon%3A249582","Streptomyces libani subsp. rufus"],["NCBITaxon%3A1920","Streptomyces nigrescens"],["NCBITaxon%3A58346","Streptomyces platensis"],["NCBITaxon%3A1649334","Streptomyces platensis subsp. clarensis"],["NCBITaxon%3A285579","Streptomyces platensis subsp. malvinus"]]},{"id":"NCBITaxon:82996","l":"Serratia plymuthica","na":8,"nb":8,"a":[["alkaloids/serratiochelin-a.yaml","serratiochelin A"],["alkaloids/serratiochelin-b.yaml","serratiochelin B"],["alkaloids/serratiochelin-c.yaml","serratiochelin C"],["carbohydrates/kanamycin-a.yaml","kanamycin A"],["carbohydrates/tobramycin.yaml","tobramycin"],["fatty_acids/zeamine-i.yaml","zeamine I"]],"b":[["NCBITaxon%3A82996","Serratia plymuthica"],["NCBITaxon%3A682634","Serratia plymuthica 4Rx13"],["NCBITaxon%3A1206776","Serratia plymuthica A30"],["NCBITaxon%3A768492","Serratia plymuthica AS9"],["NCBITaxon%3A1218095","Serratia plymuthica NBRC 102599"],["NCBITaxon%3A1006598","Serratia plymuthica RVH1"]]},{"id":"NCBITaxon:272131","l":"Nostoc punctiforme","na":7,"nb":94,"a":[["amino_acids_and_peptides/microviridin-n3.yaml","microviridin N3"],["amino_acids_and_peptides/microviridin-n4.yaml","microviridin N4"],["amino_acids_and_peptides/microviridin-n6.yaml","microviridin N6"],["amino_acids_and_peptides/microviridin-n7.yaml","microviridin N7"],["amino_acids_and_peptides/microviridin-n8.yaml","microviridin N8"],["amino_acids_and_peptides/microviridin-n9.yaml","microviridin N9"]],"b":[["NCBITaxon%3A515295","Nostoc cf. punctiforme Bashkir"],["NCBITaxon%3A3420387","Nostoc cf. punctiforme ISB222"],["NCBITaxon%3A272131","Nostoc punctiforme"],["NCBITaxon%3A3144258","Nostoc punctiforme 2789"],["NCBITaxon%3A1050188","Nostoc punctiforme ACCS 074"],["NCBITaxon%3A1923819","Nostoc punctiforme ACSSI 037"]]},{"id":"NCBITaxon:945780","l":"Synechocystis salina","na":7,"nb":19,"a":[["polyketides/bartoloside-e.yaml","bartoloside E"],["polyketides/bartoloside-f.yaml","bartoloside F"],["polyketides/bartoloside-g.yaml","bartoloside G"],["polyketides/bartoloside-h.yaml","bartoloside H"],["polyketides/bartoloside-i.yaml","bartoloside I"],["polyketides/bartoloside-j.yaml","bartoloside J"]],"b":[["NCBITaxon%3A945780","Synechocystis salina"],["NCBITaxon%3A2962648","Synechocystis salina BO22"],["NCBITaxon%3A1858735","Synechocystis salina CCALA 192"],["NCBITaxon%3A1472759","Synechocystis salina CCNP 1104"],["NCBITaxon%3A1146998","Synechocystis salina HelwanI"],["NCBITaxon%3A1828732","Synechocystis salina LEGE 00027"]]},{"id":"NCBITaxon:1890","l":"Streptomyces antibioticus","na":14,"nb":7,"a":[["alkaloids/esmeraldin.yaml","esmeraldin"],["alkaloids/pentostatin.yaml","pentostatin"],["amino_acids_and_peptides/2-2-hydroxyethyl-clavam.yaml","(-)-2-(2-hydroxyethyl)clavam"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["amino_acids_and_peptides/scabichelin.yaml","scabichelin"],["amino_acids_and_peptides/valclavam.yaml","valclavam"]],"b":[["NCBITaxon%3A67255","Streptomyces achromogenes"],["NCBITaxon%3A67256","Streptomyces achromogenes subsp. achromogenes"],["NCBITaxon%3A1890","Streptomyces antibioticus"],["NCBITaxon%3A1306178","Streptomyces antibioticus JCM 4620"],["NCBITaxon%3A2713664","Streptomyces antibioticus subsp. yamensis"],["NCBITaxon%3A67315","Streptomyces lavenduligriseus"]]},{"id":"NCBITaxon:67263","l":"Streptomyces griseus subsp. griseus","na":7,"nb":14,"a":[["alkaloids/indolmycin.yaml","indolmycin"],["polyketides/chromomycin-a3.yaml","chromomycin A3"],["polyketides/dinactin.yaml","dinactin"],["polyketides/monactin.yaml","monactin"],["polyketides/nonactin.yaml","nonactin"],["polyketides/tetranactin.yaml","tetranactin"]],"b":[["NCBITaxon%3A132249","Nocardia veterana"],["NCBITaxon%3A1884","Streptomyces acrimycini"],["NCBITaxon%3A67274","Streptomyces argenteolus"],["NCBITaxon%3A66872","Streptomyces baarnensis"],["NCBITaxon%3A1896","Streptomyces bikiniensis"],["NCBITaxon%3A90079","Streptomyces caviscabies"]]},{"id":"NCBITaxon:1464","l":"Paenibacillus larvae","na":8,"nb":7,"a":[["alkaloids/paenilamicin-a2.yaml","paenilamicin A2"],["alkaloids/paenilamicin-b1.yaml","paenilamicin B1"],["alkaloids/paenilamicin-b2.yaml","paenilamicin B2"],["alkaloids/paenilamicin.yaml","paenilamicin"],["amino_acids_and_peptides/paenilarvin-a.yaml","paenilarvin A"],["amino_acids_and_peptides/paenilarvin-b.yaml","paenilarvin B"]],"b":[["NCBITaxon%3A1464","Paenibacillus larvae"],["NCBITaxon%3A147375","Paenibacillus larvae subsp. larvae"],["NCBITaxon%3A741161","Paenibacillus larvae subsp. larvae B-3650"],["NCBITaxon%3A392917","Paenibacillus larvae subsp. larvae BRL-230010"],["NCBITaxon%3A697284","Paenibacillus larvae subsp. larvae DSM 25430"],["NCBITaxon%3A697286","Paenibacillus larvae subsp. larvae DSM 25719"]]},{"id":"NCBITaxon:1908","l":"Streptomyces globisporus","na":8,"nb":7,"a":[["polyketides/c-1027-chromophore.yaml","C-1027 chromophore"],["polyketides/c-1027.yaml","C-1027"],["polyketides/landomycin-a.yaml","landomycin A"],["polyketides/nonactin.yaml","nonactin"],["polyketides/prejadomycin.yaml","prejadomycin"],["polyketides/tetranactin.yaml","tetranactin"]],"b":[["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A332582","Streptomyces flavofuscus"],["NCBITaxon%3A1908","Streptomyces globisporus"],["NCBITaxon%3A1172567","Streptomyces globisporus C-1027"],["NCBITaxon%3A66858","Streptomyces globisporus subsp. globisporus"],["NCBITaxon%3A1522106","Streptomyces globisporus subsp. griseus"]]},{"id":"NCBITaxon:32008","l":"Burkholderia","na":6,"nb":7299,"a":[["polyketides/necroxime-a.yaml","necroxime A"],["polyketides/necroxime-c.yaml","necroxime C"],["polyketides/necroxime-d.yaml","necroxime D"],["polyketides/thailanstatin-a.yaml","thailanstatin A"],["unclassified/necroxime-b.yaml","necroxime B"],["unclassified/spliceostatin.yaml","spliceostatin"]],"b":[["NCBITaxon%3A2015348","Burkholderia aenigmatica"],["NCBITaxon%3A2683677","Burkholderia alba"],["NCBITaxon%3A152480","Burkholderia ambifaria"],["NCBITaxon%3A339670","Burkholderia ambifaria AMMD"],["NCBITaxon%3A396596","Burkholderia ambifaria IOP40-10"],["NCBITaxon%3A398577","Burkholderia ambifaria MC40-6"]]},{"id":"NCBITaxon:1269","l":"Micrococcus","na":6,"nb":1469,"a":[["alkaloids/limazepine-a.yaml","limazepine A"],["alkaloids/limazepine-c.yaml","limazepine C"],["alkaloids/limazepine-d.yaml","limazepine D"],["alkaloids/limazepine-e.yaml","limazepine E"],["alkaloids/limazepine-f.yaml","limazepine F"],["terpenoids/mk-8.yaml","MK-8"]],"b":[["NCBITaxon%3A1871615","Dermacoccus sp."],["NCBITaxon%3A1275","Kocuria rosea"],["NCBITaxon%3A29377","Micrococcus aerogenes"],["NCBITaxon%3A306270","Micrococcus alkanovora"],["NCBITaxon%3A1391911","Micrococcus aloeverae"],["NCBITaxon%3A86171","Micrococcus antarcticus"]]},{"id":"NCBITaxon:5543","l":"Trichoderma","na":6,"nb":169,"a":[["polyketides/bisorbicillinol.yaml","bisorbicillinol"],["polyketides/oxosorbicillinol.yaml","oxosorbicillinol"],["polyketides/sorbicillin.yaml","sorbicillin"],["polyketides/sorbicillinol.yaml","sorbicillinol"],["unclassified/5-epimacrophorin-b.yaml","5'-epimacrophorin B"],["unclassified/gliovirin.yaml","gliovirin"]],"b":[["NCBITaxon%3A1195187","Trichoderma aethiopicum"],["NCBITaxon%3A1571655","Trichoderma afarasin"],["NCBITaxon%3A1567482","Trichoderma afroharzianum"],["NCBITaxon%3A173216","Trichoderma aggressivum"],["NCBITaxon%3A1303768","Trichoderma albofulvum"],["NCBITaxon%3A1490975","Trichoderma alcalifuscescens"]]},{"id":"NCBITaxon:56","l":"Sorangium cellulosum","na":25,"nb":6,"a":[["amino_acids_and_peptides/microsclerodermin-m.yaml","microsclerodermin M"],["polyketides/ambruticin.yaml","ambruticin"],["polyketides/chivosazol.yaml","chivosazol"],["polyketides/chlorotonil-a.yaml","chlorotonil A"],["polyketides/disorazol-a.yaml","disorazol A"],["polyketides/etnangien.yaml","etnangien"]],"b":[["NCBITaxon%3A2093422","Sorangium ambruticinum"],["NCBITaxon%3A2093423","Sorangium bulgaricum"],["NCBITaxon%3A56","Sorangium cellulosum"],["NCBITaxon%3A1254432","Sorangium cellulosum So0157-2"],["NCBITaxon%3A448385","Sorangium cellulosum So ce56"],["NCBITaxon%3A2093377","Sorangium sp."]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":14,"nb":6,"a":[["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/framycetin.yaml","framycetin"],["carbohydrates/neomycin-c.yaml","neomycin C"],["carbohydrates/paromomycin.yaml","paromomycin"]],"b":[["NCBITaxon%3A1906","Streptomyces fradiae"],["NCBITaxon%3A1319510","Streptomyces fradiae ATCC 10745 = DSM 40063"],["NCBITaxon%3A285449","Streptomyces fradiae subsp. acinicolor"],["NCBITaxon%3A2871172","Streptomyces fradiae V-1-3"],["NCBITaxon%3A66894","Streptomyces griseobrunneus"],["NCBITaxon%3A1909","Streptomyces griseolus"]]},{"id":"NCBITaxon:40576","l":"Xenorhabdus bovienii","na":6,"nb":13,"a":[["alkaloids/3-2-acetoxy-3-oxo-4-methylhexyl-indole.yaml","3-(2'-acetoxy-3'-oxo-4'-methylhexyl)-indole"],["alkaloids/3-2-acetoxy-3-oxo-4-methylpentyl-indole.yaml","3-(2'-acetoxy-3'-oxo-4'-methylpentyl)-indole"],["alkaloids/3-2-hydroxy-3-oxo-4-methylhexyl-indole.yaml","3-(2'-hydroxy-3'-oxo-4'-methylhexyl)-indole"],["alkaloids/3-2-hydroxy-3-oxo-4-methylpentyl-indole.yaml","3-(2'-hydroxy-3'-oxo-4'-methylpentyl)-indole"],["amino_acids_and_peptides/leupeptin-a.yaml","leupeptin A"],["fatty_acids/bovienimide-a.yaml","bovienimide A"]],"b":[["NCBITaxon%3A40576","Xenorhabdus bovienii"],["NCBITaxon%3A406818","Xenorhabdus bovienii SS-2004"],["NCBITaxon%3A1397852","Xenorhabdus bovienii str. feltiae Florida"],["NCBITaxon%3A1397851","Xenorhabdus bovienii str. feltiae France"],["NCBITaxon%3A1398200","Xenorhabdus bovienii str. feltiae Moldova"],["NCBITaxon%3A1379677","Xenorhabdus bovienii str. Intermedium"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":11,"nb":6,"a":[["amino_acids_and_peptides/ferrichrome.yaml","ferrichrome"],["polyketides/1-2-3-5-10-tetrahydroxy-7-methoxy-4-oxo-1-2-3-4-tetrahydroanthracen-2-yl-pentane.yaml","1-(2,3,5,10-tetrahydroxy-7-methoxy-4-oxo-1,2,3,4-tetrahydroanthracen-2-yl)pentane-2,4-dione"],["polyketides/azanigerone-a.yaml","azanigerone A"],["polyketides/campyrone-b.yaml","campyrone B"],["polyketides/desmethyl-tan-1612.yaml","desmethyl TAN-1612"],["polyketides/fumonisin-b2.yaml","fumonisin B2"]],"b":[["NCBITaxon%3A547018","Zhihengliuella alba"],["NCBITaxon%3A5061","Aspergillus niger"],["NCBITaxon%3A380704","Aspergillus niger ATCC 1015"],["NCBITaxon%3A1353008","Aspergillus niger ATCC 13496"],["NCBITaxon%3A1450533","Aspergillus niger CBS 101883"],["NCBITaxon%3A425011","Aspergillus niger CBS 513.88"]]},{"id":"NCBITaxon:1930","l":"Streptomyces scabiei","na":6,"nb":9,"a":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"],["amino_acids_and_peptides/thaxtomin-c.yaml","thaxtomin C"],["polyketides/oronofacic-acid.yaml","oronofacic acid"],["unclassified/n-coronafacoyl-l-isoleucine.yaml","N-coronafacoyl-L-isoleucine"],["unclassified/thaxtomin-a.yaml","thaxtomin A"],["unclassified/thaxtomin-b.yaml","thaxtomin B"]],"b":[["NCBITaxon%3A2993540","Streptomyces griseiscabiei"],["NCBITaxon%3A1930","Streptomyces scabiei"],["NCBITaxon%3A680198","Streptomyces scabiei 87.22"],["NCBITaxon%3A175280","Streptomyces scabiei subsp. chosun"],["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A74595","Streptomyces sp. ATCC 10246"]]},{"id":"NCBITaxon:1927","l":"Streptomyces rimosus","na":6,"nb":8,"a":[["amino_acids_and_peptides/cyclothiazomycin-c.yaml","cyclothiazomycin C"],["carbohydrates/framycetin.yaml","framycetin"],["carbohydrates/sangivamycin.yaml","sangivamycin"],["carbohydrates/toyocamycin.yaml","toyocamycin"],["polyketides/oxytetracycline.yaml","oxytetracycline"],["polyketides/rimocidin.yaml","rimocidin"]],"b":[["NCBITaxon%3A1906","Streptomyces fradiae"],["NCBITaxon%3A92743","Streptomyces paromomycinus"],["NCBITaxon%3A1927","Streptomyces rimosus"],["NCBITaxon%3A1421017","Streptomyces rimosus R6-500"],["NCBITaxon%3A1464079","Streptomyces rimosus subsp. pseudoverticillatus"],["NCBITaxon%3A132474","Streptomyces rimosus subsp. rimosus"]]},{"id":"NCBITaxon:1971","l":"Streptomyces noursei","na":8,"nb":6,"a":[["amino_acids_and_peptides/curacomycin.yaml","curacomycin"],["amino_acids_and_peptides/dechlorocuracomycin.yaml","dechlorocuracomycin"],["amino_acids_and_peptides/deimino-antipain.yaml","deimino-antipain"],["carbohydrates/streptothricin-f.yaml","streptothricin F"],["polyketides/nystatin-a1.yaml","nystatin A1"],["polyketides/nystatin.yaml","nystatin"]],"b":[["NCBITaxon%3A1971","Streptomyces noursei"],["NCBITaxon%3A316284","Streptomyces noursei ATCC 11455"],["NCBITaxon%3A1316445","Streptomyces noursei CCRC 11814"],["NCBITaxon%3A1395573","Streptomyces noursei KC-01"],["NCBITaxon%3A1395572","Streptomyces noursei PD-1"],["NCBITaxon%3A1434306","Streptomyces noursei ZPM"]]},{"id":"NCBITaxon:68280","l":"Streptomyces violaceusniger","na":7,"nb":6,"a":[["fatty_acids/desulfoclethramycin.yaml","desulfoclethramycin"],["polyketides/be-24566b.yaml","BE-24566B"],["polyketides/elaiophylin.yaml","elaiophylin"],["polyketides/meridamycin-2.yaml","meridamycin"],["polyketides/nigericin.yaml","nigericin"],["terpenoids/2-methylisoborneol.yaml","2-methylisoborneol"]],"b":[["NCBITaxon%3A1912","Streptomyces hygroscopicus"],["NCBITaxon%3A68042","Streptomyces hygroscopicus subsp. hygroscopicus"],["NCBITaxon%3A33900","Streptomyces murinus"],["NCBITaxon%3A114686","Streptomyces phaeoluteigriseus"],["NCBITaxon%3A68280","Streptomyces violaceusniger"],["NCBITaxon%3A653045","Streptomyces violaceusniger Tu 4113"]]},{"id":"NCBITaxon:37326","l":"Nocardia brasiliensis","na":6,"nb":6,"a":[["polyketides/brasilinolide-a.yaml","brasilinolide A"],["polyketides/brasilinolide-b.yaml","brasilinolide B"],["polyketides/brasilinolide-c.yaml","brasilinolide C"],["polyketides/brasiliquinone-a.yaml","brasiliquinone A"],["polyketides/brasiliquinone-b.yaml","brasiliquinone B"],["terpenoids/brasilicardin-a.yaml","brasilicardin A"]],"b":[["NCBITaxon%3A1824","Nocardia asteroides"],["NCBITaxon%3A37326","Nocardia brasiliensis"],["NCBITaxon%3A1133849","Nocardia brasiliensis ATCC 700358"],["NCBITaxon%3A1406859","Nocardia brasiliensis IFM 10847"],["NCBITaxon%3A1206724","Nocardia brasiliensis NBRC 14402"],["NCBITaxon%3A37328","Nocardia carnea"]]},{"id":"NCBITaxon:662","l":"Vibrio","na":5,"nb":15041,"a":[["alkaloids/anguibactin.yaml","anguibactin"],["amino_acids_and_peptides/divanchrobactin.yaml","divanchrobactin"],["amino_acids_and_peptides/trivanchrobactin.yaml","trivanchrobactin"],["amino_acids_and_peptides/vanchrobactin.yaml","vanchrobactin"],["polyketides/amphi-enterobactin-1.yaml","Amphi-enterobactin 1"]],"b":[["NCBITaxon%3A246572","marine bacterium 13732"],["NCBITaxon%3A194693","marine bacterium SIMO IS-S75-245"],["NCBITaxon%3A127962","uncultured Vibrio kps60rc"],["NCBITaxon%3A114054","uncultured Vibrio sp."],["NCBITaxon%3A89371","uncultured Vibrio sp. 'Artemia'"],["NCBITaxon%3A141882","uncultured Vibrio sp. HD-2000/12"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":5,"nb":4740,"a":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"],["unclassified/leuvalin.yaml","leuvalin"],["unclassified/phevalin.yaml","phevalin"],["unclassified/tyrvalin.yaml","tyrvalin"]],"b":[["NCBITaxon%3A475088","Methanosphaerula palustris"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1389955","Escherichia coli ATCC 35150"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A574","Klebsiella pneumoniae subsp. ozaenae"],["NCBITaxon%3A1218098","Klebsiella pneumoniae subsp. ozaenae NBRC 105683"]]},{"id":"NCBITaxon:1175","l":"Aphanizomenon","na":5,"nb":363,"a":[["alkaloids/7-epi-cylindrospermopsin.yaml","7-epi-cylindrospermopsin"],["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"],["alkaloids/neosaxitoxin.yaml","neosaxitoxin"],["alkaloids/saxitoxin.yaml","saxitoxin"],["fatty_acids/1-heptadecene.yaml","1-heptadecene"]],"b":[["NCBITaxon%3A173580","Aphanizomenon baltica"],["NCBITaxon%3A136083","Aphanizomenon cf. flos-aquae PMC9501"],["NCBITaxon%3A136082","Aphanizomenon cf. gracile 271"],["NCBITaxon%3A1176","Aphanizomenon flos-aquae"],["NCBITaxon%3A358550","Aphanizomenon flos-aquae 0HA35S1"],["NCBITaxon%3A489144","Aphanizomenon flos-aquae 1042"]]},{"id":"NCBITaxon:1176","l":"Aphanizomenon flos-aquae","na":5,"nb":141,"a":[["alkaloids/anatoxin-a.yaml","anatoxin-a"],["alkaloids/guanitoxin.yaml","guanitoxin"],["alkaloids/neosaxitoxin.yaml","neosaxitoxin"],["alkaloids/saxitoxin.yaml","saxitoxin"],["amino_acids_and_peptides/microcystin-lr.yaml","microcystin-LR"]],"b":[["NCBITaxon%3A136083","Aphanizomenon cf. flos-aquae PMC9501"],["NCBITaxon%3A1176","Aphanizomenon flos-aquae"],["NCBITaxon%3A358550","Aphanizomenon flos-aquae 0HA35S1"],["NCBITaxon%3A489144","Aphanizomenon flos-aquae 1042"],["NCBITaxon%3A645888","Aphanizomenon flos-aquae 1473"],["NCBITaxon%3A645889","Aphanizomenon flos-aquae 1474"]]},{"id":"NCBITaxon:168697","l":"Salinispora arenicola","na":5,"nb":66,"a":[["amino_acids_and_peptides/cyclomarin-d.yaml","cyclomarin D"],["polyketides/arenimycin-a.yaml","arenimycin A"],["polyketides/rifamycin-sv.yaml","rifamycin SV"],["unclassified/emericellamide-a.yaml","emericellamide A"],["unclassified/emericellamide-b.yaml","emericellamide B"]],"b":[["NCBITaxon%3A168697","Salinispora arenicola"],["NCBITaxon%3A391967","Salinispora arenicola ATCC BAA-917"],["NCBITaxon%3A1136425","Salinispora arenicola CNB458"],["NCBITaxon%3A1137250","Salinispora arenicola CNB527"],["NCBITaxon%3A1136427","Salinispora arenicola CNH646"],["NCBITaxon%3A1408327","Salinispora arenicola CNH713"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":5,"nb":53,"a":[["alkaloids/promysalin.yaml","promysalin"],["polyketides/pseudopyronine-a.yaml","pseudopyronine A"],["polyketides/pseudopyronine-b.yaml","pseudopyronine B"],["unclassified/putisolvin-iii.yaml","putisolvin III"],["unclassified/putisolvin-v.yaml","putisolvin V"]],"b":[["NCBITaxon%3A47920","Acidovorax delafieldii"],["NCBITaxon%3A301","Ectopseudomonas oleovorans"],["NCBITaxon%3A29581","Janthinobacterium lividum"],["NCBITaxon%3A294","Pseudomonas fluorescens"],["NCBITaxon%3A77298","Pseudomonas jessenii"],["NCBITaxon%3A1968891","Pseudomonas jessenii subsp. pseudoputida"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":32,"a":[["alkaloids/prodigiosin-2.yaml","prodigiosin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/serratiochelin-a.yaml","serratiochelin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["polyketides/oocydin-a.yaml","oocydin A"]],"b":[["NCBITaxon%3A2703793","Serratia bockelmannii"],["NCBITaxon%3A615","Serratia marcescens"],["NCBITaxon%3A1257036","Serratia marcescens 12"],["NCBITaxon%3A1255611","Serratia marcescens 448"],["NCBITaxon%3A1333586","Serratia marcescens AB42556419-isolate1"],["NCBITaxon%3A1400186","Serratia marcescens BIDMC 44"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":31,"nb":5,"a":[["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["alkaloids/myxofacycline-e.yaml","myxofacycline E"],["alkaloids/myxofacycline-f.yaml","myxofacycline F"],["alkaloids/myxofacycline-g.yaml","myxofacycline G"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"]],"b":[["NCBITaxon%3A34","Myxococcus xanthus"],["NCBITaxon%3A246197","Myxococcus xanthus DK 1622"],["NCBITaxon%3A1198133","Myxococcus xanthus DZ2"],["NCBITaxon%3A1198538","Myxococcus xanthus DZF1"],["NCBITaxon%3A675543","Myxococcus xanthus NewJersey2"]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":5,"nb":31,"a":[["alkaloids/9-deoxy-tilivalline.yaml","9-deoxy tilivalline"],["alkaloids/dehydro-tilivalline.yaml","dehydro tilivalline"],["alkaloids/dihydroxy-dehydro-tilivalline.yaml","dihydroxy-dehydro tilivalline"],["alkaloids/dihydroxy-tilivalline.yaml","dihydroxy tilivalline"],["alkaloids/tilivalline.yaml","tilivalline"]],"b":[["NCBITaxon%3A571","Klebsiella oxytoca"],["NCBITaxon%3A883116","Klebsiella oxytoca 09-7231"],["NCBITaxon%3A883117","Klebsiella oxytoca 10-5242"],["NCBITaxon%3A883118","Klebsiella oxytoca 10-5243"],["NCBITaxon%3A883119","Klebsiella oxytoca 10-5244"],["NCBITaxon%3A883120","Klebsiella oxytoca 10-5245"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":5,"nb":22,"a":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/andrimid.yaml","andrimid"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/pantocin-a.yaml","pantocin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]],"b":[["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A221276","[Curtobacterium] plantarum"],["NCBITaxon%3A558","Erwinia sp."],["NCBITaxon%3A83655","Leclercia adecarboxylata"],["NCBITaxon%3A549","Pantoea agglomerans"],["NCBITaxon%3A1261128","Pantoea agglomerans 299R"]]},{"id":"NCBITaxon:1916","l":"Streptomyces lividans","na":18,"nb":5,"a":[["alkaloids/rebeccamycin.yaml","rebeccamycin"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["amino_acids_and_peptides/dehydroxynocardamine.yaml","dehydroxynocardamine"],["amino_acids_and_peptides/goadsporin.yaml","goadsporin"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"]],"b":[["NCBITaxon%3A1894","Kitasatospora aureofaciens"],["NCBITaxon%3A1916","Streptomyces lividans"],["NCBITaxon%3A1200984","Streptomyces lividans 1326"],["NCBITaxon%3A457428","Streptomyces lividans TK24"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:47","l":"Archangium","na":5,"nb":17,"a":[["alkaloids/myxochelin-n.yaml","myxochelin N"],["alkaloids/myxochelin-o.yaml","myxochelin O"],["amino_acids_and_peptides/tubulysin-c.yaml","tubulysin C"],["polyketides/gephyronic-acid.yaml","gephyronic acid"],["unclassified/vioprolide-a.yaml","vioprolide A"]],"b":[["NCBITaxon%3A38","Archangium disciforme"],["NCBITaxon%3A48","Archangium gephyra"],["NCBITaxon%3A2995310","Archangium lansingense"],["NCBITaxon%3A2970465","Archangium lipolyticum"],["NCBITaxon%3A83450","Archangium minus"],["NCBITaxon%3A1872627","Archangium sp."]]},{"id":"NCBITaxon:168695","l":"Salinispora tropica","na":5,"nb":13,"a":[["alkaloids/lymphostin.yaml","lymphostin"],["amino_acids_and_peptides/salinosporamide-a.yaml","salinosporamide A"],["polyketides/lomaiviticin-a.yaml","lomaiviticin A"],["polyketides/sporolide-b.yaml","sporolide B"],["unclassified/salinilactam.yaml","salinilactam"]],"b":[["NCBITaxon%3A168695","Salinispora tropica"],["NCBITaxon%3A1137247","Salinispora tropica CNB476"],["NCBITaxon%3A1136431","Salinispora tropica CNB536"],["NCBITaxon%3A369723","Salinispora tropica CNB-440"],["NCBITaxon%3A1137248","Salinispora tropica CNH898"],["NCBITaxon%3A1169198","Salinispora tropica CNR699"]]},{"id":"NCBITaxon:2893586","l":"Actinoalloteichus cyanogriseus","na":8,"nb":5,"a":[["alkaloids/caerulomycin-a.yaml","caerulomycin A"],["alkaloids/cyanogramide-b.yaml","cyanogramide B"],["alkaloids/cyanogramide-c.yaml","cyanogramide C"],["alkaloids/cyanogramide-d.yaml","cyanogramide D"],["alkaloids/phenaziterpene-a.yaml","phenaziterpene A"],["carbohydrates/kanamycin-a.yaml","kanamycin A"]],"b":[["NCBITaxon%3A2893586","Actinoalloteichus caeruleus"],["NCBITaxon%3A1120930","Actinoalloteichus caeruleus DSM 43889"],["NCBITaxon%3A33921","Saccharothrix mutabilis"],["NCBITaxon%3A66854","Saccharothrix mutabilis subsp. capreolus"],["NCBITaxon%3A193462","Streptomyces niveus"]]},{"id":"NCBITaxon:42684","l":"Streptomyces collinus","na":8,"nb":5,"a":[["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/ectoine.yaml","ectoine"],["polyketides/naphthomycin-a.yaml","naphthomycin A"],["shikimates_and_phenylpropanoids/collinomycin.yaml","collinomycin"],["terpenoids/2-methylisoborneol.yaml","2-methylisoborneol"],["terpenoids/isorenieratene.yaml","isorenieratene"]],"b":[["NCBITaxon%3A42684","Streptomyces collinus"],["NCBITaxon%3A285445","Streptomyces collinus subsp. albescens"],["NCBITaxon%3A1214242","Streptomyces collinus Tu 365"],["NCBITaxon%3A1911","Streptomyces griseus"],["NCBITaxon%3A67263","Streptomyces griseus subsp. griseus"]]},{"id":"NCBITaxon:1892","l":"Streptomyces anulatus","na":7,"nb":5,"a":[["alkaloids/endophenazine-a.yaml","endophenazine A"],["alkaloids/endophenazine-b.yaml","endophenazine B"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["amino_acids_and_peptides/ectoine.yaml","ectoine"],["terpenoids/raimonol.yaml","raimonol"],["unclassified/telomestatin.yaml","telomestatin"]],"b":[["NCBITaxon%3A285560","Kitasatospora cinereorecta"],["NCBITaxon%3A1892","Streptomyces anulatus"],["NCBITaxon%3A285559","Streptomyces chrysomallus subsp. fumigatus"],["NCBITaxon%3A67343","Streptomyces praecox"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:66424","l":"Streptomyces hiroshimensis","na":5,"nb":7,"a":[["alkaloids/fervenulin.yaml","fervenulin"],["alkaloids/jawsamycin.yaml","jawsamycin"],["alkaloids/toxoflavin.yaml","toxoflavin"],["alkaloids/undecylprodigiosin-2.yaml","undecylprodigiosin"],["alkaloids/undecylprodigiosin.yaml","undecylprodigiosin"]],"b":[["NCBITaxon%3A67277","Streptomyces aureoversilis"],["NCBITaxon%3A66424","Streptomyces hiroshimensis"],["NCBITaxon%3A173860","Streptomyces rectiverticillatus"],["NCBITaxon%3A66429","Streptomyces roseoverticillatus"],["NCBITaxon%3A173832","Streptomyces roseoverticillatus subsp. melrosporus"],["NCBITaxon%3A97400","Streptomyces salmonis"]]},{"id":"NCBITaxon:47853","l":"Micromonospora carbonacea","na":6,"nb":5,"a":[["carbohydrates/everninomicin-a.yaml","everninomicin A"],["carbohydrates/everninomicin-d.yaml","everninomicin D"],["carbohydrates/everninomicin-e.yaml","everninomicin E"],["carbohydrates/everninomicin-f.yaml","everninomicin F"],["carbohydrates/everninomicin-g.yaml","everninomicin G"],["polyketides/rosaramicin.yaml","rosaramicin"]],"b":[["NCBITaxon%3A47853","Micromonospora carbonacea"],["NCBITaxon%3A3454472","Micromonospora carbonacea subsp. aurantiaca"],["NCBITaxon%3A3454602","Micromonospora carbonacea subsp. caeruleus"],["NCBITaxon%3A3454473","Micromonospora carbonacea subsp. carbonacea"],["NCBITaxon%3A1877","Micromonospora echinospora"]]},{"id":"NCBITaxon:1465","l":"Brevibacillus laterosporus","na":5,"nb":5,"a":[["amino_acids_and_peptides/bogorol-a.yaml","bogorol A"],["amino_acids_and_peptides/tauramamide.yaml","tauramamide"],["shikimates_and_phenylpropanoids/basiliskamide-a.yaml","Basiliskamide A"],["unclassified/basiliskamide-b.yaml","Basiliskamide B"],["unclassified/laterocidine.yaml","laterocidine"]],"b":[["NCBITaxon%3A1465","Brevibacillus laterosporus"],["NCBITaxon%3A1121121","Brevibacillus laterosporus DSM 25"],["NCBITaxon%3A1118154","Brevibacillus laterosporus GI-9"],["NCBITaxon%3A1042163","Brevibacillus laterosporus LMG 15441"],["NCBITaxon%3A1399144","Brevibacillus laterosporus PE36"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":5,"nb":5,"a":[["alkaloids/aminochelin.yaml","aminochelin"],["alkaloids/azotochelin.yaml","azotochelin"],["alkaloids/protochelin.yaml","protochelin"],["amino_acids_and_peptides/azotobactin-d.yaml","azotobactin D"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]],"b":[["NCBITaxon%3A354","Azotobacter vinelandii"],["NCBITaxon%3A1283330","Azotobacter vinelandii CA"],["NCBITaxon%3A1283331","Azotobacter vinelandii CA6"],["NCBITaxon%3A322710","Azotobacter vinelandii DJ"],["NCBITaxon%3A1314750","Azotobacter vinelandii NBRC 13581"]]},{"id":"NCBITaxon:69781","l":"Penicillium oxalicum","na":5,"nb":5,"a":[["alkaloids/meleagrine.yaml","meleagrine"],["polyketides/endocrocin.yaml","endocrocin"],["polyketides/secalonic-acid-c.yaml","Secalonic acid C"],["unclassified/atpenin-b.yaml","atpenin B"],["unclassified/roquefortine-c.yaml","roquefortine C"]],"b":[["NCBITaxon%3A69781","Penicillium oxalicum"],["NCBITaxon%3A933388","Penicillium oxalicum 114-2"],["NCBITaxon%3A936450","Penicillium oxalicum JU-A10-S"],["NCBITaxon%3A933390","Penicillium oxalicum JU-A10-T"],["NCBITaxon%3A858480","Penicillium oxalicum YT02"]]},{"id":"NCBITaxon:2745","l":"Halomonas","na":4,"nb":3499,"a":[["amino_acids_and_peptides/potashchelin-a.yaml","potashchelin A"],["amino_acids_and_peptides/potashchelin-b.yaml","potashchelin B"],["amino_acids_and_peptides/potashchelin-c.yaml","potashchelin C"],["amino_acids_and_peptides/potashchelin-d.yaml","potashchelin D"]],"b":[["NCBITaxon%3A1107859","Candidatus Halomonas phosphatis"],["NCBITaxon%3A2838617","Candidatus Halomonas stercoripullorum"],["NCBITaxon%3A1897729","Halomonas aestuarii"],["NCBITaxon%3A659123","Halomonas aidingensis"],["NCBITaxon%3A147248","Halomonas alimentaria"],["NCBITaxon%3A1930622","Halomonas alkalicola"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":4,"nb":422,"a":[["alkaloids/tilivalline.yaml","tilivalline"],["amino_acids_and_peptides/colibactin.yaml","colibactin"],["amino_acids_and_peptides/klebsidin.yaml","klebsidin"],["carbohydrates/capsular-polysaccharide-2.yaml","capsular polysaccharide"]],"b":[["NCBITaxon%3A1653844","Erwinia carnegieana"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A2058152","Klebsiella grimontii"],["NCBITaxon%3A54291","Klebsiella ornithinolytica"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A1443592","Klebsiella pneumoniae 07A044"]]},{"id":"NCBITaxon:1158","l":"Oscillatoria","na":4,"nb":360,"a":[["alkaloids/7-epi-cylindrospermopsin.yaml","7-epi-cylindrospermopsin"],["alkaloids/anatoxin-a.yaml","anatoxin-a"],["polyketides/doxorubicin.yaml","doxorubicin"],["polyketides/nystatin-a1.yaml","nystatin A1"]],"b":[["NCBITaxon%3A1442623","Oscillatoria angusta"],["NCBITaxon%3A1442624","Oscillatoria angusta ISB143"],["NCBITaxon%3A1499404","Oscillatoria angusta ISB35"],["NCBITaxon%3A1499405","Oscillatoria angusta ISB38"],["NCBITaxon%3A1499111","Oscillatoria angusta ISB40"],["NCBITaxon%3A1125738","Oscillatoria bonnemaisonii"]]},{"id":"NCBITaxon:77021","l":"Cylindrospermopsis","na":4,"nb":330,"a":[["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"],["alkaloids/gonyautoxin-2.yaml","gonyautoxin 2"],["alkaloids/neosaxitoxin.yaml","neosaxitoxin"],["alkaloids/saxitoxin.yaml","saxitoxin"]],"b":[["NCBITaxon%3A244597","Cylindrospermopsis africana"],["NCBITaxon%3A1857855","Cylindrospermopsis africana CHAB1394"],["NCBITaxon%3A1857856","Cylindrospermopsis africana CHAB3411"],["NCBITaxon%3A1857857","Cylindrospermopsis africana CHAB353"],["NCBITaxon%3A1857858","Cylindrospermopsis africana CHAB355"],["NCBITaxon%3A1857859","Cylindrospermopsis africana CHAB359"]]},{"id":"NCBITaxon:667113","l":"Actinoallomurus","na":4,"nb":229,"a":[["polyketides/allocyclinone-a.yaml","allocyclinone A"],["polyketides/allocyclinone-b.yaml","allocyclinone B"],["polyketides/allocyclinone-c.yaml","allocyclinone C"],["polyketides/allocyclinone-d.yaml","allocyclinone D"]],"b":[["NCBITaxon%3A502577","Actinoallomurus acaciae"],["NCBITaxon%3A1136071","Actinoallomurus acanthiterrae"],["NCBITaxon%3A478109","Actinoallomurus amamiensis"],["NCBITaxon%3A1490222","Actinoallomurus bryophytorum"],["NCBITaxon%3A478115","Actinoallomurus caesius"],["NCBITaxon%3A478106","Actinoallomurus coprocola"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":4,"nb":168,"a":[["alkaloids/zwittermicin-a.yaml","zwittermicin A"],["amino_acids_and_peptides/livipeptin.yaml","Livipeptin"],["carbohydrates/tunicamycin.yaml","tunicamycin"],["unclassified/cereulide.yaml","cereulide"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A572264","Bacillus cereus 03BB102"],["NCBITaxon%3A451709","Bacillus cereus 03BB108"],["NCBITaxon%3A526967","Bacillus cereus 172560W"],["NCBITaxon%3A363751","Bacillus cereus 31673"],["NCBITaxon%3A526979","Bacillus cereus 95/8201"]]},{"id":"NCBITaxon:752201","l":"Sphaerospermopsis","na":4,"nb":136,"a":[["fatty_acids/chlorosphaerolactylate-a.yaml","chlorosphaerolactylate A"],["fatty_acids/chlorosphaerolactylate-b.yaml","chlorosphaerolactylate B"],["fatty_acids/chlorosphaerolactylate-c.yaml","chlorosphaerolactylate C"],["fatty_acids/chlorosphaerolactylate-d.yaml","chlorosphaerolactylate D"]],"b":[["NCBITaxon%3A459663","Sphaerospermopsis aphanizomenoides"],["NCBITaxon%3A531303","Sphaerospermopsis aphanizomenoides 04-43"],["NCBITaxon%3A1137649","Sphaerospermopsis aphanizomenoides 09-03"],["NCBITaxon%3A543800","Sphaerospermopsis aphanizomenoides 1LT27S09"],["NCBITaxon%3A459672","Sphaerospermopsis aphanizomenoides 22C4.9"],["NCBITaxon%3A617115","Sphaerospermopsis aphanizomenoides 22F6.1"]]},{"id":"NCBITaxon:1179","l":"Desmonostoc muscorum","na":4,"nb":85,"a":[["amino_acids_and_peptides/muscoride-a.yaml","muscoride A"],["unclassified/desmamide-a.yaml","desmamide A"],["unclassified/desmamide-b.yaml","desmamide B"],["unclassified/desmamide-c.yaml","desmamide C"]],"b":[["NCBITaxon%3A1179","Desmonostoc muscorum"],["NCBITaxon%3A1887616","Desmonostoc muscorum 9a"],["NCBITaxon%3A2493151","Desmonostoc muscorum ACSSI 046"],["NCBITaxon%3A1977323","Desmonostoc muscorum ACSSI 091"],["NCBITaxon%3A1977325","Desmonostoc muscorum ACSSI 149"],["NCBITaxon%3A3735077","Desmonostoc muscorum AUR1017"]]},{"id":"NCBITaxon:414878","l":"Catenulispora","na":4,"nb":40,"a":[["polyketides/catenulisporolide-a.yaml","catenulisporolide A"],["polyketides/catenulisporolide-b.yaml","catenulisporolide B"],["polyketides/catenulisporolide-c.yaml","catenulisporolide C"],["polyketides/catenulisporolide-d.yaml","catenulisporolide D"]],"b":[["NCBITaxon%3A234199","bacterium Ellin5062"],["NCBITaxon%3A234202","bacterium Ellin5116"],["NCBITaxon%3A234203","bacterium Ellin5119"],["NCBITaxon%3A304895","Catenulispora acidiphila"],["NCBITaxon%3A479433","Catenulispora acidiphila DSM 44928"],["NCBITaxon%3A436228","Catenulispora cavernae"]]},{"id":"NCBITaxon:13373","l":"Burkholderia mallei","na":4,"nb":20,"a":[["alkaloids/malleobactin-b.yaml","malleobactin B"],["polyketides/malleilactone.yaml","malleilactone"],["unclassified/malleobactin-a.yaml","malleobactin A"],["unclassified/malleobactin-c.yaml","malleobactin C"]],"b":[["NCBITaxon%3A13373","Burkholderia mallei"],["NCBITaxon%3A1382516","Burkholderia mallei 2000031281"],["NCBITaxon%3A370895","Burkholderia mallei 2002721280"],["NCBITaxon%3A411920","Burkholderia mallei 721280"],["NCBITaxon%3A1382517","Burkholderia mallei A188"],["NCBITaxon%3A1382518","Burkholderia mallei A193"]]},{"id":"NCBITaxon:31958","l":"Amycolatopsis orientalis","na":4,"nb":13,"a":[["amino_acids_and_peptides/chloroeremomycin.yaml","chloroeremomycin"],["amino_acids_and_peptides/vancomycin.yaml","vancomycin"],["polyketides/eco-0501.yaml","ECO-0501"],["polyketides/quartromicin-a1.yaml","quartromicin A1"]],"b":[["NCBITaxon%3A346045","Amycolatopsis benzoatilytica"],["NCBITaxon%3A1089544","Amycolatopsis benzoatilytica AK 16/65"],["NCBITaxon%3A31959","Amycolatopsis lurida"],["NCBITaxon%3A1460371","Amycolatopsis lurida NRRL 2430"],["NCBITaxon%3A31958","Amycolatopsis orientalis"],["NCBITaxon%3A1125971","Amycolatopsis orientalis DSM 40040 = KCTC 9412"]]},{"id":"NCBITaxon:1393","l":"Brevibacillus brevis","na":4,"nb":12,"a":[["alkaloids/ulbactin-f.yaml","ulbactin F"],["alkaloids/ulbactin-g.yaml","ulbactin G"],["amino_acids_and_peptides/gramicidin.yaml","gramicidin"],["amino_acids_and_peptides/tyrocidine-a.yaml","tyrocidine A"]],"b":[["NCBITaxon%3A1391","Aneurinibacillus aneurinilyticus"],["NCBITaxon%3A267746","Aneurinibacillus danicus"],["NCBITaxon%3A47500","Aneurinibacillus migulanus"],["NCBITaxon%3A45462","Brevibacillus borstelensis"],["NCBITaxon%3A1393","Brevibacillus brevis"],["NCBITaxon%3A1129895","Brevibacillus brevis FJAT-0809-GLX"]]},{"id":"NCBITaxon:1397","l":"Niallia circulans","na":4,"nb":10,"a":[["carbohydrates/butirosin-a.yaml","butirosin A"],["carbohydrates/butirosin-b.yaml","butirosin B"],["carbohydrates/butirosin.yaml","butirosin"],["unclassified/pelgipeptin-b.yaml","Pelgipeptin B"]],"b":[["NCBITaxon%3A1393","Brevibacillus brevis"],["NCBITaxon%3A1397","Niallia circulans"],["NCBITaxon%3A1348626","Niallia circulans NBRC 13626"],["NCBITaxon%3A44160","Niallia circulans subsp. alkalophilus"],["NCBITaxon%3A74308","Niallia circulans subsp. circulans"],["NCBITaxon%3A59846","Paenibacillus chibensis"]]},{"id":"NCBITaxon:35619","l":"Streptomyces griseoflavus","na":10,"nb":4,"a":[["amino_acids_and_peptides/aborycin-2.yaml","aborycin"],["polyketides/gilvocarcin-v.yaml","gilvocarcin V"],["polyketides/resistomycin.yaml","resistomycin"],["unclassified/bicozamycin.yaml","bicozamycin"],["unclassified/hormaomycin-a1.yaml","hormaomycin A1"],["unclassified/hormaomycin-a2.yaml","hormaomycin A2"]],"b":[["NCBITaxon%3A35619","Streptomyces griseoflavus"],["NCBITaxon%3A285490","Streptomyces griseoflavus subsp. pyrindicus"],["NCBITaxon%3A467200","Streptomyces griseoflavus Tu4000"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:1036719","l":"Verticillium","na":4,"nb":7,"a":[["polyketides/ustilaginoidin-a.yaml","ustilaginoidin A"],["polyketides/ustilaginoidin-f.yaml","ustilaginoidin F"],["polyketides/ustilaginoidin-g.yaml","ustilaginoidin G"],["unclassified/ascochlorin.yaml","ascochlorin"]],"b":[["NCBITaxon%3A1051613","Verticillium alfalfae"],["NCBITaxon%3A526221","Verticillium alfalfae VaMs.102"],["NCBITaxon%3A27337","Verticillium dahliae"],["NCBITaxon%3A100787","Verticillium longisporum"],["NCBITaxon%3A1051616","Verticillium nonalfalfae"],["NCBITaxon%3A132580","Verticillium nubilum"]]},{"id":"NCBITaxon:33202","l":"Paecilomyces","na":4,"nb":7,"a":[["amino_acids_and_peptides/leucinostatin-a.yaml","leucinostatin A"],["polyketides/monocillin-iv.yaml","monocillin IV"],["polyketides/monocillin-vi.yaml","monocillin VI"],["polyketides/monocillin-vii.yaml","monocillin VII"]],"b":[["NCBITaxon%3A89137","Paecilomyces fulvus"],["NCBITaxon%3A40383","Paecilomyces sp."],["NCBITaxon%3A2940442","Paecilomyces sp. M2901"],["NCBITaxon%3A2940445","Paecilomyces sp. M2902"],["NCBITaxon%3A2940444","Paecilomyces sp. PK2413"],["NCBITaxon%3A2940443","Paecilomyces sp. PL2402"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":4,"nb":7,"a":[["unclassified/vacidobactin-a.yaml","vacidobactin A"],["unclassified/vacidobactin-b.yaml","vacidobactin B"],["unclassified/variobactin-a.yaml","variobactin A"],["unclassified/variobactin-b.yaml","variobactin B"]],"b":[["NCBITaxon%3A34073","Variovorax paradoxus"],["NCBITaxon%3A1150395","Variovorax paradoxus 4MFCol3.1"],["NCBITaxon%3A1246301","Variovorax paradoxus B4"],["NCBITaxon%3A595537","Variovorax paradoxus EPS"],["NCBITaxon%3A1321610","Variovorax paradoxus NBRC 15149"],["NCBITaxon%3A543728","Variovorax paradoxus S110"]]},{"id":"NCBITaxon:47760","l":"Streptomyces aurantiacus","na":6,"nb":4,"a":[["amino_acids_and_peptides/depsibosamycin-b.yaml","depsibosamycin B"],["amino_acids_and_peptides/depsibosamycin-c.yaml","depsibosamycin C"],["polyketides/resistomycin.yaml","resistomycin"],["polyketides/setomimycin.yaml","setomimycin"],["unclassified/aurantimycin-a.yaml","aurantimycin A"],["unclassified/depsibosamycin-d.yaml","depsibosamycin D"]],"b":[["NCBITaxon%3A58341","Streptomyces albosporeus"],["NCBITaxon%3A66867","Streptomyces albovinaceus"],["NCBITaxon%3A47760","Streptomyces aurantiacus"],["NCBITaxon%3A1286094","Streptomyces aurantiacus JA 4570"]]},{"id":"NCBITaxon:189691","l":"Paenibacillus elgii","na":4,"nb":5,"a":[["unclassified/pelgipeptin-a.yaml","Pelgipeptin A"],["unclassified/pelgipeptin-b.yaml","Pelgipeptin B"],["unclassified/pelgipeptin-c.yaml","Pelgipeptin C"],["unclassified/pelgipeptin-d.yaml","Pelgipeptin D"]],"b":[["NCBITaxon%3A189691","Paenibacillus elgii"],["NCBITaxon%3A1007103","Paenibacillus elgii B69"],["NCBITaxon%3A664734","Paenibacillus elgii C56-YS68"],["NCBITaxon%3A1349776","Paenibacillus elgii NBRC 100335"],["NCBITaxon%3A300028","Rhodococcus triatomae"]]},{"id":"NCBITaxon:67365","l":"Streptomyces sparsogenes","na":5,"nb":4,"a":[["alkaloids/formycin-a.yaml","formycin A"],["carbohydrates/sangivamycin.yaml","sangivamycin"],["carbohydrates/toyocamycin.yaml","toyocamycin"],["carbohydrates/tubercidin.yaml","tubercidin"],["unclassified/pirazofurin.yaml","pirazofurin"]],"b":[["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A67365","Streptomyces sparsogenes"],["NCBITaxon%3A1331668","Streptomyces sparsogenes DSM 40356"],["NCBITaxon%3A66882","Streptomyces sparsogenes subsp. cuspidosporus"]]},{"id":"NCBITaxon:1936","l":"Streptomyces violaceus","na":4,"nb":4,"a":[["polyketides/carotenoid.yaml","carotenoid"],["polyketides/concanamycin-a.yaml","concanamycin A"],["polyketides/cosmomycin-d.yaml","cosmomycin D"],["polyketides/rhodomycin.yaml","rhodomycin"]],"b":[["NCBITaxon%3A2893586","Actinoalloteichus caeruleus"],["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A1936","Streptomyces violaceus"],["NCBITaxon%3A67380","Streptomyces violaceus subsp. violarus"]]},{"id":"NCBITaxon:1944","l":"Streptomyces halstedii","na":4,"nb":4,"a":[["alkaloids/rotihibin-a.yaml","rotihibin A"],["polyketides/halstoctacosanolide-a.yaml","halstoctacosanolide A"],["terpenoids/geosmin.yaml","(−)-geosmin"],["unclassified/vicenistatin.yaml","vicenistatin"]],"b":[["NCBITaxon%3A68212","Streptomyces graminofaciens"],["NCBITaxon%3A1909","Streptomyces griseolus"],["NCBITaxon%3A1944","Streptomyces halstedii"],["NCBITaxon%3A178788","Streptomyces halstedii subsp. scabies"]]},{"id":"NCBITaxon:53246","l":"Pseudoalteromonas","na":3,"nb":4350,"a":[["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["carbohydrates/kanamycin-a.yaml","kanamycin A"],["polyketides/erythromycin-a.yaml","erythromycin A"]],"b":[["NCBITaxon%3A300231","Brumicola nitratireducens"],["NCBITaxon%3A246558","marine bacterium 13684"],["NCBITaxon%3A246559","marine bacterium 13703"],["NCBITaxon%3A246560","marine bacterium 13704"],["NCBITaxon%3A194691","marine bacterium SIMO IS-S73-243"],["NCBITaxon%3A156585","marine bacterium Tw-2"]]},{"id":"NCBITaxon:1125","l":"Microcystis","na":3,"nb":2332,"a":[["amino_acids_and_peptides/microcystin-lr.yaml","microcystin-LR"],["amino_acids_and_peptides/piricyclamide-7005e1.yaml","piricyclamide 7005E1"],["unclassified/cyanopeptolin.yaml","cyanopeptolin"]],"b":[["NCBITaxon%3A1126","Microcystis aeruginosa"],["NCBITaxon%3A270630","Microcystis aeruginosa 0BB35S02"],["NCBITaxon%3A270631","Microcystis aeruginosa 0BF29S01"],["NCBITaxon%3A270632","Microcystis aeruginosa 0BF29S03"],["NCBITaxon%3A2358142","Microcystis aeruginosa 11-30S32"],["NCBITaxon%3A3113711","Microcystis aeruginosa 1339"]]},{"id":"NCBITaxon:1129","l":"Synechococcus","na":3,"nb":2170,"a":[["alkaloids/synechobactin-a.yaml","synechobactin A"],["alkaloids/synechobactin-b.yaml","synechobactin B"],["alkaloids/synechobactin-c.yaml","synechobactin C"]],"b":[["NCBITaxon%3A2081909","Anacystis marina"],["NCBITaxon%3A2081929","Anacystis marina UTEX LB 1634"],["NCBITaxon%3A1522304","Candidatus Synechococcus calcipolaris"],["NCBITaxon%3A1497997","Candidatus Synechococcus calcipolaris G9"],["NCBITaxon%3A431041","Candidatus Synechococcus spongiarum"],["NCBITaxon%3A1608213","Candidatus Synechococcus spongiarum 142"]]},{"id":"NCBITaxon:83681","l":"Nonomuraea","na":3,"nb":632,"a":[["amino_acids_and_peptides/kistamicin-a.yaml","kistamicin A"],["amino_acids_and_peptides/thiomuracin-a.yaml","thiomuracin A"],["unclassified/ecumicin.yaml","ecumicin"]],"b":[["NCBITaxon%3A2805427","Actinomadura luzonensis"],["NCBITaxon%3A1955412","[Actinomadura] parvosata"],["NCBITaxon%3A1909395","[Actinomadura] parvosata subsp. kistnae"],["NCBITaxon%3A1989","Actinomadura sp."],["NCBITaxon%3A411670","Nonomuraea aegyptia"],["NCBITaxon%3A46171","Nonomuraea africana"]]},{"id":"NCBITaxon:159191","l":"Nodularia","na":3,"nb":261,"a":[["unclassified/nocuolactylate-a.yaml","Nocuolactylate A"],["unclassified/nocuolactylate-b.yaml","Nocuolactylate B"],["unclassified/nocuolactylate-c.yaml","Nocuolactylate C"]],"b":[["NCBITaxon%3A1378537","Nodularia armorica"],["NCBITaxon%3A1378538","Nodularia armorica L1"],["NCBITaxon%3A88826","Nodularia baltica"],["NCBITaxon%3A285704","Nodularia baltica BY1"],["NCBITaxon%3A1378539","Nodularia cf. harveyana HBU11"],["NCBITaxon%3A1378540","Nodularia cf. harveyana HBU23"]]},{"id":"NCBITaxon:29487","l":"Photorhabdus","na":3,"nb":179,"a":[["polyketides/aq-256.yaml","AQ-256"],["polyketides/aq-270a.yaml","AQ-270a"],["polyketides/aq-284a.yaml","AQ-284a"]],"b":[["NCBITaxon%3A2991723","Photorhabdus aballayi"],["NCBITaxon%3A2805098","Photorhabdus aegyptia"],["NCBITaxon%3A3097554","Photorhabdus africana"],["NCBITaxon%3A171438","Photorhabdus akhurstii"],["NCBITaxon%3A2934395","Photorhabdus akhurstii subsp. akhurstii"],["NCBITaxon%3A2919874","Photorhabdus akhurstii subsp. bharatensis"]]},{"id":"NCBITaxon:383614","l":"Brasilonema","na":3,"nb":179,"a":[["amino_acids_and_peptides/anabaenopeptin-788.yaml","anabaenopeptin 788"],["amino_acids_and_peptides/anabaenopeptin-802.yaml","anabaenopeptin 802"],["amino_acids_and_peptides/anabaenopeptin-816.yaml","anabaenopeptin 816"]],"b":[["NCBITaxon%3A3398307","Brasilonema amethysteum"],["NCBITaxon%3A3057924","Brasilonema amethysteum CR10-2F/1"],["NCBITaxon%3A1249745","Brasilonema angustatum"],["NCBITaxon%3A1049008","Brasilonema angustatum HA4187-MV1"],["NCBITaxon%3A3398308","Brasilonema bambusae"],["NCBITaxon%3A3237340","Brasilonema bambusae CR06-5A/1"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":3,"nb":178,"a":[["unclassified/leuvalin.yaml","leuvalin"],["unclassified/mutanocyclin.yaml","mutanocyclin"],["unclassified/tyrvalin.yaml","tyrvalin"]],"b":[["NCBITaxon%3A150055","Streptococcus lutetiensis"],["NCBITaxon%3A1309","Streptococcus mutans"],["NCBITaxon%3A857155","Streptococcus mutans 11A1"],["NCBITaxon%3A857147","Streptococcus mutans 11SSST2"],["NCBITaxon%3A857143","Streptococcus mutans 11VS1"],["NCBITaxon%3A857113","Streptococcus mutans 14D"]]},{"id":"NCBITaxon:70799","l":"Nodularia spumigena","na":3,"nb":119,"a":[["amino_acids_and_peptides/microcystin-lr.yaml","microcystin-LR"],["amino_acids_and_peptides/nodularin.yaml","nodularin"],["amino_acids_and_peptides/spumigin-e.yaml","Spumigin E"]],"b":[["NCBITaxon%3A173561","Nodularia cf. spumigena IBASU-DS-13-00"],["NCBITaxon%3A70799","Nodularia spumigena"],["NCBITaxon%3A2161834","Nodularia spumigena 106-108LC"],["NCBITaxon%3A2161835","Nodularia spumigena 120-122LC"],["NCBITaxon%3A2161836","Nodularia spumigena 122-124 LC"],["NCBITaxon%3A2161837","Nodularia spumigena 170-172 LC"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":3,"nb":118,"a":[["amino_acids_and_peptides/epidermin.yaml","epidermin"],["amino_acids_and_peptides/epilancin-15x.yaml","epilancin 15x"],["amino_acids_and_peptides/pep5.yaml","pep5"]],"b":[["NCBITaxon%3A69966","Macrococcoides caseolyticum"],["NCBITaxon%3A1822","Nocardia vaccinii"],["NCBITaxon%3A1210098","Nocardia vaccinii NBRC 15922"],["NCBITaxon%3A1282","Staphylococcus epidermidis"],["NCBITaxon%3A1235440","Staphylococcus epidermidis 12142587"],["NCBITaxon%3A1000590","Staphylococcus epidermidis 14.1.R1.SE"]]},{"id":"NCBITaxon:42","l":"Cystobacter","na":3,"nb":45,"a":[["amino_acids_and_peptides/tubulysin-a.yaml","tubulysin A"],["unclassified/cystobactamid-919-1.yaml","cystobactamid 919-1"],["unclassified/cystobactamid-919-2.yaml","cystobactamid 919-2"]],"b":[["NCBITaxon%3A394090","Cystobacter armeniaca"],["NCBITaxon%3A394091","Cystobacter badius"],["NCBITaxon%3A83449","Cystobacter ferrugineus"],["NCBITaxon%3A43","Cystobacter fuscus"],["NCBITaxon%3A1242864","Cystobacter fuscus DSM 2262"],["NCBITaxon%3A394093","Cystobacter miniatus"]]},{"id":"NCBITaxon:1902","l":"Streptomyces coelicolor","na":42,"nb":3,"a":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/anthramycin.yaml","anthramycin"],["alkaloids/holomycin.yaml","holomycin"],["alkaloids/melanin.yaml","melanin"],["alkaloids/prodigiosin-2.yaml","prodigiosin"],["alkaloids/undecylprodigiosin-2.yaml","undecylprodigiosin"]],"b":[["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A1902","Streptomyces coelicolor"],["NCBITaxon%3A100226","Streptomyces coelicolor A3(2)"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":3,"nb":39,"a":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"],["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"],["unclassified/telomestatin.yaml","telomestatin"]],"b":[["NCBITaxon%3A679895","Escherichia coli BW25113"],["NCBITaxon%3A595496","Escherichia coli BW2952"],["NCBITaxon%3A1318715","Escherichia coli BW38028"],["NCBITaxon%3A1245474","Escherichia coli ER2796"],["NCBITaxon%3A83333","Escherichia coli K-12"],["NCBITaxon%3A527799","Escherichia coli LW1655F+"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":3,"nb":33,"a":[["alkaloids/cepaciachelin.yaml","cepaciachelin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["terpenoids/hopene.yaml","hopene"]],"b":[["NCBITaxon%3A85698","Achromobacter xylosoxidans"],["NCBITaxon%3A152480","Burkholderia ambifaria"],["NCBITaxon%3A179879","Burkholderia anthina"],["NCBITaxon%3A488730","Burkholderia arboris"],["NCBITaxon%3A95486","Burkholderia cenocepacia"],["NCBITaxon%3A292","Burkholderia cepacia"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":3,"nb":32,"a":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"],["amino_acids_and_peptides/lacticin-z.yaml","lacticin Z"],["amino_acids_and_peptides/nisin-a.yaml","nisin A"]],"b":[["NCBITaxon%3A1359","Lactococcus cremoris"],["NCBITaxon%3A2816960","Lactococcus cremoris subsp. cremoris"],["NCBITaxon%3A1348655","Lactococcus cremoris subsp. cremoris NBRC 100676"],["NCBITaxon%3A1363","Lactococcus garvieae"],["NCBITaxon%3A1358","Lactococcus lactis"],["NCBITaxon%3A2731284","Lactococcus lactis (ex Latorre-Guzman et al. 1977) Schleifer et al. 1986"]]},{"id":"NCBITaxon:1214","l":"Prochloron","na":3,"nb":30,"a":[["amino_acids_and_peptides/patellamide-a.yaml","patellamide A"],["amino_acids_and_peptides/patellamide-b.yaml","patellamide B"],["amino_acids_and_peptides/patellin-6.yaml","patellin 6"]],"b":[["NCBITaxon%3A1216","Prochloron didemni"],["NCBITaxon%3A3115413","Prochloron didemni E1"],["NCBITaxon%3A2721547","Prochloron didemni IMFR-1"],["NCBITaxon%3A910450","Prochloron didemni P1-Palau"],["NCBITaxon%3A910454","Prochloron didemni P2-Fiji"],["NCBITaxon%3A910458","Prochloron didemni P3-Solomon"]]},{"id":"NCBITaxon:1998","l":"Planomonospora","na":3,"nb":25,"a":[["amino_acids_and_peptides/biarylitide-yfh.yaml","biarylitide YFH"],["amino_acids_and_peptides/biarylitide-yyh.yaml","biarylitide YYH"],["amino_acids_and_peptides/planosporicin.yaml","planosporicin"]],"b":[["NCBITaxon%3A244","Planomicrobium okeanokoites"],["NCBITaxon%3A161354","Planomonospora alba"],["NCBITaxon%3A1846211","Planomonospora algeriensis"],["NCBITaxon%3A97193","Planomonospora antibiotica"],["NCBITaxon%3A1806052","Planomonospora corallina"],["NCBITaxon%3A58119","Planomonospora parontospora"]]},{"id":"NCBITaxon:162425","l":"Aspergillus nidulans","na":22,"nb":3,"a":[["alkaloids/aspernidine-a.yaml","aspernidine A"],["alkaloids/aspyridone-a.yaml","aspyridone A"],["alkaloids/aspyridone-b.yaml","aspyridone B"],["alkaloids/biotin.yaml","biotin"],["alkaloids/cichorine.yaml","cichorine"],["alkaloids/pentostatin.yaml","pentostatin"]],"b":[["NCBITaxon%3A162425","Aspergillus nidulans"],["NCBITaxon%3A286159","Aspergillus nidulans var. acristatus"],["NCBITaxon%3A286160","Aspergillus nidulans var. dentatus"]]},{"id":"NCBITaxon:243265","l":"Photorhabdus laumondii subsp. laumondii TTO1","na":21,"nb":3,"a":[["amino_acids_and_peptides/gamexpeptide-c.yaml","gamexpeptide C"],["amino_acids_and_peptides/luminmycin-a.yaml","luminmycin A"],["amino_acids_and_peptides/ririwpeptide-a.yaml","ririwpeptide A"],["amino_acids_and_peptides/ririwpeptide-b.yaml","ririwpeptide B"],["carbohydrates/oligosaccharide-1-glcnac-1-4-1-6-anhydro-glcnac.yaml","oligosaccharide 1 (GlcNAc-β(1-4)-1,6-anhydro-β-GlcNAc)"],["carbohydrates/oligosaccharide-2-glcnac-1-4-glcnac-1-4-1-6-anhydro-glcnac.yaml","oligosaccharide 2 (GlcNAc-β(1-4)-GlcNAc-β(1-4)-1,6-anhydro-β-GlcNAc)"]],"b":[["NCBITaxon%3A2218628","Photorhabdus laumondii"],["NCBITaxon%3A141679","Photorhabdus laumondii subsp. laumondii"],["NCBITaxon%3A243265","Photorhabdus laumondii subsp. laumondii TTO1"]]},{"id":"NCBITaxon:54571","l":"Streptomyces venezuelae","na":21,"nb":3,"a":[["alkaloids/anthelvencin-a.yaml","anthelvencin A"],["alkaloids/anthelvencin-b.yaml","anthelvencin B"],["alkaloids/anthelvencin-c.yaml","anthelvencin C"],["alkaloids/chloramphenicol.yaml","chloramphenicol"],["alkaloids/corynecin-ii.yaml","corynecin II"],["alkaloids/gaburedin-d.yaml","gaburedin D"]],"b":[["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A54571","Streptomyces venezuelae"],["NCBITaxon%3A953739","Streptomyces venezuelae ATCC 10712"]]},{"id":"NCBITaxon:746128","l":"Aspergillus fumigatus","na":20,"nb":3,"a":[["alkaloids/fumigaclavine-c.yaml","fumigaclavine C"],["alkaloids/fumiquinazoline-a.yaml","fumiquinazoline A"],["alkaloids/fumiquinazoline-c.yaml","fumiquinazoline C"],["alkaloids/fumiquinazoline-d.yaml","fumiquinazoline D"],["alkaloids/hexadehydroastechrome.yaml","hexadehydroastechrome"],["carbohydrates/tobramycin.yaml","tobramycin"]],"b":[["NCBITaxon%3A746128","Aspergillus fumigatus"],["NCBITaxon%3A451804","Aspergillus fumigatus A1163"],["NCBITaxon%3A41122","Aspergillus fumigatus var. fumigatus"]]},{"id":"NCBITaxon:1833","l":"Rhodococcus erythropolis","na":3,"nb":19,"a":[["alkaloids/aurachin-re.yaml","aurachin RE"],["amino_acids_and_peptides/heterobactin-a.yaml","heterobactin A"],["amino_acids_and_peptides/heterobactin-s2.yaml","heterobactin S2"]],"b":[["NCBITaxon%3A1818","Nocardia globerula"],["NCBITaxon%3A1821","Nocardia sp."],["NCBITaxon%3A53432","Nocardia uniformis"],["NCBITaxon%3A1210100","Nocardia uniformis NBRC 13702"],["NCBITaxon%3A1833","Rhodococcus erythropolis"],["NCBITaxon%3A1136179","Rhodococcus erythropolis CCM2595"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":3,"nb":16,"a":[["amino_acids_and_peptides/polymyxin-b.yaml","polymyxin B"],["amino_acids_and_peptides/polymyxin.yaml","polymyxin"],["unclassified/fusaricidin-b.yaml","fusaricidin B"]],"b":[["NCBITaxon%3A114136","Paenibacillus jamilae"],["NCBITaxon%3A225917","Paenibacillus massiliensis"],["NCBITaxon%3A1406","Paenibacillus polymyxa"],["NCBITaxon%3A1333863","Paenibacillus polymyxa 1-43"],["NCBITaxon%3A1414587","Paenibacillus polymyxa A18"],["NCBITaxon%3A1206104","Paenibacillus polymyxa ATCC 12321"]]},{"id":"NCBITaxon:5598","l":"Alternaria","na":3,"nb":16,"a":[["polyketides/zearalenone.yaml","zearalenone"],["shikimates_and_phenylpropanoids/alternariol.yaml","alternariol"],["unclassified/tenuazonic-acid.yaml","tenuazonic acid"]],"b":[["NCBITaxon%3A1111114","Alternaria alstroemeriae"],["NCBITaxon%3A5599","Alternaria alternata"],["NCBITaxon%3A156630","Alternaria arborescens"],["NCBITaxon%3A29911","Alternaria brassicae"],["NCBITaxon%3A29001","Alternaria brassicicola"],["NCBITaxon%3A1187905","Alternaria calendulae"]]},{"id":"NCBITaxon:41","l":"Stigmatella aurantiaca","na":14,"nb":3,"a":[["alkaloids/aurachin-a.yaml","aurachin A"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"],["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["polyketides/aurafuron-a.yaml","aurafuron A"]],"b":[["NCBITaxon%3A41","Allostigmatella aurantiaca"],["NCBITaxon%3A378806","Allostigmatella aurantiaca DW4/3-1"],["NCBITaxon%3A675526","Allostigmatella aurantiaca Sg a15"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":13,"nb":3,"a":[["unclassified/bananamide-d.yaml","bananamide D"],["unclassified/bananamide-e.yaml","bananamide E"],["unclassified/bananamide-f.yaml","bananamide F"],["unclassified/bananamide-g.yaml","bananamide G"],["unclassified/lokisin.yaml","lokisin"],["unclassified/pseudodesmin-a.yaml","pseudodesmin A"]],"b":[["NCBITaxon%3A2219225","Pseudomonas asiatica"],["NCBITaxon%3A1628086","Pseudomonas kribbensis"],["NCBITaxon%3A306","Pseudomonas sp."]]},{"id":"NCBITaxon:53446","l":"Streptomyces cinnamoneus","na":3,"nb":11,"a":[["amino_acids_and_peptides/cinnamycin.yaml","cinnamycin"],["amino_acids_and_peptides/duramycin.yaml","duramycin"],["unclassified/bicozamycin.yaml","bicozamycin"]],"b":[["NCBITaxon%3A53446","Streptomyces cinnamoneus"],["NCBITaxon%3A173776","Streptomyces cinnamoneus subsp. albosporus"],["NCBITaxon%3A173777","Streptomyces cinnamoneus subsp. azacoluta"],["NCBITaxon%3A173778","Streptomyces cinnamoneus subsp. lanosus"],["NCBITaxon%3A1521191","Streptomyces cinnamoneus subsp. monicae"],["NCBITaxon%3A173779","Streptomyces cinnamoneus subsp. sparsus"]]},{"id":"NCBITaxon:116188","l":"Streptomyces coeruleorubidus","na":10,"nb":3,"a":[["amino_acids_and_peptides/pacidamycin-1.yaml","pacidamycin 1"],["amino_acids_and_peptides/pacidamycin-2.yaml","pacidamycin 2"],["amino_acids_and_peptides/pacidamycin-3.yaml","pacidamycin 3"],["amino_acids_and_peptides/pacidamycin-4.yaml","pacidamycin 4"],["amino_acids_and_peptides/pacidamycin-5.yaml","pacidamycin 5"],["amino_acids_and_peptides/pacidamycin-6.yaml","pacidamycin 6"]],"b":[["NCBITaxon%3A1521190","Streptomyces bellus subsp. cirolerosus"],["NCBITaxon%3A116188","Streptomyces coeruleorubidus"],["NCBITaxon%3A146536","Streptomyces curacoi"]]},{"id":"NCBITaxon:680","l":"Vibrio campbellii","na":3,"nb":10,"a":[["amino_acids_and_peptides/divanchrobactin.yaml","divanchrobactin"],["amino_acids_and_peptides/trivanchrobactin.yaml","trivanchrobactin"],["amino_acids_and_peptides/vanchrobactin.yaml","vanchrobactin"]],"b":[["NCBITaxon%3A680","Vibrio campbellii"],["NCBITaxon%3A1279999","Vibrio campbellii 200612B"],["NCBITaxon%3A2902295","Vibrio campbellii ATCC BAA-1116"],["NCBITaxon%3A1206055","Vibrio campbellii CAIM 333"],["NCBITaxon%3A1224742","Vibrio campbellii CAIM 519 = NBRC 15631 = ATCC 25920"],["NCBITaxon%3A1088888","Vibrio campbellii DS40M4"]]},{"id":"NCBITaxon:12908","l":"unclassified sequences","na":3,"nb":9,"a":[["polyketides/elaiophylin.yaml","elaiophylin"],["polyketides/nargenicin-a1-2.yaml","nargenicin A1"],["polyketides/pederin.yaml","pederin"]],"b":[["NCBITaxon%3A1263854","anaerobic digester metagenome"],["NCBITaxon%3A1169740","aquatic metagenome"],["NCBITaxon%3A702656","compost metagenome"],["NCBITaxon%3A408170","human gut metagenome"],["NCBITaxon%3A256318","metagenome"],["NCBITaxon%3A410658","soil metagenome"]]},{"id":"NCBITaxon:556","l":"Dickeya chrysanthemi","na":3,"nb":9,"a":[["amino_acids_and_peptides/chrysobactin.yaml","chrysobactin"],["amino_acids_and_peptides/dichrysobactin.yaml","dichrysobactin"],["unclassified/cyclic-trichrysobactin.yaml","cyclic trichrysobactin"]],"b":[["NCBITaxon%3A556","Dickeya chrysanthemi"],["NCBITaxon%3A561229","Dickeya chrysanthemi Ech1591"],["NCBITaxon%3A1224148","Dickeya chrysanthemi NCPPB 3533"],["NCBITaxon%3A1223569","Dickeya chrysanthemi NCPPB 402"],["NCBITaxon%3A3474837","Dickeya chrysanthemi pv. chrysanthemi"],["NCBITaxon%3A3474953","Dickeya chrysanthemi pv. parthenii"]]},{"id":"NCBITaxon:1836","l":"Saccharopolyspora erythraea","na":8,"nb":3,"a":[["amino_acids_and_peptides/erythrochelin.yaml","erythrochelin"],["polyketides/3-3-diflaviolin.yaml","3,3'-diflaviolin"],["polyketides/erythromycin-a.yaml","erythromycin A"],["polyketides/erythromycin-b.yaml","erythromycin B"],["polyketides/flaviolin-rhamnoside.yaml","flaviolin rhamnoside"],["polyketides/flaviolin.yaml","flaviolin"]],"b":[["NCBITaxon%3A1836","Saccharopolyspora erythraea"],["NCBITaxon%3A1382595","Saccharopolyspora erythraea D"],["NCBITaxon%3A405948","Saccharopolyspora erythraea NRRL 2338"]]},{"id":"NCBITaxon:1055688","l":"Sandaracinus","na":7,"nb":3,"a":[["amino_acids_and_peptides/sandarazol-a.yaml","sandarazol A"],["amino_acids_and_peptides/sandarazol-c.yaml","sandarazol C"],["amino_acids_and_peptides/sandarazol-d.yaml","sandarazol D"],["amino_acids_and_peptides/sandarazol-f.yaml","sandarazol F"],["amino_acids_and_peptides/sandarazol-g.yaml","sandarazol G"],["unclassified/sandarazol-b.yaml","sandarazol B"]],"b":[["NCBITaxon%3A927083","Sandaracinus amylolyticus"],["NCBITaxon%3A2024858","Sandaracinus sp."],["NCBITaxon%3A1331297","uncultured Sandaracinus sp."]]},{"id":"NCBITaxon:1216","l":"Prochloron didemni","na":3,"nb":7,"a":[["amino_acids_and_peptides/divamide-a.yaml","divamide A"],["amino_acids_and_peptides/patellamide-a.yaml","patellamide A"],["amino_acids_and_peptides/patellamide-c.yaml","patellamide C"]],"b":[["NCBITaxon%3A1216","Prochloron didemni"],["NCBITaxon%3A3115413","Prochloron didemni E1"],["NCBITaxon%3A2721547","Prochloron didemni IMFR-1"],["NCBITaxon%3A910450","Prochloron didemni P1-Palau"],["NCBITaxon%3A910454","Prochloron didemni P2-Fiji"],["NCBITaxon%3A910458","Prochloron didemni P3-Solomon"]]},{"id":"NCBITaxon:1935","l":"Streptomyces violaceoruber","na":3,"nb":7,"a":[["polyketides/granaticin.yaml","granaticin"],["polyketides/kendomycin.yaml","kendomycin"],["terpenoids/methylenomycin-a.yaml","methylenomycin A"]],"b":[["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A67291","Streptomyces cyanocolor"],["NCBITaxon%3A80860","Streptomyces cyanogenus"],["NCBITaxon%3A1916","Streptomyces lividans"],["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A68277","Streptomyces tricolor"]]},{"id":"NCBITaxon:1938","l":"Streptomyces viridochromogenes","na":3,"nb":7,"a":[["amino_acids_and_peptides/glycinocin-a.yaml","glycinocin A"],["carbohydrates/avilamycin-a.yaml","avilamycin A"],["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"]],"b":[["NCBITaxon%3A1969","Streptomyces chartreusis"],["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A1938","Streptomyces viridochromogenes"],["NCBITaxon%3A591159","Streptomyces viridochromogenes DSM 40736"],["NCBITaxon%3A285521","Streptomyces viridochromogenes subsp. komabensis"],["NCBITaxon%3A285503","Streptomyces viridochromogenes subsp. sulfomycini"]]},{"id":"NCBITaxon:37463","l":"Phoma","na":7,"nb":3,"a":[["alkaloids/dihydroisoflavipucine.yaml","dihydroisoflavipucine"],["carbohydrates/kanamycin-a.yaml","kanamycin A"],["polyketides/nystatin-a1.yaml","nystatin A1"],["polyketides/squalestatin-s1.yaml","squalestatin S1"],["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"],["unclassified/eupenifeldin.yaml","eupenifeldin"]],"b":[["NCBITaxon%3A73001","Phoma herbarum"],["NCBITaxon%3A196108","Phoma leveillei"],["NCBITaxon%3A1707701","Phoma sp."]]},{"id":"NCBITaxon:1877","l":"Micromonospora echinospora","na":6,"nb":3,"a":[["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/gentamicin-2.yaml","gentamicin"],["carbohydrates/gentamicin.yaml","gentamicin"],["polyketides/1-6-dihydro-8-propylanthraquinone.yaml","1,6-dihydro-8-propylanthraquinone"],["polyketides/calicheamicin.yaml","calicheamicin"],["polyketides/tiacumicin-b.yaml","tiacumicin B"]],"b":[["NCBITaxon%3A1877","Micromonospora echinospora"],["NCBITaxon%3A704114","Micromonospora echinospora subsp. challisensis"],["NCBITaxon%3A145854","Micromonospora pallida"]]},{"id":"NCBITaxon:1920","l":"Streptomyces nigrescens","na":6,"nb":3,"a":[["alkaloids/5athq-10a.yaml","5aTHQ-10a"],["alkaloids/5athq-9i.yaml","5aTHQ-9i"],["alkaloids/5athq-9n.yaml","5aTHQ-9n"],["alkaloids/stams-9i.yaml","STAMs-9i"],["alkaloids/stams-9n.yaml","STAMs-9n"],["polyketides/phoslactomycin-b.yaml","phoslactomycin B"]],"b":[["NCBITaxon%3A1128671","Microvirga arabica"],["NCBITaxon%3A249582","Streptomyces libani subsp. rufus"],["NCBITaxon%3A1920","Streptomyces nigrescens"]]},{"id":"NCBITaxon:2303152","l":"Anabaena minutissima","na":3,"nb":6,"a":[["amino_acids_and_peptides/minutissamide-a.yaml","minutissamide A"],["amino_acids_and_peptides/minutissamide-b.yaml","minutissamide B"],["amino_acids_and_peptides/puwainaphycin-f.yaml","puwainaphycin F"]],"b":[["NCBITaxon%3A2303152","Anabaena minutissima"],["NCBITaxon%3A2811940","Anabaena minutissima BEA0300B"],["NCBITaxon%3A2929142","Anabaena minutissima BEA 0025"],["NCBITaxon%3A2929143","Anabaena minutissima BEA 0026"],["NCBITaxon%3A2692882","Anabaena minutissima FACHB-250"],["NCBITaxon%3A2303153","Anabaena minutissima UTEX B 1613"]]},{"id":"NCBITaxon:5149","l":"Chaetomium","na":3,"nb":6,"a":[["alkaloids/chaetoglobosin-c.yaml","chaetoglobosin C"],["polyketides/chaetoviridin-e.yaml","chaetoviridin E"],["polyketides/terrestric-acid.yaml","terrestric acid"]],"b":[["NCBITaxon%3A904709","Chaetomium cochliodes"],["NCBITaxon%3A1854472","Chaetomium fimeti"],["NCBITaxon%3A38033","Chaetomium globosum"],["NCBITaxon%3A1769349","Chaetomium sp."],["NCBITaxon%3A1170767","Chaetomium strumarium"],["NCBITaxon%3A1854479","Chaetomium tenue"]]},{"id":"NCBITaxon:129921","l":"","na":5,"nb":3,"a":[["amino_acids_and_peptides/keratinimicin-a.yaml","keratinimicin A"],["amino_acids_and_peptides/keratinimicin-b.yaml","keratinimicin B"],["amino_acids_and_peptides/keratinimicin-c.yaml","keratinimicin C"],["amino_acids_and_peptides/keratinimicin-d.yaml","keratinimicin D"],["polyketides/eco-0501.yaml","ECO-0501"]],"b":[["NCBITaxon%3A129921","Amycolatopsis keratiniphila"],["NCBITaxon%3A227715","Amycolatopsis keratiniphila subsp. keratiniphila"],["NCBITaxon%3A208442","Amycolatopsis keratiniphila subsp. nogabecina"]]},{"id":"NCBITaxon:193461","l":"Streptomyces aureus","na":3,"nb":5,"a":[["amino_acids_and_peptides/thiostrepton.yaml","thiostrepton"],["polyketides/colabomycin-e.yaml","colabomycin E"],["terpenoids/napyradiomycin.yaml","napyradiomycin"]],"b":[["NCBITaxon%3A2071609","Marisediminitalea oceani"],["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A193461","Streptomyces aureus"],["NCBITaxon%3A2706486","Streptomyces aureus subsp. suzhoueusis"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:536","l":"Chromobacterium violaceum","na":3,"nb":5,"a":[["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["unclassified/romidepsin.yaml","romidepsin"]],"b":[["NCBITaxon%3A1382803","Chromobacterium amazonense"],["NCBITaxon%3A686831","Chromobacterium piscinae"],["NCBITaxon%3A3055134","Chromobacterium sp. CCUG 30098"],["NCBITaxon%3A536","Chromobacterium violaceum"],["NCBITaxon%3A243365","Chromobacterium violaceum ATCC 12472"]]},{"id":"NCBITaxon:1038928","l":"Streptomyces xinghaiensis","na":4,"nb":3,"a":[["alkaloids/dixiamycin-a.yaml","dixiamycin A"],["alkaloids/xiamycin-a.yaml","xiamycin A"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"],["polyketides/oligomycin.yaml","oligomycin"]],"b":[["NCBITaxon%3A1906","Streptomyces fradiae"],["NCBITaxon%3A1038928","Streptomyces xinghaiensis"],["NCBITaxon%3A1038929","Streptomyces xinghaiensis S187"]]},{"id":"NCBITaxon:1167","l":"Anabaena sp.","na":4,"nb":3,"a":[["alkaloids/schizokinen.yaml","schizokinen"],["amino_acids_and_peptides/puwainaphycin-a.yaml","puwainaphycin A"],["amino_acids_and_peptides/puwainaphycin-b.yaml","puwainaphycin B"],["amino_acids_and_peptides/puwainaphycin-d.yaml","puwainaphycin D"]],"b":[["NCBITaxon%3A1167","Anabaena sp."],["NCBITaxon%3A103690","Nostoc sp. PCC 7120 = FACHB-418"],["NCBITaxon%3A264691","Trichormus variabilis"]]},{"id":"NCBITaxon:184932","l":"Cylindrospermum licheniforme","na":3,"nb":4,"a":[["polyketides/cylindrocyclophane-d.yaml","Cylindrocyclophane D"],["polyketides/cylindrocyclophane-e.yaml","Cylindrocyclophane E"],["polyketides/cylindrocyclophane-f.yaml","Cylindrocyclophane F"]],"b":[["NCBITaxon%3A184932","Cylindrospermum licheniforme"],["NCBITaxon%3A1382629","Cylindrospermum licheniforme CCALA 995"],["NCBITaxon%3A1982948","Cylindrospermum licheniforme ISB 74"],["NCBITaxon%3A379530","Cylindrospermum licheniforme UTEX B 2014"]]},{"id":"NCBITaxon:1961","l":"Streptomyces virginiae","na":3,"nb":4,"a":[["alkaloids/endophenazine-a.yaml","endophenazine A"],["polyketides/monensin.yaml","monensin"],["unclassified/virginiamycin-s1.yaml","virginiamycin S1"]],"b":[["NCBITaxon%3A1535204","Metabacillus endolithicus"],["NCBITaxon%3A67381","Streptomyces violascens"],["NCBITaxon%3A1961","Streptomyces virginiae"],["NCBITaxon%3A3478784","Streptomyces virginiae subsp. lipoxae (nom. nud.)"]]},{"id":"NCBITaxon:1969","l":"Streptomyces chartreusis","na":4,"nb":3,"a":[["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"],["polyketides/a23187.yaml","A23187"],["shikimates_and_phenylpropanoids/chartreusin.yaml","chartreusin"]],"b":[["NCBITaxon%3A1969","Streptomyces chartreusis"],["NCBITaxon%3A1079986","Streptomyces chartreusis NRRL 12338"],["NCBITaxon%3A1079985","Streptomyces chartreusis NRRL 3882"]]},{"id":"NCBITaxon:2021","l":"Thermobifida fusca","na":3,"nb":4,"a":[["amino_acids_and_peptides/fuscachelin-a.yaml","Fuscachelin A"],["amino_acids_and_peptides/fuscachelin-b.yaml","Fuscachelin B"],["amino_acids_and_peptides/fuscachelin-c.yaml","Fuscachelin C"]],"b":[["NCBITaxon%3A2021","Thermobifida fusca"],["NCBITaxon%3A1223522","Thermobifida fusca NBRC 14071 = JCM 3263"],["NCBITaxon%3A1169414","Thermobifida fusca TM51"],["NCBITaxon%3A269800","Thermobifida fusca YX"]]},{"id":"NCBITaxon:29442","l":"Pseudomonas tolaasii","na":3,"nb":4,"a":[["unclassified/tolaasin-a.yaml","tolaasin A"],["unclassified/tolaasin-f.yaml","tolaasin F"],["unclassified/tolaasin-i.yaml","tolaasin I"]],"b":[["NCBITaxon%3A29442","Pseudomonas tolaasii"],["NCBITaxon%3A1161101","Pseudomonas tolaasii 6264"],["NCBITaxon%3A564423","Pseudomonas tolaasii NCPPB 2192"],["NCBITaxon%3A1030145","Pseudomonas tolaasii PMS117"]]},{"id":"NCBITaxon:33","l":"Myxococcus fulvus","na":3,"nb":4,"a":[["unclassified/fulvuthiacene-a.yaml","Fulvuthiacene A"],["unclassified/fulvuthiacene-b.yaml","Fulvuthiacene B"],["unclassified/myxothiazol.yaml","myxothiazol"]],"b":[["NCBITaxon%3A33","Myxococcus fulvus"],["NCBITaxon%3A1334629","Myxococcus fulvus 124B02"],["NCBITaxon%3A483219","Myxococcus fulvus HW-1"],["NCBITaxon%3A675525","Myxococcus fulvus Mx f65"]]},{"id":"NCBITaxon:380021","l":"Pseudomonas protegens","na":3,"nb":4,"a":[["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"],["unclassified/pf-5-pyoverdine.yaml","Pf-5 pyoverdine"]],"b":[["NCBITaxon%3A380021","Pseudomonas protegens"],["NCBITaxon%3A1420599","Pseudomonas protegens Cab57"],["NCBITaxon%3A1124983","Pseudomonas protegens CHA0"],["NCBITaxon%3A220664","Pseudomonas protegens Pf-5"]]},{"id":"NCBITaxon:43662","l":"Pseudoalteromonas piscicida","na":4,"nb":3,"a":[["alkaloids/2-3-4-5-tetrabromopyrrole.yaml","2,3,4,5-tetrabromopyrrole"],["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["alkaloids/pseudochelin-a.yaml","pseudochelin A"]],"b":[["NCBITaxon%3A43662","Pseudoalteromonas piscicida"],["NCBITaxon%3A1279016","Pseudoalteromonas piscicida ATCC 15057"],["NCBITaxon%3A53249","Pseudoalteromonas sp."]]},{"id":"NCBITaxon:55404","l":"Streptomyces netropsis","na":3,"nb":4,"a":[["alkaloids/congocidine.yaml","congocidine"],["alkaloids/distamycin.yaml","distamycin"],["carbohydrates/spectinomycin.yaml","spectinomycin"]],"b":[["NCBITaxon%3A1914","Streptomyces lavendulae"],["NCBITaxon%3A68190","Streptomyces lavendulae subsp. colombiensis"],["NCBITaxon%3A55404","Streptomyces netropsis"],["NCBITaxon%3A76729","Streptomyces syringium"]]},{"id":"NCBITaxon:58352","l":"Kitasatospora mediocidica","na":3,"nb":4,"a":[["alkaloids/lyngbyatoxin.yaml","lyngbyatoxin"],["fatty_acids/mediomycin-a-2.yaml","mediomycin A"],["fatty_acids/mediomycin-a.yaml","mediomycin A"]],"b":[["NCBITaxon%3A58352","Kitasatospora mediocidica"],["NCBITaxon%3A1449347","Kitasatospora mediocidica KCTC 9733"],["NCBITaxon%3A68180","Streptomyces blastmyceticus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:67294","l":"Streptomyces filamentosus","na":4,"nb":3,"a":[["amino_acids_and_peptides/arylomycin.yaml","arylomycin"],["amino_acids_and_peptides/napsamycin-c.yaml","napsamycin C"],["amino_acids_and_peptides/napsamycin-d.yaml","napsamycin D"],["unclassified/daptomycin.yaml","daptomycin"]],"b":[["NCBITaxon%3A67294","Streptomyces filamentosus"],["NCBITaxon%3A457430","Streptomyces filamentosus NRRL 11379"],["NCBITaxon%3A457431","Streptomyces filamentosus NRRL 15998"]]},{"id":"NCBITaxon:83451","l":"Archangium violaceum","na":4,"nb":3,"a":[["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["alkaloids/myxochelin-n.yaml","myxochelin N"],["alkaloids/myxochelin-o.yaml","myxochelin O"]],"b":[["NCBITaxon%3A48","Archangium gephyra"],["NCBITaxon%3A83451","Archangium violaceum"],["NCBITaxon%3A1406225","Archangium violaceum Cb vi76"]]},{"id":"NCBITaxon:1885","l":"Streptomyces actuosus","na":3,"nb":3,"a":[["alkaloids/staurosporine-2.yaml","staurosporine"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/nosiheptide-2.yaml","nosiheptide"]],"b":[["NCBITaxon%3A1280","Staphylococcus aureus"],["NCBITaxon%3A1885","Streptomyces actuosus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:1905","l":"Streptomyces exfoliatus","na":3,"nb":3,"a":[["alkaloids/carquinostatin-a.yaml","carquinostatin A"],["alkaloids/carquinostatin-b.yaml","carquinostatin B"],["unclassified/valinomycin-2.yaml","valinomycin"]],"b":[["NCBITaxon%3A1905","Streptomyces exfoliatus"],["NCBITaxon%3A1440059","Streptomyces exfoliatus DSM 41693"],["NCBITaxon%3A1873719","Streptomyces hydrogenans"]]},{"id":"NCBITaxon:1950","l":"Streptomyces peucetius","na":3,"nb":3,"a":[["amino_acids_and_peptides/peucechelin.yaml","peucechelin"],["polyketides/daunorubicin.yaml","daunorubicin"],["polyketides/doxorubicin.yaml","doxorubicin"]],"b":[["NCBITaxon%3A1950","Streptomyces peucetius"],["NCBITaxon%3A55158","Streptomyces peucetius subsp. caesius"],["NCBITaxon%3A316280","Streptomyces peucetius subsp. caesius ATCC 27952"]]},{"id":"NCBITaxon:1956","l":"Streptomyces diastaticus","na":3,"nb":3,"a":[["alkaloids/diastaphenazine.yaml","diastaphenazine"],["alkaloids/izumiphenazine-c.yaml","izumiphenazine C"],["polyketides/rimocidin.yaml","rimocidin"]],"b":[["NCBITaxon%3A285564","Streptomyces ardesiacus"],["NCBITaxon%3A1956","Streptomyces diastaticus"],["NCBITaxon%3A68040","Streptomyces diastaticus subsp. diastaticus"]]},{"id":"NCBITaxon:67299","l":"Streptomyces flavogriseus","na":3,"nb":3,"a":[["alkaloids/holomycin.yaml","holomycin"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["polyketides/xantholipin.yaml","xantholipin"]],"b":[["NCBITaxon%3A67299","Streptomyces flavogriseus"],["NCBITaxon%3A52258","Streptomyces flavovirens"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:2062","l":"Streptomycetaceae","na":2,"nb":32318,"a":[["alkaloids/carbazomycin-b.yaml","carbazomycin B"],["unclassified/quinomycin.yaml","quinomycin"]],"b":[["NCBITaxon%3A2784346","Actinacidiphila acididurans"],["NCBITaxon%3A2873382","Actinacidiphila acidipaludis"],["NCBITaxon%3A380248","Actinacidiphila alni"],["NCBITaxon%3A1436133","Actinacidiphila bryophytorum"],["NCBITaxon%3A887465","Actinacidiphila cocklensis"],["NCBITaxon%3A2053013","Actinacidiphila epipremni"]]},{"id":"NCBITaxon:379","l":"Rhizobium","na":2,"nb":5539,"a":[["alkaloids/sesbanimide-c.yaml","sesbanimide C"],["amino_acids_and_peptides/syringolin-a-2.yaml","syringolin A"]],"b":[["NCBITaxon%3A2934936","Allorhizobium sonneratiae"],["NCBITaxon%3A2041385","Arminella tumorigenes"],["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A1355477","Bradyrhizobium diazoefficiens"],["NCBITaxon%3A224911","Bradyrhizobium diazoefficiens USDA 110"],["NCBITaxon%3A29448","Bradyrhizobium elkanii"]]},{"id":"NCBITaxon:44249","l":"Paenibacillus","na":2,"nb":5352,"a":[["alkaloids/paenilamicin.yaml","paenilamicin"],["unclassified/paenibacterin.yaml","paenibacterin"]],"b":[["NCBITaxon%3A1531483","Candidatus Paenibacillus aerius"],["NCBITaxon%3A1531475","Candidatus Paenibacillus castillanus"],["NCBITaxon%3A1515745","Candidatus Paenibacillus guadalajarensis"],["NCBITaxon%3A1531482","Candidatus Paenibacillus hispaniensis"],["NCBITaxon%3A1531476","Candidatus Paenibacillus hominis"],["NCBITaxon%3A1515744","Candidatus Paenibacillus ilicicola"]]},{"id":"NCBITaxon:613","l":"Serratia","na":2,"nb":2177,"a":[["alkaloids/serratiochelin-b.yaml","serratiochelin B"],["alkaloids/serratiochelin-c.yaml","serratiochelin C"]],"b":[["NCBITaxon%3A3076559","Prodigiosinella aquatilis"],["NCBITaxon%3A28242","secondary symbiont of Acyrthosiphon pisum"],["NCBITaxon%3A1924982","secondary symbiont of Schizolachnus pineti"],["NCBITaxon%3A207488","secondary symbiont type-R of Aphis craccivora"],["NCBITaxon%3A207491","secondary symbiont type-R of Cinara cupressi"],["NCBITaxon%3A207493","secondary symbiont type-R of Cinara tujafilina"]]},{"id":"NCBITaxon:54304","l":"Planktothrix","na":2,"nb":1080,"a":[["alkaloids/saxitoxin.yaml","saxitoxin"],["unclassified/cyanopeptolin-1138.yaml","cyanopeptolin 1138"]],"b":[["NCBITaxon%3A1160","Planktothrix agardhii"],["NCBITaxon%3A358557","Planktothrix agardhii 0ES34S1"],["NCBITaxon%3A2884158","Planktothrix agardhii 1025"],["NCBITaxon%3A2884159","Planktothrix agardhii 1026"],["NCBITaxon%3A2884160","Planktothrix agardhii 1027"],["NCBITaxon%3A2884161","Planktothrix agardhii 1029"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":2,"nb":1075,"a":[["alkaloids/acinetobactin.yaml","acinetobactin"],["amino_acids_and_peptides/fimsbactin-a.yaml","fimsbactin A"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A1311139","Acinetobacter baumannii 016901DP_1"],["NCBITaxon%3A1311140","Acinetobacter baumannii 016901DP_2"],["NCBITaxon%3A1310784","Acinetobacter baumannii 1007214"],["NCBITaxon%3A1310751","Acinetobacter baumannii 1022959"],["NCBITaxon%3A1310586","Acinetobacter baumannii 1031433"]]},{"id":"NCBITaxon:55080","l":"Brevibacillus","na":2,"nb":774,"a":[["alkaloids/ulbactin-f.yaml","ulbactin F"],["alkaloids/ulbactin-g.yaml","ulbactin G"]],"b":[["NCBITaxon%3A51101","Brevibacillus agri"],["NCBITaxon%3A1444307","Brevibacillus agri 5-2"],["NCBITaxon%3A1246477","Brevibacillus agri BAB-2500"],["NCBITaxon%3A2570228","Brevibacillus antibioticus"],["NCBITaxon%3A927786","Brevibacillus aydinogluensis"],["NCBITaxon%3A45462","Brevibacillus borstelensis"]]},{"id":"NCBITaxon:149698","l":"Massilia","na":2,"nb":707,"a":[["unclassified/empedopeptin.yaml","empedopeptin"],["unclassified/massiliachelin.yaml","Massiliachelin"]],"b":[["NCBITaxon%3A1904440","Duganella sp."],["NCBITaxon%3A453817","Massilia aerilata"],["NCBITaxon%3A1811226","Massilia agilis"],["NCBITaxon%3A1886785","Massilia agri"],["NCBITaxon%3A2892444","Massilia agrisoli"],["NCBITaxon%3A286638","Massilia alkalitolerans"]]},{"id":"NCBITaxon:68","l":"Lysobacter","na":2,"nb":501,"a":[["unclassified/lysobactin.yaml","lysobactin"],["unclassified/lysocin-e.yaml","lysocin E"]],"b":[["NCBITaxon%3A488485","Luteimonas marina"],["NCBITaxon%3A1582807","Lysobacter agri"],["NCBITaxon%3A84531","Lysobacter antibioticus"],["NCBITaxon%3A1286308","Lysobacter antibioticus HS124"],["NCBITaxon%3A2795387","Lysobacter arenosi"],["NCBITaxon%3A3038776","Lysobacter arvi"]]},{"id":"NCBITaxon:2000","l":"Streptosporangium","na":2,"nb":415,"a":[["polyketides/hexaricin-c.yaml","hexaricin C"],["polyketides/ws-79089a.yaml","WS 79089A"]],"b":[["NCBITaxon%3A47482","Sphaerisporangium cinnabarinum"],["NCBITaxon%3A46189","Sphaerisporangium viridialbum"],["NCBITaxon%3A2932830","Sphaerisporangium viridialbum subsp. reducens"],["NCBITaxon%3A47479","Streptosporangium album"],["NCBITaxon%3A1682748","Streptosporangium algeriense"],["NCBITaxon%3A2002","Streptosporangium amethystogenes"]]},{"id":"NCBITaxon:77022","l":"Cylindrospermopsis raciborskii","na":2,"nb":296,"a":[["alkaloids/7-epi-cylindrospermopsin.yaml","7-epi-cylindrospermopsin"],["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"]],"b":[["NCBITaxon%3A77022","Cylindrospermopsis raciborskii"],["NCBITaxon%3A3345092","Cylindrospermopsis raciborskii 1523720"],["NCBITaxon%3A543817","Cylindrospermopsis raciborskii 1LT32S01"],["NCBITaxon%3A469631","Cylindrospermopsis raciborskii 3-1"],["NCBITaxon%3A3436924","Cylindrospermopsis raciborskii A4"],["NCBITaxon%3A1382247","Cylindrospermopsis raciborskii AK1"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":2,"nb":287,"a":[["alkaloids/vibriobactin-2.yaml","vibriobactin"],["alkaloids/vibriobactin.yaml","vibriobactin"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A666","Vibrio cholerae"],["NCBITaxon%3A693741","Vibrio cholerae 0139-ARG"],["NCBITaxon%3A1294144","Vibrio cholerae 01-1751"],["NCBITaxon%3A592313","Vibrio cholerae 12129(1)"],["NCBITaxon%3A412966","Vibrio cholerae 1587"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":2,"nb":264,"a":[["amino_acids_and_peptides/vibrioferrin-2.yaml","vibrioferrin"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]],"b":[["NCBITaxon%3A663","Vibrio alginolyticus"],["NCBITaxon%3A29494","Vibrio furnissii"],["NCBITaxon%3A675811","Vibrio furnissii CIP 102972"],["NCBITaxon%3A670","Vibrio parahaemolyticus"],["NCBITaxon%3A1238231","Vibrio parahaemolyticus 10290"],["NCBITaxon%3A1238195","Vibrio parahaemolyticus 10296"]]},{"id":"NCBITaxon:1835","l":"Saccharopolyspora","na":2,"nb":251,"a":[["amino_acids_and_peptides/kyamicin.yaml","kyamicin"],["polyketides/a83543a.yaml","A83543A"]],"b":[["NCBITaxon%3A3385973","Saccharopolyspora antibiotica"],["NCBITaxon%3A455193","Saccharopolyspora antimicrobica"],["NCBITaxon%3A3457424","Saccharopolyspora antiqui"],["NCBITaxon%3A2530385","Saccharopolyspora aridisoli"],["NCBITaxon%3A1387985","Saccharopolyspora cavernae"],["NCBITaxon%3A418759","Saccharopolyspora cebuensis"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":2,"nb":156,"a":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["unclassified/andalusicin-a.yaml","andalusicin A"]],"b":[["NCBITaxon%3A1428","Bacillus thuringiensis"],["NCBITaxon%3A1340496","Bacillus thuringiensis AKS-7"],["NCBITaxon%3A714359","Bacillus thuringiensis BMB171"],["NCBITaxon%3A1423143","Bacillus thuringiensis Bt18247"],["NCBITaxon%3A1423142","Bacillus thuringiensis Bt18679"],["NCBITaxon%3A527021","Bacillus thuringiensis Bt407"]]},{"id":"NCBITaxon:1154","l":"Spirulina","na":2,"nb":142,"a":[["terpenoids/carotene.yaml","β-carotene"],["terpenoids/zeaxanthin.yaml","zeaxanthin"]],"b":[["NCBITaxon%3A123228","Spirulina laxissima"],["NCBITaxon%3A1236702","Spirulina laxissima SAG 256.80"],["NCBITaxon%3A1628183","Spirulina laxissima SERB 53"],["NCBITaxon%3A2822060","Spirulina laxissima SV001"],["NCBITaxon%3A2834462","Spirulina laxissima TKTI Uz-106"],["NCBITaxon%3A518102","Spirulina lonar"]]},{"id":"NCBITaxon:102234","l":"Cyanobacterium","na":2,"nb":127,"a":[["amino_acids_and_peptides/aeruginosin-98-c.yaml","aeruginosin 98-C"],["unclassified/nostopeptolide-a2.yaml","nostopeptolide A2"]],"b":[["NCBITaxon%3A379064","Cyanobacterium aponinum"],["NCBITaxon%3A2676140","Cyanobacterium aponinum 0216"],["NCBITaxon%3A2862632","Cyanobacterium aponinum 0TAC 3"],["NCBITaxon%3A2862635","Cyanobacterium aponinum 0TAC 8"],["NCBITaxon%3A2867950","Cyanobacterium aponinum 11TAC23"],["NCBITaxon%3A3090662","Cyanobacterium aponinum AL20115"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":116,"nb":2,"a":[["alkaloids/altemicidin.yaml","altemicidin"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"],["alkaloids/aurachin-ss.yaml","aurachin SS"],["alkaloids/berninamycin-j.yaml","berninamycin J"],["alkaloids/berninamycin-k.yaml","berninamycin K"]],"b":[["NCBITaxon%3A324833","Streptomyces lasalocidi"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":2,"nb":88,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["terpenoids/xanthan.yaml","xanthan"]],"b":[["NCBITaxon%3A298","Pseudomonas marginalis"],["NCBITaxon%3A56448","Xanthomonas arboricola"],["NCBITaxon%3A339","Xanthomonas campestris"],["NCBITaxon%3A1281290","Xanthomonas campestris CFBP 5824"],["NCBITaxon%3A1281289","Xanthomonas campestris CFBP 5825"],["NCBITaxon%3A1182783","Xanthomonas campestris JX"]]},{"id":"NCBITaxon:39643","l":"Sorangium","na":2,"nb":83,"a":[["amino_acids_and_peptides/microsclerodermin-m.yaml","microsclerodermin M"],["unclassified/epothilone-b.yaml","epothilone B"]],"b":[["NCBITaxon%3A2093422","Sorangium ambruticinum"],["NCBITaxon%3A2093421","Sorangium arenae"],["NCBITaxon%3A2995308","Sorangium atrum"],["NCBITaxon%3A2093423","Sorangium bulgaricum"],["NCBITaxon%3A56","Sorangium cellulosum"],["NCBITaxon%3A1254432","Sorangium cellulosum So0157-2"]]},{"id":"NCBITaxon:162985","l":"Hapalosiphon","na":2,"nb":74,"a":[["alkaloids/12-epi-hapalindole-c-isonitrile.yaml","12-epi-hapalindole C isonitrile"],["alkaloids/12-epi-hapalindole-e.yaml","12-epi-hapalindole E"]],"b":[["NCBITaxon%3A1987164","cf. Hapalosiphon sp. SJRP32526_10"],["NCBITaxon%3A1987163","cf. Hapalosiphon sp. SJRP32527_9"],["NCBITaxon%3A1941201","Hapalosiphon arboreus"],["NCBITaxon%3A1941202","Hapalosiphon arboreus 3OW05S02"],["NCBITaxon%3A1941203","Hapalosiphon arboreus 3OW05S03"],["NCBITaxon%3A3702225","Hapalosiphon arboreus 81"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":2,"nb":56,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["terpenoids/mk-8.yaml","MK-8"]],"b":[["NCBITaxon%3A61645","Enterobacter asburiae"],["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A1328422","Enterobacter cloacae BIDMC 33A"],["NCBITaxon%3A1439324","Enterobacter cloacae BIDMC 66"],["NCBITaxon%3A1439325","Enterobacter cloacae BIDMC 67"],["NCBITaxon%3A1329846","Enterobacter cloacae BIDMC 8"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":2,"nb":47,"a":[["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["alkaloids/yersiniabactin.yaml","yersiniabactin"]],"b":[["NCBITaxon%3A630","Yersinia enterocolitica"],["NCBITaxon%3A947561","Yersinia enterocolitica IP2222"],["NCBITaxon%3A1243181","Yersinia enterocolitica IP 10393"],["NCBITaxon%3A1443113","Yersinia enterocolitica LC20"],["NCBITaxon%3A947557","Yersinia enterocolitica NFO"],["NCBITaxon%3A150052","Yersinia enterocolitica subsp. enterocolitica"]]},{"id":"NCBITaxon:65496","l":"Actinoalloteichus","na":2,"nb":37,"a":[["alkaloids/marinacarboline-c.yaml","marinacarboline C"],["unclassified/cyanogramide.yaml","cyanogramide"]],"b":[["NCBITaxon%3A238876","Actinoalloteichus alkalophilus"],["NCBITaxon%3A2893586","Actinoalloteichus caeruleus"],["NCBITaxon%3A1120930","Actinoalloteichus caeruleus DSM 43889"],["NCBITaxon%3A1612552","Actinoalloteichus fjordicus"],["NCBITaxon%3A1470176","Actinoalloteichus hoggarensis"],["NCBITaxon%3A340345","Actinoalloteichus hymeniacidonis"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":2,"nb":35,"a":[["alkaloids/agrobactin.yaml","agrobactin"],["amino_acids_and_peptides/aztreonam.yaml","aztreonam"]],"b":[["NCBITaxon%3A1183421","Agrobacterium fabacearum CFBP 5771"],["NCBITaxon%3A1300224","Agrobacterium fabacearum P4"],["NCBITaxon%3A1183429","Agrobacterium fabacearum S56"],["NCBITaxon%3A1368455","Agrobacterium fabacearum str. Foundi"],["NCBITaxon%3A1183430","Agrobacterium fabacearum TT111"],["NCBITaxon%3A1176649","Agrobacterium fabrum"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":30,"nb":2,"a":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["amino_acids_and_peptides/ditryptophenaline.yaml","(-)-ditryptophenaline"],["amino_acids_and_peptides/imizoquin-a.yaml","imizoquin A"]],"b":[["NCBITaxon%3A5059","Aspergillus flavus"],["NCBITaxon%3A332952","Aspergillus flavus NRRL3357"]]},{"id":"NCBITaxon:2029","l":"Kibdelosporangium","na":2,"nb":29,"a":[["amino_acids_and_peptides/jbir-78.yaml","JBIR-78"],["amino_acids_and_peptides/jbir-95.yaml","JBIR-95"]],"b":[["NCBITaxon%3A2030","Kibdelosporangium aridum"],["NCBITaxon%3A145995","Kibdelosporangium aridum subsp. aridum"],["NCBITaxon%3A145996","Kibdelosporangium aridum subsp. largum"],["NCBITaxon%3A1365924","Kibdelosporangium banguiense"],["NCBITaxon%3A1882231","Kibdelosporangium kanagawaense"],["NCBITaxon%3A1497396","Kibdelosporangium lantanae"]]},{"id":"NCBITaxon:374162","l":"Nostoc carneum","na":2,"nb":29,"a":[["amino_acids_and_peptides/tenuecyclamide-a.yaml","tenuecyclamide A"],["amino_acids_and_peptides/tenuecyclamide-c.yaml","tenuecyclamide C"]],"b":[["NCBITaxon%3A374162","Nostoc carneum"],["NCBITaxon%3A1342287","Nostoc carneum AUS-JR/DB/NT-016"],["NCBITaxon%3A1887370","Nostoc carneum AUS-JR/MT/NT-103"],["NCBITaxon%3A1887371","Nostoc carneum AUS-JR/MT/NT-125"],["NCBITaxon%3A721129","Nostoc carneum BF2"],["NCBITaxon%3A1562734","Nostoc carneum BTA38"]]},{"id":"NCBITaxon:1360","l":"Lactococcus lactis subsp. lactis","na":2,"nb":25,"a":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"],["amino_acids_and_peptides/nisin-a.yaml","nisin A"]],"b":[["NCBITaxon%3A1358","Lactococcus lactis"],["NCBITaxon%3A203404","Lactococcus lactis subsp. hordniae"],["NCBITaxon%3A1348656","Lactococcus lactis subsp. hordniae NBRC 100931"],["NCBITaxon%3A1360","Lactococcus lactis subsp. lactis"],["NCBITaxon%3A1379274","Lactococcus lactis subsp. lactis 1AA59"],["NCBITaxon%3A1137134","Lactococcus lactis subsp. lactis A12"]]},{"id":"NCBITaxon:312885","l":"Raphidiopsis mediterranea","na":2,"nb":25,"a":[["alkaloids/anatoxin-a.yaml","anatoxin-a"],["alkaloids/homoanatoxin-a.yaml","homoanatoxin-a"]],"b":[["NCBITaxon%3A312885","Raphidiopsis mediterranea"],["NCBITaxon%3A1137648","Raphidiopsis mediterranea 07-04"],["NCBITaxon%3A1224695","Raphidiopsis mediterranea AB2011/37"],["NCBITaxon%3A638004","Raphidiopsis mediterranea CHAB1350"],["NCBITaxon%3A638005","Raphidiopsis mediterranea CHAB1353"],["NCBITaxon%3A638006","Raphidiopsis mediterranea CHAB1355"]]},{"id":"NCBITaxon:55","l":"Polyangium","na":2,"nb":25,"a":[["amino_acids_and_peptides/glidobactin-b.yaml","glidobactin B"],["amino_acids_and_peptides/glidobactin-c.yaml","glidobactin C"]],"b":[["NCBITaxon%3A2567896","Polyangium aurulentum"],["NCBITaxon%3A889272","Polyangium fumosum"],["NCBITaxon%3A2829994","Polyangium jinanense"],["NCBITaxon%3A1653851","Polyangium minor"],["NCBITaxon%3A2995306","Polyangium mundeleinium"],["NCBITaxon%3A1653852","Polyangium rugiseptum"]]},{"id":"NCBITaxon:369723","l":"Salinispora tropica CNB-440","na":23,"nb":2,"a":[["alkaloids/lymphostin.yaml","lymphostin"],["alkaloids/lymphostinol.yaml","lymphostinol"],["alkaloids/neolymphostin-b-2.yaml","neolymphostin B"],["alkaloids/neolymphostinol-b.yaml","neolymphostinol B"],["amino_acids_and_peptides/salinosporamide-a.yaml","salinosporamide A"],["fatty_acids/salinipostin-a.yaml","Salinipostin A"]],"b":[["NCBITaxon%3A168695","Salinispora tropica"],["NCBITaxon%3A369723","Salinispora tropica CNB-440"]]},{"id":"NCBITaxon:40559","l":"Botrytis cinerea","na":23,"nb":2,"a":[["terpenoids/1-epibotrydial.yaml","1-epibotrydial"],["terpenoids/10-dehydroxy-dihydrobotrydialone.yaml","10-dehydroxy dihydrobotrydialone"],["terpenoids/10-epi-dihydrobotrydial.yaml","10-epi-dihydrobotrydial"],["terpenoids/10-oxo-dihydrobotrydial.yaml","10-Oxo-dihydrobotrydial"],["terpenoids/10-oxodehydrodihydrobotrydial.yaml","10-Oxodehydrodihydrobotrydial"],["terpenoids/10-oxodihydrobotry-1-9-4-5-diendial.yaml","10-Oxodihydrobotry-1(9),4(5)-diendial"]],"b":[["NCBITaxon%3A40559","Botrytis cinerea"],["NCBITaxon%3A999810","Botrytis cinerea T4"]]},{"id":"NCBITaxon:190968","l":"Hormoscilla spongeliae","na":2,"nb":22,"a":[["shikimates_and_phenylpropanoids/2-4-dibromo-6-2-4-dibromophenoxy-phenol.yaml","2,4-dibromo-6-(2,4-dibromophenoxy)phenol"],["shikimates_and_phenylpropanoids/3-5-dibromo-2-2-4-dibromophenoxy-phenol.yaml","3,5-dibromo-2-(2,4-dibromophenoxy)phenol"]],"b":[["NCBITaxon%3A1490264","Hormoscilla cf. spongeliae DRTO-57.2"],["NCBITaxon%3A190968","Hormoscilla spongeliae"],["NCBITaxon%3A281453","Hormoscilla spongeliae 35P1"],["NCBITaxon%3A281454","Hormoscilla spongeliae 39P1"],["NCBITaxon%3A276773","Hormoscilla spongeliae DYS02155"],["NCBITaxon%3A276772","Hormoscilla spongeliae DYS02158"]]},{"id":"NCBITaxon:224458","l":"Pyxidicoccus","na":2,"nb":21,"a":[["polyketides/pyxipyrrolone-a.yaml","pyxipyrrolone A"],["polyketides/pyxipyrrolone-b.yaml","pyxipyrrolone B"]],"b":[["NCBITaxon%3A2709663","Pyxidicoccus caerfyrddinensis"],["NCBITaxon%3A394095","Pyxidicoccus fallax"],["NCBITaxon%3A2813578","Pyxidicoccus parkwayensis"],["NCBITaxon%3A2023737","Pyxidicoccus sp."],["NCBITaxon%3A3383248","Pyxidicoccus sp. 3LFB2"],["NCBITaxon%3A3383247","Pyxidicoccus sp. 3LG"]]},{"id":"NCBITaxon:305","l":"Ralstonia solanacearum","na":2,"nb":19,"a":[["alkaloids/schizokinen.yaml","schizokinen"],["unclassified/micacocidin.yaml","micacocidin"]],"b":[["NCBITaxon%3A1310165","Ralstonia pseudosolanacearum"],["NCBITaxon%3A305","Ralstonia solanacearum"],["NCBITaxon%3A859656","Ralstonia solanacearum CFBP2957"],["NCBITaxon%3A859655","Ralstonia solanacearum CMR15"],["NCBITaxon%3A1130828","Ralstonia solanacearum FJAT-1458"],["NCBITaxon%3A1130829","Ralstonia solanacearum FJAT-91"]]},{"id":"NCBITaxon:321","l":"Pseudomonas syringae pv. syringae","na":2,"nb":18,"a":[["amino_acids_and_peptides/3-methylarginine.yaml","3-methylarginine"],["unclassified/syringopeptin-25a.yaml","syringopeptin 25A"]],"b":[["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A1449349","Pseudomonas syringae DSM 10604"],["NCBITaxon%3A1154761","Pseudomonas syringae pv. avellanae str. ISPaVe013"],["NCBITaxon%3A1154762","Pseudomonas syringae pv. avellanae str. ISPaVe037"],["NCBITaxon%3A321","Pseudomonas syringae pv. syringae"],["NCBITaxon%3A1357293","Pseudomonas syringae pv. syringae 1212"]]},{"id":"NCBITaxon:455632","l":"Streptomyces griseus subsp. griseus NBRC 13350","na":17,"nb":2,"a":[["alkaloids/grixazone-a.yaml","grixazone A"],["alkaloids/iminimycin-a.yaml","iminimycin A"],["alkaloids/iminimycin-b.yaml","iminimycin B"],["alkaloids/melanin.yaml","melanin"],["carbohydrates/streptomycin.yaml","streptomycin"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"]],"b":[["NCBITaxon%3A1896","Streptomyces bikiniensis"],["NCBITaxon%3A455632","Streptomyces griseus subsp. griseus NBRC 13350"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":2,"nb":16,"a":[["amino_acids_and_peptides/aerobactin.yaml","aerobactin"],["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A1114880","Aeromonas australiensis"],["NCBITaxon%3A1264931","Flavobacterium acidificum"],["NCBITaxon%3A553","Pantoea ananatis"],["NCBITaxon%3A1419326","Pantoea ananatis 15320"],["NCBITaxon%3A932677","Pantoea ananatis AJ13355"],["NCBITaxon%3A1048262","Pantoea ananatis B1-9"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":2,"nb":15,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"],["unclassified/corynebactin.yaml","corynebactin"]],"b":[["NCBITaxon%3A38285","Corynebacterium acetoacidophilum"],["NCBITaxon%3A1718","Corynebacterium glutamicum"],["NCBITaxon%3A196627","Corynebacterium glutamicum ATCC 13032"],["NCBITaxon%3A1079988","Corynebacterium glutamicum ATCC 14067"],["NCBITaxon%3A1204414","Corynebacterium glutamicum K051"],["NCBITaxon%3A1310161","Corynebacterium glutamicum MB001"]]},{"id":"NCBITaxon:55601","l":"Vibrio anguillarum","na":2,"nb":15,"a":[["alkaloids/anguibactin.yaml","anguibactin"],["amino_acids_and_peptides/vanchrobactin.yaml","vanchrobactin"]],"b":[["NCBITaxon%3A1056982","Gordonia phosphorivorans"],["NCBITaxon%3A55601","Vibrio anguillarum"],["NCBITaxon%3A1161910","Vibrio anguillarum 13YK-003"],["NCBITaxon%3A882102","Vibrio anguillarum 775"],["NCBITaxon%3A990314","Vibrio anguillarum 96F"],["NCBITaxon%3A882846","Vibrio anguillarum ATCC 43308"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":2,"nb":14,"a":[["alkaloids/schizokinen.yaml","schizokinen"],["carbohydrates/oxetanocin-a.yaml","oxetanocin A"]],"b":[["NCBITaxon%3A72360","Bacillus mojavensis"],["NCBITaxon%3A1051501","Bacillus mojavensis RO-H-1 = KCTC 3706"],["NCBITaxon%3A1478","Peribacillus simplex"],["NCBITaxon%3A86664","Priestia flexa"],["NCBITaxon%3A1404","Priestia megaterium"],["NCBITaxon%3A592022","Priestia megaterium DSM 319"]]},{"id":"NCBITaxon:69488","l":"Penicillium simplicissimum","na":14,"nb":2,"a":[["polyketides/citreoviridin.yaml","citreoviridin"],["unclassified/andrastin-a.yaml","andrastin A"],["unclassified/okaramine-b.yaml","okaramine B"],["unclassified/okaramine-d.yaml","okaramine D"],["unclassified/paraherquamide.yaml","paraherquamide"],["unclassified/paraherquonin.yaml","paraherquonin"]],"b":[["NCBITaxon%3A1459","Sporosarcina globispora"],["NCBITaxon%3A69488","Penicillium simplicissimum"]]},{"id":"NCBITaxon:1616117","l":"Streptomyces formicae","na":13,"nb":2,"a":[["polyketides/formicamycin-a.yaml","formicamycin A"],["polyketides/formicamycin-b.yaml","formicamycin B"],["polyketides/formicamycin-c.yaml","formicamycin C"],["polyketides/formicamycin-d.yaml","formicamycin D"],["polyketides/formicamycin-e.yaml","formicamycin E"],["polyketides/formicamycin-f.yaml","formicamycin F"]],"b":[["NCBITaxon%3A249409","Hydrogenophaga atypica"],["NCBITaxon%3A1616117","Streptomyces formicae"]]},{"id":"NCBITaxon:406817","l":"Xenorhabdus nematophila ATCC 19061","na":13,"nb":2,"a":[["alkaloids/nematophin.yaml","nematophin"],["amino_acids_and_peptides/rhabdopeptide-1.yaml","rhabdopeptide 1"],["amino_acids_and_peptides/rhabdopeptide-2.yaml","rhabdopeptide 2"],["amino_acids_and_peptides/rhabdopeptide-3.yaml","rhabdopeptide 3"],["amino_acids_and_peptides/rhabdopeptide-4.yaml","rhabdopeptide 4"],["amino_acids_and_peptides/xenortide-a.yaml","xenortide A"]],"b":[["NCBITaxon%3A628","Xenorhabdus nematophila"],["NCBITaxon%3A406817","Xenorhabdus nematophila ATCC 19061"]]},{"id":"NCBITaxon:271848","l":"Burkholderia thailandensis E264","na":12,"nb":2,"a":[["alkaloids/malleobactin-b.yaml","malleobactin B"],["alkaloids/malleobactin-d.yaml","malleobactin D"],["polyketides/malleicyprol.yaml","malleicyprol"],["polyketides/malleilactone.yaml","malleilactone"],["polyketides/thailandamide-lactone.yaml","thailandamide lactone"],["polyketides/thailandamide.yaml","thailandamide"]],"b":[["NCBITaxon%3A57975","Burkholderia thailandensis"],["NCBITaxon%3A271848","Burkholderia thailandensis E264"]]},{"id":"NCBITaxon:33903","l":"Streptomyces avermitilis","na":12,"nb":2,"a":[["alkaloids/melanin.yaml","melanin"],["fatty_acids/butyrolactone.yaml","γ-butyrolactone"],["polyketides/filipin-iii.yaml","filipin III"],["polyketides/oligomycin.yaml","oligomycin"],["polyketides/phthoxazolin.yaml","phthoxazolin"],["terpenoids/avermitilol.yaml","avermitilol"]],"b":[["NCBITaxon%3A33903","Streptomyces avermitilis"],["NCBITaxon%3A227882","Streptomyces avermitilis MA-4680 = NBRC 14893"]]},{"id":"NCBITaxon:47424","l":"Armillaria","na":2,"nb":12,"a":[["carbohydrates/kanamycin-a.yaml","kanamycin A"],["polyketides/nystatin-a1.yaml","nystatin A1"]],"b":[["NCBITaxon%3A1156164","Armillaria altimontana"],["NCBITaxon%3A47425","Armillaria borealis"],["NCBITaxon%3A153910","Armillaria fumosa"],["NCBITaxon%3A108572","Armillaria fuscipes"],["NCBITaxon%3A47427","Armillaria gallica"],["NCBITaxon%3A153913","Armillaria luteobubalina"]]},{"id":"NCBITaxon:47716","l":"Streptomyces olivaceus","na":12,"nb":2,"a":[["alkaloids/prodigiosin-2.yaml","prodigiosin"],["alkaloids/xiamycin-a.yaml","xiamycin A"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["polyketides/elloramycin.yaml","elloramycin"],["polyketides/lobophorin-a.yaml","lobophorin A"],["polyketides/mycemycin-a.yaml","mycemycin A"]],"b":[["NCBITaxon%3A47716","Streptomyces olivaceus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:58340","l":"Streptomyces lavendulae subsp. lavendulae","na":2,"nb":12,"a":[["amino_acids_and_peptides/cycloserine.yaml","cycloserine"],["polyketides/auricin.yaml","auricin"]],"b":[["NCBITaxon%3A1894","Kitasatospora aureofaciens"],["NCBITaxon%3A1914","Streptomyces lavendulae"],["NCBITaxon%3A68190","Streptomyces lavendulae subsp. colombiensis"],["NCBITaxon%3A66421","Streptomyces lavendulae subsp. grasserius"],["NCBITaxon%3A58340","Streptomyces lavendulae subsp. lavendulae"],["NCBITaxon%3A1303691","Streptomyces lavendulae subsp. lavendulae JCM 4055"]]},{"id":"NCBITaxon:1771","l":"Mycolicibacterium phlei","na":2,"nb":11,"a":[["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"],["terpenoids/isorenieratene.yaml","isorenieratene"]],"b":[["NCBITaxon%3A1876","Micromonospora sp."],["NCBITaxon%3A1774","Mycobacteroides chelonae"],["NCBITaxon%3A1771","Mycolicibacterium phlei"],["NCBITaxon%3A1335620","Mycolicibacterium phlei DSM 43070"],["NCBITaxon%3A1384515","Mycolicibacterium phlei DSM 43071"],["NCBITaxon%3A1335621","Mycolicibacterium phlei DSM 43072"]]},{"id":"NCBITaxon:512565","l":"Actinoplanes missouriensis 431","na":11,"nb":2,"a":[["polyketides/6-anteisoheptadecyl-4-o-dihydrogeranyl-2-methoxyhydroquinone.yaml","6-anteisoheptadecyl-4-O-dihydrogeranyl-2-methoxyhydroquinone"],["polyketides/6-isoheptadecyl-4-o-dihydrogeranyl-2-methoxyhydroquinone.yaml","6-isoheptadecyl-4-O-dihydrogeranyl-2-methoxyhydroquinone"],["polyketides/6-palmityl-4-o-dihydrofarnesyl-2-methoxyhydroquinone.yaml","6-palmityl-4-O-dihydrofarnesyl-2-methoxyhydroquinone"],["polyketides/6-palmityl-4-o-geranyl-2-methoxyhydroquinone.yaml","6-palmityl-4-O-geranyl-2-methoxyhydroquinone"],["polyketides/fogacin-2.yaml","fogacin"],["terpenoids/6-anteisoheptadecyl-4-o-dihydrofarnesyl-2-methoxyhydroquinone.yaml","6-anteisoheptadecyl-4-O-dihydrofarnesyl-2-methoxyhydroquinone"]],"b":[["NCBITaxon%3A1866","Actinoplanes missouriensis"],["NCBITaxon%3A512565","Actinoplanes missouriensis 431"]]},{"id":"NCBITaxon:73504","l":"Cladobotryum","na":2,"nb":11,"a":[["alkaloids/cj-15-696.yaml","CJ-15,696"],["unclassified/melinacidin-iv.yaml","melinacidin IV"]],"b":[["NCBITaxon%3A129581","Cladobotryum apiculatum"],["NCBITaxon%3A76881","Cladobotryum asterophorum"],["NCBITaxon%3A2074850","Cladobotryum croceum"],["NCBITaxon%3A491253","Cladobotryum mycophilum"],["NCBITaxon%3A2074851","Cladobotryum obconicum"],["NCBITaxon%3A84680","Cladobotryum penicillatum"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":10,"nb":2,"a":[["amino_acids_and_peptides/lipopeptide-8d1-1.yaml","lipopeptide 8D1-1"],["amino_acids_and_peptides/lipopeptide-8d1-2.yaml","lipopeptide 8D1-2"],["carbohydrates/amicetin.yaml","amicetin"],["carbohydrates/streptothricin-c.yaml","streptothricin C"],["carbohydrates/streptothricin-d.yaml","streptothricin D"],["carbohydrates/streptothricin-e.yaml","streptothricin E"]],"b":[["NCBITaxon%3A1928","Streptomyces rochei"],["NCBITaxon%3A885435","Streptomyces rochei subsp. volubilis"]]},{"id":"NCBITaxon:27334","l":"Penicillium expansum","na":10,"nb":2,"a":[["alkaloids/chaetoglobosin-a.yaml","chaetoglobosin A"],["alkaloids/chaetoglobosin-c.yaml","chaetoglobosin C"],["alkaloids/communesin-a.yaml","communesin A"],["alkaloids/communesin-b.yaml","communesin B"],["alkaloids/communesin-c.yaml","communesin C"],["alkaloids/communesin-d.yaml","communesin D"]],"b":[["NCBITaxon%3A27334","Penicillium expansum"],["NCBITaxon%3A1208580","Penicillium expansum NRRL 62431"]]},{"id":"NCBITaxon:455432","l":"Nocardia terpenica","na":10,"nb":2,"a":[["amino_acids_and_peptides/nocapeptin-a.yaml","nocapeptin A"],["amino_acids_and_peptides/nocathioamide-a.yaml","nocathioamide A"],["polyketides/brasilinolide-a.yaml","brasilinolide A"],["polyketides/brasilinolide-b.yaml","brasilinolide B"],["polyketides/brasilinolide-c.yaml","brasilinolide C"],["polyketides/terpenomycin.yaml","terpenomycin"]],"b":[["NCBITaxon%3A455432","Nocardia terpenica"],["NCBITaxon%3A1206738","Nocardia terpenica NBRC 100888"]]},{"id":"NCBITaxon:953739","l":"Streptomyces venezuelae ATCC 10712","na":10,"nb":2,"a":[["alkaloids/chloramphenicol.yaml","chloramphenicol"],["alkaloids/gaburedin-d.yaml","gaburedin D"],["alkaloids/watasemycin-a.yaml","watasemycin A"],["alkaloids/watasemycin-b.yaml","watasemycin B"],["amino_acids_and_peptides/gaburedin-a.yaml","gaburedin A"],["amino_acids_and_peptides/gaburedin-b.yaml","gaburedin B"]],"b":[["NCBITaxon%3A54571","Streptomyces venezuelae"],["NCBITaxon%3A953739","Streptomyces venezuelae ATCC 10712"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":2,"nb":9,"a":[["alkaloids/biotin.yaml","biotin"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]],"b":[["NCBITaxon%3A28031","Lysinibacillus fusiformis"],["NCBITaxon%3A1130819","Lysinibacillus mangiferihumi"],["NCBITaxon%3A1421","Lysinibacillus sphaericus"],["NCBITaxon%3A444177","Lysinibacillus sphaericus C3-41"],["NCBITaxon%3A1400869","Lysinibacillus sphaericus CBAM5"],["NCBITaxon%3A1354027","Lysinibacillus sphaericus KCTC 3346"]]},{"id":"NCBITaxon:1427518","l":"Xenorhabdus szentirmaii DSM 16338","na":9,"nb":2,"a":[["alkaloids/demethoxygriseoluteic-acid.yaml","demethoxygriseoluteic acid"],["alkaloids/griseoluteic-acid.yaml","griseoluteic acid"],["alkaloids/iodinin.yaml","iodinin"],["alkaloids/phenaszenketide-c.yaml","phenaszenketide C"],["alkaloids/phenaszenketide-d.yaml","phenaszenketide D"],["alkaloids/phenaszentine-a.yaml","phenaszentine A"]],"b":[["NCBITaxon%3A290112","Xenorhabdus szentirmaii"],["NCBITaxon%3A1427518","Xenorhabdus szentirmaii DSM 16338"]]},{"id":"NCBITaxon:204042","l":"Dickeya zeae","na":2,"nb":9,"a":[["fatty_acids/zeamine-ii.yaml","zeamine II"],["fatty_acids/zeamine.yaml","zeamine"]],"b":[["NCBITaxon%3A556","Dickeya chrysanthemi"],["NCBITaxon%3A204042","Dickeya zeae"],["NCBITaxon%3A1223567","Dickeya zeae CSL RW192"],["NCBITaxon%3A1306951","Dickeya zeae DZ2Q"],["NCBITaxon%3A1427366","Dickeya zeae EC1"],["NCBITaxon%3A1224153","Dickeya zeae MK19"]]},{"id":"NCBITaxon:29430","l":"Acinetobacter haemolyticus","na":2,"nb":9,"a":[["alkaloids/acinetoferrin.yaml","acinetoferrin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]],"b":[["NCBITaxon%3A29430","Acinetobacter haemolyticus"],["NCBITaxon%3A707232","Acinetobacter haemolyticus ATCC 19194"],["NCBITaxon%3A1217659","Acinetobacter haemolyticus CIP 64.3 = MTCC 9819"],["NCBITaxon%3A1217986","Acinetobacter haemolyticus NIPH 261"],["NCBITaxon%3A1221297","Acinetobacter haemolyticus TG19599"],["NCBITaxon%3A1221298","Acinetobacter haemolyticus TG19602"]]},{"id":"NCBITaxon:80866","l":"Delftia acidovorans","na":2,"nb":9,"a":[["amino_acids_and_peptides/delftibactin-a.yaml","delftibactin A"],["amino_acids_and_peptides/delftibactin-b.yaml","delftibactin B"]],"b":[["NCBITaxon%3A1872122","Acidovorax sp."],["NCBITaxon%3A80866","Delftia acidovorans"],["NCBITaxon%3A883100","Delftia acidovorans CCUG 15835"],["NCBITaxon%3A883101","Delftia acidovorans CCUG 274B"],["NCBITaxon%3A1218107","Delftia acidovorans NBRC 14950"],["NCBITaxon%3A1255679","Delftia acidovorans PCA12"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":2,"nb":8,"a":[["amino_acids_and_peptides/cupriachelin.yaml","cupriachelin"],["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"]],"b":[["NCBITaxon%3A119219","Cupriavidus metallidurans"],["NCBITaxon%3A106590","Cupriavidus necator"],["NCBITaxon%3A1304882","Cupriavidus necator A5-1"],["NCBITaxon%3A381666","Cupriavidus necator H16"],["NCBITaxon%3A53482","Cupriavidus necator H850"],["NCBITaxon%3A1042878","Cupriavidus necator N-1"]]},{"id":"NCBITaxon:326423","l":"Bacillus velezensis FZB42","na":8,"nb":2,"a":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["polyketides/bacillaene.yaml","bacillaene"],["polyketides/difficidin.yaml","difficidin"],["polyketides/macrolactin-h.yaml","macrolactin H"],["unclassified/corynebactin.yaml","corynebactin"]],"b":[["NCBITaxon%3A492670","Bacillus velezensis"],["NCBITaxon%3A326423","Bacillus velezensis FZB42"]]},{"id":"NCBITaxon:40318","l":"Streptomyces nodosus","na":8,"nb":2,"a":[["alkaloids/melanin.yaml","melanin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/ectoine.yaml","ectoine"],["amino_acids_and_peptides/siamycin-i.yaml","siamycin I"],["fatty_acids/butyrolactone.yaml","γ-butyrolactone"]],"b":[["NCBITaxon%3A40318","Streptomyces nodosus"],["NCBITaxon%3A222892","Streptomyces nodosus subsp. asukaensis"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":8,"nb":2,"a":[["amino_acids_and_peptides/ferrichrome-2.yaml","ferrichrome"],["polyketides/2-acetyl-1-3-6-8-tetrahydroxynaphthalene.yaml","2-acetyl-1,3,6,8-tetrahydroxynaphthalene"],["polyketides/kojic-acid.yaml","kojic acid"],["terpenoids/aphidicolin.yaml","aphidicolin"],["unclassified/2-oxocyclopiazonic-acid.yaml","2-oxocyclopiazonic acid"],["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]],"b":[["NCBITaxon%3A5062","Aspergillus oryzae"],["NCBITaxon%3A510516","Aspergillus oryzae RIB40"]]},{"id":"NCBITaxon:531310","l":"Marinactinospora thermotolerans","na":8,"nb":2,"a":[["alkaloids/marinacarboline-a.yaml","marinacarboline A"],["alkaloids/marinacarboline-b.yaml","marinacarboline B"],["alkaloids/marinacarboline-c.yaml","marinacarboline C"],["alkaloids/marinacarboline-d.yaml","marinacarboline D"],["alkaloids/methylpendolmycin.yaml","methylpendolmycin"],["alkaloids/pendolmycin.yaml","pendolmycin"]],"b":[["NCBITaxon%3A531310","Marinactinospora thermotolerans"],["NCBITaxon%3A1122192","Marinactinospora thermotolerans DSM 45154"]]},{"id":"NCBITaxon:67348","l":"Streptomyces prunicolor","na":8,"nb":2,"a":[["alkaloids/myxofacycline-e.yaml","myxofacycline E"],["alkaloids/myxofacycline-f.yaml","myxofacycline F"],["alkaloids/myxofacycline-g.yaml","myxofacycline G"],["amino_acids_and_peptides/prunipeptin.yaml","prunipeptin"],["fatty_acids/myxofacycline-a.yaml","myxofacycline A"],["fatty_acids/myxofacycline-b.yaml","myxofacycline B"]],"b":[["NCBITaxon%3A67348","Streptomyces prunicolor"],["NCBITaxon%3A1312234","Streptomyces prunicolor NBRC 13075"]]},{"id":"NCBITaxon:356302","l":"Chitinimonas koreensis","na":7,"nb":2,"a":[["amino_acids_and_peptides/chitinimide-a.yaml","chitinimide A"],["amino_acids_and_peptides/chitinimide-b.yaml","chitinimide B"],["amino_acids_and_peptides/chitinimide-c.yaml","chitinimide C"],["amino_acids_and_peptides/chitinimide-d.yaml","chitinimide D"],["amino_acids_and_peptides/chitinimide-e.yaml","chitinimide E"],["amino_acids_and_peptides/chitinimide-f.yaml","chitinimide F"]],"b":[["NCBITaxon%3A356302","Chitinimonas koreensis"],["NCBITaxon%3A1121278","Chitinimonas koreensis DSM 17726"]]},{"id":"NCBITaxon:405948","l":"Saccharopolyspora erythraea NRRL 2338","na":7,"nb":2,"a":[["amino_acids_and_peptides/erythrochelin.yaml","erythrochelin"],["polyketides/erythromycin-a.yaml","erythromycin A"],["polyketides/erythromycin-b.yaml","erythromycin B"],["polyketides/erythromycin-c.yaml","erythromycin C"],["polyketides/erythromycin-d.yaml","erythromycin D"],["polyketides/flaviolin.yaml","flaviolin"]],"b":[["NCBITaxon%3A1836","Saccharopolyspora erythraea"],["NCBITaxon%3A405948","Saccharopolyspora erythraea NRRL 2338"]]},{"id":"NCBITaxon:45398","l":"Streptomyces griseoviridis","na":7,"nb":2,"a":[["alkaloids/prodigiosin-2.yaml","prodigiosin"],["alkaloids/prodigiosin-r1.yaml","Prodigiosin R1"],["alkaloids/prodigiosin-r2.yaml","Prodigiosin R2"],["alkaloids/prodigiosin-r3.yaml","Prodigiosin R3"],["alkaloids/roseophilin.yaml","Roseophilin"],["amino_acids_and_peptides/griseoviridin.yaml","griseoviridin"]],"b":[["NCBITaxon%3A66885","Streptomyces daghestanicus"],["NCBITaxon%3A45398","Streptomyces griseoviridis"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":2,"nb":7,"a":[["amino_acids_and_peptides/vibrioferrin-2.yaml","vibrioferrin"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]],"b":[["NCBITaxon%3A663","Vibrio alginolyticus"],["NCBITaxon%3A314288","Vibrio alginolyticus 12G01"],["NCBITaxon%3A674977","Vibrio alginolyticus 40B"],["NCBITaxon%3A664","Vibrio alginolyticus chemovar iophagus"],["NCBITaxon%3A1219076","Vibrio alginolyticus NBRC 15630 = ATCC 17749"],["NCBITaxon%3A669","Vibrio harveyi"]]},{"id":"NCBITaxon:697284","l":"Paenibacillus larvae subsp. larvae DSM 25430","na":7,"nb":2,"a":[["alkaloids/paenilamicin-a2.yaml","paenilamicin A2"],["alkaloids/paenilamicin-b1.yaml","paenilamicin B1"],["alkaloids/paenilamicin-b2.yaml","paenilamicin B2"],["alkaloids/paenilamicin.yaml","paenilamicin"],["amino_acids_and_peptides/paenilarvin-a.yaml","paenilarvin A"],["amino_acids_and_peptides/paenilarvin-b.yaml","paenilarvin B"]],"b":[["NCBITaxon%3A1464","Paenibacillus larvae"],["NCBITaxon%3A697284","Paenibacillus larvae subsp. larvae DSM 25430"]]},{"id":"NCBITaxon:1445510","l":"Gynuella sunshinyii YC6258","na":6,"nb":2,"a":[["polyketides/lacunalide-a.yaml","lacunalide A"],["polyketides/lacunalide-b.yaml","lacunalide B"],["polyketides/lobatamide-a.yaml","lobatamide A"],["polyketides/tartrolon-d-2.yaml","tartrolon D"],["polyketides/tartrolon-f.yaml","tartrolon F"],["polyketides/tartrolon-g.yaml","tartrolon G"]],"b":[["NCBITaxon%3A1445505","Gynuella sunshinyii"],["NCBITaxon%3A1445510","Gynuella sunshinyii YC6258"]]},{"id":"NCBITaxon:1867","l":"Actinoplanes teichomyceticus","na":6,"nb":2,"a":[["amino_acids_and_peptides/teicoplanin-a2-1.yaml","Teicoplanin A2-1"],["amino_acids_and_peptides/teicoplanin-a2-2.yaml","teicoplanin A2-2"],["amino_acids_and_peptides/teicoplanin-a2-3.yaml","teicoplanin A2-3"],["amino_acids_and_peptides/teicoplanin-a2-4.yaml","teicoplanin A2-4"],["amino_acids_and_peptides/teicoplanin-a2-5.yaml","Teicoplanin A2-5"],["amino_acids_and_peptides/teicoplanin.yaml","teicoplanin"]],"b":[["NCBITaxon%3A1867","Actinoplanes teichomyceticus"],["NCBITaxon%3A457423","Actinoplanes teichomyceticus ATCC 31121"]]},{"id":"NCBITaxon:202862","l":"Streptomyces drozdowiczii","na":6,"nb":2,"a":[["unclassified/marformycin-a.yaml","marformycin A"],["unclassified/marformycin-b.yaml","marformycin B"],["unclassified/marformycin-c.yaml","marformycin C"],["unclassified/marformycin-d.yaml","marformycin D"],["unclassified/marformycin-e.yaml","marformycin E"],["unclassified/marformycin-f.yaml","marformycin F"]],"b":[["NCBITaxon%3A202862","Streptomyces drozdowiczii"],["NCBITaxon%3A1302724","Streptomyces drozdowiczii JCM 13580"]]},{"id":"NCBITaxon:278992","l":"Streptomyces ambofaciens ATCC 23877","na":6,"nb":2,"a":[["alkaloids/congocidine.yaml","congocidine"],["polyketides/spiramycin.yaml","spiramycin"],["polyketides/stambomycin-a.yaml","stambomycin A"],["polyketides/stambomycin-b.yaml","stambomycin B"],["polyketides/stambomycin-c.yaml","stambomycin C"],["polyketides/stambomycin-d.yaml","stambomycin D"]],"b":[["NCBITaxon%3A1889","Streptomyces ambofaciens"],["NCBITaxon%3A278992","Streptomyces ambofaciens ATCC 23877"]]},{"id":"NCBITaxon:44250","l":"Paenibacillus alvei","na":2,"nb":6,"a":[["amino_acids_and_peptides/colistin-a.yaml","colistin A"],["amino_acids_and_peptides/colistin-b.yaml","colistin B"]],"b":[["NCBITaxon%3A44250","Paenibacillus alvei"],["NCBITaxon%3A1117109","Paenibacillus alvei A6-6i-x"],["NCBITaxon%3A1206781","Paenibacillus alvei DSM 29"],["NCBITaxon%3A707255","Paenibacillus alvei NAS6G-6"],["NCBITaxon%3A1117108","Paenibacillus alvei TS-15"],["NCBITaxon%3A49283","Paenibacillus thiaminolyticus"]]},{"id":"NCBITaxon:47763","l":"Streptomyces lydicus","na":6,"nb":2,"a":[["amino_acids_and_peptides/ectoine.yaml","ectoine"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"],["polyketides/erythromycin-a.yaml","erythromycin A"],["polyketides/natamycin.yaml","natamycin"],["polyketides/streptolydigin.yaml","streptolydigin"],["unclassified/lydicamycin.yaml","lydicamycin"]],"b":[["NCBITaxon%3A47763","Streptomyces lydicus"],["NCBITaxon%3A1382545","Streptomyces lydicus A01"]]},{"id":"NCBITaxon:882378","l":"","na":6,"nb":2,"a":[["amino_acids_and_peptides/endopyrrole-b.yaml","endopyrrole B"],["amino_acids_and_peptides/holrhizin-a.yaml","holrhizin A"],["amino_acids_and_peptides/holrhizin-b.yaml","holrhizin B"],["amino_acids_and_peptides/holrhizin-c.yaml","holrhizin C"],["amino_acids_and_peptides/holrhizin-d.yaml","holrhizin D"],["unclassified/endopyrrole-a.yaml","endopyrrole A"]],"b":[["NCBITaxon%3A412963","Mycetohabitans rhizoxinica"],["NCBITaxon%3A882378","Mycetohabitans rhizoxinica HKI 454"]]},{"id":"NCBITaxon:1223523","l":"Streptomyces mobaraensis NBRC 13819 = DSM 40847","na":5,"nb":2,"a":[["amino_acids_and_peptides/bleomycin-a2.yaml","bleomycin A2"],["amino_acids_and_peptides/bleomycin-b2.yaml","bleomycin B2"],["amino_acids_and_peptides/cyclothiazomycin-b1.yaml","cyclothiazomycin b1"],["amino_acids_and_peptides/ketomemicin-b3.yaml","ketomemicin B3"],["amino_acids_and_peptides/ketomemicin-b4.yaml","ketomemicin B4"]],"b":[["NCBITaxon%3A35621","Streptomyces mobaraensis"],["NCBITaxon%3A1223523","Streptomyces mobaraensis NBRC 13819 = DSM 40847"]]},{"id":"NCBITaxon:1445505","l":"Gynuella sunshinyii","na":5,"nb":2,"a":[["polyketides/lacunalide-a.yaml","lacunalide A"],["polyketides/lacunalide-b.yaml","lacunalide B"],["polyketides/lobatamide-a.yaml","lobatamide A"],["polyketides/tartrolon-f.yaml","tartrolon F"],["polyketides/tartrolon-g.yaml","tartrolon G"]],"b":[["NCBITaxon%3A1445505","Gynuella sunshinyii"],["NCBITaxon%3A1445510","Gynuella sunshinyii YC6258"]]},{"id":"NCBITaxon:224308","l":"Bacillus subtilis (strain 168)","na":2,"nb":5,"a":[["unclassified/corynebactin.yaml","corynebactin"],["unclassified/pulcherriminic-acid.yaml","pulcherriminic acid"]],"b":[["NCBITaxon%3A1423","Bacillus subtilis"],["NCBITaxon%3A135461","Bacillus subtilis subsp. subtilis"],["NCBITaxon%3A224308","Bacillus subtilis subsp. subtilis str. 168"],["NCBITaxon%3A536088","Bacillus subtilis subsp. subtilis str. L170"],["NCBITaxon%3A536089","Bacillus subtilis subsp. subtilis str. N170"]]},{"id":"NCBITaxon:28044","l":"Streptomyces longisporoflavus","na":5,"nb":2,"a":[["alkaloids/k-252a.yaml","K-252a"],["alkaloids/staurosporine-2.yaml","staurosporine"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/cinnamycin.yaml","cinnamycin"],["polyketides/tetronasin.yaml","tetronasin"]],"b":[["NCBITaxon%3A28044","Streptomyces longisporoflavus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:285562","l":"Streptomyces coelicoflavus","na":5,"nb":2,"a":[["carbohydrates/acarviostatin-i03.yaml","acarviostatin I03"],["carbohydrates/acarviostatin-ii03.yaml","acarviostatin II03"],["carbohydrates/acarviostatin-iii03.yaml","acarviostatin III03"],["carbohydrates/acarviostatin-iv03.yaml","acarviostatin IV03"],["polyketides/borrelidin.yaml","borrelidin"]],"b":[["NCBITaxon%3A285562","Streptomyces coelicoflavus"],["NCBITaxon%3A1120227","Streptomyces coelicoflavus ZG0656"]]},{"id":"NCBITaxon:29303","l":"Streptomyces cattleya","na":5,"nb":2,"a":[["amino_acids_and_peptides/cattlecin.yaml","cattlecin"],["amino_acids_and_peptides/clavulanic-acid.yaml","clavulanic acid"],["amino_acids_and_peptides/ethynylserine.yaml","β-ethynylserine"],["amino_acids_and_peptides/thienamycin.yaml","thienamycin"],["terpenoids/cattleyene.yaml","cattleyene"]],"b":[["NCBITaxon%3A29303","Streptantibioticus cattleyicolor"],["NCBITaxon%3A1003195","Streptantibioticus cattleyicolor NRRL 8057 = DSM 46488"]]},{"id":"NCBITaxon:31959","l":"Amycolatopsis lurida","na":5,"nb":2,"a":[["amino_acids_and_peptides/desmethyl-ristocetin-a.yaml","Desmethyl ristocetin A"],["amino_acids_and_peptides/desmethyl-ristocetin-b.yaml","Desmethyl ristocetin B"],["amino_acids_and_peptides/ristocetin-a.yaml","Ristocetin A"],["amino_acids_and_peptides/ristocetin-b.yaml","Ristocetin B"],["amino_acids_and_peptides/ristomycin-a.yaml","ristomycin A"]],"b":[["NCBITaxon%3A31959","Amycolatopsis lurida"],["NCBITaxon%3A1460371","Amycolatopsis lurida NRRL 2430"]]},{"id":"NCBITaxon:42235","l":"Streptomyces bottropensis","na":5,"nb":2,"a":[["amino_acids_and_peptides/bottromycin-a2-2.yaml","bottromycin A2"],["polyketides/mensacaricin.yaml","mensacaricin"],["polyketides/rishirilide-a.yaml","rishirilide A"],["polyketides/trioxacarcin-a.yaml","trioxacarcin A"],["unclassified/rishirilide-b.yaml","rishirilide B"]],"b":[["NCBITaxon%3A42235","Streptomyces bottropensis"],["NCBITaxon%3A1054862","Streptomyces bottropensis ATCC 25435"]]},{"id":"NCBITaxon:43","l":"Cystobacter fuscus","na":5,"nb":2,"a":[["amino_acids_and_peptides/cystomanamide-a.yaml","cystomanamide A"],["amino_acids_and_peptides/cystomanamide-b.yaml","cystomanamide B"],["amino_acids_and_peptides/cystomanamide-c.yaml","cystomanamide C"],["amino_acids_and_peptides/cystomanamide-d.yaml","cystomanamide D"],["unclassified/cystothiazole-a.yaml","cystothiazole A"]],"b":[["NCBITaxon%3A43","Cystobacter fuscus"],["NCBITaxon%3A1242864","Cystobacter fuscus DSM 2262"]]},{"id":"NCBITaxon:43658","l":"Pseudoalteromonas rubra","na":5,"nb":2,"a":[["alkaloids/prodigiosin.yaml","prodigiosin"],["polyketides/nonyltyrazolone.yaml","nonyltyrazolone"],["polyketides/undecyltyrazolone.yaml","undecyltyrazolone"],["shikimates_and_phenylpropanoids/z-6-undecenyltyrazolone.yaml","(Z)-ω-6-undecenyltyrazolone"],["unclassified/heptyltyrazolone.yaml","heptyltyrazolone"]],"b":[["NCBITaxon%3A43658","Pseudoalteromonas rubra"],["NCBITaxon%3A1117318","Pseudoalteromonas rubra DSM 6842"]]},{"id":"NCBITaxon:479432","l":"Streptosporangium roseum DSM 43021","na":5,"nb":2,"a":[["polyketides/benaphthamycin.yaml","benaphthamycin"],["polyketides/ws-79089a.yaml","WS 79089A"],["polyketides/ws-79089b.yaml","WS 79089B"],["polyketides/ws-79089c.yaml","WS 79089C"],["polyketides/ws-79089d.yaml","WS 79089D"]],"b":[["NCBITaxon%3A2001","Streptosporangium roseum"],["NCBITaxon%3A479432","Streptosporangium roseum DSM 43021"]]},{"id":"NCBITaxon:66854","l":"Saccharothrix mutabilis subsp. capreolus","na":5,"nb":2,"a":[["amino_acids_and_peptides/capreomycin-ia.yaml","capreomycin IA"],["amino_acids_and_peptides/capreomycin-ib.yaml","capreomycin IB"],["amino_acids_and_peptides/capreomycin-iia.yaml","capreomycin IIA"],["amino_acids_and_peptides/capreomycin-iib.yaml","capreomycin IIB"],["unclassified/a-201a.yaml","A-201A"]],"b":[["NCBITaxon%3A33921","Saccharothrix mutabilis"],["NCBITaxon%3A66854","Saccharothrix mutabilis subsp. capreolus"]]},{"id":"NCBITaxon:67255","l":"Streptomyces achromogenes","na":2,"nb":5,"a":[["alkaloids/tomaymycin.yaml","tomaymycin"],["carbohydrates/streptozotocin.yaml","streptozotocin"]],"b":[["NCBITaxon%3A67255","Streptomyces achromogenes"],["NCBITaxon%3A67256","Streptomyces achromogenes subsp. achromogenes"],["NCBITaxon%3A285532","Streptomyces achromogenes subsp. streptozoticus"],["NCBITaxon%3A285497","Streptomyces achromogenes subsp. tomaymyceticus"],["NCBITaxon%3A285531","Streptomyces rubradiris"]]},{"id":"NCBITaxon:67373","l":"Streptomyces varsoviensis","na":5,"nb":2,"a":[["amino_acids_and_peptides/thiovarsolin-a.yaml","thiovarsolin A"],["amino_acids_and_peptides/thiovarsolin-b.yaml","thiovarsolin B"],["amino_acids_and_peptides/thiovarsolin-c.yaml","thiovarsolin C"],["amino_acids_and_peptides/thiovarsolin-d.yaml","thiovarsolin D"],["polyketides/jbir-100.yaml","JBIR-100"]],"b":[["NCBITaxon%3A68230","Streptomyces longispororuber"],["NCBITaxon%3A67373","Streptomyces varsoviensis"]]},{"id":"NCBITaxon:1224742","l":"","na":4,"nb":2,"a":[["polyketides/amphi-enterobactin-1.yaml","Amphi-enterobactin 1"],["polyketides/amphi-enterobactin-2.yaml","amphi-enterobactin 2"],["polyketides/amphi-enterobactin-3.yaml","amphi-enterobactin 3"],["polyketides/amphi-enterobactin-4.yaml","amphi-enterobactin 4"]],"b":[["NCBITaxon%3A680","Vibrio campbellii"],["NCBITaxon%3A1224742","Vibrio campbellii CAIM 519 = NBRC 15631 = ATCC 25920"]]},{"id":"NCBITaxon:132919","l":"Rhodococcus jostii","na":2,"nb":4,"a":[["amino_acids_and_peptides/lariatin.yaml","lariatin"],["unclassified/rhodochelin.yaml","rhodochelin"]],"b":[["NCBITaxon%3A1850366","Paenibacillus rhizophilus"],["NCBITaxon%3A132919","Rhodococcus jostii"],["NCBITaxon%3A1219017","Rhodococcus jostii NBRC 16295"],["NCBITaxon%3A101510","Rhodococcus jostii RHA1"]]},{"id":"NCBITaxon:136926","l":"","na":4,"nb":2,"a":[["polyketides/megalomicin-a.yaml","megalomicin A"],["polyketides/megalomicin-b.yaml","megalomicin B"],["polyketides/megalomicin-c1.yaml","megalomicin C1"],["polyketides/megalomicin-c2.yaml","megalomicin C2"]],"b":[["NCBITaxon%3A136926","Micromonospora megalomicea subsp. nigra"],["NCBITaxon%3A1876","Micromonospora sp."]]},{"id":"NCBITaxon:1458930","l":"Okeania hirsuta","na":2,"nb":4,"a":[["amino_acids_and_peptides/malyngamide-c-acetate.yaml","malyngamide C acetate"],["amino_acids_and_peptides/malyngamide-i.yaml","malyngamide I"]],"b":[["NCBITaxon%3A1458930","Okeania hirsuta"],["NCBITaxon%3A1387524","Okeania hirsuta NAC11-70"],["NCBITaxon%3A1387527","Okeania hirsuta PAB-10-Feb-10-1"],["NCBITaxon%3A1387528","Okeania hirsuta PAB-21-JUN-10-2"]]},{"id":"NCBITaxon:1889","l":"Streptomyces ambofaciens","na":4,"nb":2,"a":[["alkaloids/congocidine.yaml","congocidine"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["polyketides/spiramycin.yaml","spiramycin"],["polyketides/stambomycin-a.yaml","stambomycin A"]],"b":[["NCBITaxon%3A1889","Streptomyces ambofaciens"],["NCBITaxon%3A278992","Streptomyces ambofaciens ATCC 23877"]]},{"id":"NCBITaxon:1924","l":"Streptomyces purpurascens","na":2,"nb":4,"a":[["polyketides/concanamycin-a.yaml","concanamycin A"],["polyketides/rhodomycin.yaml","rhodomycin"]],"b":[["NCBITaxon%3A66865","Streptomyces afghaniensis"],["NCBITaxon%3A1924","Streptomyces purpurascens"],["NCBITaxon%3A67360","Streptomyces roseoviolaceus"],["NCBITaxon%3A1936","Streptomyces violaceus"]]},{"id":"NCBITaxon:193462","l":"Streptomyces niveus","na":4,"nb":2,"a":[["alkaloids/phenaziterpene-a.yaml","phenaziterpene A"],["carbohydrates/kanamycin-a.yaml","kanamycin A"],["shikimates_and_phenylpropanoids/cathomycin.yaml","cathomycin"],["unclassified/be-14106.yaml","BE-14106"]],"b":[["NCBITaxon%3A193462","Streptomyces niveus"],["NCBITaxon%3A1352941","Streptomyces niveus NCIMB 11891"]]},{"id":"NCBITaxon:196914","l":"Actinoplanes friuliensis","na":4,"nb":2,"a":[["amino_acids_and_peptides/friulimicin-a.yaml","friulimicin A"],["amino_acids_and_peptides/friulimicin-b.yaml","friulimicin B"],["unclassified/friulimicin-c.yaml","friulimicin C"],["unclassified/friulimicin-d.yaml","friulimicin D"]],"b":[["NCBITaxon%3A196914","Actinoplanes friuliensis"],["NCBITaxon%3A1246995","Actinoplanes friuliensis DSM 7358"]]},{"id":"NCBITaxon:227882","l":"","na":4,"nb":2,"a":[["amino_acids_and_peptides/edha.yaml","EDHA"],["polyketides/filipin-iii.yaml","filipin III"],["terpenoids/avermitilol.yaml","avermitilol"],["terpenoids/pentalenolactone.yaml","pentalenolactone"]],"b":[["NCBITaxon%3A33903","Streptomyces avermitilis"],["NCBITaxon%3A227882","Streptomyces avermitilis MA-4680 = NBRC 14893"]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":2,"nb":4,"a":[["carbohydrates/legionaminic-acid.yaml","legionaminic acid"],["carbohydrates/pseudaminate.yaml","pseudaminate"]],"b":[["NCBITaxon%3A28112","Tannerella forsythia"],["NCBITaxon%3A1307832","Tannerella forsythia 3313"],["NCBITaxon%3A203275","Tannerella forsythia 92A2"],["NCBITaxon%3A1307833","Tannerella forsythia KS16"]]},{"id":"NCBITaxon:392500","l":"Shewanella woodyi ATCC 51908","na":4,"nb":2,"a":[["fatty_acids/woodybactin-d.yaml","woodybactin D"],["unclassified/woodybactin-a.yaml","woodybactin A"],["unclassified/woodybactin-b.yaml","woodybactin B"],["unclassified/woodybactin-c.yaml","woodybactin C"]],"b":[["NCBITaxon%3A60961","Shewanella woodyi"],["NCBITaxon%3A392500","Shewanella woodyi ATCC 51908"]]},{"id":"NCBITaxon:412963","l":"","na":4,"nb":2,"a":[["amino_acids_and_peptides/endopyrrole-b.yaml","endopyrrole B"],["amino_acids_and_peptides/holrhizin-a.yaml","holrhizin A"],["unclassified/endopyrrole-a.yaml","endopyrrole A"],["unclassified/rhizoxin-a.yaml","rhizoxin A"]],"b":[["NCBITaxon%3A412963","Mycetohabitans rhizoxinica"],["NCBITaxon%3A882378","Mycetohabitans rhizoxinica HKI 454"]]},{"id":"NCBITaxon:51201","l":"Streptomyces griseocarneus","na":2,"nb":4,"a":[["alkaloids/pimprinine.yaml","pimprinine"],["carbohydrates/5-hydroxystreptomycin.yaml","5'-hydroxystreptomycin"]],"b":[["NCBITaxon%3A173770","Streptomyces alboverticillatus"],["NCBITaxon%3A51201","Streptomyces griseocarneus"],["NCBITaxon%3A156648","Streptomyces septatus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:5581","l":"Beauveria","na":2,"nb":4,"a":[["unclassified/beauveriolide-i.yaml","beauveriolide I"],["unclassified/beauveriolide-iii.yaml","beauveriolide III"]],"b":[["NCBITaxon%3A176275","Beauveria bassiana"],["NCBITaxon%3A118266","Beauveria brongniartii"],["NCBITaxon%3A371061","Beauveria malawiensis"],["NCBITaxon%3A1481906","Beauveria rudraprayagi"]]},{"id":"NCBITaxon:60961","l":"Shewanella woodyi","na":4,"nb":2,"a":[["fatty_acids/woodybactin-d.yaml","woodybactin D"],["unclassified/woodybactin-a.yaml","woodybactin A"],["unclassified/woodybactin-b.yaml","woodybactin B"],["unclassified/woodybactin-c.yaml","woodybactin C"]],"b":[["NCBITaxon%3A60961","Shewanella woodyi"],["NCBITaxon%3A392500","Shewanella woodyi ATCC 51908"]]},{"id":"NCBITaxon:67257","l":"Streptomyces albus subsp. albus","na":2,"nb":4,"a":[["alkaloids/porothramycin-a.yaml","porothramycin A"],["alkaloids/tambjamine-be-18591.yaml","tambjamine BE-18591"]],"b":[["NCBITaxon%3A1888","Streptomyces albus"],["NCBITaxon%3A67257","Streptomyces albus subsp. albus"],["NCBITaxon%3A1081613","Streptomyces albus subsp. albus DSM 41398"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:67274","l":"Streptomyces argenteolus","na":2,"nb":4,"a":[["amino_acids_and_peptides/carbapenem-mm4550.yaml","carbapenem MM4550"],["terpenoids/ks-505a.yaml","KS-505a"]],"b":[["NCBITaxon%3A67274","Streptomyces argenteolus"],["NCBITaxon%3A285516","Streptomyces argenteolus subsp. toyonakensis"],["NCBITaxon%3A1911","Streptomyces griseus"],["NCBITaxon%3A67263","Streptomyces griseus subsp. griseus"]]},{"id":"NCBITaxon:68174","l":"Streptomyces anthocyanicus","na":4,"nb":2,"a":[["polyketides/hatomarubigin-a.yaml","hatomarubigin A"],["polyketides/hatomarubigin-b.yaml","hatomarubigin B"],["polyketides/hatomarubigin-c.yaml","hatomarubigin C"],["polyketides/hatomarubigin-d.yaml","hatomarubigin D"]],"b":[["NCBITaxon%3A68174","Streptomyces anthocyanicus"],["NCBITaxon%3A1935","Streptomyces violaceoruber"]]},{"id":"NCBITaxon:68214","l":"Streptomyces griseochromogenes","na":4,"nb":2,"a":[["carbohydrates/blasticidin-s.yaml","blasticidin S"],["carbohydrates/streptothricin-f.yaml","streptothricin F"],["polyketides/tautomycetin-2.yaml","tautomycetin"],["polyketides/tautomycetin.yaml","tautomycetin"]],"b":[["NCBITaxon%3A68214","Streptomyces griseochromogenes"],["NCBITaxon%3A285477","Streptomyces griseochromogenes subsp. suitaensis"]]},{"id":"NCBITaxon:703612","l":"","na":4,"nb":2,"a":[["amino_acids_and_peptides/mycosubtilin.yaml","mycosubtilin"],["amino_acids_and_peptides/rhizocticin-a.yaml","rhizocticin A"],["amino_acids_and_peptides/subtilin.yaml","subtilin"],["amino_acids_and_peptides/subtilosin-a.yaml","subtilosin A"]],"b":[["NCBITaxon%3A96241","Bacillus spizizenii"],["NCBITaxon%3A703612","Bacillus spizizenii ATCC 6633 = JCM 2499"]]},{"id":"NCBITaxon:76728","l":"Streptomyces vitaminophilus","na":4,"nb":2,"a":[["alkaloids/pyrrolomycin-a.yaml","pyrrolomycin A"],["alkaloids/pyrrolomycin-b.yaml","pyrrolomycin B"],["alkaloids/pyrrolomycin-c.yaml","pyrrolomycin C"],["alkaloids/pyrrolomycin-d.yaml","pyrrolomycin D"]],"b":[["NCBITaxon%3A76728","Wenjunlia vitaminophila"],["NCBITaxon%3A1123322","Wenjunlia vitaminophila DSM 41686"]]},{"id":"NCBITaxon:1003195","l":"","na":3,"nb":2,"a":[["amino_acids_and_peptides/cattlecin.yaml","cattlecin"],["amino_acids_and_peptides/ethynylserine.yaml","β-ethynylserine"],["terpenoids/cattleyene.yaml","cattleyene"]],"b":[["NCBITaxon%3A29303","Streptantibioticus cattleyicolor"],["NCBITaxon%3A1003195","Streptantibioticus cattleyicolor NRRL 8057 = DSM 46488"]]},{"id":"NCBITaxon:103232","l":"Streptomyces ipomoeae","na":3,"nb":2,"a":[["amino_acids_and_peptides/thaxtomin-c.yaml","thaxtomin C"],["unclassified/thaxtomin-a.yaml","thaxtomin A"],["unclassified/thaxtomin-b.yaml","thaxtomin B"]],"b":[["NCBITaxon%3A103232","Streptomyces ipomoeae"],["NCBITaxon%3A698759","Streptomyces ipomoeae 91-03"]]},{"id":"NCBITaxon:103721","l":"Actinosynnema pretiosum subsp. pretiosum","na":3,"nb":2,"a":[["polyketides/ansamitocin-p3.yaml","ansamitocin P3"],["polyketides/macbecin-ii.yaml","macbecin II"],["polyketides/macbecin.yaml","macbecin"]],"b":[["NCBITaxon%3A42197","Actinosynnema pretiosum"],["NCBITaxon%3A103721","Actinosynnema pretiosum subsp. pretiosum"]]},{"id":"NCBITaxon:1120925","l":"Acinetobacter bouvetii DSM 14964 = CIP 107468","na":3,"nb":2,"a":[["alkaloids/butanochelin.yaml","butanochelin"],["alkaloids/pentanochelin.yaml","pentanochelin"],["alkaloids/propanochelin.yaml","propanochelin"]],"b":[["NCBITaxon%3A202951","Acinetobacter bouvetii"],["NCBITaxon%3A1120925","Acinetobacter bouvetii DSM 14964 = CIP 107468"]]},{"id":"NCBITaxon:115647","l":"Streptomyces ansochromogenes","na":2,"nb":3,"a":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"],["polyketides/oviedomycin.yaml","oviedomycin"]],"b":[["NCBITaxon%3A115647","Streptomyces ansochromogenes"],["NCBITaxon%3A285459","Streptomyces ansochromogenes subsp. ansochromogenes"],["NCBITaxon%3A2306568","Streptomyces ansochromogenes subsp. pallens"]]},{"id":"NCBITaxon:146923","l":"Streptomyces parvulus","na":3,"nb":2,"a":[["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["polyketides/borrelidin.yaml","borrelidin"]],"b":[["NCBITaxon%3A146923","Streptomyces parvulus"],["NCBITaxon%3A515263","Streptomyces parvulus subsp. citrinus"]]},{"id":"NCBITaxon:158327","l":"Hahella chejuensis","na":3,"nb":2,"a":[["alkaloids/prodigiosin-2.yaml","prodigiosin"],["terpenoids/chejuenolide-a.yaml","chejuenolide A"],["terpenoids/chejuenolide-b.yaml","chejuenolide B"]],"b":[["NCBITaxon%3A158327","Hahella chejuensis"],["NCBITaxon%3A349521","Hahella chejuensis KCTC 2396"]]},{"id":"NCBITaxon:1703","l":"Brevibacterium linens","na":2,"nb":3,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"],["terpenoids/isorenieratene.yaml","isorenieratene"]],"b":[["NCBITaxon%3A273384","Brevibacterium aurantiacum"],["NCBITaxon%3A1703","Brevibacterium linens"],["NCBITaxon%3A1255617","Brevibacterium linens ATCC 9172"]]},{"id":"NCBITaxon:171437","l":"Tistrella mobilis","na":3,"nb":2,"a":[["unclassified/didemnin-x.yaml","didemnin X"],["unclassified/didemnin-y.yaml","didemnin Y"],["unclassified/nordidemnin-b.yaml","nordidemnin B"]],"b":[["NCBITaxon%3A171437","Tistrella mobilis"],["NCBITaxon%3A1110502","Tistrella mobilis KA081020-065"]]},{"id":"NCBITaxon:176299","l":"Agrobacterium fabrum (strain C58 / ATCC 33970)","na":2,"nb":3,"a":[["amino_acids_and_peptides/fabrubactin-a.yaml","fabrubactin A"],["amino_acids_and_peptides/fabrubactin-b.yaml","fabrubactin B"]],"b":[["NCBITaxon%3A1176649","Agrobacterium fabrum"],["NCBITaxon%3A176299","Agrobacterium fabrum str. C58"],["NCBITaxon%3A362","Agrobacterium radiobacter"]]},{"id":"NCBITaxon:184914","l":"Corallococcus coralloides","na":3,"nb":2,"a":[["amino_acids_and_peptides/myxovalargin-a.yaml","myxovalargin A"],["polyketides/corallopyronin.yaml","corallopyronin"],["polyketides/phenalamide.yaml","phenalamide"]],"b":[["NCBITaxon%3A184914","Corallococcus coralloides"],["NCBITaxon%3A1144275","Corallococcus coralloides DSM 2259"]]},{"id":"NCBITaxon:1857892","l":"Streptomyces sp. MP131-18","na":3,"nb":2,"a":[["polyketides/lagunapyrone-a.yaml","lagunapyrone A"],["polyketides/lagunapyrone-b.yaml","lagunapyrone B"],["polyketides/lagunapyrone-c.yaml","lagunapyrone C"]],"b":[["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A1857892","Streptomyces sp. MP131-18"]]},{"id":"NCBITaxon:1904","l":"Streptomyces cyaneus","na":3,"nb":2,"a":[["carbohydrates/curamycin.yaml","curamycin"],["polyketides/cardol.yaml","cardol"],["polyketides/cosmomycin-d.yaml","cosmomycin D"]],"b":[["NCBITaxon%3A146537","Streptomyces azureus"],["NCBITaxon%3A1904","Streptomyces cyaneus"]]},{"id":"NCBITaxon:202951","l":"Acinetobacter bouvetii","na":3,"nb":2,"a":[["alkaloids/butanochelin.yaml","butanochelin"],["alkaloids/pentanochelin.yaml","pentanochelin"],["alkaloids/propanochelin.yaml","propanochelin"]],"b":[["NCBITaxon%3A202951","Acinetobacter bouvetii"],["NCBITaxon%3A1120925","Acinetobacter bouvetii DSM 14964 = CIP 107468"]]},{"id":"NCBITaxon:210996","l":"Hapalosiphon delicatulus","na":2,"nb":3,"a":[["alkaloids/ambiguine-a-isonitrile.yaml","ambiguine A isonitrile"],["alkaloids/ambiguine-b-isonitrile.yaml","ambiguine B isonitrile"]],"b":[["NCBITaxon%3A1538296","Hapalosiphon cf. delicatulus HCyG"],["NCBITaxon%3A210996","Hapalosiphon delicatulus"],["NCBITaxon%3A210997","Hapalosiphon delicatulus IAM M-266"]]},{"id":"NCBITaxon:216591","l":"Burkholderia cenocepacia J2315","na":3,"nb":2,"a":[["unclassified/ornibactin-c4.yaml","ornibactin C4"],["unclassified/ornibactin-c6.yaml","ornibactin C6"],["unclassified/ornibactin-c8.yaml","ornibactin C8"]],"b":[["NCBITaxon%3A95486","Burkholderia cenocepacia"],["NCBITaxon%3A216591","Burkholderia cenocepacia J2315"]]},{"id":"NCBITaxon:29309","l":"Streptomyces verticillus","na":3,"nb":2,"a":[["amino_acids_and_peptides/bleomycin-a2.yaml","bleomycin A2"],["amino_acids_and_peptides/bleomycin-b2.yaml","bleomycin B2"],["amino_acids_and_peptides/bleomycin.yaml","bleomycin"]],"b":[["NCBITaxon%3A35621","Streptomyces mobaraensis"],["NCBITaxon%3A29309","Streptomyces verticillus"]]},{"id":"NCBITaxon:316280","l":"Streptomyces peucetius subsp. caesius ATCC 27952","na":2,"nb":3,"a":[["amino_acids_and_peptides/peucechelin.yaml","peucechelin"],["polyketides/14-hydroxyisochainin.yaml","14-hydroxyisochainin"]],"b":[["NCBITaxon%3A1950","Streptomyces peucetius"],["NCBITaxon%3A55158","Streptomyces peucetius subsp. caesius"],["NCBITaxon%3A316280","Streptomyces peucetius subsp. caesius ATCC 27952"]]},{"id":"NCBITaxon:316284","l":"Streptomyces noursei ATCC 11455","na":3,"nb":2,"a":[["amino_acids_and_peptides/dechlorocuracomycin.yaml","dechlorocuracomycin"],["polyketides/nystatin-a1.yaml","nystatin A1"],["unclassified/albonoursin.yaml","albonoursin"]],"b":[["NCBITaxon%3A1971","Streptomyces noursei"],["NCBITaxon%3A316284","Streptomyces noursei ATCC 11455"]]},{"id":"NCBITaxon:35717","l":"Epichloe festucae","na":2,"nb":3,"a":[["alkaloids/peramine.yaml","peramine"],["amino_acids_and_peptides/epichloenin-a.yaml","epichloenin A"]],"b":[["NCBITaxon%3A35717","Epichloe festucae"],["NCBITaxon%3A877507","Epichloe festucae Fl1"],["NCBITaxon%3A73839","Epichloe festucae var. lolii"]]},{"id":"NCBITaxon:36746","l":"Pseudomonas cichorii","na":2,"nb":3,"a":[["amino_acids_and_peptides/cichofactin-a.yaml","cichofactin A"],["amino_acids_and_peptides/cichofactin-b.yaml","cichofactin B"]],"b":[["NCBITaxon%3A2488639","Pectobacterium versatile"],["NCBITaxon%3A36746","Pseudomonas cichorii"],["NCBITaxon%3A1441629","Pseudomonas cichorii JBC1"]]},{"id":"NCBITaxon:38300","l":"Streptomyces pristinaespiralis","na":2,"nb":3,"a":[["amino_acids_and_peptides/pristinin-a3.yaml","pristinin A3"],["terpenoids/2s-3r-9r-pristinol.yaml","(+)-(2S,3R,9R)-pristinol"]],"b":[["NCBITaxon%3A38300","Streptomyces pristinaespiralis"],["NCBITaxon%3A457429","Streptomyces pristinaespiralis ATCC 25486"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:384676","l":"Pseudomonas entomophila L48","na":3,"nb":2,"a":[["alkaloids/labradorin-1.yaml","labradorin 1"],["alkaloids/labradorin-2.yaml","labradorin 2"],["alkaloids/pimprinine.yaml","pimprinine"]],"b":[["NCBITaxon%3A312306","Pseudomonas entomophila"],["NCBITaxon%3A384676","Pseudomonas entomophila L48"]]},{"id":"NCBITaxon:393595","l":"Alcanivorax borkumensis SK2","na":3,"nb":2,"a":[["amino_acids_and_peptides/amphibactin-e.yaml","amphibactin E"],["amino_acids_and_peptides/amphibactin-h.yaml","amphibactin H"],["fatty_acids/amphibactin-i.yaml","amphibactin I"]],"b":[["NCBITaxon%3A59754","Alcanivorax borkumensis"],["NCBITaxon%3A393595","Alcanivorax borkumensis SK2"]]},{"id":"NCBITaxon:398578","l":"Delftia acidovorans SPH-1","na":2,"nb":3,"a":[["amino_acids_and_peptides/delftibactin-a.yaml","delftibactin A"],["amino_acids_and_peptides/delftibactin-b.yaml","delftibactin B"]],"b":[["NCBITaxon%3A80866","Delftia acidovorans"],["NCBITaxon%3A1218107","Delftia acidovorans NBRC 14950"],["NCBITaxon%3A398578","Delftia acidovorans SPH-1"]]},{"id":"NCBITaxon:41061","l":"Aspergillus nomiae","na":3,"nb":2,"a":[["polyketides/aflatoxin-b2.yaml","aflatoxin B2"],["unclassified/aflatoxin-b1.yaml","aflatoxin B1"],["unclassified/aflatoxin-g1.yaml","aflatoxin G1"]],"b":[["NCBITaxon%3A41061","Aspergillus nomiae"],["NCBITaxon%3A1509407","Aspergillus nomiae NRRL 13137"]]},{"id":"NCBITaxon:42234","l":"Streptomyces acidiscabies","na":2,"nb":3,"a":[["fatty_acids/butyrolactone.yaml","γ-butyrolactone"],["unclassified/thaxtomin-a.yaml","thaxtomin A"]],"b":[["NCBITaxon%3A42234","Streptomyces acidiscabies"],["NCBITaxon%3A1116232","Streptomyces acidiscabies 84-104"],["NCBITaxon%3A1930","Streptomyces scabiei"]]},{"id":"NCBITaxon:42236","l":"Streptomyces diastatochromogenes","na":3,"nb":2,"a":[["carbohydrates/toyocamycin.yaml","toyocamycin"],["polyketides/concanamycin-a.yaml","concanamycin A"],["polyketides/polyketomycin.yaml","polyketomycin"]],"b":[["NCBITaxon%3A42236","Streptomyces diastatochromogenes"],["NCBITaxon%3A285494","Streptomyces diastatochromogenes subsp. luteus"]]},{"id":"NCBITaxon:42237","l":"Streptomyces eurythermus","na":3,"nb":2,"a":[["polyketides/angolamycin.yaml","angolamycin"],["polyketides/cinerubin-b.yaml","cinerubin B"],["polyketides/filipin-iii.yaml","filipin III"]],"b":[["NCBITaxon%3A42237","Streptomyces eurythermus"],["NCBITaxon%3A1928","Streptomyces rochei"]]},{"id":"NCBITaxon:436515","l":"Variovorax boronicumulans","na":2,"nb":3,"a":[["amino_acids_and_peptides/variochelin-a.yaml","variochelin A"],["amino_acids_and_peptides/variochelin-b.yaml","variochelin B"]],"b":[["NCBITaxon%3A436515","Variovorax boronicumulans"],["NCBITaxon%3A1321609","Variovorax boronicumulans NBRC 103145"],["NCBITaxon%3A34073","Variovorax paradoxus"]]},{"id":"NCBITaxon:448385","l":"","na":3,"nb":2,"a":[["polyketides/etnangien.yaml","etnangien"],["polyketides/soraphen-a.yaml","soraphen A"],["terpenoids/eremophilene.yaml","(+)-eremophilene"]],"b":[["NCBITaxon%3A56","Sorangium cellulosum"],["NCBITaxon%3A448385","Sorangium cellulosum So ce56"]]},{"id":"NCBITaxon:457429","l":"Streptomyces pristinaespiralis ATCC 25486","na":2,"nb":3,"a":[["amino_acids_and_peptides/pristinin-a3.yaml","pristinin A3"],["terpenoids/2s-3r-9r-pristinol.yaml","(+)-(2S,3R,9R)-pristinol"]],"b":[["NCBITaxon%3A38300","Streptomyces pristinaespiralis"],["NCBITaxon%3A457429","Streptomyces pristinaespiralis ATCC 25486"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:47990","l":"Kutzneria albida","na":2,"nb":3,"a":[["carbohydrates/huimycin.yaml","huimycin"],["unclassified/aculeximycin.yaml","aculeximycin"]],"b":[["NCBITaxon%3A103725","Kutzneria kofuensis"],["NCBITaxon%3A47990","Kutzneria viridogrisea"],["NCBITaxon%3A1449976","Kutzneria viridogrisea DSM 43870"]]},{"id":"NCBITaxon:5022","l":"Leptosphaeria maculans","na":3,"nb":2,"a":[["polyketides/flaviolin.yaml","flaviolin"],["terpenoids/2-cis-abscisic-acid.yaml","2-cis-abscisic acid"],["unclassified/sirodesmin-pl.yaml","sirodesmin PL"]],"b":[["NCBITaxon%3A5022","Plenodomus lingam"],["NCBITaxon%3A985895","Plenodomus lingam JN3"]]},{"id":"NCBITaxon:5113","l":"Epichloe typhina","na":2,"nb":3,"a":[["alkaloids/elymoclavine.yaml","elymoclavine"],["alkaloids/ergovaline.yaml","ergovaline"]],"b":[["NCBITaxon%3A5113","Epichloe typhina"],["NCBITaxon%3A1616224","Epichloe typhina subsp. clarkii"],["NCBITaxon%3A2570311","Epichloe typhina subsp. typhina"]]},{"id":"NCBITaxon:54","l":"Nannocystis exedens","na":3,"nb":2,"a":[["polyketides/phenylnannolone-a.yaml","phenylnannolone A"],["polyketides/phenylnannolone-b.yaml","phenylnannolone B"],["polyketides/phenylnannolone-c.yaml","phenylnannolone C"]],"b":[["NCBITaxon%3A54","Nannocystis exedens"],["NCBITaxon%3A1366054","Nannocystis exedens subsp. cinnabaria"]]},{"id":"NCBITaxon:58343","l":"Streptomyces canus","na":3,"nb":2,"a":[["carbohydrates/kanamycin-a.yaml","kanamycin A"],["polyketides/resistomycin.yaml","resistomycin"],["unclassified/telomycin.yaml","telomycin"]],"b":[["NCBITaxon%3A58343","Streptomyces canus"],["NCBITaxon%3A1172183","Streptomyces canus 299MFChir4.1"]]},{"id":"NCBITaxon:66423","l":"Streptomyces eurocidicus","na":3,"nb":2,"a":[["polyketides/eurocidin-d.yaml","eurocidin D"],["polyketides/eurocidin-e.yaml","eurocidin E"],["polyketides/laidlomycin.yaml","laidlomycin"]],"b":[["NCBITaxon%3A1940","Streptomyces albireticuli"],["NCBITaxon%3A66423","Streptomyces eurocidicus"]]},{"id":"NCBITaxon:66869","l":"Streptomyces atroolivaceus","na":2,"nb":3,"a":[["amino_acids_and_peptides/leinamycin.yaml","leinamycin"],["amino_acids_and_peptides/thioviridamide.yaml","thioviridamide"]],"b":[["NCBITaxon%3A66869","Streptomyces atroolivaceus"],["NCBITaxon%3A67338","Streptomyces olivoviridis"],["NCBITaxon%3A28094","Trinickia caryophylli"]]},{"id":"NCBITaxon:66901","l":"Streptomyces nobilis","na":3,"nb":2,"a":[["polyketides/desertomycin-a.yaml","desertomycin A"],["polyketides/desertomycin-b.yaml","desertomycin B"],["polyketides/desertomycin-g.yaml","desertomycin G"]],"b":[["NCBITaxon%3A66901","Streptomyces nobilis"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:67265","l":"Kitasatospora aburaviensis","na":2,"nb":3,"a":[["polyketides/ebelactone-a.yaml","ebelactone A"],["polyketides/ebelactone-b.yaml","ebelactone B"]],"b":[["NCBITaxon%3A67265","Kitasatospora aburaviensis"],["NCBITaxon%3A285481","Kitasatospora aburaviensis subsp. tuftformis"],["NCBITaxon%3A552357","Shewanella fodinae"]]},{"id":"NCBITaxon:67581","l":"Streptomyces viridosporus","na":2,"nb":3,"a":[["fatty_acids/butyrolactone.yaml","γ-butyrolactone"],["unclassified/cinnapeptin.yaml","cinnapeptin"]],"b":[["NCBITaxon%3A67581","Streptomyces viridosporus"],["NCBITaxon%3A566461","Streptomyces viridosporus ATCC 14672"],["NCBITaxon%3A665577","Streptomyces viridosporus T7A"]]},{"id":"NCBITaxon:68239","l":"Streptomyces mirabilis","na":3,"nb":2,"a":[["alkaloids/azodyrecin-a.yaml","Azodyrecin A"],["alkaloids/azodyrecin-b.yaml","Azodyrecin B"],["alkaloids/azodyrecin-c.yaml","Azodyrecin C"]],"b":[["NCBITaxon%3A68239","Streptomyces mirabilis"],["NCBITaxon%3A1169149","Streptomyces mirabilis 138MFCol5.1"]]},{"id":"NCBITaxon:717774","l":"Marinomonas mediterranea MMB-1","na":3,"nb":2,"a":[["alkaloids/bistribromopyrrole.yaml","bistribromopyrrole"],["shikimates_and_phenylpropanoids/bromophene.yaml","bromophene"],["shikimates_and_phenylpropanoids/pentabromopseudilin.yaml","pentabromopseudilin"]],"b":[["NCBITaxon%3A119864","Marinomonas mediterranea"],["NCBITaxon%3A717774","Marinomonas mediterranea MMB-1"]]},{"id":"NCBITaxon:80869","l":"Paracidovorax citrulli","na":2,"nb":3,"a":[["unclassified/acidobactin-a.yaml","acidobactin A"],["unclassified/acidobactin-b.yaml","acidobactin B"]],"b":[["NCBITaxon%3A80869","Paracidovorax citrulli"],["NCBITaxon%3A397945","Paracidovorax citrulli AAC00-1"],["NCBITaxon%3A1154764","Paracidovorax citrulli ZJU1106"]]},{"id":"NCBITaxon:92644","l":"Streptomyces malaysiensis","na":2,"nb":3,"a":[["amino_acids_and_peptides/thioholgamide-a.yaml","thioholgamide A"],["amino_acids_and_peptides/thioholgamide-b.yaml","thioholgamide B"]],"b":[["NCBITaxon%3A92644","Streptomyces malaysiensis"],["NCBITaxon%3A3455775","Streptomyces malaysiensis subsp. malaysiensis"],["NCBITaxon%3A459658","Streptomyces malaysiensis subsp. samsunensis"]]},{"id":"NCBITaxon:93061","l":"Staphylococcus aureus (strain NCTC 8325 / PS 47)","na":2,"nb":3,"a":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["unclassified/staphyloferrin-a.yaml","staphyloferrin A"]],"b":[["NCBITaxon%3A1280","Staphylococcus aureus"],["NCBITaxon%3A93061","Staphylococcus aureus subsp. aureus NCTC 8325"],["NCBITaxon%3A561307","Staphylococcus aureus subsp. aureus RN4220"]]},{"id":"NCBITaxon:103731","l":"Saccharothrix espanaensis","na":2,"nb":2,"a":[["polyketides/pentangumycin.yaml","pentangumycin"],["polyketides/sek90.yaml","SEK90"]],"b":[["NCBITaxon%3A103731","Saccharothrix espanaensis"],["NCBITaxon%3A1179773","Saccharothrix espanaensis DSM 44229"]]},{"id":"NCBITaxon:1079985","l":"Streptomyces chartreusis NRRL 3882","na":2,"nb":2,"a":[["carbohydrates/tunicamycin-b1.yaml","tunicamycin B1"],["polyketides/a23187.yaml","A23187"]],"b":[["NCBITaxon%3A1969","Streptomyces chartreusis"],["NCBITaxon%3A1079985","Streptomyces chartreusis NRRL 3882"]]},{"id":"NCBITaxon:1121302","l":"Clostridium cavendishii DSM 21758","na":2,"nb":2,"a":[["alkaloids/closoxazole-a.yaml","closoxazole A"],["alkaloids/closoxazole-b.yaml","closoxazole B"]],"b":[["NCBITaxon%3A349931","Clostridium cavendishii"],["NCBITaxon%3A1121302","Clostridium cavendishii DSM 21758"]]},{"id":"NCBITaxon:1122611","l":"Nonomuraea coxensis DSM 45129","na":2,"nb":2,"a":[["amino_acids_and_peptides/a50926-a.yaml","A50926 A"],["amino_acids_and_peptides/a50926-b.yaml","A50926 B"]],"b":[["NCBITaxon%3A404386","Nonomuraea coxensis"],["NCBITaxon%3A1122611","Nonomuraea coxensis DSM 45129"]]},{"id":"NCBITaxon:1179773","l":"Saccharothrix espanaensis DSM 44229","na":2,"nb":2,"a":[["polyketides/pentangumycin.yaml","pentangumycin"],["polyketides/sek90.yaml","SEK90"]],"b":[["NCBITaxon%3A103731","Saccharothrix espanaensis"],["NCBITaxon%3A1179773","Saccharothrix espanaensis DSM 44229"]]},{"id":"NCBITaxon:1246301","l":"Variovorax paradoxus B4","na":2,"nb":2,"a":[["amino_acids_and_peptides/variochelin-a.yaml","variochelin A"],["amino_acids_and_peptides/variochelin-b.yaml","variochelin B"]],"b":[["NCBITaxon%3A34073","Variovorax paradoxus"],["NCBITaxon%3A1246301","Variovorax paradoxus B4"]]},{"id":"NCBITaxon:1284","l":"Staphylococcus hyicus","na":2,"nb":2,"a":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["unclassified/staphyloferrin-a.yaml","staphyloferrin A"]],"b":[["NCBITaxon%3A1284","Staphylococcus hyicus"],["NCBITaxon%3A29387","Staphylococcus sp."]]},{"id":"NCBITaxon:1449976","l":"Kutzneria albida DSM 43870","na":2,"nb":2,"a":[["carbohydrates/huimycin.yaml","huimycin"],["unclassified/aculeximycin.yaml","aculeximycin"]],"b":[["NCBITaxon%3A47990","Kutzneria viridogrisea"],["NCBITaxon%3A1449976","Kutzneria viridogrisea DSM 43870"]]},{"id":"NCBITaxon:146922","l":"Streptomyces griseofuscus","na":2,"nb":2,"a":[["alkaloids/physostigmine.yaml","physostigmine"],["polyketides/indanomycin.yaml","indanomycin"]],"b":[["NCBITaxon%3A146922","Streptomyces griseofuscus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:1521","l":"Ruminiclostridium cellulolyticum","na":2,"nb":2,"a":[["alkaloids/closthioamide.yaml","closthioamide"],["amino_acids_and_peptides/rc-aip1.yaml","Rc-AIP1"]],"b":[["NCBITaxon%3A1521","Ruminiclostridium cellulolyticum"],["NCBITaxon%3A394503","Ruminiclostridium cellulolyticum H10"]]},{"id":"NCBITaxon:158878","l":"Staphylococcus aureus (strain Mu50 / ATCC 700699)","na":2,"nb":2,"a":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"]],"b":[["NCBITaxon%3A1280","Staphylococcus aureus"],["NCBITaxon%3A158878","Staphylococcus aureus subsp. aureus Mu50"]]},{"id":"NCBITaxon:168469","l":"Pseudomonas costantinii","na":2,"nb":2,"a":[["unclassified/tolaasin-f.yaml","tolaasin F"],["unclassified/tolaasin-i.yaml","tolaasin I"]],"b":[["NCBITaxon%3A46677","Pseudomonas agarici"],["NCBITaxon%3A168469","Pseudomonas costantinii"]]},{"id":"NCBITaxon:1736290","l":"Brevibacillus sp. Leaf182","na":2,"nb":2,"a":[["amino_acids_and_peptides/marthiapeptide-a.yaml","marthiapeptide A"],["polyketides/macrobrevin.yaml","macrobrevin"]],"b":[["NCBITaxon%3A1882945","Brevibacillus sp."],["NCBITaxon%3A1736290","Brevibacillus sp. Leaf182"]]},{"id":"NCBITaxon:1814","l":"Amycolatopsis methanolica","na":2,"nb":2,"a":[["amino_acids_and_peptides/amychelin-a.yaml","amychelin A"],["amino_acids_and_peptides/amychelin-b.yaml","amychelin B"]],"b":[["NCBITaxon%3A1814","Amycolatopsis methanolica"],["NCBITaxon%3A1068978","Amycolatopsis methanolica 239"]]},{"id":"NCBITaxon:1896","l":"Streptomyces bikiniensis","na":2,"nb":2,"a":[["carbohydrates/streptomycin.yaml","streptomycin"],["polyketides/chalcomycin-a.yaml","chalcomycin A"]],"b":[["NCBITaxon%3A1896","Streptomyces bikiniensis"],["NCBITaxon%3A44286","Streptomyces bikiniensis subsp. zorbonensis"]]},{"id":"NCBITaxon:1897","l":"Streptomyces carzinostaticus","na":2,"nb":2,"a":[["fatty_acids/neocarzilin-a.yaml","neocarzilin A"],["fatty_acids/neocarzilin-b.yaml","neocarzilin B"]],"b":[["NCBITaxon%3A1897","Streptomyces carzinostaticus"],["NCBITaxon%3A167636","Streptomyces carzinostaticus subsp. neocarzinostaticus"]]},{"id":"NCBITaxon:1922","l":"Streptomyces plicatus","na":2,"nb":2,"a":[["carbohydrates/amicetin.yaml","amicetin"],["polyketides/mithramycin.yaml","mithramycin"]],"b":[["NCBITaxon%3A1168082","Lacibacterium aquatile"],["NCBITaxon%3A1922","Streptomyces plicatus"]]},{"id":"NCBITaxon:1923","l":"Streptomyces phaeochromogenes","na":2,"nb":2,"a":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["unclassified/ikarugamycin.yaml","ikarugamycin"]],"b":[["NCBITaxon%3A1923","Streptomyces phaeochromogenes"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:2001","l":"Streptosporangium roseum","na":2,"nb":2,"a":[["polyketides/ws-79089b.yaml","WS 79089B"],["polyketides/ws-79089c.yaml","WS 79089C"]],"b":[["NCBITaxon%3A2001","Streptosporangium roseum"],["NCBITaxon%3A479432","Streptosporangium roseum DSM 43021"]]},{"id":"NCBITaxon:263358","l":"Verrucosispora maris AB-18-032","na":2,"nb":2,"a":[["polyketides/abyssomicin-c.yaml","abyssomicin C"],["polyketides/atrop-abyssomicin-c.yaml","atrop-abyssomicin C"]],"b":[["NCBITaxon%3A1003110","Micromonospora maris"],["NCBITaxon%3A263358","Micromonospora maris AB-18-032"]]},{"id":"NCBITaxon:264445","l":"Streptomyces hygroscopicus subsp. limoneus","na":2,"nb":2,"a":[["carbohydrates/validamycin-a-2.yaml","validamycin A"],["carbohydrates/validamycin-a.yaml","validamycin A"]],"b":[["NCBITaxon%3A1912","Streptomyces hygroscopicus"],["NCBITaxon%3A264445","Streptomyces hygroscopicus subsp. limoneus"]]},{"id":"NCBITaxon:267872","l":"Microcystis aeruginosa PCC 7806","na":2,"nb":2,"a":[["amino_acids_and_peptides/microcyclamide.yaml","microcyclamide"],["amino_acids_and_peptides/microcystin-lr.yaml","microcystin-LR"]],"b":[["NCBITaxon%3A267872","Microcystis aeruginosa PCC 7806"],["NCBITaxon%3A1903187","Microcystis aeruginosa PCC 7806SL"]]},{"id":"NCBITaxon:28094","l":"Trinickia caryophylli","na":2,"nb":2,"a":[["amino_acids_and_peptides/gramibactin-b.yaml","gramibactin B"],["fatty_acids/caryoynencin.yaml","caryoynencin"]],"b":[["NCBITaxon%3A1632866","Alkalimarinus sediminis"],["NCBITaxon%3A28094","Trinickia caryophylli"]]},{"id":"NCBITaxon:285532","l":"Streptomyces achromogenes subsp. streptozoticus","na":2,"nb":2,"a":[["carbohydrates/streptozotocin.yaml","streptozotocin"],["unclassified/enteromycin.yaml","enteromycin"]],"b":[["NCBITaxon%3A67255","Streptomyces achromogenes"],["NCBITaxon%3A285532","Streptomyces achromogenes subsp. streptozoticus"]]},{"id":"NCBITaxon:304895","l":"Catenulispora acidiphila","na":2,"nb":2,"a":[["amino_acids_and_peptides/catenulipeptin.yaml","catenulipeptin"],["shikimates_and_phenylpropanoids/cacibiocin-b.yaml","cacibiocin B"]],"b":[["NCBITaxon%3A304895","Catenulispora acidiphila"],["NCBITaxon%3A479433","Catenulispora acidiphila DSM 44928"]]},{"id":"NCBITaxon:314281","l":"Pseudoalteromonas tunicata","na":2,"nb":2,"a":[["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"]],"b":[["NCBITaxon%3A314281","Pseudoalteromonas tunicata"],["NCBITaxon%3A87626","Pseudoalteromonas tunicata D2"]]},{"id":"NCBITaxon:316274","l":"Herpetosiphon aurantiacus DSM 785","na":2,"nb":2,"a":[["alkaloids/auriculamide.yaml","auriculamide"],["terpenoids/o-methylkolavelool.yaml","(+)-O-methylkolavelool"]],"b":[["NCBITaxon%3A65","Herpetosiphon aurantiacus"],["NCBITaxon%3A316274","Herpetosiphon aurantiacus DSM 785"]]},{"id":"NCBITaxon:33899","l":"Streptomyces galilaeus","na":2,"nb":2,"a":[["polyketides/aclacinomycin.yaml","aclacinomycin"],["polyketides/cinerubin-b.yaml","cinerubin B"]],"b":[["NCBITaxon%3A67280","Streptomyces bobili"],["NCBITaxon%3A33899","Streptomyces galilaeus"]]},{"id":"NCBITaxon:351671","l":"Xenorhabdus doucetiae","na":2,"nb":2,"a":[["unclassified/xenoamicin-a.yaml","xenoamicin A"],["unclassified/xenoamicin-b.yaml","xenoamicin B"]],"b":[["NCBITaxon%3A351671","Xenorhabdus doucetiae"],["NCBITaxon%3A1123505","Xenorhabdus doucetiae FRM16 = DSM 17909"]]},{"id":"NCBITaxon:358681","l":"Brevibacillus brevis NBRC 100599","na":2,"nb":2,"a":[["amino_acids_and_peptides/gramicidin.yaml","gramicidin"],["amino_acids_and_peptides/tyrocidine-a.yaml","tyrocidine A"]],"b":[["NCBITaxon%3A1393","Brevibacillus brevis"],["NCBITaxon%3A358681","Brevibacillus brevis NBRC 100599"]]},{"id":"NCBITaxon:36816","l":"Streptomyces caelestis","na":2,"nb":2,"a":[["alkaloids/celesticetin.yaml","celesticetin"],["polyketides/niddamycin.yaml","niddamycin"]],"b":[["NCBITaxon%3A1964542","Aquimarina celericrescens"],["NCBITaxon%3A36816","Streptomyces caelestis"]]},{"id":"NCBITaxon:377629","l":"Teredinibacter turnerae T7901","na":2,"nb":2,"a":[["polyketides/tartrolon-d.yaml","tartrolon D"],["polyketides/tartrolon-e.yaml","tartrolon E"]],"b":[["NCBITaxon%3A2426","Teredinibacter turnerae"],["NCBITaxon%3A377629","Teredinibacter turnerae T7901"]]},{"id":"NCBITaxon:38314","l":"Streptomyces nogalater","na":2,"nb":2,"a":[["polyketides/mithramycin.yaml","mithramycin"],["polyketides/nogalamycin.yaml","nogalamycin"]],"b":[["NCBITaxon%3A38314","Streptomyces nogalater"],["NCBITaxon%3A527200","Thiorhodococcus fuscus"]]},{"id":"NCBITaxon:391619","l":"Phaeobacter inhibens DSM 17395","na":2,"nb":2,"a":[["shikimates_and_phenylpropanoids/hydroxytropodithietic-acid.yaml","hydroxytropodithietic acid"],["shikimates_and_phenylpropanoids/tropodithietic-acid.yaml","tropodithietic acid"]],"b":[["NCBITaxon%3A221822","Phaeobacter inhibens"],["NCBITaxon%3A391619","Phaeobacter inhibens DSM 17395"]]},{"id":"NCBITaxon:394503","l":"Ruminiclostridium cellulolyticum H10","na":2,"nb":2,"a":[["alkaloids/closthioamide.yaml","closthioamide"],["amino_acids_and_peptides/rc-aip1.yaml","Rc-AIP1"]],"b":[["NCBITaxon%3A1521","Ruminiclostridium cellulolyticum"],["NCBITaxon%3A394503","Ruminiclostridium cellulolyticum H10"]]},{"id":"NCBITaxon:396024","l":"Aspergillus ruber","na":2,"nb":2,"a":[["polyketides/flavoglaucin.yaml","flavoglaucin"],["polyketides/sterigmatocystin.yaml","sterigmatocystin"]],"b":[["NCBITaxon%3A396024","Aspergillus ruber"],["NCBITaxon%3A1388766","Aspergillus ruber CBS 135680"]]},{"id":"NCBITaxon:42198","l":"Actinosynnema pretiosum subsp. auranticum","na":2,"nb":2,"a":[["polyketides/ansamitocin-p3.yaml","ansamitocin P3"],["polyketides/maytansine.yaml","maytansine"]],"b":[["NCBITaxon%3A42197","Actinosynnema pretiosum"],["NCBITaxon%3A42198","Actinosynnema pretiosum subsp. auranticum"]]},{"id":"NCBITaxon:43357","l":"","na":2,"nb":2,"a":[["carbohydrates/huimycin.yaml","huimycin"],["unclassified/aculeximycin.yaml","aculeximycin"]],"b":[["NCBITaxon%3A47990","Kutzneria viridogrisea"],["NCBITaxon%3A1449976","Kutzneria viridogrisea DSM 43870"]]},{"id":"NCBITaxon:457427","l":"Streptomyces himastatinicus ATCC 53653","na":2,"nb":2,"a":[["alkaloids/9-methylstreptimidone.yaml","9-methylstreptimidone"],["amino_acids_and_peptides/himastatin.yaml","himastatin"]],"b":[["NCBITaxon%3A998084","Streptomyces himastatinicus"],["NCBITaxon%3A457427","Streptomyces himastatinicus ATCC 53653"]]},{"id":"NCBITaxon:46165","l":"Actinomadura verrucosospora","na":2,"nb":2,"a":[["polyketides/esperamicin.yaml","esperamicin"],["polyketides/sf2487.yaml","SF2487"]],"b":[["NCBITaxon%3A46165","Actinomadura verrucosospora"],["NCBITaxon%3A1605437","Actinomadura verrucosospora subsp. neohibisca"]]},{"id":"NCBITaxon:47872","l":"Micromonospora purpureochromogenes","na":2,"nb":2,"a":[["unclassified/rakicidin-a-2.yaml","rakicidin A"],["unclassified/rakicidin-b.yaml","rakicidin B"]],"b":[["NCBITaxon%3A47872","Micromonospora purpureochromogenes"],["NCBITaxon%3A1876","Micromonospora sp."]]},{"id":"NCBITaxon:47879","l":"Pseudomonas corrugata","na":2,"nb":2,"a":[["amino_acids_and_peptides/corpeptin-a.yaml","corpeptin A"],["amino_acids_and_peptides/corpeptin-b.yaml","corpeptin B"]],"b":[["NCBITaxon%3A47879","Pseudomonas corrugata"],["NCBITaxon%3A1316927","Pseudomonas corrugata CFBP 5454"]]},{"id":"NCBITaxon:479433","l":"Catenulispora acidiphila DSM 44928","na":2,"nb":2,"a":[["amino_acids_and_peptides/catenulipeptin.yaml","catenulipeptin"],["shikimates_and_phenylpropanoids/cacibiocin-b.yaml","cacibiocin B"]],"b":[["NCBITaxon%3A304895","Catenulispora acidiphila"],["NCBITaxon%3A479433","Catenulispora acidiphila DSM 44928"]]},{"id":"NCBITaxon:5074","l":"Penicillium brevicompactum","na":2,"nb":2,"a":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"],["unclassified/asperphenamate.yaml","asperphenamate"]],"b":[["NCBITaxon%3A1337893","Streptomyces bernensis"],["NCBITaxon%3A5074","Penicillium brevicompactum"]]},{"id":"NCBITaxon:52258","l":"Streptomyces flavovirens","na":2,"nb":2,"a":[["alkaloids/holomycin.yaml","holomycin"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"]],"b":[["NCBITaxon%3A67299","Streptomyces flavogriseus"],["NCBITaxon%3A52258","Streptomyces flavovirens"]]},{"id":"NCBITaxon:55952","l":"Streptomyces toyocaensis","na":2,"nb":2,"a":[["amino_acids_and_peptides/a-47934.yaml","A-47934"],["carbohydrates/toyocamycin.yaml","toyocamycin"]],"b":[["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A55952","Streptomyces toyocaensis"]]},{"id":"NCBITaxon:568076","l":"Metarhizium robertsii","na":2,"nb":2,"a":[["amino_acids_and_peptides/serinocyclin-a.yaml","serinocyclin A"],["amino_acids_and_peptides/serinocyclin-b.yaml","serinocyclin B"]],"b":[["NCBITaxon%3A568076","Metarhizium robertsii"],["NCBITaxon%3A655844","Metarhizium robertsii ARSEF 23"]]},{"id":"NCBITaxon:60550","l":"Burkholderia pyrrocinia","na":2,"nb":2,"a":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/occidiofungin-a.yaml","occidiofungin A"]],"b":[["NCBITaxon%3A60550","Burkholderia pyrrocinia"],["NCBITaxon%3A1212819","Burkholderia pyrrocinia CH-67"]]},{"id":"NCBITaxon:60894","l":"Saccharopolyspora spinosa","na":2,"nb":2,"a":[["polyketides/a83543a.yaml","A83543A"],["polyketides/spinosyn-d.yaml","spinosyn D"]],"b":[["NCBITaxon%3A60894","Saccharopolyspora spinosa"],["NCBITaxon%3A994479","Saccharopolyspora spinosa NRRL 18395"]]},{"id":"NCBITaxon:65","l":"Herpetosiphon aurantiacus","na":2,"nb":2,"a":[["alkaloids/auriculamide.yaml","auriculamide"],["terpenoids/o-methylkolavelool.yaml","(+)-O-methylkolavelool"]],"b":[["NCBITaxon%3A65","Herpetosiphon aurantiacus"],["NCBITaxon%3A316274","Herpetosiphon aurantiacus DSM 785"]]},{"id":"NCBITaxon:66430","l":"Streptomyces roseus","na":2,"nb":2,"a":[["amino_acids_and_peptides/leupeptin-a.yaml","leupeptin A"],["amino_acids_and_peptides/leupeptin-pr.yaml","leupeptin Pr"]],"b":[["NCBITaxon%3A66430","Streptomyces roseus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:67297","l":"Streptomyces flaveolus","na":2,"nb":2,"a":[["amino_acids_and_peptides/sanglifehrin-a.yaml","sanglifehrin A"],["polyketides/tirandamycin.yaml","tirandamycin"]],"b":[["NCBITaxon%3A67297","Streptomyces flaveolus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:67364","l":"Streptomyces sioyaensis","na":2,"nb":2,"a":[["alkaloids/altemicidin.yaml","altemicidin"],["amino_acids_and_peptides/siomycin-a.yaml","siomycin A"]],"b":[["NCBITaxon%3A1280","Staphylococcus aureus"],["NCBITaxon%3A67364","Streptomyces sioyaensis"]]},{"id":"NCBITaxon:67367","l":"Streptomyces tanashiensis","na":2,"nb":2,"a":[["amino_acids_and_peptides/phosphoramidon.yaml","phosphoramidon"],["unclassified/minimycin.yaml","minimycin"]],"b":[["NCBITaxon%3A67367","Streptomyces tanashiensis"],["NCBITaxon%3A285526","Streptomyces tanashiensis subsp. cephalomyceticus"]]},{"id":"NCBITaxon:68180","l":"Streptomyces blastmyceticus","na":2,"nb":2,"a":[["alkaloids/lyngbyatoxin.yaml","lyngbyatoxin"],["fatty_acids/mediomycin-a-2.yaml","mediomycin A"]],"b":[["NCBITaxon%3A58341","Streptomyces albosporeus"],["NCBITaxon%3A68180","Streptomyces blastmyceticus"]]},{"id":"NCBITaxon:68185","l":"Streptomyces chrestomyceticus","na":2,"nb":2,"a":[["alkaloids/guanipiperazine-a.yaml","guanipiperazine A"],["alkaloids/guanipiperazine-b.yaml","guanipiperazine B"]],"b":[["NCBITaxon%3A68185","Streptomyces chrestomyceticus"],["NCBITaxon%3A1306181","Streptomyces chrestomyceticus JCM 4735"]]},{"id":"NCBITaxon:68203","l":"Streptomyces fungicidicus","na":2,"nb":2,"a":[["unclassified/enduracidin-a.yaml","enduracidin A"],["unclassified/enduracidin-b.yaml","enduracidin B"]],"b":[["NCBITaxon%3A68203","Streptomyces fungicidicus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:68213","l":"Streptomyces griseoaurantiacus","na":2,"nb":2,"a":[["alkaloids/metacycloprodigiosin.yaml","metacycloprodigiosin"],["alkaloids/undecylprodigiosin-2.yaml","undecylprodigiosin"]],"b":[["NCBITaxon%3A68213","Streptomyces griseoaurantiacus"],["NCBITaxon%3A996637","Streptomyces griseoaurantiacus M045"]]},{"id":"NCBITaxon:68232","l":"Streptomyces lusitanus","na":2,"nb":2,"a":[["alkaloids/naphthyridinomycin.yaml","naphthyridinomycin"],["polyketides/grincamycin.yaml","grincamycin"]],"b":[["NCBITaxon%3A68232","Streptomyces lusitanus"],["NCBITaxon%3A1522110","Streptomyces lusitanus subsp. tetracyclini"]]},{"id":"NCBITaxon:69","l":"Lysobacter enzymogenes","na":2,"nb":2,"a":[["unclassified/heat-stable-antifungal-factor.yaml","heat-stable antifungal factor"],["unclassified/wap-8294a2.yaml","WAP-8294A2"]],"b":[["NCBITaxon%3A69","Lysobacter enzymogenes"],["NCBITaxon%3A262324","Lysobacter gummosus"]]},{"id":"NCBITaxon:80860","l":"Streptomyces cyanogenus","na":2,"nb":2,"a":[["polyketides/landomycin-a.yaml","landomycin A"],["polyketides/lucensomycin.yaml","lucensomycin"]],"b":[["NCBITaxon%3A80860","Streptomyces cyanogenus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:543","l":"Enterobacteriaceae","na":1,"nb":33950,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A240150","alkaliphilic bacterium N10"],["NCBITaxon%3A3049091","Apirhabdus apintestini"],["NCBITaxon%3A64559","[Aquamonas] haywardensis"],["NCBITaxon%3A58338","Aranicola proteolyticus"],["NCBITaxon%3A1150713","Aranicola sp. 9AL34"],["NCBITaxon%3A707055","Aranicola sp. Cf3F"]]},{"id":"NCBITaxon:547","l":"Enterobacter","na":1,"nb":6599,"a":[["amino_acids_and_peptides/andrimid.yaml","andrimid"]],"b":[["NCBITaxon%3A3142537","Enterobacter adelaidei"],["NCBITaxon%3A61645","Enterobacter asburiae"],["NCBITaxon%3A1330532","Enterobacter asburiae B1-3"],["NCBITaxon%3A1330533","Enterobacter asburiae B5-60"],["NCBITaxon%3A1442602","Enterobacter asburiae C1"],["NCBITaxon%3A1298604","Enterobacter asburiae JCM 6051"]]},{"id":"NCBITaxon:1663","l":"Arthrobacter","na":1,"nb":6277,"a":[["unclassified/ws9326a.yaml","WS9326A"]],"b":[["NCBITaxon%3A132932","Acetobacterium tundrae"],["NCBITaxon%3A37921","Arthrobacter agilis"],["NCBITaxon%3A369936","Arthrobacter alkaliphilus"],["NCBITaxon%3A656366","Arthrobacter alpinus"],["NCBITaxon%3A3046203","Arthrobacter antibioticus"],["NCBITaxon%3A2895818","Arthrobacter antioxidans"]]},{"id":"NCBITaxon:4751","l":"Fungi","na":1,"nb":5527,"a":[["shikimates_and_phenylpropanoids/atromentin.yaml","atromentin"]],"b":[["NCBITaxon%3A1450171","Aaosphaeria arxii"],["NCBITaxon%3A137743","Abortiporus biennis"],["NCBITaxon%3A420591","Absidia anomala"],["NCBITaxon%3A90261","Absidia caerulea"],["NCBITaxon%3A327741","Absidia californica"],["NCBITaxon%3A420592","Absidia cuneospora"]]},{"id":"NCBITaxon:237","l":"Flavobacterium","na":1,"nb":4449,"a":[["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"]],"b":[["NCBITaxon%3A196875","Arctic sea ice associated bacterium ARK10272"],["NCBITaxon%3A196870","Arctic sea ice bacterium ARK10104"],["NCBITaxon%3A196871","Arctic sea ice bacterium ARK10159"],["NCBITaxon%3A196872","Arctic sea ice bacterium ARK10161"],["NCBITaxon%3A196873","Arctic sea ice bacterium ARK10164"],["NCBITaxon%3A196874","Arctic sea ice bacterium ARK10270"]]},{"id":"NCBITaxon:1827","l":"Rhodococcus","na":1,"nb":3197,"a":[["alkaloids/corynecin-iii.yaml","corynecin III"]],"b":[["NCBITaxon%3A179179","bromate-reducing bacterium B7"],["NCBITaxon%3A179180","bromate-reducing bacterium B8"],["NCBITaxon%3A983873","Dietzia aurantiaca"],["NCBITaxon%3A84096","Gordonia alkanivorans"],["NCBITaxon%3A178933","PAH-contaminated sludge bacterium PB-32"],["NCBITaxon%3A43767","Prescottella equi"]]},{"id":"NCBITaxon:22","l":"Shewanella","na":1,"nb":2330,"a":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]],"b":[["NCBITaxon%3A196819","Arctic sea ice bacterium ARK10035"],["NCBITaxon%3A259291","cf. Shewanella SAR-1"],["NCBITaxon%3A259292","cf. Shewanella SAR-2"],["NCBITaxon%3A73131","Mariana eubacterium no. 11"],["NCBITaxon%3A73132","Mariana eubacterium no. 13"],["NCBITaxon%3A73133","Mariana eubacterium no. 24"]]},{"id":"NCBITaxon:41275","l":"Brevundimonas","na":1,"nb":1560,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A1125965","Brevundimonas abyssalis"],["NCBITaxon%3A1391729","Brevundimonas abyssalis TAR-001"],["NCBITaxon%3A74314","Brevundimonas alba"],["NCBITaxon%3A1312364","Brevundimonas albigilva"],["NCBITaxon%3A3712371","Brevundimonas antarctica (SeqCode)"],["NCBITaxon%3A74316","Brevundimonas aurantiaca"]]},{"id":"NCBITaxon:357","l":"Agrobacterium","na":1,"nb":1466,"a":[["alkaloids/sesbanimide-c.yaml","sesbanimide C"]],"b":[["NCBITaxon%3A76979","Agrobacterium agile"],["NCBITaxon%3A147266","Agrobacterium albertimagni"],["NCBITaxon%3A1156935","Agrobacterium albertimagni AOL15"],["NCBITaxon%3A1585697","Agrobacterium arsenijevicii"],["NCBITaxon%3A44155","Agrobacterium aurantiacum"],["NCBITaxon%3A2052828","Agrobacterium bohemicum"]]},{"id":"NCBITaxon:1716","l":"Corynebacterium","na":1,"nb":1413,"a":[["alkaloids/corynecin-iii.yaml","corynecin III"]],"b":[["NCBITaxon%3A41986","Agromyces mediolanus"],["NCBITaxon%3A1667","Arthrobacter sp."],["NCBITaxon%3A92706","[Brevibacterium] flavum"],["NCBITaxon%3A1232385","[Brevibacterium] flavum ZL-1"],["NCBITaxon%3A2838527","Candidatus Corynebacterium avicola"],["NCBITaxon%3A2838528","Candidatus Corynebacterium faecigallinarum"]]},{"id":"NCBITaxon:226","l":"Alteromonas","na":1,"nb":1246,"a":[["unclassified/marinostatin.yaml","marinostatin"]],"b":[["NCBITaxon%3A1892904","Alteromonas abrolhosensis"],["NCBITaxon%3A1938339","Alteromonas aestuariivivens"],["NCBITaxon%3A105692","Alteromonas agarilytica"],["NCBITaxon%3A3410268","Alteromonas algae"],["NCBITaxon%3A135000","Alteromonas alvinellae"],["NCBITaxon%3A2803813","Alteromonas antoniana"]]},{"id":"NCBITaxon:47251","l":"Leptolyngbya","na":1,"nb":1210,"a":[["alkaloids/schizokinen.yaml","schizokinen"]],"b":[["NCBITaxon%3A2653193","cf. Leptolyngbya sp. CCNUM2"],["NCBITaxon%3A377165","cf. Leptolyngbya sp. Greenland_10"],["NCBITaxon%3A377164","cf. Leptolyngbya sp. Greenland_9"],["NCBITaxon%3A2675591","cf. Leptolyngbya sp. PKUAC-SCTE412"],["NCBITaxon%3A2675592","cf. Leptolyngbya sp. PKUAC-SCTE413"],["NCBITaxon%3A2675593","cf. Leptolyngbya sp. PKUAC-SCTE811"]]},{"id":"NCBITaxon:222","l":"Achromobacter","na":1,"nb":1173,"a":[["alkaloids/biotin.yaml","biotin"]],"b":[["NCBITaxon%3A1287736","Achromobacter aegrifaciens"],["NCBITaxon%3A1783500","Achromobacter agile"],["NCBITaxon%3A1353888","Achromobacter agilis"],["NCBITaxon%3A1750518","Achromobacter aloeverae"],["NCBITaxon%3A1389935","Achromobacter animicus"],["NCBITaxon%3A1287737","Achromobacter anxifer"]]},{"id":"NCBITaxon:1696","l":"Brevibacterium","na":1,"nb":794,"a":[["alkaloids/1-6-phenazinedimethanol.yaml","1,6-phenazinedimethanol"]],"b":[["NCBITaxon%3A943903","bacterium Osw"],["NCBITaxon%3A417948","Brevibacterium album"],["NCBITaxon%3A1121122","Brevibacterium album DSM 18261"],["NCBITaxon%3A1046555","Brevibacterium ammoniilyticum"],["NCBITaxon%3A2683611","Brevibacterium anseongense"],["NCBITaxon%3A239268","Brevibacterium antarcticum"]]},{"id":"NCBITaxon:2433","l":"Roseobacter","na":1,"nb":652,"a":[["shikimates_and_phenylpropanoids/tropodithietic-acid.yaml","tropodithietic acid"]],"b":[["NCBITaxon%3A196799","Arctic sea ice bacterium ARK10233"],["NCBITaxon%3A197015","Arctic sea ice bacterium ARK10278"],["NCBITaxon%3A2602289","Roseobacter cerasinus"],["NCBITaxon%3A3467295","Roseobacter cerffii"],["NCBITaxon%3A2434","Roseobacter denitrificans"],["NCBITaxon%3A375451","Roseobacter denitrificans OCh 114"]]},{"id":"NCBITaxon:37914","l":"Dietzia","na":1,"nb":449,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A2838537","Candidatus Dietzia intestinigallinarum"],["NCBITaxon%3A2838538","Candidatus Dietzia intestinipullorum"],["NCBITaxon%3A2838539","Candidatus Dietzia merdigallinarum"],["NCBITaxon%3A595984","Dietzia aerolata"],["NCBITaxon%3A665550","Dietzia alimentaria"],["NCBITaxon%3A1077144","Dietzia alimentaria 72"]]},{"id":"NCBITaxon:1357","l":"Lactococcus","na":1,"nb":383,"a":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"]],"b":[["NCBITaxon%3A2419773","Lactococcus allomyrinae"],["NCBITaxon%3A1359","Lactococcus cremoris"],["NCBITaxon%3A1286879","Lactococcus cremoris HB61"],["NCBITaxon%3A1286880","Lactococcus cremoris HB63"],["NCBITaxon%3A2816960","Lactococcus cremoris subsp. cremoris"],["NCBITaxon%3A1104322","Lactococcus cremoris subsp. cremoris A76"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":1,"nb":375,"a":[["amino_acids_and_peptides/enterocin-a.yaml","enterocin A"]],"b":[["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A1352","Enterococcus faecium"],["NCBITaxon%3A1391465","Enterococcus faecium 10/96A"],["NCBITaxon%3A1259824","Enterococcus faecium 13.SD.W.09"],["NCBITaxon%3A1429401","Enterococcus faecium 17282"],["NCBITaxon%3A565659","Enterococcus faecium 1,141,733"]]},{"id":"NCBITaxon:1865","l":"Actinoplanes","na":1,"nb":367,"a":[["unclassified/kirromycin.yaml","kirromycin"]],"b":[["NCBITaxon%3A135945","Actinoplanes arizonaensis"],["NCBITaxon%3A47988","Actinoplanes auranticolor"],["NCBITaxon%3A2792083","Actinoplanes aureus"],["NCBITaxon%3A135946","Actinoplanes awajinensis"],["NCBITaxon%3A135947","Actinoplanes awajinensis subsp. mycoplanecinus"],["NCBITaxon%3A113559","Actinoplanes campanulatus"]]},{"id":"NCBITaxon:1311","l":"Streptococcus agalactiae","na":1,"nb":332,"a":[["carbohydrates/capsular-polysaccharide-3.yaml","capsular polysaccharide"]],"b":[["NCBITaxon%3A536","Chromobacterium violaceum"],["NCBITaxon%3A2896850","Phocaeicola oris"],["NCBITaxon%3A1311","Streptococcus agalactiae"],["NCBITaxon%3A997295","Streptococcus agalactiae 072.21"],["NCBITaxon%3A1309806","Streptococcus agalactiae 09mas018883"],["NCBITaxon%3A1333579","Streptococcus agalactiae 112469214-isolate1"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":1,"nb":287,"a":[["polyketides/emodin.yaml","emodin"]],"b":[["NCBITaxon%3A632","Yersinia pestis"],["NCBITaxon%3A1345710","Yersinia pestis 1045"],["NCBITaxon%3A1330535","Yersinia pestis 113"],["NCBITaxon%3A755859","Yersinia pestis 12"],["NCBITaxon%3A1345703","Yersinia pestis 1412"],["NCBITaxon%3A1345704","Yersinia pestis 1413"]]},{"id":"NCBITaxon:1142","l":"Synechocystis","na":1,"nb":247,"a":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]],"b":[["NCBITaxon%3A543824","Synechocystis aquatilis"],["NCBITaxon%3A543825","Synechocystis aquatilis 1LT32S04"],["NCBITaxon%3A1443101","Synechocystis aquatilis C23"],["NCBITaxon%3A1443102","Synechocystis aquatilis C25"],["NCBITaxon%3A1417686","Synechocystis aquatilis I13"],["NCBITaxon%3A1417687","Synechocystis aquatilis I14"]]},{"id":"NCBITaxon:626","l":"Xenorhabdus","na":1,"nb":215,"a":[["amino_acids_and_peptides/ambactin.yaml","ambactin"]],"b":[["NCBITaxon%3A651590","uncultured Xenorhabdus sp."],["NCBITaxon%3A3025874","Xenorhabdus aichiensis"],["NCBITaxon%3A3025875","Xenorhabdus anantnagensis"],["NCBITaxon%3A3026967","Xenorhabdus bakwenae"],["NCBITaxon%3A40578","Xenorhabdus beddingii"],["NCBITaxon%3A3136256","Xenorhabdus bharatensis"]]},{"id":"NCBITaxon:28450","l":"Burkholderia pseudomallei","na":1,"nb":214,"a":[["polyketides/malleilactone.yaml","malleilactone"]],"b":[["NCBITaxon%3A28450","Burkholderia pseudomallei"],["NCBITaxon%3A1085027","Burkholderia pseudomallei 1026a"],["NCBITaxon%3A884204","Burkholderia pseudomallei 1026b"],["NCBITaxon%3A1310219","Burkholderia pseudomallei 104(1990)"],["NCBITaxon%3A357348","Burkholderia pseudomallei 1106a"],["NCBITaxon%3A357347","Burkholderia pseudomallei 1106b"]]},{"id":"NCBITaxon:1203","l":"Scytonema","na":1,"nb":207,"a":[["amino_acids_and_peptides/scytodecamide.yaml","scytodecamide"]],"b":[["NCBITaxon%3A3243584","Scytonema ambikapurensis"],["NCBITaxon%3A2727002","Scytonema ambikapurensis TPJ-3"],["NCBITaxon%3A2666251","Scytonema bilaspurensis"],["NCBITaxon%3A1676468","Scytonema bilaspurensis 10C-PS"],["NCBITaxon%3A2984321","Scytonema bilaspurensis NK13"],["NCBITaxon%3A882802","Scytonema bohnerii"]]},{"id":"NCBITaxon:478070","l":"Labrenzia","na":1,"nb":203,"a":[["polyketides/labrenzin.yaml","labrenzin"]],"b":[["NCBITaxon%3A2738454","Labrenzia callyspongiae"],["NCBITaxon%3A1885934","Labrenzia sp."],["NCBITaxon%3A2171494","Labrenzia sp. 011"],["NCBITaxon%3A566486","Labrenzia sp. 06-027339"],["NCBITaxon%3A566487","Labrenzia sp. 06-028675"],["NCBITaxon%3A1914779","Labrenzia sp. 12b"]]},{"id":"NCBITaxon:28073","l":"Lyngbya","na":1,"nb":197,"a":[["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"]],"b":[["NCBITaxon%3A933334","Blennothrix cantharidosma"],["NCBITaxon%3A2006151","Capilliphycus tropicalis ALCB 114392"],["NCBITaxon%3A264748","Lyngbya aerugineo-coerulea"],["NCBITaxon%3A264749","Lyngbya aerugineo-coerulea PACC 8601"],["NCBITaxon%3A1304834","Lyngbya aerugineo-coerulea VB512251"],["NCBITaxon%3A118322","Lyngbya aestuarii"]]},{"id":"NCBITaxon:1851","l":"Saccharomonospora","na":1,"nb":192,"a":[["unclassified/taromycin-a.yaml","taromycin A"]],"b":[["NCBITaxon%3A1128677","Saccharomonospora amisosensis"],["NCBITaxon%3A40988","Saccharomonospora azurea"],["NCBITaxon%3A882081","Saccharomonospora azurea NA-128"],["NCBITaxon%3A1114959","Saccharomonospora azurea SZMC 14600"],["NCBITaxon%3A2040474","Saccharomonospora colocasiae"],["NCBITaxon%3A40989","Saccharomonospora cyanea"]]},{"id":"NCBITaxon:246875","l":"Algoriphagus","na":1,"nb":174,"a":[["polyketides/carotenoid.yaml","carotenoid"]],"b":[["NCBITaxon%3A1634955","Algoriphagus aestuarii"],["NCBITaxon%3A1852016","Algoriphagus aestuariicola"],["NCBITaxon%3A2593007","Algoriphagus algorifonticola"],["NCBITaxon%3A279824","Algoriphagus alkaliphilus"],["NCBITaxon%3A238540","Algoriphagus antarcticus"],["NCBITaxon%3A475299","Algoriphagus aquaeductus"]]},{"id":"NCBITaxon:54296","l":"Aphanizomenon gracile","na":1,"nb":158,"a":[["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"]],"b":[["NCBITaxon%3A136082","Aphanizomenon cf. gracile 271"],["NCBITaxon%3A54296","Aphanizomenon gracile"],["NCBITaxon%3A358537","Aphanizomenon gracile 0AU34S1"],["NCBITaxon%3A358539","Aphanizomenon gracile 0FT35S2"],["NCBITaxon%3A358543","Aphanizomenon gracile 0NO36S4"],["NCBITaxon%3A645895","Aphanizomenon gracile 1"]]},{"id":"NCBITaxon:109265","l":"Dolichospermum circinale","na":1,"nb":133,"a":[["alkaloids/anatoxin-a.yaml","anatoxin-a"]],"b":[["NCBITaxon%3A3085084","Anabaena circinalis CF7670"],["NCBITaxon%3A264674","Dolichospermum cf. circinale macrospora 0tu25s6"],["NCBITaxon%3A264670","Dolichospermum cf. circinale macrospora 1tu23s3"],["NCBITaxon%3A264671","Dolichospermum cf. circinale macrospora 1tu26s10"],["NCBITaxon%3A264672","Dolichospermum cf. circinale macrospora 1tu27s5"],["NCBITaxon%3A264673","Dolichospermum cf. circinale macrospora 1tu28s13"]]},{"id":"NCBITaxon:169133","l":"Citricoccus","na":1,"nb":124,"a":[["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"]],"b":[["NCBITaxon%3A246603","Citricoccus alkalitolerans"],["NCBITaxon%3A1688488","Citricoccus lacusdiani"],["NCBITaxon%3A2045010","Citricoccus massiliensis"],["NCBITaxon%3A169134","Citricoccus muralis"],["NCBITaxon%3A863575","Citricoccus nitrophenolicus"],["NCBITaxon%3A592307","Citricoccus parietis"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":1,"nb":124,"a":[["amino_acids_and_peptides/cutimycin.yaml","cutimycin"]],"b":[["NCBITaxon%3A1748","Acidipropionibacterium acidipropionici"],["NCBITaxon%3A1171373","Acidipropionibacterium acidipropionici ATCC 4875"],["NCBITaxon%3A1750","Arachnia propionica"],["NCBITaxon%3A38288","Corynebacterium genitalium"],["NCBITaxon%3A585529","Corynebacterium genitalium ATCC 33030"],["NCBITaxon%3A1747","Cutibacterium acnes"]]},{"id":"NCBITaxon:1051","l":"Ectothiorhodospira","na":1,"nb":120,"a":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]],"b":[["NCBITaxon%3A421628","Ectothiorhodospira haloalkaliphila"],["NCBITaxon%3A765873","Ectothiorhodospira haloalkaliphila ATCC 51935"],["NCBITaxon%3A480969","Ectothiorhodospira imhoffii"],["NCBITaxon%3A2899127","Ectothiorhodospira lacustris"],["NCBITaxon%3A867345","Ectothiorhodospira magna"],["NCBITaxon%3A1396821","Ectothiorhodospira marina"]]},{"id":"NCBITaxon:264691","l":"Trichormus variabilis","na":1,"nb":120,"a":[["unclassified/shinorine.yaml","shinorine"]],"b":[["NCBITaxon%3A264691","Trichormus variabilis"],["NCBITaxon%3A375899","Trichormus variabilis 0441"],["NCBITaxon%3A358556","Trichormus variabilis 9CH37S2"],["NCBITaxon%3A2681313","Trichormus variabilis 9RC"],["NCBITaxon%3A1392459","Trichormus variabilis A1"],["NCBITaxon%3A2799915","Trichormus variabilis A2"]]},{"id":"NCBITaxon:263","l":"Francisella tularensis","na":1,"nb":117,"a":[["polyketides/emodin.yaml","emodin"]],"b":[["NCBITaxon%3A984129","Francisella cf. novicida Fx1"],["NCBITaxon%3A676032","Francisella cf. tularensis subsp. novicida 3523"],["NCBITaxon%3A263","Francisella tularensis"],["NCBITaxon%3A1367846","Francisella tularensis 99A-2628"],["NCBITaxon%3A545771","Francisella tularensis B-SA"],["NCBITaxon%3A1410527","Francisella tularensis FSC069"]]},{"id":"NCBITaxon:2023","l":"Thermoactinomyces","na":1,"nb":113,"a":[["amino_acids_and_peptides/mechercharmycin.yaml","mechercharmycin"]],"b":[["NCBITaxon%3A40990","Saccharomonospora glauca"],["NCBITaxon%3A157274","Thermoactinomyces albus"],["NCBITaxon%3A1329516","Thermoactinomyces daqus"],["NCBITaxon%3A2024","Thermoactinomyces intermedius"],["NCBITaxon%3A1470181","Thermoactinomyces khenchelensis"],["NCBITaxon%3A2756294","Thermoactinomyces mirandus"]]},{"id":"NCBITaxon:29459","l":"Brucella melitensis","na":1,"nb":108,"a":[["fatty_acids/lipopolysaccharide.yaml","lipopolysaccharide"]],"b":[["NCBITaxon%3A36855","Brucella canis"],["NCBITaxon%3A483179","Brucella canis ATCC 23365"],["NCBITaxon%3A29459","Brucella melitensis"],["NCBITaxon%3A1341686","Brucella melitensis 02-5863-1"],["NCBITaxon%3A1388745","Brucella melitensis 02-7258"],["NCBITaxon%3A1266367","Brucella melitensis 043"]]},{"id":"NCBITaxon:1501433","l":"Kamptonema","na":1,"nb":101,"a":[["amino_acids_and_peptides/landornamide-a.yaml","landornamide A"]],"b":[["NCBITaxon%3A92934","Kamptonema animale"],["NCBITaxon%3A1892029","Kamptonema animale 48et"],["NCBITaxon%3A2930505","Kamptonema animale BEA 0982B"],["NCBITaxon%3A1546116","Kamptonema animale BTA258"],["NCBITaxon%3A1443097","Kamptonema animale C5"],["NCBITaxon%3A499848","Kamptonema animale CCALA 138"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":1,"nb":101,"a":[["fatty_acids/galactosylceramide.yaml","α-galactosylceramide"]],"b":[["NCBITaxon%3A817","Bacteroides fragilis"],["NCBITaxon%3A457424","Bacteroides fragilis 3_1_12"],["NCBITaxon%3A862962","Bacteroides fragilis 638R"],["NCBITaxon%3A1308728","Bacteroides fragilis ADL-402"],["NCBITaxon%3A1263046","Bacteroides fragilis CAG:47"],["NCBITaxon%3A1263047","Bacteroides fragilis CAG:558"]]},{"id":"NCBITaxon:1458928","l":"Okeania","na":1,"nb":85,"a":[["polyketides/doxorubicin.yaml","doxorubicin"]],"b":[["NCBITaxon%3A1458932","Okeania comitata"],["NCBITaxon%3A1387514","Okeania comitata 3L-OSC"],["NCBITaxon%3A1458933","Okeania erythroflocculosa"],["NCBITaxon%3A1387517","Okeania erythroflocculosa FFP12-1"],["NCBITaxon%3A643072","Okeania erythroflocculosa LP16"],["NCBITaxon%3A3799376","Okeania gaditana"]]},{"id":"NCBITaxon:44822","l":"Microcystis viridis","na":1,"nb":83,"a":[["amino_acids_and_peptides/microcystin-lr.yaml","microcystin-LR"]],"b":[["NCBITaxon%3A44822","Microcystis viridis"],["NCBITaxon%3A2798017","Microcystis viridis BKP_CS58"],["NCBITaxon%3A2798018","Microcystis viridis BKP_CS59"],["NCBITaxon%3A2798019","Microcystis viridis BKP_CS60"],["NCBITaxon%3A2798020","Microcystis viridis BKP_CS61"],["NCBITaxon%3A2798021","Microcystis viridis BKP_CS62"]]},{"id":"NCBITaxon:104204","l":"Streptomonospora","na":1,"nb":82,"a":[["polyketides/persiamycin-a.yaml","persiamycin A"]],"b":[["NCBITaxon%3A183763","Streptomonospora alba"],["NCBITaxon%3A995084","Streptomonospora algeriensis"],["NCBITaxon%3A505254","Streptomonospora amylolytica"],["NCBITaxon%3A412417","Streptomonospora arabica"],["NCBITaxon%3A505256","Streptomonospora flavalba"],["NCBITaxon%3A427369","Streptomonospora halophila"]]},{"id":"NCBITaxon:92942","l":"Nostoc linckia","na":1,"nb":77,"a":[["polyketides/cylindrocyclophane-d.yaml","Cylindrocyclophane D"]],"b":[["NCBITaxon%3A92942","Nostoc linckia"],["NCBITaxon%3A653360","Nostoc linckia 129"],["NCBITaxon%3A1977326","Nostoc linckia ACSSI 271"],["NCBITaxon%3A1565567","Nostoc linckia AUS-JR/BS/MS/NT-074"],["NCBITaxon%3A1887375","Nostoc linckia AUS-JR/MT/NT-091"],["NCBITaxon%3A1887376","Nostoc linckia AUS-JR/MT/NT-101"]]},{"id":"NCBITaxon:1764","l":"Mycobacterium avium","na":1,"nb":76,"a":[["fatty_acids/gpl-21.yaml","GPL-21"]],"b":[["NCBITaxon%3A1764","Mycobacterium avium"],["NCBITaxon%3A1392002","Mycobacterium avium 05-4293"],["NCBITaxon%3A1392001","Mycobacterium avium 09-5983"],["NCBITaxon%3A1235987","Mycobacterium avium 100"],["NCBITaxon%3A1235988","Mycobacterium avium 101"],["NCBITaxon%3A243243","Mycobacterium avium 104"]]},{"id":"NCBITaxon:373984","l":"Rivularia","na":1,"nb":70,"a":[["amino_acids_and_peptides/cyanochelin-a.yaml","cyanochelin A"]],"b":[["NCBITaxon%3A373990","Rivularia atra"],["NCBITaxon%3A373991","Rivularia atra BIR KRIV1"],["NCBITaxon%3A373992","Rivularia atra BIR MGR1"],["NCBITaxon%3A2886185","Rivularia atra TAU-MAC 3618"],["NCBITaxon%3A2136403","Rivularia biasolettiana"],["NCBITaxon%3A2136404","Rivularia biasolettiana RU1"]]},{"id":"NCBITaxon:1123","l":"Chlorogloeopsis","na":1,"nb":51,"a":[["unclassified/mycosporine-glycine.yaml","mycosporine glycine"]],"b":[["NCBITaxon%3A1124","Chlorogloeopsis fritschii"],["NCBITaxon%3A3373203","Chlorogloeopsis fritschii 0724_799_007_PCR_TH2D_31F"],["NCBITaxon%3A3373204","Chlorogloeopsis fritschii 0724_799_008_PCR_TH2D_32R"],["NCBITaxon%3A3157551","Chlorogloeopsis fritschii BACA0115"],["NCBITaxon%3A3157552","Chlorogloeopsis fritschii BACA0116"],["NCBITaxon%3A3157553","Chlorogloeopsis fritschii BACA0126"]]},{"id":"NCBITaxon:1165","l":"Anabaena cylindrica","na":1,"nb":51,"a":[["amino_acids_and_peptides/anachelin.yaml","anachelin"]],"b":[["NCBITaxon%3A136078","Anabaena cf. cylindrica 133"],["NCBITaxon%3A2716356","Anabaena cf. cylindrica BACA0067"],["NCBITaxon%3A136079","Anabaena cf. cylindrica PMC9705"],["NCBITaxon%3A264675","Anabaena cf. cylindrica XP6B"],["NCBITaxon%3A1165","Anabaena cylindrica"],["NCBITaxon%3A425377","Anabaena cylindrica A621"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":51,"a":[["alkaloids/petrobactin.yaml","petrobactin"]],"b":[["NCBITaxon%3A1392","Bacillus anthracis"],["NCBITaxon%3A1412844","Bacillus anthracis 52-G"],["NCBITaxon%3A1412843","Bacillus anthracis 8903-G"],["NCBITaxon%3A1412842","Bacillus anthracis 9080-G"],["NCBITaxon%3A1420588","Bacillus anthracis CVCC 40048"],["NCBITaxon%3A1439874","Bacillus anthracis CZC5"]]},{"id":"NCBITaxon:1518149","l":"Thalassotalea","na":1,"nb":51,"a":[["polyketides/kojic-acid.yaml","kojic acid"]],"b":[["NCBITaxon%3A864068","Thalassotalea agariperforans"],["NCBITaxon%3A349064","Thalassotalea agarivorans"],["NCBITaxon%3A2716224","Thalassotalea algicola"],["NCBITaxon%3A3242415","Thalassotalea aquiviva"],["NCBITaxon%3A2054316","Thalassotalea atypica"],["NCBITaxon%3A3075612","Thalassotalea castellviae"]]},{"id":"NCBITaxon:75695","l":"Umezakia ovalisporum","na":1,"nb":48,"a":[["alkaloids/7-epi-cylindrospermopsin.yaml","7-epi-cylindrospermopsin"]],"b":[["NCBITaxon%3A75695","Umezakia ovalisporum"],["NCBITaxon%3A543814","Umezakia ovalisporum 1LT27S04"],["NCBITaxon%3A543812","Umezakia ovalisporum 2LT27S02"],["NCBITaxon%3A543813","Umezakia ovalisporum 2LT27S12"],["NCBITaxon%3A2290998","Umezakia ovalisporum A1"],["NCBITaxon%3A985844","Umezakia ovalisporum AB2010/05"]]},{"id":"NCBITaxon:446","l":"Legionella pneumophila","na":1,"nb":47,"a":[["fatty_acids/lipopolysaccharide.yaml","lipopolysaccharide"]],"b":[["NCBITaxon%3A446","Legionella pneumophila"],["NCBITaxon%3A866628","Legionella pneumophila 130b"],["NCBITaxon%3A423212","Legionella pneumophila 2300/99 Alcoy"],["NCBITaxon%3A1370127","Legionella pneumophila Leg01/16"],["NCBITaxon%3A66976","Legionella pneumophila serogroup 1"],["NCBITaxon%3A66985","Legionella pneumophila serogroup 10"]]},{"id":"NCBITaxon:5094","l":"Talaromyces","na":1,"nb":44,"a":[["unclassified/chrodrimanin-b.yaml","chrodrimanin B"]],"b":[["NCBITaxon%3A36649","Talaromyces aculeatus"],["NCBITaxon%3A1392253","Talaromyces aculeatus ATCC 10409"],["NCBITaxon%3A1974180","Talaromyces adpressus"],["NCBITaxon%3A1196081","Talaromyces amestolkiae"],["NCBITaxon%3A1441469","Talaromyces atroroseus"],["NCBITaxon%3A36052","Talaromyces bacillisporus"]]},{"id":"NCBITaxon:644","l":"Aeromonas hydrophila","na":1,"nb":44,"a":[["amino_acids_and_peptides/amonabactin-p-750.yaml","amonabactin P 750"]],"b":[["NCBITaxon%3A105751","Aeromonas bestiarum"],["NCBITaxon%3A648","Aeromonas caviae"],["NCBITaxon%3A196024","Aeromonas dhakensis"],["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A1073378","Aeromonas hydrophila 07-345-3437"],["NCBITaxon%3A1268075","Aeromonas hydrophila 116"]]},{"id":"NCBITaxon:384","l":"Rhizobium leguminosarum","na":1,"nb":39,"a":[["amino_acids_and_peptides/vicibactin.yaml","vicibactin"]],"b":[["NCBITaxon%3A3019932","Rhizobium brockwellii"],["NCBITaxon%3A384","Rhizobium leguminosarum"],["NCBITaxon%3A385","Rhizobium leguminosarum bv. phaseoli"],["NCBITaxon%3A936350","Rhizobium leguminosarum bv. phaseoli 4292"],["NCBITaxon%3A1408223","Rhizobium leguminosarum bv. phaseoli CCGM1"],["NCBITaxon%3A1041140","Rhizobium leguminosarum bv. phaseoli FA23"]]},{"id":"NCBITaxon:715","l":"Actinobacillus pleuropneumoniae","na":1,"nb":35,"a":[["unclassified/capsular-polysaccharide.yaml","capsular polysaccharide"]],"b":[["NCBITaxon%3A44930","Natronobacterium gregoryi"],["NCBITaxon%3A797304","Natronobacterium gregoryi SP2"],["NCBITaxon%3A715","Actinobacillus pleuropneumoniae"],["NCBITaxon%3A1224142","Actinobacillus pleuropneumoniae S8"],["NCBITaxon%3A40325","Actinobacillus pleuropneumoniae serovar 1"],["NCBITaxon%3A754347","Actinobacillus pleuropneumoniae serovar 10"]]},{"id":"NCBITaxon:77133","l":"uncultured bacterium","na":34,"nb":1,"a":[["alkaloids/borregomycin-a.yaml","borregomycin A"],["alkaloids/borregomycin-b.yaml","borregomycin B"],["alkaloids/borregomycin-c.yaml","borregomycin C"],["alkaloids/borregomycin-d.yaml","borregomycin D"],["alkaloids/erdasporine-a.yaml","erdasporine A"],["alkaloids/erdasporine-b.yaml","erdasporine B"]],"b":[["NCBITaxon%3A77133","uncultured bacterium"]]},{"id":"NCBITaxon:4842","l":"Rhizopus","na":1,"nb":31,"a":[["unclassified/rhizoxin-a.yaml","rhizoxin A"]],"b":[["NCBITaxon%3A235392","Rhizopus americanus"],["NCBITaxon%3A64495","Rhizopus arrhizus"],["NCBITaxon%3A1279478","Rhizopus arrhizus 99-133"],["NCBITaxon%3A1279482","Rhizopus arrhizus 99-892"],["NCBITaxon%3A1274785","Rhizopus arrhizus B7407"],["NCBITaxon%3A1279480","Rhizopus arrhizus HUMC 02"]]},{"id":"NCBITaxon:467598","l":"Microseira wollei","na":1,"nb":30,"a":[["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"]],"b":[["NCBITaxon%3A467598","Microseira wollei"],["NCBITaxon%3A1328888","Microseira wollei AW0709"],["NCBITaxon%3A1549807","Microseira wollei AW2009"],["NCBITaxon%3A3082152","Microseira wollei CHAB5998"],["NCBITaxon%3A3082153","Microseira wollei CHAB5999"],["NCBITaxon%3A3082154","Microseira wollei CHAB6000"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":1,"nb":28,"a":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]],"b":[["NCBITaxon%3A729","Haemophilus parainfluenzae"],["NCBITaxon%3A43306","Pseudomonas denitrificans (nom. rej.)"],["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A203192","Stutzerimonas chloritidismutans"],["NCBITaxon%3A3022791","Stutzerimonas decontaminans"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":27,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]],"b":[["NCBITaxon%3A57706","Citrobacter braakii"],["NCBITaxon%3A1914243","Citrobacter europaeus"],["NCBITaxon%3A546","Citrobacter freundii"],["NCBITaxon%3A1173724","Citrobacter freundii 47N"],["NCBITaxon%3A742730","Citrobacter freundii 4_7_47CFAA"],["NCBITaxon%3A1444046","Citrobacter freundii 5-172-05_S1_C1"]]},{"id":"NCBITaxon:119534","l":"Tolypothrix distorta","na":1,"nb":25,"a":[["carbohydrates/tubercidin.yaml","tubercidin"]],"b":[["NCBITaxon%3A119534","Tolypothrix distorta"],["NCBITaxon%3A1892412","Tolypothrix distorta ACOI 731"],["NCBITaxon%3A2493220","Tolypothrix distorta ACT712"],["NCBITaxon%3A2493221","Tolypothrix distorta ATE705"],["NCBITaxon%3A2493222","Tolypothrix distorta ATE717"],["NCBITaxon%3A1496268","Tolypothrix distorta BTA187"]]},{"id":"NCBITaxon:135461","l":"Bacillus subtilis subsp. subtilis","na":1,"nb":25,"a":[["unclassified/fengycin.yaml","fengycin"]],"b":[["NCBITaxon%3A1390","Bacillus amyloliquefaciens"],["NCBITaxon%3A1452","Bacillus atrophaeus"],["NCBITaxon%3A640707","Bacillus atrophaeus ATCC 9372"],["NCBITaxon%3A96241","Bacillus spizizenii"],["NCBITaxon%3A1423","Bacillus subtilis"],["NCBITaxon%3A135461","Bacillus subtilis subsp. subtilis"]]},{"id":"NCBITaxon:37991","l":"Xylaria","na":1,"nb":25,"a":[["fatty_acids/depudecin.yaml","depudecin"]],"b":[["NCBITaxon%3A114808","Xylaria acuta"],["NCBITaxon%3A114810","Xylaria arbuscula"],["NCBITaxon%3A326684","Xylaria bambusicola"],["NCBITaxon%3A2492676","Xylaria berteroi"],["NCBITaxon%3A492089","Xylaria brunneovinosa"],["NCBITaxon%3A114812","Xylaria castorea"]]},{"id":"NCBITaxon:439476","l":"Heteroscytonema crispum","na":1,"nb":25,"a":[["alkaloids/neosaxitoxin.yaml","neosaxitoxin"]],"b":[["NCBITaxon%3A2493241","Heteroscytonema cf. crispum ACT685"],["NCBITaxon%3A1123970","Heteroscytonema cf. crispum UCFS16"],["NCBITaxon%3A1123971","Heteroscytonema cf. crispum UCFS17"],["NCBITaxon%3A1123972","Heteroscytonema cf. crispum UCFS21"],["NCBITaxon%3A439476","Heteroscytonema crispum"],["NCBITaxon%3A439477","Heteroscytonema crispum 00557"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":23,"nb":1,"a":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/melanin.yaml","melanin"],["alkaloids/undecylprodigiosin.yaml","undecylprodigiosin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/sapb.yaml","SapB"]],"b":[["NCBITaxon%3A100226","Streptomyces coelicolor A3(2)"]]},{"id":"NCBITaxon:53","l":"Nannocystis","na":1,"nb":23,"a":[["unclassified/nannocystin-a.yaml","nannocystin a"]],"b":[["NCBITaxon%3A83457","Nannocystis aggregans"],["NCBITaxon%3A2995303","Nannocystis bainbridge"],["NCBITaxon%3A54","Nannocystis exedens"],["NCBITaxon%3A1366054","Nannocystis exedens subsp. cinnabaria"],["NCBITaxon%3A2066023","Nannocystis konarekensis"],["NCBITaxon%3A2995304","Nannocystis punicea"]]},{"id":"NCBITaxon:33178","l":"Aspergillus terreus","na":22,"nb":1,"a":[["alkaloids/asterriquinone-ct5.yaml","asterriquinone CT5"],["alkaloids/cytochalasin-e.yaml","cytochalasin E"],["alkaloids/dihydroisoflavipucine.yaml","dihydroisoflavipucine"],["alkaloids/terrequinone-a.yaml","terrequinone A"],["amino_acids_and_peptides/valactamide-a.yaml","valactamide A"],["polyketides/citreoviridin.yaml","citreoviridin"]],"b":[["NCBITaxon%3A33178","Aspergillus terreus"]]},{"id":"NCBITaxon:331992","l":"Kamptonema formosum","na":1,"nb":22,"a":[["alkaloids/homoanatoxin-a.yaml","homoanatoxin-a"]],"b":[["NCBITaxon%3A493197","Kamptonema cf. formosum P-FW"],["NCBITaxon%3A493198","Kamptonema cf. formosum P-O"],["NCBITaxon%3A331992","Kamptonema formosum"],["NCBITaxon%3A1887363","Kamptonema formosum AUS-JR/AP/NT-078"],["NCBITaxon%3A2711225","Kamptonema formosum BDU30603"],["NCBITaxon%3A1977282","Kamptonema formosum BDU 30603"]]},{"id":"NCBITaxon:85698","l":"Achromobacter xylosoxidans","na":1,"nb":21,"a":[["amino_acids_and_peptides/alcaligin.yaml","alcaligin"]],"b":[["NCBITaxon%3A1389935","Achromobacter animicus"],["NCBITaxon%3A1353891","Achromobacter deleyi"],["NCBITaxon%3A32002","Achromobacter denitrificans"],["NCBITaxon%3A217204","Achromobacter insolitus"],["NCBITaxon%3A1287735","Achromobacter insuavis"],["NCBITaxon%3A470868","Achromobacter marplatensis"]]},{"id":"NCBITaxon:2878388","l":"Streptomyces sp. SCSIO 03032","na":20,"nb":1,"a":[["alkaloids/indimicin-a.yaml","indimicin A"],["alkaloids/indimicin-b.yaml","indimicin B"],["alkaloids/indimicin-c.yaml","indimicin C"],["alkaloids/indimicin-d.yaml","indimicin D"],["alkaloids/indimicin-e.yaml","indimicin E"],["alkaloids/lynamicin-a.yaml","lynamicin A"]],"b":[["NCBITaxon%3A2878388","Streptomyces marincola"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":20,"nb":1,"a":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/c-3-sulfonylated-derivative.yaml","C-3 sulfonylated derivative"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["alkaloids/n-n-dioxide-containing-derivate.yaml","N,N-dioxide containing derivate"]],"b":[["NCBITaxon%3A332952","Aspergillus flavus NRRL3357"]]},{"id":"NCBITaxon:414715","l":"Actinospica","na":1,"nb":20,"a":[["amino_acids_and_peptides/vancomycin.yaml","vancomycin"]],"b":[["NCBITaxon%3A304899","Actinospica acidiphila"],["NCBITaxon%3A2828514","Actinospica acidithermotolerans"],["NCBITaxon%3A1508375","Actinospica durhamensis"],["NCBITaxon%3A304901","Actinospica robiniae"],["NCBITaxon%3A479430","Actinospica robiniae DSM 44927"],["NCBITaxon%3A1872142","Actinospica sp."]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":1,"nb":20,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]],"b":[["NCBITaxon%3A548","Klebsiella aerogenes"],["NCBITaxon%3A1308731","Klebsiella aerogenes ADL-323"],["NCBITaxon%3A935296","Klebsiella aerogenes EA1509E"],["NCBITaxon%3A685445","Klebsiella aerogenes FGI35"],["NCBITaxon%3A1028307","Klebsiella aerogenes KCTC 2190"],["NCBITaxon%3A1439320","Klebsiella aerogenes MGH 61"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":1,"nb":19,"a":[["amino_acids_and_peptides/bacitracin.yaml","bacitracin"]],"b":[["NCBITaxon%3A1402","Bacillus licheniformis"],["NCBITaxon%3A1169411","Bacillus licheniformis 10-1-A"],["NCBITaxon%3A44097","Bacillus licheniformis 2709"],["NCBITaxon%3A1169412","Bacillus licheniformis 5-2-D"],["NCBITaxon%3A1368424","Bacillus licheniformis CG-B52"],["NCBITaxon%3A1232672","Bacillus licheniformis CGMCC 3963"]]},{"id":"NCBITaxon:43987","l":"Geotrichum","na":1,"nb":19,"a":[["terpenoids/mk-8.yaml","MK-8"]],"b":[["NCBITaxon%3A44075","Geotrichum aggregatum"],["NCBITaxon%3A27315","Geotrichum albidum"],["NCBITaxon%3A43976","Geotrichum australiense"],["NCBITaxon%3A44078","Geotrichum geniculatum"],["NCBITaxon%3A2862415","Geotrichum siamense (nom. inval.)"],["NCBITaxon%3A43962","Geotrichum armillariae"]]},{"id":"NCBITaxon:5110","l":"Claviceps","na":1,"nb":19,"a":[["alkaloids/elymoclavine.yaml","elymoclavine"]],"b":[["NCBITaxon%3A2559226","Claviceps aff. humidiphila group G2b"],["NCBITaxon%3A1967640","Claviceps aff. purpurea"],["NCBITaxon%3A83212","Claviceps africana"],["NCBITaxon%3A1623583","Claviceps arundinis"],["NCBITaxon%3A1649128","Claviceps capensis"],["NCBITaxon%3A62069","Claviceps citrina"]]},{"id":"NCBITaxon:672","l":"Vibrio vulnificus","na":1,"nb":19,"a":[["alkaloids/vulnibactin.yaml","vulnibactin"]],"b":[["NCBITaxon%3A678","Vibrio sp."],["NCBITaxon%3A672","Vibrio vulnificus"],["NCBITaxon%3A701179","Vibrio vulnificus 06-2450"],["NCBITaxon%3A1246308","Vibrio vulnificus 96-11-17M"],["NCBITaxon%3A1246309","Vibrio vulnificus A1402"],["NCBITaxon%3A1229202","Vibrio vulnificus B2"]]},{"id":"NCBITaxon:92938","l":"Fischerella muscicola","na":1,"nb":19,"a":[["alkaloids/welwitindolinone-a-isonitrile.yaml","welwitindolinone A isonitrile"]],"b":[["NCBITaxon%3A92938","Fischerella muscicola"],["NCBITaxon%3A1887362","Fischerella muscicola AUS-JR/AP/NT-083"],["NCBITaxon%3A1397105","Fischerella muscicola AUS-JR/SD/MS-035"],["NCBITaxon%3A2676271","Fischerella muscicola AYJ115"],["NCBITaxon%3A1917995","Fischerella muscicola BHU31"],["NCBITaxon%3A2737729","Fischerella muscicola C-03"]]},{"id":"NCBITaxon:95486","l":"Burkholderia cenocepacia","na":1,"nb":18,"a":[["unclassified/ornibactin-c8.yaml","ornibactin C8"]],"b":[["NCBITaxon%3A95486","Burkholderia cenocepacia"],["NCBITaxon%3A1110700","Burkholderia cenocepacia AU16956"],["NCBITaxon%3A1110701","Burkholderia cenocepacia AU16958"],["NCBITaxon%3A985077","Burkholderia cenocepacia BC7"],["NCBITaxon%3A1165869","Burkholderia cenocepacia D2AES"],["NCBITaxon%3A1055524","Burkholderia cenocepacia H111"]]},{"id":"NCBITaxon:378806","l":"Stigmatella aurantiaca DW4/3-1","na":17,"nb":1,"a":[["polyketides/aurafuron-a.yaml","aurafuron A"],["polyketides/dawenol.yaml","dawenol"],["unclassified/dkxanthene-504.yaml","dkxanthene 504"],["unclassified/dkxanthene-508.yaml","dkxanthene 508"],["unclassified/dkxanthene-518.yaml","dkxanthene 518"],["unclassified/dkxanthene-520.yaml","dkxanthene 520"]],"b":[["NCBITaxon%3A378806","Allostigmatella aurantiaca DW4/3-1"]]},{"id":"NCBITaxon:68042","l":"Streptomyces hygroscopicus subsp. hygroscopicus","na":1,"nb":17,"a":[["terpenoids/hygromycin-a.yaml","hygromycin A"]],"b":[["NCBITaxon%3A68175","Streptomyces antimycoticus"],["NCBITaxon%3A1226758","Streptomyces antimycoticus subsp. mordarskii"],["NCBITaxon%3A476551","Streptomyces ascomycinicus"],["NCBITaxon%3A114699","Streptomyces asiaticus"],["NCBITaxon%3A3098222","Streptomyces asiaticus subsp. ignotus"],["NCBITaxon%3A998084","Streptomyces himastatinicus"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":1,"nb":16,"a":[["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]],"b":[["NCBITaxon%3A1408","Bacillus pumilus"],["NCBITaxon%3A536229","Bacillus pumilus ATCC 7061"],["NCBITaxon%3A1227811","Bacillus pumilus BA06"],["NCBITaxon%3A1189615","Bacillus pumilus BL8"],["NCBITaxon%3A1350468","Bacillus pumilus CCMA-560"],["NCBITaxon%3A1330463","Bacillus pumilus CIMFR"]]},{"id":"NCBITaxon:1510471","l":"Nostoc sp. CAVN2","na":16,"nb":1,"a":[["polyketides/carbamidocyclophane-a.yaml","carbamidocyclophane A"],["polyketides/carbamidocyclophane-b.yaml","carbamidocyclophane B"],["polyketides/carbamidocyclophane-c.yaml","carbamidocyclophane C"],["polyketides/carbamidocyclophane-d.yaml","carbamidocyclophane D"],["polyketides/carbamidocyclophane-e.yaml","carbamidocyclophane E"],["polyketides/carbamidocyclophane-f.yaml","carbamidocyclophane F"]],"b":[["NCBITaxon%3A1510471","Nostoc sp. CAVN2"]]},{"id":"NCBITaxon:1549217","l":"Aspergillus stellatus","na":16,"nb":1,"a":[["fatty_acids/dioic-acid-moiety.yaml","dioic acid moiety"],["polyketides/4-methyl-5-dimethyltetradecahexaene-ketolactone.yaml","4-methyl-5-dimethyltetradecahexaene-β-ketolactone"],["polyketides/4-methyl-5-methylheptatriene-ketolactone.yaml","4-methyl-5-methylheptatriene-β-ketolactone"],["polyketides/calbistrin-a.yaml","calbistrin A"],["polyketides/calbistrin-c.yaml","calbistrin C"],["polyketides/decumbenone-a.yaml","decumbenone a"]],"b":[["NCBITaxon%3A1549217","Aspergillus stellatus"]]},{"id":"NCBITaxon:1958824","l":"Streptomyces sp. KY5","na":16,"nb":1,"a":[["polyketides/fasamycin-c.yaml","fasamycin C"],["polyketides/fasamycin-d.yaml","fasamycin D"],["polyketides/fasamycin-e.yaml","fasamycin E"],["polyketides/formicamycin-a.yaml","formicamycin A"],["polyketides/formicamycin-b.yaml","formicamycin B"],["polyketides/formicamycin-c.yaml","formicamycin C"]],"b":[["NCBITaxon%3A1958824","Streptomyces sp. KY5"]]},{"id":"NCBITaxon:587753","l":"Pseudomonas chlororaphis","na":1,"nb":16,"a":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]],"b":[["NCBITaxon%3A587753","Pseudomonas chlororaphis"],["NCBITaxon%3A1343078","Pseudomonas chlororaphis HT66"],["NCBITaxon%3A1037915","Pseudomonas chlororaphis O6"],["NCBITaxon%3A1400530","Pseudomonas chlororaphis PCYL_1"],["NCBITaxon%3A86192","Pseudomonas chlororaphis subsp. aurantiaca"],["NCBITaxon%3A1415170","Pseudomonas chlororaphis subsp. aurantiaca PB-St2"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":1,"nb":15,"a":[["amino_acids_and_peptides/salivaricin-d.yaml","salivaricin D"]],"b":[["NCBITaxon%3A1304","Streptococcus salivarius"],["NCBITaxon%3A1046629","Streptococcus salivarius 57.I"],["NCBITaxon%3A1420586","Streptococcus salivarius ATCC 25975"],["NCBITaxon%3A1263109","Streptococcus salivarius CAG:79"],["NCBITaxon%3A1048332","Streptococcus salivarius CCHSS3"],["NCBITaxon%3A1255635","Streptococcus salivarius CJ181"]]},{"id":"NCBITaxon:34451","l":"Cortinarius","na":1,"nb":15,"a":[["polyketides/clavorubin.yaml","Clavorubin"]],"b":[["NCBITaxon%3A231915","Cortinarius abnormis"],["NCBITaxon%3A2511838","Cortinarius aff. campbellae"],["NCBITaxon%3A112255","Cortinarius archeri"],["NCBITaxon%3A561959","Cortinarius aurantiobasis"],["NCBITaxon%3A742016","Cortinarius austrovenetus"],["NCBITaxon%3A86082","Cortinarius brunneus"]]},{"id":"NCBITaxon:41900","l":"Aspergillus flavipes","na":15,"nb":1,"a":[["alkaloids/aspergillin-pz.yaml","aspergillin PZ"],["alkaloids/aspochalasin-c.yaml","aspochalasin C"],["alkaloids/aspochalasin-e.yaml","aspochalasin E"],["alkaloids/aspochalasin-m.yaml","aspochalasin M"],["alkaloids/cytochalasin-e.yaml","cytochalasin E"],["alkaloids/flavichalasine-f.yaml","flavichalasine F"]],"b":[["NCBITaxon%3A41900","Aspergillus flavipes"]]},{"id":"NCBITaxon:41951","l":"Streptomyces argillaceus","na":15,"nb":1,"a":[["alkaloids/argimycin-pi.yaml","argimycin PI"],["alkaloids/argimycin-pii.yaml","argimycin PII"],["alkaloids/argimycin-piv.yaml","argimycin PIV"],["alkaloids/argimycin-pix.yaml","argimycin PIX"],["alkaloids/argimycin-pv.yaml","argimycin PV"],["alkaloids/argimycin-pvi.yaml","argimycin PVI"]],"b":[["NCBITaxon%3A41951","Streptomyces argillaceus"]]},{"id":"NCBITaxon:43657","l":"Pseudoalteromonas luteoviolacea","na":1,"nb":15,"a":[["shikimates_and_phenylpropanoids/pentabromopseudilin.yaml","pentabromopseudilin"]],"b":[["NCBITaxon%3A43657","Pseudoalteromonas luteoviolacea"],["NCBITaxon%3A1353533","Pseudoalteromonas luteoviolacea 2ta16"],["NCBITaxon%3A1268239","Pseudoalteromonas luteoviolacea B = ATCC 29581"],["NCBITaxon%3A1365248","Pseudoalteromonas luteoviolacea CPMOR-1"],["NCBITaxon%3A1365249","Pseudoalteromonas luteoviolacea CPMOR-2"],["NCBITaxon%3A1365250","Pseudoalteromonas luteoviolacea DSM 6061"]]},{"id":"NCBITaxon:5127","l":"Fusarium fujikuroi","na":15,"nb":1,"a":[["alkaloids/fusaric-acid.yaml","fusaric acid"],["alkaloids/fusarin-c.yaml","fusarin C"],["polyketides/bikaverin.yaml","bikaverin"],["polyketides/fujikurin-c.yaml","fujikurin C"],["polyketides/fujikurin-d.yaml","fujikurin D"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"]],"b":[["NCBITaxon%3A5127","Fusarium fujikuroi"]]},{"id":"NCBITaxon:645","l":"Aeromonas salmonicida","na":1,"nb":15,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A645","Aeromonas salmonicida"],["NCBITaxon%3A113288","Aeromonas salmonicida subsp. achromogenes"],["NCBITaxon%3A1233098","Aeromonas salmonicida subsp. achromogenes AS03"],["NCBITaxon%3A316054","Aeromonas salmonicida subsp. flounderacida"],["NCBITaxon%3A197700","Aeromonas salmonicida subsp. masoucida"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":1,"nb":15,"a":[["unclassified/ape-vf.yaml","APE Vf"]],"b":[["NCBITaxon%3A668","Aliivibrio fischeri"],["NCBITaxon%3A617136","Aliivibrio fischeri 1-C10"],["NCBITaxon%3A617138","Aliivibrio fischeri 9ZB36"],["NCBITaxon%3A1298605","Aliivibrio fischeri ATCC 7744 = JCM 18803 = DSM 507"],["NCBITaxon%3A1367486","Aliivibrio fischeri CB37"],["NCBITaxon%3A1367487","Aliivibrio fischeri EM17"]]},{"id":"NCBITaxon:29909","l":"Tolypocladium","na":1,"nb":14,"a":[["alkaloids/tolypyridone-c.yaml","tolypyridone C"]],"b":[["NCBITaxon%3A124418","Tolypocladium album"],["NCBITaxon%3A1436175","Tolypocladium amazonense"],["NCBITaxon%3A45235","Tolypocladium capitatum"],["NCBITaxon%3A38005","Tolypocladium cylindrosporum"],["NCBITaxon%3A1436177","Tolypocladium endophyticum"],["NCBITaxon%3A38000","Tolypocladium geodes"]]},{"id":"NCBITaxon:457083","l":"Tolypothrix tenuis","na":1,"nb":14,"a":[["carbohydrates/toyocamycin.yaml","toyocamycin"]],"b":[["NCBITaxon%3A1205934","Tolypothrix cf. tenuis UAM 392"],["NCBITaxon%3A457083","Tolypothrix tenuis"],["NCBITaxon%3A1892413","Tolypothrix tenuis CCALA 197"],["NCBITaxon%3A1496327","Tolypothrix tenuis CG21"],["NCBITaxon%3A1136103","Tolypothrix tenuis f. terrestris"],["NCBITaxon%3A1357513","Tolypothrix tenuis FACHB-128"]]},{"id":"NCBITaxon:5518","l":"Fusarium graminearum","na":14,"nb":1,"a":[["amino_acids_and_peptides/fusaoctaxin-a.yaml","fusaoctaxin A"],["polyketides/aurofusarin.yaml","aurofusarin"],["polyketides/fusarielin-h.yaml","fusarielin H"],["polyketides/gibepyrone-a.yaml","gibepyrone A"],["polyketides/prolipyrone-b.yaml","prolipyrone B"],["polyketides/zearalenone.yaml","zearalenone"]],"b":[["NCBITaxon%3A5518","Fusarium graminearum"]]},{"id":"NCBITaxon:1292","l":"Staphylococcus warneri","na":1,"nb":13,"a":[["amino_acids_and_peptides/nukacin-isk-1.yaml","nukacin ISK-1"]],"b":[["NCBITaxon%3A1283","Staphylococcus haemolyticus"],["NCBITaxon%3A1290","Staphylococcus hominis"],["NCBITaxon%3A29385","Staphylococcus saprophyticus"],["NCBITaxon%3A29387","Staphylococcus sp."],["NCBITaxon%3A1292","Staphylococcus warneri"],["NCBITaxon%3A1255582","Staphylococcus warneri 1445"]]},{"id":"NCBITaxon:1871188","l":"Kitasatospora sp.","na":13,"nb":1,"a":[["polyketides/clifednamide-d.yaml","clifednamide D"],["polyketides/clifednamide-g.yaml","clifednamide G"],["polyketides/clifednamide-h.yaml","clifednamide H"],["unclassified/clifednamide-e.yaml","clifednamide E"],["unclassified/clifednamide-f.yaml","clifednamide F"],["unclassified/clifednamide-i.yaml","clifednamide I"]],"b":[["NCBITaxon%3A1871188","Kitasatospora sp."]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":13,"nb":1,"a":[["alkaloids/holomycin.yaml","holomycin"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/2-formyloxymethylclavam.yaml","2-formyloxymethylclavam"],["amino_acids_and_peptides/2-hydroxymethylclavam.yaml","2-hydroxymethylclavam"],["amino_acids_and_peptides/alanylclavam.yaml","alanylclavam"],["amino_acids_and_peptides/cephamycin-c.yaml","cephamycin C"]],"b":[["NCBITaxon%3A1901","Streptomyces clavuligerus"]]},{"id":"NCBITaxon:29449","l":"Rhizobium etli","na":1,"nb":13,"a":[["amino_acids_and_peptides/vicibactin.yaml","vicibactin"]],"b":[["NCBITaxon%3A29449","Rhizobium etli"],["NCBITaxon%3A538025","Rhizobium etli 8C-3"],["NCBITaxon%3A323733","Rhizobium etli bv. mimosae"],["NCBITaxon%3A1432050","Rhizobium etli bv. mimosae str. IE4771"],["NCBITaxon%3A1328306","Rhizobium etli bv. mimosae str. Mim1"],["NCBITaxon%3A147700","Rhizobium etli bv. phaseoli"]]},{"id":"NCBITaxon:5583","l":"Exophiala","na":1,"nb":13,"a":[["polyketides/asperlactone.yaml","asperlactone"]],"b":[["NCBITaxon%3A91920","Exophiala alcalophila"],["NCBITaxon%3A135514","Exophiala calicioides"],["NCBITaxon%3A414539","Exophiala crusticola"],["NCBITaxon%3A5970","Exophiala dermatitidis"],["NCBITaxon%3A858893","Exophiala dermatitidis NIH/UT8656"],["NCBITaxon%3A91925","Exophiala lecanii-corni"]]},{"id":"NCBITaxon:68270","l":"Streptomyces spectabilis","na":13,"nb":1,"a":[["alkaloids/melanin.yaml","melanin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/ectoine.yaml","ectoine"],["carbohydrates/actinospectacin.yaml","actinospectacin"],["carbohydrates/spectinomycin.yaml","spectinomycin"],["polyketides/merochlorin-c.yaml","merochlorin C"]],"b":[["NCBITaxon%3A68270","Streptomyces spectabilis"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":13,"a":[["unclassified/mycobactin.yaml","mycobactin"]],"b":[["NCBITaxon%3A1773","Mycobacterium tuberculosis"],["NCBITaxon%3A83332","Mycobacterium tuberculosis H37Rv"],["NCBITaxon%3A747078","Mycobacterium tuberculosis H37Rv_2009"],["NCBITaxon%3A928249","Mycobacterium tuberculosis H37Rv_ideR_mutant_ST22"],["NCBITaxon%3A757417","Mycobacterium tuberculosis H37RvAE"],["NCBITaxon%3A757419","Mycobacterium tuberculosis H37RvCO"]]},{"id":"NCBITaxon:1048205","l":"Streptomyces uncialis","na":12,"nb":1,"a":[["alkaloids/ammosamaic-acid-cogener.yaml","ammosamaic acid cogener"],["alkaloids/ammosester-a.yaml","ammosester A"],["alkaloids/ammosester-b.yaml","ammosester B"],["alkaloids/ammosester-c.yaml","ammosester C"],["alkaloids/cladoniamide-a.yaml","cladoniamide A"],["alkaloids/cladoniamide-b.yaml","cladoniamide B"]],"b":[["NCBITaxon%3A1048205","Streptomyces uncialis"]]},{"id":"NCBITaxon:1202","l":"Leptolyngbya ectocarpi","na":1,"nb":12,"a":[["polyketides/hierridin-b.yaml","hierridin B"]],"b":[["NCBITaxon%3A1715276","Leptolyngbya aff. ectocarpi LEGE 11389"],["NCBITaxon%3A1828765","Leptolyngbya aff. ectocarpi LEGE 11473"],["NCBITaxon%3A1828722","Leptolyngbya cf. ectocarpi LEGE 11479"],["NCBITaxon%3A1202","Leptolyngbya ectocarpi"],["NCBITaxon%3A2931369","Leptolyngbya ectocarpi BEA 1211B"],["NCBITaxon%3A2931370","Leptolyngbya ectocarpi BEA 1374B"]]},{"id":"NCBITaxon:1208","l":"Trichodesmium thiebautii","na":1,"nb":12,"a":[["polyketides/doxorubicin.yaml","doxorubicin"]],"b":[["NCBITaxon%3A1208","Trichodesmium thiebautii"],["NCBITaxon%3A3080575","Trichodesmium thiebautii GoM2017"],["NCBITaxon%3A3080765","Trichodesmium thiebautii GoM-2019-11"],["NCBITaxon%3A1045877","Trichodesmium thiebautii H94"],["NCBITaxon%3A306282","Trichodesmium thiebautii II-3"],["NCBITaxon%3A2827264","Trichodesmium thiebautii sct-8t3"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":1,"nb":12,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]],"b":[["NCBITaxon%3A72000","Kocuria rhizophila"],["NCBITaxon%3A378753","Kocuria rhizophila DC2201"],["NCBITaxon%3A1272","Kocuria varians"],["NCBITaxon%3A1270","Micrococcus luteus"],["NCBITaxon%3A1357403","Micrococcus luteus CD1_FAA_NB_1"],["NCBITaxon%3A935864","Micrococcus luteus J28"]]},{"id":"NCBITaxon:1401878","l":"Microcystis aeruginosa LEGE 91341","na":12,"nb":1,"a":[["amino_acids_and_peptides/microginin-558.yaml","microginin 558"],["amino_acids_and_peptides/microginin-592.yaml","microginin 592"],["amino_acids_and_peptides/microginin-626.yaml","microginin 626"],["amino_acids_and_peptides/microginin-705.yaml","microginin 705"],["amino_acids_and_peptides/microginin-721.yaml","microginin 721"],["amino_acids_and_peptides/microginin-735.yaml","microginin 735"]],"b":[["NCBITaxon%3A1401878","Microcystis aeruginosa LEGE 91341"]]},{"id":"NCBITaxon:1433842","l":"Hapalosiphon welwitschii UTEX B 1830","na":12,"nb":1,"a":[["alkaloids/12-epi-fischerindole-i-isonitrile.yaml","12-epi-fischerindole I isonitrile"],["alkaloids/12-epi-fischerindole-u-isonitrile.yaml","12-epi-fischerindole U isonitrile"],["alkaloids/12-epi-hapalindole-c-isonitrile.yaml","12-epi-hapalindole C isonitrile"],["alkaloids/12-epi-hapalindole-e.yaml","12-epi-hapalindole E"],["alkaloids/3-epi-welwitindolinone-b-isothiocyanate.yaml","3-epi-welwitindolinone B isothiocyanate"],["alkaloids/3-z-2-isocyanovinyl-indole.yaml","3-[(Z)-2-isocyanovinyl]indole"]],"b":[["NCBITaxon%3A1433842","Hapalosiphon welwitschii UTEX B 1830"]]},{"id":"NCBITaxon:1896107","l":"Biscogniauxia sp.","na":12,"nb":1,"a":[["shikimates_and_phenylpropanoids/3-4-dihydroxy-5-polyprenylbenzoic-acid.yaml","3,4-dihydroxy-5-polyprenylbenzoic acid"],["shikimates_and_phenylpropanoids/4-hydroxy-3-prenylbenzoic-acid.yaml","4-hydroxy-3-prenylbenzoic acid"],["shikimates_and_phenylpropanoids/compound-7.yaml","compound 7"],["shikimates_and_phenylpropanoids/compound-8.yaml","compound 8"],["shikimates_and_phenylpropanoids/prenylhydroquinone.yaml","prenylhydroquinone"],["terpenoids/biscognienyne-b.yaml","biscognienyne B"]],"b":[["NCBITaxon%3A1896107","Biscogniauxia sp."]]},{"id":"NCBITaxon:1898042","l":"Pseudovibrio brasiliensis Ab134","na":12,"nb":1,"a":[["amino_acids_and_peptides/pseudovibriamide-a1.yaml","pseudovibriamide A1"],["amino_acids_and_peptides/pseudovibriamide-a2.yaml","pseudovibriamide A2"],["amino_acids_and_peptides/pseudovibriamide-a3.yaml","pseudovibriamide A3"],["amino_acids_and_peptides/pseudovibriamide-a4.yaml","pseudovibriamide A4"],["amino_acids_and_peptides/pseudovibriamide-a5.yaml","pseudovibriamide A5"],["amino_acids_and_peptides/pseudovibriamide-a6.yaml","pseudovibriamide A6"]],"b":[["NCBITaxon%3A1898042","Pseudovibrio brasiliensis"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK1622","na":12,"nb":1,"a":[["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"],["amino_acids_and_peptides/myxochromide-a.yaml","myxochromide A"],["amino_acids_and_peptides/myxoprincomide-c506.yaml","myxoprincomide-c506"]],"b":[["NCBITaxon%3A246197","Myxococcus xanthus DK 1622"]]},{"id":"NCBITaxon:28035","l":"Staphylococcus lugdunensis","na":1,"nb":12,"a":[["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]],"b":[["NCBITaxon%3A1308746","Staphylococcus lugdenensis ADL-114"],["NCBITaxon%3A1308747","Staphylococcus lugdenensis ADL-405"],["NCBITaxon%3A28035","Staphylococcus lugdunensis"],["NCBITaxon%3A883164","Staphylococcus lugdunensis ACS-027-V-Sch2"],["NCBITaxon%3A698737","Staphylococcus lugdunensis HKU09-01"],["NCBITaxon%3A525377","Staphylococcus lugdunensis M23590"]]},{"id":"NCBITaxon:28447","l":"Clavibacter michiganensis","na":1,"nb":12,"a":[["amino_acids_and_peptides/michiganin-a.yaml","michiganin A"]],"b":[["NCBITaxon%3A1874630","Clavibacter capsici"],["NCBITaxon%3A2301718","Clavibacter lycopersici"],["NCBITaxon%3A28447","Clavibacter michiganensis"],["NCBITaxon%3A33014","Clavibacter michiganensis subsp. insidiosus"],["NCBITaxon%3A33013","Clavibacter michiganensis subsp. michiganensis"],["NCBITaxon%3A443906","Clavibacter michiganensis subsp. michiganensis NCPPB 382"]]},{"id":"NCBITaxon:42308","l":"Hypoxylon","na":1,"nb":12,"a":[["polyketides/naphthalene-1-3-6-8-tetrol.yaml","naphthalene-1,3,6,8-tetrol"]],"b":[["NCBITaxon%3A1799007","Hypoxylon argillaceum"],["NCBITaxon%3A326656","Hypoxylon cercidicola"],["NCBITaxon%3A326657","Hypoxylon crocopeplum"],["NCBITaxon%3A63214","Hypoxylon fragiforme"],["NCBITaxon%3A109372","Hypoxylon fuscum"],["NCBITaxon%3A326663","Hypoxylon investiens"]]},{"id":"NCBITaxon:53409","l":"Pseudomonas coronafaciens","na":1,"nb":12,"a":[["polyketides/coronatine.yaml","coronatine"]],"b":[["NCBITaxon%3A53409","Pseudomonas coronafaciens"],["NCBITaxon%3A129135","Pseudomonas coronafaciens pv. atropurpurea"],["NCBITaxon%3A235275","Pseudomonas coronafaciens pv. coronafaciens"],["NCBITaxon%3A251653","Pseudomonas coronafaciens pv. garcae"],["NCBITaxon%3A1515743","Pseudomonas coronafaciens pv. morceparum"],["NCBITaxon%3A235277","Pseudomonas coronafaciens pv. oryzae"]]},{"id":"NCBITaxon:60172","l":"Penicillium solitum","na":12,"nb":1,"a":[["polyketides/dihydrobisvertinolone.yaml","dihydrobisvertinolone"],["polyketides/sorbicillin.yaml","sorbicillin"],["polyketides/terrestric-acid.yaml","terrestric acid"],["polyketides/tetrahydrobisvertinolone.yaml","tetrahydrobisvertinolone"],["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"],["unclassified/penitrem-a.yaml","penitrem A"]],"b":[["NCBITaxon%3A60172","Penicillium solitum"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":1,"nb":11,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A1063","Cereibacter sphaeroides"],["NCBITaxon%3A272943","Cereibacter sphaeroides 2.4.1"],["NCBITaxon%3A349102","Cereibacter sphaeroides ATCC 17025"],["NCBITaxon%3A349101","Cereibacter sphaeroides ATCC 17029"],["NCBITaxon%3A39723","Cereibacter sphaeroides f. sp. denitrificans"],["NCBITaxon%3A633146","Cereibacter sphaeroides GA"]]},{"id":"NCBITaxon:230521","l":"Fischerella ambigua UTEX 1903","na":11,"nb":1,"a":[["alkaloids/12-epi-hapalindole-j-isonitrile.yaml","12-epi-hapalindole J isonitrile"],["alkaloids/ambiguine-a-isonitrile.yaml","ambiguine A isonitrile"],["alkaloids/ambiguine-b-isonitrile.yaml","ambiguine B isonitrile"],["alkaloids/ambiguine-c-isonitrile.yaml","ambiguine C isonitrile"],["alkaloids/ambiguine-d-isonitrile.yaml","ambiguine D isonitrile"],["alkaloids/ambiguine-e-isonitrile.yaml","ambiguine E isonitrile"]],"b":[["NCBITaxon%3A230521","Fischerella ambigua UTEX 1903"]]},{"id":"NCBITaxon:358560","l":"Geitlerinema splendidum","na":1,"nb":11,"a":[["fatty_acids/1-heptadecene.yaml","1-heptadecene"]],"b":[["NCBITaxon%3A358560","Geitlerinema splendidum"],["NCBITaxon%3A358561","Geitlerinema splendidum 0ES34S4"],["NCBITaxon%3A1755260","Geitlerinema splendidum CCALA 1004"],["NCBITaxon%3A522331","Geitlerinema splendidum MCCS 019"],["NCBITaxon%3A1437317","Geitlerinema splendidum NIVA-CYA 244"],["NCBITaxon%3A2922239","Geitlerinema splendidum NRMC-F 0141"]]},{"id":"NCBITaxon:38033","l":"Chaetomium globosum","na":11,"nb":1,"a":[["alkaloids/chaetoglobosin-c.yaml","chaetoglobosin C"],["alkaloids/cytoglobosin-x.yaml","cytoglobosin X"],["polyketides/11-epichaetomugilin-a.yaml","11-epichaetomugilin A"],["polyketides/azanigerone-a.yaml","azanigerone A"],["polyketides/chaetoviridin-e.yaml","chaetoviridin E"],["polyketides/shanorellin.yaml","shanorellin"]],"b":[["NCBITaxon%3A38033","Chaetomium globosum"]]},{"id":"NCBITaxon:406818","l":"Xenorhabdus bovienii SS-2004","na":11,"nb":1,"a":[["alkaloids/3-2-acetoxy-3-oxo-4-methylhexyl-indole.yaml","3-(2'-acetoxy-3'-oxo-4'-methylhexyl)-indole"],["alkaloids/3-2-acetoxy-3-oxo-4-methylpentyl-indole.yaml","3-(2'-acetoxy-3'-oxo-4'-methylpentyl)-indole"],["alkaloids/3-2-hydroxy-3-oxo-4-methylhexyl-indole.yaml","3-(2'-hydroxy-3'-oxo-4'-methylhexyl)-indole"],["alkaloids/3-2-hydroxy-3-oxo-4-methylpentyl-indole.yaml","3-(2'-hydroxy-3'-oxo-4'-methylpentyl)-indole"],["amino_acids_and_peptides/leupeptin-a.yaml","leupeptin A"],["amino_acids_and_peptides/leupeptin-b.yaml","leupeptin B"]],"b":[["NCBITaxon%3A406818","Xenorhabdus bovienii SS-2004"]]},{"id":"NCBITaxon:47874","l":"Micromonospora rosaria","na":11,"nb":1,"a":[["polyketides/difluostatin-a.yaml","difluostatin A"],["polyketides/fluostatin-c.yaml","fluostatin C"],["polyketides/fluostatin-d.yaml","fluostatin D"],["polyketides/fluostatin-f-2.yaml","fluostatin F"],["polyketides/fluostatin-f.yaml","fluostatin F"],["polyketides/fluostatin-g-h.yaml","fluostatin G/H"]],"b":[["NCBITaxon%3A47874","Micromonospora rosaria"]]},{"id":"NCBITaxon:64","l":"Herpetosiphon","na":1,"nb":11,"a":[["alkaloids/siphonazole.yaml","siphonazole"]],"b":[["NCBITaxon%3A65","Herpetosiphon aurantiacus"],["NCBITaxon%3A316274","Herpetosiphon aurantiacus DSM 785"],["NCBITaxon%3A70996","Herpetosiphon geysericola"],["NCBITaxon%3A2029754","Herpetosiphon giganteus"],["NCBITaxon%3A1973496","Herpetosiphon gulosus"],["NCBITaxon%3A2094568","Herpetosiphon llansteffanensis"]]},{"id":"NCBITaxon:68249","l":"Streptomyces pactum","na":11,"nb":1,"a":[["terpenoids/7-deoxypactamycin.yaml","7-deoxypactamycin"],["terpenoids/nfat-133.yaml","NFAT-133"],["terpenoids/pactamycin.yaml","pactamycin"],["unclassified/pactamide-a.yaml","pactamide A"],["unclassified/pactamide-b.yaml","pactamide B"],["unclassified/pactamide-c.yaml","pactamide C"]],"b":[["NCBITaxon%3A68249","Streptomyces pactum"]]},{"id":"NCBITaxon:995841","l":"Streptomyces sp. HKI0576","na":11,"nb":1,"a":[["alkaloids/dixiamycin-a.yaml","dixiamycin A"],["alkaloids/sulfadixiamycin-a.yaml","sulfadixiamycin A"],["alkaloids/sulfadixiamycin-b.yaml","sulfadixiamycin B"],["alkaloids/sulfadixiamycin-c.yaml","sulfadixiamycin C"],["alkaloids/xiamycin-a.yaml","xiamycin A"],["terpenoids/indosespene.yaml","indosespene"]],"b":[["NCBITaxon%3A995841","Streptomyces sp. HKI0576"]]},{"id":"NCBITaxon:212355","l":"Microcoleus amoenus","na":1,"nb":10,"a":[["fatty_acids/1-heptadecene.yaml","1-heptadecene"]],"b":[["NCBITaxon%3A212355","Microcoleus amoenus"],["NCBITaxon%3A1296353","Oscillatoria amoena CCAP 1459/39"],["NCBITaxon%3A3022837","Oscillatoria amoena HA16"],["NCBITaxon%3A2922241","Oscillatoria amoena NRMC-F 0135"],["NCBITaxon%3A1521532","Oscillatoria amoena SAG 1459-7"],["NCBITaxon%3A1940722","Phormidium amoenum I013-0027"]]},{"id":"NCBITaxon:29484","l":"Yersinia frederiksenii","na":1,"nb":10,"a":[["unclassified/frederiksenibactin.yaml","frederiksenibactin"]],"b":[["NCBITaxon%3A29484","Yersinia frederiksenii"],["NCBITaxon%3A527010","Yersinia frederiksenii 7175"],["NCBITaxon%3A527011","Yersinia frederiksenii 867"],["NCBITaxon%3A349966","Yersinia frederiksenii ATCC 33641"],["NCBITaxon%3A527009","Yersinia frederiksenii CNY 867"],["NCBITaxon%3A527007","Yersinia frederiksenii WA 933"]]},{"id":"NCBITaxon:442870","l":"Acanthopleuribacter pedis KCTC 12899","na":10,"nb":1,"a":[["polyketides/21-methoxy-calyculinamide.yaml","21-methoxy-calyculinamide"],["polyketides/phorbactazole-a.yaml","phorbactazole A"],["polyketides/phorbactazole-b.yaml","phorbactazole B"],["polyketides/phorbactazole-c.yaml","phorbactazole C"],["polyketides/phorbactazole-d.yaml","phorbactazole D"],["polyketides/phorbactazole-e.yaml","phorbactazole E"]],"b":[["NCBITaxon%3A442870","Acanthopleuribacter pedis"]]},{"id":"NCBITaxon:50","l":"Chondromyces","na":1,"nb":10,"a":[["unclassified/chondramide-a.yaml","chondramide A"]],"b":[["NCBITaxon%3A51","Chondromyces apiculatus"],["NCBITaxon%3A1192034","Chondromyces apiculatus DSM 436"],["NCBITaxon%3A1653841","Chondromyces catenulatus"],["NCBITaxon%3A52","Chondromyces crocatus"],["NCBITaxon%3A83446","Chondromyces lanuginosus"],["NCBITaxon%3A83447","Chondromyces pediculatus"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae (strain ATCC 42149 / RIB 40)","na":10,"nb":1,"a":[["fatty_acids/oryzine-a.yaml","oryzine A"],["polyketides/kojic-acid.yaml","kojic acid"],["polyketides/oryzine-b.yaml","oryzine B"],["polyketides/ywa1.yaml","YWA1"],["shikimates_and_phenylpropanoids/2-4-dihydroxy-3-methoxypropiophenone.yaml","2,4'-dihydroxy-3'-methoxypropiophenone"],["shikimates_and_phenylpropanoids/8-methyldiaporthin.yaml","8-methyldiaporthin"]],"b":[["NCBITaxon%3A510516","Aspergillus oryzae RIB40"]]},{"id":"NCBITaxon:1159556","l":"Ustilaginoidea virens","na":9,"nb":1,"a":[["amino_acids_and_peptides/ustiloxin-b.yaml","ustiloxin B"],["polyketides/ustilaginoidin-a.yaml","ustilaginoidin A"],["polyketides/ustilaginoidin-d.yaml","ustilaginoidin D"],["polyketides/ustilaginoidin-e.yaml","ustilaginoidin E"],["polyketides/ustilaginoidin-f.yaml","ustilaginoidin F"],["polyketides/ustilaginoidin-g.yaml","ustilaginoidin G"]],"b":[["NCBITaxon%3A1159556","Ustilaginoidea virens"]]},{"id":"NCBITaxon:1245497","l":"Micromonospora sp. HK160111","na":9,"nb":1,"a":[["alkaloids/microansamycin-i.yaml","microansamycin I"],["polyketides/microansamycin-a.yaml","microansamycin A"],["polyketides/microansamycin-b.yaml","microansamycin B"],["polyketides/microansamycin-c.yaml","microansamycin C"],["polyketides/microansamycin-d.yaml","microansamycin D"],["polyketides/microansamycin-e.yaml","microansamycin E"]],"b":[["NCBITaxon%3A1245497","Micromonospora sp. HK160111"]]},{"id":"NCBITaxon:1599","l":"Latilactobacillus sakei","na":1,"nb":9,"a":[["unclassified/lactocin-s.yaml","lactocin S"]],"b":[["NCBITaxon%3A1599","Latilactobacillus sakei"],["NCBITaxon%3A1381395","Latilactobacillus sakei dgh6"],["NCBITaxon%3A1634","Latilactobacillus sakei L45"],["NCBITaxon%3A214325","Latilactobacillus sakei subsp. carnosus"],["NCBITaxon%3A525363","Latilactobacillus sakei subsp. carnosus DSM 15831"],["NCBITaxon%3A214326","Latilactobacillus sakei subsp. sakei"]]},{"id":"NCBITaxon:1876","l":"Micromonospora sp.","na":9,"nb":1,"a":[["polyketides/quinolidomicin-a.yaml","quinolidomicin A"],["polyketides/sungeidine-c.yaml","sungeidine C"],["polyketides/sungeidine-f.yaml","sungeidine F"],["polyketides/sungeidine-g.yaml","sungeidine G"],["shikimates_and_phenylpropanoids/sungeidine-d.yaml","sungeidine D"],["unclassified/sungeidine-a.yaml","sungeidine A"]],"b":[["NCBITaxon%3A1876","Micromonospora sp."]]},{"id":"NCBITaxon:1979465","l":"Phoma betae","na":9,"nb":1,"a":[["polyketides/betaenone-a.yaml","betaenone A"],["polyketides/betaenone-b.yaml","betaenone B"],["polyketides/betaenone-c.yaml","betaenone C"],["terpenoids/17-deoxyaphidicolin.yaml","17-deoxyaphidicolin"],["terpenoids/3-deoxyaphidicolin.yaml","3-deoxyaphidicolin"],["terpenoids/aphidicolan-16-ol.yaml","aphidicolan-16β-ol"]],"b":[["NCBITaxon%3A1979465","Neocamarosporium betae"]]},{"id":"NCBITaxon:2016","l":"Streptoalloteichus","na":1,"nb":9,"a":[["unclassified/kedarcidin.yaml","kedarcidin"]],"b":[["NCBITaxon%3A2017","Streptoalloteichus hindustanus"],["NCBITaxon%3A44103","Streptoalloteichus sp."],["NCBITaxon%3A756733","Streptoalloteichus sp. ATCC 53650"],["NCBITaxon%3A672461","Streptoalloteichus sp. CC1J"],["NCBITaxon%3A116397","Streptoalloteichus sp. IM-0154"],["NCBITaxon%3A116398","Streptoalloteichus sp. IM-0911"]]},{"id":"NCBITaxon:290110","l":"Xenorhabdus budapestensis","na":9,"nb":1,"a":[["alkaloids/bicornutin-a1.yaml","bicornutin A1"],["alkaloids/bicornutin-a2.yaml","bicornutin A2"],["alkaloids/nematophin.yaml","nematophin"],["amino_acids_and_peptides/avaroferrin.yaml","avaroferrin"],["amino_acids_and_peptides/fabclavine-ia.yaml","fabclavine Ia"],["amino_acids_and_peptides/fabclavine-ib.yaml","fabclavine Ib"]],"b":[["NCBITaxon%3A290110","Xenorhabdus budapestensis"]]},{"id":"NCBITaxon:500485","l":"Penicillium rubens Wisconsin 54-1255","na":9,"nb":1,"a":[["alkaloids/dehydrohistidyltryptophanyldiketopiperazine.yaml","dehydrohistidyltryptophanyldiketopiperazine"],["alkaloids/glandicoline-a.yaml","glandicoline A"],["alkaloids/glandicoline-b.yaml","glandicoline B"],["alkaloids/meleagrine.yaml","meleagrine"],["polyketides/sorbicillin.yaml","sorbicillin"],["terpenoids/conidiogenone.yaml","conidiogenone"]],"b":[["NCBITaxon%3A500485","Penicillium rubens Wisconsin 54-1255"]]},{"id":"NCBITaxon:5076","l":"Penicillium chrysogenum","na":9,"nb":1,"a":[["alkaloids/chrysogine.yaml","chrysogine"],["amino_acids_and_peptides/benzylpenicillin-sodium.yaml","benzylpenicillin sodium"],["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"],["amino_acids_and_peptides/n-5s-5-ammonio-5-carboxylatopentanoyl-l-cysteinyl-d-valinate.yaml","N-[(5S)-5-ammonio-5-carboxylatopentanoyl]-L-cysteinyl-D-valinate"],["polyketides/2-3-dihydrosorbicillin.yaml","2'3'-dihydrosorbicillin"],["polyketides/bisorbicillinol.yaml","bisorbicillinol"]],"b":[["NCBITaxon%3A5076","Penicillium chrysogenum"]]},{"id":"NCBITaxon:569580","l":"Streptomyces sp. CM020","na":9,"nb":1,"a":[["polyketides/1-6-dihydro-8-propylanthraquinone.yaml","1,6-dihydro-8-propylanthraquinone"],["polyketides/alnumycin-a.yaml","alnumycin A"],["polyketides/alnumycin-b.yaml","alnumycin B"],["polyketides/alnumycin-c.yaml","alnumycin C"],["polyketides/alnumycin-p.yaml","alnumycin P"],["polyketides/k1115a.yaml","K1115A"]],"b":[["NCBITaxon%3A569580","Streptomyces sp. CM020"]]},{"id":"NCBITaxon:61235","l":"Fusarium equiseti","na":9,"nb":1,"a":[["alkaloids/fusarochromene.yaml","fusarochromene"],["amino_acids_and_peptides/4-hydroxykynurenine.yaml","4-hydroxykynurenine"],["polyketides/zearalenone.yaml","zearalenone"],["terpenoids/desacetylfusarochromene.yaml","desacetylfusarochromene"],["terpenoids/fusarochromanone.yaml","fusarochromanone"],["terpenoids/mangicol-a.yaml","mangicol A"]],"b":[["NCBITaxon%3A61235","Fusarium equiseti"]]},{"id":"NCBITaxon:67282","l":"Streptomyces asterosporus","na":9,"nb":1,"a":[["alkaloids/4-e-annimycin.yaml","4-E-annimycin"],["alkaloids/4-z-annimycin.yaml","4-Z-annimycin"],["amino_acids_and_peptides/ws9326d.yaml","WS9326D"],["amino_acids_and_peptides/ws9326f.yaml","WS9326F"],["amino_acids_and_peptides/ws9326g.yaml","WS9326G"],["carbohydrates/nucleocidin.yaml","nucleocidin"]],"b":[["NCBITaxon%3A67282","Streptomyces calvus"]]},{"id":"NCBITaxon:722721","l":"Streptomyces sp. SN-1061M","na":9,"nb":1,"a":[["carbohydrates/liposidomycin-a.yaml","liposidomycin A"],["carbohydrates/liposidomycin-b.yaml","liposidomycin B"],["carbohydrates/liposidomycin-c.yaml","liposidomycin C"],["carbohydrates/liposidomycin-g.yaml","liposidomycin G"],["carbohydrates/liposidomycin-h.yaml","liposidomycin H"],["carbohydrates/liposidomycin-k.yaml","liposidomycin K"]],"b":[["NCBITaxon%3A722721","Streptomyces sp. SN-1061M"]]},{"id":"NCBITaxon:747503","l":"Sphaerospermopsis oumiana","na":1,"nb":9,"a":[["alkaloids/guanitoxin.yaml","guanitoxin"]],"b":[["NCBITaxon%3A747503","Sphaerospermopsis oumiana"],["NCBITaxon%3A929850","Sphaerospermopsis oumiana CHAB1036"],["NCBITaxon%3A929851","Sphaerospermopsis oumiana CHAB338"],["NCBITaxon%3A929852","Sphaerospermopsis oumiana CHAB502"],["NCBITaxon%3A929853","Sphaerospermopsis oumiana CHAB508"],["NCBITaxon%3A929854","Sphaerospermopsis oumiana CHAB510"]]},{"id":"NCBITaxon:764904","l":"Cystobacter sp. SBCb004","na":9,"nb":1,"a":[["amino_acids_and_peptides/tubulysin-a.yaml","tubulysin A"],["amino_acids_and_peptides/tubulysin-b.yaml","tubulysin B"],["amino_acids_and_peptides/tubulysin-c.yaml","tubulysin C"],["amino_acids_and_peptides/tubulysin-d.yaml","tubulysin D"],["amino_acids_and_peptides/tubulysin-e.yaml","tubulysin E"],["amino_acids_and_peptides/tubulysin-f.yaml","tubulysin F"]],"b":[["NCBITaxon%3A764904","Cystobacter sp. SBCb004"]]},{"id":"NCBITaxon:96241","l":"Bacillus spizizenii","na":1,"nb":9,"a":[["amino_acids_and_peptides/entianin.yaml","entianin"]],"b":[["NCBITaxon%3A96241","Bacillus spizizenii"],["NCBITaxon%3A703612","Bacillus spizizenii ATCC 6633 = JCM 2499"],["NCBITaxon%3A1051503","Bacillus spizizenii DV1-B-1"],["NCBITaxon%3A932006","Bacillus spizizenii RFWG1A3"],["NCBITaxon%3A932005","Bacillus spizizenii RFWG1A4"],["NCBITaxon%3A932007","Bacillus spizizenii RFWG4C10"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":1,"nb":8,"a":[["alkaloids/molybdenum-cofactor.yaml","molybdenum cofactor"]],"b":[["NCBITaxon%3A1061","Rhodobacter capsulatus"],["NCBITaxon%3A1415162","Rhodobacter capsulatus B6"],["NCBITaxon%3A1415160","Rhodobacter capsulatus DE442"],["NCBITaxon%3A1415163","Rhodobacter capsulatus R121"],["NCBITaxon%3A272942","Rhodobacter capsulatus SB 1003"],["NCBITaxon%3A1415161","Rhodobacter capsulatus Y262"]]},{"id":"NCBITaxon:1136432","l":"Streptomyces sp. CNH189","na":8,"nb":1,"a":[["polyketides/merochlorin-c.yaml","merochlorin C"],["terpenoids/deschloro-merochlorin-a.yaml","deschloro-merochlorin A"],["terpenoids/deschloro-merochlorin-b.yaml","deschloro-merochlorin B"],["terpenoids/dichloro-merochlorin-b.yaml","dichloro-merochlorin B"],["terpenoids/isochloro-merochlorin-b.yaml","isochloro-merochlorin B"],["terpenoids/merochlorin-a.yaml","merochlorin A"]],"b":[["NCBITaxon%3A1136432","Streptomyces sp. CNH189"]]},{"id":"NCBITaxon:1169156","l":"Streptomyces sp. CNB091","na":8,"nb":1,"a":[["unclassified/desmethylsalinamide-c.yaml","desmethylsalinamide C"],["unclassified/desmethylsalinamide-e.yaml","desmethylsalinamide E"],["unclassified/salinamide-a.yaml","salinamide A"],["unclassified/salinamide-b.yaml","salinamide B"],["unclassified/salinamide-c.yaml","salinamide C"],["unclassified/salinamide-d.yaml","salinamide D"]],"b":[["NCBITaxon%3A1169156","Streptomyces sp. CNB091"]]},{"id":"NCBITaxon:117187","l":"Fusarium verticillioides","na":8,"nb":1,"a":[["alkaloids/dihydrofusarin-c.yaml","dihydrofusarin C"],["alkaloids/epi-fusarin-c.yaml","epi-fusarin C"],["alkaloids/fusaric-acid.yaml","fusaric acid"],["alkaloids/fusarin-c.yaml","fusarin C"],["alkaloids/fusarin-d.yaml","fusarin D"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"]],"b":[["NCBITaxon%3A117187","Fusarium verticillioides"]]},{"id":"NCBITaxon:13689","l":"Sphingomonas paucimobilis","na":1,"nb":8,"a":[["unclassified/minimycin.yaml","minimycin"]],"b":[["NCBITaxon%3A178355","Flavobacterium omnivorum"],["NCBITaxon%3A1404341","Sphingobium scionense"],["NCBITaxon%3A13689","Sphingomonas paucimobilis"],["NCBITaxon%3A1219050","Sphingomonas paucimobilis NBRC 13935"],["NCBITaxon%3A33051","Sphingomonas sanguinis"],["NCBITaxon%3A1219054","Sphingomonas sanguinis NBRC 13937"]]},{"id":"NCBITaxon:1703922","l":"Streptomyces sp. CB02414","na":8,"nb":1,"a":[["polyketides/ochromycinone.yaml","ochromycinone"],["polyketides/rubiginone-a2.yaml","rubiginone A2"],["polyketides/rubiginone-b2.yaml","rubiginone B2"],["polyketides/rubiginone-j.yaml","rubiginone J"],["polyketides/rubiginone-k.yaml","rubiginone K"],["polyketides/rubiginone-l.yaml","rubiginone L"]],"b":[["NCBITaxon%3A1703922","Streptomyces sp. CB02414"]]},{"id":"NCBITaxon:1703937","l":"Streptomyces sp. CB03234","na":8,"nb":1,"a":[["terpenoids/tiancilactone-a.yaml","tiancilactone A"],["terpenoids/tiancilactone-b.yaml","tiancilactone B"],["terpenoids/tiancilactone-c.yaml","tiancilactone C"],["terpenoids/tiancilactone-d.yaml","tiancilactone D"],["terpenoids/tiancilactone-e.yaml","tiancilactone E"],["terpenoids/tiancilactone-f.yaml","tiancilactone F"]],"b":[["NCBITaxon%3A1703937","Streptomyces sp. CB03234"]]},{"id":"NCBITaxon:1809","l":"Mycobacterium ulcerans","na":1,"nb":8,"a":[["polyketides/mycolactone-b.yaml","mycolactone B"]],"b":[["NCBITaxon%3A1809","Mycobacterium ulcerans"],["NCBITaxon%3A459428","Mycobacterium ulcerans 1615"],["NCBITaxon%3A362242","Mycobacterium ulcerans Agy99"],["NCBITaxon%3A1299332","Mycobacterium ulcerans str. Harvey"],["NCBITaxon%3A1124626","Mycobacterium ulcerans subsp. shinshuense"],["NCBITaxon%3A315405","Streptococcus gallolyticus"]]},{"id":"NCBITaxon:1873460","l":"Saccharothrix sp.","na":8,"nb":1,"a":[["amino_acids_and_peptides/saccharochelin-a.yaml","saccharochelin A"],["amino_acids_and_peptides/saccharochelin-b.yaml","saccharochelin B"],["amino_acids_and_peptides/saccharochelin-c.yaml","saccharochelin C"],["amino_acids_and_peptides/saccharochelin-d.yaml","saccharochelin D"],["amino_acids_and_peptides/saccharochelin-e.yaml","saccharochelin E"],["amino_acids_and_peptides/saccharochelin-f.yaml","saccharochelin F"]],"b":[["NCBITaxon%3A1873460","Saccharothrix sp."]]},{"id":"NCBITaxon:2056244","l":"Pseudomonas sp. QS1027","na":8,"nb":1,"a":[["amino_acids_and_peptides/keanumycin-c.yaml","Keanumycin C"],["amino_acids_and_peptides/virginiafactin-a.yaml","virginiafactin A"],["amino_acids_and_peptides/virginiafactin-b.yaml","virginiafactin B"],["amino_acids_and_peptides/virginiafactin-c.yaml","virginiafactin C"],["amino_acids_and_peptides/virginiafactin-d.yaml","virginiafactin D"],["unclassified/jessenipeptin.yaml","jessenipeptin"]],"b":[["NCBITaxon%3A2056244","Pseudomonas sp. QS1027"]]},{"id":"NCBITaxon:2814655","l":"Nostoc sp. UHCC 0702","na":8,"nb":1,"a":[["amino_acids_and_peptides/heinamide-a1.yaml","heinamide A1"],["amino_acids_and_peptides/heinamide-a2.yaml","heinamide A2"],["amino_acids_and_peptides/heinamide-a3.yaml","heinamide A3"],["amino_acids_and_peptides/heinamide-b1.yaml","heinamide B1"],["amino_acids_and_peptides/heinamide-b2.yaml","heinamide B2"],["amino_acids_and_peptides/heinamide-b3.yaml","heinamide B3"]],"b":[["NCBITaxon%3A2814655","Nostoc sp. UHCC 0702"]]},{"id":"NCBITaxon:303698","l":"Penicillium steckii","na":8,"nb":1,"a":[["unclassified/adametizine-a.yaml","adametizine A"],["unclassified/fa2097.yaml","FA2097"],["unclassified/outovirin-a.yaml","outovirin A"],["unclassified/outovirin-c.yaml","outovirin C"],["unclassified/penigainamide-a.yaml","penigainamide A"],["unclassified/penigainamide-b.yaml","penigainamide B"]],"b":[["NCBITaxon%3A303698","Penicillium steckii"]]},{"id":"NCBITaxon:345341","l":"Kutzneria sp. 744","na":8,"nb":1,"a":[["amino_acids_and_peptides/kutzneride-6.yaml","Kutzneride 6"],["unclassified/kutzneride-1.yaml","Kutzneride 1"],["unclassified/kutzneride-2.yaml","Kutzneride 2"],["unclassified/kutzneride-3.yaml","Kutzneride 3"],["unclassified/kutzneride-4.yaml","Kutzneride 4"],["unclassified/kutzneride-5.yaml","Kutzneride 5"]],"b":[["NCBITaxon%3A345341","Kutzneria sp. 744"]]},{"id":"NCBITaxon:36656","l":"Penicillium crustosum","na":8,"nb":1,"a":[["polyketides/terrestric-acid.yaml","terrestric acid"],["unclassified/penitrem-a.yaml","penitrem A"],["unclassified/penitrem-b.yaml","penitrem B"],["unclassified/penitrem-c.yaml","penitrem C"],["unclassified/penitrem-d.yaml","penitrem D"],["unclassified/penitrem-e.yaml","penitrem E"]],"b":[["NCBITaxon%3A36656","Penicillium crustosum"]]},{"id":"NCBITaxon:420953","l":"Paraburkholderia megapolitana","na":8,"nb":1,"a":[["amino_acids_and_peptides/megapolibactin-a.yaml","megapolibactin A"],["amino_acids_and_peptides/megapolibactin-acyc.yaml","megapolibactin Acyc"],["amino_acids_and_peptides/megapolibactin-b.yaml","megapolibactin B"],["amino_acids_and_peptides/megapolibactin-c.yaml","megapolibactin C"],["amino_acids_and_peptides/megapolibactin-d.yaml","megapolibactin D"],["amino_acids_and_peptides/megapolibactin-e.yaml","megapolibactin E"]],"b":[["NCBITaxon%3A420953","Paraburkholderia megapolitana"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":1,"nb":8,"a":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]],"b":[["NCBITaxon%3A4932","Saccharomyces cerevisiae"],["NCBITaxon%3A1266529","Saccharomyces cerevisiae BY4743"],["NCBITaxon%3A1218710","Saccharomyces cerevisiae CBS 1585"],["NCBITaxon%3A764102","Saccharomyces cerevisiae FostersB"],["NCBITaxon%3A764101","Saccharomyces cerevisiae FostersO"],["NCBITaxon%3A1220494","Saccharomyces cerevisiae PE-2"]]},{"id":"NCBITaxon:64187","l":"Xanthomonas oryzae pv. oryzae","na":1,"nb":8,"a":[["unclassified/xanthomonadin-i.yaml","xanthomonadin I"]],"b":[["NCBITaxon%3A347","Xanthomonas oryzae"],["NCBITaxon%3A1313303","Xanthomonas oryzae ATCC 35933"],["NCBITaxon%3A64187","Xanthomonas oryzae pv. oryzae"],["NCBITaxon%3A291331","Xanthomonas oryzae pv. oryzae KACC 10331"],["NCBITaxon%3A342109","Xanthomonas oryzae pv. oryzae MAFF 311018"],["NCBITaxon%3A1423889","Xanthomonas oryzae pv. oryzae NAI8"]]},{"id":"NCBITaxon:648","l":"Aeromonas caviae","na":1,"nb":8,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]],"b":[["NCBITaxon%3A648","Aeromonas caviae"],["NCBITaxon%3A878320","Aeromonas caviae Ae398"],["NCBITaxon%3A1458270","Aeromonas caviae NM22"],["NCBITaxon%3A1458271","Aeromonas caviae NM33"],["NCBITaxon%3A3418572","Aeromonas caviae subsp. aquatica"],["NCBITaxon%3A644","Aeromonas hydrophila"]]},{"id":"NCBITaxon:65497","l":"","na":8,"nb":1,"a":[["alkaloids/caerulomycin-a.yaml","caerulomycin A"],["alkaloids/cyanogramide-b.yaml","cyanogramide B"],["alkaloids/cyanogramide-c.yaml","cyanogramide C"],["alkaloids/cyanogramide-d.yaml","cyanogramide D"],["alkaloids/phenaziterpene-a.yaml","phenaziterpene A"],["carbohydrates/kanamycin-a.yaml","kanamycin A"]],"b":[["NCBITaxon%3A2893586","Actinoalloteichus caeruleus"]]},{"id":"NCBITaxon:675526","l":"Stigmatella aurantiaca Sg a15","na":8,"nb":1,"a":[["alkaloids/aurachin-a.yaml","aurachin A"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"],["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/myxochelin-b.yaml","myxochelin B"],["polyketides/rhizopodin.yaml","rhizopodin"]],"b":[["NCBITaxon%3A675526","Allostigmatella aurantiaca Sg a15"]]},{"id":"NCBITaxon:680198","l":"Streptomyces scabiei 87.22","na":8,"nb":1,"a":[["alkaloids/rotihibin-a.yaml","rotihibin A"],["amino_acids_and_peptides/bottromycin-a2.yaml","bottromycin A2"],["amino_acids_and_peptides/edha.yaml","EDHA"],["amino_acids_and_peptides/scabichelin.yaml","scabichelin"],["amino_acids_and_peptides/thaxtomin-c.yaml","thaxtomin C"],["unclassified/n-coronafacoyl-l-isoleucine.yaml","N-coronafacoyl-L-isoleucine"]],"b":[["NCBITaxon%3A680198","Streptomyces scabiei 87.22"]]},{"id":"NCBITaxon:97398","l":"Streptomyces abikoensis","na":1,"nb":8,"a":[["alkaloids/carbazomycin-b.yaml","carbazomycin B"]],"b":[["NCBITaxon%3A97398","Streptomyces abikoensis"],["NCBITaxon%3A68195","Streptomyces ehimensis"],["NCBITaxon%3A3075519","Streptomyces hesseae"],["NCBITaxon%3A66425","Streptomyces luteoverticillatus"],["NCBITaxon%3A68246","Streptomyces olivoreticuli"],["NCBITaxon%3A68252","Streptomyces parvisporogenes"]]},{"id":"NCBITaxon:104259","l":"Penicillium brasilianum","na":7,"nb":1,"a":[["alkaloids/brasiliamide-i.yaml","brasiliamide I"],["unclassified/brasiliamide-a.yaml","brasiliamide A"],["unclassified/brasiliamide-b.yaml","brasiliamide B"],["unclassified/brasiliamide-d.yaml","brasiliamide D"],["unclassified/paraherquamide.yaml","paraherquamide"],["unclassified/paraherquonin.yaml","paraherquonin"]],"b":[["NCBITaxon%3A104259","Penicillium brasilianum"]]},{"id":"NCBITaxon:1169167","l":"Salinispora arenicola CNR107","na":7,"nb":1,"a":[["unclassified/be-43547a1-2.yaml","BE-43547A1"],["unclassified/be-43547a2.yaml","BE-43547A2"],["unclassified/be-43547b1.yaml","BE-43547B1"],["unclassified/be-43547b2.yaml","BE-43547B2"],["unclassified/be-43547b3.yaml","BE-43547B3"],["unclassified/be-43547c1.yaml","BE-43547C1"]],"b":[["NCBITaxon%3A1169167","Salinispora arenicola CNR107"]]},{"id":"NCBITaxon:1245024","l":"Streptomyces sp. LZ35","na":7,"nb":1,"a":[["polyketides/hygrocin-a.yaml","hygrocin A"],["polyketides/hygrocin-b.yaml","hygrocin B"],["shikimates_and_phenylpropanoids/echoside-a.yaml","echoside A"],["shikimates_and_phenylpropanoids/echoside-b.yaml","echoside B"],["shikimates_and_phenylpropanoids/echoside-c.yaml","echoside C"],["shikimates_and_phenylpropanoids/echoside-d.yaml","echoside D"]],"b":[["NCBITaxon%3A1245024","Streptomyces sp. LZ35"]]},{"id":"NCBITaxon:132473","l":"Streptomyces alboniger","na":7,"nb":1,"a":[["carbohydrates/puromycin.yaml","puromycin"],["polyketides/homopamamycin-677a.yaml","homopamamycin-677A"],["polyketides/pamamycin-607.yaml","pamamycin-607"],["polyketides/pamamycin-621a.yaml","pamamycin-621A"],["polyketides/pamamycin-635g.yaml","pamamycin-635G"],["polyketides/pamamycin-649b.yaml","pamamycin-649B"]],"b":[["NCBITaxon%3A132473","Streptomyces alboniger"]]},{"id":"NCBITaxon:140106","l":"Neonectria","na":1,"nb":7,"a":[["alkaloids/ilicicolin-j.yaml","ilicicolin J"]],"b":[["NCBITaxon%3A57153","Neonectria coccinea"],["NCBITaxon%3A78410","Neonectria ditissima"],["NCBITaxon%3A992199","Neonectria faginata"],["NCBITaxon%3A78402","Neonectria hederae"],["NCBITaxon%3A57155","Neonectria lugdunensis"],["NCBITaxon%3A979145","Neonectria punicea"]]},{"id":"NCBITaxon:1661387","l":"Micromonospora sp. RV43","na":7,"nb":1,"a":[["unclassified/be-43547a1.yaml","BE-43547A1"],["unclassified/be-43547a2.yaml","BE-43547A2"],["unclassified/be-43547b1.yaml","BE-43547B1"],["unclassified/be-43547b2.yaml","BE-43547B2"],["unclassified/be-43547b3.yaml","BE-43547B3"],["unclassified/be-43547c1.yaml","BE-43547C1"]],"b":[["NCBITaxon%3A1661387","Micromonospora sp. RV43"]]},{"id":"NCBITaxon:1703943","l":"Streptomyces sp. CB01883","na":7,"nb":1,"a":[["amino_acids_and_peptides/guangnanmycin.yaml","guangnanmycin"],["polyketides/isofuranonaphthoquinone-a.yaml","Isofuranonaphthoquinone A"],["polyketides/isofuranonaphthoquinone-b.yaml","Isofuranonaphthoquinone B"],["polyketides/isofuranonaphthoquinone-c.yaml","Isofuranonaphthoquinone C"],["polyketides/isofuranonaphthoquinone-d.yaml","Isofuranonaphthoquinone D"],["polyketides/isofuranonaphthoquinone-e.yaml","Isofuranonaphthoquinone E"]],"b":[["NCBITaxon%3A1703943","Streptomyces sp. CB01883"]]},{"id":"NCBITaxon:177416","l":"Francisella tularensis subsp. tularensis SCHU S4","na":1,"nb":7,"a":[["unclassified/rhizoferrin.yaml","rhizoferrin"]],"b":[["NCBITaxon%3A177416","Francisella tularensis subsp. tularensis SCHU S4"],["NCBITaxon%3A1341660","Francisella tularensis subsp. tularensis str. SCHU S4 substr. FSC237"],["NCBITaxon%3A1341661","Francisella tularensis subsp. tularensis str. SCHU S4 substr. FTS-634/635"],["NCBITaxon%3A1341657","Francisella tularensis subsp. tularensis str. SCHU S4 substr. NR-10492"],["NCBITaxon%3A1341656","Francisella tularensis subsp. tularensis str. SCHU S4 substr. NR-28534"],["NCBITaxon%3A1341658","Francisella tularensis subsp. tularensis str. SCHU S4 substr. NR-643"]]},{"id":"NCBITaxon:1893","l":"Streptomyces atratus","na":7,"nb":1,"a":[["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/ilamycin-b1.yaml","ilamycin B1"],["amino_acids_and_peptides/ilamycin-b2.yaml","ilamycin B2"],["amino_acids_and_peptides/ilamycin-e1.yaml","ilamycin E1"],["amino_acids_and_peptides/rufomycin.yaml","rufomycin"],["unclassified/ilamycin-c1.yaml","ilamycin C1"]],"b":[["NCBITaxon%3A1893","Streptomyces atratus"]]},{"id":"NCBITaxon:1934313","l":"Chitinimonas sp.","na":7,"nb":1,"a":[["amino_acids_and_peptides/chitinimide-a.yaml","chitinimide A"],["amino_acids_and_peptides/chitinimide-b.yaml","chitinimide B"],["amino_acids_and_peptides/chitinimide-c.yaml","chitinimide C"],["amino_acids_and_peptides/chitinimide-d.yaml","chitinimide D"],["amino_acids_and_peptides/chitinimide-e.yaml","chitinimide E"],["amino_acids_and_peptides/chitinimide-f.yaml","chitinimide F"]],"b":[["NCBITaxon%3A1934313","Chitinimonas sp."]]},{"id":"NCBITaxon:2014","l":"Nocardiopsis dassonvillei","na":1,"nb":7,"a":[["alkaloids/iodinin.yaml","iodinin"]],"b":[["NCBITaxon%3A146802","Nocardiopsis alborubida"],["NCBITaxon%3A1223496","Nocardiopsis alborubida NBRC 13392"],["NCBITaxon%3A2014","Nocardiopsis dassonvillei"],["NCBITaxon%3A2580523","Nocardiopsis dassonvillei subsp. crassaminis"],["NCBITaxon%3A568208","Nocardiopsis dassonvillei subsp. dassonvillei"],["NCBITaxon%3A446468","Nocardiopsis dassonvillei subsp. dassonvillei DSM 43111"]]},{"id":"NCBITaxon:2024858","l":"","na":7,"nb":1,"a":[["amino_acids_and_peptides/sandarazol-a.yaml","sandarazol A"],["amino_acids_and_peptides/sandarazol-c.yaml","sandarazol C"],["amino_acids_and_peptides/sandarazol-d.yaml","sandarazol D"],["amino_acids_and_peptides/sandarazol-f.yaml","sandarazol F"],["amino_acids_and_peptides/sandarazol-g.yaml","sandarazol G"],["unclassified/sandarazol-b.yaml","sandarazol B"]],"b":[["NCBITaxon%3A2024858","Sandaracinus sp."]]},{"id":"NCBITaxon:209559","l":"","na":7,"nb":1,"a":[["polyketides/burnettiene-a.yaml","burnettiene A"],["polyketides/preburnettiene-a.yaml","preburnettiene A"],["polyketides/preburnettiene-b.yaml","preburnettiene B"],["unclassified/14-hydroxypaspalinine.yaml","14-hydroxypaspalinine"],["unclassified/14-leucyloxy-paspalinine.yaml","14-(leucyloxy)paspalinine"],["unclassified/14-n-n-dimethylleucyloxy-paspalinine.yaml","14-(N,N-dimethylleucyloxy)paspalinine"]],"b":[["NCBITaxon%3A209559","Aspergillus alliaceus"]]},{"id":"NCBITaxon:223283","l":"Pseudomonas syringae pv. tomato (strain ATCC BAA-871 / DC3000)","na":7,"nb":1,"a":[["alkaloids/yersiniabactin.yaml","yersiniabactin"],["amino_acids_and_peptides/syringafactin-a.yaml","syringafactin A"],["amino_acids_and_peptides/syringafactin-b.yaml","syringafactin B"],["amino_acids_and_peptides/syringafactin-c.yaml","syringafactin C"],["amino_acids_and_peptides/syringafactin-d.yaml","syringafactin D"],["amino_acids_and_peptides/syringafactin-e.yaml","syringafactin E"]],"b":[["NCBITaxon%3A223283","Pseudomonas syringae pv. tomato str. DC3000"]]},{"id":"NCBITaxon:2487000","l":"Hypomontagnella monticulosa","na":7,"nb":1,"a":[["fatty_acids/deoxysporothric-acid.yaml","deoxysporothric acid"],["fatty_acids/sporothric-acid.yaml","sporothric acid"],["polyketides/dihydroisosporothric-acid.yaml","dihydroisosporothric acid"],["polyketides/isosporothric-acid.yaml","isosporothric acid"],["polyketides/sporochartine-b.yaml","sporochartine B"],["polyketides/sporothriolide.yaml","sporothriolide"]],"b":[["NCBITaxon%3A2487000","Hypomontagnella monticulosa"]]},{"id":"NCBITaxon:2818510","l":"Candidatus Synoicihabitans palmerolidicus","na":7,"nb":1,"a":[["polyketides/palmerolide-a.yaml","palmerolide A"],["polyketides/palmerolide-b.yaml","palmerolide B"],["polyketides/palmerolide-c.yaml","palmerolide C"],["polyketides/palmerolide-d.yaml","palmerolide D"],["polyketides/palmerolide-f.yaml","palmerolide F"],["polyketides/palmerolide-g.yaml","palmerolide G"]],"b":[["NCBITaxon%3A2818510","Candidatus Synoicihabitans palmerolidicus"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":1,"nb":7,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]],"b":[["NCBITaxon%3A293","Brevundimonas diminuta"],["NCBITaxon%3A1255603","Brevundimonas diminuta 3F5N"],["NCBITaxon%3A1035191","Brevundimonas diminuta 470-4"],["NCBITaxon%3A751586","Brevundimonas diminuta ATCC 11568"],["NCBITaxon%3A588932","Brevundimonas naejangsanensis"],["NCBITaxon%3A1325724","Brevundimonas vancanneytii"]]},{"id":"NCBITaxon:33069","l":"Pseudomonas viridiflava","na":1,"nb":7,"a":[["unclassified/fosfomycin.yaml","fosfomycin"]],"b":[["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A33069","Pseudomonas viridiflava"],["NCBITaxon%3A1357290","Pseudomonas viridiflava CC1582"],["NCBITaxon%3A1198305","Pseudomonas viridiflava ICMP 13104"],["NCBITaxon%3A1198674","Pseudomonas viridiflava ICMP 6717"],["NCBITaxon%3A1357291","Pseudomonas viridiflava TA043"]]},{"id":"NCBITaxon:337330","l":"Lactiplantibacillus plantarum subsp. plantarum","na":1,"nb":7,"a":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]],"b":[["NCBITaxon%3A1590","Lactiplantibacillus plantarum"],["NCBITaxon%3A337330","Lactiplantibacillus plantarum subsp. plantarum"],["NCBITaxon%3A525338","Lactiplantibacillus plantarum subsp. plantarum ATCC 14917 = JCM 1149 = CGMCC"],["NCBITaxon%3A889516","Lactiplantibacillus plantarum subsp. plantarum KCA-1"],["NCBITaxon%3A1036177","Lactiplantibacillus plantarum subsp. plantarum NC8"],["NCBITaxon%3A767468","Lactiplantibacillus plantarum subsp. plantarum P-8"]]},{"id":"NCBITaxon:33910","l":"Amycolatopsis mediterranei","na":1,"nb":7,"a":[["polyketides/rifamycin-sv.yaml","rifamycin SV"]],"b":[["NCBITaxon%3A33910","Amycolatopsis mediterranei"],["NCBITaxon%3A1221524","Amycolatopsis mediterranei RB"],["NCBITaxon%3A713604","Amycolatopsis mediterranei S699"],["NCBITaxon%3A454030","Amycolatopsis mediterranei subsp. kanglensis"],["NCBITaxon%3A749927","Amycolatopsis mediterranei U32"],["NCBITaxon%3A287986","Amycolatopsis rifamycinica"]]},{"id":"NCBITaxon:362","l":"Agrobacterium radiobacter","na":1,"nb":7,"a":[["alkaloids/agrobactin.yaml","agrobactin"]],"b":[["NCBITaxon%3A362","Agrobacterium radiobacter"],["NCBITaxon%3A1336745","Agrobacterium radiobacter DSM 30147"],["NCBITaxon%3A361","Agrobacterium sp."],["NCBITaxon%3A358","Agrobacterium tumefaciens"],["NCBITaxon%3A359","Martinezella rhizogenes"],["NCBITaxon%3A204072","Ramlibacter henchirensis"]]},{"id":"NCBITaxon:391037","l":"Salinispora arenicola CNS-205","na":7,"nb":1,"a":[["alkaloids/lymphostin.yaml","lymphostin"],["alkaloids/lymphostinol.yaml","lymphostinol"],["alkaloids/neolymphostin-b.yaml","neolymphostin b"],["alkaloids/neolymphostinol-b.yaml","neolymphostinol B"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/cyclomarin-d.yaml","cyclomarin D"]],"b":[["NCBITaxon%3A391037","Salinispora arenicola CNS-205"]]},{"id":"NCBITaxon:5077","l":"Penicillium citrinum","na":7,"nb":1,"a":[["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["polyketides/citrinin.yaml","(+)-citrinin"],["polyketides/mevinic-acid.yaml","mevinic acid"],["unclassified/orcinol.yaml","orcinol"],["unclassified/penigainamide-a.yaml","penigainamide A"],["unclassified/penigainamide-b.yaml","penigainamide B"]],"b":[["NCBITaxon%3A5077","Penicillium citrinum"]]},{"id":"NCBITaxon:5599","l":"Alternaria alternata","na":7,"nb":1,"a":[["alkaloids/ak-toxin-i.yaml","AK-toxin I"],["alkaloids/dimethylcoprogen.yaml","dimethylcoprogen"],["amino_acids_and_peptides/am-toxin.yaml","AM-toxin"],["polyketides/act-toxin-ii.yaml","ACT-Toxin II"],["polyketides/unii-yc2q1o94pt.yaml","UNII-YC2Q1O94PT"],["unclassified/af-toxin.yaml","AF-toxin"]],"b":[["NCBITaxon%3A5599","Alternaria alternata"]]},{"id":"NCBITaxon:63737","l":"Nostoc punctiforme PCC 73102","na":7,"nb":1,"a":[["amino_acids_and_peptides/microviridin-n3.yaml","microviridin N3"],["amino_acids_and_peptides/microviridin-n4.yaml","microviridin N4"],["amino_acids_and_peptides/microviridin-n6.yaml","microviridin N6"],["amino_acids_and_peptides/microviridin-n7.yaml","microviridin N7"],["amino_acids_and_peptides/microviridin-n8.yaml","microviridin N8"],["amino_acids_and_peptides/microviridin-n9.yaml","microviridin N9"]],"b":[["NCBITaxon%3A63737","Nostoc punctiforme PCC 73102"]]},{"id":"NCBITaxon:67339","l":"Streptomyces orinoci","na":7,"nb":1,"a":[["polyketides/aureothin.yaml","aureothin"],["polyketides/orinocin.yaml","orinocin"],["polyketides/spectinabilin.yaml","spectinabilin"],["terpenoids/snf4435c.yaml","SNF4435C"],["terpenoids/snf4435d.yaml","SNF4435D"],["unclassified/neoantimycin-2.yaml","neoantimycin"]],"b":[["NCBITaxon%3A67339","Streptomyces orinoci"]]},{"id":"NCBITaxon:683308","l":"Frankia sp. CH37","na":7,"nb":1,"a":[["amino_acids_and_peptides/frankobactin-a1.yaml","frankobactin A1"],["amino_acids_and_peptides/frankobactin-a3.yaml","frankobactin A3"],["amino_acids_and_peptides/frankobactin-b1.yaml","frankobactin B1"],["amino_acids_and_peptides/frankobactin-b3.yaml","frankobactin B3"],["amino_acids_and_peptides/frankobactin-c1.yaml","frankobactin C1"],["unclassified/frankobactin-a2.yaml","frankobactin A2"]],"b":[["NCBITaxon%3A683308","Parafrankia sp. CH37"]]},{"id":"NCBITaxon:69966","l":"Macrococcoides caseolyticum","na":1,"nb":7,"a":[["amino_acids_and_peptides/micrococcin-p1.yaml","micrococcin P1"]],"b":[["NCBITaxon%3A69966","Macrococcoides caseolyticum"],["NCBITaxon%3A1255615","Macrococcoides caseolyticum ATCC 13458 = DSM 20597"],["NCBITaxon%3A458233","Macrococcoides caseolyticum JCSC5402"],["NCBITaxon%3A2233644","Macrococcoides caseolyticum subsp. caseolyticum"],["NCBITaxon%3A1891096","Macrococcoides caseolyticum subsp. hominis"],["NCBITaxon%3A29385","Staphylococcus saprophyticus"]]},{"id":"NCBITaxon:80884","l":"Colletotrichum higginsianum","na":7,"nb":1,"a":[["shikimates_and_phenylpropanoids/colletorin-d-acid.yaml","Colletorin D acid"],["unclassified/13-epi-higginsianin-c.yaml","13-epi-higginsianin C"],["unclassified/colletorin-d.yaml","Colletorin D"],["unclassified/higginsianin-b.yaml","higginsianin B"],["unclassified/higginsianin-c.yaml","higginsianin C"],["unclassified/higginsianin-d.yaml","higginsianin D"]],"b":[["NCBITaxon%3A80884","Colletotrichum higginsianum"]]},{"id":"NCBITaxon:945781","l":"Synechocystis salina LEGE 06099","na":7,"nb":1,"a":[["polyketides/bartoloside-e.yaml","bartoloside E"],["polyketides/bartoloside-f.yaml","bartoloside F"],["polyketides/bartoloside-g.yaml","bartoloside G"],["polyketides/bartoloside-h.yaml","bartoloside H"],["polyketides/bartoloside-i.yaml","bartoloside I"],["polyketides/bartoloside-j.yaml","bartoloside J"]],"b":[["NCBITaxon%3A945781","Synechocystis salina LEGE 06099"]]},{"id":"NCBITaxon:1173023","l":"Fischerella sp. PCC 9431","na":6,"nb":1,"a":[["unclassified/hapalosin-a.yaml","hapalosin A"],["unclassified/hapalosin-c.yaml","hapalosin C"],["unclassified/hapalosin-d.yaml","hapalosin D"],["unclassified/hapalosin-e.yaml","hapalosin E"],["unclassified/hapalosin-f.yaml","hapalosin F"],["unclassified/hapalosin-g.yaml","hapalosin G"]],"b":[["NCBITaxon%3A1173023","Fischerella sp. PCC 9431"]]},{"id":"NCBITaxon:128403","l":"Scytonema hofmannii PCC 7110","na":6,"nb":1,"a":[["amino_acids_and_peptides/scytocyclamide-a.yaml","scytocyclamide A"],["amino_acids_and_peptides/scytocyclamide-a2.yaml","scytocyclamide A2"],["amino_acids_and_peptides/scytocyclamide-b.yaml","scytocyclamide B"],["amino_acids_and_peptides/scytocyclamide-b2.yaml","scytocyclamide B2"],["amino_acids_and_peptides/scytocyclamide-b3.yaml","scytocyclamide B3"],["amino_acids_and_peptides/scytocyclamide-c.yaml","scytocyclamide C"]],"b":[["NCBITaxon%3A128403","Scytonema hofmannii PCC 7110"]]},{"id":"NCBITaxon:1342289","l":"Scytonema hofmannii","na":6,"nb":1,"a":[["amino_acids_and_peptides/scytocyclamide-a.yaml","scytocyclamide A"],["amino_acids_and_peptides/scytocyclamide-a2.yaml","scytocyclamide A2"],["amino_acids_and_peptides/scytocyclamide-b.yaml","scytocyclamide B"],["amino_acids_and_peptides/scytocyclamide-b2.yaml","scytocyclamide B2"],["amino_acids_and_peptides/scytocyclamide-b3.yaml","scytocyclamide B3"],["amino_acids_and_peptides/scytocyclamide-c.yaml","scytocyclamide C"]],"b":[["NCBITaxon%3A1342289","Scytonema hofmannii AUS-JR/DB/NT-012"]]},{"id":"NCBITaxon:1400207","l":"Streptomyces sp. MA37","na":6,"nb":1,"a":[["alkaloids/legonindolizine-a.yaml","Legonindolizine A"],["alkaloids/legonindolizine-b.yaml","Legonindolizine B"],["alkaloids/legonmycin-a.yaml","Legonmycin A"],["alkaloids/legonmycin-b.yaml","Legonmycin B"],["alkaloids/neocarazostatin-a.yaml","neocarazostatin A"],["unclassified/2r-3s-4s-5-fluoro-2-3-4-trihydroxypentanoic-acid.yaml","(2R,3S,4S)-5-fluoro-2,3,4-trihydroxypentanoic acid"]],"b":[["NCBITaxon%3A1400207","Streptomyces sp. MA37"]]},{"id":"NCBITaxon:1491466","l":"Trichoderma guizhouense","na":6,"nb":1,"a":[["polyketides/compound-1.yaml","compound 1"],["polyketides/compound-4.yaml","compound 4"],["polyketides/harziphilone.yaml","harziphilone"],["polyketides/isoharziphilone-1.yaml","isoharziphilone-1"],["polyketides/isoharziphilone-2.yaml","isoharziphilone-2"],["polyketides/t22azaphilone.yaml","t22azaphilone"]],"b":[["NCBITaxon%3A1491466","Trichoderma guizhouense"]]},{"id":"NCBITaxon:1521554","l":"Jaaginema geminatum","na":1,"nb":6,"a":[["fatty_acids/1-heptadecene.yaml","1-heptadecene"]],"b":[["NCBITaxon%3A1521554","Jaaginema geminatum"],["NCBITaxon%3A1849712","Jaaginema geminatum ISB76"],["NCBITaxon%3A2938171","Jaaginema geminatum MMK02"],["NCBITaxon%3A2602019","Jaaginema geminatum PJ S18"],["NCBITaxon%3A1521634","Jaaginema geminatum SAG 1459-8"],["NCBITaxon%3A2012957","Jaaginema geminatum SM S13"]]},{"id":"NCBITaxon:161235","l":"Streptomyces sp. PGA64","na":6,"nb":1,"a":[["polyketides/gaudimycin-a.yaml","gaudimycin A"],["polyketides/gaudimycin-c.yaml","gaudimycin C"],["polyketides/gaudimycin-d.yaml","gaudimycin D"],["polyketides/prejadomycin.yaml","prejadomycin"],["polyketides/rabelomycin.yaml","rabelomycin"],["polyketides/uwm6.yaml","UWM6"]],"b":[["NCBITaxon%3A161235","Streptomyces sp. PGA64"]]},{"id":"NCBITaxon:1873369","l":"Aspergillus hancockii","na":6,"nb":1,"a":[["alkaloids/hancockiamide-b.yaml","hancockiamide B"],["alkaloids/hancockiamide-c.yaml","hancockiamide C"],["alkaloids/hancockiamide-d.yaml","hancockiamide D"],["unclassified/hancockiamide-a.yaml","hancockiamide A"],["unclassified/hancockiamide-e.yaml","hancockiamide E"],["unclassified/hancockiamide-f.yaml","hancockiamide F"]],"b":[["NCBITaxon%3A1873369","Aspergillus hancockii"]]},{"id":"NCBITaxon:1894","l":"Kitasatospora aureofaciens","na":6,"nb":1,"a":[["fatty_acids/triacsin-c.yaml","triacsin C"],["polyketides/auricin.yaml","auricin"],["polyketides/chlortetracycline.yaml","chlortetracycline"],["polyketides/lipomycin.yaml","α-lipomycin"],["polyketides/oxytetracycline.yaml","oxytetracycline"],["polyketides/venturicidin-a.yaml","venturicidin A"]],"b":[["NCBITaxon%3A1894","Kitasatospora aureofaciens"]]},{"id":"NCBITaxon:2070498","l":"Streptomyces sp. IMB7-145","na":6,"nb":1,"a":[["polyketides/17-o-methylniphimycin.yaml","17-O-methylniphimycin"],["polyketides/19-o-malonylniphimycin.yaml","19-O-malonylniphimycin"],["polyketides/niphimycin-c.yaml","niphimycin C"],["polyketides/niphimycin-d.yaml","niphimycin D"],["polyketides/niphimycin-e.yaml","niphimycin E"],["polyketides/niphimycin-i.yaml","niphimycin Iα"]],"b":[["NCBITaxon%3A2070498","Streptomyces sp. IMB7-145"]]},{"id":"NCBITaxon:2546228","l":"Moorena producens ASI16Jul14-2","na":6,"nb":1,"a":[["amino_acids_and_peptides/vatiamide-e.yaml","vatiamide E"],["polyketides/vatiamide-a.yaml","vatiamide A"],["polyketides/vatiamide-b.yaml","vatiamide B"],["polyketides/vatiamide-c.yaml","vatiamide C"],["polyketides/vatiamide-d.yaml","vatiamide D"],["unclassified/vatiamide-f.yaml","vatiamide F"]],"b":[["NCBITaxon%3A2546228","Moorena producens ASI16Jul14-2"]]},{"id":"NCBITaxon:2602572","l":"Streptomyces sp. Tue6314","na":6,"nb":1,"a":[["polyketides/streptoketide-a.yaml","streptoketide A"],["polyketides/streptoketide-b.yaml","streptoketide B"],["polyketides/uwm5.yaml","UWM5"],["shikimates_and_phenylpropanoids/s2502.yaml","S2502"],["shikimates_and_phenylpropanoids/s2507.yaml","S2507"],["unclassified/streptoketide-c.yaml","streptoketide C"]],"b":[["NCBITaxon%3A2602572","Streptomyces sp. Tue6314"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":6,"a":[["alkaloids/parabactin.yaml","parabactin"]],"b":[["NCBITaxon%3A266","Paracoccus denitrificans"],["NCBITaxon%3A1302247","Paracoccus denitrificans JCM 21484"],["NCBITaxon%3A318586","Paracoccus denitrificans PD1222"],["NCBITaxon%3A1051075","Paracoccus denitrificans SD1"],["NCBITaxon%3A82367","Paracoccus pantotrophus"],["NCBITaxon%3A189685","uncultured Paracoccus sp."]]},{"id":"NCBITaxon:270689","l":"Streptomyces aculeolatus","na":6,"nb":1,"a":[["polyketides/e-837.yaml","E-837"],["terpenoids/napyradiomycin-a80915c.yaml","napyradiomycin A80915C"],["terpenoids/napyradiomycin.yaml","napyradiomycin"],["unclassified/napyradiomycin-2.yaml","napyradiomycin 2"],["unclassified/napyradiomycin-3.yaml","napyradiomycin 3"],["unclassified/napyradiomycin-4.yaml","napyradiomycin 4"]],"b":[["NCBITaxon%3A270689","Streptomyces aculeolatus"]]},{"id":"NCBITaxon:280754","l":"Metacordyceps chlamydosporia","na":6,"nb":1,"a":[["polyketides/monocillin-vi.yaml","monocillin VI"],["polyketides/monocillin-vii.yaml","monocillin VII"],["polyketides/monorden-d.yaml","monorden D"],["polyketides/pochonin-m.yaml","pochonin M"],["polyketides/radicicol.yaml","radicicol"],["polyketides/zearalenone.yaml","zearalenone"]],"b":[["NCBITaxon%3A280754","Pochonia chlamydosporia"]]},{"id":"NCBITaxon:285570","l":"","na":6,"nb":1,"a":[["alkaloids/4-z-annimycin.yaml","4-Z-annimycin"],["amino_acids_and_peptides/ws9326f.yaml","WS9326F"],["amino_acids_and_peptides/ws9326g.yaml","WS9326G"],["carbohydrates/nucleocidin.yaml","nucleocidin"],["unclassified/2r-3s-4s-5-fluoro-2-3-4-trihydroxypentanoic-acid.yaml","(2R,3S,4S)-5-fluoro-2,3,4-trihydroxypentanoic acid"],["unclassified/ws9326a.yaml","WS9326A"]],"b":[["NCBITaxon%3A67282","Streptomyces calvus"]]},{"id":"NCBITaxon:29916","l":"Fusarium sp.","na":6,"nb":1,"a":[["alkaloids/lucilactaene.yaml","lucilactaene"],["alkaloids/ng-391.yaml","NG-391"],["fatty_acids/1233b.yaml","1233B"],["polyketides/1233a.yaml","1233A"],["polyketides/bikaverin.yaml","bikaverin"],["polyketides/fusarubin.yaml","fusarubin"]],"b":[["NCBITaxon%3A29916","Fusarium sp."]]},{"id":"NCBITaxon:327061","l":"Annulohypoxylon truncatum","na":6,"nb":1,"a":[["terpenoids/brasilane-a.yaml","brasilane A"],["terpenoids/brasilane-d.yaml","brasilane D"],["terpenoids/brasilane-e.yaml","brasilane E"],["terpenoids/brasilane-f.yaml","brasilane F"],["terpenoids/trichobrasilenol.yaml","trichobrasilenol"],["terpenoids/xylarenic-acid-b.yaml","xylarenic acid B"]],"b":[["NCBITaxon%3A327061","Annulohypoxylon truncatum"]]},{"id":"NCBITaxon:337","l":"Burkholderia glumae","na":1,"nb":6,"a":[["alkaloids/toxoflavin.yaml","toxoflavin"]],"b":[["NCBITaxon%3A337","Burkholderia glumae"],["NCBITaxon%3A1248414","Burkholderia glumae 3252-8"],["NCBITaxon%3A1417989","Burkholderia glumae 336gr-1"],["NCBITaxon%3A1176514","Burkholderia glumae AU6208"],["NCBITaxon%3A626418","Burkholderia glumae BGR1"],["NCBITaxon%3A1176492","Burkholderia glumae LMG 2196 = ATCC 33617"]]},{"id":"NCBITaxon:37632","l":"Amycolatopsis sp.","na":6,"nb":1,"a":[["amino_acids_and_peptides/ristocetin-a.yaml","Ristocetin A"],["polyketides/rifamorpholine-a.yaml","rifamorpholine A"],["polyketides/rifamorpholine-b.yaml","rifamorpholine B"],["polyketides/rifamorpholine-c.yaml","rifamorpholine C"],["polyketides/rifamorpholine-d.yaml","rifamorpholine D"],["polyketides/rifamorpholine-e.yaml","rifamorpholine E"]],"b":[["NCBITaxon%3A37632","Amycolatopsis sp."]]},{"id":"NCBITaxon:45234","l":"Cordyceps","na":1,"nb":6,"a":[["polyketides/oosporein.yaml","oosporein"]],"b":[["NCBITaxon%3A218633","Cordyceps cicadae"],["NCBITaxon%3A89141","Cordyceps farinosa"],["NCBITaxon%3A43265","Cordyceps javanica"],["NCBITaxon%3A73501","Cordyceps militaris"],["NCBITaxon%3A2004951","Cordyceps sp. RAO-2017"],["NCBITaxon%3A45847","Cordyceps tenuipes"]]},{"id":"NCBITaxon:457412","l":"Ruminococcus sp. 5_1_39BFAA","na":6,"nb":1,"a":[["alkaloids/pzn10.yaml","PZN10"],["alkaloids/pzn11.yaml","PZN11"],["alkaloids/pzn5.yaml","PZN5"],["alkaloids/pzn6.yaml","PZN6"],["alkaloids/pzn7.yaml","PZN7"],["alkaloids/pzn9.yaml","PZN9"]],"b":[["NCBITaxon%3A457412","Ruminococcus sp. 5_1_39BFAA"]]},{"id":"NCBITaxon:46472","l":"Aspergillus versicolor","na":6,"nb":1,"a":[["alkaloids/psychrophilin-f.yaml","psychrophilin F"],["alkaloids/psychrophilin-g.yaml","psychrophilin G"],["polyketides/sterigmatocystin.yaml","sterigmatocystin"],["unclassified/chevalone-e.yaml","chevalone E"],["unclassified/notoamide-a.yaml","notoamide A"],["unclassified/psychrophilin-h.yaml","psychrophilin H"]],"b":[["NCBITaxon%3A46472","Aspergillus versicolor"]]},{"id":"NCBITaxon:47917","l":"Serratia fonticola","na":1,"nb":6,"a":[["alkaloids/1-6-phenazinedimethanol.yaml","1,6-phenazinedimethanol"]],"b":[["NCBITaxon%3A47917","Serratia fonticola"],["NCBITaxon%3A1332071","Serratia fonticola AU-AP2C"],["NCBITaxon%3A1332070","Serratia fonticola AU-P3(3)"],["NCBITaxon%3A649197","Serratia fonticola DSM 22080"],["NCBITaxon%3A1378072","Serratia fonticola LMG 7882"],["NCBITaxon%3A1379259","Serratia fonticola UTAD54"]]},{"id":"NCBITaxon:482630","l":"Hassallia byssoidea","na":1,"nb":6,"a":[["carbohydrates/tubercidin.yaml","tubercidin"]],"b":[["NCBITaxon%3A482630","Hassallia byssoidea"],["NCBITaxon%3A482631","Hassallia byssoidea CCALA 823"],["NCBITaxon%3A1168767","Hassallia byssoidea CCALA 841"],["NCBITaxon%3A2489140","Hassallia byssoidea KZ-2-2-3"],["NCBITaxon%3A2489141","Hassallia byssoidea KZ-7-1-5"],["NCBITaxon%3A1304833","Hassallia byssoidea VB512170"]]},{"id":"NCBITaxon:5081","l":"","na":6,"nb":1,"a":[["alkaloids/citridone-a.yaml","citridone A"],["alkaloids/citridone-b-2.yaml","citridone B'"],["alkaloids/citridone-b.yaml","citridone B"],["alkaloids/cj-15-696.yaml","CJ-15,696"],["alkaloids/cj-16-173.yaml","CJ-16,173"],["polyketides/gregatin-a.yaml","gregatin A"]],"b":[["NCBITaxon%3A5081","Penicillium sp."]]},{"id":"NCBITaxon:5082","l":"Penicillium roqueforti","na":6,"nb":1,"a":[["alkaloids/mycophenolic-acid-2.yaml","mycophenolic acid"],["polyketides/mycophenolic-acid.yaml","mycophenolic acid"],["terpenoids/pr-toxin.yaml","PR-toxin"],["unclassified/andrastin-a.yaml","andrastin A"],["unclassified/roquefortine-c.yaml","roquefortine C"],["unclassified/roquefortine-d.yaml","roquefortine D"]],"b":[["NCBITaxon%3A5082","Penicillium roqueforti"]]},{"id":"NCBITaxon:5111","l":"Claviceps purpurea","na":6,"nb":1,"a":[["alkaloids/elymoclavine.yaml","elymoclavine"],["alkaloids/ergocryptine.yaml","α-ergocryptine"],["alkaloids/ergotamine.yaml","ergotamine"],["alkaloids/ergovaline.yaml","ergovaline"],["polyketides/clavorubin.yaml","Clavorubin"],["polyketides/endocrocin.yaml","endocrocin"]],"b":[["NCBITaxon%3A5111","Claviceps purpurea"]]},{"id":"NCBITaxon:52","l":"Chondromyces crocatus","na":6,"nb":1,"a":[["polyketides/chondrochloren-a.yaml","chondrochloren A"],["polyketides/cmc-thuggacin-a.yaml","Cmc-thuggacin A"],["polyketides/crocacin.yaml","crocacin"],["shikimates_and_phenylpropanoids/ajudazol-a.yaml","ajudazol A"],["unclassified/chondramide-a.yaml","chondramide A"],["unclassified/cmc-thuggacin-b.yaml","Cmc-thuggacin B"]],"b":[["NCBITaxon%3A52","Chondromyces crocatus"]]},{"id":"NCBITaxon:548826","l":"Fischerella sp. CENA161","na":6,"nb":1,"a":[["amino_acids_and_peptides/microcystin-fr.yaml","microcystin-FR"],["amino_acids_and_peptides/microcystin-la.yaml","microcystin-LA"],["amino_acids_and_peptides/microcystin-laba.yaml","microcystin-LAba"],["amino_acids_and_peptides/microcystin-ll.yaml","microcystin-LL"],["amino_acids_and_peptides/microcystin-lm.yaml","microcystin-LM"],["amino_acids_and_peptides/microcystin-lr.yaml","microcystin-LR"]],"b":[["NCBITaxon%3A548826","Fischerella sp. CENA161"]]},{"id":"NCBITaxon:5530","l":"Metarhizium anisopliae","na":6,"nb":1,"a":[["alkaloids/ng-391.yaml","NG-391"],["amino_acids_and_peptides/serinocyclin-a.yaml","serinocyclin A"],["amino_acids_and_peptides/serinocyclin-b.yaml","serinocyclin B"],["fatty_acids/baa.yaml","BAA"],["fatty_acids/bab.yaml","BAB"],["unclassified/destruxin-a.yaml","destruxin A"]],"b":[["NCBITaxon%3A5530","Metarhizium anisopliae"]]},{"id":"NCBITaxon:654447","l":"Streptomyces youssoufiensis","na":6,"nb":1,"a":[["polyketides/reedsmycin-a.yaml","reedsmycin A"],["polyketides/youssoufene-a1.yaml","youssoufene A1"],["unclassified/youssoufene-b1.yaml","youssoufene B1"],["unclassified/youssoufene-b2.yaml","youssoufene B2"],["unclassified/youssoufene-b3.yaml","youssoufene B3"],["unclassified/youssoufene-b4.yaml","youssoufene B4"]],"b":[["NCBITaxon%3A654447","Streptomyces youssoufiensis"]]},{"id":"NCBITaxon:1006598","l":"Serratia plymuthica RVH1","na":5,"nb":1,"a":[["amino_acids_and_peptides/prezeamine-i.yaml","prezeamine I"],["amino_acids_and_peptides/prezeamine.yaml","prezeamine"],["fatty_acids/zeamine-i.yaml","zeamine I"],["fatty_acids/zeamine-ii.yaml","zeamine II"],["fatty_acids/zeamine.yaml","zeamine"]],"b":[["NCBITaxon%3A1006598","Serratia plymuthica RVH1"]]},{"id":"NCBITaxon:1110502","l":"Tistrella mobilis KA081020-065","na":5,"nb":1,"a":[["unclassified/dehydrodidemnin-b-aplidine.yaml","dehydrodidemnin B (aplidine)"],["unclassified/didemnin-b.yaml","didemnin B"],["unclassified/didemnin-x.yaml","didemnin X"],["unclassified/didemnin-y.yaml","didemnin Y"],["unclassified/nordidemnin-b.yaml","nordidemnin B"]],"b":[["NCBITaxon%3A1110502","Tistrella mobilis KA081020-065"]]},{"id":"NCBITaxon:1437453","l":"Streptomyces leeuwenhoekii","na":5,"nb":1,"a":[["amino_acids_and_peptides/leepeptin.yaml","Leepeptin"],["polyketides/chaxamycin-a.yaml","chaxamycin A"],["polyketides/chaxamycin-b.yaml","chaxamycin B"],["polyketides/chaxamycin-c.yaml","chaxamycin C"],["polyketides/chaxamycin-d.yaml","chaxamycin D"]],"b":[["NCBITaxon%3A1437453","Streptomyces leeuwenhoekii"]]},{"id":"NCBITaxon:1485014","l":"Kitasatospora sp. HKI 714","na":5,"nb":1,"a":[["alkaloids/5-2-hydroxyacetyl-5-10-dihydrophenazine-1-carboxylic-acid.yaml","5-(2-hydroxyacetyl)-5,10-dihydrophenazine-1-carboxylic acid"],["alkaloids/5-acetyl-5-10-dihydrophenazine-1-carboxylic-acid.yaml","5-acetyl-5,10-dihydrophenazine-1-carboxylic acid"],["alkaloids/endophenazine-a1.yaml","endophenazine A1"],["alkaloids/endophenazine-f.yaml","endophenazine F"],["alkaloids/endophenazine-g.yaml","endophenazine G"]],"b":[["NCBITaxon%3A1485014","Kitasatospora sp. HKI 714"]]},{"id":"NCBITaxon:1550245","l":"Aetokthonos hydrillicola","na":1,"nb":5,"a":[["alkaloids/aetokthonotoxin.yaml","aetokthonotoxin"]],"b":[["NCBITaxon%3A1550245","Aetokthonos hydrillicola"],["NCBITaxon%3A299580","Aetokthonos hydrillicola AEL04-Oct-6-03"],["NCBITaxon%3A2710484","Aetokthonos hydrillicola CCALA 1050"],["NCBITaxon%3A2028341","Aetokthonos hydrillicola JST01"],["NCBITaxon%3A2712845","Aetokthonos hydrillicola Thurmond2011"]]},{"id":"NCBITaxon:1630014","l":"uncultured bacterium AR_456","na":5,"nb":1,"a":[["amino_acids_and_peptides/clarexpoxcin-a.yaml","Clarexpoxcin A"],["amino_acids_and_peptides/clarexpoxcin-b.yaml","Clarexpoxcin B"],["amino_acids_and_peptides/clarexpoxcin-c.yaml","Clarexpoxcin C"],["amino_acids_and_peptides/clarexpoxcin-d.yaml","Clarexpoxcin D"],["amino_acids_and_peptides/clarexpoxcin-e.yaml","Clarexpoxcin E"]],"b":[["NCBITaxon%3A1630014","uncultured bacterium AR_456"]]},{"id":"NCBITaxon:176275","l":"Beauveria bassiana","na":5,"nb":1,"a":[["alkaloids/desmethylbassianin.yaml","desmethylbassianin"],["alkaloids/tenellin.yaml","tenellin"],["polyketides/oosporein.yaml","oosporein"],["unclassified/bassianolide.yaml","bassianolide"],["unclassified/beauvericin.yaml","beauvericin"]],"b":[["NCBITaxon%3A176275","Beauveria bassiana"]]},{"id":"NCBITaxon:1873482","l":"Xenorhabdus eapokensis","na":5,"nb":1,"a":[["alkaloids/9-deoxy-tilivalline.yaml","9-deoxy tilivalline"],["alkaloids/dehydro-tilivalline.yaml","dehydro tilivalline"],["alkaloids/dihydroxy-dehydro-tilivalline.yaml","dihydroxy-dehydro tilivalline"],["alkaloids/dihydroxy-tilivalline.yaml","dihydroxy tilivalline"],["alkaloids/tilivalline.yaml","tilivalline"]],"b":[["NCBITaxon%3A1873482","Xenorhabdus eapokensis"]]},{"id":"NCBITaxon:1919","l":"Streptomyces microflavus","na":1,"nb":5,"a":[["polyketides/ll-f28249.yaml","LL-F28249α"]],"b":[["NCBITaxon%3A67269","Streptomyces alboviridis"],["NCBITaxon%3A164114","Streptomyces luridiscabiei"],["NCBITaxon%3A1919","Streptomyces microflavus"],["NCBITaxon%3A1303692","Streptomyces microflavus DSM 40593"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:1982761","l":"Streptomyces sp. CS113","na":5,"nb":1,"a":[["polyketides/antibiotic-a2121-1.yaml","antibiotic A2121-1"],["polyketides/antibiotic-hki-10311129.yaml","antibiotic HKI 10311129"],["polyketides/cervimycin-a.yaml","cervimycin A"],["polyketides/cervimycin-c.yaml","cervimycin C"],["polyketides/cervimycin-d.yaml","cervimycin D"]],"b":[["NCBITaxon%3A1982761","Streptomyces sp. CS113"]]},{"id":"NCBITaxon:220664","l":"Pseudomonas protegens Pf-5","na":5,"nb":1,"a":[["alkaloids/pyoluteorin.yaml","pyoluteorin"],["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"],["unclassified/orfamide-a.yaml","orfamide A"],["unclassified/orfamide-c.yaml","orfamide C"],["unclassified/pf-5-pyoverdine.yaml","Pf-5 pyoverdine"]],"b":[["NCBITaxon%3A220664","Pseudomonas protegens Pf-5"]]},{"id":"NCBITaxon:223374","l":"Cladorrhinum","na":1,"nb":5,"a":[["polyketides/patulin.yaml","patulin"]],"b":[["NCBITaxon%3A314027","Cladorrhinum coprophilum"],["NCBITaxon%3A223375","Cladorrhinum foecundissimum"],["NCBITaxon%3A2587396","Cladorrhinum hyalocarpum"],["NCBITaxon%3A711350","Cladorrhinum microsclerotigenum"],["NCBITaxon%3A585594","Cladorrhinum samala"]]},{"id":"NCBITaxon:2721247","l":"Symphyonema bifilamentata 97.28","na":5,"nb":1,"a":[["alkaloids/tjipanazole-d.yaml","tjipanazole D"],["alkaloids/tjipanazole-i.yaml","tjipanazole I"],["alkaloids/tjipanazole-k.yaml","tjipanazole K"],["alkaloids/tjipanazole-l.yaml","tjipanazole L"],["alkaloids/tjipanazole-m.yaml","tjipanazole M"]],"b":[["NCBITaxon%3A2721247","Symphyonema bifilamentata 97.28"]]},{"id":"NCBITaxon:2795974","l":"Stieleria maiorica","na":5,"nb":1,"a":[["alkaloids/stieleriacine-a1.yaml","stieleriacine A1"],["alkaloids/stieleriacine-a2.yaml","stieleriacine A2"],["fatty_acids/stieleriacine-c.yaml","stieleriacine C"],["unclassified/stieleriacine-b1.yaml","stieleriacine B1"],["unclassified/stieleriacine-b2.yaml","stieleriacine B2"]],"b":[["NCBITaxon%3A2795974","Stieleria maiorica"]]},{"id":"NCBITaxon:289240","l":"Neopestalotiopsis clavispora","na":5,"nb":1,"a":[["polyketides/1-2-dehydropenicillide.yaml","1,2-dehydropenicillide"],["polyketides/1-2-epoxy-3-4-didehydropenicillide.yaml","1,2-epoxy-3,4-didehydropenicillide"],["polyketides/3-methoxy-1-2-dehydropenicillide.yaml","3-methoxy-1,2-dehydropenicillide"],["polyketides/pestalotiollide-b.yaml","pestalotiollide B"],["polyketides/pestalotiollide-c.yaml","pestalotiollide C"]],"b":[["NCBITaxon%3A289240","Neopestalotiopsis clavispora"]]},{"id":"NCBITaxon:312019","l":"uncultured Candidatus Entotheonella sp.","na":5,"nb":1,"a":[["amino_acids_and_peptides/kasumigamide.yaml","kasumigamide"],["polyketides/calyculin-a.yaml","calyculin A"],["polyketides/calyculinamide-a.yaml","calyculinamide A"],["polyketides/dephosphonocalyculin-a.yaml","dephosphonocalyculin A"],["polyketides/phosphocalyculin-a.yaml","phosphocalyculin A"]],"b":[["NCBITaxon%3A312019","uncultured Candidatus Entotheonella sp."]]},{"id":"NCBITaxon:318","l":"Pseudomonas savastanoi pv. glycinea","na":1,"nb":5,"a":[["polyketides/coronatine.yaml","coronatine"]],"b":[["NCBITaxon%3A29438","Pseudomonas savastanoi"],["NCBITaxon%3A318","Pseudomonas savastanoi pv. glycinea"],["NCBITaxon%3A875329","Pseudomonas savastanoi pv. glycinea str. B076"],["NCBITaxon%3A875330","Pseudomonas savastanoi pv. glycinea str. race 4"],["NCBITaxon%3A317","Pseudomonas syringae"]]},{"id":"NCBITaxon:380704","l":"Aspergillus niger ATCC 1015","na":5,"nb":1,"a":[["polyketides/azanigerone-a.yaml","azanigerone A"],["polyketides/campyrone-b.yaml","campyrone B"],["polyketides/pyranonigrin-e.yaml","pyranonigrin E"],["polyketides/pyrophen.yaml","pyrophen"],["terpenoids/yanuthone-d.yaml","yanuthone D"]],"b":[["NCBITaxon%3A380704","Aspergillus niger ATCC 1015"]]},{"id":"NCBITaxon:38313","l":"Shewanella algae","na":1,"nb":5,"a":[["amino_acids_and_peptides/avaroferrin.yaml","avaroferrin"]],"b":[["NCBITaxon%3A38313","Shewanella algae"],["NCBITaxon%3A1331670","Shewanella algae ACDC"],["NCBITaxon%3A1236541","Shewanella algae JCM 14758"],["NCBITaxon%3A1236544","Shewanella algae JCM 21037 = NBRC 103173"],["NCBITaxon%3A24","Shewanella putrefaciens"]]},{"id":"NCBITaxon:40382","l":"Aspergillus ustus","na":5,"nb":1,"a":[["polyketides/sterigmatocystin.yaml","sterigmatocystin"],["polyketides/ustethylin-a.yaml","ustethylin A"],["unclassified/oxepinamide-d.yaml","oxepinamide D"],["unclassified/oxepinamide-f.yaml","oxepinamide F"],["unclassified/viridicatumtoxin.yaml","viridicatumtoxin"]],"b":[["NCBITaxon%3A40382","Aspergillus ustus"]]},{"id":"NCBITaxon:42747","l":"Fusarium heterosporum","na":5,"nb":1,"a":[["alkaloids/3r-5s-5-4-hydroxybenzyl-3-methyl-3-2e-4e-6e-8e-10e-4-8-10-trimethyldodeca-2-4-6-.yaml","(3R,5S)-5-(4-hydroxybenzyl)-3-methyl-3-((2E,4E,6E,8E,10E)-4,8,10-trimethyldodeca-2,4,6,8,10-pentaenoyl)pyrrolidine-2,4-dione"],["alkaloids/fusaridione-a.yaml","fusaridione A"],["terpenoids/mangicol-a.yaml","mangicol A"],["terpenoids/t-2-toxin.yaml","T-2 toxin"],["unclassified/equisetin.yaml","equisetin"]],"b":[["NCBITaxon%3A42747","Fusarium heterosporum"]]},{"id":"NCBITaxon:439478","l":"Scytonema mirabile","na":1,"nb":5,"a":[["polyketides/scytophycin.yaml","scytophycin"]],"b":[["NCBITaxon%3A2094164","Scytonema cf. mirabile ER0515.01"],["NCBITaxon%3A439478","Scytonema mirabile"],["NCBITaxon%3A439479","Scytonema mirabile 00558"],["NCBITaxon%3A3151466","Scytonema mirabile BACA0450"],["NCBITaxon%3A1521526","Scytonema mirabile SAG 83.79"]]},{"id":"NCBITaxon:467194","l":"Streptomyces sp. CNQ-418","na":5,"nb":1,"a":[["alkaloids/marinopyrrole-a.yaml","(−)-marinopyrrole A"],["alkaloids/marinopyrrole-b.yaml","(−)-marinopyrrole B"],["alkaloids/marinopyrrole-c.yaml","marinopyrrole C"],["alkaloids/marinopyrrole-d.yaml","marinopyrrole D"],["alkaloids/marinopyrrole-e.yaml","marinopyrrole E"]],"b":[["NCBITaxon%3A467194","Streptomyces sp. CNQ-418"]]},{"id":"NCBITaxon:488447","l":"Burkholderia contaminans","na":1,"nb":5,"a":[["amino_acids_and_peptides/occidiofungin-a.yaml","occidiofungin A"]],"b":[["NCBITaxon%3A488447","Burkholderia contaminans"],["NCBITaxon%3A1423418","Burkholderia contaminans FFH2050"],["NCBITaxon%3A1423419","Burkholderia contaminans FFH2055"],["NCBITaxon%3A1334628","Burkholderia contaminans LMG 23361"],["NCBITaxon%3A36773","Burkholderia sp."]]},{"id":"NCBITaxon:497689","l":"Streptomyces sp. SNA15896","na":5,"nb":1,"a":[["unclassified/sw-163c.yaml","SW-163C"],["unclassified/sw-163e.yaml","SW-163E"],["unclassified/sw-163f.yaml","SW-163F"],["unclassified/sw-163g.yaml","SW-163G"],["unclassified/uk-63598.yaml","UK 63598"]],"b":[["NCBITaxon%3A497689","Streptomyces sp. SNA15896"]]},{"id":"NCBITaxon:53437","l":"Nocardiopsis alba","na":1,"nb":5,"a":[["amino_acids_and_peptides/lp2006.yaml","LP2006"]],"b":[["NCBITaxon%3A53437","Nocardiopsis alba"],["NCBITaxon%3A1205910","Nocardiopsis alba ATCC BAA-2165"],["NCBITaxon%3A1245473","Nocardiopsis alba DSM 43377"],["NCBITaxon%3A2015","Nocardiopsis prasina"],["NCBITaxon%3A1245475","Nocardiopsis prasina DSM 43845"]]},{"id":"NCBITaxon:563922","l":"Streptomyces sp. ICBB 8177","na":5,"nb":1,"a":[["alkaloids/limazepine-a.yaml","limazepine A"],["alkaloids/limazepine-c.yaml","limazepine C"],["alkaloids/limazepine-d.yaml","limazepine D"],["alkaloids/limazepine-e.yaml","limazepine E"],["alkaloids/limazepine-f.yaml","limazepine F"]],"b":[["NCBITaxon%3A563922","Streptomyces sp. ICBB 8177"]]},{"id":"NCBITaxon:60171","l":"Penicillium verrucosum","na":5,"nb":1,"a":[["polyketides/verrucosidin.yaml","verrucosidin"],["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"],["unclassified/penitrem-a.yaml","penitrem A"],["unclassified/penitrem-b.yaml","penitrem B"],["unclassified/roquefortine-c.yaml","roquefortine C"]],"b":[["NCBITaxon%3A60171","Penicillium verrucosum"]]},{"id":"NCBITaxon:66429","l":"Streptomyces roseoverticillatus","na":1,"nb":5,"a":[["alkaloids/jawsamycin.yaml","jawsamycin"]],"b":[["NCBITaxon%3A44288","Streptomyces fervens subsp. phenomyceticus"],["NCBITaxon%3A66424","Streptomyces hiroshimensis"],["NCBITaxon%3A66429","Streptomyces roseoverticillatus"],["NCBITaxon%3A173832","Streptomyces roseoverticillatus subsp. melrosporus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:66858","l":"Streptomyces globisporus subsp. globisporus","na":1,"nb":5,"a":[["amino_acids_and_peptides/radamycin.yaml","radamycin"]],"b":[["NCBITaxon%3A66867","Streptomyces albovinaceus"],["NCBITaxon%3A1908","Streptomyces globisporus"],["NCBITaxon%3A66858","Streptomyces globisporus subsp. globisporus"],["NCBITaxon%3A66893","Streptomyces griseinus"],["NCBITaxon%3A68237","Streptomyces mediolani"]]},{"id":"NCBITaxon:67298","l":"Streptomyces flavidovirens","na":1,"nb":5,"a":[["amino_acids_and_peptides/mureidomycin-a.yaml","mureidomycin A"]],"b":[["NCBITaxon%3A67298","Streptomyces flavidovirens"],["NCBITaxon%3A1123319","Streptomyces flavidovirens DSM 40150"],["NCBITaxon%3A1522104","Streptomyces flavidovirens subsp. fuscus"],["NCBITaxon%3A52258","Streptomyces flavovirens"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:68175","l":"Streptomyces antimycoticus","na":1,"nb":5,"a":[["terpenoids/napyradiomycin.yaml","napyradiomycin"]],"b":[["NCBITaxon%3A68175","Streptomyces antimycoticus"],["NCBITaxon%3A1226758","Streptomyces antimycoticus subsp. mordarskii"],["NCBITaxon%3A53451","Streptomyces rutgersensis"],["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A68280","Streptomyces violaceusniger"]]},{"id":"NCBITaxon:684832","l":"Streptomyces platensis subsp. rosaceus","na":5,"nb":1,"a":[["alkaloids/13-epi-dorrigocin-a.yaml","13-epi-dorrigocin A"],["alkaloids/dorrigocin-a.yaml","dorrigocin A"],["alkaloids/dorrigocin-b.yaml","dorrigocin B"],["alkaloids/iso-migrastatin.yaml","iso-migrastatin"],["alkaloids/migrastatin.yaml","migrastatin"]],"b":[["NCBITaxon%3A684832","Streptomyces platensis subsp. rosaceus"]]},{"id":"NCBITaxon:904690","l":"Penicillium shearii","na":5,"nb":1,"a":[["unclassified/colletotrichin.yaml","colletotrichin"],["unclassified/metarhizin-a.yaml","metarhizin A"],["unclassified/paxilline.yaml","paxilline"],["unclassified/sesquicillin-a.yaml","sesquicillin A"],["unclassified/subglutinol-a.yaml","subglutinol A"]],"b":[["NCBITaxon%3A904690","Penicillium shearii"]]},{"id":"NCBITaxon:97376","l":"Biscogniauxia","na":1,"nb":5,"a":[["terpenoids/biscognienyne-b.yaml","biscognienyne B"]],"b":[["NCBITaxon%3A110534","Biscogniauxia marginata"],["NCBITaxon%3A97377","Biscogniauxia mediterranea"],["NCBITaxon%3A97378","Biscogniauxia nummularia"],["NCBITaxon%3A110533","Biscogniauxia simplicior"],["NCBITaxon%3A1896107","Biscogniauxia sp."]]},{"id":"NCBITaxon:986","l":"Flavobacterium johnsoniae","na":1,"nb":5,"a":[["polyketides/flexirubin.yaml","flexirubin"]],"b":[["NCBITaxon%3A2704140","Flavobacterium bizetiae"],["NCBITaxon%3A986","Flavobacterium johnsoniae"],["NCBITaxon%3A994","Flavobacterium johnsoniae subsp. aurantiacum"],["NCBITaxon%3A376686","Flavobacterium johnsoniae UW101"],["NCBITaxon%3A1337839","Flavobacterium sp. DSM 425"]]},{"id":"NCBITaxon:991132","l":"Streptomyces sp. DSM 5940","na":5,"nb":1,"a":[["amino_acids_and_peptides/mureidomycin-a.yaml","mureidomycin A"],["amino_acids_and_peptides/napsamycin-a.yaml","napsamycin A"],["amino_acids_and_peptides/napsamycin-b.yaml","napsamycin B"],["amino_acids_and_peptides/napsamycin-c.yaml","napsamycin C"],["amino_acids_and_peptides/napsamycin-d.yaml","napsamycin D"]],"b":[["NCBITaxon%3A991132","Streptomyces sp. DSM 5940"]]},{"id":"NCBITaxon:101028","l":"Fusarium pseudograminearum","na":4,"nb":1,"a":[["alkaloids/8-oxo-fusatin.yaml","8-oxo-fusatin"],["alkaloids/8-oxo-isopentenyladenine.yaml","8-oxo-isopentenyladenine"],["alkaloids/fusatin.yaml","fusatin"],["alkaloids/fusatinic-acid.yaml","fusatinic acid"]],"b":[["NCBITaxon%3A101028","Fusarium pseudograminearum"]]},{"id":"NCBITaxon:1033177","l":"Aspergillus luchuensis IFO 4308","na":4,"nb":1,"a":[["polyketides/akml-c.yaml","AKML C"],["polyketides/akml-d.yaml","AKML D"],["unclassified/akml-a.yaml","AKML A"],["unclassified/akml-b.yaml","AKML B"]],"b":[["NCBITaxon%3A1033177","Aspergillus luchuensis IFO 4308"]]},{"id":"NCBITaxon:1037453","l":"uncultured bacterium BAC AB649/1850","na":4,"nb":1,"a":[["polyketides/dehydrorabelomycin.yaml","dehydrorabelomycin"],["polyketides/fluostatin-f.yaml","fluostatin F"],["polyketides/fluostatin-g.yaml","fluostatin G"],["polyketides/rabelomycin.yaml","rabelomycin"]],"b":[["NCBITaxon%3A1037453","uncultured bacterium BAC AB649/1850"]]},{"id":"NCBITaxon:111805","l":"Actinomadura pelletieri","na":1,"nb":4,"a":[["alkaloids/undecylprodigiosin-2.yaml","undecylprodigiosin"]],"b":[["NCBITaxon%3A163603","Actinomadura latina"],["NCBITaxon%3A111805","Actinomadura pelletieri"],["NCBITaxon%3A1120940","Actinomadura pelletieri DSM 43383"],["NCBITaxon%3A37329","Nocardia farcinica"]]},{"id":"NCBITaxon:111807","l":"Actinomadura yumaensis","na":1,"nb":4,"a":[["polyketides/maduramicin.yaml","maduramicin"]],"b":[["NCBITaxon%3A111807","Actinomadura yumaensis"],["NCBITaxon%3A1408421","Actinomadura yumaensis ATCC 43060"],["NCBITaxon%3A1749037","Microbacterium zeae"],["NCBITaxon%3A2479765","Ochrobactrum teleogrylli"]]},{"id":"NCBITaxon:1120227","l":"Streptomyces coelicoflavus ZG0656","na":4,"nb":1,"a":[["carbohydrates/acarviostatin-i03.yaml","acarviostatin I03"],["carbohydrates/acarviostatin-ii03.yaml","acarviostatin II03"],["carbohydrates/acarviostatin-iii03.yaml","acarviostatin III03"],["carbohydrates/acarviostatin-iv03.yaml","acarviostatin IV03"]],"b":[["NCBITaxon%3A1120227","Streptomyces coelicoflavus ZG0656"]]},{"id":"NCBITaxon:1180","l":"Nostoc sp.","na":4,"nb":1,"a":[["amino_acids_and_peptides/heinamide-a1.yaml","heinamide A1"],["amino_acids_and_peptides/heinamide-a2.yaml","heinamide A2"],["amino_acids_and_peptides/heinamide-a3.yaml","heinamide A3"],["polyketides/carbamidocyclophane-h.yaml","carbamidocyclophane H"]],"b":[["NCBITaxon%3A1180","Nostoc sp."]]},{"id":"NCBITaxon:1191","l":"Fischerella sp.","na":4,"nb":1,"a":[["unclassified/hapalosin-c.yaml","hapalosin C"],["unclassified/hapalosin-e.yaml","hapalosin E"],["unclassified/hapalosin-f.yaml","hapalosin F"],["unclassified/hapalosin-g.yaml","hapalosin G"]],"b":[["NCBITaxon%3A1191","Fischerella sp."]]},{"id":"NCBITaxon:1215","l":"Prochloron sp.","na":4,"nb":1,"a":[["amino_acids_and_peptides/divamide-a.yaml","divamide A"],["amino_acids_and_peptides/patellamide-a.yaml","patellamide A"],["amino_acids_and_peptides/patellamide-b.yaml","patellamide B"],["amino_acids_and_peptides/patellin-6.yaml","patellin 6"]],"b":[["NCBITaxon%3A1215","Prochloron sp."]]},{"id":"NCBITaxon:1231934","l":"Nocardiopsis sp. CMB-M0232","na":4,"nb":1,"a":[["unclassified/nocardiopsin-a.yaml","nocardiopsin A"],["unclassified/nocardiopsin-b.yaml","nocardiopsin B"],["unclassified/nocardiopsin-c.yaml","nocardiopsin C"],["unclassified/nocardiopsin-d.yaml","nocardiopsin D"]],"b":[["NCBITaxon%3A1231934","Nocardiopsis sp. CMB-M0232"]]},{"id":"NCBITaxon:1283330","l":"Azotobacter vinelandii CA","na":4,"nb":1,"a":[["alkaloids/aminochelin.yaml","aminochelin"],["alkaloids/azotochelin.yaml","azotochelin"],["alkaloids/protochelin.yaml","protochelin"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]],"b":[["NCBITaxon%3A1283330","Azotobacter vinelandii CA"]]},{"id":"NCBITaxon:132474","l":"Streptomyces rimosus subsp. rimosus","na":1,"nb":4,"a":[["polyketides/rimocidin.yaml","rimocidin"]],"b":[["NCBITaxon%3A1890","Streptomyces antibioticus"],["NCBITaxon%3A1927","Streptomyces rimosus"],["NCBITaxon%3A132474","Streptomyces rimosus subsp. rimosus"],["NCBITaxon%3A1265868","Streptomyces rimosus subsp. rimosus ATCC 10970"]]},{"id":"NCBITaxon:133448","l":"Citrobacter youngae","na":1,"nb":4,"a":[["amino_acids_and_peptides/citrocin.yaml","citrocin"]],"b":[["NCBITaxon%3A67829","Citrobacter murliniae"],["NCBITaxon%3A876041","Citrobacter sp. DSM 30041"],["NCBITaxon%3A133448","Citrobacter youngae"],["NCBITaxon%3A500640","Citrobacter youngae ATCC 29220"]]},{"id":"NCBITaxon:1380707","l":"Sphaerospermopsis sp. LEGE 00249","na":4,"nb":1,"a":[["fatty_acids/chlorosphaerolactylate-a.yaml","chlorosphaerolactylate A"],["fatty_acids/chlorosphaerolactylate-b.yaml","chlorosphaerolactylate B"],["fatty_acids/chlorosphaerolactylate-c.yaml","chlorosphaerolactylate C"],["fatty_acids/chlorosphaerolactylate-d.yaml","chlorosphaerolactylate D"]],"b":[["NCBITaxon%3A1380707","Sphaerospermopsis sp. LEGE 00249"]]},{"id":"NCBITaxon:1382618","l":"Cylindrospermum alatosporum CCALA 988","na":4,"nb":1,"a":[["amino_acids_and_peptides/puwainaphycin-a.yaml","puwainaphycin A"],["amino_acids_and_peptides/puwainaphycin-b.yaml","puwainaphycin B"],["amino_acids_and_peptides/puwainaphycin-c.yaml","puwainaphycin C"],["amino_acids_and_peptides/puwainaphycin-d.yaml","puwainaphycin D"]],"b":[["NCBITaxon%3A1382618","Cylindrospermum alatosporum CCALA 988"]]},{"id":"NCBITaxon:141454","l":"Streptomyces wadayamensis","na":4,"nb":1,"a":[["amino_acids_and_peptides/aerobactin.yaml","aerobactin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"],["unclassified/antimycin-a.yaml","antimycin A"]],"b":[["NCBITaxon%3A141454","Streptomyces wadayamensis"]]},{"id":"NCBITaxon:1437823","l":"Xenorhabdus nematophila AN6/1","na":4,"nb":1,"a":[["alkaloids/odilorhabdin-noso-95a.yaml","odilorhabdin NOSO-95A"],["alkaloids/odilorhabdin-noso-95b.yaml","odilorhabdin NOSO-95B"],["alkaloids/odilorhabdin-noso-95c.yaml","odilorhabdin NOSO-95C"],["unclassified/xenematide.yaml","xenematide"]],"b":[["NCBITaxon%3A1437823","Xenorhabdus nematophila AN6/1"]]},{"id":"NCBITaxon:1510026","l":"Streptomyces sp. F001","na":4,"nb":1,"a":[["alkaloids/diazaquinomycin-a.yaml","diazaquinomycin A"],["alkaloids/diazaquinomycin-e.yaml","diazaquinomycin E"],["alkaloids/diazaquinomycin-f.yaml","diazaquinomycin F"],["alkaloids/diazaquinomycin-g.yaml","diazaquinomycin G"]],"b":[["NCBITaxon%3A1510026","Streptomyces sp. F001"]]},{"id":"NCBITaxon:1573173","l":"Colletotrichum incanum","na":4,"nb":1,"a":[["fatty_acids/ciml-a.yaml","CIML A"],["fatty_acids/ciml-b.yaml","CIML B"],["polyketides/ciml-c.yaml","CIML C"],["polyketides/ciml-d.yaml","CIML D"]],"b":[["NCBITaxon%3A1573173","Colletotrichum incanum"]]},{"id":"NCBITaxon:164546","l":"Cupriavidus taiwanensis","na":1,"nb":4,"a":[["amino_acids_and_peptides/taiwachelin.yaml","taiwachelin"]],"b":[["NCBITaxon%3A164546","Cupriavidus taiwanensis"],["NCBITaxon%3A977880","Cupriavidus taiwanensis LMG 19424"],["NCBITaxon%3A1040978","Cupriavidus taiwanensis STM 6018"],["NCBITaxon%3A129578","Oceanimonas baumannii"]]},{"id":"NCBITaxon:1678308","l":"Planktothrix paucivesiculata","na":1,"nb":4,"a":[["polyketides/luminaolide-b.yaml","luminaolide B"]],"b":[["NCBITaxon%3A1678308","Planktothrix paucivesiculata"],["NCBITaxon%3A671067","Planktothrix paucivesiculata PCC 8926"],["NCBITaxon%3A671069","Planktothrix paucivesiculata PCC 8954"],["NCBITaxon%3A671071","Planktothrix paucivesiculata PCC 9631"]]},{"id":"NCBITaxon:169388","l":"Fusarium solani","na":4,"nb":1,"a":[["alkaloids/fusaric-acid.yaml","fusaric acid"],["polyketides/doxorubicin.yaml","doxorubicin"],["polyketides/fusarubin.yaml","fusarubin"],["polyketides/zearalenone.yaml","zearalenone"]],"b":[["NCBITaxon%3A169388","Fusarium solani"]]},{"id":"NCBITaxon:173365","l":"Methylobacter tundripaludum","na":1,"nb":4,"a":[["unclassified/tundrenone.yaml","tundrenone"]],"b":[["NCBITaxon%3A173365","Methylobacter tundripaludum"],["NCBITaxon%3A1408450","Methylobacter tundripaludum 21/22"],["NCBITaxon%3A1408451","Methylobacter tundripaludum 31/32"],["NCBITaxon%3A697282","Methylobacter tundripaludum SV96"]]},{"id":"NCBITaxon:1820605","l":"Actinoallomurus sp. ID145698","na":4,"nb":1,"a":[["polyketides/allocyclinone-a.yaml","allocyclinone A"],["polyketides/allocyclinone-b.yaml","allocyclinone B"],["polyketides/allocyclinone-c.yaml","allocyclinone C"],["polyketides/allocyclinone-d.yaml","allocyclinone D"]],"b":[["NCBITaxon%3A1820605","Actinoallomurus sp. ID145698"]]},{"id":"NCBITaxon:1846204","l":"Streptomyces sp. A1(2016)","na":4,"nb":1,"a":[["polyketides/aldgamycin-e.yaml","aldgamycin E"],["polyketides/aldgamycin-j.yaml","aldgamycin J"],["polyketides/aldgamycin-k.yaml","aldgamycin K"],["polyketides/aldgamycin-p.yaml","aldgamycin P"]],"b":[["NCBITaxon%3A1846204","Streptomyces sp. A1(2016)"]]},{"id":"NCBITaxon:1887","l":"Streptomyces albogriseolus","na":1,"nb":4,"a":[["alkaloids/thienodolin.yaml","thienodolin"]],"b":[["NCBITaxon%3A1887","Streptomyces albogriseolus"],["NCBITaxon%3A1093098","Streptomyces albogriseolus 1-36"],["NCBITaxon%3A1608467","Streptomyces albogriseolus subsp. cellulolyticus"],["NCBITaxon%3A3075520","Streptomyces lancefieldiae"]]},{"id":"NCBITaxon:188770","l":"Streptomyces koyangensis","na":4,"nb":1,"a":[["amino_acids_and_peptides/vancomycin.yaml","vancomycin"],["polyketides/abyssomicin-2.yaml","Abyssomicin 2"],["polyketides/abyssomicin-4.yaml","Abyssomicin 4"],["polyketides/neoabyssomicin-b.yaml","Neoabyssomicin B"]],"b":[["NCBITaxon%3A188770","Streptomyces koyangensis"]]},{"id":"NCBITaxon:1926885","l":"Actinomadura rubteroloni","na":4,"nb":1,"a":[["polyketides/actinospirol-a.yaml","actinospirol A"],["polyketides/actinospirol-b.yaml","actinospirol B"],["polyketides/maduralactomycin-a.yaml","maduralactomycin A"],["polyketides/maduralactomycin-b.yaml","maduralactomycin B"]],"b":[["NCBITaxon%3A1926885","Actinomadura rubteroloni"]]},{"id":"NCBITaxon:1962977","l":"Catenulispora sp.","na":4,"nb":1,"a":[["polyketides/catenulisporolide-a.yaml","catenulisporolide A"],["polyketides/catenulisporolide-b.yaml","catenulisporolide B"],["polyketides/catenulisporolide-c.yaml","catenulisporolide C"],["polyketides/catenulisporolide-d.yaml","catenulisporolide D"]],"b":[["NCBITaxon%3A1962977","Catenulispora sp."]]},{"id":"NCBITaxon:1965334","l":"Cystobacter sp.","na":4,"nb":1,"a":[["unclassified/vioprolide-a.yaml","vioprolide A"],["unclassified/vioprolide-b.yaml","vioprolide B"],["unclassified/vioprolide-c.yaml","vioprolide C"],["unclassified/vioprolide-d.yaml","vioprolide D"]],"b":[["NCBITaxon%3A1965334","Cystobacter sp."]]},{"id":"NCBITaxon:1967","l":"Streptomyces kanamyceticus","na":4,"nb":1,"a":[["amino_acids_and_peptides/gausemycin-a.yaml","gausemycin A"],["amino_acids_and_peptides/gausemycin-b.yaml","gausemycin B"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/kanamycin-a.yaml","kanamycin A"]],"b":[["NCBITaxon%3A1967","Streptomyces kanamyceticus"]]},{"id":"NCBITaxon:198593","l":"Umezakia natans","na":1,"nb":4,"a":[["alkaloids/7-epi-cylindrospermopsin.yaml","7-epi-cylindrospermopsin"]],"b":[["NCBITaxon%3A198593","Umezakia natans"],["NCBITaxon%3A2741711","Umezakia natans HU2"],["NCBITaxon%3A372788","Umezakia natans TAC101"],["NCBITaxon%3A1048936","Umezakia natans TAC611"]]},{"id":"NCBITaxon:1993","l":"Actinomadura madurae","na":1,"nb":4,"a":[["polyketides/maduropeptin.yaml","maduropeptin"]],"b":[["NCBITaxon%3A1993","Actinomadura madurae"],["NCBITaxon%3A1394178","Actinomadura madurae LIID-AJ290"],["NCBITaxon%3A1220569","Actinomadura madurae NBRC 14623"],["NCBITaxon%3A1465509","Lactobacillus sp. JCM 7736"]]},{"id":"NCBITaxon:2017","l":"Streptoalloteichus hindustanus","na":4,"nb":1,"a":[["amino_acids_and_peptides/tallysomycin-a.yaml","tallysomycin A"],["amino_acids_and_peptides/tallysomycin-b.yaml","tallysomycin B"],["carbohydrates/apramycin.yaml","apramycin"],["carbohydrates/tobramycin.yaml","tobramycin"]],"b":[["NCBITaxon%3A2017","Streptoalloteichus hindustanus"]]},{"id":"NCBITaxon:2074","l":"Pseudonocardia autotrophica","na":1,"nb":4,"a":[["polyketides/nystatin-like-pseudonocardia-polyene-a1.yaml","nystatin-like Pseudonocardia polyene A1"]],"b":[["NCBITaxon%3A255205","Pseudoclavibacter helvolus"],["NCBITaxon%3A2074","Pseudonocardia autotrophica"],["NCBITaxon%3A29401","Pseudonocardia halophobica"],["NCBITaxon%3A471802","Pseudonocardia halophobica NRRL B-16514"]]},{"id":"NCBITaxon:221586","l":"Streptomyces amphibiosporus","na":4,"nb":1,"a":[["alkaloids/17-hydroxy-8-desmethoxy-isomigrastatin.yaml","17-hydroxy-8-desmethoxy-isomigrastatin"],["alkaloids/8-9-dihydrolactimidomycin.yaml","8,9-dihydrolactimidomycin"],["alkaloids/8-hydroxy-8-9-dihydrolactidomycin.yaml","8-hydroxy-8,9-dihydrolactidomycin"],["alkaloids/lactimidomycin.yaml","lactimidomycin"]],"b":[["NCBITaxon%3A221586","Streptomyces amphibiosporus"]]},{"id":"NCBITaxon:221822","l":"Phaeobacter inhibens","na":1,"nb":4,"a":[["shikimates_and_phenylpropanoids/tropodithietic-acid.yaml","tropodithietic acid"]],"b":[["NCBITaxon%3A221822","Phaeobacter inhibens"],["NCBITaxon%3A383629","Phaeobacter inhibens 2.10"],["NCBITaxon%3A999548","Phaeobacter inhibens DSM 16374"],["NCBITaxon%3A391619","Phaeobacter inhibens DSM 17395"]]},{"id":"NCBITaxon:224537","l":"Streptomyces murayamaensis","na":4,"nb":1,"a":[["alkaloids/4-hydroxy-3-nitrosobenzamide.yaml","4-hydroxy-3-nitrosobenzamide"],["polyketides/dehydrorabelomycin.yaml","dehydrorabelomycin"],["polyketides/kinamycin.yaml","kinamycin"],["polyketides/murayaquinone.yaml","murayaquinone"]],"b":[["NCBITaxon%3A224537","Streptomyces murayamaensis"]]},{"id":"NCBITaxon:2600296","l":"Halomonas sp. MG34","na":4,"nb":1,"a":[["amino_acids_and_peptides/potashchelin-a.yaml","potashchelin A"],["amino_acids_and_peptides/potashchelin-b.yaml","potashchelin B"],["amino_acids_and_peptides/potashchelin-c.yaml","potashchelin C"],["amino_acids_and_peptides/potashchelin-d.yaml","potashchelin D"]],"b":[["NCBITaxon%3A2600296","Halomonas sp. MG34"]]},{"id":"NCBITaxon:267870","l":"Microcystis aeruginosa PCC 7005","na":4,"nb":1,"a":[["amino_acids_and_peptides/piricyclamide-7005e1.yaml","piricyclamide 7005E1"],["amino_acids_and_peptides/piricyclamide-7005e2.yaml","piricyclamide 7005E2"],["amino_acids_and_peptides/piricyclamide-7005e3.yaml","piricyclamide 7005E3"],["amino_acids_and_peptides/piricyclamide-7005e4.yaml","piricyclamide 7005E4"]],"b":[["NCBITaxon%3A267870","Microcystis aeruginosa PCC 7005"]]},{"id":"NCBITaxon:2713619","l":"Burkholderia sp. B8(2020)","na":4,"nb":1,"a":[["polyketides/necroxime-a.yaml","necroxime A"],["polyketides/necroxime-c.yaml","necroxime C"],["polyketides/necroxime-d.yaml","necroxime D"],["unclassified/necroxime-b.yaml","necroxime B"]],"b":[["NCBITaxon%3A2713619","Burkholderia sp. B8(2020)"]]},{"id":"NCBITaxon:2743","l":"Marinobacter nauticus","na":1,"nb":4,"a":[["alkaloids/petrobactin.yaml","petrobactin"]],"b":[["NCBITaxon%3A2743","Marinobacter nauticus"],["NCBITaxon%3A1163748","Marinobacter nauticus ATCC 49840"],["NCBITaxon%3A1238884","Marinobacter nauticus ES-69"],["NCBITaxon%3A351348","Marinobacter nauticus VT8"]]},{"id":"NCBITaxon:2750812","l":"Actinomadura graeca","na":4,"nb":1,"a":[["amino_acids_and_peptides/zelkovamycin-b.yaml","zelkovamycin B"],["amino_acids_and_peptides/zelkovamycin-c.yaml","zelkovamycin C"],["amino_acids_and_peptides/zelkovamycin-d.yaml","zelkovamycin D"],["amino_acids_and_peptides/zelkovamycin-e.yaml","zelkovamycin E"]],"b":[["NCBITaxon%3A2750812","Actinomadura graeca"]]},{"id":"NCBITaxon:285483","l":"Streptomyces miharaensis","na":4,"nb":1,"a":[["carbohydrates/miharamycin-b.yaml","miharamycin B"],["polyketides/filipin-iii.yaml","filipin III"],["unclassified/miharamycin-a-2.yaml","miharamycin A"],["unclassified/miharamycin-a.yaml","miharamycin A"]],"b":[["NCBITaxon%3A285483","Streptomyces miharaensis"]]},{"id":"NCBITaxon:2926","l":"Gonyaulax tamarensis","na":4,"nb":1,"a":[["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"],["alkaloids/gonyautoxin-2.yaml","gonyautoxin 2"],["alkaloids/neosaxitoxin.yaml","neosaxitoxin"],["alkaloids/saxitoxin.yaml","saxitoxin"]],"b":[["NCBITaxon%3A2926","Alexandrium tamarense"]]},{"id":"NCBITaxon:3100406","l":"Sphaerospermopsis sp.","na":4,"nb":1,"a":[["fatty_acids/chlorosphaerolactylate-a.yaml","chlorosphaerolactylate A"],["fatty_acids/chlorosphaerolactylate-b.yaml","chlorosphaerolactylate B"],["fatty_acids/chlorosphaerolactylate-c.yaml","chlorosphaerolactylate C"],["fatty_acids/chlorosphaerolactylate-d.yaml","chlorosphaerolactylate D"]],"b":[["NCBITaxon%3A3100406","Sphaerospermopsis sp."]]},{"id":"NCBITaxon:310350","l":"Nocardiopsis sp.","na":4,"nb":1,"a":[["alkaloids/k-252a.yaml","K-252a"],["polyketides/nocardiopsistin-a.yaml","nocardiopsistin A"],["polyketides/nocardiopsistin-b.yaml","nocardiopsistin B"],["polyketides/nocardiopsistin-c.yaml","nocardiopsistin C"]],"b":[["NCBITaxon%3A310350","Nocardiopsis sp."]]},{"id":"NCBITaxon:32049","l":"Picosynechococcus sp. PCC 7002","na":4,"nb":1,"a":[["alkaloids/synechobactin-a.yaml","synechobactin A"],["alkaloids/synechobactin-b.yaml","synechobactin B"],["alkaloids/synechobactin-c.yaml","synechobactin C"],["fatty_acids/nonadec-1-ene.yaml","nonadec-1-ene"]],"b":[["NCBITaxon%3A32049","Picosynechococcus sp. PCC 7002"]]},{"id":"NCBITaxon:36630","l":"Aspergillus fischeri","na":4,"nb":1,"a":[["polyketides/neosartorin.yaml","neosartorin"],["unclassified/acetylaszonalenin.yaml","acetylaszonalenin"],["unclassified/isoterrein.yaml","isoterrein"],["unclassified/pyripyropene-a.yaml","pyripyropene A"]],"b":[["NCBITaxon%3A36630","Aspergillus fischeri"]]},{"id":"NCBITaxon:36650","l":"Penicillium aethiopicum","na":4,"nb":1,"a":[["alkaloids/tryptoquialanine.yaml","tryptoquialanine"],["polyketides/epidechlorogriseofulvin.yaml","epidechlorogriseofulvin"],["polyketides/griseofulvin.yaml","griseofulvin"],["unclassified/viridicatumtoxin.yaml","viridicatumtoxin"]],"b":[["NCBITaxon%3A36650","Penicillium aethiopicum"]]},{"id":"NCBITaxon:387846","l":"Streptomyces ahygroscopicus","na":1,"nb":4,"a":[["polyketides/nystatin-a1.yaml","nystatin A1"]],"b":[["NCBITaxon%3A387846","Streptomyces ahygroscopicus"],["NCBITaxon%3A658228","Streptomyces ahygroscopicus subsp. liaoningensis"],["NCBITaxon%3A1423886","Streptomyces ahygroscopicus subsp. wuyiensis"],["NCBITaxon%3A387850","Streptomyces ahygroscopicus subsp. wuzhouensis"]]},{"id":"NCBITaxon:398006","l":"Cylindrospermopsis raciborskii T3","na":4,"nb":1,"a":[["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"],["alkaloids/gonyautoxin-2.yaml","gonyautoxin 2"],["alkaloids/neosaxitoxin.yaml","neosaxitoxin"],["alkaloids/saxitoxin.yaml","saxitoxin"]],"b":[["NCBITaxon%3A398006","Cylindrospermopsis raciborskii T3"]]},{"id":"NCBITaxon:40380","l":"Aspergillus ochraceus","na":4,"nb":1,"a":[["alkaloids/ochrindole-a.yaml","ochrindole A"],["polyketides/asperlactone.yaml","asperlactone"],["polyketides/murayaquinone.yaml","murayaquinone"],["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"]],"b":[["NCBITaxon%3A40380","Aspergillus ochraceus"]]},{"id":"NCBITaxon:431672","l":"Streptomyces sp. A2991200","na":4,"nb":1,"a":[["polyketides/be-43767.yaml","BE-43767"],["polyketides/benastatin-a.yaml","benastatin A"],["polyketides/benastatin-b.yaml","benastatin B"],["polyketides/tan1532b.yaml","TAN1532B"]],"b":[["NCBITaxon%3A431672","Streptomyces sp. A2991200"]]},{"id":"NCBITaxon:449468","l":"Microcystis aeruginosa NIES-298","na":4,"nb":1,"a":[["amino_acids_and_peptides/aerucyclamide-a.yaml","aerucyclamide A"],["amino_acids_and_peptides/aerucyclamide-c.yaml","aerucyclamide C"],["amino_acids_and_peptides/aerucyclamide-d.yaml","aerucyclamide D"],["amino_acids_and_peptides/microviridin-b.yaml","microviridin B"]],"b":[["NCBITaxon%3A449468","Microcystis aeruginosa NIES-298"]]},{"id":"NCBITaxon:48","l":"Archangium gephyra","na":4,"nb":1,"a":[["amino_acids_and_peptides/tubulysin-f.yaml","tubulysin F"],["amino_acids_and_peptides/tubulysin-g.yaml","tubulysin G"],["amino_acids_and_peptides/tubulysin-i.yaml","tubulysin I"],["polyketides/aurafuron-a.yaml","aurafuron A"]],"b":[["NCBITaxon%3A48","Archangium gephyra"]]},{"id":"NCBITaxon:481449","l":"Hapalosiphon hibernicus","na":1,"nb":4,"a":[["amino_acids_and_peptides/microcystin-la.yaml","microcystin-LA"]],"b":[["NCBITaxon%3A481449","Hapalosiphon hibernicus"],["NCBITaxon%3A1565559","Hapalosiphon hibernicus AUS-JR/BS/MS/NT-051"],["NCBITaxon%3A1565560","Hapalosiphon hibernicus AUS-JR/BS/MS/NT-052"],["NCBITaxon%3A481450","Hapalosiphon hibernicus BZ-3-1"]]},{"id":"NCBITaxon:5067","l":"Aspergillus parasiticus","na":4,"nb":1,"a":[["polyketides/aflatoxin-b2.yaml","aflatoxin B2"],["terpenoids/astellolide-a.yaml","astellolide A"],["unclassified/aflatoxin.yaml","aflatoxin"],["unclassified/aspergillic-acid.yaml","aspergillic acid"]],"b":[["NCBITaxon%3A5067","Aspergillus parasiticus"]]},{"id":"NCBITaxon:5078","l":"Penicillium griseofulvum","na":4,"nb":1,"a":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"],["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"],["terpenoids/penifulvin-a.yaml","penifulvin A"],["unclassified/cyclopiazonic-acid.yaml","α-cyclopiazonic acid"]],"b":[["NCBITaxon%3A5078","Penicillium griseofulvum"]]},{"id":"NCBITaxon:5083","l":"Penicillium canescens","na":4,"nb":1,"a":[["alkaloids/agroclavine-i.yaml","Agroclavine I"],["unclassified/outovirin-a.yaml","outovirin A"],["unclassified/outovirin-c.yaml","outovirin C"],["unclassified/penitrem-a.yaml","penitrem A"]],"b":[["NCBITaxon%3A5083","Penicillium canescens"]]},{"id":"NCBITaxon:511145","l":"Escherichia coli str. K-12 substr. MG1655","na":1,"nb":4,"a":[["unclassified/enterobactin.yaml","enterobactin"]],"b":[["NCBITaxon%3A47678","Bacteroides caccae"],["NCBITaxon%3A411901","Bacteroides caccae ATCC 43185"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A511145","Escherichia coli str. K-12 substr. MG1655"]]},{"id":"NCBITaxon:5128","l":"Fusarium roseum","na":4,"nb":1,"a":[["alkaloids/chrysogine.yaml","chrysogine"],["polyketides/zearalenone.yaml","zearalenone"],["terpenoids/culmorin.yaml","culmorin"],["terpenoids/fusarochromanone.yaml","fusarochromanone"]],"b":[["NCBITaxon%3A5128","Fusarium sambucinum"]]},{"id":"NCBITaxon:5341","l":"Agaricus bisporus","na":1,"nb":4,"a":[["polyketides/kojic-acid.yaml","kojic acid"]],"b":[["NCBITaxon%3A5341","Agaricus bisporus"],["NCBITaxon%3A936046","Agaricus bisporus var. bisporus H97"],["NCBITaxon%3A192524","Agaricus bisporus var. burnettii"],["NCBITaxon%3A597362","Agaricus bisporus var. burnettii JB137-S8"]]},{"id":"NCBITaxon:5516","l":"Fusarium culmorum","na":4,"nb":1,"a":[["polyketides/zearalenone.yaml","zearalenone"],["terpenoids/15-acetyldeoxynivalenol.yaml","15-acetyldeoxynivalenol"],["terpenoids/culmorin.yaml","culmorin"],["terpenoids/nivalenol.yaml","nivalenol"]],"b":[["NCBITaxon%3A5516","Fusarium culmorum"]]},{"id":"NCBITaxon:58291","l":"Rhizopus microsporus","na":1,"nb":4,"a":[["unclassified/rhizoxin-a.yaml","rhizoxin A"]],"b":[["NCBITaxon%3A58291","Rhizopus microsporus"],["NCBITaxon%3A4843","Rhizopus microsporus var. chinensis"],["NCBITaxon%3A86635","Rhizopus microsporus var. microsporus"],["NCBITaxon%3A4847","Rhizopus microsporus var. oligosporus"]]},{"id":"NCBITaxon:587","l":"Providencia rettgeri","na":1,"nb":4,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]],"b":[["NCBITaxon%3A587","Providencia rettgeri"],["NCBITaxon%3A1255575","Providencia rettgeri 947"],["NCBITaxon%3A1141663","Providencia rettgeri Dmel1"],["NCBITaxon%3A521000","Providencia rettgeri DSM 1131"]]},{"id":"NCBITaxon:61624","l":"Paenibacillus mucilaginosus","na":1,"nb":4,"a":[["amino_acids_and_peptides/bacillopaline.yaml","bacillopaline"]],"b":[["NCBITaxon%3A61624","Paenibacillus mucilaginosus"],["NCBITaxon%3A1116391","Paenibacillus mucilaginosus 3016"],["NCBITaxon%3A997761","Paenibacillus mucilaginosus K02"],["NCBITaxon%3A1036673","Paenibacillus mucilaginosus KNP414"]]},{"id":"NCBITaxon:634337","l":"Streptomyces sp. FXJ1.264","na":4,"nb":1,"a":[["amino_acids_and_peptides/azolemycin-a.yaml","azolemycin A"],["amino_acids_and_peptides/azolemycin-b.yaml","azolemycin B"],["amino_acids_and_peptides/azolemycin-c.yaml","azolemycin C"],["amino_acids_and_peptides/azolemycin-d.yaml","azolemycin D"]],"b":[["NCBITaxon%3A634337","Streptomyces sp. FXJ1.264"]]},{"id":"NCBITaxon:655844","l":"Metarhizium robertsii ARSEF 23","na":4,"nb":1,"a":[["alkaloids/swainsonine.yaml","swainsonine"],["unclassified/destruxin-a.yaml","destruxin A"],["unclassified/subglutinol-a.yaml","subglutinol A"],["unclassified/subglutinol-b.yaml","subglutinol B"]],"b":[["NCBITaxon%3A655844","Metarhizium robertsii ARSEF 23"]]},{"id":"NCBITaxon:681626","l":"Streptomyces sp. 2238-SVT4","na":4,"nb":1,"a":[["polyketides/hatomarubigin-a.yaml","hatomarubigin A"],["polyketides/hatomarubigin-b.yaml","hatomarubigin B"],["polyketides/hatomarubigin-c.yaml","hatomarubigin C"],["polyketides/hatomarubigin-d.yaml","hatomarubigin D"]],"b":[["NCBITaxon%3A681626","Streptomyces sp. 2238-SVT4"]]},{"id":"NCBITaxon:68570","l":"","na":4,"nb":1,"a":[["amino_acids_and_peptides/deimino-antipain.yaml","deimino-antipain"],["polyketides/nystatin.yaml","nystatin"],["unclassified/albonoursin.yaml","albonoursin"],["unclassified/citrulassin-a.yaml","citrulassin A"]],"b":[["NCBITaxon%3A1971","Streptomyces noursei"]]},{"id":"NCBITaxon:701528","l":"Streptomyces sp. SANK 62799","na":4,"nb":1,"a":[["carbohydrates/a-503083-a.yaml","A-503083 A"],["carbohydrates/a-503083-b.yaml","A-503083 B"],["carbohydrates/a-503083-e.yaml","A-503083 E"],["carbohydrates/a-503083-f.yaml","A-503083 F"]],"b":[["NCBITaxon%3A701528","Streptomyces sp. SANK 62799"]]},{"id":"NCBITaxon:75750","l":"Aspergillus sydowii","na":4,"nb":1,"a":[["alkaloids/fumigaclavine-c.yaml","fumigaclavine C"],["amino_acids_and_peptides/mulundocandin.yaml","mulundocandin"],["unclassified/orcinol.yaml","orcinol"],["unclassified/pyripyropene-a.yaml","pyripyropene A"]],"b":[["NCBITaxon%3A75750","Aspergillus sydowii"]]},{"id":"NCBITaxon:765170","l":"Cylindrospermum alatosporum","na":1,"nb":4,"a":[["amino_acids_and_peptides/puwainaphycin-a.yaml","puwainaphycin A"]],"b":[["NCBITaxon%3A765170","Cylindrospermum alatosporum"],["NCBITaxon%3A1382618","Cylindrospermum alatosporum CCALA 988"],["NCBITaxon%3A1382619","Cylindrospermum alatosporum CCALA 994"],["NCBITaxon%3A765171","Cylindrospermum alatosporum SAG 43.79"]]},{"id":"NCBITaxon:86667","l":"Jeotgalibacillus marinus","na":4,"nb":1,"a":[["fatty_acids/macrolactin-1c.yaml","macrolactin 1c"],["fatty_acids/macrolactin-b.yaml","macrolactin B"],["polyketides/macrolactin-e.yaml","macrolactin E"],["polyketides/macrolactin-h.yaml","macrolactin H"]],"b":[["NCBITaxon%3A86667","Jeotgalibacillus marinus"]]},{"id":"NCBITaxon:889268","l":"Nannocystis pusilla","na":4,"nb":1,"a":[["alkaloids/pyrronazol-b.yaml","pyrronazol B"],["polyketides/phenylnannolone-a.yaml","phenylnannolone A"],["polyketides/phenylnannolone-b.yaml","phenylnannolone B"],["polyketides/phenylnannolone-c.yaml","phenylnannolone C"]],"b":[["NCBITaxon%3A889268","Nannocystis pusilla"]]},{"id":"NCBITaxon:89137","l":"Byssochlamys fulva","na":4,"nb":1,"a":[["polyketides/agnestadride-a.yaml","agnestadride A"],["polyketides/agnestadride-b.yaml","agnestadride B"],["polyketides/byssochlamic-acid.yaml","byssochlamic acid"],["polyketides/triketide-maleidride-monomer-type-a.yaml","Triketide maleidride monomer type A"]],"b":[["NCBITaxon%3A89137","Paecilomyces fulvus"]]},{"id":"NCBITaxon:104397","l":"Epicoccum","na":1,"nb":3,"a":[["polyketides/epipyrone-a.yaml","epipyrone A"]],"b":[["NCBITaxon%3A124084","Epicoccum andropogonis"],["NCBITaxon%3A105696","Epicoccum nigrum"],["NCBITaxon%3A749593","Epicoccum sorghinum"]]},{"id":"NCBITaxon:1213862","l":"Streptomyces sp. SANK 60404","na":3,"nb":1,"a":[["amino_acids_and_peptides/vazabitide-a.yaml","vazabitide A"],["polyketides/2e-4e-6e-8e-n-2-hydroxy-5-oxocyclopent-1-en-1-yl-9-o-tolyl-nona-2-4-6-8-tetraena.yaml","(2E,4E,6E,8E)-N-(2-hydroxy-5-oxocyclopent-1-en-1-yl)-9-(o-tolyl)nona-2,4,6,8-tetraenamide"],["shikimates_and_phenylpropanoids/e-n-2-hydroxy-5-oxocyclopent-1-en-1-yl-5-o-tolyl-pent-4-enamide.yaml","(E)-N-(2-hydroxy-5-oxocyclopent-1-en-1-yl)-5-(o-tolyl)pent-4-enamide"]],"b":[["NCBITaxon%3A1213862","Streptomyces sp. SANK 60404"]]},{"id":"NCBITaxon:1246988","l":"Scytonema ocellatum","na":1,"nb":3,"a":[["polyketides/scytophycin.yaml","scytophycin"]],"b":[["NCBITaxon%3A1246988","Scytonema ocellatum"],["NCBITaxon%3A1352640","Scytonema ocellatum Es_Yyy1200"],["NCBITaxon%3A1246991","Scytonema ocellatum VB61277"]]},{"id":"NCBITaxon:1275","l":"Kocuria rosea","na":1,"nb":3,"a":[["amino_acids_and_peptides/kocurin.yaml","kocurin"]],"b":[["NCBITaxon%3A37921","Arthrobacter agilis"],["NCBITaxon%3A1275","Kocuria rosea"],["NCBITaxon%3A136273","Kocuria rosea subsp. polaris"]]},{"id":"NCBITaxon:1281","l":"Staphylococcus carnosus","na":1,"nb":3,"a":[["alkaloids/molybdenum-cofactor.yaml","molybdenum cofactor"]],"b":[["NCBITaxon%3A1281","Staphylococcus carnosus"],["NCBITaxon%3A1158532","Staphylococcus carnosus M0504"],["NCBITaxon%3A396513","Staphylococcus carnosus subsp. carnosus TM300"]]},{"id":"NCBITaxon:128442","l":"","na":3,"nb":1,"a":[["polyketides/1-2-dehydropenicillide.yaml","1,2-dehydropenicillide"],["polyketides/patulin.yaml","patulin"],["unclassified/chrodrimanin-b.yaml","chrodrimanin B"]],"b":[["NCBITaxon%3A128442","Talaromyces pinophilus"]]},{"id":"NCBITaxon:1297742","l":"Myxococcus hansupus","na":1,"nb":3,"a":[["unclassified/myxochromide-c.yaml","myxochromide C"]],"b":[["NCBITaxon%3A51","Chondromyces apiculatus"],["NCBITaxon%3A1192034","Chondromyces apiculatus DSM 436"],["NCBITaxon%3A1297742","Pseudomyxococcus hansupus"]]},{"id":"NCBITaxon:1333476","l":"Streptomyces sp. SCSIO 11863","na":3,"nb":1,"a":[["shikimates_and_phenylpropanoids/neoenterocin-a.yaml","neoenterocin A"],["shikimates_and_phenylpropanoids/neoenterocin-b.yaml","neoenterocin B"],["terpenoids/enterocin.yaml","enterocin"]],"b":[["NCBITaxon%3A1333476","Streptomyces sp. SCSIO 11863"]]},{"id":"NCBITaxon:13684","l":"Parastagonospora nodorum","na":1,"nb":3,"a":[["shikimates_and_phenylpropanoids/mellein.yaml","(-)-Mellein"]],"b":[["NCBITaxon%3A13684","Parastagonospora nodorum"],["NCBITaxon%3A1211001","Parastagonospora nodorum Sn4"],["NCBITaxon%3A1211002","Parastagonospora nodorum Sn79"]]},{"id":"NCBITaxon:138278","l":"Aspergillus ochraceoroseus","na":3,"nb":1,"a":[["polyketides/aflatoxin-b2.yaml","aflatoxin B2"],["polyketides/sterigmatocystin.yaml","sterigmatocystin"],["unclassified/aflatoxin-b1.yaml","aflatoxin B1"]],"b":[["NCBITaxon%3A138278","Aspergillus ochraceoroseus"]]},{"id":"NCBITaxon:1428626","l":"Streptomyces malaysiense","na":3,"nb":1,"a":[["amino_acids_and_peptides/thioholgamide-a.yaml","thioholgamide A"],["amino_acids_and_peptides/thioholgamide-b.yaml","thioholgamide B"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"]],"b":[["NCBITaxon%3A1428626","Streptomyces malaysiense"]]},{"id":"NCBITaxon:1454205","l":"","na":3,"nb":1,"a":[["amino_acids_and_peptides/cryptomaldamide.yaml","cryptomaldamide"],["amino_acids_and_peptides/hectoramide-b.yaml","hectoramide B"],["fatty_acids/1-heptadecene.yaml","1-heptadecene"]],"b":[["NCBITaxon%3A1454205","Moorena producens JHB"]]},{"id":"NCBITaxon:1463846","l":"Streptomyces sp. NRRL F-3213","na":3,"nb":1,"a":[["polyketides/mutaxanthene-a.yaml","mutaxanthene A"],["polyketides/mutaxanthene-b.yaml","mutaxanthene B"],["polyketides/mutaxanthene-d.yaml","mutaxanthene D"]],"b":[["NCBITaxon%3A1463846","Streptomyces sp. NRRL F-3213"]]},{"id":"NCBITaxon:1470456","l":"Streptomyces cyslabdanicus","na":3,"nb":1,"a":[["terpenoids/cyslabdan-a.yaml","cyslabdan A"],["terpenoids/cyslabdan-b.yaml","cyslabdan B"],["terpenoids/cyslabdan-c.yaml","cyslabdan C"]],"b":[["NCBITaxon%3A1470456","Streptomyces cyslabdanicus"]]},{"id":"NCBITaxon:1476877","l":"Streptomyces sp. NRRL B-1347","na":3,"nb":1,"a":[["alkaloids/gilvusmycin.yaml","gilvusmycin"],["amino_acids_and_peptides/detoxin-n2.yaml","detoxin N2"],["amino_acids_and_peptides/detoxin-n3.yaml","detoxin N3"]],"b":[["NCBITaxon%3A1476877","Streptomyces sp. NRRL B-1347"]]},{"id":"NCBITaxon:1570","l":"Halobacillus halophilus","na":1,"nb":3,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A1570","Halobacillus halophilus"],["NCBITaxon%3A866895","Halobacillus halophilus DSM 2266"],["NCBITaxon%3A56800","Halobacillus sp."]]},{"id":"NCBITaxon:1571707","l":"Streptomyces sp. SNM55","na":3,"nb":1,"a":[["amino_acids_and_peptides/ws9326f.yaml","WS9326F"],["amino_acids_and_peptides/ws9326g.yaml","WS9326G"],["unclassified/ws9326a.yaml","WS9326A"]],"b":[["NCBITaxon%3A1571707","Streptomyces sp. SNM55"]]},{"id":"NCBITaxon:1649596","l":"Streptomyces gandocaensis","na":3,"nb":1,"a":[["amino_acids_and_peptides/cahuitamycin-a.yaml","cahuitamycin A"],["amino_acids_and_peptides/cahuitamycin-b.yaml","cahuitamycin B"],["amino_acids_and_peptides/cahuitamycin-c.yaml","cahuitamycin C"]],"b":[["NCBITaxon%3A1649596","Streptomyces gandocaensis"]]},{"id":"NCBITaxon:167636","l":"Streptomyces carzinostaticus","na":3,"nb":1,"a":[["fatty_acids/neocarzilin-a.yaml","neocarzilin A"],["fatty_acids/neocarzilin-b.yaml","neocarzilin B"],["unclassified/neocarzinostatin-chromophore.yaml","neocarzinostatin chromophore"]],"b":[["NCBITaxon%3A167636","Streptomyces carzinostaticus subsp. neocarzinostaticus"]]},{"id":"NCBITaxon:1703433","l":"Micromonospora sp. RL09-050-HVF-A","na":3,"nb":1,"a":[["unclassified/lobosamide-a.yaml","lobosamide A"],["unclassified/lobosamide-b.yaml","lobosamide B"],["unclassified/lobosamide-c.yaml","lobosamide C"]],"b":[["NCBITaxon%3A1703433","Micromonospora sp. RL09-050-HVF-A"]]},{"id":"NCBITaxon:1727214","l":"Rhodococcus sp. H-CA8f","na":3,"nb":1,"a":[["alkaloids/corynecin-i.yaml","corynecin I"],["alkaloids/corynecin-ii.yaml","corynecin II"],["alkaloids/corynecin-iii.yaml","corynecin III"]],"b":[["NCBITaxon%3A1727214","Rhodococcus sp. H-CA8f"]]},{"id":"NCBITaxon:1826667","l":"Streptomyces sp. CMB-0406 CBM-0406","na":3,"nb":1,"a":[["unclassified/heronamide-a.yaml","heronamide A"],["unclassified/heronamide-b.yaml","heronamide B"],["unclassified/heronamide-c.yaml","heronamide C"]],"b":[["NCBITaxon%3A1826667","Streptomyces sp. CMB-0406"]]},{"id":"NCBITaxon:1828758","l":"Desmonostoc muscorum LEGE 12446","na":3,"nb":1,"a":[["unclassified/desmamide-a.yaml","desmamide A"],["unclassified/desmamide-b.yaml","desmamide B"],["unclassified/desmamide-c.yaml","desmamide C"]],"b":[["NCBITaxon%3A1828758","Desmonostoc muscorum LEGE 12446"]]},{"id":"NCBITaxon:1874","l":"Micromonospora chalcea","na":1,"nb":3,"a":[["polyketides/tetrocarcin-a.yaml","tetrocarcin A"]],"b":[["NCBITaxon%3A1874","Micromonospora chalcea"],["NCBITaxon%3A2008351","Micromonospora chalcea subsp. izumensis"],["NCBITaxon%3A1876","Micromonospora sp."]]},{"id":"NCBITaxon:1907","l":"Streptomyces glaucescens","na":3,"nb":1,"a":[["carbohydrates/5-hydroxystreptomycin.yaml","5'-hydroxystreptomycin"],["carbohydrates/streptomycin.yaml","streptomycin"],["polyketides/tetracenomycin-c.yaml","tetracenomycin C"]],"b":[["NCBITaxon%3A1907","Streptomyces glaucescens"]]},{"id":"NCBITaxon:1932","l":"Streptomyces tendae","na":3,"nb":1,"a":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"],["polyketides/lysolipin-i.yaml","lysolipin I"],["terpenoids/geosmin.yaml","(−)-geosmin"]],"b":[["NCBITaxon%3A1932","Streptomyces tendae"]]},{"id":"NCBITaxon:1940","l":"","na":3,"nb":1,"a":[["fatty_acids/fuelimicin-b.yaml","fuelimicin B"],["fatty_acids/fuelimicin-c.yaml","fuelimicin C"],["fatty_acids/fuelimycin-a.yaml","fuelimycin A"]],"b":[["NCBITaxon%3A1940","Streptomyces albireticuli"]]},{"id":"NCBITaxon:1943","l":"Streptomyces griseoruber","na":3,"nb":1,"a":[["polyketides/cinerubin-b.yaml","cinerubin B"],["polyketides/hedamycin.yaml","hedamycin"],["polyketides/murayaquinone.yaml","murayaquinone"]],"b":[["NCBITaxon%3A1943","Streptomyces griseoruber"]]},{"id":"NCBITaxon:2047085","l":"Nodularia sp.","na":3,"nb":1,"a":[["unclassified/nocuolactylate-a.yaml","Nocuolactylate A"],["unclassified/nocuolactylate-b.yaml","Nocuolactylate B"],["unclassified/nocuolactylate-c.yaml","Nocuolactylate C"]],"b":[["NCBITaxon%3A2047085","Nodularia sp. (in: cyanobacteria)"]]},{"id":"NCBITaxon:2066855","l":"Candidatus Entotheonella sp.","na":3,"nb":1,"a":[["polyketides/4-hydroxy-6-2-oxoheptadecyl-pyran-2-one.yaml","4-hydroxy-6-(2-oxoheptadecyl)pyran-2-one"],["polyketides/4-hydroxy-6-pentadecylpyran-2-one.yaml","4-hydroxy-6-pentadecylpyran-2-one"],["polyketides/cardol.yaml","cardol"]],"b":[["NCBITaxon%3A2066855","Candidatus Entotheonella sp."]]},{"id":"NCBITaxon:208443","l":"Amycolatopsis balhimycina","na":1,"nb":3,"a":[["amino_acids_and_peptides/balhimycin.yaml","balhimycin"]],"b":[["NCBITaxon%3A208443","Amycolatopsis balhimycina"],["NCBITaxon%3A1081091","Amycolatopsis balhimycina DSM 5908"],["NCBITaxon%3A1089545","Amycolatopsis balhimycina FH 1894"]]},{"id":"NCBITaxon:2303154","l":"Anabaena sp. UHCC-0399","na":3,"nb":1,"a":[["amino_acids_and_peptides/minutissamide-a.yaml","minutissamide A"],["amino_acids_and_peptides/minutissamide-b.yaml","minutissamide B"],["amino_acids_and_peptides/puwainaphycin-f.yaml","puwainaphycin F"]],"b":[["NCBITaxon%3A2303154","Anabaena sp. UHCC-0399"]]},{"id":"NCBITaxon:2305222","l":"Streptomyces sp. CBMAI 2042","na":3,"nb":1,"a":[["polyketides/alpiniamide.yaml","alpiniamide"],["unclassified/montanastatin.yaml","montanastatin"],["unclassified/valinomycin.yaml","valinomycin"]],"b":[["NCBITaxon%3A2305222","Streptomyces sp. CBMAI 2042"]]},{"id":"NCBITaxon:240292","l":"Trichormus variabilis ATCC 29413","na":3,"nb":1,"a":[["unclassified/4-deoxygadusol.yaml","4-deoxygadusol"],["unclassified/mycosporine-glycine.yaml","mycosporine glycine"],["unclassified/shinorine.yaml","shinorine"]],"b":[["NCBITaxon%3A240292","Trichormus variabilis ATCC 29413"]]},{"id":"NCBITaxon:2542736","l":"Streptomyces sp. CB02980","na":3,"nb":1,"a":[["alkaloids/pyrroloformamide-d.yaml","pyrroloformamide D"],["unclassified/pyrroloformamide-a.yaml","pyrroloformamide A"],["unclassified/pyrroloformamide-c.yaml","pyrroloformamide C"]],"b":[["NCBITaxon%3A2542736","Streptomyces sp. CB02980"]]},{"id":"NCBITaxon:2561920","l":"Streptomyces sp. IB201691-2A2","na":3,"nb":1,"a":[["polyketides/baikalomycin-a.yaml","baikalomycin A"],["polyketides/baikalomycin-b.yaml","baikalomycin B"],["polyketides/baikalomycin-c.yaml","baikalomycin C"]],"b":[["NCBITaxon%3A2561920","Streptomyces sp. IB201691-2A2"]]},{"id":"NCBITaxon:259942","l":"uncultured Prochloron sp.","na":3,"nb":1,"a":[["amino_acids_and_peptides/patellamide-b.yaml","patellamide B"],["amino_acids_and_peptides/patellin-6.yaml","patellin 6"],["amino_acids_and_peptides/trunkamide.yaml","trunkamide"]],"b":[["NCBITaxon%3A259942","uncultured Prochloron sp."]]},{"id":"NCBITaxon:264951","l":"Paecilomyces variotii","na":3,"nb":1,"a":[["polyketides/agnestin-a.yaml","agnestin A"],["polyketides/agnestin-b.yaml","agnestin B"],["polyketides/viriditoxin.yaml","viriditoxin"]],"b":[["NCBITaxon%3A264951","Paecilomyces variotii"]]},{"id":"NCBITaxon:267869","l":"Microcystis aeruginosa NIES-98","na":3,"nb":1,"a":[["amino_acids_and_peptides/aeruginosin-98-a.yaml","aeruginosin 98-A"],["amino_acids_and_peptides/aeruginosin-98-b.yaml","aeruginosin 98-B"],["amino_acids_and_peptides/aeruginosin-98-c.yaml","aeruginosin 98-C"]],"b":[["NCBITaxon%3A267869","Microcystis aeruginosa NIES-98"]]},{"id":"NCBITaxon:269800","l":"Thermobifida fusca YX","na":3,"nb":1,"a":[["amino_acids_and_peptides/fuscachelin-a.yaml","Fuscachelin A"],["amino_acids_and_peptides/fuscachelin-b.yaml","Fuscachelin B"],["amino_acids_and_peptides/fuscachelin-c.yaml","Fuscachelin C"]],"b":[["NCBITaxon%3A269800","Thermobifida fusca YX"]]},{"id":"NCBITaxon:271065","l":"Methylomicrobium alcaliphilum","na":1,"nb":3,"a":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]],"b":[["NCBITaxon%3A271065","Methylotuvimicrobium alcaliphilum"],["NCBITaxon%3A1091494","Methylotuvimicrobium alcaliphilum 20Z"],["NCBITaxon%3A269709","Methylotuvimicrobium kenyense"]]},{"id":"NCBITaxon:272129","l":"","na":3,"nb":1,"a":[["alkaloids/anatoxin-a.yaml","anatoxin-a"],["alkaloids/homoanatoxin-a.yaml","homoanatoxin-a"],["amino_acids_and_peptides/landornamide-a.yaml","landornamide A"]],"b":[["NCBITaxon%3A272129","Kamptonema sp. PCC 6506"]]},{"id":"NCBITaxon:2748322","l":"Brasilonema sp. CT11","na":3,"nb":1,"a":[["amino_acids_and_peptides/anabaenopeptin-788.yaml","anabaenopeptin 788"],["amino_acids_and_peptides/anabaenopeptin-802.yaml","anabaenopeptin 802"],["amino_acids_and_peptides/anabaenopeptin-816.yaml","anabaenopeptin 816"]],"b":[["NCBITaxon%3A2748322","Brasilonema sp. CT11"]]},{"id":"NCBITaxon:2777965","l":"Nodularia sp. LEGE 06071","na":3,"nb":1,"a":[["unclassified/nocuolactylate-a.yaml","Nocuolactylate A"],["unclassified/nocuolactylate-b.yaml","Nocuolactylate B"],["unclassified/nocuolactylate-c.yaml","Nocuolactylate C"]],"b":[["NCBITaxon%3A2777965","Nodularia sp. LEGE 06071"]]},{"id":"NCBITaxon:285530","l":"Streptomyces sviceus","na":1,"nb":3,"a":[["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"]],"b":[["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A285530","Streptomyces sviceus"],["NCBITaxon%3A463191","Streptomyces sviceus ATCC 29083"]]},{"id":"NCBITaxon:285557","l":"Streptomyces caniferus","na":3,"nb":1,"a":[["alkaloids/jomthonic-acid-a.yaml","jomthonic acid A"],["alkaloids/jomthonic-acid-c.yaml","jomthonic acid C"],["polyketides/jomthonic-acid-b.yaml","jomthonic acid B"]],"b":[["NCBITaxon%3A285557","Streptomyces caniferus"]]},{"id":"NCBITaxon:28893","l":"Streptomyces pilosus","na":3,"nb":1,"a":[["amino_acids_and_peptides/zorbamycin.yaml","zorbamycin"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"],["unclassified/piloquinone.yaml","piloquinone"]],"b":[["NCBITaxon%3A28893","Streptomyces pilosus"]]},{"id":"NCBITaxon:2919940","l":"Streptomyces tasikensis","na":3,"nb":1,"a":[["amino_acids_and_peptides/tasikamide-a.yaml","tasikamide A"],["amino_acids_and_peptides/tasikamide-b.yaml","tasikamide B"],["amino_acids_and_peptides/tasikamide-c.yaml","tasikamide C"]],"b":[["NCBITaxon%3A2919940","Streptomyces tasikensis"]]},{"id":"NCBITaxon:29301","l":"Streptomyces arenae","na":3,"nb":1,"a":[["polyketides/fogacin.yaml","fogacin"],["polyketides/naphtocyclinoic-acid.yaml","α naphtocyclinoic acid"],["terpenoids/pentalenolactone.yaml","pentalenolactone"]],"b":[["NCBITaxon%3A29301","Streptomyces arenae"]]},{"id":"NCBITaxon:29907","l":"Sporothrix","na":1,"nb":3,"a":[["polyketides/sporothriolide.yaml","sporothriolide"]],"b":[["NCBITaxon%3A1892476","Sporothrix dombeyi"],["NCBITaxon%3A545651","Sporothrix globosa"],["NCBITaxon%3A431197","Sporothrix pallida"]]},{"id":"NCBITaxon:311982","l":"Streptomyces hygroscopicus subsp. jinggangensis","na":1,"nb":3,"a":[["carbohydrates/validamycin-a-2.yaml","validamycin A"]],"b":[["NCBITaxon%3A311982","Streptomyces hygroscopicus subsp. jinggangensis"],["NCBITaxon%3A1133850","Streptomyces hygroscopicus subsp. jinggangensis 5008"],["NCBITaxon%3A1203460","Streptomyces hygroscopicus subsp. jinggangensis TL01"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans Pd1222","na":1,"nb":3,"a":[["alkaloids/parabactin.yaml","parabactin"]],"b":[["NCBITaxon%3A266","Paracoccus denitrificans"],["NCBITaxon%3A1302247","Paracoccus denitrificans JCM 21484"],["NCBITaxon%3A318586","Paracoccus denitrificans PD1222"]]},{"id":"NCBITaxon:31943","l":"Brevibacterium iodinum","na":1,"nb":3,"a":[["alkaloids/iodinin.yaml","iodinin"]],"b":[["NCBITaxon%3A31943","Brevibacterium iodinum"],["NCBITaxon%3A1255616","Brevibacterium iodinum ATCC 49514"],["NCBITaxon%3A1295588","Brevibacterium iodinum ZoA 5"]]},{"id":"NCBITaxon:324833","l":"Streptomyces lasaliensis","na":3,"nb":1,"a":[["polyketides/lasalocid-2.yaml","lasalocid"],["polyketides/lasalocid.yaml","lasalocid"],["unclassified/echinomycin.yaml","echinomycin"]],"b":[["NCBITaxon%3A324833","Streptomyces lasalocidi"]]},{"id":"NCBITaxon:330084","l":"Amycolatopsis jejuensis","na":3,"nb":1,"a":[["amino_acids_and_peptides/detoxin-p1.yaml","detoxin P1"],["amino_acids_and_peptides/detoxin-p2.yaml","detoxin P2"],["amino_acids_and_peptides/detoxin-p3.yaml","detoxin P3"]],"b":[["NCBITaxon%3A330084","Amycolatopsis jejuensis"]]},{"id":"NCBITaxon:33203","l":"Purpureocillium lilacinum","na":3,"nb":1,"a":[["amino_acids_and_peptides/leucinostatin-a.yaml","leucinostatin A"],["amino_acids_and_peptides/leucinostatin-b.yaml","leucinostatin B"],["polyketides/patulin.yaml","patulin"]],"b":[["NCBITaxon%3A33203","Purpureocillium lilacinum"]]},{"id":"NCBITaxon:33898","l":"Streptomyces galbus","na":1,"nb":3,"a":[["polyketides/rustmicin.yaml","rustmicin"]],"b":[["NCBITaxon%3A33898","Streptomyces galbus"],["NCBITaxon%3A1522105","Streptomyces galbus subsp. achromogenes"],["NCBITaxon%3A3075518","Streptomyces gottesmaniae"]]},{"id":"NCBITaxon:34381","l":"Aspergillus japonicus","na":3,"nb":1,"a":[["amino_acids_and_peptides/aculeacin-a.yaml","aculeacin A"],["fatty_acids/himeic-acid-a.yaml","himeic acid A"],["unclassified/paraherquamide.yaml","paraherquamide"]],"b":[["NCBITaxon%3A34381","Aspergillus japonicus"]]},{"id":"NCBITaxon:35621","l":"Streptomyces mobaraensis","na":1,"nb":3,"a":[["amino_acids_and_peptides/bleomycin-a2.yaml","bleomycin A2"]],"b":[["NCBITaxon%3A173858","Streptomyces luteireticuli"],["NCBITaxon%3A35621","Streptomyces mobaraensis"],["NCBITaxon%3A1223523","Streptomyces mobaraensis NBRC 13819 = DSM 40847"]]},{"id":"NCBITaxon:37329","l":"Nocardia farcinica","na":1,"nb":3,"a":[["amino_acids_and_peptides/nocobactin-na.yaml","nocobactin NA"]],"b":[["NCBITaxon%3A37329","Nocardia farcinica"],["NCBITaxon%3A247156","Nocardia farcinica IFM 10152"],["NCBITaxon%3A1210076","Nocardia farcinica NBRC 15532"]]},{"id":"NCBITaxon:379530","l":"Cylindrospermum licheniforme UTEX B 2014","na":3,"nb":1,"a":[["polyketides/cylindrocyclophane-d.yaml","Cylindrocyclophane D"],["polyketides/cylindrocyclophane-e.yaml","Cylindrocyclophane E"],["polyketides/cylindrocyclophane-f.yaml","Cylindrocyclophane F"]],"b":[["NCBITaxon%3A379530","Cylindrospermum licheniforme UTEX B 2014"]]},{"id":"NCBITaxon:38","l":"Archangium disciforme","na":3,"nb":1,"a":[["alkaloids/myxochelin-a.yaml","myxochelin A"],["amino_acids_and_peptides/tubulysin-a.yaml","tubulysin A"],["amino_acids_and_peptides/tubulysin-h.yaml","tubulysin H"]],"b":[["NCBITaxon%3A38","Archangium disciforme"]]},{"id":"NCBITaxon:380703","l":"Aeromonas hydrophila subsp. hydrophila (strain ATCC 7966 / DSM 30187 / BCRC 13018 / CCUG 14551 / JCM 1027 / KCTC 2358 / NCIMB 9240 / NCTC 8049)","na":1,"nb":3,"a":[["amino_acids_and_peptides/amonabactin-p-750.yaml","amonabactin P 750"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A196023","Aeromonas hydrophila subsp. hydrophila"],["NCBITaxon%3A380703","Aeromonas hydrophila subsp. hydrophila ATCC 7966"]]},{"id":"NCBITaxon:387850","l":"Streptomyces ahygroscopicus subsp. wuzhouensis","na":3,"nb":1,"a":[["carbohydrates/gougerotin.yaml","gougerotin"],["carbohydrates/toyocamycin.yaml","toyocamycin"],["polyketides/nystatin-a1.yaml","nystatin A1"]],"b":[["NCBITaxon%3A387850","Streptomyces ahygroscopicus subsp. wuzhouensis"]]},{"id":"NCBITaxon:388467","l":"Planktothrix agardhii NIVA-CYA 126/8","na":3,"nb":1,"a":[["amino_acids_and_peptides/anabaenopeptin-908.yaml","anabaenopeptin 908"],["amino_acids_and_peptides/anabaenopeptin-915.yaml","anabaenopeptin 915"],["amino_acids_and_peptides/microcystin.yaml","microcystin"]],"b":[["NCBITaxon%3A388467","Planktothrix agardhii NIVA-CYA 126/8"]]},{"id":"NCBITaxon:40223","l":"Methylophaga thalassica","na":1,"nb":3,"a":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]],"b":[["NCBITaxon%3A568897","Ectothiorhodospira salini"],["NCBITaxon%3A40223","Methylophaga thalassica"],["NCBITaxon%3A1026882","Methylophaga thalassica MP"]]},{"id":"NCBITaxon:40988","l":"Saccharomonospora azurea","na":1,"nb":3,"a":[["polyketides/primycin.yaml","primycin"]],"b":[["NCBITaxon%3A40988","Saccharomonospora azurea"],["NCBITaxon%3A882081","Saccharomonospora azurea NA-128"],["NCBITaxon%3A1114959","Saccharomonospora azurea SZMC 14600"]]},{"id":"NCBITaxon:41067","l":"Aspergillus candidus","na":3,"nb":1,"a":[["alkaloids/aspcandine.yaml","aspcandine"],["polyketides/kojic-acid.yaml","kojic acid"],["shikimates_and_phenylpropanoids/chlorflavonin.yaml","chlorflavonin"]],"b":[["NCBITaxon%3A41067","Aspergillus candidus"]]},{"id":"NCBITaxon:413882","l":"[Polyangium] brachysporum","na":3,"nb":1,"a":[["amino_acids_and_peptides/glidobactin-b.yaml","glidobactin B"],["amino_acids_and_peptides/glidobactin-c.yaml","glidobactin C"],["amino_acids_and_peptides/glidobactin.yaml","glidobactin"]],"b":[["NCBITaxon%3A413882","Caldimonas brevitalea"]]},{"id":"NCBITaxon:41735","l":"Aspergillus quadrilineatus","na":3,"nb":1,"a":[["polyketides/asperthecin.yaml","asperthecin"],["polyketides/sterigmatocystin.yaml","sterigmatocystin"],["shikimates_and_phenylpropanoids/microperfuranone.yaml","(−)-microperfuranone"]],"b":[["NCBITaxon%3A41735","Aspergillus quadrilineatus"]]},{"id":"NCBITaxon:42197","l":"Actinosynnema pretiosum","na":1,"nb":3,"a":[["polyketides/ansamitocin-p3.yaml","ansamitocin P3"]],"b":[["NCBITaxon%3A42197","Actinosynnema pretiosum"],["NCBITaxon%3A42198","Actinosynnema pretiosum subsp. auranticum"],["NCBITaxon%3A103721","Actinosynnema pretiosum subsp. pretiosum"]]},{"id":"NCBITaxon:42238","l":"Streptomyces neyagawaensis","na":3,"nb":1,"a":[["polyketides/concanamycin-a.yaml","concanamycin A"],["polyketides/tetrafibricin.yaml","tetrafibricin"],["unclassified/clifednamide-a-2.yaml","clifednamide A"]],"b":[["NCBITaxon%3A42238","Streptomyces neyagawaensis"]]},{"id":"NCBITaxon:442893","l":"Nostoc sp. TH1S01","na":3,"nb":1,"a":[["amino_acids_and_peptides/microviridin-1688.yaml","microviridin 1688"],["amino_acids_and_peptides/microviridin-1739.yaml","microviridin 1739"],["unclassified/microviridin-1748.yaml","microviridin 1748"]],"b":[["NCBITaxon%3A442893","Nostoc sp. TH1S01"]]},{"id":"NCBITaxon:45133","l":"Lasiodiplodia theobromae","na":3,"nb":1,"a":[["polyketides/lasiodiplodin.yaml","lasiodiplodin"],["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"],["shikimates_and_phenylpropanoids/mellein.yaml","(-)-Mellein"]],"b":[["NCBITaxon%3A45133","Lasiodiplodia theobromae"]]},{"id":"NCBITaxon:451804","l":"Aspergillus fumigatus (strain CBS 144.89 / FGSC A1163 / CEA10)","na":3,"nb":1,"a":[["terpenoids/21-h-hopane-3beta-22-diol.yaml","21-β-H-hopane-3beta, 22-diol"],["terpenoids/compound-3-3.yaml","compound 3"],["terpenoids/fumihopaside-a.yaml","fumihopaside A"]],"b":[["NCBITaxon%3A451804","Aspergillus fumigatus A1163"]]},{"id":"NCBITaxon:454130","l":"Aspergillus calidoustus","na":3,"nb":1,"a":[["terpenoids/calidoustene-a.yaml","calidoustene A"],["terpenoids/calidoustene-b.yaml","calidoustene B"],["terpenoids/calidoustene-c.yaml","calidoustene C"]],"b":[["NCBITaxon%3A454130","Aspergillus calidoustus"]]},{"id":"NCBITaxon:457406","l":"Micromonospora sp. M42","na":3,"nb":1,"a":[["alkaloids/diazepinomicin.yaml","diazepinomicin"],["unclassified/rakicidin-a.yaml","rakicidin A"],["unclassified/rakicidin-b-2.yaml","rakicidin B"]],"b":[["NCBITaxon%3A457406","Micromonospora sp. M42"]]},{"id":"NCBITaxon:457432","l":"Streptosporangium sibiricum","na":1,"nb":3,"a":[["carbohydrates/sibiromycin.yaml","sibiromycin"]],"b":[["NCBITaxon%3A1871","Actinoplanes sp."],["NCBITaxon%3A457432","Streptosporangium sibiricum"],["NCBITaxon%3A457433","Streptosporangium sibiricum ATCC 29053"]]},{"id":"NCBITaxon:46161","l":"Actinomadura kijaniata","na":1,"nb":3,"a":[["polyketides/kijanimicin.yaml","kijanimicin"]],"b":[["NCBITaxon%3A46158","Actinomadura citrea"],["NCBITaxon%3A46161","Actinomadura kijaniata"],["NCBITaxon%3A1220561","Actinomadura kijaniata NBRC 14229"]]},{"id":"NCBITaxon:46234","l":"Anabaena sp. 90","na":3,"nb":1,"a":[["amino_acids_and_peptides/anabaenopeptin.yaml","anabaenopeptin"],["amino_acids_and_peptides/anacyclamide-a10.yaml","anacyclamide A10"],["amino_acids_and_peptides/microcystin-lr.yaml","microcystin-LR"]],"b":[["NCBITaxon%3A46234","Anabaena sp. 90"]]},{"id":"NCBITaxon:463","l":"Fluoribacter dumoffii","na":1,"nb":3,"a":[["shikimates_and_phenylpropanoids/legioliulin.yaml","legioliulin"]],"b":[["NCBITaxon%3A463","Fluoribacter dumoffii"],["NCBITaxon%3A1094715","Fluoribacter dumoffii NY 23"],["NCBITaxon%3A1094714","Fluoribacter dumoffii Tex-KL"]]},{"id":"NCBITaxon:465541","l":"Streptomyces sp. Mg1","na":3,"nb":1,"a":[["polyketides/linearmycin-a.yaml","linearmycin A"],["polyketides/linearmycin-b.yaml","linearmycin B"],["unclassified/linearmycin-c.yaml","linearmycin C"]],"b":[["NCBITaxon%3A465541","Streptomyces sp. Mg1"]]},{"id":"NCBITaxon:474922","l":"Colletotrichum gloeosporioides","na":3,"nb":1,"a":[["unclassified/colletochlorin-a.yaml","Colletochlorin A"],["unclassified/colletotrichin.yaml","colletotrichin"],["unclassified/orcinol.yaml","orcinol"]],"b":[["NCBITaxon%3A474922","Colletotrichum gloeosporioides"]]},{"id":"NCBITaxon:47886","l":"Pseudomonas luteola","na":1,"nb":3,"a":[["amino_acids_and_peptides/chrysobactin.yaml","chrysobactin"]],"b":[["NCBITaxon%3A47886","Pseudomonas luteola"],["NCBITaxon%3A1215106","Pseudomonas luteola NBRC 103146"],["NCBITaxon%3A1207076","Pseudomonas luteola XLDN4-9"]]},{"id":"NCBITaxon:48100","l":"Alternaria solani","na":3,"nb":1,"a":[["polyketides/alternapyrone.yaml","alternapyrone"],["polyketides/solanapyrone-a.yaml","solanapyrone A"],["polyketides/solanapyrone-d.yaml","solanapyrone D"]],"b":[["NCBITaxon%3A48100","Alternaria solani"]]},{"id":"NCBITaxon:5046","l":"Sarocladium strictum","na":3,"nb":1,"a":[["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"],["polyketides/bisvertinolone-spelled-bisvertinolon-in-paper.yaml","bisvertinolone (spelled bisvertinolon in paper)"],["unclassified/xenovulene-a.yaml","xenovulene A"]],"b":[["NCBITaxon%3A5046","Sarocladium strictum"]]},{"id":"NCBITaxon:5050","l":"Epichloe uncinata","na":3,"nb":1,"a":[["alkaloids/loline.yaml","loline"],["alkaloids/n-acetylnorloline.yaml","N-acetylnorloline"],["alkaloids/n-formylloline.yaml","N-formylloline"]],"b":[["NCBITaxon%3A5050","Epichloe uncinata"]]},{"id":"NCBITaxon:5097","l":"Monascus","na":1,"nb":3,"a":[["polyketides/monascin.yaml","monascin"]],"b":[["NCBITaxon%3A225353","Monascus aurantiacus"],["NCBITaxon%3A5098","Monascus purpureus"],["NCBITaxon%3A89489","Monascus ruber"]]},{"id":"NCBITaxon:5098","l":"Monascus purpureus","na":3,"nb":1,"a":[["polyketides/monascin.yaml","monascin"],["polyketides/monascorubrin.yaml","monascorubrin"],["polyketides/rubropunctatine.yaml","rubropunctatine"]],"b":[["NCBITaxon%3A5098","Monascus purpureus"]]},{"id":"NCBITaxon:538381","l":"Stappia indica","na":3,"nb":1,"a":[["alkaloids/sesbanimide-c.yaml","sesbanimide C"],["alkaloids/sesbanimide-e.yaml","sesbanimide E"],["alkaloids/sesbanimide-f.yaml","sesbanimide F"]],"b":[["NCBITaxon%3A538381","Stappia indica"]]},{"id":"NCBITaxon:546342","l":"Staphylococcus aureus subsp. aureus str. JKD6008","na":3,"nb":1,"a":[["unclassified/leuvalin.yaml","leuvalin"],["unclassified/phevalin.yaml","phevalin"],["unclassified/tyrvalin.yaml","tyrvalin"]],"b":[["NCBITaxon%3A546342","Staphylococcus aureus subsp. aureus str. JKD6008"]]},{"id":"NCBITaxon:5544","l":"Trichoderma harzianum","na":3,"nb":1,"a":[["polyketides/1-2-dehydropenicillide.yaml","1,2-dehydropenicillide"],["polyketides/harziphilone.yaml","harziphilone"],["unclassified/harzianopyridone.yaml","harzianopyridone"]],"b":[["NCBITaxon%3A5544","Trichoderma harzianum"]]},{"id":"NCBITaxon:568869","l":"Streptomyces sanyensis","na":3,"nb":1,"a":[["alkaloids/k-252a-2.yaml","K-252a"],["alkaloids/rebeccamycin.yaml","rebeccamycin"],["alkaloids/staurosporine.yaml","staurosporine"]],"b":[["NCBITaxon%3A568869","Streptomyces sanyensis"]]},{"id":"NCBITaxon:574","l":"Klebsiella pneumoniae subsp. ozaenae","na":1,"nb":3,"a":[["carbohydrates/capsular-polysaccharide-2.yaml","capsular polysaccharide"]],"b":[["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A574","Klebsiella pneumoniae subsp. ozaenae"],["NCBITaxon%3A1218098","Klebsiella pneumoniae subsp. ozaenae NBRC 105683"]]},{"id":"NCBITaxon:60167","l":"Penicillium cyclopium","na":3,"nb":1,"a":[["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"],["terpenoids/conidiogenone.yaml","conidiogenone"],["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]],"b":[["NCBITaxon%3A60167","Penicillium cyclopium"]]},{"id":"NCBITaxon:64629","l":"Mycotypha","na":1,"nb":3,"a":[["alkaloids/cytochalasin-e.yaml","cytochalasin E"]],"b":[["NCBITaxon%3A64632","Mycotypha africana"],["NCBITaxon%3A2053761","Mycotypha indica"],["NCBITaxon%3A64633","Mycotypha microspora"]]},{"id":"NCBITaxon:659352","l":"Streptomyces sp. SN-593","na":3,"nb":1,"a":[["polyketides/kinanthraquinone-b.yaml","kinanthraquinone B"],["polyketides/kinanthraquinone.yaml","kinanthraquinone"],["polyketides/reveromycin-a.yaml","reveromycin A"]],"b":[["NCBITaxon%3A659352","Actinacidiphila reveromycinica"]]},{"id":"NCBITaxon:66374","l":"Streptomyces nojiriensis","na":3,"nb":1,"a":[["carbohydrates/streptothricin-d.yaml","streptothricin D"],["carbohydrates/streptothricin-e.yaml","streptothricin E"],["carbohydrates/streptothricin-f.yaml","streptothricin F"]],"b":[["NCBITaxon%3A66374","Streptomyces nojiriensis"]]},{"id":"NCBITaxon:668825","l":"Streptomyces sp. ATCC 700974","na":3,"nb":1,"a":[["amino_acids_and_peptides/albomycin-1.yaml","albomycin δ1"],["amino_acids_and_peptides/albomycin-delta2.yaml","albomycin delta2"],["amino_acids_and_peptides/albomycin-epsilon.yaml","albomycin epsilon"]],"b":[["NCBITaxon%3A668825","Streptomyces sp. ATCC 700974"]]},{"id":"NCBITaxon:67283","l":"Streptomyces candidus","na":1,"nb":3,"a":[["unclassified/pirazofurin.yaml","pirazofurin"]],"b":[["NCBITaxon%3A76021","Amycolatopsis coloradensis"],["NCBITaxon%3A67283","Streptomyces candidus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:67293","l":"Streptomyces echinatus","na":3,"nb":1,"a":[["polyketides/aranciamycin.yaml","aranciamycin"],["unclassified/echinomycin.yaml","echinomycin"],["unclassified/quinomycin.yaml","quinomycin"]],"b":[["NCBITaxon%3A67293","Streptomyces echinatus"]]},{"id":"NCBITaxon:67304","l":"Streptomyces griseorubiginosus","na":3,"nb":1,"a":[["polyketides/cinerubin-b.yaml","cinerubin B"],["polyketides/k1115a.yaml","K1115A"],["polyketides/rubiginone-b2.yaml","rubiginone B2"]],"b":[["NCBITaxon%3A67304","Streptomyces griseorubiginosus"]]},{"id":"NCBITaxon:67372","l":"Streptomyces variabilis","na":1,"nb":3,"a":[["polyketides/resistomycin.yaml","resistomycin"]],"b":[["NCBITaxon%3A29305","Streptomyces griseoincarnatus"],["NCBITaxon%3A67372","Streptomyces variabilis"],["NCBITaxon%3A377639","Streptomyces variabilis subsp. roseolus"]]},{"id":"NCBITaxon:67376","l":"Streptomyces vinaceusdrappus","na":3,"nb":1,"a":[["carbohydrates/amicetin.yaml","amicetin"],["polyketides/ll-d49194-1-lld.yaml","LL-D49194α1 (LLD)"],["polyketides/ll-d49194-2.yaml","LL-D49194β2"]],"b":[["NCBITaxon%3A67376","Streptomyces vinaceusdrappus"]]},{"id":"NCBITaxon:68187","l":"Streptomyces cirratus","na":1,"nb":3,"a":[["unclassified/pheganomycin.yaml","pheganomycin"]],"b":[["NCBITaxon%3A70348","Acinetobacter dispersus"],["NCBITaxon%3A2081977","Litorimonas haliclonae"],["NCBITaxon%3A68187","Streptomyces cirratus"]]},{"id":"NCBITaxon:68195","l":"Streptomyces ehimensis","na":1,"nb":3,"a":[["alkaloids/carbazomycin-b.yaml","carbazomycin B"]],"b":[["NCBITaxon%3A97398","Streptomyces abikoensis"],["NCBITaxon%3A68195","Streptomyces ehimensis"],["NCBITaxon%3A1243002","Vibrio olivae"]]},{"id":"NCBITaxon:68197","l":"Streptomyces fimbriatus","na":1,"nb":3,"a":[["alkaloids/spicamycin.yaml","spicamycin"]],"b":[["NCBITaxon%3A1398493","Pseudocitrobacter faecalis"],["NCBITaxon%3A68197","Streptomyces fimbriatus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:68228","l":"Streptomyces lilacinus","na":1,"nb":3,"a":[["unclassified/rakicidin-d.yaml","rakicidin D"]],"b":[["NCBITaxon%3A68222","Streptomyces kashimirensis"],["NCBITaxon%3A285467","Streptomyces lilaceus"],["NCBITaxon%3A68228","Streptomyces lilacinus"]]},{"id":"NCBITaxon:68242","l":"Streptomyces natalensis","na":1,"nb":3,"a":[["polyketides/natamycin.yaml","natamycin"]],"b":[["NCBITaxon%3A68242","Streptomyces natalensis"],["NCBITaxon%3A1240678","Streptomyces natalensis ATCC 27448"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:683272","l":"Streptosporangium sp. FXJ7.131","na":3,"nb":1,"a":[["polyketides/hexaricin-b.yaml","hexaricin B"],["polyketides/hexaricin-c.yaml","hexaricin C"],["polyketides/ws-79089a.yaml","WS 79089A"]],"b":[["NCBITaxon%3A683272","Streptosporangium sp. FXJ7.131"]]},{"id":"NCBITaxon:686309","l":"Micromonospora haikouensis","na":3,"nb":1,"a":[["carbohydrates/aristeromycin.yaml","aristeromycin"],["carbohydrates/coformycin.yaml","coformycin"],["carbohydrates/kanamycin-a.yaml","kanamycin A"]],"b":[["NCBITaxon%3A686309","Micromonospora haikouensis"]]},{"id":"NCBITaxon:687","l":"Vibrio gazogenes","na":1,"nb":3,"a":[["alkaloids/prodigiosin.yaml","prodigiosin"]],"b":[["NCBITaxon%3A687","Vibrio gazogenes"],["NCBITaxon%3A1269943","Vibrio gazogenes ATCC 43941"],["NCBITaxon%3A1123492","Vibrio gazogenes DSM 21264 = NBRC 103151"]]},{"id":"NCBITaxon:71999","l":"Kocuria palustris","na":1,"nb":3,"a":[["amino_acids_and_peptides/kocurin.yaml","kocurin"]],"b":[["NCBITaxon%3A71999","Kocuria palustris"],["NCBITaxon%3A1236550","Kocuria palustris PEL"],["NCBITaxon%3A1272","Kocuria varians"]]},{"id":"NCBITaxon:757424","l":"Herbaspirillum seropedicae SmR1","na":3,"nb":1,"a":[["amino_acids_and_peptides/serobactin-a.yaml","serobactin A"],["amino_acids_and_peptides/serobactin-b.yaml","serobactin B"],["amino_acids_and_peptides/serobactin-c.yaml","serobactin C"]],"b":[["NCBITaxon%3A757424","Herbaspirillum seropedicae SmR1"]]},{"id":"NCBITaxon:758803","l":"Nocardiopsis flavescens","na":3,"nb":1,"a":[["alkaloids/loonamycin-a.yaml","loonamycin A"],["alkaloids/loonamycin-b.yaml","loonamycin B"],["alkaloids/loonamycin-c.yaml","loonamycin C"]],"b":[["NCBITaxon%3A758803","Nocardiopsis flavescens"]]},{"id":"NCBITaxon:83460","l":"Allostigmatella erecta","na":3,"nb":1,"a":[["alkaloids/aurachin-a.yaml","aurachin A"],["alkaloids/aurachin-c.yaml","aurachin C"],["unclassified/myxochromide-d.yaml","myxochromide D"]],"b":[["NCBITaxon%3A83460","Allostigmatella erecta"]]},{"id":"NCBITaxon:945768","l":"Plectonema radiosum","na":1,"nb":3,"a":[["carbohydrates/tubercidin.yaml","tubercidin"]],"b":[["NCBITaxon%3A945769","Plectonema cf. radiosum LEGE 06105"],["NCBITaxon%3A945768","Plectonema radiosum"],["NCBITaxon%3A2986073","Plectonema radiosum NIES-515"]]},{"id":"NCBITaxon:945782","l":"Synechocystis salina LEGE 06155","na":3,"nb":1,"a":[["polyketides/bartoloside-b.yaml","bartoloside B"],["polyketides/bartoloside-c.yaml","bartoloside C"],["polyketides/bartoloside-d.yaml","bartoloside D"]],"b":[["NCBITaxon%3A945782","Synechocystis salina LEGE 06155"]]},{"id":"NCBITaxon:96045","l":"Nocardia uniformis subsp. tsuyamanensis","na":1,"nb":3,"a":[["amino_acids_and_peptides/nocardicin-a.yaml","nocardicin A"]],"b":[["NCBITaxon%3A1872144","Actinosynnema sp."],["NCBITaxon%3A53432","Nocardia uniformis"],["NCBITaxon%3A96045","Nocardia uniformis subsp. tsuyamanensis"]]},{"id":"NCBITaxon:984195","l":"Pseudomonas sp. SHC52","na":3,"nb":1,"a":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["amino_acids_and_peptides/thanafactin-a.yaml","thanafactin A"],["unclassified/thanamycin.yaml","thanamycin"]],"b":[["NCBITaxon%3A984195","Pseudomonas sp. SHC52"]]},{"id":"NCBITaxon:1001349","l":"Streptomyces sp. Acta 2897","na":2,"nb":1,"a":[["unclassified/skyllamycin-a.yaml","skyllamycin A"],["unclassified/skyllamycin-b.yaml","skyllamycin B"]],"b":[["NCBITaxon%3A1001349","Streptomyces sp. Acta 2897"]]},{"id":"NCBITaxon:1004","l":"Chitinophaga sancti","na":1,"nb":2,"a":[["polyketides/elansolid-a1.yaml","elansolid A1"]],"b":[["NCBITaxon%3A1004","Chitinophaga sancti"],["NCBITaxon%3A1121282","Chitinophaga sancti DSM 784"]]},{"id":"NCBITaxon:101162","l":"Bipolaris oryzae","na":1,"nb":2,"a":[["alkaloids/melanin.yaml","melanin"]],"b":[["NCBITaxon%3A101162","Bipolaris oryzae"],["NCBITaxon%3A930090","Bipolaris oryzae ATCC 44560"]]},{"id":"NCBITaxon:1042163","l":"Brevibacillus laterosporus LMG 15441","na":1,"nb":2,"a":[["unclassified/laterocidine.yaml","laterocidine"]],"b":[["NCBITaxon%3A1465","Brevibacillus laterosporus"],["NCBITaxon%3A1042163","Brevibacillus laterosporus LMG 15441"]]},{"id":"NCBITaxon:104260","l":"Penicillium paraherquei","na":2,"nb":1,"a":[["unclassified/paraherquamide.yaml","paraherquamide"],["unclassified/paraherquonin.yaml","paraherquonin"]],"b":[["NCBITaxon%3A104260","Penicillium paraherquei"]]},{"id":"NCBITaxon:1052","l":"Halorhodospira halochloris","na":1,"nb":2,"a":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]],"b":[["NCBITaxon%3A1052","Halorhodospira halochloris"],["NCBITaxon%3A1354791","Halorhodospira halochloris str. A"]]},{"id":"NCBITaxon:105351","l":"Aspergillus awamori","na":1,"nb":2,"a":[["alkaloids/aspergillin-pz.yaml","aspergillin PZ"]],"b":[["NCBITaxon%3A105351","Aspergillus awamori"],["NCBITaxon%3A309746","Aspergillus awamori var. piceus"]]},{"id":"NCBITaxon:105696","l":"Epicoccum nigrum","na":2,"nb":1,"a":[["polyketides/epipyrone-a.yaml","epipyrone A"],["terpenoids/carotene.yaml","β-carotene"]],"b":[["NCBITaxon%3A105696","Epicoccum nigrum"]]},{"id":"NCBITaxon:1069","l":"Rhodomicrobium vannielii","na":1,"nb":2,"a":[["terpenoids/carotene.yaml","β-carotene"]],"b":[["NCBITaxon%3A1069","Rhodomicrobium vannielii"],["NCBITaxon%3A648757","Rhodomicrobium vannielii ATCC 17100"]]},{"id":"NCBITaxon:107635","l":"Methylosinus sp. LW3","na":1,"nb":2,"a":[["amino_acids_and_peptides/group-1-methanobactin.yaml","group 1 methanobactin"]],"b":[["NCBITaxon%3A427","Methylosinus sp."],["NCBITaxon%3A107635","Methylosinus sp. LW3"]]},{"id":"NCBITaxon:1079983","l":"Streptomyces lysosuperificus","na":1,"nb":2,"a":[["carbohydrates/tunicamycin.yaml","tunicamycin"]],"b":[["NCBITaxon%3A1079983","Streptomyces lysosuperificus"],["NCBITaxon%3A1079984","Streptomyces lysosuperificus ATCC 31396"]]},{"id":"NCBITaxon:1091494","l":"Methylotuvimicrobium alcaliphilum 20Z","na":1,"nb":2,"a":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]],"b":[["NCBITaxon%3A271065","Methylotuvimicrobium alcaliphilum"],["NCBITaxon%3A1091494","Methylotuvimicrobium alcaliphilum 20Z"]]},{"id":"NCBITaxon:1108849","l":"Penicillium rubens","na":1,"nb":2,"a":[["polyketides/sorbicillin.yaml","sorbicillin"]],"b":[["NCBITaxon%3A1108849","Penicillium rubens"],["NCBITaxon%3A500485","Penicillium rubens Wisconsin 54-1255"]]},{"id":"NCBITaxon:1120936","l":"Actinomadura atramentaria DSM 43919","na":1,"nb":2,"a":[["amino_acids_and_peptides/matlystatin-a.yaml","matlystatin A"]],"b":[["NCBITaxon%3A1990","Actinomadura atramentaria"],["NCBITaxon%3A1120936","Actinomadura atramentaria DSM 43919"]]},{"id":"NCBITaxon:1121121","l":"Brevibacillus laterosporus DSM 25","na":1,"nb":2,"a":[["amino_acids_and_peptides/tauramamide.yaml","tauramamide"]],"b":[["NCBITaxon%3A1465","Brevibacillus laterosporus"],["NCBITaxon%3A1121121","Brevibacillus laterosporus DSM 25"]]},{"id":"NCBITaxon:1124983","l":"Pseudomonas protegens CHA0","na":1,"nb":2,"a":[["fatty_acids/protegencin.yaml","protegencin"]],"b":[["NCBITaxon%3A380021","Pseudomonas protegens"],["NCBITaxon%3A1124983","Pseudomonas protegens CHA0"]]},{"id":"NCBITaxon:1125972","l":"Amycolatopsis alba DSM 44262","na":1,"nb":2,"a":[["amino_acids_and_peptides/albachelin.yaml","albachelin"]],"b":[["NCBITaxon%3A76020","Amycolatopsis alba"],["NCBITaxon%3A1125972","Amycolatopsis alba DSM 44262"]]},{"id":"NCBITaxon:1134541","l":"Streptomyces sp. WK-5344","na":2,"nb":1,"a":[["shikimates_and_phenylpropanoids/bagremycin-a.yaml","bagremycin A"],["shikimates_and_phenylpropanoids/bagremycin-b.yaml","bagremycin B"]],"b":[["NCBITaxon%3A1134541","Streptomyces sp. WK-5344"]]},{"id":"NCBITaxon:113561","l":"Paractinoplanes deccanensis","na":1,"nb":2,"a":[["polyketides/tiacumicin-b.yaml","tiacumicin B"]],"b":[["NCBITaxon%3A113561","Paractinoplanes deccanensis"],["NCBITaxon%3A1095092","Paractinoplanes deccanensis subsp. salmoneus"]]},{"id":"NCBITaxon:114230","l":"Nigrospora","na":1,"nb":2,"a":[["polyketides/solanapyrone-a.yaml","solanapyrone A"]],"b":[["NCBITaxon%3A335854","Nigrospora oryzae"],["NCBITaxon%3A114231","Nigrospora sphaerica"]]},{"id":"NCBITaxon:1159","l":"Oscillatoria sp.","na":2,"nb":1,"a":[["alkaloids/7-epi-cylindrospermopsin.yaml","7-epi-cylindrospermopsin"],["terpenoids/zeaxanthin.yaml","zeaxanthin"]],"b":[["NCBITaxon%3A1159","Oscillatoria sp."]]},{"id":"NCBITaxon:1160280","l":"Microcystis aeruginosa PCC 9432","na":2,"nb":1,"a":[["amino_acids_and_peptides/aeruginosamide-b.yaml","aeruginosamide B"],["amino_acids_and_peptides/aeruginosamide-c.yaml","aeruginosamide C"]],"b":[["NCBITaxon%3A1160280","Microcystis aeruginosa PCC 9432"]]},{"id":"NCBITaxon:1160705","l":"Streptomyces viridochromogenes Tue57","na":2,"nb":1,"a":[["carbohydrates/avilamycin-a.yaml","avilamycin A"],["carbohydrates/avilamycin-c.yaml","avilamycin C"]],"b":[["NCBITaxon%3A1160705","Streptomyces viridochromogenes Tue57"]]},{"id":"NCBITaxon:1181","l":"Desmonostoc sp. PCC 7906","na":2,"nb":1,"a":[["amino_acids_and_peptides/muscoride-a.yaml","muscoride A"],["unclassified/muscoride-b.yaml","muscoride B"]],"b":[["NCBITaxon%3A1181","Desmonostoc sp. PCC 7906"]]},{"id":"NCBITaxon:119927","l":"Alternaria tenuissima","na":2,"nb":1,"a":[["polyketides/patulin.yaml","patulin"],["polyketides/solanapyrone-a.yaml","solanapyrone A"]],"b":[["NCBITaxon%3A119927","Alternaria tenuissima"]]},{"id":"NCBITaxon:1200984","l":"Streptomyces lividans 1326","na":2,"nb":1,"a":[["amino_acids_and_peptides/livipeptin.yaml","Livipeptin"],["polyketides/bisenarsan.yaml","Bisenarsan"]],"b":[["NCBITaxon%3A1200984","Streptomyces lividans 1326"]]},{"id":"NCBITaxon:120957","l":"Nocardia abscessus","na":1,"nb":2,"a":[["carbohydrates/kanamycin-a.yaml","kanamycin A"]],"b":[["NCBITaxon%3A120957","Nocardia abscessus"],["NCBITaxon%3A1206723","Nocardia abscessus NBRC 100374"]]},{"id":"NCBITaxon:1214101","l":"Streptomyces davaonensis JCM 4913","na":1,"nb":2,"a":[["alkaloids/roseoflavin.yaml","roseoflavin"]],"b":[["NCBITaxon%3A348043","Streptomyces davaonensis"],["NCBITaxon%3A1214101","Streptomyces davaonensis JCM 4913"]]},{"id":"NCBITaxon:1214242","l":"Streptomyces collinus Tu 365","na":1,"nb":2,"a":[["unclassified/kirromycin.yaml","kirromycin"]],"b":[["NCBITaxon%3A1214242","Streptomyces collinus Tu 365"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:1218948","l":"Pseudomonas fluorescens PF5","na":2,"nb":1,"a":[["alkaloids/pyoluteorin.yaml","pyoluteorin"],["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"]],"b":[["NCBITaxon%3A1218948","Pseudomonas fluorescens PF5"]]},{"id":"NCBITaxon:1221190","l":"Candidatus Entotheonella factor","na":2,"nb":1,"a":[["amino_acids_and_peptides/polytheonamide-a.yaml","polytheonamide A"],["amino_acids_and_peptides/polytheonamide-b.yaml","polytheonamide B"]],"b":[["NCBITaxon%3A1221190","bacterium symbiont of Theonella swinhoei pTSMAC1"]]},{"id":"NCBITaxon:1226757","l":"Streptomyces rapamycinicus","na":1,"nb":2,"a":[["polyketides/sirolimus.yaml","sirolimus"]],"b":[["NCBITaxon%3A1226757","Streptomyces rapamycinicus"],["NCBITaxon%3A1343740","Streptomyces rapamycinicus NRRL 5491"]]},{"id":"NCBITaxon:1245473","l":"Nocardiopsis alba DSM 43377","na":1,"nb":2,"a":[["amino_acids_and_peptides/lp2006.yaml","LP2006"]],"b":[["NCBITaxon%3A53437","Nocardiopsis alba"],["NCBITaxon%3A1245473","Nocardiopsis alba DSM 43377"]]},{"id":"NCBITaxon:1265399","l":"Streptomyces sp. ID38640","na":2,"nb":1,"a":[["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["unclassified/lydicamycin.yaml","lydicamycin"]],"b":[["NCBITaxon%3A1265399","Streptomyces sp. ID38640"]]},{"id":"NCBITaxon:1267754","l":"Corynebacterium urealyticum DSM 7111","na":1,"nb":2,"a":[["amino_acids_and_peptides/corynazolicin.yaml","corynazolicin"]],"b":[["NCBITaxon%3A43771","Corynebacterium urealyticum"],["NCBITaxon%3A1267754","Corynebacterium urealyticum DSM 7111"]]},{"id":"NCBITaxon:1278073","l":"","na":1,"nb":2,"a":[["polyketides/phenalamide-a2.yaml","phenalamide A2"]],"b":[["NCBITaxon%3A83455","Myxococcus stipitatus"],["NCBITaxon%3A1278073","Myxococcus stipitatus DSM 14675"]]},{"id":"NCBITaxon:1284240","l":"Amycolatopsis decaplanina DSM 44594","na":1,"nb":2,"a":[["amino_acids_and_peptides/decaplanin.yaml","decaplanin"]],"b":[["NCBITaxon%3A208441","Amycolatopsis decaplanina"],["NCBITaxon%3A1284240","Amycolatopsis decaplanina DSM 44594"]]},{"id":"NCBITaxon:1286094","l":"Streptomyces aurantiacus JA 4570","na":2,"nb":1,"a":[["polyketides/setomimycin.yaml","setomimycin"],["unclassified/aurantimycin-a.yaml","aurantimycin A"]],"b":[["NCBITaxon%3A1286094","Streptomyces aurantiacus JA 4570"]]},{"id":"NCBITaxon:1293","l":"Staphylococcus gallinarum","na":1,"nb":2,"a":[["amino_acids_and_peptides/gallidermin.yaml","gallidermin"]],"b":[["NCBITaxon%3A1293","Staphylococcus gallinarum"],["NCBITaxon%3A1288","Staphylococcus xylosus"]]},{"id":"NCBITaxon:1295550","l":"Streptomyces arginensis","na":2,"nb":1,"a":[["carbohydrates/arginomycin.yaml","arginomycin"],["carbohydrates/blasticidin-s.yaml","blasticidin S"]],"b":[["NCBITaxon%3A1295550","Streptomyces arginensis"]]},{"id":"NCBITaxon:1306787","l":"","na":1,"nb":2,"a":[["amino_acids_and_peptides/pacifibactin.yaml","pacifibactin"]],"b":[["NCBITaxon%3A1306787","Isoalcanivorax pacificus"],["NCBITaxon%3A391936","Isoalcanivorax pacificus W11-5"]]},{"id":"NCBITaxon:1311812","l":"Nocardia argentinensis","na":1,"nb":2,"a":[["polyketides/nargenicin-a1.yaml","nargenicin A1"]],"b":[["NCBITaxon%3A1311812","Nocardia argentinensis"],["NCBITaxon%3A1311813","Nocardia argentinensis ATCC 31306"]]},{"id":"NCBITaxon:1311815","l":"Nocardia interforma ATCC 21072","na":2,"nb":1,"a":[["alkaloids/formycin-a.yaml","formycin A"],["carbohydrates/coformycin.yaml","coformycin"]],"b":[["NCBITaxon%3A1311815","Nocardia interforma ATCC 21072"]]},{"id":"NCBITaxon:1312234","l":"Streptomyces prunicolor NBRC 13075","na":1,"nb":2,"a":[["amino_acids_and_peptides/prunipeptin.yaml","prunipeptin"]],"b":[["NCBITaxon%3A67348","Streptomyces prunicolor"],["NCBITaxon%3A1312234","Streptomyces prunicolor NBRC 13075"]]},{"id":"NCBITaxon:1315281","l":"Pseudoalteromonas phenolica O-BC30","na":1,"nb":2,"a":[["shikimates_and_phenylpropanoids/pentabromopseudilin.yaml","pentabromopseudilin"]],"b":[["NCBITaxon%3A161398","Pseudoalteromonas phenolica"],["NCBITaxon%3A1315281","Pseudoalteromonas phenolica O-BC30"]]},{"id":"NCBITaxon:1319510","l":"Streptomyces fradiae ATCC 10745 = DSM 40063","na":1,"nb":2,"a":[["carbohydrates/neomycin-c.yaml","neomycin C"]],"b":[["NCBITaxon%3A1906","Streptomyces fradiae"],["NCBITaxon%3A1319510","Streptomyces fradiae ATCC 10745 = DSM 40063"]]},{"id":"NCBITaxon:132248","l":"Streptomyces hygroscopicus subsp. ascomyceticus","na":1,"nb":2,"a":[["polyketides/fr-900520.yaml","FR-900520"]],"b":[["NCBITaxon%3A476551","Streptomyces ascomycinicus"],["NCBITaxon%3A132248","Streptomyces hygroscopicus subsp. ascomyceticus"]]},{"id":"NCBITaxon:1337893","l":"Streptomyces bernensis","na":2,"nb":1,"a":[["amino_acids_and_peptides/berninamycin-a.yaml","berninamycin A"],["amino_acids_and_peptides/berninamycin-b.yaml","berninamycin B"]],"b":[["NCBITaxon%3A1337893","Streptomyces bernensis"]]},{"id":"NCBITaxon:1343740","l":"Streptomyces rapamycinicus NRRL 5491","na":1,"nb":2,"a":[["polyketides/sirolimus.yaml","sirolimus"]],"b":[["NCBITaxon%3A1226757","Streptomyces rapamycinicus"],["NCBITaxon%3A1343740","Streptomyces rapamycinicus NRRL 5491"]]},{"id":"NCBITaxon:134536","l":"Paraburkholderia caledonica","na":1,"nb":2,"a":[["amino_acids_and_peptides/gramibactin-b.yaml","gramibactin B"]],"b":[["NCBITaxon%3A134536","Paraburkholderia caledonica"],["NCBITaxon%3A1218115","Paraburkholderia caledonica NBRC 102488"]]},{"id":"NCBITaxon:136993","l":"Methylosinus sp. LW4","na":1,"nb":2,"a":[["amino_acids_and_peptides/group-1-methanobactin.yaml","group 1 methanobactin"]],"b":[["NCBITaxon%3A427","Methylosinus sp."],["NCBITaxon%3A136993","Methylosinus sp. LW4"]]},{"id":"NCBITaxon:138282","l":"Aspergillus sclerotiorum","na":2,"nb":1,"a":[["carbohydrates/streptomycin.yaml","streptomycin"],["polyketides/doxorubicin.yaml","doxorubicin"]],"b":[["NCBITaxon%3A138282","Aspergillus sclerotiorum"]]},{"id":"NCBITaxon:138284","l":"Aspergillus sulphureus","na":2,"nb":1,"a":[["polyketides/decumbenone-c.yaml","decumbenone c"],["unclassified/penitrem-b.yaml","penitrem B"]],"b":[["NCBITaxon%3A138284","Aspergillus sulphureus"]]},{"id":"NCBITaxon:1399144","l":"Brevibacillus laterosporus PE36","na":2,"nb":1,"a":[["shikimates_and_phenylpropanoids/basiliskamide-a.yaml","Basiliskamide A"],["unclassified/basiliskamide-b.yaml","Basiliskamide B"]],"b":[["NCBITaxon%3A1399144","Brevibacillus laterosporus PE36"]]},{"id":"NCBITaxon:1406225","l":"Archangium violaceum Cb vi76","na":1,"nb":2,"a":[["polyketides/gephyronic-acid.yaml","gephyronic acid"]],"b":[["NCBITaxon%3A83451","Archangium violaceum"],["NCBITaxon%3A1406225","Archangium violaceum Cb vi76"]]},{"id":"NCBITaxon:1415555","l":"Streptomyces sp. WM6372","na":2,"nb":1,"a":[["amino_acids_and_peptides/fosfazinomycin-a.yaml","fosfazinomycin A"],["amino_acids_and_peptides/fosfazinomycin-b.yaml","fosfazinomycin B"]],"b":[["NCBITaxon%3A1415555","Streptomyces sp. WM6372"]]},{"id":"NCBITaxon:1449346","l":"Kitasatospora azatica KCTC 9699","na":1,"nb":2,"a":[["amino_acids_and_peptides/alazopeptin.yaml","alazopeptin"]],"b":[["NCBITaxon%3A58347","Kitasatospora azatica"],["NCBITaxon%3A1449346","Kitasatospora azatica KCTC 9699"]]},{"id":"NCBITaxon:1450533","l":"Aspergillus niger CBS 101883","na":2,"nb":1,"a":[["polyketides/campyrone-b.yaml","campyrone B"],["polyketides/pyrophen.yaml","pyrophen"]],"b":[["NCBITaxon%3A1450533","Aspergillus niger CBS 101883"]]},{"id":"NCBITaxon:145522","l":"Nannochloropsis oceanica","na":1,"nb":2,"a":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]],"b":[["NCBITaxon%3A145522","Nannochloropsis oceanica"],["NCBITaxon%3A1333499","Nannochloropsis oceanica strain IMET1"]]},{"id":"NCBITaxon:1460371","l":"Amycolatopsis lurida NRRL 2430","na":1,"nb":2,"a":[["amino_acids_and_peptides/ristocetin-a.yaml","Ristocetin A"]],"b":[["NCBITaxon%3A31959","Amycolatopsis lurida"],["NCBITaxon%3A1460371","Amycolatopsis lurida NRRL 2430"]]},{"id":"NCBITaxon:1463884","l":"Streptomyces sp. NRRL S-146","na":2,"nb":1,"a":[["amino_acids_and_peptides/anantin-b1.yaml","anantin B1"],["amino_acids_and_peptides/anantin-b2.yaml","anantin B2"]],"b":[["NCBITaxon%3A1463884","Streptomyces sp. NRRL S-146"]]},{"id":"NCBITaxon:146536","l":"Streptomyces curacoi","na":2,"nb":1,"a":[["amino_acids_and_peptides/curacomycin.yaml","curacomycin"],["carbohydrates/curamycin.yaml","curamycin"]],"b":[["NCBITaxon%3A146536","Streptomyces curacoi"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":1,"nb":2,"a":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]],"b":[["NCBITaxon%3A1474","Sporosarcina pasteurii"],["NCBITaxon%3A1415631","Sporosarcina pasteurii NCIM 2477"]]},{"id":"NCBITaxon:148305","l":"Pyricularia grisea","na":2,"nb":1,"a":[["alkaloids/pyrichalasin-h.yaml","pyrichalasin H"],["polyketides/terrestric-acid.yaml","terrestric acid"]],"b":[["NCBITaxon%3A148305","Pyricularia grisea"]]},{"id":"NCBITaxon:1488414","l":"Streptomyces sp. MBT84","na":2,"nb":1,"a":[["polyketides/galtamycin-c.yaml","galtamycin C"],["polyketides/galtamycin-d.yaml","galtamycin D"]],"b":[["NCBITaxon%3A1488414","Streptomyces sp. MBT84"]]},{"id":"NCBITaxon:1490225","l":"","na":1,"nb":2,"a":[["carbohydrates/kanamycin-a.yaml","kanamycin A"]],"b":[["NCBITaxon%3A768479","Cohnella boryungensis"],["NCBITaxon%3A686309","Micromonospora haikouensis"]]},{"id":"NCBITaxon:1494466","l":"Burkholderia sp. FERM BP-3421","na":2,"nb":1,"a":[["fatty_acids/fr901464.yaml","FR901464"],["unclassified/spliceostatin.yaml","spliceostatin"]],"b":[["NCBITaxon%3A1494466","Burkholderia sp. FERM BP-3421"]]},{"id":"NCBITaxon:1495638","l":"Streptomyces sp. M56","na":2,"nb":1,"a":[["polyketides/efomycin-k.yaml","efomycin K"],["polyketides/efomycin-l.yaml","efomycin L"]],"b":[["NCBITaxon%3A1495638","Streptomyces sp. M56"]]},{"id":"NCBITaxon:1497395","l":"Anabaena sp. Syke748","na":2,"nb":1,"a":[["unclassified/hassallidin-c.yaml","hassallidin C"],["unclassified/hassallidin-d.yaml","hassallidin D"]],"b":[["NCBITaxon%3A1497395","Anabaena sp. Syke748"]]},{"id":"NCBITaxon:1519471","l":"Streptomyces sp. NRRL S-4","na":2,"nb":1,"a":[["amino_acids_and_peptides/thiostreptamide-s4.yaml","thiostreptamide S4"],["polyketides/venturicidin-a.yaml","venturicidin A"]],"b":[["NCBITaxon%3A1519471","Streptomyces sp. NRRL S-4"]]},{"id":"NCBITaxon:1550035","l":"Streptomyces sp. NBRC 109706","na":2,"nb":1,"a":[["polyketides/akaeolide.yaml","akaeolide"],["polyketides/lorneic-acid-a.yaml","lorneic acid A"]],"b":[["NCBITaxon%3A1550035","Streptomyces sp. NBRC 109706"]]},{"id":"NCBITaxon:1581323","l":"Streptomyces sp. FXJ8.102","na":2,"nb":1,"a":[["polyketides/homopiloquinone.yaml","homopiloquinone"],["unclassified/piloquinone.yaml","piloquinone"]],"b":[["NCBITaxon%3A1581323","Streptomyces sp. FXJ8.102"]]},{"id":"NCBITaxon:1582798","l":"Streptomyces sp. WAC2288","na":2,"nb":1,"a":[["carbohydrates/vancosamine.yaml","vancosamine"],["polyketides/ibomycin.yaml","ibomycin"]],"b":[["NCBITaxon%3A1582798","Streptomyces sp. WAC2288"]]},{"id":"NCBITaxon:159449","l":"Embleya scabrispora","na":1,"nb":2,"a":[["unclassified/hitachimycin.yaml","hitachimycin"]],"b":[["NCBITaxon%3A159449","Embleya scabrispora"],["NCBITaxon%3A1123320","Embleya scabrispora DSM 41855"]]},{"id":"NCBITaxon:1597781","l":"Eleftheria terrae","na":2,"nb":1,"a":[["unclassified/clovibactin.yaml","clovibactin"],["unclassified/teixobactin.yaml","teixobactin"]],"b":[["NCBITaxon%3A1597781","Eleftheria terrae"]]},{"id":"NCBITaxon:161398","l":"Pseudoalteromonas phenolica","na":1,"nb":2,"a":[["shikimates_and_phenylpropanoids/bromophene.yaml","bromophene"]],"b":[["NCBITaxon%3A161398","Pseudoalteromonas phenolica"],["NCBITaxon%3A1315281","Pseudoalteromonas phenolica O-BC30"]]},{"id":"NCBITaxon:1630013","l":"uncultured bacterium AR_412","na":2,"nb":1,"a":[["amino_acids_and_peptides/landepoxcin-a.yaml","landepoxcin A"],["amino_acids_and_peptides/landepoxcin-b.yaml","landepoxcin B"]],"b":[["NCBITaxon%3A1630013","uncultured bacterium AR_412"]]},{"id":"NCBITaxon:1652106","l":"Candidatus Entotheonella serta","na":2,"nb":1,"a":[["amino_acids_and_peptides/theonellamide.yaml","theonellamide"],["polyketides/misakinolide-a.yaml","misakinolide A"]],"b":[["NCBITaxon%3A1652106","Candidatus Entotheonella serta"]]},{"id":"NCBITaxon:1653203","l":"Streptomyces conglobatus","na":2,"nb":1,"a":[["polyketides/conglobatin.yaml","conglobatin"],["unclassified/neoantimycin.yaml","neoantimycin"]],"b":[["NCBITaxon%3A1653203","Streptomyces conglobatus"]]},{"id":"NCBITaxon:1676287","l":"Streptomyces sp. LC-6-2","na":2,"nb":1,"a":[["polyketides/abyssomicin-w.yaml","abyssomicin W"],["polyketides/abyssomicin-x.yaml","abyssomicin X"]],"b":[["NCBITaxon%3A1676287","Streptomyces sp. LC-6-2"]]},{"id":"NCBITaxon:1676613","l":"Actinomadura sp. ATCC 39365","na":2,"nb":1,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["carbohydrates/2-chloropentostatin.yaml","2'-chloropentostatin"]],"b":[["NCBITaxon%3A1676613","Actinomadura sp. ATCC 39365"]]},{"id":"NCBITaxon:1679164","l":"Cystobacter sp. Cbv34","na":2,"nb":1,"a":[["unclassified/cystobactamid-919-1.yaml","cystobactamid 919-1"],["unclassified/cystobactamid-919-2.yaml","cystobactamid 919-2"]],"b":[["NCBITaxon%3A1679164","Cystobacter sp. Cbv34"]]},{"id":"NCBITaxon:1703928","l":"Streptomyces sp. CB00072","na":2,"nb":1,"a":[["polyketides/thioangucycline-a.yaml","thioangucycline A"],["polyketides/thioangucycline-b.yaml","thioangucycline B"]],"b":[["NCBITaxon%3A1703928","Streptomyces sp. CB00072"]]},{"id":"NCBITaxon:1703935","l":"Streptomyces sp. CB02366","na":2,"nb":1,"a":[["polyketides/c-1027-2.yaml","C-1027"],["polyketides/c-1027-chromophore.yaml","C-1027 chromophore"]],"b":[["NCBITaxon%3A1703935","Streptomyces sp. CB02366"]]},{"id":"NCBITaxon:1707701","l":"Phoma sp.","na":2,"nb":1,"a":[["unclassified/bii-rafflesfungin.yaml","BII-rafflesfungin"],["unclassified/eupenifeldin.yaml","eupenifeldin"]],"b":[["NCBITaxon%3A1707701","Phoma sp."]]},{"id":"NCBITaxon:173560","l":"Saccharothrix algeriensis","na":2,"nb":1,"a":[["alkaloids/holomycin.yaml","holomycin"],["alkaloids/thiolutin.yaml","thiolutin"]],"b":[["NCBITaxon%3A173560","Saccharothrix algeriensis"]]},{"id":"NCBITaxon:177969","l":"Oscillatoria brevis","na":1,"nb":2,"a":[["terpenoids/geosmin.yaml","(−)-geosmin"]],"b":[["NCBITaxon%3A177969","Oscillatoria brevis"],["NCBITaxon%3A2832502","Oscillatoria brevis SH-12"]]},{"id":"NCBITaxon:1799151","l":"Streptomyces sp. RI-77","na":2,"nb":1,"a":[["polyketides/jbir-76.yaml","JBIR-76"],["polyketides/jbir-77.yaml","JBIR-77"]],"b":[["NCBITaxon%3A1799151","Streptomyces sp. RI-77"]]},{"id":"NCBITaxon:182096","l":"Aspergillus chevalieri","na":2,"nb":1,"a":[["polyketides/flavoglaucin.yaml","flavoglaucin"],["polyketides/sterigmatocystin.yaml","sterigmatocystin"]],"b":[["NCBITaxon%3A182096","Aspergillus chevalieri"]]},{"id":"NCBITaxon:1840610","l":"Streptomyces sp. FJS31-2","na":2,"nb":1,"a":[["polyketides/be-24566b.yaml","BE-24566B"],["polyketides/zunyimycin-a.yaml","zunyimycin A"]],"b":[["NCBITaxon%3A1840610","Streptomyces sp. FJS31-2"]]},{"id":"NCBITaxon:1866","l":"Actinoplanes missouriensis","na":1,"nb":2,"a":[["polyketides/fogacin-2.yaml","fogacin"]],"b":[["NCBITaxon%3A1866","Actinoplanes missouriensis"],["NCBITaxon%3A512565","Actinoplanes missouriensis 431"]]},{"id":"NCBITaxon:1885894","l":"Xanthomonas cannabis pv. cannabis","na":2,"nb":1,"a":[["fatty_acids/spliceostatin-l.yaml","spliceostatin L"],["polyketides/spliceostatin-m.yaml","spliceostatin M"]],"b":[["NCBITaxon%3A1885894","Xanthomonas cannabis pv. cannabis"]]},{"id":"NCBITaxon:1898","l":"","na":1,"nb":2,"a":[["unclassified/cacaoidin.yaml","cacaoidin"]],"b":[["NCBITaxon%3A249586","Streptomyces asoensis"],["NCBITaxon%3A1898","Streptomyces cacaoi"]]},{"id":"NCBITaxon:1900","l":"","na":2,"nb":1,"a":[["alkaloids/endophenazine-a.yaml","endophenazine A"],["polyketides/monensin.yaml","monensin"]],"b":[["NCBITaxon%3A1961","Streptomyces virginiae"]]},{"id":"NCBITaxon:1903","l":"Streptomyces corchorusii","na":2,"nb":1,"a":[["polyketides/resistoflavine.yaml","resistoflavine"],["polyketides/resistomycin.yaml","resistomycin"]],"b":[["NCBITaxon%3A1903","Streptomyces corchorusii"]]},{"id":"NCBITaxon:1904044","l":"Streptomyces sp. ZS0098","na":2,"nb":1,"a":[["amino_acids_and_peptides/aborycin-2.yaml","aborycin"],["amino_acids_and_peptides/aborycin.yaml","aborycin"]],"b":[["NCBITaxon%3A1904044","Streptomyces sp. ZS0098"]]},{"id":"NCBITaxon:1912612","l":"Streptomyces sp. KIB-H033","na":2,"nb":1,"a":[["polyketides/rubrolone-a.yaml","rubrolone A"],["polyketides/rubrolone-b.yaml","rubrolone B"]],"b":[["NCBITaxon%3A1912612","Streptomyces sp. KIB-H033"]]},{"id":"NCBITaxon:1921","l":"Streptomyces olivaceoviridis","na":2,"nb":1,"a":[["polyketides/resistoflavine.yaml","resistoflavine"],["polyketides/resistomycin.yaml","resistomycin"]],"b":[["NCBITaxon%3A1921","Streptomyces olivaceoviridis"]]},{"id":"NCBITaxon:1929948","l":"Nostoc sp. UIC 10110","na":2,"nb":1,"a":[["polyketides/merocyclophane-c.yaml","merocyclophane C"],["polyketides/merocyclophane-d.yaml","merocyclophane D"]],"b":[["NCBITaxon%3A1929948","Nostoc sp. UIC 10110"]]},{"id":"NCBITaxon:1934374","l":"Collariella virescens","na":2,"nb":1,"a":[["polyketides/sterigmatocystin.yaml","sterigmatocystin"],["unclassified/chaetocin.yaml","chaetocin"]],"b":[["NCBITaxon%3A1934374","Achaetomiella virescens"]]},{"id":"NCBITaxon:1937528","l":"[Flexibacter] sp. ATCC 35103","na":1,"nb":2,"a":[["amino_acids_and_peptides/aztreonam.yaml","aztreonam"]],"b":[["NCBITaxon%3A1005","Flexibacter sp."],["NCBITaxon%3A1937528","[Flexibacter] sp. ATCC 35103"]]},{"id":"NCBITaxon:1946","l":"Streptomyces kasugaensis","na":2,"nb":1,"a":[["alkaloids/thiolutin.yaml","thiolutin"],["carbohydrates/kasugamycin.yaml","kasugamycin"]],"b":[["NCBITaxon%3A1946","Streptomyces kasugaensis"]]},{"id":"NCBITaxon:1948","l":"Streptomyces longisporus","na":1,"nb":2,"a":[["alkaloids/undecylprodigiosin-2.yaml","undecylprodigiosin"]],"b":[["NCBITaxon%3A1948","Streptomyces longisporus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:1962669","l":"Kibdelosporangium sp. AK-AA56","na":2,"nb":1,"a":[["amino_acids_and_peptides/jbir-78.yaml","JBIR-78"],["amino_acids_and_peptides/jbir-95.yaml","JBIR-95"]],"b":[["NCBITaxon%3A1962669","Kibdelosporangium sp. AK-AA56"]]},{"id":"NCBITaxon:1962685","l":"Hormoscilla spongeliae SP4","na":2,"nb":1,"a":[["shikimates_and_phenylpropanoids/2-4-dibromo-6-2-4-dibromophenoxy-phenol.yaml","2,4-dibromo-6-(2,4-dibromophenoxy)phenol"],["shikimates_and_phenylpropanoids/3-5-dibromo-2-2-4-dibromophenoxy-phenol.yaml","3,5-dibromo-2-(2,4-dibromophenoxy)phenol"]],"b":[["NCBITaxon%3A1962685","Hormoscilla spongeliae SP4"]]},{"id":"NCBITaxon:1968","l":"Streptomyces cellulosae","na":2,"nb":1,"a":[["polyketides/14-hydroxyisochainin.yaml","14-hydroxyisochainin"],["polyketides/pentamycin-2.yaml","pentamycin"]],"b":[["NCBITaxon%3A1968","Streptomyces cellulosae"]]},{"id":"NCBITaxon:1970","l":"Streptomyces morookaense","na":1,"nb":2,"a":[["carbohydrates/blasticidin-s.yaml","blasticidin S"]],"b":[["NCBITaxon%3A68176","Streptomyces aspergilloides"],["NCBITaxon%3A1970","Streptomyces morookaense"]]},{"id":"NCBITaxon:1977088","l":"Streptomyces ficellus","na":1,"nb":2,"a":[["amino_acids_and_peptides/ficellomycin.yaml","Ficellomycin"]],"b":[["NCBITaxon%3A1977088","Streptomyces ficellus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:1982764","l":"Streptomyces sp. CS057","na":2,"nb":1,"a":[["polyketides/warkmycin-cs1.yaml","warkmycin CS1"],["polyketides/warkmycin-cs2.yaml","warkmycin CS2"]],"b":[["NCBITaxon%3A1982764","Streptomyces sp. CS057"]]},{"id":"NCBITaxon:1984801","l":"Streptomyces sp. CLI2509","na":2,"nb":1,"a":[["amino_acids_and_peptides/tryptorubin-a.yaml","Tryptorubin A"],["amino_acids_and_peptides/tryptorubin-b.yaml","Tryptorubin B"]],"b":[["NCBITaxon%3A1984801","Streptomyces sp. CLI2509"]]},{"id":"NCBITaxon:198730","l":"Talaromyces verruculosus","na":2,"nb":1,"a":[["polyketides/verrucosidin.yaml","verrucosidin"],["unclassified/chrodrimanin-b.yaml","chrodrimanin B"]],"b":[["NCBITaxon%3A198730","Talaromyces verruculosus"]]},{"id":"NCBITaxon:1990","l":"Actinomadura atramentaria","na":1,"nb":2,"a":[["amino_acids_and_peptides/matlystatin-a.yaml","matlystatin A"]],"b":[["NCBITaxon%3A1990","Actinomadura atramentaria"],["NCBITaxon%3A1120936","Actinomadura atramentaria DSM 43919"]]},{"id":"NCBITaxon:199310","l":"Escherichia coli O6:H1 (strain CFT073 / ATCC 700928 / UPEC)","na":1,"nb":2,"a":[["unclassified/ape-ec.yaml","APE Ec"]],"b":[["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A199310","Escherichia coli CFT073"]]},{"id":"NCBITaxon:2008351","l":"Micromonospora chalcea subsp. izumensis","na":1,"nb":2,"a":[["polyketides/tylactone.yaml","tylactone"]],"b":[["NCBITaxon%3A2008351","Micromonospora chalcea subsp. izumensis"],["NCBITaxon%3A1876","Micromonospora sp."]]},{"id":"NCBITaxon:2012863","l":"Pyxidicoccus sp. MCy9557","na":2,"nb":1,"a":[["polyketides/pyxipyrrolone-a.yaml","pyxipyrrolone A"],["polyketides/pyxipyrrolone-b.yaml","pyxipyrrolone B"]],"b":[["NCBITaxon%3A2012863","Pyxidicoccus sp. MCy9557"]]},{"id":"NCBITaxon:2028102","l":"","na":2,"nb":1,"a":[["amino_acids_and_peptides/biarylitide-yfh.yaml","biarylitide YFH"],["amino_acids_and_peptides/biarylitide-yyh.yaml","biarylitide YYH"]],"b":[["NCBITaxon%3A2028102","Planomonospora sp."]]},{"id":"NCBITaxon:203275","l":"Tannerella forsythia 92A2","na":1,"nb":2,"a":[["carbohydrates/legionaminic-acid.yaml","legionaminic acid"]],"b":[["NCBITaxon%3A28112","Tannerella forsythia"],["NCBITaxon%3A203275","Tannerella forsythia 92A2"]]},{"id":"NCBITaxon:2041","l":"Aeromicrobium erythreum","na":1,"nb":2,"a":[["polyketides/erythromycin-a.yaml","erythromycin A"]],"b":[["NCBITaxon%3A2041","Aeromicrobium erythreum"],["NCBITaxon%3A31956","Aeromicrobium erythreum (NRRL B-3381)"]]},{"id":"NCBITaxon:204925","l":"Streptomyces nanchangensis","na":2,"nb":1,"a":[["polyketides/meilingmycin.yaml","meilingmycin"],["polyketides/nanchangmycin.yaml","nanchangmycin"]],"b":[["NCBITaxon%3A204925","Streptomyces nanchangensis"]]},{"id":"NCBITaxon:205918","l":"Pseudomonas syringae pv. syringae B728a","na":2,"nb":1,"a":[["alkaloids/secimide.yaml","secimide"],["unclassified/syringomycin.yaml","syringomycin"]],"b":[["NCBITaxon%3A205918","Pseudomonas syringae pv. syringae B728a"]]},{"id":"NCBITaxon:208441","l":"Amycolatopsis decaplanina","na":1,"nb":2,"a":[["amino_acids_and_peptides/decaplanin.yaml","decaplanin"]],"b":[["NCBITaxon%3A208441","Amycolatopsis decaplanina"],["NCBITaxon%3A1284240","Amycolatopsis decaplanina DSM 44594"]]},{"id":"NCBITaxon:208442","l":"Amycolatopsis keratiniphila subsp. nogabecina","na":1,"nb":2,"a":[["amino_acids_and_peptides/actinoidin-b.yaml","Actinoidin B"]],"b":[["NCBITaxon%3A129921","Amycolatopsis keratiniphila"],["NCBITaxon%3A208442","Amycolatopsis keratiniphila subsp. nogabecina"]]},{"id":"NCBITaxon:210993","l":"Fischerella major","na":1,"nb":2,"a":[["unclassified/n-methylwelwitindolinone-c-isothiocyanate.yaml","N-methylwelwitindolinone C isothiocyanate"]],"b":[["NCBITaxon%3A210993","Fischerella major"],["NCBITaxon%3A210994","Fischerella major NIES-592"]]},{"id":"NCBITaxon:212423","l":"Streptomyces kaniharaensis","na":2,"nb":1,"a":[["alkaloids/formycin-a.yaml","formycin A"],["carbohydrates/coformycin.yaml","coformycin"]],"b":[["NCBITaxon%3A212423","Streptomyces kaniharaensis"]]},{"id":"NCBITaxon:212427","l":"Streptomyces citricolor","na":2,"nb":1,"a":[["carbohydrates/aristeromycin.yaml","aristeromycin"],["carbohydrates/gougerotin.yaml","gougerotin"]],"b":[["NCBITaxon%3A212427","Streptomyces citricolor"]]},{"id":"NCBITaxon:213624","l":"Planktothrix agardhii NIVA-CYA 126","na":2,"nb":1,"a":[["amino_acids_and_peptides/aeruginoside-126a.yaml","aeruginoside 126A"],["amino_acids_and_peptides/aeruginoside-126b.yaml","aeruginoside 126B"]],"b":[["NCBITaxon%3A213624","Planktothrix agardhii NIVA-CYA 126"]]},{"id":"NCBITaxon:2201999","l":"Micromonospora sp. B006","na":2,"nb":1,"a":[["alkaloids/diazaquinomycin-h.yaml","diazaquinomycin H"],["alkaloids/diazaquinomycin-j.yaml","diazaquinomycin J"]],"b":[["NCBITaxon%3A2201999","Micromonospora sp. B006"]]},{"id":"NCBITaxon:223296","l":"Streptomyces refuineus","na":1,"nb":2,"a":[["alkaloids/anthramycin.yaml","anthramycin"]],"b":[["NCBITaxon%3A223296","Streptomyces refuineus"],["NCBITaxon%3A223297","Streptomyces refuineus subsp. thermotolerans"]]},{"id":"NCBITaxon:223297","l":"Streptomyces refuineus subsp. thermotolerans","na":1,"nb":2,"a":[["alkaloids/anthramycin.yaml","anthramycin"]],"b":[["NCBITaxon%3A223296","Streptomyces refuineus"],["NCBITaxon%3A223297","Streptomyces refuineus subsp. thermotolerans"]]},{"id":"NCBITaxon:226900","l":"","na":1,"nb":2,"a":[["amino_acids_and_peptides/thiocillin-i.yaml","thiocillin I"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A226900","Bacillus cereus ATCC 14579"]]},{"id":"NCBITaxon:230091","l":"Micromonospora endolithica","na":2,"nb":1,"a":[["polyketides/loseolamycin-a1.yaml","loseolamycin A1"],["polyketides/loseolamycin-a2.yaml","loseolamycin A2"]],"b":[["NCBITaxon%3A230091","Micromonospora endolithica"]]},{"id":"NCBITaxon:2303153","l":"Anabaena minutissima UTEX B 1613","na":2,"nb":1,"a":[["amino_acids_and_peptides/minutissamide-a.yaml","minutissamide A"],["amino_acids_and_peptides/minutissamide-b.yaml","minutissamide B"]],"b":[["NCBITaxon%3A2303153","Anabaena minutissima UTEX B 1613"]]},{"id":"NCBITaxon:234621","l":"Rhodococcus erythropolis PR4","na":2,"nb":1,"a":[["amino_acids_and_peptides/heterobactin-a.yaml","heterobactin A"],["amino_acids_and_peptides/heterobactin-s2.yaml","heterobactin S2"]],"b":[["NCBITaxon%3A234621","Rhodococcus erythropolis PR4"]]},{"id":"NCBITaxon:243277","l":"Vibrio cholerae serotype O1 (strain ATCC 39315 / El Tor Inaba N16961)","na":1,"nb":2,"a":[["alkaloids/vibriobactin-2.yaml","vibriobactin"]],"b":[["NCBITaxon%3A666","Vibrio cholerae"],["NCBITaxon%3A243277","Vibrio cholerae O1 biovar El Tor str. N16961"]]},{"id":"NCBITaxon:247156","l":"Nocardia farcinica IFM 10152","na":2,"nb":1,"a":[["amino_acids_and_peptides/nocobactin-na.yaml","nocobactin NA"],["unclassified/nocobactin-na-10152b.yaml","nocobactin NA 10152B"]],"b":[["NCBITaxon%3A247156","Nocardia farcinica IFM 10152"]]},{"id":"NCBITaxon:249586","l":"","na":2,"nb":1,"a":[["carbohydrates/polyoxin-a.yaml","polyoxin A"],["carbohydrates/polyoxin-h.yaml","polyoxin H"]],"b":[["NCBITaxon%3A249586","Streptomyces asoensis"]]},{"id":"NCBITaxon:257985","l":"Bacillus thuringiensis serovar andalousiensis","na":1,"nb":2,"a":[["unclassified/andalusicin-a.yaml","andalusicin A"]],"b":[["NCBITaxon%3A257985","Bacillus thuringiensis serovar andalousiensis"],["NCBITaxon%3A527032","Bacillus thuringiensis serovar andalousiensis BGSC 4AW1"]]},{"id":"NCBITaxon:2582783","l":"Aspergillus nanangensis","na":2,"nb":1,"a":[["alkaloids/nanangelenin-b.yaml","nanangelenin B"],["terpenoids/nanangelenin-a.yaml","nanangelenin A"]],"b":[["NCBITaxon%3A2582783","Aspergillus nanangensis"]]},{"id":"NCBITaxon:2586640","l":"Streptomyces novoguineensis","na":2,"nb":1,"a":[["unclassified/amipurimycin-2.yaml","amipurimycin"],["unclassified/amipurimycin.yaml","amipurimycin"]],"b":[["NCBITaxon%3A2586640","Streptomyces novoguineensis"]]},{"id":"NCBITaxon:262324","l":"Lysobacter gummosus","na":1,"nb":2,"a":[["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"]],"b":[["NCBITaxon%3A262324","Lysobacter gummosus"],["NCBITaxon%3A1138170","Rhizobium aethiopicum"]]},{"id":"NCBITaxon:264024","l":"Streptomyces sp. SCC 2136","na":2,"nb":1,"a":[["polyketides/sch-47554.yaml","Sch-47554"],["polyketides/sch-47555.yaml","Sch-47555"]],"b":[["NCBITaxon%3A264024","Streptomyces sp. SCC 2136"]]},{"id":"NCBITaxon:2653857","l":"Amycolatopsis sp. YIM 10","na":2,"nb":1,"a":[["amino_acids_and_peptides/felipeptin-a1.yaml","felipeptin A1"],["amino_acids_and_peptides/felipeptin-a2.yaml","felipeptin A2"]],"b":[["NCBITaxon%3A2653857","Amycolatopsis sp. YIM 10"]]},{"id":"NCBITaxon:265726","l":"Photobacterium halotolerans","na":1,"nb":2,"a":[["alkaloids/holomycin.yaml","holomycin"]],"b":[["NCBITaxon%3A265726","Photobacterium halotolerans"],["NCBITaxon%3A1122959","Photobacterium halotolerans DSM 18316"]]},{"id":"NCBITaxon:2662259","l":"Pseudomonas sp. SZ57","na":2,"nb":1,"a":[["amino_acids_and_peptides/syringafactin-a.yaml","syringafactin A"],["amino_acids_and_peptides/syringafactin-c.yaml","syringafactin C"]],"b":[["NCBITaxon%3A2662259","Pseudomonas sp. SZ57"]]},{"id":"NCBITaxon:2665154","l":"Nostoc sp. UHCC-0398","na":2,"nb":1,"a":[["amino_acids_and_peptides/muscoride-a.yaml","muscoride A"],["unclassified/muscoride-b.yaml","muscoride B"]],"b":[["NCBITaxon%3A2665154","Nostoc sp. UHCC-0398"]]},{"id":"NCBITaxon:267747","l":"Cutibacterium acnes KPA171202","na":1,"nb":2,"a":[["amino_acids_and_peptides/cutimycin.yaml","cutimycin"]],"b":[["NCBITaxon%3A1747","Cutibacterium acnes"],["NCBITaxon%3A267747","Cutibacterium acnes KPA171202"]]},{"id":"NCBITaxon:2719566","l":"Streptomyces hygrospinosus subsp. beijingensis","na":2,"nb":1,"a":[["alkaloids/anisomycin.yaml","(−)-anisomycin"],["polyketides/tetramycin-b.yaml","tetramycin B"]],"b":[["NCBITaxon%3A2719566","Streptomyces hygrospinosus subsp. beijingensis"]]},{"id":"NCBITaxon:272559","l":"","na":1,"nb":2,"a":[["fatty_acids/galactosylceramide.yaml","α-galactosylceramide"]],"b":[["NCBITaxon%3A817","Bacteroides fragilis"],["NCBITaxon%3A272559","Bacteroides fragilis NCTC 9343"]]},{"id":"NCBITaxon:27337","l":"Verticillium dahliae","na":2,"nb":1,"a":[["polyketides/flaviolin.yaml","flaviolin"],["polyketides/scytalone.yaml","scytalone"]],"b":[["NCBITaxon%3A27337","Verticillium dahliae"]]},{"id":"NCBITaxon:2742134","l":"Streptomyces sp. NA03103","na":2,"nb":1,"a":[["unclassified/ashimide-a.yaml","ashimide A"],["unclassified/ashimide-b.yaml","ashimide B"]],"b":[["NCBITaxon%3A2742134","Streptomyces sp. NA03103"]]},{"id":"NCBITaxon:2747968","l":"Fusarium vanettenii","na":1,"nb":2,"a":[["polyketides/bikaverin.yaml","bikaverin"]],"b":[["NCBITaxon%3A2747968","Fusarium vanettenii"],["NCBITaxon%3A660122","Fusarium vanettenii 77-13-4"]]},{"id":"NCBITaxon:2802641","l":"Kutzneria sp. CA-103260","na":2,"nb":1,"a":[["polyketides/epemicin-a.yaml","epemicin A"],["polyketides/epemicin-b.yaml","epemicin B"]],"b":[["NCBITaxon%3A2802641","Kutzneria sp. CA-103260"]]},{"id":"NCBITaxon:282216","l":"Streptomyces lividus","na":2,"nb":1,"a":[["alkaloids/staurosporine-2.yaml","staurosporine"],["carbohydrates/lividomycin-a.yaml","lividomycin A"]],"b":[["NCBITaxon%3A282216","Streptomyces lividus"]]},{"id":"NCBITaxon:285219","l":"Streptomyces sp. KO-3988","na":2,"nb":1,"a":[["polyketides/furaquinocin-b.yaml","furaquinocin B"],["terpenoids/viguiepinol.yaml","viguiepinol"]],"b":[["NCBITaxon%3A285219","Streptomyces sp. KO-3988"]]},{"id":"NCBITaxon:285454","l":"Streptomyces anandii","na":1,"nb":2,"a":[["polyketides/gilvocarcin-v.yaml","gilvocarcin V"]],"b":[["NCBITaxon%3A285454","Streptomyces anandii"],["NCBITaxon%3A1306180","Streptomyces anandii JCM 4720"]]},{"id":"NCBITaxon:285508","l":"Streptomyces piomogenus","na":2,"nb":1,"a":[["alkaloids/fumigaclavine-c.yaml","fumigaclavine C"],["polyketides/piericidin-a.yaml","piericidin A"]],"b":[["NCBITaxon%3A285508","Streptomyces piomogenus"]]},{"id":"NCBITaxon:285515","l":"Streptomyces albospinus","na":1,"nb":2,"a":[["alkaloids/physostigmine.yaml","physostigmine"]],"b":[["NCBITaxon%3A285515","Streptomyces albospinus"],["NCBITaxon%3A68237","Streptomyces mediolani"]]},{"id":"NCBITaxon:285527","l":"Streptomyces hygroscopicus subsp. duamyceticus","na":1,"nb":2,"a":[["polyketides/geldanamycin.yaml","geldanamycin"]],"b":[["NCBITaxon%3A1912","Streptomyces hygroscopicus"],["NCBITaxon%3A285527","Streptomyces hygroscopicus subsp. duamyceticus"]]},{"id":"NCBITaxon:285551","l":"Streptomyces paulus","na":1,"nb":2,"a":[["carbohydrates/paulomycin.yaml","paulomycin"]],"b":[["NCBITaxon%3A285551","Streptomyces paulus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:285578","l":"Streptomyces angustmyceticus","na":2,"nb":1,"a":[["carbohydrates/angustmycin-a.yaml","angustmycin A"],["carbohydrates/angustmycin-c.yaml","angustmycin C"]],"b":[["NCBITaxon%3A285578","Streptomyces angustmyceticus"]]},{"id":"NCBITaxon:29001","l":"Alternaria brassicicola","na":2,"nb":1,"a":[["fatty_acids/depudecin.yaml","depudecin"],["terpenoids/brassicicene-c.yaml","brassicicene C"]],"b":[["NCBITaxon%3A29001","Alternaria brassicicola"]]},{"id":"NCBITaxon:290112","l":"Xenorhabdus szentirmaii","na":1,"nb":2,"a":[["alkaloids/pyrrolizixenamide-a.yaml","pyrrolizixenamide A"]],"b":[["NCBITaxon%3A290112","Xenorhabdus szentirmaii"],["NCBITaxon%3A1427518","Xenorhabdus szentirmaii DSM 16338"]]},{"id":"NCBITaxon:29305","l":"Streptomyces griseoincarnatus","na":2,"nb":1,"a":[["polyketides/grincamycin.yaml","grincamycin"],["polyketides/resistomycin.yaml","resistomycin"]],"b":[["NCBITaxon%3A29305","Streptomyces griseoincarnatus"]]},{"id":"NCBITaxon:293381","l":"Penicillium bialowiezense CBS 227.28","na":2,"nb":1,"a":[["terpenoids/brevione-e.yaml","brevione E"],["terpenoids/isobrevione-e.yaml","isobrevione E"]],"b":[["NCBITaxon%3A293381","Penicillium bialowiezense"]]},{"id":"NCBITaxon:29447","l":"Xanthomonas albilineans","na":1,"nb":2,"a":[["alkaloids/albicidin.yaml","albicidin"]],"b":[["NCBITaxon%3A29447","Xanthomonas albilineans"],["NCBITaxon%3A380358","Xanthomonas albilineans GPE PC73"]]},{"id":"NCBITaxon:29486","l":"Yersinia ruckeri","na":1,"nb":2,"a":[["alkaloids/holomycin.yaml","holomycin"]],"b":[["NCBITaxon%3A29486","Yersinia ruckeri"],["NCBITaxon%3A527005","Yersinia ruckeri ATCC 29473"]]},{"id":"NCBITaxon:29829","l":"Lipomyces starkeyi","na":1,"nb":2,"a":[["alkaloids/biotin.yaml","biotin"]],"b":[["NCBITaxon%3A29829","Lipomyces starkeyi"],["NCBITaxon%3A675824","Lipomyces starkeyi NRRL Y-11557"]]},{"id":"NCBITaxon:29852","l":"Hypomyces aurantius","na":2,"nb":1,"a":[["alkaloids/cj-15-696.yaml","CJ-15,696"],["alkaloids/cj-16-173.yaml","CJ-16,173"]],"b":[["NCBITaxon%3A29852","Hypomyces aurantius"]]},{"id":"NCBITaxon:29910","l":"Tolypocladium inflatum","na":2,"nb":1,"a":[["amino_acids_and_peptides/cyclosporin-a.yaml","cyclosporin A"],["terpenoids/aphidicolin.yaml","aphidicolin"]],"b":[["NCBITaxon%3A1086729","Tolypocladium inflatum NRRL8044"]]},{"id":"NCBITaxon:312720","l":"Streptomyces cheonanensis","na":2,"nb":1,"a":[["unclassified/ohmyungsamycin-a.yaml","ohmyungsamycin A"],["unclassified/ohmyungsamycin-b.yaml","ohmyungsamycin B"]],"b":[["NCBITaxon%3A312720","Streptomyces cheonanensis"]]},{"id":"NCBITaxon:3158555","l":"","na":1,"nb":2,"a":[["amino_acids_and_peptides/nostophycin.yaml","nostophycin"]],"b":[["NCBITaxon%3A3399526","Kaarinaea lacus"],["NCBITaxon%3A3158555","Kaarinaea lacus PCC 9237"]]},{"id":"NCBITaxon:337066","l":"Streptomyces albus subsp. chlorinus","na":2,"nb":1,"a":[["alkaloids/nybomycin.yaml","nybomycin"],["unclassified/dudomycin-a.yaml","dudomycin A"]],"b":[["NCBITaxon%3A337066","Streptomyces albus subsp. chlorinus"]]},{"id":"NCBITaxon:339670","l":"Burkholderia ambifaria AMMD","na":2,"nb":1,"a":[["alkaloids/cepaciachelin.yaml","cepaciachelin"],["polyketides/enacyloxin-iia.yaml","enacyloxin IIa"]],"b":[["NCBITaxon%3A339670","Burkholderia ambifaria AMMD"]]},{"id":"NCBITaxon:34058","l":"Methylobacter marinus","na":1,"nb":2,"a":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]],"b":[["NCBITaxon%3A34058","Methylobacter marinus"],["NCBITaxon%3A674036","Methylobacter marinus A45"]]},{"id":"NCBITaxon:34399","l":"Phomopsis","na":2,"nb":1,"a":[["polyketides/phomopsin-a.yaml","phomopsin A"],["polyketides/phomopsin-b.yaml","phomopsin B"]],"b":[["NCBITaxon%3A1715245","Phomopsis sp."]]},{"id":"NCBITaxon:347834","l":"Rhizobium etli (strain ATCC 51251 / DSM 11541 / JCM 21823 / NBRC 15573 / CFN 42)","na":1,"nb":2,"a":[["amino_acids_and_peptides/vicibactin.yaml","vicibactin"]],"b":[["NCBITaxon%3A29449","Rhizobium etli"],["NCBITaxon%3A347834","Rhizobium etli CFN 42"]]},{"id":"NCBITaxon:349521","l":"Hahella chejuensis KCTC 2396","na":1,"nb":2,"a":[["alkaloids/prodigiosin-2.yaml","prodigiosin"]],"b":[["NCBITaxon%3A158327","Hahella chejuensis"],["NCBITaxon%3A349521","Hahella chejuensis KCTC 2396"]]},{"id":"NCBITaxon:349966","l":"Yersinia frederiksenii ATCC 33641","na":1,"nb":2,"a":[["unclassified/frederiksenibactin.yaml","frederiksenibactin"]],"b":[["NCBITaxon%3A29484","Yersinia frederiksenii"],["NCBITaxon%3A349966","Yersinia frederiksenii ATCC 33641"]]},{"id":"NCBITaxon:357447","l":"Aspergillus westerdijkiae","na":2,"nb":1,"a":[["polyketides/asperlactone.yaml","asperlactone"],["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"]],"b":[["NCBITaxon%3A357447","Aspergillus westerdijkiae"]]},{"id":"NCBITaxon:35754","l":"Dactylosporangium aurantiacum","na":1,"nb":2,"a":[["polyketides/tiacumicin-b.yaml","tiacumicin B"]],"b":[["NCBITaxon%3A35754","Dactylosporangium aurantiacum"],["NCBITaxon%3A703577","Dactylosporangium aurantiacum subsp. hamdenensis"]]},{"id":"NCBITaxon:358823","l":"Streptomyces olindensis","na":2,"nb":1,"a":[["polyketides/carotenoid.yaml","carotenoid"],["polyketides/cosmomycin-d.yaml","cosmomycin D"]],"b":[["NCBITaxon%3A358823","Streptomyces olindensis"]]},{"id":"NCBITaxon:359131","l":"Streptomyces rubellomurinus","na":1,"nb":2,"a":[["unclassified/fr-900098.yaml","FR-900098"]],"b":[["NCBITaxon%3A359131","Streptomyces rubellomurinus"],["NCBITaxon%3A1615590","Streptomyces rubellomurinus subsp. indigoferus"]]},{"id":"NCBITaxon:360709","l":"Streptomyces qinlingensis","na":2,"nb":1,"a":[["carbohydrates/streptothricin-d.yaml","streptothricin D"],["carbohydrates/streptothricin-f.yaml","streptothricin F"]],"b":[["NCBITaxon%3A360709","Streptomyces qinlingensis"]]},{"id":"NCBITaxon:36645","l":"Penicillium miczynskii","na":2,"nb":1,"a":[["polyketides/citreoviridin.yaml","citreoviridin"],["unclassified/paxilline.yaml","paxilline"]],"b":[["NCBITaxon%3A36645","Penicillium miczynskii"]]},{"id":"NCBITaxon:36873","l":"Paraburkholderia xenovorans","na":1,"nb":2,"a":[["unclassified/malleobactin-x.yaml","malleobactin X"]],"b":[["NCBITaxon%3A36873","Paraburkholderia xenovorans"],["NCBITaxon%3A266265","Paraburkholderia xenovorans LB400"]]},{"id":"NCBITaxon:376686","l":"","na":1,"nb":2,"a":[["polyketides/flexirubin.yaml","flexirubin"]],"b":[["NCBITaxon%3A986","Flavobacterium johnsoniae"],["NCBITaxon%3A376686","Flavobacterium johnsoniae UW101"]]},{"id":"NCBITaxon:381666","l":"Cupriavidus necator H16","na":1,"nb":2,"a":[["amino_acids_and_peptides/cupriachelin.yaml","cupriachelin"]],"b":[["NCBITaxon%3A106590","Cupriavidus necator"],["NCBITaxon%3A381666","Cupriavidus necator H16"]]},{"id":"NCBITaxon:385492","l":"Pseudophaeobacter arcticus","na":1,"nb":2,"a":[["amino_acids_and_peptides/phaeornamide.yaml","phaeornamide"]],"b":[["NCBITaxon%3A385492","Pseudophaeobacter arcticus"],["NCBITaxon%3A999550","Pseudophaeobacter arcticus DSM 23566"]]},{"id":"NCBITaxon:391936","l":"Isoalcanivorax pacificus W11-5","na":1,"nb":2,"a":[["amino_acids_and_peptides/pacifibactin.yaml","pacifibactin"]],"b":[["NCBITaxon%3A1306787","Isoalcanivorax pacificus"],["NCBITaxon%3A391936","Isoalcanivorax pacificus W11-5"]]},{"id":"NCBITaxon:394095","l":"Pyxidicoccus fallax","na":2,"nb":1,"a":[["polyketides/gulmirecin-a.yaml","gulmirecin A"],["unclassified/myxarylin.yaml","Myxarylin"]],"b":[["NCBITaxon%3A394095","Pyxidicoccus fallax"]]},{"id":"NCBITaxon:394096","l":"Hyalangium minutum","na":2,"nb":1,"a":[["polyketides/nystatin-a1.yaml","nystatin A1"],["unclassified/myxochromide-d-2.yaml","myxochromide D"]],"b":[["NCBITaxon%3A394096","Hyalangium minutum"]]},{"id":"NCBITaxon:396598","l":"Paraburkholderia graminis C4D1M","na":1,"nb":2,"a":[["unclassified/gramibactin.yaml","gramibactin"]],"b":[["NCBITaxon%3A60548","Paraburkholderia graminis"],["NCBITaxon%3A396598","Paraburkholderia graminis C4D1M"]]},{"id":"NCBITaxon:397945","l":"","na":2,"nb":1,"a":[["unclassified/acidobactin-a.yaml","acidobactin A"],["unclassified/acidobactin-b.yaml","acidobactin B"]],"b":[["NCBITaxon%3A397945","Paracidovorax citrulli AAC00-1"]]},{"id":"NCBITaxon:40601","l":"Claviceps paspali","na":1,"nb":2,"a":[["unclassified/paxilline.yaml","paxilline"]],"b":[["NCBITaxon%3A40601","Claviceps paspali"],["NCBITaxon%3A877506","Claviceps paspali RRC 1481"]]},{"id":"NCBITaxon:40695","l":"Trichoderma polysporum","na":2,"nb":1,"a":[["amino_acids_and_peptides/cyclosporin-a.yaml","cyclosporin A"],["amino_acids_and_peptides/cyclosporin-c.yaml","cyclosporin C"]],"b":[["NCBITaxon%3A40695","Trichoderma polysporum"]]},{"id":"NCBITaxon:408015","l":"Streptomyces xiamenensis","na":1,"nb":2,"a":[["polyketides/xiamenmycin-a.yaml","xiamenmycin A"]],"b":[["NCBITaxon%3A408015","Streptomyces xiamenensis"],["NCBITaxon%3A1093097","Streptomyces xiamenensis 318"]]},{"id":"NCBITaxon:41276","l":"Brevundimonas vesicularis","na":1,"nb":2,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A41276","Brevundimonas vesicularis"],["NCBITaxon%3A1349759","Brevundimonas vesicularis NBRC 12165"]]},{"id":"NCBITaxon:41744","l":"Aspergillus puniceus","na":2,"nb":1,"a":[["unclassified/oxepinamide-d.yaml","oxepinamide D"],["unclassified/oxepinamide-f.yaml","oxepinamide F"]],"b":[["NCBITaxon%3A41744","Aspergillus puniceus"]]},{"id":"NCBITaxon:41899","l":"Burkholderia plantarii","na":1,"nb":2,"a":[["amino_acids_and_peptides/plantaribactin.yaml","plantaribactin"]],"b":[["NCBITaxon%3A41899","Burkholderia plantarii"],["NCBITaxon%3A796107","Burkholderia plantarii MAFF 301723"]]},{"id":"NCBITaxon:42239","l":"Streptomyces sampsonii","na":1,"nb":2,"a":[["polyketides/julichrome-q6-6.yaml","julichrome Q6.6"]],"b":[["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A42239","Streptomyces sampsonii"]]},{"id":"NCBITaxon:426","l":"Methylosinus trichosporium","na":1,"nb":2,"a":[["amino_acids_and_peptides/group-1-methanobactin.yaml","group 1 methanobactin"]],"b":[["NCBITaxon%3A426","Methylosinus trichosporium"],["NCBITaxon%3A595536","Methylosinus trichosporium OB3b"]]},{"id":"NCBITaxon:42677","l":"Fusarium subglutinans","na":2,"nb":1,"a":[["unclassified/subglutinol-a.yaml","subglutinol A"],["unclassified/subglutinol-b.yaml","subglutinol B"]],"b":[["NCBITaxon%3A42677","Fusarium subglutinans"]]},{"id":"NCBITaxon:42742","l":"Gelatoporia subvermispora","na":1,"nb":2,"a":[["amino_acids_and_peptides/basidioferrin.yaml","basidioferrin"]],"b":[["NCBITaxon%3A42742","Gelatoporia subvermispora"],["NCBITaxon%3A914234","Gelatoporia subvermispora B"]]},{"id":"NCBITaxon:42881","l":"Streptomyces chromofuscus","na":2,"nb":1,"a":[["alkaloids/indigoidine.yaml","indigoidine"],["polyketides/herboxidiene.yaml","herboxidiene"]],"b":[["NCBITaxon%3A42881","Streptomyces chromofuscus"]]},{"id":"NCBITaxon:43769","l":"Corynebacterium propinquum","na":1,"nb":2,"a":[["amino_acids_and_peptides/dehydroxynocardamine.yaml","dehydroxynocardamine"]],"b":[["NCBITaxon%3A43769","Corynebacterium propinquum"],["NCBITaxon%3A1121367","Corynebacterium propinquum DSM 44285"]]},{"id":"NCBITaxon:443922","l":"Planktothrix agardhii NIES-596","na":2,"nb":1,"a":[["amino_acids_and_peptides/prenylagaramide-b.yaml","prenylagaramide B"],["amino_acids_and_peptides/prenylagaramide-c.yaml","prenylagaramide C"]],"b":[["NCBITaxon%3A443922","Planktothrix agardhii NIES-596"]]},{"id":"NCBITaxon:444103","l":"Streptomyces sp. CNQ-509","na":2,"nb":1,"a":[["alkaloids/marinophenazine-a.yaml","marinophenazine A"],["alkaloids/phenaziterpene-a.yaml","phenaziterpene A"]],"b":[["NCBITaxon%3A444103","Streptomyces sp. CNQ-509"]]},{"id":"NCBITaxon:45130","l":"Bipolaris sorokiniana","na":1,"nb":2,"a":[["polyketides/sterigmatocystin.yaml","sterigmatocystin"]],"b":[["NCBITaxon%3A45130","Bipolaris sorokiniana"],["NCBITaxon%3A665912","Bipolaris sorokiniana ND90Pr"]]},{"id":"NCBITaxon:452529","l":"Streptomyces scopuliridis","na":1,"nb":2,"a":[["amino_acids_and_peptides/vancomycin.yaml","vancomycin"]],"b":[["NCBITaxon%3A452529","Streptomyces scopuliridis"],["NCBITaxon%3A1440053","Streptomyces scopuliridis RB72"]]},{"id":"NCBITaxon:452652","l":"Kitasatospora setae KM-6054","na":1,"nb":2,"a":[["alkaloids/kitasetaline.yaml","kitasetaline"]],"b":[["NCBITaxon%3A2066","Kitasatospora setae"],["NCBITaxon%3A452652","Kitasatospora setae KM-6054"]]},{"id":"NCBITaxon:45399","l":"Streptomyces triostinicus","na":2,"nb":1,"a":[["unclassified/quinomycin.yaml","quinomycin"],["unclassified/triostin-a.yaml","triostin A"]],"b":[["NCBITaxon%3A45399","Streptomyces triostinicus"]]},{"id":"NCBITaxon:457430","l":"Streptomyces filamentosus NRRL 11379","na":2,"nb":1,"a":[["amino_acids_and_peptides/arylomycin.yaml","arylomycin"],["unclassified/daptomycin.yaml","daptomycin"]],"b":[["NCBITaxon%3A457430","Streptomyces filamentosus NRRL 11379"]]},{"id":"NCBITaxon:469280","l":"Aspergillus striatus","na":2,"nb":1,"a":[["polyketides/sterigmatocystin.yaml","sterigmatocystin"],["unclassified/paxilline.yaml","paxilline"]],"b":[["NCBITaxon%3A469280","Aspergillus striatus"]]},{"id":"NCBITaxon:469371","l":"Thermobispora bispora DSM 43833","na":1,"nb":2,"a":[["amino_acids_and_peptides/thiomuracin.yaml","thiomuracin"]],"b":[["NCBITaxon%3A2006","Thermobispora bispora"],["NCBITaxon%3A469371","Thermobispora bispora DSM 43833"]]},{"id":"NCBITaxon:47278","l":"Trichothecium roseum","na":1,"nb":2,"a":[["unclassified/destruxin-a.yaml","destruxin A"]],"b":[["NCBITaxon%3A173858","Streptomyces luteireticuli"],["NCBITaxon%3A47278","Trichothecium roseum"]]},{"id":"NCBITaxon:47850","l":"","na":1,"nb":2,"a":[["polyketides/dynemicin-a.yaml","dynemicin A"]],"b":[["NCBITaxon%3A644283","Micromonospora aurantiaca ATCC 27029"],["NCBITaxon%3A47850","Micromonospora aurantiaca (nom. illeg.)"]]},{"id":"NCBITaxon:47863","l":"Micromonospora globosa","na":1,"nb":2,"a":[["polyketides/dynemicin-a.yaml","dynemicin A"]],"b":[["NCBITaxon%3A47863","Micromonospora globosa"],["NCBITaxon%3A1876","Micromonospora sp."]]},{"id":"NCBITaxon:483421","l":"Streptomyces sp. CNQ-617","na":2,"nb":1,"a":[["alkaloids/marineosin-a.yaml","marineosin A"],["alkaloids/marineosin-b.yaml","marineosin B"]],"b":[["NCBITaxon%3A483421","Streptomyces sp. CNQ-617"]]},{"id":"NCBITaxon:4837","l":"Phycomyces blakesleeanus","na":1,"nb":2,"a":[["alkaloids/biotin.yaml","biotin"]],"b":[["NCBITaxon%3A4837","Phycomyces blakesleeanus"],["NCBITaxon%3A763407","Phycomyces blakesleeanus NRRL 1555(-)"]]},{"id":"NCBITaxon:489825","l":"Moorea producens 3L","na":2,"nb":1,"a":[["fatty_acids/1-heptadecene.yaml","1-heptadecene"],["polyketides/curacin-a-2.yaml","curacin A"]],"b":[["NCBITaxon%3A489825","Moorena producens 3L"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":1,"nb":2,"a":[["polyketides/haliamide.yaml","haliamide"]],"b":[["NCBITaxon%3A80816","Haliangium ochraceum"],["NCBITaxon%3A502025","Haliangium ochraceum DSM 14365"]]},{"id":"NCBITaxon:503010","l":"uncultured Prochloron sp. 06037A","na":2,"nb":1,"a":[["amino_acids_and_peptides/patellin-2.yaml","patellin 2"],["amino_acids_and_peptides/patellin-3.yaml","patellin 3"]],"b":[["NCBITaxon%3A503010","uncultured Prochloron sp. 06037A"]]},{"id":"NCBITaxon:503013","l":"","na":2,"nb":1,"a":[["amino_acids_and_peptides/tenuecyclamide-a.yaml","tenuecyclamide A"],["amino_acids_and_peptides/tenuecyclamide-c.yaml","tenuecyclamide C"]],"b":[["NCBITaxon%3A503013","Nostoc spongiaeforme var. tenue str. Carmeli"]]},{"id":"NCBITaxon:504097","l":"Streptomyces rimofaciens","na":1,"nb":2,"a":[["carbohydrates/mildiomycin.yaml","mildiomycin"]],"b":[["NCBITaxon%3A97398","Streptomyces abikoensis"],["NCBITaxon%3A504097","Streptomyces rimofaciens"]]},{"id":"NCBITaxon:5044","l":"","na":2,"nb":1,"a":[["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"],["polyketides/sorbicillin.yaml","sorbicillin"]],"b":[["NCBITaxon%3A5044","Hapsidospora chrysogena"]]},{"id":"NCBITaxon:5079","l":"Penicillium janthinellum","na":2,"nb":1,"a":[["unclassified/penitrem-a.yaml","penitrem A"],["unclassified/shearinine-d.yaml","shearinine D"]],"b":[["NCBITaxon%3A5079","Penicillium janthinellum"]]},{"id":"NCBITaxon:509173","l":"Acinetobacter baumannii AYE","na":2,"nb":1,"a":[["alkaloids/baumannoferrin-a.yaml","baumannoferrin A"],["alkaloids/baumannoferrin-b.yaml","baumannoferrin B"]],"b":[["NCBITaxon%3A509173","Acinetobacter baumannii AYE"]]},{"id":"NCBITaxon:516360","l":"Streptomyces hygrospinosus","na":1,"nb":2,"a":[["alkaloids/anisomycin.yaml","(−)-anisomycin"]],"b":[["NCBITaxon%3A516360","Streptomyces hygrospinosus"],["NCBITaxon%3A2719566","Streptomyces hygrospinosus subsp. beijingensis"]]},{"id":"NCBITaxon:52259","l":"Streptomyces humidus","na":1,"nb":2,"a":[["amino_acids_and_peptides/humidimycin.yaml","humidimycin"]],"b":[["NCBITaxon%3A52259","Streptomyces humidus"],["NCBITaxon%3A285499","Streptomyces humidus subsp. antitumoris"]]},{"id":"NCBITaxon:5270","l":"","na":2,"nb":1,"a":[["fatty_acids/itaconic-acid.yaml","itaconic acid"],["fatty_acids/ustilagic-acid.yaml","ustilagic acid"]],"b":[["NCBITaxon%3A5270","Mycosarcoma maydis"]]},{"id":"NCBITaxon:527005","l":"Yersinia ruckeri ATCC 29473","na":1,"nb":2,"a":[["alkaloids/holomycin.yaml","holomycin"]],"b":[["NCBITaxon%3A29486","Yersinia ruckeri"],["NCBITaxon%3A527005","Yersinia ruckeri ATCC 29473"]]},{"id":"NCBITaxon:543728","l":"Variovorax paradoxus S110","na":2,"nb":1,"a":[["unclassified/vacidobactin-a.yaml","vacidobactin A"],["unclassified/vacidobactin-b.yaml","vacidobactin B"]],"b":[["NCBITaxon%3A543728","Variovorax paradoxus S110"]]},{"id":"NCBITaxon:544311","l":"Streptomyces araujoniae","na":2,"nb":1,"a":[["polyketides/tetranactin.yaml","tetranactin"],["polyketides/trinactin.yaml","trinactin"]],"b":[["NCBITaxon%3A544311","Streptomyces araujoniae"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":1,"nb":2,"a":[["unclassified/antimycin-a1b.yaml","antimycin A1B"]],"b":[["NCBITaxon%3A5476","Candida albicans"],["NCBITaxon%3A1182531","Candida albicans 3153A"]]},{"id":"NCBITaxon:5514","l":"Fusarium sporotrichioides","na":2,"nb":1,"a":[["terpenoids/t-2-toxin.yaml","T-2 toxin"],["unclassified/beauvericin.yaml","beauvericin"]],"b":[["NCBITaxon%3A5514","Fusarium sporotrichioides"]]},{"id":"NCBITaxon:5531","l":"Myrothecium","na":1,"nb":2,"a":[["carbohydrates/kanamycin-a.yaml","kanamycin A"]],"b":[["NCBITaxon%3A110576","Myrothecium inundatum"],["NCBITaxon%3A1756106","Myrothecium sp."]]},{"id":"NCBITaxon:5548","l":"Trichoderma longibrachiatum","na":1,"nb":2,"a":[["polyketides/sorbicillin.yaml","sorbicillin"]],"b":[["NCBITaxon%3A5548","Trichoderma longibrachiatum"],["NCBITaxon%3A1234776","Trichoderma longibrachiatum SMF2"]]},{"id":"NCBITaxon:55508","l":"Janthinobacterium agaricidamnosum","na":1,"nb":2,"a":[["unclassified/jagaricin.yaml","jagaricin"]],"b":[["NCBITaxon%3A55508","Janthinobacterium agaricidamnosum"],["NCBITaxon%3A1349767","Janthinobacterium agaricidamnosum NBRC 102515 = DSM 9628"]]},{"id":"NCBITaxon:557722","l":"Pseudomonas aeruginosa LESB58","na":2,"nb":1,"a":[["fatty_acids/n-acyl-lysine.yaml","N-acyl lysine"],["fatty_acids/n-acyl-ornithine.yaml","N-acyl ornithine"]],"b":[["NCBITaxon%3A557722","Pseudomonas aeruginosa LESB58"]]},{"id":"NCBITaxon:5580","l":"Aureobasidium pullulans","na":1,"nb":2,"a":[["unclassified/abt1.yaml","AbT1"]],"b":[["NCBITaxon%3A5580","Aureobasidium pullulans"],["NCBITaxon%3A1043002","Aureobasidium pullulans EXF-150"]]},{"id":"NCBITaxon:56427","l":"Couchioplanes caeruleus subsp. caeruleus","na":1,"nb":2,"a":[["polyketides/67-121c.yaml","67-121C"]],"b":[["NCBITaxon%3A56438","Couchioplanes caeruleus"],["NCBITaxon%3A56427","Couchioplanes caeruleus subsp. caeruleus"]]},{"id":"NCBITaxon:566461","l":"Streptomyces viridosporus ATCC 14672","na":1,"nb":2,"a":[["unclassified/cinnapeptin.yaml","cinnapeptin"]],"b":[["NCBITaxon%3A67581","Streptomyces viridosporus"],["NCBITaxon%3A566461","Streptomyces viridosporus ATCC 14672"]]},{"id":"NCBITaxon:570268","l":"Nocardiopsis potens DSM 45234","na":1,"nb":2,"a":[["amino_acids_and_peptides/potensibactin.yaml","potensibactin"]],"b":[["NCBITaxon%3A1246458","Nocardiopsis potens"],["NCBITaxon%3A570268","Nocardiopsis potens DSM 45234"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":1,"nb":2,"a":[["alkaloids/congocidine.yaml","congocidine"]],"b":[["NCBITaxon%3A5833","Plasmodium falciparum"],["NCBITaxon%3A5843","Plasmodium falciparum NF54"]]},{"id":"NCBITaxon:58350","l":"Kitasatospora cystarginea","na":2,"nb":1,"a":[["amino_acids_and_peptides/cystargolide-a.yaml","cystargolide A"],["amino_acids_and_peptides/cystargolide-b.yaml","cystargolide B"]],"b":[["NCBITaxon%3A58350","Kitasatospora cystarginea"]]},{"id":"NCBITaxon:591157","l":"Streptomyces sp. SPB78","na":2,"nb":1,"a":[["unclassified/frontalamide-a.yaml","frontalamide A"],["unclassified/frontalamide-b.yaml","frontalamide B"]],"b":[["NCBITaxon%3A591157","Streptomyces sp. SPB78"]]},{"id":"NCBITaxon:59299","l":"Streptomyces thermocarboxydus","na":1,"nb":2,"a":[["terpenoids/cyslabdan-a.yaml","cyslabdan A"]],"b":[["NCBITaxon%3A59299","Streptomyces thermocarboxydus"],["NCBITaxon%3A682180","Streptomyces thermocarboxydus di50b"]]},{"id":"NCBITaxon:595536","l":"Methylosinus trichosporium OB3b","na":1,"nb":2,"a":[["amino_acids_and_peptides/group-1-methanobactin.yaml","group 1 methanobactin"]],"b":[["NCBITaxon%3A426","Methylosinus trichosporium"],["NCBITaxon%3A595536","Methylosinus trichosporium OB3b"]]},{"id":"NCBITaxon:59737","l":"Rathayibacter iranicus","na":1,"nb":2,"a":[["carbohydrates/tunicamycin.yaml","tunicamycin"]],"b":[["NCBITaxon%3A59737","Rathayibacter iranicus"],["NCBITaxon%3A1328868","Rathayibacter iranicus NCPPB 2253 = VKM Ac-1602"]]},{"id":"NCBITaxon:60175","l":"Penicillium nalgiovense","na":1,"nb":2,"a":[["shikimates_and_phenylpropanoids/dichlorodiaporthin.yaml","dichlorodiaporthin"]],"b":[["NCBITaxon%3A60175","Penicillium nalgiovense"],["NCBITaxon%3A1439352","Penicillium nalgiovense FM193"]]},{"id":"NCBITaxon:60890","l":"Phaeobacter gallaeciensis","na":1,"nb":2,"a":[["shikimates_and_phenylpropanoids/tropodithietic-acid.yaml","tropodithietic acid"]],"b":[["NCBITaxon%3A60890","Phaeobacter gallaeciensis"],["NCBITaxon%3A1423144","Phaeobacter gallaeciensis DSM 26640"]]},{"id":"NCBITaxon:61284","l":"Fusarium tricinctum","na":2,"nb":1,"a":[["terpenoids/nivalenol.yaml","nivalenol"],["unclassified/fusaristatin-a.yaml","fusaristatin A"]],"b":[["NCBITaxon%3A61284","Fusarium tricinctum"]]},{"id":"NCBITaxon:618","l":"Serratia odorifera","na":1,"nb":2,"a":[["terpenoids/sodorifen.yaml","sodorifen"]],"b":[["NCBITaxon%3A618","Serratia odorifera"],["NCBITaxon%3A667129","Serratia odorifera DSM 4582"]]},{"id":"NCBITaxon:62101","l":"Candidatus Endobugula sertula","na":2,"nb":1,"a":[["polyketides/bryostatin-2.yaml","bryostatin"],["polyketides/bryostatin.yaml","bryostatin"]],"b":[["NCBITaxon%3A62101","Candidatus Endobugula sertula"]]},{"id":"NCBITaxon:62977","l":"Acinetobacter baylyi (strain ATCC 33305 / BD413 / ADP1)","na":1,"nb":2,"a":[["amino_acids_and_peptides/fimsbactin-a.yaml","fimsbactin A"]],"b":[["NCBITaxon%3A202950","Acinetobacter baylyi"],["NCBITaxon%3A62977","Acinetobacter baylyi ADP1"]]},{"id":"NCBITaxon:630397","l":"Streptomyces sp. Sp080513GE-23","na":2,"nb":1,"a":[["amino_acids_and_peptides/jbir-34.yaml","JBIR-34"],["amino_acids_and_peptides/jbir-35.yaml","JBIR-35"]],"b":[["NCBITaxon%3A630397","Streptomyces sp. Sp080513GE-23"]]},{"id":"NCBITaxon:634771","l":"Chitinophaga eiseniae","na":2,"nb":1,"a":[["amino_acids_and_peptides/pentacitidin-a.yaml","pentacitidin A"],["amino_acids_and_peptides/pentacitidin-b.yaml","pentacitidin B"]],"b":[["NCBITaxon%3A634771","Chitinophaga eiseniae"]]},{"id":"NCBITaxon:643403","l":"Streptomyces sp. MK730-62F2","na":2,"nb":1,"a":[["carbohydrates/caprazamycin-aglycon.yaml","caprazamycin aglycon"],["carbohydrates/caprazamycin.yaml","caprazamycin"]],"b":[["NCBITaxon%3A643403","Streptomyces sp. MK730-62F2"]]},{"id":"NCBITaxon:658629","l":"Pseudomonas sp. CMR12a","na":2,"nb":1,"a":[["amino_acids_and_peptides/sessilin-a.yaml","sessilin A"],["unclassified/orfamide-b.yaml","orfamide B"]],"b":[["NCBITaxon%3A658629","Pseudomonas sessilinigenes"]]},{"id":"NCBITaxon:66431","l":"Streptomyces thioluteus","na":2,"nb":1,"a":[["alkaloids/sf2768.yaml","SF2768"],["polyketides/aureothin.yaml","aureothin"]],"b":[["NCBITaxon%3A66431","Streptomyces thioluteus"]]},{"id":"NCBITaxon:665007","l":"Streptomyces incarnatus","na":2,"nb":1,"a":[["amino_acids_and_peptides/incarnatapeptin-a.yaml","incarnatapeptin A"],["unclassified/incarnatapeptin-b.yaml","incarnatapeptin B"]],"b":[["NCBITaxon%3A665007","Streptomyces incarnatus"]]},{"id":"NCBITaxon:66866","l":"Streptomyces albofaciens","na":1,"nb":2,"a":[["polyketides/spiramycin.yaml","spiramycin"]],"b":[["NCBITaxon%3A66866","Streptomyces albofaciens"],["NCBITaxon%3A1306175","Streptomyces albofaciens JCM 4342"]]},{"id":"NCBITaxon:66867","l":"Streptomyces albovinaceus","na":2,"nb":1,"a":[["polyketides/borrelidin.yaml","borrelidin"],["terpenoids/isorenieratene.yaml","isorenieratene"]],"b":[["NCBITaxon%3A66867","Streptomyces albovinaceus"]]},{"id":"NCBITaxon:66881","l":"Streptomyces cremeus","na":2,"nb":1,"a":[["carbohydrates/tobramycin.yaml","tobramycin"],["unclassified/cremeomycin.yaml","cremeomycin"]],"b":[["NCBITaxon%3A66881","Streptomyces cremeus"]]},{"id":"NCBITaxon:671071","l":"Planktothrix paucivesiculata PCC 9631","na":2,"nb":1,"a":[["polyketides/luminaolide-b.yaml","luminaolide B"],["polyketides/luminaolide.yaml","luminaolide"]],"b":[["NCBITaxon%3A671071","Planktothrix paucivesiculata PCC 9631"]]},{"id":"NCBITaxon:67267","l":"Streptomyces alboflavus","na":2,"nb":1,"a":[["alkaloids/thienodolin.yaml","thienodolin"],["terpenoids/2-methylisoborneol.yaml","2-methylisoborneol"]],"b":[["NCBITaxon%3A67267","Streptomyces alboflavus"]]},{"id":"NCBITaxon:673","l":"Grimontia hollisae","na":1,"nb":2,"a":[["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]],"b":[["NCBITaxon%3A673","Grimontia hollisae"],["NCBITaxon%3A675812","Grimontia hollisae CIP 101886"]]},{"id":"NCBITaxon:67319","l":"Streptomyces lucensis","na":1,"nb":2,"a":[["polyketides/lucensomycin.yaml","lucensomycin"]],"b":[["NCBITaxon%3A67319","Streptomyces lucensis"],["NCBITaxon%3A1306176","Streptomyces lucensis JCM 4490"]]},{"id":"NCBITaxon:67329","l":"Streptomyces minoensis","na":1,"nb":2,"a":[["polyketides/dutomycin.yaml","dutomycin"]],"b":[["NCBITaxon%3A67329","Streptomyces minoensis"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:67332","l":"Streptomyces mutabilis","na":1,"nb":2,"a":[["polyketides/borrelidin.yaml","borrelidin"]],"b":[["NCBITaxon%3A67332","Streptomyces mutabilis"],["NCBITaxon%3A1028809","Streptomyces mutabilis 13676F"]]},{"id":"NCBITaxon:67333","l":"Streptomyces narbonensis","na":1,"nb":2,"a":[["carbohydrates/desosamine.yaml","desosamine"]],"b":[["NCBITaxon%3A332950","Enterococcus termitis"],["NCBITaxon%3A67333","Streptomyces narbonensis"]]},{"id":"NCBITaxon:67337","l":"Streptomyces noboritoensis","na":1,"nb":2,"a":[["polyketides/cinerubin-b.yaml","cinerubin B"]],"b":[["NCBITaxon%3A67326","Streptomyces melanogenes"],["NCBITaxon%3A67337","Streptomyces noboritoensis"]]},{"id":"NCBITaxon:67338","l":"Streptomyces olivoviridis","na":1,"nb":2,"a":[["amino_acids_and_peptides/thioviridamide.yaml","thioviridamide"]],"b":[["NCBITaxon%3A66869","Streptomyces atroolivaceus"],["NCBITaxon%3A67338","Streptomyces olivoviridis"]]},{"id":"NCBITaxon:67350","l":"Streptomyces pseudovenezuelae","na":1,"nb":2,"a":[["polyketides/setomimycin.yaml","setomimycin"]],"b":[["NCBITaxon%3A67350","Streptomyces pseudovenezuelae"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:67356","l":"Streptomyces resistomycificus","na":2,"nb":1,"a":[["polyketides/resistoflavine.yaml","resistoflavine"],["polyketides/resistomycin.yaml","resistomycin"]],"b":[["NCBITaxon%3A67356","Streptomyces resistomycificus"]]},{"id":"NCBITaxon:67375","l":"Streptomyces versipellis","na":1,"nb":2,"a":[["polyketides/versipelostatin.yaml","versipelostatin"]],"b":[["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A67375","Streptomyces versipellis"]]},{"id":"NCBITaxon:68170","l":"","na":2,"nb":1,"a":[["alkaloids/rebeccamycin.yaml","rebeccamycin"],["alkaloids/staurosporine-2.yaml","staurosporine"]],"b":[["NCBITaxon%3A68170","Lentzea aerocolonigenes"]]},{"id":"NCBITaxon:68212","l":"Streptomyces graminofaciens","na":2,"nb":1,"a":[["alkaloids/rotihibin-a.yaml","rotihibin A"],["polyketides/fd-891.yaml","FD-891"]],"b":[["NCBITaxon%3A68212","Streptomyces graminofaciens"]]},{"id":"NCBITaxon:68229","l":"Streptomyces lomondensis","na":1,"nb":2,"a":[["alkaloids/lomofungin.yaml","lomofungin"]],"b":[["NCBITaxon%3A68229","Streptomyces lomondensis"],["NCBITaxon%3A1415783","Streptomyces lomondensis S015"]]},{"id":"NCBITaxon:68258","l":"Streptomyces pulveraceus","na":1,"nb":2,"a":[["polyketides/fostriecin.yaml","fostriecin"]],"b":[["NCBITaxon%3A67333","Streptomyces narbonensis"],["NCBITaxon%3A68258","Streptomyces pulveraceus"]]},{"id":"NCBITaxon:68260","l":"Streptomyces pyridomyceticus","na":1,"nb":2,"a":[["alkaloids/pyridomycin.yaml","pyridomycin"]],"b":[["NCBITaxon%3A68260","Streptomyces pyridomyceticus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:68264","l":"Streptomyces rishiriensis","na":2,"nb":1,"a":[["shikimates_and_phenylpropanoids/coumermycin-a1.yaml","coumermycin A1"],["unclassified/lactonamycin.yaml","lactonamycin"]],"b":[["NCBITaxon%3A68264","Streptomyces rishiriensis"]]},{"id":"NCBITaxon:68271","l":"Streptomyces steffisburgensis","na":1,"nb":2,"a":[["polyketides/steffimycin-d.yaml","steffimycin D"]],"b":[["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A68271","Streptomyces steffisburgensis"]]},{"id":"NCBITaxon:68276","l":"Streptomyces torulosus","na":2,"nb":1,"a":[["alkaloids/pyridomycin.yaml","pyridomycin"],["unclassified/clifednamide-a-2.yaml","clifednamide A"]],"b":[["NCBITaxon%3A68276","Streptomyces torulosus"]]},{"id":"NCBITaxon:68565","l":"Actinomadura hibisca","na":1,"nb":2,"a":[["polyketides/pradimicin-a.yaml","pradimicin A"]],"b":[["NCBITaxon%3A68565","Actinomadura hibisca"],["NCBITaxon%3A1220559","Actinomadura hibisca NBRC 15177"]]},{"id":"NCBITaxon:689687","l":"Streptomyces sp. SANK 60405","na":2,"nb":1,"a":[["carbohydrates/a-90289-a.yaml","A-90289 A"],["carbohydrates/a-90289-b.yaml","A-90289 B"]],"b":[["NCBITaxon%3A689687","Streptomyces sp. SANK 60405"]]},{"id":"NCBITaxon:693111","l":"uncultured bacterium psy1","na":2,"nb":1,"a":[["unclassified/irciniastatin-b.yaml","irciniastatin B"],["unclassified/psymberin.yaml","psymberin"]],"b":[["NCBITaxon%3A693111","uncultured bacterium psy1"]]},{"id":"NCBITaxon:70109","l":"Penicillium paxilli","na":2,"nb":1,"a":[["unclassified/21-22-diprenylated-paxilline.yaml","21,22-diprenylated paxilline"],["unclassified/paxilline.yaml","paxilline"]],"b":[["NCBITaxon%3A70109","Penicillium paxilli"]]},{"id":"NCBITaxon:70559","l":"Penicillium raciborskii","na":2,"nb":1,"a":[["unclassified/outovirin-a.yaml","outovirin A"],["unclassified/outovirin-c.yaml","outovirin C"]],"b":[["NCBITaxon%3A70559","Penicillium raciborskii"]]},{"id":"NCBITaxon:713604","l":"Amycolatopsis mediterranei S699","na":1,"nb":2,"a":[["polyketides/rifamycin-sv.yaml","rifamycin SV"]],"b":[["NCBITaxon%3A33910","Amycolatopsis mediterranei"],["NCBITaxon%3A713604","Amycolatopsis mediterranei S699"]]},{"id":"NCBITaxon:71944","l":"Hypholoma","na":1,"nb":2,"a":[["terpenoids/naematolin.yaml","naematolin"]],"b":[["NCBITaxon%3A2493788","Hypholoma australianum"],["NCBITaxon%3A945553","Hypholoma sublateritium FD-334 SS-4"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":2,"a":[["unclassified/lysocin-e.yaml","lysocin E"]],"b":[["NCBITaxon%3A72226","Lysobacter sp."],["NCBITaxon%3A1645665","Solilutibacter silvestris"]]},{"id":"NCBITaxon:73044","l":"Streptomyces seoulensis","na":2,"nb":1,"a":[["polyketides/ansaseomycin-a.yaml","ansaseomycin A"],["polyketides/ansaseomycin-b.yaml","ansaseomycin B"]],"b":[["NCBITaxon%3A73044","Streptomyces seoulensis"]]},{"id":"NCBITaxon:73839","l":"Epichloe festucae var. lolii","na":2,"nb":1,"a":[["alkaloids/ergovaline.yaml","ergovaline"],["alkaloids/peramine.yaml","peramine"]],"b":[["NCBITaxon%3A73839","Epichloe festucae var. lolii"]]},{"id":"NCBITaxon:76020","l":"Amycolatopsis alba","na":1,"nb":2,"a":[["polyketides/ansacarbamitocin.yaml","ansacarbamitocin"]],"b":[["NCBITaxon%3A76020","Amycolatopsis alba"],["NCBITaxon%3A1125972","Amycolatopsis alba DSM 44262"]]},{"id":"NCBITaxon:76335","l":"Nostoc sp. ATCC 53789","na":2,"nb":1,"a":[["amino_acids_and_peptides/nostocyclopeptide-a2.yaml","nostocyclopeptide A2"],["unclassified/cryptophycin-a.yaml","Cryptophycin A"]],"b":[["NCBITaxon%3A76335","Nostoc sp. ATCC 53789"]]},{"id":"NCBITaxon:764483","l":"Pseudomonas sp. 2663","na":2,"nb":1,"a":[["fatty_acids/fr901464-2.yaml","FR901464"],["fatty_acids/fr901464.yaml","FR901464"]],"b":[["NCBITaxon%3A764483","Pseudomonas sp. 2663"]]},{"id":"NCBITaxon:77044","l":"Rosellinia necatrix","na":2,"nb":1,"a":[["alkaloids/cytochalasin-e.yaml","cytochalasin E"],["terpenoids/sordaricin-b.yaml","sordaricin B"]],"b":[["NCBITaxon%3A77044","Rosellinia necatrix"]]},{"id":"NCBITaxon:78410","l":"Neonectria ditissima","na":2,"nb":1,"a":[["unclassified/colletochlorin-b.yaml","Colletochlorin B"],["unclassified/colletorin-b.yaml","Colletorin B"]],"b":[["NCBITaxon%3A78410","Neonectria ditissima"]]},{"id":"NCBITaxon:79329","l":"Chitinophaga pinensis","na":1,"nb":2,"a":[["polyketides/flexirubin.yaml","flexirubin"]],"b":[["NCBITaxon%3A79329","Chitinophaga pinensis"],["NCBITaxon%3A485918","Chitinophaga pinensis DSM 2588"]]},{"id":"NCBITaxon:798162","l":"Setophoma terrestris","na":2,"nb":1,"a":[["polyketides/endocrocin.yaml","endocrocin"],["polyketides/secalonic-acid-a.yaml","Secalonic acid A"]],"b":[["NCBITaxon%3A798162","Setophoma terrestris"]]},{"id":"NCBITaxon:80816","l":"Haliangium ochraceum","na":1,"nb":2,"a":[["polyketides/haliamide.yaml","haliamide"]],"b":[["NCBITaxon%3A80816","Haliangium ochraceum"],["NCBITaxon%3A502025","Haliangium ochraceum DSM 14365"]]},{"id":"NCBITaxon:83378","l":"Streptomyces ruber","na":1,"nb":2,"a":[["terpenoids/napyradiomycin.yaml","napyradiomycin"]],"b":[["NCBITaxon%3A83378","Streptomyces ruber"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:83380","l":"Streptomyces althioticus","na":1,"nb":2,"a":[["polyketides/desertomycin-g.yaml","desertomycin G"]],"b":[["NCBITaxon%3A83380","Streptomyces althioticus"],["NCBITaxon%3A3075534","Streptomyces althioticus subsp. attaecolombicae"]]},{"id":"NCBITaxon:83455","l":"Myxococcus stipitatus","na":1,"nb":2,"a":[["polyketides/phenalamide-a2.yaml","phenalamide A2"]],"b":[["NCBITaxon%3A83455","Myxococcus stipitatus"],["NCBITaxon%3A1278073","Myxococcus stipitatus DSM 14675"]]},{"id":"NCBITaxon:83456","l":"Myxococcus virescens","na":2,"nb":1,"a":[["alkaloids/bengamide.yaml","bengamide"],["unclassified/myxochromide-c.yaml","myxochromide C"]],"b":[["NCBITaxon%3A83456","Myxococcus virescens"]]},{"id":"NCBITaxon:83656","l":"Streptomyces tsukubensis","na":1,"nb":2,"a":[["fatty_acids/allylmalonyl-coa.yaml","allylmalonyl-CoA"]],"b":[["NCBITaxon%3A83656","Streptomyces tsukubensis"],["NCBITaxon%3A1114943","Streptomyces tsukubensis NRRL18488"]]},{"id":"NCBITaxon:83682","l":"Nonomuraea longicatena","na":2,"nb":1,"a":[["alkaloids/k-252a-2.yaml","K-252a"],["alkaloids/k-252a.yaml","K-252a"]],"b":[["NCBITaxon%3A83682","Nonomuraea longicatena"]]},{"id":"NCBITaxon:85336","l":"Rothia nasimurium","na":1,"nb":2,"a":[["unclassified/valinomycin-2.yaml","valinomycin"]],"b":[["NCBITaxon%3A85336","Rothia nasimurium"],["NCBITaxon%3A553203","Rothia nasimurium JCVIHMP032"]]},{"id":"NCBITaxon:866895","l":"Halobacillus halophilus DSM 2266","na":1,"nb":2,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A1570","Halobacillus halophilus"],["NCBITaxon%3A866895","Halobacillus halophilus DSM 2266"]]},{"id":"NCBITaxon:92743","l":"","na":2,"nb":1,"a":[["amino_acids_and_peptides/malonomycin.yaml","malonomycin"],["carbohydrates/paromomycin.yaml","paromomycin"]],"b":[["NCBITaxon%3A92743","Streptomyces paromomycinus"]]},{"id":"NCBITaxon:945030","l":"Digenea simplex","na":2,"nb":1,"a":[["amino_acids_and_peptides/kainic-acid.yaml","kainic acid"],["terpenoids/kainic-acid-lactone.yaml","Kainic acid lactone"]],"b":[["NCBITaxon%3A945030","Digenea simplex"]]},{"id":"NCBITaxon:945052","l":"Streptomyces heilongjiangensis","na":1,"nb":2,"a":[["polyketides/borrelidin.yaml","borrelidin"]],"b":[["NCBITaxon%3A211113","Kibdelosporangium philippinense"],["NCBITaxon%3A945052","Streptomyces heilongjiangensis"]]},{"id":"NCBITaxon:948311","l":"Fusarium proliferatum","na":1,"nb":2,"a":[["polyketides/prolipyrone-b.yaml","prolipyrone B"]],"b":[["NCBITaxon%3A948311","Fusarium proliferatum"],["NCBITaxon%3A1227346","Fusarium proliferatum ET1"]]},{"id":"NCBITaxon:964","l":"Herbaspirillum seropedicae","na":1,"nb":2,"a":[["amino_acids_and_peptides/serobactin-c.yaml","serobactin C"]],"b":[["NCBITaxon%3A964","Herbaspirillum seropedicae"],["NCBITaxon%3A757424","Herbaspirillum seropedicae SmR1"]]},{"id":"NCBITaxon:977880","l":"Cupriavidus taiwanensis LMG 19424","na":1,"nb":2,"a":[["amino_acids_and_peptides/taiwachelin.yaml","taiwachelin"]],"b":[["NCBITaxon%3A164546","Cupriavidus taiwanensis"],["NCBITaxon%3A977880","Cupriavidus taiwanensis LMG 19424"]]},{"id":"NCBITaxon:997","l":"Eisenibacter elegans","na":1,"nb":2,"a":[["polyketides/flexirubin.yaml","flexirubin"]],"b":[["NCBITaxon%3A997","Eisenibacter elegans"],["NCBITaxon%3A1121902","Eisenibacter elegans DSM 3317"]]},{"id":"NCBITaxon:999542","l":"Salinispora pacifica DSM 45543 = CNS-863","na":1,"nb":2,"a":[["unclassified/thiolactomycin.yaml","thiolactomycin"]],"b":[["NCBITaxon%3A351187","Salinispora pacifica"],["NCBITaxon%3A999542","Salinispora pacifica DSM 45543 = CNS-863"]]},{"id":"NCBITaxon:999550","l":"Pseudophaeobacter arcticus DSM 23566","na":1,"nb":2,"a":[["amino_acids_and_peptides/phaeornamide.yaml","phaeornamide"]],"b":[["NCBITaxon%3A385492","Pseudophaeobacter arcticus"],["NCBITaxon%3A999550","Pseudophaeobacter arcticus DSM 23566"]]},{"id":"NCBITaxon:1002505","l":"Pseudanabaena sp. dqh15","na":1,"nb":1,"a":[["alkaloids/2-methylisoborneol-2.yaml","2-methylisoborneol"]],"b":[["NCBITaxon%3A1002505","Pseudanabaena sp. dqh15"]]},{"id":"NCBITaxon:1010692","l":"Bacillus sp. NK2003","na":1,"nb":1,"a":[["amino_acids_and_peptides/koranimine.yaml","koranimine"]],"b":[["NCBITaxon%3A1010692","Bacillus sp. NK2003"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":1,"nb":1,"a":[["unclassified/rhodochelin.yaml","rhodochelin"]],"b":[["NCBITaxon%3A101510","Rhodococcus jostii RHA1"]]},{"id":"NCBITaxon:1034809","l":"Staphylococcus lugdunensis N920143","na":1,"nb":1,"a":[["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]],"b":[["NCBITaxon%3A1034809","Staphylococcus lugdunensis N920143"]]},{"id":"NCBITaxon:1035052","l":"Streptomyces sp. SCSIO 01127","na":1,"nb":1,"a":[["polyketides/lobophorin-b.yaml","lobophorin B"]],"b":[["NCBITaxon%3A1035052","Streptomyces sp. SCSIO 01127"]]},{"id":"NCBITaxon:1036673","l":"Paenibacillus mucilaginosus KNP414","na":1,"nb":1,"a":[["amino_acids_and_peptides/bacillopaline.yaml","bacillopaline"]],"b":[["NCBITaxon%3A1036673","Paenibacillus mucilaginosus KNP414"]]},{"id":"NCBITaxon:1036732","l":"Sarocladium zeae","na":1,"nb":1,"a":[["polyketides/trans-resorcylide.yaml","trans-resorcylide"]],"b":[["NCBITaxon%3A1036732","Sarocladium zeae"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":1,"nb":1,"a":[["alkaloids/schizokinen.yaml","schizokinen"]],"b":[["NCBITaxon%3A103690","Nostoc sp. PCC 7120 = FACHB-418"]]},{"id":"NCBITaxon:103733","l":"Saccharothrix syringae","na":1,"nb":1,"a":[["polyketides/nocamycin.yaml","nocamycin"]],"b":[["NCBITaxon%3A103733","Saccharothrix syringae"]]},{"id":"NCBITaxon:104268","l":"Tenacibaculum mesophilum","na":1,"nb":1,"a":[["fatty_acids/bisucaberin-b.yaml","bisucaberin B"]],"b":[["NCBITaxon%3A104268","Tenacibaculum mesophilum"]]},{"id":"NCBITaxon:1044","l":"Erythrobacter longus","na":1,"nb":1,"a":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]],"b":[["NCBITaxon%3A1044","Erythrobacter longus"]]},{"id":"NCBITaxon:1047164","l":"uncultured bacterium AB1650","na":1,"nb":1,"a":[["alkaloids/be-54017.yaml","BE-54017"]],"b":[["NCBITaxon%3A1047164","uncultured bacterium AB1650"]]},{"id":"NCBITaxon:1052105","l":"Purpureocillium","na":1,"nb":1,"a":[["polyketides/sirolimus.yaml","sirolimus"]],"b":[["NCBITaxon%3A33203","Purpureocillium lilacinum"]]},{"id":"NCBITaxon:1055352","l":"Streptomyces sp. W007","na":1,"nb":1,"a":[["polyketides/kiamycin.yaml","kiamycin"]],"b":[["NCBITaxon%3A1055352","Streptomyces sp. W007"]]},{"id":"NCBITaxon:1068630","l":"Streptomyces sp. CS40","na":1,"nb":1,"a":[["alkaloids/collismycin-a.yaml","collismycin A"]],"b":[["NCBITaxon%3A1068630","Streptomyces sp. CS40"]]},{"id":"NCBITaxon:1073998","l":"Streptomyces sp. ATCC 55365","na":1,"nb":1,"a":[["amino_acids_and_peptides/ge37468.yaml","GE37468"]],"b":[["NCBITaxon%3A1073998","Streptomyces sp. ATCC 55365"]]},{"id":"NCBITaxon:1074049","l":"Candidatus Burkholderia crenata","na":1,"nb":1,"a":[["unclassified/fr900359.yaml","FR900359"]],"b":[["NCBITaxon%3A1074049","Candidatus Burkholderia crenata"]]},{"id":"NCBITaxon:1074250","l":"Actinoalloteichus sp. WH1-2216-6","na":1,"nb":1,"a":[["alkaloids/caerulomycin-a.yaml","caerulomycin A"]],"b":[["NCBITaxon%3A1074250","Actinoalloteichus sp. WH1-2216-6"]]},{"id":"NCBITaxon:1077944","l":"Streptomyces muensis","na":1,"nb":1,"a":[["unclassified/griselimycin.yaml","griselimycin"]],"b":[["NCBITaxon%3A1077944","Streptomyces muensis"]]},{"id":"NCBITaxon:1081091","l":"Amycolatopsis balhimycina DSM 5908","na":1,"nb":1,"a":[["amino_acids_and_peptides/balhimycin.yaml","balhimycin"]],"b":[["NCBITaxon%3A1081091","Amycolatopsis balhimycina DSM 5908"]]},{"id":"NCBITaxon:1088888","l":"Vibrio campbellii DS40M4","na":1,"nb":1,"a":[["amino_acids_and_peptides/vanchrobactin.yaml","vanchrobactin"]],"b":[["NCBITaxon%3A1088888","Vibrio campbellii DS40M4"]]},{"id":"NCBITaxon:1091567","l":"uncultured bacterium CSL12","na":1,"nb":1,"a":[["unclassified/n-tetradecanoyl-tyrosine.yaml","N-tetradecanoyl tyrosine"]],"b":[["NCBITaxon%3A1091567","uncultured bacterium CSL12"]]},{"id":"NCBITaxon:1091571","l":"uncultured bacterium CSLC2","na":1,"nb":1,"a":[["unclassified/n-tetradecanoyl-tyrosine.yaml","N-tetradecanoyl tyrosine"]],"b":[["NCBITaxon%3A1091571","uncultured bacterium CSLC2"]]},{"id":"NCBITaxon:110542","l":"Hypoxylon rubiginosum","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"]],"b":[["NCBITaxon%3A110542","Hypoxylon rubiginosum"]]},{"id":"NCBITaxon:1108595","l":"Chromobacterium vaccinii","na":1,"nb":1,"a":[["unclassified/fr900359-2.yaml","FR900359"]],"b":[["NCBITaxon%3A1108595","Chromobacterium vaccinii"]]},{"id":"NCBITaxon:1109705","l":"Streptomyces sp. BC16019","na":1,"nb":1,"a":[["amino_acids_and_peptides/bottromycin-a2-2.yaml","bottromycin A2"]],"b":[["NCBITaxon%3A1109705","Streptomyces sp. BC16019"]]},{"id":"NCBITaxon:1112731","l":"Streptomyces sp. TK08046","na":1,"nb":1,"a":[["polyketides/saprolmycin-e.yaml","saprolmycin E"]],"b":[["NCBITaxon%3A1112731","Streptomyces sp. TK08046"]]},{"id":"NCBITaxon:1113698","l":"","na":1,"nb":1,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A1113698","Brevundimonas sp. NBRC 101024"]]},{"id":"NCBITaxon:1114959","l":"Saccharomonospora azurea SZMC 14600","na":1,"nb":1,"a":[["polyketides/primycin.yaml","primycin"]],"b":[["NCBITaxon%3A1114959","Saccharomonospora azurea SZMC 14600"]]},{"id":"NCBITaxon:111781","l":"Leptolyngbya sp. PCC 7376","na":1,"nb":1,"a":[["alkaloids/schizokinen.yaml","schizokinen"]],"b":[["NCBITaxon%3A111781","[Leptolyngbya] sp. PCC 7376"]]},{"id":"NCBITaxon:112177","l":"Arthrinium","na":1,"nb":1,"a":[["terpenoids/terpestacin.yaml","terpestacin"]],"b":[["NCBITaxon%3A335850","Arthrinium puccinioides"]]},{"id":"NCBITaxon:1131935","l":"Paenibacillus dendritiformis C454","na":1,"nb":1,"a":[["amino_acids_and_peptides/paeninodin.yaml","paeninodin"]],"b":[["NCBITaxon%3A1131935","Paenibacillus dendritiformis C454"]]},{"id":"NCBITaxon:1132638","l":"","na":1,"nb":1,"a":[["unclassified/4-oxomacrophorin-a.yaml","4-oxomacrophorin A"]],"b":[["NCBITaxon%3A1132638","Penicillium kewense"]]},{"id":"NCBITaxon:1137250","l":"Salinispora arenicola CNB527","na":1,"nb":1,"a":[["polyketides/arenimycin-a.yaml","arenimycin A"]],"b":[["NCBITaxon%3A1137250","Salinispora arenicola CNB527"]]},{"id":"NCBITaxon:1137255","l":"Salinispora arenicola CNT005","na":1,"nb":1,"a":[["unclassified/retimycin-a.yaml","retimycin A"]],"b":[["NCBITaxon%3A1137255","Salinispora arenicola CNT005"]]},{"id":"NCBITaxon:114231","l":"Nigrospora sphaerica","na":1,"nb":1,"a":[["terpenoids/aphidicolin.yaml","aphidicolin"]],"b":[["NCBITaxon%3A114231","Nigrospora sphaerica"]]},{"id":"NCBITaxon:1144306","l":"Rhizobium sp. AP16","na":1,"nb":1,"a":[["amino_acids_and_peptides/syringolin-a-2.yaml","syringolin A"]],"b":[["NCBITaxon%3A1144306","Rhizobium sp. AP16"]]},{"id":"NCBITaxon:1148509","l":"","na":1,"nb":1,"a":[["unclassified/prosekin.yaml","prosekin"]],"b":[["NCBITaxon%3A1148509","Pseudomonas prosekii"]]},{"id":"NCBITaxon:1155718","l":"Streptomyces sp. MspMP-M5","na":1,"nb":1,"a":[["unclassified/microtermolide-a.yaml","microtermolide A"]],"b":[["NCBITaxon%3A1155718","Streptomyces sp. MspMP-M5"]]},{"id":"NCBITaxon:1156913","l":"","na":1,"nb":1,"a":[["amino_acids_and_peptides/vancomycin.yaml","vancomycin"]],"b":[["NCBITaxon%3A1156913","Amycolatopsis orientalis HCCB10007"]]},{"id":"NCBITaxon:115828","l":"Streptomyces maritimus","na":1,"nb":1,"a":[["terpenoids/enterocin.yaml","enterocin"]],"b":[["NCBITaxon%3A115828","Streptomyces maritimus"]]},{"id":"NCBITaxon:115983","l":"Phyllosticta ampelicida","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/phenguignardic-acid.yaml","phenguignardic acid"]],"b":[["NCBITaxon%3A115983","Phyllosticta ampelicida"]]},{"id":"NCBITaxon:1169155","l":"Streptomyces sp. CNT302","na":1,"nb":1,"a":[["polyketides/cosmomycin-c.yaml","cosmomycin C"]],"b":[["NCBITaxon%3A1169155","Streptomyces sp. CNT302"]]},{"id":"NCBITaxon:116978","l":"Penicillium thiersii","na":1,"nb":1,"a":[["unclassified/paxilline.yaml","paxilline"]],"b":[["NCBITaxon%3A116978","Penicillium thiersii"]]},{"id":"NCBITaxon:1172567","l":"Streptomyces globisporus C-1027","na":1,"nb":1,"a":[["polyketides/c-1027-chromophore.yaml","C-1027 chromophore"]],"b":[["NCBITaxon%3A1172567","Streptomyces globisporus C-1027"]]},{"id":"NCBITaxon:1182637","l":"Streptomyces melanovinaceus","na":1,"nb":1,"a":[["alkaloids/quinocarcin.yaml","quinocarcin"]],"b":[["NCBITaxon%3A1182637","Streptomyces melanovinaceus"]]},{"id":"NCBITaxon:1182970","l":"","na":1,"nb":1,"a":[["polyketides/kosinostatin.yaml","kosinostatin"]],"b":[["NCBITaxon%3A1182970","Micromonospora okii"]]},{"id":"NCBITaxon:1194094","l":"Streptomyces sp. SCSIO 02999","na":1,"nb":1,"a":[["alkaloids/xiamycin-a.yaml","xiamycin A"]],"b":[["NCBITaxon%3A1194094","Streptomyces sp. SCSIO 02999"]]},{"id":"NCBITaxon:1196081","l":"Talaromyces amestolkiae","na":1,"nb":1,"a":[["unclassified/chrodrimanin-b.yaml","chrodrimanin B"]],"b":[["NCBITaxon%3A1196081","Talaromyces amestolkiae"]]},{"id":"NCBITaxon:1196323","l":"Paenibacillus sp. OSY-SE","na":1,"nb":1,"a":[["unclassified/paenibacterin.yaml","paenibacterin"]],"b":[["NCBITaxon%3A1196323","Paenibacillus sp. OSY-SE"]]},{"id":"NCBITaxon:1200302","l":"Photobacterium damselae subsp. piscicida DI21","na":1,"nb":1,"a":[["alkaloids/piscibactin.yaml","piscibactin"]],"b":[["NCBITaxon%3A1200302","Photobacterium damselae subsp. piscicida DI21"]]},{"id":"NCBITaxon:1211968","l":"Streptomyces sp. YIM 56141","na":1,"nb":1,"a":[["alkaloids/cycloheximide.yaml","cycloheximide"]],"b":[["NCBITaxon%3A1211968","Streptomyces sp. YIM 56141"]]},{"id":"NCBITaxon:121624","l":"Phyllosticta capitalensis","na":1,"nb":1,"a":[["unclassified/macrophorin-a.yaml","macrophorin A"]],"b":[["NCBITaxon%3A121624","Phyllosticta capitalensis"]]},{"id":"NCBITaxon:1218706","l":"Streptomyces sp. NEAU-Z4","na":1,"nb":1,"a":[["alkaloids/streptazone-e.yaml","streptazone E"]],"b":[["NCBITaxon%3A1218706","Streptomyces sp. NEAU-Z4"]]},{"id":"NCBITaxon:1220201","l":"Aspergillus creber","na":1,"nb":1,"a":[["polyketides/asperlactone.yaml","asperlactone"]],"b":[["NCBITaxon%3A1220201","Aspergillus creber"]]},{"id":"NCBITaxon:122368","l":"Cercospora beticola","na":1,"nb":1,"a":[["polyketides/cercosporin.yaml","cercosporin"]],"b":[["NCBITaxon%3A122368","Cercospora beticola"]]},{"id":"NCBITaxon:1225197","l":"Streptococcus mutans B04Sm5","na":1,"nb":1,"a":[["unclassified/mutanocyclin.yaml","mutanocyclin"]],"b":[["NCBITaxon%3A1225197","Streptococcus mutans B04Sm5"]]},{"id":"NCBITaxon:1231908","l":"Pseudomonas sp. Q71576","na":1,"nb":1,"a":[["unclassified/spiruchostatin-a.yaml","spiruchostatin A"]],"b":[["NCBITaxon%3A1231908","Pseudomonas sp. Q71576"]]},{"id":"NCBITaxon:1234059","l":"","na":1,"nb":1,"a":[["amino_acids_and_peptides/bottromycin-d.yaml","bottromycin D"]],"b":[["NCBITaxon%3A1234059","Streptomyces sp. WMMB 272"]]},{"id":"NCBITaxon:1239282","l":"Dactylosporangium sp. SC14051","na":1,"nb":1,"a":[["polyketides/dactylocycline-a.yaml","dactylocycline A"]],"b":[["NCBITaxon%3A1239282","Dactylosporangium sp. SC14051"]]},{"id":"NCBITaxon:1243767","l":"Hypoxylon pulicicidum","na":1,"nb":1,"a":[["unclassified/nodulisporic-acid-f.yaml","nodulisporic acid F"]],"b":[["NCBITaxon%3A1243767","Hypoxylon pulicicidum"]]},{"id":"NCBITaxon:124418","l":"Tolypocladium album","na":1,"nb":1,"a":[["unclassified/terpendole-e.yaml","terpendole E"]],"b":[["NCBITaxon%3A124418","Tolypocladium album"]]},{"id":"NCBITaxon:1245512","l":"Streptomyces sp. XZQH13","na":1,"nb":1,"a":[["polyketides/mycotrienin-i.yaml","mycotrienin I"]],"b":[["NCBITaxon%3A1245512","Streptomyces sp. XZQH13"]]},{"id":"NCBITaxon:1254432","l":"Sorangium cellulosum So0157-2","na":1,"nb":1,"a":[["unclassified/epothilone-b.yaml","epothilone B"]],"b":[["NCBITaxon%3A1254432","Sorangium cellulosum So0157-2"]]},{"id":"NCBITaxon:1263194","l":"Penicillium spathulatum","na":1,"nb":1,"a":[["unclassified/asperphenamate.yaml","asperphenamate"]],"b":[["NCBITaxon%3A1263194","Penicillium spathulatum"]]},{"id":"NCBITaxon:1265536","l":"Streptomyces sp. ML694-90F3","na":1,"nb":1,"a":[["unclassified/incednine.yaml","incednine"]],"b":[["NCBITaxon%3A1265536","Streptomyces sp. ML694-90F3"]]},{"id":"NCBITaxon:1266744","l":"Talaromyces purpureogenus","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"]],"b":[["NCBITaxon%3A1266744","Talaromyces purpureogenus"]]},{"id":"NCBITaxon:1283841","l":"","na":1,"nb":1,"a":[["alkaloids/isoindolin-1-one.yaml","isoindolin-1-one"]],"b":[["NCBITaxon%3A1283841","Stachybotrys chlorohalonatus IBT 40285"]]},{"id":"NCBITaxon:128434","l":"Talaromyces diversus","na":1,"nb":1,"a":[["polyketides/patulin.yaml","patulin"]],"b":[["NCBITaxon%3A128434","Talaromyces diversus"]]},{"id":"NCBITaxon:1286194","l":"Streptomyces sp. NRRL F-4415","na":1,"nb":1,"a":[["amino_acids_and_peptides/gobichelin-a.yaml","gobichelin A"]],"b":[["NCBITaxon%3A1286194","Streptomyces sp. NRRL F-4415"]]},{"id":"NCBITaxon:1287682","l":"Aspergillus felis","na":1,"nb":1,"a":[["unclassified/sartorypyrone-a.yaml","sartorypyrone A"]],"b":[["NCBITaxon%3A1287682","Aspergillus felis"]]},{"id":"NCBITaxon:1288082","l":"","na":1,"nb":1,"a":[["alkaloids/chlorizidine-a.yaml","chlorizidine A"]],"b":[["NCBITaxon%3A1288082","Streptomyces sp. CNH287"]]},{"id":"NCBITaxon:1288362","l":"Actinoplanes sp. ATCC 53533","na":1,"nb":1,"a":[["amino_acids_and_peptides/uk-68-597.yaml","UK-68,597"]],"b":[["NCBITaxon%3A1288362","Actinoplanes sp. ATCC 53533"]]},{"id":"NCBITaxon:1296353","l":"","na":1,"nb":1,"a":[["fatty_acids/1-heptadecene.yaml","1-heptadecene"]],"b":[["NCBITaxon%3A1296353","Oscillatoria amoena CCAP 1459/39"]]},{"id":"NCBITaxon:1297573","l":"Cyanobium sp. LEGE 06113","na":1,"nb":1,"a":[["polyketides/hierridin-b.yaml","hierridin B"]],"b":[["NCBITaxon%3A1297573","Cyanobium sp. LEGE 06113"]]},{"id":"NCBITaxon:1314803","l":"Dendrothele bispora","na":1,"nb":1,"a":[["amino_acids_and_peptides/dendrothelin-a.yaml","dendrothelin A"]],"b":[["NCBITaxon%3A1314803","Dendrothele bispora"]]},{"id":"NCBITaxon:1321967","l":"Streptomyces sp. MJ635-86F5","na":1,"nb":1,"a":[["unclassified/cremimycin.yaml","cremimycin"]],"b":[["NCBITaxon%3A1321967","Streptomyces sp. MJ635-86F5"]]},{"id":"NCBITaxon:1325723","l":"Fusarium neocosmosporiellum","na":1,"nb":1,"a":[["amino_acids_and_peptides/cyclosporin-c.yaml","cyclosporin C"]],"b":[["NCBITaxon%3A1325723","Fusarium neocosmosporiellum"]]},{"id":"NCBITaxon:1341132","l":"Aspergillus welwitschiae","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"]],"b":[["NCBITaxon%3A1341132","Aspergillus welwitschiae"]]},{"id":"NCBITaxon:1352936","l":"Streptomyces roseochromogenus subsp. oscitans DS 12.976","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/clorobiocin.yaml","clorobiocin"]],"b":[["NCBITaxon%3A1352936","Streptomyces roseochromogenus subsp. oscitans DS 12.976"]]},{"id":"NCBITaxon:1353533","l":"Pseudoalteromonas luteoviolacea 2ta16","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/pentabromopseudilin.yaml","pentabromopseudilin"]],"b":[["NCBITaxon%3A1353533","Pseudoalteromonas luteoviolacea 2ta16"]]},{"id":"NCBITaxon:13563","l":"Heterobasidion annosum","na":1,"nb":1,"a":[["polyketides/patulin.yaml","patulin"]],"b":[["NCBITaxon%3A13563","Heterobasidion annosum"]]},{"id":"NCBITaxon:138280","l":"Aspergillus petrakii","na":1,"nb":1,"a":[["polyketides/patulin.yaml","patulin"]],"b":[["NCBITaxon%3A138280","Aspergillus petrakii"]]},{"id":"NCBITaxon:1388766","l":"Aspergillus ruber CBS 135680","na":1,"nb":1,"a":[["polyketides/flavoglaucin.yaml","flavoglaucin"]],"b":[["NCBITaxon%3A1388766","Aspergillus ruber CBS 135680"]]},{"id":"NCBITaxon:139077","l":"Mucidula mucida","na":1,"nb":1,"a":[["polyketides/mucidin.yaml","mucidin"]],"b":[["NCBITaxon%3A139077","Mucidula mucida"]]},{"id":"NCBITaxon:139090","l":"Albatrellus ovinus","na":1,"nb":1,"a":[["unclassified/ilicicolin-b.yaml","ilicicolin B"]],"b":[["NCBITaxon%3A139090","Albatrellus ovinus"]]},{"id":"NCBITaxon:1392253","l":"","na":1,"nb":1,"a":[["polyketides/doxorubicin.yaml","doxorubicin"]],"b":[["NCBITaxon%3A1392253","Talaromyces aculeatus ATCC 10409"]]},{"id":"NCBITaxon:1405805","l":"","na":1,"nb":1,"a":[["polyketides/flavoglaucin.yaml","flavoglaucin"]],"b":[["NCBITaxon%3A1405805","Aspergillus pseudoglaucus"]]},{"id":"NCBITaxon:1408161","l":"Plenodomus tracheiphilus IPT5","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/mellein.yaml","(-)-Mellein"]],"b":[["NCBITaxon%3A1408161","Plenodomus tracheiphilus IPT5"]]},{"id":"NCBITaxon:1408450","l":"Methylobacter tundripaludum 21/22","na":1,"nb":1,"a":[["unclassified/tundrenone.yaml","tundrenone"]],"b":[["NCBITaxon%3A1408450","Methylobacter tundripaludum 21/22"]]},{"id":"NCBITaxon:1414447","l":"Streptomyces sp. MK498-98F14","na":1,"nb":1,"a":[["unclassified/polyoxypeptin.yaml","polyoxypeptin"]],"b":[["NCBITaxon%3A1414447","Streptomyces sp. MK498-98F14"]]},{"id":"NCBITaxon:1429103","l":"Streptomyces sp. RM-5-8","na":1,"nb":1,"a":[["unclassified/5-isoprenylindole-3-carboxylate-d-glycosyl-ester.yaml","5-isoprenylindole-3-carboxylate β-D-glycosyl ester"]],"b":[["NCBITaxon%3A1429103","Streptomyces sp. RM-5-8"]]},{"id":"NCBITaxon:1434086","l":"Jahnella sp. MSr9139","na":1,"nb":1,"a":[["amino_acids_and_peptides/microsclerodermin.yaml","microsclerodermin"]],"b":[["NCBITaxon%3A1434086","Jahnella sp. MSr9139"]]},{"id":"NCBITaxon:143450","l":"Cercospora arachidicola","na":1,"nb":1,"a":[["polyketides/dothistromin.yaml","dothistromin"]],"b":[["NCBITaxon%3A143450","Mycosphaerella arachidis"]]},{"id":"NCBITaxon:1437473","l":"Pseudoalteromonas sp. PS5","na":1,"nb":1,"a":[["alkaloids/2-3-4-5-tetrabromopyrrole.yaml","2,3,4,5-tetrabromopyrrole"]],"b":[["NCBITaxon%3A1437473","Pseudoalteromonas sp. PS5"]]},{"id":"NCBITaxon:1463851","l":"Streptomyces sp. NRRL F-4474","na":1,"nb":1,"a":[["alkaloids/jbir-126.yaml","JBIR-126"]],"b":[["NCBITaxon%3A1463851","Streptomyces sp. NRRL F-4474"]]},{"id":"NCBITaxon:1463861","l":"Streptomyces sp. NRRL F-525","na":1,"nb":1,"a":[["unclassified/phosphonoacetic-acid.yaml","phosphonoacetic acid"]],"b":[["NCBITaxon%3A1463861","Streptomyces sp. NRRL F-525"]]},{"id":"NCBITaxon:1463881","l":"Streptomyces sp. NRRL S-118","na":1,"nb":1,"a":[["amino_acids_and_peptides/lagmysin.yaml","lagmysin"]],"b":[["NCBITaxon%3A1463881","Streptomyces sp. NRRL S-118"]]},{"id":"NCBITaxon:1463899","l":"Streptomyces sp. NRRL S-325","na":1,"nb":1,"a":[["amino_acids_and_peptides/detoxin-s1.yaml","detoxin S1"]],"b":[["NCBITaxon%3A1463899","Streptomyces sp. NRRL S-325"]]},{"id":"NCBITaxon:1463904","l":"Streptomyces sp. NRRL S-378","na":1,"nb":1,"a":[["polyketides/komodoquinone-b.yaml","komodoquinone B"]],"b":[["NCBITaxon%3A1463904","Streptomyces sp. NRRL S-378"]]},{"id":"NCBITaxon:1463920","l":"Streptomyces sp. NRRL S-87","na":1,"nb":1,"a":[["amino_acids_and_peptides/thioholgamide-a.yaml","thioholgamide A"]],"b":[["NCBITaxon%3A1463920","Streptomyces sp. NRRL S-87"]]},{"id":"NCBITaxon:146537","l":"Streptomyces azureus","na":1,"nb":1,"a":[["amino_acids_and_peptides/thiostrepton.yaml","thiostrepton"]],"b":[["NCBITaxon%3A146537","Streptomyces azureus"]]},{"id":"NCBITaxon:1469403","l":"Streptomyces sp. ZJ306","na":1,"nb":1,"a":[["unclassified/ikarugamycin.yaml","ikarugamycin"]],"b":[["NCBITaxon%3A1469403","Streptomyces sp. ZJ306"]]},{"id":"NCBITaxon:1470541","l":"Aspergillus neoniveus","na":1,"nb":1,"a":[["alkaloids/aspochalasin-c.yaml","aspochalasin C"]],"b":[["NCBITaxon%3A1470541","Aspergillus neoniveus"]]},{"id":"NCBITaxon:1470557","l":"Streptomyces sp. Tu 6176","na":1,"nb":1,"a":[["polyketides/nataxazole.yaml","nataxazole"]],"b":[["NCBITaxon%3A1470557","Streptomyces sp. Tu 6176"]]},{"id":"NCBITaxon:1484062","l":"Streptomyces sp. YN86","na":1,"nb":1,"a":[["carbohydrates/paulomycin.yaml","paulomycin"]],"b":[["NCBITaxon%3A1484062","Streptomyces sp. YN86"]]},{"id":"NCBITaxon:1487711","l":"Streptomyces sp. NTK 937","na":1,"nb":1,"a":[["unclassified/caboxamycin.yaml","caboxamycin"]],"b":[["NCBITaxon%3A1487711","Streptomyces sp. NTK 937"]]},{"id":"NCBITaxon:1488357","l":"Streptomyces sp. MBT28","na":1,"nb":1,"a":[["alkaloids/7-prenylisatin.yaml","7-prenylisatin"]],"b":[["NCBITaxon%3A1488357","Streptomyces sp. MBT28"]]},{"id":"NCBITaxon:150374","l":"Escovopsis weberi","na":1,"nb":1,"a":[["unclassified/melinacidin-iv.yaml","melinacidin IV"]],"b":[["NCBITaxon%3A150374","Escovopsis weberi"]]},{"id":"NCBITaxon:1509516","l":"Streptomyces sp. NRRL WC-3908","na":1,"nb":1,"a":[["amino_acids_and_peptides/cyclothiazomycin-c.yaml","cyclothiazomycin C"]],"b":[["NCBITaxon%3A1509516","Streptomyces sp. NRRL WC-3908"]]},{"id":"NCBITaxon:1535768","l":"Streptomyces lunaelactis","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/ferroverdin.yaml","ferroverdin"]],"b":[["NCBITaxon%3A1535768","Streptomyces lunaelactis"]]},{"id":"NCBITaxon:155900","l":"uncultured organism","na":1,"nb":1,"a":[["alkaloids/trabectedin.yaml","trabectedin"]],"b":[["NCBITaxon%3A155900","uncultured organism"]]},{"id":"NCBITaxon:1562372","l":"Nonomuraea sp. MJM5123","na":1,"nb":1,"a":[["unclassified/ecumicin.yaml","ecumicin"]],"b":[["NCBITaxon%3A1562372","Nonomuraea sp. MJM5123"]]},{"id":"NCBITaxon:1563222","l":"Citrobacter pasteurii","na":1,"nb":1,"a":[["amino_acids_and_peptides/citrocin.yaml","citrocin"]],"b":[["NCBITaxon%3A1563222","Citrobacter pasteurii"]]},{"id":"NCBITaxon:1570104","l":"Nostoc sp. CCAP 1453/38","na":1,"nb":1,"a":[["alkaloids/nocuolin-a.yaml","Nocuolin A"]],"b":[["NCBITaxon%3A1570104","Nostoc sp. CCAP 1453/38"]]},{"id":"NCBITaxon:1571532","l":"Streptomyces sp. CNQ431","na":1,"nb":1,"a":[["unclassified/splenocin-c.yaml","splenocin C"]],"b":[["NCBITaxon%3A1571532","Streptomyces sp. CNQ431"]]},{"id":"NCBITaxon:1576542","l":"Thelonectria olida","na":1,"nb":1,"a":[["polyketides/patulin.yaml","patulin"]],"b":[["NCBITaxon%3A1576542","Thelonectria olida"]]},{"id":"NCBITaxon:1589764","l":"Acrocalymma vagum","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/alternariol.yaml","alternariol"]],"b":[["NCBITaxon%3A1589764","Acrocalymma vagum"]]},{"id":"NCBITaxon:1592326","l":"Actinobacteria bacterium OK006","na":1,"nb":1,"a":[["amino_acids_and_peptides/pepticinnamin-e.yaml","pepticinnamin E"]],"b":[["NCBITaxon%3A1592326","Actinobacteria bacterium OK006"]]},{"id":"NCBITaxon:1593482","l":"Massilia sp. YMA4","na":1,"nb":1,"a":[["unclassified/empedopeptin.yaml","empedopeptin"]],"b":[["NCBITaxon%3A1593482","Massilia sp. YMA4"]]},{"id":"NCBITaxon:160621","l":"","na":1,"nb":1,"a":[["alkaloids/saxitoxin.yaml","saxitoxin"]],"b":[["NCBITaxon%3A160621","Lingulaulax polyedra"]]},{"id":"NCBITaxon:161354","l":"Planomonospora alba","na":1,"nb":1,"a":[["amino_acids_and_peptides/planosporicin.yaml","planosporicin"]],"b":[["NCBITaxon%3A161354","Planomonospora alba"]]},{"id":"NCBITaxon:1628","l":"Lactobacillus vermiforme","na":1,"nb":1,"a":[["carbohydrates/toyocamycin.yaml","toyocamycin"]],"b":[["NCBITaxon%3A1628","Lactobacillus vermiforme"]]},{"id":"NCBITaxon:1635094","l":"Albophoma","na":1,"nb":1,"a":[["unclassified/sesquicillin-a.yaml","sesquicillin A"]],"b":[["NCBITaxon%3A1635095","Albophoma yamanashiensis"]]},{"id":"NCBITaxon:1635095","l":"Albophoma yamanashiensis","na":1,"nb":1,"a":[["unclassified/terpendole-e.yaml","terpendole E"]],"b":[["NCBITaxon%3A1635095","Albophoma yamanashiensis"]]},{"id":"NCBITaxon:1650571","l":"Streptomyces pathocidini","na":1,"nb":1,"a":[["alkaloids/8-azaguanine.yaml","8-azaguanine"]],"b":[["NCBITaxon%3A1650571","Streptomyces pathocidini"]]},{"id":"NCBITaxon:1654360","l":"Photobacterium galatheae","na":1,"nb":1,"a":[["alkaloids/holomycin.yaml","holomycin"]],"b":[["NCBITaxon%3A1654360","Photobacterium galatheae"]]},{"id":"NCBITaxon:1670457","l":"Streptomyces sp. MSC090213JE08","na":1,"nb":1,"a":[["alkaloids/streptazone-e.yaml","streptazone E"]],"b":[["NCBITaxon%3A1670457","Streptomyces sp. MSC090213JE08"]]},{"id":"NCBITaxon:167740","l":"Alternaria gaisen","na":1,"nb":1,"a":[["alkaloids/ak-toxin-i.yaml","AK-toxin I"]],"b":[["NCBITaxon%3A167740","Alternaria gaisen"]]},{"id":"NCBITaxon:1678028","l":"Massilia sp. NR 4-1","na":1,"nb":1,"a":[["unclassified/massiliachelin.yaml","Massiliachelin"]],"b":[["NCBITaxon%3A1678028","Massilia sp. NR 4-1"]]},{"id":"NCBITaxon:168477","l":"Phialomyces arenicola","na":1,"nb":1,"a":[["amino_acids_and_peptides/acrophiarin.yaml","acrophiarin"]],"b":[["NCBITaxon%3A168477","Phialomyces arenicola"]]},{"id":"NCBITaxon:1690815","l":"Pseudonocardia sp. HH130630-07","na":1,"nb":1,"a":[["polyketides/selvamicin.yaml","selvamicin"]],"b":[["NCBITaxon%3A1690815","Pseudonocardia sp. HH130630-07"]]},{"id":"NCBITaxon:1696011","l":"Nannocystis sp. MB1016","na":1,"nb":1,"a":[["unclassified/nannocystin-a.yaml","nannocystin a"]],"b":[["NCBITaxon%3A1696011","Nannocystis sp. MB1016"]]},{"id":"NCBITaxon:170651","l":"Vibrio neptunius","na":1,"nb":1,"a":[["alkaloids/piscibactin.yaml","piscibactin"]],"b":[["NCBITaxon%3A170651","Vibrio neptunius"]]},{"id":"NCBITaxon:171258","l":"Streptomyces sp. TP-A0274","na":1,"nb":1,"a":[["alkaloids/staurosporine-2.yaml","staurosporine"]],"b":[["NCBITaxon%3A171258","Streptomyces sp. TP-A0274"]]},{"id":"NCBITaxon:1714301","l":"Streptomyces sp. CNH365","na":1,"nb":1,"a":[["polyketides/anthracimycin.yaml","anthracimycin"]],"b":[["NCBITaxon%3A1714301","Streptomyces sp. CNH365"]]},{"id":"NCBITaxon:1715678","l":"Streptomyces sp. NRRL 12068","na":1,"nb":1,"a":[["alkaloids/a33853.yaml","A33853"]],"b":[["NCBITaxon%3A1715678","Streptomyces sp. NRRL 12068"]]},{"id":"NCBITaxon:1718875","l":"","na":1,"nb":1,"a":[["polyketides/asperlactone.yaml","asperlactone"]],"b":[["NCBITaxon%3A1718875","Exophiala sp."]]},{"id":"NCBITaxon:1718958","l":"","na":1,"nb":1,"a":[["polyketides/c-1027-chromophore.yaml","C-1027 chromophore"]],"b":[["NCBITaxon%3A1718958","Streptomyces sp. CB00657"]]},{"id":"NCBITaxon:1718988","l":"Streptomyces sp. CB03608","na":1,"nb":1,"a":[["polyketides/c-1027-chromophore.yaml","C-1027 chromophore"]],"b":[["NCBITaxon%3A1718988","Streptomyces sp. CB03608"]]},{"id":"NCBITaxon:1740725","l":"Streptomyces sp. DSM 11171","na":1,"nb":1,"a":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"]],"b":[["NCBITaxon%3A1740725","Streptomyces sp. DSM 11171"]]},{"id":"NCBITaxon:1752060","l":"Actinomadura fulva subsp. indica","na":1,"nb":1,"a":[["unclassified/fluvirucin-b2.yaml","fluvirucin B2"]],"b":[["NCBITaxon%3A1752060","Actinomadura fulva subsp. indica"]]},{"id":"NCBITaxon:1756463","l":"Streptomyces sp. NCIB 11649","na":1,"nb":1,"a":[["alkaloids/cyclizidine.yaml","cyclizidine"]],"b":[["NCBITaxon%3A1756463","Streptomyces sp. NCIB 11649"]]},{"id":"NCBITaxon:179408","l":"Oscillatoria nigro-viridis PCC 7112","na":1,"nb":1,"a":[["amino_acids_and_peptides/viridisamide-a.yaml","viridisamide A"]],"b":[["NCBITaxon%3A179408","Phormidium nigroviride PCC 7112"]]},{"id":"NCBITaxon:1809648","l":"Lysobacter sp. RH2180-5","na":1,"nb":1,"a":[["unclassified/lysocin-e.yaml","lysocin E"]],"b":[["NCBITaxon%3A1809648","Lysobacter sp. RH2180-5"]]},{"id":"NCBITaxon:1810909","l":"Emericella desertorum","na":1,"nb":1,"a":[["unclassified/paxilline.yaml","paxilline"]],"b":[["NCBITaxon%3A1810909","Aspergillus desertorum"]]},{"id":"NCBITaxon:1813822","l":"Xylariales sp. No.14919","na":1,"nb":1,"a":[["polyketides/fr901512.yaml","FR901512"]],"b":[["NCBITaxon%3A1813822","Xylariales sp. No.14919"]]},{"id":"NCBITaxon:181527","l":"Pluteus cervinus","na":1,"nb":1,"a":[["alkaloids/psilocybin.yaml","psilocybin"]],"b":[["NCBITaxon%3A181527","Pluteus cervinus"]]},{"id":"NCBITaxon:1816","l":"Actinokineospora fastidiosa","na":1,"nb":1,"a":[["amino_acids_and_peptides/nocathiacin-i.yaml","nocathiacin I"]],"b":[["NCBITaxon%3A1816","Actinokineospora fastidiosa"]]},{"id":"NCBITaxon:181762","l":"Psilocybe cubensis","na":1,"nb":1,"a":[["alkaloids/psilocybin.yaml","psilocybin"]],"b":[["NCBITaxon%3A181762","Psilocybe cubensis"]]},{"id":"NCBITaxon:182774","l":"Methylophaga alcalica","na":1,"nb":1,"a":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]],"b":[["NCBITaxon%3A182774","Methylophaga alcalica"]]},{"id":"NCBITaxon:183763","l":"Streptomonospora alba","na":1,"nb":1,"a":[["amino_acids_and_peptides/streptomonomicin.yaml","streptomonomicin"]],"b":[["NCBITaxon%3A183763","Streptomonospora alba"]]},{"id":"NCBITaxon:1849710","l":"Streptomyces sp. SD85","na":1,"nb":1,"a":[["unclassified/sceliphrolactam.yaml","sceliphrolactam"]],"b":[["NCBITaxon%3A1849710","Streptomyces sp. SD85"]]},{"id":"NCBITaxon:1854574","l":"Streptomyces huasconensis","na":1,"nb":1,"a":[["amino_acids_and_peptides/huascopeptin.yaml","huascopeptin"]],"b":[["NCBITaxon%3A1854574","Streptomyces huasconensis"]]},{"id":"NCBITaxon:1867796","l":"Vitiosangium cumulatum","na":1,"nb":1,"a":[["terpenoids/2-hydroxysorangiadenosine.yaml","2-hydroxysorangiadenosine"]],"b":[["NCBITaxon%3A1867796","Vitiosangium cumulatum"]]},{"id":"NCBITaxon:1869241","l":"Nostoc sp. CENA543","na":1,"nb":1,"a":[["amino_acids_and_peptides/nodularin-2.yaml","nodularin"]],"b":[["NCBITaxon%3A1869241","Nostoc sp. CENA543"]]},{"id":"NCBITaxon:1871626","l":"Verrucosispora sp.","na":1,"nb":1,"a":[["polyketides/kendomycin-b.yaml","kendomycin B"]],"b":[["NCBITaxon%3A1871626","Verrucosispora sp."]]},{"id":"NCBITaxon:1883427","l":"Actinomycetia bacterium","na":1,"nb":1,"a":[["polyketides/anthrabenzoxocinone.yaml","anthrabenzoxocinone"]],"b":[["NCBITaxon%3A1883427","Actinomycetes bacterium"]]},{"id":"NCBITaxon:1884262","l":"Aspergillus cejpii","na":1,"nb":1,"a":[["polyketides/patulin.yaml","patulin"]],"b":[["NCBITaxon%3A1884262","Aspergillus cejpii"]]},{"id":"NCBITaxon:1890733","l":"Limnothrix sp. CACIAM 69d","na":1,"nb":1,"a":[["amino_acids_and_peptides/limnothamide.yaml","limnothamide"]],"b":[["NCBITaxon%3A1890733","Limnothrix sp. CACIAM 69d"]]},{"id":"NCBITaxon:1898658","l":"Streptomyces sp. SoC090715LN-16","na":1,"nb":1,"a":[["polyketides/isoindolinomycin.yaml","isoindolinomycin"]],"b":[["NCBITaxon%3A1898658","Streptomyces sp. SoC090715LN-16"]]},{"id":"NCBITaxon:190048","l":"Corynascus sepedonium","na":1,"nb":1,"a":[["polyketides/patulin.yaml","patulin"]],"b":[["NCBITaxon%3A190048","Corynascus sepedonium"]]},{"id":"NCBITaxon:190592","l":"Aphanizomenon sp. NH-5","na":1,"nb":1,"a":[["alkaloids/neosaxitoxin.yaml","neosaxitoxin"]],"b":[["NCBITaxon%3A190592","Aphanizomenon sp. NH-5"]]},{"id":"NCBITaxon:1909395","l":"","na":1,"nb":1,"a":[["amino_acids_and_peptides/kistamicin-a.yaml","kistamicin A"]],"b":[["NCBITaxon%3A1909395","[Actinomadura] parvosata subsp. kistnae"]]},{"id":"NCBITaxon:1912599","l":"Pseudomonas acidophila","na":1,"nb":1,"a":[["amino_acids_and_peptides/sulfazecin.yaml","sulfazecin"]],"b":[["NCBITaxon%3A1912599","Paraburkholderia acidicola"]]},{"id":"NCBITaxon:1915","l":"Streptomyces lincolnensis","na":1,"nb":1,"a":[["carbohydrates/lincomycin.yaml","lincomycin"]],"b":[["NCBITaxon%3A1915","Streptomyces lincolnensis"]]},{"id":"NCBITaxon:1918945","l":"Vibrio spartinae","na":1,"nb":1,"a":[["amino_acids_and_peptides/vancomycin.yaml","vancomycin"]],"b":[["NCBITaxon%3A1918945","Vibrio spartinae"]]},{"id":"NCBITaxon:1929279","l":"Myxococcus sp.","na":1,"nb":1,"a":[["unclassified/myxochromide-b.yaml","myxochromide B"]],"b":[["NCBITaxon%3A1929279","Myxococcus sp."]]},{"id":"NCBITaxon:1930928","l":"Fischerella sp. TAU","na":1,"nb":1,"a":[["alkaloids/ambiguine-p.yaml","ambiguine P"]],"b":[["NCBITaxon%3A1930928","Fischerella sp. TAU"]]},{"id":"NCBITaxon:1930929","l":"Fischerella sp. SAG 46.79","na":1,"nb":1,"a":[["alkaloids/fischerindole-l.yaml","fischerindole L"]],"b":[["NCBITaxon%3A1930929","Fischerella sp. SAG 46.79"]]},{"id":"NCBITaxon:1933","l":"Streptoalloteichus tenebrarius","na":1,"nb":1,"a":[["carbohydrates/tobramycin.yaml","tobramycin"]],"b":[["NCBITaxon%3A1933","Streptoalloteichus tenebrarius"]]},{"id":"NCBITaxon:193393","l":"Hypomyces subiculosus","na":1,"nb":1,"a":[["polyketides/hypothemycin.yaml","hypothemycin"]],"b":[["NCBITaxon%3A193393","Hypomyces subiculosus"]]},{"id":"NCBITaxon:1934390","l":"Streptomyces sp. RK95-74","na":1,"nb":1,"a":[["unclassified/neomediomycin-b.yaml","neomediomycin B"]],"b":[["NCBITaxon%3A1934390","Streptomyces sp. RK95-74"]]},{"id":"NCBITaxon:193460","l":"Streptomyces sanglieri","na":1,"nb":1,"a":[["unclassified/lactonamycin-z.yaml","lactonamycin Z"]],"b":[["NCBITaxon%3A193460","Streptomyces sanglieri"]]},{"id":"NCBITaxon:1934914","l":"Cystobacterineae bacterium","na":1,"nb":1,"a":[["unclassified/myxochromide-d-2.yaml","myxochromide D"]],"b":[["NCBITaxon%3A1934914","Cystobacterineae bacterium"]]},{"id":"NCBITaxon:1949","l":"Streptomyces mycarofaciens","na":1,"nb":1,"a":[["polyketides/midecamycin.yaml","midecamycin"]],"b":[["NCBITaxon%3A1949","Streptomyces mycarofaciens"]]},{"id":"NCBITaxon:1960","l":"Streptomyces vinaceus","na":1,"nb":1,"a":[["polyketides/resistomycin.yaml","resistomycin"]],"b":[["NCBITaxon%3A1960","Streptomyces vinaceus"]]},{"id":"NCBITaxon:1966654","l":"Nodularia sp. HBU26","na":1,"nb":1,"a":[["alkaloids/nocuolin-a.yaml","Nocuolin A"]],"b":[["NCBITaxon%3A1966654","Nodularia sp. HBU26"]]},{"id":"NCBITaxon:198094","l":"Bacillus anthracis str. Ames","na":1,"nb":1,"a":[["alkaloids/petrobactin.yaml","petrobactin"]],"b":[["NCBITaxon%3A198094","Bacillus anthracis str. Ames"]]},{"id":"NCBITaxon:1981977","l":"Streptomyces zelensis","na":1,"nb":1,"a":[["alkaloids/cc-1065.yaml","CC-1065"]],"b":[["NCBITaxon%3A1981977","Streptomyces zelensis"]]},{"id":"NCBITaxon:1989","l":"Actinomadura sp.","na":1,"nb":1,"a":[["polyketides/maduramicin.yaml","maduramicin"]],"b":[["NCBITaxon%3A1989","Actinomadura sp."]]},{"id":"NCBITaxon:2002978","l":"Herpetosiphon sp. B060","na":1,"nb":1,"a":[["alkaloids/siphonazole.yaml","siphonazole"]],"b":[["NCBITaxon%3A2002978","Herpetosiphon sp. B060"]]},{"id":"NCBITaxon:201500","l":"Streptomyces sp. KCTC 0041BP","na":1,"nb":1,"a":[["polyketides/10-11-dihydro-8-deoxy-12-13-deepoxy-12-13-dihydrochalcomycin.yaml","10,11-dihydro-8-deoxy-12,13-deepoxy-12,13-dihydrochalcomycin"]],"b":[["NCBITaxon%3A201500","Streptomyces sp. KCTC 0041BP"]]},{"id":"NCBITaxon:2025","l":"Thermoactinomyces sp.","na":1,"nb":1,"a":[["amino_acids_and_peptides/mechercharmycin.yaml","mechercharmycin"]],"b":[["NCBITaxon%3A2025","Thermoactinomyces sp."]]},{"id":"NCBITaxon:2026763","l":"Myxococcales bacterium","na":1,"nb":1,"a":[["polyketides/sorangipyranone.yaml","Sorangipyranone"]],"b":[["NCBITaxon%3A2026763","Myxococcales bacterium"]]},{"id":"NCBITaxon:2039464","l":"Actinoplanes tsinanensis","na":1,"nb":1,"a":[["alkaloids/chuangxinmycin.yaml","(−)-chuangxinmycin"]],"b":[["NCBITaxon%3A2039464","Actinoplanes tsinanensis"]]},{"id":"NCBITaxon:2045","l":"Nocardioides simplex","na":1,"nb":1,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]],"b":[["NCBITaxon%3A2045","Pimelobacter simplex"]]},{"id":"NCBITaxon:2055235","l":"Anabaena sp. UHCC 0451","na":1,"nb":1,"a":[["polyketides/scytophycin.yaml","scytophycin"]],"b":[["NCBITaxon%3A2055235","Anabaena sp. UHCC 0451"]]},{"id":"NCBITaxon:2055236","l":"Nostoc sp. UHCC 0450","na":1,"nb":1,"a":[["polyketides/swinholide-a.yaml","swinholide A"]],"b":[["NCBITaxon%3A2055236","Nostoc sp. UHCC 0450"]]},{"id":"NCBITaxon:205686","l":"","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/3-p-hydroxyphenyl-1-2-propanediol.yaml","3-(p-hydroxyphenyl)-1,2-propanediol"]],"b":[["NCBITaxon%3A205686","Ascochyta lentis"]]},{"id":"NCBITaxon:205922","l":"Pseudomonas fluorescens Pf0-1","na":1,"nb":1,"a":[["unclassified/gacamide-a.yaml","gacamide A"]],"b":[["NCBITaxon%3A205922","Pseudomonas fluorescens Pf0-1"]]},{"id":"NCBITaxon:206662","l":"Streptomyces sp. FR-008","na":1,"nb":1,"a":[["polyketides/candicidin.yaml","candicidin"]],"b":[["NCBITaxon%3A206662","Streptomyces sp. FR-008"]]},{"id":"NCBITaxon:2083010","l":"Streptomyces sp. MA5143a","na":1,"nb":1,"a":[["amino_acids_and_peptides/edha.yaml","EDHA"]],"b":[["NCBITaxon%3A2083010","Streptomyces sp. MA5143a"]]},{"id":"NCBITaxon:208439","l":"Amycolatopsis japonica","na":1,"nb":1,"a":[["amino_acids_and_peptides/ristomycin-a.yaml","ristomycin A"]],"b":[["NCBITaxon%3A208439","Amycolatopsis japonica"]]},{"id":"NCBITaxon:210207","l":"Aspergillus foveolatus","na":1,"nb":1,"a":[["unclassified/paxilline.yaml","paxilline"]],"b":[["NCBITaxon%3A210207","Aspergillus foveolatus"]]},{"id":"NCBITaxon:2116518","l":"Micromonospora arborensis","na":1,"nb":1,"a":[["amino_acids_and_peptides/sch-18640.yaml","Sch 18640"]],"b":[["NCBITaxon%3A2116518","Micromonospora arborensis"]]},{"id":"NCBITaxon:213754","l":"Rhodococcus sp. T3H5","na":1,"nb":1,"a":[["carbohydrates/tubercidin.yaml","tubercidin"]],"b":[["NCBITaxon%3A213754","Rhodococcus sp. T3H5"]]},{"id":"NCBITaxon:2162715","l":"Streptomyces sp. CS147","na":1,"nb":1,"a":[["alkaloids/colibrimycin.yaml","colibrimycin"]],"b":[["NCBITaxon%3A2162715","Streptomyces sp. CS147"]]},{"id":"NCBITaxon:216595","l":"","na":1,"nb":1,"a":[["unclassified/viscosin.yaml","viscosin"]],"b":[["NCBITaxon%3A216595","Pseudomonas [fluorescens] SBW25"]]},{"id":"NCBITaxon:216895","l":"Vibrio vulnificus CMCP6","na":1,"nb":1,"a":[["alkaloids/vulnibactin.yaml","vulnibactin"]],"b":[["NCBITaxon%3A216895","Vibrio vulnificus CMCP6"]]},{"id":"NCBITaxon:2169583","l":"Pseudomonas sp. SXM-1","na":1,"nb":1,"a":[["amino_acids_and_peptides/pyoverdine-sxm-1.yaml","pyoverdine SXM-1"]],"b":[["NCBITaxon%3A2169583","Pseudomonas sp. SXM-1"]]},{"id":"NCBITaxon:2203205","l":"Streptomyces sp. WAC 01529","na":1,"nb":1,"a":[["amino_acids_and_peptides/corbomycin.yaml","corbomycin"]],"b":[["NCBITaxon%3A2203205","Streptomyces sp. WAC 01529"]]},{"id":"NCBITaxon:221710","l":"Streptomyces sp. AM-7161","na":1,"nb":1,"a":[["polyketides/medermycin.yaml","medermycin"]],"b":[["NCBITaxon%3A221710","Streptomyces sp. AM-7161"]]},{"id":"NCBITaxon:222892","l":"Streptomyces nodosus subsp. asukaensis","na":1,"nb":1,"a":[["polyketides/asukamycin.yaml","asukamycin"]],"b":[["NCBITaxon%3A222892","Streptomyces nodosus subsp. asukaensis"]]},{"id":"NCBITaxon:2231603","l":"Cephalosporium aphidicola","na":1,"nb":1,"a":[["terpenoids/aphidicolin.yaml","aphidicolin"]],"b":[["NCBITaxon%3A2231603","Akanthomyces muscarius"]]},{"id":"NCBITaxon:225353","l":"Monascus aurantiacus","na":1,"nb":1,"a":[["polyketides/citrinin.yaml","(+)-citrinin"]],"b":[["NCBITaxon%3A225353","Monascus aurantiacus"]]},{"id":"NCBITaxon:225362","l":"Paracoccus haeundaensis","na":1,"nb":1,"a":[["terpenoids/astaxanthin.yaml","astaxanthin"]],"b":[["NCBITaxon%3A225362","Paracoccus haeundaensis"]]},{"id":"NCBITaxon:228095","l":"Pseudomonas sp. M18","na":1,"nb":1,"a":[["alkaloids/pyoluteorin.yaml","pyoluteorin"]],"b":[["NCBITaxon%3A228095","Pseudomonas sp. M18"]]},{"id":"NCBITaxon:2283197","l":"Streptomyces sp. S816","na":1,"nb":1,"a":[["polyketides/pentamycin-2.yaml","pentamycin"]],"b":[["NCBITaxon%3A2283197","Streptomyces sp. S816"]]},{"id":"NCBITaxon:228732","l":"Streptomyces hygroscopicus subsp. yingchengensis","na":1,"nb":1,"a":[["carbohydrates/validamycin-a.yaml","validamycin A"]],"b":[["NCBITaxon%3A228732","Streptomyces hygroscopicus subsp. yingchengensis"]]},{"id":"NCBITaxon:229535","l":"Penicillium nordicum","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"]],"b":[["NCBITaxon%3A229535","Penicillium nordicum"]]},{"id":"NCBITaxon:2304196","l":"Scytonema sp. UIC 10036","na":1,"nb":1,"a":[["amino_acids_and_peptides/scytodecamide.yaml","scytodecamide"]],"b":[["NCBITaxon%3A2304196","Scytonema sp. UIC 10036"]]},{"id":"NCBITaxon:235466","l":"Streptomyces garyphalus","na":1,"nb":1,"a":[["amino_acids_and_peptides/cycloserine.yaml","cycloserine"]],"b":[["NCBITaxon%3A235466","Streptomyces garyphalus"]]},{"id":"NCBITaxon:240499","l":"Calcarisporium arbuscula","na":1,"nb":1,"a":[["polyketides/patulin.yaml","patulin"]],"b":[["NCBITaxon%3A240499","Calcarisporium arbuscula"]]},{"id":"NCBITaxon:244967","l":"Streptomyces sp. HK803","na":1,"nb":1,"a":[["polyketides/phoslactomycin-b.yaml","phoslactomycin B"]],"b":[["NCBITaxon%3A244967","Streptomyces sp. HK803"]]},{"id":"NCBITaxon:249581","l":"Streptomyces ossamyceticus","na":1,"nb":1,"a":[["polyketides/ossamycin.yaml","ossamycin"]],"b":[["NCBITaxon%3A249581","Streptomyces ossamyceticus"]]},{"id":"NCBITaxon:2530358","l":"Moorena bouillonii bAprat14","na":1,"nb":1,"a":[["unclassified/apratoxin-a.yaml","apratoxin A"]],"b":[["NCBITaxon%3A2530358","Moorena bouillonii bAprat14"]]},{"id":"NCBITaxon:2545265","l":"Streptomyces sp. AJS327","na":1,"nb":1,"a":[["alkaloids/tetrachlorizine.yaml","tetrachlorizine"]],"b":[["NCBITaxon%3A2545265","Streptomyces sp. AJS327"]]},{"id":"NCBITaxon:255848","l":"Streptomyces aizunensis","na":1,"nb":1,"a":[["polyketides/eco-02301.yaml","ECO-02301"]],"b":[["NCBITaxon%3A255848","Streptomyces aizunensis"]]},{"id":"NCBITaxon:257313","l":"Bordetella pertussis (strain Tohama I / ATCC BAA-589 / NCTC 13251)","na":1,"nb":1,"a":[["amino_acids_and_peptides/alcaligin.yaml","alcaligin"]],"b":[["NCBITaxon%3A257313","Bordetella pertussis Tohama I"]]},{"id":"NCBITaxon:2577050","l":"Streptomyces mozunensis","na":1,"nb":1,"a":[["amino_acids_and_peptides/phosphoramidon.yaml","phosphoramidon"]],"b":[["NCBITaxon%3A2577050","Streptomyces mozunensis"]]},{"id":"NCBITaxon:2583819","l":"Streptomyces sp. DASNCL29","na":1,"nb":1,"a":[["polyketides/nigericin.yaml","nigericin"]],"b":[["NCBITaxon%3A2583819","Streptomyces sp. DASNCL29"]]},{"id":"NCBITaxon:2590016","l":"Labrenzia sp. PHM005","na":1,"nb":1,"a":[["polyketides/labrenzin.yaml","labrenzin"]],"b":[["NCBITaxon%3A2590016","Labrenzia sp. PHM005"]]},{"id":"NCBITaxon:2601673","l":"Streptomyces sp. ISID311","na":1,"nb":1,"a":[["polyketides/cyphomycin.yaml","cyphomycin"]],"b":[["NCBITaxon%3A2601673","Streptomyces sp. ISID311"]]},{"id":"NCBITaxon:2603660","l":"Planctomycetales bacterium 10988","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/3-5-dibromo-p-anisic-acid.yaml","3,5-dibromo-p-anisic acid"]],"b":[["NCBITaxon%3A2603660","Planctomycetales bacterium 10988"]]},{"id":"NCBITaxon:2607326","l":"Streptomonospora sp. PA3","na":1,"nb":1,"a":[["polyketides/persiamycin-a.yaml","persiamycin A"]],"b":[["NCBITaxon%3A2607326","Streptomonospora sp. PA3"]]},{"id":"NCBITaxon:267608","l":"Ralstonia nicotianae (strain ATCC BAA-1114 / GMI1000)","na":1,"nb":1,"a":[["unclassified/micacocidin.yaml","micacocidin"]],"b":[["NCBITaxon%3A267608","Ralstonia pseudosolanacearum GMI1000"]]},{"id":"NCBITaxon:269709","l":"","na":1,"nb":1,"a":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]],"b":[["NCBITaxon%3A269709","Methylotuvimicrobium kenyense"]]},{"id":"NCBITaxon:269797","l":"Methanosarcina barkeri str. Fusaro","na":1,"nb":1,"a":[["alkaloids/coenzyme-f430.yaml","coenzyme F430"]],"b":[["NCBITaxon%3A269797","Methanosarcina barkeri str. Fusaro"]]},{"id":"NCBITaxon:2712845","l":"Aetokthonos hydrillicola Thurmond2011","na":1,"nb":1,"a":[["alkaloids/aetokthonotoxin.yaml","aetokthonotoxin"]],"b":[["NCBITaxon%3A2712845","Aetokthonos hydrillicola Thurmond2011"]]},{"id":"NCBITaxon:272123","l":"","na":1,"nb":1,"a":[["amino_acids_and_peptides/anachelin.yaml","anachelin"]],"b":[["NCBITaxon%3A272123","Anabaena cylindrica PCC 7122"]]},{"id":"NCBITaxon:272618","l":"Streptomyces sp. CS684","na":1,"nb":1,"a":[["polyketides/laidlomycin.yaml","laidlomycin"]],"b":[["NCBITaxon%3A272618","Streptomyces sp. CS684"]]},{"id":"NCBITaxon:27326","l":"Metschnikowia pulcherrima","na":1,"nb":1,"a":[["unclassified/pulcherriminic-acid.yaml","pulcherriminic acid"]],"b":[["NCBITaxon%3A27326","Metschnikowia pulcherrima"]]},{"id":"NCBITaxon:273526","l":"Serratia marcescens subsp. marcescens Db11","na":1,"nb":1,"a":[["unclassified/althiomycin.yaml","althiomycin"]],"b":[["NCBITaxon%3A273526","Serratia marcescens subsp. marcescens Db11"]]},{"id":"NCBITaxon:2749999","l":"Pseudomonas sp. RtIB026","na":1,"nb":1,"a":[["unclassified/ma026.yaml","MA026"]],"b":[["NCBITaxon%3A2749999","Pseudomonas sp. RtIB026"]]},{"id":"NCBITaxon:276768","l":"","na":1,"nb":1,"a":[["polyketides/curacin-a-2.yaml","curacin A"]],"b":[["NCBITaxon%3A276768","Moorena producens 19L"]]},{"id":"NCBITaxon:279113","l":"Collimonas pratensis","na":1,"nb":1,"a":[["unclassified/malleobactin-x.yaml","malleobactin X"]],"b":[["NCBITaxon%3A279113","Collimonas pratensis"]]},{"id":"NCBITaxon:2797167","l":"","na":1,"nb":1,"a":[["polyketides/nystatin-a1.yaml","nystatin A1"]],"b":[["NCBITaxon%3A2797167","Streptomyces sp. HSG2"]]},{"id":"NCBITaxon:28040","l":"Micromonospora griseorubida","na":1,"nb":1,"a":[["polyketides/mycinamicin-ii.yaml","mycinamicin II"]],"b":[["NCBITaxon%3A28040","Micromonospora griseorubida"]]},{"id":"NCBITaxon:28064","l":"","na":1,"nb":1,"a":[["alkaloids/heme-d1-2.yaml","heme D1"]],"b":[["NCBITaxon%3A28064","Heliobacterium mobile"]]},{"id":"NCBITaxon:28069","l":"Chlorogloeopsis sp.","na":1,"nb":1,"a":[["unclassified/mycosporine-glycine.yaml","mycosporine glycine"]],"b":[["NCBITaxon%3A28069","Chlorogloeopsis sp."]]},{"id":"NCBITaxon:2820808","l":"Lysobacter sp. K5869","na":1,"nb":1,"a":[["unclassified/hypeptin.yaml","hypeptin"]],"b":[["NCBITaxon%3A2820808","Lysobacter sp. K5869"]]},{"id":"NCBITaxon:2834438","l":"Chloroflexi bacterium TSY","na":1,"nb":1,"a":[["polyketides/aurantoside-a.yaml","aurantoside A"]],"b":[["NCBITaxon%3A2834438","Chloroflexi bacterium TSY"]]},{"id":"NCBITaxon:284030","l":"Streptomyces graminearus","na":1,"nb":1,"a":[["carbohydrates/gougerotin.yaml","gougerotin"]],"b":[["NCBITaxon%3A284030","Streptomyces graminearus"]]},{"id":"NCBITaxon:284032","l":"Streptomyces heliomycini","na":1,"nb":1,"a":[["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"]],"b":[["NCBITaxon%3A284032","Streptomyces heliomycini"]]},{"id":"NCBITaxon:2842453","l":"Amycolatopsis aidingensis","na":1,"nb":1,"a":[["polyketides/nystatin-a1.yaml","nystatin A1"]],"b":[["NCBITaxon%3A2842453","Amycolatopsis aidingensis"]]},{"id":"NCBITaxon:284637","l":"Streptomyces griseovariabilis subsp. bandungensis","na":1,"nb":1,"a":[["unclassified/quinomycin.yaml","quinomycin"]],"b":[["NCBITaxon%3A284637","Streptomyces griseovariabilis subsp. bandungensis"]]},{"id":"NCBITaxon:285482","l":"Streptomyces tsusimaensis","na":1,"nb":1,"a":[["unclassified/valinomycin-2.yaml","valinomycin"]],"b":[["NCBITaxon%3A285482","Streptomyces tsusimaensis"]]},{"id":"NCBITaxon:285500","l":"Streptomyces luteocolor","na":1,"nb":1,"a":[["carbohydrates/bd-12.yaml","BD-12"]],"b":[["NCBITaxon%3A285500","Streptomyces luteocolor"]]},{"id":"NCBITaxon:285519","l":"Streptomyces spinichromogenes","na":1,"nb":1,"a":[["polyketides/lankamycin.yaml","lankamycin"]],"b":[["NCBITaxon%3A285519","Streptomyces spinichromogenes"]]},{"id":"NCBITaxon:285525","l":"Streptomyces sahachiroi","na":1,"nb":1,"a":[["unclassified/azinomycin-b.yaml","azinomycin B"]],"b":[["NCBITaxon%3A285525","Streptomyces sahachiroi"]]},{"id":"NCBITaxon:285531","l":"","na":1,"nb":1,"a":[["alkaloids/rubradirin.yaml","rubradirin"]],"b":[["NCBITaxon%3A285531","Streptomyces rubradiris"]]},{"id":"NCBITaxon:285564","l":"","na":1,"nb":1,"a":[["polyketides/butyrolactol-a.yaml","butyrolactol A"]],"b":[["NCBITaxon%3A285564","Streptomyces ardesiacus"]]},{"id":"NCBITaxon:285574","l":"Streptomyces erythrochromogenes","na":1,"nb":1,"a":[["polyketides/komodoquinone-b.yaml","komodoquinone B"]],"b":[["NCBITaxon%3A285574","Streptomyces erythrochromogenes"]]},{"id":"NCBITaxon:28573","l":"Talaromyces islandicus","na":1,"nb":1,"a":[["polyketides/endocrocin.yaml","endocrocin"]],"b":[["NCBITaxon%3A28573","Talaromyces islandicus"]]},{"id":"NCBITaxon:28985","l":"Kluyveromyces lactis","na":1,"nb":1,"a":[["alkaloids/pulcherrimin.yaml","pulcherrimin"]],"b":[["NCBITaxon%3A28985","Kluyveromyces lactis"]]},{"id":"NCBITaxon:2912","l":"Gonyaulax","na":1,"nb":1,"a":[["alkaloids/saxitoxin.yaml","saxitoxin"]],"b":[["NCBITaxon%3A66791","Gonyaulax spinifera"]]},{"id":"NCBITaxon:2914159","l":"","na":1,"nb":1,"a":[["polyketides/apoptolidin.yaml","apoptolidin"]],"b":[["NCBITaxon%3A2914159","Amycolatopsis sp. FU40"]]},{"id":"NCBITaxon:2919322","l":"Amycolatopsis sp. EV170708-02-1","na":1,"nb":1,"a":[["polyketides/nocamycin-v.yaml","nocamycin V"]],"b":[["NCBITaxon%3A2919322","Amycolatopsis sp. EV170708-02-1"]]},{"id":"NCBITaxon:2925","l":"Alexandrium catenella","na":1,"nb":1,"a":[["alkaloids/saxitoxin.yaml","saxitoxin"]],"b":[["NCBITaxon%3A2925","Alexandrium catenella"]]},{"id":"NCBITaxon:292802","l":"Micromonospora cinerea","na":1,"nb":1,"a":[["unclassified/be-43547a1.yaml","BE-43547A1"]],"b":[["NCBITaxon%3A292802","Micromonospora cinerea"]]},{"id":"NCBITaxon:29306","l":"Streptomyces griseoluteus","na":1,"nb":1,"a":[["alkaloids/griseoluteic-acid.yaml","griseoluteic acid"]],"b":[["NCBITaxon%3A29306","Streptomyces griseoluteus"]]},{"id":"NCBITaxon:29308","l":"Streptomyces tenjimariensis","na":1,"nb":1,"a":[["carbohydrates/istamycin.yaml","istamycin"]],"b":[["NCBITaxon%3A29308","Streptomyces tenjimariensis"]]},{"id":"NCBITaxon:29456","l":"Alteromonas sp. B-10-31","na":1,"nb":1,"a":[["unclassified/marinostatin.yaml","marinostatin"]],"b":[["NCBITaxon%3A29456","Alteromonas sp. B-10-31"]]},{"id":"NCBITaxon:298386","l":"Photobacterium profundum SS9","na":1,"nb":1,"a":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]],"b":[["NCBITaxon%3A298386","Photobacterium profundum SS9"]]},{"id":"NCBITaxon:29845","l":"Penicillium vulpinum","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"]],"b":[["NCBITaxon%3A29845","Penicillium vulpinum"]]},{"id":"NCBITaxon:298653","l":"Frankia sp. EAN1pec","na":1,"nb":1,"a":[["polyketides/frankiamicin.yaml","frankiamicin"]],"b":[["NCBITaxon%3A298653","Parafrankia sp. EAN1pec"]]},{"id":"NCBITaxon:299254","l":"Streptomyces sp. NRRL 11266","na":1,"nb":1,"a":[["polyketides/tetronomycin.yaml","tetronomycin"]],"b":[["NCBITaxon%3A299254","Streptomyces sp. NRRL 11266"]]},{"id":"NCBITaxon:300251","l":"Paraconiothyrium","na":1,"nb":1,"a":[["polyketides/calbistrin-a.yaml","calbistrin A"]],"b":[["NCBITaxon%3A300256","Paraconiothyrium cyclothyrioides"]]},{"id":"NCBITaxon:307120","l":"Micromonospora marina","na":1,"nb":1,"a":[["unclassified/thiocoraline.yaml","thiocoraline"]],"b":[["NCBITaxon%3A307120","Micromonospora marina"]]},{"id":"NCBITaxon:312309","l":"","na":1,"nb":1,"a":[["unclassified/ape-vf.yaml","APE Vf"]],"b":[["NCBITaxon%3A312309","Aliivibrio fischeri ES114"]]},{"id":"NCBITaxon:313624","l":"Nodularia spumigena CCY9414","na":1,"nb":1,"a":[["amino_acids_and_peptides/spumigin-e.yaml","Spumigin E"]],"b":[["NCBITaxon%3A313624","Nodularia spumigena CCY9414"]]},{"id":"NCBITaxon:314092","l":"Shewanella pneumatophori","na":1,"nb":1,"a":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]],"b":[["NCBITaxon%3A314092","Shewanella pneumatophori"]]},{"id":"NCBITaxon:314563","l":"Streptomyces sp. TP-A0584","na":1,"nb":1,"a":[["amino_acids_and_peptides/goadsporin.yaml","goadsporin"]],"b":[["NCBITaxon%3A314563","Streptomyces sp. TP-A0584"]]},{"id":"NCBITaxon:318829","l":"Magnaporthe oryzae","na":1,"nb":1,"a":[["polyketides/nectriapyrone.yaml","nectriapyrone"]],"b":[["NCBITaxon%3A318829","Pyricularia oryzae"]]},{"id":"NCBITaxon:319633","l":"Streptomyces cinnabarigriseus","na":1,"nb":1,"a":[["amino_acids_and_peptides/cinnabaramide-a.yaml","cinnabaramide A"]],"b":[["NCBITaxon%3A319633","Streptomyces cinnabarigriseus"]]},{"id":"NCBITaxon:322159","l":"Streptococcus thermophilus (strain ATCC BAA-491 / LMD-9)","na":1,"nb":1,"a":[["amino_acids_and_peptides/streptide.yaml","streptide"]],"b":[["NCBITaxon%3A322159","Streptococcus thermophilus LMD-9"]]},{"id":"NCBITaxon:322710","l":"Azotobacter vinelandii DJ","na":1,"nb":1,"a":[["amino_acids_and_peptides/azotobactin-d.yaml","azotobactin D"]],"b":[["NCBITaxon%3A322710","Azotobacter vinelandii DJ"]]},{"id":"NCBITaxon:324869","l":"Lysobacter sp. ATCC 53042","na":1,"nb":1,"a":[["unclassified/lysobactin.yaml","lysobactin"]],"b":[["NCBITaxon%3A324869","Lysobacter sp. ATCC 53042"]]},{"id":"NCBITaxon:329558","l":"Planktothrix agardhii NIVA-CYA 116","na":1,"nb":1,"a":[["unclassified/cyanopeptolin-1138.yaml","cyanopeptolin 1138"]],"b":[["NCBITaxon%3A329558","Planktothrix agardhii NIVA-CYA 116"]]},{"id":"NCBITaxon:333849","l":"","na":1,"nb":1,"a":[["amino_acids_and_peptides/enterocin-a.yaml","enterocin A"]],"b":[["NCBITaxon%3A333849","Enterococcus faecium DO"]]},{"id":"NCBITaxon:333964","l":"Xenorhabdus indica","na":1,"nb":1,"a":[["unclassified/taxlllaid-a.yaml","taxlllaid A"]],"b":[["NCBITaxon%3A333964","Xenorhabdus indica"]]},{"id":"NCBITaxon:334858","l":"Goodfellowiella coeruleoviolacea","na":1,"nb":1,"a":[["amino_acids_and_peptides/epoxomicin.yaml","epoxomicin"]],"b":[["NCBITaxon%3A334858","Goodfellowiella coeruleoviolacea"]]},{"id":"NCBITaxon:335854","l":"Nigrospora oryzae","na":1,"nb":1,"a":[["terpenoids/aphidicolin.yaml","aphidicolin"]],"b":[["NCBITaxon%3A335854","Nigrospora oryzae"]]},{"id":"NCBITaxon:338584","l":"Polymorphospora rubra","na":1,"nb":1,"a":[["terpenoids/trehangelin.yaml","trehangelin"]],"b":[["NCBITaxon%3A338584","Polymorphospora rubra"]]},{"id":"NCBITaxon:338904","l":"Enterobacteriaceae bacterium DC260","na":1,"nb":1,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A338904","Enterobacteriaceae bacterium DC260"]]},{"id":"NCBITaxon:338905","l":"Enterobacteriaceae bacterium DC404","na":1,"nb":1,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A338905","Enterobacteriaceae bacterium DC404"]]},{"id":"NCBITaxon:338906","l":"Enterobacteriaceae bacterium DC416","na":1,"nb":1,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A338906","Enterobacteriaceae bacterium DC416"]]},{"id":"NCBITaxon:338907","l":"Enterobacteriaceae bacterium DC413","na":1,"nb":1,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A338907","Enterobacteriaceae bacterium DC413"]]},{"id":"NCBITaxon:33900","l":"","na":1,"nb":1,"a":[["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"]],"b":[["NCBITaxon%3A33900","Streptomyces murinus"]]},{"id":"NCBITaxon:33902","l":"Streptomyces roseofulvus","na":1,"nb":1,"a":[["polyketides/frenolicin-b.yaml","frenolicin B"]],"b":[["NCBITaxon%3A33902","Streptomyces roseofulvus"]]},{"id":"NCBITaxon:33915","l":"Saccharopolyspora sp.","na":1,"nb":1,"a":[["amino_acids_and_peptides/kyamicin.yaml","kyamicin"]],"b":[["NCBITaxon%3A33915","Saccharopolyspora sp."]]},{"id":"NCBITaxon:340414","l":"Aspergillus fumigatiaffinis","na":1,"nb":1,"a":[["polyketides/neosartorin.yaml","neosartorin"]],"b":[["NCBITaxon%3A340414","Aspergillus fumigatiaffinis"]]},{"id":"NCBITaxon:34392","l":"Microsporum","na":1,"nb":1,"a":[["polyketides/flavoglaucin.yaml","flavoglaucin"]],"b":[["NCBITaxon%3A63405","Microsporum canis"]]},{"id":"NCBITaxon:348901","l":"Cercospora zeina","na":1,"nb":1,"a":[["polyketides/cercosporin-2.yaml","cercosporin"]],"b":[["NCBITaxon%3A348901","Cercospora zeina"]]},{"id":"NCBITaxon:349725","l":"Micromonospora sp. ML1","na":1,"nb":1,"a":[["unclassified/thiocoraline.yaml","thiocoraline"]],"b":[["NCBITaxon%3A349725","Micromonospora sp. ML1"]]},{"id":"NCBITaxon:351674","l":"Xenorhabdus miraniensis","na":1,"nb":1,"a":[["amino_acids_and_peptides/ambactin.yaml","ambactin"]],"b":[["NCBITaxon%3A351674","Xenorhabdus miraniensis"]]},{"id":"NCBITaxon:355249","l":"Streptomyces sp. Tu6071","na":1,"nb":1,"a":[["unclassified/phenalinolactone-a.yaml","phenalinolactone A"]],"b":[["NCBITaxon%3A355249","Streptomyces sp. Tu6071"]]},{"id":"NCBITaxon:356796","l":"Algoriphagus sp. KK10202C","na":1,"nb":1,"a":[["polyketides/carotenoid.yaml","carotenoid"]],"b":[["NCBITaxon%3A356796","Algoriphagus sp. KK10202C"]]},{"id":"NCBITaxon:35700","l":"Heliophilum fasciatum","na":1,"nb":1,"a":[["unclassified/heme-d1.yaml","heme D1"]],"b":[["NCBITaxon%3A35700","Heliophilum fasciatum"]]},{"id":"NCBITaxon:35762","l":"Planobispora rosea","na":1,"nb":1,"a":[["amino_acids_and_peptides/ge2270.yaml","GE2270"]],"b":[["NCBITaxon%3A35762","Planobispora rosea"]]},{"id":"NCBITaxon:357993","l":"Penicillium ribium","na":1,"nb":1,"a":[["alkaloids/psychrophilin-a.yaml","psychrophilin A"]],"b":[["NCBITaxon%3A357993","Penicillium ribium"]]},{"id":"NCBITaxon:360723","l":"Actinomadura melliaura","na":1,"nb":1,"a":[["alkaloids/at2433-a1.yaml","AT2433-A1"]],"b":[["NCBITaxon%3A360723","Actinomadura melliaura"]]},{"id":"NCBITaxon:362242","l":"","na":1,"nb":1,"a":[["polyketides/mycolactone-b.yaml","mycolactone B"]],"b":[["NCBITaxon%3A362242","Mycobacterium ulcerans Agy99"]]},{"id":"NCBITaxon:36642","l":"Aspergillus terricola","na":1,"nb":1,"a":[["polyketides/kojic-acid.yaml","kojic acid"]],"b":[["NCBITaxon%3A138288","Aspergillus terricola var. indicus"]]},{"id":"NCBITaxon:36648","l":"Penicillium hirsutum","na":1,"nb":1,"a":[["polyketides/patulin.yaml","patulin"]],"b":[["NCBITaxon%3A36648","Penicillium hirsutum"]]},{"id":"NCBITaxon:36651","l":"Penicillium digitatum","na":1,"nb":1,"a":[["alkaloids/tryptoquialanine.yaml","tryptoquialanine"]],"b":[["NCBITaxon%3A36651","Penicillium digitatum"]]},{"id":"NCBITaxon:36653","l":"Penicillium commune","na":1,"nb":1,"a":[["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]],"b":[["NCBITaxon%3A36653","Penicillium commune"]]},{"id":"NCBITaxon:36654","l":"Penicillium gladioli","na":1,"nb":1,"a":[["unclassified/4-oxomacrophorin-a.yaml","4-oxomacrophorin A"]],"b":[["NCBITaxon%3A36654","Penicillium gladioli"]]},{"id":"NCBITaxon:367779","l":"Streptomyces sp. NRRL 30748","na":1,"nb":1,"a":[["polyketides/meridamycin.yaml","meridamycin"]],"b":[["NCBITaxon%3A367779","Streptomyces sp. NRRL 30748"]]},{"id":"NCBITaxon:370437","l":"Dietzia sp. CQ4","na":1,"nb":1,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A370437","Dietzia sp. CQ4"]]},{"id":"NCBITaxon:371632","l":"Candidatus Streptomyces philanthi bv. triangulum","na":1,"nb":1,"a":[["polyketides/piericidin-a.yaml","piericidin A"]],"b":[["NCBITaxon%3A371632","Candidatus Streptomyces philanthi bv. triangulum"]]},{"id":"NCBITaxon:373994","l":"Rivularia sp. PCC 7116","na":1,"nb":1,"a":[["amino_acids_and_peptides/cyanochelin-a.yaml","cyanochelin A"]],"b":[["NCBITaxon%3A373994","Rivularia sp. PCC 7116"]]},{"id":"NCBITaxon:375285","l":"Pseudoalteromonas sp. DS-12","na":1,"nb":1,"a":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]],"b":[["NCBITaxon%3A375285","Pseudoalteromonas sp. DS-12"]]},{"id":"NCBITaxon:37727","l":"Talaromyces marneffei","na":1,"nb":1,"a":[["polyketides/monascorubrin.yaml","monascorubrin"]],"b":[["NCBITaxon%3A37727","Talaromyces marneffei"]]},{"id":"NCBITaxon:38005","l":"Tolypocladium cylindrosporum","na":1,"nb":1,"a":[["unclassified/terpendole-e.yaml","terpendole E"]],"b":[["NCBITaxon%3A38005","Tolypocladium cylindrosporum"]]},{"id":"NCBITaxon:388913","l":"","na":1,"nb":1,"a":[["alkaloids/isoindolin-1-one.yaml","isoindolin-1-one"]],"b":[["NCBITaxon%3A1283841","Stachybotrys chlorohalonatus IBT 40285"]]},{"id":"NCBITaxon:38945","l":"Flammulina velutipes","na":1,"nb":1,"a":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]],"b":[["NCBITaxon%3A38945","Flammulina velutipes"]]},{"id":"NCBITaxon:390239","l":"Streptomyces lohii","na":1,"nb":1,"a":[["polyketides/bafilomycin-b1.yaml","bafilomycin B1"]],"b":[["NCBITaxon%3A390239","Streptomyces lohii"]]},{"id":"NCBITaxon:39291","l":"","na":1,"nb":1,"a":[["amino_acids_and_peptides/ethynylserine.yaml","β-ethynylserine"]],"b":[["NCBITaxon%3A39291","Agroathelia rolfsii"]]},{"id":"NCBITaxon:394","l":"Sinorhizobium fredii (strain NBRC 101917 / NGR234)","na":1,"nb":1,"a":[["terpenoids/gibberellin.yaml","gibberellin"]],"b":[["NCBITaxon%3A394","Sinorhizobium fredii NGR234"]]},{"id":"NCBITaxon:394193","l":"Amycolatopsis saalfeldensis","na":1,"nb":1,"a":[["amino_acids_and_peptides/saalfelduracin.yaml","saalfelduracin"]],"b":[["NCBITaxon%3A394193","Amycolatopsis saalfeldensis"]]},{"id":"NCBITaxon:39447","l":"","na":1,"nb":1,"a":[["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"]],"b":[["NCBITaxon%3A39447","Gymnodinium catenatum"]]},{"id":"NCBITaxon:39478","l":"Streptomyces laurentii","na":1,"nb":1,"a":[["amino_acids_and_peptides/thiostrepton.yaml","thiostrepton"]],"b":[["NCBITaxon%3A39478","Streptomyces laurentii"]]},{"id":"NCBITaxon:396596","l":"Burkholderia ambifaria IOP40-10","na":1,"nb":1,"a":[["polyketides/cepacin-a.yaml","cepacin A"]],"b":[["NCBITaxon%3A396596","Burkholderia ambifaria IOP40-10"]]},{"id":"NCBITaxon:40199","l":"Fusarium avenaceum","na":1,"nb":1,"a":[["unclassified/beauvericin.yaml","beauvericin"]],"b":[["NCBITaxon%3A40199","Fusarium avenaceum"]]},{"id":"NCBITaxon:40381","l":"Aspergillus unguis","na":1,"nb":1,"a":[["polyketides/sterigmatocystin.yaml","sterigmatocystin"]],"b":[["NCBITaxon%3A40381","Aspergillus unguis"]]},{"id":"NCBITaxon:404220","l":"Streptomyces sp. CK4412","na":1,"nb":1,"a":[["polyketides/tautomycetin-2.yaml","tautomycetin"]],"b":[["NCBITaxon%3A404220","Streptomyces sp. CK4412"]]},{"id":"NCBITaxon:40492","l":"Stereum hirsutum","na":1,"nb":1,"a":[["terpenoids/hirsutene.yaml","hirsutene"]],"b":[["NCBITaxon%3A40492","Stereum hirsutum"]]},{"id":"NCBITaxon:40993","l":"Aspergillus carbonarius","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"]],"b":[["NCBITaxon%3A40993","Aspergillus carbonarius"]]},{"id":"NCBITaxon:41047","l":"Aspergillus thermomutatus","na":1,"nb":1,"a":[["unclassified/pyripyropene-a.yaml","pyripyropene A"]],"b":[["NCBITaxon%3A41047","Aspergillus thermomutatus"]]},{"id":"NCBITaxon:41057","l":"Aspergillus unilateralis","na":1,"nb":1,"a":[["unclassified/viridicatumtoxin.yaml","viridicatumtoxin"]],"b":[["NCBITaxon%3A41057","Aspergillus unilateralis"]]},{"id":"NCBITaxon:411144","l":"Amycolatopsis sp. CP2808","na":1,"nb":1,"a":[["polyketides/ansacarbamitocin.yaml","ansacarbamitocin"]],"b":[["NCBITaxon%3A411144","Amycolatopsis sp. CP2808"]]},{"id":"NCBITaxon:41281","l":"Aspergillus niveus","na":1,"nb":1,"a":[["alkaloids/aspochalasin-c.yaml","aspochalasin C"]],"b":[["NCBITaxon%3A41281","Aspergillus niveus"]]},{"id":"NCBITaxon:41288","l":"Aspergillus aureoterreus","na":1,"nb":1,"a":[["polyketides/citreoviridin.yaml","citreoviridin"]],"b":[["NCBITaxon%3A41288","Aspergillus aureoterreus"]]},{"id":"NCBITaxon:41413","l":"Aspergillus glaucus","na":1,"nb":1,"a":[["polyketides/flavoglaucin.yaml","flavoglaucin"]],"b":[["NCBITaxon%3A1906","Streptomyces fradiae"]]},{"id":"NCBITaxon:414689","l":"Nostoc sp. 'Peltigera membranacea cyanobiont'","na":1,"nb":1,"a":[["polyketides/nosperin.yaml","nosperin"]],"b":[["NCBITaxon%3A414689","Nostoc sp. 'Peltigera membranacea cyanobiont'"]]},{"id":"NCBITaxon:414996","l":"Actinopolyspora erythraea","na":1,"nb":1,"a":[["carbohydrates/tubercidin.yaml","tubercidin"]],"b":[["NCBITaxon%3A414996","Actinopolyspora erythraea"]]},{"id":"NCBITaxon:416175","l":"Actinomyces sp. Lu 9419","na":1,"nb":1,"a":[["carbohydrates/cetoniacytone-a.yaml","cetoniacytone A"]],"b":[["NCBITaxon%3A416175","Actinomyces sp. Lu 9419"]]},{"id":"NCBITaxon:41759","l":"Aspergillus multicolor","na":1,"nb":1,"a":[["polyketides/sterigmatocystin.yaml","sterigmatocystin"]],"b":[["NCBITaxon%3A41759","Aspergillus multicolor"]]},{"id":"NCBITaxon:418759","l":"Saccharopolyspora cebuensis","na":1,"nb":1,"a":[["amino_acids_and_peptides/cebulantin.yaml","cebulantin"]],"b":[["NCBITaxon%3A418759","Saccharopolyspora cebuensis"]]},{"id":"NCBITaxon:418855","l":"","na":1,"nb":1,"a":[["terpenoids/napyradiomycin.yaml","napyradiomycin"]],"b":[["NCBITaxon%3A418855","Streptomyces sp. CNQ-525"]]},{"id":"NCBITaxon:41984","l":"Aspergillus tamarii","na":1,"nb":1,"a":[["unclassified/cyclopiazonic-acid.yaml","α-cyclopiazonic acid"]],"b":[["NCBITaxon%3A41984","Aspergillus tamarii"]]},{"id":"NCBITaxon:426436","l":"","na":1,"nb":1,"a":[["terpenoids/2-methylisoborneol.yaml","2-methylisoborneol"]],"b":[["NCBITaxon%3A426436","Phormidium tenue BDU 40061"]]},{"id":"NCBITaxon:42673","l":"Fusarium nygamai","na":1,"nb":1,"a":[["alkaloids/fusaric-acid.yaml","fusaric acid"]],"b":[["NCBITaxon%3A42673","Fusarium nygamai"]]},{"id":"NCBITaxon:428401","l":"Streptomyces sp. UC 11065","na":1,"nb":1,"a":[["alkaloids/pyrrolomycin-a.yaml","pyrrolomycin A"]],"b":[["NCBITaxon%3A428401","Streptomyces sp. UC 11065"]]},{"id":"NCBITaxon:428986","l":"Micromonospora sp. Tu 6368","na":1,"nb":1,"a":[["polyketides/saquayamycin-z.yaml","saquayamycin Z"]],"b":[["NCBITaxon%3A428986","Micromonospora sp. Tu 6368"]]},{"id":"NCBITaxon:434487","l":"Penicillium novae-zeelandiae","na":1,"nb":1,"a":[["unclassified/penitrem-a.yaml","penitrem A"]],"b":[["NCBITaxon%3A434487","Penicillium novae-zeelandiae"]]},{"id":"NCBITaxon:43759","l":"Streptomyces wedmorensis","na":1,"nb":1,"a":[["unclassified/fosfomycin.yaml","fosfomycin"]],"b":[["NCBITaxon%3A43759","Streptomyces wedmorensis"]]},{"id":"NCBITaxon:443906","l":"Clavibacter michiganensis subsp. michiganensis NCPPB 382","na":1,"nb":1,"a":[["amino_acids_and_peptides/michiganin-a.yaml","michiganin A"]],"b":[["NCBITaxon%3A443906","Clavibacter michiganensis subsp. michiganensis NCPPB 382"]]},{"id":"NCBITaxon:445969","l":"Duganella sp. B2","na":1,"nb":1,"a":[["alkaloids/violacein.yaml","violacein"]],"b":[["NCBITaxon%3A445969","Duganella sp. B2"]]},{"id":"NCBITaxon:446787","l":"Actinopolymorpha rutila","na":1,"nb":1,"a":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"]],"b":[["NCBITaxon%3A446787","Actinopolymorpha rutila"]]},{"id":"NCBITaxon:449440","l":"Microcystis aeruginosa NIES-87","na":1,"nb":1,"a":[["amino_acids_and_peptides/kasumigamide.yaml","kasumigamide"]],"b":[["NCBITaxon%3A449440","Microcystis aeruginosa NIES-87"]]},{"id":"NCBITaxon:449441","l":"Microcystis aeruginosa NIES-88","na":1,"nb":1,"a":[["amino_acids_and_peptides/kawaguchipeptin-a.yaml","kawaguchipeptin A"]],"b":[["NCBITaxon%3A449441","Microcystis aeruginosa NIES-88"]]},{"id":"NCBITaxon:45","l":"Melittangium lichenicola","na":1,"nb":1,"a":[["unclassified/melithiazol-a.yaml","melithiazol A"]],"b":[["NCBITaxon%3A45","Melittangium lichenicola"]]},{"id":"NCBITaxon:45071","l":"Legionella parisiensis","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/legioliulin.yaml","legioliulin"]],"b":[["NCBITaxon%3A45071","Legionella parisiensis"]]},{"id":"NCBITaxon:45151","l":"Pyrenophora tritici-repentis","na":1,"nb":1,"a":[["unclassified/triticone-b.yaml","triticone B"]],"b":[["NCBITaxon%3A45151","Pyrenophora tritici-repentis"]]},{"id":"NCBITaxon:45847","l":"","na":1,"nb":1,"a":[["unclassified/beauvericin.yaml","beauvericin"]],"b":[["NCBITaxon%3A45847","Cordyceps tenuipes"]]},{"id":"NCBITaxon:459664","l":"Aphanizomenon sp. 10E6","na":1,"nb":1,"a":[["alkaloids/7-epi-cylindrospermopsin.yaml","7-epi-cylindrospermopsin"]],"b":[["NCBITaxon%3A459664","Aphanizomenon sp. 10E6"]]},{"id":"NCBITaxon:459665","l":"Aphanizomenon sp. 10E9","na":1,"nb":1,"a":[["alkaloids/7-epi-cylindrospermopsin.yaml","7-epi-cylindrospermopsin"]],"b":[["NCBITaxon%3A459665","Aphanizomenon sp. 10E9"]]},{"id":"NCBITaxon:459668","l":"Aphanizomenon sp. 22D11","na":1,"nb":1,"a":[["alkaloids/7-epi-cylindrospermopsin.yaml","7-epi-cylindrospermopsin"]],"b":[["NCBITaxon%3A459668","Aphanizomenon sp. 22D11"]]},{"id":"NCBITaxon:46182","l":"Nonomuraea spiralis","na":1,"nb":1,"a":[["carbohydrates/pyralomicin-1a.yaml","pyralomicin 1a"]],"b":[["NCBITaxon%3A46182","Nonomuraea spiralis"]]},{"id":"NCBITaxon:465543","l":"Streptomyces sp. SPB074","na":1,"nb":1,"a":[["polyketides/cinerubin-b.yaml","cinerubin B"]],"b":[["NCBITaxon%3A465543","Streptomyces sp. SPB074"]]},{"id":"NCBITaxon:47312","l":"Tsukamurella pulmonis","na":1,"nb":1,"a":[["amino_acids_and_peptides/longicatenamide-a.yaml","longicatenamide A"]],"b":[["NCBITaxon%3A47312","Tsukamurella pulmonis"]]},{"id":"NCBITaxon:47427","l":"Armillaria gallica","na":1,"nb":1,"a":[["terpenoids/8-hydroxy-6-protoilludene.yaml","8α-hydroxy-6-protoilludene"]],"b":[["NCBITaxon%3A47427","Armillaria gallica"]]},{"id":"NCBITaxon:476552","l":"Streptomyces milbemycinicus","na":1,"nb":1,"a":[["polyketides/nanchangmycin.yaml","nanchangmycin"]],"b":[["NCBITaxon%3A476552","Streptomyces milbemycinicus"]]},{"id":"NCBITaxon:477245","l":"Streptomyces cyaneogriseus subsp. noncyanogenus","na":1,"nb":1,"a":[["polyketides/ll-f28249.yaml","LL-F28249α"]],"b":[["NCBITaxon%3A477245","Streptomyces cyaneogriseus subsp. noncyanogenus"]]},{"id":"NCBITaxon:47759","l":"Streptomyces tubercidicus","na":1,"nb":1,"a":[["carbohydrates/tubercidin.yaml","tubercidin"]],"b":[["NCBITaxon%3A47759","Streptomyces tubercidicus"]]},{"id":"NCBITaxon:478021","l":"Cylindrospermopsis raciborskii AWT205","na":1,"nb":1,"a":[["alkaloids/7-epi-cylindrospermopsin.yaml","7-epi-cylindrospermopsin"]],"b":[["NCBITaxon%3A478021","Cylindrospermopsis raciborskii AWT205"]]},{"id":"NCBITaxon:478108","l":"Actinoallomurus fulvus","na":1,"nb":1,"a":[["polyketides/actinoallolide-a.yaml","actinoallolide A"]],"b":[["NCBITaxon%3A478108","Actinoallomurus fulvus"]]},{"id":"NCBITaxon:47854","l":"Micromonospora chersina","na":1,"nb":1,"a":[["polyketides/dynemicin-a.yaml","dynemicin A"]],"b":[["NCBITaxon%3A47854","Micromonospora chersina"]]},{"id":"NCBITaxon:47866","l":"Micromonospora inyonensis","na":1,"nb":1,"a":[["carbohydrates/sisomycin.yaml","sisomycin"]],"b":[["NCBITaxon%3A47866","Micromonospora inyonensis"]]},{"id":"NCBITaxon:483219","l":"Myxococcus fulvus HW-1","na":1,"nb":1,"a":[["unclassified/myxochromide-a-2.yaml","myxochromide A"]],"b":[["NCBITaxon%3A483219","Myxococcus fulvus HW-1"]]},{"id":"NCBITaxon:48563","l":"Suillus bovinus","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/atromentin.yaml","atromentin"]],"b":[["NCBITaxon%3A48563","Suillus bovinus"]]},{"id":"NCBITaxon:497965","l":"","na":1,"nb":1,"a":[["fatty_acids/1-heptadecene.yaml","1-heptadecene"]],"b":[["NCBITaxon%3A497965","Gloeothece verrucosa PCC 7822"]]},{"id":"NCBITaxon:5057","l":"Aspergillus clavatus","na":1,"nb":1,"a":[["alkaloids/cytochalasin-e.yaml","cytochalasin E"]],"b":[["NCBITaxon%3A5057","Aspergillus clavatus"]]},{"id":"NCBITaxon:507735","l":"Microcystis aeruginosa MRC","na":1,"nb":1,"a":[["unclassified/microviridin-j.yaml","microviridin J"]],"b":[["NCBITaxon%3A507735","Microcystis aeruginosa MRC"]]},{"id":"NCBITaxon:512","l":"Alcaligenes sp","na":1,"nb":1,"a":[["polyketides/kalimantacin-a.yaml","kalimantacin A"]],"b":[["NCBITaxon%3A512","Alcaligenes sp."]]},{"id":"NCBITaxon:525326","l":"Lactobacillus paragasseri JV-V03","na":1,"nb":1,"a":[["amino_acids_and_peptides/lactocillin.yaml","lactocillin"]],"b":[["NCBITaxon%3A525326","Lactobacillus paragasseri JV-V03"]]},{"id":"NCBITaxon:528191","l":"Paenibacillus xylanexedens","na":1,"nb":1,"a":[["amino_acids_and_peptides/macolacin.yaml","macolacin"]],"b":[["NCBITaxon%3A528191","Paenibacillus xylanexedens"]]},{"id":"NCBITaxon:529089","l":"Streptomyces sp. 307-9","na":1,"nb":1,"a":[["polyketides/tirandamycin.yaml","tirandamycin"]],"b":[["NCBITaxon%3A529089","Streptomyces sp. 307-9"]]},{"id":"NCBITaxon:5353","l":"Lentinula edodes","na":1,"nb":1,"a":[["amino_acids_and_peptides/lentinulin-a.yaml","lentinulin A"]],"b":[["NCBITaxon%3A5353","Lentinula edodes"]]},{"id":"NCBITaxon:541229","l":"Bacillus thuringiensis serovar chinensis CT-43","na":1,"nb":1,"a":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"]],"b":[["NCBITaxon%3A541229","Bacillus thuringiensis serovar chinensis CT-43"]]},{"id":"NCBITaxon:5454","l":"","na":1,"nb":1,"a":[["polyketides/solanapyrone-a.yaml","solanapyrone A"]],"b":[["NCBITaxon%3A5454","Ascochyta rabiei"]]},{"id":"NCBITaxon:546365","l":"Amycolatopsis regifaucium","na":1,"nb":1,"a":[["amino_acids_and_peptides/decaplanin.yaml","decaplanin"]],"b":[["NCBITaxon%3A546365","Amycolatopsis regifaucium"]]},{"id":"NCBITaxon:5526","l":"Humicola","na":1,"nb":1,"a":[["polyketides/monorden-d.yaml","monorden D"]],"b":[["NCBITaxon%3A1756120","Humicola sp."]]},{"id":"NCBITaxon:553510","l":"Streptomyces gilvosporeus","na":1,"nb":1,"a":[["polyketides/natamycin.yaml","natamycin"]],"b":[["NCBITaxon%3A553510","Streptomyces gilvosporeus"]]},{"id":"NCBITaxon:5538","l":"Scytalidium","na":1,"nb":1,"a":[["polyketides/scytalone.yaml","scytalone"]],"b":[["NCBITaxon%3A5539","Scytalidium lignicola"]]},{"id":"NCBITaxon:5587","l":"Rhinocladiella","na":1,"nb":1,"a":[["alkaloids/cytochalasin-e.yaml","cytochalasin E"]],"b":[["NCBITaxon%3A86056","Rhinocladiella mackenziei"]]},{"id":"NCBITaxon:563072","l":"Shewanella sp. BR-2","na":1,"nb":1,"a":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]],"b":[["NCBITaxon%3A563072","Shewanella sp. BR-2"]]},{"id":"NCBITaxon:565073","l":"Streptomyces tateyamensis","na":1,"nb":1,"a":[["amino_acids_and_peptides/thiopeptin.yaml","thiopeptin"]],"b":[["NCBITaxon%3A565073","Streptomyces tateyamensis"]]},{"id":"NCBITaxon:568701","l":"","na":1,"nb":1,"a":[["fatty_acids/1-heptadecene.yaml","1-heptadecene"]],"b":[["NCBITaxon%3A568701","Moorena bouillonii PNG"]]},{"id":"NCBITaxon:57153","l":"Neonectria coccinea","na":1,"nb":1,"a":[["unclassified/ilicicolin-b.yaml","ilicicolin B"]],"b":[["NCBITaxon%3A57153","Neonectria coccinea"]]},{"id":"NCBITaxon:573242","l":"Streptomyces sp. TA-0256","na":1,"nb":1,"a":[["polyketides/fd-594.yaml","FD-594"]],"b":[["NCBITaxon%3A573242","Streptomyces sp. TA-0256"]]},{"id":"NCBITaxon:573841","l":"Sordaria araneosa","na":1,"nb":1,"a":[["terpenoids/sordarin.yaml","sordarin"]],"b":[["NCBITaxon%3A573841","Sordaria araneosa"]]},{"id":"NCBITaxon:578457","l":"","na":1,"nb":1,"a":[["terpenoids/ent-kauren-16alpha-ol.yaml","ent-kauren-16alpha-ol"]],"b":[["NCBITaxon%3A578457","Serpula lacrymans var. lacrymans S7.9"]]},{"id":"NCBITaxon:579932","l":"Streptomyces sp. FXJ7.023","na":1,"nb":1,"a":[["polyketides/lobophorin-a.yaml","lobophorin A"]],"b":[["NCBITaxon%3A579932","Streptomyces sp. FXJ7.023"]]},{"id":"NCBITaxon:58344","l":"Streptomyces celluloflavus","na":1,"nb":1,"a":[["alkaloids/thiolutin.yaml","thiolutin"]],"b":[["NCBITaxon%3A58344","Streptomyces celluloflavus"]]},{"id":"NCBITaxon:58345","l":"Streptomyces mauvecolor","na":1,"nb":1,"a":[["polyketides/rimocidin.yaml","rimocidin"]],"b":[["NCBITaxon%3A58345","Streptomyces mauvecolor"]]},{"id":"NCBITaxon:589385","l":"Amycolatopsis xylanica","na":1,"nb":1,"a":[["amino_acids_and_peptides/amyxirubin-b.yaml","Amyxirubin B"]],"b":[["NCBITaxon%3A589385","Amycolatopsis xylanica"]]},{"id":"NCBITaxon:591158","l":"Streptomyces sp. AA4","na":1,"nb":1,"a":[["amino_acids_and_peptides/amychelin-a.yaml","amychelin A"]],"b":[["NCBITaxon%3A591158","Streptomyces sp. AA4"]]},{"id":"NCBITaxon:59625","l":"Microcystis sp. NIVA-CYA 172/5","na":1,"nb":1,"a":[["unclassified/cyanopeptolin.yaml","cyanopeptolin"]],"b":[["NCBITaxon%3A59625","Microcystis sp. NIVA-CYA 172/5"]]},{"id":"NCBITaxon:600778","l":"Microcystis aeruginosa K-139","na":1,"nb":1,"a":[["unclassified/micropeptin-k139.yaml","micropeptin K139"]],"b":[["NCBITaxon%3A600778","Microcystis aeruginosa K-139"]]},{"id":"NCBITaxon:60169","l":"Penicillium polonicum","na":1,"nb":1,"a":[["polyketides/verrucosidin.yaml","verrucosidin"]],"b":[["NCBITaxon%3A60169","Penicillium polonicum"]]},{"id":"NCBITaxon:60174","l":"Penicillium echinulatum","na":1,"nb":1,"a":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"]],"b":[["NCBITaxon%3A60174","Penicillium echinulatum"]]},{"id":"NCBITaxon:616","l":"","na":1,"nb":1,"a":[["alkaloids/prodigiosin-2.yaml","prodigiosin"]],"b":[["NCBITaxon%3A616","Serratia sp. (in: enterobacteria)"]]},{"id":"NCBITaxon:63396","l":"Ustilago cynodontis","na":1,"nb":1,"a":[["fatty_acids/itaconic-acid.yaml","itaconic acid"]],"b":[["NCBITaxon%3A63396","Ustilago cynodontis"]]},{"id":"NCBITaxon:63577","l":"Trichoderma atroviride","na":1,"nb":1,"a":[["terpenoids/trichobrasilenol.yaml","trichobrasilenol"]],"b":[["NCBITaxon%3A63577","Trichoderma atroviride"]]},{"id":"NCBITaxon:639005","l":"Streptomyces sp. DSM 21069","na":1,"nb":1,"a":[["unclassified/be-14106.yaml","BE-14106"]],"b":[["NCBITaxon%3A639005","Streptomyces sp. DSM 21069"]]},{"id":"NCBITaxon:639006","l":"Streptomyces sp. MP39-85","na":1,"nb":1,"a":[["unclassified/ml-449.yaml","ML-449"]],"b":[["NCBITaxon%3A639006","Streptomyces sp. MP39-85"]]},{"id":"NCBITaxon:64363","l":"Dothistroma septosporum","na":1,"nb":1,"a":[["polyketides/dothistromin.yaml","dothistromin"]],"b":[["NCBITaxon%3A64363","Dothistroma septosporum"]]},{"id":"NCBITaxon:646534","l":"Grimontia marina","na":1,"nb":1,"a":[["amino_acids_and_peptides/grimoviridin.yaml","grimoviridin"]],"b":[["NCBITaxon%3A646534","Grimontia marina"]]},{"id":"NCBITaxon:653884","l":"Nonomuraea sp. WU8817","na":1,"nb":1,"a":[["amino_acids_and_peptides/ge2270.yaml","GE2270"]],"b":[["NCBITaxon%3A653884","Nonomuraea sp. WU8817"]]},{"id":"NCBITaxon:653921","l":"Nonomuraea sp. Bp3714-39","na":1,"nb":1,"a":[["amino_acids_and_peptides/thiomuracin-a.yaml","thiomuracin A"]],"b":[["NCBITaxon%3A653921","Nonomuraea sp. Bp3714-39"]]},{"id":"NCBITaxon:654496","l":"Thelephora aurantiotincta","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/atromentin.yaml","atromentin"]],"b":[["NCBITaxon%3A654496","Thelephora aurantiotincta"]]},{"id":"NCBITaxon:657419","l":"Tistrella bauzanensis","na":1,"nb":1,"a":[["unclassified/thalassospiramide-a.yaml","thalassospiramide A"]],"b":[["NCBITaxon%3A657419","Tistrella bauzanensis"]]},{"id":"NCBITaxon:657443","l":"Aspergillus violaceofuscus","na":1,"nb":1,"a":[["polyketides/pyranoviolin-a.yaml","pyranoviolin A"]],"b":[["NCBITaxon%3A657443","Aspergillus violaceofuscus"]]},{"id":"NCBITaxon:660122","l":"Fusarium vanettenii (strain ATCC MYA-4622 / CBS 123669 / FGSC 9596 / NRRL 45880 / 77-13-4)","na":1,"nb":1,"a":[["unclassified/sansalvamide.yaml","sansalvamide"]],"b":[["NCBITaxon%3A660122","Fusarium vanettenii 77-13-4"]]},{"id":"NCBITaxon:66425","l":"Streptomyces luteoverticillatus","na":1,"nb":1,"a":[["alkaloids/carbazomycin-b.yaml","carbazomycin B"]],"b":[["NCBITaxon%3A66425","Streptomyces luteoverticillatus"]]},{"id":"NCBITaxon:66428","l":"Streptomyces parvus","na":1,"nb":1,"a":[["unclassified/vicenistatin.yaml","vicenistatin"]],"b":[["NCBITaxon%3A66428","Streptomyces parvus"]]},{"id":"NCBITaxon:665029","l":"Erwinia amylovora CFBP1430","na":1,"nb":1,"a":[["alkaloids/tioguanine.yaml","tioguanine"]],"b":[["NCBITaxon%3A665029","Erwinia amylovora CFBP1430"]]},{"id":"NCBITaxon:665959","l":"Bacillus sp. 2_A_57_CT2","na":1,"nb":1,"a":[["fatty_acids/n-acyl-serinol.yaml","N-acyl serinol"]],"b":[["NCBITaxon%3A665959","Bacillus sp. 2_A_57_CT2"]]},{"id":"NCBITaxon:66872","l":"Streptomyces baarnensis","na":1,"nb":1,"a":[["unclassified/antimycin-a.yaml","antimycin A"]],"b":[["NCBITaxon%3A66872","Streptomyces baarnensis"]]},{"id":"NCBITaxon:66876","l":"Streptomyces chattanoogensis","na":1,"nb":1,"a":[["polyketides/natamycin.yaml","natamycin"]],"b":[["NCBITaxon%3A66876","Streptomyces chattanoogensis"]]},{"id":"NCBITaxon:66883","l":"Streptomyces cyaneofuscatus","na":1,"nb":1,"a":[["polyketides/anthracimycin.yaml","anthracimycin"]],"b":[["NCBITaxon%3A66883","Streptomyces cyaneofuscatus"]]},{"id":"NCBITaxon:66887","l":"Streptomyces filipinensis","na":1,"nb":1,"a":[["polyketides/filipin-iii.yaml","filipin III"]],"b":[["NCBITaxon%3A66887","Streptomyces filipinensis"]]},{"id":"NCBITaxon:66889","l":"","na":1,"nb":1,"a":[["amino_acids_and_peptides/zorbamycin.yaml","zorbamycin"]],"b":[["NCBITaxon%3A28893","Streptomyces pilosus"]]},{"id":"NCBITaxon:66896","l":"","na":1,"nb":1,"a":[["amino_acids_and_peptides/alazopeptin.yaml","alazopeptin"]],"b":[["NCBITaxon%3A66896","Peterkaempfera griseoplana"]]},{"id":"NCBITaxon:67302","l":"Streptomyces fumanus","na":1,"nb":1,"a":[["alkaloids/pyrrolomycin-c.yaml","pyrrolomycin C"]],"b":[["NCBITaxon%3A67302","Streptomyces fumanus"]]},{"id":"NCBITaxon:67303","l":"","na":1,"nb":1,"a":[["polyketides/chrysomycin.yaml","chrysomycin"]],"b":[["NCBITaxon%3A67303","Streptomyces griseoloalbus"]]},{"id":"NCBITaxon:67314","l":"Streptomyces lavendofoliae","na":1,"nb":1,"a":[["amino_acids_and_peptides/fosfazinomycin-b.yaml","fosfazinomycin B"]],"b":[["NCBITaxon%3A67314","Streptomyces lavendofoliae"]]},{"id":"NCBITaxon:67315","l":"Streptomyces lavenduligriseus","na":1,"nb":1,"a":[["polyketides/filipin-iii.yaml","filipin III"]],"b":[["NCBITaxon%3A67315","Streptomyces lavenduligriseus"]]},{"id":"NCBITaxon:67320","l":"Streptomyces luridus","na":1,"nb":1,"a":[["amino_acids_and_peptides/dehydrophos.yaml","dehydrophos"]],"b":[["NCBITaxon%3A67320","Streptomyces luridus"]]},{"id":"NCBITaxon:67326","l":"Streptomyces melanogenes","na":1,"nb":1,"a":[["polyketides/cinerubin-b.yaml","cinerubin B"]],"b":[["NCBITaxon%3A67326","Streptomyces melanogenes"]]},{"id":"NCBITaxon:67327","l":"Streptomyces melanosporofaciens","na":1,"nb":1,"a":[["terpenoids/cyclooctatin.yaml","cyclooctatin"]],"b":[["NCBITaxon%3A67327","Streptomyces melanosporofaciens"]]},{"id":"NCBITaxon:67352","l":"Streptomyces purpeofuscus","na":1,"nb":1,"a":[["unclassified/clifednamide-a-2.yaml","clifednamide A"]],"b":[["NCBITaxon%3A67352","Kitasatospora purpeofusca"]]},{"id":"NCBITaxon:67358","l":"Streptomyces roseolus","na":1,"nb":1,"a":[["unclassified/aflatoxin-b1.yaml","aflatoxin B1"]],"b":[["NCBITaxon%3A67358","Streptomyces roseolus"]]},{"id":"NCBITaxon:67363","l":"Streptomyces sindenensis","na":1,"nb":1,"a":[["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"]],"b":[["NCBITaxon%3A67363","Streptomyces sindenensis"]]},{"id":"NCBITaxon:67366","l":"Streptomyces spiroverticillatus","na":1,"nb":1,"a":[["polyketides/tautomycin.yaml","tautomycin"]],"b":[["NCBITaxon%3A67366","Streptomyces spiroverticillatus"]]},{"id":"NCBITaxon:67369","l":"Streptomyces toxytricini","na":1,"nb":1,"a":[["polyketides/lipstatin.yaml","lipstatin"]],"b":[["NCBITaxon%3A67369","Streptomyces toxytricini"]]},{"id":"NCBITaxon:674034","l":"Pseudomonas sp. J465","na":1,"nb":1,"a":[["unclassified/enterobactin.yaml","enterobactin"]],"b":[["NCBITaxon%3A674034","Pseudomonas sp. J465"]]},{"id":"NCBITaxon:679622","l":"Bacillus sp. CS93","na":1,"nb":1,"a":[["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"]],"b":[["NCBITaxon%3A679622","Bacillus sp. CS93"]]},{"id":"NCBITaxon:68172","l":"","na":1,"nb":1,"a":[["polyketides/chrysomycin.yaml","chrysomycin"]],"b":[["NCBITaxon%3A67303","Streptomyces griseoloalbus"]]},{"id":"NCBITaxon:68200","l":"Streptomyces flavofungini","na":1,"nb":1,"a":[["polyketides/desertomycin-a.yaml","desertomycin A"]],"b":[["NCBITaxon%3A68200","Streptomyces flavofungini"]]},{"id":"NCBITaxon:68237","l":"Streptomyces mediolani","na":1,"nb":1,"a":[["terpenoids/isorenieratene.yaml","isorenieratene"]],"b":[["NCBITaxon%3A68237","Streptomyces mediolani"]]},{"id":"NCBITaxon:682634","l":"Serratia plymuthica 4Rx13","na":1,"nb":1,"a":[["terpenoids/sodorifen.yaml","sodorifen"]],"b":[["NCBITaxon%3A682634","Serratia plymuthica 4Rx13"]]},{"id":"NCBITaxon:68268","l":"Streptomyces showdoensis","na":1,"nb":1,"a":[["carbohydrates/showdomycin.yaml","showdomycin"]],"b":[["NCBITaxon%3A68268","Streptomyces showdoensis"]]},{"id":"NCBITaxon:68274","l":"Streptomyces tauricus","na":1,"nb":1,"a":[["polyketides/cinerubin-b.yaml","cinerubin B"]],"b":[["NCBITaxon%3A68274","Streptomyces tauricus"]]},{"id":"NCBITaxon:683228","l":"Micromonospora yangpuensis","na":1,"nb":1,"a":[["polyketides/yangpumicin-a.yaml","yangpumicin A"]],"b":[["NCBITaxon%3A683228","Micromonospora yangpuensis"]]},{"id":"NCBITaxon:684592","l":"uncultured soil bacterium V167","na":1,"nb":1,"a":[["polyketides/erdacin.yaml","erdacin"]],"b":[["NCBITaxon%3A684592","uncultured soil bacterium V167"]]},{"id":"NCBITaxon:686293","l":"Streptomyces sp. 211726","na":1,"nb":1,"a":[["polyketides/azalomycin-f3a.yaml","azalomycin F3a"]],"b":[["NCBITaxon%3A686293","Streptomyces sp. 211726"]]},{"id":"NCBITaxon:687388","l":"","na":1,"nb":1,"a":[["unclassified/taromycin-a.yaml","taromycin A"]],"b":[["NCBITaxon%3A687388","Saccharomonospora piscinae"]]},{"id":"NCBITaxon:69002","l":"Bacillus sp. HIL-Y85/54728","na":1,"nb":1,"a":[["amino_acids_and_peptides/mersacidin.yaml","mersacidin"]],"b":[["NCBITaxon%3A69002","Bacillus sp. HIL-Y85/54728"]]},{"id":"NCBITaxon:691266","l":"Streptomyces ravidus","na":1,"nb":1,"a":[["polyketides/ravidomycin.yaml","ravidomycin"]],"b":[["NCBITaxon%3A691266","Streptomyces ravidus"]]},{"id":"NCBITaxon:69485","l":"Actinoplanes garbadinensis","na":1,"nb":1,"a":[["amino_acids_and_peptides/actagardine.yaml","actagardine"]],"b":[["NCBITaxon%3A69485","Actinoplanes garbadinensis"]]},{"id":"NCBITaxon:697274","l":"Streptomyces sp. 88-682","na":1,"nb":1,"a":[["polyketides/4-hexadecanoyl-3-hydroxy-2-hydroxymethyl-2h-furan-5-one.yaml","4-hexadecanoyl-3-hydroxy-2-(hydroxymethyl)-2H-furan-5-one"]],"b":[["NCBITaxon%3A697274","Streptomyces sp. 88-682"]]},{"id":"NCBITaxon:69771","l":"Penicillium decumbens","na":1,"nb":1,"a":[["polyketides/decumbenone-a.yaml","decumbenone a"]],"b":[["NCBITaxon%3A69771","Penicillium decumbens"]]},{"id":"NCBITaxon:698760","l":"Streptomyces turgidiscabies Car8","na":1,"nb":1,"a":[["unclassified/thaxtomin-a.yaml","thaxtomin A"]],"b":[["NCBITaxon%3A698760","Streptomyces turgidiscabies Car8"]]},{"id":"NCBITaxon:698778","l":"Streptomyces sp. MDG-04-17-069","na":1,"nb":1,"a":[["unclassified/ikarugamycin.yaml","ikarugamycin"]],"b":[["NCBITaxon%3A698778","Streptomyces sp. MDG-04-17-069"]]},{"id":"NCBITaxon:70094","l":"Penicillium adametzioides","na":1,"nb":1,"a":[["unclassified/adametizine-a.yaml","adametizine A"]],"b":[["NCBITaxon%3A70094","Penicillium adametzioides"]]},{"id":"NCBITaxon:70095","l":"Penicillium fellutanum","na":1,"nb":1,"a":[["unclassified/paraherquamide.yaml","paraherquamide"]],"b":[["NCBITaxon%3A70095","Penicillium fellutanum"]]},{"id":"NCBITaxon:703222","l":"Kibdelosporangium sp. MJ126-NF4","na":1,"nb":1,"a":[["polyketides/azicemicin-b.yaml","azicemicin B"]],"b":[["NCBITaxon%3A703222","Kibdelosporangium sp. MJ126-NF4"]]},{"id":"NCBITaxon:703577","l":"Dactylosporangium aurantiacum subsp. hamdenensis","na":1,"nb":1,"a":[["polyketides/tiacumicin-b.yaml","tiacumicin B"]],"b":[["NCBITaxon%3A703577","Dactylosporangium aurantiacum subsp. hamdenensis"]]},{"id":"NCBITaxon:704114","l":"Micromonospora echinospora subsp. challisensis","na":1,"nb":1,"a":[["polyketides/tln-05220.yaml","TLN-05220"]],"b":[["NCBITaxon%3A704114","Micromonospora echinospora subsp. challisensis"]]},{"id":"NCBITaxon:707671","l":"Nostoc sp. 73.1","na":1,"nb":1,"a":[["amino_acids_and_peptides/nodularin.yaml","nodularin"]],"b":[["NCBITaxon%3A707671","Nostoc sp. 73.1"]]},{"id":"NCBITaxon:718015","l":"Micromonospora sp. GMKU326","na":1,"nb":1,"a":[["unclassified/maklamicin.yaml","maklamicin"]],"b":[["NCBITaxon%3A718015","Micromonospora sp. GMKU326"]]},{"id":"NCBITaxon:71945","l":"Hypholoma sublateritium","na":1,"nb":1,"a":[["terpenoids/clavaric-acid.yaml","clavaric acid"]],"b":[["NCBITaxon%3A945553","Hypholoma sublateritium FD-334 SS-4"]]},{"id":"NCBITaxon:720","l":"Actinobacillus lignieresii","na":1,"nb":1,"a":[["unclassified/capsular-polysaccharide.yaml","capsular polysaccharide"]],"b":[["NCBITaxon%3A720","Actinobacillus lignieresii"]]},{"id":"NCBITaxon:72022","l":"Methylarcula marina","na":1,"nb":1,"a":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]],"b":[["NCBITaxon%3A72022","Paracoccus methylarcula"]]},{"id":"NCBITaxon:72122","l":"Tapinella atrotomentosa","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/atromentin.yaml","atromentin"]],"b":[["NCBITaxon%3A72122","Tapinella atrotomentosa"]]},{"id":"NCBITaxon:73501","l":"Cordyceps militaris","na":1,"nb":1,"a":[["unclassified/beauveriolide-i.yaml","beauveriolide I"]],"b":[["NCBITaxon%3A73501","Cordyceps militaris"]]},{"id":"NCBITaxon:73915","l":"Pyrodinium bahamense","na":1,"nb":1,"a":[["alkaloids/saxitoxin.yaml","saxitoxin"]],"b":[["NCBITaxon%3A73915","Pyrodinium bahamense"]]},{"id":"NCBITaxon:746360","l":"Pseudomonas fluorescens WH6","na":1,"nb":1,"a":[["amino_acids_and_peptides/4-formylaminooxyvinylglycine.yaml","4-formylaminooxyvinylglycine"]],"b":[["NCBITaxon%3A746360","Pseudomonas fluorescens WH6"]]},{"id":"NCBITaxon:746675","l":"Streptomyces sp. SF2575","na":1,"nb":1,"a":[["polyketides/sf2575.yaml","SF2575"]],"b":[["NCBITaxon%3A746675","Streptomyces sp. SF2575"]]},{"id":"NCBITaxon:747457","l":"Pseudoalteromonas sp. SANK 73390","na":1,"nb":1,"a":[["polyketides/thiomarinol.yaml","thiomarinol"]],"b":[["NCBITaxon%3A747457","Pseudoalteromonas sp. SANK 73390"]]},{"id":"NCBITaxon:74831","l":"Penicillium albocoremium","na":1,"nb":1,"a":[["unclassified/andrastin-a.yaml","andrastin A"]],"b":[["NCBITaxon%3A74831","Penicillium albocoremium"]]},{"id":"NCBITaxon:749414","l":"","na":1,"nb":1,"a":[["polyketides/nanchangmycin.yaml","nanchangmycin"]],"b":[["NCBITaxon%3A749414","Streptomyces bingchenggensis BCW-1"]]},{"id":"NCBITaxon:749593","l":"Epicoccum sorghinum","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"]],"b":[["NCBITaxon%3A749593","Epicoccum sorghinum"]]},{"id":"NCBITaxon:754256","l":"Actinobacillus pleuropneumoniae serovar 6 str. Femo","na":1,"nb":1,"a":[["unclassified/capsular-polysaccharide.yaml","capsular polysaccharide"]],"b":[["NCBITaxon%3A754256","Actinobacillus pleuropneumoniae serovar 6 str. Femo"]]},{"id":"NCBITaxon:756733","l":"Streptoalloteichus sp. ATCC 53650","na":1,"nb":1,"a":[["unclassified/kedarcidin.yaml","kedarcidin"]],"b":[["NCBITaxon%3A756733","Streptoalloteichus sp. ATCC 53650"]]},{"id":"NCBITaxon:756929","l":"Nocardiopsis sp. TFS65-07","na":1,"nb":1,"a":[["amino_acids_and_peptides/tp-1161.yaml","TP-1161"]],"b":[["NCBITaxon%3A756929","Nocardiopsis sp. TFS65-07"]]},{"id":"NCBITaxon:76021","l":"Amycolatopsis coloradensis","na":1,"nb":1,"a":[["amino_acids_and_peptides/avoparcin.yaml","avoparcin"]],"b":[["NCBITaxon%3A76021","Amycolatopsis coloradensis"]]},{"id":"NCBITaxon:76022","l":"Amycolatopsis sulphurea","na":1,"nb":1,"a":[["polyketides/chelocardin.yaml","chelocardin"]],"b":[["NCBITaxon%3A76022","Amycolatopsis sulphurea"]]},{"id":"NCBITaxon:762837","l":"Streptomyces sp. L-49973","na":1,"nb":1,"a":[["amino_acids_and_peptides/ge81112.yaml","GE81112"]],"b":[["NCBITaxon%3A762837","Streptomyces sp. L-49973"]]},{"id":"NCBITaxon:76334","l":"Nostoc sp. GSV224","na":1,"nb":1,"a":[["unclassified/nostopeptolide-a2.yaml","nostopeptolide A2"]],"b":[["NCBITaxon%3A76334","Nostoc sp. GSV224"]]},{"id":"NCBITaxon:764784","l":"Streptomyces sp. SANK 61196","na":1,"nb":1,"a":[["polyketides/a-74528.yaml","A-74528"]],"b":[["NCBITaxon%3A764784","Streptomyces sp. SANK 61196"]]},{"id":"NCBITaxon:78245","l":"Xanthobacter autotrophicus (strain ATCC BAA-1158 / Py2)","na":1,"nb":1,"a":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]],"b":[["NCBITaxon%3A78245","Xanthobacter versatilis"]]},{"id":"NCBITaxon:78388","l":"Coniothyrium","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/mellein.yaml","(-)-Mellein"]],"b":[["NCBITaxon%3A1077358","Coniothyrium glycines"]]},{"id":"NCBITaxon:78579","l":"Thermothelomyces thermophilus","na":1,"nb":1,"a":[["alkaloids/ucs1025a.yaml","ucs1025a"]],"b":[["NCBITaxon%3A78579","Thermothelomyces thermophilus"]]},{"id":"NCBITaxon:78605","l":"Malbranchea aurantiaca","na":1,"nb":1,"a":[["alkaloids/malbrancheamide-a.yaml","malbrancheamide A"]],"b":[["NCBITaxon%3A78605","Malbranchea aurantiaca"]]},{"id":"NCBITaxon:797057","l":"Amycolatopsis orientalis subsp. vinearia","na":1,"nb":1,"a":[["polyketides/be-7585a.yaml","BE-7585A"]],"b":[["NCBITaxon%3A797057","Amycolatopsis orientalis subsp. vinearia"]]},{"id":"NCBITaxon:80859","l":"Streptomyces ribosidificus","na":1,"nb":1,"a":[["carbohydrates/ribostamycin.yaml","ribostamycin"]],"b":[["NCBITaxon%3A80859","Streptomyces ribosidificus"]]},{"id":"NCBITaxon:81097","l":"Cephalosporium","na":1,"nb":1,"a":[["fatty_acids/1233b.yaml","1233B"]],"b":[["NCBITaxon%3A1981612","Cephalosporium sp."]]},{"id":"NCBITaxon:81397","l":"Paracoccus sp. N81106","na":1,"nb":1,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A81397","Paracoccus sp. N81106"]]},{"id":"NCBITaxon:82632","l":"Streptomyces sp. MA6548","na":1,"nb":1,"a":[["polyketides/tacrolimus.yaml","tacrolimus"]],"b":[["NCBITaxon%3A82632","Streptomyces sp. MA6548"]]},{"id":"NCBITaxon:83212","l":"Claviceps africana","na":1,"nb":1,"a":[["alkaloids/dihydrolysergic-acid.yaml","dihydrolysergic acid"]],"b":[["NCBITaxon%3A83212","Claviceps africana"]]},{"id":"NCBITaxon:83302","l":"Microbispora corallina","na":1,"nb":1,"a":[["amino_acids_and_peptides/microbisporicin-a2.yaml","microbisporicin A2"]],"b":[["NCBITaxon%3A83302","Microbispora corallina"]]},{"id":"NCBITaxon:83382","l":"","na":1,"nb":1,"a":[["polyketides/piericidin-a.yaml","piericidin A"]],"b":[["NCBITaxon%3A83382","Kitasatospora xanthocidica"]]},{"id":"NCBITaxon:83542","l":"Fischerella muscicola UTEX 1829","na":1,"nb":1,"a":[["alkaloids/fischerindole-l.yaml","fischerindole L"]],"b":[["NCBITaxon%3A83542","Fischerella muscicola UTEX 1829"]]},{"id":"NCBITaxon:858632","l":"Streptomyces sp. JV178","na":1,"nb":1,"a":[["unclassified/clifednamide-a-2.yaml","clifednamide A"]],"b":[["NCBITaxon%3A858632","Streptomyces sp. JV178"]]},{"id":"NCBITaxon:861528","l":"Streptomyces sp. SCSIO 1666","na":1,"nb":1,"a":[["polyketides/cytorhodin.yaml","cytorhodin"]],"b":[["NCBITaxon%3A861528","Streptomyces sp. SCSIO 1666"]]},{"id":"NCBITaxon:86265","l":"Pseudomonas thivervalensis","na":1,"nb":1,"a":[["amino_acids_and_peptides/histicorrugatin.yaml","histicorrugatin"]],"b":[["NCBITaxon%3A86265","Pseudomonas thivervalensis"]]},{"id":"NCBITaxon:876169","l":"Streptomyces sp. CS","na":1,"nb":1,"a":[["polyketides/naphthomycin-a.yaml","naphthomycin A"]],"b":[["NCBITaxon%3A876169","Streptomyces sp. CS"]]},{"id":"NCBITaxon:882102","l":"Vibrio anguillarum 775","na":1,"nb":1,"a":[["alkaloids/anguibactin.yaml","anguibactin"]],"b":[["NCBITaxon%3A882102","Vibrio anguillarum 775"]]},{"id":"NCBITaxon:887449","l":"Streptomyces herbaceus","na":1,"nb":1,"a":[["carbohydrates/adenine-arabinoside.yaml","adenine arabinoside"]],"b":[["NCBITaxon%3A887449","Streptomyces herbaceus"]]},{"id":"NCBITaxon:889282","l":"Polyangium spumosum","na":1,"nb":1,"a":[["unclassified/antalid.yaml","antalid"]],"b":[["NCBITaxon%3A889282","Polyangium spumosum"]]},{"id":"NCBITaxon:889487","l":"Streptomyces sp. S4","na":1,"nb":1,"a":[["unclassified/antimycin-a.yaml","antimycin A"]],"b":[["NCBITaxon%3A889487","Streptomyces sp. S4"]]},{"id":"NCBITaxon:89141","l":"Cordyceps farinosa","na":1,"nb":1,"a":[["unclassified/roquefortine-c.yaml","roquefortine C"]],"b":[["NCBITaxon%3A89141","Cordyceps farinosa"]]},{"id":"NCBITaxon:89489","l":"Monascus ruber","na":1,"nb":1,"a":[["polyketides/citrinin.yaml","(+)-citrinin"]],"b":[["NCBITaxon%3A89489","Monascus ruber"]]},{"id":"NCBITaxon:904685","l":"Penicillium sizovae","na":1,"nb":1,"a":[["alkaloids/agroclavine-i.yaml","Agroclavine I"]],"b":[["NCBITaxon%3A904685","Penicillium sizovae"]]},{"id":"NCBITaxon:91465","l":"Pseudomonas sp. MIS38","na":1,"nb":1,"a":[["unclassified/arthrofactin-a.yaml","arthrofactin A"]],"b":[["NCBITaxon%3A91465","Pseudomonas sp. MIS38"]]},{"id":"NCBITaxon:91752","l":"Hericium erinaceus","na":1,"nb":1,"a":[["terpenoids/cyatha-3-12-diene.yaml","(-)-Cyatha-3,12-diene"]],"b":[["NCBITaxon%3A91752","Hericium erinaceus"]]},{"id":"NCBITaxon:92630","l":"Metarhizium flavoviride","na":1,"nb":1,"a":[["unclassified/metarhizin-a.yaml","metarhizin A"]],"b":[["NCBITaxon%3A92630","Metarhizium flavoviride"]]},{"id":"NCBITaxon:930400","l":"Nocardia sp. ATCC 202099","na":1,"nb":1,"a":[["amino_acids_and_peptides/nocathiacin.yaml","nocathiacin"]],"b":[["NCBITaxon%3A930400","Nocardia sp. ATCC 202099"]]},{"id":"NCBITaxon:932694","l":"Streptomyces sp. OH-4156","na":1,"nb":1,"a":[["unclassified/cypemycin.yaml","cypemycin"]],"b":[["NCBITaxon%3A932694","Streptomyces sp. OH-4156"]]},{"id":"NCBITaxon:933388","l":"Penicillium oxalicum (strain 114-2 / CGMCC 5302)","na":1,"nb":1,"a":[["unclassified/atpenin-b.yaml","atpenin B"]],"b":[["NCBITaxon%3A933388","Penicillium oxalicum 114-2"]]},{"id":"NCBITaxon:936046","l":"","na":1,"nb":1,"a":[["polyketides/kojic-acid.yaml","kojic acid"]],"b":[["NCBITaxon%3A936046","Agaricus bisporus var. bisporus H97"]]},{"id":"NCBITaxon:93625","l":"Psilocybe cyanescens","na":1,"nb":1,"a":[["alkaloids/psilocybin.yaml","psilocybin"]],"b":[["NCBITaxon%3A93625","Psilocybe cyanescens"]]},{"id":"NCBITaxon:945553","l":"","na":1,"nb":1,"a":[["terpenoids/naematolin.yaml","naematolin"]],"b":[["NCBITaxon%3A945553","Hypholoma sublateritium FD-334 SS-4"]]},{"id":"NCBITaxon:97096","l":"Eutypa lata","na":1,"nb":1,"a":[["terpenoids/eutypinic-acid.yaml","eutypinic acid"]],"b":[["NCBITaxon%3A97096","Eutypa lata"]]},{"id":"NCBITaxon:97401","l":"Streptomyces sapporonensis","na":1,"nb":1,"a":[["unclassified/bicozamycin.yaml","bicozamycin"]],"b":[["NCBITaxon%3A97401","Streptomyces sapporonensis"]]},{"id":"NCBITaxon:984208","l":"Sphaerospermopsis torques-reginae ITEP-024","na":1,"nb":1,"a":[["alkaloids/guanitoxin.yaml","guanitoxin"]],"b":[["NCBITaxon%3A984208","Sphaerospermopsis torques-reginae ITEP-024"]]},{"id":"NCBITaxon:985895","l":"","na":1,"nb":1,"a":[["terpenoids/2-cis-abscisic-acid.yaml","2-cis-abscisic acid"]],"b":[["NCBITaxon%3A985895","Plenodomus lingam JN3"]]},{"id":"NCBITaxon:989499","l":"Vibrio anguillarum RV22","na":1,"nb":1,"a":[["amino_acids_and_peptides/vanchrobactin.yaml","vanchrobactin"]],"b":[["NCBITaxon%3A989499","Vibrio anguillarum RV22"]]},{"id":"NCBITaxon:991125","l":"Streptomyces sp. TP-A2060","na":1,"nb":1,"a":[["alkaloids/yatakemycin.yaml","yatakemycin"]],"b":[["NCBITaxon%3A991125","Streptomyces sp. TP-A2060"]]},{"id":"NCBITaxon:994086","l":"Hydnomerulius pinastri MD-312","na":1,"nb":1,"a":[["fatty_acids/methyl-2s-4-methyl-2-octanoylamino-pentanoate.yaml","methyl (2S)-4-methyl-2-(octanoylamino)pentanoate"]],"b":[["NCBITaxon%3A994086","Hydnomerulius pinastri MD-312"]]},{"id":"NCBITaxon:996287","l":"Streptomyces sp. NRRL 30471","na":1,"nb":1,"a":[["amino_acids_and_peptides/muraymycin-c1.yaml","muraymycin C1"]],"b":[["NCBITaxon%3A996287","Streptomyces sp. NRRL 30471"]]},{"id":"NCBITaxon:999541","l":"Burkholderia gladioli BSR3","na":1,"nb":1,"a":[["fatty_acids/caryoynencin.yaml","caryoynencin"]],"b":[["NCBITaxon%3A999541","Burkholderia gladioli BSR3"]]}]} \ No newline at end of file +{"a":"NaturalProductMech","b":"TaxonMech","base":{"NaturalProductMech":"https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/natural_products/","TaxonMech":"https://culturebotai.github.io/TaxonMech/pages/taxon.html?id="},"n":1708,"by":{"NCBITaxon":1708},"terms":[{"id":"NCBITaxon:1883","l":"Streptomyces","na":438,"nb":31267,"a":[["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/7-prenylisatin.yaml","7-prenylisatin"],["alkaloids/9-methylstreptimidone.yaml","9-methylstreptimidone"],["alkaloids/anisomycin.yaml","(−)-anisomycin"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"]],"b":[["NCBITaxon%3A208445","Amycolatopsis tolypomycina"],["NCBITaxon%3A1470348","Candidatus Streptomyces massiliensis"],["NCBITaxon%3A1211820","Candidatus Streptomyces massiliensis AP10"],["NCBITaxon%3A371608","Candidatus Streptomyces philanthi"],["NCBITaxon%3A1563718","Candidatus Streptomyces philanthi bv. albopilosus"],["NCBITaxon%3A371609","Candidatus Streptomyces philanthi bv. barbiger"]]},{"id":"NCBITaxon:1873","l":"Micromonospora","na":49,"nb":3346,"a":[["alkaloids/diazaquinomycin-h.yaml","diazaquinomycin H"],["alkaloids/diazaquinomycin-j.yaml","diazaquinomycin J"],["alkaloids/diazepinomicin.yaml","diazepinomicin"],["alkaloids/microansamycin-i.yaml","microansamycin I"],["alkaloids/staurosporine.yaml","staurosporine"],["alkaloids/streptonigrin.yaml","streptonigrin"]],"b":[["NCBITaxon%3A2202421","Micromonospora acroterricola"],["NCBITaxon%3A2911212","Micromonospora alfalfae"],["NCBITaxon%3A1287068","Micromonospora andamanensis"],["NCBITaxon%3A2807623","Micromonospora antibiotica"],["NCBITaxon%3A309046","Micromonospora aquatica"],["NCBITaxon%3A2116518","Micromonospora arborensis"]]},{"id":"NCBITaxon:286","l":"Pseudomonas","na":41,"nb":33485,"a":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["alkaloids/tioguanine.yaml","tioguanine"],["amino_acids_and_peptides/napsamycin-c.yaml","napsamycin C"],["amino_acids_and_peptides/napsamycin-d.yaml","napsamycin D"]],"b":[["NCBITaxon%3A196824","Arctic sea ice associated bacterium ARK10142"],["NCBITaxon%3A196823","Arctic sea ice bacterium ARK10061"],["NCBITaxon%3A196825","Arctic sea ice bacterium ARK9971"],["NCBITaxon%3A196826","Arctic sea ice bacterium ARK9995"],["NCBITaxon%3A215583","bacterium G5"],["NCBITaxon%3A1871086","Brevundimonas sp."]]},{"id":"NCBITaxon:1177","l":"Nostoc","na":41,"nb":6579,"a":[["alkaloids/nocuolin-a.yaml","Nocuolin A"],["amino_acids_and_peptides/anabaenopeptin-802.yaml","anabaenopeptin 802"],["amino_acids_and_peptides/heinamide-a1.yaml","heinamide A1"],["amino_acids_and_peptides/heinamide-a2.yaml","heinamide A2"],["amino_acids_and_peptides/heinamide-a3.yaml","heinamide A3"],["amino_acids_and_peptides/heinamide-b1.yaml","heinamide B1"]],"b":[["NCBITaxon%3A3085085","Anabaena oryzae CF66701"],["NCBITaxon%3A2739044","Cyanocohniella crotaloides"],["NCBITaxon%3A1179","Desmonostoc muscorum"],["NCBITaxon%3A3366270","Nostoc breve"],["NCBITaxon%3A3040065","Nostoc breve BG11-PS"],["NCBITaxon%3A1521619","Nostoc caeruleum"]]},{"id":"NCBITaxon:1126","l":"Microcystis aeruginosa","na":36,"nb":1085,"a":[["alkaloids/anatoxin-a.yaml","anatoxin-a"],["amino_acids_and_peptides/aerucyclamide-a.yaml","aerucyclamide A"],["amino_acids_and_peptides/aerucyclamide-c.yaml","aerucyclamide C"],["amino_acids_and_peptides/aerucyclamide-d.yaml","aerucyclamide D"],["amino_acids_and_peptides/aeruginosamide-b.yaml","aeruginosamide B"],["amino_acids_and_peptides/aeruginosamide-c.yaml","aeruginosamide C"]],"b":[["NCBITaxon%3A1126","Microcystis aeruginosa"],["NCBITaxon%3A270630","Microcystis aeruginosa 0BB35S02"],["NCBITaxon%3A270631","Microcystis aeruginosa 0BF29S01"],["NCBITaxon%3A270632","Microcystis aeruginosa 0BF29S03"],["NCBITaxon%3A2358142","Microcystis aeruginosa 11-30S32"],["NCBITaxon%3A3113711","Microcystis aeruginosa 1339"]]},{"id":"NCBITaxon:1912","l":"Streptomyces hygroscopicus","na":29,"nb":35,"a":[["alkaloids/9-methylstreptimidone.yaml","9-methylstreptimidone"],["alkaloids/indigoidine-2.yaml","indigoidine"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/cyclothiazomycin.yaml","cyclothiazomycin"],["amino_acids_and_peptides/eponemycin.yaml","eponemycin"],["amino_acids_and_peptides/himastatin.yaml","himastatin"]],"b":[["NCBITaxon%3A285578","Streptomyces angustmyceticus"],["NCBITaxon%3A68175","Streptomyces antimycoticus"],["NCBITaxon%3A1226758","Streptomyces antimycoticus subsp. mordarskii"],["NCBITaxon%3A476551","Streptomyces ascomycinicus"],["NCBITaxon%3A114699","Streptomyces asiaticus"],["NCBITaxon%3A3098222","Streptomyces asiaticus subsp. ignotus"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":27,"nb":79,"a":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["alkaloids/pseudomonine.yaml","pseudomonine"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyreudione-c.yaml","pyreudione C"],["alkaloids/quinolobactin.yaml","quinolobactin"]],"b":[["NCBITaxon%3A1931223","Caballeronia sp."],["NCBITaxon%3A89065","Pseudomonas abietaniphila"],["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1123912","Pseudomonas auricularis"],["NCBITaxon%3A930166","Pseudomonas brassicacearum"],["NCBITaxon%3A129817","Pseudomonas brenneri"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":24,"nb":3868,"a":[["alkaloids/biotin.yaml","biotin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A196023","Aeromonas hydrophila subsp. hydrophila"],["NCBITaxon%3A380703","Aeromonas hydrophila subsp. hydrophila ATCC 7966"],["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A35703","Citrobacter amalonaticus"],["NCBITaxon%3A163202","Corynebacterium appendicis"]]},{"id":"NCBITaxon:5073","l":"Penicillium","na":20,"nb":290,"a":[["alkaloids/citridone-a.yaml","citridone A"],["alkaloids/citridone-b-2.yaml","citridone B'"],["alkaloids/citridone-b.yaml","citridone B"],["alkaloids/communesin-b.yaml","communesin B"],["alkaloids/communesin-c.yaml","communesin C"],["alkaloids/communesin-d.yaml","communesin D"]],"b":[["NCBITaxon%3A70094","Penicillium adametzioides"],["NCBITaxon%3A36650","Penicillium aethiopicum"],["NCBITaxon%3A74831","Penicillium albocoremium"],["NCBITaxon%3A1324773","Penicillium alexiae"],["NCBITaxon%3A2998136","Penicillium allaniae"],["NCBITaxon%3A1459053","Penicillium allii"]]},{"id":"NCBITaxon:1911","l":"Streptomyces griseus","na":32,"nb":20,"a":[["alkaloids/cycloheximide.yaml","cycloheximide"],["alkaloids/grixazone-a.yaml","grixazone A"],["alkaloids/iminimycin-a.yaml","iminimycin A"],["alkaloids/iminimycin-b.yaml","iminimycin B"],["alkaloids/indolmycin.yaml","indolmycin"],["alkaloids/melanin.yaml","melanin"]],"b":[["NCBITaxon%3A1884","Streptomyces acrimycini"],["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A67274","Streptomyces argenteolus"],["NCBITaxon%3A1896","Streptomyces bikiniensis"],["NCBITaxon%3A90079","Streptomyces caviscabies"],["NCBITaxon%3A66883","Streptomyces cyaneofuscatus"]]},{"id":"NCBITaxon:5052","l":"Aspergillus","na":18,"nb":320,"a":[["alkaloids/psychrophilin-e.yaml","psychrophilin E"],["alkaloids/terrequinone-a.yaml","terrequinone A"],["fatty_acids/himeic-acid-a.yaml","himeic acid A"],["polyketides/asperlin.yaml","(+)-asperlin"],["polyketides/geodin.yaml","geodin"],["polyketides/mycophenolic-acid.yaml","mycophenolic acid"]],"b":[["NCBITaxon%3A1904037","Aspergillus acidohumus"],["NCBITaxon%3A487661","Aspergillus aculeatinus"],["NCBITaxon%3A1070780","Aspergillus affinis"],["NCBITaxon%3A657433","Aspergillus alabamensis"],["NCBITaxon%3A1612426","Aspergillus allahabadii"],["NCBITaxon%3A209559","Aspergillus alliaceus"]]},{"id":"NCBITaxon:1190","l":"Fischerella","na":16,"nb":189,"a":[["alkaloids/12-epi-hapalindole-c-isonitrile.yaml","12-epi-hapalindole C isonitrile"],["alkaloids/12-epi-hapalindole-e.yaml","12-epi-hapalindole E"],["alkaloids/12-epi-hapalindole-j-isonitrile.yaml","12-epi-hapalindole J isonitrile"],["alkaloids/ambiguine-a-isonitrile.yaml","ambiguine A isonitrile"],["alkaloids/ambiguine-b-isonitrile.yaml","ambiguine B isonitrile"],["alkaloids/ambiguine-d-isonitrile.yaml","ambiguine D isonitrile"]],"b":[["NCBITaxon%3A384603","filamentous thermophilic cyanobacterium tBTRCCn 101"],["NCBITaxon%3A384608","filamentous thermophilic cyanobacterium tBTRCCn 403"],["NCBITaxon%3A56108","Fischerella ambigua"],["NCBITaxon%3A2904298","Fischerella ambigua AFC012"],["NCBITaxon%3A1678516","Fischerella ambigua BAT1"],["NCBITaxon%3A452092","Fischerella ambigua FS 18"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":16,"nb":82,"a":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["amino_acids_and_peptides/ericin-s.yaml","ericin S"],["amino_acids_and_peptides/iturin.yaml","iturin"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"]],"b":[["NCBITaxon%3A1390","Bacillus amyloliquefaciens"],["NCBITaxon%3A1452","Bacillus atrophaeus"],["NCBITaxon%3A640707","Bacillus atrophaeus ATCC 9372"],["NCBITaxon%3A483913","Bacillus inaquosorum"],["NCBITaxon%3A1236548","Bacillus inaquosorum KCTC 13429"],["NCBITaxon%3A1402","Bacillus licheniformis"]]},{"id":"NCBITaxon:2063","l":"Kitasatospora","na":15,"nb":639,"a":[["alkaloids/5-2-hydroxyacetyl-5-10-dihydrophenazine-1-carboxylic-acid.yaml","5-(2-hydroxyacetyl)-5,10-dihydrophenazine-1-carboxylic acid"],["alkaloids/5-acetyl-5-10-dihydrophenazine-1-carboxylic-acid.yaml","5-acetyl-5,10-dihydrophenazine-1-carboxylic acid"],["alkaloids/endophenazine-a1.yaml","endophenazine A1"],["alkaloids/endophenazine-f.yaml","endophenazine F"],["alkaloids/endophenazine-g.yaml","endophenazine G"],["amino_acids_and_peptides/zelkovamycin-b.yaml","zelkovamycin B"]],"b":[["NCBITaxon%3A67265","Kitasatospora aburaviensis"],["NCBITaxon%3A285481","Kitasatospora aburaviensis subsp. tuftformis"],["NCBITaxon%3A2567942","Kitasatospora acidiphila"],["NCBITaxon%3A68173","Kitasatospora albolonga"],["NCBITaxon%3A258052","Kitasatospora arboriphila"],["NCBITaxon%3A285545","Kitasatospora atroaurantiaca"]]},{"id":"NCBITaxon:2013","l":"Nocardiopsis","na":14,"nb":1175,"a":[["alkaloids/k-252a-2.yaml","K-252a"],["alkaloids/k-252a.yaml","K-252a"],["alkaloids/methylpendolmycin.yaml","methylpendolmycin"],["alkaloids/pendolmycin.yaml","pendolmycin"],["amino_acids_and_peptides/tp-1161.yaml","TP-1161"],["polyketides/apoptolidin.yaml","apoptolidin"]],"b":[["NCBITaxon%3A2838703","Candidatus Nocardiopsis merdipullorum"],["NCBITaxon%3A220378","Nocardiopsis aegyptia"],["NCBITaxon%3A2831968","Nocardiopsis akebiae"],["NCBITaxon%3A1236269","Nocardiopsis akesuensis"],["NCBITaxon%3A53437","Nocardiopsis alba"],["NCBITaxon%3A1205910","Nocardiopsis alba ATCC BAA-2165"]]},{"id":"NCBITaxon:29488","l":"Photorhabdus luminescens","na":14,"nb":20,"a":[["alkaloids/photobactin.yaml","photobactin"],["alkaloids/pzn5.yaml","PZN5"],["amino_acids_and_peptides/gamexpeptide-c.yaml","gamexpeptide C"],["amino_acids_and_peptides/glidobactin.yaml","glidobactin"],["amino_acids_and_peptides/luminmycin-a.yaml","luminmycin A"],["polyketides/photopyrone-a.yaml","photopyrone A"]],"b":[["NCBITaxon%3A171438","Photorhabdus akhurstii"],["NCBITaxon%3A2934395","Photorhabdus akhurstii subsp. akhurstii"],["NCBITaxon%3A1004165","Photorhabdus caribbeanensis"],["NCBITaxon%3A1004166","Photorhabdus hainanensis"],["NCBITaxon%3A230088","Photorhabdus kayaii"],["NCBITaxon%3A768034","Photorhabdus kleinii"]]},{"id":"NCBITaxon:1654","l":"Actinomyces","na":13,"nb":460,"a":[["alkaloids/lynamicin-a.yaml","lynamicin A"],["alkaloids/lynamicin-d.yaml","lynamicin D"],["amino_acids_and_peptides/cephamycin-c.yaml","cephamycin C"],["amino_acids_and_peptides/glycinocin-a.yaml","glycinocin A"],["carbohydrates/cetoniacytone-a.yaml","cetoniacytone A"],["polyketides/4-hexadecanoyl-3-hydroxy-2-hydroxymethyl-2h-furan-5-one.yaml","4-hexadecanoyl-3-hydroxy-2-(hydroxymethyl)-2H-furan-5-one"]],"b":[["NCBITaxon%3A3050225","Actinomyces acetigenes"],["NCBITaxon%3A1852361","Actinomyces bouchesdurhonensis"],["NCBITaxon%3A1658","Actinomyces bovis"],["NCBITaxon%3A131109","Actinomyces bowdenii"],["NCBITaxon%3A2755559","Actinomyces capricornis"],["NCBITaxon%3A119495","Actinomyces catuli"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":12,"nb":557,"a":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]],"b":[["NCBITaxon%3A2073169","Chromobacterium alticapitis"],["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1454219","Pseudomonas aeruginosa 059A"],["NCBITaxon%3A1421538","Pseudomonas aeruginosa 0812"],["NCBITaxon%3A1421545","Pseudomonas aeruginosa 0822"],["NCBITaxon%3A1421531","Pseudomonas aeruginosa 0C2E"]]},{"id":"NCBITaxon:168694","l":"Salinispora","na":12,"nb":263,"a":[["amino_acids_and_peptides/salinosporamide-a.yaml","salinosporamide A"],["fatty_acids/salinipostin-a.yaml","Salinipostin A"],["fatty_acids/salinipostin-b.yaml","Salinipostin B"],["fatty_acids/salinipostin-c.yaml","Salinipostin C"],["fatty_acids/salinipostin-d.yaml","Salinipostin D"],["fatty_acids/salinipostin-e.yaml","Salinipostin E"]],"b":[["NCBITaxon%3A168697","Salinispora arenicola"],["NCBITaxon%3A391967","Salinispora arenicola ATCC BAA-917"],["NCBITaxon%3A1136425","Salinispora arenicola CNB458"],["NCBITaxon%3A1137250","Salinispora arenicola CNB527"],["NCBITaxon%3A1136427","Salinispora arenicola CNH646"],["NCBITaxon%3A1408327","Salinispora arenicola CNH713"]]},{"id":"NCBITaxon:1914","l":"Streptomyces lavendulae","na":12,"nb":17,"a":[["alkaloids/indigoidine.yaml","indigoidine"],["alkaloids/saframycin-a.yaml","saframycin A"],["alkaloids/saframycin-b.yaml","saframycin B"],["amino_acids_and_peptides/cycloserine.yaml","cycloserine"],["amino_acids_and_peptides/isocomplestatin.yaml","isocomplestatin"],["carbohydrates/showdomycin.yaml","showdomycin"]],"b":[["NCBITaxon%3A1914","Streptomyces lavendulae"],["NCBITaxon%3A1522107","Streptomyces lavendulae subsp. avirens"],["NCBITaxon%3A1522108","Streptomyces lavendulae subsp. brasilicus"],["NCBITaxon%3A68190","Streptomyces lavendulae subsp. colombiensis"],["NCBITaxon%3A516458","Streptomyces lavendulae subsp. fuscus"],["NCBITaxon%3A66421","Streptomyces lavendulae subsp. grasserius"]]},{"id":"NCBITaxon:1163","l":"Anabaena","na":11,"nb":988,"a":[["alkaloids/anatoxin-a.yaml","anatoxin-a"],["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"],["alkaloids/saxitoxin.yaml","saxitoxin"],["alkaloids/schizokinen.yaml","schizokinen"],["amino_acids_and_peptides/anabaenopeptin.yaml","anabaenopeptin"],["amino_acids_and_peptides/anacyclamide-a10.yaml","anacyclamide A10"]],"b":[["NCBITaxon%3A212361","Anabaena aequalis"],["NCBITaxon%3A732138","Anabaena aequalis ACCS 089"],["NCBITaxon%3A264684","Anabaena augstumalis"],["NCBITaxon%3A436026","Anabaena augstumalis A802"],["NCBITaxon%3A1217902","Anabaena augstumalis CA2a-1"],["NCBITaxon%3A1940708","Anabaena augstumalis I013-0007"]]},{"id":"NCBITaxon:1813","l":"Amycolatopsis","na":11,"nb":705,"a":[["amino_acids_and_peptides/amychelin-a.yaml","amychelin A"],["amino_acids_and_peptides/amychelin-b.yaml","amychelin B"],["amino_acids_and_peptides/felipeptin-a1.yaml","felipeptin A1"],["amino_acids_and_peptides/felipeptin-a2.yaml","felipeptin A2"],["polyketides/azicemicin-b.yaml","azicemicin B"],["polyketides/nocamycin-v.yaml","nocamycin V"]],"b":[["NCBITaxon%3A2596893","Amycolatopsis acidicola"],["NCBITaxon%3A2724524","Amycolatopsis acididurans"],["NCBITaxon%3A715473","Amycolatopsis acidiphila"],["NCBITaxon%3A2842453","Amycolatopsis aidingensis"],["NCBITaxon%3A76020","Amycolatopsis alba"],["NCBITaxon%3A1125972","Amycolatopsis alba DSM 44262"]]},{"id":"NCBITaxon:1886","l":"Streptomyces albidoflavus","na":54,"nb":11,"a":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/anthramycin.yaml","anthramycin"],["alkaloids/diazaquinomycin-f.yaml","diazaquinomycin F"],["alkaloids/diazaquinomycin-g.yaml","diazaquinomycin G"],["alkaloids/holomycin.yaml","holomycin"],["alkaloids/melanin.yaml","melanin"]],"b":[["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A53445","Streptomyces canescens"],["NCBITaxon%3A68184","Streptomyces champavatii"],["NCBITaxon%3A1902","Streptomyces coelicolor"],["NCBITaxon%3A53447","Streptomyces felleus"],["NCBITaxon%3A1911","Streptomyces griseus"]]},{"id":"NCBITaxon:1888","l":"Streptomyces albus","na":32,"nb":11,"a":[["alkaloids/berninamycin-j.yaml","berninamycin J"],["alkaloids/berninamycin-k.yaml","berninamycin K"],["alkaloids/indolmycin.yaml","indolmycin"],["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/streptonigrin.yaml","streptonigrin"],["alkaloids/sulfadixiamycin-a.yaml","sulfadixiamycin A"]],"b":[["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A1888","Streptomyces albus"],["NCBITaxon%3A1962","Streptomyces albus G"],["NCBITaxon%3A457425","Streptomyces albus J1074"],["NCBITaxon%3A67257","Streptomyces albus subsp. albus"],["NCBITaxon%3A1081613","Streptomyces albus subsp. albus DSM 41398"]]},{"id":"NCBITaxon:5507","l":"Fusarium oxysporum","na":11,"nb":27,"a":[["alkaloids/fusaric-acid.yaml","fusaric acid"],["polyketides/bikaverin.yaml","bikaverin"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"],["polyketides/fumonisin-c1.yaml","Fumonisin C1"],["polyketides/fumonisin-c2.yaml","Fumonisin C2"],["polyketides/fumonisin-c3.yaml","Fumonisin C3"]],"b":[["NCBITaxon%3A5507","Fusarium oxysporum"],["NCBITaxon%3A72712","Fusarium oxysporum f. sp. albedinis"],["NCBITaxon%3A396571","Fusarium oxysporum f. sp. cepae"],["NCBITaxon%3A62683","Fusarium oxysporum f. sp. ciceris"],["NCBITaxon%3A100902","Fusarium oxysporum f. sp. conglutinans"],["NCBITaxon%3A660025","Fusarium oxysporum f. sp. conglutinans Fo5176"]]},{"id":"NCBITaxon:162986","l":"Hapalosiphon welwitschii","na":11,"nb":17,"a":[["alkaloids/12-epi-fischerindole-i-isonitrile.yaml","12-epi-fischerindole I isonitrile"],["alkaloids/12-epi-fischerindole-u-isonitrile.yaml","12-epi-fischerindole U isonitrile"],["alkaloids/12-epi-hapalindole-c-isonitrile.yaml","12-epi-hapalindole C isonitrile"],["alkaloids/12-epi-hapalindole-e.yaml","12-epi-hapalindole E"],["alkaloids/3-epi-welwitindolinone-b-isothiocyanate.yaml","3-epi-welwitindolinone B isothiocyanate"],["alkaloids/welwitindolinone-a-isonitrile.yaml","welwitindolinone A isonitrile"]],"b":[["NCBITaxon%3A162986","Hapalosiphon welwitschii"],["NCBITaxon%3A1565563","Hapalosiphon welwitschii AUS-JR/BS/MS/NT-076"],["NCBITaxon%3A1917997","Hapalosiphon welwitschii BHU49"],["NCBITaxon%3A3024995","Hapalosiphon welwitschii *C2-JAYA"],["NCBITaxon%3A2837618","Hapalosiphon welwitschii EB01A2"],["NCBITaxon%3A2907140","Hapalosiphon welwitschii HKAR-18"]]},{"id":"NCBITaxon:158786","l":"Lyngbya majuscula","na":11,"nb":11,"a":[["alkaloids/lyngbyatoxin.yaml","lyngbyatoxin"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/malyngamide-c-acetate.yaml","malyngamide C acetate"],["carbohydrates/streptomycin.yaml","streptomycin"],["polyketides/curacin-a-2.yaml","curacin A"],["polyketides/curacin-a.yaml","curacin A"]],"b":[["NCBITaxon%3A1414809","Lyngbya cf. majuscula miya1-1mo9"],["NCBITaxon%3A158786","Lyngbya majuscula"],["NCBITaxon%3A1930583","Lyngbya majuscula BG01H01"],["NCBITaxon%3A1930584","Lyngbya majuscula BG03H03"],["NCBITaxon%3A2654332","Lyngbya majuscula HA5"],["NCBITaxon%3A276770","Lyngbya majuscula HECT"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":10,"nb":183,"a":[["alkaloids/labradorin-1.yaml","labradorin 1"],["alkaloids/labradorin-2.yaml","labradorin 2"],["alkaloids/secimide.yaml","secimide"],["amino_acids_and_peptides/phaseolotoxin.yaml","phaseolotoxin"],["amino_acids_and_peptides/syringolin-a.yaml","syringolin A"],["amino_acids_and_peptides/tabtoxin.yaml","tabtoxin"]],"b":[["NCBITaxon%3A86840","Pseudomonas cannabina"],["NCBITaxon%3A53409","Pseudomonas coronafaciens"],["NCBITaxon%3A29438","Pseudomonas savastanoi"],["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A1204471","Pseudomonas syringae BRIP34876"]]},{"id":"NCBITaxon:1178","l":"Nostoc commune","na":10,"nb":174,"a":[["amino_acids_and_peptides/microviridin-n3.yaml","microviridin N3"],["amino_acids_and_peptides/microviridin-n4.yaml","microviridin N4"],["amino_acids_and_peptides/microviridin-n6.yaml","microviridin N6"],["amino_acids_and_peptides/microviridin-n7.yaml","microviridin N7"],["amino_acids_and_peptides/microviridin-n8.yaml","microviridin N8"],["amino_acids_and_peptides/microviridin-n9.yaml","microviridin N9"]],"b":[["NCBITaxon%3A995089","Nostoc cf. commune 257-15"],["NCBITaxon%3A995090","Nostoc cf. commune 257-16"],["NCBITaxon%3A995091","Nostoc cf. commune 257-20"],["NCBITaxon%3A449210","Nostoc cf. commune KG-102"],["NCBITaxon%3A449209","Nostoc cf. commune KG-54"],["NCBITaxon%3A449208","Nostoc cf. commune SO-36"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa PAO1","na":10,"nb":23,"a":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]],"b":[["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1453991","Pseudomonas aeruginosa BK1"],["NCBITaxon%3A1236530","Pseudomonas aeruginosa JCM 14847"],["NCBITaxon%3A1131757","Pseudomonas aeruginosa MPAO1/P1"],["NCBITaxon%3A1131758","Pseudomonas aeruginosa MPAO1/P2"],["NCBITaxon%3A208964","Pseudomonas aeruginosa PAO1"]]},{"id":"NCBITaxon:56108","l":"Fischerella ambigua","na":13,"nb":10,"a":[["alkaloids/12-epi-hapalindole-j-isonitrile.yaml","12-epi-hapalindole J isonitrile"],["alkaloids/ambiguine-a-isonitrile.yaml","ambiguine A isonitrile"],["alkaloids/ambiguine-b-isonitrile.yaml","ambiguine B isonitrile"],["alkaloids/ambiguine-c-isonitrile.yaml","ambiguine C isonitrile"],["alkaloids/ambiguine-d-isonitrile.yaml","ambiguine D isonitrile"],["alkaloids/ambiguine-e-isonitrile.yaml","ambiguine E isonitrile"]],"b":[["NCBITaxon%3A56108","Fischerella ambigua"],["NCBITaxon%3A2904298","Fischerella ambigua AFC012"],["NCBITaxon%3A1678516","Fischerella ambigua BAT1"],["NCBITaxon%3A452092","Fischerella ambigua FS 18"],["NCBITaxon%3A1440167","Fischerella ambigua ISC 107"],["NCBITaxon%3A1084562","Fischerella ambigua ISC 4"]]},{"id":"NCBITaxon:628","l":"Xenorhabdus nematophila","na":13,"nb":10,"a":[["alkaloids/nematophin.yaml","nematophin"],["alkaloids/odilorhabdin-noso-95a.yaml","odilorhabdin NOSO-95A"],["alkaloids/odilorhabdin-noso-95b.yaml","odilorhabdin NOSO-95B"],["alkaloids/odilorhabdin-noso-95c.yaml","odilorhabdin NOSO-95C"],["amino_acids_and_peptides/rhabdopeptide-4.yaml","rhabdopeptide 4"],["amino_acids_and_peptides/xenortide-a.yaml","xenortide A"]],"b":[["NCBITaxon%3A40576","Xenorhabdus bovienii"],["NCBITaxon%3A628","Xenorhabdus nematophila"],["NCBITaxon%3A1437823","Xenorhabdus nematophila AN6/1"],["NCBITaxon%3A406817","Xenorhabdus nematophila ATCC 19061"],["NCBITaxon%3A1306162","Xenorhabdus nematophila F1"],["NCBITaxon%3A1437825","Xenorhabdus nematophila str. Anatoliense"]]},{"id":"NCBITaxon:28095","l":"Burkholderia gladioli","na":12,"nb":10,"a":[["alkaloids/gladiofungin-a.yaml","gladiofungin A"],["alkaloids/gladiofungin-b.yaml","gladiofungin B"],["alkaloids/toxoflavin.yaml","toxoflavin"],["amino_acids_and_peptides/arsinothricin.yaml","arsinothricin"],["amino_acids_and_peptides/bolagladin-a.yaml","bolagladin A"],["fatty_acids/bongkrekic-acid-2.yaml","bongkrekic acid"]],"b":[["NCBITaxon%3A28095","Burkholderia gladioli"],["NCBITaxon%3A1263856","Burkholderia gladioli 3848s-5"],["NCBITaxon%3A999541","Burkholderia gladioli BSR3"],["NCBITaxon%3A1218079","Burkholderia gladioli NBRC 13700"],["NCBITaxon%3A336070","Burkholderia gladioli pv. agaricicola"],["NCBITaxon%3A32010","Burkholderia gladioli pv. alliicola"]]},{"id":"NCBITaxon:1386","l":"Bacillus","na":9,"nb":33976,"a":[["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bogorol-a.yaml","bogorol A"],["amino_acids_and_peptides/koranimine.yaml","koranimine"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"],["amino_acids_and_peptides/rhizocticin-a.yaml","rhizocticin A"],["polyketides/difficidin.yaml","difficidin"]],"b":[["NCBITaxon%3A208551","alkaliphilic bacterium AF112"],["NCBITaxon%3A33934","Anoxybacillus flavithermus"],["NCBITaxon%3A1185649","Anoxybacillus flavithermus subsp. flavithermus"],["NCBITaxon%3A28030","Bacillus acidopullulyticus"],["NCBITaxon%3A33017","Bacillus acidovorans"],["NCBITaxon%3A203540","Bacillus aeolius"]]},{"id":"NCBITaxon:1817","l":"Nocardia","na":9,"nb":1573,"a":[["alkaloids/rebeccamycin.yaml","rebeccamycin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/nocathiacin-i.yaml","nocathiacin I"],["amino_acids_and_peptides/ristocetin-a.yaml","Ristocetin A"],["amino_acids_and_peptides/vancomycin.yaml","vancomycin"],["polyketides/macbecin-ii.yaml","macbecin II"]],"b":[["NCBITaxon%3A120957","Nocardia abscessus"],["NCBITaxon%3A1206723","Nocardia abscessus NBRC 100374"],["NCBITaxon%3A2802282","Nocardia acididurans"],["NCBITaxon%3A1224718","Nocardia aciditolerans"],["NCBITaxon%3A404580","Nocardia acidivorans"],["NCBITaxon%3A1210062","Nocardia acidivorans NBRC 108247"]]},{"id":"NCBITaxon:1988","l":"Actinomadura","na":9,"nb":562,"a":[["alkaloids/k-252a.yaml","K-252a"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["carbohydrates/2-chloropentostatin.yaml","2'-chloropentostatin"],["polyketides/actinospirol-a.yaml","actinospirol A"],["polyketides/actinospirol-b.yaml","actinospirol B"],["polyketides/maduralactomycin-a.yaml","maduralactomycin A"]],"b":[["NCBITaxon%3A1819600","Actinomadura adrarensis"],["NCBITaxon%3A406431","Actinomadura alba"],["NCBITaxon%3A1679523","Actinomadura algeriensis"],["NCBITaxon%3A1735446","Actinomadura alkaliterrae"],["NCBITaxon%3A755139","Actinomadura apis"],["NCBITaxon%3A1990","Actinomadura atramentaria"]]},{"id":"NCBITaxon:1160","l":"Planktothrix agardhii","na":9,"nb":289,"a":[["amino_acids_and_peptides/aeruginoside-126a.yaml","aeruginoside 126A"],["amino_acids_and_peptides/aeruginoside-126b.yaml","aeruginoside 126B"],["amino_acids_and_peptides/anabaenopeptin-908.yaml","anabaenopeptin 908"],["amino_acids_and_peptides/anabaenopeptin-915.yaml","anabaenopeptin 915"],["amino_acids_and_peptides/microcystin.yaml","microcystin"],["amino_acids_and_peptides/prenylagaramide-b.yaml","prenylagaramide B"]],"b":[["NCBITaxon%3A1160","Planktothrix agardhii"],["NCBITaxon%3A358557","Planktothrix agardhii 0ES34S1"],["NCBITaxon%3A2884158","Planktothrix agardhii 1025"],["NCBITaxon%3A2884159","Planktothrix agardhii 1026"],["NCBITaxon%3A2884160","Planktothrix agardhii 1027"],["NCBITaxon%3A2884161","Planktothrix agardhii 1029"]]},{"id":"NCBITaxon:2071","l":"Saccharothrix","na":9,"nb":151,"a":[["amino_acids_and_peptides/saccharochelin-a.yaml","saccharochelin A"],["amino_acids_and_peptides/saccharochelin-b.yaml","saccharochelin B"],["amino_acids_and_peptides/saccharochelin-c.yaml","saccharochelin C"],["amino_acids_and_peptides/saccharochelin-d.yaml","saccharochelin D"],["amino_acids_and_peptides/saccharochelin-e.yaml","saccharochelin E"],["amino_acids_and_peptides/saccharochelin-f.yaml","saccharochelin F"]],"b":[["NCBITaxon%3A173560","Saccharothrix algeriensis"],["NCBITaxon%3A2072","Saccharothrix australiensis"],["NCBITaxon%3A3231910","Saccharothrix camelliae"],["NCBITaxon%3A1280637","Saccharothrix carnea"],["NCBITaxon%3A33919","Saccharothrix coeruleofusca"],["NCBITaxon%3A2593674","Saccharothrix deserti"]]},{"id":"NCBITaxon:5506","l":"Fusarium","na":9,"nb":143,"a":[["alkaloids/lucilactaene.yaml","lucilactaene"],["alkaloids/ng-391.yaml","NG-391"],["polyketides/fusarubin.yaml","fusarubin"],["unclassified/ascochlorin.yaml","ascochlorin"],["unclassified/fusaristatin-a.yaml","fusaristatin A"],["unclassified/roquefortine-d.yaml","roquefortine D"]],"b":[["NCBITaxon%3A5515","Fusarium acuminatum"],["NCBITaxon%3A1803897","Fusarium agapanthi"],["NCBITaxon%3A1237068","Fusarium albosuccineum"],["NCBITaxon%3A2050978","Fusarium algeriense"],["NCBITaxon%3A131363","Fusarium ambrosium"],["NCBITaxon%3A183586","Fusarium anguioides"]]},{"id":"NCBITaxon:1155739","l":"Moorena producens","na":9,"nb":40,"a":[["amino_acids_and_peptides/cryptomaldamide.yaml","cryptomaldamide"],["amino_acids_and_peptides/vatiamide-e.yaml","vatiamide E"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"],["polyketides/doxorubicin.yaml","doxorubicin"],["polyketides/vatiamide-a.yaml","vatiamide A"],["polyketides/vatiamide-b.yaml","vatiamide B"]],"b":[["NCBITaxon%3A1155739","Moorena producens"],["NCBITaxon%3A276768","Moorena producens 19L"],["NCBITaxon%3A489825","Moorena producens 3L"],["NCBITaxon%3A2546228","Moorena producens ASI16Jul14-2"],["NCBITaxon%3A1288314","Moorena producens BCBC11-14"],["NCBITaxon%3A1288315","Moorena producens FK12-19"]]},{"id":"NCBITaxon:57975","l":"Burkholderia thailandensis","na":9,"nb":17,"a":[["fatty_acids/fr901464.yaml","FR901464"],["polyketides/malleicyprol.yaml","malleicyprol"],["polyketides/thailandamide-lactone.yaml","thailandamide lactone"],["polyketides/thailandamide.yaml","thailandamide"],["polyketides/thailanstatin-a.yaml","thailanstatin A"],["shikimates_and_phenylpropanoids/bactobolin.yaml","bactobolin"]],"b":[["NCBITaxon%3A57975","Burkholderia thailandensis"],["NCBITaxon%3A1249660","Burkholderia thailandensis 2002721643"],["NCBITaxon%3A1241582","Burkholderia thailandensis 2002721723"],["NCBITaxon%3A1249664","Burkholderia thailandensis 34"],["NCBITaxon%3A441164","Burkholderia thailandensis Bt4"],["NCBITaxon%3A1436064","Burkholderia thailandensis E0444"]]},{"id":"NCBITaxon:1854","l":"Frankia","na":8,"nb":584,"a":[["amino_acids_and_peptides/frankobactin-a1.yaml","frankobactin A1"],["amino_acids_and_peptides/frankobactin-a3.yaml","frankobactin A3"],["amino_acids_and_peptides/frankobactin-b1.yaml","frankobactin B1"],["amino_acids_and_peptides/frankobactin-b3.yaml","frankobactin B3"],["amino_acids_and_peptides/frankobactin-c1.yaml","frankobactin C1"],["polyketides/frankiamicin.yaml","frankiamicin"]],"b":[["NCBITaxon%3A2699483","Candidatus Frankia alpina"],["NCBITaxon%3A2714109","Candidatus Frankia meridionalis"],["NCBITaxon%3A2060052","Candidatus Frankia nodulisporulans"],["NCBITaxon%3A1859","Frankia alni"],["NCBITaxon%3A326424","Frankia alni ACN14a"],["NCBITaxon%3A1836972","Frankia canadensis"]]},{"id":"NCBITaxon:351187","l":"Salinispora pacifica","na":8,"nb":40,"a":[["alkaloids/lymphostin.yaml","lymphostin"],["polyketides/lomaiviticin-a.yaml","lomaiviticin A"],["polyketides/lomaiviticin-c.yaml","lomaiviticin C"],["polyketides/lomaiviticin-d-2.yaml","lomaiviticin D"],["polyketides/lomaiviticin-e.yaml","lomaiviticin E"],["polyketides/pacificanone-a.yaml","pacificanone A"]],"b":[["NCBITaxon%3A351187","Salinispora pacifica"],["NCBITaxon%3A1408347","Salinispora pacifica CNH732"],["NCBITaxon%3A1169193","Salinispora pacifica CNQ768"],["NCBITaxon%3A1137260","Salinispora pacifica CNR114"],["NCBITaxon%3A1408348","Salinispora pacifica CNR510"],["NCBITaxon%3A1137259","Salinispora pacifica CNR551"]]},{"id":"NCBITaxon:492670","l":"Bacillus velezensis","na":8,"nb":18,"a":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["polyketides/bacillaene.yaml","bacillaene"],["polyketides/difficidin.yaml","difficidin"],["polyketides/macrolactin-h.yaml","macrolactin H"],["unclassified/corynebactin.yaml","corynebactin"]],"b":[["NCBITaxon%3A492670","Bacillus velezensis"],["NCBITaxon%3A2517241","Bacillus velezensis A3"],["NCBITaxon%3A1225788","Bacillus velezensis AS43.3"],["NCBITaxon%3A1239834","Bacillus velezensis At1"],["NCBITaxon%3A1114958","Bacillus velezensis CAU B946"],["NCBITaxon%3A2853458","Bacillus velezensis EYE_388"]]},{"id":"NCBITaxon:43356","l":"Kutzneria","na":8,"nb":16,"a":[["polyketides/epemicin-a.yaml","epemicin A"],["polyketides/epemicin-b.yaml","epemicin B"],["unclassified/kutzneride-1.yaml","Kutzneride 1"],["unclassified/kutzneride-2.yaml","Kutzneride 2"],["unclassified/kutzneride-3.yaml","Kutzneride 3"],["unclassified/kutzneride-4.yaml","Kutzneride 4"]],"b":[["NCBITaxon%3A1045776","Kutzneria buriramensis"],["NCBITaxon%3A1483604","Kutzneria chonburiensis"],["NCBITaxon%3A103725","Kutzneria kofuensis"],["NCBITaxon%3A1930788","Kutzneria sp."],["NCBITaxon%3A250526","Kutzneria sp. 306G04"],["NCBITaxon%3A345341","Kutzneria sp. 744"]]},{"id":"NCBITaxon:58346","l":"Streptomyces platensis","na":14,"nb":8,"a":[["alkaloids/13-epi-dorrigocin-a.yaml","13-epi-dorrigocin A"],["alkaloids/17-hydroxy-8-desmethoxy-isomigrastatin.yaml","17-hydroxy-8-desmethoxy-isomigrastatin"],["alkaloids/dorrigocin-a.yaml","dorrigocin A"],["alkaloids/dorrigocin-b.yaml","dorrigocin B"],["alkaloids/iso-migrastatin.yaml","iso-migrastatin"],["alkaloids/staurosporine.yaml","staurosporine"]],"b":[["NCBITaxon%3A249580","Streptomyces glebosus"],["NCBITaxon%3A249582","Streptomyces libani subsp. rufus"],["NCBITaxon%3A1920","Streptomyces nigrescens"],["NCBITaxon%3A58346","Streptomyces platensis"],["NCBITaxon%3A1649334","Streptomyces platensis subsp. clarensis"],["NCBITaxon%3A285579","Streptomyces platensis subsp. malvinus"]]},{"id":"NCBITaxon:82996","l":"Serratia plymuthica","na":8,"nb":8,"a":[["alkaloids/serratiochelin-a.yaml","serratiochelin A"],["alkaloids/serratiochelin-b.yaml","serratiochelin B"],["alkaloids/serratiochelin-c.yaml","serratiochelin C"],["carbohydrates/kanamycin-a.yaml","kanamycin A"],["carbohydrates/tobramycin.yaml","tobramycin"],["fatty_acids/zeamine-i.yaml","zeamine I"]],"b":[["NCBITaxon%3A82996","Serratia plymuthica"],["NCBITaxon%3A682634","Serratia plymuthica 4Rx13"],["NCBITaxon%3A1206776","Serratia plymuthica A30"],["NCBITaxon%3A768492","Serratia plymuthica AS9"],["NCBITaxon%3A1218095","Serratia plymuthica NBRC 102599"],["NCBITaxon%3A1006598","Serratia plymuthica RVH1"]]},{"id":"NCBITaxon:272131","l":"Nostoc punctiforme","na":7,"nb":94,"a":[["amino_acids_and_peptides/microviridin-n3.yaml","microviridin N3"],["amino_acids_and_peptides/microviridin-n4.yaml","microviridin N4"],["amino_acids_and_peptides/microviridin-n6.yaml","microviridin N6"],["amino_acids_and_peptides/microviridin-n7.yaml","microviridin N7"],["amino_acids_and_peptides/microviridin-n8.yaml","microviridin N8"],["amino_acids_and_peptides/microviridin-n9.yaml","microviridin N9"]],"b":[["NCBITaxon%3A515295","Nostoc cf. punctiforme Bashkir"],["NCBITaxon%3A3420387","Nostoc cf. punctiforme ISB222"],["NCBITaxon%3A272131","Nostoc punctiforme"],["NCBITaxon%3A3144258","Nostoc punctiforme 2789"],["NCBITaxon%3A1050188","Nostoc punctiforme ACCS 074"],["NCBITaxon%3A1923819","Nostoc punctiforme ACSSI 037"]]},{"id":"NCBITaxon:945780","l":"Synechocystis salina","na":7,"nb":19,"a":[["polyketides/bartoloside-e.yaml","bartoloside E"],["polyketides/bartoloside-f.yaml","bartoloside F"],["polyketides/bartoloside-g.yaml","bartoloside G"],["polyketides/bartoloside-h.yaml","bartoloside H"],["polyketides/bartoloside-i.yaml","bartoloside I"],["polyketides/bartoloside-j.yaml","bartoloside J"]],"b":[["NCBITaxon%3A945780","Synechocystis salina"],["NCBITaxon%3A2962648","Synechocystis salina BO22"],["NCBITaxon%3A1858735","Synechocystis salina CCALA 192"],["NCBITaxon%3A1472759","Synechocystis salina CCNP 1104"],["NCBITaxon%3A1146998","Synechocystis salina HelwanI"],["NCBITaxon%3A1828732","Synechocystis salina LEGE 00027"]]},{"id":"NCBITaxon:1890","l":"Streptomyces antibioticus","na":14,"nb":7,"a":[["alkaloids/esmeraldin.yaml","esmeraldin"],["alkaloids/pentostatin.yaml","pentostatin"],["amino_acids_and_peptides/2-2-hydroxyethyl-clavam.yaml","(-)-2-(2-hydroxyethyl)clavam"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["amino_acids_and_peptides/scabichelin.yaml","scabichelin"],["amino_acids_and_peptides/valclavam.yaml","valclavam"]],"b":[["NCBITaxon%3A67255","Streptomyces achromogenes"],["NCBITaxon%3A67256","Streptomyces achromogenes subsp. achromogenes"],["NCBITaxon%3A1890","Streptomyces antibioticus"],["NCBITaxon%3A1306178","Streptomyces antibioticus JCM 4620"],["NCBITaxon%3A2713664","Streptomyces antibioticus subsp. yamensis"],["NCBITaxon%3A67315","Streptomyces lavenduligriseus"]]},{"id":"NCBITaxon:67263","l":"Streptomyces griseus subsp. griseus","na":7,"nb":14,"a":[["alkaloids/indolmycin.yaml","indolmycin"],["polyketides/chromomycin-a3.yaml","chromomycin A3"],["polyketides/dinactin.yaml","dinactin"],["polyketides/monactin.yaml","monactin"],["polyketides/nonactin.yaml","nonactin"],["polyketides/tetranactin.yaml","tetranactin"]],"b":[["NCBITaxon%3A132249","Nocardia veterana"],["NCBITaxon%3A1884","Streptomyces acrimycini"],["NCBITaxon%3A67274","Streptomyces argenteolus"],["NCBITaxon%3A66872","Streptomyces baarnensis"],["NCBITaxon%3A1896","Streptomyces bikiniensis"],["NCBITaxon%3A90079","Streptomyces caviscabies"]]},{"id":"NCBITaxon:1464","l":"Paenibacillus larvae","na":8,"nb":7,"a":[["alkaloids/paenilamicin-a2.yaml","paenilamicin A2"],["alkaloids/paenilamicin-b1.yaml","paenilamicin B1"],["alkaloids/paenilamicin-b2.yaml","paenilamicin B2"],["alkaloids/paenilamicin.yaml","paenilamicin"],["amino_acids_and_peptides/paenilarvin-a.yaml","paenilarvin A"],["amino_acids_and_peptides/paenilarvin-b.yaml","paenilarvin B"]],"b":[["NCBITaxon%3A1464","Paenibacillus larvae"],["NCBITaxon%3A147375","Paenibacillus larvae subsp. larvae"],["NCBITaxon%3A741161","Paenibacillus larvae subsp. larvae B-3650"],["NCBITaxon%3A392917","Paenibacillus larvae subsp. larvae BRL-230010"],["NCBITaxon%3A697284","Paenibacillus larvae subsp. larvae DSM 25430"],["NCBITaxon%3A697286","Paenibacillus larvae subsp. larvae DSM 25719"]]},{"id":"NCBITaxon:1908","l":"Streptomyces globisporus","na":8,"nb":7,"a":[["polyketides/c-1027-chromophore.yaml","C-1027 chromophore"],["polyketides/c-1027.yaml","C-1027"],["polyketides/landomycin-a.yaml","landomycin A"],["polyketides/nonactin.yaml","nonactin"],["polyketides/prejadomycin.yaml","prejadomycin"],["polyketides/tetranactin.yaml","tetranactin"]],"b":[["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A332582","Streptomyces flavofuscus"],["NCBITaxon%3A1908","Streptomyces globisporus"],["NCBITaxon%3A1172567","Streptomyces globisporus C-1027"],["NCBITaxon%3A66858","Streptomyces globisporus subsp. globisporus"],["NCBITaxon%3A1522106","Streptomyces globisporus subsp. griseus"]]},{"id":"NCBITaxon:32008","l":"Burkholderia","na":6,"nb":7299,"a":[["polyketides/necroxime-a.yaml","necroxime A"],["polyketides/necroxime-c.yaml","necroxime C"],["polyketides/necroxime-d.yaml","necroxime D"],["polyketides/thailanstatin-a.yaml","thailanstatin A"],["unclassified/necroxime-b.yaml","necroxime B"],["unclassified/spliceostatin.yaml","spliceostatin"]],"b":[["NCBITaxon%3A2015348","Burkholderia aenigmatica"],["NCBITaxon%3A2683677","Burkholderia alba"],["NCBITaxon%3A152480","Burkholderia ambifaria"],["NCBITaxon%3A339670","Burkholderia ambifaria AMMD"],["NCBITaxon%3A396596","Burkholderia ambifaria IOP40-10"],["NCBITaxon%3A398577","Burkholderia ambifaria MC40-6"]]},{"id":"NCBITaxon:1269","l":"Micrococcus","na":6,"nb":1469,"a":[["alkaloids/limazepine-a.yaml","limazepine A"],["alkaloids/limazepine-c.yaml","limazepine C"],["alkaloids/limazepine-d.yaml","limazepine D"],["alkaloids/limazepine-e.yaml","limazepine E"],["alkaloids/limazepine-f.yaml","limazepine F"],["terpenoids/mk-8.yaml","MK-8"]],"b":[["NCBITaxon%3A1871615","Dermacoccus sp."],["NCBITaxon%3A1275","Kocuria rosea"],["NCBITaxon%3A29377","Micrococcus aerogenes"],["NCBITaxon%3A306270","Micrococcus alkanovora"],["NCBITaxon%3A1391911","Micrococcus aloeverae"],["NCBITaxon%3A86171","Micrococcus antarcticus"]]},{"id":"NCBITaxon:5543","l":"Trichoderma","na":6,"nb":169,"a":[["polyketides/bisorbicillinol.yaml","bisorbicillinol"],["polyketides/oxosorbicillinol.yaml","oxosorbicillinol"],["polyketides/sorbicillin.yaml","sorbicillin"],["polyketides/sorbicillinol.yaml","sorbicillinol"],["unclassified/5-epimacrophorin-b.yaml","5'-epimacrophorin B"],["unclassified/gliovirin.yaml","gliovirin"]],"b":[["NCBITaxon%3A1195187","Trichoderma aethiopicum"],["NCBITaxon%3A1571655","Trichoderma afarasin"],["NCBITaxon%3A1567482","Trichoderma afroharzianum"],["NCBITaxon%3A173216","Trichoderma aggressivum"],["NCBITaxon%3A1303768","Trichoderma albofulvum"],["NCBITaxon%3A1490975","Trichoderma alcalifuscescens"]]},{"id":"NCBITaxon:56","l":"Sorangium cellulosum","na":25,"nb":6,"a":[["amino_acids_and_peptides/microsclerodermin-m.yaml","microsclerodermin M"],["polyketides/ambruticin.yaml","ambruticin"],["polyketides/chivosazol.yaml","chivosazol"],["polyketides/chlorotonil-a.yaml","chlorotonil A"],["polyketides/disorazol-a.yaml","disorazol A"],["polyketides/etnangien.yaml","etnangien"]],"b":[["NCBITaxon%3A2093422","Sorangium ambruticinum"],["NCBITaxon%3A2093423","Sorangium bulgaricum"],["NCBITaxon%3A56","Sorangium cellulosum"],["NCBITaxon%3A1254432","Sorangium cellulosum So0157-2"],["NCBITaxon%3A448385","Sorangium cellulosum So ce56"],["NCBITaxon%3A2093377","Sorangium sp."]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":14,"nb":6,"a":[["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/framycetin.yaml","framycetin"],["carbohydrates/neomycin-c.yaml","neomycin C"],["carbohydrates/paromomycin.yaml","paromomycin"]],"b":[["NCBITaxon%3A1906","Streptomyces fradiae"],["NCBITaxon%3A1319510","Streptomyces fradiae ATCC 10745 = DSM 40063"],["NCBITaxon%3A285449","Streptomyces fradiae subsp. acinicolor"],["NCBITaxon%3A2871172","Streptomyces fradiae V-1-3"],["NCBITaxon%3A66894","Streptomyces griseobrunneus"],["NCBITaxon%3A1909","Streptomyces griseolus"]]},{"id":"NCBITaxon:40576","l":"Xenorhabdus bovienii","na":6,"nb":13,"a":[["alkaloids/3-2-acetoxy-3-oxo-4-methylhexyl-indole.yaml","3-(2'-acetoxy-3'-oxo-4'-methylhexyl)-indole"],["alkaloids/3-2-acetoxy-3-oxo-4-methylpentyl-indole.yaml","3-(2'-acetoxy-3'-oxo-4'-methylpentyl)-indole"],["alkaloids/3-2-hydroxy-3-oxo-4-methylhexyl-indole.yaml","3-(2'-hydroxy-3'-oxo-4'-methylhexyl)-indole"],["alkaloids/3-2-hydroxy-3-oxo-4-methylpentyl-indole.yaml","3-(2'-hydroxy-3'-oxo-4'-methylpentyl)-indole"],["amino_acids_and_peptides/leupeptin-a.yaml","leupeptin A"],["fatty_acids/bovienimide-a.yaml","bovienimide A"]],"b":[["NCBITaxon%3A40576","Xenorhabdus bovienii"],["NCBITaxon%3A406818","Xenorhabdus bovienii SS-2004"],["NCBITaxon%3A1397852","Xenorhabdus bovienii str. feltiae Florida"],["NCBITaxon%3A1397851","Xenorhabdus bovienii str. feltiae France"],["NCBITaxon%3A1398200","Xenorhabdus bovienii str. feltiae Moldova"],["NCBITaxon%3A1379677","Xenorhabdus bovienii str. Intermedium"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":11,"nb":6,"a":[["amino_acids_and_peptides/ferrichrome.yaml","ferrichrome"],["polyketides/1-2-3-5-10-tetrahydroxy-7-methoxy-4-oxo-1-2-3-4-tetrahydroanthracen-2-yl-pentane.yaml","1-(2,3,5,10-tetrahydroxy-7-methoxy-4-oxo-1,2,3,4-tetrahydroanthracen-2-yl)pentane-2,4-dione"],["polyketides/azanigerone-a.yaml","azanigerone A"],["polyketides/campyrone-b.yaml","campyrone B"],["polyketides/desmethyl-tan-1612.yaml","desmethyl TAN-1612"],["polyketides/fumonisin-b2.yaml","fumonisin B2"]],"b":[["NCBITaxon%3A547018","Zhihengliuella alba"],["NCBITaxon%3A5061","Aspergillus niger"],["NCBITaxon%3A380704","Aspergillus niger ATCC 1015"],["NCBITaxon%3A1353008","Aspergillus niger ATCC 13496"],["NCBITaxon%3A1450533","Aspergillus niger CBS 101883"],["NCBITaxon%3A425011","Aspergillus niger CBS 513.88"]]},{"id":"NCBITaxon:1930","l":"Streptomyces scabiei","na":6,"nb":9,"a":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"],["amino_acids_and_peptides/thaxtomin-c.yaml","thaxtomin C"],["polyketides/oronofacic-acid.yaml","oronofacic acid"],["unclassified/n-coronafacoyl-l-isoleucine.yaml","N-coronafacoyl-L-isoleucine"],["unclassified/thaxtomin-a.yaml","thaxtomin A"],["unclassified/thaxtomin-b.yaml","thaxtomin B"]],"b":[["NCBITaxon%3A2993540","Streptomyces griseiscabiei"],["NCBITaxon%3A1930","Streptomyces scabiei"],["NCBITaxon%3A680198","Streptomyces scabiei 87.22"],["NCBITaxon%3A175280","Streptomyces scabiei subsp. chosun"],["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A74595","Streptomyces sp. ATCC 10246"]]},{"id":"NCBITaxon:1927","l":"Streptomyces rimosus","na":6,"nb":8,"a":[["amino_acids_and_peptides/cyclothiazomycin-c.yaml","cyclothiazomycin C"],["carbohydrates/framycetin.yaml","framycetin"],["carbohydrates/sangivamycin.yaml","sangivamycin"],["carbohydrates/toyocamycin.yaml","toyocamycin"],["polyketides/oxytetracycline.yaml","oxytetracycline"],["polyketides/rimocidin.yaml","rimocidin"]],"b":[["NCBITaxon%3A1906","Streptomyces fradiae"],["NCBITaxon%3A92743","Streptomyces paromomycinus"],["NCBITaxon%3A1927","Streptomyces rimosus"],["NCBITaxon%3A1421017","Streptomyces rimosus R6-500"],["NCBITaxon%3A1464079","Streptomyces rimosus subsp. pseudoverticillatus"],["NCBITaxon%3A132474","Streptomyces rimosus subsp. rimosus"]]},{"id":"NCBITaxon:1971","l":"Streptomyces noursei","na":8,"nb":6,"a":[["amino_acids_and_peptides/curacomycin.yaml","curacomycin"],["amino_acids_and_peptides/dechlorocuracomycin.yaml","dechlorocuracomycin"],["amino_acids_and_peptides/deimino-antipain.yaml","deimino-antipain"],["carbohydrates/streptothricin-f.yaml","streptothricin F"],["polyketides/nystatin-a1.yaml","nystatin A1"],["polyketides/nystatin.yaml","nystatin"]],"b":[["NCBITaxon%3A1971","Streptomyces noursei"],["NCBITaxon%3A316284","Streptomyces noursei ATCC 11455"],["NCBITaxon%3A1316445","Streptomyces noursei CCRC 11814"],["NCBITaxon%3A1395573","Streptomyces noursei KC-01"],["NCBITaxon%3A1395572","Streptomyces noursei PD-1"],["NCBITaxon%3A1434306","Streptomyces noursei ZPM"]]},{"id":"NCBITaxon:68280","l":"Streptomyces violaceusniger","na":7,"nb":6,"a":[["fatty_acids/desulfoclethramycin.yaml","desulfoclethramycin"],["polyketides/be-24566b.yaml","BE-24566B"],["polyketides/elaiophylin.yaml","elaiophylin"],["polyketides/meridamycin-2.yaml","meridamycin"],["polyketides/nigericin.yaml","nigericin"],["terpenoids/2-methylisoborneol.yaml","2-methylisoborneol"]],"b":[["NCBITaxon%3A1912","Streptomyces hygroscopicus"],["NCBITaxon%3A68042","Streptomyces hygroscopicus subsp. hygroscopicus"],["NCBITaxon%3A33900","Streptomyces murinus"],["NCBITaxon%3A114686","Streptomyces phaeoluteigriseus"],["NCBITaxon%3A68280","Streptomyces violaceusniger"],["NCBITaxon%3A653045","Streptomyces violaceusniger Tu 4113"]]},{"id":"NCBITaxon:37326","l":"Nocardia brasiliensis","na":6,"nb":6,"a":[["polyketides/brasilinolide-a.yaml","brasilinolide A"],["polyketides/brasilinolide-b.yaml","brasilinolide B"],["polyketides/brasilinolide-c.yaml","brasilinolide C"],["polyketides/brasiliquinone-a.yaml","brasiliquinone A"],["polyketides/brasiliquinone-b.yaml","brasiliquinone B"],["terpenoids/brasilicardin-a.yaml","brasilicardin A"]],"b":[["NCBITaxon%3A1824","Nocardia asteroides"],["NCBITaxon%3A37326","Nocardia brasiliensis"],["NCBITaxon%3A1133849","Nocardia brasiliensis ATCC 700358"],["NCBITaxon%3A1406859","Nocardia brasiliensis IFM 10847"],["NCBITaxon%3A1206724","Nocardia brasiliensis NBRC 14402"],["NCBITaxon%3A37328","Nocardia carnea"]]},{"id":"NCBITaxon:662","l":"Vibrio","na":5,"nb":15041,"a":[["alkaloids/anguibactin.yaml","anguibactin"],["amino_acids_and_peptides/divanchrobactin.yaml","divanchrobactin"],["amino_acids_and_peptides/trivanchrobactin.yaml","trivanchrobactin"],["amino_acids_and_peptides/vanchrobactin.yaml","vanchrobactin"],["polyketides/amphi-enterobactin-1.yaml","Amphi-enterobactin 1"]],"b":[["NCBITaxon%3A246572","marine bacterium 13732"],["NCBITaxon%3A194693","marine bacterium SIMO IS-S75-245"],["NCBITaxon%3A127962","uncultured Vibrio kps60rc"],["NCBITaxon%3A114054","uncultured Vibrio sp."],["NCBITaxon%3A89371","uncultured Vibrio sp. 'Artemia'"],["NCBITaxon%3A141882","uncultured Vibrio sp. HD-2000/12"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":5,"nb":4740,"a":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"],["unclassified/leuvalin.yaml","leuvalin"],["unclassified/phevalin.yaml","phevalin"],["unclassified/tyrvalin.yaml","tyrvalin"]],"b":[["NCBITaxon%3A475088","Methanosphaerula palustris"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1389955","Escherichia coli ATCC 35150"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A574","Klebsiella pneumoniae subsp. ozaenae"],["NCBITaxon%3A1218098","Klebsiella pneumoniae subsp. ozaenae NBRC 105683"]]},{"id":"NCBITaxon:1175","l":"Aphanizomenon","na":5,"nb":363,"a":[["alkaloids/7-epi-cylindrospermopsin.yaml","7-epi-cylindrospermopsin"],["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"],["alkaloids/neosaxitoxin.yaml","neosaxitoxin"],["alkaloids/saxitoxin.yaml","saxitoxin"],["fatty_acids/1-heptadecene.yaml","1-heptadecene"]],"b":[["NCBITaxon%3A173580","Aphanizomenon baltica"],["NCBITaxon%3A136083","Aphanizomenon cf. flos-aquae PMC9501"],["NCBITaxon%3A136082","Aphanizomenon cf. gracile 271"],["NCBITaxon%3A1176","Aphanizomenon flos-aquae"],["NCBITaxon%3A358550","Aphanizomenon flos-aquae 0HA35S1"],["NCBITaxon%3A489144","Aphanizomenon flos-aquae 1042"]]},{"id":"NCBITaxon:1176","l":"Aphanizomenon flos-aquae","na":5,"nb":141,"a":[["alkaloids/anatoxin-a.yaml","anatoxin-a"],["alkaloids/guanitoxin.yaml","guanitoxin"],["alkaloids/neosaxitoxin.yaml","neosaxitoxin"],["alkaloids/saxitoxin.yaml","saxitoxin"],["amino_acids_and_peptides/microcystin-lr.yaml","microcystin-LR"]],"b":[["NCBITaxon%3A136083","Aphanizomenon cf. flos-aquae PMC9501"],["NCBITaxon%3A1176","Aphanizomenon flos-aquae"],["NCBITaxon%3A358550","Aphanizomenon flos-aquae 0HA35S1"],["NCBITaxon%3A489144","Aphanizomenon flos-aquae 1042"],["NCBITaxon%3A645888","Aphanizomenon flos-aquae 1473"],["NCBITaxon%3A645889","Aphanizomenon flos-aquae 1474"]]},{"id":"NCBITaxon:168697","l":"Salinispora arenicola","na":5,"nb":66,"a":[["amino_acids_and_peptides/cyclomarin-d.yaml","cyclomarin D"],["polyketides/arenimycin-a.yaml","arenimycin A"],["polyketides/rifamycin-sv.yaml","rifamycin SV"],["unclassified/emericellamide-a.yaml","emericellamide A"],["unclassified/emericellamide-b.yaml","emericellamide B"]],"b":[["NCBITaxon%3A168697","Salinispora arenicola"],["NCBITaxon%3A391967","Salinispora arenicola ATCC BAA-917"],["NCBITaxon%3A1136425","Salinispora arenicola CNB458"],["NCBITaxon%3A1137250","Salinispora arenicola CNB527"],["NCBITaxon%3A1136427","Salinispora arenicola CNH646"],["NCBITaxon%3A1408327","Salinispora arenicola CNH713"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":5,"nb":53,"a":[["alkaloids/promysalin.yaml","promysalin"],["polyketides/pseudopyronine-a.yaml","pseudopyronine A"],["polyketides/pseudopyronine-b.yaml","pseudopyronine B"],["unclassified/putisolvin-iii.yaml","putisolvin III"],["unclassified/putisolvin-v.yaml","putisolvin V"]],"b":[["NCBITaxon%3A47920","Acidovorax delafieldii"],["NCBITaxon%3A301","Ectopseudomonas oleovorans"],["NCBITaxon%3A29581","Janthinobacterium lividum"],["NCBITaxon%3A294","Pseudomonas fluorescens"],["NCBITaxon%3A77298","Pseudomonas jessenii"],["NCBITaxon%3A1968891","Pseudomonas jessenii subsp. pseudoputida"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":32,"a":[["alkaloids/prodigiosin-2.yaml","prodigiosin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/serratiochelin-a.yaml","serratiochelin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["polyketides/oocydin-a.yaml","oocydin A"]],"b":[["NCBITaxon%3A2703793","Serratia bockelmannii"],["NCBITaxon%3A615","Serratia marcescens"],["NCBITaxon%3A1257036","Serratia marcescens 12"],["NCBITaxon%3A1255611","Serratia marcescens 448"],["NCBITaxon%3A1333586","Serratia marcescens AB42556419-isolate1"],["NCBITaxon%3A1400186","Serratia marcescens BIDMC 44"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":31,"nb":5,"a":[["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["alkaloids/myxofacycline-e.yaml","myxofacycline E"],["alkaloids/myxofacycline-f.yaml","myxofacycline F"],["alkaloids/myxofacycline-g.yaml","myxofacycline G"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"]],"b":[["NCBITaxon%3A34","Myxococcus xanthus"],["NCBITaxon%3A246197","Myxococcus xanthus DK 1622"],["NCBITaxon%3A1198133","Myxococcus xanthus DZ2"],["NCBITaxon%3A1198538","Myxococcus xanthus DZF1"],["NCBITaxon%3A675543","Myxococcus xanthus NewJersey2"]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":5,"nb":31,"a":[["alkaloids/9-deoxy-tilivalline.yaml","9-deoxy tilivalline"],["alkaloids/dehydro-tilivalline.yaml","dehydro tilivalline"],["alkaloids/dihydroxy-dehydro-tilivalline.yaml","dihydroxy-dehydro tilivalline"],["alkaloids/dihydroxy-tilivalline.yaml","dihydroxy tilivalline"],["alkaloids/tilivalline.yaml","tilivalline"]],"b":[["NCBITaxon%3A571","Klebsiella oxytoca"],["NCBITaxon%3A883116","Klebsiella oxytoca 09-7231"],["NCBITaxon%3A883117","Klebsiella oxytoca 10-5242"],["NCBITaxon%3A883118","Klebsiella oxytoca 10-5243"],["NCBITaxon%3A883119","Klebsiella oxytoca 10-5244"],["NCBITaxon%3A883120","Klebsiella oxytoca 10-5245"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":5,"nb":22,"a":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/andrimid.yaml","andrimid"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/pantocin-a.yaml","pantocin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]],"b":[["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A221276","[Curtobacterium] plantarum"],["NCBITaxon%3A558","Erwinia sp."],["NCBITaxon%3A83655","Leclercia adecarboxylata"],["NCBITaxon%3A549","Pantoea agglomerans"],["NCBITaxon%3A1261128","Pantoea agglomerans 299R"]]},{"id":"NCBITaxon:1916","l":"Streptomyces lividans","na":18,"nb":5,"a":[["alkaloids/rebeccamycin.yaml","rebeccamycin"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["amino_acids_and_peptides/dehydroxynocardamine.yaml","dehydroxynocardamine"],["amino_acids_and_peptides/goadsporin.yaml","goadsporin"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"]],"b":[["NCBITaxon%3A1894","Kitasatospora aureofaciens"],["NCBITaxon%3A1916","Streptomyces lividans"],["NCBITaxon%3A1200984","Streptomyces lividans 1326"],["NCBITaxon%3A457428","Streptomyces lividans TK24"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:47","l":"Archangium","na":5,"nb":17,"a":[["alkaloids/myxochelin-n.yaml","myxochelin N"],["alkaloids/myxochelin-o.yaml","myxochelin O"],["amino_acids_and_peptides/tubulysin-c.yaml","tubulysin C"],["polyketides/gephyronic-acid.yaml","gephyronic acid"],["unclassified/vioprolide-a.yaml","vioprolide A"]],"b":[["NCBITaxon%3A38","Archangium disciforme"],["NCBITaxon%3A48","Archangium gephyra"],["NCBITaxon%3A2995310","Archangium lansingense"],["NCBITaxon%3A2970465","Archangium lipolyticum"],["NCBITaxon%3A83450","Archangium minus"],["NCBITaxon%3A1872627","Archangium sp."]]},{"id":"NCBITaxon:168695","l":"Salinispora tropica","na":5,"nb":13,"a":[["alkaloids/lymphostin.yaml","lymphostin"],["amino_acids_and_peptides/salinosporamide-a.yaml","salinosporamide A"],["polyketides/lomaiviticin-a.yaml","lomaiviticin A"],["polyketides/sporolide-b.yaml","sporolide B"],["unclassified/salinilactam.yaml","salinilactam"]],"b":[["NCBITaxon%3A168695","Salinispora tropica"],["NCBITaxon%3A1137247","Salinispora tropica CNB476"],["NCBITaxon%3A1136431","Salinispora tropica CNB536"],["NCBITaxon%3A369723","Salinispora tropica CNB-440"],["NCBITaxon%3A1137248","Salinispora tropica CNH898"],["NCBITaxon%3A1169198","Salinispora tropica CNR699"]]},{"id":"NCBITaxon:2893586","l":"Actinoalloteichus caeruleus","na":8,"nb":5,"a":[["alkaloids/caerulomycin-a.yaml","caerulomycin A"],["alkaloids/cyanogramide-b.yaml","cyanogramide B"],["alkaloids/cyanogramide-c.yaml","cyanogramide C"],["alkaloids/cyanogramide-d.yaml","cyanogramide D"],["alkaloids/phenaziterpene-a.yaml","phenaziterpene A"],["carbohydrates/kanamycin-a.yaml","kanamycin A"]],"b":[["NCBITaxon%3A2893586","Actinoalloteichus caeruleus"],["NCBITaxon%3A1120930","Actinoalloteichus caeruleus DSM 43889"],["NCBITaxon%3A33921","Saccharothrix mutabilis"],["NCBITaxon%3A66854","Saccharothrix mutabilis subsp. capreolus"],["NCBITaxon%3A193462","Streptomyces niveus"]]},{"id":"NCBITaxon:42684","l":"Streptomyces collinus","na":8,"nb":5,"a":[["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/ectoine.yaml","ectoine"],["polyketides/naphthomycin-a.yaml","naphthomycin A"],["shikimates_and_phenylpropanoids/collinomycin.yaml","collinomycin"],["terpenoids/2-methylisoborneol.yaml","2-methylisoborneol"],["terpenoids/isorenieratene.yaml","isorenieratene"]],"b":[["NCBITaxon%3A42684","Streptomyces collinus"],["NCBITaxon%3A285445","Streptomyces collinus subsp. albescens"],["NCBITaxon%3A1214242","Streptomyces collinus Tu 365"],["NCBITaxon%3A1911","Streptomyces griseus"],["NCBITaxon%3A67263","Streptomyces griseus subsp. griseus"]]},{"id":"NCBITaxon:1892","l":"Streptomyces anulatus","na":7,"nb":5,"a":[["alkaloids/endophenazine-a.yaml","endophenazine A"],["alkaloids/endophenazine-b.yaml","endophenazine B"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["amino_acids_and_peptides/ectoine.yaml","ectoine"],["terpenoids/raimonol.yaml","raimonol"],["unclassified/telomestatin.yaml","telomestatin"]],"b":[["NCBITaxon%3A285560","Kitasatospora cinereorecta"],["NCBITaxon%3A1892","Streptomyces anulatus"],["NCBITaxon%3A285559","Streptomyces chrysomallus subsp. fumigatus"],["NCBITaxon%3A67343","Streptomyces praecox"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:66424","l":"Streptomyces hiroshimensis","na":5,"nb":7,"a":[["alkaloids/fervenulin.yaml","fervenulin"],["alkaloids/jawsamycin.yaml","jawsamycin"],["alkaloids/toxoflavin.yaml","toxoflavin"],["alkaloids/undecylprodigiosin-2.yaml","undecylprodigiosin"],["alkaloids/undecylprodigiosin.yaml","undecylprodigiosin"]],"b":[["NCBITaxon%3A67277","Streptomyces aureoversilis"],["NCBITaxon%3A66424","Streptomyces hiroshimensis"],["NCBITaxon%3A173860","Streptomyces rectiverticillatus"],["NCBITaxon%3A66429","Streptomyces roseoverticillatus"],["NCBITaxon%3A173832","Streptomyces roseoverticillatus subsp. melrosporus"],["NCBITaxon%3A97400","Streptomyces salmonis"]]},{"id":"NCBITaxon:47853","l":"Micromonospora carbonacea","na":6,"nb":5,"a":[["carbohydrates/everninomicin-a.yaml","everninomicin A"],["carbohydrates/everninomicin-d.yaml","everninomicin D"],["carbohydrates/everninomicin-e.yaml","everninomicin E"],["carbohydrates/everninomicin-f.yaml","everninomicin F"],["carbohydrates/everninomicin-g.yaml","everninomicin G"],["polyketides/rosaramicin.yaml","rosaramicin"]],"b":[["NCBITaxon%3A47853","Micromonospora carbonacea"],["NCBITaxon%3A3454472","Micromonospora carbonacea subsp. aurantiaca"],["NCBITaxon%3A3454602","Micromonospora carbonacea subsp. caeruleus"],["NCBITaxon%3A3454473","Micromonospora carbonacea subsp. carbonacea"],["NCBITaxon%3A1877","Micromonospora echinospora"]]},{"id":"NCBITaxon:1465","l":"Brevibacillus laterosporus","na":5,"nb":5,"a":[["amino_acids_and_peptides/bogorol-a.yaml","bogorol A"],["amino_acids_and_peptides/tauramamide.yaml","tauramamide"],["shikimates_and_phenylpropanoids/basiliskamide-a.yaml","Basiliskamide A"],["unclassified/basiliskamide-b.yaml","Basiliskamide B"],["unclassified/laterocidine.yaml","laterocidine"]],"b":[["NCBITaxon%3A1465","Brevibacillus laterosporus"],["NCBITaxon%3A1121121","Brevibacillus laterosporus DSM 25"],["NCBITaxon%3A1118154","Brevibacillus laterosporus GI-9"],["NCBITaxon%3A1042163","Brevibacillus laterosporus LMG 15441"],["NCBITaxon%3A1399144","Brevibacillus laterosporus PE36"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":5,"nb":5,"a":[["alkaloids/aminochelin.yaml","aminochelin"],["alkaloids/azotochelin.yaml","azotochelin"],["alkaloids/protochelin.yaml","protochelin"],["amino_acids_and_peptides/azotobactin-d.yaml","azotobactin D"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]],"b":[["NCBITaxon%3A354","Azotobacter vinelandii"],["NCBITaxon%3A1283330","Azotobacter vinelandii CA"],["NCBITaxon%3A1283331","Azotobacter vinelandii CA6"],["NCBITaxon%3A322710","Azotobacter vinelandii DJ"],["NCBITaxon%3A1314750","Azotobacter vinelandii NBRC 13581"]]},{"id":"NCBITaxon:69781","l":"Penicillium oxalicum","na":5,"nb":5,"a":[["alkaloids/meleagrine.yaml","meleagrine"],["polyketides/endocrocin.yaml","endocrocin"],["polyketides/secalonic-acid-c.yaml","Secalonic acid C"],["unclassified/atpenin-b.yaml","atpenin B"],["unclassified/roquefortine-c.yaml","roquefortine C"]],"b":[["NCBITaxon%3A69781","Penicillium oxalicum"],["NCBITaxon%3A933388","Penicillium oxalicum 114-2"],["NCBITaxon%3A936450","Penicillium oxalicum JU-A10-S"],["NCBITaxon%3A933390","Penicillium oxalicum JU-A10-T"],["NCBITaxon%3A858480","Penicillium oxalicum YT02"]]},{"id":"NCBITaxon:2745","l":"Halomonas","na":4,"nb":3499,"a":[["amino_acids_and_peptides/potashchelin-a.yaml","potashchelin A"],["amino_acids_and_peptides/potashchelin-b.yaml","potashchelin B"],["amino_acids_and_peptides/potashchelin-c.yaml","potashchelin C"],["amino_acids_and_peptides/potashchelin-d.yaml","potashchelin D"]],"b":[["NCBITaxon%3A1107859","Candidatus Halomonas phosphatis"],["NCBITaxon%3A2838617","Candidatus Halomonas stercoripullorum"],["NCBITaxon%3A1897729","Halomonas aestuarii"],["NCBITaxon%3A659123","Halomonas aidingensis"],["NCBITaxon%3A147248","Halomonas alimentaria"],["NCBITaxon%3A1930622","Halomonas alkalicola"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":4,"nb":422,"a":[["alkaloids/tilivalline.yaml","tilivalline"],["amino_acids_and_peptides/colibactin.yaml","colibactin"],["amino_acids_and_peptides/klebsidin.yaml","klebsidin"],["carbohydrates/capsular-polysaccharide-2.yaml","capsular polysaccharide"]],"b":[["NCBITaxon%3A1653844","Erwinia carnegieana"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A2058152","Klebsiella grimontii"],["NCBITaxon%3A54291","Klebsiella ornithinolytica"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A1443592","Klebsiella pneumoniae 07A044"]]},{"id":"NCBITaxon:1158","l":"Oscillatoria","na":4,"nb":360,"a":[["alkaloids/7-epi-cylindrospermopsin.yaml","7-epi-cylindrospermopsin"],["alkaloids/anatoxin-a.yaml","anatoxin-a"],["polyketides/doxorubicin.yaml","doxorubicin"],["polyketides/nystatin-a1.yaml","nystatin A1"]],"b":[["NCBITaxon%3A1442623","Oscillatoria angusta"],["NCBITaxon%3A1442624","Oscillatoria angusta ISB143"],["NCBITaxon%3A1499404","Oscillatoria angusta ISB35"],["NCBITaxon%3A1499405","Oscillatoria angusta ISB38"],["NCBITaxon%3A1499111","Oscillatoria angusta ISB40"],["NCBITaxon%3A1125738","Oscillatoria bonnemaisonii"]]},{"id":"NCBITaxon:77021","l":"Cylindrospermopsis","na":4,"nb":330,"a":[["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"],["alkaloids/gonyautoxin-2.yaml","gonyautoxin 2"],["alkaloids/neosaxitoxin.yaml","neosaxitoxin"],["alkaloids/saxitoxin.yaml","saxitoxin"]],"b":[["NCBITaxon%3A244597","Cylindrospermopsis africana"],["NCBITaxon%3A1857855","Cylindrospermopsis africana CHAB1394"],["NCBITaxon%3A1857856","Cylindrospermopsis africana CHAB3411"],["NCBITaxon%3A1857857","Cylindrospermopsis africana CHAB353"],["NCBITaxon%3A1857858","Cylindrospermopsis africana CHAB355"],["NCBITaxon%3A1857859","Cylindrospermopsis africana CHAB359"]]},{"id":"NCBITaxon:667113","l":"Actinoallomurus","na":4,"nb":229,"a":[["polyketides/allocyclinone-a.yaml","allocyclinone A"],["polyketides/allocyclinone-b.yaml","allocyclinone B"],["polyketides/allocyclinone-c.yaml","allocyclinone C"],["polyketides/allocyclinone-d.yaml","allocyclinone D"]],"b":[["NCBITaxon%3A502577","Actinoallomurus acaciae"],["NCBITaxon%3A1136071","Actinoallomurus acanthiterrae"],["NCBITaxon%3A478109","Actinoallomurus amamiensis"],["NCBITaxon%3A1490222","Actinoallomurus bryophytorum"],["NCBITaxon%3A478115","Actinoallomurus caesius"],["NCBITaxon%3A478106","Actinoallomurus coprocola"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":4,"nb":168,"a":[["alkaloids/zwittermicin-a.yaml","zwittermicin A"],["amino_acids_and_peptides/livipeptin.yaml","Livipeptin"],["carbohydrates/tunicamycin.yaml","tunicamycin"],["unclassified/cereulide.yaml","cereulide"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A572264","Bacillus cereus 03BB102"],["NCBITaxon%3A451709","Bacillus cereus 03BB108"],["NCBITaxon%3A526967","Bacillus cereus 172560W"],["NCBITaxon%3A363751","Bacillus cereus 31673"],["NCBITaxon%3A526979","Bacillus cereus 95/8201"]]},{"id":"NCBITaxon:752201","l":"Sphaerospermopsis","na":4,"nb":136,"a":[["fatty_acids/chlorosphaerolactylate-a.yaml","chlorosphaerolactylate A"],["fatty_acids/chlorosphaerolactylate-b.yaml","chlorosphaerolactylate B"],["fatty_acids/chlorosphaerolactylate-c.yaml","chlorosphaerolactylate C"],["fatty_acids/chlorosphaerolactylate-d.yaml","chlorosphaerolactylate D"]],"b":[["NCBITaxon%3A459663","Sphaerospermopsis aphanizomenoides"],["NCBITaxon%3A531303","Sphaerospermopsis aphanizomenoides 04-43"],["NCBITaxon%3A1137649","Sphaerospermopsis aphanizomenoides 09-03"],["NCBITaxon%3A543800","Sphaerospermopsis aphanizomenoides 1LT27S09"],["NCBITaxon%3A459672","Sphaerospermopsis aphanizomenoides 22C4.9"],["NCBITaxon%3A617115","Sphaerospermopsis aphanizomenoides 22F6.1"]]},{"id":"NCBITaxon:1179","l":"Desmonostoc muscorum","na":4,"nb":85,"a":[["amino_acids_and_peptides/muscoride-a.yaml","muscoride A"],["unclassified/desmamide-a.yaml","desmamide A"],["unclassified/desmamide-b.yaml","desmamide B"],["unclassified/desmamide-c.yaml","desmamide C"]],"b":[["NCBITaxon%3A1179","Desmonostoc muscorum"],["NCBITaxon%3A1887616","Desmonostoc muscorum 9a"],["NCBITaxon%3A2493151","Desmonostoc muscorum ACSSI 046"],["NCBITaxon%3A1977323","Desmonostoc muscorum ACSSI 091"],["NCBITaxon%3A1977325","Desmonostoc muscorum ACSSI 149"],["NCBITaxon%3A3735077","Desmonostoc muscorum AUR1017"]]},{"id":"NCBITaxon:414878","l":"Catenulispora","na":4,"nb":40,"a":[["polyketides/catenulisporolide-a.yaml","catenulisporolide A"],["polyketides/catenulisporolide-b.yaml","catenulisporolide B"],["polyketides/catenulisporolide-c.yaml","catenulisporolide C"],["polyketides/catenulisporolide-d.yaml","catenulisporolide D"]],"b":[["NCBITaxon%3A234199","bacterium Ellin5062"],["NCBITaxon%3A234202","bacterium Ellin5116"],["NCBITaxon%3A234203","bacterium Ellin5119"],["NCBITaxon%3A304895","Catenulispora acidiphila"],["NCBITaxon%3A479433","Catenulispora acidiphila DSM 44928"],["NCBITaxon%3A436228","Catenulispora cavernae"]]},{"id":"NCBITaxon:13373","l":"Burkholderia mallei","na":4,"nb":20,"a":[["alkaloids/malleobactin-b.yaml","malleobactin B"],["polyketides/malleilactone.yaml","malleilactone"],["unclassified/malleobactin-a.yaml","malleobactin A"],["unclassified/malleobactin-c.yaml","malleobactin C"]],"b":[["NCBITaxon%3A13373","Burkholderia mallei"],["NCBITaxon%3A1382516","Burkholderia mallei 2000031281"],["NCBITaxon%3A370895","Burkholderia mallei 2002721280"],["NCBITaxon%3A411920","Burkholderia mallei 721280"],["NCBITaxon%3A1382517","Burkholderia mallei A188"],["NCBITaxon%3A1382518","Burkholderia mallei A193"]]},{"id":"NCBITaxon:31958","l":"Amycolatopsis orientalis","na":4,"nb":13,"a":[["amino_acids_and_peptides/chloroeremomycin.yaml","chloroeremomycin"],["amino_acids_and_peptides/vancomycin.yaml","vancomycin"],["polyketides/eco-0501.yaml","ECO-0501"],["polyketides/quartromicin-a1.yaml","quartromicin A1"]],"b":[["NCBITaxon%3A346045","Amycolatopsis benzoatilytica"],["NCBITaxon%3A1089544","Amycolatopsis benzoatilytica AK 16/65"],["NCBITaxon%3A31959","Amycolatopsis lurida"],["NCBITaxon%3A1460371","Amycolatopsis lurida NRRL 2430"],["NCBITaxon%3A31958","Amycolatopsis orientalis"],["NCBITaxon%3A1125971","Amycolatopsis orientalis DSM 40040 = KCTC 9412"]]},{"id":"NCBITaxon:1393","l":"Brevibacillus brevis","na":4,"nb":12,"a":[["alkaloids/ulbactin-f.yaml","ulbactin F"],["alkaloids/ulbactin-g.yaml","ulbactin G"],["amino_acids_and_peptides/gramicidin.yaml","gramicidin"],["amino_acids_and_peptides/tyrocidine-a.yaml","tyrocidine A"]],"b":[["NCBITaxon%3A1391","Aneurinibacillus aneurinilyticus"],["NCBITaxon%3A267746","Aneurinibacillus danicus"],["NCBITaxon%3A47500","Aneurinibacillus migulanus"],["NCBITaxon%3A45462","Brevibacillus borstelensis"],["NCBITaxon%3A1393","Brevibacillus brevis"],["NCBITaxon%3A1129895","Brevibacillus brevis FJAT-0809-GLX"]]},{"id":"NCBITaxon:1397","l":"Niallia circulans","na":4,"nb":10,"a":[["carbohydrates/butirosin-a.yaml","butirosin A"],["carbohydrates/butirosin-b.yaml","butirosin B"],["carbohydrates/butirosin.yaml","butirosin"],["unclassified/pelgipeptin-b.yaml","Pelgipeptin B"]],"b":[["NCBITaxon%3A1393","Brevibacillus brevis"],["NCBITaxon%3A1397","Niallia circulans"],["NCBITaxon%3A1348626","Niallia circulans NBRC 13626"],["NCBITaxon%3A44160","Niallia circulans subsp. alkalophilus"],["NCBITaxon%3A74308","Niallia circulans subsp. circulans"],["NCBITaxon%3A59846","Paenibacillus chibensis"]]},{"id":"NCBITaxon:35619","l":"Streptomyces griseoflavus","na":10,"nb":4,"a":[["amino_acids_and_peptides/aborycin-2.yaml","aborycin"],["polyketides/gilvocarcin-v.yaml","gilvocarcin V"],["polyketides/resistomycin.yaml","resistomycin"],["unclassified/bicozamycin.yaml","bicozamycin"],["unclassified/hormaomycin-a1.yaml","hormaomycin A1"],["unclassified/hormaomycin-a2.yaml","hormaomycin A2"]],"b":[["NCBITaxon%3A35619","Streptomyces griseoflavus"],["NCBITaxon%3A285490","Streptomyces griseoflavus subsp. pyrindicus"],["NCBITaxon%3A467200","Streptomyces griseoflavus Tu4000"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:1036719","l":"Verticillium","na":4,"nb":7,"a":[["polyketides/ustilaginoidin-a.yaml","ustilaginoidin A"],["polyketides/ustilaginoidin-f.yaml","ustilaginoidin F"],["polyketides/ustilaginoidin-g.yaml","ustilaginoidin G"],["unclassified/ascochlorin.yaml","ascochlorin"]],"b":[["NCBITaxon%3A1051613","Verticillium alfalfae"],["NCBITaxon%3A526221","Verticillium alfalfae VaMs.102"],["NCBITaxon%3A27337","Verticillium dahliae"],["NCBITaxon%3A100787","Verticillium longisporum"],["NCBITaxon%3A1051616","Verticillium nonalfalfae"],["NCBITaxon%3A132580","Verticillium nubilum"]]},{"id":"NCBITaxon:33202","l":"Paecilomyces","na":4,"nb":7,"a":[["amino_acids_and_peptides/leucinostatin-a.yaml","leucinostatin A"],["polyketides/monocillin-iv.yaml","monocillin IV"],["polyketides/monocillin-vi.yaml","monocillin VI"],["polyketides/monocillin-vii.yaml","monocillin VII"]],"b":[["NCBITaxon%3A89137","Paecilomyces fulvus"],["NCBITaxon%3A40383","Paecilomyces sp."],["NCBITaxon%3A2940442","Paecilomyces sp. M2901"],["NCBITaxon%3A2940445","Paecilomyces sp. M2902"],["NCBITaxon%3A2940444","Paecilomyces sp. PK2413"],["NCBITaxon%3A2940443","Paecilomyces sp. PL2402"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":4,"nb":7,"a":[["unclassified/vacidobactin-a.yaml","vacidobactin A"],["unclassified/vacidobactin-b.yaml","vacidobactin B"],["unclassified/variobactin-a.yaml","variobactin A"],["unclassified/variobactin-b.yaml","variobactin B"]],"b":[["NCBITaxon%3A34073","Variovorax paradoxus"],["NCBITaxon%3A1150395","Variovorax paradoxus 4MFCol3.1"],["NCBITaxon%3A1246301","Variovorax paradoxus B4"],["NCBITaxon%3A595537","Variovorax paradoxus EPS"],["NCBITaxon%3A1321610","Variovorax paradoxus NBRC 15149"],["NCBITaxon%3A543728","Variovorax paradoxus S110"]]},{"id":"NCBITaxon:47760","l":"Streptomyces aurantiacus","na":6,"nb":4,"a":[["amino_acids_and_peptides/depsibosamycin-b.yaml","depsibosamycin B"],["amino_acids_and_peptides/depsibosamycin-c.yaml","depsibosamycin C"],["polyketides/resistomycin.yaml","resistomycin"],["polyketides/setomimycin.yaml","setomimycin"],["unclassified/aurantimycin-a.yaml","aurantimycin A"],["unclassified/depsibosamycin-d.yaml","depsibosamycin D"]],"b":[["NCBITaxon%3A58341","Streptomyces albosporeus"],["NCBITaxon%3A66867","Streptomyces albovinaceus"],["NCBITaxon%3A47760","Streptomyces aurantiacus"],["NCBITaxon%3A1286094","Streptomyces aurantiacus JA 4570"]]},{"id":"NCBITaxon:189691","l":"Paenibacillus elgii","na":4,"nb":5,"a":[["unclassified/pelgipeptin-a.yaml","Pelgipeptin A"],["unclassified/pelgipeptin-b.yaml","Pelgipeptin B"],["unclassified/pelgipeptin-c.yaml","Pelgipeptin C"],["unclassified/pelgipeptin-d.yaml","Pelgipeptin D"]],"b":[["NCBITaxon%3A189691","Paenibacillus elgii"],["NCBITaxon%3A1007103","Paenibacillus elgii B69"],["NCBITaxon%3A664734","Paenibacillus elgii C56-YS68"],["NCBITaxon%3A1349776","Paenibacillus elgii NBRC 100335"],["NCBITaxon%3A300028","Rhodococcus triatomae"]]},{"id":"NCBITaxon:67365","l":"Streptomyces sparsogenes","na":5,"nb":4,"a":[["alkaloids/formycin-a.yaml","formycin A"],["carbohydrates/sangivamycin.yaml","sangivamycin"],["carbohydrates/toyocamycin.yaml","toyocamycin"],["carbohydrates/tubercidin.yaml","tubercidin"],["unclassified/pirazofurin.yaml","pirazofurin"]],"b":[["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A67365","Streptomyces sparsogenes"],["NCBITaxon%3A1331668","Streptomyces sparsogenes DSM 40356"],["NCBITaxon%3A66882","Streptomyces sparsogenes subsp. cuspidosporus"]]},{"id":"NCBITaxon:1936","l":"Streptomyces violaceus","na":4,"nb":4,"a":[["polyketides/carotenoid.yaml","carotenoid"],["polyketides/concanamycin-a.yaml","concanamycin A"],["polyketides/cosmomycin-d.yaml","cosmomycin D"],["polyketides/rhodomycin.yaml","rhodomycin"]],"b":[["NCBITaxon%3A2893586","Actinoalloteichus caeruleus"],["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A1936","Streptomyces violaceus"],["NCBITaxon%3A67380","Streptomyces violaceus subsp. violarus"]]},{"id":"NCBITaxon:1944","l":"Streptomyces halstedii","na":4,"nb":4,"a":[["alkaloids/rotihibin-a.yaml","rotihibin A"],["polyketides/halstoctacosanolide-a.yaml","halstoctacosanolide A"],["terpenoids/geosmin.yaml","(−)-geosmin"],["unclassified/vicenistatin.yaml","vicenistatin"]],"b":[["NCBITaxon%3A68212","Streptomyces graminofaciens"],["NCBITaxon%3A1909","Streptomyces griseolus"],["NCBITaxon%3A1944","Streptomyces halstedii"],["NCBITaxon%3A178788","Streptomyces halstedii subsp. scabies"]]},{"id":"NCBITaxon:53246","l":"Pseudoalteromonas","na":3,"nb":4350,"a":[["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["carbohydrates/kanamycin-a.yaml","kanamycin A"],["polyketides/erythromycin-a.yaml","erythromycin A"]],"b":[["NCBITaxon%3A300231","Brumicola nitratireducens"],["NCBITaxon%3A246558","marine bacterium 13684"],["NCBITaxon%3A246559","marine bacterium 13703"],["NCBITaxon%3A246560","marine bacterium 13704"],["NCBITaxon%3A194691","marine bacterium SIMO IS-S73-243"],["NCBITaxon%3A156585","marine bacterium Tw-2"]]},{"id":"NCBITaxon:1125","l":"Microcystis","na":3,"nb":2332,"a":[["amino_acids_and_peptides/microcystin-lr.yaml","microcystin-LR"],["amino_acids_and_peptides/piricyclamide-7005e1.yaml","piricyclamide 7005E1"],["unclassified/cyanopeptolin.yaml","cyanopeptolin"]],"b":[["NCBITaxon%3A1126","Microcystis aeruginosa"],["NCBITaxon%3A270630","Microcystis aeruginosa 0BB35S02"],["NCBITaxon%3A270631","Microcystis aeruginosa 0BF29S01"],["NCBITaxon%3A270632","Microcystis aeruginosa 0BF29S03"],["NCBITaxon%3A2358142","Microcystis aeruginosa 11-30S32"],["NCBITaxon%3A3113711","Microcystis aeruginosa 1339"]]},{"id":"NCBITaxon:1129","l":"Synechococcus","na":3,"nb":2170,"a":[["alkaloids/synechobactin-a.yaml","synechobactin A"],["alkaloids/synechobactin-b.yaml","synechobactin B"],["alkaloids/synechobactin-c.yaml","synechobactin C"]],"b":[["NCBITaxon%3A2081909","Anacystis marina"],["NCBITaxon%3A2081929","Anacystis marina UTEX LB 1634"],["NCBITaxon%3A1522304","Candidatus Synechococcus calcipolaris"],["NCBITaxon%3A1497997","Candidatus Synechococcus calcipolaris G9"],["NCBITaxon%3A431041","Candidatus Synechococcus spongiarum"],["NCBITaxon%3A1608213","Candidatus Synechococcus spongiarum 142"]]},{"id":"NCBITaxon:83681","l":"Nonomuraea","na":3,"nb":632,"a":[["amino_acids_and_peptides/kistamicin-a.yaml","kistamicin A"],["amino_acids_and_peptides/thiomuracin-a.yaml","thiomuracin A"],["unclassified/ecumicin.yaml","ecumicin"]],"b":[["NCBITaxon%3A2805427","Actinomadura luzonensis"],["NCBITaxon%3A1955412","[Actinomadura] parvosata"],["NCBITaxon%3A1909395","[Actinomadura] parvosata subsp. kistnae"],["NCBITaxon%3A1989","Actinomadura sp."],["NCBITaxon%3A411670","Nonomuraea aegyptia"],["NCBITaxon%3A46171","Nonomuraea africana"]]},{"id":"NCBITaxon:159191","l":"Nodularia","na":3,"nb":261,"a":[["unclassified/nocuolactylate-a.yaml","Nocuolactylate A"],["unclassified/nocuolactylate-b.yaml","Nocuolactylate B"],["unclassified/nocuolactylate-c.yaml","Nocuolactylate C"]],"b":[["NCBITaxon%3A1378537","Nodularia armorica"],["NCBITaxon%3A1378538","Nodularia armorica L1"],["NCBITaxon%3A88826","Nodularia baltica"],["NCBITaxon%3A285704","Nodularia baltica BY1"],["NCBITaxon%3A1378539","Nodularia cf. harveyana HBU11"],["NCBITaxon%3A1378540","Nodularia cf. harveyana HBU23"]]},{"id":"NCBITaxon:29487","l":"Photorhabdus","na":3,"nb":179,"a":[["polyketides/aq-256.yaml","AQ-256"],["polyketides/aq-270a.yaml","AQ-270a"],["polyketides/aq-284a.yaml","AQ-284a"]],"b":[["NCBITaxon%3A2991723","Photorhabdus aballayi"],["NCBITaxon%3A2805098","Photorhabdus aegyptia"],["NCBITaxon%3A3097554","Photorhabdus africana"],["NCBITaxon%3A171438","Photorhabdus akhurstii"],["NCBITaxon%3A2934395","Photorhabdus akhurstii subsp. akhurstii"],["NCBITaxon%3A2919874","Photorhabdus akhurstii subsp. bharatensis"]]},{"id":"NCBITaxon:383614","l":"Brasilonema","na":3,"nb":179,"a":[["amino_acids_and_peptides/anabaenopeptin-788.yaml","anabaenopeptin 788"],["amino_acids_and_peptides/anabaenopeptin-802.yaml","anabaenopeptin 802"],["amino_acids_and_peptides/anabaenopeptin-816.yaml","anabaenopeptin 816"]],"b":[["NCBITaxon%3A3398307","Brasilonema amethysteum"],["NCBITaxon%3A3057924","Brasilonema amethysteum CR10-2F/1"],["NCBITaxon%3A1249745","Brasilonema angustatum"],["NCBITaxon%3A1049008","Brasilonema angustatum HA4187-MV1"],["NCBITaxon%3A3398308","Brasilonema bambusae"],["NCBITaxon%3A3237340","Brasilonema bambusae CR06-5A/1"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":3,"nb":178,"a":[["unclassified/leuvalin.yaml","leuvalin"],["unclassified/mutanocyclin.yaml","mutanocyclin"],["unclassified/tyrvalin.yaml","tyrvalin"]],"b":[["NCBITaxon%3A150055","Streptococcus lutetiensis"],["NCBITaxon%3A1309","Streptococcus mutans"],["NCBITaxon%3A857155","Streptococcus mutans 11A1"],["NCBITaxon%3A857147","Streptococcus mutans 11SSST2"],["NCBITaxon%3A857143","Streptococcus mutans 11VS1"],["NCBITaxon%3A857113","Streptococcus mutans 14D"]]},{"id":"NCBITaxon:70799","l":"Nodularia spumigena","na":3,"nb":119,"a":[["amino_acids_and_peptides/microcystin-lr.yaml","microcystin-LR"],["amino_acids_and_peptides/nodularin.yaml","nodularin"],["amino_acids_and_peptides/spumigin-e.yaml","Spumigin E"]],"b":[["NCBITaxon%3A173561","Nodularia cf. spumigena IBASU-DS-13-00"],["NCBITaxon%3A70799","Nodularia spumigena"],["NCBITaxon%3A2161834","Nodularia spumigena 106-108LC"],["NCBITaxon%3A2161835","Nodularia spumigena 120-122LC"],["NCBITaxon%3A2161836","Nodularia spumigena 122-124 LC"],["NCBITaxon%3A2161837","Nodularia spumigena 170-172 LC"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":3,"nb":118,"a":[["amino_acids_and_peptides/epidermin.yaml","epidermin"],["amino_acids_and_peptides/epilancin-15x.yaml","epilancin 15x"],["amino_acids_and_peptides/pep5.yaml","pep5"]],"b":[["NCBITaxon%3A69966","Macrococcoides caseolyticum"],["NCBITaxon%3A1822","Nocardia vaccinii"],["NCBITaxon%3A1210098","Nocardia vaccinii NBRC 15922"],["NCBITaxon%3A1282","Staphylococcus epidermidis"],["NCBITaxon%3A1235440","Staphylococcus epidermidis 12142587"],["NCBITaxon%3A1000590","Staphylococcus epidermidis 14.1.R1.SE"]]},{"id":"NCBITaxon:42","l":"Cystobacter","na":3,"nb":45,"a":[["amino_acids_and_peptides/tubulysin-a.yaml","tubulysin A"],["unclassified/cystobactamid-919-1.yaml","cystobactamid 919-1"],["unclassified/cystobactamid-919-2.yaml","cystobactamid 919-2"]],"b":[["NCBITaxon%3A394090","Cystobacter armeniaca"],["NCBITaxon%3A394091","Cystobacter badius"],["NCBITaxon%3A83449","Cystobacter ferrugineus"],["NCBITaxon%3A43","Cystobacter fuscus"],["NCBITaxon%3A1242864","Cystobacter fuscus DSM 2262"],["NCBITaxon%3A394093","Cystobacter miniatus"]]},{"id":"NCBITaxon:1902","l":"Streptomyces coelicolor","na":42,"nb":3,"a":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/anthramycin.yaml","anthramycin"],["alkaloids/holomycin.yaml","holomycin"],["alkaloids/melanin.yaml","melanin"],["alkaloids/prodigiosin-2.yaml","prodigiosin"],["alkaloids/undecylprodigiosin-2.yaml","undecylprodigiosin"]],"b":[["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A1902","Streptomyces coelicolor"],["NCBITaxon%3A100226","Streptomyces coelicolor A3(2)"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli K-12","na":3,"nb":39,"a":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"],["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"],["unclassified/telomestatin.yaml","telomestatin"]],"b":[["NCBITaxon%3A679895","Escherichia coli BW25113"],["NCBITaxon%3A595496","Escherichia coli BW2952"],["NCBITaxon%3A1318715","Escherichia coli BW38028"],["NCBITaxon%3A1245474","Escherichia coli ER2796"],["NCBITaxon%3A83333","Escherichia coli K-12"],["NCBITaxon%3A527799","Escherichia coli LW1655F+"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":3,"nb":33,"a":[["alkaloids/cepaciachelin.yaml","cepaciachelin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["terpenoids/hopene.yaml","hopene"]],"b":[["NCBITaxon%3A85698","Achromobacter xylosoxidans"],["NCBITaxon%3A152480","Burkholderia ambifaria"],["NCBITaxon%3A179879","Burkholderia anthina"],["NCBITaxon%3A488730","Burkholderia arboris"],["NCBITaxon%3A95486","Burkholderia cenocepacia"],["NCBITaxon%3A292","Burkholderia cepacia"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":3,"nb":32,"a":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"],["amino_acids_and_peptides/lacticin-z.yaml","lacticin Z"],["amino_acids_and_peptides/nisin-a.yaml","nisin A"]],"b":[["NCBITaxon%3A1359","Lactococcus cremoris"],["NCBITaxon%3A2816960","Lactococcus cremoris subsp. cremoris"],["NCBITaxon%3A1348655","Lactococcus cremoris subsp. cremoris NBRC 100676"],["NCBITaxon%3A1363","Lactococcus garvieae"],["NCBITaxon%3A1358","Lactococcus lactis"],["NCBITaxon%3A2731284","Lactococcus lactis (ex Latorre-Guzman et al. 1977) Schleifer et al. 1986"]]},{"id":"NCBITaxon:1214","l":"Prochloron","na":3,"nb":30,"a":[["amino_acids_and_peptides/patellamide-a.yaml","patellamide A"],["amino_acids_and_peptides/patellamide-b.yaml","patellamide B"],["amino_acids_and_peptides/patellin-6.yaml","patellin 6"]],"b":[["NCBITaxon%3A1216","Prochloron didemni"],["NCBITaxon%3A3115413","Prochloron didemni E1"],["NCBITaxon%3A2721547","Prochloron didemni IMFR-1"],["NCBITaxon%3A910450","Prochloron didemni P1-Palau"],["NCBITaxon%3A910454","Prochloron didemni P2-Fiji"],["NCBITaxon%3A910458","Prochloron didemni P3-Solomon"]]},{"id":"NCBITaxon:1998","l":"Planomonospora","na":3,"nb":25,"a":[["amino_acids_and_peptides/biarylitide-yfh.yaml","biarylitide YFH"],["amino_acids_and_peptides/biarylitide-yyh.yaml","biarylitide YYH"],["amino_acids_and_peptides/planosporicin.yaml","planosporicin"]],"b":[["NCBITaxon%3A244","Planomicrobium okeanokoites"],["NCBITaxon%3A161354","Planomonospora alba"],["NCBITaxon%3A1846211","Planomonospora algeriensis"],["NCBITaxon%3A97193","Planomonospora antibiotica"],["NCBITaxon%3A1806052","Planomonospora corallina"],["NCBITaxon%3A58119","Planomonospora parontospora"]]},{"id":"NCBITaxon:162425","l":"Aspergillus nidulans","na":22,"nb":3,"a":[["alkaloids/aspernidine-a.yaml","aspernidine A"],["alkaloids/aspyridone-a.yaml","aspyridone A"],["alkaloids/aspyridone-b.yaml","aspyridone B"],["alkaloids/biotin.yaml","biotin"],["alkaloids/cichorine.yaml","cichorine"],["alkaloids/pentostatin.yaml","pentostatin"]],"b":[["NCBITaxon%3A162425","Aspergillus nidulans"],["NCBITaxon%3A286159","Aspergillus nidulans var. acristatus"],["NCBITaxon%3A286160","Aspergillus nidulans var. dentatus"]]},{"id":"NCBITaxon:243265","l":"Photorhabdus laumondii subsp. laumondii TTO1","na":21,"nb":3,"a":[["amino_acids_and_peptides/gamexpeptide-c.yaml","gamexpeptide C"],["amino_acids_and_peptides/luminmycin-a.yaml","luminmycin A"],["amino_acids_and_peptides/ririwpeptide-a.yaml","ririwpeptide A"],["amino_acids_and_peptides/ririwpeptide-b.yaml","ririwpeptide B"],["carbohydrates/oligosaccharide-1-glcnac-1-4-1-6-anhydro-glcnac.yaml","oligosaccharide 1 (GlcNAc-β(1-4)-1,6-anhydro-β-GlcNAc)"],["carbohydrates/oligosaccharide-2-glcnac-1-4-glcnac-1-4-1-6-anhydro-glcnac.yaml","oligosaccharide 2 (GlcNAc-β(1-4)-GlcNAc-β(1-4)-1,6-anhydro-β-GlcNAc)"]],"b":[["NCBITaxon%3A2218628","Photorhabdus laumondii"],["NCBITaxon%3A141679","Photorhabdus laumondii subsp. laumondii"],["NCBITaxon%3A243265","Photorhabdus laumondii subsp. laumondii TTO1"]]},{"id":"NCBITaxon:54571","l":"Streptomyces venezuelae","na":21,"nb":3,"a":[["alkaloids/anthelvencin-a.yaml","anthelvencin A"],["alkaloids/anthelvencin-b.yaml","anthelvencin B"],["alkaloids/anthelvencin-c.yaml","anthelvencin C"],["alkaloids/chloramphenicol.yaml","chloramphenicol"],["alkaloids/corynecin-ii.yaml","corynecin II"],["alkaloids/gaburedin-d.yaml","gaburedin D"]],"b":[["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A54571","Streptomyces venezuelae"],["NCBITaxon%3A953739","Streptomyces venezuelae ATCC 10712"]]},{"id":"NCBITaxon:746128","l":"Aspergillus fumigatus","na":20,"nb":3,"a":[["alkaloids/fumigaclavine-c.yaml","fumigaclavine C"],["alkaloids/fumiquinazoline-a.yaml","fumiquinazoline A"],["alkaloids/fumiquinazoline-c.yaml","fumiquinazoline C"],["alkaloids/fumiquinazoline-d.yaml","fumiquinazoline D"],["alkaloids/hexadehydroastechrome.yaml","hexadehydroastechrome"],["carbohydrates/tobramycin.yaml","tobramycin"]],"b":[["NCBITaxon%3A746128","Aspergillus fumigatus"],["NCBITaxon%3A451804","Aspergillus fumigatus A1163"],["NCBITaxon%3A41122","Aspergillus fumigatus var. fumigatus"]]},{"id":"NCBITaxon:1833","l":"Rhodococcus erythropolis","na":3,"nb":19,"a":[["alkaloids/aurachin-re.yaml","aurachin RE"],["amino_acids_and_peptides/heterobactin-a.yaml","heterobactin A"],["amino_acids_and_peptides/heterobactin-s2.yaml","heterobactin S2"]],"b":[["NCBITaxon%3A1818","Nocardia globerula"],["NCBITaxon%3A1821","Nocardia sp."],["NCBITaxon%3A53432","Nocardia uniformis"],["NCBITaxon%3A1210100","Nocardia uniformis NBRC 13702"],["NCBITaxon%3A1833","Rhodococcus erythropolis"],["NCBITaxon%3A1136179","Rhodococcus erythropolis CCM2595"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":3,"nb":16,"a":[["amino_acids_and_peptides/polymyxin-b.yaml","polymyxin B"],["amino_acids_and_peptides/polymyxin.yaml","polymyxin"],["unclassified/fusaricidin-b.yaml","fusaricidin B"]],"b":[["NCBITaxon%3A114136","Paenibacillus jamilae"],["NCBITaxon%3A225917","Paenibacillus massiliensis"],["NCBITaxon%3A1406","Paenibacillus polymyxa"],["NCBITaxon%3A1333863","Paenibacillus polymyxa 1-43"],["NCBITaxon%3A1414587","Paenibacillus polymyxa A18"],["NCBITaxon%3A1206104","Paenibacillus polymyxa ATCC 12321"]]},{"id":"NCBITaxon:5598","l":"Alternaria","na":3,"nb":16,"a":[["polyketides/zearalenone.yaml","zearalenone"],["shikimates_and_phenylpropanoids/alternariol.yaml","alternariol"],["unclassified/tenuazonic-acid.yaml","tenuazonic acid"]],"b":[["NCBITaxon%3A1111114","Alternaria alstroemeriae"],["NCBITaxon%3A5599","Alternaria alternata"],["NCBITaxon%3A156630","Alternaria arborescens"],["NCBITaxon%3A29911","Alternaria brassicae"],["NCBITaxon%3A29001","Alternaria brassicicola"],["NCBITaxon%3A1187905","Alternaria calendulae"]]},{"id":"NCBITaxon:41","l":"Allostigmatella aurantiaca","na":14,"nb":3,"a":[["alkaloids/aurachin-a.yaml","aurachin A"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"],["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["polyketides/aurafuron-a.yaml","aurafuron A"]],"b":[["NCBITaxon%3A41","Allostigmatella aurantiaca"],["NCBITaxon%3A378806","Allostigmatella aurantiaca DW4/3-1"],["NCBITaxon%3A675526","Allostigmatella aurantiaca Sg a15"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":13,"nb":3,"a":[["unclassified/bananamide-d.yaml","bananamide D"],["unclassified/bananamide-e.yaml","bananamide E"],["unclassified/bananamide-f.yaml","bananamide F"],["unclassified/bananamide-g.yaml","bananamide G"],["unclassified/lokisin.yaml","lokisin"],["unclassified/pseudodesmin-a.yaml","pseudodesmin A"]],"b":[["NCBITaxon%3A2219225","Pseudomonas asiatica"],["NCBITaxon%3A1628086","Pseudomonas kribbensis"],["NCBITaxon%3A306","Pseudomonas sp."]]},{"id":"NCBITaxon:53446","l":"Streptomyces cinnamoneus","na":3,"nb":11,"a":[["amino_acids_and_peptides/cinnamycin.yaml","cinnamycin"],["amino_acids_and_peptides/duramycin.yaml","duramycin"],["unclassified/bicozamycin.yaml","bicozamycin"]],"b":[["NCBITaxon%3A53446","Streptomyces cinnamoneus"],["NCBITaxon%3A173776","Streptomyces cinnamoneus subsp. albosporus"],["NCBITaxon%3A173777","Streptomyces cinnamoneus subsp. azacoluta"],["NCBITaxon%3A173778","Streptomyces cinnamoneus subsp. lanosus"],["NCBITaxon%3A1521191","Streptomyces cinnamoneus subsp. monicae"],["NCBITaxon%3A173779","Streptomyces cinnamoneus subsp. sparsus"]]},{"id":"NCBITaxon:116188","l":"Streptomyces coeruleorubidus","na":10,"nb":3,"a":[["amino_acids_and_peptides/pacidamycin-1.yaml","pacidamycin 1"],["amino_acids_and_peptides/pacidamycin-2.yaml","pacidamycin 2"],["amino_acids_and_peptides/pacidamycin-3.yaml","pacidamycin 3"],["amino_acids_and_peptides/pacidamycin-4.yaml","pacidamycin 4"],["amino_acids_and_peptides/pacidamycin-5.yaml","pacidamycin 5"],["amino_acids_and_peptides/pacidamycin-6.yaml","pacidamycin 6"]],"b":[["NCBITaxon%3A1521190","Streptomyces bellus subsp. cirolerosus"],["NCBITaxon%3A116188","Streptomyces coeruleorubidus"],["NCBITaxon%3A146536","Streptomyces curacoi"]]},{"id":"NCBITaxon:680","l":"Vibrio campbellii","na":3,"nb":10,"a":[["amino_acids_and_peptides/divanchrobactin.yaml","divanchrobactin"],["amino_acids_and_peptides/trivanchrobactin.yaml","trivanchrobactin"],["amino_acids_and_peptides/vanchrobactin.yaml","vanchrobactin"]],"b":[["NCBITaxon%3A680","Vibrio campbellii"],["NCBITaxon%3A1279999","Vibrio campbellii 200612B"],["NCBITaxon%3A2902295","Vibrio campbellii ATCC BAA-1116"],["NCBITaxon%3A1206055","Vibrio campbellii CAIM 333"],["NCBITaxon%3A1224742","Vibrio campbellii CAIM 519 = NBRC 15631 = ATCC 25920"],["NCBITaxon%3A1088888","Vibrio campbellii DS40M4"]]},{"id":"NCBITaxon:12908","l":"unclassified sequences","na":3,"nb":9,"a":[["polyketides/elaiophylin.yaml","elaiophylin"],["polyketides/nargenicin-a1-2.yaml","nargenicin A1"],["polyketides/pederin.yaml","pederin"]],"b":[["NCBITaxon%3A1263854","anaerobic digester metagenome"],["NCBITaxon%3A1169740","aquatic metagenome"],["NCBITaxon%3A702656","compost metagenome"],["NCBITaxon%3A408170","human gut metagenome"],["NCBITaxon%3A256318","metagenome"],["NCBITaxon%3A410658","soil metagenome"]]},{"id":"NCBITaxon:556","l":"Dickeya chrysanthemi","na":3,"nb":9,"a":[["amino_acids_and_peptides/chrysobactin.yaml","chrysobactin"],["amino_acids_and_peptides/dichrysobactin.yaml","dichrysobactin"],["unclassified/cyclic-trichrysobactin.yaml","cyclic trichrysobactin"]],"b":[["NCBITaxon%3A556","Dickeya chrysanthemi"],["NCBITaxon%3A561229","Dickeya chrysanthemi Ech1591"],["NCBITaxon%3A1224148","Dickeya chrysanthemi NCPPB 3533"],["NCBITaxon%3A1223569","Dickeya chrysanthemi NCPPB 402"],["NCBITaxon%3A3474837","Dickeya chrysanthemi pv. chrysanthemi"],["NCBITaxon%3A3474953","Dickeya chrysanthemi pv. parthenii"]]},{"id":"NCBITaxon:1836","l":"Saccharopolyspora erythraea","na":8,"nb":3,"a":[["amino_acids_and_peptides/erythrochelin.yaml","erythrochelin"],["polyketides/3-3-diflaviolin.yaml","3,3'-diflaviolin"],["polyketides/erythromycin-a.yaml","erythromycin A"],["polyketides/erythromycin-b.yaml","erythromycin B"],["polyketides/flaviolin-rhamnoside.yaml","flaviolin rhamnoside"],["polyketides/flaviolin.yaml","flaviolin"]],"b":[["NCBITaxon%3A1836","Saccharopolyspora erythraea"],["NCBITaxon%3A1382595","Saccharopolyspora erythraea D"],["NCBITaxon%3A405948","Saccharopolyspora erythraea NRRL 2338"]]},{"id":"NCBITaxon:1055688","l":"Sandaracinus","na":7,"nb":3,"a":[["amino_acids_and_peptides/sandarazol-a.yaml","sandarazol A"],["amino_acids_and_peptides/sandarazol-c.yaml","sandarazol C"],["amino_acids_and_peptides/sandarazol-d.yaml","sandarazol D"],["amino_acids_and_peptides/sandarazol-f.yaml","sandarazol F"],["amino_acids_and_peptides/sandarazol-g.yaml","sandarazol G"],["unclassified/sandarazol-b.yaml","sandarazol B"]],"b":[["NCBITaxon%3A927083","Sandaracinus amylolyticus"],["NCBITaxon%3A2024858","Sandaracinus sp."],["NCBITaxon%3A1331297","uncultured Sandaracinus sp."]]},{"id":"NCBITaxon:1216","l":"Prochloron didemni","na":3,"nb":7,"a":[["amino_acids_and_peptides/divamide-a.yaml","divamide A"],["amino_acids_and_peptides/patellamide-a.yaml","patellamide A"],["amino_acids_and_peptides/patellamide-c.yaml","patellamide C"]],"b":[["NCBITaxon%3A1216","Prochloron didemni"],["NCBITaxon%3A3115413","Prochloron didemni E1"],["NCBITaxon%3A2721547","Prochloron didemni IMFR-1"],["NCBITaxon%3A910450","Prochloron didemni P1-Palau"],["NCBITaxon%3A910454","Prochloron didemni P2-Fiji"],["NCBITaxon%3A910458","Prochloron didemni P3-Solomon"]]},{"id":"NCBITaxon:1935","l":"Streptomyces violaceoruber","na":3,"nb":7,"a":[["polyketides/granaticin.yaml","granaticin"],["polyketides/kendomycin.yaml","kendomycin"],["terpenoids/methylenomycin-a.yaml","methylenomycin A"]],"b":[["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A67291","Streptomyces cyanocolor"],["NCBITaxon%3A80860","Streptomyces cyanogenus"],["NCBITaxon%3A1916","Streptomyces lividans"],["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A68277","Streptomyces tricolor"]]},{"id":"NCBITaxon:1938","l":"Streptomyces viridochromogenes","na":3,"nb":7,"a":[["amino_acids_and_peptides/glycinocin-a.yaml","glycinocin A"],["carbohydrates/avilamycin-a.yaml","avilamycin A"],["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"]],"b":[["NCBITaxon%3A1969","Streptomyces chartreusis"],["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A1938","Streptomyces viridochromogenes"],["NCBITaxon%3A591159","Streptomyces viridochromogenes DSM 40736"],["NCBITaxon%3A285521","Streptomyces viridochromogenes subsp. komabensis"],["NCBITaxon%3A285503","Streptomyces viridochromogenes subsp. sulfomycini"]]},{"id":"NCBITaxon:37463","l":"Phoma","na":7,"nb":3,"a":[["alkaloids/dihydroisoflavipucine.yaml","dihydroisoflavipucine"],["carbohydrates/kanamycin-a.yaml","kanamycin A"],["polyketides/nystatin-a1.yaml","nystatin A1"],["polyketides/squalestatin-s1.yaml","squalestatin S1"],["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"],["unclassified/eupenifeldin.yaml","eupenifeldin"]],"b":[["NCBITaxon%3A73001","Phoma herbarum"],["NCBITaxon%3A196108","Phoma leveillei"],["NCBITaxon%3A1707701","Phoma sp."]]},{"id":"NCBITaxon:1877","l":"Micromonospora echinospora","na":6,"nb":3,"a":[["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/gentamicin-2.yaml","gentamicin"],["carbohydrates/gentamicin.yaml","gentamicin"],["polyketides/1-6-dihydro-8-propylanthraquinone.yaml","1,6-dihydro-8-propylanthraquinone"],["polyketides/calicheamicin.yaml","calicheamicin"],["polyketides/tiacumicin-b.yaml","tiacumicin B"]],"b":[["NCBITaxon%3A1877","Micromonospora echinospora"],["NCBITaxon%3A704114","Micromonospora echinospora subsp. challisensis"],["NCBITaxon%3A145854","Micromonospora pallida"]]},{"id":"NCBITaxon:1920","l":"Streptomyces nigrescens","na":6,"nb":3,"a":[["alkaloids/5athq-10a.yaml","5aTHQ-10a"],["alkaloids/5athq-9i.yaml","5aTHQ-9i"],["alkaloids/5athq-9n.yaml","5aTHQ-9n"],["alkaloids/stams-9i.yaml","STAMs-9i"],["alkaloids/stams-9n.yaml","STAMs-9n"],["polyketides/phoslactomycin-b.yaml","phoslactomycin B"]],"b":[["NCBITaxon%3A1128671","Microvirga arabica"],["NCBITaxon%3A249582","Streptomyces libani subsp. rufus"],["NCBITaxon%3A1920","Streptomyces nigrescens"]]},{"id":"NCBITaxon:2303152","l":"Anabaena minutissima","na":3,"nb":6,"a":[["amino_acids_and_peptides/minutissamide-a.yaml","minutissamide A"],["amino_acids_and_peptides/minutissamide-b.yaml","minutissamide B"],["amino_acids_and_peptides/puwainaphycin-f.yaml","puwainaphycin F"]],"b":[["NCBITaxon%3A2303152","Anabaena minutissima"],["NCBITaxon%3A2811940","Anabaena minutissima BEA0300B"],["NCBITaxon%3A2929142","Anabaena minutissima BEA 0025"],["NCBITaxon%3A2929143","Anabaena minutissima BEA 0026"],["NCBITaxon%3A2692882","Anabaena minutissima FACHB-250"],["NCBITaxon%3A2303153","Anabaena minutissima UTEX B 1613"]]},{"id":"NCBITaxon:5149","l":"Chaetomium","na":3,"nb":6,"a":[["alkaloids/chaetoglobosin-c.yaml","chaetoglobosin C"],["polyketides/chaetoviridin-e.yaml","chaetoviridin E"],["polyketides/terrestric-acid.yaml","terrestric acid"]],"b":[["NCBITaxon%3A904709","Chaetomium cochliodes"],["NCBITaxon%3A1854472","Chaetomium fimeti"],["NCBITaxon%3A38033","Chaetomium globosum"],["NCBITaxon%3A1769349","Chaetomium sp."],["NCBITaxon%3A1170767","Chaetomium strumarium"],["NCBITaxon%3A1854479","Chaetomium tenue"]]},{"id":"NCBITaxon:129921","l":"Amycolatopsis keratiniphila","na":5,"nb":3,"a":[["amino_acids_and_peptides/keratinimicin-a.yaml","keratinimicin A"],["amino_acids_and_peptides/keratinimicin-b.yaml","keratinimicin B"],["amino_acids_and_peptides/keratinimicin-c.yaml","keratinimicin C"],["amino_acids_and_peptides/keratinimicin-d.yaml","keratinimicin D"],["polyketides/eco-0501.yaml","ECO-0501"]],"b":[["NCBITaxon%3A129921","Amycolatopsis keratiniphila"],["NCBITaxon%3A227715","Amycolatopsis keratiniphila subsp. keratiniphila"],["NCBITaxon%3A208442","Amycolatopsis keratiniphila subsp. nogabecina"]]},{"id":"NCBITaxon:193461","l":"Streptomyces aureus","na":3,"nb":5,"a":[["amino_acids_and_peptides/thiostrepton.yaml","thiostrepton"],["polyketides/colabomycin-e.yaml","colabomycin E"],["terpenoids/napyradiomycin.yaml","napyradiomycin"]],"b":[["NCBITaxon%3A2071609","Marisediminitalea oceani"],["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A193461","Streptomyces aureus"],["NCBITaxon%3A2706486","Streptomyces aureus subsp. suzhoueusis"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:536","l":"Chromobacterium violaceum","na":3,"nb":5,"a":[["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["unclassified/romidepsin.yaml","romidepsin"]],"b":[["NCBITaxon%3A1382803","Chromobacterium amazonense"],["NCBITaxon%3A686831","Chromobacterium piscinae"],["NCBITaxon%3A3055134","Chromobacterium sp. CCUG 30098"],["NCBITaxon%3A536","Chromobacterium violaceum"],["NCBITaxon%3A243365","Chromobacterium violaceum ATCC 12472"]]},{"id":"NCBITaxon:1038928","l":"Streptomyces xinghaiensis","na":4,"nb":3,"a":[["alkaloids/dixiamycin-a.yaml","dixiamycin A"],["alkaloids/xiamycin-a.yaml","xiamycin A"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"],["polyketides/oligomycin.yaml","oligomycin"]],"b":[["NCBITaxon%3A1906","Streptomyces fradiae"],["NCBITaxon%3A1038928","Streptomyces xinghaiensis"],["NCBITaxon%3A1038929","Streptomyces xinghaiensis S187"]]},{"id":"NCBITaxon:1167","l":"Anabaena sp.","na":4,"nb":3,"a":[["alkaloids/schizokinen.yaml","schizokinen"],["amino_acids_and_peptides/puwainaphycin-a.yaml","puwainaphycin A"],["amino_acids_and_peptides/puwainaphycin-b.yaml","puwainaphycin B"],["amino_acids_and_peptides/puwainaphycin-d.yaml","puwainaphycin D"]],"b":[["NCBITaxon%3A1167","Anabaena sp."],["NCBITaxon%3A103690","Nostoc sp. PCC 7120 = FACHB-418"],["NCBITaxon%3A264691","Trichormus variabilis"]]},{"id":"NCBITaxon:184932","l":"Cylindrospermum licheniforme","na":3,"nb":4,"a":[["polyketides/cylindrocyclophane-d.yaml","Cylindrocyclophane D"],["polyketides/cylindrocyclophane-e.yaml","Cylindrocyclophane E"],["polyketides/cylindrocyclophane-f.yaml","Cylindrocyclophane F"]],"b":[["NCBITaxon%3A184932","Cylindrospermum licheniforme"],["NCBITaxon%3A1382629","Cylindrospermum licheniforme CCALA 995"],["NCBITaxon%3A1982948","Cylindrospermum licheniforme ISB 74"],["NCBITaxon%3A379530","Cylindrospermum licheniforme UTEX B 2014"]]},{"id":"NCBITaxon:1961","l":"Streptomyces virginiae","na":3,"nb":4,"a":[["alkaloids/endophenazine-a.yaml","endophenazine A"],["polyketides/monensin.yaml","monensin"],["unclassified/virginiamycin-s1.yaml","virginiamycin S1"]],"b":[["NCBITaxon%3A1535204","Metabacillus endolithicus"],["NCBITaxon%3A67381","Streptomyces violascens"],["NCBITaxon%3A1961","Streptomyces virginiae"],["NCBITaxon%3A3478784","Streptomyces virginiae subsp. lipoxae (nom. nud.)"]]},{"id":"NCBITaxon:1969","l":"Streptomyces chartreusis","na":4,"nb":3,"a":[["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"],["polyketides/a23187.yaml","A23187"],["shikimates_and_phenylpropanoids/chartreusin.yaml","chartreusin"]],"b":[["NCBITaxon%3A1969","Streptomyces chartreusis"],["NCBITaxon%3A1079986","Streptomyces chartreusis NRRL 12338"],["NCBITaxon%3A1079985","Streptomyces chartreusis NRRL 3882"]]},{"id":"NCBITaxon:2021","l":"Thermobifida fusca","na":3,"nb":4,"a":[["amino_acids_and_peptides/fuscachelin-a.yaml","Fuscachelin A"],["amino_acids_and_peptides/fuscachelin-b.yaml","Fuscachelin B"],["amino_acids_and_peptides/fuscachelin-c.yaml","Fuscachelin C"]],"b":[["NCBITaxon%3A2021","Thermobifida fusca"],["NCBITaxon%3A1223522","Thermobifida fusca NBRC 14071 = JCM 3263"],["NCBITaxon%3A1169414","Thermobifida fusca TM51"],["NCBITaxon%3A269800","Thermobifida fusca YX"]]},{"id":"NCBITaxon:29442","l":"Pseudomonas tolaasii","na":3,"nb":4,"a":[["unclassified/tolaasin-a.yaml","tolaasin A"],["unclassified/tolaasin-f.yaml","tolaasin F"],["unclassified/tolaasin-i.yaml","tolaasin I"]],"b":[["NCBITaxon%3A29442","Pseudomonas tolaasii"],["NCBITaxon%3A1161101","Pseudomonas tolaasii 6264"],["NCBITaxon%3A564423","Pseudomonas tolaasii NCPPB 2192"],["NCBITaxon%3A1030145","Pseudomonas tolaasii PMS117"]]},{"id":"NCBITaxon:33","l":"Myxococcus fulvus","na":3,"nb":4,"a":[["unclassified/fulvuthiacene-a.yaml","Fulvuthiacene A"],["unclassified/fulvuthiacene-b.yaml","Fulvuthiacene B"],["unclassified/myxothiazol.yaml","myxothiazol"]],"b":[["NCBITaxon%3A33","Myxococcus fulvus"],["NCBITaxon%3A1334629","Myxococcus fulvus 124B02"],["NCBITaxon%3A483219","Myxococcus fulvus HW-1"],["NCBITaxon%3A675525","Myxococcus fulvus Mx f65"]]},{"id":"NCBITaxon:380021","l":"Pseudomonas protegens","na":3,"nb":4,"a":[["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"],["unclassified/pf-5-pyoverdine.yaml","Pf-5 pyoverdine"]],"b":[["NCBITaxon%3A380021","Pseudomonas protegens"],["NCBITaxon%3A1420599","Pseudomonas protegens Cab57"],["NCBITaxon%3A1124983","Pseudomonas protegens CHA0"],["NCBITaxon%3A220664","Pseudomonas protegens Pf-5"]]},{"id":"NCBITaxon:43662","l":"Pseudoalteromonas piscicida","na":4,"nb":3,"a":[["alkaloids/2-3-4-5-tetrabromopyrrole.yaml","2,3,4,5-tetrabromopyrrole"],["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["alkaloids/pseudochelin-a.yaml","pseudochelin A"]],"b":[["NCBITaxon%3A43662","Pseudoalteromonas piscicida"],["NCBITaxon%3A1279016","Pseudoalteromonas piscicida ATCC 15057"],["NCBITaxon%3A53249","Pseudoalteromonas sp."]]},{"id":"NCBITaxon:55404","l":"Streptomyces netropsis","na":3,"nb":4,"a":[["alkaloids/congocidine.yaml","congocidine"],["alkaloids/distamycin.yaml","distamycin"],["carbohydrates/spectinomycin.yaml","spectinomycin"]],"b":[["NCBITaxon%3A1914","Streptomyces lavendulae"],["NCBITaxon%3A68190","Streptomyces lavendulae subsp. colombiensis"],["NCBITaxon%3A55404","Streptomyces netropsis"],["NCBITaxon%3A76729","Streptomyces syringium"]]},{"id":"NCBITaxon:58352","l":"Kitasatospora mediocidica","na":3,"nb":4,"a":[["alkaloids/lyngbyatoxin.yaml","lyngbyatoxin"],["fatty_acids/mediomycin-a-2.yaml","mediomycin A"],["fatty_acids/mediomycin-a.yaml","mediomycin A"]],"b":[["NCBITaxon%3A58352","Kitasatospora mediocidica"],["NCBITaxon%3A1449347","Kitasatospora mediocidica KCTC 9733"],["NCBITaxon%3A68180","Streptomyces blastmyceticus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:67294","l":"Streptomyces filamentosus","na":4,"nb":3,"a":[["amino_acids_and_peptides/arylomycin.yaml","arylomycin"],["amino_acids_and_peptides/napsamycin-c.yaml","napsamycin C"],["amino_acids_and_peptides/napsamycin-d.yaml","napsamycin D"],["unclassified/daptomycin.yaml","daptomycin"]],"b":[["NCBITaxon%3A67294","Streptomyces filamentosus"],["NCBITaxon%3A457430","Streptomyces filamentosus NRRL 11379"],["NCBITaxon%3A457431","Streptomyces filamentosus NRRL 15998"]]},{"id":"NCBITaxon:83451","l":"Archangium violaceum","na":4,"nb":3,"a":[["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["alkaloids/myxochelin-n.yaml","myxochelin N"],["alkaloids/myxochelin-o.yaml","myxochelin O"]],"b":[["NCBITaxon%3A48","Archangium gephyra"],["NCBITaxon%3A83451","Archangium violaceum"],["NCBITaxon%3A1406225","Archangium violaceum Cb vi76"]]},{"id":"NCBITaxon:1885","l":"Streptomyces actuosus","na":3,"nb":3,"a":[["alkaloids/staurosporine-2.yaml","staurosporine"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/nosiheptide-2.yaml","nosiheptide"]],"b":[["NCBITaxon%3A1280","Staphylococcus aureus"],["NCBITaxon%3A1885","Streptomyces actuosus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:1905","l":"Streptomyces exfoliatus","na":3,"nb":3,"a":[["alkaloids/carquinostatin-a.yaml","carquinostatin A"],["alkaloids/carquinostatin-b.yaml","carquinostatin B"],["unclassified/valinomycin-2.yaml","valinomycin"]],"b":[["NCBITaxon%3A1905","Streptomyces exfoliatus"],["NCBITaxon%3A1440059","Streptomyces exfoliatus DSM 41693"],["NCBITaxon%3A1873719","Streptomyces hydrogenans"]]},{"id":"NCBITaxon:1950","l":"Streptomyces peucetius","na":3,"nb":3,"a":[["amino_acids_and_peptides/peucechelin.yaml","peucechelin"],["polyketides/daunorubicin.yaml","daunorubicin"],["polyketides/doxorubicin.yaml","doxorubicin"]],"b":[["NCBITaxon%3A1950","Streptomyces peucetius"],["NCBITaxon%3A55158","Streptomyces peucetius subsp. caesius"],["NCBITaxon%3A316280","Streptomyces peucetius subsp. caesius ATCC 27952"]]},{"id":"NCBITaxon:1956","l":"Streptomyces diastaticus","na":3,"nb":3,"a":[["alkaloids/diastaphenazine.yaml","diastaphenazine"],["alkaloids/izumiphenazine-c.yaml","izumiphenazine C"],["polyketides/rimocidin.yaml","rimocidin"]],"b":[["NCBITaxon%3A285564","Streptomyces ardesiacus"],["NCBITaxon%3A1956","Streptomyces diastaticus"],["NCBITaxon%3A68040","Streptomyces diastaticus subsp. diastaticus"]]},{"id":"NCBITaxon:67299","l":"Streptomyces flavogriseus","na":3,"nb":3,"a":[["alkaloids/holomycin.yaml","holomycin"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["polyketides/xantholipin.yaml","xantholipin"]],"b":[["NCBITaxon%3A67299","Streptomyces flavogriseus"],["NCBITaxon%3A52258","Streptomyces flavovirens"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:2062","l":"Streptomycetaceae","na":2,"nb":32318,"a":[["alkaloids/carbazomycin-b.yaml","carbazomycin B"],["unclassified/quinomycin.yaml","quinomycin"]],"b":[["NCBITaxon%3A2784346","Actinacidiphila acididurans"],["NCBITaxon%3A2873382","Actinacidiphila acidipaludis"],["NCBITaxon%3A380248","Actinacidiphila alni"],["NCBITaxon%3A1436133","Actinacidiphila bryophytorum"],["NCBITaxon%3A887465","Actinacidiphila cocklensis"],["NCBITaxon%3A2053013","Actinacidiphila epipremni"]]},{"id":"NCBITaxon:379","l":"Rhizobium","na":2,"nb":5539,"a":[["alkaloids/sesbanimide-c.yaml","sesbanimide C"],["amino_acids_and_peptides/syringolin-a-2.yaml","syringolin A"]],"b":[["NCBITaxon%3A2934936","Allorhizobium sonneratiae"],["NCBITaxon%3A2041385","Arminella tumorigenes"],["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A1355477","Bradyrhizobium diazoefficiens"],["NCBITaxon%3A224911","Bradyrhizobium diazoefficiens USDA 110"],["NCBITaxon%3A29448","Bradyrhizobium elkanii"]]},{"id":"NCBITaxon:44249","l":"Paenibacillus","na":2,"nb":5352,"a":[["alkaloids/paenilamicin.yaml","paenilamicin"],["unclassified/paenibacterin.yaml","paenibacterin"]],"b":[["NCBITaxon%3A1531483","Candidatus Paenibacillus aerius"],["NCBITaxon%3A1531475","Candidatus Paenibacillus castillanus"],["NCBITaxon%3A1515745","Candidatus Paenibacillus guadalajarensis"],["NCBITaxon%3A1531482","Candidatus Paenibacillus hispaniensis"],["NCBITaxon%3A1531476","Candidatus Paenibacillus hominis"],["NCBITaxon%3A1515744","Candidatus Paenibacillus ilicicola"]]},{"id":"NCBITaxon:613","l":"Serratia","na":2,"nb":2177,"a":[["alkaloids/serratiochelin-b.yaml","serratiochelin B"],["alkaloids/serratiochelin-c.yaml","serratiochelin C"]],"b":[["NCBITaxon%3A3076559","Prodigiosinella aquatilis"],["NCBITaxon%3A28242","secondary symbiont of Acyrthosiphon pisum"],["NCBITaxon%3A1924982","secondary symbiont of Schizolachnus pineti"],["NCBITaxon%3A207488","secondary symbiont type-R of Aphis craccivora"],["NCBITaxon%3A207491","secondary symbiont type-R of Cinara cupressi"],["NCBITaxon%3A207493","secondary symbiont type-R of Cinara tujafilina"]]},{"id":"NCBITaxon:54304","l":"Planktothrix","na":2,"nb":1080,"a":[["alkaloids/saxitoxin.yaml","saxitoxin"],["unclassified/cyanopeptolin-1138.yaml","cyanopeptolin 1138"]],"b":[["NCBITaxon%3A1160","Planktothrix agardhii"],["NCBITaxon%3A358557","Planktothrix agardhii 0ES34S1"],["NCBITaxon%3A2884158","Planktothrix agardhii 1025"],["NCBITaxon%3A2884159","Planktothrix agardhii 1026"],["NCBITaxon%3A2884160","Planktothrix agardhii 1027"],["NCBITaxon%3A2884161","Planktothrix agardhii 1029"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":2,"nb":1075,"a":[["alkaloids/acinetobactin.yaml","acinetobactin"],["amino_acids_and_peptides/fimsbactin-a.yaml","fimsbactin A"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A1311139","Acinetobacter baumannii 016901DP_1"],["NCBITaxon%3A1311140","Acinetobacter baumannii 016901DP_2"],["NCBITaxon%3A1310784","Acinetobacter baumannii 1007214"],["NCBITaxon%3A1310751","Acinetobacter baumannii 1022959"],["NCBITaxon%3A1310586","Acinetobacter baumannii 1031433"]]},{"id":"NCBITaxon:55080","l":"Brevibacillus","na":2,"nb":774,"a":[["alkaloids/ulbactin-f.yaml","ulbactin F"],["alkaloids/ulbactin-g.yaml","ulbactin G"]],"b":[["NCBITaxon%3A51101","Brevibacillus agri"],["NCBITaxon%3A1444307","Brevibacillus agri 5-2"],["NCBITaxon%3A1246477","Brevibacillus agri BAB-2500"],["NCBITaxon%3A2570228","Brevibacillus antibioticus"],["NCBITaxon%3A927786","Brevibacillus aydinogluensis"],["NCBITaxon%3A45462","Brevibacillus borstelensis"]]},{"id":"NCBITaxon:149698","l":"Massilia","na":2,"nb":707,"a":[["unclassified/empedopeptin.yaml","empedopeptin"],["unclassified/massiliachelin.yaml","Massiliachelin"]],"b":[["NCBITaxon%3A1904440","Duganella sp."],["NCBITaxon%3A453817","Massilia aerilata"],["NCBITaxon%3A1811226","Massilia agilis"],["NCBITaxon%3A1886785","Massilia agri"],["NCBITaxon%3A2892444","Massilia agrisoli"],["NCBITaxon%3A286638","Massilia alkalitolerans"]]},{"id":"NCBITaxon:68","l":"Lysobacter","na":2,"nb":501,"a":[["unclassified/lysobactin.yaml","lysobactin"],["unclassified/lysocin-e.yaml","lysocin E"]],"b":[["NCBITaxon%3A488485","Luteimonas marina"],["NCBITaxon%3A1582807","Lysobacter agri"],["NCBITaxon%3A84531","Lysobacter antibioticus"],["NCBITaxon%3A1286308","Lysobacter antibioticus HS124"],["NCBITaxon%3A2795387","Lysobacter arenosi"],["NCBITaxon%3A3038776","Lysobacter arvi"]]},{"id":"NCBITaxon:2000","l":"Streptosporangium","na":2,"nb":415,"a":[["polyketides/hexaricin-c.yaml","hexaricin C"],["polyketides/ws-79089a.yaml","WS 79089A"]],"b":[["NCBITaxon%3A47482","Sphaerisporangium cinnabarinum"],["NCBITaxon%3A46189","Sphaerisporangium viridialbum"],["NCBITaxon%3A2932830","Sphaerisporangium viridialbum subsp. reducens"],["NCBITaxon%3A47479","Streptosporangium album"],["NCBITaxon%3A1682748","Streptosporangium algeriense"],["NCBITaxon%3A2002","Streptosporangium amethystogenes"]]},{"id":"NCBITaxon:77022","l":"Cylindrospermopsis raciborskii","na":2,"nb":296,"a":[["alkaloids/7-epi-cylindrospermopsin.yaml","7-epi-cylindrospermopsin"],["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"]],"b":[["NCBITaxon%3A77022","Cylindrospermopsis raciborskii"],["NCBITaxon%3A3345092","Cylindrospermopsis raciborskii 1523720"],["NCBITaxon%3A543817","Cylindrospermopsis raciborskii 1LT32S01"],["NCBITaxon%3A469631","Cylindrospermopsis raciborskii 3-1"],["NCBITaxon%3A3436924","Cylindrospermopsis raciborskii A4"],["NCBITaxon%3A1382247","Cylindrospermopsis raciborskii AK1"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":2,"nb":287,"a":[["alkaloids/vibriobactin-2.yaml","vibriobactin"],["alkaloids/vibriobactin.yaml","vibriobactin"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A666","Vibrio cholerae"],["NCBITaxon%3A693741","Vibrio cholerae 0139-ARG"],["NCBITaxon%3A1294144","Vibrio cholerae 01-1751"],["NCBITaxon%3A592313","Vibrio cholerae 12129(1)"],["NCBITaxon%3A412966","Vibrio cholerae 1587"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":2,"nb":264,"a":[["amino_acids_and_peptides/vibrioferrin-2.yaml","vibrioferrin"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]],"b":[["NCBITaxon%3A663","Vibrio alginolyticus"],["NCBITaxon%3A29494","Vibrio furnissii"],["NCBITaxon%3A675811","Vibrio furnissii CIP 102972"],["NCBITaxon%3A670","Vibrio parahaemolyticus"],["NCBITaxon%3A1238231","Vibrio parahaemolyticus 10290"],["NCBITaxon%3A1238195","Vibrio parahaemolyticus 10296"]]},{"id":"NCBITaxon:1835","l":"Saccharopolyspora","na":2,"nb":251,"a":[["amino_acids_and_peptides/kyamicin.yaml","kyamicin"],["polyketides/a83543a.yaml","A83543A"]],"b":[["NCBITaxon%3A3385973","Saccharopolyspora antibiotica"],["NCBITaxon%3A455193","Saccharopolyspora antimicrobica"],["NCBITaxon%3A3457424","Saccharopolyspora antiqui"],["NCBITaxon%3A2530385","Saccharopolyspora aridisoli"],["NCBITaxon%3A1387985","Saccharopolyspora cavernae"],["NCBITaxon%3A418759","Saccharopolyspora cebuensis"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":2,"nb":156,"a":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["unclassified/andalusicin-a.yaml","andalusicin A"]],"b":[["NCBITaxon%3A1428","Bacillus thuringiensis"],["NCBITaxon%3A1340496","Bacillus thuringiensis AKS-7"],["NCBITaxon%3A714359","Bacillus thuringiensis BMB171"],["NCBITaxon%3A1423143","Bacillus thuringiensis Bt18247"],["NCBITaxon%3A1423142","Bacillus thuringiensis Bt18679"],["NCBITaxon%3A527021","Bacillus thuringiensis Bt407"]]},{"id":"NCBITaxon:1154","l":"Spirulina","na":2,"nb":142,"a":[["terpenoids/carotene.yaml","β-carotene"],["terpenoids/zeaxanthin.yaml","zeaxanthin"]],"b":[["NCBITaxon%3A123228","Spirulina laxissima"],["NCBITaxon%3A1236702","Spirulina laxissima SAG 256.80"],["NCBITaxon%3A1628183","Spirulina laxissima SERB 53"],["NCBITaxon%3A2822060","Spirulina laxissima SV001"],["NCBITaxon%3A2834462","Spirulina laxissima TKTI Uz-106"],["NCBITaxon%3A518102","Spirulina lonar"]]},{"id":"NCBITaxon:102234","l":"Cyanobacterium","na":2,"nb":127,"a":[["amino_acids_and_peptides/aeruginosin-98-c.yaml","aeruginosin 98-C"],["unclassified/nostopeptolide-a2.yaml","nostopeptolide A2"]],"b":[["NCBITaxon%3A379064","Cyanobacterium aponinum"],["NCBITaxon%3A2676140","Cyanobacterium aponinum 0216"],["NCBITaxon%3A2862632","Cyanobacterium aponinum 0TAC 3"],["NCBITaxon%3A2862635","Cyanobacterium aponinum 0TAC 8"],["NCBITaxon%3A2867950","Cyanobacterium aponinum 11TAC23"],["NCBITaxon%3A3090662","Cyanobacterium aponinum AL20115"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":116,"nb":2,"a":[["alkaloids/altemicidin.yaml","altemicidin"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"],["alkaloids/aurachin-ss.yaml","aurachin SS"],["alkaloids/berninamycin-j.yaml","berninamycin J"],["alkaloids/berninamycin-k.yaml","berninamycin K"]],"b":[["NCBITaxon%3A324833","Streptomyces lasalocidi"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":2,"nb":88,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["terpenoids/xanthan.yaml","xanthan"]],"b":[["NCBITaxon%3A298","Pseudomonas marginalis"],["NCBITaxon%3A56448","Xanthomonas arboricola"],["NCBITaxon%3A339","Xanthomonas campestris"],["NCBITaxon%3A1281290","Xanthomonas campestris CFBP 5824"],["NCBITaxon%3A1281289","Xanthomonas campestris CFBP 5825"],["NCBITaxon%3A1182783","Xanthomonas campestris JX"]]},{"id":"NCBITaxon:39643","l":"Sorangium","na":2,"nb":83,"a":[["amino_acids_and_peptides/microsclerodermin-m.yaml","microsclerodermin M"],["unclassified/epothilone-b.yaml","epothilone B"]],"b":[["NCBITaxon%3A2093422","Sorangium ambruticinum"],["NCBITaxon%3A2093421","Sorangium arenae"],["NCBITaxon%3A2995308","Sorangium atrum"],["NCBITaxon%3A2093423","Sorangium bulgaricum"],["NCBITaxon%3A56","Sorangium cellulosum"],["NCBITaxon%3A1254432","Sorangium cellulosum So0157-2"]]},{"id":"NCBITaxon:162985","l":"Hapalosiphon","na":2,"nb":74,"a":[["alkaloids/12-epi-hapalindole-c-isonitrile.yaml","12-epi-hapalindole C isonitrile"],["alkaloids/12-epi-hapalindole-e.yaml","12-epi-hapalindole E"]],"b":[["NCBITaxon%3A1987164","cf. Hapalosiphon sp. SJRP32526_10"],["NCBITaxon%3A1987163","cf. Hapalosiphon sp. SJRP32527_9"],["NCBITaxon%3A1941201","Hapalosiphon arboreus"],["NCBITaxon%3A1941202","Hapalosiphon arboreus 3OW05S02"],["NCBITaxon%3A1941203","Hapalosiphon arboreus 3OW05S03"],["NCBITaxon%3A3702225","Hapalosiphon arboreus 81"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":2,"nb":56,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["terpenoids/mk-8.yaml","MK-8"]],"b":[["NCBITaxon%3A61645","Enterobacter asburiae"],["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A1328422","Enterobacter cloacae BIDMC 33A"],["NCBITaxon%3A1439324","Enterobacter cloacae BIDMC 66"],["NCBITaxon%3A1439325","Enterobacter cloacae BIDMC 67"],["NCBITaxon%3A1329846","Enterobacter cloacae BIDMC 8"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":2,"nb":47,"a":[["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["alkaloids/yersiniabactin.yaml","yersiniabactin"]],"b":[["NCBITaxon%3A630","Yersinia enterocolitica"],["NCBITaxon%3A947561","Yersinia enterocolitica IP2222"],["NCBITaxon%3A1243181","Yersinia enterocolitica IP 10393"],["NCBITaxon%3A1443113","Yersinia enterocolitica LC20"],["NCBITaxon%3A947557","Yersinia enterocolitica NFO"],["NCBITaxon%3A150052","Yersinia enterocolitica subsp. enterocolitica"]]},{"id":"NCBITaxon:65496","l":"Actinoalloteichus","na":2,"nb":37,"a":[["alkaloids/marinacarboline-c.yaml","marinacarboline C"],["unclassified/cyanogramide.yaml","cyanogramide"]],"b":[["NCBITaxon%3A238876","Actinoalloteichus alkalophilus"],["NCBITaxon%3A2893586","Actinoalloteichus caeruleus"],["NCBITaxon%3A1120930","Actinoalloteichus caeruleus DSM 43889"],["NCBITaxon%3A1612552","Actinoalloteichus fjordicus"],["NCBITaxon%3A1470176","Actinoalloteichus hoggarensis"],["NCBITaxon%3A340345","Actinoalloteichus hymeniacidonis"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":2,"nb":35,"a":[["alkaloids/agrobactin.yaml","agrobactin"],["amino_acids_and_peptides/aztreonam.yaml","aztreonam"]],"b":[["NCBITaxon%3A1183421","Agrobacterium fabacearum CFBP 5771"],["NCBITaxon%3A1300224","Agrobacterium fabacearum P4"],["NCBITaxon%3A1183429","Agrobacterium fabacearum S56"],["NCBITaxon%3A1368455","Agrobacterium fabacearum str. Foundi"],["NCBITaxon%3A1183430","Agrobacterium fabacearum TT111"],["NCBITaxon%3A1176649","Agrobacterium fabrum"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":30,"nb":2,"a":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["amino_acids_and_peptides/ditryptophenaline.yaml","(-)-ditryptophenaline"],["amino_acids_and_peptides/imizoquin-a.yaml","imizoquin A"]],"b":[["NCBITaxon%3A5059","Aspergillus flavus"],["NCBITaxon%3A332952","Aspergillus flavus NRRL3357"]]},{"id":"NCBITaxon:2029","l":"Kibdelosporangium","na":2,"nb":29,"a":[["amino_acids_and_peptides/jbir-78.yaml","JBIR-78"],["amino_acids_and_peptides/jbir-95.yaml","JBIR-95"]],"b":[["NCBITaxon%3A2030","Kibdelosporangium aridum"],["NCBITaxon%3A145995","Kibdelosporangium aridum subsp. aridum"],["NCBITaxon%3A145996","Kibdelosporangium aridum subsp. largum"],["NCBITaxon%3A1365924","Kibdelosporangium banguiense"],["NCBITaxon%3A1882231","Kibdelosporangium kanagawaense"],["NCBITaxon%3A1497396","Kibdelosporangium lantanae"]]},{"id":"NCBITaxon:374162","l":"Nostoc carneum","na":2,"nb":29,"a":[["amino_acids_and_peptides/tenuecyclamide-a.yaml","tenuecyclamide A"],["amino_acids_and_peptides/tenuecyclamide-c.yaml","tenuecyclamide C"]],"b":[["NCBITaxon%3A374162","Nostoc carneum"],["NCBITaxon%3A1342287","Nostoc carneum AUS-JR/DB/NT-016"],["NCBITaxon%3A1887370","Nostoc carneum AUS-JR/MT/NT-103"],["NCBITaxon%3A1887371","Nostoc carneum AUS-JR/MT/NT-125"],["NCBITaxon%3A721129","Nostoc carneum BF2"],["NCBITaxon%3A1562734","Nostoc carneum BTA38"]]},{"id":"NCBITaxon:1360","l":"Lactococcus lactis subsp. lactis","na":2,"nb":25,"a":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"],["amino_acids_and_peptides/nisin-a.yaml","nisin A"]],"b":[["NCBITaxon%3A1358","Lactococcus lactis"],["NCBITaxon%3A203404","Lactococcus lactis subsp. hordniae"],["NCBITaxon%3A1348656","Lactococcus lactis subsp. hordniae NBRC 100931"],["NCBITaxon%3A1360","Lactococcus lactis subsp. lactis"],["NCBITaxon%3A1379274","Lactococcus lactis subsp. lactis 1AA59"],["NCBITaxon%3A1137134","Lactococcus lactis subsp. lactis A12"]]},{"id":"NCBITaxon:312885","l":"Raphidiopsis mediterranea","na":2,"nb":25,"a":[["alkaloids/anatoxin-a.yaml","anatoxin-a"],["alkaloids/homoanatoxin-a.yaml","homoanatoxin-a"]],"b":[["NCBITaxon%3A312885","Raphidiopsis mediterranea"],["NCBITaxon%3A1137648","Raphidiopsis mediterranea 07-04"],["NCBITaxon%3A1224695","Raphidiopsis mediterranea AB2011/37"],["NCBITaxon%3A638004","Raphidiopsis mediterranea CHAB1350"],["NCBITaxon%3A638005","Raphidiopsis mediterranea CHAB1353"],["NCBITaxon%3A638006","Raphidiopsis mediterranea CHAB1355"]]},{"id":"NCBITaxon:55","l":"Polyangium","na":2,"nb":25,"a":[["amino_acids_and_peptides/glidobactin-b.yaml","glidobactin B"],["amino_acids_and_peptides/glidobactin-c.yaml","glidobactin C"]],"b":[["NCBITaxon%3A2567896","Polyangium aurulentum"],["NCBITaxon%3A889272","Polyangium fumosum"],["NCBITaxon%3A2829994","Polyangium jinanense"],["NCBITaxon%3A1653851","Polyangium minor"],["NCBITaxon%3A2995306","Polyangium mundeleinium"],["NCBITaxon%3A1653852","Polyangium rugiseptum"]]},{"id":"NCBITaxon:369723","l":"Salinispora tropica CNB-440","na":23,"nb":2,"a":[["alkaloids/lymphostin.yaml","lymphostin"],["alkaloids/lymphostinol.yaml","lymphostinol"],["alkaloids/neolymphostin-b-2.yaml","neolymphostin B"],["alkaloids/neolymphostinol-b.yaml","neolymphostinol B"],["amino_acids_and_peptides/salinosporamide-a.yaml","salinosporamide A"],["fatty_acids/salinipostin-a.yaml","Salinipostin A"]],"b":[["NCBITaxon%3A168695","Salinispora tropica"],["NCBITaxon%3A369723","Salinispora tropica CNB-440"]]},{"id":"NCBITaxon:40559","l":"Botrytis cinerea","na":23,"nb":2,"a":[["terpenoids/1-epibotrydial.yaml","1-epibotrydial"],["terpenoids/10-dehydroxy-dihydrobotrydialone.yaml","10-dehydroxy dihydrobotrydialone"],["terpenoids/10-epi-dihydrobotrydial.yaml","10-epi-dihydrobotrydial"],["terpenoids/10-oxo-dihydrobotrydial.yaml","10-Oxo-dihydrobotrydial"],["terpenoids/10-oxodehydrodihydrobotrydial.yaml","10-Oxodehydrodihydrobotrydial"],["terpenoids/10-oxodihydrobotry-1-9-4-5-diendial.yaml","10-Oxodihydrobotry-1(9),4(5)-diendial"]],"b":[["NCBITaxon%3A40559","Botrytis cinerea"],["NCBITaxon%3A999810","Botrytis cinerea T4"]]},{"id":"NCBITaxon:190968","l":"Hormoscilla spongeliae","na":2,"nb":22,"a":[["shikimates_and_phenylpropanoids/2-4-dibromo-6-2-4-dibromophenoxy-phenol.yaml","2,4-dibromo-6-(2,4-dibromophenoxy)phenol"],["shikimates_and_phenylpropanoids/3-5-dibromo-2-2-4-dibromophenoxy-phenol.yaml","3,5-dibromo-2-(2,4-dibromophenoxy)phenol"]],"b":[["NCBITaxon%3A1490264","Hormoscilla cf. spongeliae DRTO-57.2"],["NCBITaxon%3A190968","Hormoscilla spongeliae"],["NCBITaxon%3A281453","Hormoscilla spongeliae 35P1"],["NCBITaxon%3A281454","Hormoscilla spongeliae 39P1"],["NCBITaxon%3A276773","Hormoscilla spongeliae DYS02155"],["NCBITaxon%3A276772","Hormoscilla spongeliae DYS02158"]]},{"id":"NCBITaxon:224458","l":"Pyxidicoccus","na":2,"nb":21,"a":[["polyketides/pyxipyrrolone-a.yaml","pyxipyrrolone A"],["polyketides/pyxipyrrolone-b.yaml","pyxipyrrolone B"]],"b":[["NCBITaxon%3A2709663","Pyxidicoccus caerfyrddinensis"],["NCBITaxon%3A394095","Pyxidicoccus fallax"],["NCBITaxon%3A2813578","Pyxidicoccus parkwayensis"],["NCBITaxon%3A2023737","Pyxidicoccus sp."],["NCBITaxon%3A3383248","Pyxidicoccus sp. 3LFB2"],["NCBITaxon%3A3383247","Pyxidicoccus sp. 3LG"]]},{"id":"NCBITaxon:305","l":"Ralstonia solanacearum","na":2,"nb":19,"a":[["alkaloids/schizokinen.yaml","schizokinen"],["unclassified/micacocidin.yaml","micacocidin"]],"b":[["NCBITaxon%3A1310165","Ralstonia pseudosolanacearum"],["NCBITaxon%3A305","Ralstonia solanacearum"],["NCBITaxon%3A859656","Ralstonia solanacearum CFBP2957"],["NCBITaxon%3A859655","Ralstonia solanacearum CMR15"],["NCBITaxon%3A1130828","Ralstonia solanacearum FJAT-1458"],["NCBITaxon%3A1130829","Ralstonia solanacearum FJAT-91"]]},{"id":"NCBITaxon:321","l":"Pseudomonas syringae pv. syringae","na":2,"nb":18,"a":[["amino_acids_and_peptides/3-methylarginine.yaml","3-methylarginine"],["unclassified/syringopeptin-25a.yaml","syringopeptin 25A"]],"b":[["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A1449349","Pseudomonas syringae DSM 10604"],["NCBITaxon%3A1154761","Pseudomonas syringae pv. avellanae str. ISPaVe013"],["NCBITaxon%3A1154762","Pseudomonas syringae pv. avellanae str. ISPaVe037"],["NCBITaxon%3A321","Pseudomonas syringae pv. syringae"],["NCBITaxon%3A1357293","Pseudomonas syringae pv. syringae 1212"]]},{"id":"NCBITaxon:455632","l":"Streptomyces griseus subsp. griseus NBRC 13350","na":17,"nb":2,"a":[["alkaloids/grixazone-a.yaml","grixazone A"],["alkaloids/iminimycin-a.yaml","iminimycin A"],["alkaloids/iminimycin-b.yaml","iminimycin B"],["alkaloids/melanin.yaml","melanin"],["carbohydrates/streptomycin.yaml","streptomycin"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"]],"b":[["NCBITaxon%3A1896","Streptomyces bikiniensis"],["NCBITaxon%3A455632","Streptomyces griseus subsp. griseus NBRC 13350"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":2,"nb":16,"a":[["amino_acids_and_peptides/aerobactin.yaml","aerobactin"],["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A1114880","Aeromonas australiensis"],["NCBITaxon%3A1264931","Flavobacterium acidificum"],["NCBITaxon%3A553","Pantoea ananatis"],["NCBITaxon%3A1419326","Pantoea ananatis 15320"],["NCBITaxon%3A932677","Pantoea ananatis AJ13355"],["NCBITaxon%3A1048262","Pantoea ananatis B1-9"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":2,"nb":15,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"],["unclassified/corynebactin.yaml","corynebactin"]],"b":[["NCBITaxon%3A38285","Corynebacterium acetoacidophilum"],["NCBITaxon%3A1718","Corynebacterium glutamicum"],["NCBITaxon%3A196627","Corynebacterium glutamicum ATCC 13032"],["NCBITaxon%3A1079988","Corynebacterium glutamicum ATCC 14067"],["NCBITaxon%3A1204414","Corynebacterium glutamicum K051"],["NCBITaxon%3A1310161","Corynebacterium glutamicum MB001"]]},{"id":"NCBITaxon:55601","l":"Vibrio anguillarum","na":2,"nb":15,"a":[["alkaloids/anguibactin.yaml","anguibactin"],["amino_acids_and_peptides/vanchrobactin.yaml","vanchrobactin"]],"b":[["NCBITaxon%3A1056982","Gordonia phosphorivorans"],["NCBITaxon%3A55601","Vibrio anguillarum"],["NCBITaxon%3A1161910","Vibrio anguillarum 13YK-003"],["NCBITaxon%3A882102","Vibrio anguillarum 775"],["NCBITaxon%3A990314","Vibrio anguillarum 96F"],["NCBITaxon%3A882846","Vibrio anguillarum ATCC 43308"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":2,"nb":14,"a":[["alkaloids/schizokinen.yaml","schizokinen"],["carbohydrates/oxetanocin-a.yaml","oxetanocin A"]],"b":[["NCBITaxon%3A72360","Bacillus mojavensis"],["NCBITaxon%3A1051501","Bacillus mojavensis RO-H-1 = KCTC 3706"],["NCBITaxon%3A1478","Peribacillus simplex"],["NCBITaxon%3A86664","Priestia flexa"],["NCBITaxon%3A1404","Priestia megaterium"],["NCBITaxon%3A592022","Priestia megaterium DSM 319"]]},{"id":"NCBITaxon:69488","l":"Penicillium simplicissimum","na":14,"nb":2,"a":[["polyketides/citreoviridin.yaml","citreoviridin"],["unclassified/andrastin-a.yaml","andrastin A"],["unclassified/okaramine-b.yaml","okaramine B"],["unclassified/okaramine-d.yaml","okaramine D"],["unclassified/paraherquamide.yaml","paraherquamide"],["unclassified/paraherquonin.yaml","paraherquonin"]],"b":[["NCBITaxon%3A1459","Sporosarcina globispora"],["NCBITaxon%3A69488","Penicillium simplicissimum"]]},{"id":"NCBITaxon:1616117","l":"Streptomyces formicae","na":13,"nb":2,"a":[["polyketides/formicamycin-a.yaml","formicamycin A"],["polyketides/formicamycin-b.yaml","formicamycin B"],["polyketides/formicamycin-c.yaml","formicamycin C"],["polyketides/formicamycin-d.yaml","formicamycin D"],["polyketides/formicamycin-e.yaml","formicamycin E"],["polyketides/formicamycin-f.yaml","formicamycin F"]],"b":[["NCBITaxon%3A249409","Hydrogenophaga atypica"],["NCBITaxon%3A1616117","Streptomyces formicae"]]},{"id":"NCBITaxon:406817","l":"Xenorhabdus nematophila ATCC 19061","na":13,"nb":2,"a":[["alkaloids/nematophin.yaml","nematophin"],["amino_acids_and_peptides/rhabdopeptide-1.yaml","rhabdopeptide 1"],["amino_acids_and_peptides/rhabdopeptide-2.yaml","rhabdopeptide 2"],["amino_acids_and_peptides/rhabdopeptide-3.yaml","rhabdopeptide 3"],["amino_acids_and_peptides/rhabdopeptide-4.yaml","rhabdopeptide 4"],["amino_acids_and_peptides/xenortide-a.yaml","xenortide A"]],"b":[["NCBITaxon%3A628","Xenorhabdus nematophila"],["NCBITaxon%3A406817","Xenorhabdus nematophila ATCC 19061"]]},{"id":"NCBITaxon:271848","l":"Burkholderia thailandensis E264","na":12,"nb":2,"a":[["alkaloids/malleobactin-b.yaml","malleobactin B"],["alkaloids/malleobactin-d.yaml","malleobactin D"],["polyketides/malleicyprol.yaml","malleicyprol"],["polyketides/malleilactone.yaml","malleilactone"],["polyketides/thailandamide-lactone.yaml","thailandamide lactone"],["polyketides/thailandamide.yaml","thailandamide"]],"b":[["NCBITaxon%3A57975","Burkholderia thailandensis"],["NCBITaxon%3A271848","Burkholderia thailandensis E264"]]},{"id":"NCBITaxon:33903","l":"Streptomyces avermitilis","na":12,"nb":2,"a":[["alkaloids/melanin.yaml","melanin"],["fatty_acids/butyrolactone.yaml","γ-butyrolactone"],["polyketides/filipin-iii.yaml","filipin III"],["polyketides/oligomycin.yaml","oligomycin"],["polyketides/phthoxazolin.yaml","phthoxazolin"],["terpenoids/avermitilol.yaml","avermitilol"]],"b":[["NCBITaxon%3A33903","Streptomyces avermitilis"],["NCBITaxon%3A227882","Streptomyces avermitilis MA-4680 = NBRC 14893"]]},{"id":"NCBITaxon:47424","l":"Armillaria","na":2,"nb":12,"a":[["carbohydrates/kanamycin-a.yaml","kanamycin A"],["polyketides/nystatin-a1.yaml","nystatin A1"]],"b":[["NCBITaxon%3A1156164","Armillaria altimontana"],["NCBITaxon%3A47425","Armillaria borealis"],["NCBITaxon%3A153910","Armillaria fumosa"],["NCBITaxon%3A108572","Armillaria fuscipes"],["NCBITaxon%3A47427","Armillaria gallica"],["NCBITaxon%3A153913","Armillaria luteobubalina"]]},{"id":"NCBITaxon:47716","l":"Streptomyces olivaceus","na":12,"nb":2,"a":[["alkaloids/prodigiosin-2.yaml","prodigiosin"],["alkaloids/xiamycin-a.yaml","xiamycin A"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["polyketides/elloramycin.yaml","elloramycin"],["polyketides/lobophorin-a.yaml","lobophorin A"],["polyketides/mycemycin-a.yaml","mycemycin A"]],"b":[["NCBITaxon%3A47716","Streptomyces olivaceus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:58340","l":"Streptomyces lavendulae subsp. lavendulae","na":2,"nb":12,"a":[["amino_acids_and_peptides/cycloserine.yaml","cycloserine"],["polyketides/auricin.yaml","auricin"]],"b":[["NCBITaxon%3A1894","Kitasatospora aureofaciens"],["NCBITaxon%3A1914","Streptomyces lavendulae"],["NCBITaxon%3A68190","Streptomyces lavendulae subsp. colombiensis"],["NCBITaxon%3A66421","Streptomyces lavendulae subsp. grasserius"],["NCBITaxon%3A58340","Streptomyces lavendulae subsp. lavendulae"],["NCBITaxon%3A1303691","Streptomyces lavendulae subsp. lavendulae JCM 4055"]]},{"id":"NCBITaxon:1771","l":"Mycolicibacterium phlei","na":2,"nb":11,"a":[["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"],["terpenoids/isorenieratene.yaml","isorenieratene"]],"b":[["NCBITaxon%3A1876","Micromonospora sp."],["NCBITaxon%3A1774","Mycobacteroides chelonae"],["NCBITaxon%3A1771","Mycolicibacterium phlei"],["NCBITaxon%3A1335620","Mycolicibacterium phlei DSM 43070"],["NCBITaxon%3A1384515","Mycolicibacterium phlei DSM 43071"],["NCBITaxon%3A1335621","Mycolicibacterium phlei DSM 43072"]]},{"id":"NCBITaxon:512565","l":"Actinoplanes missouriensis 431","na":11,"nb":2,"a":[["polyketides/6-anteisoheptadecyl-4-o-dihydrogeranyl-2-methoxyhydroquinone.yaml","6-anteisoheptadecyl-4-O-dihydrogeranyl-2-methoxyhydroquinone"],["polyketides/6-isoheptadecyl-4-o-dihydrogeranyl-2-methoxyhydroquinone.yaml","6-isoheptadecyl-4-O-dihydrogeranyl-2-methoxyhydroquinone"],["polyketides/6-palmityl-4-o-dihydrofarnesyl-2-methoxyhydroquinone.yaml","6-palmityl-4-O-dihydrofarnesyl-2-methoxyhydroquinone"],["polyketides/6-palmityl-4-o-geranyl-2-methoxyhydroquinone.yaml","6-palmityl-4-O-geranyl-2-methoxyhydroquinone"],["polyketides/fogacin-2.yaml","fogacin"],["terpenoids/6-anteisoheptadecyl-4-o-dihydrofarnesyl-2-methoxyhydroquinone.yaml","6-anteisoheptadecyl-4-O-dihydrofarnesyl-2-methoxyhydroquinone"]],"b":[["NCBITaxon%3A1866","Actinoplanes missouriensis"],["NCBITaxon%3A512565","Actinoplanes missouriensis 431"]]},{"id":"NCBITaxon:73504","l":"Cladobotryum","na":2,"nb":11,"a":[["alkaloids/cj-15-696.yaml","CJ-15,696"],["unclassified/melinacidin-iv.yaml","melinacidin IV"]],"b":[["NCBITaxon%3A129581","Cladobotryum apiculatum"],["NCBITaxon%3A76881","Cladobotryum asterophorum"],["NCBITaxon%3A2074850","Cladobotryum croceum"],["NCBITaxon%3A491253","Cladobotryum mycophilum"],["NCBITaxon%3A2074851","Cladobotryum obconicum"],["NCBITaxon%3A84680","Cladobotryum penicillatum"]]},{"id":"NCBITaxon:1928","l":"Streptomyces rochei","na":10,"nb":2,"a":[["amino_acids_and_peptides/lipopeptide-8d1-1.yaml","lipopeptide 8D1-1"],["amino_acids_and_peptides/lipopeptide-8d1-2.yaml","lipopeptide 8D1-2"],["carbohydrates/amicetin.yaml","amicetin"],["carbohydrates/streptothricin-c.yaml","streptothricin C"],["carbohydrates/streptothricin-d.yaml","streptothricin D"],["carbohydrates/streptothricin-e.yaml","streptothricin E"]],"b":[["NCBITaxon%3A1928","Streptomyces rochei"],["NCBITaxon%3A885435","Streptomyces rochei subsp. volubilis"]]},{"id":"NCBITaxon:27334","l":"Penicillium expansum","na":10,"nb":2,"a":[["alkaloids/chaetoglobosin-a.yaml","chaetoglobosin A"],["alkaloids/chaetoglobosin-c.yaml","chaetoglobosin C"],["alkaloids/communesin-a.yaml","communesin A"],["alkaloids/communesin-b.yaml","communesin B"],["alkaloids/communesin-c.yaml","communesin C"],["alkaloids/communesin-d.yaml","communesin D"]],"b":[["NCBITaxon%3A27334","Penicillium expansum"],["NCBITaxon%3A1208580","Penicillium expansum NRRL 62431"]]},{"id":"NCBITaxon:455432","l":"Nocardia terpenica","na":10,"nb":2,"a":[["amino_acids_and_peptides/nocapeptin-a.yaml","nocapeptin A"],["amino_acids_and_peptides/nocathioamide-a.yaml","nocathioamide A"],["polyketides/brasilinolide-a.yaml","brasilinolide A"],["polyketides/brasilinolide-b.yaml","brasilinolide B"],["polyketides/brasilinolide-c.yaml","brasilinolide C"],["polyketides/terpenomycin.yaml","terpenomycin"]],"b":[["NCBITaxon%3A455432","Nocardia terpenica"],["NCBITaxon%3A1206738","Nocardia terpenica NBRC 100888"]]},{"id":"NCBITaxon:953739","l":"Streptomyces venezuelae ATCC 10712","na":10,"nb":2,"a":[["alkaloids/chloramphenicol.yaml","chloramphenicol"],["alkaloids/gaburedin-d.yaml","gaburedin D"],["alkaloids/watasemycin-a.yaml","watasemycin A"],["alkaloids/watasemycin-b.yaml","watasemycin B"],["amino_acids_and_peptides/gaburedin-a.yaml","gaburedin A"],["amino_acids_and_peptides/gaburedin-b.yaml","gaburedin B"]],"b":[["NCBITaxon%3A54571","Streptomyces venezuelae"],["NCBITaxon%3A953739","Streptomyces venezuelae ATCC 10712"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":2,"nb":9,"a":[["alkaloids/biotin.yaml","biotin"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]],"b":[["NCBITaxon%3A28031","Lysinibacillus fusiformis"],["NCBITaxon%3A1130819","Lysinibacillus mangiferihumi"],["NCBITaxon%3A1421","Lysinibacillus sphaericus"],["NCBITaxon%3A444177","Lysinibacillus sphaericus C3-41"],["NCBITaxon%3A1400869","Lysinibacillus sphaericus CBAM5"],["NCBITaxon%3A1354027","Lysinibacillus sphaericus KCTC 3346"]]},{"id":"NCBITaxon:1427518","l":"Xenorhabdus szentirmaii DSM 16338","na":9,"nb":2,"a":[["alkaloids/demethoxygriseoluteic-acid.yaml","demethoxygriseoluteic acid"],["alkaloids/griseoluteic-acid.yaml","griseoluteic acid"],["alkaloids/iodinin.yaml","iodinin"],["alkaloids/phenaszenketide-c.yaml","phenaszenketide C"],["alkaloids/phenaszenketide-d.yaml","phenaszenketide D"],["alkaloids/phenaszentine-a.yaml","phenaszentine A"]],"b":[["NCBITaxon%3A290112","Xenorhabdus szentirmaii"],["NCBITaxon%3A1427518","Xenorhabdus szentirmaii DSM 16338"]]},{"id":"NCBITaxon:204042","l":"Dickeya zeae","na":2,"nb":9,"a":[["fatty_acids/zeamine-ii.yaml","zeamine II"],["fatty_acids/zeamine.yaml","zeamine"]],"b":[["NCBITaxon%3A556","Dickeya chrysanthemi"],["NCBITaxon%3A204042","Dickeya zeae"],["NCBITaxon%3A1223567","Dickeya zeae CSL RW192"],["NCBITaxon%3A1306951","Dickeya zeae DZ2Q"],["NCBITaxon%3A1427366","Dickeya zeae EC1"],["NCBITaxon%3A1224153","Dickeya zeae MK19"]]},{"id":"NCBITaxon:29430","l":"Acinetobacter haemolyticus","na":2,"nb":9,"a":[["alkaloids/acinetoferrin.yaml","acinetoferrin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]],"b":[["NCBITaxon%3A29430","Acinetobacter haemolyticus"],["NCBITaxon%3A707232","Acinetobacter haemolyticus ATCC 19194"],["NCBITaxon%3A1217659","Acinetobacter haemolyticus CIP 64.3 = MTCC 9819"],["NCBITaxon%3A1217986","Acinetobacter haemolyticus NIPH 261"],["NCBITaxon%3A1221297","Acinetobacter haemolyticus TG19599"],["NCBITaxon%3A1221298","Acinetobacter haemolyticus TG19602"]]},{"id":"NCBITaxon:80866","l":"Delftia acidovorans","na":2,"nb":9,"a":[["amino_acids_and_peptides/delftibactin-a.yaml","delftibactin A"],["amino_acids_and_peptides/delftibactin-b.yaml","delftibactin B"]],"b":[["NCBITaxon%3A1872122","Acidovorax sp."],["NCBITaxon%3A80866","Delftia acidovorans"],["NCBITaxon%3A883100","Delftia acidovorans CCUG 15835"],["NCBITaxon%3A883101","Delftia acidovorans CCUG 274B"],["NCBITaxon%3A1218107","Delftia acidovorans NBRC 14950"],["NCBITaxon%3A1255679","Delftia acidovorans PCA12"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":2,"nb":8,"a":[["amino_acids_and_peptides/cupriachelin.yaml","cupriachelin"],["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"]],"b":[["NCBITaxon%3A119219","Cupriavidus metallidurans"],["NCBITaxon%3A106590","Cupriavidus necator"],["NCBITaxon%3A1304882","Cupriavidus necator A5-1"],["NCBITaxon%3A381666","Cupriavidus necator H16"],["NCBITaxon%3A53482","Cupriavidus necator H850"],["NCBITaxon%3A1042878","Cupriavidus necator N-1"]]},{"id":"NCBITaxon:326423","l":"Bacillus velezensis FZB42","na":8,"nb":2,"a":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["polyketides/bacillaene.yaml","bacillaene"],["polyketides/difficidin.yaml","difficidin"],["polyketides/macrolactin-h.yaml","macrolactin H"],["unclassified/corynebactin.yaml","corynebactin"]],"b":[["NCBITaxon%3A492670","Bacillus velezensis"],["NCBITaxon%3A326423","Bacillus velezensis FZB42"]]},{"id":"NCBITaxon:40318","l":"Streptomyces nodosus","na":8,"nb":2,"a":[["alkaloids/melanin.yaml","melanin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/ectoine.yaml","ectoine"],["amino_acids_and_peptides/siamycin-i.yaml","siamycin I"],["fatty_acids/butyrolactone.yaml","γ-butyrolactone"]],"b":[["NCBITaxon%3A40318","Streptomyces nodosus"],["NCBITaxon%3A222892","Streptomyces nodosus subsp. asukaensis"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":8,"nb":2,"a":[["amino_acids_and_peptides/ferrichrome-2.yaml","ferrichrome"],["polyketides/2-acetyl-1-3-6-8-tetrahydroxynaphthalene.yaml","2-acetyl-1,3,6,8-tetrahydroxynaphthalene"],["polyketides/kojic-acid.yaml","kojic acid"],["terpenoids/aphidicolin.yaml","aphidicolin"],["unclassified/2-oxocyclopiazonic-acid.yaml","2-oxocyclopiazonic acid"],["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]],"b":[["NCBITaxon%3A5062","Aspergillus oryzae"],["NCBITaxon%3A510516","Aspergillus oryzae RIB40"]]},{"id":"NCBITaxon:531310","l":"Marinactinospora thermotolerans","na":8,"nb":2,"a":[["alkaloids/marinacarboline-a.yaml","marinacarboline A"],["alkaloids/marinacarboline-b.yaml","marinacarboline B"],["alkaloids/marinacarboline-c.yaml","marinacarboline C"],["alkaloids/marinacarboline-d.yaml","marinacarboline D"],["alkaloids/methylpendolmycin.yaml","methylpendolmycin"],["alkaloids/pendolmycin.yaml","pendolmycin"]],"b":[["NCBITaxon%3A531310","Marinactinospora thermotolerans"],["NCBITaxon%3A1122192","Marinactinospora thermotolerans DSM 45154"]]},{"id":"NCBITaxon:67348","l":"Streptomyces prunicolor","na":8,"nb":2,"a":[["alkaloids/myxofacycline-e.yaml","myxofacycline E"],["alkaloids/myxofacycline-f.yaml","myxofacycline F"],["alkaloids/myxofacycline-g.yaml","myxofacycline G"],["amino_acids_and_peptides/prunipeptin.yaml","prunipeptin"],["fatty_acids/myxofacycline-a.yaml","myxofacycline A"],["fatty_acids/myxofacycline-b.yaml","myxofacycline B"]],"b":[["NCBITaxon%3A67348","Streptomyces prunicolor"],["NCBITaxon%3A1312234","Streptomyces prunicolor NBRC 13075"]]},{"id":"NCBITaxon:356302","l":"Chitinimonas koreensis","na":7,"nb":2,"a":[["amino_acids_and_peptides/chitinimide-a.yaml","chitinimide A"],["amino_acids_and_peptides/chitinimide-b.yaml","chitinimide B"],["amino_acids_and_peptides/chitinimide-c.yaml","chitinimide C"],["amino_acids_and_peptides/chitinimide-d.yaml","chitinimide D"],["amino_acids_and_peptides/chitinimide-e.yaml","chitinimide E"],["amino_acids_and_peptides/chitinimide-f.yaml","chitinimide F"]],"b":[["NCBITaxon%3A356302","Chitinimonas koreensis"],["NCBITaxon%3A1121278","Chitinimonas koreensis DSM 17726"]]},{"id":"NCBITaxon:405948","l":"Saccharopolyspora erythraea NRRL 2338","na":7,"nb":2,"a":[["amino_acids_and_peptides/erythrochelin.yaml","erythrochelin"],["polyketides/erythromycin-a.yaml","erythromycin A"],["polyketides/erythromycin-b.yaml","erythromycin B"],["polyketides/erythromycin-c.yaml","erythromycin C"],["polyketides/erythromycin-d.yaml","erythromycin D"],["polyketides/flaviolin.yaml","flaviolin"]],"b":[["NCBITaxon%3A1836","Saccharopolyspora erythraea"],["NCBITaxon%3A405948","Saccharopolyspora erythraea NRRL 2338"]]},{"id":"NCBITaxon:45398","l":"Streptomyces griseoviridis","na":7,"nb":2,"a":[["alkaloids/prodigiosin-2.yaml","prodigiosin"],["alkaloids/prodigiosin-r1.yaml","Prodigiosin R1"],["alkaloids/prodigiosin-r2.yaml","Prodigiosin R2"],["alkaloids/prodigiosin-r3.yaml","Prodigiosin R3"],["alkaloids/roseophilin.yaml","Roseophilin"],["amino_acids_and_peptides/griseoviridin.yaml","griseoviridin"]],"b":[["NCBITaxon%3A66885","Streptomyces daghestanicus"],["NCBITaxon%3A45398","Streptomyces griseoviridis"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":2,"nb":7,"a":[["amino_acids_and_peptides/vibrioferrin-2.yaml","vibrioferrin"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]],"b":[["NCBITaxon%3A663","Vibrio alginolyticus"],["NCBITaxon%3A314288","Vibrio alginolyticus 12G01"],["NCBITaxon%3A674977","Vibrio alginolyticus 40B"],["NCBITaxon%3A664","Vibrio alginolyticus chemovar iophagus"],["NCBITaxon%3A1219076","Vibrio alginolyticus NBRC 15630 = ATCC 17749"],["NCBITaxon%3A669","Vibrio harveyi"]]},{"id":"NCBITaxon:697284","l":"Paenibacillus larvae subsp. larvae DSM 25430","na":7,"nb":2,"a":[["alkaloids/paenilamicin-a2.yaml","paenilamicin A2"],["alkaloids/paenilamicin-b1.yaml","paenilamicin B1"],["alkaloids/paenilamicin-b2.yaml","paenilamicin B2"],["alkaloids/paenilamicin.yaml","paenilamicin"],["amino_acids_and_peptides/paenilarvin-a.yaml","paenilarvin A"],["amino_acids_and_peptides/paenilarvin-b.yaml","paenilarvin B"]],"b":[["NCBITaxon%3A1464","Paenibacillus larvae"],["NCBITaxon%3A697284","Paenibacillus larvae subsp. larvae DSM 25430"]]},{"id":"NCBITaxon:1445510","l":"Gynuella sunshinyii YC6258","na":6,"nb":2,"a":[["polyketides/lacunalide-a.yaml","lacunalide A"],["polyketides/lacunalide-b.yaml","lacunalide B"],["polyketides/lobatamide-a.yaml","lobatamide A"],["polyketides/tartrolon-d-2.yaml","tartrolon D"],["polyketides/tartrolon-f.yaml","tartrolon F"],["polyketides/tartrolon-g.yaml","tartrolon G"]],"b":[["NCBITaxon%3A1445505","Gynuella sunshinyii"],["NCBITaxon%3A1445510","Gynuella sunshinyii YC6258"]]},{"id":"NCBITaxon:1867","l":"Actinoplanes teichomyceticus","na":6,"nb":2,"a":[["amino_acids_and_peptides/teicoplanin-a2-1.yaml","Teicoplanin A2-1"],["amino_acids_and_peptides/teicoplanin-a2-2.yaml","teicoplanin A2-2"],["amino_acids_and_peptides/teicoplanin-a2-3.yaml","teicoplanin A2-3"],["amino_acids_and_peptides/teicoplanin-a2-4.yaml","teicoplanin A2-4"],["amino_acids_and_peptides/teicoplanin-a2-5.yaml","Teicoplanin A2-5"],["amino_acids_and_peptides/teicoplanin.yaml","teicoplanin"]],"b":[["NCBITaxon%3A1867","Actinoplanes teichomyceticus"],["NCBITaxon%3A457423","Actinoplanes teichomyceticus ATCC 31121"]]},{"id":"NCBITaxon:202862","l":"Streptomyces drozdowiczii","na":6,"nb":2,"a":[["unclassified/marformycin-a.yaml","marformycin A"],["unclassified/marformycin-b.yaml","marformycin B"],["unclassified/marformycin-c.yaml","marformycin C"],["unclassified/marformycin-d.yaml","marformycin D"],["unclassified/marformycin-e.yaml","marformycin E"],["unclassified/marformycin-f.yaml","marformycin F"]],"b":[["NCBITaxon%3A202862","Streptomyces drozdowiczii"],["NCBITaxon%3A1302724","Streptomyces drozdowiczii JCM 13580"]]},{"id":"NCBITaxon:278992","l":"Streptomyces ambofaciens ATCC 23877","na":6,"nb":2,"a":[["alkaloids/congocidine.yaml","congocidine"],["polyketides/spiramycin.yaml","spiramycin"],["polyketides/stambomycin-a.yaml","stambomycin A"],["polyketides/stambomycin-b.yaml","stambomycin B"],["polyketides/stambomycin-c.yaml","stambomycin C"],["polyketides/stambomycin-d.yaml","stambomycin D"]],"b":[["NCBITaxon%3A1889","Streptomyces ambofaciens"],["NCBITaxon%3A278992","Streptomyces ambofaciens ATCC 23877"]]},{"id":"NCBITaxon:44250","l":"Paenibacillus alvei","na":2,"nb":6,"a":[["amino_acids_and_peptides/colistin-a.yaml","colistin A"],["amino_acids_and_peptides/colistin-b.yaml","colistin B"]],"b":[["NCBITaxon%3A44250","Paenibacillus alvei"],["NCBITaxon%3A1117109","Paenibacillus alvei A6-6i-x"],["NCBITaxon%3A1206781","Paenibacillus alvei DSM 29"],["NCBITaxon%3A707255","Paenibacillus alvei NAS6G-6"],["NCBITaxon%3A1117108","Paenibacillus alvei TS-15"],["NCBITaxon%3A49283","Paenibacillus thiaminolyticus"]]},{"id":"NCBITaxon:47763","l":"Streptomyces lydicus","na":6,"nb":2,"a":[["amino_acids_and_peptides/ectoine.yaml","ectoine"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"],["polyketides/erythromycin-a.yaml","erythromycin A"],["polyketides/natamycin.yaml","natamycin"],["polyketides/streptolydigin.yaml","streptolydigin"],["unclassified/lydicamycin.yaml","lydicamycin"]],"b":[["NCBITaxon%3A47763","Streptomyces lydicus"],["NCBITaxon%3A1382545","Streptomyces lydicus A01"]]},{"id":"NCBITaxon:882378","l":"Mycetohabitans rhizoxinica HKI 454","na":6,"nb":2,"a":[["amino_acids_and_peptides/endopyrrole-b.yaml","endopyrrole B"],["amino_acids_and_peptides/holrhizin-a.yaml","holrhizin A"],["amino_acids_and_peptides/holrhizin-b.yaml","holrhizin B"],["amino_acids_and_peptides/holrhizin-c.yaml","holrhizin C"],["amino_acids_and_peptides/holrhizin-d.yaml","holrhizin D"],["unclassified/endopyrrole-a.yaml","endopyrrole A"]],"b":[["NCBITaxon%3A412963","Mycetohabitans rhizoxinica"],["NCBITaxon%3A882378","Mycetohabitans rhizoxinica HKI 454"]]},{"id":"NCBITaxon:1223523","l":"Streptomyces mobaraensis NBRC 13819 = DSM 40847","na":5,"nb":2,"a":[["amino_acids_and_peptides/bleomycin-a2.yaml","bleomycin A2"],["amino_acids_and_peptides/bleomycin-b2.yaml","bleomycin B2"],["amino_acids_and_peptides/cyclothiazomycin-b1.yaml","cyclothiazomycin b1"],["amino_acids_and_peptides/ketomemicin-b3.yaml","ketomemicin B3"],["amino_acids_and_peptides/ketomemicin-b4.yaml","ketomemicin B4"]],"b":[["NCBITaxon%3A35621","Streptomyces mobaraensis"],["NCBITaxon%3A1223523","Streptomyces mobaraensis NBRC 13819 = DSM 40847"]]},{"id":"NCBITaxon:1445505","l":"Gynuella sunshinyii","na":5,"nb":2,"a":[["polyketides/lacunalide-a.yaml","lacunalide A"],["polyketides/lacunalide-b.yaml","lacunalide B"],["polyketides/lobatamide-a.yaml","lobatamide A"],["polyketides/tartrolon-f.yaml","tartrolon F"],["polyketides/tartrolon-g.yaml","tartrolon G"]],"b":[["NCBITaxon%3A1445505","Gynuella sunshinyii"],["NCBITaxon%3A1445510","Gynuella sunshinyii YC6258"]]},{"id":"NCBITaxon:224308","l":"Bacillus subtilis subsp. subtilis str. 168","na":2,"nb":5,"a":[["unclassified/corynebactin.yaml","corynebactin"],["unclassified/pulcherriminic-acid.yaml","pulcherriminic acid"]],"b":[["NCBITaxon%3A1423","Bacillus subtilis"],["NCBITaxon%3A135461","Bacillus subtilis subsp. subtilis"],["NCBITaxon%3A224308","Bacillus subtilis subsp. subtilis str. 168"],["NCBITaxon%3A536088","Bacillus subtilis subsp. subtilis str. L170"],["NCBITaxon%3A536089","Bacillus subtilis subsp. subtilis str. N170"]]},{"id":"NCBITaxon:28044","l":"Streptomyces longisporoflavus","na":5,"nb":2,"a":[["alkaloids/k-252a.yaml","K-252a"],["alkaloids/staurosporine-2.yaml","staurosporine"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/cinnamycin.yaml","cinnamycin"],["polyketides/tetronasin.yaml","tetronasin"]],"b":[["NCBITaxon%3A28044","Streptomyces longisporoflavus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:285562","l":"Streptomyces coelicoflavus","na":5,"nb":2,"a":[["carbohydrates/acarviostatin-i03.yaml","acarviostatin I03"],["carbohydrates/acarviostatin-ii03.yaml","acarviostatin II03"],["carbohydrates/acarviostatin-iii03.yaml","acarviostatin III03"],["carbohydrates/acarviostatin-iv03.yaml","acarviostatin IV03"],["polyketides/borrelidin.yaml","borrelidin"]],"b":[["NCBITaxon%3A285562","Streptomyces coelicoflavus"],["NCBITaxon%3A1120227","Streptomyces coelicoflavus ZG0656"]]},{"id":"NCBITaxon:29303","l":"Streptantibioticus cattleyicolor","na":5,"nb":2,"a":[["amino_acids_and_peptides/cattlecin.yaml","cattlecin"],["amino_acids_and_peptides/clavulanic-acid.yaml","clavulanic acid"],["amino_acids_and_peptides/ethynylserine.yaml","β-ethynylserine"],["amino_acids_and_peptides/thienamycin.yaml","thienamycin"],["terpenoids/cattleyene.yaml","cattleyene"]],"b":[["NCBITaxon%3A29303","Streptantibioticus cattleyicolor"],["NCBITaxon%3A1003195","Streptantibioticus cattleyicolor NRRL 8057 = DSM 46488"]]},{"id":"NCBITaxon:31959","l":"Amycolatopsis lurida","na":5,"nb":2,"a":[["amino_acids_and_peptides/desmethyl-ristocetin-a.yaml","Desmethyl ristocetin A"],["amino_acids_and_peptides/desmethyl-ristocetin-b.yaml","Desmethyl ristocetin B"],["amino_acids_and_peptides/ristocetin-a.yaml","Ristocetin A"],["amino_acids_and_peptides/ristocetin-b.yaml","Ristocetin B"],["amino_acids_and_peptides/ristomycin-a.yaml","ristomycin A"]],"b":[["NCBITaxon%3A31959","Amycolatopsis lurida"],["NCBITaxon%3A1460371","Amycolatopsis lurida NRRL 2430"]]},{"id":"NCBITaxon:42235","l":"Streptomyces bottropensis","na":5,"nb":2,"a":[["amino_acids_and_peptides/bottromycin-a2-2.yaml","bottromycin A2"],["polyketides/mensacaricin.yaml","mensacaricin"],["polyketides/rishirilide-a.yaml","rishirilide A"],["polyketides/trioxacarcin-a.yaml","trioxacarcin A"],["unclassified/rishirilide-b.yaml","rishirilide B"]],"b":[["NCBITaxon%3A42235","Streptomyces bottropensis"],["NCBITaxon%3A1054862","Streptomyces bottropensis ATCC 25435"]]},{"id":"NCBITaxon:43","l":"Cystobacter fuscus","na":5,"nb":2,"a":[["amino_acids_and_peptides/cystomanamide-a.yaml","cystomanamide A"],["amino_acids_and_peptides/cystomanamide-b.yaml","cystomanamide B"],["amino_acids_and_peptides/cystomanamide-c.yaml","cystomanamide C"],["amino_acids_and_peptides/cystomanamide-d.yaml","cystomanamide D"],["unclassified/cystothiazole-a.yaml","cystothiazole A"]],"b":[["NCBITaxon%3A43","Cystobacter fuscus"],["NCBITaxon%3A1242864","Cystobacter fuscus DSM 2262"]]},{"id":"NCBITaxon:43658","l":"Pseudoalteromonas rubra","na":5,"nb":2,"a":[["alkaloids/prodigiosin.yaml","prodigiosin"],["polyketides/nonyltyrazolone.yaml","nonyltyrazolone"],["polyketides/undecyltyrazolone.yaml","undecyltyrazolone"],["shikimates_and_phenylpropanoids/z-6-undecenyltyrazolone.yaml","(Z)-ω-6-undecenyltyrazolone"],["unclassified/heptyltyrazolone.yaml","heptyltyrazolone"]],"b":[["NCBITaxon%3A43658","Pseudoalteromonas rubra"],["NCBITaxon%3A1117318","Pseudoalteromonas rubra DSM 6842"]]},{"id":"NCBITaxon:479432","l":"Streptosporangium roseum DSM 43021","na":5,"nb":2,"a":[["polyketides/benaphthamycin.yaml","benaphthamycin"],["polyketides/ws-79089a.yaml","WS 79089A"],["polyketides/ws-79089b.yaml","WS 79089B"],["polyketides/ws-79089c.yaml","WS 79089C"],["polyketides/ws-79089d.yaml","WS 79089D"]],"b":[["NCBITaxon%3A2001","Streptosporangium roseum"],["NCBITaxon%3A479432","Streptosporangium roseum DSM 43021"]]},{"id":"NCBITaxon:66854","l":"Saccharothrix mutabilis subsp. capreolus","na":5,"nb":2,"a":[["amino_acids_and_peptides/capreomycin-ia.yaml","capreomycin IA"],["amino_acids_and_peptides/capreomycin-ib.yaml","capreomycin IB"],["amino_acids_and_peptides/capreomycin-iia.yaml","capreomycin IIA"],["amino_acids_and_peptides/capreomycin-iib.yaml","capreomycin IIB"],["unclassified/a-201a.yaml","A-201A"]],"b":[["NCBITaxon%3A33921","Saccharothrix mutabilis"],["NCBITaxon%3A66854","Saccharothrix mutabilis subsp. capreolus"]]},{"id":"NCBITaxon:67255","l":"Streptomyces achromogenes","na":2,"nb":5,"a":[["alkaloids/tomaymycin.yaml","tomaymycin"],["carbohydrates/streptozotocin.yaml","streptozotocin"]],"b":[["NCBITaxon%3A67255","Streptomyces achromogenes"],["NCBITaxon%3A67256","Streptomyces achromogenes subsp. achromogenes"],["NCBITaxon%3A285532","Streptomyces achromogenes subsp. streptozoticus"],["NCBITaxon%3A285497","Streptomyces achromogenes subsp. tomaymyceticus"],["NCBITaxon%3A285531","Streptomyces rubradiris"]]},{"id":"NCBITaxon:67373","l":"Streptomyces varsoviensis","na":5,"nb":2,"a":[["amino_acids_and_peptides/thiovarsolin-a.yaml","thiovarsolin A"],["amino_acids_and_peptides/thiovarsolin-b.yaml","thiovarsolin B"],["amino_acids_and_peptides/thiovarsolin-c.yaml","thiovarsolin C"],["amino_acids_and_peptides/thiovarsolin-d.yaml","thiovarsolin D"],["polyketides/jbir-100.yaml","JBIR-100"]],"b":[["NCBITaxon%3A68230","Streptomyces longispororuber"],["NCBITaxon%3A67373","Streptomyces varsoviensis"]]},{"id":"NCBITaxon:1224742","l":"Vibrio campbellii CAIM 519 = NBRC 15631 = ATCC 25920","na":4,"nb":2,"a":[["polyketides/amphi-enterobactin-1.yaml","Amphi-enterobactin 1"],["polyketides/amphi-enterobactin-2.yaml","amphi-enterobactin 2"],["polyketides/amphi-enterobactin-3.yaml","amphi-enterobactin 3"],["polyketides/amphi-enterobactin-4.yaml","amphi-enterobactin 4"]],"b":[["NCBITaxon%3A680","Vibrio campbellii"],["NCBITaxon%3A1224742","Vibrio campbellii CAIM 519 = NBRC 15631 = ATCC 25920"]]},{"id":"NCBITaxon:132919","l":"Rhodococcus jostii","na":2,"nb":4,"a":[["amino_acids_and_peptides/lariatin.yaml","lariatin"],["unclassified/rhodochelin.yaml","rhodochelin"]],"b":[["NCBITaxon%3A1850366","Paenibacillus rhizophilus"],["NCBITaxon%3A132919","Rhodococcus jostii"],["NCBITaxon%3A1219017","Rhodococcus jostii NBRC 16295"],["NCBITaxon%3A101510","Rhodococcus jostii RHA1"]]},{"id":"NCBITaxon:136926","l":"Micromonospora megalomicea subsp. nigra","na":4,"nb":2,"a":[["polyketides/megalomicin-a.yaml","megalomicin A"],["polyketides/megalomicin-b.yaml","megalomicin B"],["polyketides/megalomicin-c1.yaml","megalomicin C1"],["polyketides/megalomicin-c2.yaml","megalomicin C2"]],"b":[["NCBITaxon%3A136926","Micromonospora megalomicea subsp. nigra"],["NCBITaxon%3A1876","Micromonospora sp."]]},{"id":"NCBITaxon:1458930","l":"Okeania hirsuta","na":2,"nb":4,"a":[["amino_acids_and_peptides/malyngamide-c-acetate.yaml","malyngamide C acetate"],["amino_acids_and_peptides/malyngamide-i.yaml","malyngamide I"]],"b":[["NCBITaxon%3A1458930","Okeania hirsuta"],["NCBITaxon%3A1387524","Okeania hirsuta NAC11-70"],["NCBITaxon%3A1387527","Okeania hirsuta PAB-10-Feb-10-1"],["NCBITaxon%3A1387528","Okeania hirsuta PAB-21-JUN-10-2"]]},{"id":"NCBITaxon:1889","l":"Streptomyces ambofaciens","na":4,"nb":2,"a":[["alkaloids/congocidine.yaml","congocidine"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["polyketides/spiramycin.yaml","spiramycin"],["polyketides/stambomycin-a.yaml","stambomycin A"]],"b":[["NCBITaxon%3A1889","Streptomyces ambofaciens"],["NCBITaxon%3A278992","Streptomyces ambofaciens ATCC 23877"]]},{"id":"NCBITaxon:1924","l":"Streptomyces purpurascens","na":2,"nb":4,"a":[["polyketides/concanamycin-a.yaml","concanamycin A"],["polyketides/rhodomycin.yaml","rhodomycin"]],"b":[["NCBITaxon%3A66865","Streptomyces afghaniensis"],["NCBITaxon%3A1924","Streptomyces purpurascens"],["NCBITaxon%3A67360","Streptomyces roseoviolaceus"],["NCBITaxon%3A1936","Streptomyces violaceus"]]},{"id":"NCBITaxon:193462","l":"Streptomyces niveus","na":4,"nb":2,"a":[["alkaloids/phenaziterpene-a.yaml","phenaziterpene A"],["carbohydrates/kanamycin-a.yaml","kanamycin A"],["shikimates_and_phenylpropanoids/cathomycin.yaml","cathomycin"],["unclassified/be-14106.yaml","BE-14106"]],"b":[["NCBITaxon%3A193462","Streptomyces niveus"],["NCBITaxon%3A1352941","Streptomyces niveus NCIMB 11891"]]},{"id":"NCBITaxon:196914","l":"Actinoplanes friuliensis","na":4,"nb":2,"a":[["amino_acids_and_peptides/friulimicin-a.yaml","friulimicin A"],["amino_acids_and_peptides/friulimicin-b.yaml","friulimicin B"],["unclassified/friulimicin-c.yaml","friulimicin C"],["unclassified/friulimicin-d.yaml","friulimicin D"]],"b":[["NCBITaxon%3A196914","Actinoplanes friuliensis"],["NCBITaxon%3A1246995","Actinoplanes friuliensis DSM 7358"]]},{"id":"NCBITaxon:227882","l":"Streptomyces avermitilis MA-4680 = NBRC 14893","na":4,"nb":2,"a":[["amino_acids_and_peptides/edha.yaml","EDHA"],["polyketides/filipin-iii.yaml","filipin III"],["terpenoids/avermitilol.yaml","avermitilol"],["terpenoids/pentalenolactone.yaml","pentalenolactone"]],"b":[["NCBITaxon%3A33903","Streptomyces avermitilis"],["NCBITaxon%3A227882","Streptomyces avermitilis MA-4680 = NBRC 14893"]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":2,"nb":4,"a":[["carbohydrates/legionaminic-acid.yaml","legionaminic acid"],["carbohydrates/pseudaminate.yaml","pseudaminate"]],"b":[["NCBITaxon%3A28112","Tannerella forsythia"],["NCBITaxon%3A1307832","Tannerella forsythia 3313"],["NCBITaxon%3A203275","Tannerella forsythia 92A2"],["NCBITaxon%3A1307833","Tannerella forsythia KS16"]]},{"id":"NCBITaxon:392500","l":"Shewanella woodyi ATCC 51908","na":4,"nb":2,"a":[["fatty_acids/woodybactin-d.yaml","woodybactin D"],["unclassified/woodybactin-a.yaml","woodybactin A"],["unclassified/woodybactin-b.yaml","woodybactin B"],["unclassified/woodybactin-c.yaml","woodybactin C"]],"b":[["NCBITaxon%3A60961","Shewanella woodyi"],["NCBITaxon%3A392500","Shewanella woodyi ATCC 51908"]]},{"id":"NCBITaxon:412963","l":"Mycetohabitans rhizoxinica","na":4,"nb":2,"a":[["amino_acids_and_peptides/endopyrrole-b.yaml","endopyrrole B"],["amino_acids_and_peptides/holrhizin-a.yaml","holrhizin A"],["unclassified/endopyrrole-a.yaml","endopyrrole A"],["unclassified/rhizoxin-a.yaml","rhizoxin A"]],"b":[["NCBITaxon%3A412963","Mycetohabitans rhizoxinica"],["NCBITaxon%3A882378","Mycetohabitans rhizoxinica HKI 454"]]},{"id":"NCBITaxon:51201","l":"Streptomyces griseocarneus","na":2,"nb":4,"a":[["alkaloids/pimprinine.yaml","pimprinine"],["carbohydrates/5-hydroxystreptomycin.yaml","5'-hydroxystreptomycin"]],"b":[["NCBITaxon%3A173770","Streptomyces alboverticillatus"],["NCBITaxon%3A51201","Streptomyces griseocarneus"],["NCBITaxon%3A156648","Streptomyces septatus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:5581","l":"Beauveria","na":2,"nb":4,"a":[["unclassified/beauveriolide-i.yaml","beauveriolide I"],["unclassified/beauveriolide-iii.yaml","beauveriolide III"]],"b":[["NCBITaxon%3A176275","Beauveria bassiana"],["NCBITaxon%3A118266","Beauveria brongniartii"],["NCBITaxon%3A371061","Beauveria malawiensis"],["NCBITaxon%3A1481906","Beauveria rudraprayagi"]]},{"id":"NCBITaxon:60961","l":"Shewanella woodyi","na":4,"nb":2,"a":[["fatty_acids/woodybactin-d.yaml","woodybactin D"],["unclassified/woodybactin-a.yaml","woodybactin A"],["unclassified/woodybactin-b.yaml","woodybactin B"],["unclassified/woodybactin-c.yaml","woodybactin C"]],"b":[["NCBITaxon%3A60961","Shewanella woodyi"],["NCBITaxon%3A392500","Shewanella woodyi ATCC 51908"]]},{"id":"NCBITaxon:67257","l":"Streptomyces albus subsp. albus","na":2,"nb":4,"a":[["alkaloids/porothramycin-a.yaml","porothramycin A"],["alkaloids/tambjamine-be-18591.yaml","tambjamine BE-18591"]],"b":[["NCBITaxon%3A1888","Streptomyces albus"],["NCBITaxon%3A67257","Streptomyces albus subsp. albus"],["NCBITaxon%3A1081613","Streptomyces albus subsp. albus DSM 41398"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:67274","l":"Streptomyces argenteolus","na":2,"nb":4,"a":[["amino_acids_and_peptides/carbapenem-mm4550.yaml","carbapenem MM4550"],["terpenoids/ks-505a.yaml","KS-505a"]],"b":[["NCBITaxon%3A67274","Streptomyces argenteolus"],["NCBITaxon%3A285516","Streptomyces argenteolus subsp. toyonakensis"],["NCBITaxon%3A1911","Streptomyces griseus"],["NCBITaxon%3A67263","Streptomyces griseus subsp. griseus"]]},{"id":"NCBITaxon:68174","l":"Streptomyces anthocyanicus","na":4,"nb":2,"a":[["polyketides/hatomarubigin-a.yaml","hatomarubigin A"],["polyketides/hatomarubigin-b.yaml","hatomarubigin B"],["polyketides/hatomarubigin-c.yaml","hatomarubigin C"],["polyketides/hatomarubigin-d.yaml","hatomarubigin D"]],"b":[["NCBITaxon%3A68174","Streptomyces anthocyanicus"],["NCBITaxon%3A1935","Streptomyces violaceoruber"]]},{"id":"NCBITaxon:68214","l":"Streptomyces griseochromogenes","na":4,"nb":2,"a":[["carbohydrates/blasticidin-s.yaml","blasticidin S"],["carbohydrates/streptothricin-f.yaml","streptothricin F"],["polyketides/tautomycetin-2.yaml","tautomycetin"],["polyketides/tautomycetin.yaml","tautomycetin"]],"b":[["NCBITaxon%3A68214","Streptomyces griseochromogenes"],["NCBITaxon%3A285477","Streptomyces griseochromogenes subsp. suitaensis"]]},{"id":"NCBITaxon:703612","l":"Bacillus spizizenii ATCC 6633 = JCM 2499","na":4,"nb":2,"a":[["amino_acids_and_peptides/mycosubtilin.yaml","mycosubtilin"],["amino_acids_and_peptides/rhizocticin-a.yaml","rhizocticin A"],["amino_acids_and_peptides/subtilin.yaml","subtilin"],["amino_acids_and_peptides/subtilosin-a.yaml","subtilosin A"]],"b":[["NCBITaxon%3A96241","Bacillus spizizenii"],["NCBITaxon%3A703612","Bacillus spizizenii ATCC 6633 = JCM 2499"]]},{"id":"NCBITaxon:76728","l":"Wenjunlia vitaminophila","na":4,"nb":2,"a":[["alkaloids/pyrrolomycin-a.yaml","pyrrolomycin A"],["alkaloids/pyrrolomycin-b.yaml","pyrrolomycin B"],["alkaloids/pyrrolomycin-c.yaml","pyrrolomycin C"],["alkaloids/pyrrolomycin-d.yaml","pyrrolomycin D"]],"b":[["NCBITaxon%3A76728","Wenjunlia vitaminophila"],["NCBITaxon%3A1123322","Wenjunlia vitaminophila DSM 41686"]]},{"id":"NCBITaxon:1003195","l":"Streptantibioticus cattleyicolor NRRL 8057 = DSM 46488","na":3,"nb":2,"a":[["amino_acids_and_peptides/cattlecin.yaml","cattlecin"],["amino_acids_and_peptides/ethynylserine.yaml","β-ethynylserine"],["terpenoids/cattleyene.yaml","cattleyene"]],"b":[["NCBITaxon%3A29303","Streptantibioticus cattleyicolor"],["NCBITaxon%3A1003195","Streptantibioticus cattleyicolor NRRL 8057 = DSM 46488"]]},{"id":"NCBITaxon:103232","l":"Streptomyces ipomoeae","na":3,"nb":2,"a":[["amino_acids_and_peptides/thaxtomin-c.yaml","thaxtomin C"],["unclassified/thaxtomin-a.yaml","thaxtomin A"],["unclassified/thaxtomin-b.yaml","thaxtomin B"]],"b":[["NCBITaxon%3A103232","Streptomyces ipomoeae"],["NCBITaxon%3A698759","Streptomyces ipomoeae 91-03"]]},{"id":"NCBITaxon:103721","l":"Actinosynnema pretiosum subsp. pretiosum","na":3,"nb":2,"a":[["polyketides/ansamitocin-p3.yaml","ansamitocin P3"],["polyketides/macbecin-ii.yaml","macbecin II"],["polyketides/macbecin.yaml","macbecin"]],"b":[["NCBITaxon%3A42197","Actinosynnema pretiosum"],["NCBITaxon%3A103721","Actinosynnema pretiosum subsp. pretiosum"]]},{"id":"NCBITaxon:1120925","l":"Acinetobacter bouvetii DSM 14964 = CIP 107468","na":3,"nb":2,"a":[["alkaloids/butanochelin.yaml","butanochelin"],["alkaloids/pentanochelin.yaml","pentanochelin"],["alkaloids/propanochelin.yaml","propanochelin"]],"b":[["NCBITaxon%3A202951","Acinetobacter bouvetii"],["NCBITaxon%3A1120925","Acinetobacter bouvetii DSM 14964 = CIP 107468"]]},{"id":"NCBITaxon:115647","l":"Streptomyces ansochromogenes","na":2,"nb":3,"a":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"],["polyketides/oviedomycin.yaml","oviedomycin"]],"b":[["NCBITaxon%3A115647","Streptomyces ansochromogenes"],["NCBITaxon%3A285459","Streptomyces ansochromogenes subsp. ansochromogenes"],["NCBITaxon%3A2306568","Streptomyces ansochromogenes subsp. pallens"]]},{"id":"NCBITaxon:146923","l":"Streptomyces parvulus","na":3,"nb":2,"a":[["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["polyketides/borrelidin.yaml","borrelidin"]],"b":[["NCBITaxon%3A146923","Streptomyces parvulus"],["NCBITaxon%3A515263","Streptomyces parvulus subsp. citrinus"]]},{"id":"NCBITaxon:158327","l":"Hahella chejuensis","na":3,"nb":2,"a":[["alkaloids/prodigiosin-2.yaml","prodigiosin"],["terpenoids/chejuenolide-a.yaml","chejuenolide A"],["terpenoids/chejuenolide-b.yaml","chejuenolide B"]],"b":[["NCBITaxon%3A158327","Hahella chejuensis"],["NCBITaxon%3A349521","Hahella chejuensis KCTC 2396"]]},{"id":"NCBITaxon:1703","l":"Brevibacterium linens","na":2,"nb":3,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"],["terpenoids/isorenieratene.yaml","isorenieratene"]],"b":[["NCBITaxon%3A273384","Brevibacterium aurantiacum"],["NCBITaxon%3A1703","Brevibacterium linens"],["NCBITaxon%3A1255617","Brevibacterium linens ATCC 9172"]]},{"id":"NCBITaxon:171437","l":"Tistrella mobilis","na":3,"nb":2,"a":[["unclassified/didemnin-x.yaml","didemnin X"],["unclassified/didemnin-y.yaml","didemnin Y"],["unclassified/nordidemnin-b.yaml","nordidemnin B"]],"b":[["NCBITaxon%3A171437","Tistrella mobilis"],["NCBITaxon%3A1110502","Tistrella mobilis KA081020-065"]]},{"id":"NCBITaxon:176299","l":"Agrobacterium fabrum str. C58","na":2,"nb":3,"a":[["amino_acids_and_peptides/fabrubactin-a.yaml","fabrubactin A"],["amino_acids_and_peptides/fabrubactin-b.yaml","fabrubactin B"]],"b":[["NCBITaxon%3A1176649","Agrobacterium fabrum"],["NCBITaxon%3A176299","Agrobacterium fabrum str. C58"],["NCBITaxon%3A362","Agrobacterium radiobacter"]]},{"id":"NCBITaxon:184914","l":"Corallococcus coralloides","na":3,"nb":2,"a":[["amino_acids_and_peptides/myxovalargin-a.yaml","myxovalargin A"],["polyketides/corallopyronin.yaml","corallopyronin"],["polyketides/phenalamide.yaml","phenalamide"]],"b":[["NCBITaxon%3A184914","Corallococcus coralloides"],["NCBITaxon%3A1144275","Corallococcus coralloides DSM 2259"]]},{"id":"NCBITaxon:1857892","l":"Streptomyces sp. MP131-18","na":3,"nb":2,"a":[["polyketides/lagunapyrone-a.yaml","lagunapyrone A"],["polyketides/lagunapyrone-b.yaml","lagunapyrone B"],["polyketides/lagunapyrone-c.yaml","lagunapyrone C"]],"b":[["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A1857892","Streptomyces sp. MP131-18"]]},{"id":"NCBITaxon:1904","l":"Streptomyces cyaneus","na":3,"nb":2,"a":[["carbohydrates/curamycin.yaml","curamycin"],["polyketides/cardol.yaml","cardol"],["polyketides/cosmomycin-d.yaml","cosmomycin D"]],"b":[["NCBITaxon%3A146537","Streptomyces azureus"],["NCBITaxon%3A1904","Streptomyces cyaneus"]]},{"id":"NCBITaxon:202951","l":"Acinetobacter bouvetii","na":3,"nb":2,"a":[["alkaloids/butanochelin.yaml","butanochelin"],["alkaloids/pentanochelin.yaml","pentanochelin"],["alkaloids/propanochelin.yaml","propanochelin"]],"b":[["NCBITaxon%3A202951","Acinetobacter bouvetii"],["NCBITaxon%3A1120925","Acinetobacter bouvetii DSM 14964 = CIP 107468"]]},{"id":"NCBITaxon:210996","l":"Hapalosiphon delicatulus","na":2,"nb":3,"a":[["alkaloids/ambiguine-a-isonitrile.yaml","ambiguine A isonitrile"],["alkaloids/ambiguine-b-isonitrile.yaml","ambiguine B isonitrile"]],"b":[["NCBITaxon%3A1538296","Hapalosiphon cf. delicatulus HCyG"],["NCBITaxon%3A210996","Hapalosiphon delicatulus"],["NCBITaxon%3A210997","Hapalosiphon delicatulus IAM M-266"]]},{"id":"NCBITaxon:216591","l":"Burkholderia cenocepacia J2315","na":3,"nb":2,"a":[["unclassified/ornibactin-c4.yaml","ornibactin C4"],["unclassified/ornibactin-c6.yaml","ornibactin C6"],["unclassified/ornibactin-c8.yaml","ornibactin C8"]],"b":[["NCBITaxon%3A95486","Burkholderia cenocepacia"],["NCBITaxon%3A216591","Burkholderia cenocepacia J2315"]]},{"id":"NCBITaxon:29309","l":"Streptomyces verticillus","na":3,"nb":2,"a":[["amino_acids_and_peptides/bleomycin-a2.yaml","bleomycin A2"],["amino_acids_and_peptides/bleomycin-b2.yaml","bleomycin B2"],["amino_acids_and_peptides/bleomycin.yaml","bleomycin"]],"b":[["NCBITaxon%3A35621","Streptomyces mobaraensis"],["NCBITaxon%3A29309","Streptomyces verticillus"]]},{"id":"NCBITaxon:316280","l":"Streptomyces peucetius subsp. caesius ATCC 27952","na":2,"nb":3,"a":[["amino_acids_and_peptides/peucechelin.yaml","peucechelin"],["polyketides/14-hydroxyisochainin.yaml","14-hydroxyisochainin"]],"b":[["NCBITaxon%3A1950","Streptomyces peucetius"],["NCBITaxon%3A55158","Streptomyces peucetius subsp. caesius"],["NCBITaxon%3A316280","Streptomyces peucetius subsp. caesius ATCC 27952"]]},{"id":"NCBITaxon:316284","l":"Streptomyces noursei ATCC 11455","na":3,"nb":2,"a":[["amino_acids_and_peptides/dechlorocuracomycin.yaml","dechlorocuracomycin"],["polyketides/nystatin-a1.yaml","nystatin A1"],["unclassified/albonoursin.yaml","albonoursin"]],"b":[["NCBITaxon%3A1971","Streptomyces noursei"],["NCBITaxon%3A316284","Streptomyces noursei ATCC 11455"]]},{"id":"NCBITaxon:35717","l":"Epichloe festucae","na":2,"nb":3,"a":[["alkaloids/peramine.yaml","peramine"],["amino_acids_and_peptides/epichloenin-a.yaml","epichloenin A"]],"b":[["NCBITaxon%3A35717","Epichloe festucae"],["NCBITaxon%3A877507","Epichloe festucae Fl1"],["NCBITaxon%3A73839","Epichloe festucae var. lolii"]]},{"id":"NCBITaxon:36746","l":"Pseudomonas cichorii","na":2,"nb":3,"a":[["amino_acids_and_peptides/cichofactin-a.yaml","cichofactin A"],["amino_acids_and_peptides/cichofactin-b.yaml","cichofactin B"]],"b":[["NCBITaxon%3A2488639","Pectobacterium versatile"],["NCBITaxon%3A36746","Pseudomonas cichorii"],["NCBITaxon%3A1441629","Pseudomonas cichorii JBC1"]]},{"id":"NCBITaxon:38300","l":"Streptomyces pristinaespiralis","na":2,"nb":3,"a":[["amino_acids_and_peptides/pristinin-a3.yaml","pristinin A3"],["terpenoids/2s-3r-9r-pristinol.yaml","(+)-(2S,3R,9R)-pristinol"]],"b":[["NCBITaxon%3A38300","Streptomyces pristinaespiralis"],["NCBITaxon%3A457429","Streptomyces pristinaespiralis ATCC 25486"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:384676","l":"Pseudomonas entomophila L48","na":3,"nb":2,"a":[["alkaloids/labradorin-1.yaml","labradorin 1"],["alkaloids/labradorin-2.yaml","labradorin 2"],["alkaloids/pimprinine.yaml","pimprinine"]],"b":[["NCBITaxon%3A312306","Pseudomonas entomophila"],["NCBITaxon%3A384676","Pseudomonas entomophila L48"]]},{"id":"NCBITaxon:393595","l":"Alcanivorax borkumensis SK2","na":3,"nb":2,"a":[["amino_acids_and_peptides/amphibactin-e.yaml","amphibactin E"],["amino_acids_and_peptides/amphibactin-h.yaml","amphibactin H"],["fatty_acids/amphibactin-i.yaml","amphibactin I"]],"b":[["NCBITaxon%3A59754","Alcanivorax borkumensis"],["NCBITaxon%3A393595","Alcanivorax borkumensis SK2"]]},{"id":"NCBITaxon:398578","l":"Delftia acidovorans SPH-1","na":2,"nb":3,"a":[["amino_acids_and_peptides/delftibactin-a.yaml","delftibactin A"],["amino_acids_and_peptides/delftibactin-b.yaml","delftibactin B"]],"b":[["NCBITaxon%3A80866","Delftia acidovorans"],["NCBITaxon%3A1218107","Delftia acidovorans NBRC 14950"],["NCBITaxon%3A398578","Delftia acidovorans SPH-1"]]},{"id":"NCBITaxon:41061","l":"Aspergillus nomiae","na":3,"nb":2,"a":[["polyketides/aflatoxin-b2.yaml","aflatoxin B2"],["unclassified/aflatoxin-b1.yaml","aflatoxin B1"],["unclassified/aflatoxin-g1.yaml","aflatoxin G1"]],"b":[["NCBITaxon%3A41061","Aspergillus nomiae"],["NCBITaxon%3A1509407","Aspergillus nomiae NRRL 13137"]]},{"id":"NCBITaxon:42234","l":"Streptomyces acidiscabies","na":2,"nb":3,"a":[["fatty_acids/butyrolactone.yaml","γ-butyrolactone"],["unclassified/thaxtomin-a.yaml","thaxtomin A"]],"b":[["NCBITaxon%3A42234","Streptomyces acidiscabies"],["NCBITaxon%3A1116232","Streptomyces acidiscabies 84-104"],["NCBITaxon%3A1930","Streptomyces scabiei"]]},{"id":"NCBITaxon:42236","l":"Streptomyces diastatochromogenes","na":3,"nb":2,"a":[["carbohydrates/toyocamycin.yaml","toyocamycin"],["polyketides/concanamycin-a.yaml","concanamycin A"],["polyketides/polyketomycin.yaml","polyketomycin"]],"b":[["NCBITaxon%3A42236","Streptomyces diastatochromogenes"],["NCBITaxon%3A285494","Streptomyces diastatochromogenes subsp. luteus"]]},{"id":"NCBITaxon:42237","l":"Streptomyces eurythermus","na":3,"nb":2,"a":[["polyketides/angolamycin.yaml","angolamycin"],["polyketides/cinerubin-b.yaml","cinerubin B"],["polyketides/filipin-iii.yaml","filipin III"]],"b":[["NCBITaxon%3A42237","Streptomyces eurythermus"],["NCBITaxon%3A1928","Streptomyces rochei"]]},{"id":"NCBITaxon:436515","l":"Variovorax boronicumulans","na":2,"nb":3,"a":[["amino_acids_and_peptides/variochelin-a.yaml","variochelin A"],["amino_acids_and_peptides/variochelin-b.yaml","variochelin B"]],"b":[["NCBITaxon%3A436515","Variovorax boronicumulans"],["NCBITaxon%3A1321609","Variovorax boronicumulans NBRC 103145"],["NCBITaxon%3A34073","Variovorax paradoxus"]]},{"id":"NCBITaxon:448385","l":"Sorangium cellulosum So ce56","na":3,"nb":2,"a":[["polyketides/etnangien.yaml","etnangien"],["polyketides/soraphen-a.yaml","soraphen A"],["terpenoids/eremophilene.yaml","(+)-eremophilene"]],"b":[["NCBITaxon%3A56","Sorangium cellulosum"],["NCBITaxon%3A448385","Sorangium cellulosum So ce56"]]},{"id":"NCBITaxon:457429","l":"Streptomyces pristinaespiralis ATCC 25486","na":2,"nb":3,"a":[["amino_acids_and_peptides/pristinin-a3.yaml","pristinin A3"],["terpenoids/2s-3r-9r-pristinol.yaml","(+)-(2S,3R,9R)-pristinol"]],"b":[["NCBITaxon%3A38300","Streptomyces pristinaespiralis"],["NCBITaxon%3A457429","Streptomyces pristinaespiralis ATCC 25486"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:47990","l":"Kutzneria viridogrisea","na":2,"nb":3,"a":[["carbohydrates/huimycin.yaml","huimycin"],["unclassified/aculeximycin.yaml","aculeximycin"]],"b":[["NCBITaxon%3A103725","Kutzneria kofuensis"],["NCBITaxon%3A47990","Kutzneria viridogrisea"],["NCBITaxon%3A1449976","Kutzneria viridogrisea DSM 43870"]]},{"id":"NCBITaxon:5022","l":"Plenodomus lingam","na":3,"nb":2,"a":[["polyketides/flaviolin.yaml","flaviolin"],["terpenoids/2-cis-abscisic-acid.yaml","2-cis-abscisic acid"],["unclassified/sirodesmin-pl.yaml","sirodesmin PL"]],"b":[["NCBITaxon%3A5022","Plenodomus lingam"],["NCBITaxon%3A985895","Plenodomus lingam JN3"]]},{"id":"NCBITaxon:5113","l":"Epichloe typhina","na":2,"nb":3,"a":[["alkaloids/elymoclavine.yaml","elymoclavine"],["alkaloids/ergovaline.yaml","ergovaline"]],"b":[["NCBITaxon%3A5113","Epichloe typhina"],["NCBITaxon%3A1616224","Epichloe typhina subsp. clarkii"],["NCBITaxon%3A2570311","Epichloe typhina subsp. typhina"]]},{"id":"NCBITaxon:54","l":"Nannocystis exedens","na":3,"nb":2,"a":[["polyketides/phenylnannolone-a.yaml","phenylnannolone A"],["polyketides/phenylnannolone-b.yaml","phenylnannolone B"],["polyketides/phenylnannolone-c.yaml","phenylnannolone C"]],"b":[["NCBITaxon%3A54","Nannocystis exedens"],["NCBITaxon%3A1366054","Nannocystis exedens subsp. cinnabaria"]]},{"id":"NCBITaxon:58343","l":"Streptomyces canus","na":3,"nb":2,"a":[["carbohydrates/kanamycin-a.yaml","kanamycin A"],["polyketides/resistomycin.yaml","resistomycin"],["unclassified/telomycin.yaml","telomycin"]],"b":[["NCBITaxon%3A58343","Streptomyces canus"],["NCBITaxon%3A1172183","Streptomyces canus 299MFChir4.1"]]},{"id":"NCBITaxon:66423","l":"Streptomyces eurocidicus","na":3,"nb":2,"a":[["polyketides/eurocidin-d.yaml","eurocidin D"],["polyketides/eurocidin-e.yaml","eurocidin E"],["polyketides/laidlomycin.yaml","laidlomycin"]],"b":[["NCBITaxon%3A1940","Streptomyces albireticuli"],["NCBITaxon%3A66423","Streptomyces eurocidicus"]]},{"id":"NCBITaxon:66869","l":"Streptomyces atroolivaceus","na":2,"nb":3,"a":[["amino_acids_and_peptides/leinamycin.yaml","leinamycin"],["amino_acids_and_peptides/thioviridamide.yaml","thioviridamide"]],"b":[["NCBITaxon%3A66869","Streptomyces atroolivaceus"],["NCBITaxon%3A67338","Streptomyces olivoviridis"],["NCBITaxon%3A28094","Trinickia caryophylli"]]},{"id":"NCBITaxon:66901","l":"Streptomyces nobilis","na":3,"nb":2,"a":[["polyketides/desertomycin-a.yaml","desertomycin A"],["polyketides/desertomycin-b.yaml","desertomycin B"],["polyketides/desertomycin-g.yaml","desertomycin G"]],"b":[["NCBITaxon%3A66901","Streptomyces nobilis"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:67265","l":"Kitasatospora aburaviensis","na":2,"nb":3,"a":[["polyketides/ebelactone-a.yaml","ebelactone A"],["polyketides/ebelactone-b.yaml","ebelactone B"]],"b":[["NCBITaxon%3A67265","Kitasatospora aburaviensis"],["NCBITaxon%3A285481","Kitasatospora aburaviensis subsp. tuftformis"],["NCBITaxon%3A552357","Shewanella fodinae"]]},{"id":"NCBITaxon:67581","l":"Streptomyces viridosporus","na":2,"nb":3,"a":[["fatty_acids/butyrolactone.yaml","γ-butyrolactone"],["unclassified/cinnapeptin.yaml","cinnapeptin"]],"b":[["NCBITaxon%3A67581","Streptomyces viridosporus"],["NCBITaxon%3A566461","Streptomyces viridosporus ATCC 14672"],["NCBITaxon%3A665577","Streptomyces viridosporus T7A"]]},{"id":"NCBITaxon:68239","l":"Streptomyces mirabilis","na":3,"nb":2,"a":[["alkaloids/azodyrecin-a.yaml","Azodyrecin A"],["alkaloids/azodyrecin-b.yaml","Azodyrecin B"],["alkaloids/azodyrecin-c.yaml","Azodyrecin C"]],"b":[["NCBITaxon%3A68239","Streptomyces mirabilis"],["NCBITaxon%3A1169149","Streptomyces mirabilis 138MFCol5.1"]]},{"id":"NCBITaxon:717774","l":"Marinomonas mediterranea MMB-1","na":3,"nb":2,"a":[["alkaloids/bistribromopyrrole.yaml","bistribromopyrrole"],["shikimates_and_phenylpropanoids/bromophene.yaml","bromophene"],["shikimates_and_phenylpropanoids/pentabromopseudilin.yaml","pentabromopseudilin"]],"b":[["NCBITaxon%3A119864","Marinomonas mediterranea"],["NCBITaxon%3A717774","Marinomonas mediterranea MMB-1"]]},{"id":"NCBITaxon:80869","l":"Paracidovorax citrulli","na":2,"nb":3,"a":[["unclassified/acidobactin-a.yaml","acidobactin A"],["unclassified/acidobactin-b.yaml","acidobactin B"]],"b":[["NCBITaxon%3A80869","Paracidovorax citrulli"],["NCBITaxon%3A397945","Paracidovorax citrulli AAC00-1"],["NCBITaxon%3A1154764","Paracidovorax citrulli ZJU1106"]]},{"id":"NCBITaxon:92644","l":"Streptomyces malaysiensis","na":2,"nb":3,"a":[["amino_acids_and_peptides/thioholgamide-a.yaml","thioholgamide A"],["amino_acids_and_peptides/thioholgamide-b.yaml","thioholgamide B"]],"b":[["NCBITaxon%3A92644","Streptomyces malaysiensis"],["NCBITaxon%3A3455775","Streptomyces malaysiensis subsp. malaysiensis"],["NCBITaxon%3A459658","Streptomyces malaysiensis subsp. samsunensis"]]},{"id":"NCBITaxon:93061","l":"Staphylococcus aureus subsp. aureus NCTC 8325","na":2,"nb":3,"a":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["unclassified/staphyloferrin-a.yaml","staphyloferrin A"]],"b":[["NCBITaxon%3A1280","Staphylococcus aureus"],["NCBITaxon%3A93061","Staphylococcus aureus subsp. aureus NCTC 8325"],["NCBITaxon%3A561307","Staphylococcus aureus subsp. aureus RN4220"]]},{"id":"NCBITaxon:103731","l":"Saccharothrix espanaensis","na":2,"nb":2,"a":[["polyketides/pentangumycin.yaml","pentangumycin"],["polyketides/sek90.yaml","SEK90"]],"b":[["NCBITaxon%3A103731","Saccharothrix espanaensis"],["NCBITaxon%3A1179773","Saccharothrix espanaensis DSM 44229"]]},{"id":"NCBITaxon:1079985","l":"Streptomyces chartreusis NRRL 3882","na":2,"nb":2,"a":[["carbohydrates/tunicamycin-b1.yaml","tunicamycin B1"],["polyketides/a23187.yaml","A23187"]],"b":[["NCBITaxon%3A1969","Streptomyces chartreusis"],["NCBITaxon%3A1079985","Streptomyces chartreusis NRRL 3882"]]},{"id":"NCBITaxon:1121302","l":"Clostridium cavendishii DSM 21758","na":2,"nb":2,"a":[["alkaloids/closoxazole-a.yaml","closoxazole A"],["alkaloids/closoxazole-b.yaml","closoxazole B"]],"b":[["NCBITaxon%3A349931","Clostridium cavendishii"],["NCBITaxon%3A1121302","Clostridium cavendishii DSM 21758"]]},{"id":"NCBITaxon:1122611","l":"Nonomuraea coxensis DSM 45129","na":2,"nb":2,"a":[["amino_acids_and_peptides/a50926-a.yaml","A50926 A"],["amino_acids_and_peptides/a50926-b.yaml","A50926 B"]],"b":[["NCBITaxon%3A404386","Nonomuraea coxensis"],["NCBITaxon%3A1122611","Nonomuraea coxensis DSM 45129"]]},{"id":"NCBITaxon:1179773","l":"Saccharothrix espanaensis DSM 44229","na":2,"nb":2,"a":[["polyketides/pentangumycin.yaml","pentangumycin"],["polyketides/sek90.yaml","SEK90"]],"b":[["NCBITaxon%3A103731","Saccharothrix espanaensis"],["NCBITaxon%3A1179773","Saccharothrix espanaensis DSM 44229"]]},{"id":"NCBITaxon:1246301","l":"Variovorax paradoxus B4","na":2,"nb":2,"a":[["amino_acids_and_peptides/variochelin-a.yaml","variochelin A"],["amino_acids_and_peptides/variochelin-b.yaml","variochelin B"]],"b":[["NCBITaxon%3A34073","Variovorax paradoxus"],["NCBITaxon%3A1246301","Variovorax paradoxus B4"]]},{"id":"NCBITaxon:1284","l":"Staphylococcus hyicus","na":2,"nb":2,"a":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["unclassified/staphyloferrin-a.yaml","staphyloferrin A"]],"b":[["NCBITaxon%3A1284","Staphylococcus hyicus"],["NCBITaxon%3A29387","Staphylococcus sp."]]},{"id":"NCBITaxon:1449976","l":"Kutzneria viridogrisea DSM 43870","na":2,"nb":2,"a":[["carbohydrates/huimycin.yaml","huimycin"],["unclassified/aculeximycin.yaml","aculeximycin"]],"b":[["NCBITaxon%3A47990","Kutzneria viridogrisea"],["NCBITaxon%3A1449976","Kutzneria viridogrisea DSM 43870"]]},{"id":"NCBITaxon:146922","l":"Streptomyces griseofuscus","na":2,"nb":2,"a":[["alkaloids/physostigmine.yaml","physostigmine"],["polyketides/indanomycin.yaml","indanomycin"]],"b":[["NCBITaxon%3A146922","Streptomyces griseofuscus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:1521","l":"Ruminiclostridium cellulolyticum","na":2,"nb":2,"a":[["alkaloids/closthioamide.yaml","closthioamide"],["amino_acids_and_peptides/rc-aip1.yaml","Rc-AIP1"]],"b":[["NCBITaxon%3A1521","Ruminiclostridium cellulolyticum"],["NCBITaxon%3A394503","Ruminiclostridium cellulolyticum H10"]]},{"id":"NCBITaxon:158878","l":"Staphylococcus aureus subsp. aureus Mu50","na":2,"nb":2,"a":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"]],"b":[["NCBITaxon%3A1280","Staphylococcus aureus"],["NCBITaxon%3A158878","Staphylococcus aureus subsp. aureus Mu50"]]},{"id":"NCBITaxon:168469","l":"Pseudomonas costantinii","na":2,"nb":2,"a":[["unclassified/tolaasin-f.yaml","tolaasin F"],["unclassified/tolaasin-i.yaml","tolaasin I"]],"b":[["NCBITaxon%3A46677","Pseudomonas agarici"],["NCBITaxon%3A168469","Pseudomonas costantinii"]]},{"id":"NCBITaxon:1736290","l":"Brevibacillus sp. Leaf182","na":2,"nb":2,"a":[["amino_acids_and_peptides/marthiapeptide-a.yaml","marthiapeptide A"],["polyketides/macrobrevin.yaml","macrobrevin"]],"b":[["NCBITaxon%3A1882945","Brevibacillus sp."],["NCBITaxon%3A1736290","Brevibacillus sp. Leaf182"]]},{"id":"NCBITaxon:1814","l":"Amycolatopsis methanolica","na":2,"nb":2,"a":[["amino_acids_and_peptides/amychelin-a.yaml","amychelin A"],["amino_acids_and_peptides/amychelin-b.yaml","amychelin B"]],"b":[["NCBITaxon%3A1814","Amycolatopsis methanolica"],["NCBITaxon%3A1068978","Amycolatopsis methanolica 239"]]},{"id":"NCBITaxon:1896","l":"Streptomyces bikiniensis","na":2,"nb":2,"a":[["carbohydrates/streptomycin.yaml","streptomycin"],["polyketides/chalcomycin-a.yaml","chalcomycin A"]],"b":[["NCBITaxon%3A1896","Streptomyces bikiniensis"],["NCBITaxon%3A44286","Streptomyces bikiniensis subsp. zorbonensis"]]},{"id":"NCBITaxon:1897","l":"Streptomyces carzinostaticus","na":2,"nb":2,"a":[["fatty_acids/neocarzilin-a.yaml","neocarzilin A"],["fatty_acids/neocarzilin-b.yaml","neocarzilin B"]],"b":[["NCBITaxon%3A1897","Streptomyces carzinostaticus"],["NCBITaxon%3A167636","Streptomyces carzinostaticus subsp. neocarzinostaticus"]]},{"id":"NCBITaxon:1922","l":"Streptomyces plicatus","na":2,"nb":2,"a":[["carbohydrates/amicetin.yaml","amicetin"],["polyketides/mithramycin.yaml","mithramycin"]],"b":[["NCBITaxon%3A1168082","Lacibacterium aquatile"],["NCBITaxon%3A1922","Streptomyces plicatus"]]},{"id":"NCBITaxon:1923","l":"Streptomyces phaeochromogenes","na":2,"nb":2,"a":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["unclassified/ikarugamycin.yaml","ikarugamycin"]],"b":[["NCBITaxon%3A1923","Streptomyces phaeochromogenes"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:2001","l":"Streptosporangium roseum","na":2,"nb":2,"a":[["polyketides/ws-79089b.yaml","WS 79089B"],["polyketides/ws-79089c.yaml","WS 79089C"]],"b":[["NCBITaxon%3A2001","Streptosporangium roseum"],["NCBITaxon%3A479432","Streptosporangium roseum DSM 43021"]]},{"id":"NCBITaxon:263358","l":"Micromonospora maris AB-18-032","na":2,"nb":2,"a":[["polyketides/abyssomicin-c.yaml","abyssomicin C"],["polyketides/atrop-abyssomicin-c.yaml","atrop-abyssomicin C"]],"b":[["NCBITaxon%3A1003110","Micromonospora maris"],["NCBITaxon%3A263358","Micromonospora maris AB-18-032"]]},{"id":"NCBITaxon:264445","l":"Streptomyces hygroscopicus subsp. limoneus","na":2,"nb":2,"a":[["carbohydrates/validamycin-a-2.yaml","validamycin A"],["carbohydrates/validamycin-a.yaml","validamycin A"]],"b":[["NCBITaxon%3A1912","Streptomyces hygroscopicus"],["NCBITaxon%3A264445","Streptomyces hygroscopicus subsp. limoneus"]]},{"id":"NCBITaxon:267872","l":"Microcystis aeruginosa PCC 7806","na":2,"nb":2,"a":[["amino_acids_and_peptides/microcyclamide.yaml","microcyclamide"],["amino_acids_and_peptides/microcystin-lr.yaml","microcystin-LR"]],"b":[["NCBITaxon%3A267872","Microcystis aeruginosa PCC 7806"],["NCBITaxon%3A1903187","Microcystis aeruginosa PCC 7806SL"]]},{"id":"NCBITaxon:28094","l":"Trinickia caryophylli","na":2,"nb":2,"a":[["amino_acids_and_peptides/gramibactin-b.yaml","gramibactin B"],["fatty_acids/caryoynencin.yaml","caryoynencin"]],"b":[["NCBITaxon%3A1632866","Alkalimarinus sediminis"],["NCBITaxon%3A28094","Trinickia caryophylli"]]},{"id":"NCBITaxon:285532","l":"Streptomyces achromogenes subsp. streptozoticus","na":2,"nb":2,"a":[["carbohydrates/streptozotocin.yaml","streptozotocin"],["unclassified/enteromycin.yaml","enteromycin"]],"b":[["NCBITaxon%3A67255","Streptomyces achromogenes"],["NCBITaxon%3A285532","Streptomyces achromogenes subsp. streptozoticus"]]},{"id":"NCBITaxon:304895","l":"Catenulispora acidiphila","na":2,"nb":2,"a":[["amino_acids_and_peptides/catenulipeptin.yaml","catenulipeptin"],["shikimates_and_phenylpropanoids/cacibiocin-b.yaml","cacibiocin B"]],"b":[["NCBITaxon%3A304895","Catenulispora acidiphila"],["NCBITaxon%3A479433","Catenulispora acidiphila DSM 44928"]]},{"id":"NCBITaxon:314281","l":"Pseudoalteromonas tunicata","na":2,"nb":2,"a":[["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"]],"b":[["NCBITaxon%3A314281","Pseudoalteromonas tunicata"],["NCBITaxon%3A87626","Pseudoalteromonas tunicata D2"]]},{"id":"NCBITaxon:316274","l":"Herpetosiphon aurantiacus DSM 785","na":2,"nb":2,"a":[["alkaloids/auriculamide.yaml","auriculamide"],["terpenoids/o-methylkolavelool.yaml","(+)-O-methylkolavelool"]],"b":[["NCBITaxon%3A65","Herpetosiphon aurantiacus"],["NCBITaxon%3A316274","Herpetosiphon aurantiacus DSM 785"]]},{"id":"NCBITaxon:33899","l":"Streptomyces galilaeus","na":2,"nb":2,"a":[["polyketides/aclacinomycin.yaml","aclacinomycin"],["polyketides/cinerubin-b.yaml","cinerubin B"]],"b":[["NCBITaxon%3A67280","Streptomyces bobili"],["NCBITaxon%3A33899","Streptomyces galilaeus"]]},{"id":"NCBITaxon:351671","l":"Xenorhabdus doucetiae","na":2,"nb":2,"a":[["unclassified/xenoamicin-a.yaml","xenoamicin A"],["unclassified/xenoamicin-b.yaml","xenoamicin B"]],"b":[["NCBITaxon%3A351671","Xenorhabdus doucetiae"],["NCBITaxon%3A1123505","Xenorhabdus doucetiae FRM16 = DSM 17909"]]},{"id":"NCBITaxon:358681","l":"Brevibacillus brevis NBRC 100599","na":2,"nb":2,"a":[["amino_acids_and_peptides/gramicidin.yaml","gramicidin"],["amino_acids_and_peptides/tyrocidine-a.yaml","tyrocidine A"]],"b":[["NCBITaxon%3A1393","Brevibacillus brevis"],["NCBITaxon%3A358681","Brevibacillus brevis NBRC 100599"]]},{"id":"NCBITaxon:36816","l":"Streptomyces caelestis","na":2,"nb":2,"a":[["alkaloids/celesticetin.yaml","celesticetin"],["polyketides/niddamycin.yaml","niddamycin"]],"b":[["NCBITaxon%3A1964542","Aquimarina celericrescens"],["NCBITaxon%3A36816","Streptomyces caelestis"]]},{"id":"NCBITaxon:377629","l":"Teredinibacter turnerae T7901","na":2,"nb":2,"a":[["polyketides/tartrolon-d.yaml","tartrolon D"],["polyketides/tartrolon-e.yaml","tartrolon E"]],"b":[["NCBITaxon%3A2426","Teredinibacter turnerae"],["NCBITaxon%3A377629","Teredinibacter turnerae T7901"]]},{"id":"NCBITaxon:38314","l":"Streptomyces nogalater","na":2,"nb":2,"a":[["polyketides/mithramycin.yaml","mithramycin"],["polyketides/nogalamycin.yaml","nogalamycin"]],"b":[["NCBITaxon%3A38314","Streptomyces nogalater"],["NCBITaxon%3A527200","Thiorhodococcus fuscus"]]},{"id":"NCBITaxon:391619","l":"Phaeobacter inhibens DSM 17395","na":2,"nb":2,"a":[["shikimates_and_phenylpropanoids/hydroxytropodithietic-acid.yaml","hydroxytropodithietic acid"],["shikimates_and_phenylpropanoids/tropodithietic-acid.yaml","tropodithietic acid"]],"b":[["NCBITaxon%3A221822","Phaeobacter inhibens"],["NCBITaxon%3A391619","Phaeobacter inhibens DSM 17395"]]},{"id":"NCBITaxon:394503","l":"Ruminiclostridium cellulolyticum H10","na":2,"nb":2,"a":[["alkaloids/closthioamide.yaml","closthioamide"],["amino_acids_and_peptides/rc-aip1.yaml","Rc-AIP1"]],"b":[["NCBITaxon%3A1521","Ruminiclostridium cellulolyticum"],["NCBITaxon%3A394503","Ruminiclostridium cellulolyticum H10"]]},{"id":"NCBITaxon:396024","l":"Aspergillus ruber","na":2,"nb":2,"a":[["polyketides/flavoglaucin.yaml","flavoglaucin"],["polyketides/sterigmatocystin.yaml","sterigmatocystin"]],"b":[["NCBITaxon%3A396024","Aspergillus ruber"],["NCBITaxon%3A1388766","Aspergillus ruber CBS 135680"]]},{"id":"NCBITaxon:42198","l":"Actinosynnema pretiosum subsp. auranticum","na":2,"nb":2,"a":[["polyketides/ansamitocin-p3.yaml","ansamitocin P3"],["polyketides/maytansine.yaml","maytansine"]],"b":[["NCBITaxon%3A42197","Actinosynnema pretiosum"],["NCBITaxon%3A42198","Actinosynnema pretiosum subsp. auranticum"]]},{"id":"NCBITaxon:43357","l":"","na":2,"nb":2,"a":[["carbohydrates/huimycin.yaml","huimycin"],["unclassified/aculeximycin.yaml","aculeximycin"]],"b":[["NCBITaxon%3A47990","Kutzneria viridogrisea"],["NCBITaxon%3A1449976","Kutzneria viridogrisea DSM 43870"]]},{"id":"NCBITaxon:457427","l":"Streptomyces himastatinicus ATCC 53653","na":2,"nb":2,"a":[["alkaloids/9-methylstreptimidone.yaml","9-methylstreptimidone"],["amino_acids_and_peptides/himastatin.yaml","himastatin"]],"b":[["NCBITaxon%3A998084","Streptomyces himastatinicus"],["NCBITaxon%3A457427","Streptomyces himastatinicus ATCC 53653"]]},{"id":"NCBITaxon:46165","l":"Actinomadura verrucosospora","na":2,"nb":2,"a":[["polyketides/esperamicin.yaml","esperamicin"],["polyketides/sf2487.yaml","SF2487"]],"b":[["NCBITaxon%3A46165","Actinomadura verrucosospora"],["NCBITaxon%3A1605437","Actinomadura verrucosospora subsp. neohibisca"]]},{"id":"NCBITaxon:47872","l":"Micromonospora purpureochromogenes","na":2,"nb":2,"a":[["unclassified/rakicidin-a-2.yaml","rakicidin A"],["unclassified/rakicidin-b.yaml","rakicidin B"]],"b":[["NCBITaxon%3A47872","Micromonospora purpureochromogenes"],["NCBITaxon%3A1876","Micromonospora sp."]]},{"id":"NCBITaxon:47879","l":"Pseudomonas corrugata","na":2,"nb":2,"a":[["amino_acids_and_peptides/corpeptin-a.yaml","corpeptin A"],["amino_acids_and_peptides/corpeptin-b.yaml","corpeptin B"]],"b":[["NCBITaxon%3A47879","Pseudomonas corrugata"],["NCBITaxon%3A1316927","Pseudomonas corrugata CFBP 5454"]]},{"id":"NCBITaxon:479433","l":"Catenulispora acidiphila DSM 44928","na":2,"nb":2,"a":[["amino_acids_and_peptides/catenulipeptin.yaml","catenulipeptin"],["shikimates_and_phenylpropanoids/cacibiocin-b.yaml","cacibiocin B"]],"b":[["NCBITaxon%3A304895","Catenulispora acidiphila"],["NCBITaxon%3A479433","Catenulispora acidiphila DSM 44928"]]},{"id":"NCBITaxon:5074","l":"Penicillium brevicompactum","na":2,"nb":2,"a":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"],["unclassified/asperphenamate.yaml","asperphenamate"]],"b":[["NCBITaxon%3A1337893","Streptomyces bernensis"],["NCBITaxon%3A5074","Penicillium brevicompactum"]]},{"id":"NCBITaxon:52258","l":"Streptomyces flavovirens","na":2,"nb":2,"a":[["alkaloids/holomycin.yaml","holomycin"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"]],"b":[["NCBITaxon%3A67299","Streptomyces flavogriseus"],["NCBITaxon%3A52258","Streptomyces flavovirens"]]},{"id":"NCBITaxon:55952","l":"Streptomyces toyocaensis","na":2,"nb":2,"a":[["amino_acids_and_peptides/a-47934.yaml","A-47934"],["carbohydrates/toyocamycin.yaml","toyocamycin"]],"b":[["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A55952","Streptomyces toyocaensis"]]},{"id":"NCBITaxon:568076","l":"Metarhizium robertsii","na":2,"nb":2,"a":[["amino_acids_and_peptides/serinocyclin-a.yaml","serinocyclin A"],["amino_acids_and_peptides/serinocyclin-b.yaml","serinocyclin B"]],"b":[["NCBITaxon%3A568076","Metarhizium robertsii"],["NCBITaxon%3A655844","Metarhizium robertsii ARSEF 23"]]},{"id":"NCBITaxon:60550","l":"Burkholderia pyrrocinia","na":2,"nb":2,"a":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/occidiofungin-a.yaml","occidiofungin A"]],"b":[["NCBITaxon%3A60550","Burkholderia pyrrocinia"],["NCBITaxon%3A1212819","Burkholderia pyrrocinia CH-67"]]},{"id":"NCBITaxon:60894","l":"Saccharopolyspora spinosa","na":2,"nb":2,"a":[["polyketides/a83543a.yaml","A83543A"],["polyketides/spinosyn-d.yaml","spinosyn D"]],"b":[["NCBITaxon%3A60894","Saccharopolyspora spinosa"],["NCBITaxon%3A994479","Saccharopolyspora spinosa NRRL 18395"]]},{"id":"NCBITaxon:65","l":"Herpetosiphon aurantiacus","na":2,"nb":2,"a":[["alkaloids/auriculamide.yaml","auriculamide"],["terpenoids/o-methylkolavelool.yaml","(+)-O-methylkolavelool"]],"b":[["NCBITaxon%3A65","Herpetosiphon aurantiacus"],["NCBITaxon%3A316274","Herpetosiphon aurantiacus DSM 785"]]},{"id":"NCBITaxon:66430","l":"Streptomyces roseus","na":2,"nb":2,"a":[["amino_acids_and_peptides/leupeptin-a.yaml","leupeptin A"],["amino_acids_and_peptides/leupeptin-pr.yaml","leupeptin Pr"]],"b":[["NCBITaxon%3A66430","Streptomyces roseus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:67297","l":"Streptomyces flaveolus","na":2,"nb":2,"a":[["amino_acids_and_peptides/sanglifehrin-a.yaml","sanglifehrin A"],["polyketides/tirandamycin.yaml","tirandamycin"]],"b":[["NCBITaxon%3A67297","Streptomyces flaveolus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:67364","l":"Streptomyces sioyaensis","na":2,"nb":2,"a":[["alkaloids/altemicidin.yaml","altemicidin"],["amino_acids_and_peptides/siomycin-a.yaml","siomycin A"]],"b":[["NCBITaxon%3A1280","Staphylococcus aureus"],["NCBITaxon%3A67364","Streptomyces sioyaensis"]]},{"id":"NCBITaxon:67367","l":"Streptomyces tanashiensis","na":2,"nb":2,"a":[["amino_acids_and_peptides/phosphoramidon.yaml","phosphoramidon"],["unclassified/minimycin.yaml","minimycin"]],"b":[["NCBITaxon%3A67367","Streptomyces tanashiensis"],["NCBITaxon%3A285526","Streptomyces tanashiensis subsp. cephalomyceticus"]]},{"id":"NCBITaxon:68180","l":"Streptomyces blastmyceticus","na":2,"nb":2,"a":[["alkaloids/lyngbyatoxin.yaml","lyngbyatoxin"],["fatty_acids/mediomycin-a-2.yaml","mediomycin A"]],"b":[["NCBITaxon%3A58341","Streptomyces albosporeus"],["NCBITaxon%3A68180","Streptomyces blastmyceticus"]]},{"id":"NCBITaxon:68185","l":"Streptomyces chrestomyceticus","na":2,"nb":2,"a":[["alkaloids/guanipiperazine-a.yaml","guanipiperazine A"],["alkaloids/guanipiperazine-b.yaml","guanipiperazine B"]],"b":[["NCBITaxon%3A68185","Streptomyces chrestomyceticus"],["NCBITaxon%3A1306181","Streptomyces chrestomyceticus JCM 4735"]]},{"id":"NCBITaxon:68203","l":"Streptomyces fungicidicus","na":2,"nb":2,"a":[["unclassified/enduracidin-a.yaml","enduracidin A"],["unclassified/enduracidin-b.yaml","enduracidin B"]],"b":[["NCBITaxon%3A68203","Streptomyces fungicidicus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:68213","l":"Streptomyces griseoaurantiacus","na":2,"nb":2,"a":[["alkaloids/metacycloprodigiosin.yaml","metacycloprodigiosin"],["alkaloids/undecylprodigiosin-2.yaml","undecylprodigiosin"]],"b":[["NCBITaxon%3A68213","Streptomyces griseoaurantiacus"],["NCBITaxon%3A996637","Streptomyces griseoaurantiacus M045"]]},{"id":"NCBITaxon:68232","l":"Streptomyces lusitanus","na":2,"nb":2,"a":[["alkaloids/naphthyridinomycin.yaml","naphthyridinomycin"],["polyketides/grincamycin.yaml","grincamycin"]],"b":[["NCBITaxon%3A68232","Streptomyces lusitanus"],["NCBITaxon%3A1522110","Streptomyces lusitanus subsp. tetracyclini"]]},{"id":"NCBITaxon:69","l":"Lysobacter enzymogenes","na":2,"nb":2,"a":[["unclassified/heat-stable-antifungal-factor.yaml","heat-stable antifungal factor"],["unclassified/wap-8294a2.yaml","WAP-8294A2"]],"b":[["NCBITaxon%3A69","Lysobacter enzymogenes"],["NCBITaxon%3A262324","Lysobacter gummosus"]]},{"id":"NCBITaxon:80860","l":"Streptomyces cyanogenus","na":2,"nb":2,"a":[["polyketides/landomycin-a.yaml","landomycin A"],["polyketides/lucensomycin.yaml","lucensomycin"]],"b":[["NCBITaxon%3A80860","Streptomyces cyanogenus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:543","l":"Enterobacteriaceae","na":1,"nb":33950,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A240150","alkaliphilic bacterium N10"],["NCBITaxon%3A3049091","Apirhabdus apintestini"],["NCBITaxon%3A64559","[Aquamonas] haywardensis"],["NCBITaxon%3A58338","Aranicola proteolyticus"],["NCBITaxon%3A1150713","Aranicola sp. 9AL34"],["NCBITaxon%3A707055","Aranicola sp. Cf3F"]]},{"id":"NCBITaxon:547","l":"Enterobacter","na":1,"nb":6599,"a":[["amino_acids_and_peptides/andrimid.yaml","andrimid"]],"b":[["NCBITaxon%3A3142537","Enterobacter adelaidei"],["NCBITaxon%3A61645","Enterobacter asburiae"],["NCBITaxon%3A1330532","Enterobacter asburiae B1-3"],["NCBITaxon%3A1330533","Enterobacter asburiae B5-60"],["NCBITaxon%3A1442602","Enterobacter asburiae C1"],["NCBITaxon%3A1298604","Enterobacter asburiae JCM 6051"]]},{"id":"NCBITaxon:1663","l":"Arthrobacter","na":1,"nb":6277,"a":[["unclassified/ws9326a.yaml","WS9326A"]],"b":[["NCBITaxon%3A132932","Acetobacterium tundrae"],["NCBITaxon%3A37921","Arthrobacter agilis"],["NCBITaxon%3A369936","Arthrobacter alkaliphilus"],["NCBITaxon%3A656366","Arthrobacter alpinus"],["NCBITaxon%3A3046203","Arthrobacter antibioticus"],["NCBITaxon%3A2895818","Arthrobacter antioxidans"]]},{"id":"NCBITaxon:4751","l":"Fungi","na":1,"nb":5527,"a":[["shikimates_and_phenylpropanoids/atromentin.yaml","atromentin"]],"b":[["NCBITaxon%3A1450171","Aaosphaeria arxii"],["NCBITaxon%3A137743","Abortiporus biennis"],["NCBITaxon%3A420591","Absidia anomala"],["NCBITaxon%3A90261","Absidia caerulea"],["NCBITaxon%3A327741","Absidia californica"],["NCBITaxon%3A420592","Absidia cuneospora"]]},{"id":"NCBITaxon:237","l":"Flavobacterium","na":1,"nb":4449,"a":[["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"]],"b":[["NCBITaxon%3A196875","Arctic sea ice associated bacterium ARK10272"],["NCBITaxon%3A196870","Arctic sea ice bacterium ARK10104"],["NCBITaxon%3A196871","Arctic sea ice bacterium ARK10159"],["NCBITaxon%3A196872","Arctic sea ice bacterium ARK10161"],["NCBITaxon%3A196873","Arctic sea ice bacterium ARK10164"],["NCBITaxon%3A196874","Arctic sea ice bacterium ARK10270"]]},{"id":"NCBITaxon:1827","l":"Rhodococcus","na":1,"nb":3197,"a":[["alkaloids/corynecin-iii.yaml","corynecin III"]],"b":[["NCBITaxon%3A179179","bromate-reducing bacterium B7"],["NCBITaxon%3A179180","bromate-reducing bacterium B8"],["NCBITaxon%3A983873","Dietzia aurantiaca"],["NCBITaxon%3A84096","Gordonia alkanivorans"],["NCBITaxon%3A178933","PAH-contaminated sludge bacterium PB-32"],["NCBITaxon%3A43767","Prescottella equi"]]},{"id":"NCBITaxon:22","l":"Shewanella","na":1,"nb":2330,"a":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]],"b":[["NCBITaxon%3A196819","Arctic sea ice bacterium ARK10035"],["NCBITaxon%3A259291","cf. Shewanella SAR-1"],["NCBITaxon%3A259292","cf. Shewanella SAR-2"],["NCBITaxon%3A73131","Mariana eubacterium no. 11"],["NCBITaxon%3A73132","Mariana eubacterium no. 13"],["NCBITaxon%3A73133","Mariana eubacterium no. 24"]]},{"id":"NCBITaxon:41275","l":"Brevundimonas","na":1,"nb":1560,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A1125965","Brevundimonas abyssalis"],["NCBITaxon%3A1391729","Brevundimonas abyssalis TAR-001"],["NCBITaxon%3A74314","Brevundimonas alba"],["NCBITaxon%3A1312364","Brevundimonas albigilva"],["NCBITaxon%3A3712371","Brevundimonas antarctica (SeqCode)"],["NCBITaxon%3A74316","Brevundimonas aurantiaca"]]},{"id":"NCBITaxon:357","l":"Agrobacterium","na":1,"nb":1466,"a":[["alkaloids/sesbanimide-c.yaml","sesbanimide C"]],"b":[["NCBITaxon%3A76979","Agrobacterium agile"],["NCBITaxon%3A147266","Agrobacterium albertimagni"],["NCBITaxon%3A1156935","Agrobacterium albertimagni AOL15"],["NCBITaxon%3A1585697","Agrobacterium arsenijevicii"],["NCBITaxon%3A44155","Agrobacterium aurantiacum"],["NCBITaxon%3A2052828","Agrobacterium bohemicum"]]},{"id":"NCBITaxon:1716","l":"Corynebacterium","na":1,"nb":1413,"a":[["alkaloids/corynecin-iii.yaml","corynecin III"]],"b":[["NCBITaxon%3A41986","Agromyces mediolanus"],["NCBITaxon%3A1667","Arthrobacter sp."],["NCBITaxon%3A92706","[Brevibacterium] flavum"],["NCBITaxon%3A1232385","[Brevibacterium] flavum ZL-1"],["NCBITaxon%3A2838527","Candidatus Corynebacterium avicola"],["NCBITaxon%3A2838528","Candidatus Corynebacterium faecigallinarum"]]},{"id":"NCBITaxon:226","l":"Alteromonas","na":1,"nb":1246,"a":[["unclassified/marinostatin.yaml","marinostatin"]],"b":[["NCBITaxon%3A1892904","Alteromonas abrolhosensis"],["NCBITaxon%3A1938339","Alteromonas aestuariivivens"],["NCBITaxon%3A105692","Alteromonas agarilytica"],["NCBITaxon%3A3410268","Alteromonas algae"],["NCBITaxon%3A135000","Alteromonas alvinellae"],["NCBITaxon%3A2803813","Alteromonas antoniana"]]},{"id":"NCBITaxon:47251","l":"Leptolyngbya","na":1,"nb":1210,"a":[["alkaloids/schizokinen.yaml","schizokinen"]],"b":[["NCBITaxon%3A2653193","cf. Leptolyngbya sp. CCNUM2"],["NCBITaxon%3A377165","cf. Leptolyngbya sp. Greenland_10"],["NCBITaxon%3A377164","cf. Leptolyngbya sp. Greenland_9"],["NCBITaxon%3A2675591","cf. Leptolyngbya sp. PKUAC-SCTE412"],["NCBITaxon%3A2675592","cf. Leptolyngbya sp. PKUAC-SCTE413"],["NCBITaxon%3A2675593","cf. Leptolyngbya sp. PKUAC-SCTE811"]]},{"id":"NCBITaxon:222","l":"Achromobacter","na":1,"nb":1173,"a":[["alkaloids/biotin.yaml","biotin"]],"b":[["NCBITaxon%3A1287736","Achromobacter aegrifaciens"],["NCBITaxon%3A1783500","Achromobacter agile"],["NCBITaxon%3A1353888","Achromobacter agilis"],["NCBITaxon%3A1750518","Achromobacter aloeverae"],["NCBITaxon%3A1389935","Achromobacter animicus"],["NCBITaxon%3A1287737","Achromobacter anxifer"]]},{"id":"NCBITaxon:1696","l":"Brevibacterium","na":1,"nb":794,"a":[["alkaloids/1-6-phenazinedimethanol.yaml","1,6-phenazinedimethanol"]],"b":[["NCBITaxon%3A943903","bacterium Osw"],["NCBITaxon%3A417948","Brevibacterium album"],["NCBITaxon%3A1121122","Brevibacterium album DSM 18261"],["NCBITaxon%3A1046555","Brevibacterium ammoniilyticum"],["NCBITaxon%3A2683611","Brevibacterium anseongense"],["NCBITaxon%3A239268","Brevibacterium antarcticum"]]},{"id":"NCBITaxon:2433","l":"Roseobacter","na":1,"nb":652,"a":[["shikimates_and_phenylpropanoids/tropodithietic-acid.yaml","tropodithietic acid"]],"b":[["NCBITaxon%3A196799","Arctic sea ice bacterium ARK10233"],["NCBITaxon%3A197015","Arctic sea ice bacterium ARK10278"],["NCBITaxon%3A2602289","Roseobacter cerasinus"],["NCBITaxon%3A3467295","Roseobacter cerffii"],["NCBITaxon%3A2434","Roseobacter denitrificans"],["NCBITaxon%3A375451","Roseobacter denitrificans OCh 114"]]},{"id":"NCBITaxon:37914","l":"Dietzia","na":1,"nb":449,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A2838537","Candidatus Dietzia intestinigallinarum"],["NCBITaxon%3A2838538","Candidatus Dietzia intestinipullorum"],["NCBITaxon%3A2838539","Candidatus Dietzia merdigallinarum"],["NCBITaxon%3A595984","Dietzia aerolata"],["NCBITaxon%3A665550","Dietzia alimentaria"],["NCBITaxon%3A1077144","Dietzia alimentaria 72"]]},{"id":"NCBITaxon:1357","l":"Lactococcus","na":1,"nb":383,"a":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"]],"b":[["NCBITaxon%3A2419773","Lactococcus allomyrinae"],["NCBITaxon%3A1359","Lactococcus cremoris"],["NCBITaxon%3A1286879","Lactococcus cremoris HB61"],["NCBITaxon%3A1286880","Lactococcus cremoris HB63"],["NCBITaxon%3A2816960","Lactococcus cremoris subsp. cremoris"],["NCBITaxon%3A1104322","Lactococcus cremoris subsp. cremoris A76"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":1,"nb":375,"a":[["amino_acids_and_peptides/enterocin-a.yaml","enterocin A"]],"b":[["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A1352","Enterococcus faecium"],["NCBITaxon%3A1391465","Enterococcus faecium 10/96A"],["NCBITaxon%3A1259824","Enterococcus faecium 13.SD.W.09"],["NCBITaxon%3A1429401","Enterococcus faecium 17282"],["NCBITaxon%3A565659","Enterococcus faecium 1,141,733"]]},{"id":"NCBITaxon:1865","l":"Actinoplanes","na":1,"nb":367,"a":[["unclassified/kirromycin.yaml","kirromycin"]],"b":[["NCBITaxon%3A135945","Actinoplanes arizonaensis"],["NCBITaxon%3A47988","Actinoplanes auranticolor"],["NCBITaxon%3A2792083","Actinoplanes aureus"],["NCBITaxon%3A135946","Actinoplanes awajinensis"],["NCBITaxon%3A135947","Actinoplanes awajinensis subsp. mycoplanecinus"],["NCBITaxon%3A113559","Actinoplanes campanulatus"]]},{"id":"NCBITaxon:1311","l":"Streptococcus agalactiae","na":1,"nb":332,"a":[["carbohydrates/capsular-polysaccharide-3.yaml","capsular polysaccharide"]],"b":[["NCBITaxon%3A536","Chromobacterium violaceum"],["NCBITaxon%3A2896850","Phocaeicola oris"],["NCBITaxon%3A1311","Streptococcus agalactiae"],["NCBITaxon%3A997295","Streptococcus agalactiae 072.21"],["NCBITaxon%3A1309806","Streptococcus agalactiae 09mas018883"],["NCBITaxon%3A1333579","Streptococcus agalactiae 112469214-isolate1"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":1,"nb":287,"a":[["polyketides/emodin.yaml","emodin"]],"b":[["NCBITaxon%3A632","Yersinia pestis"],["NCBITaxon%3A1345710","Yersinia pestis 1045"],["NCBITaxon%3A1330535","Yersinia pestis 113"],["NCBITaxon%3A755859","Yersinia pestis 12"],["NCBITaxon%3A1345703","Yersinia pestis 1412"],["NCBITaxon%3A1345704","Yersinia pestis 1413"]]},{"id":"NCBITaxon:1142","l":"Synechocystis","na":1,"nb":247,"a":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]],"b":[["NCBITaxon%3A543824","Synechocystis aquatilis"],["NCBITaxon%3A543825","Synechocystis aquatilis 1LT32S04"],["NCBITaxon%3A1443101","Synechocystis aquatilis C23"],["NCBITaxon%3A1443102","Synechocystis aquatilis C25"],["NCBITaxon%3A1417686","Synechocystis aquatilis I13"],["NCBITaxon%3A1417687","Synechocystis aquatilis I14"]]},{"id":"NCBITaxon:626","l":"Xenorhabdus","na":1,"nb":215,"a":[["amino_acids_and_peptides/ambactin.yaml","ambactin"]],"b":[["NCBITaxon%3A651590","uncultured Xenorhabdus sp."],["NCBITaxon%3A3025874","Xenorhabdus aichiensis"],["NCBITaxon%3A3025875","Xenorhabdus anantnagensis"],["NCBITaxon%3A3026967","Xenorhabdus bakwenae"],["NCBITaxon%3A40578","Xenorhabdus beddingii"],["NCBITaxon%3A3136256","Xenorhabdus bharatensis"]]},{"id":"NCBITaxon:28450","l":"Burkholderia pseudomallei","na":1,"nb":214,"a":[["polyketides/malleilactone.yaml","malleilactone"]],"b":[["NCBITaxon%3A28450","Burkholderia pseudomallei"],["NCBITaxon%3A1085027","Burkholderia pseudomallei 1026a"],["NCBITaxon%3A884204","Burkholderia pseudomallei 1026b"],["NCBITaxon%3A1310219","Burkholderia pseudomallei 104(1990)"],["NCBITaxon%3A357348","Burkholderia pseudomallei 1106a"],["NCBITaxon%3A357347","Burkholderia pseudomallei 1106b"]]},{"id":"NCBITaxon:1203","l":"Scytonema","na":1,"nb":207,"a":[["amino_acids_and_peptides/scytodecamide.yaml","scytodecamide"]],"b":[["NCBITaxon%3A3243584","Scytonema ambikapurensis"],["NCBITaxon%3A2727002","Scytonema ambikapurensis TPJ-3"],["NCBITaxon%3A2666251","Scytonema bilaspurensis"],["NCBITaxon%3A1676468","Scytonema bilaspurensis 10C-PS"],["NCBITaxon%3A2984321","Scytonema bilaspurensis NK13"],["NCBITaxon%3A882802","Scytonema bohnerii"]]},{"id":"NCBITaxon:478070","l":"Labrenzia","na":1,"nb":203,"a":[["polyketides/labrenzin.yaml","labrenzin"]],"b":[["NCBITaxon%3A2738454","Labrenzia callyspongiae"],["NCBITaxon%3A1885934","Labrenzia sp."],["NCBITaxon%3A2171494","Labrenzia sp. 011"],["NCBITaxon%3A566486","Labrenzia sp. 06-027339"],["NCBITaxon%3A566487","Labrenzia sp. 06-028675"],["NCBITaxon%3A1914779","Labrenzia sp. 12b"]]},{"id":"NCBITaxon:28073","l":"Lyngbya","na":1,"nb":197,"a":[["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"]],"b":[["NCBITaxon%3A933334","Blennothrix cantharidosma"],["NCBITaxon%3A2006151","Capilliphycus tropicalis ALCB 114392"],["NCBITaxon%3A264748","Lyngbya aerugineo-coerulea"],["NCBITaxon%3A264749","Lyngbya aerugineo-coerulea PACC 8601"],["NCBITaxon%3A1304834","Lyngbya aerugineo-coerulea VB512251"],["NCBITaxon%3A118322","Lyngbya aestuarii"]]},{"id":"NCBITaxon:1851","l":"Saccharomonospora","na":1,"nb":192,"a":[["unclassified/taromycin-a.yaml","taromycin A"]],"b":[["NCBITaxon%3A1128677","Saccharomonospora amisosensis"],["NCBITaxon%3A40988","Saccharomonospora azurea"],["NCBITaxon%3A882081","Saccharomonospora azurea NA-128"],["NCBITaxon%3A1114959","Saccharomonospora azurea SZMC 14600"],["NCBITaxon%3A2040474","Saccharomonospora colocasiae"],["NCBITaxon%3A40989","Saccharomonospora cyanea"]]},{"id":"NCBITaxon:246875","l":"Algoriphagus","na":1,"nb":174,"a":[["polyketides/carotenoid.yaml","carotenoid"]],"b":[["NCBITaxon%3A1634955","Algoriphagus aestuarii"],["NCBITaxon%3A1852016","Algoriphagus aestuariicola"],["NCBITaxon%3A2593007","Algoriphagus algorifonticola"],["NCBITaxon%3A279824","Algoriphagus alkaliphilus"],["NCBITaxon%3A238540","Algoriphagus antarcticus"],["NCBITaxon%3A475299","Algoriphagus aquaeductus"]]},{"id":"NCBITaxon:54296","l":"Aphanizomenon gracile","na":1,"nb":158,"a":[["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"]],"b":[["NCBITaxon%3A136082","Aphanizomenon cf. gracile 271"],["NCBITaxon%3A54296","Aphanizomenon gracile"],["NCBITaxon%3A358537","Aphanizomenon gracile 0AU34S1"],["NCBITaxon%3A358539","Aphanizomenon gracile 0FT35S2"],["NCBITaxon%3A358543","Aphanizomenon gracile 0NO36S4"],["NCBITaxon%3A645895","Aphanizomenon gracile 1"]]},{"id":"NCBITaxon:109265","l":"Dolichospermum circinale","na":1,"nb":133,"a":[["alkaloids/anatoxin-a.yaml","anatoxin-a"]],"b":[["NCBITaxon%3A3085084","Anabaena circinalis CF7670"],["NCBITaxon%3A264674","Dolichospermum cf. circinale macrospora 0tu25s6"],["NCBITaxon%3A264670","Dolichospermum cf. circinale macrospora 1tu23s3"],["NCBITaxon%3A264671","Dolichospermum cf. circinale macrospora 1tu26s10"],["NCBITaxon%3A264672","Dolichospermum cf. circinale macrospora 1tu27s5"],["NCBITaxon%3A264673","Dolichospermum cf. circinale macrospora 1tu28s13"]]},{"id":"NCBITaxon:169133","l":"Citricoccus","na":1,"nb":124,"a":[["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"]],"b":[["NCBITaxon%3A246603","Citricoccus alkalitolerans"],["NCBITaxon%3A1688488","Citricoccus lacusdiani"],["NCBITaxon%3A2045010","Citricoccus massiliensis"],["NCBITaxon%3A169134","Citricoccus muralis"],["NCBITaxon%3A863575","Citricoccus nitrophenolicus"],["NCBITaxon%3A592307","Citricoccus parietis"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":1,"nb":124,"a":[["amino_acids_and_peptides/cutimycin.yaml","cutimycin"]],"b":[["NCBITaxon%3A1748","Acidipropionibacterium acidipropionici"],["NCBITaxon%3A1171373","Acidipropionibacterium acidipropionici ATCC 4875"],["NCBITaxon%3A1750","Arachnia propionica"],["NCBITaxon%3A38288","Corynebacterium genitalium"],["NCBITaxon%3A585529","Corynebacterium genitalium ATCC 33030"],["NCBITaxon%3A1747","Cutibacterium acnes"]]},{"id":"NCBITaxon:1051","l":"Ectothiorhodospira","na":1,"nb":120,"a":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]],"b":[["NCBITaxon%3A421628","Ectothiorhodospira haloalkaliphila"],["NCBITaxon%3A765873","Ectothiorhodospira haloalkaliphila ATCC 51935"],["NCBITaxon%3A480969","Ectothiorhodospira imhoffii"],["NCBITaxon%3A2899127","Ectothiorhodospira lacustris"],["NCBITaxon%3A867345","Ectothiorhodospira magna"],["NCBITaxon%3A1396821","Ectothiorhodospira marina"]]},{"id":"NCBITaxon:264691","l":"Trichormus variabilis","na":1,"nb":120,"a":[["unclassified/shinorine.yaml","shinorine"]],"b":[["NCBITaxon%3A264691","Trichormus variabilis"],["NCBITaxon%3A375899","Trichormus variabilis 0441"],["NCBITaxon%3A358556","Trichormus variabilis 9CH37S2"],["NCBITaxon%3A2681313","Trichormus variabilis 9RC"],["NCBITaxon%3A1392459","Trichormus variabilis A1"],["NCBITaxon%3A2799915","Trichormus variabilis A2"]]},{"id":"NCBITaxon:263","l":"Francisella tularensis","na":1,"nb":117,"a":[["polyketides/emodin.yaml","emodin"]],"b":[["NCBITaxon%3A984129","Francisella cf. novicida Fx1"],["NCBITaxon%3A676032","Francisella cf. tularensis subsp. novicida 3523"],["NCBITaxon%3A263","Francisella tularensis"],["NCBITaxon%3A1367846","Francisella tularensis 99A-2628"],["NCBITaxon%3A545771","Francisella tularensis B-SA"],["NCBITaxon%3A1410527","Francisella tularensis FSC069"]]},{"id":"NCBITaxon:2023","l":"Thermoactinomyces","na":1,"nb":113,"a":[["amino_acids_and_peptides/mechercharmycin.yaml","mechercharmycin"]],"b":[["NCBITaxon%3A40990","Saccharomonospora glauca"],["NCBITaxon%3A157274","Thermoactinomyces albus"],["NCBITaxon%3A1329516","Thermoactinomyces daqus"],["NCBITaxon%3A2024","Thermoactinomyces intermedius"],["NCBITaxon%3A1470181","Thermoactinomyces khenchelensis"],["NCBITaxon%3A2756294","Thermoactinomyces mirandus"]]},{"id":"NCBITaxon:29459","l":"Brucella melitensis","na":1,"nb":108,"a":[["fatty_acids/lipopolysaccharide.yaml","lipopolysaccharide"]],"b":[["NCBITaxon%3A36855","Brucella canis"],["NCBITaxon%3A483179","Brucella canis ATCC 23365"],["NCBITaxon%3A29459","Brucella melitensis"],["NCBITaxon%3A1341686","Brucella melitensis 02-5863-1"],["NCBITaxon%3A1388745","Brucella melitensis 02-7258"],["NCBITaxon%3A1266367","Brucella melitensis 043"]]},{"id":"NCBITaxon:1501433","l":"Kamptonema","na":1,"nb":101,"a":[["amino_acids_and_peptides/landornamide-a.yaml","landornamide A"]],"b":[["NCBITaxon%3A92934","Kamptonema animale"],["NCBITaxon%3A1892029","Kamptonema animale 48et"],["NCBITaxon%3A2930505","Kamptonema animale BEA 0982B"],["NCBITaxon%3A1546116","Kamptonema animale BTA258"],["NCBITaxon%3A1443097","Kamptonema animale C5"],["NCBITaxon%3A499848","Kamptonema animale CCALA 138"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":1,"nb":101,"a":[["fatty_acids/galactosylceramide.yaml","α-galactosylceramide"]],"b":[["NCBITaxon%3A817","Bacteroides fragilis"],["NCBITaxon%3A457424","Bacteroides fragilis 3_1_12"],["NCBITaxon%3A862962","Bacteroides fragilis 638R"],["NCBITaxon%3A1308728","Bacteroides fragilis ADL-402"],["NCBITaxon%3A1263046","Bacteroides fragilis CAG:47"],["NCBITaxon%3A1263047","Bacteroides fragilis CAG:558"]]},{"id":"NCBITaxon:1458928","l":"Okeania","na":1,"nb":85,"a":[["polyketides/doxorubicin.yaml","doxorubicin"]],"b":[["NCBITaxon%3A1458932","Okeania comitata"],["NCBITaxon%3A1387514","Okeania comitata 3L-OSC"],["NCBITaxon%3A1458933","Okeania erythroflocculosa"],["NCBITaxon%3A1387517","Okeania erythroflocculosa FFP12-1"],["NCBITaxon%3A643072","Okeania erythroflocculosa LP16"],["NCBITaxon%3A3799376","Okeania gaditana"]]},{"id":"NCBITaxon:44822","l":"Microcystis viridis","na":1,"nb":83,"a":[["amino_acids_and_peptides/microcystin-lr.yaml","microcystin-LR"]],"b":[["NCBITaxon%3A44822","Microcystis viridis"],["NCBITaxon%3A2798017","Microcystis viridis BKP_CS58"],["NCBITaxon%3A2798018","Microcystis viridis BKP_CS59"],["NCBITaxon%3A2798019","Microcystis viridis BKP_CS60"],["NCBITaxon%3A2798020","Microcystis viridis BKP_CS61"],["NCBITaxon%3A2798021","Microcystis viridis BKP_CS62"]]},{"id":"NCBITaxon:104204","l":"Streptomonospora","na":1,"nb":82,"a":[["polyketides/persiamycin-a.yaml","persiamycin A"]],"b":[["NCBITaxon%3A183763","Streptomonospora alba"],["NCBITaxon%3A995084","Streptomonospora algeriensis"],["NCBITaxon%3A505254","Streptomonospora amylolytica"],["NCBITaxon%3A412417","Streptomonospora arabica"],["NCBITaxon%3A505256","Streptomonospora flavalba"],["NCBITaxon%3A427369","Streptomonospora halophila"]]},{"id":"NCBITaxon:92942","l":"Nostoc linckia","na":1,"nb":77,"a":[["polyketides/cylindrocyclophane-d.yaml","Cylindrocyclophane D"]],"b":[["NCBITaxon%3A92942","Nostoc linckia"],["NCBITaxon%3A653360","Nostoc linckia 129"],["NCBITaxon%3A1977326","Nostoc linckia ACSSI 271"],["NCBITaxon%3A1565567","Nostoc linckia AUS-JR/BS/MS/NT-074"],["NCBITaxon%3A1887375","Nostoc linckia AUS-JR/MT/NT-091"],["NCBITaxon%3A1887376","Nostoc linckia AUS-JR/MT/NT-101"]]},{"id":"NCBITaxon:1764","l":"Mycobacterium avium","na":1,"nb":76,"a":[["fatty_acids/gpl-21.yaml","GPL-21"]],"b":[["NCBITaxon%3A1764","Mycobacterium avium"],["NCBITaxon%3A1392002","Mycobacterium avium 05-4293"],["NCBITaxon%3A1392001","Mycobacterium avium 09-5983"],["NCBITaxon%3A1235987","Mycobacterium avium 100"],["NCBITaxon%3A1235988","Mycobacterium avium 101"],["NCBITaxon%3A243243","Mycobacterium avium 104"]]},{"id":"NCBITaxon:373984","l":"Rivularia","na":1,"nb":70,"a":[["amino_acids_and_peptides/cyanochelin-a.yaml","cyanochelin A"]],"b":[["NCBITaxon%3A373990","Rivularia atra"],["NCBITaxon%3A373991","Rivularia atra BIR KRIV1"],["NCBITaxon%3A373992","Rivularia atra BIR MGR1"],["NCBITaxon%3A2886185","Rivularia atra TAU-MAC 3618"],["NCBITaxon%3A2136403","Rivularia biasolettiana"],["NCBITaxon%3A2136404","Rivularia biasolettiana RU1"]]},{"id":"NCBITaxon:1123","l":"Chlorogloeopsis","na":1,"nb":51,"a":[["unclassified/mycosporine-glycine.yaml","mycosporine glycine"]],"b":[["NCBITaxon%3A1124","Chlorogloeopsis fritschii"],["NCBITaxon%3A3373203","Chlorogloeopsis fritschii 0724_799_007_PCR_TH2D_31F"],["NCBITaxon%3A3373204","Chlorogloeopsis fritschii 0724_799_008_PCR_TH2D_32R"],["NCBITaxon%3A3157551","Chlorogloeopsis fritschii BACA0115"],["NCBITaxon%3A3157552","Chlorogloeopsis fritschii BACA0116"],["NCBITaxon%3A3157553","Chlorogloeopsis fritschii BACA0126"]]},{"id":"NCBITaxon:1165","l":"Anabaena cylindrica","na":1,"nb":51,"a":[["amino_acids_and_peptides/anachelin.yaml","anachelin"]],"b":[["NCBITaxon%3A136078","Anabaena cf. cylindrica 133"],["NCBITaxon%3A2716356","Anabaena cf. cylindrica BACA0067"],["NCBITaxon%3A136079","Anabaena cf. cylindrica PMC9705"],["NCBITaxon%3A264675","Anabaena cf. cylindrica XP6B"],["NCBITaxon%3A1165","Anabaena cylindrica"],["NCBITaxon%3A425377","Anabaena cylindrica A621"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":1,"nb":51,"a":[["alkaloids/petrobactin.yaml","petrobactin"]],"b":[["NCBITaxon%3A1392","Bacillus anthracis"],["NCBITaxon%3A1412844","Bacillus anthracis 52-G"],["NCBITaxon%3A1412843","Bacillus anthracis 8903-G"],["NCBITaxon%3A1412842","Bacillus anthracis 9080-G"],["NCBITaxon%3A1420588","Bacillus anthracis CVCC 40048"],["NCBITaxon%3A1439874","Bacillus anthracis CZC5"]]},{"id":"NCBITaxon:1518149","l":"Thalassotalea","na":1,"nb":51,"a":[["polyketides/kojic-acid.yaml","kojic acid"]],"b":[["NCBITaxon%3A864068","Thalassotalea agariperforans"],["NCBITaxon%3A349064","Thalassotalea agarivorans"],["NCBITaxon%3A2716224","Thalassotalea algicola"],["NCBITaxon%3A3242415","Thalassotalea aquiviva"],["NCBITaxon%3A2054316","Thalassotalea atypica"],["NCBITaxon%3A3075612","Thalassotalea castellviae"]]},{"id":"NCBITaxon:75695","l":"Umezakia ovalisporum","na":1,"nb":48,"a":[["alkaloids/7-epi-cylindrospermopsin.yaml","7-epi-cylindrospermopsin"]],"b":[["NCBITaxon%3A75695","Umezakia ovalisporum"],["NCBITaxon%3A543814","Umezakia ovalisporum 1LT27S04"],["NCBITaxon%3A543812","Umezakia ovalisporum 2LT27S02"],["NCBITaxon%3A543813","Umezakia ovalisporum 2LT27S12"],["NCBITaxon%3A2290998","Umezakia ovalisporum A1"],["NCBITaxon%3A985844","Umezakia ovalisporum AB2010/05"]]},{"id":"NCBITaxon:446","l":"Legionella pneumophila","na":1,"nb":47,"a":[["fatty_acids/lipopolysaccharide.yaml","lipopolysaccharide"]],"b":[["NCBITaxon%3A446","Legionella pneumophila"],["NCBITaxon%3A866628","Legionella pneumophila 130b"],["NCBITaxon%3A423212","Legionella pneumophila 2300/99 Alcoy"],["NCBITaxon%3A1370127","Legionella pneumophila Leg01/16"],["NCBITaxon%3A66976","Legionella pneumophila serogroup 1"],["NCBITaxon%3A66985","Legionella pneumophila serogroup 10"]]},{"id":"NCBITaxon:5094","l":"Talaromyces","na":1,"nb":44,"a":[["unclassified/chrodrimanin-b.yaml","chrodrimanin B"]],"b":[["NCBITaxon%3A36649","Talaromyces aculeatus"],["NCBITaxon%3A1392253","Talaromyces aculeatus ATCC 10409"],["NCBITaxon%3A1974180","Talaromyces adpressus"],["NCBITaxon%3A1196081","Talaromyces amestolkiae"],["NCBITaxon%3A1441469","Talaromyces atroroseus"],["NCBITaxon%3A36052","Talaromyces bacillisporus"]]},{"id":"NCBITaxon:644","l":"Aeromonas hydrophila","na":1,"nb":44,"a":[["amino_acids_and_peptides/amonabactin-p-750.yaml","amonabactin P 750"]],"b":[["NCBITaxon%3A105751","Aeromonas bestiarum"],["NCBITaxon%3A648","Aeromonas caviae"],["NCBITaxon%3A196024","Aeromonas dhakensis"],["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A1073378","Aeromonas hydrophila 07-345-3437"],["NCBITaxon%3A1268075","Aeromonas hydrophila 116"]]},{"id":"NCBITaxon:384","l":"Rhizobium leguminosarum","na":1,"nb":39,"a":[["amino_acids_and_peptides/vicibactin.yaml","vicibactin"]],"b":[["NCBITaxon%3A3019932","Rhizobium brockwellii"],["NCBITaxon%3A384","Rhizobium leguminosarum"],["NCBITaxon%3A385","Rhizobium leguminosarum bv. phaseoli"],["NCBITaxon%3A936350","Rhizobium leguminosarum bv. phaseoli 4292"],["NCBITaxon%3A1408223","Rhizobium leguminosarum bv. phaseoli CCGM1"],["NCBITaxon%3A1041140","Rhizobium leguminosarum bv. phaseoli FA23"]]},{"id":"NCBITaxon:715","l":"Actinobacillus pleuropneumoniae","na":1,"nb":35,"a":[["unclassified/capsular-polysaccharide.yaml","capsular polysaccharide"]],"b":[["NCBITaxon%3A44930","Natronobacterium gregoryi"],["NCBITaxon%3A797304","Natronobacterium gregoryi SP2"],["NCBITaxon%3A715","Actinobacillus pleuropneumoniae"],["NCBITaxon%3A1224142","Actinobacillus pleuropneumoniae S8"],["NCBITaxon%3A40325","Actinobacillus pleuropneumoniae serovar 1"],["NCBITaxon%3A754347","Actinobacillus pleuropneumoniae serovar 10"]]},{"id":"NCBITaxon:77133","l":"uncultured bacterium","na":34,"nb":1,"a":[["alkaloids/borregomycin-a.yaml","borregomycin A"],["alkaloids/borregomycin-b.yaml","borregomycin B"],["alkaloids/borregomycin-c.yaml","borregomycin C"],["alkaloids/borregomycin-d.yaml","borregomycin D"],["alkaloids/erdasporine-a.yaml","erdasporine A"],["alkaloids/erdasporine-b.yaml","erdasporine B"]],"b":[["NCBITaxon%3A77133","uncultured bacterium"]]},{"id":"NCBITaxon:4842","l":"Rhizopus","na":1,"nb":31,"a":[["unclassified/rhizoxin-a.yaml","rhizoxin A"]],"b":[["NCBITaxon%3A235392","Rhizopus americanus"],["NCBITaxon%3A64495","Rhizopus arrhizus"],["NCBITaxon%3A1279478","Rhizopus arrhizus 99-133"],["NCBITaxon%3A1279482","Rhizopus arrhizus 99-892"],["NCBITaxon%3A1274785","Rhizopus arrhizus B7407"],["NCBITaxon%3A1279480","Rhizopus arrhizus HUMC 02"]]},{"id":"NCBITaxon:467598","l":"Microseira wollei","na":1,"nb":30,"a":[["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"]],"b":[["NCBITaxon%3A467598","Microseira wollei"],["NCBITaxon%3A1328888","Microseira wollei AW0709"],["NCBITaxon%3A1549807","Microseira wollei AW2009"],["NCBITaxon%3A3082152","Microseira wollei CHAB5998"],["NCBITaxon%3A3082153","Microseira wollei CHAB5999"],["NCBITaxon%3A3082154","Microseira wollei CHAB6000"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":1,"nb":28,"a":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]],"b":[["NCBITaxon%3A729","Haemophilus parainfluenzae"],["NCBITaxon%3A43306","Pseudomonas denitrificans (nom. rej.)"],["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A203192","Stutzerimonas chloritidismutans"],["NCBITaxon%3A3022791","Stutzerimonas decontaminans"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":1,"nb":27,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]],"b":[["NCBITaxon%3A57706","Citrobacter braakii"],["NCBITaxon%3A1914243","Citrobacter europaeus"],["NCBITaxon%3A546","Citrobacter freundii"],["NCBITaxon%3A1173724","Citrobacter freundii 47N"],["NCBITaxon%3A742730","Citrobacter freundii 4_7_47CFAA"],["NCBITaxon%3A1444046","Citrobacter freundii 5-172-05_S1_C1"]]},{"id":"NCBITaxon:119534","l":"Tolypothrix distorta","na":1,"nb":25,"a":[["carbohydrates/tubercidin.yaml","tubercidin"]],"b":[["NCBITaxon%3A119534","Tolypothrix distorta"],["NCBITaxon%3A1892412","Tolypothrix distorta ACOI 731"],["NCBITaxon%3A2493220","Tolypothrix distorta ACT712"],["NCBITaxon%3A2493221","Tolypothrix distorta ATE705"],["NCBITaxon%3A2493222","Tolypothrix distorta ATE717"],["NCBITaxon%3A1496268","Tolypothrix distorta BTA187"]]},{"id":"NCBITaxon:135461","l":"Bacillus subtilis subsp. subtilis","na":1,"nb":25,"a":[["unclassified/fengycin.yaml","fengycin"]],"b":[["NCBITaxon%3A1390","Bacillus amyloliquefaciens"],["NCBITaxon%3A1452","Bacillus atrophaeus"],["NCBITaxon%3A640707","Bacillus atrophaeus ATCC 9372"],["NCBITaxon%3A96241","Bacillus spizizenii"],["NCBITaxon%3A1423","Bacillus subtilis"],["NCBITaxon%3A135461","Bacillus subtilis subsp. subtilis"]]},{"id":"NCBITaxon:37991","l":"Xylaria","na":1,"nb":25,"a":[["fatty_acids/depudecin.yaml","depudecin"]],"b":[["NCBITaxon%3A114808","Xylaria acuta"],["NCBITaxon%3A114810","Xylaria arbuscula"],["NCBITaxon%3A326684","Xylaria bambusicola"],["NCBITaxon%3A2492676","Xylaria berteroi"],["NCBITaxon%3A492089","Xylaria brunneovinosa"],["NCBITaxon%3A114812","Xylaria castorea"]]},{"id":"NCBITaxon:439476","l":"Heteroscytonema crispum","na":1,"nb":25,"a":[["alkaloids/neosaxitoxin.yaml","neosaxitoxin"]],"b":[["NCBITaxon%3A2493241","Heteroscytonema cf. crispum ACT685"],["NCBITaxon%3A1123970","Heteroscytonema cf. crispum UCFS16"],["NCBITaxon%3A1123971","Heteroscytonema cf. crispum UCFS17"],["NCBITaxon%3A1123972","Heteroscytonema cf. crispum UCFS21"],["NCBITaxon%3A439476","Heteroscytonema crispum"],["NCBITaxon%3A439477","Heteroscytonema crispum 00557"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":23,"nb":1,"a":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/melanin.yaml","melanin"],["alkaloids/undecylprodigiosin.yaml","undecylprodigiosin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/sapb.yaml","SapB"]],"b":[["NCBITaxon%3A100226","Streptomyces coelicolor A3(2)"]]},{"id":"NCBITaxon:53","l":"Nannocystis","na":1,"nb":23,"a":[["unclassified/nannocystin-a.yaml","nannocystin a"]],"b":[["NCBITaxon%3A83457","Nannocystis aggregans"],["NCBITaxon%3A2995303","Nannocystis bainbridge"],["NCBITaxon%3A54","Nannocystis exedens"],["NCBITaxon%3A1366054","Nannocystis exedens subsp. cinnabaria"],["NCBITaxon%3A2066023","Nannocystis konarekensis"],["NCBITaxon%3A2995304","Nannocystis punicea"]]},{"id":"NCBITaxon:33178","l":"Aspergillus terreus","na":22,"nb":1,"a":[["alkaloids/asterriquinone-ct5.yaml","asterriquinone CT5"],["alkaloids/cytochalasin-e.yaml","cytochalasin E"],["alkaloids/dihydroisoflavipucine.yaml","dihydroisoflavipucine"],["alkaloids/terrequinone-a.yaml","terrequinone A"],["amino_acids_and_peptides/valactamide-a.yaml","valactamide A"],["polyketides/citreoviridin.yaml","citreoviridin"]],"b":[["NCBITaxon%3A33178","Aspergillus terreus"]]},{"id":"NCBITaxon:331992","l":"Kamptonema formosum","na":1,"nb":22,"a":[["alkaloids/homoanatoxin-a.yaml","homoanatoxin-a"]],"b":[["NCBITaxon%3A493197","Kamptonema cf. formosum P-FW"],["NCBITaxon%3A493198","Kamptonema cf. formosum P-O"],["NCBITaxon%3A331992","Kamptonema formosum"],["NCBITaxon%3A1887363","Kamptonema formosum AUS-JR/AP/NT-078"],["NCBITaxon%3A2711225","Kamptonema formosum BDU30603"],["NCBITaxon%3A1977282","Kamptonema formosum BDU 30603"]]},{"id":"NCBITaxon:85698","l":"Achromobacter xylosoxidans","na":1,"nb":21,"a":[["amino_acids_and_peptides/alcaligin.yaml","alcaligin"]],"b":[["NCBITaxon%3A1389935","Achromobacter animicus"],["NCBITaxon%3A1353891","Achromobacter deleyi"],["NCBITaxon%3A32002","Achromobacter denitrificans"],["NCBITaxon%3A217204","Achromobacter insolitus"],["NCBITaxon%3A1287735","Achromobacter insuavis"],["NCBITaxon%3A470868","Achromobacter marplatensis"]]},{"id":"NCBITaxon:2878388","l":"Streptomyces marincola","na":20,"nb":1,"a":[["alkaloids/indimicin-a.yaml","indimicin A"],["alkaloids/indimicin-b.yaml","indimicin B"],["alkaloids/indimicin-c.yaml","indimicin C"],["alkaloids/indimicin-d.yaml","indimicin D"],["alkaloids/indimicin-e.yaml","indimicin E"],["alkaloids/lynamicin-a.yaml","lynamicin A"]],"b":[["NCBITaxon%3A2878388","Streptomyces marincola"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":20,"nb":1,"a":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/c-3-sulfonylated-derivative.yaml","C-3 sulfonylated derivative"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["alkaloids/n-n-dioxide-containing-derivate.yaml","N,N-dioxide containing derivate"]],"b":[["NCBITaxon%3A332952","Aspergillus flavus NRRL3357"]]},{"id":"NCBITaxon:414715","l":"Actinospica","na":1,"nb":20,"a":[["amino_acids_and_peptides/vancomycin.yaml","vancomycin"]],"b":[["NCBITaxon%3A304899","Actinospica acidiphila"],["NCBITaxon%3A2828514","Actinospica acidithermotolerans"],["NCBITaxon%3A1508375","Actinospica durhamensis"],["NCBITaxon%3A304901","Actinospica robiniae"],["NCBITaxon%3A479430","Actinospica robiniae DSM 44927"],["NCBITaxon%3A1872142","Actinospica sp."]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":1,"nb":20,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]],"b":[["NCBITaxon%3A548","Klebsiella aerogenes"],["NCBITaxon%3A1308731","Klebsiella aerogenes ADL-323"],["NCBITaxon%3A935296","Klebsiella aerogenes EA1509E"],["NCBITaxon%3A685445","Klebsiella aerogenes FGI35"],["NCBITaxon%3A1028307","Klebsiella aerogenes KCTC 2190"],["NCBITaxon%3A1439320","Klebsiella aerogenes MGH 61"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":1,"nb":19,"a":[["amino_acids_and_peptides/bacitracin.yaml","bacitracin"]],"b":[["NCBITaxon%3A1402","Bacillus licheniformis"],["NCBITaxon%3A1169411","Bacillus licheniformis 10-1-A"],["NCBITaxon%3A44097","Bacillus licheniformis 2709"],["NCBITaxon%3A1169412","Bacillus licheniformis 5-2-D"],["NCBITaxon%3A1368424","Bacillus licheniformis CG-B52"],["NCBITaxon%3A1232672","Bacillus licheniformis CGMCC 3963"]]},{"id":"NCBITaxon:43987","l":"Geotrichum","na":1,"nb":19,"a":[["terpenoids/mk-8.yaml","MK-8"]],"b":[["NCBITaxon%3A44075","Geotrichum aggregatum"],["NCBITaxon%3A27315","Geotrichum albidum"],["NCBITaxon%3A43976","Geotrichum australiense"],["NCBITaxon%3A44078","Geotrichum geniculatum"],["NCBITaxon%3A2862415","Geotrichum siamense (nom. inval.)"],["NCBITaxon%3A43962","Geotrichum armillariae"]]},{"id":"NCBITaxon:5110","l":"Claviceps","na":1,"nb":19,"a":[["alkaloids/elymoclavine.yaml","elymoclavine"]],"b":[["NCBITaxon%3A2559226","Claviceps aff. humidiphila group G2b"],["NCBITaxon%3A1967640","Claviceps aff. purpurea"],["NCBITaxon%3A83212","Claviceps africana"],["NCBITaxon%3A1623583","Claviceps arundinis"],["NCBITaxon%3A1649128","Claviceps capensis"],["NCBITaxon%3A62069","Claviceps citrina"]]},{"id":"NCBITaxon:672","l":"Vibrio vulnificus","na":1,"nb":19,"a":[["alkaloids/vulnibactin.yaml","vulnibactin"]],"b":[["NCBITaxon%3A678","Vibrio sp."],["NCBITaxon%3A672","Vibrio vulnificus"],["NCBITaxon%3A701179","Vibrio vulnificus 06-2450"],["NCBITaxon%3A1246308","Vibrio vulnificus 96-11-17M"],["NCBITaxon%3A1246309","Vibrio vulnificus A1402"],["NCBITaxon%3A1229202","Vibrio vulnificus B2"]]},{"id":"NCBITaxon:92938","l":"Fischerella muscicola","na":1,"nb":19,"a":[["alkaloids/welwitindolinone-a-isonitrile.yaml","welwitindolinone A isonitrile"]],"b":[["NCBITaxon%3A92938","Fischerella muscicola"],["NCBITaxon%3A1887362","Fischerella muscicola AUS-JR/AP/NT-083"],["NCBITaxon%3A1397105","Fischerella muscicola AUS-JR/SD/MS-035"],["NCBITaxon%3A2676271","Fischerella muscicola AYJ115"],["NCBITaxon%3A1917995","Fischerella muscicola BHU31"],["NCBITaxon%3A2737729","Fischerella muscicola C-03"]]},{"id":"NCBITaxon:95486","l":"Burkholderia cenocepacia","na":1,"nb":18,"a":[["unclassified/ornibactin-c8.yaml","ornibactin C8"]],"b":[["NCBITaxon%3A95486","Burkholderia cenocepacia"],["NCBITaxon%3A1110700","Burkholderia cenocepacia AU16956"],["NCBITaxon%3A1110701","Burkholderia cenocepacia AU16958"],["NCBITaxon%3A985077","Burkholderia cenocepacia BC7"],["NCBITaxon%3A1165869","Burkholderia cenocepacia D2AES"],["NCBITaxon%3A1055524","Burkholderia cenocepacia H111"]]},{"id":"NCBITaxon:378806","l":"Allostigmatella aurantiaca DW4/3-1","na":17,"nb":1,"a":[["polyketides/aurafuron-a.yaml","aurafuron A"],["polyketides/dawenol.yaml","dawenol"],["unclassified/dkxanthene-504.yaml","dkxanthene 504"],["unclassified/dkxanthene-508.yaml","dkxanthene 508"],["unclassified/dkxanthene-518.yaml","dkxanthene 518"],["unclassified/dkxanthene-520.yaml","dkxanthene 520"]],"b":[["NCBITaxon%3A378806","Allostigmatella aurantiaca DW4/3-1"]]},{"id":"NCBITaxon:68042","l":"Streptomyces hygroscopicus subsp. hygroscopicus","na":1,"nb":17,"a":[["terpenoids/hygromycin-a.yaml","hygromycin A"]],"b":[["NCBITaxon%3A68175","Streptomyces antimycoticus"],["NCBITaxon%3A1226758","Streptomyces antimycoticus subsp. mordarskii"],["NCBITaxon%3A476551","Streptomyces ascomycinicus"],["NCBITaxon%3A114699","Streptomyces asiaticus"],["NCBITaxon%3A3098222","Streptomyces asiaticus subsp. ignotus"],["NCBITaxon%3A998084","Streptomyces himastatinicus"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":1,"nb":16,"a":[["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]],"b":[["NCBITaxon%3A1408","Bacillus pumilus"],["NCBITaxon%3A536229","Bacillus pumilus ATCC 7061"],["NCBITaxon%3A1227811","Bacillus pumilus BA06"],["NCBITaxon%3A1189615","Bacillus pumilus BL8"],["NCBITaxon%3A1350468","Bacillus pumilus CCMA-560"],["NCBITaxon%3A1330463","Bacillus pumilus CIMFR"]]},{"id":"NCBITaxon:1510471","l":"Nostoc sp. CAVN2","na":16,"nb":1,"a":[["polyketides/carbamidocyclophane-a.yaml","carbamidocyclophane A"],["polyketides/carbamidocyclophane-b.yaml","carbamidocyclophane B"],["polyketides/carbamidocyclophane-c.yaml","carbamidocyclophane C"],["polyketides/carbamidocyclophane-d.yaml","carbamidocyclophane D"],["polyketides/carbamidocyclophane-e.yaml","carbamidocyclophane E"],["polyketides/carbamidocyclophane-f.yaml","carbamidocyclophane F"]],"b":[["NCBITaxon%3A1510471","Nostoc sp. CAVN2"]]},{"id":"NCBITaxon:1549217","l":"Aspergillus stellatus","na":16,"nb":1,"a":[["fatty_acids/dioic-acid-moiety.yaml","dioic acid moiety"],["polyketides/4-methyl-5-dimethyltetradecahexaene-ketolactone.yaml","4-methyl-5-dimethyltetradecahexaene-β-ketolactone"],["polyketides/4-methyl-5-methylheptatriene-ketolactone.yaml","4-methyl-5-methylheptatriene-β-ketolactone"],["polyketides/calbistrin-a.yaml","calbistrin A"],["polyketides/calbistrin-c.yaml","calbistrin C"],["polyketides/decumbenone-a.yaml","decumbenone a"]],"b":[["NCBITaxon%3A1549217","Aspergillus stellatus"]]},{"id":"NCBITaxon:1958824","l":"Streptomyces sp. KY5","na":16,"nb":1,"a":[["polyketides/fasamycin-c.yaml","fasamycin C"],["polyketides/fasamycin-d.yaml","fasamycin D"],["polyketides/fasamycin-e.yaml","fasamycin E"],["polyketides/formicamycin-a.yaml","formicamycin A"],["polyketides/formicamycin-b.yaml","formicamycin B"],["polyketides/formicamycin-c.yaml","formicamycin C"]],"b":[["NCBITaxon%3A1958824","Streptomyces sp. KY5"]]},{"id":"NCBITaxon:587753","l":"Pseudomonas chlororaphis","na":1,"nb":16,"a":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]],"b":[["NCBITaxon%3A587753","Pseudomonas chlororaphis"],["NCBITaxon%3A1343078","Pseudomonas chlororaphis HT66"],["NCBITaxon%3A1037915","Pseudomonas chlororaphis O6"],["NCBITaxon%3A1400530","Pseudomonas chlororaphis PCYL_1"],["NCBITaxon%3A86192","Pseudomonas chlororaphis subsp. aurantiaca"],["NCBITaxon%3A1415170","Pseudomonas chlororaphis subsp. aurantiaca PB-St2"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":1,"nb":15,"a":[["amino_acids_and_peptides/salivaricin-d.yaml","salivaricin D"]],"b":[["NCBITaxon%3A1304","Streptococcus salivarius"],["NCBITaxon%3A1046629","Streptococcus salivarius 57.I"],["NCBITaxon%3A1420586","Streptococcus salivarius ATCC 25975"],["NCBITaxon%3A1263109","Streptococcus salivarius CAG:79"],["NCBITaxon%3A1048332","Streptococcus salivarius CCHSS3"],["NCBITaxon%3A1255635","Streptococcus salivarius CJ181"]]},{"id":"NCBITaxon:34451","l":"Cortinarius","na":1,"nb":15,"a":[["polyketides/clavorubin.yaml","Clavorubin"]],"b":[["NCBITaxon%3A231915","Cortinarius abnormis"],["NCBITaxon%3A2511838","Cortinarius aff. campbellae"],["NCBITaxon%3A112255","Cortinarius archeri"],["NCBITaxon%3A561959","Cortinarius aurantiobasis"],["NCBITaxon%3A742016","Cortinarius austrovenetus"],["NCBITaxon%3A86082","Cortinarius brunneus"]]},{"id":"NCBITaxon:41900","l":"Aspergillus flavipes","na":15,"nb":1,"a":[["alkaloids/aspergillin-pz.yaml","aspergillin PZ"],["alkaloids/aspochalasin-c.yaml","aspochalasin C"],["alkaloids/aspochalasin-e.yaml","aspochalasin E"],["alkaloids/aspochalasin-m.yaml","aspochalasin M"],["alkaloids/cytochalasin-e.yaml","cytochalasin E"],["alkaloids/flavichalasine-f.yaml","flavichalasine F"]],"b":[["NCBITaxon%3A41900","Aspergillus flavipes"]]},{"id":"NCBITaxon:41951","l":"Streptomyces argillaceus","na":15,"nb":1,"a":[["alkaloids/argimycin-pi.yaml","argimycin PI"],["alkaloids/argimycin-pii.yaml","argimycin PII"],["alkaloids/argimycin-piv.yaml","argimycin PIV"],["alkaloids/argimycin-pix.yaml","argimycin PIX"],["alkaloids/argimycin-pv.yaml","argimycin PV"],["alkaloids/argimycin-pvi.yaml","argimycin PVI"]],"b":[["NCBITaxon%3A41951","Streptomyces argillaceus"]]},{"id":"NCBITaxon:43657","l":"Pseudoalteromonas luteoviolacea","na":1,"nb":15,"a":[["shikimates_and_phenylpropanoids/pentabromopseudilin.yaml","pentabromopseudilin"]],"b":[["NCBITaxon%3A43657","Pseudoalteromonas luteoviolacea"],["NCBITaxon%3A1353533","Pseudoalteromonas luteoviolacea 2ta16"],["NCBITaxon%3A1268239","Pseudoalteromonas luteoviolacea B = ATCC 29581"],["NCBITaxon%3A1365248","Pseudoalteromonas luteoviolacea CPMOR-1"],["NCBITaxon%3A1365249","Pseudoalteromonas luteoviolacea CPMOR-2"],["NCBITaxon%3A1365250","Pseudoalteromonas luteoviolacea DSM 6061"]]},{"id":"NCBITaxon:5127","l":"Fusarium fujikuroi","na":15,"nb":1,"a":[["alkaloids/fusaric-acid.yaml","fusaric acid"],["alkaloids/fusarin-c.yaml","fusarin C"],["polyketides/bikaverin.yaml","bikaverin"],["polyketides/fujikurin-c.yaml","fujikurin C"],["polyketides/fujikurin-d.yaml","fujikurin D"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"]],"b":[["NCBITaxon%3A5127","Fusarium fujikuroi"]]},{"id":"NCBITaxon:645","l":"Aeromonas salmonicida","na":1,"nb":15,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A645","Aeromonas salmonicida"],["NCBITaxon%3A113288","Aeromonas salmonicida subsp. achromogenes"],["NCBITaxon%3A1233098","Aeromonas salmonicida subsp. achromogenes AS03"],["NCBITaxon%3A316054","Aeromonas salmonicida subsp. flounderacida"],["NCBITaxon%3A197700","Aeromonas salmonicida subsp. masoucida"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":1,"nb":15,"a":[["unclassified/ape-vf.yaml","APE Vf"]],"b":[["NCBITaxon%3A668","Aliivibrio fischeri"],["NCBITaxon%3A617136","Aliivibrio fischeri 1-C10"],["NCBITaxon%3A617138","Aliivibrio fischeri 9ZB36"],["NCBITaxon%3A1298605","Aliivibrio fischeri ATCC 7744 = JCM 18803 = DSM 507"],["NCBITaxon%3A1367486","Aliivibrio fischeri CB37"],["NCBITaxon%3A1367487","Aliivibrio fischeri EM17"]]},{"id":"NCBITaxon:29909","l":"Tolypocladium","na":1,"nb":14,"a":[["alkaloids/tolypyridone-c.yaml","tolypyridone C"]],"b":[["NCBITaxon%3A124418","Tolypocladium album"],["NCBITaxon%3A1436175","Tolypocladium amazonense"],["NCBITaxon%3A45235","Tolypocladium capitatum"],["NCBITaxon%3A38005","Tolypocladium cylindrosporum"],["NCBITaxon%3A1436177","Tolypocladium endophyticum"],["NCBITaxon%3A38000","Tolypocladium geodes"]]},{"id":"NCBITaxon:457083","l":"Tolypothrix tenuis","na":1,"nb":14,"a":[["carbohydrates/toyocamycin.yaml","toyocamycin"]],"b":[["NCBITaxon%3A1205934","Tolypothrix cf. tenuis UAM 392"],["NCBITaxon%3A457083","Tolypothrix tenuis"],["NCBITaxon%3A1892413","Tolypothrix tenuis CCALA 197"],["NCBITaxon%3A1496327","Tolypothrix tenuis CG21"],["NCBITaxon%3A1136103","Tolypothrix tenuis f. terrestris"],["NCBITaxon%3A1357513","Tolypothrix tenuis FACHB-128"]]},{"id":"NCBITaxon:5518","l":"Fusarium graminearum","na":14,"nb":1,"a":[["amino_acids_and_peptides/fusaoctaxin-a.yaml","fusaoctaxin A"],["polyketides/aurofusarin.yaml","aurofusarin"],["polyketides/fusarielin-h.yaml","fusarielin H"],["polyketides/gibepyrone-a.yaml","gibepyrone A"],["polyketides/prolipyrone-b.yaml","prolipyrone B"],["polyketides/zearalenone.yaml","zearalenone"]],"b":[["NCBITaxon%3A5518","Fusarium graminearum"]]},{"id":"NCBITaxon:1292","l":"Staphylococcus warneri","na":1,"nb":13,"a":[["amino_acids_and_peptides/nukacin-isk-1.yaml","nukacin ISK-1"]],"b":[["NCBITaxon%3A1283","Staphylococcus haemolyticus"],["NCBITaxon%3A1290","Staphylococcus hominis"],["NCBITaxon%3A29385","Staphylococcus saprophyticus"],["NCBITaxon%3A29387","Staphylococcus sp."],["NCBITaxon%3A1292","Staphylococcus warneri"],["NCBITaxon%3A1255582","Staphylococcus warneri 1445"]]},{"id":"NCBITaxon:1871188","l":"Kitasatospora sp.","na":13,"nb":1,"a":[["polyketides/clifednamide-d.yaml","clifednamide D"],["polyketides/clifednamide-g.yaml","clifednamide G"],["polyketides/clifednamide-h.yaml","clifednamide H"],["unclassified/clifednamide-e.yaml","clifednamide E"],["unclassified/clifednamide-f.yaml","clifednamide F"],["unclassified/clifednamide-i.yaml","clifednamide I"]],"b":[["NCBITaxon%3A1871188","Kitasatospora sp."]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":13,"nb":1,"a":[["alkaloids/holomycin.yaml","holomycin"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/2-formyloxymethylclavam.yaml","2-formyloxymethylclavam"],["amino_acids_and_peptides/2-hydroxymethylclavam.yaml","2-hydroxymethylclavam"],["amino_acids_and_peptides/alanylclavam.yaml","alanylclavam"],["amino_acids_and_peptides/cephamycin-c.yaml","cephamycin C"]],"b":[["NCBITaxon%3A1901","Streptomyces clavuligerus"]]},{"id":"NCBITaxon:29449","l":"Rhizobium etli","na":1,"nb":13,"a":[["amino_acids_and_peptides/vicibactin.yaml","vicibactin"]],"b":[["NCBITaxon%3A29449","Rhizobium etli"],["NCBITaxon%3A538025","Rhizobium etli 8C-3"],["NCBITaxon%3A323733","Rhizobium etli bv. mimosae"],["NCBITaxon%3A1432050","Rhizobium etli bv. mimosae str. IE4771"],["NCBITaxon%3A1328306","Rhizobium etli bv. mimosae str. Mim1"],["NCBITaxon%3A147700","Rhizobium etli bv. phaseoli"]]},{"id":"NCBITaxon:5583","l":"Exophiala","na":1,"nb":13,"a":[["polyketides/asperlactone.yaml","asperlactone"]],"b":[["NCBITaxon%3A91920","Exophiala alcalophila"],["NCBITaxon%3A135514","Exophiala calicioides"],["NCBITaxon%3A414539","Exophiala crusticola"],["NCBITaxon%3A5970","Exophiala dermatitidis"],["NCBITaxon%3A858893","Exophiala dermatitidis NIH/UT8656"],["NCBITaxon%3A91925","Exophiala lecanii-corni"]]},{"id":"NCBITaxon:68270","l":"Streptomyces spectabilis","na":13,"nb":1,"a":[["alkaloids/melanin.yaml","melanin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/ectoine.yaml","ectoine"],["carbohydrates/actinospectacin.yaml","actinospectacin"],["carbohydrates/spectinomycin.yaml","spectinomycin"],["polyketides/merochlorin-c.yaml","merochlorin C"]],"b":[["NCBITaxon%3A68270","Streptomyces spectabilis"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis H37Rv","na":1,"nb":13,"a":[["unclassified/mycobactin.yaml","mycobactin"]],"b":[["NCBITaxon%3A1773","Mycobacterium tuberculosis"],["NCBITaxon%3A83332","Mycobacterium tuberculosis H37Rv"],["NCBITaxon%3A747078","Mycobacterium tuberculosis H37Rv_2009"],["NCBITaxon%3A928249","Mycobacterium tuberculosis H37Rv_ideR_mutant_ST22"],["NCBITaxon%3A757417","Mycobacterium tuberculosis H37RvAE"],["NCBITaxon%3A757419","Mycobacterium tuberculosis H37RvCO"]]},{"id":"NCBITaxon:1048205","l":"Streptomyces uncialis","na":12,"nb":1,"a":[["alkaloids/ammosamaic-acid-cogener.yaml","ammosamaic acid cogener"],["alkaloids/ammosester-a.yaml","ammosester A"],["alkaloids/ammosester-b.yaml","ammosester B"],["alkaloids/ammosester-c.yaml","ammosester C"],["alkaloids/cladoniamide-a.yaml","cladoniamide A"],["alkaloids/cladoniamide-b.yaml","cladoniamide B"]],"b":[["NCBITaxon%3A1048205","Streptomyces uncialis"]]},{"id":"NCBITaxon:1202","l":"Leptolyngbya ectocarpi","na":1,"nb":12,"a":[["polyketides/hierridin-b.yaml","hierridin B"]],"b":[["NCBITaxon%3A1715276","Leptolyngbya aff. ectocarpi LEGE 11389"],["NCBITaxon%3A1828765","Leptolyngbya aff. ectocarpi LEGE 11473"],["NCBITaxon%3A1828722","Leptolyngbya cf. ectocarpi LEGE 11479"],["NCBITaxon%3A1202","Leptolyngbya ectocarpi"],["NCBITaxon%3A2931369","Leptolyngbya ectocarpi BEA 1211B"],["NCBITaxon%3A2931370","Leptolyngbya ectocarpi BEA 1374B"]]},{"id":"NCBITaxon:1208","l":"Trichodesmium thiebautii","na":1,"nb":12,"a":[["polyketides/doxorubicin.yaml","doxorubicin"]],"b":[["NCBITaxon%3A1208","Trichodesmium thiebautii"],["NCBITaxon%3A3080575","Trichodesmium thiebautii GoM2017"],["NCBITaxon%3A3080765","Trichodesmium thiebautii GoM-2019-11"],["NCBITaxon%3A1045877","Trichodesmium thiebautii H94"],["NCBITaxon%3A306282","Trichodesmium thiebautii II-3"],["NCBITaxon%3A2827264","Trichodesmium thiebautii sct-8t3"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":1,"nb":12,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]],"b":[["NCBITaxon%3A72000","Kocuria rhizophila"],["NCBITaxon%3A378753","Kocuria rhizophila DC2201"],["NCBITaxon%3A1272","Kocuria varians"],["NCBITaxon%3A1270","Micrococcus luteus"],["NCBITaxon%3A1357403","Micrococcus luteus CD1_FAA_NB_1"],["NCBITaxon%3A935864","Micrococcus luteus J28"]]},{"id":"NCBITaxon:1401878","l":"Microcystis aeruginosa LEGE 91341","na":12,"nb":1,"a":[["amino_acids_and_peptides/microginin-558.yaml","microginin 558"],["amino_acids_and_peptides/microginin-592.yaml","microginin 592"],["amino_acids_and_peptides/microginin-626.yaml","microginin 626"],["amino_acids_and_peptides/microginin-705.yaml","microginin 705"],["amino_acids_and_peptides/microginin-721.yaml","microginin 721"],["amino_acids_and_peptides/microginin-735.yaml","microginin 735"]],"b":[["NCBITaxon%3A1401878","Microcystis aeruginosa LEGE 91341"]]},{"id":"NCBITaxon:1433842","l":"Hapalosiphon welwitschii UTEX B 1830","na":12,"nb":1,"a":[["alkaloids/12-epi-fischerindole-i-isonitrile.yaml","12-epi-fischerindole I isonitrile"],["alkaloids/12-epi-fischerindole-u-isonitrile.yaml","12-epi-fischerindole U isonitrile"],["alkaloids/12-epi-hapalindole-c-isonitrile.yaml","12-epi-hapalindole C isonitrile"],["alkaloids/12-epi-hapalindole-e.yaml","12-epi-hapalindole E"],["alkaloids/3-epi-welwitindolinone-b-isothiocyanate.yaml","3-epi-welwitindolinone B isothiocyanate"],["alkaloids/3-z-2-isocyanovinyl-indole.yaml","3-[(Z)-2-isocyanovinyl]indole"]],"b":[["NCBITaxon%3A1433842","Hapalosiphon welwitschii UTEX B 1830"]]},{"id":"NCBITaxon:1896107","l":"Biscogniauxia sp.","na":12,"nb":1,"a":[["shikimates_and_phenylpropanoids/3-4-dihydroxy-5-polyprenylbenzoic-acid.yaml","3,4-dihydroxy-5-polyprenylbenzoic acid"],["shikimates_and_phenylpropanoids/4-hydroxy-3-prenylbenzoic-acid.yaml","4-hydroxy-3-prenylbenzoic acid"],["shikimates_and_phenylpropanoids/compound-7.yaml","compound 7"],["shikimates_and_phenylpropanoids/compound-8.yaml","compound 8"],["shikimates_and_phenylpropanoids/prenylhydroquinone.yaml","prenylhydroquinone"],["terpenoids/biscognienyne-b.yaml","biscognienyne B"]],"b":[["NCBITaxon%3A1896107","Biscogniauxia sp."]]},{"id":"NCBITaxon:1898042","l":"Pseudovibrio brasiliensis","na":12,"nb":1,"a":[["amino_acids_and_peptides/pseudovibriamide-a1.yaml","pseudovibriamide A1"],["amino_acids_and_peptides/pseudovibriamide-a2.yaml","pseudovibriamide A2"],["amino_acids_and_peptides/pseudovibriamide-a3.yaml","pseudovibriamide A3"],["amino_acids_and_peptides/pseudovibriamide-a4.yaml","pseudovibriamide A4"],["amino_acids_and_peptides/pseudovibriamide-a5.yaml","pseudovibriamide A5"],["amino_acids_and_peptides/pseudovibriamide-a6.yaml","pseudovibriamide A6"]],"b":[["NCBITaxon%3A1898042","Pseudovibrio brasiliensis"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK 1622","na":12,"nb":1,"a":[["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"],["amino_acids_and_peptides/myxochromide-a.yaml","myxochromide A"],["amino_acids_and_peptides/myxoprincomide-c506.yaml","myxoprincomide-c506"]],"b":[["NCBITaxon%3A246197","Myxococcus xanthus DK 1622"]]},{"id":"NCBITaxon:28035","l":"Staphylococcus lugdunensis","na":1,"nb":12,"a":[["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]],"b":[["NCBITaxon%3A1308746","Staphylococcus lugdenensis ADL-114"],["NCBITaxon%3A1308747","Staphylococcus lugdenensis ADL-405"],["NCBITaxon%3A28035","Staphylococcus lugdunensis"],["NCBITaxon%3A883164","Staphylococcus lugdunensis ACS-027-V-Sch2"],["NCBITaxon%3A698737","Staphylococcus lugdunensis HKU09-01"],["NCBITaxon%3A525377","Staphylococcus lugdunensis M23590"]]},{"id":"NCBITaxon:28447","l":"Clavibacter michiganensis","na":1,"nb":12,"a":[["amino_acids_and_peptides/michiganin-a.yaml","michiganin A"]],"b":[["NCBITaxon%3A1874630","Clavibacter capsici"],["NCBITaxon%3A2301718","Clavibacter lycopersici"],["NCBITaxon%3A28447","Clavibacter michiganensis"],["NCBITaxon%3A33014","Clavibacter michiganensis subsp. insidiosus"],["NCBITaxon%3A33013","Clavibacter michiganensis subsp. michiganensis"],["NCBITaxon%3A443906","Clavibacter michiganensis subsp. michiganensis NCPPB 382"]]},{"id":"NCBITaxon:42308","l":"Hypoxylon","na":1,"nb":12,"a":[["polyketides/naphthalene-1-3-6-8-tetrol.yaml","naphthalene-1,3,6,8-tetrol"]],"b":[["NCBITaxon%3A1799007","Hypoxylon argillaceum"],["NCBITaxon%3A326656","Hypoxylon cercidicola"],["NCBITaxon%3A326657","Hypoxylon crocopeplum"],["NCBITaxon%3A63214","Hypoxylon fragiforme"],["NCBITaxon%3A109372","Hypoxylon fuscum"],["NCBITaxon%3A326663","Hypoxylon investiens"]]},{"id":"NCBITaxon:53409","l":"Pseudomonas coronafaciens","na":1,"nb":12,"a":[["polyketides/coronatine.yaml","coronatine"]],"b":[["NCBITaxon%3A53409","Pseudomonas coronafaciens"],["NCBITaxon%3A129135","Pseudomonas coronafaciens pv. atropurpurea"],["NCBITaxon%3A235275","Pseudomonas coronafaciens pv. coronafaciens"],["NCBITaxon%3A251653","Pseudomonas coronafaciens pv. garcae"],["NCBITaxon%3A1515743","Pseudomonas coronafaciens pv. morceparum"],["NCBITaxon%3A235277","Pseudomonas coronafaciens pv. oryzae"]]},{"id":"NCBITaxon:60172","l":"Penicillium solitum","na":12,"nb":1,"a":[["polyketides/dihydrobisvertinolone.yaml","dihydrobisvertinolone"],["polyketides/sorbicillin.yaml","sorbicillin"],["polyketides/terrestric-acid.yaml","terrestric acid"],["polyketides/tetrahydrobisvertinolone.yaml","tetrahydrobisvertinolone"],["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"],["unclassified/penitrem-a.yaml","penitrem A"]],"b":[["NCBITaxon%3A60172","Penicillium solitum"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":1,"nb":11,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A1063","Cereibacter sphaeroides"],["NCBITaxon%3A272943","Cereibacter sphaeroides 2.4.1"],["NCBITaxon%3A349102","Cereibacter sphaeroides ATCC 17025"],["NCBITaxon%3A349101","Cereibacter sphaeroides ATCC 17029"],["NCBITaxon%3A39723","Cereibacter sphaeroides f. sp. denitrificans"],["NCBITaxon%3A633146","Cereibacter sphaeroides GA"]]},{"id":"NCBITaxon:230521","l":"Fischerella ambigua UTEX 1903","na":11,"nb":1,"a":[["alkaloids/12-epi-hapalindole-j-isonitrile.yaml","12-epi-hapalindole J isonitrile"],["alkaloids/ambiguine-a-isonitrile.yaml","ambiguine A isonitrile"],["alkaloids/ambiguine-b-isonitrile.yaml","ambiguine B isonitrile"],["alkaloids/ambiguine-c-isonitrile.yaml","ambiguine C isonitrile"],["alkaloids/ambiguine-d-isonitrile.yaml","ambiguine D isonitrile"],["alkaloids/ambiguine-e-isonitrile.yaml","ambiguine E isonitrile"]],"b":[["NCBITaxon%3A230521","Fischerella ambigua UTEX 1903"]]},{"id":"NCBITaxon:358560","l":"Geitlerinema splendidum","na":1,"nb":11,"a":[["fatty_acids/1-heptadecene.yaml","1-heptadecene"]],"b":[["NCBITaxon%3A358560","Geitlerinema splendidum"],["NCBITaxon%3A358561","Geitlerinema splendidum 0ES34S4"],["NCBITaxon%3A1755260","Geitlerinema splendidum CCALA 1004"],["NCBITaxon%3A522331","Geitlerinema splendidum MCCS 019"],["NCBITaxon%3A1437317","Geitlerinema splendidum NIVA-CYA 244"],["NCBITaxon%3A2922239","Geitlerinema splendidum NRMC-F 0141"]]},{"id":"NCBITaxon:38033","l":"Chaetomium globosum","na":11,"nb":1,"a":[["alkaloids/chaetoglobosin-c.yaml","chaetoglobosin C"],["alkaloids/cytoglobosin-x.yaml","cytoglobosin X"],["polyketides/11-epichaetomugilin-a.yaml","11-epichaetomugilin A"],["polyketides/azanigerone-a.yaml","azanigerone A"],["polyketides/chaetoviridin-e.yaml","chaetoviridin E"],["polyketides/shanorellin.yaml","shanorellin"]],"b":[["NCBITaxon%3A38033","Chaetomium globosum"]]},{"id":"NCBITaxon:406818","l":"Xenorhabdus bovienii SS-2004","na":11,"nb":1,"a":[["alkaloids/3-2-acetoxy-3-oxo-4-methylhexyl-indole.yaml","3-(2'-acetoxy-3'-oxo-4'-methylhexyl)-indole"],["alkaloids/3-2-acetoxy-3-oxo-4-methylpentyl-indole.yaml","3-(2'-acetoxy-3'-oxo-4'-methylpentyl)-indole"],["alkaloids/3-2-hydroxy-3-oxo-4-methylhexyl-indole.yaml","3-(2'-hydroxy-3'-oxo-4'-methylhexyl)-indole"],["alkaloids/3-2-hydroxy-3-oxo-4-methylpentyl-indole.yaml","3-(2'-hydroxy-3'-oxo-4'-methylpentyl)-indole"],["amino_acids_and_peptides/leupeptin-a.yaml","leupeptin A"],["amino_acids_and_peptides/leupeptin-b.yaml","leupeptin B"]],"b":[["NCBITaxon%3A406818","Xenorhabdus bovienii SS-2004"]]},{"id":"NCBITaxon:47874","l":"Micromonospora rosaria","na":11,"nb":1,"a":[["polyketides/difluostatin-a.yaml","difluostatin A"],["polyketides/fluostatin-c.yaml","fluostatin C"],["polyketides/fluostatin-d.yaml","fluostatin D"],["polyketides/fluostatin-f-2.yaml","fluostatin F"],["polyketides/fluostatin-f.yaml","fluostatin F"],["polyketides/fluostatin-g-h.yaml","fluostatin G/H"]],"b":[["NCBITaxon%3A47874","Micromonospora rosaria"]]},{"id":"NCBITaxon:64","l":"Herpetosiphon","na":1,"nb":11,"a":[["alkaloids/siphonazole.yaml","siphonazole"]],"b":[["NCBITaxon%3A65","Herpetosiphon aurantiacus"],["NCBITaxon%3A316274","Herpetosiphon aurantiacus DSM 785"],["NCBITaxon%3A70996","Herpetosiphon geysericola"],["NCBITaxon%3A2029754","Herpetosiphon giganteus"],["NCBITaxon%3A1973496","Herpetosiphon gulosus"],["NCBITaxon%3A2094568","Herpetosiphon llansteffanensis"]]},{"id":"NCBITaxon:68249","l":"Streptomyces pactum","na":11,"nb":1,"a":[["terpenoids/7-deoxypactamycin.yaml","7-deoxypactamycin"],["terpenoids/nfat-133.yaml","NFAT-133"],["terpenoids/pactamycin.yaml","pactamycin"],["unclassified/pactamide-a.yaml","pactamide A"],["unclassified/pactamide-b.yaml","pactamide B"],["unclassified/pactamide-c.yaml","pactamide C"]],"b":[["NCBITaxon%3A68249","Streptomyces pactum"]]},{"id":"NCBITaxon:995841","l":"Streptomyces sp. HKI0576","na":11,"nb":1,"a":[["alkaloids/dixiamycin-a.yaml","dixiamycin A"],["alkaloids/sulfadixiamycin-a.yaml","sulfadixiamycin A"],["alkaloids/sulfadixiamycin-b.yaml","sulfadixiamycin B"],["alkaloids/sulfadixiamycin-c.yaml","sulfadixiamycin C"],["alkaloids/xiamycin-a.yaml","xiamycin A"],["terpenoids/indosespene.yaml","indosespene"]],"b":[["NCBITaxon%3A995841","Streptomyces sp. HKI0576"]]},{"id":"NCBITaxon:212355","l":"Microcoleus amoenus","na":1,"nb":10,"a":[["fatty_acids/1-heptadecene.yaml","1-heptadecene"]],"b":[["NCBITaxon%3A212355","Microcoleus amoenus"],["NCBITaxon%3A1296353","Oscillatoria amoena CCAP 1459/39"],["NCBITaxon%3A3022837","Oscillatoria amoena HA16"],["NCBITaxon%3A2922241","Oscillatoria amoena NRMC-F 0135"],["NCBITaxon%3A1521532","Oscillatoria amoena SAG 1459-7"],["NCBITaxon%3A1940722","Phormidium amoenum I013-0027"]]},{"id":"NCBITaxon:29484","l":"Yersinia frederiksenii","na":1,"nb":10,"a":[["unclassified/frederiksenibactin.yaml","frederiksenibactin"]],"b":[["NCBITaxon%3A29484","Yersinia frederiksenii"],["NCBITaxon%3A527010","Yersinia frederiksenii 7175"],["NCBITaxon%3A527011","Yersinia frederiksenii 867"],["NCBITaxon%3A349966","Yersinia frederiksenii ATCC 33641"],["NCBITaxon%3A527009","Yersinia frederiksenii CNY 867"],["NCBITaxon%3A527007","Yersinia frederiksenii WA 933"]]},{"id":"NCBITaxon:442870","l":"Acanthopleuribacter pedis","na":10,"nb":1,"a":[["polyketides/21-methoxy-calyculinamide.yaml","21-methoxy-calyculinamide"],["polyketides/phorbactazole-a.yaml","phorbactazole A"],["polyketides/phorbactazole-b.yaml","phorbactazole B"],["polyketides/phorbactazole-c.yaml","phorbactazole C"],["polyketides/phorbactazole-d.yaml","phorbactazole D"],["polyketides/phorbactazole-e.yaml","phorbactazole E"]],"b":[["NCBITaxon%3A442870","Acanthopleuribacter pedis"]]},{"id":"NCBITaxon:50","l":"Chondromyces","na":1,"nb":10,"a":[["unclassified/chondramide-a.yaml","chondramide A"]],"b":[["NCBITaxon%3A51","Chondromyces apiculatus"],["NCBITaxon%3A1192034","Chondromyces apiculatus DSM 436"],["NCBITaxon%3A1653841","Chondromyces catenulatus"],["NCBITaxon%3A52","Chondromyces crocatus"],["NCBITaxon%3A83446","Chondromyces lanuginosus"],["NCBITaxon%3A83447","Chondromyces pediculatus"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae RIB40","na":10,"nb":1,"a":[["fatty_acids/oryzine-a.yaml","oryzine A"],["polyketides/kojic-acid.yaml","kojic acid"],["polyketides/oryzine-b.yaml","oryzine B"],["polyketides/ywa1.yaml","YWA1"],["shikimates_and_phenylpropanoids/2-4-dihydroxy-3-methoxypropiophenone.yaml","2,4'-dihydroxy-3'-methoxypropiophenone"],["shikimates_and_phenylpropanoids/8-methyldiaporthin.yaml","8-methyldiaporthin"]],"b":[["NCBITaxon%3A510516","Aspergillus oryzae RIB40"]]},{"id":"NCBITaxon:1159556","l":"Ustilaginoidea virens","na":9,"nb":1,"a":[["amino_acids_and_peptides/ustiloxin-b.yaml","ustiloxin B"],["polyketides/ustilaginoidin-a.yaml","ustilaginoidin A"],["polyketides/ustilaginoidin-d.yaml","ustilaginoidin D"],["polyketides/ustilaginoidin-e.yaml","ustilaginoidin E"],["polyketides/ustilaginoidin-f.yaml","ustilaginoidin F"],["polyketides/ustilaginoidin-g.yaml","ustilaginoidin G"]],"b":[["NCBITaxon%3A1159556","Ustilaginoidea virens"]]},{"id":"NCBITaxon:1245497","l":"Micromonospora sp. HK160111","na":9,"nb":1,"a":[["alkaloids/microansamycin-i.yaml","microansamycin I"],["polyketides/microansamycin-a.yaml","microansamycin A"],["polyketides/microansamycin-b.yaml","microansamycin B"],["polyketides/microansamycin-c.yaml","microansamycin C"],["polyketides/microansamycin-d.yaml","microansamycin D"],["polyketides/microansamycin-e.yaml","microansamycin E"]],"b":[["NCBITaxon%3A1245497","Micromonospora sp. HK160111"]]},{"id":"NCBITaxon:1599","l":"Latilactobacillus sakei","na":1,"nb":9,"a":[["unclassified/lactocin-s.yaml","lactocin S"]],"b":[["NCBITaxon%3A1599","Latilactobacillus sakei"],["NCBITaxon%3A1381395","Latilactobacillus sakei dgh6"],["NCBITaxon%3A1634","Latilactobacillus sakei L45"],["NCBITaxon%3A214325","Latilactobacillus sakei subsp. carnosus"],["NCBITaxon%3A525363","Latilactobacillus sakei subsp. carnosus DSM 15831"],["NCBITaxon%3A214326","Latilactobacillus sakei subsp. sakei"]]},{"id":"NCBITaxon:1876","l":"Micromonospora sp.","na":9,"nb":1,"a":[["polyketides/quinolidomicin-a.yaml","quinolidomicin A"],["polyketides/sungeidine-c.yaml","sungeidine C"],["polyketides/sungeidine-f.yaml","sungeidine F"],["polyketides/sungeidine-g.yaml","sungeidine G"],["shikimates_and_phenylpropanoids/sungeidine-d.yaml","sungeidine D"],["unclassified/sungeidine-a.yaml","sungeidine A"]],"b":[["NCBITaxon%3A1876","Micromonospora sp."]]},{"id":"NCBITaxon:1979465","l":"Neocamarosporium betae","na":9,"nb":1,"a":[["polyketides/betaenone-a.yaml","betaenone A"],["polyketides/betaenone-b.yaml","betaenone B"],["polyketides/betaenone-c.yaml","betaenone C"],["terpenoids/17-deoxyaphidicolin.yaml","17-deoxyaphidicolin"],["terpenoids/3-deoxyaphidicolin.yaml","3-deoxyaphidicolin"],["terpenoids/aphidicolan-16-ol.yaml","aphidicolan-16β-ol"]],"b":[["NCBITaxon%3A1979465","Neocamarosporium betae"]]},{"id":"NCBITaxon:2016","l":"Streptoalloteichus","na":1,"nb":9,"a":[["unclassified/kedarcidin.yaml","kedarcidin"]],"b":[["NCBITaxon%3A2017","Streptoalloteichus hindustanus"],["NCBITaxon%3A44103","Streptoalloteichus sp."],["NCBITaxon%3A756733","Streptoalloteichus sp. ATCC 53650"],["NCBITaxon%3A672461","Streptoalloteichus sp. CC1J"],["NCBITaxon%3A116397","Streptoalloteichus sp. IM-0154"],["NCBITaxon%3A116398","Streptoalloteichus sp. IM-0911"]]},{"id":"NCBITaxon:290110","l":"Xenorhabdus budapestensis","na":9,"nb":1,"a":[["alkaloids/bicornutin-a1.yaml","bicornutin A1"],["alkaloids/bicornutin-a2.yaml","bicornutin A2"],["alkaloids/nematophin.yaml","nematophin"],["amino_acids_and_peptides/avaroferrin.yaml","avaroferrin"],["amino_acids_and_peptides/fabclavine-ia.yaml","fabclavine Ia"],["amino_acids_and_peptides/fabclavine-ib.yaml","fabclavine Ib"]],"b":[["NCBITaxon%3A290110","Xenorhabdus budapestensis"]]},{"id":"NCBITaxon:500485","l":"Penicillium rubens Wisconsin 54-1255","na":9,"nb":1,"a":[["alkaloids/dehydrohistidyltryptophanyldiketopiperazine.yaml","dehydrohistidyltryptophanyldiketopiperazine"],["alkaloids/glandicoline-a.yaml","glandicoline A"],["alkaloids/glandicoline-b.yaml","glandicoline B"],["alkaloids/meleagrine.yaml","meleagrine"],["polyketides/sorbicillin.yaml","sorbicillin"],["terpenoids/conidiogenone.yaml","conidiogenone"]],"b":[["NCBITaxon%3A500485","Penicillium rubens Wisconsin 54-1255"]]},{"id":"NCBITaxon:5076","l":"Penicillium chrysogenum","na":9,"nb":1,"a":[["alkaloids/chrysogine.yaml","chrysogine"],["amino_acids_and_peptides/benzylpenicillin-sodium.yaml","benzylpenicillin sodium"],["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"],["amino_acids_and_peptides/n-5s-5-ammonio-5-carboxylatopentanoyl-l-cysteinyl-d-valinate.yaml","N-[(5S)-5-ammonio-5-carboxylatopentanoyl]-L-cysteinyl-D-valinate"],["polyketides/2-3-dihydrosorbicillin.yaml","2'3'-dihydrosorbicillin"],["polyketides/bisorbicillinol.yaml","bisorbicillinol"]],"b":[["NCBITaxon%3A5076","Penicillium chrysogenum"]]},{"id":"NCBITaxon:569580","l":"Streptomyces sp. CM020","na":9,"nb":1,"a":[["polyketides/1-6-dihydro-8-propylanthraquinone.yaml","1,6-dihydro-8-propylanthraquinone"],["polyketides/alnumycin-a.yaml","alnumycin A"],["polyketides/alnumycin-b.yaml","alnumycin B"],["polyketides/alnumycin-c.yaml","alnumycin C"],["polyketides/alnumycin-p.yaml","alnumycin P"],["polyketides/k1115a.yaml","K1115A"]],"b":[["NCBITaxon%3A569580","Streptomyces sp. CM020"]]},{"id":"NCBITaxon:61235","l":"Fusarium equiseti","na":9,"nb":1,"a":[["alkaloids/fusarochromene.yaml","fusarochromene"],["amino_acids_and_peptides/4-hydroxykynurenine.yaml","4-hydroxykynurenine"],["polyketides/zearalenone.yaml","zearalenone"],["terpenoids/desacetylfusarochromene.yaml","desacetylfusarochromene"],["terpenoids/fusarochromanone.yaml","fusarochromanone"],["terpenoids/mangicol-a.yaml","mangicol A"]],"b":[["NCBITaxon%3A61235","Fusarium equiseti"]]},{"id":"NCBITaxon:67282","l":"Streptomyces calvus","na":9,"nb":1,"a":[["alkaloids/4-e-annimycin.yaml","4-E-annimycin"],["alkaloids/4-z-annimycin.yaml","4-Z-annimycin"],["amino_acids_and_peptides/ws9326d.yaml","WS9326D"],["amino_acids_and_peptides/ws9326f.yaml","WS9326F"],["amino_acids_and_peptides/ws9326g.yaml","WS9326G"],["carbohydrates/nucleocidin.yaml","nucleocidin"]],"b":[["NCBITaxon%3A67282","Streptomyces calvus"]]},{"id":"NCBITaxon:722721","l":"Streptomyces sp. SN-1061M","na":9,"nb":1,"a":[["carbohydrates/liposidomycin-a.yaml","liposidomycin A"],["carbohydrates/liposidomycin-b.yaml","liposidomycin B"],["carbohydrates/liposidomycin-c.yaml","liposidomycin C"],["carbohydrates/liposidomycin-g.yaml","liposidomycin G"],["carbohydrates/liposidomycin-h.yaml","liposidomycin H"],["carbohydrates/liposidomycin-k.yaml","liposidomycin K"]],"b":[["NCBITaxon%3A722721","Streptomyces sp. SN-1061M"]]},{"id":"NCBITaxon:747503","l":"Sphaerospermopsis oumiana","na":1,"nb":9,"a":[["alkaloids/guanitoxin.yaml","guanitoxin"]],"b":[["NCBITaxon%3A747503","Sphaerospermopsis oumiana"],["NCBITaxon%3A929850","Sphaerospermopsis oumiana CHAB1036"],["NCBITaxon%3A929851","Sphaerospermopsis oumiana CHAB338"],["NCBITaxon%3A929852","Sphaerospermopsis oumiana CHAB502"],["NCBITaxon%3A929853","Sphaerospermopsis oumiana CHAB508"],["NCBITaxon%3A929854","Sphaerospermopsis oumiana CHAB510"]]},{"id":"NCBITaxon:764904","l":"Cystobacter sp. SBCb004","na":9,"nb":1,"a":[["amino_acids_and_peptides/tubulysin-a.yaml","tubulysin A"],["amino_acids_and_peptides/tubulysin-b.yaml","tubulysin B"],["amino_acids_and_peptides/tubulysin-c.yaml","tubulysin C"],["amino_acids_and_peptides/tubulysin-d.yaml","tubulysin D"],["amino_acids_and_peptides/tubulysin-e.yaml","tubulysin E"],["amino_acids_and_peptides/tubulysin-f.yaml","tubulysin F"]],"b":[["NCBITaxon%3A764904","Cystobacter sp. SBCb004"]]},{"id":"NCBITaxon:96241","l":"Bacillus spizizenii","na":1,"nb":9,"a":[["amino_acids_and_peptides/entianin.yaml","entianin"]],"b":[["NCBITaxon%3A96241","Bacillus spizizenii"],["NCBITaxon%3A703612","Bacillus spizizenii ATCC 6633 = JCM 2499"],["NCBITaxon%3A1051503","Bacillus spizizenii DV1-B-1"],["NCBITaxon%3A932006","Bacillus spizizenii RFWG1A3"],["NCBITaxon%3A932005","Bacillus spizizenii RFWG1A4"],["NCBITaxon%3A932007","Bacillus spizizenii RFWG4C10"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":1,"nb":8,"a":[["alkaloids/molybdenum-cofactor.yaml","molybdenum cofactor"]],"b":[["NCBITaxon%3A1061","Rhodobacter capsulatus"],["NCBITaxon%3A1415162","Rhodobacter capsulatus B6"],["NCBITaxon%3A1415160","Rhodobacter capsulatus DE442"],["NCBITaxon%3A1415163","Rhodobacter capsulatus R121"],["NCBITaxon%3A272942","Rhodobacter capsulatus SB 1003"],["NCBITaxon%3A1415161","Rhodobacter capsulatus Y262"]]},{"id":"NCBITaxon:1136432","l":"Streptomyces sp. CNH189","na":8,"nb":1,"a":[["polyketides/merochlorin-c.yaml","merochlorin C"],["terpenoids/deschloro-merochlorin-a.yaml","deschloro-merochlorin A"],["terpenoids/deschloro-merochlorin-b.yaml","deschloro-merochlorin B"],["terpenoids/dichloro-merochlorin-b.yaml","dichloro-merochlorin B"],["terpenoids/isochloro-merochlorin-b.yaml","isochloro-merochlorin B"],["terpenoids/merochlorin-a.yaml","merochlorin A"]],"b":[["NCBITaxon%3A1136432","Streptomyces sp. CNH189"]]},{"id":"NCBITaxon:1169156","l":"Streptomyces sp. CNB091","na":8,"nb":1,"a":[["unclassified/desmethylsalinamide-c.yaml","desmethylsalinamide C"],["unclassified/desmethylsalinamide-e.yaml","desmethylsalinamide E"],["unclassified/salinamide-a.yaml","salinamide A"],["unclassified/salinamide-b.yaml","salinamide B"],["unclassified/salinamide-c.yaml","salinamide C"],["unclassified/salinamide-d.yaml","salinamide D"]],"b":[["NCBITaxon%3A1169156","Streptomyces sp. CNB091"]]},{"id":"NCBITaxon:117187","l":"Fusarium verticillioides","na":8,"nb":1,"a":[["alkaloids/dihydrofusarin-c.yaml","dihydrofusarin C"],["alkaloids/epi-fusarin-c.yaml","epi-fusarin C"],["alkaloids/fusaric-acid.yaml","fusaric acid"],["alkaloids/fusarin-c.yaml","fusarin C"],["alkaloids/fusarin-d.yaml","fusarin D"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"]],"b":[["NCBITaxon%3A117187","Fusarium verticillioides"]]},{"id":"NCBITaxon:13689","l":"Sphingomonas paucimobilis","na":1,"nb":8,"a":[["unclassified/minimycin.yaml","minimycin"]],"b":[["NCBITaxon%3A178355","Flavobacterium omnivorum"],["NCBITaxon%3A1404341","Sphingobium scionense"],["NCBITaxon%3A13689","Sphingomonas paucimobilis"],["NCBITaxon%3A1219050","Sphingomonas paucimobilis NBRC 13935"],["NCBITaxon%3A33051","Sphingomonas sanguinis"],["NCBITaxon%3A1219054","Sphingomonas sanguinis NBRC 13937"]]},{"id":"NCBITaxon:1703922","l":"Streptomyces sp. CB02414","na":8,"nb":1,"a":[["polyketides/ochromycinone.yaml","ochromycinone"],["polyketides/rubiginone-a2.yaml","rubiginone A2"],["polyketides/rubiginone-b2.yaml","rubiginone B2"],["polyketides/rubiginone-j.yaml","rubiginone J"],["polyketides/rubiginone-k.yaml","rubiginone K"],["polyketides/rubiginone-l.yaml","rubiginone L"]],"b":[["NCBITaxon%3A1703922","Streptomyces sp. CB02414"]]},{"id":"NCBITaxon:1703937","l":"Streptomyces sp. CB03234","na":8,"nb":1,"a":[["terpenoids/tiancilactone-a.yaml","tiancilactone A"],["terpenoids/tiancilactone-b.yaml","tiancilactone B"],["terpenoids/tiancilactone-c.yaml","tiancilactone C"],["terpenoids/tiancilactone-d.yaml","tiancilactone D"],["terpenoids/tiancilactone-e.yaml","tiancilactone E"],["terpenoids/tiancilactone-f.yaml","tiancilactone F"]],"b":[["NCBITaxon%3A1703937","Streptomyces sp. CB03234"]]},{"id":"NCBITaxon:1809","l":"Mycobacterium ulcerans","na":1,"nb":8,"a":[["polyketides/mycolactone-b.yaml","mycolactone B"]],"b":[["NCBITaxon%3A1809","Mycobacterium ulcerans"],["NCBITaxon%3A459428","Mycobacterium ulcerans 1615"],["NCBITaxon%3A362242","Mycobacterium ulcerans Agy99"],["NCBITaxon%3A1299332","Mycobacterium ulcerans str. Harvey"],["NCBITaxon%3A1124626","Mycobacterium ulcerans subsp. shinshuense"],["NCBITaxon%3A315405","Streptococcus gallolyticus"]]},{"id":"NCBITaxon:1873460","l":"Saccharothrix sp.","na":8,"nb":1,"a":[["amino_acids_and_peptides/saccharochelin-a.yaml","saccharochelin A"],["amino_acids_and_peptides/saccharochelin-b.yaml","saccharochelin B"],["amino_acids_and_peptides/saccharochelin-c.yaml","saccharochelin C"],["amino_acids_and_peptides/saccharochelin-d.yaml","saccharochelin D"],["amino_acids_and_peptides/saccharochelin-e.yaml","saccharochelin E"],["amino_acids_and_peptides/saccharochelin-f.yaml","saccharochelin F"]],"b":[["NCBITaxon%3A1873460","Saccharothrix sp."]]},{"id":"NCBITaxon:2056244","l":"Pseudomonas sp. QS1027","na":8,"nb":1,"a":[["amino_acids_and_peptides/keanumycin-c.yaml","Keanumycin C"],["amino_acids_and_peptides/virginiafactin-a.yaml","virginiafactin A"],["amino_acids_and_peptides/virginiafactin-b.yaml","virginiafactin B"],["amino_acids_and_peptides/virginiafactin-c.yaml","virginiafactin C"],["amino_acids_and_peptides/virginiafactin-d.yaml","virginiafactin D"],["unclassified/jessenipeptin.yaml","jessenipeptin"]],"b":[["NCBITaxon%3A2056244","Pseudomonas sp. QS1027"]]},{"id":"NCBITaxon:2814655","l":"Nostoc sp. UHCC 0702","na":8,"nb":1,"a":[["amino_acids_and_peptides/heinamide-a1.yaml","heinamide A1"],["amino_acids_and_peptides/heinamide-a2.yaml","heinamide A2"],["amino_acids_and_peptides/heinamide-a3.yaml","heinamide A3"],["amino_acids_and_peptides/heinamide-b1.yaml","heinamide B1"],["amino_acids_and_peptides/heinamide-b2.yaml","heinamide B2"],["amino_acids_and_peptides/heinamide-b3.yaml","heinamide B3"]],"b":[["NCBITaxon%3A2814655","Nostoc sp. UHCC 0702"]]},{"id":"NCBITaxon:303698","l":"Penicillium steckii","na":8,"nb":1,"a":[["unclassified/adametizine-a.yaml","adametizine A"],["unclassified/fa2097.yaml","FA2097"],["unclassified/outovirin-a.yaml","outovirin A"],["unclassified/outovirin-c.yaml","outovirin C"],["unclassified/penigainamide-a.yaml","penigainamide A"],["unclassified/penigainamide-b.yaml","penigainamide B"]],"b":[["NCBITaxon%3A303698","Penicillium steckii"]]},{"id":"NCBITaxon:345341","l":"Kutzneria sp. 744","na":8,"nb":1,"a":[["amino_acids_and_peptides/kutzneride-6.yaml","Kutzneride 6"],["unclassified/kutzneride-1.yaml","Kutzneride 1"],["unclassified/kutzneride-2.yaml","Kutzneride 2"],["unclassified/kutzneride-3.yaml","Kutzneride 3"],["unclassified/kutzneride-4.yaml","Kutzneride 4"],["unclassified/kutzneride-5.yaml","Kutzneride 5"]],"b":[["NCBITaxon%3A345341","Kutzneria sp. 744"]]},{"id":"NCBITaxon:36656","l":"Penicillium crustosum","na":8,"nb":1,"a":[["polyketides/terrestric-acid.yaml","terrestric acid"],["unclassified/penitrem-a.yaml","penitrem A"],["unclassified/penitrem-b.yaml","penitrem B"],["unclassified/penitrem-c.yaml","penitrem C"],["unclassified/penitrem-d.yaml","penitrem D"],["unclassified/penitrem-e.yaml","penitrem E"]],"b":[["NCBITaxon%3A36656","Penicillium crustosum"]]},{"id":"NCBITaxon:420953","l":"Paraburkholderia megapolitana","na":8,"nb":1,"a":[["amino_acids_and_peptides/megapolibactin-a.yaml","megapolibactin A"],["amino_acids_and_peptides/megapolibactin-acyc.yaml","megapolibactin Acyc"],["amino_acids_and_peptides/megapolibactin-b.yaml","megapolibactin B"],["amino_acids_and_peptides/megapolibactin-c.yaml","megapolibactin C"],["amino_acids_and_peptides/megapolibactin-d.yaml","megapolibactin D"],["amino_acids_and_peptides/megapolibactin-e.yaml","megapolibactin E"]],"b":[["NCBITaxon%3A420953","Paraburkholderia megapolitana"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":1,"nb":8,"a":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]],"b":[["NCBITaxon%3A4932","Saccharomyces cerevisiae"],["NCBITaxon%3A1266529","Saccharomyces cerevisiae BY4743"],["NCBITaxon%3A1218710","Saccharomyces cerevisiae CBS 1585"],["NCBITaxon%3A764102","Saccharomyces cerevisiae FostersB"],["NCBITaxon%3A764101","Saccharomyces cerevisiae FostersO"],["NCBITaxon%3A1220494","Saccharomyces cerevisiae PE-2"]]},{"id":"NCBITaxon:64187","l":"Xanthomonas oryzae pv. oryzae","na":1,"nb":8,"a":[["unclassified/xanthomonadin-i.yaml","xanthomonadin I"]],"b":[["NCBITaxon%3A347","Xanthomonas oryzae"],["NCBITaxon%3A1313303","Xanthomonas oryzae ATCC 35933"],["NCBITaxon%3A64187","Xanthomonas oryzae pv. oryzae"],["NCBITaxon%3A291331","Xanthomonas oryzae pv. oryzae KACC 10331"],["NCBITaxon%3A342109","Xanthomonas oryzae pv. oryzae MAFF 311018"],["NCBITaxon%3A1423889","Xanthomonas oryzae pv. oryzae NAI8"]]},{"id":"NCBITaxon:648","l":"Aeromonas caviae","na":1,"nb":8,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]],"b":[["NCBITaxon%3A648","Aeromonas caviae"],["NCBITaxon%3A878320","Aeromonas caviae Ae398"],["NCBITaxon%3A1458270","Aeromonas caviae NM22"],["NCBITaxon%3A1458271","Aeromonas caviae NM33"],["NCBITaxon%3A3418572","Aeromonas caviae subsp. aquatica"],["NCBITaxon%3A644","Aeromonas hydrophila"]]},{"id":"NCBITaxon:65497","l":"","na":8,"nb":1,"a":[["alkaloids/caerulomycin-a.yaml","caerulomycin A"],["alkaloids/cyanogramide-b.yaml","cyanogramide B"],["alkaloids/cyanogramide-c.yaml","cyanogramide C"],["alkaloids/cyanogramide-d.yaml","cyanogramide D"],["alkaloids/phenaziterpene-a.yaml","phenaziterpene A"],["carbohydrates/kanamycin-a.yaml","kanamycin A"]],"b":[["NCBITaxon%3A2893586","Actinoalloteichus caeruleus"]]},{"id":"NCBITaxon:675526","l":"Allostigmatella aurantiaca Sg a15","na":8,"nb":1,"a":[["alkaloids/aurachin-a.yaml","aurachin A"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"],["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/myxochelin-b.yaml","myxochelin B"],["polyketides/rhizopodin.yaml","rhizopodin"]],"b":[["NCBITaxon%3A675526","Allostigmatella aurantiaca Sg a15"]]},{"id":"NCBITaxon:680198","l":"Streptomyces scabiei 87.22","na":8,"nb":1,"a":[["alkaloids/rotihibin-a.yaml","rotihibin A"],["amino_acids_and_peptides/bottromycin-a2.yaml","bottromycin A2"],["amino_acids_and_peptides/edha.yaml","EDHA"],["amino_acids_and_peptides/scabichelin.yaml","scabichelin"],["amino_acids_and_peptides/thaxtomin-c.yaml","thaxtomin C"],["unclassified/n-coronafacoyl-l-isoleucine.yaml","N-coronafacoyl-L-isoleucine"]],"b":[["NCBITaxon%3A680198","Streptomyces scabiei 87.22"]]},{"id":"NCBITaxon:97398","l":"Streptomyces abikoensis","na":1,"nb":8,"a":[["alkaloids/carbazomycin-b.yaml","carbazomycin B"]],"b":[["NCBITaxon%3A97398","Streptomyces abikoensis"],["NCBITaxon%3A68195","Streptomyces ehimensis"],["NCBITaxon%3A3075519","Streptomyces hesseae"],["NCBITaxon%3A66425","Streptomyces luteoverticillatus"],["NCBITaxon%3A68246","Streptomyces olivoreticuli"],["NCBITaxon%3A68252","Streptomyces parvisporogenes"]]},{"id":"NCBITaxon:104259","l":"Penicillium brasilianum","na":7,"nb":1,"a":[["alkaloids/brasiliamide-i.yaml","brasiliamide I"],["unclassified/brasiliamide-a.yaml","brasiliamide A"],["unclassified/brasiliamide-b.yaml","brasiliamide B"],["unclassified/brasiliamide-d.yaml","brasiliamide D"],["unclassified/paraherquamide.yaml","paraherquamide"],["unclassified/paraherquonin.yaml","paraherquonin"]],"b":[["NCBITaxon%3A104259","Penicillium brasilianum"]]},{"id":"NCBITaxon:1169167","l":"Salinispora arenicola CNR107","na":7,"nb":1,"a":[["unclassified/be-43547a1-2.yaml","BE-43547A1"],["unclassified/be-43547a2.yaml","BE-43547A2"],["unclassified/be-43547b1.yaml","BE-43547B1"],["unclassified/be-43547b2.yaml","BE-43547B2"],["unclassified/be-43547b3.yaml","BE-43547B3"],["unclassified/be-43547c1.yaml","BE-43547C1"]],"b":[["NCBITaxon%3A1169167","Salinispora arenicola CNR107"]]},{"id":"NCBITaxon:1245024","l":"Streptomyces sp. LZ35","na":7,"nb":1,"a":[["polyketides/hygrocin-a.yaml","hygrocin A"],["polyketides/hygrocin-b.yaml","hygrocin B"],["shikimates_and_phenylpropanoids/echoside-a.yaml","echoside A"],["shikimates_and_phenylpropanoids/echoside-b.yaml","echoside B"],["shikimates_and_phenylpropanoids/echoside-c.yaml","echoside C"],["shikimates_and_phenylpropanoids/echoside-d.yaml","echoside D"]],"b":[["NCBITaxon%3A1245024","Streptomyces sp. LZ35"]]},{"id":"NCBITaxon:132473","l":"Streptomyces alboniger","na":7,"nb":1,"a":[["carbohydrates/puromycin.yaml","puromycin"],["polyketides/homopamamycin-677a.yaml","homopamamycin-677A"],["polyketides/pamamycin-607.yaml","pamamycin-607"],["polyketides/pamamycin-621a.yaml","pamamycin-621A"],["polyketides/pamamycin-635g.yaml","pamamycin-635G"],["polyketides/pamamycin-649b.yaml","pamamycin-649B"]],"b":[["NCBITaxon%3A132473","Streptomyces alboniger"]]},{"id":"NCBITaxon:140106","l":"Neonectria","na":1,"nb":7,"a":[["alkaloids/ilicicolin-j.yaml","ilicicolin J"]],"b":[["NCBITaxon%3A57153","Neonectria coccinea"],["NCBITaxon%3A78410","Neonectria ditissima"],["NCBITaxon%3A992199","Neonectria faginata"],["NCBITaxon%3A78402","Neonectria hederae"],["NCBITaxon%3A57155","Neonectria lugdunensis"],["NCBITaxon%3A979145","Neonectria punicea"]]},{"id":"NCBITaxon:1661387","l":"Micromonospora sp. RV43","na":7,"nb":1,"a":[["unclassified/be-43547a1.yaml","BE-43547A1"],["unclassified/be-43547a2.yaml","BE-43547A2"],["unclassified/be-43547b1.yaml","BE-43547B1"],["unclassified/be-43547b2.yaml","BE-43547B2"],["unclassified/be-43547b3.yaml","BE-43547B3"],["unclassified/be-43547c1.yaml","BE-43547C1"]],"b":[["NCBITaxon%3A1661387","Micromonospora sp. RV43"]]},{"id":"NCBITaxon:1703943","l":"Streptomyces sp. CB01883","na":7,"nb":1,"a":[["amino_acids_and_peptides/guangnanmycin.yaml","guangnanmycin"],["polyketides/isofuranonaphthoquinone-a.yaml","Isofuranonaphthoquinone A"],["polyketides/isofuranonaphthoquinone-b.yaml","Isofuranonaphthoquinone B"],["polyketides/isofuranonaphthoquinone-c.yaml","Isofuranonaphthoquinone C"],["polyketides/isofuranonaphthoquinone-d.yaml","Isofuranonaphthoquinone D"],["polyketides/isofuranonaphthoquinone-e.yaml","Isofuranonaphthoquinone E"]],"b":[["NCBITaxon%3A1703943","Streptomyces sp. CB01883"]]},{"id":"NCBITaxon:177416","l":"Francisella tularensis subsp. tularensis SCHU S4","na":1,"nb":7,"a":[["unclassified/rhizoferrin.yaml","rhizoferrin"]],"b":[["NCBITaxon%3A177416","Francisella tularensis subsp. tularensis SCHU S4"],["NCBITaxon%3A1341660","Francisella tularensis subsp. tularensis str. SCHU S4 substr. FSC237"],["NCBITaxon%3A1341661","Francisella tularensis subsp. tularensis str. SCHU S4 substr. FTS-634/635"],["NCBITaxon%3A1341657","Francisella tularensis subsp. tularensis str. SCHU S4 substr. NR-10492"],["NCBITaxon%3A1341656","Francisella tularensis subsp. tularensis str. SCHU S4 substr. NR-28534"],["NCBITaxon%3A1341658","Francisella tularensis subsp. tularensis str. SCHU S4 substr. NR-643"]]},{"id":"NCBITaxon:1893","l":"Streptomyces atratus","na":7,"nb":1,"a":[["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/ilamycin-b1.yaml","ilamycin B1"],["amino_acids_and_peptides/ilamycin-b2.yaml","ilamycin B2"],["amino_acids_and_peptides/ilamycin-e1.yaml","ilamycin E1"],["amino_acids_and_peptides/rufomycin.yaml","rufomycin"],["unclassified/ilamycin-c1.yaml","ilamycin C1"]],"b":[["NCBITaxon%3A1893","Streptomyces atratus"]]},{"id":"NCBITaxon:1934313","l":"Chitinimonas sp.","na":7,"nb":1,"a":[["amino_acids_and_peptides/chitinimide-a.yaml","chitinimide A"],["amino_acids_and_peptides/chitinimide-b.yaml","chitinimide B"],["amino_acids_and_peptides/chitinimide-c.yaml","chitinimide C"],["amino_acids_and_peptides/chitinimide-d.yaml","chitinimide D"],["amino_acids_and_peptides/chitinimide-e.yaml","chitinimide E"],["amino_acids_and_peptides/chitinimide-f.yaml","chitinimide F"]],"b":[["NCBITaxon%3A1934313","Chitinimonas sp."]]},{"id":"NCBITaxon:2014","l":"Nocardiopsis dassonvillei","na":1,"nb":7,"a":[["alkaloids/iodinin.yaml","iodinin"]],"b":[["NCBITaxon%3A146802","Nocardiopsis alborubida"],["NCBITaxon%3A1223496","Nocardiopsis alborubida NBRC 13392"],["NCBITaxon%3A2014","Nocardiopsis dassonvillei"],["NCBITaxon%3A2580523","Nocardiopsis dassonvillei subsp. crassaminis"],["NCBITaxon%3A568208","Nocardiopsis dassonvillei subsp. dassonvillei"],["NCBITaxon%3A446468","Nocardiopsis dassonvillei subsp. dassonvillei DSM 43111"]]},{"id":"NCBITaxon:2024858","l":"Sandaracinus sp.","na":7,"nb":1,"a":[["amino_acids_and_peptides/sandarazol-a.yaml","sandarazol A"],["amino_acids_and_peptides/sandarazol-c.yaml","sandarazol C"],["amino_acids_and_peptides/sandarazol-d.yaml","sandarazol D"],["amino_acids_and_peptides/sandarazol-f.yaml","sandarazol F"],["amino_acids_and_peptides/sandarazol-g.yaml","sandarazol G"],["unclassified/sandarazol-b.yaml","sandarazol B"]],"b":[["NCBITaxon%3A2024858","Sandaracinus sp."]]},{"id":"NCBITaxon:209559","l":"Aspergillus alliaceus","na":7,"nb":1,"a":[["polyketides/burnettiene-a.yaml","burnettiene A"],["polyketides/preburnettiene-a.yaml","preburnettiene A"],["polyketides/preburnettiene-b.yaml","preburnettiene B"],["unclassified/14-hydroxypaspalinine.yaml","14-hydroxypaspalinine"],["unclassified/14-leucyloxy-paspalinine.yaml","14-(leucyloxy)paspalinine"],["unclassified/14-n-n-dimethylleucyloxy-paspalinine.yaml","14-(N,N-dimethylleucyloxy)paspalinine"]],"b":[["NCBITaxon%3A209559","Aspergillus alliaceus"]]},{"id":"NCBITaxon:223283","l":"Pseudomonas syringae pv. tomato str. DC3000","na":7,"nb":1,"a":[["alkaloids/yersiniabactin.yaml","yersiniabactin"],["amino_acids_and_peptides/syringafactin-a.yaml","syringafactin A"],["amino_acids_and_peptides/syringafactin-b.yaml","syringafactin B"],["amino_acids_and_peptides/syringafactin-c.yaml","syringafactin C"],["amino_acids_and_peptides/syringafactin-d.yaml","syringafactin D"],["amino_acids_and_peptides/syringafactin-e.yaml","syringafactin E"]],"b":[["NCBITaxon%3A223283","Pseudomonas syringae pv. tomato str. DC3000"]]},{"id":"NCBITaxon:2487000","l":"Hypomontagnella monticulosa","na":7,"nb":1,"a":[["fatty_acids/deoxysporothric-acid.yaml","deoxysporothric acid"],["fatty_acids/sporothric-acid.yaml","sporothric acid"],["polyketides/dihydroisosporothric-acid.yaml","dihydroisosporothric acid"],["polyketides/isosporothric-acid.yaml","isosporothric acid"],["polyketides/sporochartine-b.yaml","sporochartine B"],["polyketides/sporothriolide.yaml","sporothriolide"]],"b":[["NCBITaxon%3A2487000","Hypomontagnella monticulosa"]]},{"id":"NCBITaxon:2818510","l":"Candidatus Synoicihabitans palmerolidicus","na":7,"nb":1,"a":[["polyketides/palmerolide-a.yaml","palmerolide A"],["polyketides/palmerolide-b.yaml","palmerolide B"],["polyketides/palmerolide-c.yaml","palmerolide C"],["polyketides/palmerolide-d.yaml","palmerolide D"],["polyketides/palmerolide-f.yaml","palmerolide F"],["polyketides/palmerolide-g.yaml","palmerolide G"]],"b":[["NCBITaxon%3A2818510","Candidatus Synoicihabitans palmerolidicus"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":1,"nb":7,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]],"b":[["NCBITaxon%3A293","Brevundimonas diminuta"],["NCBITaxon%3A1255603","Brevundimonas diminuta 3F5N"],["NCBITaxon%3A1035191","Brevundimonas diminuta 470-4"],["NCBITaxon%3A751586","Brevundimonas diminuta ATCC 11568"],["NCBITaxon%3A588932","Brevundimonas naejangsanensis"],["NCBITaxon%3A1325724","Brevundimonas vancanneytii"]]},{"id":"NCBITaxon:33069","l":"Pseudomonas viridiflava","na":1,"nb":7,"a":[["unclassified/fosfomycin.yaml","fosfomycin"]],"b":[["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A33069","Pseudomonas viridiflava"],["NCBITaxon%3A1357290","Pseudomonas viridiflava CC1582"],["NCBITaxon%3A1198305","Pseudomonas viridiflava ICMP 13104"],["NCBITaxon%3A1198674","Pseudomonas viridiflava ICMP 6717"],["NCBITaxon%3A1357291","Pseudomonas viridiflava TA043"]]},{"id":"NCBITaxon:337330","l":"Lactiplantibacillus plantarum subsp. plantarum","na":1,"nb":7,"a":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]],"b":[["NCBITaxon%3A1590","Lactiplantibacillus plantarum"],["NCBITaxon%3A337330","Lactiplantibacillus plantarum subsp. plantarum"],["NCBITaxon%3A525338","Lactiplantibacillus plantarum subsp. plantarum ATCC 14917 = JCM 1149 = CGMCC 1.2437"],["NCBITaxon%3A889516","Lactiplantibacillus plantarum subsp. plantarum KCA-1"],["NCBITaxon%3A1036177","Lactiplantibacillus plantarum subsp. plantarum NC8"],["NCBITaxon%3A767468","Lactiplantibacillus plantarum subsp. plantarum P-8"]]},{"id":"NCBITaxon:33910","l":"Amycolatopsis mediterranei","na":1,"nb":7,"a":[["polyketides/rifamycin-sv.yaml","rifamycin SV"]],"b":[["NCBITaxon%3A33910","Amycolatopsis mediterranei"],["NCBITaxon%3A1221524","Amycolatopsis mediterranei RB"],["NCBITaxon%3A713604","Amycolatopsis mediterranei S699"],["NCBITaxon%3A454030","Amycolatopsis mediterranei subsp. kanglensis"],["NCBITaxon%3A749927","Amycolatopsis mediterranei U32"],["NCBITaxon%3A287986","Amycolatopsis rifamycinica"]]},{"id":"NCBITaxon:362","l":"Agrobacterium radiobacter","na":1,"nb":7,"a":[["alkaloids/agrobactin.yaml","agrobactin"]],"b":[["NCBITaxon%3A362","Agrobacterium radiobacter"],["NCBITaxon%3A1336745","Agrobacterium radiobacter DSM 30147"],["NCBITaxon%3A361","Agrobacterium sp."],["NCBITaxon%3A358","Agrobacterium tumefaciens"],["NCBITaxon%3A359","Martinezella rhizogenes"],["NCBITaxon%3A204072","Ramlibacter henchirensis"]]},{"id":"NCBITaxon:391037","l":"Salinispora arenicola CNS-205","na":7,"nb":1,"a":[["alkaloids/lymphostin.yaml","lymphostin"],["alkaloids/lymphostinol.yaml","lymphostinol"],["alkaloids/neolymphostin-b.yaml","neolymphostin b"],["alkaloids/neolymphostinol-b.yaml","neolymphostinol B"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/cyclomarin-d.yaml","cyclomarin D"]],"b":[["NCBITaxon%3A391037","Salinispora arenicola CNS-205"]]},{"id":"NCBITaxon:5077","l":"Penicillium citrinum","na":7,"nb":1,"a":[["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["polyketides/citrinin.yaml","(+)-citrinin"],["polyketides/mevinic-acid.yaml","mevinic acid"],["unclassified/orcinol.yaml","orcinol"],["unclassified/penigainamide-a.yaml","penigainamide A"],["unclassified/penigainamide-b.yaml","penigainamide B"]],"b":[["NCBITaxon%3A5077","Penicillium citrinum"]]},{"id":"NCBITaxon:5599","l":"Alternaria alternata","na":7,"nb":1,"a":[["alkaloids/ak-toxin-i.yaml","AK-toxin I"],["alkaloids/dimethylcoprogen.yaml","dimethylcoprogen"],["amino_acids_and_peptides/am-toxin.yaml","AM-toxin"],["polyketides/act-toxin-ii.yaml","ACT-Toxin II"],["polyketides/unii-yc2q1o94pt.yaml","UNII-YC2Q1O94PT"],["unclassified/af-toxin.yaml","AF-toxin"]],"b":[["NCBITaxon%3A5599","Alternaria alternata"]]},{"id":"NCBITaxon:63737","l":"Nostoc punctiforme PCC 73102","na":7,"nb":1,"a":[["amino_acids_and_peptides/microviridin-n3.yaml","microviridin N3"],["amino_acids_and_peptides/microviridin-n4.yaml","microviridin N4"],["amino_acids_and_peptides/microviridin-n6.yaml","microviridin N6"],["amino_acids_and_peptides/microviridin-n7.yaml","microviridin N7"],["amino_acids_and_peptides/microviridin-n8.yaml","microviridin N8"],["amino_acids_and_peptides/microviridin-n9.yaml","microviridin N9"]],"b":[["NCBITaxon%3A63737","Nostoc punctiforme PCC 73102"]]},{"id":"NCBITaxon:67339","l":"Streptomyces orinoci","na":7,"nb":1,"a":[["polyketides/aureothin.yaml","aureothin"],["polyketides/orinocin.yaml","orinocin"],["polyketides/spectinabilin.yaml","spectinabilin"],["terpenoids/snf4435c.yaml","SNF4435C"],["terpenoids/snf4435d.yaml","SNF4435D"],["unclassified/neoantimycin-2.yaml","neoantimycin"]],"b":[["NCBITaxon%3A67339","Streptomyces orinoci"]]},{"id":"NCBITaxon:683308","l":"Parafrankia sp. CH37","na":7,"nb":1,"a":[["amino_acids_and_peptides/frankobactin-a1.yaml","frankobactin A1"],["amino_acids_and_peptides/frankobactin-a3.yaml","frankobactin A3"],["amino_acids_and_peptides/frankobactin-b1.yaml","frankobactin B1"],["amino_acids_and_peptides/frankobactin-b3.yaml","frankobactin B3"],["amino_acids_and_peptides/frankobactin-c1.yaml","frankobactin C1"],["unclassified/frankobactin-a2.yaml","frankobactin A2"]],"b":[["NCBITaxon%3A683308","Parafrankia sp. CH37"]]},{"id":"NCBITaxon:69966","l":"Macrococcoides caseolyticum","na":1,"nb":7,"a":[["amino_acids_and_peptides/micrococcin-p1.yaml","micrococcin P1"]],"b":[["NCBITaxon%3A69966","Macrococcoides caseolyticum"],["NCBITaxon%3A1255615","Macrococcoides caseolyticum ATCC 13458 = DSM 20597"],["NCBITaxon%3A458233","Macrococcoides caseolyticum JCSC5402"],["NCBITaxon%3A2233644","Macrococcoides caseolyticum subsp. caseolyticum"],["NCBITaxon%3A1891096","Macrococcoides caseolyticum subsp. hominis"],["NCBITaxon%3A29385","Staphylococcus saprophyticus"]]},{"id":"NCBITaxon:80884","l":"Colletotrichum higginsianum","na":7,"nb":1,"a":[["shikimates_and_phenylpropanoids/colletorin-d-acid.yaml","Colletorin D acid"],["unclassified/13-epi-higginsianin-c.yaml","13-epi-higginsianin C"],["unclassified/colletorin-d.yaml","Colletorin D"],["unclassified/higginsianin-b.yaml","higginsianin B"],["unclassified/higginsianin-c.yaml","higginsianin C"],["unclassified/higginsianin-d.yaml","higginsianin D"]],"b":[["NCBITaxon%3A80884","Colletotrichum higginsianum"]]},{"id":"NCBITaxon:945781","l":"Synechocystis salina LEGE 06099","na":7,"nb":1,"a":[["polyketides/bartoloside-e.yaml","bartoloside E"],["polyketides/bartoloside-f.yaml","bartoloside F"],["polyketides/bartoloside-g.yaml","bartoloside G"],["polyketides/bartoloside-h.yaml","bartoloside H"],["polyketides/bartoloside-i.yaml","bartoloside I"],["polyketides/bartoloside-j.yaml","bartoloside J"]],"b":[["NCBITaxon%3A945781","Synechocystis salina LEGE 06099"]]},{"id":"NCBITaxon:1173023","l":"Fischerella sp. PCC 9431","na":6,"nb":1,"a":[["unclassified/hapalosin-a.yaml","hapalosin A"],["unclassified/hapalosin-c.yaml","hapalosin C"],["unclassified/hapalosin-d.yaml","hapalosin D"],["unclassified/hapalosin-e.yaml","hapalosin E"],["unclassified/hapalosin-f.yaml","hapalosin F"],["unclassified/hapalosin-g.yaml","hapalosin G"]],"b":[["NCBITaxon%3A1173023","Fischerella sp. PCC 9431"]]},{"id":"NCBITaxon:128403","l":"Scytonema hofmannii PCC 7110","na":6,"nb":1,"a":[["amino_acids_and_peptides/scytocyclamide-a.yaml","scytocyclamide A"],["amino_acids_and_peptides/scytocyclamide-a2.yaml","scytocyclamide A2"],["amino_acids_and_peptides/scytocyclamide-b.yaml","scytocyclamide B"],["amino_acids_and_peptides/scytocyclamide-b2.yaml","scytocyclamide B2"],["amino_acids_and_peptides/scytocyclamide-b3.yaml","scytocyclamide B3"],["amino_acids_and_peptides/scytocyclamide-c.yaml","scytocyclamide C"]],"b":[["NCBITaxon%3A128403","Scytonema hofmannii PCC 7110"]]},{"id":"NCBITaxon:1342289","l":"Scytonema hofmannii AUS-JR/DB/NT-012","na":6,"nb":1,"a":[["amino_acids_and_peptides/scytocyclamide-a.yaml","scytocyclamide A"],["amino_acids_and_peptides/scytocyclamide-a2.yaml","scytocyclamide A2"],["amino_acids_and_peptides/scytocyclamide-b.yaml","scytocyclamide B"],["amino_acids_and_peptides/scytocyclamide-b2.yaml","scytocyclamide B2"],["amino_acids_and_peptides/scytocyclamide-b3.yaml","scytocyclamide B3"],["amino_acids_and_peptides/scytocyclamide-c.yaml","scytocyclamide C"]],"b":[["NCBITaxon%3A1342289","Scytonema hofmannii AUS-JR/DB/NT-012"]]},{"id":"NCBITaxon:1400207","l":"Streptomyces sp. MA37","na":6,"nb":1,"a":[["alkaloids/legonindolizine-a.yaml","Legonindolizine A"],["alkaloids/legonindolizine-b.yaml","Legonindolizine B"],["alkaloids/legonmycin-a.yaml","Legonmycin A"],["alkaloids/legonmycin-b.yaml","Legonmycin B"],["alkaloids/neocarazostatin-a.yaml","neocarazostatin A"],["unclassified/2r-3s-4s-5-fluoro-2-3-4-trihydroxypentanoic-acid.yaml","(2R,3S,4S)-5-fluoro-2,3,4-trihydroxypentanoic acid"]],"b":[["NCBITaxon%3A1400207","Streptomyces sp. MA37"]]},{"id":"NCBITaxon:1491466","l":"Trichoderma guizhouense","na":6,"nb":1,"a":[["polyketides/compound-1.yaml","compound 1"],["polyketides/compound-4.yaml","compound 4"],["polyketides/harziphilone.yaml","harziphilone"],["polyketides/isoharziphilone-1.yaml","isoharziphilone-1"],["polyketides/isoharziphilone-2.yaml","isoharziphilone-2"],["polyketides/t22azaphilone.yaml","t22azaphilone"]],"b":[["NCBITaxon%3A1491466","Trichoderma guizhouense"]]},{"id":"NCBITaxon:1521554","l":"Jaaginema geminatum","na":1,"nb":6,"a":[["fatty_acids/1-heptadecene.yaml","1-heptadecene"]],"b":[["NCBITaxon%3A1521554","Jaaginema geminatum"],["NCBITaxon%3A1849712","Jaaginema geminatum ISB76"],["NCBITaxon%3A2938171","Jaaginema geminatum MMK02"],["NCBITaxon%3A2602019","Jaaginema geminatum PJ S18"],["NCBITaxon%3A1521634","Jaaginema geminatum SAG 1459-8"],["NCBITaxon%3A2012957","Jaaginema geminatum SM S13"]]},{"id":"NCBITaxon:161235","l":"Streptomyces sp. PGA64","na":6,"nb":1,"a":[["polyketides/gaudimycin-a.yaml","gaudimycin A"],["polyketides/gaudimycin-c.yaml","gaudimycin C"],["polyketides/gaudimycin-d.yaml","gaudimycin D"],["polyketides/prejadomycin.yaml","prejadomycin"],["polyketides/rabelomycin.yaml","rabelomycin"],["polyketides/uwm6.yaml","UWM6"]],"b":[["NCBITaxon%3A161235","Streptomyces sp. PGA64"]]},{"id":"NCBITaxon:1873369","l":"Aspergillus hancockii","na":6,"nb":1,"a":[["alkaloids/hancockiamide-b.yaml","hancockiamide B"],["alkaloids/hancockiamide-c.yaml","hancockiamide C"],["alkaloids/hancockiamide-d.yaml","hancockiamide D"],["unclassified/hancockiamide-a.yaml","hancockiamide A"],["unclassified/hancockiamide-e.yaml","hancockiamide E"],["unclassified/hancockiamide-f.yaml","hancockiamide F"]],"b":[["NCBITaxon%3A1873369","Aspergillus hancockii"]]},{"id":"NCBITaxon:1894","l":"Kitasatospora aureofaciens","na":6,"nb":1,"a":[["fatty_acids/triacsin-c.yaml","triacsin C"],["polyketides/auricin.yaml","auricin"],["polyketides/chlortetracycline.yaml","chlortetracycline"],["polyketides/lipomycin.yaml","α-lipomycin"],["polyketides/oxytetracycline.yaml","oxytetracycline"],["polyketides/venturicidin-a.yaml","venturicidin A"]],"b":[["NCBITaxon%3A1894","Kitasatospora aureofaciens"]]},{"id":"NCBITaxon:2070498","l":"Streptomyces sp. IMB7-145","na":6,"nb":1,"a":[["polyketides/17-o-methylniphimycin.yaml","17-O-methylniphimycin"],["polyketides/19-o-malonylniphimycin.yaml","19-O-malonylniphimycin"],["polyketides/niphimycin-c.yaml","niphimycin C"],["polyketides/niphimycin-d.yaml","niphimycin D"],["polyketides/niphimycin-e.yaml","niphimycin E"],["polyketides/niphimycin-i.yaml","niphimycin Iα"]],"b":[["NCBITaxon%3A2070498","Streptomyces sp. IMB7-145"]]},{"id":"NCBITaxon:2546228","l":"Moorena producens ASI16Jul14-2","na":6,"nb":1,"a":[["amino_acids_and_peptides/vatiamide-e.yaml","vatiamide E"],["polyketides/vatiamide-a.yaml","vatiamide A"],["polyketides/vatiamide-b.yaml","vatiamide B"],["polyketides/vatiamide-c.yaml","vatiamide C"],["polyketides/vatiamide-d.yaml","vatiamide D"],["unclassified/vatiamide-f.yaml","vatiamide F"]],"b":[["NCBITaxon%3A2546228","Moorena producens ASI16Jul14-2"]]},{"id":"NCBITaxon:2602572","l":"Streptomyces sp. Tue6314","na":6,"nb":1,"a":[["polyketides/streptoketide-a.yaml","streptoketide A"],["polyketides/streptoketide-b.yaml","streptoketide B"],["polyketides/uwm5.yaml","UWM5"],["shikimates_and_phenylpropanoids/s2502.yaml","S2502"],["shikimates_and_phenylpropanoids/s2507.yaml","S2507"],["unclassified/streptoketide-c.yaml","streptoketide C"]],"b":[["NCBITaxon%3A2602572","Streptomyces sp. Tue6314"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":1,"nb":6,"a":[["alkaloids/parabactin.yaml","parabactin"]],"b":[["NCBITaxon%3A266","Paracoccus denitrificans"],["NCBITaxon%3A1302247","Paracoccus denitrificans JCM 21484"],["NCBITaxon%3A318586","Paracoccus denitrificans PD1222"],["NCBITaxon%3A1051075","Paracoccus denitrificans SD1"],["NCBITaxon%3A82367","Paracoccus pantotrophus"],["NCBITaxon%3A189685","uncultured Paracoccus sp."]]},{"id":"NCBITaxon:270689","l":"Streptomyces aculeolatus","na":6,"nb":1,"a":[["polyketides/e-837.yaml","E-837"],["terpenoids/napyradiomycin-a80915c.yaml","napyradiomycin A80915C"],["terpenoids/napyradiomycin.yaml","napyradiomycin"],["unclassified/napyradiomycin-2.yaml","napyradiomycin 2"],["unclassified/napyradiomycin-3.yaml","napyradiomycin 3"],["unclassified/napyradiomycin-4.yaml","napyradiomycin 4"]],"b":[["NCBITaxon%3A270689","Streptomyces aculeolatus"]]},{"id":"NCBITaxon:280754","l":"Pochonia chlamydosporia","na":6,"nb":1,"a":[["polyketides/monocillin-vi.yaml","monocillin VI"],["polyketides/monocillin-vii.yaml","monocillin VII"],["polyketides/monorden-d.yaml","monorden D"],["polyketides/pochonin-m.yaml","pochonin M"],["polyketides/radicicol.yaml","radicicol"],["polyketides/zearalenone.yaml","zearalenone"]],"b":[["NCBITaxon%3A280754","Pochonia chlamydosporia"]]},{"id":"NCBITaxon:285570","l":"","na":6,"nb":1,"a":[["alkaloids/4-z-annimycin.yaml","4-Z-annimycin"],["amino_acids_and_peptides/ws9326f.yaml","WS9326F"],["amino_acids_and_peptides/ws9326g.yaml","WS9326G"],["carbohydrates/nucleocidin.yaml","nucleocidin"],["unclassified/2r-3s-4s-5-fluoro-2-3-4-trihydroxypentanoic-acid.yaml","(2R,3S,4S)-5-fluoro-2,3,4-trihydroxypentanoic acid"],["unclassified/ws9326a.yaml","WS9326A"]],"b":[["NCBITaxon%3A67282","Streptomyces calvus"]]},{"id":"NCBITaxon:29916","l":"Fusarium sp.","na":6,"nb":1,"a":[["alkaloids/lucilactaene.yaml","lucilactaene"],["alkaloids/ng-391.yaml","NG-391"],["fatty_acids/1233b.yaml","1233B"],["polyketides/1233a.yaml","1233A"],["polyketides/bikaverin.yaml","bikaverin"],["polyketides/fusarubin.yaml","fusarubin"]],"b":[["NCBITaxon%3A29916","Fusarium sp."]]},{"id":"NCBITaxon:327061","l":"Annulohypoxylon truncatum","na":6,"nb":1,"a":[["terpenoids/brasilane-a.yaml","brasilane A"],["terpenoids/brasilane-d.yaml","brasilane D"],["terpenoids/brasilane-e.yaml","brasilane E"],["terpenoids/brasilane-f.yaml","brasilane F"],["terpenoids/trichobrasilenol.yaml","trichobrasilenol"],["terpenoids/xylarenic-acid-b.yaml","xylarenic acid B"]],"b":[["NCBITaxon%3A327061","Annulohypoxylon truncatum"]]},{"id":"NCBITaxon:337","l":"Burkholderia glumae","na":1,"nb":6,"a":[["alkaloids/toxoflavin.yaml","toxoflavin"]],"b":[["NCBITaxon%3A337","Burkholderia glumae"],["NCBITaxon%3A1248414","Burkholderia glumae 3252-8"],["NCBITaxon%3A1417989","Burkholderia glumae 336gr-1"],["NCBITaxon%3A1176514","Burkholderia glumae AU6208"],["NCBITaxon%3A626418","Burkholderia glumae BGR1"],["NCBITaxon%3A1176492","Burkholderia glumae LMG 2196 = ATCC 33617"]]},{"id":"NCBITaxon:37632","l":"Amycolatopsis sp.","na":6,"nb":1,"a":[["amino_acids_and_peptides/ristocetin-a.yaml","Ristocetin A"],["polyketides/rifamorpholine-a.yaml","rifamorpholine A"],["polyketides/rifamorpholine-b.yaml","rifamorpholine B"],["polyketides/rifamorpholine-c.yaml","rifamorpholine C"],["polyketides/rifamorpholine-d.yaml","rifamorpholine D"],["polyketides/rifamorpholine-e.yaml","rifamorpholine E"]],"b":[["NCBITaxon%3A37632","Amycolatopsis sp."]]},{"id":"NCBITaxon:45234","l":"Cordyceps","na":1,"nb":6,"a":[["polyketides/oosporein.yaml","oosporein"]],"b":[["NCBITaxon%3A218633","Cordyceps cicadae"],["NCBITaxon%3A89141","Cordyceps farinosa"],["NCBITaxon%3A43265","Cordyceps javanica"],["NCBITaxon%3A73501","Cordyceps militaris"],["NCBITaxon%3A2004951","Cordyceps sp. RAO-2017"],["NCBITaxon%3A45847","Cordyceps tenuipes"]]},{"id":"NCBITaxon:457412","l":"Ruminococcus sp. 5_1_39BFAA","na":6,"nb":1,"a":[["alkaloids/pzn10.yaml","PZN10"],["alkaloids/pzn11.yaml","PZN11"],["alkaloids/pzn5.yaml","PZN5"],["alkaloids/pzn6.yaml","PZN6"],["alkaloids/pzn7.yaml","PZN7"],["alkaloids/pzn9.yaml","PZN9"]],"b":[["NCBITaxon%3A457412","Ruminococcus sp. 5_1_39BFAA"]]},{"id":"NCBITaxon:46472","l":"Aspergillus versicolor","na":6,"nb":1,"a":[["alkaloids/psychrophilin-f.yaml","psychrophilin F"],["alkaloids/psychrophilin-g.yaml","psychrophilin G"],["polyketides/sterigmatocystin.yaml","sterigmatocystin"],["unclassified/chevalone-e.yaml","chevalone E"],["unclassified/notoamide-a.yaml","notoamide A"],["unclassified/psychrophilin-h.yaml","psychrophilin H"]],"b":[["NCBITaxon%3A46472","Aspergillus versicolor"]]},{"id":"NCBITaxon:47917","l":"Serratia fonticola","na":1,"nb":6,"a":[["alkaloids/1-6-phenazinedimethanol.yaml","1,6-phenazinedimethanol"]],"b":[["NCBITaxon%3A47917","Serratia fonticola"],["NCBITaxon%3A1332071","Serratia fonticola AU-AP2C"],["NCBITaxon%3A1332070","Serratia fonticola AU-P3(3)"],["NCBITaxon%3A649197","Serratia fonticola DSM 22080"],["NCBITaxon%3A1378072","Serratia fonticola LMG 7882"],["NCBITaxon%3A1379259","Serratia fonticola UTAD54"]]},{"id":"NCBITaxon:482630","l":"Hassallia byssoidea","na":1,"nb":6,"a":[["carbohydrates/tubercidin.yaml","tubercidin"]],"b":[["NCBITaxon%3A482630","Hassallia byssoidea"],["NCBITaxon%3A482631","Hassallia byssoidea CCALA 823"],["NCBITaxon%3A1168767","Hassallia byssoidea CCALA 841"],["NCBITaxon%3A2489140","Hassallia byssoidea KZ-2-2-3"],["NCBITaxon%3A2489141","Hassallia byssoidea KZ-7-1-5"],["NCBITaxon%3A1304833","Hassallia byssoidea VB512170"]]},{"id":"NCBITaxon:5081","l":"Penicillium sp.","na":6,"nb":1,"a":[["alkaloids/citridone-a.yaml","citridone A"],["alkaloids/citridone-b-2.yaml","citridone B'"],["alkaloids/citridone-b.yaml","citridone B"],["alkaloids/cj-15-696.yaml","CJ-15,696"],["alkaloids/cj-16-173.yaml","CJ-16,173"],["polyketides/gregatin-a.yaml","gregatin A"]],"b":[["NCBITaxon%3A5081","Penicillium sp."]]},{"id":"NCBITaxon:5082","l":"Penicillium roqueforti","na":6,"nb":1,"a":[["alkaloids/mycophenolic-acid-2.yaml","mycophenolic acid"],["polyketides/mycophenolic-acid.yaml","mycophenolic acid"],["terpenoids/pr-toxin.yaml","PR-toxin"],["unclassified/andrastin-a.yaml","andrastin A"],["unclassified/roquefortine-c.yaml","roquefortine C"],["unclassified/roquefortine-d.yaml","roquefortine D"]],"b":[["NCBITaxon%3A5082","Penicillium roqueforti"]]},{"id":"NCBITaxon:5111","l":"Claviceps purpurea","na":6,"nb":1,"a":[["alkaloids/elymoclavine.yaml","elymoclavine"],["alkaloids/ergocryptine.yaml","α-ergocryptine"],["alkaloids/ergotamine.yaml","ergotamine"],["alkaloids/ergovaline.yaml","ergovaline"],["polyketides/clavorubin.yaml","Clavorubin"],["polyketides/endocrocin.yaml","endocrocin"]],"b":[["NCBITaxon%3A5111","Claviceps purpurea"]]},{"id":"NCBITaxon:52","l":"Chondromyces crocatus","na":6,"nb":1,"a":[["polyketides/chondrochloren-a.yaml","chondrochloren A"],["polyketides/cmc-thuggacin-a.yaml","Cmc-thuggacin A"],["polyketides/crocacin.yaml","crocacin"],["shikimates_and_phenylpropanoids/ajudazol-a.yaml","ajudazol A"],["unclassified/chondramide-a.yaml","chondramide A"],["unclassified/cmc-thuggacin-b.yaml","Cmc-thuggacin B"]],"b":[["NCBITaxon%3A52","Chondromyces crocatus"]]},{"id":"NCBITaxon:548826","l":"Fischerella sp. CENA161","na":6,"nb":1,"a":[["amino_acids_and_peptides/microcystin-fr.yaml","microcystin-FR"],["amino_acids_and_peptides/microcystin-la.yaml","microcystin-LA"],["amino_acids_and_peptides/microcystin-laba.yaml","microcystin-LAba"],["amino_acids_and_peptides/microcystin-ll.yaml","microcystin-LL"],["amino_acids_and_peptides/microcystin-lm.yaml","microcystin-LM"],["amino_acids_and_peptides/microcystin-lr.yaml","microcystin-LR"]],"b":[["NCBITaxon%3A548826","Fischerella sp. CENA161"]]},{"id":"NCBITaxon:5530","l":"Metarhizium anisopliae","na":6,"nb":1,"a":[["alkaloids/ng-391.yaml","NG-391"],["amino_acids_and_peptides/serinocyclin-a.yaml","serinocyclin A"],["amino_acids_and_peptides/serinocyclin-b.yaml","serinocyclin B"],["fatty_acids/baa.yaml","BAA"],["fatty_acids/bab.yaml","BAB"],["unclassified/destruxin-a.yaml","destruxin A"]],"b":[["NCBITaxon%3A5530","Metarhizium anisopliae"]]},{"id":"NCBITaxon:654447","l":"Streptomyces youssoufiensis","na":6,"nb":1,"a":[["polyketides/reedsmycin-a.yaml","reedsmycin A"],["polyketides/youssoufene-a1.yaml","youssoufene A1"],["unclassified/youssoufene-b1.yaml","youssoufene B1"],["unclassified/youssoufene-b2.yaml","youssoufene B2"],["unclassified/youssoufene-b3.yaml","youssoufene B3"],["unclassified/youssoufene-b4.yaml","youssoufene B4"]],"b":[["NCBITaxon%3A654447","Streptomyces youssoufiensis"]]},{"id":"NCBITaxon:1006598","l":"Serratia plymuthica RVH1","na":5,"nb":1,"a":[["amino_acids_and_peptides/prezeamine-i.yaml","prezeamine I"],["amino_acids_and_peptides/prezeamine.yaml","prezeamine"],["fatty_acids/zeamine-i.yaml","zeamine I"],["fatty_acids/zeamine-ii.yaml","zeamine II"],["fatty_acids/zeamine.yaml","zeamine"]],"b":[["NCBITaxon%3A1006598","Serratia plymuthica RVH1"]]},{"id":"NCBITaxon:1110502","l":"Tistrella mobilis KA081020-065","na":5,"nb":1,"a":[["unclassified/dehydrodidemnin-b-aplidine.yaml","dehydrodidemnin B (aplidine)"],["unclassified/didemnin-b.yaml","didemnin B"],["unclassified/didemnin-x.yaml","didemnin X"],["unclassified/didemnin-y.yaml","didemnin Y"],["unclassified/nordidemnin-b.yaml","nordidemnin B"]],"b":[["NCBITaxon%3A1110502","Tistrella mobilis KA081020-065"]]},{"id":"NCBITaxon:1437453","l":"Streptomyces leeuwenhoekii","na":5,"nb":1,"a":[["amino_acids_and_peptides/leepeptin.yaml","Leepeptin"],["polyketides/chaxamycin-a.yaml","chaxamycin A"],["polyketides/chaxamycin-b.yaml","chaxamycin B"],["polyketides/chaxamycin-c.yaml","chaxamycin C"],["polyketides/chaxamycin-d.yaml","chaxamycin D"]],"b":[["NCBITaxon%3A1437453","Streptomyces leeuwenhoekii"]]},{"id":"NCBITaxon:1485014","l":"Kitasatospora sp. HKI 714","na":5,"nb":1,"a":[["alkaloids/5-2-hydroxyacetyl-5-10-dihydrophenazine-1-carboxylic-acid.yaml","5-(2-hydroxyacetyl)-5,10-dihydrophenazine-1-carboxylic acid"],["alkaloids/5-acetyl-5-10-dihydrophenazine-1-carboxylic-acid.yaml","5-acetyl-5,10-dihydrophenazine-1-carboxylic acid"],["alkaloids/endophenazine-a1.yaml","endophenazine A1"],["alkaloids/endophenazine-f.yaml","endophenazine F"],["alkaloids/endophenazine-g.yaml","endophenazine G"]],"b":[["NCBITaxon%3A1485014","Kitasatospora sp. HKI 714"]]},{"id":"NCBITaxon:1550245","l":"Aetokthonos hydrillicola","na":1,"nb":5,"a":[["alkaloids/aetokthonotoxin.yaml","aetokthonotoxin"]],"b":[["NCBITaxon%3A1550245","Aetokthonos hydrillicola"],["NCBITaxon%3A299580","Aetokthonos hydrillicola AEL04-Oct-6-03"],["NCBITaxon%3A2710484","Aetokthonos hydrillicola CCALA 1050"],["NCBITaxon%3A2028341","Aetokthonos hydrillicola JST01"],["NCBITaxon%3A2712845","Aetokthonos hydrillicola Thurmond2011"]]},{"id":"NCBITaxon:1630014","l":"uncultured bacterium AR_456","na":5,"nb":1,"a":[["amino_acids_and_peptides/clarexpoxcin-a.yaml","Clarexpoxcin A"],["amino_acids_and_peptides/clarexpoxcin-b.yaml","Clarexpoxcin B"],["amino_acids_and_peptides/clarexpoxcin-c.yaml","Clarexpoxcin C"],["amino_acids_and_peptides/clarexpoxcin-d.yaml","Clarexpoxcin D"],["amino_acids_and_peptides/clarexpoxcin-e.yaml","Clarexpoxcin E"]],"b":[["NCBITaxon%3A1630014","uncultured bacterium AR_456"]]},{"id":"NCBITaxon:176275","l":"Beauveria bassiana","na":5,"nb":1,"a":[["alkaloids/desmethylbassianin.yaml","desmethylbassianin"],["alkaloids/tenellin.yaml","tenellin"],["polyketides/oosporein.yaml","oosporein"],["unclassified/bassianolide.yaml","bassianolide"],["unclassified/beauvericin.yaml","beauvericin"]],"b":[["NCBITaxon%3A176275","Beauveria bassiana"]]},{"id":"NCBITaxon:1873482","l":"Xenorhabdus eapokensis","na":5,"nb":1,"a":[["alkaloids/9-deoxy-tilivalline.yaml","9-deoxy tilivalline"],["alkaloids/dehydro-tilivalline.yaml","dehydro tilivalline"],["alkaloids/dihydroxy-dehydro-tilivalline.yaml","dihydroxy-dehydro tilivalline"],["alkaloids/dihydroxy-tilivalline.yaml","dihydroxy tilivalline"],["alkaloids/tilivalline.yaml","tilivalline"]],"b":[["NCBITaxon%3A1873482","Xenorhabdus eapokensis"]]},{"id":"NCBITaxon:1919","l":"Streptomyces microflavus","na":1,"nb":5,"a":[["polyketides/ll-f28249.yaml","LL-F28249α"]],"b":[["NCBITaxon%3A67269","Streptomyces alboviridis"],["NCBITaxon%3A164114","Streptomyces luridiscabiei"],["NCBITaxon%3A1919","Streptomyces microflavus"],["NCBITaxon%3A1303692","Streptomyces microflavus DSM 40593"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:1982761","l":"Streptomyces sp. CS113","na":5,"nb":1,"a":[["polyketides/antibiotic-a2121-1.yaml","antibiotic A2121-1"],["polyketides/antibiotic-hki-10311129.yaml","antibiotic HKI 10311129"],["polyketides/cervimycin-a.yaml","cervimycin A"],["polyketides/cervimycin-c.yaml","cervimycin C"],["polyketides/cervimycin-d.yaml","cervimycin D"]],"b":[["NCBITaxon%3A1982761","Streptomyces sp. CS113"]]},{"id":"NCBITaxon:220664","l":"Pseudomonas protegens Pf-5","na":5,"nb":1,"a":[["alkaloids/pyoluteorin.yaml","pyoluteorin"],["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"],["unclassified/orfamide-a.yaml","orfamide A"],["unclassified/orfamide-c.yaml","orfamide C"],["unclassified/pf-5-pyoverdine.yaml","Pf-5 pyoverdine"]],"b":[["NCBITaxon%3A220664","Pseudomonas protegens Pf-5"]]},{"id":"NCBITaxon:223374","l":"Cladorrhinum","na":1,"nb":5,"a":[["polyketides/patulin.yaml","patulin"]],"b":[["NCBITaxon%3A314027","Cladorrhinum coprophilum"],["NCBITaxon%3A223375","Cladorrhinum foecundissimum"],["NCBITaxon%3A2587396","Cladorrhinum hyalocarpum"],["NCBITaxon%3A711350","Cladorrhinum microsclerotigenum"],["NCBITaxon%3A585594","Cladorrhinum samala"]]},{"id":"NCBITaxon:2721247","l":"Symphyonema bifilamentata 97.28","na":5,"nb":1,"a":[["alkaloids/tjipanazole-d.yaml","tjipanazole D"],["alkaloids/tjipanazole-i.yaml","tjipanazole I"],["alkaloids/tjipanazole-k.yaml","tjipanazole K"],["alkaloids/tjipanazole-l.yaml","tjipanazole L"],["alkaloids/tjipanazole-m.yaml","tjipanazole M"]],"b":[["NCBITaxon%3A2721247","Symphyonema bifilamentata 97.28"]]},{"id":"NCBITaxon:2795974","l":"Stieleria maiorica","na":5,"nb":1,"a":[["alkaloids/stieleriacine-a1.yaml","stieleriacine A1"],["alkaloids/stieleriacine-a2.yaml","stieleriacine A2"],["fatty_acids/stieleriacine-c.yaml","stieleriacine C"],["unclassified/stieleriacine-b1.yaml","stieleriacine B1"],["unclassified/stieleriacine-b2.yaml","stieleriacine B2"]],"b":[["NCBITaxon%3A2795974","Stieleria maiorica"]]},{"id":"NCBITaxon:289240","l":"Neopestalotiopsis clavispora","na":5,"nb":1,"a":[["polyketides/1-2-dehydropenicillide.yaml","1,2-dehydropenicillide"],["polyketides/1-2-epoxy-3-4-didehydropenicillide.yaml","1,2-epoxy-3,4-didehydropenicillide"],["polyketides/3-methoxy-1-2-dehydropenicillide.yaml","3-methoxy-1,2-dehydropenicillide"],["polyketides/pestalotiollide-b.yaml","pestalotiollide B"],["polyketides/pestalotiollide-c.yaml","pestalotiollide C"]],"b":[["NCBITaxon%3A289240","Neopestalotiopsis clavispora"]]},{"id":"NCBITaxon:312019","l":"uncultured Candidatus Entotheonella sp.","na":5,"nb":1,"a":[["amino_acids_and_peptides/kasumigamide.yaml","kasumigamide"],["polyketides/calyculin-a.yaml","calyculin A"],["polyketides/calyculinamide-a.yaml","calyculinamide A"],["polyketides/dephosphonocalyculin-a.yaml","dephosphonocalyculin A"],["polyketides/phosphocalyculin-a.yaml","phosphocalyculin A"]],"b":[["NCBITaxon%3A312019","uncultured Candidatus Entotheonella sp."]]},{"id":"NCBITaxon:318","l":"Pseudomonas savastanoi pv. glycinea","na":1,"nb":5,"a":[["polyketides/coronatine.yaml","coronatine"]],"b":[["NCBITaxon%3A29438","Pseudomonas savastanoi"],["NCBITaxon%3A318","Pseudomonas savastanoi pv. glycinea"],["NCBITaxon%3A875329","Pseudomonas savastanoi pv. glycinea str. B076"],["NCBITaxon%3A875330","Pseudomonas savastanoi pv. glycinea str. race 4"],["NCBITaxon%3A317","Pseudomonas syringae"]]},{"id":"NCBITaxon:380704","l":"Aspergillus niger ATCC 1015","na":5,"nb":1,"a":[["polyketides/azanigerone-a.yaml","azanigerone A"],["polyketides/campyrone-b.yaml","campyrone B"],["polyketides/pyranonigrin-e.yaml","pyranonigrin E"],["polyketides/pyrophen.yaml","pyrophen"],["terpenoids/yanuthone-d.yaml","yanuthone D"]],"b":[["NCBITaxon%3A380704","Aspergillus niger ATCC 1015"]]},{"id":"NCBITaxon:38313","l":"Shewanella algae","na":1,"nb":5,"a":[["amino_acids_and_peptides/avaroferrin.yaml","avaroferrin"]],"b":[["NCBITaxon%3A38313","Shewanella algae"],["NCBITaxon%3A1331670","Shewanella algae ACDC"],["NCBITaxon%3A1236541","Shewanella algae JCM 14758"],["NCBITaxon%3A1236544","Shewanella algae JCM 21037 = NBRC 103173"],["NCBITaxon%3A24","Shewanella putrefaciens"]]},{"id":"NCBITaxon:40382","l":"Aspergillus ustus","na":5,"nb":1,"a":[["polyketides/sterigmatocystin.yaml","sterigmatocystin"],["polyketides/ustethylin-a.yaml","ustethylin A"],["unclassified/oxepinamide-d.yaml","oxepinamide D"],["unclassified/oxepinamide-f.yaml","oxepinamide F"],["unclassified/viridicatumtoxin.yaml","viridicatumtoxin"]],"b":[["NCBITaxon%3A40382","Aspergillus ustus"]]},{"id":"NCBITaxon:42747","l":"Fusarium heterosporum","na":5,"nb":1,"a":[["alkaloids/3r-5s-5-4-hydroxybenzyl-3-methyl-3-2e-4e-6e-8e-10e-4-8-10-trimethyldodeca-2-4-6-.yaml","(3R,5S)-5-(4-hydroxybenzyl)-3-methyl-3-((2E,4E,6E,8E,10E)-4,8,10-trimethyldodeca-2,4,6,8,10-pentaenoyl)pyrrolidine-2,4-dione"],["alkaloids/fusaridione-a.yaml","fusaridione A"],["terpenoids/mangicol-a.yaml","mangicol A"],["terpenoids/t-2-toxin.yaml","T-2 toxin"],["unclassified/equisetin.yaml","equisetin"]],"b":[["NCBITaxon%3A42747","Fusarium heterosporum"]]},{"id":"NCBITaxon:439478","l":"Scytonema mirabile","na":1,"nb":5,"a":[["polyketides/scytophycin.yaml","scytophycin"]],"b":[["NCBITaxon%3A2094164","Scytonema cf. mirabile ER0515.01"],["NCBITaxon%3A439478","Scytonema mirabile"],["NCBITaxon%3A439479","Scytonema mirabile 00558"],["NCBITaxon%3A3151466","Scytonema mirabile BACA0450"],["NCBITaxon%3A1521526","Scytonema mirabile SAG 83.79"]]},{"id":"NCBITaxon:467194","l":"Streptomyces sp. CNQ-418","na":5,"nb":1,"a":[["alkaloids/marinopyrrole-a.yaml","(−)-marinopyrrole A"],["alkaloids/marinopyrrole-b.yaml","(−)-marinopyrrole B"],["alkaloids/marinopyrrole-c.yaml","marinopyrrole C"],["alkaloids/marinopyrrole-d.yaml","marinopyrrole D"],["alkaloids/marinopyrrole-e.yaml","marinopyrrole E"]],"b":[["NCBITaxon%3A467194","Streptomyces sp. CNQ-418"]]},{"id":"NCBITaxon:488447","l":"Burkholderia contaminans","na":1,"nb":5,"a":[["amino_acids_and_peptides/occidiofungin-a.yaml","occidiofungin A"]],"b":[["NCBITaxon%3A488447","Burkholderia contaminans"],["NCBITaxon%3A1423418","Burkholderia contaminans FFH2050"],["NCBITaxon%3A1423419","Burkholderia contaminans FFH2055"],["NCBITaxon%3A1334628","Burkholderia contaminans LMG 23361"],["NCBITaxon%3A36773","Burkholderia sp."]]},{"id":"NCBITaxon:497689","l":"Streptomyces sp. SNA15896","na":5,"nb":1,"a":[["unclassified/sw-163c.yaml","SW-163C"],["unclassified/sw-163e.yaml","SW-163E"],["unclassified/sw-163f.yaml","SW-163F"],["unclassified/sw-163g.yaml","SW-163G"],["unclassified/uk-63598.yaml","UK 63598"]],"b":[["NCBITaxon%3A497689","Streptomyces sp. SNA15896"]]},{"id":"NCBITaxon:53437","l":"Nocardiopsis alba","na":1,"nb":5,"a":[["amino_acids_and_peptides/lp2006.yaml","LP2006"]],"b":[["NCBITaxon%3A53437","Nocardiopsis alba"],["NCBITaxon%3A1205910","Nocardiopsis alba ATCC BAA-2165"],["NCBITaxon%3A1245473","Nocardiopsis alba DSM 43377"],["NCBITaxon%3A2015","Nocardiopsis prasina"],["NCBITaxon%3A1245475","Nocardiopsis prasina DSM 43845"]]},{"id":"NCBITaxon:563922","l":"Streptomyces sp. ICBB 8177","na":5,"nb":1,"a":[["alkaloids/limazepine-a.yaml","limazepine A"],["alkaloids/limazepine-c.yaml","limazepine C"],["alkaloids/limazepine-d.yaml","limazepine D"],["alkaloids/limazepine-e.yaml","limazepine E"],["alkaloids/limazepine-f.yaml","limazepine F"]],"b":[["NCBITaxon%3A563922","Streptomyces sp. ICBB 8177"]]},{"id":"NCBITaxon:60171","l":"Penicillium verrucosum","na":5,"nb":1,"a":[["polyketides/verrucosidin.yaml","verrucosidin"],["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"],["unclassified/penitrem-a.yaml","penitrem A"],["unclassified/penitrem-b.yaml","penitrem B"],["unclassified/roquefortine-c.yaml","roquefortine C"]],"b":[["NCBITaxon%3A60171","Penicillium verrucosum"]]},{"id":"NCBITaxon:66429","l":"Streptomyces roseoverticillatus","na":1,"nb":5,"a":[["alkaloids/jawsamycin.yaml","jawsamycin"]],"b":[["NCBITaxon%3A44288","Streptomyces fervens subsp. phenomyceticus"],["NCBITaxon%3A66424","Streptomyces hiroshimensis"],["NCBITaxon%3A66429","Streptomyces roseoverticillatus"],["NCBITaxon%3A173832","Streptomyces roseoverticillatus subsp. melrosporus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:66858","l":"Streptomyces globisporus subsp. globisporus","na":1,"nb":5,"a":[["amino_acids_and_peptides/radamycin.yaml","radamycin"]],"b":[["NCBITaxon%3A66867","Streptomyces albovinaceus"],["NCBITaxon%3A1908","Streptomyces globisporus"],["NCBITaxon%3A66858","Streptomyces globisporus subsp. globisporus"],["NCBITaxon%3A66893","Streptomyces griseinus"],["NCBITaxon%3A68237","Streptomyces mediolani"]]},{"id":"NCBITaxon:67298","l":"Streptomyces flavidovirens","na":1,"nb":5,"a":[["amino_acids_and_peptides/mureidomycin-a.yaml","mureidomycin A"]],"b":[["NCBITaxon%3A67298","Streptomyces flavidovirens"],["NCBITaxon%3A1123319","Streptomyces flavidovirens DSM 40150"],["NCBITaxon%3A1522104","Streptomyces flavidovirens subsp. fuscus"],["NCBITaxon%3A52258","Streptomyces flavovirens"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:68175","l":"Streptomyces antimycoticus","na":1,"nb":5,"a":[["terpenoids/napyradiomycin.yaml","napyradiomycin"]],"b":[["NCBITaxon%3A68175","Streptomyces antimycoticus"],["NCBITaxon%3A1226758","Streptomyces antimycoticus subsp. mordarskii"],["NCBITaxon%3A53451","Streptomyces rutgersensis"],["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A68280","Streptomyces violaceusniger"]]},{"id":"NCBITaxon:684832","l":"Streptomyces platensis subsp. rosaceus","na":5,"nb":1,"a":[["alkaloids/13-epi-dorrigocin-a.yaml","13-epi-dorrigocin A"],["alkaloids/dorrigocin-a.yaml","dorrigocin A"],["alkaloids/dorrigocin-b.yaml","dorrigocin B"],["alkaloids/iso-migrastatin.yaml","iso-migrastatin"],["alkaloids/migrastatin.yaml","migrastatin"]],"b":[["NCBITaxon%3A684832","Streptomyces platensis subsp. rosaceus"]]},{"id":"NCBITaxon:904690","l":"Penicillium shearii","na":5,"nb":1,"a":[["unclassified/colletotrichin.yaml","colletotrichin"],["unclassified/metarhizin-a.yaml","metarhizin A"],["unclassified/paxilline.yaml","paxilline"],["unclassified/sesquicillin-a.yaml","sesquicillin A"],["unclassified/subglutinol-a.yaml","subglutinol A"]],"b":[["NCBITaxon%3A904690","Penicillium shearii"]]},{"id":"NCBITaxon:97376","l":"Biscogniauxia","na":1,"nb":5,"a":[["terpenoids/biscognienyne-b.yaml","biscognienyne B"]],"b":[["NCBITaxon%3A110534","Biscogniauxia marginata"],["NCBITaxon%3A97377","Biscogniauxia mediterranea"],["NCBITaxon%3A97378","Biscogniauxia nummularia"],["NCBITaxon%3A110533","Biscogniauxia simplicior"],["NCBITaxon%3A1896107","Biscogniauxia sp."]]},{"id":"NCBITaxon:986","l":"Flavobacterium johnsoniae","na":1,"nb":5,"a":[["polyketides/flexirubin.yaml","flexirubin"]],"b":[["NCBITaxon%3A2704140","Flavobacterium bizetiae"],["NCBITaxon%3A986","Flavobacterium johnsoniae"],["NCBITaxon%3A994","Flavobacterium johnsoniae subsp. aurantiacum"],["NCBITaxon%3A376686","Flavobacterium johnsoniae UW101"],["NCBITaxon%3A1337839","Flavobacterium sp. DSM 425"]]},{"id":"NCBITaxon:991132","l":"Streptomyces sp. DSM 5940","na":5,"nb":1,"a":[["amino_acids_and_peptides/mureidomycin-a.yaml","mureidomycin A"],["amino_acids_and_peptides/napsamycin-a.yaml","napsamycin A"],["amino_acids_and_peptides/napsamycin-b.yaml","napsamycin B"],["amino_acids_and_peptides/napsamycin-c.yaml","napsamycin C"],["amino_acids_and_peptides/napsamycin-d.yaml","napsamycin D"]],"b":[["NCBITaxon%3A991132","Streptomyces sp. DSM 5940"]]},{"id":"NCBITaxon:101028","l":"Fusarium pseudograminearum","na":4,"nb":1,"a":[["alkaloids/8-oxo-fusatin.yaml","8-oxo-fusatin"],["alkaloids/8-oxo-isopentenyladenine.yaml","8-oxo-isopentenyladenine"],["alkaloids/fusatin.yaml","fusatin"],["alkaloids/fusatinic-acid.yaml","fusatinic acid"]],"b":[["NCBITaxon%3A101028","Fusarium pseudograminearum"]]},{"id":"NCBITaxon:1033177","l":"Aspergillus luchuensis IFO 4308","na":4,"nb":1,"a":[["polyketides/akml-c.yaml","AKML C"],["polyketides/akml-d.yaml","AKML D"],["unclassified/akml-a.yaml","AKML A"],["unclassified/akml-b.yaml","AKML B"]],"b":[["NCBITaxon%3A1033177","Aspergillus luchuensis IFO 4308"]]},{"id":"NCBITaxon:1037453","l":"uncultured bacterium BAC AB649/1850","na":4,"nb":1,"a":[["polyketides/dehydrorabelomycin.yaml","dehydrorabelomycin"],["polyketides/fluostatin-f.yaml","fluostatin F"],["polyketides/fluostatin-g.yaml","fluostatin G"],["polyketides/rabelomycin.yaml","rabelomycin"]],"b":[["NCBITaxon%3A1037453","uncultured bacterium BAC AB649/1850"]]},{"id":"NCBITaxon:111805","l":"Actinomadura pelletieri","na":1,"nb":4,"a":[["alkaloids/undecylprodigiosin-2.yaml","undecylprodigiosin"]],"b":[["NCBITaxon%3A163603","Actinomadura latina"],["NCBITaxon%3A111805","Actinomadura pelletieri"],["NCBITaxon%3A1120940","Actinomadura pelletieri DSM 43383"],["NCBITaxon%3A37329","Nocardia farcinica"]]},{"id":"NCBITaxon:111807","l":"Actinomadura yumaensis","na":1,"nb":4,"a":[["polyketides/maduramicin.yaml","maduramicin"]],"b":[["NCBITaxon%3A111807","Actinomadura yumaensis"],["NCBITaxon%3A1408421","Actinomadura yumaensis ATCC 43060"],["NCBITaxon%3A1749037","Microbacterium zeae"],["NCBITaxon%3A2479765","Ochrobactrum teleogrylli"]]},{"id":"NCBITaxon:1120227","l":"Streptomyces coelicoflavus ZG0656","na":4,"nb":1,"a":[["carbohydrates/acarviostatin-i03.yaml","acarviostatin I03"],["carbohydrates/acarviostatin-ii03.yaml","acarviostatin II03"],["carbohydrates/acarviostatin-iii03.yaml","acarviostatin III03"],["carbohydrates/acarviostatin-iv03.yaml","acarviostatin IV03"]],"b":[["NCBITaxon%3A1120227","Streptomyces coelicoflavus ZG0656"]]},{"id":"NCBITaxon:1180","l":"Nostoc sp.","na":4,"nb":1,"a":[["amino_acids_and_peptides/heinamide-a1.yaml","heinamide A1"],["amino_acids_and_peptides/heinamide-a2.yaml","heinamide A2"],["amino_acids_and_peptides/heinamide-a3.yaml","heinamide A3"],["polyketides/carbamidocyclophane-h.yaml","carbamidocyclophane H"]],"b":[["NCBITaxon%3A1180","Nostoc sp."]]},{"id":"NCBITaxon:1191","l":"Fischerella sp.","na":4,"nb":1,"a":[["unclassified/hapalosin-c.yaml","hapalosin C"],["unclassified/hapalosin-e.yaml","hapalosin E"],["unclassified/hapalosin-f.yaml","hapalosin F"],["unclassified/hapalosin-g.yaml","hapalosin G"]],"b":[["NCBITaxon%3A1191","Fischerella sp."]]},{"id":"NCBITaxon:1215","l":"Prochloron sp.","na":4,"nb":1,"a":[["amino_acids_and_peptides/divamide-a.yaml","divamide A"],["amino_acids_and_peptides/patellamide-a.yaml","patellamide A"],["amino_acids_and_peptides/patellamide-b.yaml","patellamide B"],["amino_acids_and_peptides/patellin-6.yaml","patellin 6"]],"b":[["NCBITaxon%3A1215","Prochloron sp."]]},{"id":"NCBITaxon:1231934","l":"Nocardiopsis sp. CMB-M0232","na":4,"nb":1,"a":[["unclassified/nocardiopsin-a.yaml","nocardiopsin A"],["unclassified/nocardiopsin-b.yaml","nocardiopsin B"],["unclassified/nocardiopsin-c.yaml","nocardiopsin C"],["unclassified/nocardiopsin-d.yaml","nocardiopsin D"]],"b":[["NCBITaxon%3A1231934","Nocardiopsis sp. CMB-M0232"]]},{"id":"NCBITaxon:1283330","l":"Azotobacter vinelandii CA","na":4,"nb":1,"a":[["alkaloids/aminochelin.yaml","aminochelin"],["alkaloids/azotochelin.yaml","azotochelin"],["alkaloids/protochelin.yaml","protochelin"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]],"b":[["NCBITaxon%3A1283330","Azotobacter vinelandii CA"]]},{"id":"NCBITaxon:132474","l":"Streptomyces rimosus subsp. rimosus","na":1,"nb":4,"a":[["polyketides/rimocidin.yaml","rimocidin"]],"b":[["NCBITaxon%3A1890","Streptomyces antibioticus"],["NCBITaxon%3A1927","Streptomyces rimosus"],["NCBITaxon%3A132474","Streptomyces rimosus subsp. rimosus"],["NCBITaxon%3A1265868","Streptomyces rimosus subsp. rimosus ATCC 10970"]]},{"id":"NCBITaxon:133448","l":"Citrobacter youngae","na":1,"nb":4,"a":[["amino_acids_and_peptides/citrocin.yaml","citrocin"]],"b":[["NCBITaxon%3A67829","Citrobacter murliniae"],["NCBITaxon%3A876041","Citrobacter sp. DSM 30041"],["NCBITaxon%3A133448","Citrobacter youngae"],["NCBITaxon%3A500640","Citrobacter youngae ATCC 29220"]]},{"id":"NCBITaxon:1380707","l":"Sphaerospermopsis sp. LEGE 00249","na":4,"nb":1,"a":[["fatty_acids/chlorosphaerolactylate-a.yaml","chlorosphaerolactylate A"],["fatty_acids/chlorosphaerolactylate-b.yaml","chlorosphaerolactylate B"],["fatty_acids/chlorosphaerolactylate-c.yaml","chlorosphaerolactylate C"],["fatty_acids/chlorosphaerolactylate-d.yaml","chlorosphaerolactylate D"]],"b":[["NCBITaxon%3A1380707","Sphaerospermopsis sp. LEGE 00249"]]},{"id":"NCBITaxon:1382618","l":"Cylindrospermum alatosporum CCALA 988","na":4,"nb":1,"a":[["amino_acids_and_peptides/puwainaphycin-a.yaml","puwainaphycin A"],["amino_acids_and_peptides/puwainaphycin-b.yaml","puwainaphycin B"],["amino_acids_and_peptides/puwainaphycin-c.yaml","puwainaphycin C"],["amino_acids_and_peptides/puwainaphycin-d.yaml","puwainaphycin D"]],"b":[["NCBITaxon%3A1382618","Cylindrospermum alatosporum CCALA 988"]]},{"id":"NCBITaxon:141454","l":"Streptomyces wadayamensis","na":4,"nb":1,"a":[["amino_acids_and_peptides/aerobactin.yaml","aerobactin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"],["unclassified/antimycin-a.yaml","antimycin A"]],"b":[["NCBITaxon%3A141454","Streptomyces wadayamensis"]]},{"id":"NCBITaxon:1437823","l":"Xenorhabdus nematophila AN6/1","na":4,"nb":1,"a":[["alkaloids/odilorhabdin-noso-95a.yaml","odilorhabdin NOSO-95A"],["alkaloids/odilorhabdin-noso-95b.yaml","odilorhabdin NOSO-95B"],["alkaloids/odilorhabdin-noso-95c.yaml","odilorhabdin NOSO-95C"],["unclassified/xenematide.yaml","xenematide"]],"b":[["NCBITaxon%3A1437823","Xenorhabdus nematophila AN6/1"]]},{"id":"NCBITaxon:1510026","l":"Streptomyces sp. F001","na":4,"nb":1,"a":[["alkaloids/diazaquinomycin-a.yaml","diazaquinomycin A"],["alkaloids/diazaquinomycin-e.yaml","diazaquinomycin E"],["alkaloids/diazaquinomycin-f.yaml","diazaquinomycin F"],["alkaloids/diazaquinomycin-g.yaml","diazaquinomycin G"]],"b":[["NCBITaxon%3A1510026","Streptomyces sp. F001"]]},{"id":"NCBITaxon:1573173","l":"Colletotrichum incanum","na":4,"nb":1,"a":[["fatty_acids/ciml-a.yaml","CIML A"],["fatty_acids/ciml-b.yaml","CIML B"],["polyketides/ciml-c.yaml","CIML C"],["polyketides/ciml-d.yaml","CIML D"]],"b":[["NCBITaxon%3A1573173","Colletotrichum incanum"]]},{"id":"NCBITaxon:164546","l":"Cupriavidus taiwanensis","na":1,"nb":4,"a":[["amino_acids_and_peptides/taiwachelin.yaml","taiwachelin"]],"b":[["NCBITaxon%3A164546","Cupriavidus taiwanensis"],["NCBITaxon%3A977880","Cupriavidus taiwanensis LMG 19424"],["NCBITaxon%3A1040978","Cupriavidus taiwanensis STM 6018"],["NCBITaxon%3A129578","Oceanimonas baumannii"]]},{"id":"NCBITaxon:1678308","l":"Planktothrix paucivesiculata","na":1,"nb":4,"a":[["polyketides/luminaolide-b.yaml","luminaolide B"]],"b":[["NCBITaxon%3A1678308","Planktothrix paucivesiculata"],["NCBITaxon%3A671067","Planktothrix paucivesiculata PCC 8926"],["NCBITaxon%3A671069","Planktothrix paucivesiculata PCC 8954"],["NCBITaxon%3A671071","Planktothrix paucivesiculata PCC 9631"]]},{"id":"NCBITaxon:169388","l":"Fusarium solani","na":4,"nb":1,"a":[["alkaloids/fusaric-acid.yaml","fusaric acid"],["polyketides/doxorubicin.yaml","doxorubicin"],["polyketides/fusarubin.yaml","fusarubin"],["polyketides/zearalenone.yaml","zearalenone"]],"b":[["NCBITaxon%3A169388","Fusarium solani"]]},{"id":"NCBITaxon:173365","l":"Methylobacter tundripaludum","na":1,"nb":4,"a":[["unclassified/tundrenone.yaml","tundrenone"]],"b":[["NCBITaxon%3A173365","Methylobacter tundripaludum"],["NCBITaxon%3A1408450","Methylobacter tundripaludum 21/22"],["NCBITaxon%3A1408451","Methylobacter tundripaludum 31/32"],["NCBITaxon%3A697282","Methylobacter tundripaludum SV96"]]},{"id":"NCBITaxon:1820605","l":"Actinoallomurus sp. ID145698","na":4,"nb":1,"a":[["polyketides/allocyclinone-a.yaml","allocyclinone A"],["polyketides/allocyclinone-b.yaml","allocyclinone B"],["polyketides/allocyclinone-c.yaml","allocyclinone C"],["polyketides/allocyclinone-d.yaml","allocyclinone D"]],"b":[["NCBITaxon%3A1820605","Actinoallomurus sp. ID145698"]]},{"id":"NCBITaxon:1846204","l":"Streptomyces sp. A1(2016)","na":4,"nb":1,"a":[["polyketides/aldgamycin-e.yaml","aldgamycin E"],["polyketides/aldgamycin-j.yaml","aldgamycin J"],["polyketides/aldgamycin-k.yaml","aldgamycin K"],["polyketides/aldgamycin-p.yaml","aldgamycin P"]],"b":[["NCBITaxon%3A1846204","Streptomyces sp. A1(2016)"]]},{"id":"NCBITaxon:1887","l":"Streptomyces albogriseolus","na":1,"nb":4,"a":[["alkaloids/thienodolin.yaml","thienodolin"]],"b":[["NCBITaxon%3A1887","Streptomyces albogriseolus"],["NCBITaxon%3A1093098","Streptomyces albogriseolus 1-36"],["NCBITaxon%3A1608467","Streptomyces albogriseolus subsp. cellulolyticus"],["NCBITaxon%3A3075520","Streptomyces lancefieldiae"]]},{"id":"NCBITaxon:188770","l":"Streptomyces koyangensis","na":4,"nb":1,"a":[["amino_acids_and_peptides/vancomycin.yaml","vancomycin"],["polyketides/abyssomicin-2.yaml","Abyssomicin 2"],["polyketides/abyssomicin-4.yaml","Abyssomicin 4"],["polyketides/neoabyssomicin-b.yaml","Neoabyssomicin B"]],"b":[["NCBITaxon%3A188770","Streptomyces koyangensis"]]},{"id":"NCBITaxon:1926885","l":"Actinomadura rubteroloni","na":4,"nb":1,"a":[["polyketides/actinospirol-a.yaml","actinospirol A"],["polyketides/actinospirol-b.yaml","actinospirol B"],["polyketides/maduralactomycin-a.yaml","maduralactomycin A"],["polyketides/maduralactomycin-b.yaml","maduralactomycin B"]],"b":[["NCBITaxon%3A1926885","Actinomadura rubteroloni"]]},{"id":"NCBITaxon:1962977","l":"Catenulispora sp.","na":4,"nb":1,"a":[["polyketides/catenulisporolide-a.yaml","catenulisporolide A"],["polyketides/catenulisporolide-b.yaml","catenulisporolide B"],["polyketides/catenulisporolide-c.yaml","catenulisporolide C"],["polyketides/catenulisporolide-d.yaml","catenulisporolide D"]],"b":[["NCBITaxon%3A1962977","Catenulispora sp."]]},{"id":"NCBITaxon:1965334","l":"Cystobacter sp.","na":4,"nb":1,"a":[["unclassified/vioprolide-a.yaml","vioprolide A"],["unclassified/vioprolide-b.yaml","vioprolide B"],["unclassified/vioprolide-c.yaml","vioprolide C"],["unclassified/vioprolide-d.yaml","vioprolide D"]],"b":[["NCBITaxon%3A1965334","Cystobacter sp."]]},{"id":"NCBITaxon:1967","l":"Streptomyces kanamyceticus","na":4,"nb":1,"a":[["amino_acids_and_peptides/gausemycin-a.yaml","gausemycin A"],["amino_acids_and_peptides/gausemycin-b.yaml","gausemycin B"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/kanamycin-a.yaml","kanamycin A"]],"b":[["NCBITaxon%3A1967","Streptomyces kanamyceticus"]]},{"id":"NCBITaxon:198593","l":"Umezakia natans","na":1,"nb":4,"a":[["alkaloids/7-epi-cylindrospermopsin.yaml","7-epi-cylindrospermopsin"]],"b":[["NCBITaxon%3A198593","Umezakia natans"],["NCBITaxon%3A2741711","Umezakia natans HU2"],["NCBITaxon%3A372788","Umezakia natans TAC101"],["NCBITaxon%3A1048936","Umezakia natans TAC611"]]},{"id":"NCBITaxon:1993","l":"Actinomadura madurae","na":1,"nb":4,"a":[["polyketides/maduropeptin.yaml","maduropeptin"]],"b":[["NCBITaxon%3A1993","Actinomadura madurae"],["NCBITaxon%3A1394178","Actinomadura madurae LIID-AJ290"],["NCBITaxon%3A1220569","Actinomadura madurae NBRC 14623"],["NCBITaxon%3A1465509","Lactobacillus sp. JCM 7736"]]},{"id":"NCBITaxon:2017","l":"Streptoalloteichus hindustanus","na":4,"nb":1,"a":[["amino_acids_and_peptides/tallysomycin-a.yaml","tallysomycin A"],["amino_acids_and_peptides/tallysomycin-b.yaml","tallysomycin B"],["carbohydrates/apramycin.yaml","apramycin"],["carbohydrates/tobramycin.yaml","tobramycin"]],"b":[["NCBITaxon%3A2017","Streptoalloteichus hindustanus"]]},{"id":"NCBITaxon:2074","l":"Pseudonocardia autotrophica","na":1,"nb":4,"a":[["polyketides/nystatin-like-pseudonocardia-polyene-a1.yaml","nystatin-like Pseudonocardia polyene A1"]],"b":[["NCBITaxon%3A255205","Pseudoclavibacter helvolus"],["NCBITaxon%3A2074","Pseudonocardia autotrophica"],["NCBITaxon%3A29401","Pseudonocardia halophobica"],["NCBITaxon%3A471802","Pseudonocardia halophobica NRRL B-16514"]]},{"id":"NCBITaxon:221586","l":"Streptomyces amphibiosporus","na":4,"nb":1,"a":[["alkaloids/17-hydroxy-8-desmethoxy-isomigrastatin.yaml","17-hydroxy-8-desmethoxy-isomigrastatin"],["alkaloids/8-9-dihydrolactimidomycin.yaml","8,9-dihydrolactimidomycin"],["alkaloids/8-hydroxy-8-9-dihydrolactidomycin.yaml","8-hydroxy-8,9-dihydrolactidomycin"],["alkaloids/lactimidomycin.yaml","lactimidomycin"]],"b":[["NCBITaxon%3A221586","Streptomyces amphibiosporus"]]},{"id":"NCBITaxon:221822","l":"Phaeobacter inhibens","na":1,"nb":4,"a":[["shikimates_and_phenylpropanoids/tropodithietic-acid.yaml","tropodithietic acid"]],"b":[["NCBITaxon%3A221822","Phaeobacter inhibens"],["NCBITaxon%3A383629","Phaeobacter inhibens 2.10"],["NCBITaxon%3A999548","Phaeobacter inhibens DSM 16374"],["NCBITaxon%3A391619","Phaeobacter inhibens DSM 17395"]]},{"id":"NCBITaxon:224537","l":"Streptomyces murayamaensis","na":4,"nb":1,"a":[["alkaloids/4-hydroxy-3-nitrosobenzamide.yaml","4-hydroxy-3-nitrosobenzamide"],["polyketides/dehydrorabelomycin.yaml","dehydrorabelomycin"],["polyketides/kinamycin.yaml","kinamycin"],["polyketides/murayaquinone.yaml","murayaquinone"]],"b":[["NCBITaxon%3A224537","Streptomyces murayamaensis"]]},{"id":"NCBITaxon:2600296","l":"Halomonas sp. MG34","na":4,"nb":1,"a":[["amino_acids_and_peptides/potashchelin-a.yaml","potashchelin A"],["amino_acids_and_peptides/potashchelin-b.yaml","potashchelin B"],["amino_acids_and_peptides/potashchelin-c.yaml","potashchelin C"],["amino_acids_and_peptides/potashchelin-d.yaml","potashchelin D"]],"b":[["NCBITaxon%3A2600296","Halomonas sp. MG34"]]},{"id":"NCBITaxon:267870","l":"Microcystis aeruginosa PCC 7005","na":4,"nb":1,"a":[["amino_acids_and_peptides/piricyclamide-7005e1.yaml","piricyclamide 7005E1"],["amino_acids_and_peptides/piricyclamide-7005e2.yaml","piricyclamide 7005E2"],["amino_acids_and_peptides/piricyclamide-7005e3.yaml","piricyclamide 7005E3"],["amino_acids_and_peptides/piricyclamide-7005e4.yaml","piricyclamide 7005E4"]],"b":[["NCBITaxon%3A267870","Microcystis aeruginosa PCC 7005"]]},{"id":"NCBITaxon:2713619","l":"Burkholderia sp. B8(2020)","na":4,"nb":1,"a":[["polyketides/necroxime-a.yaml","necroxime A"],["polyketides/necroxime-c.yaml","necroxime C"],["polyketides/necroxime-d.yaml","necroxime D"],["unclassified/necroxime-b.yaml","necroxime B"]],"b":[["NCBITaxon%3A2713619","Burkholderia sp. B8(2020)"]]},{"id":"NCBITaxon:2743","l":"Marinobacter nauticus","na":1,"nb":4,"a":[["alkaloids/petrobactin.yaml","petrobactin"]],"b":[["NCBITaxon%3A2743","Marinobacter nauticus"],["NCBITaxon%3A1163748","Marinobacter nauticus ATCC 49840"],["NCBITaxon%3A1238884","Marinobacter nauticus ES-69"],["NCBITaxon%3A351348","Marinobacter nauticus VT8"]]},{"id":"NCBITaxon:2750812","l":"Actinomadura graeca","na":4,"nb":1,"a":[["amino_acids_and_peptides/zelkovamycin-b.yaml","zelkovamycin B"],["amino_acids_and_peptides/zelkovamycin-c.yaml","zelkovamycin C"],["amino_acids_and_peptides/zelkovamycin-d.yaml","zelkovamycin D"],["amino_acids_and_peptides/zelkovamycin-e.yaml","zelkovamycin E"]],"b":[["NCBITaxon%3A2750812","Actinomadura graeca"]]},{"id":"NCBITaxon:285483","l":"Streptomyces miharaensis","na":4,"nb":1,"a":[["carbohydrates/miharamycin-b.yaml","miharamycin B"],["polyketides/filipin-iii.yaml","filipin III"],["unclassified/miharamycin-a-2.yaml","miharamycin A"],["unclassified/miharamycin-a.yaml","miharamycin A"]],"b":[["NCBITaxon%3A285483","Streptomyces miharaensis"]]},{"id":"NCBITaxon:2926","l":"Alexandrium tamarense","na":4,"nb":1,"a":[["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"],["alkaloids/gonyautoxin-2.yaml","gonyautoxin 2"],["alkaloids/neosaxitoxin.yaml","neosaxitoxin"],["alkaloids/saxitoxin.yaml","saxitoxin"]],"b":[["NCBITaxon%3A2926","Alexandrium tamarense"]]},{"id":"NCBITaxon:3100406","l":"Sphaerospermopsis sp.","na":4,"nb":1,"a":[["fatty_acids/chlorosphaerolactylate-a.yaml","chlorosphaerolactylate A"],["fatty_acids/chlorosphaerolactylate-b.yaml","chlorosphaerolactylate B"],["fatty_acids/chlorosphaerolactylate-c.yaml","chlorosphaerolactylate C"],["fatty_acids/chlorosphaerolactylate-d.yaml","chlorosphaerolactylate D"]],"b":[["NCBITaxon%3A3100406","Sphaerospermopsis sp."]]},{"id":"NCBITaxon:310350","l":"Nocardiopsis sp.","na":4,"nb":1,"a":[["alkaloids/k-252a.yaml","K-252a"],["polyketides/nocardiopsistin-a.yaml","nocardiopsistin A"],["polyketides/nocardiopsistin-b.yaml","nocardiopsistin B"],["polyketides/nocardiopsistin-c.yaml","nocardiopsistin C"]],"b":[["NCBITaxon%3A310350","Nocardiopsis sp."]]},{"id":"NCBITaxon:32049","l":"Picosynechococcus sp. PCC 7002","na":4,"nb":1,"a":[["alkaloids/synechobactin-a.yaml","synechobactin A"],["alkaloids/synechobactin-b.yaml","synechobactin B"],["alkaloids/synechobactin-c.yaml","synechobactin C"],["fatty_acids/nonadec-1-ene.yaml","nonadec-1-ene"]],"b":[["NCBITaxon%3A32049","Picosynechococcus sp. PCC 7002"]]},{"id":"NCBITaxon:36630","l":"Aspergillus fischeri","na":4,"nb":1,"a":[["polyketides/neosartorin.yaml","neosartorin"],["unclassified/acetylaszonalenin.yaml","acetylaszonalenin"],["unclassified/isoterrein.yaml","isoterrein"],["unclassified/pyripyropene-a.yaml","pyripyropene A"]],"b":[["NCBITaxon%3A36630","Aspergillus fischeri"]]},{"id":"NCBITaxon:36650","l":"Penicillium aethiopicum","na":4,"nb":1,"a":[["alkaloids/tryptoquialanine.yaml","tryptoquialanine"],["polyketides/epidechlorogriseofulvin.yaml","epidechlorogriseofulvin"],["polyketides/griseofulvin.yaml","griseofulvin"],["unclassified/viridicatumtoxin.yaml","viridicatumtoxin"]],"b":[["NCBITaxon%3A36650","Penicillium aethiopicum"]]},{"id":"NCBITaxon:387846","l":"Streptomyces ahygroscopicus","na":1,"nb":4,"a":[["polyketides/nystatin-a1.yaml","nystatin A1"]],"b":[["NCBITaxon%3A387846","Streptomyces ahygroscopicus"],["NCBITaxon%3A658228","Streptomyces ahygroscopicus subsp. liaoningensis"],["NCBITaxon%3A1423886","Streptomyces ahygroscopicus subsp. wuyiensis"],["NCBITaxon%3A387850","Streptomyces ahygroscopicus subsp. wuzhouensis"]]},{"id":"NCBITaxon:398006","l":"Cylindrospermopsis raciborskii T3","na":4,"nb":1,"a":[["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"],["alkaloids/gonyautoxin-2.yaml","gonyautoxin 2"],["alkaloids/neosaxitoxin.yaml","neosaxitoxin"],["alkaloids/saxitoxin.yaml","saxitoxin"]],"b":[["NCBITaxon%3A398006","Cylindrospermopsis raciborskii T3"]]},{"id":"NCBITaxon:40380","l":"Aspergillus ochraceus","na":4,"nb":1,"a":[["alkaloids/ochrindole-a.yaml","ochrindole A"],["polyketides/asperlactone.yaml","asperlactone"],["polyketides/murayaquinone.yaml","murayaquinone"],["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"]],"b":[["NCBITaxon%3A40380","Aspergillus ochraceus"]]},{"id":"NCBITaxon:431672","l":"Streptomyces sp. A2991200","na":4,"nb":1,"a":[["polyketides/be-43767.yaml","BE-43767"],["polyketides/benastatin-a.yaml","benastatin A"],["polyketides/benastatin-b.yaml","benastatin B"],["polyketides/tan1532b.yaml","TAN1532B"]],"b":[["NCBITaxon%3A431672","Streptomyces sp. A2991200"]]},{"id":"NCBITaxon:449468","l":"Microcystis aeruginosa NIES-298","na":4,"nb":1,"a":[["amino_acids_and_peptides/aerucyclamide-a.yaml","aerucyclamide A"],["amino_acids_and_peptides/aerucyclamide-c.yaml","aerucyclamide C"],["amino_acids_and_peptides/aerucyclamide-d.yaml","aerucyclamide D"],["amino_acids_and_peptides/microviridin-b.yaml","microviridin B"]],"b":[["NCBITaxon%3A449468","Microcystis aeruginosa NIES-298"]]},{"id":"NCBITaxon:48","l":"Archangium gephyra","na":4,"nb":1,"a":[["amino_acids_and_peptides/tubulysin-f.yaml","tubulysin F"],["amino_acids_and_peptides/tubulysin-g.yaml","tubulysin G"],["amino_acids_and_peptides/tubulysin-i.yaml","tubulysin I"],["polyketides/aurafuron-a.yaml","aurafuron A"]],"b":[["NCBITaxon%3A48","Archangium gephyra"]]},{"id":"NCBITaxon:481449","l":"Hapalosiphon hibernicus","na":1,"nb":4,"a":[["amino_acids_and_peptides/microcystin-la.yaml","microcystin-LA"]],"b":[["NCBITaxon%3A481449","Hapalosiphon hibernicus"],["NCBITaxon%3A1565559","Hapalosiphon hibernicus AUS-JR/BS/MS/NT-051"],["NCBITaxon%3A1565560","Hapalosiphon hibernicus AUS-JR/BS/MS/NT-052"],["NCBITaxon%3A481450","Hapalosiphon hibernicus BZ-3-1"]]},{"id":"NCBITaxon:5067","l":"Aspergillus parasiticus","na":4,"nb":1,"a":[["polyketides/aflatoxin-b2.yaml","aflatoxin B2"],["terpenoids/astellolide-a.yaml","astellolide A"],["unclassified/aflatoxin.yaml","aflatoxin"],["unclassified/aspergillic-acid.yaml","aspergillic acid"]],"b":[["NCBITaxon%3A5067","Aspergillus parasiticus"]]},{"id":"NCBITaxon:5078","l":"Penicillium griseofulvum","na":4,"nb":1,"a":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"],["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"],["terpenoids/penifulvin-a.yaml","penifulvin A"],["unclassified/cyclopiazonic-acid.yaml","α-cyclopiazonic acid"]],"b":[["NCBITaxon%3A5078","Penicillium griseofulvum"]]},{"id":"NCBITaxon:5083","l":"Penicillium canescens","na":4,"nb":1,"a":[["alkaloids/agroclavine-i.yaml","Agroclavine I"],["unclassified/outovirin-a.yaml","outovirin A"],["unclassified/outovirin-c.yaml","outovirin C"],["unclassified/penitrem-a.yaml","penitrem A"]],"b":[["NCBITaxon%3A5083","Penicillium canescens"]]},{"id":"NCBITaxon:511145","l":"Escherichia coli str. K-12 substr. MG1655","na":1,"nb":4,"a":[["unclassified/enterobactin.yaml","enterobactin"]],"b":[["NCBITaxon%3A47678","Bacteroides caccae"],["NCBITaxon%3A411901","Bacteroides caccae ATCC 43185"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A511145","Escherichia coli str. K-12 substr. MG1655"]]},{"id":"NCBITaxon:5128","l":"Fusarium sambucinum","na":4,"nb":1,"a":[["alkaloids/chrysogine.yaml","chrysogine"],["polyketides/zearalenone.yaml","zearalenone"],["terpenoids/culmorin.yaml","culmorin"],["terpenoids/fusarochromanone.yaml","fusarochromanone"]],"b":[["NCBITaxon%3A5128","Fusarium sambucinum"]]},{"id":"NCBITaxon:5341","l":"Agaricus bisporus","na":1,"nb":4,"a":[["polyketides/kojic-acid.yaml","kojic acid"]],"b":[["NCBITaxon%3A5341","Agaricus bisporus"],["NCBITaxon%3A936046","Agaricus bisporus var. bisporus H97"],["NCBITaxon%3A192524","Agaricus bisporus var. burnettii"],["NCBITaxon%3A597362","Agaricus bisporus var. burnettii JB137-S8"]]},{"id":"NCBITaxon:5516","l":"Fusarium culmorum","na":4,"nb":1,"a":[["polyketides/zearalenone.yaml","zearalenone"],["terpenoids/15-acetyldeoxynivalenol.yaml","15-acetyldeoxynivalenol"],["terpenoids/culmorin.yaml","culmorin"],["terpenoids/nivalenol.yaml","nivalenol"]],"b":[["NCBITaxon%3A5516","Fusarium culmorum"]]},{"id":"NCBITaxon:58291","l":"Rhizopus microsporus","na":1,"nb":4,"a":[["unclassified/rhizoxin-a.yaml","rhizoxin A"]],"b":[["NCBITaxon%3A58291","Rhizopus microsporus"],["NCBITaxon%3A4843","Rhizopus microsporus var. chinensis"],["NCBITaxon%3A86635","Rhizopus microsporus var. microsporus"],["NCBITaxon%3A4847","Rhizopus microsporus var. oligosporus"]]},{"id":"NCBITaxon:587","l":"Providencia rettgeri","na":1,"nb":4,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]],"b":[["NCBITaxon%3A587","Providencia rettgeri"],["NCBITaxon%3A1255575","Providencia rettgeri 947"],["NCBITaxon%3A1141663","Providencia rettgeri Dmel1"],["NCBITaxon%3A521000","Providencia rettgeri DSM 1131"]]},{"id":"NCBITaxon:61624","l":"Paenibacillus mucilaginosus","na":1,"nb":4,"a":[["amino_acids_and_peptides/bacillopaline.yaml","bacillopaline"]],"b":[["NCBITaxon%3A61624","Paenibacillus mucilaginosus"],["NCBITaxon%3A1116391","Paenibacillus mucilaginosus 3016"],["NCBITaxon%3A997761","Paenibacillus mucilaginosus K02"],["NCBITaxon%3A1036673","Paenibacillus mucilaginosus KNP414"]]},{"id":"NCBITaxon:634337","l":"Streptomyces sp. FXJ1.264","na":4,"nb":1,"a":[["amino_acids_and_peptides/azolemycin-a.yaml","azolemycin A"],["amino_acids_and_peptides/azolemycin-b.yaml","azolemycin B"],["amino_acids_and_peptides/azolemycin-c.yaml","azolemycin C"],["amino_acids_and_peptides/azolemycin-d.yaml","azolemycin D"]],"b":[["NCBITaxon%3A634337","Streptomyces sp. FXJ1.264"]]},{"id":"NCBITaxon:655844","l":"Metarhizium robertsii ARSEF 23","na":4,"nb":1,"a":[["alkaloids/swainsonine.yaml","swainsonine"],["unclassified/destruxin-a.yaml","destruxin A"],["unclassified/subglutinol-a.yaml","subglutinol A"],["unclassified/subglutinol-b.yaml","subglutinol B"]],"b":[["NCBITaxon%3A655844","Metarhizium robertsii ARSEF 23"]]},{"id":"NCBITaxon:681626","l":"Streptomyces sp. 2238-SVT4","na":4,"nb":1,"a":[["polyketides/hatomarubigin-a.yaml","hatomarubigin A"],["polyketides/hatomarubigin-b.yaml","hatomarubigin B"],["polyketides/hatomarubigin-c.yaml","hatomarubigin C"],["polyketides/hatomarubigin-d.yaml","hatomarubigin D"]],"b":[["NCBITaxon%3A681626","Streptomyces sp. 2238-SVT4"]]},{"id":"NCBITaxon:68570","l":"","na":4,"nb":1,"a":[["amino_acids_and_peptides/deimino-antipain.yaml","deimino-antipain"],["polyketides/nystatin.yaml","nystatin"],["unclassified/albonoursin.yaml","albonoursin"],["unclassified/citrulassin-a.yaml","citrulassin A"]],"b":[["NCBITaxon%3A1971","Streptomyces noursei"]]},{"id":"NCBITaxon:701528","l":"Streptomyces sp. SANK 62799","na":4,"nb":1,"a":[["carbohydrates/a-503083-a.yaml","A-503083 A"],["carbohydrates/a-503083-b.yaml","A-503083 B"],["carbohydrates/a-503083-e.yaml","A-503083 E"],["carbohydrates/a-503083-f.yaml","A-503083 F"]],"b":[["NCBITaxon%3A701528","Streptomyces sp. SANK 62799"]]},{"id":"NCBITaxon:75750","l":"Aspergillus sydowii","na":4,"nb":1,"a":[["alkaloids/fumigaclavine-c.yaml","fumigaclavine C"],["amino_acids_and_peptides/mulundocandin.yaml","mulundocandin"],["unclassified/orcinol.yaml","orcinol"],["unclassified/pyripyropene-a.yaml","pyripyropene A"]],"b":[["NCBITaxon%3A75750","Aspergillus sydowii"]]},{"id":"NCBITaxon:765170","l":"Cylindrospermum alatosporum","na":1,"nb":4,"a":[["amino_acids_and_peptides/puwainaphycin-a.yaml","puwainaphycin A"]],"b":[["NCBITaxon%3A765170","Cylindrospermum alatosporum"],["NCBITaxon%3A1382618","Cylindrospermum alatosporum CCALA 988"],["NCBITaxon%3A1382619","Cylindrospermum alatosporum CCALA 994"],["NCBITaxon%3A765171","Cylindrospermum alatosporum SAG 43.79"]]},{"id":"NCBITaxon:86667","l":"Jeotgalibacillus marinus","na":4,"nb":1,"a":[["fatty_acids/macrolactin-1c.yaml","macrolactin 1c"],["fatty_acids/macrolactin-b.yaml","macrolactin B"],["polyketides/macrolactin-e.yaml","macrolactin E"],["polyketides/macrolactin-h.yaml","macrolactin H"]],"b":[["NCBITaxon%3A86667","Jeotgalibacillus marinus"]]},{"id":"NCBITaxon:889268","l":"Nannocystis pusilla","na":4,"nb":1,"a":[["alkaloids/pyrronazol-b.yaml","pyrronazol B"],["polyketides/phenylnannolone-a.yaml","phenylnannolone A"],["polyketides/phenylnannolone-b.yaml","phenylnannolone B"],["polyketides/phenylnannolone-c.yaml","phenylnannolone C"]],"b":[["NCBITaxon%3A889268","Nannocystis pusilla"]]},{"id":"NCBITaxon:89137","l":"Paecilomyces fulvus","na":4,"nb":1,"a":[["polyketides/agnestadride-a.yaml","agnestadride A"],["polyketides/agnestadride-b.yaml","agnestadride B"],["polyketides/byssochlamic-acid.yaml","byssochlamic acid"],["polyketides/triketide-maleidride-monomer-type-a.yaml","Triketide maleidride monomer type A"]],"b":[["NCBITaxon%3A89137","Paecilomyces fulvus"]]},{"id":"NCBITaxon:104397","l":"Epicoccum","na":1,"nb":3,"a":[["polyketides/epipyrone-a.yaml","epipyrone A"]],"b":[["NCBITaxon%3A124084","Epicoccum andropogonis"],["NCBITaxon%3A105696","Epicoccum nigrum"],["NCBITaxon%3A749593","Epicoccum sorghinum"]]},{"id":"NCBITaxon:1213862","l":"Streptomyces sp. SANK 60404","na":3,"nb":1,"a":[["amino_acids_and_peptides/vazabitide-a.yaml","vazabitide A"],["polyketides/2e-4e-6e-8e-n-2-hydroxy-5-oxocyclopent-1-en-1-yl-9-o-tolyl-nona-2-4-6-8-tetraena.yaml","(2E,4E,6E,8E)-N-(2-hydroxy-5-oxocyclopent-1-en-1-yl)-9-(o-tolyl)nona-2,4,6,8-tetraenamide"],["shikimates_and_phenylpropanoids/e-n-2-hydroxy-5-oxocyclopent-1-en-1-yl-5-o-tolyl-pent-4-enamide.yaml","(E)-N-(2-hydroxy-5-oxocyclopent-1-en-1-yl)-5-(o-tolyl)pent-4-enamide"]],"b":[["NCBITaxon%3A1213862","Streptomyces sp. SANK 60404"]]},{"id":"NCBITaxon:1246988","l":"Scytonema ocellatum","na":1,"nb":3,"a":[["polyketides/scytophycin.yaml","scytophycin"]],"b":[["NCBITaxon%3A1246988","Scytonema ocellatum"],["NCBITaxon%3A1352640","Scytonema ocellatum Es_Yyy1200"],["NCBITaxon%3A1246991","Scytonema ocellatum VB61277"]]},{"id":"NCBITaxon:1275","l":"Kocuria rosea","na":1,"nb":3,"a":[["amino_acids_and_peptides/kocurin.yaml","kocurin"]],"b":[["NCBITaxon%3A37921","Arthrobacter agilis"],["NCBITaxon%3A1275","Kocuria rosea"],["NCBITaxon%3A136273","Kocuria rosea subsp. polaris"]]},{"id":"NCBITaxon:1281","l":"Staphylococcus carnosus","na":1,"nb":3,"a":[["alkaloids/molybdenum-cofactor.yaml","molybdenum cofactor"]],"b":[["NCBITaxon%3A1281","Staphylococcus carnosus"],["NCBITaxon%3A1158532","Staphylococcus carnosus M0504"],["NCBITaxon%3A396513","Staphylococcus carnosus subsp. carnosus TM300"]]},{"id":"NCBITaxon:128442","l":"Talaromyces pinophilus","na":3,"nb":1,"a":[["polyketides/1-2-dehydropenicillide.yaml","1,2-dehydropenicillide"],["polyketides/patulin.yaml","patulin"],["unclassified/chrodrimanin-b.yaml","chrodrimanin B"]],"b":[["NCBITaxon%3A128442","Talaromyces pinophilus"]]},{"id":"NCBITaxon:1297742","l":"Pseudomyxococcus hansupus","na":1,"nb":3,"a":[["unclassified/myxochromide-c.yaml","myxochromide C"]],"b":[["NCBITaxon%3A51","Chondromyces apiculatus"],["NCBITaxon%3A1192034","Chondromyces apiculatus DSM 436"],["NCBITaxon%3A1297742","Pseudomyxococcus hansupus"]]},{"id":"NCBITaxon:1333476","l":"Streptomyces sp. SCSIO 11863","na":3,"nb":1,"a":[["shikimates_and_phenylpropanoids/neoenterocin-a.yaml","neoenterocin A"],["shikimates_and_phenylpropanoids/neoenterocin-b.yaml","neoenterocin B"],["terpenoids/enterocin.yaml","enterocin"]],"b":[["NCBITaxon%3A1333476","Streptomyces sp. SCSIO 11863"]]},{"id":"NCBITaxon:13684","l":"Parastagonospora nodorum","na":1,"nb":3,"a":[["shikimates_and_phenylpropanoids/mellein.yaml","(-)-Mellein"]],"b":[["NCBITaxon%3A13684","Parastagonospora nodorum"],["NCBITaxon%3A1211001","Parastagonospora nodorum Sn4"],["NCBITaxon%3A1211002","Parastagonospora nodorum Sn79"]]},{"id":"NCBITaxon:138278","l":"Aspergillus ochraceoroseus","na":3,"nb":1,"a":[["polyketides/aflatoxin-b2.yaml","aflatoxin B2"],["polyketides/sterigmatocystin.yaml","sterigmatocystin"],["unclassified/aflatoxin-b1.yaml","aflatoxin B1"]],"b":[["NCBITaxon%3A138278","Aspergillus ochraceoroseus"]]},{"id":"NCBITaxon:1428626","l":"Streptomyces malaysiense","na":3,"nb":1,"a":[["amino_acids_and_peptides/thioholgamide-a.yaml","thioholgamide A"],["amino_acids_and_peptides/thioholgamide-b.yaml","thioholgamide B"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"]],"b":[["NCBITaxon%3A1428626","Streptomyces malaysiense"]]},{"id":"NCBITaxon:1454205","l":"Moorena producens JHB","na":3,"nb":1,"a":[["amino_acids_and_peptides/cryptomaldamide.yaml","cryptomaldamide"],["amino_acids_and_peptides/hectoramide-b.yaml","hectoramide B"],["fatty_acids/1-heptadecene.yaml","1-heptadecene"]],"b":[["NCBITaxon%3A1454205","Moorena producens JHB"]]},{"id":"NCBITaxon:1463846","l":"Streptomyces sp. NRRL F-3213","na":3,"nb":1,"a":[["polyketides/mutaxanthene-a.yaml","mutaxanthene A"],["polyketides/mutaxanthene-b.yaml","mutaxanthene B"],["polyketides/mutaxanthene-d.yaml","mutaxanthene D"]],"b":[["NCBITaxon%3A1463846","Streptomyces sp. NRRL F-3213"]]},{"id":"NCBITaxon:1470456","l":"Streptomyces cyslabdanicus","na":3,"nb":1,"a":[["terpenoids/cyslabdan-a.yaml","cyslabdan A"],["terpenoids/cyslabdan-b.yaml","cyslabdan B"],["terpenoids/cyslabdan-c.yaml","cyslabdan C"]],"b":[["NCBITaxon%3A1470456","Streptomyces cyslabdanicus"]]},{"id":"NCBITaxon:1476877","l":"Streptomyces sp. NRRL B-1347","na":3,"nb":1,"a":[["alkaloids/gilvusmycin.yaml","gilvusmycin"],["amino_acids_and_peptides/detoxin-n2.yaml","detoxin N2"],["amino_acids_and_peptides/detoxin-n3.yaml","detoxin N3"]],"b":[["NCBITaxon%3A1476877","Streptomyces sp. NRRL B-1347"]]},{"id":"NCBITaxon:1570","l":"Halobacillus halophilus","na":1,"nb":3,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A1570","Halobacillus halophilus"],["NCBITaxon%3A866895","Halobacillus halophilus DSM 2266"],["NCBITaxon%3A56800","Halobacillus sp."]]},{"id":"NCBITaxon:1571707","l":"Streptomyces sp. SNM55","na":3,"nb":1,"a":[["amino_acids_and_peptides/ws9326f.yaml","WS9326F"],["amino_acids_and_peptides/ws9326g.yaml","WS9326G"],["unclassified/ws9326a.yaml","WS9326A"]],"b":[["NCBITaxon%3A1571707","Streptomyces sp. SNM55"]]},{"id":"NCBITaxon:1649596","l":"Streptomyces gandocaensis","na":3,"nb":1,"a":[["amino_acids_and_peptides/cahuitamycin-a.yaml","cahuitamycin A"],["amino_acids_and_peptides/cahuitamycin-b.yaml","cahuitamycin B"],["amino_acids_and_peptides/cahuitamycin-c.yaml","cahuitamycin C"]],"b":[["NCBITaxon%3A1649596","Streptomyces gandocaensis"]]},{"id":"NCBITaxon:167636","l":"Streptomyces carzinostaticus subsp. neocarzinostaticus","na":3,"nb":1,"a":[["fatty_acids/neocarzilin-a.yaml","neocarzilin A"],["fatty_acids/neocarzilin-b.yaml","neocarzilin B"],["unclassified/neocarzinostatin-chromophore.yaml","neocarzinostatin chromophore"]],"b":[["NCBITaxon%3A167636","Streptomyces carzinostaticus subsp. neocarzinostaticus"]]},{"id":"NCBITaxon:1703433","l":"Micromonospora sp. RL09-050-HVF-A","na":3,"nb":1,"a":[["unclassified/lobosamide-a.yaml","lobosamide A"],["unclassified/lobosamide-b.yaml","lobosamide B"],["unclassified/lobosamide-c.yaml","lobosamide C"]],"b":[["NCBITaxon%3A1703433","Micromonospora sp. RL09-050-HVF-A"]]},{"id":"NCBITaxon:1727214","l":"Rhodococcus sp. H-CA8f","na":3,"nb":1,"a":[["alkaloids/corynecin-i.yaml","corynecin I"],["alkaloids/corynecin-ii.yaml","corynecin II"],["alkaloids/corynecin-iii.yaml","corynecin III"]],"b":[["NCBITaxon%3A1727214","Rhodococcus sp. H-CA8f"]]},{"id":"NCBITaxon:1826667","l":"Streptomyces sp. CMB-0406","na":3,"nb":1,"a":[["unclassified/heronamide-a.yaml","heronamide A"],["unclassified/heronamide-b.yaml","heronamide B"],["unclassified/heronamide-c.yaml","heronamide C"]],"b":[["NCBITaxon%3A1826667","Streptomyces sp. CMB-0406"]]},{"id":"NCBITaxon:1828758","l":"Desmonostoc muscorum LEGE 12446","na":3,"nb":1,"a":[["unclassified/desmamide-a.yaml","desmamide A"],["unclassified/desmamide-b.yaml","desmamide B"],["unclassified/desmamide-c.yaml","desmamide C"]],"b":[["NCBITaxon%3A1828758","Desmonostoc muscorum LEGE 12446"]]},{"id":"NCBITaxon:1874","l":"Micromonospora chalcea","na":1,"nb":3,"a":[["polyketides/tetrocarcin-a.yaml","tetrocarcin A"]],"b":[["NCBITaxon%3A1874","Micromonospora chalcea"],["NCBITaxon%3A2008351","Micromonospora chalcea subsp. izumensis"],["NCBITaxon%3A1876","Micromonospora sp."]]},{"id":"NCBITaxon:1907","l":"Streptomyces glaucescens","na":3,"nb":1,"a":[["carbohydrates/5-hydroxystreptomycin.yaml","5'-hydroxystreptomycin"],["carbohydrates/streptomycin.yaml","streptomycin"],["polyketides/tetracenomycin-c.yaml","tetracenomycin C"]],"b":[["NCBITaxon%3A1907","Streptomyces glaucescens"]]},{"id":"NCBITaxon:1932","l":"Streptomyces tendae","na":3,"nb":1,"a":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"],["polyketides/lysolipin-i.yaml","lysolipin I"],["terpenoids/geosmin.yaml","(−)-geosmin"]],"b":[["NCBITaxon%3A1932","Streptomyces tendae"]]},{"id":"NCBITaxon:1940","l":"Streptomyces albireticuli","na":3,"nb":1,"a":[["fatty_acids/fuelimicin-b.yaml","fuelimicin B"],["fatty_acids/fuelimicin-c.yaml","fuelimicin C"],["fatty_acids/fuelimycin-a.yaml","fuelimycin A"]],"b":[["NCBITaxon%3A1940","Streptomyces albireticuli"]]},{"id":"NCBITaxon:1943","l":"Streptomyces griseoruber","na":3,"nb":1,"a":[["polyketides/cinerubin-b.yaml","cinerubin B"],["polyketides/hedamycin.yaml","hedamycin"],["polyketides/murayaquinone.yaml","murayaquinone"]],"b":[["NCBITaxon%3A1943","Streptomyces griseoruber"]]},{"id":"NCBITaxon:2047085","l":"Nodularia sp. (in: cyanobacteria)","na":3,"nb":1,"a":[["unclassified/nocuolactylate-a.yaml","Nocuolactylate A"],["unclassified/nocuolactylate-b.yaml","Nocuolactylate B"],["unclassified/nocuolactylate-c.yaml","Nocuolactylate C"]],"b":[["NCBITaxon%3A2047085","Nodularia sp. (in: cyanobacteria)"]]},{"id":"NCBITaxon:2066855","l":"Candidatus Entotheonella sp.","na":3,"nb":1,"a":[["polyketides/4-hydroxy-6-2-oxoheptadecyl-pyran-2-one.yaml","4-hydroxy-6-(2-oxoheptadecyl)pyran-2-one"],["polyketides/4-hydroxy-6-pentadecylpyran-2-one.yaml","4-hydroxy-6-pentadecylpyran-2-one"],["polyketides/cardol.yaml","cardol"]],"b":[["NCBITaxon%3A2066855","Candidatus Entotheonella sp."]]},{"id":"NCBITaxon:208443","l":"Amycolatopsis balhimycina","na":1,"nb":3,"a":[["amino_acids_and_peptides/balhimycin.yaml","balhimycin"]],"b":[["NCBITaxon%3A208443","Amycolatopsis balhimycina"],["NCBITaxon%3A1081091","Amycolatopsis balhimycina DSM 5908"],["NCBITaxon%3A1089545","Amycolatopsis balhimycina FH 1894"]]},{"id":"NCBITaxon:2303154","l":"Anabaena sp. UHCC-0399","na":3,"nb":1,"a":[["amino_acids_and_peptides/minutissamide-a.yaml","minutissamide A"],["amino_acids_and_peptides/minutissamide-b.yaml","minutissamide B"],["amino_acids_and_peptides/puwainaphycin-f.yaml","puwainaphycin F"]],"b":[["NCBITaxon%3A2303154","Anabaena sp. UHCC-0399"]]},{"id":"NCBITaxon:2305222","l":"Streptomyces sp. CBMAI 2042","na":3,"nb":1,"a":[["polyketides/alpiniamide.yaml","alpiniamide"],["unclassified/montanastatin.yaml","montanastatin"],["unclassified/valinomycin.yaml","valinomycin"]],"b":[["NCBITaxon%3A2305222","Streptomyces sp. CBMAI 2042"]]},{"id":"NCBITaxon:240292","l":"Trichormus variabilis ATCC 29413","na":3,"nb":1,"a":[["unclassified/4-deoxygadusol.yaml","4-deoxygadusol"],["unclassified/mycosporine-glycine.yaml","mycosporine glycine"],["unclassified/shinorine.yaml","shinorine"]],"b":[["NCBITaxon%3A240292","Trichormus variabilis ATCC 29413"]]},{"id":"NCBITaxon:2542736","l":"Streptomyces sp. CB02980","na":3,"nb":1,"a":[["alkaloids/pyrroloformamide-d.yaml","pyrroloformamide D"],["unclassified/pyrroloformamide-a.yaml","pyrroloformamide A"],["unclassified/pyrroloformamide-c.yaml","pyrroloformamide C"]],"b":[["NCBITaxon%3A2542736","Streptomyces sp. CB02980"]]},{"id":"NCBITaxon:2561920","l":"Streptomyces sp. IB201691-2A2","na":3,"nb":1,"a":[["polyketides/baikalomycin-a.yaml","baikalomycin A"],["polyketides/baikalomycin-b.yaml","baikalomycin B"],["polyketides/baikalomycin-c.yaml","baikalomycin C"]],"b":[["NCBITaxon%3A2561920","Streptomyces sp. IB201691-2A2"]]},{"id":"NCBITaxon:259942","l":"uncultured Prochloron sp.","na":3,"nb":1,"a":[["amino_acids_and_peptides/patellamide-b.yaml","patellamide B"],["amino_acids_and_peptides/patellin-6.yaml","patellin 6"],["amino_acids_and_peptides/trunkamide.yaml","trunkamide"]],"b":[["NCBITaxon%3A259942","uncultured Prochloron sp."]]},{"id":"NCBITaxon:264951","l":"Paecilomyces variotii","na":3,"nb":1,"a":[["polyketides/agnestin-a.yaml","agnestin A"],["polyketides/agnestin-b.yaml","agnestin B"],["polyketides/viriditoxin.yaml","viriditoxin"]],"b":[["NCBITaxon%3A264951","Paecilomyces variotii"]]},{"id":"NCBITaxon:267869","l":"Microcystis aeruginosa NIES-98","na":3,"nb":1,"a":[["amino_acids_and_peptides/aeruginosin-98-a.yaml","aeruginosin 98-A"],["amino_acids_and_peptides/aeruginosin-98-b.yaml","aeruginosin 98-B"],["amino_acids_and_peptides/aeruginosin-98-c.yaml","aeruginosin 98-C"]],"b":[["NCBITaxon%3A267869","Microcystis aeruginosa NIES-98"]]},{"id":"NCBITaxon:269800","l":"Thermobifida fusca YX","na":3,"nb":1,"a":[["amino_acids_and_peptides/fuscachelin-a.yaml","Fuscachelin A"],["amino_acids_and_peptides/fuscachelin-b.yaml","Fuscachelin B"],["amino_acids_and_peptides/fuscachelin-c.yaml","Fuscachelin C"]],"b":[["NCBITaxon%3A269800","Thermobifida fusca YX"]]},{"id":"NCBITaxon:271065","l":"Methylotuvimicrobium alcaliphilum","na":1,"nb":3,"a":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]],"b":[["NCBITaxon%3A271065","Methylotuvimicrobium alcaliphilum"],["NCBITaxon%3A1091494","Methylotuvimicrobium alcaliphilum 20Z"],["NCBITaxon%3A269709","Methylotuvimicrobium kenyense"]]},{"id":"NCBITaxon:272129","l":"Kamptonema sp. PCC 6506","na":3,"nb":1,"a":[["alkaloids/anatoxin-a.yaml","anatoxin-a"],["alkaloids/homoanatoxin-a.yaml","homoanatoxin-a"],["amino_acids_and_peptides/landornamide-a.yaml","landornamide A"]],"b":[["NCBITaxon%3A272129","Kamptonema sp. PCC 6506"]]},{"id":"NCBITaxon:2748322","l":"Brasilonema sp. CT11","na":3,"nb":1,"a":[["amino_acids_and_peptides/anabaenopeptin-788.yaml","anabaenopeptin 788"],["amino_acids_and_peptides/anabaenopeptin-802.yaml","anabaenopeptin 802"],["amino_acids_and_peptides/anabaenopeptin-816.yaml","anabaenopeptin 816"]],"b":[["NCBITaxon%3A2748322","Brasilonema sp. CT11"]]},{"id":"NCBITaxon:2777965","l":"Nodularia sp. LEGE 06071","na":3,"nb":1,"a":[["unclassified/nocuolactylate-a.yaml","Nocuolactylate A"],["unclassified/nocuolactylate-b.yaml","Nocuolactylate B"],["unclassified/nocuolactylate-c.yaml","Nocuolactylate C"]],"b":[["NCBITaxon%3A2777965","Nodularia sp. LEGE 06071"]]},{"id":"NCBITaxon:285530","l":"Streptomyces sviceus","na":1,"nb":3,"a":[["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"]],"b":[["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A285530","Streptomyces sviceus"],["NCBITaxon%3A463191","Streptomyces sviceus ATCC 29083"]]},{"id":"NCBITaxon:285557","l":"Streptomyces caniferus","na":3,"nb":1,"a":[["alkaloids/jomthonic-acid-a.yaml","jomthonic acid A"],["alkaloids/jomthonic-acid-c.yaml","jomthonic acid C"],["polyketides/jomthonic-acid-b.yaml","jomthonic acid B"]],"b":[["NCBITaxon%3A285557","Streptomyces caniferus"]]},{"id":"NCBITaxon:28893","l":"Streptomyces pilosus","na":3,"nb":1,"a":[["amino_acids_and_peptides/zorbamycin.yaml","zorbamycin"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"],["unclassified/piloquinone.yaml","piloquinone"]],"b":[["NCBITaxon%3A28893","Streptomyces pilosus"]]},{"id":"NCBITaxon:2919940","l":"Streptomyces tasikensis","na":3,"nb":1,"a":[["amino_acids_and_peptides/tasikamide-a.yaml","tasikamide A"],["amino_acids_and_peptides/tasikamide-b.yaml","tasikamide B"],["amino_acids_and_peptides/tasikamide-c.yaml","tasikamide C"]],"b":[["NCBITaxon%3A2919940","Streptomyces tasikensis"]]},{"id":"NCBITaxon:29301","l":"Streptomyces arenae","na":3,"nb":1,"a":[["polyketides/fogacin.yaml","fogacin"],["polyketides/naphtocyclinoic-acid.yaml","α naphtocyclinoic acid"],["terpenoids/pentalenolactone.yaml","pentalenolactone"]],"b":[["NCBITaxon%3A29301","Streptomyces arenae"]]},{"id":"NCBITaxon:29907","l":"Sporothrix","na":1,"nb":3,"a":[["polyketides/sporothriolide.yaml","sporothriolide"]],"b":[["NCBITaxon%3A1892476","Sporothrix dombeyi"],["NCBITaxon%3A545651","Sporothrix globosa"],["NCBITaxon%3A431197","Sporothrix pallida"]]},{"id":"NCBITaxon:311982","l":"Streptomyces hygroscopicus subsp. jinggangensis","na":1,"nb":3,"a":[["carbohydrates/validamycin-a-2.yaml","validamycin A"]],"b":[["NCBITaxon%3A311982","Streptomyces hygroscopicus subsp. jinggangensis"],["NCBITaxon%3A1133850","Streptomyces hygroscopicus subsp. jinggangensis 5008"],["NCBITaxon%3A1203460","Streptomyces hygroscopicus subsp. jinggangensis TL01"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans PD1222","na":1,"nb":3,"a":[["alkaloids/parabactin.yaml","parabactin"]],"b":[["NCBITaxon%3A266","Paracoccus denitrificans"],["NCBITaxon%3A1302247","Paracoccus denitrificans JCM 21484"],["NCBITaxon%3A318586","Paracoccus denitrificans PD1222"]]},{"id":"NCBITaxon:31943","l":"Brevibacterium iodinum","na":1,"nb":3,"a":[["alkaloids/iodinin.yaml","iodinin"]],"b":[["NCBITaxon%3A31943","Brevibacterium iodinum"],["NCBITaxon%3A1255616","Brevibacterium iodinum ATCC 49514"],["NCBITaxon%3A1295588","Brevibacterium iodinum ZoA 5"]]},{"id":"NCBITaxon:324833","l":"Streptomyces lasalocidi","na":3,"nb":1,"a":[["polyketides/lasalocid-2.yaml","lasalocid"],["polyketides/lasalocid.yaml","lasalocid"],["unclassified/echinomycin.yaml","echinomycin"]],"b":[["NCBITaxon%3A324833","Streptomyces lasalocidi"]]},{"id":"NCBITaxon:330084","l":"Amycolatopsis jejuensis","na":3,"nb":1,"a":[["amino_acids_and_peptides/detoxin-p1.yaml","detoxin P1"],["amino_acids_and_peptides/detoxin-p2.yaml","detoxin P2"],["amino_acids_and_peptides/detoxin-p3.yaml","detoxin P3"]],"b":[["NCBITaxon%3A330084","Amycolatopsis jejuensis"]]},{"id":"NCBITaxon:33203","l":"Purpureocillium lilacinum","na":3,"nb":1,"a":[["amino_acids_and_peptides/leucinostatin-a.yaml","leucinostatin A"],["amino_acids_and_peptides/leucinostatin-b.yaml","leucinostatin B"],["polyketides/patulin.yaml","patulin"]],"b":[["NCBITaxon%3A33203","Purpureocillium lilacinum"]]},{"id":"NCBITaxon:33898","l":"Streptomyces galbus","na":1,"nb":3,"a":[["polyketides/rustmicin.yaml","rustmicin"]],"b":[["NCBITaxon%3A33898","Streptomyces galbus"],["NCBITaxon%3A1522105","Streptomyces galbus subsp. achromogenes"],["NCBITaxon%3A3075518","Streptomyces gottesmaniae"]]},{"id":"NCBITaxon:34381","l":"Aspergillus japonicus","na":3,"nb":1,"a":[["amino_acids_and_peptides/aculeacin-a.yaml","aculeacin A"],["fatty_acids/himeic-acid-a.yaml","himeic acid A"],["unclassified/paraherquamide.yaml","paraherquamide"]],"b":[["NCBITaxon%3A34381","Aspergillus japonicus"]]},{"id":"NCBITaxon:35621","l":"Streptomyces mobaraensis","na":1,"nb":3,"a":[["amino_acids_and_peptides/bleomycin-a2.yaml","bleomycin A2"]],"b":[["NCBITaxon%3A173858","Streptomyces luteireticuli"],["NCBITaxon%3A35621","Streptomyces mobaraensis"],["NCBITaxon%3A1223523","Streptomyces mobaraensis NBRC 13819 = DSM 40847"]]},{"id":"NCBITaxon:37329","l":"Nocardia farcinica","na":1,"nb":3,"a":[["amino_acids_and_peptides/nocobactin-na.yaml","nocobactin NA"]],"b":[["NCBITaxon%3A37329","Nocardia farcinica"],["NCBITaxon%3A247156","Nocardia farcinica IFM 10152"],["NCBITaxon%3A1210076","Nocardia farcinica NBRC 15532"]]},{"id":"NCBITaxon:379530","l":"Cylindrospermum licheniforme UTEX B 2014","na":3,"nb":1,"a":[["polyketides/cylindrocyclophane-d.yaml","Cylindrocyclophane D"],["polyketides/cylindrocyclophane-e.yaml","Cylindrocyclophane E"],["polyketides/cylindrocyclophane-f.yaml","Cylindrocyclophane F"]],"b":[["NCBITaxon%3A379530","Cylindrospermum licheniforme UTEX B 2014"]]},{"id":"NCBITaxon:38","l":"Archangium disciforme","na":3,"nb":1,"a":[["alkaloids/myxochelin-a.yaml","myxochelin A"],["amino_acids_and_peptides/tubulysin-a.yaml","tubulysin A"],["amino_acids_and_peptides/tubulysin-h.yaml","tubulysin H"]],"b":[["NCBITaxon%3A38","Archangium disciforme"]]},{"id":"NCBITaxon:380703","l":"Aeromonas hydrophila subsp. hydrophila ATCC 7966","na":1,"nb":3,"a":[["amino_acids_and_peptides/amonabactin-p-750.yaml","amonabactin P 750"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A196023","Aeromonas hydrophila subsp. hydrophila"],["NCBITaxon%3A380703","Aeromonas hydrophila subsp. hydrophila ATCC 7966"]]},{"id":"NCBITaxon:387850","l":"Streptomyces ahygroscopicus subsp. wuzhouensis","na":3,"nb":1,"a":[["carbohydrates/gougerotin.yaml","gougerotin"],["carbohydrates/toyocamycin.yaml","toyocamycin"],["polyketides/nystatin-a1.yaml","nystatin A1"]],"b":[["NCBITaxon%3A387850","Streptomyces ahygroscopicus subsp. wuzhouensis"]]},{"id":"NCBITaxon:388467","l":"Planktothrix agardhii NIVA-CYA 126/8","na":3,"nb":1,"a":[["amino_acids_and_peptides/anabaenopeptin-908.yaml","anabaenopeptin 908"],["amino_acids_and_peptides/anabaenopeptin-915.yaml","anabaenopeptin 915"],["amino_acids_and_peptides/microcystin.yaml","microcystin"]],"b":[["NCBITaxon%3A388467","Planktothrix agardhii NIVA-CYA 126/8"]]},{"id":"NCBITaxon:40223","l":"Methylophaga thalassica","na":1,"nb":3,"a":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]],"b":[["NCBITaxon%3A568897","Ectothiorhodospira salini"],["NCBITaxon%3A40223","Methylophaga thalassica"],["NCBITaxon%3A1026882","Methylophaga thalassica MP"]]},{"id":"NCBITaxon:40988","l":"Saccharomonospora azurea","na":1,"nb":3,"a":[["polyketides/primycin.yaml","primycin"]],"b":[["NCBITaxon%3A40988","Saccharomonospora azurea"],["NCBITaxon%3A882081","Saccharomonospora azurea NA-128"],["NCBITaxon%3A1114959","Saccharomonospora azurea SZMC 14600"]]},{"id":"NCBITaxon:41067","l":"Aspergillus candidus","na":3,"nb":1,"a":[["alkaloids/aspcandine.yaml","aspcandine"],["polyketides/kojic-acid.yaml","kojic acid"],["shikimates_and_phenylpropanoids/chlorflavonin.yaml","chlorflavonin"]],"b":[["NCBITaxon%3A41067","Aspergillus candidus"]]},{"id":"NCBITaxon:413882","l":"Caldimonas brevitalea","na":3,"nb":1,"a":[["amino_acids_and_peptides/glidobactin-b.yaml","glidobactin B"],["amino_acids_and_peptides/glidobactin-c.yaml","glidobactin C"],["amino_acids_and_peptides/glidobactin.yaml","glidobactin"]],"b":[["NCBITaxon%3A413882","Caldimonas brevitalea"]]},{"id":"NCBITaxon:41735","l":"Aspergillus quadrilineatus","na":3,"nb":1,"a":[["polyketides/asperthecin.yaml","asperthecin"],["polyketides/sterigmatocystin.yaml","sterigmatocystin"],["shikimates_and_phenylpropanoids/microperfuranone.yaml","(−)-microperfuranone"]],"b":[["NCBITaxon%3A41735","Aspergillus quadrilineatus"]]},{"id":"NCBITaxon:42197","l":"Actinosynnema pretiosum","na":1,"nb":3,"a":[["polyketides/ansamitocin-p3.yaml","ansamitocin P3"]],"b":[["NCBITaxon%3A42197","Actinosynnema pretiosum"],["NCBITaxon%3A42198","Actinosynnema pretiosum subsp. auranticum"],["NCBITaxon%3A103721","Actinosynnema pretiosum subsp. pretiosum"]]},{"id":"NCBITaxon:42238","l":"Streptomyces neyagawaensis","na":3,"nb":1,"a":[["polyketides/concanamycin-a.yaml","concanamycin A"],["polyketides/tetrafibricin.yaml","tetrafibricin"],["unclassified/clifednamide-a-2.yaml","clifednamide A"]],"b":[["NCBITaxon%3A42238","Streptomyces neyagawaensis"]]},{"id":"NCBITaxon:442893","l":"Nostoc sp. TH1S01","na":3,"nb":1,"a":[["amino_acids_and_peptides/microviridin-1688.yaml","microviridin 1688"],["amino_acids_and_peptides/microviridin-1739.yaml","microviridin 1739"],["unclassified/microviridin-1748.yaml","microviridin 1748"]],"b":[["NCBITaxon%3A442893","Nostoc sp. TH1S01"]]},{"id":"NCBITaxon:45133","l":"Lasiodiplodia theobromae","na":3,"nb":1,"a":[["polyketides/lasiodiplodin.yaml","lasiodiplodin"],["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"],["shikimates_and_phenylpropanoids/mellein.yaml","(-)-Mellein"]],"b":[["NCBITaxon%3A45133","Lasiodiplodia theobromae"]]},{"id":"NCBITaxon:451804","l":"Aspergillus fumigatus A1163","na":3,"nb":1,"a":[["terpenoids/21-h-hopane-3beta-22-diol.yaml","21-β-H-hopane-3beta, 22-diol"],["terpenoids/compound-3-3.yaml","compound 3"],["terpenoids/fumihopaside-a.yaml","fumihopaside A"]],"b":[["NCBITaxon%3A451804","Aspergillus fumigatus A1163"]]},{"id":"NCBITaxon:454130","l":"Aspergillus calidoustus","na":3,"nb":1,"a":[["terpenoids/calidoustene-a.yaml","calidoustene A"],["terpenoids/calidoustene-b.yaml","calidoustene B"],["terpenoids/calidoustene-c.yaml","calidoustene C"]],"b":[["NCBITaxon%3A454130","Aspergillus calidoustus"]]},{"id":"NCBITaxon:457406","l":"Micromonospora sp. M42","na":3,"nb":1,"a":[["alkaloids/diazepinomicin.yaml","diazepinomicin"],["unclassified/rakicidin-a.yaml","rakicidin A"],["unclassified/rakicidin-b-2.yaml","rakicidin B"]],"b":[["NCBITaxon%3A457406","Micromonospora sp. M42"]]},{"id":"NCBITaxon:457432","l":"Streptosporangium sibiricum","na":1,"nb":3,"a":[["carbohydrates/sibiromycin.yaml","sibiromycin"]],"b":[["NCBITaxon%3A1871","Actinoplanes sp."],["NCBITaxon%3A457432","Streptosporangium sibiricum"],["NCBITaxon%3A457433","Streptosporangium sibiricum ATCC 29053"]]},{"id":"NCBITaxon:46161","l":"Actinomadura kijaniata","na":1,"nb":3,"a":[["polyketides/kijanimicin.yaml","kijanimicin"]],"b":[["NCBITaxon%3A46158","Actinomadura citrea"],["NCBITaxon%3A46161","Actinomadura kijaniata"],["NCBITaxon%3A1220561","Actinomadura kijaniata NBRC 14229"]]},{"id":"NCBITaxon:46234","l":"Anabaena sp. 90","na":3,"nb":1,"a":[["amino_acids_and_peptides/anabaenopeptin.yaml","anabaenopeptin"],["amino_acids_and_peptides/anacyclamide-a10.yaml","anacyclamide A10"],["amino_acids_and_peptides/microcystin-lr.yaml","microcystin-LR"]],"b":[["NCBITaxon%3A46234","Anabaena sp. 90"]]},{"id":"NCBITaxon:463","l":"Fluoribacter dumoffii","na":1,"nb":3,"a":[["shikimates_and_phenylpropanoids/legioliulin.yaml","legioliulin"]],"b":[["NCBITaxon%3A463","Fluoribacter dumoffii"],["NCBITaxon%3A1094715","Fluoribacter dumoffii NY 23"],["NCBITaxon%3A1094714","Fluoribacter dumoffii Tex-KL"]]},{"id":"NCBITaxon:465541","l":"Streptomyces sp. Mg1","na":3,"nb":1,"a":[["polyketides/linearmycin-a.yaml","linearmycin A"],["polyketides/linearmycin-b.yaml","linearmycin B"],["unclassified/linearmycin-c.yaml","linearmycin C"]],"b":[["NCBITaxon%3A465541","Streptomyces sp. Mg1"]]},{"id":"NCBITaxon:474922","l":"Colletotrichum gloeosporioides","na":3,"nb":1,"a":[["unclassified/colletochlorin-a.yaml","Colletochlorin A"],["unclassified/colletotrichin.yaml","colletotrichin"],["unclassified/orcinol.yaml","orcinol"]],"b":[["NCBITaxon%3A474922","Colletotrichum gloeosporioides"]]},{"id":"NCBITaxon:47886","l":"Pseudomonas luteola","na":1,"nb":3,"a":[["amino_acids_and_peptides/chrysobactin.yaml","chrysobactin"]],"b":[["NCBITaxon%3A47886","Pseudomonas luteola"],["NCBITaxon%3A1215106","Pseudomonas luteola NBRC 103146"],["NCBITaxon%3A1207076","Pseudomonas luteola XLDN4-9"]]},{"id":"NCBITaxon:48100","l":"Alternaria solani","na":3,"nb":1,"a":[["polyketides/alternapyrone.yaml","alternapyrone"],["polyketides/solanapyrone-a.yaml","solanapyrone A"],["polyketides/solanapyrone-d.yaml","solanapyrone D"]],"b":[["NCBITaxon%3A48100","Alternaria solani"]]},{"id":"NCBITaxon:5046","l":"Sarocladium strictum","na":3,"nb":1,"a":[["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"],["polyketides/bisvertinolone-spelled-bisvertinolon-in-paper.yaml","bisvertinolone (spelled bisvertinolon in paper)"],["unclassified/xenovulene-a.yaml","xenovulene A"]],"b":[["NCBITaxon%3A5046","Sarocladium strictum"]]},{"id":"NCBITaxon:5050","l":"Epichloe uncinata","na":3,"nb":1,"a":[["alkaloids/loline.yaml","loline"],["alkaloids/n-acetylnorloline.yaml","N-acetylnorloline"],["alkaloids/n-formylloline.yaml","N-formylloline"]],"b":[["NCBITaxon%3A5050","Epichloe uncinata"]]},{"id":"NCBITaxon:5097","l":"Monascus","na":1,"nb":3,"a":[["polyketides/monascin.yaml","monascin"]],"b":[["NCBITaxon%3A225353","Monascus aurantiacus"],["NCBITaxon%3A5098","Monascus purpureus"],["NCBITaxon%3A89489","Monascus ruber"]]},{"id":"NCBITaxon:5098","l":"Monascus purpureus","na":3,"nb":1,"a":[["polyketides/monascin.yaml","monascin"],["polyketides/monascorubrin.yaml","monascorubrin"],["polyketides/rubropunctatine.yaml","rubropunctatine"]],"b":[["NCBITaxon%3A5098","Monascus purpureus"]]},{"id":"NCBITaxon:538381","l":"Stappia indica","na":3,"nb":1,"a":[["alkaloids/sesbanimide-c.yaml","sesbanimide C"],["alkaloids/sesbanimide-e.yaml","sesbanimide E"],["alkaloids/sesbanimide-f.yaml","sesbanimide F"]],"b":[["NCBITaxon%3A538381","Stappia indica"]]},{"id":"NCBITaxon:546342","l":"Staphylococcus aureus subsp. aureus str. JKD6008","na":3,"nb":1,"a":[["unclassified/leuvalin.yaml","leuvalin"],["unclassified/phevalin.yaml","phevalin"],["unclassified/tyrvalin.yaml","tyrvalin"]],"b":[["NCBITaxon%3A546342","Staphylococcus aureus subsp. aureus str. JKD6008"]]},{"id":"NCBITaxon:5544","l":"Trichoderma harzianum","na":3,"nb":1,"a":[["polyketides/1-2-dehydropenicillide.yaml","1,2-dehydropenicillide"],["polyketides/harziphilone.yaml","harziphilone"],["unclassified/harzianopyridone.yaml","harzianopyridone"]],"b":[["NCBITaxon%3A5544","Trichoderma harzianum"]]},{"id":"NCBITaxon:568869","l":"Streptomyces sanyensis","na":3,"nb":1,"a":[["alkaloids/k-252a-2.yaml","K-252a"],["alkaloids/rebeccamycin.yaml","rebeccamycin"],["alkaloids/staurosporine.yaml","staurosporine"]],"b":[["NCBITaxon%3A568869","Streptomyces sanyensis"]]},{"id":"NCBITaxon:574","l":"Klebsiella pneumoniae subsp. ozaenae","na":1,"nb":3,"a":[["carbohydrates/capsular-polysaccharide-2.yaml","capsular polysaccharide"]],"b":[["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A574","Klebsiella pneumoniae subsp. ozaenae"],["NCBITaxon%3A1218098","Klebsiella pneumoniae subsp. ozaenae NBRC 105683"]]},{"id":"NCBITaxon:60167","l":"Penicillium cyclopium","na":3,"nb":1,"a":[["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"],["terpenoids/conidiogenone.yaml","conidiogenone"],["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]],"b":[["NCBITaxon%3A60167","Penicillium cyclopium"]]},{"id":"NCBITaxon:64629","l":"Mycotypha","na":1,"nb":3,"a":[["alkaloids/cytochalasin-e.yaml","cytochalasin E"]],"b":[["NCBITaxon%3A64632","Mycotypha africana"],["NCBITaxon%3A2053761","Mycotypha indica"],["NCBITaxon%3A64633","Mycotypha microspora"]]},{"id":"NCBITaxon:659352","l":"Actinacidiphila reveromycinica","na":3,"nb":1,"a":[["polyketides/kinanthraquinone-b.yaml","kinanthraquinone B"],["polyketides/kinanthraquinone.yaml","kinanthraquinone"],["polyketides/reveromycin-a.yaml","reveromycin A"]],"b":[["NCBITaxon%3A659352","Actinacidiphila reveromycinica"]]},{"id":"NCBITaxon:66374","l":"Streptomyces nojiriensis","na":3,"nb":1,"a":[["carbohydrates/streptothricin-d.yaml","streptothricin D"],["carbohydrates/streptothricin-e.yaml","streptothricin E"],["carbohydrates/streptothricin-f.yaml","streptothricin F"]],"b":[["NCBITaxon%3A66374","Streptomyces nojiriensis"]]},{"id":"NCBITaxon:668825","l":"Streptomyces sp. ATCC 700974","na":3,"nb":1,"a":[["amino_acids_and_peptides/albomycin-1.yaml","albomycin δ1"],["amino_acids_and_peptides/albomycin-delta2.yaml","albomycin delta2"],["amino_acids_and_peptides/albomycin-epsilon.yaml","albomycin epsilon"]],"b":[["NCBITaxon%3A668825","Streptomyces sp. ATCC 700974"]]},{"id":"NCBITaxon:67283","l":"Streptomyces candidus","na":1,"nb":3,"a":[["unclassified/pirazofurin.yaml","pirazofurin"]],"b":[["NCBITaxon%3A76021","Amycolatopsis coloradensis"],["NCBITaxon%3A67283","Streptomyces candidus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:67293","l":"Streptomyces echinatus","na":3,"nb":1,"a":[["polyketides/aranciamycin.yaml","aranciamycin"],["unclassified/echinomycin.yaml","echinomycin"],["unclassified/quinomycin.yaml","quinomycin"]],"b":[["NCBITaxon%3A67293","Streptomyces echinatus"]]},{"id":"NCBITaxon:67304","l":"Streptomyces griseorubiginosus","na":3,"nb":1,"a":[["polyketides/cinerubin-b.yaml","cinerubin B"],["polyketides/k1115a.yaml","K1115A"],["polyketides/rubiginone-b2.yaml","rubiginone B2"]],"b":[["NCBITaxon%3A67304","Streptomyces griseorubiginosus"]]},{"id":"NCBITaxon:67372","l":"Streptomyces variabilis","na":1,"nb":3,"a":[["polyketides/resistomycin.yaml","resistomycin"]],"b":[["NCBITaxon%3A29305","Streptomyces griseoincarnatus"],["NCBITaxon%3A67372","Streptomyces variabilis"],["NCBITaxon%3A377639","Streptomyces variabilis subsp. roseolus"]]},{"id":"NCBITaxon:67376","l":"Streptomyces vinaceusdrappus","na":3,"nb":1,"a":[["carbohydrates/amicetin.yaml","amicetin"],["polyketides/ll-d49194-1-lld.yaml","LL-D49194α1 (LLD)"],["polyketides/ll-d49194-2.yaml","LL-D49194β2"]],"b":[["NCBITaxon%3A67376","Streptomyces vinaceusdrappus"]]},{"id":"NCBITaxon:68187","l":"Streptomyces cirratus","na":1,"nb":3,"a":[["unclassified/pheganomycin.yaml","pheganomycin"]],"b":[["NCBITaxon%3A70348","Acinetobacter dispersus"],["NCBITaxon%3A2081977","Litorimonas haliclonae"],["NCBITaxon%3A68187","Streptomyces cirratus"]]},{"id":"NCBITaxon:68195","l":"Streptomyces ehimensis","na":1,"nb":3,"a":[["alkaloids/carbazomycin-b.yaml","carbazomycin B"]],"b":[["NCBITaxon%3A97398","Streptomyces abikoensis"],["NCBITaxon%3A68195","Streptomyces ehimensis"],["NCBITaxon%3A1243002","Vibrio olivae"]]},{"id":"NCBITaxon:68197","l":"Streptomyces fimbriatus","na":1,"nb":3,"a":[["alkaloids/spicamycin.yaml","spicamycin"]],"b":[["NCBITaxon%3A1398493","Pseudocitrobacter faecalis"],["NCBITaxon%3A68197","Streptomyces fimbriatus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:68228","l":"Streptomyces lilacinus","na":1,"nb":3,"a":[["unclassified/rakicidin-d.yaml","rakicidin D"]],"b":[["NCBITaxon%3A68222","Streptomyces kashimirensis"],["NCBITaxon%3A285467","Streptomyces lilaceus"],["NCBITaxon%3A68228","Streptomyces lilacinus"]]},{"id":"NCBITaxon:68242","l":"Streptomyces natalensis","na":1,"nb":3,"a":[["polyketides/natamycin.yaml","natamycin"]],"b":[["NCBITaxon%3A68242","Streptomyces natalensis"],["NCBITaxon%3A1240678","Streptomyces natalensis ATCC 27448"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:683272","l":"Streptosporangium sp. FXJ7.131","na":3,"nb":1,"a":[["polyketides/hexaricin-b.yaml","hexaricin B"],["polyketides/hexaricin-c.yaml","hexaricin C"],["polyketides/ws-79089a.yaml","WS 79089A"]],"b":[["NCBITaxon%3A683272","Streptosporangium sp. FXJ7.131"]]},{"id":"NCBITaxon:686309","l":"Micromonospora haikouensis","na":3,"nb":1,"a":[["carbohydrates/aristeromycin.yaml","aristeromycin"],["carbohydrates/coformycin.yaml","coformycin"],["carbohydrates/kanamycin-a.yaml","kanamycin A"]],"b":[["NCBITaxon%3A686309","Micromonospora haikouensis"]]},{"id":"NCBITaxon:687","l":"Vibrio gazogenes","na":1,"nb":3,"a":[["alkaloids/prodigiosin.yaml","prodigiosin"]],"b":[["NCBITaxon%3A687","Vibrio gazogenes"],["NCBITaxon%3A1269943","Vibrio gazogenes ATCC 43941"],["NCBITaxon%3A1123492","Vibrio gazogenes DSM 21264 = NBRC 103151"]]},{"id":"NCBITaxon:71999","l":"Kocuria palustris","na":1,"nb":3,"a":[["amino_acids_and_peptides/kocurin.yaml","kocurin"]],"b":[["NCBITaxon%3A71999","Kocuria palustris"],["NCBITaxon%3A1236550","Kocuria palustris PEL"],["NCBITaxon%3A1272","Kocuria varians"]]},{"id":"NCBITaxon:757424","l":"Herbaspirillum seropedicae SmR1","na":3,"nb":1,"a":[["amino_acids_and_peptides/serobactin-a.yaml","serobactin A"],["amino_acids_and_peptides/serobactin-b.yaml","serobactin B"],["amino_acids_and_peptides/serobactin-c.yaml","serobactin C"]],"b":[["NCBITaxon%3A757424","Herbaspirillum seropedicae SmR1"]]},{"id":"NCBITaxon:758803","l":"Nocardiopsis flavescens","na":3,"nb":1,"a":[["alkaloids/loonamycin-a.yaml","loonamycin A"],["alkaloids/loonamycin-b.yaml","loonamycin B"],["alkaloids/loonamycin-c.yaml","loonamycin C"]],"b":[["NCBITaxon%3A758803","Nocardiopsis flavescens"]]},{"id":"NCBITaxon:83460","l":"Allostigmatella erecta","na":3,"nb":1,"a":[["alkaloids/aurachin-a.yaml","aurachin A"],["alkaloids/aurachin-c.yaml","aurachin C"],["unclassified/myxochromide-d.yaml","myxochromide D"]],"b":[["NCBITaxon%3A83460","Allostigmatella erecta"]]},{"id":"NCBITaxon:945768","l":"Plectonema radiosum","na":1,"nb":3,"a":[["carbohydrates/tubercidin.yaml","tubercidin"]],"b":[["NCBITaxon%3A945769","Plectonema cf. radiosum LEGE 06105"],["NCBITaxon%3A945768","Plectonema radiosum"],["NCBITaxon%3A2986073","Plectonema radiosum NIES-515"]]},{"id":"NCBITaxon:945782","l":"Synechocystis salina LEGE 06155","na":3,"nb":1,"a":[["polyketides/bartoloside-b.yaml","bartoloside B"],["polyketides/bartoloside-c.yaml","bartoloside C"],["polyketides/bartoloside-d.yaml","bartoloside D"]],"b":[["NCBITaxon%3A945782","Synechocystis salina LEGE 06155"]]},{"id":"NCBITaxon:96045","l":"Nocardia uniformis subsp. tsuyamanensis","na":1,"nb":3,"a":[["amino_acids_and_peptides/nocardicin-a.yaml","nocardicin A"]],"b":[["NCBITaxon%3A1872144","Actinosynnema sp."],["NCBITaxon%3A53432","Nocardia uniformis"],["NCBITaxon%3A96045","Nocardia uniformis subsp. tsuyamanensis"]]},{"id":"NCBITaxon:984195","l":"Pseudomonas sp. SHC52","na":3,"nb":1,"a":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["amino_acids_and_peptides/thanafactin-a.yaml","thanafactin A"],["unclassified/thanamycin.yaml","thanamycin"]],"b":[["NCBITaxon%3A984195","Pseudomonas sp. SHC52"]]},{"id":"NCBITaxon:1001349","l":"Streptomyces sp. Acta 2897","na":2,"nb":1,"a":[["unclassified/skyllamycin-a.yaml","skyllamycin A"],["unclassified/skyllamycin-b.yaml","skyllamycin B"]],"b":[["NCBITaxon%3A1001349","Streptomyces sp. Acta 2897"]]},{"id":"NCBITaxon:1004","l":"Chitinophaga sancti","na":1,"nb":2,"a":[["polyketides/elansolid-a1.yaml","elansolid A1"]],"b":[["NCBITaxon%3A1004","Chitinophaga sancti"],["NCBITaxon%3A1121282","Chitinophaga sancti DSM 784"]]},{"id":"NCBITaxon:101162","l":"Bipolaris oryzae","na":1,"nb":2,"a":[["alkaloids/melanin.yaml","melanin"]],"b":[["NCBITaxon%3A101162","Bipolaris oryzae"],["NCBITaxon%3A930090","Bipolaris oryzae ATCC 44560"]]},{"id":"NCBITaxon:1042163","l":"Brevibacillus laterosporus LMG 15441","na":1,"nb":2,"a":[["unclassified/laterocidine.yaml","laterocidine"]],"b":[["NCBITaxon%3A1465","Brevibacillus laterosporus"],["NCBITaxon%3A1042163","Brevibacillus laterosporus LMG 15441"]]},{"id":"NCBITaxon:104260","l":"Penicillium paraherquei","na":2,"nb":1,"a":[["unclassified/paraherquamide.yaml","paraherquamide"],["unclassified/paraherquonin.yaml","paraherquonin"]],"b":[["NCBITaxon%3A104260","Penicillium paraherquei"]]},{"id":"NCBITaxon:1052","l":"Halorhodospira halochloris","na":1,"nb":2,"a":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]],"b":[["NCBITaxon%3A1052","Halorhodospira halochloris"],["NCBITaxon%3A1354791","Halorhodospira halochloris str. A"]]},{"id":"NCBITaxon:105351","l":"Aspergillus awamori","na":1,"nb":2,"a":[["alkaloids/aspergillin-pz.yaml","aspergillin PZ"]],"b":[["NCBITaxon%3A105351","Aspergillus awamori"],["NCBITaxon%3A309746","Aspergillus awamori var. piceus"]]},{"id":"NCBITaxon:105696","l":"Epicoccum nigrum","na":2,"nb":1,"a":[["polyketides/epipyrone-a.yaml","epipyrone A"],["terpenoids/carotene.yaml","β-carotene"]],"b":[["NCBITaxon%3A105696","Epicoccum nigrum"]]},{"id":"NCBITaxon:1069","l":"Rhodomicrobium vannielii","na":1,"nb":2,"a":[["terpenoids/carotene.yaml","β-carotene"]],"b":[["NCBITaxon%3A1069","Rhodomicrobium vannielii"],["NCBITaxon%3A648757","Rhodomicrobium vannielii ATCC 17100"]]},{"id":"NCBITaxon:107635","l":"Methylosinus sp. LW3","na":1,"nb":2,"a":[["amino_acids_and_peptides/group-1-methanobactin.yaml","group 1 methanobactin"]],"b":[["NCBITaxon%3A427","Methylosinus sp."],["NCBITaxon%3A107635","Methylosinus sp. LW3"]]},{"id":"NCBITaxon:1079983","l":"Streptomyces lysosuperificus","na":1,"nb":2,"a":[["carbohydrates/tunicamycin.yaml","tunicamycin"]],"b":[["NCBITaxon%3A1079983","Streptomyces lysosuperificus"],["NCBITaxon%3A1079984","Streptomyces lysosuperificus ATCC 31396"]]},{"id":"NCBITaxon:1091494","l":"Methylotuvimicrobium alcaliphilum 20Z","na":1,"nb":2,"a":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]],"b":[["NCBITaxon%3A271065","Methylotuvimicrobium alcaliphilum"],["NCBITaxon%3A1091494","Methylotuvimicrobium alcaliphilum 20Z"]]},{"id":"NCBITaxon:1108849","l":"Penicillium rubens","na":1,"nb":2,"a":[["polyketides/sorbicillin.yaml","sorbicillin"]],"b":[["NCBITaxon%3A1108849","Penicillium rubens"],["NCBITaxon%3A500485","Penicillium rubens Wisconsin 54-1255"]]},{"id":"NCBITaxon:1120936","l":"Actinomadura atramentaria DSM 43919","na":1,"nb":2,"a":[["amino_acids_and_peptides/matlystatin-a.yaml","matlystatin A"]],"b":[["NCBITaxon%3A1990","Actinomadura atramentaria"],["NCBITaxon%3A1120936","Actinomadura atramentaria DSM 43919"]]},{"id":"NCBITaxon:1121121","l":"Brevibacillus laterosporus DSM 25","na":1,"nb":2,"a":[["amino_acids_and_peptides/tauramamide.yaml","tauramamide"]],"b":[["NCBITaxon%3A1465","Brevibacillus laterosporus"],["NCBITaxon%3A1121121","Brevibacillus laterosporus DSM 25"]]},{"id":"NCBITaxon:1124983","l":"Pseudomonas protegens CHA0","na":1,"nb":2,"a":[["fatty_acids/protegencin.yaml","protegencin"]],"b":[["NCBITaxon%3A380021","Pseudomonas protegens"],["NCBITaxon%3A1124983","Pseudomonas protegens CHA0"]]},{"id":"NCBITaxon:1125972","l":"Amycolatopsis alba DSM 44262","na":1,"nb":2,"a":[["amino_acids_and_peptides/albachelin.yaml","albachelin"]],"b":[["NCBITaxon%3A76020","Amycolatopsis alba"],["NCBITaxon%3A1125972","Amycolatopsis alba DSM 44262"]]},{"id":"NCBITaxon:1134541","l":"Streptomyces sp. WK-5344","na":2,"nb":1,"a":[["shikimates_and_phenylpropanoids/bagremycin-a.yaml","bagremycin A"],["shikimates_and_phenylpropanoids/bagremycin-b.yaml","bagremycin B"]],"b":[["NCBITaxon%3A1134541","Streptomyces sp. WK-5344"]]},{"id":"NCBITaxon:113561","l":"Paractinoplanes deccanensis","na":1,"nb":2,"a":[["polyketides/tiacumicin-b.yaml","tiacumicin B"]],"b":[["NCBITaxon%3A113561","Paractinoplanes deccanensis"],["NCBITaxon%3A1095092","Paractinoplanes deccanensis subsp. salmoneus"]]},{"id":"NCBITaxon:114230","l":"Nigrospora","na":1,"nb":2,"a":[["polyketides/solanapyrone-a.yaml","solanapyrone A"]],"b":[["NCBITaxon%3A335854","Nigrospora oryzae"],["NCBITaxon%3A114231","Nigrospora sphaerica"]]},{"id":"NCBITaxon:1159","l":"Oscillatoria sp.","na":2,"nb":1,"a":[["alkaloids/7-epi-cylindrospermopsin.yaml","7-epi-cylindrospermopsin"],["terpenoids/zeaxanthin.yaml","zeaxanthin"]],"b":[["NCBITaxon%3A1159","Oscillatoria sp."]]},{"id":"NCBITaxon:1160280","l":"Microcystis aeruginosa PCC 9432","na":2,"nb":1,"a":[["amino_acids_and_peptides/aeruginosamide-b.yaml","aeruginosamide B"],["amino_acids_and_peptides/aeruginosamide-c.yaml","aeruginosamide C"]],"b":[["NCBITaxon%3A1160280","Microcystis aeruginosa PCC 9432"]]},{"id":"NCBITaxon:1160705","l":"Streptomyces viridochromogenes Tue57","na":2,"nb":1,"a":[["carbohydrates/avilamycin-a.yaml","avilamycin A"],["carbohydrates/avilamycin-c.yaml","avilamycin C"]],"b":[["NCBITaxon%3A1160705","Streptomyces viridochromogenes Tue57"]]},{"id":"NCBITaxon:1181","l":"Desmonostoc sp. PCC 7906","na":2,"nb":1,"a":[["amino_acids_and_peptides/muscoride-a.yaml","muscoride A"],["unclassified/muscoride-b.yaml","muscoride B"]],"b":[["NCBITaxon%3A1181","Desmonostoc sp. PCC 7906"]]},{"id":"NCBITaxon:119927","l":"Alternaria tenuissima","na":2,"nb":1,"a":[["polyketides/patulin.yaml","patulin"],["polyketides/solanapyrone-a.yaml","solanapyrone A"]],"b":[["NCBITaxon%3A119927","Alternaria tenuissima"]]},{"id":"NCBITaxon:1200984","l":"Streptomyces lividans 1326","na":2,"nb":1,"a":[["amino_acids_and_peptides/livipeptin.yaml","Livipeptin"],["polyketides/bisenarsan.yaml","Bisenarsan"]],"b":[["NCBITaxon%3A1200984","Streptomyces lividans 1326"]]},{"id":"NCBITaxon:120957","l":"Nocardia abscessus","na":1,"nb":2,"a":[["carbohydrates/kanamycin-a.yaml","kanamycin A"]],"b":[["NCBITaxon%3A120957","Nocardia abscessus"],["NCBITaxon%3A1206723","Nocardia abscessus NBRC 100374"]]},{"id":"NCBITaxon:1214101","l":"Streptomyces davaonensis JCM 4913","na":1,"nb":2,"a":[["alkaloids/roseoflavin.yaml","roseoflavin"]],"b":[["NCBITaxon%3A348043","Streptomyces davaonensis"],["NCBITaxon%3A1214101","Streptomyces davaonensis JCM 4913"]]},{"id":"NCBITaxon:1214242","l":"Streptomyces collinus Tu 365","na":1,"nb":2,"a":[["unclassified/kirromycin.yaml","kirromycin"]],"b":[["NCBITaxon%3A1214242","Streptomyces collinus Tu 365"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:1218948","l":"Pseudomonas fluorescens PF5","na":2,"nb":1,"a":[["alkaloids/pyoluteorin.yaml","pyoluteorin"],["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"]],"b":[["NCBITaxon%3A1218948","Pseudomonas fluorescens PF5"]]},{"id":"NCBITaxon:1221190","l":"bacterium symbiont of Theonella swinhoei pTSMAC1","na":2,"nb":1,"a":[["amino_acids_and_peptides/polytheonamide-a.yaml","polytheonamide A"],["amino_acids_and_peptides/polytheonamide-b.yaml","polytheonamide B"]],"b":[["NCBITaxon%3A1221190","bacterium symbiont of Theonella swinhoei pTSMAC1"]]},{"id":"NCBITaxon:1226757","l":"Streptomyces rapamycinicus","na":1,"nb":2,"a":[["polyketides/sirolimus.yaml","sirolimus"]],"b":[["NCBITaxon%3A1226757","Streptomyces rapamycinicus"],["NCBITaxon%3A1343740","Streptomyces rapamycinicus NRRL 5491"]]},{"id":"NCBITaxon:1245473","l":"Nocardiopsis alba DSM 43377","na":1,"nb":2,"a":[["amino_acids_and_peptides/lp2006.yaml","LP2006"]],"b":[["NCBITaxon%3A53437","Nocardiopsis alba"],["NCBITaxon%3A1245473","Nocardiopsis alba DSM 43377"]]},{"id":"NCBITaxon:1265399","l":"Streptomyces sp. ID38640","na":2,"nb":1,"a":[["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["unclassified/lydicamycin.yaml","lydicamycin"]],"b":[["NCBITaxon%3A1265399","Streptomyces sp. ID38640"]]},{"id":"NCBITaxon:1267754","l":"Corynebacterium urealyticum DSM 7111","na":1,"nb":2,"a":[["amino_acids_and_peptides/corynazolicin.yaml","corynazolicin"]],"b":[["NCBITaxon%3A43771","Corynebacterium urealyticum"],["NCBITaxon%3A1267754","Corynebacterium urealyticum DSM 7111"]]},{"id":"NCBITaxon:1278073","l":"Myxococcus stipitatus DSM 14675","na":1,"nb":2,"a":[["polyketides/phenalamide-a2.yaml","phenalamide A2"]],"b":[["NCBITaxon%3A83455","Myxococcus stipitatus"],["NCBITaxon%3A1278073","Myxococcus stipitatus DSM 14675"]]},{"id":"NCBITaxon:1284240","l":"Amycolatopsis decaplanina DSM 44594","na":1,"nb":2,"a":[["amino_acids_and_peptides/decaplanin.yaml","decaplanin"]],"b":[["NCBITaxon%3A208441","Amycolatopsis decaplanina"],["NCBITaxon%3A1284240","Amycolatopsis decaplanina DSM 44594"]]},{"id":"NCBITaxon:1286094","l":"Streptomyces aurantiacus JA 4570","na":2,"nb":1,"a":[["polyketides/setomimycin.yaml","setomimycin"],["unclassified/aurantimycin-a.yaml","aurantimycin A"]],"b":[["NCBITaxon%3A1286094","Streptomyces aurantiacus JA 4570"]]},{"id":"NCBITaxon:1293","l":"Staphylococcus gallinarum","na":1,"nb":2,"a":[["amino_acids_and_peptides/gallidermin.yaml","gallidermin"]],"b":[["NCBITaxon%3A1293","Staphylococcus gallinarum"],["NCBITaxon%3A1288","Staphylococcus xylosus"]]},{"id":"NCBITaxon:1295550","l":"Streptomyces arginensis","na":2,"nb":1,"a":[["carbohydrates/arginomycin.yaml","arginomycin"],["carbohydrates/blasticidin-s.yaml","blasticidin S"]],"b":[["NCBITaxon%3A1295550","Streptomyces arginensis"]]},{"id":"NCBITaxon:1306787","l":"Isoalcanivorax pacificus","na":1,"nb":2,"a":[["amino_acids_and_peptides/pacifibactin.yaml","pacifibactin"]],"b":[["NCBITaxon%3A1306787","Isoalcanivorax pacificus"],["NCBITaxon%3A391936","Isoalcanivorax pacificus W11-5"]]},{"id":"NCBITaxon:1311812","l":"Nocardia argentinensis","na":1,"nb":2,"a":[["polyketides/nargenicin-a1.yaml","nargenicin A1"]],"b":[["NCBITaxon%3A1311812","Nocardia argentinensis"],["NCBITaxon%3A1311813","Nocardia argentinensis ATCC 31306"]]},{"id":"NCBITaxon:1311815","l":"Nocardia interforma ATCC 21072","na":2,"nb":1,"a":[["alkaloids/formycin-a.yaml","formycin A"],["carbohydrates/coformycin.yaml","coformycin"]],"b":[["NCBITaxon%3A1311815","Nocardia interforma ATCC 21072"]]},{"id":"NCBITaxon:1312234","l":"Streptomyces prunicolor NBRC 13075","na":1,"nb":2,"a":[["amino_acids_and_peptides/prunipeptin.yaml","prunipeptin"]],"b":[["NCBITaxon%3A67348","Streptomyces prunicolor"],["NCBITaxon%3A1312234","Streptomyces prunicolor NBRC 13075"]]},{"id":"NCBITaxon:1315281","l":"Pseudoalteromonas phenolica O-BC30","na":1,"nb":2,"a":[["shikimates_and_phenylpropanoids/pentabromopseudilin.yaml","pentabromopseudilin"]],"b":[["NCBITaxon%3A161398","Pseudoalteromonas phenolica"],["NCBITaxon%3A1315281","Pseudoalteromonas phenolica O-BC30"]]},{"id":"NCBITaxon:1319510","l":"Streptomyces fradiae ATCC 10745 = DSM 40063","na":1,"nb":2,"a":[["carbohydrates/neomycin-c.yaml","neomycin C"]],"b":[["NCBITaxon%3A1906","Streptomyces fradiae"],["NCBITaxon%3A1319510","Streptomyces fradiae ATCC 10745 = DSM 40063"]]},{"id":"NCBITaxon:132248","l":"Streptomyces hygroscopicus subsp. ascomyceticus","na":1,"nb":2,"a":[["polyketides/fr-900520.yaml","FR-900520"]],"b":[["NCBITaxon%3A476551","Streptomyces ascomycinicus"],["NCBITaxon%3A132248","Streptomyces hygroscopicus subsp. ascomyceticus"]]},{"id":"NCBITaxon:1337893","l":"Streptomyces bernensis","na":2,"nb":1,"a":[["amino_acids_and_peptides/berninamycin-a.yaml","berninamycin A"],["amino_acids_and_peptides/berninamycin-b.yaml","berninamycin B"]],"b":[["NCBITaxon%3A1337893","Streptomyces bernensis"]]},{"id":"NCBITaxon:1343740","l":"Streptomyces rapamycinicus NRRL 5491","na":1,"nb":2,"a":[["polyketides/sirolimus.yaml","sirolimus"]],"b":[["NCBITaxon%3A1226757","Streptomyces rapamycinicus"],["NCBITaxon%3A1343740","Streptomyces rapamycinicus NRRL 5491"]]},{"id":"NCBITaxon:134536","l":"Paraburkholderia caledonica","na":1,"nb":2,"a":[["amino_acids_and_peptides/gramibactin-b.yaml","gramibactin B"]],"b":[["NCBITaxon%3A134536","Paraburkholderia caledonica"],["NCBITaxon%3A1218115","Paraburkholderia caledonica NBRC 102488"]]},{"id":"NCBITaxon:136993","l":"Methylosinus sp. LW4","na":1,"nb":2,"a":[["amino_acids_and_peptides/group-1-methanobactin.yaml","group 1 methanobactin"]],"b":[["NCBITaxon%3A427","Methylosinus sp."],["NCBITaxon%3A136993","Methylosinus sp. LW4"]]},{"id":"NCBITaxon:138282","l":"Aspergillus sclerotiorum","na":2,"nb":1,"a":[["carbohydrates/streptomycin.yaml","streptomycin"],["polyketides/doxorubicin.yaml","doxorubicin"]],"b":[["NCBITaxon%3A138282","Aspergillus sclerotiorum"]]},{"id":"NCBITaxon:138284","l":"Aspergillus sulphureus","na":2,"nb":1,"a":[["polyketides/decumbenone-c.yaml","decumbenone c"],["unclassified/penitrem-b.yaml","penitrem B"]],"b":[["NCBITaxon%3A138284","Aspergillus sulphureus"]]},{"id":"NCBITaxon:1399144","l":"Brevibacillus laterosporus PE36","na":2,"nb":1,"a":[["shikimates_and_phenylpropanoids/basiliskamide-a.yaml","Basiliskamide A"],["unclassified/basiliskamide-b.yaml","Basiliskamide B"]],"b":[["NCBITaxon%3A1399144","Brevibacillus laterosporus PE36"]]},{"id":"NCBITaxon:1406225","l":"Archangium violaceum Cb vi76","na":1,"nb":2,"a":[["polyketides/gephyronic-acid.yaml","gephyronic acid"]],"b":[["NCBITaxon%3A83451","Archangium violaceum"],["NCBITaxon%3A1406225","Archangium violaceum Cb vi76"]]},{"id":"NCBITaxon:1415555","l":"Streptomyces sp. WM6372","na":2,"nb":1,"a":[["amino_acids_and_peptides/fosfazinomycin-a.yaml","fosfazinomycin A"],["amino_acids_and_peptides/fosfazinomycin-b.yaml","fosfazinomycin B"]],"b":[["NCBITaxon%3A1415555","Streptomyces sp. WM6372"]]},{"id":"NCBITaxon:1449346","l":"Kitasatospora azatica KCTC 9699","na":1,"nb":2,"a":[["amino_acids_and_peptides/alazopeptin.yaml","alazopeptin"]],"b":[["NCBITaxon%3A58347","Kitasatospora azatica"],["NCBITaxon%3A1449346","Kitasatospora azatica KCTC 9699"]]},{"id":"NCBITaxon:1450533","l":"Aspergillus niger CBS 101883","na":2,"nb":1,"a":[["polyketides/campyrone-b.yaml","campyrone B"],["polyketides/pyrophen.yaml","pyrophen"]],"b":[["NCBITaxon%3A1450533","Aspergillus niger CBS 101883"]]},{"id":"NCBITaxon:145522","l":"Nannochloropsis oceanica","na":1,"nb":2,"a":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]],"b":[["NCBITaxon%3A145522","Nannochloropsis oceanica"],["NCBITaxon%3A1333499","Nannochloropsis oceanica strain IMET1"]]},{"id":"NCBITaxon:1460371","l":"Amycolatopsis lurida NRRL 2430","na":1,"nb":2,"a":[["amino_acids_and_peptides/ristocetin-a.yaml","Ristocetin A"]],"b":[["NCBITaxon%3A31959","Amycolatopsis lurida"],["NCBITaxon%3A1460371","Amycolatopsis lurida NRRL 2430"]]},{"id":"NCBITaxon:1463884","l":"Streptomyces sp. NRRL S-146","na":2,"nb":1,"a":[["amino_acids_and_peptides/anantin-b1.yaml","anantin B1"],["amino_acids_and_peptides/anantin-b2.yaml","anantin B2"]],"b":[["NCBITaxon%3A1463884","Streptomyces sp. NRRL S-146"]]},{"id":"NCBITaxon:146536","l":"Streptomyces curacoi","na":2,"nb":1,"a":[["amino_acids_and_peptides/curacomycin.yaml","curacomycin"],["carbohydrates/curamycin.yaml","curamycin"]],"b":[["NCBITaxon%3A146536","Streptomyces curacoi"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":1,"nb":2,"a":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]],"b":[["NCBITaxon%3A1474","Sporosarcina pasteurii"],["NCBITaxon%3A1415631","Sporosarcina pasteurii NCIM 2477"]]},{"id":"NCBITaxon:148305","l":"Pyricularia grisea","na":2,"nb":1,"a":[["alkaloids/pyrichalasin-h.yaml","pyrichalasin H"],["polyketides/terrestric-acid.yaml","terrestric acid"]],"b":[["NCBITaxon%3A148305","Pyricularia grisea"]]},{"id":"NCBITaxon:1488414","l":"Streptomyces sp. MBT84","na":2,"nb":1,"a":[["polyketides/galtamycin-c.yaml","galtamycin C"],["polyketides/galtamycin-d.yaml","galtamycin D"]],"b":[["NCBITaxon%3A1488414","Streptomyces sp. MBT84"]]},{"id":"NCBITaxon:1490225","l":"","na":1,"nb":2,"a":[["carbohydrates/kanamycin-a.yaml","kanamycin A"]],"b":[["NCBITaxon%3A768479","Cohnella boryungensis"],["NCBITaxon%3A686309","Micromonospora haikouensis"]]},{"id":"NCBITaxon:1494466","l":"Burkholderia sp. FERM BP-3421","na":2,"nb":1,"a":[["fatty_acids/fr901464.yaml","FR901464"],["unclassified/spliceostatin.yaml","spliceostatin"]],"b":[["NCBITaxon%3A1494466","Burkholderia sp. FERM BP-3421"]]},{"id":"NCBITaxon:1495638","l":"Streptomyces sp. M56","na":2,"nb":1,"a":[["polyketides/efomycin-k.yaml","efomycin K"],["polyketides/efomycin-l.yaml","efomycin L"]],"b":[["NCBITaxon%3A1495638","Streptomyces sp. M56"]]},{"id":"NCBITaxon:1497395","l":"Anabaena sp. Syke748","na":2,"nb":1,"a":[["unclassified/hassallidin-c.yaml","hassallidin C"],["unclassified/hassallidin-d.yaml","hassallidin D"]],"b":[["NCBITaxon%3A1497395","Anabaena sp. Syke748"]]},{"id":"NCBITaxon:1519471","l":"Streptomyces sp. NRRL S-4","na":2,"nb":1,"a":[["amino_acids_and_peptides/thiostreptamide-s4.yaml","thiostreptamide S4"],["polyketides/venturicidin-a.yaml","venturicidin A"]],"b":[["NCBITaxon%3A1519471","Streptomyces sp. NRRL S-4"]]},{"id":"NCBITaxon:1550035","l":"Streptomyces sp. NBRC 109706","na":2,"nb":1,"a":[["polyketides/akaeolide.yaml","akaeolide"],["polyketides/lorneic-acid-a.yaml","lorneic acid A"]],"b":[["NCBITaxon%3A1550035","Streptomyces sp. NBRC 109706"]]},{"id":"NCBITaxon:1581323","l":"Streptomyces sp. FXJ8.102","na":2,"nb":1,"a":[["polyketides/homopiloquinone.yaml","homopiloquinone"],["unclassified/piloquinone.yaml","piloquinone"]],"b":[["NCBITaxon%3A1581323","Streptomyces sp. FXJ8.102"]]},{"id":"NCBITaxon:1582798","l":"Streptomyces sp. WAC2288","na":2,"nb":1,"a":[["carbohydrates/vancosamine.yaml","vancosamine"],["polyketides/ibomycin.yaml","ibomycin"]],"b":[["NCBITaxon%3A1582798","Streptomyces sp. WAC2288"]]},{"id":"NCBITaxon:159449","l":"Embleya scabrispora","na":1,"nb":2,"a":[["unclassified/hitachimycin.yaml","hitachimycin"]],"b":[["NCBITaxon%3A159449","Embleya scabrispora"],["NCBITaxon%3A1123320","Embleya scabrispora DSM 41855"]]},{"id":"NCBITaxon:1597781","l":"Eleftheria terrae","na":2,"nb":1,"a":[["unclassified/clovibactin.yaml","clovibactin"],["unclassified/teixobactin.yaml","teixobactin"]],"b":[["NCBITaxon%3A1597781","Eleftheria terrae"]]},{"id":"NCBITaxon:161398","l":"Pseudoalteromonas phenolica","na":1,"nb":2,"a":[["shikimates_and_phenylpropanoids/bromophene.yaml","bromophene"]],"b":[["NCBITaxon%3A161398","Pseudoalteromonas phenolica"],["NCBITaxon%3A1315281","Pseudoalteromonas phenolica O-BC30"]]},{"id":"NCBITaxon:1630013","l":"uncultured bacterium AR_412","na":2,"nb":1,"a":[["amino_acids_and_peptides/landepoxcin-a.yaml","landepoxcin A"],["amino_acids_and_peptides/landepoxcin-b.yaml","landepoxcin B"]],"b":[["NCBITaxon%3A1630013","uncultured bacterium AR_412"]]},{"id":"NCBITaxon:1652106","l":"Candidatus Entotheonella serta","na":2,"nb":1,"a":[["amino_acids_and_peptides/theonellamide.yaml","theonellamide"],["polyketides/misakinolide-a.yaml","misakinolide A"]],"b":[["NCBITaxon%3A1652106","Candidatus Entotheonella serta"]]},{"id":"NCBITaxon:1653203","l":"Streptomyces conglobatus","na":2,"nb":1,"a":[["polyketides/conglobatin.yaml","conglobatin"],["unclassified/neoantimycin.yaml","neoantimycin"]],"b":[["NCBITaxon%3A1653203","Streptomyces conglobatus"]]},{"id":"NCBITaxon:1676287","l":"Streptomyces sp. LC-6-2","na":2,"nb":1,"a":[["polyketides/abyssomicin-w.yaml","abyssomicin W"],["polyketides/abyssomicin-x.yaml","abyssomicin X"]],"b":[["NCBITaxon%3A1676287","Streptomyces sp. LC-6-2"]]},{"id":"NCBITaxon:1676613","l":"Actinomadura sp. ATCC 39365","na":2,"nb":1,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["carbohydrates/2-chloropentostatin.yaml","2'-chloropentostatin"]],"b":[["NCBITaxon%3A1676613","Actinomadura sp. ATCC 39365"]]},{"id":"NCBITaxon:1679164","l":"Cystobacter sp. Cbv34","na":2,"nb":1,"a":[["unclassified/cystobactamid-919-1.yaml","cystobactamid 919-1"],["unclassified/cystobactamid-919-2.yaml","cystobactamid 919-2"]],"b":[["NCBITaxon%3A1679164","Cystobacter sp. Cbv34"]]},{"id":"NCBITaxon:1703928","l":"Streptomyces sp. CB00072","na":2,"nb":1,"a":[["polyketides/thioangucycline-a.yaml","thioangucycline A"],["polyketides/thioangucycline-b.yaml","thioangucycline B"]],"b":[["NCBITaxon%3A1703928","Streptomyces sp. CB00072"]]},{"id":"NCBITaxon:1703935","l":"Streptomyces sp. CB02366","na":2,"nb":1,"a":[["polyketides/c-1027-2.yaml","C-1027"],["polyketides/c-1027-chromophore.yaml","C-1027 chromophore"]],"b":[["NCBITaxon%3A1703935","Streptomyces sp. CB02366"]]},{"id":"NCBITaxon:1707701","l":"Phoma sp.","na":2,"nb":1,"a":[["unclassified/bii-rafflesfungin.yaml","BII-rafflesfungin"],["unclassified/eupenifeldin.yaml","eupenifeldin"]],"b":[["NCBITaxon%3A1707701","Phoma sp."]]},{"id":"NCBITaxon:173560","l":"Saccharothrix algeriensis","na":2,"nb":1,"a":[["alkaloids/holomycin.yaml","holomycin"],["alkaloids/thiolutin.yaml","thiolutin"]],"b":[["NCBITaxon%3A173560","Saccharothrix algeriensis"]]},{"id":"NCBITaxon:177969","l":"Oscillatoria brevis","na":1,"nb":2,"a":[["terpenoids/geosmin.yaml","(−)-geosmin"]],"b":[["NCBITaxon%3A177969","Oscillatoria brevis"],["NCBITaxon%3A2832502","Oscillatoria brevis SH-12"]]},{"id":"NCBITaxon:1799151","l":"Streptomyces sp. RI-77","na":2,"nb":1,"a":[["polyketides/jbir-76.yaml","JBIR-76"],["polyketides/jbir-77.yaml","JBIR-77"]],"b":[["NCBITaxon%3A1799151","Streptomyces sp. RI-77"]]},{"id":"NCBITaxon:182096","l":"Aspergillus chevalieri","na":2,"nb":1,"a":[["polyketides/flavoglaucin.yaml","flavoglaucin"],["polyketides/sterigmatocystin.yaml","sterigmatocystin"]],"b":[["NCBITaxon%3A182096","Aspergillus chevalieri"]]},{"id":"NCBITaxon:1840610","l":"Streptomyces sp. FJS31-2","na":2,"nb":1,"a":[["polyketides/be-24566b.yaml","BE-24566B"],["polyketides/zunyimycin-a.yaml","zunyimycin A"]],"b":[["NCBITaxon%3A1840610","Streptomyces sp. FJS31-2"]]},{"id":"NCBITaxon:1866","l":"Actinoplanes missouriensis","na":1,"nb":2,"a":[["polyketides/fogacin-2.yaml","fogacin"]],"b":[["NCBITaxon%3A1866","Actinoplanes missouriensis"],["NCBITaxon%3A512565","Actinoplanes missouriensis 431"]]},{"id":"NCBITaxon:1885894","l":"Xanthomonas cannabis pv. cannabis","na":2,"nb":1,"a":[["fatty_acids/spliceostatin-l.yaml","spliceostatin L"],["polyketides/spliceostatin-m.yaml","spliceostatin M"]],"b":[["NCBITaxon%3A1885894","Xanthomonas cannabis pv. cannabis"]]},{"id":"NCBITaxon:1898","l":"Streptomyces cacaoi","na":1,"nb":2,"a":[["unclassified/cacaoidin.yaml","cacaoidin"]],"b":[["NCBITaxon%3A249586","Streptomyces asoensis"],["NCBITaxon%3A1898","Streptomyces cacaoi"]]},{"id":"NCBITaxon:1900","l":"","na":2,"nb":1,"a":[["alkaloids/endophenazine-a.yaml","endophenazine A"],["polyketides/monensin.yaml","monensin"]],"b":[["NCBITaxon%3A1961","Streptomyces virginiae"]]},{"id":"NCBITaxon:1903","l":"Streptomyces corchorusii","na":2,"nb":1,"a":[["polyketides/resistoflavine.yaml","resistoflavine"],["polyketides/resistomycin.yaml","resistomycin"]],"b":[["NCBITaxon%3A1903","Streptomyces corchorusii"]]},{"id":"NCBITaxon:1904044","l":"Streptomyces sp. ZS0098","na":2,"nb":1,"a":[["amino_acids_and_peptides/aborycin-2.yaml","aborycin"],["amino_acids_and_peptides/aborycin.yaml","aborycin"]],"b":[["NCBITaxon%3A1904044","Streptomyces sp. ZS0098"]]},{"id":"NCBITaxon:1912612","l":"Streptomyces sp. KIB-H033","na":2,"nb":1,"a":[["polyketides/rubrolone-a.yaml","rubrolone A"],["polyketides/rubrolone-b.yaml","rubrolone B"]],"b":[["NCBITaxon%3A1912612","Streptomyces sp. KIB-H033"]]},{"id":"NCBITaxon:1921","l":"Streptomyces olivaceoviridis","na":2,"nb":1,"a":[["polyketides/resistoflavine.yaml","resistoflavine"],["polyketides/resistomycin.yaml","resistomycin"]],"b":[["NCBITaxon%3A1921","Streptomyces olivaceoviridis"]]},{"id":"NCBITaxon:1929948","l":"Nostoc sp. UIC 10110","na":2,"nb":1,"a":[["polyketides/merocyclophane-c.yaml","merocyclophane C"],["polyketides/merocyclophane-d.yaml","merocyclophane D"]],"b":[["NCBITaxon%3A1929948","Nostoc sp. UIC 10110"]]},{"id":"NCBITaxon:1934374","l":"Achaetomiella virescens","na":2,"nb":1,"a":[["polyketides/sterigmatocystin.yaml","sterigmatocystin"],["unclassified/chaetocin.yaml","chaetocin"]],"b":[["NCBITaxon%3A1934374","Achaetomiella virescens"]]},{"id":"NCBITaxon:1937528","l":"[Flexibacter] sp. ATCC 35103","na":1,"nb":2,"a":[["amino_acids_and_peptides/aztreonam.yaml","aztreonam"]],"b":[["NCBITaxon%3A1005","Flexibacter sp."],["NCBITaxon%3A1937528","[Flexibacter] sp. ATCC 35103"]]},{"id":"NCBITaxon:1946","l":"Streptomyces kasugaensis","na":2,"nb":1,"a":[["alkaloids/thiolutin.yaml","thiolutin"],["carbohydrates/kasugamycin.yaml","kasugamycin"]],"b":[["NCBITaxon%3A1946","Streptomyces kasugaensis"]]},{"id":"NCBITaxon:1948","l":"Streptomyces longisporus","na":1,"nb":2,"a":[["alkaloids/undecylprodigiosin-2.yaml","undecylprodigiosin"]],"b":[["NCBITaxon%3A1948","Streptomyces longisporus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:1962669","l":"Kibdelosporangium sp. AK-AA56","na":2,"nb":1,"a":[["amino_acids_and_peptides/jbir-78.yaml","JBIR-78"],["amino_acids_and_peptides/jbir-95.yaml","JBIR-95"]],"b":[["NCBITaxon%3A1962669","Kibdelosporangium sp. AK-AA56"]]},{"id":"NCBITaxon:1962685","l":"Hormoscilla spongeliae SP4","na":2,"nb":1,"a":[["shikimates_and_phenylpropanoids/2-4-dibromo-6-2-4-dibromophenoxy-phenol.yaml","2,4-dibromo-6-(2,4-dibromophenoxy)phenol"],["shikimates_and_phenylpropanoids/3-5-dibromo-2-2-4-dibromophenoxy-phenol.yaml","3,5-dibromo-2-(2,4-dibromophenoxy)phenol"]],"b":[["NCBITaxon%3A1962685","Hormoscilla spongeliae SP4"]]},{"id":"NCBITaxon:1968","l":"Streptomyces cellulosae","na":2,"nb":1,"a":[["polyketides/14-hydroxyisochainin.yaml","14-hydroxyisochainin"],["polyketides/pentamycin-2.yaml","pentamycin"]],"b":[["NCBITaxon%3A1968","Streptomyces cellulosae"]]},{"id":"NCBITaxon:1970","l":"Streptomyces morookaense","na":1,"nb":2,"a":[["carbohydrates/blasticidin-s.yaml","blasticidin S"]],"b":[["NCBITaxon%3A68176","Streptomyces aspergilloides"],["NCBITaxon%3A1970","Streptomyces morookaense"]]},{"id":"NCBITaxon:1977088","l":"Streptomyces ficellus","na":1,"nb":2,"a":[["amino_acids_and_peptides/ficellomycin.yaml","Ficellomycin"]],"b":[["NCBITaxon%3A1977088","Streptomyces ficellus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:1982764","l":"Streptomyces sp. CS057","na":2,"nb":1,"a":[["polyketides/warkmycin-cs1.yaml","warkmycin CS1"],["polyketides/warkmycin-cs2.yaml","warkmycin CS2"]],"b":[["NCBITaxon%3A1982764","Streptomyces sp. CS057"]]},{"id":"NCBITaxon:1984801","l":"Streptomyces sp. CLI2509","na":2,"nb":1,"a":[["amino_acids_and_peptides/tryptorubin-a.yaml","Tryptorubin A"],["amino_acids_and_peptides/tryptorubin-b.yaml","Tryptorubin B"]],"b":[["NCBITaxon%3A1984801","Streptomyces sp. CLI2509"]]},{"id":"NCBITaxon:198730","l":"Talaromyces verruculosus","na":2,"nb":1,"a":[["polyketides/verrucosidin.yaml","verrucosidin"],["unclassified/chrodrimanin-b.yaml","chrodrimanin B"]],"b":[["NCBITaxon%3A198730","Talaromyces verruculosus"]]},{"id":"NCBITaxon:1990","l":"Actinomadura atramentaria","na":1,"nb":2,"a":[["amino_acids_and_peptides/matlystatin-a.yaml","matlystatin A"]],"b":[["NCBITaxon%3A1990","Actinomadura atramentaria"],["NCBITaxon%3A1120936","Actinomadura atramentaria DSM 43919"]]},{"id":"NCBITaxon:199310","l":"Escherichia coli CFT073","na":1,"nb":2,"a":[["unclassified/ape-ec.yaml","APE Ec"]],"b":[["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A199310","Escherichia coli CFT073"]]},{"id":"NCBITaxon:2008351","l":"Micromonospora chalcea subsp. izumensis","na":1,"nb":2,"a":[["polyketides/tylactone.yaml","tylactone"]],"b":[["NCBITaxon%3A2008351","Micromonospora chalcea subsp. izumensis"],["NCBITaxon%3A1876","Micromonospora sp."]]},{"id":"NCBITaxon:2012863","l":"Pyxidicoccus sp. MCy9557","na":2,"nb":1,"a":[["polyketides/pyxipyrrolone-a.yaml","pyxipyrrolone A"],["polyketides/pyxipyrrolone-b.yaml","pyxipyrrolone B"]],"b":[["NCBITaxon%3A2012863","Pyxidicoccus sp. MCy9557"]]},{"id":"NCBITaxon:2028102","l":"Planomonospora sp.","na":2,"nb":1,"a":[["amino_acids_and_peptides/biarylitide-yfh.yaml","biarylitide YFH"],["amino_acids_and_peptides/biarylitide-yyh.yaml","biarylitide YYH"]],"b":[["NCBITaxon%3A2028102","Planomonospora sp."]]},{"id":"NCBITaxon:203275","l":"Tannerella forsythia 92A2","na":1,"nb":2,"a":[["carbohydrates/legionaminic-acid.yaml","legionaminic acid"]],"b":[["NCBITaxon%3A28112","Tannerella forsythia"],["NCBITaxon%3A203275","Tannerella forsythia 92A2"]]},{"id":"NCBITaxon:2041","l":"Aeromicrobium erythreum","na":1,"nb":2,"a":[["polyketides/erythromycin-a.yaml","erythromycin A"]],"b":[["NCBITaxon%3A2041","Aeromicrobium erythreum"],["NCBITaxon%3A31956","Aeromicrobium erythreum (NRRL B-3381)"]]},{"id":"NCBITaxon:204925","l":"Streptomyces nanchangensis","na":2,"nb":1,"a":[["polyketides/meilingmycin.yaml","meilingmycin"],["polyketides/nanchangmycin.yaml","nanchangmycin"]],"b":[["NCBITaxon%3A204925","Streptomyces nanchangensis"]]},{"id":"NCBITaxon:205918","l":"Pseudomonas syringae pv. syringae B728a","na":2,"nb":1,"a":[["alkaloids/secimide.yaml","secimide"],["unclassified/syringomycin.yaml","syringomycin"]],"b":[["NCBITaxon%3A205918","Pseudomonas syringae pv. syringae B728a"]]},{"id":"NCBITaxon:208441","l":"Amycolatopsis decaplanina","na":1,"nb":2,"a":[["amino_acids_and_peptides/decaplanin.yaml","decaplanin"]],"b":[["NCBITaxon%3A208441","Amycolatopsis decaplanina"],["NCBITaxon%3A1284240","Amycolatopsis decaplanina DSM 44594"]]},{"id":"NCBITaxon:208442","l":"Amycolatopsis keratiniphila subsp. nogabecina","na":1,"nb":2,"a":[["amino_acids_and_peptides/actinoidin-b.yaml","Actinoidin B"]],"b":[["NCBITaxon%3A129921","Amycolatopsis keratiniphila"],["NCBITaxon%3A208442","Amycolatopsis keratiniphila subsp. nogabecina"]]},{"id":"NCBITaxon:210993","l":"Fischerella major","na":1,"nb":2,"a":[["unclassified/n-methylwelwitindolinone-c-isothiocyanate.yaml","N-methylwelwitindolinone C isothiocyanate"]],"b":[["NCBITaxon%3A210993","Fischerella major"],["NCBITaxon%3A210994","Fischerella major NIES-592"]]},{"id":"NCBITaxon:212423","l":"Streptomyces kaniharaensis","na":2,"nb":1,"a":[["alkaloids/formycin-a.yaml","formycin A"],["carbohydrates/coformycin.yaml","coformycin"]],"b":[["NCBITaxon%3A212423","Streptomyces kaniharaensis"]]},{"id":"NCBITaxon:212427","l":"Streptomyces citricolor","na":2,"nb":1,"a":[["carbohydrates/aristeromycin.yaml","aristeromycin"],["carbohydrates/gougerotin.yaml","gougerotin"]],"b":[["NCBITaxon%3A212427","Streptomyces citricolor"]]},{"id":"NCBITaxon:213624","l":"Planktothrix agardhii NIVA-CYA 126","na":2,"nb":1,"a":[["amino_acids_and_peptides/aeruginoside-126a.yaml","aeruginoside 126A"],["amino_acids_and_peptides/aeruginoside-126b.yaml","aeruginoside 126B"]],"b":[["NCBITaxon%3A213624","Planktothrix agardhii NIVA-CYA 126"]]},{"id":"NCBITaxon:2201999","l":"Micromonospora sp. B006","na":2,"nb":1,"a":[["alkaloids/diazaquinomycin-h.yaml","diazaquinomycin H"],["alkaloids/diazaquinomycin-j.yaml","diazaquinomycin J"]],"b":[["NCBITaxon%3A2201999","Micromonospora sp. B006"]]},{"id":"NCBITaxon:223296","l":"Streptomyces refuineus","na":1,"nb":2,"a":[["alkaloids/anthramycin.yaml","anthramycin"]],"b":[["NCBITaxon%3A223296","Streptomyces refuineus"],["NCBITaxon%3A223297","Streptomyces refuineus subsp. thermotolerans"]]},{"id":"NCBITaxon:223297","l":"Streptomyces refuineus subsp. thermotolerans","na":1,"nb":2,"a":[["alkaloids/anthramycin.yaml","anthramycin"]],"b":[["NCBITaxon%3A223296","Streptomyces refuineus"],["NCBITaxon%3A223297","Streptomyces refuineus subsp. thermotolerans"]]},{"id":"NCBITaxon:226900","l":"Bacillus cereus ATCC 14579","na":1,"nb":2,"a":[["amino_acids_and_peptides/thiocillin-i.yaml","thiocillin I"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A226900","Bacillus cereus ATCC 14579"]]},{"id":"NCBITaxon:230091","l":"Micromonospora endolithica","na":2,"nb":1,"a":[["polyketides/loseolamycin-a1.yaml","loseolamycin A1"],["polyketides/loseolamycin-a2.yaml","loseolamycin A2"]],"b":[["NCBITaxon%3A230091","Micromonospora endolithica"]]},{"id":"NCBITaxon:2303153","l":"Anabaena minutissima UTEX B 1613","na":2,"nb":1,"a":[["amino_acids_and_peptides/minutissamide-a.yaml","minutissamide A"],["amino_acids_and_peptides/minutissamide-b.yaml","minutissamide B"]],"b":[["NCBITaxon%3A2303153","Anabaena minutissima UTEX B 1613"]]},{"id":"NCBITaxon:234621","l":"Rhodococcus erythropolis PR4","na":2,"nb":1,"a":[["amino_acids_and_peptides/heterobactin-a.yaml","heterobactin A"],["amino_acids_and_peptides/heterobactin-s2.yaml","heterobactin S2"]],"b":[["NCBITaxon%3A234621","Rhodococcus erythropolis PR4"]]},{"id":"NCBITaxon:243277","l":"Vibrio cholerae O1 biovar El Tor str. N16961","na":1,"nb":2,"a":[["alkaloids/vibriobactin-2.yaml","vibriobactin"]],"b":[["NCBITaxon%3A666","Vibrio cholerae"],["NCBITaxon%3A243277","Vibrio cholerae O1 biovar El Tor str. N16961"]]},{"id":"NCBITaxon:247156","l":"Nocardia farcinica IFM 10152","na":2,"nb":1,"a":[["amino_acids_and_peptides/nocobactin-na.yaml","nocobactin NA"],["unclassified/nocobactin-na-10152b.yaml","nocobactin NA 10152B"]],"b":[["NCBITaxon%3A247156","Nocardia farcinica IFM 10152"]]},{"id":"NCBITaxon:249586","l":"Streptomyces asoensis","na":2,"nb":1,"a":[["carbohydrates/polyoxin-a.yaml","polyoxin A"],["carbohydrates/polyoxin-h.yaml","polyoxin H"]],"b":[["NCBITaxon%3A249586","Streptomyces asoensis"]]},{"id":"NCBITaxon:257985","l":"Bacillus thuringiensis serovar andalousiensis","na":1,"nb":2,"a":[["unclassified/andalusicin-a.yaml","andalusicin A"]],"b":[["NCBITaxon%3A257985","Bacillus thuringiensis serovar andalousiensis"],["NCBITaxon%3A527032","Bacillus thuringiensis serovar andalousiensis BGSC 4AW1"]]},{"id":"NCBITaxon:2582783","l":"Aspergillus nanangensis","na":2,"nb":1,"a":[["alkaloids/nanangelenin-b.yaml","nanangelenin B"],["terpenoids/nanangelenin-a.yaml","nanangelenin A"]],"b":[["NCBITaxon%3A2582783","Aspergillus nanangensis"]]},{"id":"NCBITaxon:2586640","l":"Streptomyces novoguineensis","na":2,"nb":1,"a":[["unclassified/amipurimycin-2.yaml","amipurimycin"],["unclassified/amipurimycin.yaml","amipurimycin"]],"b":[["NCBITaxon%3A2586640","Streptomyces novoguineensis"]]},{"id":"NCBITaxon:262324","l":"Lysobacter gummosus","na":1,"nb":2,"a":[["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"]],"b":[["NCBITaxon%3A262324","Lysobacter gummosus"],["NCBITaxon%3A1138170","Rhizobium aethiopicum"]]},{"id":"NCBITaxon:264024","l":"Streptomyces sp. SCC 2136","na":2,"nb":1,"a":[["polyketides/sch-47554.yaml","Sch-47554"],["polyketides/sch-47555.yaml","Sch-47555"]],"b":[["NCBITaxon%3A264024","Streptomyces sp. SCC 2136"]]},{"id":"NCBITaxon:2653857","l":"Amycolatopsis sp. YIM 10","na":2,"nb":1,"a":[["amino_acids_and_peptides/felipeptin-a1.yaml","felipeptin A1"],["amino_acids_and_peptides/felipeptin-a2.yaml","felipeptin A2"]],"b":[["NCBITaxon%3A2653857","Amycolatopsis sp. YIM 10"]]},{"id":"NCBITaxon:265726","l":"Photobacterium halotolerans","na":1,"nb":2,"a":[["alkaloids/holomycin.yaml","holomycin"]],"b":[["NCBITaxon%3A265726","Photobacterium halotolerans"],["NCBITaxon%3A1122959","Photobacterium halotolerans DSM 18316"]]},{"id":"NCBITaxon:2662259","l":"Pseudomonas sp. SZ57","na":2,"nb":1,"a":[["amino_acids_and_peptides/syringafactin-a.yaml","syringafactin A"],["amino_acids_and_peptides/syringafactin-c.yaml","syringafactin C"]],"b":[["NCBITaxon%3A2662259","Pseudomonas sp. SZ57"]]},{"id":"NCBITaxon:2665154","l":"Nostoc sp. UHCC-0398","na":2,"nb":1,"a":[["amino_acids_and_peptides/muscoride-a.yaml","muscoride A"],["unclassified/muscoride-b.yaml","muscoride B"]],"b":[["NCBITaxon%3A2665154","Nostoc sp. UHCC-0398"]]},{"id":"NCBITaxon:267747","l":"Cutibacterium acnes KPA171202","na":1,"nb":2,"a":[["amino_acids_and_peptides/cutimycin.yaml","cutimycin"]],"b":[["NCBITaxon%3A1747","Cutibacterium acnes"],["NCBITaxon%3A267747","Cutibacterium acnes KPA171202"]]},{"id":"NCBITaxon:2719566","l":"Streptomyces hygrospinosus subsp. beijingensis","na":2,"nb":1,"a":[["alkaloids/anisomycin.yaml","(−)-anisomycin"],["polyketides/tetramycin-b.yaml","tetramycin B"]],"b":[["NCBITaxon%3A2719566","Streptomyces hygrospinosus subsp. beijingensis"]]},{"id":"NCBITaxon:272559","l":"Bacteroides fragilis NCTC 9343","na":1,"nb":2,"a":[["fatty_acids/galactosylceramide.yaml","α-galactosylceramide"]],"b":[["NCBITaxon%3A817","Bacteroides fragilis"],["NCBITaxon%3A272559","Bacteroides fragilis NCTC 9343"]]},{"id":"NCBITaxon:27337","l":"Verticillium dahliae","na":2,"nb":1,"a":[["polyketides/flaviolin.yaml","flaviolin"],["polyketides/scytalone.yaml","scytalone"]],"b":[["NCBITaxon%3A27337","Verticillium dahliae"]]},{"id":"NCBITaxon:2742134","l":"Streptomyces sp. NA03103","na":2,"nb":1,"a":[["unclassified/ashimide-a.yaml","ashimide A"],["unclassified/ashimide-b.yaml","ashimide B"]],"b":[["NCBITaxon%3A2742134","Streptomyces sp. NA03103"]]},{"id":"NCBITaxon:2747968","l":"Fusarium vanettenii","na":1,"nb":2,"a":[["polyketides/bikaverin.yaml","bikaverin"]],"b":[["NCBITaxon%3A2747968","Fusarium vanettenii"],["NCBITaxon%3A660122","Fusarium vanettenii 77-13-4"]]},{"id":"NCBITaxon:2802641","l":"Kutzneria sp. CA-103260","na":2,"nb":1,"a":[["polyketides/epemicin-a.yaml","epemicin A"],["polyketides/epemicin-b.yaml","epemicin B"]],"b":[["NCBITaxon%3A2802641","Kutzneria sp. CA-103260"]]},{"id":"NCBITaxon:282216","l":"Streptomyces lividus","na":2,"nb":1,"a":[["alkaloids/staurosporine-2.yaml","staurosporine"],["carbohydrates/lividomycin-a.yaml","lividomycin A"]],"b":[["NCBITaxon%3A282216","Streptomyces lividus"]]},{"id":"NCBITaxon:285219","l":"Streptomyces sp. KO-3988","na":2,"nb":1,"a":[["polyketides/furaquinocin-b.yaml","furaquinocin B"],["terpenoids/viguiepinol.yaml","viguiepinol"]],"b":[["NCBITaxon%3A285219","Streptomyces sp. KO-3988"]]},{"id":"NCBITaxon:285454","l":"Streptomyces anandii","na":1,"nb":2,"a":[["polyketides/gilvocarcin-v.yaml","gilvocarcin V"]],"b":[["NCBITaxon%3A285454","Streptomyces anandii"],["NCBITaxon%3A1306180","Streptomyces anandii JCM 4720"]]},{"id":"NCBITaxon:285508","l":"Streptomyces piomogenus","na":2,"nb":1,"a":[["alkaloids/fumigaclavine-c.yaml","fumigaclavine C"],["polyketides/piericidin-a.yaml","piericidin A"]],"b":[["NCBITaxon%3A285508","Streptomyces piomogenus"]]},{"id":"NCBITaxon:285515","l":"Streptomyces albospinus","na":1,"nb":2,"a":[["alkaloids/physostigmine.yaml","physostigmine"]],"b":[["NCBITaxon%3A285515","Streptomyces albospinus"],["NCBITaxon%3A68237","Streptomyces mediolani"]]},{"id":"NCBITaxon:285527","l":"Streptomyces hygroscopicus subsp. duamyceticus","na":1,"nb":2,"a":[["polyketides/geldanamycin.yaml","geldanamycin"]],"b":[["NCBITaxon%3A1912","Streptomyces hygroscopicus"],["NCBITaxon%3A285527","Streptomyces hygroscopicus subsp. duamyceticus"]]},{"id":"NCBITaxon:285551","l":"Streptomyces paulus","na":1,"nb":2,"a":[["carbohydrates/paulomycin.yaml","paulomycin"]],"b":[["NCBITaxon%3A285551","Streptomyces paulus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:285578","l":"Streptomyces angustmyceticus","na":2,"nb":1,"a":[["carbohydrates/angustmycin-a.yaml","angustmycin A"],["carbohydrates/angustmycin-c.yaml","angustmycin C"]],"b":[["NCBITaxon%3A285578","Streptomyces angustmyceticus"]]},{"id":"NCBITaxon:29001","l":"Alternaria brassicicola","na":2,"nb":1,"a":[["fatty_acids/depudecin.yaml","depudecin"],["terpenoids/brassicicene-c.yaml","brassicicene C"]],"b":[["NCBITaxon%3A29001","Alternaria brassicicola"]]},{"id":"NCBITaxon:290112","l":"Xenorhabdus szentirmaii","na":1,"nb":2,"a":[["alkaloids/pyrrolizixenamide-a.yaml","pyrrolizixenamide A"]],"b":[["NCBITaxon%3A290112","Xenorhabdus szentirmaii"],["NCBITaxon%3A1427518","Xenorhabdus szentirmaii DSM 16338"]]},{"id":"NCBITaxon:29305","l":"Streptomyces griseoincarnatus","na":2,"nb":1,"a":[["polyketides/grincamycin.yaml","grincamycin"],["polyketides/resistomycin.yaml","resistomycin"]],"b":[["NCBITaxon%3A29305","Streptomyces griseoincarnatus"]]},{"id":"NCBITaxon:293381","l":"Penicillium bialowiezense","na":2,"nb":1,"a":[["terpenoids/brevione-e.yaml","brevione E"],["terpenoids/isobrevione-e.yaml","isobrevione E"]],"b":[["NCBITaxon%3A293381","Penicillium bialowiezense"]]},{"id":"NCBITaxon:29447","l":"Xanthomonas albilineans","na":1,"nb":2,"a":[["alkaloids/albicidin.yaml","albicidin"]],"b":[["NCBITaxon%3A29447","Xanthomonas albilineans"],["NCBITaxon%3A380358","Xanthomonas albilineans GPE PC73"]]},{"id":"NCBITaxon:29486","l":"Yersinia ruckeri","na":1,"nb":2,"a":[["alkaloids/holomycin.yaml","holomycin"]],"b":[["NCBITaxon%3A29486","Yersinia ruckeri"],["NCBITaxon%3A527005","Yersinia ruckeri ATCC 29473"]]},{"id":"NCBITaxon:29829","l":"Lipomyces starkeyi","na":1,"nb":2,"a":[["alkaloids/biotin.yaml","biotin"]],"b":[["NCBITaxon%3A29829","Lipomyces starkeyi"],["NCBITaxon%3A675824","Lipomyces starkeyi NRRL Y-11557"]]},{"id":"NCBITaxon:29852","l":"Hypomyces aurantius","na":2,"nb":1,"a":[["alkaloids/cj-15-696.yaml","CJ-15,696"],["alkaloids/cj-16-173.yaml","CJ-16,173"]],"b":[["NCBITaxon%3A29852","Hypomyces aurantius"]]},{"id":"NCBITaxon:29910","l":"Tolypocladium inflatum","na":2,"nb":1,"a":[["amino_acids_and_peptides/cyclosporin-a.yaml","cyclosporin A"],["terpenoids/aphidicolin.yaml","aphidicolin"]],"b":[["NCBITaxon%3A1086729","Tolypocladium inflatum NRRL8044"]]},{"id":"NCBITaxon:312720","l":"Streptomyces cheonanensis","na":2,"nb":1,"a":[["unclassified/ohmyungsamycin-a.yaml","ohmyungsamycin A"],["unclassified/ohmyungsamycin-b.yaml","ohmyungsamycin B"]],"b":[["NCBITaxon%3A312720","Streptomyces cheonanensis"]]},{"id":"NCBITaxon:3158555","l":"Kaarinaea lacus PCC 9237","na":1,"nb":2,"a":[["amino_acids_and_peptides/nostophycin.yaml","nostophycin"]],"b":[["NCBITaxon%3A3399526","Kaarinaea lacus"],["NCBITaxon%3A3158555","Kaarinaea lacus PCC 9237"]]},{"id":"NCBITaxon:337066","l":"Streptomyces albus subsp. chlorinus","na":2,"nb":1,"a":[["alkaloids/nybomycin.yaml","nybomycin"],["unclassified/dudomycin-a.yaml","dudomycin A"]],"b":[["NCBITaxon%3A337066","Streptomyces albus subsp. chlorinus"]]},{"id":"NCBITaxon:339670","l":"Burkholderia ambifaria AMMD","na":2,"nb":1,"a":[["alkaloids/cepaciachelin.yaml","cepaciachelin"],["polyketides/enacyloxin-iia.yaml","enacyloxin IIa"]],"b":[["NCBITaxon%3A339670","Burkholderia ambifaria AMMD"]]},{"id":"NCBITaxon:34058","l":"Methylobacter marinus","na":1,"nb":2,"a":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]],"b":[["NCBITaxon%3A34058","Methylobacter marinus"],["NCBITaxon%3A674036","Methylobacter marinus A45"]]},{"id":"NCBITaxon:34399","l":"Phomopsis","na":2,"nb":1,"a":[["polyketides/phomopsin-a.yaml","phomopsin A"],["polyketides/phomopsin-b.yaml","phomopsin B"]],"b":[["NCBITaxon%3A1715245","Phomopsis sp."]]},{"id":"NCBITaxon:347834","l":"Rhizobium etli CFN 42","na":1,"nb":2,"a":[["amino_acids_and_peptides/vicibactin.yaml","vicibactin"]],"b":[["NCBITaxon%3A29449","Rhizobium etli"],["NCBITaxon%3A347834","Rhizobium etli CFN 42"]]},{"id":"NCBITaxon:349521","l":"Hahella chejuensis KCTC 2396","na":1,"nb":2,"a":[["alkaloids/prodigiosin-2.yaml","prodigiosin"]],"b":[["NCBITaxon%3A158327","Hahella chejuensis"],["NCBITaxon%3A349521","Hahella chejuensis KCTC 2396"]]},{"id":"NCBITaxon:349966","l":"Yersinia frederiksenii ATCC 33641","na":1,"nb":2,"a":[["unclassified/frederiksenibactin.yaml","frederiksenibactin"]],"b":[["NCBITaxon%3A29484","Yersinia frederiksenii"],["NCBITaxon%3A349966","Yersinia frederiksenii ATCC 33641"]]},{"id":"NCBITaxon:357447","l":"Aspergillus westerdijkiae","na":2,"nb":1,"a":[["polyketides/asperlactone.yaml","asperlactone"],["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"]],"b":[["NCBITaxon%3A357447","Aspergillus westerdijkiae"]]},{"id":"NCBITaxon:35754","l":"Dactylosporangium aurantiacum","na":1,"nb":2,"a":[["polyketides/tiacumicin-b.yaml","tiacumicin B"]],"b":[["NCBITaxon%3A35754","Dactylosporangium aurantiacum"],["NCBITaxon%3A703577","Dactylosporangium aurantiacum subsp. hamdenensis"]]},{"id":"NCBITaxon:358823","l":"Streptomyces olindensis","na":2,"nb":1,"a":[["polyketides/carotenoid.yaml","carotenoid"],["polyketides/cosmomycin-d.yaml","cosmomycin D"]],"b":[["NCBITaxon%3A358823","Streptomyces olindensis"]]},{"id":"NCBITaxon:359131","l":"Streptomyces rubellomurinus","na":1,"nb":2,"a":[["unclassified/fr-900098.yaml","FR-900098"]],"b":[["NCBITaxon%3A359131","Streptomyces rubellomurinus"],["NCBITaxon%3A1615590","Streptomyces rubellomurinus subsp. indigoferus"]]},{"id":"NCBITaxon:360709","l":"Streptomyces qinlingensis","na":2,"nb":1,"a":[["carbohydrates/streptothricin-d.yaml","streptothricin D"],["carbohydrates/streptothricin-f.yaml","streptothricin F"]],"b":[["NCBITaxon%3A360709","Streptomyces qinlingensis"]]},{"id":"NCBITaxon:36645","l":"Penicillium miczynskii","na":2,"nb":1,"a":[["polyketides/citreoviridin.yaml","citreoviridin"],["unclassified/paxilline.yaml","paxilline"]],"b":[["NCBITaxon%3A36645","Penicillium miczynskii"]]},{"id":"NCBITaxon:36873","l":"Paraburkholderia xenovorans","na":1,"nb":2,"a":[["unclassified/malleobactin-x.yaml","malleobactin X"]],"b":[["NCBITaxon%3A36873","Paraburkholderia xenovorans"],["NCBITaxon%3A266265","Paraburkholderia xenovorans LB400"]]},{"id":"NCBITaxon:376686","l":"Flavobacterium johnsoniae UW101","na":1,"nb":2,"a":[["polyketides/flexirubin.yaml","flexirubin"]],"b":[["NCBITaxon%3A986","Flavobacterium johnsoniae"],["NCBITaxon%3A376686","Flavobacterium johnsoniae UW101"]]},{"id":"NCBITaxon:381666","l":"Cupriavidus necator H16","na":1,"nb":2,"a":[["amino_acids_and_peptides/cupriachelin.yaml","cupriachelin"]],"b":[["NCBITaxon%3A106590","Cupriavidus necator"],["NCBITaxon%3A381666","Cupriavidus necator H16"]]},{"id":"NCBITaxon:385492","l":"Pseudophaeobacter arcticus","na":1,"nb":2,"a":[["amino_acids_and_peptides/phaeornamide.yaml","phaeornamide"]],"b":[["NCBITaxon%3A385492","Pseudophaeobacter arcticus"],["NCBITaxon%3A999550","Pseudophaeobacter arcticus DSM 23566"]]},{"id":"NCBITaxon:391936","l":"Isoalcanivorax pacificus W11-5","na":1,"nb":2,"a":[["amino_acids_and_peptides/pacifibactin.yaml","pacifibactin"]],"b":[["NCBITaxon%3A1306787","Isoalcanivorax pacificus"],["NCBITaxon%3A391936","Isoalcanivorax pacificus W11-5"]]},{"id":"NCBITaxon:394095","l":"Pyxidicoccus fallax","na":2,"nb":1,"a":[["polyketides/gulmirecin-a.yaml","gulmirecin A"],["unclassified/myxarylin.yaml","Myxarylin"]],"b":[["NCBITaxon%3A394095","Pyxidicoccus fallax"]]},{"id":"NCBITaxon:394096","l":"Hyalangium minutum","na":2,"nb":1,"a":[["polyketides/nystatin-a1.yaml","nystatin A1"],["unclassified/myxochromide-d-2.yaml","myxochromide D"]],"b":[["NCBITaxon%3A394096","Hyalangium minutum"]]},{"id":"NCBITaxon:396598","l":"Paraburkholderia graminis C4D1M","na":1,"nb":2,"a":[["unclassified/gramibactin.yaml","gramibactin"]],"b":[["NCBITaxon%3A60548","Paraburkholderia graminis"],["NCBITaxon%3A396598","Paraburkholderia graminis C4D1M"]]},{"id":"NCBITaxon:397945","l":"Paracidovorax citrulli AAC00-1","na":2,"nb":1,"a":[["unclassified/acidobactin-a.yaml","acidobactin A"],["unclassified/acidobactin-b.yaml","acidobactin B"]],"b":[["NCBITaxon%3A397945","Paracidovorax citrulli AAC00-1"]]},{"id":"NCBITaxon:40601","l":"Claviceps paspali","na":1,"nb":2,"a":[["unclassified/paxilline.yaml","paxilline"]],"b":[["NCBITaxon%3A40601","Claviceps paspali"],["NCBITaxon%3A877506","Claviceps paspali RRC 1481"]]},{"id":"NCBITaxon:40695","l":"Trichoderma polysporum","na":2,"nb":1,"a":[["amino_acids_and_peptides/cyclosporin-a.yaml","cyclosporin A"],["amino_acids_and_peptides/cyclosporin-c.yaml","cyclosporin C"]],"b":[["NCBITaxon%3A40695","Trichoderma polysporum"]]},{"id":"NCBITaxon:408015","l":"Streptomyces xiamenensis","na":1,"nb":2,"a":[["polyketides/xiamenmycin-a.yaml","xiamenmycin A"]],"b":[["NCBITaxon%3A408015","Streptomyces xiamenensis"],["NCBITaxon%3A1093097","Streptomyces xiamenensis 318"]]},{"id":"NCBITaxon:41276","l":"Brevundimonas vesicularis","na":1,"nb":2,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A41276","Brevundimonas vesicularis"],["NCBITaxon%3A1349759","Brevundimonas vesicularis NBRC 12165"]]},{"id":"NCBITaxon:41744","l":"Aspergillus puniceus","na":2,"nb":1,"a":[["unclassified/oxepinamide-d.yaml","oxepinamide D"],["unclassified/oxepinamide-f.yaml","oxepinamide F"]],"b":[["NCBITaxon%3A41744","Aspergillus puniceus"]]},{"id":"NCBITaxon:41899","l":"Burkholderia plantarii","na":1,"nb":2,"a":[["amino_acids_and_peptides/plantaribactin.yaml","plantaribactin"]],"b":[["NCBITaxon%3A41899","Burkholderia plantarii"],["NCBITaxon%3A796107","Burkholderia plantarii MAFF 301723"]]},{"id":"NCBITaxon:42239","l":"Streptomyces sampsonii","na":1,"nb":2,"a":[["polyketides/julichrome-q6-6.yaml","julichrome Q6.6"]],"b":[["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A42239","Streptomyces sampsonii"]]},{"id":"NCBITaxon:426","l":"Methylosinus trichosporium","na":1,"nb":2,"a":[["amino_acids_and_peptides/group-1-methanobactin.yaml","group 1 methanobactin"]],"b":[["NCBITaxon%3A426","Methylosinus trichosporium"],["NCBITaxon%3A595536","Methylosinus trichosporium OB3b"]]},{"id":"NCBITaxon:42677","l":"Fusarium subglutinans","na":2,"nb":1,"a":[["unclassified/subglutinol-a.yaml","subglutinol A"],["unclassified/subglutinol-b.yaml","subglutinol B"]],"b":[["NCBITaxon%3A42677","Fusarium subglutinans"]]},{"id":"NCBITaxon:42742","l":"Gelatoporia subvermispora","na":1,"nb":2,"a":[["amino_acids_and_peptides/basidioferrin.yaml","basidioferrin"]],"b":[["NCBITaxon%3A42742","Gelatoporia subvermispora"],["NCBITaxon%3A914234","Gelatoporia subvermispora B"]]},{"id":"NCBITaxon:42881","l":"Streptomyces chromofuscus","na":2,"nb":1,"a":[["alkaloids/indigoidine.yaml","indigoidine"],["polyketides/herboxidiene.yaml","herboxidiene"]],"b":[["NCBITaxon%3A42881","Streptomyces chromofuscus"]]},{"id":"NCBITaxon:43769","l":"Corynebacterium propinquum","na":1,"nb":2,"a":[["amino_acids_and_peptides/dehydroxynocardamine.yaml","dehydroxynocardamine"]],"b":[["NCBITaxon%3A43769","Corynebacterium propinquum"],["NCBITaxon%3A1121367","Corynebacterium propinquum DSM 44285"]]},{"id":"NCBITaxon:443922","l":"Planktothrix agardhii NIES-596","na":2,"nb":1,"a":[["amino_acids_and_peptides/prenylagaramide-b.yaml","prenylagaramide B"],["amino_acids_and_peptides/prenylagaramide-c.yaml","prenylagaramide C"]],"b":[["NCBITaxon%3A443922","Planktothrix agardhii NIES-596"]]},{"id":"NCBITaxon:444103","l":"Streptomyces sp. CNQ-509","na":2,"nb":1,"a":[["alkaloids/marinophenazine-a.yaml","marinophenazine A"],["alkaloids/phenaziterpene-a.yaml","phenaziterpene A"]],"b":[["NCBITaxon%3A444103","Streptomyces sp. CNQ-509"]]},{"id":"NCBITaxon:45130","l":"Bipolaris sorokiniana","na":1,"nb":2,"a":[["polyketides/sterigmatocystin.yaml","sterigmatocystin"]],"b":[["NCBITaxon%3A45130","Bipolaris sorokiniana"],["NCBITaxon%3A665912","Bipolaris sorokiniana ND90Pr"]]},{"id":"NCBITaxon:452529","l":"Streptomyces scopuliridis","na":1,"nb":2,"a":[["amino_acids_and_peptides/vancomycin.yaml","vancomycin"]],"b":[["NCBITaxon%3A452529","Streptomyces scopuliridis"],["NCBITaxon%3A1440053","Streptomyces scopuliridis RB72"]]},{"id":"NCBITaxon:452652","l":"Kitasatospora setae KM-6054","na":1,"nb":2,"a":[["alkaloids/kitasetaline.yaml","kitasetaline"]],"b":[["NCBITaxon%3A2066","Kitasatospora setae"],["NCBITaxon%3A452652","Kitasatospora setae KM-6054"]]},{"id":"NCBITaxon:45399","l":"Streptomyces triostinicus","na":2,"nb":1,"a":[["unclassified/quinomycin.yaml","quinomycin"],["unclassified/triostin-a.yaml","triostin A"]],"b":[["NCBITaxon%3A45399","Streptomyces triostinicus"]]},{"id":"NCBITaxon:457430","l":"Streptomyces filamentosus NRRL 11379","na":2,"nb":1,"a":[["amino_acids_and_peptides/arylomycin.yaml","arylomycin"],["unclassified/daptomycin.yaml","daptomycin"]],"b":[["NCBITaxon%3A457430","Streptomyces filamentosus NRRL 11379"]]},{"id":"NCBITaxon:469280","l":"Aspergillus striatus","na":2,"nb":1,"a":[["polyketides/sterigmatocystin.yaml","sterigmatocystin"],["unclassified/paxilline.yaml","paxilline"]],"b":[["NCBITaxon%3A469280","Aspergillus striatus"]]},{"id":"NCBITaxon:469371","l":"Thermobispora bispora DSM 43833","na":1,"nb":2,"a":[["amino_acids_and_peptides/thiomuracin.yaml","thiomuracin"]],"b":[["NCBITaxon%3A2006","Thermobispora bispora"],["NCBITaxon%3A469371","Thermobispora bispora DSM 43833"]]},{"id":"NCBITaxon:47278","l":"Trichothecium roseum","na":1,"nb":2,"a":[["unclassified/destruxin-a.yaml","destruxin A"]],"b":[["NCBITaxon%3A173858","Streptomyces luteireticuli"],["NCBITaxon%3A47278","Trichothecium roseum"]]},{"id":"NCBITaxon:47850","l":"Micromonospora aurantiaca (nom. illeg.)","na":1,"nb":2,"a":[["polyketides/dynemicin-a.yaml","dynemicin A"]],"b":[["NCBITaxon%3A644283","Micromonospora aurantiaca ATCC 27029"],["NCBITaxon%3A47850","Micromonospora aurantiaca (nom. illeg.)"]]},{"id":"NCBITaxon:47863","l":"Micromonospora globosa","na":1,"nb":2,"a":[["polyketides/dynemicin-a.yaml","dynemicin A"]],"b":[["NCBITaxon%3A47863","Micromonospora globosa"],["NCBITaxon%3A1876","Micromonospora sp."]]},{"id":"NCBITaxon:483421","l":"Streptomyces sp. CNQ-617","na":2,"nb":1,"a":[["alkaloids/marineosin-a.yaml","marineosin A"],["alkaloids/marineosin-b.yaml","marineosin B"]],"b":[["NCBITaxon%3A483421","Streptomyces sp. CNQ-617"]]},{"id":"NCBITaxon:4837","l":"Phycomyces blakesleeanus","na":1,"nb":2,"a":[["alkaloids/biotin.yaml","biotin"]],"b":[["NCBITaxon%3A4837","Phycomyces blakesleeanus"],["NCBITaxon%3A763407","Phycomyces blakesleeanus NRRL 1555(-)"]]},{"id":"NCBITaxon:489825","l":"Moorena producens 3L","na":2,"nb":1,"a":[["fatty_acids/1-heptadecene.yaml","1-heptadecene"],["polyketides/curacin-a-2.yaml","curacin A"]],"b":[["NCBITaxon%3A489825","Moorena producens 3L"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":1,"nb":2,"a":[["polyketides/haliamide.yaml","haliamide"]],"b":[["NCBITaxon%3A80816","Haliangium ochraceum"],["NCBITaxon%3A502025","Haliangium ochraceum DSM 14365"]]},{"id":"NCBITaxon:503010","l":"uncultured Prochloron sp. 06037A","na":2,"nb":1,"a":[["amino_acids_and_peptides/patellin-2.yaml","patellin 2"],["amino_acids_and_peptides/patellin-3.yaml","patellin 3"]],"b":[["NCBITaxon%3A503010","uncultured Prochloron sp. 06037A"]]},{"id":"NCBITaxon:503013","l":"Nostoc spongiaeforme var. tenue str. Carmeli","na":2,"nb":1,"a":[["amino_acids_and_peptides/tenuecyclamide-a.yaml","tenuecyclamide A"],["amino_acids_and_peptides/tenuecyclamide-c.yaml","tenuecyclamide C"]],"b":[["NCBITaxon%3A503013","Nostoc spongiaeforme var. tenue str. Carmeli"]]},{"id":"NCBITaxon:504097","l":"Streptomyces rimofaciens","na":1,"nb":2,"a":[["carbohydrates/mildiomycin.yaml","mildiomycin"]],"b":[["NCBITaxon%3A97398","Streptomyces abikoensis"],["NCBITaxon%3A504097","Streptomyces rimofaciens"]]},{"id":"NCBITaxon:5044","l":"Hapsidospora chrysogena","na":2,"nb":1,"a":[["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"],["polyketides/sorbicillin.yaml","sorbicillin"]],"b":[["NCBITaxon%3A5044","Hapsidospora chrysogena"]]},{"id":"NCBITaxon:5079","l":"Penicillium janthinellum","na":2,"nb":1,"a":[["unclassified/penitrem-a.yaml","penitrem A"],["unclassified/shearinine-d.yaml","shearinine D"]],"b":[["NCBITaxon%3A5079","Penicillium janthinellum"]]},{"id":"NCBITaxon:509173","l":"Acinetobacter baumannii AYE","na":2,"nb":1,"a":[["alkaloids/baumannoferrin-a.yaml","baumannoferrin A"],["alkaloids/baumannoferrin-b.yaml","baumannoferrin B"]],"b":[["NCBITaxon%3A509173","Acinetobacter baumannii AYE"]]},{"id":"NCBITaxon:516360","l":"Streptomyces hygrospinosus","na":1,"nb":2,"a":[["alkaloids/anisomycin.yaml","(−)-anisomycin"]],"b":[["NCBITaxon%3A516360","Streptomyces hygrospinosus"],["NCBITaxon%3A2719566","Streptomyces hygrospinosus subsp. beijingensis"]]},{"id":"NCBITaxon:52259","l":"Streptomyces humidus","na":1,"nb":2,"a":[["amino_acids_and_peptides/humidimycin.yaml","humidimycin"]],"b":[["NCBITaxon%3A52259","Streptomyces humidus"],["NCBITaxon%3A285499","Streptomyces humidus subsp. antitumoris"]]},{"id":"NCBITaxon:5270","l":"Mycosarcoma maydis","na":2,"nb":1,"a":[["fatty_acids/itaconic-acid.yaml","itaconic acid"],["fatty_acids/ustilagic-acid.yaml","ustilagic acid"]],"b":[["NCBITaxon%3A5270","Mycosarcoma maydis"]]},{"id":"NCBITaxon:527005","l":"Yersinia ruckeri ATCC 29473","na":1,"nb":2,"a":[["alkaloids/holomycin.yaml","holomycin"]],"b":[["NCBITaxon%3A29486","Yersinia ruckeri"],["NCBITaxon%3A527005","Yersinia ruckeri ATCC 29473"]]},{"id":"NCBITaxon:543728","l":"Variovorax paradoxus S110","na":2,"nb":1,"a":[["unclassified/vacidobactin-a.yaml","vacidobactin A"],["unclassified/vacidobactin-b.yaml","vacidobactin B"]],"b":[["NCBITaxon%3A543728","Variovorax paradoxus S110"]]},{"id":"NCBITaxon:544311","l":"Streptomyces araujoniae","na":2,"nb":1,"a":[["polyketides/tetranactin.yaml","tetranactin"],["polyketides/trinactin.yaml","trinactin"]],"b":[["NCBITaxon%3A544311","Streptomyces araujoniae"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":1,"nb":2,"a":[["unclassified/antimycin-a1b.yaml","antimycin A1B"]],"b":[["NCBITaxon%3A5476","Candida albicans"],["NCBITaxon%3A1182531","Candida albicans 3153A"]]},{"id":"NCBITaxon:5514","l":"Fusarium sporotrichioides","na":2,"nb":1,"a":[["terpenoids/t-2-toxin.yaml","T-2 toxin"],["unclassified/beauvericin.yaml","beauvericin"]],"b":[["NCBITaxon%3A5514","Fusarium sporotrichioides"]]},{"id":"NCBITaxon:5531","l":"Myrothecium","na":1,"nb":2,"a":[["carbohydrates/kanamycin-a.yaml","kanamycin A"]],"b":[["NCBITaxon%3A110576","Myrothecium inundatum"],["NCBITaxon%3A1756106","Myrothecium sp."]]},{"id":"NCBITaxon:5548","l":"Trichoderma longibrachiatum","na":1,"nb":2,"a":[["polyketides/sorbicillin.yaml","sorbicillin"]],"b":[["NCBITaxon%3A5548","Trichoderma longibrachiatum"],["NCBITaxon%3A1234776","Trichoderma longibrachiatum SMF2"]]},{"id":"NCBITaxon:55508","l":"Janthinobacterium agaricidamnosum","na":1,"nb":2,"a":[["unclassified/jagaricin.yaml","jagaricin"]],"b":[["NCBITaxon%3A55508","Janthinobacterium agaricidamnosum"],["NCBITaxon%3A1349767","Janthinobacterium agaricidamnosum NBRC 102515 = DSM 9628"]]},{"id":"NCBITaxon:557722","l":"Pseudomonas aeruginosa LESB58","na":2,"nb":1,"a":[["fatty_acids/n-acyl-lysine.yaml","N-acyl lysine"],["fatty_acids/n-acyl-ornithine.yaml","N-acyl ornithine"]],"b":[["NCBITaxon%3A557722","Pseudomonas aeruginosa LESB58"]]},{"id":"NCBITaxon:5580","l":"Aureobasidium pullulans","na":1,"nb":2,"a":[["unclassified/abt1.yaml","AbT1"]],"b":[["NCBITaxon%3A5580","Aureobasidium pullulans"],["NCBITaxon%3A1043002","Aureobasidium pullulans EXF-150"]]},{"id":"NCBITaxon:56427","l":"Couchioplanes caeruleus subsp. caeruleus","na":1,"nb":2,"a":[["polyketides/67-121c.yaml","67-121C"]],"b":[["NCBITaxon%3A56438","Couchioplanes caeruleus"],["NCBITaxon%3A56427","Couchioplanes caeruleus subsp. caeruleus"]]},{"id":"NCBITaxon:566461","l":"Streptomyces viridosporus ATCC 14672","na":1,"nb":2,"a":[["unclassified/cinnapeptin.yaml","cinnapeptin"]],"b":[["NCBITaxon%3A67581","Streptomyces viridosporus"],["NCBITaxon%3A566461","Streptomyces viridosporus ATCC 14672"]]},{"id":"NCBITaxon:570268","l":"Nocardiopsis potens DSM 45234","na":1,"nb":2,"a":[["amino_acids_and_peptides/potensibactin.yaml","potensibactin"]],"b":[["NCBITaxon%3A1246458","Nocardiopsis potens"],["NCBITaxon%3A570268","Nocardiopsis potens DSM 45234"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":1,"nb":2,"a":[["alkaloids/congocidine.yaml","congocidine"]],"b":[["NCBITaxon%3A5833","Plasmodium falciparum"],["NCBITaxon%3A5843","Plasmodium falciparum NF54"]]},{"id":"NCBITaxon:58350","l":"Kitasatospora cystarginea","na":2,"nb":1,"a":[["amino_acids_and_peptides/cystargolide-a.yaml","cystargolide A"],["amino_acids_and_peptides/cystargolide-b.yaml","cystargolide B"]],"b":[["NCBITaxon%3A58350","Kitasatospora cystarginea"]]},{"id":"NCBITaxon:591157","l":"Streptomyces sp. SPB78","na":2,"nb":1,"a":[["unclassified/frontalamide-a.yaml","frontalamide A"],["unclassified/frontalamide-b.yaml","frontalamide B"]],"b":[["NCBITaxon%3A591157","Streptomyces sp. SPB78"]]},{"id":"NCBITaxon:59299","l":"Streptomyces thermocarboxydus","na":1,"nb":2,"a":[["terpenoids/cyslabdan-a.yaml","cyslabdan A"]],"b":[["NCBITaxon%3A59299","Streptomyces thermocarboxydus"],["NCBITaxon%3A682180","Streptomyces thermocarboxydus di50b"]]},{"id":"NCBITaxon:595536","l":"Methylosinus trichosporium OB3b","na":1,"nb":2,"a":[["amino_acids_and_peptides/group-1-methanobactin.yaml","group 1 methanobactin"]],"b":[["NCBITaxon%3A426","Methylosinus trichosporium"],["NCBITaxon%3A595536","Methylosinus trichosporium OB3b"]]},{"id":"NCBITaxon:59737","l":"Rathayibacter iranicus","na":1,"nb":2,"a":[["carbohydrates/tunicamycin.yaml","tunicamycin"]],"b":[["NCBITaxon%3A59737","Rathayibacter iranicus"],["NCBITaxon%3A1328868","Rathayibacter iranicus NCPPB 2253 = VKM Ac-1602"]]},{"id":"NCBITaxon:60175","l":"Penicillium nalgiovense","na":1,"nb":2,"a":[["shikimates_and_phenylpropanoids/dichlorodiaporthin.yaml","dichlorodiaporthin"]],"b":[["NCBITaxon%3A60175","Penicillium nalgiovense"],["NCBITaxon%3A1439352","Penicillium nalgiovense FM193"]]},{"id":"NCBITaxon:60890","l":"Phaeobacter gallaeciensis","na":1,"nb":2,"a":[["shikimates_and_phenylpropanoids/tropodithietic-acid.yaml","tropodithietic acid"]],"b":[["NCBITaxon%3A60890","Phaeobacter gallaeciensis"],["NCBITaxon%3A1423144","Phaeobacter gallaeciensis DSM 26640"]]},{"id":"NCBITaxon:61284","l":"Fusarium tricinctum","na":2,"nb":1,"a":[["terpenoids/nivalenol.yaml","nivalenol"],["unclassified/fusaristatin-a.yaml","fusaristatin A"]],"b":[["NCBITaxon%3A61284","Fusarium tricinctum"]]},{"id":"NCBITaxon:618","l":"Serratia odorifera","na":1,"nb":2,"a":[["terpenoids/sodorifen.yaml","sodorifen"]],"b":[["NCBITaxon%3A618","Serratia odorifera"],["NCBITaxon%3A667129","Serratia odorifera DSM 4582"]]},{"id":"NCBITaxon:62101","l":"Candidatus Endobugula sertula","na":2,"nb":1,"a":[["polyketides/bryostatin-2.yaml","bryostatin"],["polyketides/bryostatin.yaml","bryostatin"]],"b":[["NCBITaxon%3A62101","Candidatus Endobugula sertula"]]},{"id":"NCBITaxon:62977","l":"Acinetobacter baylyi ADP1","na":1,"nb":2,"a":[["amino_acids_and_peptides/fimsbactin-a.yaml","fimsbactin A"]],"b":[["NCBITaxon%3A202950","Acinetobacter baylyi"],["NCBITaxon%3A62977","Acinetobacter baylyi ADP1"]]},{"id":"NCBITaxon:630397","l":"Streptomyces sp. Sp080513GE-23","na":2,"nb":1,"a":[["amino_acids_and_peptides/jbir-34.yaml","JBIR-34"],["amino_acids_and_peptides/jbir-35.yaml","JBIR-35"]],"b":[["NCBITaxon%3A630397","Streptomyces sp. Sp080513GE-23"]]},{"id":"NCBITaxon:634771","l":"Chitinophaga eiseniae","na":2,"nb":1,"a":[["amino_acids_and_peptides/pentacitidin-a.yaml","pentacitidin A"],["amino_acids_and_peptides/pentacitidin-b.yaml","pentacitidin B"]],"b":[["NCBITaxon%3A634771","Chitinophaga eiseniae"]]},{"id":"NCBITaxon:643403","l":"Streptomyces sp. MK730-62F2","na":2,"nb":1,"a":[["carbohydrates/caprazamycin-aglycon.yaml","caprazamycin aglycon"],["carbohydrates/caprazamycin.yaml","caprazamycin"]],"b":[["NCBITaxon%3A643403","Streptomyces sp. MK730-62F2"]]},{"id":"NCBITaxon:658629","l":"Pseudomonas sessilinigenes","na":2,"nb":1,"a":[["amino_acids_and_peptides/sessilin-a.yaml","sessilin A"],["unclassified/orfamide-b.yaml","orfamide B"]],"b":[["NCBITaxon%3A658629","Pseudomonas sessilinigenes"]]},{"id":"NCBITaxon:66431","l":"Streptomyces thioluteus","na":2,"nb":1,"a":[["alkaloids/sf2768.yaml","SF2768"],["polyketides/aureothin.yaml","aureothin"]],"b":[["NCBITaxon%3A66431","Streptomyces thioluteus"]]},{"id":"NCBITaxon:665007","l":"Streptomyces incarnatus","na":2,"nb":1,"a":[["amino_acids_and_peptides/incarnatapeptin-a.yaml","incarnatapeptin A"],["unclassified/incarnatapeptin-b.yaml","incarnatapeptin B"]],"b":[["NCBITaxon%3A665007","Streptomyces incarnatus"]]},{"id":"NCBITaxon:66866","l":"Streptomyces albofaciens","na":1,"nb":2,"a":[["polyketides/spiramycin.yaml","spiramycin"]],"b":[["NCBITaxon%3A66866","Streptomyces albofaciens"],["NCBITaxon%3A1306175","Streptomyces albofaciens JCM 4342"]]},{"id":"NCBITaxon:66867","l":"Streptomyces albovinaceus","na":2,"nb":1,"a":[["polyketides/borrelidin.yaml","borrelidin"],["terpenoids/isorenieratene.yaml","isorenieratene"]],"b":[["NCBITaxon%3A66867","Streptomyces albovinaceus"]]},{"id":"NCBITaxon:66881","l":"Streptomyces cremeus","na":2,"nb":1,"a":[["carbohydrates/tobramycin.yaml","tobramycin"],["unclassified/cremeomycin.yaml","cremeomycin"]],"b":[["NCBITaxon%3A66881","Streptomyces cremeus"]]},{"id":"NCBITaxon:671071","l":"Planktothrix paucivesiculata PCC 9631","na":2,"nb":1,"a":[["polyketides/luminaolide-b.yaml","luminaolide B"],["polyketides/luminaolide.yaml","luminaolide"]],"b":[["NCBITaxon%3A671071","Planktothrix paucivesiculata PCC 9631"]]},{"id":"NCBITaxon:67267","l":"Streptomyces alboflavus","na":2,"nb":1,"a":[["alkaloids/thienodolin.yaml","thienodolin"],["terpenoids/2-methylisoborneol.yaml","2-methylisoborneol"]],"b":[["NCBITaxon%3A67267","Streptomyces alboflavus"]]},{"id":"NCBITaxon:673","l":"Grimontia hollisae","na":1,"nb":2,"a":[["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]],"b":[["NCBITaxon%3A673","Grimontia hollisae"],["NCBITaxon%3A675812","Grimontia hollisae CIP 101886"]]},{"id":"NCBITaxon:67319","l":"Streptomyces lucensis","na":1,"nb":2,"a":[["polyketides/lucensomycin.yaml","lucensomycin"]],"b":[["NCBITaxon%3A67319","Streptomyces lucensis"],["NCBITaxon%3A1306176","Streptomyces lucensis JCM 4490"]]},{"id":"NCBITaxon:67329","l":"Streptomyces minoensis","na":1,"nb":2,"a":[["polyketides/dutomycin.yaml","dutomycin"]],"b":[["NCBITaxon%3A67329","Streptomyces minoensis"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:67332","l":"Streptomyces mutabilis","na":1,"nb":2,"a":[["polyketides/borrelidin.yaml","borrelidin"]],"b":[["NCBITaxon%3A67332","Streptomyces mutabilis"],["NCBITaxon%3A1028809","Streptomyces mutabilis 13676F"]]},{"id":"NCBITaxon:67333","l":"Streptomyces narbonensis","na":1,"nb":2,"a":[["carbohydrates/desosamine.yaml","desosamine"]],"b":[["NCBITaxon%3A332950","Enterococcus termitis"],["NCBITaxon%3A67333","Streptomyces narbonensis"]]},{"id":"NCBITaxon:67337","l":"Streptomyces noboritoensis","na":1,"nb":2,"a":[["polyketides/cinerubin-b.yaml","cinerubin B"]],"b":[["NCBITaxon%3A67326","Streptomyces melanogenes"],["NCBITaxon%3A67337","Streptomyces noboritoensis"]]},{"id":"NCBITaxon:67338","l":"Streptomyces olivoviridis","na":1,"nb":2,"a":[["amino_acids_and_peptides/thioviridamide.yaml","thioviridamide"]],"b":[["NCBITaxon%3A66869","Streptomyces atroolivaceus"],["NCBITaxon%3A67338","Streptomyces olivoviridis"]]},{"id":"NCBITaxon:67350","l":"Streptomyces pseudovenezuelae","na":1,"nb":2,"a":[["polyketides/setomimycin.yaml","setomimycin"]],"b":[["NCBITaxon%3A67350","Streptomyces pseudovenezuelae"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:67356","l":"Streptomyces resistomycificus","na":2,"nb":1,"a":[["polyketides/resistoflavine.yaml","resistoflavine"],["polyketides/resistomycin.yaml","resistomycin"]],"b":[["NCBITaxon%3A67356","Streptomyces resistomycificus"]]},{"id":"NCBITaxon:67375","l":"Streptomyces versipellis","na":1,"nb":2,"a":[["polyketides/versipelostatin.yaml","versipelostatin"]],"b":[["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A67375","Streptomyces versipellis"]]},{"id":"NCBITaxon:68170","l":"Lentzea aerocolonigenes","na":2,"nb":1,"a":[["alkaloids/rebeccamycin.yaml","rebeccamycin"],["alkaloids/staurosporine-2.yaml","staurosporine"]],"b":[["NCBITaxon%3A68170","Lentzea aerocolonigenes"]]},{"id":"NCBITaxon:68212","l":"Streptomyces graminofaciens","na":2,"nb":1,"a":[["alkaloids/rotihibin-a.yaml","rotihibin A"],["polyketides/fd-891.yaml","FD-891"]],"b":[["NCBITaxon%3A68212","Streptomyces graminofaciens"]]},{"id":"NCBITaxon:68229","l":"Streptomyces lomondensis","na":1,"nb":2,"a":[["alkaloids/lomofungin.yaml","lomofungin"]],"b":[["NCBITaxon%3A68229","Streptomyces lomondensis"],["NCBITaxon%3A1415783","Streptomyces lomondensis S015"]]},{"id":"NCBITaxon:68258","l":"Streptomyces pulveraceus","na":1,"nb":2,"a":[["polyketides/fostriecin.yaml","fostriecin"]],"b":[["NCBITaxon%3A67333","Streptomyces narbonensis"],["NCBITaxon%3A68258","Streptomyces pulveraceus"]]},{"id":"NCBITaxon:68260","l":"Streptomyces pyridomyceticus","na":1,"nb":2,"a":[["alkaloids/pyridomycin.yaml","pyridomycin"]],"b":[["NCBITaxon%3A68260","Streptomyces pyridomyceticus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:68264","l":"Streptomyces rishiriensis","na":2,"nb":1,"a":[["shikimates_and_phenylpropanoids/coumermycin-a1.yaml","coumermycin A1"],["unclassified/lactonamycin.yaml","lactonamycin"]],"b":[["NCBITaxon%3A68264","Streptomyces rishiriensis"]]},{"id":"NCBITaxon:68271","l":"Streptomyces steffisburgensis","na":1,"nb":2,"a":[["polyketides/steffimycin-d.yaml","steffimycin D"]],"b":[["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A68271","Streptomyces steffisburgensis"]]},{"id":"NCBITaxon:68276","l":"Streptomyces torulosus","na":2,"nb":1,"a":[["alkaloids/pyridomycin.yaml","pyridomycin"],["unclassified/clifednamide-a-2.yaml","clifednamide A"]],"b":[["NCBITaxon%3A68276","Streptomyces torulosus"]]},{"id":"NCBITaxon:68565","l":"Actinomadura hibisca","na":1,"nb":2,"a":[["polyketides/pradimicin-a.yaml","pradimicin A"]],"b":[["NCBITaxon%3A68565","Actinomadura hibisca"],["NCBITaxon%3A1220559","Actinomadura hibisca NBRC 15177"]]},{"id":"NCBITaxon:689687","l":"Streptomyces sp. SANK 60405","na":2,"nb":1,"a":[["carbohydrates/a-90289-a.yaml","A-90289 A"],["carbohydrates/a-90289-b.yaml","A-90289 B"]],"b":[["NCBITaxon%3A689687","Streptomyces sp. SANK 60405"]]},{"id":"NCBITaxon:693111","l":"uncultured bacterium psy1","na":2,"nb":1,"a":[["unclassified/irciniastatin-b.yaml","irciniastatin B"],["unclassified/psymberin.yaml","psymberin"]],"b":[["NCBITaxon%3A693111","uncultured bacterium psy1"]]},{"id":"NCBITaxon:70109","l":"Penicillium paxilli","na":2,"nb":1,"a":[["unclassified/21-22-diprenylated-paxilline.yaml","21,22-diprenylated paxilline"],["unclassified/paxilline.yaml","paxilline"]],"b":[["NCBITaxon%3A70109","Penicillium paxilli"]]},{"id":"NCBITaxon:70559","l":"Penicillium raciborskii","na":2,"nb":1,"a":[["unclassified/outovirin-a.yaml","outovirin A"],["unclassified/outovirin-c.yaml","outovirin C"]],"b":[["NCBITaxon%3A70559","Penicillium raciborskii"]]},{"id":"NCBITaxon:713604","l":"Amycolatopsis mediterranei S699","na":1,"nb":2,"a":[["polyketides/rifamycin-sv.yaml","rifamycin SV"]],"b":[["NCBITaxon%3A33910","Amycolatopsis mediterranei"],["NCBITaxon%3A713604","Amycolatopsis mediterranei S699"]]},{"id":"NCBITaxon:71944","l":"Hypholoma","na":1,"nb":2,"a":[["terpenoids/naematolin.yaml","naematolin"]],"b":[["NCBITaxon%3A2493788","Hypholoma australianum"],["NCBITaxon%3A945553","Hypholoma sublateritium FD-334 SS-4"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":2,"a":[["unclassified/lysocin-e.yaml","lysocin E"]],"b":[["NCBITaxon%3A72226","Lysobacter sp."],["NCBITaxon%3A1645665","Solilutibacter silvestris"]]},{"id":"NCBITaxon:73044","l":"Streptomyces seoulensis","na":2,"nb":1,"a":[["polyketides/ansaseomycin-a.yaml","ansaseomycin A"],["polyketides/ansaseomycin-b.yaml","ansaseomycin B"]],"b":[["NCBITaxon%3A73044","Streptomyces seoulensis"]]},{"id":"NCBITaxon:73839","l":"Epichloe festucae var. lolii","na":2,"nb":1,"a":[["alkaloids/ergovaline.yaml","ergovaline"],["alkaloids/peramine.yaml","peramine"]],"b":[["NCBITaxon%3A73839","Epichloe festucae var. lolii"]]},{"id":"NCBITaxon:76020","l":"Amycolatopsis alba","na":1,"nb":2,"a":[["polyketides/ansacarbamitocin.yaml","ansacarbamitocin"]],"b":[["NCBITaxon%3A76020","Amycolatopsis alba"],["NCBITaxon%3A1125972","Amycolatopsis alba DSM 44262"]]},{"id":"NCBITaxon:76335","l":"Nostoc sp. ATCC 53789","na":2,"nb":1,"a":[["amino_acids_and_peptides/nostocyclopeptide-a2.yaml","nostocyclopeptide A2"],["unclassified/cryptophycin-a.yaml","Cryptophycin A"]],"b":[["NCBITaxon%3A76335","Nostoc sp. ATCC 53789"]]},{"id":"NCBITaxon:764483","l":"Pseudomonas sp. 2663","na":2,"nb":1,"a":[["fatty_acids/fr901464-2.yaml","FR901464"],["fatty_acids/fr901464.yaml","FR901464"]],"b":[["NCBITaxon%3A764483","Pseudomonas sp. 2663"]]},{"id":"NCBITaxon:77044","l":"Rosellinia necatrix","na":2,"nb":1,"a":[["alkaloids/cytochalasin-e.yaml","cytochalasin E"],["terpenoids/sordaricin-b.yaml","sordaricin B"]],"b":[["NCBITaxon%3A77044","Rosellinia necatrix"]]},{"id":"NCBITaxon:78410","l":"Neonectria ditissima","na":2,"nb":1,"a":[["unclassified/colletochlorin-b.yaml","Colletochlorin B"],["unclassified/colletorin-b.yaml","Colletorin B"]],"b":[["NCBITaxon%3A78410","Neonectria ditissima"]]},{"id":"NCBITaxon:79329","l":"Chitinophaga pinensis","na":1,"nb":2,"a":[["polyketides/flexirubin.yaml","flexirubin"]],"b":[["NCBITaxon%3A79329","Chitinophaga pinensis"],["NCBITaxon%3A485918","Chitinophaga pinensis DSM 2588"]]},{"id":"NCBITaxon:798162","l":"Setophoma terrestris","na":2,"nb":1,"a":[["polyketides/endocrocin.yaml","endocrocin"],["polyketides/secalonic-acid-a.yaml","Secalonic acid A"]],"b":[["NCBITaxon%3A798162","Setophoma terrestris"]]},{"id":"NCBITaxon:80816","l":"Haliangium ochraceum","na":1,"nb":2,"a":[["polyketides/haliamide.yaml","haliamide"]],"b":[["NCBITaxon%3A80816","Haliangium ochraceum"],["NCBITaxon%3A502025","Haliangium ochraceum DSM 14365"]]},{"id":"NCBITaxon:83378","l":"Streptomyces ruber","na":1,"nb":2,"a":[["terpenoids/napyradiomycin.yaml","napyradiomycin"]],"b":[["NCBITaxon%3A83378","Streptomyces ruber"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:83380","l":"Streptomyces althioticus","na":1,"nb":2,"a":[["polyketides/desertomycin-g.yaml","desertomycin G"]],"b":[["NCBITaxon%3A83380","Streptomyces althioticus"],["NCBITaxon%3A3075534","Streptomyces althioticus subsp. attaecolombicae"]]},{"id":"NCBITaxon:83455","l":"Myxococcus stipitatus","na":1,"nb":2,"a":[["polyketides/phenalamide-a2.yaml","phenalamide A2"]],"b":[["NCBITaxon%3A83455","Myxococcus stipitatus"],["NCBITaxon%3A1278073","Myxococcus stipitatus DSM 14675"]]},{"id":"NCBITaxon:83456","l":"Myxococcus virescens","na":2,"nb":1,"a":[["alkaloids/bengamide.yaml","bengamide"],["unclassified/myxochromide-c.yaml","myxochromide C"]],"b":[["NCBITaxon%3A83456","Myxococcus virescens"]]},{"id":"NCBITaxon:83656","l":"Streptomyces tsukubensis","na":1,"nb":2,"a":[["fatty_acids/allylmalonyl-coa.yaml","allylmalonyl-CoA"]],"b":[["NCBITaxon%3A83656","Streptomyces tsukubensis"],["NCBITaxon%3A1114943","Streptomyces tsukubensis NRRL18488"]]},{"id":"NCBITaxon:83682","l":"Nonomuraea longicatena","na":2,"nb":1,"a":[["alkaloids/k-252a-2.yaml","K-252a"],["alkaloids/k-252a.yaml","K-252a"]],"b":[["NCBITaxon%3A83682","Nonomuraea longicatena"]]},{"id":"NCBITaxon:85336","l":"Rothia nasimurium","na":1,"nb":2,"a":[["unclassified/valinomycin-2.yaml","valinomycin"]],"b":[["NCBITaxon%3A85336","Rothia nasimurium"],["NCBITaxon%3A553203","Rothia nasimurium JCVIHMP032"]]},{"id":"NCBITaxon:866895","l":"Halobacillus halophilus DSM 2266","na":1,"nb":2,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A1570","Halobacillus halophilus"],["NCBITaxon%3A866895","Halobacillus halophilus DSM 2266"]]},{"id":"NCBITaxon:92743","l":"Streptomyces paromomycinus","na":2,"nb":1,"a":[["amino_acids_and_peptides/malonomycin.yaml","malonomycin"],["carbohydrates/paromomycin.yaml","paromomycin"]],"b":[["NCBITaxon%3A92743","Streptomyces paromomycinus"]]},{"id":"NCBITaxon:945030","l":"Digenea simplex","na":2,"nb":1,"a":[["amino_acids_and_peptides/kainic-acid.yaml","kainic acid"],["terpenoids/kainic-acid-lactone.yaml","Kainic acid lactone"]],"b":[["NCBITaxon%3A945030","Digenea simplex"]]},{"id":"NCBITaxon:945052","l":"Streptomyces heilongjiangensis","na":1,"nb":2,"a":[["polyketides/borrelidin.yaml","borrelidin"]],"b":[["NCBITaxon%3A211113","Kibdelosporangium philippinense"],["NCBITaxon%3A945052","Streptomyces heilongjiangensis"]]},{"id":"NCBITaxon:948311","l":"Fusarium proliferatum","na":1,"nb":2,"a":[["polyketides/prolipyrone-b.yaml","prolipyrone B"]],"b":[["NCBITaxon%3A948311","Fusarium proliferatum"],["NCBITaxon%3A1227346","Fusarium proliferatum ET1"]]},{"id":"NCBITaxon:964","l":"Herbaspirillum seropedicae","na":1,"nb":2,"a":[["amino_acids_and_peptides/serobactin-c.yaml","serobactin C"]],"b":[["NCBITaxon%3A964","Herbaspirillum seropedicae"],["NCBITaxon%3A757424","Herbaspirillum seropedicae SmR1"]]},{"id":"NCBITaxon:977880","l":"Cupriavidus taiwanensis LMG 19424","na":1,"nb":2,"a":[["amino_acids_and_peptides/taiwachelin.yaml","taiwachelin"]],"b":[["NCBITaxon%3A164546","Cupriavidus taiwanensis"],["NCBITaxon%3A977880","Cupriavidus taiwanensis LMG 19424"]]},{"id":"NCBITaxon:997","l":"Eisenibacter elegans","na":1,"nb":2,"a":[["polyketides/flexirubin.yaml","flexirubin"]],"b":[["NCBITaxon%3A997","Eisenibacter elegans"],["NCBITaxon%3A1121902","Eisenibacter elegans DSM 3317"]]},{"id":"NCBITaxon:999542","l":"Salinispora pacifica DSM 45543 = CNS-863","na":1,"nb":2,"a":[["unclassified/thiolactomycin.yaml","thiolactomycin"]],"b":[["NCBITaxon%3A351187","Salinispora pacifica"],["NCBITaxon%3A999542","Salinispora pacifica DSM 45543 = CNS-863"]]},{"id":"NCBITaxon:999550","l":"Pseudophaeobacter arcticus DSM 23566","na":1,"nb":2,"a":[["amino_acids_and_peptides/phaeornamide.yaml","phaeornamide"]],"b":[["NCBITaxon%3A385492","Pseudophaeobacter arcticus"],["NCBITaxon%3A999550","Pseudophaeobacter arcticus DSM 23566"]]},{"id":"NCBITaxon:1002505","l":"Pseudanabaena sp. dqh15","na":1,"nb":1,"a":[["alkaloids/2-methylisoborneol-2.yaml","2-methylisoborneol"]],"b":[["NCBITaxon%3A1002505","Pseudanabaena sp. dqh15"]]},{"id":"NCBITaxon:1010692","l":"Bacillus sp. NK2003","na":1,"nb":1,"a":[["amino_acids_and_peptides/koranimine.yaml","koranimine"]],"b":[["NCBITaxon%3A1010692","Bacillus sp. NK2003"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":1,"nb":1,"a":[["unclassified/rhodochelin.yaml","rhodochelin"]],"b":[["NCBITaxon%3A101510","Rhodococcus jostii RHA1"]]},{"id":"NCBITaxon:1034809","l":"Staphylococcus lugdunensis N920143","na":1,"nb":1,"a":[["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]],"b":[["NCBITaxon%3A1034809","Staphylococcus lugdunensis N920143"]]},{"id":"NCBITaxon:1035052","l":"Streptomyces sp. SCSIO 01127","na":1,"nb":1,"a":[["polyketides/lobophorin-b.yaml","lobophorin B"]],"b":[["NCBITaxon%3A1035052","Streptomyces sp. SCSIO 01127"]]},{"id":"NCBITaxon:1036673","l":"Paenibacillus mucilaginosus KNP414","na":1,"nb":1,"a":[["amino_acids_and_peptides/bacillopaline.yaml","bacillopaline"]],"b":[["NCBITaxon%3A1036673","Paenibacillus mucilaginosus KNP414"]]},{"id":"NCBITaxon:1036732","l":"Sarocladium zeae","na":1,"nb":1,"a":[["polyketides/trans-resorcylide.yaml","trans-resorcylide"]],"b":[["NCBITaxon%3A1036732","Sarocladium zeae"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. PCC 7120 = FACHB-418","na":1,"nb":1,"a":[["alkaloids/schizokinen.yaml","schizokinen"]],"b":[["NCBITaxon%3A103690","Nostoc sp. PCC 7120 = FACHB-418"]]},{"id":"NCBITaxon:103733","l":"Saccharothrix syringae","na":1,"nb":1,"a":[["polyketides/nocamycin.yaml","nocamycin"]],"b":[["NCBITaxon%3A103733","Saccharothrix syringae"]]},{"id":"NCBITaxon:104268","l":"Tenacibaculum mesophilum","na":1,"nb":1,"a":[["fatty_acids/bisucaberin-b.yaml","bisucaberin B"]],"b":[["NCBITaxon%3A104268","Tenacibaculum mesophilum"]]},{"id":"NCBITaxon:1044","l":"Erythrobacter longus","na":1,"nb":1,"a":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]],"b":[["NCBITaxon%3A1044","Erythrobacter longus"]]},{"id":"NCBITaxon:1047164","l":"uncultured bacterium AB1650","na":1,"nb":1,"a":[["alkaloids/be-54017.yaml","BE-54017"]],"b":[["NCBITaxon%3A1047164","uncultured bacterium AB1650"]]},{"id":"NCBITaxon:1052105","l":"Purpureocillium","na":1,"nb":1,"a":[["polyketides/sirolimus.yaml","sirolimus"]],"b":[["NCBITaxon%3A33203","Purpureocillium lilacinum"]]},{"id":"NCBITaxon:1055352","l":"Streptomyces sp. W007","na":1,"nb":1,"a":[["polyketides/kiamycin.yaml","kiamycin"]],"b":[["NCBITaxon%3A1055352","Streptomyces sp. W007"]]},{"id":"NCBITaxon:1068630","l":"Streptomyces sp. CS40","na":1,"nb":1,"a":[["alkaloids/collismycin-a.yaml","collismycin A"]],"b":[["NCBITaxon%3A1068630","Streptomyces sp. CS40"]]},{"id":"NCBITaxon:1073998","l":"Streptomyces sp. ATCC 55365","na":1,"nb":1,"a":[["amino_acids_and_peptides/ge37468.yaml","GE37468"]],"b":[["NCBITaxon%3A1073998","Streptomyces sp. ATCC 55365"]]},{"id":"NCBITaxon:1074049","l":"Candidatus Burkholderia crenata","na":1,"nb":1,"a":[["unclassified/fr900359.yaml","FR900359"]],"b":[["NCBITaxon%3A1074049","Candidatus Burkholderia crenata"]]},{"id":"NCBITaxon:1074250","l":"Actinoalloteichus sp. WH1-2216-6","na":1,"nb":1,"a":[["alkaloids/caerulomycin-a.yaml","caerulomycin A"]],"b":[["NCBITaxon%3A1074250","Actinoalloteichus sp. WH1-2216-6"]]},{"id":"NCBITaxon:1077944","l":"Streptomyces muensis","na":1,"nb":1,"a":[["unclassified/griselimycin.yaml","griselimycin"]],"b":[["NCBITaxon%3A1077944","Streptomyces muensis"]]},{"id":"NCBITaxon:1081091","l":"Amycolatopsis balhimycina DSM 5908","na":1,"nb":1,"a":[["amino_acids_and_peptides/balhimycin.yaml","balhimycin"]],"b":[["NCBITaxon%3A1081091","Amycolatopsis balhimycina DSM 5908"]]},{"id":"NCBITaxon:1088888","l":"Vibrio campbellii DS40M4","na":1,"nb":1,"a":[["amino_acids_and_peptides/vanchrobactin.yaml","vanchrobactin"]],"b":[["NCBITaxon%3A1088888","Vibrio campbellii DS40M4"]]},{"id":"NCBITaxon:1091567","l":"uncultured bacterium CSL12","na":1,"nb":1,"a":[["unclassified/n-tetradecanoyl-tyrosine.yaml","N-tetradecanoyl tyrosine"]],"b":[["NCBITaxon%3A1091567","uncultured bacterium CSL12"]]},{"id":"NCBITaxon:1091571","l":"uncultured bacterium CSLC2","na":1,"nb":1,"a":[["unclassified/n-tetradecanoyl-tyrosine.yaml","N-tetradecanoyl tyrosine"]],"b":[["NCBITaxon%3A1091571","uncultured bacterium CSLC2"]]},{"id":"NCBITaxon:110542","l":"Hypoxylon rubiginosum","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"]],"b":[["NCBITaxon%3A110542","Hypoxylon rubiginosum"]]},{"id":"NCBITaxon:1108595","l":"Chromobacterium vaccinii","na":1,"nb":1,"a":[["unclassified/fr900359-2.yaml","FR900359"]],"b":[["NCBITaxon%3A1108595","Chromobacterium vaccinii"]]},{"id":"NCBITaxon:1109705","l":"Streptomyces sp. BC16019","na":1,"nb":1,"a":[["amino_acids_and_peptides/bottromycin-a2-2.yaml","bottromycin A2"]],"b":[["NCBITaxon%3A1109705","Streptomyces sp. BC16019"]]},{"id":"NCBITaxon:1112731","l":"Streptomyces sp. TK08046","na":1,"nb":1,"a":[["polyketides/saprolmycin-e.yaml","saprolmycin E"]],"b":[["NCBITaxon%3A1112731","Streptomyces sp. TK08046"]]},{"id":"NCBITaxon:1113698","l":"Brevundimonas sp. NBRC 101024","na":1,"nb":1,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A1113698","Brevundimonas sp. NBRC 101024"]]},{"id":"NCBITaxon:1114959","l":"Saccharomonospora azurea SZMC 14600","na":1,"nb":1,"a":[["polyketides/primycin.yaml","primycin"]],"b":[["NCBITaxon%3A1114959","Saccharomonospora azurea SZMC 14600"]]},{"id":"NCBITaxon:111781","l":"[Leptolyngbya] sp. PCC 7376","na":1,"nb":1,"a":[["alkaloids/schizokinen.yaml","schizokinen"]],"b":[["NCBITaxon%3A111781","[Leptolyngbya] sp. PCC 7376"]]},{"id":"NCBITaxon:112177","l":"Arthrinium","na":1,"nb":1,"a":[["terpenoids/terpestacin.yaml","terpestacin"]],"b":[["NCBITaxon%3A335850","Arthrinium puccinioides"]]},{"id":"NCBITaxon:1131935","l":"Paenibacillus dendritiformis C454","na":1,"nb":1,"a":[["amino_acids_and_peptides/paeninodin.yaml","paeninodin"]],"b":[["NCBITaxon%3A1131935","Paenibacillus dendritiformis C454"]]},{"id":"NCBITaxon:1132638","l":"Penicillium kewense","na":1,"nb":1,"a":[["unclassified/4-oxomacrophorin-a.yaml","4-oxomacrophorin A"]],"b":[["NCBITaxon%3A1132638","Penicillium kewense"]]},{"id":"NCBITaxon:1137250","l":"Salinispora arenicola CNB527","na":1,"nb":1,"a":[["polyketides/arenimycin-a.yaml","arenimycin A"]],"b":[["NCBITaxon%3A1137250","Salinispora arenicola CNB527"]]},{"id":"NCBITaxon:1137255","l":"Salinispora arenicola CNT005","na":1,"nb":1,"a":[["unclassified/retimycin-a.yaml","retimycin A"]],"b":[["NCBITaxon%3A1137255","Salinispora arenicola CNT005"]]},{"id":"NCBITaxon:114231","l":"Nigrospora sphaerica","na":1,"nb":1,"a":[["terpenoids/aphidicolin.yaml","aphidicolin"]],"b":[["NCBITaxon%3A114231","Nigrospora sphaerica"]]},{"id":"NCBITaxon:1144306","l":"Rhizobium sp. AP16","na":1,"nb":1,"a":[["amino_acids_and_peptides/syringolin-a-2.yaml","syringolin A"]],"b":[["NCBITaxon%3A1144306","Rhizobium sp. AP16"]]},{"id":"NCBITaxon:1148509","l":"Pseudomonas prosekii","na":1,"nb":1,"a":[["unclassified/prosekin.yaml","prosekin"]],"b":[["NCBITaxon%3A1148509","Pseudomonas prosekii"]]},{"id":"NCBITaxon:1155718","l":"Streptomyces sp. MspMP-M5","na":1,"nb":1,"a":[["unclassified/microtermolide-a.yaml","microtermolide A"]],"b":[["NCBITaxon%3A1155718","Streptomyces sp. MspMP-M5"]]},{"id":"NCBITaxon:1156913","l":"Amycolatopsis orientalis HCCB10007","na":1,"nb":1,"a":[["amino_acids_and_peptides/vancomycin.yaml","vancomycin"]],"b":[["NCBITaxon%3A1156913","Amycolatopsis orientalis HCCB10007"]]},{"id":"NCBITaxon:115828","l":"Streptomyces maritimus","na":1,"nb":1,"a":[["terpenoids/enterocin.yaml","enterocin"]],"b":[["NCBITaxon%3A115828","Streptomyces maritimus"]]},{"id":"NCBITaxon:115983","l":"Phyllosticta ampelicida","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/phenguignardic-acid.yaml","phenguignardic acid"]],"b":[["NCBITaxon%3A115983","Phyllosticta ampelicida"]]},{"id":"NCBITaxon:1169155","l":"Streptomyces sp. CNT302","na":1,"nb":1,"a":[["polyketides/cosmomycin-c.yaml","cosmomycin C"]],"b":[["NCBITaxon%3A1169155","Streptomyces sp. CNT302"]]},{"id":"NCBITaxon:116978","l":"Penicillium thiersii","na":1,"nb":1,"a":[["unclassified/paxilline.yaml","paxilline"]],"b":[["NCBITaxon%3A116978","Penicillium thiersii"]]},{"id":"NCBITaxon:1172567","l":"Streptomyces globisporus C-1027","na":1,"nb":1,"a":[["polyketides/c-1027-chromophore.yaml","C-1027 chromophore"]],"b":[["NCBITaxon%3A1172567","Streptomyces globisporus C-1027"]]},{"id":"NCBITaxon:1182637","l":"Streptomyces melanovinaceus","na":1,"nb":1,"a":[["alkaloids/quinocarcin.yaml","quinocarcin"]],"b":[["NCBITaxon%3A1182637","Streptomyces melanovinaceus"]]},{"id":"NCBITaxon:1182970","l":"Micromonospora okii","na":1,"nb":1,"a":[["polyketides/kosinostatin.yaml","kosinostatin"]],"b":[["NCBITaxon%3A1182970","Micromonospora okii"]]},{"id":"NCBITaxon:1194094","l":"Streptomyces sp. SCSIO 02999","na":1,"nb":1,"a":[["alkaloids/xiamycin-a.yaml","xiamycin A"]],"b":[["NCBITaxon%3A1194094","Streptomyces sp. SCSIO 02999"]]},{"id":"NCBITaxon:1196081","l":"Talaromyces amestolkiae","na":1,"nb":1,"a":[["unclassified/chrodrimanin-b.yaml","chrodrimanin B"]],"b":[["NCBITaxon%3A1196081","Talaromyces amestolkiae"]]},{"id":"NCBITaxon:1196323","l":"Paenibacillus sp. OSY-SE","na":1,"nb":1,"a":[["unclassified/paenibacterin.yaml","paenibacterin"]],"b":[["NCBITaxon%3A1196323","Paenibacillus sp. OSY-SE"]]},{"id":"NCBITaxon:1200302","l":"Photobacterium damselae subsp. piscicida DI21","na":1,"nb":1,"a":[["alkaloids/piscibactin.yaml","piscibactin"]],"b":[["NCBITaxon%3A1200302","Photobacterium damselae subsp. piscicida DI21"]]},{"id":"NCBITaxon:1211968","l":"Streptomyces sp. YIM 56141","na":1,"nb":1,"a":[["alkaloids/cycloheximide.yaml","cycloheximide"]],"b":[["NCBITaxon%3A1211968","Streptomyces sp. YIM 56141"]]},{"id":"NCBITaxon:121624","l":"Phyllosticta capitalensis","na":1,"nb":1,"a":[["unclassified/macrophorin-a.yaml","macrophorin A"]],"b":[["NCBITaxon%3A121624","Phyllosticta capitalensis"]]},{"id":"NCBITaxon:1218706","l":"Streptomyces sp. NEAU-Z4","na":1,"nb":1,"a":[["alkaloids/streptazone-e.yaml","streptazone E"]],"b":[["NCBITaxon%3A1218706","Streptomyces sp. NEAU-Z4"]]},{"id":"NCBITaxon:1220201","l":"Aspergillus creber","na":1,"nb":1,"a":[["polyketides/asperlactone.yaml","asperlactone"]],"b":[["NCBITaxon%3A1220201","Aspergillus creber"]]},{"id":"NCBITaxon:122368","l":"Cercospora beticola","na":1,"nb":1,"a":[["polyketides/cercosporin.yaml","cercosporin"]],"b":[["NCBITaxon%3A122368","Cercospora beticola"]]},{"id":"NCBITaxon:1225197","l":"Streptococcus mutans B04Sm5","na":1,"nb":1,"a":[["unclassified/mutanocyclin.yaml","mutanocyclin"]],"b":[["NCBITaxon%3A1225197","Streptococcus mutans B04Sm5"]]},{"id":"NCBITaxon:1231908","l":"Pseudomonas sp. Q71576","na":1,"nb":1,"a":[["unclassified/spiruchostatin-a.yaml","spiruchostatin A"]],"b":[["NCBITaxon%3A1231908","Pseudomonas sp. Q71576"]]},{"id":"NCBITaxon:1234059","l":"Streptomyces sp. WMMB 272","na":1,"nb":1,"a":[["amino_acids_and_peptides/bottromycin-d.yaml","bottromycin D"]],"b":[["NCBITaxon%3A1234059","Streptomyces sp. WMMB 272"]]},{"id":"NCBITaxon:1239282","l":"Dactylosporangium sp. SC14051","na":1,"nb":1,"a":[["polyketides/dactylocycline-a.yaml","dactylocycline A"]],"b":[["NCBITaxon%3A1239282","Dactylosporangium sp. SC14051"]]},{"id":"NCBITaxon:1243767","l":"Hypoxylon pulicicidum","na":1,"nb":1,"a":[["unclassified/nodulisporic-acid-f.yaml","nodulisporic acid F"]],"b":[["NCBITaxon%3A1243767","Hypoxylon pulicicidum"]]},{"id":"NCBITaxon:124418","l":"Tolypocladium album","na":1,"nb":1,"a":[["unclassified/terpendole-e.yaml","terpendole E"]],"b":[["NCBITaxon%3A124418","Tolypocladium album"]]},{"id":"NCBITaxon:1245512","l":"Streptomyces sp. XZQH13","na":1,"nb":1,"a":[["polyketides/mycotrienin-i.yaml","mycotrienin I"]],"b":[["NCBITaxon%3A1245512","Streptomyces sp. XZQH13"]]},{"id":"NCBITaxon:1254432","l":"Sorangium cellulosum So0157-2","na":1,"nb":1,"a":[["unclassified/epothilone-b.yaml","epothilone B"]],"b":[["NCBITaxon%3A1254432","Sorangium cellulosum So0157-2"]]},{"id":"NCBITaxon:1263194","l":"Penicillium spathulatum","na":1,"nb":1,"a":[["unclassified/asperphenamate.yaml","asperphenamate"]],"b":[["NCBITaxon%3A1263194","Penicillium spathulatum"]]},{"id":"NCBITaxon:1265536","l":"Streptomyces sp. ML694-90F3","na":1,"nb":1,"a":[["unclassified/incednine.yaml","incednine"]],"b":[["NCBITaxon%3A1265536","Streptomyces sp. ML694-90F3"]]},{"id":"NCBITaxon:1266744","l":"Talaromyces purpureogenus","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"]],"b":[["NCBITaxon%3A1266744","Talaromyces purpureogenus"]]},{"id":"NCBITaxon:1283841","l":"Stachybotrys chlorohalonatus IBT 40285","na":1,"nb":1,"a":[["alkaloids/isoindolin-1-one.yaml","isoindolin-1-one"]],"b":[["NCBITaxon%3A1283841","Stachybotrys chlorohalonatus IBT 40285"]]},{"id":"NCBITaxon:128434","l":"Talaromyces diversus","na":1,"nb":1,"a":[["polyketides/patulin.yaml","patulin"]],"b":[["NCBITaxon%3A128434","Talaromyces diversus"]]},{"id":"NCBITaxon:1286194","l":"Streptomyces sp. NRRL F-4415","na":1,"nb":1,"a":[["amino_acids_and_peptides/gobichelin-a.yaml","gobichelin A"]],"b":[["NCBITaxon%3A1286194","Streptomyces sp. NRRL F-4415"]]},{"id":"NCBITaxon:1287682","l":"Aspergillus felis","na":1,"nb":1,"a":[["unclassified/sartorypyrone-a.yaml","sartorypyrone A"]],"b":[["NCBITaxon%3A1287682","Aspergillus felis"]]},{"id":"NCBITaxon:1288082","l":"Streptomyces sp. CNH287","na":1,"nb":1,"a":[["alkaloids/chlorizidine-a.yaml","chlorizidine A"]],"b":[["NCBITaxon%3A1288082","Streptomyces sp. CNH287"]]},{"id":"NCBITaxon:1288362","l":"Actinoplanes sp. ATCC 53533","na":1,"nb":1,"a":[["amino_acids_and_peptides/uk-68-597.yaml","UK-68,597"]],"b":[["NCBITaxon%3A1288362","Actinoplanes sp. ATCC 53533"]]},{"id":"NCBITaxon:1296353","l":"Oscillatoria amoena CCAP 1459/39","na":1,"nb":1,"a":[["fatty_acids/1-heptadecene.yaml","1-heptadecene"]],"b":[["NCBITaxon%3A1296353","Oscillatoria amoena CCAP 1459/39"]]},{"id":"NCBITaxon:1297573","l":"Cyanobium sp. LEGE 06113","na":1,"nb":1,"a":[["polyketides/hierridin-b.yaml","hierridin B"]],"b":[["NCBITaxon%3A1297573","Cyanobium sp. LEGE 06113"]]},{"id":"NCBITaxon:1314803","l":"Dendrothele bispora","na":1,"nb":1,"a":[["amino_acids_and_peptides/dendrothelin-a.yaml","dendrothelin A"]],"b":[["NCBITaxon%3A1314803","Dendrothele bispora"]]},{"id":"NCBITaxon:1321967","l":"Streptomyces sp. MJ635-86F5","na":1,"nb":1,"a":[["unclassified/cremimycin.yaml","cremimycin"]],"b":[["NCBITaxon%3A1321967","Streptomyces sp. MJ635-86F5"]]},{"id":"NCBITaxon:1325723","l":"Fusarium neocosmosporiellum","na":1,"nb":1,"a":[["amino_acids_and_peptides/cyclosporin-c.yaml","cyclosporin C"]],"b":[["NCBITaxon%3A1325723","Fusarium neocosmosporiellum"]]},{"id":"NCBITaxon:1341132","l":"Aspergillus welwitschiae","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"]],"b":[["NCBITaxon%3A1341132","Aspergillus welwitschiae"]]},{"id":"NCBITaxon:1352936","l":"Streptomyces roseochromogenus subsp. oscitans DS 12.976","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/clorobiocin.yaml","clorobiocin"]],"b":[["NCBITaxon%3A1352936","Streptomyces roseochromogenus subsp. oscitans DS 12.976"]]},{"id":"NCBITaxon:1353533","l":"Pseudoalteromonas luteoviolacea 2ta16","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/pentabromopseudilin.yaml","pentabromopseudilin"]],"b":[["NCBITaxon%3A1353533","Pseudoalteromonas luteoviolacea 2ta16"]]},{"id":"NCBITaxon:13563","l":"Heterobasidion annosum","na":1,"nb":1,"a":[["polyketides/patulin.yaml","patulin"]],"b":[["NCBITaxon%3A13563","Heterobasidion annosum"]]},{"id":"NCBITaxon:138280","l":"Aspergillus petrakii","na":1,"nb":1,"a":[["polyketides/patulin.yaml","patulin"]],"b":[["NCBITaxon%3A138280","Aspergillus petrakii"]]},{"id":"NCBITaxon:1388766","l":"Aspergillus ruber CBS 135680","na":1,"nb":1,"a":[["polyketides/flavoglaucin.yaml","flavoglaucin"]],"b":[["NCBITaxon%3A1388766","Aspergillus ruber CBS 135680"]]},{"id":"NCBITaxon:139077","l":"Mucidula mucida","na":1,"nb":1,"a":[["polyketides/mucidin.yaml","mucidin"]],"b":[["NCBITaxon%3A139077","Mucidula mucida"]]},{"id":"NCBITaxon:139090","l":"Albatrellus ovinus","na":1,"nb":1,"a":[["unclassified/ilicicolin-b.yaml","ilicicolin B"]],"b":[["NCBITaxon%3A139090","Albatrellus ovinus"]]},{"id":"NCBITaxon:1392253","l":"Talaromyces aculeatus ATCC 10409","na":1,"nb":1,"a":[["polyketides/doxorubicin.yaml","doxorubicin"]],"b":[["NCBITaxon%3A1392253","Talaromyces aculeatus ATCC 10409"]]},{"id":"NCBITaxon:1405805","l":"Aspergillus pseudoglaucus","na":1,"nb":1,"a":[["polyketides/flavoglaucin.yaml","flavoglaucin"]],"b":[["NCBITaxon%3A1405805","Aspergillus pseudoglaucus"]]},{"id":"NCBITaxon:1408161","l":"Plenodomus tracheiphilus IPT5","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/mellein.yaml","(-)-Mellein"]],"b":[["NCBITaxon%3A1408161","Plenodomus tracheiphilus IPT5"]]},{"id":"NCBITaxon:1408450","l":"Methylobacter tundripaludum 21/22","na":1,"nb":1,"a":[["unclassified/tundrenone.yaml","tundrenone"]],"b":[["NCBITaxon%3A1408450","Methylobacter tundripaludum 21/22"]]},{"id":"NCBITaxon:1414447","l":"Streptomyces sp. MK498-98F14","na":1,"nb":1,"a":[["unclassified/polyoxypeptin.yaml","polyoxypeptin"]],"b":[["NCBITaxon%3A1414447","Streptomyces sp. MK498-98F14"]]},{"id":"NCBITaxon:1429103","l":"Streptomyces sp. RM-5-8","na":1,"nb":1,"a":[["unclassified/5-isoprenylindole-3-carboxylate-d-glycosyl-ester.yaml","5-isoprenylindole-3-carboxylate β-D-glycosyl ester"]],"b":[["NCBITaxon%3A1429103","Streptomyces sp. RM-5-8"]]},{"id":"NCBITaxon:1434086","l":"Jahnella sp. MSr9139","na":1,"nb":1,"a":[["amino_acids_and_peptides/microsclerodermin.yaml","microsclerodermin"]],"b":[["NCBITaxon%3A1434086","Jahnella sp. MSr9139"]]},{"id":"NCBITaxon:143450","l":"Mycosphaerella arachidis","na":1,"nb":1,"a":[["polyketides/dothistromin.yaml","dothistromin"]],"b":[["NCBITaxon%3A143450","Mycosphaerella arachidis"]]},{"id":"NCBITaxon:1437473","l":"Pseudoalteromonas sp. PS5","na":1,"nb":1,"a":[["alkaloids/2-3-4-5-tetrabromopyrrole.yaml","2,3,4,5-tetrabromopyrrole"]],"b":[["NCBITaxon%3A1437473","Pseudoalteromonas sp. PS5"]]},{"id":"NCBITaxon:1463851","l":"Streptomyces sp. NRRL F-4474","na":1,"nb":1,"a":[["alkaloids/jbir-126.yaml","JBIR-126"]],"b":[["NCBITaxon%3A1463851","Streptomyces sp. NRRL F-4474"]]},{"id":"NCBITaxon:1463861","l":"Streptomyces sp. NRRL F-525","na":1,"nb":1,"a":[["unclassified/phosphonoacetic-acid.yaml","phosphonoacetic acid"]],"b":[["NCBITaxon%3A1463861","Streptomyces sp. NRRL F-525"]]},{"id":"NCBITaxon:1463881","l":"Streptomyces sp. NRRL S-118","na":1,"nb":1,"a":[["amino_acids_and_peptides/lagmysin.yaml","lagmysin"]],"b":[["NCBITaxon%3A1463881","Streptomyces sp. NRRL S-118"]]},{"id":"NCBITaxon:1463899","l":"Streptomyces sp. NRRL S-325","na":1,"nb":1,"a":[["amino_acids_and_peptides/detoxin-s1.yaml","detoxin S1"]],"b":[["NCBITaxon%3A1463899","Streptomyces sp. NRRL S-325"]]},{"id":"NCBITaxon:1463904","l":"Streptomyces sp. NRRL S-378","na":1,"nb":1,"a":[["polyketides/komodoquinone-b.yaml","komodoquinone B"]],"b":[["NCBITaxon%3A1463904","Streptomyces sp. NRRL S-378"]]},{"id":"NCBITaxon:1463920","l":"Streptomyces sp. NRRL S-87","na":1,"nb":1,"a":[["amino_acids_and_peptides/thioholgamide-a.yaml","thioholgamide A"]],"b":[["NCBITaxon%3A1463920","Streptomyces sp. NRRL S-87"]]},{"id":"NCBITaxon:146537","l":"Streptomyces azureus","na":1,"nb":1,"a":[["amino_acids_and_peptides/thiostrepton.yaml","thiostrepton"]],"b":[["NCBITaxon%3A146537","Streptomyces azureus"]]},{"id":"NCBITaxon:1469403","l":"Streptomyces sp. ZJ306","na":1,"nb":1,"a":[["unclassified/ikarugamycin.yaml","ikarugamycin"]],"b":[["NCBITaxon%3A1469403","Streptomyces sp. ZJ306"]]},{"id":"NCBITaxon:1470541","l":"Aspergillus neoniveus","na":1,"nb":1,"a":[["alkaloids/aspochalasin-c.yaml","aspochalasin C"]],"b":[["NCBITaxon%3A1470541","Aspergillus neoniveus"]]},{"id":"NCBITaxon:1470557","l":"Streptomyces sp. Tu 6176","na":1,"nb":1,"a":[["polyketides/nataxazole.yaml","nataxazole"]],"b":[["NCBITaxon%3A1470557","Streptomyces sp. Tu 6176"]]},{"id":"NCBITaxon:1484062","l":"Streptomyces sp. YN86","na":1,"nb":1,"a":[["carbohydrates/paulomycin.yaml","paulomycin"]],"b":[["NCBITaxon%3A1484062","Streptomyces sp. YN86"]]},{"id":"NCBITaxon:1487711","l":"Streptomyces sp. NTK 937","na":1,"nb":1,"a":[["unclassified/caboxamycin.yaml","caboxamycin"]],"b":[["NCBITaxon%3A1487711","Streptomyces sp. NTK 937"]]},{"id":"NCBITaxon:1488357","l":"Streptomyces sp. MBT28","na":1,"nb":1,"a":[["alkaloids/7-prenylisatin.yaml","7-prenylisatin"]],"b":[["NCBITaxon%3A1488357","Streptomyces sp. MBT28"]]},{"id":"NCBITaxon:150374","l":"Escovopsis weberi","na":1,"nb":1,"a":[["unclassified/melinacidin-iv.yaml","melinacidin IV"]],"b":[["NCBITaxon%3A150374","Escovopsis weberi"]]},{"id":"NCBITaxon:1509516","l":"Streptomyces sp. NRRL WC-3908","na":1,"nb":1,"a":[["amino_acids_and_peptides/cyclothiazomycin-c.yaml","cyclothiazomycin C"]],"b":[["NCBITaxon%3A1509516","Streptomyces sp. NRRL WC-3908"]]},{"id":"NCBITaxon:1535768","l":"Streptomyces lunaelactis","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/ferroverdin.yaml","ferroverdin"]],"b":[["NCBITaxon%3A1535768","Streptomyces lunaelactis"]]},{"id":"NCBITaxon:155900","l":"uncultured organism","na":1,"nb":1,"a":[["alkaloids/trabectedin.yaml","trabectedin"]],"b":[["NCBITaxon%3A155900","uncultured organism"]]},{"id":"NCBITaxon:1562372","l":"Nonomuraea sp. MJM5123","na":1,"nb":1,"a":[["unclassified/ecumicin.yaml","ecumicin"]],"b":[["NCBITaxon%3A1562372","Nonomuraea sp. MJM5123"]]},{"id":"NCBITaxon:1563222","l":"Citrobacter pasteurii","na":1,"nb":1,"a":[["amino_acids_and_peptides/citrocin.yaml","citrocin"]],"b":[["NCBITaxon%3A1563222","Citrobacter pasteurii"]]},{"id":"NCBITaxon:1570104","l":"Nostoc sp. CCAP 1453/38","na":1,"nb":1,"a":[["alkaloids/nocuolin-a.yaml","Nocuolin A"]],"b":[["NCBITaxon%3A1570104","Nostoc sp. CCAP 1453/38"]]},{"id":"NCBITaxon:1571532","l":"Streptomyces sp. CNQ431","na":1,"nb":1,"a":[["unclassified/splenocin-c.yaml","splenocin C"]],"b":[["NCBITaxon%3A1571532","Streptomyces sp. CNQ431"]]},{"id":"NCBITaxon:1576542","l":"Thelonectria olida","na":1,"nb":1,"a":[["polyketides/patulin.yaml","patulin"]],"b":[["NCBITaxon%3A1576542","Thelonectria olida"]]},{"id":"NCBITaxon:1589764","l":"Acrocalymma vagum","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/alternariol.yaml","alternariol"]],"b":[["NCBITaxon%3A1589764","Acrocalymma vagum"]]},{"id":"NCBITaxon:1592326","l":"Actinobacteria bacterium OK006","na":1,"nb":1,"a":[["amino_acids_and_peptides/pepticinnamin-e.yaml","pepticinnamin E"]],"b":[["NCBITaxon%3A1592326","Actinobacteria bacterium OK006"]]},{"id":"NCBITaxon:1593482","l":"Massilia sp. YMA4","na":1,"nb":1,"a":[["unclassified/empedopeptin.yaml","empedopeptin"]],"b":[["NCBITaxon%3A1593482","Massilia sp. YMA4"]]},{"id":"NCBITaxon:160621","l":"Lingulaulax polyedra","na":1,"nb":1,"a":[["alkaloids/saxitoxin.yaml","saxitoxin"]],"b":[["NCBITaxon%3A160621","Lingulaulax polyedra"]]},{"id":"NCBITaxon:161354","l":"Planomonospora alba","na":1,"nb":1,"a":[["amino_acids_and_peptides/planosporicin.yaml","planosporicin"]],"b":[["NCBITaxon%3A161354","Planomonospora alba"]]},{"id":"NCBITaxon:1628","l":"Lactobacillus vermiforme","na":1,"nb":1,"a":[["carbohydrates/toyocamycin.yaml","toyocamycin"]],"b":[["NCBITaxon%3A1628","Lactobacillus vermiforme"]]},{"id":"NCBITaxon:1635094","l":"Albophoma","na":1,"nb":1,"a":[["unclassified/sesquicillin-a.yaml","sesquicillin A"]],"b":[["NCBITaxon%3A1635095","Albophoma yamanashiensis"]]},{"id":"NCBITaxon:1635095","l":"Albophoma yamanashiensis","na":1,"nb":1,"a":[["unclassified/terpendole-e.yaml","terpendole E"]],"b":[["NCBITaxon%3A1635095","Albophoma yamanashiensis"]]},{"id":"NCBITaxon:1650571","l":"Streptomyces pathocidini","na":1,"nb":1,"a":[["alkaloids/8-azaguanine.yaml","8-azaguanine"]],"b":[["NCBITaxon%3A1650571","Streptomyces pathocidini"]]},{"id":"NCBITaxon:1654360","l":"Photobacterium galatheae","na":1,"nb":1,"a":[["alkaloids/holomycin.yaml","holomycin"]],"b":[["NCBITaxon%3A1654360","Photobacterium galatheae"]]},{"id":"NCBITaxon:1670457","l":"Streptomyces sp. MSC090213JE08","na":1,"nb":1,"a":[["alkaloids/streptazone-e.yaml","streptazone E"]],"b":[["NCBITaxon%3A1670457","Streptomyces sp. MSC090213JE08"]]},{"id":"NCBITaxon:167740","l":"Alternaria gaisen","na":1,"nb":1,"a":[["alkaloids/ak-toxin-i.yaml","AK-toxin I"]],"b":[["NCBITaxon%3A167740","Alternaria gaisen"]]},{"id":"NCBITaxon:1678028","l":"Massilia sp. NR 4-1","na":1,"nb":1,"a":[["unclassified/massiliachelin.yaml","Massiliachelin"]],"b":[["NCBITaxon%3A1678028","Massilia sp. NR 4-1"]]},{"id":"NCBITaxon:168477","l":"Phialomyces arenicola","na":1,"nb":1,"a":[["amino_acids_and_peptides/acrophiarin.yaml","acrophiarin"]],"b":[["NCBITaxon%3A168477","Phialomyces arenicola"]]},{"id":"NCBITaxon:1690815","l":"Pseudonocardia sp. HH130630-07","na":1,"nb":1,"a":[["polyketides/selvamicin.yaml","selvamicin"]],"b":[["NCBITaxon%3A1690815","Pseudonocardia sp. HH130630-07"]]},{"id":"NCBITaxon:1696011","l":"Nannocystis sp. MB1016","na":1,"nb":1,"a":[["unclassified/nannocystin-a.yaml","nannocystin a"]],"b":[["NCBITaxon%3A1696011","Nannocystis sp. MB1016"]]},{"id":"NCBITaxon:170651","l":"Vibrio neptunius","na":1,"nb":1,"a":[["alkaloids/piscibactin.yaml","piscibactin"]],"b":[["NCBITaxon%3A170651","Vibrio neptunius"]]},{"id":"NCBITaxon:171258","l":"Streptomyces sp. TP-A0274","na":1,"nb":1,"a":[["alkaloids/staurosporine-2.yaml","staurosporine"]],"b":[["NCBITaxon%3A171258","Streptomyces sp. TP-A0274"]]},{"id":"NCBITaxon:1714301","l":"Streptomyces sp. CNH365","na":1,"nb":1,"a":[["polyketides/anthracimycin.yaml","anthracimycin"]],"b":[["NCBITaxon%3A1714301","Streptomyces sp. CNH365"]]},{"id":"NCBITaxon:1715678","l":"Streptomyces sp. NRRL 12068","na":1,"nb":1,"a":[["alkaloids/a33853.yaml","A33853"]],"b":[["NCBITaxon%3A1715678","Streptomyces sp. NRRL 12068"]]},{"id":"NCBITaxon:1718875","l":"Exophiala sp.","na":1,"nb":1,"a":[["polyketides/asperlactone.yaml","asperlactone"]],"b":[["NCBITaxon%3A1718875","Exophiala sp."]]},{"id":"NCBITaxon:1718958","l":"Streptomyces sp. CB00657","na":1,"nb":1,"a":[["polyketides/c-1027-chromophore.yaml","C-1027 chromophore"]],"b":[["NCBITaxon%3A1718958","Streptomyces sp. CB00657"]]},{"id":"NCBITaxon:1718988","l":"Streptomyces sp. CB03608","na":1,"nb":1,"a":[["polyketides/c-1027-chromophore.yaml","C-1027 chromophore"]],"b":[["NCBITaxon%3A1718988","Streptomyces sp. CB03608"]]},{"id":"NCBITaxon:1740725","l":"Streptomyces sp. DSM 11171","na":1,"nb":1,"a":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"]],"b":[["NCBITaxon%3A1740725","Streptomyces sp. DSM 11171"]]},{"id":"NCBITaxon:1752060","l":"Actinomadura fulva subsp. indica","na":1,"nb":1,"a":[["unclassified/fluvirucin-b2.yaml","fluvirucin B2"]],"b":[["NCBITaxon%3A1752060","Actinomadura fulva subsp. indica"]]},{"id":"NCBITaxon:1756463","l":"Streptomyces sp. NCIB 11649","na":1,"nb":1,"a":[["alkaloids/cyclizidine.yaml","cyclizidine"]],"b":[["NCBITaxon%3A1756463","Streptomyces sp. NCIB 11649"]]},{"id":"NCBITaxon:179408","l":"Phormidium nigroviride PCC 7112","na":1,"nb":1,"a":[["amino_acids_and_peptides/viridisamide-a.yaml","viridisamide A"]],"b":[["NCBITaxon%3A179408","Phormidium nigroviride PCC 7112"]]},{"id":"NCBITaxon:1809648","l":"Lysobacter sp. RH2180-5","na":1,"nb":1,"a":[["unclassified/lysocin-e.yaml","lysocin E"]],"b":[["NCBITaxon%3A1809648","Lysobacter sp. RH2180-5"]]},{"id":"NCBITaxon:1810909","l":"Aspergillus desertorum","na":1,"nb":1,"a":[["unclassified/paxilline.yaml","paxilline"]],"b":[["NCBITaxon%3A1810909","Aspergillus desertorum"]]},{"id":"NCBITaxon:1813822","l":"Xylariales sp. No.14919","na":1,"nb":1,"a":[["polyketides/fr901512.yaml","FR901512"]],"b":[["NCBITaxon%3A1813822","Xylariales sp. No.14919"]]},{"id":"NCBITaxon:181527","l":"Pluteus cervinus","na":1,"nb":1,"a":[["alkaloids/psilocybin.yaml","psilocybin"]],"b":[["NCBITaxon%3A181527","Pluteus cervinus"]]},{"id":"NCBITaxon:1816","l":"Actinokineospora fastidiosa","na":1,"nb":1,"a":[["amino_acids_and_peptides/nocathiacin-i.yaml","nocathiacin I"]],"b":[["NCBITaxon%3A1816","Actinokineospora fastidiosa"]]},{"id":"NCBITaxon:181762","l":"Psilocybe cubensis","na":1,"nb":1,"a":[["alkaloids/psilocybin.yaml","psilocybin"]],"b":[["NCBITaxon%3A181762","Psilocybe cubensis"]]},{"id":"NCBITaxon:182774","l":"Methylophaga alcalica","na":1,"nb":1,"a":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]],"b":[["NCBITaxon%3A182774","Methylophaga alcalica"]]},{"id":"NCBITaxon:183763","l":"Streptomonospora alba","na":1,"nb":1,"a":[["amino_acids_and_peptides/streptomonomicin.yaml","streptomonomicin"]],"b":[["NCBITaxon%3A183763","Streptomonospora alba"]]},{"id":"NCBITaxon:1849710","l":"Streptomyces sp. SD85","na":1,"nb":1,"a":[["unclassified/sceliphrolactam.yaml","sceliphrolactam"]],"b":[["NCBITaxon%3A1849710","Streptomyces sp. SD85"]]},{"id":"NCBITaxon:1854574","l":"Streptomyces huasconensis","na":1,"nb":1,"a":[["amino_acids_and_peptides/huascopeptin.yaml","huascopeptin"]],"b":[["NCBITaxon%3A1854574","Streptomyces huasconensis"]]},{"id":"NCBITaxon:1867796","l":"Vitiosangium cumulatum","na":1,"nb":1,"a":[["terpenoids/2-hydroxysorangiadenosine.yaml","2-hydroxysorangiadenosine"]],"b":[["NCBITaxon%3A1867796","Vitiosangium cumulatum"]]},{"id":"NCBITaxon:1869241","l":"Nostoc sp. CENA543","na":1,"nb":1,"a":[["amino_acids_and_peptides/nodularin-2.yaml","nodularin"]],"b":[["NCBITaxon%3A1869241","Nostoc sp. CENA543"]]},{"id":"NCBITaxon:1871626","l":"Verrucosispora sp.","na":1,"nb":1,"a":[["polyketides/kendomycin-b.yaml","kendomycin B"]],"b":[["NCBITaxon%3A1871626","Verrucosispora sp."]]},{"id":"NCBITaxon:1883427","l":"Actinomycetes bacterium","na":1,"nb":1,"a":[["polyketides/anthrabenzoxocinone.yaml","anthrabenzoxocinone"]],"b":[["NCBITaxon%3A1883427","Actinomycetes bacterium"]]},{"id":"NCBITaxon:1884262","l":"Aspergillus cejpii","na":1,"nb":1,"a":[["polyketides/patulin.yaml","patulin"]],"b":[["NCBITaxon%3A1884262","Aspergillus cejpii"]]},{"id":"NCBITaxon:1890733","l":"Limnothrix sp. CACIAM 69d","na":1,"nb":1,"a":[["amino_acids_and_peptides/limnothamide.yaml","limnothamide"]],"b":[["NCBITaxon%3A1890733","Limnothrix sp. CACIAM 69d"]]},{"id":"NCBITaxon:1898658","l":"Streptomyces sp. SoC090715LN-16","na":1,"nb":1,"a":[["polyketides/isoindolinomycin.yaml","isoindolinomycin"]],"b":[["NCBITaxon%3A1898658","Streptomyces sp. SoC090715LN-16"]]},{"id":"NCBITaxon:190048","l":"Corynascus sepedonium","na":1,"nb":1,"a":[["polyketides/patulin.yaml","patulin"]],"b":[["NCBITaxon%3A190048","Corynascus sepedonium"]]},{"id":"NCBITaxon:190592","l":"Aphanizomenon sp. NH-5","na":1,"nb":1,"a":[["alkaloids/neosaxitoxin.yaml","neosaxitoxin"]],"b":[["NCBITaxon%3A190592","Aphanizomenon sp. NH-5"]]},{"id":"NCBITaxon:1909395","l":"[Actinomadura] parvosata subsp. kistnae","na":1,"nb":1,"a":[["amino_acids_and_peptides/kistamicin-a.yaml","kistamicin A"]],"b":[["NCBITaxon%3A1909395","[Actinomadura] parvosata subsp. kistnae"]]},{"id":"NCBITaxon:1912599","l":"Paraburkholderia acidicola","na":1,"nb":1,"a":[["amino_acids_and_peptides/sulfazecin.yaml","sulfazecin"]],"b":[["NCBITaxon%3A1912599","Paraburkholderia acidicola"]]},{"id":"NCBITaxon:1915","l":"Streptomyces lincolnensis","na":1,"nb":1,"a":[["carbohydrates/lincomycin.yaml","lincomycin"]],"b":[["NCBITaxon%3A1915","Streptomyces lincolnensis"]]},{"id":"NCBITaxon:1918945","l":"Vibrio spartinae","na":1,"nb":1,"a":[["amino_acids_and_peptides/vancomycin.yaml","vancomycin"]],"b":[["NCBITaxon%3A1918945","Vibrio spartinae"]]},{"id":"NCBITaxon:1929279","l":"Myxococcus sp.","na":1,"nb":1,"a":[["unclassified/myxochromide-b.yaml","myxochromide B"]],"b":[["NCBITaxon%3A1929279","Myxococcus sp."]]},{"id":"NCBITaxon:1930928","l":"Fischerella sp. TAU","na":1,"nb":1,"a":[["alkaloids/ambiguine-p.yaml","ambiguine P"]],"b":[["NCBITaxon%3A1930928","Fischerella sp. TAU"]]},{"id":"NCBITaxon:1930929","l":"Fischerella sp. SAG 46.79","na":1,"nb":1,"a":[["alkaloids/fischerindole-l.yaml","fischerindole L"]],"b":[["NCBITaxon%3A1930929","Fischerella sp. SAG 46.79"]]},{"id":"NCBITaxon:1933","l":"Streptoalloteichus tenebrarius","na":1,"nb":1,"a":[["carbohydrates/tobramycin.yaml","tobramycin"]],"b":[["NCBITaxon%3A1933","Streptoalloteichus tenebrarius"]]},{"id":"NCBITaxon:193393","l":"Hypomyces subiculosus","na":1,"nb":1,"a":[["polyketides/hypothemycin.yaml","hypothemycin"]],"b":[["NCBITaxon%3A193393","Hypomyces subiculosus"]]},{"id":"NCBITaxon:1934390","l":"Streptomyces sp. RK95-74","na":1,"nb":1,"a":[["unclassified/neomediomycin-b.yaml","neomediomycin B"]],"b":[["NCBITaxon%3A1934390","Streptomyces sp. RK95-74"]]},{"id":"NCBITaxon:193460","l":"Streptomyces sanglieri","na":1,"nb":1,"a":[["unclassified/lactonamycin-z.yaml","lactonamycin Z"]],"b":[["NCBITaxon%3A193460","Streptomyces sanglieri"]]},{"id":"NCBITaxon:1934914","l":"Cystobacterineae bacterium","na":1,"nb":1,"a":[["unclassified/myxochromide-d-2.yaml","myxochromide D"]],"b":[["NCBITaxon%3A1934914","Cystobacterineae bacterium"]]},{"id":"NCBITaxon:1949","l":"Streptomyces mycarofaciens","na":1,"nb":1,"a":[["polyketides/midecamycin.yaml","midecamycin"]],"b":[["NCBITaxon%3A1949","Streptomyces mycarofaciens"]]},{"id":"NCBITaxon:1960","l":"Streptomyces vinaceus","na":1,"nb":1,"a":[["polyketides/resistomycin.yaml","resistomycin"]],"b":[["NCBITaxon%3A1960","Streptomyces vinaceus"]]},{"id":"NCBITaxon:1966654","l":"Nodularia sp. HBU26","na":1,"nb":1,"a":[["alkaloids/nocuolin-a.yaml","Nocuolin A"]],"b":[["NCBITaxon%3A1966654","Nodularia sp. HBU26"]]},{"id":"NCBITaxon:198094","l":"Bacillus anthracis str. Ames","na":1,"nb":1,"a":[["alkaloids/petrobactin.yaml","petrobactin"]],"b":[["NCBITaxon%3A198094","Bacillus anthracis str. Ames"]]},{"id":"NCBITaxon:1981977","l":"Streptomyces zelensis","na":1,"nb":1,"a":[["alkaloids/cc-1065.yaml","CC-1065"]],"b":[["NCBITaxon%3A1981977","Streptomyces zelensis"]]},{"id":"NCBITaxon:1989","l":"Actinomadura sp.","na":1,"nb":1,"a":[["polyketides/maduramicin.yaml","maduramicin"]],"b":[["NCBITaxon%3A1989","Actinomadura sp."]]},{"id":"NCBITaxon:2002978","l":"Herpetosiphon sp. B060","na":1,"nb":1,"a":[["alkaloids/siphonazole.yaml","siphonazole"]],"b":[["NCBITaxon%3A2002978","Herpetosiphon sp. B060"]]},{"id":"NCBITaxon:201500","l":"Streptomyces sp. KCTC 0041BP","na":1,"nb":1,"a":[["polyketides/10-11-dihydro-8-deoxy-12-13-deepoxy-12-13-dihydrochalcomycin.yaml","10,11-dihydro-8-deoxy-12,13-deepoxy-12,13-dihydrochalcomycin"]],"b":[["NCBITaxon%3A201500","Streptomyces sp. KCTC 0041BP"]]},{"id":"NCBITaxon:2025","l":"Thermoactinomyces sp.","na":1,"nb":1,"a":[["amino_acids_and_peptides/mechercharmycin.yaml","mechercharmycin"]],"b":[["NCBITaxon%3A2025","Thermoactinomyces sp."]]},{"id":"NCBITaxon:2026763","l":"Myxococcales bacterium","na":1,"nb":1,"a":[["polyketides/sorangipyranone.yaml","Sorangipyranone"]],"b":[["NCBITaxon%3A2026763","Myxococcales bacterium"]]},{"id":"NCBITaxon:2039464","l":"Actinoplanes tsinanensis","na":1,"nb":1,"a":[["alkaloids/chuangxinmycin.yaml","(−)-chuangxinmycin"]],"b":[["NCBITaxon%3A2039464","Actinoplanes tsinanensis"]]},{"id":"NCBITaxon:2045","l":"Pimelobacter simplex","na":1,"nb":1,"a":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]],"b":[["NCBITaxon%3A2045","Pimelobacter simplex"]]},{"id":"NCBITaxon:2055235","l":"Anabaena sp. UHCC 0451","na":1,"nb":1,"a":[["polyketides/scytophycin.yaml","scytophycin"]],"b":[["NCBITaxon%3A2055235","Anabaena sp. UHCC 0451"]]},{"id":"NCBITaxon:2055236","l":"Nostoc sp. UHCC 0450","na":1,"nb":1,"a":[["polyketides/swinholide-a.yaml","swinholide A"]],"b":[["NCBITaxon%3A2055236","Nostoc sp. UHCC 0450"]]},{"id":"NCBITaxon:205686","l":"Ascochyta lentis","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/3-p-hydroxyphenyl-1-2-propanediol.yaml","3-(p-hydroxyphenyl)-1,2-propanediol"]],"b":[["NCBITaxon%3A205686","Ascochyta lentis"]]},{"id":"NCBITaxon:205922","l":"Pseudomonas fluorescens Pf0-1","na":1,"nb":1,"a":[["unclassified/gacamide-a.yaml","gacamide A"]],"b":[["NCBITaxon%3A205922","Pseudomonas fluorescens Pf0-1"]]},{"id":"NCBITaxon:206662","l":"Streptomyces sp. FR-008","na":1,"nb":1,"a":[["polyketides/candicidin.yaml","candicidin"]],"b":[["NCBITaxon%3A206662","Streptomyces sp. FR-008"]]},{"id":"NCBITaxon:2083010","l":"Streptomyces sp. MA5143a","na":1,"nb":1,"a":[["amino_acids_and_peptides/edha.yaml","EDHA"]],"b":[["NCBITaxon%3A2083010","Streptomyces sp. MA5143a"]]},{"id":"NCBITaxon:208439","l":"Amycolatopsis japonica","na":1,"nb":1,"a":[["amino_acids_and_peptides/ristomycin-a.yaml","ristomycin A"]],"b":[["NCBITaxon%3A208439","Amycolatopsis japonica"]]},{"id":"NCBITaxon:210207","l":"Aspergillus foveolatus","na":1,"nb":1,"a":[["unclassified/paxilline.yaml","paxilline"]],"b":[["NCBITaxon%3A210207","Aspergillus foveolatus"]]},{"id":"NCBITaxon:2116518","l":"Micromonospora arborensis","na":1,"nb":1,"a":[["amino_acids_and_peptides/sch-18640.yaml","Sch 18640"]],"b":[["NCBITaxon%3A2116518","Micromonospora arborensis"]]},{"id":"NCBITaxon:213754","l":"Rhodococcus sp. T3H5","na":1,"nb":1,"a":[["carbohydrates/tubercidin.yaml","tubercidin"]],"b":[["NCBITaxon%3A213754","Rhodococcus sp. T3H5"]]},{"id":"NCBITaxon:2162715","l":"Streptomyces sp. CS147","na":1,"nb":1,"a":[["alkaloids/colibrimycin.yaml","colibrimycin"]],"b":[["NCBITaxon%3A2162715","Streptomyces sp. CS147"]]},{"id":"NCBITaxon:216595","l":"Pseudomonas [fluorescens] SBW25","na":1,"nb":1,"a":[["unclassified/viscosin.yaml","viscosin"]],"b":[["NCBITaxon%3A216595","Pseudomonas [fluorescens] SBW25"]]},{"id":"NCBITaxon:216895","l":"Vibrio vulnificus CMCP6","na":1,"nb":1,"a":[["alkaloids/vulnibactin.yaml","vulnibactin"]],"b":[["NCBITaxon%3A216895","Vibrio vulnificus CMCP6"]]},{"id":"NCBITaxon:2169583","l":"Pseudomonas sp. SXM-1","na":1,"nb":1,"a":[["amino_acids_and_peptides/pyoverdine-sxm-1.yaml","pyoverdine SXM-1"]],"b":[["NCBITaxon%3A2169583","Pseudomonas sp. SXM-1"]]},{"id":"NCBITaxon:2203205","l":"Streptomyces sp. WAC 01529","na":1,"nb":1,"a":[["amino_acids_and_peptides/corbomycin.yaml","corbomycin"]],"b":[["NCBITaxon%3A2203205","Streptomyces sp. WAC 01529"]]},{"id":"NCBITaxon:221710","l":"Streptomyces sp. AM-7161","na":1,"nb":1,"a":[["polyketides/medermycin.yaml","medermycin"]],"b":[["NCBITaxon%3A221710","Streptomyces sp. AM-7161"]]},{"id":"NCBITaxon:222892","l":"Streptomyces nodosus subsp. asukaensis","na":1,"nb":1,"a":[["polyketides/asukamycin.yaml","asukamycin"]],"b":[["NCBITaxon%3A222892","Streptomyces nodosus subsp. asukaensis"]]},{"id":"NCBITaxon:2231603","l":"Akanthomyces muscarius","na":1,"nb":1,"a":[["terpenoids/aphidicolin.yaml","aphidicolin"]],"b":[["NCBITaxon%3A2231603","Akanthomyces muscarius"]]},{"id":"NCBITaxon:225353","l":"Monascus aurantiacus","na":1,"nb":1,"a":[["polyketides/citrinin.yaml","(+)-citrinin"]],"b":[["NCBITaxon%3A225353","Monascus aurantiacus"]]},{"id":"NCBITaxon:225362","l":"Paracoccus haeundaensis","na":1,"nb":1,"a":[["terpenoids/astaxanthin.yaml","astaxanthin"]],"b":[["NCBITaxon%3A225362","Paracoccus haeundaensis"]]},{"id":"NCBITaxon:228095","l":"Pseudomonas sp. M18","na":1,"nb":1,"a":[["alkaloids/pyoluteorin.yaml","pyoluteorin"]],"b":[["NCBITaxon%3A228095","Pseudomonas sp. M18"]]},{"id":"NCBITaxon:2283197","l":"Streptomyces sp. S816","na":1,"nb":1,"a":[["polyketides/pentamycin-2.yaml","pentamycin"]],"b":[["NCBITaxon%3A2283197","Streptomyces sp. S816"]]},{"id":"NCBITaxon:228732","l":"Streptomyces hygroscopicus subsp. yingchengensis","na":1,"nb":1,"a":[["carbohydrates/validamycin-a.yaml","validamycin A"]],"b":[["NCBITaxon%3A228732","Streptomyces hygroscopicus subsp. yingchengensis"]]},{"id":"NCBITaxon:229535","l":"Penicillium nordicum","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"]],"b":[["NCBITaxon%3A229535","Penicillium nordicum"]]},{"id":"NCBITaxon:2304196","l":"Scytonema sp. UIC 10036","na":1,"nb":1,"a":[["amino_acids_and_peptides/scytodecamide.yaml","scytodecamide"]],"b":[["NCBITaxon%3A2304196","Scytonema sp. UIC 10036"]]},{"id":"NCBITaxon:235466","l":"Streptomyces garyphalus","na":1,"nb":1,"a":[["amino_acids_and_peptides/cycloserine.yaml","cycloserine"]],"b":[["NCBITaxon%3A235466","Streptomyces garyphalus"]]},{"id":"NCBITaxon:240499","l":"Calcarisporium arbuscula","na":1,"nb":1,"a":[["polyketides/patulin.yaml","patulin"]],"b":[["NCBITaxon%3A240499","Calcarisporium arbuscula"]]},{"id":"NCBITaxon:244967","l":"Streptomyces sp. HK803","na":1,"nb":1,"a":[["polyketides/phoslactomycin-b.yaml","phoslactomycin B"]],"b":[["NCBITaxon%3A244967","Streptomyces sp. HK803"]]},{"id":"NCBITaxon:249581","l":"Streptomyces ossamyceticus","na":1,"nb":1,"a":[["polyketides/ossamycin.yaml","ossamycin"]],"b":[["NCBITaxon%3A249581","Streptomyces ossamyceticus"]]},{"id":"NCBITaxon:2530358","l":"Moorena bouillonii bAprat14","na":1,"nb":1,"a":[["unclassified/apratoxin-a.yaml","apratoxin A"]],"b":[["NCBITaxon%3A2530358","Moorena bouillonii bAprat14"]]},{"id":"NCBITaxon:2545265","l":"Streptomyces sp. AJS327","na":1,"nb":1,"a":[["alkaloids/tetrachlorizine.yaml","tetrachlorizine"]],"b":[["NCBITaxon%3A2545265","Streptomyces sp. AJS327"]]},{"id":"NCBITaxon:255848","l":"Streptomyces aizunensis","na":1,"nb":1,"a":[["polyketides/eco-02301.yaml","ECO-02301"]],"b":[["NCBITaxon%3A255848","Streptomyces aizunensis"]]},{"id":"NCBITaxon:257313","l":"Bordetella pertussis Tohama I","na":1,"nb":1,"a":[["amino_acids_and_peptides/alcaligin.yaml","alcaligin"]],"b":[["NCBITaxon%3A257313","Bordetella pertussis Tohama I"]]},{"id":"NCBITaxon:2577050","l":"Streptomyces mozunensis","na":1,"nb":1,"a":[["amino_acids_and_peptides/phosphoramidon.yaml","phosphoramidon"]],"b":[["NCBITaxon%3A2577050","Streptomyces mozunensis"]]},{"id":"NCBITaxon:2583819","l":"Streptomyces sp. DASNCL29","na":1,"nb":1,"a":[["polyketides/nigericin.yaml","nigericin"]],"b":[["NCBITaxon%3A2583819","Streptomyces sp. DASNCL29"]]},{"id":"NCBITaxon:2590016","l":"Labrenzia sp. PHM005","na":1,"nb":1,"a":[["polyketides/labrenzin.yaml","labrenzin"]],"b":[["NCBITaxon%3A2590016","Labrenzia sp. PHM005"]]},{"id":"NCBITaxon:2601673","l":"Streptomyces sp. ISID311","na":1,"nb":1,"a":[["polyketides/cyphomycin.yaml","cyphomycin"]],"b":[["NCBITaxon%3A2601673","Streptomyces sp. ISID311"]]},{"id":"NCBITaxon:2603660","l":"Planctomycetales bacterium 10988","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/3-5-dibromo-p-anisic-acid.yaml","3,5-dibromo-p-anisic acid"]],"b":[["NCBITaxon%3A2603660","Planctomycetales bacterium 10988"]]},{"id":"NCBITaxon:2607326","l":"Streptomonospora sp. PA3","na":1,"nb":1,"a":[["polyketides/persiamycin-a.yaml","persiamycin A"]],"b":[["NCBITaxon%3A2607326","Streptomonospora sp. PA3"]]},{"id":"NCBITaxon:267608","l":"Ralstonia pseudosolanacearum GMI1000","na":1,"nb":1,"a":[["unclassified/micacocidin.yaml","micacocidin"]],"b":[["NCBITaxon%3A267608","Ralstonia pseudosolanacearum GMI1000"]]},{"id":"NCBITaxon:269709","l":"Methylotuvimicrobium kenyense","na":1,"nb":1,"a":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]],"b":[["NCBITaxon%3A269709","Methylotuvimicrobium kenyense"]]},{"id":"NCBITaxon:269797","l":"Methanosarcina barkeri str. Fusaro","na":1,"nb":1,"a":[["alkaloids/coenzyme-f430.yaml","coenzyme F430"]],"b":[["NCBITaxon%3A269797","Methanosarcina barkeri str. Fusaro"]]},{"id":"NCBITaxon:2712845","l":"Aetokthonos hydrillicola Thurmond2011","na":1,"nb":1,"a":[["alkaloids/aetokthonotoxin.yaml","aetokthonotoxin"]],"b":[["NCBITaxon%3A2712845","Aetokthonos hydrillicola Thurmond2011"]]},{"id":"NCBITaxon:272123","l":"Anabaena cylindrica PCC 7122","na":1,"nb":1,"a":[["amino_acids_and_peptides/anachelin.yaml","anachelin"]],"b":[["NCBITaxon%3A272123","Anabaena cylindrica PCC 7122"]]},{"id":"NCBITaxon:272618","l":"Streptomyces sp. CS684","na":1,"nb":1,"a":[["polyketides/laidlomycin.yaml","laidlomycin"]],"b":[["NCBITaxon%3A272618","Streptomyces sp. CS684"]]},{"id":"NCBITaxon:27326","l":"Metschnikowia pulcherrima","na":1,"nb":1,"a":[["unclassified/pulcherriminic-acid.yaml","pulcherriminic acid"]],"b":[["NCBITaxon%3A27326","Metschnikowia pulcherrima"]]},{"id":"NCBITaxon:273526","l":"Serratia marcescens subsp. marcescens Db11","na":1,"nb":1,"a":[["unclassified/althiomycin.yaml","althiomycin"]],"b":[["NCBITaxon%3A273526","Serratia marcescens subsp. marcescens Db11"]]},{"id":"NCBITaxon:2749999","l":"Pseudomonas sp. RtIB026","na":1,"nb":1,"a":[["unclassified/ma026.yaml","MA026"]],"b":[["NCBITaxon%3A2749999","Pseudomonas sp. RtIB026"]]},{"id":"NCBITaxon:276768","l":"Moorena producens 19L","na":1,"nb":1,"a":[["polyketides/curacin-a-2.yaml","curacin A"]],"b":[["NCBITaxon%3A276768","Moorena producens 19L"]]},{"id":"NCBITaxon:279113","l":"Collimonas pratensis","na":1,"nb":1,"a":[["unclassified/malleobactin-x.yaml","malleobactin X"]],"b":[["NCBITaxon%3A279113","Collimonas pratensis"]]},{"id":"NCBITaxon:2797167","l":"Streptomyces sp. HSG2","na":1,"nb":1,"a":[["polyketides/nystatin-a1.yaml","nystatin A1"]],"b":[["NCBITaxon%3A2797167","Streptomyces sp. HSG2"]]},{"id":"NCBITaxon:28040","l":"Micromonospora griseorubida","na":1,"nb":1,"a":[["polyketides/mycinamicin-ii.yaml","mycinamicin II"]],"b":[["NCBITaxon%3A28040","Micromonospora griseorubida"]]},{"id":"NCBITaxon:28064","l":"Heliobacterium mobile","na":1,"nb":1,"a":[["alkaloids/heme-d1-2.yaml","heme D1"]],"b":[["NCBITaxon%3A28064","Heliobacterium mobile"]]},{"id":"NCBITaxon:28069","l":"Chlorogloeopsis sp.","na":1,"nb":1,"a":[["unclassified/mycosporine-glycine.yaml","mycosporine glycine"]],"b":[["NCBITaxon%3A28069","Chlorogloeopsis sp."]]},{"id":"NCBITaxon:2820808","l":"Lysobacter sp. K5869","na":1,"nb":1,"a":[["unclassified/hypeptin.yaml","hypeptin"]],"b":[["NCBITaxon%3A2820808","Lysobacter sp. K5869"]]},{"id":"NCBITaxon:2834438","l":"Chloroflexi bacterium TSY","na":1,"nb":1,"a":[["polyketides/aurantoside-a.yaml","aurantoside A"]],"b":[["NCBITaxon%3A2834438","Chloroflexi bacterium TSY"]]},{"id":"NCBITaxon:284030","l":"Streptomyces graminearus","na":1,"nb":1,"a":[["carbohydrates/gougerotin.yaml","gougerotin"]],"b":[["NCBITaxon%3A284030","Streptomyces graminearus"]]},{"id":"NCBITaxon:284032","l":"Streptomyces heliomycini","na":1,"nb":1,"a":[["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"]],"b":[["NCBITaxon%3A284032","Streptomyces heliomycini"]]},{"id":"NCBITaxon:2842453","l":"Amycolatopsis aidingensis","na":1,"nb":1,"a":[["polyketides/nystatin-a1.yaml","nystatin A1"]],"b":[["NCBITaxon%3A2842453","Amycolatopsis aidingensis"]]},{"id":"NCBITaxon:284637","l":"Streptomyces griseovariabilis subsp. bandungensis","na":1,"nb":1,"a":[["unclassified/quinomycin.yaml","quinomycin"]],"b":[["NCBITaxon%3A284637","Streptomyces griseovariabilis subsp. bandungensis"]]},{"id":"NCBITaxon:285482","l":"Streptomyces tsusimaensis","na":1,"nb":1,"a":[["unclassified/valinomycin-2.yaml","valinomycin"]],"b":[["NCBITaxon%3A285482","Streptomyces tsusimaensis"]]},{"id":"NCBITaxon:285500","l":"Streptomyces luteocolor","na":1,"nb":1,"a":[["carbohydrates/bd-12.yaml","BD-12"]],"b":[["NCBITaxon%3A285500","Streptomyces luteocolor"]]},{"id":"NCBITaxon:285519","l":"Streptomyces spinichromogenes","na":1,"nb":1,"a":[["polyketides/lankamycin.yaml","lankamycin"]],"b":[["NCBITaxon%3A285519","Streptomyces spinichromogenes"]]},{"id":"NCBITaxon:285525","l":"Streptomyces sahachiroi","na":1,"nb":1,"a":[["unclassified/azinomycin-b.yaml","azinomycin B"]],"b":[["NCBITaxon%3A285525","Streptomyces sahachiroi"]]},{"id":"NCBITaxon:285531","l":"Streptomyces rubradiris","na":1,"nb":1,"a":[["alkaloids/rubradirin.yaml","rubradirin"]],"b":[["NCBITaxon%3A285531","Streptomyces rubradiris"]]},{"id":"NCBITaxon:285564","l":"Streptomyces ardesiacus","na":1,"nb":1,"a":[["polyketides/butyrolactol-a.yaml","butyrolactol A"]],"b":[["NCBITaxon%3A285564","Streptomyces ardesiacus"]]},{"id":"NCBITaxon:285574","l":"Streptomyces erythrochromogenes","na":1,"nb":1,"a":[["polyketides/komodoquinone-b.yaml","komodoquinone B"]],"b":[["NCBITaxon%3A285574","Streptomyces erythrochromogenes"]]},{"id":"NCBITaxon:28573","l":"Talaromyces islandicus","na":1,"nb":1,"a":[["polyketides/endocrocin.yaml","endocrocin"]],"b":[["NCBITaxon%3A28573","Talaromyces islandicus"]]},{"id":"NCBITaxon:28985","l":"Kluyveromyces lactis","na":1,"nb":1,"a":[["alkaloids/pulcherrimin.yaml","pulcherrimin"]],"b":[["NCBITaxon%3A28985","Kluyveromyces lactis"]]},{"id":"NCBITaxon:2912","l":"Gonyaulax","na":1,"nb":1,"a":[["alkaloids/saxitoxin.yaml","saxitoxin"]],"b":[["NCBITaxon%3A66791","Gonyaulax spinifera"]]},{"id":"NCBITaxon:2914159","l":"Amycolatopsis sp. FU40","na":1,"nb":1,"a":[["polyketides/apoptolidin.yaml","apoptolidin"]],"b":[["NCBITaxon%3A2914159","Amycolatopsis sp. FU40"]]},{"id":"NCBITaxon:2919322","l":"Amycolatopsis sp. EV170708-02-1","na":1,"nb":1,"a":[["polyketides/nocamycin-v.yaml","nocamycin V"]],"b":[["NCBITaxon%3A2919322","Amycolatopsis sp. EV170708-02-1"]]},{"id":"NCBITaxon:2925","l":"Alexandrium catenella","na":1,"nb":1,"a":[["alkaloids/saxitoxin.yaml","saxitoxin"]],"b":[["NCBITaxon%3A2925","Alexandrium catenella"]]},{"id":"NCBITaxon:292802","l":"Micromonospora cinerea","na":1,"nb":1,"a":[["unclassified/be-43547a1.yaml","BE-43547A1"]],"b":[["NCBITaxon%3A292802","Micromonospora cinerea"]]},{"id":"NCBITaxon:29306","l":"Streptomyces griseoluteus","na":1,"nb":1,"a":[["alkaloids/griseoluteic-acid.yaml","griseoluteic acid"]],"b":[["NCBITaxon%3A29306","Streptomyces griseoluteus"]]},{"id":"NCBITaxon:29308","l":"Streptomyces tenjimariensis","na":1,"nb":1,"a":[["carbohydrates/istamycin.yaml","istamycin"]],"b":[["NCBITaxon%3A29308","Streptomyces tenjimariensis"]]},{"id":"NCBITaxon:29456","l":"Alteromonas sp. B-10-31","na":1,"nb":1,"a":[["unclassified/marinostatin.yaml","marinostatin"]],"b":[["NCBITaxon%3A29456","Alteromonas sp. B-10-31"]]},{"id":"NCBITaxon:298386","l":"Photobacterium profundum SS9","na":1,"nb":1,"a":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]],"b":[["NCBITaxon%3A298386","Photobacterium profundum SS9"]]},{"id":"NCBITaxon:29845","l":"Penicillium vulpinum","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"]],"b":[["NCBITaxon%3A29845","Penicillium vulpinum"]]},{"id":"NCBITaxon:298653","l":"Parafrankia sp. EAN1pec","na":1,"nb":1,"a":[["polyketides/frankiamicin.yaml","frankiamicin"]],"b":[["NCBITaxon%3A298653","Parafrankia sp. EAN1pec"]]},{"id":"NCBITaxon:299254","l":"Streptomyces sp. NRRL 11266","na":1,"nb":1,"a":[["polyketides/tetronomycin.yaml","tetronomycin"]],"b":[["NCBITaxon%3A299254","Streptomyces sp. NRRL 11266"]]},{"id":"NCBITaxon:300251","l":"Paraconiothyrium","na":1,"nb":1,"a":[["polyketides/calbistrin-a.yaml","calbistrin A"]],"b":[["NCBITaxon%3A300256","Paraconiothyrium cyclothyrioides"]]},{"id":"NCBITaxon:307120","l":"Micromonospora marina","na":1,"nb":1,"a":[["unclassified/thiocoraline.yaml","thiocoraline"]],"b":[["NCBITaxon%3A307120","Micromonospora marina"]]},{"id":"NCBITaxon:312309","l":"Aliivibrio fischeri ES114","na":1,"nb":1,"a":[["unclassified/ape-vf.yaml","APE Vf"]],"b":[["NCBITaxon%3A312309","Aliivibrio fischeri ES114"]]},{"id":"NCBITaxon:313624","l":"Nodularia spumigena CCY9414","na":1,"nb":1,"a":[["amino_acids_and_peptides/spumigin-e.yaml","Spumigin E"]],"b":[["NCBITaxon%3A313624","Nodularia spumigena CCY9414"]]},{"id":"NCBITaxon:314092","l":"Shewanella pneumatophori","na":1,"nb":1,"a":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]],"b":[["NCBITaxon%3A314092","Shewanella pneumatophori"]]},{"id":"NCBITaxon:314563","l":"Streptomyces sp. TP-A0584","na":1,"nb":1,"a":[["amino_acids_and_peptides/goadsporin.yaml","goadsporin"]],"b":[["NCBITaxon%3A314563","Streptomyces sp. TP-A0584"]]},{"id":"NCBITaxon:318829","l":"Pyricularia oryzae","na":1,"nb":1,"a":[["polyketides/nectriapyrone.yaml","nectriapyrone"]],"b":[["NCBITaxon%3A318829","Pyricularia oryzae"]]},{"id":"NCBITaxon:319633","l":"Streptomyces cinnabarigriseus","na":1,"nb":1,"a":[["amino_acids_and_peptides/cinnabaramide-a.yaml","cinnabaramide A"]],"b":[["NCBITaxon%3A319633","Streptomyces cinnabarigriseus"]]},{"id":"NCBITaxon:322159","l":"Streptococcus thermophilus LMD-9","na":1,"nb":1,"a":[["amino_acids_and_peptides/streptide.yaml","streptide"]],"b":[["NCBITaxon%3A322159","Streptococcus thermophilus LMD-9"]]},{"id":"NCBITaxon:322710","l":"Azotobacter vinelandii DJ","na":1,"nb":1,"a":[["amino_acids_and_peptides/azotobactin-d.yaml","azotobactin D"]],"b":[["NCBITaxon%3A322710","Azotobacter vinelandii DJ"]]},{"id":"NCBITaxon:324869","l":"Lysobacter sp. ATCC 53042","na":1,"nb":1,"a":[["unclassified/lysobactin.yaml","lysobactin"]],"b":[["NCBITaxon%3A324869","Lysobacter sp. ATCC 53042"]]},{"id":"NCBITaxon:329558","l":"Planktothrix agardhii NIVA-CYA 116","na":1,"nb":1,"a":[["unclassified/cyanopeptolin-1138.yaml","cyanopeptolin 1138"]],"b":[["NCBITaxon%3A329558","Planktothrix agardhii NIVA-CYA 116"]]},{"id":"NCBITaxon:333849","l":"Enterococcus faecium DO","na":1,"nb":1,"a":[["amino_acids_and_peptides/enterocin-a.yaml","enterocin A"]],"b":[["NCBITaxon%3A333849","Enterococcus faecium DO"]]},{"id":"NCBITaxon:333964","l":"Xenorhabdus indica","na":1,"nb":1,"a":[["unclassified/taxlllaid-a.yaml","taxlllaid A"]],"b":[["NCBITaxon%3A333964","Xenorhabdus indica"]]},{"id":"NCBITaxon:334858","l":"Goodfellowiella coeruleoviolacea","na":1,"nb":1,"a":[["amino_acids_and_peptides/epoxomicin.yaml","epoxomicin"]],"b":[["NCBITaxon%3A334858","Goodfellowiella coeruleoviolacea"]]},{"id":"NCBITaxon:335854","l":"Nigrospora oryzae","na":1,"nb":1,"a":[["terpenoids/aphidicolin.yaml","aphidicolin"]],"b":[["NCBITaxon%3A335854","Nigrospora oryzae"]]},{"id":"NCBITaxon:338584","l":"Polymorphospora rubra","na":1,"nb":1,"a":[["terpenoids/trehangelin.yaml","trehangelin"]],"b":[["NCBITaxon%3A338584","Polymorphospora rubra"]]},{"id":"NCBITaxon:338904","l":"Enterobacteriaceae bacterium DC260","na":1,"nb":1,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A338904","Enterobacteriaceae bacterium DC260"]]},{"id":"NCBITaxon:338905","l":"Enterobacteriaceae bacterium DC404","na":1,"nb":1,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A338905","Enterobacteriaceae bacterium DC404"]]},{"id":"NCBITaxon:338906","l":"Enterobacteriaceae bacterium DC416","na":1,"nb":1,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A338906","Enterobacteriaceae bacterium DC416"]]},{"id":"NCBITaxon:338907","l":"Enterobacteriaceae bacterium DC413","na":1,"nb":1,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A338907","Enterobacteriaceae bacterium DC413"]]},{"id":"NCBITaxon:33900","l":"Streptomyces murinus","na":1,"nb":1,"a":[["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"]],"b":[["NCBITaxon%3A33900","Streptomyces murinus"]]},{"id":"NCBITaxon:33902","l":"Streptomyces roseofulvus","na":1,"nb":1,"a":[["polyketides/frenolicin-b.yaml","frenolicin B"]],"b":[["NCBITaxon%3A33902","Streptomyces roseofulvus"]]},{"id":"NCBITaxon:33915","l":"Saccharopolyspora sp.","na":1,"nb":1,"a":[["amino_acids_and_peptides/kyamicin.yaml","kyamicin"]],"b":[["NCBITaxon%3A33915","Saccharopolyspora sp."]]},{"id":"NCBITaxon:340414","l":"Aspergillus fumigatiaffinis","na":1,"nb":1,"a":[["polyketides/neosartorin.yaml","neosartorin"]],"b":[["NCBITaxon%3A340414","Aspergillus fumigatiaffinis"]]},{"id":"NCBITaxon:34392","l":"Microsporum","na":1,"nb":1,"a":[["polyketides/flavoglaucin.yaml","flavoglaucin"]],"b":[["NCBITaxon%3A63405","Microsporum canis"]]},{"id":"NCBITaxon:348901","l":"Cercospora zeina","na":1,"nb":1,"a":[["polyketides/cercosporin-2.yaml","cercosporin"]],"b":[["NCBITaxon%3A348901","Cercospora zeina"]]},{"id":"NCBITaxon:349725","l":"Micromonospora sp. ML1","na":1,"nb":1,"a":[["unclassified/thiocoraline.yaml","thiocoraline"]],"b":[["NCBITaxon%3A349725","Micromonospora sp. ML1"]]},{"id":"NCBITaxon:351674","l":"Xenorhabdus miraniensis","na":1,"nb":1,"a":[["amino_acids_and_peptides/ambactin.yaml","ambactin"]],"b":[["NCBITaxon%3A351674","Xenorhabdus miraniensis"]]},{"id":"NCBITaxon:355249","l":"Streptomyces sp. Tu6071","na":1,"nb":1,"a":[["unclassified/phenalinolactone-a.yaml","phenalinolactone A"]],"b":[["NCBITaxon%3A355249","Streptomyces sp. Tu6071"]]},{"id":"NCBITaxon:356796","l":"Algoriphagus sp. KK10202C","na":1,"nb":1,"a":[["polyketides/carotenoid.yaml","carotenoid"]],"b":[["NCBITaxon%3A356796","Algoriphagus sp. KK10202C"]]},{"id":"NCBITaxon:35700","l":"Heliophilum fasciatum","na":1,"nb":1,"a":[["unclassified/heme-d1.yaml","heme D1"]],"b":[["NCBITaxon%3A35700","Heliophilum fasciatum"]]},{"id":"NCBITaxon:35762","l":"Planobispora rosea","na":1,"nb":1,"a":[["amino_acids_and_peptides/ge2270.yaml","GE2270"]],"b":[["NCBITaxon%3A35762","Planobispora rosea"]]},{"id":"NCBITaxon:357993","l":"Penicillium ribium","na":1,"nb":1,"a":[["alkaloids/psychrophilin-a.yaml","psychrophilin A"]],"b":[["NCBITaxon%3A357993","Penicillium ribium"]]},{"id":"NCBITaxon:360723","l":"Actinomadura melliaura","na":1,"nb":1,"a":[["alkaloids/at2433-a1.yaml","AT2433-A1"]],"b":[["NCBITaxon%3A360723","Actinomadura melliaura"]]},{"id":"NCBITaxon:362242","l":"Mycobacterium ulcerans Agy99","na":1,"nb":1,"a":[["polyketides/mycolactone-b.yaml","mycolactone B"]],"b":[["NCBITaxon%3A362242","Mycobacterium ulcerans Agy99"]]},{"id":"NCBITaxon:36642","l":"Aspergillus terricola","na":1,"nb":1,"a":[["polyketides/kojic-acid.yaml","kojic acid"]],"b":[["NCBITaxon%3A138288","Aspergillus terricola var. indicus"]]},{"id":"NCBITaxon:36648","l":"Penicillium hirsutum","na":1,"nb":1,"a":[["polyketides/patulin.yaml","patulin"]],"b":[["NCBITaxon%3A36648","Penicillium hirsutum"]]},{"id":"NCBITaxon:36651","l":"Penicillium digitatum","na":1,"nb":1,"a":[["alkaloids/tryptoquialanine.yaml","tryptoquialanine"]],"b":[["NCBITaxon%3A36651","Penicillium digitatum"]]},{"id":"NCBITaxon:36653","l":"Penicillium commune","na":1,"nb":1,"a":[["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]],"b":[["NCBITaxon%3A36653","Penicillium commune"]]},{"id":"NCBITaxon:36654","l":"Penicillium gladioli","na":1,"nb":1,"a":[["unclassified/4-oxomacrophorin-a.yaml","4-oxomacrophorin A"]],"b":[["NCBITaxon%3A36654","Penicillium gladioli"]]},{"id":"NCBITaxon:367779","l":"Streptomyces sp. NRRL 30748","na":1,"nb":1,"a":[["polyketides/meridamycin.yaml","meridamycin"]],"b":[["NCBITaxon%3A367779","Streptomyces sp. NRRL 30748"]]},{"id":"NCBITaxon:370437","l":"Dietzia sp. CQ4","na":1,"nb":1,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A370437","Dietzia sp. CQ4"]]},{"id":"NCBITaxon:371632","l":"Candidatus Streptomyces philanthi bv. triangulum","na":1,"nb":1,"a":[["polyketides/piericidin-a.yaml","piericidin A"]],"b":[["NCBITaxon%3A371632","Candidatus Streptomyces philanthi bv. triangulum"]]},{"id":"NCBITaxon:373994","l":"Rivularia sp. PCC 7116","na":1,"nb":1,"a":[["amino_acids_and_peptides/cyanochelin-a.yaml","cyanochelin A"]],"b":[["NCBITaxon%3A373994","Rivularia sp. PCC 7116"]]},{"id":"NCBITaxon:375285","l":"Pseudoalteromonas sp. DS-12","na":1,"nb":1,"a":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]],"b":[["NCBITaxon%3A375285","Pseudoalteromonas sp. DS-12"]]},{"id":"NCBITaxon:37727","l":"Talaromyces marneffei","na":1,"nb":1,"a":[["polyketides/monascorubrin.yaml","monascorubrin"]],"b":[["NCBITaxon%3A37727","Talaromyces marneffei"]]},{"id":"NCBITaxon:38005","l":"Tolypocladium cylindrosporum","na":1,"nb":1,"a":[["unclassified/terpendole-e.yaml","terpendole E"]],"b":[["NCBITaxon%3A38005","Tolypocladium cylindrosporum"]]},{"id":"NCBITaxon:388913","l":"Stachybotrys chlorohalonatus","na":1,"nb":1,"a":[["alkaloids/isoindolin-1-one.yaml","isoindolin-1-one"]],"b":[["NCBITaxon%3A1283841","Stachybotrys chlorohalonatus IBT 40285"]]},{"id":"NCBITaxon:38945","l":"Flammulina velutipes","na":1,"nb":1,"a":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]],"b":[["NCBITaxon%3A38945","Flammulina velutipes"]]},{"id":"NCBITaxon:390239","l":"Streptomyces lohii","na":1,"nb":1,"a":[["polyketides/bafilomycin-b1.yaml","bafilomycin B1"]],"b":[["NCBITaxon%3A390239","Streptomyces lohii"]]},{"id":"NCBITaxon:39291","l":"Agroathelia rolfsii","na":1,"nb":1,"a":[["amino_acids_and_peptides/ethynylserine.yaml","β-ethynylserine"]],"b":[["NCBITaxon%3A39291","Agroathelia rolfsii"]]},{"id":"NCBITaxon:394","l":"Sinorhizobium fredii NGR234","na":1,"nb":1,"a":[["terpenoids/gibberellin.yaml","gibberellin"]],"b":[["NCBITaxon%3A394","Sinorhizobium fredii NGR234"]]},{"id":"NCBITaxon:394193","l":"Amycolatopsis saalfeldensis","na":1,"nb":1,"a":[["amino_acids_and_peptides/saalfelduracin.yaml","saalfelduracin"]],"b":[["NCBITaxon%3A394193","Amycolatopsis saalfeldensis"]]},{"id":"NCBITaxon:39447","l":"Gymnodinium catenatum","na":1,"nb":1,"a":[["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"]],"b":[["NCBITaxon%3A39447","Gymnodinium catenatum"]]},{"id":"NCBITaxon:39478","l":"Streptomyces laurentii","na":1,"nb":1,"a":[["amino_acids_and_peptides/thiostrepton.yaml","thiostrepton"]],"b":[["NCBITaxon%3A39478","Streptomyces laurentii"]]},{"id":"NCBITaxon:396596","l":"Burkholderia ambifaria IOP40-10","na":1,"nb":1,"a":[["polyketides/cepacin-a.yaml","cepacin A"]],"b":[["NCBITaxon%3A396596","Burkholderia ambifaria IOP40-10"]]},{"id":"NCBITaxon:40199","l":"Fusarium avenaceum","na":1,"nb":1,"a":[["unclassified/beauvericin.yaml","beauvericin"]],"b":[["NCBITaxon%3A40199","Fusarium avenaceum"]]},{"id":"NCBITaxon:40381","l":"Aspergillus unguis","na":1,"nb":1,"a":[["polyketides/sterigmatocystin.yaml","sterigmatocystin"]],"b":[["NCBITaxon%3A40381","Aspergillus unguis"]]},{"id":"NCBITaxon:404220","l":"Streptomyces sp. CK4412","na":1,"nb":1,"a":[["polyketides/tautomycetin-2.yaml","tautomycetin"]],"b":[["NCBITaxon%3A404220","Streptomyces sp. CK4412"]]},{"id":"NCBITaxon:40492","l":"Stereum hirsutum","na":1,"nb":1,"a":[["terpenoids/hirsutene.yaml","hirsutene"]],"b":[["NCBITaxon%3A40492","Stereum hirsutum"]]},{"id":"NCBITaxon:40993","l":"Aspergillus carbonarius","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"]],"b":[["NCBITaxon%3A40993","Aspergillus carbonarius"]]},{"id":"NCBITaxon:41047","l":"Aspergillus thermomutatus","na":1,"nb":1,"a":[["unclassified/pyripyropene-a.yaml","pyripyropene A"]],"b":[["NCBITaxon%3A41047","Aspergillus thermomutatus"]]},{"id":"NCBITaxon:41057","l":"Aspergillus unilateralis","na":1,"nb":1,"a":[["unclassified/viridicatumtoxin.yaml","viridicatumtoxin"]],"b":[["NCBITaxon%3A41057","Aspergillus unilateralis"]]},{"id":"NCBITaxon:411144","l":"Amycolatopsis sp. CP2808","na":1,"nb":1,"a":[["polyketides/ansacarbamitocin.yaml","ansacarbamitocin"]],"b":[["NCBITaxon%3A411144","Amycolatopsis sp. CP2808"]]},{"id":"NCBITaxon:41281","l":"Aspergillus niveus","na":1,"nb":1,"a":[["alkaloids/aspochalasin-c.yaml","aspochalasin C"]],"b":[["NCBITaxon%3A41281","Aspergillus niveus"]]},{"id":"NCBITaxon:41288","l":"Aspergillus aureoterreus","na":1,"nb":1,"a":[["polyketides/citreoviridin.yaml","citreoviridin"]],"b":[["NCBITaxon%3A41288","Aspergillus aureoterreus"]]},{"id":"NCBITaxon:41413","l":"Aspergillus glaucus","na":1,"nb":1,"a":[["polyketides/flavoglaucin.yaml","flavoglaucin"]],"b":[["NCBITaxon%3A1906","Streptomyces fradiae"]]},{"id":"NCBITaxon:414689","l":"Nostoc sp. 'Peltigera membranacea cyanobiont'","na":1,"nb":1,"a":[["polyketides/nosperin.yaml","nosperin"]],"b":[["NCBITaxon%3A414689","Nostoc sp. 'Peltigera membranacea cyanobiont'"]]},{"id":"NCBITaxon:414996","l":"Actinopolyspora erythraea","na":1,"nb":1,"a":[["carbohydrates/tubercidin.yaml","tubercidin"]],"b":[["NCBITaxon%3A414996","Actinopolyspora erythraea"]]},{"id":"NCBITaxon:416175","l":"Actinomyces sp. Lu 9419","na":1,"nb":1,"a":[["carbohydrates/cetoniacytone-a.yaml","cetoniacytone A"]],"b":[["NCBITaxon%3A416175","Actinomyces sp. Lu 9419"]]},{"id":"NCBITaxon:41759","l":"Aspergillus multicolor","na":1,"nb":1,"a":[["polyketides/sterigmatocystin.yaml","sterigmatocystin"]],"b":[["NCBITaxon%3A41759","Aspergillus multicolor"]]},{"id":"NCBITaxon:418759","l":"Saccharopolyspora cebuensis","na":1,"nb":1,"a":[["amino_acids_and_peptides/cebulantin.yaml","cebulantin"]],"b":[["NCBITaxon%3A418759","Saccharopolyspora cebuensis"]]},{"id":"NCBITaxon:418855","l":"Streptomyces sp. CNQ-525","na":1,"nb":1,"a":[["terpenoids/napyradiomycin.yaml","napyradiomycin"]],"b":[["NCBITaxon%3A418855","Streptomyces sp. CNQ-525"]]},{"id":"NCBITaxon:41984","l":"Aspergillus tamarii","na":1,"nb":1,"a":[["unclassified/cyclopiazonic-acid.yaml","α-cyclopiazonic acid"]],"b":[["NCBITaxon%3A41984","Aspergillus tamarii"]]},{"id":"NCBITaxon:426436","l":"Phormidium tenue BDU 40061","na":1,"nb":1,"a":[["terpenoids/2-methylisoborneol.yaml","2-methylisoborneol"]],"b":[["NCBITaxon%3A426436","Phormidium tenue BDU 40061"]]},{"id":"NCBITaxon:42673","l":"Fusarium nygamai","na":1,"nb":1,"a":[["alkaloids/fusaric-acid.yaml","fusaric acid"]],"b":[["NCBITaxon%3A42673","Fusarium nygamai"]]},{"id":"NCBITaxon:428401","l":"Streptomyces sp. UC 11065","na":1,"nb":1,"a":[["alkaloids/pyrrolomycin-a.yaml","pyrrolomycin A"]],"b":[["NCBITaxon%3A428401","Streptomyces sp. UC 11065"]]},{"id":"NCBITaxon:428986","l":"Micromonospora sp. Tu 6368","na":1,"nb":1,"a":[["polyketides/saquayamycin-z.yaml","saquayamycin Z"]],"b":[["NCBITaxon%3A428986","Micromonospora sp. Tu 6368"]]},{"id":"NCBITaxon:434487","l":"Penicillium novae-zeelandiae","na":1,"nb":1,"a":[["unclassified/penitrem-a.yaml","penitrem A"]],"b":[["NCBITaxon%3A434487","Penicillium novae-zeelandiae"]]},{"id":"NCBITaxon:43759","l":"Streptomyces wedmorensis","na":1,"nb":1,"a":[["unclassified/fosfomycin.yaml","fosfomycin"]],"b":[["NCBITaxon%3A43759","Streptomyces wedmorensis"]]},{"id":"NCBITaxon:443906","l":"Clavibacter michiganensis subsp. michiganensis NCPPB 382","na":1,"nb":1,"a":[["amino_acids_and_peptides/michiganin-a.yaml","michiganin A"]],"b":[["NCBITaxon%3A443906","Clavibacter michiganensis subsp. michiganensis NCPPB 382"]]},{"id":"NCBITaxon:445969","l":"Duganella sp. B2","na":1,"nb":1,"a":[["alkaloids/violacein.yaml","violacein"]],"b":[["NCBITaxon%3A445969","Duganella sp. B2"]]},{"id":"NCBITaxon:446787","l":"Actinopolymorpha rutila","na":1,"nb":1,"a":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"]],"b":[["NCBITaxon%3A446787","Actinopolymorpha rutila"]]},{"id":"NCBITaxon:449440","l":"Microcystis aeruginosa NIES-87","na":1,"nb":1,"a":[["amino_acids_and_peptides/kasumigamide.yaml","kasumigamide"]],"b":[["NCBITaxon%3A449440","Microcystis aeruginosa NIES-87"]]},{"id":"NCBITaxon:449441","l":"Microcystis aeruginosa NIES-88","na":1,"nb":1,"a":[["amino_acids_and_peptides/kawaguchipeptin-a.yaml","kawaguchipeptin A"]],"b":[["NCBITaxon%3A449441","Microcystis aeruginosa NIES-88"]]},{"id":"NCBITaxon:45","l":"Melittangium lichenicola","na":1,"nb":1,"a":[["unclassified/melithiazol-a.yaml","melithiazol A"]],"b":[["NCBITaxon%3A45","Melittangium lichenicola"]]},{"id":"NCBITaxon:45071","l":"Legionella parisiensis","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/legioliulin.yaml","legioliulin"]],"b":[["NCBITaxon%3A45071","Legionella parisiensis"]]},{"id":"NCBITaxon:45151","l":"Pyrenophora tritici-repentis","na":1,"nb":1,"a":[["unclassified/triticone-b.yaml","triticone B"]],"b":[["NCBITaxon%3A45151","Pyrenophora tritici-repentis"]]},{"id":"NCBITaxon:45847","l":"Cordyceps tenuipes","na":1,"nb":1,"a":[["unclassified/beauvericin.yaml","beauvericin"]],"b":[["NCBITaxon%3A45847","Cordyceps tenuipes"]]},{"id":"NCBITaxon:459664","l":"Aphanizomenon sp. 10E6","na":1,"nb":1,"a":[["alkaloids/7-epi-cylindrospermopsin.yaml","7-epi-cylindrospermopsin"]],"b":[["NCBITaxon%3A459664","Aphanizomenon sp. 10E6"]]},{"id":"NCBITaxon:459665","l":"Aphanizomenon sp. 10E9","na":1,"nb":1,"a":[["alkaloids/7-epi-cylindrospermopsin.yaml","7-epi-cylindrospermopsin"]],"b":[["NCBITaxon%3A459665","Aphanizomenon sp. 10E9"]]},{"id":"NCBITaxon:459668","l":"Aphanizomenon sp. 22D11","na":1,"nb":1,"a":[["alkaloids/7-epi-cylindrospermopsin.yaml","7-epi-cylindrospermopsin"]],"b":[["NCBITaxon%3A459668","Aphanizomenon sp. 22D11"]]},{"id":"NCBITaxon:46182","l":"Nonomuraea spiralis","na":1,"nb":1,"a":[["carbohydrates/pyralomicin-1a.yaml","pyralomicin 1a"]],"b":[["NCBITaxon%3A46182","Nonomuraea spiralis"]]},{"id":"NCBITaxon:465543","l":"Streptomyces sp. SPB074","na":1,"nb":1,"a":[["polyketides/cinerubin-b.yaml","cinerubin B"]],"b":[["NCBITaxon%3A465543","Streptomyces sp. SPB074"]]},{"id":"NCBITaxon:47312","l":"Tsukamurella pulmonis","na":1,"nb":1,"a":[["amino_acids_and_peptides/longicatenamide-a.yaml","longicatenamide A"]],"b":[["NCBITaxon%3A47312","Tsukamurella pulmonis"]]},{"id":"NCBITaxon:47427","l":"Armillaria gallica","na":1,"nb":1,"a":[["terpenoids/8-hydroxy-6-protoilludene.yaml","8α-hydroxy-6-protoilludene"]],"b":[["NCBITaxon%3A47427","Armillaria gallica"]]},{"id":"NCBITaxon:476552","l":"Streptomyces milbemycinicus","na":1,"nb":1,"a":[["polyketides/nanchangmycin.yaml","nanchangmycin"]],"b":[["NCBITaxon%3A476552","Streptomyces milbemycinicus"]]},{"id":"NCBITaxon:477245","l":"Streptomyces cyaneogriseus subsp. noncyanogenus","na":1,"nb":1,"a":[["polyketides/ll-f28249.yaml","LL-F28249α"]],"b":[["NCBITaxon%3A477245","Streptomyces cyaneogriseus subsp. noncyanogenus"]]},{"id":"NCBITaxon:47759","l":"Streptomyces tubercidicus","na":1,"nb":1,"a":[["carbohydrates/tubercidin.yaml","tubercidin"]],"b":[["NCBITaxon%3A47759","Streptomyces tubercidicus"]]},{"id":"NCBITaxon:478021","l":"Cylindrospermopsis raciborskii AWT205","na":1,"nb":1,"a":[["alkaloids/7-epi-cylindrospermopsin.yaml","7-epi-cylindrospermopsin"]],"b":[["NCBITaxon%3A478021","Cylindrospermopsis raciborskii AWT205"]]},{"id":"NCBITaxon:478108","l":"Actinoallomurus fulvus","na":1,"nb":1,"a":[["polyketides/actinoallolide-a.yaml","actinoallolide A"]],"b":[["NCBITaxon%3A478108","Actinoallomurus fulvus"]]},{"id":"NCBITaxon:47854","l":"Micromonospora chersina","na":1,"nb":1,"a":[["polyketides/dynemicin-a.yaml","dynemicin A"]],"b":[["NCBITaxon%3A47854","Micromonospora chersina"]]},{"id":"NCBITaxon:47866","l":"Micromonospora inyonensis","na":1,"nb":1,"a":[["carbohydrates/sisomycin.yaml","sisomycin"]],"b":[["NCBITaxon%3A47866","Micromonospora inyonensis"]]},{"id":"NCBITaxon:483219","l":"Myxococcus fulvus HW-1","na":1,"nb":1,"a":[["unclassified/myxochromide-a-2.yaml","myxochromide A"]],"b":[["NCBITaxon%3A483219","Myxococcus fulvus HW-1"]]},{"id":"NCBITaxon:48563","l":"Suillus bovinus","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/atromentin.yaml","atromentin"]],"b":[["NCBITaxon%3A48563","Suillus bovinus"]]},{"id":"NCBITaxon:497965","l":"Gloeothece verrucosa PCC 7822","na":1,"nb":1,"a":[["fatty_acids/1-heptadecene.yaml","1-heptadecene"]],"b":[["NCBITaxon%3A497965","Gloeothece verrucosa PCC 7822"]]},{"id":"NCBITaxon:5057","l":"Aspergillus clavatus","na":1,"nb":1,"a":[["alkaloids/cytochalasin-e.yaml","cytochalasin E"]],"b":[["NCBITaxon%3A5057","Aspergillus clavatus"]]},{"id":"NCBITaxon:507735","l":"Microcystis aeruginosa MRC","na":1,"nb":1,"a":[["unclassified/microviridin-j.yaml","microviridin J"]],"b":[["NCBITaxon%3A507735","Microcystis aeruginosa MRC"]]},{"id":"NCBITaxon:512","l":"Alcaligenes sp.","na":1,"nb":1,"a":[["polyketides/kalimantacin-a.yaml","kalimantacin A"]],"b":[["NCBITaxon%3A512","Alcaligenes sp."]]},{"id":"NCBITaxon:525326","l":"Lactobacillus paragasseri JV-V03","na":1,"nb":1,"a":[["amino_acids_and_peptides/lactocillin.yaml","lactocillin"]],"b":[["NCBITaxon%3A525326","Lactobacillus paragasseri JV-V03"]]},{"id":"NCBITaxon:528191","l":"Paenibacillus xylanexedens","na":1,"nb":1,"a":[["amino_acids_and_peptides/macolacin.yaml","macolacin"]],"b":[["NCBITaxon%3A528191","Paenibacillus xylanexedens"]]},{"id":"NCBITaxon:529089","l":"Streptomyces sp. 307-9","na":1,"nb":1,"a":[["polyketides/tirandamycin.yaml","tirandamycin"]],"b":[["NCBITaxon%3A529089","Streptomyces sp. 307-9"]]},{"id":"NCBITaxon:5353","l":"Lentinula edodes","na":1,"nb":1,"a":[["amino_acids_and_peptides/lentinulin-a.yaml","lentinulin A"]],"b":[["NCBITaxon%3A5353","Lentinula edodes"]]},{"id":"NCBITaxon:541229","l":"Bacillus thuringiensis serovar chinensis CT-43","na":1,"nb":1,"a":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"]],"b":[["NCBITaxon%3A541229","Bacillus thuringiensis serovar chinensis CT-43"]]},{"id":"NCBITaxon:5454","l":"Ascochyta rabiei","na":1,"nb":1,"a":[["polyketides/solanapyrone-a.yaml","solanapyrone A"]],"b":[["NCBITaxon%3A5454","Ascochyta rabiei"]]},{"id":"NCBITaxon:546365","l":"Amycolatopsis regifaucium","na":1,"nb":1,"a":[["amino_acids_and_peptides/decaplanin.yaml","decaplanin"]],"b":[["NCBITaxon%3A546365","Amycolatopsis regifaucium"]]},{"id":"NCBITaxon:5526","l":"Humicola","na":1,"nb":1,"a":[["polyketides/monorden-d.yaml","monorden D"]],"b":[["NCBITaxon%3A1756120","Humicola sp."]]},{"id":"NCBITaxon:553510","l":"Streptomyces gilvosporeus","na":1,"nb":1,"a":[["polyketides/natamycin.yaml","natamycin"]],"b":[["NCBITaxon%3A553510","Streptomyces gilvosporeus"]]},{"id":"NCBITaxon:5538","l":"Scytalidium","na":1,"nb":1,"a":[["polyketides/scytalone.yaml","scytalone"]],"b":[["NCBITaxon%3A5539","Scytalidium lignicola"]]},{"id":"NCBITaxon:5587","l":"Rhinocladiella","na":1,"nb":1,"a":[["alkaloids/cytochalasin-e.yaml","cytochalasin E"]],"b":[["NCBITaxon%3A86056","Rhinocladiella mackenziei"]]},{"id":"NCBITaxon:563072","l":"Shewanella sp. BR-2","na":1,"nb":1,"a":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]],"b":[["NCBITaxon%3A563072","Shewanella sp. BR-2"]]},{"id":"NCBITaxon:565073","l":"Streptomyces tateyamensis","na":1,"nb":1,"a":[["amino_acids_and_peptides/thiopeptin.yaml","thiopeptin"]],"b":[["NCBITaxon%3A565073","Streptomyces tateyamensis"]]},{"id":"NCBITaxon:568701","l":"Moorena bouillonii PNG","na":1,"nb":1,"a":[["fatty_acids/1-heptadecene.yaml","1-heptadecene"]],"b":[["NCBITaxon%3A568701","Moorena bouillonii PNG"]]},{"id":"NCBITaxon:57153","l":"Neonectria coccinea","na":1,"nb":1,"a":[["unclassified/ilicicolin-b.yaml","ilicicolin B"]],"b":[["NCBITaxon%3A57153","Neonectria coccinea"]]},{"id":"NCBITaxon:573242","l":"Streptomyces sp. TA-0256","na":1,"nb":1,"a":[["polyketides/fd-594.yaml","FD-594"]],"b":[["NCBITaxon%3A573242","Streptomyces sp. TA-0256"]]},{"id":"NCBITaxon:573841","l":"Sordaria araneosa","na":1,"nb":1,"a":[["terpenoids/sordarin.yaml","sordarin"]],"b":[["NCBITaxon%3A573841","Sordaria araneosa"]]},{"id":"NCBITaxon:578457","l":"Serpula lacrymans var. lacrymans S7.9","na":1,"nb":1,"a":[["terpenoids/ent-kauren-16alpha-ol.yaml","ent-kauren-16alpha-ol"]],"b":[["NCBITaxon%3A578457","Serpula lacrymans var. lacrymans S7.9"]]},{"id":"NCBITaxon:579932","l":"Streptomyces sp. FXJ7.023","na":1,"nb":1,"a":[["polyketides/lobophorin-a.yaml","lobophorin A"]],"b":[["NCBITaxon%3A579932","Streptomyces sp. FXJ7.023"]]},{"id":"NCBITaxon:58344","l":"Streptomyces celluloflavus","na":1,"nb":1,"a":[["alkaloids/thiolutin.yaml","thiolutin"]],"b":[["NCBITaxon%3A58344","Streptomyces celluloflavus"]]},{"id":"NCBITaxon:58345","l":"Streptomyces mauvecolor","na":1,"nb":1,"a":[["polyketides/rimocidin.yaml","rimocidin"]],"b":[["NCBITaxon%3A58345","Streptomyces mauvecolor"]]},{"id":"NCBITaxon:589385","l":"Amycolatopsis xylanica","na":1,"nb":1,"a":[["amino_acids_and_peptides/amyxirubin-b.yaml","Amyxirubin B"]],"b":[["NCBITaxon%3A589385","Amycolatopsis xylanica"]]},{"id":"NCBITaxon:591158","l":"Streptomyces sp. AA4","na":1,"nb":1,"a":[["amino_acids_and_peptides/amychelin-a.yaml","amychelin A"]],"b":[["NCBITaxon%3A591158","Streptomyces sp. AA4"]]},{"id":"NCBITaxon:59625","l":"Microcystis sp. NIVA-CYA 172/5","na":1,"nb":1,"a":[["unclassified/cyanopeptolin.yaml","cyanopeptolin"]],"b":[["NCBITaxon%3A59625","Microcystis sp. NIVA-CYA 172/5"]]},{"id":"NCBITaxon:600778","l":"Microcystis aeruginosa K-139","na":1,"nb":1,"a":[["unclassified/micropeptin-k139.yaml","micropeptin K139"]],"b":[["NCBITaxon%3A600778","Microcystis aeruginosa K-139"]]},{"id":"NCBITaxon:60169","l":"Penicillium polonicum","na":1,"nb":1,"a":[["polyketides/verrucosidin.yaml","verrucosidin"]],"b":[["NCBITaxon%3A60169","Penicillium polonicum"]]},{"id":"NCBITaxon:60174","l":"Penicillium echinulatum","na":1,"nb":1,"a":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"]],"b":[["NCBITaxon%3A60174","Penicillium echinulatum"]]},{"id":"NCBITaxon:616","l":"Serratia sp. (in: enterobacteria)","na":1,"nb":1,"a":[["alkaloids/prodigiosin-2.yaml","prodigiosin"]],"b":[["NCBITaxon%3A616","Serratia sp. (in: enterobacteria)"]]},{"id":"NCBITaxon:63396","l":"Ustilago cynodontis","na":1,"nb":1,"a":[["fatty_acids/itaconic-acid.yaml","itaconic acid"]],"b":[["NCBITaxon%3A63396","Ustilago cynodontis"]]},{"id":"NCBITaxon:63577","l":"Trichoderma atroviride","na":1,"nb":1,"a":[["terpenoids/trichobrasilenol.yaml","trichobrasilenol"]],"b":[["NCBITaxon%3A63577","Trichoderma atroviride"]]},{"id":"NCBITaxon:639005","l":"Streptomyces sp. DSM 21069","na":1,"nb":1,"a":[["unclassified/be-14106.yaml","BE-14106"]],"b":[["NCBITaxon%3A639005","Streptomyces sp. DSM 21069"]]},{"id":"NCBITaxon:639006","l":"Streptomyces sp. MP39-85","na":1,"nb":1,"a":[["unclassified/ml-449.yaml","ML-449"]],"b":[["NCBITaxon%3A639006","Streptomyces sp. MP39-85"]]},{"id":"NCBITaxon:64363","l":"Dothistroma septosporum","na":1,"nb":1,"a":[["polyketides/dothistromin.yaml","dothistromin"]],"b":[["NCBITaxon%3A64363","Dothistroma septosporum"]]},{"id":"NCBITaxon:646534","l":"Grimontia marina","na":1,"nb":1,"a":[["amino_acids_and_peptides/grimoviridin.yaml","grimoviridin"]],"b":[["NCBITaxon%3A646534","Grimontia marina"]]},{"id":"NCBITaxon:653884","l":"Nonomuraea sp. WU8817","na":1,"nb":1,"a":[["amino_acids_and_peptides/ge2270.yaml","GE2270"]],"b":[["NCBITaxon%3A653884","Nonomuraea sp. WU8817"]]},{"id":"NCBITaxon:653921","l":"Nonomuraea sp. Bp3714-39","na":1,"nb":1,"a":[["amino_acids_and_peptides/thiomuracin-a.yaml","thiomuracin A"]],"b":[["NCBITaxon%3A653921","Nonomuraea sp. Bp3714-39"]]},{"id":"NCBITaxon:654496","l":"Thelephora aurantiotincta","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/atromentin.yaml","atromentin"]],"b":[["NCBITaxon%3A654496","Thelephora aurantiotincta"]]},{"id":"NCBITaxon:657419","l":"Tistrella bauzanensis","na":1,"nb":1,"a":[["unclassified/thalassospiramide-a.yaml","thalassospiramide A"]],"b":[["NCBITaxon%3A657419","Tistrella bauzanensis"]]},{"id":"NCBITaxon:657443","l":"Aspergillus violaceofuscus","na":1,"nb":1,"a":[["polyketides/pyranoviolin-a.yaml","pyranoviolin A"]],"b":[["NCBITaxon%3A657443","Aspergillus violaceofuscus"]]},{"id":"NCBITaxon:660122","l":"Fusarium vanettenii 77-13-4","na":1,"nb":1,"a":[["unclassified/sansalvamide.yaml","sansalvamide"]],"b":[["NCBITaxon%3A660122","Fusarium vanettenii 77-13-4"]]},{"id":"NCBITaxon:66425","l":"Streptomyces luteoverticillatus","na":1,"nb":1,"a":[["alkaloids/carbazomycin-b.yaml","carbazomycin B"]],"b":[["NCBITaxon%3A66425","Streptomyces luteoverticillatus"]]},{"id":"NCBITaxon:66428","l":"Streptomyces parvus","na":1,"nb":1,"a":[["unclassified/vicenistatin.yaml","vicenistatin"]],"b":[["NCBITaxon%3A66428","Streptomyces parvus"]]},{"id":"NCBITaxon:665029","l":"Erwinia amylovora CFBP1430","na":1,"nb":1,"a":[["alkaloids/tioguanine.yaml","tioguanine"]],"b":[["NCBITaxon%3A665029","Erwinia amylovora CFBP1430"]]},{"id":"NCBITaxon:665959","l":"Bacillus sp. 2_A_57_CT2","na":1,"nb":1,"a":[["fatty_acids/n-acyl-serinol.yaml","N-acyl serinol"]],"b":[["NCBITaxon%3A665959","Bacillus sp. 2_A_57_CT2"]]},{"id":"NCBITaxon:66872","l":"Streptomyces baarnensis","na":1,"nb":1,"a":[["unclassified/antimycin-a.yaml","antimycin A"]],"b":[["NCBITaxon%3A66872","Streptomyces baarnensis"]]},{"id":"NCBITaxon:66876","l":"Streptomyces chattanoogensis","na":1,"nb":1,"a":[["polyketides/natamycin.yaml","natamycin"]],"b":[["NCBITaxon%3A66876","Streptomyces chattanoogensis"]]},{"id":"NCBITaxon:66883","l":"Streptomyces cyaneofuscatus","na":1,"nb":1,"a":[["polyketides/anthracimycin.yaml","anthracimycin"]],"b":[["NCBITaxon%3A66883","Streptomyces cyaneofuscatus"]]},{"id":"NCBITaxon:66887","l":"Streptomyces filipinensis","na":1,"nb":1,"a":[["polyketides/filipin-iii.yaml","filipin III"]],"b":[["NCBITaxon%3A66887","Streptomyces filipinensis"]]},{"id":"NCBITaxon:66889","l":"","na":1,"nb":1,"a":[["amino_acids_and_peptides/zorbamycin.yaml","zorbamycin"]],"b":[["NCBITaxon%3A28893","Streptomyces pilosus"]]},{"id":"NCBITaxon:66896","l":"Peterkaempfera griseoplana","na":1,"nb":1,"a":[["amino_acids_and_peptides/alazopeptin.yaml","alazopeptin"]],"b":[["NCBITaxon%3A66896","Peterkaempfera griseoplana"]]},{"id":"NCBITaxon:67302","l":"Streptomyces fumanus","na":1,"nb":1,"a":[["alkaloids/pyrrolomycin-c.yaml","pyrrolomycin C"]],"b":[["NCBITaxon%3A67302","Streptomyces fumanus"]]},{"id":"NCBITaxon:67303","l":"Streptomyces griseoloalbus","na":1,"nb":1,"a":[["polyketides/chrysomycin.yaml","chrysomycin"]],"b":[["NCBITaxon%3A67303","Streptomyces griseoloalbus"]]},{"id":"NCBITaxon:67314","l":"Streptomyces lavendofoliae","na":1,"nb":1,"a":[["amino_acids_and_peptides/fosfazinomycin-b.yaml","fosfazinomycin B"]],"b":[["NCBITaxon%3A67314","Streptomyces lavendofoliae"]]},{"id":"NCBITaxon:67315","l":"Streptomyces lavenduligriseus","na":1,"nb":1,"a":[["polyketides/filipin-iii.yaml","filipin III"]],"b":[["NCBITaxon%3A67315","Streptomyces lavenduligriseus"]]},{"id":"NCBITaxon:67320","l":"Streptomyces luridus","na":1,"nb":1,"a":[["amino_acids_and_peptides/dehydrophos.yaml","dehydrophos"]],"b":[["NCBITaxon%3A67320","Streptomyces luridus"]]},{"id":"NCBITaxon:67326","l":"Streptomyces melanogenes","na":1,"nb":1,"a":[["polyketides/cinerubin-b.yaml","cinerubin B"]],"b":[["NCBITaxon%3A67326","Streptomyces melanogenes"]]},{"id":"NCBITaxon:67327","l":"Streptomyces melanosporofaciens","na":1,"nb":1,"a":[["terpenoids/cyclooctatin.yaml","cyclooctatin"]],"b":[["NCBITaxon%3A67327","Streptomyces melanosporofaciens"]]},{"id":"NCBITaxon:67352","l":"Kitasatospora purpeofusca","na":1,"nb":1,"a":[["unclassified/clifednamide-a-2.yaml","clifednamide A"]],"b":[["NCBITaxon%3A67352","Kitasatospora purpeofusca"]]},{"id":"NCBITaxon:67358","l":"Streptomyces roseolus","na":1,"nb":1,"a":[["unclassified/aflatoxin-b1.yaml","aflatoxin B1"]],"b":[["NCBITaxon%3A67358","Streptomyces roseolus"]]},{"id":"NCBITaxon:67363","l":"Streptomyces sindenensis","na":1,"nb":1,"a":[["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"]],"b":[["NCBITaxon%3A67363","Streptomyces sindenensis"]]},{"id":"NCBITaxon:67366","l":"Streptomyces spiroverticillatus","na":1,"nb":1,"a":[["polyketides/tautomycin.yaml","tautomycin"]],"b":[["NCBITaxon%3A67366","Streptomyces spiroverticillatus"]]},{"id":"NCBITaxon:67369","l":"Streptomyces toxytricini","na":1,"nb":1,"a":[["polyketides/lipstatin.yaml","lipstatin"]],"b":[["NCBITaxon%3A67369","Streptomyces toxytricini"]]},{"id":"NCBITaxon:674034","l":"Pseudomonas sp. J465","na":1,"nb":1,"a":[["unclassified/enterobactin.yaml","enterobactin"]],"b":[["NCBITaxon%3A674034","Pseudomonas sp. J465"]]},{"id":"NCBITaxon:679622","l":"Bacillus sp. CS93","na":1,"nb":1,"a":[["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"]],"b":[["NCBITaxon%3A679622","Bacillus sp. CS93"]]},{"id":"NCBITaxon:68172","l":"","na":1,"nb":1,"a":[["polyketides/chrysomycin.yaml","chrysomycin"]],"b":[["NCBITaxon%3A67303","Streptomyces griseoloalbus"]]},{"id":"NCBITaxon:68200","l":"Streptomyces flavofungini","na":1,"nb":1,"a":[["polyketides/desertomycin-a.yaml","desertomycin A"]],"b":[["NCBITaxon%3A68200","Streptomyces flavofungini"]]},{"id":"NCBITaxon:68237","l":"Streptomyces mediolani","na":1,"nb":1,"a":[["terpenoids/isorenieratene.yaml","isorenieratene"]],"b":[["NCBITaxon%3A68237","Streptomyces mediolani"]]},{"id":"NCBITaxon:682634","l":"Serratia plymuthica 4Rx13","na":1,"nb":1,"a":[["terpenoids/sodorifen.yaml","sodorifen"]],"b":[["NCBITaxon%3A682634","Serratia plymuthica 4Rx13"]]},{"id":"NCBITaxon:68268","l":"Streptomyces showdoensis","na":1,"nb":1,"a":[["carbohydrates/showdomycin.yaml","showdomycin"]],"b":[["NCBITaxon%3A68268","Streptomyces showdoensis"]]},{"id":"NCBITaxon:68274","l":"Streptomyces tauricus","na":1,"nb":1,"a":[["polyketides/cinerubin-b.yaml","cinerubin B"]],"b":[["NCBITaxon%3A68274","Streptomyces tauricus"]]},{"id":"NCBITaxon:683228","l":"Micromonospora yangpuensis","na":1,"nb":1,"a":[["polyketides/yangpumicin-a.yaml","yangpumicin A"]],"b":[["NCBITaxon%3A683228","Micromonospora yangpuensis"]]},{"id":"NCBITaxon:684592","l":"uncultured soil bacterium V167","na":1,"nb":1,"a":[["polyketides/erdacin.yaml","erdacin"]],"b":[["NCBITaxon%3A684592","uncultured soil bacterium V167"]]},{"id":"NCBITaxon:686293","l":"Streptomyces sp. 211726","na":1,"nb":1,"a":[["polyketides/azalomycin-f3a.yaml","azalomycin F3a"]],"b":[["NCBITaxon%3A686293","Streptomyces sp. 211726"]]},{"id":"NCBITaxon:687388","l":"Saccharomonospora piscinae","na":1,"nb":1,"a":[["unclassified/taromycin-a.yaml","taromycin A"]],"b":[["NCBITaxon%3A687388","Saccharomonospora piscinae"]]},{"id":"NCBITaxon:69002","l":"Bacillus sp. HIL-Y85/54728","na":1,"nb":1,"a":[["amino_acids_and_peptides/mersacidin.yaml","mersacidin"]],"b":[["NCBITaxon%3A69002","Bacillus sp. HIL-Y85/54728"]]},{"id":"NCBITaxon:691266","l":"Streptomyces ravidus","na":1,"nb":1,"a":[["polyketides/ravidomycin.yaml","ravidomycin"]],"b":[["NCBITaxon%3A691266","Streptomyces ravidus"]]},{"id":"NCBITaxon:69485","l":"Actinoplanes garbadinensis","na":1,"nb":1,"a":[["amino_acids_and_peptides/actagardine.yaml","actagardine"]],"b":[["NCBITaxon%3A69485","Actinoplanes garbadinensis"]]},{"id":"NCBITaxon:697274","l":"Streptomyces sp. 88-682","na":1,"nb":1,"a":[["polyketides/4-hexadecanoyl-3-hydroxy-2-hydroxymethyl-2h-furan-5-one.yaml","4-hexadecanoyl-3-hydroxy-2-(hydroxymethyl)-2H-furan-5-one"]],"b":[["NCBITaxon%3A697274","Streptomyces sp. 88-682"]]},{"id":"NCBITaxon:69771","l":"Penicillium decumbens","na":1,"nb":1,"a":[["polyketides/decumbenone-a.yaml","decumbenone a"]],"b":[["NCBITaxon%3A69771","Penicillium decumbens"]]},{"id":"NCBITaxon:698760","l":"Streptomyces turgidiscabies Car8","na":1,"nb":1,"a":[["unclassified/thaxtomin-a.yaml","thaxtomin A"]],"b":[["NCBITaxon%3A698760","Streptomyces turgidiscabies Car8"]]},{"id":"NCBITaxon:698778","l":"Streptomyces sp. MDG-04-17-069","na":1,"nb":1,"a":[["unclassified/ikarugamycin.yaml","ikarugamycin"]],"b":[["NCBITaxon%3A698778","Streptomyces sp. MDG-04-17-069"]]},{"id":"NCBITaxon:70094","l":"Penicillium adametzioides","na":1,"nb":1,"a":[["unclassified/adametizine-a.yaml","adametizine A"]],"b":[["NCBITaxon%3A70094","Penicillium adametzioides"]]},{"id":"NCBITaxon:70095","l":"Penicillium fellutanum","na":1,"nb":1,"a":[["unclassified/paraherquamide.yaml","paraherquamide"]],"b":[["NCBITaxon%3A70095","Penicillium fellutanum"]]},{"id":"NCBITaxon:703222","l":"Kibdelosporangium sp. MJ126-NF4","na":1,"nb":1,"a":[["polyketides/azicemicin-b.yaml","azicemicin B"]],"b":[["NCBITaxon%3A703222","Kibdelosporangium sp. MJ126-NF4"]]},{"id":"NCBITaxon:703577","l":"Dactylosporangium aurantiacum subsp. hamdenensis","na":1,"nb":1,"a":[["polyketides/tiacumicin-b.yaml","tiacumicin B"]],"b":[["NCBITaxon%3A703577","Dactylosporangium aurantiacum subsp. hamdenensis"]]},{"id":"NCBITaxon:704114","l":"Micromonospora echinospora subsp. challisensis","na":1,"nb":1,"a":[["polyketides/tln-05220.yaml","TLN-05220"]],"b":[["NCBITaxon%3A704114","Micromonospora echinospora subsp. challisensis"]]},{"id":"NCBITaxon:707671","l":"Nostoc sp. 73.1","na":1,"nb":1,"a":[["amino_acids_and_peptides/nodularin.yaml","nodularin"]],"b":[["NCBITaxon%3A707671","Nostoc sp. 73.1"]]},{"id":"NCBITaxon:718015","l":"Micromonospora sp. GMKU326","na":1,"nb":1,"a":[["unclassified/maklamicin.yaml","maklamicin"]],"b":[["NCBITaxon%3A718015","Micromonospora sp. GMKU326"]]},{"id":"NCBITaxon:71945","l":"Hypholoma sublateritium","na":1,"nb":1,"a":[["terpenoids/clavaric-acid.yaml","clavaric acid"]],"b":[["NCBITaxon%3A945553","Hypholoma sublateritium FD-334 SS-4"]]},{"id":"NCBITaxon:720","l":"Actinobacillus lignieresii","na":1,"nb":1,"a":[["unclassified/capsular-polysaccharide.yaml","capsular polysaccharide"]],"b":[["NCBITaxon%3A720","Actinobacillus lignieresii"]]},{"id":"NCBITaxon:72022","l":"Paracoccus methylarcula","na":1,"nb":1,"a":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]],"b":[["NCBITaxon%3A72022","Paracoccus methylarcula"]]},{"id":"NCBITaxon:72122","l":"Tapinella atrotomentosa","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/atromentin.yaml","atromentin"]],"b":[["NCBITaxon%3A72122","Tapinella atrotomentosa"]]},{"id":"NCBITaxon:73501","l":"Cordyceps militaris","na":1,"nb":1,"a":[["unclassified/beauveriolide-i.yaml","beauveriolide I"]],"b":[["NCBITaxon%3A73501","Cordyceps militaris"]]},{"id":"NCBITaxon:73915","l":"Pyrodinium bahamense","na":1,"nb":1,"a":[["alkaloids/saxitoxin.yaml","saxitoxin"]],"b":[["NCBITaxon%3A73915","Pyrodinium bahamense"]]},{"id":"NCBITaxon:746360","l":"Pseudomonas fluorescens WH6","na":1,"nb":1,"a":[["amino_acids_and_peptides/4-formylaminooxyvinylglycine.yaml","4-formylaminooxyvinylglycine"]],"b":[["NCBITaxon%3A746360","Pseudomonas fluorescens WH6"]]},{"id":"NCBITaxon:746675","l":"Streptomyces sp. SF2575","na":1,"nb":1,"a":[["polyketides/sf2575.yaml","SF2575"]],"b":[["NCBITaxon%3A746675","Streptomyces sp. SF2575"]]},{"id":"NCBITaxon:747457","l":"Pseudoalteromonas sp. SANK 73390","na":1,"nb":1,"a":[["polyketides/thiomarinol.yaml","thiomarinol"]],"b":[["NCBITaxon%3A747457","Pseudoalteromonas sp. SANK 73390"]]},{"id":"NCBITaxon:74831","l":"Penicillium albocoremium","na":1,"nb":1,"a":[["unclassified/andrastin-a.yaml","andrastin A"]],"b":[["NCBITaxon%3A74831","Penicillium albocoremium"]]},{"id":"NCBITaxon:749414","l":"Streptomyces bingchenggensis BCW-1","na":1,"nb":1,"a":[["polyketides/nanchangmycin.yaml","nanchangmycin"]],"b":[["NCBITaxon%3A749414","Streptomyces bingchenggensis BCW-1"]]},{"id":"NCBITaxon:749593","l":"Epicoccum sorghinum","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"]],"b":[["NCBITaxon%3A749593","Epicoccum sorghinum"]]},{"id":"NCBITaxon:754256","l":"Actinobacillus pleuropneumoniae serovar 6 str. Femo","na":1,"nb":1,"a":[["unclassified/capsular-polysaccharide.yaml","capsular polysaccharide"]],"b":[["NCBITaxon%3A754256","Actinobacillus pleuropneumoniae serovar 6 str. Femo"]]},{"id":"NCBITaxon:756733","l":"Streptoalloteichus sp. ATCC 53650","na":1,"nb":1,"a":[["unclassified/kedarcidin.yaml","kedarcidin"]],"b":[["NCBITaxon%3A756733","Streptoalloteichus sp. ATCC 53650"]]},{"id":"NCBITaxon:756929","l":"Nocardiopsis sp. TFS65-07","na":1,"nb":1,"a":[["amino_acids_and_peptides/tp-1161.yaml","TP-1161"]],"b":[["NCBITaxon%3A756929","Nocardiopsis sp. TFS65-07"]]},{"id":"NCBITaxon:76021","l":"Amycolatopsis coloradensis","na":1,"nb":1,"a":[["amino_acids_and_peptides/avoparcin.yaml","avoparcin"]],"b":[["NCBITaxon%3A76021","Amycolatopsis coloradensis"]]},{"id":"NCBITaxon:76022","l":"Amycolatopsis sulphurea","na":1,"nb":1,"a":[["polyketides/chelocardin.yaml","chelocardin"]],"b":[["NCBITaxon%3A76022","Amycolatopsis sulphurea"]]},{"id":"NCBITaxon:762837","l":"Streptomyces sp. L-49973","na":1,"nb":1,"a":[["amino_acids_and_peptides/ge81112.yaml","GE81112"]],"b":[["NCBITaxon%3A762837","Streptomyces sp. L-49973"]]},{"id":"NCBITaxon:76334","l":"Nostoc sp. GSV224","na":1,"nb":1,"a":[["unclassified/nostopeptolide-a2.yaml","nostopeptolide A2"]],"b":[["NCBITaxon%3A76334","Nostoc sp. GSV224"]]},{"id":"NCBITaxon:764784","l":"Streptomyces sp. SANK 61196","na":1,"nb":1,"a":[["polyketides/a-74528.yaml","A-74528"]],"b":[["NCBITaxon%3A764784","Streptomyces sp. SANK 61196"]]},{"id":"NCBITaxon:78245","l":"Xanthobacter versatilis","na":1,"nb":1,"a":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]],"b":[["NCBITaxon%3A78245","Xanthobacter versatilis"]]},{"id":"NCBITaxon:78388","l":"Coniothyrium","na":1,"nb":1,"a":[["shikimates_and_phenylpropanoids/mellein.yaml","(-)-Mellein"]],"b":[["NCBITaxon%3A1077358","Coniothyrium glycines"]]},{"id":"NCBITaxon:78579","l":"Thermothelomyces thermophilus","na":1,"nb":1,"a":[["alkaloids/ucs1025a.yaml","ucs1025a"]],"b":[["NCBITaxon%3A78579","Thermothelomyces thermophilus"]]},{"id":"NCBITaxon:78605","l":"Malbranchea aurantiaca","na":1,"nb":1,"a":[["alkaloids/malbrancheamide-a.yaml","malbrancheamide A"]],"b":[["NCBITaxon%3A78605","Malbranchea aurantiaca"]]},{"id":"NCBITaxon:797057","l":"Amycolatopsis orientalis subsp. vinearia","na":1,"nb":1,"a":[["polyketides/be-7585a.yaml","BE-7585A"]],"b":[["NCBITaxon%3A797057","Amycolatopsis orientalis subsp. vinearia"]]},{"id":"NCBITaxon:80859","l":"Streptomyces ribosidificus","na":1,"nb":1,"a":[["carbohydrates/ribostamycin.yaml","ribostamycin"]],"b":[["NCBITaxon%3A80859","Streptomyces ribosidificus"]]},{"id":"NCBITaxon:81097","l":"Cephalosporium","na":1,"nb":1,"a":[["fatty_acids/1233b.yaml","1233B"]],"b":[["NCBITaxon%3A1981612","Cephalosporium sp."]]},{"id":"NCBITaxon:81397","l":"Paracoccus sp. N81106","na":1,"nb":1,"a":[["terpenoids/carotenoid-2.yaml","carotenoid"]],"b":[["NCBITaxon%3A81397","Paracoccus sp. N81106"]]},{"id":"NCBITaxon:82632","l":"Streptomyces sp. MA6548","na":1,"nb":1,"a":[["polyketides/tacrolimus.yaml","tacrolimus"]],"b":[["NCBITaxon%3A82632","Streptomyces sp. MA6548"]]},{"id":"NCBITaxon:83212","l":"Claviceps africana","na":1,"nb":1,"a":[["alkaloids/dihydrolysergic-acid.yaml","dihydrolysergic acid"]],"b":[["NCBITaxon%3A83212","Claviceps africana"]]},{"id":"NCBITaxon:83302","l":"Microbispora corallina","na":1,"nb":1,"a":[["amino_acids_and_peptides/microbisporicin-a2.yaml","microbisporicin A2"]],"b":[["NCBITaxon%3A83302","Microbispora corallina"]]},{"id":"NCBITaxon:83382","l":"Kitasatospora xanthocidica","na":1,"nb":1,"a":[["polyketides/piericidin-a.yaml","piericidin A"]],"b":[["NCBITaxon%3A83382","Kitasatospora xanthocidica"]]},{"id":"NCBITaxon:83542","l":"Fischerella muscicola UTEX 1829","na":1,"nb":1,"a":[["alkaloids/fischerindole-l.yaml","fischerindole L"]],"b":[["NCBITaxon%3A83542","Fischerella muscicola UTEX 1829"]]},{"id":"NCBITaxon:858632","l":"Streptomyces sp. JV178","na":1,"nb":1,"a":[["unclassified/clifednamide-a-2.yaml","clifednamide A"]],"b":[["NCBITaxon%3A858632","Streptomyces sp. JV178"]]},{"id":"NCBITaxon:861528","l":"Streptomyces sp. SCSIO 1666","na":1,"nb":1,"a":[["polyketides/cytorhodin.yaml","cytorhodin"]],"b":[["NCBITaxon%3A861528","Streptomyces sp. SCSIO 1666"]]},{"id":"NCBITaxon:86265","l":"Pseudomonas thivervalensis","na":1,"nb":1,"a":[["amino_acids_and_peptides/histicorrugatin.yaml","histicorrugatin"]],"b":[["NCBITaxon%3A86265","Pseudomonas thivervalensis"]]},{"id":"NCBITaxon:876169","l":"Streptomyces sp. CS","na":1,"nb":1,"a":[["polyketides/naphthomycin-a.yaml","naphthomycin A"]],"b":[["NCBITaxon%3A876169","Streptomyces sp. CS"]]},{"id":"NCBITaxon:882102","l":"Vibrio anguillarum 775","na":1,"nb":1,"a":[["alkaloids/anguibactin.yaml","anguibactin"]],"b":[["NCBITaxon%3A882102","Vibrio anguillarum 775"]]},{"id":"NCBITaxon:887449","l":"Streptomyces herbaceus","na":1,"nb":1,"a":[["carbohydrates/adenine-arabinoside.yaml","adenine arabinoside"]],"b":[["NCBITaxon%3A887449","Streptomyces herbaceus"]]},{"id":"NCBITaxon:889282","l":"Polyangium spumosum","na":1,"nb":1,"a":[["unclassified/antalid.yaml","antalid"]],"b":[["NCBITaxon%3A889282","Polyangium spumosum"]]},{"id":"NCBITaxon:889487","l":"Streptomyces sp. S4","na":1,"nb":1,"a":[["unclassified/antimycin-a.yaml","antimycin A"]],"b":[["NCBITaxon%3A889487","Streptomyces sp. S4"]]},{"id":"NCBITaxon:89141","l":"Cordyceps farinosa","na":1,"nb":1,"a":[["unclassified/roquefortine-c.yaml","roquefortine C"]],"b":[["NCBITaxon%3A89141","Cordyceps farinosa"]]},{"id":"NCBITaxon:89489","l":"Monascus ruber","na":1,"nb":1,"a":[["polyketides/citrinin.yaml","(+)-citrinin"]],"b":[["NCBITaxon%3A89489","Monascus ruber"]]},{"id":"NCBITaxon:904685","l":"Penicillium sizovae","na":1,"nb":1,"a":[["alkaloids/agroclavine-i.yaml","Agroclavine I"]],"b":[["NCBITaxon%3A904685","Penicillium sizovae"]]},{"id":"NCBITaxon:91465","l":"Pseudomonas sp. MIS38","na":1,"nb":1,"a":[["unclassified/arthrofactin-a.yaml","arthrofactin A"]],"b":[["NCBITaxon%3A91465","Pseudomonas sp. MIS38"]]},{"id":"NCBITaxon:91752","l":"Hericium erinaceus","na":1,"nb":1,"a":[["terpenoids/cyatha-3-12-diene.yaml","(-)-Cyatha-3,12-diene"]],"b":[["NCBITaxon%3A91752","Hericium erinaceus"]]},{"id":"NCBITaxon:92630","l":"Metarhizium flavoviride","na":1,"nb":1,"a":[["unclassified/metarhizin-a.yaml","metarhizin A"]],"b":[["NCBITaxon%3A92630","Metarhizium flavoviride"]]},{"id":"NCBITaxon:930400","l":"Nocardia sp. ATCC 202099","na":1,"nb":1,"a":[["amino_acids_and_peptides/nocathiacin.yaml","nocathiacin"]],"b":[["NCBITaxon%3A930400","Nocardia sp. ATCC 202099"]]},{"id":"NCBITaxon:932694","l":"Streptomyces sp. OH-4156","na":1,"nb":1,"a":[["unclassified/cypemycin.yaml","cypemycin"]],"b":[["NCBITaxon%3A932694","Streptomyces sp. OH-4156"]]},{"id":"NCBITaxon:933388","l":"Penicillium oxalicum 114-2","na":1,"nb":1,"a":[["unclassified/atpenin-b.yaml","atpenin B"]],"b":[["NCBITaxon%3A933388","Penicillium oxalicum 114-2"]]},{"id":"NCBITaxon:936046","l":"Agaricus bisporus var. bisporus H97","na":1,"nb":1,"a":[["polyketides/kojic-acid.yaml","kojic acid"]],"b":[["NCBITaxon%3A936046","Agaricus bisporus var. bisporus H97"]]},{"id":"NCBITaxon:93625","l":"Psilocybe cyanescens","na":1,"nb":1,"a":[["alkaloids/psilocybin.yaml","psilocybin"]],"b":[["NCBITaxon%3A93625","Psilocybe cyanescens"]]},{"id":"NCBITaxon:945553","l":"Hypholoma sublateritium FD-334 SS-4","na":1,"nb":1,"a":[["terpenoids/naematolin.yaml","naematolin"]],"b":[["NCBITaxon%3A945553","Hypholoma sublateritium FD-334 SS-4"]]},{"id":"NCBITaxon:97096","l":"Eutypa lata","na":1,"nb":1,"a":[["terpenoids/eutypinic-acid.yaml","eutypinic acid"]],"b":[["NCBITaxon%3A97096","Eutypa lata"]]},{"id":"NCBITaxon:97401","l":"Streptomyces sapporonensis","na":1,"nb":1,"a":[["unclassified/bicozamycin.yaml","bicozamycin"]],"b":[["NCBITaxon%3A97401","Streptomyces sapporonensis"]]},{"id":"NCBITaxon:984208","l":"Sphaerospermopsis torques-reginae ITEP-024","na":1,"nb":1,"a":[["alkaloids/guanitoxin.yaml","guanitoxin"]],"b":[["NCBITaxon%3A984208","Sphaerospermopsis torques-reginae ITEP-024"]]},{"id":"NCBITaxon:985895","l":"Plenodomus lingam JN3","na":1,"nb":1,"a":[["terpenoids/2-cis-abscisic-acid.yaml","2-cis-abscisic acid"]],"b":[["NCBITaxon%3A985895","Plenodomus lingam JN3"]]},{"id":"NCBITaxon:989499","l":"Vibrio anguillarum RV22","na":1,"nb":1,"a":[["amino_acids_and_peptides/vanchrobactin.yaml","vanchrobactin"]],"b":[["NCBITaxon%3A989499","Vibrio anguillarum RV22"]]},{"id":"NCBITaxon:991125","l":"Streptomyces sp. TP-A2060","na":1,"nb":1,"a":[["alkaloids/yatakemycin.yaml","yatakemycin"]],"b":[["NCBITaxon%3A991125","Streptomyces sp. TP-A2060"]]},{"id":"NCBITaxon:994086","l":"Hydnomerulius pinastri MD-312","na":1,"nb":1,"a":[["fatty_acids/methyl-2s-4-methyl-2-octanoylamino-pentanoate.yaml","methyl (2S)-4-methyl-2-(octanoylamino)pentanoate"]],"b":[["NCBITaxon%3A994086","Hydnomerulius pinastri MD-312"]]},{"id":"NCBITaxon:996287","l":"Streptomyces sp. NRRL 30471","na":1,"nb":1,"a":[["amino_acids_and_peptides/muraymycin-c1.yaml","muraymycin C1"]],"b":[["NCBITaxon%3A996287","Streptomyces sp. NRRL 30471"]]},{"id":"NCBITaxon:999541","l":"Burkholderia gladioli BSR3","na":1,"nb":1,"a":[["fatty_acids/caryoynencin.yaml","caryoynencin"]],"b":[["NCBITaxon%3A999541","Burkholderia gladioli BSR3"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/ProteinTraitsMech--AntibioticMech.json b/assets/fleet/edges/ProteinTraitsMech--AntibioticMech.json index 2a6f949..6b8f1e6 100644 --- a/assets/fleet/edges/ProteinTraitsMech--AntibioticMech.json +++ b/assets/fleet/edges/ProteinTraitsMech--AntibioticMech.json @@ -1 +1 @@ -{"a":"ProteinTraitsMech","b":"AntibioticMech","base":{"ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record=","AntibioticMech":"https://culturebotai.github.io/AntibioticMech/pages/"},"n":2435,"by":{"ARO":1740,"CHEBI":594,"NCBITaxon":79,"UniProt":20,"GO":2},"terms":[{"id":"ARO:0000032","l":"","na":3352,"nb":55,"a":[["ARO%3A3001815","ACC-1"],["ARO%3A3006228","ACC-1a"],["ARO%3A3006229","ACC-1b"],["ARO%3A3006230","ACC-1c"],["ARO%3A3006231","ACC-1d"],["ARO%3A3001816","ACC-2"]],"b":[["antibacterial/cefacetrile.html","cefacetrile"],["antibacterial/cefaclor.html","cefaclor"],["antibacterial/cefadroxil.html","cefadroxil"],["antibacterial/cefaloridine.html","cefaloridine"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefamandole.html","cefamandole"]]},{"id":"ARO:0000000","l":"","na":143,"nb":45,"a":[["ARO%3A3005099","23S rRNA (adenine(2058)-N(6))-methyltransferase Erm(A)"],["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3004125","23S rRNA with mutation conferring resistance to macrolide antibiotics"],["ARO%3A3005001","50S rRNA with mutation conferring resistance to macrolide antibiotics"],["ARO%3A3000772","AdeIJK"],["ARO%3A3004133","Brachyspira hyodysenteriae 23S rRNA with mutation conferring resistance to tylosin"]],"b":[["antibacterial/5-o-mycaminosyltylonolide.html","5-O-mycaminosyltylonolide"],["antibacterial/aplasmomycin.html","(+)-aplasmomycin"],["antibacterial/azalomycin-f.html","azalomycin F"],["antibacterial/azithromycin.html","azithromycin"],["antibacterial/boromycin.html","boromycin"],["antibacterial/brefeldin-a.html","brefeldin A"]]},{"id":"CHEBI:17478","l":"","na":62,"nb":33,"a":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.1.2","alcohol dehydrogenase (NADP(+))"],["EC%3A1.1.1.71","alcohol dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.2.8","alcohol dehydrogenase (cytochrome c)"],["EC%3A1.1.3.13","alcohol oxidase"]],"b":[["antibacterial/5-o-mycaminosyltylonolide.html","5-O-mycaminosyltylonolide"],["antibacterial/fatsicarpain-c.html","fatsicarpain C"],["antibacterial/josamycin.html","josamycin"],["antibacterial/rosaramicin.html","rosaramicin"],["antibacterial/spiramycin-i.html","spiramycin I"],["antibacterial/spiramycin-ii.html","spiramycin II"]]},{"id":"ARO:0000016","l":"","na":331,"nb":32,"a":[["ARO%3A3004272","16S rRNA methyltransferase (A1408)"],["ARO%3A3004271","16S rRNA methyltransferase (G1405)"],["ARO%3A3003666","16s rRNA with mutation conferring resistance to aminoglycoside antibiotics"],["ARO%3A3004936","23s rRNA with mutation conferring resistance to aminoglycoside antibiotics"],["ARO%3A3000341","AAC(2')"],["ARO%3A3007393","AAC(2')-I"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/apramycin.html","apramycin"],["antibacterial/arbekacin.html","arbekacin"]]},{"id":"ARO:0000001","l":"","na":223,"nb":31,"a":[["ARO%3A3005113","AAC(6')-Ib-cr"],["ARO%3A3002547","AAC(6')-Ib-cr1"],["ARO%3A3007770","aac(6')-Ib-cr10"],["ARO%3A3007771","aac(6')-Ib-cr11"],["ARO%3A3005112","AAC(6')-Ib-cr3"],["ARO%3A3005114","AAC(6')-Ib-cr4"]],"b":[["antibacterial/7-3-aminopyrrolidin-1-yl-1-2-4-difluorophenyl-6-fluoro-4-oxo-1-4-dihyd.html","7-(3-aminopyrrolidin-1-yl)-1-(2,4-difluorophenyl)-6-fluoro-4-oxo-1,4-dihydro-1,8-naphthyridine-3-carboxylic"],["antibacterial/9-fluoro-5-methyl-1-oxo-6-7-dihydro-1h-5h-pyrido-3-2-1-ij-quinoline-2-.html","9-fluoro-5-methyl-1-oxo-6,7-dihydro-1H,5H-pyrido[3,2,1-ij]quinoline-2-carboxylic"],["antibacterial/balofloxacin.html","Balofloxacin"],["antibacterial/cinoxacin.html","cinoxacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/clinafloxacin.html","clinafloxacin"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":145,"nb":30,"a":[["IDPO%3A0000033","flexible linker"],["IDPO%3A0000014","order to disorder"],["IDPO%3A0000004","pre-molten globule"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"]]},{"id":"CHEBI:15734","l":"","na":29,"nb":59,"a":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.1.2","alcohol dehydrogenase (NADP(+))"],["EC%3A1.1.1.71","alcohol dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.2.8","alcohol dehydrogenase (cytochrome c)"],["EC%3A1.1.3.13","alcohol oxidase"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/dihydroconiferyl-alcohol.html","dihydroconiferyl alcohol"],["antibacterial/equisetin.html","equisetin"],["antibacterial/hexan-1-ol.html","hexan-1-ol"],["antibacterial/lyoniresinol-3-%CE%B1-o-%CE%B2-d-glucopyranoside.html","(+)-lyoniresinol-3-α-O-β-D-glucopyranoside"],["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3000008","l":"","na":3168,"nb":27,"a":[["ARO%3A3001815","ACC-1"],["ARO%3A3006228","ACC-1a"],["ARO%3A3006229","ACC-1b"],["ARO%3A3006230","ACC-1c"],["ARO%3A3006231","ACC-1d"],["ARO%3A3001816","ACC-2"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aspoxicillin.html","aspoxicillin"],["antibacterial/azidocillin.html","azidocillin"],["antibacterial/azlocillin.html","azlocillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":30,"nb":22,"a":[["Pfam%3APF08787","Alginate lyase"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF08218","Citrate lyase ligase C-terminal domain"],["Pfam%3APF13727","CoA-binding domain"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["Pfam%3APF20714","DpiA-like helix-turn-helix domain"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"]]},{"id":"ARO:3000081","l":"","na":120,"nb":18,"a":[["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3004256","Bleomycin resistant protein"],["ARO%3A3005036","BLMT"],["ARO%3A3001205","BRP(MBL)"],["ARO%3A3004561","Clostridioides difficile murG with mutation conferring resistance to vancomycin"],["ARO%3A3004681","Clostridioides difficile rpoC with mutation conferring resistance to vancomycin"]],"b":[["antibacterial/a47934.html","A47934"],["antibacterial/antibiotic-a40926.html","antibiotic A40926"],["antibacterial/avoparcin.html","avoparcin"],["antibacterial/balhimycin.html","balhimycin"],["antibacterial/bleomycin-a2.html","bleomycin A2"],["antibacterial/bleomycin-b2.html","bleomycin B2"]]},{"id":"ARO:0000026","l":"","na":98,"nb":13,"a":[["ARO%3A3005099","23S rRNA (adenine(2058)-N(6))-methyltransferase Erm(A)"],["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3004182","23S rRNA with mutation conferring resistance to streptogramins antibiotics"],["ARO%3A3000202","Cfr 23S ribosomal RNA methyltransferase"],["ARO%3A3004649","cfr(B)"],["ARO%3A3004609","cfr(B) Group"]],"b":[["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/madumycin-ii.html","madumycin II"],["antibacterial/ostreogrycin-b3.html","ostreogrycin B3"],["antibacterial/patricin-a.html","patricin A"],["antibacterial/patricin-b.html","patricin B"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":46,"nb":13,"a":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF13166","AAA domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF27533","CapK C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/bromodeoxytopsentin.html","bromodeoxytopsentin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"ARO:3000053","l":"","na":203,"nb":12,"a":[["ARO%3A3003667","16s rRNA with mutation conferring resistance to peptide antibiotics"],["ARO%3A3003581","Acinetobacter mutant Lpx gene conferring resistance to colistin"],["ARO%3A3007430","alm glycyl carrier protein"],["ARO%3A3007432","alm glycyltransferase"],["ARO%3A3007433","almE"],["ARO%3A3007434","almEFG"]],"b":[["antibacterial/defensin.html","defensin"],["antibacterial/epinecidin-1.html","epinecidin-1"],["antibacterial/magainin-1.html","magainin 1"],["antibacterial/magainin-2.html","magainin 2"],["antibacterial/magainin-a.html","magainin A"],["antibacterial/magainin-b.html","magainin B"]]},{"id":"ARO:3001219","l":"","na":12,"nb":25,"a":[["ARO%3A3003357","Clostridioides difficile EF-Tu mutants conferring resistance to elfamycin"],["ARO%3A3001312","elfamycin resistant EF-Tu"],["ARO%3A3003875","Enterococcus faecium EF-Tu mutants conferring resistance to elfamycin"],["ARO%3A3003438","Enterococcus faecium EF-Tu mutants conferring resistance to GE2270A"],["ARO%3A3003358","Escherichia coli EF-Tu mutants conferring resistance to elfamycin"],["ARO%3A3003370","Escherichia coli EF-Tu mutants conferring resistance to Enacyloxin IIa"]],"b":[["antibacterial/amythiamicin-a.html","amythiamicin A"],["antibacterial/aurodox.html","aurodox"],["antibacterial/dihydromocimycin.html","dihydromocimycin"],["antibacterial/efrotomycin.html","efrotomycin"],["antibacterial/enacyloxin-iia.html","enacyloxin IIa"],["antibacterial/factumycin.html","factumycin"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":19,"nb":12,"a":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"],["Pfam%3APF18173","Bacterial HORMA domain 2"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["Pfam%3APF27322","Cap8 HORMA domain"],["Pfam%3APF01526","Tn3 transposase DDE domain"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3007499","l":"","na":11,"nb":18,"a":[["ARO%3A3007549","antibiotic resistant ergosterol biosynthesis pathway transcription factor"],["ARO%3A3007565","Aspergillus spp. cyp51A with mutations conferring resistance to triazoles antibiotics"],["ARO%3A3007670","Aspergillus spp. Hmg1 with mutations conferring resistance to triazoles antibiotics"],["ARO%3A3007666","Candida spp. cyp51A1 with mutations conferring resistance to triazoles and imidazole antibiotics"],["ARO%3A3007524","Candida spp. ERG11 with mutations conferring resistance to azole antibiotics"],["ARO%3A3007640","Candida spp. pleiotropic drug resistance factor 1"]],"b":[["antifungal/bromuconazole.html","bromuconazole"],["antifungal/cyproconazole.html","cyproconazole"],["antifungal/difenoconazole.html","difenoconazole"],["antifungal/epoxiconazole.html","epoxiconazole"],["antifungal/fenbuconazole.html","fenbuconazole"],["antifungal/fluconazole.html","fluconazole"]]},{"id":"CHEBI:17087","l":"","na":17,"nb":11,"a":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.1.184","carbonyl reductase (NADPH)"],["EC%3A1.1.1.2","alcohol dehydrogenase (NADP(+))"],["EC%3A1.1.3.18","secondary-alcohol oxidase"],["EC%3A1.1.98.5","secondary-alcohol dehydrogenase (coenzyme-F420)"],["EC%3A1.4.1.28","secondary-alkyl amine dehydrogenase [NAD(P)(+)]"]],"b":[["antibacterial/6-diazo-5-oxo-l-norleucine.html","6-diazo-5-oxo-L-norleucine"],["antibacterial/dehydroacetic-acid.html","dehydroacetic acid"],["antibacterial/ucs1025-a.html","UCS1025 A"],["antifungal/1-2-3-dihydro-1h-pyrrol-1-yl-2-methyldecane-1-3-dione.html","1-(2,3-dihydro-1H-pyrrol-1-yl)-2-methyldecane-1,3-dione"],["antifungal/e-1-2-3-dihydro-1h-pyrrol-1-yl-2-methyldec-8-ene-1-3-dione.html","(E)-1-(2,3-dihydro-1H-pyrrol-1-yl)-2-methyldec-8-ene-1,3-dione"],["antiprotozoal/ct3.html","CT3"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":11,"nb":15,"a":[["Pfam%3APF22829","HphA C-terminal domain"],["Pfam%3APF22828","HphA N-terminal heme-binding domain"],["Pfam%3APF28205","Ciprofloxacin tolerance protein"],["Pfam%3APF19582","Solute-binding protein AdeT 1/2"],["PROSITE%3APS00337","Beta-lactamase class-D active site"],["Pfam%3APF24575","Surface lipoprotein assembly modifier, N-terminal TPR repeats"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3000282","l":"","na":13,"nb":11,"a":[["ARO%3A3007426","ECF transporter S component"],["ARO%3A3003386","Escherichia coli folP with mutation conferring resistance to sulfonamides"],["ARO%3A3000386","MexAB-OprM"],["ARO%3A3004873","Neisseria gonorrhoeae folP with mutation conferring resistance to sulfonamides"],["ARO%3A3007749","Salmonella gallinarum folP with mutation conferring resistance to sulfonamides"],["ARO%3A3003387","Streptococcus pyogenes folP with mutation conferring resistance to sulfonamides"]],"b":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfacetamide.html","sulfacetamide"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfamerazine.html","sulfamerazine"],["antibacterial/sulfamethazine.html","sulfamethazine"],["antibacterial/sulfamethizole.html","sulfamethizole"]]},{"id":"CHEBI:33853","l":"","na":10,"nb":185,"a":[["EC%3A2.1.1.382","methoxylated aromatic compound--corrinoid protein Co-methyltransferase"],["EC%3A2.8.2.1","aryl sulfotransferase"],["EC%3A2.8.2.22","aryl-sulfate sulfotransferase"],["EC%3A3.1.1.2","arylesterase"],["EC%3A3.1.6.1","arylsulfatase (type I)"],["RHEA%3A72283","a methoxylated aromatic compound + Co(I)-[methoxylated-aromatic-compound-specific corrinoid protein] + H(+) = a phenol + methyl-Co(III)-[methoxylated-aromatic-compound-specific corrinoid protein]"]],"b":[["antibacterial/2e-6z-13-hydroxy-1-2-hydroxy-5-methoxy-3-methylphenyl-3-7-11-15-tetram.html","(2E,6Z)-13-hydroxy-1-(2-hydroxy-5-methoxy-3-methylphenyl)-3,7,11,15-tetramethylhexadeca-2,6,14-triene-5,12-dione"],["antibacterial/5e-7-oxozeaenol.html","5E-7-oxozeaenol"],["antibacterial/5z-7-oxozeaenol.html","5Z-7-oxozeaenol"],["antibacterial/7-hydroxy-5-hydroxymethyl-2h-benzo-1-4-thiazin-3-one.html","7-hydroxy-5-hydroxymethyl-2H-benzo[1,4]thiazin-3-one"],["antibacterial/actinodaphnine.html","actinodaphnine"],["antibacterial/anthramycin.html","anthramycin"]]},{"id":"CHEBI:35681","l":"","na":10,"nb":139,"a":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.1.184","carbonyl reductase (NADPH)"],["EC%3A1.1.1.2","alcohol dehydrogenase (NADP(+))"],["EC%3A1.1.3.18","secondary-alcohol oxidase"],["EC%3A1.1.98.5","secondary-alcohol dehydrogenase (coenzyme-F420)"],["RHEA%3A10740","a secondary alcohol + NAD(+) = a ketone + NADH + H(+)"]],"b":[["antibacterial/14-norpseurotin-a.html","14-norpseurotin A"],["antibacterial/2e-6z-13-hydroxy-1-2-hydroxy-5-methoxy-3-methylphenyl-3-7-11-15-tetram.html","(2E,6Z)-13-hydroxy-1-(2-hydroxy-5-methoxy-3-methylphenyl)-3,7,11,15-tetramethylhexadeca-2,6,14-triene-5,12-dione"],["antibacterial/5e-7-oxozeaenol.html","5E-7-oxozeaenol"],["antibacterial/5z-7-oxozeaenol.html","5Z-7-oxozeaenol"],["antibacterial/asperlactone.html","asperlactone"],["antibacterial/aspyrone.html","aspyrone"]]},{"id":"ARO:3000050","l":"","na":50,"nb":9,"a":[["ARO%3A3003669","16S rRNA with mutation conferring resistance to tetracycline derivatives"],["ARO%3A3003499","Cutibacterium acnes 16S rRNA mutation conferring resistance to tetracycline"],["ARO%3A3003411","Escherichia coli 16S rRNA (rrnB) mutation conferring resistance to tetracycline"],["ARO%3A3003410","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to tetracycline"],["ARO%3A3004126","Escherichia coli LamB"],["ARO%3A3003510","Helicobacter pylori 16S rRNA mutation conferring resistance to tetracycline"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/eravacycline.html","eravacycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/omadacycline.html","omadacycline"]]},{"id":"CHEBI:18379","l":"","na":9,"nb":21,"a":[["EC%3A3.5.5.1","nitrilase"],["EC%3A4.8.1.2","aliphatic aldoxime dehydratase"],["EC%3A4.8.1.5","thiohydroximate-O-sulfate sulfate/sulfur-lyase (nitrile-forming)"],["RHEA%3A21724","a nitrile + 2 H2O = a carboxylate + NH4(+)"],["RHEA%3A59956","a (Z)-N-(sulfonatooxy)alkanimidothioate = a nitrile + sulfur + sulfate"],["RHEA%3A11316","an aliphatic aldoxime = a nitrile + H2O"]],"b":[["antibacterial/bay11-7085.html","BAY11-7085"],["antibacterial/cccp.html","CCCP"],["antibacterial/finafloxacin.html","finafloxacin"],["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/cyazofamid.html","cyazofamid"],["antifungal/cymoxanil.html","cymoxanil"]]},{"id":"ARO:0000020","l":"","na":2703,"nb":8,"a":[["ARO%3A3006863","AAK-1"],["ARO%3A3005387","AAK beta-lactamase"],["ARO%3A3003809","Acinetobacter baumannii OprD conferring resistance to imipenem"],["ARO%3A3001821","ACT-1"],["ARO%3A3001832","ACT-10"],["ARO%3A3007883","ACT-100"]],"b":[["antibacterial/biapenem.html","biapenem"],["antibacterial/doripenem.html","doripenem"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"],["antibacterial/panipenem.html","panipenem"]]},{"id":"NCBITaxon:2697049","l":"Severe acute respiratory syndrome coronavirus 2","na":18,"nb":8,"a":[["IDPO%3A0000002","disorder"],["IDPO%3A0000033","flexible linker"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000041","glycosylation display site"],["IDPO%3A0000048","limited proteolysis display site"],["IDPO%3A0000037","molecular recognition display site"]],"b":[["antibacterial/3-6-diaminoacridine.html","3,6-diaminoacridine"],["antibacterial/anacardic-acid.html","anacardic acid"],["antibacterial/baicalein.html","baicalein"],["antibacterial/ebselen.html","ebselen"],["antibacterial/hexachlorophene.html","hexachlorophene"],["antifungal/disulfiram.html","disulfiram"]]},{"id":"ARO:3000034","l":"","na":8,"nb":9,"a":[["ARO%3A3002895","SAT-2"],["ARO%3A3002898","SAT-3"],["ARO%3A3002897","SAT-4"],["ARO%3A3005045","SatA"],["ARO%3A3004699","sta"],["ARO%3A3000869","streptothricin acetyltransferase (SAT)"]],"b":[["antibacterial/a201a.html","A201A"],["antibacterial/caprazamycin.html","caprazamycin"],["antibacterial/cordycepin.html","cordycepin"],["antibacterial/pseudouridimycin.html","pseudouridimycin"],["antibacterial/puromycin.html","puromycin"],["antibacterial/streptothricin-f.html","streptothricin F"]]},{"id":"CHEBI:33709","l":"amino acid","na":8,"nb":8,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.23","The Dicarboxylate/Amino Acid:Cation (Na+ or H+) Symporter (DAACS) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A1.V.1","The Filamentous Cyanobacterial Septal Pore (Septum) Family"],["TCDB%3A1.A.24","The Gap Junction-forming Connexin (Connexin) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/7-3-aminopyrrolidin-1-yl-1-2-4-difluorophenyl-6-fluoro-4-oxo-1-4-dihyd.html","7-(3-aminopyrrolidin-1-yl)-1-(2,4-difluorophenyl)-6-fluoro-4-oxo-1,4-dihydro-1,8-naphthyridine-3-carboxylic"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/pipemidic-acid.html","pipemidic acid"],["antibacterial/trovafloxacin.html","trovafloxacin"],["antifungal/mediomycin-a.html","mediomycin A"],["antifungal/mediomycin-b.html","mediomycin B"]]},{"id":"ARO:3000419","l":"quinolone resistance protein (qnr)","na":111,"nb":7,"a":[["ARO%3A3003844","mfd"],["ARO%3A3003035","mfpA"],["ARO%3A3002707","QnrA1"],["ARO%3A3002708","QnrA2"],["ARO%3A3002709","QnrA3"],["ARO%3A3002710","QnrA4"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"NCBITaxon:237561","l":"Candida albicans (strain SC5314 / ATCC MYA-2876)","na":46,"nb":7,"a":[["Pfam%3APF26023","Alanine--tRNA ligase domain"],["Pfam%3APF09757","Arb2-like domain"],["Pfam%3APF25026","Asd-4-like domain"],["Pfam%3APF07741","Brf1-like TBP-binding domain"],["Pfam%3APF11766","Agglutinin-like protein, N-terminal domain"],["Pfam%3APF16892","Chitin biosynthesis protein CHS5 N-terminus"]],"b":[["antibacterial/brefeldin-a.html","brefeldin A"],["antifungal/anidulafungin.html","anidulafungin"],["antifungal/caspofungin.html","caspofungin"],["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/micafungin.html","micafungin"]]},{"id":"CHEBI:87211","l":"","na":7,"nb":18,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.24","The Mycobacterial Porin (MBP) Family"],["TCDB%3A9.B.325","The Putative ABC4 (ABC4) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/dextrofloxacin.html","dextrofloxacin"],["antibacterial/difloxacin.html","difloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/fleroxacin.html","fleroxacin"],["antibacterial/gemifloxacin.html","gemifloxacin"]]},{"id":"ARO:3000384","l":"AcrAB-TolC","na":16,"nb":7,"a":[["ARO%3A3000384","AcrAB-TolC"],["ARO%3A3000702","acrR"],["ARO%3A3003374","Enterobacter aerogenes acrR with mutation conferring multidrug antibiotic resistance"],["ARO%3A3004108","Enterobacter cloacae rob"],["ARO%3A3003807","Escherichia coli AcrAB-TolC with AcrR mutation conferring resistance to ciprofloxacin, tetracycline, and ceftazidime"],["ARO%3A3003378","Escherichia coli AcrAB-TolC with MarR mutations conferring resistance to ciprofloxacin and tetracycline"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/tetracycline.html","tetracycline"],["antibacterial/tigecycline.html","tigecycline"],["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3000386","l":"MexAB-OprM","na":7,"nb":15,"a":[["ARO%3A3000831","CpxR"],["ARO%3A3000377","MexA"],["ARO%3A3000386","MexAB-OprM"],["ARO%3A3000378","MexB"],["ARO%3A3000506","MexR"],["ARO%3A3000819","nalD"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/azithromycin.html","azithromycin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3000103","l":"","na":12,"nb":7,"a":[["ARO%3A3003830","Aminocoumarin resistant alaS"],["ARO%3A3003840","aminocoumarin resistant cysB"],["ARO%3A3000479","aminocoumarin resistant gyrB"],["ARO%3A3000457","aminocoumarin resistant parE"],["ARO%3A3000480","aminocoumarin resistant parY"],["ARO%3A3003787","aminocoumarin self resistant parY"]],"b":[["antibacterial/chrysomycin-a.html","chrysomycin A"],["antibacterial/clorobiocin.html","clorobiocin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/declovanillobiocin.html","declovanillobiocin"],["antibacterial/isovanillobiocin.html","isovanillobiocin"],["antibacterial/novobiocin.html","novobiocin"]]},{"id":"UniProt:P0DTD1","l":"","na":11,"nb":7,"a":[["EC%3A3.4.22.69","SARS coronavirus main proteinase"],["IDPO%3A0000002","disorder"],["Pfam%3APF12379","Betacoronavirus replicase NSP3, N-terminal"],["ELM%3AELME000557","DEG_Cend_TRIM7_1"],["proteintraitsmech%3ABIOLIP_A1IB6","A1IB6-binding site"],["proteintraitsmech%3ABIOLIP_BJ6","BJ6-binding site"]],"b":[["antibacterial/3-6-diaminoacridine.html","3,6-diaminoacridine"],["antibacterial/anacardic-acid.html","anacardic acid"],["antibacterial/baicalein.html","baicalein"],["antibacterial/ebselen.html","ebselen"],["antibacterial/hexachlorophene.html","hexachlorophene"],["antifungal/disulfiram.html","disulfiram"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":9,"nb":7,"a":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF25954","CusB-like, beta-barrel domain"],["Pfam%3APF13438","Domain of unknown function (DUF4113)"],["Pfam%3APF03767","HAD superfamily, subfamily IIIB (Acid phosphatase)"],["Pfam%3APF03496","ADP-ribosyltransferase exoenzyme"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":8,"nb":7,"a":[["Pfam%3APF01721","Class II bacteriocin"],["Pfam%3APF13700","Domain of unknown function (DUF4158)"],["Pfam%3APF07478","D-ala D-ala ligase C-terminus"],["Pfam%3APF01820","D-ala D-ala ligase N-terminus"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"],["PROSITE%3APS00843","D-alanine--D-alanine ligase signature 1"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":7,"nb":7,"a":[["Pfam%3APF11766","Agglutinin-like protein, N-terminal domain"],["Pfam%3APF16856","Cell division control protein 4 dimerisation domain"],["Pfam%3APF18325","Fatty acid synthase subunit alpha Acyl carrier domain"],["Pfam%3APF18314","Fatty acid synthase type I helical domain"],["Pfam%3APF17828","N-terminal domain in fatty acid synthase subunit beta"],["Pfam%3APF05388","Carboxypeptidase Y pro-peptide"]],"b":[["antibacterial/brefeldin-a.html","brefeldin A"],["antifungal/anidulafungin.html","anidulafungin"],["antifungal/caspofungin.html","caspofungin"],["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/micafungin.html","micafungin"]]},{"id":"CHEBI:132124","l":"","na":91,"nb":6,"a":[["EC%3A1.1.5.10","D-2-hydroxyacid dehydrogenase (quinone)"],["EC%3A1.1.5.11","1-butanol dehydrogenase (quinone)"],["EC%3A1.1.5.12","D-lactate dehydrogenase (quinone)"],["EC%3A1.1.5.13","(S)-2-hydroxyglutarate dehydrogenase"],["EC%3A1.1.5.3","glycerol-3-phosphate dehydrogenase"],["EC%3A1.1.5.4","malate dehydrogenase (quinone)"]],"b":[["antiprotozoal/r-4-methoxydalbergione.html","(R)-4'-methoxydalbergione"],["antiviral/geldanamycin.html","geldanamycin"],["unspecified/auricin.html","auricin"],["unspecified/dutomycin.html","dutomycin"],["unspecified/herbimycin.html","herbimycin"],["unspecified/primin.html","primin"]]},{"id":"ARO:3000670","l":"","na":27,"nb":6,"a":[["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3004178","23S rRNA with mutation conferring resistance to pleuromutilin antibiotics"],["ARO%3A3004472","lsa-type ABC-F protein"],["ARO%3A3000300","lsaA"],["ARO%3A3003111","lsaB"],["ARO%3A3003112","lsaC"]],"b":[["antibacterial/azamulin.html","azamulin"],["antibacterial/lefamulin.html","lefamulin"],["antibacterial/pleuromutilin.html","pleuromutilin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/valnemulin.html","valnemulin"]]},{"id":"ARO:3005386","l":"","na":15,"nb":6,"a":[["ARO%3A3004284","antibiotic resistant fabG"],["ARO%3A3004270","antibiotic resistant fabI"],["ARO%3A3000309","emrD"],["ARO%3A3004049","Escherichia coli fabG mutations conferring resistance to triclosan"],["ARO%3A3004045","Escherichia coli fabI mutations conferring resistance to isoniazid and triclosan"],["ARO%3A3004335","Escherichia coli gyrA with mutation conferring resistance to triclosan"]],"b":[["antibacterial/3-6-diaminoacridine.html","3,6-diaminoacridine"],["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"],["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/triclosan.html","triclosan"],["biocide/acriflavine.html","acriflavine"],["biocide/thiacalixarene-derivatives.html","thiacalixarene derivatives"]]},{"id":"ARO:3000797","l":"MexCD-OprJ","na":6,"nb":7,"a":[["ARO%3A3000797","MexCD-OprJ"],["ARO%3A3004061","MexCD-OprJ with type A NfxB mutation"],["ARO%3A3004062","MexCD-OprJ with type B NfxB mutation"],["ARO%3A3000820","NfxB"],["ARO%3A3004059","Type A NfxB"],["ARO%3A3004060","Type B NfxB"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/gentamicin-c.html","gentamicin C"],["antibacterial/novobiocin.html","novobiocin"],["antibacterial/ofloxacin.html","ofloxacin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"CHEBI:36836","l":"","na":7,"nb":6,"a":[["EC%3A1.1.1.270","3beta-hydroxysteroid 3-dehydrogenase"],["EC%3A2.3.1.77","triacylglycerol--sterol O-acyltransferase"],["RHEA%3A16897","a 3beta-hydroxysteroid + a triacylglycerol = a 3beta-hydroxysteroid ester + a diacylglycerol"],["RHEA%3A78195","a 3beta-hydroxysteroid + a triacylglycerol = a 3beta-hydroxysteroid ester + a 1,2-diacylglycerol"],["RHEA%3A78199","a 3beta-hydroxysteroid + a triacylglycerol = a 3beta-hydroxysteroid ester + a 1,3-diacylglycerol"],["RHEA%3A81603","a 3beta-hydroxysteroid + NAD(+) = a 3-oxosteroid + NADH + H(+)"]],"b":[["antibacterial/5%CE%B1-cholesta-24-en-3%CE%B2-20%CE%B2-diol-23-one.html","5α-cholesta-24-en-3β,20β-diol-23-one"],["antibacterial/5%CE%B1-cholesta-9-11-en-3%CE%B2-20%CE%B2-diol.html","5α-cholesta-9(11)-en-3β, 20β-diol"],["antifungal/9%CE%BE-14%CE%BE-25s-cholestane-3%CE%B2-4%CE%B2-6%CE%B2-7%CE%B1-8-15%CE%B1-16%CE%B2-26-octol.html","(9ξ,14ξ,25S)-cholestane-3β,4β,6β,7α,8,15α,16β,26-octol"],["antifungal/fr171456.html","FR171456"],["antifungal/sclerodol-b.html","sclerodol B"],["antiprotozoal/hellebrigenin.html","hellebrigenin"]]},{"id":"NCBITaxon:559292","l":"Saccharomyces cerevisiae (strain ATCC 204508 / S288c)","na":14483,"nb":5,"a":[["EC%3A1.14.18.-","With another compound as one donor, and incorporation of one atom of oxygen"],["EC%3A1.16.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.18.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.5.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.8.-.-","Acting on a sulfur group of donors"]],"b":[["antifungal/anidulafungin.html","anidulafungin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/caspofungin.html","caspofungin"],["antifungal/cycloheximide.html","cycloheximide"],["antifungal/micafungin.html","micafungin"]]},{"id":"ARO:0000017","l":"","na":104,"nb":5,"a":[["ARO%3A3005099","23S rRNA (adenine(2058)-N(6))-methyltransferase Erm(A)"],["ARO%3A3004187","23S rRNA with mutation conferring resistance to lincosamide antibiotics"],["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3000772","AdeIJK"],["ARO%3A3000202","Cfr 23S ribosomal RNA methyltransferase"],["ARO%3A3004649","cfr(B)"]],"b":[["antibacterial/celesticetin.html","celesticetin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/iboxamycin.html","iboxamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/pirlimycin.html","pirlimycin"]]},{"id":"ARO:3000157","l":"","na":45,"nb":5,"a":[["ARO%3A3002846","arr-1"],["ARO%3A3002847","arr-2"],["ARO%3A3002848","arr-3"],["ARO%3A3002849","arr-4"],["ARO%3A3002850","arr-5"],["ARO%3A3002852","arr-7"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifalazil.html","rifalazil"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"NCBITaxon:330879","l":"Aspergillus fumigatus (strain ATCC MYA-4609 / CBS 101355 / FGSC A1100 / Af293)","na":34,"nb":5,"a":[["Pfam%3APF22624","4'-phosphopantetheinyl transferase, N-terminal"],["Pfam%3APF13523","Acetyltransferase (GNAT) domain"],["Pfam%3APF28338","AclK C-terminal domain"],["Pfam%3APF23297","Highly reducing polyketide synthase sdgA, C-terminal ACP domain"],["Pfam%3APF11001","YDR124W-like, helical bundle domain"],["Pfam%3APF25312","Allergen Asp f 4-like domain"]],"b":[["antibacterial/fumagillin.html","fumagillin"],["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/terbinafine.html","terbinafine"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"ARO:3004115","l":"","na":20,"nb":5,"a":[["ARO%3A3007056","Antibiotic resistant Helicobacter pylori nitroreductase"],["ARO%3A3007656","antibiotic resistant Mycobacterium tuberculosis nitroreductase"],["ARO%3A3007671","Clostridioides difficile nimB"],["ARO%3A3007851","delamanid-resistant fgd1"],["ARO%3A3007059","Helicobacter pylori frxA mutation conferring resistance to metronidazole"],["ARO%3A3007055","Helicobacter pylori rdxA mutation conferring resistance to metronidazole"]],"b":[["antibacterial/delamanid.html","delamanid"],["antibacterial/metronidazole.html","metronidazole"],["antibacterial/ornidazole.html","ornidazole"],["antibacterial/pretomanid.html","pretomanid"],["antibacterial/tinidazole.html","tinidazole"]]},{"id":"CHEBI:46761","l":"","na":12,"nb":5,"a":[["MCSA%3A396","aspartic peptidase"],["MCSA%3A815","caspase-3"],["MCSA%3A818","caspase-8"],["MCSA%3A816","caspase-9"],["MCSA%3A814","cathepsin S"],["MCSA%3A912","endopeptidase Clp"]],"b":[["antifungal/gliotoxin.html","gliotoxin"],["antiprotozoal/wll-vs.html","WLL-vs"],["antiviral/ombitasvir.html","ombitasvir"],["unspecified/bacilysin.html","bacilysin"],["unspecified/tabtoxin.html","tabtoxin"]]},{"id":"NCBITaxon:485","l":"Neisseria gonorrhoeae","na":12,"nb":5,"a":[["Pfam%3APF25860","Cryptic plasmid protein A"],["Pfam%3APF12852","Cupin"],["Pfam%3APF17845","FbpC C-terminal regulatory nucleotide binding domain"],["Pfam%3APF22443","FbpC-like, regulatory domain"],["Pfam%3APF18053","DNA gyrase B subunit insert domain"],["Pfam%3APF25885","EMRA, alpha-helical hairpin domain"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007500","l":"","na":5,"nb":11,"a":[["ARO%3A3007666","Candida spp. cyp51A1 with mutations conferring resistance to triazoles and imidazole antibiotics"],["ARO%3A3007640","Candida spp. pleiotropic drug resistance factor 1"],["ARO%3A3007563","Candida spp. TAC1 with mutations conferring resistance to azole antibiotics"],["ARO%3A3007667","imidazole-resistant fungal cytochrome P450 enzyme"],["ARO%3A3007555","Zn2Cys6 transcription factors"]],"b":[["antibacterial/imazalil.html","imazalil"],["antifungal/bifonazole.html","bifonazole"],["antifungal/clotrimazole.html","clotrimazole"],["antifungal/econazole.html","econazole"],["antifungal/hexaconazole.html","hexaconazole"],["antifungal/ketoconazole.html","ketoconazole"]]},{"id":"ARO:3001815","l":"ACC-1","na":5,"nb":9,"a":[["ARO%3A3001815","ACC-1"],["ARO%3A3006228","ACC-1a"],["ARO%3A3006229","ACC-1b"],["ARO%3A3006230","ACC-1c"],["ARO%3A3006231","ACC-1d"]],"b":[["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/cefotetan.html","cefotetan"],["antibacterial/cefpirome.html","cefpirome"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"NCBITaxon:229533","l":"Fusarium graminearum PH-1","na":8,"nb":5,"a":[["Pfam%3APF18388","Atg29 N-terminal domain"],["Pfam%3APF27599","CcsR C-terminal domain"],["Pfam%3APF07110","EthD domain"],["Pfam%3APF11700","Vacuole effluxer Atg22 like"],["Pfam%3APF28504","Gramillins biosynthetic cluster protein GRA5"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"]],"b":[["antifungal/carbendazim.html","carbendazim"],["antifungal/difenoconazole.html","difenoconazole"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/prochloraz.html","prochloraz"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"ARO:3000491","l":"acrD","na":7,"nb":5,"a":[["ARO%3A3000491","acrD"],["ARO%3A3000828","baeR"],["ARO%3A3000829","baeS"],["ARO%3A3000531","baeSR"],["ARO%3A3000830","cpxA"],["ARO%3A3000524","cpxAR"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:0000004","l":"","na":1345,"nb":4,"a":[["ARO%3A3001815","ACC-1"],["ARO%3A3006228","ACC-1a"],["ARO%3A3006229","ACC-1b"],["ARO%3A3006230","ACC-1c"],["ARO%3A3006231","ACC-1d"],["ARO%3A3001816","ACC-2"]],"b":[["antibacterial/aztreonam.html","aztreonam"],["antibacterial/bal30072.html","BAL30072"],["antibacterial/carumonam.html","carumonam"],["antibacterial/lys228.html","LYS228"]]},{"id":"CHEBI:24646","l":"","na":88,"nb":4,"a":[["EC%3A1.1.5.10","D-2-hydroxyacid dehydrogenase (quinone)"],["EC%3A1.1.5.11","1-butanol dehydrogenase (quinone)"],["EC%3A1.1.5.12","D-lactate dehydrogenase (quinone)"],["EC%3A1.1.5.13","(S)-2-hydroxyglutarate dehydrogenase"],["EC%3A1.1.5.3","glycerol-3-phosphate dehydrogenase"],["EC%3A1.1.5.4","malate dehydrogenase (quinone)"]],"b":[["antibacterial/2-5-dihydroxy-3-methanesulfinylbenzyl-alcohol.html","2,5-dihydroxy-3-methanesulfinylbenzyl alcohol"],["antibacterial/cytotrienin-a.html","cytotrienin A"],["antibacterial/mygalin.html","mygalin"],["unspecified/trierixin.html","trierixin"]]},{"id":"CHEBI:47622","l":"","na":4,"nb":84,"a":[["EC%3A2.3.1.84","alcohol O-acetyltransferase"],["EC%3A3.1.1.6","acetylesterase"],["RHEA%3A12957","an acetyl ester + H2O = an aliphatic alcohol + acetate + H(+)"],["RHEA%3A17229","an aliphatic alcohol + acetyl-CoA = an acetyl ester + CoA"]],"b":[["antibacterial/3-5-di-o-acetyl-1-o-5%CE%B2-8%CE%B1-9%CE%B2-10%CE%B1-18-oxokaur-16-en-18-yl-%CE%B2-l-arabinofur.html","3,5-di-O-acetyl-1-O-[(5β,8α,9β,10α)-18-oxokaur-16-en-18-yl]-β-L-arabinofuranose"],["antibacterial/6%CE%B2-16%CE%B2-diacetoxy-25-hydroxy-3-7-dioxy-29-nordammara-1-17-20-dien-21-oi.html","6β,16β-diacetoxy-25-hydroxy-3,7-dioxy-29-nordammara-1,17(20)-dien-21-oic acid"],["antibacterial/caminoside-a.html","caminoside A"],["antibacterial/geranylgeranyl-acetate.html","geranylgeranyl acetate"],["antibacterial/helvolic-acid-methyl-ester.html","helvolic acid methyl ester"],["antibacterial/helvolic-acid.html","helvolic acid"]]},{"id":"CHEBI:59869","l":"","na":68,"nb":4,"a":[["EC%3A1.4.1.5","L-amino-acid dehydrogenase"],["EC%3A1.4.3.2","L-amino-acid oxidase"],["EC%3A1.5.3.2","N-methyl-L-amino-acid oxidase"],["EC%3A2.6.1.12","alanine--oxo-acid transaminase"],["EC%3A2.6.1.13","ornithine aminotransferase"],["EC%3A2.6.1.14","asparagine--oxo-acid transaminase"]],"b":[["antibacterial/l-%CE%B2-ethynylserine-zwitterion.html","L-β-ethynylserine zwitterion"],["unspecified/alliin-zwitterion.html","alliin zwitterion"],["unspecified/anticapsin-zwitterion.html","anticapsin zwitterion"],["unspecified/l-propargylglycine-zwitterion.html","L-propargylglycine zwitterion"]]},{"id":"ARO:3000387","l":"","na":58,"nb":4,"a":[["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3004188","23S rRNA with mutation conferring resistance to phenicol antibiotics"],["ARO%3A3004451","Agrobacterium fabrum chloramphenicol acetyltransferase"],["ARO%3A3004452","Alkalihalobacillus clausii chloramphenicol acetyltransferase"],["ARO%3A3002672","Bacillus pumilus cat86"],["ARO%3A3004454","Campylobacter coli chloramphenicol acetyltransferase"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"CHEBI:33308","l":"","na":4,"nb":43,"a":[["EC%3A3.1.1.1","carboxylesterase"],["RHEA%3A21164","a carboxylic ester + H2O = an alcohol + a carboxylate + H(+)"],["MCSA%3A631","cutinase"],["MCSA%3A556","esterase (estA)"]],"b":[["antibacterial/bacilysocin.html","bacilysocin"],["antibacterial/cefpodoxime-proxetil.html","cefpodoxime proxetil"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/fidaxomicin.html","fidaxomicin"],["antibacterial/fluquinometoate.html","fluquinometoate"],["antibacterial/fumagillin.html","fumagillin"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":29,"nb":4,"a":[["Pfam%3APF09156","Anthrax toxin lethal factor, middle domain"],["Pfam%3APF08401","N-terminal domain of anti-restriction factor ArdC"],["Pfam%3APF07737","Anthrax toxin lethal factor, N- and C-terminal domain"],["Pfam%3APF27053","Bacillus anthracis plasmid pXO2 protein 26"],["Pfam%3APF13205","Bacterial Ig-like domain"],["Pfam%3APF17475","Clostridial binary toxin B/anthrax toxin PA domain 2"]],"b":[["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/trimethoprim.html","trimethoprim"],["antiprotozoal/suramin.html","suramin"],["antiviral/tilorone.html","tilorone"]]},{"id":"ARO:3000079","l":"","na":21,"nb":4,"a":[["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3004172","23S rRNA with mutation conferring resistance to oxazolidinone antibiotics"],["ARO%3A3000202","Cfr 23S ribosomal RNA methyltransferase"],["ARO%3A3004649","cfr(B)"],["ARO%3A3004609","cfr(B) Group"],["ARO%3A3004610","cfr(C) Group"]],"b":[["antibacterial/contezolid.html","contezolid"],["antibacterial/linezolid.html","linezolid"],["antibacterial/tbi-223.html","TBI-223"],["antibacterial/tedizolid.html","tedizolid"]]},{"id":"CHEBI:22315","l":"alkaloid","na":4,"nb":21,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antibacterial/14-norpseurotin-a.html","14-norpseurotin A"],["antibacterial/5-bromo-8-methoxy-1-methyl-%CE%B2-carboline.html","5-bromo-8-methoxy-1-methyl-β-carboline"],["antibacterial/undecylprodigiosin.html","undecylprodigiosin"],["antifungal/feruloylagmatine.html","feruloylagmatine"],["antifungal/pyrrolnitrin.html","pyrrolnitrin"],["antifungal/sampangine.html","sampangine"]]},{"id":"CHEBI:23765","l":"","na":4,"nb":19,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.60","The Organo Anion Transporter (OAT) Family"]],"b":[["antibacterial/2-heptyl-4-quinolone.html","2-heptyl-4-quinolone"],["antibacterial/aurachin-c.html","aurachin C"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/difloxacin.html","difloxacin"],["antibacterial/e-1-hydroxy-2-non-1-en-1-yl-quinolin-4-one.html","(E)-1-hydroxy-2-(non-1-en-1-yl)quinolin-4-one"],["antibacterial/enrofloxacin.html","enrofloxacin"]]},{"id":"CHEBI:25106","l":"","na":4,"nb":18,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.28","The Bile Acid:Na+ Symporter (BASS) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/5e-7-oxozeaenol.html","5E-7-oxozeaenol"],["antibacterial/5z-7-oxozeaenol.html","5Z-7-oxozeaenol"],["antibacterial/bromophycolide-a.html","bromophycolide A"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/pristinamycin-iia.html","pristinamycin IIA"]]},{"id":"ARO:3003032","l":"MexXY-OprM","na":4,"nb":11,"a":[["ARO%3A3003032","MexXY-OprM"],["ARO%3A3005068","ParR"],["ARO%3A3005066","parRS"],["ARO%3A3005067","ParS"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/gentamicin-c.html","gentamicin C"],["antibacterial/meropenem.html","meropenem"]]},{"id":"CHEBI:33575","l":"carboxylic acid","na":4,"nb":11,"a":[["MCSA%3A105","aldehyde dehydrogenase (FAD-independent)"],["MCSA%3A803","aldehyde dehydrogenase (NAD+) (class 2)"],["MCSA%3A556","esterase (estA)"],["MCSA%3A755","lysophospholipase"]],"b":[["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefatrizine.html","cefatrizine"],["antibacterial/cefazedone.html","cefazedone"],["antibacterial/cefcapene.html","cefcapene"],["antibacterial/cefditoren.html","cefditoren"],["antibacterial/cefiderocol.html","cefiderocol"]]},{"id":"ARO:3000453","l":"streptogramin vat acetyltransferase","na":9,"nb":4,"a":[["ARO%3A3000453","streptogramin vat acetyltransferase"],["ARO%3A3002840","vatA"],["ARO%3A3002841","vatB"],["ARO%3A3002842","vatC"],["ARO%3A3002843","vatD"],["ARO%3A3002844","vatE"]],"b":[["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/madumycin-ii.html","madumycin II"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3000390","l":"rifampin ADP-ribosyltransferase (Arr)","na":8,"nb":4,"a":[["ARO%3A3002846","arr-1"],["ARO%3A3002847","arr-2"],["ARO%3A3002848","arr-3"],["ARO%3A3002849","arr-4"],["ARO%3A3002850","arr-5"],["ARO%3A3002852","arr-7"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3000788","l":"MdtEF-TolC","na":6,"nb":4,"a":[["ARO%3A3000518","CRP"],["ARO%3A3000832","evgA"],["ARO%3A3000515","evgSA"],["ARO%3A3003838","gadW"],["ARO%3A3000508","gadX"],["ARO%3A3000788","MdtEF-TolC"]],"b":[["antibacterial/cloxacillin.html","cloxacillin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/oxacillin.html","oxacillin"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":4,"nb":6,"a":[["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF09711","CRISPR-associated protein (Cas_Csn2)"],["Pfam%3APF06308","23S rRNA methylastransferase leader peptide (ErmCL)"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3004116","l":"","na":4,"nb":5,"a":[["ARO%3A3003754","antibiotic resistant nfsA"],["ARO%3A3003755","Antibiotic resistant nfsB"],["ARO%3A3003751","Escherichia coli nfsA mutations conferring resistance to nitrofurantoin"],["ARO%3A3003756","Escherichia coli nfsB with mutation conferring resistance to nitrofurantoin"]],"b":[["antibacterial/furagin.html","furagin"],["antibacterial/furazolidone.html","furazolidone"],["antibacterial/nifuratel.html","nifuratel"],["antibacterial/nifuroxazide.html","nifuroxazide"],["antibacterial/nitrofurantoin.html","nitrofurantoin"]]},{"id":"NCBITaxon:5518","l":"Fusarium graminearum","na":4,"nb":5,"a":[["Pfam%3APF09118","Galactose oxidase-like, Early set domain"],["Pfam%3APF07250","Glyoxal oxidase N-terminus"],["TED%3AAF-A0A2H3FY84-F1-model_v4_TED03","TED novel fold AF-A0A2H3FY84-F1-model_v4_TED03"],["TED%3AAF-A0A2H3G191-F1-model_v4_TED01","TED novel fold AF-A0A2H3G191-F1-model_v4_TED01"]],"b":[["antifungal/carbendazim.html","carbendazim"],["antifungal/difenoconazole.html","difenoconazole"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/prochloraz.html","prochloraz"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"ARO:3007496","l":"","na":4,"nb":4,"a":[["ARO%3A3007548","Candida spp. FKS2 with mutations conferring resistance to echinocandin antibiotics"],["ARO%3A3007664","Candida spp. High Osmolarity Glycerol 1 conferring resistance to caspofungin via absence"],["ARO%3A3007546","echinocandin antibiotic-resistant beta-1,3-D-glucan synthase"],["ARO%3A3007663","stress-activated protein kinases"]],"b":[["antibacterial/arborcandin-c.html","arborcandin C"],["antifungal/anidulafungin.html","anidulafungin"],["antifungal/caspofungin.html","caspofungin"],["antifungal/micafungin.html","micafungin"]]},{"id":"ARO:3000171","l":"","na":60,"nb":3,"a":[["ARO%3A3005354","dfr22"],["ARO%3A3002854","dfrA1"],["ARO%3A3003011","dfrA10"],["ARO%3A3002858","dfrA12"],["ARO%3A3003012","dfrA13"],["ARO%3A3002859","dfrA14"]],"b":[["antibacterial/brodimoprim.html","brodimoprim"],["antibacterial/tetroxoprim.html","tetroxoprim"],["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004598","l":"Klebsiella pneumoniae KpnGH-TolC","na":3,"nb":17,"a":[["ARO%3A3004588","Klebsiella pneumoniae KpnG"],["ARO%3A3004598","Klebsiella pneumoniae KpnGH-TolC"],["ARO%3A3004597","Klebsiella pneumoniae KpnH"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":3,"a":[["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["Pfam%3APF14562","Restriction endonuclease BglI"],["Pfam%3APF09195","Restriction endonuclease BglII/BglIII"],["Pfam%3APF09208","Restriction endonuclease MspI"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"CHEBI:35924","l":"","na":14,"nb":3,"a":[["EC%3A1.11.1.24","thioredoxin-dependent peroxiredoxin"],["EC%3A1.11.1.25","glutaredoxin-dependent peroxiredoxin"],["EC%3A1.11.1.26","NADH-dependent peroxiredoxin"],["EC%3A1.11.1.27","glutathione-dependent peroxiredoxin"],["EC%3A1.11.1.28","lipoyl-dependent peroxiredoxin"],["EC%3A1.11.1.29","mycoredoxin-dependent peroxiredoxin"]],"b":[["antiprotozoal/10%CE%B1-hydroperoxy-guaia-1-11-diene.html","10α-hydroperoxy-guaia-1,11-diene"],["antiprotozoal/1r-4s-1-hydroperoxy-p-menth-2-en-8-ol-acetate.html","(1R,4S)-1-hydroperoxy-p-menth-2-en-8-ol acetate"],["antiprotozoal/1%CE%B1-hydroperoxy-guaia-10-15-11-diene.html","1α-hydroperoxy-guaia-10(15),11-diene"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":13,"nb":3,"a":[["Pfam%3APF07832","Cfr10I/Bse634I restriction endonuclease"],["Pfam%3APF22348","Colicin-A N-terminal domain"],["Pfam%3APF01024","Colicin pore forming domain"],["Pfam%3APF18427","DD-reactivating factor swiveling domain"],["Pfam%3APF02286","Dehydratase large subunit"],["Pfam%3APF02288","Dehydratase medium subunit"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"UniProt:P38631","l":"","na":13,"nb":3,"a":[["ComplexPortal%3ACPX-1812","1,3-beta-D-glucan synthase complex, FKS1-RHO1 variant"],["GO%3A0000148","1,3-beta-D-glucan synthase complex"],["GO%3A0030479","actin cortical patch"],["GO%3A0003843","1,3-beta-D-glucan synthase activity"],["GO%3A0006075","(1->3)-beta-D-glucan biosynthetic process"],["GO%3A0030476","ascospore wall assembly"]],"b":[["antifungal/anidulafungin.html","anidulafungin"],["antifungal/caspofungin.html","caspofungin"],["antifungal/micafungin.html","micafungin"]]},{"id":"ARO:3004585","l":"Klebsiella pneumoniae KpnEF","na":3,"nb":11,"a":[["ARO%3A3004580","Klebsiella pneumoniae KpnE"],["ARO%3A3004585","Klebsiella pneumoniae KpnEF"],["ARO%3A3004583","Klebsiella pneumoniae KpnF"]],"b":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"],["antibacterial/cefepime.html","cefepime"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"NCBITaxon:451804","l":"Aspergillus fumigatus (strain CBS 144.89 / FGSC A1163 / CEA10)","na":11,"nb":3,"a":[["Pfam%3APF28347","ACE1 small beta sheet domain"],["Pfam%3APF28329","Zinc finger transcription factor ace1 N-terminal domain"],["Pfam%3APF11001","YDR124W-like, helical bundle domain"],["Pfam%3APF28457","Probable beta-glucosidase btgE N-terminal domain"],["Pfam%3APF13373","DSC E3 ubiquitin ligase complex subunit 3, C-terminal domain"],["Pfam%3APF10302","DSC E3 ubiquitin ligase complex subunit 3, ubiquitin-like domain"]],"b":[["antifungal/itraconazole.html","itraconazole"],["antifungal/terbinafine.html","terbinafine"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"CHEBI:33838","l":"","na":3,"nb":10,"a":[["RHEA%3A22140","a nucleoside 5'-phosphate + H2O = a nucleoside + phosphate"],["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"],["TCDB%3A9.A.72","The Putative Nucleoside Efflux Transporter (NET) Family"]],"b":[["unspecified/tunicamycin-a0.html","tunicamycin A0"],["unspecified/tunicamycin-a1.html","tunicamycin A1"],["unspecified/tunicamycin-a2.html","tunicamycin A2"],["unspecified/tunicamycin-b1.html","tunicamycin B1"],["unspecified/tunicamycin-b2.html","tunicamycin B2"],["unspecified/tunicamycin-b3.html","tunicamycin B3"]]},{"id":"CHEBI:55465","l":"","na":3,"nb":8,"a":[["EC%3A2.1.1.150","isoflavone 7-O-methyltransferase"],["RHEA%3A17933","a 7-hydroxyisoflavone + S-adenosyl-L-methionine = a 7-methoxyisoflavone + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A56344","a 7-hydroxyisoflavone + UDP-alpha-D-glucose = a 7-hydroxyisoflavone 7-O-beta-D-glucoside + UDP + H(+)"]],"b":[["antibacterial/5-7-4-trihydroxy-6-8-diprenylisoflavone.html","5,7,4'-trihydroxy-6,8-diprenylisoflavone"],["antibacterial/dihydrolicoisoflavone-a.html","dihydrolicoisoflavone A"],["antifungal/wighteone.html","wighteone"],["antiprotozoal/5-7-3-4-tetrahydroxy-2-3-3-dimethylallyl-isoflavone.html","5,7,3',4'-tetrahydroxy-2'-(3,3-dimethylallyl)isoflavone"],["antiprotozoal/7-4-dihydroxy-3-methoxyisoflavone.html","7,4'-dihydroxy-3'-methoxyisoflavone"],["antiprotozoal/pseudobaptigenin.html","pseudobaptigenin"]]},{"id":"CHEBI:17580","l":"linalool","na":6,"nb":3,"a":[["EC%3A1.14.14.84","linalool 8-monooxygenase"],["EC%3A5.4.4.8","linalool isomerase"],["RHEA%3A68708","(2E)-geranyl diphosphate + H2O = linalool + diphosphate"],["RHEA%3A32635","linalool + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = (6E)-8-oxolinalool + 2 oxidized [NADPH--hemoprotein reductase] + 3 H2O + 2 H(+)"],["RHEA%3A54656","linalool = (2E)-geraniol"],["RHEA%3A32503","linalool + reduced [NADPH--hemoprotein reductase] + O2 = (6E)-8-hydroxylinalool + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["unspecified/linalool.html","linalool"],["unspecified/r-linalool.html","(R)-linalool"],["unspecified/s-linalool.html","(S)-linalool"]]},{"id":"CHEBI:20156","l":"","na":5,"nb":3,"a":[["EC%3A1.17.99.11","3-oxo-Delta(1)-steroid hydratase/dehydrogenase"],["EC%3A1.3.99.4","3-oxosteroid 1-dehydrogenase"],["RHEA%3A65848","a 3-oxo-Delta(1)-steroid + A + H2O = a steroid 1,3-dione + AH2"],["RHEA%3A65852","a 3-oxo-Delta(1)-steroid + H2O = a 1-hydroxy-3-oxo steroid"],["RHEA%3A13329","a 3-oxosteroid + A = a 3-oxo-Delta(1)-steroid + AH2"]],"b":[["antibacterial/6%CE%B2-16%CE%B2-diacetoxy-25-hydroxy-3-7-dioxy-29-nordammara-1-17-20-dien-21-oi.html","6β,16β-diacetoxy-25-hydroxy-3,7-dioxy-29-nordammara-1,17(20)-dien-21-oic acid"],["antibacterial/helvolic-acid-methyl-ester.html","helvolic acid methyl ester"],["antibacterial/helvolic-acid.html","helvolic acid"]]},{"id":"CHEBI:25697","l":"","na":3,"nb":5,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antibacterial/chelerythrine.html","chelerythrine"],["antifungal/isavuconazonium.html","isavuconazonium"],["antiprotozoal/nostocarboline.html","nostocarboline"],["antiprotozoal/quinine-1.html","quinine(1+)"],["antiviral/meso-tetrakis-n-methyl-4-pyridyl-porphine-4.html","meso-tetrakis(N-methyl-4-pyridyl)porphine(4+)"]]},{"id":"CHEBI:38083","l":"","na":5,"nb":3,"a":[["TCDB%3A2.A.69","The Auxin Efflux Carrier (AEC) Family"],["TCDB%3A2.A.70","The Malonate:Na+ Symporter (MSS) Family"],["TCDB%3A2.A.101","The Malonate Uptake (MatC) Family (Formerly UIT1)"],["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["TCDB%3A2.A.56","The Tripartite ATP-independent Periplasmic Transporter (TRAP-T) Family"]],"b":[["antibacterial/6%CE%B1-malonyloxymanoyl-oxide.html","6α-malonyloxymanoyl oxide"],["antifungal/brasilinolide-a.html","brasilinolide A"],["antifungal/isoprothiolane.html","isoprothiolane"]]},{"id":"ARO:3000391","l":"norA","na":4,"nb":3,"a":[["ARO%3A3000838","arlR"],["ARO%3A3000547","arlRS"],["ARO%3A3000839","arlS"],["ARO%3A3000391","norA"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"],["biocide/acriflavine.html","acriflavine"]]},{"id":"NCBITaxon:1213859","l":"Colletotrichum fructicola (strain Nara gc5)","na":4,"nb":3,"a":[["TED%3AAF-A0A7J6IJ15-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7J6IJ15-F1-model_v4_TED03"],["TED%3AAF-A0A7J6IKD8-F1-model_v4_TED01","TED novel fold AF-A0A7J6IKD8-F1-model_v4_TED01"],["TED%3AAF-L2G012-F1-model_v4_TED02","TED novel fold AF-L2G012-F1-model_v4_TED02"],["TED%3AAF-L2G364-F1-model_v4_TED02","TED novel fold AF-L2G364-F1-model_v4_TED02"]],"b":[["antifungal/difenoconazole.html","difenoconazole"],["antifungal/prochloraz.html","prochloraz"],["antifungal/propiconazole.html","propiconazole"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":3,"nb":4,"a":[["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF08130","Type A lantibiotic family"],["Pfam%3APF04738","Lantibiotic dehydratase, N terminus"]],"b":[["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/oxacillin.html","oxacillin"]]},{"id":"CHEBI:3638","l":"chloroquine","na":3,"nb":3,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antiprotozoal/chloroquine.html","chloroquine"],["antiprotozoal/r-chloroquine.html","(R)-chloroquine"],["antiprotozoal/s-chloroquine.html","(S)-chloroquine"]]},{"id":"CHEBI:75568","l":"1-monolinolein","na":3,"nb":3,"a":[["RHEA%3A38131","1-(9Z,12Z-octadecadienoyl)-glycerol + (9Z)-octadecenoyl-CoA = 1-(9Z,12Z-octadecadienoyl)-2-(9Z-octadecenoyl)-glycerol + CoA"],["RHEA%3A77591","1-(9Z,12Z-octadecadienoyl)-glycerol + (9Z)-octadecenoyl-CoA = 1-(9Z-octadecenoyl)-3-(9Z,12Z-octadecadienoyl)-glycerol + CoA"],["RHEA%3A48428","1-(9Z,12Z-octadecadienoyl)-glycerol + H2O = (9Z,12Z)-octadecadienoate + glycerol + H(+)"]],"b":[["antiviral/1-linoleoyl-sn-glycerol.html","1-linoleoyl-sn-glycerol"],["antiviral/1-monolinolein.html","1-monolinolein"],["antiviral/3-linoleoyl-sn-glycerol.html","3-linoleoyl-sn-glycerol"]]},{"id":"NCBITaxon:274","l":"Thermus thermophilus","na":3,"nb":3,"a":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF01861","Branched-chain polyamine synthase A C-terminal domain"],["Pfam%3APF07736","Chorismate mutase type I"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"],["antibacterial/streptomycin.html","streptomycin"],["unspecified/streptolydigin.html","streptolydigin"]]},{"id":"NCBITaxon:665079","l":"Sclerotinia sclerotiorum (strain ATCC 18683 / 1980 / Ss-1)","na":3,"nb":3,"a":[["TED%3AAF-A0A1D9PSD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1D9PSD6-F1-model_v4_TED01"],["TED%3AAF-A7EZS3-F1-model_v4_TED02","TED highly-symmetric fold AF-A7EZS3-F1-model_v4_TED02"],["TED%3AAF-A0A1D9QKV1-F1-model_v4_TED02","TED novel fold AF-A0A1D9QKV1-F1-model_v4_TED02"]],"b":[["antifungal/carboxin.html","carboxin"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/iprodione.html","iprodione"]]},{"id":"UniProt:P04585","l":"","na":3,"nb":3,"a":[["MCSA%3A175","HIV-1 retropepsin"],["proteintraitsmech%3ABIOLIP_E9B","E9B-binding site"],["proteintraitsmech%3ABIOLIP_TNF","TNF-binding site"]],"b":[["antiviral/delavirdine.html","delavirdine"],["antiviral/emivirine.html","emivirine"],["antiviral/nevirapine.html","nevirapine"]]},{"id":"CHEBI:35718","l":"","na":2,"nb":514,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/1-2-dodecanediol.html","1,2-dodecanediol"],["antibacterial/1-dodecylguanidine-acetate.html","1-dodecylguanidine acetate"],["antibacterial/1-dodecylguanidine.html","1-dodecylguanidine"],["antibacterial/5-bromo-8-methoxy-1-methyl-%CE%B2-carboline.html","5-bromo-8-methoxy-1-methyl-β-carboline"],["antibacterial/5-chloro-7-iodoquinolin-8-ol.html","5-chloro-7-iodoquinolin-8-ol"],["antibacterial/6-methoxy-2-benzoxazolinone.html","6-methoxy-2-benzoxazolinone"]]},{"id":"CHEBI:24127","l":"","na":2,"nb":155,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/allyl-alcohol.html","allyl alcohol"],["antibacterial/dehydroacetic-acid.html","dehydroacetic acid"],["antibacterial/hexachlorophene.html","hexachlorophene"],["antibacterial/methylene-bis-thiocyanate.html","methylene bis(thiocyanate)"],["antibacterial/streptomycin.html","streptomycin"],["antibacterial/tecloftalam.html","tecloftalam"]]},{"id":"CHEBI:22587","l":"","na":2,"nb":149,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/6-diazo-5-oxo-l-norleucine.html","6-diazo-5-oxo-L-norleucine"],["antibacterial/benzethonium-chloride.html","benzethonium chloride"],["antibacterial/gramine.html","gramine"],["antibacterial/hypothiocyanous-acid.html","hypothiocyanous acid"],["antibacterial/mi-1148.html","MI-1148"],["antibacterial/phenethyl-caffeate.html","phenethyl caffeate"]]},{"id":"ARO:3004268","l":"MCR phosphoethanolamine transferase","na":106,"nb":2,"a":[["ARO%3A3003689","MCR-1.1"],["ARO%3A3004506","MCR-1.10"],["ARO%3A3004688","MCR-1.11"],["ARO%3A3004689","MCR-1.12"],["ARO%3A3004690","MCR-1.13"],["ARO%3A3007246","MCR-1.14"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"CHEBI:23066","l":"","na":2,"nb":66,"a":[["TCDB%3A8.A.212","The d-Amino Acid Peptidase (dAAP) Family"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]],"b":[["antibacterial/cefacetrile.html","cefacetrile"],["antibacterial/cefaclor.html","cefaclor"],["antibacterial/cefadroxil.html","cefadroxil"],["antibacterial/cefaloram.html","cefaloram"],["antibacterial/cefaloridine.html","cefaloridine"],["antibacterial/cefalotin.html","cefalotin"]]},{"id":"ARO:3007149","l":"","na":53,"nb":2,"a":[["ARO%3A3004251","antibiotic-resistant cya adenylate cyclase"],["ARO%3A3004247","antibiotic-resistant GlpT"],["ARO%3A3002811","antibiotic-resistant murA transferase"],["ARO%3A3004250","antibiotic-resistant ptsI phosphotransferase"],["ARO%3A3004248","antibiotic-resistant UhpT"],["ARO%3A3003777","Borreliella burgdorferi murA with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"],["antibacterial/fosmidomycin.html","fosmidomycin"]]},{"id":"CHEBI:32955","l":"","na":2,"nb":52,"a":[["EC%3A3.3.2.10","soluble epoxide hydrolase"],["RHEA%3A19037","an epoxide + H2O = an ethanediol"]],"b":[["antibacterial/ambiguine-i.html","ambiguine I"],["antibacterial/asperlactone.html","asperlactone"],["antibacterial/aspyrone.html","aspyrone"],["antibacterial/asukamycin.html","asukamycin"],["antibacterial/ei-1511-3.html","EI-1511-3"],["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"CHEBI:26188","l":"","na":2,"nb":41,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["antibacterial/2-4-dihydroxy-3-methyl-6-2-oxopropyl-benzaldehyde.html","2,4-dihydroxy-3-methyl-6-(2-oxopropyl)benzaldehyde"],["antibacterial/asperlactone.html","asperlactone"],["antibacterial/aspyrone.html","aspyrone"],["antibacterial/asukamycin.html","asukamycin"],["antibacterial/bacillaene.html","bacillaene"],["antibacterial/butremycin.html","butremycin"]]},{"id":"CHEBI:37581","l":"","na":2,"nb":39,"a":[["EC%3A3.1.1.25","1,4-lactonase"],["RHEA%3A12745","a 1,4-lactone + H2O = a 4-hydroxyacid + H(+)"]],"b":[["antibacterial/1-hydroxycrisamicin-a.html","1-hydroxycrisamicin A"],["antibacterial/decatromicin-a.html","decatromicin A"],["antibacterial/decatromicin-b.html","decatromicin B"],["antibacterial/fumimycin.html","fumimycin"],["antibacterial/isopatulin.html","isopatulin"],["antibacterial/lactonamycin.html","lactonamycin"]]},{"id":"CHEBI:48219","l":"","na":2,"nb":26,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"],["antibacterial/benzethonium-chloride.html","benzethonium chloride"],["antibacterial/quaternium-15.html","quaternium-15"],["antifungal/2-4-xylenol.html","2,4-xylenol"],["antifungal/thimerosal.html","thimerosal"],["biocide/1-3-6-8-tetraazatricyclo-4-4-1-13-8-dodecane.html","1,3,6,8-tetraazatricyclo[4,4,1,13,8]dodecane"]]},{"id":"ARO:3007156","l":"","na":20,"nb":2,"a":[["ARO%3A3003457","ethionamide resistant ethA"],["ARO%3A3004888","ethionamide resistant fabG1"],["ARO%3A3004890","ethionamide resistant mshC"],["ARO%3A3004892","ethionamide resistant nudC"],["ARO%3A3004954","Ethionamide resistant Rv0565c"],["ARO%3A3004875","inhA with mutations with conferring resistance to ethionamide"]],"b":[["antibacterial/prothionamide.html","prothionamide"],["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"CHEBI:17176","l":"","na":17,"nb":2,"a":[["EC%3A1.1.3.20","long-chain-alcohol oxidase"],["EC%3A1.14.14.3","bacterial luciferase"],["EC%3A1.2.1.48","long-chain-aldehyde dehydrogenase"],["EC%3A1.2.1.50","long-chain-fatty-acyl-CoA reductase"],["EC%3A1.2.1.80","long-chain acyl-[acyl-carrier-protein] reductase"],["EC%3A4.1.99.5","aldehyde oxygenase (deformylating)"]],"b":[["antibacterial/e-dodec-2-enal.html","(E)-dodec-2-enal"],["unspecified/pentadecanal.html","pentadecanal"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":16,"nb":2,"a":[["Pfam%3APF16822","SGNH hydrolase-like domain, acetyltransferase AlgX"],["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"],["Pfam%3APF11182","Alginate O-acetyl transferase AlgF"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF27129","Functional amyloid protein FapB/FapC family"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]],"b":[["antibacterial/mupirocin.html","mupirocin"],["antifungal/2-4-diacetylphloroglucinol.html","2,4-diacetylphloroglucinol"]]},{"id":"UniProt:Q45066","l":"","na":16,"nb":2,"a":[["GO%3A0009330","DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) complex"],["GO%3A0034335","DNA negative supercoiling activity"],["NCBIfam%3ANF004044","DNA topoisomerase (ATP-hydrolyzing)"],["NCBIfam%3ATIGR01063","DNA topoisomerase (ATP-hydrolyzing) subunit A"],["NCBIfam%3ATIGR01061","DNA topoisomerase IV subunit A"],["CDD%3Acd00187","TOP4c"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"CHEBI:33566","l":"","na":2,"nb":15,"a":[["EC%3A2.1.1.6","catechol O-methyltransferase"],["RHEA%3A17877","a catechol + S-adenosyl-L-methionine = a guaiacol + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/acteoside.html","acteoside"],["antibacterial/brazilin.html","brazilin"],["antibacterial/comazaphilone-c.html","comazaphilone C"],["antibacterial/comazaphilone-e.html","comazaphilone E"],["antibacterial/ethyl-3-4-dihydroxybenzoate.html","ethyl 3,4-dihydroxybenzoate"],["antifungal/altenusin.html","altenusin"]]},{"id":"GO:0003964","l":"RNA-directed DNA polymerase activity","na":13,"nb":2,"a":[["EC%3A2.7.7.49","RNA-directed DNA polymerase"],["GO%3A0003964","RNA-directed DNA polymerase activity"],["GO%3A0003720","telomerase activity"],["NCBIfam%3ATIGR04416","group II intron reverse transcriptase/maturase"],["InterPro%3AIPR010659","Reverse transcriptase connection"],["InterPro%3AIPR010661","Reverse transcriptase thumb"]],"b":[["antiviral/delavirdine.html","delavirdine"],["antiviral/nevirapine.html","nevirapine"]]},{"id":"CHEBI:140331","l":"","na":2,"nb":11,"a":[["EC%3A2.1.1.231","flavonoid 4'-O-methyltransferase"],["RHEA%3A31743","a 4'-hydroxyflavanone + S-adenosyl-L-methionine = a 4'-methoxyflavanone + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/6-8-diprenylnaringenin.html","6,8-diprenylnaringenin"],["antibacterial/naringenin-7-o-%CE%B2-d-glucoside.html","naringenin 7-O-β-D-glucoside"],["antibacterial/remangiflavanone-a.html","remangiflavanone A"],["antibacterial/remangiflavanone-b.html","remangiflavanone B"],["antibacterial/sigmoidin-a.html","sigmoidin A"],["antibacterial/sigmoidin-b.html","sigmoidin B"]]},{"id":"CHEBI:77396","l":"","na":11,"nb":2,"a":[["EC%3A1.1.1.192","long-chain-alcohol dehydrogenase"],["EC%3A1.1.3.20","long-chain-alcohol oxidase"],["EC%3A1.2.1.108","alcohol-forming fatty acyl-CoA reductase (NADH)"],["EC%3A1.2.1.84","alcohol-forming fatty acyl-CoA reductase (NADPH)"],["EC%3A1.2.1.n2","fatty acyl-CoA reductase"],["RHEA%3A36303","a fatty acyl-CoA + 2 NADPH + 2 H(+) = a long-chain primary fatty alcohol + 2 NADP(+) + CoA"]],"b":[["antibacterial/9z-12z-15z-octadecatrien-1-ol.html","(9Z,12Z,15Z)-octadecatrien-1-ol"],["antiviral/docosan-1-ol.html","docosan-1-ol"]]},{"id":"ARO:3007560","l":"","na":10,"nb":2,"a":[["ARO%3A3007642","Aspergillus spp. fcyB conferring resistance to 5-flucytosine via reduced permeability"],["ARO%3A3007643","Aspergillus spp. transcription factor pacC"],["ARO%3A3007665","Candida spp. FCY2 conferring resistance to 5-flucytosine via reduced permeability"],["ARO%3A3007557","Candida spp. FUR1 with mutations conferring resistance to 5-flucytosine"],["ARO%3A3007568","Cryptococcus spp. UXS1 conferring resistance to 5-flucytosine via absence"],["ARO%3A3007641","fungal nucleobase transporters"]],"b":[["antifungal/5-fluorouracil.html","5-Fluorouracil"],["antifungal/flucytosine.html","flucytosine"]]},{"id":"NCBITaxon:242507","l":"","na":10,"nb":2,"a":[["Pfam%3APF28293","Biotrophy-associated secreted protein 2"],["Pfam%3APF28414","Biotrophy-associated secreted protein 4"],["Pfam%3APF22997","Chitin synthase 4-like domain"],["Pfam%3APF27979","CON7 transcription factor helical domain"],["Pfam%3APF26980","Dicer-like protein 2, dsRNA binding domain"],["Pfam%3APF11327","Egh16-like virulence factor"]],"b":[["antifungal/carboxin.html","carboxin"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"UniProt:Q59192","l":"","na":10,"nb":2,"a":[["GO%3A0034335","DNA negative supercoiling activity"],["NCBIfam%3ANF004189","DNA gyrase subunit B"],["NCBIfam%3ATIGR01058","DNA topoisomerase IV subunit B"],["InterPro%3AIPR018522","DNA topoisomerase, type IIA, conserved site"],["CDD%3Acd16928","HATPase_GyrB-like"],["CDD%3Acd00822","TopoII_Trans_DNA_gyrase"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"CHEBI:35489","l":"","na":2,"nb":9,"a":[["EC%3A1.8.3.7","formylglycine-generating enzyme"],["RHEA%3A51152","L-cysteinyl-[sulfatase] + 2 a thiol + O2 = an organic disulfide + 3-oxo-L-alanyl-[sulfatase] + hydrogen sulfide + H2O + H(+)"]],"b":[["antibacterial/2-methyldithio-pyridine-n-oxide.html","2-(methyldithio)pyridine-N-oxide"],["antibacterial/thiram.html","thiram"],["antibacterial/tropodithietic-acid.html","tropodithietic acid"],["antifungal/diallyl-disulfide.html","diallyl disulfide"],["antifungal/disulfiram.html","disulfiram"],["antifungal/gliotoxin.html","gliotoxin"]]},{"id":"CHEBI:13248","l":"","na":2,"nb":8,"a":[["EC%3A3.5.1.13","aryl-acylamidase"],["RHEA%3A20297","an anilide + H2O = aniline + a carboxylate + H(+)"]],"b":[["antifungal/benodanil.html","benodanil"],["antifungal/carboxin.html","carboxin"],["antifungal/cyclanilide.html","cyclanilide"],["antifungal/fenfuram.html","fenfuram"],["antifungal/methfuroxam.html","methfuroxam"],["antifungal/oxycarboxin.html","oxycarboxin"]]},{"id":"CHEBI:134251","l":"","na":2,"nb":8,"a":[["EC%3A2.1.1.6","catechol O-methyltransferase"],["RHEA%3A17877","a catechol + S-adenosyl-L-methionine = a guaiacol + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/rhapontigenin.html","rhapontigenin"],["antifungal/coniferyl-aldehyde.html","coniferyl aldehyde"],["antifungal/nk372135c.html","NK372135C"],["antimycobacterial/1-2-hydroxy-4-methoxyphenyl-3-4-hydroxy-3-methoxyphenyl-propane.html","1-(2-hydroxy-4-methoxyphenyl)-3-(4-hydroxy-3-methoxyphenyl)propane"],["antiviral/5r-5-hydroxy-7-4-hydroxy-3-methoxyphenyl-1-phenyl-3-heptanone.html","(5R)-5-hydroxy-7-(4'-hydroxy-3'-methoxyphenyl)-1-phenyl-3-heptanone"],["antiviral/isorhapontigenin.html","isorhapontigenin"]]},{"id":"CHEBI:18254","l":"","na":8,"nb":2,"a":[["EC%3A2.7.1.77","nucleoside phosphotransferase"],["EC%3A3.1.3.5","5'-nucleotidase"],["EC%3A3.1.3.6","3'-nucleotidase"],["RHEA%3A19961","a 2'-deoxyribonucleoside + a ribonucleoside 5'-phosphate = a ribonucleoside + a 2'-deoxyribonucleoside 5'-phosphate"],["RHEA%3A10144","a ribonucleoside 3'-phosphate + H2O = a ribonucleoside + phosphate"],["RHEA%3A12484","a ribonucleoside 5'-phosphate + H2O = a ribonucleoside + phosphate"]],"b":[["antifungal/toyocamycin.html","toyocamycin"],["antifungal/tubercidin.html","tubercidin"]]},{"id":"CHEBI:26191","l":"","na":2,"nb":8,"a":[["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A1.A.8","The Major Intrinsic Protein (MIP) Family"]],"b":[["antifungal/reedsmycin-a.html","reedsmycin A"],["antifungal/reedsmycin-b.html","reedsmycin B"],["antifungal/reedsmycin-c.html","reedsmycin C"],["antifungal/reedsmycin-d.html","reedsmycin D"],["antifungal/reedsmycin-e.html","reedsmycin E"],["antifungal/validamycin-a.html","validamycin A"]]},{"id":"CHEBI:59062","l":"","na":2,"nb":8,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["antibacterial/colistimethate-a.html","colistimethate A"],["antibacterial/colistimethate-b.html","colistimethate B"],["antibacterial/colistin-a-sodium-methanesulfonate.html","colistin A sodium methanesulfonate"],["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b-sodium-methanesulfonate.html","colistin B sodium methanesulfonate"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":2,"nb":8,"a":[["PROSITE%3APS00820","Glucoamylase active site region signature"],["TED%3AAF-A0A7I9G6Y3-F1-model_v4_TED02","TED novel fold AF-A0A7I9G6Y3-F1-model_v4_TED02"]],"b":[["antifungal/anidulafungin.html","anidulafungin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/caspofungin.html","caspofungin"],["antifungal/cycloheximide.html","cycloheximide"],["antifungal/micafungin.html","micafungin"],["antifungal/oligomycin-a.html","oligomycin A"]]},{"id":"ARO:3000798","l":"MexEF-OprN","na":7,"nb":2,"a":[["ARO%3A3000798","MexEF-OprN"],["ARO%3A3004068","MexEF-OprN with MexS mutations conferring resistance to chloramphenicol, ciprofloxacin, and trimethoprim"],["ARO%3A3004066","MexEF-OprN with MexT mutation conferring resistance to chloramphenicol, ciprofloxacin, and trimethoprim"],["ARO%3A3004070","MexEF-OprN with MvaT deletion conferring resistance to chloramphenicol and norfloxacin"],["ARO%3A3000813","MexS"],["ARO%3A3000814","MexT"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"CHEBI:33839","l":"","na":7,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.I.3","The Bacterial (Planctomycetes) Nuclear Pore-like Complex (B-NPC) Family"],["TCDB%3A1.A.21","The Bcl-2 (Bcl-2) Family"],["TCDB%3A1.N.4","The FF Fusogen (FFF) Family"],["TCDB%3A1.Q.1","The Fungal Septal Pore (FSP) Family"],["TCDB%3A1.N.3","The Hapless2 Male Gamete Fusion Factor (Fusexin) Family"]],"b":[["antifungal/propineb.html","propineb"],["antifungal/zineb.html","zineb"]]},{"id":"ARO:3000772","l":"AdeIJK","na":2,"nb":6,"a":[["ARO%3A3000772","AdeIJK"],["ARO%3A3000559","adeN"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/imipenem.html","imipenem"],["antibacterial/tetracycline.html","tetracycline"],["antibacterial/ticarcillin.html","ticarcillin"],["antibacterial/trimethoprim.html","trimethoprim"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3007159","l":"","na":6,"nb":2,"a":[["ARO%3A3004183","aminosalicylate resistant dihydrofolate reductase"],["ARO%3A3004155","aminosalicylate resistant dihydrofolate synthase"],["ARO%3A3004152","aminosalicylate resistant thymidylate synthase"],["ARO%3A3004157","Mycobacterium tuberculosis folC with mutation conferring resistance to para-aminosalicylic acid"],["ARO%3A3004184","Mycobacterium tuberculosis ribD with mutation conferring resistance to para-aminosalicylic acid"],["ARO%3A3004153","Mycobacterium tuberculosis thyA with mutation conferring resistance to para-aminosalicylic acid"]],"b":[["antibacterial/diflunisal.html","diflunisal"],["antimycobacterial/4-aminosalicylic-acid.html","4-aminosalicylic acid"]]},{"id":"ARO:3007434","l":"almEFG","na":6,"nb":2,"a":[["ARO%3A3007430","alm glycyl carrier protein"],["ARO%3A3007432","alm glycyltransferase"],["ARO%3A3007433","almE"],["ARO%3A3007434","almEFG"],["ARO%3A3007431","almF"],["ARO%3A3004364","almG"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"CHEBI:140377","l":"","na":2,"nb":6,"a":[["EC%3A1.14.11.9","flavanone 3-dioxygenase"],["RHEA%3A18621","a (2S)-flavan-4-one + 2-oxoglutarate + O2 = a (2R,3R)-dihydroflavonol + succinate + CO2"]],"b":[["antibacterial/6-8-diprenylnaringenin.html","6,8-diprenylnaringenin"],["antibacterial/naringenin-7-o-%CE%B2-d-glucoside.html","naringenin 7-O-β-D-glucoside"],["antibacterial/sophoraflavanone-a.html","sophoraflavanone A"],["antifungal/selinone.html","selinone"],["antimycobacterial/sakuranetin.html","sakuranetin"],["antiprotozoal/sophoraflavanone-g.html","sophoraflavanone G"]]},{"id":"CHEBI:28802","l":"","na":6,"nb":2,"a":[["EC%3A1.14.20.6","flavonol synthase"],["EC%3A2.4.1.91","flavonol 3-O-glucosyltransferase"],["EC%3A3.2.1.62","glycosylceramidase"],["RHEA%3A21088","a (2R,3R)-dihydroflavonol + 2-oxoglutarate + O2 = a flavonol + succinate + CO2 + H2O"],["RHEA%3A81339","a flavonol 3-O-beta-D-glucoside + H2O = a flavonol + D-glucose"],["RHEA%3A22300","a flavonol + UDP-alpha-D-glucose = a flavonol 3-O-beta-D-glucoside + UDP + H(+)"]],"b":[["antibacterial/kaempferol.html","kaempferol"],["antiviral/quercetagetin.html","quercetagetin"]]},{"id":"CHEBI:4917","l":"eugenol","na":6,"nb":2,"a":[["EC%3A1.1.1.318","eugenol synthase"],["EC%3A2.1.1.146","(iso)eugenol O-methyltransferase"],["RHEA%3A32655","eugenol + a carboxylate + NADP(+) = a coniferyl ester + NADPH"],["RHEA%3A24690","eugenol + acetate + NADP(+) = (E)-coniferyl acetate + NADPH"],["RHEA%3A80551","eugenol + S-adenosyl-L-methionine = O-methyleugenol + S-adenosyl-L-homocysteine + H(+)"],["proteintraitsmech%3ABIOLIP_EOL","EOL-binding site"]],"b":[["antibacterial/dihydroconiferyl-alcohol.html","dihydroconiferyl alcohol"],["antibacterial/eugenol.html","eugenol"]]},{"id":"ARO:3000617","l":"mecA","na":5,"nb":2,"a":[["ARO%3A3000617","mecA"],["ARO%3A3003440","mecB"],["ARO%3A3001209","mecC"],["ARO%3A3004185","mecD"],["ARO%3A3001208","methicillin resistant PBP2"]],"b":[["antibacterial/ceftaroline.html","ceftaroline"],["antibacterial/methicillin.html","methicillin"]]},{"id":"CHEBI:28034","l":"","na":5,"nb":2,"a":[["EC%3A2.3.1.18","galactoside O-acetyltransferase"],["EC%3A2.4.3.1","beta-galactoside alpha-(2,6)-sialyltransferase"],["RHEA%3A15713","a beta-D-galactoside + acetyl-CoA = a 6-acetyl-beta-D-galactoside + CoA"],["RHEA%3A52104","a beta-D-galactoside + CMP-N-acetyl-beta-neuraminate = an N-acetyl-alpha-neuraminyl-(2->6)-beta-D-galactosyl derivative + CMP + H(+)"],["RHEA%3A85983","a beta-D-galactoside + UDP-N-acetyl-alpha-D-glucosamine = an N-acetyl-alpha-D-glucosaminyl-(1->4)-beta-D-galactosyl derivative + UDP + H(+)"]],"b":[["antifungal/kaempferol-3-o-%CE%B2-d-galactoside.html","kaempferol 3-O-β-D-galactoside"],["antiviral/acacetin-7-o-%CE%B2-d-galactopyranoside.html","acacetin-7-O-β-D-galactopyranoside"]]},{"id":"CHEBI:35748","l":"","na":2,"nb":5,"a":[["RHEA%3A59388","a fatty acid ester + H2O = an aliphatic alcohol + a fatty acid + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antiprotozoal/neurolenin-a.html","neurolenin A"],["antiprotozoal/neurolenin-b.html","neurolenin B"],["antiprotozoal/neurolenin-c.html","neurolenin C"],["antiprotozoal/neurolenin-d.html","neurolenin D"],["antiviral/interiotherin-b.html","interiotherin B"]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":2,"nb":5,"a":[["Pfam%3APF07833","Copper amine oxidase N-terminal domain"],["TED%3AAF-A0A447L715-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A447L715-F1-model_v4_TED02"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3000248","l":"DnaA","na":2,"nb":4,"a":[["ARO%3A3000248","DnaA"],["ARO%3A3004244","DnaA chromosomal replication initiation protein"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3000369","l":"MtrCDE","na":4,"nb":2,"a":[["ARO%3A3000816","mtrA"],["ARO%3A3000369","MtrCDE"],["ARO%3A3000817","mtrR"],["ARO%3A3004851","Neisseria gonorrhoeae mtrR with mutation conferring resistance"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003581","l":"Acinetobacter mutant Lpx gene conferring resistance to colistin","na":4,"nb":2,"a":[["ARO%3A3003581","Acinetobacter mutant Lpx gene conferring resistance to colistin"],["ARO%3A3003573","LpxA"],["ARO%3A3003574","LpxC"],["ARO%3A3003575","LpxD"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004063","l":"EdeQ","na":2,"nb":4,"a":[["ARO%3A3004064","Edeine acetyltransferase"],["ARO%3A3004063","EdeQ"]],"b":[["antibacterial/edeine-a.html","edeine A"],["antibacterial/edeine-b.html","edeine B"],["antibacterial/edeine-d.html","edeine D"],["antibacterial/edeine-f.html","edeine F"]]},{"id":"ARO:3004287","l":"lipid A phosphatase","na":2,"nb":4,"a":[["ARO%3A3004287","lipid A phosphatase"],["ARO%3A3003920","pgpB"]],"b":[["antibacterial/polymyxin-b1.html","polymyxin B1"],["antibacterial/polymyxin-b2.html","polymyxin B2"],["antibacterial/polymyxin-b3.html","polymyxin B3"],["antibacterial/polymyxin-b4.html","polymyxin B4"]]},{"id":"CHEBI:12834","l":"","na":4,"nb":2,"a":[["EC%3A1.3.1.102","2-alkenal reductase (NADP(+))"],["EC%3A1.3.1.74","2-alkenal reductase [NAD(P)(+)]"],["RHEA%3A13733","an n-alkanal + NAD(+) = an alk-2-enal + NADH + H(+)"],["RHEA%3A13737","an n-alkanal + NADP(+) = an alk-2-enal + NADPH + H(+)"]],"b":[["antifungal/decanal.html","decanal"],["antimycobacterial/undecanal.html","undecanal"]]},{"id":"CHEBI:13601","l":"","na":4,"nb":2,"a":[["EC%3A1.3.1.22","3-oxo-5alpha-steroid 4-dehydrogenase (NADP(+))"],["EC%3A1.3.99.5","3-oxo-5alpha-steroid 4-dehydrogenase (acceptor)"],["RHEA%3A13805","a 3-oxo-5alpha-steroid + A = a 3-oxo-Delta(4)-steroid + AH2"],["RHEA%3A54384","a 3-oxo-5alpha-steroid + NADP(+) = a 3-oxo-Delta(4)-steroid + NADPH + H(+)"]],"b":[["antiviral/lucialdehyde-b.html","lucialdehyde B"],["antiviral/torvoside-h.html","torvoside H"]]},{"id":"CHEBI:140332","l":"","na":2,"nb":4,"a":[["EC%3A2.1.1.231","flavonoid 4'-O-methyltransferase"],["RHEA%3A31743","a 4'-hydroxyflavanone + S-adenosyl-L-methionine = a 4'-methoxyflavanone + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antifungal/chamaejasmenin-a.html","chamaejasmenin A"],["antifungal/chamaejasmenin-d.html","chamaejasmenin D"],["antifungal/isochamaejasmenin-b.html","isochamaejasmenin B"],["unspecified/erylatissin-c.html","erylatissin C"]]},{"id":"CHEBI:15904","l":"long-chain fatty acid","na":2,"nb":4,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/9z-12z-15z-octadeca-9-12-15-trien-6-ynoic-acid.html","(9Z,12Z,15Z)-octadeca-9,12,15-trien-6-ynoic acid"],["antifungal/10e-15z-9-12-13-trihydroxy-10-15-octadecadienoic-acid.html","(10E,15Z)-9,12,13-trihydroxy-10,15-octadecadienoic acid"],["antimycobacterial/scleropyric-acid.html","scleropyric acid"],["antiprotozoal/minquartynoic-acid.html","minquartynoic acid"]]},{"id":"CHEBI:35190","l":"","na":4,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.60","The Organo Anion Transporter (OAT) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antifungal/casbene.html","casbene"],["unspecified/neophytadiene.html","neophytadiene"]]},{"id":"CHEBI:35757","l":"","na":4,"nb":2,"a":[["EC%3A3.5.1.4","amidase"],["RHEA%3A12020","a monocarboxylic acid amide + H2O = a monocarboxylate + NH4(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["MCSA%3A726","peptide amidase"]],"b":[["antiviral/n-acetyl-l-cysteinate.html","N-acetyl-L-cysteinate"],["unspecified/nocardicin-e-2.html","nocardicin E(2−)"]]},{"id":"CHEBI:52267","l":"","na":2,"nb":4,"a":[["EC%3A2.4.1.237","flavonol 7-O-beta-glucosyltransferase"],["RHEA%3A23164","a 7-O-hydroxy-flavonol + UDP-alpha-D-glucose = a flavonol 7-O-beta-D-glucoside + UDP + H(+)"]],"b":[["antibacterial/kaempferol.html","kaempferol"],["antibacterial/morin.html","morin"],["antibacterial/quercetin.html","quercetin"],["unspecified/galangin.html","galangin"]]},{"id":"CHEBI:80291","l":"","na":4,"nb":2,"a":[["EC%3A3.5.5.7","aliphatic nitrilase"],["EC%3A4.2.1.84","nitrile hydratase"],["RHEA%3A46188","an aliphatic nitrile + 2 H2O = a carboxylate + NH4(+)"],["RHEA%3A12673","an aliphatic primary amide = an aliphatic nitrile + H2O"]],"b":[["antifungal/acrylonitrile.html","acrylonitrile"],["antifungal/borrelidin.html","borrelidin"]]},{"id":"NCBITaxon:318829","l":"Magnaporthe oryzae","na":2,"nb":4,"a":[["TED%3AAF-A0A4P7NAU2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P7NAU2-F1-model_v4_TED01"],["TED%3AAF-A0A4P7MZB7-F1-model_v4_TED02","TED novel fold AF-A0A4P7MZB7-F1-model_v4_TED02"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/carboxin.html","carboxin"],["antifungal/carpropamid.html","carpropamid"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:746128","l":"Aspergillus fumigatus","na":2,"nb":4,"a":[["Pfam%3APF07335","Fungal chitosanase of glycosyl hydrolase group 75"],["Pfam%3APF12296","Hydrophobic surface binding protein A"]],"b":[["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/terbinafine.html","terbinafine"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"ARO:3000770","l":"AdeABC","na":3,"nb":2,"a":[["ARO%3A3000770","AdeABC"],["ARO%3A3000553","adeR"],["ARO%3A3000549","adeS"]],"b":[["antibacterial/tetracycline.html","tetracycline"],["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:3000773","l":"CmeABC","na":2,"nb":3,"a":[["ARO%3A3000773","CmeABC"],["ARO%3A3000526","cmeR"]],"b":[["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3000799","l":"MexGHI-OpmD","na":2,"nb":3,"a":[["ARO%3A3000806","MexG"],["ARO%3A3000799","MexGHI-OpmD"]],"b":[["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/tetracycline.html","tetracycline"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3002986","l":"bacA","na":2,"nb":3,"a":[["ARO%3A3002986","bacA"],["ARO%3A3003250","bcrC"]],"b":[["antibacterial/bacitracin-a.html","bacitracin A"],["antibacterial/bacitracin-b.html","bacitracin B"],["antibacterial/bacitracin-f.html","bacitracin F"]]},{"id":"ARO:3003250","l":"bcrC","na":2,"nb":3,"a":[["ARO%3A3002986","bacA"],["ARO%3A3003250","bcrC"]],"b":[["antibacterial/bacitracin-a.html","bacitracin A"],["antibacterial/bacitracin-b.html","bacitracin B"],["antibacterial/bacitracin-f.html","bacitracin F"]]},{"id":"ARO:3003963","l":"flo","na":3,"nb":2,"a":[["ARO%3A3003963","flo"],["ARO%3A3002705","floR"],["ARO%3A3002812","pp-flo"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"]]},{"id":"CHEBI:142621","l":"","na":3,"nb":2,"a":[["RHEA%3A69763","a medium-chain fatty aldehyde + NAD(+) + H2O = a medium-chain fatty acid + NADH + 2 H(+)"],["RHEA%3A80815","a medium-chain fatty aldehyde + NADP(+) + H2O = a medium-chain fatty acid + NADPH + 2 H(+)"],["RHEA%3A58364","a medium-chain primary fatty alcohol + NADP(+) = a medium-chain fatty aldehyde + NADPH + H(+)"]],"b":[["antifungal/decanal.html","decanal"],["antimycobacterial/undecanal.html","undecanal"]]},{"id":"CHEBI:17012","l":"N-acetylneuraminic acid","na":2,"nb":3,"a":[["MCSA%3A835","exo-alpha-sialidase (GH33 Family)"],["MCSA%3A828","exo-alpha-sialidase (GH34 Family)"]],"b":[["antiviral/n-acetyl-%CE%B1-neuraminic-acid.html","N-acetyl-α-neuraminic acid"],["antiviral/n-acetyl-%CE%B2-neuraminic-acid.html","N-acetyl-β-neuraminic acid"],["antiviral/n-acetylneuraminic-acid.html","N-acetylneuraminic acid"]]},{"id":"CHEBI:83628","l":"","na":3,"nb":2,"a":[["EC%3A3.5.1.4","amidase"],["RHEA%3A12020","a monocarboxylic acid amide + H2O = a monocarboxylate + NH4(+)"],["MCSA%3A726","peptide amidase"]],"b":[["antifungal/2-chloroacetamide.html","2-chloroacetamide"],["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"NCBITaxon:332648","l":"Botrytis cinerea B05.10","na":3,"nb":2,"a":[["Pfam%3APF01670","Glycosyl hydrolase family 12"],["PROSITE%3APS00776","Glycosyl hydrolases family 11 (GH11) active site signature 1"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"]],"b":[["antifungal/fludioxonil.html","fludioxonil"],["antifungal/iprodione.html","iprodione"]]},{"id":"ARO:3003027","l":"lmrAB Operon","na":2,"nb":2,"a":[["ARO%3A3003028","lmrA"],["ARO%3A3003027","lmrAB Operon"]],"b":[["antibacterial/lincomycin.html","lincomycin"],["antibacterial/puromycin.html","puromycin"]]},{"id":"ARO:3004101","l":"MdtNOP","na":2,"nb":2,"a":[["ARO%3A3003843","leuO"],["ARO%3A3004101","MdtNOP"]],"b":[["antibacterial/puromycin.html","puromycin"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3004141","l":"AxyXY-OprZ","na":2,"nb":2,"a":[["ARO%3A3004141","AxyXY-OprZ"],["ARO%3A3004145","AxyZ"]],"b":[["antibacterial/cefepime.html","cefepime"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004919","l":"Mycobacterium tuberculosis eccC5 conferring resistance to fluoroquinolones","na":2,"nb":2,"a":[["ARO%3A3004918","Mycobacterium tuberculosis eccB5 conferring resistance to fluoroquinolones"],["ARO%3A3004919","Mycobacterium tuberculosis eccC5 conferring resistance to fluoroquinolones"]],"b":[["antibacterial/moxifloxacin.html","moxifloxacin"],["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3004995","l":"rifampicin resistant rpoC","na":2,"nb":2,"a":[["ARO%3A3004994","Mycobacterium tuberculosis rpoC mutations confer resistance to rifampicin"],["ARO%3A3004995","rifampicin resistant rpoC"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3007161","l":"","na":2,"nb":2,"a":[["ARO%3A3005178","Mycobacterium tuberculosis ethA mutations conferring resistance to perchlozone"],["ARO%3A3005205","perchlozone resistant ethA"]],"b":[["antibacterial/perchlozone.html","perchlozone"],["antibacterial/thioacetazone.html","thioacetazone"]]},{"id":"CHEBI:133959","l":"","na":2,"nb":2,"a":[["EC%3A2.1.1.46","isoflavone 4'-O-methyltransferase"],["RHEA%3A31739","a 4'-hydroxyisoflavone + S-adenosyl-L-methionine = a 4'-methoxyisoflavone + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/licoricone.html","licoricone"],["unspecified/erylatissin-a.html","erylatissin A"]]},{"id":"CHEBI:140310","l":"","na":2,"nb":2,"a":[["EC%3A3.1.1.2","arylesterase"],["RHEA%3A17309","a phenyl acetate + H2O = a phenol + acetate + H(+)"]],"b":[["antibacterial/resorcinol-monoacetate.html","resorcinol monoacetate"],["antifungal/ncx-4040.html","NCX-4040"]]},{"id":"CHEBI:17354","l":"","na":2,"nb":2,"a":[["EC%3A5.1.99.2","16-hydroxysteroid epimerase"],["RHEA%3A15829","a 16alpha-hydroxysteroid = a 16beta-hydroxysteroid"]],"b":[["antifungal/9%CE%BE-14%CE%BE-25s-cholestane-3%CE%B2-4%CE%B2-6%CE%B2-7%CE%B1-8-15%CE%B1-16%CE%B2-26-octol.html","(9ξ,14ξ,25S)-cholestane-3β,4β,6β,7α,8,15α,16β,26-octol"],["antiviral/clathsterol-disulfonic-acid.html","clathsterol disulfonic acid"]]},{"id":"CHEBI:28163","l":"","na":2,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/albomycin-%CE%B42.html","albomycin δ2"],["antibacterial/albomycin-%CE%B5.html","albomycin ε"]]},{"id":"CHEBI:4986","l":"","na":2,"nb":2,"a":[["EC%3A2.1.1.15","fatty-acid O-methyltransferase"],["RHEA%3A23012","a fatty acid + S-adenosyl-L-methionine = a fatty acid methyl ester + S-adenosyl-L-homocysteine"]],"b":[["antibacterial/methyl-%CE%B3-linolenate.html","methyl γ-linolenate"],["antifungal/methyl-nonanoate.html","methyl nonanoate"]]},{"id":"CHEBI:64627","l":"","na":2,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.A.18","The Peptide Uptake Permease (PUP) Family"]],"b":[["unspecified/microcin-b17.html","microcin B17"],["unspecified/microcin-c.html","microcin c"]]},{"id":"CHEBI:86315","l":"","na":2,"nb":2,"a":[["EC%3A2.1.1.9","thiol S-methyltransferase"],["RHEA%3A18277","a thiol + S-adenosyl-L-methionine = a methyl thioether + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antifungal/maremycin-g.html","maremycin G"],["antifungal/neticonazole.html","neticonazole"]]},{"id":"NCBITaxon:5482","l":"Candida tropicalis","na":2,"nb":2,"a":[["Pfam%3APF05203","Hom_end-associated Hint"],["Pfam%3APF05204","Homing endonuclease"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"CHEBI:33281","l":"","na":1,"nb":910,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/1-carbapenem-3-carboxylic-acid.html","1-carbapenem-3-carboxylic acid"],["antibacterial/1%CE%B2-methylcarbapenem.html","1β-methylcarbapenem"],["antibacterial/3-6-9-trihydroxypterocarpan.html","3,6,9-trihydroxypterocarpan"],["antibacterial/3z-ravenic-acid.html","(3Z)-ravenic acid"],["antibacterial/5-chloro-7-iodoquinolin-8-ol.html","5-chloro-7-iodoquinolin-8-ol"],["antibacterial/5-o-mycaminosyltylonolide.html","5-O-mycaminosyltylonolide"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":680,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16240","requires hydrogen peroxide"],["EC%3A1.1.3.10","pyranose oxidase"],["EC%3A1.1.3.11","L-sorbose oxidase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.3.13","alcohol oxidase"],["EC%3A1.1.3.15","(S)-2-hydroxy-acid oxidase"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":297,"nb":1,"a":[["IDPO%3A0000002","disorder"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000045","phosphorylation display site"],["IDPO%3A0000059","self-inhibition"],["Pfam%3APF17837","4'-phosphopantetheinyl transferase N-terminal domain"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"ARO:3000014","l":"TEM beta-lactamase","na":251,"nb":1,"a":[["ARO%3A3000873","TEM-1"],["ARO%3A3000882","TEM-10"],["ARO%3A3001366","TEM-100"],["ARO%3A3000964","TEM-101"],["ARO%3A3000965","TEM-102"],["ARO%3A3000966","TEM-103"]],"b":[["antibacterial/ampicillin.html","ampicillin"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":212,"nb":1,"a":[["EC%3A1.1.1.244","methanol dehydrogenase"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.99.37","methanol dehydrogenase (nicotinoprotein)"],["EC%3A1.13.11.94","4-vinylguaiacol dioxygenase"],["EC%3A1.14.11.27","[histone H3]-dimethyl-L-lysine(36) demethylase"]],"b":[["biocide/formaldehyde.html","formaldehyde"]]},{"id":"ARO:3000017","l":"OXA beta-lactamase","na":158,"nb":1,"a":[["ARO%3A3007696","OXA-1-like beta-lactamase"],["ARO%3A3007697","OXA-10-like beta-lactamase"],["ARO%3A3008427","OXA-1006"],["ARO%3A3008432","OXA-1011"],["ARO%3A3001706","OXA-102"],["ARO%3A3008457","OXA-1036"]],"b":[["antibacterial/oxacillin.html","oxacillin"]]},{"id":"GO:0004146","l":"dihydrofolate reductase activity","na":125,"nb":1,"a":[["EC%3A1.5.1.3","dihydrofolate reductase"],["RHEA%3A15009","(6S)-5,6,7,8-tetrahydrofolate + NADP(+) = 7,8-dihydrofolate + NADPH + H(+)"],["GO%3A0004146","dihydrofolate reductase activity"],["NCBIfam%3ANF012208","bifunctional dihydropteridine reductase/dihydrofolate reductase TmpR"],["NCBIfam%3ANF000055","DfrA12/DfrA21 family trimethoprim-resistant dihydrofolate reductase"],["NCBIfam%3ANF000332","DfrD/DfrG/DfrK family trimethoprim-resistant dihydrofolate reductase"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"CHEBI:25384","l":"","na":1,"nb":79,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/3-4-secoisopimara-4-18-7-15-triene-3-oic-acid.html","3,4-secoisopimara-4(18),7,15-triene-3-oic acid"],["antibacterial/3-phenylbutyric-acid.html","3-phenylbutyric acid"],["antibacterial/7-3-aminopyrrolidin-1-yl-1-2-4-difluorophenyl-6-fluoro-4-oxo-1-4-dihyd.html","7-(3-aminopyrrolidin-1-yl)-1-(2,4-difluorophenyl)-6-fluoro-4-oxo-1,4-dihydro-1,8-naphthyridine-3-carboxylic"],["antibacterial/chuangxinmycin.html","(−)-chuangxinmycin"],["antibacterial/cremeomycin.html","cremeomycin"],["antibacterial/decatromicin-a.html","decatromicin A"]]},{"id":"ARO:3001218","l":"trimethoprim resistant dihydrofolate reductase dfr","na":60,"nb":1,"a":[["ARO%3A3005354","dfr22"],["ARO%3A3002854","dfrA1"],["ARO%3A3003011","dfrA10"],["ARO%3A3002858","dfrA12"],["ARO%3A3003012","dfrA13"],["ARO%3A3002859","dfrA14"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"CHEBI:25105","l":"","na":1,"nb":58,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antibacterial/5-o-mycaminosyltylonolide.html","5-O-mycaminosyltylonolide"],["antibacterial/aplasmomycin.html","(+)-aplasmomycin"],["antibacterial/azithromycin.html","azithromycin"],["antibacterial/boromycin.html","boromycin"],["antibacterial/brefeldin-a.html","brefeldin A"],["antibacterial/cethromycin.html","cethromycin"]]},{"id":"NCBITaxon:227321","l":"Emericella nidulans (strain FGSC A4 / ATCC 38163 / CBS 112.46 / NRRL 194 / M139)","na":44,"nb":1,"a":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF05270","Alpha-L-arabinofuranosidase B (ABFB) domain"],["Pfam%3APF07792","Docking domain of Afi1 for Arf3 in vesicle trafficking"],["Pfam%3APF09206","Alpha-L-arabinofuranosidase B, catalytic"],["Pfam%3APF27751","ATEG_07667 C-terminal domain"],["Pfam%3APF20238","Copper acquisition factor BIM1-like"]],"b":[["antifungal/thiabendazole.html","thiabendazole"]]},{"id":"ARO:3007152","l":"","na":40,"nb":1,"a":[["ARO%3A3004270","antibiotic resistant fabI"],["ARO%3A3003462","antibiotic resistant kasA"],["ARO%3A3003460","antibiotic resistant ndh"],["ARO%3A3004045","Escherichia coli fabI mutations conferring resistance to isoniazid and triclosan"],["ARO%3A3004894","Isoniazid resistant ahpC"],["ARO%3A3005103","isoniazid resistant ethA"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"NCBITaxon:367110","l":"Neurospora crassa (strain ATCC 24698 / 74-OR23-1A / CBS 708.71 / DSM 1257 / FGSC 987)","na":40,"nb":1,"a":[["Pfam%3APF08509","Adenylate cyclase G-alpha binding domain"],["Pfam%3APF25026","Asd-4-like domain"],["Pfam%3APF21334","Fungal epsilon subunit of F1F0-ATP synthase C-terminal domain"],["Pfam%3APF20238","Copper acquisition factor BIM1-like"],["Pfam%3APF21492","Ribosomal protein L31p, N-terminal"],["Pfam%3APF00734","Fungal cellulose binding domain"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"CHEBI:17855","l":"triglyceride","na":34,"nb":1,"a":[["EC%3A2.3.1.158","phospholipid:diacylglycerol acyltransferase"],["EC%3A2.3.1.77","triacylglycerol--sterol O-acyltransferase"],["EC%3A3.1.1.3","triacylglycerol lipase"],["EC%3A3.1.1.34","lipoprotein lipase"],["EC%3A3.1.1.79","hormone-sensitive lipase"],["RHEA%3A77987","9-hydroxy-octadecanoate + a triacylglycerol = 9-(acyloxy)-octadecanoate + a 1,3-diacylglycerol"]],"b":[["antifungal/triacetin.html","triacetin"]]},{"id":"CHEBI:35358","l":"","na":1,"nb":33,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/prontosil.html","prontosil"],["antibacterial/sulfabenzamide.html","sulfabenzamide"],["antibacterial/sulfabromomethazine.html","sulfabromomethazine"],["antibacterial/sulfachloropyridazine.html","sulfachloropyridazine"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfaethoxypyridazine.html","sulfaethoxypyridazine"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":32,"nb":1,"a":[["Pfam%3APF25848","Rodlin protein"],["Pfam%3APF13420","Acetyltransferase (GNAT) domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF26381","BREX System ATPase PglY protein 5th domain"],["Pfam%3APF26382","BREX System ATPase PglY protein 6th domain"]],"b":[["antibacterial/nocardamine.html","nocardamine"]]},{"id":"ARO:3007155","l":"","na":31,"nb":1,"a":[["ARO%3A3005002","antibiotic resistant polyketide synthase genes"],["ARO%3A3004972","antibiotic resistant ppsA"],["ARO%3A3004883","antibiotic resistant ppsC"],["ARO%3A3004885","antibiotic resistant ppsD"],["ARO%3A3007184","multidrug resistant Rv1258c"],["ARO%3A3004957","Mycobacterium tuberculosis clpC1 with mutation conferring resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"CHEBI:15882","l":"phenol","na":31,"nb":1,"a":[["EC%3A1.14.13.244","phenol 2-monooxygenase (NADH)"],["EC%3A1.14.13.7","phenol 2-monooxygenase (NADPH)"],["EC%3A1.14.14.20","phenol 2-monooxygenase (FADH2)"],["EC%3A2.1.1.25","phenol O-methyltransferase"],["EC%3A2.4.2.55","nicotinate D-ribonucleotide:phenol phospho-D-ribosyltransferase"],["EC%3A2.7.1.238","phenol phosphorylase"]],"b":[["biocide/phenol.html","phenol"]]},{"id":"CHEBI:16236","l":"ethanol","na":31,"nb":1,"a":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.5.5","alcohol dehydrogenase (quinone)"],["EC%3A1.1.99.36","alcohol dehydrogenase (nicotinoprotein)"],["EC%3A2.3.1.268","ethanol O-acetyltransferase"],["EC%3A3.1.1.113","ethyl acetate hydrolase"],["EC%3A3.1.1.67","fatty-acyl-ethyl-ester synthase"]],"b":[["biocide/ethanol.html","ethanol"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae (strain ATCC 42149 / RIB 40)","na":27,"nb":1,"a":[["Pfam%3APF09260","Alpha-amylase, domain C"],["Pfam%3APF28338","AclK C-terminal domain"],["Pfam%3APF09206","Alpha-L-arabinofuranosidase B, catalytic"],["Pfam%3APF28380","Sesquiterpene cyclase astC-like C-terminal domain"],["Pfam%3APF13364","Beta-galactosidase second all-beta domain"],["Pfam%3APF10435","Beta-galactosidase, domain 2"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"ARO:3000527","l":"","na":25,"nb":1,"a":[["ARO%3A3003668","16s rRNA with mutation conferring resistance to polyamine antibiotics"],["ARO%3A3004064","Edeine acetyltransferase"],["ARO%3A3004063","EdeQ"],["ARO%3A3002876","ethambutol resistant aftA"],["ARO%3A3003452","ethambutol resistant embA"],["ARO%3A3000235","ethambutol resistant embB"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003292","l":"fluoroquinolone resistant gyrA","na":25,"nb":1,"a":[["ARO%3A3003817","Acinetobacter baumannii gyrA conferring resistance to fluoroquinolones"],["ARO%3A3003297","Bartonella bacilliformis gyrA conferring resistance to fluoroquinolones"],["ARO%3A3004860","Burkholderia dolosa gyrA conferring resistance to fluoroquinolones"],["ARO%3A3003789","Campylobacter jejuni gyrA conferring resistance to fluoroquinolones"],["ARO%3A3003931","Capnocytophaga gingivalis gyrA conferring resistance to fluoroquinolones"],["ARO%3A3003995","Clostridioides difficile gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/nybomycin.html","nybomycin"]]},{"id":"CHEBI:64683","l":"","na":25,"nb":1,"a":[["EC%3A2.3.1.73","diacylglycerol--sterol O-acyltransferase"],["EC%3A3.1.3.106","2-lysophosphatidate phosphatase"],["RHEA%3A39851","2 a 1-acyl-sn-glycerol = glycerol + a 1,2-diacyl-sn-glycerol"],["RHEA%3A77991","9-hydroxy-octadecanoate + a 1,2-diacyl-sn-glycerol = 9-(acyloxy)-octadecanoate + a 1-acyl-sn-glycerol"],["RHEA%3A35663","a 1,2-diacyl-sn-glycerol + H2O = a 1-acyl-sn-glycerol + a fatty acid + H(+)"],["RHEA%3A39859","a 1,3-diacyl-sn-glycerol + a 1-acyl-sn-glycerol = a triacyl-sn-glycerol + glycerol"]],"b":[["antiviral/1-linoleoyl-sn-glycerol.html","1-linoleoyl-sn-glycerol"]]},{"id":"ARO:3000250","l":"ErmC","na":1,"nb":24,"a":[["ARO%3A3000250","ErmC"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000326","l":"ErmE","na":1,"nb":24,"a":[["ARO%3A3000326","ErmE"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000347","l":"ErmA","na":1,"nb":24,"a":[["ARO%3A3000347","ErmA"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000375","l":"ErmB","na":1,"nb":24,"a":[["ARO%3A3000375","ErmB"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000392","l":"Erm(37)","na":1,"nb":24,"a":[["ARO%3A3000392","Erm(37)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000495","l":"ErmD","na":1,"nb":24,"a":[["ARO%3A3000495","ErmD"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000498","l":"ErmF","na":1,"nb":24,"a":[["ARO%3A3000498","ErmF"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000522","l":"ErmG","na":1,"nb":24,"a":[["ARO%3A3000522","ErmG"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000592","l":"ErmN","na":1,"nb":24,"a":[["ARO%3A3000592","ErmN"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000593","l":"ErmQ","na":1,"nb":24,"a":[["ARO%3A3000593","ErmQ"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000594","l":"ErmR","na":1,"nb":24,"a":[["ARO%3A3000594","ErmR"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000595","l":"ErmT","na":1,"nb":24,"a":[["ARO%3A3000595","ErmT"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000596","l":"ErmX","na":1,"nb":24,"a":[["ARO%3A3000596","ErmX"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000599","l":"Erm(33)","na":1,"nb":24,"a":[["ARO%3A3000599","Erm(33)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000600","l":"Erm(34)","na":1,"nb":24,"a":[["ARO%3A3000600","Erm(34)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000601","l":"Erm(38)","na":1,"nb":24,"a":[["ARO%3A3000601","Erm(38)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000602","l":"Erm(39)","na":1,"nb":24,"a":[["ARO%3A3000602","Erm(39)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000603","l":"Erm(41)","na":1,"nb":24,"a":[["ARO%3A3000603","Erm(41)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000604","l":"Erm(35)","na":1,"nb":24,"a":[["ARO%3A3000604","Erm(35)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000605","l":"Erm(36)","na":1,"nb":24,"a":[["ARO%3A3000605","Erm(36)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"CHEBI:62733","l":"","na":1,"nb":24,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_62733","requires methanophenazine"]],"b":[["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/platencin.html","platencin"],["antibacterial/platensimycin.html","platensimycin"],["antifungal/benomyl.html","benomyl"],["antifungal/bixafen.html","bixafen"],["antifungal/fenhexamid.html","fenhexamid"]]},{"id":"CHEBI:140324","l":"","na":1,"nb":23,"a":[["RHEA%3A85699","an amide = a nitrile + H2O"]],"b":[["antibacterial/cefsulodin.html","cefsulodin"],["antibacterial/cellocidin.html","cellocidin"],["antibacterial/durlobactam.html","durlobactam"],["antibacterial/methacycline.html","methacycline"],["antibacterial/pantocin-a.html","pantocin A"],["antibacterial/promysalin.html","promysalin"]]},{"id":"CHEBI:26658","l":"","na":1,"nb":23,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antibacterial/laurinterol.html","laurinterol"],["antibacterial/suaveolindole.html","suaveolindole"],["antifungal/albicanol.html","(+)-albicanol"],["antifungal/ascochlorin.html","ascochlorin"],["antifungal/caf-603.html","CAF-603"],["antifungal/cj-01.html","CJ-01"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":23,"nb":1,"a":[["Pfam%3APF09255","Caf1 Capsule antigen"],["Pfam%3APF02611","CDP-diacylglycerol pyrophosphatase"],["Pfam%3APF07411","Domain of unknown function (DUF1508)"],["Pfam%3APF05171","Haemin-degrading HemS.ChuX domain"],["Pfam%3APF21500","DNA polymerase III subunit delta', AAA+ ATPase lid domain"],["Pfam%3APF11004","3-deoxy-D-manno-oct-2-ulosonic acid (Kdo) hydroxylase"]],"b":[["unspecified/%CE%B1-mangostin.html","α-mangostin"]]},{"id":"CHEBI:48132","l":"","na":1,"nb":22,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/minocycline.html","minocycline"],["antibacterial/tetracenomycin-a2.html","tetracenomycin A2"],["antibacterial/tetracenomycin-c.html","tetracenomycin C"],["antibacterial/tetracenomycin-x.html","tetracenomycin X"],["unspecified/8-demethyl-8-2-3-o-dimethyl-%CE%B1-l-rhamnosyl-tetracenomycin-c.html","8-demethyl-8-(2,3-O-dimethyl-α-L-rhamnosyl)tetracenomycin C"],["unspecified/8-demethyl-8-2-o-methyl-%CE%B1-l-rhamnosyl-tetracenomycin-c.html","8-demethyl-8-(2-O-methyl-α-L-rhamnosyl)tetracenomycin C"]]},{"id":"NCBITaxon:284593","l":"Candida glabrata (strain ATCC 2001 / BCRC 20586 / JCM 3761 / NBRC 0622 / NRRL Y-65 / CBS 138)","na":22,"nb":1,"a":[["Pfam%3APF08647","BRE1 E3 ubiquitin ligase"],["Pfam%3APF00649","Copper fist DNA binding domain"],["Pfam%3APF18499","Ubc7p-binding region of Cue1"],["Pfam%3APF18535","Gal11 activator-binding domain (ABD1)"],["Pfam%3APF05390","Yeast cell wall synthesis protein KRE9/KNH1 C-terminal"],["Pfam%3APF09451","Autophagy-related protein 27"]],"b":[["antifungal/fluconazole.html","fluconazole"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":21,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29108","requires calcium(2+)"],["EC%3A1.13.12.24","calcium-regulated photoprotein"],["EC%3A7.2.2.10","P-type Ca(2+) transporter"],["RHEA%3A72631","3 Li(+)(out) + Ca(2+)(in) = 3 Li(+)(in) + Ca(2+)(out)"],["RHEA%3A55884","[aequorin] + 3 Ca(2+) = [aequorin]--dioxetanone"],["RHEA%3A55888","[aequorin]--dioxetanone = excited state-[aequorin] + CO2"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"CHEBI:16016","l":"dihydroxyacetone","na":20,"nb":1,"a":[["EC%3A1.1.1.156","glycerol 2-dehydrogenase (NADP(+))"],["EC%3A1.1.1.6","glycerol dehydrogenase"],["EC%3A1.1.99.22","glycerol dehydrogenase (acceptor)"],["EC%3A2.2.1.3","formaldehyde transketolase"],["EC%3A2.7.1.121","phosphoenolpyruvate--glycerone phosphotransferase"],["EC%3A2.7.1.29","glycerone kinase"]],"b":[["antifungal/dihydroxyacetone.html","dihydroxyacetone"]]},{"id":"CHEBI:24400","l":"","na":1,"nb":17,"a":[["TCDB%3A3.A.3","The P-type ATPase (P-ATPase) Superfamily"]],"b":[["antibacterial/acteoside.html","acteoside"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/fidaxomicin.html","fidaxomicin"],["antibacterial/jadomycin-b.html","jadomycin B"],["antibacterial/josamycin.html","josamycin"],["antibacterial/polyketomycin.html","polyketomycin"]]},{"id":"CHEBI:16247","l":"","na":16,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.A.79","The Autophagosomal Phospholipid Transmembrane Translocase (Atg9) Family"],["TCDB%3A9.A.36","The Ca2+-dependent Phospholipid Scramblase (Scramblase) Family"],["TCDB%3A1.A.17","The Calcium-dependent Chloride Channel (Ca-ClC) Family"],["TCDB%3A9.B.27","The Death Effector Domain A (DedA) Family"],["TCDB%3A8.A.97","The EPG-3/VMP1 (EPG/VPM) Scramblase Family"]],"b":[["antifungal/miltefosine.html","miltefosine"]]},{"id":"CHEBI:16933","l":"","na":16,"nb":1,"a":[["EC%3A1.3.1.71","Delta(24(24(1)))-sterol reductase"],["EC%3A2.3.2.37","ergosteryl-3beta-O-L-aspartate synthase"],["EC%3A3.1.1.121","ergosteryl-3beta-O-L-aspartate hydrolase"],["EC%3A4.2.1.62","5alpha-hydroxysteroid dehydratase"],["RHEA%3A76559","1-(ergostan-3beta-yl)-L-aspartate + H2O = ergosterol + L-aspartate + H(+)"],["RHEA%3A22064","5alpha-ergosta-7,22-diene-3beta,5-diol = ergosterol + H2O"]],"b":[["antifungal/natamycin.html","natamycin"]]},{"id":"NCBITaxon:498257","l":"Verticillium dahliae (strain VdLs.17 / ATCC MYA-4575 / FGSC 10137)","na":16,"nb":1,"a":[["Pfam%3APF11787","Aft1 HRR domain"],["Pfam%3APF16541","Alternaria alternata allergen 1"],["Pfam%3APF09792","Ubiquitin 3 binding protein But2 C-terminal domain"],["Pfam%3APF28223","CAP22"],["Pfam%3APF05730","CFEM domain"],["Pfam%3APF27979","CON7 transcription factor helical domain"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":16,"nb":1,"a":[["Pfam%3APF05932","Tir chaperone protein (CesT) family"],["Pfam%3APF17656","FlgA N-terminal domain"],["Pfam%3APF22200","ExsA N-terminal regulatory domain"],["Pfam%3APF05171","Haemin-degrading HemS.ChuX domain"],["Pfam%3APF07201","HrpJ-like domain"],["Pfam%3APF04391","Protein of unknown function (DUF533)"]],"b":[["unspecified/chir-090.html","CHIR-090"]]},{"id":"CHEBI:16619","l":"(2-trans,6-trans)-farnesol","na":14,"nb":1,"a":[["EC%3A1.1.1.216","farnesol dehydrogenase"],["EC%3A1.1.1.354","farnesol dehydrogenase (NAD(+))"],["EC%3A2.7.1.216","farnesol kinase"],["EC%3A3.1.7.6","farnesyl diphosphatase"],["EC%3A5.2.1.9","farnesol 2-isomerase"],["RHEA%3A13401","(2E,6E)-farnesol = (2Z,6E)-farnesol"]],"b":[["unspecified/2-trans-6-trans-farnesol.html","(2-trans,6-trans)-farnesol"]]},{"id":"CHEBI:60783","l":"","na":1,"nb":14,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antibacterial/oxetanocin-a.html","oxetanocin A"],["antifungal/flucytosine.html","flucytosine"],["antifungal/jawsamycin.html","jawsamycin"],["antiviral/6-azathymidine.html","6-azathymidine"],["antiviral/emtricitabine.html","emtricitabine"],["antiviral/favipiravir-rtp.html","favipiravir-RTP"]]},{"id":"ARO:3003294","l":"Escherichia coli gyrA conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003294","Escherichia coli gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003295","l":"Mycobacterium tuberculosis gyrA conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003295","Mycobacterium tuberculosis gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003296","l":"Staphylococcus aureus gyrA conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003296","Staphylococcus aureus gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003297","l":"Bartonella bacilliformis gyrA conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003297","Bartonella bacilliformis gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003298","l":"Mycobacterium leprae gyrA conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003298","Mycobacterium leprae gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003304","l":"Mycobacterium leprae gyrB conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003304","Mycobacterium leprae gyrB conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003305","l":"Ureaplasma urealyticum gyrB conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003305","Ureaplasma urealyticum gyrB conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003306","l":"Morganella morganii gyrB conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003306","Morganella morganii gyrB conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003307","l":"Salmonella serovars gyrB conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003307","Salmonella serovars gyrB conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003308","l":"Escherichia coli parC conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003308","Escherichia coli parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003309","l":"Ureaplasma urealyticum parC conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003309","Ureaplasma urealyticum parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003310","l":"Mycoplasma hominis parC conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003310","Mycoplasma hominis parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003311","l":"Streptococcus pneumoniae parC conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003311","Streptococcus pneumoniae parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003312","l":"Staphylococcus aureus parC conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003312","Staphylococcus aureus parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003315","l":"Staphylococcus aureus parE conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003315","Staphylococcus aureus parE conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003316","l":"Escherichia coli parE conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003316","Escherichia coli parE conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003317","l":"Salmonella serovars parE conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003317","Salmonella serovars parE conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003817","l":"Acinetobacter baumannii gyrA conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003817","Acinetobacter baumannii gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003818","l":"Acinetobacter baumannii parC conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003818","Acinetobacter baumannii parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":13,"nb":1,"a":[["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF03173","Putative carbohydrate binding domain"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"],["Pfam%3APF06438","Heme-binding protein A (HasA)"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF05247","Flagellar transcriptional activator (FlhD)"]],"b":[["antibacterial/althiomycin.html","althiomycin"]]},{"id":"ARO:3003459","l":"Mycobacterium tuberculosis gyrB mutant conferring resistance to fluoroquinolones","na":1,"nb":12,"a":[["ARO%3A3003459","Mycobacterium tuberculosis gyrB mutant conferring resistance to fluoroquinolones"]],"b":[["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"CHEBI:16188","l":"octan-1-ol","na":12,"nb":1,"a":[["EC%3A1.1.1.73","octanol dehydrogenase"],["EC%3A1.14.15.3","alkane 1-monooxygenase"],["RHEA%3A79323","octan-1-ol + 2 Fe(III)-[cytochrome c] = octanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A64628","octan-1-ol + acetyl-CoA = octyl acetate + CoA"],["RHEA%3A64852","octan-1-ol + benzoyl-CoA = octyl benzoate + CoA"],["RHEA%3A44064","octan-1-ol + hexadecanoyl-CoA = octyl hexadecanoate + CoA"]],"b":[["antifungal/octan-1-ol.html","octan-1-ol"]]},{"id":"CHEBI:22479","l":"","na":1,"nb":12,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/astromicin.html","astromicin"],["antibacterial/etimicin.html","etimicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"CHEBI:28077","l":"rifampicin","na":12,"nb":1,"a":[["ARO%3A3007073","Bacillus subtilis rpoB mutants conferring resistance to rifampin"],["ARO%3A3004480","Bifidobacterium adolescentis rpoB mutants conferring resistance to rifampicin"],["ARO%3A3004563","Clostridioides difficile rpoB with mutation conferring resistance to rifampicin"],["ARO%3A3003288","Escherichia coli rpoB mutants conferring resistance to rifampicin"],["ARO%3A3007051","Helicobacter pylori rpoB mutation conferring resistance to rifampicin"],["ARO%3A3003284","Mycobacterium leprae rpoB mutations conferring resistance to rifampicin"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3000858","l":"armA","na":1,"nb":11,"a":[["ARO%3A3000858","armA"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/g418.html","G418"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3000859","l":"rmtA","na":1,"nb":11,"a":[["ARO%3A3000859","rmtA"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/g418.html","G418"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3000860","l":"rmtB","na":1,"nb":11,"a":[["ARO%3A3000860","rmtB"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/g418.html","G418"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3000861","l":"rmtC","na":1,"nb":11,"a":[["ARO%3A3000861","rmtC"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/g418.html","G418"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3000862","l":"sgm","na":1,"nb":11,"a":[["ARO%3A3000862","sgm"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/g418.html","G418"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3007153","l":"","na":11,"nb":1,"a":[["ARO%3A3003734","antibiotic resistant fusA"],["ARO%3A3003736","antibiotic resistant fusE"],["ARO%3A3003552","fusB"],["ARO%3A3003733","fusC"],["ARO%3A3003731","fusD"],["ARO%3A3004663","FusF"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"CHEBI:17847","l":"p-cresol","na":11,"nb":1,"a":[["EC%3A1.14.13.236","toluene 4-monooxygenase"],["EC%3A1.17.9.1","4-methylphenol dehydrogenase (hydroxylating)"],["EC%3A4.1.1.83","4-hydroxyphenylacetate decarboxylase"],["EC%3A4.1.99.19","2-iminoacetate synthase"],["RHEA%3A22732","4-hydroxyphenylacetate + H(+) = 4-methylphenol + CO2"],["RHEA%3A56976","4-methylphenol + 2 oxidized [azurin] + H2O = 4-hydroxybenzyl alcohol + 2 reduced [azurin] + 2 H(+)"]],"b":[["antifungal/p-cresol.html","p-cresol"]]},{"id":"CHEBI:24396","l":"","na":1,"nb":11,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/chloroeremomycin.html","chloroeremomycin"],["antibacterial/dalbavancin.html","dalbavancin"],["antibacterial/oritavancin.html","oritavancin"],["antibacterial/phleomycin-d1.html","phleomycin D1"],["antibacterial/ristocetin.html","ristocetin"],["antibacterial/telavancin.html","telavancin"]]},{"id":"CHEBI:24869","l":"ionophore","na":1,"nb":11,"a":[["TCDB%3A2.A.74","The 4 TMS Multidrug Endosomal Transporter (MET) Family"]],"b":[["antibacterial/cccp.html","CCCP"],["antibacterial/indanomycin.html","indanomycin"],["antifungal/beauvericin.html","beauvericin"],["antifungal/monensin-a.html","monensin A"],["antiprotozoal/lasalocid-sodium.html","lasalocid sodium"],["antiprotozoal/lasalocid.html","lasalocid"]]},{"id":"CHEBI:28591","l":"guaiacol","na":11,"nb":1,"a":[["EC%3A1.11.1.14","lignin peroxidase"],["EC%3A1.11.1.16","versatile peroxidase"],["RHEA%3A48004","1-(3,4-dimethoxyphenyl)-2-(2-methoxyphenoxy)propane-1,3-diol + H2O2 = 3,4-dimethoxybenzaldehyde + guaiacol + glycolaldehyde + H2O"],["RHEA%3A22396","1-(4-hydroxy-3-methoxyphenyl)-2-(2-methoxyphenoxy)propane-1,3-diol + H2O2 = guaiacol + vanillin + glycolaldehyde + H2O"],["RHEA%3A72243","catechol + S-adenosyl-L-methionine = guaiacol + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A72339","guaiacol + Co(I)-[methoxylated-aromatic-compound-specific corrinoid protein] + H(+) = methyl-Co(III)-[methoxylated-aromatic-compound-specific corrinoid protein] + catechol"]],"b":[["biocide/guaiacol.html","guaiacol"]]},{"id":"CHEBI:29256","l":"","na":11,"nb":1,"a":[["EC%3A1.8.3.7","formylglycine-generating enzyme"],["EC%3A2.1.1.9","thiol S-methyltransferase"],["EC%3A2.8.2.16","thiol sulfotransferase"],["EC%3A4.4.1.13","cysteine-S-conjugate beta-lyase"],["RHEA%3A82919","a thioester + H2O = a thiol + a carboxylate + H(+)"],["RHEA%3A14637","a thiol + 3'-phosphoadenylyl sulfate = S-alkyl thiosulfate + adenosine 3',5'-bisphosphate + H(+)"]],"b":[["antifungal/fusarithioamide-a.html","fusarithioamide A"]]},{"id":"CHEBI:46762","l":"(E,E,E)-geranylgeraniol","na":11,"nb":1,"a":[["EC%3A1.14.14.146","geranylgeraniol 18-hydroxylase"],["EC%3A3.1.7.5","geranylgeranyl diphosphate diphosphatase"],["RHEA%3A46108","(2E,6E,10E)-geranylgeraniol + 2 NADPH + 2 O2 + H(+) = (2E,6E,10E)-geranylgeranate + 2 NADP(+) + 3 H2O"],["RHEA%3A61664","(2E,6E,10E)-geranylgeraniol + ATP = (2E,6E,10E)-geranylgeranyl phosphate + ADP + H(+)"],["RHEA%3A63456","(2E,6E,10E)-geranylgeraniol + CTP = (2E,6E,10E)-geranylgeranyl phosphate + CDP + H(+)"],["RHEA%3A63460","(2E,6E,10E)-geranylgeraniol + GTP = (2E,6E,10E)-geranylgeranyl phosphate + GDP + H(+)"]],"b":[["antiprotozoal/e-e-e-geranylgeraniol.html","(E,E,E)-geranylgeraniol"]]},{"id":"CHEBI:50744","l":"","na":11,"nb":1,"a":[["TCDB%3A2.A.24","The 2-Hydroxycarboxylate Transporter (2-HCT) Family"],["TCDB%3A1.A.46","The Anion Channel-forming Bestrophin (Bestrophin) Family"],["TCDB%3A2.A.45","The Arsenite-Antimonite (ArsB) Efflux Family"],["TCDB%3A2.A.11","The Citrate-Mg2+:H+ (CitM) Citrate-Ca2+:H+ (CitH) Symporter (CitMHS) Family"],["TCDB%3A2.A.47","The Divalent Anion:Na+ Symporter (DASS) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antiviral/tamoxifen-citrate.html","tamoxifen citrate"]]},{"id":"NCBITaxon:341663","l":"","na":11,"nb":1,"a":[["Pfam%3APF27751","ATEG_07667 C-terminal domain"],["Pfam%3APF28386","BfoA family C-terminal domain"],["Pfam%3APF03879","Cgr1 family"],["Pfam%3APF22621","CurL-like, PKS C-terminal"],["Pfam%3APF18558","Methyltransferase, Helix-turn-helix domain"],["Pfam%3APF06355","Aegerolysin"]],"b":[["antiviral/aspulvinone-e.html","aspulvinone E"]]},{"id":"ARO:3002814","l":"clbA","na":1,"nb":10,"a":[["ARO%3A3002814","clbA"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002815","l":"clbB","na":1,"nb":10,"a":[["ARO%3A3002815","clbB"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002816","l":"clbC","na":1,"nb":10,"a":[["ARO%3A3002816","clbC"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3003038","l":"MexXY-OprA","na":1,"nb":10,"a":[["ARO%3A3003038","MexXY-OprA"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/gentamicin-c.html","gentamicin C"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3003441","l":"cfrA","na":1,"nb":10,"a":[["ARO%3A3003441","cfrA"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3003578","l":"PmrF","na":10,"nb":1,"a":[["ARO%3A3002985","arnA"],["ARO%3A3005053","ArnT"],["ARO%3A3005063","cprR"],["ARO%3A3005065","cprRS"],["ARO%3A3005064","cprS"],["ARO%3A3005068","ParR"]],"b":[["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3003907","l":"cipA","na":1,"nb":10,"a":[["ARO%3A3003907","cipA"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3003966","l":"Klebsiella pneumoniae OmpK35","na":1,"nb":10,"a":[["ARO%3A3003966","Klebsiella pneumoniae OmpK35"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefamandole.html","cefamandole"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"ARO:3003969","l":"lmrP","na":1,"nb":10,"a":[["ARO%3A3003969","lmrP"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"CHEBI:16547","l":"coniferyl aldehyde","na":10,"nb":1,"a":[["EC%3A1.1.1.194","coniferyl-alcohol dehydrogenase"],["EC%3A1.1.1.195","cinnamyl-alcohol dehydrogenase"],["EC%3A1.2.1.44","cinnamoyl-CoA reductase"],["EC%3A1.2.1.68","coniferyl-aldehyde dehydrogenase"],["RHEA%3A23968","(E)-coniferaldehyde + NAD(+) + H2O = (E)-ferulate + NADH + 2 H(+)"],["RHEA%3A64648","(E)-coniferaldehyde + NADP(+) + CoA = (E)-feruloyl-CoA + NADPH + H(+)"]],"b":[["antifungal/coniferyl-aldehyde.html","coniferyl aldehyde"]]},{"id":"CHEBI:17698","l":"chloramphenicol","na":10,"nb":1,"a":[["EC%3A1.14.99.67","alpha-N-dichloroacetyl-p-aminophenylserinol N-oxygenase"],["EC%3A2.3.1.28","chloramphenicol O-acetyltransferase"],["RHEA%3A58884","alpha-N-dichloroacetyl-p-aminophenylserinol + AH2 + 2 O2 = chloramphenicol + A + 2 H2O"],["RHEA%3A18421","chloramphenicol + acetyl-CoA = chloramphenicol 3-acetate + CoA"],["RHEA%3A35287","chloramphenicol(in) + ATP + H2O = chloramphenicol(out) + ADP + phosphate + H(+)"],["RHEA%3A35059","chloramphenicol(in) + H(+)(out) = chloramphenicol(out) + H(+)(in)"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"CHEBI:48120","l":"","na":1,"nb":10,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["unspecified/13-deoxydaunorubicin.html","13-deoxydaunorubicin"],["unspecified/13-dihydrodaunorubicin.html","13-dihydrodaunorubicin"],["unspecified/4-epidoxorubicin.html","4'-epidoxorubicin"],["unspecified/aclacinomycin-a.html","aclacinomycin A"],["unspecified/aclacinomycin-n.html","aclacinomycin N"],["unspecified/aclacinomycin-s.html","aclacinomycin S"]]},{"id":"CHEBI:4885","l":"ethionamide","na":10,"nb":1,"a":[["RHEA%3A47616","ethionamide + NADPH + O2 + H(+) = ethionamide S-oxide + NADP(+) + H2O"],["ARO%3A3003456","antibiotic resistant ethA"],["ARO%3A3003457","ethionamide resistant ethA"],["ARO%3A3005103","isoniazid resistant ethA"],["ARO%3A3005105","Mycobacterium tuberculosis ethA mutations conferring resistance to isoniazid"],["ARO%3A3005178","Mycobacterium tuberculosis ethA mutations conferring resistance to perchlozone"]],"b":[["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"CHEBI:64760","l":"","na":10,"nb":1,"a":[["RHEA%3A44876","a 1,3-diacylglycerol + H2O = a 3-acyl-sn-glycerol + a fatty acid + H(+)"],["RHEA%3A44176","a 2,3-diacyl-sn-glycerol + H2O = a 3-acyl-sn-glycerol + a fatty acid + H(+)"],["RHEA%3A39659","a 3-acyl-sn-glycerol + a 1,2-diacyl-sn-glycero-3-phosphocholine = a 1,3-diacyl-sn-glycerol + a 1-acyl-sn-glycero-3-phosphocholine"],["RHEA%3A78035","a 3-acyl-sn-glycerol + a 1,2-diacyl-sn-glycero-3-phosphocholine = a 1,3-diacyl-sn-glycerol + a 2-acyl-sn-glycero-3-phosphocholine"],["RHEA%3A78131","a 3-acyl-sn-glycerol + a 1,2-diacyl-sn-glycero-3-phosphocholine = a 1,3-diacylglycerol + a 1-acyl-sn-glycero-3-phosphocholine"],["RHEA%3A78135","a 3-acyl-sn-glycerol + a 1,2-diacyl-sn-glycero-3-phosphocholine = a 1,3-diacylglycerol + a 2-acyl-sn-glycero-3-phosphocholine"]],"b":[["antiviral/3-linoleoyl-sn-glycerol.html","3-linoleoyl-sn-glycerol"]]},{"id":"CHEBI:78236","l":"N-acetyl-L-cysteinate","na":10,"nb":1,"a":[["EC%3A1.10.3.15","grixazone synthase"],["RHEA%3A41424","2 3-amino-4-hydroxybenzaldehyde + N-acetyl-L-cysteine + 2 O2 = grixazone A + formate + 3 H2O + H(+)"],["RHEA%3A41420","2 3-amino-4-hydroxybenzoate + N-acetyl-L-cysteine + 2 O2 + H(+) = grixazone B + CO2 + 4 H2O"],["RHEA%3A75515","N-acetyl-L-cysteine + H2O = L-cysteine + acetate"],["RHEA%3A74567","N-acetyl-L-cysteine(out) + L-glutamate(in) = N-acetyl-L-cysteine(in) + L-glutamate(out)"],["RHEA%3A76543","N-acetyl-S-(2-succino)-L-cysteine = N-acetyl-L-cysteine + fumarate"]],"b":[["antiviral/n-acetyl-l-cysteinate.html","N-acetyl-L-cysteinate"]]},{"id":"NCBITaxon:1496","l":"Clostridioides difficile","na":10,"nb":1,"a":[["Pfam%3APF18671","4-Hydroxyphenylacetate decarboxylase subunit gamma N-terminal"],["Pfam%3APF00302","Chloramphenicol acetyltransferase"],["Pfam%3APF18524","High potential iron-sulfur protein like"],["Pfam%3APF06050","2-hydroxyglutaryl-CoA dehydratase, D-component"],["PROSITE%3APS00100","Chloramphenicol acetyltransferase active site"],["Pfam%3APF01473","Putative cell wall binding repeat"]],"b":[["antibacterial/fidaxomicin.html","fidaxomicin"]]},{"id":"ARO:3000318","l":"mphB","na":1,"nb":9,"a":[["ARO%3A3000318","mphB"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/oleandomycin.html","oleandomycin"],["antibacterial/roxithromycin.html","roxithromycin"]]},{"id":"ARO:3000319","l":"mphC","na":1,"nb":9,"a":[["ARO%3A3000319","mphC"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/oleandomycin.html","oleandomycin"],["antibacterial/roxithromycin.html","roxithromycin"]]},{"id":"ARO:3000410","l":"sul1","na":1,"nb":9,"a":[["ARO%3A3000410","sul1"]],"b":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfacetamide.html","sulfacetamide"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfamethazine.html","sulfamethazine"],["antibacterial/sulfamethizole.html","sulfamethizole"],["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3000412","l":"sul2","na":1,"nb":9,"a":[["ARO%3A3000412","sul2"]],"b":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfacetamide.html","sulfacetamide"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfamethazine.html","sulfamethazine"],["antibacterial/sulfamethizole.html","sulfamethizole"],["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3000413","l":"sul3","na":1,"nb":9,"a":[["ARO%3A3000413","sul3"]],"b":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfacetamide.html","sulfacetamide"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfamethazine.html","sulfamethazine"],["antibacterial/sulfamethizole.html","sulfamethizole"],["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3001307","l":"vgbA","na":1,"nb":9,"a":[["ARO%3A3001307","vgbA"]],"b":[["antibacterial/ostreogrycin-b3.html","ostreogrycin B3"],["antibacterial/patricin-a.html","patricin A"],["antibacterial/patricin-b.html","patricin B"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"],["antibacterial/pristinamycin-ib.html","pristinamycin IB"],["antibacterial/pristinamycin-ic.html","pristinamycin IC"]]},{"id":"ARO:3001308","l":"vgbB","na":1,"nb":9,"a":[["ARO%3A3001308","vgbB"]],"b":[["antibacterial/ostreogrycin-b3.html","ostreogrycin B3"],["antibacterial/patricin-a.html","patricin A"],["antibacterial/patricin-b.html","patricin B"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"],["antibacterial/pristinamycin-ib.html","pristinamycin IB"],["antibacterial/pristinamycin-ic.html","pristinamycin IC"]]},{"id":"ARO:3002536","l":"AAC(3)-IIIa","na":1,"nb":9,"a":[["ARO%3A3002536","AAC(3)-IIIa"]],"b":[["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"]]},{"id":"ARO:3002537","l":"AAC(3)-IIIb","na":1,"nb":9,"a":[["ARO%3A3002537","AAC(3)-IIIb"]],"b":[["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"]]},{"id":"ARO:3002597","l":"AAC(6')-Ie-APH(2')-Ia bifunctional protein","na":1,"nb":9,"a":[["ARO%3A3002597","AAC(6')-Ie-APH(2')-Ia bifunctional protein"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3002598","l":"ANT(3')-II-AAC(6')-IId bifunctional protein","na":1,"nb":9,"a":[["ARO%3A3002598","ANT(3')-II-AAC(6')-IId bifunctional protein"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002647","l":"","na":1,"nb":9,"a":[["ARO%3A3002647","APH(3')-IIIa"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/butirosin.html","butirosin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003386","l":"Escherichia coli folP with mutation conferring resistance to sulfonamides","na":1,"nb":9,"a":[["ARO%3A3003386","Escherichia coli folP with mutation conferring resistance to sulfonamides"]],"b":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfacetamide.html","sulfacetamide"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfamethazine.html","sulfamethazine"],["antibacterial/sulfamethizole.html","sulfamethizole"],["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3003387","l":"Streptococcus pyogenes folP with mutation conferring resistance to sulfonamides","na":1,"nb":9,"a":[["ARO%3A3003387","Streptococcus pyogenes folP with mutation conferring resistance to sulfonamides"]],"b":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfacetamide.html","sulfacetamide"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfamethazine.html","sulfamethazine"],["antibacterial/sulfamethizole.html","sulfamethizole"],["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3003697","l":"MexPQ-OpmE","na":1,"nb":9,"a":[["ARO%3A3003697","MexPQ-OpmE"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/imipenem.html","imipenem"],["antibacterial/josamycin.html","josamycin"],["antibacterial/rokitamycin.html","rokitamycin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003990","l":"vgbC","na":1,"nb":9,"a":[["ARO%3A3003990","vgbC"]],"b":[["antibacterial/ostreogrycin-b3.html","ostreogrycin B3"],["antibacterial/patricin-a.html","patricin A"],["antibacterial/patricin-b.html","patricin B"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"],["antibacterial/pristinamycin-ib.html","pristinamycin IB"],["antibacterial/pristinamycin-ic.html","pristinamycin IC"]]},{"id":"CHEBI:35627","l":"","na":9,"nb":1,"a":[["EC%3A3.5.2.6","beta-lactamase"],["RHEA%3A20401","a beta-lactam + H2O = a substituted beta-amino acid"],["TCDB%3A2.C.1","The TonB-ExbB-ExbD/TolA-TolQ-TolR Outer Membrane Receptor Energizers and Stabilizers (TonB/TolA) Family"],["MCSA%3A2","beta-lactamase (Class A)"],["MCSA%3A15","beta-lactamase (Class B1)"],["MCSA%3A16","beta-lactamase (Class B1)"]],"b":[["unspecified/azetidin-2-one.html","azetidin-2-one"]]},{"id":"CHEBI:78274","l":"ferruginol","na":9,"nb":1,"a":[["EC%3A1.14.14.175","ferruginol synthase"],["EC%3A1.14.14.60","ferruginol monooxygenase"],["EC%3A1.14.14.62","salviol synthase"],["EC%3A1.14.14.65","sugiol synthase"],["RHEA%3A48080","abieta-8,11,13-triene + reduced [NADPH--hemoprotein reductase] + O2 = ferruginol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A55456","ferruginol + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = sugiol + 2 oxidized [NADPH--hemoprotein reductase] + 3 H2O + 2 H(+)"]],"b":[["antibacterial/ferruginol.html","ferruginol"]]},{"id":"CHEBI:83563","l":"","na":9,"nb":1,"a":[["EC%3A1.14.14.28","long-chain alkane monooxygenase"],["EC%3A4.1.1.106","fatty acid photodecarboxylase"],["EC%3A4.1.99.5","aldehyde oxygenase (deformylating)"],["RHEA%3A49060","a long-chain alkane + FMNH2 + O2 = a long chain fatty alcohol + FMN + H2O + H(+)"],["RHEA%3A18969","a long-chain fatty acid + hnu + H(+) = a long-chain alkane + CO2"],["RHEA%3A21440","a long-chain fatty aldehyde + 2 NADPH + O2 + H(+) = a long-chain alkane + formate + 2 NADP(+) + H2O"]],"b":[["antimycobacterial/hentriacontane.html","hentriacontane"]]},{"id":"CHEBI:87393","l":"hexan-1-ol","na":9,"nb":1,"a":[["RHEA%3A65480","2-methylbutanoyl-CoA + hexan-1-ol = hexyl 2-methylbutanoate + CoA"],["RHEA%3A79331","hexan-1-ol + 2 Fe(III)-[cytochrome c] = hexanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A65460","hexan-1-ol + acetyl-CoA = hexyl acetate + CoA"],["RHEA%3A65444","hexan-1-ol + butanoyl-CoA = hexyl butanoate + CoA"],["RHEA%3A65484","hexan-1-ol + hexanoyl-CoA = hexyl hexanoate + CoA"],["RHEA%3A60972","hexan-1-ol + NAD(+) = hexanal + NADH + H(+)"]],"b":[["antibacterial/hexan-1-ol.html","hexan-1-ol"]]},{"id":"UniProt:P06633","l":"","na":9,"nb":1,"a":[["GO%3A0004424","imidazoleglycerol-phosphate dehydratase activity"],["NCBIfam%3ANF002114","imidazoleglycerol-phosphate dehydratase HisB"],["InterPro%3AIPR020565","Imidazoleglycerol-phosphate dehydratase, conserved site"],["CDD%3Acd07914","IGPD"],["InterPro%3AIPR038494","Imidazole glycerol phosphate dehydratase domain superfamily"],["PROSITE%3APS00954","Imidazoleglycerol-phosphate dehydratase signature 1"]],"b":[["antiviral/nevirapine.html","nevirapine"]]},{"id":"ARO:3002013","l":"CMY-2","na":1,"nb":8,"a":[["ARO%3A3002013","CMY-2"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002539","l":"AAC(3)-IVa","na":1,"nb":8,"a":[["ARO%3A3002539","AAC(3)-IVa"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/apramycin.html","apramycin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"]]},{"id":"ARO:3002585","l":"","na":1,"nb":8,"a":[["ARO%3A3002585","AAC(6')-31"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/netilmycin.html","netilmycin"]]},{"id":"ARO:3002652","l":"","na":1,"nb":8,"a":[["ARO%3A3002652","APH(3')-VIa"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/butirosin.html","butirosin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3002653","l":"","na":1,"nb":8,"a":[["ARO%3A3002653","APH(3')-VIb"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/butirosin.html","butirosin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004476","l":"vmlR","na":1,"nb":8,"a":[["ARO%3A3004476","vmlR"]],"b":[["antibacterial/a201a.html","A201A"],["antibacterial/hygromycin-a.html","hygromycin A"],["antibacterial/iboxamycin.html","iboxamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"]]},{"id":"ARO:3004578","l":"Acinetobacter baumannii AbuO","na":1,"nb":8,"a":[["ARO%3A3004578","Acinetobacter baumannii AbuO"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"],["antibacterial/carbenicillin.html","carbenicillin"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3004856","l":"SCO-1","na":1,"nb":8,"a":[["ARO%3A3004856","SCO-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/cefuroxime.html","cefuroxime"]]},{"id":"ARO:3005111","l":"blaS1","na":1,"nb":8,"a":[["ARO%3A3005111","blaS1"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/carbenicillin.html","carbenicillin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/mezlocillin.html","mezlocillin"]]},{"id":"ARO:3005511","l":"VIM-63","na":1,"nb":8,"a":[["ARO%3A3005511","VIM-63"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/faropenem.html","faropenem"]]},{"id":"CHEBI:27949","l":"(E)-sinapaldehyde","na":8,"nb":1,"a":[["EC%3A1.1.1.195","cinnamyl-alcohol dehydrogenase"],["RHEA%3A72027","(E)-sinapaldehyde + L-proline = (E)-nesocodin (alcohol-form) + H2O"],["RHEA%3A64656","(E)-sinapaldehyde + NADP(+) + CoA = (E)-sinapoyl-CoA + NADPH + H(+)"],["RHEA%3A57712","(E)-sinapaldehyde + UDP-alpha-D-glucose = 4-O-(beta-D-glucosyl)-4-trans-sinapoyl aldehyde + UDP + H(+)"],["RHEA%3A76459","(E)-sinapyl alcohol + A = (E)-sinapaldehyde + AH2"],["RHEA%3A45704","(E)-sinapyl alcohol + NADP(+) = (E)-sinapaldehyde + NADPH + H(+)"]],"b":[["antifungal/e-sinapaldehyde.html","(E)-sinapaldehyde"]]},{"id":"CHEBI:383703","l":"3,6-diamino-10-methylacridinium chloride","na":8,"nb":1,"a":[["TCDB%3A2.A.85","The Aromatic Acid Exporter (ArAE) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.117","The Chlorhexadine Exporter (CHX) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antibacterial/3-6-diamino-10-methylacridinium-chloride.html","3,6-diamino-10-methylacridinium chloride"]]},{"id":"CHEBI:6030","l":"isoniazide","na":8,"nb":1,"a":[["ARO%3A3004266","antibiotic resistant katG"],["ARO%3A3003416","isoniazid resistant katG"],["ARO%3A3003392","Mycobacterium tuberculosis katG mutations conferring resistance to isoniazid"],["ARO%3A3005102","Mycobacterium tuberculosis katG mutations conferring resistance to prothionamide"],["ARO%3A3005101","prothionamide resistant katG"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"CHEBI:77932","l":"tetracycline zwitterion","na":8,"nb":1,"a":[["EC%3A1.14.13.231","tetracycline 11a-monooxygenase"],["EC%3A1.14.19.49","tetracycline 7-halogenase"],["EC%3A1.3.98.4","5a,11a-dehydrotetracycline reductase"],["RHEA%3A50712","tetracycline + FADH2 + chloride + O2 = 7-chlorotetracycline + FAD + 2 H2O + H(+)"],["RHEA%3A35235","tetracycline(in) + H(+)(out) = tetracycline(out) + H(+)(in)"],["RHEA%3A35239","tetracycline(in) = tetracycline(out)"]],"b":[["antibacterial/tetracycline-zwitterion.html","tetracycline zwitterion"]]},{"id":"ARO:3000205","l":"tet(X)","na":1,"nb":7,"a":[["ARO%3A3000205","tet(X)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000316","l":"mphA","na":1,"nb":7,"a":[["ARO%3A3000316","mphA"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/oleandomycin.html","oleandomycin"],["antibacterial/roxithromycin.html","roxithromycin"]]},{"id":"ARO:3000497","l":"ethambutol","na":7,"nb":1,"a":[["ARO%3A3003447","ethambutol resistant iniA"],["ARO%3A3004136","Ethambutol resistant iniB"],["ARO%3A3003450","Ethambutol resistant iniC"],["ARO%3A3003448","Mycobacterium tuberculosis iniA mutant conferring resistance to ethambutol"],["ARO%3A3004135","Mycobacterium tuberculosis iniB with mutation conferring resistance to ethambutol"],["ARO%3A3003451","Mycobacterium tuberculosis iniC mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3000520","l":"isoniazid","na":7,"nb":1,"a":[["ARO%3A3004921","Mycobacterium tuberculosis ahpC mutations confer resistance to isoniazid"],["ARO%3A3004924","Mycobacterium tuberculosis inbR mutations conferring resistance to isoniazid"],["ARO%3A3007798","Mycobacterium tuberculosis iniA mutations conferring resistance to isoniazid"],["ARO%3A3003463","Mycobacterium tuberculosis kasA mutant conferring resistance to isoniazid"],["ARO%3A3004929","Mycobacterium tuberculosis mmaA3 mutations conferring resistance to isoniazid"],["ARO%3A3004928","Mycobacterium tuberculosis mymA mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3001866","l":"CTX-M-3","na":1,"nb":7,"a":[["ARO%3A3001866","CTX-M-3"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002500","l":"PDC-3","na":1,"nb":7,"a":[["ARO%3A3002500","PDC-3"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002502","l":"PDC-5","na":1,"nb":7,"a":[["ARO%3A3002502","PDC-5"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002533","l":"AAC(3)-IIa","na":1,"nb":7,"a":[["ARO%3A3002533","AAC(3)-IIa"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002534","l":"AAC(3)-IIb","na":1,"nb":7,"a":[["ARO%3A3002534","AAC(3)-IIb"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002535","l":"AAC(3)-IIc","na":1,"nb":7,"a":[["ARO%3A3002535","AAC(3)-IIc"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002545","l":"","na":1,"nb":7,"a":[["ARO%3A3002545","AAC(6')-Ia"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002549","l":"","na":1,"nb":7,"a":[["ARO%3A3002549","AAC(6')-Ic"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002553","l":"","na":1,"nb":7,"a":[["ARO%3A3002553","AAC(6')-If"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002554","l":"","na":1,"nb":7,"a":[["ARO%3A3002554","AAC(6')-Ig"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002555","l":"","na":1,"nb":7,"a":[["ARO%3A3002555","AAC(6')-Ih"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002556","l":"","na":1,"nb":7,"a":[["ARO%3A3002556","AAC(6')-Ii"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002557","l":"","na":1,"nb":7,"a":[["ARO%3A3002557","AAC(6')-Ij"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002558","l":"","na":1,"nb":7,"a":[["ARO%3A3002558","AAC(6')-Ik"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002559","l":"","na":1,"nb":7,"a":[["ARO%3A3002559","AAC(6')-Ip"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002560","l":"","na":1,"nb":7,"a":[["ARO%3A3002560","AAC(6')-Iq"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002561","l":"","na":1,"nb":7,"a":[["ARO%3A3002561","AAC(6')-Ir"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002562","l":"","na":1,"nb":7,"a":[["ARO%3A3002562","AAC(6')-Is"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002563","l":"","na":1,"nb":7,"a":[["ARO%3A3002563","AAC(6')-Isa"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002564","l":"","na":1,"nb":7,"a":[["ARO%3A3002564","AAC(6')-It"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002565","l":"","na":1,"nb":7,"a":[["ARO%3A3002565","AAC(6')-Iu"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002566","l":"","na":1,"nb":7,"a":[["ARO%3A3002566","AAC(6')-Iv"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002567","l":"","na":1,"nb":7,"a":[["ARO%3A3002567","AAC(6')-Iw"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002568","l":"","na":1,"nb":7,"a":[["ARO%3A3002568","AAC(6')-Ix"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002569","l":"","na":1,"nb":7,"a":[["ARO%3A3002569","AAC(6')-Iy"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002570","l":"","na":1,"nb":7,"a":[["ARO%3A3002570","AAC(6')-Iz"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002571","l":"","na":1,"nb":7,"a":[["ARO%3A3002571","AAC(6')-Iaa"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002572","l":"","na":1,"nb":7,"a":[["ARO%3A3002572","AAC(6')-Iad"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002573","l":"","na":1,"nb":7,"a":[["ARO%3A3002573","AAC(6')-Iae"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002574","l":"","na":1,"nb":7,"a":[["ARO%3A3002574","AAC(6')-Iaf"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002575","l":"","na":1,"nb":7,"a":[["ARO%3A3002575","AAC(6')-Iai"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002588","l":"","na":1,"nb":7,"a":[["ARO%3A3002588","AAC(6')-I30"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002589","l":"","na":1,"nb":7,"a":[["ARO%3A3002589","AAC(6')-Iid"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002590","l":"","na":1,"nb":7,"a":[["ARO%3A3002590","AAC(6')-Iih"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002594","l":"","na":1,"nb":7,"a":[["ARO%3A3002594","AAC(6')-IIa"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002595","l":"","na":1,"nb":7,"a":[["ARO%3A3002595","AAC(6')-IIb"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002596","l":"","na":1,"nb":7,"a":[["ARO%3A3002596","AAC(6')-IIc"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002824","l":"ErmV","na":1,"nb":7,"a":[["ARO%3A3002824","ErmV"]],"b":[["antibacterial/carbomycin.html","carbomycin"],["antibacterial/celesticetin.html","celesticetin"],["antibacterial/chalcomycin.html","chalcomycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/josamycin.html","josamycin"],["antibacterial/oleandomycin.html","oleandomycin"]]},{"id":"ARO:3003199","l":"","na":1,"nb":7,"a":[["ARO%3A3003199","AAC(6')-Iak"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3003200","l":"","na":1,"nb":7,"a":[["ARO%3A3003200","AAC(6')-Ian"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3003677","l":"","na":1,"nb":7,"a":[["ARO%3A3003677","AAC(6')-Iaj"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3004128","l":"Serratia marcescens Omp1","na":1,"nb":7,"a":[["ARO%3A3004128","Serratia marcescens Omp1"]],"b":[["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/moxalactam.html","moxalactam"]]},{"id":"ARO:3004491","l":"","na":7,"nb":1,"a":[["ARO%3A3007477","antibiotic resistant ATP synthase"],["ARO%3A3007673","bedaquiline resistant Rv0678"],["ARO%3A3007691","bedaquiline resistant Rv2535c"],["ARO%3A3007476","Mycobacterium abscessus atpE with mutation conferring resistance to bedaquiline"],["ARO%3A3007854","Mycobacterium tuberculosis atpE with mutation conferring resistance to bedaquiline"],["ARO%3A3007674","Mycobacterium tuberculosis Rv0678 with mutation conferring resistance to bedaquiline"]],"b":[["antimycobacterial/bedaquiline.html","bedaquiline"]]},{"id":"ARO:3004559","l":"CAM-1","na":1,"nb":7,"a":[["ARO%3A3004559","CAM-1"]],"b":[["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftolozane.html","ceftolozane"],["antibacterial/doripenem.html","doripenem"],["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3004572","l":"Staphylococcus aureus LmrS","na":1,"nb":7,"a":[["ARO%3A3004572","Staphylococcus aureus LmrS"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/florfenicol.html","florfenicol"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/linezolid.html","linezolid"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004621","l":"AAC(3)-IIe","na":1,"nb":7,"a":[["ARO%3A3004621","AAC(3)-IIe"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3004623","l":"AAC(3)-IId","na":1,"nb":7,"a":[["ARO%3A3004623","AAC(3)-IId"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3004629","l":"","na":1,"nb":7,"a":[["ARO%3A3004629","AAC(6')-Im"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3004635","l":"","na":1,"nb":7,"a":[["ARO%3A3004635","AAC(6')-Il"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3004638","l":"","na":1,"nb":7,"a":[["ARO%3A3004638","AAC(6')-I-48"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3004825","l":"LAP-1","na":1,"nb":7,"a":[["ARO%3A3004825","LAP-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefuroxime.html","cefuroxime"],["antibacterial/piperacillin.html","piperacillin"]]},{"id":"ARO:3004826","l":"LAP-2","na":1,"nb":7,"a":[["ARO%3A3004826","LAP-2"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefuroxime.html","cefuroxime"],["antibacterial/piperacillin.html","piperacillin"]]},{"id":"ARO:3005085","l":"AAC(3)-IIg","na":1,"nb":7,"a":[["ARO%3A3005085","AAC(3)-IIg"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3007011","l":"mdeA","na":1,"nb":7,"a":[["ARO%3A3007011","mdeA"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/nalidixic-acid.html","nalidixic acid"],["antibacterial/oxacillin.html","oxacillin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007204","l":"","na":1,"nb":7,"a":[["ARO%3A3007204","AAC(6')-Iap"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"CHEBI:15722","l":"","na":1,"nb":7,"a":[["MCSA%3A744","GyrA intein (Class 1 intein)"]],"b":[["antibacterial/mastoparan-a.html","mastoparan-A"],["antibacterial/mastoparan-af.html","mastoparan-AF"],["antibacterial/mastoparan-b.html","mastoparan-B"],["antibacterial/mastoparan-d.html","mastoparan-D"],["antibacterial/mastoparan-m.html","mastoparan-M"],["antibacterial/mastoparan-v.html","mastoparan-V"]]},{"id":"CHEBI:15837","l":"isoamylol","na":7,"nb":1,"a":[["EC%3A1.1.1.265","3-methylbutanal reductase"],["EC%3A3.1.1.112","isoamyl acetate esterase"],["RHEA%3A65236","3-methylbutan-1-ol + acetyl-CoA = 3-methylbutyl acetate + CoA"],["RHEA%3A85967","3-methylbutan-1-ol + hexadecanoyl-CoA = 3-methylbutyl hexadecanoate + CoA"],["RHEA%3A18529","3-methylbutan-1-ol + NAD(+) = 3-methylbutanal + NADH + H(+)"],["RHEA%3A18525","3-methylbutan-1-ol + NADP(+) = 3-methylbutanal + NADPH + H(+)"]],"b":[["antifungal/isoamylol.html","isoamylol"]]},{"id":"CHEBI:16118","l":"berberine","na":7,"nb":1,"a":[["EC%3A1.21.3.2","columbamine oxidase"],["EC%3A1.3.3.8","tetrahydroberberine oxidase"],["EC%3A1.5.1.31","berberine reductase"],["RHEA%3A23564","2 columbamine + O2 = 2 berberine + 2 H2O"],["RHEA%3A21268","(R)-canadine + 2 NADP(+) = berberine + 2 NADPH + H(+)"],["RHEA%3A13489","(S)-canadine + 2 O2 + H(+) = berberine + 2 H2O2"]],"b":[["antifungal/berberine.html","berberine"]]},{"id":"CHEBI:16731","l":"(E)-cinnamaldehyde","na":7,"nb":1,"a":[["EC%3A1.1.1.195","cinnamyl-alcohol dehydrogenase"],["EC%3A1.2.1.44","cinnamoyl-CoA reductase"],["RHEA%3A77507","(E)-cinnamaldehyde + hydrogen cyanide = (2S,3E)-2-hydroxy-4-phenylbut-3-enenitrile"],["RHEA%3A10620","(E)-cinnamaldehyde + NADP(+) + CoA = (E)-cinnamoyl-CoA + NADPH + H(+)"],["RHEA%3A58992","(E)-cinnamaldehyde + O2 + H2O = (E)-cinnamate + H2O2 + H(+)"],["RHEA%3A68872","(E)-cinnamate + ATP + NADPH + H(+) = (E)-cinnamaldehyde + AMP + diphosphate + NADP(+)"]],"b":[["antifungal/e-cinnamaldehyde.html","(E)-cinnamaldehyde"]]},{"id":"CHEBI:17209","l":"dihydrosanguinarine","na":7,"nb":1,"a":[["EC%3A1.14.14.100","dihydrosanguinarine 10-monooxygenase"],["EC%3A1.3.1.107","sanguinarine reductase"],["EC%3A1.5.3.12","dihydrobenzophenanthridine oxidase"],["RHEA%3A41660","dihydrosanguinarine + NAD(+) = sanguinarine + NADH"],["RHEA%3A41656","dihydrosanguinarine + NADP(+) = sanguinarine + NADPH"],["RHEA%3A16621","dihydrosanguinarine + O2 + H(+) = sanguinarine + H2O2"]],"b":[["antifungal/dihydrosanguinarine.html","dihydrosanguinarine"]]},{"id":"CHEBI:28831","l":"","na":7,"nb":1,"a":[["RHEA%3A62204","1-propanol + 2 Fe(III)-[cytochrome c] = propanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A65468","1-propanol + acetyl-CoA = propyl acetate + CoA"],["RHEA%3A65476","1-propanol + butanoyl-CoA = propyl butanoate + CoA"],["RHEA%3A50704","1-propanol + NAD(+) = propanal + NADH + H(+)"],["RHEA%3A64712","1-propanol + NADP(+) = propanal + NADPH + H(+)"],["MCSA%3A407","carboxylesterase"]],"b":[["antifungal/4-5-6-7-tetrachloro-2-benzofuran-1-3h-one.html","4,5,6,7-tetrachloro-2-benzofuran-1(3H)-one"]]},{"id":"CHEBI:83264","l":"","na":7,"nb":1,"a":[["RHEA%3A48056","a beta-D-galactosyl-(1->4)-beta-D-glucosyl-(1<->1)-ceramide + H2O = a beta-D-glucosylceramide + D-galactose"],["RHEA%3A85943","a beta-D-glucosylceramide + GDP-alpha-D-mannose = beta-D-Man-(1->4)-beta-D-Glc-(1<->1)-ceramide + GDP + H(+)"],["RHEA%3A78531","a beta-D-glucosylceramide + H2O = a beta-D-glucosyll-(1<->1')-sphingoid base + a fatty acid"],["RHEA%3A81447","a beta-D-glucosylceramide + H2O = an N-acyl-sphingoid base + D-glucose"],["RHEA%3A77255","a beta-D-glucosylceramide(in) = a beta-D-glucosylceramide(out)"],["RHEA%3A66660","a beta-D-glucosylceramide(in) + ATP + H2O = a beta-D-glucosylceramide(out) + ADP + phosphate + H(+)"]],"b":[["unspecified/chrysogeside-b.html","chrysogeside B"]]},{"id":"ARO:3000186","l":"tet(M)","na":1,"nb":6,"a":[["ARO%3A3000186","tet(M)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000190","l":"tet(O)","na":1,"nb":6,"a":[["ARO%3A3000190","tet(O)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000191","l":"tet(Q)","na":1,"nb":6,"a":[["ARO%3A3000191","tet(Q)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000192","l":"tet(S)","na":1,"nb":6,"a":[["ARO%3A3000192","tet(S)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000193","l":"tet(T)","na":1,"nb":6,"a":[["ARO%3A3000193","tet(T)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000194","l":"tet(W)","na":1,"nb":6,"a":[["ARO%3A3000194","tet(W)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000195","l":"tetB(P)","na":1,"nb":6,"a":[["ARO%3A3000195","tetB(P)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000196","l":"tet(32)","na":1,"nb":6,"a":[["ARO%3A3000196","tet(32)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000197","l":"tet(36)","na":1,"nb":6,"a":[["ARO%3A3000197","tet(36)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000556","l":"tet(44)","na":1,"nb":6,"a":[["ARO%3A3000556","tet(44)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000787","l":"MdtABC-TolC","na":6,"nb":1,"a":[["ARO%3A3000828","baeR"],["ARO%3A3000829","baeS"],["ARO%3A3000531","baeSR"],["ARO%3A3000830","cpxA"],["ARO%3A3000524","cpxAR"],["ARO%3A3000787","MdtABC-TolC"]],"b":[["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3001889","l":"CTX-M-27","na":1,"nb":6,"a":[["ARO%3A3001889","CTX-M-27"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ertapenem.html","ertapenem"]]},{"id":"ARO:3002600","l":"","na":1,"nb":6,"a":[["ARO%3A3002600","AAC(3)-Ib/AAC(6')-Ib3 bifunctional protein"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/astromicin.html","astromicin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/sisomycin.html","sisomycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002641","l":"","na":1,"nb":6,"a":[["ARO%3A3002641","APH(3')-Ia"]],"b":[["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"],["antimycobacterial/lividomycin-a.html","lividomycin A"]]},{"id":"ARO:3002642","l":"","na":1,"nb":6,"a":[["ARO%3A3002642","APH(3')-Ib"]],"b":[["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"],["antimycobacterial/lividomycin-a.html","lividomycin A"]]},{"id":"ARO:3002644","l":"","na":1,"nb":6,"a":[["ARO%3A3002644","APH(3')-IIa"]],"b":[["antibacterial/butirosin.html","butirosin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3002645","l":"","na":1,"nb":6,"a":[["ARO%3A3002645","APH(3')-IIb"]],"b":[["antibacterial/butirosin.html","butirosin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3002646","l":"","na":1,"nb":6,"a":[["ARO%3A3002646","APH(3')-IIc"]],"b":[["antibacterial/butirosin.html","butirosin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3003684","l":"Pseudomonas aeruginosa gyrA conferring resistance to fluoroquinolones","na":1,"nb":6,"a":[["ARO%3A3003684","Pseudomonas aeruginosa gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/ofloxacin.html","ofloxacin"],["antibacterial/pefloxacin.html","pefloxacin"],["antibacterial/sitafloxacin.html","Sitafloxacin"],["antibacterial/sparfloxacin.html","sparfloxacin"]]},{"id":"ARO:3003688","l":"PvrR","na":1,"nb":6,"a":[["ARO%3A3003688","PvrR"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/carbenicillin.html","carbenicillin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tetracycline.html","tetracycline"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3003908","l":"Erm(47)","na":1,"nb":6,"a":[["ARO%3A3003908","Erm(47)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/quinupristin.html","quinupristin"],["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3004076","l":"MuxABC-OpmB","na":1,"nb":6,"a":[["ARO%3A3004076","MuxABC-OpmB"]],"b":[["antibacterial/aztreonam.html","aztreonam"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/josamycin.html","josamycin"],["antibacterial/novobiocin.html","novobiocin"],["antibacterial/rokitamycin.html","rokitamycin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004176","l":"Mycoplasma hominis 23S rRNA with mutation conferring resistance to macrolide antibiotics","na":1,"nb":6,"a":[["ARO%3A3004176","Mycoplasma hominis 23S rRNA with mutation conferring resistance to macrolide antibiotics"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/spiramycin-i.html","spiramycin I"],["antibacterial/telithromycin.html","telithromycin"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3004446","l":"Haemophilus influenzae PBP3 conferring resistance to beta-lactam antibiotics","na":1,"nb":6,"a":[["ARO%3A3004446","Haemophilus influenzae PBP3 conferring resistance to beta-lactam antibiotics"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefaclor.html","cefaclor"],["antibacterial/cefdinir.html","cefdinir"],["antibacterial/cefditoren.html","cefditoren"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3004715","l":"vga(E) Staphylococcus cohnii","na":1,"nb":6,"a":[["ARO%3A3004715","vga(E) Staphylococcus cohnii"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/valnemulin.html","valnemulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3005015","l":"VMB-1","na":1,"nb":6,"a":[["ARO%3A3005015","VMB-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3007085","l":"PRC-1","na":1,"nb":6,"a":[["ARO%3A3007085","PRC-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3007154","l":"","na":6,"nb":1,"a":[["ARO%3A3004943","cycloserine resistant ald"],["ARO%3A3004946","cycloserine resistant alr"],["ARO%3A3004939","cycloserine resistant ddlA"],["ARO%3A3004945","Mycobacterium tuberculosis ald mutations confer resistance to cycloserine"],["ARO%3A3004947","Mycobacterium tuberculosis alr with mutation conferring resistance to cycloserine"],["ARO%3A3004941","Mycobacterium tuberculosis ddlA mutations confer resistance to cycloserine"]],"b":[["antimycobacterial/d-cycloserine.html","D-cycloserine"]]},{"id":"ARO:3007437","l":"EBR-5","na":1,"nb":6,"a":[["ARO%3A3007437","EBR-5"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftiofur.html","ceftiofur"],["antibacterial/cefuroxime.html","cefuroxime"],["antibacterial/piperacillin.html","piperacillin"]]},{"id":"ARO:3007646","l":"Neobacillus vireti vmlR2","na":1,"nb":6,"a":[["ARO%3A3007646","Neobacillus vireti vmlR2"]],"b":[["antibacterial/a201a.html","A201A"],["antibacterial/hygromycin-a.html","hygromycin A"],["antibacterial/iboxamycin.html","iboxamycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3007648","l":"PSZ-1","na":1,"nb":6,"a":[["ARO%3A3007648","PSZ-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"ARO:3007659","l":"putative nickel/cobalt transporter","na":1,"nb":6,"a":[["ARO%3A3007659","putative nickel/cobalt transporter"]],"b":[["antibacterial/gentamicin.html","gentamicin"],["antibacterial/nalidixic-acid.html","nalidixic acid"],["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/ofloxacin.html","ofloxacin"],["antibacterial/sparfloxacin.html","sparfloxacin"],["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"CHEBI:134179","l":"","na":1,"nb":6,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antibacterial/3-phenethylamino-butan-2-one.html","3-(phenethylamino)-butan-2-one"],["antifungal/acrylonitrile.html","acrylonitrile"],["antifungal/isoamylol.html","isoamylol"],["antifungal/nerolidol.html","nerolidol"],["antifungal/prop-2-yn-1-ol.html","prop-2-yn-1-ol"],["biocide/ethanol.html","ethanol"]]},{"id":"CHEBI:15399","l":"(+)-carvone","na":6,"nb":1,"a":[["EC%3A1.1.1.275","(+)-trans-carveol dehydrogenase"],["EC%3A1.1.1.n4","(-)-trans-carveol dehydrogenase"],["EC%3A1.3.99.25","carvone reductase"],["RHEA%3A32427","(1R,4S)-isodihydrocarvone + A = (S)-carvone + AH2"],["RHEA%3A14825","(1R,5S)-carveol + NAD(+) = (S)-carvone + NADH + H(+)"],["RHEA%3A25848","(1S,5S)-carveol + NAD(+) = (S)-carvone + NADH + H(+)"]],"b":[["antifungal/carvone.html","(+)-carvone"]]},{"id":"CHEBI:15400","l":"(−)-carvone","na":6,"nb":1,"a":[["EC%3A1.1.1.243","carveol dehydrogenase"],["EC%3A1.1.1.n4","(-)-trans-carveol dehydrogenase"],["EC%3A1.3.99.25","carvone reductase"],["RHEA%3A32423","(1R,4R)-dihydrocarvone + A = (R)-carvone + AH2"],["RHEA%3A25844","(1S,5R)-carveol + NAD(+) = (R)-carvone + NADH + H(+)"],["RHEA%3A13629","(1S,5R)-carveol + NADP(+) = (R)-carvone + NADPH + H(+)"]],"b":[["antifungal/carvone-15400.html","(−)-carvone"]]},{"id":"CHEBI:16664","l":"albendazole","na":6,"nb":1,"a":[["EC%3A1.14.13.32","albendazole monooxygenase"],["EC%3A1.14.14.73","albendazole monooxygenase (sufoxide-forming)"],["EC%3A1.14.14.74","albendazole monooxygenase (hydroxylating)"],["RHEA%3A10796","albendazole + NADPH + O2 + H(+) = albendazole S-oxide + NADP(+) + H2O"],["RHEA%3A55924","albendazole + reduced [NADPH--hemoprotein reductase] + O2 = albendazole S-oxide + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A56288","albendazole + reduced [NADPH--hemoprotein reductase] + O2 = hydroxyalbendazole + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["antifungal/albendazole.html","albendazole"]]},{"id":"CHEBI:20702","l":"","na":1,"nb":6,"a":[["TCDB%3A2.A.40","The Nucleobase/Ascorbate Transporter (NAT) or Nucleobase:Cation Symporter-2 (NCS2) Family"]],"b":[["antiviral/acyclovir.html","acyclovir"],["antiviral/entecavir-anhydrous.html","entecavir (anhydrous)"],["antiviral/famciclovir.html","famciclovir"],["antiviral/ganciclovir.html","ganciclovir"],["antiviral/penciclovir.html","penciclovir"],["antiviral/tioguanine.html","tioguanine"]]},{"id":"CHEBI:25696","l":"","na":6,"nb":1,"a":[["TCDB%3A2.A.31","The Anion Exchanger (AE) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.28","The Bile Acid:Na+ Symporter (BASS) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.60","The Organo Anion Transporter (OAT) Family"],["TCDB%3A1.C.103","The Pore-forming Toxin, TisB (TisB) Family"]],"b":[["antibacterial/trichosetin-1.html","trichosetin(1−)"]]},{"id":"CHEBI:28054","l":"o-cresol","na":6,"nb":1,"a":[["EC%3A1.14.13.243","toluene 2-monooxygenase"],["RHEA%3A57948","2-hydroxytoluene + NADH + O2 + H(+) = 3-methylcatechol + NAD(+) + H2O"],["RHEA%3A57440","2-methylanisole + reduced [NADH--hemoprotein reductase] + O2 = 2-hydroxytoluene + oxidized [NADH--hemoprotein reductase] + formaldehyde + H2O + H(+)"],["RHEA%3A80607","(2-methylphenoxy)acetate + 2-oxoglutarate + O2 = 2-hydroxytoluene + glyoxylate + succinate + CO2"],["RHEA%3A20349","toluene + NADH + O2 + H(+) = 2-hydroxytoluene + NAD(+) + H2O"],["proteintraitsmech%3ABIOLIP_JZ0","JZ0-binding site"]],"b":[["antifungal/o-cresol.html","o-cresol"]]},{"id":"CHEBI:3020","l":"","na":6,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.117","The Chlorhexadine Exporter (CHX) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"]]},{"id":"CHEBI:31457","l":"decanal","na":6,"nb":1,"a":[["RHEA%3A58376","decan-1-ol + NADP(+) = decanal + NADPH + H(+)"],["RHEA%3A69496","decan-1-ol + O2 = decanal + H2O2"],["RHEA%3A44104","decanal + NAD(+) + H2O = decanoate + NADH + 2 H(+)"],["RHEA%3A50612","decanal + NADP(+) = (2E)-decenal + NADPH + H(+)"],["RHEA%3A65744","decyl sulfate + 2-oxoglutarate + O2 = decanal + sulfate + succinate + CO2 + H(+)"],["proteintraitsmech%3ABIOLIP_8YP","8YP-binding site"]],"b":[["antifungal/decanal.html","decanal"]]},{"id":"CHEBI:35915","l":"","na":6,"nb":1,"a":[["EC%3A2.3.1.43","phosphatidylcholine--sterol O-acyltransferase"],["EC%3A2.3.1.73","diacylglycerol--sterol O-acyltransferase"],["EC%3A3.1.1.13","sterol esterase"],["RHEA%3A21204","a sterol + a 1,2-diacyl-sn-glycero-3-phosphocholine = a sterol ester + a 1-acyl-sn-glycero-3-phosphocholine"],["RHEA%3A13301","a sterol + a 1,2-diacyl-sn-glycerol = a sterol ester + a 1-acyl-sn-glycerol"],["RHEA%3A10100","a sterol ester + H2O = a sterol + a fatty acid + H(+)"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"CHEBI:4883","l":"ethidium bromide","na":6,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.A.7","The ATP-gated P2X Receptor Cation Channel (P2X Receptor) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antiprotozoal/ethidium-bromide.html","ethidium bromide"]]},{"id":"CHEBI:50667","l":"mercaptopurine","na":6,"nb":1,"a":[["EC%3A2.1.1.67","thiopurine S-methyltransferase"],["RHEA%3A12609","mercaptopurine + S-adenosyl-L-methionine = 6-methylthiopurine + S-adenosyl-L-homocysteine + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.40","The Nucleobase/Ascorbate Transporter (NAT) or Nucleobase:Cation Symporter-2 (NCS2) Family"]],"b":[["antiviral/mercaptopurine.html","mercaptopurine"]]},{"id":"CHEBI:61748","l":"(E)-oct-2-enal","na":6,"nb":1,"a":[["EC%3A2.2.1.12","3-acetyloctanal synthase"],["RHEA%3A59920","(2E)-octenal + NAD(+) + H2O = (2E)-octenoate + NADH + 2 H(+)"],["RHEA%3A59916","(2E)-octenal + NADP(+) + H2O = (2E)-octenoate + NADPH + 2 H(+)"],["RHEA%3A42832","(2E)-octenal + pyruvate + H(+) = (S)-3-acetyloctanal + CO2"],["RHEA%3A58372","(E)-oct-2-en-1-ol + NADP(+) = (2E)-octenal + NADPH + H(+)"],["RHEA%3A50780","octanal + NADP(+) = (2E)-octenal + NADPH + H(+)"]],"b":[["antifungal/e-oct-2-enal.html","(E)-oct-2-enal"]]},{"id":"CHEBI:77722","l":"apigenin 7-O-β-D-glucoside(1−)","na":6,"nb":1,"a":[["EC%3A2.4.1.81","flavone 7-O-beta-glucosyltransferase"],["EC%3A2.4.2.25","flavone apiosyltransferase"],["RHEA%3A69679","apigenin 7-O-beta-D-glucoside + H2O = apigenin + beta-D-glucose"],["RHEA%3A67348","apigenin 7-O-beta-D-glucoside + malonyl-CoA = apigenin 7-O-(6-O-malonyl-beta-D-glucoside) + CoA"],["RHEA%3A59760","apigenin + UDP-alpha-D-glucose = apigenin 7-O-beta-D-glucoside + UDP + H(+)"],["RHEA%3A19153","UDP-alpha-D-apiose + apigenin 7-O-beta-D-glucoside = 7-O-(beta-D-apiofuranosyl-1,2-beta-D-glucosyl)-5,7,4'-trihydroxyflavone + UDP + H(+)"]],"b":[["antibacterial/apigenin-7-o-%CE%B2-d-glucoside-1.html","apigenin 7-O-β-D-glucoside(1−)"]]},{"id":"CHEBI:77979","l":"aclacinomycin T zwitterion","na":6,"nb":1,"a":[["EC%3A2.4.1.326","aklavinone 7-L-rhodosaminyltransferase"],["EC%3A2.4.1.327","aclacinomycin-T 2-deoxy-L-fucose transferase"],["EC%3A3.1.1.95","aclacinomycin methylesterase"],["RHEA%3A37891","aclacinomycin T + H2O = 15-demethylaclacinomycin T + methanol"],["RHEA%3A41568","dTDP-2-deoxy-beta-L-fucose + aclacinomycin T = aclacinomycin S + dTDP + H(+)"],["RHEA%3A41564","dTDP-beta-L-rhodosamine + aklavinone = aclacinomycin T + dTDP + 2 H(+)"]],"b":[["unspecified/aclacinomycin-t-zwitterion.html","aclacinomycin T zwitterion"]]},{"id":"CHEBI:86494","l":"","na":1,"nb":6,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/allicin.html","allicin"],["antifungal/berberine.html","berberine"],["antifungal/carvacrol.html","carvacrol"],["antifungal/carvone-38265.html","carvone"],["antifungal/sanguinarine.html","sanguinarine"],["antifungal/%CE%B1-santonin.html","α-santonin"]]},{"id":"CHEBI:98","l":"(S)-linalool","na":6,"nb":1,"a":[["EC%3A4.2.1.127","linalool dehydratase"],["EC%3A4.2.3.25","S-linalool synthase"],["EC%3A5.4.4.4","geraniol isomerase"],["RHEA%3A30715","(2E)-geraniol = (S)-linalool"],["RHEA%3A24116","(2E)-geranyl diphosphate + H2O = (S)-linalool + diphosphate"],["RHEA%3A30711","(S)-linalool = beta-myrcene + H2O"]],"b":[["unspecified/s-linalool.html","(S)-linalool"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":6,"nb":1,"a":[["IDPO%3A0000037","molecular recognition display site"],["Pfam%3APF05403","Plasmodium histidine-rich protein (HRPII/III)"],["Pfam%3APF17986","EMP3-KAHRP-like N-terminal domain"],["Pfam%3APF03805","Cytoadherence-linked asexual protein"],["Pfam%3APF06589","Circumsporozoite-related antigen (CRA)"],["TED%3AAF-Q9U431-F1-model_v4_TED01","TED novel fold AF-Q9U431-F1-model_v4_TED01"]],"b":[["antiprotozoal/emetine.html","emetine"]]},{"id":"ARO:3000230","l":"","na":1,"nb":5,"a":[["ARO%3A3000230","ANT(2')-Ia"]],"b":[["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/sisomycin.html","sisomycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3000753","l":"abeM","na":1,"nb":5,"a":[["ARO%3A3000753","abeM"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/ofloxacin.html","ofloxacin"],["antibacterial/triclosan.html","triclosan"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3001214","l":"mdtM","na":1,"nb":5,"a":[["ARO%3A3001214","mdtM"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/puromycin.html","puromycin"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3001304","l":"ErmS","na":1,"nb":5,"a":[["ARO%3A3001304","ErmS"]],"b":[["antibacterial/carbomycin.html","carbomycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/niddamycin.html","niddamycin"],["antibacterial/pristinamycin-ic.html","pristinamycin IC"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3001878","l":"CTX-M-15","na":1,"nb":5,"a":[["ARO%3A3001878","CTX-M-15"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3002523","l":"","na":1,"nb":5,"a":[["ARO%3A3002523","AAC(2')-Ia"]],"b":[["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002524","l":"","na":1,"nb":5,"a":[["ARO%3A3002524","AAC(2')-Ib"]],"b":[["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002525","l":"","na":1,"nb":5,"a":[["ARO%3A3002525","AAC(2')-Ic"]],"b":[["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002526","l":"","na":1,"nb":5,"a":[["ARO%3A3002526","AAC(2')-Id"]],"b":[["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002527","l":"","na":1,"nb":5,"a":[["ARO%3A3002527","AAC(2')-Ie"]],"b":[["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002583","l":"","na":1,"nb":5,"a":[["ARO%3A3002583","AAC(6')-29a"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002584","l":"","na":1,"nb":5,"a":[["ARO%3A3002584","AAC(6')-29b"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002648","l":"","na":1,"nb":5,"a":[["ARO%3A3002648","APH(3')-IVa"]],"b":[["antibacterial/butirosin.html","butirosin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3002823","l":"ErmH","na":1,"nb":5,"a":[["ARO%3A3002823","ErmH"]],"b":[["antibacterial/carbomycin.html","carbomycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/oleandomycin.html","oleandomycin"],["antibacterial/pristinamycin-ic.html","pristinamycin IC"]]},{"id":"ARO:3002831","l":"vgaC","na":1,"nb":5,"a":[["ARO%3A3002831","vgaC"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/valnemulin.html","valnemulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3003071","l":"mphF","na":1,"nb":5,"a":[["ARO%3A3003071","mphF"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/roxithromycin.html","roxithromycin"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3003374","l":"Enterobacter aerogenes acrR with mutation conferring multidrug antibiotic resistance","na":1,"nb":5,"a":[["ARO%3A3003374","Enterobacter aerogenes acrR with mutation conferring multidrug antibiotic resistance"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/tetracycline.html","tetracycline"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3003561","l":"SED-1","na":1,"nb":5,"a":[["ARO%3A3003561","SED-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefuroxime.html","cefuroxime"],["antibacterial/piperacillin.html","piperacillin"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3003713","l":"VCC-1","na":1,"nb":5,"a":[["ARO%3A3003713","VCC-1"]],"b":[["antibacterial/aztreonam.html","aztreonam"],["antibacterial/doripenem.html","doripenem"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3003749","l":"salA","na":1,"nb":5,"a":[["ARO%3A3003749","salA"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3003995","l":"Clostridioides difficile gyrA conferring resistance to fluoroquinolones","na":1,"nb":5,"a":[["ARO%3A3003995","Clostridioides difficile gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"],["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3004082","l":"AcrAD-TolC","na":1,"nb":5,"a":[["ARO%3A3004082","AcrAD-TolC"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3004191","l":"","na":1,"nb":5,"a":[["ARO%3A3004191","APH(2')-If"]],"b":[["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/sisomycin.html","sisomycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3004470","l":"poxtA","na":1,"nb":5,"a":[["ARO%3A3004470","poxtA"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/florfenicol.html","florfenicol"],["antibacterial/linezolid.html","linezolid"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004675","l":"aphA15","na":1,"nb":5,"a":[["ARO%3A3004675","aphA15"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004677","l":"rmtD2","na":1,"nb":5,"a":[["ARO%3A3004677","rmtD2"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005035","l":"YRC-1","na":1,"nb":5,"a":[["ARO%3A3005035","YRC-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/cefuroxime.html","cefuroxime"]]},{"id":"ARO:3007026","l":"salB","na":1,"nb":5,"a":[["ARO%3A3007026","salB"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3007027","l":"salC","na":1,"nb":5,"a":[["ARO%3A3007027","salC"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3007033","l":"Erm(51)","na":1,"nb":5,"a":[["ARO%3A3007033","Erm(51)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/pristinamycin-ib.html","pristinamycin IB"]]},{"id":"ARO:3007151","l":"","na":5,"nb":1,"a":[["ARO%3A3000446","antibiotic-resistant isoleucyl-tRNA synthetase (ileS)"],["ARO%3A3003730","Bifidobacterium bifidum ileS conferring resistance to mupirocin"],["ARO%3A3003729","Staphylococcus aureus ileS with mutation conferring resistance to mupirocin"],["ARO%3A3000521","Staphylococcus aureus mupA conferring resistance to mupirocin"],["ARO%3A3000510","Staphylococcus aureus mupB conferring resistance to mupirocin"]],"b":[["antibacterial/mupirocin.html","mupirocin"]]},{"id":"ARO:3007180","l":"MAB","na":1,"nb":5,"a":[["ARO%3A3007180","MAB"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/cefuroxime.html","cefuroxime"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3007182","l":"blaC","na":1,"nb":5,"a":[["ARO%3A3007182","blaC"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/temocillin.html","temocillin"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3007374","l":"PJM-1","na":1,"nb":5,"a":[["ARO%3A3007374","PJM-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3007438","l":"LAQ-1","na":1,"nb":5,"a":[["ARO%3A3007438","LAQ-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"ARO:3007635","l":"CAE-1","na":1,"nb":5,"a":[["ARO%3A3007635","CAE-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/cefuroxime.html","cefuroxime"],["antibacterial/piperacillin.html","piperacillin"]]},{"id":"ARO:3007637","l":"Clostridioides difficile cplR","na":1,"nb":5,"a":[["ARO%3A3007637","Clostridioides difficile cplR"]],"b":[["antibacterial/a201a.html","A201A"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/iboxamycin.html","iboxamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3007644","l":"Clostridium perfringes cplR","na":1,"nb":5,"a":[["ARO%3A3007644","Clostridium perfringes cplR"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/iboxamycin.html","iboxamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3007694","l":"AMZ-1","na":1,"nb":5,"a":[["ARO%3A3007694","AMZ-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"ARO:3009134","l":"antifungal resistance-associated MSH2","na":1,"nb":5,"a":[["ARO%3A3009134","antifungal resistance-associated MSH2"]],"b":[["antifungal/amphotericin-b.html","amphotericin B"],["antifungal/caspofungin.html","caspofungin"],["antifungal/fluconazole.html","fluconazole"],["antifungal/micafungin.html","micafungin"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"CHEBI:15649","l":"3,6,9-trihydroxypterocarpan","na":5,"nb":1,"a":[["EC%3A1.14.14.93","3,9-dihydroxypterocarpan 6a-monooxygenase"],["EC%3A2.5.1.36","trihydroxypterocarpan dimethylallyltransferase"],["RHEA%3A15321","(6aR,11aR)-3,9-dihydroxypterocarpan + reduced [NADPH--hemoprotein reductase] + O2 = (6aS,11aS)-3,6a,9-trihydroxypterocarpan + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A19345","(6aS,11aS)-3,6a,9-trihydroxypterocarpan + dimethylallyl diphosphate = (6aS,11aS)-2-dimethylallyl-3,6a,9-trihydroxypterocarpan + diphosphate"],["RHEA%3A23184","(6aS,11aS)-3,6a,9-trihydroxypterocarpan + dimethylallyl diphosphate = (6aS,11aS)-4-dimethylallyl-3,6a,9-trihydroxypterocarpan + diphosphate"]],"b":[["antibacterial/3-6-9-trihydroxypterocarpan.html","3,6,9-trihydroxypterocarpan"]]},{"id":"CHEBI:16670","l":"peptide","na":5,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A9.B.46","The Staphylococcus aureus Putative Quorum Sensing Peptide Exporter, AgrB (AgrB) Family"],["TCDB%3A3.A.25","The Symbiont-specific ERAD-like Machinery (SELMA) Family"],["proteintraitsmech%3ABIOLIP_PEPTIDE","peptide-binding site"]],"b":[["antibacterial/cefbuperazone.html","cefbuperazone"]]},{"id":"CHEBI:17043","l":"biphenyl-2-ol","na":5,"nb":1,"a":[["EC%3A1.14.13.44","2-hydroxybiphenyl 3-monooxygenase"],["EC%3A3.13.1.3","2'-hydroxybiphenyl-2-sulfinate desulfinase"],["RHEA%3A12945","2'-hydroxybiphenyl-2-sulfinate + H2O = biphenyl-2-ol + sulfite + H(+)"],["RHEA%3A11996","biphenyl-2-ol + NADH + O2 + H(+) = biphenyl-2,3-diol + NAD(+) + H2O"],["MCSA%3A971","2'-hydroxybiphenyl-2-sulfinate desulfinase"]],"b":[["antifungal/biphenyl-2-ol.html","biphenyl-2-ol"]]},{"id":"CHEBI:17183","l":"sanguinarine","na":5,"nb":1,"a":[["EC%3A1.3.1.107","sanguinarine reductase"],["EC%3A1.5.3.12","dihydrobenzophenanthridine oxidase"],["RHEA%3A41660","dihydrosanguinarine + NAD(+) = sanguinarine + NADH"],["RHEA%3A41656","dihydrosanguinarine + NADP(+) = sanguinarine + NADPH"],["RHEA%3A16621","dihydrosanguinarine + O2 + H(+) = sanguinarine + H2O2"]],"b":[["antifungal/sanguinarine.html","sanguinarine"]]},{"id":"CHEBI:18145","l":"(R,R,R)-α-tocopherol","na":5,"nb":1,"a":[["EC%3A2.1.1.95","tocopherol C-methyltransferase"],["RHEA%3A71507","(+)-alpha-tocopherol(out) = (+)-alpha-tocopherol(in)"],["RHEA%3A45108","(+)-alpha-tocopherol + reduced [NADPH--hemoprotein reductase] + O2 = 13-hydroxy-alpha-tocopherol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A24012","gamma-tocopherol + S-adenosyl-L-methionine = (+)-alpha-tocopherol + S-adenosyl-L-homocysteine + H(+)"],["proteintraitsmech%3ABIOLIP_VIV","VIV-binding site"]],"b":[["antiviral/r-r-r-%CE%B1-tocopherol.html","(R,R,R)-α-tocopherol"]]},{"id":"CHEBI:23403","l":"","na":1,"nb":5,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antibacterial/5-6-7-trimethoxycoumarin.html","5,6,7-trimethoxycoumarin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/glycyrin.html","glycyrin"],["antifungal/coumoxystrobin.html","coumoxystrobin"],["antiviral/soulattrolide.html","soulattrolide"]]},{"id":"CHEBI:28600","l":"farnesol","na":1,"nb":5,"a":[["RHEA%3A79359","farnesol + 2 Fe(III)-[cytochrome c] = farnesal + 2 Fe(II)-[cytochrome c] + 2 H(+)"]],"b":[["unspecified/2-cis-6-cis-farnesol.html","(2-cis,6-cis)-farnesol"],["unspecified/2-cis-6-trans-farnesol.html","(2-cis,6-trans)-farnesol"],["unspecified/2-trans-6-cis-farnesol.html","(2-trans,6-cis)-farnesol"],["unspecified/2-trans-6-trans-farnesol.html","(2-trans,6-trans)-farnesol"],["unspecified/farnesol.html","farnesol"]]},{"id":"CHEBI:33704","l":"","na":5,"nb":1,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["MCSA%3A396","aspartic peptidase"],["MCSA%3A169","dipeptidyl-peptidase IV"],["MCSA%3A425","plasmin"],["MCSA%3A412","prolyl aminopeptidase"]],"b":[["antiprotozoal/eflornithine.html","eflornithine"]]},{"id":"CHEBI:34994","l":"","na":1,"nb":5,"a":[["TCDB%3A2.A.128","The Multidrug Resistance Exporter VanZ (VanZ) Family"]],"b":[["unspecified/teicoplanin-a2-1.html","teicoplanin A2-1"],["unspecified/teicoplanin-a2-2.html","teicoplanin A2-2"],["unspecified/teicoplanin-a2-3.html","teicoplanin A2-3"],["unspecified/teicoplanin-a2-4.html","teicoplanin A2-4"],["unspecified/teicoplanin-a2-5.html","teicoplanin A2-5"]]},{"id":"CHEBI:36835","l":"","na":5,"nb":1,"a":[["EC%3A1.1.1.213","3alpha-hydroxysteroid dehydrogenase (Re-specific)"],["EC%3A1.1.1.357","3alpha-hydroxysteroid 3-dehydrogenase"],["EC%3A1.1.1.50","3alpha-hydroxysteroid 3-dehydrogenase (Si-specific)"],["RHEA%3A34779","a 3alpha-hydroxysteroid + NAD(+) = a 3-oxosteroid + NADH + H(+)"],["RHEA%3A34783","a 3alpha-hydroxysteroid + NADP(+) = a 3-oxosteroid + NADPH + H(+)"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"CHEBI:3900","l":"costunolide","na":5,"nb":1,"a":[["EC%3A1.14.14.150","costunolide synthase"],["RHEA%3A56992","6alpha-hydroxygermacra-1(10),4,11(13)-trien-12-oate + H(+) = (+)-costunolide + H2O"],["RHEA%3A61324","(+)-costunolide + reduced [NADPH--hemoprotein reductase] + O2 = 3beta-hydroxycostunolide + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A61320","(+)-costunolide + reduced [NADPH--hemoprotein reductase] + O2 = parthenolide + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A28230","germacra-1(10),4,11(13)-trien-12-oate + reduced [NADPH--hemoprotein reductase] + O2 = (+)-costunolide + oxidized [NADPH--hemoprotein reductase] + 2 H2O"]],"b":[["antiviral/costunolide.html","costunolide"]]},{"id":"CHEBI:3962","l":"curcumin","na":5,"nb":1,"a":[["EC%3A1.3.1.n3","curcumin reductase"],["EC%3A2.3.1.217","curcumin synthase"],["RHEA%3A34819","dihydrocurcumin + NADP(+) = curcumin + NADPH + H(+)"],["RHEA%3A34823","(E)-feruloylacetyl-CoA + (E)-feruloyl-CoA + H2O = curcumin + CO2 + 2 CoA"],["RHEA%3A34815","tetrahydrocurcumin + 2 NADP(+) = curcumin + 2 NADPH + 2 H(+)"]],"b":[["antifungal/curcumin.html","curcumin"]]},{"id":"CHEBI:5100","l":"flucytosine","na":5,"nb":1,"a":[["ARO%3A3007642","Aspergillus spp. fcyB conferring resistance to 5-flucytosine via reduced permeability"],["ARO%3A3007665","Candida spp. FCY2 conferring resistance to 5-flucytosine via reduced permeability"],["ARO%3A3007641","fungal nucleobase transporters"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.39","The Nucleobase:Cation Symporter-1 (NCS1) Family"]],"b":[["antifungal/flucytosine.html","flucytosine"]]},{"id":"CHEBI:58001","l":"","na":5,"nb":1,"a":[["EC%3A1.5.3.25","fructosyl amine oxidase (glucosone-forming)"],["RHEA%3A21916","2 Fe(III)-[cytochrome c550] + an aliphatic amine + H2O = 2 Fe(II)-[cytochrome c550] + an aldehyde + NH4(+) + 2 H(+)"],["RHEA%3A51128","an aliphatic amine + A + H2O = an aldehyde + AH2 + NH4(+)"],["RHEA%3A77795","an (E)-{[(2R,3S,4R,5R)-2,3,4,5-tetrahydroxyoxan-2-yl]methylidene}amine + H2O + H(+) = an aliphatic amine + 2-dehydro-D-glucose"],["RHEA%3A77787","an N-(1-deoxy-beta-D-fructopyranos-1-yl)amine + O2 + H2O = an aliphatic amine + 2-dehydro-D-glucose + H2O2"]],"b":[["unspecified/streptothricin-f-3.html","streptothricin F(3+)"]]},{"id":"CHEBI:62219","l":"2-heptyl-4-quinolone","na":5,"nb":1,"a":[["EC%3A1.14.13.182","2-heptyl-3-hydroxy-4(1H)-quinolone synthase"],["EC%3A2.3.1.230","2-heptyl-4(1H)-quinolone synthase"],["RHEA%3A50408","1-(2-aminophenyl)decane-1,3-dione = 2-heptyl-4(1H)-quinolone + H2O"],["RHEA%3A50396","(2-aminobenzoyl)acetate + octanoyl-CoA + H(+) = 2-heptyl-4(1H)-quinolone + CO2 + CoA + H2O"],["RHEA%3A37871","2-heptyl-4(1H)-quinolone + NADH + O2 + H(+) = 2-heptyl-3-hydroxy-4(1H)-quinolone + NAD(+) + H2O"]],"b":[["antibacterial/2-heptyl-4-quinolone.html","2-heptyl-4-quinolone"]]},{"id":"CHEBI:90888","l":"aurachin C","na":5,"nb":1,"a":[["EC%3A1.14.13.222","aurachin C monooxygenase/isomerase"],["RHEA%3A49000","aurachin C + NADH + O2 + H(+) = 4-hydroxy-2-methyl-3-oxo-4-[(2E,6E)-farnesyl]-3,4-dihydroquinoline 1-oxide + NAD(+) + H2O"],["RHEA%3A49012","aurachin C + NADH + O2 + H(+) = aurachin C epoxide + NAD(+) + H2O"],["RHEA%3A49004","aurachin C + NADPH + O2 + H(+) = 4-hydroxy-2-methyl-3-oxo-4-[(2E,6E)-farnesyl]-3,4-dihydroquinoline 1-oxide + NADP(+) + H2O"],["RHEA%3A49008","aurachin C + NADPH + O2 + H(+) = aurachin C epoxide + NADP(+) + H2O"]],"b":[["antibacterial/aurachin-c.html","aurachin C"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":5,"nb":1,"a":[["TED%3AAF-A0A4Y6CF56-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y6CF56-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6CNZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Y6CNZ1-F1-model_v4_TED02"],["TED%3AAF-A0A7Y4IIX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4IIX4-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6B7F9-F1-model_v4_TED01","TED novel fold AF-A0A4Y6B7F9-F1-model_v4_TED01"],["TED%3AAF-A0A7Y4IR70-F1-model_v4_TED01","TED novel fold AF-A0A7Y4IR70-F1-model_v4_TED01"]],"b":[["antibacterial/althiomycin.html","althiomycin"]]},{"id":"NCBITaxon:43658","l":"Pseudoalteromonas rubra","na":5,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_Orn_monoox","Metallophore-associated ornithine N5-monooxygenase family"],["TED%3AAF-A0A0F4QZE1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0F4QZE1-F1-model_v4_TED02"],["TED%3AAF-A0A0U3GWJ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0U3GWJ2-F1-model_v4_TED01"],["TED%3AAF-A0A0F4QSG0-F1-model_v4_TED02","TED novel fold AF-A0A0F4QSG0-F1-model_v4_TED02"],["TED%3AAF-A0A0L0EPH9-F1-model_v4_TED03","TED novel fold AF-A0A0L0EPH9-F1-model_v4_TED03"]],"b":[["unspecified/prodigiosin.html","prodigiosin"]]},{"id":"UniProt:P03366","l":"","na":5,"nb":1,"a":[["MCSA%3A1000","HIV-1 reverse transcriptase"],["proteintraitsmech%3ABIOLIP_7N1","7N1-binding site"],["proteintraitsmech%3ABIOLIP_VTN","VTN-binding site"],["proteintraitsmech%3ABIOLIP_ZP4","ZP4-binding site"],["proteintraitsmech%3AMETALPDB_Y_DINUCLEAR","dinuclear yttrium site"]],"b":[["antiviral/nevirapine.html","nevirapine"]]},{"id":"ARO:3000245","l":"RbpA","na":1,"nb":4,"a":[["ARO%3A3000245","RbpA"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3000261","l":"sigma factor conferring resistance to rifampin","na":1,"nb":4,"a":[["ARO%3A3000261","sigma factor conferring resistance to rifampin"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3000300","l":"lsaA","na":1,"nb":4,"a":[["ARO%3A3000300","lsaA"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/pleuromutilin.html","pleuromutilin"],["antibacterial/quinupristin.html","quinupristin"]]},{"id":"ARO:3000363","l":"EreB","na":1,"nb":4,"a":[["ARO%3A3000363","EreB"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/roxithromycin.html","roxithromycin"]]},{"id":"ARO:3000421","l":"norB","na":1,"nb":4,"a":[["ARO%3A3000421","norB"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"],["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/sparfloxacin.html","sparfloxacin"]]},{"id":"ARO:3000444","l":"rphA","na":1,"nb":4,"a":[["ARO%3A3000444","rphA"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3000462","l":"mgtA","na":1,"nb":4,"a":[["ARO%3A3000462","mgtA"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/methymycin.html","methymycin"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3000463","l":"gimA","na":1,"nb":4,"a":[["ARO%3A3000463","gimA"]],"b":[["antibacterial/chalcomycin.html","chalcomycin"],["antibacterial/methymycin.html","methymycin"],["antibacterial/oleandomycin.html","oleandomycin"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3000501","l":"rpoB2","na":1,"nb":4,"a":[["ARO%3A3000501","rpoB2"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3000873","l":"TEM-1","na":1,"nb":4,"a":[["ARO%3A3000873","TEM-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"]]},{"id":"ARO:3001328","l":"Escherichia coli mdfA","na":1,"nb":4,"a":[["ARO%3A3001328","Escherichia coli mdfA"]],"b":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/tetracycline.html","tetracycline"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3001396","l":"OXA-1","na":1,"nb":4,"a":[["ARO%3A3001396","OXA-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/piperacillin.html","piperacillin"]]},{"id":"ARO:3001818","l":"ACC-4","na":1,"nb":4,"a":[["ARO%3A3001818","ACC-4"]],"b":[["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/cefuroxime.html","cefuroxime"]]},{"id":"ARO:3002547","l":"","na":1,"nb":4,"a":[["ARO%3A3002547","AAC(6')-Ib-cr1"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002623","l":"","na":1,"nb":4,"a":[["ARO%3A3002623","ANT(4')-Ia"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002634","l":"","na":1,"nb":4,"a":[["ARO%3A3002634","APH(2')-Ie"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002636","l":"","na":1,"nb":4,"a":[["ARO%3A3002636","APH(2')-IIIa"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002637","l":"","na":1,"nb":4,"a":[["ARO%3A3002637","APH(2')-IVa"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002665","l":"npmA","na":1,"nb":4,"a":[["ARO%3A3002665","npmA"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3002667","l":"rmtD","na":1,"nb":4,"a":[["ARO%3A3002667","rmtD"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002668","l":"rmtG","na":1,"nb":4,"a":[["ARO%3A3002668","rmtG"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002669","l":"","na":1,"nb":4,"a":[["ARO%3A3002669","APH(2')-Ig"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002883","l":"rgt1438","na":1,"nb":4,"a":[["ARO%3A3002883","rgt1438"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3002884","l":"iri","na":1,"nb":4,"a":[["ARO%3A3002884","iri"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3002985","l":"arnA","na":4,"nb":1,"a":[["ARO%3A3002985","arnA"],["ARO%3A3005053","ArnT"],["ARO%3A3003578","PmrF"],["ARO%3A3003577","ugd"]],"b":[["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3003001","l":"CfxA","na":1,"nb":4,"a":[["ARO%3A3003001","CfxA"]],"b":[["antibacterial/cefmetazole.html","cefmetazole"],["antibacterial/cefotetan.html","cefotetan"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/flomoxef.html","flomoxef"]]},{"id":"ARO:3003029","l":"MexVW-OprM","na":1,"nb":4,"a":[["ARO%3A3003029","MexVW-OprM"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/tetracycline.html","tetracycline"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3003198","l":"rmtH","na":1,"nb":4,"a":[["ARO%3A3003198","rmtH"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3003223","l":"Escherichia coli 16S rRNA mutation conferring resistance to edeine","na":1,"nb":4,"a":[["ARO%3A3003223","Escherichia coli 16S rRNA mutation conferring resistance to edeine"]],"b":[["antibacterial/edeine-a.html","edeine A"],["antibacterial/edeine-b.html","edeine B"],["antibacterial/edeine-d.html","edeine D"],["antibacterial/edeine-f.html","edeine F"]]},{"id":"ARO:3003272","l":"daptomycin resistant cls","na":4,"nb":1,"a":[["ARO%3A3003272","daptomycin resistant cls"],["ARO%3A3003760","Enterococcus faecalis cls with mutation conferring resistance to daptomycin"],["ARO%3A3003092","Enterococcus faecium cls conferring resistance to daptomycin"],["ARO%3A3003074","Staphylococcus aureus cls conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003283","l":"Mycobacterium tuberculosis rpoB with mutations conferring resistance to rifampicin","na":1,"nb":4,"a":[["ARO%3A3003283","Mycobacterium tuberculosis rpoB with mutations conferring resistance to rifampicin"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3003284","l":"Mycobacterium leprae rpoB mutations conferring resistance to rifampicin","na":1,"nb":4,"a":[["ARO%3A3003284","Mycobacterium leprae rpoB mutations conferring resistance to rifampicin"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3003285","l":"Staphylococcus aureus rpoB mutants conferring resistance to rifampicin","na":1,"nb":4,"a":[["ARO%3A3003285","Staphylococcus aureus rpoB mutants conferring resistance to rifampicin"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3003288","l":"Escherichia coli rpoB mutants conferring resistance to rifampicin","na":1,"nb":4,"a":[["ARO%3A3003288","Escherichia coli rpoB mutants conferring resistance to rifampicin"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3003395","l":"Mycobacterium tuberculosis rpsL mutations conferring resistance to Streptomycin","na":4,"nb":1,"a":[["ARO%3A3003419","antibiotic-resistant rpsL"],["ARO%3A3003395","Mycobacterium tuberculosis rpsL mutations conferring resistance to Streptomycin"],["ARO%3A3005082","Ribosomal protein mutation conferring resistance to pleuromutilin antibiotics"],["ARO%3A3005081","Thermus thermophilus uL3 mutations conferring resistance to pleuromutilin antibiotics"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003686","l":"Pseudomonas aeruginosa oprD with mutation conferring resistance to imipenem","na":4,"nb":1,"a":[["ARO%3A3005068","ParR"],["ARO%3A3005066","parRS"],["ARO%3A3005067","ParS"],["ARO%3A3003686","Pseudomonas aeruginosa oprD with mutation conferring resistance to imipenem"]],"b":[["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3003746","l":"optrA","na":1,"nb":4,"a":[["ARO%3A3003746","optrA"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"],["antibacterial/linezolid.html","linezolid"],["antibacterial/tedizolid.html","tedizolid"]]},{"id":"ARO:3003905","l":"","na":1,"nb":4,"a":[["ARO%3A3003905","ANT(4')-Ib"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3003921","l":"oqxAB","na":1,"nb":4,"a":[["ARO%3A3003921","oqxAB"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nitrofurantoin.html","nitrofurantoin"],["antibacterial/tigecycline.html","tigecycline"],["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003942","l":"abcA","na":1,"nb":4,"a":[["ARO%3A3003942","abcA"]],"b":[["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/methicillin.html","methicillin"],["antibacterial/moenomycin-a1.html","moenomycin A1"]]},{"id":"ARO:3003965","l":"hp1184","na":1,"nb":4,"a":[["ARO%3A3003965","hp1184"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/metronidazole.html","metronidazole"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003992","l":"rphB","na":1,"nb":4,"a":[["ARO%3A3003992","rphB"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3004030","l":"RosAB","na":1,"nb":4,"a":[["ARO%3A3004030","RosAB"]],"b":[["antibacterial/polymyxin-b1.html","polymyxin B1"],["antibacterial/polymyxin-b2.html","polymyxin B2"],["antibacterial/polymyxin-b3.html","polymyxin B3"],["antibacterial/polymyxin-b4.html","polymyxin B4"]]},{"id":"ARO:3004123","l":"Burkholderia pseudomallei Omp38","na":1,"nb":4,"a":[["ARO%3A3004123","Burkholderia pseudomallei Omp38"]],"b":[["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3004126","l":"Escherichia coli LamB","na":1,"nb":4,"a":[["ARO%3A3004126","Escherichia coli LamB"]],"b":[["antibacterial/balofloxacin.html","Balofloxacin"],["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3004181","l":"Streptococcus pneumoniae 23S rRNA mutation conferring resistance to macrolides and streptogramins antibiotics","na":1,"nb":4,"a":[["ARO%3A3004181","Streptococcus pneumoniae 23S rRNA mutation conferring resistance to macrolides and streptogramins antibiotics"]],"b":[["antibacterial/josamycin.html","josamycin"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"],["antibacterial/tylosin.html","tylosin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3004359","l":"ACI-1","na":1,"nb":4,"a":[["ARO%3A3004359","ACI-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3004562","l":"Clostridioides difficile gyrB conferring resistance to fluoroquinolones","na":1,"nb":4,"a":[["ARO%3A3004562","Clostridioides difficile gyrB conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/gemifloxacin.html","gemifloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3004599","l":"clcD","na":1,"nb":4,"a":[["ARO%3A3004599","clcD"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/florfenicol.html","florfenicol"],["antibacterial/linezolid.html","linezolid"],["antibacterial/tiamulin.html","tiamulin"]]},{"id":"ARO:3004606","l":"erm(40)","na":1,"nb":4,"a":[["ARO%3A3004606","erm(40)"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3004667","l":"Staphylococcus aureus norA","na":1,"nb":4,"a":[["ARO%3A3004667","Staphylococcus aureus norA"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3005059","l":"LptD","na":1,"nb":4,"a":[["ARO%3A3005059","LptD"]],"b":[["antibacterial/imipenem.html","imipenem"],["antibacterial/novobiocin.html","novobiocin"],["antibacterial/polymyxin-b2.html","polymyxin B2"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3005112","l":"","na":1,"nb":4,"a":[["ARO%3A3005112","AAC(6')-Ib-cr3"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005114","l":"","na":1,"nb":4,"a":[["ARO%3A3005114","AAC(6')-Ib-cr4"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005115","l":"","na":1,"nb":4,"a":[["ARO%3A3005115","AAC(6')-Ib-cr5"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005116","l":"","na":1,"nb":4,"a":[["ARO%3A3005116","AAC(6')-Ib-cr6"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005117","l":"","na":1,"nb":4,"a":[["ARO%3A3005117","AAC(6')-Ib-cr7"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005118","l":"","na":1,"nb":4,"a":[["ARO%3A3005118","AAC(6')-Ib-cr8"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005119","l":"","na":1,"nb":4,"a":[["ARO%3A3005119","AAC(6')-Ib-cr9"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005121","l":"lsaD","na":1,"nb":4,"a":[["ARO%3A3005121","lsaD"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3007028","l":"salD","na":1,"nb":4,"a":[["ARO%3A3007028","salD"]],"b":[["antibacterial/lincomycin.html","lincomycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3007206","l":"KBL-1","na":1,"nb":4,"a":[["ARO%3A3007206","KBL-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/piperacillin.html","piperacillin"]]},{"id":"ARO:3007442","l":"SSA","na":1,"nb":4,"a":[["ARO%3A3007442","SSA"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007456","l":"dfrL","na":1,"nb":4,"a":[["ARO%3A3007456","dfrL"]],"b":[["antibacterial/streptomycin.html","streptomycin"],["antibacterial/tetracycline.html","tetracycline"],["antibacterial/tobramycin.html","tobramycin"],["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3007645","l":"Clostridium sporogenes cplR","na":1,"nb":4,"a":[["ARO%3A3007645","Clostridium sporogenes cplR"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/hygromycin-a.html","hygromycin A"],["antibacterial/iboxamycin.html","iboxamycin"],["antibacterial/retapamulin.html","retapamulin"]]},{"id":"ARO:3007650","l":"CDA-1","na":1,"nb":4,"a":[["ARO%3A3007650","CDA-1"]],"b":[["antibacterial/cefaloridine.html","cefaloridine"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3007670","l":"Aspergillus spp. Hmg1 with mutations conferring resistance to triazoles antibiotics","na":1,"nb":4,"a":[["ARO%3A3007670","Aspergillus spp. Hmg1 with mutations conferring resistance to triazoles antibiotics"]],"b":[["antifungal/isavuconazole.html","isavuconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"ARO:3007770","l":"","na":1,"nb":4,"a":[["ARO%3A3007770","aac(6')-Ib-cr10"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3007771","l":"","na":1,"nb":4,"a":[["ARO%3A3007771","aac(6')-Ib-cr11"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"CHEBI:140434","l":"3-[(Z)-2-isocyanovinyl]indole","na":4,"nb":1,"a":[["EC%3A1.14.20.11","3-[(Z)-2-isocyanoethenyl]-1H-indole synthase"],["EC%3A2.5.1.146","3-geranyl-3-[(Z)-2-isocyanoethenyl]indole synthase"],["RHEA%3A56700","(2S)-3-(1H-indol-3-yl)-2-isocyanopropanoate + 2-oxoglutarate + O2 + H(+) = 3-[(Z)-2-isocyanoethenyl]-1H-indole + succinate + 2 CO2 + H2O"],["RHEA%3A17349","3-[(Z)-2-isocyanoethenyl]-1H-indole + (2E)-geranyl diphosphate = 3-geranyl-3-[(Z)-2-isocyanoethenyl]-1H-indole + diphosphate"]],"b":[["antibacterial/3-z-2-isocyanovinyl-indole.html","3-[(Z)-2-isocyanovinyl]indole"]]},{"id":"CHEBI:140662","l":"2,4-diacetylphloroglucinol(1−)","na":4,"nb":1,"a":[["EC%3A2.3.1.272","2-acetylphloroglucinol acetyltransferase"],["EC%3A3.7.1.24","2,4-diacetylphloroglucinol hydrolase"],["RHEA%3A48236","2 2-acetylphloroglucinol = 2,4-diacetylphloroglucinol + 1,3,5-trihydroxybenzene + H(+)"],["RHEA%3A59184","2,4-diacetylphloroglucinol + H2O = 2-acetylphloroglucinol + acetate"]],"b":[["antifungal/2-4-diacetylphloroglucinol-1.html","2,4-diacetylphloroglucinol(1−)"]]},{"id":"CHEBI:16786","l":"vestitone","na":4,"nb":1,"a":[["EC%3A1.1.1.348","(3R)-2'-hydroxyisoflavanone reductase"],["EC%3A1.3.1.45","2'-hydroxyisoflavone reductase"],["RHEA%3A35403","(3R,4R)-7,2'-dihydroxy-4'-methoxyisoflavanol + NADP(+) = (3R)-vestitone + NADPH + H(+)"],["RHEA%3A22560","(3R)-vestitone + NADP(+) = 2'-hydroxyformononetin + NADPH + 2 H(+)"]],"b":[["antibacterial/vestitone.html","vestitone"]]},{"id":"CHEBI:17302","l":"pentadecanal","na":4,"nb":1,"a":[["EC%3A1.11.1.3","fatty-acid peroxidase"],["RHEA%3A68480","(2R)-2-hydroperoxyhexadecanoate + H(+) = pentadecanal + CO2 + H2O"],["RHEA%3A55212","(2R)-hydroxyhexadecanoyl-CoA = pentadecanal + formyl-CoA"],["RHEA%3A23960","hexadecanoate + 2 H2O2 + H(+) = pentadecanal + CO2 + 3 H2O"]],"b":[["unspecified/pentadecanal.html","pentadecanal"]]},{"id":"CHEBI:192702","l":"ladanein","na":4,"nb":1,"a":[["RHEA%3A73435","apigenin 4',7-dimethyl ether + reduced [NADPH--hemoprotein reductase] + O2 = ladanein + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A73247","ladanein + S-adenosyl-L-methionine = salvigenin + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A73111","scutellarein 4'-methyl ether + S-adenosyl-L-methionine = ladanein + S-adenosyl-L-homocysteine"],["RHEA%3A73239","scutellarein 7-methyl ether + S-adenosyl-L-methionine = ladanein + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antiviral/ladanein.html","ladanein"]]},{"id":"CHEBI:24043","l":"","na":4,"nb":1,"a":[["EC%3A1.14.19.76","flavone synthase II"],["EC%3A1.14.20.5","flavone synthase I"],["RHEA%3A10448","a flavanone + 2-oxoglutarate + O2 = a flavone + succinate + CO2 + H2O"],["RHEA%3A57680","a flavanone + reduced [NADPH--hemoprotein reductase] + O2 = a flavone + oxidized [NADPH--hemoprotein reductase] + 2 H2O + H(+)"]],"b":[["antibacterial/flavocillin.html","flavocillin"]]},{"id":"CHEBI:2448","l":"actinorhodin","na":4,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["proteintraitsmech%3ABIOLIP_ZCT","ZCT-binding site"]],"b":[["unspecified/actinorhodin.html","actinorhodin"]]},{"id":"CHEBI:25675","l":"","na":1,"nb":4,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/oligomycin-a.html","oligomycin A"],["antifungal/oligomycin-d.html","oligomycin D"],["unspecified/oligomycin-b.html","oligomycin B"],["unspecified/oligomycin-c.html","oligomycin C"]]},{"id":"CHEBI:26580","l":"","na":1,"nb":4,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifamycin-sv.html","rifamycin SV"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"CHEBI:27659","l":"","na":4,"nb":1,"a":[["EC%3A1.2.1.23","2-oxoaldehyde dehydrogenase (NAD(+))"],["EC%3A1.2.1.49","2-oxoaldehyde dehydrogenase (NADP(+))"],["RHEA%3A22276","2-oxoaldehyde + NAD(+) + H2O = a 2-oxocarboxylate + NADH + 2 H(+)"],["RHEA%3A18129","2-oxoaldehyde + NADP(+) + H2O = a 2-oxocarboxylate + NADPH + 2 H(+)"]],"b":[["antibacterial/4-hydroxy-2-oxobutanal.html","4-hydroxy-2-oxobutanal"]]},{"id":"CHEBI:27856","l":"","na":4,"nb":1,"a":[["EC%3A3.5.1.4","amidase"],["RHEA%3A85603","acetamide = acetonitrile + H2O"],["RHEA%3A45048","acetamide + H2O = acetate + NH4(+)"],["RHEA%3A51648","N(6)-acetyl-L-lysyl-[protein] + O2 + H2O = acetamide + (S)-2-amino-6-oxohexanoyl-[protein] + H2O2"]],"b":[["unspecified/acetylblasticidin-s.html","acetylblasticidin S"]]},{"id":"CHEBI:28327","l":"naringenin 7-O-β-D-glucoside","na":4,"nb":1,"a":[["EC%3A2.4.1.185","flavanone 7-O-beta-glucosyltransferase"],["RHEA%3A69671","(2S)-naringenin 7-O-beta-D-glucoside + H2O = (2S)-naringenin + beta-D-glucose"],["RHEA%3A67356","(2S)-naringenin 7-O-beta-D-glucoside + malonyl-CoA = (2S)-naringenin 7-O-(6-O-malonyl-beta-D-glucoside) + CoA"],["RHEA%3A65152","(2S)-naringenin + UDP-alpha-D-glucose = (2S)-naringenin 7-O-beta-D-glucoside + UDP + H(+)"]],"b":[["antibacterial/naringenin-7-o-%CE%B2-d-glucoside.html","naringenin 7-O-β-D-glucoside"]]},{"id":"CHEBI:28913","l":"(2E)-hexenal","na":4,"nb":1,"a":[["RHEA%3A60988","(E)-hex-2-en-1-ol + NAD(+) = (E)-hex-2-enal + NADH + H(+)"],["RHEA%3A58424","(E)-hex-2-en-1-ol + NADP(+) = (E)-hex-2-enal + NADPH + H(+)"],["RHEA%3A77419","(E)-hex-2-enal + hydrogen cyanide = (2S,3E)-2-hydroxyhept-3-enenitrile"],["RHEA%3A50776","hexanal + NADP(+) = (E)-hex-2-enal + NADPH + H(+)"]],"b":[["antibacterial/2e-hexenal.html","(2E)-hexenal"]]},{"id":"CHEBI:28927","l":"sakuranetin","na":4,"nb":1,"a":[["EC%3A2.1.1.232","naringenin 7-O-methyltransferase"],["RHEA%3A31539","(2S)-naringenin + S-adenosyl-L-methionine = (2S)-sakuranetin + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A73431","(2S)-sakuranetin + reduced [NADPH--hemoprotein reductase] + O2 = (2S)-7-methylcarthamidin + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A73255","(2S)-sakuranetin + S-adenosyl-L-methionine = (2S)-naringenin 4',7-dimethyl ether + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antimycobacterial/sakuranetin.html","sakuranetin"]]},{"id":"CHEBI:31144","l":"8-demethyltetracenomycin C","na":4,"nb":1,"a":[["EC%3A1.14.13.200","tetracenomycin A2 monooxygenase-diooxygenase"],["EC%3A2.4.1.331","8-demethyltetracenomycin C L-rhamnosyltransferase"],["RHEA%3A42848","8-demethyltetracenomycin C + dTDP-beta-L-rhamnose = 8-demethyl-8-alpha-L-rhamnosyl-tetracenomycin C + dTDP + H(+)"],["RHEA%3A76467","tetracenomycin B2 + 2 NADPH + 2 O2 + 2 H(+) = 8-demethyltetracenomycin C + 2 NADP(+) + H2O"]],"b":[["unspecified/8-demethyltetracenomycin-c.html","8-demethyltetracenomycin C"]]},{"id":"CHEBI:33859","l":"","na":1,"nb":4,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/oxolinic-acid.html","oxolinic acid"],["antifungal/1-2-3-benzothiadiazole-7-carboxylic-acid.html","1,2,3-benzothiadiazole-7-carboxylic acid"],["antifungal/phenazine-1-carboxylic-acid.html","phenazine-1-carboxylic acid"],["antifungal/piperonylic-acid.html","piperonylic acid"]]},{"id":"CHEBI:34848","l":"mevastatin","na":4,"nb":1,"a":[["RHEA%3A51668","mevastatin + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = pravastatin lactone + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"],["RHEA%3A62744","mevastatin + H2O = compactin diol lactone + (S)-2-methylbutanoate + H(+)"],["RHEA%3A63044","mevastatin + H2O = mevinic carboxylate + H(+)"],["proteintraitsmech%3ABIOLIP_2UO","2UO-binding site"]],"b":[["antifungal/mevastatin.html","mevastatin"]]},{"id":"CHEBI:3508","l":"ceftazidime","na":4,"nb":1,"a":[["TCDB%3A8.A.213","The Bon Domain-containing Protein (Bon DP) Family"],["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["TCDB%3A2.C.1","The TonB-ExbB-ExbD/TolA-TolQ-TolR Outer Membrane Receptor Energizers and Stabilizers (TonB/TolA) Family"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"CHEBI:45744","l":"N-acetyl-β-neuraminic acid","na":4,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.21","The Solute:Sodium Symporter (SSS) Family"],["TCDB%3A2.A.56","The Tripartite ATP-independent Periplasmic Transporter (TRAP-T) Family"],["proteintraitsmech%3ABIOLIP_SLB","SLB-binding site"]],"b":[["antiviral/n-acetyl-%CE%B2-neuraminic-acid.html","N-acetyl-β-neuraminic acid"]]},{"id":"CHEBI:46081","l":"fluconazole","na":4,"nb":1,"a":[["RHEA%3A61916","fluconazole(in) + ATP + H2O = fluconazole(out) + ADP + phosphate + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_TPF","TPF-binding site"]],"b":[["antifungal/fluconazole.html","fluconazole"]]},{"id":"CHEBI:46634","l":"","na":1,"nb":4,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/1-carbapenem-3-carboxylic-acid.html","1-carbapenem-3-carboxylic acid"],["antibacterial/carbapenem-mm22383.html","carbapenem MM22383"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"CHEBI:50477","l":"","na":1,"nb":4,"a":[["RHEA%3A47348","a butanoate ester + H2O = an aliphatic alcohol + butanoate + H(+)"]],"b":[["antibacterial/caminoside-a.html","caminoside A"],["antimycobacterial/caseargrewiin-b.html","caseargrewiin B"],["antiviral/clathsterol-disulfonic-acid.html","clathsterol disulfonic acid"],["antiviral/clathsterol.html","clathsterol"]]},{"id":"CHEBI:51460","l":"albaflavenone","na":4,"nb":1,"a":[["EC%3A1.14.15.39","epi-isozizaene 5-monooxygenase"],["RHEA%3A25988","(5R)-albaflavenol + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = albaflavenone + 2 oxidized [2Fe-2S]-[ferredoxin] + 2 H2O"],["RHEA%3A25980","(5S)-albaflavenol + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = albaflavenone + 2 oxidized [2Fe-2S]-[ferredoxin] + 2 H2O"],["RHEA%3A32439","(+)-epi-isozizaene + 4 reduced [2Fe-2S]-[ferredoxin] + 2 O2 + 4 H(+) = albaflavenone + 4 oxidized [2Fe-2S]-[ferredoxin] + 3 H2O"]],"b":[["unspecified/albaflavenone.html","albaflavenone"]]},{"id":"CHEBI:5169","l":"fraxetin","na":4,"nb":1,"a":[["EC%3A1.14.11.60","scopoletin 8-hydroxylase"],["EC%3A1.14.14.164","fraxetin 5-hydroxylase"],["RHEA%3A57844","fraxetin + reduced [NADPH--hemoprotein reductase] + O2 = sideretin (reduced form) + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A57848","scopoletin + 2-oxoglutarate + O2 = fraxetin + succinate + CO2"]],"b":[["antibacterial/fraxetin.html","fraxetin"]]},{"id":"CHEBI:55429","l":"cephamycin","na":1,"nb":4,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/cefminox.html","cefminox"],["antibacterial/cefotetan.html","cefotetan"],["antibacterial/cefoxitin.html","cefoxitin"],["unspecified/cephamycin-c.html","cephamycin C"]]},{"id":"CHEBI:66331","l":"xanthohumol","na":4,"nb":1,"a":[["EC%3A2.1.1.338","desmethylxanthohumol 6'-O-methyltransferase"],["EC%3A2.1.1.339","xanthohumol 4-O-methyltransferase"],["RHEA%3A51696","desmethylxanthohumol + S-adenosyl-L-methionine = xanthohumol + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A51704","xanthohumol + S-adenosyl-L-methionine = 4-O-methylxanthohumol + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antiviral/xanthohumol.html","xanthohumol"]]},{"id":"CHEBI:67246","l":"(+)-lariciresinol","na":4,"nb":1,"a":[["EC%3A1.23.1.1","(+)-pinoresinol reductase"],["EC%3A1.23.1.2","(+)-lariciresinol reductase"],["RHEA%3A34419","(+)-lariciresinol + NADP(+) = (+)-pinoresinol + NADPH + H(+)"],["RHEA%3A34423","(-)-secoisolariciresinol + NADP(+) = (+)-lariciresinol + NADPH + H(+)"]],"b":[["antifungal/lariciresinol.html","(+)-lariciresinol"]]},{"id":"CHEBI:69023","l":"preaustinoid A","na":4,"nb":1,"a":[["RHEA%3A65144","berkeleyone A + 2-oxoglutarate + O2 = preaustinoid A + succinate + CO2 + H2O"],["RHEA%3A65192","preaustinoid A + 2 2-oxoglutarate + 2 O2 = berkeleytrione + 2 succinate + 2 CO2 + H2O"],["RHEA%3A65168","preaustinoid A + AH2 + O2 = preaustinoid A1 + A + H2O"],["RHEA%3A65180","protoaustinoid B + AH2 + O2 = preaustinoid A + A + H2O"]],"b":[["antibacterial/preaustinoid-a.html","preaustinoid A"]]},{"id":"CHEBI:71311","l":"pyrazine-2-carboxylic acid","na":4,"nb":1,"a":[["ARO%3A3004267","antibiotic resistant pncA"],["ARO%3A3004721","Mycobacterium tuberculosis rpsA mutations conferring resistance to pyrazinamide"],["ARO%3A3004722","pyrazinamide resistant rpsA"],["proteintraitsmech%3ABIOLIP_VGL","VGL-binding site"]],"b":[["antimycobacterial/pyrazine-2-carboxylic-acid.html","pyrazine-2-carboxylic acid"]]},{"id":"CHEBI:74023","l":"dioscin","na":4,"nb":1,"a":[["EC%3A3.2.1.189","dioscin glycosidase (diosgenin-forming)"],["EC%3A3.2.1.190","dioscin glycosidase (3-O-beta-D-Glc-diosgenin-forming)"],["RHEA%3A38939","dioscin + 2 H2O = diosgenin 3-O-beta-D-glucoside + 2 L-rhamnopyranose"],["RHEA%3A36827","dioscin + 3 H2O = diosgenin + 2 L-rhamnopyranose + D-glucose"]],"b":[["antifungal/dioscin.html","dioscin"]]},{"id":"CHEBI:77980","l":"aclacinomycin A zwitterion","na":4,"nb":1,"a":[["EC%3A1.1.3.45","aclacinomycin-N oxidase"],["EC%3A1.3.3.14","aclacinomycin-A oxidase"],["RHEA%3A37791","aclacinomycin A + O2 = aclacinomycin Y + H2O2"],["RHEA%3A37423","aclacinomycin N + O2 = aclacinomycin A + H2O2"]],"b":[["unspecified/aclacinomycin-a-zwitterion.html","aclacinomycin A zwitterion"]]},{"id":"CHEBI:78283","l":"8-demethyl-8-(α-L-rhamnosyl)tetracenomycin C","na":4,"nb":1,"a":[["EC%3A2.1.1.305","8-demethyl-8-alpha-L-rhamnosyl tetracenomycin-C 2'-O-methyltransferase"],["EC%3A2.4.1.331","8-demethyltetracenomycin C L-rhamnosyltransferase"],["RHEA%3A41540","8-demethyl-8-alpha-L-rhamnosyl-tetracenomycin C + S-adenosyl-L-methionine = 8-demethyl-8-(2-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A42848","8-demethyltetracenomycin C + dTDP-beta-L-rhamnose = 8-demethyl-8-alpha-L-rhamnosyl-tetracenomycin C + dTDP + H(+)"]],"b":[["unspecified/8-demethyl-8-%CE%B1-l-rhamnosyl-tetracenomycin-c.html","8-demethyl-8-(α-L-rhamnosyl)tetracenomycin C"]]},{"id":"CHEBI:78285","l":"8-demethyl-8-(2-O-methyl-α-L-rhamnosyl)tetracenomycin C","na":4,"nb":1,"a":[["EC%3A2.1.1.305","8-demethyl-8-alpha-L-rhamnosyl tetracenomycin-C 2'-O-methyltransferase"],["EC%3A2.1.1.306","8-demethyl-8-(2-methoxy-alpha-L-rhamnosyl)-tetracenomycin-C 3'-O- methyltransferase"],["RHEA%3A41544","8-demethyl-8-(2-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-methionine = 8-demethyl-8-(2,3-di-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A41540","8-demethyl-8-alpha-L-rhamnosyl-tetracenomycin C + S-adenosyl-L-methionine = 8-demethyl-8-(2-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-homocysteine + H(+)"]],"b":[["unspecified/8-demethyl-8-2-o-methyl-%CE%B1-l-rhamnosyl-tetracenomycin-c.html","8-demethyl-8-(2-O-methyl-α-L-rhamnosyl)tetracenomycin C"]]},{"id":"CHEBI:78286","l":"8-demethyl-8-(2,3-O-dimethyl-α-L-rhamnosyl)tetracenomycin C","na":4,"nb":1,"a":[["EC%3A2.1.1.306","8-demethyl-8-(2-methoxy-alpha-L-rhamnosyl)-tetracenomycin-C 3'-O- methyltransferase"],["EC%3A2.1.1.307","8-demethyl-8-(2,3-dimethoxy-alpha-L-rhamnosyl)-tetracenomycin-C 4'-O- methyltransferase"],["RHEA%3A41548","8-demethyl-8-(2,3-di-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-methionine = 8-demethyl-8-(2,3,4-tri-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A41544","8-demethyl-8-(2-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-methionine = 8-demethyl-8-(2,3-di-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-homocysteine + H(+)"]],"b":[["unspecified/8-demethyl-8-2-3-o-dimethyl-%CE%B1-l-rhamnosyl-tetracenomycin-c.html","8-demethyl-8-(2,3-O-dimethyl-α-L-rhamnosyl)tetracenomycin C"]]},{"id":"CHEBI:84310","l":"anticapsin zwitterion","na":4,"nb":1,"a":[["EC%3A1.1.1.385","dihydroanticapsin 7-dehydrogenase"],["EC%3A6.3.2.49","L-alanine--L-anticapsin ligase"],["RHEA%3A44332","L-anticapsin + L-alanine + ATP = bacilysin + ADP + phosphate + H(+)"],["RHEA%3A44628","L-dihydroanticapsin + NAD(+) = L-anticapsin + NADH + H(+)"]],"b":[["unspecified/anticapsin-zwitterion.html","anticapsin zwitterion"]]},{"id":"CHEBI:90869","l":"validamycin A(1+)","na":4,"nb":1,"a":[["EC%3A1.14.11.52","validamycin A dioxygenase"],["EC%3A2.4.1.338","validoxylamine A glucosyltransferase"],["RHEA%3A48752","validamycin A + 2-oxoglutarate + O2 = validamycin B + succinate + CO2 + H(+)"],["RHEA%3A49388","validoxylamine A + UDP-alpha-D-glucose = validamycin A + UDP + H(+)"]],"b":[["antifungal/validamycin-a-1.html","validamycin A(1+)"]]},{"id":"CHEBI:9555","l":"tioguanine","na":4,"nb":1,"a":[["EC%3A2.1.1.67","thiopurine S-methyltransferase"],["RHEA%3A56580","6-thioguanine + S-adenosyl-L-methionine = 6-methylthioguanine + S-adenosyl-L-homocysteine + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.40","The Nucleobase/Ascorbate Transporter (NAT) or Nucleobase:Cation Symporter-2 (NCS2) Family"]],"b":[["antiviral/tioguanine.html","tioguanine"]]},{"id":"NCBITaxon:11676","l":"Human immunodeficiency virus 1","na":1,"nb":4,"a":[["IDPO%3A0000039","acetylation display site"]],"b":[["antiviral/delavirdine.html","delavirdine"],["antiviral/emivirine.html","emivirine"],["antiviral/etravirine.html","etravirine"],["antiviral/nevirapine.html","nevirapine"]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":4,"nb":1,"a":[["Pfam%3APF16861","Carbamoyltransferase C-terminus"],["Pfam%3APF02543","Carbamoyltransferase N-terminus"],["Pfam%3APF01960","ArgJ family"],["Pfam%3APF07467","Beta-lactamase inhibitor (BLIP)"]],"b":[["antibacterial/clavulanic-acid.html","clavulanic acid"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":4,"nb":1,"a":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"],["TED%3AAF-A0A085UKV7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085UKV7-F1-model_v4_TED01"],["TED%3AAF-A0A4R6IU28-F1-model_v4_TED02","TED novel fold AF-A0A4R6IU28-F1-model_v4_TED02"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"NCBITaxon:40559","l":"Botrytis cinerea","na":1,"nb":4,"a":[["Pfam%3APF08883","Dopa 4,5-dioxygenase family"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/iprodione.html","iprodione"],["antifungal/pyrisoxazole.html","pyrisoxazole"]]},{"id":"NCBITaxon:405948","l":"Saccharopolyspora erythraea NRRL 2338","na":1,"nb":4,"a":[["Pfam%3APF21036","Erythromycin biosynthesis protein CIII-like, N-terminal domain"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["unspecified/erythromycin-b.html","erythromycin B"],["unspecified/erythromycin-c.html","erythromycin C"],["unspecified/erythromycin-d.html","erythromycin D"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":4,"nb":1,"a":[["Pfam%3APF11720","Peptidase inhibitor I78 family"],["Pfam%3APF12296","Hydrophobic surface binding protein A"],["TED%3AAF-A0A3M7JGA1-F1-model_v4_TED02","TED novel fold AF-A0A3M7JGA1-F1-model_v4_TED02"],["TED%3AAF-A0A7G5JNS3-F1-model_v4_TED03","TED novel fold AF-A0A7G5JNS3-F1-model_v4_TED03"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:5076","l":"Penicillium chrysogenum","na":4,"nb":1,"a":[["Pfam%3APF03417","Acyl-coenzyme A:6-aminopenicillanic acid acyl-transferase"],["Pfam%3APF11402","Antifungal protein"],["PROSITE%3APS00185","Isopenicillin N synthase signature 1"],["PROSITE%3APS00186","Isopenicillin N synthase signature 2"]],"b":[["unspecified/isopenicillin-n.html","isopenicillin N"]]},{"id":"NCBITaxon:5270","l":"","na":4,"nb":1,"a":[["Pfam%3APF17445","Mating factor A1"],["Pfam%3APF24563","Mug60/KHD4 KH type I domain"],["Pfam%3APF01185","Fungal hydrophobin"],["Pfam%3APF07460","NUMOD3 motif"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"UniProt:P38637","l":"","na":4,"nb":1,"a":[["GO%3A0031144","proteasome localization"],["Pfam%3APF08559","Cut8, nuclear proteasome tether protein"],["InterPro%3AIPR038422","Cut8/Sts1 superfamily"],["CATH%3A1.20.58.1590","Tethering factor for nuclear proteasome Cut8/Sts1"]],"b":[["antifungal/cycloheximide.html","cycloheximide"]]},{"id":"ARO:3000235","l":"ethambutol resistant embB","na":3,"nb":1,"a":[["ARO%3A3000235","ethambutol resistant embB"],["ARO%3A3003326","Mycobacterium tuberculosis embB mutant conferring resistance to ethambutol"],["ARO%3A3003325","Mycobacterium tuberculosis variant bovis embB with mutation conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3000361","l":"EreA","na":1,"nb":3,"a":[["ARO%3A3000361","EreA"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/roxithromycin.html","roxithromycin"]]},{"id":"ARO:3000373","l":"EmrKY-TolC","na":3,"nb":1,"a":[["ARO%3A3000373","EmrKY-TolC"],["ARO%3A3000832","evgA"],["ARO%3A3000515","evgSA"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000467","l":"NDM-5","na":1,"nb":3,"a":[["ARO%3A3000467","NDM-5"]],"b":[["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ertapenem.html","ertapenem"]]},{"id":"ARO:3000589","l":"NDM-1","na":1,"nb":3,"a":[["ARO%3A3000589","NDM-1"]],"b":[["antibacterial/ertapenem.html","ertapenem"],["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3000598","l":"Erm(31)","na":1,"nb":3,"a":[["ARO%3A3000598","Erm(31)"]],"b":[["antibacterial/methymycin.html","methymycin"],["antibacterial/narbomycin.html","narbomycin"],["antibacterial/pikromycin.html","pikromycin"]]},{"id":"ARO:3000843","l":"MUS-1","na":1,"nb":3,"a":[["ARO%3A3000843","MUS-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/piperacillin.html","piperacillin"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3000844","l":"TUS-1","na":1,"nb":3,"a":[["ARO%3A3000844","TUS-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/piperacillin.html","piperacillin"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3000900","l":"TEM-30","na":1,"nb":3,"a":[["ARO%3A3000900","TEM-30"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"]]},{"id":"ARO:3000930","l":"TEM-61","na":1,"nb":3,"a":[["ARO%3A3000930","TEM-61"]],"b":[["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001071","l":"SHV-12","na":1,"nb":3,"a":[["ARO%3A3001071","SHV-12"]],"b":[["antibacterial/cefalotin.html","cefalotin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3001205","l":"BRP(MBL)","na":1,"nb":3,"a":[["ARO%3A3001205","BRP(MBL)"]],"b":[["antibacterial/bleomycin-a2.html","bleomycin A2"],["antibacterial/bleomycin-b2.html","bleomycin B2"],["antibacterial/bleomycinic-acid.html","bleomycinic acid"]]},{"id":"ARO:3001265","l":"Erm(30)","na":1,"nb":3,"a":[["ARO%3A3001265","Erm(30)"]],"b":[["antibacterial/methymycin.html","methymycin"],["antibacterial/narbomycin.html","narbomycin"],["antibacterial/pikromycin.html","pikromycin"]]},{"id":"ARO:3001302","l":"chrB","na":1,"nb":3,"a":[["ARO%3A3001302","chrB"]],"b":[["antibacterial/chalcomycin.html","chalcomycin"],["antibacterial/mycinamicin-iv.html","mycinamicin IV"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3001303","l":"ErmO-srmA","na":1,"nb":3,"a":[["ARO%3A3001303","ErmO-srmA"]],"b":[["antibacterial/carbomycin.html","carbomycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3001397","l":"OXA-2","na":1,"nb":3,"a":[["ARO%3A3001397","OXA-2"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002528","l":"AAC(3)-Ia","na":1,"nb":3,"a":[["ARO%3A3002528","AAC(3)-Ia"]],"b":[["antibacterial/astromicin.html","astromicin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002529","l":"AAC(3)-Id","na":1,"nb":3,"a":[["ARO%3A3002529","AAC(3)-Id"]],"b":[["antibacterial/astromicin.html","astromicin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002530","l":"AAC(3)-Ib","na":1,"nb":3,"a":[["ARO%3A3002530","AAC(3)-Ib"]],"b":[["antibacterial/astromicin.html","astromicin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002531","l":"AAC(3)-Ic","na":1,"nb":3,"a":[["ARO%3A3002531","AAC(3)-Ic"]],"b":[["antibacterial/astromicin.html","astromicin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002540","l":"AAC(3)-VIa","na":1,"nb":3,"a":[["ARO%3A3002540","AAC(3)-VIa"]],"b":[["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002546","l":"","na":1,"nb":3,"a":[["ARO%3A3002546","AAC(6')-Ib"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002576","l":"","na":1,"nb":3,"a":[["ARO%3A3002576","AAC(6')-Ib3"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002577","l":"","na":1,"nb":3,"a":[["ARO%3A3002577","AAC(6')-Ib4"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002578","l":"","na":1,"nb":3,"a":[["ARO%3A3002578","AAC(6')-Ib7"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002579","l":"","na":1,"nb":3,"a":[["ARO%3A3002579","AAC(6')-Ib8"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002580","l":"","na":1,"nb":3,"a":[["ARO%3A3002580","AAC(6')-Ib9"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002581","l":"","na":1,"nb":3,"a":[["ARO%3A3002581","AAC(6')-Ib10"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002582","l":"","na":1,"nb":3,"a":[["ARO%3A3002582","AAC(6')-Ib11"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002586","l":"","na":1,"nb":3,"a":[["ARO%3A3002586","AAC(6')-32"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002591","l":"","na":1,"nb":3,"a":[["ARO%3A3002591","AAC(6')-Ib-Suzhou"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002592","l":"","na":1,"nb":3,"a":[["ARO%3A3002592","AAC(6')-Ib-Hangzhou"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002593","l":"","na":1,"nb":3,"a":[["ARO%3A3002593","AAC(6')-Ib-SK"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002624","l":"","na":1,"nb":3,"a":[["ARO%3A3002624","ANT(4')-IIa"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002625","l":"","na":1,"nb":3,"a":[["ARO%3A3002625","ANT(4')-IIb"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002649","l":"","na":1,"nb":3,"a":[["ARO%3A3002649","APH(3')-Va"]],"b":[["antibacterial/framycetin.html","framycetin"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3002650","l":"","na":1,"nb":3,"a":[["ARO%3A3002650","APH(3')-Vb"]],"b":[["antibacterial/framycetin.html","framycetin"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3002651","l":"","na":1,"nb":3,"a":[["ARO%3A3002651","APH(3')-Vc"]],"b":[["antibacterial/framycetin.html","framycetin"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3002666","l":"rmtF","na":1,"nb":3,"a":[["ARO%3A3002666","rmtF"]],"b":[["antibacterial/astromicin.html","astromicin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3002671","l":"Limosilactobacillus reuteri cat-TC","na":1,"nb":3,"a":[["ARO%3A3002671","Limosilactobacillus reuteri cat-TC"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002672","l":"Bacillus pumilus cat86","na":1,"nb":3,"a":[["ARO%3A3002672","Bacillus pumilus cat86"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002674","l":"Clostridium butyricum catB","na":1,"nb":3,"a":[["ARO%3A3002674","Clostridium butyricum catB"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002675","l":"catB2","na":1,"nb":3,"a":[["ARO%3A3002675","catB2"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002676","l":"catB3","na":1,"nb":3,"a":[["ARO%3A3002676","catB3"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002678","l":"Pseudomonas aeruginosa catB6","na":1,"nb":3,"a":[["ARO%3A3002678","Pseudomonas aeruginosa catB6"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002679","l":"Pseudomonas aeruginosa catB7","na":1,"nb":3,"a":[["ARO%3A3002679","Pseudomonas aeruginosa catB7"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002680","l":"catB8","na":1,"nb":3,"a":[["ARO%3A3002680","catB8"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002681","l":"catB9","na":1,"nb":3,"a":[["ARO%3A3002681","catB9"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002682","l":"catD","na":1,"nb":3,"a":[["ARO%3A3002682","catD"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002683","l":"catA1","na":1,"nb":3,"a":[["ARO%3A3002683","catA1"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002684","l":"catII","na":1,"nb":3,"a":[["ARO%3A3002684","catII"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002685","l":"catIII","na":1,"nb":3,"a":[["ARO%3A3002685","catIII"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002686","l":"catP","na":1,"nb":3,"a":[["ARO%3A3002686","catP"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002687","l":"catQ","na":1,"nb":3,"a":[["ARO%3A3002687","catQ"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002688","l":"catS","na":1,"nb":3,"a":[["ARO%3A3002688","catS"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002689","l":"Plasmid-encoded cat (pp-cat)","na":1,"nb":3,"a":[["ARO%3A3002689","Plasmid-encoded cat (pp-cat)"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002825","l":"ErmY","na":1,"nb":3,"a":[["ARO%3A3002825","ErmY"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/oleandomycin.html","oleandomycin"]]},{"id":"ARO:3002827","l":"tlrC","na":1,"nb":3,"a":[["ARO%3A3002827","tlrC"]],"b":[["antibacterial/lincomycin.html","lincomycin"],["antibacterial/mycinamicin-iv.html","mycinamicin IV"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3002830","l":"vgaALC","na":1,"nb":3,"a":[["ARO%3A3002830","vgaALC"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002833","l":"vgaE","na":1,"nb":3,"a":[["ARO%3A3002833","vgaE"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002881","l":"lmrC","na":1,"nb":3,"a":[["ARO%3A3002881","lmrC"]],"b":[["antibacterial/celesticetin.html","celesticetin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002987","l":"bcrA","na":1,"nb":3,"a":[["ARO%3A3002987","bcrA"]],"b":[["antibacterial/bacitracin-a.html","bacitracin A"],["antibacterial/bacitracin-b.html","bacitracin B"],["antibacterial/bacitracin-f.html","bacitracin F"]]},{"id":"ARO:3002988","l":"bcrB","na":1,"nb":3,"a":[["ARO%3A3002988","bcrB"]],"b":[["antibacterial/bacitracin-a.html","bacitracin A"],["antibacterial/bacitracin-b.html","bacitracin B"],["antibacterial/bacitracin-f.html","bacitracin F"]]},{"id":"ARO:3003007","l":"bmr","na":1,"nb":3,"a":[["ARO%3A3003007","bmr"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/puromycin.html","puromycin"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3003062","l":"ykkCD","na":1,"nb":3,"a":[["ARO%3A3003062","ykkCD"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/streptomycin.html","streptomycin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003072","l":"mphL","na":1,"nb":3,"a":[["ARO%3A3003072","mphL"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003080","l":"daptomycin resistant pgsA","na":3,"nb":1,"a":[["ARO%3A3003788","Bacillus subtilis pgsA with mutation conferring resistance to daptomycin"],["ARO%3A3003080","daptomycin resistant pgsA"],["ARO%3A3003323","Staphylococcus aureus pgsA mutations conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003110","l":"catB10","na":1,"nb":3,"a":[["ARO%3A3003110","catB10"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3003112","l":"lsaC","na":1,"nb":3,"a":[["ARO%3A3003112","lsaC"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"ARO:3003205","l":"Erm(43)","na":1,"nb":3,"a":[["ARO%3A3003205","Erm(43)"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"]]},{"id":"ARO:3003301","l":"Staphylococcus aureus gyrB conferring resistance to aminocoumarin","na":1,"nb":3,"a":[["ARO%3A3003301","Staphylococcus aureus gyrB conferring resistance to aminocoumarin"]],"b":[["antibacterial/clorobiocin.html","clorobiocin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3003302","l":"Bartonella bacilliformis gyrB conferring resistance to aminocoumarin","na":1,"nb":3,"a":[["ARO%3A3003302","Bartonella bacilliformis gyrB conferring resistance to aminocoumarin"]],"b":[["antibacterial/clorobiocin.html","clorobiocin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3003303","l":"Escherichia coli gyrB conferring resistance to aminocoumarin","na":1,"nb":3,"a":[["ARO%3A3003303","Escherichia coli gyrB conferring resistance to aminocoumarin"]],"b":[["antibacterial/clorobiocin.html","clorobiocin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3003314","l":"Staphylococcus aureus parE conferring resistance to aminocoumarin","na":1,"nb":3,"a":[["ARO%3A3003314","Staphylococcus aureus parE conferring resistance to aminocoumarin"]],"b":[["antibacterial/clorobiocin.html","clorobiocin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3003318","l":"Streptomyces rishiriensis parY mutant conferring resistance to aminocoumarin","na":1,"nb":3,"a":[["ARO%3A3003318","Streptomyces rishiriensis parY mutant conferring resistance to aminocoumarin"]],"b":[["antibacterial/clorobiocin.html","clorobiocin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3003381","l":"Escherichia coli soxR with mutation conferring antibiotic resistance","na":1,"nb":3,"a":[["ARO%3A3003381","Escherichia coli soxR with mutation conferring antibiotic resistance"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3003385","l":"Klebsiella aerogenes Omp36","na":1,"nb":3,"a":[["ARO%3A3003385","Klebsiella aerogenes Omp36"]],"b":[["antibacterial/cefepime.html","cefepime"],["antibacterial/cefpirome.html","cefpirome"],["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3003394","l":"Mycobacterium tuberculosis pncA mutations conferring resistance to pyrazinamide","na":3,"nb":1,"a":[["ARO%3A3004267","antibiotic resistant pncA"],["ARO%3A3003394","Mycobacterium tuberculosis pncA mutations conferring resistance to pyrazinamide"],["ARO%3A3003418","Pyrazinamide resistant pncA"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3003511","l":"Escherichia coli soxS with mutation conferring antibiotic resistance","na":1,"nb":3,"a":[["ARO%3A3003511","Escherichia coli soxS with mutation conferring antibiotic resistance"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enrofloxacin.html","enrofloxacin"]]},{"id":"ARO:3003589","l":"NmcA","na":1,"nb":3,"a":[["ARO%3A3003589","NmcA"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"ARO:3003702","l":"Pseudomonas aeruginosa gyrA and parC conferring resistance to fluoroquinolones","na":1,"nb":3,"a":[["ARO%3A3003702","Pseudomonas aeruginosa gyrA and parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/ofloxacin.html","ofloxacin"],["antibacterial/pefloxacin.html","pefloxacin"]]},{"id":"ARO:3003742","l":"mphG","na":1,"nb":3,"a":[["ARO%3A3003742","mphG"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003807","l":"Escherichia coli AcrAB-TolC with AcrR mutation conferring resistance to ciprofloxacin, tetracycline, and ceftazidime","na":1,"nb":3,"a":[["ARO%3A3003807","Escherichia coli AcrAB-TolC with AcrR mutation conferring resistance to ciprofloxacin, tetracycline, and ceftazidime"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003839","l":"Mrx","na":1,"nb":3,"a":[["ARO%3A3003839","Mrx"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3003842","l":"MUS-2","na":1,"nb":3,"a":[["ARO%3A3003842","MUS-2"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/piperacillin.html","piperacillin"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3003931","l":"Capnocytophaga gingivalis gyrA conferring resistance to fluoroquinolones","na":1,"nb":3,"a":[["ARO%3A3003931","Capnocytophaga gingivalis gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3003947","l":"EfrAB","na":1,"nb":3,"a":[["ARO%3A3003947","EfrAB"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3003960","l":"farAB","na":1,"nb":3,"a":[["ARO%3A3003960","farAB"]],"b":[["antibacterial/linoleic-acid.html","linoleic acid"],["antibacterial/oleic-acid.html","oleic acid"],["antibacterial/palmitic-acid.html","palmitic acid"]]},{"id":"ARO:3003964","l":"hp1181","na":1,"nb":3,"a":[["ARO%3A3003964","hp1181"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/metronidazole.html","metronidazole"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003983","l":"CatU","na":1,"nb":3,"a":[["ARO%3A3003983","CatU"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3003991","l":"mphI","na":1,"nb":3,"a":[["ARO%3A3003991","mphI"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/telithromycin.html","telithromycin"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3004066","l":"MexEF-OprN with MexT mutation conferring resistance to chloramphenicol, ciprofloxacin, and trimethoprim","na":1,"nb":3,"a":[["ARO%3A3004066","MexEF-OprN with MexT mutation conferring resistance to chloramphenicol, ciprofloxacin, and trimethoprim"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004068","l":"MexEF-OprN with MexS mutations conferring resistance to chloramphenicol, ciprofloxacin, and trimethoprim","na":1,"nb":3,"a":[["ARO%3A3004068","MexEF-OprN with MexS mutations conferring resistance to chloramphenicol, ciprofloxacin, and trimethoprim"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004077","l":"PmpM","na":1,"nb":3,"a":[["ARO%3A3004077","PmpM"]],"b":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"],["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3004094","l":"Erm(48)","na":1,"nb":3,"a":[["ARO%3A3004094","Erm(48)"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"]]},{"id":"ARO:3004098","l":"LpeAB","na":1,"nb":3,"a":[["ARO%3A3004098","LpeAB"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3004102","l":"kamB","na":1,"nb":3,"a":[["ARO%3A3004102","kamB"]],"b":[["antibacterial/apramycin.html","apramycin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004103","l":"QepA2","na":1,"nb":3,"a":[["ARO%3A3004103","QepA2"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3004108","l":"Enterobacter cloacae rob","na":1,"nb":3,"a":[["ARO%3A3004108","Enterobacter cloacae rob"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/telithromycin.html","telithromycin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004127","l":"Escherichia coli mipA","na":1,"nb":3,"a":[["ARO%3A3004127","Escherichia coli mipA"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/nalidixic-acid.html","nalidixic acid"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004174","l":"Chlamydia trachomatis 23S rRNA with mutation conferring resistance to macrolide antibiotics","na":1,"nb":3,"a":[["ARO%3A3004174","Chlamydia trachomatis 23S rRNA with mutation conferring resistance to macrolide antibiotics"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/josamycin.html","josamycin"]]},{"id":"ARO:3004378","l":"QepA3","na":1,"nb":3,"a":[["ARO%3A3004378","QepA3"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3004379","l":"QepA4","na":1,"nb":3,"a":[["ARO%3A3004379","QepA4"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3004441","l":"tet(59)","na":1,"nb":3,"a":[["ARO%3A3004441","tet(59)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004442","l":"tet(W/N/W)","na":1,"nb":3,"a":[["ARO%3A3004442","tet(W/N/W)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004544","l":"mphJ","na":1,"nb":3,"a":[["ARO%3A3004544","mphJ"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/telithromycin.html","telithromycin"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3004576","l":"tet(61)","na":1,"nb":3,"a":[["ARO%3A3004576","tet(61)"]],"b":[["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004589","l":"tet(53)","na":1,"nb":3,"a":[["ARO%3A3004589","tet(53)"]],"b":[["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004591","l":"tet(55)","na":1,"nb":3,"a":[["ARO%3A3004591","tet(55)"]],"b":[["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004592","l":"erm(32)","na":1,"nb":3,"a":[["ARO%3A3004592","erm(32)"]],"b":[["antibacterial/methymycin.html","methymycin"],["antibacterial/narbomycin.html","narbomycin"],["antibacterial/pikromycin.html","pikromycin"]]},{"id":"ARO:3004595","l":"erm(45)","na":1,"nb":3,"a":[["ARO%3A3004595","erm(45)"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"]]},{"id":"ARO:3004596","l":"erm(46)","na":1,"nb":3,"a":[["ARO%3A3004596","erm(46)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004639","l":"Corynebacterium striatum tetA","na":1,"nb":3,"a":[["ARO%3A3004639","Corynebacterium striatum tetA"]],"b":[["antibacterial/oxacillin.html","oxacillin"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004649","l":"cfr(B)","na":1,"nb":3,"a":[["ARO%3A3004649","cfr(B)"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/linezolid.html","linezolid"]]},{"id":"ARO:3004652","l":"Erm(O)-lrm","na":1,"nb":3,"a":[["ARO%3A3004652","Erm(O)-lrm"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3004679","l":"rmtE2","na":1,"nb":3,"a":[["ARO%3A3004679","rmtE2"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004854","l":"CMY-136","na":1,"nb":3,"a":[["ARO%3A3004854","CMY-136"]],"b":[["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftolozane.html","ceftolozane"],["antibacterial/cefuroxime.html","cefuroxime"]]},{"id":"ARO:3005021","l":"cfr(D)","na":1,"nb":3,"a":[["ARO%3A3005021","cfr(D)"]],"b":[["antibacterial/linezolid.html","linezolid"],["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3005047","l":"eptB","na":1,"nb":3,"a":[["ARO%3A3005047","eptB"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"],["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3005051","l":"LpsB","na":1,"nb":3,"a":[["ARO%3A3005051","LpsB"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"],["antibacterial/defensin.html","defensin"]]},{"id":"ARO:3005056","l":"tet(X6)","na":1,"nb":3,"a":[["ARO%3A3005056","tet(X6)"]],"b":[["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3005057","l":"tet(X5)","na":1,"nb":3,"a":[["ARO%3A3005057","tet(X5)"]],"b":[["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3005166","l":"tet(X1)","na":1,"nb":3,"a":[["ARO%3A3005166","tet(X1)"]],"b":[["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007032","l":"Erm(50)","na":1,"nb":3,"a":[["ARO%3A3007032","Erm(50)"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/roxithromycin.html","roxithromycin"]]},{"id":"ARO:3007050","l":"mreA","na":1,"nb":3,"a":[["ARO%3A3007050","mreA"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3007056","l":"Antibiotic resistant Helicobacter pylori nitroreductase","na":3,"nb":1,"a":[["ARO%3A3007056","Antibiotic resistant Helicobacter pylori nitroreductase"],["ARO%3A3007059","Helicobacter pylori frxA mutation conferring resistance to metronidazole"],["ARO%3A3007055","Helicobacter pylori rdxA mutation conferring resistance to metronidazole"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007062","l":"VAM-1","na":1,"nb":3,"a":[["ARO%3A3007062","VAM-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3007186","l":"Mycobacterium tuberculosis Rv1258c mutations confer resistance to pyrazinamide, isoniazid, and streptomycin","na":1,"nb":3,"a":[["ARO%3A3007186","Mycobacterium tuberculosis Rv1258c mutations confer resistance to pyrazinamide, isoniazid, and streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"],["antimycobacterial/isoniazide.html","isoniazide"],["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3007196","l":"KPC-123","na":1,"nb":3,"a":[["ARO%3A3007196","KPC-123"]],"b":[["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007208","l":"HelR","na":1,"nb":3,"a":[["ARO%3A3007208","HelR"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3007209","l":"Streptomyces venezuelae rox","na":1,"nb":3,"a":[["ARO%3A3007209","Streptomyces venezuelae rox"]],"b":[["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3007435","l":"WUS-1","na":1,"nb":3,"a":[["ARO%3A3007435","WUS-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/carbenicillin.html","carbenicillin"],["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3007473","l":"Mycobacterium avium gyrA with mutation conferring resistance to fluoroquinolone","na":1,"nb":3,"a":[["ARO%3A3007473","Mycobacterium avium gyrA with mutation conferring resistance to fluoroquinolone"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3007524","l":"Candida spp. ERG11 with mutations conferring resistance to azole antibiotics","na":1,"nb":3,"a":[["ARO%3A3007524","Candida spp. ERG11 with mutations conferring resistance to azole antibiotics"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"ARO:3007531","l":"Streptococcus pyogenes PBP2x conferring resistance to beta-lactam antibiotics","na":1,"nb":3,"a":[["ARO%3A3007531","Streptococcus pyogenes PBP2x conferring resistance to beta-lactam antibiotics"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefotaxime.html","cefotaxime"]]},{"id":"ARO:3007565","l":"Aspergillus spp. cyp51A with mutations conferring resistance to triazoles antibiotics","na":1,"nb":3,"a":[["ARO%3A3007565","Aspergillus spp. cyp51A with mutations conferring resistance to triazoles antibiotics"]],"b":[["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"ARO:3007632","l":"FRI-11","na":1,"nb":3,"a":[["ARO%3A3007632","FRI-11"]],"b":[["antibacterial/ertapenem.html","ertapenem"],["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3007654","l":"erm(56)","na":1,"nb":3,"a":[["ARO%3A3007654","erm(56)"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"]]},{"id":"ARO:3007666","l":"Candida spp. cyp51A1 with mutations conferring resistance to triazoles and imidazole antibiotics","na":1,"nb":3,"a":[["ARO%3A3007666","Candida spp. cyp51A1 with mutations conferring resistance to triazoles and imidazole antibiotics"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/ketoconazole.html","ketoconazole"]]},{"id":"ARO:3007669","l":"aadT","na":1,"nb":3,"a":[["ARO%3A3007669","aadT"]],"b":[["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"CHEBI:121196","l":"reumycin","na":3,"nb":1,"a":[["EC%3A2.1.1.349","toxoflavin synthase"],["RHEA%3A56848","1,6-didemethyltoxoflavin + S-adenosyl-L-methionine = reumycin + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A56852","reumycin + S-adenosyl-L-methionine = toxoflavin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["unspecified/reumycin.html","reumycin"]]},{"id":"CHEBI:131914","l":"violacein","na":3,"nb":1,"a":[["RHEA%3A49720","protoviolaceinate + NADH + 2 O2 + 2 H(+) = violacein + CO2 + NAD(+) + 2 H2O"],["RHEA%3A49728","protoviolaceinate + NADPH + 2 O2 + 2 H(+) = violacein + CO2 + NADP(+) + 2 H2O"],["RHEA%3A49732","violaceinate + O2 + H(+) = violacein + CO2 + H2O"]],"b":[["antibacterial/violacein.html","violacein"]]},{"id":"CHEBI:131915","l":"deoxyviolacein","na":3,"nb":1,"a":[["RHEA%3A49744","deoxyviolaceinate + O2 + H(+) = deoxyviolacein + CO2 + H2O"],["RHEA%3A49736","protodeoxyviolaceinate + NADH + 2 O2 + 2 H(+) = deoxyviolacein + CO2 + NAD(+) + 2 H2O"],["RHEA%3A49740","protodeoxyviolaceinate + NADPH + 2 O2 + 2 H(+) = deoxyviolacein + CO2 + NADP(+) + 2 H2O"]],"b":[["antibacterial/deoxyviolacein.html","deoxyviolacein"]]},{"id":"CHEBI:138730","l":"","na":3,"nb":1,"a":[["EC%3A2.1.1.267","flavonoid 3',5'-methyltransferase"],["EC%3A2.1.1.42","flavone 3'-O-methyltransferase"],["RHEA%3A55332","a 3'-hydroxyflavone + S-adenosyl-L-methionine = a 3'-methoxyflavone + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/3-3-dimethylquercetin.html","3,3'-dimethylquercetin"]]},{"id":"CHEBI:142605","l":"","na":3,"nb":1,"a":[["EC%3A2.3.1.332","medium-chain-alcohol O-fatty-acyltransferase"],["RHEA%3A85935","a medium-chain primary fatty alcohol + a fatty acyl-CoA = a medium-chain alcohol wax ester + CoA"],["RHEA%3A58364","a medium-chain primary fatty alcohol + NADP(+) = a medium-chain fatty aldehyde + NADPH + H(+)"]],"b":[["antibacterial/1-2-dodecanediol.html","1,2-dodecanediol"]]},{"id":"CHEBI:16363","l":"α-santonin","na":3,"nb":1,"a":[["EC%3A1.3.1.47","alpha-santonin 1,2-reductase"],["RHEA%3A23612","1,2-dihydro-alpha-santonin + NAD(+) = alpha-santonin + NADH + H(+)"],["RHEA%3A23616","1,2-dihydro-alpha-santonin + NADP(+) = alpha-santonin + NADPH + H(+)"]],"b":[["antifungal/%CE%B1-santonin.html","α-santonin"]]},{"id":"CHEBI:17097","l":"biphenyl","na":3,"nb":1,"a":[["EC%3A1.14.12.18","biphenyl 2,3-dioxygenase"],["RHEA%3A18165","biphenyl + NADH + O2 + H(+) = (2R,3S)-3-phenylcyclohexa-3,5-diene-1,2-diol + NAD(+)"],["proteintraitsmech%3ABIOLIP_BNL","BNL-binding site"]],"b":[["antifungal/biphenyl.html","biphenyl"]]},{"id":"CHEBI:1722","l":"","na":3,"nb":1,"a":[["EC%3A1.1.1.145","3beta-hydroxy-Delta(5)-steroid dehydrogenase"],["RHEA%3A24076","a 3beta-hydroxy-Delta(5)-steroid + NAD(+) = a 3-oxo-Delta(5)-steroid + NADH + H(+)"],["RHEA%3A56880","a 3beta-hydroxy-Delta(5)-steroid + NADP(+) = a 3-oxo-Delta(5)-steroid + NADPH + H(+)"]],"b":[["antibacterial/7-aminocholesterol.html","7-aminocholesterol"]]},{"id":"CHEBI:17231","l":"m-cresol","na":3,"nb":1,"a":[["EC%3A4.1.1.52","6-methylsalicylate decarboxylase"],["RHEA%3A62208","3-methylphenol + reduced [NADPH--hemoprotein reductase] + O2 = 3-hydroxybenzyl alcohol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A23112","6-methylsalicylate + H(+) = 3-methylphenol + CO2"]],"b":[["antifungal/m-cresol.html","m-cresol"]]},{"id":"CHEBI:173119","l":"(6Z)-nerolidol","na":1,"nb":3,"a":[["RHEA%3A68832","(2Z,6Z)-farnesyl diphosphate + H2O = (6Z)-nerolidol + diphosphate"]],"b":[["antifungal/3r-6z-nerolidol.html","(3R,6Z)-nerolidol"],["antifungal/3s-6z-nerolidol.html","(3S,6Z)-nerolidol"],["antifungal/6z-nerolidol.html","(6Z)-nerolidol"]]},{"id":"CHEBI:17484","l":"benzyl isothiocyanate","na":3,"nb":1,"a":[["EC%3A5.99.1.1","thiocyanate isomerase"],["RHEA%3A10004","benzyl isothiocyanate = benzyl thiocyanate"],["RHEA%3A69300","(Z)-phenyl-N-(sulfonatooxy)methanimidothioate = benzyl isothiocyanate + sulfate"]],"b":[["antibacterial/benzyl-isothiocyanate.html","benzyl isothiocyanate"]]},{"id":"CHEBI:195253","l":"5-hydroxy-3-methylfuran-2(5H)-one","na":3,"nb":1,"a":[["RHEA%3A76507","(-)-2'-epi-GR24 + H2O = (-)-2'-epi-GR24 ABC-rings + 5-hydroxy-3-methylfuran-2(5H)-one"],["RHEA%3A76511","5-deoxystrigol + H2O = 5-deoxystrigol ABC-rings + 5-hydroxy-3-methylfuran-2(5H)-one"],["RHEA%3A76515","orobanchol + H2O = orobanchol ABC-rings + 5-hydroxy-3-methylfuran-2(5H)-one"]],"b":[["antiviral/5-hydroxy-3-methylfuran-2-5h-one.html","5-hydroxy-3-methylfuran-2(5H)-one"]]},{"id":"CHEBI:2453","l":"acyclovir","na":3,"nb":1,"a":[["RHEA%3A83871","valacyclovir + H2O = acyclovir + L-valine + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antiviral/acyclovir.html","acyclovir"]]},{"id":"CHEBI:24838","l":"","na":3,"nb":1,"a":[["TCDB%3A2.A.30","The Cation-Chloride Cotransporter (CCC) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.58","The Phosphate:Na+ Symporter (PNaS) Family"]],"b":[["antibacterial/sodium-fluorophosphate.html","sodium fluorophosphate"]]},{"id":"CHEBI:26267","l":"","na":1,"nb":3,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antiviral/epigallocatechin-4%CE%B28-2%CE%B2o-7-epicatechin.html","epigallocatechin-(4β→8,2β→O-7)-epicatechin"],["antiviral/proanthocyanidin-a2.html","proanthocyanidin A2"],["antiviral/theasinensin-a.html","theasinensin A"]]},{"id":"CHEBI:28915","l":"fosfomycin","na":3,"nb":1,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.5","The Pseudomonas OprP Porin (POP) Family"],["proteintraitsmech%3ABIOLIP_FCN","FCN-binding site"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"CHEBI:3139","l":"bleomycin A2","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A9.A.18","The Peptide Uptake Permease (PUP) Family"]],"b":[["antibacterial/bleomycin-a2.html","bleomycin A2"]]},{"id":"CHEBI:32197","l":"tetracenomycin A2","na":3,"nb":1,"a":[["EC%3A1.14.13.200","tetracenomycin A2 monooxygenase-diooxygenase"],["RHEA%3A42824","tetracenomycin A2 + 2 NADH + 2 O2 + 2 H(+) = tetracenomycin C + 2 NAD(+) + H2O"],["RHEA%3A42820","tetracenomycin A2 + 2 NADPH + 2 O2 + 2 H(+) = tetracenomycin C + 2 NADP(+) + H2O"]],"b":[["antibacterial/tetracenomycin-a2.html","tetracenomycin A2"]]},{"id":"CHEBI:324935","l":"fumagillol","na":3,"nb":1,"a":[["EC%3A1.1.1.437","5-dehydrofumagillol 5-reductase"],["RHEA%3A74751","fumagillol + dodecapentaneoyl-[polyketide synthase] = prefumagillin + holo-[polyketide synthase]"],["RHEA%3A74707","fumagillol + NADP(+) = 5-dehydrofumagillol + NADPH + H(+)"]],"b":[["unspecified/fumagillol.html","fumagillol"]]},{"id":"CHEBI:3392","l":"carbendazim","na":3,"nb":1,"a":[["EC%3A3.1.1.122","carbendazim hydrolysing esterase"],["RHEA%3A78411","carbendazim + H2O = 2-aminobenzimidazole + methanol + CO2"],["RHEA%3A78415","carbendazim + H2O = N-(1H-1,3-benzodiazol-2-yl)carbamate + methanol + H(+)"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"CHEBI:35996","l":"","na":1,"nb":3,"a":[["TCDB%3A1.B.25","The Outer Membrane Porin (Opr) Family"]],"b":[["antibacterial/faropenem.html","faropenem"],["unspecified/faropenem-1.html","faropenem(1−)"],["unspecified/penem.html","penem"]]},{"id":"CHEBI:43968","l":"meropenem","na":3,"nb":1,"a":[["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"],["TCDB%3A1.B.25","The Outer Membrane Porin (Opr) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/meropenem.html","meropenem"]]},{"id":"CHEBI:44485","l":"N-ethylmaleimide","na":3,"nb":1,"a":[["RHEA%3A35527","N-ethylmaleimide + NADH + H(+) = N-ethylsuccinimide + NAD(+)"],["RHEA%3A35523","N-ethylmaleimide + NADPH + H(+) = N-ethylsuccinimide + NADP(+)"],["proteintraitsmech%3ABIOLIP_NEQ","NEQ-binding site"]],"b":[["antiviral/n-ethylmaleimide.html","N-ethylmaleimide"]]},{"id":"CHEBI:45453","l":"sinefungin","na":3,"nb":1,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A2.A.71","The Folate-Biopterin Transporter (FBT) Family"],["proteintraitsmech%3ABIOLIP_SFG","SFG-binding site"]],"b":[["antifungal/sinefungin.html","sinefungin"]]},{"id":"CHEBI:4629","l":"diosgenin","na":3,"nb":1,"a":[["EC%3A3.2.1.189","dioscin glycosidase (diosgenin-forming)"],["RHEA%3A36827","dioscin + 3 H2O = diosgenin + 2 L-rhamnopyranose + D-glucose"],["RHEA%3A61888","diosgenin + UDP-alpha-D-glucose = diosgenin 3-O-beta-D-glucoside + UDP + H(+)"]],"b":[["antiviral/diosgenin.html","diosgenin"]]},{"id":"CHEBI:47789","l":"","na":3,"nb":1,"a":[["EC%3A1.1.1.201","7beta-hydroxysteroid dehydrogenase (NADP(+))"],["RHEA%3A82271","7alpha-hydroxy steroid + NADP(+) = a 7-oxosteroid + NADPH + H(+)"],["RHEA%3A20233","a 7beta-hydroxysteroid + NADP(+) = a 7-oxosteroid + NADPH + H(+)"]],"b":[["antiviral/lucialdehyde-b.html","lucialdehyde B"]]},{"id":"CHEBI:51277","l":"","na":1,"nb":3,"a":[["RHEA%3A82919","a thioester + H2O = a thiol + a carboxylate + H(+)"]],"b":[["antifungal/acibenzolar-s-methyl.html","acibenzolar-S-methyl"],["antifungal/fenpyrazamine.html","fenpyrazamine"],["antiprotozoal/sid-26681509.html","SID 26681509"]]},{"id":"CHEBI:6076","l":"itraconazole","na":3,"nb":1,"a":[["RHEA%3A33503","itraconazole(in) + ATP + H2O = itraconazole(out) + ADP + phosphate + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/itraconazole.html","itraconazole"]]},{"id":"CHEBI:60822","l":"streptothricin F(3+)","na":3,"nb":1,"a":[["EC%3A3.5.2.19","streptothricin hydrolase"],["RHEA%3A57000","streptothricin F + acetyl-CoA = N(beta)-acetylstreptothricin F + CoA + H(+)"],["RHEA%3A28138","streptothricin F + H2O = streptothricin F acid"]],"b":[["unspecified/streptothricin-f-3.html","streptothricin F(3+)"]]},{"id":"CHEBI:6472","l":"lincomycin","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_3QB","3QB-binding site"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"CHEBI:67135","l":"2-nitroimidazole","na":3,"nb":1,"a":[["EC%3A3.5.99.9","2-nitroimidazole nitrohydrolase"],["RHEA%3A34271","2-nitroimidazole + H2O = 1,3-dihydro-2H-imidazol-2-one + nitrite + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antimycobacterial/2-nitroimidazole.html","2-nitroimidazole"]]},{"id":"CHEBI:75291","l":"ε-rhodomycinone","na":3,"nb":1,"a":[["EC%3A1.14.13.180","aklavinone 12-hydroxylase"],["RHEA%3A37835","aklavinone + NADPH + O2 + H(+) = epsilon-rhodomycinone + NADP(+) + H2O"],["RHEA%3A45760","dTDP-beta-L-daunosamine + epsilon-rhodomycinone = rhodomycin D + dTDP + H(+)"]],"b":[["unspecified/%CE%B5-rhodomycinone.html","ε-rhodomycinone"]]},{"id":"CHEBI:77879","l":"elaiophylin","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["proteintraitsmech%3ABIOLIP_ELO","ELO-binding site"]],"b":[["antifungal/elaiophylin.html","elaiophylin"]]},{"id":"CHEBI:78303","l":"aclacinomycin S zwitterion","na":3,"nb":1,"a":[["EC%3A2.4.1.327","aclacinomycin-T 2-deoxy-L-fucose transferase"],["RHEA%3A41652","dTDP-2-deoxy-beta-L-fucose + aclacinomycin S = 2-deoxy-alpha-L-fucosylaclacinomycin S + dTDP + H(+)"],["RHEA%3A41568","dTDP-2-deoxy-beta-L-fucose + aclacinomycin T = aclacinomycin S + dTDP + H(+)"]],"b":[["unspecified/aclacinomycin-s-zwitterion.html","aclacinomycin S zwitterion"]]},{"id":"CHEBI:80729","l":"toxoflavin","na":3,"nb":1,"a":[["EC%3A2.1.1.349","toxoflavin synthase"],["RHEA%3A56852","reumycin + S-adenosyl-L-methionine = toxoflavin + S-adenosyl-L-homocysteine + H(+)"],["proteintraitsmech%3ABIOLIP_TOF","TOF-binding site"]],"b":[["antibacterial/toxoflavin.html","toxoflavin"]]},{"id":"CHEBI:82744","l":"","na":3,"nb":1,"a":[["EC%3A4.8.1.2","aliphatic aldoxime dehydratase"],["RHEA%3A11316","an aliphatic aldoxime = a nitrile + H2O"],["MCSA%3A361","aldoxime dehydratase"]],"b":[["unspecified/ic202c.html","IC202C"]]},{"id":"CHEBI:84688","l":"","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]],"b":[["antibacterial/albomycin-%CE%B41.html","albomycin δ1"]]},{"id":"CHEBI:87208","l":"","na":1,"nb":3,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/cyprodinil.html","cyprodinil"],["antifungal/mepanipyrim.html","mepanipyrim"],["antifungal/pyrimethanil.html","pyrimethanil"]]},{"id":"CHEBI:9053","l":"sclareol","na":3,"nb":1,"a":[["EC%3A4.2.3.141","sclareol synthase"],["RHEA%3A34459","8-hydroxycopalyl diphosphate + H2O = sclareol + diphosphate"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/sclareol.html","sclareol"]]},{"id":"CHEBI:9215","l":"spectinomycin","na":3,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["proteintraitsmech%3ABIOLIP_SCM","SCM-binding site"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"CHEBI:9470","l":"tetracenomycin C","na":3,"nb":1,"a":[["EC%3A1.14.13.200","tetracenomycin A2 monooxygenase-diooxygenase"],["RHEA%3A42824","tetracenomycin A2 + 2 NADH + 2 O2 + 2 H(+) = tetracenomycin C + 2 NAD(+) + H2O"],["RHEA%3A42820","tetracenomycin A2 + 2 NADPH + 2 O2 + 2 H(+) = tetracenomycin C + 2 NADP(+) + H2O"]],"b":[["antibacterial/tetracenomycin-c.html","tetracenomycin C"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":3,"nb":1,"a":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF22041","Glutathione S-transferase, C-terminal domain"],["Pfam%3APF08493","Aflatoxin regulatory protein"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:5053","l":"Aspergillus aculeatus","na":3,"nb":1,"a":[["Pfam%3APF14683","Polysaccharide lyase family 4, domain III"],["Pfam%3APF14686","Polysaccharide lyase family 4, domain II"],["Pfam%3APF01670","Glycosyl hydrolase family 12"]],"b":[["antifungal/aculeacin-a.html","aculeacin A"]]},{"id":"NCBITaxon:54571","l":"Streptomyces venezuelae","na":3,"nb":1,"a":[["Pfam%3APF08990","Erythronolide synthase docking domain"],["TED%3AAF-A0A5P2CQV7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5P2CQV7-F1-model_v4_TED02"],["TED%3AAF-A0A5P2C5X4-F1-model_v4_TED01","TED novel fold AF-A0A5P2C5X4-F1-model_v4_TED01"]],"b":[["antibacterial/methymycin.html","methymycin"]]},{"id":"NCBITaxon:578454","l":"","na":1,"nb":3,"a":[["TED%3AAF-G8BAN6-F1-model_v4_TED01","TED novel fold AF-G8BAN6-F1-model_v4_TED01"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"UniProt:P10613","l":"","na":1,"nb":3,"a":[["proteintraitsmech%3ABIOLIP_1YN","1YN-binding site"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"UniProt:Q4WNT5","l":"","na":1,"nb":3,"a":[["EC%3A1.14.14.154","sterol 14alpha-demethylase"]],"b":[["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"ARO:0000040","l":"streptomycin","na":2,"nb":1,"a":[["ARO%3A3004968","Mycobacterium tuberculosis whib7 mutation conferring resistance to streptomycin"],["ARO%3A3004965","streptomycin resistant whib7"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:0000049","l":"kanamycin A","na":2,"nb":1,"a":[["ARO%3A3004966","Kanamycin resistant whib7"],["ARO%3A3004967","Mycobacterium tuberculosis whib7 mutations confer resistance to kanamycin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3000026","l":"mepA","na":2,"nb":1,"a":[["ARO%3A3000026","mepA"],["ARO%3A3000746","mepR"]],"b":[["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:3000118","l":"vgaB","na":1,"nb":2,"a":[["ARO%3A3000118","vgaB"]],"b":[["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3000165","l":"tet(A)","na":2,"nb":1,"a":[["ARO%3A3000165","tet(A)"],["ARO%3A3003479","tetR"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000236","l":"glycopeptide resistance gene cluster VanA","na":1,"nb":2,"a":[["ARO%3A3000236","glycopeptide resistance gene cluster VanA"]],"b":[["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000251","l":"msrA","na":1,"nb":2,"a":[["ARO%3A3000251","msrA"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/quinupristin.html","quinupristin"]]},{"id":"ARO:3000253","l":"glycopeptide resistance gene cluster VanD","na":1,"nb":2,"a":[["ARO%3A3000253","glycopeptide resistance gene cluster VanD"]],"b":[["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000256","l":"glycopeptide resistance gene cluster VanM","na":1,"nb":2,"a":[["ARO%3A3000256","glycopeptide resistance gene cluster VanM"]],"b":[["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000344","l":"EmrAB-TolC","na":2,"nb":1,"a":[["ARO%3A3000344","EmrAB-TolC"],["ARO%3A3000516","emrR"]],"b":[["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3000448","l":"QepA1","na":1,"nb":2,"a":[["ARO%3A3000448","QepA1"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3000545","l":"MacAB-TolC","na":2,"nb":1,"a":[["ARO%3A3000545","MacAB-TolC"],["ARO%3A3000834","phoP"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000616","l":"mel","na":1,"nb":2,"a":[["ARO%3A3000616","mel"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/telithromycin.html","telithromycin"]]},{"id":"ARO:3000768","l":"abeS","na":1,"nb":2,"a":[["ARO%3A3000768","abeS"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3000769","l":"PatA-PatB","na":1,"nb":2,"a":[["ARO%3A3000769","PatA-PatB"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3000771","l":"AdeFGH","na":2,"nb":1,"a":[["ARO%3A3000771","AdeFGH"],["ARO%3A3000620","adeL"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000786","l":"MdsABC","na":2,"nb":1,"a":[["ARO%3A3000504","golS"],["ARO%3A3000786","MdsABC"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3000822","l":"pmrA","na":1,"nb":2,"a":[["ARO%3A3000822","pmrA"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3000865","l":"oleD","na":1,"nb":2,"a":[["ARO%3A3000865","oleD"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3000966","l":"TEM-103","na":1,"nb":2,"a":[["ARO%3A3000966","TEM-103"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"]]},{"id":"ARO:3001216","l":"mdtH","na":1,"nb":2,"a":[["ARO%3A3001216","mdtH"]],"b":[["antibacterial/enoxacin.html","enoxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3001300","l":"myrA","na":1,"nb":2,"a":[["ARO%3A3001300","myrA"]],"b":[["antibacterial/mycinamicin-iv.html","mycinamicin IV"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3001301","l":"RlmA(II)","na":1,"nb":2,"a":[["ARO%3A3001301","RlmA(II)"]],"b":[["antibacterial/mycinamicin-iv.html","mycinamicin IV"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3001306","l":"ErmW","na":1,"nb":2,"a":[["ARO%3A3001306","ErmW"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/josamycin.html","josamycin"]]},{"id":"ARO:3001796","l":"OXA-50","na":1,"nb":2,"a":[["ARO%3A3001796","OXA-50"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"]]},{"id":"ARO:3001816","l":"ACC-2","na":1,"nb":2,"a":[["ARO%3A3001816","ACC-2"]],"b":[["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001917","l":"CTX-M-55","na":1,"nb":2,"a":[["ARO%3A3001917","CTX-M-55"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3002053","l":"CMY-42","na":1,"nb":2,"a":[["ARO%3A3002053","CMY-42"]],"b":[["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002587","l":"","na":1,"nb":2,"a":[["ARO%3A3002587","AAC(6')-I33"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002601","l":"aadA","na":1,"nb":2,"a":[["ARO%3A3002601","aadA"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002602","l":"aadA2","na":1,"nb":2,"a":[["ARO%3A3002602","aadA2"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002603","l":"aadA3","na":1,"nb":2,"a":[["ARO%3A3002603","aadA3"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002604","l":"aadA4","na":1,"nb":2,"a":[["ARO%3A3002604","aadA4"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002605","l":"aadA5","na":1,"nb":2,"a":[["ARO%3A3002605","aadA5"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002606","l":"aadA6","na":1,"nb":2,"a":[["ARO%3A3002606","aadA6"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002607","l":"aadA7","na":1,"nb":2,"a":[["ARO%3A3002607","aadA7"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002608","l":"aadA8","na":1,"nb":2,"a":[["ARO%3A3002608","aadA8"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002609","l":"aadA9","na":1,"nb":2,"a":[["ARO%3A3002609","aadA9"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002611","l":"aadA11","na":1,"nb":2,"a":[["ARO%3A3002611","aadA11"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002612","l":"aadA12","na":1,"nb":2,"a":[["ARO%3A3002612","aadA12"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002613","l":"aadA13","na":1,"nb":2,"a":[["ARO%3A3002613","aadA13"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002614","l":"aadA14","na":1,"nb":2,"a":[["ARO%3A3002614","aadA14"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002615","l":"aadA15","na":1,"nb":2,"a":[["ARO%3A3002615","aadA15"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002616","l":"aadA16","na":1,"nb":2,"a":[["ARO%3A3002616","aadA16"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002617","l":"aadA17","na":1,"nb":2,"a":[["ARO%3A3002617","aadA17"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002618","l":"aadA21","na":1,"nb":2,"a":[["ARO%3A3002618","aadA21"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002619","l":"aadA22","na":1,"nb":2,"a":[["ARO%3A3002619","aadA22"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002620","l":"aadA23","na":1,"nb":2,"a":[["ARO%3A3002620","aadA23"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002621","l":"aadA24","na":1,"nb":2,"a":[["ARO%3A3002621","aadA24"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002622","l":"aadA6/aadA10","na":1,"nb":2,"a":[["ARO%3A3002622","aadA6/aadA10"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002654","l":"","na":1,"nb":2,"a":[["ARO%3A3002654","APH(3')-VIIa"]],"b":[["antibacterial/framycetin.html","framycetin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3002704","l":"fexA","na":1,"nb":2,"a":[["ARO%3A3002704","fexA"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"]]},{"id":"ARO:3002705","l":"floR","na":1,"nb":2,"a":[["ARO%3A3002705","floR"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"]]},{"id":"ARO:3002706","l":"ethambutol resistant embC","na":2,"nb":1,"a":[["ARO%3A3002706","ethambutol resistant embC"],["ARO%3A3003327","Mycobacterium tuberculosis embC mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3002812","l":"pp-flo","na":1,"nb":2,"a":[["ARO%3A3002812","pp-flo"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"]]},{"id":"ARO:3002818","l":"msrB","na":1,"nb":2,"a":[["ARO%3A3002818","msrB"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/quinupristin.html","quinupristin"]]},{"id":"ARO:3002819","l":"msrC","na":1,"nb":2,"a":[["ARO%3A3002819","msrC"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/quinupristin.html","quinupristin"]]},{"id":"ARO:3002829","l":"vgaA","na":1,"nb":2,"a":[["ARO%3A3002829","vgaA"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002835","l":"lnuA","na":1,"nb":2,"a":[["ARO%3A3002835","lnuA"]],"b":[["antibacterial/lincomycin.html","lincomycin"],["antibacterial/pirlimycin.html","pirlimycin"]]},{"id":"ARO:3002836","l":"lnuB","na":1,"nb":2,"a":[["ARO%3A3002836","lnuB"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002838","l":"lnuD","na":1,"nb":2,"a":[["ARO%3A3002838","lnuD"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002839","l":"lnuF","na":1,"nb":2,"a":[["ARO%3A3002839","lnuF"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002876","l":"ethambutol resistant aftA","na":2,"nb":1,"a":[["ARO%3A3002876","ethambutol resistant aftA"],["ARO%3A3004951","Mycobacterium tuberculosis aftA mutations confer resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3002981","l":"AmrAB-OprM","na":1,"nb":2,"a":[["ARO%3A3002981","AmrAB-OprM"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002998","l":"CblA beta-lactamase","na":2,"nb":1,"a":[["ARO%3A3002999","CblA-1"],["ARO%3A3002998","CblA beta-lactamase"]],"b":[["antibacterial/cefaloridine.html","cefaloridine"]]},{"id":"ARO:3003035","l":"mfpA","na":1,"nb":2,"a":[["ARO%3A3003035","mfpA"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/sparfloxacin.html","sparfloxacin"]]},{"id":"ARO:3003054","l":"SmeDEF","na":1,"nb":2,"a":[["ARO%3A3003054","SmeDEF"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003090","l":"daptomycin-resistant beta-subunit of RNA polymerase (rpoB)","na":2,"nb":1,"a":[["ARO%3A3003090","daptomycin-resistant beta-subunit of RNA polymerase (rpoB)"],["ARO%3A3003287","Staphylococcus aureus rpoB mutants conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003091","l":"daptomycin resistant mprF","na":2,"nb":1,"a":[["ARO%3A3003091","daptomycin resistant mprF"],["ARO%3A3003319","Staphylococcus aureus mprF with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003106","l":"Erm(42)","na":1,"nb":2,"a":[["ARO%3A3003106","Erm(42)"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003107","l":"mef(B)","na":1,"nb":2,"a":[["ARO%3A3003107","mef(B)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003111","l":"lsaB","na":1,"nb":2,"a":[["ARO%3A3003111","lsaB"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"ARO:3003197","l":"aadA25","na":1,"nb":2,"a":[["ARO%3A3003197","aadA25"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003206","l":"lsaE","na":1,"nb":2,"a":[["ARO%3A3003206","lsaE"]],"b":[["antibacterial/lincomycin.html","lincomycin"],["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"ARO:3003209","l":"fosA5","na":1,"nb":2,"a":[["ARO%3A3003209","fosA5"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/gentamicin.html","gentamicin"]]},{"id":"ARO:3003290","l":"daptomycin-resistant beta prime subunit of RNA polymerase (rpoC)","na":2,"nb":1,"a":[["ARO%3A3003290","daptomycin-resistant beta prime subunit of RNA polymerase (rpoC)"],["ARO%3A3003291","Staphylococcus aureus rpoC conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003378","l":"Escherichia coli AcrAB-TolC with MarR mutations conferring resistance to ciprofloxacin and tetracycline","na":1,"nb":2,"a":[["ARO%3A3003378","Escherichia coli AcrAB-TolC with MarR mutations conferring resistance to ciprofloxacin and tetracycline"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003401","l":"","na":2,"nb":1,"a":[["ARO%3A3003388","dapsone resistant dihydropteroate synthase folP"],["ARO%3A3003389","Mycobacterium leprae folP with mutation conferring resistance to dapsone"]],"b":[["antimycobacterial/dapsone.html","dapsone"]]},{"id":"ARO:3003447","l":"ethambutol resistant iniA","na":2,"nb":1,"a":[["ARO%3A3003447","ethambutol resistant iniA"],["ARO%3A3003448","Mycobacterium tuberculosis iniA mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003450","l":"Ethambutol resistant iniC","na":2,"nb":1,"a":[["ARO%3A3003450","Ethambutol resistant iniC"],["ARO%3A3003451","Mycobacterium tuberculosis iniC mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003452","l":"ethambutol resistant embA","na":2,"nb":1,"a":[["ARO%3A3003452","ethambutol resistant embA"],["ARO%3A3003453","Mycobacterium tuberculosis embA mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003454","l":"ethambutol resistant embR","na":2,"nb":1,"a":[["ARO%3A3003454","ethambutol resistant embR"],["ARO%3A3003455","Mycobacterium tuberculosis embR mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003458","l":"Mycobacterium tuberculosis ethA with mutation conferring resistance to ethionamide","na":2,"nb":1,"a":[["ARO%3A3003457","ethionamide resistant ethA"],["ARO%3A3003458","Mycobacterium tuberculosis ethA with mutation conferring resistance to ethionamide"]],"b":[["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"ARO:3003499","l":"Cutibacterium acnes 16S rRNA mutation conferring resistance to tetracycline","na":2,"nb":1,"a":[["ARO%3A3003499","Cutibacterium acnes 16S rRNA mutation conferring resistance to tetracycline"],["ARO%3A3003977","Halobacterium salinarum 16S rRNA mutation conferring resistance to pactamycin"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003573","l":"LpxA","na":1,"nb":2,"a":[["ARO%3A3003573","LpxA"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003574","l":"LpxC","na":1,"nb":2,"a":[["ARO%3A3003574","LpxC"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003575","l":"LpxD","na":1,"nb":2,"a":[["ARO%3A3003575","LpxD"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003585","l":"Klebsiella mutant PhoP conferring antibiotic resistance to colistin","na":1,"nb":2,"a":[["ARO%3A3003585","Klebsiella mutant PhoP conferring antibiotic resistance to colistin"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003676","l":"AAC(6')-Ib'","na":1,"nb":2,"a":[["ARO%3A3003676","AAC(6')-Ib'"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3003689","l":"MCR-1.1","na":1,"nb":2,"a":[["ARO%3A3003689","MCR-1.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003694","l":"MexJK-OprM","na":1,"nb":2,"a":[["ARO%3A3003694","MexJK-OprM"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003703","l":"MexMN-OprM","na":1,"nb":2,"a":[["ARO%3A3003703","MexMN-OprM"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3003722","l":"glycopeptide resistance gene cluster VanI","na":1,"nb":2,"a":[["ARO%3A3003722","glycopeptide resistance gene cluster VanI"]],"b":[["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3003751","l":"Escherichia coli nfsA mutations conferring resistance to nitrofurantoin","na":2,"nb":1,"a":[["ARO%3A3003754","antibiotic resistant nfsA"],["ARO%3A3003751","Escherichia coli nfsA mutations conferring resistance to nitrofurantoin"]],"b":[["antibacterial/nitrofurantoin.html","nitrofurantoin"]]},{"id":"ARO:3003795","l":"daptomycin resistant walK","na":2,"nb":1,"a":[["ARO%3A3003795","daptomycin resistant walK"],["ARO%3A3003794","Staphylococcus aureus walK with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003796","l":"Acinetobacter baumannii ampC beta-lactamase","na":1,"nb":2,"a":[["ARO%3A3003796","Acinetobacter baumannii ampC beta-lactamase"]],"b":[["antibacterial/cefepime.html","cefepime"],["antibacterial/piperacillin.html","piperacillin"]]},{"id":"ARO:3003798","l":"daptomycin resistant YybT","na":2,"nb":1,"a":[["ARO%3A3003798","daptomycin resistant YybT"],["ARO%3A3003797","Enterococcus faecalis YybT with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003802","l":"daptomycin resistant gdpD","na":2,"nb":1,"a":[["ARO%3A3003802","daptomycin resistant gdpD"],["ARO%3A3003800","Enterococcus faecalis gdpD with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003804","l":"daptomycin resistant agrA","na":2,"nb":1,"a":[["ARO%3A3003804","daptomycin resistant agrA"],["ARO%3A3003803","Staphylococcus aureus agrA with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003808","l":"carO","na":1,"nb":2,"a":[["ARO%3A3003808","carO"]],"b":[["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3003814","l":"daptomycin resistant drmA","na":2,"nb":1,"a":[["ARO%3A3003814","daptomycin resistant drmA"],["ARO%3A3003813","Enterococcus faecalis drmA with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003816","l":"daptomycin resistant YvlB","na":2,"nb":1,"a":[["ARO%3A3003816","daptomycin resistant YvlB"],["ARO%3A3003815","Enterococcus faecalis YvlB with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003820","l":"mgrB","na":1,"nb":2,"a":[["ARO%3A3003820","mgrB"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003893","l":"Escherichia coli uhpA with mutation conferring resistance to fosfomycin","na":2,"nb":1,"a":[["ARO%3A3003893","Escherichia coli uhpA with mutation conferring resistance to fosfomycin"],["ARO%3A3004249","UhpA"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003895","l":"Pseudomonas mutant PhoP conferring resistance to colistin","na":1,"nb":2,"a":[["ARO%3A3003895","Pseudomonas mutant PhoP conferring resistance to colistin"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003896","l":"Pseudomonas mutant PhoQ conferring resistance to colistin","na":1,"nb":2,"a":[["ARO%3A3003896","Pseudomonas mutant PhoQ conferring resistance to colistin"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003899","l":"Escherichia coli PtsI with mutation conferring resistance to fosfomycin","na":2,"nb":1,"a":[["ARO%3A3004250","antibiotic-resistant ptsI phosphotransferase"],["ARO%3A3003899","Escherichia coli PtsI with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003926","l":"Salmonella enterica gyrA conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3003926","Salmonella enterica gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3003928","l":"Neisseria gonorrhoeae gyrA with mutations conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3003928","Neisseria gonorrhoeae gyrA with mutations conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/sitafloxacin.html","Sitafloxacin"]]},{"id":"ARO:3003929","l":"Neisseria gonorrhoeae parC conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3003929","Neisseria gonorrhoeae parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/sitafloxacin.html","Sitafloxacin"]]},{"id":"ARO:3003937","l":"Neisseria meningititis PBP2 conferring resistance to beta-lactam","na":1,"nb":2,"a":[["ARO%3A3003937","Neisseria meningititis PBP2 conferring resistance to beta-lactam"]],"b":[["antibacterial/cefixime.html","cefixime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3003939","l":"Salmonella enterica parC conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3003939","Salmonella enterica parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3003940","l":"Shigella flexneri gyrA conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3003940","Shigella flexneri gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/nalidixic-acid.html","nalidixic acid"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3003941","l":"Shigella flexneri parC conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3003941","Shigella flexneri parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/nalidixic-acid.html","nalidixic acid"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3003953","l":"hmrM","na":1,"nb":2,"a":[["ARO%3A3003953","hmrM"]],"b":[["antibacterial/norfloxacin.html","norfloxacin"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3003955","l":"efpA","na":1,"nb":2,"a":[["ARO%3A3003955","efpA"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3003967","l":"lfrA","na":1,"nb":2,"a":[["ARO%3A3003967","lfrA"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3003968","l":"Klebsiella pneumoniae OmpK36","na":1,"nb":2,"a":[["ARO%3A3003968","Klebsiella pneumoniae OmpK36"]],"b":[["antibacterial/cefalotin.html","cefalotin"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3003971","l":"Erm(44)v","na":1,"nb":2,"a":[["ARO%3A3003971","Erm(44)v"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003974","l":"Cutibacterium acnes gyrA conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3003974","Cutibacterium acnes gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"ARO:3004057","l":"23S rRNA with mutation conferring resistance to linezolid antibiotics","na":2,"nb":1,"a":[["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3004058","Staphylococcus aureus 23S rRNA with mutation conferring resistance to linezolid"]],"b":[["antibacterial/linezolid.html","linezolid"]]},{"id":"ARO:3004070","l":"MexEF-OprN with MvaT deletion conferring resistance to chloramphenicol and norfloxacin","na":1,"nb":2,"a":[["ARO%3A3004070","MexEF-OprN with MvaT deletion conferring resistance to chloramphenicol and norfloxacin"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3004086","l":"","na":1,"nb":2,"a":[["ARO%3A3004086","APH(3')-VIIIb"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004087","l":"","na":1,"nb":2,"a":[["ARO%3A3004087","APH(3')-IXa"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004089","l":"","na":1,"nb":2,"a":[["ARO%3A3004089","ANT(3')-IIa"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004090","l":"","na":1,"nb":2,"a":[["ARO%3A3004090","ANT(3')-IIb"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004091","l":"","na":1,"nb":2,"a":[["ARO%3A3004091","ANT(3')-IIc"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004096","l":"daptomycin resistant CdsA","na":2,"nb":1,"a":[["ARO%3A3004096","daptomycin resistant CdsA"],["ARO%3A3004097","Streptococcus mitis CdsA with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3004110","l":"MCR-2.1","na":1,"nb":2,"a":[["ARO%3A3004110","MCR-2.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004114","l":"porin OmpC","na":1,"nb":2,"a":[["ARO%3A3004114","porin OmpC"]],"b":[["antibacterial/cefaloridine.html","cefaloridine"],["antibacterial/cefazolin.html","cefazolin"]]},{"id":"ARO:3004122","l":"Klebsiella pneumoniae OmpK37","na":1,"nb":2,"a":[["ARO%3A3004122","Klebsiella pneumoniae OmpK37"]],"b":[["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"ARO:3004131","l":"Escherichia coli 23S rRNA with mutation conferring resistance to erythromycin and telithromycin","na":1,"nb":2,"a":[["ARO%3A3004131","Escherichia coli 23S rRNA with mutation conferring resistance to erythromycin and telithromycin"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/telithromycin.html","telithromycin"]]},{"id":"ARO:3004136","l":"Ethambutol resistant iniB","na":2,"nb":1,"a":[["ARO%3A3004136","Ethambutol resistant iniB"],["ARO%3A3004135","Mycobacterium tuberculosis iniB with mutation conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3004138","l":"Moraxella catarrhalis 23S rRNA with mutation conferring resistance to macrolide antibiotics","na":1,"nb":2,"a":[["ARO%3A3004138","Moraxella catarrhalis 23S rRNA with mutation conferring resistance to macrolide antibiotics"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004139","l":"MCR-3.1","na":1,"nb":2,"a":[["ARO%3A3004139","MCR-3.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004146","l":"cfrC","na":1,"nb":2,"a":[["ARO%3A3004146","cfrC"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"]]},{"id":"ARO:3004170","l":"Streptococcus pneumoniae 23S rRNA with mutation conferring resistance to macrolide antibiotics","na":1,"nb":2,"a":[["ARO%3A3004170","Streptococcus pneumoniae 23S rRNA with mutation conferring resistance to macrolide antibiotics"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3004177","l":"Mycoplasmopsis fermentans 23S rRNA with mutation conferring resistance to macrolide antibiotics","na":1,"nb":2,"a":[["ARO%3A3004177","Mycoplasmopsis fermentans 23S rRNA with mutation conferring resistance to macrolide antibiotics"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004194","l":"MCR-1.2","na":1,"nb":2,"a":[["ARO%3A3004194","MCR-1.2"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004285","l":"tunicamycin resistance protein","na":2,"nb":1,"a":[["ARO%3A3003059","tmrB"],["ARO%3A3004285","tunicamycin resistance protein"]],"b":[["antibacterial/tunicamycin.html","tunicamycin"]]},{"id":"ARO:3004325","l":"MCR-4.1","na":1,"nb":2,"a":[["ARO%3A3004325","MCR-4.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004332","l":"MCR-5.1","na":1,"nb":2,"a":[["ARO%3A3004332","MCR-5.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004466","l":"ICR-Mc","na":1,"nb":2,"a":[["ARO%3A3004466","ICR-Mc"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004490","l":"delamanid","na":2,"nb":1,"a":[["ARO%3A3007661","Mycobacterium tuberculosis ddn mutation conferring resistance to nitroimidazole antibiotics"],["ARO%3A3007849","Mycobacterium tuberculosis fgd1 with mutation conferring resistance to delamanid"]],"b":[["antibacterial/delamanid.html","delamanid"]]},{"id":"ARO:3004500","l":"MCR-3.11","na":1,"nb":2,"a":[["ARO%3A3004500","MCR-3.11"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004501","l":"MCR-6.1","na":1,"nb":2,"a":[["ARO%3A3004501","MCR-6.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004502","l":"MCR-2.2","na":1,"nb":2,"a":[["ARO%3A3004502","MCR-2.2"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004503","l":"MCR-3.6","na":1,"nb":2,"a":[["ARO%3A3004503","MCR-3.6"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004504","l":"MCR-3.10","na":1,"nb":2,"a":[["ARO%3A3004504","MCR-3.10"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004505","l":"MCR-3.5","na":1,"nb":2,"a":[["ARO%3A3004505","MCR-3.5"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004506","l":"MCR-1.10","na":1,"nb":2,"a":[["ARO%3A3004506","MCR-1.10"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004507","l":"MCR-1.9","na":1,"nb":2,"a":[["ARO%3A3004507","MCR-1.9"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004508","l":"MCR-3.9","na":1,"nb":2,"a":[["ARO%3A3004508","MCR-3.9"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004509","l":"MCR-3.8","na":1,"nb":2,"a":[["ARO%3A3004509","MCR-3.8"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004510","l":"MCR-3.7","na":1,"nb":2,"a":[["ARO%3A3004510","MCR-3.7"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004511","l":"MCR-3.2","na":1,"nb":2,"a":[["ARO%3A3004511","MCR-3.2"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004513","l":"MCR-1.6","na":1,"nb":2,"a":[["ARO%3A3004513","MCR-1.6"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004514","l":"MCR-1.3","na":1,"nb":2,"a":[["ARO%3A3004514","MCR-1.3"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004515","l":"MCR-1.4","na":1,"nb":2,"a":[["ARO%3A3004515","MCR-1.4"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004516","l":"MCR-8.1","na":1,"nb":2,"a":[["ARO%3A3004516","MCR-8.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004517","l":"MCR-7.1","na":1,"nb":2,"a":[["ARO%3A3004517","MCR-7.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004541","l":"mphK","na":1,"nb":2,"a":[["ARO%3A3004541","mphK"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/telithromycin.html","telithromycin"]]},{"id":"ARO:3004560","l":"murG transferase","na":2,"nb":1,"a":[["ARO%3A3004561","Clostridioides difficile murG with mutation conferring resistance to vancomycin"],["ARO%3A3004560","murG transferase"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3004563","l":"Clostridioides difficile rpoB with mutation conferring resistance to rifampicin","na":1,"nb":2,"a":[["ARO%3A3004563","Clostridioides difficile rpoB with mutation conferring resistance to rifampicin"]],"b":[["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3004569","l":"ICR-Mo","na":1,"nb":2,"a":[["ARO%3A3004569","ICR-Mo"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004574","l":"Acinetobacter baumannii AbaQ","na":1,"nb":2,"a":[["ARO%3A3004574","Acinetobacter baumannii AbaQ"]],"b":[["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3004577","l":"Acinetobacter baumannii AmvA","na":1,"nb":2,"a":[["ARO%3A3004577","Acinetobacter baumannii AmvA"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3004581","l":"tet(48)","na":1,"nb":2,"a":[["ARO%3A3004581","tet(48)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004582","l":"tet(49)","na":1,"nb":2,"a":[["ARO%3A3004582","tet(49)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004584","l":"tet(50)","na":1,"nb":2,"a":[["ARO%3A3004584","tet(50)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004586","l":"tet(51)","na":1,"nb":2,"a":[["ARO%3A3004586","tet(51)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004587","l":"tet(52)","na":1,"nb":2,"a":[["ARO%3A3004587","tet(52)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004590","l":"tet(54)","na":1,"nb":2,"a":[["ARO%3A3004590","tet(54)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004600","l":"LnuH","na":1,"nb":2,"a":[["ARO%3A3004600","LnuH"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3004603","l":"tet(56)","na":1,"nb":2,"a":[["ARO%3A3004603","tet(56)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004613","l":"tet(47)","na":1,"nb":2,"a":[["ARO%3A3004613","tet(47)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004616","l":"Mycoplasma genitalium 23S rRNA mutations confers resistance to fluoroquinolone and macrolide antibiotics","na":1,"nb":2,"a":[["ARO%3A3004616","Mycoplasma genitalium 23S rRNA mutations confers resistance to fluoroquinolone and macrolide antibiotics"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3004626","l":"Erm(49)","na":1,"nb":2,"a":[["ARO%3A3004626","Erm(49)"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004641","l":"","na":1,"nb":2,"a":[["ARO%3A3004641","AAC(6')-I-43"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3004654","l":"Clostridioides difficile 23S rRNA with mutation conferring resistance to erythromycin and clindamycin","na":1,"nb":2,"a":[["ARO%3A3004654","Clostridioides difficile 23S rRNA with mutation conferring resistance to erythromycin and clindamycin"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004662","l":"MCR-3.3","na":1,"nb":2,"a":[["ARO%3A3004662","MCR-3.3"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004666","l":"pexA","na":1,"nb":2,"a":[["ARO%3A3004666","pexA"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"]]},{"id":"ARO:3004678","l":"rmtE","na":1,"nb":2,"a":[["ARO%3A3004678","rmtE"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamycin-a.html","gentamycin A"]]},{"id":"ARO:3004680","l":"","na":1,"nb":2,"a":[["ARO%3A3004680","APH(3')-VIIIa"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004682","l":"aadA27","na":1,"nb":2,"a":[["ARO%3A3004682","aadA27"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004684","l":"MCR-9.1","na":1,"nb":2,"a":[["ARO%3A3004684","MCR-9.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004685","l":"MCR-1.5","na":1,"nb":2,"a":[["ARO%3A3004685","MCR-1.5"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004686","l":"MCR-1.7","na":1,"nb":2,"a":[["ARO%3A3004686","MCR-1.7"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004687","l":"MCR-1.8","na":1,"nb":2,"a":[["ARO%3A3004687","MCR-1.8"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004688","l":"MCR-1.11","na":1,"nb":2,"a":[["ARO%3A3004688","MCR-1.11"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004689","l":"MCR-1.12","na":1,"nb":2,"a":[["ARO%3A3004689","MCR-1.12"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004690","l":"MCR-1.13","na":1,"nb":2,"a":[["ARO%3A3004690","MCR-1.13"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004691","l":"MCR-3.4","na":1,"nb":2,"a":[["ARO%3A3004691","MCR-3.4"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004692","l":"aadA10","na":1,"nb":2,"a":[["ARO%3A3004692","aadA10"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004693","l":"MCR-3.12","na":1,"nb":2,"a":[["ARO%3A3004693","MCR-3.12"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004694","l":"MCR-4.2","na":1,"nb":2,"a":[["ARO%3A3004694","MCR-4.2"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004695","l":"MCR-4.3","na":1,"nb":2,"a":[["ARO%3A3004695","MCR-4.3"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004696","l":"MCR-4.4","na":1,"nb":2,"a":[["ARO%3A3004696","MCR-4.4"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004697","l":"MCR-4.5","na":1,"nb":2,"a":[["ARO%3A3004697","MCR-4.5"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004698","l":"MCR-5.2","na":1,"nb":2,"a":[["ARO%3A3004698","MCR-5.2"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004704","l":"aadA8b","na":1,"nb":2,"a":[["ARO%3A3004704","aadA8b"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004719","l":"tet(X3)","na":1,"nb":2,"a":[["ARO%3A3004719","tet(X3)"]],"b":[["antibacterial/tetracycline.html","tetracycline"],["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:3004720","l":"tet(X4)","na":1,"nb":2,"a":[["ARO%3A3004720","tet(X4)"]],"b":[["antibacterial/tetracycline.html","tetracycline"],["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:3004721","l":"Mycobacterium tuberculosis rpsA mutations conferring resistance to pyrazinamide","na":2,"nb":1,"a":[["ARO%3A3004721","Mycobacterium tuberculosis rpsA mutations conferring resistance to pyrazinamide"],["ARO%3A3004722","pyrazinamide resistant rpsA"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004832","l":"Neisseria gonorrhoeae PBP2 conferring resistance to beta-lactam antibiotics","na":1,"nb":2,"a":[["ARO%3A3004832","Neisseria gonorrhoeae PBP2 conferring resistance to beta-lactam antibiotics"]],"b":[["antibacterial/cefixime.html","cefixime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3004851","l":"Neisseria gonorrhoeae mtrR with mutation conferring resistance","na":1,"nb":2,"a":[["ARO%3A3004851","Neisseria gonorrhoeae mtrR with mutation conferring resistance"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004918","l":"Mycobacterium tuberculosis eccB5 conferring resistance to fluoroquinolones","na":2,"nb":1,"a":[["ARO%3A3004918","Mycobacterium tuberculosis eccB5 conferring resistance to fluoroquinolones"],["ARO%3A3004919","Mycobacterium tuberculosis eccC5 conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3004930","l":"Mycobacterium tuberculosis nat mutations conferring resistance to isoniazid","na":2,"nb":1,"a":[["ARO%3A3004910","isoniazid resistant nat"],["ARO%3A3004930","Mycobacterium tuberculosis nat mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004960","l":"Mycobacterium tuberculosis ponA1 mutations conferring resistance to rifabutin","na":1,"nb":2,"a":[["ARO%3A3004960","Mycobacterium tuberculosis ponA1 mutations conferring resistance to rifabutin"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3004965","l":"streptomycin resistant whib7","na":2,"nb":1,"a":[["ARO%3A3004968","Mycobacterium tuberculosis whib7 mutation conferring resistance to streptomycin"],["ARO%3A3004965","streptomycin resistant whib7"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004966","l":"Kanamycin resistant whib7","na":2,"nb":1,"a":[["ARO%3A3004966","Kanamycin resistant whib7"],["ARO%3A3004967","Mycobacterium tuberculosis whib7 mutations confer resistance to kanamycin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004994","l":"Mycobacterium tuberculosis rpoC mutations confer resistance to rifampicin","na":1,"nb":2,"a":[["ARO%3A3004994","Mycobacterium tuberculosis rpoC mutations confer resistance to rifampicin"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3004998","l":"rifampicin resistant rpoA","na":2,"nb":1,"a":[["ARO%3A3004999","Mycobacterium tuberculosis rpoA mutations confer resistance to rifampicin"],["ARO%3A3004998","rifampicin resistant rpoA"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3005023","l":"cfrE","na":1,"nb":2,"a":[["ARO%3A3005023","cfrE"]],"b":[["antibacterial/thiamphenicol.html","thiamphenicol"],["antibacterial/tiamulin.html","tiamulin"]]},{"id":"ARO:3005044","l":"OmpA","na":1,"nb":2,"a":[["ARO%3A3005044","OmpA"]],"b":[["antibacterial/defensin.html","defensin"],["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3005049","l":"CrcB","na":1,"nb":2,"a":[["ARO%3A3005049","CrcB"]],"b":[["antibacterial/gentamicin.html","gentamicin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005052","l":"LpsA","na":1,"nb":2,"a":[["ARO%3A3005052","LpsA"]],"b":[["antibacterial/defensin.html","defensin"],["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3005053","l":"ArnT","na":1,"nb":2,"a":[["ARO%3A3005053","ArnT"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3005061","l":"AAC(3)-IVb","na":1,"nb":2,"a":[["ARO%3A3005061","AAC(3)-IVb"]],"b":[["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005062","l":"","na":1,"nb":2,"a":[["ARO%3A3005062","ANT(3')-Ib"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3005081","l":"Thermus thermophilus uL3 mutations conferring resistance to pleuromutilin antibiotics","na":2,"nb":1,"a":[["ARO%3A3005082","Ribosomal protein mutation conferring resistance to pleuromutilin antibiotics"],["ARO%3A3005081","Thermus thermophilus uL3 mutations conferring resistance to pleuromutilin antibiotics"]],"b":[["antibacterial/tiamulin.html","tiamulin"]]},{"id":"ARO:3005221","l":"MCR-3.41","na":1,"nb":2,"a":[["ARO%3A3005221","MCR-3.41"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007023","l":"NDM-33","na":1,"nb":2,"a":[["ARO%3A3007023","NDM-33"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3007029","l":"salE","na":1,"nb":2,"a":[["ARO%3A3007029","salE"]],"b":[["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"]]},{"id":"ARO:3007042","l":"msr(G)","na":1,"nb":2,"a":[["ARO%3A3007042","msr(G)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3007044","l":"mef(F)","na":1,"nb":2,"a":[["ARO%3A3007044","mef(F)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3007051","l":"Helicobacter pylori rpoB mutation conferring resistance to rifampicin","na":1,"nb":2,"a":[["ARO%3A3007051","Helicobacter pylori rpoB mutation conferring resistance to rifampicin"]],"b":[["antibacterial/levofloxacin.html","levofloxacin"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3007053","l":"Helicobacter pylori gyrB conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3007053","Helicobacter pylori gyrB conferring resistance to fluoroquinolones"]],"b":[["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3007055","l":"Helicobacter pylori rdxA mutation conferring resistance to metronidazole","na":2,"nb":1,"a":[["ARO%3A3007056","Antibiotic resistant Helicobacter pylori nitroreductase"],["ARO%3A3007055","Helicobacter pylori rdxA mutation conferring resistance to metronidazole"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007070","l":"MCR-1.33","na":1,"nb":2,"a":[["ARO%3A3007070","MCR-1.33"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007118","l":"crxA","na":1,"nb":2,"a":[["ARO%3A3007118","crxA"]],"b":[["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3007137","l":"mcr-10.1","na":1,"nb":2,"a":[["ARO%3A3007137","mcr-10.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007158","l":"","na":2,"nb":1,"a":[["ARO%3A3003976","16S rRNA with mutation conferring resistance to pactamycin"],["ARO%3A3003977","Halobacterium salinarum 16S rRNA mutation conferring resistance to pactamycin"]],"b":[["antibacterial/pactamycin.html","pactamycin"]]},{"id":"ARO:3007160","l":"","na":2,"nb":1,"a":[["ARO%3A3004859","Neisseria gonorrhoeae gyrB conferring resistance to zoliflodacin"],["ARO%3A3005000","Zoliflodacin resistant gyrB"]],"b":[["antibacterial/zoliflodacin.html","zoliflodacin"]]},{"id":"ARO:3007187","l":"glycopeptide resistance gene cluster vanP","na":1,"nb":2,"a":[["ARO%3A3007187","glycopeptide resistance gene cluster vanP"]],"b":[["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3007199","l":"PAM-1","na":1,"nb":2,"a":[["ARO%3A3007199","PAM-1"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/doripenem.html","doripenem"]]},{"id":"ARO:3007203","l":"Klebsiella pneumoniae mutant PhoQ conferring resistance to colistin","na":1,"nb":2,"a":[["ARO%3A3007203","Klebsiella pneumoniae mutant PhoQ conferring resistance to colistin"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007227","l":"MCR-8.3","na":1,"nb":2,"a":[["ARO%3A3007227","MCR-8.3"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007228","l":"MCR-8.4","na":1,"nb":2,"a":[["ARO%3A3007228","MCR-8.4"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007229","l":"MCR-8.2","na":1,"nb":2,"a":[["ARO%3A3007229","MCR-8.2"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007230","l":"MCR-1.34","na":1,"nb":2,"a":[["ARO%3A3007230","MCR-1.34"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007231","l":"MCR-4.6","na":1,"nb":2,"a":[["ARO%3A3007231","MCR-4.6"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007232","l":"MCR-1.27","na":1,"nb":2,"a":[["ARO%3A3007232","MCR-1.27"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007233","l":"MCR-1.18","na":1,"nb":2,"a":[["ARO%3A3007233","MCR-1.18"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007234","l":"MCR-1.23","na":1,"nb":2,"a":[["ARO%3A3007234","MCR-1.23"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007235","l":"MCR-1.20","na":1,"nb":2,"a":[["ARO%3A3007235","MCR-1.20"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007236","l":"MCR-1.28","na":1,"nb":2,"a":[["ARO%3A3007236","MCR-1.28"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007237","l":"MCR-1.21","na":1,"nb":2,"a":[["ARO%3A3007237","MCR-1.21"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007238","l":"MCR-1.16","na":1,"nb":2,"a":[["ARO%3A3007238","MCR-1.16"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007239","l":"MCR-1.22","na":1,"nb":2,"a":[["ARO%3A3007239","MCR-1.22"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007240","l":"MCR-1.19","na":1,"nb":2,"a":[["ARO%3A3007240","MCR-1.19"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007241","l":"MCR-1.29","na":1,"nb":2,"a":[["ARO%3A3007241","MCR-1.29"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007242","l":"MCR-1.30","na":1,"nb":2,"a":[["ARO%3A3007242","MCR-1.30"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007243","l":"MCR-1.24","na":1,"nb":2,"a":[["ARO%3A3007243","MCR-1.24"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007244","l":"MCR-1.17","na":1,"nb":2,"a":[["ARO%3A3007244","MCR-1.17"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007245","l":"MCR-1.31","na":1,"nb":2,"a":[["ARO%3A3007245","MCR-1.31"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007246","l":"MCR-1.14","na":1,"nb":2,"a":[["ARO%3A3007246","MCR-1.14"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007247","l":"MCR-1.25","na":1,"nb":2,"a":[["ARO%3A3007247","MCR-1.25"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007248","l":"MCR-3.33","na":1,"nb":2,"a":[["ARO%3A3007248","MCR-3.33"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007249","l":"MCR-3.14","na":1,"nb":2,"a":[["ARO%3A3007249","MCR-3.14"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007250","l":"MCR-3.37","na":1,"nb":2,"a":[["ARO%3A3007250","MCR-3.37"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007251","l":"MCR-3.38","na":1,"nb":2,"a":[["ARO%3A3007251","MCR-3.38"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007252","l":"MCR-3.15","na":1,"nb":2,"a":[["ARO%3A3007252","MCR-3.15"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007253","l":"MCR-3.27","na":1,"nb":2,"a":[["ARO%3A3007253","MCR-3.27"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007254","l":"MCR-3.32","na":1,"nb":2,"a":[["ARO%3A3007254","MCR-3.32"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007255","l":"MCR-3.31","na":1,"nb":2,"a":[["ARO%3A3007255","MCR-3.31"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007256","l":"MCR-3.23","na":1,"nb":2,"a":[["ARO%3A3007256","MCR-3.23"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007257","l":"MCR-3.36","na":1,"nb":2,"a":[["ARO%3A3007257","MCR-3.36"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007258","l":"MCR-3.25","na":1,"nb":2,"a":[["ARO%3A3007258","MCR-3.25"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007259","l":"MCR-3.22","na":1,"nb":2,"a":[["ARO%3A3007259","MCR-3.22"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007260","l":"MCR-3.16","na":1,"nb":2,"a":[["ARO%3A3007260","MCR-3.16"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007261","l":"MCR-3.26","na":1,"nb":2,"a":[["ARO%3A3007261","MCR-3.26"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007262","l":"MCR-3.21","na":1,"nb":2,"a":[["ARO%3A3007262","MCR-3.21"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007263","l":"MCR-3.18","na":1,"nb":2,"a":[["ARO%3A3007263","MCR-3.18"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007264","l":"MCR-3.40","na":1,"nb":2,"a":[["ARO%3A3007264","MCR-3.40"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007265","l":"MCR-3.24","na":1,"nb":2,"a":[["ARO%3A3007265","MCR-3.24"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007266","l":"MCR-3.20","na":1,"nb":2,"a":[["ARO%3A3007266","MCR-3.20"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007267","l":"MCR-3.35","na":1,"nb":2,"a":[["ARO%3A3007267","MCR-3.35"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007268","l":"MCR-3.34","na":1,"nb":2,"a":[["ARO%3A3007268","MCR-3.34"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007269","l":"MCR-3.13","na":1,"nb":2,"a":[["ARO%3A3007269","MCR-3.13"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007270","l":"MCR-3.28","na":1,"nb":2,"a":[["ARO%3A3007270","MCR-3.28"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007271","l":"MCR-3.39","na":1,"nb":2,"a":[["ARO%3A3007271","MCR-3.39"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007272","l":"MCR-3.29","na":1,"nb":2,"a":[["ARO%3A3007272","MCR-3.29"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007273","l":"MCR-3.19","na":1,"nb":2,"a":[["ARO%3A3007273","MCR-3.19"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007274","l":"MCR-10.5","na":1,"nb":2,"a":[["ARO%3A3007274","MCR-10.5"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007275","l":"MCR-10.3","na":1,"nb":2,"a":[["ARO%3A3007275","MCR-10.3"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007276","l":"MCR-10.4","na":1,"nb":2,"a":[["ARO%3A3007276","MCR-10.4"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007277","l":"MCR-10.2","na":1,"nb":2,"a":[["ARO%3A3007277","MCR-10.2"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007278","l":"MCR-3.17","na":1,"nb":2,"a":[["ARO%3A3007278","MCR-3.17"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007279","l":"MCR-1.15","na":1,"nb":2,"a":[["ARO%3A3007279","MCR-1.15"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007280","l":"MCR-1.26","na":1,"nb":2,"a":[["ARO%3A3007280","MCR-1.26"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007281","l":"MCR-5.4","na":1,"nb":2,"a":[["ARO%3A3007281","MCR-5.4"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007282","l":"MCR-5.3","na":1,"nb":2,"a":[["ARO%3A3007282","MCR-5.3"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007283","l":"MCR-2.4","na":1,"nb":2,"a":[["ARO%3A3007283","MCR-2.4"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007284","l":"MCR-2.3","na":1,"nb":2,"a":[["ARO%3A3007284","MCR-2.3"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007285","l":"MCR-2.8","na":1,"nb":2,"a":[["ARO%3A3007285","MCR-2.8"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007286","l":"MCR-2.5","na":1,"nb":2,"a":[["ARO%3A3007286","MCR-2.5"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007287","l":"MCR-2.7","na":1,"nb":2,"a":[["ARO%3A3007287","MCR-2.7"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007288","l":"MCR-2.6","na":1,"nb":2,"a":[["ARO%3A3007288","MCR-2.6"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007289","l":"MCR-1.32","na":1,"nb":2,"a":[["ARO%3A3007289","MCR-1.32"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007375","l":"KPC-87","na":1,"nb":2,"a":[["ARO%3A3007375","KPC-87"]],"b":[["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3007402","l":"KPC-94","na":1,"nb":2,"a":[["ARO%3A3007402","KPC-94"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3007423","l":"Escherichia coli PBP3 mutants conferring resistance to beta-lactam antibiotics","na":1,"nb":2,"a":[["ARO%3A3007423","Escherichia coli PBP3 mutants conferring resistance to beta-lactam antibiotics"]],"b":[["antibacterial/ceftaroline.html","ceftaroline"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007493","l":"tet(63)","na":1,"nb":2,"a":[["ARO%3A3007493","tet(63)"]],"b":[["antibacterial/doxycycline.html","doxycycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007494","l":"tet(64)","na":1,"nb":2,"a":[["ARO%3A3007494","tet(64)"]],"b":[["antibacterial/doxycycline.html","doxycycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007498","l":"","na":1,"nb":2,"a":[["ARO%3A3007640","Candida spp. pleiotropic drug resistance factor 1"]],"b":[["antifungal/naftifine.html","naftifine"],["antifungal/terbinafine.html","terbinafine"]]},{"id":"ARO:3007533","l":"MCR-4.7","na":1,"nb":2,"a":[["ARO%3A3007533","MCR-4.7"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007553","l":"Candida spp. CDR1","na":1,"nb":2,"a":[["ARO%3A3007553","Candida spp. CDR1"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/miconazole.html","miconazole"]]},{"id":"ARO:3007554","l":"Candida spp. CDR2","na":1,"nb":2,"a":[["ARO%3A3007554","Candida spp. CDR2"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/terbinafine.html","terbinafine"]]},{"id":"ARO:3007661","l":"Mycobacterium tuberculosis ddn mutation conferring resistance to nitroimidazole antibiotics","na":1,"nb":2,"a":[["ARO%3A3007661","Mycobacterium tuberculosis ddn mutation conferring resistance to nitroimidazole antibiotics"]],"b":[["antibacterial/delamanid.html","delamanid"],["antibacterial/pretomanid.html","pretomanid"]]},{"id":"ARO:3007662","l":"Rv1877","na":1,"nb":2,"a":[["ARO%3A3007662","Rv1877"]],"b":[["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3007692","l":"Mycobacterium tuberculosis Rv2535c with mutation conferring resistance to bedaquiline","na":1,"nb":2,"a":[["ARO%3A3007692","Mycobacterium tuberculosis Rv2535c with mutation conferring resistance to bedaquiline"]],"b":[["antimycobacterial/bedaquiline.html","bedaquiline"],["antimycobacterial/clofazimine.html","clofazimine"]]},{"id":"ARO:3007751","l":"Salmonella isangi gyrA conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3007751","Salmonella isangi gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3007752","l":"Salmonella isangi gyrB conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3007752","Salmonella isangi gyrB conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3007861","l":"DYB-1","na":1,"nb":2,"a":[["ARO%3A3007861","DYB-1"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3009148","l":"MexJK","na":2,"nb":1,"a":[["ARO%3A3009148","MexJK"],["ARO%3A3003710","MexL"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3009153","l":"MexHI-OpmD","na":1,"nb":2,"a":[["ARO%3A3009153","MexHI-OpmD"]],"b":[["antibacterial/norfloxacin.html","norfloxacin"],["biocide/acriflavine.html","acriflavine"]]},{"id":"CHEBI:10023","l":"voriconazole","na":2,"nb":1,"a":[["RHEA%3A61912","voriconazole(in) + ATP + H2O = voriconazole(out) + ADP + phosphate + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"CHEBI:100246","l":"norfloxacin","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"CHEBI:10101","l":"zalcitabine","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.41","The Concentrative Nucleoside Transporter (CNT) Family"]],"b":[["antiviral/zalcitabine.html","zalcitabine"]]},{"id":"CHEBI:10110","l":"zidovudine","na":2,"nb":1,"a":[["TCDB%3A2.A.41","The Concentrative Nucleoside Transporter (CNT) Family"],["TCDB%3A2.A.60","The Organo Anion Transporter (OAT) Family"]],"b":[["antiviral/zidovudine.html","zidovudine"]]},{"id":"CHEBI:132426","l":"chondrochloren A","na":2,"nb":1,"a":[["EC%3A4.1.1.129","1'-carboxy-chondrochloren decarboxylase"],["RHEA%3A81491","1'-carboxy-chondrochloren A + FAD + 2 H(+) = chondrochloren A + FADH2 + CO2"]],"b":[["unspecified/chondrochloren-a.html","chondrochloren A"]]},{"id":"CHEBI:132442","l":"chondrochloren B","na":2,"nb":1,"a":[["EC%3A4.1.1.129","1'-carboxy-chondrochloren decarboxylase"],["RHEA%3A81495","1'-carboxy-chondrochloren B + FAD + 2 H(+) = chondrochloren B + FADH2 + CO2"]],"b":[["unspecified/chondrochloren-b.html","chondrochloren B"]]},{"id":"CHEBI:132987","l":"alliin zwitterion","na":2,"nb":1,"a":[["EC%3A4.4.1.4","alliin lyase"],["RHEA%3A54688","alliin = allylsulfenate + 2-aminoprop-2-enoate"]],"b":[["unspecified/alliin-zwitterion.html","alliin zwitterion"]]},{"id":"CHEBI:133907","l":"hypothiocyanous acid","na":2,"nb":1,"a":[["RHEA%3A69416","thiocyanate + H2O2 + H(+) = hypothiocyanous acid + H2O"],["MCSA%3A944","Lactoperoxidase"]],"b":[["antibacterial/hypothiocyanous-acid.html","hypothiocyanous acid"]]},{"id":"CHEBI:137041","l":"quinine(1+)","na":2,"nb":1,"a":[["EC%3A1.14.14.55","quinine 3-monooxygenase"],["RHEA%3A20149","quinine + reduced [NADPH--hemoprotein reductase] + O2 = 3-hydroxyquinine + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["antiprotozoal/quinine-1.html","quinine(1+)"]]},{"id":"CHEBI:137419","l":"","na":2,"nb":1,"a":[["EC%3A2.1.1.49","amine N-methyltransferase"],["RHEA%3A53924","a secondary amine + S-adenosyl-L-methionine = a methylated secondary amine + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antifungal/solasodine-1.html","solasodine(1+)"]]},{"id":"CHEBI:138224","l":"(13R)-epi-8,13-epoxylabd-14-ene","na":2,"nb":1,"a":[["EC%3A4.2.3.186","ent-13-epi-manoyl oxide synthase"],["RHEA%3A18721","ent-8alpha-hydroxylabd-13-en-15-yl diphosphate = ent-13-epi-manoyl oxide + diphosphate"]],"b":[["antibacterial/13r-epi-8-13-epoxylabd-14-ene.html","(13R)-epi-8,13-epoxylabd-14-ene"]]},{"id":"CHEBI:138945","l":"maniladiol","na":2,"nb":1,"a":[["EC%3A1.14.14.63","beta-amyrin 16beta-monooxygenase"],["RHEA%3A55440","beta-amyrin + reduced [NADPH--hemoprotein reductase] + O2 = maniladiol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["antimycobacterial/maniladiol.html","maniladiol"]]},{"id":"CHEBI:138961","l":"sugiol","na":2,"nb":1,"a":[["EC%3A1.14.14.65","sugiol synthase"],["RHEA%3A55456","ferruginol + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = sugiol + 2 oxidized [NADPH--hemoprotein reductase] + 3 H2O + 2 H(+)"]],"b":[["antiviral/sugiol.html","sugiol"]]},{"id":"CHEBI:140183","l":"","na":2,"nb":1,"a":[["EC%3A1.1.1.348","(3R)-2'-hydroxyisoflavanone reductase"],["RHEA%3A56284","a (3R,4R)-4,2'-dihydroxyisoflavan + NADP(+) = a (3R)-2'-hydroxyisoflavanone + NADPH + H(+)"]],"b":[["antibacterial/vestitone.html","vestitone"]]},{"id":"CHEBI:141992","l":"","na":2,"nb":1,"a":[["EC%3A1.14.14.162","flavanone 2-hydroxylase"],["RHEA%3A57584","a flavanone + reduced [NADPH--hemoprotein reductase] + O2 = a 2-hydroxyflavanone + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["antiviral/2s-2-7-dihydroxy-5-methoxy-6-8-dimethylflavanone.html","(2S)-2,7-dihydroxy-5-methoxy-6,8-dimethylflavanone"]]},{"id":"CHEBI:142061","l":"trichosetin(1−)","na":2,"nb":1,"a":[["RHEA%3A67328","(5S)-3-[(2E,6R,8E,10E,12E)-2,6-dimethyltetradeca-2,8,10,12-tetraenoyl]-5-(hydroxymethyl)pyrrolidine-2,4-dione = trichosetin"],["RHEA%3A57648","trichosetin + S-adenosyl-L-methionine = equisetin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/trichosetin-1.html","trichosetin(1−)"]]},{"id":"CHEBI:143285","l":"L-propargylglycine zwitterion","na":2,"nb":1,"a":[["RHEA%3A59892","L-2-amino-4-chloropent-4-enoate = L-propargylglycine + chloride + H(+)"],["RHEA%3A59896","L-propargylglycine + L-glutamate + ATP = L-gamma-glutamyl-L-propargylglycine + ADP + phosphate + H(+)"]],"b":[["unspecified/l-propargylglycine-zwitterion.html","L-propargylglycine zwitterion"]]},{"id":"CHEBI:145111","l":"isopatulin","na":2,"nb":1,"a":[["RHEA%3A62224","neopatulin + NADPH + H(+) = (E)-ascladiol + NADP(+)"],["RHEA%3A62220","phyllostine = neopatulin"]],"b":[["antibacterial/isopatulin.html","isopatulin"]]},{"id":"CHEBI:145874","l":"deoxyherqueinone(1−)","na":2,"nb":1,"a":[["RHEA%3A62664","(2'R)-atrovenetin + S-adenosyl-L-methionine = deoxyherqueinone + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A62668","deoxyherqueinone + NADPH + O2 + H(+) = herqueinone + NADP(+) + H2O"]],"b":[["antibacterial/deoxyherqueinone-1.html","deoxyherqueinone(1−)"]]},{"id":"CHEBI:146153","l":"ilicicolin B","na":2,"nb":1,"a":[["RHEA%3A63084","ilicicolin B + FADH2 + chloride + O2 = ilicicolin A + FAD + 2 H2O + H(+)"],["RHEA%3A63080","ilicicolinate B + AH2 + ATP = ilicicolin B + A + AMP + diphosphate"]],"b":[["unspecified/ilicicolin-b.html","ilicicolin B"]]},{"id":"CHEBI:15366","l":"acetic acid","na":2,"nb":1,"a":[["MCSA%3A431","acetylxylan esterase"],["MCSA%3A996","Peptidoglycan-N-acetylglucosamine deacetylase Bc1960"]],"b":[["biocide/acetic-acid.html","acetic acid"]]},{"id":"CHEBI:15390","l":"(+)-bisdechlorogeodin","na":2,"nb":1,"a":[["EC%3A1.21.3.4","sulochrin oxidase [(+)-bisdechlorogeodin-forming]"],["RHEA%3A24092","2 sulochrin + O2 + 2 H(+) = 2 (2S)-bisdechlorogeodin + 2 H2O"]],"b":[["unspecified/bisdechlorogeodin.html","(+)-bisdechlorogeodin"]]},{"id":"CHEBI:15391","l":"(−)-bisdechlorogeodin","na":2,"nb":1,"a":[["EC%3A1.21.3.5","sulochrin oxidase [(-)-bisdechlorogeodin-forming]"],["RHEA%3A22616","2 sulochrin + O2 + 2 H(+) = 2 (2R)-bisdechlorogeodin + 2 H2O"]],"b":[["unspecified/bisdechlorogeodin-15391.html","(−)-bisdechlorogeodin"]]},{"id":"CHEBI:15660","l":"(Z)-2-(2-furyl)-3-(5-nitro-2-furyl)acrylamide","na":2,"nb":1,"a":[["EC%3A5.2.1.6","furylfuramide isomerase"],["RHEA%3A21848","(E)-2-(2-furyl)-3-(5-nitro-2-furyl)acrylamide = (Z)-2-(2-furyl)-3-(5-nitro-2-furyl)acrylamide"]],"b":[["unspecified/z-2-2-furyl-3-5-nitro-2-furyl-acrylamide.html","(Z)-2-(2-furyl)-3-(5-nitro-2-furyl)acrylamide"]]},{"id":"CHEBI:15712","l":"2,3-dihydrobiochanin A","na":2,"nb":1,"a":[["EC%3A1.3.1.46","biochanin-A reductase"],["RHEA%3A12817","2,3-dihydrobiochanin A + NADP(+) = biochanin A + NADPH + 2 H(+)"]],"b":[["antifungal/2-3-dihydrobiochanin-a.html","2,3-dihydrobiochanin A"]]},{"id":"CHEBI:16196","l":"oleic acid","na":2,"nb":1,"a":[["TCDB%3A9.A.76","The Omega3 Fatty Acid Desaturase 3/Putative Transporter (FAD3) Family"],["proteintraitsmech%3ABIOLIP_OLA","OLA-binding site"]],"b":[["antibacterial/oleic-acid.html","oleic acid"]]},{"id":"CHEBI:16605","l":"allyl alcohol","na":2,"nb":1,"a":[["EC%3A1.1.1.54","allyl-alcohol dehydrogenase"],["RHEA%3A12168","allyl alcohol + NADP(+) = acrolein + NADPH + H(+)"]],"b":[["antibacterial/allyl-alcohol.html","allyl alcohol"]]},{"id":"CHEBI:16648","l":"","na":1,"nb":2,"a":[["MCSA%3A159","aryldialkylphosphatase"]],"b":[["antibacterial/dichlorvos.html","dichlorvos"],["antibacterial/naled.html","naled"]]},{"id":"CHEBI:16705","l":"6-aminopenicillanic acid","na":2,"nb":1,"a":[["MCSA%3A241","penicillin amidase (peptidase C59 family)"],["proteintraitsmech%3ABIOLIP_X1E","X1E-binding site"]],"b":[["unspecified/6-aminopenicillanic-acid.html","6-aminopenicillanic acid"]]},{"id":"CHEBI:16774","l":"(2-cis,6-trans)-farnesol","na":2,"nb":1,"a":[["EC%3A5.2.1.9","farnesol 2-isomerase"],["RHEA%3A13401","(2E,6E)-farnesol = (2Z,6E)-farnesol"]],"b":[["unspecified/2-cis-6-trans-farnesol.html","(2-cis,6-trans)-farnesol"]]},{"id":"CHEBI:167830","l":"isorhapontigenin","na":2,"nb":1,"a":[["EC%3A2.1.1.399","resveratrol 4'-O-methyltransferase"],["RHEA%3A82215","isorhapontigenin + S-adenosyl-L-methionine = 4'-O-methylisorhapontigenin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antiviral/isorhapontigenin.html","isorhapontigenin"]]},{"id":"CHEBI:17098","l":"veratraldehyde","na":2,"nb":1,"a":[["EC%3A1.11.1.14","lignin peroxidase"],["RHEA%3A48004","1-(3,4-dimethoxyphenyl)-2-(2-methoxyphenoxy)propane-1,3-diol + H2O2 = 3,4-dimethoxybenzaldehyde + guaiacol + glycolaldehyde + H2O"]],"b":[["antifungal/veratraldehyde.html","veratraldehyde"]]},{"id":"CHEBI:174376","l":"rhapontigenin","na":2,"nb":1,"a":[["EC%3A2.1.1.399","resveratrol 4'-O-methyltransferase"],["RHEA%3A82191","piceatannol + S-adenosyl-L-methionine = rhapontigenin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/rhapontigenin.html","rhapontigenin"]]},{"id":"CHEBI:17630","l":"kanamycin A","na":2,"nb":1,"a":[["MCSA%3A647","kanamycin nucleotidyltransferase"],["proteintraitsmech%3ABIOLIP_KAN","KAN-binding site"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"CHEBI:17695","l":"casbene","na":2,"nb":1,"a":[["EC%3A4.2.3.8","casbene synthase"],["RHEA%3A14901","(2E,6E,10E)-geranylgeranyl diphosphate = casbene + diphosphate"]],"b":[["antifungal/casbene.html","casbene"]]},{"id":"CHEBI:17909","l":"polysulfur","na":2,"nb":1,"a":[["EC%3A1.8.5.4","bacterial sulfide:quinone reductase"],["RHEA%3A30239","n a quinone + n hydrogen sulfide + n H(+) = polysulfur(n-2) + n a quinol"]],"b":[["antifungal/polysulfur.html","polysulfur"]]},{"id":"CHEBI:17939","l":"puromycin","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_PUY","PUY-binding site"]],"b":[["antibacterial/puromycin.html","puromycin"]]},{"id":"CHEBI:19129","l":"","na":1,"nb":2,"a":[["RHEA%3A86087","a steroid + reduced [NADPH--hemoprotein reductase] + O2 = a 11alpha-hydroxy steroid + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"],["antifungal/fr171456.html","FR171456"]]},{"id":"CHEBI:201384","l":"sartorypyrone D","na":2,"nb":1,"a":[["RHEA%3A80875","(S)-(2E,6E,10E)-epoxygeranylgeranyl-triacetate lactone = sartorypyrone D"],["RHEA%3A80883","sartorypyrone D + acetyl-CoA = sartorypyrone A + CoA"]],"b":[["antibacterial/sartorypyrone-d.html","sartorypyrone D"]]},{"id":"CHEBI:2469","l":"adefovir","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antiviral/adefovir.html","adefovir"]]},{"id":"CHEBI:26004","l":"","na":1,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antibacterial/eugenol.html","eugenol"],["antifungal/coniferyl-aldehyde.html","coniferyl aldehyde"]]},{"id":"CHEBI:26401","l":"purines","na":1,"nb":2,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antiviral/mercaptopurine.html","mercaptopurine"],["antiviral/valganciclovir.html","valganciclovir"]]},{"id":"CHEBI:26666","l":"","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.73","The Short Chain Fatty Acid Uptake (AtoE) Family"]],"b":[["antifungal/propionic-acid.html","propionic acid"]]},{"id":"CHEBI:26789","l":"","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_OI9","OI9-binding site"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"],["unspecified/streptothricin-d.html","streptothricin D"]]},{"id":"CHEBI:27446","l":"phenoxymethylpenicillin","na":2,"nb":1,"a":[["MCSA%3A241","penicillin amidase (peptidase C59 family)"],["proteintraitsmech%3ABIOLIP_PNV","PNV-binding site"]],"b":[["antibacterial/phenoxymethylpenicillin.html","phenoxymethylpenicillin"]]},{"id":"CHEBI:27641","l":"cycloheximide","na":2,"nb":1,"a":[["RHEA%3A61936","cycloheximide(in) + ATP + H2O = cycloheximide(out) + ADP + phosphate + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/cycloheximide.html","cycloheximide"]]},{"id":"CHEBI:27902","l":"tetracycline","na":2,"nb":1,"a":[["ARO%3A3000186","tet(M)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"CHEBI:28","l":"(R)-linalool","na":2,"nb":1,"a":[["EC%3A4.2.3.26","R-linalool synthase"],["RHEA%3A15809","(2E)-geranyl diphosphate + H2O = (R)-linalool + diphosphate"]],"b":[["unspecified/r-linalool.html","(R)-linalool"]]},{"id":"CHEBI:28283","l":"capsidiol","na":2,"nb":1,"a":[["EC%3A1.14.14.149","5-epiaristolochene 1,3-dihydroxylase"],["RHEA%3A28226","(+)-5-epi-aristolochene + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = capsidiol + 2 oxidized [NADPH--hemoprotein reductase] + 2 H2O + 2 H(+)"]],"b":[["antifungal/capsidiol.html","capsidiol"]]},{"id":"CHEBI:29007","l":"ceftriaxone","na":2,"nb":1,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"]],"b":[["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"CHEBI:2955","l":"azithromycin","na":2,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["proteintraitsmech%3ABIOLIP_ZIT","ZIT-binding site"]],"b":[["antibacterial/azithromycin.html","azithromycin"]]},{"id":"CHEBI:29673","l":"rifamycin SV","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]],"b":[["antimycobacterial/rifamycin-sv.html","rifamycin SV"]]},{"id":"CHEBI:29702","l":"undecylprodigiosin","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.B.102","The YedE/YeeE (YedE/YeeE) Family"]],"b":[["antibacterial/undecylprodigiosin.html","undecylprodigiosin"]]},{"id":"CHEBI:30746","l":"benzoic acid","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_BEZ","BEZ-binding site"]],"b":[["biocide/benzoic-acid.html","benzoic acid"],["biocide/carboxy-ptio.html","carboxy-PTIO"]]},{"id":"CHEBI:30751","l":"formic acid","na":2,"nb":1,"a":[["MCSA%3A38","GTP cyclohydrolase I"],["proteintraitsmech%3ABIOLIP_FMT","FMT-binding site"]],"b":[["antibacterial/formic-acid.html","formic acid"]]},{"id":"CHEBI:31000","l":"docosan-1-ol","na":2,"nb":1,"a":[["RHEA%3A81783","docosan-1-ol + (9Z)-octadecenoyl-CoA = 1-O-docosyl (9Z)-octadecenoate + CoA"],["RHEA%3A81731","docosanoyl-CoA + 2 NADPH + 2 H(+) = docosan-1-ol + 2 NADP(+) + CoA"]],"b":[["antiviral/docosan-1-ol.html","docosan-1-ol"]]},{"id":"CHEBI:31466","l":"dequalinium chloride","na":2,"nb":1,"a":[["TCDB%3A2.A.117","The Chlorhexadine Exporter (CHX) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antifungal/dequalinium-chloride.html","dequalinium chloride"]]},{"id":"CHEBI:32023","l":"plaunotol","na":2,"nb":1,"a":[["EC%3A1.14.14.146","geranylgeraniol 18-hydroxylase"],["RHEA%3A26233","(2E,6E,10E)-geranylgeraniol + reduced [NADPH--hemoprotein reductase] + O2 = plaunotol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["antibacterial/plaunotol.html","plaunotol"]]},{"id":"CHEBI:32199","l":"tetracenomycin B2","na":2,"nb":1,"a":[["EC%3A1.14.13.200","tetracenomycin A2 monooxygenase-diooxygenase"],["RHEA%3A76467","tetracenomycin B2 + 2 NADPH + 2 O2 + 2 H(+) = 8-demethyltetracenomycin C + 2 NADP(+) + H2O"]],"b":[["unspecified/tetracenomycin-b2.html","tetracenomycin B2"]]},{"id":"CHEBI:32215","l":"thiamphenicol","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_TH8","TH8-binding site"]],"b":[["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"CHEBI:3393","l":"carbenicillin","na":2,"nb":1,"a":[["TCDB%3A1.B.25","The Outer Membrane Porin (Opr) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/carbenicillin.html","carbenicillin"]]},{"id":"CHEBI:3440","l":"carvacrol","na":2,"nb":1,"a":[["RHEA%3A67412","alpha-terpinene + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = carvacrol + 2 oxidized [NADPH--hemoprotein reductase] + 3 H2O + 2 H(+)"],["RHEA%3A67404","gamma-terpinene + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = carvacrol + 2 oxidized [NADPH--hemoprotein reductase] + 3 H2O + 2 H(+)"]],"b":[["antifungal/carvacrol.html","carvacrol"]]},{"id":"CHEBI:35267","l":"","na":2,"nb":1,"a":[["EC%3A7.6.2.9","ABC-type quaternary amine transporter"],["RHEA%3A11036","a quaternary ammonium(out) + ATP + H2O = a quaternary ammonium(in) + ADP + phosphate + H(+)"]],"b":[["antifungal/rezafungin.html","rezafungin"]]},{"id":"CHEBI:35274","l":"","na":2,"nb":1,"a":[["TCDB%3A1.A.11","The Ammonium Transporter Channel (Amt) Family"],["TCDB%3A1.B.6","The OmpA-OmpF Porin (OOP) Family"]],"b":[["antifungal/validamycin-a-1.html","validamycin A(1+)"]]},{"id":"CHEBI:35986","l":"nonan-1-ol","na":2,"nb":1,"a":[["RHEA%3A44112","nonan-1-ol + hexadecanoyl-CoA = nonyl hexadecanoate + CoA"],["RHEA%3A58380","nonan-1-ol + NADP(+) = nonanal + NADPH + H(+)"]],"b":[["antifungal/nonan-1-ol.html","nonan-1-ol"]]},{"id":"CHEBI:3614","l":"chlorhexidine","na":2,"nb":1,"a":[["TCDB%3A2.A.117","The Chlorhexadine Exporter (CHX) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/chlorhexidine.html","chlorhexidine"]]},{"id":"CHEBI:368","l":"(S)-(−)-citronellal","na":2,"nb":1,"a":[["RHEA%3A60740","(S)-(-)-citronellal + NADP(+) + H2O = (S)-(-)-citronellate + NADPH + 2 H(+)"],["RHEA%3A60676","(S)-(-)-citronellol + NAD(+) = (S)-(-)-citronellal + NADH + H(+)"]],"b":[["antifungal/s-citronellal.html","(S)-(−)-citronellal"]]},{"id":"CHEBI:3732","l":"clarithromycin","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"CHEBI:37424","l":"","na":2,"nb":1,"a":[["EC%3A2.4.1.173","sterol 3beta-glucosyltransferase"],["RHEA%3A22724","a sterol + UDP-alpha-D-glucose = a sterol 3-beta-D-glucoside + UDP + H(+)"]],"b":[["antifungal/solasodine-3-%CE%B2-d-glucoside.html","solasodine 3-β-D-glucoside"]]},{"id":"CHEBI:3764","l":"clotrimazole","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antifungal/clotrimazole.html","clotrimazole"]]},{"id":"CHEBI:42452","l":"formycin A","na":2,"nb":1,"a":[["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"],["proteintraitsmech%3ABIOLIP_FMC","FMC-binding site"]],"b":[["unspecified/formycin-a.html","formycin A"]]},{"id":"CHEBI:42530","l":"peracetic acid","na":2,"nb":1,"a":[["RHEA%3A68392","peracetic acid + H2O = acetate + H2O2 + H(+)"],["proteintraitsmech%3ABIOLIP_F50","F50-binding site"]],"b":[["biocide/peracetic-acid.html","peracetic acid"]]},{"id":"CHEBI:44107","l":"malachite green cation","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_MGR","MGR-binding site"]],"b":[["antibacterial/malachite-green-cation.html","malachite green cation"]]},{"id":"CHEBI:443725","l":"fosmidomycin","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_FOM","FOM-binding site"]],"b":[["antibacterial/fosmidomycin.html","fosmidomycin"]]},{"id":"CHEBI:45081","l":"pentamidine","na":2,"nb":1,"a":[["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"],["TCDB%3A1.A.8","The Major Intrinsic Protein (MIP) Family"]],"b":[["antifungal/pentamidine.html","pentamidine"]]},{"id":"CHEBI:45285","l":"pyrazinecarboxamide","na":1,"nb":2,"a":[["RHEA%3A35063","pyrazinamide + H2O = pyrazine-2-carboxylate + NH4(+)"]],"b":[["antimycobacterial/n-butyl-5-4-hydroxyphenyl-6-oxo-1-6-dihydropyrazine-2-carboxamide.html","N-butyl-5-(4-hydroxyphenyl)-6-oxo-1,6-dihydropyrazine-2-carboxamide"],["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"CHEBI:45373","l":"sulfanilamide","na":2,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["proteintraitsmech%3ABIOLIP_SAN","SAN-binding site"]],"b":[["antibacterial/sulfanilamide.html","sulfanilamide"]]},{"id":"CHEBI:46202","l":"undecanal","na":2,"nb":1,"a":[["RHEA%3A68484","(2R)-2-hydroperoxydodecanoate + H(+) = undecanal + CO2 + H2O"],["RHEA%3A58408","undecan-1-ol + NADP(+) = undecanal + NADPH + H(+)"]],"b":[["antimycobacterial/undecanal.html","undecanal"]]},{"id":"CHEBI:48080","l":"brefeldin A","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["MCSA%3A453","Brefeldin A esterase"]],"b":[["antibacterial/brefeldin-a.html","brefeldin A"]]},{"id":"CHEBI:4877","l":"ethambutol","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_95E","95E-binding site"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"CHEBI:48981","l":"quinolin-8-ol","na":2,"nb":1,"a":[["RHEA%3A25924","quinolin-8-ol + A + H2O = 8-hydroxyquinolin-2(1H)-one + AH2"],["RHEA%3A72659","quinolin-8-ol + NADPH + O2 = 8-hydroxyquinoline N-oxide + NADP(+) + H2O"]],"b":[["antibacterial/quinolin-8-ol.html","quinolin-8-ol"]]},{"id":"CHEBI:50209","l":"sophoraflavanone G","na":2,"nb":1,"a":[["EC%3A2.5.1.71","leachianone-G 2'-dimethylallyltransferase"],["RHEA%3A10852","leachianone G + dimethylallyl diphosphate = sophoraflavanone G + diphosphate"]],"b":[["antiprotozoal/sophoraflavanone-g.html","sophoraflavanone G"]]},{"id":"CHEBI:50471","l":"","na":2,"nb":1,"a":[["EC%3A2.3.1.5","arylamine N-acetyltransferase"],["RHEA%3A16613","an arylamine + acetyl-CoA = an N-acetylarylamine + CoA"]],"b":[["antifungal/ferrostatin-1.html","ferrostatin-1"]]},{"id":"CHEBI:52086","l":"glyceollin III","na":2,"nb":1,"a":[["EC%3A1.14.14.135","glyceollin synthase"],["RHEA%3A26051","(6aS,11aS)-2-dimethylallyl-3,6a,9-trihydroxypterocarpan + reduced [NADPH--hemoprotein reductase] + O2 = glyceollin III + oxidized [NADPH--hemoprotein reductase] + 2 H2O + H(+)"]],"b":[["antifungal/glyceollin-iii.html","glyceollin III"]]},{"id":"CHEBI:52221","l":"","na":1,"nb":2,"a":[["RHEA%3A69264","a (Z)-N-(sulfonatooxy)alkanimidothioate = an isothiocyanate + sulfate"]],"b":[["antibacterial/benzyl-isothiocyanate.html","benzyl isothiocyanate"],["unspecified/allyl-isothiocyanate.html","allyl isothiocyanate"]]},{"id":"CHEBI:55517","l":"","na":1,"nb":2,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/trichothecin.html","trichothecin"],["unspecified/verrucarin-a.html","verrucarin A"]]},{"id":"CHEBI:57289","l":"blasticidin S(1+)","na":2,"nb":1,"a":[["EC%3A3.5.4.23","blasticidin-S deaminase"],["RHEA%3A10148","blasticidin S + H2O + H(+) = deaminohydroxyblasticidin S + NH4(+)"]],"b":[["antifungal/blasticidin-s-1.html","blasticidin S(1+)"]]},{"id":"CHEBI:61699","l":"(−)-α-gurjunene","na":2,"nb":1,"a":[["EC%3A4.2.3.72","alpha-gurjunene synthase"],["RHEA%3A29507","(2E,6E)-farnesyl diphosphate = (-)-alpha-gurjunene + diphosphate"]],"b":[["antibacterial/%CE%B1-gurjunene.html","(−)-α-gurjunene"]]},{"id":"CHEBI:62247","l":"(1R,2S)-epoxypropylphosphonate(1−)","na":2,"nb":1,"a":[["EC%3A1.11.1.23","(S)-2-hydroxypropylphosphonic acid epoxidase"],["RHEA%3A10808","(S)-2-hydroxypropylphosphonate + H2O2 = (1R,2S)-epoxypropylphosphonate + 2 H2O"]],"b":[["unspecified/1r-2s-epoxypropylphosphonate-1.html","(1R,2S)-epoxypropylphosphonate(1−)"]]},{"id":"CHEBI:64090","l":"tert-butyl hydroperoxide","na":2,"nb":1,"a":[["RHEA%3A69412","tert-butyl hydroperoxide + 2 glutathione = tert-butanol + glutathione disulfide + H2O"],["RHEA%3A63840","tert-butyl hydroperoxide + [thioredoxin]-dithiol = tert-butanol + [thioredoxin]-disulfide + H2O"]],"b":[["antibacterial/tert-butyl-hydroperoxide.html","tert-butyl hydroperoxide"]]},{"id":"CHEBI:67153","l":"(+)-larreatricin","na":2,"nb":1,"a":[["EC%3A1.14.99.47","(+)-larreatricin hydroxylase"],["RHEA%3A34259","(+)-larreatricin + AH2 + O2 = (+)-3'-hydroxylarreatricin + A + H2O"]],"b":[["antiviral/larreatricin.html","(+)-larreatricin"]]},{"id":"CHEBI:7518","l":"cis-trans-nepetalactone","na":2,"nb":1,"a":[["EC%3A1.1.1.419","nepetalactol dehydrogenase"],["RHEA%3A61428","cis-trans-nepetalactol + NAD(+) = cis-trans-nepetalactone + NADH + H(+)"]],"b":[["antibacterial/cis-trans-nepetalactone.html","cis-trans-nepetalactone"]]},{"id":"CHEBI:75561","l":"1-linoleoyl-sn-glycerol","na":2,"nb":1,"a":[["RHEA%3A41115","1-(9Z,12Z)-octadecadienoyl-sn-glycero-3-phosphocholine + H2O = 1-(9Z,12Z-octadecadienoyl)-sn-glycerol + phosphocholine + H(+)"],["RHEA%3A40603","1-(9Z,12Z-octadecadienoyl)-sn-glycerol + H2O = (9Z,12Z)-octadecadienoate + glycerol + H(+)"]],"b":[["antiviral/1-linoleoyl-sn-glycerol.html","1-linoleoyl-sn-glycerol"]]},{"id":"CHEBI:75616","l":"","na":2,"nb":1,"a":[["EC%3A2.3.1.60","gentamicin 3-N-acetyltransferase"],["RHEA%3A14441","gentamicin C + acetyl-CoA = N(3)-acetylgentamycin C + CoA + H(+)"]],"b":[["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"CHEBI:77152","l":"ginsenoside Rb2","na":2,"nb":1,"a":[["EC%3A3.2.1.191","ginsenosidase type III"],["RHEA%3A40739","(20S)-ginsenoside Rb2 + 2 H2O = (20S)-ginsenoside C-Y + 2 D-glucose"]],"b":[["antiviral/ginsenoside-rb2.html","ginsenoside Rb2"]]},{"id":"CHEBI:7731","l":"","na":2,"nb":1,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"CHEBI:77772","l":"ilicicolin H","na":2,"nb":1,"a":[["RHEA%3A64568","3-[(2E,4E,8S,10E,12Z)-4,8-dimethyltetradeca-2,4,10,12-tetraenoyl]-4-hydroxy-5-(4-hydroxyphenyl)-1,2-dihydropyridin-2-one = ilicicolin H"],["RHEA%3A64564","8-epi-ilicicolin H = ilicicolin H"]],"b":[["unspecified/ilicicolin-h.html","ilicicolin H"]]},{"id":"CHEBI:77885","l":"nocardicin E(2−)","na":2,"nb":1,"a":[["EC%3A2.5.1.38","isonocardicin synthase"],["RHEA%3A19845","nocardicin E + S-adenosyl-L-methionine = isonocardicin A + S-methyl-5'-thioadenosine + H(+)"]],"b":[["unspecified/nocardicin-e-2.html","nocardicin E(2−)"]]},{"id":"CHEBI:77985","l":"aclacinomycin Y zwitterion","na":2,"nb":1,"a":[["EC%3A1.3.3.14","aclacinomycin-A oxidase"],["RHEA%3A37791","aclacinomycin A + O2 = aclacinomycin Y + H2O2"]],"b":[["unspecified/aclacinomycin-y-zwitterion.html","aclacinomycin Y zwitterion"]]},{"id":"CHEBI:7809","l":"oxacillin","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/oxacillin.html","oxacillin"]]},{"id":"CHEBI:78327","l":"pseudobaptigenin(1−)","na":2,"nb":1,"a":[["EC%3A1.14.19.63","pseudobaptigenin synthase"],["RHEA%3A28238","calycosin + reduced [NADPH--hemoprotein reductase] + O2 = pseudobaptigenin + oxidized [NADPH--hemoprotein reductase] + 2 H2O + H(+)"]],"b":[["antiprotozoal/pseudobaptigenin-1.html","pseudobaptigenin(1−)"]]},{"id":"CHEBI:78884","l":"4-terpineol","na":2,"nb":1,"a":[["RHEA%3A60028","(2E)-geranyl diphosphate + H2O = 4-terpineol + diphosphate"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/4-terpineol.html","4-terpineol"]]},{"id":"CHEBI:80024","l":"aureothin","na":2,"nb":1,"a":[["EC%3A1.14.15.37","luteothin monooxygenase"],["RHEA%3A58824","luteothin + 4 reduced [2Fe-2S]-[ferredoxin] + 2 O2 + 4 H(+) = aureothin + 4 oxidized [2Fe-2S]-[ferredoxin] + 3 H2O"]],"b":[["antibacterial/aureothin.html","aureothin"]]},{"id":"CHEBI:81485","l":"osthenol","na":2,"nb":1,"a":[["EC%3A2.5.1.139","umbelliferone 6-dimethylallyltransferase"],["RHEA%3A51872","umbelliferone + dimethylallyl diphosphate = osthenol + diphosphate"]],"b":[["antifungal/osthenol.html","osthenol"]]},{"id":"CHEBI:82751","l":"cholesteryl arachidonate","na":2,"nb":1,"a":[["RHEA%3A53448","1-hexadecanoyl-2-(5Z,8Z,11Z,14Z-eicosatetraenoyl)-sn-glycero-3-phosphocholine + cholesterol = cholesteryl (5Z,8Z,11Z,14Z)-eicosatetraenoate + 1-hexadecanoyl-sn-glycero-3-phosphocholine"],["RHEA%3A42816","(5Z,8Z,11Z,14Z)-eicosatetraenoyl-CoA + cholesterol = cholesteryl (5Z,8Z,11Z,14Z)-eicosatetraenoate + CoA"]],"b":[["antibacterial/cholesteryl-arachidonate.html","cholesteryl arachidonate"]]},{"id":"CHEBI:8309","l":"polymyxin B1","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antibacterial/polymyxin-b1.html","polymyxin B1"]]},{"id":"CHEBI:8452","l":"3,6-diaminoacridine","na":2,"nb":1,"a":[["TCDB%3A2.A.117","The Chlorhexadine Exporter (CHX) Family"],["proteintraitsmech%3ABIOLIP_PRL","PRL-binding site"]],"b":[["antibacterial/3-6-diaminoacridine.html","3,6-diaminoacridine"]]},{"id":"CHEBI:86012","l":"oxetanocin A","na":2,"nb":1,"a":[["EC%3A3.1.3.112","4'-phosphooxetanocin A phosphatase"],["RHEA%3A81367","4'-phosphooxetanocin A + H2O = oxetanocin A + phosphate"]],"b":[["antibacterial/oxetanocin-a.html","oxetanocin A"]]},{"id":"CHEBI:87123","l":"tulipalin B","na":2,"nb":1,"a":[["EC%3A4.2.99.23","tuliposide B-converting enzyme"],["RHEA%3A38655","6-tuliposide B = tulipalin B + D-glucose"]],"b":[["antibacterial/tulipalin-b.html","tulipalin B"]]},{"id":"CHEBI:87124","l":"6-tuliposide B","na":2,"nb":1,"a":[["EC%3A4.2.99.23","tuliposide B-converting enzyme"],["RHEA%3A38655","6-tuliposide B = tulipalin B + D-glucose"]],"b":[["antibacterial/6-tuliposide-b.html","6-tuliposide B"]]},{"id":"CHEBI:90868","l":"validamycin B","na":2,"nb":1,"a":[["EC%3A1.14.11.52","validamycin A dioxygenase"],["RHEA%3A48752","validamycin A + 2-oxoglutarate + O2 = validamycin B + succinate + CO2 + H(+)"]],"b":[["antifungal/validamycin-b.html","validamycin B"]]},{"id":"CHEBI:9332","l":"sulfamethoxazole","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"CHEBI:9997","l":"pristinamycin IIA","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_VIR","VIR-binding site"]],"b":[["antibacterial/pristinamycin-iia.html","pristinamycin IIA"]]},{"id":"NCBITaxon:1159556","l":"Ustilaginoidea virens","na":2,"nb":1,"a":[["Pfam%3APF06966","Protein of unknown function (DUF1295)"],["TED%3AAF-A0A1B5L5W2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1B5L5W2-F1-model_v4_TED03"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"]]},{"id":"NCBITaxon:1654360","l":"Photobacterium galatheae","na":2,"nb":1,"a":[["TED%3AAF-A0A066RSN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A066RSN6-F1-model_v4_TED01"],["TED%3AAF-A0A066RLQ8-F1-model_v4_TED01","TED novel fold AF-A0A066RLQ8-F1-model_v4_TED01"]],"b":[["antibacterial/holomycin.html","holomycin"]]},{"id":"NCBITaxon:1907","l":"Streptomyces glaucescens","na":2,"nb":1,"a":[["Pfam%3APF04673","Polyketide synthesis cyclase"],["Pfam%3APF04655","Aminoglycoside/hydroxyurea antibiotic resistance kinase"]],"b":[["antibacterial/tetracenomycin-c.html","tetracenomycin C"]]},{"id":"NCBITaxon:5074","l":"Penicillium brevicompactum","na":2,"nb":1,"a":[["Pfam%3APF09227","Bubble protein"],["Pfam%3APF18558","Methyltransferase, Helix-turn-helix domain"]],"b":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]]},{"id":"NCBITaxon:52","l":"Chondromyces crocatus","na":2,"nb":1,"a":[["TED%3AAF-A0A0K1ER44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0K1ER44-F1-model_v4_TED01"],["TED%3AAF-A0A0K1E854-F1-model_v4_TED01","TED novel fold AF-A0A0K1E854-F1-model_v4_TED01"]],"b":[["unspecified/chondrochloren-a.html","chondrochloren A"]]},{"id":"NCBITaxon:536","l":"Chromobacterium violaceum","na":2,"nb":1,"a":[["TED%3AAF-A0A381EUD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A381EUD6-F1-model_v4_TED01"],["TED%3AAF-A0A447THJ9-F1-model_v4_TED01","TED novel fold AF-A0A447THJ9-F1-model_v4_TED01"]],"b":[["unspecified/romidepsin.html","romidepsin"]]},{"id":"NCBITaxon:5478","l":"Nakaseomyces glabratus","na":2,"nb":1,"a":[["TED%3AAF-A0A0W0D8W7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0W0D8W7-F1-model_v4_TED02"],["TED%3AAF-A0A0W0D4K9-F1-model_v4_TED02","TED novel fold AF-A0A0W0D4K9-F1-model_v4_TED02"]],"b":[["antifungal/fluconazole.html","fluconazole"]]},{"id":"NCBITaxon:5661","l":"Leishmania donovani","na":2,"nb":1,"a":[["Pfam%3APF03037","Kinetoplastid membrane protein 11"],["Pfam%3APF03130","PBS lyase HEAT-like repeat"]],"b":[["antiprotozoal/dihydrobetulinic-acid.html","dihydrobetulinic acid"]]},{"id":"NCBITaxon:58346","l":"Streptomyces platensis","na":1,"nb":2,"a":[["PROSITE%3APS00999","Streptomyces subtilisin-type inhibitors signature"]],"b":[["antibacterial/platencin.html","platencin"],["antibacterial/platensimycin.html","platensimycin"]]},{"id":"UniProt:P02557","l":"","na":2,"nb":1,"a":[["ComplexPortal%3ACPX-1424","Tubulin alpha-beta heterodimeric complex, TUB1 variant"],["ComplexPortal%3ACPX-1425","Tubulin alpha-beta heterodimeric complex, TUB3 variant"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"UniProt:P0C6U8","l":"","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_TTT","TTT-binding site"]],"b":[["antibacterial/hexachlorophene.html","hexachlorophene"],["antifungal/bithionol.html","bithionol"]]},{"id":"ARO:0000042","l":"","na":1,"nb":1,"a":[["ARO%3A3000026","mepA"]],"b":[["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:0000062","l":"ceftriaxone","na":1,"nb":1,"a":[["ARO%3A3004835","Neisseria gonorrhoeae pilQ gene conferring resistance to beta-lactam"]],"b":[["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3000149","l":"FosA","na":1,"nb":1,"a":[["ARO%3A3000149","FosA"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3000166","l":"tet(B)","na":1,"nb":1,"a":[["ARO%3A3000166","tet(B)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000167","l":"tet(C)","na":1,"nb":1,"a":[["ARO%3A3000167","tet(C)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000168","l":"tet(D)","na":1,"nb":1,"a":[["ARO%3A3000168","tet(D)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000169","l":"rifampin","na":1,"nb":1,"a":[["ARO%3A3004960","Mycobacterium tuberculosis ponA1 mutations conferring resistance to rifabutin"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3000172","l":"FosB","na":1,"nb":1,"a":[["ARO%3A3000172","FosB"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3000173","l":"tet(E)","na":1,"nb":1,"a":[["ARO%3A3000173","tet(E)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000174","l":"tet(G)","na":1,"nb":1,"a":[["ARO%3A3000174","tet(G)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000175","l":"tet(H)","na":1,"nb":1,"a":[["ARO%3A3000175","tet(H)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000177","l":"tet(J)","na":1,"nb":1,"a":[["ARO%3A3000177","tet(J)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000178","l":"tet(K)","na":1,"nb":1,"a":[["ARO%3A3000178","tet(K)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000179","l":"tet(L)","na":1,"nb":1,"a":[["ARO%3A3000179","tet(L)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000180","l":"tetA(P)","na":1,"nb":1,"a":[["ARO%3A3000180","tetA(P)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000181","l":"tet(V)","na":1,"nb":1,"a":[["ARO%3A3000181","tet(V)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000182","l":"tet(Y)","na":1,"nb":1,"a":[["ARO%3A3000182","tet(Y)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000183","l":"tet(Z)","na":1,"nb":1,"a":[["ARO%3A3000183","tet(Z)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000198","l":"FosX","na":1,"nb":1,"a":[["ARO%3A3000198","FosX"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3000216","l":"acrB","na":1,"nb":1,"a":[["ARO%3A3000216","acrB"]],"b":[["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3000238","l":"glycopeptide resistance gene cluster VanB","na":1,"nb":1,"a":[["ARO%3A3000238","glycopeptide resistance gene cluster VanB"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000246","l":"glycopeptide resistance gene cluster VanC","na":1,"nb":1,"a":[["ARO%3A3000246","glycopeptide resistance gene cluster VanC"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000255","l":"glycopeptide resistance gene cluster VanF","na":1,"nb":1,"a":[["ARO%3A3000255","glycopeptide resistance gene cluster VanF"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000257","l":"glycopeptide resistance gene cluster VanG","na":1,"nb":1,"a":[["ARO%3A3000257","glycopeptide resistance gene cluster VanG"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000259","l":"glycopeptide resistance gene cluster VanE","na":1,"nb":1,"a":[["ARO%3A3000259","glycopeptide resistance gene cluster VanE"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000260","l":"glycopeptide resistance gene cluster VanL","na":1,"nb":1,"a":[["ARO%3A3000260","glycopeptide resistance gene cluster VanL"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000309","l":"emrD","na":1,"nb":1,"a":[["ARO%3A3000309","emrD"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3000343","l":"tap","na":1,"nb":1,"a":[["ARO%3A3000343","tap"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000380","l":"FosC","na":1,"nb":1,"a":[["ARO%3A3000380","FosC"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3000423","l":"FomA","na":1,"nb":1,"a":[["ARO%3A3000423","FomA"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3000449","l":"FomB","na":1,"nb":1,"a":[["ARO%3A3000449","FomB"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3000464","l":"Neisseria gonorrhoeae porin PIB (por)","na":1,"nb":1,"a":[["ARO%3A3000464","Neisseria gonorrhoeae porin PIB (por)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000476","l":"tet(31)","na":1,"nb":1,"a":[["ARO%3A3000476","tet(31)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000478","l":"tet(33)","na":1,"nb":1,"a":[["ARO%3A3000478","tet(33)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000481","l":"tet(35)","na":1,"nb":1,"a":[["ARO%3A3000481","tet(35)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000510","l":"Staphylococcus aureus mupB conferring resistance to mupirocin","na":1,"nb":1,"a":[["ARO%3A3000510","Staphylococcus aureus mupB conferring resistance to mupirocin"]],"b":[["antibacterial/mupirocin.html","mupirocin"]]},{"id":"ARO:3000521","l":"Staphylococcus aureus mupA conferring resistance to mupirocin","na":1,"nb":1,"a":[["ARO%3A3000521","Staphylococcus aureus mupA conferring resistance to mupirocin"]],"b":[["antibacterial/mupirocin.html","mupirocin"]]},{"id":"ARO:3000561","l":"tet(30)","na":1,"nb":1,"a":[["ARO%3A3000561","tet(30)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000565","l":"tet(38)","na":1,"nb":1,"a":[["ARO%3A3000565","tet(38)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000566","l":"tet(39)","na":1,"nb":1,"a":[["ARO%3A3000566","tet(39)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000567","l":"tet(40)","na":1,"nb":1,"a":[["ARO%3A3000567","tet(40)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000569","l":"tet(41)","na":1,"nb":1,"a":[["ARO%3A3000569","tet(41)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000572","l":"tet(42)","na":1,"nb":1,"a":[["ARO%3A3000572","tet(42)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000573","l":"tet(43)","na":1,"nb":1,"a":[["ARO%3A3000573","tet(43)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000614","l":"mef(E)","na":1,"nb":1,"a":[["ARO%3A3000614","mef(E)"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000866","l":"oleI","na":1,"nb":1,"a":[["ARO%3A3000866","oleI"]],"b":[["antibacterial/oleandomycin.html","oleandomycin"]]},{"id":"ARO:3000874","l":"TEM-2","na":1,"nb":1,"a":[["ARO%3A3000874","TEM-2"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000875","l":"TEM-3","na":1,"nb":1,"a":[["ARO%3A3000875","TEM-3"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000876","l":"TEM-4","na":1,"nb":1,"a":[["ARO%3A3000876","TEM-4"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000877","l":"TEM-5","na":1,"nb":1,"a":[["ARO%3A3000877","TEM-5"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000878","l":"TEM-6","na":1,"nb":1,"a":[["ARO%3A3000878","TEM-6"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000879","l":"TEM-7","na":1,"nb":1,"a":[["ARO%3A3000879","TEM-7"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000880","l":"TEM-8","na":1,"nb":1,"a":[["ARO%3A3000880","TEM-8"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000881","l":"TEM-9","na":1,"nb":1,"a":[["ARO%3A3000881","TEM-9"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000882","l":"TEM-10","na":1,"nb":1,"a":[["ARO%3A3000882","TEM-10"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000883","l":"TEM-11","na":1,"nb":1,"a":[["ARO%3A3000883","TEM-11"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000884","l":"TEM-12","na":1,"nb":1,"a":[["ARO%3A3000884","TEM-12"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000886","l":"TEM-15","na":1,"nb":1,"a":[["ARO%3A3000886","TEM-15"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000887","l":"TEM-16","na":1,"nb":1,"a":[["ARO%3A3000887","TEM-16"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000888","l":"TEM-17","na":1,"nb":1,"a":[["ARO%3A3000888","TEM-17"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000890","l":"TEM-19","na":1,"nb":1,"a":[["ARO%3A3000890","TEM-19"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000891","l":"TEM-20","na":1,"nb":1,"a":[["ARO%3A3000891","TEM-20"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000892","l":"TEM-21","na":1,"nb":1,"a":[["ARO%3A3000892","TEM-21"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000893","l":"TEM-22","na":1,"nb":1,"a":[["ARO%3A3000893","TEM-22"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000894","l":"TEM-24","na":1,"nb":1,"a":[["ARO%3A3000894","TEM-24"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000896","l":"TEM-26","na":1,"nb":1,"a":[["ARO%3A3000896","TEM-26"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000898","l":"TEM-28","na":1,"nb":1,"a":[["ARO%3A3000898","TEM-28"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000899","l":"TEM-29","na":1,"nb":1,"a":[["ARO%3A3000899","TEM-29"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000901","l":"TEM-31","na":1,"nb":1,"a":[["ARO%3A3000901","TEM-31"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000902","l":"TEM-32","na":1,"nb":1,"a":[["ARO%3A3000902","TEM-32"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000903","l":"TEM-33","na":1,"nb":1,"a":[["ARO%3A3000903","TEM-33"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000904","l":"TEM-34","na":1,"nb":1,"a":[["ARO%3A3000904","TEM-34"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000905","l":"TEM-35","na":1,"nb":1,"a":[["ARO%3A3000905","TEM-35"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000906","l":"TEM-36","na":1,"nb":1,"a":[["ARO%3A3000906","TEM-36"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000907","l":"TEM-37","na":1,"nb":1,"a":[["ARO%3A3000907","TEM-37"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000909","l":"TEM-39","na":1,"nb":1,"a":[["ARO%3A3000909","TEM-39"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000910","l":"TEM-40","na":1,"nb":1,"a":[["ARO%3A3000910","TEM-40"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000911","l":"TEM-42","na":1,"nb":1,"a":[["ARO%3A3000911","TEM-42"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000912","l":"TEM-43","na":1,"nb":1,"a":[["ARO%3A3000912","TEM-43"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000914","l":"TEM-45","na":1,"nb":1,"a":[["ARO%3A3000914","TEM-45"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000916","l":"TEM-47","na":1,"nb":1,"a":[["ARO%3A3000916","TEM-47"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000917","l":"TEM-48","na":1,"nb":1,"a":[["ARO%3A3000917","TEM-48"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000918","l":"TEM-49","na":1,"nb":1,"a":[["ARO%3A3000918","TEM-49"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000921","l":"TEM-52","na":1,"nb":1,"a":[["ARO%3A3000921","TEM-52"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000922","l":"TEM-53","na":1,"nb":1,"a":[["ARO%3A3000922","TEM-53"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000923","l":"TEM-54","na":1,"nb":1,"a":[["ARO%3A3000923","TEM-54"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000924","l":"TEM-55","na":1,"nb":1,"a":[["ARO%3A3000924","TEM-55"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000926","l":"TEM-57","na":1,"nb":1,"a":[["ARO%3A3000926","TEM-57"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000927","l":"TEM-58","na":1,"nb":1,"a":[["ARO%3A3000927","TEM-58"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000928","l":"TEM-59","na":1,"nb":1,"a":[["ARO%3A3000928","TEM-59"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000929","l":"TEM-60","na":1,"nb":1,"a":[["ARO%3A3000929","TEM-60"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000931","l":"TEM-63","na":1,"nb":1,"a":[["ARO%3A3000931","TEM-63"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000934","l":"TEM-67","na":1,"nb":1,"a":[["ARO%3A3000934","TEM-67"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000935","l":"TEM-68","na":1,"nb":1,"a":[["ARO%3A3000935","TEM-68"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000936","l":"TEM-70","na":1,"nb":1,"a":[["ARO%3A3000936","TEM-70"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000937","l":"TEM-71","na":1,"nb":1,"a":[["ARO%3A3000937","TEM-71"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000938","l":"TEM-72","na":1,"nb":1,"a":[["ARO%3A3000938","TEM-72"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000939","l":"TEM-73","na":1,"nb":1,"a":[["ARO%3A3000939","TEM-73"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000941","l":"TEM-75","na":1,"nb":1,"a":[["ARO%3A3000941","TEM-75"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000942","l":"TEM-76","na":1,"nb":1,"a":[["ARO%3A3000942","TEM-76"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000944","l":"TEM-78","na":1,"nb":1,"a":[["ARO%3A3000944","TEM-78"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000946","l":"TEM-79","na":1,"nb":1,"a":[["ARO%3A3000946","TEM-79"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000947","l":"TEM-80","na":1,"nb":1,"a":[["ARO%3A3000947","TEM-80"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000948","l":"TEM-81","na":1,"nb":1,"a":[["ARO%3A3000948","TEM-81"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000949","l":"TEM-82","na":1,"nb":1,"a":[["ARO%3A3000949","TEM-82"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000950","l":"TEM-83","na":1,"nb":1,"a":[["ARO%3A3000950","TEM-83"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000951","l":"TEM-84","na":1,"nb":1,"a":[["ARO%3A3000951","TEM-84"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000952","l":"TEM-85","na":1,"nb":1,"a":[["ARO%3A3000952","TEM-85"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000953","l":"TEM-86","na":1,"nb":1,"a":[["ARO%3A3000953","TEM-86"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000954","l":"TEM-87","na":1,"nb":1,"a":[["ARO%3A3000954","TEM-87"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000955","l":"TEM-88","na":1,"nb":1,"a":[["ARO%3A3000955","TEM-88"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000956","l":"TEM-89","na":1,"nb":1,"a":[["ARO%3A3000956","TEM-89"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000957","l":"TEM-90","na":1,"nb":1,"a":[["ARO%3A3000957","TEM-90"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000958","l":"TEM-91","na":1,"nb":1,"a":[["ARO%3A3000958","TEM-91"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000959","l":"TEM-92","na":1,"nb":1,"a":[["ARO%3A3000959","TEM-92"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000960","l":"TEM-93","na":1,"nb":1,"a":[["ARO%3A3000960","TEM-93"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000961","l":"TEM-94","na":1,"nb":1,"a":[["ARO%3A3000961","TEM-94"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000962","l":"TEM-95","na":1,"nb":1,"a":[["ARO%3A3000962","TEM-95"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000963","l":"TEM-96","na":1,"nb":1,"a":[["ARO%3A3000963","TEM-96"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000964","l":"TEM-101","na":1,"nb":1,"a":[["ARO%3A3000964","TEM-101"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000965","l":"TEM-102","na":1,"nb":1,"a":[["ARO%3A3000965","TEM-102"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000967","l":"TEM-104","na":1,"nb":1,"a":[["ARO%3A3000967","TEM-104"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000968","l":"TEM-105","na":1,"nb":1,"a":[["ARO%3A3000968","TEM-105"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000969","l":"TEM-106","na":1,"nb":1,"a":[["ARO%3A3000969","TEM-106"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000970","l":"TEM-107","na":1,"nb":1,"a":[["ARO%3A3000970","TEM-107"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000971","l":"TEM-108","na":1,"nb":1,"a":[["ARO%3A3000971","TEM-108"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000972","l":"TEM-109","na":1,"nb":1,"a":[["ARO%3A3000972","TEM-109"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000973","l":"TEM-110","na":1,"nb":1,"a":[["ARO%3A3000973","TEM-110"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000974","l":"TEM-111","na":1,"nb":1,"a":[["ARO%3A3000974","TEM-111"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000975","l":"TEM-112","na":1,"nb":1,"a":[["ARO%3A3000975","TEM-112"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000976","l":"TEM-113","na":1,"nb":1,"a":[["ARO%3A3000976","TEM-113"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000977","l":"TEM-114","na":1,"nb":1,"a":[["ARO%3A3000977","TEM-114"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000978","l":"TEM-115","na":1,"nb":1,"a":[["ARO%3A3000978","TEM-115"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000979","l":"TEM-116","na":1,"nb":1,"a":[["ARO%3A3000979","TEM-116"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000980","l":"TEM-117","na":1,"nb":1,"a":[["ARO%3A3000980","TEM-117"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000981","l":"TEM-118","na":1,"nb":1,"a":[["ARO%3A3000981","TEM-118"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000982","l":"TEM-120","na":1,"nb":1,"a":[["ARO%3A3000982","TEM-120"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000983","l":"TEM-121","na":1,"nb":1,"a":[["ARO%3A3000983","TEM-121"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000984","l":"TEM-122","na":1,"nb":1,"a":[["ARO%3A3000984","TEM-122"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000985","l":"TEM-123","na":1,"nb":1,"a":[["ARO%3A3000985","TEM-123"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000986","l":"TEM-124","na":1,"nb":1,"a":[["ARO%3A3000986","TEM-124"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000987","l":"TEM-125","na":1,"nb":1,"a":[["ARO%3A3000987","TEM-125"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000988","l":"TEM-126","na":1,"nb":1,"a":[["ARO%3A3000988","TEM-126"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000989","l":"TEM-127","na":1,"nb":1,"a":[["ARO%3A3000989","TEM-127"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000990","l":"TEM-128","na":1,"nb":1,"a":[["ARO%3A3000990","TEM-128"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000993","l":"TEM-129","na":1,"nb":1,"a":[["ARO%3A3000993","TEM-129"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000994","l":"TEM-130","na":1,"nb":1,"a":[["ARO%3A3000994","TEM-130"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000995","l":"TEM-131","na":1,"nb":1,"a":[["ARO%3A3000995","TEM-131"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000996","l":"TEM-132","na":1,"nb":1,"a":[["ARO%3A3000996","TEM-132"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000997","l":"TEM-133","na":1,"nb":1,"a":[["ARO%3A3000997","TEM-133"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000998","l":"TEM-134","na":1,"nb":1,"a":[["ARO%3A3000998","TEM-134"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001000","l":"TEM-136","na":1,"nb":1,"a":[["ARO%3A3001000","TEM-136"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001001","l":"TEM-137","na":1,"nb":1,"a":[["ARO%3A3001001","TEM-137"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001002","l":"TEM-138","na":1,"nb":1,"a":[["ARO%3A3001002","TEM-138"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001003","l":"TEM-139","na":1,"nb":1,"a":[["ARO%3A3001003","TEM-139"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001004","l":"TEM-141","na":1,"nb":1,"a":[["ARO%3A3001004","TEM-141"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001005","l":"TEM-142","na":1,"nb":1,"a":[["ARO%3A3001005","TEM-142"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001006","l":"TEM-143","na":1,"nb":1,"a":[["ARO%3A3001006","TEM-143"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001007","l":"TEM-144","na":1,"nb":1,"a":[["ARO%3A3001007","TEM-144"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001012","l":"TEM-145","na":1,"nb":1,"a":[["ARO%3A3001012","TEM-145"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001013","l":"TEM-146","na":1,"nb":1,"a":[["ARO%3A3001013","TEM-146"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001014","l":"TEM-147","na":1,"nb":1,"a":[["ARO%3A3001014","TEM-147"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001015","l":"TEM-148","na":1,"nb":1,"a":[["ARO%3A3001015","TEM-148"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001016","l":"TEM-149","na":1,"nb":1,"a":[["ARO%3A3001016","TEM-149"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001017","l":"TEM-150","na":1,"nb":1,"a":[["ARO%3A3001017","TEM-150"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001018","l":"TEM-151","na":1,"nb":1,"a":[["ARO%3A3001018","TEM-151"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001019","l":"TEM-152","na":1,"nb":1,"a":[["ARO%3A3001019","TEM-152"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001020","l":"TEM-154","na":1,"nb":1,"a":[["ARO%3A3001020","TEM-154"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001021","l":"TEM-155","na":1,"nb":1,"a":[["ARO%3A3001021","TEM-155"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001022","l":"TEM-156","na":1,"nb":1,"a":[["ARO%3A3001022","TEM-156"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001023","l":"TEM-157","na":1,"nb":1,"a":[["ARO%3A3001023","TEM-157"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001024","l":"TEM-158","na":1,"nb":1,"a":[["ARO%3A3001024","TEM-158"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001025","l":"TEM-159","na":1,"nb":1,"a":[["ARO%3A3001025","TEM-159"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001026","l":"TEM-160","na":1,"nb":1,"a":[["ARO%3A3001026","TEM-160"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001028","l":"TEM-162","na":1,"nb":1,"a":[["ARO%3A3001028","TEM-162"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001029","l":"TEM-163","na":1,"nb":1,"a":[["ARO%3A3001029","TEM-163"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001030","l":"TEM-164","na":1,"nb":1,"a":[["ARO%3A3001030","TEM-164"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001032","l":"TEM-166","na":1,"nb":1,"a":[["ARO%3A3001032","TEM-166"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001033","l":"TEM-167","na":1,"nb":1,"a":[["ARO%3A3001033","TEM-167"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001034","l":"TEM-168","na":1,"nb":1,"a":[["ARO%3A3001034","TEM-168"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001035","l":"TEM-169","na":1,"nb":1,"a":[["ARO%3A3001035","TEM-169"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001037","l":"TEM-171","na":1,"nb":1,"a":[["ARO%3A3001037","TEM-171"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001041","l":"TEM-176","na":1,"nb":1,"a":[["ARO%3A3001041","TEM-176"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001042","l":"TEM-177","na":1,"nb":1,"a":[["ARO%3A3001042","TEM-177"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001043","l":"TEM-178","na":1,"nb":1,"a":[["ARO%3A3001043","TEM-178"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001044","l":"TEM-181","na":1,"nb":1,"a":[["ARO%3A3001044","TEM-181"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001045","l":"TEM-183","na":1,"nb":1,"a":[["ARO%3A3001045","TEM-183"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001046","l":"TEM-186","na":1,"nb":1,"a":[["ARO%3A3001046","TEM-186"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001047","l":"TEM-187","na":1,"nb":1,"a":[["ARO%3A3001047","TEM-187"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001048","l":"TEM-188","na":1,"nb":1,"a":[["ARO%3A3001048","TEM-188"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001049","l":"TEM-189","na":1,"nb":1,"a":[["ARO%3A3001049","TEM-189"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001050","l":"TEM-190","na":1,"nb":1,"a":[["ARO%3A3001050","TEM-190"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001051","l":"TEM-191","na":1,"nb":1,"a":[["ARO%3A3001051","TEM-191"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001052","l":"TEM-192","na":1,"nb":1,"a":[["ARO%3A3001052","TEM-192"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001053","l":"TEM-193","na":1,"nb":1,"a":[["ARO%3A3001053","TEM-193"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001054","l":"TEM-194","na":1,"nb":1,"a":[["ARO%3A3001054","TEM-194"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001055","l":"TEM-195","na":1,"nb":1,"a":[["ARO%3A3001055","TEM-195"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001056","l":"TEM-197","na":1,"nb":1,"a":[["ARO%3A3001056","TEM-197"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001057","l":"TEM-198","na":1,"nb":1,"a":[["ARO%3A3001057","TEM-198"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001058","l":"TEM-199","na":1,"nb":1,"a":[["ARO%3A3001058","TEM-199"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001059","l":"SHV-1","na":1,"nb":1,"a":[["ARO%3A3001059","SHV-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"]]},{"id":"ARO:3001209","l":"mecC","na":1,"nb":1,"a":[["ARO%3A3001209","mecC"]],"b":[["antibacterial/methicillin.html","methicillin"]]},{"id":"ARO:3001299","l":"tlrB conferring tylosin resistance","na":1,"nb":1,"a":[["ARO%3A3001299","tlrB conferring tylosin resistance"]],"b":[["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3001305","l":"ErmU","na":1,"nb":1,"a":[["ARO%3A3001305","ErmU"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3001313","l":"facT","na":1,"nb":1,"a":[["ARO%3A3001313","facT"]],"b":[["antibacterial/factumycin.html","factumycin"]]},{"id":"ARO:3001327","l":"MdtK","na":1,"nb":1,"a":[["ARO%3A3001327","MdtK"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3001329","l":"mdtG","na":1,"nb":1,"a":[["ARO%3A3001329","mdtG"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3001369","l":"TEM-153","na":1,"nb":1,"a":[["ARO%3A3001369","TEM-153"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001373","l":"TEM-182","na":1,"nb":1,"a":[["ARO%3A3001373","TEM-182"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001374","l":"TEM-185","na":1,"nb":1,"a":[["ARO%3A3001374","TEM-185"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001375","l":"TEM-184","na":1,"nb":1,"a":[["ARO%3A3001375","TEM-184"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001376","l":"TEM-196","na":1,"nb":1,"a":[["ARO%3A3001376","TEM-196"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001378","l":"TEM-201","na":1,"nb":1,"a":[["ARO%3A3001378","TEM-201"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001382","l":"TEM-205","na":1,"nb":1,"a":[["ARO%3A3001382","TEM-205"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001383","l":"TEM-206","na":1,"nb":1,"a":[["ARO%3A3001383","TEM-206"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001384","l":"TEM-207","na":1,"nb":1,"a":[["ARO%3A3001384","TEM-207"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001385","l":"TEM-208","na":1,"nb":1,"a":[["ARO%3A3001385","TEM-208"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001386","l":"TEM-209","na":1,"nb":1,"a":[["ARO%3A3001386","TEM-209"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001387","l":"TEM-210","na":1,"nb":1,"a":[["ARO%3A3001387","TEM-210"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001388","l":"TEM-211","na":1,"nb":1,"a":[["ARO%3A3001388","TEM-211"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001389","l":"TEM-212","na":1,"nb":1,"a":[["ARO%3A3001389","TEM-212"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001390","l":"TEM-213","na":1,"nb":1,"a":[["ARO%3A3001390","TEM-213"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001391","l":"TEM-214","na":1,"nb":1,"a":[["ARO%3A3001391","TEM-214"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001392","l":"TEM-215","na":1,"nb":1,"a":[["ARO%3A3001392","TEM-215"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001393","l":"TEM-216","na":1,"nb":1,"a":[["ARO%3A3001393","TEM-216"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001394","l":"TEM-217","na":1,"nb":1,"a":[["ARO%3A3001394","TEM-217"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001419","l":"OXA-24","na":1,"nb":1,"a":[["ARO%3A3001419","OXA-24"]],"b":[["antibacterial/bal30072.html","BAL30072"]]},{"id":"ARO:3001612","l":"OXA-51","na":1,"nb":1,"a":[["ARO%3A3001612","OXA-51"]],"b":[["antibacterial/bal30072.html","BAL30072"]]},{"id":"ARO:3001782","l":"OXA-48","na":1,"nb":1,"a":[["ARO%3A3001782","OXA-48"]],"b":[["antibacterial/temocillin.html","temocillin"]]},{"id":"ARO:3001817","l":"ACC-3","na":1,"nb":1,"a":[["ARO%3A3001817","ACC-3"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001819","l":"ACC-5","na":1,"nb":1,"a":[["ARO%3A3001819","ACC-5"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002355","l":"NDM-4","na":1,"nb":1,"a":[["ARO%3A3002355","NDM-4"]],"b":[["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3002508","l":"PDC-9","na":1,"nb":1,"a":[["ARO%3A3002508","PDC-9"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002509","l":"PDC-10","na":1,"nb":1,"a":[["ARO%3A3002509","PDC-10"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002522","l":"novA","na":1,"nb":1,"a":[["ARO%3A3002522","novA"]],"b":[["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3002538","l":"AAC(3)-IIIc","na":1,"nb":1,"a":[["ARO%3A3002538","AAC(3)-IIIc"]],"b":[["antibacterial/gentamycin-a.html","gentamycin A"]]},{"id":"ARO:3002541","l":"AAC(3)-VIIa","na":1,"nb":1,"a":[["ARO%3A3002541","AAC(3)-VIIa"]],"b":[["antibacterial/paromomycin.html","paromomycin"]]},{"id":"ARO:3002542","l":"AAC(3)-VIIIa","na":1,"nb":1,"a":[["ARO%3A3002542","AAC(3)-VIIIa"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3002543","l":"AAC(3)-IXa","na":1,"nb":1,"a":[["ARO%3A3002543","AAC(3)-IXa"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3002544","l":"AAC(3)-Xa","na":1,"nb":1,"a":[["ARO%3A3002544","AAC(3)-Xa"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3002599","l":"","na":1,"nb":1,"a":[["ARO%3A3002599","AAC(6')-30/AAC(6')-Ib' bifunctional protein"]],"b":[["antibacterial/gentamycin-a.html","gentamycin A"]]},{"id":"ARO:3002626","l":"ANT(6)-Ia","na":1,"nb":1,"a":[["ARO%3A3002626","ANT(6)-Ia"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002627","l":"aadK","na":1,"nb":1,"a":[["ARO%3A3002627","aadK"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002628","l":"aad(6)","na":1,"nb":1,"a":[["ARO%3A3002628","aad(6)"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002629","l":"ANT(6)-Ib","na":1,"nb":1,"a":[["ARO%3A3002629","ANT(6)-Ib"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002630","l":"ANT(9)-Ia","na":1,"nb":1,"a":[["ARO%3A3002630","ANT(9)-Ia"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3002631","l":"spd","na":1,"nb":1,"a":[["ARO%3A3002631","spd"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3002635","l":"","na":1,"nb":1,"a":[["ARO%3A3002635","APH(2')-IIa"]],"b":[["antibacterial/plazomicin.html","plazomicin"]]},{"id":"ARO:3002638","l":"","na":1,"nb":1,"a":[["ARO%3A3002638","APH(3')-Ia"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002639","l":"","na":1,"nb":1,"a":[["ARO%3A3002639","APH(3')-Ib"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002640","l":"","na":1,"nb":1,"a":[["ARO%3A3002640","APH(3')-Ic"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002655","l":"APH(4)-Ia","na":1,"nb":1,"a":[["ARO%3A3002655","APH(4)-Ia"]],"b":[["antibacterial/hygromycin-b.html","hygromycin B"]]},{"id":"ARO:3002656","l":"APH(4)-Ib","na":1,"nb":1,"a":[["ARO%3A3002656","APH(4)-Ib"]],"b":[["antibacterial/hygromycin-b.html","hygromycin B"]]},{"id":"ARO:3002657","l":"APH(6)-Ia","na":1,"nb":1,"a":[["ARO%3A3002657","APH(6)-Ia"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002658","l":"APH(6)-Ib","na":1,"nb":1,"a":[["ARO%3A3002658","APH(6)-Ib"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002659","l":"APH(6)-Ic","na":1,"nb":1,"a":[["ARO%3A3002659","APH(6)-Ic"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002660","l":"APH(6)-Id","na":1,"nb":1,"a":[["ARO%3A3002660","APH(6)-Id"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002661","l":"","na":1,"nb":1,"a":[["ARO%3A3002661","APH(7')-Ia"]],"b":[["antibacterial/hygromycin-b.html","hygromycin B"]]},{"id":"ARO:3002662","l":"APH(9)-Ia","na":1,"nb":1,"a":[["ARO%3A3002662","APH(9)-Ia"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3002663","l":"APH(9)-Ib","na":1,"nb":1,"a":[["ARO%3A3002663","APH(9)-Ib"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3002670","l":"cat","na":1,"nb":1,"a":[["ARO%3A3002670","cat"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002690","l":"Streptomyces lividans cmlR","na":1,"nb":1,"a":[["ARO%3A3002690","Streptomyces lividans cmlR"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002691","l":"Salmonella enterica cmlA","na":1,"nb":1,"a":[["ARO%3A3002691","Salmonella enterica cmlA"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002693","l":"cmlA1","na":1,"nb":1,"a":[["ARO%3A3002693","cmlA1"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002694","l":"cmlA4","na":1,"nb":1,"a":[["ARO%3A3002694","cmlA4"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002695","l":"cmlA5","na":1,"nb":1,"a":[["ARO%3A3002695","cmlA5"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002696","l":"cmlA6","na":1,"nb":1,"a":[["ARO%3A3002696","cmlA6"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002698","l":"cmlB","na":1,"nb":1,"a":[["ARO%3A3002698","cmlB"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002699","l":"cmlB1","na":1,"nb":1,"a":[["ARO%3A3002699","cmlB1"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002700","l":"cmlv","na":1,"nb":1,"a":[["ARO%3A3002700","cmlv"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002701","l":"Rhodococcus fascians cmr","na":1,"nb":1,"a":[["ARO%3A3002701","Rhodococcus fascians cmr"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002702","l":"cmrA","na":1,"nb":1,"a":[["ARO%3A3002702","cmrA"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002703","l":"cmx","na":1,"nb":1,"a":[["ARO%3A3002703","cmx"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002707","l":"QnrA1","na":1,"nb":1,"a":[["ARO%3A3002707","QnrA1"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002708","l":"QnrA2","na":1,"nb":1,"a":[["ARO%3A3002708","QnrA2"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002709","l":"QnrA3","na":1,"nb":1,"a":[["ARO%3A3002709","QnrA3"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002710","l":"QnrA4","na":1,"nb":1,"a":[["ARO%3A3002710","QnrA4"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002711","l":"QnrA5","na":1,"nb":1,"a":[["ARO%3A3002711","QnrA5"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002712","l":"QnrA6","na":1,"nb":1,"a":[["ARO%3A3002712","QnrA6"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002713","l":"QnrA7","na":1,"nb":1,"a":[["ARO%3A3002713","QnrA7"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002714","l":"QnrB1","na":1,"nb":1,"a":[["ARO%3A3002714","QnrB1"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002715","l":"QnrB2","na":1,"nb":1,"a":[["ARO%3A3002715","QnrB2"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002716","l":"QnrB3","na":1,"nb":1,"a":[["ARO%3A3002716","QnrB3"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002718","l":"QnrB4","na":1,"nb":1,"a":[["ARO%3A3002718","QnrB4"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002719","l":"QnrB5","na":1,"nb":1,"a":[["ARO%3A3002719","QnrB5"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002720","l":"QnrB6","na":1,"nb":1,"a":[["ARO%3A3002720","QnrB6"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002721","l":"QnrB7","na":1,"nb":1,"a":[["ARO%3A3002721","QnrB7"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002722","l":"QnrB8","na":1,"nb":1,"a":[["ARO%3A3002722","QnrB8"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002723","l":"QnrB9","na":1,"nb":1,"a":[["ARO%3A3002723","QnrB9"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002724","l":"QnrB10","na":1,"nb":1,"a":[["ARO%3A3002724","QnrB10"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002725","l":"QnrB11","na":1,"nb":1,"a":[["ARO%3A3002725","QnrB11"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002726","l":"QnrB12","na":1,"nb":1,"a":[["ARO%3A3002726","QnrB12"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002727","l":"QnrB13","na":1,"nb":1,"a":[["ARO%3A3002727","QnrB13"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002728","l":"QnrB14","na":1,"nb":1,"a":[["ARO%3A3002728","QnrB14"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002730","l":"QnrB15","na":1,"nb":1,"a":[["ARO%3A3002730","QnrB15"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002731","l":"QnrB16","na":1,"nb":1,"a":[["ARO%3A3002731","QnrB16"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002732","l":"QnrB17","na":1,"nb":1,"a":[["ARO%3A3002732","QnrB17"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002733","l":"QnrB18","na":1,"nb":1,"a":[["ARO%3A3002733","QnrB18"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002734","l":"QnrB19","na":1,"nb":1,"a":[["ARO%3A3002734","QnrB19"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002735","l":"QnrB20","na":1,"nb":1,"a":[["ARO%3A3002735","QnrB20"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002736","l":"QnrB21","na":1,"nb":1,"a":[["ARO%3A3002736","QnrB21"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002737","l":"QnrB22","na":1,"nb":1,"a":[["ARO%3A3002737","QnrB22"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002738","l":"QnrB23","na":1,"nb":1,"a":[["ARO%3A3002738","QnrB23"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002739","l":"QnrB24","na":1,"nb":1,"a":[["ARO%3A3002739","QnrB24"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002740","l":"QnrB25","na":1,"nb":1,"a":[["ARO%3A3002740","QnrB25"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002741","l":"QnrB26","na":1,"nb":1,"a":[["ARO%3A3002741","QnrB26"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002742","l":"QnrB27","na":1,"nb":1,"a":[["ARO%3A3002742","QnrB27"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002743","l":"QnrB28","na":1,"nb":1,"a":[["ARO%3A3002743","QnrB28"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002744","l":"QnrB29","na":1,"nb":1,"a":[["ARO%3A3002744","QnrB29"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002745","l":"QnrB30","na":1,"nb":1,"a":[["ARO%3A3002745","QnrB30"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002746","l":"QnrB31","na":1,"nb":1,"a":[["ARO%3A3002746","QnrB31"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002747","l":"QnrB32","na":1,"nb":1,"a":[["ARO%3A3002747","QnrB32"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002748","l":"QnrB33","na":1,"nb":1,"a":[["ARO%3A3002748","QnrB33"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002749","l":"QnrB34","na":1,"nb":1,"a":[["ARO%3A3002749","QnrB34"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002750","l":"QnrB35","na":1,"nb":1,"a":[["ARO%3A3002750","QnrB35"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002751","l":"QnrB36","na":1,"nb":1,"a":[["ARO%3A3002751","QnrB36"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002752","l":"QnrB37","na":1,"nb":1,"a":[["ARO%3A3002752","QnrB37"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002753","l":"QnrB38","na":1,"nb":1,"a":[["ARO%3A3002753","QnrB38"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002755","l":"QnrB40","na":1,"nb":1,"a":[["ARO%3A3002755","QnrB40"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002756","l":"QnrB41","na":1,"nb":1,"a":[["ARO%3A3002756","QnrB41"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002757","l":"QnrB42","na":1,"nb":1,"a":[["ARO%3A3002757","QnrB42"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002758","l":"QnrB43","na":1,"nb":1,"a":[["ARO%3A3002758","QnrB43"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002759","l":"QnrB44","na":1,"nb":1,"a":[["ARO%3A3002759","QnrB44"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002760","l":"QnrB45","na":1,"nb":1,"a":[["ARO%3A3002760","QnrB45"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002761","l":"QnrB46","na":1,"nb":1,"a":[["ARO%3A3002761","QnrB46"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002762","l":"QnrB47","na":1,"nb":1,"a":[["ARO%3A3002762","QnrB47"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002763","l":"QnrB48","na":1,"nb":1,"a":[["ARO%3A3002763","QnrB48"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002764","l":"QnrB49","na":1,"nb":1,"a":[["ARO%3A3002764","QnrB49"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002765","l":"QnrB50","na":1,"nb":1,"a":[["ARO%3A3002765","QnrB50"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002767","l":"QnrB54","na":1,"nb":1,"a":[["ARO%3A3002767","QnrB54"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002768","l":"QnrB55","na":1,"nb":1,"a":[["ARO%3A3002768","QnrB55"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002769","l":"QnrB56","na":1,"nb":1,"a":[["ARO%3A3002769","QnrB56"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002770","l":"QnrB57","na":1,"nb":1,"a":[["ARO%3A3002770","QnrB57"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002771","l":"QnrB58","na":1,"nb":1,"a":[["ARO%3A3002771","QnrB58"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002772","l":"QnrB59","na":1,"nb":1,"a":[["ARO%3A3002772","QnrB59"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002773","l":"QnrB60","na":1,"nb":1,"a":[["ARO%3A3002773","QnrB60"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002774","l":"QnrB61","na":1,"nb":1,"a":[["ARO%3A3002774","QnrB61"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002775","l":"QnrB62","na":1,"nb":1,"a":[["ARO%3A3002775","QnrB62"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002776","l":"QnrB64","na":1,"nb":1,"a":[["ARO%3A3002776","QnrB64"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002777","l":"QnrB65","na":1,"nb":1,"a":[["ARO%3A3002777","QnrB65"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002778","l":"QnrB66","na":1,"nb":1,"a":[["ARO%3A3002778","QnrB66"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002779","l":"QnrB67","na":1,"nb":1,"a":[["ARO%3A3002779","QnrB67"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002780","l":"QnrB68","na":1,"nb":1,"a":[["ARO%3A3002780","QnrB68"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002781","l":"QnrB69","na":1,"nb":1,"a":[["ARO%3A3002781","QnrB69"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002782","l":"QnrB70","na":1,"nb":1,"a":[["ARO%3A3002782","QnrB70"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002783","l":"QnrB71","na":1,"nb":1,"a":[["ARO%3A3002783","QnrB71"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002784","l":"QnrB72","na":1,"nb":1,"a":[["ARO%3A3002784","QnrB72"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002785","l":"QnrB73","na":1,"nb":1,"a":[["ARO%3A3002785","QnrB73"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002786","l":"QnrB74","na":1,"nb":1,"a":[["ARO%3A3002786","QnrB74"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002787","l":"QnrC","na":1,"nb":1,"a":[["ARO%3A3002787","QnrC"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002788","l":"QnrD1","na":1,"nb":1,"a":[["ARO%3A3002788","QnrD1"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002789","l":"QnrD2","na":1,"nb":1,"a":[["ARO%3A3002789","QnrD2"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002790","l":"QnrS1","na":1,"nb":1,"a":[["ARO%3A3002790","QnrS1"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002791","l":"QnrS2","na":1,"nb":1,"a":[["ARO%3A3002791","QnrS2"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002792","l":"QnrS3","na":1,"nb":1,"a":[["ARO%3A3002792","QnrS3"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002793","l":"QnrS4","na":1,"nb":1,"a":[["ARO%3A3002793","QnrS4"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002794","l":"QnrS5","na":1,"nb":1,"a":[["ARO%3A3002794","QnrS5"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002795","l":"QnrS6","na":1,"nb":1,"a":[["ARO%3A3002795","QnrS6"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002796","l":"QnrS7","na":1,"nb":1,"a":[["ARO%3A3002796","QnrS7"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002797","l":"QnrS8","na":1,"nb":1,"a":[["ARO%3A3002797","QnrS8"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002798","l":"QnrS9","na":1,"nb":1,"a":[["ARO%3A3002798","QnrS9"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002799","l":"QnrVC1","na":1,"nb":1,"a":[["ARO%3A3002799","QnrVC1"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002800","l":"QnrVC3","na":1,"nb":1,"a":[["ARO%3A3002800","QnrVC3"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002801","l":"QnrVC4","na":1,"nb":1,"a":[["ARO%3A3002801","QnrVC4"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002802","l":"QnrVC5","na":1,"nb":1,"a":[["ARO%3A3002802","QnrVC5"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002803","l":"QnrVC6","na":1,"nb":1,"a":[["ARO%3A3002803","QnrVC6"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002804","l":"FosA2","na":1,"nb":1,"a":[["ARO%3A3002804","FosA2"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3002817","l":"carA","na":1,"nb":1,"a":[["ARO%3A3002817","carA"]],"b":[["antibacterial/carbomycin.html","carbomycin"]]},{"id":"ARO:3002826","l":"EreA2","na":1,"nb":1,"a":[["ARO%3A3002826","EreA2"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3002828","l":"srmB","na":1,"nb":1,"a":[["ARO%3A3002828","srmB"]],"b":[["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3002832","l":"vgaD","na":1,"nb":1,"a":[["ARO%3A3002832","vgaD"]],"b":[["antibacterial/dalfopristin.html","dalfopristin"]]},{"id":"ARO:3002837","l":"lnuC","na":1,"nb":1,"a":[["ARO%3A3002837","lnuC"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002840","l":"vatA","na":1,"nb":1,"a":[["ARO%3A3002840","vatA"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002841","l":"vatB","na":1,"nb":1,"a":[["ARO%3A3002841","vatB"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002842","l":"vatC","na":1,"nb":1,"a":[["ARO%3A3002842","vatC"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002843","l":"vatD","na":1,"nb":1,"a":[["ARO%3A3002843","vatD"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002844","l":"vatE","na":1,"nb":1,"a":[["ARO%3A3002844","vatE"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002845","l":"vatH","na":1,"nb":1,"a":[["ARO%3A3002845","vatH"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002846","l":"arr-1","na":1,"nb":1,"a":[["ARO%3A3002846","arr-1"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3002847","l":"arr-2","na":1,"nb":1,"a":[["ARO%3A3002847","arr-2"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3002848","l":"arr-3","na":1,"nb":1,"a":[["ARO%3A3002848","arr-3"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3002849","l":"arr-4","na":1,"nb":1,"a":[["ARO%3A3002849","arr-4"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3002850","l":"arr-5","na":1,"nb":1,"a":[["ARO%3A3002850","arr-5"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3002852","l":"arr-7","na":1,"nb":1,"a":[["ARO%3A3002852","arr-7"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3002853","l":"arr-8","na":1,"nb":1,"a":[["ARO%3A3002853","arr-8"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3002854","l":"dfrA1","na":1,"nb":1,"a":[["ARO%3A3002854","dfrA1"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002856","l":"dfrA24","na":1,"nb":1,"a":[["ARO%3A3002856","dfrA24"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002857","l":"dfrA26","na":1,"nb":1,"a":[["ARO%3A3002857","dfrA26"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002858","l":"dfrA12","na":1,"nb":1,"a":[["ARO%3A3002858","dfrA12"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002859","l":"dfrA14","na":1,"nb":1,"a":[["ARO%3A3002859","dfrA14"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002860","l":"dfrA17","na":1,"nb":1,"a":[["ARO%3A3002860","dfrA17"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002861","l":"dfrA5","na":1,"nb":1,"a":[["ARO%3A3002861","dfrA5"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002862","l":"dfrA7","na":1,"nb":1,"a":[["ARO%3A3002862","dfrA7"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002863","l":"dfrA8","na":1,"nb":1,"a":[["ARO%3A3002863","dfrA8"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002864","l":"dfrB1","na":1,"nb":1,"a":[["ARO%3A3002864","dfrB1"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002865","l":"dfrC","na":1,"nb":1,"a":[["ARO%3A3002865","dfrC"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002866","l":"dfrD","na":1,"nb":1,"a":[["ARO%3A3002866","dfrD"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002867","l":"dfrF","na":1,"nb":1,"a":[["ARO%3A3002867","dfrF"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002868","l":"dfrG","na":1,"nb":1,"a":[["ARO%3A3002868","dfrG"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002869","l":"dfrK","na":1,"nb":1,"a":[["ARO%3A3002869","dfrK"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002870","l":"tet(34)","na":1,"nb":1,"a":[["ARO%3A3002870","tet(34)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3002871","l":"tet(37)","na":1,"nb":1,"a":[["ARO%3A3002871","tet(37)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3002872","l":"FosA3","na":1,"nb":1,"a":[["ARO%3A3002872","FosA3"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3002873","l":"FosB3","na":1,"nb":1,"a":[["ARO%3A3002873","FosB3"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3002874","l":"FosC2","na":1,"nb":1,"a":[["ARO%3A3002874","FosC2"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3002875","l":"dfrE","na":1,"nb":1,"a":[["ARO%3A3002875","dfrE"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002879","l":"linG","na":1,"nb":1,"a":[["ARO%3A3002879","linG"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002891","l":"Streptomyces rimosus otr(A)","na":1,"nb":1,"a":[["ARO%3A3002891","Streptomyces rimosus otr(A)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"]]},{"id":"ARO:3002892","l":"otr(B)","na":1,"nb":1,"a":[["ARO%3A3002892","otr(B)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3002893","l":"tcr3","na":1,"nb":1,"a":[["ARO%3A3002893","tcr3"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3002894","l":"otr(C)","na":1,"nb":1,"a":[["ARO%3A3002894","otr(C)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3002895","l":"SAT-2","na":1,"nb":1,"a":[["ARO%3A3002895","SAT-2"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"]]},{"id":"ARO:3002897","l":"SAT-4","na":1,"nb":1,"a":[["ARO%3A3002897","SAT-4"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"]]},{"id":"ARO:3002898","l":"SAT-3","na":1,"nb":1,"a":[["ARO%3A3002898","SAT-3"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"]]},{"id":"ARO:3002914","l":"vanJ","na":1,"nb":1,"a":[["ARO%3A3002914","vanJ"]],"b":[["antibacterial/teicoplanin.html","teicoplanin"]]},{"id":"ARO:3002917","l":"glycopeptide resistance gene cluster VanN","na":1,"nb":1,"a":[["ARO%3A3002917","glycopeptide resistance gene cluster VanN"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3002918","l":"glycopeptide resistance gene cluster VanO","na":1,"nb":1,"a":[["ARO%3A3002918","glycopeptide resistance gene cluster VanO"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3002999","l":"CblA-1","na":1,"nb":1,"a":[["ARO%3A3002999","CblA-1"]],"b":[["antibacterial/cefaloridine.html","cefaloridine"]]},{"id":"ARO:3003006","l":"blt","na":1,"nb":1,"a":[["ARO%3A3003006","blt"]],"b":[["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3003011","l":"dfrA10","na":1,"nb":1,"a":[["ARO%3A3003011","dfrA10"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003012","l":"dfrA13","na":1,"nb":1,"a":[["ARO%3A3003012","dfrA13"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003013","l":"dfrA15","na":1,"nb":1,"a":[["ARO%3A3003013","dfrA15"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003014","l":"dfrA16","na":1,"nb":1,"a":[["ARO%3A3003014","dfrA16"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003015","l":"dfrA19","na":1,"nb":1,"a":[["ARO%3A3003015","dfrA19"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003016","l":"dfrA20","na":1,"nb":1,"a":[["ARO%3A3003016","dfrA20"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003017","l":"dfrA21","na":1,"nb":1,"a":[["ARO%3A3003017","dfrA21"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003018","l":"dfrA22","na":1,"nb":1,"a":[["ARO%3A3003018","dfrA22"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003019","l":"dfrA23","na":1,"nb":1,"a":[["ARO%3A3003019","dfrA23"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003020","l":"dfrA25","na":1,"nb":1,"a":[["ARO%3A3003020","dfrA25"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003021","l":"dfrB2","na":1,"nb":1,"a":[["ARO%3A3003021","dfrB2"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003022","l":"dfrB3","na":1,"nb":1,"a":[["ARO%3A3003022","dfrB3"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003023","l":"dfrB6","na":1,"nb":1,"a":[["ARO%3A3003023","dfrB6"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003026","l":"fusH","na":1,"nb":1,"a":[["ARO%3A3003026","fusH"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3003036","l":"oleB","na":1,"nb":1,"a":[["ARO%3A3003036","oleB"]],"b":[["antibacterial/oleandomycin.html","oleandomycin"]]},{"id":"ARO:3003041","l":"Streptococcus pneumoniae PBP1a conferring resistance to amoxicillin","na":1,"nb":1,"a":[["ARO%3A3003041","Streptococcus pneumoniae PBP1a conferring resistance to amoxicillin"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3003042","l":"Streptococcus pneumoniae PBP2b conferring resistance to amoxicillin","na":1,"nb":1,"a":[["ARO%3A3003042","Streptococcus pneumoniae PBP2b conferring resistance to amoxicillin"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3003043","l":"Streptococcus pneumoniae PBP2x conferring resistance to amoxicillin","na":1,"nb":1,"a":[["ARO%3A3003043","Streptococcus pneumoniae PBP2x conferring resistance to amoxicillin"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3003059","l":"tmrB","na":1,"nb":1,"a":[["ARO%3A3003059","tmrB"]],"b":[["antibacterial/tunicamycin.html","tunicamycin"]]},{"id":"ARO:3003060","l":"tsnR","na":1,"nb":1,"a":[["ARO%3A3003060","tsnR"]],"b":[["antibacterial/thiostrepton.html","thiostrepton"]]},{"id":"ARO:3003061","l":"vph","na":1,"nb":1,"a":[["ARO%3A3003061","vph"]],"b":[["antimycobacterial/viomycin.html","viomycin"]]},{"id":"ARO:3003074","l":"Staphylococcus aureus cls conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003074","Staphylococcus aureus cls conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003077","l":"Enterococcus faecalis liaF mutant conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003077","Enterococcus faecalis liaF mutant conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003078","l":"Enterococcus faecium liaR mutant conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003078","Enterococcus faecium liaR mutant conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003079","l":"Enterococcus faecium liaS mutant conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003079","Enterococcus faecium liaS mutant conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003092","l":"Enterococcus faecium cls conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003092","Enterococcus faecium cls conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003105","l":"dfrA3","na":1,"nb":1,"a":[["ARO%3A3003105","dfrA3"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003109","l":"msrE","na":1,"nb":1,"a":[["ARO%3A3003109","msrE"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003157","l":"TEM-219","na":1,"nb":1,"a":[["ARO%3A3003157","TEM-219"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3003158","l":"TEM-220","na":1,"nb":1,"a":[["ARO%3A3003158","TEM-220"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3003193","l":"QnrVC7","na":1,"nb":1,"a":[["ARO%3A3003193","QnrVC7"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003196","l":"tet(45)","na":1,"nb":1,"a":[["ARO%3A3003196","tet(45)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003207","l":"FosK","na":1,"nb":1,"a":[["ARO%3A3003207","FosK"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003208","l":"FosXCC","na":1,"nb":1,"a":[["ARO%3A3003208","FosXCC"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003210","l":"FosA4","na":1,"nb":1,"a":[["ARO%3A3003210","FosA4"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003236","l":"Mycobacteroides abscessus 16S rRNA mutation conferring resistance to kanamycin","na":1,"nb":1,"a":[["ARO%3A3003236","Mycobacteroides abscessus 16S rRNA mutation conferring resistance to kanamycin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003237","l":"Mycobacteroides abscessus 16S rRNA mutation conferring resistance to tobramycin","na":1,"nb":1,"a":[["ARO%3A3003237","Mycobacteroides abscessus 16S rRNA mutation conferring resistance to tobramycin"]],"b":[["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3003238","l":"Mycobacteroides abscessus 16S rRNA mutation conferring resistance to neomycin","na":1,"nb":1,"a":[["ARO%3A3003238","Mycobacteroides abscessus 16S rRNA mutation conferring resistance to neomycin"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3003239","l":"Mycobacteroides abscessus 16S rRNA mutation conferring resistance to amikacin","na":1,"nb":1,"a":[["ARO%3A3003239","Mycobacteroides abscessus 16S rRNA mutation conferring resistance to amikacin"]],"b":[["antibacterial/amikacin.html","amikacin"]]},{"id":"ARO:3003240","l":"Mycobacteroides abscessus 16S rRNA mutation conferring resistance to gentamicin","na":1,"nb":1,"a":[["ARO%3A3003240","Mycobacteroides abscessus 16S rRNA mutation conferring resistance to gentamicin"]],"b":[["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3003287","l":"Staphylococcus aureus rpoB mutants conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003287","Staphylococcus aureus rpoB mutants conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003291","l":"Staphylococcus aureus rpoC conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003291","Staphylococcus aureus rpoC conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003319","l":"Staphylococcus aureus mprF with mutation conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003319","Staphylococcus aureus mprF with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003323","l":"Staphylococcus aureus pgsA mutations conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003323","Staphylococcus aureus pgsA mutations conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003324","l":"Bacillus subtilis mprF","na":1,"nb":1,"a":[["ARO%3A3003324","Bacillus subtilis mprF"]],"b":[["antibacterial/defensin.html","defensin"]]},{"id":"ARO:3003325","l":"Mycobacterium tuberculosis variant bovis embB with mutation conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3003325","Mycobacterium tuberculosis variant bovis embB with mutation conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003326","l":"Mycobacterium tuberculosis embB mutant conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3003326","Mycobacterium tuberculosis embB mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003327","l":"Mycobacterium tuberculosis embC mutant conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3003327","Mycobacterium tuberculosis embC mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003333","l":"Escherichia coli 16S rRNA (rrsC) mutation conferring resistance to kasugamicin","na":1,"nb":1,"a":[["ARO%3A3003333","Escherichia coli 16S rRNA (rrsC) mutation conferring resistance to kasugamicin"]],"b":[["antifungal/kasugamycin.html","kasugamycin"]]},{"id":"ARO:3003357","l":"Clostridioides difficile EF-Tu mutants conferring resistance to elfamycin","na":1,"nb":1,"a":[["ARO%3A3003357","Clostridioides difficile EF-Tu mutants conferring resistance to elfamycin"]],"b":[["antibacterial/lff571.html","LFF571"]]},{"id":"ARO:3003359","l":"Streptomyces cinnamoneus EF-Tu mutants conferring resistance to elfamycin","na":1,"nb":1,"a":[["ARO%3A3003359","Streptomyces cinnamoneus EF-Tu mutants conferring resistance to elfamycin"]],"b":[["antibacterial/kirromycin.html","kirromycin"]]},{"id":"ARO:3003361","l":"Planobispora rosea EF-Tu mutants conferring resistance to inhibitor GE2270A","na":1,"nb":1,"a":[["ARO%3A3003361","Planobispora rosea EF-Tu mutants conferring resistance to inhibitor GE2270A"]],"b":[["antibacterial/ge2270a.html","GE2270A"]]},{"id":"ARO:3003368","l":"Escherichia coli EF-Tu mutants conferring resistance to kirromycin","na":1,"nb":1,"a":[["ARO%3A3003368","Escherichia coli EF-Tu mutants conferring resistance to kirromycin"]],"b":[["antibacterial/kirromycin.html","kirromycin"]]},{"id":"ARO:3003369","l":"Escherichia coli EF-Tu mutants conferring resistance to Pulvomycin","na":1,"nb":1,"a":[["ARO%3A3003369","Escherichia coli EF-Tu mutants conferring resistance to Pulvomycin"]],"b":[["antibacterial/pulvomycin.html","pulvomycin"]]},{"id":"ARO:3003370","l":"Escherichia coli EF-Tu mutants conferring resistance to Enacyloxin IIa","na":1,"nb":1,"a":[["ARO%3A3003370","Escherichia coli EF-Tu mutants conferring resistance to Enacyloxin IIa"]],"b":[["antibacterial/enacyloxin-iia.html","enacyloxin IIa"]]},{"id":"ARO:3003372","l":"Escherichia coli 16S rRNA (rrsH) mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003372","Escherichia coli 16S rRNA (rrsH) mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003373","l":"Klebsiella pneumoniae acrR with mutation conferring multidrug antibiotic resistance","na":1,"nb":1,"a":[["ARO%3A3003373","Klebsiella pneumoniae acrR with mutation conferring multidrug antibiotic resistance"]],"b":[["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:3003376","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003376","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003377","l":"Escherichia coli 16S rRNA (rrnB) mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003377","Escherichia coli 16S rRNA (rrnB) mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003379","l":"Salmonella enterica ramR mutants","na":1,"nb":1,"a":[["ARO%3A3003379","Salmonella enterica ramR mutants"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003380","l":"Klebsiella pneumoniae ramR mutants","na":1,"nb":1,"a":[["ARO%3A3003380","Klebsiella pneumoniae ramR mutants"]],"b":[["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:3003382","l":"Salmonella enterica soxR with mutation conferring antibiotic resistance","na":1,"nb":1,"a":[["ARO%3A3003382","Salmonella enterica soxR with mutation conferring antibiotic resistance"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003383","l":"Salmonella serovars soxS with mutation conferring antibiotic resistance","na":1,"nb":1,"a":[["ARO%3A3003383","Salmonella serovars soxS with mutation conferring antibiotic resistance"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003389","l":"Mycobacterium leprae folP with mutation conferring resistance to dapsone","na":1,"nb":1,"a":[["ARO%3A3003389","Mycobacterium leprae folP with mutation conferring resistance to dapsone"]],"b":[["antimycobacterial/dapsone.html","dapsone"]]},{"id":"ARO:3003390","l":"Escherichia coli ompF with mutation conferring resistance to beta-lactam antibiotics","na":1,"nb":1,"a":[["ARO%3A3003390","Escherichia coli ompF with mutation conferring resistance to beta-lactam antibiotics"]],"b":[["antibacterial/cefepime.html","cefepime"]]},{"id":"ARO:3003392","l":"Mycobacterium tuberculosis katG mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3003392","Mycobacterium tuberculosis katG mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3003393","l":"Mycobacterium tuberculosis inhA mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3003393","Mycobacterium tuberculosis inhA mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3003396","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to gentamicin C","na":1,"nb":1,"a":[["ARO%3A3003396","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to gentamicin C"]],"b":[["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3003397","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to G418","na":1,"nb":1,"a":[["ARO%3A3003397","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to G418"]],"b":[["antibacterial/g418.html","G418"]]},{"id":"ARO:3003399","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to kanamycin A","na":1,"nb":1,"a":[["ARO%3A3003399","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to kanamycin A"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003402","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to neomycin","na":1,"nb":1,"a":[["ARO%3A3003402","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to neomycin"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3003403","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to paromomycin","na":1,"nb":1,"a":[["ARO%3A3003403","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to paromomycin"]],"b":[["antibacterial/paromomycin.html","paromomycin"]]},{"id":"ARO:3003405","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3003405","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003406","l":"Escherichia coli 16S rRNA (rrnB) mutation conferring resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3003406","Escherichia coli 16S rRNA (rrnB) mutation conferring resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003408","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to tobramycin","na":1,"nb":1,"a":[["ARO%3A3003408","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to tobramycin"]],"b":[["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3003410","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to tetracycline","na":1,"nb":1,"a":[["ARO%3A3003410","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to tetracycline"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003411","l":"Escherichia coli 16S rRNA (rrnB) mutation conferring resistance to tetracycline","na":1,"nb":1,"a":[["ARO%3A3003411","Escherichia coli 16S rRNA (rrnB) mutation conferring resistance to tetracycline"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003413","l":"pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004977","Mycobacterium tuberculosis gpsI with mutations conferring resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3003436","l":"Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to kanamycin","na":1,"nb":1,"a":[["ARO%3A3003436","Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to kanamycin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003437","l":"Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to viomycin","na":1,"nb":1,"a":[["ARO%3A3003437","Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to viomycin"]],"b":[["antimycobacterial/viomycin.html","viomycin"]]},{"id":"ARO:3003438","l":"Enterococcus faecium EF-Tu mutants conferring resistance to GE2270A","na":1,"nb":1,"a":[["ARO%3A3003438","Enterococcus faecium EF-Tu mutants conferring resistance to GE2270A"]],"b":[["antibacterial/ge2270a.html","GE2270A"]]},{"id":"ARO:3003440","l":"mecB","na":1,"nb":1,"a":[["ARO%3A3003440","mecB"]],"b":[["antibacterial/methicillin.html","methicillin"]]},{"id":"ARO:3003445","l":"Mycobacterium tuberculosis tlyA mutations conferring resistance to aminoglycosides","na":1,"nb":1,"a":[["ARO%3A3003445","Mycobacterium tuberculosis tlyA mutations conferring resistance to aminoglycosides"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003448","l":"Mycobacterium tuberculosis iniA mutant conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3003448","Mycobacterium tuberculosis iniA mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003451","l":"Mycobacterium tuberculosis iniC mutant conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3003451","Mycobacterium tuberculosis iniC mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003453","l":"Mycobacterium tuberculosis embA mutant conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3003453","Mycobacterium tuberculosis embA mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003455","l":"Mycobacterium tuberculosis embR mutant conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3003455","Mycobacterium tuberculosis embR mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003461","l":"Mycobacterium tuberculosis ndh with mutation conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3003461","Mycobacterium tuberculosis ndh with mutation conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3003463","l":"Mycobacterium tuberculosis kasA mutant conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3003463","Mycobacterium tuberculosis kasA mutant conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3003465","l":"Mycobacterium tuberculosis embB with mutation conferring resistance to rifampicin","na":1,"nb":1,"a":[["ARO%3A3003465","Mycobacterium tuberculosis embB with mutation conferring resistance to rifampicin"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3003470","l":"Mycobacterium tuberculosis gidB mutation conferring resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3003470","Mycobacterium tuberculosis gidB mutation conferring resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003480","l":"Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3003480","Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003481","l":"Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to amikacin","na":1,"nb":1,"a":[["ARO%3A3003481","Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to amikacin"]],"b":[["antibacterial/amikacin.html","amikacin"]]},{"id":"ARO:3003485","l":"Chlamydophila psittaci 16S rRNA mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003485","Chlamydophila psittaci 16S rRNA mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003493","l":"Pasteurella multocida 16S rRNA mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003493","Pasteurella multocida 16S rRNA mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003495","l":"Neisseria gonorrhoeae 16S rRNA mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003495","Neisseria gonorrhoeae 16S rRNA mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003497","l":"Neisseria meningitidis 16S rRNA mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003497","Neisseria meningitidis 16S rRNA mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003502","l":"Borreliella burgdorferi 16S rRNA mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003502","Borreliella burgdorferi 16S rRNA mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003503","l":"Borreliella burgdorferi 16S rRNA mutation conferring resistance to kanamycin","na":1,"nb":1,"a":[["ARO%3A3003503","Borreliella burgdorferi 16S rRNA mutation conferring resistance to kanamycin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003504","l":"Borreliella burgdorferi 16S rRNA mutation conferring resistance to gentamicin","na":1,"nb":1,"a":[["ARO%3A3003504","Borreliella burgdorferi 16S rRNA mutation conferring resistance to gentamicin"]],"b":[["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3003510","l":"Helicobacter pylori 16S rRNA mutation conferring resistance to tetracycline","na":1,"nb":1,"a":[["ARO%3A3003510","Helicobacter pylori 16S rRNA mutation conferring resistance to tetracycline"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003512","l":"Salmonella enterica 16S rRNA (rrsD) mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003512","Salmonella enterica 16S rRNA (rrsD) mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003514","l":"Mycobacteroides chelonae 16S rRNA mutation conferring resistance to amikacin","na":1,"nb":1,"a":[["ARO%3A3003514","Mycobacteroides chelonae 16S rRNA mutation conferring resistance to amikacin"]],"b":[["antibacterial/amikacin.html","amikacin"]]},{"id":"ARO:3003515","l":"Mycobacteroides chelonae 16S rRNA mutation conferring resistance to kanamycin A","na":1,"nb":1,"a":[["ARO%3A3003515","Mycobacteroides chelonae 16S rRNA mutation conferring resistance to kanamycin A"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003516","l":"Mycobacteroides chelonae 16S rRNA mutation conferring resistance to tobramycin","na":1,"nb":1,"a":[["ARO%3A3003516","Mycobacteroides chelonae 16S rRNA mutation conferring resistance to tobramycin"]],"b":[["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3003517","l":"Mycobacteroides chelonae 16S rRNA mutation conferring resistance to gentamicin C","na":1,"nb":1,"a":[["ARO%3A3003517","Mycobacteroides chelonae 16S rRNA mutation conferring resistance to gentamicin C"]],"b":[["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3003518","l":"Mycobacteroides chelonae 16S rRNA mutation conferring resistance to neomycin","na":1,"nb":1,"a":[["ARO%3A3003518","Mycobacteroides chelonae 16S rRNA mutation conferring resistance to neomycin"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3003539","l":"Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to hygromycin B","na":1,"nb":1,"a":[["ARO%3A3003539","Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to hygromycin B"]],"b":[["antibacterial/hygromycin-b.html","hygromycin B"]]},{"id":"ARO:3003540","l":"Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to hygromycin B","na":1,"nb":1,"a":[["ARO%3A3003540","Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to hygromycin B"]],"b":[["antibacterial/hygromycin-b.html","hygromycin B"]]},{"id":"ARO:3003541","l":"Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3003541","Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003542","l":"Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to kanamycin A","na":1,"nb":1,"a":[["ARO%3A3003542","Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to kanamycin A"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003543","l":"Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to kanamycin A","na":1,"nb":1,"a":[["ARO%3A3003543","Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to kanamycin A"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003544","l":"Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to neomycin","na":1,"nb":1,"a":[["ARO%3A3003544","Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to neomycin"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3003545","l":"Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to neomycin","na":1,"nb":1,"a":[["ARO%3A3003545","Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to neomycin"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3003546","l":"Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to viomycin","na":1,"nb":1,"a":[["ARO%3A3003546","Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to viomycin"]],"b":[["antimycobacterial/viomycin.html","viomycin"]]},{"id":"ARO:3003547","l":"Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to viomycin","na":1,"nb":1,"a":[["ARO%3A3003547","Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to viomycin"]],"b":[["antimycobacterial/viomycin.html","viomycin"]]},{"id":"ARO:3003551","l":"emeA","na":1,"nb":1,"a":[["ARO%3A3003551","emeA"]],"b":[["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3003552","l":"fusB","na":1,"nb":1,"a":[["ARO%3A3003552","fusB"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3003554","l":"tcmA","na":1,"nb":1,"a":[["ARO%3A3003554","tcmA"]],"b":[["antibacterial/tetracenomycin-c.html","tetracenomycin C"]]},{"id":"ARO:3003558","l":"y56 beta-lactamase","na":1,"nb":1,"a":[["ARO%3A3003558","y56 beta-lactamase"]],"b":[["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3003562","l":"blaF","na":1,"nb":1,"a":[["ARO%3A3003562","blaF"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3003576","l":"eptA","na":1,"nb":1,"a":[["ARO%3A3003576","eptA"]],"b":[["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3003577","l":"ugd","na":1,"nb":1,"a":[["ARO%3A3003577","ugd"]],"b":[["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3003678","l":"TriABC-OpmH","na":1,"nb":1,"a":[["ARO%3A3003678","TriABC-OpmH"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3003685","l":"Pseudomonas aeruginosa parE conferring resistance to fluoroquinolones","na":1,"nb":1,"a":[["ARO%3A3003685","Pseudomonas aeruginosa parE conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003691","l":"MexJK-OpmH","na":1,"nb":1,"a":[["ARO%3A3003691","MexJK-OpmH"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3003729","l":"Staphylococcus aureus ileS with mutation conferring resistance to mupirocin","na":1,"nb":1,"a":[["ARO%3A3003729","Staphylococcus aureus ileS with mutation conferring resistance to mupirocin"]],"b":[["antibacterial/mupirocin.html","mupirocin"]]},{"id":"ARO:3003730","l":"Bifidobacterium bifidum ileS conferring resistance to mupirocin","na":1,"nb":1,"a":[["ARO%3A3003730","Bifidobacterium bifidum ileS conferring resistance to mupirocin"]],"b":[["antibacterial/mupirocin.html","mupirocin"]]},{"id":"ARO:3003731","l":"fusD","na":1,"nb":1,"a":[["ARO%3A3003731","fusD"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3003733","l":"fusC","na":1,"nb":1,"a":[["ARO%3A3003733","fusC"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3003735","l":"Staphylococcus aureus fusA with mutation conferring resistance to fusidic acid","na":1,"nb":1,"a":[["ARO%3A3003735","Staphylococcus aureus fusA with mutation conferring resistance to fusidic acid"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3003737","l":"Staphylococcus aureus fusE with mutation conferring resistance to fusidic acid","na":1,"nb":1,"a":[["ARO%3A3003737","Staphylococcus aureus fusE with mutation conferring resistance to fusidic acid"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3003741","l":"mphE","na":1,"nb":1,"a":[["ARO%3A3003741","mphE"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003744","l":"vatF","na":1,"nb":1,"a":[["ARO%3A3003744","vatF"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3003745","l":"mef(C)","na":1,"nb":1,"a":[["ARO%3A3003745","mef(C)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"]]},{"id":"ARO:3003748","l":"oleC","na":1,"nb":1,"a":[["ARO%3A3003748","oleC"]],"b":[["antibacterial/oleandomycin.html","oleandomycin"]]},{"id":"ARO:3003756","l":"Escherichia coli nfsB with mutation conferring resistance to nitrofurantoin","na":1,"nb":1,"a":[["ARO%3A3003756","Escherichia coli nfsB with mutation conferring resistance to nitrofurantoin"]],"b":[["antibacterial/nitrofurantoin.html","nitrofurantoin"]]},{"id":"ARO:3003760","l":"Enterococcus faecalis cls with mutation conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003760","Enterococcus faecalis cls with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003761","l":"eatAv","na":1,"nb":1,"a":[["ARO%3A3003761","eatAv"]],"b":[["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"ARO:3003762","l":"lnuE","na":1,"nb":1,"a":[["ARO%3A3003762","lnuE"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3003767","l":"mphM","na":1,"nb":1,"a":[["ARO%3A3003767","mphM"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003769","l":"Staphylococcus aureus mprF","na":1,"nb":1,"a":[["ARO%3A3003769","Staphylococcus aureus mprF"]],"b":[["antibacterial/defensin.html","defensin"]]},{"id":"ARO:3003770","l":"Listeria monocytogenes mprF","na":1,"nb":1,"a":[["ARO%3A3003770","Listeria monocytogenes mprF"]],"b":[["antibacterial/defensin.html","defensin"]]},{"id":"ARO:3003772","l":"Brucella suis mprF","na":1,"nb":1,"a":[["ARO%3A3003772","Brucella suis mprF"]],"b":[["antibacterial/defensin.html","defensin"]]},{"id":"ARO:3003773","l":"Clostridium perfringens mprF","na":1,"nb":1,"a":[["ARO%3A3003773","Clostridium perfringens mprF"]],"b":[["antibacterial/defensin.html","defensin"]]},{"id":"ARO:3003774","l":"Streptococcus agalactiae mprF","na":1,"nb":1,"a":[["ARO%3A3003774","Streptococcus agalactiae mprF"]],"b":[["antibacterial/defensin.html","defensin"]]},{"id":"ARO:3003775","l":"Escherichia coli murA with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003775","Escherichia coli murA with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003776","l":"Staphylococcus aureus murA with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003776","Staphylococcus aureus murA with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003777","l":"Borreliella burgdorferi murA with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003777","Borreliella burgdorferi murA with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003778","l":"Mycolicibacterium smegmatis ndh with mutation conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3003778","Mycolicibacterium smegmatis ndh with mutation conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3003779","l":"Mycobacterium tuberculosis variant bovis ndh with mutation conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3003779","Mycobacterium tuberculosis variant bovis ndh with mutation conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3003784","l":"Mycobacterium tuberculosis intrinsic murA conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003784","Mycobacterium tuberculosis intrinsic murA conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003785","l":"Chlamydia trachomatis intrinsic murA conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003785","Chlamydia trachomatis intrinsic murA conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003788","l":"Bacillus subtilis pgsA with mutation conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003788","Bacillus subtilis pgsA with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003789","l":"Campylobacter jejuni gyrA conferring resistance to fluoroquinolones","na":1,"nb":1,"a":[["ARO%3A3003789","Campylobacter jejuni gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003790","l":"Enterococcus faecium liaF mutant conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003790","Enterococcus faecium liaF mutant conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003791","l":"Enterococcus faecalis liaS mutant conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003791","Enterococcus faecalis liaS mutant conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003792","l":"Enterococcus faecalis liaR mutant conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003792","Enterococcus faecalis liaR mutant conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003794","l":"Staphylococcus aureus walK with mutation conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003794","Staphylococcus aureus walK with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003797","l":"Enterococcus faecalis YybT with mutation conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003797","Enterococcus faecalis YybT with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003800","l":"Enterococcus faecalis gdpD with mutation conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003800","Enterococcus faecalis gdpD with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003801","l":"bcr-1","na":1,"nb":1,"a":[["ARO%3A3003801","bcr-1"]],"b":[["antibacterial/bicozamycin.html","bicozamycin"]]},{"id":"ARO:3003803","l":"Staphylococcus aureus agrA with mutation conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003803","Staphylococcus aureus agrA with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003805","l":"Enterococcus faecalis gshF with mutation conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003805","Enterococcus faecalis gshF with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003809","l":"Acinetobacter baumannii OprD conferring resistance to imipenem","na":1,"nb":1,"a":[["ARO%3A3003809","Acinetobacter baumannii OprD conferring resistance to imipenem"]],"b":[["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3003813","l":"Enterococcus faecalis drmA with mutation conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003813","Enterococcus faecalis drmA with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003815","l":"Enterococcus faecalis YvlB with mutation conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003815","Enterococcus faecalis YvlB with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003830","l":"Aminocoumarin resistant alaS","na":1,"nb":1,"a":[["ARO%3A3003830","Aminocoumarin resistant alaS"]],"b":[["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3003835","l":"cdeA","na":1,"nb":1,"a":[["ARO%3A3003835","cdeA"]],"b":[["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3003840","l":"aminocoumarin resistant cysB","na":1,"nb":1,"a":[["ARO%3A3003840","aminocoumarin resistant cysB"]],"b":[["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3003844","l":"mfd","na":1,"nb":1,"a":[["ARO%3A3003844","mfd"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003889","l":"Escherichia coli GlpT with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003889","Escherichia coli GlpT with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003890","l":"Escherichia coli UhpT with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003890","Escherichia coli UhpT with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003900","l":"Escherichia coli cyaA with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003900","Escherichia coli cyaA with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003901","l":"Staphylococcus aureus GlpT with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003901","Staphylococcus aureus GlpT with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003902","l":"Staphylococcus aureus UhpT with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003902","Staphylococcus aureus UhpT with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003917","l":"Staphylococcus aureus menA with mutation conferring resistance to lysocin","na":1,"nb":1,"a":[["ARO%3A3003917","Staphylococcus aureus menA with mutation conferring resistance to lysocin"]],"b":[["antibacterial/lysocin-e.html","lysocin E"]]},{"id":"ARO:3003918","l":"apmA","na":1,"nb":1,"a":[["ARO%3A3003918","apmA"]],"b":[["antibacterial/apramycin.html","apramycin"]]},{"id":"ARO:3003920","l":"pgpB","na":1,"nb":1,"a":[["ARO%3A3003920","pgpB"]],"b":[["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3003924","l":"Haemophilus parainfluenzae gyrA conferring resistance to fluoroquinolones","na":1,"nb":1,"a":[["ARO%3A3003924","Haemophilus parainfluenzae gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003925","l":"Haemophilus parainfluenzae parC conferring resistance to fluoroquinolones","na":1,"nb":1,"a":[["ARO%3A3003925","Haemophilus parainfluenzae parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003930","l":"rpsJ","na":1,"nb":1,"a":[["ARO%3A3003930","rpsJ"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003950","l":"msbA","na":1,"nb":1,"a":[["ARO%3A3003950","msbA"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3003952","l":"YojI","na":1,"nb":1,"a":[["ARO%3A3003952","YojI"]],"b":[["antibacterial/microcin-j25.html","microcin J25"]]},{"id":"ARO:3003954","l":"efmA","na":1,"nb":1,"a":[["ARO%3A3003954","efmA"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003970","l":"D-Ala-D-Ala ligase","na":1,"nb":1,"a":[["ARO%3A3003970","D-Ala-D-Ala ligase"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3003977","l":"Halobacterium salinarum 16S rRNA mutation conferring resistance to pactamycin","na":1,"nb":1,"a":[["ARO%3A3003977","Halobacterium salinarum 16S rRNA mutation conferring resistance to pactamycin"]],"b":[["antibacterial/pactamycin.html","pactamycin"]]},{"id":"ARO:3003978","l":"Chlamydomonas reinhardtii 16S rRNA (rrnS) mutation conferring resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3003978","Chlamydomonas reinhardtii 16S rRNA (rrnS) mutation conferring resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003980","l":"tetA(58)","na":1,"nb":1,"a":[["ARO%3A3003980","tetA(58)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003981","l":"tetB(58)","na":1,"nb":1,"a":[["ARO%3A3003981","tetB(58)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003982","l":"LlmA 23S ribosomal RNA methyltransferase","na":1,"nb":1,"a":[["ARO%3A3003982","LlmA 23S ribosomal RNA methyltransferase"]],"b":[["antibacterial/clindamycin.html","clindamycin"]]},{"id":"ARO:3003984","l":"BahA","na":1,"nb":1,"a":[["ARO%3A3003984","BahA"]],"b":[["antibacterial/bacitracin.html","bacitracin"]]},{"id":"ARO:3003986","l":"TaeA","na":1,"nb":1,"a":[["ARO%3A3003986","TaeA"]],"b":[["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"ARO:3003987","l":"VatI","na":1,"nb":1,"a":[["ARO%3A3003987","VatI"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3003988","l":"","na":1,"nb":1,"a":[["ARO%3A3003988","AAC(2')-IIb"]],"b":[["antifungal/kasugamycin.html","kasugamycin"]]},{"id":"ARO:3003989","l":"","na":1,"nb":1,"a":[["ARO%3A3003989","AAC(6')-34"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004031","l":"tetAB(46)","na":1,"nb":1,"a":[["ARO%3A3004031","tetAB(46)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004034","l":"tetAB(60)","na":1,"nb":1,"a":[["ARO%3A3004034","tetAB(60)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004038","l":"Pseudomonas aeruginosa emrE","na":1,"nb":1,"a":[["ARO%3A3004038","Pseudomonas aeruginosa emrE"]],"b":[["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3004039","l":"Escherichia coli emrE","na":1,"nb":1,"a":[["ARO%3A3004039","Escherichia coli emrE"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004041","l":"Klebsiella pneumoniae acrA","na":1,"nb":1,"a":[["ARO%3A3004041","Klebsiella pneumoniae acrA"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004042","l":"Enterobacter cloacae acrA","na":1,"nb":1,"a":[["ARO%3A3004042","Enterobacter cloacae acrA"]],"b":[["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:3004045","l":"Escherichia coli fabI mutations conferring resistance to isoniazid and triclosan","na":1,"nb":1,"a":[["ARO%3A3004045","Escherichia coli fabI mutations conferring resistance to isoniazid and triclosan"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3004046","l":"kdpDE","na":1,"nb":1,"a":[["ARO%3A3004046","kdpDE"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004049","l":"Escherichia coli fabG mutations conferring resistance to triclosan","na":1,"nb":1,"a":[["ARO%3A3004049","Escherichia coli fabG mutations conferring resistance to triclosan"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3004058","l":"Staphylococcus aureus 23S rRNA with mutation conferring resistance to linezolid","na":1,"nb":1,"a":[["ARO%3A3004058","Staphylococcus aureus 23S rRNA with mutation conferring resistance to linezolid"]],"b":[["antibacterial/linezolid.html","linezolid"]]},{"id":"ARO:3004083","l":"AcrEF-TolC confers resistance to ciprofloxacin","na":1,"nb":1,"a":[["ARO%3A3004083","AcrEF-TolC confers resistance to ciprofloxacin"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004085","l":"lnuG","na":1,"nb":1,"a":[["ARO%3A3004085","lnuG"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3004097","l":"Streptococcus mitis CdsA with mutation conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3004097","Streptococcus mitis CdsA with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3004105","l":"TMB-1","na":1,"nb":1,"a":[["ARO%3A3004105","TMB-1"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3004106","l":"TMB-2","na":1,"nb":1,"a":[["ARO%3A3004106","TMB-2"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3004111","l":"FosA6","na":1,"nb":1,"a":[["ARO%3A3004111","FosA6"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004113","l":"FosA7","na":1,"nb":1,"a":[["ARO%3A3004113","FosA7"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004124","l":"Moraxella catarrhalis M35","na":1,"nb":1,"a":[["ARO%3A3004124","Moraxella catarrhalis M35"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3004132","l":"Chlamydomonas reinhardtii 23S rRNA with mutation conferring resistance to erythromycin","na":1,"nb":1,"a":[["ARO%3A3004132","Chlamydomonas reinhardtii 23S rRNA with mutation conferring resistance to erythromycin"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004133","l":"Brachyspira hyodysenteriae 23S rRNA with mutation conferring resistance to tylosin","na":1,"nb":1,"a":[["ARO%3A3004133","Brachyspira hyodysenteriae 23S rRNA with mutation conferring resistance to tylosin"]],"b":[["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3004134","l":"Helicobacter pylori 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004134","Helicobacter pylori 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004135","l":"Mycobacterium tuberculosis iniB with mutation conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3004135","Mycobacterium tuberculosis iniB with mutation conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3004149","l":"Escherichia coli 23S rRNA with mutation conferring resistance to clindamycin","na":1,"nb":1,"a":[["ARO%3A3004149","Escherichia coli 23S rRNA with mutation conferring resistance to clindamycin"]],"b":[["antibacterial/clindamycin.html","clindamycin"]]},{"id":"ARO:3004150","l":"Escherichia coli 23S rRNA with mutation conferring resistance to chloramphenicol","na":1,"nb":1,"a":[["ARO%3A3004150","Escherichia coli 23S rRNA with mutation conferring resistance to chloramphenicol"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004153","l":"Mycobacterium tuberculosis thyA with mutation conferring resistance to para-aminosalicylic acid","na":1,"nb":1,"a":[["ARO%3A3004153","Mycobacterium tuberculosis thyA with mutation conferring resistance to para-aminosalicylic acid"]],"b":[["antimycobacterial/4-aminosalicylic-acid.html","4-aminosalicylic acid"]]},{"id":"ARO:3004157","l":"Mycobacterium tuberculosis folC with mutation conferring resistance to para-aminosalicylic acid","na":1,"nb":1,"a":[["ARO%3A3004157","Mycobacterium tuberculosis folC with mutation conferring resistance to para-aminosalicylic acid"]],"b":[["antimycobacterial/4-aminosalicylic-acid.html","4-aminosalicylic acid"]]},{"id":"ARO:3004159","l":"Mycoplasma gallisepticum 23S rRNA mutation conferring resistance to pleuromutilin antibiotics","na":1,"nb":1,"a":[["ARO%3A3004159","Mycoplasma gallisepticum 23S rRNA mutation conferring resistance to pleuromutilin antibiotics"]],"b":[["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"ARO:3004160","l":"Escherichia coli 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004160","Escherichia coli 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004161","l":"Propionibacteria 23S rRNA with mutation conferring resistance to macrolide antibiotics","na":1,"nb":1,"a":[["ARO%3A3004161","Propionibacteria 23S rRNA with mutation conferring resistance to macrolide antibiotics"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004163","l":"Mycobacteroides abscessus 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004163","Mycobacteroides abscessus 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004164","l":"Mycobacterium avium 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004164","Mycobacterium avium 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004165","l":"Mycobacteroides chelonae 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004165","Mycobacteroides chelonae 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004166","l":"Mycobacterium intracellulare 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004166","Mycobacterium intracellulare 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004167","l":"Mycobacterium intracellulare 23S rRNA with mutation conferring resistance to azithromycin","na":1,"nb":1,"a":[["ARO%3A3004167","Mycobacterium intracellulare 23S rRNA with mutation conferring resistance to azithromycin"]],"b":[["antibacterial/azithromycin.html","azithromycin"]]},{"id":"ARO:3004168","l":"Mycobacterium kansasii 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004168","Mycobacterium kansasii 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004169","l":"Mycolicibacterium smegmatis 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004169","Mycolicibacterium smegmatis 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004171","l":"Streptomyces ambofaciens 23S rRNA with mutation conferring resistance to macrolide antibiotics","na":1,"nb":1,"a":[["ARO%3A3004171","Streptomyces ambofaciens 23S rRNA with mutation conferring resistance to macrolide antibiotics"]],"b":[["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3004173","l":"Escherichia coli 23S rRNA with mutation conferring resistance to oxazolidinone antibiotics","na":1,"nb":1,"a":[["ARO%3A3004173","Escherichia coli 23S rRNA with mutation conferring resistance to oxazolidinone antibiotics"]],"b":[["antibacterial/linezolid.html","linezolid"]]},{"id":"ARO:3004179","l":"Mycoplasma pneumoniae 23S rRNA mutation conferring resistance to erythromycin","na":1,"nb":1,"a":[["ARO%3A3004179","Mycoplasma pneumoniae 23S rRNA mutation conferring resistance to erythromycin"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004180","l":"Halobacterium halobium 23S rRNA mutation conferring resistance to chloramphenicol","na":1,"nb":1,"a":[["ARO%3A3004180","Halobacterium halobium 23S rRNA mutation conferring resistance to chloramphenicol"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004184","l":"Mycobacterium tuberculosis ribD with mutation conferring resistance to para-aminosalicylic acid","na":1,"nb":1,"a":[["ARO%3A3004184","Mycobacterium tuberculosis ribD with mutation conferring resistance to para-aminosalicylic acid"]],"b":[["antimycobacterial/4-aminosalicylic-acid.html","4-aminosalicylic acid"]]},{"id":"ARO:3004185","l":"mecD","na":1,"nb":1,"a":[["ARO%3A3004185","mecD"]],"b":[["antibacterial/methicillin.html","methicillin"]]},{"id":"ARO:3004289","l":"Vibrio cholerae varG","na":1,"nb":1,"a":[["ARO%3A3004289","Vibrio cholerae varG"]],"b":[["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3004291","l":"Rhodobacter sphaeroides ampC beta-lactamase","na":1,"nb":1,"a":[["ARO%3A3004291","Rhodobacter sphaeroides ampC beta-lactamase"]],"b":[["antibacterial/benzylpenicillin.html","benzylpenicillin"]]},{"id":"ARO:3004334","l":"Salmonella enterica gyrA with mutation conferring resistance to triclosan","na":1,"nb":1,"a":[["ARO%3A3004334","Salmonella enterica gyrA with mutation conferring resistance to triclosan"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3004335","l":"Escherichia coli gyrA with mutation conferring resistance to triclosan","na":1,"nb":1,"a":[["ARO%3A3004335","Escherichia coli gyrA with mutation conferring resistance to triclosan"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3004357","l":"catV","na":1,"nb":1,"a":[["ARO%3A3004357","catV"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004361","l":"sul4","na":1,"nb":1,"a":[["ARO%3A3004361","sul4"]],"b":[["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3004450","l":"TRU-1","na":1,"nb":1,"a":[["ARO%3A3004450","TRU-1"]],"b":[["antibacterial/cefalotin.html","cefalotin"]]},{"id":"ARO:3004451","l":"Agrobacterium fabrum chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004451","Agrobacterium fabrum chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004452","l":"Alkalihalobacillus clausii chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004452","Alkalihalobacillus clausii chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004454","l":"Campylobacter coli chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004454","Campylobacter coli chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004455","l":"Streptococcus suis chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004455","Streptococcus suis chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004456","l":"Enterococcus faecium chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004456","Enterococcus faecium chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004457","l":"Staphylococcus intermedius chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004457","Staphylococcus intermedius chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004458","l":"Enterococcus faecalis chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004458","Enterococcus faecalis chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004460","l":"Vibrio anguillarum chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004460","Vibrio anguillarum chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004480","l":"Bifidobacterium adolescentis rpoB mutants conferring resistance to rifampicin","na":1,"nb":1,"a":[["ARO%3A3004480","Bifidobacterium adolescentis rpoB mutants conferring resistance to rifampicin"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3004498","l":"dfrB4","na":1,"nb":1,"a":[["ARO%3A3004498","dfrB4"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004539","l":"mphH","na":1,"nb":1,"a":[["ARO%3A3004539","mphH"]],"b":[["antibacterial/azithromycin.html","azithromycin"]]},{"id":"ARO:3004542","l":"mphN","na":1,"nb":1,"a":[["ARO%3A3004542","mphN"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004543","l":"mphO","na":1,"nb":1,"a":[["ARO%3A3004543","mphO"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004546","l":"Campylobacter jejuni 23S rRNA with mutation conferring resistance to erythromycin","na":1,"nb":1,"a":[["ARO%3A3004546","Campylobacter jejuni 23S rRNA with mutation conferring resistance to erythromycin"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004547","l":"dfrA6","na":1,"nb":1,"a":[["ARO%3A3004547","dfrA6"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004548","l":"dfrA9","na":1,"nb":1,"a":[["ARO%3A3004548","dfrA9"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004549","l":"dfrB5","na":1,"nb":1,"a":[["ARO%3A3004549","dfrB5"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004550","l":"dfrA27","na":1,"nb":1,"a":[["ARO%3A3004550","dfrA27"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004551","l":"dfrA28","na":1,"nb":1,"a":[["ARO%3A3004551","dfrA28"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004552","l":"dfrA30","na":1,"nb":1,"a":[["ARO%3A3004552","dfrA30"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004554","l":"dfrA29","na":1,"nb":1,"a":[["ARO%3A3004554","dfrA29"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004555","l":"dfrA32","na":1,"nb":1,"a":[["ARO%3A3004555","dfrA32"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004556","l":"dfrB7","na":1,"nb":1,"a":[["ARO%3A3004556","dfrB7"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004561","l":"Clostridioides difficile murG with mutation conferring resistance to vancomycin","na":1,"nb":1,"a":[["ARO%3A3004561","Clostridioides difficile murG with mutation conferring resistance to vancomycin"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3004568","l":"dfrA18","na":1,"nb":1,"a":[["ARO%3A3004568","dfrA18"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004573","l":"Acinetobacter baumannii AbaF","na":1,"nb":1,"a":[["ARO%3A3004573","Acinetobacter baumannii AbaF"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004601","l":"LnuP","na":1,"nb":1,"a":[["ARO%3A3004601","LnuP"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3004605","l":"ermZ","na":1,"nb":1,"a":[["ARO%3A3004605","ermZ"]],"b":[["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3004608","l":"EreD","na":1,"nb":1,"a":[["ARO%3A3004608","EreD"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004622","l":"QnrS10","na":1,"nb":1,"a":[["ARO%3A3004622","QnrS10"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004624","l":"QnrS11","na":1,"nb":1,"a":[["ARO%3A3004624","QnrS11"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004625","l":"QnrS12","na":1,"nb":1,"a":[["ARO%3A3004625","QnrS12"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004627","l":"QnrS15","na":1,"nb":1,"a":[["ARO%3A3004627","QnrS15"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004628","l":"","na":1,"nb":1,"a":[["ARO%3A3004628","AAC(2')-IIa"]],"b":[["antifungal/kasugamycin.html","kasugamycin"]]},{"id":"ARO:3004630","l":"Mycoplasma genitalium parC mutations confers resistance to Moxifloxacin","na":1,"nb":1,"a":[["ARO%3A3004630","Mycoplasma genitalium parC mutations confers resistance to Moxifloxacin"]],"b":[["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3004631","l":"Mycoplasma genitalium gyrA mutation confers resistance to fluoroquinolones","na":1,"nb":1,"a":[["ARO%3A3004631","Mycoplasma genitalium gyrA mutation confers resistance to fluoroquinolones"]],"b":[["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3004636","l":"qnrE1","na":1,"nb":1,"a":[["ARO%3A3004636","qnrE1"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004637","l":"qnrE2","na":1,"nb":1,"a":[["ARO%3A3004637","qnrE2"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004640","l":"dfrA15b","na":1,"nb":1,"a":[["ARO%3A3004640","dfrA15b"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004642","l":"dfrA3b","na":1,"nb":1,"a":[["ARO%3A3004642","dfrA3b"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004643","l":"Erm(K)","na":1,"nb":1,"a":[["ARO%3A3004643","Erm(K)"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004644","l":"dfrA6 from Proteus mirabilis","na":1,"nb":1,"a":[["ARO%3A3004644","dfrA6 from Proteus mirabilis"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004645","l":"dfrI","na":1,"nb":1,"a":[["ARO%3A3004645","dfrI"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004651","l":"lin","na":1,"nb":1,"a":[["ARO%3A3004651","lin"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3004653","l":"tetR(G)","na":1,"nb":1,"a":[["ARO%3A3004653","tetR(G)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004655","l":"nimB","na":1,"nb":1,"a":[["ARO%3A3004655","nimB"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3004656","l":"catII from Escherichia coli K-12","na":1,"nb":1,"a":[["ARO%3A3004656","catII from Escherichia coli K-12"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004657","l":"catA4","na":1,"nb":1,"a":[["ARO%3A3004657","catA4"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004658","l":"catA8","na":1,"nb":1,"a":[["ARO%3A3004658","catA8"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004659","l":"Mef(En2)","na":1,"nb":1,"a":[["ARO%3A3004659","Mef(En2)"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3004660","l":"catB11","na":1,"nb":1,"a":[["ARO%3A3004660","catB11"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004661","l":"Staphylococcus aureus FosB","na":1,"nb":1,"a":[["ARO%3A3004661","Staphylococcus aureus FosB"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004663","l":"FusF","na":1,"nb":1,"a":[["ARO%3A3004663","FusF"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3004665","l":"cmlA8","na":1,"nb":1,"a":[["ARO%3A3004665","cmlA8"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004669","l":"emtA","na":1,"nb":1,"a":[["ARO%3A3004669","emtA"]],"b":[["antibacterial/evernimicin.html","evernimicin"]]},{"id":"ARO:3004670","l":"FosB1","na":1,"nb":1,"a":[["ARO%3A3004670","FosB1"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004671","l":"FosB4","na":1,"nb":1,"a":[["ARO%3A3004671","FosB4"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004672","l":"FosB5","na":1,"nb":1,"a":[["ARO%3A3004672","FosB5"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004673","l":"FosB6","na":1,"nb":1,"a":[["ARO%3A3004673","FosB6"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004674","l":"FosD","na":1,"nb":1,"a":[["ARO%3A3004674","FosD"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004681","l":"Clostridioides difficile rpoC with mutation conferring resistance to vancomycin","na":1,"nb":1,"a":[["ARO%3A3004681","Clostridioides difficile rpoC with mutation conferring resistance to vancomycin"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3004683","l":"aadS","na":1,"nb":1,"a":[["ARO%3A3004683","aadS"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004699","l":"sta","na":1,"nb":1,"a":[["ARO%3A3004699","sta"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"]]},{"id":"ARO:3004730","l":"tva(A)","na":1,"nb":1,"a":[["ARO%3A3004730","tva(A)"]],"b":[["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"ARO:3004835","l":"Neisseria gonorrhoeae pilQ gene conferring resistance to beta-lactam","na":1,"nb":1,"a":[["ARO%3A3004835","Neisseria gonorrhoeae pilQ gene conferring resistance to beta-lactam"]],"b":[["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3004836","l":"Neisseria gonorrhoeae 23S rRNA with mutation conferring resistance to azithromycin","na":1,"nb":1,"a":[["ARO%3A3004836","Neisseria gonorrhoeae 23S rRNA with mutation conferring resistance to azithromycin"]],"b":[["antibacterial/azithromycin.html","azithromycin"]]},{"id":"ARO:3004859","l":"Neisseria gonorrhoeae gyrB conferring resistance to zoliflodacin","na":1,"nb":1,"a":[["ARO%3A3004859","Neisseria gonorrhoeae gyrB conferring resistance to zoliflodacin"]],"b":[["antibacterial/zoliflodacin.html","zoliflodacin"]]},{"id":"ARO:3004860","l":"Burkholderia dolosa gyrA conferring resistance to fluoroquinolones","na":1,"nb":1,"a":[["ARO%3A3004860","Burkholderia dolosa gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004873","l":"Neisseria gonorrhoeae folP with mutation conferring resistance to sulfonamides","na":1,"nb":1,"a":[["ARO%3A3004873","Neisseria gonorrhoeae folP with mutation conferring resistance to sulfonamides"]],"b":[["antibacterial/sulfisoxazole.html","sulfisoxazole"]]},{"id":"ARO:3004876","l":"Mycobacterium tuberculosis inhA mutations conferring resistance to ethionamide","na":1,"nb":1,"a":[["ARO%3A3004876","Mycobacterium tuberculosis inhA mutations conferring resistance to ethionamide"]],"b":[["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"ARO:3004921","l":"Mycobacterium tuberculosis ahpC mutations confer resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004921","Mycobacterium tuberculosis ahpC mutations confer resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004922","l":"Mycobacterium tuberculosis fabG1 mutations confer resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004922","Mycobacterium tuberculosis fabG1 mutations confer resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004923","l":"Mycobacterium tuberculosis furA mutations confer resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004923","Mycobacterium tuberculosis furA mutations confer resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004924","l":"Mycobacterium tuberculosis inbR mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004924","Mycobacterium tuberculosis inbR mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004925","l":"Mycobacterium tuberculosis mshA mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004925","Mycobacterium tuberculosis mshA mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004927","l":"Mycobacterium tuberculosis mshC mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004927","Mycobacterium tuberculosis mshC mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004928","l":"Mycobacterium tuberculosis mymA mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004928","Mycobacterium tuberculosis mymA mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004929","l":"Mycobacterium tuberculosis mmaA3 mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004929","Mycobacterium tuberculosis mmaA3 mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004931","l":"Mycobacterium tuberculosis nudC mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004931","Mycobacterium tuberculosis nudC mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004932","l":"Mycobacterium tuberculosis sigI mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004932","Mycobacterium tuberculosis sigI mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004933","l":"Mycobacterium tuberculosis fabG1 mutation conferring resistance to ethionamide","na":1,"nb":1,"a":[["ARO%3A3004933","Mycobacterium tuberculosis fabG1 mutation conferring resistance to ethionamide"]],"b":[["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"ARO:3004934","l":"Mycobacterium tuberculosis mshC mutations conferring resistance to ethionamide","na":1,"nb":1,"a":[["ARO%3A3004934","Mycobacterium tuberculosis mshC mutations conferring resistance to ethionamide"]],"b":[["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"ARO:3004935","l":"Mycobacterium tuberculosis nudC mutations conferring resistance to ethionamide","na":1,"nb":1,"a":[["ARO%3A3004935","Mycobacterium tuberculosis nudC mutations conferring resistance to ethionamide"]],"b":[["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"ARO:3004941","l":"Mycobacterium tuberculosis ddlA mutations confer resistance to cycloserine","na":1,"nb":1,"a":[["ARO%3A3004941","Mycobacterium tuberculosis ddlA mutations confer resistance to cycloserine"]],"b":[["antimycobacterial/d-cycloserine.html","D-cycloserine"]]},{"id":"ARO:3004945","l":"Mycobacterium tuberculosis ald mutations confer resistance to cycloserine","na":1,"nb":1,"a":[["ARO%3A3004945","Mycobacterium tuberculosis ald mutations confer resistance to cycloserine"]],"b":[["antimycobacterial/d-cycloserine.html","D-cycloserine"]]},{"id":"ARO:3004947","l":"Mycobacterium tuberculosis alr with mutation conferring resistance to cycloserine","na":1,"nb":1,"a":[["ARO%3A3004947","Mycobacterium tuberculosis alr with mutation conferring resistance to cycloserine"]],"b":[["antimycobacterial/d-cycloserine.html","D-cycloserine"]]},{"id":"ARO:3004950","l":"Mycobacterium tuberculosis ubiA mutations confer resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3004950","Mycobacterium tuberculosis ubiA mutations confer resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3004951","l":"Mycobacterium tuberculosis aftA mutations confer resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3004951","Mycobacterium tuberculosis aftA mutations confer resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3004955","l":"Mycobacterium tuberculosis Rv0565c mutation conferring resistance to ethionamide","na":1,"nb":1,"a":[["ARO%3A3004955","Mycobacterium tuberculosis Rv0565c mutation conferring resistance to ethionamide"]],"b":[["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"ARO:3004956","l":"Neisseria gonorrhoeae rpld","na":1,"nb":1,"a":[["ARO%3A3004956","Neisseria gonorrhoeae rpld"]],"b":[["antibacterial/azithromycin.html","azithromycin"]]},{"id":"ARO:3004957","l":"Mycobacterium tuberculosis clpC1 with mutation conferring resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004957","Mycobacterium tuberculosis clpC1 with mutation conferring resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004963","l":"Mycobacterium tuberculosis eis mutations confer resistance to kanamycin","na":1,"nb":1,"a":[["ARO%3A3004963","Mycobacterium tuberculosis eis mutations confer resistance to kanamycin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004967","l":"Mycobacterium tuberculosis whib7 mutations confer resistance to kanamycin","na":1,"nb":1,"a":[["ARO%3A3004967","Mycobacterium tuberculosis whib7 mutations confer resistance to kanamycin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004968","l":"Mycobacterium tuberculosis whib7 mutation conferring resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3004968","Mycobacterium tuberculosis whib7 mutation conferring resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004971","l":"Mycobacterium tuberculosis Rv1258c mutations confer resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3004971","Mycobacterium tuberculosis Rv1258c mutations confer resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004975","l":"Mycobacterium tuberculosis ppsC mutations confer resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004975","Mycobacterium tuberculosis ppsC mutations confer resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004976","l":"Mycobacterium tuberculosis ppsD mutations confer resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004976","Mycobacterium tuberculosis ppsD mutations confer resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004977","l":"Mycobacterium tuberculosis gpsI with mutations conferring resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004977","Mycobacterium tuberculosis gpsI with mutations conferring resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004978","l":"Mycobacterium tuberculosis mas mutations confer resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004978","Mycobacterium tuberculosis mas mutations confer resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004981","l":"Mycobacterium tuberculosis Rv0191 mutations confer resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004981","Mycobacterium tuberculosis Rv0191 mutations confer resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004984","l":"Mycobacterium tuberculosis Rv1667 mutations confer resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004984","Mycobacterium tuberculosis Rv1667 mutations confer resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004987","l":"Mycobacterium tuberculosis Rv2731 mutations confer resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004987","Mycobacterium tuberculosis Rv2731 mutations confer resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004993","l":"Mycobacterium tuberculosis Rv3169 mutations confer resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004993","Mycobacterium tuberculosis Rv3169 mutations confer resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004999","l":"Mycobacterium tuberculosis rpoA mutations confer resistance to rifampicin","na":1,"nb":1,"a":[["ARO%3A3004999","Mycobacterium tuberculosis rpoA mutations confer resistance to rifampicin"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3005006","l":"tet(57)","na":1,"nb":1,"a":[["ARO%3A3005006","tet(57)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3005007","l":"QnrVC2","na":1,"nb":1,"a":[["ARO%3A3005007","QnrVC2"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3005024","l":"FosL1","na":1,"nb":1,"a":[["ARO%3A3005024","FosL1"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3005036","l":"BLMT","na":1,"nb":1,"a":[["ARO%3A3005036","BLMT"]],"b":[["antibacterial/bleomycin.html","bleomycin"]]},{"id":"ARO:3005043","l":"cmlA9","na":1,"nb":1,"a":[["ARO%3A3005043","cmlA9"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3005045","l":"SatA","na":1,"nb":1,"a":[["ARO%3A3005045","SatA"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"]]},{"id":"ARO:3005058","l":"mlaFEDB","na":1,"nb":1,"a":[["ARO%3A3005058","mlaFEDB"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3005083","l":"Thermus thermophilus 23s rRNA conferring resistance to pleuromutilin antibiotics","na":1,"nb":1,"a":[["ARO%3A3005083","Thermus thermophilus 23s rRNA conferring resistance to pleuromutilin antibiotics"]],"b":[["antibacterial/tiamulin.html","tiamulin"]]},{"id":"ARO:3005084","l":"dfrA31","na":1,"nb":1,"a":[["ARO%3A3005084","dfrA31"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005087","l":"msrF","na":1,"nb":1,"a":[["ARO%3A3005087","msrF"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3005088","l":"msrH","na":1,"nb":1,"a":[["ARO%3A3005088","msrH"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3005089","l":"mef(D)","na":1,"nb":1,"a":[["ARO%3A3005089","mef(D)"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3005099","l":"23S rRNA (adenine(2058)-N(6))-methyltransferase Erm(A)","na":1,"nb":1,"a":[["ARO%3A3005099","23S rRNA (adenine(2058)-N(6))-methyltransferase Erm(A)"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3005100","l":"FosB2","na":1,"nb":1,"a":[["ARO%3A3005100","FosB2"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3005102","l":"Mycobacterium tuberculosis katG mutations conferring resistance to prothionamide","na":1,"nb":1,"a":[["ARO%3A3005102","Mycobacterium tuberculosis katG mutations conferring resistance to prothionamide"]],"b":[["antibacterial/prothionamide.html","prothionamide"]]},{"id":"ARO:3005105","l":"Mycobacterium tuberculosis ethA mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3005105","Mycobacterium tuberculosis ethA mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3005106","l":"Mycobacterium tuberculosis ethA mutations conferring resistance to prothionamide","na":1,"nb":1,"a":[["ARO%3A3005106","Mycobacterium tuberculosis ethA mutations conferring resistance to prothionamide"]],"b":[["antibacterial/prothionamide.html","prothionamide"]]},{"id":"ARO:3005108","l":"Mycobacterium tuberculosis mshA mutations conferring resistance to prothionamide","na":1,"nb":1,"a":[["ARO%3A3005108","Mycobacterium tuberculosis mshA mutations conferring resistance to prothionamide"]],"b":[["antibacterial/prothionamide.html","prothionamide"]]},{"id":"ARO:3005162","l":"FosA7.5","na":1,"nb":1,"a":[["ARO%3A3005162","FosA7.5"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3005164","l":"dfrA35","na":1,"nb":1,"a":[["ARO%3A3005164","dfrA35"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005178","l":"Mycobacterium tuberculosis ethA mutations conferring resistance to perchlozone","na":1,"nb":1,"a":[["ARO%3A3005178","Mycobacterium tuberculosis ethA mutations conferring resistance to perchlozone"]],"b":[["antibacterial/perchlozone.html","perchlozone"]]},{"id":"ARO:3005255","l":"TEM-224","na":1,"nb":1,"a":[["ARO%3A3005255","TEM-224"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005256","l":"TEM-225","na":1,"nb":1,"a":[["ARO%3A3005256","TEM-225"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005257","l":"TEM-226","na":1,"nb":1,"a":[["ARO%3A3005257","TEM-226"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005258","l":"TEM-227","na":1,"nb":1,"a":[["ARO%3A3005258","TEM-227"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005259","l":"TEM-228","na":1,"nb":1,"a":[["ARO%3A3005259","TEM-228"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005260","l":"TEM-229","na":1,"nb":1,"a":[["ARO%3A3005260","TEM-229"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005261","l":"TEM-230","na":1,"nb":1,"a":[["ARO%3A3005261","TEM-230"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005262","l":"TEM-231","na":1,"nb":1,"a":[["ARO%3A3005262","TEM-231"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005263","l":"TEM-232","na":1,"nb":1,"a":[["ARO%3A3005263","TEM-232"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005264","l":"TEM-233","na":1,"nb":1,"a":[["ARO%3A3005264","TEM-233"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005265","l":"TEM-234","na":1,"nb":1,"a":[["ARO%3A3005265","TEM-234"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005266","l":"TEM-235","na":1,"nb":1,"a":[["ARO%3A3005266","TEM-235"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005267","l":"TEM-236","na":1,"nb":1,"a":[["ARO%3A3005267","TEM-236"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005268","l":"TEM-237","na":1,"nb":1,"a":[["ARO%3A3005268","TEM-237"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005269","l":"TEM-238","na":1,"nb":1,"a":[["ARO%3A3005269","TEM-238"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005270","l":"TEM-240","na":1,"nb":1,"a":[["ARO%3A3005270","TEM-240"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005271","l":"TEM-241","na":1,"nb":1,"a":[["ARO%3A3005271","TEM-241"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005272","l":"TEM-242","na":1,"nb":1,"a":[["ARO%3A3005272","TEM-242"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005273","l":"TEM-243","na":1,"nb":1,"a":[["ARO%3A3005273","TEM-243"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005334","l":"Trimethoprim-resistant dihydrofolate reductase DfrA42","na":1,"nb":1,"a":[["ARO%3A3005334","Trimethoprim-resistant dihydrofolate reductase DfrA42"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005345","l":"Trimethoprim-resistant dihydrofolate reductase DfrA43","na":1,"nb":1,"a":[["ARO%3A3005345","Trimethoprim-resistant dihydrofolate reductase DfrA43"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005346","l":"DfrA34","na":1,"nb":1,"a":[["ARO%3A3005346","DfrA34"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005347","l":"DfrA37","na":1,"nb":1,"a":[["ARO%3A3005347","DfrA37"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005348","l":"DfrA36","na":1,"nb":1,"a":[["ARO%3A3005348","DfrA36"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005349","l":"DfrA38","na":1,"nb":1,"a":[["ARO%3A3005349","DfrA38"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005350","l":"DfrB9","na":1,"nb":1,"a":[["ARO%3A3005350","DfrB9"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005351","l":"DfrA39","na":1,"nb":1,"a":[["ARO%3A3005351","DfrA39"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005354","l":"dfr22","na":1,"nb":1,"a":[["ARO%3A3005354","dfr22"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3006139","l":"TEM-98","na":1,"nb":1,"a":[["ARO%3A3006139","TEM-98"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3006140","l":"TEM-99","na":1,"nb":1,"a":[["ARO%3A3006140","TEM-99"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3006228","l":"ACC-1a","na":1,"nb":1,"a":[["ARO%3A3006228","ACC-1a"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3006229","l":"ACC-1b","na":1,"nb":1,"a":[["ARO%3A3006229","ACC-1b"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3006230","l":"ACC-1c","na":1,"nb":1,"a":[["ARO%3A3006230","ACC-1c"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3006231","l":"ACC-1d","na":1,"nb":1,"a":[["ARO%3A3006231","ACC-1d"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3006232","l":"ACC-7","na":1,"nb":1,"a":[["ARO%3A3006232","ACC-7"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3006233","l":"ACC-8","na":1,"nb":1,"a":[["ARO%3A3006233","ACC-8"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007003","l":"VHH-1","na":1,"nb":1,"a":[["ARO%3A3007003","VHH-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"]]},{"id":"ARO:3007004","l":"VHW-1","na":1,"nb":1,"a":[["ARO%3A3007004","VHW-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"]]},{"id":"ARO:3007005","l":"YEM-1","na":1,"nb":1,"a":[["ARO%3A3007005","YEM-1"]],"b":[["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3007012","l":"sepA","na":1,"nb":1,"a":[["ARO%3A3007012","sepA"]],"b":[["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3007013","l":"sdrM","na":1,"nb":1,"a":[["ARO%3A3007013","sdrM"]],"b":[["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3007014","l":"qacJ","na":1,"nb":1,"a":[["ARO%3A3007014","qacJ"]],"b":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"]]},{"id":"ARO:3007015","l":"qacG","na":1,"nb":1,"a":[["ARO%3A3007015","qacG"]],"b":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"]]},{"id":"ARO:3007019","l":"fexB","na":1,"nb":1,"a":[["ARO%3A3007019","fexB"]],"b":[["antibacterial/florfenicol.html","florfenicol"]]},{"id":"ARO:3007041","l":"Erm(52)","na":1,"nb":1,"a":[["ARO%3A3007041","Erm(52)"]],"b":[["antibacterial/clindamycin.html","clindamycin"]]},{"id":"ARO:3007043","l":"msr(I)","na":1,"nb":1,"a":[["ARO%3A3007043","msr(I)"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007052","l":"Helicobacter pylori gyrA conferring resistance to fluoroquinolones","na":1,"nb":1,"a":[["ARO%3A3007052","Helicobacter pylori gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"ARO:3007057","l":"Helicobacter pylori pbp3 conferring resistance to amoxicillin","na":1,"nb":1,"a":[["ARO%3A3007057","Helicobacter pylori pbp3 conferring resistance to amoxicillin"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3007058","l":"Helicobacter pylori pbp2 mutants conferring resistance to amoxicillin","na":1,"nb":1,"a":[["ARO%3A3007058","Helicobacter pylori pbp2 mutants conferring resistance to amoxicillin"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3007059","l":"Helicobacter pylori frxA mutation conferring resistance to metronidazole","na":1,"nb":1,"a":[["ARO%3A3007059","Helicobacter pylori frxA mutation conferring resistance to metronidazole"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007060","l":"Helicobacter pylori pbp1 mutants conferring resistance to amoxicillin","na":1,"nb":1,"a":[["ARO%3A3007060","Helicobacter pylori pbp1 mutants conferring resistance to amoxicillin"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3007061","l":"hp1165","na":1,"nb":1,"a":[["ARO%3A3007061","hp1165"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007069","l":"FosY","na":1,"nb":1,"a":[["ARO%3A3007069","FosY"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007073","l":"Bacillus subtilis rpoB mutants conferring resistance to rifampin","na":1,"nb":1,"a":[["ARO%3A3007073","Bacillus subtilis rpoB mutants conferring resistance to rifampin"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3007097","l":"FosM1","na":1,"nb":1,"a":[["ARO%3A3007097","FosM1"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007098","l":"FosM2","na":1,"nb":1,"a":[["ARO%3A3007098","FosM2"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007099","l":"FosM3","na":1,"nb":1,"a":[["ARO%3A3007099","FosM3"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007104","l":"nimA","na":1,"nb":1,"a":[["ARO%3A3007104","nimA"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007105","l":"nimC","na":1,"nb":1,"a":[["ARO%3A3007105","nimC"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007106","l":"nimD","na":1,"nb":1,"a":[["ARO%3A3007106","nimD"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007107","l":"nimE","na":1,"nb":1,"a":[["ARO%3A3007107","nimE"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007108","l":"nimF","na":1,"nb":1,"a":[["ARO%3A3007108","nimF"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007109","l":"nimG","na":1,"nb":1,"a":[["ARO%3A3007109","nimG"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007110","l":"nimH","na":1,"nb":1,"a":[["ARO%3A3007110","nimH"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007111","l":"nimI","na":1,"nb":1,"a":[["ARO%3A3007111","nimI"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007112","l":"nimJ","na":1,"nb":1,"a":[["ARO%3A3007112","nimJ"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007113","l":"nimK","na":1,"nb":1,"a":[["ARO%3A3007113","nimK"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007119","l":"tet(O/32/O)","na":1,"nb":1,"a":[["ARO%3A3007119","tet(O/32/O)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007120","l":"tet(O/M/O)","na":1,"nb":1,"a":[["ARO%3A3007120","tet(O/M/O)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007121","l":"tet(O/W)","na":1,"nb":1,"a":[["ARO%3A3007121","tet(O/W)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007122","l":"tet(O/W/32/O)","na":1,"nb":1,"a":[["ARO%3A3007122","tet(O/W/32/O)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007123","l":"tet(O/W/O)","na":1,"nb":1,"a":[["ARO%3A3007123","tet(O/W/O)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007124","l":"tet(W/32/O)","na":1,"nb":1,"a":[["ARO%3A3007124","tet(W/32/O)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007127","l":"Streptomyces lividans otr(A)","na":1,"nb":1,"a":[["ARO%3A3007127","Streptomyces lividans otr(A)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007185","l":"Mycobacterium tuberculosis Rv1258c mutations confer resistance to ethambutol and capreomycin","na":1,"nb":1,"a":[["ARO%3A3007185","Mycobacterium tuberculosis Rv1258c mutations confer resistance to ethambutol and capreomycin"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3007200","l":"PAM-2","na":1,"nb":1,"a":[["ARO%3A3007200","PAM-2"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007210","l":"Nocardia farcinica rox","na":1,"nb":1,"a":[["ARO%3A3007210","Nocardia farcinica rox"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3007368","l":"FosG","na":1,"nb":1,"a":[["ARO%3A3007368","FosG"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007369","l":"FosH","na":1,"nb":1,"a":[["ARO%3A3007369","FosH"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007370","l":"FosI","na":1,"nb":1,"a":[["ARO%3A3007370","FosI"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007371","l":"FosA8","na":1,"nb":1,"a":[["ARO%3A3007371","FosA8"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007372","l":"FosBx1","na":1,"nb":1,"a":[["ARO%3A3007372","FosBx1"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007381","l":"KPC-86","na":1,"nb":1,"a":[["ARO%3A3007381","KPC-86"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007383","l":"KPC-95","na":1,"nb":1,"a":[["ARO%3A3007383","KPC-95"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007401","l":"ANT(9)-Ib","na":1,"nb":1,"a":[["ARO%3A3007401","ANT(9)-Ib"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3007420","l":"Klebsiella pneumoniae lamB with mutations conferring resistance to ceftazidime-avibactam","na":1,"nb":1,"a":[["ARO%3A3007420","Klebsiella pneumoniae lamB with mutations conferring resistance to ceftazidime-avibactam"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007421","l":"Klebsiella pneumoniae PBP3 mutants conferring resistance to ceftazidime-avibactam","na":1,"nb":1,"a":[["ARO%3A3007421","Klebsiella pneumoniae PBP3 mutants conferring resistance to ceftazidime-avibactam"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007427","l":"ThfT","na":1,"nb":1,"a":[["ARO%3A3007427","ThfT"]],"b":[["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3007436","l":"KPC-96","na":1,"nb":1,"a":[["ARO%3A3007436","KPC-96"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007446","l":"KPC-100","na":1,"nb":1,"a":[["ARO%3A3007446","KPC-100"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007448","l":"TEM-246","na":1,"nb":1,"a":[["ARO%3A3007448","TEM-246"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007449","l":"KPC-97","na":1,"nb":1,"a":[["ARO%3A3007449","KPC-97"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007450","l":"KPC-98","na":1,"nb":1,"a":[["ARO%3A3007450","KPC-98"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007451","l":"TEM-247","na":1,"nb":1,"a":[["ARO%3A3007451","TEM-247"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007452","l":"KPC-99","na":1,"nb":1,"a":[["ARO%3A3007452","KPC-99"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007453","l":"TEM-244","na":1,"nb":1,"a":[["ARO%3A3007453","TEM-244"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007454","l":"TEM-245","na":1,"nb":1,"a":[["ARO%3A3007454","TEM-245"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007459","l":"EstT","na":1,"nb":1,"a":[["ARO%3A3007459","EstT"]],"b":[["antibacterial/tilmicosin.html","tilmicosin"]]},{"id":"ARO:3007476","l":"Mycobacterium abscessus atpE with mutation conferring resistance to bedaquiline","na":1,"nb":1,"a":[["ARO%3A3007476","Mycobacterium abscessus atpE with mutation conferring resistance to bedaquiline"]],"b":[["antimycobacterial/bedaquiline.html","bedaquiline"]]},{"id":"ARO:3007489","l":"dfrB10","na":1,"nb":1,"a":[["ARO%3A3007489","dfrB10"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3007490","l":"dfrB11","na":1,"nb":1,"a":[["ARO%3A3007490","dfrB11"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3007491","l":"Pseudomonas aeruginosa ampR with mutation conferring resistance to aztreonam","na":1,"nb":1,"a":[["ARO%3A3007491","Pseudomonas aeruginosa ampR with mutation conferring resistance to aztreonam"]],"b":[["antibacterial/aztreonam.html","aztreonam"]]},{"id":"ARO:3007492","l":"tet(62)","na":1,"nb":1,"a":[["ARO%3A3007492","tet(62)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007509","l":"Shigella flexneri acrA","na":1,"nb":1,"a":[["ARO%3A3007509","Shigella flexneri acrA"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3007515","l":"ANT(9)-Ic","na":1,"nb":1,"a":[["ARO%3A3007515","ANT(9)-Ic"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3007527","l":"Bacillus subtilis rpsE mutations conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3007527","Bacillus subtilis rpsE mutations conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3007536","l":"Mycobacterium tuberculosis 16S rRNA (rrnS) mutation conferring resistance to amikacin","na":1,"nb":1,"a":[["ARO%3A3007536","Mycobacterium tuberculosis 16S rRNA (rrnS) mutation conferring resistance to amikacin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3007537","l":"Mycobacterium tuberculosis 16S rRNA (rrnS) mutation conferring resistance to kanamycin","na":1,"nb":1,"a":[["ARO%3A3007537","Mycobacterium tuberculosis 16S rRNA (rrnS) mutation conferring resistance to kanamycin"]],"b":[["antibacterial/amikacin.html","amikacin"]]},{"id":"ARO:3007539","l":"APH(9)-Ic","na":1,"nb":1,"a":[["ARO%3A3007539","APH(9)-Ic"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3007544","l":"Erysipelothrix rhusiopathiae gyrA with mutation conferring resistance to enrofloxacin","na":1,"nb":1,"a":[["ARO%3A3007544","Erysipelothrix rhusiopathiae gyrA with mutation conferring resistance to enrofloxacin"]],"b":[["antibacterial/enrofloxacin.html","enrofloxacin"]]},{"id":"ARO:3007548","l":"Candida spp. FKS2 with mutations conferring resistance to echinocandin antibiotics","na":1,"nb":1,"a":[["ARO%3A3007548","Candida spp. FKS2 with mutations conferring resistance to echinocandin antibiotics"]],"b":[["antifungal/micafungin.html","micafungin"]]},{"id":"ARO:3007551","l":"Candida spp. Upc2 with mutations conferring resistance to azole antibiotics","na":1,"nb":1,"a":[["ARO%3A3007551","Candida spp. Upc2 with mutations conferring resistance to azole antibiotics"]],"b":[["antifungal/fluconazole.html","fluconazole"]]},{"id":"ARO:3007557","l":"Candida spp. FUR1 with mutations conferring resistance to 5-flucytosine","na":1,"nb":1,"a":[["ARO%3A3007557","Candida spp. FUR1 with mutations conferring resistance to 5-flucytosine"]],"b":[["antifungal/flucytosine.html","flucytosine"]]},{"id":"ARO:3007559","l":"Saccharomyces spp. FUR1 with mutations conferring resistance to 5-flucytosine","na":1,"nb":1,"a":[["ARO%3A3007559","Saccharomyces spp. FUR1 with mutations conferring resistance to 5-flucytosine"]],"b":[["antifungal/flucytosine.html","flucytosine"]]},{"id":"ARO:3007561","l":"OXA-1038","na":1,"nb":1,"a":[["ARO%3A3007561","OXA-1038"]],"b":[["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3007562","l":"OXA-1039","na":1,"nb":1,"a":[["ARO%3A3007562","OXA-1039"]],"b":[["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3007566","l":"Cryptococcus spp. AFR1","na":1,"nb":1,"a":[["ARO%3A3007566","Cryptococcus spp. AFR1"]],"b":[["antifungal/fluconazole.html","fluconazole"]]},{"id":"ARO:3007568","l":"Cryptococcus spp. UXS1 conferring resistance to 5-flucytosine via absence","na":1,"nb":1,"a":[["ARO%3A3007568","Cryptococcus spp. UXS1 conferring resistance to 5-flucytosine via absence"]],"b":[["antifungal/flucytosine.html","flucytosine"]]},{"id":"ARO:3007642","l":"Aspergillus spp. fcyB conferring resistance to 5-flucytosine via reduced permeability","na":1,"nb":1,"a":[["ARO%3A3007642","Aspergillus spp. fcyB conferring resistance to 5-flucytosine via reduced permeability"]],"b":[["antifungal/flucytosine.html","flucytosine"]]},{"id":"ARO:3007664","l":"Candida spp. High Osmolarity Glycerol 1 conferring resistance to caspofungin via absence","na":1,"nb":1,"a":[["ARO%3A3007664","Candida spp. High Osmolarity Glycerol 1 conferring resistance to caspofungin via absence"]],"b":[["antifungal/caspofungin.html","caspofungin"]]},{"id":"ARO:3007665","l":"Candida spp. FCY2 conferring resistance to 5-flucytosine via reduced permeability","na":1,"nb":1,"a":[["ARO%3A3007665","Candida spp. FCY2 conferring resistance to 5-flucytosine via reduced permeability"]],"b":[["antifungal/flucytosine.html","flucytosine"]]},{"id":"ARO:3007671","l":"Clostridioides difficile nimB","na":1,"nb":1,"a":[["ARO%3A3007671","Clostridioides difficile nimB"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007674","l":"Mycobacterium tuberculosis Rv0678 with mutation conferring resistance to bedaquiline","na":1,"nb":1,"a":[["ARO%3A3007674","Mycobacterium tuberculosis Rv0678 with mutation conferring resistance to bedaquiline"]],"b":[["antimycobacterial/bedaquiline.html","bedaquiline"]]},{"id":"ARO:3007678","l":"IreK","na":1,"nb":1,"a":[["ARO%3A3007678","IreK"]],"b":[["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3007749","l":"Salmonella gallinarum folP with mutation conferring resistance to sulfonamides","na":1,"nb":1,"a":[["ARO%3A3007749","Salmonella gallinarum folP with mutation conferring resistance to sulfonamides"]],"b":[["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3007759","l":"Treponema pallidum 23S rRNA with mutation conferring resistance to erythromycin","na":1,"nb":1,"a":[["ARO%3A3007759","Treponema pallidum 23S rRNA with mutation conferring resistance to erythromycin"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3007794","l":"Vibrio vulnificus rpoB mutants conferring resistance to rifampin","na":1,"nb":1,"a":[["ARO%3A3007794","Vibrio vulnificus rpoB mutants conferring resistance to rifampin"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3007798","l":"Mycobacterium tuberculosis iniA mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3007798","Mycobacterium tuberculosis iniA mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3007806","l":"Mycobacterium tuberculosis gyrA mutations conferring resistance to moxifloxacin","na":1,"nb":1,"a":[["ARO%3A3007806","Mycobacterium tuberculosis gyrA mutations conferring resistance to moxifloxacin"]],"b":[["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3007807","l":"Mycobacterium tuberculosis gyrA mutations conferring resistance to ofloxacin","na":1,"nb":1,"a":[["ARO%3A3007807","Mycobacterium tuberculosis gyrA mutations conferring resistance to ofloxacin"]],"b":[["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3007808","l":"Mycobacterium tuberculosis gyrB mutations conferring resistance to ofloxacin","na":1,"nb":1,"a":[["ARO%3A3007808","Mycobacterium tuberculosis gyrB mutations conferring resistance to ofloxacin"]],"b":[["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3007809","l":"Mycobacterium tuberculosis gyrA mutations conferring resistance to levofloxacin","na":1,"nb":1,"a":[["ARO%3A3007809","Mycobacterium tuberculosis gyrA mutations conferring resistance to levofloxacin"]],"b":[["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"ARO:3007810","l":"Mycobacterium tuberculosis gyrB mutations conferring resistance to levofloxacin","na":1,"nb":1,"a":[["ARO%3A3007810","Mycobacterium tuberculosis gyrB mutations conferring resistance to levofloxacin"]],"b":[["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"ARO:3007811","l":"Mycobacterium tuberculosis fabG1 with mutations conferring resistance to prothionamide","na":1,"nb":1,"a":[["ARO%3A3007811","Mycobacterium tuberculosis fabG1 with mutations conferring resistance to prothionamide"]],"b":[["antibacterial/prothionamide.html","prothionamide"]]},{"id":"ARO:3007838","l":"tet(65)","na":1,"nb":1,"a":[["ARO%3A3007838","tet(65)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007843","l":"VRA-F","na":1,"nb":1,"a":[["ARO%3A3007843","VRA-F"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3007849","l":"Mycobacterium tuberculosis fgd1 with mutation conferring resistance to delamanid","na":1,"nb":1,"a":[["ARO%3A3007849","Mycobacterium tuberculosis fgd1 with mutation conferring resistance to delamanid"]],"b":[["antibacterial/delamanid.html","delamanid"]]},{"id":"ARO:3007852","l":"Mycobacterium tuberculosis Rv0678 with mutation conferring resistance to clofazimine","na":1,"nb":1,"a":[["ARO%3A3007852","Mycobacterium tuberculosis Rv0678 with mutation conferring resistance to clofazimine"]],"b":[["antimycobacterial/clofazimine.html","clofazimine"]]},{"id":"ARO:3007854","l":"Mycobacterium tuberculosis atpE with mutation conferring resistance to bedaquiline","na":1,"nb":1,"a":[["ARO%3A3007854","Mycobacterium tuberculosis atpE with mutation conferring resistance to bedaquiline"]],"b":[["antimycobacterial/bedaquiline.html","bedaquiline"]]},{"id":"ARO:3007857","l":"KPC-134","na":1,"nb":1,"a":[["ARO%3A3007857","KPC-134"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"CHEBI:10015","l":"vobasine","na":1,"nb":1,"a":[["RHEA%3A76147","perivine + S-adenosyl-L-methionine = vobasine + S-adenosyl-L-homocysteine + 2 H(+)"]],"b":[["antiviral/vobasine.html","vobasine"]]},{"id":"CHEBI:100241","l":"ciprofloxacin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CPF","CPF-binding site"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"CHEBI:127780","l":"phosphonoformic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PPF","PPF-binding site"]],"b":[["antiviral/phosphonoformic-acid.html","phosphonoformic acid"]]},{"id":"CHEBI:133741","l":"(E)-dodec-2-enal","na":1,"nb":1,"a":[["RHEA%3A50784","dodecanal + NADP(+) = (2E)-dodecenal + NADPH + H(+)"]],"b":[["antibacterial/e-dodec-2-enal.html","(E)-dodec-2-enal"]]},{"id":"CHEBI:134347","l":"glandicoline B","na":1,"nb":1,"a":[["RHEA%3A51732","glandicoline B + S-adenosyl-L-methionine = meleagrin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/glandicoline-b.html","glandicoline B"]]},{"id":"CHEBI:135029","l":"cycloguanil","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_1CY","1CY-binding site"]],"b":[["antiprotozoal/cycloguanil.html","cycloguanil"]]},{"id":"CHEBI:137236","l":"ilomastat","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_GM6","GM6-binding site"]],"b":[["antibacterial/ilomastat.html","ilomastat"]]},{"id":"CHEBI:138511","l":"piericidin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HQH","HQH-binding site"]],"b":[["unspecified/piericidin-a.html","piericidin A"]]},{"id":"CHEBI:140376","l":"cefiderocol","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_140376","requires cefiderocol"]],"b":[["antibacterial/cefiderocol.html","cefiderocol"]]},{"id":"CHEBI:142921","l":"","na":1,"nb":1,"a":[["RHEA%3A79335","cinnamyl alcohol + 2 Fe(III)-[cytochrome c] = cinnamaldehyde + 2 Fe(II)-[cytochrome c] + 2 H(+)"]],"b":[["antifungal/e-cinnamaldehyde.html","(E)-cinnamaldehyde"]]},{"id":"CHEBI:144586","l":"4-hydroxy-2-oxobutanal","na":1,"nb":1,"a":[["RHEA%3A21212","N(6)-(3-O-phospho-D-erythrulosyl)-L-lysyl-[protein] + H2O = 4-hydroxy-2-oxobutanal + L-lysyl-[protein] + phosphate"]],"b":[["antibacterial/4-hydroxy-2-oxobutanal.html","4-hydroxy-2-oxobutanal"]]},{"id":"CHEBI:145026","l":"L-psicose","na":1,"nb":1,"a":[["RHEA%3A61784","L-allulose = keto-L-fructose"]],"b":[["antiviral/l-psicose.html","L-psicose"]]},{"id":"CHEBI:145043","l":"solasodine(1+)","na":1,"nb":1,"a":[["RHEA%3A61844","solasodine + UDP-alpha-D-glucose = solasodine 3-beta-D-glucoside + UDP + H(+)"]],"b":[["antifungal/solasodine-1.html","solasodine(1+)"]]},{"id":"CHEBI:145950","l":"nigerone","na":1,"nb":1,"a":[["RHEA%3A62792","2 rubrofusarin B + NADPH + O2 + 3 H(+) = nigerone + NADP(+) + 2 H2O"]],"b":[["antifungal/nigerone.html","nigerone"]]},{"id":"CHEBI:146007","l":"(M)-viriditoxin","na":1,"nb":1,"a":[["RHEA%3A62884","4 semiviriditoxin + O2 = 2 (M)-viriditoxin + 2 H2O"]],"b":[["antibacterial/m-viriditoxin.html","(M)-viriditoxin"]]},{"id":"CHEBI:15353","l":"blasticidin S","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BLS","BLS-binding site"]],"b":[["antifungal/blasticidin-s.html","blasticidin S"]]},{"id":"CHEBI:155860","l":"2,4-dihydroxy-3-methyl-6-(2-oxopropyl)benzaldehyde","na":1,"nb":1,"a":[["RHEA%3A64508","4 malonyl-CoA + acetyl-CoA + AH2 + S-adenosyl-L-methionine + 3 H(+) = 2,4-dihydroxy-3-methyl-6-(2-oxopropyl)benzaldehyde + A + S-adenosyl-L-homocysteine + 4 CO2 + 5 CoA + H2O"]],"b":[["antibacterial/2-4-dihydroxy-3-methyl-6-2-oxopropyl-benzaldehyde.html","2,4-dihydroxy-3-methyl-6-(2-oxopropyl)benzaldehyde"]]},{"id":"CHEBI:156070","l":"butyl benzoate","na":1,"nb":1,"a":[["RHEA%3A64636","butan-1-ol + benzoyl-CoA = butyl benzoate + CoA"]],"b":[["biocide/butyl-benzoate.html","butyl benzoate"]]},{"id":"CHEBI:156511","l":"poacic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_V5M","V5M-binding site"]],"b":[["antifungal/poacic-acid.html","poacic acid"]]},{"id":"CHEBI:15732","l":"phosphonoacetic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PAE","PAE-binding site"]],"b":[["antiviral/phosphonoacetic-acid.html","phosphonoacetic acid"]]},{"id":"CHEBI:15756","l":"palmitic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PLM","PLM-binding site"]],"b":[["antibacterial/palmitic-acid.html","palmitic acid"]]},{"id":"CHEBI:16243","l":"quercetin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_QUE","QUE-binding site"]],"b":[["antibacterial/quercetin.html","quercetin"]]},{"id":"CHEBI:16348","l":"3-nitropropanoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_3NP","3NP-binding site"]],"b":[["antimycobacterial/3-nitropropanoic-acid.html","3-nitropropanoic acid"]]},{"id":"CHEBI:164200","l":"triclosan","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TCL","TCL-binding site"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"CHEBI:167176","l":"GRL-0617","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TTT","TTT-binding site"]],"b":[["antiviral/grl-0617.html","GRL-0617"]]},{"id":"CHEBI:168396","l":"mycophenolic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MOA","MOA-binding site"]],"b":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]]},{"id":"CHEBI:16914","l":"salicylic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SAL","SAL-binding site"]],"b":[["antifungal/salicylic-acid.html","salicylic acid"]]},{"id":"CHEBI:16961","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"]],"b":[["antibacterial/bacilysocin.html","bacilysocin"]]},{"id":"CHEBI:17351","l":"linoleic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_EIC","EIC-binding site"]],"b":[["antibacterial/linoleic-acid.html","linoleic acid"]]},{"id":"CHEBI:17558","l":"quercitrin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_QCT","QCT-binding site"]],"b":[["antiprotozoal/quercitrin.html","quercitrin"]]},{"id":"CHEBI:175901","l":"gemcitabine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_GEO","GEO-binding site"]],"b":[["antiviral/gemcitabine.html","gemcitabine"]]},{"id":"CHEBI:17642","l":"pentachlorophenol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PCI","PCI-binding site"]],"b":[["antifungal/pentachlorophenol.html","pentachlorophenol"]]},{"id":"CHEBI:17656","l":"(R)-mandelic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RMN","RMN-binding site"]],"b":[["antibacterial/r-mandelic-acid.html","(R)-mandelic acid"]]},{"id":"CHEBI:17658","l":"tylosin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TYK","TYK-binding site"]],"b":[["antibacterial/tylosin.html","tylosin"]]},{"id":"CHEBI:177047","l":"velutin","na":1,"nb":1,"a":[["RHEA%3A73083","chrysoeriol + S-adenosyl-L-methionine = velutin + S-adenosyl-L-homocysteine"]],"b":[["antibacterial/velutin.html","velutin"]]},{"id":"CHEBI:177878","l":"","na":1,"nb":1,"a":[["RHEA%3A68396","a percarboxylic acid + H2O = a carboxylate + H2O2 + H(+)"]],"b":[["biocide/peracetic-acid.html","peracetic acid"]]},{"id":"CHEBI:18203","l":"penicillin N","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["unspecified/penicillin-n.html","penicillin N"]]},{"id":"CHEBI:18208","l":"benzylpenicillin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PNN","PNN-binding site"]],"b":[["antibacterial/benzylpenicillin.html","benzylpenicillin"]]},{"id":"CHEBI:190786","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_KIR","KIR-binding site"]],"b":[["antibacterial/kirromycin.html","kirromycin"]]},{"id":"CHEBI:194138","l":"methyl trans-cinnamate","na":1,"nb":1,"a":[["RHEA%3A74871","(E)-cinnamate + S-adenosyl-L-methionine = (E)-cinnamic acid methyl ester + S-adenosyl-L-homocysteine"]],"b":[["antibacterial/methyl-trans-cinnamate.html","methyl trans-cinnamate"]]},{"id":"CHEBI:220158","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BLJ","BLJ-binding site"]],"b":[["antibacterial/arsinothricin.html","arsinothricin"]]},{"id":"CHEBI:22632","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.59","The Arsenical Resistance-3 (ACR3) Family"]],"b":[["antibacterial/sodium-arsenite.html","sodium arsenite"]]},{"id":"CHEBI:231919","l":"fluopsin","na":1,"nb":1,"a":[["RHEA%3A82395","thiohydroxamate + S-adenosyl-L-methionine = fluopsin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/fluopsin.html","fluopsin"]]},{"id":"CHEBI:233443","l":"","na":1,"nb":1,"a":[["RHEA%3A83863","an L-alpha-amino acid + acetyl-CoA = an N-acetyl-L-alpha-amino acid + CoA + H(+)"]],"b":[["antiviral/n-acetyl-l-cysteinate.html","N-acetyl-L-cysteinate"]]},{"id":"CHEBI:234507","l":"2-chloroacetamide","na":1,"nb":1,"a":[["RHEA%3A85695","chloroacetamide = chloroacetonitrile + H2O"]],"b":[["antifungal/2-chloroacetamide.html","2-chloroacetamide"]]},{"id":"CHEBI:23981","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"CHEBI:24402","l":"","na":1,"nb":1,"a":[["TCDB%3A3.A.3","The P-type ATPase (P-ATPase) Superfamily"]],"b":[["antifungal/oceanalin-a.html","oceanalin A"]]},{"id":"CHEBI:2637","l":"amikacin","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/amikacin.html","amikacin"]]},{"id":"CHEBI:2674","l":"amodiaquine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CQA","CQA-binding site"]],"b":[["antiprotozoal/amodiaquine.html","amodiaquine"]]},{"id":"CHEBI:2682","l":"amphotericin B","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_4UH","4UH-binding site"]],"b":[["antifungal/amphotericin-b.html","amphotericin B"]]},{"id":"CHEBI:27093","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.54","The Sideroflexin (SFXN) Family (formerly the Mitochondrial Tricarboxylate Carrier (MTC) Family)"]],"b":[["unspecified/citric-acid.html","citric acid"]]},{"id":"CHEBI:27779","l":"griseofulvin","na":1,"nb":1,"a":[["RHEA%3A73943","dehydrogriseofulvin + NADPH + H(+) = griseofulvin + NADP(+)"]],"b":[["antibacterial/griseofulvin.html","griseofulvin"]]},{"id":"CHEBI:27784","l":"gentamycin C1a","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_LLL","LLL-binding site"]],"b":[["unspecified/gentamycin-c1a.html","gentamycin C1a"]]},{"id":"CHEBI:27834","l":"pentostatin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DCF","DCF-binding site"]],"b":[["unspecified/pentostatin.html","pentostatin"]]},{"id":"CHEBI:27860","l":"castanospermine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CTS","CTS-binding site"]],"b":[["antiviral/castanospermine.html","castanospermine"]]},{"id":"CHEBI:28098","l":"kanamycin B","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9CS","9CS-binding site"]],"b":[["unspecified/kanamycin-b.html","kanamycin B"]]},{"id":"CHEBI:28121","l":"harmine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HRM","HRM-binding site"]],"b":[["antiviral/harmine.html","harmine"]]},{"id":"CHEBI:28147","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_8MM","8MM-binding site"]],"b":[["unspecified/n2-acetylgentamycin-c1a.html","N2'-acetylgentamycin C1a"]]},{"id":"CHEBI:28148","l":"sodium stibogluconate","na":1,"nb":1,"a":[["TCDB%3A1.A.8","The Major Intrinsic Protein (MIP) Family"]],"b":[["antiprotozoal/sodium-stibogluconate.html","sodium stibogluconate"]]},{"id":"CHEBI:28217","l":"acrylonitrile","na":1,"nb":1,"a":[["RHEA%3A85611","acrylamide = acrylonitrile + H2O"]],"b":[["antifungal/acrylonitrile.html","acrylonitrile"]]},{"id":"CHEBI:28285","l":"oligomycin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_EFO","EFO-binding site"]],"b":[["antifungal/oligomycin-a.html","oligomycin A"]]},{"id":"CHEBI:28368","l":"novobiocin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NOV","NOV-binding site"]],"b":[["antibacterial/novobiocin.html","novobiocin"]]},{"id":"CHEBI:28499","l":"kaempferol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_KMP","KMP-binding site"]],"b":[["antibacterial/kaempferol.html","kaempferol"]]},{"id":"CHEBI:28631","l":"3-phenylpropionic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HCI","HCI-binding site"]],"b":[["antifungal/3-phenylpropionic-acid.html","3-phenylpropionic acid"]]},{"id":"CHEBI:28748","l":"doxorubicin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DM2","DM2-binding site"]],"b":[["unspecified/doxorubicin.html","doxorubicin"]]},{"id":"CHEBI:28837","l":"octanoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_OCA","OCA-binding site"]],"b":[["antibacterial/octanoic-acid.html","octanoic acid"]]},{"id":"CHEBI:28864","l":"tobramycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TOY","TOY-binding site"]],"b":[["antibacterial/tobramycin.html","tobramycin"]]},{"id":"CHEBI:28905","l":"prop-2-yn-1-ol","na":1,"nb":1,"a":[["RHEA%3A31247","prop-2-ynal + pyrroloquinoline quinol + H(+) = prop-2-yn-1-ol + pyrroloquinoline quinone"]],"b":[["antifungal/prop-2-yn-1-ol.html","prop-2-yn-1-ol"]]},{"id":"CHEBI:28939","l":"N-acetyl-L-cysteine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SC2","SC2-binding site"]],"b":[["antiviral/n-acetyl-l-cysteine.html","N-acetyl-L-cysteine"]]},{"id":"CHEBI:2896","l":"astemizole","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_XB7","XB7-binding site"]],"b":[["antiviral/astemizole.html","astemizole"]]},{"id":"CHEBI:28971","l":"ampicillin","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/ampicillin.html","ampicillin"]]},{"id":"CHEBI:29013","l":"fusidic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_FUA","FUA-binding site"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"CHEBI:29014","l":"cordycepin","na":1,"nb":1,"a":[["RHEA%3A79047","cordycepin + H2O + H(+) = 3'-deoxyinosine + NH4(+)"]],"b":[["antibacterial/cordycepin.html","cordycepin"]]},{"id":"CHEBI:29582","l":"ascomycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_KXX","KXX-binding site"]],"b":[["antifungal/ascomycin.html","ascomycin"]]},{"id":"CHEBI:29699","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"]],"b":[["antibacterial/tunicamycin.html","tunicamycin"]]},{"id":"CHEBI:29703","l":"validamycin A","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/validamycin-a.html","validamycin A"]]},{"id":"CHEBI:3000","l":"beauvericin","na":1,"nb":1,"a":[["RHEA%3A62276","3 (R)-2-hydroxy-3-methylbutanoate + 3 L-phenylalanine + 3 S-adenosyl-L-methionine + 6 ATP = beauvericin + 6 AMP + 3 S-adenosyl-L-homocysteine + 6 diphosphate + 6 H(+)"]],"b":[["antifungal/beauvericin.html","beauvericin"]]},{"id":"CHEBI:3015","l":"benomyl","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/benomyl.html","benomyl"]]},{"id":"CHEBI:30769","l":"citric acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CIT","CIT-binding site"]],"b":[["unspecified/citric-acid.html","citric acid"]]},{"id":"CHEBI:30813","l":"decanoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DKA","DKA-binding site"]],"b":[["antibacterial/decanoic-acid.html","decanoic acid"]]},{"id":"CHEBI:3087","l":"betulinic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_06L","06L-binding site"]],"b":[["antiprotozoal/betulinic-acid.html","betulinic acid"]]},{"id":"CHEBI:315019","l":"cilofungin","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/cilofungin.html","cilofungin"]]},{"id":"CHEBI:31781","l":"lopinavir","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antiviral/lopinavir.html","lopinavir"]]},{"id":"CHEBI:31856","l":"mithramycin","na":1,"nb":1,"a":[["RHEA%3A85455","iso-mithramycin = mithramycin"]],"b":[["unspecified/mithramycin.html","mithramycin"]]},{"id":"CHEBI:32079","l":"pyrrolnitrin","na":1,"nb":1,"a":[["RHEA%3A46136","aminopyrrolnitrin + NADPH + 2 O2 + H(+) = pyrrolnitrin + NADP(+) + 2 H2O"]],"b":[["antifungal/pyrrolnitrin.html","pyrrolnitrin"]]},{"id":"CHEBI:32174","l":"","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/syringomycin-e.html","syringomycin E"]]},{"id":"CHEBI:32368","l":"undecanoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_11A","11A-binding site"]],"b":[["antifungal/undecanoic-acid.html","undecanoic acid"]]},{"id":"CHEBI:3259","l":"CCCP","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/cccp.html","CCCP"]]},{"id":"CHEBI:32800","l":"(S)-mandelic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SMN","SMN-binding site"]],"b":[["antibacterial/s-mandelic-acid.html","(S)-mandelic acid"]]},{"id":"CHEBI:32888","l":"γ-hexachlorocyclohexane","na":1,"nb":1,"a":[["RHEA%3A45480","gamma-hexachlorocyclohexane = (3R,4S,5S,6R)-pentachlorocyclohexene + chloride + H(+)"]],"b":[["antibacterial/%CE%B3-hexachlorocyclohexane.html","γ-hexachlorocyclohexane"]]},{"id":"CHEBI:3405","l":"carboxin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CBE","CBE-binding site"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"CHEBI:34652","l":"compactin diol lactone","na":1,"nb":1,"a":[["RHEA%3A62744","mevastatin + H2O = compactin diol lactone + (S)-2-methylbutanoate + H(+)"]],"b":[["unspecified/compactin-diol-lactone.html","compactin diol lactone"]]},{"id":"CHEBI:34908","l":"pentachloronitrobenzene","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/pentachloronitrobenzene.html","pentachloronitrobenzene"]]},{"id":"CHEBI:3493","l":"cefoperazone","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/cefoperazone.html","cefoperazone"]]},{"id":"CHEBI:3503","l":"cefpirome","na":1,"nb":1,"a":[["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"]],"b":[["antibacterial/cefpirome.html","cefpirome"]]},{"id":"CHEBI:35356","l":"","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/cycloheximide.html","cycloheximide"]]},{"id":"CHEBI:3537","l":"cefaloridine","na":1,"nb":1,"a":[["TCDB%3A1.B.6","The OmpA-OmpF Porin (OOP) Family"]],"b":[["antibacterial/cefaloridine.html","cefaloridine"]]},{"id":"CHEBI:3547","l":"cephradine","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/cephradine.html","cephradine"]]},{"id":"CHEBI:35817","l":"roxarsone","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/roxarsone.html","roxarsone"]]},{"id":"CHEBI:36243","l":"","na":1,"nb":1,"a":[["RHEA%3A48484","a propanoate ester + H2O = an aliphatic alcohol + propanoate + H(+)"]],"b":[["antifungal/metarylpicoxamid.html","metarylpicoxamid"]]},{"id":"CHEBI:3639","l":"chlorothalonil","na":1,"nb":1,"a":[["RHEA%3A65016","chlorothalonil + H2O = 4-hydroxychlorothalonil + chloride + 2 H(+)"]],"b":[["antifungal/chlorothalonil.html","chlorothalonil"]]},{"id":"CHEBI:3647","l":"chlorpromazine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_Z80","Z80-binding site"]],"b":[["antiviral/chlorpromazine.html","chlorpromazine"]]},{"id":"CHEBI:367163","l":"darunavir","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_017","017-binding site"]],"b":[["antiviral/darunavir.html","darunavir"]]},{"id":"CHEBI:36843","l":"","na":1,"nb":1,"a":[["RHEA%3A82271","7alpha-hydroxy steroid + NADP(+) = a 7-oxosteroid + NADPH + H(+)"]],"b":[["antifungal/9%CE%BE-14%CE%BE-25s-cholestane-3%CE%B2-4%CE%B2-6%CE%B2-7%CE%B1-8-15%CE%B1-16%CE%B2-26-octol.html","(9ξ,14ξ,25S)-cholestane-3β,4β,6β,7α,8,15α,16β,26-octol"]]},{"id":"CHEBI:3687","l":"chrysophanol","na":1,"nb":1,"a":[["RHEA%3A64276","chrysophanol-9-anthrone + O2 = chrysophanol + H2O"]],"b":[["antiviral/chrysophanol.html","chrysophanol"]]},{"id":"CHEBI:3745","l":"clindamycin","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/clindamycin.html","clindamycin"]]},{"id":"CHEBI:3749","l":"clofazimine","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antimycobacterial/clofazimine.html","clofazimine"]]},{"id":"CHEBI:37924","l":"atazanavir","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DR7","DR7-binding site"]],"b":[["antiviral/atazanavir.html","atazanavir"]]},{"id":"CHEBI:38167","l":"physcion","na":1,"nb":1,"a":[["RHEA%3A76767","emodin + S-adenosyl-L-methionine = physcion + S-adenosyl-L-homocysteine"]],"b":[["antibacterial/physcion.html","physcion"]]},{"id":"CHEBI:38291","l":"dihydrostreptomycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_71R","71R-binding site"]],"b":[["unspecified/dihydrostreptomycin.html","dihydrostreptomycin"]]},{"id":"CHEBI:38320","l":"(+)-usnic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_AIY","AIY-binding site"]],"b":[["antifungal/usnic-acid-38320.html","(+)-usnic acid"]]},{"id":"CHEBI:39352","l":"","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["unspecified/nifursol.html","nifursol"]]},{"id":"CHEBI:39932","l":"(R)-oct-1-en-3-ol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_3OL","3OL-binding site"]],"b":[["unspecified/r-oct-1-en-3-ol.html","(R)-oct-1-en-3-ol"]]},{"id":"CHEBI:40009","l":"D-cycloserine","na":1,"nb":1,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"]],"b":[["antimycobacterial/d-cycloserine.html","D-cycloserine"]]},{"id":"CHEBI:40021","l":"tiratricol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_4HY","4HY-binding site"]],"b":[["antiviral/tiratricol.html","tiratricol"]]},{"id":"CHEBI:404903","l":"ertapenem","na":1,"nb":1,"a":[["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"]],"b":[["antibacterial/ertapenem.html","ertapenem"]]},{"id":"CHEBI:41425","l":"(7R)-7-(4-carboxybutanamido)cephalosporanic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CEN","CEN-binding site"]],"b":[["unspecified/7r-7-4-carboxybutanamido-cephalosporanic-acid.html","(7R)-7-(4-carboxybutanamido)cephalosporanic acid"]]},{"id":"CHEBI:41688","l":"crystal violet","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/crystal-violet.html","crystal violet"]]},{"id":"CHEBI:41872","l":"dequalinium","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/dequalinium.html","dequalinium"]]},{"id":"CHEBI:41977","l":"daunorubicin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DM1","DM1-binding site"]],"b":[["unspecified/daunorubicin.html","daunorubicin"]]},{"id":"CHEBI:42068","l":"idarubicin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DM5","DM5-binding site"]],"b":[["unspecified/idarubicin.html","idarubicin"]]},{"id":"CHEBI:42355","l":"erythromycin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ERY","ERY-binding site"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"CHEBI:42471","l":"forskolin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_FOK","FOK-binding site"]],"b":[["antiviral/forskolin.html","forskolin"]]},{"id":"CHEBI:42600","l":"L-fucitol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_FOC","FOC-binding site"]],"b":[["antibacterial/l-fucitol.html","L-fucitol"]]},{"id":"CHEBI:42680","l":"(2-cis,6-cis)-farnesol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_FOH","FOH-binding site"]],"b":[["unspecified/2-cis-6-cis-farnesol.html","(2-cis,6-cis)-farnesol"]]},{"id":"CHEBI:43040","l":"hadacidin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HDA","HDA-binding site"]],"b":[["unspecified/hadacidin.html","hadacidin"]]},{"id":"CHEBI:4309","l":"dalfopristin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DOL","DOL-binding site"]],"b":[["antibacterial/dalfopristin.html","dalfopristin"]]},{"id":"CHEBI:43616","l":"K-252a","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_KSA","KSA-binding site"]],"b":[["unspecified/k-252a.html","K-252a"]]},{"id":"CHEBI:44032","l":"indinavir","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MK1","MK1-binding site"]],"b":[["antiviral/indinavir.html","indinavir"]]},{"id":"CHEBI:44369","l":"duvoglustat","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NOJ","NOJ-binding site"]],"b":[["antiviral/duvoglustat.html","duvoglustat"]]},{"id":"CHEBI:44499","l":"methyl nonanoate","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NON","NON-binding site"]],"b":[["antifungal/methyl-nonanoate.html","methyl nonanoate"]]},{"id":"CHEBI:45141","l":"pyroquilon","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PYQ","PYQ-binding site"]],"b":[["antifungal/pyroquilon.html","pyroquilon"]]},{"id":"CHEBI:45257","l":"ribostamycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RIO","RIO-binding site"]],"b":[["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"CHEBI:45304","l":"rifapentine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RPT","RPT-binding site"]],"b":[["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"CHEBI:45307","l":"seliciclib","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RRC","RRC-binding site"]],"b":[["antiviral/seliciclib.html","seliciclib"]]},{"id":"CHEBI:45367","l":"rifabutin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RBT","RBT-binding site"]],"b":[["antibacterial/rifabutin.html","rifabutin"]]},{"id":"CHEBI:45395","l":"pyrithiamine pyrophosphate","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PYI","PYI-binding site"]],"b":[["unspecified/pyrithiamine-pyrophosphate.html","pyrithiamine pyrophosphate"]]},{"id":"CHEBI:45409","l":"ritonavir","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RIT","RIT-binding site"]],"b":[["antiviral/ritonavir.html","ritonavir"]]},{"id":"CHEBI:45490","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RVP","RVP-binding site"]],"b":[["antiviral/ribavirin-5-monophosphate.html","ribavirin 5'-monophosphate"]]},{"id":"CHEBI:45906","l":"suramin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SVR","SVR-binding site"]],"b":[["antiprotozoal/suramin.html","suramin"]]},{"id":"CHEBI:45924","l":"trimethoprim","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TOP","TOP-binding site"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"CHEBI:45979","l":"thiabendazole","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TMG","TMG-binding site"]],"b":[["antifungal/thiabendazole.html","thiabendazole"]]},{"id":"CHEBI:46024","l":"trichostatin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TSN","TSN-binding site"]],"b":[["antifungal/trichostatin-a.html","trichostatin A"]]},{"id":"CHEBI:46345","l":"5-fluorouracil","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_URF","URF-binding site"]],"b":[["antifungal/5-fluorouracil.html","5-Fluorouracil"]]},{"id":"CHEBI:4640","l":"diphenylamine","na":1,"nb":1,"a":[["TCDB%3A9.A.11","The Dipicolinic Acid Transporter (DPA-T) Family"]],"b":[["antifungal/diphenylamine.html","diphenylamine"]]},{"id":"CHEBI:4672","l":"docetaxel anhydrous","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antiprotozoal/docetaxel-anhydrous.html","docetaxel anhydrous"]]},{"id":"CHEBI:46953","l":"","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["unspecified/adxanthromycin-a.html","adxanthromycin A"]]},{"id":"CHEBI:473992","l":"nystatin A1","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_A1AZ7","A1AZ7-binding site"]],"b":[["antifungal/nystatin-a1.html","nystatin A1"]]},{"id":"CHEBI:47780","l":"clomipramine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CXX","CXX-binding site"]],"b":[["antiviral/clomipramine.html","clomipramine"]]},{"id":"CHEBI:48131","l":"nonanedioic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_AZ1","AZ1-binding site"]],"b":[["antibacterial/nonanedioic-acid.html","nonanedioic acid"]]},{"id":"CHEBI:48267","l":"tubercidin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TBN","TBN-binding site"]],"b":[["antifungal/tubercidin.html","tubercidin"]]},{"id":"CHEBI:48545","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.67","The Oligopeptide Transporter (OPT) Family"]],"b":[["unspecified/n-palmitoyl-s-2-3-bis-palmitoyloxy-propyl-cys-ser-lys-lys-lys-lys.html","N-palmitoyl-S-[2,3-bis(palmitoyloxy)propyl]-Cys-Ser-Lys-Lys-Lys-Lys"]]},{"id":"CHEBI:48811","l":"(R)-chloroquine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CLQ","CLQ-binding site"]],"b":[["antiprotozoal/r-chloroquine.html","(R)-chloroquine"]]},{"id":"CHEBI:4893","l":"ethyl acetoacetate","na":1,"nb":1,"a":[["RHEA%3A68144","ethyl 3-oxobutanoate + NADPH + H(+) = ethyl (R)-3-hydroxybutanoate + NADP(+)"]],"b":[["antibacterial/ethyl-acetoacetate.html","ethyl acetoacetate"]]},{"id":"CHEBI:48947","l":"clavulanic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_J01","J01-binding site"]],"b":[["antibacterial/clavulanic-acid.html","clavulanic acid"]]},{"id":"CHEBI:48958","l":"diamide","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["unspecified/diamide.html","diamide"]]},{"id":"CHEBI:49026","l":"N-acetyl-α-neuraminic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SIA","SIA-binding site"]],"b":[["antiviral/n-acetyl-%CE%B1-neuraminic-acid.html","N-acetyl-α-neuraminic acid"]]},{"id":"CHEBI:49375","l":"dasatinib (anhydrous)","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_1N1","1N1-binding site"]],"b":[["antiviral/dasatinib-anhydrous.html","dasatinib (anhydrous)"]]},{"id":"CHEBI:50381","l":"miglustat","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NBV","NBV-binding site"]],"b":[["antiviral/miglustat.html","miglustat"]]},{"id":"CHEBI:50437","l":"nocardamine","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_50437","requires desferrioxamine E"]],"b":[["antibacterial/nocardamine.html","nocardamine"]]},{"id":"CHEBI:50663","l":"zanamivir","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ZMR","ZMR-binding site"]],"b":[["antiviral/zanamivir.html","zanamivir"]]},{"id":"CHEBI:50694","l":"minocycline","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MIY","MIY-binding site"]],"b":[["antibacterial/minocycline.html","minocycline"]]},{"id":"CHEBI:52172","l":"nilotinib","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NIL","NIL-binding site"]],"b":[["antiviral/nilotinib.html","nilotinib"]]},{"id":"CHEBI:52289","l":"wortmannin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_KWT","KWT-binding site"]],"b":[["antiviral/wortmannin.html","wortmannin"]]},{"id":"CHEBI:52316","l":"cordycepin triphosphate","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_3AT","3AT-binding site"]],"b":[["antifungal/cordycepin-triphosphate.html","cordycepin triphosphate"]]},{"id":"CHEBI:52646","l":"leptomycin B","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/leptomycin-b.html","leptomycin B"]]},{"id":"CHEBI:52717","l":"bortezomib","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BO2","BO2-binding site"]],"b":[["antiprotozoal/bortezomib.html","bortezomib"]]},{"id":"CHEBI:556075","l":"radicicol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RDC","RDC-binding site"]],"b":[["antifungal/radicicol.html","radicicol"]]},{"id":"CHEBI:575568","l":"atovaquone","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_AOQ","AOQ-binding site"]],"b":[["antifungal/atovaquone.html","atovaquone"]]},{"id":"CHEBI:59349","l":"cefepime(1+)","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9WT","9WT-binding site"]],"b":[["unspecified/cefepime-1.html","cefepime(1+)"]]},{"id":"CHEBI:60761","l":"floxuridine","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antiviral/floxuridine.html","floxuridine"]]},{"id":"CHEBI:623918","l":"nikkomycin Z","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BGI","BGI-binding site"]],"b":[["antifungal/nikkomycin-z.html","nikkomycin Z"]]},{"id":"CHEBI:63207","l":"mycinamicin III","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ZM3","ZM3-binding site"]],"b":[["unspecified/mycinamicin-iii.html","mycinamicin III"]]},{"id":"CHEBI:63285","l":"mycinamicin VI","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MVI","MVI-binding site"]],"b":[["unspecified/mycinamicin-vi.html","mycinamicin VI"]]},{"id":"CHEBI:63580","l":"ribavirin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RBV","RBV-binding site"]],"b":[["antiviral/ribavirin.html","ribavirin"]]},{"id":"CHEBI:63599","l":"fludarabine phosphate","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antiviral/fludarabine-phosphate.html","fludarabine phosphate"]]},{"id":"CHEBI:63611","l":"moxifloxacin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MFX","MFX-binding site"]],"b":[["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"CHEBI:63624","l":"telbivudine","na":1,"nb":1,"a":[["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"]],"b":[["antiviral/telbivudine.html","telbivudine"]]},{"id":"CHEBI:63684","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_YMZ","YMZ-binding site"]],"b":[["antiprotozoal/11r-2-s-erythro-mefloquine.html","(+)-(11R,2'S)-erythro-mefloquine"]]},{"id":"CHEBI:64250","l":"tunicamycin B2","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9LH","9LH-binding site"]],"b":[["unspecified/tunicamycin-b2.html","tunicamycin B2"]]},{"id":"CHEBI:64355","l":"posaconazole","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_X2N","X2N-binding site"]],"b":[["antifungal/posaconazole.html","posaconazole"]]},{"id":"CHEBI:66065","l":"IC202A","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_66065","requires IC202A"]],"b":[["unspecified/ic202a.html","IC202A"]]},{"id":"CHEBI:66067","l":"IC202C","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_66067","requires IC202C"]],"b":[["unspecified/ic202c.html","IC202C"]]},{"id":"CHEBI:66104","l":"jaspamide","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9UE","9UE-binding site"]],"b":[["antifungal/jaspamide.html","jaspamide"]]},{"id":"CHEBI:66222","l":"thiomarinol C","na":1,"nb":1,"a":[["RHEA%3A75895","marinoloyl-CoA C + holothin = thiomarinol C + CoA"]],"b":[["antibacterial/thiomarinol-c.html","thiomarinol C"]]},{"id":"CHEBI:67121","l":"nitroxoline","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HNQ","HNQ-binding site"]],"b":[["antifungal/nitroxoline.html","nitroxoline"]]},{"id":"CHEBI:67559","l":"5Z-7-oxozeaenol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_1FM","1FM-binding site"]],"b":[["antibacterial/5z-7-oxozeaenol.html","5Z-7-oxozeaenol"]]},{"id":"CHEBI:67811","l":"zorbamycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_52G","52G-binding site"]],"b":[["unspecified/zorbamycin.html","zorbamycin"]]},{"id":"CHEBI:68241","l":"platencin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_N32","N32-binding site"]],"b":[["antibacterial/platencin.html","platencin"]]},{"id":"CHEBI:6827","l":"methicillin","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/methicillin.html","methicillin"]]},{"id":"CHEBI:6909","l":"metronidazole","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"CHEBI:6923","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/miconazole.html","miconazole"]]},{"id":"CHEBI:7025","l":"mupirocin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MRC","MRC-binding site"]],"b":[["antibacterial/mupirocin.html","mupirocin"]]},{"id":"CHEBI:70508","l":"(16R,19E)-isositsirikine","na":1,"nb":1,"a":[["RHEA%3A83839","(19E)-geissoschizine + NADPH + H(+) = (16R,19E)-isositsirikine + NADP(+)"]],"b":[["antifungal/16r-19e-isositsirikine.html","(16R,19E)-isositsirikine"]]},{"id":"CHEBI:72292","l":"bedaquiline","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BQ1","BQ1-binding site"]],"b":[["antimycobacterial/bedaquiline.html","bedaquiline"]]},{"id":"CHEBI:72687","l":"bacilysin","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["unspecified/bacilysin.html","bacilysin"]]},{"id":"CHEBI:73079","l":"kanamycin D","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CJX","CJX-binding site"]],"b":[["unspecified/kanamycin-d.html","kanamycin D"]]},{"id":"CHEBI:73139","l":"oseltamivir acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_G39","G39-binding site"]],"b":[["antiviral/oseltamivir-acid.html","oseltamivir acid"]]},{"id":"CHEBI:73224","l":"allyl isothiocyanate","na":1,"nb":1,"a":[["RHEA%3A69272","(Z)-N-(sulfonatooxy)prop-2-enimidothioate = allyl isothiocyanate + sulfate"]],"b":[["unspecified/allyl-isothiocyanate.html","allyl isothiocyanate"]]},{"id":"CHEBI:73481","l":"asukamycin","na":1,"nb":1,"a":[["RHEA%3A75139","4-hydroxyprotoasukamycin + NADH + O2 + H(+) = asukamycin + NAD(+) + H2O"]],"b":[["antibacterial/asukamycin.html","asukamycin"]]},{"id":"CHEBI:74846","l":"azaserine","na":1,"nb":1,"a":[["TCDB%3A2.A.76","The Resistance to Homoserine/Threonine (RhtB) Family"]],"b":[["antifungal/azaserine.html","azaserine"]]},{"id":"CHEBI:7489","l":"neamine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_XXX","XXX-binding site"]],"b":[["antibacterial/neamine.html","neamine"]]},{"id":"CHEBI:74926","l":"patulin","na":1,"nb":1,"a":[["RHEA%3A62228","(E)-ascladiol + A = patulin + AH2"]],"b":[["unspecified/patulin.html","patulin"]]},{"id":"CHEBI:7508","l":"framycetin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NMY","NMY-binding site"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"CHEBI:75092","l":"morin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MRI","MRI-binding site"]],"b":[["antibacterial/morin.html","morin"]]},{"id":"CHEBI:75283","l":"miltefosine","na":1,"nb":1,"a":[["TCDB%3A3.A.3","The P-type ATPase (P-ATPase) Superfamily"]],"b":[["antifungal/miltefosine.html","miltefosine"]]},{"id":"CHEBI:75998","l":"trametinib","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_QOM","QOM-binding site"]],"b":[["antiviral/trametinib.html","trametinib"]]},{"id":"CHEBI:76010","l":"dolutegravir","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DLU","DLU-binding site"]],"b":[["antiviral/dolutegravir.html","dolutegravir"]]},{"id":"CHEBI:76244","l":"sapienic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_8Z9","8Z9-binding site"]],"b":[["antibacterial/sapienic-acid.html","sapienic acid"]]},{"id":"CHEBI:76293","l":"azadirone","na":1,"nb":1,"a":[["RHEA%3A80387","(1S,3bR,4R,5aR,9aR,9bR,11aS)-1-(1-hydroxy-4-oxobutan-2-yl)-3b,6,6,9a,11a-pentamethyl-7-oxo-1H,2H,3bH,4H,5H,5aH,6H,7H,9aH,9bH,10H,11H,11aH-cyclopenta[a]phenanthren-4-yl acetate + 2-oxoglutarate + O2 = azadirone + succinate + CO2 + 2 H2O"]],"b":[["antiprotozoal/azadirone.html","azadirone"]]},{"id":"CHEBI:76944","l":"13-epi-manool","na":1,"nb":1,"a":[["RHEA%3A40015","(+)-copalyl diphosphate + H2O = 13-epi-manool + diphosphate"]],"b":[["antifungal/13-epi-manool.html","13-epi-manool"]]},{"id":"CHEBI:76945","l":"manool","na":1,"nb":1,"a":[["RHEA%3A40011","(+)-copalyl diphosphate + H2O = manool + diphosphate"]],"b":[["antibacterial/manool.html","manool"]]},{"id":"CHEBI:77009","l":"5-O-β-D-mycaminosyl-20-oxotylonolide","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CGM","CGM-binding site"]],"b":[["unspecified/5-o-%CE%B2-d-mycaminosyl-20-oxotylonolide.html","5-O-β-D-mycaminosyl-20-oxotylonolide"]]},{"id":"CHEBI:77181","l":"crystal violet cation","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CVI","CVI-binding site"]],"b":[["antibacterial/crystal-violet-cation.html","crystal violet cation"]]},{"id":"CHEBI:77474","l":"(9Z,12Z,15Z)-octadecatrien-1-ol","na":1,"nb":1,"a":[["RHEA%3A40707","(9Z,12Z,15Z)-octadecatrien-1-ol + 1-hexadecanoylglycerone 3-phosphate = 1-O-(9Z,12Z,15Z)-octadecatrienylglycerone 3-phosphate + hexadecanoate + H(+)"]],"b":[["antibacterial/9z-12z-15z-octadecatrien-1-ol.html","(9Z,12Z,15Z)-octadecatrien-1-ol"]]},{"id":"CHEBI:77845","l":"7-aminocholesterol","na":1,"nb":1,"a":[["TCDB%3A9.A.26","The Lipid-translocating Exporter (LTE) Family"]],"b":[["antibacterial/7-aminocholesterol.html","7-aminocholesterol"]]},{"id":"CHEBI:79034","l":"monacolin J","na":1,"nb":1,"a":[["RHEA%3A62748","lovastatin + H2O = monacolin J + (S)-2-methylbutanoate + H(+)"]],"b":[["unspecified/monacolin-j.html","monacolin J"]]},{"id":"CHEBI:7934","l":"paromomycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PAR","PAR-binding site"]],"b":[["antibacterial/paromomycin.html","paromomycin"]]},{"id":"CHEBI:79391","l":"(−)-chuangxinmycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9E0","9E0-binding site"]],"b":[["antibacterial/chuangxinmycin.html","(−)-chuangxinmycin"]]},{"id":"CHEBI:79394","l":"indolmycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_5BX","5BX-binding site"]],"b":[["antibacterial/indolmycin.html","indolmycin"]]},{"id":"CHEBI:8062","l":"phenethyl caffeate","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_QAP","QAP-binding site"]],"b":[["antibacterial/phenethyl-caffeate.html","phenethyl caffeate"]]},{"id":"CHEBI:80751","l":"(S)-goitrin","na":1,"nb":1,"a":[["RHEA%3A69292","(Z)-(2R)-2-hydroxy-3-butenyl-N-(sulfonatooxy)methanimidothioate = goitrin + sulfate"]],"b":[["antiviral/s-goitrin.html","(S)-goitrin"]]},{"id":"CHEBI:81724","l":"diminazene","na":1,"nb":1,"a":[["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"]],"b":[["antiprotozoal/diminazene.html","diminazene"]]},{"id":"CHEBI:81761","l":"etridiazole","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/etridiazole.html","etridiazole"]]},{"id":"CHEBI:8232","l":"piperacillin","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/piperacillin.html","piperacillin"]]},{"id":"CHEBI:82754","l":"microcin c","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["unspecified/microcin-c.html","microcin c"]]},{"id":"CHEBI:82809","l":"agrocin 84","na":1,"nb":1,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["unspecified/agrocin-84.html","agrocin 84"]]},{"id":"CHEBI:83147","l":"","na":1,"nb":1,"a":[["RHEA%3A83179","a steroid + reduced [NADPH--hemoprotein reductase] + O2 = a 15alpha-hydroxy steroid + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["antifungal/9%CE%BE-14%CE%BE-25s-cholestane-3%CE%B2-4%CE%B2-6%CE%B2-7%CE%B1-8-15%CE%B1-16%CE%B2-26-octol.html","(9ξ,14ξ,25S)-cholestane-3β,4β,6β,7α,8,15α,16β,26-octol"]]},{"id":"CHEBI:8417","l":"pristinamycin IA","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/pristinamycin-ia.html","pristinamycin IA"]]},{"id":"CHEBI:84587","l":"","na":1,"nb":1,"a":[["RHEA%3A44724","2,3-saturated fatty aldehyde + NADP(+) = (2E)-fatty aldehyde + NADPH + H(+)"]],"b":[["unspecified/pentadecanal.html","pentadecanal"]]},{"id":"CHEBI:84588","l":"","na":1,"nb":1,"a":[["RHEA%3A44724","2,3-saturated fatty aldehyde + NADP(+) = (2E)-fatty aldehyde + NADPH + H(+)"]],"b":[["antibacterial/e-dodec-2-enal.html","(E)-dodec-2-enal"]]},{"id":"CHEBI:85083","l":"sofosbuvir","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_WG6","WG6-binding site"]],"b":[["antiviral/sofosbuvir.html","sofosbuvir"]]},{"id":"CHEBI:85273","l":"(R)-flumequine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_7X9","7X9-binding site"]],"b":[["unspecified/r-flumequine.html","(R)-flumequine"]]},{"id":"CHEBI:85412","l":"mitomycin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MQA","MQA-binding site"]],"b":[["unspecified/mitomycin-a.html","mitomycin A"]]},{"id":"CHEBI:8673","l":"pyrimethamine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CP6","CP6-binding site"]],"b":[["antiprotozoal/pyrimethamine.html","pyrimethamine"]]},{"id":"CHEBI:87185","l":"florfenicol","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/florfenicol.html","florfenicol"]]},{"id":"CHEBI:87805","l":"ethionamide S-oxide","na":1,"nb":1,"a":[["RHEA%3A47616","ethionamide + NADPH + O2 + H(+) = ethionamide S-oxide + NADP(+) + H2O"]],"b":[["antimycobacterial/ethionamide-s-oxide.html","ethionamide S-oxide"]]},{"id":"CHEBI:90531","l":"sotrastaurin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_LW4","LW4-binding site"]],"b":[["antiviral/sotrastaurin.html","sotrastaurin"]]},{"id":"CHEBI:9168","l":"sirolimus","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RAP","RAP-binding site"]],"b":[["antibacterial/sirolimus.html","sirolimus"]]},{"id":"CHEBI:9212","l":"sparfloxacin","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/sparfloxacin.html","sparfloxacin"]]},{"id":"CHEBI:92181","l":"lasalocid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_LSD","LSD-binding site"]],"b":[["antiprotozoal/lasalocid.html","lasalocid"]]},{"id":"CHEBI:92257","l":"IKK16","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_V17","V17-binding site"]],"b":[["antiprotozoal/ikk16.html","IKK16"]]},{"id":"CHEBI:9328","l":"sulfadiazine","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antiprotozoal/sulfadiazine.html","sulfadiazine"]]},{"id":"CHEBI:9337","l":"sulfathiazole","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["unspecified/sulfathiazole.html","sulfathiazole"]]},{"id":"CHEBI:9448","l":"terbinafine","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/terbinafine.html","terbinafine"]]},{"id":"CHEBI:9661","l":"triacetin","na":1,"nb":1,"a":[["RHEA%3A48028","triacetin + H2O = diacetylglycerol + acetate + H(+)"]],"b":[["antifungal/triacetin.html","triacetin"]]},{"id":"CHEBI:9688","l":"trichodermin","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/trichodermin.html","trichodermin"]]},{"id":"CHEBI:9691","l":"piperyline","na":1,"nb":1,"a":[["RHEA%3A73663","pyrrolidine + (E,E)-piperoyl-CoA = piperyline + CoA + H(+)"]],"b":[["antifungal/piperyline.html","piperyline"]]},{"id":"NCBITaxon:1764","l":"Mycobacterium avium","na":1,"nb":1,"a":[["Pfam%3APF01882","Protein of unknown function DUF58"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":1,"nb":1,"a":[["Pfam%3APF26312","Domain of unknown function (DUF8083)"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"NCBITaxon:263","l":"Francisella tularensis","na":1,"nb":1,"a":[["TED%3AAF-A0A6I4RUC7-F1-model_v4_TED02","TED novel fold AF-A0A6I4RUC7-F1-model_v4_TED02"]],"b":[["unspecified/%CE%B1-mangostin.html","α-mangostin"]]},{"id":"NCBITaxon:271","l":"Thermus aquaticus","na":1,"nb":1,"a":[["Pfam%3APF07669","Eco57I restriction-modification methylase"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":1,"nb":1,"a":[["Pfam%3APF07335","Fungal chitosanase of glycosyl hydrolase group 75"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"NCBITaxon:5082","l":"Penicillium roqueforti","na":1,"nb":1,"a":[["Pfam%3APF07573","Nitrogen regulatory protein AreA N terminus"]],"b":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]]},{"id":"NCBITaxon:5127","l":"Fusarium fujikuroi","na":1,"nb":1,"a":[["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"NCBITaxon:5141","l":"Neurospora crassa","na":1,"nb":1,"a":[["TED%3AAF-A0A0B0E1R4-F1-model_v4_TED01","TED novel fold AF-A0A0B0E1R4-F1-model_v4_TED01"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"NCBITaxon:53446","l":"Streptomyces cinnamoneus","na":1,"nb":1,"a":[["TED%3AAF-A0A2S6XSK0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S6XSK0-F1-model_v4_TED01"]],"b":[["antibacterial/bicozamycin.html","bicozamycin"]]},{"id":"NCBITaxon:68280","l":"Streptomyces violaceusniger","na":1,"nb":1,"a":[["TED%3AAF-A0A0X3VKA0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0X3VKA0-F1-model_v4_TED01"]],"b":[["antibacterial/nigericin.html","nigericin"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A5C7XIK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7XIK2-F1-model_v4_TED01"]],"b":[["antibacterial/lysocin-e.html","lysocin E"]]},{"id":"UniProt:B8N2C8","l":"","na":1,"nb":1,"a":[["EC%3A1.14.14.154","sterol 14alpha-demethylase"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"UniProt:O30463","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TOP","TOP-binding site"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"UniProt:P0A017","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_0U5","0U5-binding site"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"UniProt:P13955","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TOP","TOP-binding site"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"UniProt:P42535","l":"","na":1,"nb":1,"a":[["EC%3A1.14.13.50","pentachlorophenol monooxygenase"]],"b":[["antifungal/pentachlorophenol.html","pentachlorophenol"]]},{"id":"UniProt:P50859","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_1YN","1YN-binding site"]],"b":[["antifungal/fluconazole.html","fluconazole"]]},{"id":"UniProt:Q5ALV2","l":"","na":1,"nb":1,"a":[["Pfam%3APF08226","Domain of unknown function (DUF1720)"]],"b":[["antifungal/fluconazole.html","fluconazole"]]},{"id":"UniProt:Q81R22","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_N22","N22-binding site"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]}]} \ No newline at end of file +{"a":"ProteinTraitsMech","b":"AntibioticMech","base":{"ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record=","AntibioticMech":"https://culturebotai.github.io/AntibioticMech/pages/"},"n":2435,"by":{"ARO":1740,"CHEBI":594,"NCBITaxon":79,"UniProt":20,"GO":2},"terms":[{"id":"ARO:0000032","l":"","na":3352,"nb":55,"a":[["ARO%3A3001815","ACC-1"],["ARO%3A3006228","ACC-1a"],["ARO%3A3006229","ACC-1b"],["ARO%3A3006230","ACC-1c"],["ARO%3A3006231","ACC-1d"],["ARO%3A3001816","ACC-2"]],"b":[["antibacterial/cefacetrile.html","cefacetrile"],["antibacterial/cefaclor.html","cefaclor"],["antibacterial/cefadroxil.html","cefadroxil"],["antibacterial/cefaloridine.html","cefaloridine"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefamandole.html","cefamandole"]]},{"id":"ARO:0000000","l":"","na":143,"nb":45,"a":[["ARO%3A3005099","23S rRNA (adenine(2058)-N(6))-methyltransferase Erm(A)"],["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3004125","23S rRNA with mutation conferring resistance to macrolide antibiotics"],["ARO%3A3005001","50S rRNA with mutation conferring resistance to macrolide antibiotics"],["ARO%3A3000772","AdeIJK"],["ARO%3A3004133","Brachyspira hyodysenteriae 23S rRNA with mutation conferring resistance to tylosin"]],"b":[["antibacterial/5-o-mycaminosyltylonolide.html","5-O-mycaminosyltylonolide"],["antibacterial/aplasmomycin.html","(+)-aplasmomycin"],["antibacterial/azalomycin-f.html","azalomycin F"],["antibacterial/azithromycin.html","azithromycin"],["antibacterial/boromycin.html","boromycin"],["antibacterial/brefeldin-a.html","brefeldin A"]]},{"id":"CHEBI:17478","l":"","na":62,"nb":33,"a":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.1.2","alcohol dehydrogenase (NADP(+))"],["EC%3A1.1.1.71","alcohol dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.2.8","alcohol dehydrogenase (cytochrome c)"],["EC%3A1.1.3.13","alcohol oxidase"]],"b":[["antibacterial/5-o-mycaminosyltylonolide.html","5-O-mycaminosyltylonolide"],["antibacterial/fatsicarpain-c.html","fatsicarpain C"],["antibacterial/josamycin.html","josamycin"],["antibacterial/rosaramicin.html","rosaramicin"],["antibacterial/spiramycin-i.html","spiramycin I"],["antibacterial/spiramycin-ii.html","spiramycin II"]]},{"id":"ARO:0000016","l":"","na":331,"nb":32,"a":[["ARO%3A3004272","16S rRNA methyltransferase (A1408)"],["ARO%3A3004271","16S rRNA methyltransferase (G1405)"],["ARO%3A3003666","16s rRNA with mutation conferring resistance to aminoglycoside antibiotics"],["ARO%3A3004936","23s rRNA with mutation conferring resistance to aminoglycoside antibiotics"],["ARO%3A3000341","AAC(2')"],["ARO%3A3007393","AAC(2')-I"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/apramycin.html","apramycin"],["antibacterial/arbekacin.html","arbekacin"]]},{"id":"ARO:0000001","l":"","na":223,"nb":31,"a":[["ARO%3A3005113","AAC(6')-Ib-cr"],["ARO%3A3002547","AAC(6')-Ib-cr1"],["ARO%3A3007770","aac(6')-Ib-cr10"],["ARO%3A3007771","aac(6')-Ib-cr11"],["ARO%3A3005112","AAC(6')-Ib-cr3"],["ARO%3A3005114","AAC(6')-Ib-cr4"]],"b":[["antibacterial/7-3-aminopyrrolidin-1-yl-1-2-4-difluorophenyl-6-fluoro-4-oxo-1-4-dihyd.html","7-(3-aminopyrrolidin-1-yl)-1-(2,4-difluorophenyl)-6-fluoro-4-oxo-1,4-dihydro-1,8-naphthyridine-3-carboxylic acid"],["antibacterial/9-fluoro-5-methyl-1-oxo-6-7-dihydro-1h-5h-pyrido-3-2-1-ij-quinoline-2-.html","9-fluoro-5-methyl-1-oxo-6,7-dihydro-1H,5H-pyrido[3,2,1-ij]quinoline-2-carboxylic acid"],["antibacterial/balofloxacin.html","Balofloxacin"],["antibacterial/cinoxacin.html","cinoxacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/clinafloxacin.html","clinafloxacin"]]},{"id":"NCBITaxon:562","l":"Escherichia coli","na":145,"nb":30,"a":[["IDPO%3A0000033","flexible linker"],["IDPO%3A0000014","order to disorder"],["IDPO%3A0000004","pre-molten globule"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"]]},{"id":"CHEBI:15734","l":"","na":29,"nb":59,"a":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.1.2","alcohol dehydrogenase (NADP(+))"],["EC%3A1.1.1.71","alcohol dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.2.8","alcohol dehydrogenase (cytochrome c)"],["EC%3A1.1.3.13","alcohol oxidase"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/dihydroconiferyl-alcohol.html","dihydroconiferyl alcohol"],["antibacterial/equisetin.html","equisetin"],["antibacterial/hexan-1-ol.html","hexan-1-ol"],["antibacterial/lyoniresinol-3-%CE%B1-o-%CE%B2-d-glucopyranoside.html","(+)-lyoniresinol-3-α-O-β-D-glucopyranoside"],["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3000008","l":"","na":3168,"nb":27,"a":[["ARO%3A3001815","ACC-1"],["ARO%3A3006228","ACC-1a"],["ARO%3A3006229","ACC-1b"],["ARO%3A3006230","ACC-1c"],["ARO%3A3006231","ACC-1d"],["ARO%3A3001816","ACC-2"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aspoxicillin.html","aspoxicillin"],["antibacterial/azidocillin.html","azidocillin"],["antibacterial/azlocillin.html","azlocillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":30,"nb":22,"a":[["Pfam%3APF08787","Alginate lyase"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF08218","Citrate lyase ligase C-terminal domain"],["Pfam%3APF13727","CoA-binding domain"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["Pfam%3APF20714","DpiA-like helix-turn-helix domain"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"]]},{"id":"ARO:3000081","l":"","na":120,"nb":18,"a":[["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3004256","Bleomycin resistant protein"],["ARO%3A3005036","BLMT"],["ARO%3A3001205","BRP(MBL)"],["ARO%3A3004561","Clostridioides difficile murG with mutation conferring resistance to vancomycin"],["ARO%3A3004681","Clostridioides difficile rpoC with mutation conferring resistance to vancomycin"]],"b":[["antibacterial/a47934.html","A47934"],["antibacterial/antibiotic-a40926.html","antibiotic A40926"],["antibacterial/avoparcin.html","avoparcin"],["antibacterial/balhimycin.html","balhimycin"],["antibacterial/bleomycin-a2.html","bleomycin A2"],["antibacterial/bleomycin-b2.html","bleomycin B2"]]},{"id":"ARO:0000026","l":"","na":98,"nb":13,"a":[["ARO%3A3005099","23S rRNA (adenine(2058)-N(6))-methyltransferase Erm(A)"],["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3004182","23S rRNA with mutation conferring resistance to streptogramins antibiotics"],["ARO%3A3000202","Cfr 23S ribosomal RNA methyltransferase"],["ARO%3A3004649","cfr(B)"],["ARO%3A3004609","cfr(B) Group"]],"b":[["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/madumycin-ii.html","madumycin II"],["antibacterial/ostreogrycin-b3.html","ostreogrycin B3"],["antibacterial/patricin-a.html","patricin A"],["antibacterial/patricin-b.html","patricin B"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":46,"nb":13,"a":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF13166","AAA domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF27533","CapK C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/bromodeoxytopsentin.html","bromodeoxytopsentin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"ARO:3000053","l":"","na":203,"nb":12,"a":[["ARO%3A3003667","16s rRNA with mutation conferring resistance to peptide antibiotics"],["ARO%3A3003581","Acinetobacter mutant Lpx gene conferring resistance to colistin"],["ARO%3A3007430","alm glycyl carrier protein"],["ARO%3A3007432","alm glycyltransferase"],["ARO%3A3007433","almE"],["ARO%3A3007434","almEFG"]],"b":[["antibacterial/defensin.html","defensin"],["antibacterial/epinecidin-1.html","epinecidin-1"],["antibacterial/magainin-1.html","magainin 1"],["antibacterial/magainin-2.html","magainin 2"],["antibacterial/magainin-a.html","magainin A"],["antibacterial/magainin-b.html","magainin B"]]},{"id":"ARO:3001219","l":"","na":12,"nb":25,"a":[["ARO%3A3003357","Clostridioides difficile EF-Tu mutants conferring resistance to elfamycin"],["ARO%3A3001312","elfamycin resistant EF-Tu"],["ARO%3A3003875","Enterococcus faecium EF-Tu mutants conferring resistance to elfamycin"],["ARO%3A3003438","Enterococcus faecium EF-Tu mutants conferring resistance to GE2270A"],["ARO%3A3003358","Escherichia coli EF-Tu mutants conferring resistance to elfamycin"],["ARO%3A3003370","Escherichia coli EF-Tu mutants conferring resistance to Enacyloxin IIa"]],"b":[["antibacterial/amythiamicin-a.html","amythiamicin A"],["antibacterial/aurodox.html","aurodox"],["antibacterial/dihydromocimycin.html","dihydromocimycin"],["antibacterial/efrotomycin.html","efrotomycin"],["antibacterial/enacyloxin-iia.html","enacyloxin IIa"],["antibacterial/factumycin.html","factumycin"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":19,"nb":12,"a":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"],["Pfam%3APF18173","Bacterial HORMA domain 2"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["Pfam%3APF27322","Cap8 HORMA domain"],["Pfam%3APF01526","Tn3 transposase DDE domain"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3007499","l":"","na":11,"nb":18,"a":[["ARO%3A3007549","antibiotic resistant ergosterol biosynthesis pathway transcription factor"],["ARO%3A3007565","Aspergillus spp. cyp51A with mutations conferring resistance to triazoles antibiotics"],["ARO%3A3007670","Aspergillus spp. Hmg1 with mutations conferring resistance to triazoles antibiotics"],["ARO%3A3007666","Candida spp. cyp51A1 with mutations conferring resistance to triazoles and imidazole antibiotics"],["ARO%3A3007524","Candida spp. ERG11 with mutations conferring resistance to azole antibiotics"],["ARO%3A3007640","Candida spp. pleiotropic drug resistance factor 1"]],"b":[["antifungal/bromuconazole.html","bromuconazole"],["antifungal/cyproconazole.html","cyproconazole"],["antifungal/difenoconazole.html","difenoconazole"],["antifungal/epoxiconazole.html","epoxiconazole"],["antifungal/fenbuconazole.html","fenbuconazole"],["antifungal/fluconazole.html","fluconazole"]]},{"id":"CHEBI:17087","l":"","na":17,"nb":11,"a":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.1.184","carbonyl reductase (NADPH)"],["EC%3A1.1.1.2","alcohol dehydrogenase (NADP(+))"],["EC%3A1.1.3.18","secondary-alcohol oxidase"],["EC%3A1.1.98.5","secondary-alcohol dehydrogenase (coenzyme-F420)"],["EC%3A1.4.1.28","secondary-alkyl amine dehydrogenase [NAD(P)(+)]"]],"b":[["antibacterial/6-diazo-5-oxo-l-norleucine.html","6-diazo-5-oxo-L-norleucine"],["antibacterial/dehydroacetic-acid.html","dehydroacetic acid"],["antibacterial/ucs1025-a.html","UCS1025 A"],["antifungal/1-2-3-dihydro-1h-pyrrol-1-yl-2-methyldecane-1-3-dione.html","1-(2,3-dihydro-1H-pyrrol-1-yl)-2-methyldecane-1,3-dione"],["antifungal/e-1-2-3-dihydro-1h-pyrrol-1-yl-2-methyldec-8-ene-1-3-dione.html","(E)-1-(2,3-dihydro-1H-pyrrol-1-yl)-2-methyldec-8-ene-1,3-dione"],["antiprotozoal/ct3.html","CT3"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":11,"nb":15,"a":[["Pfam%3APF22829","HphA C-terminal domain"],["Pfam%3APF22828","HphA N-terminal heme-binding domain"],["Pfam%3APF28205","Ciprofloxacin tolerance protein"],["Pfam%3APF19582","Solute-binding protein AdeT 1/2"],["PROSITE%3APS00337","Beta-lactamase class-D active site"],["Pfam%3APF24575","Surface lipoprotein assembly modifier, N-terminal TPR repeats"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3000282","l":"","na":13,"nb":11,"a":[["ARO%3A3007426","ECF transporter S component"],["ARO%3A3003386","Escherichia coli folP with mutation conferring resistance to sulfonamides"],["ARO%3A3000386","MexAB-OprM"],["ARO%3A3004873","Neisseria gonorrhoeae folP with mutation conferring resistance to sulfonamides"],["ARO%3A3007749","Salmonella gallinarum folP with mutation conferring resistance to sulfonamides"],["ARO%3A3003387","Streptococcus pyogenes folP with mutation conferring resistance to sulfonamides"]],"b":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfacetamide.html","sulfacetamide"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfamerazine.html","sulfamerazine"],["antibacterial/sulfamethazine.html","sulfamethazine"],["antibacterial/sulfamethizole.html","sulfamethizole"]]},{"id":"CHEBI:33853","l":"","na":10,"nb":185,"a":[["EC%3A2.1.1.382","methoxylated aromatic compound--corrinoid protein Co-methyltransferase"],["EC%3A2.8.2.1","aryl sulfotransferase"],["EC%3A2.8.2.22","aryl-sulfate sulfotransferase"],["EC%3A3.1.1.2","arylesterase"],["EC%3A3.1.6.1","arylsulfatase (type I)"],["RHEA%3A72283","a methoxylated aromatic compound + Co(I)-[methoxylated-aromatic-compound-specific corrinoid protein] + H(+) = a phenol + methyl-Co(III)-[methoxylated-aromatic-compound-specific corrinoid protein]"]],"b":[["antibacterial/2e-6z-13-hydroxy-1-2-hydroxy-5-methoxy-3-methylphenyl-3-7-11-15-tetram.html","(2E,6Z)-13-hydroxy-1-(2-hydroxy-5-methoxy-3-methylphenyl)-3,7,11,15-tetramethylhexadeca-2,6,14-triene-5,12-dione"],["antibacterial/5e-7-oxozeaenol.html","5E-7-oxozeaenol"],["antibacterial/5z-7-oxozeaenol.html","5Z-7-oxozeaenol"],["antibacterial/7-hydroxy-5-hydroxymethyl-2h-benzo-1-4-thiazin-3-one.html","7-hydroxy-5-hydroxymethyl-2H-benzo[1,4]thiazin-3-one"],["antibacterial/actinodaphnine.html","actinodaphnine"],["antibacterial/anthramycin.html","anthramycin"]]},{"id":"CHEBI:35681","l":"","na":10,"nb":139,"a":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.1.184","carbonyl reductase (NADPH)"],["EC%3A1.1.1.2","alcohol dehydrogenase (NADP(+))"],["EC%3A1.1.3.18","secondary-alcohol oxidase"],["EC%3A1.1.98.5","secondary-alcohol dehydrogenase (coenzyme-F420)"],["RHEA%3A10740","a secondary alcohol + NAD(+) = a ketone + NADH + H(+)"]],"b":[["antibacterial/14-norpseurotin-a.html","14-norpseurotin A"],["antibacterial/2e-6z-13-hydroxy-1-2-hydroxy-5-methoxy-3-methylphenyl-3-7-11-15-tetram.html","(2E,6Z)-13-hydroxy-1-(2-hydroxy-5-methoxy-3-methylphenyl)-3,7,11,15-tetramethylhexadeca-2,6,14-triene-5,12-dione"],["antibacterial/5e-7-oxozeaenol.html","5E-7-oxozeaenol"],["antibacterial/5z-7-oxozeaenol.html","5Z-7-oxozeaenol"],["antibacterial/asperlactone.html","asperlactone"],["antibacterial/aspyrone.html","aspyrone"]]},{"id":"ARO:3000050","l":"","na":50,"nb":9,"a":[["ARO%3A3003669","16S rRNA with mutation conferring resistance to tetracycline derivatives"],["ARO%3A3003499","Cutibacterium acnes 16S rRNA mutation conferring resistance to tetracycline"],["ARO%3A3003411","Escherichia coli 16S rRNA (rrnB) mutation conferring resistance to tetracycline"],["ARO%3A3003410","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to tetracycline"],["ARO%3A3004126","Escherichia coli LamB"],["ARO%3A3003510","Helicobacter pylori 16S rRNA mutation conferring resistance to tetracycline"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/eravacycline.html","eravacycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/omadacycline.html","omadacycline"]]},{"id":"CHEBI:18379","l":"","na":9,"nb":21,"a":[["EC%3A3.5.5.1","nitrilase"],["EC%3A4.8.1.2","aliphatic aldoxime dehydratase"],["EC%3A4.8.1.5","thiohydroximate-O-sulfate sulfate/sulfur-lyase (nitrile-forming)"],["RHEA%3A21724","a nitrile + 2 H2O = a carboxylate + NH4(+)"],["RHEA%3A59956","a (Z)-N-(sulfonatooxy)alkanimidothioate = a nitrile + sulfur + sulfate"],["RHEA%3A11316","an aliphatic aldoxime = a nitrile + H2O"]],"b":[["antibacterial/bay11-7085.html","BAY11-7085"],["antibacterial/cccp.html","CCCP"],["antibacterial/finafloxacin.html","finafloxacin"],["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/cyazofamid.html","cyazofamid"],["antifungal/cymoxanil.html","cymoxanil"]]},{"id":"ARO:0000020","l":"","na":2703,"nb":8,"a":[["ARO%3A3006863","AAK-1"],["ARO%3A3005387","AAK beta-lactamase"],["ARO%3A3003809","Acinetobacter baumannii OprD conferring resistance to imipenem"],["ARO%3A3001821","ACT-1"],["ARO%3A3001832","ACT-10"],["ARO%3A3007883","ACT-100"]],"b":[["antibacterial/biapenem.html","biapenem"],["antibacterial/doripenem.html","doripenem"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"],["antibacterial/panipenem.html","panipenem"]]},{"id":"NCBITaxon:2697049","l":"Severe acute respiratory syndrome coronavirus 2","na":18,"nb":8,"a":[["IDPO%3A0000002","disorder"],["IDPO%3A0000033","flexible linker"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000041","glycosylation display site"],["IDPO%3A0000048","limited proteolysis display site"],["IDPO%3A0000037","molecular recognition display site"]],"b":[["antibacterial/3-6-diaminoacridine.html","3,6-diaminoacridine"],["antibacterial/anacardic-acid.html","anacardic acid"],["antibacterial/baicalein.html","baicalein"],["antibacterial/ebselen.html","ebselen"],["antibacterial/hexachlorophene.html","hexachlorophene"],["antifungal/disulfiram.html","disulfiram"]]},{"id":"ARO:3000034","l":"","na":8,"nb":9,"a":[["ARO%3A3002895","SAT-2"],["ARO%3A3002898","SAT-3"],["ARO%3A3002897","SAT-4"],["ARO%3A3005045","SatA"],["ARO%3A3004699","sta"],["ARO%3A3000869","streptothricin acetyltransferase (SAT)"]],"b":[["antibacterial/a201a.html","A201A"],["antibacterial/caprazamycin.html","caprazamycin"],["antibacterial/cordycepin.html","cordycepin"],["antibacterial/pseudouridimycin.html","pseudouridimycin"],["antibacterial/puromycin.html","puromycin"],["antibacterial/streptothricin-f.html","streptothricin F"]]},{"id":"CHEBI:33709","l":"amino acid","na":8,"nb":8,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.23","The Dicarboxylate/Amino Acid:Cation (Na+ or H+) Symporter (DAACS) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A1.V.1","The Filamentous Cyanobacterial Septal Pore (Septum) Family"],["TCDB%3A1.A.24","The Gap Junction-forming Connexin (Connexin) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/7-3-aminopyrrolidin-1-yl-1-2-4-difluorophenyl-6-fluoro-4-oxo-1-4-dihyd.html","7-(3-aminopyrrolidin-1-yl)-1-(2,4-difluorophenyl)-6-fluoro-4-oxo-1,4-dihydro-1,8-naphthyridine-3-carboxylic acid"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/pipemidic-acid.html","pipemidic acid"],["antibacterial/trovafloxacin.html","trovafloxacin"],["antifungal/mediomycin-a.html","mediomycin A"],["antifungal/mediomycin-b.html","mediomycin B"]]},{"id":"ARO:3000419","l":"quinolone resistance protein (qnr)","na":111,"nb":7,"a":[["ARO%3A3003844","mfd"],["ARO%3A3003035","mfpA"],["ARO%3A3002707","QnrA1"],["ARO%3A3002708","QnrA2"],["ARO%3A3002709","QnrA3"],["ARO%3A3002710","QnrA4"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"NCBITaxon:237561","l":"Candida albicans (strain SC5314 / ATCC MYA-2876)","na":46,"nb":7,"a":[["Pfam%3APF26023","Alanine--tRNA ligase domain"],["Pfam%3APF09757","Arb2-like domain"],["Pfam%3APF25026","Asd-4-like domain"],["Pfam%3APF07741","Brf1-like TBP-binding domain"],["Pfam%3APF11766","Agglutinin-like protein, N-terminal domain"],["Pfam%3APF16892","Chitin biosynthesis protein CHS5 N-terminus"]],"b":[["antibacterial/brefeldin-a.html","brefeldin A"],["antifungal/anidulafungin.html","anidulafungin"],["antifungal/caspofungin.html","caspofungin"],["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/micafungin.html","micafungin"]]},{"id":"CHEBI:87211","l":"","na":7,"nb":18,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.24","The Mycobacterial Porin (MBP) Family"],["TCDB%3A9.B.325","The Putative ABC4 (ABC4) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/dextrofloxacin.html","dextrofloxacin"],["antibacterial/difloxacin.html","difloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/fleroxacin.html","fleroxacin"],["antibacterial/gemifloxacin.html","gemifloxacin"]]},{"id":"ARO:3000384","l":"AcrAB-TolC","na":16,"nb":7,"a":[["ARO%3A3000384","AcrAB-TolC"],["ARO%3A3000702","acrR"],["ARO%3A3003374","Enterobacter aerogenes acrR with mutation conferring multidrug antibiotic resistance"],["ARO%3A3004108","Enterobacter cloacae rob"],["ARO%3A3003807","Escherichia coli AcrAB-TolC with AcrR mutation conferring resistance to ciprofloxacin, tetracycline, and ceftazidime"],["ARO%3A3003378","Escherichia coli AcrAB-TolC with MarR mutations conferring resistance to ciprofloxacin and tetracycline"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/tetracycline.html","tetracycline"],["antibacterial/tigecycline.html","tigecycline"],["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3000386","l":"MexAB-OprM","na":7,"nb":15,"a":[["ARO%3A3000831","CpxR"],["ARO%3A3000377","MexA"],["ARO%3A3000386","MexAB-OprM"],["ARO%3A3000378","MexB"],["ARO%3A3000506","MexR"],["ARO%3A3000819","nalD"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/azithromycin.html","azithromycin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3000103","l":"","na":12,"nb":7,"a":[["ARO%3A3003830","Aminocoumarin resistant alaS"],["ARO%3A3003840","aminocoumarin resistant cysB"],["ARO%3A3000479","aminocoumarin resistant gyrB"],["ARO%3A3000457","aminocoumarin resistant parE"],["ARO%3A3000480","aminocoumarin resistant parY"],["ARO%3A3003787","aminocoumarin self resistant parY"]],"b":[["antibacterial/chrysomycin-a.html","chrysomycin A"],["antibacterial/clorobiocin.html","clorobiocin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/declovanillobiocin.html","declovanillobiocin"],["antibacterial/isovanillobiocin.html","isovanillobiocin"],["antibacterial/novobiocin.html","novobiocin"]]},{"id":"UniProt:P0DTD1","l":"","na":11,"nb":7,"a":[["EC%3A3.4.22.69","SARS coronavirus main proteinase"],["IDPO%3A0000002","disorder"],["Pfam%3APF12379","Betacoronavirus replicase NSP3, N-terminal"],["ELM%3AELME000557","DEG_Cend_TRIM7_1"],["proteintraitsmech%3ABIOLIP_A1IB6","A1IB6-binding site"],["proteintraitsmech%3ABIOLIP_BJ6","BJ6-binding site"]],"b":[["antibacterial/3-6-diaminoacridine.html","3,6-diaminoacridine"],["antibacterial/anacardic-acid.html","anacardic acid"],["antibacterial/baicalein.html","baicalein"],["antibacterial/ebselen.html","ebselen"],["antibacterial/hexachlorophene.html","hexachlorophene"],["antifungal/disulfiram.html","disulfiram"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":9,"nb":7,"a":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF25954","CusB-like, beta-barrel domain"],["Pfam%3APF13438","Domain of unknown function (DUF4113)"],["Pfam%3APF03767","HAD superfamily, subfamily IIIB (Acid phosphatase)"],["Pfam%3APF03496","ADP-ribosyltransferase exoenzyme"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":8,"nb":7,"a":[["Pfam%3APF01721","Class II bacteriocin"],["Pfam%3APF13700","Domain of unknown function (DUF4158)"],["Pfam%3APF07478","D-ala D-ala ligase C-terminus"],["Pfam%3APF01820","D-ala D-ala ligase N-terminus"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"],["PROSITE%3APS00843","D-alanine--D-alanine ligase signature 1"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":7,"nb":7,"a":[["Pfam%3APF11766","Agglutinin-like protein, N-terminal domain"],["Pfam%3APF16856","Cell division control protein 4 dimerisation domain"],["Pfam%3APF18325","Fatty acid synthase subunit alpha Acyl carrier domain"],["Pfam%3APF18314","Fatty acid synthase type I helical domain"],["Pfam%3APF17828","N-terminal domain in fatty acid synthase subunit beta"],["Pfam%3APF05388","Carboxypeptidase Y pro-peptide"]],"b":[["antibacterial/brefeldin-a.html","brefeldin A"],["antifungal/anidulafungin.html","anidulafungin"],["antifungal/caspofungin.html","caspofungin"],["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/micafungin.html","micafungin"]]},{"id":"CHEBI:132124","l":"","na":91,"nb":6,"a":[["EC%3A1.1.5.10","D-2-hydroxyacid dehydrogenase (quinone)"],["EC%3A1.1.5.11","1-butanol dehydrogenase (quinone)"],["EC%3A1.1.5.12","D-lactate dehydrogenase (quinone)"],["EC%3A1.1.5.13","(S)-2-hydroxyglutarate dehydrogenase"],["EC%3A1.1.5.3","glycerol-3-phosphate dehydrogenase"],["EC%3A1.1.5.4","malate dehydrogenase (quinone)"]],"b":[["antiprotozoal/r-4-methoxydalbergione.html","(R)-4'-methoxydalbergione"],["antiviral/geldanamycin.html","geldanamycin"],["unspecified/auricin.html","auricin"],["unspecified/dutomycin.html","dutomycin"],["unspecified/herbimycin.html","herbimycin"],["unspecified/primin.html","primin"]]},{"id":"ARO:3000670","l":"","na":27,"nb":6,"a":[["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3004178","23S rRNA with mutation conferring resistance to pleuromutilin antibiotics"],["ARO%3A3004472","lsa-type ABC-F protein"],["ARO%3A3000300","lsaA"],["ARO%3A3003111","lsaB"],["ARO%3A3003112","lsaC"]],"b":[["antibacterial/azamulin.html","azamulin"],["antibacterial/lefamulin.html","lefamulin"],["antibacterial/pleuromutilin.html","pleuromutilin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/valnemulin.html","valnemulin"]]},{"id":"ARO:3005386","l":"","na":15,"nb":6,"a":[["ARO%3A3004284","antibiotic resistant fabG"],["ARO%3A3004270","antibiotic resistant fabI"],["ARO%3A3000309","emrD"],["ARO%3A3004049","Escherichia coli fabG mutations conferring resistance to triclosan"],["ARO%3A3004045","Escherichia coli fabI mutations conferring resistance to isoniazid and triclosan"],["ARO%3A3004335","Escherichia coli gyrA with mutation conferring resistance to triclosan"]],"b":[["antibacterial/3-6-diaminoacridine.html","3,6-diaminoacridine"],["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"],["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/triclosan.html","triclosan"],["biocide/acriflavine.html","acriflavine"],["biocide/thiacalixarene-derivatives.html","thiacalixarene derivatives"]]},{"id":"ARO:3000797","l":"MexCD-OprJ","na":6,"nb":7,"a":[["ARO%3A3000797","MexCD-OprJ"],["ARO%3A3004061","MexCD-OprJ with type A NfxB mutation"],["ARO%3A3004062","MexCD-OprJ with type B NfxB mutation"],["ARO%3A3000820","NfxB"],["ARO%3A3004059","Type A NfxB"],["ARO%3A3004060","Type B NfxB"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/gentamicin-c.html","gentamicin C"],["antibacterial/novobiocin.html","novobiocin"],["antibacterial/ofloxacin.html","ofloxacin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"CHEBI:36836","l":"","na":7,"nb":6,"a":[["EC%3A1.1.1.270","3beta-hydroxysteroid 3-dehydrogenase"],["EC%3A2.3.1.77","triacylglycerol--sterol O-acyltransferase"],["RHEA%3A16897","a 3beta-hydroxysteroid + a triacylglycerol = a 3beta-hydroxysteroid ester + a diacylglycerol"],["RHEA%3A78195","a 3beta-hydroxysteroid + a triacylglycerol = a 3beta-hydroxysteroid ester + a 1,2-diacylglycerol"],["RHEA%3A78199","a 3beta-hydroxysteroid + a triacylglycerol = a 3beta-hydroxysteroid ester + a 1,3-diacylglycerol"],["RHEA%3A81603","a 3beta-hydroxysteroid + NAD(+) = a 3-oxosteroid + NADH + H(+)"]],"b":[["antibacterial/5%CE%B1-cholesta-24-en-3%CE%B2-20%CE%B2-diol-23-one.html","5α-cholesta-24-en-3β,20β-diol-23-one"],["antibacterial/5%CE%B1-cholesta-9-11-en-3%CE%B2-20%CE%B2-diol.html","5α-cholesta-9(11)-en-3β, 20β-diol"],["antifungal/9%CE%BE-14%CE%BE-25s-cholestane-3%CE%B2-4%CE%B2-6%CE%B2-7%CE%B1-8-15%CE%B1-16%CE%B2-26-octol.html","(9ξ,14ξ,25S)-cholestane-3β,4β,6β,7α,8,15α,16β,26-octol"],["antifungal/fr171456.html","FR171456"],["antifungal/sclerodol-b.html","sclerodol B"],["antiprotozoal/hellebrigenin.html","hellebrigenin"]]},{"id":"NCBITaxon:559292","l":"Saccharomyces cerevisiae (strain ATCC 204508 / S288c)","na":14483,"nb":5,"a":[["EC%3A1.14.18.-","With another compound as one donor, and incorporation of one atom of oxygen"],["EC%3A1.16.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.18.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.5.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.8.-.-","Acting on a sulfur group of donors"]],"b":[["antifungal/anidulafungin.html","anidulafungin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/caspofungin.html","caspofungin"],["antifungal/cycloheximide.html","cycloheximide"],["antifungal/micafungin.html","micafungin"]]},{"id":"ARO:0000017","l":"","na":104,"nb":5,"a":[["ARO%3A3005099","23S rRNA (adenine(2058)-N(6))-methyltransferase Erm(A)"],["ARO%3A3004187","23S rRNA with mutation conferring resistance to lincosamide antibiotics"],["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3000772","AdeIJK"],["ARO%3A3000202","Cfr 23S ribosomal RNA methyltransferase"],["ARO%3A3004649","cfr(B)"]],"b":[["antibacterial/celesticetin.html","celesticetin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/iboxamycin.html","iboxamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/pirlimycin.html","pirlimycin"]]},{"id":"ARO:3000157","l":"","na":45,"nb":5,"a":[["ARO%3A3002846","arr-1"],["ARO%3A3002847","arr-2"],["ARO%3A3002848","arr-3"],["ARO%3A3002849","arr-4"],["ARO%3A3002850","arr-5"],["ARO%3A3002852","arr-7"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifalazil.html","rifalazil"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"NCBITaxon:330879","l":"Aspergillus fumigatus (strain ATCC MYA-4609 / CBS 101355 / FGSC A1100 / Af293)","na":34,"nb":5,"a":[["Pfam%3APF22624","4'-phosphopantetheinyl transferase, N-terminal"],["Pfam%3APF13523","Acetyltransferase (GNAT) domain"],["Pfam%3APF28338","AclK C-terminal domain"],["Pfam%3APF23297","Highly reducing polyketide synthase sdgA, C-terminal ACP domain"],["Pfam%3APF11001","YDR124W-like, helical bundle domain"],["Pfam%3APF25312","Allergen Asp f 4-like domain"]],"b":[["antibacterial/fumagillin.html","fumagillin"],["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/terbinafine.html","terbinafine"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"ARO:3004115","l":"","na":20,"nb":5,"a":[["ARO%3A3007056","Antibiotic resistant Helicobacter pylori nitroreductase"],["ARO%3A3007656","antibiotic resistant Mycobacterium tuberculosis nitroreductase"],["ARO%3A3007671","Clostridioides difficile nimB"],["ARO%3A3007851","delamanid-resistant fgd1"],["ARO%3A3007059","Helicobacter pylori frxA mutation conferring resistance to metronidazole"],["ARO%3A3007055","Helicobacter pylori rdxA mutation conferring resistance to metronidazole"]],"b":[["antibacterial/delamanid.html","delamanid"],["antibacterial/metronidazole.html","metronidazole"],["antibacterial/ornidazole.html","ornidazole"],["antibacterial/pretomanid.html","pretomanid"],["antibacterial/tinidazole.html","tinidazole"]]},{"id":"CHEBI:46761","l":"","na":12,"nb":5,"a":[["MCSA%3A396","aspartic peptidase"],["MCSA%3A815","caspase-3"],["MCSA%3A818","caspase-8"],["MCSA%3A816","caspase-9"],["MCSA%3A814","cathepsin S"],["MCSA%3A912","endopeptidase Clp"]],"b":[["antifungal/gliotoxin.html","gliotoxin"],["antiprotozoal/wll-vs.html","WLL-vs"],["antiviral/ombitasvir.html","ombitasvir"],["unspecified/bacilysin.html","bacilysin"],["unspecified/tabtoxin.html","tabtoxin"]]},{"id":"NCBITaxon:485","l":"Neisseria gonorrhoeae","na":12,"nb":5,"a":[["Pfam%3APF25860","Cryptic plasmid protein A"],["Pfam%3APF12852","Cupin"],["Pfam%3APF17845","FbpC C-terminal regulatory nucleotide binding domain"],["Pfam%3APF22443","FbpC-like, regulatory domain"],["Pfam%3APF18053","DNA gyrase B subunit insert domain"],["Pfam%3APF25885","EMRA, alpha-helical hairpin domain"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007500","l":"","na":5,"nb":11,"a":[["ARO%3A3007666","Candida spp. cyp51A1 with mutations conferring resistance to triazoles and imidazole antibiotics"],["ARO%3A3007640","Candida spp. pleiotropic drug resistance factor 1"],["ARO%3A3007563","Candida spp. TAC1 with mutations conferring resistance to azole antibiotics"],["ARO%3A3007667","imidazole-resistant fungal cytochrome P450 enzyme"],["ARO%3A3007555","Zn2Cys6 transcription factors"]],"b":[["antibacterial/imazalil.html","imazalil"],["antifungal/bifonazole.html","bifonazole"],["antifungal/clotrimazole.html","clotrimazole"],["antifungal/econazole.html","econazole"],["antifungal/hexaconazole.html","hexaconazole"],["antifungal/ketoconazole.html","ketoconazole"]]},{"id":"ARO:3001815","l":"ACC-1","na":5,"nb":9,"a":[["ARO%3A3001815","ACC-1"],["ARO%3A3006228","ACC-1a"],["ARO%3A3006229","ACC-1b"],["ARO%3A3006230","ACC-1c"],["ARO%3A3006231","ACC-1d"]],"b":[["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/cefotetan.html","cefotetan"],["antibacterial/cefpirome.html","cefpirome"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"NCBITaxon:229533","l":"Fusarium graminearum PH-1","na":8,"nb":5,"a":[["Pfam%3APF18388","Atg29 N-terminal domain"],["Pfam%3APF27599","CcsR C-terminal domain"],["Pfam%3APF07110","EthD domain"],["Pfam%3APF11700","Vacuole effluxer Atg22 like"],["Pfam%3APF28504","Gramillins biosynthetic cluster protein GRA5"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"]],"b":[["antifungal/carbendazim.html","carbendazim"],["antifungal/difenoconazole.html","difenoconazole"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/prochloraz.html","prochloraz"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"ARO:3000491","l":"acrD","na":7,"nb":5,"a":[["ARO%3A3000491","acrD"],["ARO%3A3000828","baeR"],["ARO%3A3000829","baeS"],["ARO%3A3000531","baeSR"],["ARO%3A3000830","cpxA"],["ARO%3A3000524","cpxAR"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:0000004","l":"","na":1345,"nb":4,"a":[["ARO%3A3001815","ACC-1"],["ARO%3A3006228","ACC-1a"],["ARO%3A3006229","ACC-1b"],["ARO%3A3006230","ACC-1c"],["ARO%3A3006231","ACC-1d"],["ARO%3A3001816","ACC-2"]],"b":[["antibacterial/aztreonam.html","aztreonam"],["antibacterial/bal30072.html","BAL30072"],["antibacterial/carumonam.html","carumonam"],["antibacterial/lys228.html","LYS228"]]},{"id":"CHEBI:24646","l":"","na":88,"nb":4,"a":[["EC%3A1.1.5.10","D-2-hydroxyacid dehydrogenase (quinone)"],["EC%3A1.1.5.11","1-butanol dehydrogenase (quinone)"],["EC%3A1.1.5.12","D-lactate dehydrogenase (quinone)"],["EC%3A1.1.5.13","(S)-2-hydroxyglutarate dehydrogenase"],["EC%3A1.1.5.3","glycerol-3-phosphate dehydrogenase"],["EC%3A1.1.5.4","malate dehydrogenase (quinone)"]],"b":[["antibacterial/2-5-dihydroxy-3-methanesulfinylbenzyl-alcohol.html","2,5-dihydroxy-3-methanesulfinylbenzyl alcohol"],["antibacterial/cytotrienin-a.html","cytotrienin A"],["antibacterial/mygalin.html","mygalin"],["unspecified/trierixin.html","trierixin"]]},{"id":"CHEBI:47622","l":"","na":4,"nb":84,"a":[["EC%3A2.3.1.84","alcohol O-acetyltransferase"],["EC%3A3.1.1.6","acetylesterase"],["RHEA%3A12957","an acetyl ester + H2O = an aliphatic alcohol + acetate + H(+)"],["RHEA%3A17229","an aliphatic alcohol + acetyl-CoA = an acetyl ester + CoA"]],"b":[["antibacterial/3-5-di-o-acetyl-1-o-5%CE%B2-8%CE%B1-9%CE%B2-10%CE%B1-18-oxokaur-16-en-18-yl-%CE%B2-l-arabinofur.html","3,5-di-O-acetyl-1-O-[(5β,8α,9β,10α)-18-oxokaur-16-en-18-yl]-β-L-arabinofuranose"],["antibacterial/6%CE%B2-16%CE%B2-diacetoxy-25-hydroxy-3-7-dioxy-29-nordammara-1-17-20-dien-21-oi.html","6β,16β-diacetoxy-25-hydroxy-3,7-dioxy-29-nordammara-1,17(20)-dien-21-oic acid"],["antibacterial/caminoside-a.html","caminoside A"],["antibacterial/geranylgeranyl-acetate.html","geranylgeranyl acetate"],["antibacterial/helvolic-acid-methyl-ester.html","helvolic acid methyl ester"],["antibacterial/helvolic-acid.html","helvolic acid"]]},{"id":"CHEBI:59869","l":"","na":68,"nb":4,"a":[["EC%3A1.4.1.5","L-amino-acid dehydrogenase"],["EC%3A1.4.3.2","L-amino-acid oxidase"],["EC%3A1.5.3.2","N-methyl-L-amino-acid oxidase"],["EC%3A2.6.1.12","alanine--oxo-acid transaminase"],["EC%3A2.6.1.13","ornithine aminotransferase"],["EC%3A2.6.1.14","asparagine--oxo-acid transaminase"]],"b":[["antibacterial/l-%CE%B2-ethynylserine-zwitterion.html","L-β-ethynylserine zwitterion"],["unspecified/alliin-zwitterion.html","alliin zwitterion"],["unspecified/anticapsin-zwitterion.html","anticapsin zwitterion"],["unspecified/l-propargylglycine-zwitterion.html","L-propargylglycine zwitterion"]]},{"id":"ARO:3000387","l":"","na":58,"nb":4,"a":[["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3004188","23S rRNA with mutation conferring resistance to phenicol antibiotics"],["ARO%3A3004451","Agrobacterium fabrum chloramphenicol acetyltransferase"],["ARO%3A3004452","Alkalihalobacillus clausii chloramphenicol acetyltransferase"],["ARO%3A3002672","Bacillus pumilus cat86"],["ARO%3A3004454","Campylobacter coli chloramphenicol acetyltransferase"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"CHEBI:33308","l":"","na":4,"nb":43,"a":[["EC%3A3.1.1.1","carboxylesterase"],["RHEA%3A21164","a carboxylic ester + H2O = an alcohol + a carboxylate + H(+)"],["MCSA%3A631","cutinase"],["MCSA%3A556","esterase (estA)"]],"b":[["antibacterial/bacilysocin.html","bacilysocin"],["antibacterial/cefpodoxime-proxetil.html","cefpodoxime proxetil"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/fidaxomicin.html","fidaxomicin"],["antibacterial/fluquinometoate.html","fluquinometoate"],["antibacterial/fumagillin.html","fumagillin"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":29,"nb":4,"a":[["Pfam%3APF09156","Anthrax toxin lethal factor, middle domain"],["Pfam%3APF08401","N-terminal domain of anti-restriction factor ArdC"],["Pfam%3APF07737","Anthrax toxin lethal factor, N- and C-terminal domain"],["Pfam%3APF27053","Bacillus anthracis plasmid pXO2 protein 26"],["Pfam%3APF13205","Bacterial Ig-like domain"],["Pfam%3APF17475","Clostridial binary toxin B/anthrax toxin PA domain 2"]],"b":[["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/trimethoprim.html","trimethoprim"],["antiprotozoal/suramin.html","suramin"],["antiviral/tilorone.html","tilorone"]]},{"id":"ARO:3000079","l":"","na":21,"nb":4,"a":[["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3004172","23S rRNA with mutation conferring resistance to oxazolidinone antibiotics"],["ARO%3A3000202","Cfr 23S ribosomal RNA methyltransferase"],["ARO%3A3004649","cfr(B)"],["ARO%3A3004609","cfr(B) Group"],["ARO%3A3004610","cfr(C) Group"]],"b":[["antibacterial/contezolid.html","contezolid"],["antibacterial/linezolid.html","linezolid"],["antibacterial/tbi-223.html","TBI-223"],["antibacterial/tedizolid.html","tedizolid"]]},{"id":"CHEBI:22315","l":"alkaloid","na":4,"nb":21,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antibacterial/14-norpseurotin-a.html","14-norpseurotin A"],["antibacterial/5-bromo-8-methoxy-1-methyl-%CE%B2-carboline.html","5-bromo-8-methoxy-1-methyl-β-carboline"],["antibacterial/undecylprodigiosin.html","undecylprodigiosin"],["antifungal/feruloylagmatine.html","feruloylagmatine"],["antifungal/pyrrolnitrin.html","pyrrolnitrin"],["antifungal/sampangine.html","sampangine"]]},{"id":"CHEBI:23765","l":"","na":4,"nb":19,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.60","The Organo Anion Transporter (OAT) Family"]],"b":[["antibacterial/2-heptyl-4-quinolone.html","2-heptyl-4-quinolone"],["antibacterial/aurachin-c.html","aurachin C"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/difloxacin.html","difloxacin"],["antibacterial/e-1-hydroxy-2-non-1-en-1-yl-quinolin-4-one.html","(E)-1-hydroxy-2-(non-1-en-1-yl)quinolin-4-one"],["antibacterial/enrofloxacin.html","enrofloxacin"]]},{"id":"CHEBI:25106","l":"","na":4,"nb":18,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.28","The Bile Acid:Na+ Symporter (BASS) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/5e-7-oxozeaenol.html","5E-7-oxozeaenol"],["antibacterial/5z-7-oxozeaenol.html","5Z-7-oxozeaenol"],["antibacterial/bromophycolide-a.html","bromophycolide A"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/pristinamycin-iia.html","pristinamycin IIA"]]},{"id":"ARO:3003032","l":"MexXY-OprM","na":4,"nb":11,"a":[["ARO%3A3003032","MexXY-OprM"],["ARO%3A3005068","ParR"],["ARO%3A3005066","parRS"],["ARO%3A3005067","ParS"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/gentamicin-c.html","gentamicin C"],["antibacterial/meropenem.html","meropenem"]]},{"id":"CHEBI:33575","l":"carboxylic acid","na":4,"nb":11,"a":[["MCSA%3A105","aldehyde dehydrogenase (FAD-independent)"],["MCSA%3A803","aldehyde dehydrogenase (NAD+) (class 2)"],["MCSA%3A556","esterase (estA)"],["MCSA%3A755","lysophospholipase"]],"b":[["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefatrizine.html","cefatrizine"],["antibacterial/cefazedone.html","cefazedone"],["antibacterial/cefcapene.html","cefcapene"],["antibacterial/cefditoren.html","cefditoren"],["antibacterial/cefiderocol.html","cefiderocol"]]},{"id":"ARO:3000453","l":"streptogramin vat acetyltransferase","na":9,"nb":4,"a":[["ARO%3A3000453","streptogramin vat acetyltransferase"],["ARO%3A3002840","vatA"],["ARO%3A3002841","vatB"],["ARO%3A3002842","vatC"],["ARO%3A3002843","vatD"],["ARO%3A3002844","vatE"]],"b":[["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/madumycin-ii.html","madumycin II"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3000390","l":"rifampin ADP-ribosyltransferase (Arr)","na":8,"nb":4,"a":[["ARO%3A3002846","arr-1"],["ARO%3A3002847","arr-2"],["ARO%3A3002848","arr-3"],["ARO%3A3002849","arr-4"],["ARO%3A3002850","arr-5"],["ARO%3A3002852","arr-7"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3000788","l":"MdtEF-TolC","na":6,"nb":4,"a":[["ARO%3A3000518","CRP"],["ARO%3A3000832","evgA"],["ARO%3A3000515","evgSA"],["ARO%3A3003838","gadW"],["ARO%3A3000508","gadX"],["ARO%3A3000788","MdtEF-TolC"]],"b":[["antibacterial/cloxacillin.html","cloxacillin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/oxacillin.html","oxacillin"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":4,"nb":6,"a":[["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF09711","CRISPR-associated protein (Cas_Csn2)"],["Pfam%3APF06308","23S rRNA methylastransferase leader peptide (ErmCL)"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3004116","l":"","na":4,"nb":5,"a":[["ARO%3A3003754","antibiotic resistant nfsA"],["ARO%3A3003755","Antibiotic resistant nfsB"],["ARO%3A3003751","Escherichia coli nfsA mutations conferring resistance to nitrofurantoin"],["ARO%3A3003756","Escherichia coli nfsB with mutation conferring resistance to nitrofurantoin"]],"b":[["antibacterial/furagin.html","furagin"],["antibacterial/furazolidone.html","furazolidone"],["antibacterial/nifuratel.html","nifuratel"],["antibacterial/nifuroxazide.html","nifuroxazide"],["antibacterial/nitrofurantoin.html","nitrofurantoin"]]},{"id":"NCBITaxon:5518","l":"Fusarium graminearum","na":4,"nb":5,"a":[["Pfam%3APF09118","Galactose oxidase-like, Early set domain"],["Pfam%3APF07250","Glyoxal oxidase N-terminus"],["TED%3AAF-A0A2H3FY84-F1-model_v4_TED03","TED novel fold AF-A0A2H3FY84-F1-model_v4_TED03"],["TED%3AAF-A0A2H3G191-F1-model_v4_TED01","TED novel fold AF-A0A2H3G191-F1-model_v4_TED01"]],"b":[["antifungal/carbendazim.html","carbendazim"],["antifungal/difenoconazole.html","difenoconazole"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/prochloraz.html","prochloraz"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"ARO:3007496","l":"","na":4,"nb":4,"a":[["ARO%3A3007548","Candida spp. FKS2 with mutations conferring resistance to echinocandin antibiotics"],["ARO%3A3007664","Candida spp. High Osmolarity Glycerol 1 conferring resistance to caspofungin via absence"],["ARO%3A3007546","echinocandin antibiotic-resistant beta-1,3-D-glucan synthase"],["ARO%3A3007663","stress-activated protein kinases"]],"b":[["antibacterial/arborcandin-c.html","arborcandin C"],["antifungal/anidulafungin.html","anidulafungin"],["antifungal/caspofungin.html","caspofungin"],["antifungal/micafungin.html","micafungin"]]},{"id":"ARO:3000171","l":"","na":60,"nb":3,"a":[["ARO%3A3005354","dfr22"],["ARO%3A3002854","dfrA1"],["ARO%3A3003011","dfrA10"],["ARO%3A3002858","dfrA12"],["ARO%3A3003012","dfrA13"],["ARO%3A3002859","dfrA14"]],"b":[["antibacterial/brodimoprim.html","brodimoprim"],["antibacterial/tetroxoprim.html","tetroxoprim"],["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004598","l":"Klebsiella pneumoniae KpnGH-TolC","na":3,"nb":17,"a":[["ARO%3A3004588","Klebsiella pneumoniae KpnG"],["ARO%3A3004598","Klebsiella pneumoniae KpnGH-TolC"],["ARO%3A3004597","Klebsiella pneumoniae KpnH"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":3,"a":[["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["Pfam%3APF14562","Restriction endonuclease BglI"],["Pfam%3APF09195","Restriction endonuclease BglII/BglIII"],["Pfam%3APF09208","Restriction endonuclease MspI"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"CHEBI:35924","l":"","na":14,"nb":3,"a":[["EC%3A1.11.1.24","thioredoxin-dependent peroxiredoxin"],["EC%3A1.11.1.25","glutaredoxin-dependent peroxiredoxin"],["EC%3A1.11.1.26","NADH-dependent peroxiredoxin"],["EC%3A1.11.1.27","glutathione-dependent peroxiredoxin"],["EC%3A1.11.1.28","lipoyl-dependent peroxiredoxin"],["EC%3A1.11.1.29","mycoredoxin-dependent peroxiredoxin"]],"b":[["antiprotozoal/10%CE%B1-hydroperoxy-guaia-1-11-diene.html","10α-hydroperoxy-guaia-1,11-diene"],["antiprotozoal/1r-4s-1-hydroperoxy-p-menth-2-en-8-ol-acetate.html","(1R,4S)-1-hydroperoxy-p-menth-2-en-8-ol acetate"],["antiprotozoal/1%CE%B1-hydroperoxy-guaia-10-15-11-diene.html","1α-hydroperoxy-guaia-10(15),11-diene"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":13,"nb":3,"a":[["Pfam%3APF07832","Cfr10I/Bse634I restriction endonuclease"],["Pfam%3APF22348","Colicin-A N-terminal domain"],["Pfam%3APF01024","Colicin pore forming domain"],["Pfam%3APF18427","DD-reactivating factor swiveling domain"],["Pfam%3APF02286","Dehydratase large subunit"],["Pfam%3APF02288","Dehydratase medium subunit"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"UniProt:P38631","l":"","na":13,"nb":3,"a":[["ComplexPortal%3ACPX-1812","1,3-beta-D-glucan synthase complex, FKS1-RHO1 variant"],["GO%3A0000148","1,3-beta-D-glucan synthase complex"],["GO%3A0030479","actin cortical patch"],["GO%3A0003843","1,3-beta-D-glucan synthase activity"],["GO%3A0006075","(1->3)-beta-D-glucan biosynthetic process"],["GO%3A0030476","ascospore wall assembly"]],"b":[["antifungal/anidulafungin.html","anidulafungin"],["antifungal/caspofungin.html","caspofungin"],["antifungal/micafungin.html","micafungin"]]},{"id":"ARO:3004585","l":"Klebsiella pneumoniae KpnEF","na":3,"nb":11,"a":[["ARO%3A3004580","Klebsiella pneumoniae KpnE"],["ARO%3A3004585","Klebsiella pneumoniae KpnEF"],["ARO%3A3004583","Klebsiella pneumoniae KpnF"]],"b":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"],["antibacterial/cefepime.html","cefepime"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"NCBITaxon:451804","l":"Aspergillus fumigatus A1163","na":11,"nb":3,"a":[["Pfam%3APF28347","ACE1 small beta sheet domain"],["Pfam%3APF28329","Zinc finger transcription factor ace1 N-terminal domain"],["Pfam%3APF11001","YDR124W-like, helical bundle domain"],["Pfam%3APF28457","Probable beta-glucosidase btgE N-terminal domain"],["Pfam%3APF13373","DSC E3 ubiquitin ligase complex subunit 3, C-terminal domain"],["Pfam%3APF10302","DSC E3 ubiquitin ligase complex subunit 3, ubiquitin-like domain"]],"b":[["antifungal/itraconazole.html","itraconazole"],["antifungal/terbinafine.html","terbinafine"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"CHEBI:33838","l":"","na":3,"nb":10,"a":[["RHEA%3A22140","a nucleoside 5'-phosphate + H2O = a nucleoside + phosphate"],["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"],["TCDB%3A9.A.72","The Putative Nucleoside Efflux Transporter (NET) Family"]],"b":[["unspecified/tunicamycin-a0.html","tunicamycin A0"],["unspecified/tunicamycin-a1.html","tunicamycin A1"],["unspecified/tunicamycin-a2.html","tunicamycin A2"],["unspecified/tunicamycin-b1.html","tunicamycin B1"],["unspecified/tunicamycin-b2.html","tunicamycin B2"],["unspecified/tunicamycin-b3.html","tunicamycin B3"]]},{"id":"CHEBI:55465","l":"","na":3,"nb":8,"a":[["EC%3A2.1.1.150","isoflavone 7-O-methyltransferase"],["RHEA%3A17933","a 7-hydroxyisoflavone + S-adenosyl-L-methionine = a 7-methoxyisoflavone + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A56344","a 7-hydroxyisoflavone + UDP-alpha-D-glucose = a 7-hydroxyisoflavone 7-O-beta-D-glucoside + UDP + H(+)"]],"b":[["antibacterial/5-7-4-trihydroxy-6-8-diprenylisoflavone.html","5,7,4'-trihydroxy-6,8-diprenylisoflavone"],["antibacterial/dihydrolicoisoflavone-a.html","dihydrolicoisoflavone A"],["antifungal/wighteone.html","wighteone"],["antiprotozoal/5-7-3-4-tetrahydroxy-2-3-3-dimethylallyl-isoflavone.html","5,7,3',4'-tetrahydroxy-2'-(3,3-dimethylallyl)isoflavone"],["antiprotozoal/7-4-dihydroxy-3-methoxyisoflavone.html","7,4'-dihydroxy-3'-methoxyisoflavone"],["antiprotozoal/pseudobaptigenin.html","pseudobaptigenin"]]},{"id":"CHEBI:17580","l":"linalool","na":6,"nb":3,"a":[["EC%3A1.14.14.84","linalool 8-monooxygenase"],["EC%3A5.4.4.8","linalool isomerase"],["RHEA%3A68708","(2E)-geranyl diphosphate + H2O = linalool + diphosphate"],["RHEA%3A32635","linalool + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = (6E)-8-oxolinalool + 2 oxidized [NADPH--hemoprotein reductase] + 3 H2O + 2 H(+)"],["RHEA%3A54656","linalool = (2E)-geraniol"],["RHEA%3A32503","linalool + reduced [NADPH--hemoprotein reductase] + O2 = (6E)-8-hydroxylinalool + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["unspecified/linalool.html","linalool"],["unspecified/r-linalool.html","(R)-linalool"],["unspecified/s-linalool.html","(S)-linalool"]]},{"id":"CHEBI:20156","l":"","na":5,"nb":3,"a":[["EC%3A1.17.99.11","3-oxo-Delta(1)-steroid hydratase/dehydrogenase"],["EC%3A1.3.99.4","3-oxosteroid 1-dehydrogenase"],["RHEA%3A65848","a 3-oxo-Delta(1)-steroid + A + H2O = a steroid 1,3-dione + AH2"],["RHEA%3A65852","a 3-oxo-Delta(1)-steroid + H2O = a 1-hydroxy-3-oxo steroid"],["RHEA%3A13329","a 3-oxosteroid + A = a 3-oxo-Delta(1)-steroid + AH2"]],"b":[["antibacterial/6%CE%B2-16%CE%B2-diacetoxy-25-hydroxy-3-7-dioxy-29-nordammara-1-17-20-dien-21-oi.html","6β,16β-diacetoxy-25-hydroxy-3,7-dioxy-29-nordammara-1,17(20)-dien-21-oic acid"],["antibacterial/helvolic-acid-methyl-ester.html","helvolic acid methyl ester"],["antibacterial/helvolic-acid.html","helvolic acid"]]},{"id":"CHEBI:25697","l":"","na":3,"nb":5,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antibacterial/chelerythrine.html","chelerythrine"],["antifungal/isavuconazonium.html","isavuconazonium"],["antiprotozoal/nostocarboline.html","nostocarboline"],["antiprotozoal/quinine-1.html","quinine(1+)"],["antiviral/meso-tetrakis-n-methyl-4-pyridyl-porphine-4.html","meso-tetrakis(N-methyl-4-pyridyl)porphine(4+)"]]},{"id":"CHEBI:38083","l":"","na":5,"nb":3,"a":[["TCDB%3A2.A.69","The Auxin Efflux Carrier (AEC) Family"],["TCDB%3A2.A.70","The Malonate:Na+ Symporter (MSS) Family"],["TCDB%3A2.A.101","The Malonate Uptake (MatC) Family (Formerly UIT1)"],["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["TCDB%3A2.A.56","The Tripartite ATP-independent Periplasmic Transporter (TRAP-T) Family"]],"b":[["antibacterial/6%CE%B1-malonyloxymanoyl-oxide.html","6α-malonyloxymanoyl oxide"],["antifungal/brasilinolide-a.html","brasilinolide A"],["antifungal/isoprothiolane.html","isoprothiolane"]]},{"id":"ARO:3000391","l":"norA","na":4,"nb":3,"a":[["ARO%3A3000838","arlR"],["ARO%3A3000547","arlRS"],["ARO%3A3000839","arlS"],["ARO%3A3000391","norA"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"],["biocide/acriflavine.html","acriflavine"]]},{"id":"NCBITaxon:1213859","l":"Colletotrichum fructicola (strain Nara gc5)","na":4,"nb":3,"a":[["TED%3AAF-A0A7J6IJ15-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7J6IJ15-F1-model_v4_TED03"],["TED%3AAF-A0A7J6IKD8-F1-model_v4_TED01","TED novel fold AF-A0A7J6IKD8-F1-model_v4_TED01"],["TED%3AAF-L2G012-F1-model_v4_TED02","TED novel fold AF-L2G012-F1-model_v4_TED02"],["TED%3AAF-L2G364-F1-model_v4_TED02","TED novel fold AF-L2G364-F1-model_v4_TED02"]],"b":[["antifungal/difenoconazole.html","difenoconazole"],["antifungal/prochloraz.html","prochloraz"],["antifungal/propiconazole.html","propiconazole"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":3,"nb":4,"a":[["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF08130","Type A lantibiotic family"],["Pfam%3APF04738","Lantibiotic dehydratase, N terminus"]],"b":[["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/oxacillin.html","oxacillin"]]},{"id":"CHEBI:3638","l":"chloroquine","na":3,"nb":3,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antiprotozoal/chloroquine.html","chloroquine"],["antiprotozoal/r-chloroquine.html","(R)-chloroquine"],["antiprotozoal/s-chloroquine.html","(S)-chloroquine"]]},{"id":"CHEBI:75568","l":"1-monolinolein","na":3,"nb":3,"a":[["RHEA%3A38131","1-(9Z,12Z-octadecadienoyl)-glycerol + (9Z)-octadecenoyl-CoA = 1-(9Z,12Z-octadecadienoyl)-2-(9Z-octadecenoyl)-glycerol + CoA"],["RHEA%3A77591","1-(9Z,12Z-octadecadienoyl)-glycerol + (9Z)-octadecenoyl-CoA = 1-(9Z-octadecenoyl)-3-(9Z,12Z-octadecadienoyl)-glycerol + CoA"],["RHEA%3A48428","1-(9Z,12Z-octadecadienoyl)-glycerol + H2O = (9Z,12Z)-octadecadienoate + glycerol + H(+)"]],"b":[["antiviral/1-linoleoyl-sn-glycerol.html","1-linoleoyl-sn-glycerol"],["antiviral/1-monolinolein.html","1-monolinolein"],["antiviral/3-linoleoyl-sn-glycerol.html","3-linoleoyl-sn-glycerol"]]},{"id":"NCBITaxon:274","l":"Thermus thermophilus","na":3,"nb":3,"a":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF01861","Branched-chain polyamine synthase A C-terminal domain"],["Pfam%3APF07736","Chorismate mutase type I"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"],["antibacterial/streptomycin.html","streptomycin"],["unspecified/streptolydigin.html","streptolydigin"]]},{"id":"NCBITaxon:665079","l":"Sclerotinia sclerotiorum (strain ATCC 18683 / 1980 / Ss-1)","na":3,"nb":3,"a":[["TED%3AAF-A0A1D9PSD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1D9PSD6-F1-model_v4_TED01"],["TED%3AAF-A7EZS3-F1-model_v4_TED02","TED highly-symmetric fold AF-A7EZS3-F1-model_v4_TED02"],["TED%3AAF-A0A1D9QKV1-F1-model_v4_TED02","TED novel fold AF-A0A1D9QKV1-F1-model_v4_TED02"]],"b":[["antifungal/carboxin.html","carboxin"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/iprodione.html","iprodione"]]},{"id":"UniProt:P04585","l":"","na":3,"nb":3,"a":[["MCSA%3A175","HIV-1 retropepsin"],["proteintraitsmech%3ABIOLIP_E9B","E9B-binding site"],["proteintraitsmech%3ABIOLIP_TNF","TNF-binding site"]],"b":[["antiviral/delavirdine.html","delavirdine"],["antiviral/emivirine.html","emivirine"],["antiviral/nevirapine.html","nevirapine"]]},{"id":"CHEBI:35718","l":"","na":2,"nb":514,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/1-2-dodecanediol.html","1,2-dodecanediol"],["antibacterial/1-dodecylguanidine-acetate.html","1-dodecylguanidine acetate"],["antibacterial/1-dodecylguanidine.html","1-dodecylguanidine"],["antibacterial/5-bromo-8-methoxy-1-methyl-%CE%B2-carboline.html","5-bromo-8-methoxy-1-methyl-β-carboline"],["antibacterial/5-chloro-7-iodoquinolin-8-ol.html","5-chloro-7-iodoquinolin-8-ol"],["antibacterial/6-methoxy-2-benzoxazolinone.html","6-methoxy-2-benzoxazolinone"]]},{"id":"CHEBI:24127","l":"","na":2,"nb":155,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/allyl-alcohol.html","allyl alcohol"],["antibacterial/dehydroacetic-acid.html","dehydroacetic acid"],["antibacterial/hexachlorophene.html","hexachlorophene"],["antibacterial/methylene-bis-thiocyanate.html","methylene bis(thiocyanate)"],["antibacterial/streptomycin.html","streptomycin"],["antibacterial/tecloftalam.html","tecloftalam"]]},{"id":"CHEBI:22587","l":"","na":2,"nb":149,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/6-diazo-5-oxo-l-norleucine.html","6-diazo-5-oxo-L-norleucine"],["antibacterial/benzethonium-chloride.html","benzethonium chloride"],["antibacterial/gramine.html","gramine"],["antibacterial/hypothiocyanous-acid.html","hypothiocyanous acid"],["antibacterial/mi-1148.html","MI-1148"],["antibacterial/phenethyl-caffeate.html","phenethyl caffeate"]]},{"id":"ARO:3004268","l":"MCR phosphoethanolamine transferase","na":106,"nb":2,"a":[["ARO%3A3003689","MCR-1.1"],["ARO%3A3004506","MCR-1.10"],["ARO%3A3004688","MCR-1.11"],["ARO%3A3004689","MCR-1.12"],["ARO%3A3004690","MCR-1.13"],["ARO%3A3007246","MCR-1.14"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"CHEBI:23066","l":"","na":2,"nb":66,"a":[["TCDB%3A8.A.212","The d-Amino Acid Peptidase (dAAP) Family"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]],"b":[["antibacterial/cefacetrile.html","cefacetrile"],["antibacterial/cefaclor.html","cefaclor"],["antibacterial/cefadroxil.html","cefadroxil"],["antibacterial/cefaloram.html","cefaloram"],["antibacterial/cefaloridine.html","cefaloridine"],["antibacterial/cefalotin.html","cefalotin"]]},{"id":"ARO:3007149","l":"","na":53,"nb":2,"a":[["ARO%3A3004251","antibiotic-resistant cya adenylate cyclase"],["ARO%3A3004247","antibiotic-resistant GlpT"],["ARO%3A3002811","antibiotic-resistant murA transferase"],["ARO%3A3004250","antibiotic-resistant ptsI phosphotransferase"],["ARO%3A3004248","antibiotic-resistant UhpT"],["ARO%3A3003777","Borreliella burgdorferi murA with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"],["antibacterial/fosmidomycin.html","fosmidomycin"]]},{"id":"CHEBI:32955","l":"","na":2,"nb":52,"a":[["EC%3A3.3.2.10","soluble epoxide hydrolase"],["RHEA%3A19037","an epoxide + H2O = an ethanediol"]],"b":[["antibacterial/ambiguine-i.html","ambiguine I"],["antibacterial/asperlactone.html","asperlactone"],["antibacterial/aspyrone.html","aspyrone"],["antibacterial/asukamycin.html","asukamycin"],["antibacterial/ei-1511-3.html","EI-1511-3"],["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"CHEBI:26188","l":"","na":2,"nb":41,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["antibacterial/2-4-dihydroxy-3-methyl-6-2-oxopropyl-benzaldehyde.html","2,4-dihydroxy-3-methyl-6-(2-oxopropyl)benzaldehyde"],["antibacterial/asperlactone.html","asperlactone"],["antibacterial/aspyrone.html","aspyrone"],["antibacterial/asukamycin.html","asukamycin"],["antibacterial/bacillaene.html","bacillaene"],["antibacterial/butremycin.html","butremycin"]]},{"id":"CHEBI:37581","l":"","na":2,"nb":39,"a":[["EC%3A3.1.1.25","1,4-lactonase"],["RHEA%3A12745","a 1,4-lactone + H2O = a 4-hydroxyacid + H(+)"]],"b":[["antibacterial/1-hydroxycrisamicin-a.html","1-hydroxycrisamicin A"],["antibacterial/decatromicin-a.html","decatromicin A"],["antibacterial/decatromicin-b.html","decatromicin B"],["antibacterial/fumimycin.html","fumimycin"],["antibacterial/isopatulin.html","isopatulin"],["antibacterial/lactonamycin.html","lactonamycin"]]},{"id":"CHEBI:48219","l":"","na":2,"nb":26,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"],["antibacterial/benzethonium-chloride.html","benzethonium chloride"],["antibacterial/quaternium-15.html","quaternium-15"],["antifungal/2-4-xylenol.html","2,4-xylenol"],["antifungal/thimerosal.html","thimerosal"],["biocide/1-3-6-8-tetraazatricyclo-4-4-1-13-8-dodecane.html","1,3,6,8-tetraazatricyclo[4,4,1,13,8]dodecane"]]},{"id":"ARO:3007156","l":"","na":20,"nb":2,"a":[["ARO%3A3003457","ethionamide resistant ethA"],["ARO%3A3004888","ethionamide resistant fabG1"],["ARO%3A3004890","ethionamide resistant mshC"],["ARO%3A3004892","ethionamide resistant nudC"],["ARO%3A3004954","Ethionamide resistant Rv0565c"],["ARO%3A3004875","inhA with mutations with conferring resistance to ethionamide"]],"b":[["antibacterial/prothionamide.html","prothionamide"],["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"CHEBI:17176","l":"","na":17,"nb":2,"a":[["EC%3A1.1.3.20","long-chain-alcohol oxidase"],["EC%3A1.14.14.3","bacterial luciferase"],["EC%3A1.2.1.48","long-chain-aldehyde dehydrogenase"],["EC%3A1.2.1.50","long-chain-fatty-acyl-CoA reductase"],["EC%3A1.2.1.80","long-chain acyl-[acyl-carrier-protein] reductase"],["EC%3A4.1.99.5","aldehyde oxygenase (deformylating)"]],"b":[["antibacterial/e-dodec-2-enal.html","(E)-dodec-2-enal"],["unspecified/pentadecanal.html","pentadecanal"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":16,"nb":2,"a":[["Pfam%3APF16822","SGNH hydrolase-like domain, acetyltransferase AlgX"],["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"],["Pfam%3APF11182","Alginate O-acetyl transferase AlgF"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF27129","Functional amyloid protein FapB/FapC family"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]],"b":[["antibacterial/mupirocin.html","mupirocin"],["antifungal/2-4-diacetylphloroglucinol.html","2,4-diacetylphloroglucinol"]]},{"id":"UniProt:Q45066","l":"","na":16,"nb":2,"a":[["GO%3A0009330","DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) complex"],["GO%3A0034335","DNA negative supercoiling activity"],["NCBIfam%3ANF004044","DNA topoisomerase (ATP-hydrolyzing)"],["NCBIfam%3ATIGR01063","DNA topoisomerase (ATP-hydrolyzing) subunit A"],["NCBIfam%3ATIGR01061","DNA topoisomerase IV subunit A"],["CDD%3Acd00187","TOP4c"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"CHEBI:33566","l":"","na":2,"nb":15,"a":[["EC%3A2.1.1.6","catechol O-methyltransferase"],["RHEA%3A17877","a catechol + S-adenosyl-L-methionine = a guaiacol + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/acteoside.html","acteoside"],["antibacterial/brazilin.html","brazilin"],["antibacterial/comazaphilone-c.html","comazaphilone C"],["antibacterial/comazaphilone-e.html","comazaphilone E"],["antibacterial/ethyl-3-4-dihydroxybenzoate.html","ethyl 3,4-dihydroxybenzoate"],["antifungal/altenusin.html","altenusin"]]},{"id":"GO:0003964","l":"RNA-directed DNA polymerase activity","na":13,"nb":2,"a":[["EC%3A2.7.7.49","RNA-directed DNA polymerase"],["GO%3A0003964","RNA-directed DNA polymerase activity"],["GO%3A0003720","telomerase activity"],["NCBIfam%3ATIGR04416","group II intron reverse transcriptase/maturase"],["InterPro%3AIPR010659","Reverse transcriptase connection"],["InterPro%3AIPR010661","Reverse transcriptase thumb"]],"b":[["antiviral/delavirdine.html","delavirdine"],["antiviral/nevirapine.html","nevirapine"]]},{"id":"CHEBI:140331","l":"","na":2,"nb":11,"a":[["EC%3A2.1.1.231","flavonoid 4'-O-methyltransferase"],["RHEA%3A31743","a 4'-hydroxyflavanone + S-adenosyl-L-methionine = a 4'-methoxyflavanone + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/6-8-diprenylnaringenin.html","6,8-diprenylnaringenin"],["antibacterial/naringenin-7-o-%CE%B2-d-glucoside.html","naringenin 7-O-β-D-glucoside"],["antibacterial/remangiflavanone-a.html","remangiflavanone A"],["antibacterial/remangiflavanone-b.html","remangiflavanone B"],["antibacterial/sigmoidin-a.html","sigmoidin A"],["antibacterial/sigmoidin-b.html","sigmoidin B"]]},{"id":"CHEBI:77396","l":"","na":11,"nb":2,"a":[["EC%3A1.1.1.192","long-chain-alcohol dehydrogenase"],["EC%3A1.1.3.20","long-chain-alcohol oxidase"],["EC%3A1.2.1.108","alcohol-forming fatty acyl-CoA reductase (NADH)"],["EC%3A1.2.1.84","alcohol-forming fatty acyl-CoA reductase (NADPH)"],["EC%3A1.2.1.n2","fatty acyl-CoA reductase"],["RHEA%3A36303","a fatty acyl-CoA + 2 NADPH + 2 H(+) = a long-chain primary fatty alcohol + 2 NADP(+) + CoA"]],"b":[["antibacterial/9z-12z-15z-octadecatrien-1-ol.html","(9Z,12Z,15Z)-octadecatrien-1-ol"],["antiviral/docosan-1-ol.html","docosan-1-ol"]]},{"id":"ARO:3007560","l":"","na":10,"nb":2,"a":[["ARO%3A3007642","Aspergillus spp. fcyB conferring resistance to 5-flucytosine via reduced permeability"],["ARO%3A3007643","Aspergillus spp. transcription factor pacC"],["ARO%3A3007665","Candida spp. FCY2 conferring resistance to 5-flucytosine via reduced permeability"],["ARO%3A3007557","Candida spp. FUR1 with mutations conferring resistance to 5-flucytosine"],["ARO%3A3007568","Cryptococcus spp. UXS1 conferring resistance to 5-flucytosine via absence"],["ARO%3A3007641","fungal nucleobase transporters"]],"b":[["antifungal/5-fluorouracil.html","5-Fluorouracil"],["antifungal/flucytosine.html","flucytosine"]]},{"id":"NCBITaxon:242507","l":"","na":10,"nb":2,"a":[["Pfam%3APF28293","Biotrophy-associated secreted protein 2"],["Pfam%3APF28414","Biotrophy-associated secreted protein 4"],["Pfam%3APF22997","Chitin synthase 4-like domain"],["Pfam%3APF27979","CON7 transcription factor helical domain"],["Pfam%3APF26980","Dicer-like protein 2, dsRNA binding domain"],["Pfam%3APF11327","Egh16-like virulence factor"]],"b":[["antifungal/carboxin.html","carboxin"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"UniProt:Q59192","l":"","na":10,"nb":2,"a":[["GO%3A0034335","DNA negative supercoiling activity"],["NCBIfam%3ANF004189","DNA gyrase subunit B"],["NCBIfam%3ATIGR01058","DNA topoisomerase IV subunit B"],["InterPro%3AIPR018522","DNA topoisomerase, type IIA, conserved site"],["CDD%3Acd16928","HATPase_GyrB-like"],["CDD%3Acd00822","TopoII_Trans_DNA_gyrase"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"CHEBI:35489","l":"","na":2,"nb":9,"a":[["EC%3A1.8.3.7","formylglycine-generating enzyme"],["RHEA%3A51152","L-cysteinyl-[sulfatase] + 2 a thiol + O2 = an organic disulfide + 3-oxo-L-alanyl-[sulfatase] + hydrogen sulfide + H2O + H(+)"]],"b":[["antibacterial/2-methyldithio-pyridine-n-oxide.html","2-(methyldithio)pyridine-N-oxide"],["antibacterial/thiram.html","thiram"],["antibacterial/tropodithietic-acid.html","tropodithietic acid"],["antifungal/diallyl-disulfide.html","diallyl disulfide"],["antifungal/disulfiram.html","disulfiram"],["antifungal/gliotoxin.html","gliotoxin"]]},{"id":"CHEBI:13248","l":"","na":2,"nb":8,"a":[["EC%3A3.5.1.13","aryl-acylamidase"],["RHEA%3A20297","an anilide + H2O = aniline + a carboxylate + H(+)"]],"b":[["antifungal/benodanil.html","benodanil"],["antifungal/carboxin.html","carboxin"],["antifungal/cyclanilide.html","cyclanilide"],["antifungal/fenfuram.html","fenfuram"],["antifungal/methfuroxam.html","methfuroxam"],["antifungal/oxycarboxin.html","oxycarboxin"]]},{"id":"CHEBI:134251","l":"","na":2,"nb":8,"a":[["EC%3A2.1.1.6","catechol O-methyltransferase"],["RHEA%3A17877","a catechol + S-adenosyl-L-methionine = a guaiacol + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/rhapontigenin.html","rhapontigenin"],["antifungal/coniferyl-aldehyde.html","coniferyl aldehyde"],["antifungal/nk372135c.html","NK372135C"],["antimycobacterial/1-2-hydroxy-4-methoxyphenyl-3-4-hydroxy-3-methoxyphenyl-propane.html","1-(2-hydroxy-4-methoxyphenyl)-3-(4-hydroxy-3-methoxyphenyl)propane"],["antiviral/5r-5-hydroxy-7-4-hydroxy-3-methoxyphenyl-1-phenyl-3-heptanone.html","(5R)-5-hydroxy-7-(4'-hydroxy-3'-methoxyphenyl)-1-phenyl-3-heptanone"],["antiviral/isorhapontigenin.html","isorhapontigenin"]]},{"id":"CHEBI:18254","l":"","na":8,"nb":2,"a":[["EC%3A2.7.1.77","nucleoside phosphotransferase"],["EC%3A3.1.3.5","5'-nucleotidase"],["EC%3A3.1.3.6","3'-nucleotidase"],["RHEA%3A19961","a 2'-deoxyribonucleoside + a ribonucleoside 5'-phosphate = a ribonucleoside + a 2'-deoxyribonucleoside 5'-phosphate"],["RHEA%3A10144","a ribonucleoside 3'-phosphate + H2O = a ribonucleoside + phosphate"],["RHEA%3A12484","a ribonucleoside 5'-phosphate + H2O = a ribonucleoside + phosphate"]],"b":[["antifungal/toyocamycin.html","toyocamycin"],["antifungal/tubercidin.html","tubercidin"]]},{"id":"CHEBI:26191","l":"","na":2,"nb":8,"a":[["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A1.A.8","The Major Intrinsic Protein (MIP) Family"]],"b":[["antifungal/reedsmycin-a.html","reedsmycin A"],["antifungal/reedsmycin-b.html","reedsmycin B"],["antifungal/reedsmycin-c.html","reedsmycin C"],["antifungal/reedsmycin-d.html","reedsmycin D"],["antifungal/reedsmycin-e.html","reedsmycin E"],["antifungal/validamycin-a.html","validamycin A"]]},{"id":"CHEBI:59062","l":"","na":2,"nb":8,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["antibacterial/colistimethate-a.html","colistimethate A"],["antibacterial/colistimethate-b.html","colistimethate B"],["antibacterial/colistin-a-sodium-methanesulfonate.html","colistin A sodium methanesulfonate"],["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b-sodium-methanesulfonate.html","colistin B sodium methanesulfonate"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":2,"nb":8,"a":[["PROSITE%3APS00820","Glucoamylase active site region signature"],["TED%3AAF-A0A7I9G6Y3-F1-model_v4_TED02","TED novel fold AF-A0A7I9G6Y3-F1-model_v4_TED02"]],"b":[["antifungal/anidulafungin.html","anidulafungin"],["antifungal/carbendazim.html","carbendazim"],["antifungal/caspofungin.html","caspofungin"],["antifungal/cycloheximide.html","cycloheximide"],["antifungal/micafungin.html","micafungin"],["antifungal/oligomycin-a.html","oligomycin A"]]},{"id":"ARO:3000798","l":"MexEF-OprN","na":7,"nb":2,"a":[["ARO%3A3000798","MexEF-OprN"],["ARO%3A3004068","MexEF-OprN with MexS mutations conferring resistance to chloramphenicol, ciprofloxacin, and trimethoprim"],["ARO%3A3004066","MexEF-OprN with MexT mutation conferring resistance to chloramphenicol, ciprofloxacin, and trimethoprim"],["ARO%3A3004070","MexEF-OprN with MvaT deletion conferring resistance to chloramphenicol and norfloxacin"],["ARO%3A3000813","MexS"],["ARO%3A3000814","MexT"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"CHEBI:33839","l":"","na":7,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.I.3","The Bacterial (Planctomycetes) Nuclear Pore-like Complex (B-NPC) Family"],["TCDB%3A1.A.21","The Bcl-2 (Bcl-2) Family"],["TCDB%3A1.N.4","The FF Fusogen (FFF) Family"],["TCDB%3A1.Q.1","The Fungal Septal Pore (FSP) Family"],["TCDB%3A1.N.3","The Hapless2 Male Gamete Fusion Factor (Fusexin) Family"]],"b":[["antifungal/propineb.html","propineb"],["antifungal/zineb.html","zineb"]]},{"id":"ARO:3000772","l":"AdeIJK","na":2,"nb":6,"a":[["ARO%3A3000772","AdeIJK"],["ARO%3A3000559","adeN"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/imipenem.html","imipenem"],["antibacterial/tetracycline.html","tetracycline"],["antibacterial/ticarcillin.html","ticarcillin"],["antibacterial/trimethoprim.html","trimethoprim"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3007159","l":"","na":6,"nb":2,"a":[["ARO%3A3004183","aminosalicylate resistant dihydrofolate reductase"],["ARO%3A3004155","aminosalicylate resistant dihydrofolate synthase"],["ARO%3A3004152","aminosalicylate resistant thymidylate synthase"],["ARO%3A3004157","Mycobacterium tuberculosis folC with mutation conferring resistance to para-aminosalicylic acid"],["ARO%3A3004184","Mycobacterium tuberculosis ribD with mutation conferring resistance to para-aminosalicylic acid"],["ARO%3A3004153","Mycobacterium tuberculosis thyA with mutation conferring resistance to para-aminosalicylic acid"]],"b":[["antibacterial/diflunisal.html","diflunisal"],["antimycobacterial/4-aminosalicylic-acid.html","4-aminosalicylic acid"]]},{"id":"ARO:3007434","l":"almEFG","na":6,"nb":2,"a":[["ARO%3A3007430","alm glycyl carrier protein"],["ARO%3A3007432","alm glycyltransferase"],["ARO%3A3007433","almE"],["ARO%3A3007434","almEFG"],["ARO%3A3007431","almF"],["ARO%3A3004364","almG"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"CHEBI:140377","l":"","na":2,"nb":6,"a":[["EC%3A1.14.11.9","flavanone 3-dioxygenase"],["RHEA%3A18621","a (2S)-flavan-4-one + 2-oxoglutarate + O2 = a (2R,3R)-dihydroflavonol + succinate + CO2"]],"b":[["antibacterial/6-8-diprenylnaringenin.html","6,8-diprenylnaringenin"],["antibacterial/naringenin-7-o-%CE%B2-d-glucoside.html","naringenin 7-O-β-D-glucoside"],["antibacterial/sophoraflavanone-a.html","sophoraflavanone A"],["antifungal/selinone.html","selinone"],["antimycobacterial/sakuranetin.html","sakuranetin"],["antiprotozoal/sophoraflavanone-g.html","sophoraflavanone G"]]},{"id":"CHEBI:28802","l":"","na":6,"nb":2,"a":[["EC%3A1.14.20.6","flavonol synthase"],["EC%3A2.4.1.91","flavonol 3-O-glucosyltransferase"],["EC%3A3.2.1.62","glycosylceramidase"],["RHEA%3A21088","a (2R,3R)-dihydroflavonol + 2-oxoglutarate + O2 = a flavonol + succinate + CO2 + H2O"],["RHEA%3A81339","a flavonol 3-O-beta-D-glucoside + H2O = a flavonol + D-glucose"],["RHEA%3A22300","a flavonol + UDP-alpha-D-glucose = a flavonol 3-O-beta-D-glucoside + UDP + H(+)"]],"b":[["antibacterial/kaempferol.html","kaempferol"],["antiviral/quercetagetin.html","quercetagetin"]]},{"id":"CHEBI:4917","l":"eugenol","na":6,"nb":2,"a":[["EC%3A1.1.1.318","eugenol synthase"],["EC%3A2.1.1.146","(iso)eugenol O-methyltransferase"],["RHEA%3A32655","eugenol + a carboxylate + NADP(+) = a coniferyl ester + NADPH"],["RHEA%3A24690","eugenol + acetate + NADP(+) = (E)-coniferyl acetate + NADPH"],["RHEA%3A80551","eugenol + S-adenosyl-L-methionine = O-methyleugenol + S-adenosyl-L-homocysteine + H(+)"],["proteintraitsmech%3ABIOLIP_EOL","EOL-binding site"]],"b":[["antibacterial/dihydroconiferyl-alcohol.html","dihydroconiferyl alcohol"],["antibacterial/eugenol.html","eugenol"]]},{"id":"ARO:3000617","l":"mecA","na":5,"nb":2,"a":[["ARO%3A3000617","mecA"],["ARO%3A3003440","mecB"],["ARO%3A3001209","mecC"],["ARO%3A3004185","mecD"],["ARO%3A3001208","methicillin resistant PBP2"]],"b":[["antibacterial/ceftaroline.html","ceftaroline"],["antibacterial/methicillin.html","methicillin"]]},{"id":"CHEBI:28034","l":"","na":5,"nb":2,"a":[["EC%3A2.3.1.18","galactoside O-acetyltransferase"],["EC%3A2.4.3.1","beta-galactoside alpha-(2,6)-sialyltransferase"],["RHEA%3A15713","a beta-D-galactoside + acetyl-CoA = a 6-acetyl-beta-D-galactoside + CoA"],["RHEA%3A52104","a beta-D-galactoside + CMP-N-acetyl-beta-neuraminate = an N-acetyl-alpha-neuraminyl-(2->6)-beta-D-galactosyl derivative + CMP + H(+)"],["RHEA%3A85983","a beta-D-galactoside + UDP-N-acetyl-alpha-D-glucosamine = an N-acetyl-alpha-D-glucosaminyl-(1->4)-beta-D-galactosyl derivative + UDP + H(+)"]],"b":[["antifungal/kaempferol-3-o-%CE%B2-d-galactoside.html","kaempferol 3-O-β-D-galactoside"],["antiviral/acacetin-7-o-%CE%B2-d-galactopyranoside.html","acacetin-7-O-β-D-galactopyranoside"]]},{"id":"CHEBI:35748","l":"","na":2,"nb":5,"a":[["RHEA%3A59388","a fatty acid ester + H2O = an aliphatic alcohol + a fatty acid + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antiprotozoal/neurolenin-a.html","neurolenin A"],["antiprotozoal/neurolenin-b.html","neurolenin B"],["antiprotozoal/neurolenin-c.html","neurolenin C"],["antiprotozoal/neurolenin-d.html","neurolenin D"],["antiviral/interiotherin-b.html","interiotherin B"]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":2,"nb":5,"a":[["Pfam%3APF07833","Copper amine oxidase N-terminal domain"],["TED%3AAF-A0A447L715-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A447L715-F1-model_v4_TED02"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3000248","l":"DnaA","na":2,"nb":4,"a":[["ARO%3A3000248","DnaA"],["ARO%3A3004244","DnaA chromosomal replication initiation protein"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3000369","l":"MtrCDE","na":4,"nb":2,"a":[["ARO%3A3000816","mtrA"],["ARO%3A3000369","MtrCDE"],["ARO%3A3000817","mtrR"],["ARO%3A3004851","Neisseria gonorrhoeae mtrR with mutation conferring resistance"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003581","l":"Acinetobacter mutant Lpx gene conferring resistance to colistin","na":4,"nb":2,"a":[["ARO%3A3003581","Acinetobacter mutant Lpx gene conferring resistance to colistin"],["ARO%3A3003573","LpxA"],["ARO%3A3003574","LpxC"],["ARO%3A3003575","LpxD"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004063","l":"EdeQ","na":2,"nb":4,"a":[["ARO%3A3004064","Edeine acetyltransferase"],["ARO%3A3004063","EdeQ"]],"b":[["antibacterial/edeine-a.html","edeine A"],["antibacterial/edeine-b.html","edeine B"],["antibacterial/edeine-d.html","edeine D"],["antibacterial/edeine-f.html","edeine F"]]},{"id":"ARO:3004287","l":"lipid A phosphatase","na":2,"nb":4,"a":[["ARO%3A3004287","lipid A phosphatase"],["ARO%3A3003920","pgpB"]],"b":[["antibacterial/polymyxin-b1.html","polymyxin B1"],["antibacterial/polymyxin-b2.html","polymyxin B2"],["antibacterial/polymyxin-b3.html","polymyxin B3"],["antibacterial/polymyxin-b4.html","polymyxin B4"]]},{"id":"CHEBI:12834","l":"","na":4,"nb":2,"a":[["EC%3A1.3.1.102","2-alkenal reductase (NADP(+))"],["EC%3A1.3.1.74","2-alkenal reductase [NAD(P)(+)]"],["RHEA%3A13733","an n-alkanal + NAD(+) = an alk-2-enal + NADH + H(+)"],["RHEA%3A13737","an n-alkanal + NADP(+) = an alk-2-enal + NADPH + H(+)"]],"b":[["antifungal/decanal.html","decanal"],["antimycobacterial/undecanal.html","undecanal"]]},{"id":"CHEBI:13601","l":"","na":4,"nb":2,"a":[["EC%3A1.3.1.22","3-oxo-5alpha-steroid 4-dehydrogenase (NADP(+))"],["EC%3A1.3.99.5","3-oxo-5alpha-steroid 4-dehydrogenase (acceptor)"],["RHEA%3A13805","a 3-oxo-5alpha-steroid + A = a 3-oxo-Delta(4)-steroid + AH2"],["RHEA%3A54384","a 3-oxo-5alpha-steroid + NADP(+) = a 3-oxo-Delta(4)-steroid + NADPH + H(+)"]],"b":[["antiviral/lucialdehyde-b.html","lucialdehyde B"],["antiviral/torvoside-h.html","torvoside H"]]},{"id":"CHEBI:140332","l":"","na":2,"nb":4,"a":[["EC%3A2.1.1.231","flavonoid 4'-O-methyltransferase"],["RHEA%3A31743","a 4'-hydroxyflavanone + S-adenosyl-L-methionine = a 4'-methoxyflavanone + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antifungal/chamaejasmenin-a.html","chamaejasmenin A"],["antifungal/chamaejasmenin-d.html","chamaejasmenin D"],["antifungal/isochamaejasmenin-b.html","isochamaejasmenin B"],["unspecified/erylatissin-c.html","erylatissin C"]]},{"id":"CHEBI:15904","l":"long-chain fatty acid","na":2,"nb":4,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/9z-12z-15z-octadeca-9-12-15-trien-6-ynoic-acid.html","(9Z,12Z,15Z)-octadeca-9,12,15-trien-6-ynoic acid"],["antifungal/10e-15z-9-12-13-trihydroxy-10-15-octadecadienoic-acid.html","(10E,15Z)-9,12,13-trihydroxy-10,15-octadecadienoic acid"],["antimycobacterial/scleropyric-acid.html","scleropyric acid"],["antiprotozoal/minquartynoic-acid.html","minquartynoic acid"]]},{"id":"CHEBI:35190","l":"","na":4,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.60","The Organo Anion Transporter (OAT) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antifungal/casbene.html","casbene"],["unspecified/neophytadiene.html","neophytadiene"]]},{"id":"CHEBI:35757","l":"","na":4,"nb":2,"a":[["EC%3A3.5.1.4","amidase"],["RHEA%3A12020","a monocarboxylic acid amide + H2O = a monocarboxylate + NH4(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["MCSA%3A726","peptide amidase"]],"b":[["antiviral/n-acetyl-l-cysteinate.html","N-acetyl-L-cysteinate"],["unspecified/nocardicin-e-2.html","nocardicin E(2−)"]]},{"id":"CHEBI:52267","l":"","na":2,"nb":4,"a":[["EC%3A2.4.1.237","flavonol 7-O-beta-glucosyltransferase"],["RHEA%3A23164","a 7-O-hydroxy-flavonol + UDP-alpha-D-glucose = a flavonol 7-O-beta-D-glucoside + UDP + H(+)"]],"b":[["antibacterial/kaempferol.html","kaempferol"],["antibacterial/morin.html","morin"],["antibacterial/quercetin.html","quercetin"],["unspecified/galangin.html","galangin"]]},{"id":"CHEBI:80291","l":"","na":4,"nb":2,"a":[["EC%3A3.5.5.7","aliphatic nitrilase"],["EC%3A4.2.1.84","nitrile hydratase"],["RHEA%3A46188","an aliphatic nitrile + 2 H2O = a carboxylate + NH4(+)"],["RHEA%3A12673","an aliphatic primary amide = an aliphatic nitrile + H2O"]],"b":[["antifungal/acrylonitrile.html","acrylonitrile"],["antifungal/borrelidin.html","borrelidin"]]},{"id":"NCBITaxon:318829","l":"Pyricularia oryzae","na":2,"nb":4,"a":[["TED%3AAF-A0A4P7NAU2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P7NAU2-F1-model_v4_TED01"],["TED%3AAF-A0A4P7MZB7-F1-model_v4_TED02","TED novel fold AF-A0A4P7MZB7-F1-model_v4_TED02"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/carboxin.html","carboxin"],["antifungal/carpropamid.html","carpropamid"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:746128","l":"Aspergillus fumigatus","na":2,"nb":4,"a":[["Pfam%3APF07335","Fungal chitosanase of glycosyl hydrolase group 75"],["Pfam%3APF12296","Hydrophobic surface binding protein A"]],"b":[["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/terbinafine.html","terbinafine"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"ARO:3000770","l":"AdeABC","na":3,"nb":2,"a":[["ARO%3A3000770","AdeABC"],["ARO%3A3000553","adeR"],["ARO%3A3000549","adeS"]],"b":[["antibacterial/tetracycline.html","tetracycline"],["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:3000773","l":"CmeABC","na":2,"nb":3,"a":[["ARO%3A3000773","CmeABC"],["ARO%3A3000526","cmeR"]],"b":[["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3000799","l":"MexGHI-OpmD","na":2,"nb":3,"a":[["ARO%3A3000806","MexG"],["ARO%3A3000799","MexGHI-OpmD"]],"b":[["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/tetracycline.html","tetracycline"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3002986","l":"bacA","na":2,"nb":3,"a":[["ARO%3A3002986","bacA"],["ARO%3A3003250","bcrC"]],"b":[["antibacterial/bacitracin-a.html","bacitracin A"],["antibacterial/bacitracin-b.html","bacitracin B"],["antibacterial/bacitracin-f.html","bacitracin F"]]},{"id":"ARO:3003250","l":"bcrC","na":2,"nb":3,"a":[["ARO%3A3002986","bacA"],["ARO%3A3003250","bcrC"]],"b":[["antibacterial/bacitracin-a.html","bacitracin A"],["antibacterial/bacitracin-b.html","bacitracin B"],["antibacterial/bacitracin-f.html","bacitracin F"]]},{"id":"ARO:3003963","l":"flo","na":3,"nb":2,"a":[["ARO%3A3003963","flo"],["ARO%3A3002705","floR"],["ARO%3A3002812","pp-flo"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"]]},{"id":"CHEBI:142621","l":"","na":3,"nb":2,"a":[["RHEA%3A69763","a medium-chain fatty aldehyde + NAD(+) + H2O = a medium-chain fatty acid + NADH + 2 H(+)"],["RHEA%3A80815","a medium-chain fatty aldehyde + NADP(+) + H2O = a medium-chain fatty acid + NADPH + 2 H(+)"],["RHEA%3A58364","a medium-chain primary fatty alcohol + NADP(+) = a medium-chain fatty aldehyde + NADPH + H(+)"]],"b":[["antifungal/decanal.html","decanal"],["antimycobacterial/undecanal.html","undecanal"]]},{"id":"CHEBI:17012","l":"N-acetylneuraminic acid","na":2,"nb":3,"a":[["MCSA%3A835","exo-alpha-sialidase (GH33 Family)"],["MCSA%3A828","exo-alpha-sialidase (GH34 Family)"]],"b":[["antiviral/n-acetyl-%CE%B1-neuraminic-acid.html","N-acetyl-α-neuraminic acid"],["antiviral/n-acetyl-%CE%B2-neuraminic-acid.html","N-acetyl-β-neuraminic acid"],["antiviral/n-acetylneuraminic-acid.html","N-acetylneuraminic acid"]]},{"id":"CHEBI:83628","l":"","na":3,"nb":2,"a":[["EC%3A3.5.1.4","amidase"],["RHEA%3A12020","a monocarboxylic acid amide + H2O = a monocarboxylate + NH4(+)"],["MCSA%3A726","peptide amidase"]],"b":[["antifungal/2-chloroacetamide.html","2-chloroacetamide"],["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"NCBITaxon:332648","l":"Botrytis cinerea B05.10","na":3,"nb":2,"a":[["Pfam%3APF01670","Glycosyl hydrolase family 12"],["PROSITE%3APS00776","Glycosyl hydrolases family 11 (GH11) active site signature 1"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"]],"b":[["antifungal/fludioxonil.html","fludioxonil"],["antifungal/iprodione.html","iprodione"]]},{"id":"ARO:3003027","l":"lmrAB Operon","na":2,"nb":2,"a":[["ARO%3A3003028","lmrA"],["ARO%3A3003027","lmrAB Operon"]],"b":[["antibacterial/lincomycin.html","lincomycin"],["antibacterial/puromycin.html","puromycin"]]},{"id":"ARO:3004101","l":"MdtNOP","na":2,"nb":2,"a":[["ARO%3A3003843","leuO"],["ARO%3A3004101","MdtNOP"]],"b":[["antibacterial/puromycin.html","puromycin"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3004141","l":"AxyXY-OprZ","na":2,"nb":2,"a":[["ARO%3A3004141","AxyXY-OprZ"],["ARO%3A3004145","AxyZ"]],"b":[["antibacterial/cefepime.html","cefepime"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004919","l":"Mycobacterium tuberculosis eccC5 conferring resistance to fluoroquinolones","na":2,"nb":2,"a":[["ARO%3A3004918","Mycobacterium tuberculosis eccB5 conferring resistance to fluoroquinolones"],["ARO%3A3004919","Mycobacterium tuberculosis eccC5 conferring resistance to fluoroquinolones"]],"b":[["antibacterial/moxifloxacin.html","moxifloxacin"],["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3004995","l":"rifampicin resistant rpoC","na":2,"nb":2,"a":[["ARO%3A3004994","Mycobacterium tuberculosis rpoC mutations confer resistance to rifampicin"],["ARO%3A3004995","rifampicin resistant rpoC"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3007161","l":"","na":2,"nb":2,"a":[["ARO%3A3005178","Mycobacterium tuberculosis ethA mutations conferring resistance to perchlozone"],["ARO%3A3005205","perchlozone resistant ethA"]],"b":[["antibacterial/perchlozone.html","perchlozone"],["antibacterial/thioacetazone.html","thioacetazone"]]},{"id":"CHEBI:133959","l":"","na":2,"nb":2,"a":[["EC%3A2.1.1.46","isoflavone 4'-O-methyltransferase"],["RHEA%3A31739","a 4'-hydroxyisoflavone + S-adenosyl-L-methionine = a 4'-methoxyisoflavone + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/licoricone.html","licoricone"],["unspecified/erylatissin-a.html","erylatissin A"]]},{"id":"CHEBI:140310","l":"","na":2,"nb":2,"a":[["EC%3A3.1.1.2","arylesterase"],["RHEA%3A17309","a phenyl acetate + H2O = a phenol + acetate + H(+)"]],"b":[["antibacterial/resorcinol-monoacetate.html","resorcinol monoacetate"],["antifungal/ncx-4040.html","NCX-4040"]]},{"id":"CHEBI:17354","l":"","na":2,"nb":2,"a":[["EC%3A5.1.99.2","16-hydroxysteroid epimerase"],["RHEA%3A15829","a 16alpha-hydroxysteroid = a 16beta-hydroxysteroid"]],"b":[["antifungal/9%CE%BE-14%CE%BE-25s-cholestane-3%CE%B2-4%CE%B2-6%CE%B2-7%CE%B1-8-15%CE%B1-16%CE%B2-26-octol.html","(9ξ,14ξ,25S)-cholestane-3β,4β,6β,7α,8,15α,16β,26-octol"],["antiviral/clathsterol-disulfonic-acid.html","clathsterol disulfonic acid"]]},{"id":"CHEBI:28163","l":"","na":2,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/albomycin-%CE%B42.html","albomycin δ2"],["antibacterial/albomycin-%CE%B5.html","albomycin ε"]]},{"id":"CHEBI:4986","l":"","na":2,"nb":2,"a":[["EC%3A2.1.1.15","fatty-acid O-methyltransferase"],["RHEA%3A23012","a fatty acid + S-adenosyl-L-methionine = a fatty acid methyl ester + S-adenosyl-L-homocysteine"]],"b":[["antibacterial/methyl-%CE%B3-linolenate.html","methyl γ-linolenate"],["antifungal/methyl-nonanoate.html","methyl nonanoate"]]},{"id":"CHEBI:64627","l":"","na":2,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.A.18","The Peptide Uptake Permease (PUP) Family"]],"b":[["unspecified/microcin-b17.html","microcin B17"],["unspecified/microcin-c.html","microcin c"]]},{"id":"CHEBI:86315","l":"","na":2,"nb":2,"a":[["EC%3A2.1.1.9","thiol S-methyltransferase"],["RHEA%3A18277","a thiol + S-adenosyl-L-methionine = a methyl thioether + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antifungal/maremycin-g.html","maremycin G"],["antifungal/neticonazole.html","neticonazole"]]},{"id":"NCBITaxon:5482","l":"Candida tropicalis","na":2,"nb":2,"a":[["Pfam%3APF05203","Hom_end-associated Hint"],["Pfam%3APF05204","Homing endonuclease"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"CHEBI:33281","l":"","na":1,"nb":910,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/1-carbapenem-3-carboxylic-acid.html","1-carbapenem-3-carboxylic acid"],["antibacterial/1%CE%B2-methylcarbapenem.html","1β-methylcarbapenem"],["antibacterial/3-6-9-trihydroxypterocarpan.html","3,6,9-trihydroxypterocarpan"],["antibacterial/3z-ravenic-acid.html","(3Z)-ravenic acid"],["antibacterial/5-chloro-7-iodoquinolin-8-ol.html","5-chloro-7-iodoquinolin-8-ol"],["antibacterial/5-o-mycaminosyltylonolide.html","5-O-mycaminosyltylonolide"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":680,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16240","requires hydrogen peroxide"],["EC%3A1.1.3.10","pyranose oxidase"],["EC%3A1.1.3.11","L-sorbose oxidase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.3.13","alcohol oxidase"],["EC%3A1.1.3.15","(S)-2-hydroxy-acid oxidase"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis H37Rv","na":297,"nb":1,"a":[["IDPO%3A0000002","disorder"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000045","phosphorylation display site"],["IDPO%3A0000059","self-inhibition"],["Pfam%3APF17837","4'-phosphopantetheinyl transferase N-terminal domain"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"ARO:3000014","l":"TEM beta-lactamase","na":251,"nb":1,"a":[["ARO%3A3000873","TEM-1"],["ARO%3A3000882","TEM-10"],["ARO%3A3001366","TEM-100"],["ARO%3A3000964","TEM-101"],["ARO%3A3000965","TEM-102"],["ARO%3A3000966","TEM-103"]],"b":[["antibacterial/ampicillin.html","ampicillin"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":212,"nb":1,"a":[["EC%3A1.1.1.244","methanol dehydrogenase"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.99.37","methanol dehydrogenase (nicotinoprotein)"],["EC%3A1.13.11.94","4-vinylguaiacol dioxygenase"],["EC%3A1.14.11.27","[histone H3]-dimethyl-L-lysine(36) demethylase"]],"b":[["biocide/formaldehyde.html","formaldehyde"]]},{"id":"ARO:3000017","l":"OXA beta-lactamase","na":158,"nb":1,"a":[["ARO%3A3007696","OXA-1-like beta-lactamase"],["ARO%3A3007697","OXA-10-like beta-lactamase"],["ARO%3A3008427","OXA-1006"],["ARO%3A3008432","OXA-1011"],["ARO%3A3001706","OXA-102"],["ARO%3A3008457","OXA-1036"]],"b":[["antibacterial/oxacillin.html","oxacillin"]]},{"id":"GO:0004146","l":"dihydrofolate reductase activity","na":125,"nb":1,"a":[["EC%3A1.5.1.3","dihydrofolate reductase"],["RHEA%3A15009","(6S)-5,6,7,8-tetrahydrofolate + NADP(+) = 7,8-dihydrofolate + NADPH + H(+)"],["GO%3A0004146","dihydrofolate reductase activity"],["NCBIfam%3ANF012208","bifunctional dihydropteridine reductase/dihydrofolate reductase TmpR"],["NCBIfam%3ANF000055","DfrA12/DfrA21 family trimethoprim-resistant dihydrofolate reductase"],["NCBIfam%3ANF000332","DfrD/DfrG/DfrK family trimethoprim-resistant dihydrofolate reductase"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"CHEBI:25384","l":"","na":1,"nb":79,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/3-4-secoisopimara-4-18-7-15-triene-3-oic-acid.html","3,4-secoisopimara-4(18),7,15-triene-3-oic acid"],["antibacterial/3-phenylbutyric-acid.html","3-phenylbutyric acid"],["antibacterial/7-3-aminopyrrolidin-1-yl-1-2-4-difluorophenyl-6-fluoro-4-oxo-1-4-dihyd.html","7-(3-aminopyrrolidin-1-yl)-1-(2,4-difluorophenyl)-6-fluoro-4-oxo-1,4-dihydro-1,8-naphthyridine-3-carboxylic acid"],["antibacterial/chuangxinmycin.html","(−)-chuangxinmycin"],["antibacterial/cremeomycin.html","cremeomycin"],["antibacterial/decatromicin-a.html","decatromicin A"]]},{"id":"ARO:3001218","l":"trimethoprim resistant dihydrofolate reductase dfr","na":60,"nb":1,"a":[["ARO%3A3005354","dfr22"],["ARO%3A3002854","dfrA1"],["ARO%3A3003011","dfrA10"],["ARO%3A3002858","dfrA12"],["ARO%3A3003012","dfrA13"],["ARO%3A3002859","dfrA14"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"CHEBI:25105","l":"","na":1,"nb":58,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antibacterial/5-o-mycaminosyltylonolide.html","5-O-mycaminosyltylonolide"],["antibacterial/aplasmomycin.html","(+)-aplasmomycin"],["antibacterial/azithromycin.html","azithromycin"],["antibacterial/boromycin.html","boromycin"],["antibacterial/brefeldin-a.html","brefeldin A"],["antibacterial/cethromycin.html","cethromycin"]]},{"id":"NCBITaxon:227321","l":"Emericella nidulans (strain FGSC A4 / ATCC 38163 / CBS 112.46 / NRRL 194 / M139)","na":44,"nb":1,"a":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF05270","Alpha-L-arabinofuranosidase B (ABFB) domain"],["Pfam%3APF07792","Docking domain of Afi1 for Arf3 in vesicle trafficking"],["Pfam%3APF09206","Alpha-L-arabinofuranosidase B, catalytic"],["Pfam%3APF27751","ATEG_07667 C-terminal domain"],["Pfam%3APF20238","Copper acquisition factor BIM1-like"]],"b":[["antifungal/thiabendazole.html","thiabendazole"]]},{"id":"ARO:3007152","l":"","na":40,"nb":1,"a":[["ARO%3A3004270","antibiotic resistant fabI"],["ARO%3A3003462","antibiotic resistant kasA"],["ARO%3A3003460","antibiotic resistant ndh"],["ARO%3A3004045","Escherichia coli fabI mutations conferring resistance to isoniazid and triclosan"],["ARO%3A3004894","Isoniazid resistant ahpC"],["ARO%3A3005103","isoniazid resistant ethA"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"NCBITaxon:367110","l":"Neurospora crassa OR74A","na":40,"nb":1,"a":[["Pfam%3APF08509","Adenylate cyclase G-alpha binding domain"],["Pfam%3APF25026","Asd-4-like domain"],["Pfam%3APF21334","Fungal epsilon subunit of F1F0-ATP synthase C-terminal domain"],["Pfam%3APF20238","Copper acquisition factor BIM1-like"],["Pfam%3APF21492","Ribosomal protein L31p, N-terminal"],["Pfam%3APF00734","Fungal cellulose binding domain"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"CHEBI:17855","l":"triglyceride","na":34,"nb":1,"a":[["EC%3A2.3.1.158","phospholipid:diacylglycerol acyltransferase"],["EC%3A2.3.1.77","triacylglycerol--sterol O-acyltransferase"],["EC%3A3.1.1.3","triacylglycerol lipase"],["EC%3A3.1.1.34","lipoprotein lipase"],["EC%3A3.1.1.79","hormone-sensitive lipase"],["RHEA%3A77987","9-hydroxy-octadecanoate + a triacylglycerol = 9-(acyloxy)-octadecanoate + a 1,3-diacylglycerol"]],"b":[["antifungal/triacetin.html","triacetin"]]},{"id":"CHEBI:35358","l":"","na":1,"nb":33,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/prontosil.html","prontosil"],["antibacterial/sulfabenzamide.html","sulfabenzamide"],["antibacterial/sulfabromomethazine.html","sulfabromomethazine"],["antibacterial/sulfachloropyridazine.html","sulfachloropyridazine"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfaethoxypyridazine.html","sulfaethoxypyridazine"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":32,"nb":1,"a":[["Pfam%3APF25848","Rodlin protein"],["Pfam%3APF13420","Acetyltransferase (GNAT) domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF26381","BREX System ATPase PglY protein 5th domain"],["Pfam%3APF26382","BREX System ATPase PglY protein 6th domain"]],"b":[["antibacterial/nocardamine.html","nocardamine"]]},{"id":"ARO:3007155","l":"","na":31,"nb":1,"a":[["ARO%3A3005002","antibiotic resistant polyketide synthase genes"],["ARO%3A3004972","antibiotic resistant ppsA"],["ARO%3A3004883","antibiotic resistant ppsC"],["ARO%3A3004885","antibiotic resistant ppsD"],["ARO%3A3007184","multidrug resistant Rv1258c"],["ARO%3A3004957","Mycobacterium tuberculosis clpC1 with mutation conferring resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"CHEBI:15882","l":"phenol","na":31,"nb":1,"a":[["EC%3A1.14.13.244","phenol 2-monooxygenase (NADH)"],["EC%3A1.14.13.7","phenol 2-monooxygenase (NADPH)"],["EC%3A1.14.14.20","phenol 2-monooxygenase (FADH2)"],["EC%3A2.1.1.25","phenol O-methyltransferase"],["EC%3A2.4.2.55","nicotinate D-ribonucleotide:phenol phospho-D-ribosyltransferase"],["EC%3A2.7.1.238","phenol phosphorylase"]],"b":[["biocide/phenol.html","phenol"]]},{"id":"CHEBI:16236","l":"ethanol","na":31,"nb":1,"a":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.5.5","alcohol dehydrogenase (quinone)"],["EC%3A1.1.99.36","alcohol dehydrogenase (nicotinoprotein)"],["EC%3A2.3.1.268","ethanol O-acetyltransferase"],["EC%3A3.1.1.113","ethyl acetate hydrolase"],["EC%3A3.1.1.67","fatty-acyl-ethyl-ester synthase"]],"b":[["biocide/ethanol.html","ethanol"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae RIB40","na":27,"nb":1,"a":[["Pfam%3APF09260","Alpha-amylase, domain C"],["Pfam%3APF28338","AclK C-terminal domain"],["Pfam%3APF09206","Alpha-L-arabinofuranosidase B, catalytic"],["Pfam%3APF28380","Sesquiterpene cyclase astC-like C-terminal domain"],["Pfam%3APF13364","Beta-galactosidase second all-beta domain"],["Pfam%3APF10435","Beta-galactosidase, domain 2"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"ARO:3000527","l":"","na":25,"nb":1,"a":[["ARO%3A3003668","16s rRNA with mutation conferring resistance to polyamine antibiotics"],["ARO%3A3004064","Edeine acetyltransferase"],["ARO%3A3004063","EdeQ"],["ARO%3A3002876","ethambutol resistant aftA"],["ARO%3A3003452","ethambutol resistant embA"],["ARO%3A3000235","ethambutol resistant embB"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003292","l":"fluoroquinolone resistant gyrA","na":25,"nb":1,"a":[["ARO%3A3003817","Acinetobacter baumannii gyrA conferring resistance to fluoroquinolones"],["ARO%3A3003297","Bartonella bacilliformis gyrA conferring resistance to fluoroquinolones"],["ARO%3A3004860","Burkholderia dolosa gyrA conferring resistance to fluoroquinolones"],["ARO%3A3003789","Campylobacter jejuni gyrA conferring resistance to fluoroquinolones"],["ARO%3A3003931","Capnocytophaga gingivalis gyrA conferring resistance to fluoroquinolones"],["ARO%3A3003995","Clostridioides difficile gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/nybomycin.html","nybomycin"]]},{"id":"CHEBI:64683","l":"","na":25,"nb":1,"a":[["EC%3A2.3.1.73","diacylglycerol--sterol O-acyltransferase"],["EC%3A3.1.3.106","2-lysophosphatidate phosphatase"],["RHEA%3A39851","2 a 1-acyl-sn-glycerol = glycerol + a 1,2-diacyl-sn-glycerol"],["RHEA%3A77991","9-hydroxy-octadecanoate + a 1,2-diacyl-sn-glycerol = 9-(acyloxy)-octadecanoate + a 1-acyl-sn-glycerol"],["RHEA%3A35663","a 1,2-diacyl-sn-glycerol + H2O = a 1-acyl-sn-glycerol + a fatty acid + H(+)"],["RHEA%3A39859","a 1,3-diacyl-sn-glycerol + a 1-acyl-sn-glycerol = a triacyl-sn-glycerol + glycerol"]],"b":[["antiviral/1-linoleoyl-sn-glycerol.html","1-linoleoyl-sn-glycerol"]]},{"id":"ARO:3000250","l":"ErmC","na":1,"nb":24,"a":[["ARO%3A3000250","ErmC"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000326","l":"ErmE","na":1,"nb":24,"a":[["ARO%3A3000326","ErmE"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000347","l":"ErmA","na":1,"nb":24,"a":[["ARO%3A3000347","ErmA"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000375","l":"ErmB","na":1,"nb":24,"a":[["ARO%3A3000375","ErmB"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000392","l":"Erm(37)","na":1,"nb":24,"a":[["ARO%3A3000392","Erm(37)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000495","l":"ErmD","na":1,"nb":24,"a":[["ARO%3A3000495","ErmD"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000498","l":"ErmF","na":1,"nb":24,"a":[["ARO%3A3000498","ErmF"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000522","l":"ErmG","na":1,"nb":24,"a":[["ARO%3A3000522","ErmG"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000592","l":"ErmN","na":1,"nb":24,"a":[["ARO%3A3000592","ErmN"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000593","l":"ErmQ","na":1,"nb":24,"a":[["ARO%3A3000593","ErmQ"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000594","l":"ErmR","na":1,"nb":24,"a":[["ARO%3A3000594","ErmR"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000595","l":"ErmT","na":1,"nb":24,"a":[["ARO%3A3000595","ErmT"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000596","l":"ErmX","na":1,"nb":24,"a":[["ARO%3A3000596","ErmX"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000599","l":"Erm(33)","na":1,"nb":24,"a":[["ARO%3A3000599","Erm(33)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000600","l":"Erm(34)","na":1,"nb":24,"a":[["ARO%3A3000600","Erm(34)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000601","l":"Erm(38)","na":1,"nb":24,"a":[["ARO%3A3000601","Erm(38)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000602","l":"Erm(39)","na":1,"nb":24,"a":[["ARO%3A3000602","Erm(39)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000603","l":"Erm(41)","na":1,"nb":24,"a":[["ARO%3A3000603","Erm(41)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000604","l":"Erm(35)","na":1,"nb":24,"a":[["ARO%3A3000604","Erm(35)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000605","l":"Erm(36)","na":1,"nb":24,"a":[["ARO%3A3000605","Erm(36)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"CHEBI:62733","l":"","na":1,"nb":24,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_62733","requires methanophenazine"]],"b":[["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/platencin.html","platencin"],["antibacterial/platensimycin.html","platensimycin"],["antifungal/benomyl.html","benomyl"],["antifungal/bixafen.html","bixafen"],["antifungal/fenhexamid.html","fenhexamid"]]},{"id":"CHEBI:140324","l":"","na":1,"nb":23,"a":[["RHEA%3A85699","an amide = a nitrile + H2O"]],"b":[["antibacterial/cefsulodin.html","cefsulodin"],["antibacterial/cellocidin.html","cellocidin"],["antibacterial/durlobactam.html","durlobactam"],["antibacterial/methacycline.html","methacycline"],["antibacterial/pantocin-a.html","pantocin A"],["antibacterial/promysalin.html","promysalin"]]},{"id":"CHEBI:26658","l":"","na":1,"nb":23,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antibacterial/laurinterol.html","laurinterol"],["antibacterial/suaveolindole.html","suaveolindole"],["antifungal/albicanol.html","(+)-albicanol"],["antifungal/ascochlorin.html","ascochlorin"],["antifungal/caf-603.html","CAF-603"],["antifungal/cj-01.html","CJ-01"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":23,"nb":1,"a":[["Pfam%3APF09255","Caf1 Capsule antigen"],["Pfam%3APF02611","CDP-diacylglycerol pyrophosphatase"],["Pfam%3APF07411","Domain of unknown function (DUF1508)"],["Pfam%3APF05171","Haemin-degrading HemS.ChuX domain"],["Pfam%3APF21500","DNA polymerase III subunit delta', AAA+ ATPase lid domain"],["Pfam%3APF11004","3-deoxy-D-manno-oct-2-ulosonic acid (Kdo) hydroxylase"]],"b":[["unspecified/%CE%B1-mangostin.html","α-mangostin"]]},{"id":"CHEBI:48132","l":"","na":1,"nb":22,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/minocycline.html","minocycline"],["antibacterial/tetracenomycin-a2.html","tetracenomycin A2"],["antibacterial/tetracenomycin-c.html","tetracenomycin C"],["antibacterial/tetracenomycin-x.html","tetracenomycin X"],["unspecified/8-demethyl-8-2-3-o-dimethyl-%CE%B1-l-rhamnosyl-tetracenomycin-c.html","8-demethyl-8-(2,3-O-dimethyl-α-L-rhamnosyl)tetracenomycin C"],["unspecified/8-demethyl-8-2-o-methyl-%CE%B1-l-rhamnosyl-tetracenomycin-c.html","8-demethyl-8-(2-O-methyl-α-L-rhamnosyl)tetracenomycin C"]]},{"id":"NCBITaxon:284593","l":"Candida glabrata (strain ATCC 2001 / BCRC 20586 / JCM 3761 / NBRC 0622 / NRRL Y-65 / CBS 138)","na":22,"nb":1,"a":[["Pfam%3APF08647","BRE1 E3 ubiquitin ligase"],["Pfam%3APF00649","Copper fist DNA binding domain"],["Pfam%3APF18499","Ubc7p-binding region of Cue1"],["Pfam%3APF18535","Gal11 activator-binding domain (ABD1)"],["Pfam%3APF05390","Yeast cell wall synthesis protein KRE9/KNH1 C-terminal"],["Pfam%3APF09451","Autophagy-related protein 27"]],"b":[["antifungal/fluconazole.html","fluconazole"]]},{"id":"CHEBI:29108","l":"calcium(2+)","na":21,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29108","requires calcium(2+)"],["EC%3A1.13.12.24","calcium-regulated photoprotein"],["EC%3A7.2.2.10","P-type Ca(2+) transporter"],["RHEA%3A72631","3 Li(+)(out) + Ca(2+)(in) = 3 Li(+)(in) + Ca(2+)(out)"],["RHEA%3A55884","[aequorin] + 3 Ca(2+) = [aequorin]--dioxetanone"],["RHEA%3A55888","[aequorin]--dioxetanone = excited state-[aequorin] + CO2"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"CHEBI:16016","l":"dihydroxyacetone","na":20,"nb":1,"a":[["EC%3A1.1.1.156","glycerol 2-dehydrogenase (NADP(+))"],["EC%3A1.1.1.6","glycerol dehydrogenase"],["EC%3A1.1.99.22","glycerol dehydrogenase (acceptor)"],["EC%3A2.2.1.3","formaldehyde transketolase"],["EC%3A2.7.1.121","phosphoenolpyruvate--glycerone phosphotransferase"],["EC%3A2.7.1.29","glycerone kinase"]],"b":[["antifungal/dihydroxyacetone.html","dihydroxyacetone"]]},{"id":"CHEBI:24400","l":"","na":1,"nb":17,"a":[["TCDB%3A3.A.3","The P-type ATPase (P-ATPase) Superfamily"]],"b":[["antibacterial/acteoside.html","acteoside"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/fidaxomicin.html","fidaxomicin"],["antibacterial/jadomycin-b.html","jadomycin B"],["antibacterial/josamycin.html","josamycin"],["antibacterial/polyketomycin.html","polyketomycin"]]},{"id":"CHEBI:16247","l":"","na":16,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.A.79","The Autophagosomal Phospholipid Transmembrane Translocase (Atg9) Family"],["TCDB%3A9.A.36","The Ca2+-dependent Phospholipid Scramblase (Scramblase) Family"],["TCDB%3A1.A.17","The Calcium-dependent Chloride Channel (Ca-ClC) Family"],["TCDB%3A9.B.27","The Death Effector Domain A (DedA) Family"],["TCDB%3A8.A.97","The EPG-3/VMP1 (EPG/VPM) Scramblase Family"]],"b":[["antifungal/miltefosine.html","miltefosine"]]},{"id":"CHEBI:16933","l":"","na":16,"nb":1,"a":[["EC%3A1.3.1.71","Delta(24(24(1)))-sterol reductase"],["EC%3A2.3.2.37","ergosteryl-3beta-O-L-aspartate synthase"],["EC%3A3.1.1.121","ergosteryl-3beta-O-L-aspartate hydrolase"],["EC%3A4.2.1.62","5alpha-hydroxysteroid dehydratase"],["RHEA%3A76559","1-(ergostan-3beta-yl)-L-aspartate + H2O = ergosterol + L-aspartate + H(+)"],["RHEA%3A22064","5alpha-ergosta-7,22-diene-3beta,5-diol = ergosterol + H2O"]],"b":[["antifungal/natamycin.html","natamycin"]]},{"id":"NCBITaxon:498257","l":"Verticillium dahliae (strain VdLs.17 / ATCC MYA-4575 / FGSC 10137)","na":16,"nb":1,"a":[["Pfam%3APF11787","Aft1 HRR domain"],["Pfam%3APF16541","Alternaria alternata allergen 1"],["Pfam%3APF09792","Ubiquitin 3 binding protein But2 C-terminal domain"],["Pfam%3APF28223","CAP22"],["Pfam%3APF05730","CFEM domain"],["Pfam%3APF27979","CON7 transcription factor helical domain"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":16,"nb":1,"a":[["Pfam%3APF05932","Tir chaperone protein (CesT) family"],["Pfam%3APF17656","FlgA N-terminal domain"],["Pfam%3APF22200","ExsA N-terminal regulatory domain"],["Pfam%3APF05171","Haemin-degrading HemS.ChuX domain"],["Pfam%3APF07201","HrpJ-like domain"],["Pfam%3APF04391","Protein of unknown function (DUF533)"]],"b":[["unspecified/chir-090.html","CHIR-090"]]},{"id":"CHEBI:16619","l":"(2-trans,6-trans)-farnesol","na":14,"nb":1,"a":[["EC%3A1.1.1.216","farnesol dehydrogenase"],["EC%3A1.1.1.354","farnesol dehydrogenase (NAD(+))"],["EC%3A2.7.1.216","farnesol kinase"],["EC%3A3.1.7.6","farnesyl diphosphatase"],["EC%3A5.2.1.9","farnesol 2-isomerase"],["RHEA%3A13401","(2E,6E)-farnesol = (2Z,6E)-farnesol"]],"b":[["unspecified/2-trans-6-trans-farnesol.html","(2-trans,6-trans)-farnesol"]]},{"id":"CHEBI:60783","l":"","na":1,"nb":14,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antibacterial/oxetanocin-a.html","oxetanocin A"],["antifungal/flucytosine.html","flucytosine"],["antifungal/jawsamycin.html","jawsamycin"],["antiviral/6-azathymidine.html","6-azathymidine"],["antiviral/emtricitabine.html","emtricitabine"],["antiviral/favipiravir-rtp.html","favipiravir-RTP"]]},{"id":"ARO:3003294","l":"Escherichia coli gyrA conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003294","Escherichia coli gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003295","l":"Mycobacterium tuberculosis gyrA conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003295","Mycobacterium tuberculosis gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003296","l":"Staphylococcus aureus gyrA conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003296","Staphylococcus aureus gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003297","l":"Bartonella bacilliformis gyrA conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003297","Bartonella bacilliformis gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003298","l":"Mycobacterium leprae gyrA conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003298","Mycobacterium leprae gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003304","l":"Mycobacterium leprae gyrB conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003304","Mycobacterium leprae gyrB conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003305","l":"Ureaplasma urealyticum gyrB conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003305","Ureaplasma urealyticum gyrB conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003306","l":"Morganella morganii gyrB conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003306","Morganella morganii gyrB conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003307","l":"Salmonella serovars gyrB conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003307","Salmonella serovars gyrB conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003308","l":"Escherichia coli parC conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003308","Escherichia coli parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003309","l":"Ureaplasma urealyticum parC conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003309","Ureaplasma urealyticum parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003310","l":"Mycoplasma hominis parC conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003310","Mycoplasma hominis parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003311","l":"Streptococcus pneumoniae parC conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003311","Streptococcus pneumoniae parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003312","l":"Staphylococcus aureus parC conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003312","Staphylococcus aureus parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003315","l":"Staphylococcus aureus parE conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003315","Staphylococcus aureus parE conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003316","l":"Escherichia coli parE conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003316","Escherichia coli parE conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003317","l":"Salmonella serovars parE conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003317","Salmonella serovars parE conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003817","l":"Acinetobacter baumannii gyrA conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003817","Acinetobacter baumannii gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3003818","l":"Acinetobacter baumannii parC conferring resistance to fluoroquinolones","na":1,"nb":13,"a":[["ARO%3A3003818","Acinetobacter baumannii parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":13,"nb":1,"a":[["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF03173","Putative carbohydrate binding domain"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"],["Pfam%3APF06438","Heme-binding protein A (HasA)"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF05247","Flagellar transcriptional activator (FlhD)"]],"b":[["antibacterial/althiomycin.html","althiomycin"]]},{"id":"ARO:3003459","l":"Mycobacterium tuberculosis gyrB mutant conferring resistance to fluoroquinolones","na":1,"nb":12,"a":[["ARO%3A3003459","Mycobacterium tuberculosis gyrB mutant conferring resistance to fluoroquinolones"]],"b":[["antibacterial/enoxacin.html","enoxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/grepafloxacin.html","Grepafloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"CHEBI:16188","l":"octan-1-ol","na":12,"nb":1,"a":[["EC%3A1.1.1.73","octanol dehydrogenase"],["EC%3A1.14.15.3","alkane 1-monooxygenase"],["RHEA%3A79323","octan-1-ol + 2 Fe(III)-[cytochrome c] = octanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A64628","octan-1-ol + acetyl-CoA = octyl acetate + CoA"],["RHEA%3A64852","octan-1-ol + benzoyl-CoA = octyl benzoate + CoA"],["RHEA%3A44064","octan-1-ol + hexadecanoyl-CoA = octyl hexadecanoate + CoA"]],"b":[["antifungal/octan-1-ol.html","octan-1-ol"]]},{"id":"CHEBI:22479","l":"","na":1,"nb":12,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/astromicin.html","astromicin"],["antibacterial/etimicin.html","etimicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"CHEBI:28077","l":"rifampicin","na":12,"nb":1,"a":[["ARO%3A3007073","Bacillus subtilis rpoB mutants conferring resistance to rifampin"],["ARO%3A3004480","Bifidobacterium adolescentis rpoB mutants conferring resistance to rifampicin"],["ARO%3A3004563","Clostridioides difficile rpoB with mutation conferring resistance to rifampicin"],["ARO%3A3003288","Escherichia coli rpoB mutants conferring resistance to rifampicin"],["ARO%3A3007051","Helicobacter pylori rpoB mutation conferring resistance to rifampicin"],["ARO%3A3003284","Mycobacterium leprae rpoB mutations conferring resistance to rifampicin"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3000858","l":"armA","na":1,"nb":11,"a":[["ARO%3A3000858","armA"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/g418.html","G418"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3000859","l":"rmtA","na":1,"nb":11,"a":[["ARO%3A3000859","rmtA"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/g418.html","G418"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3000860","l":"rmtB","na":1,"nb":11,"a":[["ARO%3A3000860","rmtB"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/g418.html","G418"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3000861","l":"rmtC","na":1,"nb":11,"a":[["ARO%3A3000861","rmtC"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/g418.html","G418"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3000862","l":"sgm","na":1,"nb":11,"a":[["ARO%3A3000862","sgm"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/g418.html","G418"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3007153","l":"","na":11,"nb":1,"a":[["ARO%3A3003734","antibiotic resistant fusA"],["ARO%3A3003736","antibiotic resistant fusE"],["ARO%3A3003552","fusB"],["ARO%3A3003733","fusC"],["ARO%3A3003731","fusD"],["ARO%3A3004663","FusF"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"CHEBI:17847","l":"p-cresol","na":11,"nb":1,"a":[["EC%3A1.14.13.236","toluene 4-monooxygenase"],["EC%3A1.17.9.1","4-methylphenol dehydrogenase (hydroxylating)"],["EC%3A4.1.1.83","4-hydroxyphenylacetate decarboxylase"],["EC%3A4.1.99.19","2-iminoacetate synthase"],["RHEA%3A22732","4-hydroxyphenylacetate + H(+) = 4-methylphenol + CO2"],["RHEA%3A56976","4-methylphenol + 2 oxidized [azurin] + H2O = 4-hydroxybenzyl alcohol + 2 reduced [azurin] + 2 H(+)"]],"b":[["antifungal/p-cresol.html","p-cresol"]]},{"id":"CHEBI:24396","l":"","na":1,"nb":11,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/chloroeremomycin.html","chloroeremomycin"],["antibacterial/dalbavancin.html","dalbavancin"],["antibacterial/oritavancin.html","oritavancin"],["antibacterial/phleomycin-d1.html","phleomycin D1"],["antibacterial/ristocetin.html","ristocetin"],["antibacterial/telavancin.html","telavancin"]]},{"id":"CHEBI:24869","l":"ionophore","na":1,"nb":11,"a":[["TCDB%3A2.A.74","The 4 TMS Multidrug Endosomal Transporter (MET) Family"]],"b":[["antibacterial/cccp.html","CCCP"],["antibacterial/indanomycin.html","indanomycin"],["antifungal/beauvericin.html","beauvericin"],["antifungal/monensin-a.html","monensin A"],["antiprotozoal/lasalocid-sodium.html","lasalocid sodium"],["antiprotozoal/lasalocid.html","lasalocid"]]},{"id":"CHEBI:28591","l":"guaiacol","na":11,"nb":1,"a":[["EC%3A1.11.1.14","lignin peroxidase"],["EC%3A1.11.1.16","versatile peroxidase"],["RHEA%3A48004","1-(3,4-dimethoxyphenyl)-2-(2-methoxyphenoxy)propane-1,3-diol + H2O2 = 3,4-dimethoxybenzaldehyde + guaiacol + glycolaldehyde + H2O"],["RHEA%3A22396","1-(4-hydroxy-3-methoxyphenyl)-2-(2-methoxyphenoxy)propane-1,3-diol + H2O2 = guaiacol + vanillin + glycolaldehyde + H2O"],["RHEA%3A72243","catechol + S-adenosyl-L-methionine = guaiacol + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A72339","guaiacol + Co(I)-[methoxylated-aromatic-compound-specific corrinoid protein] + H(+) = methyl-Co(III)-[methoxylated-aromatic-compound-specific corrinoid protein] + catechol"]],"b":[["biocide/guaiacol.html","guaiacol"]]},{"id":"CHEBI:29256","l":"","na":11,"nb":1,"a":[["EC%3A1.8.3.7","formylglycine-generating enzyme"],["EC%3A2.1.1.9","thiol S-methyltransferase"],["EC%3A2.8.2.16","thiol sulfotransferase"],["EC%3A4.4.1.13","cysteine-S-conjugate beta-lyase"],["RHEA%3A82919","a thioester + H2O = a thiol + a carboxylate + H(+)"],["RHEA%3A14637","a thiol + 3'-phosphoadenylyl sulfate = S-alkyl thiosulfate + adenosine 3',5'-bisphosphate + H(+)"]],"b":[["antifungal/fusarithioamide-a.html","fusarithioamide A"]]},{"id":"CHEBI:46762","l":"(E,E,E)-geranylgeraniol","na":11,"nb":1,"a":[["EC%3A1.14.14.146","geranylgeraniol 18-hydroxylase"],["EC%3A3.1.7.5","geranylgeranyl diphosphate diphosphatase"],["RHEA%3A46108","(2E,6E,10E)-geranylgeraniol + 2 NADPH + 2 O2 + H(+) = (2E,6E,10E)-geranylgeranate + 2 NADP(+) + 3 H2O"],["RHEA%3A61664","(2E,6E,10E)-geranylgeraniol + ATP = (2E,6E,10E)-geranylgeranyl phosphate + ADP + H(+)"],["RHEA%3A63456","(2E,6E,10E)-geranylgeraniol + CTP = (2E,6E,10E)-geranylgeranyl phosphate + CDP + H(+)"],["RHEA%3A63460","(2E,6E,10E)-geranylgeraniol + GTP = (2E,6E,10E)-geranylgeranyl phosphate + GDP + H(+)"]],"b":[["antiprotozoal/e-e-e-geranylgeraniol.html","(E,E,E)-geranylgeraniol"]]},{"id":"CHEBI:50744","l":"","na":11,"nb":1,"a":[["TCDB%3A2.A.24","The 2-Hydroxycarboxylate Transporter (2-HCT) Family"],["TCDB%3A1.A.46","The Anion Channel-forming Bestrophin (Bestrophin) Family"],["TCDB%3A2.A.45","The Arsenite-Antimonite (ArsB) Efflux Family"],["TCDB%3A2.A.11","The Citrate-Mg2+:H+ (CitM) Citrate-Ca2+:H+ (CitH) Symporter (CitMHS) Family"],["TCDB%3A2.A.47","The Divalent Anion:Na+ Symporter (DASS) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antiviral/tamoxifen-citrate.html","tamoxifen citrate"]]},{"id":"NCBITaxon:341663","l":"","na":11,"nb":1,"a":[["Pfam%3APF27751","ATEG_07667 C-terminal domain"],["Pfam%3APF28386","BfoA family C-terminal domain"],["Pfam%3APF03879","Cgr1 family"],["Pfam%3APF22621","CurL-like, PKS C-terminal"],["Pfam%3APF18558","Methyltransferase, Helix-turn-helix domain"],["Pfam%3APF06355","Aegerolysin"]],"b":[["antiviral/aspulvinone-e.html","aspulvinone E"]]},{"id":"ARO:3002814","l":"clbA","na":1,"nb":10,"a":[["ARO%3A3002814","clbA"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002815","l":"clbB","na":1,"nb":10,"a":[["ARO%3A3002815","clbB"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002816","l":"clbC","na":1,"nb":10,"a":[["ARO%3A3002816","clbC"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3003038","l":"MexXY-OprA","na":1,"nb":10,"a":[["ARO%3A3003038","MexXY-OprA"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/gentamicin-c.html","gentamicin C"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3003441","l":"cfrA","na":1,"nb":10,"a":[["ARO%3A3003441","cfrA"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3003578","l":"PmrF","na":10,"nb":1,"a":[["ARO%3A3002985","arnA"],["ARO%3A3005053","ArnT"],["ARO%3A3005063","cprR"],["ARO%3A3005065","cprRS"],["ARO%3A3005064","cprS"],["ARO%3A3005068","ParR"]],"b":[["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3003907","l":"cipA","na":1,"nb":10,"a":[["ARO%3A3003907","cipA"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/griseoviridin.html","griseoviridin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3003966","l":"Klebsiella pneumoniae OmpK35","na":1,"nb":10,"a":[["ARO%3A3003966","Klebsiella pneumoniae OmpK35"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefamandole.html","cefamandole"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"ARO:3003969","l":"lmrP","na":1,"nb":10,"a":[["ARO%3A3003969","lmrP"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"CHEBI:16547","l":"coniferyl aldehyde","na":10,"nb":1,"a":[["EC%3A1.1.1.194","coniferyl-alcohol dehydrogenase"],["EC%3A1.1.1.195","cinnamyl-alcohol dehydrogenase"],["EC%3A1.2.1.44","cinnamoyl-CoA reductase"],["EC%3A1.2.1.68","coniferyl-aldehyde dehydrogenase"],["RHEA%3A23968","(E)-coniferaldehyde + NAD(+) + H2O = (E)-ferulate + NADH + 2 H(+)"],["RHEA%3A64648","(E)-coniferaldehyde + NADP(+) + CoA = (E)-feruloyl-CoA + NADPH + H(+)"]],"b":[["antifungal/coniferyl-aldehyde.html","coniferyl aldehyde"]]},{"id":"CHEBI:17698","l":"chloramphenicol","na":10,"nb":1,"a":[["EC%3A1.14.99.67","alpha-N-dichloroacetyl-p-aminophenylserinol N-oxygenase"],["EC%3A2.3.1.28","chloramphenicol O-acetyltransferase"],["RHEA%3A58884","alpha-N-dichloroacetyl-p-aminophenylserinol + AH2 + 2 O2 = chloramphenicol + A + 2 H2O"],["RHEA%3A18421","chloramphenicol + acetyl-CoA = chloramphenicol 3-acetate + CoA"],["RHEA%3A35287","chloramphenicol(in) + ATP + H2O = chloramphenicol(out) + ADP + phosphate + H(+)"],["RHEA%3A35059","chloramphenicol(in) + H(+)(out) = chloramphenicol(out) + H(+)(in)"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"CHEBI:48120","l":"","na":1,"nb":10,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["unspecified/13-deoxydaunorubicin.html","13-deoxydaunorubicin"],["unspecified/13-dihydrodaunorubicin.html","13-dihydrodaunorubicin"],["unspecified/4-epidoxorubicin.html","4'-epidoxorubicin"],["unspecified/aclacinomycin-a.html","aclacinomycin A"],["unspecified/aclacinomycin-n.html","aclacinomycin N"],["unspecified/aclacinomycin-s.html","aclacinomycin S"]]},{"id":"CHEBI:4885","l":"ethionamide","na":10,"nb":1,"a":[["RHEA%3A47616","ethionamide + NADPH + O2 + H(+) = ethionamide S-oxide + NADP(+) + H2O"],["ARO%3A3003456","antibiotic resistant ethA"],["ARO%3A3003457","ethionamide resistant ethA"],["ARO%3A3005103","isoniazid resistant ethA"],["ARO%3A3005105","Mycobacterium tuberculosis ethA mutations conferring resistance to isoniazid"],["ARO%3A3005178","Mycobacterium tuberculosis ethA mutations conferring resistance to perchlozone"]],"b":[["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"CHEBI:64760","l":"","na":10,"nb":1,"a":[["RHEA%3A44876","a 1,3-diacylglycerol + H2O = a 3-acyl-sn-glycerol + a fatty acid + H(+)"],["RHEA%3A44176","a 2,3-diacyl-sn-glycerol + H2O = a 3-acyl-sn-glycerol + a fatty acid + H(+)"],["RHEA%3A39659","a 3-acyl-sn-glycerol + a 1,2-diacyl-sn-glycero-3-phosphocholine = a 1,3-diacyl-sn-glycerol + a 1-acyl-sn-glycero-3-phosphocholine"],["RHEA%3A78035","a 3-acyl-sn-glycerol + a 1,2-diacyl-sn-glycero-3-phosphocholine = a 1,3-diacyl-sn-glycerol + a 2-acyl-sn-glycero-3-phosphocholine"],["RHEA%3A78131","a 3-acyl-sn-glycerol + a 1,2-diacyl-sn-glycero-3-phosphocholine = a 1,3-diacylglycerol + a 1-acyl-sn-glycero-3-phosphocholine"],["RHEA%3A78135","a 3-acyl-sn-glycerol + a 1,2-diacyl-sn-glycero-3-phosphocholine = a 1,3-diacylglycerol + a 2-acyl-sn-glycero-3-phosphocholine"]],"b":[["antiviral/3-linoleoyl-sn-glycerol.html","3-linoleoyl-sn-glycerol"]]},{"id":"CHEBI:78236","l":"N-acetyl-L-cysteinate","na":10,"nb":1,"a":[["EC%3A1.10.3.15","grixazone synthase"],["RHEA%3A41424","2 3-amino-4-hydroxybenzaldehyde + N-acetyl-L-cysteine + 2 O2 = grixazone A + formate + 3 H2O + H(+)"],["RHEA%3A41420","2 3-amino-4-hydroxybenzoate + N-acetyl-L-cysteine + 2 O2 + H(+) = grixazone B + CO2 + 4 H2O"],["RHEA%3A75515","N-acetyl-L-cysteine + H2O = L-cysteine + acetate"],["RHEA%3A74567","N-acetyl-L-cysteine(out) + L-glutamate(in) = N-acetyl-L-cysteine(in) + L-glutamate(out)"],["RHEA%3A76543","N-acetyl-S-(2-succino)-L-cysteine = N-acetyl-L-cysteine + fumarate"]],"b":[["antiviral/n-acetyl-l-cysteinate.html","N-acetyl-L-cysteinate"]]},{"id":"NCBITaxon:1496","l":"Clostridioides difficile","na":10,"nb":1,"a":[["Pfam%3APF18671","4-Hydroxyphenylacetate decarboxylase subunit gamma N-terminal"],["Pfam%3APF00302","Chloramphenicol acetyltransferase"],["Pfam%3APF18524","High potential iron-sulfur protein like"],["Pfam%3APF06050","2-hydroxyglutaryl-CoA dehydratase, D-component"],["PROSITE%3APS00100","Chloramphenicol acetyltransferase active site"],["Pfam%3APF01473","Putative cell wall binding repeat"]],"b":[["antibacterial/fidaxomicin.html","fidaxomicin"]]},{"id":"ARO:3000318","l":"mphB","na":1,"nb":9,"a":[["ARO%3A3000318","mphB"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/oleandomycin.html","oleandomycin"],["antibacterial/roxithromycin.html","roxithromycin"]]},{"id":"ARO:3000319","l":"mphC","na":1,"nb":9,"a":[["ARO%3A3000319","mphC"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/oleandomycin.html","oleandomycin"],["antibacterial/roxithromycin.html","roxithromycin"]]},{"id":"ARO:3000410","l":"sul1","na":1,"nb":9,"a":[["ARO%3A3000410","sul1"]],"b":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfacetamide.html","sulfacetamide"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfamethazine.html","sulfamethazine"],["antibacterial/sulfamethizole.html","sulfamethizole"],["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3000412","l":"sul2","na":1,"nb":9,"a":[["ARO%3A3000412","sul2"]],"b":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfacetamide.html","sulfacetamide"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfamethazine.html","sulfamethazine"],["antibacterial/sulfamethizole.html","sulfamethizole"],["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3000413","l":"sul3","na":1,"nb":9,"a":[["ARO%3A3000413","sul3"]],"b":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfacetamide.html","sulfacetamide"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfamethazine.html","sulfamethazine"],["antibacterial/sulfamethizole.html","sulfamethizole"],["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3001307","l":"vgbA","na":1,"nb":9,"a":[["ARO%3A3001307","vgbA"]],"b":[["antibacterial/ostreogrycin-b3.html","ostreogrycin B3"],["antibacterial/patricin-a.html","patricin A"],["antibacterial/patricin-b.html","patricin B"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"],["antibacterial/pristinamycin-ib.html","pristinamycin IB"],["antibacterial/pristinamycin-ic.html","pristinamycin IC"]]},{"id":"ARO:3001308","l":"vgbB","na":1,"nb":9,"a":[["ARO%3A3001308","vgbB"]],"b":[["antibacterial/ostreogrycin-b3.html","ostreogrycin B3"],["antibacterial/patricin-a.html","patricin A"],["antibacterial/patricin-b.html","patricin B"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"],["antibacterial/pristinamycin-ib.html","pristinamycin IB"],["antibacterial/pristinamycin-ic.html","pristinamycin IC"]]},{"id":"ARO:3002536","l":"AAC(3)-IIIa","na":1,"nb":9,"a":[["ARO%3A3002536","AAC(3)-IIIa"]],"b":[["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"]]},{"id":"ARO:3002537","l":"AAC(3)-IIIb","na":1,"nb":9,"a":[["ARO%3A3002537","AAC(3)-IIIb"]],"b":[["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"]]},{"id":"ARO:3002597","l":"AAC(6')-Ie-APH(2')-Ia bifunctional protein","na":1,"nb":9,"a":[["ARO%3A3002597","AAC(6')-Ie-APH(2')-Ia bifunctional protein"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3002598","l":"ANT(3')-II-AAC(6')-IId bifunctional protein","na":1,"nb":9,"a":[["ARO%3A3002598","ANT(3')-II-AAC(6')-IId bifunctional protein"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002647","l":"","na":1,"nb":9,"a":[["ARO%3A3002647","APH(3')-IIIa"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/butirosin.html","butirosin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003386","l":"Escherichia coli folP with mutation conferring resistance to sulfonamides","na":1,"nb":9,"a":[["ARO%3A3003386","Escherichia coli folP with mutation conferring resistance to sulfonamides"]],"b":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfacetamide.html","sulfacetamide"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfamethazine.html","sulfamethazine"],["antibacterial/sulfamethizole.html","sulfamethizole"],["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3003387","l":"Streptococcus pyogenes folP with mutation conferring resistance to sulfonamides","na":1,"nb":9,"a":[["ARO%3A3003387","Streptococcus pyogenes folP with mutation conferring resistance to sulfonamides"]],"b":[["antibacterial/mafenide.html","mafenide"],["antibacterial/sulfacetamide.html","sulfacetamide"],["antibacterial/sulfadoxine.html","sulfadoxine"],["antibacterial/sulfamethazine.html","sulfamethazine"],["antibacterial/sulfamethizole.html","sulfamethizole"],["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3003697","l":"MexPQ-OpmE","na":1,"nb":9,"a":[["ARO%3A3003697","MexPQ-OpmE"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/imipenem.html","imipenem"],["antibacterial/josamycin.html","josamycin"],["antibacterial/rokitamycin.html","rokitamycin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003990","l":"vgbC","na":1,"nb":9,"a":[["ARO%3A3003990","vgbC"]],"b":[["antibacterial/ostreogrycin-b3.html","ostreogrycin B3"],["antibacterial/patricin-a.html","patricin A"],["antibacterial/patricin-b.html","patricin B"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"],["antibacterial/pristinamycin-ib.html","pristinamycin IB"],["antibacterial/pristinamycin-ic.html","pristinamycin IC"]]},{"id":"CHEBI:35627","l":"","na":9,"nb":1,"a":[["EC%3A3.5.2.6","beta-lactamase"],["RHEA%3A20401","a beta-lactam + H2O = a substituted beta-amino acid"],["TCDB%3A2.C.1","The TonB-ExbB-ExbD/TolA-TolQ-TolR Outer Membrane Receptor Energizers and Stabilizers (TonB/TolA) Family"],["MCSA%3A2","beta-lactamase (Class A)"],["MCSA%3A15","beta-lactamase (Class B1)"],["MCSA%3A16","beta-lactamase (Class B1)"]],"b":[["unspecified/azetidin-2-one.html","azetidin-2-one"]]},{"id":"CHEBI:78274","l":"ferruginol","na":9,"nb":1,"a":[["EC%3A1.14.14.175","ferruginol synthase"],["EC%3A1.14.14.60","ferruginol monooxygenase"],["EC%3A1.14.14.62","salviol synthase"],["EC%3A1.14.14.65","sugiol synthase"],["RHEA%3A48080","abieta-8,11,13-triene + reduced [NADPH--hemoprotein reductase] + O2 = ferruginol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A55456","ferruginol + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = sugiol + 2 oxidized [NADPH--hemoprotein reductase] + 3 H2O + 2 H(+)"]],"b":[["antibacterial/ferruginol.html","ferruginol"]]},{"id":"CHEBI:83563","l":"","na":9,"nb":1,"a":[["EC%3A1.14.14.28","long-chain alkane monooxygenase"],["EC%3A4.1.1.106","fatty acid photodecarboxylase"],["EC%3A4.1.99.5","aldehyde oxygenase (deformylating)"],["RHEA%3A49060","a long-chain alkane + FMNH2 + O2 = a long chain fatty alcohol + FMN + H2O + H(+)"],["RHEA%3A18969","a long-chain fatty acid + hnu + H(+) = a long-chain alkane + CO2"],["RHEA%3A21440","a long-chain fatty aldehyde + 2 NADPH + O2 + H(+) = a long-chain alkane + formate + 2 NADP(+) + H2O"]],"b":[["antimycobacterial/hentriacontane.html","hentriacontane"]]},{"id":"CHEBI:87393","l":"hexan-1-ol","na":9,"nb":1,"a":[["RHEA%3A65480","2-methylbutanoyl-CoA + hexan-1-ol = hexyl 2-methylbutanoate + CoA"],["RHEA%3A79331","hexan-1-ol + 2 Fe(III)-[cytochrome c] = hexanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A65460","hexan-1-ol + acetyl-CoA = hexyl acetate + CoA"],["RHEA%3A65444","hexan-1-ol + butanoyl-CoA = hexyl butanoate + CoA"],["RHEA%3A65484","hexan-1-ol + hexanoyl-CoA = hexyl hexanoate + CoA"],["RHEA%3A60972","hexan-1-ol + NAD(+) = hexanal + NADH + H(+)"]],"b":[["antibacterial/hexan-1-ol.html","hexan-1-ol"]]},{"id":"UniProt:P06633","l":"","na":9,"nb":1,"a":[["GO%3A0004424","imidazoleglycerol-phosphate dehydratase activity"],["NCBIfam%3ANF002114","imidazoleglycerol-phosphate dehydratase HisB"],["InterPro%3AIPR020565","Imidazoleglycerol-phosphate dehydratase, conserved site"],["CDD%3Acd07914","IGPD"],["InterPro%3AIPR038494","Imidazole glycerol phosphate dehydratase domain superfamily"],["PROSITE%3APS00954","Imidazoleglycerol-phosphate dehydratase signature 1"]],"b":[["antiviral/nevirapine.html","nevirapine"]]},{"id":"ARO:3002013","l":"CMY-2","na":1,"nb":8,"a":[["ARO%3A3002013","CMY-2"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002539","l":"AAC(3)-IVa","na":1,"nb":8,"a":[["ARO%3A3002539","AAC(3)-IVa"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/apramycin.html","apramycin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"]]},{"id":"ARO:3002585","l":"","na":1,"nb":8,"a":[["ARO%3A3002585","AAC(6')-31"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/netilmycin.html","netilmycin"]]},{"id":"ARO:3002652","l":"","na":1,"nb":8,"a":[["ARO%3A3002652","APH(3')-VIa"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/butirosin.html","butirosin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3002653","l":"","na":1,"nb":8,"a":[["ARO%3A3002653","APH(3')-VIb"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/butirosin.html","butirosin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004476","l":"vmlR","na":1,"nb":8,"a":[["ARO%3A3004476","vmlR"]],"b":[["antibacterial/a201a.html","A201A"],["antibacterial/hygromycin-a.html","hygromycin A"],["antibacterial/iboxamycin.html","iboxamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"]]},{"id":"ARO:3004578","l":"Acinetobacter baumannii AbuO","na":1,"nb":8,"a":[["ARO%3A3004578","Acinetobacter baumannii AbuO"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"],["antibacterial/carbenicillin.html","carbenicillin"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3004856","l":"SCO-1","na":1,"nb":8,"a":[["ARO%3A3004856","SCO-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/cefuroxime.html","cefuroxime"]]},{"id":"ARO:3005111","l":"blaS1","na":1,"nb":8,"a":[["ARO%3A3005111","blaS1"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/carbenicillin.html","carbenicillin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/mezlocillin.html","mezlocillin"]]},{"id":"ARO:3005511","l":"VIM-63","na":1,"nb":8,"a":[["ARO%3A3005511","VIM-63"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/faropenem.html","faropenem"]]},{"id":"CHEBI:27949","l":"(E)-sinapaldehyde","na":8,"nb":1,"a":[["EC%3A1.1.1.195","cinnamyl-alcohol dehydrogenase"],["RHEA%3A72027","(E)-sinapaldehyde + L-proline = (E)-nesocodin (alcohol-form) + H2O"],["RHEA%3A64656","(E)-sinapaldehyde + NADP(+) + CoA = (E)-sinapoyl-CoA + NADPH + H(+)"],["RHEA%3A57712","(E)-sinapaldehyde + UDP-alpha-D-glucose = 4-O-(beta-D-glucosyl)-4-trans-sinapoyl aldehyde + UDP + H(+)"],["RHEA%3A76459","(E)-sinapyl alcohol + A = (E)-sinapaldehyde + AH2"],["RHEA%3A45704","(E)-sinapyl alcohol + NADP(+) = (E)-sinapaldehyde + NADPH + H(+)"]],"b":[["antifungal/e-sinapaldehyde.html","(E)-sinapaldehyde"]]},{"id":"CHEBI:383703","l":"3,6-diamino-10-methylacridinium chloride","na":8,"nb":1,"a":[["TCDB%3A2.A.85","The Aromatic Acid Exporter (ArAE) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.117","The Chlorhexadine Exporter (CHX) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antibacterial/3-6-diamino-10-methylacridinium-chloride.html","3,6-diamino-10-methylacridinium chloride"]]},{"id":"CHEBI:6030","l":"isoniazide","na":8,"nb":1,"a":[["ARO%3A3004266","antibiotic resistant katG"],["ARO%3A3003416","isoniazid resistant katG"],["ARO%3A3003392","Mycobacterium tuberculosis katG mutations conferring resistance to isoniazid"],["ARO%3A3005102","Mycobacterium tuberculosis katG mutations conferring resistance to prothionamide"],["ARO%3A3005101","prothionamide resistant katG"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"CHEBI:77932","l":"tetracycline zwitterion","na":8,"nb":1,"a":[["EC%3A1.14.13.231","tetracycline 11a-monooxygenase"],["EC%3A1.14.19.49","tetracycline 7-halogenase"],["EC%3A1.3.98.4","5a,11a-dehydrotetracycline reductase"],["RHEA%3A50712","tetracycline + FADH2 + chloride + O2 = 7-chlorotetracycline + FAD + 2 H2O + H(+)"],["RHEA%3A35235","tetracycline(in) + H(+)(out) = tetracycline(out) + H(+)(in)"],["RHEA%3A35239","tetracycline(in) = tetracycline(out)"]],"b":[["antibacterial/tetracycline-zwitterion.html","tetracycline zwitterion"]]},{"id":"ARO:3000205","l":"tet(X)","na":1,"nb":7,"a":[["ARO%3A3000205","tet(X)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000316","l":"mphA","na":1,"nb":7,"a":[["ARO%3A3000316","mphA"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/dirithromycin.html","dirithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/oleandomycin.html","oleandomycin"],["antibacterial/roxithromycin.html","roxithromycin"]]},{"id":"ARO:3000497","l":"ethambutol","na":7,"nb":1,"a":[["ARO%3A3003447","ethambutol resistant iniA"],["ARO%3A3004136","Ethambutol resistant iniB"],["ARO%3A3003450","Ethambutol resistant iniC"],["ARO%3A3003448","Mycobacterium tuberculosis iniA mutant conferring resistance to ethambutol"],["ARO%3A3004135","Mycobacterium tuberculosis iniB with mutation conferring resistance to ethambutol"],["ARO%3A3003451","Mycobacterium tuberculosis iniC mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3000520","l":"isoniazid","na":7,"nb":1,"a":[["ARO%3A3004921","Mycobacterium tuberculosis ahpC mutations confer resistance to isoniazid"],["ARO%3A3004924","Mycobacterium tuberculosis inbR mutations conferring resistance to isoniazid"],["ARO%3A3007798","Mycobacterium tuberculosis iniA mutations conferring resistance to isoniazid"],["ARO%3A3003463","Mycobacterium tuberculosis kasA mutant conferring resistance to isoniazid"],["ARO%3A3004929","Mycobacterium tuberculosis mmaA3 mutations conferring resistance to isoniazid"],["ARO%3A3004928","Mycobacterium tuberculosis mymA mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3001866","l":"CTX-M-3","na":1,"nb":7,"a":[["ARO%3A3001866","CTX-M-3"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002500","l":"PDC-3","na":1,"nb":7,"a":[["ARO%3A3002500","PDC-3"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002502","l":"PDC-5","na":1,"nb":7,"a":[["ARO%3A3002502","PDC-5"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002533","l":"AAC(3)-IIa","na":1,"nb":7,"a":[["ARO%3A3002533","AAC(3)-IIa"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002534","l":"AAC(3)-IIb","na":1,"nb":7,"a":[["ARO%3A3002534","AAC(3)-IIb"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002535","l":"AAC(3)-IIc","na":1,"nb":7,"a":[["ARO%3A3002535","AAC(3)-IIc"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002545","l":"","na":1,"nb":7,"a":[["ARO%3A3002545","AAC(6')-Ia"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002549","l":"","na":1,"nb":7,"a":[["ARO%3A3002549","AAC(6')-Ic"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002553","l":"","na":1,"nb":7,"a":[["ARO%3A3002553","AAC(6')-If"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002554","l":"","na":1,"nb":7,"a":[["ARO%3A3002554","AAC(6')-Ig"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002555","l":"","na":1,"nb":7,"a":[["ARO%3A3002555","AAC(6')-Ih"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002556","l":"","na":1,"nb":7,"a":[["ARO%3A3002556","AAC(6')-Ii"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002557","l":"","na":1,"nb":7,"a":[["ARO%3A3002557","AAC(6')-Ij"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002558","l":"","na":1,"nb":7,"a":[["ARO%3A3002558","AAC(6')-Ik"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002559","l":"","na":1,"nb":7,"a":[["ARO%3A3002559","AAC(6')-Ip"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002560","l":"","na":1,"nb":7,"a":[["ARO%3A3002560","AAC(6')-Iq"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002561","l":"","na":1,"nb":7,"a":[["ARO%3A3002561","AAC(6')-Ir"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002562","l":"","na":1,"nb":7,"a":[["ARO%3A3002562","AAC(6')-Is"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002563","l":"","na":1,"nb":7,"a":[["ARO%3A3002563","AAC(6')-Isa"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002564","l":"","na":1,"nb":7,"a":[["ARO%3A3002564","AAC(6')-It"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002565","l":"","na":1,"nb":7,"a":[["ARO%3A3002565","AAC(6')-Iu"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002566","l":"","na":1,"nb":7,"a":[["ARO%3A3002566","AAC(6')-Iv"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002567","l":"","na":1,"nb":7,"a":[["ARO%3A3002567","AAC(6')-Iw"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002568","l":"","na":1,"nb":7,"a":[["ARO%3A3002568","AAC(6')-Ix"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002569","l":"","na":1,"nb":7,"a":[["ARO%3A3002569","AAC(6')-Iy"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002570","l":"","na":1,"nb":7,"a":[["ARO%3A3002570","AAC(6')-Iz"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002571","l":"","na":1,"nb":7,"a":[["ARO%3A3002571","AAC(6')-Iaa"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002572","l":"","na":1,"nb":7,"a":[["ARO%3A3002572","AAC(6')-Iad"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002573","l":"","na":1,"nb":7,"a":[["ARO%3A3002573","AAC(6')-Iae"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002574","l":"","na":1,"nb":7,"a":[["ARO%3A3002574","AAC(6')-Iaf"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002575","l":"","na":1,"nb":7,"a":[["ARO%3A3002575","AAC(6')-Iai"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002588","l":"","na":1,"nb":7,"a":[["ARO%3A3002588","AAC(6')-I30"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002589","l":"","na":1,"nb":7,"a":[["ARO%3A3002589","AAC(6')-Iid"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002590","l":"","na":1,"nb":7,"a":[["ARO%3A3002590","AAC(6')-Iih"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002594","l":"","na":1,"nb":7,"a":[["ARO%3A3002594","AAC(6')-IIa"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002595","l":"","na":1,"nb":7,"a":[["ARO%3A3002595","AAC(6')-IIb"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002596","l":"","na":1,"nb":7,"a":[["ARO%3A3002596","AAC(6')-IIc"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002824","l":"ErmV","na":1,"nb":7,"a":[["ARO%3A3002824","ErmV"]],"b":[["antibacterial/carbomycin.html","carbomycin"],["antibacterial/celesticetin.html","celesticetin"],["antibacterial/chalcomycin.html","chalcomycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/josamycin.html","josamycin"],["antibacterial/oleandomycin.html","oleandomycin"]]},{"id":"ARO:3003199","l":"","na":1,"nb":7,"a":[["ARO%3A3003199","AAC(6')-Iak"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3003200","l":"","na":1,"nb":7,"a":[["ARO%3A3003200","AAC(6')-Ian"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3003677","l":"","na":1,"nb":7,"a":[["ARO%3A3003677","AAC(6')-Iaj"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3004128","l":"Serratia marcescens Omp1","na":1,"nb":7,"a":[["ARO%3A3004128","Serratia marcescens Omp1"]],"b":[["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/moxalactam.html","moxalactam"]]},{"id":"ARO:3004491","l":"","na":7,"nb":1,"a":[["ARO%3A3007477","antibiotic resistant ATP synthase"],["ARO%3A3007673","bedaquiline resistant Rv0678"],["ARO%3A3007691","bedaquiline resistant Rv2535c"],["ARO%3A3007476","Mycobacterium abscessus atpE with mutation conferring resistance to bedaquiline"],["ARO%3A3007854","Mycobacterium tuberculosis atpE with mutation conferring resistance to bedaquiline"],["ARO%3A3007674","Mycobacterium tuberculosis Rv0678 with mutation conferring resistance to bedaquiline"]],"b":[["antimycobacterial/bedaquiline.html","bedaquiline"]]},{"id":"ARO:3004559","l":"CAM-1","na":1,"nb":7,"a":[["ARO%3A3004559","CAM-1"]],"b":[["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftolozane.html","ceftolozane"],["antibacterial/doripenem.html","doripenem"],["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3004572","l":"Staphylococcus aureus LmrS","na":1,"nb":7,"a":[["ARO%3A3004572","Staphylococcus aureus LmrS"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/florfenicol.html","florfenicol"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/linezolid.html","linezolid"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004621","l":"AAC(3)-IIe","na":1,"nb":7,"a":[["ARO%3A3004621","AAC(3)-IIe"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3004623","l":"AAC(3)-IId","na":1,"nb":7,"a":[["ARO%3A3004623","AAC(3)-IId"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3004629","l":"","na":1,"nb":7,"a":[["ARO%3A3004629","AAC(6')-Im"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3004635","l":"","na":1,"nb":7,"a":[["ARO%3A3004635","AAC(6')-Il"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3004638","l":"","na":1,"nb":7,"a":[["ARO%3A3004638","AAC(6')-I-48"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3004825","l":"LAP-1","na":1,"nb":7,"a":[["ARO%3A3004825","LAP-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefuroxime.html","cefuroxime"],["antibacterial/piperacillin.html","piperacillin"]]},{"id":"ARO:3004826","l":"LAP-2","na":1,"nb":7,"a":[["ARO%3A3004826","LAP-2"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefuroxime.html","cefuroxime"],["antibacterial/piperacillin.html","piperacillin"]]},{"id":"ARO:3005085","l":"AAC(3)-IIg","na":1,"nb":7,"a":[["ARO%3A3005085","AAC(3)-IIg"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3007011","l":"mdeA","na":1,"nb":7,"a":[["ARO%3A3007011","mdeA"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/nalidixic-acid.html","nalidixic acid"],["antibacterial/oxacillin.html","oxacillin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007204","l":"","na":1,"nb":7,"a":[["ARO%3A3007204","AAC(6')-Iap"]],"b":[["antibacterial/2-n-ethylnetilmicin.html","2'-N-ethylnetilmicin"],["antibacterial/5-episisomicin.html","5-episisomicin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"CHEBI:15722","l":"","na":1,"nb":7,"a":[["MCSA%3A744","GyrA intein (Class 1 intein)"]],"b":[["antibacterial/mastoparan-a.html","mastoparan-A"],["antibacterial/mastoparan-af.html","mastoparan-AF"],["antibacterial/mastoparan-b.html","mastoparan-B"],["antibacterial/mastoparan-d.html","mastoparan-D"],["antibacterial/mastoparan-m.html","mastoparan-M"],["antibacterial/mastoparan-v.html","mastoparan-V"]]},{"id":"CHEBI:15837","l":"isoamylol","na":7,"nb":1,"a":[["EC%3A1.1.1.265","3-methylbutanal reductase"],["EC%3A3.1.1.112","isoamyl acetate esterase"],["RHEA%3A65236","3-methylbutan-1-ol + acetyl-CoA = 3-methylbutyl acetate + CoA"],["RHEA%3A85967","3-methylbutan-1-ol + hexadecanoyl-CoA = 3-methylbutyl hexadecanoate + CoA"],["RHEA%3A18529","3-methylbutan-1-ol + NAD(+) = 3-methylbutanal + NADH + H(+)"],["RHEA%3A18525","3-methylbutan-1-ol + NADP(+) = 3-methylbutanal + NADPH + H(+)"]],"b":[["antifungal/isoamylol.html","isoamylol"]]},{"id":"CHEBI:16118","l":"berberine","na":7,"nb":1,"a":[["EC%3A1.21.3.2","columbamine oxidase"],["EC%3A1.3.3.8","tetrahydroberberine oxidase"],["EC%3A1.5.1.31","berberine reductase"],["RHEA%3A23564","2 columbamine + O2 = 2 berberine + 2 H2O"],["RHEA%3A21268","(R)-canadine + 2 NADP(+) = berberine + 2 NADPH + H(+)"],["RHEA%3A13489","(S)-canadine + 2 O2 + H(+) = berberine + 2 H2O2"]],"b":[["antifungal/berberine.html","berberine"]]},{"id":"CHEBI:16731","l":"(E)-cinnamaldehyde","na":7,"nb":1,"a":[["EC%3A1.1.1.195","cinnamyl-alcohol dehydrogenase"],["EC%3A1.2.1.44","cinnamoyl-CoA reductase"],["RHEA%3A77507","(E)-cinnamaldehyde + hydrogen cyanide = (2S,3E)-2-hydroxy-4-phenylbut-3-enenitrile"],["RHEA%3A10620","(E)-cinnamaldehyde + NADP(+) + CoA = (E)-cinnamoyl-CoA + NADPH + H(+)"],["RHEA%3A58992","(E)-cinnamaldehyde + O2 + H2O = (E)-cinnamate + H2O2 + H(+)"],["RHEA%3A68872","(E)-cinnamate + ATP + NADPH + H(+) = (E)-cinnamaldehyde + AMP + diphosphate + NADP(+)"]],"b":[["antifungal/e-cinnamaldehyde.html","(E)-cinnamaldehyde"]]},{"id":"CHEBI:17209","l":"dihydrosanguinarine","na":7,"nb":1,"a":[["EC%3A1.14.14.100","dihydrosanguinarine 10-monooxygenase"],["EC%3A1.3.1.107","sanguinarine reductase"],["EC%3A1.5.3.12","dihydrobenzophenanthridine oxidase"],["RHEA%3A41660","dihydrosanguinarine + NAD(+) = sanguinarine + NADH"],["RHEA%3A41656","dihydrosanguinarine + NADP(+) = sanguinarine + NADPH"],["RHEA%3A16621","dihydrosanguinarine + O2 + H(+) = sanguinarine + H2O2"]],"b":[["antifungal/dihydrosanguinarine.html","dihydrosanguinarine"]]},{"id":"CHEBI:28831","l":"","na":7,"nb":1,"a":[["RHEA%3A62204","1-propanol + 2 Fe(III)-[cytochrome c] = propanal + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A65468","1-propanol + acetyl-CoA = propyl acetate + CoA"],["RHEA%3A65476","1-propanol + butanoyl-CoA = propyl butanoate + CoA"],["RHEA%3A50704","1-propanol + NAD(+) = propanal + NADH + H(+)"],["RHEA%3A64712","1-propanol + NADP(+) = propanal + NADPH + H(+)"],["MCSA%3A407","carboxylesterase"]],"b":[["antifungal/4-5-6-7-tetrachloro-2-benzofuran-1-3h-one.html","4,5,6,7-tetrachloro-2-benzofuran-1(3H)-one"]]},{"id":"CHEBI:83264","l":"","na":7,"nb":1,"a":[["RHEA%3A48056","a beta-D-galactosyl-(1->4)-beta-D-glucosyl-(1<->1)-ceramide + H2O = a beta-D-glucosylceramide + D-galactose"],["RHEA%3A85943","a beta-D-glucosylceramide + GDP-alpha-D-mannose = beta-D-Man-(1->4)-beta-D-Glc-(1<->1)-ceramide + GDP + H(+)"],["RHEA%3A78531","a beta-D-glucosylceramide + H2O = a beta-D-glucosyll-(1<->1')-sphingoid base + a fatty acid"],["RHEA%3A81447","a beta-D-glucosylceramide + H2O = an N-acyl-sphingoid base + D-glucose"],["RHEA%3A77255","a beta-D-glucosylceramide(in) = a beta-D-glucosylceramide(out)"],["RHEA%3A66660","a beta-D-glucosylceramide(in) + ATP + H2O = a beta-D-glucosylceramide(out) + ADP + phosphate + H(+)"]],"b":[["unspecified/chrysogeside-b.html","chrysogeside B"]]},{"id":"ARO:3000186","l":"tet(M)","na":1,"nb":6,"a":[["ARO%3A3000186","tet(M)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000190","l":"tet(O)","na":1,"nb":6,"a":[["ARO%3A3000190","tet(O)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000191","l":"tet(Q)","na":1,"nb":6,"a":[["ARO%3A3000191","tet(Q)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000192","l":"tet(S)","na":1,"nb":6,"a":[["ARO%3A3000192","tet(S)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000193","l":"tet(T)","na":1,"nb":6,"a":[["ARO%3A3000193","tet(T)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000194","l":"tet(W)","na":1,"nb":6,"a":[["ARO%3A3000194","tet(W)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000195","l":"tetB(P)","na":1,"nb":6,"a":[["ARO%3A3000195","tetB(P)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000196","l":"tet(32)","na":1,"nb":6,"a":[["ARO%3A3000196","tet(32)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000197","l":"tet(36)","na":1,"nb":6,"a":[["ARO%3A3000197","tet(36)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000556","l":"tet(44)","na":1,"nb":6,"a":[["ARO%3A3000556","tet(44)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/demeclocycline.html","demeclocycline"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000787","l":"MdtABC-TolC","na":6,"nb":1,"a":[["ARO%3A3000828","baeR"],["ARO%3A3000829","baeS"],["ARO%3A3000531","baeSR"],["ARO%3A3000830","cpxA"],["ARO%3A3000524","cpxAR"],["ARO%3A3000787","MdtABC-TolC"]],"b":[["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3001889","l":"CTX-M-27","na":1,"nb":6,"a":[["ARO%3A3001889","CTX-M-27"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ertapenem.html","ertapenem"]]},{"id":"ARO:3002600","l":"","na":1,"nb":6,"a":[["ARO%3A3002600","AAC(3)-Ib/AAC(6')-Ib3 bifunctional protein"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/astromicin.html","astromicin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/sisomycin.html","sisomycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002641","l":"","na":1,"nb":6,"a":[["ARO%3A3002641","APH(3')-Ia"]],"b":[["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"],["antimycobacterial/lividomycin-a.html","lividomycin A"]]},{"id":"ARO:3002642","l":"","na":1,"nb":6,"a":[["ARO%3A3002642","APH(3')-Ib"]],"b":[["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"],["antimycobacterial/lividomycin-a.html","lividomycin A"]]},{"id":"ARO:3002644","l":"","na":1,"nb":6,"a":[["ARO%3A3002644","APH(3')-IIa"]],"b":[["antibacterial/butirosin.html","butirosin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3002645","l":"","na":1,"nb":6,"a":[["ARO%3A3002645","APH(3')-IIb"]],"b":[["antibacterial/butirosin.html","butirosin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3002646","l":"","na":1,"nb":6,"a":[["ARO%3A3002646","APH(3')-IIc"]],"b":[["antibacterial/butirosin.html","butirosin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin-b.html","gentamicin B"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3003684","l":"Pseudomonas aeruginosa gyrA conferring resistance to fluoroquinolones","na":1,"nb":6,"a":[["ARO%3A3003684","Pseudomonas aeruginosa gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/ofloxacin.html","ofloxacin"],["antibacterial/pefloxacin.html","pefloxacin"],["antibacterial/sitafloxacin.html","Sitafloxacin"],["antibacterial/sparfloxacin.html","sparfloxacin"]]},{"id":"ARO:3003688","l":"PvrR","na":1,"nb":6,"a":[["ARO%3A3003688","PvrR"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/carbenicillin.html","carbenicillin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tetracycline.html","tetracycline"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3003908","l":"Erm(47)","na":1,"nb":6,"a":[["ARO%3A3003908","Erm(47)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/quinupristin.html","quinupristin"],["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3004076","l":"MuxABC-OpmB","na":1,"nb":6,"a":[["ARO%3A3004076","MuxABC-OpmB"]],"b":[["antibacterial/aztreonam.html","aztreonam"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/josamycin.html","josamycin"],["antibacterial/novobiocin.html","novobiocin"],["antibacterial/rokitamycin.html","rokitamycin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004176","l":"Mycoplasma hominis 23S rRNA with mutation conferring resistance to macrolide antibiotics","na":1,"nb":6,"a":[["ARO%3A3004176","Mycoplasma hominis 23S rRNA with mutation conferring resistance to macrolide antibiotics"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/spiramycin-i.html","spiramycin I"],["antibacterial/telithromycin.html","telithromycin"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3004446","l":"Haemophilus influenzae PBP3 conferring resistance to beta-lactam antibiotics","na":1,"nb":6,"a":[["ARO%3A3004446","Haemophilus influenzae PBP3 conferring resistance to beta-lactam antibiotics"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefaclor.html","cefaclor"],["antibacterial/cefdinir.html","cefdinir"],["antibacterial/cefditoren.html","cefditoren"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3004715","l":"vga(E) Staphylococcus cohnii","na":1,"nb":6,"a":[["ARO%3A3004715","vga(E) Staphylococcus cohnii"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/valnemulin.html","valnemulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3005015","l":"VMB-1","na":1,"nb":6,"a":[["ARO%3A3005015","VMB-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3007085","l":"PRC-1","na":1,"nb":6,"a":[["ARO%3A3007085","PRC-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3007154","l":"","na":6,"nb":1,"a":[["ARO%3A3004943","cycloserine resistant ald"],["ARO%3A3004946","cycloserine resistant alr"],["ARO%3A3004939","cycloserine resistant ddlA"],["ARO%3A3004945","Mycobacterium tuberculosis ald mutations confer resistance to cycloserine"],["ARO%3A3004947","Mycobacterium tuberculosis alr with mutation conferring resistance to cycloserine"],["ARO%3A3004941","Mycobacterium tuberculosis ddlA mutations confer resistance to cycloserine"]],"b":[["antimycobacterial/d-cycloserine.html","D-cycloserine"]]},{"id":"ARO:3007437","l":"EBR-5","na":1,"nb":6,"a":[["ARO%3A3007437","EBR-5"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftiofur.html","ceftiofur"],["antibacterial/cefuroxime.html","cefuroxime"],["antibacterial/piperacillin.html","piperacillin"]]},{"id":"ARO:3007646","l":"Neobacillus vireti vmlR2","na":1,"nb":6,"a":[["ARO%3A3007646","Neobacillus vireti vmlR2"]],"b":[["antibacterial/a201a.html","A201A"],["antibacterial/hygromycin-a.html","hygromycin A"],["antibacterial/iboxamycin.html","iboxamycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3007648","l":"PSZ-1","na":1,"nb":6,"a":[["ARO%3A3007648","PSZ-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"ARO:3007659","l":"putative nickel/cobalt transporter","na":1,"nb":6,"a":[["ARO%3A3007659","putative nickel/cobalt transporter"]],"b":[["antibacterial/gentamicin.html","gentamicin"],["antibacterial/nalidixic-acid.html","nalidixic acid"],["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/ofloxacin.html","ofloxacin"],["antibacterial/sparfloxacin.html","sparfloxacin"],["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"CHEBI:134179","l":"","na":1,"nb":6,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antibacterial/3-phenethylamino-butan-2-one.html","3-(phenethylamino)-butan-2-one"],["antifungal/acrylonitrile.html","acrylonitrile"],["antifungal/isoamylol.html","isoamylol"],["antifungal/nerolidol.html","nerolidol"],["antifungal/prop-2-yn-1-ol.html","prop-2-yn-1-ol"],["biocide/ethanol.html","ethanol"]]},{"id":"CHEBI:15399","l":"(+)-carvone","na":6,"nb":1,"a":[["EC%3A1.1.1.275","(+)-trans-carveol dehydrogenase"],["EC%3A1.1.1.n4","(-)-trans-carveol dehydrogenase"],["EC%3A1.3.99.25","carvone reductase"],["RHEA%3A32427","(1R,4S)-isodihydrocarvone + A = (S)-carvone + AH2"],["RHEA%3A14825","(1R,5S)-carveol + NAD(+) = (S)-carvone + NADH + H(+)"],["RHEA%3A25848","(1S,5S)-carveol + NAD(+) = (S)-carvone + NADH + H(+)"]],"b":[["antifungal/carvone.html","(+)-carvone"]]},{"id":"CHEBI:15400","l":"(−)-carvone","na":6,"nb":1,"a":[["EC%3A1.1.1.243","carveol dehydrogenase"],["EC%3A1.1.1.n4","(-)-trans-carveol dehydrogenase"],["EC%3A1.3.99.25","carvone reductase"],["RHEA%3A32423","(1R,4R)-dihydrocarvone + A = (R)-carvone + AH2"],["RHEA%3A25844","(1S,5R)-carveol + NAD(+) = (R)-carvone + NADH + H(+)"],["RHEA%3A13629","(1S,5R)-carveol + NADP(+) = (R)-carvone + NADPH + H(+)"]],"b":[["antifungal/carvone-15400.html","(−)-carvone"]]},{"id":"CHEBI:16664","l":"albendazole","na":6,"nb":1,"a":[["EC%3A1.14.13.32","albendazole monooxygenase"],["EC%3A1.14.14.73","albendazole monooxygenase (sufoxide-forming)"],["EC%3A1.14.14.74","albendazole monooxygenase (hydroxylating)"],["RHEA%3A10796","albendazole + NADPH + O2 + H(+) = albendazole S-oxide + NADP(+) + H2O"],["RHEA%3A55924","albendazole + reduced [NADPH--hemoprotein reductase] + O2 = albendazole S-oxide + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A56288","albendazole + reduced [NADPH--hemoprotein reductase] + O2 = hydroxyalbendazole + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["antifungal/albendazole.html","albendazole"]]},{"id":"CHEBI:20702","l":"","na":1,"nb":6,"a":[["TCDB%3A2.A.40","The Nucleobase/Ascorbate Transporter (NAT) or Nucleobase:Cation Symporter-2 (NCS2) Family"]],"b":[["antiviral/acyclovir.html","acyclovir"],["antiviral/entecavir-anhydrous.html","entecavir (anhydrous)"],["antiviral/famciclovir.html","famciclovir"],["antiviral/ganciclovir.html","ganciclovir"],["antiviral/penciclovir.html","penciclovir"],["antiviral/tioguanine.html","tioguanine"]]},{"id":"CHEBI:25696","l":"","na":6,"nb":1,"a":[["TCDB%3A2.A.31","The Anion Exchanger (AE) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.28","The Bile Acid:Na+ Symporter (BASS) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.60","The Organo Anion Transporter (OAT) Family"],["TCDB%3A1.C.103","The Pore-forming Toxin, TisB (TisB) Family"]],"b":[["antibacterial/trichosetin-1.html","trichosetin(1−)"]]},{"id":"CHEBI:28054","l":"o-cresol","na":6,"nb":1,"a":[["EC%3A1.14.13.243","toluene 2-monooxygenase"],["RHEA%3A57948","2-hydroxytoluene + NADH + O2 + H(+) = 3-methylcatechol + NAD(+) + H2O"],["RHEA%3A57440","2-methylanisole + reduced [NADH--hemoprotein reductase] + O2 = 2-hydroxytoluene + oxidized [NADH--hemoprotein reductase] + formaldehyde + H2O + H(+)"],["RHEA%3A80607","(2-methylphenoxy)acetate + 2-oxoglutarate + O2 = 2-hydroxytoluene + glyoxylate + succinate + CO2"],["RHEA%3A20349","toluene + NADH + O2 + H(+) = 2-hydroxytoluene + NAD(+) + H2O"],["proteintraitsmech%3ABIOLIP_JZ0","JZ0-binding site"]],"b":[["antifungal/o-cresol.html","o-cresol"]]},{"id":"CHEBI:3020","l":"","na":6,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.117","The Chlorhexadine Exporter (CHX) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"]]},{"id":"CHEBI:31457","l":"decanal","na":6,"nb":1,"a":[["RHEA%3A58376","decan-1-ol + NADP(+) = decanal + NADPH + H(+)"],["RHEA%3A69496","decan-1-ol + O2 = decanal + H2O2"],["RHEA%3A44104","decanal + NAD(+) + H2O = decanoate + NADH + 2 H(+)"],["RHEA%3A50612","decanal + NADP(+) = (2E)-decenal + NADPH + H(+)"],["RHEA%3A65744","decyl sulfate + 2-oxoglutarate + O2 = decanal + sulfate + succinate + CO2 + H(+)"],["proteintraitsmech%3ABIOLIP_8YP","8YP-binding site"]],"b":[["antifungal/decanal.html","decanal"]]},{"id":"CHEBI:35915","l":"","na":6,"nb":1,"a":[["EC%3A2.3.1.43","phosphatidylcholine--sterol O-acyltransferase"],["EC%3A2.3.1.73","diacylglycerol--sterol O-acyltransferase"],["EC%3A3.1.1.13","sterol esterase"],["RHEA%3A21204","a sterol + a 1,2-diacyl-sn-glycero-3-phosphocholine = a sterol ester + a 1-acyl-sn-glycero-3-phosphocholine"],["RHEA%3A13301","a sterol + a 1,2-diacyl-sn-glycerol = a sterol ester + a 1-acyl-sn-glycerol"],["RHEA%3A10100","a sterol ester + H2O = a sterol + a fatty acid + H(+)"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"CHEBI:4883","l":"ethidium bromide","na":6,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.A.7","The ATP-gated P2X Receptor Cation Channel (P2X Receptor) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antiprotozoal/ethidium-bromide.html","ethidium bromide"]]},{"id":"CHEBI:50667","l":"mercaptopurine","na":6,"nb":1,"a":[["EC%3A2.1.1.67","thiopurine S-methyltransferase"],["RHEA%3A12609","mercaptopurine + S-adenosyl-L-methionine = 6-methylthiopurine + S-adenosyl-L-homocysteine + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.40","The Nucleobase/Ascorbate Transporter (NAT) or Nucleobase:Cation Symporter-2 (NCS2) Family"]],"b":[["antiviral/mercaptopurine.html","mercaptopurine"]]},{"id":"CHEBI:61748","l":"(E)-oct-2-enal","na":6,"nb":1,"a":[["EC%3A2.2.1.12","3-acetyloctanal synthase"],["RHEA%3A59920","(2E)-octenal + NAD(+) + H2O = (2E)-octenoate + NADH + 2 H(+)"],["RHEA%3A59916","(2E)-octenal + NADP(+) + H2O = (2E)-octenoate + NADPH + 2 H(+)"],["RHEA%3A42832","(2E)-octenal + pyruvate + H(+) = (S)-3-acetyloctanal + CO2"],["RHEA%3A58372","(E)-oct-2-en-1-ol + NADP(+) = (2E)-octenal + NADPH + H(+)"],["RHEA%3A50780","octanal + NADP(+) = (2E)-octenal + NADPH + H(+)"]],"b":[["antifungal/e-oct-2-enal.html","(E)-oct-2-enal"]]},{"id":"CHEBI:77722","l":"apigenin 7-O-β-D-glucoside(1−)","na":6,"nb":1,"a":[["EC%3A2.4.1.81","flavone 7-O-beta-glucosyltransferase"],["EC%3A2.4.2.25","flavone apiosyltransferase"],["RHEA%3A69679","apigenin 7-O-beta-D-glucoside + H2O = apigenin + beta-D-glucose"],["RHEA%3A67348","apigenin 7-O-beta-D-glucoside + malonyl-CoA = apigenin 7-O-(6-O-malonyl-beta-D-glucoside) + CoA"],["RHEA%3A59760","apigenin + UDP-alpha-D-glucose = apigenin 7-O-beta-D-glucoside + UDP + H(+)"],["RHEA%3A19153","UDP-alpha-D-apiose + apigenin 7-O-beta-D-glucoside = 7-O-(beta-D-apiofuranosyl-1,2-beta-D-glucosyl)-5,7,4'-trihydroxyflavone + UDP + H(+)"]],"b":[["antibacterial/apigenin-7-o-%CE%B2-d-glucoside-1.html","apigenin 7-O-β-D-glucoside(1−)"]]},{"id":"CHEBI:77979","l":"aclacinomycin T zwitterion","na":6,"nb":1,"a":[["EC%3A2.4.1.326","aklavinone 7-L-rhodosaminyltransferase"],["EC%3A2.4.1.327","aclacinomycin-T 2-deoxy-L-fucose transferase"],["EC%3A3.1.1.95","aclacinomycin methylesterase"],["RHEA%3A37891","aclacinomycin T + H2O = 15-demethylaclacinomycin T + methanol"],["RHEA%3A41568","dTDP-2-deoxy-beta-L-fucose + aclacinomycin T = aclacinomycin S + dTDP + H(+)"],["RHEA%3A41564","dTDP-beta-L-rhodosamine + aklavinone = aclacinomycin T + dTDP + 2 H(+)"]],"b":[["unspecified/aclacinomycin-t-zwitterion.html","aclacinomycin T zwitterion"]]},{"id":"CHEBI:86494","l":"","na":1,"nb":6,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/allicin.html","allicin"],["antifungal/berberine.html","berberine"],["antifungal/carvacrol.html","carvacrol"],["antifungal/carvone-38265.html","carvone"],["antifungal/sanguinarine.html","sanguinarine"],["antifungal/%CE%B1-santonin.html","α-santonin"]]},{"id":"CHEBI:98","l":"(S)-linalool","na":6,"nb":1,"a":[["EC%3A4.2.1.127","linalool dehydratase"],["EC%3A4.2.3.25","S-linalool synthase"],["EC%3A5.4.4.4","geraniol isomerase"],["RHEA%3A30715","(2E)-geraniol = (S)-linalool"],["RHEA%3A24116","(2E)-geranyl diphosphate + H2O = (S)-linalool + diphosphate"],["RHEA%3A30711","(S)-linalool = beta-myrcene + H2O"]],"b":[["unspecified/s-linalool.html","(S)-linalool"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":6,"nb":1,"a":[["IDPO%3A0000037","molecular recognition display site"],["Pfam%3APF05403","Plasmodium histidine-rich protein (HRPII/III)"],["Pfam%3APF17986","EMP3-KAHRP-like N-terminal domain"],["Pfam%3APF03805","Cytoadherence-linked asexual protein"],["Pfam%3APF06589","Circumsporozoite-related antigen (CRA)"],["TED%3AAF-Q9U431-F1-model_v4_TED01","TED novel fold AF-Q9U431-F1-model_v4_TED01"]],"b":[["antiprotozoal/emetine.html","emetine"]]},{"id":"ARO:3000230","l":"","na":1,"nb":5,"a":[["ARO%3A3000230","ANT(2')-Ia"]],"b":[["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/sisomycin.html","sisomycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3000753","l":"abeM","na":1,"nb":5,"a":[["ARO%3A3000753","abeM"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/ofloxacin.html","ofloxacin"],["antibacterial/triclosan.html","triclosan"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3001214","l":"mdtM","na":1,"nb":5,"a":[["ARO%3A3001214","mdtM"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/puromycin.html","puromycin"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3001304","l":"ErmS","na":1,"nb":5,"a":[["ARO%3A3001304","ErmS"]],"b":[["antibacterial/carbomycin.html","carbomycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/niddamycin.html","niddamycin"],["antibacterial/pristinamycin-ic.html","pristinamycin IC"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3001878","l":"CTX-M-15","na":1,"nb":5,"a":[["ARO%3A3001878","CTX-M-15"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3002523","l":"","na":1,"nb":5,"a":[["ARO%3A3002523","AAC(2')-Ia"]],"b":[["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002524","l":"","na":1,"nb":5,"a":[["ARO%3A3002524","AAC(2')-Ib"]],"b":[["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002525","l":"","na":1,"nb":5,"a":[["ARO%3A3002525","AAC(2')-Ic"]],"b":[["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002526","l":"","na":1,"nb":5,"a":[["ARO%3A3002526","AAC(2')-Id"]],"b":[["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002527","l":"","na":1,"nb":5,"a":[["ARO%3A3002527","AAC(2')-Ie"]],"b":[["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002583","l":"","na":1,"nb":5,"a":[["ARO%3A3002583","AAC(6')-29a"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002584","l":"","na":1,"nb":5,"a":[["ARO%3A3002584","AAC(6')-29b"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002648","l":"","na":1,"nb":5,"a":[["ARO%3A3002648","APH(3')-IVa"]],"b":[["antibacterial/butirosin.html","butirosin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3002823","l":"ErmH","na":1,"nb":5,"a":[["ARO%3A3002823","ErmH"]],"b":[["antibacterial/carbomycin.html","carbomycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/oleandomycin.html","oleandomycin"],["antibacterial/pristinamycin-ic.html","pristinamycin IC"]]},{"id":"ARO:3002831","l":"vgaC","na":1,"nb":5,"a":[["ARO%3A3002831","vgaC"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/valnemulin.html","valnemulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3003071","l":"mphF","na":1,"nb":5,"a":[["ARO%3A3003071","mphF"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/roxithromycin.html","roxithromycin"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3003374","l":"Enterobacter aerogenes acrR with mutation conferring multidrug antibiotic resistance","na":1,"nb":5,"a":[["ARO%3A3003374","Enterobacter aerogenes acrR with mutation conferring multidrug antibiotic resistance"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/tetracycline.html","tetracycline"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3003561","l":"SED-1","na":1,"nb":5,"a":[["ARO%3A3003561","SED-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefuroxime.html","cefuroxime"],["antibacterial/piperacillin.html","piperacillin"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3003713","l":"VCC-1","na":1,"nb":5,"a":[["ARO%3A3003713","VCC-1"]],"b":[["antibacterial/aztreonam.html","aztreonam"],["antibacterial/doripenem.html","doripenem"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3003749","l":"salA","na":1,"nb":5,"a":[["ARO%3A3003749","salA"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3003995","l":"Clostridioides difficile gyrA conferring resistance to fluoroquinolones","na":1,"nb":5,"a":[["ARO%3A3003995","Clostridioides difficile gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/gatifloxacin.html","gatifloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"],["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3004082","l":"AcrAD-TolC","na":1,"nb":5,"a":[["ARO%3A3004082","AcrAD-TolC"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3004191","l":"","na":1,"nb":5,"a":[["ARO%3A3004191","APH(2')-If"]],"b":[["antibacterial/dibekacin.html","dibekacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/sisomycin.html","sisomycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3004470","l":"poxtA","na":1,"nb":5,"a":[["ARO%3A3004470","poxtA"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/florfenicol.html","florfenicol"],["antibacterial/linezolid.html","linezolid"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004675","l":"aphA15","na":1,"nb":5,"a":[["ARO%3A3004675","aphA15"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004677","l":"rmtD2","na":1,"nb":5,"a":[["ARO%3A3004677","rmtD2"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/netilmycin.html","netilmycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005035","l":"YRC-1","na":1,"nb":5,"a":[["ARO%3A3005035","YRC-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/cefuroxime.html","cefuroxime"]]},{"id":"ARO:3007026","l":"salB","na":1,"nb":5,"a":[["ARO%3A3007026","salB"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3007027","l":"salC","na":1,"nb":5,"a":[["ARO%3A3007027","salC"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3007033","l":"Erm(51)","na":1,"nb":5,"a":[["ARO%3A3007033","Erm(51)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/pristinamycin-ib.html","pristinamycin IB"]]},{"id":"ARO:3007151","l":"","na":5,"nb":1,"a":[["ARO%3A3000446","antibiotic-resistant isoleucyl-tRNA synthetase (ileS)"],["ARO%3A3003730","Bifidobacterium bifidum ileS conferring resistance to mupirocin"],["ARO%3A3003729","Staphylococcus aureus ileS with mutation conferring resistance to mupirocin"],["ARO%3A3000521","Staphylococcus aureus mupA conferring resistance to mupirocin"],["ARO%3A3000510","Staphylococcus aureus mupB conferring resistance to mupirocin"]],"b":[["antibacterial/mupirocin.html","mupirocin"]]},{"id":"ARO:3007180","l":"MAB","na":1,"nb":5,"a":[["ARO%3A3007180","MAB"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/cefuroxime.html","cefuroxime"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3007182","l":"blaC","na":1,"nb":5,"a":[["ARO%3A3007182","blaC"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/temocillin.html","temocillin"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3007374","l":"PJM-1","na":1,"nb":5,"a":[["ARO%3A3007374","PJM-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3007438","l":"LAQ-1","na":1,"nb":5,"a":[["ARO%3A3007438","LAQ-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"ARO:3007635","l":"CAE-1","na":1,"nb":5,"a":[["ARO%3A3007635","CAE-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/cefuroxime.html","cefuroxime"],["antibacterial/piperacillin.html","piperacillin"]]},{"id":"ARO:3007637","l":"Clostridioides difficile cplR","na":1,"nb":5,"a":[["ARO%3A3007637","Clostridioides difficile cplR"]],"b":[["antibacterial/a201a.html","A201A"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/iboxamycin.html","iboxamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3007644","l":"Clostridium perfringes cplR","na":1,"nb":5,"a":[["ARO%3A3007644","Clostridium perfringes cplR"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/iboxamycin.html","iboxamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3007694","l":"AMZ-1","na":1,"nb":5,"a":[["ARO%3A3007694","AMZ-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"ARO:3009134","l":"antifungal resistance-associated MSH2","na":1,"nb":5,"a":[["ARO%3A3009134","antifungal resistance-associated MSH2"]],"b":[["antifungal/amphotericin-b.html","amphotericin B"],["antifungal/caspofungin.html","caspofungin"],["antifungal/fluconazole.html","fluconazole"],["antifungal/micafungin.html","micafungin"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"CHEBI:15649","l":"3,6,9-trihydroxypterocarpan","na":5,"nb":1,"a":[["EC%3A1.14.14.93","3,9-dihydroxypterocarpan 6a-monooxygenase"],["EC%3A2.5.1.36","trihydroxypterocarpan dimethylallyltransferase"],["RHEA%3A15321","(6aR,11aR)-3,9-dihydroxypterocarpan + reduced [NADPH--hemoprotein reductase] + O2 = (6aS,11aS)-3,6a,9-trihydroxypterocarpan + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A19345","(6aS,11aS)-3,6a,9-trihydroxypterocarpan + dimethylallyl diphosphate = (6aS,11aS)-2-dimethylallyl-3,6a,9-trihydroxypterocarpan + diphosphate"],["RHEA%3A23184","(6aS,11aS)-3,6a,9-trihydroxypterocarpan + dimethylallyl diphosphate = (6aS,11aS)-4-dimethylallyl-3,6a,9-trihydroxypterocarpan + diphosphate"]],"b":[["antibacterial/3-6-9-trihydroxypterocarpan.html","3,6,9-trihydroxypterocarpan"]]},{"id":"CHEBI:16670","l":"peptide","na":5,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A9.B.46","The Staphylococcus aureus Putative Quorum Sensing Peptide Exporter, AgrB (AgrB) Family"],["TCDB%3A3.A.25","The Symbiont-specific ERAD-like Machinery (SELMA) Family"],["proteintraitsmech%3ABIOLIP_PEPTIDE","peptide-binding site"]],"b":[["antibacterial/cefbuperazone.html","cefbuperazone"]]},{"id":"CHEBI:17043","l":"biphenyl-2-ol","na":5,"nb":1,"a":[["EC%3A1.14.13.44","2-hydroxybiphenyl 3-monooxygenase"],["EC%3A3.13.1.3","2'-hydroxybiphenyl-2-sulfinate desulfinase"],["RHEA%3A12945","2'-hydroxybiphenyl-2-sulfinate + H2O = biphenyl-2-ol + sulfite + H(+)"],["RHEA%3A11996","biphenyl-2-ol + NADH + O2 + H(+) = biphenyl-2,3-diol + NAD(+) + H2O"],["MCSA%3A971","2'-hydroxybiphenyl-2-sulfinate desulfinase"]],"b":[["antifungal/biphenyl-2-ol.html","biphenyl-2-ol"]]},{"id":"CHEBI:17183","l":"sanguinarine","na":5,"nb":1,"a":[["EC%3A1.3.1.107","sanguinarine reductase"],["EC%3A1.5.3.12","dihydrobenzophenanthridine oxidase"],["RHEA%3A41660","dihydrosanguinarine + NAD(+) = sanguinarine + NADH"],["RHEA%3A41656","dihydrosanguinarine + NADP(+) = sanguinarine + NADPH"],["RHEA%3A16621","dihydrosanguinarine + O2 + H(+) = sanguinarine + H2O2"]],"b":[["antifungal/sanguinarine.html","sanguinarine"]]},{"id":"CHEBI:18145","l":"(R,R,R)-α-tocopherol","na":5,"nb":1,"a":[["EC%3A2.1.1.95","tocopherol C-methyltransferase"],["RHEA%3A71507","(+)-alpha-tocopherol(out) = (+)-alpha-tocopherol(in)"],["RHEA%3A45108","(+)-alpha-tocopherol + reduced [NADPH--hemoprotein reductase] + O2 = 13-hydroxy-alpha-tocopherol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A24012","gamma-tocopherol + S-adenosyl-L-methionine = (+)-alpha-tocopherol + S-adenosyl-L-homocysteine + H(+)"],["proteintraitsmech%3ABIOLIP_VIV","VIV-binding site"]],"b":[["antiviral/r-r-r-%CE%B1-tocopherol.html","(R,R,R)-α-tocopherol"]]},{"id":"CHEBI:23403","l":"","na":1,"nb":5,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antibacterial/5-6-7-trimethoxycoumarin.html","5,6,7-trimethoxycoumarin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/glycyrin.html","glycyrin"],["antifungal/coumoxystrobin.html","coumoxystrobin"],["antiviral/soulattrolide.html","soulattrolide"]]},{"id":"CHEBI:28600","l":"farnesol","na":1,"nb":5,"a":[["RHEA%3A79359","farnesol + 2 Fe(III)-[cytochrome c] = farnesal + 2 Fe(II)-[cytochrome c] + 2 H(+)"]],"b":[["unspecified/2-cis-6-cis-farnesol.html","(2-cis,6-cis)-farnesol"],["unspecified/2-cis-6-trans-farnesol.html","(2-cis,6-trans)-farnesol"],["unspecified/2-trans-6-cis-farnesol.html","(2-trans,6-cis)-farnesol"],["unspecified/2-trans-6-trans-farnesol.html","(2-trans,6-trans)-farnesol"],["unspecified/farnesol.html","farnesol"]]},{"id":"CHEBI:33704","l":"","na":5,"nb":1,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["MCSA%3A396","aspartic peptidase"],["MCSA%3A169","dipeptidyl-peptidase IV"],["MCSA%3A425","plasmin"],["MCSA%3A412","prolyl aminopeptidase"]],"b":[["antiprotozoal/eflornithine.html","eflornithine"]]},{"id":"CHEBI:34994","l":"","na":1,"nb":5,"a":[["TCDB%3A2.A.128","The Multidrug Resistance Exporter VanZ (VanZ) Family"]],"b":[["unspecified/teicoplanin-a2-1.html","teicoplanin A2-1"],["unspecified/teicoplanin-a2-2.html","teicoplanin A2-2"],["unspecified/teicoplanin-a2-3.html","teicoplanin A2-3"],["unspecified/teicoplanin-a2-4.html","teicoplanin A2-4"],["unspecified/teicoplanin-a2-5.html","teicoplanin A2-5"]]},{"id":"CHEBI:36835","l":"","na":5,"nb":1,"a":[["EC%3A1.1.1.213","3alpha-hydroxysteroid dehydrogenase (Re-specific)"],["EC%3A1.1.1.357","3alpha-hydroxysteroid 3-dehydrogenase"],["EC%3A1.1.1.50","3alpha-hydroxysteroid 3-dehydrogenase (Si-specific)"],["RHEA%3A34779","a 3alpha-hydroxysteroid + NAD(+) = a 3-oxosteroid + NADH + H(+)"],["RHEA%3A34783","a 3alpha-hydroxysteroid + NADP(+) = a 3-oxosteroid + NADPH + H(+)"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"CHEBI:3900","l":"costunolide","na":5,"nb":1,"a":[["EC%3A1.14.14.150","costunolide synthase"],["RHEA%3A56992","6alpha-hydroxygermacra-1(10),4,11(13)-trien-12-oate + H(+) = (+)-costunolide + H2O"],["RHEA%3A61324","(+)-costunolide + reduced [NADPH--hemoprotein reductase] + O2 = 3beta-hydroxycostunolide + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A61320","(+)-costunolide + reduced [NADPH--hemoprotein reductase] + O2 = parthenolide + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A28230","germacra-1(10),4,11(13)-trien-12-oate + reduced [NADPH--hemoprotein reductase] + O2 = (+)-costunolide + oxidized [NADPH--hemoprotein reductase] + 2 H2O"]],"b":[["antiviral/costunolide.html","costunolide"]]},{"id":"CHEBI:3962","l":"curcumin","na":5,"nb":1,"a":[["EC%3A1.3.1.n3","curcumin reductase"],["EC%3A2.3.1.217","curcumin synthase"],["RHEA%3A34819","dihydrocurcumin + NADP(+) = curcumin + NADPH + H(+)"],["RHEA%3A34823","(E)-feruloylacetyl-CoA + (E)-feruloyl-CoA + H2O = curcumin + CO2 + 2 CoA"],["RHEA%3A34815","tetrahydrocurcumin + 2 NADP(+) = curcumin + 2 NADPH + 2 H(+)"]],"b":[["antifungal/curcumin.html","curcumin"]]},{"id":"CHEBI:5100","l":"flucytosine","na":5,"nb":1,"a":[["ARO%3A3007642","Aspergillus spp. fcyB conferring resistance to 5-flucytosine via reduced permeability"],["ARO%3A3007665","Candida spp. FCY2 conferring resistance to 5-flucytosine via reduced permeability"],["ARO%3A3007641","fungal nucleobase transporters"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.39","The Nucleobase:Cation Symporter-1 (NCS1) Family"]],"b":[["antifungal/flucytosine.html","flucytosine"]]},{"id":"CHEBI:58001","l":"","na":5,"nb":1,"a":[["EC%3A1.5.3.25","fructosyl amine oxidase (glucosone-forming)"],["RHEA%3A21916","2 Fe(III)-[cytochrome c550] + an aliphatic amine + H2O = 2 Fe(II)-[cytochrome c550] + an aldehyde + NH4(+) + 2 H(+)"],["RHEA%3A51128","an aliphatic amine + A + H2O = an aldehyde + AH2 + NH4(+)"],["RHEA%3A77795","an (E)-{[(2R,3S,4R,5R)-2,3,4,5-tetrahydroxyoxan-2-yl]methylidene}amine + H2O + H(+) = an aliphatic amine + 2-dehydro-D-glucose"],["RHEA%3A77787","an N-(1-deoxy-beta-D-fructopyranos-1-yl)amine + O2 + H2O = an aliphatic amine + 2-dehydro-D-glucose + H2O2"]],"b":[["unspecified/streptothricin-f-3.html","streptothricin F(3+)"]]},{"id":"CHEBI:62219","l":"2-heptyl-4-quinolone","na":5,"nb":1,"a":[["EC%3A1.14.13.182","2-heptyl-3-hydroxy-4(1H)-quinolone synthase"],["EC%3A2.3.1.230","2-heptyl-4(1H)-quinolone synthase"],["RHEA%3A50408","1-(2-aminophenyl)decane-1,3-dione = 2-heptyl-4(1H)-quinolone + H2O"],["RHEA%3A50396","(2-aminobenzoyl)acetate + octanoyl-CoA + H(+) = 2-heptyl-4(1H)-quinolone + CO2 + CoA + H2O"],["RHEA%3A37871","2-heptyl-4(1H)-quinolone + NADH + O2 + H(+) = 2-heptyl-3-hydroxy-4(1H)-quinolone + NAD(+) + H2O"]],"b":[["antibacterial/2-heptyl-4-quinolone.html","2-heptyl-4-quinolone"]]},{"id":"CHEBI:90888","l":"aurachin C","na":5,"nb":1,"a":[["EC%3A1.14.13.222","aurachin C monooxygenase/isomerase"],["RHEA%3A49000","aurachin C + NADH + O2 + H(+) = 4-hydroxy-2-methyl-3-oxo-4-[(2E,6E)-farnesyl]-3,4-dihydroquinoline 1-oxide + NAD(+) + H2O"],["RHEA%3A49012","aurachin C + NADH + O2 + H(+) = aurachin C epoxide + NAD(+) + H2O"],["RHEA%3A49004","aurachin C + NADPH + O2 + H(+) = 4-hydroxy-2-methyl-3-oxo-4-[(2E,6E)-farnesyl]-3,4-dihydroquinoline 1-oxide + NADP(+) + H2O"],["RHEA%3A49008","aurachin C + NADPH + O2 + H(+) = aurachin C epoxide + NADP(+) + H2O"]],"b":[["antibacterial/aurachin-c.html","aurachin C"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":5,"nb":1,"a":[["TED%3AAF-A0A4Y6CF56-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y6CF56-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6CNZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Y6CNZ1-F1-model_v4_TED02"],["TED%3AAF-A0A7Y4IIX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4IIX4-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6B7F9-F1-model_v4_TED01","TED novel fold AF-A0A4Y6B7F9-F1-model_v4_TED01"],["TED%3AAF-A0A7Y4IR70-F1-model_v4_TED01","TED novel fold AF-A0A7Y4IR70-F1-model_v4_TED01"]],"b":[["antibacterial/althiomycin.html","althiomycin"]]},{"id":"NCBITaxon:43658","l":"Pseudoalteromonas rubra","na":5,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_Orn_monoox","Metallophore-associated ornithine N5-monooxygenase family"],["TED%3AAF-A0A0F4QZE1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0F4QZE1-F1-model_v4_TED02"],["TED%3AAF-A0A0U3GWJ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0U3GWJ2-F1-model_v4_TED01"],["TED%3AAF-A0A0F4QSG0-F1-model_v4_TED02","TED novel fold AF-A0A0F4QSG0-F1-model_v4_TED02"],["TED%3AAF-A0A0L0EPH9-F1-model_v4_TED03","TED novel fold AF-A0A0L0EPH9-F1-model_v4_TED03"]],"b":[["unspecified/prodigiosin.html","prodigiosin"]]},{"id":"UniProt:P03366","l":"","na":5,"nb":1,"a":[["MCSA%3A1000","HIV-1 reverse transcriptase"],["proteintraitsmech%3ABIOLIP_7N1","7N1-binding site"],["proteintraitsmech%3ABIOLIP_VTN","VTN-binding site"],["proteintraitsmech%3ABIOLIP_ZP4","ZP4-binding site"],["proteintraitsmech%3AMETALPDB_Y_DINUCLEAR","dinuclear yttrium site"]],"b":[["antiviral/nevirapine.html","nevirapine"]]},{"id":"ARO:3000245","l":"RbpA","na":1,"nb":4,"a":[["ARO%3A3000245","RbpA"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3000261","l":"sigma factor conferring resistance to rifampin","na":1,"nb":4,"a":[["ARO%3A3000261","sigma factor conferring resistance to rifampin"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3000300","l":"lsaA","na":1,"nb":4,"a":[["ARO%3A3000300","lsaA"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/pleuromutilin.html","pleuromutilin"],["antibacterial/quinupristin.html","quinupristin"]]},{"id":"ARO:3000363","l":"EreB","na":1,"nb":4,"a":[["ARO%3A3000363","EreB"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/roxithromycin.html","roxithromycin"]]},{"id":"ARO:3000421","l":"norB","na":1,"nb":4,"a":[["ARO%3A3000421","norB"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"],["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/sparfloxacin.html","sparfloxacin"]]},{"id":"ARO:3000444","l":"rphA","na":1,"nb":4,"a":[["ARO%3A3000444","rphA"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3000462","l":"mgtA","na":1,"nb":4,"a":[["ARO%3A3000462","mgtA"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/methymycin.html","methymycin"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3000463","l":"gimA","na":1,"nb":4,"a":[["ARO%3A3000463","gimA"]],"b":[["antibacterial/chalcomycin.html","chalcomycin"],["antibacterial/methymycin.html","methymycin"],["antibacterial/oleandomycin.html","oleandomycin"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3000501","l":"rpoB2","na":1,"nb":4,"a":[["ARO%3A3000501","rpoB2"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3000873","l":"TEM-1","na":1,"nb":4,"a":[["ARO%3A3000873","TEM-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefazolin.html","cefazolin"]]},{"id":"ARO:3001328","l":"Escherichia coli mdfA","na":1,"nb":4,"a":[["ARO%3A3001328","Escherichia coli mdfA"]],"b":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/tetracycline.html","tetracycline"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3001396","l":"OXA-1","na":1,"nb":4,"a":[["ARO%3A3001396","OXA-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/piperacillin.html","piperacillin"]]},{"id":"ARO:3001818","l":"ACC-4","na":1,"nb":4,"a":[["ARO%3A3001818","ACC-4"]],"b":[["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/cefuroxime.html","cefuroxime"]]},{"id":"ARO:3002547","l":"","na":1,"nb":4,"a":[["ARO%3A3002547","AAC(6')-Ib-cr1"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002623","l":"","na":1,"nb":4,"a":[["ARO%3A3002623","ANT(4')-Ia"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002634","l":"","na":1,"nb":4,"a":[["ARO%3A3002634","APH(2')-Ie"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002636","l":"","na":1,"nb":4,"a":[["ARO%3A3002636","APH(2')-IIIa"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002637","l":"","na":1,"nb":4,"a":[["ARO%3A3002637","APH(2')-IVa"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002665","l":"npmA","na":1,"nb":4,"a":[["ARO%3A3002665","npmA"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3002667","l":"rmtD","na":1,"nb":4,"a":[["ARO%3A3002667","rmtD"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002668","l":"rmtG","na":1,"nb":4,"a":[["ARO%3A3002668","rmtG"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002669","l":"","na":1,"nb":4,"a":[["ARO%3A3002669","APH(2')-Ig"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002883","l":"rgt1438","na":1,"nb":4,"a":[["ARO%3A3002883","rgt1438"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3002884","l":"iri","na":1,"nb":4,"a":[["ARO%3A3002884","iri"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3002985","l":"arnA","na":4,"nb":1,"a":[["ARO%3A3002985","arnA"],["ARO%3A3005053","ArnT"],["ARO%3A3003578","PmrF"],["ARO%3A3003577","ugd"]],"b":[["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3003001","l":"CfxA","na":1,"nb":4,"a":[["ARO%3A3003001","CfxA"]],"b":[["antibacterial/cefmetazole.html","cefmetazole"],["antibacterial/cefotetan.html","cefotetan"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/flomoxef.html","flomoxef"]]},{"id":"ARO:3003029","l":"MexVW-OprM","na":1,"nb":4,"a":[["ARO%3A3003029","MexVW-OprM"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/tetracycline.html","tetracycline"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3003198","l":"rmtH","na":1,"nb":4,"a":[["ARO%3A3003198","rmtH"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/arbekacin.html","arbekacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3003223","l":"Escherichia coli 16S rRNA mutation conferring resistance to edeine","na":1,"nb":4,"a":[["ARO%3A3003223","Escherichia coli 16S rRNA mutation conferring resistance to edeine"]],"b":[["antibacterial/edeine-a.html","edeine A"],["antibacterial/edeine-b.html","edeine B"],["antibacterial/edeine-d.html","edeine D"],["antibacterial/edeine-f.html","edeine F"]]},{"id":"ARO:3003272","l":"daptomycin resistant cls","na":4,"nb":1,"a":[["ARO%3A3003272","daptomycin resistant cls"],["ARO%3A3003760","Enterococcus faecalis cls with mutation conferring resistance to daptomycin"],["ARO%3A3003092","Enterococcus faecium cls conferring resistance to daptomycin"],["ARO%3A3003074","Staphylococcus aureus cls conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003283","l":"Mycobacterium tuberculosis rpoB with mutations conferring resistance to rifampicin","na":1,"nb":4,"a":[["ARO%3A3003283","Mycobacterium tuberculosis rpoB with mutations conferring resistance to rifampicin"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3003284","l":"Mycobacterium leprae rpoB mutations conferring resistance to rifampicin","na":1,"nb":4,"a":[["ARO%3A3003284","Mycobacterium leprae rpoB mutations conferring resistance to rifampicin"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3003285","l":"Staphylococcus aureus rpoB mutants conferring resistance to rifampicin","na":1,"nb":4,"a":[["ARO%3A3003285","Staphylococcus aureus rpoB mutants conferring resistance to rifampicin"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3003288","l":"Escherichia coli rpoB mutants conferring resistance to rifampicin","na":1,"nb":4,"a":[["ARO%3A3003288","Escherichia coli rpoB mutants conferring resistance to rifampicin"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3003395","l":"Mycobacterium tuberculosis rpsL mutations conferring resistance to Streptomycin","na":4,"nb":1,"a":[["ARO%3A3003419","antibiotic-resistant rpsL"],["ARO%3A3003395","Mycobacterium tuberculosis rpsL mutations conferring resistance to Streptomycin"],["ARO%3A3005082","Ribosomal protein mutation conferring resistance to pleuromutilin antibiotics"],["ARO%3A3005081","Thermus thermophilus uL3 mutations conferring resistance to pleuromutilin antibiotics"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003686","l":"Pseudomonas aeruginosa oprD with mutation conferring resistance to imipenem","na":4,"nb":1,"a":[["ARO%3A3005068","ParR"],["ARO%3A3005066","parRS"],["ARO%3A3005067","ParS"],["ARO%3A3003686","Pseudomonas aeruginosa oprD with mutation conferring resistance to imipenem"]],"b":[["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3003746","l":"optrA","na":1,"nb":4,"a":[["ARO%3A3003746","optrA"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"],["antibacterial/linezolid.html","linezolid"],["antibacterial/tedizolid.html","tedizolid"]]},{"id":"ARO:3003905","l":"","na":1,"nb":4,"a":[["ARO%3A3003905","ANT(4')-Ib"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/dibekacin.html","dibekacin"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3003921","l":"oqxAB","na":1,"nb":4,"a":[["ARO%3A3003921","oqxAB"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nitrofurantoin.html","nitrofurantoin"],["antibacterial/tigecycline.html","tigecycline"],["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003942","l":"abcA","na":1,"nb":4,"a":[["ARO%3A3003942","abcA"]],"b":[["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/methicillin.html","methicillin"],["antibacterial/moenomycin-a1.html","moenomycin A1"]]},{"id":"ARO:3003965","l":"hp1184","na":1,"nb":4,"a":[["ARO%3A3003965","hp1184"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/metronidazole.html","metronidazole"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003992","l":"rphB","na":1,"nb":4,"a":[["ARO%3A3003992","rphB"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3004030","l":"RosAB","na":1,"nb":4,"a":[["ARO%3A3004030","RosAB"]],"b":[["antibacterial/polymyxin-b1.html","polymyxin B1"],["antibacterial/polymyxin-b2.html","polymyxin B2"],["antibacterial/polymyxin-b3.html","polymyxin B3"],["antibacterial/polymyxin-b4.html","polymyxin B4"]]},{"id":"ARO:3004123","l":"Burkholderia pseudomallei Omp38","na":1,"nb":4,"a":[["ARO%3A3004123","Burkholderia pseudomallei Omp38"]],"b":[["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3004126","l":"Escherichia coli LamB","na":1,"nb":4,"a":[["ARO%3A3004126","Escherichia coli LamB"]],"b":[["antibacterial/balofloxacin.html","Balofloxacin"],["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3004181","l":"Streptococcus pneumoniae 23S rRNA mutation conferring resistance to macrolides and streptogramins antibiotics","na":1,"nb":4,"a":[["ARO%3A3004181","Streptococcus pneumoniae 23S rRNA mutation conferring resistance to macrolides and streptogramins antibiotics"]],"b":[["antibacterial/josamycin.html","josamycin"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"],["antibacterial/tylosin.html","tylosin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3004359","l":"ACI-1","na":1,"nb":4,"a":[["ARO%3A3004359","ACI-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3004562","l":"Clostridioides difficile gyrB conferring resistance to fluoroquinolones","na":1,"nb":4,"a":[["ARO%3A3004562","Clostridioides difficile gyrB conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/gemifloxacin.html","gemifloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3004599","l":"clcD","na":1,"nb":4,"a":[["ARO%3A3004599","clcD"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/florfenicol.html","florfenicol"],["antibacterial/linezolid.html","linezolid"],["antibacterial/tiamulin.html","tiamulin"]]},{"id":"ARO:3004606","l":"erm(40)","na":1,"nb":4,"a":[["ARO%3A3004606","erm(40)"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3004667","l":"Staphylococcus aureus norA","na":1,"nb":4,"a":[["ARO%3A3004667","Staphylococcus aureus norA"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enoxacin.html","enoxacin"],["antibacterial/norfloxacin.html","norfloxacin"],["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3005059","l":"LptD","na":1,"nb":4,"a":[["ARO%3A3005059","LptD"]],"b":[["antibacterial/imipenem.html","imipenem"],["antibacterial/novobiocin.html","novobiocin"],["antibacterial/polymyxin-b2.html","polymyxin B2"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3005112","l":"","na":1,"nb":4,"a":[["ARO%3A3005112","AAC(6')-Ib-cr3"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005114","l":"","na":1,"nb":4,"a":[["ARO%3A3005114","AAC(6')-Ib-cr4"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005115","l":"","na":1,"nb":4,"a":[["ARO%3A3005115","AAC(6')-Ib-cr5"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005116","l":"","na":1,"nb":4,"a":[["ARO%3A3005116","AAC(6')-Ib-cr6"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005117","l":"","na":1,"nb":4,"a":[["ARO%3A3005117","AAC(6')-Ib-cr7"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005118","l":"","na":1,"nb":4,"a":[["ARO%3A3005118","AAC(6')-Ib-cr8"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005119","l":"","na":1,"nb":4,"a":[["ARO%3A3005119","AAC(6')-Ib-cr9"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005121","l":"lsaD","na":1,"nb":4,"a":[["ARO%3A3005121","lsaD"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3007028","l":"salD","na":1,"nb":4,"a":[["ARO%3A3007028","salD"]],"b":[["antibacterial/lincomycin.html","lincomycin"],["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3007206","l":"KBL-1","na":1,"nb":4,"a":[["ARO%3A3007206","KBL-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/benzylpenicillin.html","benzylpenicillin"],["antibacterial/piperacillin.html","piperacillin"]]},{"id":"ARO:3007442","l":"SSA","na":1,"nb":4,"a":[["ARO%3A3007442","SSA"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007456","l":"dfrL","na":1,"nb":4,"a":[["ARO%3A3007456","dfrL"]],"b":[["antibacterial/streptomycin.html","streptomycin"],["antibacterial/tetracycline.html","tetracycline"],["antibacterial/tobramycin.html","tobramycin"],["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3007645","l":"Clostridium sporogenes cplR","na":1,"nb":4,"a":[["ARO%3A3007645","Clostridium sporogenes cplR"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/hygromycin-a.html","hygromycin A"],["antibacterial/iboxamycin.html","iboxamycin"],["antibacterial/retapamulin.html","retapamulin"]]},{"id":"ARO:3007650","l":"CDA-1","na":1,"nb":4,"a":[["ARO%3A3007650","CDA-1"]],"b":[["antibacterial/cefaloridine.html","cefaloridine"],["antibacterial/cefalotin.html","cefalotin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3007670","l":"Aspergillus spp. Hmg1 with mutations conferring resistance to triazoles antibiotics","na":1,"nb":4,"a":[["ARO%3A3007670","Aspergillus spp. Hmg1 with mutations conferring resistance to triazoles antibiotics"]],"b":[["antifungal/isavuconazole.html","isavuconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"ARO:3007770","l":"","na":1,"nb":4,"a":[["ARO%3A3007770","aac(6')-Ib-cr10"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3007771","l":"","na":1,"nb":4,"a":[["ARO%3A3007771","aac(6')-Ib-cr11"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"CHEBI:140434","l":"3-[(Z)-2-isocyanovinyl]indole","na":4,"nb":1,"a":[["EC%3A1.14.20.11","3-[(Z)-2-isocyanoethenyl]-1H-indole synthase"],["EC%3A2.5.1.146","3-geranyl-3-[(Z)-2-isocyanoethenyl]indole synthase"],["RHEA%3A56700","(2S)-3-(1H-indol-3-yl)-2-isocyanopropanoate + 2-oxoglutarate + O2 + H(+) = 3-[(Z)-2-isocyanoethenyl]-1H-indole + succinate + 2 CO2 + H2O"],["RHEA%3A17349","3-[(Z)-2-isocyanoethenyl]-1H-indole + (2E)-geranyl diphosphate = 3-geranyl-3-[(Z)-2-isocyanoethenyl]-1H-indole + diphosphate"]],"b":[["antibacterial/3-z-2-isocyanovinyl-indole.html","3-[(Z)-2-isocyanovinyl]indole"]]},{"id":"CHEBI:140662","l":"2,4-diacetylphloroglucinol(1−)","na":4,"nb":1,"a":[["EC%3A2.3.1.272","2-acetylphloroglucinol acetyltransferase"],["EC%3A3.7.1.24","2,4-diacetylphloroglucinol hydrolase"],["RHEA%3A48236","2 2-acetylphloroglucinol = 2,4-diacetylphloroglucinol + 1,3,5-trihydroxybenzene + H(+)"],["RHEA%3A59184","2,4-diacetylphloroglucinol + H2O = 2-acetylphloroglucinol + acetate"]],"b":[["antifungal/2-4-diacetylphloroglucinol-1.html","2,4-diacetylphloroglucinol(1−)"]]},{"id":"CHEBI:16786","l":"vestitone","na":4,"nb":1,"a":[["EC%3A1.1.1.348","(3R)-2'-hydroxyisoflavanone reductase"],["EC%3A1.3.1.45","2'-hydroxyisoflavone reductase"],["RHEA%3A35403","(3R,4R)-7,2'-dihydroxy-4'-methoxyisoflavanol + NADP(+) = (3R)-vestitone + NADPH + H(+)"],["RHEA%3A22560","(3R)-vestitone + NADP(+) = 2'-hydroxyformononetin + NADPH + 2 H(+)"]],"b":[["antibacterial/vestitone.html","vestitone"]]},{"id":"CHEBI:17302","l":"pentadecanal","na":4,"nb":1,"a":[["EC%3A1.11.1.3","fatty-acid peroxidase"],["RHEA%3A68480","(2R)-2-hydroperoxyhexadecanoate + H(+) = pentadecanal + CO2 + H2O"],["RHEA%3A55212","(2R)-hydroxyhexadecanoyl-CoA = pentadecanal + formyl-CoA"],["RHEA%3A23960","hexadecanoate + 2 H2O2 + H(+) = pentadecanal + CO2 + 3 H2O"]],"b":[["unspecified/pentadecanal.html","pentadecanal"]]},{"id":"CHEBI:192702","l":"ladanein","na":4,"nb":1,"a":[["RHEA%3A73435","apigenin 4',7-dimethyl ether + reduced [NADPH--hemoprotein reductase] + O2 = ladanein + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A73247","ladanein + S-adenosyl-L-methionine = salvigenin + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A73111","scutellarein 4'-methyl ether + S-adenosyl-L-methionine = ladanein + S-adenosyl-L-homocysteine"],["RHEA%3A73239","scutellarein 7-methyl ether + S-adenosyl-L-methionine = ladanein + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antiviral/ladanein.html","ladanein"]]},{"id":"CHEBI:24043","l":"","na":4,"nb":1,"a":[["EC%3A1.14.19.76","flavone synthase II"],["EC%3A1.14.20.5","flavone synthase I"],["RHEA%3A10448","a flavanone + 2-oxoglutarate + O2 = a flavone + succinate + CO2 + H2O"],["RHEA%3A57680","a flavanone + reduced [NADPH--hemoprotein reductase] + O2 = a flavone + oxidized [NADPH--hemoprotein reductase] + 2 H2O + H(+)"]],"b":[["antibacterial/flavocillin.html","flavocillin"]]},{"id":"CHEBI:2448","l":"actinorhodin","na":4,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["proteintraitsmech%3ABIOLIP_ZCT","ZCT-binding site"]],"b":[["unspecified/actinorhodin.html","actinorhodin"]]},{"id":"CHEBI:25675","l":"","na":1,"nb":4,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/oligomycin-a.html","oligomycin A"],["antifungal/oligomycin-d.html","oligomycin D"],["unspecified/oligomycin-b.html","oligomycin B"],["unspecified/oligomycin-c.html","oligomycin C"]]},{"id":"CHEBI:26580","l":"","na":1,"nb":4,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifamycin-sv.html","rifamycin SV"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"CHEBI:27659","l":"","na":4,"nb":1,"a":[["EC%3A1.2.1.23","2-oxoaldehyde dehydrogenase (NAD(+))"],["EC%3A1.2.1.49","2-oxoaldehyde dehydrogenase (NADP(+))"],["RHEA%3A22276","2-oxoaldehyde + NAD(+) + H2O = a 2-oxocarboxylate + NADH + 2 H(+)"],["RHEA%3A18129","2-oxoaldehyde + NADP(+) + H2O = a 2-oxocarboxylate + NADPH + 2 H(+)"]],"b":[["antibacterial/4-hydroxy-2-oxobutanal.html","4-hydroxy-2-oxobutanal"]]},{"id":"CHEBI:27856","l":"","na":4,"nb":1,"a":[["EC%3A3.5.1.4","amidase"],["RHEA%3A85603","acetamide = acetonitrile + H2O"],["RHEA%3A45048","acetamide + H2O = acetate + NH4(+)"],["RHEA%3A51648","N(6)-acetyl-L-lysyl-[protein] + O2 + H2O = acetamide + (S)-2-amino-6-oxohexanoyl-[protein] + H2O2"]],"b":[["unspecified/acetylblasticidin-s.html","acetylblasticidin S"]]},{"id":"CHEBI:28327","l":"naringenin 7-O-β-D-glucoside","na":4,"nb":1,"a":[["EC%3A2.4.1.185","flavanone 7-O-beta-glucosyltransferase"],["RHEA%3A69671","(2S)-naringenin 7-O-beta-D-glucoside + H2O = (2S)-naringenin + beta-D-glucose"],["RHEA%3A67356","(2S)-naringenin 7-O-beta-D-glucoside + malonyl-CoA = (2S)-naringenin 7-O-(6-O-malonyl-beta-D-glucoside) + CoA"],["RHEA%3A65152","(2S)-naringenin + UDP-alpha-D-glucose = (2S)-naringenin 7-O-beta-D-glucoside + UDP + H(+)"]],"b":[["antibacterial/naringenin-7-o-%CE%B2-d-glucoside.html","naringenin 7-O-β-D-glucoside"]]},{"id":"CHEBI:28913","l":"(2E)-hexenal","na":4,"nb":1,"a":[["RHEA%3A60988","(E)-hex-2-en-1-ol + NAD(+) = (E)-hex-2-enal + NADH + H(+)"],["RHEA%3A58424","(E)-hex-2-en-1-ol + NADP(+) = (E)-hex-2-enal + NADPH + H(+)"],["RHEA%3A77419","(E)-hex-2-enal + hydrogen cyanide = (2S,3E)-2-hydroxyhept-3-enenitrile"],["RHEA%3A50776","hexanal + NADP(+) = (E)-hex-2-enal + NADPH + H(+)"]],"b":[["antibacterial/2e-hexenal.html","(2E)-hexenal"]]},{"id":"CHEBI:28927","l":"sakuranetin","na":4,"nb":1,"a":[["EC%3A2.1.1.232","naringenin 7-O-methyltransferase"],["RHEA%3A31539","(2S)-naringenin + S-adenosyl-L-methionine = (2S)-sakuranetin + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A73431","(2S)-sakuranetin + reduced [NADPH--hemoprotein reductase] + O2 = (2S)-7-methylcarthamidin + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A73255","(2S)-sakuranetin + S-adenosyl-L-methionine = (2S)-naringenin 4',7-dimethyl ether + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antimycobacterial/sakuranetin.html","sakuranetin"]]},{"id":"CHEBI:31144","l":"8-demethyltetracenomycin C","na":4,"nb":1,"a":[["EC%3A1.14.13.200","tetracenomycin A2 monooxygenase-diooxygenase"],["EC%3A2.4.1.331","8-demethyltetracenomycin C L-rhamnosyltransferase"],["RHEA%3A42848","8-demethyltetracenomycin C + dTDP-beta-L-rhamnose = 8-demethyl-8-alpha-L-rhamnosyl-tetracenomycin C + dTDP + H(+)"],["RHEA%3A76467","tetracenomycin B2 + 2 NADPH + 2 O2 + 2 H(+) = 8-demethyltetracenomycin C + 2 NADP(+) + H2O"]],"b":[["unspecified/8-demethyltetracenomycin-c.html","8-demethyltetracenomycin C"]]},{"id":"CHEBI:33859","l":"","na":1,"nb":4,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/oxolinic-acid.html","oxolinic acid"],["antifungal/1-2-3-benzothiadiazole-7-carboxylic-acid.html","1,2,3-benzothiadiazole-7-carboxylic acid"],["antifungal/phenazine-1-carboxylic-acid.html","phenazine-1-carboxylic acid"],["antifungal/piperonylic-acid.html","piperonylic acid"]]},{"id":"CHEBI:34848","l":"mevastatin","na":4,"nb":1,"a":[["RHEA%3A51668","mevastatin + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = pravastatin lactone + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"],["RHEA%3A62744","mevastatin + H2O = compactin diol lactone + (S)-2-methylbutanoate + H(+)"],["RHEA%3A63044","mevastatin + H2O = mevinic carboxylate + H(+)"],["proteintraitsmech%3ABIOLIP_2UO","2UO-binding site"]],"b":[["antifungal/mevastatin.html","mevastatin"]]},{"id":"CHEBI:3508","l":"ceftazidime","na":4,"nb":1,"a":[["TCDB%3A8.A.213","The Bon Domain-containing Protein (Bon DP) Family"],["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["TCDB%3A2.C.1","The TonB-ExbB-ExbD/TolA-TolQ-TolR Outer Membrane Receptor Energizers and Stabilizers (TonB/TolA) Family"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"CHEBI:45744","l":"N-acetyl-β-neuraminic acid","na":4,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.21","The Solute:Sodium Symporter (SSS) Family"],["TCDB%3A2.A.56","The Tripartite ATP-independent Periplasmic Transporter (TRAP-T) Family"],["proteintraitsmech%3ABIOLIP_SLB","SLB-binding site"]],"b":[["antiviral/n-acetyl-%CE%B2-neuraminic-acid.html","N-acetyl-β-neuraminic acid"]]},{"id":"CHEBI:46081","l":"fluconazole","na":4,"nb":1,"a":[["RHEA%3A61916","fluconazole(in) + ATP + H2O = fluconazole(out) + ADP + phosphate + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_TPF","TPF-binding site"]],"b":[["antifungal/fluconazole.html","fluconazole"]]},{"id":"CHEBI:46634","l":"","na":1,"nb":4,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/1-carbapenem-3-carboxylic-acid.html","1-carbapenem-3-carboxylic acid"],["antibacterial/carbapenem-mm22383.html","carbapenem MM22383"],["antibacterial/ertapenem.html","ertapenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"CHEBI:50477","l":"","na":1,"nb":4,"a":[["RHEA%3A47348","a butanoate ester + H2O = an aliphatic alcohol + butanoate + H(+)"]],"b":[["antibacterial/caminoside-a.html","caminoside A"],["antimycobacterial/caseargrewiin-b.html","caseargrewiin B"],["antiviral/clathsterol-disulfonic-acid.html","clathsterol disulfonic acid"],["antiviral/clathsterol.html","clathsterol"]]},{"id":"CHEBI:51460","l":"albaflavenone","na":4,"nb":1,"a":[["EC%3A1.14.15.39","epi-isozizaene 5-monooxygenase"],["RHEA%3A25988","(5R)-albaflavenol + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = albaflavenone + 2 oxidized [2Fe-2S]-[ferredoxin] + 2 H2O"],["RHEA%3A25980","(5S)-albaflavenol + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = albaflavenone + 2 oxidized [2Fe-2S]-[ferredoxin] + 2 H2O"],["RHEA%3A32439","(+)-epi-isozizaene + 4 reduced [2Fe-2S]-[ferredoxin] + 2 O2 + 4 H(+) = albaflavenone + 4 oxidized [2Fe-2S]-[ferredoxin] + 3 H2O"]],"b":[["unspecified/albaflavenone.html","albaflavenone"]]},{"id":"CHEBI:5169","l":"fraxetin","na":4,"nb":1,"a":[["EC%3A1.14.11.60","scopoletin 8-hydroxylase"],["EC%3A1.14.14.164","fraxetin 5-hydroxylase"],["RHEA%3A57844","fraxetin + reduced [NADPH--hemoprotein reductase] + O2 = sideretin (reduced form) + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A57848","scopoletin + 2-oxoglutarate + O2 = fraxetin + succinate + CO2"]],"b":[["antibacterial/fraxetin.html","fraxetin"]]},{"id":"CHEBI:55429","l":"cephamycin","na":1,"nb":4,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/cefminox.html","cefminox"],["antibacterial/cefotetan.html","cefotetan"],["antibacterial/cefoxitin.html","cefoxitin"],["unspecified/cephamycin-c.html","cephamycin C"]]},{"id":"CHEBI:66331","l":"xanthohumol","na":4,"nb":1,"a":[["EC%3A2.1.1.338","desmethylxanthohumol 6'-O-methyltransferase"],["EC%3A2.1.1.339","xanthohumol 4-O-methyltransferase"],["RHEA%3A51696","desmethylxanthohumol + S-adenosyl-L-methionine = xanthohumol + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A51704","xanthohumol + S-adenosyl-L-methionine = 4-O-methylxanthohumol + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antiviral/xanthohumol.html","xanthohumol"]]},{"id":"CHEBI:67246","l":"(+)-lariciresinol","na":4,"nb":1,"a":[["EC%3A1.23.1.1","(+)-pinoresinol reductase"],["EC%3A1.23.1.2","(+)-lariciresinol reductase"],["RHEA%3A34419","(+)-lariciresinol + NADP(+) = (+)-pinoresinol + NADPH + H(+)"],["RHEA%3A34423","(-)-secoisolariciresinol + NADP(+) = (+)-lariciresinol + NADPH + H(+)"]],"b":[["antifungal/lariciresinol.html","(+)-lariciresinol"]]},{"id":"CHEBI:69023","l":"preaustinoid A","na":4,"nb":1,"a":[["RHEA%3A65144","berkeleyone A + 2-oxoglutarate + O2 = preaustinoid A + succinate + CO2 + H2O"],["RHEA%3A65192","preaustinoid A + 2 2-oxoglutarate + 2 O2 = berkeleytrione + 2 succinate + 2 CO2 + H2O"],["RHEA%3A65168","preaustinoid A + AH2 + O2 = preaustinoid A1 + A + H2O"],["RHEA%3A65180","protoaustinoid B + AH2 + O2 = preaustinoid A + A + H2O"]],"b":[["antibacterial/preaustinoid-a.html","preaustinoid A"]]},{"id":"CHEBI:71311","l":"pyrazine-2-carboxylic acid","na":4,"nb":1,"a":[["ARO%3A3004267","antibiotic resistant pncA"],["ARO%3A3004721","Mycobacterium tuberculosis rpsA mutations conferring resistance to pyrazinamide"],["ARO%3A3004722","pyrazinamide resistant rpsA"],["proteintraitsmech%3ABIOLIP_VGL","VGL-binding site"]],"b":[["antimycobacterial/pyrazine-2-carboxylic-acid.html","pyrazine-2-carboxylic acid"]]},{"id":"CHEBI:74023","l":"dioscin","na":4,"nb":1,"a":[["EC%3A3.2.1.189","dioscin glycosidase (diosgenin-forming)"],["EC%3A3.2.1.190","dioscin glycosidase (3-O-beta-D-Glc-diosgenin-forming)"],["RHEA%3A38939","dioscin + 2 H2O = diosgenin 3-O-beta-D-glucoside + 2 L-rhamnopyranose"],["RHEA%3A36827","dioscin + 3 H2O = diosgenin + 2 L-rhamnopyranose + D-glucose"]],"b":[["antifungal/dioscin.html","dioscin"]]},{"id":"CHEBI:77980","l":"aclacinomycin A zwitterion","na":4,"nb":1,"a":[["EC%3A1.1.3.45","aclacinomycin-N oxidase"],["EC%3A1.3.3.14","aclacinomycin-A oxidase"],["RHEA%3A37791","aclacinomycin A + O2 = aclacinomycin Y + H2O2"],["RHEA%3A37423","aclacinomycin N + O2 = aclacinomycin A + H2O2"]],"b":[["unspecified/aclacinomycin-a-zwitterion.html","aclacinomycin A zwitterion"]]},{"id":"CHEBI:78283","l":"8-demethyl-8-(α-L-rhamnosyl)tetracenomycin C","na":4,"nb":1,"a":[["EC%3A2.1.1.305","8-demethyl-8-alpha-L-rhamnosyl tetracenomycin-C 2'-O-methyltransferase"],["EC%3A2.4.1.331","8-demethyltetracenomycin C L-rhamnosyltransferase"],["RHEA%3A41540","8-demethyl-8-alpha-L-rhamnosyl-tetracenomycin C + S-adenosyl-L-methionine = 8-demethyl-8-(2-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A42848","8-demethyltetracenomycin C + dTDP-beta-L-rhamnose = 8-demethyl-8-alpha-L-rhamnosyl-tetracenomycin C + dTDP + H(+)"]],"b":[["unspecified/8-demethyl-8-%CE%B1-l-rhamnosyl-tetracenomycin-c.html","8-demethyl-8-(α-L-rhamnosyl)tetracenomycin C"]]},{"id":"CHEBI:78285","l":"8-demethyl-8-(2-O-methyl-α-L-rhamnosyl)tetracenomycin C","na":4,"nb":1,"a":[["EC%3A2.1.1.305","8-demethyl-8-alpha-L-rhamnosyl tetracenomycin-C 2'-O-methyltransferase"],["EC%3A2.1.1.306","8-demethyl-8-(2-methoxy-alpha-L-rhamnosyl)-tetracenomycin-C 3'-O- methyltransferase"],["RHEA%3A41544","8-demethyl-8-(2-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-methionine = 8-demethyl-8-(2,3-di-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A41540","8-demethyl-8-alpha-L-rhamnosyl-tetracenomycin C + S-adenosyl-L-methionine = 8-demethyl-8-(2-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-homocysteine + H(+)"]],"b":[["unspecified/8-demethyl-8-2-o-methyl-%CE%B1-l-rhamnosyl-tetracenomycin-c.html","8-demethyl-8-(2-O-methyl-α-L-rhamnosyl)tetracenomycin C"]]},{"id":"CHEBI:78286","l":"8-demethyl-8-(2,3-O-dimethyl-α-L-rhamnosyl)tetracenomycin C","na":4,"nb":1,"a":[["EC%3A2.1.1.306","8-demethyl-8-(2-methoxy-alpha-L-rhamnosyl)-tetracenomycin-C 3'-O- methyltransferase"],["EC%3A2.1.1.307","8-demethyl-8-(2,3-dimethoxy-alpha-L-rhamnosyl)-tetracenomycin-C 4'-O- methyltransferase"],["RHEA%3A41548","8-demethyl-8-(2,3-di-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-methionine = 8-demethyl-8-(2,3,4-tri-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A41544","8-demethyl-8-(2-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-methionine = 8-demethyl-8-(2,3-di-O-methyl-alpha-L-rhamnosyl)-tetracenomycin C + S-adenosyl-L-homocysteine + H(+)"]],"b":[["unspecified/8-demethyl-8-2-3-o-dimethyl-%CE%B1-l-rhamnosyl-tetracenomycin-c.html","8-demethyl-8-(2,3-O-dimethyl-α-L-rhamnosyl)tetracenomycin C"]]},{"id":"CHEBI:84310","l":"anticapsin zwitterion","na":4,"nb":1,"a":[["EC%3A1.1.1.385","dihydroanticapsin 7-dehydrogenase"],["EC%3A6.3.2.49","L-alanine--L-anticapsin ligase"],["RHEA%3A44332","L-anticapsin + L-alanine + ATP = bacilysin + ADP + phosphate + H(+)"],["RHEA%3A44628","L-dihydroanticapsin + NAD(+) = L-anticapsin + NADH + H(+)"]],"b":[["unspecified/anticapsin-zwitterion.html","anticapsin zwitterion"]]},{"id":"CHEBI:90869","l":"validamycin A(1+)","na":4,"nb":1,"a":[["EC%3A1.14.11.52","validamycin A dioxygenase"],["EC%3A2.4.1.338","validoxylamine A glucosyltransferase"],["RHEA%3A48752","validamycin A + 2-oxoglutarate + O2 = validamycin B + succinate + CO2 + H(+)"],["RHEA%3A49388","validoxylamine A + UDP-alpha-D-glucose = validamycin A + UDP + H(+)"]],"b":[["antifungal/validamycin-a-1.html","validamycin A(1+)"]]},{"id":"CHEBI:9555","l":"tioguanine","na":4,"nb":1,"a":[["EC%3A2.1.1.67","thiopurine S-methyltransferase"],["RHEA%3A56580","6-thioguanine + S-adenosyl-L-methionine = 6-methylthioguanine + S-adenosyl-L-homocysteine + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.40","The Nucleobase/Ascorbate Transporter (NAT) or Nucleobase:Cation Symporter-2 (NCS2) Family"]],"b":[["antiviral/tioguanine.html","tioguanine"]]},{"id":"NCBITaxon:11676","l":"Human immunodeficiency virus 1","na":1,"nb":4,"a":[["IDPO%3A0000039","acetylation display site"]],"b":[["antiviral/delavirdine.html","delavirdine"],["antiviral/emivirine.html","emivirine"],["antiviral/etravirine.html","etravirine"],["antiviral/nevirapine.html","nevirapine"]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":4,"nb":1,"a":[["Pfam%3APF16861","Carbamoyltransferase C-terminus"],["Pfam%3APF02543","Carbamoyltransferase N-terminus"],["Pfam%3APF01960","ArgJ family"],["Pfam%3APF07467","Beta-lactamase inhibitor (BLIP)"]],"b":[["antibacterial/clavulanic-acid.html","clavulanic acid"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":4,"nb":1,"a":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"],["TED%3AAF-A0A085UKV7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085UKV7-F1-model_v4_TED01"],["TED%3AAF-A0A4R6IU28-F1-model_v4_TED02","TED novel fold AF-A0A4R6IU28-F1-model_v4_TED02"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"NCBITaxon:40559","l":"Botrytis cinerea","na":1,"nb":4,"a":[["Pfam%3APF08883","Dopa 4,5-dioxygenase family"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"],["antifungal/fludioxonil.html","fludioxonil"],["antifungal/iprodione.html","iprodione"],["antifungal/pyrisoxazole.html","pyrisoxazole"]]},{"id":"NCBITaxon:405948","l":"Saccharopolyspora erythraea NRRL 2338","na":1,"nb":4,"a":[["Pfam%3APF21036","Erythromycin biosynthesis protein CIII-like, N-terminal domain"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["unspecified/erythromycin-b.html","erythromycin B"],["unspecified/erythromycin-c.html","erythromycin C"],["unspecified/erythromycin-d.html","erythromycin D"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":4,"nb":1,"a":[["Pfam%3APF11720","Peptidase inhibitor I78 family"],["Pfam%3APF12296","Hydrophobic surface binding protein A"],["TED%3AAF-A0A3M7JGA1-F1-model_v4_TED02","TED novel fold AF-A0A3M7JGA1-F1-model_v4_TED02"],["TED%3AAF-A0A7G5JNS3-F1-model_v4_TED03","TED novel fold AF-A0A7G5JNS3-F1-model_v4_TED03"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:5076","l":"Penicillium chrysogenum","na":4,"nb":1,"a":[["Pfam%3APF03417","Acyl-coenzyme A:6-aminopenicillanic acid acyl-transferase"],["Pfam%3APF11402","Antifungal protein"],["PROSITE%3APS00185","Isopenicillin N synthase signature 1"],["PROSITE%3APS00186","Isopenicillin N synthase signature 2"]],"b":[["unspecified/isopenicillin-n.html","isopenicillin N"]]},{"id":"NCBITaxon:5270","l":"Mycosarcoma maydis","na":4,"nb":1,"a":[["Pfam%3APF17445","Mating factor A1"],["Pfam%3APF24563","Mug60/KHD4 KH type I domain"],["Pfam%3APF01185","Fungal hydrophobin"],["Pfam%3APF07460","NUMOD3 motif"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"UniProt:P38637","l":"","na":4,"nb":1,"a":[["GO%3A0031144","proteasome localization"],["Pfam%3APF08559","Cut8, nuclear proteasome tether protein"],["InterPro%3AIPR038422","Cut8/Sts1 superfamily"],["CATH%3A1.20.58.1590","Tethering factor for nuclear proteasome Cut8/Sts1"]],"b":[["antifungal/cycloheximide.html","cycloheximide"]]},{"id":"ARO:3000235","l":"ethambutol resistant embB","na":3,"nb":1,"a":[["ARO%3A3000235","ethambutol resistant embB"],["ARO%3A3003326","Mycobacterium tuberculosis embB mutant conferring resistance to ethambutol"],["ARO%3A3003325","Mycobacterium tuberculosis variant bovis embB with mutation conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3000361","l":"EreA","na":1,"nb":3,"a":[["ARO%3A3000361","EreA"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/roxithromycin.html","roxithromycin"]]},{"id":"ARO:3000373","l":"EmrKY-TolC","na":3,"nb":1,"a":[["ARO%3A3000373","EmrKY-TolC"],["ARO%3A3000832","evgA"],["ARO%3A3000515","evgSA"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000467","l":"NDM-5","na":1,"nb":3,"a":[["ARO%3A3000467","NDM-5"]],"b":[["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ertapenem.html","ertapenem"]]},{"id":"ARO:3000589","l":"NDM-1","na":1,"nb":3,"a":[["ARO%3A3000589","NDM-1"]],"b":[["antibacterial/ertapenem.html","ertapenem"],["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3000598","l":"Erm(31)","na":1,"nb":3,"a":[["ARO%3A3000598","Erm(31)"]],"b":[["antibacterial/methymycin.html","methymycin"],["antibacterial/narbomycin.html","narbomycin"],["antibacterial/pikromycin.html","pikromycin"]]},{"id":"ARO:3000843","l":"MUS-1","na":1,"nb":3,"a":[["ARO%3A3000843","MUS-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/piperacillin.html","piperacillin"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3000844","l":"TUS-1","na":1,"nb":3,"a":[["ARO%3A3000844","TUS-1"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/piperacillin.html","piperacillin"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3000900","l":"TEM-30","na":1,"nb":3,"a":[["ARO%3A3000900","TEM-30"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"]]},{"id":"ARO:3000930","l":"TEM-61","na":1,"nb":3,"a":[["ARO%3A3000930","TEM-61"]],"b":[["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001071","l":"SHV-12","na":1,"nb":3,"a":[["ARO%3A3001071","SHV-12"]],"b":[["antibacterial/cefalotin.html","cefalotin"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3001205","l":"BRP(MBL)","na":1,"nb":3,"a":[["ARO%3A3001205","BRP(MBL)"]],"b":[["antibacterial/bleomycin-a2.html","bleomycin A2"],["antibacterial/bleomycin-b2.html","bleomycin B2"],["antibacterial/bleomycinic-acid.html","bleomycinic acid"]]},{"id":"ARO:3001265","l":"Erm(30)","na":1,"nb":3,"a":[["ARO%3A3001265","Erm(30)"]],"b":[["antibacterial/methymycin.html","methymycin"],["antibacterial/narbomycin.html","narbomycin"],["antibacterial/pikromycin.html","pikromycin"]]},{"id":"ARO:3001302","l":"chrB","na":1,"nb":3,"a":[["ARO%3A3001302","chrB"]],"b":[["antibacterial/chalcomycin.html","chalcomycin"],["antibacterial/mycinamicin-iv.html","mycinamicin IV"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3001303","l":"ErmO-srmA","na":1,"nb":3,"a":[["ARO%3A3001303","ErmO-srmA"]],"b":[["antibacterial/carbomycin.html","carbomycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3001397","l":"OXA-2","na":1,"nb":3,"a":[["ARO%3A3001397","OXA-2"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002528","l":"AAC(3)-Ia","na":1,"nb":3,"a":[["ARO%3A3002528","AAC(3)-Ia"]],"b":[["antibacterial/astromicin.html","astromicin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002529","l":"AAC(3)-Id","na":1,"nb":3,"a":[["ARO%3A3002529","AAC(3)-Id"]],"b":[["antibacterial/astromicin.html","astromicin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002530","l":"AAC(3)-Ib","na":1,"nb":3,"a":[["ARO%3A3002530","AAC(3)-Ib"]],"b":[["antibacterial/astromicin.html","astromicin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002531","l":"AAC(3)-Ic","na":1,"nb":3,"a":[["ARO%3A3002531","AAC(3)-Ic"]],"b":[["antibacterial/astromicin.html","astromicin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002540","l":"AAC(3)-VIa","na":1,"nb":3,"a":[["ARO%3A3002540","AAC(3)-VIa"]],"b":[["antibacterial/6-n-ethylnetilmicin.html","6'-N-ethylnetilmicin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/sisomycin.html","sisomycin"]]},{"id":"ARO:3002546","l":"","na":1,"nb":3,"a":[["ARO%3A3002546","AAC(6')-Ib"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002576","l":"","na":1,"nb":3,"a":[["ARO%3A3002576","AAC(6')-Ib3"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002577","l":"","na":1,"nb":3,"a":[["ARO%3A3002577","AAC(6')-Ib4"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002578","l":"","na":1,"nb":3,"a":[["ARO%3A3002578","AAC(6')-Ib7"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002579","l":"","na":1,"nb":3,"a":[["ARO%3A3002579","AAC(6')-Ib8"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002580","l":"","na":1,"nb":3,"a":[["ARO%3A3002580","AAC(6')-Ib9"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002581","l":"","na":1,"nb":3,"a":[["ARO%3A3002581","AAC(6')-Ib10"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002582","l":"","na":1,"nb":3,"a":[["ARO%3A3002582","AAC(6')-Ib11"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002586","l":"","na":1,"nb":3,"a":[["ARO%3A3002586","AAC(6')-32"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002591","l":"","na":1,"nb":3,"a":[["ARO%3A3002591","AAC(6')-Ib-Suzhou"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002592","l":"","na":1,"nb":3,"a":[["ARO%3A3002592","AAC(6')-Ib-Hangzhou"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002593","l":"","na":1,"nb":3,"a":[["ARO%3A3002593","AAC(6')-Ib-SK"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002624","l":"","na":1,"nb":3,"a":[["ARO%3A3002624","ANT(4')-IIa"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002625","l":"","na":1,"nb":3,"a":[["ARO%3A3002625","ANT(4')-IIb"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/isepamicin.html","isepamicin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002649","l":"","na":1,"nb":3,"a":[["ARO%3A3002649","APH(3')-Va"]],"b":[["antibacterial/framycetin.html","framycetin"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3002650","l":"","na":1,"nb":3,"a":[["ARO%3A3002650","APH(3')-Vb"]],"b":[["antibacterial/framycetin.html","framycetin"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3002651","l":"","na":1,"nb":3,"a":[["ARO%3A3002651","APH(3')-Vc"]],"b":[["antibacterial/framycetin.html","framycetin"],["antibacterial/paromomycin.html","paromomycin"],["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"ARO:3002666","l":"rmtF","na":1,"nb":3,"a":[["ARO%3A3002666","rmtF"]],"b":[["antibacterial/astromicin.html","astromicin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3002671","l":"Limosilactobacillus reuteri cat-TC","na":1,"nb":3,"a":[["ARO%3A3002671","Limosilactobacillus reuteri cat-TC"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002672","l":"Bacillus pumilus cat86","na":1,"nb":3,"a":[["ARO%3A3002672","Bacillus pumilus cat86"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002674","l":"Clostridium butyricum catB","na":1,"nb":3,"a":[["ARO%3A3002674","Clostridium butyricum catB"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002675","l":"catB2","na":1,"nb":3,"a":[["ARO%3A3002675","catB2"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002676","l":"catB3","na":1,"nb":3,"a":[["ARO%3A3002676","catB3"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002678","l":"Pseudomonas aeruginosa catB6","na":1,"nb":3,"a":[["ARO%3A3002678","Pseudomonas aeruginosa catB6"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002679","l":"Pseudomonas aeruginosa catB7","na":1,"nb":3,"a":[["ARO%3A3002679","Pseudomonas aeruginosa catB7"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002680","l":"catB8","na":1,"nb":3,"a":[["ARO%3A3002680","catB8"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002681","l":"catB9","na":1,"nb":3,"a":[["ARO%3A3002681","catB9"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002682","l":"catD","na":1,"nb":3,"a":[["ARO%3A3002682","catD"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002683","l":"catA1","na":1,"nb":3,"a":[["ARO%3A3002683","catA1"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002684","l":"catII","na":1,"nb":3,"a":[["ARO%3A3002684","catII"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002685","l":"catIII","na":1,"nb":3,"a":[["ARO%3A3002685","catIII"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002686","l":"catP","na":1,"nb":3,"a":[["ARO%3A3002686","catP"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002687","l":"catQ","na":1,"nb":3,"a":[["ARO%3A3002687","catQ"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002688","l":"catS","na":1,"nb":3,"a":[["ARO%3A3002688","catS"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002689","l":"Plasmid-encoded cat (pp-cat)","na":1,"nb":3,"a":[["ARO%3A3002689","Plasmid-encoded cat (pp-cat)"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3002825","l":"ErmY","na":1,"nb":3,"a":[["ARO%3A3002825","ErmY"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/oleandomycin.html","oleandomycin"]]},{"id":"ARO:3002827","l":"tlrC","na":1,"nb":3,"a":[["ARO%3A3002827","tlrC"]],"b":[["antibacterial/lincomycin.html","lincomycin"],["antibacterial/mycinamicin-iv.html","mycinamicin IV"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3002830","l":"vgaALC","na":1,"nb":3,"a":[["ARO%3A3002830","vgaALC"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002833","l":"vgaE","na":1,"nb":3,"a":[["ARO%3A3002833","vgaE"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/tiamulin.html","tiamulin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002881","l":"lmrC","na":1,"nb":3,"a":[["ARO%3A3002881","lmrC"]],"b":[["antibacterial/celesticetin.html","celesticetin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002987","l":"bcrA","na":1,"nb":3,"a":[["ARO%3A3002987","bcrA"]],"b":[["antibacterial/bacitracin-a.html","bacitracin A"],["antibacterial/bacitracin-b.html","bacitracin B"],["antibacterial/bacitracin-f.html","bacitracin F"]]},{"id":"ARO:3002988","l":"bcrB","na":1,"nb":3,"a":[["ARO%3A3002988","bcrB"]],"b":[["antibacterial/bacitracin-a.html","bacitracin A"],["antibacterial/bacitracin-b.html","bacitracin B"],["antibacterial/bacitracin-f.html","bacitracin F"]]},{"id":"ARO:3003007","l":"bmr","na":1,"nb":3,"a":[["ARO%3A3003007","bmr"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/puromycin.html","puromycin"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3003062","l":"ykkCD","na":1,"nb":3,"a":[["ARO%3A3003062","ykkCD"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/streptomycin.html","streptomycin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003072","l":"mphL","na":1,"nb":3,"a":[["ARO%3A3003072","mphL"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003080","l":"daptomycin resistant pgsA","na":3,"nb":1,"a":[["ARO%3A3003788","Bacillus subtilis pgsA with mutation conferring resistance to daptomycin"],["ARO%3A3003080","daptomycin resistant pgsA"],["ARO%3A3003323","Staphylococcus aureus pgsA mutations conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003110","l":"catB10","na":1,"nb":3,"a":[["ARO%3A3003110","catB10"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3003112","l":"lsaC","na":1,"nb":3,"a":[["ARO%3A3003112","lsaC"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"ARO:3003205","l":"Erm(43)","na":1,"nb":3,"a":[["ARO%3A3003205","Erm(43)"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"]]},{"id":"ARO:3003301","l":"Staphylococcus aureus gyrB conferring resistance to aminocoumarin","na":1,"nb":3,"a":[["ARO%3A3003301","Staphylococcus aureus gyrB conferring resistance to aminocoumarin"]],"b":[["antibacterial/clorobiocin.html","clorobiocin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3003302","l":"Bartonella bacilliformis gyrB conferring resistance to aminocoumarin","na":1,"nb":3,"a":[["ARO%3A3003302","Bartonella bacilliformis gyrB conferring resistance to aminocoumarin"]],"b":[["antibacterial/clorobiocin.html","clorobiocin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3003303","l":"Escherichia coli gyrB conferring resistance to aminocoumarin","na":1,"nb":3,"a":[["ARO%3A3003303","Escherichia coli gyrB conferring resistance to aminocoumarin"]],"b":[["antibacterial/clorobiocin.html","clorobiocin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3003314","l":"Staphylococcus aureus parE conferring resistance to aminocoumarin","na":1,"nb":3,"a":[["ARO%3A3003314","Staphylococcus aureus parE conferring resistance to aminocoumarin"]],"b":[["antibacterial/clorobiocin.html","clorobiocin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3003318","l":"Streptomyces rishiriensis parY mutant conferring resistance to aminocoumarin","na":1,"nb":3,"a":[["ARO%3A3003318","Streptomyces rishiriensis parY mutant conferring resistance to aminocoumarin"]],"b":[["antibacterial/clorobiocin.html","clorobiocin"],["antibacterial/coumermycin-a1.html","coumermycin A1"],["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3003381","l":"Escherichia coli soxR with mutation conferring antibiotic resistance","na":1,"nb":3,"a":[["ARO%3A3003381","Escherichia coli soxR with mutation conferring antibiotic resistance"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3003385","l":"Klebsiella aerogenes Omp36","na":1,"nb":3,"a":[["ARO%3A3003385","Klebsiella aerogenes Omp36"]],"b":[["antibacterial/cefepime.html","cefepime"],["antibacterial/cefpirome.html","cefpirome"],["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3003394","l":"Mycobacterium tuberculosis pncA mutations conferring resistance to pyrazinamide","na":3,"nb":1,"a":[["ARO%3A3004267","antibiotic resistant pncA"],["ARO%3A3003394","Mycobacterium tuberculosis pncA mutations conferring resistance to pyrazinamide"],["ARO%3A3003418","Pyrazinamide resistant pncA"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3003511","l":"Escherichia coli soxS with mutation conferring antibiotic resistance","na":1,"nb":3,"a":[["ARO%3A3003511","Escherichia coli soxS with mutation conferring antibiotic resistance"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/enrofloxacin.html","enrofloxacin"]]},{"id":"ARO:3003589","l":"NmcA","na":1,"nb":3,"a":[["ARO%3A3003589","NmcA"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"ARO:3003702","l":"Pseudomonas aeruginosa gyrA and parC conferring resistance to fluoroquinolones","na":1,"nb":3,"a":[["ARO%3A3003702","Pseudomonas aeruginosa gyrA and parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/ofloxacin.html","ofloxacin"],["antibacterial/pefloxacin.html","pefloxacin"]]},{"id":"ARO:3003742","l":"mphG","na":1,"nb":3,"a":[["ARO%3A3003742","mphG"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003807","l":"Escherichia coli AcrAB-TolC with AcrR mutation conferring resistance to ciprofloxacin, tetracycline, and ceftazidime","na":1,"nb":3,"a":[["ARO%3A3003807","Escherichia coli AcrAB-TolC with AcrR mutation conferring resistance to ciprofloxacin, tetracycline, and ceftazidime"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003839","l":"Mrx","na":1,"nb":3,"a":[["ARO%3A3003839","Mrx"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3003842","l":"MUS-2","na":1,"nb":3,"a":[["ARO%3A3003842","MUS-2"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/piperacillin.html","piperacillin"],["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3003931","l":"Capnocytophaga gingivalis gyrA conferring resistance to fluoroquinolones","na":1,"nb":3,"a":[["ARO%3A3003931","Capnocytophaga gingivalis gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3003947","l":"EfrAB","na":1,"nb":3,"a":[["ARO%3A3003947","EfrAB"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3003960","l":"farAB","na":1,"nb":3,"a":[["ARO%3A3003960","farAB"]],"b":[["antibacterial/linoleic-acid.html","linoleic acid"],["antibacterial/oleic-acid.html","oleic acid"],["antibacterial/palmitic-acid.html","palmitic acid"]]},{"id":"ARO:3003964","l":"hp1181","na":1,"nb":3,"a":[["ARO%3A3003964","hp1181"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/metronidazole.html","metronidazole"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003983","l":"CatU","na":1,"nb":3,"a":[["ARO%3A3003983","CatU"]],"b":[["antibacterial/azidamfenicol.html","azidamfenicol"],["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3003991","l":"mphI","na":1,"nb":3,"a":[["ARO%3A3003991","mphI"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/telithromycin.html","telithromycin"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3004066","l":"MexEF-OprN with MexT mutation conferring resistance to chloramphenicol, ciprofloxacin, and trimethoprim","na":1,"nb":3,"a":[["ARO%3A3004066","MexEF-OprN with MexT mutation conferring resistance to chloramphenicol, ciprofloxacin, and trimethoprim"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004068","l":"MexEF-OprN with MexS mutations conferring resistance to chloramphenicol, ciprofloxacin, and trimethoprim","na":1,"nb":3,"a":[["ARO%3A3004068","MexEF-OprN with MexS mutations conferring resistance to chloramphenicol, ciprofloxacin, and trimethoprim"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004077","l":"PmpM","na":1,"nb":3,"a":[["ARO%3A3004077","PmpM"]],"b":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"],["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3004094","l":"Erm(48)","na":1,"nb":3,"a":[["ARO%3A3004094","Erm(48)"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"]]},{"id":"ARO:3004098","l":"LpeAB","na":1,"nb":3,"a":[["ARO%3A3004098","LpeAB"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3004102","l":"kamB","na":1,"nb":3,"a":[["ARO%3A3004102","kamB"]],"b":[["antibacterial/apramycin.html","apramycin"],["antibacterial/framycetin.html","framycetin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004103","l":"QepA2","na":1,"nb":3,"a":[["ARO%3A3004103","QepA2"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3004108","l":"Enterobacter cloacae rob","na":1,"nb":3,"a":[["ARO%3A3004108","Enterobacter cloacae rob"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/telithromycin.html","telithromycin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004127","l":"Escherichia coli mipA","na":1,"nb":3,"a":[["ARO%3A3004127","Escherichia coli mipA"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/nalidixic-acid.html","nalidixic acid"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004174","l":"Chlamydia trachomatis 23S rRNA with mutation conferring resistance to macrolide antibiotics","na":1,"nb":3,"a":[["ARO%3A3004174","Chlamydia trachomatis 23S rRNA with mutation conferring resistance to macrolide antibiotics"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/josamycin.html","josamycin"]]},{"id":"ARO:3004378","l":"QepA3","na":1,"nb":3,"a":[["ARO%3A3004378","QepA3"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3004379","l":"QepA4","na":1,"nb":3,"a":[["ARO%3A3004379","QepA4"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3004441","l":"tet(59)","na":1,"nb":3,"a":[["ARO%3A3004441","tet(59)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004442","l":"tet(W/N/W)","na":1,"nb":3,"a":[["ARO%3A3004442","tet(W/N/W)"]],"b":[["antibacterial/chlortetracycline.html","chlortetracycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004544","l":"mphJ","na":1,"nb":3,"a":[["ARO%3A3004544","mphJ"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/telithromycin.html","telithromycin"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3004576","l":"tet(61)","na":1,"nb":3,"a":[["ARO%3A3004576","tet(61)"]],"b":[["antibacterial/doxycycline.html","doxycycline"],["antibacterial/minocycline.html","minocycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004589","l":"tet(53)","na":1,"nb":3,"a":[["ARO%3A3004589","tet(53)"]],"b":[["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004591","l":"tet(55)","na":1,"nb":3,"a":[["ARO%3A3004591","tet(55)"]],"b":[["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004592","l":"erm(32)","na":1,"nb":3,"a":[["ARO%3A3004592","erm(32)"]],"b":[["antibacterial/methymycin.html","methymycin"],["antibacterial/narbomycin.html","narbomycin"],["antibacterial/pikromycin.html","pikromycin"]]},{"id":"ARO:3004595","l":"erm(45)","na":1,"nb":3,"a":[["ARO%3A3004595","erm(45)"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"]]},{"id":"ARO:3004596","l":"erm(46)","na":1,"nb":3,"a":[["ARO%3A3004596","erm(46)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004639","l":"Corynebacterium striatum tetA","na":1,"nb":3,"a":[["ARO%3A3004639","Corynebacterium striatum tetA"]],"b":[["antibacterial/oxacillin.html","oxacillin"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004649","l":"cfr(B)","na":1,"nb":3,"a":[["ARO%3A3004649","cfr(B)"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/linezolid.html","linezolid"]]},{"id":"ARO:3004652","l":"Erm(O)-lrm","na":1,"nb":3,"a":[["ARO%3A3004652","Erm(O)-lrm"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/lincomycin.html","lincomycin"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3004679","l":"rmtE2","na":1,"nb":3,"a":[["ARO%3A3004679","rmtE2"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004854","l":"CMY-136","na":1,"nb":3,"a":[["ARO%3A3004854","CMY-136"]],"b":[["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftolozane.html","ceftolozane"],["antibacterial/cefuroxime.html","cefuroxime"]]},{"id":"ARO:3005021","l":"cfr(D)","na":1,"nb":3,"a":[["ARO%3A3005021","cfr(D)"]],"b":[["antibacterial/linezolid.html","linezolid"],["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3005047","l":"eptB","na":1,"nb":3,"a":[["ARO%3A3005047","eptB"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"],["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3005051","l":"LpsB","na":1,"nb":3,"a":[["ARO%3A3005051","LpsB"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"],["antibacterial/defensin.html","defensin"]]},{"id":"ARO:3005056","l":"tet(X6)","na":1,"nb":3,"a":[["ARO%3A3005056","tet(X6)"]],"b":[["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3005057","l":"tet(X5)","na":1,"nb":3,"a":[["ARO%3A3005057","tet(X5)"]],"b":[["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3005166","l":"tet(X1)","na":1,"nb":3,"a":[["ARO%3A3005166","tet(X1)"]],"b":[["antibacterial/minocycline.html","minocycline"],["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007032","l":"Erm(50)","na":1,"nb":3,"a":[["ARO%3A3007032","Erm(50)"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/roxithromycin.html","roxithromycin"]]},{"id":"ARO:3007050","l":"mreA","na":1,"nb":3,"a":[["ARO%3A3007050","mreA"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3007056","l":"Antibiotic resistant Helicobacter pylori nitroreductase","na":3,"nb":1,"a":[["ARO%3A3007056","Antibiotic resistant Helicobacter pylori nitroreductase"],["ARO%3A3007059","Helicobacter pylori frxA mutation conferring resistance to metronidazole"],["ARO%3A3007055","Helicobacter pylori rdxA mutation conferring resistance to metronidazole"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007062","l":"VAM-1","na":1,"nb":3,"a":[["ARO%3A3007062","VAM-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3007186","l":"Mycobacterium tuberculosis Rv1258c mutations confer resistance to pyrazinamide, isoniazid, and streptomycin","na":1,"nb":3,"a":[["ARO%3A3007186","Mycobacterium tuberculosis Rv1258c mutations confer resistance to pyrazinamide, isoniazid, and streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"],["antimycobacterial/isoniazide.html","isoniazide"],["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3007196","l":"KPC-123","na":1,"nb":3,"a":[["ARO%3A3007196","KPC-123"]],"b":[["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007208","l":"HelR","na":1,"nb":3,"a":[["ARO%3A3007208","HelR"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3007209","l":"Streptomyces venezuelae rox","na":1,"nb":3,"a":[["ARO%3A3007209","Streptomyces venezuelae rox"]],"b":[["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"],["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"ARO:3007435","l":"WUS-1","na":1,"nb":3,"a":[["ARO%3A3007435","WUS-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/carbenicillin.html","carbenicillin"],["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3007473","l":"Mycobacterium avium gyrA with mutation conferring resistance to fluoroquinolone","na":1,"nb":3,"a":[["ARO%3A3007473","Mycobacterium avium gyrA with mutation conferring resistance to fluoroquinolone"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3007524","l":"Candida spp. ERG11 with mutations conferring resistance to azole antibiotics","na":1,"nb":3,"a":[["ARO%3A3007524","Candida spp. ERG11 with mutations conferring resistance to azole antibiotics"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"ARO:3007531","l":"Streptococcus pyogenes PBP2x conferring resistance to beta-lactam antibiotics","na":1,"nb":3,"a":[["ARO%3A3007531","Streptococcus pyogenes PBP2x conferring resistance to beta-lactam antibiotics"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefotaxime.html","cefotaxime"]]},{"id":"ARO:3007565","l":"Aspergillus spp. cyp51A with mutations conferring resistance to triazoles antibiotics","na":1,"nb":3,"a":[["ARO%3A3007565","Aspergillus spp. cyp51A with mutations conferring resistance to triazoles antibiotics"]],"b":[["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"ARO:3007632","l":"FRI-11","na":1,"nb":3,"a":[["ARO%3A3007632","FRI-11"]],"b":[["antibacterial/ertapenem.html","ertapenem"],["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3007654","l":"erm(56)","na":1,"nb":3,"a":[["ARO%3A3007654","erm(56)"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/pristinamycin-ia.html","pristinamycin IA"]]},{"id":"ARO:3007666","l":"Candida spp. cyp51A1 with mutations conferring resistance to triazoles and imidazole antibiotics","na":1,"nb":3,"a":[["ARO%3A3007666","Candida spp. cyp51A1 with mutations conferring resistance to triazoles and imidazole antibiotics"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/ketoconazole.html","ketoconazole"]]},{"id":"ARO:3007669","l":"aadT","na":1,"nb":3,"a":[["ARO%3A3007669","aadT"]],"b":[["antibacterial/chlorhexidine.html","chlorhexidine"],["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"CHEBI:121196","l":"reumycin","na":3,"nb":1,"a":[["EC%3A2.1.1.349","toxoflavin synthase"],["RHEA%3A56848","1,6-didemethyltoxoflavin + S-adenosyl-L-methionine = reumycin + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A56852","reumycin + S-adenosyl-L-methionine = toxoflavin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["unspecified/reumycin.html","reumycin"]]},{"id":"CHEBI:131914","l":"violacein","na":3,"nb":1,"a":[["RHEA%3A49720","protoviolaceinate + NADH + 2 O2 + 2 H(+) = violacein + CO2 + NAD(+) + 2 H2O"],["RHEA%3A49728","protoviolaceinate + NADPH + 2 O2 + 2 H(+) = violacein + CO2 + NADP(+) + 2 H2O"],["RHEA%3A49732","violaceinate + O2 + H(+) = violacein + CO2 + H2O"]],"b":[["antibacterial/violacein.html","violacein"]]},{"id":"CHEBI:131915","l":"deoxyviolacein","na":3,"nb":1,"a":[["RHEA%3A49744","deoxyviolaceinate + O2 + H(+) = deoxyviolacein + CO2 + H2O"],["RHEA%3A49736","protodeoxyviolaceinate + NADH + 2 O2 + 2 H(+) = deoxyviolacein + CO2 + NAD(+) + 2 H2O"],["RHEA%3A49740","protodeoxyviolaceinate + NADPH + 2 O2 + 2 H(+) = deoxyviolacein + CO2 + NADP(+) + 2 H2O"]],"b":[["antibacterial/deoxyviolacein.html","deoxyviolacein"]]},{"id":"CHEBI:138730","l":"","na":3,"nb":1,"a":[["EC%3A2.1.1.267","flavonoid 3',5'-methyltransferase"],["EC%3A2.1.1.42","flavone 3'-O-methyltransferase"],["RHEA%3A55332","a 3'-hydroxyflavone + S-adenosyl-L-methionine = a 3'-methoxyflavone + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/3-3-dimethylquercetin.html","3,3'-dimethylquercetin"]]},{"id":"CHEBI:142605","l":"","na":3,"nb":1,"a":[["EC%3A2.3.1.332","medium-chain-alcohol O-fatty-acyltransferase"],["RHEA%3A85935","a medium-chain primary fatty alcohol + a fatty acyl-CoA = a medium-chain alcohol wax ester + CoA"],["RHEA%3A58364","a medium-chain primary fatty alcohol + NADP(+) = a medium-chain fatty aldehyde + NADPH + H(+)"]],"b":[["antibacterial/1-2-dodecanediol.html","1,2-dodecanediol"]]},{"id":"CHEBI:16363","l":"α-santonin","na":3,"nb":1,"a":[["EC%3A1.3.1.47","alpha-santonin 1,2-reductase"],["RHEA%3A23612","1,2-dihydro-alpha-santonin + NAD(+) = alpha-santonin + NADH + H(+)"],["RHEA%3A23616","1,2-dihydro-alpha-santonin + NADP(+) = alpha-santonin + NADPH + H(+)"]],"b":[["antifungal/%CE%B1-santonin.html","α-santonin"]]},{"id":"CHEBI:17097","l":"biphenyl","na":3,"nb":1,"a":[["EC%3A1.14.12.18","biphenyl 2,3-dioxygenase"],["RHEA%3A18165","biphenyl + NADH + O2 + H(+) = (2R,3S)-3-phenylcyclohexa-3,5-diene-1,2-diol + NAD(+)"],["proteintraitsmech%3ABIOLIP_BNL","BNL-binding site"]],"b":[["antifungal/biphenyl.html","biphenyl"]]},{"id":"CHEBI:1722","l":"","na":3,"nb":1,"a":[["EC%3A1.1.1.145","3beta-hydroxy-Delta(5)-steroid dehydrogenase"],["RHEA%3A24076","a 3beta-hydroxy-Delta(5)-steroid + NAD(+) = a 3-oxo-Delta(5)-steroid + NADH + H(+)"],["RHEA%3A56880","a 3beta-hydroxy-Delta(5)-steroid + NADP(+) = a 3-oxo-Delta(5)-steroid + NADPH + H(+)"]],"b":[["antibacterial/7-aminocholesterol.html","7-aminocholesterol"]]},{"id":"CHEBI:17231","l":"m-cresol","na":3,"nb":1,"a":[["EC%3A4.1.1.52","6-methylsalicylate decarboxylase"],["RHEA%3A62208","3-methylphenol + reduced [NADPH--hemoprotein reductase] + O2 = 3-hydroxybenzyl alcohol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A23112","6-methylsalicylate + H(+) = 3-methylphenol + CO2"]],"b":[["antifungal/m-cresol.html","m-cresol"]]},{"id":"CHEBI:173119","l":"(6Z)-nerolidol","na":1,"nb":3,"a":[["RHEA%3A68832","(2Z,6Z)-farnesyl diphosphate + H2O = (6Z)-nerolidol + diphosphate"]],"b":[["antifungal/3r-6z-nerolidol.html","(3R,6Z)-nerolidol"],["antifungal/3s-6z-nerolidol.html","(3S,6Z)-nerolidol"],["antifungal/6z-nerolidol.html","(6Z)-nerolidol"]]},{"id":"CHEBI:17484","l":"benzyl isothiocyanate","na":3,"nb":1,"a":[["EC%3A5.99.1.1","thiocyanate isomerase"],["RHEA%3A10004","benzyl isothiocyanate = benzyl thiocyanate"],["RHEA%3A69300","(Z)-phenyl-N-(sulfonatooxy)methanimidothioate = benzyl isothiocyanate + sulfate"]],"b":[["antibacterial/benzyl-isothiocyanate.html","benzyl isothiocyanate"]]},{"id":"CHEBI:195253","l":"5-hydroxy-3-methylfuran-2(5H)-one","na":3,"nb":1,"a":[["RHEA%3A76507","(-)-2'-epi-GR24 + H2O = (-)-2'-epi-GR24 ABC-rings + 5-hydroxy-3-methylfuran-2(5H)-one"],["RHEA%3A76511","5-deoxystrigol + H2O = 5-deoxystrigol ABC-rings + 5-hydroxy-3-methylfuran-2(5H)-one"],["RHEA%3A76515","orobanchol + H2O = orobanchol ABC-rings + 5-hydroxy-3-methylfuran-2(5H)-one"]],"b":[["antiviral/5-hydroxy-3-methylfuran-2-5h-one.html","5-hydroxy-3-methylfuran-2(5H)-one"]]},{"id":"CHEBI:2453","l":"acyclovir","na":3,"nb":1,"a":[["RHEA%3A83871","valacyclovir + H2O = acyclovir + L-valine + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antiviral/acyclovir.html","acyclovir"]]},{"id":"CHEBI:24838","l":"","na":3,"nb":1,"a":[["TCDB%3A2.A.30","The Cation-Chloride Cotransporter (CCC) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.58","The Phosphate:Na+ Symporter (PNaS) Family"]],"b":[["antibacterial/sodium-fluorophosphate.html","sodium fluorophosphate"]]},{"id":"CHEBI:26267","l":"","na":1,"nb":3,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antiviral/epigallocatechin-4%CE%B28-2%CE%B2o-7-epicatechin.html","epigallocatechin-(4β→8,2β→O-7)-epicatechin"],["antiviral/proanthocyanidin-a2.html","proanthocyanidin A2"],["antiviral/theasinensin-a.html","theasinensin A"]]},{"id":"CHEBI:28915","l":"fosfomycin","na":3,"nb":1,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.5","The Pseudomonas OprP Porin (POP) Family"],["proteintraitsmech%3ABIOLIP_FCN","FCN-binding site"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"CHEBI:3139","l":"bleomycin A2","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A9.A.18","The Peptide Uptake Permease (PUP) Family"]],"b":[["antibacterial/bleomycin-a2.html","bleomycin A2"]]},{"id":"CHEBI:32197","l":"tetracenomycin A2","na":3,"nb":1,"a":[["EC%3A1.14.13.200","tetracenomycin A2 monooxygenase-diooxygenase"],["RHEA%3A42824","tetracenomycin A2 + 2 NADH + 2 O2 + 2 H(+) = tetracenomycin C + 2 NAD(+) + H2O"],["RHEA%3A42820","tetracenomycin A2 + 2 NADPH + 2 O2 + 2 H(+) = tetracenomycin C + 2 NADP(+) + H2O"]],"b":[["antibacterial/tetracenomycin-a2.html","tetracenomycin A2"]]},{"id":"CHEBI:324935","l":"fumagillol","na":3,"nb":1,"a":[["EC%3A1.1.1.437","5-dehydrofumagillol 5-reductase"],["RHEA%3A74751","fumagillol + dodecapentaneoyl-[polyketide synthase] = prefumagillin + holo-[polyketide synthase]"],["RHEA%3A74707","fumagillol + NADP(+) = 5-dehydrofumagillol + NADPH + H(+)"]],"b":[["unspecified/fumagillol.html","fumagillol"]]},{"id":"CHEBI:3392","l":"carbendazim","na":3,"nb":1,"a":[["EC%3A3.1.1.122","carbendazim hydrolysing esterase"],["RHEA%3A78411","carbendazim + H2O = 2-aminobenzimidazole + methanol + CO2"],["RHEA%3A78415","carbendazim + H2O = N-(1H-1,3-benzodiazol-2-yl)carbamate + methanol + H(+)"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"CHEBI:35996","l":"","na":1,"nb":3,"a":[["TCDB%3A1.B.25","The Outer Membrane Porin (Opr) Family"]],"b":[["antibacterial/faropenem.html","faropenem"],["unspecified/faropenem-1.html","faropenem(1−)"],["unspecified/penem.html","penem"]]},{"id":"CHEBI:43968","l":"meropenem","na":3,"nb":1,"a":[["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"],["TCDB%3A1.B.25","The Outer Membrane Porin (Opr) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/meropenem.html","meropenem"]]},{"id":"CHEBI:44485","l":"N-ethylmaleimide","na":3,"nb":1,"a":[["RHEA%3A35527","N-ethylmaleimide + NADH + H(+) = N-ethylsuccinimide + NAD(+)"],["RHEA%3A35523","N-ethylmaleimide + NADPH + H(+) = N-ethylsuccinimide + NADP(+)"],["proteintraitsmech%3ABIOLIP_NEQ","NEQ-binding site"]],"b":[["antiviral/n-ethylmaleimide.html","N-ethylmaleimide"]]},{"id":"CHEBI:45453","l":"sinefungin","na":3,"nb":1,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A2.A.71","The Folate-Biopterin Transporter (FBT) Family"],["proteintraitsmech%3ABIOLIP_SFG","SFG-binding site"]],"b":[["antifungal/sinefungin.html","sinefungin"]]},{"id":"CHEBI:4629","l":"diosgenin","na":3,"nb":1,"a":[["EC%3A3.2.1.189","dioscin glycosidase (diosgenin-forming)"],["RHEA%3A36827","dioscin + 3 H2O = diosgenin + 2 L-rhamnopyranose + D-glucose"],["RHEA%3A61888","diosgenin + UDP-alpha-D-glucose = diosgenin 3-O-beta-D-glucoside + UDP + H(+)"]],"b":[["antiviral/diosgenin.html","diosgenin"]]},{"id":"CHEBI:47789","l":"","na":3,"nb":1,"a":[["EC%3A1.1.1.201","7beta-hydroxysteroid dehydrogenase (NADP(+))"],["RHEA%3A82271","7alpha-hydroxy steroid + NADP(+) = a 7-oxosteroid + NADPH + H(+)"],["RHEA%3A20233","a 7beta-hydroxysteroid + NADP(+) = a 7-oxosteroid + NADPH + H(+)"]],"b":[["antiviral/lucialdehyde-b.html","lucialdehyde B"]]},{"id":"CHEBI:51277","l":"","na":1,"nb":3,"a":[["RHEA%3A82919","a thioester + H2O = a thiol + a carboxylate + H(+)"]],"b":[["antifungal/acibenzolar-s-methyl.html","acibenzolar-S-methyl"],["antifungal/fenpyrazamine.html","fenpyrazamine"],["antiprotozoal/sid-26681509.html","SID 26681509"]]},{"id":"CHEBI:6076","l":"itraconazole","na":3,"nb":1,"a":[["RHEA%3A33503","itraconazole(in) + ATP + H2O = itraconazole(out) + ADP + phosphate + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/itraconazole.html","itraconazole"]]},{"id":"CHEBI:60822","l":"streptothricin F(3+)","na":3,"nb":1,"a":[["EC%3A3.5.2.19","streptothricin hydrolase"],["RHEA%3A57000","streptothricin F + acetyl-CoA = N(beta)-acetylstreptothricin F + CoA + H(+)"],["RHEA%3A28138","streptothricin F + H2O = streptothricin F acid"]],"b":[["unspecified/streptothricin-f-3.html","streptothricin F(3+)"]]},{"id":"CHEBI:6472","l":"lincomycin","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_3QB","3QB-binding site"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"CHEBI:67135","l":"2-nitroimidazole","na":3,"nb":1,"a":[["EC%3A3.5.99.9","2-nitroimidazole nitrohydrolase"],["RHEA%3A34271","2-nitroimidazole + H2O = 1,3-dihydro-2H-imidazol-2-one + nitrite + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antimycobacterial/2-nitroimidazole.html","2-nitroimidazole"]]},{"id":"CHEBI:75291","l":"ε-rhodomycinone","na":3,"nb":1,"a":[["EC%3A1.14.13.180","aklavinone 12-hydroxylase"],["RHEA%3A37835","aklavinone + NADPH + O2 + H(+) = epsilon-rhodomycinone + NADP(+) + H2O"],["RHEA%3A45760","dTDP-beta-L-daunosamine + epsilon-rhodomycinone = rhodomycin D + dTDP + H(+)"]],"b":[["unspecified/%CE%B5-rhodomycinone.html","ε-rhodomycinone"]]},{"id":"CHEBI:77879","l":"elaiophylin","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["proteintraitsmech%3ABIOLIP_ELO","ELO-binding site"]],"b":[["antifungal/elaiophylin.html","elaiophylin"]]},{"id":"CHEBI:78303","l":"aclacinomycin S zwitterion","na":3,"nb":1,"a":[["EC%3A2.4.1.327","aclacinomycin-T 2-deoxy-L-fucose transferase"],["RHEA%3A41652","dTDP-2-deoxy-beta-L-fucose + aclacinomycin S = 2-deoxy-alpha-L-fucosylaclacinomycin S + dTDP + H(+)"],["RHEA%3A41568","dTDP-2-deoxy-beta-L-fucose + aclacinomycin T = aclacinomycin S + dTDP + H(+)"]],"b":[["unspecified/aclacinomycin-s-zwitterion.html","aclacinomycin S zwitterion"]]},{"id":"CHEBI:80729","l":"toxoflavin","na":3,"nb":1,"a":[["EC%3A2.1.1.349","toxoflavin synthase"],["RHEA%3A56852","reumycin + S-adenosyl-L-methionine = toxoflavin + S-adenosyl-L-homocysteine + H(+)"],["proteintraitsmech%3ABIOLIP_TOF","TOF-binding site"]],"b":[["antibacterial/toxoflavin.html","toxoflavin"]]},{"id":"CHEBI:82744","l":"","na":3,"nb":1,"a":[["EC%3A4.8.1.2","aliphatic aldoxime dehydratase"],["RHEA%3A11316","an aliphatic aldoxime = a nitrile + H2O"],["MCSA%3A361","aldoxime dehydratase"]],"b":[["unspecified/ic202c.html","IC202C"]]},{"id":"CHEBI:84688","l":"","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]],"b":[["antibacterial/albomycin-%CE%B41.html","albomycin δ1"]]},{"id":"CHEBI:87208","l":"","na":1,"nb":3,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/cyprodinil.html","cyprodinil"],["antifungal/mepanipyrim.html","mepanipyrim"],["antifungal/pyrimethanil.html","pyrimethanil"]]},{"id":"CHEBI:9053","l":"sclareol","na":3,"nb":1,"a":[["EC%3A4.2.3.141","sclareol synthase"],["RHEA%3A34459","8-hydroxycopalyl diphosphate + H2O = sclareol + diphosphate"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/sclareol.html","sclareol"]]},{"id":"CHEBI:9215","l":"spectinomycin","na":3,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["proteintraitsmech%3ABIOLIP_SCM","SCM-binding site"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"CHEBI:9470","l":"tetracenomycin C","na":3,"nb":1,"a":[["EC%3A1.14.13.200","tetracenomycin A2 monooxygenase-diooxygenase"],["RHEA%3A42824","tetracenomycin A2 + 2 NADH + 2 O2 + 2 H(+) = tetracenomycin C + 2 NAD(+) + H2O"],["RHEA%3A42820","tetracenomycin A2 + 2 NADPH + 2 O2 + 2 H(+) = tetracenomycin C + 2 NADP(+) + H2O"]],"b":[["antibacterial/tetracenomycin-c.html","tetracenomycin C"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":3,"nb":1,"a":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF22041","Glutathione S-transferase, C-terminal domain"],["Pfam%3APF08493","Aflatoxin regulatory protein"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"NCBITaxon:5053","l":"Aspergillus aculeatus","na":3,"nb":1,"a":[["Pfam%3APF14683","Polysaccharide lyase family 4, domain III"],["Pfam%3APF14686","Polysaccharide lyase family 4, domain II"],["Pfam%3APF01670","Glycosyl hydrolase family 12"]],"b":[["antifungal/aculeacin-a.html","aculeacin A"]]},{"id":"NCBITaxon:54571","l":"Streptomyces venezuelae","na":3,"nb":1,"a":[["Pfam%3APF08990","Erythronolide synthase docking domain"],["TED%3AAF-A0A5P2CQV7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5P2CQV7-F1-model_v4_TED02"],["TED%3AAF-A0A5P2C5X4-F1-model_v4_TED01","TED novel fold AF-A0A5P2C5X4-F1-model_v4_TED01"]],"b":[["antibacterial/methymycin.html","methymycin"]]},{"id":"NCBITaxon:578454","l":"Lodderomyces parapsilosis CDC317","na":1,"nb":3,"a":[["TED%3AAF-G8BAN6-F1-model_v4_TED01","TED novel fold AF-G8BAN6-F1-model_v4_TED01"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"UniProt:P10613","l":"","na":1,"nb":3,"a":[["proteintraitsmech%3ABIOLIP_1YN","1YN-binding site"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/itraconazole.html","itraconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"UniProt:Q4WNT5","l":"","na":1,"nb":3,"a":[["EC%3A1.14.14.154","sterol 14alpha-demethylase"]],"b":[["antifungal/itraconazole.html","itraconazole"],["antifungal/posaconazole.html","posaconazole"],["antifungal/voriconazole.html","voriconazole"]]},{"id":"ARO:0000040","l":"streptomycin","na":2,"nb":1,"a":[["ARO%3A3004968","Mycobacterium tuberculosis whib7 mutation conferring resistance to streptomycin"],["ARO%3A3004965","streptomycin resistant whib7"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:0000049","l":"kanamycin A","na":2,"nb":1,"a":[["ARO%3A3004966","Kanamycin resistant whib7"],["ARO%3A3004967","Mycobacterium tuberculosis whib7 mutations confer resistance to kanamycin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3000026","l":"mepA","na":2,"nb":1,"a":[["ARO%3A3000026","mepA"],["ARO%3A3000746","mepR"]],"b":[["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:3000118","l":"vgaB","na":1,"nb":2,"a":[["ARO%3A3000118","vgaB"]],"b":[["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3000165","l":"tet(A)","na":2,"nb":1,"a":[["ARO%3A3000165","tet(A)"],["ARO%3A3003479","tetR"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000236","l":"glycopeptide resistance gene cluster VanA","na":1,"nb":2,"a":[["ARO%3A3000236","glycopeptide resistance gene cluster VanA"]],"b":[["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000251","l":"msrA","na":1,"nb":2,"a":[["ARO%3A3000251","msrA"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/quinupristin.html","quinupristin"]]},{"id":"ARO:3000253","l":"glycopeptide resistance gene cluster VanD","na":1,"nb":2,"a":[["ARO%3A3000253","glycopeptide resistance gene cluster VanD"]],"b":[["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000256","l":"glycopeptide resistance gene cluster VanM","na":1,"nb":2,"a":[["ARO%3A3000256","glycopeptide resistance gene cluster VanM"]],"b":[["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000344","l":"EmrAB-TolC","na":2,"nb":1,"a":[["ARO%3A3000344","EmrAB-TolC"],["ARO%3A3000516","emrR"]],"b":[["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3000448","l":"QepA1","na":1,"nb":2,"a":[["ARO%3A3000448","QepA1"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3000545","l":"MacAB-TolC","na":2,"nb":1,"a":[["ARO%3A3000545","MacAB-TolC"],["ARO%3A3000834","phoP"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000616","l":"mel","na":1,"nb":2,"a":[["ARO%3A3000616","mel"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/telithromycin.html","telithromycin"]]},{"id":"ARO:3000768","l":"abeS","na":1,"nb":2,"a":[["ARO%3A3000768","abeS"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3000769","l":"PatA-PatB","na":1,"nb":2,"a":[["ARO%3A3000769","PatA-PatB"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3000771","l":"AdeFGH","na":2,"nb":1,"a":[["ARO%3A3000771","AdeFGH"],["ARO%3A3000620","adeL"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000786","l":"MdsABC","na":2,"nb":1,"a":[["ARO%3A3000504","golS"],["ARO%3A3000786","MdsABC"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3000822","l":"pmrA","na":1,"nb":2,"a":[["ARO%3A3000822","pmrA"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3000865","l":"oleD","na":1,"nb":2,"a":[["ARO%3A3000865","oleD"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3000966","l":"TEM-103","na":1,"nb":2,"a":[["ARO%3A3000966","TEM-103"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"],["antibacterial/ampicillin.html","ampicillin"]]},{"id":"ARO:3001216","l":"mdtH","na":1,"nb":2,"a":[["ARO%3A3001216","mdtH"]],"b":[["antibacterial/enoxacin.html","enoxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3001300","l":"myrA","na":1,"nb":2,"a":[["ARO%3A3001300","myrA"]],"b":[["antibacterial/mycinamicin-iv.html","mycinamicin IV"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3001301","l":"RlmA(II)","na":1,"nb":2,"a":[["ARO%3A3001301","RlmA(II)"]],"b":[["antibacterial/mycinamicin-iv.html","mycinamicin IV"],["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3001306","l":"ErmW","na":1,"nb":2,"a":[["ARO%3A3001306","ErmW"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/josamycin.html","josamycin"]]},{"id":"ARO:3001796","l":"OXA-50","na":1,"nb":2,"a":[["ARO%3A3001796","OXA-50"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/cefalotin.html","cefalotin"]]},{"id":"ARO:3001816","l":"ACC-2","na":1,"nb":2,"a":[["ARO%3A3001816","ACC-2"]],"b":[["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001917","l":"CTX-M-55","na":1,"nb":2,"a":[["ARO%3A3001917","CTX-M-55"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3002053","l":"CMY-42","na":1,"nb":2,"a":[["ARO%3A3002053","CMY-42"]],"b":[["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002587","l":"","na":1,"nb":2,"a":[["ARO%3A3002587","AAC(6')-I33"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002601","l":"aadA","na":1,"nb":2,"a":[["ARO%3A3002601","aadA"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002602","l":"aadA2","na":1,"nb":2,"a":[["ARO%3A3002602","aadA2"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002603","l":"aadA3","na":1,"nb":2,"a":[["ARO%3A3002603","aadA3"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002604","l":"aadA4","na":1,"nb":2,"a":[["ARO%3A3002604","aadA4"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002605","l":"aadA5","na":1,"nb":2,"a":[["ARO%3A3002605","aadA5"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002606","l":"aadA6","na":1,"nb":2,"a":[["ARO%3A3002606","aadA6"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002607","l":"aadA7","na":1,"nb":2,"a":[["ARO%3A3002607","aadA7"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002608","l":"aadA8","na":1,"nb":2,"a":[["ARO%3A3002608","aadA8"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002609","l":"aadA9","na":1,"nb":2,"a":[["ARO%3A3002609","aadA9"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002611","l":"aadA11","na":1,"nb":2,"a":[["ARO%3A3002611","aadA11"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002612","l":"aadA12","na":1,"nb":2,"a":[["ARO%3A3002612","aadA12"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002613","l":"aadA13","na":1,"nb":2,"a":[["ARO%3A3002613","aadA13"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002614","l":"aadA14","na":1,"nb":2,"a":[["ARO%3A3002614","aadA14"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002615","l":"aadA15","na":1,"nb":2,"a":[["ARO%3A3002615","aadA15"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002616","l":"aadA16","na":1,"nb":2,"a":[["ARO%3A3002616","aadA16"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002617","l":"aadA17","na":1,"nb":2,"a":[["ARO%3A3002617","aadA17"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002618","l":"aadA21","na":1,"nb":2,"a":[["ARO%3A3002618","aadA21"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002619","l":"aadA22","na":1,"nb":2,"a":[["ARO%3A3002619","aadA22"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002620","l":"aadA23","na":1,"nb":2,"a":[["ARO%3A3002620","aadA23"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002621","l":"aadA24","na":1,"nb":2,"a":[["ARO%3A3002621","aadA24"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002622","l":"aadA6/aadA10","na":1,"nb":2,"a":[["ARO%3A3002622","aadA6/aadA10"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002654","l":"","na":1,"nb":2,"a":[["ARO%3A3002654","APH(3')-VIIa"]],"b":[["antibacterial/framycetin.html","framycetin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3002704","l":"fexA","na":1,"nb":2,"a":[["ARO%3A3002704","fexA"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"]]},{"id":"ARO:3002705","l":"floR","na":1,"nb":2,"a":[["ARO%3A3002705","floR"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"]]},{"id":"ARO:3002706","l":"ethambutol resistant embC","na":2,"nb":1,"a":[["ARO%3A3002706","ethambutol resistant embC"],["ARO%3A3003327","Mycobacterium tuberculosis embC mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3002812","l":"pp-flo","na":1,"nb":2,"a":[["ARO%3A3002812","pp-flo"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"]]},{"id":"ARO:3002818","l":"msrB","na":1,"nb":2,"a":[["ARO%3A3002818","msrB"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/quinupristin.html","quinupristin"]]},{"id":"ARO:3002819","l":"msrC","na":1,"nb":2,"a":[["ARO%3A3002819","msrC"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/quinupristin.html","quinupristin"]]},{"id":"ARO:3002829","l":"vgaA","na":1,"nb":2,"a":[["ARO%3A3002829","vgaA"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002835","l":"lnuA","na":1,"nb":2,"a":[["ARO%3A3002835","lnuA"]],"b":[["antibacterial/lincomycin.html","lincomycin"],["antibacterial/pirlimycin.html","pirlimycin"]]},{"id":"ARO:3002836","l":"lnuB","na":1,"nb":2,"a":[["ARO%3A3002836","lnuB"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002838","l":"lnuD","na":1,"nb":2,"a":[["ARO%3A3002838","lnuD"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002839","l":"lnuF","na":1,"nb":2,"a":[["ARO%3A3002839","lnuF"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002876","l":"ethambutol resistant aftA","na":2,"nb":1,"a":[["ARO%3A3002876","ethambutol resistant aftA"],["ARO%3A3004951","Mycobacterium tuberculosis aftA mutations confer resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3002981","l":"AmrAB-OprM","na":1,"nb":2,"a":[["ARO%3A3002981","AmrAB-OprM"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3002998","l":"CblA beta-lactamase","na":2,"nb":1,"a":[["ARO%3A3002999","CblA-1"],["ARO%3A3002998","CblA beta-lactamase"]],"b":[["antibacterial/cefaloridine.html","cefaloridine"]]},{"id":"ARO:3003035","l":"mfpA","na":1,"nb":2,"a":[["ARO%3A3003035","mfpA"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/sparfloxacin.html","sparfloxacin"]]},{"id":"ARO:3003054","l":"SmeDEF","na":1,"nb":2,"a":[["ARO%3A3003054","SmeDEF"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003090","l":"daptomycin-resistant beta-subunit of RNA polymerase (rpoB)","na":2,"nb":1,"a":[["ARO%3A3003090","daptomycin-resistant beta-subunit of RNA polymerase (rpoB)"],["ARO%3A3003287","Staphylococcus aureus rpoB mutants conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003091","l":"daptomycin resistant mprF","na":2,"nb":1,"a":[["ARO%3A3003091","daptomycin resistant mprF"],["ARO%3A3003319","Staphylococcus aureus mprF with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003106","l":"Erm(42)","na":1,"nb":2,"a":[["ARO%3A3003106","Erm(42)"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003107","l":"mef(B)","na":1,"nb":2,"a":[["ARO%3A3003107","mef(B)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003111","l":"lsaB","na":1,"nb":2,"a":[["ARO%3A3003111","lsaB"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"ARO:3003197","l":"aadA25","na":1,"nb":2,"a":[["ARO%3A3003197","aadA25"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003206","l":"lsaE","na":1,"nb":2,"a":[["ARO%3A3003206","lsaE"]],"b":[["antibacterial/lincomycin.html","lincomycin"],["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"ARO:3003209","l":"fosA5","na":1,"nb":2,"a":[["ARO%3A3003209","fosA5"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/gentamicin.html","gentamicin"]]},{"id":"ARO:3003290","l":"daptomycin-resistant beta prime subunit of RNA polymerase (rpoC)","na":2,"nb":1,"a":[["ARO%3A3003290","daptomycin-resistant beta prime subunit of RNA polymerase (rpoC)"],["ARO%3A3003291","Staphylococcus aureus rpoC conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003378","l":"Escherichia coli AcrAB-TolC with MarR mutations conferring resistance to ciprofloxacin and tetracycline","na":1,"nb":2,"a":[["ARO%3A3003378","Escherichia coli AcrAB-TolC with MarR mutations conferring resistance to ciprofloxacin and tetracycline"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003401","l":"","na":2,"nb":1,"a":[["ARO%3A3003388","dapsone resistant dihydropteroate synthase folP"],["ARO%3A3003389","Mycobacterium leprae folP with mutation conferring resistance to dapsone"]],"b":[["antimycobacterial/dapsone.html","dapsone"]]},{"id":"ARO:3003447","l":"ethambutol resistant iniA","na":2,"nb":1,"a":[["ARO%3A3003447","ethambutol resistant iniA"],["ARO%3A3003448","Mycobacterium tuberculosis iniA mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003450","l":"Ethambutol resistant iniC","na":2,"nb":1,"a":[["ARO%3A3003450","Ethambutol resistant iniC"],["ARO%3A3003451","Mycobacterium tuberculosis iniC mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003452","l":"ethambutol resistant embA","na":2,"nb":1,"a":[["ARO%3A3003452","ethambutol resistant embA"],["ARO%3A3003453","Mycobacterium tuberculosis embA mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003454","l":"ethambutol resistant embR","na":2,"nb":1,"a":[["ARO%3A3003454","ethambutol resistant embR"],["ARO%3A3003455","Mycobacterium tuberculosis embR mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003458","l":"Mycobacterium tuberculosis ethA with mutation conferring resistance to ethionamide","na":2,"nb":1,"a":[["ARO%3A3003457","ethionamide resistant ethA"],["ARO%3A3003458","Mycobacterium tuberculosis ethA with mutation conferring resistance to ethionamide"]],"b":[["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"ARO:3003499","l":"Cutibacterium acnes 16S rRNA mutation conferring resistance to tetracycline","na":2,"nb":1,"a":[["ARO%3A3003499","Cutibacterium acnes 16S rRNA mutation conferring resistance to tetracycline"],["ARO%3A3003977","Halobacterium salinarum 16S rRNA mutation conferring resistance to pactamycin"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003573","l":"LpxA","na":1,"nb":2,"a":[["ARO%3A3003573","LpxA"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003574","l":"LpxC","na":1,"nb":2,"a":[["ARO%3A3003574","LpxC"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003575","l":"LpxD","na":1,"nb":2,"a":[["ARO%3A3003575","LpxD"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003585","l":"Klebsiella mutant PhoP conferring antibiotic resistance to colistin","na":1,"nb":2,"a":[["ARO%3A3003585","Klebsiella mutant PhoP conferring antibiotic resistance to colistin"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003676","l":"AAC(6')-Ib'","na":1,"nb":2,"a":[["ARO%3A3003676","AAC(6')-Ib'"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3003689","l":"MCR-1.1","na":1,"nb":2,"a":[["ARO%3A3003689","MCR-1.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003694","l":"MexJK-OprM","na":1,"nb":2,"a":[["ARO%3A3003694","MexJK-OprM"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003703","l":"MexMN-OprM","na":1,"nb":2,"a":[["ARO%3A3003703","MexMN-OprM"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"ARO:3003722","l":"glycopeptide resistance gene cluster VanI","na":1,"nb":2,"a":[["ARO%3A3003722","glycopeptide resistance gene cluster VanI"]],"b":[["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3003751","l":"Escherichia coli nfsA mutations conferring resistance to nitrofurantoin","na":2,"nb":1,"a":[["ARO%3A3003754","antibiotic resistant nfsA"],["ARO%3A3003751","Escherichia coli nfsA mutations conferring resistance to nitrofurantoin"]],"b":[["antibacterial/nitrofurantoin.html","nitrofurantoin"]]},{"id":"ARO:3003795","l":"daptomycin resistant walK","na":2,"nb":1,"a":[["ARO%3A3003795","daptomycin resistant walK"],["ARO%3A3003794","Staphylococcus aureus walK with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003796","l":"Acinetobacter baumannii ampC beta-lactamase","na":1,"nb":2,"a":[["ARO%3A3003796","Acinetobacter baumannii ampC beta-lactamase"]],"b":[["antibacterial/cefepime.html","cefepime"],["antibacterial/piperacillin.html","piperacillin"]]},{"id":"ARO:3003798","l":"daptomycin resistant YybT","na":2,"nb":1,"a":[["ARO%3A3003798","daptomycin resistant YybT"],["ARO%3A3003797","Enterococcus faecalis YybT with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003802","l":"daptomycin resistant gdpD","na":2,"nb":1,"a":[["ARO%3A3003802","daptomycin resistant gdpD"],["ARO%3A3003800","Enterococcus faecalis gdpD with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003804","l":"daptomycin resistant agrA","na":2,"nb":1,"a":[["ARO%3A3003804","daptomycin resistant agrA"],["ARO%3A3003803","Staphylococcus aureus agrA with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003808","l":"carO","na":1,"nb":2,"a":[["ARO%3A3003808","carO"]],"b":[["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3003814","l":"daptomycin resistant drmA","na":2,"nb":1,"a":[["ARO%3A3003814","daptomycin resistant drmA"],["ARO%3A3003813","Enterococcus faecalis drmA with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003816","l":"daptomycin resistant YvlB","na":2,"nb":1,"a":[["ARO%3A3003816","daptomycin resistant YvlB"],["ARO%3A3003815","Enterococcus faecalis YvlB with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003820","l":"mgrB","na":1,"nb":2,"a":[["ARO%3A3003820","mgrB"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003893","l":"Escherichia coli uhpA with mutation conferring resistance to fosfomycin","na":2,"nb":1,"a":[["ARO%3A3003893","Escherichia coli uhpA with mutation conferring resistance to fosfomycin"],["ARO%3A3004249","UhpA"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003895","l":"Pseudomonas mutant PhoP conferring resistance to colistin","na":1,"nb":2,"a":[["ARO%3A3003895","Pseudomonas mutant PhoP conferring resistance to colistin"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003896","l":"Pseudomonas mutant PhoQ conferring resistance to colistin","na":1,"nb":2,"a":[["ARO%3A3003896","Pseudomonas mutant PhoQ conferring resistance to colistin"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3003899","l":"Escherichia coli PtsI with mutation conferring resistance to fosfomycin","na":2,"nb":1,"a":[["ARO%3A3004250","antibiotic-resistant ptsI phosphotransferase"],["ARO%3A3003899","Escherichia coli PtsI with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003926","l":"Salmonella enterica gyrA conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3003926","Salmonella enterica gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3003928","l":"Neisseria gonorrhoeae gyrA with mutations conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3003928","Neisseria gonorrhoeae gyrA with mutations conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/sitafloxacin.html","Sitafloxacin"]]},{"id":"ARO:3003929","l":"Neisseria gonorrhoeae parC conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3003929","Neisseria gonorrhoeae parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/sitafloxacin.html","Sitafloxacin"]]},{"id":"ARO:3003937","l":"Neisseria meningititis PBP2 conferring resistance to beta-lactam","na":1,"nb":2,"a":[["ARO%3A3003937","Neisseria meningititis PBP2 conferring resistance to beta-lactam"]],"b":[["antibacterial/cefixime.html","cefixime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3003939","l":"Salmonella enterica parC conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3003939","Salmonella enterica parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3003940","l":"Shigella flexneri gyrA conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3003940","Shigella flexneri gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/nalidixic-acid.html","nalidixic acid"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3003941","l":"Shigella flexneri parC conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3003941","Shigella flexneri parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/nalidixic-acid.html","nalidixic acid"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3003953","l":"hmrM","na":1,"nb":2,"a":[["ARO%3A3003953","hmrM"]],"b":[["antibacterial/norfloxacin.html","norfloxacin"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3003955","l":"efpA","na":1,"nb":2,"a":[["ARO%3A3003955","efpA"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3003967","l":"lfrA","na":1,"nb":2,"a":[["ARO%3A3003967","lfrA"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3003968","l":"Klebsiella pneumoniae OmpK36","na":1,"nb":2,"a":[["ARO%3A3003968","Klebsiella pneumoniae OmpK36"]],"b":[["antibacterial/cefalotin.html","cefalotin"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3003971","l":"Erm(44)v","na":1,"nb":2,"a":[["ARO%3A3003971","Erm(44)v"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003974","l":"Cutibacterium acnes gyrA conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3003974","Cutibacterium acnes gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"ARO:3004057","l":"23S rRNA with mutation conferring resistance to linezolid antibiotics","na":2,"nb":1,"a":[["ARO%3A3004057","23S rRNA with mutation conferring resistance to linezolid antibiotics"],["ARO%3A3004058","Staphylococcus aureus 23S rRNA with mutation conferring resistance to linezolid"]],"b":[["antibacterial/linezolid.html","linezolid"]]},{"id":"ARO:3004070","l":"MexEF-OprN with MvaT deletion conferring resistance to chloramphenicol and norfloxacin","na":1,"nb":2,"a":[["ARO%3A3004070","MexEF-OprN with MvaT deletion conferring resistance to chloramphenicol and norfloxacin"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3004086","l":"","na":1,"nb":2,"a":[["ARO%3A3004086","APH(3')-VIIIb"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004087","l":"","na":1,"nb":2,"a":[["ARO%3A3004087","APH(3')-IXa"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004089","l":"","na":1,"nb":2,"a":[["ARO%3A3004089","ANT(3')-IIa"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004090","l":"","na":1,"nb":2,"a":[["ARO%3A3004090","ANT(3')-IIb"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004091","l":"","na":1,"nb":2,"a":[["ARO%3A3004091","ANT(3')-IIc"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004096","l":"daptomycin resistant CdsA","na":2,"nb":1,"a":[["ARO%3A3004096","daptomycin resistant CdsA"],["ARO%3A3004097","Streptococcus mitis CdsA with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3004110","l":"MCR-2.1","na":1,"nb":2,"a":[["ARO%3A3004110","MCR-2.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004114","l":"porin OmpC","na":1,"nb":2,"a":[["ARO%3A3004114","porin OmpC"]],"b":[["antibacterial/cefaloridine.html","cefaloridine"],["antibacterial/cefazolin.html","cefazolin"]]},{"id":"ARO:3004122","l":"Klebsiella pneumoniae OmpK37","na":1,"nb":2,"a":[["ARO%3A3004122","Klebsiella pneumoniae OmpK37"]],"b":[["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/cefoxitin.html","cefoxitin"]]},{"id":"ARO:3004131","l":"Escherichia coli 23S rRNA with mutation conferring resistance to erythromycin and telithromycin","na":1,"nb":2,"a":[["ARO%3A3004131","Escherichia coli 23S rRNA with mutation conferring resistance to erythromycin and telithromycin"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/telithromycin.html","telithromycin"]]},{"id":"ARO:3004136","l":"Ethambutol resistant iniB","na":2,"nb":1,"a":[["ARO%3A3004136","Ethambutol resistant iniB"],["ARO%3A3004135","Mycobacterium tuberculosis iniB with mutation conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3004138","l":"Moraxella catarrhalis 23S rRNA with mutation conferring resistance to macrolide antibiotics","na":1,"nb":2,"a":[["ARO%3A3004138","Moraxella catarrhalis 23S rRNA with mutation conferring resistance to macrolide antibiotics"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004139","l":"MCR-3.1","na":1,"nb":2,"a":[["ARO%3A3004139","MCR-3.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004146","l":"cfrC","na":1,"nb":2,"a":[["ARO%3A3004146","cfrC"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"]]},{"id":"ARO:3004170","l":"Streptococcus pneumoniae 23S rRNA with mutation conferring resistance to macrolide antibiotics","na":1,"nb":2,"a":[["ARO%3A3004170","Streptococcus pneumoniae 23S rRNA with mutation conferring resistance to macrolide antibiotics"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3004177","l":"Mycoplasmopsis fermentans 23S rRNA with mutation conferring resistance to macrolide antibiotics","na":1,"nb":2,"a":[["ARO%3A3004177","Mycoplasmopsis fermentans 23S rRNA with mutation conferring resistance to macrolide antibiotics"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004194","l":"MCR-1.2","na":1,"nb":2,"a":[["ARO%3A3004194","MCR-1.2"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004285","l":"tunicamycin resistance protein","na":2,"nb":1,"a":[["ARO%3A3003059","tmrB"],["ARO%3A3004285","tunicamycin resistance protein"]],"b":[["antibacterial/tunicamycin.html","tunicamycin"]]},{"id":"ARO:3004325","l":"MCR-4.1","na":1,"nb":2,"a":[["ARO%3A3004325","MCR-4.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004332","l":"MCR-5.1","na":1,"nb":2,"a":[["ARO%3A3004332","MCR-5.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004466","l":"ICR-Mc","na":1,"nb":2,"a":[["ARO%3A3004466","ICR-Mc"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004490","l":"delamanid","na":2,"nb":1,"a":[["ARO%3A3007661","Mycobacterium tuberculosis ddn mutation conferring resistance to nitroimidazole antibiotics"],["ARO%3A3007849","Mycobacterium tuberculosis fgd1 with mutation conferring resistance to delamanid"]],"b":[["antibacterial/delamanid.html","delamanid"]]},{"id":"ARO:3004500","l":"MCR-3.11","na":1,"nb":2,"a":[["ARO%3A3004500","MCR-3.11"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004501","l":"MCR-6.1","na":1,"nb":2,"a":[["ARO%3A3004501","MCR-6.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004502","l":"MCR-2.2","na":1,"nb":2,"a":[["ARO%3A3004502","MCR-2.2"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004503","l":"MCR-3.6","na":1,"nb":2,"a":[["ARO%3A3004503","MCR-3.6"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004504","l":"MCR-3.10","na":1,"nb":2,"a":[["ARO%3A3004504","MCR-3.10"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004505","l":"MCR-3.5","na":1,"nb":2,"a":[["ARO%3A3004505","MCR-3.5"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004506","l":"MCR-1.10","na":1,"nb":2,"a":[["ARO%3A3004506","MCR-1.10"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004507","l":"MCR-1.9","na":1,"nb":2,"a":[["ARO%3A3004507","MCR-1.9"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004508","l":"MCR-3.9","na":1,"nb":2,"a":[["ARO%3A3004508","MCR-3.9"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004509","l":"MCR-3.8","na":1,"nb":2,"a":[["ARO%3A3004509","MCR-3.8"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004510","l":"MCR-3.7","na":1,"nb":2,"a":[["ARO%3A3004510","MCR-3.7"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004511","l":"MCR-3.2","na":1,"nb":2,"a":[["ARO%3A3004511","MCR-3.2"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004513","l":"MCR-1.6","na":1,"nb":2,"a":[["ARO%3A3004513","MCR-1.6"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004514","l":"MCR-1.3","na":1,"nb":2,"a":[["ARO%3A3004514","MCR-1.3"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004515","l":"MCR-1.4","na":1,"nb":2,"a":[["ARO%3A3004515","MCR-1.4"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004516","l":"MCR-8.1","na":1,"nb":2,"a":[["ARO%3A3004516","MCR-8.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004517","l":"MCR-7.1","na":1,"nb":2,"a":[["ARO%3A3004517","MCR-7.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004541","l":"mphK","na":1,"nb":2,"a":[["ARO%3A3004541","mphK"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/telithromycin.html","telithromycin"]]},{"id":"ARO:3004560","l":"murG transferase","na":2,"nb":1,"a":[["ARO%3A3004561","Clostridioides difficile murG with mutation conferring resistance to vancomycin"],["ARO%3A3004560","murG transferase"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3004563","l":"Clostridioides difficile rpoB with mutation conferring resistance to rifampicin","na":1,"nb":2,"a":[["ARO%3A3004563","Clostridioides difficile rpoB with mutation conferring resistance to rifampicin"]],"b":[["antibacterial/rifaximin.html","rifaximin"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3004569","l":"ICR-Mo","na":1,"nb":2,"a":[["ARO%3A3004569","ICR-Mo"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004574","l":"Acinetobacter baumannii AbaQ","na":1,"nb":2,"a":[["ARO%3A3004574","Acinetobacter baumannii AbaQ"]],"b":[["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3004577","l":"Acinetobacter baumannii AmvA","na":1,"nb":2,"a":[["ARO%3A3004577","Acinetobacter baumannii AmvA"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"],["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3004581","l":"tet(48)","na":1,"nb":2,"a":[["ARO%3A3004581","tet(48)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004582","l":"tet(49)","na":1,"nb":2,"a":[["ARO%3A3004582","tet(49)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004584","l":"tet(50)","na":1,"nb":2,"a":[["ARO%3A3004584","tet(50)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004586","l":"tet(51)","na":1,"nb":2,"a":[["ARO%3A3004586","tet(51)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004587","l":"tet(52)","na":1,"nb":2,"a":[["ARO%3A3004587","tet(52)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004590","l":"tet(54)","na":1,"nb":2,"a":[["ARO%3A3004590","tet(54)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004600","l":"LnuH","na":1,"nb":2,"a":[["ARO%3A3004600","LnuH"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3004603","l":"tet(56)","na":1,"nb":2,"a":[["ARO%3A3004603","tet(56)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004613","l":"tet(47)","na":1,"nb":2,"a":[["ARO%3A3004613","tet(47)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004616","l":"Mycoplasma genitalium 23S rRNA mutations confers resistance to fluoroquinolone and macrolide antibiotics","na":1,"nb":2,"a":[["ARO%3A3004616","Mycoplasma genitalium 23S rRNA mutations confers resistance to fluoroquinolone and macrolide antibiotics"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3004626","l":"Erm(49)","na":1,"nb":2,"a":[["ARO%3A3004626","Erm(49)"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004641","l":"","na":1,"nb":2,"a":[["ARO%3A3004641","AAC(6')-I-43"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3004654","l":"Clostridioides difficile 23S rRNA with mutation conferring resistance to erythromycin and clindamycin","na":1,"nb":2,"a":[["ARO%3A3004654","Clostridioides difficile 23S rRNA with mutation conferring resistance to erythromycin and clindamycin"]],"b":[["antibacterial/clindamycin.html","clindamycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004662","l":"MCR-3.3","na":1,"nb":2,"a":[["ARO%3A3004662","MCR-3.3"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004666","l":"pexA","na":1,"nb":2,"a":[["ARO%3A3004666","pexA"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/florfenicol.html","florfenicol"]]},{"id":"ARO:3004678","l":"rmtE","na":1,"nb":2,"a":[["ARO%3A3004678","rmtE"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/gentamycin-a.html","gentamycin A"]]},{"id":"ARO:3004680","l":"","na":1,"nb":2,"a":[["ARO%3A3004680","APH(3')-VIIIa"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004682","l":"aadA27","na":1,"nb":2,"a":[["ARO%3A3004682","aadA27"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004684","l":"MCR-9.1","na":1,"nb":2,"a":[["ARO%3A3004684","MCR-9.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004685","l":"MCR-1.5","na":1,"nb":2,"a":[["ARO%3A3004685","MCR-1.5"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004686","l":"MCR-1.7","na":1,"nb":2,"a":[["ARO%3A3004686","MCR-1.7"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004687","l":"MCR-1.8","na":1,"nb":2,"a":[["ARO%3A3004687","MCR-1.8"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004688","l":"MCR-1.11","na":1,"nb":2,"a":[["ARO%3A3004688","MCR-1.11"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004689","l":"MCR-1.12","na":1,"nb":2,"a":[["ARO%3A3004689","MCR-1.12"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004690","l":"MCR-1.13","na":1,"nb":2,"a":[["ARO%3A3004690","MCR-1.13"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004691","l":"MCR-3.4","na":1,"nb":2,"a":[["ARO%3A3004691","MCR-3.4"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004692","l":"aadA10","na":1,"nb":2,"a":[["ARO%3A3004692","aadA10"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004693","l":"MCR-3.12","na":1,"nb":2,"a":[["ARO%3A3004693","MCR-3.12"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004694","l":"MCR-4.2","na":1,"nb":2,"a":[["ARO%3A3004694","MCR-4.2"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004695","l":"MCR-4.3","na":1,"nb":2,"a":[["ARO%3A3004695","MCR-4.3"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004696","l":"MCR-4.4","na":1,"nb":2,"a":[["ARO%3A3004696","MCR-4.4"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004697","l":"MCR-4.5","na":1,"nb":2,"a":[["ARO%3A3004697","MCR-4.5"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004698","l":"MCR-5.2","na":1,"nb":2,"a":[["ARO%3A3004698","MCR-5.2"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3004704","l":"aadA8b","na":1,"nb":2,"a":[["ARO%3A3004704","aadA8b"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004719","l":"tet(X3)","na":1,"nb":2,"a":[["ARO%3A3004719","tet(X3)"]],"b":[["antibacterial/tetracycline.html","tetracycline"],["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:3004720","l":"tet(X4)","na":1,"nb":2,"a":[["ARO%3A3004720","tet(X4)"]],"b":[["antibacterial/tetracycline.html","tetracycline"],["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:3004721","l":"Mycobacterium tuberculosis rpsA mutations conferring resistance to pyrazinamide","na":2,"nb":1,"a":[["ARO%3A3004721","Mycobacterium tuberculosis rpsA mutations conferring resistance to pyrazinamide"],["ARO%3A3004722","pyrazinamide resistant rpsA"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004832","l":"Neisseria gonorrhoeae PBP2 conferring resistance to beta-lactam antibiotics","na":1,"nb":2,"a":[["ARO%3A3004832","Neisseria gonorrhoeae PBP2 conferring resistance to beta-lactam antibiotics"]],"b":[["antibacterial/cefixime.html","cefixime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3004851","l":"Neisseria gonorrhoeae mtrR with mutation conferring resistance","na":1,"nb":2,"a":[["ARO%3A3004851","Neisseria gonorrhoeae mtrR with mutation conferring resistance"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004918","l":"Mycobacterium tuberculosis eccB5 conferring resistance to fluoroquinolones","na":2,"nb":1,"a":[["ARO%3A3004918","Mycobacterium tuberculosis eccB5 conferring resistance to fluoroquinolones"],["ARO%3A3004919","Mycobacterium tuberculosis eccC5 conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3004930","l":"Mycobacterium tuberculosis nat mutations conferring resistance to isoniazid","na":2,"nb":1,"a":[["ARO%3A3004910","isoniazid resistant nat"],["ARO%3A3004930","Mycobacterium tuberculosis nat mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004960","l":"Mycobacterium tuberculosis ponA1 mutations conferring resistance to rifabutin","na":1,"nb":2,"a":[["ARO%3A3004960","Mycobacterium tuberculosis ponA1 mutations conferring resistance to rifabutin"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3004965","l":"streptomycin resistant whib7","na":2,"nb":1,"a":[["ARO%3A3004968","Mycobacterium tuberculosis whib7 mutation conferring resistance to streptomycin"],["ARO%3A3004965","streptomycin resistant whib7"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004966","l":"Kanamycin resistant whib7","na":2,"nb":1,"a":[["ARO%3A3004966","Kanamycin resistant whib7"],["ARO%3A3004967","Mycobacterium tuberculosis whib7 mutations confer resistance to kanamycin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004994","l":"Mycobacterium tuberculosis rpoC mutations confer resistance to rifampicin","na":1,"nb":2,"a":[["ARO%3A3004994","Mycobacterium tuberculosis rpoC mutations confer resistance to rifampicin"]],"b":[["antibacterial/rifabutin.html","rifabutin"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3004998","l":"rifampicin resistant rpoA","na":2,"nb":1,"a":[["ARO%3A3004999","Mycobacterium tuberculosis rpoA mutations confer resistance to rifampicin"],["ARO%3A3004998","rifampicin resistant rpoA"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3005023","l":"cfrE","na":1,"nb":2,"a":[["ARO%3A3005023","cfrE"]],"b":[["antibacterial/thiamphenicol.html","thiamphenicol"],["antibacterial/tiamulin.html","tiamulin"]]},{"id":"ARO:3005044","l":"OmpA","na":1,"nb":2,"a":[["ARO%3A3005044","OmpA"]],"b":[["antibacterial/defensin.html","defensin"],["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3005049","l":"CrcB","na":1,"nb":2,"a":[["ARO%3A3005049","CrcB"]],"b":[["antibacterial/gentamicin.html","gentamicin"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005052","l":"LpsA","na":1,"nb":2,"a":[["ARO%3A3005052","LpsA"]],"b":[["antibacterial/defensin.html","defensin"],["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3005053","l":"ArnT","na":1,"nb":2,"a":[["ARO%3A3005053","ArnT"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3005061","l":"AAC(3)-IVb","na":1,"nb":2,"a":[["ARO%3A3005061","AAC(3)-IVb"]],"b":[["antibacterial/gentamycin-a.html","gentamycin A"],["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3005062","l":"","na":1,"nb":2,"a":[["ARO%3A3005062","ANT(3')-Ib"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"],["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3005081","l":"Thermus thermophilus uL3 mutations conferring resistance to pleuromutilin antibiotics","na":2,"nb":1,"a":[["ARO%3A3005082","Ribosomal protein mutation conferring resistance to pleuromutilin antibiotics"],["ARO%3A3005081","Thermus thermophilus uL3 mutations conferring resistance to pleuromutilin antibiotics"]],"b":[["antibacterial/tiamulin.html","tiamulin"]]},{"id":"ARO:3005221","l":"MCR-3.41","na":1,"nb":2,"a":[["ARO%3A3005221","MCR-3.41"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007023","l":"NDM-33","na":1,"nb":2,"a":[["ARO%3A3007023","NDM-33"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3007029","l":"salE","na":1,"nb":2,"a":[["ARO%3A3007029","salE"]],"b":[["antibacterial/retapamulin.html","retapamulin"],["antibacterial/tiamulin.html","tiamulin"]]},{"id":"ARO:3007042","l":"msr(G)","na":1,"nb":2,"a":[["ARO%3A3007042","msr(G)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3007044","l":"mef(F)","na":1,"nb":2,"a":[["ARO%3A3007044","mef(F)"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3007051","l":"Helicobacter pylori rpoB mutation conferring resistance to rifampicin","na":1,"nb":2,"a":[["ARO%3A3007051","Helicobacter pylori rpoB mutation conferring resistance to rifampicin"]],"b":[["antibacterial/levofloxacin.html","levofloxacin"],["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3007053","l":"Helicobacter pylori gyrB conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3007053","Helicobacter pylori gyrB conferring resistance to fluoroquinolones"]],"b":[["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3007055","l":"Helicobacter pylori rdxA mutation conferring resistance to metronidazole","na":2,"nb":1,"a":[["ARO%3A3007056","Antibiotic resistant Helicobacter pylori nitroreductase"],["ARO%3A3007055","Helicobacter pylori rdxA mutation conferring resistance to metronidazole"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007070","l":"MCR-1.33","na":1,"nb":2,"a":[["ARO%3A3007070","MCR-1.33"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007118","l":"crxA","na":1,"nb":2,"a":[["ARO%3A3007118","crxA"]],"b":[["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3007137","l":"mcr-10.1","na":1,"nb":2,"a":[["ARO%3A3007137","mcr-10.1"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007158","l":"","na":2,"nb":1,"a":[["ARO%3A3003976","16S rRNA with mutation conferring resistance to pactamycin"],["ARO%3A3003977","Halobacterium salinarum 16S rRNA mutation conferring resistance to pactamycin"]],"b":[["antibacterial/pactamycin.html","pactamycin"]]},{"id":"ARO:3007160","l":"","na":2,"nb":1,"a":[["ARO%3A3004859","Neisseria gonorrhoeae gyrB conferring resistance to zoliflodacin"],["ARO%3A3005000","Zoliflodacin resistant gyrB"]],"b":[["antibacterial/zoliflodacin.html","zoliflodacin"]]},{"id":"ARO:3007187","l":"glycopeptide resistance gene cluster vanP","na":1,"nb":2,"a":[["ARO%3A3007187","glycopeptide resistance gene cluster vanP"]],"b":[["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3007199","l":"PAM-1","na":1,"nb":2,"a":[["ARO%3A3007199","PAM-1"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/doripenem.html","doripenem"]]},{"id":"ARO:3007203","l":"Klebsiella pneumoniae mutant PhoQ conferring resistance to colistin","na":1,"nb":2,"a":[["ARO%3A3007203","Klebsiella pneumoniae mutant PhoQ conferring resistance to colistin"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007227","l":"MCR-8.3","na":1,"nb":2,"a":[["ARO%3A3007227","MCR-8.3"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007228","l":"MCR-8.4","na":1,"nb":2,"a":[["ARO%3A3007228","MCR-8.4"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007229","l":"MCR-8.2","na":1,"nb":2,"a":[["ARO%3A3007229","MCR-8.2"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007230","l":"MCR-1.34","na":1,"nb":2,"a":[["ARO%3A3007230","MCR-1.34"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007231","l":"MCR-4.6","na":1,"nb":2,"a":[["ARO%3A3007231","MCR-4.6"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007232","l":"MCR-1.27","na":1,"nb":2,"a":[["ARO%3A3007232","MCR-1.27"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007233","l":"MCR-1.18","na":1,"nb":2,"a":[["ARO%3A3007233","MCR-1.18"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007234","l":"MCR-1.23","na":1,"nb":2,"a":[["ARO%3A3007234","MCR-1.23"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007235","l":"MCR-1.20","na":1,"nb":2,"a":[["ARO%3A3007235","MCR-1.20"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007236","l":"MCR-1.28","na":1,"nb":2,"a":[["ARO%3A3007236","MCR-1.28"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007237","l":"MCR-1.21","na":1,"nb":2,"a":[["ARO%3A3007237","MCR-1.21"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007238","l":"MCR-1.16","na":1,"nb":2,"a":[["ARO%3A3007238","MCR-1.16"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007239","l":"MCR-1.22","na":1,"nb":2,"a":[["ARO%3A3007239","MCR-1.22"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007240","l":"MCR-1.19","na":1,"nb":2,"a":[["ARO%3A3007240","MCR-1.19"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007241","l":"MCR-1.29","na":1,"nb":2,"a":[["ARO%3A3007241","MCR-1.29"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007242","l":"MCR-1.30","na":1,"nb":2,"a":[["ARO%3A3007242","MCR-1.30"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007243","l":"MCR-1.24","na":1,"nb":2,"a":[["ARO%3A3007243","MCR-1.24"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007244","l":"MCR-1.17","na":1,"nb":2,"a":[["ARO%3A3007244","MCR-1.17"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007245","l":"MCR-1.31","na":1,"nb":2,"a":[["ARO%3A3007245","MCR-1.31"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007246","l":"MCR-1.14","na":1,"nb":2,"a":[["ARO%3A3007246","MCR-1.14"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007247","l":"MCR-1.25","na":1,"nb":2,"a":[["ARO%3A3007247","MCR-1.25"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007248","l":"MCR-3.33","na":1,"nb":2,"a":[["ARO%3A3007248","MCR-3.33"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007249","l":"MCR-3.14","na":1,"nb":2,"a":[["ARO%3A3007249","MCR-3.14"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007250","l":"MCR-3.37","na":1,"nb":2,"a":[["ARO%3A3007250","MCR-3.37"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007251","l":"MCR-3.38","na":1,"nb":2,"a":[["ARO%3A3007251","MCR-3.38"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007252","l":"MCR-3.15","na":1,"nb":2,"a":[["ARO%3A3007252","MCR-3.15"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007253","l":"MCR-3.27","na":1,"nb":2,"a":[["ARO%3A3007253","MCR-3.27"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007254","l":"MCR-3.32","na":1,"nb":2,"a":[["ARO%3A3007254","MCR-3.32"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007255","l":"MCR-3.31","na":1,"nb":2,"a":[["ARO%3A3007255","MCR-3.31"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007256","l":"MCR-3.23","na":1,"nb":2,"a":[["ARO%3A3007256","MCR-3.23"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007257","l":"MCR-3.36","na":1,"nb":2,"a":[["ARO%3A3007257","MCR-3.36"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007258","l":"MCR-3.25","na":1,"nb":2,"a":[["ARO%3A3007258","MCR-3.25"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007259","l":"MCR-3.22","na":1,"nb":2,"a":[["ARO%3A3007259","MCR-3.22"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007260","l":"MCR-3.16","na":1,"nb":2,"a":[["ARO%3A3007260","MCR-3.16"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007261","l":"MCR-3.26","na":1,"nb":2,"a":[["ARO%3A3007261","MCR-3.26"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007262","l":"MCR-3.21","na":1,"nb":2,"a":[["ARO%3A3007262","MCR-3.21"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007263","l":"MCR-3.18","na":1,"nb":2,"a":[["ARO%3A3007263","MCR-3.18"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007264","l":"MCR-3.40","na":1,"nb":2,"a":[["ARO%3A3007264","MCR-3.40"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007265","l":"MCR-3.24","na":1,"nb":2,"a":[["ARO%3A3007265","MCR-3.24"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007266","l":"MCR-3.20","na":1,"nb":2,"a":[["ARO%3A3007266","MCR-3.20"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007267","l":"MCR-3.35","na":1,"nb":2,"a":[["ARO%3A3007267","MCR-3.35"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007268","l":"MCR-3.34","na":1,"nb":2,"a":[["ARO%3A3007268","MCR-3.34"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007269","l":"MCR-3.13","na":1,"nb":2,"a":[["ARO%3A3007269","MCR-3.13"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007270","l":"MCR-3.28","na":1,"nb":2,"a":[["ARO%3A3007270","MCR-3.28"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007271","l":"MCR-3.39","na":1,"nb":2,"a":[["ARO%3A3007271","MCR-3.39"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007272","l":"MCR-3.29","na":1,"nb":2,"a":[["ARO%3A3007272","MCR-3.29"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007273","l":"MCR-3.19","na":1,"nb":2,"a":[["ARO%3A3007273","MCR-3.19"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007274","l":"MCR-10.5","na":1,"nb":2,"a":[["ARO%3A3007274","MCR-10.5"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007275","l":"MCR-10.3","na":1,"nb":2,"a":[["ARO%3A3007275","MCR-10.3"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007276","l":"MCR-10.4","na":1,"nb":2,"a":[["ARO%3A3007276","MCR-10.4"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007277","l":"MCR-10.2","na":1,"nb":2,"a":[["ARO%3A3007277","MCR-10.2"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007278","l":"MCR-3.17","na":1,"nb":2,"a":[["ARO%3A3007278","MCR-3.17"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007279","l":"MCR-1.15","na":1,"nb":2,"a":[["ARO%3A3007279","MCR-1.15"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007280","l":"MCR-1.26","na":1,"nb":2,"a":[["ARO%3A3007280","MCR-1.26"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007281","l":"MCR-5.4","na":1,"nb":2,"a":[["ARO%3A3007281","MCR-5.4"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007282","l":"MCR-5.3","na":1,"nb":2,"a":[["ARO%3A3007282","MCR-5.3"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007283","l":"MCR-2.4","na":1,"nb":2,"a":[["ARO%3A3007283","MCR-2.4"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007284","l":"MCR-2.3","na":1,"nb":2,"a":[["ARO%3A3007284","MCR-2.3"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007285","l":"MCR-2.8","na":1,"nb":2,"a":[["ARO%3A3007285","MCR-2.8"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007286","l":"MCR-2.5","na":1,"nb":2,"a":[["ARO%3A3007286","MCR-2.5"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007287","l":"MCR-2.7","na":1,"nb":2,"a":[["ARO%3A3007287","MCR-2.7"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007288","l":"MCR-2.6","na":1,"nb":2,"a":[["ARO%3A3007288","MCR-2.6"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007289","l":"MCR-1.32","na":1,"nb":2,"a":[["ARO%3A3007289","MCR-1.32"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007375","l":"KPC-87","na":1,"nb":2,"a":[["ARO%3A3007375","KPC-87"]],"b":[["antibacterial/imipenem.html","imipenem"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3007402","l":"KPC-94","na":1,"nb":2,"a":[["ARO%3A3007402","KPC-94"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3007423","l":"Escherichia coli PBP3 mutants conferring resistance to beta-lactam antibiotics","na":1,"nb":2,"a":[["ARO%3A3007423","Escherichia coli PBP3 mutants conferring resistance to beta-lactam antibiotics"]],"b":[["antibacterial/ceftaroline.html","ceftaroline"],["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007493","l":"tet(63)","na":1,"nb":2,"a":[["ARO%3A3007493","tet(63)"]],"b":[["antibacterial/doxycycline.html","doxycycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007494","l":"tet(64)","na":1,"nb":2,"a":[["ARO%3A3007494","tet(64)"]],"b":[["antibacterial/doxycycline.html","doxycycline"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007498","l":"","na":1,"nb":2,"a":[["ARO%3A3007640","Candida spp. pleiotropic drug resistance factor 1"]],"b":[["antifungal/naftifine.html","naftifine"],["antifungal/terbinafine.html","terbinafine"]]},{"id":"ARO:3007533","l":"MCR-4.7","na":1,"nb":2,"a":[["ARO%3A3007533","MCR-4.7"]],"b":[["antibacterial/colistin-a.html","colistin A"],["antibacterial/colistin-b.html","colistin B"]]},{"id":"ARO:3007553","l":"Candida spp. CDR1","na":1,"nb":2,"a":[["ARO%3A3007553","Candida spp. CDR1"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/miconazole.html","miconazole"]]},{"id":"ARO:3007554","l":"Candida spp. CDR2","na":1,"nb":2,"a":[["ARO%3A3007554","Candida spp. CDR2"]],"b":[["antifungal/fluconazole.html","fluconazole"],["antifungal/terbinafine.html","terbinafine"]]},{"id":"ARO:3007661","l":"Mycobacterium tuberculosis ddn mutation conferring resistance to nitroimidazole antibiotics","na":1,"nb":2,"a":[["ARO%3A3007661","Mycobacterium tuberculosis ddn mutation conferring resistance to nitroimidazole antibiotics"]],"b":[["antibacterial/delamanid.html","delamanid"],["antibacterial/pretomanid.html","pretomanid"]]},{"id":"ARO:3007662","l":"Rv1877","na":1,"nb":2,"a":[["ARO%3A3007662","Rv1877"]],"b":[["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3007692","l":"Mycobacterium tuberculosis Rv2535c with mutation conferring resistance to bedaquiline","na":1,"nb":2,"a":[["ARO%3A3007692","Mycobacterium tuberculosis Rv2535c with mutation conferring resistance to bedaquiline"]],"b":[["antimycobacterial/bedaquiline.html","bedaquiline"],["antimycobacterial/clofazimine.html","clofazimine"]]},{"id":"ARO:3007751","l":"Salmonella isangi gyrA conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3007751","Salmonella isangi gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3007752","l":"Salmonella isangi gyrB conferring resistance to fluoroquinolones","na":1,"nb":2,"a":[["ARO%3A3007752","Salmonella isangi gyrB conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"ARO:3007861","l":"DYB-1","na":1,"nb":2,"a":[["ARO%3A3007861","DYB-1"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3009148","l":"MexJK","na":2,"nb":1,"a":[["ARO%3A3009148","MexJK"],["ARO%3A3003710","MexL"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3009153","l":"MexHI-OpmD","na":1,"nb":2,"a":[["ARO%3A3009153","MexHI-OpmD"]],"b":[["antibacterial/norfloxacin.html","norfloxacin"],["biocide/acriflavine.html","acriflavine"]]},{"id":"CHEBI:10023","l":"voriconazole","na":2,"nb":1,"a":[["RHEA%3A61912","voriconazole(in) + ATP + H2O = voriconazole(out) + ADP + phosphate + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"CHEBI:100246","l":"norfloxacin","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"CHEBI:10101","l":"zalcitabine","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.41","The Concentrative Nucleoside Transporter (CNT) Family"]],"b":[["antiviral/zalcitabine.html","zalcitabine"]]},{"id":"CHEBI:10110","l":"zidovudine","na":2,"nb":1,"a":[["TCDB%3A2.A.41","The Concentrative Nucleoside Transporter (CNT) Family"],["TCDB%3A2.A.60","The Organo Anion Transporter (OAT) Family"]],"b":[["antiviral/zidovudine.html","zidovudine"]]},{"id":"CHEBI:132426","l":"chondrochloren A","na":2,"nb":1,"a":[["EC%3A4.1.1.129","1'-carboxy-chondrochloren decarboxylase"],["RHEA%3A81491","1'-carboxy-chondrochloren A + FAD + 2 H(+) = chondrochloren A + FADH2 + CO2"]],"b":[["unspecified/chondrochloren-a.html","chondrochloren A"]]},{"id":"CHEBI:132442","l":"chondrochloren B","na":2,"nb":1,"a":[["EC%3A4.1.1.129","1'-carboxy-chondrochloren decarboxylase"],["RHEA%3A81495","1'-carboxy-chondrochloren B + FAD + 2 H(+) = chondrochloren B + FADH2 + CO2"]],"b":[["unspecified/chondrochloren-b.html","chondrochloren B"]]},{"id":"CHEBI:132987","l":"alliin zwitterion","na":2,"nb":1,"a":[["EC%3A4.4.1.4","alliin lyase"],["RHEA%3A54688","alliin = allylsulfenate + 2-aminoprop-2-enoate"]],"b":[["unspecified/alliin-zwitterion.html","alliin zwitterion"]]},{"id":"CHEBI:133907","l":"hypothiocyanous acid","na":2,"nb":1,"a":[["RHEA%3A69416","thiocyanate + H2O2 + H(+) = hypothiocyanous acid + H2O"],["MCSA%3A944","Lactoperoxidase"]],"b":[["antibacterial/hypothiocyanous-acid.html","hypothiocyanous acid"]]},{"id":"CHEBI:137041","l":"quinine(1+)","na":2,"nb":1,"a":[["EC%3A1.14.14.55","quinine 3-monooxygenase"],["RHEA%3A20149","quinine + reduced [NADPH--hemoprotein reductase] + O2 = 3-hydroxyquinine + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["antiprotozoal/quinine-1.html","quinine(1+)"]]},{"id":"CHEBI:137419","l":"","na":2,"nb":1,"a":[["EC%3A2.1.1.49","amine N-methyltransferase"],["RHEA%3A53924","a secondary amine + S-adenosyl-L-methionine = a methylated secondary amine + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antifungal/solasodine-1.html","solasodine(1+)"]]},{"id":"CHEBI:138224","l":"(13R)-epi-8,13-epoxylabd-14-ene","na":2,"nb":1,"a":[["EC%3A4.2.3.186","ent-13-epi-manoyl oxide synthase"],["RHEA%3A18721","ent-8alpha-hydroxylabd-13-en-15-yl diphosphate = ent-13-epi-manoyl oxide + diphosphate"]],"b":[["antibacterial/13r-epi-8-13-epoxylabd-14-ene.html","(13R)-epi-8,13-epoxylabd-14-ene"]]},{"id":"CHEBI:138945","l":"maniladiol","na":2,"nb":1,"a":[["EC%3A1.14.14.63","beta-amyrin 16beta-monooxygenase"],["RHEA%3A55440","beta-amyrin + reduced [NADPH--hemoprotein reductase] + O2 = maniladiol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["antimycobacterial/maniladiol.html","maniladiol"]]},{"id":"CHEBI:138961","l":"sugiol","na":2,"nb":1,"a":[["EC%3A1.14.14.65","sugiol synthase"],["RHEA%3A55456","ferruginol + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = sugiol + 2 oxidized [NADPH--hemoprotein reductase] + 3 H2O + 2 H(+)"]],"b":[["antiviral/sugiol.html","sugiol"]]},{"id":"CHEBI:140183","l":"","na":2,"nb":1,"a":[["EC%3A1.1.1.348","(3R)-2'-hydroxyisoflavanone reductase"],["RHEA%3A56284","a (3R,4R)-4,2'-dihydroxyisoflavan + NADP(+) = a (3R)-2'-hydroxyisoflavanone + NADPH + H(+)"]],"b":[["antibacterial/vestitone.html","vestitone"]]},{"id":"CHEBI:141992","l":"","na":2,"nb":1,"a":[["EC%3A1.14.14.162","flavanone 2-hydroxylase"],["RHEA%3A57584","a flavanone + reduced [NADPH--hemoprotein reductase] + O2 = a 2-hydroxyflavanone + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["antiviral/2s-2-7-dihydroxy-5-methoxy-6-8-dimethylflavanone.html","(2S)-2,7-dihydroxy-5-methoxy-6,8-dimethylflavanone"]]},{"id":"CHEBI:142061","l":"trichosetin(1−)","na":2,"nb":1,"a":[["RHEA%3A67328","(5S)-3-[(2E,6R,8E,10E,12E)-2,6-dimethyltetradeca-2,8,10,12-tetraenoyl]-5-(hydroxymethyl)pyrrolidine-2,4-dione = trichosetin"],["RHEA%3A57648","trichosetin + S-adenosyl-L-methionine = equisetin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/trichosetin-1.html","trichosetin(1−)"]]},{"id":"CHEBI:143285","l":"L-propargylglycine zwitterion","na":2,"nb":1,"a":[["RHEA%3A59892","L-2-amino-4-chloropent-4-enoate = L-propargylglycine + chloride + H(+)"],["RHEA%3A59896","L-propargylglycine + L-glutamate + ATP = L-gamma-glutamyl-L-propargylglycine + ADP + phosphate + H(+)"]],"b":[["unspecified/l-propargylglycine-zwitterion.html","L-propargylglycine zwitterion"]]},{"id":"CHEBI:145111","l":"isopatulin","na":2,"nb":1,"a":[["RHEA%3A62224","neopatulin + NADPH + H(+) = (E)-ascladiol + NADP(+)"],["RHEA%3A62220","phyllostine = neopatulin"]],"b":[["antibacterial/isopatulin.html","isopatulin"]]},{"id":"CHEBI:145874","l":"deoxyherqueinone(1−)","na":2,"nb":1,"a":[["RHEA%3A62664","(2'R)-atrovenetin + S-adenosyl-L-methionine = deoxyherqueinone + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A62668","deoxyherqueinone + NADPH + O2 + H(+) = herqueinone + NADP(+) + H2O"]],"b":[["antibacterial/deoxyherqueinone-1.html","deoxyherqueinone(1−)"]]},{"id":"CHEBI:146153","l":"ilicicolin B","na":2,"nb":1,"a":[["RHEA%3A63084","ilicicolin B + FADH2 + chloride + O2 = ilicicolin A + FAD + 2 H2O + H(+)"],["RHEA%3A63080","ilicicolinate B + AH2 + ATP = ilicicolin B + A + AMP + diphosphate"]],"b":[["unspecified/ilicicolin-b.html","ilicicolin B"]]},{"id":"CHEBI:15366","l":"acetic acid","na":2,"nb":1,"a":[["MCSA%3A431","acetylxylan esterase"],["MCSA%3A996","Peptidoglycan-N-acetylglucosamine deacetylase Bc1960"]],"b":[["biocide/acetic-acid.html","acetic acid"]]},{"id":"CHEBI:15390","l":"(+)-bisdechlorogeodin","na":2,"nb":1,"a":[["EC%3A1.21.3.4","sulochrin oxidase [(+)-bisdechlorogeodin-forming]"],["RHEA%3A24092","2 sulochrin + O2 + 2 H(+) = 2 (2S)-bisdechlorogeodin + 2 H2O"]],"b":[["unspecified/bisdechlorogeodin.html","(+)-bisdechlorogeodin"]]},{"id":"CHEBI:15391","l":"(−)-bisdechlorogeodin","na":2,"nb":1,"a":[["EC%3A1.21.3.5","sulochrin oxidase [(-)-bisdechlorogeodin-forming]"],["RHEA%3A22616","2 sulochrin + O2 + 2 H(+) = 2 (2R)-bisdechlorogeodin + 2 H2O"]],"b":[["unspecified/bisdechlorogeodin-15391.html","(−)-bisdechlorogeodin"]]},{"id":"CHEBI:15660","l":"(Z)-2-(2-furyl)-3-(5-nitro-2-furyl)acrylamide","na":2,"nb":1,"a":[["EC%3A5.2.1.6","furylfuramide isomerase"],["RHEA%3A21848","(E)-2-(2-furyl)-3-(5-nitro-2-furyl)acrylamide = (Z)-2-(2-furyl)-3-(5-nitro-2-furyl)acrylamide"]],"b":[["unspecified/z-2-2-furyl-3-5-nitro-2-furyl-acrylamide.html","(Z)-2-(2-furyl)-3-(5-nitro-2-furyl)acrylamide"]]},{"id":"CHEBI:15712","l":"2,3-dihydrobiochanin A","na":2,"nb":1,"a":[["EC%3A1.3.1.46","biochanin-A reductase"],["RHEA%3A12817","2,3-dihydrobiochanin A + NADP(+) = biochanin A + NADPH + 2 H(+)"]],"b":[["antifungal/2-3-dihydrobiochanin-a.html","2,3-dihydrobiochanin A"]]},{"id":"CHEBI:16196","l":"oleic acid","na":2,"nb":1,"a":[["TCDB%3A9.A.76","The Omega3 Fatty Acid Desaturase 3/Putative Transporter (FAD3) Family"],["proteintraitsmech%3ABIOLIP_OLA","OLA-binding site"]],"b":[["antibacterial/oleic-acid.html","oleic acid"]]},{"id":"CHEBI:16605","l":"allyl alcohol","na":2,"nb":1,"a":[["EC%3A1.1.1.54","allyl-alcohol dehydrogenase"],["RHEA%3A12168","allyl alcohol + NADP(+) = acrolein + NADPH + H(+)"]],"b":[["antibacterial/allyl-alcohol.html","allyl alcohol"]]},{"id":"CHEBI:16648","l":"","na":1,"nb":2,"a":[["MCSA%3A159","aryldialkylphosphatase"]],"b":[["antibacterial/dichlorvos.html","dichlorvos"],["antibacterial/naled.html","naled"]]},{"id":"CHEBI:16705","l":"6-aminopenicillanic acid","na":2,"nb":1,"a":[["MCSA%3A241","penicillin amidase (peptidase C59 family)"],["proteintraitsmech%3ABIOLIP_X1E","X1E-binding site"]],"b":[["unspecified/6-aminopenicillanic-acid.html","6-aminopenicillanic acid"]]},{"id":"CHEBI:16774","l":"(2-cis,6-trans)-farnesol","na":2,"nb":1,"a":[["EC%3A5.2.1.9","farnesol 2-isomerase"],["RHEA%3A13401","(2E,6E)-farnesol = (2Z,6E)-farnesol"]],"b":[["unspecified/2-cis-6-trans-farnesol.html","(2-cis,6-trans)-farnesol"]]},{"id":"CHEBI:167830","l":"isorhapontigenin","na":2,"nb":1,"a":[["EC%3A2.1.1.399","resveratrol 4'-O-methyltransferase"],["RHEA%3A82215","isorhapontigenin + S-adenosyl-L-methionine = 4'-O-methylisorhapontigenin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antiviral/isorhapontigenin.html","isorhapontigenin"]]},{"id":"CHEBI:17098","l":"veratraldehyde","na":2,"nb":1,"a":[["EC%3A1.11.1.14","lignin peroxidase"],["RHEA%3A48004","1-(3,4-dimethoxyphenyl)-2-(2-methoxyphenoxy)propane-1,3-diol + H2O2 = 3,4-dimethoxybenzaldehyde + guaiacol + glycolaldehyde + H2O"]],"b":[["antifungal/veratraldehyde.html","veratraldehyde"]]},{"id":"CHEBI:174376","l":"rhapontigenin","na":2,"nb":1,"a":[["EC%3A2.1.1.399","resveratrol 4'-O-methyltransferase"],["RHEA%3A82191","piceatannol + S-adenosyl-L-methionine = rhapontigenin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/rhapontigenin.html","rhapontigenin"]]},{"id":"CHEBI:17630","l":"kanamycin A","na":2,"nb":1,"a":[["MCSA%3A647","kanamycin nucleotidyltransferase"],["proteintraitsmech%3ABIOLIP_KAN","KAN-binding site"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"CHEBI:17695","l":"casbene","na":2,"nb":1,"a":[["EC%3A4.2.3.8","casbene synthase"],["RHEA%3A14901","(2E,6E,10E)-geranylgeranyl diphosphate = casbene + diphosphate"]],"b":[["antifungal/casbene.html","casbene"]]},{"id":"CHEBI:17909","l":"polysulfur","na":2,"nb":1,"a":[["EC%3A1.8.5.4","bacterial sulfide:quinone reductase"],["RHEA%3A30239","n a quinone + n hydrogen sulfide + n H(+) = polysulfur(n-2) + n a quinol"]],"b":[["antifungal/polysulfur.html","polysulfur"]]},{"id":"CHEBI:17939","l":"puromycin","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_PUY","PUY-binding site"]],"b":[["antibacterial/puromycin.html","puromycin"]]},{"id":"CHEBI:19129","l":"","na":1,"nb":2,"a":[["RHEA%3A86087","a steroid + reduced [NADPH--hemoprotein reductase] + O2 = a 11alpha-hydroxy steroid + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"],["antifungal/fr171456.html","FR171456"]]},{"id":"CHEBI:201384","l":"sartorypyrone D","na":2,"nb":1,"a":[["RHEA%3A80875","(S)-(2E,6E,10E)-epoxygeranylgeranyl-triacetate lactone = sartorypyrone D"],["RHEA%3A80883","sartorypyrone D + acetyl-CoA = sartorypyrone A + CoA"]],"b":[["antibacterial/sartorypyrone-d.html","sartorypyrone D"]]},{"id":"CHEBI:2469","l":"adefovir","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antiviral/adefovir.html","adefovir"]]},{"id":"CHEBI:26004","l":"","na":1,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antibacterial/eugenol.html","eugenol"],["antifungal/coniferyl-aldehyde.html","coniferyl aldehyde"]]},{"id":"CHEBI:26401","l":"purines","na":1,"nb":2,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antiviral/mercaptopurine.html","mercaptopurine"],["antiviral/valganciclovir.html","valganciclovir"]]},{"id":"CHEBI:26666","l":"","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.73","The Short Chain Fatty Acid Uptake (AtoE) Family"]],"b":[["antifungal/propionic-acid.html","propionic acid"]]},{"id":"CHEBI:26789","l":"","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_OI9","OI9-binding site"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"],["unspecified/streptothricin-d.html","streptothricin D"]]},{"id":"CHEBI:27446","l":"phenoxymethylpenicillin","na":2,"nb":1,"a":[["MCSA%3A241","penicillin amidase (peptidase C59 family)"],["proteintraitsmech%3ABIOLIP_PNV","PNV-binding site"]],"b":[["antibacterial/phenoxymethylpenicillin.html","phenoxymethylpenicillin"]]},{"id":"CHEBI:27641","l":"cycloheximide","na":2,"nb":1,"a":[["RHEA%3A61936","cycloheximide(in) + ATP + H2O = cycloheximide(out) + ADP + phosphate + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/cycloheximide.html","cycloheximide"]]},{"id":"CHEBI:27902","l":"tetracycline","na":2,"nb":1,"a":[["ARO%3A3000186","tet(M)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"CHEBI:28","l":"(R)-linalool","na":2,"nb":1,"a":[["EC%3A4.2.3.26","R-linalool synthase"],["RHEA%3A15809","(2E)-geranyl diphosphate + H2O = (R)-linalool + diphosphate"]],"b":[["unspecified/r-linalool.html","(R)-linalool"]]},{"id":"CHEBI:28283","l":"capsidiol","na":2,"nb":1,"a":[["EC%3A1.14.14.149","5-epiaristolochene 1,3-dihydroxylase"],["RHEA%3A28226","(+)-5-epi-aristolochene + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = capsidiol + 2 oxidized [NADPH--hemoprotein reductase] + 2 H2O + 2 H(+)"]],"b":[["antifungal/capsidiol.html","capsidiol"]]},{"id":"CHEBI:29007","l":"ceftriaxone","na":2,"nb":1,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"]],"b":[["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"CHEBI:2955","l":"azithromycin","na":2,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["proteintraitsmech%3ABIOLIP_ZIT","ZIT-binding site"]],"b":[["antibacterial/azithromycin.html","azithromycin"]]},{"id":"CHEBI:29673","l":"rifamycin SV","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]],"b":[["antimycobacterial/rifamycin-sv.html","rifamycin SV"]]},{"id":"CHEBI:29702","l":"undecylprodigiosin","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.B.102","The YedE/YeeE (YedE/YeeE) Family"]],"b":[["antibacterial/undecylprodigiosin.html","undecylprodigiosin"]]},{"id":"CHEBI:30746","l":"benzoic acid","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_BEZ","BEZ-binding site"]],"b":[["biocide/benzoic-acid.html","benzoic acid"],["biocide/carboxy-ptio.html","carboxy-PTIO"]]},{"id":"CHEBI:30751","l":"formic acid","na":2,"nb":1,"a":[["MCSA%3A38","GTP cyclohydrolase I"],["proteintraitsmech%3ABIOLIP_FMT","FMT-binding site"]],"b":[["antibacterial/formic-acid.html","formic acid"]]},{"id":"CHEBI:31000","l":"docosan-1-ol","na":2,"nb":1,"a":[["RHEA%3A81783","docosan-1-ol + (9Z)-octadecenoyl-CoA = 1-O-docosyl (9Z)-octadecenoate + CoA"],["RHEA%3A81731","docosanoyl-CoA + 2 NADPH + 2 H(+) = docosan-1-ol + 2 NADP(+) + CoA"]],"b":[["antiviral/docosan-1-ol.html","docosan-1-ol"]]},{"id":"CHEBI:31466","l":"dequalinium chloride","na":2,"nb":1,"a":[["TCDB%3A2.A.117","The Chlorhexadine Exporter (CHX) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antifungal/dequalinium-chloride.html","dequalinium chloride"]]},{"id":"CHEBI:32023","l":"plaunotol","na":2,"nb":1,"a":[["EC%3A1.14.14.146","geranylgeraniol 18-hydroxylase"],["RHEA%3A26233","(2E,6E,10E)-geranylgeraniol + reduced [NADPH--hemoprotein reductase] + O2 = plaunotol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["antibacterial/plaunotol.html","plaunotol"]]},{"id":"CHEBI:32199","l":"tetracenomycin B2","na":2,"nb":1,"a":[["EC%3A1.14.13.200","tetracenomycin A2 monooxygenase-diooxygenase"],["RHEA%3A76467","tetracenomycin B2 + 2 NADPH + 2 O2 + 2 H(+) = 8-demethyltetracenomycin C + 2 NADP(+) + H2O"]],"b":[["unspecified/tetracenomycin-b2.html","tetracenomycin B2"]]},{"id":"CHEBI:32215","l":"thiamphenicol","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_TH8","TH8-binding site"]],"b":[["antibacterial/thiamphenicol.html","thiamphenicol"]]},{"id":"CHEBI:3393","l":"carbenicillin","na":2,"nb":1,"a":[["TCDB%3A1.B.25","The Outer Membrane Porin (Opr) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/carbenicillin.html","carbenicillin"]]},{"id":"CHEBI:3440","l":"carvacrol","na":2,"nb":1,"a":[["RHEA%3A67412","alpha-terpinene + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = carvacrol + 2 oxidized [NADPH--hemoprotein reductase] + 3 H2O + 2 H(+)"],["RHEA%3A67404","gamma-terpinene + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = carvacrol + 2 oxidized [NADPH--hemoprotein reductase] + 3 H2O + 2 H(+)"]],"b":[["antifungal/carvacrol.html","carvacrol"]]},{"id":"CHEBI:35267","l":"","na":2,"nb":1,"a":[["EC%3A7.6.2.9","ABC-type quaternary amine transporter"],["RHEA%3A11036","a quaternary ammonium(out) + ATP + H2O = a quaternary ammonium(in) + ADP + phosphate + H(+)"]],"b":[["antifungal/rezafungin.html","rezafungin"]]},{"id":"CHEBI:35274","l":"","na":2,"nb":1,"a":[["TCDB%3A1.A.11","The Ammonium Transporter Channel (Amt) Family"],["TCDB%3A1.B.6","The OmpA-OmpF Porin (OOP) Family"]],"b":[["antifungal/validamycin-a-1.html","validamycin A(1+)"]]},{"id":"CHEBI:35986","l":"nonan-1-ol","na":2,"nb":1,"a":[["RHEA%3A44112","nonan-1-ol + hexadecanoyl-CoA = nonyl hexadecanoate + CoA"],["RHEA%3A58380","nonan-1-ol + NADP(+) = nonanal + NADPH + H(+)"]],"b":[["antifungal/nonan-1-ol.html","nonan-1-ol"]]},{"id":"CHEBI:3614","l":"chlorhexidine","na":2,"nb":1,"a":[["TCDB%3A2.A.117","The Chlorhexadine Exporter (CHX) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/chlorhexidine.html","chlorhexidine"]]},{"id":"CHEBI:368","l":"(S)-(−)-citronellal","na":2,"nb":1,"a":[["RHEA%3A60740","(S)-(-)-citronellal + NADP(+) + H2O = (S)-(-)-citronellate + NADPH + 2 H(+)"],["RHEA%3A60676","(S)-(-)-citronellol + NAD(+) = (S)-(-)-citronellal + NADH + H(+)"]],"b":[["antifungal/s-citronellal.html","(S)-(−)-citronellal"]]},{"id":"CHEBI:3732","l":"clarithromycin","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"CHEBI:37424","l":"","na":2,"nb":1,"a":[["EC%3A2.4.1.173","sterol 3beta-glucosyltransferase"],["RHEA%3A22724","a sterol + UDP-alpha-D-glucose = a sterol 3-beta-D-glucoside + UDP + H(+)"]],"b":[["antifungal/solasodine-3-%CE%B2-d-glucoside.html","solasodine 3-β-D-glucoside"]]},{"id":"CHEBI:3764","l":"clotrimazole","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antifungal/clotrimazole.html","clotrimazole"]]},{"id":"CHEBI:42452","l":"formycin A","na":2,"nb":1,"a":[["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"],["proteintraitsmech%3ABIOLIP_FMC","FMC-binding site"]],"b":[["unspecified/formycin-a.html","formycin A"]]},{"id":"CHEBI:42530","l":"peracetic acid","na":2,"nb":1,"a":[["RHEA%3A68392","peracetic acid + H2O = acetate + H2O2 + H(+)"],["proteintraitsmech%3ABIOLIP_F50","F50-binding site"]],"b":[["biocide/peracetic-acid.html","peracetic acid"]]},{"id":"CHEBI:44107","l":"malachite green cation","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_MGR","MGR-binding site"]],"b":[["antibacterial/malachite-green-cation.html","malachite green cation"]]},{"id":"CHEBI:443725","l":"fosmidomycin","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_FOM","FOM-binding site"]],"b":[["antibacterial/fosmidomycin.html","fosmidomycin"]]},{"id":"CHEBI:45081","l":"pentamidine","na":2,"nb":1,"a":[["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"],["TCDB%3A1.A.8","The Major Intrinsic Protein (MIP) Family"]],"b":[["antifungal/pentamidine.html","pentamidine"]]},{"id":"CHEBI:45285","l":"pyrazinecarboxamide","na":1,"nb":2,"a":[["RHEA%3A35063","pyrazinamide + H2O = pyrazine-2-carboxylate + NH4(+)"]],"b":[["antimycobacterial/n-butyl-5-4-hydroxyphenyl-6-oxo-1-6-dihydropyrazine-2-carboxamide.html","N-butyl-5-(4-hydroxyphenyl)-6-oxo-1,6-dihydropyrazine-2-carboxamide"],["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"CHEBI:45373","l":"sulfanilamide","na":2,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["proteintraitsmech%3ABIOLIP_SAN","SAN-binding site"]],"b":[["antibacterial/sulfanilamide.html","sulfanilamide"]]},{"id":"CHEBI:46202","l":"undecanal","na":2,"nb":1,"a":[["RHEA%3A68484","(2R)-2-hydroperoxydodecanoate + H(+) = undecanal + CO2 + H2O"],["RHEA%3A58408","undecan-1-ol + NADP(+) = undecanal + NADPH + H(+)"]],"b":[["antimycobacterial/undecanal.html","undecanal"]]},{"id":"CHEBI:48080","l":"brefeldin A","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["MCSA%3A453","Brefeldin A esterase"]],"b":[["antibacterial/brefeldin-a.html","brefeldin A"]]},{"id":"CHEBI:4877","l":"ethambutol","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_95E","95E-binding site"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"CHEBI:48981","l":"quinolin-8-ol","na":2,"nb":1,"a":[["RHEA%3A25924","quinolin-8-ol + A + H2O = 8-hydroxyquinolin-2(1H)-one + AH2"],["RHEA%3A72659","quinolin-8-ol + NADPH + O2 = 8-hydroxyquinoline N-oxide + NADP(+) + H2O"]],"b":[["antibacterial/quinolin-8-ol.html","quinolin-8-ol"]]},{"id":"CHEBI:50209","l":"sophoraflavanone G","na":2,"nb":1,"a":[["EC%3A2.5.1.71","leachianone-G 2'-dimethylallyltransferase"],["RHEA%3A10852","leachianone G + dimethylallyl diphosphate = sophoraflavanone G + diphosphate"]],"b":[["antiprotozoal/sophoraflavanone-g.html","sophoraflavanone G"]]},{"id":"CHEBI:50471","l":"","na":2,"nb":1,"a":[["EC%3A2.3.1.5","arylamine N-acetyltransferase"],["RHEA%3A16613","an arylamine + acetyl-CoA = an N-acetylarylamine + CoA"]],"b":[["antifungal/ferrostatin-1.html","ferrostatin-1"]]},{"id":"CHEBI:52086","l":"glyceollin III","na":2,"nb":1,"a":[["EC%3A1.14.14.135","glyceollin synthase"],["RHEA%3A26051","(6aS,11aS)-2-dimethylallyl-3,6a,9-trihydroxypterocarpan + reduced [NADPH--hemoprotein reductase] + O2 = glyceollin III + oxidized [NADPH--hemoprotein reductase] + 2 H2O + H(+)"]],"b":[["antifungal/glyceollin-iii.html","glyceollin III"]]},{"id":"CHEBI:52221","l":"","na":1,"nb":2,"a":[["RHEA%3A69264","a (Z)-N-(sulfonatooxy)alkanimidothioate = an isothiocyanate + sulfate"]],"b":[["antibacterial/benzyl-isothiocyanate.html","benzyl isothiocyanate"],["unspecified/allyl-isothiocyanate.html","allyl isothiocyanate"]]},{"id":"CHEBI:55517","l":"","na":1,"nb":2,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/trichothecin.html","trichothecin"],["unspecified/verrucarin-a.html","verrucarin A"]]},{"id":"CHEBI:57289","l":"blasticidin S(1+)","na":2,"nb":1,"a":[["EC%3A3.5.4.23","blasticidin-S deaminase"],["RHEA%3A10148","blasticidin S + H2O + H(+) = deaminohydroxyblasticidin S + NH4(+)"]],"b":[["antifungal/blasticidin-s-1.html","blasticidin S(1+)"]]},{"id":"CHEBI:61699","l":"(−)-α-gurjunene","na":2,"nb":1,"a":[["EC%3A4.2.3.72","alpha-gurjunene synthase"],["RHEA%3A29507","(2E,6E)-farnesyl diphosphate = (-)-alpha-gurjunene + diphosphate"]],"b":[["antibacterial/%CE%B1-gurjunene.html","(−)-α-gurjunene"]]},{"id":"CHEBI:62247","l":"(1R,2S)-epoxypropylphosphonate(1−)","na":2,"nb":1,"a":[["EC%3A1.11.1.23","(S)-2-hydroxypropylphosphonic acid epoxidase"],["RHEA%3A10808","(S)-2-hydroxypropylphosphonate + H2O2 = (1R,2S)-epoxypropylphosphonate + 2 H2O"]],"b":[["unspecified/1r-2s-epoxypropylphosphonate-1.html","(1R,2S)-epoxypropylphosphonate(1−)"]]},{"id":"CHEBI:64090","l":"tert-butyl hydroperoxide","na":2,"nb":1,"a":[["RHEA%3A69412","tert-butyl hydroperoxide + 2 glutathione = tert-butanol + glutathione disulfide + H2O"],["RHEA%3A63840","tert-butyl hydroperoxide + [thioredoxin]-dithiol = tert-butanol + [thioredoxin]-disulfide + H2O"]],"b":[["antibacterial/tert-butyl-hydroperoxide.html","tert-butyl hydroperoxide"]]},{"id":"CHEBI:67153","l":"(+)-larreatricin","na":2,"nb":1,"a":[["EC%3A1.14.99.47","(+)-larreatricin hydroxylase"],["RHEA%3A34259","(+)-larreatricin + AH2 + O2 = (+)-3'-hydroxylarreatricin + A + H2O"]],"b":[["antiviral/larreatricin.html","(+)-larreatricin"]]},{"id":"CHEBI:7518","l":"cis-trans-nepetalactone","na":2,"nb":1,"a":[["EC%3A1.1.1.419","nepetalactol dehydrogenase"],["RHEA%3A61428","cis-trans-nepetalactol + NAD(+) = cis-trans-nepetalactone + NADH + H(+)"]],"b":[["antibacterial/cis-trans-nepetalactone.html","cis-trans-nepetalactone"]]},{"id":"CHEBI:75561","l":"1-linoleoyl-sn-glycerol","na":2,"nb":1,"a":[["RHEA%3A41115","1-(9Z,12Z)-octadecadienoyl-sn-glycero-3-phosphocholine + H2O = 1-(9Z,12Z-octadecadienoyl)-sn-glycerol + phosphocholine + H(+)"],["RHEA%3A40603","1-(9Z,12Z-octadecadienoyl)-sn-glycerol + H2O = (9Z,12Z)-octadecadienoate + glycerol + H(+)"]],"b":[["antiviral/1-linoleoyl-sn-glycerol.html","1-linoleoyl-sn-glycerol"]]},{"id":"CHEBI:75616","l":"","na":2,"nb":1,"a":[["EC%3A2.3.1.60","gentamicin 3-N-acetyltransferase"],["RHEA%3A14441","gentamicin C + acetyl-CoA = N(3)-acetylgentamycin C + CoA + H(+)"]],"b":[["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"CHEBI:77152","l":"ginsenoside Rb2","na":2,"nb":1,"a":[["EC%3A3.2.1.191","ginsenosidase type III"],["RHEA%3A40739","(20S)-ginsenoside Rb2 + 2 H2O = (20S)-ginsenoside C-Y + 2 D-glucose"]],"b":[["antiviral/ginsenoside-rb2.html","ginsenoside Rb2"]]},{"id":"CHEBI:7731","l":"","na":2,"nb":1,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"CHEBI:77772","l":"ilicicolin H","na":2,"nb":1,"a":[["RHEA%3A64568","3-[(2E,4E,8S,10E,12Z)-4,8-dimethyltetradeca-2,4,10,12-tetraenoyl]-4-hydroxy-5-(4-hydroxyphenyl)-1,2-dihydropyridin-2-one = ilicicolin H"],["RHEA%3A64564","8-epi-ilicicolin H = ilicicolin H"]],"b":[["unspecified/ilicicolin-h.html","ilicicolin H"]]},{"id":"CHEBI:77885","l":"nocardicin E(2−)","na":2,"nb":1,"a":[["EC%3A2.5.1.38","isonocardicin synthase"],["RHEA%3A19845","nocardicin E + S-adenosyl-L-methionine = isonocardicin A + S-methyl-5'-thioadenosine + H(+)"]],"b":[["unspecified/nocardicin-e-2.html","nocardicin E(2−)"]]},{"id":"CHEBI:77985","l":"aclacinomycin Y zwitterion","na":2,"nb":1,"a":[["EC%3A1.3.3.14","aclacinomycin-A oxidase"],["RHEA%3A37791","aclacinomycin A + O2 = aclacinomycin Y + H2O2"]],"b":[["unspecified/aclacinomycin-y-zwitterion.html","aclacinomycin Y zwitterion"]]},{"id":"CHEBI:7809","l":"oxacillin","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/oxacillin.html","oxacillin"]]},{"id":"CHEBI:78327","l":"pseudobaptigenin(1−)","na":2,"nb":1,"a":[["EC%3A1.14.19.63","pseudobaptigenin synthase"],["RHEA%3A28238","calycosin + reduced [NADPH--hemoprotein reductase] + O2 = pseudobaptigenin + oxidized [NADPH--hemoprotein reductase] + 2 H2O + H(+)"]],"b":[["antiprotozoal/pseudobaptigenin-1.html","pseudobaptigenin(1−)"]]},{"id":"CHEBI:78884","l":"4-terpineol","na":2,"nb":1,"a":[["RHEA%3A60028","(2E)-geranyl diphosphate + H2O = 4-terpineol + diphosphate"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/4-terpineol.html","4-terpineol"]]},{"id":"CHEBI:80024","l":"aureothin","na":2,"nb":1,"a":[["EC%3A1.14.15.37","luteothin monooxygenase"],["RHEA%3A58824","luteothin + 4 reduced [2Fe-2S]-[ferredoxin] + 2 O2 + 4 H(+) = aureothin + 4 oxidized [2Fe-2S]-[ferredoxin] + 3 H2O"]],"b":[["antibacterial/aureothin.html","aureothin"]]},{"id":"CHEBI:81485","l":"osthenol","na":2,"nb":1,"a":[["EC%3A2.5.1.139","umbelliferone 6-dimethylallyltransferase"],["RHEA%3A51872","umbelliferone + dimethylallyl diphosphate = osthenol + diphosphate"]],"b":[["antifungal/osthenol.html","osthenol"]]},{"id":"CHEBI:82751","l":"cholesteryl arachidonate","na":2,"nb":1,"a":[["RHEA%3A53448","1-hexadecanoyl-2-(5Z,8Z,11Z,14Z-eicosatetraenoyl)-sn-glycero-3-phosphocholine + cholesterol = cholesteryl (5Z,8Z,11Z,14Z)-eicosatetraenoate + 1-hexadecanoyl-sn-glycero-3-phosphocholine"],["RHEA%3A42816","(5Z,8Z,11Z,14Z)-eicosatetraenoyl-CoA + cholesterol = cholesteryl (5Z,8Z,11Z,14Z)-eicosatetraenoate + CoA"]],"b":[["antibacterial/cholesteryl-arachidonate.html","cholesteryl arachidonate"]]},{"id":"CHEBI:8309","l":"polymyxin B1","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["antibacterial/polymyxin-b1.html","polymyxin B1"]]},{"id":"CHEBI:8452","l":"3,6-diaminoacridine","na":2,"nb":1,"a":[["TCDB%3A2.A.117","The Chlorhexadine Exporter (CHX) Family"],["proteintraitsmech%3ABIOLIP_PRL","PRL-binding site"]],"b":[["antibacterial/3-6-diaminoacridine.html","3,6-diaminoacridine"]]},{"id":"CHEBI:86012","l":"oxetanocin A","na":2,"nb":1,"a":[["EC%3A3.1.3.112","4'-phosphooxetanocin A phosphatase"],["RHEA%3A81367","4'-phosphooxetanocin A + H2O = oxetanocin A + phosphate"]],"b":[["antibacterial/oxetanocin-a.html","oxetanocin A"]]},{"id":"CHEBI:87123","l":"tulipalin B","na":2,"nb":1,"a":[["EC%3A4.2.99.23","tuliposide B-converting enzyme"],["RHEA%3A38655","6-tuliposide B = tulipalin B + D-glucose"]],"b":[["antibacterial/tulipalin-b.html","tulipalin B"]]},{"id":"CHEBI:87124","l":"6-tuliposide B","na":2,"nb":1,"a":[["EC%3A4.2.99.23","tuliposide B-converting enzyme"],["RHEA%3A38655","6-tuliposide B = tulipalin B + D-glucose"]],"b":[["antibacterial/6-tuliposide-b.html","6-tuliposide B"]]},{"id":"CHEBI:90868","l":"validamycin B","na":2,"nb":1,"a":[["EC%3A1.14.11.52","validamycin A dioxygenase"],["RHEA%3A48752","validamycin A + 2-oxoglutarate + O2 = validamycin B + succinate + CO2 + H(+)"]],"b":[["antifungal/validamycin-b.html","validamycin B"]]},{"id":"CHEBI:9332","l":"sulfamethoxazole","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"CHEBI:9997","l":"pristinamycin IIA","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_VIR","VIR-binding site"]],"b":[["antibacterial/pristinamycin-iia.html","pristinamycin IIA"]]},{"id":"NCBITaxon:1159556","l":"Ustilaginoidea virens","na":2,"nb":1,"a":[["Pfam%3APF06966","Protein of unknown function (DUF1295)"],["TED%3AAF-A0A1B5L5W2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1B5L5W2-F1-model_v4_TED03"]],"b":[["antifungal/azoxystrobin.html","azoxystrobin"]]},{"id":"NCBITaxon:1654360","l":"Photobacterium galatheae","na":2,"nb":1,"a":[["TED%3AAF-A0A066RSN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A066RSN6-F1-model_v4_TED01"],["TED%3AAF-A0A066RLQ8-F1-model_v4_TED01","TED novel fold AF-A0A066RLQ8-F1-model_v4_TED01"]],"b":[["antibacterial/holomycin.html","holomycin"]]},{"id":"NCBITaxon:1907","l":"Streptomyces glaucescens","na":2,"nb":1,"a":[["Pfam%3APF04673","Polyketide synthesis cyclase"],["Pfam%3APF04655","Aminoglycoside/hydroxyurea antibiotic resistance kinase"]],"b":[["antibacterial/tetracenomycin-c.html","tetracenomycin C"]]},{"id":"NCBITaxon:5074","l":"Penicillium brevicompactum","na":2,"nb":1,"a":[["Pfam%3APF09227","Bubble protein"],["Pfam%3APF18558","Methyltransferase, Helix-turn-helix domain"]],"b":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]]},{"id":"NCBITaxon:52","l":"Chondromyces crocatus","na":2,"nb":1,"a":[["TED%3AAF-A0A0K1ER44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0K1ER44-F1-model_v4_TED01"],["TED%3AAF-A0A0K1E854-F1-model_v4_TED01","TED novel fold AF-A0A0K1E854-F1-model_v4_TED01"]],"b":[["unspecified/chondrochloren-a.html","chondrochloren A"]]},{"id":"NCBITaxon:536","l":"Chromobacterium violaceum","na":2,"nb":1,"a":[["TED%3AAF-A0A381EUD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A381EUD6-F1-model_v4_TED01"],["TED%3AAF-A0A447THJ9-F1-model_v4_TED01","TED novel fold AF-A0A447THJ9-F1-model_v4_TED01"]],"b":[["unspecified/romidepsin.html","romidepsin"]]},{"id":"NCBITaxon:5478","l":"Nakaseomyces glabratus","na":2,"nb":1,"a":[["TED%3AAF-A0A0W0D8W7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0W0D8W7-F1-model_v4_TED02"],["TED%3AAF-A0A0W0D4K9-F1-model_v4_TED02","TED novel fold AF-A0A0W0D4K9-F1-model_v4_TED02"]],"b":[["antifungal/fluconazole.html","fluconazole"]]},{"id":"NCBITaxon:5661","l":"Leishmania donovani","na":2,"nb":1,"a":[["Pfam%3APF03037","Kinetoplastid membrane protein 11"],["Pfam%3APF03130","PBS lyase HEAT-like repeat"]],"b":[["antiprotozoal/dihydrobetulinic-acid.html","dihydrobetulinic acid"]]},{"id":"NCBITaxon:58346","l":"Streptomyces platensis","na":1,"nb":2,"a":[["PROSITE%3APS00999","Streptomyces subtilisin-type inhibitors signature"]],"b":[["antibacterial/platencin.html","platencin"],["antibacterial/platensimycin.html","platensimycin"]]},{"id":"UniProt:P02557","l":"","na":2,"nb":1,"a":[["ComplexPortal%3ACPX-1424","Tubulin alpha-beta heterodimeric complex, TUB1 variant"],["ComplexPortal%3ACPX-1425","Tubulin alpha-beta heterodimeric complex, TUB3 variant"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"UniProt:P0C6U8","l":"","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_TTT","TTT-binding site"]],"b":[["antibacterial/hexachlorophene.html","hexachlorophene"],["antifungal/bithionol.html","bithionol"]]},{"id":"ARO:0000042","l":"","na":1,"nb":1,"a":[["ARO%3A3000026","mepA"]],"b":[["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:0000062","l":"ceftriaxone","na":1,"nb":1,"a":[["ARO%3A3004835","Neisseria gonorrhoeae pilQ gene conferring resistance to beta-lactam"]],"b":[["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3000149","l":"FosA","na":1,"nb":1,"a":[["ARO%3A3000149","FosA"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3000166","l":"tet(B)","na":1,"nb":1,"a":[["ARO%3A3000166","tet(B)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000167","l":"tet(C)","na":1,"nb":1,"a":[["ARO%3A3000167","tet(C)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000168","l":"tet(D)","na":1,"nb":1,"a":[["ARO%3A3000168","tet(D)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000169","l":"rifampin","na":1,"nb":1,"a":[["ARO%3A3004960","Mycobacterium tuberculosis ponA1 mutations conferring resistance to rifabutin"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3000172","l":"FosB","na":1,"nb":1,"a":[["ARO%3A3000172","FosB"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3000173","l":"tet(E)","na":1,"nb":1,"a":[["ARO%3A3000173","tet(E)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000174","l":"tet(G)","na":1,"nb":1,"a":[["ARO%3A3000174","tet(G)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000175","l":"tet(H)","na":1,"nb":1,"a":[["ARO%3A3000175","tet(H)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000177","l":"tet(J)","na":1,"nb":1,"a":[["ARO%3A3000177","tet(J)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000178","l":"tet(K)","na":1,"nb":1,"a":[["ARO%3A3000178","tet(K)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000179","l":"tet(L)","na":1,"nb":1,"a":[["ARO%3A3000179","tet(L)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000180","l":"tetA(P)","na":1,"nb":1,"a":[["ARO%3A3000180","tetA(P)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000181","l":"tet(V)","na":1,"nb":1,"a":[["ARO%3A3000181","tet(V)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000182","l":"tet(Y)","na":1,"nb":1,"a":[["ARO%3A3000182","tet(Y)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000183","l":"tet(Z)","na":1,"nb":1,"a":[["ARO%3A3000183","tet(Z)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000198","l":"FosX","na":1,"nb":1,"a":[["ARO%3A3000198","FosX"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3000216","l":"acrB","na":1,"nb":1,"a":[["ARO%3A3000216","acrB"]],"b":[["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3000238","l":"glycopeptide resistance gene cluster VanB","na":1,"nb":1,"a":[["ARO%3A3000238","glycopeptide resistance gene cluster VanB"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000246","l":"glycopeptide resistance gene cluster VanC","na":1,"nb":1,"a":[["ARO%3A3000246","glycopeptide resistance gene cluster VanC"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000255","l":"glycopeptide resistance gene cluster VanF","na":1,"nb":1,"a":[["ARO%3A3000255","glycopeptide resistance gene cluster VanF"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000257","l":"glycopeptide resistance gene cluster VanG","na":1,"nb":1,"a":[["ARO%3A3000257","glycopeptide resistance gene cluster VanG"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000259","l":"glycopeptide resistance gene cluster VanE","na":1,"nb":1,"a":[["ARO%3A3000259","glycopeptide resistance gene cluster VanE"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000260","l":"glycopeptide resistance gene cluster VanL","na":1,"nb":1,"a":[["ARO%3A3000260","glycopeptide resistance gene cluster VanL"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3000309","l":"emrD","na":1,"nb":1,"a":[["ARO%3A3000309","emrD"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3000343","l":"tap","na":1,"nb":1,"a":[["ARO%3A3000343","tap"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000380","l":"FosC","na":1,"nb":1,"a":[["ARO%3A3000380","FosC"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3000423","l":"FomA","na":1,"nb":1,"a":[["ARO%3A3000423","FomA"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3000449","l":"FomB","na":1,"nb":1,"a":[["ARO%3A3000449","FomB"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3000464","l":"Neisseria gonorrhoeae porin PIB (por)","na":1,"nb":1,"a":[["ARO%3A3000464","Neisseria gonorrhoeae porin PIB (por)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000476","l":"tet(31)","na":1,"nb":1,"a":[["ARO%3A3000476","tet(31)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000478","l":"tet(33)","na":1,"nb":1,"a":[["ARO%3A3000478","tet(33)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000481","l":"tet(35)","na":1,"nb":1,"a":[["ARO%3A3000481","tet(35)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000510","l":"Staphylococcus aureus mupB conferring resistance to mupirocin","na":1,"nb":1,"a":[["ARO%3A3000510","Staphylococcus aureus mupB conferring resistance to mupirocin"]],"b":[["antibacterial/mupirocin.html","mupirocin"]]},{"id":"ARO:3000521","l":"Staphylococcus aureus mupA conferring resistance to mupirocin","na":1,"nb":1,"a":[["ARO%3A3000521","Staphylococcus aureus mupA conferring resistance to mupirocin"]],"b":[["antibacterial/mupirocin.html","mupirocin"]]},{"id":"ARO:3000561","l":"tet(30)","na":1,"nb":1,"a":[["ARO%3A3000561","tet(30)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000565","l":"tet(38)","na":1,"nb":1,"a":[["ARO%3A3000565","tet(38)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000566","l":"tet(39)","na":1,"nb":1,"a":[["ARO%3A3000566","tet(39)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000567","l":"tet(40)","na":1,"nb":1,"a":[["ARO%3A3000567","tet(40)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000569","l":"tet(41)","na":1,"nb":1,"a":[["ARO%3A3000569","tet(41)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000572","l":"tet(42)","na":1,"nb":1,"a":[["ARO%3A3000572","tet(42)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000573","l":"tet(43)","na":1,"nb":1,"a":[["ARO%3A3000573","tet(43)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3000614","l":"mef(E)","na":1,"nb":1,"a":[["ARO%3A3000614","mef(E)"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3000866","l":"oleI","na":1,"nb":1,"a":[["ARO%3A3000866","oleI"]],"b":[["antibacterial/oleandomycin.html","oleandomycin"]]},{"id":"ARO:3000874","l":"TEM-2","na":1,"nb":1,"a":[["ARO%3A3000874","TEM-2"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000875","l":"TEM-3","na":1,"nb":1,"a":[["ARO%3A3000875","TEM-3"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000876","l":"TEM-4","na":1,"nb":1,"a":[["ARO%3A3000876","TEM-4"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000877","l":"TEM-5","na":1,"nb":1,"a":[["ARO%3A3000877","TEM-5"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000878","l":"TEM-6","na":1,"nb":1,"a":[["ARO%3A3000878","TEM-6"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000879","l":"TEM-7","na":1,"nb":1,"a":[["ARO%3A3000879","TEM-7"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000880","l":"TEM-8","na":1,"nb":1,"a":[["ARO%3A3000880","TEM-8"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000881","l":"TEM-9","na":1,"nb":1,"a":[["ARO%3A3000881","TEM-9"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000882","l":"TEM-10","na":1,"nb":1,"a":[["ARO%3A3000882","TEM-10"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000883","l":"TEM-11","na":1,"nb":1,"a":[["ARO%3A3000883","TEM-11"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000884","l":"TEM-12","na":1,"nb":1,"a":[["ARO%3A3000884","TEM-12"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000886","l":"TEM-15","na":1,"nb":1,"a":[["ARO%3A3000886","TEM-15"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000887","l":"TEM-16","na":1,"nb":1,"a":[["ARO%3A3000887","TEM-16"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000888","l":"TEM-17","na":1,"nb":1,"a":[["ARO%3A3000888","TEM-17"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000890","l":"TEM-19","na":1,"nb":1,"a":[["ARO%3A3000890","TEM-19"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000891","l":"TEM-20","na":1,"nb":1,"a":[["ARO%3A3000891","TEM-20"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000892","l":"TEM-21","na":1,"nb":1,"a":[["ARO%3A3000892","TEM-21"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000893","l":"TEM-22","na":1,"nb":1,"a":[["ARO%3A3000893","TEM-22"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000894","l":"TEM-24","na":1,"nb":1,"a":[["ARO%3A3000894","TEM-24"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000896","l":"TEM-26","na":1,"nb":1,"a":[["ARO%3A3000896","TEM-26"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000898","l":"TEM-28","na":1,"nb":1,"a":[["ARO%3A3000898","TEM-28"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000899","l":"TEM-29","na":1,"nb":1,"a":[["ARO%3A3000899","TEM-29"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000901","l":"TEM-31","na":1,"nb":1,"a":[["ARO%3A3000901","TEM-31"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000902","l":"TEM-32","na":1,"nb":1,"a":[["ARO%3A3000902","TEM-32"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000903","l":"TEM-33","na":1,"nb":1,"a":[["ARO%3A3000903","TEM-33"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000904","l":"TEM-34","na":1,"nb":1,"a":[["ARO%3A3000904","TEM-34"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000905","l":"TEM-35","na":1,"nb":1,"a":[["ARO%3A3000905","TEM-35"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000906","l":"TEM-36","na":1,"nb":1,"a":[["ARO%3A3000906","TEM-36"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000907","l":"TEM-37","na":1,"nb":1,"a":[["ARO%3A3000907","TEM-37"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000909","l":"TEM-39","na":1,"nb":1,"a":[["ARO%3A3000909","TEM-39"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000910","l":"TEM-40","na":1,"nb":1,"a":[["ARO%3A3000910","TEM-40"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000911","l":"TEM-42","na":1,"nb":1,"a":[["ARO%3A3000911","TEM-42"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000912","l":"TEM-43","na":1,"nb":1,"a":[["ARO%3A3000912","TEM-43"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000914","l":"TEM-45","na":1,"nb":1,"a":[["ARO%3A3000914","TEM-45"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000916","l":"TEM-47","na":1,"nb":1,"a":[["ARO%3A3000916","TEM-47"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000917","l":"TEM-48","na":1,"nb":1,"a":[["ARO%3A3000917","TEM-48"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000918","l":"TEM-49","na":1,"nb":1,"a":[["ARO%3A3000918","TEM-49"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000921","l":"TEM-52","na":1,"nb":1,"a":[["ARO%3A3000921","TEM-52"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000922","l":"TEM-53","na":1,"nb":1,"a":[["ARO%3A3000922","TEM-53"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000923","l":"TEM-54","na":1,"nb":1,"a":[["ARO%3A3000923","TEM-54"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000924","l":"TEM-55","na":1,"nb":1,"a":[["ARO%3A3000924","TEM-55"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000926","l":"TEM-57","na":1,"nb":1,"a":[["ARO%3A3000926","TEM-57"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000927","l":"TEM-58","na":1,"nb":1,"a":[["ARO%3A3000927","TEM-58"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000928","l":"TEM-59","na":1,"nb":1,"a":[["ARO%3A3000928","TEM-59"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000929","l":"TEM-60","na":1,"nb":1,"a":[["ARO%3A3000929","TEM-60"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000931","l":"TEM-63","na":1,"nb":1,"a":[["ARO%3A3000931","TEM-63"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000934","l":"TEM-67","na":1,"nb":1,"a":[["ARO%3A3000934","TEM-67"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000935","l":"TEM-68","na":1,"nb":1,"a":[["ARO%3A3000935","TEM-68"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000936","l":"TEM-70","na":1,"nb":1,"a":[["ARO%3A3000936","TEM-70"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000937","l":"TEM-71","na":1,"nb":1,"a":[["ARO%3A3000937","TEM-71"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000938","l":"TEM-72","na":1,"nb":1,"a":[["ARO%3A3000938","TEM-72"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000939","l":"TEM-73","na":1,"nb":1,"a":[["ARO%3A3000939","TEM-73"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000941","l":"TEM-75","na":1,"nb":1,"a":[["ARO%3A3000941","TEM-75"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000942","l":"TEM-76","na":1,"nb":1,"a":[["ARO%3A3000942","TEM-76"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000944","l":"TEM-78","na":1,"nb":1,"a":[["ARO%3A3000944","TEM-78"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000946","l":"TEM-79","na":1,"nb":1,"a":[["ARO%3A3000946","TEM-79"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000947","l":"TEM-80","na":1,"nb":1,"a":[["ARO%3A3000947","TEM-80"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000948","l":"TEM-81","na":1,"nb":1,"a":[["ARO%3A3000948","TEM-81"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000949","l":"TEM-82","na":1,"nb":1,"a":[["ARO%3A3000949","TEM-82"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000950","l":"TEM-83","na":1,"nb":1,"a":[["ARO%3A3000950","TEM-83"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000951","l":"TEM-84","na":1,"nb":1,"a":[["ARO%3A3000951","TEM-84"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000952","l":"TEM-85","na":1,"nb":1,"a":[["ARO%3A3000952","TEM-85"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000953","l":"TEM-86","na":1,"nb":1,"a":[["ARO%3A3000953","TEM-86"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000954","l":"TEM-87","na":1,"nb":1,"a":[["ARO%3A3000954","TEM-87"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000955","l":"TEM-88","na":1,"nb":1,"a":[["ARO%3A3000955","TEM-88"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000956","l":"TEM-89","na":1,"nb":1,"a":[["ARO%3A3000956","TEM-89"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000957","l":"TEM-90","na":1,"nb":1,"a":[["ARO%3A3000957","TEM-90"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000958","l":"TEM-91","na":1,"nb":1,"a":[["ARO%3A3000958","TEM-91"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000959","l":"TEM-92","na":1,"nb":1,"a":[["ARO%3A3000959","TEM-92"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000960","l":"TEM-93","na":1,"nb":1,"a":[["ARO%3A3000960","TEM-93"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000961","l":"TEM-94","na":1,"nb":1,"a":[["ARO%3A3000961","TEM-94"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000962","l":"TEM-95","na":1,"nb":1,"a":[["ARO%3A3000962","TEM-95"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000963","l":"TEM-96","na":1,"nb":1,"a":[["ARO%3A3000963","TEM-96"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000964","l":"TEM-101","na":1,"nb":1,"a":[["ARO%3A3000964","TEM-101"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000965","l":"TEM-102","na":1,"nb":1,"a":[["ARO%3A3000965","TEM-102"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000967","l":"TEM-104","na":1,"nb":1,"a":[["ARO%3A3000967","TEM-104"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000968","l":"TEM-105","na":1,"nb":1,"a":[["ARO%3A3000968","TEM-105"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000969","l":"TEM-106","na":1,"nb":1,"a":[["ARO%3A3000969","TEM-106"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000970","l":"TEM-107","na":1,"nb":1,"a":[["ARO%3A3000970","TEM-107"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000971","l":"TEM-108","na":1,"nb":1,"a":[["ARO%3A3000971","TEM-108"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000972","l":"TEM-109","na":1,"nb":1,"a":[["ARO%3A3000972","TEM-109"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000973","l":"TEM-110","na":1,"nb":1,"a":[["ARO%3A3000973","TEM-110"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000974","l":"TEM-111","na":1,"nb":1,"a":[["ARO%3A3000974","TEM-111"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000975","l":"TEM-112","na":1,"nb":1,"a":[["ARO%3A3000975","TEM-112"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000976","l":"TEM-113","na":1,"nb":1,"a":[["ARO%3A3000976","TEM-113"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000977","l":"TEM-114","na":1,"nb":1,"a":[["ARO%3A3000977","TEM-114"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000978","l":"TEM-115","na":1,"nb":1,"a":[["ARO%3A3000978","TEM-115"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000979","l":"TEM-116","na":1,"nb":1,"a":[["ARO%3A3000979","TEM-116"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000980","l":"TEM-117","na":1,"nb":1,"a":[["ARO%3A3000980","TEM-117"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000981","l":"TEM-118","na":1,"nb":1,"a":[["ARO%3A3000981","TEM-118"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000982","l":"TEM-120","na":1,"nb":1,"a":[["ARO%3A3000982","TEM-120"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000983","l":"TEM-121","na":1,"nb":1,"a":[["ARO%3A3000983","TEM-121"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000984","l":"TEM-122","na":1,"nb":1,"a":[["ARO%3A3000984","TEM-122"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000985","l":"TEM-123","na":1,"nb":1,"a":[["ARO%3A3000985","TEM-123"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000986","l":"TEM-124","na":1,"nb":1,"a":[["ARO%3A3000986","TEM-124"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000987","l":"TEM-125","na":1,"nb":1,"a":[["ARO%3A3000987","TEM-125"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000988","l":"TEM-126","na":1,"nb":1,"a":[["ARO%3A3000988","TEM-126"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000989","l":"TEM-127","na":1,"nb":1,"a":[["ARO%3A3000989","TEM-127"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000990","l":"TEM-128","na":1,"nb":1,"a":[["ARO%3A3000990","TEM-128"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000993","l":"TEM-129","na":1,"nb":1,"a":[["ARO%3A3000993","TEM-129"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000994","l":"TEM-130","na":1,"nb":1,"a":[["ARO%3A3000994","TEM-130"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000995","l":"TEM-131","na":1,"nb":1,"a":[["ARO%3A3000995","TEM-131"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000996","l":"TEM-132","na":1,"nb":1,"a":[["ARO%3A3000996","TEM-132"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000997","l":"TEM-133","na":1,"nb":1,"a":[["ARO%3A3000997","TEM-133"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3000998","l":"TEM-134","na":1,"nb":1,"a":[["ARO%3A3000998","TEM-134"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001000","l":"TEM-136","na":1,"nb":1,"a":[["ARO%3A3001000","TEM-136"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001001","l":"TEM-137","na":1,"nb":1,"a":[["ARO%3A3001001","TEM-137"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001002","l":"TEM-138","na":1,"nb":1,"a":[["ARO%3A3001002","TEM-138"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001003","l":"TEM-139","na":1,"nb":1,"a":[["ARO%3A3001003","TEM-139"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001004","l":"TEM-141","na":1,"nb":1,"a":[["ARO%3A3001004","TEM-141"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001005","l":"TEM-142","na":1,"nb":1,"a":[["ARO%3A3001005","TEM-142"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001006","l":"TEM-143","na":1,"nb":1,"a":[["ARO%3A3001006","TEM-143"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001007","l":"TEM-144","na":1,"nb":1,"a":[["ARO%3A3001007","TEM-144"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001012","l":"TEM-145","na":1,"nb":1,"a":[["ARO%3A3001012","TEM-145"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001013","l":"TEM-146","na":1,"nb":1,"a":[["ARO%3A3001013","TEM-146"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001014","l":"TEM-147","na":1,"nb":1,"a":[["ARO%3A3001014","TEM-147"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001015","l":"TEM-148","na":1,"nb":1,"a":[["ARO%3A3001015","TEM-148"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001016","l":"TEM-149","na":1,"nb":1,"a":[["ARO%3A3001016","TEM-149"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001017","l":"TEM-150","na":1,"nb":1,"a":[["ARO%3A3001017","TEM-150"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001018","l":"TEM-151","na":1,"nb":1,"a":[["ARO%3A3001018","TEM-151"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001019","l":"TEM-152","na":1,"nb":1,"a":[["ARO%3A3001019","TEM-152"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001020","l":"TEM-154","na":1,"nb":1,"a":[["ARO%3A3001020","TEM-154"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001021","l":"TEM-155","na":1,"nb":1,"a":[["ARO%3A3001021","TEM-155"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001022","l":"TEM-156","na":1,"nb":1,"a":[["ARO%3A3001022","TEM-156"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001023","l":"TEM-157","na":1,"nb":1,"a":[["ARO%3A3001023","TEM-157"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001024","l":"TEM-158","na":1,"nb":1,"a":[["ARO%3A3001024","TEM-158"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001025","l":"TEM-159","na":1,"nb":1,"a":[["ARO%3A3001025","TEM-159"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001026","l":"TEM-160","na":1,"nb":1,"a":[["ARO%3A3001026","TEM-160"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001028","l":"TEM-162","na":1,"nb":1,"a":[["ARO%3A3001028","TEM-162"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001029","l":"TEM-163","na":1,"nb":1,"a":[["ARO%3A3001029","TEM-163"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001030","l":"TEM-164","na":1,"nb":1,"a":[["ARO%3A3001030","TEM-164"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001032","l":"TEM-166","na":1,"nb":1,"a":[["ARO%3A3001032","TEM-166"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001033","l":"TEM-167","na":1,"nb":1,"a":[["ARO%3A3001033","TEM-167"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001034","l":"TEM-168","na":1,"nb":1,"a":[["ARO%3A3001034","TEM-168"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001035","l":"TEM-169","na":1,"nb":1,"a":[["ARO%3A3001035","TEM-169"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001037","l":"TEM-171","na":1,"nb":1,"a":[["ARO%3A3001037","TEM-171"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001041","l":"TEM-176","na":1,"nb":1,"a":[["ARO%3A3001041","TEM-176"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001042","l":"TEM-177","na":1,"nb":1,"a":[["ARO%3A3001042","TEM-177"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001043","l":"TEM-178","na":1,"nb":1,"a":[["ARO%3A3001043","TEM-178"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001044","l":"TEM-181","na":1,"nb":1,"a":[["ARO%3A3001044","TEM-181"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001045","l":"TEM-183","na":1,"nb":1,"a":[["ARO%3A3001045","TEM-183"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001046","l":"TEM-186","na":1,"nb":1,"a":[["ARO%3A3001046","TEM-186"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001047","l":"TEM-187","na":1,"nb":1,"a":[["ARO%3A3001047","TEM-187"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001048","l":"TEM-188","na":1,"nb":1,"a":[["ARO%3A3001048","TEM-188"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001049","l":"TEM-189","na":1,"nb":1,"a":[["ARO%3A3001049","TEM-189"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001050","l":"TEM-190","na":1,"nb":1,"a":[["ARO%3A3001050","TEM-190"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001051","l":"TEM-191","na":1,"nb":1,"a":[["ARO%3A3001051","TEM-191"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001052","l":"TEM-192","na":1,"nb":1,"a":[["ARO%3A3001052","TEM-192"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001053","l":"TEM-193","na":1,"nb":1,"a":[["ARO%3A3001053","TEM-193"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001054","l":"TEM-194","na":1,"nb":1,"a":[["ARO%3A3001054","TEM-194"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001055","l":"TEM-195","na":1,"nb":1,"a":[["ARO%3A3001055","TEM-195"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001056","l":"TEM-197","na":1,"nb":1,"a":[["ARO%3A3001056","TEM-197"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001057","l":"TEM-198","na":1,"nb":1,"a":[["ARO%3A3001057","TEM-198"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001058","l":"TEM-199","na":1,"nb":1,"a":[["ARO%3A3001058","TEM-199"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001059","l":"SHV-1","na":1,"nb":1,"a":[["ARO%3A3001059","SHV-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"]]},{"id":"ARO:3001209","l":"mecC","na":1,"nb":1,"a":[["ARO%3A3001209","mecC"]],"b":[["antibacterial/methicillin.html","methicillin"]]},{"id":"ARO:3001299","l":"tlrB conferring tylosin resistance","na":1,"nb":1,"a":[["ARO%3A3001299","tlrB conferring tylosin resistance"]],"b":[["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3001305","l":"ErmU","na":1,"nb":1,"a":[["ARO%3A3001305","ErmU"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3001313","l":"facT","na":1,"nb":1,"a":[["ARO%3A3001313","facT"]],"b":[["antibacterial/factumycin.html","factumycin"]]},{"id":"ARO:3001327","l":"MdtK","na":1,"nb":1,"a":[["ARO%3A3001327","MdtK"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3001329","l":"mdtG","na":1,"nb":1,"a":[["ARO%3A3001329","mdtG"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3001369","l":"TEM-153","na":1,"nb":1,"a":[["ARO%3A3001369","TEM-153"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001373","l":"TEM-182","na":1,"nb":1,"a":[["ARO%3A3001373","TEM-182"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001374","l":"TEM-185","na":1,"nb":1,"a":[["ARO%3A3001374","TEM-185"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001375","l":"TEM-184","na":1,"nb":1,"a":[["ARO%3A3001375","TEM-184"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001376","l":"TEM-196","na":1,"nb":1,"a":[["ARO%3A3001376","TEM-196"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001378","l":"TEM-201","na":1,"nb":1,"a":[["ARO%3A3001378","TEM-201"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001382","l":"TEM-205","na":1,"nb":1,"a":[["ARO%3A3001382","TEM-205"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001383","l":"TEM-206","na":1,"nb":1,"a":[["ARO%3A3001383","TEM-206"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001384","l":"TEM-207","na":1,"nb":1,"a":[["ARO%3A3001384","TEM-207"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001385","l":"TEM-208","na":1,"nb":1,"a":[["ARO%3A3001385","TEM-208"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001386","l":"TEM-209","na":1,"nb":1,"a":[["ARO%3A3001386","TEM-209"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001387","l":"TEM-210","na":1,"nb":1,"a":[["ARO%3A3001387","TEM-210"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001388","l":"TEM-211","na":1,"nb":1,"a":[["ARO%3A3001388","TEM-211"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001389","l":"TEM-212","na":1,"nb":1,"a":[["ARO%3A3001389","TEM-212"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001390","l":"TEM-213","na":1,"nb":1,"a":[["ARO%3A3001390","TEM-213"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001391","l":"TEM-214","na":1,"nb":1,"a":[["ARO%3A3001391","TEM-214"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001392","l":"TEM-215","na":1,"nb":1,"a":[["ARO%3A3001392","TEM-215"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001393","l":"TEM-216","na":1,"nb":1,"a":[["ARO%3A3001393","TEM-216"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001394","l":"TEM-217","na":1,"nb":1,"a":[["ARO%3A3001394","TEM-217"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001419","l":"OXA-24","na":1,"nb":1,"a":[["ARO%3A3001419","OXA-24"]],"b":[["antibacterial/bal30072.html","BAL30072"]]},{"id":"ARO:3001612","l":"OXA-51","na":1,"nb":1,"a":[["ARO%3A3001612","OXA-51"]],"b":[["antibacterial/bal30072.html","BAL30072"]]},{"id":"ARO:3001782","l":"OXA-48","na":1,"nb":1,"a":[["ARO%3A3001782","OXA-48"]],"b":[["antibacterial/temocillin.html","temocillin"]]},{"id":"ARO:3001817","l":"ACC-3","na":1,"nb":1,"a":[["ARO%3A3001817","ACC-3"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3001819","l":"ACC-5","na":1,"nb":1,"a":[["ARO%3A3001819","ACC-5"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002355","l":"NDM-4","na":1,"nb":1,"a":[["ARO%3A3002355","NDM-4"]],"b":[["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3002508","l":"PDC-9","na":1,"nb":1,"a":[["ARO%3A3002508","PDC-9"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002509","l":"PDC-10","na":1,"nb":1,"a":[["ARO%3A3002509","PDC-10"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3002522","l":"novA","na":1,"nb":1,"a":[["ARO%3A3002522","novA"]],"b":[["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3002538","l":"AAC(3)-IIIc","na":1,"nb":1,"a":[["ARO%3A3002538","AAC(3)-IIIc"]],"b":[["antibacterial/gentamycin-a.html","gentamycin A"]]},{"id":"ARO:3002541","l":"AAC(3)-VIIa","na":1,"nb":1,"a":[["ARO%3A3002541","AAC(3)-VIIa"]],"b":[["antibacterial/paromomycin.html","paromomycin"]]},{"id":"ARO:3002542","l":"AAC(3)-VIIIa","na":1,"nb":1,"a":[["ARO%3A3002542","AAC(3)-VIIIa"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3002543","l":"AAC(3)-IXa","na":1,"nb":1,"a":[["ARO%3A3002543","AAC(3)-IXa"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3002544","l":"AAC(3)-Xa","na":1,"nb":1,"a":[["ARO%3A3002544","AAC(3)-Xa"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3002599","l":"","na":1,"nb":1,"a":[["ARO%3A3002599","AAC(6')-30/AAC(6')-Ib' bifunctional protein"]],"b":[["antibacterial/gentamycin-a.html","gentamycin A"]]},{"id":"ARO:3002626","l":"ANT(6)-Ia","na":1,"nb":1,"a":[["ARO%3A3002626","ANT(6)-Ia"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002627","l":"aadK","na":1,"nb":1,"a":[["ARO%3A3002627","aadK"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002628","l":"aad(6)","na":1,"nb":1,"a":[["ARO%3A3002628","aad(6)"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002629","l":"ANT(6)-Ib","na":1,"nb":1,"a":[["ARO%3A3002629","ANT(6)-Ib"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002630","l":"ANT(9)-Ia","na":1,"nb":1,"a":[["ARO%3A3002630","ANT(9)-Ia"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3002631","l":"spd","na":1,"nb":1,"a":[["ARO%3A3002631","spd"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3002635","l":"","na":1,"nb":1,"a":[["ARO%3A3002635","APH(2')-IIa"]],"b":[["antibacterial/plazomicin.html","plazomicin"]]},{"id":"ARO:3002638","l":"","na":1,"nb":1,"a":[["ARO%3A3002638","APH(3')-Ia"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002639","l":"","na":1,"nb":1,"a":[["ARO%3A3002639","APH(3')-Ib"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002640","l":"","na":1,"nb":1,"a":[["ARO%3A3002640","APH(3')-Ic"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002655","l":"APH(4)-Ia","na":1,"nb":1,"a":[["ARO%3A3002655","APH(4)-Ia"]],"b":[["antibacterial/hygromycin-b.html","hygromycin B"]]},{"id":"ARO:3002656","l":"APH(4)-Ib","na":1,"nb":1,"a":[["ARO%3A3002656","APH(4)-Ib"]],"b":[["antibacterial/hygromycin-b.html","hygromycin B"]]},{"id":"ARO:3002657","l":"APH(6)-Ia","na":1,"nb":1,"a":[["ARO%3A3002657","APH(6)-Ia"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002658","l":"APH(6)-Ib","na":1,"nb":1,"a":[["ARO%3A3002658","APH(6)-Ib"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002659","l":"APH(6)-Ic","na":1,"nb":1,"a":[["ARO%3A3002659","APH(6)-Ic"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002660","l":"APH(6)-Id","na":1,"nb":1,"a":[["ARO%3A3002660","APH(6)-Id"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3002661","l":"","na":1,"nb":1,"a":[["ARO%3A3002661","APH(7')-Ia"]],"b":[["antibacterial/hygromycin-b.html","hygromycin B"]]},{"id":"ARO:3002662","l":"APH(9)-Ia","na":1,"nb":1,"a":[["ARO%3A3002662","APH(9)-Ia"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3002663","l":"APH(9)-Ib","na":1,"nb":1,"a":[["ARO%3A3002663","APH(9)-Ib"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3002670","l":"cat","na":1,"nb":1,"a":[["ARO%3A3002670","cat"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002690","l":"Streptomyces lividans cmlR","na":1,"nb":1,"a":[["ARO%3A3002690","Streptomyces lividans cmlR"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002691","l":"Salmonella enterica cmlA","na":1,"nb":1,"a":[["ARO%3A3002691","Salmonella enterica cmlA"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002693","l":"cmlA1","na":1,"nb":1,"a":[["ARO%3A3002693","cmlA1"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002694","l":"cmlA4","na":1,"nb":1,"a":[["ARO%3A3002694","cmlA4"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002695","l":"cmlA5","na":1,"nb":1,"a":[["ARO%3A3002695","cmlA5"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002696","l":"cmlA6","na":1,"nb":1,"a":[["ARO%3A3002696","cmlA6"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002698","l":"cmlB","na":1,"nb":1,"a":[["ARO%3A3002698","cmlB"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002699","l":"cmlB1","na":1,"nb":1,"a":[["ARO%3A3002699","cmlB1"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002700","l":"cmlv","na":1,"nb":1,"a":[["ARO%3A3002700","cmlv"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002701","l":"Rhodococcus fascians cmr","na":1,"nb":1,"a":[["ARO%3A3002701","Rhodococcus fascians cmr"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002702","l":"cmrA","na":1,"nb":1,"a":[["ARO%3A3002702","cmrA"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002703","l":"cmx","na":1,"nb":1,"a":[["ARO%3A3002703","cmx"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3002707","l":"QnrA1","na":1,"nb":1,"a":[["ARO%3A3002707","QnrA1"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002708","l":"QnrA2","na":1,"nb":1,"a":[["ARO%3A3002708","QnrA2"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002709","l":"QnrA3","na":1,"nb":1,"a":[["ARO%3A3002709","QnrA3"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002710","l":"QnrA4","na":1,"nb":1,"a":[["ARO%3A3002710","QnrA4"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002711","l":"QnrA5","na":1,"nb":1,"a":[["ARO%3A3002711","QnrA5"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002712","l":"QnrA6","na":1,"nb":1,"a":[["ARO%3A3002712","QnrA6"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002713","l":"QnrA7","na":1,"nb":1,"a":[["ARO%3A3002713","QnrA7"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002714","l":"QnrB1","na":1,"nb":1,"a":[["ARO%3A3002714","QnrB1"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002715","l":"QnrB2","na":1,"nb":1,"a":[["ARO%3A3002715","QnrB2"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002716","l":"QnrB3","na":1,"nb":1,"a":[["ARO%3A3002716","QnrB3"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002718","l":"QnrB4","na":1,"nb":1,"a":[["ARO%3A3002718","QnrB4"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002719","l":"QnrB5","na":1,"nb":1,"a":[["ARO%3A3002719","QnrB5"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002720","l":"QnrB6","na":1,"nb":1,"a":[["ARO%3A3002720","QnrB6"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002721","l":"QnrB7","na":1,"nb":1,"a":[["ARO%3A3002721","QnrB7"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002722","l":"QnrB8","na":1,"nb":1,"a":[["ARO%3A3002722","QnrB8"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002723","l":"QnrB9","na":1,"nb":1,"a":[["ARO%3A3002723","QnrB9"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002724","l":"QnrB10","na":1,"nb":1,"a":[["ARO%3A3002724","QnrB10"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002725","l":"QnrB11","na":1,"nb":1,"a":[["ARO%3A3002725","QnrB11"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002726","l":"QnrB12","na":1,"nb":1,"a":[["ARO%3A3002726","QnrB12"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002727","l":"QnrB13","na":1,"nb":1,"a":[["ARO%3A3002727","QnrB13"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002728","l":"QnrB14","na":1,"nb":1,"a":[["ARO%3A3002728","QnrB14"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002730","l":"QnrB15","na":1,"nb":1,"a":[["ARO%3A3002730","QnrB15"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002731","l":"QnrB16","na":1,"nb":1,"a":[["ARO%3A3002731","QnrB16"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002732","l":"QnrB17","na":1,"nb":1,"a":[["ARO%3A3002732","QnrB17"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002733","l":"QnrB18","na":1,"nb":1,"a":[["ARO%3A3002733","QnrB18"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002734","l":"QnrB19","na":1,"nb":1,"a":[["ARO%3A3002734","QnrB19"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002735","l":"QnrB20","na":1,"nb":1,"a":[["ARO%3A3002735","QnrB20"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002736","l":"QnrB21","na":1,"nb":1,"a":[["ARO%3A3002736","QnrB21"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002737","l":"QnrB22","na":1,"nb":1,"a":[["ARO%3A3002737","QnrB22"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002738","l":"QnrB23","na":1,"nb":1,"a":[["ARO%3A3002738","QnrB23"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002739","l":"QnrB24","na":1,"nb":1,"a":[["ARO%3A3002739","QnrB24"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002740","l":"QnrB25","na":1,"nb":1,"a":[["ARO%3A3002740","QnrB25"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002741","l":"QnrB26","na":1,"nb":1,"a":[["ARO%3A3002741","QnrB26"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002742","l":"QnrB27","na":1,"nb":1,"a":[["ARO%3A3002742","QnrB27"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002743","l":"QnrB28","na":1,"nb":1,"a":[["ARO%3A3002743","QnrB28"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002744","l":"QnrB29","na":1,"nb":1,"a":[["ARO%3A3002744","QnrB29"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002745","l":"QnrB30","na":1,"nb":1,"a":[["ARO%3A3002745","QnrB30"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002746","l":"QnrB31","na":1,"nb":1,"a":[["ARO%3A3002746","QnrB31"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002747","l":"QnrB32","na":1,"nb":1,"a":[["ARO%3A3002747","QnrB32"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002748","l":"QnrB33","na":1,"nb":1,"a":[["ARO%3A3002748","QnrB33"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002749","l":"QnrB34","na":1,"nb":1,"a":[["ARO%3A3002749","QnrB34"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002750","l":"QnrB35","na":1,"nb":1,"a":[["ARO%3A3002750","QnrB35"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002751","l":"QnrB36","na":1,"nb":1,"a":[["ARO%3A3002751","QnrB36"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002752","l":"QnrB37","na":1,"nb":1,"a":[["ARO%3A3002752","QnrB37"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002753","l":"QnrB38","na":1,"nb":1,"a":[["ARO%3A3002753","QnrB38"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002755","l":"QnrB40","na":1,"nb":1,"a":[["ARO%3A3002755","QnrB40"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002756","l":"QnrB41","na":1,"nb":1,"a":[["ARO%3A3002756","QnrB41"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002757","l":"QnrB42","na":1,"nb":1,"a":[["ARO%3A3002757","QnrB42"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002758","l":"QnrB43","na":1,"nb":1,"a":[["ARO%3A3002758","QnrB43"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002759","l":"QnrB44","na":1,"nb":1,"a":[["ARO%3A3002759","QnrB44"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002760","l":"QnrB45","na":1,"nb":1,"a":[["ARO%3A3002760","QnrB45"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002761","l":"QnrB46","na":1,"nb":1,"a":[["ARO%3A3002761","QnrB46"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002762","l":"QnrB47","na":1,"nb":1,"a":[["ARO%3A3002762","QnrB47"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002763","l":"QnrB48","na":1,"nb":1,"a":[["ARO%3A3002763","QnrB48"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002764","l":"QnrB49","na":1,"nb":1,"a":[["ARO%3A3002764","QnrB49"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002765","l":"QnrB50","na":1,"nb":1,"a":[["ARO%3A3002765","QnrB50"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002767","l":"QnrB54","na":1,"nb":1,"a":[["ARO%3A3002767","QnrB54"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002768","l":"QnrB55","na":1,"nb":1,"a":[["ARO%3A3002768","QnrB55"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002769","l":"QnrB56","na":1,"nb":1,"a":[["ARO%3A3002769","QnrB56"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002770","l":"QnrB57","na":1,"nb":1,"a":[["ARO%3A3002770","QnrB57"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002771","l":"QnrB58","na":1,"nb":1,"a":[["ARO%3A3002771","QnrB58"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002772","l":"QnrB59","na":1,"nb":1,"a":[["ARO%3A3002772","QnrB59"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002773","l":"QnrB60","na":1,"nb":1,"a":[["ARO%3A3002773","QnrB60"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002774","l":"QnrB61","na":1,"nb":1,"a":[["ARO%3A3002774","QnrB61"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002775","l":"QnrB62","na":1,"nb":1,"a":[["ARO%3A3002775","QnrB62"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002776","l":"QnrB64","na":1,"nb":1,"a":[["ARO%3A3002776","QnrB64"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002777","l":"QnrB65","na":1,"nb":1,"a":[["ARO%3A3002777","QnrB65"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002778","l":"QnrB66","na":1,"nb":1,"a":[["ARO%3A3002778","QnrB66"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002779","l":"QnrB67","na":1,"nb":1,"a":[["ARO%3A3002779","QnrB67"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002780","l":"QnrB68","na":1,"nb":1,"a":[["ARO%3A3002780","QnrB68"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002781","l":"QnrB69","na":1,"nb":1,"a":[["ARO%3A3002781","QnrB69"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002782","l":"QnrB70","na":1,"nb":1,"a":[["ARO%3A3002782","QnrB70"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002783","l":"QnrB71","na":1,"nb":1,"a":[["ARO%3A3002783","QnrB71"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002784","l":"QnrB72","na":1,"nb":1,"a":[["ARO%3A3002784","QnrB72"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002785","l":"QnrB73","na":1,"nb":1,"a":[["ARO%3A3002785","QnrB73"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002786","l":"QnrB74","na":1,"nb":1,"a":[["ARO%3A3002786","QnrB74"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002787","l":"QnrC","na":1,"nb":1,"a":[["ARO%3A3002787","QnrC"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002788","l":"QnrD1","na":1,"nb":1,"a":[["ARO%3A3002788","QnrD1"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002789","l":"QnrD2","na":1,"nb":1,"a":[["ARO%3A3002789","QnrD2"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002790","l":"QnrS1","na":1,"nb":1,"a":[["ARO%3A3002790","QnrS1"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002791","l":"QnrS2","na":1,"nb":1,"a":[["ARO%3A3002791","QnrS2"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002792","l":"QnrS3","na":1,"nb":1,"a":[["ARO%3A3002792","QnrS3"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002793","l":"QnrS4","na":1,"nb":1,"a":[["ARO%3A3002793","QnrS4"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002794","l":"QnrS5","na":1,"nb":1,"a":[["ARO%3A3002794","QnrS5"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002795","l":"QnrS6","na":1,"nb":1,"a":[["ARO%3A3002795","QnrS6"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002796","l":"QnrS7","na":1,"nb":1,"a":[["ARO%3A3002796","QnrS7"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002797","l":"QnrS8","na":1,"nb":1,"a":[["ARO%3A3002797","QnrS8"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002798","l":"QnrS9","na":1,"nb":1,"a":[["ARO%3A3002798","QnrS9"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002799","l":"QnrVC1","na":1,"nb":1,"a":[["ARO%3A3002799","QnrVC1"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002800","l":"QnrVC3","na":1,"nb":1,"a":[["ARO%3A3002800","QnrVC3"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002801","l":"QnrVC4","na":1,"nb":1,"a":[["ARO%3A3002801","QnrVC4"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002802","l":"QnrVC5","na":1,"nb":1,"a":[["ARO%3A3002802","QnrVC5"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002803","l":"QnrVC6","na":1,"nb":1,"a":[["ARO%3A3002803","QnrVC6"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3002804","l":"FosA2","na":1,"nb":1,"a":[["ARO%3A3002804","FosA2"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3002817","l":"carA","na":1,"nb":1,"a":[["ARO%3A3002817","carA"]],"b":[["antibacterial/carbomycin.html","carbomycin"]]},{"id":"ARO:3002826","l":"EreA2","na":1,"nb":1,"a":[["ARO%3A3002826","EreA2"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3002828","l":"srmB","na":1,"nb":1,"a":[["ARO%3A3002828","srmB"]],"b":[["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3002832","l":"vgaD","na":1,"nb":1,"a":[["ARO%3A3002832","vgaD"]],"b":[["antibacterial/dalfopristin.html","dalfopristin"]]},{"id":"ARO:3002837","l":"lnuC","na":1,"nb":1,"a":[["ARO%3A3002837","lnuC"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002840","l":"vatA","na":1,"nb":1,"a":[["ARO%3A3002840","vatA"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002841","l":"vatB","na":1,"nb":1,"a":[["ARO%3A3002841","vatB"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002842","l":"vatC","na":1,"nb":1,"a":[["ARO%3A3002842","vatC"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002843","l":"vatD","na":1,"nb":1,"a":[["ARO%3A3002843","vatD"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002844","l":"vatE","na":1,"nb":1,"a":[["ARO%3A3002844","vatE"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002845","l":"vatH","na":1,"nb":1,"a":[["ARO%3A3002845","vatH"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3002846","l":"arr-1","na":1,"nb":1,"a":[["ARO%3A3002846","arr-1"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3002847","l":"arr-2","na":1,"nb":1,"a":[["ARO%3A3002847","arr-2"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3002848","l":"arr-3","na":1,"nb":1,"a":[["ARO%3A3002848","arr-3"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3002849","l":"arr-4","na":1,"nb":1,"a":[["ARO%3A3002849","arr-4"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3002850","l":"arr-5","na":1,"nb":1,"a":[["ARO%3A3002850","arr-5"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3002852","l":"arr-7","na":1,"nb":1,"a":[["ARO%3A3002852","arr-7"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3002853","l":"arr-8","na":1,"nb":1,"a":[["ARO%3A3002853","arr-8"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3002854","l":"dfrA1","na":1,"nb":1,"a":[["ARO%3A3002854","dfrA1"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002856","l":"dfrA24","na":1,"nb":1,"a":[["ARO%3A3002856","dfrA24"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002857","l":"dfrA26","na":1,"nb":1,"a":[["ARO%3A3002857","dfrA26"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002858","l":"dfrA12","na":1,"nb":1,"a":[["ARO%3A3002858","dfrA12"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002859","l":"dfrA14","na":1,"nb":1,"a":[["ARO%3A3002859","dfrA14"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002860","l":"dfrA17","na":1,"nb":1,"a":[["ARO%3A3002860","dfrA17"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002861","l":"dfrA5","na":1,"nb":1,"a":[["ARO%3A3002861","dfrA5"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002862","l":"dfrA7","na":1,"nb":1,"a":[["ARO%3A3002862","dfrA7"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002863","l":"dfrA8","na":1,"nb":1,"a":[["ARO%3A3002863","dfrA8"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002864","l":"dfrB1","na":1,"nb":1,"a":[["ARO%3A3002864","dfrB1"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002865","l":"dfrC","na":1,"nb":1,"a":[["ARO%3A3002865","dfrC"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002866","l":"dfrD","na":1,"nb":1,"a":[["ARO%3A3002866","dfrD"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002867","l":"dfrF","na":1,"nb":1,"a":[["ARO%3A3002867","dfrF"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002868","l":"dfrG","na":1,"nb":1,"a":[["ARO%3A3002868","dfrG"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002869","l":"dfrK","na":1,"nb":1,"a":[["ARO%3A3002869","dfrK"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002870","l":"tet(34)","na":1,"nb":1,"a":[["ARO%3A3002870","tet(34)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3002871","l":"tet(37)","na":1,"nb":1,"a":[["ARO%3A3002871","tet(37)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3002872","l":"FosA3","na":1,"nb":1,"a":[["ARO%3A3002872","FosA3"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3002873","l":"FosB3","na":1,"nb":1,"a":[["ARO%3A3002873","FosB3"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3002874","l":"FosC2","na":1,"nb":1,"a":[["ARO%3A3002874","FosC2"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3002875","l":"dfrE","na":1,"nb":1,"a":[["ARO%3A3002875","dfrE"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3002879","l":"linG","na":1,"nb":1,"a":[["ARO%3A3002879","linG"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3002891","l":"Streptomyces rimosus otr(A)","na":1,"nb":1,"a":[["ARO%3A3002891","Streptomyces rimosus otr(A)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"]]},{"id":"ARO:3002892","l":"otr(B)","na":1,"nb":1,"a":[["ARO%3A3002892","otr(B)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3002893","l":"tcr3","na":1,"nb":1,"a":[["ARO%3A3002893","tcr3"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3002894","l":"otr(C)","na":1,"nb":1,"a":[["ARO%3A3002894","otr(C)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3002895","l":"SAT-2","na":1,"nb":1,"a":[["ARO%3A3002895","SAT-2"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"]]},{"id":"ARO:3002897","l":"SAT-4","na":1,"nb":1,"a":[["ARO%3A3002897","SAT-4"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"]]},{"id":"ARO:3002898","l":"SAT-3","na":1,"nb":1,"a":[["ARO%3A3002898","SAT-3"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"]]},{"id":"ARO:3002914","l":"vanJ","na":1,"nb":1,"a":[["ARO%3A3002914","vanJ"]],"b":[["antibacterial/teicoplanin.html","teicoplanin"]]},{"id":"ARO:3002917","l":"glycopeptide resistance gene cluster VanN","na":1,"nb":1,"a":[["ARO%3A3002917","glycopeptide resistance gene cluster VanN"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3002918","l":"glycopeptide resistance gene cluster VanO","na":1,"nb":1,"a":[["ARO%3A3002918","glycopeptide resistance gene cluster VanO"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3002999","l":"CblA-1","na":1,"nb":1,"a":[["ARO%3A3002999","CblA-1"]],"b":[["antibacterial/cefaloridine.html","cefaloridine"]]},{"id":"ARO:3003006","l":"blt","na":1,"nb":1,"a":[["ARO%3A3003006","blt"]],"b":[["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3003011","l":"dfrA10","na":1,"nb":1,"a":[["ARO%3A3003011","dfrA10"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003012","l":"dfrA13","na":1,"nb":1,"a":[["ARO%3A3003012","dfrA13"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003013","l":"dfrA15","na":1,"nb":1,"a":[["ARO%3A3003013","dfrA15"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003014","l":"dfrA16","na":1,"nb":1,"a":[["ARO%3A3003014","dfrA16"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003015","l":"dfrA19","na":1,"nb":1,"a":[["ARO%3A3003015","dfrA19"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003016","l":"dfrA20","na":1,"nb":1,"a":[["ARO%3A3003016","dfrA20"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003017","l":"dfrA21","na":1,"nb":1,"a":[["ARO%3A3003017","dfrA21"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003018","l":"dfrA22","na":1,"nb":1,"a":[["ARO%3A3003018","dfrA22"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003019","l":"dfrA23","na":1,"nb":1,"a":[["ARO%3A3003019","dfrA23"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003020","l":"dfrA25","na":1,"nb":1,"a":[["ARO%3A3003020","dfrA25"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003021","l":"dfrB2","na":1,"nb":1,"a":[["ARO%3A3003021","dfrB2"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003022","l":"dfrB3","na":1,"nb":1,"a":[["ARO%3A3003022","dfrB3"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003023","l":"dfrB6","na":1,"nb":1,"a":[["ARO%3A3003023","dfrB6"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003026","l":"fusH","na":1,"nb":1,"a":[["ARO%3A3003026","fusH"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3003036","l":"oleB","na":1,"nb":1,"a":[["ARO%3A3003036","oleB"]],"b":[["antibacterial/oleandomycin.html","oleandomycin"]]},{"id":"ARO:3003041","l":"Streptococcus pneumoniae PBP1a conferring resistance to amoxicillin","na":1,"nb":1,"a":[["ARO%3A3003041","Streptococcus pneumoniae PBP1a conferring resistance to amoxicillin"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3003042","l":"Streptococcus pneumoniae PBP2b conferring resistance to amoxicillin","na":1,"nb":1,"a":[["ARO%3A3003042","Streptococcus pneumoniae PBP2b conferring resistance to amoxicillin"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3003043","l":"Streptococcus pneumoniae PBP2x conferring resistance to amoxicillin","na":1,"nb":1,"a":[["ARO%3A3003043","Streptococcus pneumoniae PBP2x conferring resistance to amoxicillin"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3003059","l":"tmrB","na":1,"nb":1,"a":[["ARO%3A3003059","tmrB"]],"b":[["antibacterial/tunicamycin.html","tunicamycin"]]},{"id":"ARO:3003060","l":"tsnR","na":1,"nb":1,"a":[["ARO%3A3003060","tsnR"]],"b":[["antibacterial/thiostrepton.html","thiostrepton"]]},{"id":"ARO:3003061","l":"vph","na":1,"nb":1,"a":[["ARO%3A3003061","vph"]],"b":[["antimycobacterial/viomycin.html","viomycin"]]},{"id":"ARO:3003074","l":"Staphylococcus aureus cls conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003074","Staphylococcus aureus cls conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003077","l":"Enterococcus faecalis liaF mutant conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003077","Enterococcus faecalis liaF mutant conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003078","l":"Enterococcus faecium liaR mutant conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003078","Enterococcus faecium liaR mutant conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003079","l":"Enterococcus faecium liaS mutant conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003079","Enterococcus faecium liaS mutant conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003092","l":"Enterococcus faecium cls conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003092","Enterococcus faecium cls conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003105","l":"dfrA3","na":1,"nb":1,"a":[["ARO%3A3003105","dfrA3"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3003109","l":"msrE","na":1,"nb":1,"a":[["ARO%3A3003109","msrE"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003157","l":"TEM-219","na":1,"nb":1,"a":[["ARO%3A3003157","TEM-219"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3003158","l":"TEM-220","na":1,"nb":1,"a":[["ARO%3A3003158","TEM-220"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3003193","l":"QnrVC7","na":1,"nb":1,"a":[["ARO%3A3003193","QnrVC7"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003196","l":"tet(45)","na":1,"nb":1,"a":[["ARO%3A3003196","tet(45)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003207","l":"FosK","na":1,"nb":1,"a":[["ARO%3A3003207","FosK"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003208","l":"FosXCC","na":1,"nb":1,"a":[["ARO%3A3003208","FosXCC"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003210","l":"FosA4","na":1,"nb":1,"a":[["ARO%3A3003210","FosA4"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003236","l":"Mycobacteroides abscessus 16S rRNA mutation conferring resistance to kanamycin","na":1,"nb":1,"a":[["ARO%3A3003236","Mycobacteroides abscessus 16S rRNA mutation conferring resistance to kanamycin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003237","l":"Mycobacteroides abscessus 16S rRNA mutation conferring resistance to tobramycin","na":1,"nb":1,"a":[["ARO%3A3003237","Mycobacteroides abscessus 16S rRNA mutation conferring resistance to tobramycin"]],"b":[["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3003238","l":"Mycobacteroides abscessus 16S rRNA mutation conferring resistance to neomycin","na":1,"nb":1,"a":[["ARO%3A3003238","Mycobacteroides abscessus 16S rRNA mutation conferring resistance to neomycin"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3003239","l":"Mycobacteroides abscessus 16S rRNA mutation conferring resistance to amikacin","na":1,"nb":1,"a":[["ARO%3A3003239","Mycobacteroides abscessus 16S rRNA mutation conferring resistance to amikacin"]],"b":[["antibacterial/amikacin.html","amikacin"]]},{"id":"ARO:3003240","l":"Mycobacteroides abscessus 16S rRNA mutation conferring resistance to gentamicin","na":1,"nb":1,"a":[["ARO%3A3003240","Mycobacteroides abscessus 16S rRNA mutation conferring resistance to gentamicin"]],"b":[["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3003287","l":"Staphylococcus aureus rpoB mutants conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003287","Staphylococcus aureus rpoB mutants conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003291","l":"Staphylococcus aureus rpoC conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003291","Staphylococcus aureus rpoC conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003319","l":"Staphylococcus aureus mprF with mutation conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003319","Staphylococcus aureus mprF with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003323","l":"Staphylococcus aureus pgsA mutations conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003323","Staphylococcus aureus pgsA mutations conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003324","l":"Bacillus subtilis mprF","na":1,"nb":1,"a":[["ARO%3A3003324","Bacillus subtilis mprF"]],"b":[["antibacterial/defensin.html","defensin"]]},{"id":"ARO:3003325","l":"Mycobacterium tuberculosis variant bovis embB with mutation conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3003325","Mycobacterium tuberculosis variant bovis embB with mutation conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003326","l":"Mycobacterium tuberculosis embB mutant conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3003326","Mycobacterium tuberculosis embB mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003327","l":"Mycobacterium tuberculosis embC mutant conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3003327","Mycobacterium tuberculosis embC mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003333","l":"Escherichia coli 16S rRNA (rrsC) mutation conferring resistance to kasugamicin","na":1,"nb":1,"a":[["ARO%3A3003333","Escherichia coli 16S rRNA (rrsC) mutation conferring resistance to kasugamicin"]],"b":[["antifungal/kasugamycin.html","kasugamycin"]]},{"id":"ARO:3003357","l":"Clostridioides difficile EF-Tu mutants conferring resistance to elfamycin","na":1,"nb":1,"a":[["ARO%3A3003357","Clostridioides difficile EF-Tu mutants conferring resistance to elfamycin"]],"b":[["antibacterial/lff571.html","LFF571"]]},{"id":"ARO:3003359","l":"Streptomyces cinnamoneus EF-Tu mutants conferring resistance to elfamycin","na":1,"nb":1,"a":[["ARO%3A3003359","Streptomyces cinnamoneus EF-Tu mutants conferring resistance to elfamycin"]],"b":[["antibacterial/kirromycin.html","kirromycin"]]},{"id":"ARO:3003361","l":"Planobispora rosea EF-Tu mutants conferring resistance to inhibitor GE2270A","na":1,"nb":1,"a":[["ARO%3A3003361","Planobispora rosea EF-Tu mutants conferring resistance to inhibitor GE2270A"]],"b":[["antibacterial/ge2270a.html","GE2270A"]]},{"id":"ARO:3003368","l":"Escherichia coli EF-Tu mutants conferring resistance to kirromycin","na":1,"nb":1,"a":[["ARO%3A3003368","Escherichia coli EF-Tu mutants conferring resistance to kirromycin"]],"b":[["antibacterial/kirromycin.html","kirromycin"]]},{"id":"ARO:3003369","l":"Escherichia coli EF-Tu mutants conferring resistance to Pulvomycin","na":1,"nb":1,"a":[["ARO%3A3003369","Escherichia coli EF-Tu mutants conferring resistance to Pulvomycin"]],"b":[["antibacterial/pulvomycin.html","pulvomycin"]]},{"id":"ARO:3003370","l":"Escherichia coli EF-Tu mutants conferring resistance to Enacyloxin IIa","na":1,"nb":1,"a":[["ARO%3A3003370","Escherichia coli EF-Tu mutants conferring resistance to Enacyloxin IIa"]],"b":[["antibacterial/enacyloxin-iia.html","enacyloxin IIa"]]},{"id":"ARO:3003372","l":"Escherichia coli 16S rRNA (rrsH) mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003372","Escherichia coli 16S rRNA (rrsH) mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003373","l":"Klebsiella pneumoniae acrR with mutation conferring multidrug antibiotic resistance","na":1,"nb":1,"a":[["ARO%3A3003373","Klebsiella pneumoniae acrR with mutation conferring multidrug antibiotic resistance"]],"b":[["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:3003376","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003376","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003377","l":"Escherichia coli 16S rRNA (rrnB) mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003377","Escherichia coli 16S rRNA (rrnB) mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003379","l":"Salmonella enterica ramR mutants","na":1,"nb":1,"a":[["ARO%3A3003379","Salmonella enterica ramR mutants"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003380","l":"Klebsiella pneumoniae ramR mutants","na":1,"nb":1,"a":[["ARO%3A3003380","Klebsiella pneumoniae ramR mutants"]],"b":[["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:3003382","l":"Salmonella enterica soxR with mutation conferring antibiotic resistance","na":1,"nb":1,"a":[["ARO%3A3003382","Salmonella enterica soxR with mutation conferring antibiotic resistance"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003383","l":"Salmonella serovars soxS with mutation conferring antibiotic resistance","na":1,"nb":1,"a":[["ARO%3A3003383","Salmonella serovars soxS with mutation conferring antibiotic resistance"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003389","l":"Mycobacterium leprae folP with mutation conferring resistance to dapsone","na":1,"nb":1,"a":[["ARO%3A3003389","Mycobacterium leprae folP with mutation conferring resistance to dapsone"]],"b":[["antimycobacterial/dapsone.html","dapsone"]]},{"id":"ARO:3003390","l":"Escherichia coli ompF with mutation conferring resistance to beta-lactam antibiotics","na":1,"nb":1,"a":[["ARO%3A3003390","Escherichia coli ompF with mutation conferring resistance to beta-lactam antibiotics"]],"b":[["antibacterial/cefepime.html","cefepime"]]},{"id":"ARO:3003392","l":"Mycobacterium tuberculosis katG mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3003392","Mycobacterium tuberculosis katG mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3003393","l":"Mycobacterium tuberculosis inhA mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3003393","Mycobacterium tuberculosis inhA mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3003396","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to gentamicin C","na":1,"nb":1,"a":[["ARO%3A3003396","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to gentamicin C"]],"b":[["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3003397","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to G418","na":1,"nb":1,"a":[["ARO%3A3003397","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to G418"]],"b":[["antibacterial/g418.html","G418"]]},{"id":"ARO:3003399","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to kanamycin A","na":1,"nb":1,"a":[["ARO%3A3003399","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to kanamycin A"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003402","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to neomycin","na":1,"nb":1,"a":[["ARO%3A3003402","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to neomycin"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3003403","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to paromomycin","na":1,"nb":1,"a":[["ARO%3A3003403","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to paromomycin"]],"b":[["antibacterial/paromomycin.html","paromomycin"]]},{"id":"ARO:3003405","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3003405","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003406","l":"Escherichia coli 16S rRNA (rrnB) mutation conferring resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3003406","Escherichia coli 16S rRNA (rrnB) mutation conferring resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003408","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to tobramycin","na":1,"nb":1,"a":[["ARO%3A3003408","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to tobramycin"]],"b":[["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3003410","l":"Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to tetracycline","na":1,"nb":1,"a":[["ARO%3A3003410","Escherichia coli 16S rRNA (rrsB) mutation conferring resistance to tetracycline"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003411","l":"Escherichia coli 16S rRNA (rrnB) mutation conferring resistance to tetracycline","na":1,"nb":1,"a":[["ARO%3A3003411","Escherichia coli 16S rRNA (rrnB) mutation conferring resistance to tetracycline"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003413","l":"pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004977","Mycobacterium tuberculosis gpsI with mutations conferring resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3003436","l":"Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to kanamycin","na":1,"nb":1,"a":[["ARO%3A3003436","Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to kanamycin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003437","l":"Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to viomycin","na":1,"nb":1,"a":[["ARO%3A3003437","Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to viomycin"]],"b":[["antimycobacterial/viomycin.html","viomycin"]]},{"id":"ARO:3003438","l":"Enterococcus faecium EF-Tu mutants conferring resistance to GE2270A","na":1,"nb":1,"a":[["ARO%3A3003438","Enterococcus faecium EF-Tu mutants conferring resistance to GE2270A"]],"b":[["antibacterial/ge2270a.html","GE2270A"]]},{"id":"ARO:3003440","l":"mecB","na":1,"nb":1,"a":[["ARO%3A3003440","mecB"]],"b":[["antibacterial/methicillin.html","methicillin"]]},{"id":"ARO:3003445","l":"Mycobacterium tuberculosis tlyA mutations conferring resistance to aminoglycosides","na":1,"nb":1,"a":[["ARO%3A3003445","Mycobacterium tuberculosis tlyA mutations conferring resistance to aminoglycosides"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003448","l":"Mycobacterium tuberculosis iniA mutant conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3003448","Mycobacterium tuberculosis iniA mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003451","l":"Mycobacterium tuberculosis iniC mutant conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3003451","Mycobacterium tuberculosis iniC mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003453","l":"Mycobacterium tuberculosis embA mutant conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3003453","Mycobacterium tuberculosis embA mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003455","l":"Mycobacterium tuberculosis embR mutant conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3003455","Mycobacterium tuberculosis embR mutant conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3003461","l":"Mycobacterium tuberculosis ndh with mutation conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3003461","Mycobacterium tuberculosis ndh with mutation conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3003463","l":"Mycobacterium tuberculosis kasA mutant conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3003463","Mycobacterium tuberculosis kasA mutant conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3003465","l":"Mycobacterium tuberculosis embB with mutation conferring resistance to rifampicin","na":1,"nb":1,"a":[["ARO%3A3003465","Mycobacterium tuberculosis embB with mutation conferring resistance to rifampicin"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3003470","l":"Mycobacterium tuberculosis gidB mutation conferring resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3003470","Mycobacterium tuberculosis gidB mutation conferring resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003480","l":"Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3003480","Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003481","l":"Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to amikacin","na":1,"nb":1,"a":[["ARO%3A3003481","Mycobacterium tuberculosis 16S rRNA mutation conferring resistance to amikacin"]],"b":[["antibacterial/amikacin.html","amikacin"]]},{"id":"ARO:3003485","l":"Chlamydophila psittaci 16S rRNA mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003485","Chlamydophila psittaci 16S rRNA mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003493","l":"Pasteurella multocida 16S rRNA mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003493","Pasteurella multocida 16S rRNA mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003495","l":"Neisseria gonorrhoeae 16S rRNA mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003495","Neisseria gonorrhoeae 16S rRNA mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003497","l":"Neisseria meningitidis 16S rRNA mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003497","Neisseria meningitidis 16S rRNA mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003502","l":"Borreliella burgdorferi 16S rRNA mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003502","Borreliella burgdorferi 16S rRNA mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003503","l":"Borreliella burgdorferi 16S rRNA mutation conferring resistance to kanamycin","na":1,"nb":1,"a":[["ARO%3A3003503","Borreliella burgdorferi 16S rRNA mutation conferring resistance to kanamycin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003504","l":"Borreliella burgdorferi 16S rRNA mutation conferring resistance to gentamicin","na":1,"nb":1,"a":[["ARO%3A3003504","Borreliella burgdorferi 16S rRNA mutation conferring resistance to gentamicin"]],"b":[["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3003510","l":"Helicobacter pylori 16S rRNA mutation conferring resistance to tetracycline","na":1,"nb":1,"a":[["ARO%3A3003510","Helicobacter pylori 16S rRNA mutation conferring resistance to tetracycline"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003512","l":"Salmonella enterica 16S rRNA (rrsD) mutation conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3003512","Salmonella enterica 16S rRNA (rrsD) mutation conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3003514","l":"Mycobacteroides chelonae 16S rRNA mutation conferring resistance to amikacin","na":1,"nb":1,"a":[["ARO%3A3003514","Mycobacteroides chelonae 16S rRNA mutation conferring resistance to amikacin"]],"b":[["antibacterial/amikacin.html","amikacin"]]},{"id":"ARO:3003515","l":"Mycobacteroides chelonae 16S rRNA mutation conferring resistance to kanamycin A","na":1,"nb":1,"a":[["ARO%3A3003515","Mycobacteroides chelonae 16S rRNA mutation conferring resistance to kanamycin A"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003516","l":"Mycobacteroides chelonae 16S rRNA mutation conferring resistance to tobramycin","na":1,"nb":1,"a":[["ARO%3A3003516","Mycobacteroides chelonae 16S rRNA mutation conferring resistance to tobramycin"]],"b":[["antibacterial/tobramycin.html","tobramycin"]]},{"id":"ARO:3003517","l":"Mycobacteroides chelonae 16S rRNA mutation conferring resistance to gentamicin C","na":1,"nb":1,"a":[["ARO%3A3003517","Mycobacteroides chelonae 16S rRNA mutation conferring resistance to gentamicin C"]],"b":[["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3003518","l":"Mycobacteroides chelonae 16S rRNA mutation conferring resistance to neomycin","na":1,"nb":1,"a":[["ARO%3A3003518","Mycobacteroides chelonae 16S rRNA mutation conferring resistance to neomycin"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3003539","l":"Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to hygromycin B","na":1,"nb":1,"a":[["ARO%3A3003539","Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to hygromycin B"]],"b":[["antibacterial/hygromycin-b.html","hygromycin B"]]},{"id":"ARO:3003540","l":"Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to hygromycin B","na":1,"nb":1,"a":[["ARO%3A3003540","Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to hygromycin B"]],"b":[["antibacterial/hygromycin-b.html","hygromycin B"]]},{"id":"ARO:3003541","l":"Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3003541","Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003542","l":"Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to kanamycin A","na":1,"nb":1,"a":[["ARO%3A3003542","Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to kanamycin A"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003543","l":"Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to kanamycin A","na":1,"nb":1,"a":[["ARO%3A3003543","Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to kanamycin A"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3003544","l":"Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to neomycin","na":1,"nb":1,"a":[["ARO%3A3003544","Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to neomycin"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3003545","l":"Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to neomycin","na":1,"nb":1,"a":[["ARO%3A3003545","Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to neomycin"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"ARO:3003546","l":"Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to viomycin","na":1,"nb":1,"a":[["ARO%3A3003546","Mycolicibacterium smegmatis 16S rRNA (rrsA) mutation conferring resistance to viomycin"]],"b":[["antimycobacterial/viomycin.html","viomycin"]]},{"id":"ARO:3003547","l":"Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to viomycin","na":1,"nb":1,"a":[["ARO%3A3003547","Mycolicibacterium smegmatis 16S rRNA (rrsB) mutation conferring resistance to viomycin"]],"b":[["antimycobacterial/viomycin.html","viomycin"]]},{"id":"ARO:3003551","l":"emeA","na":1,"nb":1,"a":[["ARO%3A3003551","emeA"]],"b":[["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3003552","l":"fusB","na":1,"nb":1,"a":[["ARO%3A3003552","fusB"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3003554","l":"tcmA","na":1,"nb":1,"a":[["ARO%3A3003554","tcmA"]],"b":[["antibacterial/tetracenomycin-c.html","tetracenomycin C"]]},{"id":"ARO:3003558","l":"y56 beta-lactamase","na":1,"nb":1,"a":[["ARO%3A3003558","y56 beta-lactamase"]],"b":[["antibacterial/ticarcillin.html","ticarcillin"]]},{"id":"ARO:3003562","l":"blaF","na":1,"nb":1,"a":[["ARO%3A3003562","blaF"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3003576","l":"eptA","na":1,"nb":1,"a":[["ARO%3A3003576","eptA"]],"b":[["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3003577","l":"ugd","na":1,"nb":1,"a":[["ARO%3A3003577","ugd"]],"b":[["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3003678","l":"TriABC-OpmH","na":1,"nb":1,"a":[["ARO%3A3003678","TriABC-OpmH"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3003685","l":"Pseudomonas aeruginosa parE conferring resistance to fluoroquinolones","na":1,"nb":1,"a":[["ARO%3A3003685","Pseudomonas aeruginosa parE conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003691","l":"MexJK-OpmH","na":1,"nb":1,"a":[["ARO%3A3003691","MexJK-OpmH"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3003729","l":"Staphylococcus aureus ileS with mutation conferring resistance to mupirocin","na":1,"nb":1,"a":[["ARO%3A3003729","Staphylococcus aureus ileS with mutation conferring resistance to mupirocin"]],"b":[["antibacterial/mupirocin.html","mupirocin"]]},{"id":"ARO:3003730","l":"Bifidobacterium bifidum ileS conferring resistance to mupirocin","na":1,"nb":1,"a":[["ARO%3A3003730","Bifidobacterium bifidum ileS conferring resistance to mupirocin"]],"b":[["antibacterial/mupirocin.html","mupirocin"]]},{"id":"ARO:3003731","l":"fusD","na":1,"nb":1,"a":[["ARO%3A3003731","fusD"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3003733","l":"fusC","na":1,"nb":1,"a":[["ARO%3A3003733","fusC"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3003735","l":"Staphylococcus aureus fusA with mutation conferring resistance to fusidic acid","na":1,"nb":1,"a":[["ARO%3A3003735","Staphylococcus aureus fusA with mutation conferring resistance to fusidic acid"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3003737","l":"Staphylococcus aureus fusE with mutation conferring resistance to fusidic acid","na":1,"nb":1,"a":[["ARO%3A3003737","Staphylococcus aureus fusE with mutation conferring resistance to fusidic acid"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3003741","l":"mphE","na":1,"nb":1,"a":[["ARO%3A3003741","mphE"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003744","l":"vatF","na":1,"nb":1,"a":[["ARO%3A3003744","vatF"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3003745","l":"mef(C)","na":1,"nb":1,"a":[["ARO%3A3003745","mef(C)"]],"b":[["antibacterial/oxytetracycline.html","oxytetracycline"]]},{"id":"ARO:3003748","l":"oleC","na":1,"nb":1,"a":[["ARO%3A3003748","oleC"]],"b":[["antibacterial/oleandomycin.html","oleandomycin"]]},{"id":"ARO:3003756","l":"Escherichia coli nfsB with mutation conferring resistance to nitrofurantoin","na":1,"nb":1,"a":[["ARO%3A3003756","Escherichia coli nfsB with mutation conferring resistance to nitrofurantoin"]],"b":[["antibacterial/nitrofurantoin.html","nitrofurantoin"]]},{"id":"ARO:3003760","l":"Enterococcus faecalis cls with mutation conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003760","Enterococcus faecalis cls with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003761","l":"eatAv","na":1,"nb":1,"a":[["ARO%3A3003761","eatAv"]],"b":[["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"ARO:3003762","l":"lnuE","na":1,"nb":1,"a":[["ARO%3A3003762","lnuE"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3003767","l":"mphM","na":1,"nb":1,"a":[["ARO%3A3003767","mphM"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003769","l":"Staphylococcus aureus mprF","na":1,"nb":1,"a":[["ARO%3A3003769","Staphylococcus aureus mprF"]],"b":[["antibacterial/defensin.html","defensin"]]},{"id":"ARO:3003770","l":"Listeria monocytogenes mprF","na":1,"nb":1,"a":[["ARO%3A3003770","Listeria monocytogenes mprF"]],"b":[["antibacterial/defensin.html","defensin"]]},{"id":"ARO:3003772","l":"Brucella suis mprF","na":1,"nb":1,"a":[["ARO%3A3003772","Brucella suis mprF"]],"b":[["antibacterial/defensin.html","defensin"]]},{"id":"ARO:3003773","l":"Clostridium perfringens mprF","na":1,"nb":1,"a":[["ARO%3A3003773","Clostridium perfringens mprF"]],"b":[["antibacterial/defensin.html","defensin"]]},{"id":"ARO:3003774","l":"Streptococcus agalactiae mprF","na":1,"nb":1,"a":[["ARO%3A3003774","Streptococcus agalactiae mprF"]],"b":[["antibacterial/defensin.html","defensin"]]},{"id":"ARO:3003775","l":"Escherichia coli murA with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003775","Escherichia coli murA with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003776","l":"Staphylococcus aureus murA with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003776","Staphylococcus aureus murA with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003777","l":"Borreliella burgdorferi murA with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003777","Borreliella burgdorferi murA with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003778","l":"Mycolicibacterium smegmatis ndh with mutation conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3003778","Mycolicibacterium smegmatis ndh with mutation conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3003779","l":"Mycobacterium tuberculosis variant bovis ndh with mutation conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3003779","Mycobacterium tuberculosis variant bovis ndh with mutation conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3003784","l":"Mycobacterium tuberculosis intrinsic murA conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003784","Mycobacterium tuberculosis intrinsic murA conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003785","l":"Chlamydia trachomatis intrinsic murA conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003785","Chlamydia trachomatis intrinsic murA conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003788","l":"Bacillus subtilis pgsA with mutation conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003788","Bacillus subtilis pgsA with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003789","l":"Campylobacter jejuni gyrA conferring resistance to fluoroquinolones","na":1,"nb":1,"a":[["ARO%3A3003789","Campylobacter jejuni gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003790","l":"Enterococcus faecium liaF mutant conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003790","Enterococcus faecium liaF mutant conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003791","l":"Enterococcus faecalis liaS mutant conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003791","Enterococcus faecalis liaS mutant conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003792","l":"Enterococcus faecalis liaR mutant conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003792","Enterococcus faecalis liaR mutant conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003794","l":"Staphylococcus aureus walK with mutation conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003794","Staphylococcus aureus walK with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003797","l":"Enterococcus faecalis YybT with mutation conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003797","Enterococcus faecalis YybT with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003800","l":"Enterococcus faecalis gdpD with mutation conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003800","Enterococcus faecalis gdpD with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003801","l":"bcr-1","na":1,"nb":1,"a":[["ARO%3A3003801","bcr-1"]],"b":[["antibacterial/bicozamycin.html","bicozamycin"]]},{"id":"ARO:3003803","l":"Staphylococcus aureus agrA with mutation conferring resistance to daptomycin","na":1,"nb":1,"a":[["ARO%3A3003803","Staphylococcus aureus agrA with mutation conferring resistance to daptomycin"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003805","l":"Enterococcus faecalis gshF with mutation conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003805","Enterococcus faecalis gshF with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003809","l":"Acinetobacter baumannii OprD conferring resistance to imipenem","na":1,"nb":1,"a":[["ARO%3A3003809","Acinetobacter baumannii OprD conferring resistance to imipenem"]],"b":[["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3003813","l":"Enterococcus faecalis drmA with mutation conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003813","Enterococcus faecalis drmA with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003815","l":"Enterococcus faecalis YvlB with mutation conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3003815","Enterococcus faecalis YvlB with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3003830","l":"Aminocoumarin resistant alaS","na":1,"nb":1,"a":[["ARO%3A3003830","Aminocoumarin resistant alaS"]],"b":[["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3003835","l":"cdeA","na":1,"nb":1,"a":[["ARO%3A3003835","cdeA"]],"b":[["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3003840","l":"aminocoumarin resistant cysB","na":1,"nb":1,"a":[["ARO%3A3003840","aminocoumarin resistant cysB"]],"b":[["antibacterial/novobiocin.html","novobiocin"]]},{"id":"ARO:3003844","l":"mfd","na":1,"nb":1,"a":[["ARO%3A3003844","mfd"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003889","l":"Escherichia coli GlpT with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003889","Escherichia coli GlpT with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003890","l":"Escherichia coli UhpT with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003890","Escherichia coli UhpT with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003900","l":"Escherichia coli cyaA with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003900","Escherichia coli cyaA with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003901","l":"Staphylococcus aureus GlpT with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003901","Staphylococcus aureus GlpT with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003902","l":"Staphylococcus aureus UhpT with mutation conferring resistance to fosfomycin","na":1,"nb":1,"a":[["ARO%3A3003902","Staphylococcus aureus UhpT with mutation conferring resistance to fosfomycin"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3003917","l":"Staphylococcus aureus menA with mutation conferring resistance to lysocin","na":1,"nb":1,"a":[["ARO%3A3003917","Staphylococcus aureus menA with mutation conferring resistance to lysocin"]],"b":[["antibacterial/lysocin-e.html","lysocin E"]]},{"id":"ARO:3003918","l":"apmA","na":1,"nb":1,"a":[["ARO%3A3003918","apmA"]],"b":[["antibacterial/apramycin.html","apramycin"]]},{"id":"ARO:3003920","l":"pgpB","na":1,"nb":1,"a":[["ARO%3A3003920","pgpB"]],"b":[["antibacterial/polymyxin-b2.html","polymyxin B2"]]},{"id":"ARO:3003924","l":"Haemophilus parainfluenzae gyrA conferring resistance to fluoroquinolones","na":1,"nb":1,"a":[["ARO%3A3003924","Haemophilus parainfluenzae gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003925","l":"Haemophilus parainfluenzae parC conferring resistance to fluoroquinolones","na":1,"nb":1,"a":[["ARO%3A3003925","Haemophilus parainfluenzae parC conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3003930","l":"rpsJ","na":1,"nb":1,"a":[["ARO%3A3003930","rpsJ"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003950","l":"msbA","na":1,"nb":1,"a":[["ARO%3A3003950","msbA"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3003952","l":"YojI","na":1,"nb":1,"a":[["ARO%3A3003952","YojI"]],"b":[["antibacterial/microcin-j25.html","microcin J25"]]},{"id":"ARO:3003954","l":"efmA","na":1,"nb":1,"a":[["ARO%3A3003954","efmA"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3003970","l":"D-Ala-D-Ala ligase","na":1,"nb":1,"a":[["ARO%3A3003970","D-Ala-D-Ala ligase"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3003977","l":"Halobacterium salinarum 16S rRNA mutation conferring resistance to pactamycin","na":1,"nb":1,"a":[["ARO%3A3003977","Halobacterium salinarum 16S rRNA mutation conferring resistance to pactamycin"]],"b":[["antibacterial/pactamycin.html","pactamycin"]]},{"id":"ARO:3003978","l":"Chlamydomonas reinhardtii 16S rRNA (rrnS) mutation conferring resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3003978","Chlamydomonas reinhardtii 16S rRNA (rrnS) mutation conferring resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3003980","l":"tetA(58)","na":1,"nb":1,"a":[["ARO%3A3003980","tetA(58)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003981","l":"tetB(58)","na":1,"nb":1,"a":[["ARO%3A3003981","tetB(58)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3003982","l":"LlmA 23S ribosomal RNA methyltransferase","na":1,"nb":1,"a":[["ARO%3A3003982","LlmA 23S ribosomal RNA methyltransferase"]],"b":[["antibacterial/clindamycin.html","clindamycin"]]},{"id":"ARO:3003984","l":"BahA","na":1,"nb":1,"a":[["ARO%3A3003984","BahA"]],"b":[["antibacterial/bacitracin.html","bacitracin"]]},{"id":"ARO:3003986","l":"TaeA","na":1,"nb":1,"a":[["ARO%3A3003986","TaeA"]],"b":[["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"ARO:3003987","l":"VatI","na":1,"nb":1,"a":[["ARO%3A3003987","VatI"]],"b":[["antibacterial/virginiamycin-m1.html","virginiamycin M1"]]},{"id":"ARO:3003988","l":"","na":1,"nb":1,"a":[["ARO%3A3003988","AAC(2')-IIb"]],"b":[["antifungal/kasugamycin.html","kasugamycin"]]},{"id":"ARO:3003989","l":"","na":1,"nb":1,"a":[["ARO%3A3003989","AAC(6')-34"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004031","l":"tetAB(46)","na":1,"nb":1,"a":[["ARO%3A3004031","tetAB(46)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004034","l":"tetAB(60)","na":1,"nb":1,"a":[["ARO%3A3004034","tetAB(60)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004038","l":"Pseudomonas aeruginosa emrE","na":1,"nb":1,"a":[["ARO%3A3004038","Pseudomonas aeruginosa emrE"]],"b":[["antibacterial/gentamicin-c.html","gentamicin C"]]},{"id":"ARO:3004039","l":"Escherichia coli emrE","na":1,"nb":1,"a":[["ARO%3A3004039","Escherichia coli emrE"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004041","l":"Klebsiella pneumoniae acrA","na":1,"nb":1,"a":[["ARO%3A3004041","Klebsiella pneumoniae acrA"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004042","l":"Enterobacter cloacae acrA","na":1,"nb":1,"a":[["ARO%3A3004042","Enterobacter cloacae acrA"]],"b":[["antibacterial/tigecycline.html","tigecycline"]]},{"id":"ARO:3004045","l":"Escherichia coli fabI mutations conferring resistance to isoniazid and triclosan","na":1,"nb":1,"a":[["ARO%3A3004045","Escherichia coli fabI mutations conferring resistance to isoniazid and triclosan"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3004046","l":"kdpDE","na":1,"nb":1,"a":[["ARO%3A3004046","kdpDE"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004049","l":"Escherichia coli fabG mutations conferring resistance to triclosan","na":1,"nb":1,"a":[["ARO%3A3004049","Escherichia coli fabG mutations conferring resistance to triclosan"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3004058","l":"Staphylococcus aureus 23S rRNA with mutation conferring resistance to linezolid","na":1,"nb":1,"a":[["ARO%3A3004058","Staphylococcus aureus 23S rRNA with mutation conferring resistance to linezolid"]],"b":[["antibacterial/linezolid.html","linezolid"]]},{"id":"ARO:3004083","l":"AcrEF-TolC confers resistance to ciprofloxacin","na":1,"nb":1,"a":[["ARO%3A3004083","AcrEF-TolC confers resistance to ciprofloxacin"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004085","l":"lnuG","na":1,"nb":1,"a":[["ARO%3A3004085","lnuG"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3004097","l":"Streptococcus mitis CdsA with mutation conferring daptomycin resistance","na":1,"nb":1,"a":[["ARO%3A3004097","Streptococcus mitis CdsA with mutation conferring daptomycin resistance"]],"b":[["antibacterial/daptomycin.html","daptomycin"]]},{"id":"ARO:3004105","l":"TMB-1","na":1,"nb":1,"a":[["ARO%3A3004105","TMB-1"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3004106","l":"TMB-2","na":1,"nb":1,"a":[["ARO%3A3004106","TMB-2"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3004111","l":"FosA6","na":1,"nb":1,"a":[["ARO%3A3004111","FosA6"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004113","l":"FosA7","na":1,"nb":1,"a":[["ARO%3A3004113","FosA7"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004124","l":"Moraxella catarrhalis M35","na":1,"nb":1,"a":[["ARO%3A3004124","Moraxella catarrhalis M35"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3004132","l":"Chlamydomonas reinhardtii 23S rRNA with mutation conferring resistance to erythromycin","na":1,"nb":1,"a":[["ARO%3A3004132","Chlamydomonas reinhardtii 23S rRNA with mutation conferring resistance to erythromycin"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004133","l":"Brachyspira hyodysenteriae 23S rRNA with mutation conferring resistance to tylosin","na":1,"nb":1,"a":[["ARO%3A3004133","Brachyspira hyodysenteriae 23S rRNA with mutation conferring resistance to tylosin"]],"b":[["antibacterial/tylosin.html","tylosin"]]},{"id":"ARO:3004134","l":"Helicobacter pylori 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004134","Helicobacter pylori 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004135","l":"Mycobacterium tuberculosis iniB with mutation conferring resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3004135","Mycobacterium tuberculosis iniB with mutation conferring resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3004149","l":"Escherichia coli 23S rRNA with mutation conferring resistance to clindamycin","na":1,"nb":1,"a":[["ARO%3A3004149","Escherichia coli 23S rRNA with mutation conferring resistance to clindamycin"]],"b":[["antibacterial/clindamycin.html","clindamycin"]]},{"id":"ARO:3004150","l":"Escherichia coli 23S rRNA with mutation conferring resistance to chloramphenicol","na":1,"nb":1,"a":[["ARO%3A3004150","Escherichia coli 23S rRNA with mutation conferring resistance to chloramphenicol"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004153","l":"Mycobacterium tuberculosis thyA with mutation conferring resistance to para-aminosalicylic acid","na":1,"nb":1,"a":[["ARO%3A3004153","Mycobacterium tuberculosis thyA with mutation conferring resistance to para-aminosalicylic acid"]],"b":[["antimycobacterial/4-aminosalicylic-acid.html","4-aminosalicylic acid"]]},{"id":"ARO:3004157","l":"Mycobacterium tuberculosis folC with mutation conferring resistance to para-aminosalicylic acid","na":1,"nb":1,"a":[["ARO%3A3004157","Mycobacterium tuberculosis folC with mutation conferring resistance to para-aminosalicylic acid"]],"b":[["antimycobacterial/4-aminosalicylic-acid.html","4-aminosalicylic acid"]]},{"id":"ARO:3004159","l":"Mycoplasma gallisepticum 23S rRNA mutation conferring resistance to pleuromutilin antibiotics","na":1,"nb":1,"a":[["ARO%3A3004159","Mycoplasma gallisepticum 23S rRNA mutation conferring resistance to pleuromutilin antibiotics"]],"b":[["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"ARO:3004160","l":"Escherichia coli 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004160","Escherichia coli 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004161","l":"Propionibacteria 23S rRNA with mutation conferring resistance to macrolide antibiotics","na":1,"nb":1,"a":[["ARO%3A3004161","Propionibacteria 23S rRNA with mutation conferring resistance to macrolide antibiotics"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004163","l":"Mycobacteroides abscessus 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004163","Mycobacteroides abscessus 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004164","l":"Mycobacterium avium 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004164","Mycobacterium avium 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004165","l":"Mycobacteroides chelonae 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004165","Mycobacteroides chelonae 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004166","l":"Mycobacterium intracellulare 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004166","Mycobacterium intracellulare 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004167","l":"Mycobacterium intracellulare 23S rRNA with mutation conferring resistance to azithromycin","na":1,"nb":1,"a":[["ARO%3A3004167","Mycobacterium intracellulare 23S rRNA with mutation conferring resistance to azithromycin"]],"b":[["antibacterial/azithromycin.html","azithromycin"]]},{"id":"ARO:3004168","l":"Mycobacterium kansasii 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004168","Mycobacterium kansasii 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004169","l":"Mycolicibacterium smegmatis 23S rRNA with mutation conferring resistance to clarithromycin","na":1,"nb":1,"a":[["ARO%3A3004169","Mycolicibacterium smegmatis 23S rRNA with mutation conferring resistance to clarithromycin"]],"b":[["antibacterial/clarithromycin.html","clarithromycin"]]},{"id":"ARO:3004171","l":"Streptomyces ambofaciens 23S rRNA with mutation conferring resistance to macrolide antibiotics","na":1,"nb":1,"a":[["ARO%3A3004171","Streptomyces ambofaciens 23S rRNA with mutation conferring resistance to macrolide antibiotics"]],"b":[["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3004173","l":"Escherichia coli 23S rRNA with mutation conferring resistance to oxazolidinone antibiotics","na":1,"nb":1,"a":[["ARO%3A3004173","Escherichia coli 23S rRNA with mutation conferring resistance to oxazolidinone antibiotics"]],"b":[["antibacterial/linezolid.html","linezolid"]]},{"id":"ARO:3004179","l":"Mycoplasma pneumoniae 23S rRNA mutation conferring resistance to erythromycin","na":1,"nb":1,"a":[["ARO%3A3004179","Mycoplasma pneumoniae 23S rRNA mutation conferring resistance to erythromycin"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004180","l":"Halobacterium halobium 23S rRNA mutation conferring resistance to chloramphenicol","na":1,"nb":1,"a":[["ARO%3A3004180","Halobacterium halobium 23S rRNA mutation conferring resistance to chloramphenicol"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004184","l":"Mycobacterium tuberculosis ribD with mutation conferring resistance to para-aminosalicylic acid","na":1,"nb":1,"a":[["ARO%3A3004184","Mycobacterium tuberculosis ribD with mutation conferring resistance to para-aminosalicylic acid"]],"b":[["antimycobacterial/4-aminosalicylic-acid.html","4-aminosalicylic acid"]]},{"id":"ARO:3004185","l":"mecD","na":1,"nb":1,"a":[["ARO%3A3004185","mecD"]],"b":[["antibacterial/methicillin.html","methicillin"]]},{"id":"ARO:3004289","l":"Vibrio cholerae varG","na":1,"nb":1,"a":[["ARO%3A3004289","Vibrio cholerae varG"]],"b":[["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3004291","l":"Rhodobacter sphaeroides ampC beta-lactamase","na":1,"nb":1,"a":[["ARO%3A3004291","Rhodobacter sphaeroides ampC beta-lactamase"]],"b":[["antibacterial/benzylpenicillin.html","benzylpenicillin"]]},{"id":"ARO:3004334","l":"Salmonella enterica gyrA with mutation conferring resistance to triclosan","na":1,"nb":1,"a":[["ARO%3A3004334","Salmonella enterica gyrA with mutation conferring resistance to triclosan"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3004335","l":"Escherichia coli gyrA with mutation conferring resistance to triclosan","na":1,"nb":1,"a":[["ARO%3A3004335","Escherichia coli gyrA with mutation conferring resistance to triclosan"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"ARO:3004357","l":"catV","na":1,"nb":1,"a":[["ARO%3A3004357","catV"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004361","l":"sul4","na":1,"nb":1,"a":[["ARO%3A3004361","sul4"]],"b":[["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3004450","l":"TRU-1","na":1,"nb":1,"a":[["ARO%3A3004450","TRU-1"]],"b":[["antibacterial/cefalotin.html","cefalotin"]]},{"id":"ARO:3004451","l":"Agrobacterium fabrum chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004451","Agrobacterium fabrum chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004452","l":"Alkalihalobacillus clausii chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004452","Alkalihalobacillus clausii chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004454","l":"Campylobacter coli chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004454","Campylobacter coli chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004455","l":"Streptococcus suis chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004455","Streptococcus suis chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004456","l":"Enterococcus faecium chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004456","Enterococcus faecium chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004457","l":"Staphylococcus intermedius chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004457","Staphylococcus intermedius chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004458","l":"Enterococcus faecalis chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004458","Enterococcus faecalis chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004460","l":"Vibrio anguillarum chloramphenicol acetyltransferase","na":1,"nb":1,"a":[["ARO%3A3004460","Vibrio anguillarum chloramphenicol acetyltransferase"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004480","l":"Bifidobacterium adolescentis rpoB mutants conferring resistance to rifampicin","na":1,"nb":1,"a":[["ARO%3A3004480","Bifidobacterium adolescentis rpoB mutants conferring resistance to rifampicin"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3004498","l":"dfrB4","na":1,"nb":1,"a":[["ARO%3A3004498","dfrB4"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004539","l":"mphH","na":1,"nb":1,"a":[["ARO%3A3004539","mphH"]],"b":[["antibacterial/azithromycin.html","azithromycin"]]},{"id":"ARO:3004542","l":"mphN","na":1,"nb":1,"a":[["ARO%3A3004542","mphN"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004543","l":"mphO","na":1,"nb":1,"a":[["ARO%3A3004543","mphO"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004546","l":"Campylobacter jejuni 23S rRNA with mutation conferring resistance to erythromycin","na":1,"nb":1,"a":[["ARO%3A3004546","Campylobacter jejuni 23S rRNA with mutation conferring resistance to erythromycin"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004547","l":"dfrA6","na":1,"nb":1,"a":[["ARO%3A3004547","dfrA6"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004548","l":"dfrA9","na":1,"nb":1,"a":[["ARO%3A3004548","dfrA9"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004549","l":"dfrB5","na":1,"nb":1,"a":[["ARO%3A3004549","dfrB5"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004550","l":"dfrA27","na":1,"nb":1,"a":[["ARO%3A3004550","dfrA27"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004551","l":"dfrA28","na":1,"nb":1,"a":[["ARO%3A3004551","dfrA28"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004552","l":"dfrA30","na":1,"nb":1,"a":[["ARO%3A3004552","dfrA30"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004554","l":"dfrA29","na":1,"nb":1,"a":[["ARO%3A3004554","dfrA29"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004555","l":"dfrA32","na":1,"nb":1,"a":[["ARO%3A3004555","dfrA32"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004556","l":"dfrB7","na":1,"nb":1,"a":[["ARO%3A3004556","dfrB7"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004561","l":"Clostridioides difficile murG with mutation conferring resistance to vancomycin","na":1,"nb":1,"a":[["ARO%3A3004561","Clostridioides difficile murG with mutation conferring resistance to vancomycin"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3004568","l":"dfrA18","na":1,"nb":1,"a":[["ARO%3A3004568","dfrA18"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004573","l":"Acinetobacter baumannii AbaF","na":1,"nb":1,"a":[["ARO%3A3004573","Acinetobacter baumannii AbaF"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004601","l":"LnuP","na":1,"nb":1,"a":[["ARO%3A3004601","LnuP"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3004605","l":"ermZ","na":1,"nb":1,"a":[["ARO%3A3004605","ermZ"]],"b":[["antibacterial/spiramycin-i.html","spiramycin I"]]},{"id":"ARO:3004608","l":"EreD","na":1,"nb":1,"a":[["ARO%3A3004608","EreD"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004622","l":"QnrS10","na":1,"nb":1,"a":[["ARO%3A3004622","QnrS10"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004624","l":"QnrS11","na":1,"nb":1,"a":[["ARO%3A3004624","QnrS11"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004625","l":"QnrS12","na":1,"nb":1,"a":[["ARO%3A3004625","QnrS12"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004627","l":"QnrS15","na":1,"nb":1,"a":[["ARO%3A3004627","QnrS15"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004628","l":"","na":1,"nb":1,"a":[["ARO%3A3004628","AAC(2')-IIa"]],"b":[["antifungal/kasugamycin.html","kasugamycin"]]},{"id":"ARO:3004630","l":"Mycoplasma genitalium parC mutations confers resistance to Moxifloxacin","na":1,"nb":1,"a":[["ARO%3A3004630","Mycoplasma genitalium parC mutations confers resistance to Moxifloxacin"]],"b":[["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3004631","l":"Mycoplasma genitalium gyrA mutation confers resistance to fluoroquinolones","na":1,"nb":1,"a":[["ARO%3A3004631","Mycoplasma genitalium gyrA mutation confers resistance to fluoroquinolones"]],"b":[["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3004636","l":"qnrE1","na":1,"nb":1,"a":[["ARO%3A3004636","qnrE1"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004637","l":"qnrE2","na":1,"nb":1,"a":[["ARO%3A3004637","qnrE2"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004640","l":"dfrA15b","na":1,"nb":1,"a":[["ARO%3A3004640","dfrA15b"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004642","l":"dfrA3b","na":1,"nb":1,"a":[["ARO%3A3004642","dfrA3b"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004643","l":"Erm(K)","na":1,"nb":1,"a":[["ARO%3A3004643","Erm(K)"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3004644","l":"dfrA6 from Proteus mirabilis","na":1,"nb":1,"a":[["ARO%3A3004644","dfrA6 from Proteus mirabilis"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004645","l":"dfrI","na":1,"nb":1,"a":[["ARO%3A3004645","dfrI"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3004651","l":"lin","na":1,"nb":1,"a":[["ARO%3A3004651","lin"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3004653","l":"tetR(G)","na":1,"nb":1,"a":[["ARO%3A3004653","tetR(G)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3004655","l":"nimB","na":1,"nb":1,"a":[["ARO%3A3004655","nimB"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3004656","l":"catII from Escherichia coli K-12","na":1,"nb":1,"a":[["ARO%3A3004656","catII from Escherichia coli K-12"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004657","l":"catA4","na":1,"nb":1,"a":[["ARO%3A3004657","catA4"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004658","l":"catA8","na":1,"nb":1,"a":[["ARO%3A3004658","catA8"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004659","l":"Mef(En2)","na":1,"nb":1,"a":[["ARO%3A3004659","Mef(En2)"]],"b":[["antibacterial/lincomycin.html","lincomycin"]]},{"id":"ARO:3004660","l":"catB11","na":1,"nb":1,"a":[["ARO%3A3004660","catB11"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004661","l":"Staphylococcus aureus FosB","na":1,"nb":1,"a":[["ARO%3A3004661","Staphylococcus aureus FosB"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004663","l":"FusF","na":1,"nb":1,"a":[["ARO%3A3004663","FusF"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"ARO:3004665","l":"cmlA8","na":1,"nb":1,"a":[["ARO%3A3004665","cmlA8"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3004669","l":"emtA","na":1,"nb":1,"a":[["ARO%3A3004669","emtA"]],"b":[["antibacterial/evernimicin.html","evernimicin"]]},{"id":"ARO:3004670","l":"FosB1","na":1,"nb":1,"a":[["ARO%3A3004670","FosB1"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004671","l":"FosB4","na":1,"nb":1,"a":[["ARO%3A3004671","FosB4"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004672","l":"FosB5","na":1,"nb":1,"a":[["ARO%3A3004672","FosB5"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004673","l":"FosB6","na":1,"nb":1,"a":[["ARO%3A3004673","FosB6"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004674","l":"FosD","na":1,"nb":1,"a":[["ARO%3A3004674","FosD"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3004681","l":"Clostridioides difficile rpoC with mutation conferring resistance to vancomycin","na":1,"nb":1,"a":[["ARO%3A3004681","Clostridioides difficile rpoC with mutation conferring resistance to vancomycin"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3004683","l":"aadS","na":1,"nb":1,"a":[["ARO%3A3004683","aadS"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004699","l":"sta","na":1,"nb":1,"a":[["ARO%3A3004699","sta"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"]]},{"id":"ARO:3004730","l":"tva(A)","na":1,"nb":1,"a":[["ARO%3A3004730","tva(A)"]],"b":[["antibacterial/pleuromutilin.html","pleuromutilin"]]},{"id":"ARO:3004835","l":"Neisseria gonorrhoeae pilQ gene conferring resistance to beta-lactam","na":1,"nb":1,"a":[["ARO%3A3004835","Neisseria gonorrhoeae pilQ gene conferring resistance to beta-lactam"]],"b":[["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3004836","l":"Neisseria gonorrhoeae 23S rRNA with mutation conferring resistance to azithromycin","na":1,"nb":1,"a":[["ARO%3A3004836","Neisseria gonorrhoeae 23S rRNA with mutation conferring resistance to azithromycin"]],"b":[["antibacterial/azithromycin.html","azithromycin"]]},{"id":"ARO:3004859","l":"Neisseria gonorrhoeae gyrB conferring resistance to zoliflodacin","na":1,"nb":1,"a":[["ARO%3A3004859","Neisseria gonorrhoeae gyrB conferring resistance to zoliflodacin"]],"b":[["antibacterial/zoliflodacin.html","zoliflodacin"]]},{"id":"ARO:3004860","l":"Burkholderia dolosa gyrA conferring resistance to fluoroquinolones","na":1,"nb":1,"a":[["ARO%3A3004860","Burkholderia dolosa gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3004873","l":"Neisseria gonorrhoeae folP with mutation conferring resistance to sulfonamides","na":1,"nb":1,"a":[["ARO%3A3004873","Neisseria gonorrhoeae folP with mutation conferring resistance to sulfonamides"]],"b":[["antibacterial/sulfisoxazole.html","sulfisoxazole"]]},{"id":"ARO:3004876","l":"Mycobacterium tuberculosis inhA mutations conferring resistance to ethionamide","na":1,"nb":1,"a":[["ARO%3A3004876","Mycobacterium tuberculosis inhA mutations conferring resistance to ethionamide"]],"b":[["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"ARO:3004921","l":"Mycobacterium tuberculosis ahpC mutations confer resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004921","Mycobacterium tuberculosis ahpC mutations confer resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004922","l":"Mycobacterium tuberculosis fabG1 mutations confer resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004922","Mycobacterium tuberculosis fabG1 mutations confer resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004923","l":"Mycobacterium tuberculosis furA mutations confer resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004923","Mycobacterium tuberculosis furA mutations confer resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004924","l":"Mycobacterium tuberculosis inbR mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004924","Mycobacterium tuberculosis inbR mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004925","l":"Mycobacterium tuberculosis mshA mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004925","Mycobacterium tuberculosis mshA mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004927","l":"Mycobacterium tuberculosis mshC mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004927","Mycobacterium tuberculosis mshC mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004928","l":"Mycobacterium tuberculosis mymA mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004928","Mycobacterium tuberculosis mymA mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004929","l":"Mycobacterium tuberculosis mmaA3 mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004929","Mycobacterium tuberculosis mmaA3 mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004931","l":"Mycobacterium tuberculosis nudC mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004931","Mycobacterium tuberculosis nudC mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004932","l":"Mycobacterium tuberculosis sigI mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3004932","Mycobacterium tuberculosis sigI mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3004933","l":"Mycobacterium tuberculosis fabG1 mutation conferring resistance to ethionamide","na":1,"nb":1,"a":[["ARO%3A3004933","Mycobacterium tuberculosis fabG1 mutation conferring resistance to ethionamide"]],"b":[["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"ARO:3004934","l":"Mycobacterium tuberculosis mshC mutations conferring resistance to ethionamide","na":1,"nb":1,"a":[["ARO%3A3004934","Mycobacterium tuberculosis mshC mutations conferring resistance to ethionamide"]],"b":[["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"ARO:3004935","l":"Mycobacterium tuberculosis nudC mutations conferring resistance to ethionamide","na":1,"nb":1,"a":[["ARO%3A3004935","Mycobacterium tuberculosis nudC mutations conferring resistance to ethionamide"]],"b":[["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"ARO:3004941","l":"Mycobacterium tuberculosis ddlA mutations confer resistance to cycloserine","na":1,"nb":1,"a":[["ARO%3A3004941","Mycobacterium tuberculosis ddlA mutations confer resistance to cycloserine"]],"b":[["antimycobacterial/d-cycloserine.html","D-cycloserine"]]},{"id":"ARO:3004945","l":"Mycobacterium tuberculosis ald mutations confer resistance to cycloserine","na":1,"nb":1,"a":[["ARO%3A3004945","Mycobacterium tuberculosis ald mutations confer resistance to cycloserine"]],"b":[["antimycobacterial/d-cycloserine.html","D-cycloserine"]]},{"id":"ARO:3004947","l":"Mycobacterium tuberculosis alr with mutation conferring resistance to cycloserine","na":1,"nb":1,"a":[["ARO%3A3004947","Mycobacterium tuberculosis alr with mutation conferring resistance to cycloserine"]],"b":[["antimycobacterial/d-cycloserine.html","D-cycloserine"]]},{"id":"ARO:3004950","l":"Mycobacterium tuberculosis ubiA mutations confer resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3004950","Mycobacterium tuberculosis ubiA mutations confer resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3004951","l":"Mycobacterium tuberculosis aftA mutations confer resistance to ethambutol","na":1,"nb":1,"a":[["ARO%3A3004951","Mycobacterium tuberculosis aftA mutations confer resistance to ethambutol"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3004955","l":"Mycobacterium tuberculosis Rv0565c mutation conferring resistance to ethionamide","na":1,"nb":1,"a":[["ARO%3A3004955","Mycobacterium tuberculosis Rv0565c mutation conferring resistance to ethionamide"]],"b":[["antimycobacterial/ethionamide.html","ethionamide"]]},{"id":"ARO:3004956","l":"Neisseria gonorrhoeae rpld","na":1,"nb":1,"a":[["ARO%3A3004956","Neisseria gonorrhoeae rpld"]],"b":[["antibacterial/azithromycin.html","azithromycin"]]},{"id":"ARO:3004957","l":"Mycobacterium tuberculosis clpC1 with mutation conferring resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004957","Mycobacterium tuberculosis clpC1 with mutation conferring resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004963","l":"Mycobacterium tuberculosis eis mutations confer resistance to kanamycin","na":1,"nb":1,"a":[["ARO%3A3004963","Mycobacterium tuberculosis eis mutations confer resistance to kanamycin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004967","l":"Mycobacterium tuberculosis whib7 mutations confer resistance to kanamycin","na":1,"nb":1,"a":[["ARO%3A3004967","Mycobacterium tuberculosis whib7 mutations confer resistance to kanamycin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3004968","l":"Mycobacterium tuberculosis whib7 mutation conferring resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3004968","Mycobacterium tuberculosis whib7 mutation conferring resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004971","l":"Mycobacterium tuberculosis Rv1258c mutations confer resistance to streptomycin","na":1,"nb":1,"a":[["ARO%3A3004971","Mycobacterium tuberculosis Rv1258c mutations confer resistance to streptomycin"]],"b":[["antibacterial/streptomycin.html","streptomycin"]]},{"id":"ARO:3004975","l":"Mycobacterium tuberculosis ppsC mutations confer resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004975","Mycobacterium tuberculosis ppsC mutations confer resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004976","l":"Mycobacterium tuberculosis ppsD mutations confer resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004976","Mycobacterium tuberculosis ppsD mutations confer resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004977","l":"Mycobacterium tuberculosis gpsI with mutations conferring resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004977","Mycobacterium tuberculosis gpsI with mutations conferring resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004978","l":"Mycobacterium tuberculosis mas mutations confer resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004978","Mycobacterium tuberculosis mas mutations confer resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004981","l":"Mycobacterium tuberculosis Rv0191 mutations confer resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004981","Mycobacterium tuberculosis Rv0191 mutations confer resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004984","l":"Mycobacterium tuberculosis Rv1667 mutations confer resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004984","Mycobacterium tuberculosis Rv1667 mutations confer resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004987","l":"Mycobacterium tuberculosis Rv2731 mutations confer resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004987","Mycobacterium tuberculosis Rv2731 mutations confer resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004993","l":"Mycobacterium tuberculosis Rv3169 mutations confer resistance to pyrazinamide","na":1,"nb":1,"a":[["ARO%3A3004993","Mycobacterium tuberculosis Rv3169 mutations confer resistance to pyrazinamide"]],"b":[["antimycobacterial/pyrazinecarboxamide.html","pyrazinecarboxamide"]]},{"id":"ARO:3004999","l":"Mycobacterium tuberculosis rpoA mutations confer resistance to rifampicin","na":1,"nb":1,"a":[["ARO%3A3004999","Mycobacterium tuberculosis rpoA mutations confer resistance to rifampicin"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3005006","l":"tet(57)","na":1,"nb":1,"a":[["ARO%3A3005006","tet(57)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3005007","l":"QnrVC2","na":1,"nb":1,"a":[["ARO%3A3005007","QnrVC2"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3005024","l":"FosL1","na":1,"nb":1,"a":[["ARO%3A3005024","FosL1"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3005036","l":"BLMT","na":1,"nb":1,"a":[["ARO%3A3005036","BLMT"]],"b":[["antibacterial/bleomycin.html","bleomycin"]]},{"id":"ARO:3005043","l":"cmlA9","na":1,"nb":1,"a":[["ARO%3A3005043","cmlA9"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"]]},{"id":"ARO:3005045","l":"SatA","na":1,"nb":1,"a":[["ARO%3A3005045","SatA"]],"b":[["antibacterial/streptothricin-f.html","streptothricin F"]]},{"id":"ARO:3005058","l":"mlaFEDB","na":1,"nb":1,"a":[["ARO%3A3005058","mlaFEDB"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3005083","l":"Thermus thermophilus 23s rRNA conferring resistance to pleuromutilin antibiotics","na":1,"nb":1,"a":[["ARO%3A3005083","Thermus thermophilus 23s rRNA conferring resistance to pleuromutilin antibiotics"]],"b":[["antibacterial/tiamulin.html","tiamulin"]]},{"id":"ARO:3005084","l":"dfrA31","na":1,"nb":1,"a":[["ARO%3A3005084","dfrA31"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005087","l":"msrF","na":1,"nb":1,"a":[["ARO%3A3005087","msrF"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3005088","l":"msrH","na":1,"nb":1,"a":[["ARO%3A3005088","msrH"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3005089","l":"mef(D)","na":1,"nb":1,"a":[["ARO%3A3005089","mef(D)"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3005099","l":"23S rRNA (adenine(2058)-N(6))-methyltransferase Erm(A)","na":1,"nb":1,"a":[["ARO%3A3005099","23S rRNA (adenine(2058)-N(6))-methyltransferase Erm(A)"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3005100","l":"FosB2","na":1,"nb":1,"a":[["ARO%3A3005100","FosB2"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3005102","l":"Mycobacterium tuberculosis katG mutations conferring resistance to prothionamide","na":1,"nb":1,"a":[["ARO%3A3005102","Mycobacterium tuberculosis katG mutations conferring resistance to prothionamide"]],"b":[["antibacterial/prothionamide.html","prothionamide"]]},{"id":"ARO:3005105","l":"Mycobacterium tuberculosis ethA mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3005105","Mycobacterium tuberculosis ethA mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3005106","l":"Mycobacterium tuberculosis ethA mutations conferring resistance to prothionamide","na":1,"nb":1,"a":[["ARO%3A3005106","Mycobacterium tuberculosis ethA mutations conferring resistance to prothionamide"]],"b":[["antibacterial/prothionamide.html","prothionamide"]]},{"id":"ARO:3005108","l":"Mycobacterium tuberculosis mshA mutations conferring resistance to prothionamide","na":1,"nb":1,"a":[["ARO%3A3005108","Mycobacterium tuberculosis mshA mutations conferring resistance to prothionamide"]],"b":[["antibacterial/prothionamide.html","prothionamide"]]},{"id":"ARO:3005162","l":"FosA7.5","na":1,"nb":1,"a":[["ARO%3A3005162","FosA7.5"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3005164","l":"dfrA35","na":1,"nb":1,"a":[["ARO%3A3005164","dfrA35"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005178","l":"Mycobacterium tuberculosis ethA mutations conferring resistance to perchlozone","na":1,"nb":1,"a":[["ARO%3A3005178","Mycobacterium tuberculosis ethA mutations conferring resistance to perchlozone"]],"b":[["antibacterial/perchlozone.html","perchlozone"]]},{"id":"ARO:3005255","l":"TEM-224","na":1,"nb":1,"a":[["ARO%3A3005255","TEM-224"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005256","l":"TEM-225","na":1,"nb":1,"a":[["ARO%3A3005256","TEM-225"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005257","l":"TEM-226","na":1,"nb":1,"a":[["ARO%3A3005257","TEM-226"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005258","l":"TEM-227","na":1,"nb":1,"a":[["ARO%3A3005258","TEM-227"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005259","l":"TEM-228","na":1,"nb":1,"a":[["ARO%3A3005259","TEM-228"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005260","l":"TEM-229","na":1,"nb":1,"a":[["ARO%3A3005260","TEM-229"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005261","l":"TEM-230","na":1,"nb":1,"a":[["ARO%3A3005261","TEM-230"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005262","l":"TEM-231","na":1,"nb":1,"a":[["ARO%3A3005262","TEM-231"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005263","l":"TEM-232","na":1,"nb":1,"a":[["ARO%3A3005263","TEM-232"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005264","l":"TEM-233","na":1,"nb":1,"a":[["ARO%3A3005264","TEM-233"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005265","l":"TEM-234","na":1,"nb":1,"a":[["ARO%3A3005265","TEM-234"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005266","l":"TEM-235","na":1,"nb":1,"a":[["ARO%3A3005266","TEM-235"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005267","l":"TEM-236","na":1,"nb":1,"a":[["ARO%3A3005267","TEM-236"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005268","l":"TEM-237","na":1,"nb":1,"a":[["ARO%3A3005268","TEM-237"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005269","l":"TEM-238","na":1,"nb":1,"a":[["ARO%3A3005269","TEM-238"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005270","l":"TEM-240","na":1,"nb":1,"a":[["ARO%3A3005270","TEM-240"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005271","l":"TEM-241","na":1,"nb":1,"a":[["ARO%3A3005271","TEM-241"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005272","l":"TEM-242","na":1,"nb":1,"a":[["ARO%3A3005272","TEM-242"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005273","l":"TEM-243","na":1,"nb":1,"a":[["ARO%3A3005273","TEM-243"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3005334","l":"Trimethoprim-resistant dihydrofolate reductase DfrA42","na":1,"nb":1,"a":[["ARO%3A3005334","Trimethoprim-resistant dihydrofolate reductase DfrA42"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005345","l":"Trimethoprim-resistant dihydrofolate reductase DfrA43","na":1,"nb":1,"a":[["ARO%3A3005345","Trimethoprim-resistant dihydrofolate reductase DfrA43"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005346","l":"DfrA34","na":1,"nb":1,"a":[["ARO%3A3005346","DfrA34"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005347","l":"DfrA37","na":1,"nb":1,"a":[["ARO%3A3005347","DfrA37"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005348","l":"DfrA36","na":1,"nb":1,"a":[["ARO%3A3005348","DfrA36"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005349","l":"DfrA38","na":1,"nb":1,"a":[["ARO%3A3005349","DfrA38"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005350","l":"DfrB9","na":1,"nb":1,"a":[["ARO%3A3005350","DfrB9"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005351","l":"DfrA39","na":1,"nb":1,"a":[["ARO%3A3005351","DfrA39"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3005354","l":"dfr22","na":1,"nb":1,"a":[["ARO%3A3005354","dfr22"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3006139","l":"TEM-98","na":1,"nb":1,"a":[["ARO%3A3006139","TEM-98"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3006140","l":"TEM-99","na":1,"nb":1,"a":[["ARO%3A3006140","TEM-99"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3006228","l":"ACC-1a","na":1,"nb":1,"a":[["ARO%3A3006228","ACC-1a"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3006229","l":"ACC-1b","na":1,"nb":1,"a":[["ARO%3A3006229","ACC-1b"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3006230","l":"ACC-1c","na":1,"nb":1,"a":[["ARO%3A3006230","ACC-1c"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3006231","l":"ACC-1d","na":1,"nb":1,"a":[["ARO%3A3006231","ACC-1d"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3006232","l":"ACC-7","na":1,"nb":1,"a":[["ARO%3A3006232","ACC-7"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3006233","l":"ACC-8","na":1,"nb":1,"a":[["ARO%3A3006233","ACC-8"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007003","l":"VHH-1","na":1,"nb":1,"a":[["ARO%3A3007003","VHH-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"]]},{"id":"ARO:3007004","l":"VHW-1","na":1,"nb":1,"a":[["ARO%3A3007004","VHW-1"]],"b":[["antibacterial/ampicillin.html","ampicillin"]]},{"id":"ARO:3007005","l":"YEM-1","na":1,"nb":1,"a":[["ARO%3A3007005","YEM-1"]],"b":[["antibacterial/imipenem.html","imipenem"]]},{"id":"ARO:3007012","l":"sepA","na":1,"nb":1,"a":[["ARO%3A3007012","sepA"]],"b":[["biocide/acriflavine.html","acriflavine"]]},{"id":"ARO:3007013","l":"sdrM","na":1,"nb":1,"a":[["ARO%3A3007013","sdrM"]],"b":[["antibacterial/norfloxacin.html","norfloxacin"]]},{"id":"ARO:3007014","l":"qacJ","na":1,"nb":1,"a":[["ARO%3A3007014","qacJ"]],"b":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"]]},{"id":"ARO:3007015","l":"qacG","na":1,"nb":1,"a":[["ARO%3A3007015","qacG"]],"b":[["antibacterial/benzalkonium-chloride.html","benzalkonium chloride"]]},{"id":"ARO:3007019","l":"fexB","na":1,"nb":1,"a":[["ARO%3A3007019","fexB"]],"b":[["antibacterial/florfenicol.html","florfenicol"]]},{"id":"ARO:3007041","l":"Erm(52)","na":1,"nb":1,"a":[["ARO%3A3007041","Erm(52)"]],"b":[["antibacterial/clindamycin.html","clindamycin"]]},{"id":"ARO:3007043","l":"msr(I)","na":1,"nb":1,"a":[["ARO%3A3007043","msr(I)"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007052","l":"Helicobacter pylori gyrA conferring resistance to fluoroquinolones","na":1,"nb":1,"a":[["ARO%3A3007052","Helicobacter pylori gyrA conferring resistance to fluoroquinolones"]],"b":[["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"ARO:3007057","l":"Helicobacter pylori pbp3 conferring resistance to amoxicillin","na":1,"nb":1,"a":[["ARO%3A3007057","Helicobacter pylori pbp3 conferring resistance to amoxicillin"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3007058","l":"Helicobacter pylori pbp2 mutants conferring resistance to amoxicillin","na":1,"nb":1,"a":[["ARO%3A3007058","Helicobacter pylori pbp2 mutants conferring resistance to amoxicillin"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3007059","l":"Helicobacter pylori frxA mutation conferring resistance to metronidazole","na":1,"nb":1,"a":[["ARO%3A3007059","Helicobacter pylori frxA mutation conferring resistance to metronidazole"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007060","l":"Helicobacter pylori pbp1 mutants conferring resistance to amoxicillin","na":1,"nb":1,"a":[["ARO%3A3007060","Helicobacter pylori pbp1 mutants conferring resistance to amoxicillin"]],"b":[["antibacterial/amoxicillin.html","amoxicillin"]]},{"id":"ARO:3007061","l":"hp1165","na":1,"nb":1,"a":[["ARO%3A3007061","hp1165"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007069","l":"FosY","na":1,"nb":1,"a":[["ARO%3A3007069","FosY"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007073","l":"Bacillus subtilis rpoB mutants conferring resistance to rifampin","na":1,"nb":1,"a":[["ARO%3A3007073","Bacillus subtilis rpoB mutants conferring resistance to rifampin"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3007097","l":"FosM1","na":1,"nb":1,"a":[["ARO%3A3007097","FosM1"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007098","l":"FosM2","na":1,"nb":1,"a":[["ARO%3A3007098","FosM2"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007099","l":"FosM3","na":1,"nb":1,"a":[["ARO%3A3007099","FosM3"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007104","l":"nimA","na":1,"nb":1,"a":[["ARO%3A3007104","nimA"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007105","l":"nimC","na":1,"nb":1,"a":[["ARO%3A3007105","nimC"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007106","l":"nimD","na":1,"nb":1,"a":[["ARO%3A3007106","nimD"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007107","l":"nimE","na":1,"nb":1,"a":[["ARO%3A3007107","nimE"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007108","l":"nimF","na":1,"nb":1,"a":[["ARO%3A3007108","nimF"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007109","l":"nimG","na":1,"nb":1,"a":[["ARO%3A3007109","nimG"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007110","l":"nimH","na":1,"nb":1,"a":[["ARO%3A3007110","nimH"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007111","l":"nimI","na":1,"nb":1,"a":[["ARO%3A3007111","nimI"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007112","l":"nimJ","na":1,"nb":1,"a":[["ARO%3A3007112","nimJ"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007113","l":"nimK","na":1,"nb":1,"a":[["ARO%3A3007113","nimK"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007119","l":"tet(O/32/O)","na":1,"nb":1,"a":[["ARO%3A3007119","tet(O/32/O)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007120","l":"tet(O/M/O)","na":1,"nb":1,"a":[["ARO%3A3007120","tet(O/M/O)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007121","l":"tet(O/W)","na":1,"nb":1,"a":[["ARO%3A3007121","tet(O/W)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007122","l":"tet(O/W/32/O)","na":1,"nb":1,"a":[["ARO%3A3007122","tet(O/W/32/O)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007123","l":"tet(O/W/O)","na":1,"nb":1,"a":[["ARO%3A3007123","tet(O/W/O)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007124","l":"tet(W/32/O)","na":1,"nb":1,"a":[["ARO%3A3007124","tet(W/32/O)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007127","l":"Streptomyces lividans otr(A)","na":1,"nb":1,"a":[["ARO%3A3007127","Streptomyces lividans otr(A)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007185","l":"Mycobacterium tuberculosis Rv1258c mutations confer resistance to ethambutol and capreomycin","na":1,"nb":1,"a":[["ARO%3A3007185","Mycobacterium tuberculosis Rv1258c mutations confer resistance to ethambutol and capreomycin"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"ARO:3007200","l":"PAM-2","na":1,"nb":1,"a":[["ARO%3A3007200","PAM-2"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007210","l":"Nocardia farcinica rox","na":1,"nb":1,"a":[["ARO%3A3007210","Nocardia farcinica rox"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3007368","l":"FosG","na":1,"nb":1,"a":[["ARO%3A3007368","FosG"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007369","l":"FosH","na":1,"nb":1,"a":[["ARO%3A3007369","FosH"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007370","l":"FosI","na":1,"nb":1,"a":[["ARO%3A3007370","FosI"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007371","l":"FosA8","na":1,"nb":1,"a":[["ARO%3A3007371","FosA8"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007372","l":"FosBx1","na":1,"nb":1,"a":[["ARO%3A3007372","FosBx1"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"ARO:3007381","l":"KPC-86","na":1,"nb":1,"a":[["ARO%3A3007381","KPC-86"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007383","l":"KPC-95","na":1,"nb":1,"a":[["ARO%3A3007383","KPC-95"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007401","l":"ANT(9)-Ib","na":1,"nb":1,"a":[["ARO%3A3007401","ANT(9)-Ib"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3007420","l":"Klebsiella pneumoniae lamB with mutations conferring resistance to ceftazidime-avibactam","na":1,"nb":1,"a":[["ARO%3A3007420","Klebsiella pneumoniae lamB with mutations conferring resistance to ceftazidime-avibactam"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007421","l":"Klebsiella pneumoniae PBP3 mutants conferring resistance to ceftazidime-avibactam","na":1,"nb":1,"a":[["ARO%3A3007421","Klebsiella pneumoniae PBP3 mutants conferring resistance to ceftazidime-avibactam"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007427","l":"ThfT","na":1,"nb":1,"a":[["ARO%3A3007427","ThfT"]],"b":[["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3007436","l":"KPC-96","na":1,"nb":1,"a":[["ARO%3A3007436","KPC-96"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007446","l":"KPC-100","na":1,"nb":1,"a":[["ARO%3A3007446","KPC-100"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007448","l":"TEM-246","na":1,"nb":1,"a":[["ARO%3A3007448","TEM-246"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007449","l":"KPC-97","na":1,"nb":1,"a":[["ARO%3A3007449","KPC-97"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007450","l":"KPC-98","na":1,"nb":1,"a":[["ARO%3A3007450","KPC-98"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007451","l":"TEM-247","na":1,"nb":1,"a":[["ARO%3A3007451","TEM-247"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007452","l":"KPC-99","na":1,"nb":1,"a":[["ARO%3A3007452","KPC-99"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007453","l":"TEM-244","na":1,"nb":1,"a":[["ARO%3A3007453","TEM-244"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007454","l":"TEM-245","na":1,"nb":1,"a":[["ARO%3A3007454","TEM-245"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"ARO:3007459","l":"EstT","na":1,"nb":1,"a":[["ARO%3A3007459","EstT"]],"b":[["antibacterial/tilmicosin.html","tilmicosin"]]},{"id":"ARO:3007476","l":"Mycobacterium abscessus atpE with mutation conferring resistance to bedaquiline","na":1,"nb":1,"a":[["ARO%3A3007476","Mycobacterium abscessus atpE with mutation conferring resistance to bedaquiline"]],"b":[["antimycobacterial/bedaquiline.html","bedaquiline"]]},{"id":"ARO:3007489","l":"dfrB10","na":1,"nb":1,"a":[["ARO%3A3007489","dfrB10"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3007490","l":"dfrB11","na":1,"nb":1,"a":[["ARO%3A3007490","dfrB11"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"ARO:3007491","l":"Pseudomonas aeruginosa ampR with mutation conferring resistance to aztreonam","na":1,"nb":1,"a":[["ARO%3A3007491","Pseudomonas aeruginosa ampR with mutation conferring resistance to aztreonam"]],"b":[["antibacterial/aztreonam.html","aztreonam"]]},{"id":"ARO:3007492","l":"tet(62)","na":1,"nb":1,"a":[["ARO%3A3007492","tet(62)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007509","l":"Shigella flexneri acrA","na":1,"nb":1,"a":[["ARO%3A3007509","Shigella flexneri acrA"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"ARO:3007515","l":"ANT(9)-Ic","na":1,"nb":1,"a":[["ARO%3A3007515","ANT(9)-Ic"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3007527","l":"Bacillus subtilis rpsE mutations conferring resistance to spectinomycin","na":1,"nb":1,"a":[["ARO%3A3007527","Bacillus subtilis rpsE mutations conferring resistance to spectinomycin"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3007536","l":"Mycobacterium tuberculosis 16S rRNA (rrnS) mutation conferring resistance to amikacin","na":1,"nb":1,"a":[["ARO%3A3007536","Mycobacterium tuberculosis 16S rRNA (rrnS) mutation conferring resistance to amikacin"]],"b":[["antibacterial/kanamycin-a.html","kanamycin A"]]},{"id":"ARO:3007537","l":"Mycobacterium tuberculosis 16S rRNA (rrnS) mutation conferring resistance to kanamycin","na":1,"nb":1,"a":[["ARO%3A3007537","Mycobacterium tuberculosis 16S rRNA (rrnS) mutation conferring resistance to kanamycin"]],"b":[["antibacterial/amikacin.html","amikacin"]]},{"id":"ARO:3007539","l":"APH(9)-Ic","na":1,"nb":1,"a":[["ARO%3A3007539","APH(9)-Ic"]],"b":[["antibacterial/spectinomycin.html","spectinomycin"]]},{"id":"ARO:3007544","l":"Erysipelothrix rhusiopathiae gyrA with mutation conferring resistance to enrofloxacin","na":1,"nb":1,"a":[["ARO%3A3007544","Erysipelothrix rhusiopathiae gyrA with mutation conferring resistance to enrofloxacin"]],"b":[["antibacterial/enrofloxacin.html","enrofloxacin"]]},{"id":"ARO:3007548","l":"Candida spp. FKS2 with mutations conferring resistance to echinocandin antibiotics","na":1,"nb":1,"a":[["ARO%3A3007548","Candida spp. FKS2 with mutations conferring resistance to echinocandin antibiotics"]],"b":[["antifungal/micafungin.html","micafungin"]]},{"id":"ARO:3007551","l":"Candida spp. Upc2 with mutations conferring resistance to azole antibiotics","na":1,"nb":1,"a":[["ARO%3A3007551","Candida spp. Upc2 with mutations conferring resistance to azole antibiotics"]],"b":[["antifungal/fluconazole.html","fluconazole"]]},{"id":"ARO:3007557","l":"Candida spp. FUR1 with mutations conferring resistance to 5-flucytosine","na":1,"nb":1,"a":[["ARO%3A3007557","Candida spp. FUR1 with mutations conferring resistance to 5-flucytosine"]],"b":[["antifungal/flucytosine.html","flucytosine"]]},{"id":"ARO:3007559","l":"Saccharomyces spp. FUR1 with mutations conferring resistance to 5-flucytosine","na":1,"nb":1,"a":[["ARO%3A3007559","Saccharomyces spp. FUR1 with mutations conferring resistance to 5-flucytosine"]],"b":[["antifungal/flucytosine.html","flucytosine"]]},{"id":"ARO:3007561","l":"OXA-1038","na":1,"nb":1,"a":[["ARO%3A3007561","OXA-1038"]],"b":[["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3007562","l":"OXA-1039","na":1,"nb":1,"a":[["ARO%3A3007562","OXA-1039"]],"b":[["antibacterial/meropenem.html","meropenem"]]},{"id":"ARO:3007566","l":"Cryptococcus spp. AFR1","na":1,"nb":1,"a":[["ARO%3A3007566","Cryptococcus spp. AFR1"]],"b":[["antifungal/fluconazole.html","fluconazole"]]},{"id":"ARO:3007568","l":"Cryptococcus spp. UXS1 conferring resistance to 5-flucytosine via absence","na":1,"nb":1,"a":[["ARO%3A3007568","Cryptococcus spp. UXS1 conferring resistance to 5-flucytosine via absence"]],"b":[["antifungal/flucytosine.html","flucytosine"]]},{"id":"ARO:3007642","l":"Aspergillus spp. fcyB conferring resistance to 5-flucytosine via reduced permeability","na":1,"nb":1,"a":[["ARO%3A3007642","Aspergillus spp. fcyB conferring resistance to 5-flucytosine via reduced permeability"]],"b":[["antifungal/flucytosine.html","flucytosine"]]},{"id":"ARO:3007664","l":"Candida spp. High Osmolarity Glycerol 1 conferring resistance to caspofungin via absence","na":1,"nb":1,"a":[["ARO%3A3007664","Candida spp. High Osmolarity Glycerol 1 conferring resistance to caspofungin via absence"]],"b":[["antifungal/caspofungin.html","caspofungin"]]},{"id":"ARO:3007665","l":"Candida spp. FCY2 conferring resistance to 5-flucytosine via reduced permeability","na":1,"nb":1,"a":[["ARO%3A3007665","Candida spp. FCY2 conferring resistance to 5-flucytosine via reduced permeability"]],"b":[["antifungal/flucytosine.html","flucytosine"]]},{"id":"ARO:3007671","l":"Clostridioides difficile nimB","na":1,"nb":1,"a":[["ARO%3A3007671","Clostridioides difficile nimB"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"ARO:3007674","l":"Mycobacterium tuberculosis Rv0678 with mutation conferring resistance to bedaquiline","na":1,"nb":1,"a":[["ARO%3A3007674","Mycobacterium tuberculosis Rv0678 with mutation conferring resistance to bedaquiline"]],"b":[["antimycobacterial/bedaquiline.html","bedaquiline"]]},{"id":"ARO:3007678","l":"IreK","na":1,"nb":1,"a":[["ARO%3A3007678","IreK"]],"b":[["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"ARO:3007749","l":"Salmonella gallinarum folP with mutation conferring resistance to sulfonamides","na":1,"nb":1,"a":[["ARO%3A3007749","Salmonella gallinarum folP with mutation conferring resistance to sulfonamides"]],"b":[["antibacterial/sulfamethoxazole.html","sulfamethoxazole"]]},{"id":"ARO:3007759","l":"Treponema pallidum 23S rRNA with mutation conferring resistance to erythromycin","na":1,"nb":1,"a":[["ARO%3A3007759","Treponema pallidum 23S rRNA with mutation conferring resistance to erythromycin"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"ARO:3007794","l":"Vibrio vulnificus rpoB mutants conferring resistance to rifampin","na":1,"nb":1,"a":[["ARO%3A3007794","Vibrio vulnificus rpoB mutants conferring resistance to rifampin"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"ARO:3007798","l":"Mycobacterium tuberculosis iniA mutations conferring resistance to isoniazid","na":1,"nb":1,"a":[["ARO%3A3007798","Mycobacterium tuberculosis iniA mutations conferring resistance to isoniazid"]],"b":[["antimycobacterial/isoniazide.html","isoniazide"]]},{"id":"ARO:3007806","l":"Mycobacterium tuberculosis gyrA mutations conferring resistance to moxifloxacin","na":1,"nb":1,"a":[["ARO%3A3007806","Mycobacterium tuberculosis gyrA mutations conferring resistance to moxifloxacin"]],"b":[["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"ARO:3007807","l":"Mycobacterium tuberculosis gyrA mutations conferring resistance to ofloxacin","na":1,"nb":1,"a":[["ARO%3A3007807","Mycobacterium tuberculosis gyrA mutations conferring resistance to ofloxacin"]],"b":[["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3007808","l":"Mycobacterium tuberculosis gyrB mutations conferring resistance to ofloxacin","na":1,"nb":1,"a":[["ARO%3A3007808","Mycobacterium tuberculosis gyrB mutations conferring resistance to ofloxacin"]],"b":[["antibacterial/ofloxacin.html","ofloxacin"]]},{"id":"ARO:3007809","l":"Mycobacterium tuberculosis gyrA mutations conferring resistance to levofloxacin","na":1,"nb":1,"a":[["ARO%3A3007809","Mycobacterium tuberculosis gyrA mutations conferring resistance to levofloxacin"]],"b":[["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"ARO:3007810","l":"Mycobacterium tuberculosis gyrB mutations conferring resistance to levofloxacin","na":1,"nb":1,"a":[["ARO%3A3007810","Mycobacterium tuberculosis gyrB mutations conferring resistance to levofloxacin"]],"b":[["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"ARO:3007811","l":"Mycobacterium tuberculosis fabG1 with mutations conferring resistance to prothionamide","na":1,"nb":1,"a":[["ARO%3A3007811","Mycobacterium tuberculosis fabG1 with mutations conferring resistance to prothionamide"]],"b":[["antibacterial/prothionamide.html","prothionamide"]]},{"id":"ARO:3007838","l":"tet(65)","na":1,"nb":1,"a":[["ARO%3A3007838","tet(65)"]],"b":[["antibacterial/tetracycline.html","tetracycline"]]},{"id":"ARO:3007843","l":"VRA-F","na":1,"nb":1,"a":[["ARO%3A3007843","VRA-F"]],"b":[["antibacterial/vancomycin.html","vancomycin"]]},{"id":"ARO:3007849","l":"Mycobacterium tuberculosis fgd1 with mutation conferring resistance to delamanid","na":1,"nb":1,"a":[["ARO%3A3007849","Mycobacterium tuberculosis fgd1 with mutation conferring resistance to delamanid"]],"b":[["antibacterial/delamanid.html","delamanid"]]},{"id":"ARO:3007852","l":"Mycobacterium tuberculosis Rv0678 with mutation conferring resistance to clofazimine","na":1,"nb":1,"a":[["ARO%3A3007852","Mycobacterium tuberculosis Rv0678 with mutation conferring resistance to clofazimine"]],"b":[["antimycobacterial/clofazimine.html","clofazimine"]]},{"id":"ARO:3007854","l":"Mycobacterium tuberculosis atpE with mutation conferring resistance to bedaquiline","na":1,"nb":1,"a":[["ARO%3A3007854","Mycobacterium tuberculosis atpE with mutation conferring resistance to bedaquiline"]],"b":[["antimycobacterial/bedaquiline.html","bedaquiline"]]},{"id":"ARO:3007857","l":"KPC-134","na":1,"nb":1,"a":[["ARO%3A3007857","KPC-134"]],"b":[["antibacterial/ceftazidime.html","ceftazidime"]]},{"id":"CHEBI:10015","l":"vobasine","na":1,"nb":1,"a":[["RHEA%3A76147","perivine + S-adenosyl-L-methionine = vobasine + S-adenosyl-L-homocysteine + 2 H(+)"]],"b":[["antiviral/vobasine.html","vobasine"]]},{"id":"CHEBI:100241","l":"ciprofloxacin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CPF","CPF-binding site"]],"b":[["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"CHEBI:127780","l":"phosphonoformic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PPF","PPF-binding site"]],"b":[["antiviral/phosphonoformic-acid.html","phosphonoformic acid"]]},{"id":"CHEBI:133741","l":"(E)-dodec-2-enal","na":1,"nb":1,"a":[["RHEA%3A50784","dodecanal + NADP(+) = (2E)-dodecenal + NADPH + H(+)"]],"b":[["antibacterial/e-dodec-2-enal.html","(E)-dodec-2-enal"]]},{"id":"CHEBI:134347","l":"glandicoline B","na":1,"nb":1,"a":[["RHEA%3A51732","glandicoline B + S-adenosyl-L-methionine = meleagrin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/glandicoline-b.html","glandicoline B"]]},{"id":"CHEBI:135029","l":"cycloguanil","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_1CY","1CY-binding site"]],"b":[["antiprotozoal/cycloguanil.html","cycloguanil"]]},{"id":"CHEBI:137236","l":"ilomastat","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_GM6","GM6-binding site"]],"b":[["antibacterial/ilomastat.html","ilomastat"]]},{"id":"CHEBI:138511","l":"piericidin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HQH","HQH-binding site"]],"b":[["unspecified/piericidin-a.html","piericidin A"]]},{"id":"CHEBI:140376","l":"cefiderocol","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_140376","requires cefiderocol"]],"b":[["antibacterial/cefiderocol.html","cefiderocol"]]},{"id":"CHEBI:142921","l":"","na":1,"nb":1,"a":[["RHEA%3A79335","cinnamyl alcohol + 2 Fe(III)-[cytochrome c] = cinnamaldehyde + 2 Fe(II)-[cytochrome c] + 2 H(+)"]],"b":[["antifungal/e-cinnamaldehyde.html","(E)-cinnamaldehyde"]]},{"id":"CHEBI:144586","l":"4-hydroxy-2-oxobutanal","na":1,"nb":1,"a":[["RHEA%3A21212","N(6)-(3-O-phospho-D-erythrulosyl)-L-lysyl-[protein] + H2O = 4-hydroxy-2-oxobutanal + L-lysyl-[protein] + phosphate"]],"b":[["antibacterial/4-hydroxy-2-oxobutanal.html","4-hydroxy-2-oxobutanal"]]},{"id":"CHEBI:145026","l":"L-psicose","na":1,"nb":1,"a":[["RHEA%3A61784","L-allulose = keto-L-fructose"]],"b":[["antiviral/l-psicose.html","L-psicose"]]},{"id":"CHEBI:145043","l":"solasodine(1+)","na":1,"nb":1,"a":[["RHEA%3A61844","solasodine + UDP-alpha-D-glucose = solasodine 3-beta-D-glucoside + UDP + H(+)"]],"b":[["antifungal/solasodine-1.html","solasodine(1+)"]]},{"id":"CHEBI:145950","l":"nigerone","na":1,"nb":1,"a":[["RHEA%3A62792","2 rubrofusarin B + NADPH + O2 + 3 H(+) = nigerone + NADP(+) + 2 H2O"]],"b":[["antifungal/nigerone.html","nigerone"]]},{"id":"CHEBI:146007","l":"(M)-viriditoxin","na":1,"nb":1,"a":[["RHEA%3A62884","4 semiviriditoxin + O2 = 2 (M)-viriditoxin + 2 H2O"]],"b":[["antibacterial/m-viriditoxin.html","(M)-viriditoxin"]]},{"id":"CHEBI:15353","l":"blasticidin S","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BLS","BLS-binding site"]],"b":[["antifungal/blasticidin-s.html","blasticidin S"]]},{"id":"CHEBI:155860","l":"2,4-dihydroxy-3-methyl-6-(2-oxopropyl)benzaldehyde","na":1,"nb":1,"a":[["RHEA%3A64508","4 malonyl-CoA + acetyl-CoA + AH2 + S-adenosyl-L-methionine + 3 H(+) = 2,4-dihydroxy-3-methyl-6-(2-oxopropyl)benzaldehyde + A + S-adenosyl-L-homocysteine + 4 CO2 + 5 CoA + H2O"]],"b":[["antibacterial/2-4-dihydroxy-3-methyl-6-2-oxopropyl-benzaldehyde.html","2,4-dihydroxy-3-methyl-6-(2-oxopropyl)benzaldehyde"]]},{"id":"CHEBI:156070","l":"butyl benzoate","na":1,"nb":1,"a":[["RHEA%3A64636","butan-1-ol + benzoyl-CoA = butyl benzoate + CoA"]],"b":[["biocide/butyl-benzoate.html","butyl benzoate"]]},{"id":"CHEBI:156511","l":"poacic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_V5M","V5M-binding site"]],"b":[["antifungal/poacic-acid.html","poacic acid"]]},{"id":"CHEBI:15732","l":"phosphonoacetic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PAE","PAE-binding site"]],"b":[["antiviral/phosphonoacetic-acid.html","phosphonoacetic acid"]]},{"id":"CHEBI:15756","l":"palmitic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PLM","PLM-binding site"]],"b":[["antibacterial/palmitic-acid.html","palmitic acid"]]},{"id":"CHEBI:16243","l":"quercetin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_QUE","QUE-binding site"]],"b":[["antibacterial/quercetin.html","quercetin"]]},{"id":"CHEBI:16348","l":"3-nitropropanoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_3NP","3NP-binding site"]],"b":[["antimycobacterial/3-nitropropanoic-acid.html","3-nitropropanoic acid"]]},{"id":"CHEBI:164200","l":"triclosan","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TCL","TCL-binding site"]],"b":[["antibacterial/triclosan.html","triclosan"]]},{"id":"CHEBI:167176","l":"GRL-0617","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TTT","TTT-binding site"]],"b":[["antiviral/grl-0617.html","GRL-0617"]]},{"id":"CHEBI:168396","l":"mycophenolic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MOA","MOA-binding site"]],"b":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]]},{"id":"CHEBI:16914","l":"salicylic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SAL","SAL-binding site"]],"b":[["antifungal/salicylic-acid.html","salicylic acid"]]},{"id":"CHEBI:16961","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"]],"b":[["antibacterial/bacilysocin.html","bacilysocin"]]},{"id":"CHEBI:17351","l":"linoleic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_EIC","EIC-binding site"]],"b":[["antibacterial/linoleic-acid.html","linoleic acid"]]},{"id":"CHEBI:17558","l":"quercitrin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_QCT","QCT-binding site"]],"b":[["antiprotozoal/quercitrin.html","quercitrin"]]},{"id":"CHEBI:175901","l":"gemcitabine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_GEO","GEO-binding site"]],"b":[["antiviral/gemcitabine.html","gemcitabine"]]},{"id":"CHEBI:17642","l":"pentachlorophenol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PCI","PCI-binding site"]],"b":[["antifungal/pentachlorophenol.html","pentachlorophenol"]]},{"id":"CHEBI:17656","l":"(R)-mandelic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RMN","RMN-binding site"]],"b":[["antibacterial/r-mandelic-acid.html","(R)-mandelic acid"]]},{"id":"CHEBI:17658","l":"tylosin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TYK","TYK-binding site"]],"b":[["antibacterial/tylosin.html","tylosin"]]},{"id":"CHEBI:177047","l":"velutin","na":1,"nb":1,"a":[["RHEA%3A73083","chrysoeriol + S-adenosyl-L-methionine = velutin + S-adenosyl-L-homocysteine"]],"b":[["antibacterial/velutin.html","velutin"]]},{"id":"CHEBI:177878","l":"","na":1,"nb":1,"a":[["RHEA%3A68396","a percarboxylic acid + H2O = a carboxylate + H2O2 + H(+)"]],"b":[["biocide/peracetic-acid.html","peracetic acid"]]},{"id":"CHEBI:18203","l":"penicillin N","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["unspecified/penicillin-n.html","penicillin N"]]},{"id":"CHEBI:18208","l":"benzylpenicillin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PNN","PNN-binding site"]],"b":[["antibacterial/benzylpenicillin.html","benzylpenicillin"]]},{"id":"CHEBI:190786","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_KIR","KIR-binding site"]],"b":[["antibacterial/kirromycin.html","kirromycin"]]},{"id":"CHEBI:194138","l":"methyl trans-cinnamate","na":1,"nb":1,"a":[["RHEA%3A74871","(E)-cinnamate + S-adenosyl-L-methionine = (E)-cinnamic acid methyl ester + S-adenosyl-L-homocysteine"]],"b":[["antibacterial/methyl-trans-cinnamate.html","methyl trans-cinnamate"]]},{"id":"CHEBI:220158","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BLJ","BLJ-binding site"]],"b":[["antibacterial/arsinothricin.html","arsinothricin"]]},{"id":"CHEBI:22632","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.59","The Arsenical Resistance-3 (ACR3) Family"]],"b":[["antibacterial/sodium-arsenite.html","sodium arsenite"]]},{"id":"CHEBI:231919","l":"fluopsin","na":1,"nb":1,"a":[["RHEA%3A82395","thiohydroxamate + S-adenosyl-L-methionine = fluopsin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["antibacterial/fluopsin.html","fluopsin"]]},{"id":"CHEBI:233443","l":"","na":1,"nb":1,"a":[["RHEA%3A83863","an L-alpha-amino acid + acetyl-CoA = an N-acetyl-L-alpha-amino acid + CoA + H(+)"]],"b":[["antiviral/n-acetyl-l-cysteinate.html","N-acetyl-L-cysteinate"]]},{"id":"CHEBI:234507","l":"2-chloroacetamide","na":1,"nb":1,"a":[["RHEA%3A85695","chloroacetamide = chloroacetonitrile + H2O"]],"b":[["antifungal/2-chloroacetamide.html","2-chloroacetamide"]]},{"id":"CHEBI:23981","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"]],"b":[["antimycobacterial/ethambutol.html","ethambutol"]]},{"id":"CHEBI:24402","l":"","na":1,"nb":1,"a":[["TCDB%3A3.A.3","The P-type ATPase (P-ATPase) Superfamily"]],"b":[["antifungal/oceanalin-a.html","oceanalin A"]]},{"id":"CHEBI:2637","l":"amikacin","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/amikacin.html","amikacin"]]},{"id":"CHEBI:2674","l":"amodiaquine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CQA","CQA-binding site"]],"b":[["antiprotozoal/amodiaquine.html","amodiaquine"]]},{"id":"CHEBI:2682","l":"amphotericin B","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_4UH","4UH-binding site"]],"b":[["antifungal/amphotericin-b.html","amphotericin B"]]},{"id":"CHEBI:27093","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.54","The Sideroflexin (SFXN) Family (formerly the Mitochondrial Tricarboxylate Carrier (MTC) Family)"]],"b":[["unspecified/citric-acid.html","citric acid"]]},{"id":"CHEBI:27779","l":"griseofulvin","na":1,"nb":1,"a":[["RHEA%3A73943","dehydrogriseofulvin + NADPH + H(+) = griseofulvin + NADP(+)"]],"b":[["antibacterial/griseofulvin.html","griseofulvin"]]},{"id":"CHEBI:27784","l":"gentamycin C1a","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_LLL","LLL-binding site"]],"b":[["unspecified/gentamycin-c1a.html","gentamycin C1a"]]},{"id":"CHEBI:27834","l":"pentostatin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DCF","DCF-binding site"]],"b":[["unspecified/pentostatin.html","pentostatin"]]},{"id":"CHEBI:27860","l":"castanospermine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CTS","CTS-binding site"]],"b":[["antiviral/castanospermine.html","castanospermine"]]},{"id":"CHEBI:28098","l":"kanamycin B","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9CS","9CS-binding site"]],"b":[["unspecified/kanamycin-b.html","kanamycin B"]]},{"id":"CHEBI:28121","l":"harmine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HRM","HRM-binding site"]],"b":[["antiviral/harmine.html","harmine"]]},{"id":"CHEBI:28147","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_8MM","8MM-binding site"]],"b":[["unspecified/n2-acetylgentamycin-c1a.html","N2'-acetylgentamycin C1a"]]},{"id":"CHEBI:28148","l":"sodium stibogluconate","na":1,"nb":1,"a":[["TCDB%3A1.A.8","The Major Intrinsic Protein (MIP) Family"]],"b":[["antiprotozoal/sodium-stibogluconate.html","sodium stibogluconate"]]},{"id":"CHEBI:28217","l":"acrylonitrile","na":1,"nb":1,"a":[["RHEA%3A85611","acrylamide = acrylonitrile + H2O"]],"b":[["antifungal/acrylonitrile.html","acrylonitrile"]]},{"id":"CHEBI:28285","l":"oligomycin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_EFO","EFO-binding site"]],"b":[["antifungal/oligomycin-a.html","oligomycin A"]]},{"id":"CHEBI:28368","l":"novobiocin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NOV","NOV-binding site"]],"b":[["antibacterial/novobiocin.html","novobiocin"]]},{"id":"CHEBI:28499","l":"kaempferol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_KMP","KMP-binding site"]],"b":[["antibacterial/kaempferol.html","kaempferol"]]},{"id":"CHEBI:28631","l":"3-phenylpropionic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HCI","HCI-binding site"]],"b":[["antifungal/3-phenylpropionic-acid.html","3-phenylpropionic acid"]]},{"id":"CHEBI:28748","l":"doxorubicin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DM2","DM2-binding site"]],"b":[["unspecified/doxorubicin.html","doxorubicin"]]},{"id":"CHEBI:28837","l":"octanoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_OCA","OCA-binding site"]],"b":[["antibacterial/octanoic-acid.html","octanoic acid"]]},{"id":"CHEBI:28864","l":"tobramycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TOY","TOY-binding site"]],"b":[["antibacterial/tobramycin.html","tobramycin"]]},{"id":"CHEBI:28905","l":"prop-2-yn-1-ol","na":1,"nb":1,"a":[["RHEA%3A31247","prop-2-ynal + pyrroloquinoline quinol + H(+) = prop-2-yn-1-ol + pyrroloquinoline quinone"]],"b":[["antifungal/prop-2-yn-1-ol.html","prop-2-yn-1-ol"]]},{"id":"CHEBI:28939","l":"N-acetyl-L-cysteine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SC2","SC2-binding site"]],"b":[["antiviral/n-acetyl-l-cysteine.html","N-acetyl-L-cysteine"]]},{"id":"CHEBI:2896","l":"astemizole","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_XB7","XB7-binding site"]],"b":[["antiviral/astemizole.html","astemizole"]]},{"id":"CHEBI:28971","l":"ampicillin","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/ampicillin.html","ampicillin"]]},{"id":"CHEBI:29013","l":"fusidic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_FUA","FUA-binding site"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"]]},{"id":"CHEBI:29014","l":"cordycepin","na":1,"nb":1,"a":[["RHEA%3A79047","cordycepin + H2O + H(+) = 3'-deoxyinosine + NH4(+)"]],"b":[["antibacterial/cordycepin.html","cordycepin"]]},{"id":"CHEBI:29582","l":"ascomycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_KXX","KXX-binding site"]],"b":[["antifungal/ascomycin.html","ascomycin"]]},{"id":"CHEBI:29699","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"]],"b":[["antibacterial/tunicamycin.html","tunicamycin"]]},{"id":"CHEBI:29703","l":"validamycin A","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/validamycin-a.html","validamycin A"]]},{"id":"CHEBI:3000","l":"beauvericin","na":1,"nb":1,"a":[["RHEA%3A62276","3 (R)-2-hydroxy-3-methylbutanoate + 3 L-phenylalanine + 3 S-adenosyl-L-methionine + 6 ATP = beauvericin + 6 AMP + 3 S-adenosyl-L-homocysteine + 6 diphosphate + 6 H(+)"]],"b":[["antifungal/beauvericin.html","beauvericin"]]},{"id":"CHEBI:3015","l":"benomyl","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/benomyl.html","benomyl"]]},{"id":"CHEBI:30769","l":"citric acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CIT","CIT-binding site"]],"b":[["unspecified/citric-acid.html","citric acid"]]},{"id":"CHEBI:30813","l":"decanoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DKA","DKA-binding site"]],"b":[["antibacterial/decanoic-acid.html","decanoic acid"]]},{"id":"CHEBI:3087","l":"betulinic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_06L","06L-binding site"]],"b":[["antiprotozoal/betulinic-acid.html","betulinic acid"]]},{"id":"CHEBI:315019","l":"cilofungin","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/cilofungin.html","cilofungin"]]},{"id":"CHEBI:31781","l":"lopinavir","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antiviral/lopinavir.html","lopinavir"]]},{"id":"CHEBI:31856","l":"mithramycin","na":1,"nb":1,"a":[["RHEA%3A85455","iso-mithramycin = mithramycin"]],"b":[["unspecified/mithramycin.html","mithramycin"]]},{"id":"CHEBI:32079","l":"pyrrolnitrin","na":1,"nb":1,"a":[["RHEA%3A46136","aminopyrrolnitrin + NADPH + 2 O2 + H(+) = pyrrolnitrin + NADP(+) + 2 H2O"]],"b":[["antifungal/pyrrolnitrin.html","pyrrolnitrin"]]},{"id":"CHEBI:32174","l":"","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/syringomycin-e.html","syringomycin E"]]},{"id":"CHEBI:32368","l":"undecanoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_11A","11A-binding site"]],"b":[["antifungal/undecanoic-acid.html","undecanoic acid"]]},{"id":"CHEBI:3259","l":"CCCP","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/cccp.html","CCCP"]]},{"id":"CHEBI:32800","l":"(S)-mandelic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SMN","SMN-binding site"]],"b":[["antibacterial/s-mandelic-acid.html","(S)-mandelic acid"]]},{"id":"CHEBI:32888","l":"γ-hexachlorocyclohexane","na":1,"nb":1,"a":[["RHEA%3A45480","gamma-hexachlorocyclohexane = (3R,4S,5S,6R)-pentachlorocyclohexene + chloride + H(+)"]],"b":[["antibacterial/%CE%B3-hexachlorocyclohexane.html","γ-hexachlorocyclohexane"]]},{"id":"CHEBI:3405","l":"carboxin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CBE","CBE-binding site"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"CHEBI:34652","l":"compactin diol lactone","na":1,"nb":1,"a":[["RHEA%3A62744","mevastatin + H2O = compactin diol lactone + (S)-2-methylbutanoate + H(+)"]],"b":[["unspecified/compactin-diol-lactone.html","compactin diol lactone"]]},{"id":"CHEBI:34908","l":"pentachloronitrobenzene","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/pentachloronitrobenzene.html","pentachloronitrobenzene"]]},{"id":"CHEBI:3493","l":"cefoperazone","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/cefoperazone.html","cefoperazone"]]},{"id":"CHEBI:3503","l":"cefpirome","na":1,"nb":1,"a":[["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"]],"b":[["antibacterial/cefpirome.html","cefpirome"]]},{"id":"CHEBI:35356","l":"","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/cycloheximide.html","cycloheximide"]]},{"id":"CHEBI:3537","l":"cefaloridine","na":1,"nb":1,"a":[["TCDB%3A1.B.6","The OmpA-OmpF Porin (OOP) Family"]],"b":[["antibacterial/cefaloridine.html","cefaloridine"]]},{"id":"CHEBI:3547","l":"cephradine","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/cephradine.html","cephradine"]]},{"id":"CHEBI:35817","l":"roxarsone","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/roxarsone.html","roxarsone"]]},{"id":"CHEBI:36243","l":"","na":1,"nb":1,"a":[["RHEA%3A48484","a propanoate ester + H2O = an aliphatic alcohol + propanoate + H(+)"]],"b":[["antifungal/metarylpicoxamid.html","metarylpicoxamid"]]},{"id":"CHEBI:3639","l":"chlorothalonil","na":1,"nb":1,"a":[["RHEA%3A65016","chlorothalonil + H2O = 4-hydroxychlorothalonil + chloride + 2 H(+)"]],"b":[["antifungal/chlorothalonil.html","chlorothalonil"]]},{"id":"CHEBI:3647","l":"chlorpromazine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_Z80","Z80-binding site"]],"b":[["antiviral/chlorpromazine.html","chlorpromazine"]]},{"id":"CHEBI:367163","l":"darunavir","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_017","017-binding site"]],"b":[["antiviral/darunavir.html","darunavir"]]},{"id":"CHEBI:36843","l":"","na":1,"nb":1,"a":[["RHEA%3A82271","7alpha-hydroxy steroid + NADP(+) = a 7-oxosteroid + NADPH + H(+)"]],"b":[["antifungal/9%CE%BE-14%CE%BE-25s-cholestane-3%CE%B2-4%CE%B2-6%CE%B2-7%CE%B1-8-15%CE%B1-16%CE%B2-26-octol.html","(9ξ,14ξ,25S)-cholestane-3β,4β,6β,7α,8,15α,16β,26-octol"]]},{"id":"CHEBI:3687","l":"chrysophanol","na":1,"nb":1,"a":[["RHEA%3A64276","chrysophanol-9-anthrone + O2 = chrysophanol + H2O"]],"b":[["antiviral/chrysophanol.html","chrysophanol"]]},{"id":"CHEBI:3745","l":"clindamycin","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/clindamycin.html","clindamycin"]]},{"id":"CHEBI:3749","l":"clofazimine","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antimycobacterial/clofazimine.html","clofazimine"]]},{"id":"CHEBI:37924","l":"atazanavir","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DR7","DR7-binding site"]],"b":[["antiviral/atazanavir.html","atazanavir"]]},{"id":"CHEBI:38167","l":"physcion","na":1,"nb":1,"a":[["RHEA%3A76767","emodin + S-adenosyl-L-methionine = physcion + S-adenosyl-L-homocysteine"]],"b":[["antibacterial/physcion.html","physcion"]]},{"id":"CHEBI:38291","l":"dihydrostreptomycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_71R","71R-binding site"]],"b":[["unspecified/dihydrostreptomycin.html","dihydrostreptomycin"]]},{"id":"CHEBI:38320","l":"(+)-usnic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_AIY","AIY-binding site"]],"b":[["antifungal/usnic-acid-38320.html","(+)-usnic acid"]]},{"id":"CHEBI:39352","l":"","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["unspecified/nifursol.html","nifursol"]]},{"id":"CHEBI:39932","l":"(R)-oct-1-en-3-ol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_3OL","3OL-binding site"]],"b":[["unspecified/r-oct-1-en-3-ol.html","(R)-oct-1-en-3-ol"]]},{"id":"CHEBI:40009","l":"D-cycloserine","na":1,"nb":1,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"]],"b":[["antimycobacterial/d-cycloserine.html","D-cycloserine"]]},{"id":"CHEBI:40021","l":"tiratricol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_4HY","4HY-binding site"]],"b":[["antiviral/tiratricol.html","tiratricol"]]},{"id":"CHEBI:404903","l":"ertapenem","na":1,"nb":1,"a":[["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"]],"b":[["antibacterial/ertapenem.html","ertapenem"]]},{"id":"CHEBI:41425","l":"(7R)-7-(4-carboxybutanamido)cephalosporanic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CEN","CEN-binding site"]],"b":[["unspecified/7r-7-4-carboxybutanamido-cephalosporanic-acid.html","(7R)-7-(4-carboxybutanamido)cephalosporanic acid"]]},{"id":"CHEBI:41688","l":"crystal violet","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/crystal-violet.html","crystal violet"]]},{"id":"CHEBI:41872","l":"dequalinium","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/dequalinium.html","dequalinium"]]},{"id":"CHEBI:41977","l":"daunorubicin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DM1","DM1-binding site"]],"b":[["unspecified/daunorubicin.html","daunorubicin"]]},{"id":"CHEBI:42068","l":"idarubicin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DM5","DM5-binding site"]],"b":[["unspecified/idarubicin.html","idarubicin"]]},{"id":"CHEBI:42355","l":"erythromycin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ERY","ERY-binding site"]],"b":[["antibacterial/erythromycin-a.html","erythromycin A"]]},{"id":"CHEBI:42471","l":"forskolin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_FOK","FOK-binding site"]],"b":[["antiviral/forskolin.html","forskolin"]]},{"id":"CHEBI:42600","l":"L-fucitol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_FOC","FOC-binding site"]],"b":[["antibacterial/l-fucitol.html","L-fucitol"]]},{"id":"CHEBI:42680","l":"(2-cis,6-cis)-farnesol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_FOH","FOH-binding site"]],"b":[["unspecified/2-cis-6-cis-farnesol.html","(2-cis,6-cis)-farnesol"]]},{"id":"CHEBI:43040","l":"hadacidin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HDA","HDA-binding site"]],"b":[["unspecified/hadacidin.html","hadacidin"]]},{"id":"CHEBI:4309","l":"dalfopristin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DOL","DOL-binding site"]],"b":[["antibacterial/dalfopristin.html","dalfopristin"]]},{"id":"CHEBI:43616","l":"K-252a","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_KSA","KSA-binding site"]],"b":[["unspecified/k-252a.html","K-252a"]]},{"id":"CHEBI:44032","l":"indinavir","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MK1","MK1-binding site"]],"b":[["antiviral/indinavir.html","indinavir"]]},{"id":"CHEBI:44369","l":"duvoglustat","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NOJ","NOJ-binding site"]],"b":[["antiviral/duvoglustat.html","duvoglustat"]]},{"id":"CHEBI:44499","l":"methyl nonanoate","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NON","NON-binding site"]],"b":[["antifungal/methyl-nonanoate.html","methyl nonanoate"]]},{"id":"CHEBI:45141","l":"pyroquilon","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PYQ","PYQ-binding site"]],"b":[["antifungal/pyroquilon.html","pyroquilon"]]},{"id":"CHEBI:45257","l":"ribostamycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RIO","RIO-binding site"]],"b":[["antibacterial/ribostamycin.html","ribostamycin"]]},{"id":"CHEBI:45304","l":"rifapentine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RPT","RPT-binding site"]],"b":[["antimycobacterial/rifapentine.html","rifapentine"]]},{"id":"CHEBI:45307","l":"seliciclib","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RRC","RRC-binding site"]],"b":[["antiviral/seliciclib.html","seliciclib"]]},{"id":"CHEBI:45367","l":"rifabutin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RBT","RBT-binding site"]],"b":[["antibacterial/rifabutin.html","rifabutin"]]},{"id":"CHEBI:45395","l":"pyrithiamine pyrophosphate","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PYI","PYI-binding site"]],"b":[["unspecified/pyrithiamine-pyrophosphate.html","pyrithiamine pyrophosphate"]]},{"id":"CHEBI:45409","l":"ritonavir","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RIT","RIT-binding site"]],"b":[["antiviral/ritonavir.html","ritonavir"]]},{"id":"CHEBI:45490","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RVP","RVP-binding site"]],"b":[["antiviral/ribavirin-5-monophosphate.html","ribavirin 5'-monophosphate"]]},{"id":"CHEBI:45906","l":"suramin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SVR","SVR-binding site"]],"b":[["antiprotozoal/suramin.html","suramin"]]},{"id":"CHEBI:45924","l":"trimethoprim","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TOP","TOP-binding site"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"CHEBI:45979","l":"thiabendazole","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TMG","TMG-binding site"]],"b":[["antifungal/thiabendazole.html","thiabendazole"]]},{"id":"CHEBI:46024","l":"trichostatin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TSN","TSN-binding site"]],"b":[["antifungal/trichostatin-a.html","trichostatin A"]]},{"id":"CHEBI:46345","l":"5-fluorouracil","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_URF","URF-binding site"]],"b":[["antifungal/5-fluorouracil.html","5-Fluorouracil"]]},{"id":"CHEBI:4640","l":"diphenylamine","na":1,"nb":1,"a":[["TCDB%3A9.A.11","The Dipicolinic Acid Transporter (DPA-T) Family"]],"b":[["antifungal/diphenylamine.html","diphenylamine"]]},{"id":"CHEBI:4672","l":"docetaxel anhydrous","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antiprotozoal/docetaxel-anhydrous.html","docetaxel anhydrous"]]},{"id":"CHEBI:46953","l":"","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["unspecified/adxanthromycin-a.html","adxanthromycin A"]]},{"id":"CHEBI:473992","l":"nystatin A1","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_A1AZ7","A1AZ7-binding site"]],"b":[["antifungal/nystatin-a1.html","nystatin A1"]]},{"id":"CHEBI:47780","l":"clomipramine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CXX","CXX-binding site"]],"b":[["antiviral/clomipramine.html","clomipramine"]]},{"id":"CHEBI:48131","l":"nonanedioic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_AZ1","AZ1-binding site"]],"b":[["antibacterial/nonanedioic-acid.html","nonanedioic acid"]]},{"id":"CHEBI:48267","l":"tubercidin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TBN","TBN-binding site"]],"b":[["antifungal/tubercidin.html","tubercidin"]]},{"id":"CHEBI:48545","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.67","The Oligopeptide Transporter (OPT) Family"]],"b":[["unspecified/n-palmitoyl-s-2-3-bis-palmitoyloxy-propyl-cys-ser-lys-lys-lys-lys.html","N-palmitoyl-S-[2,3-bis(palmitoyloxy)propyl]-Cys-Ser-Lys-Lys-Lys-Lys"]]},{"id":"CHEBI:48811","l":"(R)-chloroquine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CLQ","CLQ-binding site"]],"b":[["antiprotozoal/r-chloroquine.html","(R)-chloroquine"]]},{"id":"CHEBI:4893","l":"ethyl acetoacetate","na":1,"nb":1,"a":[["RHEA%3A68144","ethyl 3-oxobutanoate + NADPH + H(+) = ethyl (R)-3-hydroxybutanoate + NADP(+)"]],"b":[["antibacterial/ethyl-acetoacetate.html","ethyl acetoacetate"]]},{"id":"CHEBI:48947","l":"clavulanic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_J01","J01-binding site"]],"b":[["antibacterial/clavulanic-acid.html","clavulanic acid"]]},{"id":"CHEBI:48958","l":"diamide","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["unspecified/diamide.html","diamide"]]},{"id":"CHEBI:49026","l":"N-acetyl-α-neuraminic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SIA","SIA-binding site"]],"b":[["antiviral/n-acetyl-%CE%B1-neuraminic-acid.html","N-acetyl-α-neuraminic acid"]]},{"id":"CHEBI:49375","l":"dasatinib (anhydrous)","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_1N1","1N1-binding site"]],"b":[["antiviral/dasatinib-anhydrous.html","dasatinib (anhydrous)"]]},{"id":"CHEBI:50381","l":"miglustat","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NBV","NBV-binding site"]],"b":[["antiviral/miglustat.html","miglustat"]]},{"id":"CHEBI:50437","l":"nocardamine","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_50437","requires desferrioxamine E"]],"b":[["antibacterial/nocardamine.html","nocardamine"]]},{"id":"CHEBI:50663","l":"zanamivir","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ZMR","ZMR-binding site"]],"b":[["antiviral/zanamivir.html","zanamivir"]]},{"id":"CHEBI:50694","l":"minocycline","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MIY","MIY-binding site"]],"b":[["antibacterial/minocycline.html","minocycline"]]},{"id":"CHEBI:52172","l":"nilotinib","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NIL","NIL-binding site"]],"b":[["antiviral/nilotinib.html","nilotinib"]]},{"id":"CHEBI:52289","l":"wortmannin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_KWT","KWT-binding site"]],"b":[["antiviral/wortmannin.html","wortmannin"]]},{"id":"CHEBI:52316","l":"cordycepin triphosphate","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_3AT","3AT-binding site"]],"b":[["antifungal/cordycepin-triphosphate.html","cordycepin triphosphate"]]},{"id":"CHEBI:52646","l":"leptomycin B","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/leptomycin-b.html","leptomycin B"]]},{"id":"CHEBI:52717","l":"bortezomib","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BO2","BO2-binding site"]],"b":[["antiprotozoal/bortezomib.html","bortezomib"]]},{"id":"CHEBI:556075","l":"radicicol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RDC","RDC-binding site"]],"b":[["antifungal/radicicol.html","radicicol"]]},{"id":"CHEBI:575568","l":"atovaquone","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_AOQ","AOQ-binding site"]],"b":[["antifungal/atovaquone.html","atovaquone"]]},{"id":"CHEBI:59349","l":"cefepime(1+)","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9WT","9WT-binding site"]],"b":[["unspecified/cefepime-1.html","cefepime(1+)"]]},{"id":"CHEBI:60761","l":"floxuridine","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antiviral/floxuridine.html","floxuridine"]]},{"id":"CHEBI:623918","l":"nikkomycin Z","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BGI","BGI-binding site"]],"b":[["antifungal/nikkomycin-z.html","nikkomycin Z"]]},{"id":"CHEBI:63207","l":"mycinamicin III","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ZM3","ZM3-binding site"]],"b":[["unspecified/mycinamicin-iii.html","mycinamicin III"]]},{"id":"CHEBI:63285","l":"mycinamicin VI","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MVI","MVI-binding site"]],"b":[["unspecified/mycinamicin-vi.html","mycinamicin VI"]]},{"id":"CHEBI:63580","l":"ribavirin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RBV","RBV-binding site"]],"b":[["antiviral/ribavirin.html","ribavirin"]]},{"id":"CHEBI:63599","l":"fludarabine phosphate","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antiviral/fludarabine-phosphate.html","fludarabine phosphate"]]},{"id":"CHEBI:63611","l":"moxifloxacin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MFX","MFX-binding site"]],"b":[["antibacterial/moxifloxacin.html","moxifloxacin"]]},{"id":"CHEBI:63624","l":"telbivudine","na":1,"nb":1,"a":[["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"]],"b":[["antiviral/telbivudine.html","telbivudine"]]},{"id":"CHEBI:63684","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_YMZ","YMZ-binding site"]],"b":[["antiprotozoal/11r-2-s-erythro-mefloquine.html","(+)-(11R,2'S)-erythro-mefloquine"]]},{"id":"CHEBI:64250","l":"tunicamycin B2","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9LH","9LH-binding site"]],"b":[["unspecified/tunicamycin-b2.html","tunicamycin B2"]]},{"id":"CHEBI:64355","l":"posaconazole","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_X2N","X2N-binding site"]],"b":[["antifungal/posaconazole.html","posaconazole"]]},{"id":"CHEBI:66065","l":"IC202A","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_66065","requires IC202A"]],"b":[["unspecified/ic202a.html","IC202A"]]},{"id":"CHEBI:66067","l":"IC202C","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_66067","requires IC202C"]],"b":[["unspecified/ic202c.html","IC202C"]]},{"id":"CHEBI:66104","l":"jaspamide","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9UE","9UE-binding site"]],"b":[["antifungal/jaspamide.html","jaspamide"]]},{"id":"CHEBI:66222","l":"thiomarinol C","na":1,"nb":1,"a":[["RHEA%3A75895","marinoloyl-CoA C + holothin = thiomarinol C + CoA"]],"b":[["antibacterial/thiomarinol-c.html","thiomarinol C"]]},{"id":"CHEBI:67121","l":"nitroxoline","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HNQ","HNQ-binding site"]],"b":[["antifungal/nitroxoline.html","nitroxoline"]]},{"id":"CHEBI:67559","l":"5Z-7-oxozeaenol","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_1FM","1FM-binding site"]],"b":[["antibacterial/5z-7-oxozeaenol.html","5Z-7-oxozeaenol"]]},{"id":"CHEBI:67811","l":"zorbamycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_52G","52G-binding site"]],"b":[["unspecified/zorbamycin.html","zorbamycin"]]},{"id":"CHEBI:68241","l":"platencin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_N32","N32-binding site"]],"b":[["antibacterial/platencin.html","platencin"]]},{"id":"CHEBI:6827","l":"methicillin","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/methicillin.html","methicillin"]]},{"id":"CHEBI:6909","l":"metronidazole","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/metronidazole.html","metronidazole"]]},{"id":"CHEBI:6923","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/miconazole.html","miconazole"]]},{"id":"CHEBI:7025","l":"mupirocin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MRC","MRC-binding site"]],"b":[["antibacterial/mupirocin.html","mupirocin"]]},{"id":"CHEBI:70508","l":"(16R,19E)-isositsirikine","na":1,"nb":1,"a":[["RHEA%3A83839","(19E)-geissoschizine + NADPH + H(+) = (16R,19E)-isositsirikine + NADP(+)"]],"b":[["antifungal/16r-19e-isositsirikine.html","(16R,19E)-isositsirikine"]]},{"id":"CHEBI:72292","l":"bedaquiline","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BQ1","BQ1-binding site"]],"b":[["antimycobacterial/bedaquiline.html","bedaquiline"]]},{"id":"CHEBI:72687","l":"bacilysin","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["unspecified/bacilysin.html","bacilysin"]]},{"id":"CHEBI:73079","l":"kanamycin D","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CJX","CJX-binding site"]],"b":[["unspecified/kanamycin-d.html","kanamycin D"]]},{"id":"CHEBI:73139","l":"oseltamivir acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_G39","G39-binding site"]],"b":[["antiviral/oseltamivir-acid.html","oseltamivir acid"]]},{"id":"CHEBI:73224","l":"allyl isothiocyanate","na":1,"nb":1,"a":[["RHEA%3A69272","(Z)-N-(sulfonatooxy)prop-2-enimidothioate = allyl isothiocyanate + sulfate"]],"b":[["unspecified/allyl-isothiocyanate.html","allyl isothiocyanate"]]},{"id":"CHEBI:73481","l":"asukamycin","na":1,"nb":1,"a":[["RHEA%3A75139","4-hydroxyprotoasukamycin + NADH + O2 + H(+) = asukamycin + NAD(+) + H2O"]],"b":[["antibacterial/asukamycin.html","asukamycin"]]},{"id":"CHEBI:74846","l":"azaserine","na":1,"nb":1,"a":[["TCDB%3A2.A.76","The Resistance to Homoserine/Threonine (RhtB) Family"]],"b":[["antifungal/azaserine.html","azaserine"]]},{"id":"CHEBI:7489","l":"neamine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_XXX","XXX-binding site"]],"b":[["antibacterial/neamine.html","neamine"]]},{"id":"CHEBI:74926","l":"patulin","na":1,"nb":1,"a":[["RHEA%3A62228","(E)-ascladiol + A = patulin + AH2"]],"b":[["unspecified/patulin.html","patulin"]]},{"id":"CHEBI:7508","l":"framycetin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NMY","NMY-binding site"]],"b":[["antibacterial/framycetin.html","framycetin"]]},{"id":"CHEBI:75092","l":"morin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MRI","MRI-binding site"]],"b":[["antibacterial/morin.html","morin"]]},{"id":"CHEBI:75283","l":"miltefosine","na":1,"nb":1,"a":[["TCDB%3A3.A.3","The P-type ATPase (P-ATPase) Superfamily"]],"b":[["antifungal/miltefosine.html","miltefosine"]]},{"id":"CHEBI:75998","l":"trametinib","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_QOM","QOM-binding site"]],"b":[["antiviral/trametinib.html","trametinib"]]},{"id":"CHEBI:76010","l":"dolutegravir","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DLU","DLU-binding site"]],"b":[["antiviral/dolutegravir.html","dolutegravir"]]},{"id":"CHEBI:76244","l":"sapienic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_8Z9","8Z9-binding site"]],"b":[["antibacterial/sapienic-acid.html","sapienic acid"]]},{"id":"CHEBI:76293","l":"azadirone","na":1,"nb":1,"a":[["RHEA%3A80387","(1S,3bR,4R,5aR,9aR,9bR,11aS)-1-(1-hydroxy-4-oxobutan-2-yl)-3b,6,6,9a,11a-pentamethyl-7-oxo-1H,2H,3bH,4H,5H,5aH,6H,7H,9aH,9bH,10H,11H,11aH-cyclopenta[a]phenanthren-4-yl acetate + 2-oxoglutarate + O2 = azadirone + succinate + CO2 + 2 H2O"]],"b":[["antiprotozoal/azadirone.html","azadirone"]]},{"id":"CHEBI:76944","l":"13-epi-manool","na":1,"nb":1,"a":[["RHEA%3A40015","(+)-copalyl diphosphate + H2O = 13-epi-manool + diphosphate"]],"b":[["antifungal/13-epi-manool.html","13-epi-manool"]]},{"id":"CHEBI:76945","l":"manool","na":1,"nb":1,"a":[["RHEA%3A40011","(+)-copalyl diphosphate + H2O = manool + diphosphate"]],"b":[["antibacterial/manool.html","manool"]]},{"id":"CHEBI:77009","l":"5-O-β-D-mycaminosyl-20-oxotylonolide","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CGM","CGM-binding site"]],"b":[["unspecified/5-o-%CE%B2-d-mycaminosyl-20-oxotylonolide.html","5-O-β-D-mycaminosyl-20-oxotylonolide"]]},{"id":"CHEBI:77181","l":"crystal violet cation","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CVI","CVI-binding site"]],"b":[["antibacterial/crystal-violet-cation.html","crystal violet cation"]]},{"id":"CHEBI:77474","l":"(9Z,12Z,15Z)-octadecatrien-1-ol","na":1,"nb":1,"a":[["RHEA%3A40707","(9Z,12Z,15Z)-octadecatrien-1-ol + 1-hexadecanoylglycerone 3-phosphate = 1-O-(9Z,12Z,15Z)-octadecatrienylglycerone 3-phosphate + hexadecanoate + H(+)"]],"b":[["antibacterial/9z-12z-15z-octadecatrien-1-ol.html","(9Z,12Z,15Z)-octadecatrien-1-ol"]]},{"id":"CHEBI:77845","l":"7-aminocholesterol","na":1,"nb":1,"a":[["TCDB%3A9.A.26","The Lipid-translocating Exporter (LTE) Family"]],"b":[["antibacterial/7-aminocholesterol.html","7-aminocholesterol"]]},{"id":"CHEBI:79034","l":"monacolin J","na":1,"nb":1,"a":[["RHEA%3A62748","lovastatin + H2O = monacolin J + (S)-2-methylbutanoate + H(+)"]],"b":[["unspecified/monacolin-j.html","monacolin J"]]},{"id":"CHEBI:7934","l":"paromomycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PAR","PAR-binding site"]],"b":[["antibacterial/paromomycin.html","paromomycin"]]},{"id":"CHEBI:79391","l":"(−)-chuangxinmycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9E0","9E0-binding site"]],"b":[["antibacterial/chuangxinmycin.html","(−)-chuangxinmycin"]]},{"id":"CHEBI:79394","l":"indolmycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_5BX","5BX-binding site"]],"b":[["antibacterial/indolmycin.html","indolmycin"]]},{"id":"CHEBI:8062","l":"phenethyl caffeate","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_QAP","QAP-binding site"]],"b":[["antibacterial/phenethyl-caffeate.html","phenethyl caffeate"]]},{"id":"CHEBI:80751","l":"(S)-goitrin","na":1,"nb":1,"a":[["RHEA%3A69292","(Z)-(2R)-2-hydroxy-3-butenyl-N-(sulfonatooxy)methanimidothioate = goitrin + sulfate"]],"b":[["antiviral/s-goitrin.html","(S)-goitrin"]]},{"id":"CHEBI:81724","l":"diminazene","na":1,"nb":1,"a":[["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"]],"b":[["antiprotozoal/diminazene.html","diminazene"]]},{"id":"CHEBI:81761","l":"etridiazole","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/etridiazole.html","etridiazole"]]},{"id":"CHEBI:8232","l":"piperacillin","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["antibacterial/piperacillin.html","piperacillin"]]},{"id":"CHEBI:82754","l":"microcin c","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["unspecified/microcin-c.html","microcin c"]]},{"id":"CHEBI:82809","l":"agrocin 84","na":1,"nb":1,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["unspecified/agrocin-84.html","agrocin 84"]]},{"id":"CHEBI:83147","l":"","na":1,"nb":1,"a":[["RHEA%3A83179","a steroid + reduced [NADPH--hemoprotein reductase] + O2 = a 15alpha-hydroxy steroid + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["antifungal/9%CE%BE-14%CE%BE-25s-cholestane-3%CE%B2-4%CE%B2-6%CE%B2-7%CE%B1-8-15%CE%B1-16%CE%B2-26-octol.html","(9ξ,14ξ,25S)-cholestane-3β,4β,6β,7α,8,15α,16β,26-octol"]]},{"id":"CHEBI:8417","l":"pristinamycin IA","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/pristinamycin-ia.html","pristinamycin IA"]]},{"id":"CHEBI:84587","l":"","na":1,"nb":1,"a":[["RHEA%3A44724","2,3-saturated fatty aldehyde + NADP(+) = (2E)-fatty aldehyde + NADPH + H(+)"]],"b":[["unspecified/pentadecanal.html","pentadecanal"]]},{"id":"CHEBI:84588","l":"","na":1,"nb":1,"a":[["RHEA%3A44724","2,3-saturated fatty aldehyde + NADP(+) = (2E)-fatty aldehyde + NADPH + H(+)"]],"b":[["antibacterial/e-dodec-2-enal.html","(E)-dodec-2-enal"]]},{"id":"CHEBI:85083","l":"sofosbuvir","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_WG6","WG6-binding site"]],"b":[["antiviral/sofosbuvir.html","sofosbuvir"]]},{"id":"CHEBI:85273","l":"(R)-flumequine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_7X9","7X9-binding site"]],"b":[["unspecified/r-flumequine.html","(R)-flumequine"]]},{"id":"CHEBI:85412","l":"mitomycin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MQA","MQA-binding site"]],"b":[["unspecified/mitomycin-a.html","mitomycin A"]]},{"id":"CHEBI:8673","l":"pyrimethamine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CP6","CP6-binding site"]],"b":[["antiprotozoal/pyrimethamine.html","pyrimethamine"]]},{"id":"CHEBI:87185","l":"florfenicol","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/florfenicol.html","florfenicol"]]},{"id":"CHEBI:87805","l":"ethionamide S-oxide","na":1,"nb":1,"a":[["RHEA%3A47616","ethionamide + NADPH + O2 + H(+) = ethionamide S-oxide + NADP(+) + H2O"]],"b":[["antimycobacterial/ethionamide-s-oxide.html","ethionamide S-oxide"]]},{"id":"CHEBI:90531","l":"sotrastaurin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_LW4","LW4-binding site"]],"b":[["antiviral/sotrastaurin.html","sotrastaurin"]]},{"id":"CHEBI:9168","l":"sirolimus","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RAP","RAP-binding site"]],"b":[["antibacterial/sirolimus.html","sirolimus"]]},{"id":"CHEBI:9212","l":"sparfloxacin","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antibacterial/sparfloxacin.html","sparfloxacin"]]},{"id":"CHEBI:92181","l":"lasalocid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_LSD","LSD-binding site"]],"b":[["antiprotozoal/lasalocid.html","lasalocid"]]},{"id":"CHEBI:92257","l":"IKK16","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_V17","V17-binding site"]],"b":[["antiprotozoal/ikk16.html","IKK16"]]},{"id":"CHEBI:9328","l":"sulfadiazine","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antiprotozoal/sulfadiazine.html","sulfadiazine"]]},{"id":"CHEBI:9337","l":"sulfathiazole","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["unspecified/sulfathiazole.html","sulfathiazole"]]},{"id":"CHEBI:9448","l":"terbinafine","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["antifungal/terbinafine.html","terbinafine"]]},{"id":"CHEBI:9661","l":"triacetin","na":1,"nb":1,"a":[["RHEA%3A48028","triacetin + H2O = diacetylglycerol + acetate + H(+)"]],"b":[["antifungal/triacetin.html","triacetin"]]},{"id":"CHEBI:9688","l":"trichodermin","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["antifungal/trichodermin.html","trichodermin"]]},{"id":"CHEBI:9691","l":"piperyline","na":1,"nb":1,"a":[["RHEA%3A73663","pyrrolidine + (E,E)-piperoyl-CoA = piperyline + CoA + H(+)"]],"b":[["antifungal/piperyline.html","piperyline"]]},{"id":"NCBITaxon:1764","l":"Mycobacterium avium","na":1,"nb":1,"a":[["Pfam%3APF01882","Protein of unknown function DUF58"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":1,"nb":1,"a":[["Pfam%3APF26312","Domain of unknown function (DUF8083)"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"NCBITaxon:263","l":"Francisella tularensis","na":1,"nb":1,"a":[["TED%3AAF-A0A6I4RUC7-F1-model_v4_TED02","TED novel fold AF-A0A6I4RUC7-F1-model_v4_TED02"]],"b":[["unspecified/%CE%B1-mangostin.html","α-mangostin"]]},{"id":"NCBITaxon:271","l":"Thermus aquaticus","na":1,"nb":1,"a":[["Pfam%3APF07669","Eco57I restriction-modification methylase"]],"b":[["antimycobacterial/rifampicin.html","rifampicin"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":1,"nb":1,"a":[["Pfam%3APF07335","Fungal chitosanase of glycosyl hydrolase group 75"]],"b":[["antifungal/carboxin.html","carboxin"]]},{"id":"NCBITaxon:5082","l":"Penicillium roqueforti","na":1,"nb":1,"a":[["Pfam%3APF07573","Nitrogen regulatory protein AreA N terminus"]],"b":[["antiviral/mycophenolic-acid.html","mycophenolic acid"]]},{"id":"NCBITaxon:5127","l":"Fusarium fujikuroi","na":1,"nb":1,"a":[["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"NCBITaxon:5141","l":"Neurospora crassa","na":1,"nb":1,"a":[["TED%3AAF-A0A0B0E1R4-F1-model_v4_TED01","TED novel fold AF-A0A0B0E1R4-F1-model_v4_TED01"]],"b":[["antifungal/carbendazim.html","carbendazim"]]},{"id":"NCBITaxon:53446","l":"Streptomyces cinnamoneus","na":1,"nb":1,"a":[["TED%3AAF-A0A2S6XSK0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S6XSK0-F1-model_v4_TED01"]],"b":[["antibacterial/bicozamycin.html","bicozamycin"]]},{"id":"NCBITaxon:68280","l":"Streptomyces violaceusniger","na":1,"nb":1,"a":[["TED%3AAF-A0A0X3VKA0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0X3VKA0-F1-model_v4_TED01"]],"b":[["antibacterial/nigericin.html","nigericin"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A5C7XIK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7XIK2-F1-model_v4_TED01"]],"b":[["antibacterial/lysocin-e.html","lysocin E"]]},{"id":"UniProt:B8N2C8","l":"","na":1,"nb":1,"a":[["EC%3A1.14.14.154","sterol 14alpha-demethylase"]],"b":[["antifungal/voriconazole.html","voriconazole"]]},{"id":"UniProt:O30463","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TOP","TOP-binding site"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"UniProt:P0A017","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_0U5","0U5-binding site"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"UniProt:P13955","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TOP","TOP-binding site"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]},{"id":"UniProt:P42535","l":"","na":1,"nb":1,"a":[["EC%3A1.14.13.50","pentachlorophenol monooxygenase"]],"b":[["antifungal/pentachlorophenol.html","pentachlorophenol"]]},{"id":"UniProt:P50859","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_1YN","1YN-binding site"]],"b":[["antifungal/fluconazole.html","fluconazole"]]},{"id":"UniProt:Q5ALV2","l":"","na":1,"nb":1,"a":[["Pfam%3APF08226","Domain of unknown function (DUF1720)"]],"b":[["antifungal/fluconazole.html","fluconazole"]]},{"id":"UniProt:Q81R22","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_N22","N22-binding site"]],"b":[["antibacterial/trimethoprim.html","trimethoprim"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/ProteinTraitsMech--CultureMech.json b/assets/fleet/edges/ProteinTraitsMech--CultureMech.json index d684f33..e64b4df 100644 --- a/assets/fleet/edges/ProteinTraitsMech--CultureMech.json +++ b/assets/fleet/edges/ProteinTraitsMech--CultureMech.json @@ -1 +1 @@ -{"a":"ProteinTraitsMech","b":"CultureMech","base":{"ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record=","CultureMech":"https://github.com/CultureBotAI/CultureMech/blob/main/data/merge_yaml/merged/"},"n":233,"by":{"CHEBI":221,"NCBITaxon":10,"UBERON":2},"terms":[{"id":"CHEBI:15377","l":"water","na":9376,"nb":2283,"a":[["EC%3A1.1.1.115","ribose 1-dehydrogenase (NADP(+))"],["EC%3A1.1.1.132","GDP-mannose 6-dehydrogenase"],["EC%3A1.1.1.136","UDP-N-acetylglucosamine 6-dehydrogenase"],["EC%3A1.1.1.186","dTDP-galactose 6-dehydrogenase"],["EC%3A1.1.1.192","long-chain-alcohol dehydrogenase"],["EC%3A1.1.1.205","IMP dehydrogenase"]],"b":[["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1_10_MB_agar.yaml","1_10_mb_agar"],["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"],["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":1616,"nb":711,"a":[["EC%3A1.1.1.170","3beta-hydroxysteroid-4alpha-carboxylate 3-dehydrogenase (decarboxylating)"],["EC%3A1.1.1.262","4-hydroxythreonine-4-phosphate dehydrogenase"],["EC%3A1.1.1.276","serine 3-dehydrogenase (NADP(+))"],["EC%3A1.1.1.286","isocitrate--homoisocitrate dehydrogenase"],["EC%3A1.1.1.305","UDP-glucuronic acid oxidase (UDP-4-keto-hexauronic acid decarboxylating)"],["EC%3A1.1.1.343","phosphogluconate dehydrogenase (NAD(+)-dependent, decarboxylating)"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["4_yaco_media.yaml","4_yaco_media"],["8kg_4_medium.yaml","8kg_4_medium"],["ABSS2.yaml","abss2"],["ABYSSISOLIBACTER_MEDIUM.yaml","abyssisolibacter_medium"]]},{"id":"CHEBI:17754","l":"glycerol","na":95,"nb":165,"a":[["EC%3A1.1.1.156","glycerol 2-dehydrogenase (NADP(+))"],["EC%3A1.1.1.372","D/L-glyceraldehyde reductase"],["EC%3A1.1.1.6","glycerol dehydrogenase"],["EC%3A1.1.1.72","glycerol dehydrogenase (NADP(+))"],["EC%3A1.1.99.22","glycerol dehydrogenase (acceptor)"],["EC%3A2.4.1.332","1,2-alpha-glucosylglycerol phosphorylase"]],"b":[["1_ogawa_medium.yaml","1_ogawa_medium"],["1_ogawa_medium__65d0ae34.yaml","1_ogawa_medium"],["5_G_MEDIUM.yaml","5_g_medium"],["5_g_medium__8aa8a45a.yaml","5_g_medium"],["6_B_MEDIUM.yaml","6_b_medium"],["6_b_medium__990e4708.yaml","6_b_medium"]]},{"id":"CHEBI:17154","l":"nicotinamide","na":92,"nb":117,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17154","requires nicotinamide"],["EC%3A2.1.1.1","nicotinamide N-methyltransferase"],["EC%3A2.3.1.286","protein acetyllysine N-acetyltransferase"],["EC%3A2.3.1.313","NAD-dependent lipoamidase"],["EC%3A2.4.2.12","nicotinamide phosphoribosyltransferase"],["EC%3A2.4.2.31","NAD(+)--protein-arginine ADP-ribosyltransferase"]],"b":[["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"],["ANAEROBIC_CHOLESTEROL_MEDIUM.yaml","anaerobic_cholesterol_medium"],["ANAEROBIC_THAUERA_MEDIUM.yaml","anaerobic_thauera_medium"],["ANCALOMICROBIUM_MEDIUM.yaml","ancalomicrobium_medium"],["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"]]},{"id":"CHEBI:17790","l":"methanol","na":86,"nb":107,"a":[["EC%3A1.1.1.244","methanol dehydrogenase"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.99.37","methanol dehydrogenase (nicotinoprotein)"],["EC%3A1.14.13.25","methane monooxygenase (soluble)"],["EC%3A1.14.14.117","aflatoxin B synthase"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["2_mh_medium.yaml","2_mh_medium"],["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["ALTEROMONAS_MEDIUM.yaml","alteromonas_medium"],["BM_MEDIUM.yaml","bm_medium"]]},{"id":"CHEBI:17992","l":"sucrose","na":49,"nb":108,"a":[["EC%3A1.1.99.13","glucoside 3-dehydrogenase (acceptor)"],["EC%3A2.4.1.10","levansucrase"],["EC%3A2.4.1.125","sucrose--1,6-alpha-glucan 3(6)-alpha-glucosyltransferase"],["EC%3A2.4.1.13","sucrose synthase"],["EC%3A2.4.1.166","raffinose--raffinose alpha-galactosyltransferase"],["EC%3A2.4.1.167","sucrose 6(F)-alpha-galactosyltransferase"]],"b":[["ACANTHAMOEBA_MEDIUM.yaml","acanthamoeba_medium"],["ACETIVIBRIO_MEDIUM.yaml","acetivibrio_medium"],["ALCALIPHILIC_AMPHIBACILLUS_STRAINS_MEDIUM.yaml","alcaliphilic_amphibacillus_strains_medium"],["ALKALIPHILIC_SPIROCHAETE_MEDIUM.yaml","alkaliphilic_spirochaete_medium"],["ANAEROBACTER_MEDIUM.yaml","anaerobacter_medium"],["AZOSPIRILLUM_AMAZONENSE_MEDIUM.yaml","azospirillum_amazonense_medium"]]},{"id":"CHEBI:16199","l":"urea","na":48,"nb":45,"a":[["EC%3A3.5.1.5","urease"],["EC%3A3.5.1.95","N-malonylurea hydrolase"],["EC%3A3.5.3.1","arginase"],["EC%3A3.5.3.10","D-arginase"],["EC%3A3.5.3.11","agmatinase"],["EC%3A3.5.3.14","amidinoaspartase"]],"b":[["A7_MEDIUM.yaml","a7_medium"],["Agro_defined_trehalose.yaml","Agro defined trehalose"],["BACILLUS_PASTEURII_MEDIUM.yaml","bacillus_pasteurii_medium"],["BM7CO_MEDIUM.yaml","bm7co_medium"],["C41_MEDIUM.yaml","c41_medium"],["CATONELLA_UREILYTICA_MEDIUM.yaml","catonella_ureilytica_medium"]]},{"id":"CHEBI:18276","l":"dihydrogen","na":42,"nb":231,"a":[["EC%3A1.12.1.2","hydrogen dehydrogenase"],["EC%3A1.12.1.3","hydrogen dehydrogenase (NADP(+))"],["EC%3A1.12.1.4","hydrogenase (NAD(+), ferredoxin)"],["EC%3A1.12.1.5","hydrogen dehydrogenase [NAD(P)(+)]"],["EC%3A1.12.2.1","cytochrome-c3 hydrogenase"],["EC%3A1.12.5.1","hydrogen:quinone oxidoreductase"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["4_yaco_media.yaml","4_yaco_media"],["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["AMMONIFEX_DEGENSII_MEDIUM.yaml","ammonifex_degensii_medium"],["AP11MH_medium.yaml","ap11mh_medium"]]},{"id":"CHEBI:17268","l":"myo-inositol","na":42,"nb":50,"a":[["EC%3A1.1.1.18","inositol 2-dehydrogenase"],["EC%3A1.1.5.n1","quinoprotein inositol dehydrogenase"],["EC%3A1.13.99.1","inositol oxygenase"],["EC%3A2.1.1.129","inositol 4-methyltransferase"],["EC%3A2.1.1.39","inositol 3-methyltransferase"],["EC%3A2.1.1.40","inositol 1-methyltransferase"]],"b":[["2ASW.yaml","2asw"],["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"],["ASW.yaml","asw"],["CDM_LP.yaml","cdm_lp"],["DESULFAMPLUS_MEDIUM.yaml","desulfamplus_medium"],["EGGC_MEDIUM.yaml","eggc_medium"]]},{"id":"CHEBI:30089","l":"acetate","na":302,"nb":31,"a":[["EC%3A1.1.1.318","eugenol synthase"],["EC%3A1.1.1.319","isoeugenol synthase"],["EC%3A1.13.11.50","acetylacetone-cleaving enzyme"],["EC%3A1.13.12.4","lactate 2-monooxygenase"],["EC%3A1.14.13.54","ketosteroid monooxygenase"],["EC%3A1.14.14.19","steroid 17alpha-monooxygenase"]],"b":[["AMOEBOBACTER_MEDIUM.yaml","amoebobacter_medium"],["FWAFC.yaml","fwafc"],["M9ZB_with_acetate.yaml","m9zb_with_acetate"],["MEDIUM_FOR_CHLOROBIUM_FERROOXIDANS.yaml","medium_for_chlorobium_ferrooxidans"],["NMM_with_acetate.yaml","nmm_with_acetate"],["Thauera_aminoaromatica_medium.yaml","thauera_aminoaromatica_medium"]]},{"id":"CHEBI:16236","l":"ethanol","na":31,"nb":70,"a":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.5.5","alcohol dehydrogenase (quinone)"],["EC%3A1.1.99.36","alcohol dehydrogenase (nicotinoprotein)"],["EC%3A2.3.1.268","ethanol O-acetyltransferase"],["EC%3A3.1.1.113","ethyl acetate hydrolase"],["EC%3A3.1.1.67","fatty-acyl-ethyl-ester synthase"]],"b":[["ACETOBACTER_PEROXYDANS_MEDIUM.yaml","acetobacter_peroxydans_medium"],["AE_BROTH.yaml","ae_broth"],["ANAEROTIGNUM_NEOPROPIONICUM_MEDIUM.yaml","anaerotignum_neopropionicum_medium"],["Acetobacter_Europaeus_Medium.yaml","acetobacter_europaeus_medium"],["BTU_MEDIUM.yaml","btu_medium"],["CLOSTRIDIUM_KLUYVERI_MEDIUM.yaml","clostridium_kluyveri_medium"]]},{"id":"CHEBI:16947","l":"citrate(3-)","na":49,"nb":31,"a":[["EC%3A2.3.3.1","citrate (Si)-synthase"],["EC%3A2.3.3.16","citrate synthase (unknown stereospecificity)"],["EC%3A2.3.3.3","citrate (Re)-synthase"],["EC%3A2.3.3.8","ATP citrate synthase"],["EC%3A2.8.3.10","citrate CoA-transferase"],["EC%3A4.1.3.6","citrate (pro-3S)-lyase"]],"b":[["E2_medium_with_citrate.yaml","e2_medium_with_citrate"],["M9_minimal_medium_with_citrate.yaml","m9_minimal_medium_with_citrate"],["Vogels_Medium_N.yaml","vogels_medium_n"],["aspartate_salt_schaechter_et_al.yaml","aspartate_salt_schaechter_et_al"],["batch_medium_mattanovich_et_al.yaml","batch_medium_mattanovich_et_al"],["bg11_0_015_mm_iron_shcolnick_2006.yaml","bg11_0_015_mm_iron_shcolnick_2006"]]},{"id":"CHEBI:17306","l":"maltose","na":27,"nb":50,"a":[["EC%3A2.3.1.79","maltose O-acetyltransferase"],["EC%3A2.4.1.139","maltose synthase"],["EC%3A2.4.1.8","maltose phosphorylase"],["EC%3A2.7.1.175","maltokinase"],["EC%3A2.7.1.208","protein-N(pi)-phosphohistidine--maltose phosphotransferase"],["EC%3A3.1.3.90","maltose 6'-phosphate phosphatase"]],"b":[["ALKALIPHILUS_LACT_MEDIUM.yaml","alkaliphilus_lact_medium"],["BUTYRIVIBRIO_M2_MEDIUM.yaml","butyrivibrio_m2_medium"],["COLON_EXTRACT_MEDIUM.yaml","colon_extract_medium"],["DEINOCOCCUS_MEDIUM.yaml","deinococcus_medium"],["HELMUTKOENIGIA_MEDIUM.yaml","helmutkoenigia_medium"],["HYPNOCYCLICUS_MEDIUM.yaml","hypnocyclicus_medium"]]},{"id":"CHEBI:17568","l":"uracil","na":47,"nb":26,"a":[["EC%3A1.14.11.10","pyrimidine-deoxynucleoside 1'-dioxygenase"],["EC%3A1.14.99.46","pyrimidine monooxygenase"],["EC%3A1.17.99.4","uracil/thymine dehydrogenase"],["EC%3A1.3.1.1","dihydrouracil dehydrogenase (NAD(+))"],["EC%3A1.3.1.2","dihydropyrimidine dehydrogenase (NADP(+))"],["EC%3A1.3.3.7","dihydrouracil oxidase"]],"b":[["CDM_LP.yaml","cdm_lp"],["MCD_Medium.yaml","mcd_medium"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"]]},{"id":"CHEBI:15361","l":"pyruvate","na":410,"nb":24,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15361","requires pyruvate"],["EC%3A1.1.1.27","L-lactate dehydrogenase"],["EC%3A1.1.1.28","D-lactate dehydrogenase"],["EC%3A1.1.1.38","malate dehydrogenase (oxaloacetate-decarboxylating)"],["EC%3A1.1.1.39","malate dehydrogenase (decarboxylating)"],["EC%3A1.1.1.40","malate dehydrogenase (oxaloacetate-decarboxylating) (NADP(+))"]],"b":[["ARCOBACTER_ANAEROPHILUS_MEDIUM.yaml","arcobacter_anaerophilus_medium"],["CENTENUM_MEDIUM.yaml","centenum_medium"],["CMM.yaml","cmm"],["NMM_with_pyruvate.yaml","nmm_with_pyruvate"],["ams1_pyruvate_glycine.yaml","ams1_pyruvate_glycine"],["ams1_pyruvate_glycine__08b97e38.yaml","ams1_pyruvate_glycine"]]},{"id":"CHEBI:26833","l":"sulfur atom","na":24,"nb":153,"a":[["EC%3A1.12.98.4","sulfhydrogenase"],["EC%3A1.13.11.55","sulfur oxygenase/reductase"],["EC%3A1.8.1.18","NAD(P)H sulfur oxidoreductase (CoA-dependent)"],["EC%3A1.8.1.19","sulfide dehydrogenase"],["EC%3A1.8.2.3","sulfide-cytochrome-c reductase (flavocytochrome c)"],["EC%3A1.8.2.7","thiocyanate desulfurase"]],"b":[["1_2_SME_MEDIUM.yaml","1_2_sme_medium"],["9K_WITH_SULFUR_MEDIUM.yaml","9k_with_sulfur_medium"],["ACIDIANUS_BRIERLEYI_MEDIUM.yaml","acidianus_brierleyi_medium"],["ACIDITHIOBACILLUS_CALDUS_MEDIUM.yaml","acidithiobacillus_caldus_medium"],["ACIDITHIOBACILLUS_MEDIUM.yaml","acidithiobacillus_medium"],["ACIDOLOBUS_ACETICUS_MEDIUM.yaml","acidolobus_aceticus_medium"]]},{"id":"CHEBI:17836","l":"4-aminobenzoate","na":20,"nb":87,"a":[["EC%3A1.14.13.27","4-aminobenzoate 1-monooxygenase"],["EC%3A1.14.99.68","4-aminobenzoate N-oxygenase"],["EC%3A2.4.2.54","beta-ribofuranosylphenol 5'-phosphate synthase"],["EC%3A2.5.1.15","dihydropteroate synthase"],["EC%3A4.1.1.24","aminobenzoate decarboxylase"],["EC%3A4.1.3.38","aminodeoxychorismate lyase"]],"b":[["Asp2.yaml","asp2"],["CAMM.yaml","camm"],["CDM_LP.yaml","cdm_lp"],["DESULFOMONILE_MEDIUM.yaml","desulfomonile_medium"],["FWAFC.yaml","fwafc"],["Gotz_minimal_medium_with_malate.yaml","gotz_minimal_medium_with_malate"]]},{"id":"CHEBI:17716","l":"lactose","na":20,"nb":25,"a":[["EC%3A2.4.1.22","lactose synthase"],["EC%3A2.7.1.207","protein-N(pi)-phosphohistidine--lactose phosphotransferase"],["EC%3A3.2.1.108","lactase"],["EC%3A3.2.1.140","lacto-N-biosidase"],["EC%3A3.2.1.227","N-acetyllactosaminidase"],["RHEA%3A86923","a beta-D-Gal-(1->4)-beta-D-Glc-(1<->1)-Cer(d18:1(4E)) + H2O = lactose + an N-acylsphing-4-enine"]],"b":[["1298.yaml","1298"],["ALKALINE_CELLULOSE_AGAR.yaml","alkaline_cellulose_agar"],["Basal_synthetic_medium.yaml","basal_synthetic_medium"],["CLOSTRIDIUM_VINCENTII_MEDIUM.yaml","clostridium_vincentii_medium"],["M17_MEDIUM_FOR_LACTIC_STREPTOCOCCI.yaml","m17_medium_for_lactic_streptococci"],["STREPTOCOCCUS_SUIS_MEDIUM.yaml","streptococcus_suis_medium"]]},{"id":"CHEBI:17821","l":"thymine","na":20,"nb":22,"a":[["EC%3A1.14.11.6","thymine dioxygenase"],["EC%3A1.14.99.46","pyrimidine monooxygenase"],["EC%3A1.17.99.4","uracil/thymine dehydrogenase"],["EC%3A1.3.1.1","dihydrouracil dehydrogenase (NAD(+))"],["EC%3A1.3.1.2","dihydropyrimidine dehydrogenase (NADP(+))"],["EC%3A2.4.2.2","pyrimidine-nucleoside phosphorylase"]],"b":[["2ASW.yaml","2asw"],["2asw__59e92e67.yaml","2asw"],["ASW.yaml","asw"],["Asp2.yaml","asp2"],["CDM_LP.yaml","cdm_lp"],["NLDM_defined.yaml","NLDM_defined"]]},{"id":"CHEBI:17057","l":"cellobiose","na":19,"nb":121,"a":[["EC%3A1.1.3.5","hexose oxidase"],["EC%3A1.1.99.18","cellobiose dehydrogenase (acceptor)"],["EC%3A2.4.1.20","cellobiose phosphorylase"],["EC%3A2.7.1.205","protein-N(pi)-phosphohistidine--D-cellobiose phosphotransferase"],["EC%3A2.7.1.85","beta-glucoside kinase"],["EC%3A5.1.3.11","cellobiose epimerase"]],"b":[["A7_MEDIUM.yaml","a7_medium"],["ACETIVIBRIO_ALKALICELLULOSI_MEDIUM.yaml","acetivibrio_alkalicellulosi_medium"],["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["ALKALIFLEXUS_MEDIUM.yaml","alkaliflexus_medium"],["ANAEROBACTERIUM_MEDIUM.yaml","anaerobacterium_medium"],["ANAEROCELLUM_MEDIUM.yaml","anaerocellum_medium"]]},{"id":"CHEBI:18385","l":"thiamine(1+)","na":19,"nb":94,"a":[["EC%3A1.1.3.23","thiamine oxidase"],["EC%3A2.5.1.2","thiamine pyridinylase"],["EC%3A2.7.1.89","thiamine kinase"],["EC%3A2.7.6.2","thiamine diphosphokinase"],["EC%3A3.1.3.100","thiamine phosphate phosphatase"],["EC%3A3.5.99.2","aminopyrimidine aminohydrolase"]],"b":[["ANB_aerobic.yaml","anb_aerobic"],["AQUASPIRILLUM_MEDIUM.yaml","aquaspirillum_medium"],["Basic_mineral_medium.yaml","basic_mineral_medium"],["CHITINIVIBRIO_MEDIUM.yaml","chitinivibrio_medium"],["Chemically_defined_medium.yaml","chemically_defined_medium"],["Chromatium_Medium.yaml","chromatium_medium"]]},{"id":"CHEBI:16709","l":"pyridoxine","na":19,"nb":38,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16709","requires pyridoxine"],["EC%3A1.1.1.65","pyridoxine 4-dehydrogenase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.99.9","pyridoxine 5-dehydrogenase"],["EC%3A2.4.1.160","pyridoxine 5'-O-beta-D-glucosyltransferase"],["EC%3A2.7.1.35","pyridoxal kinase"]],"b":[["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["4_yaco_media.yaml","4_yaco_media"],["ANB_aerobic.yaml","anb_aerobic"],["AQUASPIRILLUM_MEDIUM.yaml","aquaspirillum_medium"],["BACTO_MIDDLEBROOK_7H9_BROTH.yaml","bacto_middlebrook_7h9_broth"],["Basic_mineral_medium.yaml","basic_mineral_medium"]]},{"id":"CHEBI:16235","l":"guanine","na":27,"nb":19,"a":[["EC%3A2.4.2.1","purine-nucleoside phosphorylase"],["EC%3A2.4.2.15","guanosine phosphorylase"],["EC%3A2.4.2.29","tRNA-guanosine(34) preQ1 transglycosylase"],["EC%3A2.4.2.48","tRNA-guanine(15) transglycosylase"],["EC%3A2.4.2.64","tRNA-guanosine(34) queuine transglycosylase"],["EC%3A2.4.2.8","hypoxanthine phosphoribosyltransferase"]],"b":[["MCD_Medium.yaml","mcd_medium"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"]]},{"id":"CHEBI:17997","l":"dinitrogen","na":18,"nb":904,"a":[["EC%3A1.18.6.1","nitrogenase"],["EC%3A1.18.6.2","vanadium-dependent nitrogenase"],["EC%3A1.19.6.1","nitrogenase (flavodoxin)"],["EC%3A1.7.2.4","nitrous-oxide reductase"],["EC%3A1.7.2.8","hydrazine dehydrogenase"],["RHEA%3A79967","3-diazoavenalumate + NADH + H(+) = avenalumate + N2 + NAD(+)"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_tryptic_soy_broth_anaerobic.yaml","1_2_tryptic_soy_broth_anaerobic"],["480g_medium__e94698e7.yaml","480g_medium"],["8kg_4_medium.yaml","8kg_4_medium"],["ABSS2.yaml","abss2"],["ABYSSISOLIBACTER_MEDIUM.yaml","abyssisolibacter_medium"]]},{"id":"CHEBI:16899","l":"D-mannitol","na":17,"nb":18,"a":[["EC%3A1.1.1.138","mannitol 2-dehydrogenase (NADP(+))"],["EC%3A1.1.1.255","mannitol dehydrogenase"],["EC%3A1.1.1.67","mannitol 2-dehydrogenase"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.3.40","D-mannitol oxidase"],["EC%3A2.7.1.197","protein-N(pi)-phosphohistidine--D-mannitol phosphotransferase"]],"b":[["HETEROTROPHIC_MEDIUM_H3P.yaml","heterotrophic_medium_h3p"],["MGL.yaml","MGL"],["Modified_YM.yaml","Modified YM"],["NF.yaml","NF"],["NL-CCM.yaml","NL-CCM"],["NLDM_defined.yaml","NLDM_defined"]]},{"id":"CHEBI:17596","l":"inosine","na":32,"nb":16,"a":[["EC%3A1.1.3.28","nucleoside oxidase"],["EC%3A2.7.1.73","inosine kinase"],["EC%3A3.1.3.99","IMP-specific 5'-nucleotidase"],["EC%3A3.13.1.9","S-inosyl-L-homocysteine hydrolase"],["EC%3A3.2.2.2","inosine nucleosidase"],["EC%3A3.5.4.4","adenosine deaminase"]],"b":[["MCD_Medium.yaml","mcd_medium"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:29032","l":"(R)-pantothenate","na":15,"nb":135,"a":[["EC%3A2.7.1.33","pantothenate kinase"],["EC%3A3.5.1.22","pantothenase"],["EC%3A3.5.1.92","pantetheine hydrolase"],["EC%3A6.3.2.1","pantoate--beta-alanine ligase (AMP-forming)"],["EC%3A6.3.2.44","pantoate--beta-alanine ligase (ADP-forming)"],["RHEA%3A68332","(R)-4'-phosphopantothenate + H2O = (R)-pantothenate + phosphate"]],"b":[["AP11MH_medium.yaml","ap11mh_medium"],["ARCHAEOGLOBUS_FULGIDUS_MEDIUM.yaml","archaeoglobus_fulgidus_medium"],["AS_medium.yaml","as_medium"],["A_medium.yaml","a_medium"],["Artificial_seawater_medium_for_strain_JS_SRB250Lac.yaml","artificial_seawater_medium_for_strain_js_srb250lac"],["Cedears_Standard_Medium_2.yaml","cedears_standard_medium_2"]]},{"id":"CHEBI:17750","l":"glycine betaine","na":33,"nb":15,"a":[["EC%3A1.1.3.17","choline oxidase"],["EC%3A1.13.11.90","[1-hydroxy-2-(trimethylamino)ethyl]phosphonate dioxygenase (glycine- betaine-forming)"],["EC%3A1.14.13.251","glycine betaine monooxygenase"],["EC%3A1.2.1.8","betaine-aldehyde dehydrogenase"],["EC%3A1.21.4.4","betaine reductase"],["EC%3A2.1.1.157","sarcosine/dimethylglycine N-methyltransferase"]],"b":[["CUNICULIPLASMA_MEDIUM.yaml","cuniculiplasma_medium"],["MALEDIVIBACTER_MEDIUM.yaml","maledivibacter_medium"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"]]},{"id":"CHEBI:15428","l":"glycine","na":13,"nb":87,"a":[["MCSA%3A718","caspase-1"],["MCSA%3A599","dipeptidase E"],["MCSA%3A906","gelatinase A"],["MCSA%3A762","glycine C-acetyltransferase"],["MCSA%3A746","L-peptidase"],["MCSA%3A477","picornain 3C"]],"b":[["ACETOBACTEROIDES_GLYCINOPHILUS_MEDIUM.yaml","acetobacteroides_glycinophilus_medium"],["ACIDAMINOBACTER_MEDIUM.yaml","acidaminobacter_medium"],["ACIDAMINOCOCCUS_FERMENTANS_MEDIUM.yaml","acidaminococcus_fermentans_medium"],["ANT.yaml","ant"],["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"]]},{"id":"CHEBI:16040","l":"cytosine","na":17,"nb":13,"a":[["EC%3A2.4.2.57","AMP phosphorylase"],["EC%3A3.2.2.10","pyrimidine-5'-nucleotide nucleosidase"],["EC%3A3.2.2.8","ribosylpyrimidine nucleosidase"],["EC%3A3.5.1.135","N(4)-acetylcytidine amidohydrolase"],["EC%3A3.5.4.1","cytosine deaminase"],["RHEA%3A30075","CMP + H2O = cytosine + D-ribose 5-phosphate"]],"b":[["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:26271","l":"proline","na":12,"nb":19,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.15","The Betaine/Carnitine/Choline Transporter (BCCT) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"]],"b":[["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["cdm_lab_medium.yaml","cdm_lab_medium"],["complete_chemically_defined_medium.yaml","complete_chemically_defined_medium"],["minimal_chemically_defined_medium_his_pro_letort_2001.yaml","minimal_chemically_defined_medium_his_pro_letort_2001"]]},{"id":"CHEBI:16977","l":"L-alanine","na":11,"nb":51,"a":[["ARO%3A3004943","cycloserine resistant ald"],["ARO%3A3004946","cycloserine resistant alr"],["ARO%3A3004945","Mycobacterium tuberculosis ald mutations confer resistance to cycloserine"],["ARO%3A3004947","Mycobacterium tuberculosis alr with mutation conferring resistance to cycloserine"],["MCSA%3A609","alpha-lytic endopeptidase"],["MCSA%3A238","assemblin"]],"b":[["ANAEROTIGNUM_MEDIUM.yaml","anaerotignum_medium"],["BGDM.yaml","bgdm"],["CMM.yaml","cmm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MCD_Medium.yaml","mcd_medium"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"]]},{"id":"CHEBI:18067","l":"phylloquinone","na":11,"nb":38,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18067","requires phylloquinone"],["EC%3A1.14.14.78","phylloquinone omega-hydroxylase"],["EC%3A1.14.99.20","phylloquinone monooxygenase (2,3-epoxidizing)"],["EC%3A1.17.4.4","vitamin-K-epoxide reductase (warfarin-sensitive)"],["RHEA%3A57744","phylloquinol + [protein]-disulfide = phylloquinone + [protein]-dithiol"],["RHEA%3A16745","phylloquinone + AH2 + O2 = 2,3-epoxyphylloquinone + A + H2O"]],"b":[["BTU_MEDIUM.yaml","btu_medium"],["Brucella_agar_plates_supplemented_with_hemin_and_vitamin_K1.yaml","brucella_agar_plates_supplemented_with_hemin_and_vitamin_k1"],["COLON_EXTRACT_MEDIUM.yaml","colon_extract_medium"],["Chopped_meat_carbohydrates_with_rumen_fluid.yaml","chopped_meat_carbohydrates_with_rumen_fluid"],["EUBACTERIUM_LENTUM_MEDIUM.yaml","eubacterium_lentum_medium"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"]]},{"id":"CHEBI:17368","l":"hypoxanthine","na":28,"nb":11,"a":[["EC%3A1.17.1.4","xanthine dehydrogenase"],["EC%3A1.17.3.2","xanthine oxidase"],["EC%3A2.4.2.44","S-methyl-5'-thioinosine phosphorylase"],["EC%3A2.4.2.8","hypoxanthine phosphoribosyltransferase"],["EC%3A3.2.2.12","inosinate nucleosidase"],["EC%3A3.2.2.2","inosine nucleosidase"]],"b":[["CDM_LP.yaml","cdm_lp"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:16810","l":"2-oxoglutarate(2-)","na":672,"nb":10,"a":[["EC%3A1.1.1.286","isocitrate--homoisocitrate dehydrogenase"],["EC%3A1.1.1.399","2-oxoglutarate reductase"],["EC%3A1.1.1.41","isocitrate dehydrogenase (NAD(+))"],["EC%3A1.1.1.42","isocitrate dehydrogenase (NADP(+))"],["EC%3A1.1.5.13","(S)-2-hydroxyglutarate dehydrogenase"],["EC%3A1.1.99.2","L-2-hydroxyglutarate dehydrogenase"]],"b":[["BCYE_alpha_agar.yaml","bcye_alpha_agar"],["BM7_MEDIUM.yaml","bm7_medium"],["CTM_MEDIUM.yaml","ctm_medium"],["DinoMM_alphaKetoGlutAcid_NoNitrogen.yaml","DinoMM alphaKetoGlutAcid NoNitrogen"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"]]},{"id":"CHEBI:17712","l":"9H-xanthine","na":32,"nb":10,"a":[["EC%3A1.14.11.48","xanthine dioxygenase"],["EC%3A1.14.13.128","7-methylxanthine demethylase"],["EC%3A1.14.13.179","methylxanthine N(3)-demethylase"],["EC%3A1.17.1.4","xanthine dehydrogenase"],["EC%3A1.17.3.2","xanthine oxidase"],["EC%3A2.4.2.1","purine-nucleoside phosphorylase"]],"b":[["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["ZMB.yaml","ZMB"],["ZMB_ALS.yaml","ZMB ALS"]]},{"id":"CHEBI:18167","l":"alpha-maltose","na":9,"nb":41,"a":[["EC%3A5.1.3.21","maltose epimerase"],["EC%3A5.1.3.3","aldose 1-epimerase"],["RHEA%3A21228","alpha-maltose = beta-maltose"],["MCSA%3A479","4-alpha-glucanotransferase"],["MCSA%3A397","alpha-amylase"],["MCSA%3A905","glucan 1,4-alpha-maltohydrolase"]],"b":[["4_yaco_media.yaml","4_yaco_media"],["Chopped_Meat_Carbohydrate_Medium.yaml","chopped_meat_carbohydrate_medium"],["Chopped_Meat_Carbohydrate_Medium_w_Tween_80.yaml","chopped_meat_carbohydrate_medium_w_tween_80"],["Chopped_meat_carbohydrates_with_rumen_fluid.yaml","chopped_meat_carbohydrates_with_rumen_fluid"],["KTM_medium.yaml","ktm_medium"],["LACTOBACILLUS_PONTIS_MEDIUM.yaml","lactobacillus_pontis_medium"]]},{"id":"CHEBI:16857","l":"L-threonine","na":9,"nb":35,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.23","The Dicarboxylate/Amino Acid:Cation (Na+ or H+) Symporter (DAACS) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.42","The Hydroxy/Aromatic Amino Acid Permease (HAAAP) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"],["McAA_formate_No_pABA.yaml","McAA formate No pABA"],["Mops_medium.yaml","mops_medium"]]},{"id":"CHEBI:16704","l":"uridine","na":26,"nb":9,"a":[["EC%3A1.14.11.3","pyrimidine-deoxynucleoside 2'-dioxygenase"],["EC%3A2.4.2.2","pyrimidine-nucleoside phosphorylase"],["EC%3A2.4.2.3","uridine phosphorylase"],["EC%3A2.7.1.48","uridine/cytidine kinase"],["EC%3A3.2.2.3","uridine nucleosidase"],["EC%3A3.2.2.8","ribosylpyrimidine nucleosidase"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"]]},{"id":"CHEBI:18019","l":"L-lysine","na":8,"nb":32,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A2.A.53","The Sulfate Permease (SulP) Family"],["MCSA%3A746","L-peptidase"],["MCSA%3A786","peptidyl-Lys metalloendopeptidase"],["MCSA%3A597","ubiquitinyl hydrolase 1 (peptidase C12 type)"]],"b":[["Chamberlain_CDM.yaml","chamberlain_cdm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"],["McAA_formate_No_pABA.yaml","McAA formate No pABA"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"]]},{"id":"CHEBI:17562","l":"cytidine","na":25,"nb":8,"a":[["EC%3A2.7.1.213","cytidine kinase"],["EC%3A2.7.1.48","uridine/cytidine kinase"],["EC%3A3.1.3.91","7-methylguanosine nucleotidase"],["EC%3A3.2.2.8","ribosylpyrimidine nucleosidase"],["EC%3A3.5.1.135","N(4)-acetylcytidine amidohydrolase"],["EC%3A3.5.4.5","cytidine deaminase"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"]]},{"id":"CHEBI:17748","l":"thymidine","na":21,"nb":8,"a":[["EC%3A2.4.2.2","pyrimidine-nucleoside phosphorylase"],["EC%3A2.4.2.4","thymidine phosphorylase"],["EC%3A2.7.1.114","AMP--thymidine kinase"],["EC%3A2.7.1.118","ADP--thymidine kinase"],["EC%3A2.7.1.145","deoxynucleoside kinase"],["EC%3A2.7.1.21","thymidine kinase"]],"b":[["CHI_1776_MEDIUM.yaml","chi_1776_medium"],["MCD_Medium.yaml","mcd_medium"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"],["Soil_Defined_Media_%28SDM%29.yaml","Soil Defined Media (SDM)"],["cdm_lab_medium.yaml","cdm_lab_medium"],["cdm_teusink_et_al.yaml","cdm_teusink_et_al"]]},{"id":"CHEBI:16335","l":"adenosine","na":35,"nb":7,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16335","requires vitamin B12"],["EC%3A1.1.3.39","nucleoside oxidase (H2O2-forming)"],["EC%3A2.7.1.114","AMP--thymidine kinase"],["EC%3A2.7.1.20","adenosine kinase"],["EC%3A3.13.2.1","adenosylhomocysteinase"],["EC%3A3.13.2.3","(R)-S-adenosyl-L-methionine hydrolase (adenosine-forming)"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"]]},{"id":"CHEBI:30742","l":"ethylene glycol","na":7,"nb":21,"a":[["EC%3A3.1.1.102","mono(ethylene terephthalate) hydrolase"],["RHEA%3A42648","(2,5-ethylene furandicarboxylate)(n) + 2 H2O = (2,5-ethylene furandicarboxylate)(n-1) + 2,5-dicarboxyfuran + ethylene glycol + 2 H(+)"],["RHEA%3A49532","4-[(2-hydroxyethoxy)carbonyl]benzoate + H2O = terephthalate + ethylene glycol + H(+)"],["RHEA%3A80759","bis(2-hydroxyethyl) terephthalate + H2O = 4-[(2-hydroxyethoxy)carbonyl]benzoate + ethylene glycol + H(+)"],["RHEA%3A27630","ethylene glycol + NAD(+) = glycolaldehyde + NADH + H(+)"],["MCSA%3A847","epoxide hydrolase"]],"b":[["acetobacterium_medium_marine.yaml","acetobacterium_medium_marine"],["bm_in_arabinose_hodgson_et_al.yaml","bm_in_arabinose_hodgson_et_al"],["bm_in_cellobiose_hodgson_et_al.yaml","bm_in_cellobiose_hodgson_et_al"],["bm_in_fructose_hodgson_et_al.yaml","bm_in_fructose_hodgson_et_al"],["bm_in_galactose_hodgson_et_al.yaml","bm_in_galactose_hodgson_et_al"],["bm_in_glucose_hodgson_et_al.yaml","bm_in_glucose_hodgson_et_al"]]},{"id":"CHEBI:17578","l":"toluene","na":13,"nb":7,"a":[["EC%3A1.14.12.11","toluene dioxygenase"],["EC%3A1.14.13.236","toluene 4-monooxygenase"],["EC%3A1.14.13.243","toluene 2-monooxygenase"],["EC%3A1.14.15.26","toluene methyl-monooxygenase"],["EC%3A4.1.1.119","phenylacetate decarboxylase"],["EC%3A4.1.99.11","benzylsuccinate synthase"]],"b":[["FRESHWATER_MEDIUM_WITH_TOLUENE.yaml","freshwater_medium_with_toluene"],["GEORGFUCHSIA_MEDIUM.yaml","georgfuchsia_medium"],["Modified_m9_with_toluene.yaml","modified_m9_with_toluene"],["defined_freshwater_medium_cocl2__6b305113.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__35d08dce.yaml","defined_freshwater_medium_coso4"],["freshwater_medium_with_toluene__185c443d.yaml","freshwater_medium_with_toluene"]]},{"id":"CHEBI:506227","l":"N-acetyl-D-glucosamine","na":44,"nb":6,"a":[["EC%3A1.1.3.29","N-acylhexosamine oxidase"],["EC%3A2.3.1.3","glucosamine N-acetyltransferase"],["EC%3A2.4.1.211","1,3-beta-galactosyl-N-acetylhexosamine phosphorylase"],["EC%3A2.4.1.280","N,N'-diacetylchitobiose phosphorylase"],["EC%3A2.4.1.320","1,4-beta-mannosyl-N-acetylglucosamine phosphorylase"],["EC%3A2.4.1.90","N-acetyllactosamine synthase"]],"b":[["ANAEROBACCA_MEDIUM.yaml","anaerobacca_medium"],["BSK_MEDIUM.yaml","bsk_medium"],["NATRONOARCHAEA_MEDIUM_WITH_GLUCOSAMINE.yaml","natronoarchaea_medium_with_glucosamine"],["barbour_sfoenner_kelly_bsk_ii_medium.yaml","barbour_sfoenner_kelly_bsk_ii_medium"],["m30__354deb2e.yaml","m30"],["modified_bsk_medium__578ddf1c.yaml","modified_bsk_medium"]]},{"id":"CHEBI:24996","l":"lactate","na":23,"nb":6,"a":[["EC%3A1.1.1.436","lactate dehydrogenase (NAD(+),ferredoxin)"],["EC%3A3.5.1.124","protein deglycase"],["RHEA%3A57300","an N(2)-(1-hydroxy-2-oxopropyl)-2'-deoxyguanosine in DNA + H2O = a 2'-deoxyguanosine in DNA + lactate + H(+)"],["RHEA%3A57288","an N(2)-(1-hydroxy-2-oxopropyl)-guanosine in RNA + H2O = a guanosine in RNA + lactate + H(+)"],["RHEA%3A46964","lactate + 2 reduced [2Fe-2S]-[ferredoxin] + 2 NAD(+) = 2 oxidized [2Fe-2S]-[ferredoxin] + pyruvate + 2 NADH"],["RHEA%3A57244","N(2)-(1-hydroxy-2-oxopropyl)-dGTP + H2O = lactate + dGTP + H(+)"]],"b":[["ARCOBACTER_ANAEROPHILUS_MEDIUM.yaml","arcobacter_anaerophilus_medium"],["defined_freshwater_medium_cocl2__f0ffbcc6.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__41b1d433.yaml","defined_freshwater_medium_coso4"],["fermentation_medium_lactate_nh4cl.yaml","fermentation_medium_lactate_nh4cl"],["modified_m1_medium_with_20_mm_lactate_pinchuk_et_al.yaml","modified_m1_medium_with_20_mm_lactate_pinchuk_et_al"],["modified_m1_medium_with_lactate_and_glycine_no_nh4cl.yaml","modified_m1_medium_with_lactate_and_glycine_no_nh4cl"]]},{"id":"CHEBI:22653","l":"asparagine","na":6,"nb":21,"a":[["TCDB%3A2.A.25","The Alanine or Glycine:Cation Symporter (AGCS) Family"],["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.13","The C4-Dicarboxylate Uptake (Dcu) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["CDM_LP.yaml","cdm_lp"],["HALOACTINOMYCES_HALOPHILUS_MEDIUM.yaml","haloactinomyces_halophilus_medium"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["MYKORRHIZA_MEDIUM.yaml","mykorrhiza_medium"]]},{"id":"CHEBI:28645","l":"beta-D-fructofuranose","na":6,"nb":20,"a":[["EC%3A2.7.1.3","ketohexokinase"],["EC%3A3.2.1.48","sucrose alpha-glucosidase"],["RHEA%3A18145","beta-D-fructose + ATP = beta-D-fructose 1-phosphate + ADP + H(+)"],["RHEA%3A33791","sucrose 6(F)-phosphate + H2O = beta-D-fructose + beta-D-glucose 6-phosphate"],["RHEA%3A33795","sucrose + H2O = beta-D-fructose + alpha-D-glucose"],["proteintraitsmech%3ABIOLIP_FRU","FRU-binding site"]],"b":[["Clostridium_medium.yaml","clostridium_medium"],["FYP_medium.yaml","fyp_medium"],["Green_Sulfur_Bacterium_Medium.yaml","green_sulfur_bacterium_medium"],["Liquid_Fermentation_Medium.yaml","liquid_fermentation_medium"],["M1D_Medium.yaml","m1d_medium"],["MOORELLA_AN10_MEDIUM.yaml","moorella_an10_medium"]]},{"id":"CHEBI:18246","l":"(1->4)-beta-D-glucan","na":6,"nb":15,"a":[["EC%3A2.4.1.12","cellulose synthase (UDP-forming)"],["EC%3A2.4.1.29","cellulose synthase (GDP-forming)"],["EC%3A2.4.1.49","cellodextrin phosphorylase"],["RHEA%3A17797","[(1->4)-beta-D-glucosyl](n) + GDP-alpha-D-glucose = [(1->4)-beta-D-glucosyl](n+1) + GDP + H(+)"],["RHEA%3A23024","[(1->4)-beta-D-glucosyl](n) + phosphate = [(1->4)-beta-D-glucosyl](n-1) + alpha-D-glucose 1-phosphate"],["RHEA%3A19929","[(1->4)-beta-D-glucosyl](n) + UDP-alpha-D-glucose = [(1->4)-beta-D-glucosyl](n+1) + UDP + H(+)"]],"b":[["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["CLOSTRIDIUM_CELLULOVORANS_MEDIUM.yaml","clostridium_cellulovorans_medium"],["Clostridium_Cellulolytic_medium.yaml","clostridium_cellulolytic_medium"],["HALOCELLA_CELLULOLYTICA_MEDIUM.yaml","halocella_cellulolytica_medium"],["RUMINICLOSTRIDIUM_CELLOBIOPARUM_MEDIUM.yaml","ruminiclostridium_cellobioparum_medium"],["RUMINICLOSTRIDIUM_PAPYROSOLVENS_MEDIUM.yaml","ruminiclostridium_papyrosolvens_medium"]]},{"id":"CHEBI:17439","l":"cyanocob(III)alamin","na":5,"nb":187,"a":[["EC%3A1.16.1.6","cyanocobalamin reductase"],["RHEA%3A16113","2 cob(II)alamin-[cyanocobalamin reductase] + 2 hydrogen cyanide + NADP(+) = 2 cyanocob(III)alamin + 2 apo-[cyanocobalamin reductase] + NADPH + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["TCDB%3A9.B.87","The Selenoprotein P Receptor (SelP-Receptor) Family"]],"b":[["2ASW.yaml","2asw"],["2asw__59e92e67.yaml","2asw"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["3n_bbm_v_recipe_for_customer_orders.yaml","3n_bbm_v_recipe_for_customer_orders"],["ACY.yaml","ACY"],["ALP_defined.yaml","ALP defined"]]},{"id":"CHEBI:16750","l":"guanosine","na":19,"nb":5,"a":[["EC%3A2.4.2.1","purine-nucleoside phosphorylase"],["EC%3A2.4.2.15","guanosine phosphorylase"],["EC%3A2.7.1.73","inosine kinase"],["EC%3A3.5.4.15","guanosine deaminase"],["RHEA%3A27862","3'-GMP + H2O = guanosine + phosphate"],["RHEA%3A27714","GMP + H2O = guanosine + phosphate"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:18107","l":"xanthosine","na":9,"nb":5,"a":[["EC%3A2.1.1.158","7-methylxanthosine synthase"],["EC%3A2.4.2.1","purine-nucleoside phosphorylase"],["EC%3A3.5.4.15","guanosine deaminase"],["RHEA%3A12861","guanosine + H2O + H(+) = xanthosine + NH4(+)"],["RHEA%3A27994","xanthosine + H2O = D-ribose + xanthine"],["RHEA%3A28939","xanthosine(in) + H(+)(in) = xanthosine(out) + H(+)(out)"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:16634","l":"raffinose","na":8,"nb":5,"a":[["EC%3A2.4.1.166","raffinose--raffinose alpha-galactosyltransferase"],["EC%3A2.4.1.67","galactinol--raffinose galactosyltransferase"],["EC%3A2.4.1.82","galactinol--sucrose galactosyltransferase"],["RHEA%3A14125","2 raffinose = 1(F)-alpha-D-galactosylraffinose + sucrose"],["RHEA%3A20776","alpha-D-galactosyl-(1->3)-1D-myo-inositol + raffinose = stachyose + myo-inositol"],["RHEA%3A20161","alpha-D-galactosyl-(1->3)-1D-myo-inositol + sucrose = raffinose + myo-inositol"]],"b":[["MYXOCOCCUS_FLAVESCENS_MEDIUM.yaml","myxococcus_flavescens_medium"],["Modified_SP_Medium.yaml","modified_sp_medium"],["SP_Medium.yaml","sp_medium"],["myxococcus_flavescens_medium__aa6b37a2.yaml","myxococcus_flavescens_medium"],["sp_medium__3b598fd8.yaml","sp_medium"]]},{"id":"CHEBI:16865","l":"gamma-aminobutyric acid","na":5,"nb":6,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A2.A.42","The Hydroxy/Aromatic Amino Acid Permease (HAAAP) Family"],["TCDB%3A2.A.22","The Neurotransmitter:Sodium Symporter (NSS) Family"],["proteintraitsmech%3ABIOLIP_ABU","ABU-binding site"]],"b":[["CLOSTRIDIUM_AMINOBUTYRICUM_MEDIUM.yaml","clostridium_aminobutyricum_medium"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:28911","l":"cob(III)alamin","na":6,"nb":5,"a":[["RHEA%3A81907","(2R,3R,5R)-2-(S-pantetheinyl)-carbapenam-3-carboxylate + methylcob(III)alamin + S-adenosyl-L-methionine = (2R,3R,5S,6R)-6-(methyl)-2-(S-pantetheinyl)-carbapenam-3-carboxylate + cob(III)alamin + 5'-deoxyadenosine + L-methionine"],["RHEA%3A81911","(2R,3R,5S,6R)-6-(methyl)-2-(S-pantetheinyl)-carbapenam-3-carboxylate + methylcob(III)alamin + S-adenosyl-L-methionine = (2R,3R,5S,6R)-6-(ethyl)-2-(S-pantetheinyl)-carbapenam-3-carboxylate + cob(III)alamin + 5'-deoxyadenosine + L-methionine"],["RHEA%3A76471","cob(III)alamin + AH2 = cob(I)alamin + A + 2 H(+)"],["RHEA%3A81883","cytidine 5'-{[hydroxy(2-hydroxyethyl)phosphonoyl]phosphate} + methylcob(III)alamin + S-adenosyl-L-methionine = cytidine 5'-({hydroxy[(S)-2-hydroxypropyl]phosphonoyl}phosphate) + cob(III)alamin + 5'-deoxyadenosine + L-methionine"],["RHEA%3A77223","gentamicin X2 + methylcob(III)alamin + S-adenosyl-L-methionine = geneticin + cob(III)alamin + 5'-deoxyadenosine + L-methionine"],["RHEA%3A81891","N-acetyl-demethyl-L-phosphinothricin + methylcob(III)alamin + S-adenosyl-L-methionine = N-acetyl-L-phosphinothricin + cob(III)alamin + 5'-deoxyadenosine + L-methionine"]],"b":[["MEDIUM_for_SM250.yaml","medium_for_sm250"],["Medium_YCFAGSC.yaml","medium_ycfagsc"],["Medium_for_Freshwater_Flexibacteria.yaml","medium_for_freshwater_flexibacteria"],["Standard_PETC_medium.yaml","standard_petc_medium"],["YCFAG_medium.yaml","ycfag_medium"]]},{"id":"CHEBI:17191","l":"L-isoleucine","na":4,"nb":65,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.26","The Branched Chain Amino Acid:Cation Symporter (LIVCS) Family"],["proteintraitsmech%3ABIOLIP_ILE","ILE-binding site"]],"b":[["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["CTM_MEDIUM.yaml","ctm_medium"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MCD_Medium.yaml","mcd_medium"]]},{"id":"CHEBI:17879","l":"4-hydroxybenzoate","na":57,"nb":4,"a":[["EC%3A1.13.11.41","2,4'-dihydroxyacetophenone dioxygenase"],["EC%3A1.14.13.2","4-hydroxybenzoate 3-monooxygenase"],["EC%3A1.14.13.33","4-hydroxybenzoate 3-monooxygenase [NAD(P)H]"],["EC%3A1.14.13.64","4-hydroxybenzoate 1-hydroxylase"],["EC%3A1.14.14.92","benzoate 4-monooxygenase"],["EC%3A1.14.19.55","4-hydroxybenzoate brominase (decarboxylating)"]],"b":[["DIETHYL_PHOSPHONATE_MEDIUM.yaml","diethyl_phosphonate_medium"],["defined_freshwater_medium_cocl2__140b53e4.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__7cf7eff3.yaml","defined_freshwater_medium_coso4"],["nutrient_medium_p_hydroxybenzoate.yaml","nutrient_medium_p_hydroxybenzoate"]]},{"id":"CHEBI:16870","l":"choline alfoscerate","na":48,"nb":4,"a":[["EC%3A3.1.1.5","lysophospholipase"],["EC%3A3.1.4.2","glycerophosphocholine phosphodiesterase"],["EC%3A3.1.4.38","glycerophosphocholine cholinephosphodiesterase"],["EC%3A3.3.2.2","lysoplasmalogenase"],["RHEA%3A40835","1,2-di-(9Z-octadecenoyl)-sn-glycero-3-phosphocholine + 2 H2O = sn-glycerol 3-phosphocholine + 2 (9Z)-octadecenoate + 2 H(+)"],["RHEA%3A40975","1,2-dihexadecanoyl-sn-glycero-3-phosphocholine + 2 H2O = sn-glycerol 3-phosphocholine + 2 hexadecanoate + 2 H(+)"]],"b":[["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:18050","l":"L-glutamine","na":4,"nb":42,"a":[["MCSA%3A596","deuterolysin"],["MCSA%3A477","picornain 3C"],["MCSA%3A763","picornain 3C"],["proteintraitsmech%3ABIOLIP_GLN","GLN-binding site"]],"b":[["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"],["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"],["GLUTAMINE_MEDIUM.yaml","glutamine_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"]]},{"id":"CHEBI:17115","l":"L-serine","na":4,"nb":41,"a":[["MCSA%3A609","alpha-lytic endopeptidase"],["MCSA%3A238","assemblin"],["MCSA%3A688","classical-complement-pathway C3/C5 convertase"],["proteintraitsmech%3ABIOLIP_SER","SER-binding site"]],"b":[["AMINOMONAS_MEDIUM.yaml","aminomonas_medium"],["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"]]},{"id":"CHEBI:17925","l":"alpha-D-glucose","na":35,"nb":4,"a":[["EC%3A2.4.1.231","alpha,alpha-trehalose phosphorylase (configuration-retaining)"],["EC%3A3.1.3.58","sugar-terminal-phosphatase"],["EC%3A3.1.3.9","glucose-6-phosphatase"],["EC%3A3.2.1.10","oligo-1,6-glucosidase"],["EC%3A3.2.1.219","palatinase"],["EC%3A3.2.1.28","alpha,alpha-trehalase"]],"b":[["CDMM.yaml","cdmm"],["MDM.yaml","mdm"],["MM3.yaml","mm3"],["tsb_glucose_medium.yaml","tsb_glucose_medium"]]},{"id":"CHEBI:28869","l":"menadione","na":4,"nb":34,"a":[["RHEA%3A35611","menadiol + 2 O2 = menadione + 2 superoxide + 2 H(+)"],["RHEA%3A69695","menadione + NADH + H(+) = menadiol + NAD(+)"],["RHEA%3A63492","menadione + NADPH + H(+) = menadiol + NADP(+)"],["proteintraitsmech%3ABIOLIP_VK3","VK3-binding site"]],"b":[["ABB.yaml","ABB"],["ACY.yaml","ACY"],["BGDM.yaml","bgdm"],["BHIS.yaml","bhis"],["BHIS_K3.yaml","BHIS_K3"],["BHIS_K3_noGlucose.yaml","BHIS_K3_noGlucose"]]},{"id":"CHEBI:15882","l":"phenol","na":31,"nb":4,"a":[["EC%3A1.14.13.244","phenol 2-monooxygenase (NADH)"],["EC%3A1.14.13.7","phenol 2-monooxygenase (NADPH)"],["EC%3A1.14.14.20","phenol 2-monooxygenase (FADH2)"],["EC%3A2.1.1.25","phenol O-methyltransferase"],["EC%3A2.4.2.55","nicotinate D-ribonucleotide:phenol phospho-D-ribosyltransferase"],["EC%3A2.7.1.238","phenol phosphorylase"]],"b":[["MEDIUM_FOR_BACILLUS_STEAROTHERMOPHILUS.yaml","medium_for_bacillus_stearothermophilus"],["anaerobic_bicarbonate_buffered_medium_with_phenol.yaml","anaerobic_bicarbonate_buffered_medium_with_phenol"],["defined_freshwater_medium_cocl2__ac506908.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__0930ab53.yaml","defined_freshwater_medium_coso4"]]},{"id":"CHEBI:28262","l":"dimethyl sulfoxide","na":14,"nb":4,"a":[["EC%3A1.14.13.245","assimilatory dimethylsulfide S-monooxygenase"],["EC%3A1.8.1.17","dimethylsulfone reductase"],["EC%3A1.8.2.4","dimethyl sulfide:cytochrome c2 reductase"],["EC%3A1.8.5.3","respiratory dimethylsulfoxide reductase"],["RHEA%3A30587","2-demethylmenaquinol-8 + dimethyl sulfoxide = 2-demethylmenaquinone-8 + dimethyl sulfide + H2O"],["RHEA%3A30227","2 Fe(III)-[cytochrome c2] + dimethyl sulfide + H2O = 2 Fe(II)-[cytochrome c2] + dimethyl sulfoxide + 2 H(+)"]],"b":[["MINERAL_MEDIUM_WITH_DIBENZOFURAN.yaml","mineral_medium_with_dibenzofuran"],["SYNBIOBACTERIUM_KA13_MEDIUM.yaml","synbiobacterium_ka13_medium"],["mineral_medium_with_2_chlorobenzoate.yaml","mineral_medium_with_2_chlorobenzoate"],["synbiobacterium_ka13_medium__e7f47e80.yaml","synbiobacterium_ka13_medium"]]},{"id":"CHEBI:16856","l":"glutathione","na":4,"nb":11,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16856","requires glutathione"],["MCSA%3A359","lactoglutathione lyase"],["MCSA%3A32","lactoylglutathione lyase"],["proteintraitsmech%3ABIOLIP_GSH","GSH-binding site"]],"b":[["CDM_LP.yaml","cdm_lp"],["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"],["Modified_D58_medium.yaml","modified_d58_medium"],["SULFOBACILLUS_DISULFIDOOXIDANS_MEDIUM.yaml","sulfobacillus_disulfidooxidans_medium"],["clostridium_thermocellum_medium__d9fc1f82.yaml","clostridium_thermocellum_medium"]]},{"id":"CHEBI:9532","l":"thiamine(1+) diphosphate","na":8,"nb":4,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_9532","requires thiamine(1+) diphosphate"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["CTM_MEDIUM.yaml","ctm_medium"],["MODIFIED_NOS_MEDIUM.yaml","modified_nos_medium"],["TREPONEMA_ISOPTEROCOLA_MEDIUM.yaml","treponema_isopterocola_medium"],["glucose_sulfide_medium__486fbf43.yaml","glucose_sulfide_medium"]]},{"id":"CHEBI:17015","l":"riboflavin","na":3,"nb":1290,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17015","requires riboflavin"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_RBF","RBF-binding site"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"]]},{"id":"CHEBI:27470","l":"folic acid","na":3,"nb":1262,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_27470","requires folic acid"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["proteintraitsmech%3ABIOLIP_FOL","FOL-binding site"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2ASW.yaml","2asw"]]},{"id":"CHEBI:16113","l":"cholesterol","na":82,"nb":3,"a":[["EC%3A1.1.3.6","cholesterol oxidase"],["EC%3A1.14.14.23","cholesterol 7alpha-monooxygenase"],["EC%3A1.14.14.25","cholesterol 24-hydroxylase"],["EC%3A1.14.15.6","cholesterol monooxygenase (side-chain-cleaving)"],["EC%3A1.14.19.21","cholesterol 7-desaturase"],["EC%3A1.14.99.38","cholesterol 25-monooxygenase"]],"b":[["CDM_LP.yaml","cdm_lp"],["Nematode_growth_medium_agar.yaml","Nematode growth medium agar"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:16015","l":"L-glutamic acid","na":3,"nb":73,"a":[["MCSA%3A747","gamma-glutamyl hydrolase"],["proteintraitsmech%3ABIOLIP_GGL","GGL-binding site"],["proteintraitsmech%3ABIOLIP_GLU","GLU-binding site"]],"b":[["7H9.yaml","7H9"],["BACTO_MIDDLEBROOK_7H9_BROTH.yaml","bacto_middlebrook_7h9_broth"],["BGDM.yaml","bgdm"],["Bacillus_Medium.yaml","bacillus_medium"],["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"]]},{"id":"CHEBI:16643","l":"L-methionine","na":3,"nb":68,"a":[["MCSA%3A917","methionyl aminopeptidase"],["MCSA%3A965","Viperin"],["proteintraitsmech%3ABIOLIP_MET","MET-binding site"]],"b":[["Basic_mineral_medium.yaml","basic_mineral_medium"],["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MDM.yaml","mdm"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"]]},{"id":"CHEBI:17295","l":"L-phenylalanine","na":3,"nb":63,"a":[["MCSA%3A595","scytalidopepsin B"],["MCSA%3A598","streptopain"],["proteintraitsmech%3ABIOLIP_PHE","PHE-binding site"]],"b":[["BGDM.yaml","bgdm"],["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["CTM_MEDIUM.yaml","ctm_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["M9_minimal_media_aromix_noCarbon.yaml","M9 minimal media aromix noCarbon"]]},{"id":"CHEBI:16467","l":"L-arginine","na":3,"nb":51,"a":[["MCSA%3A688","classical-complement-pathway C3/C5 convertase"],["MCSA%3A425","plasmin"],["MCSA%3A798","t-plasminogen activator"]],"b":[["ABB.yaml","ABB"],["ACY.yaml","ACY"],["CAENICOLA_MOBILE_MEDIUM.yaml","caenicola_mobile_medium"],["CMM.yaml","cmm"],["CTM_MEDIUM.yaml","ctm_medium"],["Chamberlain_CDM.yaml","chamberlain_cdm"]]},{"id":"CHEBI:17203","l":"L-proline","na":3,"nb":48,"a":[["MCSA%3A403","astacin"],["MCSA%3A379","Xaa-Pro aminopeptidase"],["proteintraitsmech%3ABIOLIP_PRO","PRO-binding site"]],"b":[["CDM_LP.yaml","cdm_lp"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MDM.yaml","mdm"],["MEIOTHERMUS_MEDIUM_R8.yaml","meiothermus_medium_r8"]]},{"id":"CHEBI:18135","l":"catechol","na":47,"nb":3,"a":[["EC%3A1.1.3.14","catechol oxidase (dimerizing)"],["EC%3A1.10.3.1","catechol oxidase"],["EC%3A1.13.11.1","catechol 1,2-dioxygenase"],["EC%3A1.13.11.2","catechol 2,3-dioxygenase"],["EC%3A1.14.12.1","anthranilate 1,2-dioxygenase (deaminating, decarboxylating)"],["EC%3A1.14.12.13","2-halobenzoate 1,2-dioxygenase"]],"b":[["DESULFOBACTERIUM_CATECHOLICUM_MEDIUM.yaml","desulfobacterium_catecholicum_medium"],["DESULFOCASTAENA_MEDIUM.yaml","desulfocastaena_medium"],["desulfobacterium_catecholicum_medium__b7c6198a.yaml","desulfobacterium_catecholicum_medium"]]},{"id":"CHEBI:17053","l":"L-aspartic acid","na":3,"nb":21,"a":[["MCSA%3A718","caspase-1"],["MCSA%3A599","dipeptidase E"],["proteintraitsmech%3ABIOLIP_ASP","ASP-binding site"]],"b":[["CTM_MEDIUM.yaml","ctm_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["McAA_formate_No_pABA.yaml","McAA formate No pABA"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"]]},{"id":"CHEBI:15595","l":"malate(2-)","na":15,"nb":3,"a":[["RHEA%3A72015","malate + 6 malonyl-CoA + acetyl-CoA + 2 AH2 + 2 S-adenosyl-L-methionine + 5 NADPH + 9 H(+) = trihazone A + 2 A + 2 S-adenosyl-L-homocysteine + 6 CO2 + 5 NADP(+) + 7 CoA + 6 H2O"],["RHEA%3A72295","malate(out) + 3 Na(+)(out) = malate(in) + 3 Na(+)(in)"],["TCDB%3A2.A.24","The 2-Hydroxycarboxylate Transporter (2-HCT) Family"],["TCDB%3A2.A.85","The Aromatic Acid Exporter (ArAE) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.69","The Auxin Efflux Carrier (AEC) Family"]],"b":[["HETEROTROPHIC_MEDIUM_H3P.yaml","heterotrophic_medium_h3p"],["diazotrophic_medium_rba.yaml","diazotrophic_medium_rba"],["rhodobacter_marinus_medium_nkpb.yaml","rhodobacter_marinus_medium_nkpb"]]},{"id":"CHEBI:15846","l":"NAD(+)","na":14,"nb":3,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15846","requires NAD+"],["ARO%3A3002846","arr-1"],["ARO%3A3002847","arr-2"],["ARO%3A3002848","arr-3"],["ARO%3A3002849","arr-4"],["ARO%3A3002850","arr-5"]],"b":[["Vulcanimicrobium_alpinus_medium.yaml","vulcanimicrobium_alpinus_medium"],["ctm_medium__057c0b18.yaml","ctm_medium"],["treponema_isopterocola_medium__e7b07692.yaml","treponema_isopterocola_medium"]]},{"id":"CHEBI:18237","l":"glutamic acid","na":3,"nb":13,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["ACANTHAMOEBA_MEDIUM.yaml","acanthamoeba_medium"],["HALISCOMENOBACTER_MEDIUM.yaml","haliscomenobacter_medium"],["LENTIBACILLUS_MEDIUM.yaml","lentibacillus_medium"],["McAA_formate_No_pABA.yaml","McAA formate No pABA"],["NATRONOBACTERIUM_MEDIUM.yaml","natronobacterium_medium"],["PSA_medium.yaml","psa_medium"]]},{"id":"CHEBI:30911","l":"glucitol","na":3,"nb":11,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A4.A.4","The PTS Glucitol (Gut) Family"]],"b":[["M1D_Medium.yaml","m1d_medium"],["Modified_Rhodobacter_Spaeroides_Medium.yaml","modified_rhodobacter_spaeroides_medium"],["RHODOBACTER_SPHAEROIDES_MEDIUM.yaml","rhodobacter_sphaeroides_medium"],["RHODOBIUM_GOKURNUM_MEDIUM.yaml","rhodobium_gokurnum_medium"],["RHODOVULUM_MARINUM_MEDIUM.yaml","rhodovulum_marinum_medium"],["RHODOVULUM_VISAKHUM_MEDIUM.yaml","rhodovulum_visakhum_medium"]]},{"id":"CHEBI:22599","l":"arabinose","na":5,"nb":3,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.B.142","The Integral membrane Glycosyltransferase family 39 (GT39) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A9.B.28","The Putative Essential Component of the MusEFGKI ABC Transporter, MusI (MusI) Family"],["TCDB%3A2.A.21","The Solute:Sodium Symporter (SSS) Family"]],"b":[["MAG_Modified_arabinose_gluconate_medium.yaml","mag_modified_arabinose_gluconate_medium"],["mrs_medium__1506cddd.yaml","mrs_medium"],["togo_medium_m1594.yaml","togo_medium_m1594"]]},{"id":"CHEBI:16238","l":"FAD","na":4,"nb":3,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16238","requires FAD"],["MCSA%3A968","aldehyde oxidase"],["MCSA%3A969","Phytoene desaturase (lycopene-forming)"],["proteintraitsmech%3ABIOLIP_FAD","FAD-binding site"]],"b":[["HELMUTKOENIGIA_MEDIUM.yaml","helmutkoenigia_medium"],["TREPONEMA_ISOPTEROCOLA_MEDIUM.yaml","treponema_isopterocola_medium"],["treponema_isopterocola_medium__e7b07692.yaml","treponema_isopterocola_medium"]]},{"id":"CHEBI:16482","l":"naphthalene","na":3,"nb":3,"a":[["EC%3A1.14.12.12","naphthalene 1,2-dioxygenase"],["RHEA%3A19173","naphthalene + NADH + O2 + H(+) = (1R,2S)-1,2-dihydronaphthalene-1,2-diol + NAD(+)"],["MCSA%3A130","naphthalene 1,2-dioxygenase"]],"b":[["DESULFOBACTERIUM_NAPHTHALENIVOLANS_MEDIUM.yaml","desulfobacterium_naphthalenivolans_medium"],["LB_Medium_with_50_ppm_Naphthalene.yaml","lb_medium_with_50_ppm_naphthalene"],["desulfobacterium_naphthalenivolans_medium__c96254de.yaml","desulfobacterium_naphthalenivolans_medium"]]},{"id":"CHEBI:32816","l":"pyruvic acid","na":3,"nb":3,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_32816","requires pyruvic acid"],["MCSA%3A449","cystathionine beta-lyase"],["proteintraitsmech%3ABIOLIP_PYR","PYR-binding site"]],"b":[["ALGORIPHAGUS_ALKALIPHILUS_MEDIUM.yaml","algoriphagus_alkaliphilus_medium"],["modified_mrs.yaml","modified_mrs"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:15956","l":"biotin","na":2,"nb":1645,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15956","requires biotin"],["proteintraitsmech%3ABIOLIP_BTN","BTN-binding site"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2ASW.yaml","2asw"]]},{"id":"CHEBI:15940","l":"nicotinic acid","na":2,"nb":1433,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15940","requires nicotinic acid"],["proteintraitsmech%3ABIOLIP_NIO","NIO-binding site"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2ASW.yaml","2asw"],["2asw__59e92e67.yaml","2asw"]]},{"id":"CHEBI:30753","l":"4-aminobenzoic acid","na":2,"nb":1350,"a":[["TCDB%3A2.A.71","The Folate-Biopterin Transporter (FBT) Family"],["proteintraitsmech%3ABIOLIP_PAB","PAB-binding site"]],"b":[["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["A1_MARINE_MEDIUM.yaml","a1_marine_medium"]]},{"id":"CHEBI:17883","l":"hydrogen chloride","na":2,"nb":574,"a":[["MCSA%3A24","4-chlorobenzoyl-CoA dehalogenase"],["MCSA%3A348","chloromuconate cycloisomerase"]],"b":[["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_tryptic_soy_broth_anaerobe.yaml","1_2_tryptic_soy_broth_anaerobe"],["1_2_tryptic_soy_broth_anaerobic.yaml","1_2_tryptic_soy_broth_anaerobic"],["5_sorbitol_medium__c395a410.yaml","5_sorbitol_medium"],["ACETIVIBRIO_ALKALICELLULOSI_MEDIUM.yaml","acetivibrio_alkalicellulosi_medium"]]},{"id":"CHEBI:4735","l":"ethylenediaminetetraacetic acid","na":2,"nb":237,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["proteintraitsmech%3ABIOLIP_EDT","EDT-binding site"]],"b":[["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["ACIDOSOMA_MEDIUM.yaml","acidosoma_medium"],["ALCALIGENES_XYLOSOXYDANS_MEDIUM_WITH_BENZOATE.yaml","alcaligenes_xylosoxydans_medium_with_benzoate"],["ALLOCATENOCOCCUS_MEDIUM.yaml","allocatenococcus_medium"],["ANB_aerobic.yaml","anb_aerobic"],["AQUASPIRILLUM_MEDIUM.yaml","aquaspirillum_medium"]]},{"id":"CHEBI:57912","l":"L-tryptophan zwitterion","na":103,"nb":2,"a":[["EC%3A1.11.2.8","L-tryptophan 5-peroxygenase"],["EC%3A1.13.11.11","tryptophan 2,3-dioxygenase"],["EC%3A1.13.11.52","indoleamine 2,3-dioxygenase"],["EC%3A1.13.12.3","tryptophan 2-monooxygenase"],["EC%3A1.13.99.3","tryptophan 2'-dioxygenase"],["EC%3A1.14.14.156","tryptophan N-monooxygenase"]],"b":[["acidaminococcus_fermentans_medium__d515a0ab.yaml","acidaminococcus_fermentans_medium"],["togo_medium_m1435.yaml","togo_medium_m1435"]]},{"id":"CHEBI:15354","l":"choline","na":78,"nb":2,"a":[["EC%3A1.1.3.17","choline oxidase"],["EC%3A1.1.99.1","choline dehydrogenase"],["EC%3A1.14.15.7","choline monooxygenase"],["EC%3A2.3.1.6","choline O-acetyltransferase"],["EC%3A2.3.1.91","sinapoylglucose--choline O-sinapoyltransferase"],["EC%3A2.7.1.32","choline kinase"]],"b":[["CDM_LP.yaml","cdm_lp"],["HYPHOMICROBIUM_METHYLOVORUM_MEDIUM.yaml","hyphomicrobium_methylovorum_medium"]]},{"id":"CHEBI:17196","l":"L-asparagine","na":2,"nb":74,"a":[["MCSA%3A596","deuterolysin"],["proteintraitsmech%3ABIOLIP_ASN","ASN-binding site"]],"b":[["Alkali_B_medium.yaml","alkali_b_medium"],["CELLULOSE_AGAR.yaml","cellulose_agar"],["CMM.yaml","cmm"],["CTM_MEDIUM.yaml","ctm_medium"],["Glucose_Asparagine_Agar.yaml","glucose_asparagine_agar"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"]]},{"id":"CHEBI:16414","l":"L-valine","na":2,"nb":60,"a":[["MCSA%3A798","t-plasminogen activator"],["proteintraitsmech%3ABIOLIP_VAL","VAL-binding site"]],"b":[["CDM_LP.yaml","cdm_lp"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MCD_Medium.yaml","mcd_medium"],["MDM.yaml","mdm"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"]]},{"id":"CHEBI:326268","l":"1,4-butanediammonium","na":51,"nb":2,"a":[["EC%3A1.14.13.252","putrescine N-hydroxylase"],["EC%3A1.4.3.10","putrescine oxidase"],["EC%3A1.5.1.43","carboxynorspermidine synthase"],["EC%3A1.5.3.13","N(1)-acetylpolyamine oxidase"],["EC%3A1.5.3.17","non-specific polyamine oxidase"],["EC%3A2.1.1.53","putrescine N-methyltransferase"]],"b":[["veillonella_medium__a8952478.yaml","veillonella_medium"],["veillonella_medium__e057c5de.yaml","veillonella_medium"]]},{"id":"CHEBI:17905","l":"coenzyme M","na":2,"nb":40,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17905","requires coenzyme M"],["proteintraitsmech%3ABIOLIP_COM","COM-binding site"]],"b":[["ARCHAEOGLOBUS_INFECTUS_MEDIUM.yaml","archaeoglobus_infectus_medium"],["AROMATOLEUM_MEDIUM.yaml","aromatoleum_medium"],["BACILLUS_INFERNUS_MEDIUM.yaml","bacillus_infernus_medium"],["METHANOHALOPHILUS_PROFUNDI_MEDIUM.yaml","methanohalophilus_profundi_medium"],["METHANOMICROCOCCUS_MEDIUM.yaml","methanomicrococcus_medium"],["METHANONATRONARCHAEUM_MEDIUM.yaml","methanonatronarchaeum_medium"]]},{"id":"CHEBI:18320","l":"1,4-dithiothreitol","na":2,"nb":38,"a":[["EC%3A1.17.4.5","vitamin-K-epoxide reductase (warfarin-insensitive)"],["RHEA%3A21560","3-hydroxy-2-methyl-3-phytyl-2,3-dihydro-1,4-naphthoquinone + oxidized dithiothreitol = 1,4-dithiothreitol + 2,3-epoxyphylloquinone"]],"b":[["1_2_tryptic_soy_broth_anaerobe.yaml","1_2_tryptic_soy_broth_anaerobe"],["1_2_tryptic_soy_broth_anaerobic__d70593aa.yaml","1_2_tryptic_soy_broth_anaerobic"],["ARCHAEOGLOBUS_INFECTUS_MEDIUM.yaml","archaeoglobus_infectus_medium"],["ARCHAEOGLOBUS_NEPTUNIUS_MEDIUM.yaml","archaeoglobus_neptunius_medium"],["ARCHAEOGLOBUS_SULFATICALLIDUS_MEDIUM.yaml","archaeoglobus_sulfaticallidus_medium"],["CELLULOSILYTICUM_MEDIUM.yaml","cellulosilyticum_medium"]]},{"id":"CHEBI:17895","l":"L-tyrosine","na":2,"nb":29,"a":[["MCSA%3A638","neurolysin"],["proteintraitsmech%3ABIOLIP_TYR","TYR-binding site"]],"b":[["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"],["McAA_formate_No_pABA.yaml","McAA formate No pABA"],["NLDM_defined.yaml","NLDM_defined"]]},{"id":"CHEBI:30314","l":"(R)-lipoic acid","na":2,"nb":29,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_30314","requires (R)-lipoic acid"],["proteintraitsmech%3ABIOLIP_LPA","LPA-binding site"]],"b":[["A1_MEDIUM.yaml","a1_medium"],["CLOSTRIDIUM_THERMOCELLUM_MEDIUM.yaml","clostridium_thermocellum_medium"],["Chemically_defined_medium.yaml","chemically_defined_medium"],["Clostridium_aldrichii_medium.yaml","clostridium_aldrichii_medium"],["DESULFOMONILE_MEDIUM.yaml","desulfomonile_medium"],["JCM_medium_242.yaml","jcm_medium_242"]]},{"id":"CHEBI:28757","l":"fructose","na":2,"nb":27,"a":[["GO%3A0070061","fructose binding"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["ACETOBACTERIUM_MEDIUM.yaml","acetobacterium_medium"],["AQUINCOLA_MEDIUM.yaml","aquincola_medium"],["ARTFICIAL_FRESHWATER_MEDIUM_I.yaml","artficial_freshwater_medium_i"],["CLOSTRIDIUM_ACETATE_1_MEDIUM.yaml","clostridium_acetate_1_medium"],["DESULFOSPOROSINUS_ACIDOPHILUS_MEDIUM.yaml","desulfosporosinus_acidophilus_medium"],["EUBACTERIUM_AGGREGANS_MEDIUM.yaml","eubacterium_aggregans_medium"]]},{"id":"CHEBI:15366","l":"acetic acid","na":2,"nb":26,"a":[["MCSA%3A431","acetylxylan esterase"],["MCSA%3A996","Peptidoglycan-N-acetylglucosamine deacetylase Bc1960"]],"b":[["ACY.yaml","ACY"],["AE_BROTH.yaml","ae_broth"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Acetobacter_Europaeus_Medium.yaml","acetobacter_europaeus_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"]]},{"id":"CHEBI:29016","l":"arginine","na":2,"nb":26,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["ACIDAMINOCOCCUS_FERMENTANS_MEDIUM.yaml","acidaminococcus_fermentans_medium"],["EUBACTERIUM_LENTUM_MEDIUM.yaml","eubacterium_lentum_medium"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["MS15_Medium.yaml","ms15_medium"]]},{"id":"CHEBI:30772","l":"butyric acid","na":2,"nb":26,"a":[["MCSA%3A900","para-nitrobenzyl esterase"],["proteintraitsmech%3ABIOLIP_BUA","BUA-binding site"]],"b":[["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"],["Mega.yaml","Mega"],["RUMEN_BACTERIA_MEDIUM.yaml","rumen_bacteria_medium"],["SELENOMONAS_WG_MEDIUM.yaml","selenomonas_wg_medium"]]},{"id":"CHEBI:15824","l":"D-fructose","na":2,"nb":25,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"]],"b":[["ACETOBACTERIUM_FIMETARIUM_MEDIUM.yaml","acetobacterium_fimetarium_medium"],["ACETOBACTERIUM_TUNDRAE_MEDIUM.yaml","acetobacterium_tundrae_medium"],["ANAEROCOLUMNA_MEDIUM.yaml","anaerocolumna_medium"],["CLOSTRIDIUM_FORMICACETICUM_MEDIUM.yaml","clostridium_formicaceticum_medium"],["CLOSTRIDIUM_LJUNGDAHLII_MEDIUM.yaml","clostridium_ljungdahlii_medium"],["MOORELLA_THERMOACETICA_MEDIUM.yaml","moorella_thermoacetica_medium"]]},{"id":"CHEBI:16410","l":"pyridoxamine","na":2,"nb":21,"a":[["GO%3A0070281","pyridoxamine binding"],["proteintraitsmech%3ABIOLIP_PXM","PXM-binding site"]],"b":[["HALORHODOSPIRA_MEDIUM.yaml","halorhodospira_medium"],["MCD_Medium.yaml","mcd_medium"],["MEDIUM_FOR_ROSEOSPIRA.yaml","medium_for_roseospira"],["MEDIUM_WITH_EDTA_AS_CARBON_SOURCE.yaml","medium_with_edta_as_carbon_source"],["MINERAL_MEDIUM_WITH_SULFOBENZOIC_ACID.yaml","mineral_medium_with_sulfobenzoic_acid"],["MS10R_Medium.yaml","ms10r_medium"]]},{"id":"CHEBI:17924","l":"D-glucitol","na":20,"nb":2,"a":[["EC%3A1.1.1.14","L-iditol 2-dehydrogenase"],["EC%3A1.1.1.289","sorbose reductase"],["EC%3A1.1.3.40","D-mannitol oxidase"],["EC%3A1.1.99.21","D-sorbitol dehydrogenase (acceptor)"],["EC%3A1.1.99.28","glucose-fructose oxidoreductase"],["EC%3A2.7.1.198","protein-N(pi)-phosphohistidine--D-sorbitol phosphotransferase"]],"b":[["5_sorbitol_medium.yaml","5_sorbitol_medium"],["5_sorbitol_medium__c395a410.yaml","5_sorbitol_medium"]]},{"id":"CHEBI:15741","l":"succinic acid","na":2,"nb":16,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_SIN","SIN-binding site"]],"b":[["AQUASPIRILLUM_MEDIUM_II.yaml","aquaspirillum_medium_ii"],["DESULFUROBACTERIUM_MEDIUM.yaml","desulfurobacterium_medium"],["MAGNETOSPIRILLUM_MEDIUM.yaml","magnetospirillum_medium"],["MG_minimal_media.yaml","MG minimal media"],["MG_minimal_media_noIron.yaml","MG minimal media noIron"],["PETROBACTER_SUCCINIMANDENS_MEDIUM.yaml","petrobacter_succinimandens_medium"]]},{"id":"CHEBI:16450","l":"","na":14,"nb":2,"a":[["EC%3A1.14.11.10","pyrimidine-deoxynucleoside 1'-dioxygenase"],["EC%3A1.14.11.3","pyrimidine-deoxynucleoside 2'-dioxygenase"],["EC%3A2.4.2.2","pyrimidine-nucleoside phosphorylase"],["EC%3A3.5.4.5","cytidine deaminase"],["RHEA%3A13433","2'-deoxycytidine + H2O + H(+) = 2'-deoxyuridine + NH4(+)"],["RHEA%3A23316","2'-deoxyuridine + 2-oxoglutarate + O2 = 2-deoxy-D-ribono-1,4-lactone + uracil + succinate + CO2"]],"b":[["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"],["Soil_Defined_Media_%28SDM%29.yaml","Soil Defined Media (SDM)"]]},{"id":"CHEBI:17045","l":"dinitrogen oxide","na":13,"nb":2,"a":[["EC%3A1.7.1.14","nitric oxide reductase [NAD(P)(+), nitrous oxide-forming]"],["EC%3A1.7.2.4","nitrous-oxide reductase"],["EC%3A1.7.2.5","nitric-oxide reductase (cytochrome c)"],["EC%3A1.7.5.2","nitric oxide reductase (menaquinol)"],["RHEA%3A30215","a menaquinol + 2 nitric oxide = nitrous oxide + a menaquinone + H2O"],["RHEA%3A43108","N2 + 2 Fe(III)-[cytochrome c] + H2O = nitrous oxide + 2 Fe(II)-[cytochrome c] + 2 H(+)"]],"b":[["PM_N2O.yaml","PM N2O"],["PM_argon75_N2O25.yaml","PM argon75 N2O25"]]},{"id":"CHEBI:29073","l":"L-ascorbic acid","na":2,"nb":13,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29073","requires L-ascorbic acid"],["proteintraitsmech%3ABIOLIP_ASC","ASC-binding site"]],"b":[["CTM_MEDIUM.yaml","ctm_medium"],["MG_minimal_media.yaml","MG minimal media"],["MG_minimal_media_noCarbon.yaml","MG minimal media noCarbon"],["MG_minimal_media_noIron.yaml","MG minimal media noIron"],["THERMODESULFOVIBRIO_MEDIUM_FOR_N1.yaml","thermodesulfovibrio_medium_for_n1"],["THERMODESULFOVIBRIO_YELLOWSTONII_MEDIUM.yaml","thermodesulfovibrio_yellowstonii_medium"]]},{"id":"CHEBI:28077","l":"rifampicin","na":12,"nb":2,"a":[["ARO%3A3007073","Bacillus subtilis rpoB mutants conferring resistance to rifampin"],["ARO%3A3004480","Bifidobacterium adolescentis rpoB mutants conferring resistance to rifampicin"],["ARO%3A3004563","Clostridioides difficile rpoB with mutation conferring resistance to rifampicin"],["ARO%3A3003288","Escherichia coli rpoB mutants conferring resistance to rifampicin"],["ARO%3A3007051","Helicobacter pylori rpoB mutation conferring resistance to rifampicin"],["ARO%3A3003284","Mycobacterium leprae rpoB mutations conferring resistance to rifampicin"]],"b":[["lb_luria_bertani_agar_with_kanamycin_and_rifampicin__0472ff8f.yaml","lb_luria_bertani_agar_with_kanamycin_and_rifampicin"],["luria_bertani_lb_antibiotics.yaml","luria_bertani_lb_antibiotics"]]},{"id":"CHEBI:36218","l":"beta-lactose","na":2,"nb":9,"a":[["RHEA%3A28659","beta-lactose + H2O = beta-D-galactose + beta-D-glucose"],["RHEA%3A59352","beta-lactose + O2 = lactobiono-1,5-lactone + H2O2"]],"b":[["ALKALINE_LACTOSE_AGAR.yaml","alkaline_lactose_agar"],["LACTOBACILLUS_MEDIUM_I.yaml","lactobacillus_medium_i"],["M17_medium_supplemented_with_20_g_L_of_lactose.yaml","m17_medium_supplemented_with_20_g_l_of_lactose"],["ZMB_Gut.yaml","ZMB Gut"],["gam_broth_with_1_lactose.yaml","gam_broth_with_1_lactose"],["m17_broth_containing_lactose.yaml","m17_broth_containing_lactose"]]},{"id":"CHEBI:18403","l":"L-arabinitol","na":8,"nb":2,"a":[["EC%3A1.1.1.12","L-arabinitol 4-dehydrogenase"],["EC%3A1.1.1.13","L-arabinitol 2-dehydrogenase"],["EC%3A1.1.1.21","aldose reductase"],["RHEA%3A25225","L-arabinitol + NAD(+) = L-arabinose + NADH + H(+)"],["RHEA%3A21356","L-arabinitol + NAD(+) = L-ribulose + NADH + H(+)"],["RHEA%3A16381","L-arabinitol + NAD(+) = L-xylulose + NADH + H(+)"]],"b":[["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"],["Soil_Defined_Media_%28SDM%29.yaml","Soil Defined Media (SDM)"]]},{"id":"CHEBI:17824","l":"propan-2-ol","na":7,"nb":2,"a":[["EC%3A1.1.1.80","isopropanol dehydrogenase (NADP(+))"],["EC%3A1.14.13.227","propane 2-monooxygenase"],["RHEA%3A62196","propan-2-ol + 2 Fe(III)-[cytochrome c] = acetone + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A41984","propan-2-ol + NAD(+) = acetone + NADH + H(+)"],["RHEA%3A21792","propan-2-ol + NADP(+) = acetone + NADPH + H(+)"],["RHEA%3A49992","propane + NADH + O2 + H(+) = propan-2-ol + NAD(+) + H2O"]],"b":[["METHANOGENIUM_CV_MEDIUM.yaml","methanogenium_cv_medium"],["METHANOSPIRILLUM_SK_MEDIUM.yaml","methanospirillum_sk_medium"]]},{"id":"CHEBI:45296","l":"hexadecane","na":2,"nb":7,"a":[["RHEA%3A77375","heptadecanoate + hnu + H(+) = hexadecane + CO2"],["RHEA%3A76747","hexadecane + reduced [NADPH--hemoprotein reductase] + O2 = 9-hexadecanol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["FUNDIBACTER_JADENSIS_MEDIUM.yaml","fundibacter_jadensis_medium"],["MODIFIED_SEA_WATER_AGAR.yaml","modified_sea_water_agar"],["dehalobacter_restrictus_medium_tce.yaml","dehalobacter_restrictus_medium_tce"],["dehalobacter_restrictus_medium_tce__3ce89046.yaml","dehalobacter_restrictus_medium_tce"],["desulfuromonas_medium_tce.yaml","desulfuromonas_medium_tce"],["m9_with_1_0_glucose_and_40_emulsion.yaml","m9_with_1_0_glucose_and_40_emulsion"]]},{"id":"CHEBI:16196","l":"oleic acid","na":2,"nb":6,"a":[["TCDB%3A9.A.76","The Omega3 Fatty Acid Desaturase 3/Putative Transporter (FAD3) Family"],["proteintraitsmech%3ABIOLIP_OLA","OLA-binding site"]],"b":[["MIDDLEBROCK_7H11_AGAR.yaml","middlebrock_7h11_agar"],["MIDDLEBROOK_MEDIUM.yaml","middlebrook_medium"],["Middle_Brook_Medium.yaml","middle_brook_medium"],["Middlebrook_7H11_Agar.yaml","middlebrook_7h11_agar"],["middlebrook_7h11_agar_difco.yaml","middlebrook_7h11_agar_difco"],["modified_dixon_s_agar.yaml","modified_dixon_s_agar"]]},{"id":"CHEBI:27641","l":"cycloheximide","na":2,"nb":6,"a":[["RHEA%3A61936","cycloheximide(in) + ATP + H2O = cycloheximide(out) + ADP + phosphate + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["PPM.yaml","ppm"],["R2A_Kan50_Tween01_Cycloheximide200.yaml","R2A_Kan50_Tween01_Cycloheximide200"],["alkaliphiles_pirellula_medium_m1py.yaml","alkaliphiles_pirellula_medium_m1py"],["chlamydia_serpentis_poikilotherma_medium.yaml","chlamydia_serpentis_poikilotherma_medium"],["pirellula_medium_m31py.yaml","pirellula_medium_m31py"],["ppm__7a6a33ba.yaml","ppm"]]},{"id":"CHEBI:28053","l":"melibiose","na":6,"nb":2,"a":[["RHEA%3A28663","melibiose + H2O = D-galactose + D-glucose"],["RHEA%3A28855","melibiose(in) + H(+)(in) = melibiose(out) + H(+)(out)"],["RHEA%3A28847","melibiose(in) + Li(+)(in) = melibiose(out) + Li(+)(out)"],["RHEA%3A28851","melibiose(in) + Na(+)(in) = melibiose(out) + Na(+)(out)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["MCSA%3A913","alpha-galactosidase"]],"b":[["MP_AGAR.yaml","mp_agar"],["mp_agar__3414ec19.yaml","mp_agar"]]},{"id":"CHEBI:28997","l":"","na":6,"nb":2,"a":[["EC%3A3.5.4.4","adenosine deaminase"],["RHEA%3A28190","2'-deoxyadenosine + H2O + H(+) = 2'-deoxyinosine + NH4(+)"],["RHEA%3A29971","2'-deoxyinosine(in) + H(+)(in) = 2'-deoxyinosine(out) + H(+)(out)"],["RHEA%3A27750","2'-deoxyinosine + phosphate = 2-deoxy-alpha-D-ribose 1-phosphate + hypoxanthine"],["RHEA%3A29383","dIMP + H2O = 2'-deoxyinosine + phosphate"],["RHEA%3A69572","dIMP + inosine = 2'-deoxyinosine + IMP"]],"b":[["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"],["Soil_Defined_Media_%28SDM%29.yaml","Soil Defined Media (SDM)"]]},{"id":"CHEBI:15729","l":"L-ornithine","na":2,"nb":5,"a":[["MCSA%3A12","ornithine carbamoyltransferase"],["proteintraitsmech%3ABIOLIP_ORN","ORN-binding site"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:17300","l":"tetrachloroethene","na":2,"nb":5,"a":[["EC%3A1.21.99.5","tetrachloroethene reductive dehalogenase"],["RHEA%3A20353","trichloroethene + chloride + A + H(+) = tetrachloroethene + AH2"]],"b":[["MINERAL_SALTS_MEDIUM_WITH_TCE.yaml","mineral_salts_medium_with_tce"],["dehalobacter_restrictus_medium_tce.yaml","dehalobacter_restrictus_medium_tce"],["dehalobacter_restrictus_medium_tce__3ce89046.yaml","dehalobacter_restrictus_medium_tce"],["desulfuromonas_medium_tce.yaml","desulfuromonas_medium_tce"],["mineral_salts_medium_with_tce__be1bd293.yaml","mineral_salts_medium_with_tce"]]},{"id":"CHEBI:18101","l":"4-hydroxyphenylacetic acid","na":2,"nb":5,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_4HP","4HP-binding site"]],"b":[["ENDOMICROBIUM_PROAVITUM_RSA_MEDIUM.yaml","endomicrobium_proavitum_rsa_medium"],["MODIFIED_AM5_MEDIUM_2.yaml","modified_am5_medium_2"],["am5_medium_elusimicrobium_medium.yaml","am5_medium_elusimicrobium_medium"],["endomicrobium_proavitum_rsa_medium__51692939.yaml","endomicrobium_proavitum_rsa_medium"],["pjc_with_4_hpa.yaml","pjc_with_4_hpa"]]},{"id":"CHEBI:35899","l":"crotonate","na":5,"nb":2,"a":[["EC%3A1.3.1.31","2-enoate reductase"],["RHEA%3A74903","(2E)-2-butenoate + ATP + H(+) = (2E)-but-2-enoyl-AMP + diphosphate"],["RHEA%3A74899","(2E)-2-butenoate + holo-[ACP] + ATP = (2E)-butenoyl-[ACP] + AMP + diphosphate"],["RHEA%3A10200","butanoate + NAD(+) = (2E)-2-butenoate + NADH + H(+)"],["RHEA%3A69172","N(6)-(2E)-butenoyl-L-lysyl-[protein] + H2O = (2E)-2-butenoate + L-lysyl-[protein]"]],"b":[["SERPENTINICELLA_MEDIUM.yaml","serpentinicella_medium"],["for_dsm_17722.yaml","for_dsm_17722"]]},{"id":"CHEBI:15346","l":"coenzyme A","na":2,"nb":4,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15346","requires coenzyme A"],["proteintraitsmech%3ABIOLIP_COA","COA-binding site"]],"b":[["HELMUTKOENIGIA_MEDIUM.yaml","helmutkoenigia_medium"],["TREPONEMA_ISOPTEROCOLA_MEDIUM.yaml","treponema_isopterocola_medium"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"],["treponema_isopterocola_medium__e7b07692.yaml","treponema_isopterocola_medium"]]},{"id":"CHEBI:18405","l":"","na":2,"nb":4,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18405","requires pyridoxal 5'-phosphate"],["proteintraitsmech%3ABIOLIP_PLP","PLP-binding site"]],"b":[["HELMUTKOENIGIA_MEDIUM.yaml","helmutkoenigia_medium"],["TREPONEMA_ISOPTEROCOLA_MEDIUM.yaml","treponema_isopterocola_medium"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"],["treponema_isopterocola_medium__e7b07692.yaml","treponema_isopterocola_medium"]]},{"id":"CHEBI:22868","l":"bile salt","na":2,"nb":4,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["1298.yaml","1298"],["ALKALINE_CELLULOSE_AGAR.yaml","alkaline_cellulose_agar"],["acido_thermophile_medium.yaml","acido_thermophile_medium"],["modified_eggerth_gagnon_medium.yaml","modified_eggerth_gagnon_medium"]]},{"id":"CHEBI:25548","l":"nitrilotriacetate(3-)","na":2,"nb":4,"a":[["EC%3A1.14.14.10","nitrilotriacetate monooxygenase"],["RHEA%3A31359","nitrilotriacetate + FMNH2 + O2 = aminodiacetate + FMN + glyoxylate + H2O"]],"b":[["MEDIUM_FOR_CHELATOCOCCUS_BUHARII.yaml","medium_for_chelatococcus_buharii"],["NITRILOTRIACETATE_MEDIUM.yaml","nitrilotriacetate_medium"],["methanoregula_peat_medium__84e41704.yaml","methanoregula_peat_medium"],["methanosphaerula_peat_medium__1238714d.yaml","methanosphaerula_peat_medium"]]},{"id":"CHEBI:75456","l":"2-stearoylglycerol","na":2,"nb":4,"a":[["RHEA%3A38519","1-(9Z-octadecenoyl)-2-octadecanoyl-sn-glycerol + H2O = 2-octadecanoylglycerol + (9Z)-octadecenoate + H(+)"],["proteintraitsmech%3ABIOLIP_2JT","2JT-binding site"]],"b":[["LEEMING_AND_NOTMAN_AGAR.yaml","leeming_and_notman_agar"],["leeming_amp_notman_agar_lna_leeming_amp_notman_1987_in_the_yeasts_a_taxonomic_study_5th_edn.yaml","leeming_amp_notman_agar_lna_leeming_amp_notman_1987_in_the_yeasts_a_taxonomic_study_5th_edn"],["leeming_amp_notman_agar_modified_mlna.yaml","leeming_amp_notman_agar_modified_mlna"],["leeming_and_notman_agar__33424fef.yaml","leeming_and_notman_agar"]]},{"id":"NCBITaxon:556484","l":"","na":4,"nb":2,"a":[["TED%3AAF-B7GAJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-B7GAJ8-F1-model_v4_TED01"],["TED%3AAF-B7G520-F1-model_v4_TED02","TED novel fold AF-B7G520-F1-model_v4_TED02"],["TED%3AAF-B7G8V4-F1-model_v4_TED02","TED novel fold AF-B7G8V4-F1-model_v4_TED02"],["TED%3AAF-B7GB31-F1-model_v4_TED01","TED novel fold AF-B7GB31-F1-model_v4_TED01"]],"b":[["2ASW.yaml","2asw"],["F_2_Medium.yaml","f_2_medium"]]},{"id":"CHEBI:136511","l":"manganese dioxide","na":3,"nb":2,"a":[["EC%3A1.16.3.3","manganese oxidase"],["RHEA%3A52240","2 Mn(2+) + O2 + 2 H2O = 2 MnO2 + 4 H(+)"],["RHEA%3A52248","4 Mn(3+) + O2 + 6 H2O = 4 MnO2 + 12 H(+)"]],"b":[["SULFURIMONAS_MARISNIGRI_MEDIUM.yaml","sulfurimonas_marisnigri_medium"],["abss2__1d326b00.yaml","abss2"]]},{"id":"CHEBI:17909","l":"polysulfur","na":2,"nb":3,"a":[["EC%3A1.8.5.4","bacterial sulfide:quinone reductase"],["RHEA%3A30239","n a quinone + n hydrogen sulfide + n H(+) = polysulfur(n-2) + n a quinol"]],"b":[["THERMOCOCCUS_WAIOTAPUENSE_MEDIUM.yaml","thermococcus_waiotapuense_medium"],["desulfurococcus_medium__dbcbba45.yaml","desulfurococcus_medium"],["thermococcus_medium.yaml","thermococcus_medium"]]},{"id":"CHEBI:30066","l":"thioglycolate(1-)","na":2,"nb":3,"a":[["EC%3A4.5.1.5","S-carboxymethylcysteine synthase"],["RHEA%3A22868","thioglycolate + 3-chloro-L-alanine = S-carboxymethyl-L-cysteine + chloride + H(+)"]],"b":[["eubacterium_medium__c1146137.yaml","eubacterium_medium"],["spirochaeta_stenostrepta_medium__5924ed4c.yaml","spirochaeta_stenostrepta_medium"],["thioglycollate_medium__bfdc2c9b.yaml","thioglycollate_medium"]]},{"id":"CHEBI:30915","l":"2-oxoglutaric acid","na":3,"nb":2,"a":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["TCDB%3A2.A.56","The Tripartite ATP-independent Periplasmic Transporter (TRAP-T) Family"],["proteintraitsmech%3ABIOLIP_AKG","AKG-binding site"]],"b":[["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"],["medium_for_tick_cells_rickettsia.yaml","medium_for_tick_cells_rickettsia"]]},{"id":"CHEBI:46020","l":"tetramethylammonium","na":2,"nb":3,"a":[["EC%3A2.1.1.252","tetramethylammonium--corrinoid protein Co-methyltransferase"],["RHEA%3A59856","tetramethylammonium + Co(I)-[tetramethylammonium-specific corrinoid protein] + H(+) = methyl-Co(III)-[tetramethylammonium-specific corrinoid protein] + trimethylamine"]],"b":[["TETRAMETHYL_AMMONIUM_MEDIUM.yaml","tetramethyl_ammonium_medium"],["methanogen_high_salt_medium__183d3bb4.yaml","methanogen_high_salt_medium"],["tetramethyl_ammonium_medium__e4bd4975.yaml","tetramethyl_ammonium_medium"]]},{"id":"CHEBI:53423","l":"polysorbate 40","na":2,"nb":3,"a":[["TCDB%3A1.A.46","The Anion Channel-forming Bestrophin (Bestrophin) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["MDA.yaml","mda"],["PITYROSPORUM_MEDIUM.yaml","pityrosporum_medium"],["modified_dixon_s_agar.yaml","modified_dixon_s_agar"]]},{"id":"CHEBI:18095","l":"trans-4-hydroxy-L-proline","na":2,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["proteintraitsmech%3ABIOLIP_HYP","HYP-binding site"]],"b":[["RPMI.yaml","RPMI"],["RPMI_with_Fetal_bovine_serum_Conditioned.yaml","RPMI with Fetal bovine serum Conditioned"]]},{"id":"CHEBI:26710","l":"sodium chloride","na":1,"nb":3474,"a":[["TCDB%3A2.A.30","The Cation-Chloride Cotransporter (CCC) Family"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["10_mh_medium.yaml","10_mh_medium"],["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["1298.yaml","1298"],["15_mgm_medium.yaml","15_mgm_medium"]]},{"id":"CHEBI:32588","l":"potassium chloride","na":1,"nb":1953,"a":[["TCDB%3A2.A.30","The Cation-Chloride Cotransporter (CCC) Family"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mgm_medium.yaml","15_mgm_medium"],["15_mh_medium.yaml","15_mh_medium"],["15_mh_medium__b586cb85.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"]]},{"id":"CHEBI:32139","l":"sodium hydrogencarbonate","na":1,"nb":1471,"a":[["TCDB%3A2.A.31","The Anion Exchanger (AE) Family"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mh_medium.yaml","15_mh_medium"],["15_mh_medium__b586cb85.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM.yaml","1_2_sme_medium"]]},{"id":"CHEBI:17234","l":"glucose","na":1,"nb":1113,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mh_medium.yaml","15_mh_medium"],["15_mh_medium__b586cb85.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"]]},{"id":"CHEBI:17634","l":"D-glucose","na":1,"nb":441,"a":[["MCSA%3A976","α‑glucosidase maltase-glucoamylase"]],"b":[["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"],["1_2_mrs_1_2_bhi_agar.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_mrs_1_2_bhi_agar__56430c33.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_tryptic_soy_broth_anaerobe.yaml","1_2_tryptic_soy_broth_anaerobe"],["1_2_tryptic_soy_broth_anaerobic.yaml","1_2_tryptic_soy_broth_anaerobic"],["1_2_tryptic_soy_broth_anaerobic__d70593aa.yaml","1_2_tryptic_soy_broth_anaerobic"]]},{"id":"CHEBI:50385","l":"hemin","na":1,"nb":129,"a":[["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]],"b":[["ABB.yaml","ABB"],["ACY.yaml","ACY"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["BGDM.yaml","bgdm"],["BHIS.yaml","bhis"],["BHIS_CaCl2.yaml","BHIS_CaCl2"]]},{"id":"CHEBI:63940","l":"sodium tungstate","na":1,"nb":116,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["ACETOBACTEROIDES_MEDIUM.yaml","acetobacteroides_medium"],["ALKALIPHILUS_CROTONATOXIDANS_MEDIUM.yaml","alkaliphilus_crotonatoxidans_medium"],["AP11MH_medium.yaml","ap11mh_medium"],["ARCHAEOGLOBUS_FULGIDUS_MEDIUM.yaml","archaeoglobus_fulgidus_medium"],["AS_medium.yaml","as_medium"],["A_medium.yaml","a_medium"]]},{"id":"CHEBI:15603","l":"L-leucine","na":1,"nb":70,"a":[["proteintraitsmech%3ABIOLIP_LEU","LEU-binding site"]],"b":[["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["Hypertonic_medium.yaml","hypertonic_medium"],["MCD_Medium.yaml","mcd_medium"]]},{"id":"UBERON:0000948","l":"heart","na":1,"nb":67,"a":[["GO%3A0007507","heart development"]],"b":[["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"],["1_2_mrs_1_2_bhi_agar.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_mrs_1_2_bhi_agar__56430c33.yaml","1_2_mrs_1_2_bhi_agar"],["70_30_sporulation_medium.yaml","70_30_sporulation_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Anaerobic_Brain_Heart_Infusion_Broth.yaml","anaerobic_brain_heart_infusion_broth"]]},{"id":"UBERON:0000955","l":"brain","na":1,"nb":66,"a":[["GO%3A0007420","brain development"]],"b":[["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"],["1_2_mrs_1_2_bhi_agar.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_mrs_1_2_bhi_agar__56430c33.yaml","1_2_mrs_1_2_bhi_agar"],["70_30_sporulation_medium.yaml","70_30_sporulation_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Anaerobic_Brain_Heart_Infusion_Broth.yaml","anaerobic_brain_heart_infusion_broth"]]},{"id":"CHEBI:17561","l":"L-cysteine","na":1,"nb":60,"a":[["proteintraitsmech%3ABIOLIP_CYS","CYS-binding site"]],"b":[["70_30_sporulation_medium.yaml","70_30_sporulation_medium"],["BHIS_CaCl2.yaml","BHIS_CaCl2"],["BHIS_HOMOPIPES.yaml","BHIS_HOMOPIPES"],["BHIS_K3.yaml","BHIS_K3"],["BHIS_K3_noGlucose.yaml","BHIS_K3_noGlucose"],["BHIS_PIPES.yaml","BHIS_PIPES"]]},{"id":"CHEBI:30769","l":"citric acid","na":1,"nb":55,"a":[["proteintraitsmech%3ABIOLIP_CIT","CIT-binding site"]],"b":[["Azospira_Medium.yaml","azospira_medium"],["BG11.yaml","bg11"],["BG11_medium.yaml","bg11_medium"],["CTM_MEDIUM.yaml","ctm_medium"],["ETHANOLOGENBACTERIUM_MEDIUM.yaml","ethanologenbacterium_medium"],["GINGER_BEER_PLANT_MEDIUM.yaml","ginger_beer_plant_medium"]]},{"id":"CHEBI:16135","l":"isobutyric acid","na":1,"nb":49,"a":[["proteintraitsmech%3ABIOLIP_ALQ","ALQ-binding site"]],"b":[["ACY.yaml","ACY"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["ANAEROFILUM_MEDIUM.yaml","anaerofilum_medium"],["DESULFONEMA_ISHIMOTOI_MEDIUM.yaml","desulfonema_ishimotoi_medium"],["DESULFUROBACTERIUM_MEDIUM.yaml","desulfurobacterium_medium"]]},{"id":"CHEBI:17418","l":"valeric acid","na":1,"nb":48,"a":[["proteintraitsmech%3ABIOLIP_LEA","LEA-binding site"]],"b":[["ACY.yaml","ACY"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["ANAEROFILUM_MEDIUM.yaml","anaerofilum_medium"],["DESULFUROBACTERIUM_MEDIUM.yaml","desulfurobacterium_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"]]},{"id":"CHEBI:15356","l":"cysteine","na":1,"nb":40,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["AMB_MEDIUM.yaml","amb_medium"],["Chopped_Meat_Carbohydrate_Medium.yaml","chopped_meat_carbohydrate_medium"],["Chopped_Meat_Carbohydrate_Medium_w_Tween_80.yaml","chopped_meat_carbohydrate_medium_w_tween_80"],["FRANCISELLA_HALIOTICIDA_MEDIUM.yaml","francisella_halioticida_medium"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"]]},{"id":"CHEBI:16828","l":"L-tryptophan","na":1,"nb":40,"a":[["proteintraitsmech%3ABIOLIP_TRP","TRP-binding site"]],"b":[["CDMM.yaml","cdmm"],["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["M9_minimal_media_aromix_noCarbon.yaml","M9 minimal media aromix noCarbon"],["MDM.yaml","mdm"]]},{"id":"CHEBI:78018","l":"dodecylphosphocholine","na":1,"nb":37,"a":[["proteintraitsmech%3ABIOLIP_DPV","DPV-binding site"]],"b":[["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["an1_medium__e0323906.yaml","an1_medium"],["anaerocella_medium.yaml","anaerocella_medium"],["bacteroides_galacturonicus_medium.yaml","bacteroides_galacturonicus_medium"],["campylobacter_rectus_medium.yaml","campylobacter_rectus_medium"],["capnocytophaga_medium__a7f2b87e.yaml","capnocytophaga_medium"]]},{"id":"CHEBI:27570","l":"histidine","na":1,"nb":27,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["MS15_Medium.yaml","ms15_medium"],["NATRONINCOLA_HISTIDINOVORANS_MEDIUM.yaml","natronincola_histidinovorans_medium"]]},{"id":"CHEBI:59640","l":"N-acetylglucosamine","na":1,"nb":27,"a":[["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"]],"b":[["LARKINELLA_ARBORICOLA_MEDIUM.yaml","larkinella_arboricola_medium"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"],["MM3.yaml","mm3"],["Modified_M30_Medium.yaml","modified_m30_medium"],["PLANCTOMYCES_MEDIUM_WITH_DOUBLE_CONCENTRATED_ARTIFICAL_SEA_WATER.yaml","planctomyces_medium_with_double_concentrated_artifical_sea_water"],["PLANCTOMYCES_PYREFORMIS_MEDIUM.yaml","planctomyces_pyreformis_medium"]]},{"id":"CHEBI:16811","l":"methionine","na":1,"nb":25,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"]],"b":[["Chamberlain_CDM.yaml","chamberlain_cdm"],["DEINOCOCCUS_MEDIUM.yaml","deinococcus_medium"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["MS13_Medium.yaml","ms13_medium"]]},{"id":"CHEBI:61930","l":"N(6)-acetyl-L-lysine residue","na":22,"nb":1,"a":[["EC%3A2.3.1.108","alpha-tubulin N-acetyltransferase"],["EC%3A2.3.1.286","protein acetyllysine N-acetyltransferase"],["EC%3A2.3.1.309","[beta-tubulin]-L-lysine N-acetyltransferase"],["EC%3A2.3.1.48","histone acetyltransferase"],["EC%3A3.5.1.98","histone deacetylase"],["RHEA%3A64460","acetyl phosphate + L-lysyl-[protein] = N(6)-acetyl-L-lysyl-[protein] + phosphate + H(+)"]],"b":[["NLDM_defined.yaml","NLDM_defined"]]},{"id":"CHEBI:41131","l":"crotonic acid","na":1,"nb":21,"a":[["proteintraitsmech%3ABIOLIP_BEO","BEO-binding site"]],"b":[["ALKALIPHILUS_CROTONATOXIDANS_MEDIUM.yaml","alkaliphilus_crotonatoxidans_medium"],["ALKALIPHILUS_HYDROTHERMALIS_MEDIUM.yaml","alkaliphilus_hydrothermalis_medium"],["DESULFATIRHABDIUM_MEDIUM.yaml","desulfatirhabdium_medium"],["Desulfatirhabdium_Butyrativorans_Medium.yaml","desulfatirhabdium_butyrativorans_medium"],["EUBACTERIUM_OXIDOREDUCENS_MEDIUM.yaml","eubacterium_oxidoreducens_medium"],["MPA_Medium.yaml","mpa_medium"]]},{"id":"CHEBI:113451","l":"sodium ascorbate","na":1,"nb":19,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_113451","requires sodium ascorbate"]],"b":[["ALKALIPHILUS_MEDIUM.yaml","alkaliphilus_medium"],["CLOSTRIDUM_G4_MEDIUM.yaml","clostridum_g4_medium"],["Chromatium_Medium.yaml","chromatium_medium"],["GEOANAEROBACTER_MEDIUM.yaml","geoanaerobacter_medium"],["GILLIAMELLA_MEDIUM.yaml","gilliamella_medium"],["HELIOBACTERIUM_CHLORUM_MEDIUM.yaml","heliobacterium_chlorum_medium"]]},{"id":"CHEBI:131529","l":"pyridoxal hydrochloride","na":1,"nb":19,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_131529","requires pyridoxal hydrochloride"]],"b":[["AROMATOLEUM_MEDIUM.yaml","aromatoleum_medium"],["CDM_LP.yaml","cdm_lp"],["ECTOTHIORHODOSPIRA_ABDELMALEKII_MEDIUM.yaml","ectothiorhodospira_abdelmalekii_medium"],["ECTOTHIORHODOSPIRA_VACUOLATA_MEDIUM.yaml","ectothiorhodospira_vacuolata_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"],["HELMUTKOENIGIA_MEDIUM.yaml","helmutkoenigia_medium"]]},{"id":"CHEBI:18186","l":"tyrosine","na":1,"nb":17,"a":[["MCSA%3A668","leishmanolysin"]],"b":[["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["Synthetic_Medium_C.yaml","synthetic_medium_c"],["complete_chemically_defined_medium.yaml","complete_chemically_defined_medium"],["fermentation_medium_glucose_tyrosine.yaml","fermentation_medium_glucose_tyrosine"]]},{"id":"CHEBI:17151","l":"xylitol","na":16,"nb":1,"a":[["EC%3A1.1.1.10","L-xylulose reductase"],["EC%3A1.1.1.15","D-iditol 2-dehydrogenase"],["EC%3A1.1.1.307","D-xylose reductase [NAD(P)H]"],["EC%3A1.1.1.430","D-xylose reductase (NADH)"],["EC%3A1.1.1.431","D-xylose reductase (NADPH)"],["EC%3A1.1.1.9","D-xylulose reductase"]],"b":[["atribacterium_medium__1e9c1fd9.yaml","atribacterium_medium"]]},{"id":"CHEBI:24848","l":"inositol","na":1,"nb":14,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["2asw__59e92e67.yaml","2asw"],["ABSS2.yaml","abss2"],["BAF_Medium.yaml","baf_medium"],["HYPHOMICROBIUM_METHYLOVORUM_MEDIUM.yaml","hyphomicrobium_methylovorum_medium"],["NAV_medium.yaml","nav_medium"],["THERMOACTINOMYCES_MEDIUM.yaml","thermoactinomyces_medium"]]},{"id":"CHEBI:28971","l":"ampicillin","na":1,"nb":14,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["2_5_nacl_heart_infusion_hi_medium.yaml","2_5_nacl_heart_infusion_hi_medium"],["PPLO_broth.yaml","pplo_broth"],["brain_heart_infusion_bhi_medium_supplemented_with_antibiotics.yaml","brain_heart_infusion_bhi_medium_supplemented_with_antibiotics"],["dehalogenimonas_medium__6a926cbc.yaml","dehalogenimonas_medium"],["ip3_3_medium__726cb47b.yaml","ip3_3_medium"],["lb_agar_supplemented_with_ampicillin.yaml","lb_agar_supplemented_with_ampicillin"]]},{"id":"CHEBI:37166","l":"xylan","na":1,"nb":14,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["CLOSTRIDIUM_AEROTOLERANS_MEDIUM.yaml","clostridium_aerotolerans_medium"],["TREPONEMA_THERMOPHILUM_MEDIUM.yaml","treponema_thermophilum_medium"],["VXG_GELLAN.yaml","vxg_gellan"],["XED_Agar.yaml","xed_agar"],["XYLAN_MEDIUM.yaml","xylan_medium"],["Xy_agar.yaml","xy_agar"]]},{"id":"CHEBI:36702","l":"2-acyl-1-alkyl-sn-glycero-3-phosphocholine","na":11,"nb":1,"a":[["EC%3A2.3.1.148","glycerophospholipid acyltransferase (CoA-dependent)"],["EC%3A2.3.1.63","1-alkylglycerophosphocholine O-acyltransferase"],["EC%3A2.7.8.2","diacylglycerol cholinephosphotransferase"],["EC%3A3.1.1.4","phospholipase A2"],["RHEA%3A36179","1-O-alkyl-2-acyl-sn-glycerol + CDP-choline = a 1-O-alkyl-2-acyl-sn-glycero-3-phosphocholine + CMP + H(+)"],["RHEA%3A77759","a 1-O-alkyl-2-acyl-sn-glycero-3-phosphocholine + a 1,2-diacylglycerol = a 1-O-alkyl-sn-glycero-3-phosphocholine + a triacylglycerol"]],"b":[["NLDM_defined.yaml","NLDM_defined"]]},{"id":"CHEBI:16024","l":"D-mannose","na":1,"nb":9,"a":[["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"]],"b":[["M9zb_with_mannose.yaml","m9zb_with_mannose"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"],["Soil_Defined_Media_%28SDM%29.yaml","Soil Defined Media (SDM)"],["defined_freshwater_medium_cocl2__f0ffbcc6.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__41b1d433.yaml","defined_freshwater_medium_coso4"],["fermentation_medium_mannose_nh4cl.yaml","fermentation_medium_mannose_nh4cl"]]},{"id":"CHEBI:16349","l":"L-citrulline","na":1,"nb":9,"a":[["proteintraitsmech%3ABIOLIP_CIR","CIR-binding site"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"]]},{"id":"CHEBI:18248","l":"iron atom","na":9,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18248","requires Fe"],["proteintraitsmech%3AMETALPDB_FE_DINUCLEAR","dinuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_HEPTANUCLEAR","heptanuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_HEXANUCLEAR","hexanuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_MONONUCLEAR","mononuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_OCTANUCLEAR","octanuclear iron site"]],"b":[["methanopyrus_medium_for_strain_116__7463935f.yaml","methanopyrus_medium_for_strain_116"]]},{"id":"NCBITaxon:210","l":"Helicobacter pylori","na":9,"nb":1,"a":[["Pfam%3APF18025","Alpha-(1,3)-fucosyltransferase FucT N-terminal domain"],["Pfam%3APF18971","CagA protein"],["Pfam%3APF03507","CagA exotoxin phosphopeptide substrate mimic region"],["Pfam%3APF02691","Vacuolating cyotoxin beta-helical domain"],["TED%3AAF-A0A2T6UWI4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T6UWI4-F1-model_v4_TED01"],["TED%3AAF-A0A1Q9JB12-F1-model_v4_TED01","TED novel fold AF-A0A1Q9JB12-F1-model_v4_TED01"]],"b":[["BRUCELLA_BROTH.yaml","brucella_broth"]]},{"id":"CHEBI:16283","l":"L-cystine","na":1,"nb":8,"a":[["proteintraitsmech%3ABIOLIP_IYY","IYY-binding site"]],"b":[["IGNISPHAERA_MEDIUM.yaml","ignisphaera_medium"],["Kosmotoga_Pacifica_Medium.yaml","kosmotoga_pacifica_medium"],["eg_medium__dd848cc7.yaml","eg_medium"],["fluid_thioglycolate_medium.yaml","fluid_thioglycolate_medium"],["fluid_thioglycollate_medium__e510d708.yaml","fluid_thioglycollate_medium"],["rc_medium__9776cd83.yaml","rc_medium"]]},{"id":"CHEBI:28260","l":"galactose","na":1,"nb":8,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["A1_MEDIUM.yaml","a1_medium"],["KPL_MEDIUM.yaml","kpl_medium"],["MYXOCOCCUS_FLAVESCENS_MEDIUM.yaml","myxococcus_flavescens_medium"],["Modified_SP_Medium.yaml","modified_sp_medium"],["SP_Medium.yaml","sp_medium"],["a1_medium__13c8113e.yaml","a1_medium"]]},{"id":"CHEBI:16610","l":"spermidine","na":1,"nb":7,"a":[["proteintraitsmech%3ABIOLIP_SPD","SPD-binding site"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"]]},{"id":"CHEBI:16737","l":"creatinine","na":7,"nb":1,"a":[["EC%3A3.5.2.10","creatininase"],["EC%3A3.5.4.21","creatinine deaminase"],["RHEA%3A14533","creatinine + H2O = creatine"],["RHEA%3A12681","creatinine + H2O + H(+) = N-methylhydantoin + NH4(+)"],["RHEA%3A74539","creatinine(in) = creatinine(out)"],["RHEA%3A72183","creatinine(in) + H(+)(out) = creatinine(out) + H(+)(in)"]],"b":[["tissierella_sp_medium_creatinine.yaml","tissierella_sp_medium_creatinine"]]},{"id":"CHEBI:17126","l":"carnitine","na":7,"nb":1,"a":[["EC%3A1.1.1.108","carnitine 3-dehydrogenase"],["EC%3A1.14.11.1","gamma-butyrobetaine dioxygenase"],["EC%3A4.1.1.42","carnitine decarboxylase"],["RHEA%3A24028","4-(trimethylamino)butanoate + 2-oxoglutarate + O2 = carnitine + succinate + CO2"],["RHEA%3A21576","carnitine + H(+) = 2-methylcholine + CO2"],["RHEA%3A19265","carnitine + NAD(+) = 3-dehydrocarnitine + NADH + H(+)"]],"b":[["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:17309","l":"pectin","na":1,"nb":7,"a":[["MCSA%3A681","pectinesterase"]],"b":[["MEDIUM_FOR_TREPONEMA_PECTINOVORUM.yaml","medium_for_treponema_pectinovorum"],["MODIFIED_OTI_MEDIUM.yaml","modified_oti_medium"],["PPM.yaml","ppm"],["medium_for_treponema_pectinovorum__e5f7afef.yaml","medium_for_treponema_pectinovorum"],["oteb_medium.yaml","oteb_medium"],["pectin_medium__d8bc472f.yaml","pectin_medium"]]},{"id":"CHEBI:30776","l":"hexanoic acid","na":1,"nb":7,"a":[["proteintraitsmech%3ABIOLIP_6NA","6NA-binding site"]],"b":[["DESULFUROBACTERIUM_MEDIUM.yaml","desulfurobacterium_medium"],["TD3_MEDIUM.yaml","td3_medium"],["THERMODESULFOBACTERIUM_HYDROGENIPHILUM_MEDIUM.yaml","thermodesulfobacterium_hydrogeniphilum_medium"],["THERMODESULFOBACTERIUM_HYDROGENOPHILUM_MEDIUM.yaml","thermodesulfobacterium_hydrogenophilum_medium"],["desulfurobacterium_medium__edb237d2.yaml","desulfurobacterium_medium"],["td3_medium__4a2d4552.yaml","td3_medium"]]},{"id":"NCBITaxon:262724","l":"Thermus thermophilus (strain ATCC BAA-163 / DSM 7039 / HB27)","na":7,"nb":1,"a":[["Pfam%3APF22474","Argonaute, middle domain"],["Pfam%3APF22472","Argonaute, N-terminal domain"],["Pfam%3APF03449","Transcription elongation factor, N-terminal"],["Pfam%3APF01272","Transcription elongation factor, GreA/GreB, C-term"],["Pfam%3APF09704","CRISPR-associated protein (Cas_Cas5)"],["PROSITE%3APS01224","N-acetyl-gamma-glutamyl-phosphate reductase active site"]],"b":[["thermus_medium__6b1d1914.yaml","thermus_medium"]]},{"id":"CHEBI:18012","l":"fumaric acid","na":1,"nb":6,"a":[["proteintraitsmech%3ABIOLIP_FUM","FUM-binding site"]],"b":[["Brucella_broth_with_formate_and_fumarate.yaml","brucella_broth_with_formate_and_fumarate"],["TRICHLOROMONAS_MEDIUM.yaml","trichloromonas_medium"],["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"],["jcm_medium_no_1264.yaml","jcm_medium_no_1264"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"],["togo_medium_m1360.yaml","togo_medium_m1360"]]},{"id":"CHEBI:27592","l":"ectoine","na":1,"nb":6,"a":[["proteintraitsmech%3ABIOLIP_4CS","4CS-binding site"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["modified_m63_medium_with_ectoine_and_2_5_m_nacl.yaml","modified_m63_medium_with_ectoine_and_2_5_m_nacl"]]},{"id":"CHEBI:46502","l":"tungstate","na":6,"nb":1,"a":[["EC%3A7.3.2.6","ABC-type tungstate transporter"],["RHEA%3A35295","adenylyl-molybdopterin + tungstate = W-molybdopterin cofactor + AMP + H(+)"],["RHEA%3A35027","tungstate(in) + ATP + H2O = tungstate(out) + ADP + phosphate + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.47","The Divalent Anion:Na+ Symporter (DASS) Family"],["proteintraitsmech%3ABIOLIP_WO4","WO4-binding site"]],"b":[["alcalilimnicola_ehrlichii_mhle_1_medium.yaml","alcalilimnicola_ehrlichii_mhle_1_medium"]]},{"id":"CHEBI:15671","l":"L-tartaric acid","na":1,"nb":5,"a":[["proteintraitsmech%3ABIOLIP_TLA","TLA-binding site"]],"b":[["MAGNETOSPIRILLUM_MEDIUM.yaml","magnetospirillum_medium"],["MG_minimal_media.yaml","MG minimal media"],["MG_minimal_media_noIron.yaml","MG minimal media noIron"],["magnetospirillum_medium__dc0f1596.yaml","magnetospirillum_medium"],["telmatospirillum_peat_medium.yaml","telmatospirillum_peat_medium"]]},{"id":"CHEBI:16119","l":"shikimic acid","na":1,"nb":5,"a":[["proteintraitsmech%3ABIOLIP_SKM","SKM-binding site"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:16830","l":"methylamine","na":1,"nb":5,"a":[["proteintraitsmech%3ABIOLIP_NME","NME-binding site"]],"b":[["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["MEDIUM_FOR_DSM_14457_AND_14458.yaml","medium_for_dsm_14457_and_14458"],["MEDIUM_FOR_METHYLOBACTERIUM_PODARIUM.yaml","medium_for_methylobacterium_podarium"],["acetobacterium_submarinus_medium__9fed26ec.yaml","acetobacterium_submarinus_medium"],["hyphomicrobium_medium__41859ce8.yaml","hyphomicrobium_medium"]]},{"id":"CHEBI:75937","l":"monooleoylglycerol","na":5,"nb":1,"a":[["RHEA%3A38455","1,2-di-(9Z-octadecenoyl)-glycerol + H2O = (9Z-octadecenoyl)-glycerol + (9Z)-octadecenoate + H(+)"],["RHEA%3A39935","1,2-di-(9Z-octadecenoyl)-sn-glycerol + H2O = (9Z-octadecenoyl)-glycerol + (9Z)-octadecenoate + H(+)"],["RHEA%3A39955","(9Z-octadecenoyl)-glycerol + H2O = glycerol + (9Z)-octadecenoate + H(+)"],["RHEA%3A50884","(9Z)-octadecenoyl-sn-glycero-3-phosphate + H2O = (9Z-octadecenoyl)-glycerol + phosphate"],["RHEA%3A47868","di-(9Z)-octadecenoylglycerol + H2O = (9Z-octadecenoyl)-glycerol + (9Z)-octadecenoate + H(+)"]],"b":[["PITYROSPORUM_MEDIUM.yaml","pityrosporum_medium"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":5,"nb":1,"a":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF02963","Restriction endonuclease EcoRI"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["PROSITE%3APS00974","Mannitol dehydrogenases signature"],["PROSITE%3APS00567","Phosphoribulokinase signature"]],"b":[["RHODOBACTER_SPHAEROIDES_MEDIUM.yaml","rhodobacter_sphaeroides_medium"]]},{"id":"CHEBI:12936","l":"D-galactose","na":1,"nb":4,"a":[["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"]],"b":[["XYLOPHILUS_MEDIUM.yaml","xylophilus_medium"],["bm_in_galactose_hodgson_et_al.yaml","bm_in_galactose_hodgson_et_al"],["liquid_mm_with_galactose_hodgson_et_al.yaml","liquid_mm_with_galactose_hodgson_et_al"],["minimal_media__805aefdd.yaml","minimal_media"]]},{"id":"CHEBI:16148","l":"heptadecane","na":4,"nb":1,"a":[["EC%3A4.1.99.5","aldehyde oxygenase (deformylating)"],["RHEA%3A77243","hnu + octadecanoate + H(+) = heptadecane + CO2"],["RHEA%3A30415","octadecanal + 2 NADPH + O2 + H(+) = heptadecane + formate + 2 NADP(+) + H2O"],["RHEA%3A83559","octadecanal + reduced [NADPH--hemoprotein reductase] + O2 = heptadecane + oxidized [NADPH--hemoprotein reductase] + CO2 + H2O + H(+)"]],"b":[["THERMOMICROBIUM_FOSTERI_MEDIUM.yaml","thermomicrobium_fosteri_medium"]]},{"id":"CHEBI:16354","l":"N-methylhydantoin","na":4,"nb":1,"a":[["EC%3A3.5.2.14","N-methylhydantoinase (ATP-hydrolyzing)"],["EC%3A3.5.4.21","creatinine deaminase"],["RHEA%3A12681","creatinine + H2O + H(+) = N-methylhydantoin + NH4(+)"],["RHEA%3A11720","N-methylhydantoin + ATP + 2 H2O = N-carbamoylsarcosine + ADP + phosphate + 2 H(+)"]],"b":[["tissierella_amo_1_medium.yaml","tissierella_amo_1_medium"]]},{"id":"CHEBI:16411","l":"indole-3-acetic acid","na":1,"nb":4,"a":[["proteintraitsmech%3ABIOLIP_IAC","IAC-binding site"]],"b":[["ENDOMICROBIUM_PROAVITUM_RSA_MEDIUM.yaml","endomicrobium_proavitum_rsa_medium"],["MODIFIED_AM5_MEDIUM_2.yaml","modified_am5_medium_2"],["am5_medium_elusimicrobium_medium.yaml","am5_medium_elusimicrobium_medium"],["endomicrobium_proavitum_rsa_medium__51692939.yaml","endomicrobium_proavitum_rsa_medium"]]},{"id":"CHEBI:16742","l":"orotic acid","na":1,"nb":4,"a":[["proteintraitsmech%3ABIOLIP_ORO","ORO-binding site"]],"b":[["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"],["Soil_Defined_Media_%28SDM%29.yaml","Soil Defined Media (SDM)"],["cdm_lab_medium.yaml","cdm_lab_medium"],["ucm.yaml","ucm"]]},{"id":"CHEBI:16991","l":"deoxyribonucleic acid","na":1,"nb":4,"a":[["proteintraitsmech%3ABIOLIP_DNA","DNA-binding site"]],"b":[["PH_MEDIUM.yaml","ph_medium"],["sp4_z_medium__eae01184.yaml","sp4_z_medium"],["ureaplasma_medium__abc787f9.yaml","ureaplasma_medium"],["ureaplasma_medium__de7f9c49.yaml","ureaplasma_medium"]]},{"id":"CHEBI:17148","l":"putrescine","na":1,"nb":4,"a":[["proteintraitsmech%3ABIOLIP_PUT","PUT-binding site"]],"b":[["VEILLONELLA_MEDIUM.yaml","veillonella_medium"],["ucm.yaml","ucm"],["veillonella_medium__007a2b69.yaml","veillonella_medium"],["veillonella_medium__9e3e9781.yaml","veillonella_medium"]]},{"id":"CHEBI:28621","l":"triethanolamine","na":1,"nb":4,"a":[["proteintraitsmech%3ABIOLIP_211","211-binding site"]],"b":[["LACTOBACILLUS_PONTIS_MEDIUM.yaml","lactobacillus_pontis_medium"],["lactobacillus_pontis_medium__899ad629.yaml","lactobacillus_pontis_medium"],["mic_cit_herriott_et_al.yaml","mic_cit_herriott_et_al"],["mic_herriott_et_al.yaml","mic_herriott_et_al"]]},{"id":"CHEBI:28631","l":"3-phenylpropionic acid","na":1,"nb":4,"a":[["proteintraitsmech%3ABIOLIP_HCI","HCI-binding site"]],"b":[["ENDOMICROBIUM_PROAVITUM_RSA_MEDIUM.yaml","endomicrobium_proavitum_rsa_medium"],["MODIFIED_AM5_MEDIUM_2.yaml","modified_am5_medium_2"],["am5_medium_elusimicrobium_medium.yaml","am5_medium_elusimicrobium_medium"],["endomicrobium_proavitum_rsa_medium__51692939.yaml","endomicrobium_proavitum_rsa_medium"]]},{"id":"CHEBI:30411","l":"cobalamin","na":4,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_30411","requires cobalamin"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.A.54","The Lysosomal Cobalamin (B12) Transporter (L-B12T) Family"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]],"b":[["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"]]},{"id":"CHEBI:30745","l":"phenylacetic acid","na":1,"nb":4,"a":[["proteintraitsmech%3ABIOLIP_PAC","PAC-binding site"]],"b":[["ENDOMICROBIUM_PROAVITUM_RSA_MEDIUM.yaml","endomicrobium_proavitum_rsa_medium"],["MODIFIED_AM5_MEDIUM_2.yaml","modified_am5_medium_2"],["am5_medium_elusimicrobium_medium.yaml","am5_medium_elusimicrobium_medium"],["endomicrobium_proavitum_rsa_medium__51692939.yaml","endomicrobium_proavitum_rsa_medium"]]},{"id":"CHEBI:41688","l":"crystal violet","na":1,"nb":4,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["1298.yaml","1298"],["ALKALINE_CELLULOSE_AGAR.yaml","alkaline_cellulose_agar"],["acido_thermophile_medium.yaml","acido_thermophile_medium"],["modified_eggerth_gagnon_medium.yaml","modified_eggerth_gagnon_medium"]]},{"id":"CHEBI:47966","l":"aldehydo-N-acetylmuramic acid","na":1,"nb":4,"a":[["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"]],"b":[["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:16602","l":"trichloroethene","na":3,"nb":1,"a":[["EC%3A1.21.99.5","tetrachloroethene reductive dehalogenase"],["RHEA%3A67992","trichloroethene + AH2 = (Z)-1,2-dichloroethene + chloride + A + H(+)"],["RHEA%3A20353","trichloroethene + chloride + A + H(+) = tetrachloroethene + AH2"]],"b":[["dehalococcoides_medium__9ce6016b.yaml","dehalococcoides_medium"]]},{"id":"CHEBI:25351","l":"mevalonic acid","na":1,"nb":3,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["LACTOBACILLUS_MEDIUM_III.yaml","lactobacillus_medium_iii"],["lactobacillus_medium_ii__915ff5f7.yaml","lactobacillus_medium_ii"],["lactobacillus_medium_iii__eb3ab598.yaml","lactobacillus_medium_iii"]]},{"id":"CHEBI:2682","l":"amphotericin B","na":1,"nb":3,"a":[["proteintraitsmech%3ABIOLIP_4UH","4UH-binding site"]],"b":[["HELICOBACTER_MEDIUM.yaml","helicobacter_medium"],["brain_heart_infusion_agar_upplemented_with_10_calf_blood_and_antibiotics.yaml","brain_heart_infusion_agar_upplemented_with_10_calf_blood_and_antibiotics"],["eagles_minimum_essential_medium_mem_containing_antibiotics_and_fetal_bovine_serum.yaml","eagles_minimum_essential_medium_mem_containing_antibiotics_and_fetal_bovine_serum"]]},{"id":"CHEBI:28145","l":"dibenzofuran","na":1,"nb":3,"a":[["RHEA%3A42460","dibenzofuran + NADH + O2 + H(+) = biphenyl-2,2',3-triol + NAD(+)"]],"b":[["MINERAL_MEDIUM_WITH_DIBENZOFURAN.yaml","mineral_medium_with_dibenzofuran"],["cfmm_medium_0_1_dibenzofuran.yaml","cfmm_medium_0_1_dibenzofuran"],["mineral_medium_with_2_chlorobenzoate.yaml","mineral_medium_with_2_chlorobenzoate"]]},{"id":"CHEBI:41808","l":"decane","na":1,"nb":3,"a":[["RHEA%3A76735","decane + reduced [NADPH--hemoprotein reductase] + O2 = 3-decanol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["DESULFOGLAEBA_MEDIUM.yaml","desulfoglaeba_medium"],["MODIFIED_DESULFOGLAEBA_ALKANEXEDENS_MEDIUM.yaml","modified_desulfoglaeba_alkanexedens_medium"],["modified_desulfoglaeba_alkanexedens_medium__f10b64fd.yaml","modified_desulfoglaeba_alkanexedens_medium"]]},{"id":"NCBITaxon:41673","l":"Acidianus brierleyi","na":3,"nb":1,"a":[["TED%3AAF-A0A2U9IEJ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U9IEJ0-F1-model_v4_TED01"],["TED%3AAF-A0A2U9IC53-F1-model_v4_TED01","TED novel fold AF-A0A2U9IC53-F1-model_v4_TED01"],["TED%3AAF-A0A2U9ICQ8-F1-model_v4_TED02","TED novel fold AF-A0A2U9ICQ8-F1-model_v4_TED02"]],"b":[["sulfolobus_medium_anaerobic_for_dsm_2162.yaml","sulfolobus_medium_anaerobic_for_dsm_2162"]]},{"id":"NCBITaxon:44001","l":"Caldicellulosiruptor saccharolyticus","na":3,"nb":1,"a":[["Pfam%3APF12891","Glycoside hydrolase family 44"],["PROSITE%3APS01027","Glycosyl hydrolases family 39 active site"],["Pfam%3APF02011","Glycosyl hydrolase family 48"]],"b":[["caldicellulosiruptor_medium_for_dsm_10319.yaml","caldicellulosiruptor_medium_for_dsm_10319"]]},{"id":"NCBITaxon:823","l":"Parabacteroides distasonis","na":3,"nb":1,"a":[["TED%3AAF-A0A412R0B2-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A412R0B2-F1-model_v4_TED05"],["TED%3AAF-A0A4S2EEJ9-F1-model_v4_TED01","TED novel fold AF-A0A4S2EEJ9-F1-model_v4_TED01"],["TED%3AAF-A0A5C6KM13-F1-model_v4_TED03","TED novel fold AF-A0A5C6KM13-F1-model_v4_TED03"]],"b":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]]},{"id":"CHEBI:15676","l":"allantoin","na":1,"nb":2,"a":[["RHEA%3A30819","allantoin + H2O = allantoate + H(+)"]],"b":[["ALLANTOIN_MINERAL_MEDIUM.yaml","allantoin_mineral_medium"],["allantoin_mineral_medium__75896b1e.yaml","allantoin_mineral_medium"]]},{"id":"CHEBI:16261","l":"chitosan","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_GCS","GCS-binding site"]],"b":[["HALOACTINOMYCES_HALOPHILUS_MEDIUM.yaml","haloactinomyces_halophilus_medium"],["Matsuaria_Medium.yaml","matsuaria_medium"]]},{"id":"CHEBI:17533","l":"N-acetyl-L-glutamic acid","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["proteintraitsmech%3ABIOLIP_NLG","NLG-binding site"]],"b":[["NLDM_defined.yaml","NLDM_defined"]]},{"id":"CHEBI:18026","l":"2,3-dihydroxybenzoic acid","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_DBH","DBH-binding site"]],"b":[["M9_minimal_media_aromix_noCarbon.yaml","M9 minimal media aromix noCarbon"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"]]},{"id":"CHEBI:27941","l":"pullulan","na":1,"nb":2,"a":[["MCSA%3A433","neopullulanase"]],"b":[["ARTIFICIAL_SEAWATER_MEDIUM_WITH_PULLULAN.yaml","artificial_seawater_medium_with_pullulan"],["artificial_seawater_medium_with_pullulan__dbb4c222.yaml","artificial_seawater_medium_with_pullulan"]]},{"id":"CHEBI:28488","l":"m-xylene","na":2,"nb":1,"a":[["EC%3A1.14.15.26","toluene methyl-monooxygenase"],["RHEA%3A51600","m-xylene + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = 3-methylbenzyl alcohol + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"]],"b":[["DESULFOVIRGA_MEDIUM.yaml","desulfovirga_medium"]]},{"id":"CHEBI:30746","l":"benzoic acid","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_BEZ","BEZ-binding site"]],"b":[["UGA_defined_4CarbonMix_Nitrate_anaerobic_pH_7.1.yaml","UGA defined 4CarbonMix Nitrate anaerobic pH 7.1"],["togo_medium_m1949.yaml","togo_medium_m1949"]]},{"id":"CHEBI:30751","l":"formic acid","na":2,"nb":1,"a":[["MCSA%3A38","GTP cyclohydrolase I"],["proteintraitsmech%3ABIOLIP_FMT","FMT-binding site"]],"b":[["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:30764","l":"3-hydroxybenzoic acid","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_3HB","3HB-binding site"]],"b":[["ANAEROBIOSPIRILLUM_THOMASII_MEDIUM.yaml","anaerobiospirillum_thomasii_medium"],["sporotomaculum_medium.yaml","sporotomaculum_medium"]]},{"id":"CHEBI:35366","l":"fatty acid","na":1,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["MODIFIED_AM5_MEDIUM_2.yaml","modified_am5_medium_2"],["modified_am5_medium__421a5fe8.yaml","modified_am5_medium"]]},{"id":"CHEBI:133362","l":"N-acetyl-L-methionyl-L-glutaminyl residue","na":1,"nb":1,"a":[["RHEA%3A50492","N-terminal L-methionyl-L-glutaminyl-[protein] + acetyl-CoA = N-terminal N(alpha)-acetyl-L-methionyl-L-glutaminyl-[protein] + CoA + H(+)"]],"b":[["NLDM_defined.yaml","NLDM_defined"]]},{"id":"CHEBI:15978","l":"sn-glycerol 3-phosphate","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_G3P","G3P-binding site"]],"b":[["modified_dixon_s_agar.yaml","modified_dixon_s_agar"]]},{"id":"CHEBI:16867","l":"D-methionine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MED","MED-binding site"]],"b":[["methionine_salt_schaechter_et_al.yaml","methionine_salt_schaechter_et_al"]]},{"id":"CHEBI:17189","l":"2,5-dihydroxybenzoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_GTQ","GTQ-binding site"]],"b":[["syntrophus_hqg_1_medium.yaml","syntrophus_hqg_1_medium"]]},{"id":"CHEBI:22660","l":"aspartic acid","na":1,"nb":1,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"]],"b":[["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"]]},{"id":"CHEBI:24040","l":"flavin adenine dinucleotide","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_24040","requires flavin adenine dinucleotide"]],"b":[["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:26986","l":"threonine","na":1,"nb":1,"a":[["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["brain_heart_infusion_difco_medium_supplemented_with_dl_threonine_and_glucose.yaml","brain_heart_infusion_difco_medium_supplemented_with_dl_threonine_and_glucose"]]},{"id":"CHEBI:29125","l":"arsenate(3-)","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ART","ART-binding site"]],"b":[["HALARSENATIBACTER_MEDIUM.yaml","halarsenatibacter_medium"]]},{"id":"CHEBI:30452","l":"tellurium atom","na":1,"nb":1,"a":[["TCDB%3A2.A.109","The Tellurium Ion Resistance (TerC) Family"]],"b":[["ucm.yaml","ucm"]]},{"id":"CHEBI:30621","l":"diarsenic trioxide","na":1,"nb":1,"a":[["TCDB%3A1.A.8","The Major Intrinsic Protein (MIP) Family"]],"b":[["ucm.yaml","ucm"]]},{"id":"CHEBI:30845","l":"2-furoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_FOA","FOA-binding site"]],"b":[["pelobacter_fuf_medium.yaml","pelobacter_fuf_medium"]]},{"id":"CHEBI:33083","l":"fluoranthene","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["PLATES_WITH_FLUORANTHENE.yaml","plates_with_fluoranthene"]]},{"id":"CHEBI:40666","l":"1,6-anhydro-N-acetyl-beta-muramic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_AH0","AH0-binding site"]],"b":[["NLDM_defined.yaml","NLDM_defined"]]},{"id":"NCBITaxon:1670455","l":"Sulfodiicoccus acidiphilus","na":1,"nb":1,"a":[["TED%3AAF-A0A348B6D9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A348B6D9-F1-model_v4_TED02"]],"b":[["sulfolobus_medium_anaerobic_for_dsm_2162.yaml","sulfolobus_medium_anaerobic_for_dsm_2162"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":1,"nb":1,"a":[["TED%3AAF-A0A4R6CRR7-F1-model_v4_TED01","TED novel fold AF-A0A4R6CRR7-F1-model_v4_TED01"]],"b":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]]},{"id":"NCBITaxon:69656","l":"Sulfurisphaera ohwakuensis","na":1,"nb":1,"a":[["TED%3AAF-A0A650CK52-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A650CK52-F1-model_v4_TED01"]],"b":[["sulfolobus_medium_anaerobic_for_dsm_2162.yaml","sulfolobus_medium_anaerobic_for_dsm_2162"]]}]} \ No newline at end of file +{"a":"ProteinTraitsMech","b":"CultureMech","base":{"ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record=","CultureMech":"https://github.com/CultureBotAI/CultureMech/blob/main/data/merge_yaml/merged/"},"n":233,"by":{"CHEBI":221,"NCBITaxon":10,"UBERON":2},"terms":[{"id":"CHEBI:15377","l":"water","na":9376,"nb":2283,"a":[["EC%3A1.1.1.115","ribose 1-dehydrogenase (NADP(+))"],["EC%3A1.1.1.132","GDP-mannose 6-dehydrogenase"],["EC%3A1.1.1.136","UDP-N-acetylglucosamine 6-dehydrogenase"],["EC%3A1.1.1.186","dTDP-galactose 6-dehydrogenase"],["EC%3A1.1.1.192","long-chain-alcohol dehydrogenase"],["EC%3A1.1.1.205","IMP dehydrogenase"]],"b":[["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1_10_MB_agar.yaml","1_10_mb_agar"],["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"],["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":1616,"nb":711,"a":[["EC%3A1.1.1.170","3beta-hydroxysteroid-4alpha-carboxylate 3-dehydrogenase (decarboxylating)"],["EC%3A1.1.1.262","4-hydroxythreonine-4-phosphate dehydrogenase"],["EC%3A1.1.1.276","serine 3-dehydrogenase (NADP(+))"],["EC%3A1.1.1.286","isocitrate--homoisocitrate dehydrogenase"],["EC%3A1.1.1.305","UDP-glucuronic acid oxidase (UDP-4-keto-hexauronic acid decarboxylating)"],["EC%3A1.1.1.343","phosphogluconate dehydrogenase (NAD(+)-dependent, decarboxylating)"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["4_yaco_media.yaml","4_yaco_media"],["8kg_4_medium.yaml","8kg_4_medium"],["ABSS2.yaml","abss2"],["ABYSSISOLIBACTER_MEDIUM.yaml","abyssisolibacter_medium"]]},{"id":"CHEBI:17754","l":"glycerol","na":95,"nb":165,"a":[["EC%3A1.1.1.156","glycerol 2-dehydrogenase (NADP(+))"],["EC%3A1.1.1.372","D/L-glyceraldehyde reductase"],["EC%3A1.1.1.6","glycerol dehydrogenase"],["EC%3A1.1.1.72","glycerol dehydrogenase (NADP(+))"],["EC%3A1.1.99.22","glycerol dehydrogenase (acceptor)"],["EC%3A2.4.1.332","1,2-alpha-glucosylglycerol phosphorylase"]],"b":[["1_ogawa_medium.yaml","1_ogawa_medium"],["1_ogawa_medium__65d0ae34.yaml","1_ogawa_medium"],["5_G_MEDIUM.yaml","5_g_medium"],["5_g_medium__8aa8a45a.yaml","5_g_medium"],["6_B_MEDIUM.yaml","6_b_medium"],["6_b_medium__990e4708.yaml","6_b_medium"]]},{"id":"CHEBI:17154","l":"nicotinamide","na":92,"nb":117,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17154","requires nicotinamide"],["EC%3A2.1.1.1","nicotinamide N-methyltransferase"],["EC%3A2.3.1.286","protein acetyllysine N-acetyltransferase"],["EC%3A2.3.1.313","NAD-dependent lipoamidase"],["EC%3A2.4.2.12","nicotinamide phosphoribosyltransferase"],["EC%3A2.4.2.31","NAD(+)--protein-arginine ADP-ribosyltransferase"]],"b":[["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"],["ANAEROBIC_CHOLESTEROL_MEDIUM.yaml","anaerobic_cholesterol_medium"],["ANAEROBIC_THAUERA_MEDIUM.yaml","anaerobic_thauera_medium"],["ANCALOMICROBIUM_MEDIUM.yaml","ancalomicrobium_medium"],["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"]]},{"id":"CHEBI:17790","l":"methanol","na":86,"nb":107,"a":[["EC%3A1.1.1.244","methanol dehydrogenase"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.99.37","methanol dehydrogenase (nicotinoprotein)"],["EC%3A1.14.13.25","methane monooxygenase (soluble)"],["EC%3A1.14.14.117","aflatoxin B synthase"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["2_mh_medium.yaml","2_mh_medium"],["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["ALTEROMONAS_MEDIUM.yaml","alteromonas_medium"],["BM_MEDIUM.yaml","bm_medium"]]},{"id":"CHEBI:17992","l":"sucrose","na":49,"nb":108,"a":[["EC%3A1.1.99.13","glucoside 3-dehydrogenase (acceptor)"],["EC%3A2.4.1.10","levansucrase"],["EC%3A2.4.1.125","sucrose--1,6-alpha-glucan 3(6)-alpha-glucosyltransferase"],["EC%3A2.4.1.13","sucrose synthase"],["EC%3A2.4.1.166","raffinose--raffinose alpha-galactosyltransferase"],["EC%3A2.4.1.167","sucrose 6(F)-alpha-galactosyltransferase"]],"b":[["ACANTHAMOEBA_MEDIUM.yaml","acanthamoeba_medium"],["ACETIVIBRIO_MEDIUM.yaml","acetivibrio_medium"],["ALCALIPHILIC_AMPHIBACILLUS_STRAINS_MEDIUM.yaml","alcaliphilic_amphibacillus_strains_medium"],["ALKALIPHILIC_SPIROCHAETE_MEDIUM.yaml","alkaliphilic_spirochaete_medium"],["ANAEROBACTER_MEDIUM.yaml","anaerobacter_medium"],["AZOSPIRILLUM_AMAZONENSE_MEDIUM.yaml","azospirillum_amazonense_medium"]]},{"id":"CHEBI:16199","l":"urea","na":48,"nb":45,"a":[["EC%3A3.5.1.5","urease"],["EC%3A3.5.1.95","N-malonylurea hydrolase"],["EC%3A3.5.3.1","arginase"],["EC%3A3.5.3.10","D-arginase"],["EC%3A3.5.3.11","agmatinase"],["EC%3A3.5.3.14","amidinoaspartase"]],"b":[["A7_MEDIUM.yaml","a7_medium"],["Agro_defined_trehalose.yaml","Agro defined trehalose"],["BACILLUS_PASTEURII_MEDIUM.yaml","bacillus_pasteurii_medium"],["BM7CO_MEDIUM.yaml","bm7co_medium"],["C41_MEDIUM.yaml","c41_medium"],["CATONELLA_UREILYTICA_MEDIUM.yaml","catonella_ureilytica_medium"]]},{"id":"CHEBI:18276","l":"dihydrogen","na":42,"nb":231,"a":[["EC%3A1.12.1.2","hydrogen dehydrogenase"],["EC%3A1.12.1.3","hydrogen dehydrogenase (NADP(+))"],["EC%3A1.12.1.4","hydrogenase (NAD(+), ferredoxin)"],["EC%3A1.12.1.5","hydrogen dehydrogenase [NAD(P)(+)]"],["EC%3A1.12.2.1","cytochrome-c3 hydrogenase"],["EC%3A1.12.5.1","hydrogen:quinone oxidoreductase"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_sme_medium__e2fedfaa.yaml","1_2_sme_medium"],["4_yaco_media.yaml","4_yaco_media"],["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["AMMONIFEX_DEGENSII_MEDIUM.yaml","ammonifex_degensii_medium"],["AP11MH_medium.yaml","ap11mh_medium"]]},{"id":"CHEBI:17268","l":"myo-inositol","na":42,"nb":50,"a":[["EC%3A1.1.1.18","inositol 2-dehydrogenase"],["EC%3A1.1.5.n1","quinoprotein inositol dehydrogenase"],["EC%3A1.13.99.1","inositol oxygenase"],["EC%3A2.1.1.129","inositol 4-methyltransferase"],["EC%3A2.1.1.39","inositol 3-methyltransferase"],["EC%3A2.1.1.40","inositol 1-methyltransferase"]],"b":[["2ASW.yaml","2asw"],["ACETITOMACULUM_MEDIUM.yaml","acetitomaculum_medium"],["ASW.yaml","asw"],["CDM_LP.yaml","cdm_lp"],["DESULFAMPLUS_MEDIUM.yaml","desulfamplus_medium"],["EGGC_MEDIUM.yaml","eggc_medium"]]},{"id":"CHEBI:30089","l":"acetate","na":302,"nb":31,"a":[["EC%3A1.1.1.318","eugenol synthase"],["EC%3A1.1.1.319","isoeugenol synthase"],["EC%3A1.13.11.50","acetylacetone-cleaving enzyme"],["EC%3A1.13.12.4","lactate 2-monooxygenase"],["EC%3A1.14.13.54","ketosteroid monooxygenase"],["EC%3A1.14.14.19","steroid 17alpha-monooxygenase"]],"b":[["AMOEBOBACTER_MEDIUM.yaml","amoebobacter_medium"],["FWAFC.yaml","fwafc"],["M9ZB_with_acetate.yaml","m9zb_with_acetate"],["MEDIUM_FOR_CHLOROBIUM_FERROOXIDANS.yaml","medium_for_chlorobium_ferrooxidans"],["NMM_with_acetate.yaml","nmm_with_acetate"],["Thauera_aminoaromatica_medium.yaml","thauera_aminoaromatica_medium"]]},{"id":"CHEBI:16236","l":"ethanol","na":31,"nb":70,"a":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.5.5","alcohol dehydrogenase (quinone)"],["EC%3A1.1.99.36","alcohol dehydrogenase (nicotinoprotein)"],["EC%3A2.3.1.268","ethanol O-acetyltransferase"],["EC%3A3.1.1.113","ethyl acetate hydrolase"],["EC%3A3.1.1.67","fatty-acyl-ethyl-ester synthase"]],"b":[["ACETOBACTER_PEROXYDANS_MEDIUM.yaml","acetobacter_peroxydans_medium"],["AE_BROTH.yaml","ae_broth"],["ANAEROTIGNUM_NEOPROPIONICUM_MEDIUM.yaml","anaerotignum_neopropionicum_medium"],["Acetobacter_Europaeus_Medium.yaml","acetobacter_europaeus_medium"],["BTU_MEDIUM.yaml","btu_medium"],["CLOSTRIDIUM_KLUYVERI_MEDIUM.yaml","clostridium_kluyveri_medium"]]},{"id":"CHEBI:16947","l":"citrate(3-)","na":49,"nb":31,"a":[["EC%3A2.3.3.1","citrate (Si)-synthase"],["EC%3A2.3.3.16","citrate synthase (unknown stereospecificity)"],["EC%3A2.3.3.3","citrate (Re)-synthase"],["EC%3A2.3.3.8","ATP citrate synthase"],["EC%3A2.8.3.10","citrate CoA-transferase"],["EC%3A4.1.3.6","citrate (pro-3S)-lyase"]],"b":[["E2_medium_with_citrate.yaml","e2_medium_with_citrate"],["M9_minimal_medium_with_citrate.yaml","m9_minimal_medium_with_citrate"],["Vogels_Medium_N.yaml","vogels_medium_n"],["aspartate_salt_schaechter_et_al.yaml","aspartate_salt_schaechter_et_al"],["batch_medium_mattanovich_et_al.yaml","batch_medium_mattanovich_et_al"],["bg11_0_015_mm_iron_shcolnick_2006.yaml","bg11_0_015_mm_iron_shcolnick_2006"]]},{"id":"CHEBI:17306","l":"maltose","na":27,"nb":50,"a":[["EC%3A2.3.1.79","maltose O-acetyltransferase"],["EC%3A2.4.1.139","maltose synthase"],["EC%3A2.4.1.8","maltose phosphorylase"],["EC%3A2.7.1.175","maltokinase"],["EC%3A2.7.1.208","protein-N(pi)-phosphohistidine--maltose phosphotransferase"],["EC%3A3.1.3.90","maltose 6'-phosphate phosphatase"]],"b":[["ALKALIPHILUS_LACT_MEDIUM.yaml","alkaliphilus_lact_medium"],["BUTYRIVIBRIO_M2_MEDIUM.yaml","butyrivibrio_m2_medium"],["COLON_EXTRACT_MEDIUM.yaml","colon_extract_medium"],["DEINOCOCCUS_MEDIUM.yaml","deinococcus_medium"],["HELMUTKOENIGIA_MEDIUM.yaml","helmutkoenigia_medium"],["HYPNOCYCLICUS_MEDIUM.yaml","hypnocyclicus_medium"]]},{"id":"CHEBI:17568","l":"uracil","na":47,"nb":26,"a":[["EC%3A1.14.11.10","pyrimidine-deoxynucleoside 1'-dioxygenase"],["EC%3A1.14.99.46","pyrimidine monooxygenase"],["EC%3A1.17.99.4","uracil/thymine dehydrogenase"],["EC%3A1.3.1.1","dihydrouracil dehydrogenase (NAD(+))"],["EC%3A1.3.1.2","dihydropyrimidine dehydrogenase (NADP(+))"],["EC%3A1.3.3.7","dihydrouracil oxidase"]],"b":[["CDM_LP.yaml","cdm_lp"],["MCD_Medium.yaml","mcd_medium"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"]]},{"id":"CHEBI:15361","l":"pyruvate","na":410,"nb":24,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15361","requires pyruvate"],["EC%3A1.1.1.27","L-lactate dehydrogenase"],["EC%3A1.1.1.28","D-lactate dehydrogenase"],["EC%3A1.1.1.38","malate dehydrogenase (oxaloacetate-decarboxylating)"],["EC%3A1.1.1.39","malate dehydrogenase (decarboxylating)"],["EC%3A1.1.1.40","malate dehydrogenase (oxaloacetate-decarboxylating) (NADP(+))"]],"b":[["ARCOBACTER_ANAEROPHILUS_MEDIUM.yaml","arcobacter_anaerophilus_medium"],["CENTENUM_MEDIUM.yaml","centenum_medium"],["CMM.yaml","cmm"],["NMM_with_pyruvate.yaml","nmm_with_pyruvate"],["ams1_pyruvate_glycine.yaml","ams1_pyruvate_glycine"],["ams1_pyruvate_glycine__08b97e38.yaml","ams1_pyruvate_glycine"]]},{"id":"CHEBI:26833","l":"sulfur atom","na":24,"nb":153,"a":[["EC%3A1.12.98.4","sulfhydrogenase"],["EC%3A1.13.11.55","sulfur oxygenase/reductase"],["EC%3A1.8.1.18","NAD(P)H sulfur oxidoreductase (CoA-dependent)"],["EC%3A1.8.1.19","sulfide dehydrogenase"],["EC%3A1.8.2.3","sulfide-cytochrome-c reductase (flavocytochrome c)"],["EC%3A1.8.2.7","thiocyanate desulfurase"]],"b":[["1_2_SME_MEDIUM.yaml","1_2_sme_medium"],["9K_WITH_SULFUR_MEDIUM.yaml","9k_with_sulfur_medium"],["ACIDIANUS_BRIERLEYI_MEDIUM.yaml","acidianus_brierleyi_medium"],["ACIDITHIOBACILLUS_CALDUS_MEDIUM.yaml","acidithiobacillus_caldus_medium"],["ACIDITHIOBACILLUS_MEDIUM.yaml","acidithiobacillus_medium"],["ACIDOLOBUS_ACETICUS_MEDIUM.yaml","acidolobus_aceticus_medium"]]},{"id":"CHEBI:17836","l":"4-aminobenzoate","na":20,"nb":87,"a":[["EC%3A1.14.13.27","4-aminobenzoate 1-monooxygenase"],["EC%3A1.14.99.68","4-aminobenzoate N-oxygenase"],["EC%3A2.4.2.54","beta-ribofuranosylphenol 5'-phosphate synthase"],["EC%3A2.5.1.15","dihydropteroate synthase"],["EC%3A4.1.1.24","aminobenzoate decarboxylase"],["EC%3A4.1.3.38","aminodeoxychorismate lyase"]],"b":[["Asp2.yaml","asp2"],["CAMM.yaml","camm"],["CDM_LP.yaml","cdm_lp"],["DESULFOMONILE_MEDIUM.yaml","desulfomonile_medium"],["FWAFC.yaml","fwafc"],["Gotz_minimal_medium_with_malate.yaml","gotz_minimal_medium_with_malate"]]},{"id":"CHEBI:17716","l":"lactose","na":20,"nb":25,"a":[["EC%3A2.4.1.22","lactose synthase"],["EC%3A2.7.1.207","protein-N(pi)-phosphohistidine--lactose phosphotransferase"],["EC%3A3.2.1.108","lactase"],["EC%3A3.2.1.140","lacto-N-biosidase"],["EC%3A3.2.1.227","N-acetyllactosaminidase"],["RHEA%3A86923","a beta-D-Gal-(1->4)-beta-D-Glc-(1<->1)-Cer(d18:1(4E)) + H2O = lactose + an N-acylsphing-4-enine"]],"b":[["1298.yaml","1298"],["ALKALINE_CELLULOSE_AGAR.yaml","alkaline_cellulose_agar"],["Basal_synthetic_medium.yaml","basal_synthetic_medium"],["CLOSTRIDIUM_VINCENTII_MEDIUM.yaml","clostridium_vincentii_medium"],["M17_MEDIUM_FOR_LACTIC_STREPTOCOCCI.yaml","m17_medium_for_lactic_streptococci"],["STREPTOCOCCUS_SUIS_MEDIUM.yaml","streptococcus_suis_medium"]]},{"id":"CHEBI:17821","l":"thymine","na":20,"nb":22,"a":[["EC%3A1.14.11.6","thymine dioxygenase"],["EC%3A1.14.99.46","pyrimidine monooxygenase"],["EC%3A1.17.99.4","uracil/thymine dehydrogenase"],["EC%3A1.3.1.1","dihydrouracil dehydrogenase (NAD(+))"],["EC%3A1.3.1.2","dihydropyrimidine dehydrogenase (NADP(+))"],["EC%3A2.4.2.2","pyrimidine-nucleoside phosphorylase"]],"b":[["2ASW.yaml","2asw"],["2asw__59e92e67.yaml","2asw"],["ASW.yaml","asw"],["Asp2.yaml","asp2"],["CDM_LP.yaml","cdm_lp"],["NLDM_defined.yaml","NLDM_defined"]]},{"id":"CHEBI:17057","l":"cellobiose","na":19,"nb":121,"a":[["EC%3A1.1.3.5","hexose oxidase"],["EC%3A1.1.99.18","cellobiose dehydrogenase (acceptor)"],["EC%3A2.4.1.20","cellobiose phosphorylase"],["EC%3A2.7.1.205","protein-N(pi)-phosphohistidine--D-cellobiose phosphotransferase"],["EC%3A2.7.1.85","beta-glucoside kinase"],["EC%3A5.1.3.11","cellobiose epimerase"]],"b":[["A7_MEDIUM.yaml","a7_medium"],["ACETIVIBRIO_ALKALICELLULOSI_MEDIUM.yaml","acetivibrio_alkalicellulosi_medium"],["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["ALKALIFLEXUS_MEDIUM.yaml","alkaliflexus_medium"],["ANAEROBACTERIUM_MEDIUM.yaml","anaerobacterium_medium"],["ANAEROCELLUM_MEDIUM.yaml","anaerocellum_medium"]]},{"id":"CHEBI:18385","l":"thiamine(1+)","na":19,"nb":94,"a":[["EC%3A1.1.3.23","thiamine oxidase"],["EC%3A2.5.1.2","thiamine pyridinylase"],["EC%3A2.7.1.89","thiamine kinase"],["EC%3A2.7.6.2","thiamine diphosphokinase"],["EC%3A3.1.3.100","thiamine phosphate phosphatase"],["EC%3A3.5.99.2","aminopyrimidine aminohydrolase"]],"b":[["ANB_aerobic.yaml","anb_aerobic"],["AQUASPIRILLUM_MEDIUM.yaml","aquaspirillum_medium"],["Basic_mineral_medium.yaml","basic_mineral_medium"],["CHITINIVIBRIO_MEDIUM.yaml","chitinivibrio_medium"],["Chemically_defined_medium.yaml","chemically_defined_medium"],["Chromatium_Medium.yaml","chromatium_medium"]]},{"id":"CHEBI:16709","l":"pyridoxine","na":19,"nb":38,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16709","requires pyridoxine"],["EC%3A1.1.1.65","pyridoxine 4-dehydrogenase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.99.9","pyridoxine 5-dehydrogenase"],["EC%3A2.4.1.160","pyridoxine 5'-O-beta-D-glucosyltransferase"],["EC%3A2.7.1.35","pyridoxal kinase"]],"b":[["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["4_yaco_media.yaml","4_yaco_media"],["ANB_aerobic.yaml","anb_aerobic"],["AQUASPIRILLUM_MEDIUM.yaml","aquaspirillum_medium"],["BACTO_MIDDLEBROOK_7H9_BROTH.yaml","bacto_middlebrook_7h9_broth"],["Basic_mineral_medium.yaml","basic_mineral_medium"]]},{"id":"CHEBI:16235","l":"guanine","na":27,"nb":19,"a":[["EC%3A2.4.2.1","purine-nucleoside phosphorylase"],["EC%3A2.4.2.15","guanosine phosphorylase"],["EC%3A2.4.2.29","tRNA-guanosine(34) preQ1 transglycosylase"],["EC%3A2.4.2.48","tRNA-guanine(15) transglycosylase"],["EC%3A2.4.2.64","tRNA-guanosine(34) queuine transglycosylase"],["EC%3A2.4.2.8","hypoxanthine phosphoribosyltransferase"]],"b":[["MCD_Medium.yaml","mcd_medium"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"]]},{"id":"CHEBI:17997","l":"dinitrogen","na":18,"nb":904,"a":[["EC%3A1.18.6.1","nitrogenase"],["EC%3A1.18.6.2","vanadium-dependent nitrogenase"],["EC%3A1.19.6.1","nitrogenase (flavodoxin)"],["EC%3A1.7.2.4","nitrous-oxide reductase"],["EC%3A1.7.2.8","hydrazine dehydrogenase"],["RHEA%3A79967","3-diazoavenalumate + NADH + H(+) = avenalumate + N2 + NAD(+)"]],"b":[["1_2_sme_medium__5be55e13.yaml","1_2_sme_medium"],["1_2_tryptic_soy_broth_anaerobic.yaml","1_2_tryptic_soy_broth_anaerobic"],["480g_medium__e94698e7.yaml","480g_medium"],["8kg_4_medium.yaml","8kg_4_medium"],["ABSS2.yaml","abss2"],["ABYSSISOLIBACTER_MEDIUM.yaml","abyssisolibacter_medium"]]},{"id":"CHEBI:16899","l":"D-mannitol","na":17,"nb":18,"a":[["EC%3A1.1.1.138","mannitol 2-dehydrogenase (NADP(+))"],["EC%3A1.1.1.255","mannitol dehydrogenase"],["EC%3A1.1.1.67","mannitol 2-dehydrogenase"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.3.40","D-mannitol oxidase"],["EC%3A2.7.1.197","protein-N(pi)-phosphohistidine--D-mannitol phosphotransferase"]],"b":[["HETEROTROPHIC_MEDIUM_H3P.yaml","heterotrophic_medium_h3p"],["MGL.yaml","MGL"],["Modified_YM.yaml","Modified YM"],["NF.yaml","NF"],["NL-CCM.yaml","NL-CCM"],["NLDM_defined.yaml","NLDM_defined"]]},{"id":"CHEBI:17596","l":"inosine","na":32,"nb":16,"a":[["EC%3A1.1.3.28","nucleoside oxidase"],["EC%3A2.7.1.73","inosine kinase"],["EC%3A3.1.3.99","IMP-specific 5'-nucleotidase"],["EC%3A3.13.1.9","S-inosyl-L-homocysteine hydrolase"],["EC%3A3.2.2.2","inosine nucleosidase"],["EC%3A3.5.4.4","adenosine deaminase"]],"b":[["MCD_Medium.yaml","mcd_medium"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:29032","l":"(R)-pantothenate","na":15,"nb":135,"a":[["EC%3A2.7.1.33","pantothenate kinase"],["EC%3A3.5.1.22","pantothenase"],["EC%3A3.5.1.92","pantetheine hydrolase"],["EC%3A6.3.2.1","pantoate--beta-alanine ligase (AMP-forming)"],["EC%3A6.3.2.44","pantoate--beta-alanine ligase (ADP-forming)"],["RHEA%3A68332","(R)-4'-phosphopantothenate + H2O = (R)-pantothenate + phosphate"]],"b":[["AP11MH_medium.yaml","ap11mh_medium"],["ARCHAEOGLOBUS_FULGIDUS_MEDIUM.yaml","archaeoglobus_fulgidus_medium"],["AS_medium.yaml","as_medium"],["A_medium.yaml","a_medium"],["Artificial_seawater_medium_for_strain_JS_SRB250Lac.yaml","artificial_seawater_medium_for_strain_js_srb250lac"],["Cedears_Standard_Medium_2.yaml","cedears_standard_medium_2"]]},{"id":"CHEBI:17750","l":"glycine betaine","na":33,"nb":15,"a":[["EC%3A1.1.3.17","choline oxidase"],["EC%3A1.13.11.90","[1-hydroxy-2-(trimethylamino)ethyl]phosphonate dioxygenase (glycine- betaine-forming)"],["EC%3A1.14.13.251","glycine betaine monooxygenase"],["EC%3A1.2.1.8","betaine-aldehyde dehydrogenase"],["EC%3A1.21.4.4","betaine reductase"],["EC%3A2.1.1.157","sarcosine/dimethylglycine N-methyltransferase"]],"b":[["CUNICULIPLASMA_MEDIUM.yaml","cuniculiplasma_medium"],["MALEDIVIBACTER_MEDIUM.yaml","maledivibacter_medium"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"]]},{"id":"CHEBI:15428","l":"glycine","na":13,"nb":87,"a":[["MCSA%3A718","caspase-1"],["MCSA%3A599","dipeptidase E"],["MCSA%3A906","gelatinase A"],["MCSA%3A762","glycine C-acetyltransferase"],["MCSA%3A746","L-peptidase"],["MCSA%3A477","picornain 3C"]],"b":[["ACETOBACTEROIDES_GLYCINOPHILUS_MEDIUM.yaml","acetobacteroides_glycinophilus_medium"],["ACIDAMINOBACTER_MEDIUM.yaml","acidaminobacter_medium"],["ACIDAMINOCOCCUS_FERMENTANS_MEDIUM.yaml","acidaminococcus_fermentans_medium"],["ANT.yaml","ant"],["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"]]},{"id":"CHEBI:16040","l":"cytosine","na":17,"nb":13,"a":[["EC%3A2.4.2.57","AMP phosphorylase"],["EC%3A3.2.2.10","pyrimidine-5'-nucleotide nucleosidase"],["EC%3A3.2.2.8","ribosylpyrimidine nucleosidase"],["EC%3A3.5.1.135","N(4)-acetylcytidine amidohydrolase"],["EC%3A3.5.4.1","cytosine deaminase"],["RHEA%3A30075","CMP + H2O = cytosine + D-ribose 5-phosphate"]],"b":[["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:26271","l":"proline","na":12,"nb":19,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.15","The Betaine/Carnitine/Choline Transporter (BCCT) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"]],"b":[["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["cdm_lab_medium.yaml","cdm_lab_medium"],["complete_chemically_defined_medium.yaml","complete_chemically_defined_medium"],["minimal_chemically_defined_medium_his_pro_letort_2001.yaml","minimal_chemically_defined_medium_his_pro_letort_2001"]]},{"id":"CHEBI:16977","l":"L-alanine","na":11,"nb":51,"a":[["ARO%3A3004943","cycloserine resistant ald"],["ARO%3A3004946","cycloserine resistant alr"],["ARO%3A3004945","Mycobacterium tuberculosis ald mutations confer resistance to cycloserine"],["ARO%3A3004947","Mycobacterium tuberculosis alr with mutation conferring resistance to cycloserine"],["MCSA%3A609","alpha-lytic endopeptidase"],["MCSA%3A238","assemblin"]],"b":[["ANAEROTIGNUM_MEDIUM.yaml","anaerotignum_medium"],["BGDM.yaml","bgdm"],["CMM.yaml","cmm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MCD_Medium.yaml","mcd_medium"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"]]},{"id":"CHEBI:18067","l":"phylloquinone","na":11,"nb":38,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18067","requires phylloquinone"],["EC%3A1.14.14.78","phylloquinone omega-hydroxylase"],["EC%3A1.14.99.20","phylloquinone monooxygenase (2,3-epoxidizing)"],["EC%3A1.17.4.4","vitamin-K-epoxide reductase (warfarin-sensitive)"],["RHEA%3A57744","phylloquinol + [protein]-disulfide = phylloquinone + [protein]-dithiol"],["RHEA%3A16745","phylloquinone + AH2 + O2 = 2,3-epoxyphylloquinone + A + H2O"]],"b":[["BTU_MEDIUM.yaml","btu_medium"],["Brucella_agar_plates_supplemented_with_hemin_and_vitamin_K1.yaml","brucella_agar_plates_supplemented_with_hemin_and_vitamin_k1"],["COLON_EXTRACT_MEDIUM.yaml","colon_extract_medium"],["Chopped_meat_carbohydrates_with_rumen_fluid.yaml","chopped_meat_carbohydrates_with_rumen_fluid"],["EUBACTERIUM_LENTUM_MEDIUM.yaml","eubacterium_lentum_medium"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"]]},{"id":"CHEBI:17368","l":"hypoxanthine","na":28,"nb":11,"a":[["EC%3A1.17.1.4","xanthine dehydrogenase"],["EC%3A1.17.3.2","xanthine oxidase"],["EC%3A2.4.2.44","S-methyl-5'-thioinosine phosphorylase"],["EC%3A2.4.2.8","hypoxanthine phosphoribosyltransferase"],["EC%3A3.2.2.12","inosinate nucleosidase"],["EC%3A3.2.2.2","inosine nucleosidase"]],"b":[["CDM_LP.yaml","cdm_lp"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:16810","l":"2-oxoglutarate(2-)","na":672,"nb":10,"a":[["EC%3A1.1.1.286","isocitrate--homoisocitrate dehydrogenase"],["EC%3A1.1.1.399","2-oxoglutarate reductase"],["EC%3A1.1.1.41","isocitrate dehydrogenase (NAD(+))"],["EC%3A1.1.1.42","isocitrate dehydrogenase (NADP(+))"],["EC%3A1.1.5.13","(S)-2-hydroxyglutarate dehydrogenase"],["EC%3A1.1.99.2","L-2-hydroxyglutarate dehydrogenase"]],"b":[["BCYE_alpha_agar.yaml","bcye_alpha_agar"],["BM7_MEDIUM.yaml","bm7_medium"],["CTM_MEDIUM.yaml","ctm_medium"],["DinoMM_alphaKetoGlutAcid_NoNitrogen.yaml","DinoMM alphaKetoGlutAcid NoNitrogen"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"]]},{"id":"CHEBI:17712","l":"9H-xanthine","na":32,"nb":10,"a":[["EC%3A1.14.11.48","xanthine dioxygenase"],["EC%3A1.14.13.128","7-methylxanthine demethylase"],["EC%3A1.14.13.179","methylxanthine N(3)-demethylase"],["EC%3A1.17.1.4","xanthine dehydrogenase"],["EC%3A1.17.3.2","xanthine oxidase"],["EC%3A2.4.2.1","purine-nucleoside phosphorylase"]],"b":[["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["ZMB.yaml","ZMB"],["ZMB_ALS.yaml","ZMB ALS"]]},{"id":"CHEBI:18167","l":"alpha-maltose","na":9,"nb":41,"a":[["EC%3A5.1.3.21","maltose epimerase"],["EC%3A5.1.3.3","aldose 1-epimerase"],["RHEA%3A21228","alpha-maltose = beta-maltose"],["MCSA%3A479","4-alpha-glucanotransferase"],["MCSA%3A397","alpha-amylase"],["MCSA%3A905","glucan 1,4-alpha-maltohydrolase"]],"b":[["4_yaco_media.yaml","4_yaco_media"],["Chopped_Meat_Carbohydrate_Medium.yaml","chopped_meat_carbohydrate_medium"],["Chopped_Meat_Carbohydrate_Medium_w_Tween_80.yaml","chopped_meat_carbohydrate_medium_w_tween_80"],["Chopped_meat_carbohydrates_with_rumen_fluid.yaml","chopped_meat_carbohydrates_with_rumen_fluid"],["KTM_medium.yaml","ktm_medium"],["LACTOBACILLUS_PONTIS_MEDIUM.yaml","lactobacillus_pontis_medium"]]},{"id":"CHEBI:16857","l":"L-threonine","na":9,"nb":35,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.23","The Dicarboxylate/Amino Acid:Cation (Na+ or H+) Symporter (DAACS) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.42","The Hydroxy/Aromatic Amino Acid Permease (HAAAP) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"],["McAA_formate_No_pABA.yaml","McAA formate No pABA"],["Mops_medium.yaml","mops_medium"]]},{"id":"CHEBI:16704","l":"uridine","na":26,"nb":9,"a":[["EC%3A1.14.11.3","pyrimidine-deoxynucleoside 2'-dioxygenase"],["EC%3A2.4.2.2","pyrimidine-nucleoside phosphorylase"],["EC%3A2.4.2.3","uridine phosphorylase"],["EC%3A2.7.1.48","uridine/cytidine kinase"],["EC%3A3.2.2.3","uridine nucleosidase"],["EC%3A3.2.2.8","ribosylpyrimidine nucleosidase"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"]]},{"id":"CHEBI:18019","l":"L-lysine","na":8,"nb":32,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A2.A.53","The Sulfate Permease (SulP) Family"],["MCSA%3A746","L-peptidase"],["MCSA%3A786","peptidyl-Lys metalloendopeptidase"],["MCSA%3A597","ubiquitinyl hydrolase 1 (peptidase C12 type)"]],"b":[["Chamberlain_CDM.yaml","chamberlain_cdm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"],["McAA_formate_No_pABA.yaml","McAA formate No pABA"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"]]},{"id":"CHEBI:17562","l":"cytidine","na":25,"nb":8,"a":[["EC%3A2.7.1.213","cytidine kinase"],["EC%3A2.7.1.48","uridine/cytidine kinase"],["EC%3A3.1.3.91","7-methylguanosine nucleotidase"],["EC%3A3.2.2.8","ribosylpyrimidine nucleosidase"],["EC%3A3.5.1.135","N(4)-acetylcytidine amidohydrolase"],["EC%3A3.5.4.5","cytidine deaminase"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"]]},{"id":"CHEBI:17748","l":"thymidine","na":21,"nb":8,"a":[["EC%3A2.4.2.2","pyrimidine-nucleoside phosphorylase"],["EC%3A2.4.2.4","thymidine phosphorylase"],["EC%3A2.7.1.114","AMP--thymidine kinase"],["EC%3A2.7.1.118","ADP--thymidine kinase"],["EC%3A2.7.1.145","deoxynucleoside kinase"],["EC%3A2.7.1.21","thymidine kinase"]],"b":[["CHI_1776_MEDIUM.yaml","chi_1776_medium"],["MCD_Medium.yaml","mcd_medium"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"],["Soil_Defined_Media_%28SDM%29.yaml","Soil Defined Media (SDM)"],["cdm_lab_medium.yaml","cdm_lab_medium"],["cdm_teusink_et_al.yaml","cdm_teusink_et_al"]]},{"id":"CHEBI:16335","l":"adenosine","na":35,"nb":7,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16335","requires vitamin B12"],["EC%3A1.1.3.39","nucleoside oxidase (H2O2-forming)"],["EC%3A2.7.1.114","AMP--thymidine kinase"],["EC%3A2.7.1.20","adenosine kinase"],["EC%3A3.13.2.1","adenosylhomocysteinase"],["EC%3A3.13.2.3","(R)-S-adenosyl-L-methionine hydrolase (adenosine-forming)"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"]]},{"id":"CHEBI:30742","l":"ethylene glycol","na":7,"nb":21,"a":[["EC%3A3.1.1.102","mono(ethylene terephthalate) hydrolase"],["RHEA%3A42648","(2,5-ethylene furandicarboxylate)(n) + 2 H2O = (2,5-ethylene furandicarboxylate)(n-1) + 2,5-dicarboxyfuran + ethylene glycol + 2 H(+)"],["RHEA%3A49532","4-[(2-hydroxyethoxy)carbonyl]benzoate + H2O = terephthalate + ethylene glycol + H(+)"],["RHEA%3A80759","bis(2-hydroxyethyl) terephthalate + H2O = 4-[(2-hydroxyethoxy)carbonyl]benzoate + ethylene glycol + H(+)"],["RHEA%3A27630","ethylene glycol + NAD(+) = glycolaldehyde + NADH + H(+)"],["MCSA%3A847","epoxide hydrolase"]],"b":[["acetobacterium_medium_marine.yaml","acetobacterium_medium_marine"],["bm_in_arabinose_hodgson_et_al.yaml","bm_in_arabinose_hodgson_et_al"],["bm_in_cellobiose_hodgson_et_al.yaml","bm_in_cellobiose_hodgson_et_al"],["bm_in_fructose_hodgson_et_al.yaml","bm_in_fructose_hodgson_et_al"],["bm_in_galactose_hodgson_et_al.yaml","bm_in_galactose_hodgson_et_al"],["bm_in_glucose_hodgson_et_al.yaml","bm_in_glucose_hodgson_et_al"]]},{"id":"CHEBI:17578","l":"toluene","na":13,"nb":7,"a":[["EC%3A1.14.12.11","toluene dioxygenase"],["EC%3A1.14.13.236","toluene 4-monooxygenase"],["EC%3A1.14.13.243","toluene 2-monooxygenase"],["EC%3A1.14.15.26","toluene methyl-monooxygenase"],["EC%3A4.1.1.119","phenylacetate decarboxylase"],["EC%3A4.1.99.11","benzylsuccinate synthase"]],"b":[["FRESHWATER_MEDIUM_WITH_TOLUENE.yaml","freshwater_medium_with_toluene"],["GEORGFUCHSIA_MEDIUM.yaml","georgfuchsia_medium"],["Modified_m9_with_toluene.yaml","modified_m9_with_toluene"],["defined_freshwater_medium_cocl2__6b305113.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__35d08dce.yaml","defined_freshwater_medium_coso4"],["freshwater_medium_with_toluene__185c443d.yaml","freshwater_medium_with_toluene"]]},{"id":"CHEBI:506227","l":"N-acetyl-D-glucosamine","na":44,"nb":6,"a":[["EC%3A1.1.3.29","N-acylhexosamine oxidase"],["EC%3A2.3.1.3","glucosamine N-acetyltransferase"],["EC%3A2.4.1.211","1,3-beta-galactosyl-N-acetylhexosamine phosphorylase"],["EC%3A2.4.1.280","N,N'-diacetylchitobiose phosphorylase"],["EC%3A2.4.1.320","1,4-beta-mannosyl-N-acetylglucosamine phosphorylase"],["EC%3A2.4.1.90","N-acetyllactosamine synthase"]],"b":[["ANAEROBACCA_MEDIUM.yaml","anaerobacca_medium"],["BSK_MEDIUM.yaml","bsk_medium"],["NATRONOARCHAEA_MEDIUM_WITH_GLUCOSAMINE.yaml","natronoarchaea_medium_with_glucosamine"],["barbour_sfoenner_kelly_bsk_ii_medium.yaml","barbour_sfoenner_kelly_bsk_ii_medium"],["m30__354deb2e.yaml","m30"],["modified_bsk_medium__578ddf1c.yaml","modified_bsk_medium"]]},{"id":"CHEBI:24996","l":"lactate","na":23,"nb":6,"a":[["EC%3A1.1.1.436","lactate dehydrogenase (NAD(+),ferredoxin)"],["EC%3A3.5.1.124","protein deglycase"],["RHEA%3A57300","an N(2)-(1-hydroxy-2-oxopropyl)-2'-deoxyguanosine in DNA + H2O = a 2'-deoxyguanosine in DNA + lactate + H(+)"],["RHEA%3A57288","an N(2)-(1-hydroxy-2-oxopropyl)-guanosine in RNA + H2O = a guanosine in RNA + lactate + H(+)"],["RHEA%3A46964","lactate + 2 reduced [2Fe-2S]-[ferredoxin] + 2 NAD(+) = 2 oxidized [2Fe-2S]-[ferredoxin] + pyruvate + 2 NADH"],["RHEA%3A57244","N(2)-(1-hydroxy-2-oxopropyl)-dGTP + H2O = lactate + dGTP + H(+)"]],"b":[["ARCOBACTER_ANAEROPHILUS_MEDIUM.yaml","arcobacter_anaerophilus_medium"],["defined_freshwater_medium_cocl2__f0ffbcc6.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__41b1d433.yaml","defined_freshwater_medium_coso4"],["fermentation_medium_lactate_nh4cl.yaml","fermentation_medium_lactate_nh4cl"],["modified_m1_medium_with_20_mm_lactate_pinchuk_et_al.yaml","modified_m1_medium_with_20_mm_lactate_pinchuk_et_al"],["modified_m1_medium_with_lactate_and_glycine_no_nh4cl.yaml","modified_m1_medium_with_lactate_and_glycine_no_nh4cl"]]},{"id":"CHEBI:22653","l":"asparagine","na":6,"nb":21,"a":[["TCDB%3A2.A.25","The Alanine or Glycine:Cation Symporter (AGCS) Family"],["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.13","The C4-Dicarboxylate Uptake (Dcu) Family"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["CDM_LP.yaml","cdm_lp"],["HALOACTINOMYCES_HALOPHILUS_MEDIUM.yaml","haloactinomyces_halophilus_medium"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["MYKORRHIZA_MEDIUM.yaml","mykorrhiza_medium"]]},{"id":"CHEBI:28645","l":"beta-D-fructofuranose","na":6,"nb":20,"a":[["EC%3A2.7.1.3","ketohexokinase"],["EC%3A3.2.1.48","sucrose alpha-glucosidase"],["RHEA%3A18145","beta-D-fructose + ATP = beta-D-fructose 1-phosphate + ADP + H(+)"],["RHEA%3A33791","sucrose 6(F)-phosphate + H2O = beta-D-fructose + beta-D-glucose 6-phosphate"],["RHEA%3A33795","sucrose + H2O = beta-D-fructose + alpha-D-glucose"],["proteintraitsmech%3ABIOLIP_FRU","FRU-binding site"]],"b":[["Clostridium_medium.yaml","clostridium_medium"],["FYP_medium.yaml","fyp_medium"],["Green_Sulfur_Bacterium_Medium.yaml","green_sulfur_bacterium_medium"],["Liquid_Fermentation_Medium.yaml","liquid_fermentation_medium"],["M1D_Medium.yaml","m1d_medium"],["MOORELLA_AN10_MEDIUM.yaml","moorella_an10_medium"]]},{"id":"CHEBI:18246","l":"(1->4)-beta-D-glucan","na":6,"nb":15,"a":[["EC%3A2.4.1.12","cellulose synthase (UDP-forming)"],["EC%3A2.4.1.29","cellulose synthase (GDP-forming)"],["EC%3A2.4.1.49","cellodextrin phosphorylase"],["RHEA%3A17797","[(1->4)-beta-D-glucosyl](n) + GDP-alpha-D-glucose = [(1->4)-beta-D-glucosyl](n+1) + GDP + H(+)"],["RHEA%3A23024","[(1->4)-beta-D-glucosyl](n) + phosphate = [(1->4)-beta-D-glucosyl](n-1) + alpha-D-glucose 1-phosphate"],["RHEA%3A19929","[(1->4)-beta-D-glucosyl](n) + UDP-alpha-D-glucose = [(1->4)-beta-D-glucosyl](n+1) + UDP + H(+)"]],"b":[["ACETIVIBRIO_CELLULOLYTICUS_MEDIUM.yaml","acetivibrio_cellulolyticus_medium"],["CLOSTRIDIUM_CELLULOVORANS_MEDIUM.yaml","clostridium_cellulovorans_medium"],["Clostridium_Cellulolytic_medium.yaml","clostridium_cellulolytic_medium"],["HALOCELLA_CELLULOLYTICA_MEDIUM.yaml","halocella_cellulolytica_medium"],["RUMINICLOSTRIDIUM_CELLOBIOPARUM_MEDIUM.yaml","ruminiclostridium_cellobioparum_medium"],["RUMINICLOSTRIDIUM_PAPYROSOLVENS_MEDIUM.yaml","ruminiclostridium_papyrosolvens_medium"]]},{"id":"CHEBI:17439","l":"cyanocob(III)alamin","na":5,"nb":187,"a":[["EC%3A1.16.1.6","cyanocobalamin reductase"],["RHEA%3A16113","2 cob(II)alamin-[cyanocobalamin reductase] + 2 hydrogen cyanide + NADP(+) = 2 cyanocob(III)alamin + 2 apo-[cyanocobalamin reductase] + NADPH + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["TCDB%3A9.B.87","The Selenoprotein P Receptor (SelP-Receptor) Family"]],"b":[["2ASW.yaml","2asw"],["2asw__59e92e67.yaml","2asw"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["3n_bbm_v_recipe_for_customer_orders.yaml","3n_bbm_v_recipe_for_customer_orders"],["ACY.yaml","ACY"],["ALP_defined.yaml","ALP defined"]]},{"id":"CHEBI:16750","l":"guanosine","na":19,"nb":5,"a":[["EC%3A2.4.2.1","purine-nucleoside phosphorylase"],["EC%3A2.4.2.15","guanosine phosphorylase"],["EC%3A2.7.1.73","inosine kinase"],["EC%3A3.5.4.15","guanosine deaminase"],["RHEA%3A27862","3'-GMP + H2O = guanosine + phosphate"],["RHEA%3A27714","GMP + H2O = guanosine + phosphate"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:18107","l":"xanthosine","na":9,"nb":5,"a":[["EC%3A2.1.1.158","7-methylxanthosine synthase"],["EC%3A2.4.2.1","purine-nucleoside phosphorylase"],["EC%3A3.5.4.15","guanosine deaminase"],["RHEA%3A12861","guanosine + H2O + H(+) = xanthosine + NH4(+)"],["RHEA%3A27994","xanthosine + H2O = D-ribose + xanthine"],["RHEA%3A28939","xanthosine(in) + H(+)(in) = xanthosine(out) + H(+)(out)"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:16634","l":"raffinose","na":8,"nb":5,"a":[["EC%3A2.4.1.166","raffinose--raffinose alpha-galactosyltransferase"],["EC%3A2.4.1.67","galactinol--raffinose galactosyltransferase"],["EC%3A2.4.1.82","galactinol--sucrose galactosyltransferase"],["RHEA%3A14125","2 raffinose = 1(F)-alpha-D-galactosylraffinose + sucrose"],["RHEA%3A20776","alpha-D-galactosyl-(1->3)-1D-myo-inositol + raffinose = stachyose + myo-inositol"],["RHEA%3A20161","alpha-D-galactosyl-(1->3)-1D-myo-inositol + sucrose = raffinose + myo-inositol"]],"b":[["MYXOCOCCUS_FLAVESCENS_MEDIUM.yaml","myxococcus_flavescens_medium"],["Modified_SP_Medium.yaml","modified_sp_medium"],["SP_Medium.yaml","sp_medium"],["myxococcus_flavescens_medium__aa6b37a2.yaml","myxococcus_flavescens_medium"],["sp_medium__3b598fd8.yaml","sp_medium"]]},{"id":"CHEBI:16865","l":"gamma-aminobutyric acid","na":5,"nb":6,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A2.A.42","The Hydroxy/Aromatic Amino Acid Permease (HAAAP) Family"],["TCDB%3A2.A.22","The Neurotransmitter:Sodium Symporter (NSS) Family"],["proteintraitsmech%3ABIOLIP_ABU","ABU-binding site"]],"b":[["CLOSTRIDIUM_AMINOBUTYRICUM_MEDIUM.yaml","clostridium_aminobutyricum_medium"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:28911","l":"cob(III)alamin","na":6,"nb":5,"a":[["RHEA%3A81907","(2R,3R,5R)-2-(S-pantetheinyl)-carbapenam-3-carboxylate + methylcob(III)alamin + S-adenosyl-L-methionine = (2R,3R,5S,6R)-6-(methyl)-2-(S-pantetheinyl)-carbapenam-3-carboxylate + cob(III)alamin + 5'-deoxyadenosine + L-methionine"],["RHEA%3A81911","(2R,3R,5S,6R)-6-(methyl)-2-(S-pantetheinyl)-carbapenam-3-carboxylate + methylcob(III)alamin + S-adenosyl-L-methionine = (2R,3R,5S,6R)-6-(ethyl)-2-(S-pantetheinyl)-carbapenam-3-carboxylate + cob(III)alamin + 5'-deoxyadenosine + L-methionine"],["RHEA%3A76471","cob(III)alamin + AH2 = cob(I)alamin + A + 2 H(+)"],["RHEA%3A81883","cytidine 5'-{[hydroxy(2-hydroxyethyl)phosphonoyl]phosphate} + methylcob(III)alamin + S-adenosyl-L-methionine = cytidine 5'-({hydroxy[(S)-2-hydroxypropyl]phosphonoyl}phosphate) + cob(III)alamin + 5'-deoxyadenosine + L-methionine"],["RHEA%3A77223","gentamicin X2 + methylcob(III)alamin + S-adenosyl-L-methionine = geneticin + cob(III)alamin + 5'-deoxyadenosine + L-methionine"],["RHEA%3A81891","N-acetyl-demethyl-L-phosphinothricin + methylcob(III)alamin + S-adenosyl-L-methionine = N-acetyl-L-phosphinothricin + cob(III)alamin + 5'-deoxyadenosine + L-methionine"]],"b":[["MEDIUM_for_SM250.yaml","medium_for_sm250"],["Medium_YCFAGSC.yaml","medium_ycfagsc"],["Medium_for_Freshwater_Flexibacteria.yaml","medium_for_freshwater_flexibacteria"],["Standard_PETC_medium.yaml","standard_petc_medium"],["YCFAG_medium.yaml","ycfag_medium"]]},{"id":"CHEBI:17191","l":"L-isoleucine","na":4,"nb":65,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.26","The Branched Chain Amino Acid:Cation Symporter (LIVCS) Family"],["proteintraitsmech%3ABIOLIP_ILE","ILE-binding site"]],"b":[["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["CTM_MEDIUM.yaml","ctm_medium"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MCD_Medium.yaml","mcd_medium"]]},{"id":"CHEBI:17879","l":"4-hydroxybenzoate","na":57,"nb":4,"a":[["EC%3A1.13.11.41","2,4'-dihydroxyacetophenone dioxygenase"],["EC%3A1.14.13.2","4-hydroxybenzoate 3-monooxygenase"],["EC%3A1.14.13.33","4-hydroxybenzoate 3-monooxygenase [NAD(P)H]"],["EC%3A1.14.13.64","4-hydroxybenzoate 1-hydroxylase"],["EC%3A1.14.14.92","benzoate 4-monooxygenase"],["EC%3A1.14.19.55","4-hydroxybenzoate brominase (decarboxylating)"]],"b":[["DIETHYL_PHOSPHONATE_MEDIUM.yaml","diethyl_phosphonate_medium"],["defined_freshwater_medium_cocl2__140b53e4.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__7cf7eff3.yaml","defined_freshwater_medium_coso4"],["nutrient_medium_p_hydroxybenzoate.yaml","nutrient_medium_p_hydroxybenzoate"]]},{"id":"CHEBI:16870","l":"choline alfoscerate","na":48,"nb":4,"a":[["EC%3A3.1.1.5","lysophospholipase"],["EC%3A3.1.4.2","glycerophosphocholine phosphodiesterase"],["EC%3A3.1.4.38","glycerophosphocholine cholinephosphodiesterase"],["EC%3A3.3.2.2","lysoplasmalogenase"],["RHEA%3A40835","1,2-di-(9Z-octadecenoyl)-sn-glycero-3-phosphocholine + 2 H2O = sn-glycerol 3-phosphocholine + 2 (9Z)-octadecenoate + 2 H(+)"],["RHEA%3A40975","1,2-dihexadecanoyl-sn-glycero-3-phosphocholine + 2 H2O = sn-glycerol 3-phosphocholine + 2 hexadecanoate + 2 H(+)"]],"b":[["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:18050","l":"L-glutamine","na":4,"nb":42,"a":[["MCSA%3A596","deuterolysin"],["MCSA%3A477","picornain 3C"],["MCSA%3A763","picornain 3C"],["proteintraitsmech%3ABIOLIP_GLN","GLN-binding site"]],"b":[["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"],["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"],["GLUTAMINE_MEDIUM.yaml","glutamine_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"]]},{"id":"CHEBI:17115","l":"L-serine","na":4,"nb":41,"a":[["MCSA%3A609","alpha-lytic endopeptidase"],["MCSA%3A238","assemblin"],["MCSA%3A688","classical-complement-pathway C3/C5 convertase"],["proteintraitsmech%3ABIOLIP_SER","SER-binding site"]],"b":[["AMINOMONAS_MEDIUM.yaml","aminomonas_medium"],["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"]]},{"id":"CHEBI:17925","l":"alpha-D-glucose","na":35,"nb":4,"a":[["EC%3A2.4.1.231","alpha,alpha-trehalose phosphorylase (configuration-retaining)"],["EC%3A3.1.3.58","sugar-terminal-phosphatase"],["EC%3A3.1.3.9","glucose-6-phosphatase"],["EC%3A3.2.1.10","oligo-1,6-glucosidase"],["EC%3A3.2.1.219","palatinase"],["EC%3A3.2.1.28","alpha,alpha-trehalase"]],"b":[["CDMM.yaml","cdmm"],["MDM.yaml","mdm"],["MM3.yaml","mm3"],["tsb_glucose_medium.yaml","tsb_glucose_medium"]]},{"id":"CHEBI:28869","l":"menadione","na":4,"nb":34,"a":[["RHEA%3A35611","menadiol + 2 O2 = menadione + 2 superoxide + 2 H(+)"],["RHEA%3A69695","menadione + NADH + H(+) = menadiol + NAD(+)"],["RHEA%3A63492","menadione + NADPH + H(+) = menadiol + NADP(+)"],["proteintraitsmech%3ABIOLIP_VK3","VK3-binding site"]],"b":[["ABB.yaml","ABB"],["ACY.yaml","ACY"],["BGDM.yaml","bgdm"],["BHIS.yaml","bhis"],["BHIS_K3.yaml","BHIS_K3"],["BHIS_K3_noGlucose.yaml","BHIS_K3_noGlucose"]]},{"id":"CHEBI:15882","l":"phenol","na":31,"nb":4,"a":[["EC%3A1.14.13.244","phenol 2-monooxygenase (NADH)"],["EC%3A1.14.13.7","phenol 2-monooxygenase (NADPH)"],["EC%3A1.14.14.20","phenol 2-monooxygenase (FADH2)"],["EC%3A2.1.1.25","phenol O-methyltransferase"],["EC%3A2.4.2.55","nicotinate D-ribonucleotide:phenol phospho-D-ribosyltransferase"],["EC%3A2.7.1.238","phenol phosphorylase"]],"b":[["MEDIUM_FOR_BACILLUS_STEAROTHERMOPHILUS.yaml","medium_for_bacillus_stearothermophilus"],["anaerobic_bicarbonate_buffered_medium_with_phenol.yaml","anaerobic_bicarbonate_buffered_medium_with_phenol"],["defined_freshwater_medium_cocl2__ac506908.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__0930ab53.yaml","defined_freshwater_medium_coso4"]]},{"id":"CHEBI:28262","l":"dimethyl sulfoxide","na":14,"nb":4,"a":[["EC%3A1.14.13.245","assimilatory dimethylsulfide S-monooxygenase"],["EC%3A1.8.1.17","dimethylsulfone reductase"],["EC%3A1.8.2.4","dimethyl sulfide:cytochrome c2 reductase"],["EC%3A1.8.5.3","respiratory dimethylsulfoxide reductase"],["RHEA%3A30587","2-demethylmenaquinol-8 + dimethyl sulfoxide = 2-demethylmenaquinone-8 + dimethyl sulfide + H2O"],["RHEA%3A30227","2 Fe(III)-[cytochrome c2] + dimethyl sulfide + H2O = 2 Fe(II)-[cytochrome c2] + dimethyl sulfoxide + 2 H(+)"]],"b":[["MINERAL_MEDIUM_WITH_DIBENZOFURAN.yaml","mineral_medium_with_dibenzofuran"],["SYNBIOBACTERIUM_KA13_MEDIUM.yaml","synbiobacterium_ka13_medium"],["mineral_medium_with_2_chlorobenzoate.yaml","mineral_medium_with_2_chlorobenzoate"],["synbiobacterium_ka13_medium__e7f47e80.yaml","synbiobacterium_ka13_medium"]]},{"id":"CHEBI:16856","l":"glutathione","na":4,"nb":11,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16856","requires glutathione"],["MCSA%3A359","lactoglutathione lyase"],["MCSA%3A32","lactoylglutathione lyase"],["proteintraitsmech%3ABIOLIP_GSH","GSH-binding site"]],"b":[["CDM_LP.yaml","cdm_lp"],["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"],["Modified_D58_medium.yaml","modified_d58_medium"],["SULFOBACILLUS_DISULFIDOOXIDANS_MEDIUM.yaml","sulfobacillus_disulfidooxidans_medium"],["clostridium_thermocellum_medium__d9fc1f82.yaml","clostridium_thermocellum_medium"]]},{"id":"CHEBI:9532","l":"thiamine(1+) diphosphate","na":8,"nb":4,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_9532","requires thiamine(1+) diphosphate"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"],["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["CTM_MEDIUM.yaml","ctm_medium"],["MODIFIED_NOS_MEDIUM.yaml","modified_nos_medium"],["TREPONEMA_ISOPTEROCOLA_MEDIUM.yaml","treponema_isopterocola_medium"],["glucose_sulfide_medium__486fbf43.yaml","glucose_sulfide_medium"]]},{"id":"CHEBI:17015","l":"riboflavin","na":3,"nb":1290,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17015","requires riboflavin"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_RBF","RBF-binding site"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"]]},{"id":"CHEBI:27470","l":"folic acid","na":3,"nb":1262,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_27470","requires folic acid"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["proteintraitsmech%3ABIOLIP_FOL","FOL-binding site"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2ASW.yaml","2asw"]]},{"id":"CHEBI:16113","l":"cholesterol","na":82,"nb":3,"a":[["EC%3A1.1.3.6","cholesterol oxidase"],["EC%3A1.14.14.23","cholesterol 7alpha-monooxygenase"],["EC%3A1.14.14.25","cholesterol 24-hydroxylase"],["EC%3A1.14.15.6","cholesterol monooxygenase (side-chain-cleaving)"],["EC%3A1.14.19.21","cholesterol 7-desaturase"],["EC%3A1.14.99.38","cholesterol 25-monooxygenase"]],"b":[["CDM_LP.yaml","cdm_lp"],["Nematode_growth_medium_agar.yaml","Nematode growth medium agar"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:16015","l":"L-glutamic acid","na":3,"nb":73,"a":[["MCSA%3A747","gamma-glutamyl hydrolase"],["proteintraitsmech%3ABIOLIP_GGL","GGL-binding site"],["proteintraitsmech%3ABIOLIP_GLU","GLU-binding site"]],"b":[["7H9.yaml","7H9"],["BACTO_MIDDLEBROOK_7H9_BROTH.yaml","bacto_middlebrook_7h9_broth"],["BGDM.yaml","bgdm"],["Bacillus_Medium.yaml","bacillus_medium"],["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"]]},{"id":"CHEBI:16643","l":"L-methionine","na":3,"nb":68,"a":[["MCSA%3A917","methionyl aminopeptidase"],["MCSA%3A965","Viperin"],["proteintraitsmech%3ABIOLIP_MET","MET-binding site"]],"b":[["Basic_mineral_medium.yaml","basic_mineral_medium"],["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MDM.yaml","mdm"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"]]},{"id":"CHEBI:17295","l":"L-phenylalanine","na":3,"nb":63,"a":[["MCSA%3A595","scytalidopepsin B"],["MCSA%3A598","streptopain"],["proteintraitsmech%3ABIOLIP_PHE","PHE-binding site"]],"b":[["BGDM.yaml","bgdm"],["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["CTM_MEDIUM.yaml","ctm_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["M9_minimal_media_aromix_noCarbon.yaml","M9 minimal media aromix noCarbon"]]},{"id":"CHEBI:16467","l":"L-arginine","na":3,"nb":51,"a":[["MCSA%3A688","classical-complement-pathway C3/C5 convertase"],["MCSA%3A425","plasmin"],["MCSA%3A798","t-plasminogen activator"]],"b":[["ABB.yaml","ABB"],["ACY.yaml","ACY"],["CAENICOLA_MOBILE_MEDIUM.yaml","caenicola_mobile_medium"],["CMM.yaml","cmm"],["CTM_MEDIUM.yaml","ctm_medium"],["Chamberlain_CDM.yaml","chamberlain_cdm"]]},{"id":"CHEBI:17203","l":"L-proline","na":3,"nb":48,"a":[["MCSA%3A403","astacin"],["MCSA%3A379","Xaa-Pro aminopeptidase"],["proteintraitsmech%3ABIOLIP_PRO","PRO-binding site"]],"b":[["CDM_LP.yaml","cdm_lp"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MDM.yaml","mdm"],["MEIOTHERMUS_MEDIUM_R8.yaml","meiothermus_medium_r8"]]},{"id":"CHEBI:18135","l":"catechol","na":47,"nb":3,"a":[["EC%3A1.1.3.14","catechol oxidase (dimerizing)"],["EC%3A1.10.3.1","catechol oxidase"],["EC%3A1.13.11.1","catechol 1,2-dioxygenase"],["EC%3A1.13.11.2","catechol 2,3-dioxygenase"],["EC%3A1.14.12.1","anthranilate 1,2-dioxygenase (deaminating, decarboxylating)"],["EC%3A1.14.12.13","2-halobenzoate 1,2-dioxygenase"]],"b":[["DESULFOBACTERIUM_CATECHOLICUM_MEDIUM.yaml","desulfobacterium_catecholicum_medium"],["DESULFOCASTAENA_MEDIUM.yaml","desulfocastaena_medium"],["desulfobacterium_catecholicum_medium__b7c6198a.yaml","desulfobacterium_catecholicum_medium"]]},{"id":"CHEBI:17053","l":"L-aspartic acid","na":3,"nb":21,"a":[["MCSA%3A718","caspase-1"],["MCSA%3A599","dipeptidase E"],["proteintraitsmech%3ABIOLIP_ASP","ASP-binding site"]],"b":[["CTM_MEDIUM.yaml","ctm_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["McAA_formate_No_pABA.yaml","McAA formate No pABA"],["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"]]},{"id":"CHEBI:15595","l":"malate(2-)","na":15,"nb":3,"a":[["RHEA%3A72015","malate + 6 malonyl-CoA + acetyl-CoA + 2 AH2 + 2 S-adenosyl-L-methionine + 5 NADPH + 9 H(+) = trihazone A + 2 A + 2 S-adenosyl-L-homocysteine + 6 CO2 + 5 NADP(+) + 7 CoA + 6 H2O"],["RHEA%3A72295","malate(out) + 3 Na(+)(out) = malate(in) + 3 Na(+)(in)"],["TCDB%3A2.A.24","The 2-Hydroxycarboxylate Transporter (2-HCT) Family"],["TCDB%3A2.A.85","The Aromatic Acid Exporter (ArAE) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.69","The Auxin Efflux Carrier (AEC) Family"]],"b":[["HETEROTROPHIC_MEDIUM_H3P.yaml","heterotrophic_medium_h3p"],["diazotrophic_medium_rba.yaml","diazotrophic_medium_rba"],["rhodobacter_marinus_medium_nkpb.yaml","rhodobacter_marinus_medium_nkpb"]]},{"id":"CHEBI:15846","l":"NAD(+)","na":14,"nb":3,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15846","requires NAD+"],["ARO%3A3002846","arr-1"],["ARO%3A3002847","arr-2"],["ARO%3A3002848","arr-3"],["ARO%3A3002849","arr-4"],["ARO%3A3002850","arr-5"]],"b":[["Vulcanimicrobium_alpinus_medium.yaml","vulcanimicrobium_alpinus_medium"],["ctm_medium__057c0b18.yaml","ctm_medium"],["treponema_isopterocola_medium__e7b07692.yaml","treponema_isopterocola_medium"]]},{"id":"CHEBI:18237","l":"glutamic acid","na":3,"nb":13,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["ACANTHAMOEBA_MEDIUM.yaml","acanthamoeba_medium"],["HALISCOMENOBACTER_MEDIUM.yaml","haliscomenobacter_medium"],["LENTIBACILLUS_MEDIUM.yaml","lentibacillus_medium"],["McAA_formate_No_pABA.yaml","McAA formate No pABA"],["NATRONOBACTERIUM_MEDIUM.yaml","natronobacterium_medium"],["PSA_medium.yaml","psa_medium"]]},{"id":"CHEBI:30911","l":"glucitol","na":3,"nb":11,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A4.A.4","The PTS Glucitol (Gut) Family"]],"b":[["M1D_Medium.yaml","m1d_medium"],["Modified_Rhodobacter_Spaeroides_Medium.yaml","modified_rhodobacter_spaeroides_medium"],["RHODOBACTER_SPHAEROIDES_MEDIUM.yaml","rhodobacter_sphaeroides_medium"],["RHODOBIUM_GOKURNUM_MEDIUM.yaml","rhodobium_gokurnum_medium"],["RHODOVULUM_MARINUM_MEDIUM.yaml","rhodovulum_marinum_medium"],["RHODOVULUM_VISAKHUM_MEDIUM.yaml","rhodovulum_visakhum_medium"]]},{"id":"CHEBI:22599","l":"arabinose","na":5,"nb":3,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.B.142","The Integral membrane Glycosyltransferase family 39 (GT39) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A9.B.28","The Putative Essential Component of the MusEFGKI ABC Transporter, MusI (MusI) Family"],["TCDB%3A2.A.21","The Solute:Sodium Symporter (SSS) Family"]],"b":[["MAG_Modified_arabinose_gluconate_medium.yaml","mag_modified_arabinose_gluconate_medium"],["mrs_medium__1506cddd.yaml","mrs_medium"],["togo_medium_m1594.yaml","togo_medium_m1594"]]},{"id":"CHEBI:16238","l":"FAD","na":4,"nb":3,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16238","requires FAD"],["MCSA%3A968","aldehyde oxidase"],["MCSA%3A969","Phytoene desaturase (lycopene-forming)"],["proteintraitsmech%3ABIOLIP_FAD","FAD-binding site"]],"b":[["HELMUTKOENIGIA_MEDIUM.yaml","helmutkoenigia_medium"],["TREPONEMA_ISOPTEROCOLA_MEDIUM.yaml","treponema_isopterocola_medium"],["treponema_isopterocola_medium__e7b07692.yaml","treponema_isopterocola_medium"]]},{"id":"CHEBI:16482","l":"naphthalene","na":3,"nb":3,"a":[["EC%3A1.14.12.12","naphthalene 1,2-dioxygenase"],["RHEA%3A19173","naphthalene + NADH + O2 + H(+) = (1R,2S)-1,2-dihydronaphthalene-1,2-diol + NAD(+)"],["MCSA%3A130","naphthalene 1,2-dioxygenase"]],"b":[["DESULFOBACTERIUM_NAPHTHALENIVOLANS_MEDIUM.yaml","desulfobacterium_naphthalenivolans_medium"],["LB_Medium_with_50_ppm_Naphthalene.yaml","lb_medium_with_50_ppm_naphthalene"],["desulfobacterium_naphthalenivolans_medium__c96254de.yaml","desulfobacterium_naphthalenivolans_medium"]]},{"id":"CHEBI:32816","l":"pyruvic acid","na":3,"nb":3,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_32816","requires pyruvic acid"],["MCSA%3A449","cystathionine beta-lyase"],["proteintraitsmech%3ABIOLIP_PYR","PYR-binding site"]],"b":[["ALGORIPHAGUS_ALKALIPHILUS_MEDIUM.yaml","algoriphagus_alkaliphilus_medium"],["modified_mrs.yaml","modified_mrs"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:15956","l":"biotin","na":2,"nb":1645,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15956","requires biotin"],["proteintraitsmech%3ABIOLIP_BTN","BTN-binding site"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2ASW.yaml","2asw"]]},{"id":"CHEBI:15940","l":"nicotinic acid","na":2,"nb":1433,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15940","requires nicotinic acid"],["proteintraitsmech%3ABIOLIP_NIO","NIO-binding site"]],"b":[["0_3_x_hyphomicrobium_medium.yaml","0_3_x_hyphomicrobium_medium"],["0_3_x_hyphomicrobium_medium__ea4b6083.yaml","0_3_x_hyphomicrobium_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2ASW.yaml","2asw"],["2asw__59e92e67.yaml","2asw"]]},{"id":"CHEBI:30753","l":"4-aminobenzoic acid","na":2,"nb":1350,"a":[["TCDB%3A2.A.71","The Folate-Biopterin Transporter (FBT) Family"],["proteintraitsmech%3ABIOLIP_PAB","PAB-binding site"]],"b":[["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["1_2_SME_MEDIUM_FOR_YA.yaml","1_2_sme_medium_for_ya"],["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["3_8m_characterization_medium_no_1.yaml","3_8m_characterization_medium_no_1"],["A1_MARINE_MEDIUM.yaml","a1_marine_medium"]]},{"id":"CHEBI:17883","l":"hydrogen chloride","na":2,"nb":574,"a":[["MCSA%3A24","4-chlorobenzoyl-CoA dehalogenase"],["MCSA%3A348","chloromuconate cycloisomerase"]],"b":[["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_tryptic_soy_broth_anaerobe.yaml","1_2_tryptic_soy_broth_anaerobe"],["1_2_tryptic_soy_broth_anaerobic.yaml","1_2_tryptic_soy_broth_anaerobic"],["5_sorbitol_medium__c395a410.yaml","5_sorbitol_medium"],["ACETIVIBRIO_ALKALICELLULOSI_MEDIUM.yaml","acetivibrio_alkalicellulosi_medium"]]},{"id":"CHEBI:4735","l":"ethylenediaminetetraacetic acid","na":2,"nb":237,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["proteintraitsmech%3ABIOLIP_EDT","EDT-binding site"]],"b":[["2x_UGA_defined_nocarbon.yaml","2x UGA defined nocarbon"],["ACIDOSOMA_MEDIUM.yaml","acidosoma_medium"],["ALCALIGENES_XYLOSOXYDANS_MEDIUM_WITH_BENZOATE.yaml","alcaligenes_xylosoxydans_medium_with_benzoate"],["ALLOCATENOCOCCUS_MEDIUM.yaml","allocatenococcus_medium"],["ANB_aerobic.yaml","anb_aerobic"],["AQUASPIRILLUM_MEDIUM.yaml","aquaspirillum_medium"]]},{"id":"CHEBI:57912","l":"L-tryptophan zwitterion","na":103,"nb":2,"a":[["EC%3A1.11.2.8","L-tryptophan 5-peroxygenase"],["EC%3A1.13.11.11","tryptophan 2,3-dioxygenase"],["EC%3A1.13.11.52","indoleamine 2,3-dioxygenase"],["EC%3A1.13.12.3","tryptophan 2-monooxygenase"],["EC%3A1.13.99.3","tryptophan 2'-dioxygenase"],["EC%3A1.14.14.156","tryptophan N-monooxygenase"]],"b":[["acidaminococcus_fermentans_medium__d515a0ab.yaml","acidaminococcus_fermentans_medium"],["togo_medium_m1435.yaml","togo_medium_m1435"]]},{"id":"CHEBI:15354","l":"choline","na":78,"nb":2,"a":[["EC%3A1.1.3.17","choline oxidase"],["EC%3A1.1.99.1","choline dehydrogenase"],["EC%3A1.14.15.7","choline monooxygenase"],["EC%3A2.3.1.6","choline O-acetyltransferase"],["EC%3A2.3.1.91","sinapoylglucose--choline O-sinapoyltransferase"],["EC%3A2.7.1.32","choline kinase"]],"b":[["CDM_LP.yaml","cdm_lp"],["HYPHOMICROBIUM_METHYLOVORUM_MEDIUM.yaml","hyphomicrobium_methylovorum_medium"]]},{"id":"CHEBI:17196","l":"L-asparagine","na":2,"nb":74,"a":[["MCSA%3A596","deuterolysin"],["proteintraitsmech%3ABIOLIP_ASN","ASN-binding site"]],"b":[["Alkali_B_medium.yaml","alkali_b_medium"],["CELLULOSE_AGAR.yaml","cellulose_agar"],["CMM.yaml","cmm"],["CTM_MEDIUM.yaml","ctm_medium"],["Glucose_Asparagine_Agar.yaml","glucose_asparagine_agar"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"]]},{"id":"CHEBI:16414","l":"L-valine","na":2,"nb":60,"a":[["MCSA%3A798","t-plasminogen activator"],["proteintraitsmech%3ABIOLIP_VAL","VAL-binding site"]],"b":[["CDM_LP.yaml","cdm_lp"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["MCD_Medium.yaml","mcd_medium"],["MDM.yaml","mdm"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"]]},{"id":"CHEBI:326268","l":"1,4-butanediammonium","na":51,"nb":2,"a":[["EC%3A1.14.13.252","putrescine N-hydroxylase"],["EC%3A1.4.3.10","putrescine oxidase"],["EC%3A1.5.1.43","carboxynorspermidine synthase"],["EC%3A1.5.3.13","N(1)-acetylpolyamine oxidase"],["EC%3A1.5.3.17","non-specific polyamine oxidase"],["EC%3A2.1.1.53","putrescine N-methyltransferase"]],"b":[["veillonella_medium__a8952478.yaml","veillonella_medium"],["veillonella_medium__e057c5de.yaml","veillonella_medium"]]},{"id":"CHEBI:17905","l":"coenzyme M","na":2,"nb":40,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17905","requires coenzyme M"],["proteintraitsmech%3ABIOLIP_COM","COM-binding site"]],"b":[["ARCHAEOGLOBUS_INFECTUS_MEDIUM.yaml","archaeoglobus_infectus_medium"],["AROMATOLEUM_MEDIUM.yaml","aromatoleum_medium"],["BACILLUS_INFERNUS_MEDIUM.yaml","bacillus_infernus_medium"],["METHANOHALOPHILUS_PROFUNDI_MEDIUM.yaml","methanohalophilus_profundi_medium"],["METHANOMICROCOCCUS_MEDIUM.yaml","methanomicrococcus_medium"],["METHANONATRONARCHAEUM_MEDIUM.yaml","methanonatronarchaeum_medium"]]},{"id":"CHEBI:18320","l":"1,4-dithiothreitol","na":2,"nb":38,"a":[["EC%3A1.17.4.5","vitamin-K-epoxide reductase (warfarin-insensitive)"],["RHEA%3A21560","3-hydroxy-2-methyl-3-phytyl-2,3-dihydro-1,4-naphthoquinone + oxidized dithiothreitol = 1,4-dithiothreitol + 2,3-epoxyphylloquinone"]],"b":[["1_2_tryptic_soy_broth_anaerobe.yaml","1_2_tryptic_soy_broth_anaerobe"],["1_2_tryptic_soy_broth_anaerobic__d70593aa.yaml","1_2_tryptic_soy_broth_anaerobic"],["ARCHAEOGLOBUS_INFECTUS_MEDIUM.yaml","archaeoglobus_infectus_medium"],["ARCHAEOGLOBUS_NEPTUNIUS_MEDIUM.yaml","archaeoglobus_neptunius_medium"],["ARCHAEOGLOBUS_SULFATICALLIDUS_MEDIUM.yaml","archaeoglobus_sulfaticallidus_medium"],["CELLULOSILYTICUM_MEDIUM.yaml","cellulosilyticum_medium"]]},{"id":"CHEBI:17895","l":"L-tyrosine","na":2,"nb":29,"a":[["MCSA%3A638","neurolysin"],["proteintraitsmech%3ABIOLIP_TYR","TYR-binding site"]],"b":[["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"],["McAA_formate_No_pABA.yaml","McAA formate No pABA"],["NLDM_defined.yaml","NLDM_defined"]]},{"id":"CHEBI:30314","l":"(R)-lipoic acid","na":2,"nb":29,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_30314","requires (R)-lipoic acid"],["proteintraitsmech%3ABIOLIP_LPA","LPA-binding site"]],"b":[["A1_MEDIUM.yaml","a1_medium"],["CLOSTRIDIUM_THERMOCELLUM_MEDIUM.yaml","clostridium_thermocellum_medium"],["Chemically_defined_medium.yaml","chemically_defined_medium"],["Clostridium_aldrichii_medium.yaml","clostridium_aldrichii_medium"],["DESULFOMONILE_MEDIUM.yaml","desulfomonile_medium"],["JCM_medium_242.yaml","jcm_medium_242"]]},{"id":"CHEBI:28757","l":"fructose","na":2,"nb":27,"a":[["GO%3A0070061","fructose binding"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["ACETOBACTERIUM_MEDIUM.yaml","acetobacterium_medium"],["AQUINCOLA_MEDIUM.yaml","aquincola_medium"],["ARTFICIAL_FRESHWATER_MEDIUM_I.yaml","artficial_freshwater_medium_i"],["CLOSTRIDIUM_ACETATE_1_MEDIUM.yaml","clostridium_acetate_1_medium"],["DESULFOSPOROSINUS_ACIDOPHILUS_MEDIUM.yaml","desulfosporosinus_acidophilus_medium"],["EUBACTERIUM_AGGREGANS_MEDIUM.yaml","eubacterium_aggregans_medium"]]},{"id":"CHEBI:15366","l":"acetic acid","na":2,"nb":26,"a":[["MCSA%3A431","acetylxylan esterase"],["MCSA%3A996","Peptidoglycan-N-acetylglucosamine deacetylase Bc1960"]],"b":[["ACY.yaml","ACY"],["AE_BROTH.yaml","ae_broth"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Acetobacter_Europaeus_Medium.yaml","acetobacter_europaeus_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"]]},{"id":"CHEBI:29016","l":"arginine","na":2,"nb":26,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["ACIDAMINOCOCCUS_FERMENTANS_MEDIUM.yaml","acidaminococcus_fermentans_medium"],["EUBACTERIUM_LENTUM_MEDIUM.yaml","eubacterium_lentum_medium"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["MS15_Medium.yaml","ms15_medium"]]},{"id":"CHEBI:30772","l":"butyric acid","na":2,"nb":26,"a":[["MCSA%3A900","para-nitrobenzyl esterase"],["proteintraitsmech%3ABIOLIP_BUA","BUA-binding site"]],"b":[["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"],["Mega.yaml","Mega"],["RUMEN_BACTERIA_MEDIUM.yaml","rumen_bacteria_medium"],["SELENOMONAS_WG_MEDIUM.yaml","selenomonas_wg_medium"]]},{"id":"CHEBI:15824","l":"D-fructose","na":2,"nb":25,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"]],"b":[["ACETOBACTERIUM_FIMETARIUM_MEDIUM.yaml","acetobacterium_fimetarium_medium"],["ACETOBACTERIUM_TUNDRAE_MEDIUM.yaml","acetobacterium_tundrae_medium"],["ANAEROCOLUMNA_MEDIUM.yaml","anaerocolumna_medium"],["CLOSTRIDIUM_FORMICACETICUM_MEDIUM.yaml","clostridium_formicaceticum_medium"],["CLOSTRIDIUM_LJUNGDAHLII_MEDIUM.yaml","clostridium_ljungdahlii_medium"],["MOORELLA_THERMOACETICA_MEDIUM.yaml","moorella_thermoacetica_medium"]]},{"id":"CHEBI:16410","l":"pyridoxamine","na":2,"nb":21,"a":[["GO%3A0070281","pyridoxamine binding"],["proteintraitsmech%3ABIOLIP_PXM","PXM-binding site"]],"b":[["HALORHODOSPIRA_MEDIUM.yaml","halorhodospira_medium"],["MCD_Medium.yaml","mcd_medium"],["MEDIUM_FOR_ROSEOSPIRA.yaml","medium_for_roseospira"],["MEDIUM_WITH_EDTA_AS_CARBON_SOURCE.yaml","medium_with_edta_as_carbon_source"],["MINERAL_MEDIUM_WITH_SULFOBENZOIC_ACID.yaml","mineral_medium_with_sulfobenzoic_acid"],["MS10R_Medium.yaml","ms10r_medium"]]},{"id":"CHEBI:17924","l":"D-glucitol","na":20,"nb":2,"a":[["EC%3A1.1.1.14","L-iditol 2-dehydrogenase"],["EC%3A1.1.1.289","sorbose reductase"],["EC%3A1.1.3.40","D-mannitol oxidase"],["EC%3A1.1.99.21","D-sorbitol dehydrogenase (acceptor)"],["EC%3A1.1.99.28","glucose-fructose oxidoreductase"],["EC%3A2.7.1.198","protein-N(pi)-phosphohistidine--D-sorbitol phosphotransferase"]],"b":[["5_sorbitol_medium.yaml","5_sorbitol_medium"],["5_sorbitol_medium__c395a410.yaml","5_sorbitol_medium"]]},{"id":"CHEBI:15741","l":"succinic acid","na":2,"nb":16,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_SIN","SIN-binding site"]],"b":[["AQUASPIRILLUM_MEDIUM_II.yaml","aquaspirillum_medium_ii"],["DESULFUROBACTERIUM_MEDIUM.yaml","desulfurobacterium_medium"],["MAGNETOSPIRILLUM_MEDIUM.yaml","magnetospirillum_medium"],["MG_minimal_media.yaml","MG minimal media"],["MG_minimal_media_noIron.yaml","MG minimal media noIron"],["PETROBACTER_SUCCINIMANDENS_MEDIUM.yaml","petrobacter_succinimandens_medium"]]},{"id":"CHEBI:16450","l":"","na":14,"nb":2,"a":[["EC%3A1.14.11.10","pyrimidine-deoxynucleoside 1'-dioxygenase"],["EC%3A1.14.11.3","pyrimidine-deoxynucleoside 2'-dioxygenase"],["EC%3A2.4.2.2","pyrimidine-nucleoside phosphorylase"],["EC%3A3.5.4.5","cytidine deaminase"],["RHEA%3A13433","2'-deoxycytidine + H2O + H(+) = 2'-deoxyuridine + NH4(+)"],["RHEA%3A23316","2'-deoxyuridine + 2-oxoglutarate + O2 = 2-deoxy-D-ribono-1,4-lactone + uracil + succinate + CO2"]],"b":[["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"],["Soil_Defined_Media_%28SDM%29.yaml","Soil Defined Media (SDM)"]]},{"id":"CHEBI:17045","l":"dinitrogen oxide","na":13,"nb":2,"a":[["EC%3A1.7.1.14","nitric oxide reductase [NAD(P)(+), nitrous oxide-forming]"],["EC%3A1.7.2.4","nitrous-oxide reductase"],["EC%3A1.7.2.5","nitric-oxide reductase (cytochrome c)"],["EC%3A1.7.5.2","nitric oxide reductase (menaquinol)"],["RHEA%3A30215","a menaquinol + 2 nitric oxide = nitrous oxide + a menaquinone + H2O"],["RHEA%3A43108","N2 + 2 Fe(III)-[cytochrome c] + H2O = nitrous oxide + 2 Fe(II)-[cytochrome c] + 2 H(+)"]],"b":[["PM_N2O.yaml","PM N2O"],["PM_argon75_N2O25.yaml","PM argon75 N2O25"]]},{"id":"CHEBI:29073","l":"L-ascorbic acid","na":2,"nb":13,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29073","requires L-ascorbic acid"],["proteintraitsmech%3ABIOLIP_ASC","ASC-binding site"]],"b":[["CTM_MEDIUM.yaml","ctm_medium"],["MG_minimal_media.yaml","MG minimal media"],["MG_minimal_media_noCarbon.yaml","MG minimal media noCarbon"],["MG_minimal_media_noIron.yaml","MG minimal media noIron"],["THERMODESULFOVIBRIO_MEDIUM_FOR_N1.yaml","thermodesulfovibrio_medium_for_n1"],["THERMODESULFOVIBRIO_YELLOWSTONII_MEDIUM.yaml","thermodesulfovibrio_yellowstonii_medium"]]},{"id":"CHEBI:28077","l":"rifampicin","na":12,"nb":2,"a":[["ARO%3A3007073","Bacillus subtilis rpoB mutants conferring resistance to rifampin"],["ARO%3A3004480","Bifidobacterium adolescentis rpoB mutants conferring resistance to rifampicin"],["ARO%3A3004563","Clostridioides difficile rpoB with mutation conferring resistance to rifampicin"],["ARO%3A3003288","Escherichia coli rpoB mutants conferring resistance to rifampicin"],["ARO%3A3007051","Helicobacter pylori rpoB mutation conferring resistance to rifampicin"],["ARO%3A3003284","Mycobacterium leprae rpoB mutations conferring resistance to rifampicin"]],"b":[["lb_luria_bertani_agar_with_kanamycin_and_rifampicin__0472ff8f.yaml","lb_luria_bertani_agar_with_kanamycin_and_rifampicin"],["luria_bertani_lb_antibiotics.yaml","luria_bertani_lb_antibiotics"]]},{"id":"CHEBI:36218","l":"beta-lactose","na":2,"nb":9,"a":[["RHEA%3A28659","beta-lactose + H2O = beta-D-galactose + beta-D-glucose"],["RHEA%3A59352","beta-lactose + O2 = lactobiono-1,5-lactone + H2O2"]],"b":[["ALKALINE_LACTOSE_AGAR.yaml","alkaline_lactose_agar"],["LACTOBACILLUS_MEDIUM_I.yaml","lactobacillus_medium_i"],["M17_medium_supplemented_with_20_g_L_of_lactose.yaml","m17_medium_supplemented_with_20_g_l_of_lactose"],["ZMB_Gut.yaml","ZMB Gut"],["gam_broth_with_1_lactose.yaml","gam_broth_with_1_lactose"],["m17_broth_containing_lactose.yaml","m17_broth_containing_lactose"]]},{"id":"CHEBI:18403","l":"L-arabinitol","na":8,"nb":2,"a":[["EC%3A1.1.1.12","L-arabinitol 4-dehydrogenase"],["EC%3A1.1.1.13","L-arabinitol 2-dehydrogenase"],["EC%3A1.1.1.21","aldose reductase"],["RHEA%3A25225","L-arabinitol + NAD(+) = L-arabinose + NADH + H(+)"],["RHEA%3A21356","L-arabinitol + NAD(+) = L-ribulose + NADH + H(+)"],["RHEA%3A16381","L-arabinitol + NAD(+) = L-xylulose + NADH + H(+)"]],"b":[["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"],["Soil_Defined_Media_%28SDM%29.yaml","Soil Defined Media (SDM)"]]},{"id":"CHEBI:17824","l":"propan-2-ol","na":7,"nb":2,"a":[["EC%3A1.1.1.80","isopropanol dehydrogenase (NADP(+))"],["EC%3A1.14.13.227","propane 2-monooxygenase"],["RHEA%3A62196","propan-2-ol + 2 Fe(III)-[cytochrome c] = acetone + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["RHEA%3A41984","propan-2-ol + NAD(+) = acetone + NADH + H(+)"],["RHEA%3A21792","propan-2-ol + NADP(+) = acetone + NADPH + H(+)"],["RHEA%3A49992","propane + NADH + O2 + H(+) = propan-2-ol + NAD(+) + H2O"]],"b":[["METHANOGENIUM_CV_MEDIUM.yaml","methanogenium_cv_medium"],["METHANOSPIRILLUM_SK_MEDIUM.yaml","methanospirillum_sk_medium"]]},{"id":"CHEBI:45296","l":"hexadecane","na":2,"nb":7,"a":[["RHEA%3A77375","heptadecanoate + hnu + H(+) = hexadecane + CO2"],["RHEA%3A76747","hexadecane + reduced [NADPH--hemoprotein reductase] + O2 = 9-hexadecanol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["FUNDIBACTER_JADENSIS_MEDIUM.yaml","fundibacter_jadensis_medium"],["MODIFIED_SEA_WATER_AGAR.yaml","modified_sea_water_agar"],["dehalobacter_restrictus_medium_tce.yaml","dehalobacter_restrictus_medium_tce"],["dehalobacter_restrictus_medium_tce__3ce89046.yaml","dehalobacter_restrictus_medium_tce"],["desulfuromonas_medium_tce.yaml","desulfuromonas_medium_tce"],["m9_with_1_0_glucose_and_40_emulsion.yaml","m9_with_1_0_glucose_and_40_emulsion"]]},{"id":"CHEBI:16196","l":"oleic acid","na":2,"nb":6,"a":[["TCDB%3A9.A.76","The Omega3 Fatty Acid Desaturase 3/Putative Transporter (FAD3) Family"],["proteintraitsmech%3ABIOLIP_OLA","OLA-binding site"]],"b":[["MIDDLEBROCK_7H11_AGAR.yaml","middlebrock_7h11_agar"],["MIDDLEBROOK_MEDIUM.yaml","middlebrook_medium"],["Middle_Brook_Medium.yaml","middle_brook_medium"],["Middlebrook_7H11_Agar.yaml","middlebrook_7h11_agar"],["middlebrook_7h11_agar_difco.yaml","middlebrook_7h11_agar_difco"],["modified_dixon_s_agar.yaml","modified_dixon_s_agar"]]},{"id":"CHEBI:27641","l":"cycloheximide","na":2,"nb":6,"a":[["RHEA%3A61936","cycloheximide(in) + ATP + H2O = cycloheximide(out) + ADP + phosphate + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["PPM.yaml","ppm"],["R2A_Kan50_Tween01_Cycloheximide200.yaml","R2A_Kan50_Tween01_Cycloheximide200"],["alkaliphiles_pirellula_medium_m1py.yaml","alkaliphiles_pirellula_medium_m1py"],["chlamydia_serpentis_poikilotherma_medium.yaml","chlamydia_serpentis_poikilotherma_medium"],["pirellula_medium_m31py.yaml","pirellula_medium_m31py"],["ppm__7a6a33ba.yaml","ppm"]]},{"id":"CHEBI:28053","l":"melibiose","na":6,"nb":2,"a":[["RHEA%3A28663","melibiose + H2O = D-galactose + D-glucose"],["RHEA%3A28855","melibiose(in) + H(+)(in) = melibiose(out) + H(+)(out)"],["RHEA%3A28847","melibiose(in) + Li(+)(in) = melibiose(out) + Li(+)(out)"],["RHEA%3A28851","melibiose(in) + Na(+)(in) = melibiose(out) + Na(+)(out)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["MCSA%3A913","alpha-galactosidase"]],"b":[["MP_AGAR.yaml","mp_agar"],["mp_agar__3414ec19.yaml","mp_agar"]]},{"id":"CHEBI:28997","l":"","na":6,"nb":2,"a":[["EC%3A3.5.4.4","adenosine deaminase"],["RHEA%3A28190","2'-deoxyadenosine + H2O + H(+) = 2'-deoxyinosine + NH4(+)"],["RHEA%3A29971","2'-deoxyinosine(in) + H(+)(in) = 2'-deoxyinosine(out) + H(+)(out)"],["RHEA%3A27750","2'-deoxyinosine + phosphate = 2-deoxy-alpha-D-ribose 1-phosphate + hypoxanthine"],["RHEA%3A29383","dIMP + H2O = 2'-deoxyinosine + phosphate"],["RHEA%3A69572","dIMP + inosine = 2'-deoxyinosine + IMP"]],"b":[["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"],["Soil_Defined_Media_%28SDM%29.yaml","Soil Defined Media (SDM)"]]},{"id":"CHEBI:15729","l":"L-ornithine","na":2,"nb":5,"a":[["MCSA%3A12","ornithine carbamoyltransferase"],["proteintraitsmech%3ABIOLIP_ORN","ORN-binding site"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:17300","l":"tetrachloroethene","na":2,"nb":5,"a":[["EC%3A1.21.99.5","tetrachloroethene reductive dehalogenase"],["RHEA%3A20353","trichloroethene + chloride + A + H(+) = tetrachloroethene + AH2"]],"b":[["MINERAL_SALTS_MEDIUM_WITH_TCE.yaml","mineral_salts_medium_with_tce"],["dehalobacter_restrictus_medium_tce.yaml","dehalobacter_restrictus_medium_tce"],["dehalobacter_restrictus_medium_tce__3ce89046.yaml","dehalobacter_restrictus_medium_tce"],["desulfuromonas_medium_tce.yaml","desulfuromonas_medium_tce"],["mineral_salts_medium_with_tce__be1bd293.yaml","mineral_salts_medium_with_tce"]]},{"id":"CHEBI:18101","l":"4-hydroxyphenylacetic acid","na":2,"nb":5,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_4HP","4HP-binding site"]],"b":[["ENDOMICROBIUM_PROAVITUM_RSA_MEDIUM.yaml","endomicrobium_proavitum_rsa_medium"],["MODIFIED_AM5_MEDIUM_2.yaml","modified_am5_medium_2"],["am5_medium_elusimicrobium_medium.yaml","am5_medium_elusimicrobium_medium"],["endomicrobium_proavitum_rsa_medium__51692939.yaml","endomicrobium_proavitum_rsa_medium"],["pjc_with_4_hpa.yaml","pjc_with_4_hpa"]]},{"id":"CHEBI:35899","l":"crotonate","na":5,"nb":2,"a":[["EC%3A1.3.1.31","2-enoate reductase"],["RHEA%3A74903","(2E)-2-butenoate + ATP + H(+) = (2E)-but-2-enoyl-AMP + diphosphate"],["RHEA%3A74899","(2E)-2-butenoate + holo-[ACP] + ATP = (2E)-butenoyl-[ACP] + AMP + diphosphate"],["RHEA%3A10200","butanoate + NAD(+) = (2E)-2-butenoate + NADH + H(+)"],["RHEA%3A69172","N(6)-(2E)-butenoyl-L-lysyl-[protein] + H2O = (2E)-2-butenoate + L-lysyl-[protein]"]],"b":[["SERPENTINICELLA_MEDIUM.yaml","serpentinicella_medium"],["for_dsm_17722.yaml","for_dsm_17722"]]},{"id":"CHEBI:15346","l":"coenzyme A","na":2,"nb":4,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15346","requires coenzyme A"],["proteintraitsmech%3ABIOLIP_COA","COA-binding site"]],"b":[["HELMUTKOENIGIA_MEDIUM.yaml","helmutkoenigia_medium"],["TREPONEMA_ISOPTEROCOLA_MEDIUM.yaml","treponema_isopterocola_medium"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"],["treponema_isopterocola_medium__e7b07692.yaml","treponema_isopterocola_medium"]]},{"id":"CHEBI:18405","l":"","na":2,"nb":4,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18405","requires pyridoxal 5'-phosphate"],["proteintraitsmech%3ABIOLIP_PLP","PLP-binding site"]],"b":[["HELMUTKOENIGIA_MEDIUM.yaml","helmutkoenigia_medium"],["TREPONEMA_ISOPTEROCOLA_MEDIUM.yaml","treponema_isopterocola_medium"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"],["treponema_isopterocola_medium__e7b07692.yaml","treponema_isopterocola_medium"]]},{"id":"CHEBI:22868","l":"bile salt","na":2,"nb":4,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["1298.yaml","1298"],["ALKALINE_CELLULOSE_AGAR.yaml","alkaline_cellulose_agar"],["acido_thermophile_medium.yaml","acido_thermophile_medium"],["modified_eggerth_gagnon_medium.yaml","modified_eggerth_gagnon_medium"]]},{"id":"CHEBI:25548","l":"nitrilotriacetate(3-)","na":2,"nb":4,"a":[["EC%3A1.14.14.10","nitrilotriacetate monooxygenase"],["RHEA%3A31359","nitrilotriacetate + FMNH2 + O2 = aminodiacetate + FMN + glyoxylate + H2O"]],"b":[["MEDIUM_FOR_CHELATOCOCCUS_BUHARII.yaml","medium_for_chelatococcus_buharii"],["NITRILOTRIACETATE_MEDIUM.yaml","nitrilotriacetate_medium"],["methanoregula_peat_medium__84e41704.yaml","methanoregula_peat_medium"],["methanosphaerula_peat_medium__1238714d.yaml","methanosphaerula_peat_medium"]]},{"id":"CHEBI:75456","l":"2-stearoylglycerol","na":2,"nb":4,"a":[["RHEA%3A38519","1-(9Z-octadecenoyl)-2-octadecanoyl-sn-glycerol + H2O = 2-octadecanoylglycerol + (9Z)-octadecenoate + H(+)"],["proteintraitsmech%3ABIOLIP_2JT","2JT-binding site"]],"b":[["LEEMING_AND_NOTMAN_AGAR.yaml","leeming_and_notman_agar"],["leeming_amp_notman_agar_lna_leeming_amp_notman_1987_in_the_yeasts_a_taxonomic_study_5th_edn.yaml","leeming_amp_notman_agar_lna_leeming_amp_notman_1987_in_the_yeasts_a_taxonomic_study_5th_edn"],["leeming_amp_notman_agar_modified_mlna.yaml","leeming_amp_notman_agar_modified_mlna"],["leeming_and_notman_agar__33424fef.yaml","leeming_and_notman_agar"]]},{"id":"NCBITaxon:556484","l":"Phaeodactylum tricornutum CCAP 1055/1","na":4,"nb":2,"a":[["TED%3AAF-B7GAJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-B7GAJ8-F1-model_v4_TED01"],["TED%3AAF-B7G520-F1-model_v4_TED02","TED novel fold AF-B7G520-F1-model_v4_TED02"],["TED%3AAF-B7G8V4-F1-model_v4_TED02","TED novel fold AF-B7G8V4-F1-model_v4_TED02"],["TED%3AAF-B7GB31-F1-model_v4_TED01","TED novel fold AF-B7GB31-F1-model_v4_TED01"]],"b":[["2ASW.yaml","2asw"],["F_2_Medium.yaml","f_2_medium"]]},{"id":"CHEBI:136511","l":"manganese dioxide","na":3,"nb":2,"a":[["EC%3A1.16.3.3","manganese oxidase"],["RHEA%3A52240","2 Mn(2+) + O2 + 2 H2O = 2 MnO2 + 4 H(+)"],["RHEA%3A52248","4 Mn(3+) + O2 + 6 H2O = 4 MnO2 + 12 H(+)"]],"b":[["SULFURIMONAS_MARISNIGRI_MEDIUM.yaml","sulfurimonas_marisnigri_medium"],["abss2__1d326b00.yaml","abss2"]]},{"id":"CHEBI:17909","l":"polysulfur","na":2,"nb":3,"a":[["EC%3A1.8.5.4","bacterial sulfide:quinone reductase"],["RHEA%3A30239","n a quinone + n hydrogen sulfide + n H(+) = polysulfur(n-2) + n a quinol"]],"b":[["THERMOCOCCUS_WAIOTAPUENSE_MEDIUM.yaml","thermococcus_waiotapuense_medium"],["desulfurococcus_medium__dbcbba45.yaml","desulfurococcus_medium"],["thermococcus_medium.yaml","thermococcus_medium"]]},{"id":"CHEBI:30066","l":"thioglycolate(1-)","na":2,"nb":3,"a":[["EC%3A4.5.1.5","S-carboxymethylcysteine synthase"],["RHEA%3A22868","thioglycolate + 3-chloro-L-alanine = S-carboxymethyl-L-cysteine + chloride + H(+)"]],"b":[["eubacterium_medium__c1146137.yaml","eubacterium_medium"],["spirochaeta_stenostrepta_medium__5924ed4c.yaml","spirochaeta_stenostrepta_medium"],["thioglycollate_medium__bfdc2c9b.yaml","thioglycollate_medium"]]},{"id":"CHEBI:30915","l":"2-oxoglutaric acid","na":3,"nb":2,"a":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["TCDB%3A2.A.56","The Tripartite ATP-independent Periplasmic Transporter (TRAP-T) Family"],["proteintraitsmech%3ABIOLIP_AKG","AKG-binding site"]],"b":[["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"],["medium_for_tick_cells_rickettsia.yaml","medium_for_tick_cells_rickettsia"]]},{"id":"CHEBI:46020","l":"tetramethylammonium","na":2,"nb":3,"a":[["EC%3A2.1.1.252","tetramethylammonium--corrinoid protein Co-methyltransferase"],["RHEA%3A59856","tetramethylammonium + Co(I)-[tetramethylammonium-specific corrinoid protein] + H(+) = methyl-Co(III)-[tetramethylammonium-specific corrinoid protein] + trimethylamine"]],"b":[["TETRAMETHYL_AMMONIUM_MEDIUM.yaml","tetramethyl_ammonium_medium"],["methanogen_high_salt_medium__183d3bb4.yaml","methanogen_high_salt_medium"],["tetramethyl_ammonium_medium__e4bd4975.yaml","tetramethyl_ammonium_medium"]]},{"id":"CHEBI:53423","l":"polysorbate 40","na":2,"nb":3,"a":[["TCDB%3A1.A.46","The Anion Channel-forming Bestrophin (Bestrophin) Family"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["MDA.yaml","mda"],["PITYROSPORUM_MEDIUM.yaml","pityrosporum_medium"],["modified_dixon_s_agar.yaml","modified_dixon_s_agar"]]},{"id":"CHEBI:18095","l":"trans-4-hydroxy-L-proline","na":2,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["proteintraitsmech%3ABIOLIP_HYP","HYP-binding site"]],"b":[["RPMI.yaml","RPMI"],["RPMI_with_Fetal_bovine_serum_Conditioned.yaml","RPMI with Fetal bovine serum Conditioned"]]},{"id":"CHEBI:26710","l":"sodium chloride","na":1,"nb":3474,"a":[["TCDB%3A2.A.30","The Cation-Chloride Cotransporter (CCC) Family"]],"b":[["0_01_lb_seawater_medium.yaml","0_01_lb_seawater_medium"],["0_01_lb_seawater_medium__c6dadec3.yaml","0_01_lb_seawater_medium"],["10_mh_medium.yaml","10_mh_medium"],["10_mixotrophic_nitrobacter_medium.yaml","10_mixotrophic_nitrobacter_medium"],["1298.yaml","1298"],["15_mgm_medium.yaml","15_mgm_medium"]]},{"id":"CHEBI:32588","l":"potassium chloride","na":1,"nb":1953,"a":[["TCDB%3A2.A.30","The Cation-Chloride Cotransporter (CCC) Family"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mgm_medium.yaml","15_mgm_medium"],["15_mh_medium.yaml","15_mh_medium"],["15_mh_medium__b586cb85.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"]]},{"id":"CHEBI:32139","l":"sodium hydrogencarbonate","na":1,"nb":1471,"a":[["TCDB%3A2.A.31","The Anion Exchanger (AE) Family"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mh_medium.yaml","15_mh_medium"],["15_mh_medium__b586cb85.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1650_medium_for_strain_j5b.yaml","1650_medium_for_strain_j5b"],["1_2_SME_MEDIUM.yaml","1_2_sme_medium"]]},{"id":"CHEBI:17234","l":"glucose","na":1,"nb":1113,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["10_mh_medium.yaml","10_mh_medium"],["15_mh_medium.yaml","15_mh_medium"],["15_mh_medium__b586cb85.yaml","15_mh_medium"],["15_mh_medium__cef1d1f5.yaml","15_mh_medium"],["1_10_R2A_gellan_gum_medium2.yaml","1_10_r2a_gellan_gum_medium2"],["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"]]},{"id":"CHEBI:17634","l":"D-glucose","na":1,"nb":441,"a":[["MCSA%3A976","α‑glucosidase maltase-glucoamylase"]],"b":[["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"],["1_2_mrs_1_2_bhi_agar.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_mrs_1_2_bhi_agar__56430c33.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_tryptic_soy_broth_anaerobe.yaml","1_2_tryptic_soy_broth_anaerobe"],["1_2_tryptic_soy_broth_anaerobic.yaml","1_2_tryptic_soy_broth_anaerobic"],["1_2_tryptic_soy_broth_anaerobic__d70593aa.yaml","1_2_tryptic_soy_broth_anaerobic"]]},{"id":"CHEBI:50385","l":"hemin","na":1,"nb":129,"a":[["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]],"b":[["ABB.yaml","ABB"],["ACY.yaml","ACY"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["BGDM.yaml","bgdm"],["BHIS.yaml","bhis"],["BHIS_CaCl2.yaml","BHIS_CaCl2"]]},{"id":"CHEBI:63940","l":"sodium tungstate","na":1,"nb":116,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["ACETOBACTEROIDES_MEDIUM.yaml","acetobacteroides_medium"],["ALKALIPHILUS_CROTONATOXIDANS_MEDIUM.yaml","alkaliphilus_crotonatoxidans_medium"],["AP11MH_medium.yaml","ap11mh_medium"],["ARCHAEOGLOBUS_FULGIDUS_MEDIUM.yaml","archaeoglobus_fulgidus_medium"],["AS_medium.yaml","as_medium"],["A_medium.yaml","a_medium"]]},{"id":"CHEBI:15603","l":"L-leucine","na":1,"nb":70,"a":[["proteintraitsmech%3ABIOLIP_LEU","LEU-binding site"]],"b":[["CDM_LP.yaml","cdm_lp"],["CMM.yaml","cmm"],["Chamberlain_CDM.yaml","chamberlain_cdm"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["Hypertonic_medium.yaml","hypertonic_medium"],["MCD_Medium.yaml","mcd_medium"]]},{"id":"UBERON:0000948","l":"heart","na":1,"nb":67,"a":[["GO%3A0007507","heart development"]],"b":[["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"],["1_2_mrs_1_2_bhi_agar.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_mrs_1_2_bhi_agar__56430c33.yaml","1_2_mrs_1_2_bhi_agar"],["70_30_sporulation_medium.yaml","70_30_sporulation_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Anaerobic_Brain_Heart_Infusion_Broth.yaml","anaerobic_brain_heart_infusion_broth"]]},{"id":"UBERON:0000955","l":"brain","na":1,"nb":66,"a":[["GO%3A0007420","brain development"]],"b":[["1_10_brain_heart_infusion_agar_17_estradiol.yaml","1_10_brain_heart_infusion_agar_17_estradiol"],["1_2_mrs_1_2_bhi_agar.yaml","1_2_mrs_1_2_bhi_agar"],["1_2_mrs_1_2_bhi_agar__56430c33.yaml","1_2_mrs_1_2_bhi_agar"],["70_30_sporulation_medium.yaml","70_30_sporulation_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["Anaerobic_Brain_Heart_Infusion_Broth.yaml","anaerobic_brain_heart_infusion_broth"]]},{"id":"CHEBI:17561","l":"L-cysteine","na":1,"nb":60,"a":[["proteintraitsmech%3ABIOLIP_CYS","CYS-binding site"]],"b":[["70_30_sporulation_medium.yaml","70_30_sporulation_medium"],["BHIS_CaCl2.yaml","BHIS_CaCl2"],["BHIS_HOMOPIPES.yaml","BHIS_HOMOPIPES"],["BHIS_K3.yaml","BHIS_K3"],["BHIS_K3_noGlucose.yaml","BHIS_K3_noGlucose"],["BHIS_PIPES.yaml","BHIS_PIPES"]]},{"id":"CHEBI:30769","l":"citric acid","na":1,"nb":55,"a":[["proteintraitsmech%3ABIOLIP_CIT","CIT-binding site"]],"b":[["Azospira_Medium.yaml","azospira_medium"],["BG11.yaml","bg11"],["BG11_medium.yaml","bg11_medium"],["CTM_MEDIUM.yaml","ctm_medium"],["ETHANOLOGENBACTERIUM_MEDIUM.yaml","ethanologenbacterium_medium"],["GINGER_BEER_PLANT_MEDIUM.yaml","ginger_beer_plant_medium"]]},{"id":"CHEBI:16135","l":"isobutyric acid","na":1,"nb":49,"a":[["proteintraitsmech%3ABIOLIP_ALQ","ALQ-binding site"]],"b":[["ACY.yaml","ACY"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["ANAEROFILUM_MEDIUM.yaml","anaerofilum_medium"],["DESULFONEMA_ISHIMOTOI_MEDIUM.yaml","desulfonema_ishimotoi_medium"],["DESULFUROBACTERIUM_MEDIUM.yaml","desulfurobacterium_medium"]]},{"id":"CHEBI:17418","l":"valeric acid","na":1,"nb":48,"a":[["proteintraitsmech%3ABIOLIP_LEA","LEA-binding site"]],"b":[["ACY.yaml","ACY"],["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["ALTERNATIVE_RUMEN_BACTERIA_MEDIUM.yaml","alternative_rumen_bacteria_medium"],["ANAEROFILUM_MEDIUM.yaml","anaerofilum_medium"],["DESULFUROBACTERIUM_MEDIUM.yaml","desulfurobacterium_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"]]},{"id":"CHEBI:15356","l":"cysteine","na":1,"nb":40,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["AMB_MEDIUM.yaml","amb_medium"],["Chopped_Meat_Carbohydrate_Medium.yaml","chopped_meat_carbohydrate_medium"],["Chopped_Meat_Carbohydrate_Medium_w_Tween_80.yaml","chopped_meat_carbohydrate_medium_w_tween_80"],["FRANCISELLA_HALIOTICIDA_MEDIUM.yaml","francisella_halioticida_medium"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"]]},{"id":"CHEBI:16828","l":"L-tryptophan","na":1,"nb":40,"a":[["proteintraitsmech%3ABIOLIP_TRP","TRP-binding site"]],"b":[["CDMM.yaml","cdmm"],["CDM_LP.yaml","cdm_lp"],["CTM_MEDIUM.yaml","ctm_medium"],["Hans_Basal_Media_plus_0.2x_20AA_mix.yaml","Hans Basal Media plus 0.2x 20AA mix"],["M9_minimal_media_aromix_noCarbon.yaml","M9 minimal media aromix noCarbon"],["MDM.yaml","mdm"]]},{"id":"CHEBI:78018","l":"dodecylphosphocholine","na":1,"nb":37,"a":[["proteintraitsmech%3ABIOLIP_DPV","DPV-binding site"]],"b":[["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"],["an1_medium__e0323906.yaml","an1_medium"],["anaerocella_medium.yaml","anaerocella_medium"],["bacteroides_galacturonicus_medium.yaml","bacteroides_galacturonicus_medium"],["campylobacter_rectus_medium.yaml","campylobacter_rectus_medium"],["capnocytophaga_medium__a7f2b87e.yaml","capnocytophaga_medium"]]},{"id":"CHEBI:27570","l":"histidine","na":1,"nb":27,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["ALLISONELLA_MEDIUM.yaml","allisonella_medium"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["MS15_Medium.yaml","ms15_medium"],["NATRONINCOLA_HISTIDINOVORANS_MEDIUM.yaml","natronincola_histidinovorans_medium"]]},{"id":"CHEBI:59640","l":"N-acetylglucosamine","na":1,"nb":27,"a":[["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"]],"b":[["LARKINELLA_ARBORICOLA_MEDIUM.yaml","larkinella_arboricola_medium"],["MEDIUM_FOR_TREPONEMA_PARVUM.yaml","medium_for_treponema_parvum"],["MM3.yaml","mm3"],["Modified_M30_Medium.yaml","modified_m30_medium"],["PLANCTOMYCES_MEDIUM_WITH_DOUBLE_CONCENTRATED_ARTIFICAL_SEA_WATER.yaml","planctomyces_medium_with_double_concentrated_artifical_sea_water"],["PLANCTOMYCES_PYREFORMIS_MEDIUM.yaml","planctomyces_pyreformis_medium"]]},{"id":"CHEBI:16811","l":"methionine","na":1,"nb":25,"a":[["TCDB%3A2.A.18","The Amino Acid/Auxin Permease (AAAP) Family"]],"b":[["Chamberlain_CDM.yaml","chamberlain_cdm"],["DEINOCOCCUS_MEDIUM.yaml","deinococcus_medium"],["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["MS13_Medium.yaml","ms13_medium"]]},{"id":"CHEBI:61930","l":"N(6)-acetyl-L-lysine residue","na":22,"nb":1,"a":[["EC%3A2.3.1.108","alpha-tubulin N-acetyltransferase"],["EC%3A2.3.1.286","protein acetyllysine N-acetyltransferase"],["EC%3A2.3.1.309","[beta-tubulin]-L-lysine N-acetyltransferase"],["EC%3A2.3.1.48","histone acetyltransferase"],["EC%3A3.5.1.98","histone deacetylase"],["RHEA%3A64460","acetyl phosphate + L-lysyl-[protein] = N(6)-acetyl-L-lysyl-[protein] + phosphate + H(+)"]],"b":[["NLDM_defined.yaml","NLDM_defined"]]},{"id":"CHEBI:41131","l":"crotonic acid","na":1,"nb":21,"a":[["proteintraitsmech%3ABIOLIP_BEO","BEO-binding site"]],"b":[["ALKALIPHILUS_CROTONATOXIDANS_MEDIUM.yaml","alkaliphilus_crotonatoxidans_medium"],["ALKALIPHILUS_HYDROTHERMALIS_MEDIUM.yaml","alkaliphilus_hydrothermalis_medium"],["DESULFATIRHABDIUM_MEDIUM.yaml","desulfatirhabdium_medium"],["Desulfatirhabdium_Butyrativorans_Medium.yaml","desulfatirhabdium_butyrativorans_medium"],["EUBACTERIUM_OXIDOREDUCENS_MEDIUM.yaml","eubacterium_oxidoreducens_medium"],["MPA_Medium.yaml","mpa_medium"]]},{"id":"CHEBI:113451","l":"sodium ascorbate","na":1,"nb":19,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_113451","requires sodium ascorbate"]],"b":[["ALKALIPHILUS_MEDIUM.yaml","alkaliphilus_medium"],["CLOSTRIDUM_G4_MEDIUM.yaml","clostridum_g4_medium"],["Chromatium_Medium.yaml","chromatium_medium"],["GEOANAEROBACTER_MEDIUM.yaml","geoanaerobacter_medium"],["GILLIAMELLA_MEDIUM.yaml","gilliamella_medium"],["HELIOBACTERIUM_CHLORUM_MEDIUM.yaml","heliobacterium_chlorum_medium"]]},{"id":"CHEBI:131529","l":"pyridoxal hydrochloride","na":1,"nb":19,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_131529","requires pyridoxal hydrochloride"]],"b":[["AROMATOLEUM_MEDIUM.yaml","aromatoleum_medium"],["CDM_LP.yaml","cdm_lp"],["ECTOTHIORHODOSPIRA_ABDELMALEKII_MEDIUM.yaml","ectothiorhodospira_abdelmalekii_medium"],["ECTOTHIORHODOSPIRA_VACUOLATA_MEDIUM.yaml","ectothiorhodospira_vacuolata_medium"],["Fibrobacter_medium.yaml","fibrobacter_medium"],["HELMUTKOENIGIA_MEDIUM.yaml","helmutkoenigia_medium"]]},{"id":"CHEBI:18186","l":"tyrosine","na":1,"nb":17,"a":[["MCSA%3A668","leishmanolysin"]],"b":[["MCD_Medium.yaml","mcd_medium"],["MS10R_Medium.yaml","ms10r_medium"],["MS10_Medium.yaml","ms10_medium"],["Synthetic_Medium_C.yaml","synthetic_medium_c"],["complete_chemically_defined_medium.yaml","complete_chemically_defined_medium"],["fermentation_medium_glucose_tyrosine.yaml","fermentation_medium_glucose_tyrosine"]]},{"id":"CHEBI:17151","l":"xylitol","na":16,"nb":1,"a":[["EC%3A1.1.1.10","L-xylulose reductase"],["EC%3A1.1.1.15","D-iditol 2-dehydrogenase"],["EC%3A1.1.1.307","D-xylose reductase [NAD(P)H]"],["EC%3A1.1.1.430","D-xylose reductase (NADH)"],["EC%3A1.1.1.431","D-xylose reductase (NADPH)"],["EC%3A1.1.1.9","D-xylulose reductase"]],"b":[["atribacterium_medium__1e9c1fd9.yaml","atribacterium_medium"]]},{"id":"CHEBI:24848","l":"inositol","na":1,"nb":14,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["2asw__59e92e67.yaml","2asw"],["ABSS2.yaml","abss2"],["BAF_Medium.yaml","baf_medium"],["HYPHOMICROBIUM_METHYLOVORUM_MEDIUM.yaml","hyphomicrobium_methylovorum_medium"],["NAV_medium.yaml","nav_medium"],["THERMOACTINOMYCES_MEDIUM.yaml","thermoactinomyces_medium"]]},{"id":"CHEBI:28971","l":"ampicillin","na":1,"nb":14,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["2_5_nacl_heart_infusion_hi_medium.yaml","2_5_nacl_heart_infusion_hi_medium"],["PPLO_broth.yaml","pplo_broth"],["brain_heart_infusion_bhi_medium_supplemented_with_antibiotics.yaml","brain_heart_infusion_bhi_medium_supplemented_with_antibiotics"],["dehalogenimonas_medium__6a926cbc.yaml","dehalogenimonas_medium"],["ip3_3_medium__726cb47b.yaml","ip3_3_medium"],["lb_agar_supplemented_with_ampicillin.yaml","lb_agar_supplemented_with_ampicillin"]]},{"id":"CHEBI:37166","l":"xylan","na":1,"nb":14,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["CLOSTRIDIUM_AEROTOLERANS_MEDIUM.yaml","clostridium_aerotolerans_medium"],["TREPONEMA_THERMOPHILUM_MEDIUM.yaml","treponema_thermophilum_medium"],["VXG_GELLAN.yaml","vxg_gellan"],["XED_Agar.yaml","xed_agar"],["XYLAN_MEDIUM.yaml","xylan_medium"],["Xy_agar.yaml","xy_agar"]]},{"id":"CHEBI:36702","l":"2-acyl-1-alkyl-sn-glycero-3-phosphocholine","na":11,"nb":1,"a":[["EC%3A2.3.1.148","glycerophospholipid acyltransferase (CoA-dependent)"],["EC%3A2.3.1.63","1-alkylglycerophosphocholine O-acyltransferase"],["EC%3A2.7.8.2","diacylglycerol cholinephosphotransferase"],["EC%3A3.1.1.4","phospholipase A2"],["RHEA%3A36179","1-O-alkyl-2-acyl-sn-glycerol + CDP-choline = a 1-O-alkyl-2-acyl-sn-glycero-3-phosphocholine + CMP + H(+)"],["RHEA%3A77759","a 1-O-alkyl-2-acyl-sn-glycero-3-phosphocholine + a 1,2-diacylglycerol = a 1-O-alkyl-sn-glycero-3-phosphocholine + a triacylglycerol"]],"b":[["NLDM_defined.yaml","NLDM_defined"]]},{"id":"CHEBI:16024","l":"D-mannose","na":1,"nb":9,"a":[["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"]],"b":[["M9zb_with_mannose.yaml","m9zb_with_mannose"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"],["Soil_Defined_Media_%28SDM%29.yaml","Soil Defined Media (SDM)"],["defined_freshwater_medium_cocl2__f0ffbcc6.yaml","defined_freshwater_medium_cocl2"],["defined_freshwater_medium_coso4__41b1d433.yaml","defined_freshwater_medium_coso4"],["fermentation_medium_mannose_nh4cl.yaml","fermentation_medium_mannose_nh4cl"]]},{"id":"CHEBI:16349","l":"L-citrulline","na":1,"nb":9,"a":[["proteintraitsmech%3ABIOLIP_CIR","CIR-binding site"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"]]},{"id":"CHEBI:18248","l":"iron atom","na":9,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18248","requires Fe"],["proteintraitsmech%3AMETALPDB_FE_DINUCLEAR","dinuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_HEPTANUCLEAR","heptanuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_HEXANUCLEAR","hexanuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_MONONUCLEAR","mononuclear iron site"],["proteintraitsmech%3AMETALPDB_FE_OCTANUCLEAR","octanuclear iron site"]],"b":[["methanopyrus_medium_for_strain_116__7463935f.yaml","methanopyrus_medium_for_strain_116"]]},{"id":"NCBITaxon:210","l":"Helicobacter pylori","na":9,"nb":1,"a":[["Pfam%3APF18025","Alpha-(1,3)-fucosyltransferase FucT N-terminal domain"],["Pfam%3APF18971","CagA protein"],["Pfam%3APF03507","CagA exotoxin phosphopeptide substrate mimic region"],["Pfam%3APF02691","Vacuolating cyotoxin beta-helical domain"],["TED%3AAF-A0A2T6UWI4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T6UWI4-F1-model_v4_TED01"],["TED%3AAF-A0A1Q9JB12-F1-model_v4_TED01","TED novel fold AF-A0A1Q9JB12-F1-model_v4_TED01"]],"b":[["BRUCELLA_BROTH.yaml","brucella_broth"]]},{"id":"CHEBI:16283","l":"L-cystine","na":1,"nb":8,"a":[["proteintraitsmech%3ABIOLIP_IYY","IYY-binding site"]],"b":[["IGNISPHAERA_MEDIUM.yaml","ignisphaera_medium"],["Kosmotoga_Pacifica_Medium.yaml","kosmotoga_pacifica_medium"],["eg_medium__dd848cc7.yaml","eg_medium"],["fluid_thioglycolate_medium.yaml","fluid_thioglycolate_medium"],["fluid_thioglycollate_medium__e510d708.yaml","fluid_thioglycollate_medium"],["rc_medium__9776cd83.yaml","rc_medium"]]},{"id":"CHEBI:28260","l":"galactose","na":1,"nb":8,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["A1_MEDIUM.yaml","a1_medium"],["KPL_MEDIUM.yaml","kpl_medium"],["MYXOCOCCUS_FLAVESCENS_MEDIUM.yaml","myxococcus_flavescens_medium"],["Modified_SP_Medium.yaml","modified_sp_medium"],["SP_Medium.yaml","sp_medium"],["a1_medium__13c8113e.yaml","a1_medium"]]},{"id":"CHEBI:16610","l":"spermidine","na":1,"nb":7,"a":[["proteintraitsmech%3ABIOLIP_SPD","SPD-binding site"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"]]},{"id":"CHEBI:16737","l":"creatinine","na":7,"nb":1,"a":[["EC%3A3.5.2.10","creatininase"],["EC%3A3.5.4.21","creatinine deaminase"],["RHEA%3A14533","creatinine + H2O = creatine"],["RHEA%3A12681","creatinine + H2O + H(+) = N-methylhydantoin + NH4(+)"],["RHEA%3A74539","creatinine(in) = creatinine(out)"],["RHEA%3A72183","creatinine(in) + H(+)(out) = creatinine(out) + H(+)(in)"]],"b":[["tissierella_sp_medium_creatinine.yaml","tissierella_sp_medium_creatinine"]]},{"id":"CHEBI:17126","l":"carnitine","na":7,"nb":1,"a":[["EC%3A1.1.1.108","carnitine 3-dehydrogenase"],["EC%3A1.14.11.1","gamma-butyrobetaine dioxygenase"],["EC%3A4.1.1.42","carnitine decarboxylase"],["RHEA%3A24028","4-(trimethylamino)butanoate + 2-oxoglutarate + O2 = carnitine + succinate + CO2"],["RHEA%3A21576","carnitine + H(+) = 2-methylcholine + CO2"],["RHEA%3A19265","carnitine + NAD(+) = 3-dehydrocarnitine + NADH + H(+)"]],"b":[["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:17309","l":"pectin","na":1,"nb":7,"a":[["MCSA%3A681","pectinesterase"]],"b":[["MEDIUM_FOR_TREPONEMA_PECTINOVORUM.yaml","medium_for_treponema_pectinovorum"],["MODIFIED_OTI_MEDIUM.yaml","modified_oti_medium"],["PPM.yaml","ppm"],["medium_for_treponema_pectinovorum__e5f7afef.yaml","medium_for_treponema_pectinovorum"],["oteb_medium.yaml","oteb_medium"],["pectin_medium__d8bc472f.yaml","pectin_medium"]]},{"id":"CHEBI:30776","l":"hexanoic acid","na":1,"nb":7,"a":[["proteintraitsmech%3ABIOLIP_6NA","6NA-binding site"]],"b":[["DESULFUROBACTERIUM_MEDIUM.yaml","desulfurobacterium_medium"],["TD3_MEDIUM.yaml","td3_medium"],["THERMODESULFOBACTERIUM_HYDROGENIPHILUM_MEDIUM.yaml","thermodesulfobacterium_hydrogeniphilum_medium"],["THERMODESULFOBACTERIUM_HYDROGENOPHILUM_MEDIUM.yaml","thermodesulfobacterium_hydrogenophilum_medium"],["desulfurobacterium_medium__edb237d2.yaml","desulfurobacterium_medium"],["td3_medium__4a2d4552.yaml","td3_medium"]]},{"id":"NCBITaxon:262724","l":"Thermus thermophilus HB27","na":7,"nb":1,"a":[["Pfam%3APF22474","Argonaute, middle domain"],["Pfam%3APF22472","Argonaute, N-terminal domain"],["Pfam%3APF03449","Transcription elongation factor, N-terminal"],["Pfam%3APF01272","Transcription elongation factor, GreA/GreB, C-term"],["Pfam%3APF09704","CRISPR-associated protein (Cas_Cas5)"],["PROSITE%3APS01224","N-acetyl-gamma-glutamyl-phosphate reductase active site"]],"b":[["thermus_medium__6b1d1914.yaml","thermus_medium"]]},{"id":"CHEBI:18012","l":"fumaric acid","na":1,"nb":6,"a":[["proteintraitsmech%3ABIOLIP_FUM","FUM-binding site"]],"b":[["Brucella_broth_with_formate_and_fumarate.yaml","brucella_broth_with_formate_and_fumarate"],["TRICHLOROMONAS_MEDIUM.yaml","trichloromonas_medium"],["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"],["jcm_medium_no_1264.yaml","jcm_medium_no_1264"],["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"],["togo_medium_m1360.yaml","togo_medium_m1360"]]},{"id":"CHEBI:27592","l":"ectoine","na":1,"nb":6,"a":[["proteintraitsmech%3ABIOLIP_4CS","4CS-binding site"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"],["modified_m63_medium_with_ectoine_and_2_5_m_nacl.yaml","modified_m63_medium_with_ectoine_and_2_5_m_nacl"]]},{"id":"CHEBI:46502","l":"tungstate","na":6,"nb":1,"a":[["EC%3A7.3.2.6","ABC-type tungstate transporter"],["RHEA%3A35295","adenylyl-molybdopterin + tungstate = W-molybdopterin cofactor + AMP + H(+)"],["RHEA%3A35027","tungstate(in) + ATP + H2O = tungstate(out) + ADP + phosphate + H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.47","The Divalent Anion:Na+ Symporter (DASS) Family"],["proteintraitsmech%3ABIOLIP_WO4","WO4-binding site"]],"b":[["alcalilimnicola_ehrlichii_mhle_1_medium.yaml","alcalilimnicola_ehrlichii_mhle_1_medium"]]},{"id":"CHEBI:15671","l":"L-tartaric acid","na":1,"nb":5,"a":[["proteintraitsmech%3ABIOLIP_TLA","TLA-binding site"]],"b":[["MAGNETOSPIRILLUM_MEDIUM.yaml","magnetospirillum_medium"],["MG_minimal_media.yaml","MG minimal media"],["MG_minimal_media_noIron.yaml","MG minimal media noIron"],["magnetospirillum_medium__dc0f1596.yaml","magnetospirillum_medium"],["telmatospirillum_peat_medium.yaml","telmatospirillum_peat_medium"]]},{"id":"CHEBI:16119","l":"shikimic acid","na":1,"nb":5,"a":[["proteintraitsmech%3ABIOLIP_SKM","SKM-binding site"]],"b":[["NLDM_defined.yaml","NLDM_defined"],["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:16830","l":"methylamine","na":1,"nb":5,"a":[["proteintraitsmech%3ABIOLIP_NME","NME-binding site"]],"b":[["ACETOBACTERIUM_SUBMARINUS_MEDIUM.yaml","acetobacterium_submarinus_medium"],["MEDIUM_FOR_DSM_14457_AND_14458.yaml","medium_for_dsm_14457_and_14458"],["MEDIUM_FOR_METHYLOBACTERIUM_PODARIUM.yaml","medium_for_methylobacterium_podarium"],["acetobacterium_submarinus_medium__9fed26ec.yaml","acetobacterium_submarinus_medium"],["hyphomicrobium_medium__41859ce8.yaml","hyphomicrobium_medium"]]},{"id":"CHEBI:75937","l":"monooleoylglycerol","na":5,"nb":1,"a":[["RHEA%3A38455","1,2-di-(9Z-octadecenoyl)-glycerol + H2O = (9Z-octadecenoyl)-glycerol + (9Z)-octadecenoate + H(+)"],["RHEA%3A39935","1,2-di-(9Z-octadecenoyl)-sn-glycerol + H2O = (9Z-octadecenoyl)-glycerol + (9Z)-octadecenoate + H(+)"],["RHEA%3A39955","(9Z-octadecenoyl)-glycerol + H2O = glycerol + (9Z)-octadecenoate + H(+)"],["RHEA%3A50884","(9Z)-octadecenoyl-sn-glycero-3-phosphate + H2O = (9Z-octadecenoyl)-glycerol + phosphate"],["RHEA%3A47868","di-(9Z)-octadecenoylglycerol + H2O = (9Z-octadecenoyl)-glycerol + (9Z)-octadecenoate + H(+)"]],"b":[["PITYROSPORUM_MEDIUM.yaml","pityrosporum_medium"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":5,"nb":1,"a":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF02963","Restriction endonuclease EcoRI"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["PROSITE%3APS00974","Mannitol dehydrogenases signature"],["PROSITE%3APS00567","Phosphoribulokinase signature"]],"b":[["RHODOBACTER_SPHAEROIDES_MEDIUM.yaml","rhodobacter_sphaeroides_medium"]]},{"id":"CHEBI:12936","l":"D-galactose","na":1,"nb":4,"a":[["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"]],"b":[["XYLOPHILUS_MEDIUM.yaml","xylophilus_medium"],["bm_in_galactose_hodgson_et_al.yaml","bm_in_galactose_hodgson_et_al"],["liquid_mm_with_galactose_hodgson_et_al.yaml","liquid_mm_with_galactose_hodgson_et_al"],["minimal_media__805aefdd.yaml","minimal_media"]]},{"id":"CHEBI:16148","l":"heptadecane","na":4,"nb":1,"a":[["EC%3A4.1.99.5","aldehyde oxygenase (deformylating)"],["RHEA%3A77243","hnu + octadecanoate + H(+) = heptadecane + CO2"],["RHEA%3A30415","octadecanal + 2 NADPH + O2 + H(+) = heptadecane + formate + 2 NADP(+) + H2O"],["RHEA%3A83559","octadecanal + reduced [NADPH--hemoprotein reductase] + O2 = heptadecane + oxidized [NADPH--hemoprotein reductase] + CO2 + H2O + H(+)"]],"b":[["THERMOMICROBIUM_FOSTERI_MEDIUM.yaml","thermomicrobium_fosteri_medium"]]},{"id":"CHEBI:16354","l":"N-methylhydantoin","na":4,"nb":1,"a":[["EC%3A3.5.2.14","N-methylhydantoinase (ATP-hydrolyzing)"],["EC%3A3.5.4.21","creatinine deaminase"],["RHEA%3A12681","creatinine + H2O + H(+) = N-methylhydantoin + NH4(+)"],["RHEA%3A11720","N-methylhydantoin + ATP + 2 H2O = N-carbamoylsarcosine + ADP + phosphate + 2 H(+)"]],"b":[["tissierella_amo_1_medium.yaml","tissierella_amo_1_medium"]]},{"id":"CHEBI:16411","l":"indole-3-acetic acid","na":1,"nb":4,"a":[["proteintraitsmech%3ABIOLIP_IAC","IAC-binding site"]],"b":[["ENDOMICROBIUM_PROAVITUM_RSA_MEDIUM.yaml","endomicrobium_proavitum_rsa_medium"],["MODIFIED_AM5_MEDIUM_2.yaml","modified_am5_medium_2"],["am5_medium_elusimicrobium_medium.yaml","am5_medium_elusimicrobium_medium"],["endomicrobium_proavitum_rsa_medium__51692939.yaml","endomicrobium_proavitum_rsa_medium"]]},{"id":"CHEBI:16742","l":"orotic acid","na":1,"nb":4,"a":[["proteintraitsmech%3ABIOLIP_ORO","ORO-binding site"]],"b":[["SGW_Northen_Exometabolite_mix_5x.yaml","SGW Northen Exometabolite mix 5x"],["Soil_Defined_Media_%28SDM%29.yaml","Soil Defined Media (SDM)"],["cdm_lab_medium.yaml","cdm_lab_medium"],["ucm.yaml","ucm"]]},{"id":"CHEBI:16991","l":"deoxyribonucleic acid","na":1,"nb":4,"a":[["proteintraitsmech%3ABIOLIP_DNA","DNA-binding site"]],"b":[["PH_MEDIUM.yaml","ph_medium"],["sp4_z_medium__eae01184.yaml","sp4_z_medium"],["ureaplasma_medium__abc787f9.yaml","ureaplasma_medium"],["ureaplasma_medium__de7f9c49.yaml","ureaplasma_medium"]]},{"id":"CHEBI:17148","l":"putrescine","na":1,"nb":4,"a":[["proteintraitsmech%3ABIOLIP_PUT","PUT-binding site"]],"b":[["VEILLONELLA_MEDIUM.yaml","veillonella_medium"],["ucm.yaml","ucm"],["veillonella_medium__007a2b69.yaml","veillonella_medium"],["veillonella_medium__9e3e9781.yaml","veillonella_medium"]]},{"id":"CHEBI:28621","l":"triethanolamine","na":1,"nb":4,"a":[["proteintraitsmech%3ABIOLIP_211","211-binding site"]],"b":[["LACTOBACILLUS_PONTIS_MEDIUM.yaml","lactobacillus_pontis_medium"],["lactobacillus_pontis_medium__899ad629.yaml","lactobacillus_pontis_medium"],["mic_cit_herriott_et_al.yaml","mic_cit_herriott_et_al"],["mic_herriott_et_al.yaml","mic_herriott_et_al"]]},{"id":"CHEBI:28631","l":"3-phenylpropionic acid","na":1,"nb":4,"a":[["proteintraitsmech%3ABIOLIP_HCI","HCI-binding site"]],"b":[["ENDOMICROBIUM_PROAVITUM_RSA_MEDIUM.yaml","endomicrobium_proavitum_rsa_medium"],["MODIFIED_AM5_MEDIUM_2.yaml","modified_am5_medium_2"],["am5_medium_elusimicrobium_medium.yaml","am5_medium_elusimicrobium_medium"],["endomicrobium_proavitum_rsa_medium__51692939.yaml","endomicrobium_proavitum_rsa_medium"]]},{"id":"CHEBI:30411","l":"cobalamin","na":4,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_30411","requires cobalamin"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A9.A.54","The Lysosomal Cobalamin (B12) Transporter (L-B12T) Family"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]],"b":[["1_10_pygv_medium_modified.yaml","1_10_pygv_medium_modified"]]},{"id":"CHEBI:30745","l":"phenylacetic acid","na":1,"nb":4,"a":[["proteintraitsmech%3ABIOLIP_PAC","PAC-binding site"]],"b":[["ENDOMICROBIUM_PROAVITUM_RSA_MEDIUM.yaml","endomicrobium_proavitum_rsa_medium"],["MODIFIED_AM5_MEDIUM_2.yaml","modified_am5_medium_2"],["am5_medium_elusimicrobium_medium.yaml","am5_medium_elusimicrobium_medium"],["endomicrobium_proavitum_rsa_medium__51692939.yaml","endomicrobium_proavitum_rsa_medium"]]},{"id":"CHEBI:41688","l":"crystal violet","na":1,"nb":4,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["1298.yaml","1298"],["ALKALINE_CELLULOSE_AGAR.yaml","alkaline_cellulose_agar"],["acido_thermophile_medium.yaml","acido_thermophile_medium"],["modified_eggerth_gagnon_medium.yaml","modified_eggerth_gagnon_medium"]]},{"id":"CHEBI:47966","l":"aldehydo-N-acetylmuramic acid","na":1,"nb":4,"a":[["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"]],"b":[["NLDM_defined_no_P.yaml","NLDM_defined_no_P"],["NLDM_defined_novitamin.yaml","NLDM_defined_novitamin"],["NLDM_defined_pH5.yaml","NLDM_defined_pH5"],["NLDM_defined_pH8.yaml","NLDM_defined_pH8"]]},{"id":"CHEBI:16602","l":"trichloroethene","na":3,"nb":1,"a":[["EC%3A1.21.99.5","tetrachloroethene reductive dehalogenase"],["RHEA%3A67992","trichloroethene + AH2 = (Z)-1,2-dichloroethene + chloride + A + H(+)"],["RHEA%3A20353","trichloroethene + chloride + A + H(+) = tetrachloroethene + AH2"]],"b":[["dehalococcoides_medium__9ce6016b.yaml","dehalococcoides_medium"]]},{"id":"CHEBI:25351","l":"mevalonic acid","na":1,"nb":3,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["LACTOBACILLUS_MEDIUM_III.yaml","lactobacillus_medium_iii"],["lactobacillus_medium_ii__915ff5f7.yaml","lactobacillus_medium_ii"],["lactobacillus_medium_iii__eb3ab598.yaml","lactobacillus_medium_iii"]]},{"id":"CHEBI:2682","l":"amphotericin B","na":1,"nb":3,"a":[["proteintraitsmech%3ABIOLIP_4UH","4UH-binding site"]],"b":[["HELICOBACTER_MEDIUM.yaml","helicobacter_medium"],["brain_heart_infusion_agar_upplemented_with_10_calf_blood_and_antibiotics.yaml","brain_heart_infusion_agar_upplemented_with_10_calf_blood_and_antibiotics"],["eagles_minimum_essential_medium_mem_containing_antibiotics_and_fetal_bovine_serum.yaml","eagles_minimum_essential_medium_mem_containing_antibiotics_and_fetal_bovine_serum"]]},{"id":"CHEBI:28145","l":"dibenzofuran","na":1,"nb":3,"a":[["RHEA%3A42460","dibenzofuran + NADH + O2 + H(+) = biphenyl-2,2',3-triol + NAD(+)"]],"b":[["MINERAL_MEDIUM_WITH_DIBENZOFURAN.yaml","mineral_medium_with_dibenzofuran"],["cfmm_medium_0_1_dibenzofuran.yaml","cfmm_medium_0_1_dibenzofuran"],["mineral_medium_with_2_chlorobenzoate.yaml","mineral_medium_with_2_chlorobenzoate"]]},{"id":"CHEBI:41808","l":"decane","na":1,"nb":3,"a":[["RHEA%3A76735","decane + reduced [NADPH--hemoprotein reductase] + O2 = 3-decanol + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"]],"b":[["DESULFOGLAEBA_MEDIUM.yaml","desulfoglaeba_medium"],["MODIFIED_DESULFOGLAEBA_ALKANEXEDENS_MEDIUM.yaml","modified_desulfoglaeba_alkanexedens_medium"],["modified_desulfoglaeba_alkanexedens_medium__f10b64fd.yaml","modified_desulfoglaeba_alkanexedens_medium"]]},{"id":"NCBITaxon:41673","l":"Acidianus brierleyi","na":3,"nb":1,"a":[["TED%3AAF-A0A2U9IEJ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U9IEJ0-F1-model_v4_TED01"],["TED%3AAF-A0A2U9IC53-F1-model_v4_TED01","TED novel fold AF-A0A2U9IC53-F1-model_v4_TED01"],["TED%3AAF-A0A2U9ICQ8-F1-model_v4_TED02","TED novel fold AF-A0A2U9ICQ8-F1-model_v4_TED02"]],"b":[["sulfolobus_medium_anaerobic_for_dsm_2162.yaml","sulfolobus_medium_anaerobic_for_dsm_2162"]]},{"id":"NCBITaxon:44001","l":"Caldicellulosiruptor saccharolyticus","na":3,"nb":1,"a":[["Pfam%3APF12891","Glycoside hydrolase family 44"],["PROSITE%3APS01027","Glycosyl hydrolases family 39 active site"],["Pfam%3APF02011","Glycosyl hydrolase family 48"]],"b":[["caldicellulosiruptor_medium_for_dsm_10319.yaml","caldicellulosiruptor_medium_for_dsm_10319"]]},{"id":"NCBITaxon:823","l":"Parabacteroides distasonis","na":3,"nb":1,"a":[["TED%3AAF-A0A412R0B2-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A412R0B2-F1-model_v4_TED05"],["TED%3AAF-A0A4S2EEJ9-F1-model_v4_TED01","TED novel fold AF-A0A4S2EEJ9-F1-model_v4_TED01"],["TED%3AAF-A0A5C6KM13-F1-model_v4_TED03","TED novel fold AF-A0A5C6KM13-F1-model_v4_TED03"]],"b":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]]},{"id":"CHEBI:15676","l":"allantoin","na":1,"nb":2,"a":[["RHEA%3A30819","allantoin + H2O = allantoate + H(+)"]],"b":[["ALLANTOIN_MINERAL_MEDIUM.yaml","allantoin_mineral_medium"],["allantoin_mineral_medium__75896b1e.yaml","allantoin_mineral_medium"]]},{"id":"CHEBI:16261","l":"chitosan","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_GCS","GCS-binding site"]],"b":[["HALOACTINOMYCES_HALOPHILUS_MEDIUM.yaml","haloactinomyces_halophilus_medium"],["Matsuaria_Medium.yaml","matsuaria_medium"]]},{"id":"CHEBI:17533","l":"N-acetyl-L-glutamic acid","na":2,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["proteintraitsmech%3ABIOLIP_NLG","NLG-binding site"]],"b":[["NLDM_defined.yaml","NLDM_defined"]]},{"id":"CHEBI:18026","l":"2,3-dihydroxybenzoic acid","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_DBH","DBH-binding site"]],"b":[["M9_minimal_media_aromix_noCarbon.yaml","M9 minimal media aromix noCarbon"],["MOPS_Rich_Defined_media_noCarbon.yaml","MOPS Rich Defined media noCarbon"]]},{"id":"CHEBI:27941","l":"pullulan","na":1,"nb":2,"a":[["MCSA%3A433","neopullulanase"]],"b":[["ARTIFICIAL_SEAWATER_MEDIUM_WITH_PULLULAN.yaml","artificial_seawater_medium_with_pullulan"],["artificial_seawater_medium_with_pullulan__dbb4c222.yaml","artificial_seawater_medium_with_pullulan"]]},{"id":"CHEBI:28488","l":"m-xylene","na":2,"nb":1,"a":[["EC%3A1.14.15.26","toluene methyl-monooxygenase"],["RHEA%3A51600","m-xylene + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = 3-methylbenzyl alcohol + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"]],"b":[["DESULFOVIRGA_MEDIUM.yaml","desulfovirga_medium"]]},{"id":"CHEBI:30746","l":"benzoic acid","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_BEZ","BEZ-binding site"]],"b":[["UGA_defined_4CarbonMix_Nitrate_anaerobic_pH_7.1.yaml","UGA defined 4CarbonMix Nitrate anaerobic pH 7.1"],["togo_medium_m1949.yaml","togo_medium_m1949"]]},{"id":"CHEBI:30751","l":"formic acid","na":2,"nb":1,"a":[["MCSA%3A38","GTP cyclohydrolase I"],["proteintraitsmech%3ABIOLIP_FMT","FMT-binding site"]],"b":[["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:30764","l":"3-hydroxybenzoic acid","na":1,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_3HB","3HB-binding site"]],"b":[["ANAEROBIOSPIRILLUM_THOMASII_MEDIUM.yaml","anaerobiospirillum_thomasii_medium"],["sporotomaculum_medium.yaml","sporotomaculum_medium"]]},{"id":"CHEBI:35366","l":"fatty acid","na":1,"nb":2,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["MODIFIED_AM5_MEDIUM_2.yaml","modified_am5_medium_2"],["modified_am5_medium__421a5fe8.yaml","modified_am5_medium"]]},{"id":"CHEBI:133362","l":"N-acetyl-L-methionyl-L-glutaminyl residue","na":1,"nb":1,"a":[["RHEA%3A50492","N-terminal L-methionyl-L-glutaminyl-[protein] + acetyl-CoA = N-terminal N(alpha)-acetyl-L-methionyl-L-glutaminyl-[protein] + CoA + H(+)"]],"b":[["NLDM_defined.yaml","NLDM_defined"]]},{"id":"CHEBI:15978","l":"sn-glycerol 3-phosphate","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_G3P","G3P-binding site"]],"b":[["modified_dixon_s_agar.yaml","modified_dixon_s_agar"]]},{"id":"CHEBI:16867","l":"D-methionine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MED","MED-binding site"]],"b":[["methionine_salt_schaechter_et_al.yaml","methionine_salt_schaechter_et_al"]]},{"id":"CHEBI:17189","l":"2,5-dihydroxybenzoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_GTQ","GTQ-binding site"]],"b":[["syntrophus_hqg_1_medium.yaml","syntrophus_hqg_1_medium"]]},{"id":"CHEBI:22660","l":"aspartic acid","na":1,"nb":1,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"]],"b":[["FRANCISELLA_PERSICA_MEDIUM.yaml","francisella_persica_medium"]]},{"id":"CHEBI:24040","l":"flavin adenine dinucleotide","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_24040","requires flavin adenine dinucleotide"]],"b":[["omiz_pat_medium_modified.yaml","omiz_pat_medium_modified"]]},{"id":"CHEBI:26986","l":"threonine","na":1,"nb":1,"a":[["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["brain_heart_infusion_difco_medium_supplemented_with_dl_threonine_and_glucose.yaml","brain_heart_infusion_difco_medium_supplemented_with_dl_threonine_and_glucose"]]},{"id":"CHEBI:29125","l":"arsenate(3-)","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ART","ART-binding site"]],"b":[["HALARSENATIBACTER_MEDIUM.yaml","halarsenatibacter_medium"]]},{"id":"CHEBI:30452","l":"tellurium atom","na":1,"nb":1,"a":[["TCDB%3A2.A.109","The Tellurium Ion Resistance (TerC) Family"]],"b":[["ucm.yaml","ucm"]]},{"id":"CHEBI:30621","l":"diarsenic trioxide","na":1,"nb":1,"a":[["TCDB%3A1.A.8","The Major Intrinsic Protein (MIP) Family"]],"b":[["ucm.yaml","ucm"]]},{"id":"CHEBI:30845","l":"2-furoic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_FOA","FOA-binding site"]],"b":[["pelobacter_fuf_medium.yaml","pelobacter_fuf_medium"]]},{"id":"CHEBI:33083","l":"fluoranthene","na":1,"nb":1,"a":[["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]],"b":[["PLATES_WITH_FLUORANTHENE.yaml","plates_with_fluoranthene"]]},{"id":"CHEBI:40666","l":"1,6-anhydro-N-acetyl-beta-muramic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_AH0","AH0-binding site"]],"b":[["NLDM_defined.yaml","NLDM_defined"]]},{"id":"NCBITaxon:1670455","l":"Sulfodiicoccus acidiphilus","na":1,"nb":1,"a":[["TED%3AAF-A0A348B6D9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A348B6D9-F1-model_v4_TED02"]],"b":[["sulfolobus_medium_anaerobic_for_dsm_2162.yaml","sulfolobus_medium_anaerobic_for_dsm_2162"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":1,"nb":1,"a":[["TED%3AAF-A0A4R6CRR7-F1-model_v4_TED01","TED novel fold AF-A0A4R6CRR7-F1-model_v4_TED01"]],"b":[["chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733.yaml","chopped_meat_medium_atcc_1490_with_formate_and_fumarate_atcc_9733"]]},{"id":"NCBITaxon:69656","l":"Sulfurisphaera ohwakuensis","na":1,"nb":1,"a":[["TED%3AAF-A0A650CK52-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A650CK52-F1-model_v4_TED01"]],"b":[["sulfolobus_medium_anaerobic_for_dsm_2162.yaml","sulfolobus_medium_anaerobic_for_dsm_2162"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/ProteinTraitsMech--NaturalProductMech.json b/assets/fleet/edges/ProteinTraitsMech--NaturalProductMech.json index dd14b9b..aff3b2e 100644 --- a/assets/fleet/edges/ProteinTraitsMech--NaturalProductMech.json +++ b/assets/fleet/edges/ProteinTraitsMech--NaturalProductMech.json @@ -1 +1 @@ -{"a":"ProteinTraitsMech","b":"NaturalProductMech","base":{"ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record=","NaturalProductMech":"https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/natural_products/"},"n":794,"by":{"NCBITaxon":487,"UniProt":156,"CHEBI":148,"RHEA":3},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":145,"nb":24,"a":[["IDPO%3A0000033","flexible linker"],["IDPO%3A0000014","order to disorder"],["IDPO%3A0000004","pre-molten globule"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":32,"nb":23,"a":[["Pfam%3APF25848","Rodlin protein"],["Pfam%3APF13420","Acetyltransferase (GNAT) domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF26381","BREX System ATPase PglY protein 5th domain"],["Pfam%3APF26382","BREX System ATPase PglY protein 6th domain"]],"b":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/melanin.yaml","melanin"],["alkaloids/undecylprodigiosin.yaml","undecylprodigiosin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/sapb.yaml","SapB"]]},{"id":"NCBITaxon:227321","l":"Emericella nidulans (strain FGSC A4 / ATCC 38163 / CBS 112.46 / NRRL 194 / M139)","na":44,"nb":22,"a":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF05270","Alpha-L-arabinofuranosidase B (ABFB) domain"],["Pfam%3APF07792","Docking domain of Afi1 for Arf3 in vesicle trafficking"],["Pfam%3APF09206","Alpha-L-arabinofuranosidase B, catalytic"],["Pfam%3APF27751","ATEG_07667 C-terminal domain"],["Pfam%3APF20238","Copper acquisition factor BIM1-like"]],"b":[["alkaloids/aspernidine-a.yaml","aspernidine A"],["alkaloids/aspyridone-a.yaml","aspyridone A"],["alkaloids/aspyridone-b.yaml","aspyridone B"],["alkaloids/cichorine.yaml","cichorine"],["alkaloids/terrequinone-a.yaml","terrequinone A"],["amino_acids_and_peptides/fellutamide-b.yaml","fellutamide B"]]},{"id":"NCBITaxon:77133","l":"uncultured bacterium","na":22,"nb":34,"a":[["TED%3AAF-A0A059X489-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A059X489-F1-model_v4_TED02"],["TED%3AAF-A0A059X769-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A059X769-F1-model_v4_TED01"],["TED%3AAF-K1YCK5-F1-model_v4_TED02","TED highly-symmetric fold AF-K1YCK5-F1-model_v4_TED02"],["TED%3AAF-K1Z363-F1-model_v4_TED05","TED highly-symmetric fold AF-K1Z363-F1-model_v4_TED05"],["TED%3AAF-K1ZVQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-K1ZVQ3-F1-model_v4_TED01"],["TED%3AAF-K2AKZ9-F1-model_v4_TED01","TED highly-symmetric fold AF-K2AKZ9-F1-model_v4_TED01"]],"b":[["alkaloids/borregomycin-a.yaml","borregomycin A"],["alkaloids/borregomycin-b.yaml","borregomycin B"],["alkaloids/borregomycin-c.yaml","borregomycin C"],["alkaloids/borregomycin-d.yaml","borregomycin D"],["alkaloids/erdasporine-a.yaml","erdasporine A"],["alkaloids/erdasporine-b.yaml","erdasporine B"]]},{"id":"UniProt:P43405","l":"","na":32,"nb":17,"a":[["GO%3A0019815","B cell receptor complex"],["GO%3A0042101","T cell receptor complex"],["GO%3A0016170","interleukin-15 receptor binding"],["GO%3A0004715","non-membrane spanning protein tyrosine kinase activity"],["GO%3A0035325","Toll-like receptor binding"],["GO%3A0002752","cell surface pattern recognition receptor signaling pathway"]],"b":[["alkaloids/cytochalasin-e.yaml","cytochalasin E"],["alkaloids/fumiquinazoline-a.yaml","fumiquinazoline A"],["alkaloids/fumiquinazoline-d.yaml","fumiquinazoline D"],["alkaloids/psilocybin.yaml","psilocybin"],["amino_acids_and_peptides/epoxomicin.yaml","epoxomicin"],["amino_acids_and_peptides/tubulysin-a.yaml","tubulysin A"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":16,"nb":27,"a":[["Pfam%3APF16822","SGNH hydrolase-like domain, acetyltransferase AlgX"],["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"],["Pfam%3APF11182","Alginate O-acetyl transferase AlgF"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF27129","Functional amyloid protein FapB/FapC family"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]],"b":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["alkaloids/pseudomonine.yaml","pseudomonine"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyreudione-c.yaml","pyreudione C"],["alkaloids/quinolobactin.yaml","quinolobactin"]]},{"id":"UniProt:O96028","l":"","na":27,"nb":16,"a":[["ComplexPortal%3ACPX-16414","-"],["CDD%3Acd20162","PWWP_NSD2_rpt1"],["CDD%3Acd21991","HMG-box_NSD2"],["CDD%3Acd15648","PHD1_NSD1_2"],["CDD%3Acd15651","PHD2_NSD2"],["CDD%3Acd15654","PHD3_NSD2"]],"b":[["alkaloids/cytochalasin-e.yaml","cytochalasin E"],["alkaloids/fumiquinazoline-d.yaml","fumiquinazoline D"],["amino_acids_and_peptides/epoxomicin.yaml","epoxomicin"],["amino_acids_and_peptides/tubulysin-a.yaml","tubulysin A"],["carbohydrates/puromycin.yaml","puromycin"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":16,"a":[["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["Pfam%3APF14562","Restriction endonuclease BglI"],["Pfam%3APF09195","Restriction endonuclease BglII/BglIII"],["Pfam%3APF09208","Restriction endonuclease MspI"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["amino_acids_and_peptides/ericin-s.yaml","ericin S"],["amino_acids_and_peptides/iturin.yaml","iturin"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"]]},{"id":"NCBITaxon:330879","l":"Aspergillus fumigatus (strain ATCC MYA-4609 / CBS 101355 / FGSC A1100 / Af293)","na":34,"nb":14,"a":[["Pfam%3APF22624","4'-phosphopantetheinyl transferase, N-terminal"],["Pfam%3APF13523","Acetyltransferase (GNAT) domain"],["Pfam%3APF28338","AclK C-terminal domain"],["Pfam%3APF23297","Highly reducing polyketide synthase sdgA, C-terminal ACP domain"],["Pfam%3APF11001","YDR124W-like, helical bundle domain"],["Pfam%3APF25312","Allergen Asp f 4-like domain"]],"b":[["alkaloids/fumigaclavine-c.yaml","fumigaclavine C"],["alkaloids/fumiquinazoline-a.yaml","fumiquinazoline A"],["alkaloids/fumiquinazoline-c.yaml","fumiquinazoline C"],["alkaloids/fumiquinazoline-d.yaml","fumiquinazoline D"],["alkaloids/hexadehydroastechrome.yaml","hexadehydroastechrome"],["polyketides/endocrocin.yaml","endocrocin"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":49554,"nb":13,"a":[["EC%3A1.1.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.1.98.-","With other, known, acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/congocidine.yaml","congocidine"],["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]]},{"id":"NCBITaxon:56","l":"Sorangium cellulosum","na":13,"nb":25,"a":[["TED%3AAF-A0A150SQB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A150SQB4-F1-model_v4_TED01"],["TED%3AAF-A0A2L0EP96-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0EP96-F1-model_v4_TED01"],["TED%3AAF-A0A2L0F1G5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0F1G5-F1-model_v4_TED01"],["TED%3AAF-A0A2L0F230-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0F230-F1-model_v4_TED01"],["TED%3AAF-A0A4P2R1W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P2R1W3-F1-model_v4_TED01"],["TED%3AAF-A0A150P579-F1-model_v4_TED02","TED novel fold AF-A0A150P579-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/microsclerodermin-m.yaml","microsclerodermin M"],["polyketides/ambruticin.yaml","ambruticin"],["polyketides/chivosazol.yaml","chivosazol"],["polyketides/chlorotonil-a.yaml","chlorotonil A"],["polyketides/disorazol-a.yaml","disorazol A"],["polyketides/etnangien.yaml","etnangien"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":19,"nb":12,"a":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"],["Pfam%3APF18173","Bacterial HORMA domain 2"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["Pfam%3APF27322","Cap8 HORMA domain"],["Pfam%3APF01526","Tn3 transposase DDE domain"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:341663","l":"","na":11,"nb":17,"a":[["Pfam%3APF27751","ATEG_07667 C-terminal domain"],["Pfam%3APF28386","BfoA family C-terminal domain"],["Pfam%3APF03879","Cgr1 family"],["Pfam%3APF22621","CurL-like, PKS C-terminal"],["Pfam%3APF18558","Methyltransferase, Helix-turn-helix domain"],["Pfam%3APF06355","Aegerolysin"]],"b":[["alkaloids/asterriquinone-ct5.yaml","asterriquinone CT5"],["alkaloids/dihydroisoflavipucine.yaml","dihydroisoflavipucine"],["alkaloids/isoflavipucine.yaml","isoflavipucine"],["polyketides/citreoviridin.yaml","citreoviridin"],["polyketides/geodin.yaml","geodin"],["polyketides/terreic-acid.yaml","terreic acid"]]},{"id":"NCBITaxon:3702","l":"Arabidopsis thaliana","na":18772,"nb":10,"a":[["EC%3A1.1.99.-","With other acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.14.11.-","With 2-oxoglutarate as one donor, and incorporation of one atom each of oxygen into both donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.14.-","With reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/itaconic-acid.yaml","itaconic acid"],["terpenoids/ent-quiannulatene.yaml","(-)-ent-quiannulatene"],["terpenoids/euphol.yaml","euphol"],["terpenoids/marneral.yaml","marneral"],["terpenoids/thaliandiol.yaml","thaliandiol"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa (strain ATCC 15692 / DSM 22644 / CIP 104116 / JCM 14847 / LMG 12228 / 1C / PRS 101 / PAO1)","na":162,"nb":10,"a":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF06750","Bacterial Peptidase A24 N-terminal domain"],["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF28403","Aconitase X second domain"],["Pfam%3APF28406","Aconitase X third domain"],["Pfam%3APF04412","Aconitase X first domain"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae (strain ATCC 42149 / RIB 40)","na":27,"nb":10,"a":[["Pfam%3APF09260","Alpha-amylase, domain C"],["Pfam%3APF28338","AclK C-terminal domain"],["Pfam%3APF09206","Alpha-L-arabinofuranosidase B, catalytic"],["Pfam%3APF28380","Sesquiterpene cyclase astC-like C-terminal domain"],["Pfam%3APF13364","Beta-galactosidase second all-beta domain"],["Pfam%3APF10435","Beta-galactosidase, domain 2"]],"b":[["fatty_acids/oryzine-a.yaml","oryzine A"],["polyketides/kojic-acid.yaml","kojic acid"],["polyketides/oryzine-b.yaml","oryzine B"],["polyketides/ywa1.yaml","YWA1"],["shikimates_and_phenylpropanoids/2-4-dihydroxy-3-methoxypropiophenone.yaml","2,4'-dihydroxy-3'-methoxypropiophenone"],["shikimates_and_phenylpropanoids/8-methyldiaporthin.yaml","8-methyldiaporthin"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":10,"nb":11,"a":[["Pfam%3APF17433","Glycosyl hydrolase family 49 N-terminal Ig-like domain"],["PROSITE%3APS00820","Glucoamylase active site region signature"],["PROSITE%3APS00920","Nitrilases / cyanide hydratase signature 1"],["PROSITE%3APS00502","Polygalacturonase active site"],["Pfam%3APF18841","Beta solenoid repeat from Dextranase"],["Pfam%3APF03718","Glycosyl hydrolase family 49"]],"b":[["amino_acids_and_peptides/ferrichrome.yaml","ferrichrome"],["polyketides/1-2-3-5-10-tetrahydroxy-7-methoxy-4-oxo-1-2-3-4-tetrahydroanthracen-2-yl-pentane.yaml","1-(2,3,5,10-tetrahydroxy-7-methoxy-4-oxo-1,2,3,4-tetrahydroanthracen-2-yl)pentane-2,4-dione"],["polyketides/azanigerone-a.yaml","azanigerone A"],["polyketides/campyrone-b.yaml","campyrone B"],["polyketides/desmethyl-tan-1612.yaml","desmethyl TAN-1612"],["polyketides/fumonisin-b2.yaml","fumonisin B2"]]},{"id":"NCBITaxon:242507","l":"","na":10,"nb":10,"a":[["Pfam%3APF28293","Biotrophy-associated secreted protein 2"],["Pfam%3APF28414","Biotrophy-associated secreted protein 4"],["Pfam%3APF22997","Chitin synthase 4-like domain"],["Pfam%3APF27979","CON7 transcription factor helical domain"],["Pfam%3APF26980","Dicer-like protein 2, dsRNA binding domain"],["Pfam%3APF11327","Egh16-like virulence factor"]],"b":[["polyketides/1-alpha-l-2-o-methyl-6-deoxymannopyranosyloxy-3-6-8-trimethoxynaphthalene.yaml","1-(alpha-l-(2-O-methyl)-6-deoxymannopyranosyloxy)-3,6,8-trimethoxynaphthalene"],["polyketides/10-11-dihydroxymagnaporthepyrone.yaml","10,11-dihydroxymagnaporthepyrone"],["polyketides/12-13-dihydroxymagnaporthepyrone.yaml","12,13-dihydroxymagnaporthepyrone"],["polyketides/epipyriculol.yaml","epipyriculol"],["polyketides/naphthalene-1-3-6-8-tetrol.yaml","naphthalene-1,3,6,8-tetrol"],["polyketides/nectriapyrone-c.yaml","nectriapyrone C"]]},{"id":"UniProt:P18054","l":"","na":25,"nb":9,"a":[["EC%3A1.13.11.31","arachidonate 12-lipoxygenase"],["EC%3A1.13.11.33","arachidonate 15-lipoxygenase"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"],["RHEA%3A10428","(5Z,8Z,11Z,14Z)-eicosatetraenoate + O2 = (12S)-hydroperoxy-(5Z,8Z,10E,14Z)-eicosatetraenoate"],["RHEA%3A16869","(5Z,8Z,11Z,14Z)-eicosatetraenoate + O2 = (15S)-hydroperoxy-(5Z,8Z,11Z,13E)-eicosatetraenoate"],["GO%3A0004052","arachidonate 12(S)-lipoxygenase activity"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/actinonin.yaml","actinonin"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"],["fatty_acids/triacsin-c.yaml","triacsin C"],["polyketides/terreic-acid.yaml","terreic acid"],["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:Q96RU2","l":"","na":14,"nb":9,"a":[["ComplexPortal%3ACPX-15530","-"],["ComplexPortal%3ACPX-15595","-"],["ComplexPortal%3ACPX-15768","-"],["ComplexPortal%3ACPX-24431","-"],["InterPro%3AIPR054108","Ubiquitin carboxyl-terminal hydrolase 25/28, UIM"],["CDD%3Acd02665","Peptidase_C19I"]],"b":[["alkaloids/esmeraldin.yaml","esmeraldin"],["alkaloids/fervenulin.yaml","fervenulin"],["alkaloids/neocarazostatin-a.yaml","neocarazostatin A"],["alkaloids/nybomycin.yaml","nybomycin"],["amino_acids_and_peptides/tyrocidine-a.yaml","tyrocidine A"],["polyketides/asukamycin.yaml","asukamycin"]]},{"id":"UniProt:O95398","l":"","na":20,"nb":8,"a":[["ComplexPortal%3ACPX-10829","-"],["ComplexPortal%3ACPX-12123","-"],["ComplexPortal%3ACPX-12892","-"],["ComplexPortal%3ACPX-13579","-"],["ComplexPortal%3ACPX-13585","-"],["ComplexPortal%3ACPX-14152","-"]],"b":[["alkaloids/8-azaguanine.yaml","8-azaguanine"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/thiostrepton.yaml","thiostrepton"],["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"],["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK1622","na":8,"nb":12,"a":[["Pfam%3APF27281","DevT C-terminal domain"],["Pfam%3APF27372","DevT N-terminal domain"],["Pfam%3APF17762","ParB HTH domain"],["Pfam%3APF01930","Domain of unknown function DUF83"],["Pfam%3APF09559","Cas6 Crispr"],["Pfam%3APF01905","CRISPR-associated negative auto-regulator DevR/Csa2"]],"b":[["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"],["amino_acids_and_peptides/myxochromide-a.yaml","myxochromide A"],["amino_acids_and_peptides/myxoprincomide-c506.yaml","myxoprincomide-c506"]]},{"id":"NCBITaxon:229533","l":"Fusarium graminearum PH-1","na":8,"nb":11,"a":[["Pfam%3APF18388","Atg29 N-terminal domain"],["Pfam%3APF27599","CcsR C-terminal domain"],["Pfam%3APF07110","EthD domain"],["Pfam%3APF11700","Vacuole effluxer Atg22 like"],["Pfam%3APF28504","Gramillins biosynthetic cluster protein GRA5"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"]],"b":[["alkaloids/chrysogine.yaml","chrysogine"],["amino_acids_and_peptides/fusaoctaxin-a.yaml","fusaoctaxin A"],["polyketides/aurofusarin.yaml","aurofusarin"],["polyketides/prolipyrone-b.yaml","prolipyrone B"],["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"],["terpenoids/15-acetyldeoxynivalenol.yaml","15-acetyldeoxynivalenol"]]},{"id":"NCBITaxon:1911","l":"Streptomyces griseus","na":7,"nb":32,"a":[["Pfam%3APF13207","AAA domain"],["Pfam%3APF27054","Beta-methylindole-3-pyruvate reductase C-terminal domain"],["Pfam%3APF26558","3-dehydroquinate synthase II C-terminal domain"],["Pfam%3APF01959","3-dehydroquinate synthase II N-terminal domain"],["Pfam%3APF13459","4Fe-4S single cluster domain"],["Pfam%3APF04655","Aminoglycoside/hydroxyurea antibiotic resistance kinase"]],"b":[["alkaloids/cycloheximide.yaml","cycloheximide"],["alkaloids/grixazone-a.yaml","grixazone A"],["alkaloids/iminimycin-a.yaml","iminimycin A"],["alkaloids/iminimycin-b.yaml","iminimycin B"],["alkaloids/indolmycin.yaml","indolmycin"],["alkaloids/melanin.yaml","melanin"]]},{"id":"NCBITaxon:223283","l":"Pseudomonas syringae pv. tomato (strain ATCC BAA-871 / DC3000)","na":14,"nb":7,"a":[["IDPO%3A0000030","entropic chain"],["IDPO%3A0000037","molecular recognition display site"],["Pfam%3APF16847","Avirulence AvrPtoB, BAK1-binding domain"],["Pfam%3APF09046","AvrPtoB E3 ubiquitin ligase"],["Pfam%3APF25965","ALG44 beta-barrel domain"],["Pfam%3APF25964","ALG44, barrel-sandwich hybrid domain"]],"b":[["alkaloids/yersiniabactin.yaml","yersiniabactin"],["amino_acids_and_peptides/syringafactin-a.yaml","syringafactin A"],["amino_acids_and_peptides/syringafactin-b.yaml","syringafactin B"],["amino_acids_and_peptides/syringafactin-c.yaml","syringafactin C"],["amino_acids_and_peptides/syringafactin-d.yaml","syringafactin D"],["amino_acids_and_peptides/syringafactin-e.yaml","syringafactin E"]]},{"id":"NCBITaxon:27334","l":"Penicillium expansum","na":7,"nb":10,"a":[["Pfam%3APF11786","Aft1 HRA domain"],["Pfam%3APF11787","Aft1 HRR domain"],["Pfam%3APF11785","Aft1 osmotic stress response (OSM) domain"],["Pfam%3APF14856","Pathogen effector; putative necrosis-inducing factor"],["PROSITE%3APS00624","GMC oxidoreductases signature 2"],["TED%3AAF-A0A0A2ILJ4-F1-model_v4_TED03","TED novel fold AF-A0A0A2ILJ4-F1-model_v4_TED03"]],"b":[["alkaloids/chaetoglobosin-a.yaml","chaetoglobosin A"],["alkaloids/chaetoglobosin-c.yaml","chaetoglobosin C"],["alkaloids/communesin-a.yaml","communesin A"],["alkaloids/communesin-b.yaml","communesin B"],["alkaloids/communesin-c.yaml","communesin C"],["alkaloids/communesin-d.yaml","communesin D"]]},{"id":"NCBITaxon:2024858","l":"","na":7,"nb":7,"a":[["TED%3AAF-A0A2D9T9L6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9T9L6-F1-model_v4_TED01"],["TED%3AAF-A0A2E0T9R7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0T9R7-F1-model_v4_TED01"],["TED%3AAF-A0A891ZV95-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A891ZV95-F1-model_v4_TED01"],["TED%3AAF-A0A2D9SYS7-F1-model_v4_TED02","TED novel fold AF-A0A2D9SYS7-F1-model_v4_TED02"],["TED%3AAF-A0A2D9TFN8-F1-model_v4_TED02","TED novel fold AF-A0A2D9TFN8-F1-model_v4_TED02"],["TED%3AAF-A0A2E0TMV1-F1-model_v4_TED03","TED novel fold AF-A0A2E0TMV1-F1-model_v4_TED03"]],"b":[["amino_acids_and_peptides/sandarazol-a.yaml","sandarazol A"],["amino_acids_and_peptides/sandarazol-c.yaml","sandarazol C"],["amino_acids_and_peptides/sandarazol-d.yaml","sandarazol D"],["amino_acids_and_peptides/sandarazol-f.yaml","sandarazol F"],["amino_acids_and_peptides/sandarazol-g.yaml","sandarazol G"],["unclassified/sandarazol-b.yaml","sandarazol B"]]},{"id":"UniProt:Q14694","l":"","na":27,"nb":6,"a":[["ComplexPortal%3ACPX-11609","-"],["ComplexPortal%3ACPX-11855","-"],["ComplexPortal%3ACPX-12223","-"],["ComplexPortal%3ACPX-12431","-"],["ComplexPortal%3ACPX-12812","-"],["ComplexPortal%3ACPX-13824","-"]],"b":[["alkaloids/esmeraldin.yaml","esmeraldin"],["alkaloids/fervenulin.yaml","fervenulin"],["alkaloids/nybomycin.yaml","nybomycin"],["polyketides/asukamycin.yaml","asukamycin"],["polyketides/dehydrorabelomycin.yaml","dehydrorabelomycin"],["polyketides/flaviolin.yaml","flaviolin"]]},{"id":"UniProt:Q99700","l":"","na":20,"nb":6,"a":[["ComplexPortal%3ACPX-12180","-"],["ComplexPortal%3ACPX-12321","-"],["ComplexPortal%3ACPX-12947","-"],["ComplexPortal%3ACPX-13401","-"],["ComplexPortal%3ACPX-15183","-"],["ComplexPortal%3ACPX-17860","-"]],"b":[["alkaloids/8-azaguanine.yaml","8-azaguanine"],["alkaloids/cycloheximide.yaml","cycloheximide"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"],["unclassified/antimycin-a.yaml","antimycin A"],["unclassified/echinomycin.yaml","echinomycin"]]},{"id":"NCBITaxon:1916","l":"Streptomyces lividans","na":6,"nb":18,"a":[["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["Pfam%3APF27079","SpdB plasmid transfer protein, C-terminal HTH domain"],["Pfam%3APF27072","KilB plasmid transfer protein"],["Pfam%3APF08386","TAP-like protein"],["PROSITE%3APS00999","Streptomyces subtilisin-type inhibitors signature"],["Pfam%3APF03664","Glycosyl hydrolase family 62"]],"b":[["alkaloids/rebeccamycin.yaml","rebeccamycin"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["amino_acids_and_peptides/dehydroxynocardamine.yaml","dehydroxynocardamine"],["amino_acids_and_peptides/goadsporin.yaml","goadsporin"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"]]},{"id":"NCBITaxon:4577","l":"Zea mays","na":18,"nb":6,"a":[["IDPO%3A0000002","disorder"],["Pfam%3APF14861","Plant antimicrobial peptide"],["Pfam%3APF02041","Auxin binding protein"],["Pfam%3APF25436","BSD2 cysteine rich domain"],["Pfam%3APF23493","Cysteinyl-tRNA ligase anticodon binding domain"],["Pfam%3APF03330","Lytic transglycolase"]],"b":[["alkaloids/dimboa.yaml","DIMBOA"],["polyketides/emodin.yaml","emodin"],["terpenoids/zealexin-a1.yaml","zealexin A1"],["terpenoids/zealexin-b3.yaml","zealexin B3"],["terpenoids/zealexin-c2.yaml","zealexin C2"],["unclassified/aflatoxin.yaml","aflatoxin"]]},{"id":"UniProt:P40818","l":"","na":16,"nb":6,"a":[["ComplexPortal%3ACPX-13765","-"],["ComplexPortal%3ACPX-16972","-"],["ComplexPortal%3ACPX-18301","-"],["ComplexPortal%3ACPX-19098","-"],["ComplexPortal%3ACPX-24015","-"],["GO%3A0004843","cysteine-type deubiquitinase activity"]],"b":[["alkaloids/esmeraldin.yaml","esmeraldin"],["alkaloids/fervenulin.yaml","fervenulin"],["alkaloids/neocarazostatin-a.yaml","neocarazostatin A"],["alkaloids/nybomycin.yaml","nybomycin"],["polyketides/dehydrorabelomycin.yaml","dehydrorabelomycin"],["polyketides/flaviolin.yaml","flaviolin"]]},{"id":"NCBITaxon:321614","l":"","na":6,"nb":12,"a":[["Pfam%3APF11786","Aft1 HRA domain"],["Pfam%3APF11787","Aft1 HRR domain"],["Pfam%3APF26980","Dicer-like protein 2, dsRNA binding domain"],["Pfam%3APF18973","Putative Chitin binding like"],["Pfam%3APF25326","SRB8 ARM-like domain"],["TED%3AAF-A0A7U2I0S3-F1-model_v4_TED02","TED novel fold AF-A0A7U2I0S3-F1-model_v4_TED02"]],"b":[["alkaloids/phomacin-d.yaml","phomacin D"],["alkaloids/phomacin-e.yaml","phomacin E"],["polyketides/betaenone-b.yaml","betaenone B"],["polyketides/betaenone-c.yaml","betaenone C"],["polyketides/compound-3-2.yaml","compound 3"],["polyketides/compound-5-2.yaml","compound 5"]]},{"id":"UniProt:Q70CQ3","l":"","na":11,"nb":6,"a":[["ComplexPortal%3ACPX-14824","-"],["ComplexPortal%3ACPX-15800","-"],["ComplexPortal%3ACPX-20518","-"],["ComplexPortal%3ACPX-22415","-"],["ComplexPortal%3ACPX-22784","-"],["GO%3A0035871","protein K11-linked deubiquitination"]],"b":[["alkaloids/esmeraldin.yaml","esmeraldin"],["alkaloids/fervenulin.yaml","fervenulin"],["alkaloids/holomycin.yaml","holomycin"],["alkaloids/neocarazostatin-a.yaml","neocarazostatin A"],["polyketides/flaviolin.yaml","flaviolin"],["polyketides/nigericin.yaml","nigericin"]]},{"id":"UniProt:P09936","l":"","na":10,"nb":6,"a":[["GO%3A0031694","alpha-2A adrenergic receptor binding"],["GO%3A0008242","omega peptidase activity"],["InterPro%3AIPR057254","Ubiquitin carboxyl-terminal hydrolase family 1, cysteine active-site"],["CDD%3Acd09616","Peptidase_C12_UCH_L1_L3"],["InterPro%3AIPR001578","Peptidase C12, ubiquitin carboxyl-terminal hydrolase"],["Pfam%3APF01088","Ubiquitin carboxyl-terminal hydrolase, family 1"]],"b":[["alkaloids/esmeraldin.yaml","esmeraldin"],["alkaloids/fervenulin.yaml","fervenulin"],["polyketides/asukamycin.yaml","asukamycin"],["polyketides/chelocardin.yaml","chelocardin"],["polyketides/dehydrorabelomycin.yaml","dehydrorabelomycin"],["polyketides/flaviolin.yaml","flaviolin"]]},{"id":"NCBITaxon:10090","l":"Mus musculus","na":45870,"nb":5,"a":[["EC%3A1.1.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.1.98.-","With other, known, acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"],["terpenoids/carotene.yaml","β-carotene"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":46,"nb":5,"a":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF13166","AAA domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF27533","CapK C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"],["unclassified/leuvalin.yaml","leuvalin"],["unclassified/phevalin.yaml","phevalin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":5,"nb":31,"a":[["TED%3AAF-A0A4Y6CF56-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y6CF56-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6CNZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Y6CNZ1-F1-model_v4_TED02"],["TED%3AAF-A0A7Y4IIX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4IIX4-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6B7F9-F1-model_v4_TED01","TED novel fold AF-A0A4Y6B7F9-F1-model_v4_TED01"],["TED%3AAF-A0A7Y4IR70-F1-model_v4_TED01","TED novel fold AF-A0A7Y4IR70-F1-model_v4_TED01"]],"b":[["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["alkaloids/myxofacycline-e.yaml","myxofacycline E"],["alkaloids/myxofacycline-f.yaml","myxofacycline F"],["alkaloids/myxofacycline-g.yaml","myxofacycline G"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":25,"nb":5,"a":[["Pfam%3APF13372","Alginate export"],["Pfam%3APF25965","ALG44 beta-barrel domain"],["Pfam%3APF25964","ALG44, barrel-sandwich hybrid domain"],["Pfam%3APF16844","Dinitrogenase iron-molybdenum cofactor, N-terminal"],["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"]],"b":[["alkaloids/aminochelin.yaml","aminochelin"],["alkaloids/azotochelin.yaml","azotochelin"],["alkaloids/protochelin.yaml","protochelin"],["amino_acids_and_peptides/azotobactin-d.yaml","azotobactin D"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"UniProt:O14656","l":"","na":21,"nb":5,"a":[["ComplexPortal%3ACPX-21660","-"],["ComplexPortal%3ACPX-26140","-"],["ComplexPortal%3ACPX-26338","Cytoplasmic organelles"],["ComplexPortal%3ACPX-26301","Secretory organelles"],["GO%3A0008092","cytoskeletal protein binding"],["GO%3A0019894","kinesin binding"]],"b":[["alkaloids/chloramphenicol.yaml","chloramphenicol"],["alkaloids/cycloheximide.yaml","cycloheximide"],["alkaloids/tioguanine.yaml","tioguanine"],["amino_acids_and_peptides/cyclosporin-a.yaml","cyclosporin A"],["polyketides/daunorubicin.yaml","daunorubicin"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":20,"nb":5,"a":[["Pfam%3APF14535","AMP-binding enzyme C-terminal domain"],["Pfam%3APF13442","Cytochrome C oxidase, cbb3-type, subunit III"],["Pfam%3APF22247","Catechol 2,3-dioxygenase-like N-terminal domain"],["Pfam%3APF25371","Domain of unknown function (DUF7884)"],["Pfam%3APF19301","LigXa C-terminal domain like"],["Pfam%3APF12729","Four helix bundle sensory module for signal transduction"]],"b":[["alkaloids/promysalin.yaml","promysalin"],["polyketides/pseudopyronine-a.yaml","pseudopyronine A"],["polyketides/pseudopyronine-b.yaml","pseudopyronine B"],["unclassified/putisolvin-iii.yaml","putisolvin III"],["unclassified/putisolvin-v.yaml","putisolvin V"]]},{"id":"NCBITaxon:3562","l":"Spinacia oleracea","na":13,"nb":5,"a":[["Pfam%3APF21329","Peptidyl-prolyl cis-trans isomerase CYP38-like, PsbQ-like domain"],["Pfam%3APF02941","Ferredoxin thioredoxin reductase variable alpha chain"],["Pfam%3APF02943","Ferredoxin thioredoxin reductase catalytic beta chain"],["Pfam%3APF17257","Family of unknown function (DUF5323)"],["PROSITE%3APS00567","Phosphoribulokinase signature"],["PROSITE%3APS01026","Photosystem I psaG and psaK proteins signature"]],"b":[["terpenoids/yossoside-i.yaml","Yossoside I"],["terpenoids/yossoside-ii.yaml","Yossoside II"],["terpenoids/yossoside-iii.yaml","Yossoside III"],["terpenoids/yossoside-iv.yaml","Yossoside IV"],["terpenoids/yossoside-v.yaml","Yossoside V"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":13,"nb":5,"a":[["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF03173","Putative carbohydrate binding domain"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"],["Pfam%3APF06438","Heme-binding protein A (HasA)"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF05247","Flagellar transcriptional activator (FlhD)"]],"b":[["alkaloids/prodigiosin-2.yaml","prodigiosin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/serratiochelin-a.yaml","serratiochelin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["polyketides/oocydin-a.yaml","oocydin A"]]},{"id":"UniProt:P36969","l":"","na":12,"nb":5,"a":[["ComplexPortal%3ACPX-18066","-"],["GO%3A0047066","phospholipid-hydroperoxide glutathione peroxidase activity"],["GO%3A0008430","selenium binding"],["GO%3A0034599","cellular response to oxidative stress"],["InterPro%3AIPR029759","Glutathione peroxidase active site"],["InterPro%3AIPR029760","Glutathione peroxidase conserved site"]],"b":[["alkaloids/ergotamine.yaml","ergotamine"],["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"],["polyketides/pentamycin.yaml","pentamycin"],["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"],["unclassified/antimycin-a.yaml","antimycin A"]]},{"id":"NCBITaxon:5507","l":"Fusarium oxysporum","na":5,"nb":11,"a":[["Pfam%3APF02015","Glycosyl hydrolase family 45"],["PROSITE%3APS01140","Glycosyl hydrolases family 45 active site"],["TED%3AAF-A0A2H3TJY2-F1-model_v4_TED01","TED novel fold AF-A0A2H3TJY2-F1-model_v4_TED01"],["TED%3AAF-A0A420N954-F1-model_v4_TED01","TED novel fold AF-A0A420N954-F1-model_v4_TED01"],["TED%3AAF-A0A420P6J4-F1-model_v4_TED01","TED novel fold AF-A0A420P6J4-F1-model_v4_TED01"]],"b":[["alkaloids/fusaric-acid.yaml","fusaric acid"],["polyketides/bikaverin.yaml","bikaverin"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"],["polyketides/fumonisin-c1.yaml","Fumonisin C1"],["polyketides/fumonisin-c2.yaml","Fumonisin C2"],["polyketides/fumonisin-c3.yaml","Fumonisin C3"]]},{"id":"NCBITaxon:953739","l":"Streptomyces venezuelae ATCC 10712","na":5,"nb":10,"a":[["Pfam%3APF11583","P-aminobenzoate N-oxygenase AurF"],["Pfam%3APF18456","Diiron non-heme beta-hydroxylase N-terminal domain"],["Pfam%3APF07931","Chloramphenicol phosphotransferase-like protein"],["Pfam%3APF02650","WhiA C-terminal HTH domain"],["Pfam%3APF14527","WhiA LAGLIDADG-like domain"]],"b":[["alkaloids/chloramphenicol.yaml","chloramphenicol"],["alkaloids/gaburedin-d.yaml","gaburedin D"],["alkaloids/watasemycin-a.yaml","watasemycin A"],["alkaloids/watasemycin-b.yaml","watasemycin B"],["amino_acids_and_peptides/gaburedin-a.yaml","gaburedin A"],["amino_acids_and_peptides/gaburedin-b.yaml","gaburedin B"]]},{"id":"NCBITaxon:63737","l":"Nostoc punctiforme PCC 73102","na":5,"nb":7,"a":[["Pfam%3APF11266","Long-chain fatty aldehyde decarbonylase"],["Pfam%3APF21808","Bacterial dynamin-like protein, helical domain"],["Pfam%3APF18460","Heterocyst differentiation regulator C-terminal Hood domain"],["Pfam%3APF13619","KTSC domain"],["PROSITE%3APS01026","Photosystem I psaG and psaK proteins signature"]],"b":[["amino_acids_and_peptides/microviridin-n3.yaml","microviridin N3"],["amino_acids_and_peptides/microviridin-n4.yaml","microviridin N4"],["amino_acids_and_peptides/microviridin-n6.yaml","microviridin N6"],["amino_acids_and_peptides/microviridin-n7.yaml","microviridin N7"],["amino_acids_and_peptides/microviridin-n8.yaml","microviridin N8"],["amino_acids_and_peptides/microviridin-n9.yaml","microviridin N9"]]},{"id":"NCBITaxon:5081","l":"","na":5,"nb":6,"a":[["Pfam%3APF13364","Beta-galactosidase second all-beta domain"],["Pfam%3APF10435","Beta-galactosidase, domain 2"],["Pfam%3APF13363","Beta-galactosidase, domain 3"],["Pfam%3APF01301","Glycosyl hydrolases family 35"],["PROSITE%3APS01182","Glycosyl hydrolases family 35 putative active site"]],"b":[["alkaloids/citridone-a.yaml","citridone A"],["alkaloids/citridone-b-2.yaml","citridone B'"],["alkaloids/citridone-b.yaml","citridone B"],["alkaloids/cj-15-696.yaml","CJ-15,696"],["alkaloids/cj-16-173.yaml","CJ-16,173"],["polyketides/gregatin-a.yaml","gregatin A"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":6,"nb":5,"a":[["Pfam%3APF02929","Beta galactosidase small chain"],["Pfam%3APF27279","Fumarate--diaminopropanoate ligase C-terminal domain"],["Pfam%3APF18024","Helix-turn-helix domain"],["Pfam%3APF16353","Beta-galactosidase, domain 4"],["PROSITE%3APS00594","Aromatic amino acids permeases signature"],["PROSITE%3APS00853","Beta-eliminating lyases pyridoxal-phosphate attachment site"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/andrimid.yaml","andrimid"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/pantocin-a.yaml","pantocin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:43658","l":"Pseudoalteromonas rubra","na":5,"nb":5,"a":[["proteintraitsmech%3AELIFE109154_Orn_monoox","Metallophore-associated ornithine N5-monooxygenase family"],["TED%3AAF-A0A0F4QZE1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0F4QZE1-F1-model_v4_TED02"],["TED%3AAF-A0A0U3GWJ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0U3GWJ2-F1-model_v4_TED01"],["TED%3AAF-A0A0F4QSG0-F1-model_v4_TED02","TED novel fold AF-A0A0F4QSG0-F1-model_v4_TED02"],["TED%3AAF-A0A0L0EPH9-F1-model_v4_TED03","TED novel fold AF-A0A0L0EPH9-F1-model_v4_TED03"]],"b":[["alkaloids/prodigiosin.yaml","prodigiosin"],["polyketides/nonyltyrazolone.yaml","nonyltyrazolone"],["polyketides/undecyltyrazolone.yaml","undecyltyrazolone"],["shikimates_and_phenylpropanoids/z-6-undecenyltyrazolone.yaml","(Z)-ω-6-undecenyltyrazolone"],["unclassified/heptyltyrazolone.yaml","heptyltyrazolone"]]},{"id":"NCBITaxon:6239","l":"Caenorhabditis elegans","na":9682,"nb":4,"a":[["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.14.14.-","With reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.17.-","With reduced ascorbate as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.19.-","With oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water"],["EC%3A1.14.99.-","Miscellaneous"]],"b":[["alkaloids/biotin.yaml","biotin"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/itaconic-acid.yaml","itaconic acid"],["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"]]},{"id":"NCBITaxon:10116","l":"Rattus norvegicus","na":1002,"nb":4,"a":[["IDPO%3A0000011","disorder to order"],["IDPO%3A0000030","entropic chain"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000033","flexible linker"],["IDPO%3A0000041","glycosylation display site"],["IDPO%3A0000003","molten globule"]],"b":[["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/methylarcyriarubin.yaml","methylarcyriarubin"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]]},{"id":"NCBITaxon:39947","l":"Oryza sativa subsp. japonica","na":158,"nb":4,"a":[["Pfam%3APF03157","High molecular weight glutenin subunit"],["Pfam%3APF26249","RdRP3/4/5, N-terminal four helical bundle domain"],["Pfam%3APF23242","TRIP13-like, AAA+ ATPase lid C-terminal domain"],["Pfam%3APF26791","AAPxQ domain"],["Pfam%3APF24922","Acyl-CoA-binding domain-containing protein 4-6, C-terminal"],["Pfam%3APF04864","Allinase"]],"b":[["terpenoids/10-oxodepressin.yaml","10-Oxodepressin"],["terpenoids/momilactone-b.yaml","momilactone B"],["terpenoids/oryzalides.yaml","oryzalides"],["terpenoids/phytocassane.yaml","phytocassane"]]},{"id":"UniProt:P04637","l":"","na":55,"nb":4,"a":[["ComplexPortal%3ACPX-12293","-"],["ComplexPortal%3ACPX-12528","-"],["ComplexPortal%3ACPX-13029","-"],["ComplexPortal%3ACPX-14009","-"],["ComplexPortal%3ACPX-16240","-"],["ComplexPortal%3ACPX-21406","-"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["polyketides/herboxidiene.yaml","herboxidiene"],["terpenoids/zeaxanthin.yaml","zeaxanthin"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":4,"nb":30,"a":[["Pfam%3APF11720","Peptidase inhibitor I78 family"],["Pfam%3APF12296","Hydrophobic surface binding protein A"],["TED%3AAF-A0A3M7JGA1-F1-model_v4_TED02","TED novel fold AF-A0A3M7JGA1-F1-model_v4_TED02"],["TED%3AAF-A0A7G5JNS3-F1-model_v4_TED03","TED novel fold AF-A0A7G5JNS3-F1-model_v4_TED03"]],"b":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["amino_acids_and_peptides/ditryptophenaline.yaml","(-)-ditryptophenaline"],["amino_acids_and_peptides/imizoquin-a.yaml","imizoquin A"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":30,"nb":4,"a":[["Pfam%3APF08787","Alginate lyase"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF08218","Citrate lyase ligase C-terminal domain"],["Pfam%3APF13727","CoA-binding domain"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["Pfam%3APF20714","DpiA-like helix-turn-helix domain"]],"b":[["alkaloids/tilivalline.yaml","tilivalline"],["amino_acids_and_peptides/colibactin.yaml","colibactin"],["amino_acids_and_peptides/klebsidin.yaml","klebsidin"],["carbohydrates/capsular-polysaccharide-2.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":23,"nb":4,"a":[["Pfam%3APF08878","HamA"],["Pfam%3APF05791","Bacillus haemolytic enterotoxin (HBL)"],["Pfam%3APF10803","Spore germination GerPB"],["Pfam%3APF10737","Spore germination protein GerPC"],["Pfam%3APF10970","Spore germination protein GerPE"],["Pfam%3APF07486","Cell Wall Hydrolase"]],"b":[["alkaloids/zwittermicin-a.yaml","zwittermicin A"],["amino_acids_and_peptides/livipeptin.yaml","Livipeptin"],["carbohydrates/tunicamycin.yaml","tunicamycin"],["unclassified/cereulide.yaml","cereulide"]]},{"id":"NCBITaxon:378806","l":"Stigmatella aurantiaca DW4/3-1","na":4,"nb":17,"a":[["TED%3AAF-Q098I8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q098I8-F1-model_v4_TED01"],["TED%3AAF-E3FRW3-F1-model_v4_TED01","TED novel fold AF-E3FRW3-F1-model_v4_TED01"],["TED%3AAF-E3G0M4-F1-model_v4_TED01","TED novel fold AF-E3G0M4-F1-model_v4_TED01"],["TED%3AAF-Q08VS7-F1-model_v4_TED01","TED novel fold AF-Q08VS7-F1-model_v4_TED01"]],"b":[["polyketides/aurafuron-a.yaml","aurafuron A"],["polyketides/dawenol.yaml","dawenol"],["unclassified/dkxanthene-504.yaml","dkxanthene 504"],["unclassified/dkxanthene-508.yaml","dkxanthene 508"],["unclassified/dkxanthene-518.yaml","dkxanthene 518"],["unclassified/dkxanthene-520.yaml","dkxanthene 520"]]},{"id":"NCBITaxon:5518","l":"Fusarium graminearum","na":4,"nb":14,"a":[["Pfam%3APF09118","Galactose oxidase-like, Early set domain"],["Pfam%3APF07250","Glyoxal oxidase N-terminus"],["TED%3AAF-A0A2H3FY84-F1-model_v4_TED03","TED novel fold AF-A0A2H3FY84-F1-model_v4_TED03"],["TED%3AAF-A0A2H3G191-F1-model_v4_TED01","TED novel fold AF-A0A2H3G191-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/fusaoctaxin-a.yaml","fusaoctaxin A"],["polyketides/aurofusarin.yaml","aurofusarin"],["polyketides/fusarielin-h.yaml","fusarielin H"],["polyketides/gibepyrone-a.yaml","gibepyrone A"],["polyketides/prolipyrone-b.yaml","prolipyrone B"],["polyketides/zearalenone.yaml","zearalenone"]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":4,"nb":13,"a":[["Pfam%3APF16861","Carbamoyltransferase C-terminus"],["Pfam%3APF02543","Carbamoyltransferase N-terminus"],["Pfam%3APF01960","ArgJ family"],["Pfam%3APF07467","Beta-lactamase inhibitor (BLIP)"]],"b":[["alkaloids/holomycin.yaml","holomycin"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/2-formyloxymethylclavam.yaml","2-formyloxymethylclavam"],["amino_acids_and_peptides/2-hydroxymethylclavam.yaml","2-hydroxymethylclavam"],["amino_acids_and_peptides/alanylclavam.yaml","alanylclavam"],["amino_acids_and_peptides/cephamycin-c.yaml","cephamycin C"]]},{"id":"NCBITaxon:1914","l":"Streptomyces lavendulae","na":4,"nb":12,"a":[["Pfam%3APF01678","Diaminopimelate epimerase"],["Pfam%3APF27100","D-cycloserine synthetase DcsG, N-terminal domain"],["Pfam%3APF20240","Domain of unknown function (DUF6597)"],["Pfam%3APF11731","Pathogenicity locus"]],"b":[["alkaloids/indigoidine.yaml","indigoidine"],["alkaloids/saframycin-a.yaml","saframycin A"],["alkaloids/saframycin-b.yaml","saframycin B"],["amino_acids_and_peptides/cycloserine.yaml","cycloserine"],["amino_acids_and_peptides/isocomplestatin.yaml","isocomplestatin"],["carbohydrates/showdomycin.yaml","showdomycin"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":4,"nb":10,"a":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"],["TED%3AAF-A0A085UKV7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085UKV7-F1-model_v4_TED01"],["TED%3AAF-A0A4R6IU28-F1-model_v4_TED02","TED novel fold AF-A0A4R6IU28-F1-model_v4_TED02"]],"b":[["alkaloids/labradorin-1.yaml","labradorin 1"],["alkaloids/labradorin-2.yaml","labradorin 2"],["alkaloids/secimide.yaml","secimide"],["amino_acids_and_peptides/phaseolotoxin.yaml","phaseolotoxin"],["amino_acids_and_peptides/syringolin-a.yaml","syringolin A"],["amino_acids_and_peptides/tabtoxin.yaml","tabtoxin"]]},{"id":"NCBITaxon:500485","l":"Penicillium rubens Wisconsin 54-1255","na":4,"nb":9,"a":[["Pfam%3APF03417","Acyl-coenzyme A:6-aminopenicillanic acid acyl-transferase"],["Pfam%3APF03659","Glycosyl hydrolase family 71"],["PROSITE%3APS00185","Isopenicillin N synthase signature 1"],["PROSITE%3APS00186","Isopenicillin N synthase signature 2"]],"b":[["alkaloids/dehydrohistidyltryptophanyldiketopiperazine.yaml","dehydrohistidyltryptophanyldiketopiperazine"],["alkaloids/glandicoline-a.yaml","glandicoline A"],["alkaloids/glandicoline-b.yaml","glandicoline B"],["alkaloids/meleagrine.yaml","meleagrine"],["polyketides/sorbicillin.yaml","sorbicillin"],["terpenoids/conidiogenone.yaml","conidiogenone"]]},{"id":"NCBITaxon:5076","l":"Penicillium chrysogenum","na":4,"nb":9,"a":[["Pfam%3APF03417","Acyl-coenzyme A:6-aminopenicillanic acid acyl-transferase"],["Pfam%3APF11402","Antifungal protein"],["PROSITE%3APS00185","Isopenicillin N synthase signature 1"],["PROSITE%3APS00186","Isopenicillin N synthase signature 2"]],"b":[["alkaloids/chrysogine.yaml","chrysogine"],["amino_acids_and_peptides/benzylpenicillin-sodium.yaml","benzylpenicillin sodium"],["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"],["amino_acids_and_peptides/n-5s-5-ammonio-5-carboxylatopentanoyl-l-cysteinyl-d-valinate.yaml","N-[(5S)-5-ammonio-5-carboxylatopentanoyl]-L-cysteinyl-D-valinate"],["polyketides/2-3-dihydrosorbicillin.yaml","2'3'-dihydrosorbicillin"],["polyketides/bisorbicillinol.yaml","bisorbicillinol"]]},{"id":"NCBITaxon:1836","l":"Saccharopolyspora erythraea","na":4,"nb":8,"a":[["Pfam%3APF08990","Erythronolide synthase docking domain"],["Pfam%3APF09277","Erythronolide synthase, docking"],["Pfam%3APF12728","Helix-turn-helix domain"],["Pfam%3APF12307","Protein of unknown function (DUF3631)"]],"b":[["amino_acids_and_peptides/erythrochelin.yaml","erythrochelin"],["polyketides/3-3-diflaviolin.yaml","3,3'-diflaviolin"],["polyketides/erythromycin-a.yaml","erythromycin A"],["polyketides/erythromycin-b.yaml","erythromycin B"],["polyketides/flaviolin-rhamnoside.yaml","flaviolin rhamnoside"],["polyketides/flaviolin.yaml","flaviolin"]]},{"id":"NCBITaxon:227882","l":"","na":8,"nb":4,"a":[["Pfam%3APF17390","Bacterial alpha-L-rhamnosidase C-terminal domain"],["Pfam%3APF08531","Alpha-L-rhamnosidase N-terminal domain"],["Pfam%3APF05592","Bacterial alpha-L-rhamnosidase concanavalin-like domain"],["Pfam%3APF26366","Domain of unknown function (DUF8094)"],["Pfam%3APF25788","Rha78A-like, N-terminal immunoglobulin domain"],["Pfam%3APF06781","Cell division protein CrgA"]],"b":[["amino_acids_and_peptides/edha.yaml","EDHA"],["polyketides/filipin-iii.yaml","filipin III"],["terpenoids/avermitilol.yaml","avermitilol"],["terpenoids/pentalenolactone.yaml","pentalenolactone"]]},{"id":"NCBITaxon:326423","l":"Bacillus velezensis FZB42","na":4,"nb":8,"a":[["Pfam%3APF21607","[Acyl-carrier-protein] S-malonyltransferase, inserted helical domain"],["Pfam%3APF21996","Histidyl-tRNA synthetase HisZ, C-terminal domain"],["Pfam%3APF07293","Protein of unknown function (DUF1450)"],["Pfam%3APF12227","Protein of unknown function (DUF3603)"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["polyketides/bacillaene.yaml","bacillaene"],["polyketides/difficidin.yaml","difficidin"],["polyketides/macrolactin-h.yaml","macrolactin H"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:1397","l":"Niallia circulans","na":6,"nb":4,"a":[["Pfam%3APF03423","Carbohydrate binding domain (family 25)"],["Pfam%3APF13199","Glycosyl hydrolase family 66"],["Pfam%3APF14399","Butirosin biosynthesis protein H, N-terminal"],["Pfam%3APF19634","Family of unknown function (DUF6137)"],["PROSITE%3APS60000","Chitosanases families 46 and 80 active sites signature"],["TED%3AAF-A0A0J1IR10-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0J1IR10-F1-model_v4_TED01"]],"b":[["carbohydrates/butirosin-a.yaml","butirosin A"],["carbohydrates/butirosin-b.yaml","butirosin B"],["carbohydrates/butirosin.yaml","butirosin"],["unclassified/pelgipeptin-b.yaml","Pelgipeptin B"]]},{"id":"NCBITaxon:32049","l":"Picosynechococcus sp. PCC 7002","na":6,"nb":4,"a":[["Pfam%3APF09367","CpeS-like protein"],["Pfam%3APF06206","CpeT/CpcT family (DUF1001)"],["Pfam%3APF12965","Domain of unknown function (DUF3854)"],["Pfam%3APF19928","Domain of unknown function (DUF6391)"],["Pfam%3APF09366","Protein of unknown function (DUF1997)"],["Pfam%3APF14870","Photosynthesis system II assembly factor YCF48"]],"b":[["alkaloids/synechobactin-a.yaml","synechobactin A"],["alkaloids/synechobactin-b.yaml","synechobactin B"],["alkaloids/synechobactin-c.yaml","synechobactin C"],["fatty_acids/nonadec-1-ene.yaml","nonadec-1-ene"]]},{"id":"NCBITaxon:1393","l":"Brevibacillus brevis","na":5,"nb":4,"a":[["Pfam%3APF03306","Alpha-acetolactate decarboxylase"],["Pfam%3APF05384","Sensor protein DegS"],["TED%3AAF-A0A2Z4MK38-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z4MK38-F1-model_v4_TED01"],["TED%3AAF-A0A2Z4MPQ6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2Z4MPQ6-F1-model_v4_TED02"],["TED%3AAF-A0A517IGN3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A517IGN3-F1-model_v4_TED03"]],"b":[["alkaloids/ulbactin-f.yaml","ulbactin F"],["alkaloids/ulbactin-g.yaml","ulbactin G"],["amino_acids_and_peptides/gramicidin.yaml","gramicidin"],["amino_acids_and_peptides/tyrocidine-a.yaml","tyrocidine A"]]},{"id":"NCBITaxon:31958","l":"Amycolatopsis orientalis","na":5,"nb":4,"a":[["Pfam%3APF16990","Carbohydrate binding module (family 35)"],["Pfam%3APF14696","Hydroxyphenylpyruvate dioxygenase, HPPD, N-terminal"],["Pfam%3APF03559","NDP-hexose 2,3-dehydratase"],["Pfam%3APF18368","Exo-beta-D-glucosaminidase Ig-fold domain"],["TED%3AAF-K4FDK5-F1-model_v4_TED01","TED highly-symmetric fold AF-K4FDK5-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/chloroeremomycin.yaml","chloroeremomycin"],["amino_acids_and_peptides/vancomycin.yaml","vancomycin"],["polyketides/eco-0501.yaml","ECO-0501"],["polyketides/quartromicin-a1.yaml","quartromicin A1"]]},{"id":"NCBITaxon:43","l":"Cystobacter fuscus","na":4,"nb":5,"a":[["TED%3AAF-A0A250J1A4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J1A4-F1-model_v4_TED01"],["TED%3AAF-A0A250J4G5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J4G5-F1-model_v4_TED01"],["TED%3AAF-A0A250J8W0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J8W0-F1-model_v4_TED01"],["TED%3AAF-A0A250J3K5-F1-model_v4_TED03","TED novel fold AF-A0A250J3K5-F1-model_v4_TED03"]],"b":[["amino_acids_and_peptides/cystomanamide-a.yaml","cystomanamide A"],["amino_acids_and_peptides/cystomanamide-b.yaml","cystomanamide B"],["amino_acids_and_peptides/cystomanamide-c.yaml","cystomanamide C"],["amino_acids_and_peptides/cystomanamide-d.yaml","cystomanamide D"],["unclassified/cystothiazole-a.yaml","cystothiazole A"]]},{"id":"NCBITaxon:48","l":"Archangium gephyra","na":4,"nb":4,"a":[["TED%3AAF-A0A0G2ZQX3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G2ZQX3-F1-model_v4_TED01"],["TED%3AAF-A0A0G3A8M9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G3A8M9-F1-model_v4_TED01"],["TED%3AAF-A0A2W5T6H4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2W5T6H4-F1-model_v4_TED03"],["TED%3AAF-A0A0G2ZR59-F1-model_v4_TED01","TED novel fold AF-A0A0G2ZR59-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/tubulysin-f.yaml","tubulysin F"],["amino_acids_and_peptides/tubulysin-g.yaml","tubulysin G"],["amino_acids_and_peptides/tubulysin-i.yaml","tubulysin I"],["polyketides/aurafuron-a.yaml","aurafuron A"]]},{"id":"UniProt:P00784","l":"","na":4,"nb":4,"a":[["EC%3A3.4.22.2","papain"],["MCSA%3A174","papain"],["proteintraitsmech%3ABIOLIP_ALD","ALD-binding site"],["proteintraitsmech%3AMETALPDB_RU_DINUCLEAR","dinuclear ruthenium site"]],"b":[["alkaloids/ergotamine.yaml","ergotamine"],["amino_acids_and_peptides/leupeptin-a.yaml","leupeptin A"],["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"],["terpenoids/carotene.yaml","β-carotene"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":17470,"nb":3,"a":[["EC%3A1.1.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.16.-.-","Oxidizing metal ions"],["EC%3A1.18.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.7.-","With an iron-sulfur protein as acceptor"]],"b":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"],["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"],["unclassified/telomestatin.yaml","telomestatin"]]},{"id":"NCBITaxon:9913","l":"Bos taurus","na":435,"nb":3,"a":[["IDPO%3A0000018","disorder to molten globule"],["IDPO%3A0000011","disorder to order"],["IDPO%3A0000019","disorder to pre-molten globule"],["IDPO%3A0000030","entropic chain"],["IDPO%3A0000003","molten globule"],["IDPO%3A0000014","order to disorder"]],"b":[["alkaloids/methylarcyriarubin.yaml","methylarcyriarubin"],["alkaloids/staurosporine-2.yaml","staurosporine"],["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"NCBITaxon:33178","l":"Aspergillus terreus","na":3,"nb":22,"a":[["Pfam%3APF28386","BfoA family C-terminal domain"],["Pfam%3APF28387","BfoA N-terminal domain"],["Pfam%3APF12351","Ca2+ regulator and membrane fusion protein Fig1"]],"b":[["alkaloids/asterriquinone-ct5.yaml","asterriquinone CT5"],["alkaloids/cytochalasin-e.yaml","cytochalasin E"],["alkaloids/dihydroisoflavipucine.yaml","dihydroisoflavipucine"],["alkaloids/terrequinone-a.yaml","terrequinone A"],["amino_acids_and_peptides/valactamide-a.yaml","valactamide A"],["polyketides/citreoviridin.yaml","citreoviridin"]]},{"id":"NCBITaxon:332648","l":"Botrytis cinerea B05.10","na":3,"nb":21,"a":[["Pfam%3APF01670","Glycosyl hydrolase family 12"],["PROSITE%3APS00776","Glycosyl hydrolases family 11 (GH11) active site signature 1"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"]],"b":[["terpenoids/1-epibotrydial.yaml","1-epibotrydial"],["terpenoids/10-dehydroxy-dihydrobotrydialone.yaml","10-dehydroxy dihydrobotrydialone"],["terpenoids/10-epi-dihydrobotrydial.yaml","10-epi-dihydrobotrydial"],["terpenoids/10-oxo-dihydrobotrydial.yaml","10-Oxo-dihydrobotrydial"],["terpenoids/10-oxodehydrodihydrobotrydial.yaml","10-Oxodehydrodihydrobotrydial"],["terpenoids/10-oxodihydrobotry-1-9-4-5-diendial.yaml","10-Oxodihydrobotry-1(9),4(5)-diendial"]]},{"id":"NCBITaxon:54571","l":"Streptomyces venezuelae","na":3,"nb":21,"a":[["Pfam%3APF08990","Erythronolide synthase docking domain"],["TED%3AAF-A0A5P2CQV7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5P2CQV7-F1-model_v4_TED02"],["TED%3AAF-A0A5P2C5X4-F1-model_v4_TED01","TED novel fold AF-A0A5P2C5X4-F1-model_v4_TED01"]],"b":[["alkaloids/anthelvencin-a.yaml","anthelvencin A"],["alkaloids/anthelvencin-b.yaml","anthelvencin B"],["alkaloids/anthelvencin-c.yaml","anthelvencin C"],["alkaloids/chloramphenicol.yaml","chloramphenicol"],["alkaloids/corynecin-ii.yaml","corynecin II"],["alkaloids/gaburedin-d.yaml","gaburedin D"]]},{"id":"UniProt:P22303","l":"","na":21,"nb":3,"a":[["ComplexPortal%3ACPX-10631","-"],["ComplexPortal%3ACPX-11637","-"],["ComplexPortal%3ACPX-12676","-"],["ComplexPortal%3ACPX-14124","-"],["ComplexPortal%3ACPX-18577","-"],["ComplexPortal%3ACPX-24024","-"]],"b":[["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/physostigmine.yaml","physostigmine"],["unclassified/aflatoxin-b1.yaml","aflatoxin B1"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":3,"nb":20,"a":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF22041","Glutathione S-transferase, C-terminal domain"],["Pfam%3APF08493","Aflatoxin regulatory protein"]],"b":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/c-3-sulfonylated-derivative.yaml","C-3 sulfonylated derivative"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["alkaloids/n-n-dioxide-containing-derivate.yaml","N,N-dioxide containing derivate"]]},{"id":"NCBITaxon:3847","l":"Glycine max","na":16,"nb":3,"a":[["Pfam%3APF02095","Extensin-like protein"],["Pfam%3APF00477","Small hydrophilic plant seed protein"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF08027","Albumin I chain b"],["Pfam%3APF10539","Development and cell death domain"],["Pfam%3APF03386","Early nodulin 93 ENOD93 protein"]],"b":[["alkaloids/biotin.yaml","biotin"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":3,"nb":13,"a":[["Pfam%3APF14864","Alkyl sulfatase C-terminal"],["Pfam%3APF13816","Haem-containing dehydratase"],["Pfam%3APF14863","Alkyl sulfatase dimerisation"]],"b":[["unclassified/bananamide-d.yaml","bananamide D"],["unclassified/bananamide-e.yaml","bananamide E"],["unclassified/bananamide-f.yaml","bananamide F"],["unclassified/bananamide-g.yaml","bananamide G"],["unclassified/lokisin.yaml","lokisin"],["unclassified/pseudodesmin-a.yaml","pseudodesmin A"]]},{"id":"NCBITaxon:54","l":"Nannocystis exedens","na":13,"nb":3,"a":[["TED%3AAF-A0A1I2A5Z6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2A5Z6-F1-model_v4_TED01"],["TED%3AAF-A0A1I2FM38-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I2FM38-F1-model_v4_TED02"],["TED%3AAF-A0A1I2H0F9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2H0F9-F1-model_v4_TED01"],["TED%3AAF-A0A831ZMD9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A831ZMD9-F1-model_v4_TED01"],["TED%3AAF-A0A1I1T6U3-F1-model_v4_TED01","TED novel fold AF-A0A1I1T6U3-F1-model_v4_TED01"],["TED%3AAF-A0A1I1XLT5-F1-model_v4_TED02","TED novel fold AF-A0A1I1XLT5-F1-model_v4_TED02"]],"b":[["polyketides/phenylnannolone-a.yaml","phenylnannolone A"],["polyketides/phenylnannolone-b.yaml","phenylnannolone B"],["polyketides/phenylnannolone-c.yaml","phenylnannolone C"]]},{"id":"NCBITaxon:451804","l":"Aspergillus fumigatus (strain CBS 144.89 / FGSC A1163 / CEA10)","na":11,"nb":3,"a":[["Pfam%3APF28347","ACE1 small beta sheet domain"],["Pfam%3APF28329","Zinc finger transcription factor ace1 N-terminal domain"],["Pfam%3APF11001","YDR124W-like, helical bundle domain"],["Pfam%3APF28457","Probable beta-glucosidase btgE N-terminal domain"],["Pfam%3APF13373","DSC E3 ubiquitin ligase complex subunit 3, C-terminal domain"],["Pfam%3APF10302","DSC E3 ubiquitin ligase complex subunit 3, ubiquitin-like domain"]],"b":[["terpenoids/21-h-hopane-3beta-22-diol.yaml","21-β-H-hopane-3beta, 22-diol"],["terpenoids/compound-3-3.yaml","compound 3"],["terpenoids/fumihopaside-a.yaml","fumihopaside A"]]},{"id":"NCBITaxon:5053","l":"Aspergillus aculeatus","na":3,"nb":11,"a":[["Pfam%3APF14683","Polysaccharide lyase family 4, domain III"],["Pfam%3APF14686","Polysaccharide lyase family 4, domain II"],["Pfam%3APF01670","Glycosyl hydrolase family 12"]],"b":[["alkaloids/acurin-a.yaml","acurin A"],["polyketides/secalonic-acid-a.yaml","Secalonic acid A"],["terpenoids/aculene-a.yaml","aculene A"],["terpenoids/aculene-b.yaml","aculene B"],["terpenoids/aculene-c.yaml","aculene C"],["terpenoids/aculene-d.yaml","aculene D"]]},{"id":"UniProt:Q8WZA2","l":"","na":3,"nb":10,"a":[["ComplexPortal%3ACPX-12363","-"],["CDD%3Acd04437","DEP_Epac"],["CATH%3A1.10.8.1240","CATH homologous superfamily 1.10.8.1240"]],"b":[["alkaloids/8-azaguanine.yaml","8-azaguanine"],["alkaloids/psilocybin.yaml","psilocybin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/actinonin.yaml","actinonin"],["amino_acids_and_peptides/thiostrepton.yaml","thiostrepton"],["carbohydrates/tobramycin.yaml","tobramycin"]]},{"id":"UniProt:Q9BV86","l":"","na":10,"nb":3,"a":[["ComplexPortal%3ACPX-14881","-"],["ComplexPortal%3ACPX-15959","-"],["ComplexPortal%3ACPX-20462","-"],["ComplexPortal%3ACPX-23498","-"],["GO%3A0071885","N-terminal protein N-methyltransferase activity"],["GO%3A0018013","N-terminal peptidyl-glycine methylation"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["polyketides/chlortetracycline.yaml","chlortetracycline"],["polyketides/kojic-acid.yaml","kojic acid"]]},{"id":"NCBITaxon:1971","l":"Streptomyces noursei","na":3,"nb":8,"a":[["Pfam%3APF16715","Cyclodipeptide synthase"],["Pfam%3APF19585","Family of unknown function (DUF6092)"],["TED%3AAF-A0A2N8PAT0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N8PAT0-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/curacomycin.yaml","curacomycin"],["amino_acids_and_peptides/dechlorocuracomycin.yaml","dechlorocuracomycin"],["amino_acids_and_peptides/deimino-antipain.yaml","deimino-antipain"],["carbohydrates/streptothricin-f.yaml","streptothricin F"],["polyketides/nystatin-a1.yaml","nystatin A1"],["polyketides/nystatin.yaml","nystatin"]]},{"id":"NCBITaxon:4081","l":"Solanum lycopersicum","na":8,"nb":3,"a":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF02977","Carboxypeptidase A inhibitor"],["Pfam%3APF26410","GH family 5 beta-mannosidase-like"],["Pfam%3APF02496","ABA/WDS induced protein"],["Pfam%3APF17302","Family of unknown function (DUF5351)"],["PROSITE%3APS00502","Polygalacturonase active site"]],"b":[["fatty_acids/falcarindiol.yaml","falcarindiol"],["terpenoids/lycosantalonol.yaml","lycosantalonol"],["terpenoids/phellandrene.yaml","β-phellandrene"]]},{"id":"NCBITaxon:331117","l":"Aspergillus fischeri NRRL 181","na":3,"nb":7,"a":[["Pfam%3APF23681","ATP-dependent rRNA helicase SPB4-like, C-terminal tail"],["Pfam%3APF16803","Fe-S cluster assembly protein DRE2 N-terminus"],["Pfam%3APF02012","BNR/Asp-box repeat"]],"b":[["terpenoids/compound-5.yaml","compound 5"],["terpenoids/compound-6-2.yaml","compound 6"],["terpenoids/compound-7a.yaml","compound 7a"],["terpenoids/compound-8-2.yaml","compound 8"],["terpenoids/sesterfisheric-acid.yaml","sesterfisheric acid"],["terpenoids/sesterfisherol.yaml","sesterfisherol"]]},{"id":"NCBITaxon:1028729","l":"Fusarium pseudograminearum CS3096","na":3,"nb":6,"a":[["Pfam%3APF26087","Domain of unknown function (DUF8032)"],["Pfam%3APF05704","Capsular polysaccharide synthesis protein"],["TED%3AAF-K3V788-F1-model_v4_TED02","TED novel fold AF-K3V788-F1-model_v4_TED02"]],"b":[["alkaloids/8-oxo-fusatin.yaml","8-oxo-fusatin"],["alkaloids/8-oxo-isopentenyladenine.yaml","8-oxo-isopentenyladenine"],["alkaloids/fusatin.yaml","fusatin"],["alkaloids/fusatinic-acid.yaml","fusatinic acid"],["unclassified/w493-a.yaml","W493 A"],["unclassified/w493-b.yaml","W493 B"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":6,"nb":3,"a":[["Pfam%3APF14525","AraC-binding-like domain"],["Pfam%3APF06139","BphX-like"],["Pfam%3APF13340","Putative transposase of IS4/5 family (DUF4096)"],["Pfam%3APF11794","4-hydroxyphenylacetate 3-hydroxylase N terminal"],["Pfam%3APF03241","4-hydroxyphenylacetate 3-hydroxylase C terminal"],["TED%3AAF-A0A4S3H3T1-F1-model_v4_TED02","TED novel fold AF-A0A4S3H3T1-F1-model_v4_TED02"]],"b":[["alkaloids/cepaciachelin.yaml","cepaciachelin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["terpenoids/hopene.yaml","hopene"]]},{"id":"NCBITaxon:1833","l":"Rhodococcus erythropolis","na":5,"nb":3,"a":[["Pfam%3APF08028","Acyl-CoA dehydrogenase, C-terminal domain"],["Pfam%3APF13816","Haem-containing dehydratase"],["Pfam%3APF07858","Limonene-1,2-epoxide hydrolase catalytic domain"],["Pfam%3APF09663","Amidohydrolase ring-opening protein (Amido_AtzD_TrzD)"],["TED%3AAF-A0A401N7F7-F1-model_v4_TED02","TED novel fold AF-A0A401N7F7-F1-model_v4_TED02"]],"b":[["alkaloids/aurachin-re.yaml","aurachin RE"],["amino_acids_and_peptides/heterobactin-a.yaml","heterobactin A"],["amino_acids_and_peptides/heterobactin-s2.yaml","heterobactin S2"]]},{"id":"NCBITaxon:2021","l":"Thermobifida fusca","na":5,"nb":3,"a":[["Pfam%3APF00553","Cellulose binding domain"],["Pfam%3APF01341","Glycosyl hydrolases family 6"],["PROSITE%3APS00561","CBM2a (carbohydrate-binding type-2) domain signature"],["PROSITE%3APS00655","Glycosyl hydrolases family 6 signature 1"],["PROSITE%3APS00656","Glycosyl hydrolases family 6 signature 2"]],"b":[["amino_acids_and_peptides/fuscachelin-a.yaml","Fuscachelin A"],["amino_acids_and_peptides/fuscachelin-b.yaml","Fuscachelin B"],["amino_acids_and_peptides/fuscachelin-c.yaml","Fuscachelin C"]]},{"id":"NCBITaxon:3885","l":"Phaseolus vulgaris","na":3,"nb":5,"a":[["Pfam%3APF14829","Glycerol-3-phosphate acyltransferase N-terminal"],["PROSITE%3APS00281","Bowman-Birk serine protease inhibitors family signature"],["PROSITE%3APS00308","Legume lectins alpha-chain signature"]],"b":[["alkaloids/biotin.yaml","biotin"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/ectoine.yaml","ectoine"],["fatty_acids/itaconic-acid.yaml","itaconic acid"],["unclassified/orcinol.yaml","orcinol"]]},{"id":"NCBITaxon:556","l":"Dickeya chrysanthemi","na":5,"nb":3,"a":[["Pfam%3APF18390","Glycogen debranching enzyme C-terminal domain"],["Pfam%3APF25994","AprE, long alpha-helical hairpin"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF03812","2-keto-3-deoxygluconate permease"],["Pfam%3APF09589","HrpA pilus formation protein"]],"b":[["amino_acids_and_peptides/chrysobactin.yaml","chrysobactin"],["amino_acids_and_peptides/dichrysobactin.yaml","dichrysobactin"],["unclassified/cyclic-trichrysobactin.yaml","cyclic trichrysobactin"]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":3,"nb":5,"a":[["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"],["PROSITE%3APS00896","LacY family proton/sugar symporters signature 1"],["PROSITE%3APS00897","LacY family proton/sugar symporters signature 2"]],"b":[["alkaloids/9-deoxy-tilivalline.yaml","9-deoxy tilivalline"],["alkaloids/dehydro-tilivalline.yaml","dehydro tilivalline"],["alkaloids/dihydroxy-dehydro-tilivalline.yaml","dihydroxy-dehydro tilivalline"],["alkaloids/dihydroxy-tilivalline.yaml","dihydroxy tilivalline"],["alkaloids/tilivalline.yaml","tilivalline"]]},{"id":"NCBITaxon:269800","l":"Thermobifida fusca YX","na":4,"nb":3,"a":[["Pfam%3APF20628","Dyp-type peroxidase, C-terminal"],["Pfam%3APF04261","Dyp-type peroxidase, N-terminal"],["Pfam%3APF18374","Enolase N-terminal domain-like"],["PROSITE%3APS00909","Mandelate racemase / muconate lactonizing enzyme family signature 2"]],"b":[["amino_acids_and_peptides/fuscachelin-a.yaml","Fuscachelin A"],["amino_acids_and_peptides/fuscachelin-b.yaml","Fuscachelin B"],["amino_acids_and_peptides/fuscachelin-c.yaml","Fuscachelin C"]]},{"id":"NCBITaxon:306901","l":"","na":4,"nb":3,"a":[["Pfam%3APF07960","CBP4"],["TED%3AAF-Q2GNU1-F1-model_v4_TED01","TED highly-symmetric fold AF-Q2GNU1-F1-model_v4_TED01"],["TED%3AAF-Q2GZS7-F1-model_v4_TED01","TED novel fold AF-Q2GZS7-F1-model_v4_TED01"],["TED%3AAF-Q2H4N9-F1-model_v4_TED02","TED novel fold AF-Q2H4N9-F1-model_v4_TED02"]],"b":[["polyketides/11-epichaetomugilin-a.yaml","11-epichaetomugilin A"],["polyketides/chaetoviridin-e.yaml","chaetoviridin E"],["polyketides/shanorellin.yaml","shanorellin"]]},{"id":"NCBITaxon:33","l":"Myxococcus fulvus","na":4,"nb":3,"a":[["TED%3AAF-A0A511SVC1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A511SVC1-F1-model_v4_TED01"],["TED%3AAF-A0A511SU64-F1-model_v4_TED01","TED novel fold AF-A0A511SU64-F1-model_v4_TED01"],["TED%3AAF-A0A511T2U3-F1-model_v4_TED02","TED novel fold AF-A0A511T2U3-F1-model_v4_TED02"],["TED%3AAF-A0A511T9F8-F1-model_v4_TED05","TED novel fold AF-A0A511T9F8-F1-model_v4_TED05"]],"b":[["unclassified/fulvuthiacene-a.yaml","Fulvuthiacene A"],["unclassified/fulvuthiacene-b.yaml","Fulvuthiacene B"],["unclassified/myxothiazol.yaml","myxothiazol"]]},{"id":"NCBITaxon:34305","l":"Lotus japonicus","na":4,"nb":3,"a":[["Pfam%3APF06241","Castor and Pollux, part of voltage-gated ion channel"],["Pfam%3APF23654","E3 ubiquitin-protein ligase LIN-like, ARM repeat"],["Pfam%3APF23628","Putative E3 ubiquitin-protein ligase LIN, ARM-like domain"],["Pfam%3APF23568","E3 ubiquitin-protein ligase LIN-like, ARM repeat"]],"b":[["amino_acids_and_peptides/linamarin.yaml","linamarin"],["amino_acids_and_peptides/lotaustralin.yaml","lotaustralin"],["terpenoids/lupeol.yaml","lupeol"]]},{"id":"NCBITaxon:392500","l":"Shewanella woodyi ATCC 51908","na":3,"nb":4,"a":[["Pfam%3APF23763","GLAA-B beta-barrel domain I"],["TED%3AAF-B1KH33-F1-model_v4_TED01","TED novel fold AF-B1KH33-F1-model_v4_TED01"],["TED%3AAF-B1KQT1-F1-model_v4_TED01","TED novel fold AF-B1KQT1-F1-model_v4_TED01"]],"b":[["fatty_acids/woodybactin-d.yaml","woodybactin D"],["unclassified/woodybactin-a.yaml","woodybactin A"],["unclassified/woodybactin-b.yaml","woodybactin B"],["unclassified/woodybactin-c.yaml","woodybactin C"]]},{"id":"NCBITaxon:5544","l":"Trichoderma harzianum","na":4,"nb":3,"a":[["Pfam%3APF00840","Glycosyl hydrolase family 7"],["Pfam%3APF12708","Rhamnogalacturonase A/epimerase, pectate lyase-like"],["TED%3AAF-A0A0F9XDU3-F1-model_v4_TED01","TED novel fold AF-A0A0F9XDU3-F1-model_v4_TED01"],["TED%3AAF-A0A0G0ASL4-F1-model_v4_TED01","TED novel fold AF-A0A0G0ASL4-F1-model_v4_TED01"]],"b":[["polyketides/1-2-dehydropenicillide.yaml","1,2-dehydropenicillide"],["polyketides/harziphilone.yaml","harziphilone"],["unclassified/harzianopyridone.yaml","harzianopyridone"]]},{"id":"NCBITaxon:655844","l":"Metarhizium robertsii ARSEF 23","na":3,"nb":4,"a":[["Pfam%3APF07110","EthD domain"],["Pfam%3APF09421","Frequency clock protein"],["TED%3AAF-A0A0B2XHY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0B2XHY6-F1-model_v4_TED01"]],"b":[["alkaloids/swainsonine.yaml","swainsonine"],["unclassified/destruxin-a.yaml","destruxin A"],["unclassified/subglutinol-a.yaml","subglutinol A"],["unclassified/subglutinol-b.yaml","subglutinol B"]]},{"id":"NCBITaxon:1003195","l":"","na":3,"nb":3,"a":[["Pfam%3APF23169","Halogenase D"],["Pfam%3APF02655","ATP-grasp domain"],["Pfam%3APF14518","Iron-containing redox enzyme"]],"b":[["amino_acids_and_peptides/cattlecin.yaml","cattlecin"],["amino_acids_and_peptides/ethynylserine.yaml","β-ethynylserine"],["terpenoids/cattleyene.yaml","cattleyene"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":3,"nb":3,"a":[["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF08130","Type A lantibiotic family"],["Pfam%3APF04738","Lantibiotic dehydratase, N terminus"]],"b":[["amino_acids_and_peptides/epidermin.yaml","epidermin"],["amino_acids_and_peptides/epilancin-15x.yaml","epilancin 15x"],["amino_acids_and_peptides/pep5.yaml","pep5"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":3,"nb":3,"a":[["Pfam%3APF03423","Carbohydrate binding domain (family 25)"],["Pfam%3APF03422","Carbohydrate binding module (family 6)"],["TED%3AAF-A0A7X5SGP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X5SGP7-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/polymyxin-b.yaml","polymyxin B"],["amino_acids_and_peptides/polymyxin.yaml","polymyxin"],["unclassified/fusaricidin-b.yaml","fusaricidin B"]]},{"id":"NCBITaxon:1961","l":"Streptomyces virginiae","na":3,"nb":3,"a":[["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF19328","2,4-diaminopentanoate dehydrogenase C-terminal domain"],["PROSITE%3APS01014","Transcription termination factor nusG signature"]],"b":[["alkaloids/endophenazine-a.yaml","endophenazine A"],["polyketides/monensin.yaml","monensin"],["unclassified/virginiamycin-s1.yaml","virginiamycin S1"]]},{"id":"NCBITaxon:384676","l":"Pseudomonas entomophila L48","na":3,"nb":3,"a":[["Pfam%3APF18063","Beta barrel Pore-forming domain"],["Pfam%3APF08548","Peptidase M10 serralysin C terminal"],["TED%3AAF-Q1I2P2-F1-model_v4_TED01","TED novel fold AF-Q1I2P2-F1-model_v4_TED01"]],"b":[["alkaloids/labradorin-1.yaml","labradorin 1"],["alkaloids/labradorin-2.yaml","labradorin 2"],["alkaloids/pimprinine.yaml","pimprinine"]]},{"id":"NCBITaxon:448385","l":"","na":3,"nb":3,"a":[["TED%3AAF-A9FYP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A9FYP8-F1-model_v4_TED01"],["TED%3AAF-A9G932-F1-model_v4_TED01","TED highly-symmetric fold AF-A9G932-F1-model_v4_TED01"],["TED%3AAF-A9F9E5-F1-model_v4_TED01","TED novel fold AF-A9F9E5-F1-model_v4_TED01"]],"b":[["polyketides/etnangien.yaml","etnangien"],["polyketides/soraphen-a.yaml","soraphen A"],["terpenoids/eremophilene.yaml","(+)-eremophilene"]]},{"id":"NCBITaxon:45133","l":"Lasiodiplodia theobromae","na":3,"nb":3,"a":[["TED%3AAF-A0A5N5DCC3-F1-model_v4_TED01","TED novel fold AF-A0A5N5DCC3-F1-model_v4_TED01"],["TED%3AAF-A0A5N5DDT9-F1-model_v4_TED01","TED novel fold AF-A0A5N5DDT9-F1-model_v4_TED01"],["TED%3AAF-A0A5N5DLG2-F1-model_v4_TED02","TED novel fold AF-A0A5N5DLG2-F1-model_v4_TED02"]],"b":[["polyketides/lasiodiplodin.yaml","lasiodiplodin"],["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"],["shikimates_and_phenylpropanoids/mellein.yaml","(-)-Mellein"]]},{"id":"NCBITaxon:454130","l":"Aspergillus calidoustus","na":3,"nb":3,"a":[["Pfam%3APF28380","Sesquiterpene cyclase astC-like C-terminal domain"],["TED%3AAF-A0A0U5FXA2-F1-model_v4_TED01","TED novel fold AF-A0A0U5FXA2-F1-model_v4_TED01"],["TED%3AAF-A0A0U5GJ59-F1-model_v4_TED01","TED novel fold AF-A0A0U5GJ59-F1-model_v4_TED01"]],"b":[["terpenoids/calidoustene-a.yaml","calidoustene A"],["terpenoids/calidoustene-b.yaml","calidoustene B"],["terpenoids/calidoustene-c.yaml","calidoustene C"]]},{"id":"UniProt:P59594","l":"","na":3,"nb":3,"a":[["ComplexPortal%3ACPX-7088","SARS-CoV uncleaved Spike protein complex"],["proteintraitsmech%3AMEROPS_CLEAVAGE_S01_247","epitheliasin cleavage specificity"],["IDPO%3A0000048","limited proteolysis display site"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/linaclotide.yaml","linaclotide"],["carbohydrates/kanamycin-a.yaml","kanamycin A"]]},{"id":"NCBITaxon:559292","l":"Saccharomyces cerevisiae (strain ATCC 204508 / S288c)","na":14483,"nb":2,"a":[["EC%3A1.14.18.-","With another compound as one donor, and incorporation of one atom of oxygen"],["EC%3A1.16.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.18.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.5.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.8.-.-","Acting on a sulfur group of donors"]],"b":[["polyketides/kojic-acid.yaml","kojic acid"],["polyketides/radicicol.yaml","radicicol"]]},{"id":"NCBITaxon:224308","l":"Bacillus subtilis (strain 168)","na":11310,"nb":2,"a":[["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.10.3.-","With oxygen as acceptor"],["EC%3A1.13.12.-","With incorporation of one atom of oxygen (internal monooxygenases or internal mixed function oxidases)"],["EC%3A1.14.19.-","With oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water"],["EC%3A1.17.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.21.98.-","With other, known acceptors"]],"b":[["unclassified/corynebactin.yaml","corynebactin"],["unclassified/pulcherriminic-acid.yaml","pulcherriminic acid"]]},{"id":"UniProt:P37840","l":"","na":102,"nb":2,"a":[["ComplexPortal%3ACPX-22614","-"],["ComplexPortal%3ACPX-25548","-"],["GO%3A0030424","axon"],["GO%3A0043679","axon terminus"],["GO%3A0005938","cell cortex"],["GO%3A0030426","growth cone"]],"b":[["amino_acids_and_peptides/actinonin.yaml","actinonin"],["polyketides/sirolimus.yaml","sirolimus"]]},{"id":"NCBITaxon:93061","l":"Staphylococcus aureus (strain NCTC 8325 / PS 47)","na":47,"nb":2,"a":[["IDPO%3A0000033","flexible linker"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF07694","5TMR of 5TMR-LYT"],["Pfam%3APF01757","Acyltransferase domain"],["Pfam%3APF18719","ArlS sensor domain"],["Pfam%3APF02216","B domain"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["unclassified/staphyloferrin-a.yaml","staphyloferrin A"]]},{"id":"UniProt:P00519","l":"","na":42,"nb":2,"a":[["EC%3A2.7.10.2","non-specific protein-tyrosine kinase"],["ComplexPortal%3ACPX-20158","-"],["ComplexPortal%3ACPX-24443","-"],["ComplexPortal%3ACPX-24492","-"],["ComplexPortal%3ACPX-25676","-"],["GO%3A0000405","bubble DNA binding"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"],["polyketides/emodin.yaml","emodin"]]},{"id":"UniProt:P24941","l":"","na":34,"nb":2,"a":[["ComplexPortal%3ACPX-10673","-"],["ComplexPortal%3ACPX-11851","-"],["ComplexPortal%3ACPX-13027","-"],["ComplexPortal%3ACPX-15343","-"],["ComplexPortal%3ACPX-19796","-"],["ComplexPortal%3ACPX-21602","-"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"],["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:1912","l":"Streptomyces hygroscopicus","na":2,"nb":29,"a":[["Pfam%3APF21168","Chorismatase FkbO/Hyg5-like, N-terminal"],["TED%3AAF-A0A1S6RUT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S6RUT8-F1-model_v4_TED01"]],"b":[["alkaloids/9-methylstreptimidone.yaml","9-methylstreptimidone"],["alkaloids/indigoidine-2.yaml","indigoidine"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/cyclothiazomycin.yaml","cyclothiazomycin"],["amino_acids_and_peptides/eponemycin.yaml","eponemycin"],["amino_acids_and_peptides/himastatin.yaml","himastatin"]]},{"id":"UniProt:O15296","l":"","na":26,"nb":2,"a":[["ComplexPortal%3ACPX-11775","-"],["ComplexPortal%3ACPX-23490","-"],["ComplexPortal%3ACPX-25286","-"],["GO%3A0050473","arachidonate 15-lipoxygenase activity"],["GO%3A0036403","arachidonate 8(S)-lipoxygenase activity"],["GO%3A0016165","linoleate 13S-lipoxygenase activity"]],"b":[["amino_acids_and_peptides/polymyxin.yaml","polymyxin"],["polyketides/tautomycetin.yaml","tautomycetin"]]},{"id":"UniProt:P62937","l":"","na":26,"nb":2,"a":[["ComplexPortal%3ACPX-16615","-"],["ComplexPortal%3ACPX-25278","-"],["GO%3A1904813","ficolin-1-rich granule lumen"],["GO%3A0016018","cyclosporin A binding"],["GO%3A1904399","heparan sulfate binding"],["GO%3A0003755","peptidyl-prolyl cis-trans isomerase activity"]],"b":[["amino_acids_and_peptides/cyclosporin-a.yaml","cyclosporin A"],["amino_acids_and_peptides/sanglifehrin-a.yaml","sanglifehrin A"]]},{"id":"UniProt:P06276","l":"","na":23,"nb":2,"a":[["ComplexPortal%3ACPX-12760","-"],["ComplexPortal%3ACPX-18032","-"],["ComplexPortal%3ACPX-20651","-"],["ComplexPortal%3ACPX-21068","-"],["ComplexPortal%3ACPX-21174","-"],["ComplexPortal%3ACPX-21255","-"]],"b":[["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/physostigmine.yaml","physostigmine"]]},{"id":"UniProt:P07203","l":"","na":21,"nb":2,"a":[["ComplexPortal%3ACPX-13707","-"],["ComplexPortal%3ACPX-15014","-"],["ComplexPortal%3ACPX-20814","-"],["ComplexPortal%3ACPX-20823","-"],["ComplexPortal%3ACPX-23329","-"],["ComplexPortal%3ACPX-23744","-"]],"b":[["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"],["unclassified/beauvericin.yaml","beauvericin"]]},{"id":"UniProt:P63092","l":"","na":21,"nb":2,"a":[["GO%3A0005834","heterotrimeric G-protein complex"],["GO%3A0010856","adenylate cyclase activator activity"],["GO%3A0031748","D1 dopamine receptor binding"],["GO%3A0031683","G-protein beta/gamma-subunit complex binding"],["GO%3A0007190","activation of adenylate cyclase activity"],["GO%3A0038184","adenylate cyclase-activating G protein-coupled bile acid receptor signaling pathway"]],"b":[["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"]]},{"id":"NCBITaxon:746128","l":"Aspergillus fumigatus","na":2,"nb":20,"a":[["Pfam%3APF07335","Fungal chitosanase of glycosyl hydrolase group 75"],["Pfam%3APF12296","Hydrophobic surface binding protein A"]],"b":[["alkaloids/fumigaclavine-c.yaml","fumigaclavine C"],["alkaloids/fumiquinazoline-a.yaml","fumiquinazoline A"],["alkaloids/fumiquinazoline-c.yaml","fumiquinazoline C"],["alkaloids/fumiquinazoline-d.yaml","fumiquinazoline D"],["alkaloids/hexadehydroastechrome.yaml","hexadehydroastechrome"],["carbohydrates/tobramycin.yaml","tobramycin"]]},{"id":"NCBITaxon:176299","l":"Agrobacterium fabrum (strain C58 / ATCC 33970)","na":17,"nb":2,"a":[["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF28403","Aconitase X second domain"],["Pfam%3APF28406","Aconitase X third domain"],["Pfam%3APF04412","Aconitase X first domain"],["Pfam%3APF01989","Aconitase X swivel domain"]],"b":[["amino_acids_and_peptides/fabrubactin-a.yaml","fabrubactin A"],["amino_acids_and_peptides/fabrubactin-b.yaml","fabrubactin B"]]},{"id":"NCBITaxon:455632","l":"Streptomyces griseus subsp. griseus NBRC 13350","na":2,"nb":17,"a":[["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["PROSITE%3APS01311","Prolipoprotein diacylglyceryl transferase signature"]],"b":[["alkaloids/grixazone-a.yaml","grixazone A"],["alkaloids/iminimycin-a.yaml","iminimycin A"],["alkaloids/iminimycin-b.yaml","iminimycin B"],["alkaloids/melanin.yaml","melanin"],["carbohydrates/streptomycin.yaml","streptomycin"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":16,"nb":2,"a":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF28265","Lipoprotein N-acylation protein LnsA-like"],["Pfam%3APF16403","Bacterial surface protein, Ig-like domain"],["Pfam%3APF03944","delta endotoxin"],["Pfam%3APF03945","delta endotoxin, N-terminal domain"],["Pfam%3APF06355","Aegerolysin"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["unclassified/andalusicin-a.yaml","andalusicin A"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":16,"nb":2,"a":[["Pfam%3APF05932","Tir chaperone protein (CesT) family"],["Pfam%3APF17656","FlgA N-terminal domain"],["Pfam%3APF22200","ExsA N-terminal regulatory domain"],["Pfam%3APF05171","Haemin-degrading HemS.ChuX domain"],["Pfam%3APF07201","HrpJ-like domain"],["Pfam%3APF04391","Protein of unknown function (DUF533)"]],"b":[["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["alkaloids/yersiniabactin.yaml","yersiniabactin"]]},{"id":"NCBITaxon:1360","l":"Lactococcus lactis subsp. lactis","na":14,"nb":2,"a":[["Pfam%3APF08951","Bacteriocin immunity protein family"],["Pfam%3APF08998","Bacterial epsilon antitoxin"],["Pfam%3APF25887","LcnD-like, long helical bundle domain"],["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF25940","LcnD-like, C-terminal domain"],["Pfam%3APF08129","Alpha/beta enterocin family"]],"b":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"],["amino_acids_and_peptides/nisin-a.yaml","nisin A"]]},{"id":"NCBITaxon:29488","l":"Photorhabdus luminescens","na":2,"nb":14,"a":[["Pfam%3APF02273","Acyl transferase"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"]],"b":[["alkaloids/photobactin.yaml","photobactin"],["alkaloids/pzn5.yaml","PZN5"],["amino_acids_and_peptides/gamexpeptide-c.yaml","gamexpeptide C"],["amino_acids_and_peptides/glidobactin.yaml","glidobactin"],["amino_acids_and_peptides/luminmycin-a.yaml","luminmycin A"],["polyketides/photopyrone-a.yaml","photopyrone A"]]},{"id":"NCBITaxon:759273","l":"Colletotrichum higginsianum IMI 349063","na":2,"nb":14,"a":[["TED%3AAF-A0A1B7Y9H0-F1-model_v4_TED01","TED novel fold AF-A0A1B7Y9H0-F1-model_v4_TED01"],["TED%3AAF-H1V1S2-F1-model_v4_TED01","TED novel fold AF-H1V1S2-F1-model_v4_TED01"]],"b":[["shikimates_and_phenylpropanoids/colletorin-d-acid.yaml","Colletorin D acid"],["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"],["unclassified/13-epi-higginsianin-c.yaml","13-epi-higginsianin C"],["unclassified/colletochlorin-a.yaml","Colletochlorin A"],["unclassified/colletochlorin-b.yaml","Colletochlorin B"],["unclassified/colletochlorin-d.yaml","Colletochlorin D"]]},{"id":"NCBITaxon:271848","l":"Burkholderia thailandensis E264","na":2,"nb":12,"a":[["Pfam%3APF12091","Protein of unknown function (DUF3567)"],["Pfam%3APF01075","Glycosyltransferase family 9 (heptosyltransferase)"]],"b":[["alkaloids/malleobactin-b.yaml","malleobactin B"],["alkaloids/malleobactin-d.yaml","malleobactin D"],["polyketides/malleicyprol.yaml","malleicyprol"],["polyketides/malleilactone.yaml","malleilactone"],["polyketides/thailandamide-lactone.yaml","thailandamide lactone"],["polyketides/thailandamide.yaml","thailandamide"]]},{"id":"NCBITaxon:1111077","l":"Claviceps purpurea 20.1","na":2,"nb":11,"a":[["Pfam%3APF28338","AclK C-terminal domain"],["TED%3AAF-M1W301-F1-model_v4_TED01","TED highly-symmetric fold AF-M1W301-F1-model_v4_TED01"]],"b":[["alkaloids/ergotamine.yaml","ergotamine"],["polyketides/clavorubin.yaml","Clavorubin"],["polyketides/endocrocin.yaml","endocrocin"],["polyketides/o-orsellinate-depside.yaml","o-orsellinate depside"],["polyketides/secalonic-acid-a.yaml","Secalonic acid A"],["polyketides/secalonic-acid-b.yaml","Secalonic acid B"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":11,"nb":2,"a":[["Pfam%3APF22829","HphA C-terminal domain"],["Pfam%3APF22828","HphA N-terminal heme-binding domain"],["Pfam%3APF28205","Ciprofloxacin tolerance protein"],["Pfam%3APF19582","Solute-binding protein AdeT 1/2"],["PROSITE%3APS00337","Beta-lactamase class-D active site"],["Pfam%3APF24575","Surface lipoprotein assembly modifier, N-terminal TPR repeats"]],"b":[["alkaloids/acinetobactin.yaml","acinetobactin"],["amino_acids_and_peptides/fimsbactin-a.yaml","fimsbactin A"]]},{"id":"UniProt:P11802","l":"","na":11,"nb":2,"a":[["ComplexPortal%3ACPX-10673","-"],["ComplexPortal%3ACPX-18434","-"],["ComplexPortal%3ACPX-20361","-"],["ComplexPortal%3ACPX-21602","-"],["ComplexPortal%3ACPX-26168","-"],["ComplexPortal%3ACPX-2010","Cyclin D1-CDK4 complex"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"],["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:455432","l":"Nocardia terpenica","na":2,"nb":10,"a":[["TED%3AAF-A0A6G9ZDY9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6G9ZDY9-F1-model_v4_TED01"],["TED%3AAF-A0A164L9V7-F1-model_v4_TED03","TED novel fold AF-A0A164L9V7-F1-model_v4_TED03"]],"b":[["amino_acids_and_peptides/nocapeptin-a.yaml","nocapeptin A"],["amino_acids_and_peptides/nocathioamide-a.yaml","nocathioamide A"],["polyketides/brasilinolide-a.yaml","brasilinolide A"],["polyketides/brasilinolide-b.yaml","brasilinolide B"],["polyketides/brasilinolide-c.yaml","brasilinolide C"],["polyketides/terpenomycin.yaml","terpenomycin"]]},{"id":"NCBITaxon:1159556","l":"Ustilaginoidea virens","na":2,"nb":9,"a":[["Pfam%3APF06966","Protein of unknown function (DUF1295)"],["TED%3AAF-A0A1B5L5W2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1B5L5W2-F1-model_v4_TED03"]],"b":[["amino_acids_and_peptides/ustiloxin-b.yaml","ustiloxin B"],["polyketides/ustilaginoidin-a.yaml","ustilaginoidin A"],["polyketides/ustilaginoidin-d.yaml","ustilaginoidin D"],["polyketides/ustilaginoidin-e.yaml","ustilaginoidin E"],["polyketides/ustilaginoidin-f.yaml","ustilaginoidin F"],["polyketides/ustilaginoidin-g.yaml","ustilaginoidin G"]]},{"id":"NCBITaxon:158878","l":"Staphylococcus aureus (strain Mu50 / ATCC 700699)","na":9,"nb":2,"a":[["Pfam%3APF26317","Histidine racemase CntK N-terminal domain"],["Pfam%3APF13610","DDE domain"],["Pfam%3APF12199","Extracellular fibrinogen binding protein C terminal"],["Pfam%3APF26323","Staphylococcus aureus type VII secretion system substrate EsxC"],["Pfam%3APF19776","Family of unknown function (DUF6262)"],["Pfam%3APF27790","Poly-beta-1,6-N-acetyl-D-glucosamine synthesis protein IcaD"]],"b":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"]]},{"id":"NCBITaxon:57975","l":"Burkholderia thailandensis","na":2,"nb":9,"a":[["TED%3AAF-A0A7Z8HH79-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Z8HH79-F1-model_v4_TED01"],["TED%3AAF-A0A7Z8HK43-F1-model_v4_TED01","TED novel fold AF-A0A7Z8HK43-F1-model_v4_TED01"]],"b":[["fatty_acids/fr901464.yaml","FR901464"],["polyketides/malleicyprol.yaml","malleicyprol"],["polyketides/thailandamide-lactone.yaml","thailandamide lactone"],["polyketides/thailandamide.yaml","thailandamide"],["polyketides/thailanstatin-a.yaml","thailanstatin A"],["shikimates_and_phenylpropanoids/bactobolin.yaml","bactobolin"]]},{"id":"UniProt:P11309","l":"","na":9,"nb":2,"a":[["ComplexPortal%3ACPX-11827","-"],["ComplexPortal%3ACPX-16792","-"],["ComplexPortal%3ACPX-21719","-"],["ComplexPortal%3ACPX-26168","-"],["GO%3A1905062","positive regulation of cardioblast proliferation"],["GO%3A1905701","positive regulation of xenobiotic detoxification by transmembrane export across the plasma membrane"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"],["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":8,"nb":2,"a":[["Pfam%3APF01890","Cobalamin synthesis G C-terminus"],["Pfam%3APF11761","Cobalamin biosynthesis central region"],["Pfam%3APF11760","Cobalamin synthesis G N-terminal"],["Pfam%3APF02570","Precorrin-8X methylmutase"],["PROSITE%3APS00304","Small, acid-soluble spore proteins, alpha/beta type, signature 1"],["PROSITE%3APS00684","Small, acid-soluble spore proteins, alpha/beta type, signature 2"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"],["carbohydrates/oxetanocin-a.yaml","oxetanocin A"]]},{"id":"NCBITaxon:303698","l":"Penicillium steckii","na":2,"nb":8,"a":[["TED%3AAF-A0A1V6TCF9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1V6TCF9-F1-model_v4_TED03"],["TED%3AAF-A0A1V6U0I0-F1-model_v4_TED02","TED novel fold AF-A0A1V6U0I0-F1-model_v4_TED02"]],"b":[["unclassified/adametizine-a.yaml","adametizine A"],["unclassified/fa2097.yaml","FA2097"],["unclassified/outovirin-a.yaml","outovirin A"],["unclassified/outovirin-c.yaml","outovirin C"],["unclassified/penigainamide-a.yaml","penigainamide A"],["unclassified/penigainamide-b.yaml","penigainamide B"]]},{"id":"NCBITaxon:119927","l":"Alternaria tenuissima","na":7,"nb":2,"a":[["TED%3AAF-A0A4Q4MR18-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q4MR18-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4M1N1-F1-model_v4_TED01","TED novel fold AF-A0A4Q4M1N1-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4M2G6-F1-model_v4_TED01","TED novel fold AF-A0A4Q4M2G6-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4MJL0-F1-model_v4_TED01","TED novel fold AF-A0A4Q4MJL0-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4PGY1-F1-model_v4_TED01","TED novel fold AF-A0A4Q4PGY1-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4RTT0-F1-model_v4_TED01","TED novel fold AF-A0A4Q4RTT0-F1-model_v4_TED01"]],"b":[["polyketides/patulin.yaml","patulin"],["polyketides/solanapyrone-a.yaml","solanapyrone A"]]},{"id":"NCBITaxon:1279085","l":"Fusarium fujikuroi IMI 58289","na":2,"nb":7,"a":[["Pfam%3APF12585","Virulence factor CipC-like"],["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"]],"b":[["polyketides/bikaverin.yaml","bikaverin"],["polyketides/fujikurin-c.yaml","fujikurin C"],["polyketides/fujikurin-d.yaml","fujikurin D"],["polyketides/gibepyrone-a.yaml","gibepyrone A"],["terpenoids/acorenol.yaml","α-acorenol"],["terpenoids/koraiol.yaml","koraiol"]]},{"id":"NCBITaxon:1380566","l":"Pochonia chlamydosporia 170","na":2,"nb":7,"a":[["TED%3AAF-A0A179FUG8-F1-model_v4_TED01","TED novel fold AF-A0A179FUG8-F1-model_v4_TED01"],["TED%3AAF-A0A179FWH3-F1-model_v4_TED01","TED novel fold AF-A0A179FWH3-F1-model_v4_TED01"]],"b":[["polyketides/monocillin-ii.yaml","monocillin II"],["polyketides/monocillin-iv.yaml","monocillin IV"],["polyketides/monocillin-v.yaml","monocillin V"],["polyketides/monocillin-vi.yaml","monocillin VI"],["polyketides/monocillin-vii.yaml","monocillin VII"],["polyketides/monorden-d.yaml","monorden D"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":7,"nb":2,"a":[["Pfam%3APF19443","DAHL domain"],["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"],["Pfam%3APF03524","Conjugal transfer protein"],["Pfam%3APF27439","Chaperone protein DnaJ C-terminal region"],["Pfam%3APF10907","Protein of unknown function (DUF2749)"],["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]],"b":[["alkaloids/agrobactin.yaml","agrobactin"],["amino_acids_and_peptides/aztreonam.yaml","aztreonam"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":6,"nb":2,"a":[["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF03744","6-carboxyhexanoate--CoA ligase"],["PROSITE%3APS00836","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 1"],["PROSITE%3APS00837","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 2"],["TED%3AAF-A0A2S5D092-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5D092-F1-model_v4_TED01"],["TED%3AAF-A0A2S0JW09-F1-model_v4_TED01","TED novel fold AF-A0A2S0JW09-F1-model_v4_TED01"]],"b":[["alkaloids/biotin.yaml","biotin"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:1894","l":"Kitasatospora aureofaciens","na":2,"nb":6,"a":[["Pfam%3APF01933","2-phospho-L-lactate transferase CofD"],["TED%3AAF-A0A1E7NF13-F1-model_v4_TED01","TED novel fold AF-A0A1E7NF13-F1-model_v4_TED01"]],"b":[["fatty_acids/triacsin-c.yaml","triacsin C"],["polyketides/auricin.yaml","auricin"],["polyketides/chlortetracycline.yaml","chlortetracycline"],["polyketides/lipomycin.yaml","α-lipomycin"],["polyketides/oxytetracycline.yaml","oxytetracycline"],["polyketides/venturicidin-a.yaml","venturicidin A"]]},{"id":"NCBITaxon:321","l":"Pseudomonas syringae pv. syringae","na":6,"nb":2,"a":[["Pfam%3APF03421","YopJ Serine/Threonine acetyltransferase"],["Pfam%3APF17914","HopA1 effector protein family"],["Pfam%3APF27361","HrcQa N-terminal domain"],["Pfam%3APF04877","HrpZ"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]],"b":[["amino_acids_and_peptides/3-methylarginine.yaml","3-methylarginine"],["unclassified/syringopeptin-25a.yaml","syringopeptin 25A"]]},{"id":"NCBITaxon:52","l":"Chondromyces crocatus","na":2,"nb":6,"a":[["TED%3AAF-A0A0K1ER44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0K1ER44-F1-model_v4_TED01"],["TED%3AAF-A0A0K1E854-F1-model_v4_TED01","TED novel fold AF-A0A0K1E854-F1-model_v4_TED01"]],"b":[["polyketides/chondrochloren-a.yaml","chondrochloren A"],["polyketides/cmc-thuggacin-a.yaml","Cmc-thuggacin A"],["polyketides/crocacin.yaml","crocacin"],["shikimates_and_phenylpropanoids/ajudazol-a.yaml","ajudazol A"],["unclassified/chondramide-a.yaml","chondramide A"],["unclassified/cmc-thuggacin-b.yaml","Cmc-thuggacin B"]]},{"id":"NCBITaxon:2795974","l":"Stieleria maiorica","na":2,"nb":5,"a":[["TED%3AAF-A0A5B9MHL4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5B9MHL4-F1-model_v4_TED02"],["TED%3AAF-A0A5B9MK37-F1-model_v4_TED03","TED novel fold AF-A0A5B9MK37-F1-model_v4_TED03"]],"b":[["alkaloids/stieleriacine-a1.yaml","stieleriacine A1"],["alkaloids/stieleriacine-a2.yaml","stieleriacine A2"],["fatty_acids/stieleriacine-c.yaml","stieleriacine C"],["unclassified/stieleriacine-b1.yaml","stieleriacine B1"],["unclassified/stieleriacine-b2.yaml","stieleriacine B2"]]},{"id":"NCBITaxon:305","l":"Ralstonia solanacearum","na":5,"nb":2,"a":[["Pfam%3APF14897","EpsG family"],["TED%3AAF-A0A7I8FQZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7I8FQZ6-F1-model_v4_TED01"],["TED%3AAF-A0A7H1MI34-F1-model_v4_TED01","TED novel fold AF-A0A7H1MI34-F1-model_v4_TED01"],["TED%3AAF-A0A7I8FKL4-F1-model_v4_TED01","TED novel fold AF-A0A7I8FKL4-F1-model_v4_TED01"],["TED%3AAF-A0A850FKB0-F1-model_v4_TED01","TED novel fold AF-A0A850FKB0-F1-model_v4_TED01"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"],["unclassified/micacocidin.yaml","micacocidin"]]},{"id":"NCBITaxon:394096","l":"Hyalangium minutum","na":5,"nb":2,"a":[["TED%3AAF-A0A085W4M3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085W4M3-F1-model_v4_TED01"],["TED%3AAF-A0A085WRA7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085WRA7-F1-model_v4_TED01"],["TED%3AAF-A0A085WWM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085WWM4-F1-model_v4_TED01"],["TED%3AAF-A0A085W7S5-F1-model_v4_TED03","TED novel fold AF-A0A085W7S5-F1-model_v4_TED03"],["TED%3AAF-A0A085WH04-F1-model_v4_TED01","TED novel fold AF-A0A085WH04-F1-model_v4_TED01"]],"b":[["polyketides/nystatin-a1.yaml","nystatin A1"],["unclassified/myxochromide-d-2.yaml","myxochromide D"]]},{"id":"NCBITaxon:193462","l":"Streptomyces niveus","na":2,"nb":4,"a":[["Pfam%3APF16861","Carbamoyltransferase C-terminus"],["Pfam%3APF02543","Carbamoyltransferase N-terminus"]],"b":[["alkaloids/phenaziterpene-a.yaml","phenaziterpene A"],["carbohydrates/kanamycin-a.yaml","kanamycin A"],["shikimates_and_phenylpropanoids/cathomycin.yaml","cathomycin"],["unclassified/be-14106.yaml","BE-14106"]]},{"id":"NCBITaxon:394095","l":"Pyxidicoccus fallax","na":4,"nb":2,"a":[["TED%3AAF-A0A848LUK3-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A848LUK3-F1-model_v4_TED04"],["TED%3AAF-A0A848LF16-F1-model_v4_TED01","TED novel fold AF-A0A848LF16-F1-model_v4_TED01"],["TED%3AAF-A0A848LFV1-F1-model_v4_TED03","TED novel fold AF-A0A848LFV1-F1-model_v4_TED03"],["TED%3AAF-A0A848LG55-F1-model_v4_TED01","TED novel fold AF-A0A848LG55-F1-model_v4_TED01"]],"b":[["polyketides/gulmirecin-a.yaml","gulmirecin A"],["unclassified/myxarylin.yaml","Myxarylin"]]},{"id":"NCBITaxon:426418","l":"Pyrenophora tritici-repentis Pt-1C-BFP","na":2,"nb":4,"a":[["TED%3AAF-B2VYP9-F1-model_v4_TED01","TED novel fold AF-B2VYP9-F1-model_v4_TED01"],["TED%3AAF-B2VZ40-F1-model_v4_TED02","TED novel fold AF-B2VZ40-F1-model_v4_TED02"]],"b":[["unclassified/triticone-a.yaml","triticone A"],["unclassified/triticone-b.yaml","triticone B"],["unclassified/triticone-c.yaml","triticone C"],["unclassified/triticone-f.yaml","triticone F"]]},{"id":"NCBITaxon:5270","l":"","na":4,"nb":2,"a":[["Pfam%3APF17445","Mating factor A1"],["Pfam%3APF24563","Mug60/KHD4 KH type I domain"],["Pfam%3APF01185","Fungal hydrophobin"],["Pfam%3APF07460","NUMOD3 motif"]],"b":[["fatty_acids/itaconic-acid.yaml","itaconic acid"],["fatty_acids/ustilagic-acid.yaml","ustilagic acid"]]},{"id":"NCBITaxon:55601","l":"Vibrio anguillarum","na":4,"nb":2,"a":[["Pfam%3APF17327","Acyl homoserine lactone synthase"],["PROSITE%3APS00949","Autoinducer synthase family signature"],["TED%3AAF-A0A241NLV5-F1-model_v4_TED03","TED novel fold AF-A0A241NLV5-F1-model_v4_TED03"],["TED%3AAF-A0A290PUC4-F1-model_v4_TED02","TED novel fold AF-A0A290PUC4-F1-model_v4_TED02"]],"b":[["alkaloids/anguibactin.yaml","anguibactin"],["amino_acids_and_peptides/vanchrobactin.yaml","vanchrobactin"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":4,"nb":2,"a":[["Pfam%3APF01375","Heat-labile enterotoxin alpha chain"],["Pfam%3APF09101","Exotoxin A binding"],["Pfam%3APF09009","Exotoxin A catalytic"],["Pfam%3APF09102","Exotoxin A, targeting"]],"b":[["alkaloids/vibriobactin-2.yaml","vibriobactin"],["alkaloids/vibriobactin.yaml","vibriobactin"]]},{"id":"UniProt:P02829","l":"","na":4,"nb":2,"a":[["ComplexPortal%3ACPX-1276","HMC complex"],["GO%3A0006458","'de novo' protein folding"],["GO%3A0043248","proteasome assembly"],["GO%3A0070482","response to oxygen levels"]],"b":[["polyketides/monocillin-iv.yaml","monocillin IV"],["polyketides/radicicol.yaml","radicicol"]]},{"id":"NCBITaxon:1120925","l":"Acinetobacter bouvetii DSM 14964 = CIP 107468","na":2,"nb":3,"a":[["proteintraitsmech%3AELIFE109154_VibH_like","VibH-like metallophore standalone condensation enzyme family"],["TED%3AAF-N9C7M4-F1-model_v4_TED02","TED novel fold AF-N9C7M4-F1-model_v4_TED02"]],"b":[["alkaloids/butanochelin.yaml","butanochelin"],["alkaloids/pentanochelin.yaml","pentanochelin"],["alkaloids/propanochelin.yaml","propanochelin"]]},{"id":"NCBITaxon:1229662","l":"Pestalotiopsis fici (strain W106-1 / CGMCC3.15140)","na":3,"nb":2,"a":[["Pfam%3APF26087","Domain of unknown function (DUF8032)"],["Pfam%3APF07110","EthD domain"],["TED%3AAF-W3WKJ8-F1-model_v4_TED01","TED novel fold AF-W3WKJ8-F1-model_v4_TED01"]],"b":[["polyketides/naphthalene-1-3-8-triol.yaml","naphthalene-1,3,8-triol"],["polyketides/scytalone.yaml","scytalone"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":2,"nb":3,"a":[["Pfam%3APF02052","Gallidermin"],["Pfam%3APF04604","Type-A lantibiotic"]],"b":[["unclassified/leuvalin.yaml","leuvalin"],["unclassified/mutanocyclin.yaml","mutanocyclin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":2,"a":[["TED%3AAF-A0A142EAM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142EAM9-F1-model_v4_TED03"],["TED%3AAF-A0A1Q3DTY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3DTY6-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3DNE3-F1-model_v4_TED01","TED novel fold AF-A0A1Q3DNE3-F1-model_v4_TED01"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:1907","l":"Streptomyces glaucescens","na":2,"nb":3,"a":[["Pfam%3APF04673","Polyketide synthesis cyclase"],["Pfam%3APF04655","Aminoglycoside/hydroxyurea antibiotic resistance kinase"]],"b":[["carbohydrates/5-hydroxystreptomycin.yaml","5'-hydroxystreptomycin"],["carbohydrates/streptomycin.yaml","streptomycin"],["polyketides/tetracenomycin-c.yaml","tetracenomycin C"]]},{"id":"NCBITaxon:1940","l":"","na":2,"nb":3,"a":[["TED%3AAF-A0A1Z2LD39-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z2LD39-F1-model_v4_TED01"],["TED%3AAF-A0A1Z2LBV3-F1-model_v4_TED01","TED novel fold AF-A0A1Z2LBV3-F1-model_v4_TED01"]],"b":[["fatty_acids/fuelimicin-b.yaml","fuelimicin B"],["fatty_acids/fuelimicin-c.yaml","fuelimicin C"],["fatty_acids/fuelimycin-a.yaml","fuelimycin A"]]},{"id":"NCBITaxon:240292","l":"Trichormus variabilis ATCC 29413","na":2,"nb":3,"a":[["Pfam%3APF18921","Cyanophycin synthase-like N-terminal domain"],["Pfam%3APF13619","KTSC domain"]],"b":[["unclassified/4-deoxygadusol.yaml","4-deoxygadusol"],["unclassified/mycosporine-glycine.yaml","mycosporine glycine"],["unclassified/shinorine.yaml","shinorine"]]},{"id":"NCBITaxon:344612","l":"Aspergillus clavatus (strain ATCC 1007 / CBS 513.65 / DSM 816 / NCTC 3887 / NRRL 1 / QM 1276 / 107)","na":3,"nb":2,"a":[["Pfam%3APF28457","Probable beta-glucosidase btgE N-terminal domain"],["Pfam%3APF24438","IML1, N-terminal, fungi"],["Pfam%3APF25326","SRB8 ARM-like domain"]],"b":[["alkaloids/cytochalasin-e.yaml","cytochalasin E"],["alkaloids/cytochalasin-k.yaml","cytochalasin K"]]},{"id":"NCBITaxon:3635","l":"Gossypium hirsutum","na":3,"nb":2,"a":[["Pfam%3APF20452","Calmodulin binding protein C-terminal domain"],["Pfam%3APF20451","Calmodulin binding protein central domain"],["Pfam%3APF07887","Calmodulin binding protein-like N-terminal domain"]],"b":[["fatty_acids/butyrolactone.yaml","γ-butyrolactone"],["terpenoids/cadinene.yaml","(−)-δ-cadinene"]]},{"id":"NCBITaxon:394503","l":"Ruminiclostridium cellulolyticum H10","na":3,"nb":2,"a":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["PROSITE%3APS00812","Glycosyl hydrolases family 8 signature"],["Pfam%3APF01270","Glycosyl hydrolases family 8"]],"b":[["alkaloids/closthioamide.yaml","closthioamide"],["amino_acids_and_peptides/rc-aip1.yaml","Rc-AIP1"]]},{"id":"NCBITaxon:42236","l":"Streptomyces diastatochromogenes","na":2,"nb":3,"a":[["TED%3AAF-A0A233S9R2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A233S9R2-F1-model_v4_TED01"],["TED%3AAF-A0A233SM76-F1-model_v4_TED01","TED novel fold AF-A0A233SM76-F1-model_v4_TED01"]],"b":[["carbohydrates/toyocamycin.yaml","toyocamycin"],["polyketides/concanamycin-a.yaml","concanamycin A"],["polyketides/polyketomycin.yaml","polyketomycin"]]},{"id":"NCBITaxon:44250","l":"Paenibacillus alvei","na":3,"nb":2,"a":[["PROSITE%3APS00481","Thiol-activated cytolysins signature"],["TED%3AAF-A0A383R9F4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A383R9F4-F1-model_v4_TED01"],["TED%3AAF-A0A7Y4MLP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4MLP7-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/colistin-a.yaml","colistin A"],["amino_acids_and_peptides/colistin-b.yaml","colistin B"]]},{"id":"NCBITaxon:4530","l":"Oryza sativa","na":2,"nb":3,"a":[["Pfam%3APF10839","Protein of unknown function (DUF2647)"],["PROSITE%3APS00937","Ribosomal protein L20 signature"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/nonadec-1-ene.yaml","nonadec-1-ene"],["terpenoids/phytocassane.yaml","phytocassane"]]},{"id":"NCBITaxon:474922","l":"Colletotrichum gloeosporioides","na":2,"nb":3,"a":[["Pfam%3APF28223","CAP22"],["PROSITE%3APS00155","Cutinase, serine active site"]],"b":[["unclassified/colletochlorin-a.yaml","Colletochlorin A"],["unclassified/colletotrichin.yaml","colletotrichin"],["unclassified/orcinol.yaml","orcinol"]]},{"id":"NCBITaxon:51201","l":"Streptomyces griseocarneus","na":3,"nb":2,"a":[["TED%3AAF-A0A3L8IG13-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3L8IG13-F1-model_v4_TED01"],["TED%3AAF-A0A3L8KW22-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3L8KW22-F1-model_v4_TED02"],["TED%3AAF-A0A8A3HJQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8A3HJQ3-F1-model_v4_TED01"]],"b":[["alkaloids/pimprinine.yaml","pimprinine"],["carbohydrates/5-hydroxystreptomycin.yaml","5'-hydroxystreptomycin"]]},{"id":"NCBITaxon:536","l":"Chromobacterium violaceum","na":2,"nb":3,"a":[["TED%3AAF-A0A381EUD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A381EUD6-F1-model_v4_TED01"],["TED%3AAF-A0A447THJ9-F1-model_v4_TED01","TED novel fold AF-A0A447THJ9-F1-model_v4_TED01"]],"b":[["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["unclassified/romidepsin.yaml","romidepsin"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":3,"nb":2,"a":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"],["TED%3AAF-A0A7H8I034-F1-model_v4_TED01","TED novel fold AF-A0A7H8I034-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/aerobactin.yaml","aerobactin"],["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":3,"nb":2,"a":[["Pfam%3APF04205","FMN-binding domain"],["Pfam%3APF10795","Protein of unknown function (DUF2607)"],["TED%3AAF-A0A1W6U0N2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W6U0N2-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/vibrioferrin-2.yaml","vibrioferrin"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:67267","l":"Streptomyces alboflavus","na":3,"nb":2,"a":[["TED%3AAF-A0A1Z1WH37-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z1WH37-F1-model_v4_TED01"],["TED%3AAF-A0A291W4F3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A291W4F3-F1-model_v4_TED01"],["TED%3AAF-A0A291W5G3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A291W5G3-F1-model_v4_TED01"]],"b":[["alkaloids/thienodolin.yaml","thienodolin"],["terpenoids/2-methylisoborneol.yaml","2-methylisoborneol"]]},{"id":"NCBITaxon:1116229","l":"","na":2,"nb":2,"a":[["Pfam%3APF28402","Pneumocandin biosynthesis cluster protein B C-terminal domain"],["TED%3AAF-S3CJ96-F1-model_v4_TED01","TED novel fold AF-S3CJ96-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/pneumocandin-a0.yaml","pneumocandin A0"],["amino_acids_and_peptides/pneumocandin-b0.yaml","pneumocandin B0"]]},{"id":"NCBITaxon:1284","l":"Staphylococcus hyicus","na":2,"nb":2,"a":[["Pfam%3APF04650","YSIRK type signal peptide"],["PROSITE%3APS01123","Thermonuclease family signature 1"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["unclassified/staphyloferrin-a.yaml","staphyloferrin A"]]},{"id":"NCBITaxon:1365484","l":"","na":2,"nb":2,"a":[["Pfam%3APF11578","Protein of unknown function (DUF3237)"],["Pfam%3APF14269","Arylsulfotransferase (ASST)"]],"b":[["alkaloids/mycophenolic-acid-2.yaml","mycophenolic acid"],["terpenoids/pr-toxin.yaml","PR-toxin"]]},{"id":"NCBITaxon:1392255","l":"","na":2,"nb":2,"a":[["Pfam%3APF08592","Anthrone oxygenase"],["TED%3AAF-A0A2I1CES2-F1-model_v4_TED03","TED novel fold AF-A0A2I1CES2-F1-model_v4_TED03"]],"b":[["polyketides/neosartorin.yaml","neosartorin"],["unclassified/novofumigatonin.yaml","novofumigatonin"]]},{"id":"NCBITaxon:247156","l":"Nocardia farcinica IFM 10152","na":2,"nb":2,"a":[["Pfam%3APF19288","CofH/MqnC C-terminal region"],["Pfam%3APF17645","Arylmalonate decarboxylase"]],"b":[["amino_acids_and_peptides/nocobactin-na.yaml","nocobactin NA"],["unclassified/nocobactin-na-10152b.yaml","nocobactin NA 10152B"]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":2,"nb":2,"a":[["Pfam%3APF21252","Glycosyl hydrolase 109, C-terminal domain"],["TED%3AAF-A0A3P1YJQ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3P1YJQ6-F1-model_v4_TED01"]],"b":[["carbohydrates/legionaminic-acid.yaml","legionaminic acid"],["carbohydrates/pseudaminate.yaml","pseudaminate"]]},{"id":"NCBITaxon:285532","l":"Streptomyces achromogenes subsp. streptozoticus","na":2,"nb":2,"a":[["Pfam%3APF07883","Cupin domain"],["Pfam%3APF14518","Iron-containing redox enzyme"]],"b":[["carbohydrates/streptozotocin.yaml","streptozotocin"],["unclassified/enteromycin.yaml","enteromycin"]]},{"id":"NCBITaxon:29430","l":"Acinetobacter haemolyticus","na":2,"nb":2,"a":[["TED%3AAF-A0A845PGH5-F1-model_v4_TED01","TED novel fold AF-A0A845PGH5-F1-model_v4_TED01"],["TED%3AAF-A0A857IU13-F1-model_v4_TED06","TED novel fold AF-A0A857IU13-F1-model_v4_TED06"]],"b":[["alkaloids/acinetoferrin.yaml","acinetoferrin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":2,"nb":2,"a":[["TED%3AAF-A0A6N3WS12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N3WS12-F1-model_v4_TED01"],["TED%3AAF-A0A3R7GIU2-F1-model_v4_TED02","TED novel fold AF-A0A3R7GIU2-F1-model_v4_TED02"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["terpenoids/xanthan.yaml","xanthan"]]},{"id":"NCBITaxon:3469","l":"Papaver somniferum","na":2,"nb":2,"a":[["Pfam%3APF00407","Pathogenesis-related protein Bet v 1 family"],["TED%3AAF-A0A4Y7LH48-F1-model_v4_TED01","TED novel fold AF-A0A4Y7LH48-F1-model_v4_TED01"]],"b":[["alkaloids/noscapine.yaml","(−)-noscapine"],["alkaloids/thebaine.yaml","thebaine"]]},{"id":"NCBITaxon:5044","l":"","na":2,"nb":2,"a":[["PROSITE%3APS00185","Isopenicillin N synthase signature 1"],["PROSITE%3APS00186","Isopenicillin N synthase signature 2"]],"b":[["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"],["polyketides/sorbicillin.yaml","sorbicillin"]]},{"id":"NCBITaxon:5074","l":"Penicillium brevicompactum","na":2,"nb":2,"a":[["Pfam%3APF09227","Bubble protein"],["Pfam%3APF18558","Methyltransferase, Helix-turn-helix domain"]],"b":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"],["unclassified/asperphenamate.yaml","asperphenamate"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":2,"nb":2,"a":[["PROSITE%3APS00336","Beta-lactamase class-C active site"],["TED%3AAF-A0A155XQ59-F1-model_v4_TED02","TED novel fold AF-A0A155XQ59-F1-model_v4_TED02"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["terpenoids/mk-8.yaml","MK-8"]]},{"id":"NCBITaxon:5514","l":"Fusarium sporotrichioides","na":2,"nb":2,"a":[["Pfam%3APF22701","Mal s 1 allergenic protein-like"],["TED%3AAF-A0A395RG49-F1-model_v4_TED02","TED novel fold AF-A0A395RG49-F1-model_v4_TED02"]],"b":[["terpenoids/t-2-toxin.yaml","T-2 toxin"],["unclassified/beauvericin.yaml","beauvericin"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":2,"nb":2,"a":[["TED%3AAF-B5UAE0-F1-model_v4_TED01","TED highly-symmetric fold AF-B5UAE0-F1-model_v4_TED01"],["TED%3AAF-A0A3E1IF45-F1-model_v4_TED01","TED novel fold AF-A0A3E1IF45-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/vibrioferrin-2.yaml","vibrioferrin"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:68170","l":"","na":2,"nb":2,"a":[["Pfam%3APF12902","Ferritin-like"],["TED%3AAF-A0A0F0GZM7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0F0GZM7-F1-model_v4_TED03"]],"b":[["alkaloids/rebeccamycin.yaml","rebeccamycin"],["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:69","l":"Lysobacter enzymogenes","na":2,"nb":2,"a":[["TED%3AAF-A0A1J1E6A8-F1-model_v4_TED02","TED novel fold AF-A0A1J1E6A8-F1-model_v4_TED02"],["TED%3AAF-A0A7T8MLU2-F1-model_v4_TED03","TED novel fold AF-A0A7T8MLU2-F1-model_v4_TED03"]],"b":[["unclassified/heat-stable-antifungal-factor.yaml","heat-stable antifungal factor"],["unclassified/wap-8294a2.yaml","WAP-8294A2"]]},{"id":"NCBITaxon:983644","l":"","na":2,"nb":2,"a":[["TED%3AAF-G3J617-F1-model_v4_TED01","TED highly-symmetric fold AF-G3J617-F1-model_v4_TED01"],["TED%3AAF-G3JAX2-F1-model_v4_TED03","TED novel fold AF-G3JAX2-F1-model_v4_TED03"]],"b":[["unclassified/beauveriolide-i.yaml","beauveriolide I"],["unclassified/beauveriolide-iii.yaml","beauveriolide III"]]},{"id":"UniProt:P04058","l":"","na":2,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_03S","03S-binding site"],["proteintraitsmech%3ABIOLIP_AA7","AA7-binding site"]],"b":[["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/physostigmine.yaml","physostigmine"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":297,"nb":1,"a":[["IDPO%3A0000002","disorder"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000045","phosphorylation display site"],["IDPO%3A0000059","self-inhibition"],["Pfam%3APF17837","4'-phosphopantetheinyl transferase N-terminal domain"]],"b":[["unclassified/mycobactin.yaml","mycobactin"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":1,"nb":116,"a":[["Pfam%3APF03437","BtpA family"]],"b":[["alkaloids/altemicidin.yaml","altemicidin"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"],["alkaloids/aurachin-ss.yaml","aurachin SS"],["alkaloids/berninamycin-j.yaml","berninamycin J"],["alkaloids/berninamycin-k.yaml","berninamycin K"]]},{"id":"UniProt:P35222","l":"","na":91,"nb":1,"a":[["ComplexPortal%3ACPX-316","beta1-catenin - LEF1 complex"],["ComplexPortal%3ACPX-12016","-"],["ComplexPortal%3ACPX-14403","-"],["ComplexPortal%3ACPX-16015","-"],["ComplexPortal%3ACPX-16618","-"],["ComplexPortal%3ACPX-17387","-"]],"b":[["alkaloids/toxoflavin.yaml","toxoflavin"]]},{"id":"NCBITaxon:199310","l":"Escherichia coli O6:H1 (strain CFT073 / ATCC 700928 / UPEC)","na":89,"nb":1,"a":[["Pfam%3APF12343","DeaD helicase C-terminal disordered region"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF08298","PrkA AAA domain"],["Pfam%3APF17425","Arylsulfotransferase Ig-like domain"],["Pfam%3APF02611","CDP-diacylglycerol pyrophosphatase"],["Pfam%3APF10729","Cell division activator CedA"]],"b":[["unclassified/ape-ec.yaml","APE Ec"]]},{"id":"NCBITaxon:1883427","l":"Actinomycetia bacterium","na":78,"nb":1,"a":[["TED%3AAF-A0A2E4AXX0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2E4AXX0-F1-model_v4_TED04"],["TED%3AAF-A0A2W4J8T7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W4J8T7-F1-model_v4_TED01"],["TED%3AAF-A0A350SGF5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A350SGF5-F1-model_v4_TED03"],["TED%3AAF-A0A350XSJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A350XSJ9-F1-model_v4_TED01"],["TED%3AAF-A0A3A4PC78-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A4PC78-F1-model_v4_TED01"],["TED%3AAF-A0A3A4PG42-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A4PG42-F1-model_v4_TED01"]],"b":[["polyketides/anthrabenzoxocinone.yaml","anthrabenzoxocinone"]]},{"id":"UniProt:Q13547","l":"","na":66,"nb":1,"a":[["ComplexPortal%3ACPX-12294","-"],["ComplexPortal%3ACPX-13515","-"],["ComplexPortal%3ACPX-14890","-"],["ComplexPortal%3ACPX-15325","-"],["ComplexPortal%3ACPX-18342","-"],["ComplexPortal%3ACPX-20908","-"]],"b":[["amino_acids_and_peptides/apicidin.yaml","apicidin"]]},{"id":"UniProt:P42345","l":"","na":62,"nb":1,"a":[["ComplexPortal%3ACPX-11469","-"],["ComplexPortal%3ACPX-12119","-"],["ComplexPortal%3ACPX-12694","-"],["ComplexPortal%3ACPX-13423","-"],["ComplexPortal%3ACPX-15386","-"],["ComplexPortal%3ACPX-15693","-"]],"b":[["polyketides/sirolimus.yaml","sirolimus"]]},{"id":"UniProt:P21802","l":"","na":52,"nb":1,"a":[["ComplexPortal%3ACPX-11311","-"],["ComplexPortal%3ACPX-13057","-"],["ComplexPortal%3ACPX-19802","-"],["ComplexPortal%3ACPX-20298","-"],["ComplexPortal%3ACPX-21995","-"],["ComplexPortal%3ACPX-24266","-"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:2026763","l":"Myxococcales bacterium","na":51,"nb":1,"a":[["TED%3AAF-A0A2E5HQQ8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E5HQQ8-F1-model_v4_TED02"],["TED%3AAF-A0A2E6VRH0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E6VRH0-F1-model_v4_TED01"],["TED%3AAF-A0A2E6VU88-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E6VU88-F1-model_v4_TED01"],["TED%3AAF-A0A2F0AQB0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2F0AQB0-F1-model_v4_TED03"],["TED%3AAF-A0A2F0AS25-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2F0AS25-F1-model_v4_TED01"],["TED%3AAF-A0A356T3G6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A356T3G6-F1-model_v4_TED01"]],"b":[["polyketides/sorangipyranone.yaml","Sorangipyranone"]]},{"id":"UniProt:O15379","l":"","na":49,"nb":1,"a":[["ComplexPortal%3ACPX-11143","-"],["ComplexPortal%3ACPX-11157","-"],["ComplexPortal%3ACPX-15289","-"],["ComplexPortal%3ACPX-16349","-"],["ComplexPortal%3ACPX-18525","-"],["ComplexPortal%3ACPX-22988","-"]],"b":[["amino_acids_and_peptides/apicidin.yaml","apicidin"]]},{"id":"UniProt:P49841","l":"","na":49,"nb":1,"a":[["ComplexPortal%3ACPX-109","Beta-catenin destruction core complex, APC-AXIN1-GSK3B variant"],["ComplexPortal%3ACPX-439","Beta-catenin destruction core complex, APC-AXIN2-GSK3B variant"],["ComplexPortal%3ACPX-99","Beta-catenin destruction core complex, APC2-AXIN1-GSK3B variant"],["ComplexPortal%3ACPX-440","Beta-catenin destruction core complex, APC2-AXIN2-GSK3B variant"],["ComplexPortal%3ACPX-14345","-"],["ComplexPortal%3ACPX-16629","-"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:9031","l":"Gallus gallus","na":48,"nb":1,"a":[["Pfam%3APF16620","Unstructured linker between I-set domains 2 and 3 on MYLCK"],["Pfam%3APF15512","Chromatin assembly factor complex 1 subunit p60, C-terminal"],["Pfam%3APF18130","ATP-grasp N-terminal domain"],["Pfam%3APF15632","ATP-grasp in the biosynthetic pathway with Ter operon"],["Pfam%3APF01382","Avidin family"],["Pfam%3APF08072","BDHCT (NUC031) domain"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P08684","l":"","na":47,"nb":1,"a":[["EC%3A1.14.14.55","quinine 3-monooxygenase"],["EC%3A1.14.14.56","1,8-cineole 2-exo-monooxygenase"],["EC%3A1.14.14.73","albendazole monooxygenase (sufoxide-forming)"],["RHEA%3A32895","1,8-cineole + reduced [NADPH--hemoprotein reductase] + O2 = 2-exo-hydroxy-1,8-cineole + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A20149","quinine + reduced [NADPH--hemoprotein reductase] + O2 = 3-hydroxyquinine + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["ComplexPortal%3ACPX-11243","-"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"UniProt:P0A8V2","l":"","na":47,"nb":1,"a":[["ComplexPortal%3ACPX-4888","DNA-directed RNA polymerase holoenzyme complex, Sigma fecI variant"],["ComplexPortal%3ACPX-4884","DNA-directed RNA polymerase holoenzyme complex, Sigma54 variant"],["ComplexPortal%3ACPX-4881","DNA-directed RNA polymerase holoenzyme complex, Sigma70 variant"],["ComplexPortal%3ACPX-4885","DNA-directed RNA polymerase holoenzyme complex, SigmaE variant"],["ComplexPortal%3ACPX-4886","DNA-directed RNA polymerase holoenzyme complex, SigmaF variant"],["ComplexPortal%3ACPX-4887","DNA-directed RNA polymerase holoenzyme complex, SigmaH variant"]],"b":[["polyketides/rifamycin-sv.yaml","rifamycin SV"]]},{"id":"UniProt:P31749","l":"","na":46,"nb":1,"a":[["ComplexPortal%3ACPX-22352","-"],["ComplexPortal%3ACPX-24286","-"],["GO%3A0099104","potassium channel activator activity"],["GO%3A1904841","TORC2 complex binding"],["GO%3A0006924","activation-induced cell death of T cells"],["GO%3A0043276","anoikis"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P07900","l":"","na":45,"nb":1,"a":[["ComplexPortal%3ACPX-12937","-"],["ComplexPortal%3ACPX-14751","-"],["ComplexPortal%3ACPX-15245","-"],["ComplexPortal%3ACPX-17900","-"],["ComplexPortal%3ACPX-18328","-"],["ComplexPortal%3ACPX-19396","-"]],"b":[["polyketides/radicicol.yaml","radicicol"]]},{"id":"NCBITaxon:243277","l":"Vibrio cholerae serotype O1 (strain ATCC 39315 / El Tor Inaba N16961)","na":44,"nb":1,"a":[["IDPO%3A0000011","disorder to order"],["IDPO%3A0000014","order to disorder"],["Pfam%3APF16671","Actin cross-linking domain"],["Pfam%3APF00842","Alanine racemase, C-terminal domain"],["Pfam%3APF06228","Haem utilisation ChuX/HutX"],["Pfam%3APF19425","Csd3 second domain"]],"b":[["alkaloids/vibriobactin-2.yaml","vibriobactin"]]},{"id":"UniProt:P25054","l":"","na":44,"nb":1,"a":[["ComplexPortal%3ACPX-107","Beta-catenin destruction core complex, APC-AXIN1-GSK3A variant"],["ComplexPortal%3ACPX-109","Beta-catenin destruction core complex, APC-AXIN1-GSK3B variant"],["ComplexPortal%3ACPX-441","Beta-catenin destruction core complex, APC-AXIN2-GSK3A variant"],["ComplexPortal%3ACPX-439","Beta-catenin destruction core complex, APC-AXIN2-GSK3B variant"],["ComplexPortal%3ACPX-12016","-"],["ComplexPortal%3ACPX-14403","-"]],"b":[["alkaloids/toxoflavin.yaml","toxoflavin"]]},{"id":"UniProt:P09917","l":"","na":42,"nb":1,"a":[["EC%3A1.13.11.34","arachidonate 5-lipoxygenase"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"],["RHEA%3A32307","(5Z,8Z,11Z,14Z)-eicosatetraenoate + O2 = leukotriene A4 + H2O"],["ComplexPortal%3ACPX-15832","-"],["ComplexPortal%3ACPX-18202","-"],["ComplexPortal%3ACPX-20365","-"]],"b":[["alkaloids/myxochelin-a.yaml","myxochelin A"]]},{"id":"UniProt:Q9UBN7","l":"","na":38,"nb":1,"a":[["EC%3A3.5.1.-","In linear amides"],["ComplexPortal%3ACPX-11040","-"],["ComplexPortal%3ACPX-17348","-"],["ComplexPortal%3ACPX-19115","-"],["ComplexPortal%3ACPX-25368","-"],["ComplexPortal%3ACPX-25485","-"]],"b":[["amino_acids_and_peptides/apicidin.yaml","apicidin"]]},{"id":"UniProt:Q04771","l":"","na":37,"nb":1,"a":[["ComplexPortal%3ACPX-11394","-"],["ComplexPortal%3ACPX-11893","-"],["ComplexPortal%3ACPX-14842","-"],["ComplexPortal%3ACPX-15036","-"],["ComplexPortal%3ACPX-17430","-"],["ComplexPortal%3ACPX-18135","-"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P06493","l":"","na":36,"nb":1,"a":[["ComplexPortal%3ACPX-10673","-"],["ComplexPortal%3ACPX-11851","-"],["ComplexPortal%3ACPX-13027","-"],["ComplexPortal%3ACPX-15730","-"],["ComplexPortal%3ACPX-19796","-"],["ComplexPortal%3ACPX-21602","-"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P18031","l":"","na":35,"nb":1,"a":[["ComplexPortal%3ACPX-26130","-"],["GO%3A0098554","cytoplasmic side of endoplasmic reticulum membrane"],["GO%3A0031904","endosome lumen"],["GO%3A0030061","mitochondrial crista"],["GO%3A0097443","sorting endosome"],["GO%3A0046875","ephrin receptor binding"]],"b":[["terpenoids/lupeol.yaml","lupeol"]]},{"id":"UniProt:P09619","l":"","na":34,"nb":1,"a":[["ComplexPortal%3ACPX-11721","-"],["ComplexPortal%3ACPX-18342","-"],["ComplexPortal%3ACPX-18512","-"],["ComplexPortal%3ACPX-22260","-"],["ComplexPortal%3ACPX-25686","-"],["ComplexPortal%3ACPX-2892","PDGF receptor alpha-beta - PDGF-AB complex"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P62942","l":"","na":33,"nb":1,"a":[["ComplexPortal%3ACPX-15625","-"],["ComplexPortal%3ACPX-17368","-"],["GO%3A0098562","cytoplasmic side of membrane"],["GO%3A1990425","ryanodine receptor complex"],["GO%3A0016529","sarcoplasmic reticulum"],["GO%3A0033017","sarcoplasmic reticulum membrane"]],"b":[["polyketides/sirolimus.yaml","sirolimus"]]},{"id":"UniProt:P07711","l":"","na":31,"nb":1,"a":[["ComplexPortal%3ACPX-10815","-"],["ComplexPortal%3ACPX-12146","-"],["ComplexPortal%3ACPX-12243","-"],["ComplexPortal%3ACPX-18379","-"],["ComplexPortal%3ACPX-23732","-"],["ComplexPortal%3ACPX-23795","-"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"UniProt:P08238","l":"","na":31,"nb":1,"a":[["ComplexPortal%3ACPX-12937","-"],["ComplexPortal%3ACPX-15245","-"],["ComplexPortal%3ACPX-17900","-"],["ComplexPortal%3ACPX-18328","-"],["ComplexPortal%3ACPX-19396","-"],["ComplexPortal%3ACPX-23773","-"]],"b":[["polyketides/radicicol.yaml","radicicol"]]},{"id":"UniProt:P16234","l":"","na":30,"nb":1,"a":[["ComplexPortal%3ACPX-11080","-"],["ComplexPortal%3ACPX-11911","-"],["ComplexPortal%3ACPX-21238","-"],["ComplexPortal%3ACPX-23986","-"],["ComplexPortal%3ACPX-25630","-"],["ComplexPortal%3ACPX-2892","PDGF receptor alpha-beta - PDGF-AB complex"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"]]},{"id":"UniProt:P36897","l":"","na":30,"nb":1,"a":[["ComplexPortal%3ACPX-529","TGF-beta-1-TGFR complex"],["ComplexPortal%3ACPX-834","TGF-beta-2-TGFR complex"],["ComplexPortal%3ACPX-2544","TGF-beta-3-TGFR complex"],["GO%3A0048179","activin receptor complex"],["GO%3A0048185","activin binding"],["GO%3A0016361","activin receptor activity, type I"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":29,"nb":1,"a":[["Pfam%3APF09156","Anthrax toxin lethal factor, middle domain"],["Pfam%3APF08401","N-terminal domain of anti-restriction factor ArdC"],["Pfam%3APF07737","Anthrax toxin lethal factor, N- and C-terminal domain"],["Pfam%3APF27053","Bacillus anthracis plasmid pXO2 protein 26"],["Pfam%3APF13205","Bacterial Ig-like domain"],["Pfam%3APF17475","Clostridial binary toxin B/anthrax toxin PA domain 2"]],"b":[["alkaloids/petrobactin.yaml","petrobactin"]]},{"id":"UniProt:P00747","l":"","na":29,"nb":1,"a":[["ComplexPortal%3ACPX-11986","-"],["ComplexPortal%3ACPX-14765","-"],["ComplexPortal%3ACPX-15280","-"],["ComplexPortal%3ACPX-16758","-"],["ComplexPortal%3ACPX-17221","-"],["ComplexPortal%3ACPX-19201","-"]],"b":[["alkaloids/congocidine.yaml","congocidine"]]},{"id":"CHEBI:57743","l":"","na":28,"nb":1,"a":[["EC%3A1.14.13.39","nitric-oxide synthase (NADPH)"],["EC%3A1.14.14.47","nitric-oxide synthase (flavodoxin)"],["EC%3A2.1.3.3","ornithine carbamoyltransferase"],["EC%3A3.5.1.20","citrullinase"],["EC%3A3.5.3.18","dimethylargininase"],["EC%3A3.5.3.6","arginine deiminase"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"UniProt:P00156","l":"","na":27,"nb":1,"a":[["ComplexPortal%3ACPX-13288","-"],["ComplexPortal%3ACPX-13705","-"],["ComplexPortal%3ACPX-14252","-"],["ComplexPortal%3ACPX-15275","-"],["ComplexPortal%3ACPX-15481","-"],["ComplexPortal%3ACPX-19909","-"]],"b":[["unclassified/antimycin-a1b.yaml","antimycin A1B"]]},{"id":"UniProt:P56524","l":"","na":27,"nb":1,"a":[["ComplexPortal%3ACPX-10863","-"],["ComplexPortal%3ACPX-10978","-"],["ComplexPortal%3ACPX-11176","-"],["ComplexPortal%3ACPX-11281","-"],["ComplexPortal%3ACPX-12671","-"],["ComplexPortal%3ACPX-12759","-"]],"b":[["amino_acids_and_peptides/apicidin.yaml","apicidin"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":26,"nb":1,"a":[["Pfam%3APF27270","Alr1449"],["Pfam%3APF27301","Alr2735 N-terminal domain"],["Pfam%3APF27288","Alr2735"],["Pfam%3APF21571","Arginine dihydrolase ArgZ-like, C-terminal, first region"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF13205","Bacterial Ig-like domain"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"]]},{"id":"UniProt:P48736","l":"","na":26,"nb":1,"a":[["ComplexPortal%3ACPX-5986","Phosphatidylinositol 3-kinase complex class IB, p110gamma/p101"],["ComplexPortal%3ACPX-5987","Phosphatidylinositol 3-kinase complex class IB, p110gamma/p87"],["GO%3A0005943","phosphatidylinositol 3-kinase complex, class IA"],["GO%3A0005944","phosphatidylinositol 3-kinase complex, class IB"],["GO%3A0046934","1-phosphatidylinositol-4,5-bisphosphate 3-kinase activity"],["GO%3A0035005","1-phosphatidylinositol-4-phosphate 3-kinase activity"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P53350","l":"","na":26,"nb":1,"a":[["ComplexPortal%3ACPX-14028","-"],["ComplexPortal%3ACPX-17085","-"],["ComplexPortal%3ACPX-19451","-"],["GO%3A0010997","anaphase-promoting complex binding"],["GO%3A0097681","double-strand break repair via alternative nonhomologous end joining"],["GO%3A0048313","Golgi inheritance"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P29466","l":"","na":25,"nb":1,"a":[["ComplexPortal%3ACPX-4142","AIM2 inflammasome"],["ComplexPortal%3ACPX-10594","-"],["ComplexPortal%3ACPX-13219","-"],["ComplexPortal%3ACPX-13566","-"],["ComplexPortal%3ACPX-21295","-"],["ComplexPortal%3ACPX-21498","-"]],"b":[["alkaloids/toxoflavin.yaml","toxoflavin"]]},{"id":"UniProt:Q03181","l":"","na":25,"nb":1,"a":[["ComplexPortal%3ACPX-12990","-"],["ComplexPortal%3ACPX-17750","-"],["ComplexPortal%3ACPX-18139","-"],["ComplexPortal%3ACPX-19679","-"],["ComplexPortal%3ACPX-24893","-"],["GO%3A0070539","linoleic acid binding"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"NCBITaxon:2925","l":"Alexandrium catenella","na":24,"nb":1,"a":[["TED%3AAF-A0A7S1KY03-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1KY03-F1-model_v4_TED01"],["TED%3AAF-A0A7S1L1S9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S1L1S9-F1-model_v4_TED02"],["TED%3AAF-A0A7S1ML43-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1ML43-F1-model_v4_TED01"],["TED%3AAF-A0A7S1PQ85-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1PQ85-F1-model_v4_TED01"],["TED%3AAF-A0A7S1QA17-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A7S1QA17-F1-model_v4_TED05"],["TED%3AAF-A0A7S1QL55-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S1QL55-F1-model_v4_TED03"]],"b":[["alkaloids/saxitoxin.yaml","saxitoxin"]]},{"id":"NCBITaxon:73915","l":"Pyrodinium bahamense","na":24,"nb":1,"a":[["TED%3AAF-A0A7S0A4R5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0A4R5-F1-model_v4_TED01"],["TED%3AAF-A0A7S0AC67-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0AC67-F1-model_v4_TED01"],["TED%3AAF-A0A7S0APM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0APM3-F1-model_v4_TED01"],["TED%3AAF-A0A7S0AQ53-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0AQ53-F1-model_v4_TED01"],["TED%3AAF-A0A7S0AX35-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0AX35-F1-model_v4_TED01"],["TED%3AAF-A0A7S0B705-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S0B705-F1-model_v4_TED02"]],"b":[["alkaloids/saxitoxin.yaml","saxitoxin"]]},{"id":"UniProt:O00444","l":"","na":24,"nb":1,"a":[["ComplexPortal%3ACPX-1299","CEP152-PLK4 complex"],["ComplexPortal%3ACPX-1161","CEP192-PLK4 complex"],["GO%3A0098536","deuterosome"],["GO%3A0120098","procentriole"],["GO%3A0098535","de novo centriole assembly involved in multi-ciliated epithelial cell differentiation"],["GO%3A0046601","positive regulation of centriole replication"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P23284","l":"","na":24,"nb":1,"a":[["ComplexPortal%3ACPX-11676","-"],["ComplexPortal%3ACPX-12341","-"],["ComplexPortal%3ACPX-12626","-"],["ComplexPortal%3ACPX-13324","-"],["ComplexPortal%3ACPX-14387","-"],["ComplexPortal%3ACPX-17992","-"]],"b":[["amino_acids_and_peptides/cyclosporin-a.yaml","cyclosporin A"]]},{"id":"NCBITaxon:40559","l":"Botrytis cinerea","na":1,"nb":23,"a":[["Pfam%3APF08883","Dopa 4,5-dioxygenase family"]],"b":[["terpenoids/1-epibotrydial.yaml","1-epibotrydial"],["terpenoids/10-dehydroxy-dihydrobotrydialone.yaml","10-dehydroxy dihydrobotrydialone"],["terpenoids/10-epi-dihydrobotrydial.yaml","10-epi-dihydrobotrydial"],["terpenoids/10-oxo-dihydrobotrydial.yaml","10-Oxo-dihydrobotrydial"],["terpenoids/10-oxodehydrodihydrobotrydial.yaml","10-Oxodehydrodihydrobotrydial"],["terpenoids/10-oxodihydrobotry-1-9-4-5-diendial.yaml","10-Oxodihydrobotry-1(9),4(5)-diendial"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":23,"nb":1,"a":[["Pfam%3APF09255","Caf1 Capsule antigen"],["Pfam%3APF02611","CDP-diacylglycerol pyrophosphatase"],["Pfam%3APF07411","Domain of unknown function (DUF1508)"],["Pfam%3APF05171","Haemin-degrading HemS.ChuX domain"],["Pfam%3APF21500","DNA polymerase III subunit delta', AAA+ ATPase lid domain"],["Pfam%3APF11004","3-deoxy-D-manno-oct-2-ulosonic acid (Kdo) hydroxylase"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"UniProt:O00763","l":"","na":23,"nb":1,"a":[["ComplexPortal%3ACPX-12392","-"],["ComplexPortal%3ACPX-13685","-"],["ComplexPortal%3ACPX-15849","-"],["ComplexPortal%3ACPX-19952","-"],["ComplexPortal%3ACPX-20498","-"],["ComplexPortal%3ACPX-20638","-"]],"b":[["polyketides/soraphen-a.yaml","soraphen A"]]},{"id":"UniProt:P12830","l":"","na":23,"nb":1,"a":[["ComplexPortal%3ACPX-12016","-"],["ComplexPortal%3ACPX-14403","-"],["ComplexPortal%3ACPX-16015","-"],["ComplexPortal%3ACPX-16575","-"],["ComplexPortal%3ACPX-17484","-"],["ComplexPortal%3ACPX-23131","-"]],"b":[["alkaloids/toxoflavin.yaml","toxoflavin"]]},{"id":"UniProt:P24385","l":"","na":23,"nb":1,"a":[["ComplexPortal%3ACPX-10673","-"],["ComplexPortal%3ACPX-18871","-"],["ComplexPortal%3ACPX-20404","-"],["ComplexPortal%3ACPX-21602","-"],["ComplexPortal%3ACPX-26221","-"],["ComplexPortal%3ACPX-26273","-"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"]]},{"id":"UniProt:Q15119","l":"","na":23,"nb":1,"a":[["ComplexPortal%3ACPX-11733","-"],["ComplexPortal%3ACPX-12952","-"],["ComplexPortal%3ACPX-15696","-"],["ComplexPortal%3ACPX-16639","-"],["ComplexPortal%3ACPX-16656","-"],["ComplexPortal%3ACPX-17227","-"]],"b":[["polyketides/radicicol.yaml","radicicol"]]},{"id":"CHEBI:27547","l":"zeaxanthin","na":22,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_27547","requires zeaxanthin"],["EC%3A1.13.11.65","carotenoid isomerooxygenase"],["EC%3A1.13.11.84","crocetin dialdehyde synthase"],["EC%3A1.14.15.21","zeaxanthin epoxidase"],["EC%3A1.14.15.24","beta-carotene 3-hydroxylase"],["EC%3A1.14.99.64","zeaxanthin 4-ketolase"]],"b":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]]},{"id":"NCBITaxon:394","l":"Sinorhizobium fredii (strain NBRC 101917 / NGR234)","na":22,"nb":1,"a":[["Pfam%3APF17841","BID domain of Bartonella effector protein (Bep)"],["Pfam%3APF04255","Protein of unknown function (DUF433)"],["Pfam%3APF18480","Domain of unknown function (DUF5615)"],["Pfam%3APF20008","Domain of unknown function (DUF6429)"],["Pfam%3APF24134","Domain of unknown function (DUF7401)"],["Pfam%3APF18728","AbiV"]],"b":[["terpenoids/gibberellin.yaml","gibberellin"]]},{"id":"UniProt:P42858","l":"","na":22,"nb":1,"a":[["ComplexPortal%3ACPX-25173","-"],["ComplexPortal%3ACPX-11549","Huntingtin-HAP40 endosomal complex"],["GO%3A0005522","profilin binding"],["GO%3A1905337","positive regulation of aggrephagy"],["GO%3A1905291","positive regulation of CAMKK-AMPK signaling cascade"],["GO%3A1904504","positive regulation of lipophagy"]],"b":[["unclassified/antimycin-a.yaml","antimycin A"]]},{"id":"UniProt:P68400","l":"","na":22,"nb":1,"a":[["ComplexPortal%3ACPX-2437","Casein kinase II complex, CSNK2A1-CNSK2A2 variant"],["ComplexPortal%3ACPX-914","Casein kinase II complex, CSNK2A1 variant"],["ComplexPortal%3ACPX-11941","-"],["ComplexPortal%3ACPX-12009","-"],["ComplexPortal%3ACPX-12888","-"],["ComplexPortal%3ACPX-14603","-"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"UniProt:Q24451","l":"","na":22,"nb":1,"a":[["GO%3A0015923","mannosidase activity"],["GO%3A0004572","mannosyl-oligosaccharide 1,3-1,6-alpha-mannosidase activity"],["GO%3A0035010","encapsulation of foreign target"],["GO%3A1904381","Golgi apparatus N-glycan mannose trimming"],["GO%3A0016063","rhodopsin biosynthetic process"],["CDD%3Acd10809","GH38N_AMII_GMII_SfManIII_like"]],"b":[["alkaloids/swainsonine.yaml","swainsonine"]]},{"id":"NCBITaxon:243265","l":"Photorhabdus laumondii subsp. laumondii TTO1","na":1,"nb":21,"a":[["Pfam%3APF07927","HicA toxin of bacterial toxin-antitoxin,"]],"b":[["amino_acids_and_peptides/gamexpeptide-c.yaml","gamexpeptide C"],["amino_acids_and_peptides/luminmycin-a.yaml","luminmycin A"],["amino_acids_and_peptides/ririwpeptide-a.yaml","ririwpeptide A"],["amino_acids_and_peptides/ririwpeptide-b.yaml","ririwpeptide B"],["carbohydrates/oligosaccharide-1-glcnac-1-4-1-6-anhydro-glcnac.yaml","oligosaccharide 1 (GlcNAc-β(1-4)-1,6-anhydro-β-GlcNAc)"],["carbohydrates/oligosaccharide-2-glcnac-1-4-glcnac-1-4-1-6-anhydro-glcnac.yaml","oligosaccharide 2 (GlcNAc-β(1-4)-GlcNAc-β(1-4)-1,6-anhydro-β-GlcNAc)"]]},{"id":"UniProt:O14757","l":"","na":21,"nb":1,"a":[["ComplexPortal%3ACPX-26328","Chromatin regulation assembly"],["ComplexPortal%3ACPX-10797","-"],["ComplexPortal%3ACPX-11546","-"],["ComplexPortal%3ACPX-14608","-"],["ComplexPortal%3ACPX-15285","-"],["ComplexPortal%3ACPX-15872","-"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P00749","l":"","na":21,"nb":1,"a":[["EC%3A3.4.21.73","u-plasminogen activator"],["ComplexPortal%3ACPX-483","uPA-PAI-1 complex"],["ComplexPortal%3ACPX-487","uPA-uPAR complex"],["ComplexPortal%3ACPX-501","uPA-uPAR-vitronectin complex"],["GO%3A1905370","serine-type endopeptidase complex"],["GO%3A0010757","negative regulation of plasminogen activation"]],"b":[["alkaloids/congocidine.yaml","congocidine"]]},{"id":"UniProt:P12268","l":"","na":21,"nb":1,"a":[["ComplexPortal%3ACPX-10668","-"],["ComplexPortal%3ACPX-16204","-"],["ComplexPortal%3ACPX-19278","-"],["ComplexPortal%3ACPX-20073","-"],["ComplexPortal%3ACPX-23201","-"],["ComplexPortal%3ACPX-24150","-"]],"b":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"]]},{"id":"UniProt:P20839","l":"","na":21,"nb":1,"a":[["ComplexPortal%3ACPX-11065","-"],["ComplexPortal%3ACPX-13142","-"],["ComplexPortal%3ACPX-14906","-"],["ComplexPortal%3ACPX-14944","-"],["ComplexPortal%3ACPX-18455","-"],["ComplexPortal%3ACPX-19278","-"]],"b":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"]]},{"id":"UniProt:P49760","l":"","na":21,"nb":1,"a":[["ComplexPortal%3ACPX-11057","-"],["ComplexPortal%3ACPX-12352","-"],["ComplexPortal%3ACPX-13888","-"],["ComplexPortal%3ACPX-15887","-"],["ComplexPortal%3ACPX-18111","-"],["ComplexPortal%3ACPX-18764","-"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P00918","l":"","na":20,"nb":1,"a":[["RHEA%3A10748","hydrogencarbonate + H(+) = CO2 + H2O"],["ComplexPortal%3ACPX-14819","-"],["ComplexPortal%3ACPX-22076","-"],["ComplexPortal%3ACPX-23290","-"],["ComplexPortal%3ACPX-24928","-"],["GO%3A0004089","carbonate dehydratase activity"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:P03372","l":"","na":20,"nb":1,"a":[["ComplexPortal%3ACPX-19787","-"],["ComplexPortal%3ACPX-21796","-"],["ComplexPortal%3ACPX-5156","ERalpha-NCOA2 activated estrogen receptor complex"],["GO%3A0034056","estrogen response element binding"],["GO%3A0030284","nuclear estrogen receptor activity"],["GO%3A0030520","estrogen receptor signaling pathway"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:P11362","l":"","na":20,"nb":1,"a":[["ComplexPortal%3ACPX-13057","-"],["ComplexPortal%3ACPX-18540","-"],["ComplexPortal%3ACPX-19802","-"],["ComplexPortal%3ACPX-21241","-"],["ComplexPortal%3ACPX-21995","-"],["GO%3A0005007","fibroblast growth factor receptor activity"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:Q16706","l":"","na":20,"nb":1,"a":[["EC%3A3.2.1.114","mannosyl-oligosaccharide 1,3-1,6-alpha-mannosidase"],["RHEA%3A56052","N(4)-{beta-D-GlcNAc-(1->2)-alpha-D-Man-(1->3)-[alpha-D-Man-(1->3)-[alpha-D-Man-(1->6)]-alpha-D-Man-(1->6)]-beta-D-Man-(1->4)-beta-D-GlcNAc-(1->4)-beta-D-GlcNAc}-L-asparaginyl-[protein] + 2 H2O = 2 alpha-D-mannopyranose + an N(4)-{beta-D-GlcNAc-(1->2)-alpha-D-Man-(1->3)-[alpha-D-Man-(1->6)]-beta-D-Man-(1->4)-beta-D-GlcNAc-(1->4)-beta-D-GlcNAc}-L-asparaginyl-[protein]"],["ComplexPortal%3ACPX-12202","-"],["ComplexPortal%3ACPX-15107","-"],["ComplexPortal%3ACPX-22647","-"],["GO%3A0016799","hydrolase activity, hydrolyzing N-glycosyl compounds"]],"b":[["alkaloids/swainsonine.yaml","swainsonine"]]},{"id":"UniProt:P07333","l":"","na":19,"nb":1,"a":[["ComplexPortal%3ACPX-22260","-"],["ComplexPortal%3ACPX-10333","IL34-CSF1R complex"],["ComplexPortal%3ACPX-25717","Macrophage colony-stimulating factor-1 receptor-ligand complex"],["GO%3A1990682","CSF1-CSF1R complex"],["GO%3A0005011","macrophage colony-stimulating factor receptor activity"],["GO%3A0036006","cellular response to macrophage colony-stimulating factor stimulus"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P35968","l":"","na":19,"nb":1,"a":[["GO%3A0097443","sorting endosome"],["GO%3A0038085","vascular endothelial growth factor binding"],["GO%3A0005021","vascular endothelial growth factor receptor activity"],["GO%3A1904881","cellular response to hydrogen sulfide"],["GO%3A0003157","endocardium development"],["GO%3A0141150","positive regulation of nitric oxide-cGMP mediated signal transduction"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:Q96QE3","l":"","na":19,"nb":1,"a":[["ComplexPortal%3ACPX-11703","-"],["ComplexPortal%3ACPX-13085","-"],["ComplexPortal%3ACPX-14089","-"],["ComplexPortal%3ACPX-14271","-"],["ComplexPortal%3ACPX-16564","-"],["ComplexPortal%3ACPX-17722","-"]],"b":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]]},{"id":"UniProt:Q05513","l":"","na":18,"nb":1,"a":[["ComplexPortal%3ACPX-10855","-"],["ComplexPortal%3ACPX-16356","-"],["ComplexPortal%3ACPX-18654","-"],["ComplexPortal%3ACPX-18746","-"],["ComplexPortal%3ACPX-22762","-"],["ComplexPortal%3ACPX-23337","-"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:Q12809","l":"","na":18,"nb":1,"a":[["ComplexPortal%3ACPX-12423","-"],["ComplexPortal%3ACPX-16470","-"],["ComplexPortal%3ACPX-16985","-"],["ComplexPortal%3ACPX-21446","-"],["ComplexPortal%3ACPX-22668","-"],["ComplexPortal%3ACPX-3072","Voltage-gated potassium channel complex variant 1"]],"b":[["unclassified/teixobactin.yaml","teixobactin"]]},{"id":"UniProt:O94760","l":"","na":17,"nb":1,"a":[["EC%3A3.5.3.18","dimethylargininase"],["ComplexPortal%3ACPX-11521","-"],["ComplexPortal%3ACPX-12381","-"],["ComplexPortal%3ACPX-13858","-"],["ComplexPortal%3ACPX-15777","-"],["ComplexPortal%3ACPX-18623","-"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"UniProt:P24864","l":"","na":17,"nb":1,"a":[["ComplexPortal%3ACPX-10673","-"],["ComplexPortal%3ACPX-11851","-"],["ComplexPortal%3ACPX-13027","-"],["ComplexPortal%3ACPX-19796","-"],["ComplexPortal%3ACPX-20481","-"],["ComplexPortal%3ACPX-21602","-"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"]]},{"id":"CHEBI:17579","l":"β-carotene","na":16,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17579","requires β-carotene"],["EC%3A1.13.11.63","beta-carotene 15,15'-dioxygenase"],["EC%3A1.13.11.71","carotenoid-9',10'-cleaving dioxygenase"],["EC%3A1.14.15.24","beta-carotene 3-hydroxylase"],["EC%3A1.14.99.63","beta-carotene 4-ketolase"],["EC%3A5.2.1.14","beta-carotene isomerase"]],"b":[["terpenoids/carotene.yaml","β-carotene"]]},{"id":"UniProt:P01215","l":"","na":16,"nb":1,"a":[["ComplexPortal%3ACPX-748","Chorionic gonadotropin hormone complex"],["ComplexPortal%3ACPX-14986","-"],["ComplexPortal%3ACPX-16532","-"],["ComplexPortal%3ACPX-19116","-"],["ComplexPortal%3ACPX-23467","-"],["ComplexPortal%3ACPX-665","Follicle-stimulating hormone complex"]],"b":[["amino_acids_and_peptides/ditryptophenaline.yaml","(-)-ditryptophenaline"]]},{"id":"UniProt:P11086","l":"","na":16,"nb":1,"a":[["EC%3A2.1.1.28","phenylethanolamine N-methyltransferase"],["RHEA%3A25269","(R)-noradrenaline + S-adenosyl-L-methionine = (R)-adrenaline + S-adenosyl-L-homocysteine + H(+)"],["ComplexPortal%3ACPX-11076","-"],["ComplexPortal%3ACPX-14242","-"],["ComplexPortal%3ACPX-17963","-"],["ComplexPortal%3ACPX-21796","-"]],"b":[["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"UniProt:Q9H4B4","l":"","na":16,"nb":1,"a":[["GO%3A0007113","endomitotic cell cycle"],["GO%3A0090166","Golgi disassembly"],["GO%3A0044819","mitotic G1/S transition checkpoint signaling"],["GO%3A1904716","positive regulation of chaperone-mediated autophagy"],["CDD%3Acd14189","STKc_PLK3"],["CDD%3Acd13118","POLO_box_1"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:5127","l":"Fusarium fujikuroi","na":1,"nb":15,"a":[["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"]],"b":[["alkaloids/fusaric-acid.yaml","fusaric acid"],["alkaloids/fusarin-c.yaml","fusarin C"],["polyketides/bikaverin.yaml","bikaverin"],["polyketides/fujikurin-c.yaml","fujikurin C"],["polyketides/fujikurin-d.yaml","fujikurin D"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"]]},{"id":"UniProt:P11511","l":"","na":15,"nb":1,"a":[["ComplexPortal%3ACPX-11590","-"],["ComplexPortal%3ACPX-12153","-"],["ComplexPortal%3ACPX-14456","-"],["ComplexPortal%3ACPX-20752","-"],["ComplexPortal%3ACPX-20895","-"],["ComplexPortal%3ACPX-20967","-"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:P21964","l":"","na":15,"nb":1,"a":[["ComplexPortal%3ACPX-13290","-"],["ComplexPortal%3ACPX-13949","-"],["ComplexPortal%3ACPX-14233","-"],["ComplexPortal%3ACPX-14264","-"],["ComplexPortal%3ACPX-19464","-"],["ComplexPortal%3ACPX-26179","-"]],"b":[["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"UniProt:P22748","l":"","na":15,"nb":1,"a":[["ComplexPortal%3ACPX-17339","-"],["ComplexPortal%3ACPX-17919","-"],["ComplexPortal%3ACPX-18486","-"],["ComplexPortal%3ACPX-19014","-"],["ComplexPortal%3ACPX-23066","-"],["ComplexPortal%3ACPX-23243","-"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:Q02779","l":"","na":15,"nb":1,"a":[["ComplexPortal%3ACPX-10957","-"],["ComplexPortal%3ACPX-11452","-"],["ComplexPortal%3ACPX-11502","-"],["ComplexPortal%3ACPX-11859","-"],["ComplexPortal%3ACPX-13254","-"],["ComplexPortal%3ACPX-13493","-"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":14,"nb":1,"a":[["Pfam%3APF03703","Bacterial PH domain"],["Pfam%3APF01322","Cytochrome C'"],["Pfam%3APF03139","Vanadium/alternative nitrogenase delta subunit"],["Pfam%3APF09527","Putative F0F1-ATPase subunit Ca2+/Mg2+ transporter"],["Pfam%3APF03270","Protein of unknown function, DUF269"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"]],"b":[["alkaloids/molybdenum-cofactor.yaml","molybdenum cofactor"]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":1,"nb":14,"a":[["Pfam%3APF26312","Domain of unknown function (DUF8083)"]],"b":[["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/framycetin.yaml","framycetin"],["carbohydrates/neomycin-c.yaml","neomycin C"],["carbohydrates/paromomycin.yaml","paromomycin"]]},{"id":"NCBITaxon:58346","l":"Streptomyces platensis","na":1,"nb":14,"a":[["PROSITE%3APS00999","Streptomyces subtilisin-type inhibitors signature"]],"b":[["alkaloids/13-epi-dorrigocin-a.yaml","13-epi-dorrigocin A"],["alkaloids/17-hydroxy-8-desmethoxy-isomigrastatin.yaml","17-hydroxy-8-desmethoxy-isomigrastatin"],["alkaloids/dorrigocin-a.yaml","dorrigocin A"],["alkaloids/dorrigocin-b.yaml","dorrigocin B"],["alkaloids/iso-migrastatin.yaml","iso-migrastatin"],["alkaloids/staurosporine.yaml","staurosporine"]]},{"id":"NCBITaxon:9986","l":"Oryctolagus cuniculus","na":14,"nb":1,"a":[["IDPO%3A0000018","disorder to molten globule"],["IDPO%3A0000023","pre-molten globule to molten globule"],["Pfam%3APF27603","AKAP9-like coiled-coil region"],["Pfam%3APF17860","RK-1-like defensin"],["Pfam%3APF14965","Negative regulator of p53/TP53"],["PROSITE%3APS00328","HCP repeats signature"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P27169","l":"","na":14,"nb":1,"a":[["ComplexPortal%3ACPX-10649","-"],["ComplexPortal%3ACPX-12297","-"],["ComplexPortal%3ACPX-16876","-"],["ComplexPortal%3ACPX-25382","-"],["GO%3A0102007","acyl-L-homoserine-lactone lactonohydrolase activity"],["GO%3A0004063","aryldialkylphosphatase activity"]],"b":[["carbohydrates/lincomycin.yaml","lincomycin"]]},{"id":"UniProt:P80192","l":"","na":14,"nb":1,"a":[["ComplexPortal%3ACPX-10957","-"],["ComplexPortal%3ACPX-11452","-"],["ComplexPortal%3ACPX-11502","-"],["ComplexPortal%3ACPX-13254","-"],["ComplexPortal%3ACPX-13493","-"],["ComplexPortal%3ACPX-14473","-"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"]]},{"id":"UniProt:Q9NYY3","l":"","na":14,"nb":1,"a":[["ComplexPortal%3ACPX-18657","-"],["GO%3A0071866","negative regulation of apoptotic process in bone marrow cell"],["CDD%3Acd14188","STKc_PLK2"],["CDD%3Acd13118","POLO_box_1"],["CDD%3Acd13117","POLO_box_2"],["InterPro%3AIPR033701","First polo-box domain"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":13,"nb":1,"a":[["Pfam%3APF07832","Cfr10I/Bse634I restriction endonuclease"],["Pfam%3APF22348","Colicin-A N-terminal domain"],["Pfam%3APF01024","Colicin pore forming domain"],["Pfam%3APF18427","DD-reactivating factor swiveling domain"],["Pfam%3APF02286","Dehydratase large subunit"],["Pfam%3APF02288","Dehydratase medium subunit"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:644","l":"Aeromonas hydrophila","na":13,"nb":1,"a":[["Pfam%3APF01117","Aerolysin toxin"],["Pfam%3APF03440","Aerolysin/Pertussis toxin (APT) domain"],["Pfam%3APF21327","GspA, peptidase C39-like domain"],["Pfam%3APF04231","Endonuclease I"],["PROSITE%3APS01092","Adenylate cyclase class-I signature 1"],["PROSITE%3APS01093","Adenylate cyclase class-I signature 2"]],"b":[["amino_acids_and_peptides/amonabactin-p-750.yaml","amonabactin P 750"]]},{"id":"UniProt:O00754","l":"","na":13,"nb":1,"a":[["ComplexPortal%3ACPX-15965","-"],["ComplexPortal%3ACPX-19551","-"],["ComplexPortal%3ACPX-20291","-"],["ComplexPortal%3ACPX-26077","-"],["ComplexPortal%3ACPX-26144","-"],["CDD%3Acd10810","GH38N_AMII_LAM_like"]],"b":[["alkaloids/swainsonine.yaml","swainsonine"]]},{"id":"UniProt:O15530","l":"","na":13,"nb":1,"a":[["ComplexPortal%3ACPX-13979","-"],["ComplexPortal%3ACPX-20891","-"],["ComplexPortal%3ACPX-24544","-"],["GO%3A0004676","3-phosphoinositide-dependent protein kinase activity"],["GO%3A0141124","intracellular signaling cassette"],["GO%3A0043304","regulation of mast cell degranulation"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:Q14749","l":"","na":13,"nb":1,"a":[["EC%3A2.1.1.20","glycine N-methyltransferase"],["RHEA%3A19937","glycine + S-adenosyl-L-methionine = sarcosine + S-adenosyl-L-homocysteine + H(+)"],["ComplexPortal%3ACPX-10845","-"],["ComplexPortal%3ACPX-14981","-"],["ComplexPortal%3ACPX-21780","-"],["ComplexPortal%3ACPX-22832","-"]],"b":[["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"NCBITaxon:60172","l":"Penicillium solitum","na":1,"nb":12,"a":[["TED%3AAF-A0A1V6R6Y6-F1-model_v4_TED01","TED novel fold AF-A0A1V6R6Y6-F1-model_v4_TED01"]],"b":[["polyketides/dihydrobisvertinolone.yaml","dihydrobisvertinolone"],["polyketides/sorbicillin.yaml","sorbicillin"],["polyketides/terrestric-acid.yaml","terrestric acid"],["polyketides/tetrahydrobisvertinolone.yaml","tetrahydrobisvertinolone"],["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"],["unclassified/penitrem-a.yaml","penitrem A"]]},{"id":"UniProt:P05129","l":"","na":12,"nb":1,"a":[["ComplexPortal%3ACPX-12748","-"],["ComplexPortal%3ACPX-19449","-"],["ComplexPortal%3ACPX-19476","-"],["ComplexPortal%3ACPX-24173","-"],["GO%3A0004698","calcium,diacylglycerol-dependent serine/threonine kinase activity"],["GO%3A0032425","positive regulation of mismatch repair"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P0A853","l":"","na":12,"nb":1,"a":[["GO%3A0060187","cell pole"],["GO%3A0080146","L-cysteine desulfhydrase activity"],["GO%3A0016829","lyase activity"],["GO%3A0030955","potassium ion binding"],["GO%3A0009034","tryptophanase activity"],["GO%3A0042431","indole metabolic process"]],"b":[["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]]},{"id":"UniProt:P31751","l":"","na":12,"nb":1,"a":[["ComplexPortal%3ACPX-10780","-"],["ComplexPortal%3ACPX-16948","-"],["ComplexPortal%3ACPX-22352","-"],["GO%3A0010748","negative regulation of long-chain fatty acid import across plasma membrane"],["GO%3A1903676","positive regulation of cap-dependent translational initiation"],["CDD%3Acd05595","STKc_PKB_beta"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P40261","l":"","na":12,"nb":1,"a":[["EC%3A2.1.1.1","nicotinamide N-methyltransferase"],["RHEA%3A23884","nicotinamide + S-adenosyl-L-methionine = 1-methylnicotinamide + S-adenosyl-L-homocysteine"],["GO%3A0008112","nicotinamide N-methyltransferase activity"],["GO%3A0030760","pyridine N-methyltransferase activity"],["GO%3A0006769","nicotinamide metabolic process"],["GO%3A0090312","positive regulation of protein deacetylation"]],"b":[["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"UniProt:P48454","l":"","na":12,"nb":1,"a":[["ComplexPortal%3ACPX-1112","Calcineurin-Calmodulin-AKAP5 complex, gamma-R1 variant"],["ComplexPortal%3ACPX-1118","Calcineurin-Calmodulin-AKAP5 complex, gamma-R2 variant"],["ComplexPortal%3ACPX-1001","Calcineurin-Calmodulin complex, gamma-R1 variant"],["ComplexPortal%3ACPX-1050","Calcineurin-Calmodulin complex, gamma-R2 variant"],["ComplexPortal%3ACPX-17012","-"],["ComplexPortal%3ACPX-17541","-"]],"b":[["amino_acids_and_peptides/cyclosporin-a.yaml","cyclosporin A"]]},{"id":"UniProt:Q08881","l":"","na":12,"nb":1,"a":[["GO%3A0046629","gamma-delta T cell activation"],["GO%3A0001865","NK T cell differentiation"],["InterPro%3AIPR001562","Zinc finger, Btk motif"],["CDD%3Acd01238","PH_Btk"],["CDD%3Acd05112","PTKc_Itk"],["CDD%3Acd10396","SH2_Tec_Itk"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:4113","l":"Solanum tuberosum","na":11,"nb":1,"a":[["Pfam%3APF02977","Carboxypeptidase A inhibitor"],["Pfam%3APF01474","Class-II DAHP synthetase family"],["Pfam%3APF23229","Alpha-glucan water dikinase, DUF7067"],["Pfam%3APF02446","4-alpha-glucanotransferase"],["Pfam%3APF22973","Alpha-glucan water dikinase, phosphohistidine-like domain"],["Pfam%3APF23166","Alpha-glucan water dikinase 1 Ig-like N-terminal domain"]],"b":[["fatty_acids/itaconic-acid.yaml","itaconic acid"]]},{"id":"UniProt:O60503","l":"","na":11,"nb":1,"a":[["ComplexPortal%3ACPX-10819","-"],["ComplexPortal%3ACPX-10882","-"],["ComplexPortal%3ACPX-14634","-"],["ComplexPortal%3ACPX-14903","-"],["ComplexPortal%3ACPX-17315","-"],["ComplexPortal%3ACPX-18747","-"]],"b":[["polyketides/chlortetracycline.yaml","chlortetracycline"]]},{"id":"UniProt:P00915","l":"","na":11,"nb":1,"a":[["ComplexPortal%3ACPX-11364","-"],["ComplexPortal%3ACPX-12060","-"],["ComplexPortal%3ACPX-14728","-"],["ComplexPortal%3ACPX-15000","-"],["ComplexPortal%3ACPX-25381","-"],["GO%3A0018820","cyanamide hydratase activity"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:Q9BX63","l":"","na":11,"nb":1,"a":[["ComplexPortal%3ACPX-4426","BRCA1-B complex"],["ComplexPortal%3ACPX-17429","-"],["ComplexPortal%3ACPX-26140","-"],["CDD%3Acd18788","SF2_C_XPD"],["CDD%3Acd17970","DEAHc_FancJ"],["InterPro%3AIPR006554","Helicase-like, DEXD box c2 type"]],"b":[["unclassified/telomestatin.yaml","telomestatin"]]},{"id":"NCBITaxon:116188","l":"Streptomyces coeruleorubidus","na":1,"nb":10,"a":[["Pfam%3APF13732","ATP-binding protein DrrA1-3-like, C-terminal domain"]],"b":[["amino_acids_and_peptides/pacidamycin-1.yaml","pacidamycin 1"],["amino_acids_and_peptides/pacidamycin-2.yaml","pacidamycin 2"],["amino_acids_and_peptides/pacidamycin-3.yaml","pacidamycin 3"],["amino_acids_and_peptides/pacidamycin-4.yaml","pacidamycin 4"],["amino_acids_and_peptides/pacidamycin-5.yaml","pacidamycin 5"],["amino_acids_and_peptides/pacidamycin-6.yaml","pacidamycin 6"]]},{"id":"NCBITaxon:257313","l":"Bordetella pertussis (strain Tohama I / ATCC BAA-589 / NCTC 13251)","na":10,"nb":1,"a":[["Pfam%3APF03440","Aerolysin/Pertussis toxin (APT) domain"],["Pfam%3APF07411","Domain of unknown function (DUF1508)"],["Pfam%3APF25988","CyaD, alpha-helical hairpin domain"],["Pfam%3APF03497","Anthrax toxin LF subunit"],["Pfam%3APF02537","CrcB-like protein, Camphor Resistance (CrcB)"],["Pfam%3APF16970","Type-1 fimbrial protein, A"]],"b":[["amino_acids_and_peptides/alcaligin.yaml","alcaligin"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":10,"nb":1,"a":[["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF09081","Glucan 1,4-alpha-maltotetraohydrolase, domain C"],["Pfam%3APF09459","Ethylbenzene dehydrogenase"],["Pfam%3APF08406","CbbQ/NirQ/NorQ C-terminal"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"],["Pfam%3APF18793","Nitrous oxide reductase propeller repeat 2"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"UniProt:P0A749","l":"","na":10,"nb":1,"a":[["GO%3A0008760","UDP-N-acetylglucosamine 1-carboxyvinyltransferase activity"],["GO%3A0019277","UDP-N-acetylgalactosamine biosynthetic process"],["NCBIfam%3ANF006873","UDP-N-acetylglucosamine 1-carboxyvinyltransferase"],["NCBIfam%3ATIGR01072","UDP-N-acetylglucosamine 1-carboxyvinyltransferase"],["CDD%3Acd01555","UdpNAET"],["InterPro%3AIPR001986","Enolpyruvate transferase domain"]],"b":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"]]},{"id":"UniProt:P14679","l":"","na":10,"nb":1,"a":[["GO%3A0004503","tyrosinase activity"],["GO%3A0006726","eye pigment biosynthetic process"],["GO%3A0006583","melanin biosynthetic process from tyrosine"],["GO%3A0042438","melanin biosynthetic process"],["InterPro%3AIPR002227","Tyrosinase copper-binding domain"],["Pfam%3APF00264","Common central domain of tyrosinase"]],"b":[["polyketides/kojic-acid.yaml","kojic acid"]]},{"id":"UniProt:P15884","l":"","na":10,"nb":1,"a":[["ComplexPortal%3ACPX-11961","-"],["ComplexPortal%3ACPX-14266","-"],["ComplexPortal%3ACPX-14268","-"],["ComplexPortal%3ACPX-14282","-"],["ComplexPortal%3ACPX-21052","-"],["ComplexPortal%3ACPX-26210","-"]],"b":[["alkaloids/toxoflavin.yaml","toxoflavin"]]},{"id":"UniProt:P41240","l":"","na":10,"nb":1,"a":[["EC%3A2.7.10.4","[Src-family] C-terminal protein kinase"],["ComplexPortal%3ACPX-11775","-"],["ComplexPortal%3ACPX-18631","-"],["ComplexPortal%3ACPX-19439","-"],["GO%3A0042997","negative regulation of Golgi to plasma membrane protein transport"],["GO%3A0060368","regulation of Fc receptor mediated stimulatory signaling pathway"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":9,"nb":1,"a":[["Pfam%3APF07835","Bacterial aa3 type cytochrome c oxidase subunit IV"],["Pfam%3APF04828","Glutathione-dependent formaldehyde-activating enzyme"],["Pfam%3APF16448","LapD/MoxY periplasmic domain"],["Pfam%3APF17267","Family of unknown function (DUF5333)"],["Pfam%3APF17272","Family of unknown function (DUF5337)"],["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"]],"b":[["alkaloids/parabactin.yaml","parabactin"]]},{"id":"UniProt:P00811","l":"","na":9,"nb":1,"a":[["EC%3A3.5.2.6","beta-lactamase"],["RHEA%3A20401","a beta-lactam + H2O = a substituted beta-amino acid"],["GO%3A0017001","antibiotic catabolic process"],["NCBIfam%3ANF000185","BlaEC family class C beta-lactamase"],["NCBIfam%3ANF033085","class C beta-lactamase"],["NCBIfam%3ANF012173","CMY2/MIR/ACT/EC family class C beta-lactamase"]],"b":[["amino_acids_and_peptides/clavulanic-acid-2.yaml","clavulanic acid"]]},{"id":"UniProt:P23280","l":"","na":9,"nb":1,"a":[["ComplexPortal%3ACPX-11709","-"],["ComplexPortal%3ACPX-12376","-"],["ComplexPortal%3ACPX-12422","-"],["ComplexPortal%3ACPX-12445","-"],["ComplexPortal%3ACPX-13747","-"],["ComplexPortal%3ACPX-17694","-"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:P24666","l":"","na":9,"nb":1,"a":[["ComplexPortal%3ACPX-17111","-"],["ComplexPortal%3ACPX-18047","-"],["ComplexPortal%3ACPX-19744","-"],["ComplexPortal%3ACPX-26078","-"],["CDD%3Acd16343","LMWPTP"],["InterPro%3AIPR023485","Phosphotyrosine protein phosphatase I"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"UniProt:P43250","l":"","na":9,"nb":1,"a":[["ComplexPortal%3ACPX-15339","-"],["ComplexPortal%3ACPX-18479","-"],["ComplexPortal%3ACPX-21827","-"],["ComplexPortal%3ACPX-23485","-"],["ComplexPortal%3ACPX-26222","-"],["GO%3A0047696","beta-adrenergic receptor kinase activity"]],"b":[["carbohydrates/sangivamycin.yaml","sangivamycin"]]},{"id":"UniProt:Q14353","l":"","na":9,"nb":1,"a":[["ComplexPortal%3ACPX-17611","-"],["ComplexPortal%3ACPX-22207","-"],["ComplexPortal%3ACPX-25132","-"],["GO%3A0030731","guanidinoacetate N-methyltransferase activity"],["GO%3A0006601","creatine biosynthetic process"],["GO%3A0006600","creatine metabolic process"]],"b":[["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"UniProt:Q8JUX6","l":"","na":1,"nb":9,"a":[["proteintraitsmech%3ABIOLIP_LFO","LFO-binding site"]],"b":[["alkaloids/ergotamine.yaml","ergotamine"],["amino_acids_and_peptides/leupeptin-a.yaml","leupeptin A"],["amino_acids_and_peptides/linaclotide.yaml","linaclotide"],["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"],["polyketides/kojic-acid.yaml","kojic acid"],["polyketides/monactin.yaml","monactin"]]},{"id":"CHEBI:58515","l":"","na":8,"nb":1,"a":[["EC%3A1.14.11.55","ectoine hydroxylase"],["EC%3A3.5.4.44","ectoine hydrolase"],["EC%3A4.2.1.108","ectoine synthase"],["RHEA%3A17281","(2S)-4-acetamido-2-aminobutanoate = L-ectoine + H2O"],["RHEA%3A45740","L-ectoine + 2-oxoglutarate + O2 = 5-hydroxyectoine + succinate + CO2"],["RHEA%3A52304","L-ectoine + H2O = (2S)-2-acetamido-4-aminobutanoate"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":8,"nb":1,"a":[["Pfam%3APF01721","Class II bacteriocin"],["Pfam%3APF13700","Domain of unknown function (DUF4158)"],["Pfam%3APF07478","D-ala D-ala ligase C-terminus"],["Pfam%3APF01820","D-ala D-ala ligase N-terminus"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"],["PROSITE%3APS00843","D-alanine--D-alanine ligase signature 1"]],"b":[["amino_acids_and_peptides/enterocin-a.yaml","enterocin A"]]},{"id":"NCBITaxon:1703937","l":"Streptomyces sp. CB03234","na":1,"nb":8,"a":[["TED%3AAF-A0A1Q5LKM4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q5LKM4-F1-model_v4_TED02"]],"b":[["terpenoids/tiancilactone-a.yaml","tiancilactone A"],["terpenoids/tiancilactone-b.yaml","tiancilactone B"],["terpenoids/tiancilactone-c.yaml","tiancilactone C"],["terpenoids/tiancilactone-d.yaml","tiancilactone D"],["terpenoids/tiancilactone-e.yaml","tiancilactone E"],["terpenoids/tiancilactone-f.yaml","tiancilactone F"]]},{"id":"NCBITaxon:1908","l":"Streptomyces globisporus","na":1,"nb":8,"a":[["PROSITE%3APS00953","Glycosyl hydrolases family 25 active site signature"]],"b":[["polyketides/c-1027-chromophore.yaml","C-1027 chromophore"],["polyketides/c-1027.yaml","C-1027"],["polyketides/landomycin-a.yaml","landomycin A"],["polyketides/nonactin.yaml","nonactin"],["polyketides/prejadomycin.yaml","prejadomycin"],["polyketides/tetranactin.yaml","tetranactin"]]},{"id":"NCBITaxon:345341","l":"Kutzneria sp. 744","na":1,"nb":8,"a":[["TED%3AAF-W7SU68-F1-model_v4_TED01","TED novel fold AF-W7SU68-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/kutzneride-6.yaml","Kutzneride 6"],["unclassified/kutzneride-1.yaml","Kutzneride 1"],["unclassified/kutzneride-2.yaml","Kutzneride 2"],["unclassified/kutzneride-3.yaml","Kutzneride 3"],["unclassified/kutzneride-4.yaml","Kutzneride 4"],["unclassified/kutzneride-5.yaml","Kutzneride 5"]]},{"id":"NCBITaxon:380703","l":"Aeromonas hydrophila subsp. hydrophila (strain ATCC 7966 / DSM 30187 / BCRC 13018 / CCUG 14551 / JCM 1027 / KCTC 2358 / NCIMB 9240 / NCTC 8049)","na":8,"nb":1,"a":[["Pfam%3APF26341","tRNA 2-selenouridine synthase AAA domain"],["Pfam%3APF11890","Domain of unknown function (DUF3410)"],["Pfam%3APF11944","Protein of unknown function (DUF3461)"],["Pfam%3APF04356","Protein of unknown function (DUF489)"],["Pfam%3APF12563","Hemolytic toxin N terminal"],["Pfam%3APF04362","Bacterial Fe(2+) trafficking"]],"b":[["amino_acids_and_peptides/amonabactin-p-750.yaml","amonabactin P 750"]]},{"id":"NCBITaxon:40318","l":"Streptomyces nodosus","na":1,"nb":8,"a":[["TED%3AAF-A0A0B5DA96-F1-model_v4_TED01","TED novel fold AF-A0A0B5DA96-F1-model_v4_TED01"]],"b":[["alkaloids/melanin.yaml","melanin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/ectoine.yaml","ectoine"],["amino_acids_and_peptides/siamycin-i.yaml","siamycin I"],["fatty_acids/butyrolactone.yaml","γ-butyrolactone"]]},{"id":"NCBITaxon:420953","l":"Paraburkholderia megapolitana","na":1,"nb":8,"a":[["proteintraitsmech%3AELIFE109154_GrbD","GrbD-type graminine biosynthesis protein family"]],"b":[["amino_acids_and_peptides/megapolibactin-a.yaml","megapolibactin A"],["amino_acids_and_peptides/megapolibactin-acyc.yaml","megapolibactin Acyc"],["amino_acids_and_peptides/megapolibactin-b.yaml","megapolibactin B"],["amino_acids_and_peptides/megapolibactin-c.yaml","megapolibactin C"],["amino_acids_and_peptides/megapolibactin-d.yaml","megapolibactin D"],["amino_acids_and_peptides/megapolibactin-e.yaml","megapolibactin E"]]},{"id":"NCBITaxon:492670","l":"Bacillus velezensis","na":1,"nb":8,"a":[["TED%3AAF-A0A7S9EWF1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S9EWF1-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["polyketides/bacillaene.yaml","bacillaene"],["polyketides/difficidin.yaml","difficidin"],["polyketides/macrolactin-h.yaml","macrolactin H"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":1,"nb":8,"a":[["Pfam%3APF07335","Fungal chitosanase of glycosyl hydrolase group 75"]],"b":[["amino_acids_and_peptides/ferrichrome-2.yaml","ferrichrome"],["polyketides/2-acetyl-1-3-6-8-tetrahydroxynaphthalene.yaml","2-acetyl-1,3,6,8-tetrahydroxynaphthalene"],["polyketides/kojic-acid.yaml","kojic acid"],["terpenoids/aphidicolin.yaml","aphidicolin"],["unclassified/2-oxocyclopiazonic-acid.yaml","2-oxocyclopiazonic acid"],["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"UniProt:O96017","l":"","na":8,"nb":1,"a":[["ComplexPortal%3ACPX-16839","-"],["ComplexPortal%3ACPX-21166","-"],["GO%3A0044773","mitotic DNA damage checkpoint signaling"],["CDD%3Acd14084","STKc_Chk2"],["CDD%3Acd22666","FHA_CHK2"],["ELM%3AELME000425","DOC_PP2A_B56_1"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:Q8TD30","l":"","na":8,"nb":1,"a":[["ComplexPortal%3ACPX-11669","-"],["ComplexPortal%3ACPX-11684","-"],["ComplexPortal%3ACPX-18140","-"],["ComplexPortal%3ACPX-18547","-"],["ComplexPortal%3ACPX-25098","-"],["ComplexPortal%3ACPX-26258","-"]],"b":[["polyketides/monactin.yaml","monactin"]]},{"id":"CHEBI:16089","l":"","na":7,"nb":1,"a":[["EC%3A1.14.15.35","6-deoxyerythronolide B hydroxylase"],["EC%3A2.3.1.94","6-deoxyerythronolide-B synthase"],["RHEA%3A40299","6-deoxyerythronolide B + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = erythronolide B + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"],["RHEA%3A23068","6 (S)-methylmalonyl-CoA + propanoyl-CoA + 6 NADPH + 12 H(+) = 6-deoxyerythronolide B + 6 CO2 + 6 NADP(+) + 7 CoA + H2O"],["MCSA%3A694","6-deoxyerythronolide B hydroxylase"],["MCSA%3A602","6-deoxyerythronolide-B synthase"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"NCBITaxon:1314807","l":"Dendrothele bispora (strain CBS 962.96)","na":7,"nb":1,"a":[["TED%3AAF-A0A4S8L719-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S8L719-F1-model_v4_TED01"],["TED%3AAF-A0A4S8LBA1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4S8LBA1-F1-model_v4_TED02"],["TED%3AAF-A0A4S8KM73-F1-model_v4_TED02","TED novel fold AF-A0A4S8KM73-F1-model_v4_TED02"],["TED%3AAF-A0A4S8KTD4-F1-model_v4_TED01","TED novel fold AF-A0A4S8KTD4-F1-model_v4_TED01"],["TED%3AAF-A0A4S8LE48-F1-model_v4_TED01","TED novel fold AF-A0A4S8LE48-F1-model_v4_TED01"],["TED%3AAF-A0A4S8MMV1-F1-model_v4_TED02","TED novel fold AF-A0A4S8MMV1-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/dendrothelin-a.yaml","dendrothelin A"]]},{"id":"NCBITaxon:391037","l":"Salinispora arenicola CNS-205","na":1,"nb":7,"a":[["Pfam%3APF12072","RNase Y N-terminal region"]],"b":[["alkaloids/lymphostin.yaml","lymphostin"],["alkaloids/lymphostinol.yaml","lymphostinol"],["alkaloids/neolymphostin-b.yaml","neolymphostin b"],["alkaloids/neolymphostinol-b.yaml","neolymphostinol B"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/cyclomarin-d.yaml","cyclomarin D"]]},{"id":"NCBITaxon:405948","l":"Saccharopolyspora erythraea NRRL 2338","na":1,"nb":7,"a":[["Pfam%3APF21036","Erythromycin biosynthesis protein CIII-like, N-terminal domain"]],"b":[["amino_acids_and_peptides/erythrochelin.yaml","erythrochelin"],["polyketides/erythromycin-a.yaml","erythromycin A"],["polyketides/erythromycin-b.yaml","erythromycin B"],["polyketides/erythromycin-c.yaml","erythromycin C"],["polyketides/erythromycin-d.yaml","erythromycin D"],["polyketides/flaviolin.yaml","flaviolin"]]},{"id":"NCBITaxon:5077","l":"Penicillium citrinum","na":1,"nb":7,"a":[["PROSITE%3APS00876","Indoleamine 2,3-dioxygenase signature 1"]],"b":[["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["polyketides/citrinin.yaml","(+)-citrinin"],["polyketides/mevinic-acid.yaml","mevinic acid"],["unclassified/orcinol.yaml","orcinol"],["unclassified/penigainamide-a.yaml","penigainamide A"],["unclassified/penigainamide-b.yaml","penigainamide B"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":7,"nb":1,"a":[["Pfam%3APF11766","Agglutinin-like protein, N-terminal domain"],["Pfam%3APF16856","Cell division control protein 4 dimerisation domain"],["Pfam%3APF18325","Fatty acid synthase subunit alpha Acyl carrier domain"],["Pfam%3APF18314","Fatty acid synthase type I helical domain"],["Pfam%3APF17828","N-terminal domain in fatty acid synthase subunit beta"],["Pfam%3APF05388","Carboxypeptidase Y pro-peptide"]],"b":[["unclassified/antimycin-a1b.yaml","antimycin A1B"]]},{"id":"NCBITaxon:5580","l":"Aureobasidium pullulans","na":7,"nb":1,"a":[["TED%3AAF-A0A4S8XR15-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S8XR15-F1-model_v4_TED01"],["TED%3AAF-A0A4S8YVB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S8YVB9-F1-model_v4_TED01"],["TED%3AAF-A0A4S9KUA9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S9KUA9-F1-model_v4_TED01"],["TED%3AAF-A0A4T0BHY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4T0BHY6-F1-model_v4_TED01"],["TED%3AAF-A0A4S9MB45-F1-model_v4_TED01","TED novel fold AF-A0A4S9MB45-F1-model_v4_TED01"],["TED%3AAF-A0A4S9RE93-F1-model_v4_TED01","TED novel fold AF-A0A4S9RE93-F1-model_v4_TED01"]],"b":[["unclassified/abt1.yaml","AbT1"]]},{"id":"NCBITaxon:5599","l":"Alternaria alternata","na":1,"nb":7,"a":[["Pfam%3APF16541","Alternaria alternata allergen 1"]],"b":[["alkaloids/ak-toxin-i.yaml","AK-toxin I"],["alkaloids/dimethylcoprogen.yaml","dimethylcoprogen"],["amino_acids_and_peptides/am-toxin.yaml","AM-toxin"],["polyketides/act-toxin-ii.yaml","ACT-Toxin II"],["polyketides/unii-yc2q1o94pt.yaml","UNII-YC2Q1O94PT"],["unclassified/af-toxin.yaml","AF-toxin"]]},{"id":"NCBITaxon:672","l":"Vibrio vulnificus","na":7,"nb":1,"a":[["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF08021","Siderophore-interacting FAD-binding domain"],["Pfam%3APF11575","FhuF 2Fe-2S C-terminal domain"],["Pfam%3APF27349","IcsB middle domain"],["Pfam%3APF21735","C-terminal repeat from RTX toxins"],["Pfam%3APF07634","RtxA repeat"]],"b":[["alkaloids/vulnibactin.yaml","vulnibactin"]]},{"id":"NCBITaxon:67339","l":"Streptomyces orinoci","na":1,"nb":7,"a":[["Pfam%3APF09277","Erythronolide synthase, docking"]],"b":[["polyketides/aureothin.yaml","aureothin"],["polyketides/orinocin.yaml","orinocin"],["polyketides/spectinabilin.yaml","spectinabilin"],["terpenoids/snf4435c.yaml","SNF4435C"],["terpenoids/snf4435d.yaml","SNF4435D"],["unclassified/neoantimycin-2.yaml","neoantimycin"]]},{"id":"NCBITaxon:68280","l":"Streptomyces violaceusniger","na":1,"nb":7,"a":[["TED%3AAF-A0A0X3VKA0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0X3VKA0-F1-model_v4_TED01"]],"b":[["fatty_acids/desulfoclethramycin.yaml","desulfoclethramycin"],["polyketides/be-24566b.yaml","BE-24566B"],["polyketides/elaiophylin.yaml","elaiophylin"],["polyketides/meridamycin-2.yaml","meridamycin"],["polyketides/nigericin.yaml","nigericin"],["terpenoids/2-methylisoborneol.yaml","2-methylisoborneol"]]},{"id":"UniProt:P27296","l":"","na":7,"nb":1,"a":[["GO%3A0033677","DNA/RNA helicase activity"],["NCBIfam%3ANF008729","ATP-dependent DNA helicase DinG"],["InterPro%3AIPR006555","ATP-dependent helicase, C-terminal"],["InterPro%3AIPR006554","Helicase-like, DEXD box c2 type"],["InterPro%3AIPR014013","Helicase superfamily 1/2, ATP-binding domain, DinG/Rad3-type"],["InterPro%3AIPR010614","RAD3-like helicase, DEAD"]],"b":[["unclassified/telomestatin.yaml","telomestatin"]]},{"id":"UniProt:P50135","l":"","na":7,"nb":1,"a":[["GO%3A0046539","histamine N-methyltransferase activity"],["GO%3A0001695","histamine catabolic process"],["GO%3A0001692","histamine metabolic process"],["GO%3A0006548","L-histidine catabolic process"],["Pfam%3APF13489","Methyltransferase domain"],["PROSITE%3APS51597","Histamine N-methyltransferase (EC 2.1.1.8) family profile"]],"b":[["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"UniProt:Q8IZQ5","l":"","na":7,"nb":1,"a":[["ComplexPortal%3ACPX-14418","-"],["ComplexPortal%3ACPX-17411","-"],["ComplexPortal%3ACPX-17423","-"],["ComplexPortal%3ACPX-17969","-"],["ComplexPortal%3ACPX-19650","-"],["ComplexPortal%3ACPX-22629","-"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"UniProt:Q92731","l":"","na":7,"nb":1,"a":[["GO%3A0030284","nuclear estrogen receptor activity"],["CDD%3Acd07171","NR_DBD_ER"],["CDD%3Acd06949","NR_LBD_ER"],["InterPro%3AIPR021064","Estrogen receptor beta-like, N-terminal"],["Pfam%3APF12497","Estrogen receptor beta"],["ELM%3AELME000053","MOD_GSK3_1"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:Q96LB1","l":"","na":7,"nb":1,"a":[["GO%3A0004985","G protein-coupled opioid receptor activity"],["GO%3A1990595","mast cell secretagogue receptor activity"],["GO%3A0045576","mast cell activation"],["CDD%3Acd15106","7tmA_MrgprX-like"],["InterPro%3AIPR017452","GPCR, rhodopsin-like, 7TM"],["PROSITE%3APS50262","G-protein coupled receptors family 1 profile"]],"b":[["alkaloids/thebaine.yaml","thebaine"]]},{"id":"UniProt:Q9FUZ2","l":"","na":7,"nb":1,"a":[["GO%3A0042586","peptide deformylase activity"],["NCBIfam%3ANF001159","peptide deformylase"],["NCBIfam%3ATIGR00079","peptide deformylase"],["CDD%3Acd00487","Pep_deformylase"],["Pfam%3APF01327","Polypeptide deformylase"],["InterPro%3AIPR036821","Peptide deformylase superfamily"]],"b":[["amino_acids_and_peptides/actinonin.yaml","actinonin"]]},{"id":"CHEBI:16536","l":"orcinol","na":6,"nb":1,"a":[["EC%3A1.14.13.6","orcinol 2-monooxygenase"],["EC%3A4.1.1.58","orsellinate decarboxylase"],["RHEA%3A63072","3 malonyl-CoA + acetyl-CoA + 3 H(+) = orcinol + 4 CO2 + 4 CoA"],["RHEA%3A19601","orcinol + NADH + O2 + H(+) = 2,3,5-trihydroxytoluene + NAD(+) + H2O"],["RHEA%3A80563","orcinol + S-adenosyl-L-methionine = 3-methoxy-5-methylphenol + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A16733","orsellinate + H(+) = orcinol + CO2"]],"b":[["unclassified/orcinol.yaml","orcinol"]]},{"id":"CHEBI:18365","l":"naphthalene-1,3,6,8-tetrol","na":6,"nb":1,"a":[["EC%3A1.1.1.252","tetrahydroxynaphthalene reductase"],["EC%3A2.3.1.233","1,3,6,8-tetrahydroxynaphthalene synthase"],["RHEA%3A41524","5 malonyl-CoA + 5 H(+) = naphthalene-1,3,6,8-tetrol + 5 CO2 + 5 CoA + H2O"],["RHEA%3A62700","naphtopyrone YWA1 + H2O = naphthalene-1,3,6,8-tetrol + acetoacetate + H(+)"],["RHEA%3A21908","scytalone + NADP(+) = naphthalene-1,3,6,8-tetrol + NADPH + H(+)"],["MCSA%3A891","Tetrahydroxynaphthalene reductase"]],"b":[["polyketides/naphthalene-1-3-6-8-tetrol.yaml","naphthalene-1,3,6,8-tetrol"]]},{"id":"CHEBI:63677","l":"","na":6,"nb":1,"a":[["EC%3A1.14.13.154","erythromycin 12 hydroxylase"],["EC%3A2.1.1.254","erythromycin 3'-O-methyltransferase"],["EC%3A2.4.1.278","3-alpha-mycarosylerythronolide B desosaminyl transferase"],["RHEA%3A32091","3-O-alpha-L-mycarosylerythronolide B + dTDP-alpha-D-desosamine = erythromycin D + dTDP + H(+)"],["RHEA%3A32631","erythromycin D + NADPH + O2 + H(+) = erythromycin C + NADP(+) + H2O"],["RHEA%3A32651","erythromycin D + S-adenosyl-L-methionine = erythromycin B + S-adenosyl-L-homocysteine + H(+)"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"NCBITaxon:128403","l":"Scytonema hofmannii PCC 7110","na":1,"nb":6,"a":[["TED%3AAF-A0A139X3P3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A139X3P3-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/scytocyclamide-a.yaml","scytocyclamide A"],["amino_acids_and_peptides/scytocyclamide-a2.yaml","scytocyclamide A2"],["amino_acids_and_peptides/scytocyclamide-b.yaml","scytocyclamide B"],["amino_acids_and_peptides/scytocyclamide-b2.yaml","scytocyclamide B2"],["amino_acids_and_peptides/scytocyclamide-b3.yaml","scytocyclamide B3"],["amino_acids_and_peptides/scytocyclamide-c.yaml","scytocyclamide C"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":6,"nb":1,"a":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF10779","Haemolysin XhlA"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF08181","DegQ (SacQ) family"],["Pfam%3APF08057","Erythromycin resistance leader peptide"],["Pfam%3APF14867","Lantibiotic alpha"]],"b":[["amino_acids_and_peptides/bacitracin.yaml","bacitracin"]]},{"id":"NCBITaxon:1877","l":"Micromonospora echinospora","na":1,"nb":6,"a":[["Pfam%3APF07091","Ribosomal RNA methyltransferase (FmrO)"]],"b":[["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/gentamicin-2.yaml","gentamicin"],["carbohydrates/gentamicin.yaml","gentamicin"],["polyketides/1-6-dihydro-8-propylanthraquinone.yaml","1,6-dihydro-8-propylanthraquinone"],["polyketides/calicheamicin.yaml","calicheamicin"],["polyketides/tiacumicin-b.yaml","tiacumicin B"]]},{"id":"NCBITaxon:1920","l":"Streptomyces nigrescens","na":1,"nb":6,"a":[["Pfam%3APF03995","Peptidase inhibitor family I36"]],"b":[["alkaloids/5athq-10a.yaml","5aTHQ-10a"],["alkaloids/5athq-9i.yaml","5aTHQ-9i"],["alkaloids/5athq-9n.yaml","5aTHQ-9n"],["alkaloids/stams-9i.yaml","STAMs-9i"],["alkaloids/stams-9n.yaml","STAMs-9n"],["polyketides/phoslactomycin-b.yaml","phoslactomycin B"]]},{"id":"NCBITaxon:1930","l":"Streptomyces scabiei","na":1,"nb":6,"a":[["TED%3AAF-A0A086GLG9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A086GLG9-F1-model_v4_TED01"]],"b":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"],["amino_acids_and_peptides/thaxtomin-c.yaml","thaxtomin C"],["polyketides/oronofacic-acid.yaml","oronofacic acid"],["unclassified/n-coronafacoyl-l-isoleucine.yaml","N-coronafacoyl-L-isoleucine"],["unclassified/thaxtomin-a.yaml","thaxtomin A"],["unclassified/thaxtomin-b.yaml","thaxtomin B"]]},{"id":"NCBITaxon:278992","l":"Streptomyces ambofaciens ATCC 23877","na":1,"nb":6,"a":[["Pfam%3APF00553","Cellulose binding domain"]],"b":[["alkaloids/congocidine.yaml","congocidine"],["polyketides/spiramycin.yaml","spiramycin"],["polyketides/stambomycin-a.yaml","stambomycin A"],["polyketides/stambomycin-b.yaml","stambomycin B"],["polyketides/stambomycin-c.yaml","stambomycin C"],["polyketides/stambomycin-d.yaml","stambomycin D"]]},{"id":"NCBITaxon:4097","l":"Nicotiana tabacum","na":6,"nb":1,"a":[["Pfam%3APF02041","Auxin binding protein"],["Pfam%3APF12481","Aluminium induced protein"],["Pfam%3APF11995","Domain of unknown function (DUF3490)"],["Pfam%3APF07172","Glycine rich protein family"],["PROSITE%3APS00157","Ribulose bisphosphate carboxylase large chain active site"],["TED%3AAF-A0A1S4A696-F1-model_v4_TED01","TED novel fold AF-A0A1S4A696-F1-model_v4_TED01"]],"b":[["terpenoids/capsidiol.yaml","capsidiol"]]},{"id":"NCBITaxon:46472","l":"Aspergillus versicolor","na":1,"nb":6,"a":[["Pfam%3APF13810","Domain of unknown function (DUF4185)"]],"b":[["alkaloids/psychrophilin-f.yaml","psychrophilin F"],["alkaloids/psychrophilin-g.yaml","psychrophilin G"],["polyketides/sterigmatocystin.yaml","sterigmatocystin"],["unclassified/chevalone-e.yaml","chevalone E"],["unclassified/notoamide-a.yaml","notoamide A"],["unclassified/psychrophilin-h.yaml","psychrophilin H"]]},{"id":"NCBITaxon:5082","l":"Penicillium roqueforti","na":1,"nb":6,"a":[["Pfam%3APF07573","Nitrogen regulatory protein AreA N terminus"]],"b":[["alkaloids/mycophenolic-acid-2.yaml","mycophenolic acid"],["polyketides/mycophenolic-acid.yaml","mycophenolic acid"],["terpenoids/pr-toxin.yaml","PR-toxin"],["unclassified/andrastin-a.yaml","andrastin A"],["unclassified/roquefortine-c.yaml","roquefortine C"],["unclassified/roquefortine-d.yaml","roquefortine D"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":6,"nb":1,"a":[["IDPO%3A0000037","molecular recognition display site"],["Pfam%3APF05403","Plasmodium histidine-rich protein (HRPII/III)"],["Pfam%3APF17986","EMP3-KAHRP-like N-terminal domain"],["Pfam%3APF03805","Cytoadherence-linked asexual protein"],["Pfam%3APF06589","Circumsporozoite-related antigen (CRA)"],["TED%3AAF-Q9U431-F1-model_v4_TED01","TED novel fold AF-Q9U431-F1-model_v4_TED01"]],"b":[["alkaloids/congocidine.yaml","congocidine"]]},{"id":"NCBITaxon:62977","l":"Acinetobacter baylyi (strain ATCC 33305 / BD413 / ADP1)","na":6,"nb":1,"a":[["Pfam%3APF03594","Benzoate membrane transport protein"],["Pfam%3APF27541","Citrate utilization protein B"],["Pfam%3APF05232","Chlorhexidine efflux transporter"],["PROSITE%3APS00083","Intradiol ring-cleavage dioxygenases signature"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"],["Pfam%3APF11846","Virulence factor membrane-bound polymerase, C-terminal"]],"b":[["amino_acids_and_peptides/fimsbactin-a.yaml","fimsbactin A"]]},{"id":"NCBITaxon:78245","l":"Xanthobacter autotrophicus (strain ATCC BAA-1158 / Py2)","na":6,"nb":1,"a":[["Pfam%3APF08882","Acetone carboxylase gamma subunit"],["Pfam%3APF19278","Hydantoinase/oxoprolinase C-terminal domain"],["Pfam%3APF05378","Hydantoinase/oxoprolinase N-terminal region"],["Pfam%3APF01968","Hydantoinase/oxoprolinase"],["Pfam%3APF02538","Hydantoinase B/oxoprolinase"],["TED%3AAF-A7IL68-F1-model_v4_TED01","TED highly-symmetric fold AF-A7IL68-F1-model_v4_TED01"]],"b":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":6,"nb":1,"a":[["Pfam%3APF16376","N-terminal domain of fragilysin"],["TED%3AAF-A0A412XR06-F1-model_v4_TED03","TED novel fold AF-A0A412XR06-F1-model_v4_TED03"],["TED%3AAF-A0A4V1EUI2-F1-model_v4_TED02","TED novel fold AF-A0A4V1EUI2-F1-model_v4_TED02"],["TED%3AAF-A0A5C6IXH5-F1-model_v4_TED01","TED novel fold AF-A0A5C6IXH5-F1-model_v4_TED01"],["TED%3AAF-A0A5C6L6G9-F1-model_v4_TED02","TED novel fold AF-A0A5C6L6G9-F1-model_v4_TED02"],["TED%3AAF-A0A642KY52-F1-model_v4_TED01","TED novel fold AF-A0A642KY52-F1-model_v4_TED01"]],"b":[["fatty_acids/galactosylceramide.yaml","α-galactosylceramide"]]},{"id":"NCBITaxon:882378","l":"","na":1,"nb":6,"a":[["Pfam%3APF01983","Guanylyl transferase CofC like"]],"b":[["amino_acids_and_peptides/endopyrrole-b.yaml","endopyrrole B"],["amino_acids_and_peptides/holrhizin-a.yaml","holrhizin A"],["amino_acids_and_peptides/holrhizin-b.yaml","holrhizin B"],["amino_acids_and_peptides/holrhizin-c.yaml","holrhizin C"],["amino_acids_and_peptides/holrhizin-d.yaml","holrhizin D"],["unclassified/endopyrrole-a.yaml","endopyrrole A"]]},{"id":"UniProt:Q9XUB2","l":"","na":6,"nb":1,"a":[["GO%3A0008187","poly-pyrimidine tract binding"],["InterPro%3AIPR000571","Zinc finger, CCCH-type"],["Pfam%3APF00642","Zinc finger C-x8-C-x5-C-x3-H type (and similar)"],["InterPro%3AIPR036855","Zinc finger, CCCH-type superfamily"],["PROSITE%3APS50103","Zinc finger C3H1-type profile"],["CATH%3A4.10.1000.10","Zinc finger, CCCH-type"]],"b":[["polyketides/pyrophen.yaml","pyrophen"]]},{"id":"CHEBI:27977","l":"","na":5,"nb":1,"a":[["EC%3A1.14.15.35","6-deoxyerythronolide B hydroxylase"],["EC%3A2.4.1.328","erythronolide mycarosyltransferase"],["RHEA%3A40299","6-deoxyerythronolide B + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = erythronolide B + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"],["RHEA%3A41576","dTDP-beta-L-mycarose + erythronolide B = 3-O-alpha-L-mycarosylerythronolide B + dTDP + H(+)"],["MCSA%3A694","6-deoxyerythronolide B hydroxylase"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"CHEBI:58572","l":"N-[(5S)-5-ammonio-5-carboxylatopentanoyl]-L-cysteinyl-D-valinate","na":5,"nb":1,"a":[["EC%3A1.21.3.1","isopenicillin-N synthase"],["EC%3A6.3.2.26","N-(5-amino-5-carboxypentanoyl)-L-cysteinyl-D-valine synthase"],["RHEA%3A23196","L-2-aminoadipate + L-valine + L-cysteine + 3 ATP + H2O = N-[(5S)-5-amino-5-carboxypentanoyl]-L-cysteinyl-D-valine + 3 AMP + 3 diphosphate + 3 H(+)"],["RHEA%3A22428","N-[(5S)-5-amino-5-carboxypentanoyl]-L-cysteinyl-D-valine + O2 = isopenicillin N + 2 H2O"],["MCSA%3A145","isopenicillin-N synthase"]],"b":[["amino_acids_and_peptides/n-5s-5-ammonio-5-carboxylatopentanoyl-l-cysteinyl-d-valinate.yaml","N-[(5S)-5-ammonio-5-carboxylatopentanoyl]-L-cysteinyl-D-valinate"]]},{"id":"CHEBI:62219","l":"2-heptyl-4-quinolone","na":5,"nb":1,"a":[["EC%3A1.14.13.182","2-heptyl-3-hydroxy-4(1H)-quinolone synthase"],["EC%3A2.3.1.230","2-heptyl-4(1H)-quinolone synthase"],["RHEA%3A50408","1-(2-aminophenyl)decane-1,3-dione = 2-heptyl-4(1H)-quinolone + H2O"],["RHEA%3A50396","(2-aminobenzoyl)acetate + octanoyl-CoA + H(+) = 2-heptyl-4(1H)-quinolone + CO2 + CoA + H2O"],["RHEA%3A37871","2-heptyl-4(1H)-quinolone + NADH + O2 + H(+) = 2-heptyl-3-hydroxy-4(1H)-quinolone + NAD(+) + H2O"]],"b":[["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"]]},{"id":"CHEBI:90888","l":"aurachin C","na":5,"nb":1,"a":[["EC%3A1.14.13.222","aurachin C monooxygenase/isomerase"],["RHEA%3A49000","aurachin C + NADH + O2 + H(+) = 4-hydroxy-2-methyl-3-oxo-4-[(2E,6E)-farnesyl]-3,4-dihydroquinoline 1-oxide + NAD(+) + H2O"],["RHEA%3A49012","aurachin C + NADH + O2 + H(+) = aurachin C epoxide + NAD(+) + H2O"],["RHEA%3A49004","aurachin C + NADPH + O2 + H(+) = 4-hydroxy-2-methyl-3-oxo-4-[(2E,6E)-farnesyl]-3,4-dihydroquinoline 1-oxide + NADP(+) + H2O"],["RHEA%3A49008","aurachin C + NADPH + O2 + H(+) = aurachin C epoxide + NADP(+) + H2O"]],"b":[["alkaloids/aurachin-c.yaml","aurachin C"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":5,"nb":1,"a":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF02963","Restriction endonuclease EcoRI"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["PROSITE%3APS00974","Mannitol dehydrogenases signature"],["PROSITE%3APS00567","Phosphoribulokinase signature"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:1110502","l":"Tistrella mobilis KA081020-065","na":1,"nb":5,"a":[["TED%3AAF-I3TTD1-F1-model_v4_TED03","TED novel fold AF-I3TTD1-F1-model_v4_TED03"]],"b":[["unclassified/dehydrodidemnin-b-aplidine.yaml","dehydrodidemnin B (aplidine)"],["unclassified/didemnin-b.yaml","didemnin B"],["unclassified/didemnin-x.yaml","didemnin X"],["unclassified/didemnin-y.yaml","didemnin Y"],["unclassified/nordidemnin-b.yaml","nordidemnin B"]]},{"id":"NCBITaxon:1437453","l":"Streptomyces leeuwenhoekii","na":1,"nb":5,"a":[["TED%3AAF-A0A0F7VQ57-F1-model_v4_TED03","TED novel fold AF-A0A0F7VQ57-F1-model_v4_TED03"]],"b":[["amino_acids_and_peptides/leepeptin.yaml","Leepeptin"],["polyketides/chaxamycin-a.yaml","chaxamycin A"],["polyketides/chaxamycin-b.yaml","chaxamycin B"],["polyketides/chaxamycin-c.yaml","chaxamycin C"],["polyketides/chaxamycin-d.yaml","chaxamycin D"]]},{"id":"NCBITaxon:1465","l":"Brevibacillus laterosporus","na":1,"nb":5,"a":[["TED%3AAF-A0A0F7BZ24-F1-model_v4_TED01","TED novel fold AF-A0A0F7BZ24-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/bogorol-a.yaml","bogorol A"],["amino_acids_and_peptides/tauramamide.yaml","tauramamide"],["shikimates_and_phenylpropanoids/basiliskamide-a.yaml","Basiliskamide A"],["unclassified/basiliskamide-b.yaml","Basiliskamide B"],["unclassified/laterocidine.yaml","laterocidine"]]},{"id":"NCBITaxon:176275","l":"Beauveria bassiana","na":1,"nb":5,"a":[["TED%3AAF-A0A2S7Y157-F1-model_v4_TED02","TED novel fold AF-A0A2S7Y157-F1-model_v4_TED02"]],"b":[["alkaloids/desmethylbassianin.yaml","desmethylbassianin"],["alkaloids/tenellin.yaml","tenellin"],["polyketides/oosporein.yaml","oosporein"],["unclassified/bassianolide.yaml","bassianolide"],["unclassified/beauvericin.yaml","beauvericin"]]},{"id":"NCBITaxon:220664","l":"Pseudomonas protegens Pf-5","na":1,"nb":5,"a":[["Pfam%3APF18089","DAPG hydrolase PhiG domain"]],"b":[["alkaloids/pyoluteorin.yaml","pyoluteorin"],["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"],["unclassified/orfamide-a.yaml","orfamide A"],["unclassified/orfamide-c.yaml","orfamide C"],["unclassified/pf-5-pyoverdine.yaml","Pf-5 pyoverdine"]]},{"id":"NCBITaxon:29303","l":"Streptomyces cattleya","na":1,"nb":5,"a":[["Pfam%3APF22636","Fluoroacetyl-CoA-specific thioesterase"]],"b":[["amino_acids_and_peptides/cattlecin.yaml","cattlecin"],["amino_acids_and_peptides/clavulanic-acid.yaml","clavulanic acid"],["amino_acids_and_peptides/ethynylserine.yaml","β-ethynylserine"],["amino_acids_and_peptides/thienamycin.yaml","thienamycin"],["terpenoids/cattleyene.yaml","cattleyene"]]},{"id":"NCBITaxon:380704","l":"Aspergillus niger ATCC 1015","na":1,"nb":5,"a":[["Pfam%3APF28387","BfoA N-terminal domain"]],"b":[["polyketides/azanigerone-a.yaml","azanigerone A"],["polyketides/campyrone-b.yaml","campyrone B"],["polyketides/pyranonigrin-e.yaml","pyranonigrin E"],["polyketides/pyrophen.yaml","pyrophen"],["terpenoids/yanuthone-d.yaml","yanuthone D"]]},{"id":"NCBITaxon:384","l":"Rhizobium leguminosarum","na":5,"nb":1,"a":[["Pfam%3APF10931","Protein of unknown function (DUF2735)"],["TED%3AAF-A0A1B1C3F3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1B1C3F3-F1-model_v4_TED02"],["TED%3AAF-A0A4Q8XNE1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q8XNE1-F1-model_v4_TED01"],["TED%3AAF-A0A6P0B3F8-F1-model_v4_TED02","TED novel fold AF-A0A6P0B3F8-F1-model_v4_TED02"],["TED%3AAF-A0A6P0DM15-F1-model_v4_TED01","TED novel fold AF-A0A6P0DM15-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/vicibactin.yaml","vicibactin"]]},{"id":"NCBITaxon:4513","l":"Hordeum vulgare","na":5,"nb":1,"a":[["Pfam%3APF20241","Domain of unknown function (DUF6598)"],["PROSITE%3APS00771","Barwin domain signature 1"],["PROSITE%3APS00426","Cereal trypsin/alpha-amylase inhibitors family signature"],["PROSITE%3APS00725","Germin family signature"],["PROSITE%3APS00431","Small hydrophilic plant seed proteins signature"]],"b":[["unclassified/roquefortine-c.yaml","roquefortine C"]]},{"id":"NCBITaxon:47427","l":"Armillaria gallica","na":5,"nb":1,"a":[["TED%3AAF-A0A2H3CFH3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H3CFH3-F1-model_v4_TED02"],["TED%3AAF-A0A2H3DFZ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H3DFZ3-F1-model_v4_TED01"],["TED%3AAF-A0A2H3DTE1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H3DTE1-F1-model_v4_TED02"],["TED%3AAF-A0A2H3E1R0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H3E1R0-F1-model_v4_TED02"],["TED%3AAF-A0A2H3CX67-F1-model_v4_TED02","TED novel fold AF-A0A2H3CX67-F1-model_v4_TED02"]],"b":[["terpenoids/8-hydroxy-6-protoilludene.yaml","8α-hydroxy-6-protoilludene"]]},{"id":"NCBITaxon:5454","l":"","na":5,"nb":1,"a":[["TED%3AAF-A0A162YC52-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A162YC52-F1-model_v4_TED01"],["TED%3AAF-A0A163JCD7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A163JCD7-F1-model_v4_TED01"],["TED%3AAF-A0A163LJZ7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A163LJZ7-F1-model_v4_TED02"],["TED%3AAF-A0A163LQ36-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A163LQ36-F1-model_v4_TED01"],["TED%3AAF-A0A163M9G4-F1-model_v4_TED01","TED novel fold AF-A0A163M9G4-F1-model_v4_TED01"]],"b":[["polyketides/solanapyrone-a.yaml","solanapyrone A"]]},{"id":"UniProt:P22629","l":"","na":5,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_4IR","4IR-binding site"],["proteintraitsmech%3ABIOLIP_HL9","HL9-binding site"],["proteintraitsmech%3ABIOLIP_ZOE","ZOE-binding site"],["proteintraitsmech%3AMETALPDB_RH_DINUCLEAR","dinuclear rhodium site"],["proteintraitsmech%3AMETALPDB_CO_TETRANUCLEAR","tetranuclear cobalt site"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"CHEBI:140434","l":"3-[(Z)-2-isocyanovinyl]indole","na":4,"nb":1,"a":[["EC%3A1.14.20.11","3-[(Z)-2-isocyanoethenyl]-1H-indole synthase"],["EC%3A2.5.1.146","3-geranyl-3-[(Z)-2-isocyanoethenyl]indole synthase"],["RHEA%3A56700","(2S)-3-(1H-indol-3-yl)-2-isocyanopropanoate + 2-oxoglutarate + O2 + H(+) = 3-[(Z)-2-isocyanoethenyl]-1H-indole + succinate + 2 CO2 + H2O"],["RHEA%3A17349","3-[(Z)-2-isocyanoethenyl]-1H-indole + (2E)-geranyl diphosphate = 3-geranyl-3-[(Z)-2-isocyanoethenyl]-1H-indole + diphosphate"]],"b":[["alkaloids/3-z-2-isocyanovinyl-indole.yaml","3-[(Z)-2-isocyanovinyl]indole"]]},{"id":"CHEBI:140442","l":"12-epi-fischerindole U isonitrile","na":4,"nb":1,"a":[["EC%3A1.14.20.14","hapalindole-type alkaloid chlorinase"],["EC%3A5.5.1.33","12-epi-fischerindole U synthase"],["RHEA%3A56764","12-epi-fischerindole U + chloride + 2-oxoglutarate + O2 + H(+) = 12-epi-fischerindole G + succinate + CO2 + H2O"],["RHEA%3A56456","3-geranyl-3-[(Z)-2-isocyanoethenyl]-1H-indole = 12-epi-fischerindole U"]],"b":[["alkaloids/12-epi-fischerindole-u-isonitrile.yaml","12-epi-fischerindole U isonitrile"]]},{"id":"CHEBI:155910","l":"aculene D","na":4,"nb":1,"a":[["RHEA%3A65112","aculene D + 2-oxoglutarate + O2 = aculene C + succinate + CO2 + H2O"],["RHEA%3A65104","aculene D + L-prolyl-[peptidyl-carrier protein] = aculene B + holo-[peptidyl-carrier protein]"],["RHEA%3A65084","asperaculane E + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = aculene D + 2 oxidized [NADPH--hemoprotein reductase] + CO2 + 3 H2O + H(+)"],["RHEA%3A65092","asperaculane G + reduced [NADPH--hemoprotein reductase] + O2 = aculene D + oxidized [NADPH--hemoprotein reductase] + CO2 + 2 H2O"]],"b":[["terpenoids/aculene-d.yaml","aculene D"]]},{"id":"CHEBI:16368","l":"6-hydroxymellein","na":4,"nb":1,"a":[["EC%3A2.1.1.108","6-hydroxymellein O-methyltransferase"],["RHEA%3A65248","5 malonyl-CoA + AH2 + 5 H(+) = 6-hydroxymellein + A + 5 CO2 + 5 CoA + H2O"],["RHEA%3A65252","6-hydroxymellein + (2E,6E)-farnesyl diphosphate = verruculide C + diphosphate"],["RHEA%3A15201","6-hydroxymellein + S-adenosyl-L-methionine = 6-methoxymellein + S-adenosyl-L-homocysteine + H(+)"]],"b":[["shikimates_and_phenylpropanoids/6-hydroxymellein.yaml","6-hydroxymellein"]]},{"id":"CHEBI:18048","l":"DIMBOA","na":4,"nb":1,"a":[["EC%3A2.4.1.202","2,4-dihydroxy-7-methoxy-2H-1,4-benzoxazin-3(4H)-one 2-D- glucosyltransferase"],["EC%3A3.2.1.182","4-hydroxy-7-methoxy-3-oxo-3,4-dihydro-2H-1,4-benzoxazin-2-yl glucoside beta-D-glucosidase"],["RHEA%3A33975","DIMBOA beta-D-glucoside + H2O = DIMBOA + D-glucose"],["RHEA%3A15541","DIMBOA + UDP-alpha-D-glucose = DIMBOA beta-D-glucoside + UDP + H(+)"]],"b":[["alkaloids/dimboa.yaml","DIMBOA"]]},{"id":"CHEBI:18227","l":"sterigmatocystin","na":4,"nb":1,"a":[["EC%3A2.1.1.109","demethylsterigmatocystin 6-O-methyltransferase"],["EC%3A2.1.1.110","sterigmatocystin 8-O-methyltransferase"],["RHEA%3A11504","6-demethylsterigmatocystin + S-adenosyl-L-methionine = sterigmatocystin + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A15561","sterigmatocystin + S-adenosyl-L-methionine = 8-O-methylsterigmatocystin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["polyketides/sterigmatocystin.yaml","sterigmatocystin"]]},{"id":"CHEBI:2448","l":"actinorhodin","na":4,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["proteintraitsmech%3ABIOLIP_ZCT","ZCT-binding site"]],"b":[["polyketides/actinorhodin.yaml","actinorhodin"]]},{"id":"CHEBI:4356","l":"desferrioxamine B","na":4,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_4356","requires desferrioxamine B"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["proteintraitsmech%3ABIOLIP_KTY","KTY-binding site"]],"b":[["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"]]},{"id":"CHEBI:51460","l":"albaflavenone","na":4,"nb":1,"a":[["EC%3A1.14.15.39","epi-isozizaene 5-monooxygenase"],["RHEA%3A25988","(5R)-albaflavenol + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = albaflavenone + 2 oxidized [2Fe-2S]-[ferredoxin] + 2 H2O"],["RHEA%3A25980","(5S)-albaflavenol + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = albaflavenone + 2 oxidized [2Fe-2S]-[ferredoxin] + 2 H2O"],["RHEA%3A32439","(+)-epi-isozizaene + 4 reduced [2Fe-2S]-[ferredoxin] + 2 O2 + 4 H(+) = albaflavenone + 4 oxidized [2Fe-2S]-[ferredoxin] + 3 H2O"]],"b":[["terpenoids/albaflavenone.yaml","albaflavenone"]]},{"id":"CHEBI:63282","l":"pseudaminate","na":4,"nb":1,"a":[["EC%3A2.5.1.97","pseudaminic acid synthase"],["EC%3A2.7.7.81","pseudaminic acid cytidylyltransferase"],["RHEA%3A31631","2,4-diacetamido-2,4,6-trideoxy-beta-L-altrose + phosphoenolpyruvate + H2O = pseudaminate + phosphate"],["RHEA%3A32083","pseudaminate + CTP = CMP-pseudaminate + diphosphate"]],"b":[["carbohydrates/pseudaminate.yaml","pseudaminate"]]},{"id":"CHEBI:64258","l":"","na":4,"nb":1,"a":[["EC%3A1.14.13.154","erythromycin 12 hydroxylase"],["EC%3A2.1.1.254","erythromycin 3'-O-methyltransferase"],["RHEA%3A32647","erythromycin C + S-adenosyl-L-methionine = erythromycin A + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A32631","erythromycin D + NADPH + O2 + H(+) = erythromycin C + NADP(+) + H2O"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"CHEBI:79296","l":"indigoidine","na":4,"nb":1,"a":[["EC%3A4.3.3.9","indigoidine synthase"],["RHEA%3A81507","2 3-amino-1,5-dihydropyridine-2,6-dione + O2 = indigoidine + 2 H2O"],["RHEA%3A81499","2 FMN + 2 L-glutamine + 2 ATP + O2 = indigoidine + 2 FMNH2 + 2 AMP + 2 diphosphate + 2 H2O"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["alkaloids/indigoidine.yaml","indigoidine"]]},{"id":"CHEBI:9555","l":"tioguanine","na":4,"nb":1,"a":[["EC%3A2.1.1.67","thiopurine S-methyltransferase"],["RHEA%3A56580","6-thioguanine + S-adenosyl-L-methionine = 6-methylthioguanine + S-adenosyl-L-homocysteine + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.40","The Nucleobase/Ascorbate Transporter (NAT) or Nucleobase:Cation Symporter-2 (NCS2) Family"]],"b":[["alkaloids/tioguanine.yaml","tioguanine"]]},{"id":"NCBITaxon:101028","l":"Fusarium pseudograminearum","na":1,"nb":4,"a":[["TED%3AAF-A0A7S8DXW2-F1-model_v4_TED02","TED novel fold AF-A0A7S8DXW2-F1-model_v4_TED02"]],"b":[["alkaloids/8-oxo-fusatin.yaml","8-oxo-fusatin"],["alkaloids/8-oxo-isopentenyladenine.yaml","8-oxo-isopentenyladenine"],["alkaloids/fusatin.yaml","fusatin"],["alkaloids/fusatinic-acid.yaml","fusatinic acid"]]},{"id":"NCBITaxon:1038928","l":"Streptomyces xinghaiensis","na":1,"nb":4,"a":[["TED%3AAF-A0A3R7FP99-F1-model_v4_TED01","TED novel fold AF-A0A3R7FP99-F1-model_v4_TED01"]],"b":[["alkaloids/dixiamycin-a.yaml","dixiamycin A"],["alkaloids/xiamycin-a.yaml","xiamycin A"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"],["polyketides/oligomycin.yaml","oligomycin"]]},{"id":"NCBITaxon:112509","l":"Hordeum vulgare subsp. vulgare","na":1,"nb":4,"a":[["IDPO%3A0000004","pre-molten globule"]],"b":[["fatty_acids/diketones.yaml","β-Diketones"],["terpenoids/11-hydroxy-hordetriene.yaml","11-hydroxy-hordetriene"],["terpenoids/hordediene.yaml","hordediene"],["terpenoids/hordetriene.yaml","hordetriene"]]},{"id":"NCBITaxon:1311","l":"Streptococcus agalactiae","na":4,"nb":1,"a":[["Pfam%3APF19567","Capsular polysaccharide synthesis, CpsB/CapC"],["Pfam%3APF16828","GAG-binding domain on surface antigen"],["Pfam%3APF27244","GtfB middle domain"],["Pfam%3APF07373","CAMP factor (Cfa)"]],"b":[["carbohydrates/capsular-polysaccharide-3.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:1813822","l":"Xylariales sp. No.14919","na":4,"nb":1,"a":[["TED%3AAF-A0A1V1SW90-F1-model_v4_TED01","TED novel fold AF-A0A1V1SW90-F1-model_v4_TED01"],["TED%3AAF-A0A1V1T5K0-F1-model_v4_TED01","TED novel fold AF-A0A1V1T5K0-F1-model_v4_TED01"],["TED%3AAF-A0A1V1TFW0-F1-model_v4_TED03","TED novel fold AF-A0A1V1TFW0-F1-model_v4_TED03"],["TED%3AAF-A0A1V1THH5-F1-model_v4_TED03","TED novel fold AF-A0A1V1THH5-F1-model_v4_TED03"]],"b":[["polyketides/fr901512.yaml","FR901512"]]},{"id":"NCBITaxon:1944","l":"Streptomyces halstedii","na":1,"nb":4,"a":[["Pfam%3APF09277","Erythronolide synthase, docking"]],"b":[["alkaloids/rotihibin-a.yaml","rotihibin A"],["polyketides/halstoctacosanolide-a.yaml","halstoctacosanolide A"],["terpenoids/geosmin.yaml","(−)-geosmin"],["unclassified/vicenistatin.yaml","vicenistatin"]]},{"id":"NCBITaxon:1967","l":"Streptomyces kanamyceticus","na":1,"nb":4,"a":[["Pfam%3APF13579","Glycosyl transferase 4-like domain"]],"b":[["amino_acids_and_peptides/gausemycin-a.yaml","gausemycin A"],["amino_acids_and_peptides/gausemycin-b.yaml","gausemycin B"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/kanamycin-a.yaml","kanamycin A"]]},{"id":"NCBITaxon:2017","l":"Streptoalloteichus hindustanus","na":1,"nb":4,"a":[["Pfam%3APF19581","Glyoxalase superfamily protein"]],"b":[["amino_acids_and_peptides/tallysomycin-a.yaml","tallysomycin A"],["amino_acids_and_peptides/tallysomycin-b.yaml","tallysomycin B"],["carbohydrates/apramycin.yaml","apramycin"],["carbohydrates/tobramycin.yaml","tobramycin"]]},{"id":"NCBITaxon:2045","l":"Nocardioides simplex","na":4,"nb":1,"a":[["Pfam%3APF00775","Dioxygenase"],["Pfam%3APF04444","Catechol dioxygenase N terminus"],["PROSITE%3APS00083","Intradiol ring-cleavage dioxygenases signature"],["TED%3AAF-A0A4Y3NBY1-F1-model_v4_TED01","TED novel fold AF-A0A4Y3NBY1-F1-model_v4_TED01"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:226900","l":"","na":4,"nb":1,"a":[["IDPO%3A0000060","self-assembly"],["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF14436","Bacterial EndoU nuclease"],["Pfam%3APF10803","Spore germination GerPB"]],"b":[["amino_acids_and_peptides/thiocillin-i.yaml","thiocillin I"]]},{"id":"NCBITaxon:267608","l":"Ralstonia nicotianae (strain ATCC BAA-1114 / GMI1000)","na":4,"nb":1,"a":[["Pfam%3APF13473","Cupredoxin-like domain"],["Pfam%3APF09483","Type III secretion protein (HpaP)"],["Pfam%3APF14897","EpsG family"],["Pfam%3APF03377","TAL effector repeat"]],"b":[["unclassified/micacocidin.yaml","micacocidin"]]},{"id":"NCBITaxon:269797","l":"Methanosarcina barkeri str. Fusaro","na":4,"nb":1,"a":[["Pfam%3APF27274","Coenzyme F430 synthetase CfbE, C-terminal domain"],["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"],["Pfam%3APF09505","Dimethylamine methyltransferase (Dimeth_PyL)"],["PROSITE%3APS00507","Nickel-dependent hydrogenases large subunit signature 1"]],"b":[["alkaloids/coenzyme-f430.yaml","coenzyme F430"]]},{"id":"NCBITaxon:28447","l":"Clavibacter michiganensis","na":4,"nb":1,"a":[["TED%3AAF-A0A251YC11-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A251YC11-F1-model_v4_TED02"],["TED%3AAF-A0A2S5VA57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5VA57-F1-model_v4_TED01"],["TED%3AAF-A0A2S5VJK2-F1-model_v4_TED01","TED novel fold AF-A0A2S5VJK2-F1-model_v4_TED01"],["TED%3AAF-A0A399NHQ8-F1-model_v4_TED01","TED novel fold AF-A0A399NHQ8-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/michiganin-a.yaml","michiganin A"]]},{"id":"NCBITaxon:28450","l":"Burkholderia pseudomallei","na":4,"nb":1,"a":[["Pfam%3APF18664","CdiA C-terminal tRNase domain"],["Pfam%3APF12106","Colicin E5 ribonuclease domain"],["Pfam%3APF11480","Colicin-E5 Imm protein"],["Pfam%3APF13332","Hemagglutinin repeat"]],"b":[["polyketides/malleilactone.yaml","malleilactone"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans Pd1222","na":4,"nb":1,"a":[["Pfam%3APF27518","Heme exporter protein C"],["Pfam%3APF22039","Imidazolonepropionase-like composite domain, bacteria"],["PROSITE%3APS01181","Ribosomal protein S21 signature"],["Pfam%3APF02239","Cytochrome D1 heme domain"]],"b":[["alkaloids/parabactin.yaml","parabactin"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":1,"nb":4,"a":[["TED%3AAF-A0A679J1E9-F1-model_v4_TED01","TED novel fold AF-A0A679J1E9-F1-model_v4_TED01"]],"b":[["unclassified/vacidobactin-a.yaml","vacidobactin A"],["unclassified/vacidobactin-b.yaml","vacidobactin B"],["unclassified/variobactin-a.yaml","variobactin A"],["unclassified/variobactin-b.yaml","variobactin B"]]},{"id":"NCBITaxon:40602","l":"Claviceps fusiformis","na":1,"nb":4,"a":[["Pfam%3APF06766","Fungal hydrophobin"]],"b":[["alkaloids/agroclavine-i.yaml","Agroclavine I"],["alkaloids/elymoclavine.yaml","elymoclavine"],["alkaloids/ergocryptine.yaml","α-ergocryptine"],["alkaloids/ergotamine.yaml","ergotamine"]]},{"id":"NCBITaxon:43662","l":"Pseudoalteromonas piscicida","na":1,"nb":4,"a":[["Pfam%3APF08329","Chitinase A, N-terminal domain"]],"b":[["alkaloids/2-3-4-5-tetrabromopyrrole.yaml","2,3,4,5-tetrabromopyrrole"],["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["alkaloids/pseudochelin-a.yaml","pseudochelin A"]]},{"id":"NCBITaxon:497965","l":"","na":4,"nb":1,"a":[["TED%3AAF-E0UJA0-F1-model_v4_TED01","TED highly-symmetric fold AF-E0UJA0-F1-model_v4_TED01"],["TED%3AAF-E0U6M3-F1-model_v4_TED03","TED novel fold AF-E0U6M3-F1-model_v4_TED03"],["TED%3AAF-E0UE39-F1-model_v4_TED02","TED novel fold AF-E0UE39-F1-model_v4_TED02"],["TED%3AAF-E0UM93-F1-model_v4_TED01","TED novel fold AF-E0UM93-F1-model_v4_TED01"]],"b":[["fatty_acids/1-heptadecene.yaml","1-heptadecene"]]},{"id":"NCBITaxon:5083","l":"Penicillium canescens","na":1,"nb":4,"a":[["Pfam%3APF09206","Alpha-L-arabinofuranosidase B, catalytic"]],"b":[["alkaloids/agroclavine-i.yaml","Agroclavine I"],["unclassified/outovirin-a.yaml","outovirin A"],["unclassified/outovirin-c.yaml","outovirin C"],["unclassified/penitrem-a.yaml","penitrem A"]]},{"id":"NCBITaxon:512","l":"Alcaligenes sp","na":4,"nb":1,"a":[["Pfam%3APF26354","N,N-dimethylformamidase alpha subunit"],["Pfam%3APF20254","N,N-dimethylformamidase beta subunit-like, C-terminal"],["Pfam%3APF11606","Family 31 carbohydrate binding protein"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"]],"b":[["polyketides/kalimantacin-a.yaml","kalimantacin A"]]},{"id":"NCBITaxon:5353","l":"Lentinula edodes","na":4,"nb":1,"a":[["Pfam%3APF21671","Protein CPL1-like"],["Pfam%3APF16850","Peptidase inhibitor I66"],["TED%3AAF-A0A1Q3EBL0-F1-model_v4_TED01","TED novel fold AF-A0A1Q3EBL0-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3ENK4-F1-model_v4_TED01","TED novel fold AF-A0A1Q3ENK4-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/lentinulin-a.yaml","lentinulin A"]]},{"id":"NCBITaxon:5516","l":"Fusarium culmorum","na":1,"nb":4,"a":[["TED%3AAF-A0A2T4GUL3-F1-model_v4_TED01","TED novel fold AF-A0A2T4GUL3-F1-model_v4_TED01"]],"b":[["polyketides/zearalenone.yaml","zearalenone"],["terpenoids/15-acetyldeoxynivalenol.yaml","15-acetyldeoxynivalenol"],["terpenoids/culmorin.yaml","culmorin"],["terpenoids/nivalenol.yaml","nivalenol"]]},{"id":"NCBITaxon:655819","l":"Beauveria bassiana ARSEF 2860","na":1,"nb":4,"a":[["Pfam%3APF22354","Hydrophobin"]],"b":[["polyketides/oosporein.yaml","oosporein"],["unclassified/beauverolide-ba.yaml","beauverolide Ba"],["unclassified/beauverolide-ca.yaml","beauverolide Ca"],["unclassified/beauverolide-ka.yaml","beauverolide Ka"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":4,"nb":1,"a":[["PROSITE%3APS00949","Autoinducer synthase family signature"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"],["PROSITE%3APS00607","cAMP phosphodiesterases class-II signature"],["TED%3AAF-A0A844NWZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A844NWZ1-F1-model_v4_TED02"]],"b":[["unclassified/ape-vf.yaml","APE Vf"]]},{"id":"NCBITaxon:76728","l":"Streptomyces vitaminophilus","na":1,"nb":4,"a":[["TED%3AAF-A0A0T6LRN4-F1-model_v4_TED01","TED novel fold AF-A0A0T6LRN4-F1-model_v4_TED01"]],"b":[["alkaloids/pyrrolomycin-a.yaml","pyrrolomycin A"],["alkaloids/pyrrolomycin-b.yaml","pyrrolomycin B"],["alkaloids/pyrrolomycin-c.yaml","pyrrolomycin C"],["alkaloids/pyrrolomycin-d.yaml","pyrrolomycin D"]]},{"id":"NCBITaxon:85698","l":"Achromobacter xylosoxidans","na":4,"nb":1,"a":[["Pfam%3APF25975","CzcB C-terminal circularly permuted SH3-like domain"],["Pfam%3APF17524","Anti-sigma factor CnrY"],["Pfam%3APF10778","Halocarboxylic acid dehydrogenase DehI"],["TED%3AAF-A0A1R1JVF9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1R1JVF9-F1-model_v4_TED03"]],"b":[["amino_acids_and_peptides/alcaligin.yaml","alcaligin"]]},{"id":"NCBITaxon:933388","l":"Penicillium oxalicum (strain 114-2 / CGMCC 5302)","na":4,"nb":1,"a":[["Pfam%3APF27751","ATEG_07667 C-terminal domain"],["Pfam%3APF11402","Antifungal protein"],["Pfam%3APF12311","Protein of unknown function (DUF3632)"],["TED%3AAF-S8ATN5-F1-model_v4_TED01","TED highly-symmetric fold AF-S8ATN5-F1-model_v4_TED01"]],"b":[["unclassified/atpenin-b.yaml","atpenin B"]]},{"id":"NCBITaxon:93625","l":"Psilocybe cyanescens","na":4,"nb":1,"a":[["Pfam%3APF02958","Ecdysteroid kinase-like family"],["TED%3AAF-A0A409XLW7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A409XLW7-F1-model_v4_TED01"],["TED%3AAF-A0A409XPY8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A409XPY8-F1-model_v4_TED01"],["TED%3AAF-A0A409XED8-F1-model_v4_TED01","TED novel fold AF-A0A409XED8-F1-model_v4_TED01"]],"b":[["alkaloids/psilocybin.yaml","psilocybin"]]},{"id":"UniProt:P02701","l":"","na":4,"nb":1,"a":[["Pfam%3APF01382","Avidin family"],["PROSITE%3APS00577","Avidin-like domain signature"],["proteintraitsmech%3ABIOLIP_B1R","B1R-binding site"],["proteintraitsmech%3ABIOLIP_BTN","BTN-binding site"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"UniProt:P62593","l":"","na":4,"nb":1,"a":[["proteintraitsmech%3AMEROPS_CLEAVAGE_M50_004","RseP peptidase cleavage specificity"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["PROSITE%3APS00146","Beta-lactamase class-A active site"],["MCSA%3A2","beta-lactamase (Class A)"]],"b":[["amino_acids_and_peptides/clavulanic-acid-2.yaml","clavulanic acid"]]},{"id":"UniProt:Q00441","l":"","na":4,"nb":1,"a":[["EC%3A1.14.15.35","6-deoxyerythronolide B hydroxylase"],["RHEA%3A40299","6-deoxyerythronolide B + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = erythronolide B + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"],["MCSA%3A694","6-deoxyerythronolide B hydroxylase"],["proteintraitsmech%3ABIOLIP_9AP","9AP-binding site"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"UniProt:Q8TDV0","l":"","na":4,"nb":1,"a":[["ComplexPortal%3ACPX-16132","-"],["ComplexPortal%3ACPX-17565","-"],["ComplexPortal%3ACPX-24374","-"],["CDD%3Acd15002","7tmA_GPR151"]],"b":[["carbohydrates/tobramycin.yaml","tobramycin"]]},{"id":"UniProt:Q9Y243","l":"","na":4,"nb":1,"a":[["ComplexPortal%3ACPX-22352","-"],["ComplexPortal%3ACPX-24286","-"],["CDD%3Acd05593","STKc_PKB_gamma"],["InterPro%3AIPR034675","Protein kinase B gamma, catalytic domain"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"CHEBI:131914","l":"violacein","na":3,"nb":1,"a":[["RHEA%3A49720","protoviolaceinate + NADH + 2 O2 + 2 H(+) = violacein + CO2 + NAD(+) + 2 H2O"],["RHEA%3A49728","protoviolaceinate + NADPH + 2 O2 + 2 H(+) = violacein + CO2 + NADP(+) + 2 H2O"],["RHEA%3A49732","violaceinate + O2 + H(+) = violacein + CO2 + H2O"]],"b":[["alkaloids/violacein.yaml","violacein"]]},{"id":"CHEBI:133763","l":"YWA1","na":3,"nb":1,"a":[["RHEA%3A62652","6 malonyl-CoA + acetyl-CoA + 6 H(+) = naphtopyrone YWA1 + 6 CO2 + 7 CoA + H2O"],["RHEA%3A62700","naphtopyrone YWA1 + H2O = naphthalene-1,3,6,8-tetrol + acetoacetate + H(+)"],["RHEA%3A62680","naphtopyrone YWA1 = norrubrofusarin + H2O + H(+)"]],"b":[["polyketides/ywa1.yaml","YWA1"]]},{"id":"CHEBI:138046","l":"sesterfisherol","na":3,"nb":1,"a":[["EC%3A4.2.3.176","sesterfisherol synthase"],["RHEA%3A54068","(2E,6E,10E,14E)-geranylfarnesyl diphosphate + H2O = sesterfisherol + diphosphate"],["RHEA%3A78407","sesterfisherol + 3 reduced [NADPH--hemoprotein reductase] + 3 O2 = sesterfisherate + 3 oxidized [NADPH--hemoprotein reductase] + 4 H2O + 4 H(+)"]],"b":[["terpenoids/sesterfisherol.yaml","sesterfisherol"]]},{"id":"CHEBI:18393","l":"naphthalene-1,3,8-triol","na":3,"nb":1,"a":[["EC%3A4.2.1.94","scytalone dehydratase"],["RHEA%3A24396","scytalone = 1,3,8-trihydroxynaphthalene + H2O"],["MCSA%3A910","scytalone dehydratase"]],"b":[["polyketides/naphthalene-1-3-8-triol.yaml","naphthalene-1,3,8-triol"]]},{"id":"CHEBI:28915","l":"fosfomycin","na":3,"nb":1,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.5","The Pseudomonas OprP Porin (POP) Family"],["proteintraitsmech%3ABIOLIP_FCN","FCN-binding site"]],"b":[["unclassified/fosfomycin.yaml","fosfomycin"]]},{"id":"CHEBI:29472","l":"2-heptyl-3-hydroxy-4-quinolone","na":3,"nb":1,"a":[["EC%3A1.14.13.182","2-heptyl-3-hydroxy-4(1H)-quinolone synthase"],["RHEA%3A60352","2-heptyl-3-hydroxy-4(1H)-quinolone + O2 = N-octanoylanthranilate + CO + H(+)"],["RHEA%3A37871","2-heptyl-4(1H)-quinolone + NADH + O2 + H(+) = 2-heptyl-3-hydroxy-4(1H)-quinolone + NAD(+) + H2O"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"]]},{"id":"CHEBI:3139","l":"bleomycin A2","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A9.A.18","The Peptide Uptake Permease (PUP) Family"]],"b":[["amino_acids_and_peptides/bleomycin-a2.yaml","bleomycin A2"]]},{"id":"CHEBI:31432","l":"corynebactin","na":3,"nb":1,"a":[["RHEA%3A33811","3 2,3-dihydroxybenzoate + 3 L-threonine + 3 glycine + 6 ATP = corynebactin + 6 AMP + 6 diphosphate + 3 H2O + 3 H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"CHEBI:31550","l":"epothilone B","na":3,"nb":1,"a":[["RHEA%3A47808","epothilone D + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = epothilone B + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["proteintraitsmech%3ABIOLIP_EPB","EPB-binding site"]],"b":[["unclassified/epothilone-b.yaml","epothilone B"]]},{"id":"CHEBI:40968","l":"astaxanthin","na":3,"nb":1,"a":[["EC%3A1.14.99.64","zeaxanthin 4-ketolase"],["RHEA%3A56772","all-trans-adonixanthin + 2 AH2 + 2 O2 = all-trans-(3S,3'S)-astaxanthin + 2 A + 3 H2O"],["proteintraitsmech%3ABIOLIP_AXT","AXT-binding site"]],"b":[["terpenoids/astaxanthin.yaml","astaxanthin"]]},{"id":"CHEBI:46702","l":"(−)-geosmin","na":3,"nb":1,"a":[["EC%3A4.1.99.16","geosmin synthase"],["RHEA%3A30371","(1E,4S,5E,7R)-germacra-1(10),5-dien-11-ol + H2O = (-)-geosmin + acetone"],["RHEA%3A30455","(1S,4aS)-1,4a-dimethyl-1,2,3,4,4a,5,6,8a-octahydronaphthalene + H2O = (-)-geosmin"]],"b":[["terpenoids/geosmin.yaml","(−)-geosmin"]]},{"id":"CHEBI:48741","l":"β-phellandrene","na":3,"nb":1,"a":[["EC%3A4.2.3.51","beta-phellandrene synthase (neryl-diphosphate-cyclizing)"],["RHEA%3A25504","(2E)-geranyl diphosphate = beta-phellandrene + diphosphate"],["RHEA%3A27830","neryl diphosphate = beta-phellandrene + diphosphate"]],"b":[["terpenoids/phellandrene.yaml","β-phellandrene"]]},{"id":"CHEBI:50432","l":"putrebactin","na":3,"nb":1,"a":[["EC%3A6.3.2.63","putrebactin synthase"],["RHEA%3A79279","2 N-(3-carboxypropanoyl)-N-hydroxyputrescine + 2 ATP = putrebactin + 2 AMP + 2 diphosphate + 2 H(+)"],["RHEA%3A79287","pre-putrebactin + ATP = putrebactin + AMP + diphosphate + H(+)"]],"b":[["amino_acids_and_peptides/putrebactin.yaml","putrebactin"]]},{"id":"CHEBI:63468","l":"tirucalla-7,24-dien-3β-ol","na":3,"nb":1,"a":[["EC%3A5.4.99.56","tirucalladienol synthase"],["RHEA%3A31887","(S)-2,3-epoxysqualene = tirucalla-7,24-dien-3beta-ol"],["RHEA%3A80279","tirucalla-7,24-dien-3beta-ol + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = dihydroniloticin + 2 oxidized [NADPH--hemoprotein reductase] + 2 H2O + 2 H(+)"]],"b":[["terpenoids/tirucalla-7-24-dien-3-ol.yaml","tirucalla-7,24-dien-3β-ol"]]},{"id":"CHEBI:6472","l":"lincomycin","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_3QB","3QB-binding site"]],"b":[["carbohydrates/lincomycin.yaml","lincomycin"]]},{"id":"CHEBI:71609","l":"albonoursin","na":3,"nb":1,"a":[["EC%3A1.3.3.13","albonoursin synthase"],["RHEA%3A35531","cyclo(L-phenylalanyl-L-leucyl) + 2 O2 = albonoursin + 2 H2O2"],["RHEA%3A35539","cyclo[(Z)-alpha,beta-didehydrophenylalanyl-L-leucyl] + O2 = albonoursin + H2O2"]],"b":[["unclassified/albonoursin.yaml","albonoursin"]]},{"id":"CHEBI:7719","l":"ochratoxin A","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.60","The Organo Anion Transporter (OAT) Family"]],"b":[["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"]]},{"id":"CHEBI:77879","l":"elaiophylin","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["proteintraitsmech%3ABIOLIP_ELO","ELO-binding site"]],"b":[["polyketides/elaiophylin.yaml","elaiophylin"]]},{"id":"CHEBI:80729","l":"toxoflavin","na":3,"nb":1,"a":[["EC%3A2.1.1.349","toxoflavin synthase"],["RHEA%3A56852","reumycin + S-adenosyl-L-methionine = toxoflavin + S-adenosyl-L-homocysteine + H(+)"],["proteintraitsmech%3ABIOLIP_TOF","TOF-binding site"]],"b":[["alkaloids/toxoflavin.yaml","toxoflavin"]]},{"id":"CHEBI:9215","l":"spectinomycin","na":3,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["proteintraitsmech%3ABIOLIP_SCM","SCM-binding site"]],"b":[["carbohydrates/spectinomycin.yaml","spectinomycin"]]},{"id":"CHEBI:9470","l":"tetracenomycin C","na":3,"nb":1,"a":[["EC%3A1.14.13.200","tetracenomycin A2 monooxygenase-diooxygenase"],["RHEA%3A42824","tetracenomycin A2 + 2 NADH + 2 O2 + 2 H(+) = tetracenomycin C + 2 NAD(+) + H2O"],["RHEA%3A42820","tetracenomycin A2 + 2 NADPH + 2 O2 + 2 H(+) = tetracenomycin C + 2 NADP(+) + H2O"]],"b":[["polyketides/tetracenomycin-c.yaml","tetracenomycin C"]]},{"id":"NCBITaxon:10141","l":"Cavia porcellus","na":3,"nb":1,"a":[["IDPO%3A0000048","limited proteolysis display site"],["Pfam%3APF16681","Ig-like domain on T-cell surface glycoprotein CD3 epsilon chain"],["PROSITE%3APS00799","Granulins signature"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":3,"nb":1,"a":[["Pfam%3APF05258","Dna[CI] antecedent, DciA"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"],["TED%3AAF-Q0RZW9-F1-model_v4_TED03","TED highly-symmetric fold AF-Q0RZW9-F1-model_v4_TED03"]],"b":[["unclassified/rhodochelin.yaml","rhodochelin"]]},{"id":"NCBITaxon:1125972","l":"Amycolatopsis alba DSM 44262","na":3,"nb":1,"a":[["TED%3AAF-A0A229R958-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A229R958-F1-model_v4_TED01"],["TED%3AAF-A0A229REG9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A229REG9-F1-model_v4_TED01"],["TED%3AAF-A0A229RFD1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A229RFD1-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/albachelin.yaml","albachelin"]]},{"id":"NCBITaxon:1381753","l":"Moniliophthora roreri (strain MCA 2997)","na":3,"nb":1,"a":[["TED%3AAF-V2WPW3-F1-model_v4_TED02","TED highly-symmetric fold AF-V2WPW3-F1-model_v4_TED02"],["TED%3AAF-V2WSW5-F1-model_v4_TED05","TED highly-symmetric fold AF-V2WSW5-F1-model_v4_TED05"],["TED%3AAF-V2XCP9-F1-model_v4_TED03","TED highly-symmetric fold AF-V2XCP9-F1-model_v4_TED03"]],"b":[["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"]]},{"id":"NCBITaxon:1392250","l":"Aspergillus steynii IBT 23096","na":3,"nb":1,"a":[["TED%3AAF-A0A2I2FXR6-F1-model_v4_TED02","TED novel fold AF-A0A2I2FXR6-F1-model_v4_TED02"],["TED%3AAF-A0A2I2GJL8-F1-model_v4_TED01","TED novel fold AF-A0A2I2GJL8-F1-model_v4_TED01"],["TED%3AAF-A0A2I2GP63-F1-model_v4_TED02","TED novel fold AF-A0A2I2GP63-F1-model_v4_TED02"]],"b":[["alkaloids/ochrindole-a.yaml","ochrindole A"]]},{"id":"NCBITaxon:1406225","l":"Archangium violaceum Cb vi76","na":3,"nb":1,"a":[["TED%3AAF-A0A084STC5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A084STC5-F1-model_v4_TED01"],["TED%3AAF-A0A084SQF5-F1-model_v4_TED01","TED novel fold AF-A0A084SQF5-F1-model_v4_TED01"],["TED%3AAF-A0A084SQH8-F1-model_v4_TED01","TED novel fold AF-A0A084SQH8-F1-model_v4_TED01"]],"b":[["polyketides/gephyronic-acid.yaml","gephyronic acid"]]},{"id":"NCBITaxon:1756125","l":"Pyrenochaetopsis sp.","na":1,"nb":3,"a":[["Pfam%3APF22903","Diels-Alderase-like"]],"b":[["polyketides/wakodecalines-a.yaml","wakodecalines A"],["polyketides/wakodecalines-b.yaml","wakodecalines B"],["unclassified/phomasetin.yaml","phomasetin"]]},{"id":"NCBITaxon:1810919","l":"Aspergillus mulundensis","na":3,"nb":1,"a":[["TED%3AAF-A0A3D8QN50-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D8QN50-F1-model_v4_TED01"],["TED%3AAF-A0A3D8RF64-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D8RF64-F1-model_v4_TED01"],["TED%3AAF-A0A3D8R479-F1-model_v4_TED02","TED novel fold AF-A0A3D8R479-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/mulundocandin.yaml","mulundocandin"]]},{"id":"NCBITaxon:1857892","l":"Streptomyces sp. MP131-18","na":1,"nb":3,"a":[["TED%3AAF-A0A1V2RLA5-F1-model_v4_TED02","TED novel fold AF-A0A1V2RLA5-F1-model_v4_TED02"]],"b":[["polyketides/lagunapyrone-a.yaml","lagunapyrone A"],["polyketides/lagunapyrone-b.yaml","lagunapyrone B"],["polyketides/lagunapyrone-c.yaml","lagunapyrone C"]]},{"id":"NCBITaxon:1885","l":"Streptomyces actuosus","na":1,"nb":3,"a":[["Pfam%3APF17258","Family of unknown function (DUF5324)"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/nosiheptide-2.yaml","nosiheptide"]]},{"id":"NCBITaxon:1904","l":"Streptomyces cyaneus","na":1,"nb":3,"a":[["Pfam%3APF04673","Polyketide synthesis cyclase"]],"b":[["carbohydrates/curamycin.yaml","curamycin"],["polyketides/cardol.yaml","cardol"],["polyketides/cosmomycin-d.yaml","cosmomycin D"]]},{"id":"NCBITaxon:1932","l":"Streptomyces tendae","na":1,"nb":3,"a":[["Pfam%3APF01356","Alpha amylase inhibitor"]],"b":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"],["polyketides/lysolipin-i.yaml","lysolipin I"],["terpenoids/geosmin.yaml","(−)-geosmin"]]},{"id":"NCBITaxon:1935","l":"Streptomyces violaceoruber","na":1,"nb":3,"a":[["Pfam%3APF03559","NDP-hexose 2,3-dehydratase"]],"b":[["polyketides/granaticin.yaml","granaticin"],["polyketides/kendomycin.yaml","kendomycin"],["terpenoids/methylenomycin-a.yaml","methylenomycin A"]]},{"id":"NCBITaxon:1938","l":"Streptomyces viridochromogenes","na":1,"nb":3,"a":[["Pfam%3APF11599","RRNA methyltransferase AviRa"]],"b":[["amino_acids_and_peptides/glycinocin-a.yaml","glycinocin A"],["carbohydrates/avilamycin-a.yaml","avilamycin A"],["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"]]},{"id":"NCBITaxon:1950","l":"Streptomyces peucetius","na":1,"nb":3,"a":[["Pfam%3APF13732","ATP-binding protein DrrA1-3-like, C-terminal domain"]],"b":[["amino_acids_and_peptides/peucechelin.yaml","peucechelin"],["polyketides/daunorubicin.yaml","daunorubicin"],["polyketides/doxorubicin.yaml","doxorubicin"]]},{"id":"NCBITaxon:1956","l":"Streptomyces diastaticus","na":1,"nb":3,"a":[["TED%3AAF-A0A7K3Q596-F1-model_v4_TED01","TED novel fold AF-A0A7K3Q596-F1-model_v4_TED01"]],"b":[["alkaloids/diastaphenazine.yaml","diastaphenazine"],["alkaloids/izumiphenazine-c.yaml","izumiphenazine C"],["polyketides/rimocidin.yaml","rimocidin"]]},{"id":"NCBITaxon:216591","l":"Burkholderia cenocepacia J2315","na":1,"nb":3,"a":[["Pfam%3APF04199","Putative cyclase"]],"b":[["unclassified/ornibactin-c4.yaml","ornibactin C4"],["unclassified/ornibactin-c6.yaml","ornibactin C6"],["unclassified/ornibactin-c8.yaml","ornibactin C8"]]},{"id":"NCBITaxon:2572248","l":"Cryptosporiopsis sp. 8999","na":1,"nb":3,"a":[["Pfam%3APF08592","Anthrone oxygenase"]],"b":[["polyketides/cryptosporioptide-a.yaml","cryptosporioptide A"],["polyketides/cryptosporioptide-b.yaml","cryptosporioptide B"],["polyketides/cryptosporioptide-c.yaml","cryptosporioptide C"]]},{"id":"NCBITaxon:2747968","l":"Fusarium vanettenii","na":3,"nb":1,"a":[["Pfam%3APF01083","Cutinase"],["PROSITE%3APS00155","Cutinase, serine active site"],["PROSITE%3APS00931","Cutinase, aspartate and histidine active sites"]],"b":[["polyketides/bikaverin.yaml","bikaverin"]]},{"id":"NCBITaxon:312309","l":"","na":3,"nb":1,"a":[["Pfam%3APF06610","L-alanine exporter"],["Pfam%3APF00765","Autoinducer synthase"],["PROSITE%3APS00949","Autoinducer synthase family signature"]],"b":[["unclassified/ape-vf.yaml","APE Vf"]]},{"id":"NCBITaxon:322159","l":"Streptococcus thermophilus (strain ATCC BAA-491 / LMD-9)","na":3,"nb":1,"a":[["Pfam%3APF18470","Cas9 alpha-helical lobe domain"],["Pfam%3APF18070","CRISPR-Cas9 PI domain"],["Pfam%3APF18061","CRISPR-Cas9 WED domain"]],"b":[["amino_acids_and_peptides/streptide.yaml","streptide"]]},{"id":"NCBITaxon:324833","l":"Streptomyces lasaliensis","na":1,"nb":3,"a":[["TED%3AAF-A0A4U5W597-F1-model_v4_TED01","TED novel fold AF-A0A4U5W597-F1-model_v4_TED01"]],"b":[["polyketides/lasalocid-2.yaml","lasalocid"],["polyketides/lasalocid.yaml","lasalocid"],["unclassified/echinomycin.yaml","echinomycin"]]},{"id":"NCBITaxon:33203","l":"Purpureocillium lilacinum","na":1,"nb":3,"a":[["TED%3AAF-A0A2U3ENJ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U3ENJ6-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/leucinostatin-a.yaml","leucinostatin A"],["amino_acids_and_peptides/leucinostatin-b.yaml","leucinostatin B"],["polyketides/patulin.yaml","patulin"]]},{"id":"NCBITaxon:347834","l":"Rhizobium etli (strain ATCC 51251 / DSM 11541 / JCM 21823 / NBRC 15573 / CFN 42)","na":3,"nb":1,"a":[["Pfam%3APF02632","BioY family"],["proteintraitsmech%3AELIFE109154_VbsL","Vicibactin acyl-hydroxyornithine epimerase family"],["PROSITE%3APS01349","Nodulation protein nodA signature"]],"b":[["amino_acids_and_peptides/vicibactin.yaml","vicibactin"]]},{"id":"NCBITaxon:362242","l":"","na":3,"nb":1,"a":[["Pfam%3APF02654","Cobalamin-5-phosphate synthase"],["Pfam%3APF02622","AlgH-like"],["Pfam%3APF01628","HrcA protein C terminal domain"]],"b":[["polyketides/mycolactone-b.yaml","mycolactone B"]]},{"id":"NCBITaxon:376686","l":"","na":3,"nb":1,"a":[["Pfam%3APF17957","Bacterial Ig domain"],["Pfam%3APF24850","Bacillithiol biosynthesis BshC, C-terminal coiled-coil domain"],["Pfam%3APF14109","GldH lipoprotein"]],"b":[["polyketides/flexirubin.yaml","flexirubin"]]},{"id":"NCBITaxon:381666","l":"Cupriavidus necator H16","na":3,"nb":1,"a":[["Pfam%3APF13473","Cupredoxin-like domain"],["Pfam%3APF10605","3HB-oligomer hydrolase (3HBOH)"],["Pfam%3APF21783","YNCE-like beta-propeller"]],"b":[["amino_acids_and_peptides/cupriachelin.yaml","cupriachelin"]]},{"id":"NCBITaxon:3879","l":"Medicago sativa","na":3,"nb":1,"a":[["Pfam%3APF02095","Extensin-like protein"],["Pfam%3APF02431","Chalcone-flavanone isomerase"],["PROSITE%3APS00441","Chalcone and stilbene synthases active site"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:393595","l":"Alcanivorax borkumensis SK2","na":1,"nb":3,"a":[["TED%3AAF-Q0VNH7-F1-model_v4_TED01","TED highly-symmetric fold AF-Q0VNH7-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/amphibactin-e.yaml","amphibactin E"],["amino_acids_and_peptides/amphibactin-h.yaml","amphibactin H"],["fatty_acids/amphibactin-i.yaml","amphibactin I"]]},{"id":"NCBITaxon:3988","l":"Ricinus communis","na":3,"nb":1,"a":[["Pfam%3APF10998","Protein of unknown function (DUF2838)"],["PROSITE%3APS00574","Fatty acid desaturases family 2 signature"],["PROSITE%3APS00275","Shiga/ricin ribosomal inactivating toxins active site signature"]],"b":[["terpenoids/casbene.yaml","casbene"]]},{"id":"NCBITaxon:4039","l":"Daucus carota","na":3,"nb":1,"a":[["PROSITE%3APS00451","Pathogenesis-related proteins Bet v I family signature"],["PROSITE%3APS00431","Small hydrophilic plant seed proteins signature"],["Pfam%3APF02987","Late embryogenesis abundant protein"]],"b":[["carbohydrates/adenine-arabinoside.yaml","adenine arabinoside"]]},{"id":"NCBITaxon:41067","l":"Aspergillus candidus","na":1,"nb":3,"a":[["TED%3AAF-A0A2I2EZ62-F1-model_v4_TED02","TED novel fold AF-A0A2I2EZ62-F1-model_v4_TED02"]],"b":[["alkaloids/aspcandine.yaml","aspcandine"],["polyketides/kojic-acid.yaml","kojic acid"],["shikimates_and_phenylpropanoids/chlorflavonin.yaml","chlorflavonin"]]},{"id":"NCBITaxon:41899","l":"Burkholderia plantarii","na":3,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_GrbD","GrbD-type graminine biosynthesis protein family"],["proteintraitsmech%3AELIFE109154_GrbE","GrbE-type graminine biosynthesis protein family"],["TED%3AAF-A0A0B6RMB1-F1-model_v4_TED01","TED novel fold AF-A0A0B6RMB1-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/plantaribactin.yaml","plantaribactin"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":3,"nb":1,"a":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF22277","EncFtn-like"],["TED%3AAF-D0LJ11-F1-model_v4_TED04","TED highly-symmetric fold AF-D0LJ11-F1-model_v4_TED04"]],"b":[["polyketides/haliamide.yaml","haliamide"]]},{"id":"NCBITaxon:53446","l":"Streptomyces cinnamoneus","na":1,"nb":3,"a":[["TED%3AAF-A0A2S6XSK0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S6XSK0-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/cinnamycin.yaml","cinnamycin"],["amino_acids_and_peptides/duramycin.yaml","duramycin"],["unclassified/bicozamycin.yaml","bicozamycin"]]},{"id":"NCBITaxon:645","l":"Aeromonas salmonicida","na":3,"nb":1,"a":[["Pfam%3APF28601","Heat shock protein 15, C-terminal region"],["Pfam%3APF12563","Hemolytic toxin N terminal"],["Pfam%3APF01203","Type II secretion system (T2SS), protein N"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:659352","l":"Streptomyces sp. SN-593","na":1,"nb":3,"a":[["TED%3AAF-A0A7U3V0R8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7U3V0R8-F1-model_v4_TED02"]],"b":[["polyketides/kinanthraquinone-b.yaml","kinanthraquinone B"],["polyketides/kinanthraquinone.yaml","kinanthraquinone"],["polyketides/reveromycin-a.yaml","reveromycin A"]]},{"id":"NCBITaxon:660122","l":"Fusarium vanettenii (strain ATCC MYA-4622 / CBS 123669 / FGSC 9596 / NRRL 45880 / 77-13-4)","na":3,"nb":1,"a":[["Pfam%3APF17660","Polyglycine hydrolase-like, structural repeat"],["Pfam%3APF26719","ATPase synthesis protein 25, C-terminal TPR repeats"],["TED%3AAF-C7YNY6-F1-model_v4_TED02","TED highly-symmetric fold AF-C7YNY6-F1-model_v4_TED02"]],"b":[["unclassified/sansalvamide.yaml","sansalvamide"]]},{"id":"NCBITaxon:66374","l":"Streptomyces nojiriensis","na":1,"nb":3,"a":[["TED%3AAF-A0A8A6HBY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8A6HBY6-F1-model_v4_TED01"]],"b":[["carbohydrates/streptothricin-d.yaml","streptothricin D"],["carbohydrates/streptothricin-e.yaml","streptothricin E"],["carbohydrates/streptothricin-f.yaml","streptothricin F"]]},{"id":"NCBITaxon:68239","l":"Streptomyces mirabilis","na":1,"nb":3,"a":[["TED%3AAF-A0A1I2Y4U7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2Y4U7-F1-model_v4_TED01"]],"b":[["alkaloids/azodyrecin-a.yaml","Azodyrecin A"],["alkaloids/azodyrecin-b.yaml","Azodyrecin B"],["alkaloids/azodyrecin-c.yaml","Azodyrecin C"]]},{"id":"NCBITaxon:715","l":"Actinobacillus pleuropneumoniae","na":3,"nb":1,"a":[["Pfam%3APF26002","AprE-like, beta-barrel domain"],["Pfam%3APF02794","RTX toxin acyltransferase family"],["PROSITE%3APS00543","HlyD family secretion proteins signature"]],"b":[["unclassified/capsular-polysaccharide.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:717774","l":"Marinomonas mediterranea MMB-1","na":1,"nb":3,"a":[["TED%3AAF-F2K4E6-F1-model_v4_TED01","TED novel fold AF-F2K4E6-F1-model_v4_TED01"]],"b":[["alkaloids/bistribromopyrrole.yaml","bistribromopyrrole"],["shikimates_and_phenylpropanoids/bromophene.yaml","bromophene"],["shikimates_and_phenylpropanoids/pentabromopseudilin.yaml","pentabromopseudilin"]]},{"id":"NCBITaxon:749414","l":"","na":3,"nb":1,"a":[["Pfam%3APF14509","Glycosyl-hydrolase 97 C-terminal, oligomerisation"],["Pfam%3APF14508","Glycosyl-hydrolase 97 N-terminal"],["Pfam%3APF10566","Glycoside hydrolase 97"]],"b":[["polyketides/nanchangmycin.yaml","nanchangmycin"]]},{"id":"NCBITaxon:889282","l":"Polyangium spumosum","na":3,"nb":1,"a":[["TED%3AAF-A0A6N7PQI9-F1-model_v4_TED01","TED novel fold AF-A0A6N7PQI9-F1-model_v4_TED01"],["TED%3AAF-A0A6N7PTT9-F1-model_v4_TED02","TED novel fold AF-A0A6N7PTT9-F1-model_v4_TED02"],["TED%3AAF-A0A6N7Q2E0-F1-model_v4_TED01","TED novel fold AF-A0A6N7Q2E0-F1-model_v4_TED01"]],"b":[["unclassified/antalid.yaml","antalid"]]},{"id":"NCBITaxon:95486","l":"Burkholderia cenocepacia","na":3,"nb":1,"a":[["TED%3AAF-A0A109EHZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A109EHZ6-F1-model_v4_TED01"],["TED%3AAF-A0A071M3L2-F1-model_v4_TED01","TED novel fold AF-A0A071M3L2-F1-model_v4_TED01"],["TED%3AAF-A0A088UYL8-F1-model_v4_TED01","TED novel fold AF-A0A088UYL8-F1-model_v4_TED01"]],"b":[["unclassified/ornibactin-c8.yaml","ornibactin C8"]]},{"id":"RHEA:32647","l":"","na":3,"nb":1,"a":[["EC%3A2.1.1.254","erythromycin 3'-O-methyltransferase"],["RHEA%3A32647","erythromycin C + S-adenosyl-L-methionine = erythromycin A + S-adenosyl-L-homocysteine + H(+)"],["GO%3A0102307","erythromycin 3'-o-methyltransferase activity"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"UniProt:P22629.","l":"","na":3,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_4IR","4IR-binding site"],["proteintraitsmech%3ABIOLIP_HL9","HL9-binding site"],["proteintraitsmech%3ABIOLIP_ZOE","ZOE-binding site"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"UniProt:P48635","l":"","na":3,"nb":1,"a":[["EC%3A1.14.13.154","erythromycin 12 hydroxylase"],["RHEA%3A32631","erythromycin D + NADPH + O2 + H(+) = erythromycin C + NADP(+) + H2O"],["proteintraitsmech%3ABIOLIP_KLN","KLN-binding site"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"UniProt:Q00975","l":"","na":3,"nb":1,"a":[["GO%3A1903235","positive regulation of calcium ion-dependent exocytosis of neurotransmitter"],["ELM%3AELME000451","LIG_PDZ_Wminus1_1"],["proteintraitsmech%3ABIOLIP_PT5","PT5-binding site"]],"b":[["alkaloids/odilorhabdin-noso-95c.yaml","odilorhabdin NOSO-95C"]]},{"id":"UniProt:Q16584","l":"","na":3,"nb":1,"a":[["CDD%3Acd14147","STKc_MLK3"],["CDD%3Acd12059","SH3_MLK1-3"],["InterPro%3AIPR035779","MLK1-3, SH3 domain"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"]]},{"id":"CHEBI:10106","l":"zearalenone","na":2,"nb":1,"a":[["RHEA%3A79255","zearalenone + H2O = hydrolyzed zearalenone + H(+)"],["proteintraitsmech%3ABIOLIP_ZER","ZER-binding site"]],"b":[["polyketides/zearalenone.yaml","zearalenone"]]},{"id":"CHEBI:132426","l":"chondrochloren A","na":2,"nb":1,"a":[["EC%3A4.1.1.129","1'-carboxy-chondrochloren decarboxylase"],["RHEA%3A81491","1'-carboxy-chondrochloren A + FAD + 2 H(+) = chondrochloren A + FADH2 + CO2"]],"b":[["polyketides/chondrochloren-a.yaml","chondrochloren A"]]},{"id":"CHEBI:134612","l":"staphyloferrin B","na":2,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_134612","requires staphyloferrin B"],["proteintraitsmech%3ABIOLIP_SE8","SE8-binding site"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"]]},{"id":"CHEBI:135511","l":"rebeccamycin","na":2,"nb":1,"a":[["EC%3A2.1.1.164","demethylrebeccamycin-D-glucose O-methyltransferase"],["RHEA%3A27353","4'-demethylrebeccamycin + S-adenosyl-L-methionine = rebeccamycin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["alkaloids/rebeccamycin.yaml","rebeccamycin"]]},{"id":"CHEBI:137562","l":"(+)-eremophilene","na":2,"nb":1,"a":[["EC%3A4.2.3.164","(+)-eremophilene synthase"],["RHEA%3A52804","(2E,6E)-farnesyl diphosphate = (+)-eremophilene + diphosphate"]],"b":[["terpenoids/eremophilene.yaml","(+)-eremophilene"]]},{"id":"CHEBI:138165","l":"(+)-(2S,3R,9R)-pristinol","na":2,"nb":1,"a":[["EC%3A4.2.3.182","pristinol synthase"],["RHEA%3A54372","(2E,6E)-farnesyl diphosphate + H2O = (+)-(2S,3R,9R)-pristinol + diphosphate"]],"b":[["terpenoids/2s-3r-9r-pristinol.yaml","(+)-(2S,3R,9R)-pristinol"]]},{"id":"CHEBI:139480","l":"(+)-O-methylkolavelool","na":2,"nb":1,"a":[["EC%3A2.1.1.347","(+)-O-methylkolavelool synthase"],["RHEA%3A55968","(+)-kolavelool + S-adenosyl-L-methionine = (+)-O-methylkolavelool + S-adenosyl-L-homocysteine + H(+)"]],"b":[["terpenoids/o-methylkolavelool.yaml","(+)-O-methylkolavelool"]]},{"id":"CHEBI:145066","l":"stemphyloxin II","na":2,"nb":1,"a":[["RHEA%3A61904","betaenone A + NADPH + O2 + H(+) = stemphyloxin II + NADP(+) + H2O"],["RHEA%3A62716","stemphyloxin I = stemphyloxin II"]],"b":[["polyketides/stemphyloxin-ii.yaml","stemphyloxin II"]]},{"id":"CHEBI:145070","l":"stemphyloxin I","na":2,"nb":1,"a":[["RHEA%3A62712","betaenone C + NADPH + O2 + H(+) = stemphyloxin I + NADP(+) + H2O"],["RHEA%3A62716","stemphyloxin I = stemphyloxin II"]],"b":[["polyketides/stemphyloxin-i.yaml","stemphyloxin I"]]},{"id":"CHEBI:146153","l":"ilicicolin B","na":2,"nb":1,"a":[["RHEA%3A63084","ilicicolin B + FADH2 + chloride + O2 = ilicicolin A + FAD + 2 H2O + H(+)"],["RHEA%3A63080","ilicicolinate B + AH2 + ATP = ilicicolin B + A + AMP + diphosphate"]],"b":[["unclassified/ilicicolin-b.yaml","ilicicolin B"]]},{"id":"CHEBI:155912","l":"aculene C","na":2,"nb":1,"a":[["RHEA%3A65108","aculene C + L-prolyl-[peptidyl-carrier protein] = aculene A + holo-[peptidyl-carrier protein]"],["RHEA%3A65112","aculene D + 2-oxoglutarate + O2 = aculene C + succinate + CO2 + H2O"]],"b":[["terpenoids/aculene-c.yaml","aculene C"]]},{"id":"CHEBI:15956","l":"biotin","na":2,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15956","requires biotin"],["proteintraitsmech%3ABIOLIP_BTN","BTN-binding site"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"CHEBI:16441","l":"linamarin","na":2,"nb":1,"a":[["EC%3A2.4.1.63","linamarin synthase"],["RHEA%3A20009","2-hydroxy-2-methylpropanenitrile + UDP-alpha-D-glucose = linamarin + UDP + H(+)"]],"b":[["amino_acids_and_peptides/linamarin.yaml","linamarin"]]},{"id":"CHEBI:17630","l":"kanamycin A","na":2,"nb":1,"a":[["MCSA%3A647","kanamycin nucleotidyltransferase"],["proteintraitsmech%3ABIOLIP_KAN","KAN-binding site"]],"b":[["carbohydrates/kanamycin-a.yaml","kanamycin A"]]},{"id":"CHEBI:17695","l":"casbene","na":2,"nb":1,"a":[["EC%3A4.2.3.8","casbene synthase"],["RHEA%3A14901","(2E,6E,10E)-geranylgeranyl diphosphate = casbene + diphosphate"]],"b":[["terpenoids/casbene.yaml","casbene"]]},{"id":"CHEBI:17939","l":"puromycin","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_PUY","PUY-binding site"]],"b":[["carbohydrates/puromycin.yaml","puromycin"]]},{"id":"CHEBI:2504","l":"aflatoxin B1","na":2,"nb":1,"a":[["EC%3A1.14.14.117","aflatoxin B synthase"],["RHEA%3A35759","8-O-methylsterigmatocystin + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = aflatoxin B1 + methanol + 2 oxidized [NADPH--hemoprotein reductase] + CO2 + H2O + 2 H(+)"]],"b":[["unclassified/aflatoxin-b1.yaml","aflatoxin B1"]]},{"id":"CHEBI:27826","l":"(S)-4-hydroxymandelonitrile β-D-glucoside","na":2,"nb":1,"a":[["EC%3A2.4.1.85","cyanohydrin beta-glucosyltransferase"],["RHEA%3A12853","(S)-4-hydroxymandelonitrile + UDP-alpha-D-glucose = dhurrin + UDP + H(+)"]],"b":[["amino_acids_and_peptides/s-4-hydroxymandelonitrile-d-glucoside.yaml","(S)-4-hydroxymandelonitrile β-D-glucoside"]]},{"id":"CHEBI:28283","l":"capsidiol","na":2,"nb":1,"a":[["EC%3A1.14.14.149","5-epiaristolochene 1,3-dihydroxylase"],["RHEA%3A28226","(+)-5-epi-aristolochene + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = capsidiol + 2 oxidized [NADPH--hemoprotein reductase] + 2 H2O + 2 H(+)"]],"b":[["terpenoids/capsidiol.yaml","capsidiol"]]},{"id":"CHEBI:29519","l":"","na":2,"nb":1,"a":[["EC%3A4.2.3.42","aphidicolan-16beta-ol synthase"],["RHEA%3A26213","9alpha-copalyl diphosphate + H2O = aphidicolan-16beta-ol + diphosphate"]],"b":[["terpenoids/aphidicolan-16-ol.yaml","aphidicolan-16β-ol"]]},{"id":"CHEBI:29673","l":"rifamycin SV","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]],"b":[["polyketides/rifamycin-sv.yaml","rifamycin SV"]]},{"id":"CHEBI:38229","l":"solanapyrone A","na":2,"nb":1,"a":[["EC%3A5.5.1.20","prosolanapyrone-III cycloisomerase"],["RHEA%3A31683","prosolanapyrone III = (-)-solanapyrone A"]],"b":[["polyketides/solanapyrone-a.yaml","solanapyrone A"]]},{"id":"CHEBI:42452","l":"formycin A","na":2,"nb":1,"a":[["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"],["proteintraitsmech%3ABIOLIP_FMC","FMC-binding site"]],"b":[["alkaloids/formycin-a.yaml","formycin A"]]},{"id":"CHEBI:48209","l":"aflatoxin B2","na":2,"nb":1,"a":[["EC%3A1.14.14.117","aflatoxin B synthase"],["RHEA%3A35763","8-O-methyldihydrosterigmatocystin + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = aflatoxin B2 + methanol + 2 oxidized [NADPH--hemoprotein reductase] + CO2 + H2O + 2 H(+)"]],"b":[["polyketides/aflatoxin-b2.yaml","aflatoxin B2"]]},{"id":"CHEBI:52317","l":"thalianol","na":2,"nb":1,"a":[["EC%3A5.4.99.31","thalianol synthase"],["RHEA%3A26160","(S)-2,3-epoxysqualene = thalianol"]],"b":[["terpenoids/thalianol.yaml","thalianol"]]},{"id":"CHEBI:61345","l":"chrysobactin","na":2,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_61345","requires chrysobactin"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["amino_acids_and_peptides/chrysobactin.yaml","chrysobactin"]]},{"id":"CHEBI:63465","l":"marneral","na":2,"nb":1,"a":[["EC%3A5.4.99.53","marneral synthase"],["RHEA%3A31875","(S)-2,3-epoxysqualene = marneral"]],"b":[["terpenoids/marneral.yaml","marneral"]]},{"id":"CHEBI:63702","l":"avermitilol","na":2,"nb":1,"a":[["EC%3A4.2.3.96","avermitilol synthase"],["RHEA%3A32023","(2E,6E)-farnesyl diphosphate + H2O = avermitilol + diphosphate"]],"b":[["terpenoids/avermitilol.yaml","avermitilol"]]},{"id":"CHEBI:63703","l":"(−)-δ-cadinene","na":2,"nb":1,"a":[["EC%3A4.2.3.97","(-)-delta-cadinene synthase"],["RHEA%3A32015","(2E,6E)-farnesyl diphosphate = (-)-delta-cadinene + diphosphate"]],"b":[["terpenoids/cadinene.yaml","(−)-δ-cadinene"]]},{"id":"CHEBI:63704","l":"(+)-Τ-muurolol","na":2,"nb":1,"a":[["EC%3A4.2.3.98","(+)-T-muurolol synthase"],["RHEA%3A32011","(2E,6E)-farnesyl diphosphate + H2O = (+)-T-muurolol + diphosphate"]],"b":[["terpenoids/muurolol.yaml","(+)-Τ-muurolol"]]},{"id":"CHEBI:64268","l":"","na":2,"nb":1,"a":[["EC%3A2.1.1.254","erythromycin 3'-O-methyltransferase"],["RHEA%3A32647","erythromycin C + S-adenosyl-L-methionine = erythromycin A + S-adenosyl-L-homocysteine + H(+)"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"CHEBI:6570","l":"lupeol","na":2,"nb":1,"a":[["EC%3A5.4.99.41","lupeol synthase"],["RHEA%3A31383","(S)-2,3-epoxysqualene = lupeol"]],"b":[["terpenoids/lupeol.yaml","lupeol"]]},{"id":"CHEBI:73237","l":"(−)-noscapine","na":2,"nb":1,"a":[["EC%3A1.1.1.415","noscapine synthase"],["RHEA%3A57404","narcotine hemiacetal + NAD(+) = noscapine + NADH + H(+)"]],"b":[["alkaloids/noscapine.yaml","(−)-noscapine"]]},{"id":"CHEBI:77772","l":"ilicicolin H","na":2,"nb":1,"a":[["RHEA%3A64568","3-[(2E,4E,8S,10E,12Z)-4,8-dimethyltetradeca-2,4,10,12-tetraenoyl]-4-hydroxy-5-(4-hydroxyphenyl)-1,2-dihydropyridin-2-one = ilicicolin H"],["RHEA%3A64564","8-epi-ilicicolin H = ilicicolin H"]],"b":[["alkaloids/ilicicolin-h.yaml","ilicicolin H"]]},{"id":"CHEBI:80049","l":"coelichelin","na":2,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_80049","requires coelichelin"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["amino_acids_and_peptides/coelichelin.yaml","coelichelin"]]},{"id":"CHEBI:82799","l":"(R)-nephthenol","na":2,"nb":1,"a":[["EC%3A4.2.3.149","nephthenol synthase"],["RHEA%3A42992","(2E,6E,10E)-geranylgeranyl diphosphate + H2O = (R)-nephthenol + diphosphate"]],"b":[["terpenoids/r-nephthenol.yaml","(R)-nephthenol"]]},{"id":"CHEBI:84711","l":"staphyloferrin A","na":2,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_84711","requires staphyloferrin A"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["unclassified/staphyloferrin-a.yaml","staphyloferrin A"]]},{"id":"CHEBI:86012","l":"oxetanocin A","na":2,"nb":1,"a":[["EC%3A3.1.3.112","4'-phosphooxetanocin A phosphatase"],["RHEA%3A81367","4'-phosphooxetanocin A + H2O = oxetanocin A + phosphate"]],"b":[["carbohydrates/oxetanocin-a.yaml","oxetanocin A"]]},{"id":"NCBITaxon:105351","l":"Aspergillus awamori","na":2,"nb":1,"a":[["PROSITE%3APS00820","Glucoamylase active site region signature"],["TED%3AAF-A0A401KM36-F1-model_v4_TED03","TED novel fold AF-A0A401KM36-F1-model_v4_TED03"]],"b":[["alkaloids/aspergillin-pz.yaml","aspergillin PZ"]]},{"id":"NCBITaxon:105696","l":"Epicoccum nigrum","na":1,"nb":2,"a":[["TED%3AAF-A0A1Y2LQ80-F1-model_v4_TED02","TED novel fold AF-A0A1Y2LQ80-F1-model_v4_TED02"]],"b":[["polyketides/epipyrone-a.yaml","epipyrone A"],["terpenoids/carotene.yaml","β-carotene"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":1,"nb":2,"a":[["TED%3AAF-A0A367PA30-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A367PA30-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/cupriachelin.yaml","cupriachelin"],["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"]]},{"id":"NCBITaxon:1214568","l":"Diaporthe amygdali","na":1,"nb":2,"a":[["Pfam%3APF05704","Capsular polysaccharide synthesis protein"]],"b":[["terpenoids/5-9-10-labda-8-20-13-dien-15-yl-diphosphate.yaml","5α,9α,10β-labda-8(20),13-dien-15-yl diphosphate"],["terpenoids/phyllocladan-16-ol.yaml","phyllocladan-16α-ol"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":2,"nb":1,"a":[["Pfam%3APF22538","Hexaprenyl diphosphate synthase, small subunit"],["PROSITE%3APS01066","Undecaprenyl pyrophosphate synthase family signature"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:1278073","l":"","na":2,"nb":1,"a":[["TED%3AAF-L7U5Z3-F1-model_v4_TED02","TED novel fold AF-L7U5Z3-F1-model_v4_TED02"],["TED%3AAF-L7UEI7-F1-model_v4_TED03","TED novel fold AF-L7UEI7-F1-model_v4_TED03"]],"b":[["polyketides/phenalamide-a2.yaml","phenalamide A2"]]},{"id":"NCBITaxon:1288362","l":"Actinoplanes sp. ATCC 53533","na":2,"nb":1,"a":[["TED%3AAF-A0A428XH31-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A428XH31-F1-model_v4_TED01"],["TED%3AAF-A0A428XQY1-F1-model_v4_TED01","TED novel fold AF-A0A428XQY1-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/uk-68-597.yaml","UK-68,597"]]},{"id":"NCBITaxon:1353533","l":"Pseudoalteromonas luteoviolacea 2ta16","na":2,"nb":1,"a":[["TED%3AAF-V4HNX8-F1-model_v4_TED01","TED novel fold AF-V4HNX8-F1-model_v4_TED01"],["TED%3AAF-V4JDU9-F1-model_v4_TED01","TED novel fold AF-V4JDU9-F1-model_v4_TED01"]],"b":[["shikimates_and_phenylpropanoids/pentabromopseudilin.yaml","pentabromopseudilin"]]},{"id":"NCBITaxon:1392248","l":"Aspergillus campestris (strain IBT 28561)","na":2,"nb":1,"a":[["Pfam%3APF11954","Domain of unknown function (DUF3471)"],["TED%3AAF-A0A2I1D498-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I1D498-F1-model_v4_TED01"]],"b":[["shikimates_and_phenylpropanoids/chlorflavonin.yaml","chlorflavonin"]]},{"id":"NCBITaxon:1449976","l":"Kutzneria albida DSM 43870","na":1,"nb":2,"a":[["TED%3AAF-W5WK35-F1-model_v4_TED01","TED novel fold AF-W5WK35-F1-model_v4_TED01"]],"b":[["carbohydrates/huimycin.yaml","huimycin"],["unclassified/aculeximycin.yaml","aculeximycin"]]},{"id":"NCBITaxon:1450533","l":"Aspergillus niger CBS 101883","na":1,"nb":2,"a":[["TED%3AAF-A0A319AKL5-F1-model_v4_TED01","TED novel fold AF-A0A319AKL5-F1-model_v4_TED01"]],"b":[["polyketides/campyrone-b.yaml","campyrone B"],["polyketides/pyrophen.yaml","pyrophen"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":2,"nb":1,"a":[["PROSITE%3APS01120","Urease nickel ligands signature"],["PROSITE%3APS00145","Urease active site"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:148305","l":"Pyricularia grisea","na":1,"nb":2,"a":[["TED%3AAF-A0A6P8AZV3-F1-model_v4_TED01","TED novel fold AF-A0A6P8AZV3-F1-model_v4_TED01"]],"b":[["alkaloids/pyrichalasin-h.yaml","pyrichalasin H"],["polyketides/terrestric-acid.yaml","terrestric acid"]]},{"id":"NCBITaxon:1519471","l":"Streptomyces sp. NRRL S-4","na":1,"nb":2,"a":[["TED%3AAF-A0A0N0YGV9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0N0YGV9-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/thiostreptamide-s4.yaml","thiostreptamide S4"],["polyketides/venturicidin-a.yaml","venturicidin A"]]},{"id":"NCBITaxon:161398","l":"Pseudoalteromonas phenolica","na":2,"nb":1,"a":[["TED%3AAF-A0A4Q7IPD1-F1-model_v4_TED01","TED novel fold AF-A0A4Q7IPD1-F1-model_v4_TED01"],["TED%3AAF-A0A4Q7IRU1-F1-model_v4_TED01","TED novel fold AF-A0A4Q7IRU1-F1-model_v4_TED01"]],"b":[["shikimates_and_phenylpropanoids/bromophene.yaml","bromophene"]]},{"id":"NCBITaxon:164546","l":"Cupriavidus taiwanensis","na":2,"nb":1,"a":[["TED%3AAF-A0A375CFL3-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A375CFL3-F1-model_v4_TED04"],["TED%3AAF-A0A375EJW3-F1-model_v4_TED03","TED novel fold AF-A0A375EJW3-F1-model_v4_TED03"]],"b":[["amino_acids_and_peptides/taiwachelin.yaml","taiwachelin"]]},{"id":"NCBITaxon:1654360","l":"Photobacterium galatheae","na":2,"nb":1,"a":[["TED%3AAF-A0A066RSN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A066RSN6-F1-model_v4_TED01"],["TED%3AAF-A0A066RLQ8-F1-model_v4_TED01","TED novel fold AF-A0A066RLQ8-F1-model_v4_TED01"]],"b":[["alkaloids/holomycin.yaml","holomycin"]]},{"id":"NCBITaxon:179408","l":"Oscillatoria nigro-viridis PCC 7112","na":2,"nb":1,"a":[["TED%3AAF-K9VAQ4-F1-model_v4_TED02","TED highly-symmetric fold AF-K9VAQ4-F1-model_v4_TED02"],["TED%3AAF-K9VBA8-F1-model_v4_TED02","TED novel fold AF-K9VBA8-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/viridisamide-a.yaml","viridisamide A"]]},{"id":"NCBITaxon:182096","l":"Aspergillus chevalieri","na":1,"nb":2,"a":[["TED%3AAF-A0A7R7VIB2-F1-model_v4_TED01","TED novel fold AF-A0A7R7VIB2-F1-model_v4_TED01"]],"b":[["polyketides/flavoglaucin.yaml","flavoglaucin"],["polyketides/sterigmatocystin.yaml","sterigmatocystin"]]},{"id":"NCBITaxon:1883078","l":"Dentipellis sp. KUC8613","na":2,"nb":1,"a":[["TED%3AAF-A0A5B1QTZ2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A5B1QTZ2-F1-model_v4_TED03"],["TED%3AAF-A0A5B1QFU0-F1-model_v4_TED02","TED novel fold AF-A0A5B1QFU0-F1-model_v4_TED02"]],"b":[["terpenoids/cyatha-3-12-diene.yaml","(-)-Cyatha-3,12-diene"]]},{"id":"NCBITaxon:1896","l":"Streptomyces bikiniensis","na":1,"nb":2,"a":[["Pfam%3APF00908","dTDP-4-dehydrorhamnose 3,5-epimerase"]],"b":[["carbohydrates/streptomycin.yaml","streptomycin"],["polyketides/chalcomycin-a.yaml","chalcomycin A"]]},{"id":"NCBITaxon:1921","l":"Streptomyces olivaceoviridis","na":1,"nb":2,"a":[["Pfam%3APF01356","Alpha amylase inhibitor"]],"b":[["polyketides/resistoflavine.yaml","resistoflavine"],["polyketides/resistomycin.yaml","resistomycin"]]},{"id":"NCBITaxon:1933","l":"Streptoalloteichus tenebrarius","na":2,"nb":1,"a":[["Pfam%3APF16861","Carbamoyltransferase C-terminus"],["Pfam%3APF02543","Carbamoyltransferase N-terminus"]],"b":[["carbohydrates/tobramycin.yaml","tobramycin"]]},{"id":"NCBITaxon:205918","l":"Pseudomonas syringae pv. syringae B728a","na":1,"nb":2,"a":[["Pfam%3APF15457","Type III T3SS secreted effector HopW1-1/HopPmaA"]],"b":[["alkaloids/secimide.yaml","secimide"],["unclassified/syringomycin.yaml","syringomycin"]]},{"id":"NCBITaxon:216595","l":"","na":2,"nb":1,"a":[["Pfam%3APF04996","Succinylarginine dihydrolase"],["TED%3AAF-A0A0G4E5V4-F1-model_v4_TED01","TED novel fold AF-A0A0G4E5V4-F1-model_v4_TED01"]],"b":[["unclassified/viscosin.yaml","viscosin"]]},{"id":"NCBITaxon:229535","l":"Penicillium nordicum","na":2,"nb":1,"a":[["TED%3AAF-A0A0M8NW73-F1-model_v4_TED02","TED novel fold AF-A0A0M8NW73-F1-model_v4_TED02"],["TED%3AAF-A0A0N0RXF0-F1-model_v4_TED02","TED novel fold AF-A0A0N0RXF0-F1-model_v4_TED02"]],"b":[["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"]]},{"id":"NCBITaxon:230091","l":"Micromonospora endolithica","na":1,"nb":2,"a":[["TED%3AAF-A0A3A9ZCA3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3A9ZCA3-F1-model_v4_TED02"]],"b":[["polyketides/loseolamycin-a1.yaml","loseolamycin A1"],["polyketides/loseolamycin-a2.yaml","loseolamycin A2"]]},{"id":"NCBITaxon:234621","l":"Rhodococcus erythropolis PR4","na":1,"nb":2,"a":[["TED%3AAF-C0ZLI2-F1-model_v4_TED01","TED novel fold AF-C0ZLI2-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/heterobactin-a.yaml","heterobactin A"],["amino_acids_and_peptides/heterobactin-s2.yaml","heterobactin S2"]]},{"id":"NCBITaxon:237631","l":"Ustilago maydis (strain 521 / FGSC 9021)","na":2,"nb":1,"a":[["TED%3AAF-A0A0D1E1G8-F1-model_v4_TED01","TED novel fold AF-A0A0D1E1G8-F1-model_v4_TED01"],["TED%3AAF-A0A0D1E4C0-F1-model_v4_TED02","TED novel fold AF-A0A0D1E4C0-F1-model_v4_TED02"]],"b":[["fatty_acids/ustilagic-acid.yaml","ustilagic acid"]]},{"id":"NCBITaxon:2607326","l":"Streptomonospora sp. PA3","na":2,"nb":1,"a":[["TED%3AAF-A0A6N8GAL7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8GAL7-F1-model_v4_TED01"],["TED%3AAF-A0A6N8GG78-F1-model_v4_TED01","TED novel fold AF-A0A6N8GG78-F1-model_v4_TED01"]],"b":[["polyketides/persiamycin-a.yaml","persiamycin A"]]},{"id":"NCBITaxon:264445","l":"Streptomyces hygroscopicus subsp. limoneus","na":1,"nb":2,"a":[["TED%3AAF-A0A0S2PAJ8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0S2PAJ8-F1-model_v4_TED03"]],"b":[["carbohydrates/validamycin-a-2.yaml","validamycin A"],["carbohydrates/validamycin-a.yaml","validamycin A"]]},{"id":"NCBITaxon:272123","l":"","na":2,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_FbnM","FbnM-type Dmaq biosynthesis peroxidase subunit family"],["TED%3AAF-K9ZFU9-F1-model_v4_TED01","TED highly-symmetric fold AF-K9ZFU9-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/anachelin.yaml","anachelin"]]},{"id":"NCBITaxon:272559","l":"","na":2,"nb":1,"a":[["Pfam%3APF16355","Domain of unknown function (DUF4982)"],["Pfam%3APF14229","Domain of unknown function (DUF4332)"]],"b":[["fatty_acids/galactosylceramide.yaml","α-galactosylceramide"]]},{"id":"NCBITaxon:316274","l":"Herpetosiphon aurantiacus DSM 785","na":1,"nb":2,"a":[["TED%3AAF-A9AZN6-F1-model_v4_TED02","TED highly-symmetric fold AF-A9AZN6-F1-model_v4_TED02"]],"b":[["alkaloids/auriculamide.yaml","auriculamide"],["terpenoids/o-methylkolavelool.yaml","(+)-O-methylkolavelool"]]},{"id":"NCBITaxon:318","l":"Pseudomonas savastanoi pv. glycinea","na":2,"nb":1,"a":[["Pfam%3APF05394","Avirulence protein"],["TED%3AAF-A0A3M5VJX5-F1-model_v4_TED01","TED novel fold AF-A0A3M5VJX5-F1-model_v4_TED01"]],"b":[["polyketides/coronatine.yaml","coronatine"]]},{"id":"NCBITaxon:318829","l":"Magnaporthe oryzae","na":2,"nb":1,"a":[["TED%3AAF-A0A4P7NAU2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P7NAU2-F1-model_v4_TED01"],["TED%3AAF-A0A4P7MZB7-F1-model_v4_TED02","TED novel fold AF-A0A4P7MZB7-F1-model_v4_TED02"]],"b":[["polyketides/nectriapyrone.yaml","nectriapyrone"]]},{"id":"NCBITaxon:322710","l":"Azotobacter vinelandii DJ","na":2,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_Orn_monoox","Metallophore-associated ornithine N5-monooxygenase family"],["proteintraitsmech%3AELIFE109154_PvdP","Pyoverdine chromophore maturation tyrosinase family"]],"b":[["amino_acids_and_peptides/azotobactin-d.yaml","azotobactin D"]]},{"id":"NCBITaxon:333849","l":"","na":2,"nb":1,"a":[["Pfam%3APF08546","Ketopantoate reductase PanE/ApbA C terminal"],["Pfam%3APF02558","Ketopantoate reductase PanE/ApbA"]],"b":[["amino_acids_and_peptides/enterocin-a.yaml","enterocin A"]]},{"id":"NCBITaxon:338584","l":"Polymorphospora rubra","na":2,"nb":1,"a":[["TED%3AAF-A0A810NDK9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A810NDK9-F1-model_v4_TED01"],["TED%3AAF-A0A810N2K6-F1-model_v4_TED01","TED novel fold AF-A0A810N2K6-F1-model_v4_TED01"]],"b":[["terpenoids/trehangelin.yaml","trehangelin"]]},{"id":"NCBITaxon:33899","l":"Streptomyces galilaeus","na":1,"nb":2,"a":[["Pfam%3APF21036","Erythromycin biosynthesis protein CIII-like, N-terminal domain"]],"b":[["polyketides/aclacinomycin.yaml","aclacinomycin"],["polyketides/cinerubin-b.yaml","cinerubin B"]]},{"id":"NCBITaxon:339670","l":"Burkholderia ambifaria AMMD","na":1,"nb":2,"a":[["Pfam%3APF11004","3-deoxy-D-manno-oct-2-ulosonic acid (Kdo) hydroxylase"]],"b":[["alkaloids/cepaciachelin.yaml","cepaciachelin"],["polyketides/enacyloxin-iia.yaml","enacyloxin IIa"]]},{"id":"NCBITaxon:348901","l":"Cercospora zeina","na":2,"nb":1,"a":[["TED%3AAF-A0A2I0RIM7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I0RIM7-F1-model_v4_TED01"],["TED%3AAF-A0A2I0RWG4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I0RWG4-F1-model_v4_TED01"]],"b":[["polyketides/cercosporin-2.yaml","cercosporin"]]},{"id":"NCBITaxon:349521","l":"Hahella chejuensis KCTC 2396","na":2,"nb":1,"a":[["TED%3AAF-Q2SFS2-F1-model_v4_TED01","TED novel fold AF-Q2SFS2-F1-model_v4_TED01"],["TED%3AAF-Q2SI43-F1-model_v4_TED03","TED novel fold AF-Q2SI43-F1-model_v4_TED03"]],"b":[["alkaloids/prodigiosin-2.yaml","prodigiosin"]]},{"id":"NCBITaxon:36746","l":"Pseudomonas cichorii","na":1,"nb":2,"a":[["TED%3AAF-A0A3M4VH83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M4VH83-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/cichofactin-a.yaml","cichofactin A"],["amino_acids_and_peptides/cichofactin-b.yaml","cichofactin B"]]},{"id":"NCBITaxon:3755","l":"Prunus dulcis","na":2,"nb":1,"a":[["PROSITE%3APS00305","11-S plant seed storage proteins signature"],["TED%3AAF-A0A5E4FP94-F1-model_v4_TED01","TED novel fold AF-A0A5E4FP94-F1-model_v4_TED01"]],"b":[["shikimates_and_phenylpropanoids/4-hydroxy-3-prenylbenzoic-acid.yaml","4-hydroxy-3-prenylbenzoic acid"]]},{"id":"NCBITaxon:377629","l":"Teredinibacter turnerae T7901","na":1,"nb":2,"a":[["TED%3AAF-C5BKS7-F1-model_v4_TED02","TED novel fold AF-C5BKS7-F1-model_v4_TED02"]],"b":[["polyketides/tartrolon-d.yaml","tartrolon D"],["polyketides/tartrolon-e.yaml","tartrolon E"]]},{"id":"NCBITaxon:38300","l":"Streptomyces pristinaespiralis","na":1,"nb":2,"a":[["Pfam%3APF12323","Helix-turn-helix domain"]],"b":[["amino_acids_and_peptides/pristinin-a3.yaml","pristinin A3"],["terpenoids/2s-3r-9r-pristinol.yaml","(+)-(2S,3R,9R)-pristinol"]]},{"id":"NCBITaxon:38313","l":"Shewanella algae","na":2,"nb":1,"a":[["TED%3AAF-A0A1S2T8W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S2T8W3-F1-model_v4_TED01"],["TED%3AAF-A0A8A5EFG1-F1-model_v4_TED02","TED novel fold AF-A0A8A5EFG1-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/avaroferrin.yaml","avaroferrin"]]},{"id":"NCBITaxon:413071","l":"Trichoderma virens Gv29-8","na":1,"nb":2,"a":[["Pfam%3APF07249","Cerato-platanin"]],"b":[["polyketides/trichoxide.yaml","trichoxide"],["unclassified/gliovirin.yaml","gliovirin"]]},{"id":"NCBITaxon:42881","l":"Streptomyces chromofuscus","na":1,"nb":2,"a":[["TED%3AAF-A0A7M2T2Z7-F1-model_v4_TED01","TED novel fold AF-A0A7M2T2Z7-F1-model_v4_TED01"]],"b":[["alkaloids/indigoidine.yaml","indigoidine"],["polyketides/herboxidiene.yaml","herboxidiene"]]},{"id":"NCBITaxon:436515","l":"Variovorax boronicumulans","na":1,"nb":2,"a":[["TED%3AAF-A0A250DMB0-F1-model_v4_TED01","TED novel fold AF-A0A250DMB0-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/variochelin-a.yaml","variochelin A"],["amino_acids_and_peptides/variochelin-b.yaml","variochelin B"]]},{"id":"NCBITaxon:441959","l":"Talaromyces stipitatus ATCC 10500","na":1,"nb":2,"a":[["Pfam%3APF26719","ATPase synthesis protein 25, C-terminal TPR repeats"]],"b":[["polyketides/duclauxin.yaml","duclauxin"],["shikimates_and_phenylpropanoids/stipitatic-acid.yaml","stipitatic acid"]]},{"id":"NCBITaxon:446","l":"Legionella pneumophila","na":2,"nb":1,"a":[["Pfam%3APF14860","DrrA phosphatidylinositol 4-phosphate binding domain"],["TED%3AAF-A0A822WCM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A822WCM6-F1-model_v4_TED01"]],"b":[["fatty_acids/lipopolysaccharide.yaml","lipopolysaccharide"]]},{"id":"NCBITaxon:45151","l":"Pyrenophora tritici-repentis","na":2,"nb":1,"a":[["TED%3AAF-A0A2W1ECP7-F1-model_v4_TED01","TED novel fold AF-A0A2W1ECP7-F1-model_v4_TED01"],["TED%3AAF-A0A834SF78-F1-model_v4_TED01","TED novel fold AF-A0A834SF78-F1-model_v4_TED01"]],"b":[["unclassified/triticone-b.yaml","triticone B"]]},{"id":"NCBITaxon:4558","l":"Sorghum bicolor","na":1,"nb":2,"a":[["TED%3AAF-A0A1W0W5T3-F1-model_v4_TED02","TED novel fold AF-A0A1W0W5T3-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/s-4-hydroxymandelonitrile-d-glucoside.yaml","(S)-4-hydroxymandelonitrile β-D-glucoside"],["shikimates_and_phenylpropanoids/alternariol.yaml","alternariol"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":2,"nb":1,"a":[["PROSITE%3APS00820","Glucoamylase active site region signature"],["TED%3AAF-A0A7I9G6Y3-F1-model_v4_TED02","TED novel fold AF-A0A7I9G6Y3-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":2,"nb":1,"a":[["Pfam%3APF07833","Copper amine oxidase N-terminal domain"],["TED%3AAF-A0A447L715-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A447L715-F1-model_v4_TED02"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:578457","l":"","na":2,"nb":1,"a":[["TED%3AAF-F8NT94-F1-model_v4_TED01","TED highly-symmetric fold AF-F8NT94-F1-model_v4_TED01"],["TED%3AAF-F8NMD8-F1-model_v4_TED01","TED novel fold AF-F8NMD8-F1-model_v4_TED01"]],"b":[["terpenoids/ent-kauren-16alpha-ol.yaml","ent-kauren-16alpha-ol"]]},{"id":"NCBITaxon:58291","l":"Rhizopus microsporus","na":2,"nb":1,"a":[["TED%3AAF-A0A1X0RNA5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1X0RNA5-F1-model_v4_TED03"],["TED%3AAF-A0A1X0S5N4-F1-model_v4_TED01","TED novel fold AF-A0A1X0S5N4-F1-model_v4_TED01"]],"b":[["unclassified/rhizoxin-a.yaml","rhizoxin A"]]},{"id":"NCBITaxon:587753","l":"Pseudomonas chlororaphis","na":2,"nb":1,"a":[["TED%3AAF-A0A8A9Z2C4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A8A9Z2C4-F1-model_v4_TED03"],["TED%3AAF-A0A0A6DEM6-F1-model_v4_TED01","TED novel fold AF-A0A0A6DEM6-F1-model_v4_TED01"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"NCBITaxon:60894","l":"Saccharopolyspora spinosa","na":1,"nb":2,"a":[["Pfam%3APF03559","NDP-hexose 2,3-dehydratase"]],"b":[["polyketides/a83543a.yaml","A83543A"],["polyketides/spinosyn-d.yaml","spinosyn D"]]},{"id":"NCBITaxon:62101","l":"Candidatus Endobugula sertula","na":1,"nb":2,"a":[["TED%3AAF-A0A1D2QPY2-F1-model_v4_TED01","TED novel fold AF-A0A1D2QPY2-F1-model_v4_TED01"]],"b":[["polyketides/bryostatin-2.yaml","bryostatin"],["polyketides/bryostatin.yaml","bryostatin"]]},{"id":"NCBITaxon:634771","l":"Chitinophaga eiseniae","na":1,"nb":2,"a":[["TED%3AAF-A0A847SE20-F1-model_v4_TED01","TED novel fold AF-A0A847SE20-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/pentacitidin-a.yaml","pentacitidin A"],["amino_acids_and_peptides/pentacitidin-b.yaml","pentacitidin B"]]},{"id":"NCBITaxon:643403","l":"Streptomyces sp. MK730-62F2","na":1,"nb":2,"a":[["Pfam%3APF14269","Arylsulfotransferase (ASST)"]],"b":[["carbohydrates/caprazamycin-aglycon.yaml","caprazamycin aglycon"],["carbohydrates/caprazamycin.yaml","caprazamycin"]]},{"id":"NCBITaxon:65","l":"Herpetosiphon aurantiacus","na":1,"nb":2,"a":[["Pfam%3APF09520","Type II restriction endonuclease, HinfI"]],"b":[["alkaloids/auriculamide.yaml","auriculamide"],["terpenoids/o-methylkolavelool.yaml","(+)-O-methylkolavelool"]]},{"id":"NCBITaxon:6573","l":"Mizuhopecten yessoensis","na":2,"nb":1,"a":[["TED%3AAF-A0A210PVN9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A210PVN9-F1-model_v4_TED02"],["TED%3AAF-A0A210PMU5-F1-model_v4_TED01","TED novel fold AF-A0A210PMU5-F1-model_v4_TED01"]],"b":[["alkaloids/gonyautoxin-2.yaml","gonyautoxin 2"]]},{"id":"NCBITaxon:66431","l":"Streptomyces thioluteus","na":1,"nb":2,"a":[["Pfam%3APF11583","P-aminobenzoate N-oxygenase AurF"]],"b":[["alkaloids/sf2768.yaml","SF2768"],["polyketides/aureothin.yaml","aureothin"]]},{"id":"NCBITaxon:6848","l":"Carcinoscorpius rotundicauda","na":1,"nb":2,"a":[["Pfam%3APF02035","Coagulin"]],"b":[["alkaloids/neosaxitoxin.yaml","neosaxitoxin"],["alkaloids/saxitoxin.yaml","saxitoxin"]]},{"id":"NCBITaxon:7787","l":"Tetronarce californica","na":2,"nb":1,"a":[["PROSITE%3APS00405","43 Kd postsynaptic protein signature"],["Pfam%3APF10579","Rapsyn N-terminal myristoylation and linker region"]],"b":[["alkaloids/huperzine-a.yaml","huperzine A"]]},{"id":"NCBITaxon:78410","l":"Neonectria ditissima","na":1,"nb":2,"a":[["TED%3AAF-A0A0P7AKS8-F1-model_v4_TED02","TED novel fold AF-A0A0P7AKS8-F1-model_v4_TED02"]],"b":[["unclassified/colletochlorin-b.yaml","Colletochlorin B"],["unclassified/colletorin-b.yaml","Colletorin B"]]},{"id":"NCBITaxon:79329","l":"Chitinophaga pinensis","na":2,"nb":1,"a":[["TED%3AAF-A0A5C6LK20-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C6LK20-F1-model_v4_TED01"],["TED%3AAF-A0A5C6LKB6-F1-model_v4_TED01","TED novel fold AF-A0A5C6LKB6-F1-model_v4_TED01"]],"b":[["polyketides/flexirubin.yaml","flexirubin"]]},{"id":"NCBITaxon:945553","l":"","na":2,"nb":1,"a":[["TED%3AAF-A0A0D2NQE0-F1-model_v4_TED01","TED novel fold AF-A0A0D2NQE0-F1-model_v4_TED01"],["TED%3AAF-A0A0D2PBZ7-F1-model_v4_TED01","TED novel fold AF-A0A0D2PBZ7-F1-model_v4_TED01"]],"b":[["terpenoids/naematolin.yaml","naematolin"]]},{"id":"NCBITaxon:985895","l":"","na":2,"nb":1,"a":[["TED%3AAF-E5A7U7-F1-model_v4_TED01","TED novel fold AF-E5A7U7-F1-model_v4_TED01"],["TED%3AAF-E5A9E1-F1-model_v4_TED03","TED novel fold AF-E5A9E1-F1-model_v4_TED03"]],"b":[["terpenoids/2-cis-abscisic-acid.yaml","2-cis-abscisic acid"]]},{"id":"RHEA:32631","l":"","na":2,"nb":1,"a":[["EC%3A1.14.13.154","erythromycin 12 hydroxylase"],["RHEA%3A32631","erythromycin D + NADPH + O2 + H(+) = erythromycin C + NADP(+) + H2O"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"RHEA:40299","l":"","na":2,"nb":1,"a":[["EC%3A1.14.15.35","6-deoxyerythronolide B hydroxylase"],["RHEA%3A40299","6-deoxyerythronolide B + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = erythronolide B + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"UniProt:O00763.","l":"","na":2,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RCP","RCP-binding site"],["proteintraitsmech%3ABIOLIP_S1A","S1A-binding site"]],"b":[["polyketides/soraphen-a.yaml","soraphen A"]]},{"id":"UniProt:P00516","l":"","na":2,"nb":1,"a":[["EC%3A2.7.11.12","cGMP-dependent protein kinase"],["Pfam%3APF16808","Coiled-coil N-terminus of cGMP-dependent protein kinase"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P00517","l":"","na":1,"nb":2,"a":[["MCSA%3A757","cAMP-dependent protein kinase"]],"b":[["alkaloids/methylarcyriarubin.yaml","methylarcyriarubin"],["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P04058.","l":"","na":2,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_03S","03S-binding site"],["proteintraitsmech%3ABIOLIP_AA7","AA7-binding site"]],"b":[["alkaloids/physostigmine.yaml","physostigmine"]]},{"id":"UniProt:P0AD64","l":"","na":2,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MA4","MA4-binding site"],["proteintraitsmech%3ABIOLIP_TSL","TSL-binding site"]],"b":[["amino_acids_and_peptides/clavulanic-acid-2.yaml","clavulanic acid"]]},{"id":"CHEBI:133919","l":"decarbamoylsaxitoxin","na":1,"nb":1,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"]]},{"id":"CHEBI:138511","l":"piericidin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HQH","HQH-binding site"]],"b":[["polyketides/piericidin-a.yaml","piericidin A"]]},{"id":"CHEBI:142639","l":"nectriapyrone","na":1,"nb":1,"a":[["RHEA%3A58748","desmethylnectriapyrone + S-adenosyl-L-methionine = nectriapyrone + S-adenosyl-L-homocysteine + H(+)"]],"b":[["polyketides/nectriapyrone.yaml","nectriapyrone"]]},{"id":"CHEBI:145105","l":"asperphenamate","na":1,"nb":1,"a":[["RHEA%3A61908","N-benzoyl-L-phenylalaninol + benzoate + L-phenylalanine + 2 ATP = asperphenamate + 2 AMP + 2 diphosphate + H(+)"]],"b":[["unclassified/asperphenamate.yaml","asperphenamate"]]},{"id":"CHEBI:146007","l":"(M)-viriditoxin","na":1,"nb":1,"a":[["RHEA%3A62884","4 semiviriditoxin + O2 = 2 (M)-viriditoxin + 2 H2O"]],"b":[["polyketides/viriditoxin.yaml","viriditoxin"]]},{"id":"CHEBI:15353","l":"blasticidin S","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BLS","BLS-binding site"]],"b":[["carbohydrates/blasticidin-s.yaml","blasticidin S"]]},{"id":"CHEBI:15732","l":"phosphonoacetic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PAE","PAE-binding site"]],"b":[["unclassified/phosphonoacetic-acid.yaml","phosphonoacetic acid"]]},{"id":"CHEBI:15738","l":"staurosporine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_STU","STU-binding site"]],"b":[["alkaloids/staurosporine.yaml","staurosporine"]]},{"id":"CHEBI:157682","l":"vanchrobactin","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_157682","requires vanchrobactin"]],"b":[["amino_acids_and_peptides/vanchrobactin.yaml","vanchrobactin"]]},{"id":"CHEBI:16349","l":"L-citrulline","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CIR","CIR-binding site"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"CHEBI:167379","l":"trichobrasilenol","na":1,"nb":1,"a":[["RHEA%3A66644","(2E,6E)-farnesyl diphosphate + H2O = trichobrasilenol + diphosphate"]],"b":[["terpenoids/trichobrasilenol.yaml","trichobrasilenol"]]},{"id":"CHEBI:167886","l":"aetokthonotoxin","na":1,"nb":1,"a":[["RHEA%3A82519","5,7-dibromo-indole-3-carbonitrile + 2,3,5-tribromoindole + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = aetokthonotoxin + 2 oxidized [2Fe-2S]-[ferredoxin] + 2 H2O"]],"b":[["alkaloids/aetokthonotoxin.yaml","aetokthonotoxin"]]},{"id":"CHEBI:168396","l":"mycophenolic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MOA","MOA-binding site"]],"b":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"]]},{"id":"CHEBI:171659","l":"quinolobactin","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_171659","requires quinolobactin"]],"b":[["alkaloids/quinolobactin.yaml","quinolobactin"]]},{"id":"CHEBI:18157","l":"aerobactin","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18157","requires aerobactin"]],"b":[["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]]},{"id":"CHEBI:219836","l":"anditomin","na":1,"nb":1,"a":[["RHEA%3A82659","andilesin C + 2-oxoglutarate + O2 = anditomin + succinate + CO2 + H2O"]],"b":[["unclassified/anditomin.yaml","anditomin"]]},{"id":"CHEBI:22152","l":"2-cis-abscisic acid","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["terpenoids/2-cis-abscisic-acid.yaml","2-cis-abscisic acid"]]},{"id":"CHEBI:26789","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_OI9","OI9-binding site"]],"b":[["carbohydrates/streptothricin-f.yaml","streptothricin F"]]},{"id":"CHEBI:27592","l":"ectoine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_4CS","4CS-binding site"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"CHEBI:27834","l":"pentostatin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DCF","DCF-binding site"]],"b":[["alkaloids/pentostatin.yaml","pentostatin"]]},{"id":"CHEBI:28364","l":"all-cis-5,8,11,14,17-icosapentaenoic acid","na":1,"nb":1,"a":[["TCDB%3A4.C.1","The Fatty Acid Group Translocation (FAT) Family"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"CHEBI:28748","l":"doxorubicin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DM2","DM2-binding site"]],"b":[["polyketides/doxorubicin.yaml","doxorubicin"]]},{"id":"CHEBI:28864","l":"tobramycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TOY","TOY-binding site"]],"b":[["carbohydrates/tobramycin.yaml","tobramycin"]]},{"id":"CHEBI:29703","l":"validamycin A","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["carbohydrates/validamycin-a.yaml","validamycin A"]]},{"id":"CHEBI:30838","l":"itaconic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ITN","ITN-binding site"]],"b":[["fatty_acids/itaconic-acid.yaml","itaconic acid"]]},{"id":"CHEBI:31856","l":"mithramycin","na":1,"nb":1,"a":[["RHEA%3A85455","iso-mithramycin = mithramycin"]],"b":[["polyketides/mithramycin.yaml","mithramycin"]]},{"id":"CHEBI:32079","l":"pyrrolnitrin","na":1,"nb":1,"a":[["RHEA%3A46136","aminopyrrolnitrin + NADPH + 2 O2 + H(+) = pyrrolnitrin + NADP(+) + 2 H2O"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"CHEBI:34970","l":"saxitoxin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9SL","9SL-binding site"]],"b":[["alkaloids/saxitoxin.yaml","saxitoxin"]]},{"id":"CHEBI:38240","l":"solanapyrone D","na":1,"nb":1,"a":[["RHEA%3A75143","prosolanapyrone III = solanapyrone D"]],"b":[["polyketides/solanapyrone-d.yaml","solanapyrone D"]]},{"id":"CHEBI:40009","l":"D-cycloserine","na":1,"nb":1,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"]],"b":[["amino_acids_and_peptides/cycloserine.yaml","cycloserine"]]},{"id":"CHEBI:41977","l":"daunorubicin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DM1","DM1-binding site"]],"b":[["polyketides/daunorubicin.yaml","daunorubicin"]]},{"id":"CHEBI:42223","l":"emodin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_EMO","EMO-binding site"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"CHEBI:42355","l":"erythromycin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ERY","ERY-binding site"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"CHEBI:42639","l":"γ-butyrolactone","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_GBL","GBL-binding site"]],"b":[["fatty_acids/butyrolactone.yaml","γ-butyrolactone"]]},{"id":"CHEBI:43616","l":"K-252a","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_KSA","KSA-binding site"]],"b":[["alkaloids/k-252a.yaml","K-252a"]]},{"id":"CHEBI:45257","l":"ribostamycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RIO","RIO-binding site"]],"b":[["carbohydrates/ribostamycin.yaml","ribostamycin"]]},{"id":"CHEBI:473992","l":"nystatin A1","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_A1AZ7","A1AZ7-binding site"]],"b":[["polyketides/nystatin-a1.yaml","nystatin A1"]]},{"id":"CHEBI:48267","l":"tubercidin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TBN","TBN-binding site"]],"b":[["carbohydrates/tubercidin.yaml","tubercidin"]]},{"id":"CHEBI:48947","l":"clavulanic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_J01","J01-binding site"]],"b":[["amino_acids_and_peptides/clavulanic-acid.yaml","clavulanic acid"]]},{"id":"CHEBI:50437","l":"nocardamine","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_50437","requires desferrioxamine E"]],"b":[["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"]]},{"id":"CHEBI:623918","l":"nikkomycin Z","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BGI","BGI-binding site"]],"b":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"]]},{"id":"CHEBI:64318","l":"ergotamine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ERM","ERM-binding site"]],"b":[["alkaloids/ergotamine.yaml","ergotamine"]]},{"id":"CHEBI:64695","l":"pyripyropene A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_7T8","7T8-binding site"]],"b":[["unclassified/pyripyropene-a.yaml","pyripyropene A"]]},{"id":"CHEBI:67811","l":"zorbamycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_52G","52G-binding site"]],"b":[["amino_acids_and_peptides/zorbamycin.yaml","zorbamycin"]]},{"id":"CHEBI:68241","l":"platencin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_N32","N32-binding site"]],"b":[["terpenoids/platencin.yaml","platencin"]]},{"id":"CHEBI:70064","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["polyketides/landomycin-a.yaml","landomycin A"]]},{"id":"CHEBI:7025","l":"mupirocin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MRC","MRC-binding site"]],"b":[["polyketides/mupirocin.yaml","mupirocin"]]},{"id":"CHEBI:70399","l":"meleagrine","na":1,"nb":1,"a":[["RHEA%3A51732","glandicoline B + S-adenosyl-L-methionine = meleagrin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["alkaloids/meleagrine.yaml","meleagrine"]]},{"id":"CHEBI:7061","l":"myxochelin B","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_7061","requires myxochelin B"]],"b":[["alkaloids/myxochelin-b.yaml","myxochelin B"]]},{"id":"CHEBI:74926","l":"patulin","na":1,"nb":1,"a":[["RHEA%3A62228","(E)-ascladiol + A = patulin + AH2"]],"b":[["polyketides/patulin.yaml","patulin"]]},{"id":"CHEBI:7508","l":"framycetin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NMY","NMY-binding site"]],"b":[["carbohydrates/framycetin.yaml","framycetin"]]},{"id":"CHEBI:77742","l":"bongkrekic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BKC","BKC-binding site"]],"b":[["fatty_acids/bongkrekic-acid.yaml","bongkrekic acid"]]},{"id":"CHEBI:79391","l":"(−)-chuangxinmycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9E0","9E0-binding site"]],"b":[["alkaloids/chuangxinmycin.yaml","(−)-chuangxinmycin"]]},{"id":"CHEBI:84168","l":"4-hydroxy-6-pentadecylpyran-2-one","na":1,"nb":1,"a":[["RHEA%3A44260","hexadecanoyl-CoA + 2 malonyl-CoA + 2 H(+) = 4-hydroxy-6-pentadecylpyran-2-one + 2 CO2 + 3 CoA"]],"b":[["polyketides/4-hydroxy-6-pentadecylpyran-2-one.yaml","4-hydroxy-6-pentadecylpyran-2-one"]]},{"id":"CHEBI:84171","l":"4-hydroxy-6-(2-oxoheptadecyl)pyran-2-one","na":1,"nb":1,"a":[["RHEA%3A44268","hexadecanoyl-CoA + 3 malonyl-CoA + 3 H(+) = 4-hydroxy-6-(2-oxoheptadecyl)pyran-2-one + 3 CO2 + 4 CoA"]],"b":[["polyketides/4-hydroxy-6-2-oxoheptadecyl-pyran-2-one.yaml","4-hydroxy-6-(2-oxoheptadecyl)pyran-2-one"]]},{"id":"CHEBI:84582","l":"schizokinen","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_84582","requires schizokinen"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"]]},{"id":"CHEBI:84585","l":"vibrioferrin","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_84585","requires vibrioferrin"]],"b":[["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"CHEBI:85997","l":"sangivamycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SGV","SGV-binding site"]],"b":[["carbohydrates/sangivamycin.yaml","sangivamycin"]]},{"id":"CHEBI:9168","l":"sirolimus","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RAP","RAP-binding site"]],"b":[["polyketides/sirolimus.yaml","sirolimus"]]},{"id":"CHEBI:9200","l":"soraphen A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_S1A","S1A-binding site"]],"b":[["polyketides/soraphen-a.yaml","soraphen A"]]},{"id":"CHEBI:92181","l":"lasalocid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_LSD","LSD-binding site"]],"b":[["polyketides/lasalocid.yaml","lasalocid"]]},{"id":"CHEBI:9367","l":"swainsonine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SWA","SWA-binding site"]],"b":[["alkaloids/swainsonine.yaml","swainsonine"]]},{"id":"CHEBI:9519","l":"thebaine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_D4R","D4R-binding site"]],"b":[["alkaloids/thebaine.yaml","thebaine"]]},{"id":"CHEBI:9973","l":"vibriobactin","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_9973","requires vibriobactin"]],"b":[["alkaloids/vibriobactin.yaml","vibriobactin"]]},{"id":"NCBITaxon:103733","l":"Saccharothrix syringae","na":1,"nb":1,"a":[["TED%3AAF-A0A5Q0GZB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Q0GZB9-F1-model_v4_TED01"]],"b":[["polyketides/nocamycin.yaml","nocamycin"]]},{"id":"NCBITaxon:104268","l":"Tenacibaculum mesophilum","na":1,"nb":1,"a":[["TED%3AAF-A0A1M5HMT5-F1-model_v4_TED01","TED novel fold AF-A0A1M5HMT5-F1-model_v4_TED01"]],"b":[["fatty_acids/bisucaberin-b.yaml","bisucaberin B"]]},{"id":"NCBITaxon:1081091","l":"Amycolatopsis balhimycina DSM 5908","na":1,"nb":1,"a":[["TED%3AAF-A0A428WRS4-F1-model_v4_TED02","TED novel fold AF-A0A428WRS4-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/balhimycin.yaml","balhimycin"]]},{"id":"NCBITaxon:1108595","l":"Chromobacterium vaccinii","na":1,"nb":1,"a":[["TED%3AAF-A0A2L2B8V3-F1-model_v4_TED02","TED novel fold AF-A0A2L2B8V3-F1-model_v4_TED02"]],"b":[["unclassified/fr900359-2.yaml","FR900359"]]},{"id":"NCBITaxon:1124983","l":"Pseudomonas protegens CHA0","na":1,"nb":1,"a":[["Pfam%3APF18089","DAPG hydrolase PhiG domain"]],"b":[["fatty_acids/protegencin.yaml","protegencin"]]},{"id":"NCBITaxon:1165","l":"Anabaena cylindrica","na":1,"nb":1,"a":[["Pfam%3APF17275","Family of unknown function (DUF5340)"]],"b":[["amino_acids_and_peptides/anachelin.yaml","anachelin"]]},{"id":"NCBITaxon:1214242","l":"Streptomyces collinus Tu 365","na":1,"nb":1,"a":[["TED%3AAF-S5VBX8-F1-model_v4_TED03","TED novel fold AF-S5VBX8-F1-model_v4_TED03"]],"b":[["unclassified/kirromycin.yaml","kirromycin"]]},{"id":"NCBITaxon:122368","l":"Cercospora beticola","na":1,"nb":1,"a":[["TED%3AAF-A0A2G5HT37-F1-model_v4_TED02","TED novel fold AF-A0A2G5HT37-F1-model_v4_TED02"]],"b":[["polyketides/cercosporin.yaml","cercosporin"]]},{"id":"NCBITaxon:1254432","l":"Sorangium cellulosum So0157-2","na":1,"nb":1,"a":[["TED%3AAF-S4XT05-F1-model_v4_TED01","TED novel fold AF-S4XT05-F1-model_v4_TED01"]],"b":[["unclassified/epothilone-b.yaml","epothilone B"]]},{"id":"NCBITaxon:1266744","l":"Talaromyces purpureogenus","na":1,"nb":1,"a":[["Pfam%3APF10503","Esterase PHB depolymerase"]],"b":[["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"]]},{"id":"NCBITaxon:1283841","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A084QGW0-F1-model_v4_TED01","TED novel fold AF-A0A084QGW0-F1-model_v4_TED01"]],"b":[["alkaloids/isoindolin-1-one.yaml","isoindolin-1-one"]]},{"id":"NCBITaxon:1297742","l":"Myxococcus hansupus","na":1,"nb":1,"a":[["TED%3AAF-A0A0H4X3W5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0H4X3W5-F1-model_v4_TED02"]],"b":[["unclassified/myxochromide-c.yaml","myxochromide C"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":1,"nb":1,"a":[["PROSITE%3APS01043","Transposases, IS30 family, signature"]],"b":[["amino_acids_and_peptides/salivaricin-d.yaml","salivaricin D"]]},{"id":"NCBITaxon:1341132","l":"Aspergillus welwitschiae","na":1,"nb":1,"a":[["TED%3AAF-A0A3F3Q9J6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3F3Q9J6-F1-model_v4_TED02"]],"b":[["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"]]},{"id":"NCBITaxon:1343740","l":"Streptomyces rapamycinicus NRRL 5491","na":1,"nb":1,"a":[["Pfam%3APF21168","Chorismatase FkbO/Hyg5-like, N-terminal"]],"b":[["polyketides/sirolimus.yaml","sirolimus"]]},{"id":"NCBITaxon:13689","l":"Sphingomonas paucimobilis","na":1,"nb":1,"a":[["PROSITE%3APS00082","Extradiol ring-cleavage dioxygenases signature"]],"b":[["unclassified/minimycin.yaml","minimycin"]]},{"id":"NCBITaxon:1408161","l":"Plenodomus tracheiphilus IPT5","na":1,"nb":1,"a":[["TED%3AAF-A0A6A7APH0-F1-model_v4_TED02","TED novel fold AF-A0A6A7APH0-F1-model_v4_TED02"]],"b":[["shikimates_and_phenylpropanoids/mellein.yaml","(-)-Mellein"]]},{"id":"NCBITaxon:150374","l":"Escovopsis weberi","na":1,"nb":1,"a":[["TED%3AAF-A0A0M8MSE0-F1-model_v4_TED01","TED novel fold AF-A0A0M8MSE0-F1-model_v4_TED01"]],"b":[["unclassified/melinacidin-iv.yaml","melinacidin IV"]]},{"id":"NCBITaxon:1563222","l":"Citrobacter pasteurii","na":1,"nb":1,"a":[["TED%3AAF-A0A6N6K4M5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N6K4M5-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/citrocin.yaml","citrocin"]]},{"id":"NCBITaxon:1593482","l":"Massilia sp. YMA4","na":1,"nb":1,"a":[["TED%3AAF-A0A7U5XZA1-F1-model_v4_TED02","TED novel fold AF-A0A7U5XZA1-F1-model_v4_TED02"]],"b":[["unclassified/empedopeptin.yaml","empedopeptin"]]},{"id":"NCBITaxon:159449","l":"Embleya scabrispora","na":1,"nb":1,"a":[["TED%3AAF-A0A1T3P567-F1-model_v4_TED01","TED novel fold AF-A0A1T3P567-F1-model_v4_TED01"]],"b":[["unclassified/hitachimycin.yaml","hitachimycin"]]},{"id":"NCBITaxon:173365","l":"Methylobacter tundripaludum","na":1,"nb":1,"a":[["TED%3AAF-A0A2S6HGL6-F1-model_v4_TED02","TED novel fold AF-A0A2S6HGL6-F1-model_v4_TED02"]],"b":[["unclassified/tundrenone.yaml","tundrenone"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":1,"nb":1,"a":[["Pfam%3APF08124","Polysaccharide lyase family 8, N terminal alpha-helical domain"]],"b":[["amino_acids_and_peptides/cutimycin.yaml","cutimycin"]]},{"id":"NCBITaxon:1764","l":"Mycobacterium avium","na":1,"nb":1,"a":[["Pfam%3APF01882","Protein of unknown function DUF58"]],"b":[["fatty_acids/gpl-21.yaml","GPL-21"]]},{"id":"NCBITaxon:180498","l":"Jatropha curcas","na":1,"nb":1,"a":[["TED%3AAF-A0A067KNY2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A067KNY2-F1-model_v4_TED01"]],"b":[["terpenoids/casbene.yaml","casbene"]]},{"id":"NCBITaxon:1828523","l":"","na":1,"nb":1,"a":[["Pfam%3APF26335","Beta-lactamase-like ARB_00930-like, C-terminal domain"]],"b":[["polyketides/squalestatin-s1.yaml","squalestatin S1"]]},{"id":"NCBITaxon:1869241","l":"Nostoc sp. CENA543","na":1,"nb":1,"a":[["TED%3AAF-A0A2I8A446-F1-model_v4_TED01","TED novel fold AF-A0A2I8A446-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/nodularin-2.yaml","nodularin"]]},{"id":"NCBITaxon:1874","l":"Micromonospora chalcea","na":1,"nb":1,"a":[["TED%3AAF-A0A365UW89-F1-model_v4_TED01","TED novel fold AF-A0A365UW89-F1-model_v4_TED01"]],"b":[["polyketides/tetrocarcin-a.yaml","tetrocarcin A"]]},{"id":"NCBITaxon:1887","l":"Streptomyces albogriseolus","na":1,"nb":1,"a":[["PROSITE%3APS00999","Streptomyces subtilisin-type inhibitors signature"]],"b":[["alkaloids/thienodolin.yaml","thienodolin"]]},{"id":"NCBITaxon:1918945","l":"Vibrio spartinae","na":1,"nb":1,"a":[["TED%3AAF-A0A7D8BB99-F1-model_v4_TED01","TED novel fold AF-A0A7D8BB99-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/vancomycin.yaml","vancomycin"]]},{"id":"NCBITaxon:1948","l":"Streptomyces longisporus","na":1,"nb":1,"a":[["PROSITE%3APS00999","Streptomyces subtilisin-type inhibitors signature"]],"b":[["alkaloids/undecylprodigiosin-2.yaml","undecylprodigiosin"]]},{"id":"NCBITaxon:1970","l":"Streptomyces morookaense","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y7E7U7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y7E7U7-F1-model_v4_TED01"]],"b":[["carbohydrates/blasticidin-s.yaml","blasticidin S"]]},{"id":"NCBITaxon:205922","l":"Pseudomonas fluorescens Pf0-1","na":1,"nb":1,"a":[["Pfam%3APF07927","HicA toxin of bacterial toxin-antitoxin,"]],"b":[["unclassified/gacamide-a.yaml","gacamide A"]]},{"id":"NCBITaxon:216895","l":"Vibrio vulnificus CMCP6","na":1,"nb":1,"a":[["Pfam%3APF18416","N-acetylglucosamine binding protein domain 2"]],"b":[["alkaloids/vulnibactin.yaml","vulnibactin"]]},{"id":"NCBITaxon:2203296","l":"","na":1,"nb":1,"a":[["Pfam%3APF18558","Methyltransferase, Helix-turn-helix domain"]],"b":[["unclassified/xenovulene-a.yaml","xenovulene A"]]},{"id":"NCBITaxon:240499","l":"Calcarisporium arbuscula","na":1,"nb":1,"a":[["Pfam%3APF28402","Pneumocandin biosynthesis cluster protein B C-terminal domain"]],"b":[["polyketides/patulin.yaml","patulin"]]},{"id":"NCBITaxon:2480843","l":"","na":1,"nb":1,"a":[["Pfam%3APF22903","Diels-Alderase-like"]],"b":[["unclassified/xenoacremone-a.yaml","xenoacremone A"]]},{"id":"NCBITaxon:249581","l":"Streptomyces ossamyceticus","na":1,"nb":1,"a":[["TED%3AAF-A0A3N1M1Z0-F1-model_v4_TED02","TED novel fold AF-A0A3N1M1Z0-F1-model_v4_TED02"]],"b":[["polyketides/ossamycin.yaml","ossamycin"]]},{"id":"NCBITaxon:2545265","l":"Streptomyces sp. AJS327","na":1,"nb":1,"a":[["TED%3AAF-A0A7V8NJX1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V8NJX1-F1-model_v4_TED01"]],"b":[["alkaloids/tetrachlorizine.yaml","tetrachlorizine"]]},{"id":"NCBITaxon:263","l":"Francisella tularensis","na":1,"nb":1,"a":[["TED%3AAF-A0A6I4RUC7-F1-model_v4_TED02","TED novel fold AF-A0A6I4RUC7-F1-model_v4_TED02"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"NCBITaxon:264691","l":"Trichormus variabilis","na":1,"nb":1,"a":[["Pfam%3APF09194","Restriction endonuclease BsobI"]],"b":[["unclassified/shinorine.yaml","shinorine"]]},{"id":"NCBITaxon:267747","l":"Cutibacterium acnes KPA171202","na":1,"nb":1,"a":[["Pfam%3APF27542","ArfC"]],"b":[["amino_acids_and_peptides/cutimycin.yaml","cutimycin"]]},{"id":"NCBITaxon:269709","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A543V9Z8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A543V9Z8-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:2743","l":"Marinobacter nauticus","na":1,"nb":1,"a":[["TED%3AAF-A0A368Y858-F1-model_v4_TED02","TED novel fold AF-A0A368Y858-F1-model_v4_TED02"]],"b":[["alkaloids/petrobactin.yaml","petrobactin"]]},{"id":"NCBITaxon:279113","l":"Collimonas pratensis","na":1,"nb":1,"a":[["TED%3AAF-A0A127Q9K0-F1-model_v4_TED02","TED novel fold AF-A0A127Q9K0-F1-model_v4_TED02"]],"b":[["unclassified/malleobactin-x.yaml","malleobactin X"]]},{"id":"NCBITaxon:285525","l":"Streptomyces sahachiroi","na":1,"nb":1,"a":[["Pfam%3APF06224","DNA glycosylase AlkZ-like"]],"b":[["unclassified/azinomycin-b.yaml","azinomycin B"]]},{"id":"NCBITaxon:28985","l":"Kluyveromyces lactis","na":1,"nb":1,"a":[["Pfam%3APF03930","Recombinase Flp protein N-terminus"]],"b":[["alkaloids/pulcherrimin.yaml","pulcherrimin"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":1,"nb":1,"a":[["PROSITE%3APS01322","Phosphotriesterase family signature 1"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:29447","l":"Xanthomonas albilineans","na":1,"nb":1,"a":[["TED%3AAF-A0A6P1SIK7-F1-model_v4_TED02","TED novel fold AF-A0A6P1SIK7-F1-model_v4_TED02"]],"b":[["alkaloids/albicidin.yaml","albicidin"]]},{"id":"NCBITaxon:29456","l":"Alteromonas sp. B-10-31","na":1,"nb":1,"a":[["Pfam%3APF12559","Serine endopeptidase inhibitors"]],"b":[["unclassified/marinostatin.yaml","marinostatin"]]},{"id":"NCBITaxon:29829","l":"Lipomyces starkeyi","na":1,"nb":1,"a":[["Pfam%3APF03702","Anhydro-N-acetylmuramic acid kinase"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"NCBITaxon:298386","l":"Photobacterium profundum SS9","na":1,"nb":1,"a":[["Pfam%3APF12558","ATP-binding cassette cobalt transporter"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"NCBITaxon:337","l":"Burkholderia glumae","na":1,"nb":1,"a":[["TED%3AAF-A0A8A8MA15-F1-model_v4_TED01","TED novel fold AF-A0A8A8MA15-F1-model_v4_TED01"]],"b":[["alkaloids/toxoflavin.yaml","toxoflavin"]]},{"id":"NCBITaxon:359131","l":"Streptomyces rubellomurinus","na":1,"nb":1,"a":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"]],"b":[["unclassified/fr-900098.yaml","FR-900098"]]},{"id":"NCBITaxon:362","l":"Agrobacterium radiobacter","na":1,"nb":1,"a":[["Pfam%3APF04909","Amidohydrolase"]],"b":[["alkaloids/agrobactin.yaml","agrobactin"]]},{"id":"NCBITaxon:37329","l":"Nocardia farcinica","na":1,"nb":1,"a":[["TED%3AAF-A0A449G5H5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A449G5H5-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/nocobactin-na.yaml","nocobactin NA"]]},{"id":"NCBITaxon:37727","l":"Talaromyces marneffei","na":1,"nb":1,"a":[["Pfam%3APF12296","Hydrophobic surface binding protein A"]],"b":[["polyketides/monascorubrin.yaml","monascorubrin"]]},{"id":"NCBITaxon:38945","l":"Flammulina velutipes","na":1,"nb":1,"a":[["Pfam%3APF09259","Fungal immunomodulatory protein Fve"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:391936","l":"Isoalcanivorax pacificus W11-5","na":1,"nb":1,"a":[["TED%3AAF-A0A0B4XPB7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0B4XPB7-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/pacifibactin.yaml","pacifibactin"]]},{"id":"NCBITaxon:396598","l":"Paraburkholderia graminis C4D1M","na":1,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_GrbE","GrbE-type graminine biosynthesis protein family"]],"b":[["unclassified/gramibactin.yaml","gramibactin"]]},{"id":"NCBITaxon:4100","l":"Nicotiana benthamiana","na":1,"nb":1,"a":[["Pfam%3APF11833","Protein CHAPERONE-LIKE PROTEIN OF POR1-like"]],"b":[["terpenoids/capsidiol.yaml","capsidiol"]]},{"id":"NCBITaxon:41047","l":"Aspergillus thermomutatus","na":1,"nb":1,"a":[["Pfam%3APF28486","AnkG N-terminal domain"]],"b":[["unclassified/pyripyropene-a.yaml","pyripyropene A"]]},{"id":"NCBITaxon:43657","l":"Pseudoalteromonas luteoviolacea","na":1,"nb":1,"a":[["TED%3AAF-A0A1C0TIS0-F1-model_v4_TED02","TED novel fold AF-A0A1C0TIS0-F1-model_v4_TED02"]],"b":[["shikimates_and_phenylpropanoids/pentabromopseudilin.yaml","pentabromopseudilin"]]},{"id":"NCBITaxon:43759","l":"Streptomyces wedmorensis","na":1,"nb":1,"a":[["Pfam%3APF04167","Protein of unknown function (DUF402)"]],"b":[["unclassified/fosfomycin.yaml","fosfomycin"]]},{"id":"NCBITaxon:463","l":"Fluoribacter dumoffii","na":1,"nb":1,"a":[["TED%3AAF-A0A377G6U6-F1-model_v4_TED01","TED novel fold AF-A0A377G6U6-F1-model_v4_TED01"]],"b":[["shikimates_and_phenylpropanoids/legioliulin.yaml","legioliulin"]]},{"id":"NCBITaxon:4679","l":"Allium cepa","na":1,"nb":1,"a":[["Pfam%3APF04863","Alliinase EGF-like domain"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:4682","l":"Allium sativum","na":1,"nb":1,"a":[["Pfam%3APF04863","Alliinase EGF-like domain"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:469371","l":"Thermobispora bispora DSM 43833","na":1,"nb":1,"a":[["TED%3AAF-D6Y8C2-F1-model_v4_TED02","TED novel fold AF-D6Y8C2-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/thiomuracin.yaml","thiomuracin"]]},{"id":"NCBITaxon:47759","l":"Streptomyces tubercidicus","na":1,"nb":1,"a":[["TED%3AAF-A0A640UN74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A640UN74-F1-model_v4_TED01"]],"b":[["carbohydrates/tubercidin.yaml","tubercidin"]]},{"id":"NCBITaxon:47850","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1C6SK92-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C6SK92-F1-model_v4_TED01"]],"b":[["polyketides/dynemicin-a.yaml","dynemicin A"]]},{"id":"NCBITaxon:47886","l":"Pseudomonas luteola","na":1,"nb":1,"a":[["TED%3AAF-A0A2X2CC74-F1-model_v4_TED02","TED novel fold AF-A0A2X2CC74-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/chrysobactin.yaml","chrysobactin"]]},{"id":"NCBITaxon:483219","l":"Myxococcus fulvus HW-1","na":1,"nb":1,"a":[["TED%3AAF-F8C8K4-F1-model_v4_TED01","TED highly-symmetric fold AF-F8C8K4-F1-model_v4_TED01"]],"b":[["unclassified/myxochromide-a-2.yaml","myxochromide A"]]},{"id":"NCBITaxon:488447","l":"Burkholderia contaminans","na":1,"nb":1,"a":[["TED%3AAF-A0A3N8RI51-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N8RI51-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/occidiofungin-a.yaml","occidiofungin A"]]},{"id":"NCBITaxon:528191","l":"Paenibacillus xylanexedens","na":1,"nb":1,"a":[["TED%3AAF-A0A3N6BL17-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N6BL17-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/macolacin.yaml","macolacin"]]},{"id":"NCBITaxon:5341","l":"Agaricus bisporus","na":1,"nb":1,"a":[["Pfam%3APF07367","Fungal fruit body lectin"]],"b":[["polyketides/kojic-acid.yaml","kojic acid"]]},{"id":"NCBITaxon:573841","l":"Sordaria araneosa","na":1,"nb":1,"a":[["Pfam%3APF26335","Beta-lactamase-like ARB_00930-like, C-terminal domain"]],"b":[["terpenoids/sordarin.yaml","sordarin"]]},{"id":"NCBITaxon:5839","l":"Plasmodium falciparum (isolate K1 / Thailand)","na":1,"nb":1,"a":[["Pfam%3APF12946","MSP1 EGF domain 1"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:6192","l":"Fasciola hepatica","na":1,"nb":1,"a":[["TED%3AAF-A0A4E0R9C7-F1-model_v4_TED02","TED novel fold AF-A0A4E0R9C7-F1-model_v4_TED02"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"]]},{"id":"NCBITaxon:66425","l":"Streptomyces luteoverticillatus","na":1,"nb":1,"a":[["TED%3AAF-A0A3S9PBS5-F1-model_v4_TED01","TED novel fold AF-A0A3S9PBS5-F1-model_v4_TED01"]],"b":[["alkaloids/carbazomycin-b.yaml","carbazomycin B"]]},{"id":"NCBITaxon:68197","l":"Streptomyces fimbriatus","na":1,"nb":1,"a":[["PROSITE%3APS00093","N-4 cytosine-specific DNA methylases signature"]],"b":[["alkaloids/spicamycin.yaml","spicamycin"]]},{"id":"NCBITaxon:69771","l":"Penicillium decumbens","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6PJ92-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V6PJ92-F1-model_v4_TED01"]],"b":[["polyketides/decumbenone-a.yaml","decumbenone a"]]},{"id":"NCBITaxon:698760","l":"Streptomyces turgidiscabies Car8","na":1,"nb":1,"a":[["TED%3AAF-L7F7V3-F1-model_v4_TED02","TED highly-symmetric fold AF-L7F7V3-F1-model_v4_TED02"]],"b":[["unclassified/thaxtomin-a.yaml","thaxtomin A"]]},{"id":"NCBITaxon:713604","l":"Amycolatopsis mediterranei S699","na":1,"nb":1,"a":[["TED%3AAF-G0FSL6-F1-model_v4_TED01","TED novel fold AF-G0FSL6-F1-model_v4_TED01"]],"b":[["polyketides/rifamycin-sv.yaml","rifamycin SV"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A5C7XIK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7XIK2-F1-model_v4_TED01"]],"b":[["unclassified/lysocin-e.yaml","lysocin E"]]},{"id":"NCBITaxon:741275","l":"","na":1,"nb":1,"a":[["TED%3AAF-R7S2Z2-F1-model_v4_TED02","TED novel fold AF-R7S2Z2-F1-model_v4_TED02"]],"b":[["terpenoids/ent-kauren-16alpha-ol-2.yaml","Ent-kauren-16alpha-ol"]]},{"id":"NCBITaxon:747457","l":"Pseudoalteromonas sp. SANK 73390","na":1,"nb":1,"a":[["Pfam%3APF18014","Acetyltransferase (GNAT) domain"]],"b":[["polyketides/thiomarinol.yaml","thiomarinol"]]},{"id":"NCBITaxon:749593","l":"Epicoccum sorghinum","na":1,"nb":1,"a":[["Pfam%3APF17660","Polyglycine hydrolase-like, structural repeat"]],"b":[["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"]]},{"id":"NCBITaxon:75695","l":"Umezakia ovalisporum","na":1,"nb":1,"a":[["TED%3AAF-A0A654SF36-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A654SF36-F1-model_v4_TED02"]],"b":[["alkaloids/7-epi-cylindrospermopsin.yaml","7-epi-cylindrospermopsin"]]},{"id":"NCBITaxon:85336","l":"Rothia nasimurium","na":1,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_EntC","EntC-type catechol biosynthesis isochorismate synthase family"]],"b":[["unclassified/valinomycin-2.yaml","valinomycin"]]},{"id":"NCBITaxon:866895","l":"Halobacillus halophilus DSM 2266","na":1,"nb":1,"a":[["TED%3AAF-I0JI49-F1-model_v4_TED03","TED highly-symmetric fold AF-I0JI49-F1-model_v4_TED03"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:877550","l":"","na":1,"nb":1,"a":[["Pfam%3APF13810","Domain of unknown function (DUF4185)"]],"b":[["unclassified/notoamide-a.yaml","notoamide A"]]},{"id":"NCBITaxon:89489","l":"Monascus ruber","na":1,"nb":1,"a":[["Pfam%3APF17828","N-terminal domain in fatty acid synthase subunit beta"]],"b":[["polyketides/citrinin.yaml","(+)-citrinin"]]},{"id":"NCBITaxon:948311","l":"Fusarium proliferatum","na":1,"nb":1,"a":[["TED%3AAF-A0A420SS57-F1-model_v4_TED01","TED novel fold AF-A0A420SS57-F1-model_v4_TED01"]],"b":[["polyketides/prolipyrone-b.yaml","prolipyrone B"]]},{"id":"NCBITaxon:96241","l":"Bacillus spizizenii","na":1,"nb":1,"a":[["Pfam%3APF05952","Bacillus competence pheromone ComX"]],"b":[["amino_acids_and_peptides/entianin.yaml","entianin"]]},{"id":"NCBITaxon:986","l":"Flavobacterium johnsoniae","na":1,"nb":1,"a":[["TED%3AAF-A0A1J7BWE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1J7BWE6-F1-model_v4_TED01"]],"b":[["polyketides/flexirubin.yaml","flexirubin"]]},{"id":"NCBITaxon:994086","l":"Hydnomerulius pinastri MD-312","na":1,"nb":1,"a":[["TED%3AAF-A0A0C9W3H2-F1-model_v4_TED01","TED novel fold AF-A0A0C9W3H2-F1-model_v4_TED01"]],"b":[["fatty_acids/methyl-2s-4-methyl-2-octanoylamino-pentanoate.yaml","methyl (2S)-4-methyl-2-(octanoylamino)pentanoate"]]},{"id":"UniProt:A4F7P5","l":"","na":1,"nb":1,"a":[["EC%3A2.1.1.254","erythromycin 3'-O-methyltransferase"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"UniProt:O05207","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RDC","RDC-binding site"]],"b":[["polyketides/radicicol.yaml","radicicol"]]},{"id":"UniProt:O42713","l":"","na":1,"nb":1,"a":[["EC%3A1.14.18.1","tyrosinase"]],"b":[["polyketides/kojic-acid.yaml","kojic acid"]]},{"id":"UniProt:P00523","l":"","na":1,"nb":1,"a":[["ELM%3AELME000013","MOD_TYR_CSK"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P02701.","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_B1R","B1R-binding site"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"UniProt:P09917.","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_AF7","AF7-binding site"]],"b":[["alkaloids/myxochelin-a.yaml","myxochelin A"]]},{"id":"UniProt:P0C8L0","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ZL5","ZL5-binding site"]],"b":[["unclassified/antimycin-a1b.yaml","antimycin A1B"]]},{"id":"UniProt:P11799","l":"","na":1,"nb":1,"a":[["Pfam%3APF16620","Unstructured linker between I-set domains 2 and 3 on MYLCK"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P28523","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_7M0","7M0-binding site"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"UniProt:P43250.","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SGV","SGV-binding site"]],"b":[["carbohydrates/sangivamycin.yaml","sangivamycin"]]},{"id":"UniProt:Q00024","l":"","na":1,"nb":1,"a":[["EC%3A1.14.18.1","tyrosinase"]],"b":[["polyketides/kojic-acid.yaml","kojic acid"]]},{"id":"UniProt:Q03181.","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_433","433-binding site"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"UniProt:Q13451","l":"","na":1,"nb":1,"a":[["ComplexPortal%3ACPX-13334","-"]],"b":[["polyketides/sirolimus.yaml","sirolimus"]]},{"id":"UniProt:Q28021","l":"","na":1,"nb":1,"a":[["Pfam%3APF08912","Rho Binding"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:Q5G940","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_JUG","JUG-binding site"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"UniProt:Q5G940.","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_JUG","JUG-binding site"]],"b":[["polyketides/emodin.yaml","emodin"]]}]} \ No newline at end of file +{"a":"ProteinTraitsMech","b":"NaturalProductMech","base":{"ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record=","NaturalProductMech":"https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/natural_products/"},"n":794,"by":{"NCBITaxon":487,"UniProt":156,"CHEBI":148,"RHEA":3},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":145,"nb":24,"a":[["IDPO%3A0000033","flexible linker"],["IDPO%3A0000014","order to disorder"],["IDPO%3A0000004","pre-molten globule"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":32,"nb":23,"a":[["Pfam%3APF25848","Rodlin protein"],["Pfam%3APF13420","Acetyltransferase (GNAT) domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF26381","BREX System ATPase PglY protein 5th domain"],["Pfam%3APF26382","BREX System ATPase PglY protein 6th domain"]],"b":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/melanin.yaml","melanin"],["alkaloids/undecylprodigiosin.yaml","undecylprodigiosin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/sapb.yaml","SapB"]]},{"id":"NCBITaxon:227321","l":"Emericella nidulans (strain FGSC A4 / ATCC 38163 / CBS 112.46 / NRRL 194 / M139)","na":44,"nb":22,"a":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF05270","Alpha-L-arabinofuranosidase B (ABFB) domain"],["Pfam%3APF07792","Docking domain of Afi1 for Arf3 in vesicle trafficking"],["Pfam%3APF09206","Alpha-L-arabinofuranosidase B, catalytic"],["Pfam%3APF27751","ATEG_07667 C-terminal domain"],["Pfam%3APF20238","Copper acquisition factor BIM1-like"]],"b":[["alkaloids/aspernidine-a.yaml","aspernidine A"],["alkaloids/aspyridone-a.yaml","aspyridone A"],["alkaloids/aspyridone-b.yaml","aspyridone B"],["alkaloids/cichorine.yaml","cichorine"],["alkaloids/terrequinone-a.yaml","terrequinone A"],["amino_acids_and_peptides/fellutamide-b.yaml","fellutamide B"]]},{"id":"NCBITaxon:77133","l":"uncultured bacterium","na":22,"nb":34,"a":[["TED%3AAF-A0A059X489-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A059X489-F1-model_v4_TED02"],["TED%3AAF-A0A059X769-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A059X769-F1-model_v4_TED01"],["TED%3AAF-K1YCK5-F1-model_v4_TED02","TED highly-symmetric fold AF-K1YCK5-F1-model_v4_TED02"],["TED%3AAF-K1Z363-F1-model_v4_TED05","TED highly-symmetric fold AF-K1Z363-F1-model_v4_TED05"],["TED%3AAF-K1ZVQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-K1ZVQ3-F1-model_v4_TED01"],["TED%3AAF-K2AKZ9-F1-model_v4_TED01","TED highly-symmetric fold AF-K2AKZ9-F1-model_v4_TED01"]],"b":[["alkaloids/borregomycin-a.yaml","borregomycin A"],["alkaloids/borregomycin-b.yaml","borregomycin B"],["alkaloids/borregomycin-c.yaml","borregomycin C"],["alkaloids/borregomycin-d.yaml","borregomycin D"],["alkaloids/erdasporine-a.yaml","erdasporine A"],["alkaloids/erdasporine-b.yaml","erdasporine B"]]},{"id":"UniProt:P43405","l":"","na":32,"nb":17,"a":[["GO%3A0019815","B cell receptor complex"],["GO%3A0042101","T cell receptor complex"],["GO%3A0016170","interleukin-15 receptor binding"],["GO%3A0004715","non-membrane spanning protein tyrosine kinase activity"],["GO%3A0035325","Toll-like receptor binding"],["GO%3A0002752","cell surface pattern recognition receptor signaling pathway"]],"b":[["alkaloids/cytochalasin-e.yaml","cytochalasin E"],["alkaloids/fumiquinazoline-a.yaml","fumiquinazoline A"],["alkaloids/fumiquinazoline-d.yaml","fumiquinazoline D"],["alkaloids/psilocybin.yaml","psilocybin"],["amino_acids_and_peptides/epoxomicin.yaml","epoxomicin"],["amino_acids_and_peptides/tubulysin-a.yaml","tubulysin A"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":16,"nb":27,"a":[["Pfam%3APF16822","SGNH hydrolase-like domain, acetyltransferase AlgX"],["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"],["Pfam%3APF11182","Alginate O-acetyl transferase AlgF"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF27129","Functional amyloid protein FapB/FapC family"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]],"b":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["alkaloids/pseudomonine.yaml","pseudomonine"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyreudione-c.yaml","pyreudione C"],["alkaloids/quinolobactin.yaml","quinolobactin"]]},{"id":"UniProt:O96028","l":"","na":27,"nb":16,"a":[["ComplexPortal%3ACPX-16414","-"],["CDD%3Acd20162","PWWP_NSD2_rpt1"],["CDD%3Acd21991","HMG-box_NSD2"],["CDD%3Acd15648","PHD1_NSD1_2"],["CDD%3Acd15651","PHD2_NSD2"],["CDD%3Acd15654","PHD3_NSD2"]],"b":[["alkaloids/cytochalasin-e.yaml","cytochalasin E"],["alkaloids/fumiquinazoline-d.yaml","fumiquinazoline D"],["amino_acids_and_peptides/epoxomicin.yaml","epoxomicin"],["amino_acids_and_peptides/tubulysin-a.yaml","tubulysin A"],["carbohydrates/puromycin.yaml","puromycin"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":16,"a":[["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["Pfam%3APF14562","Restriction endonuclease BglI"],["Pfam%3APF09195","Restriction endonuclease BglII/BglIII"],["Pfam%3APF09208","Restriction endonuclease MspI"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["amino_acids_and_peptides/ericin-s.yaml","ericin S"],["amino_acids_and_peptides/iturin.yaml","iturin"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"]]},{"id":"NCBITaxon:330879","l":"Aspergillus fumigatus (strain ATCC MYA-4609 / CBS 101355 / FGSC A1100 / Af293)","na":34,"nb":14,"a":[["Pfam%3APF22624","4'-phosphopantetheinyl transferase, N-terminal"],["Pfam%3APF13523","Acetyltransferase (GNAT) domain"],["Pfam%3APF28338","AclK C-terminal domain"],["Pfam%3APF23297","Highly reducing polyketide synthase sdgA, C-terminal ACP domain"],["Pfam%3APF11001","YDR124W-like, helical bundle domain"],["Pfam%3APF25312","Allergen Asp f 4-like domain"]],"b":[["alkaloids/fumigaclavine-c.yaml","fumigaclavine C"],["alkaloids/fumiquinazoline-a.yaml","fumiquinazoline A"],["alkaloids/fumiquinazoline-c.yaml","fumiquinazoline C"],["alkaloids/fumiquinazoline-d.yaml","fumiquinazoline D"],["alkaloids/hexadehydroastechrome.yaml","hexadehydroastechrome"],["polyketides/endocrocin.yaml","endocrocin"]]},{"id":"NCBITaxon:9606","l":"Homo sapiens","na":49554,"nb":13,"a":[["EC%3A1.1.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.1.98.-","With other, known, acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/congocidine.yaml","congocidine"],["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]]},{"id":"NCBITaxon:56","l":"Sorangium cellulosum","na":13,"nb":25,"a":[["TED%3AAF-A0A150SQB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A150SQB4-F1-model_v4_TED01"],["TED%3AAF-A0A2L0EP96-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0EP96-F1-model_v4_TED01"],["TED%3AAF-A0A2L0F1G5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0F1G5-F1-model_v4_TED01"],["TED%3AAF-A0A2L0F230-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0F230-F1-model_v4_TED01"],["TED%3AAF-A0A4P2R1W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P2R1W3-F1-model_v4_TED01"],["TED%3AAF-A0A150P579-F1-model_v4_TED02","TED novel fold AF-A0A150P579-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/microsclerodermin-m.yaml","microsclerodermin M"],["polyketides/ambruticin.yaml","ambruticin"],["polyketides/chivosazol.yaml","chivosazol"],["polyketides/chlorotonil-a.yaml","chlorotonil A"],["polyketides/disorazol-a.yaml","disorazol A"],["polyketides/etnangien.yaml","etnangien"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":19,"nb":12,"a":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"],["Pfam%3APF18173","Bacterial HORMA domain 2"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["Pfam%3APF27322","Cap8 HORMA domain"],["Pfam%3APF01526","Tn3 transposase DDE domain"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:341663","l":"","na":11,"nb":17,"a":[["Pfam%3APF27751","ATEG_07667 C-terminal domain"],["Pfam%3APF28386","BfoA family C-terminal domain"],["Pfam%3APF03879","Cgr1 family"],["Pfam%3APF22621","CurL-like, PKS C-terminal"],["Pfam%3APF18558","Methyltransferase, Helix-turn-helix domain"],["Pfam%3APF06355","Aegerolysin"]],"b":[["alkaloids/asterriquinone-ct5.yaml","asterriquinone CT5"],["alkaloids/dihydroisoflavipucine.yaml","dihydroisoflavipucine"],["alkaloids/isoflavipucine.yaml","isoflavipucine"],["polyketides/citreoviridin.yaml","citreoviridin"],["polyketides/geodin.yaml","geodin"],["polyketides/terreic-acid.yaml","terreic acid"]]},{"id":"NCBITaxon:3702","l":"Arabidopsis thaliana","na":18772,"nb":10,"a":[["EC%3A1.1.99.-","With other acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.14.11.-","With 2-oxoglutarate as one donor, and incorporation of one atom each of oxygen into both donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.14.-","With reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/itaconic-acid.yaml","itaconic acid"],["terpenoids/ent-quiannulatene.yaml","(-)-ent-quiannulatene"],["terpenoids/euphol.yaml","euphol"],["terpenoids/marneral.yaml","marneral"],["terpenoids/thaliandiol.yaml","thaliandiol"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa PAO1","na":162,"nb":10,"a":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF06750","Bacterial Peptidase A24 N-terminal domain"],["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF28403","Aconitase X second domain"],["Pfam%3APF28406","Aconitase X third domain"],["Pfam%3APF04412","Aconitase X first domain"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae RIB40","na":27,"nb":10,"a":[["Pfam%3APF09260","Alpha-amylase, domain C"],["Pfam%3APF28338","AclK C-terminal domain"],["Pfam%3APF09206","Alpha-L-arabinofuranosidase B, catalytic"],["Pfam%3APF28380","Sesquiterpene cyclase astC-like C-terminal domain"],["Pfam%3APF13364","Beta-galactosidase second all-beta domain"],["Pfam%3APF10435","Beta-galactosidase, domain 2"]],"b":[["fatty_acids/oryzine-a.yaml","oryzine A"],["polyketides/kojic-acid.yaml","kojic acid"],["polyketides/oryzine-b.yaml","oryzine B"],["polyketides/ywa1.yaml","YWA1"],["shikimates_and_phenylpropanoids/2-4-dihydroxy-3-methoxypropiophenone.yaml","2,4'-dihydroxy-3'-methoxypropiophenone"],["shikimates_and_phenylpropanoids/8-methyldiaporthin.yaml","8-methyldiaporthin"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":10,"nb":11,"a":[["Pfam%3APF17433","Glycosyl hydrolase family 49 N-terminal Ig-like domain"],["PROSITE%3APS00820","Glucoamylase active site region signature"],["PROSITE%3APS00920","Nitrilases / cyanide hydratase signature 1"],["PROSITE%3APS00502","Polygalacturonase active site"],["Pfam%3APF18841","Beta solenoid repeat from Dextranase"],["Pfam%3APF03718","Glycosyl hydrolase family 49"]],"b":[["amino_acids_and_peptides/ferrichrome.yaml","ferrichrome"],["polyketides/1-2-3-5-10-tetrahydroxy-7-methoxy-4-oxo-1-2-3-4-tetrahydroanthracen-2-yl-pentane.yaml","1-(2,3,5,10-tetrahydroxy-7-methoxy-4-oxo-1,2,3,4-tetrahydroanthracen-2-yl)pentane-2,4-dione"],["polyketides/azanigerone-a.yaml","azanigerone A"],["polyketides/campyrone-b.yaml","campyrone B"],["polyketides/desmethyl-tan-1612.yaml","desmethyl TAN-1612"],["polyketides/fumonisin-b2.yaml","fumonisin B2"]]},{"id":"NCBITaxon:242507","l":"","na":10,"nb":10,"a":[["Pfam%3APF28293","Biotrophy-associated secreted protein 2"],["Pfam%3APF28414","Biotrophy-associated secreted protein 4"],["Pfam%3APF22997","Chitin synthase 4-like domain"],["Pfam%3APF27979","CON7 transcription factor helical domain"],["Pfam%3APF26980","Dicer-like protein 2, dsRNA binding domain"],["Pfam%3APF11327","Egh16-like virulence factor"]],"b":[["polyketides/1-alpha-l-2-o-methyl-6-deoxymannopyranosyloxy-3-6-8-trimethoxynaphthalene.yaml","1-(alpha-l-(2-O-methyl)-6-deoxymannopyranosyloxy)-3,6,8-trimethoxynaphthalene"],["polyketides/10-11-dihydroxymagnaporthepyrone.yaml","10,11-dihydroxymagnaporthepyrone"],["polyketides/12-13-dihydroxymagnaporthepyrone.yaml","12,13-dihydroxymagnaporthepyrone"],["polyketides/epipyriculol.yaml","epipyriculol"],["polyketides/naphthalene-1-3-6-8-tetrol.yaml","naphthalene-1,3,6,8-tetrol"],["polyketides/nectriapyrone-c.yaml","nectriapyrone C"]]},{"id":"UniProt:P18054","l":"","na":25,"nb":9,"a":[["EC%3A1.13.11.31","arachidonate 12-lipoxygenase"],["EC%3A1.13.11.33","arachidonate 15-lipoxygenase"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"],["RHEA%3A10428","(5Z,8Z,11Z,14Z)-eicosatetraenoate + O2 = (12S)-hydroperoxy-(5Z,8Z,10E,14Z)-eicosatetraenoate"],["RHEA%3A16869","(5Z,8Z,11Z,14Z)-eicosatetraenoate + O2 = (15S)-hydroperoxy-(5Z,8Z,11Z,13E)-eicosatetraenoate"],["GO%3A0004052","arachidonate 12(S)-lipoxygenase activity"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/actinonin.yaml","actinonin"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"],["fatty_acids/triacsin-c.yaml","triacsin C"],["polyketides/terreic-acid.yaml","terreic acid"],["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:Q96RU2","l":"","na":14,"nb":9,"a":[["ComplexPortal%3ACPX-15530","-"],["ComplexPortal%3ACPX-15595","-"],["ComplexPortal%3ACPX-15768","-"],["ComplexPortal%3ACPX-24431","-"],["InterPro%3AIPR054108","Ubiquitin carboxyl-terminal hydrolase 25/28, UIM"],["CDD%3Acd02665","Peptidase_C19I"]],"b":[["alkaloids/esmeraldin.yaml","esmeraldin"],["alkaloids/fervenulin.yaml","fervenulin"],["alkaloids/neocarazostatin-a.yaml","neocarazostatin A"],["alkaloids/nybomycin.yaml","nybomycin"],["amino_acids_and_peptides/tyrocidine-a.yaml","tyrocidine A"],["polyketides/asukamycin.yaml","asukamycin"]]},{"id":"UniProt:O95398","l":"","na":20,"nb":8,"a":[["ComplexPortal%3ACPX-10829","-"],["ComplexPortal%3ACPX-12123","-"],["ComplexPortal%3ACPX-12892","-"],["ComplexPortal%3ACPX-13579","-"],["ComplexPortal%3ACPX-13585","-"],["ComplexPortal%3ACPX-14152","-"]],"b":[["alkaloids/8-azaguanine.yaml","8-azaguanine"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/thiostrepton.yaml","thiostrepton"],["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"],["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK 1622","na":8,"nb":12,"a":[["Pfam%3APF27281","DevT C-terminal domain"],["Pfam%3APF27372","DevT N-terminal domain"],["Pfam%3APF17762","ParB HTH domain"],["Pfam%3APF01930","Domain of unknown function DUF83"],["Pfam%3APF09559","Cas6 Crispr"],["Pfam%3APF01905","CRISPR-associated negative auto-regulator DevR/Csa2"]],"b":[["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"],["amino_acids_and_peptides/myxochromide-a.yaml","myxochromide A"],["amino_acids_and_peptides/myxoprincomide-c506.yaml","myxoprincomide-c506"]]},{"id":"NCBITaxon:229533","l":"Fusarium graminearum PH-1","na":8,"nb":11,"a":[["Pfam%3APF18388","Atg29 N-terminal domain"],["Pfam%3APF27599","CcsR C-terminal domain"],["Pfam%3APF07110","EthD domain"],["Pfam%3APF11700","Vacuole effluxer Atg22 like"],["Pfam%3APF28504","Gramillins biosynthetic cluster protein GRA5"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"]],"b":[["alkaloids/chrysogine.yaml","chrysogine"],["amino_acids_and_peptides/fusaoctaxin-a.yaml","fusaoctaxin A"],["polyketides/aurofusarin.yaml","aurofusarin"],["polyketides/prolipyrone-b.yaml","prolipyrone B"],["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"],["terpenoids/15-acetyldeoxynivalenol.yaml","15-acetyldeoxynivalenol"]]},{"id":"NCBITaxon:1911","l":"Streptomyces griseus","na":7,"nb":32,"a":[["Pfam%3APF13207","AAA domain"],["Pfam%3APF27054","Beta-methylindole-3-pyruvate reductase C-terminal domain"],["Pfam%3APF26558","3-dehydroquinate synthase II C-terminal domain"],["Pfam%3APF01959","3-dehydroquinate synthase II N-terminal domain"],["Pfam%3APF13459","4Fe-4S single cluster domain"],["Pfam%3APF04655","Aminoglycoside/hydroxyurea antibiotic resistance kinase"]],"b":[["alkaloids/cycloheximide.yaml","cycloheximide"],["alkaloids/grixazone-a.yaml","grixazone A"],["alkaloids/iminimycin-a.yaml","iminimycin A"],["alkaloids/iminimycin-b.yaml","iminimycin B"],["alkaloids/indolmycin.yaml","indolmycin"],["alkaloids/melanin.yaml","melanin"]]},{"id":"NCBITaxon:223283","l":"Pseudomonas syringae pv. tomato str. DC3000","na":14,"nb":7,"a":[["IDPO%3A0000030","entropic chain"],["IDPO%3A0000037","molecular recognition display site"],["Pfam%3APF16847","Avirulence AvrPtoB, BAK1-binding domain"],["Pfam%3APF09046","AvrPtoB E3 ubiquitin ligase"],["Pfam%3APF25965","ALG44 beta-barrel domain"],["Pfam%3APF25964","ALG44, barrel-sandwich hybrid domain"]],"b":[["alkaloids/yersiniabactin.yaml","yersiniabactin"],["amino_acids_and_peptides/syringafactin-a.yaml","syringafactin A"],["amino_acids_and_peptides/syringafactin-b.yaml","syringafactin B"],["amino_acids_and_peptides/syringafactin-c.yaml","syringafactin C"],["amino_acids_and_peptides/syringafactin-d.yaml","syringafactin D"],["amino_acids_and_peptides/syringafactin-e.yaml","syringafactin E"]]},{"id":"NCBITaxon:27334","l":"Penicillium expansum","na":7,"nb":10,"a":[["Pfam%3APF11786","Aft1 HRA domain"],["Pfam%3APF11787","Aft1 HRR domain"],["Pfam%3APF11785","Aft1 osmotic stress response (OSM) domain"],["Pfam%3APF14856","Pathogen effector; putative necrosis-inducing factor"],["PROSITE%3APS00624","GMC oxidoreductases signature 2"],["TED%3AAF-A0A0A2ILJ4-F1-model_v4_TED03","TED novel fold AF-A0A0A2ILJ4-F1-model_v4_TED03"]],"b":[["alkaloids/chaetoglobosin-a.yaml","chaetoglobosin A"],["alkaloids/chaetoglobosin-c.yaml","chaetoglobosin C"],["alkaloids/communesin-a.yaml","communesin A"],["alkaloids/communesin-b.yaml","communesin B"],["alkaloids/communesin-c.yaml","communesin C"],["alkaloids/communesin-d.yaml","communesin D"]]},{"id":"NCBITaxon:2024858","l":"Sandaracinus sp.","na":7,"nb":7,"a":[["TED%3AAF-A0A2D9T9L6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9T9L6-F1-model_v4_TED01"],["TED%3AAF-A0A2E0T9R7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0T9R7-F1-model_v4_TED01"],["TED%3AAF-A0A891ZV95-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A891ZV95-F1-model_v4_TED01"],["TED%3AAF-A0A2D9SYS7-F1-model_v4_TED02","TED novel fold AF-A0A2D9SYS7-F1-model_v4_TED02"],["TED%3AAF-A0A2D9TFN8-F1-model_v4_TED02","TED novel fold AF-A0A2D9TFN8-F1-model_v4_TED02"],["TED%3AAF-A0A2E0TMV1-F1-model_v4_TED03","TED novel fold AF-A0A2E0TMV1-F1-model_v4_TED03"]],"b":[["amino_acids_and_peptides/sandarazol-a.yaml","sandarazol A"],["amino_acids_and_peptides/sandarazol-c.yaml","sandarazol C"],["amino_acids_and_peptides/sandarazol-d.yaml","sandarazol D"],["amino_acids_and_peptides/sandarazol-f.yaml","sandarazol F"],["amino_acids_and_peptides/sandarazol-g.yaml","sandarazol G"],["unclassified/sandarazol-b.yaml","sandarazol B"]]},{"id":"UniProt:Q14694","l":"","na":27,"nb":6,"a":[["ComplexPortal%3ACPX-11609","-"],["ComplexPortal%3ACPX-11855","-"],["ComplexPortal%3ACPX-12223","-"],["ComplexPortal%3ACPX-12431","-"],["ComplexPortal%3ACPX-12812","-"],["ComplexPortal%3ACPX-13824","-"]],"b":[["alkaloids/esmeraldin.yaml","esmeraldin"],["alkaloids/fervenulin.yaml","fervenulin"],["alkaloids/nybomycin.yaml","nybomycin"],["polyketides/asukamycin.yaml","asukamycin"],["polyketides/dehydrorabelomycin.yaml","dehydrorabelomycin"],["polyketides/flaviolin.yaml","flaviolin"]]},{"id":"UniProt:Q99700","l":"","na":20,"nb":6,"a":[["ComplexPortal%3ACPX-12180","-"],["ComplexPortal%3ACPX-12321","-"],["ComplexPortal%3ACPX-12947","-"],["ComplexPortal%3ACPX-13401","-"],["ComplexPortal%3ACPX-15183","-"],["ComplexPortal%3ACPX-17860","-"]],"b":[["alkaloids/8-azaguanine.yaml","8-azaguanine"],["alkaloids/cycloheximide.yaml","cycloheximide"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"],["unclassified/antimycin-a.yaml","antimycin A"],["unclassified/echinomycin.yaml","echinomycin"]]},{"id":"NCBITaxon:1916","l":"Streptomyces lividans","na":6,"nb":18,"a":[["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["Pfam%3APF27079","SpdB plasmid transfer protein, C-terminal HTH domain"],["Pfam%3APF27072","KilB plasmid transfer protein"],["Pfam%3APF08386","TAP-like protein"],["PROSITE%3APS00999","Streptomyces subtilisin-type inhibitors signature"],["Pfam%3APF03664","Glycosyl hydrolase family 62"]],"b":[["alkaloids/rebeccamycin.yaml","rebeccamycin"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["amino_acids_and_peptides/dehydroxynocardamine.yaml","dehydroxynocardamine"],["amino_acids_and_peptides/goadsporin.yaml","goadsporin"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"]]},{"id":"NCBITaxon:4577","l":"Zea mays","na":18,"nb":6,"a":[["IDPO%3A0000002","disorder"],["Pfam%3APF14861","Plant antimicrobial peptide"],["Pfam%3APF02041","Auxin binding protein"],["Pfam%3APF25436","BSD2 cysteine rich domain"],["Pfam%3APF23493","Cysteinyl-tRNA ligase anticodon binding domain"],["Pfam%3APF03330","Lytic transglycolase"]],"b":[["alkaloids/dimboa.yaml","DIMBOA"],["polyketides/emodin.yaml","emodin"],["terpenoids/zealexin-a1.yaml","zealexin A1"],["terpenoids/zealexin-b3.yaml","zealexin B3"],["terpenoids/zealexin-c2.yaml","zealexin C2"],["unclassified/aflatoxin.yaml","aflatoxin"]]},{"id":"UniProt:P40818","l":"","na":16,"nb":6,"a":[["ComplexPortal%3ACPX-13765","-"],["ComplexPortal%3ACPX-16972","-"],["ComplexPortal%3ACPX-18301","-"],["ComplexPortal%3ACPX-19098","-"],["ComplexPortal%3ACPX-24015","-"],["GO%3A0004843","cysteine-type deubiquitinase activity"]],"b":[["alkaloids/esmeraldin.yaml","esmeraldin"],["alkaloids/fervenulin.yaml","fervenulin"],["alkaloids/neocarazostatin-a.yaml","neocarazostatin A"],["alkaloids/nybomycin.yaml","nybomycin"],["polyketides/dehydrorabelomycin.yaml","dehydrorabelomycin"],["polyketides/flaviolin.yaml","flaviolin"]]},{"id":"NCBITaxon:321614","l":"","na":6,"nb":12,"a":[["Pfam%3APF11786","Aft1 HRA domain"],["Pfam%3APF11787","Aft1 HRR domain"],["Pfam%3APF26980","Dicer-like protein 2, dsRNA binding domain"],["Pfam%3APF18973","Putative Chitin binding like"],["Pfam%3APF25326","SRB8 ARM-like domain"],["TED%3AAF-A0A7U2I0S3-F1-model_v4_TED02","TED novel fold AF-A0A7U2I0S3-F1-model_v4_TED02"]],"b":[["alkaloids/phomacin-d.yaml","phomacin D"],["alkaloids/phomacin-e.yaml","phomacin E"],["polyketides/betaenone-b.yaml","betaenone B"],["polyketides/betaenone-c.yaml","betaenone C"],["polyketides/compound-3-2.yaml","compound 3"],["polyketides/compound-5-2.yaml","compound 5"]]},{"id":"UniProt:Q70CQ3","l":"","na":11,"nb":6,"a":[["ComplexPortal%3ACPX-14824","-"],["ComplexPortal%3ACPX-15800","-"],["ComplexPortal%3ACPX-20518","-"],["ComplexPortal%3ACPX-22415","-"],["ComplexPortal%3ACPX-22784","-"],["GO%3A0035871","protein K11-linked deubiquitination"]],"b":[["alkaloids/esmeraldin.yaml","esmeraldin"],["alkaloids/fervenulin.yaml","fervenulin"],["alkaloids/holomycin.yaml","holomycin"],["alkaloids/neocarazostatin-a.yaml","neocarazostatin A"],["polyketides/flaviolin.yaml","flaviolin"],["polyketides/nigericin.yaml","nigericin"]]},{"id":"UniProt:P09936","l":"","na":10,"nb":6,"a":[["GO%3A0031694","alpha-2A adrenergic receptor binding"],["GO%3A0008242","omega peptidase activity"],["InterPro%3AIPR057254","Ubiquitin carboxyl-terminal hydrolase family 1, cysteine active-site"],["CDD%3Acd09616","Peptidase_C12_UCH_L1_L3"],["InterPro%3AIPR001578","Peptidase C12, ubiquitin carboxyl-terminal hydrolase"],["Pfam%3APF01088","Ubiquitin carboxyl-terminal hydrolase, family 1"]],"b":[["alkaloids/esmeraldin.yaml","esmeraldin"],["alkaloids/fervenulin.yaml","fervenulin"],["polyketides/asukamycin.yaml","asukamycin"],["polyketides/chelocardin.yaml","chelocardin"],["polyketides/dehydrorabelomycin.yaml","dehydrorabelomycin"],["polyketides/flaviolin.yaml","flaviolin"]]},{"id":"NCBITaxon:10090","l":"Mus musculus","na":45870,"nb":5,"a":[["EC%3A1.1.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.1.98.-","With other, known, acceptors"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"],["terpenoids/carotene.yaml","β-carotene"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":46,"nb":5,"a":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF13166","AAA domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF27533","CapK C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"],["unclassified/leuvalin.yaml","leuvalin"],["unclassified/phevalin.yaml","phevalin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":5,"nb":31,"a":[["TED%3AAF-A0A4Y6CF56-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y6CF56-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6CNZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Y6CNZ1-F1-model_v4_TED02"],["TED%3AAF-A0A7Y4IIX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4IIX4-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6B7F9-F1-model_v4_TED01","TED novel fold AF-A0A4Y6B7F9-F1-model_v4_TED01"],["TED%3AAF-A0A7Y4IR70-F1-model_v4_TED01","TED novel fold AF-A0A7Y4IR70-F1-model_v4_TED01"]],"b":[["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["alkaloids/myxofacycline-e.yaml","myxofacycline E"],["alkaloids/myxofacycline-f.yaml","myxofacycline F"],["alkaloids/myxofacycline-g.yaml","myxofacycline G"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":25,"nb":5,"a":[["Pfam%3APF13372","Alginate export"],["Pfam%3APF25965","ALG44 beta-barrel domain"],["Pfam%3APF25964","ALG44, barrel-sandwich hybrid domain"],["Pfam%3APF16844","Dinitrogenase iron-molybdenum cofactor, N-terminal"],["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"]],"b":[["alkaloids/aminochelin.yaml","aminochelin"],["alkaloids/azotochelin.yaml","azotochelin"],["alkaloids/protochelin.yaml","protochelin"],["amino_acids_and_peptides/azotobactin-d.yaml","azotobactin D"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"UniProt:O14656","l":"","na":21,"nb":5,"a":[["ComplexPortal%3ACPX-21660","-"],["ComplexPortal%3ACPX-26140","-"],["ComplexPortal%3ACPX-26338","Cytoplasmic organelles"],["ComplexPortal%3ACPX-26301","Secretory organelles"],["GO%3A0008092","cytoskeletal protein binding"],["GO%3A0019894","kinesin binding"]],"b":[["alkaloids/chloramphenicol.yaml","chloramphenicol"],["alkaloids/cycloheximide.yaml","cycloheximide"],["alkaloids/tioguanine.yaml","tioguanine"],["amino_acids_and_peptides/cyclosporin-a.yaml","cyclosporin A"],["polyketides/daunorubicin.yaml","daunorubicin"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":20,"nb":5,"a":[["Pfam%3APF14535","AMP-binding enzyme C-terminal domain"],["Pfam%3APF13442","Cytochrome C oxidase, cbb3-type, subunit III"],["Pfam%3APF22247","Catechol 2,3-dioxygenase-like N-terminal domain"],["Pfam%3APF25371","Domain of unknown function (DUF7884)"],["Pfam%3APF19301","LigXa C-terminal domain like"],["Pfam%3APF12729","Four helix bundle sensory module for signal transduction"]],"b":[["alkaloids/promysalin.yaml","promysalin"],["polyketides/pseudopyronine-a.yaml","pseudopyronine A"],["polyketides/pseudopyronine-b.yaml","pseudopyronine B"],["unclassified/putisolvin-iii.yaml","putisolvin III"],["unclassified/putisolvin-v.yaml","putisolvin V"]]},{"id":"NCBITaxon:3562","l":"Spinacia oleracea","na":13,"nb":5,"a":[["Pfam%3APF21329","Peptidyl-prolyl cis-trans isomerase CYP38-like, PsbQ-like domain"],["Pfam%3APF02941","Ferredoxin thioredoxin reductase variable alpha chain"],["Pfam%3APF02943","Ferredoxin thioredoxin reductase catalytic beta chain"],["Pfam%3APF17257","Family of unknown function (DUF5323)"],["PROSITE%3APS00567","Phosphoribulokinase signature"],["PROSITE%3APS01026","Photosystem I psaG and psaK proteins signature"]],"b":[["terpenoids/yossoside-i.yaml","Yossoside I"],["terpenoids/yossoside-ii.yaml","Yossoside II"],["terpenoids/yossoside-iii.yaml","Yossoside III"],["terpenoids/yossoside-iv.yaml","Yossoside IV"],["terpenoids/yossoside-v.yaml","Yossoside V"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":13,"nb":5,"a":[["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF03173","Putative carbohydrate binding domain"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"],["Pfam%3APF06438","Heme-binding protein A (HasA)"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF05247","Flagellar transcriptional activator (FlhD)"]],"b":[["alkaloids/prodigiosin-2.yaml","prodigiosin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/serratiochelin-a.yaml","serratiochelin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["polyketides/oocydin-a.yaml","oocydin A"]]},{"id":"UniProt:P36969","l":"","na":12,"nb":5,"a":[["ComplexPortal%3ACPX-18066","-"],["GO%3A0047066","phospholipid-hydroperoxide glutathione peroxidase activity"],["GO%3A0008430","selenium binding"],["GO%3A0034599","cellular response to oxidative stress"],["InterPro%3AIPR029759","Glutathione peroxidase active site"],["InterPro%3AIPR029760","Glutathione peroxidase conserved site"]],"b":[["alkaloids/ergotamine.yaml","ergotamine"],["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"],["polyketides/pentamycin.yaml","pentamycin"],["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"],["unclassified/antimycin-a.yaml","antimycin A"]]},{"id":"NCBITaxon:5507","l":"Fusarium oxysporum","na":5,"nb":11,"a":[["Pfam%3APF02015","Glycosyl hydrolase family 45"],["PROSITE%3APS01140","Glycosyl hydrolases family 45 active site"],["TED%3AAF-A0A2H3TJY2-F1-model_v4_TED01","TED novel fold AF-A0A2H3TJY2-F1-model_v4_TED01"],["TED%3AAF-A0A420N954-F1-model_v4_TED01","TED novel fold AF-A0A420N954-F1-model_v4_TED01"],["TED%3AAF-A0A420P6J4-F1-model_v4_TED01","TED novel fold AF-A0A420P6J4-F1-model_v4_TED01"]],"b":[["alkaloids/fusaric-acid.yaml","fusaric acid"],["polyketides/bikaverin.yaml","bikaverin"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"],["polyketides/fumonisin-c1.yaml","Fumonisin C1"],["polyketides/fumonisin-c2.yaml","Fumonisin C2"],["polyketides/fumonisin-c3.yaml","Fumonisin C3"]]},{"id":"NCBITaxon:953739","l":"Streptomyces venezuelae ATCC 10712","na":5,"nb":10,"a":[["Pfam%3APF11583","P-aminobenzoate N-oxygenase AurF"],["Pfam%3APF18456","Diiron non-heme beta-hydroxylase N-terminal domain"],["Pfam%3APF07931","Chloramphenicol phosphotransferase-like protein"],["Pfam%3APF02650","WhiA C-terminal HTH domain"],["Pfam%3APF14527","WhiA LAGLIDADG-like domain"]],"b":[["alkaloids/chloramphenicol.yaml","chloramphenicol"],["alkaloids/gaburedin-d.yaml","gaburedin D"],["alkaloids/watasemycin-a.yaml","watasemycin A"],["alkaloids/watasemycin-b.yaml","watasemycin B"],["amino_acids_and_peptides/gaburedin-a.yaml","gaburedin A"],["amino_acids_and_peptides/gaburedin-b.yaml","gaburedin B"]]},{"id":"NCBITaxon:63737","l":"Nostoc punctiforme PCC 73102","na":5,"nb":7,"a":[["Pfam%3APF11266","Long-chain fatty aldehyde decarbonylase"],["Pfam%3APF21808","Bacterial dynamin-like protein, helical domain"],["Pfam%3APF18460","Heterocyst differentiation regulator C-terminal Hood domain"],["Pfam%3APF13619","KTSC domain"],["PROSITE%3APS01026","Photosystem I psaG and psaK proteins signature"]],"b":[["amino_acids_and_peptides/microviridin-n3.yaml","microviridin N3"],["amino_acids_and_peptides/microviridin-n4.yaml","microviridin N4"],["amino_acids_and_peptides/microviridin-n6.yaml","microviridin N6"],["amino_acids_and_peptides/microviridin-n7.yaml","microviridin N7"],["amino_acids_and_peptides/microviridin-n8.yaml","microviridin N8"],["amino_acids_and_peptides/microviridin-n9.yaml","microviridin N9"]]},{"id":"NCBITaxon:5081","l":"Penicillium sp.","na":5,"nb":6,"a":[["Pfam%3APF13364","Beta-galactosidase second all-beta domain"],["Pfam%3APF10435","Beta-galactosidase, domain 2"],["Pfam%3APF13363","Beta-galactosidase, domain 3"],["Pfam%3APF01301","Glycosyl hydrolases family 35"],["PROSITE%3APS01182","Glycosyl hydrolases family 35 putative active site"]],"b":[["alkaloids/citridone-a.yaml","citridone A"],["alkaloids/citridone-b-2.yaml","citridone B'"],["alkaloids/citridone-b.yaml","citridone B"],["alkaloids/cj-15-696.yaml","CJ-15,696"],["alkaloids/cj-16-173.yaml","CJ-16,173"],["polyketides/gregatin-a.yaml","gregatin A"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":6,"nb":5,"a":[["Pfam%3APF02929","Beta galactosidase small chain"],["Pfam%3APF27279","Fumarate--diaminopropanoate ligase C-terminal domain"],["Pfam%3APF18024","Helix-turn-helix domain"],["Pfam%3APF16353","Beta-galactosidase, domain 4"],["PROSITE%3APS00594","Aromatic amino acids permeases signature"],["PROSITE%3APS00853","Beta-eliminating lyases pyridoxal-phosphate attachment site"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/andrimid.yaml","andrimid"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/pantocin-a.yaml","pantocin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:43658","l":"Pseudoalteromonas rubra","na":5,"nb":5,"a":[["proteintraitsmech%3AELIFE109154_Orn_monoox","Metallophore-associated ornithine N5-monooxygenase family"],["TED%3AAF-A0A0F4QZE1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0F4QZE1-F1-model_v4_TED02"],["TED%3AAF-A0A0U3GWJ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0U3GWJ2-F1-model_v4_TED01"],["TED%3AAF-A0A0F4QSG0-F1-model_v4_TED02","TED novel fold AF-A0A0F4QSG0-F1-model_v4_TED02"],["TED%3AAF-A0A0L0EPH9-F1-model_v4_TED03","TED novel fold AF-A0A0L0EPH9-F1-model_v4_TED03"]],"b":[["alkaloids/prodigiosin.yaml","prodigiosin"],["polyketides/nonyltyrazolone.yaml","nonyltyrazolone"],["polyketides/undecyltyrazolone.yaml","undecyltyrazolone"],["shikimates_and_phenylpropanoids/z-6-undecenyltyrazolone.yaml","(Z)-ω-6-undecenyltyrazolone"],["unclassified/heptyltyrazolone.yaml","heptyltyrazolone"]]},{"id":"NCBITaxon:6239","l":"Caenorhabditis elegans","na":9682,"nb":4,"a":[["EC%3A1.11.1.-","Peroxidases"],["EC%3A1.11.2.-","With H2O2 as acceptor, one oxygen atom of which is incorporated into the product"],["EC%3A1.14.14.-","With reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.17.-","With reduced ascorbate as one donor, and incorporation of one atom of oxygen"],["EC%3A1.14.19.-","With oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water"],["EC%3A1.14.99.-","Miscellaneous"]],"b":[["alkaloids/biotin.yaml","biotin"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/itaconic-acid.yaml","itaconic acid"],["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"]]},{"id":"NCBITaxon:10116","l":"Rattus norvegicus","na":1002,"nb":4,"a":[["IDPO%3A0000011","disorder to order"],["IDPO%3A0000030","entropic chain"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000033","flexible linker"],["IDPO%3A0000041","glycosylation display site"],["IDPO%3A0000003","molten globule"]],"b":[["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/methylarcyriarubin.yaml","methylarcyriarubin"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/lugdunin.yaml","lugdunin"]]},{"id":"NCBITaxon:39947","l":"Oryza sativa subsp. japonica","na":158,"nb":4,"a":[["Pfam%3APF03157","High molecular weight glutenin subunit"],["Pfam%3APF26249","RdRP3/4/5, N-terminal four helical bundle domain"],["Pfam%3APF23242","TRIP13-like, AAA+ ATPase lid C-terminal domain"],["Pfam%3APF26791","AAPxQ domain"],["Pfam%3APF24922","Acyl-CoA-binding domain-containing protein 4-6, C-terminal"],["Pfam%3APF04864","Allinase"]],"b":[["terpenoids/10-oxodepressin.yaml","10-Oxodepressin"],["terpenoids/momilactone-b.yaml","momilactone B"],["terpenoids/oryzalides.yaml","oryzalides"],["terpenoids/phytocassane.yaml","phytocassane"]]},{"id":"UniProt:P04637","l":"","na":55,"nb":4,"a":[["ComplexPortal%3ACPX-12293","-"],["ComplexPortal%3ACPX-12528","-"],["ComplexPortal%3ACPX-13029","-"],["ComplexPortal%3ACPX-14009","-"],["ComplexPortal%3ACPX-16240","-"],["ComplexPortal%3ACPX-21406","-"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["polyketides/herboxidiene.yaml","herboxidiene"],["terpenoids/zeaxanthin.yaml","zeaxanthin"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":4,"nb":30,"a":[["Pfam%3APF11720","Peptidase inhibitor I78 family"],["Pfam%3APF12296","Hydrophobic surface binding protein A"],["TED%3AAF-A0A3M7JGA1-F1-model_v4_TED02","TED novel fold AF-A0A3M7JGA1-F1-model_v4_TED02"],["TED%3AAF-A0A7G5JNS3-F1-model_v4_TED03","TED novel fold AF-A0A7G5JNS3-F1-model_v4_TED03"]],"b":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["amino_acids_and_peptides/ditryptophenaline.yaml","(-)-ditryptophenaline"],["amino_acids_and_peptides/imizoquin-a.yaml","imizoquin A"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":30,"nb":4,"a":[["Pfam%3APF08787","Alginate lyase"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF08218","Citrate lyase ligase C-terminal domain"],["Pfam%3APF13727","CoA-binding domain"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["Pfam%3APF20714","DpiA-like helix-turn-helix domain"]],"b":[["alkaloids/tilivalline.yaml","tilivalline"],["amino_acids_and_peptides/colibactin.yaml","colibactin"],["amino_acids_and_peptides/klebsidin.yaml","klebsidin"],["carbohydrates/capsular-polysaccharide-2.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":23,"nb":4,"a":[["Pfam%3APF08878","HamA"],["Pfam%3APF05791","Bacillus haemolytic enterotoxin (HBL)"],["Pfam%3APF10803","Spore germination GerPB"],["Pfam%3APF10737","Spore germination protein GerPC"],["Pfam%3APF10970","Spore germination protein GerPE"],["Pfam%3APF07486","Cell Wall Hydrolase"]],"b":[["alkaloids/zwittermicin-a.yaml","zwittermicin A"],["amino_acids_and_peptides/livipeptin.yaml","Livipeptin"],["carbohydrates/tunicamycin.yaml","tunicamycin"],["unclassified/cereulide.yaml","cereulide"]]},{"id":"NCBITaxon:378806","l":"Allostigmatella aurantiaca DW4/3-1","na":4,"nb":17,"a":[["TED%3AAF-Q098I8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q098I8-F1-model_v4_TED01"],["TED%3AAF-E3FRW3-F1-model_v4_TED01","TED novel fold AF-E3FRW3-F1-model_v4_TED01"],["TED%3AAF-E3G0M4-F1-model_v4_TED01","TED novel fold AF-E3G0M4-F1-model_v4_TED01"],["TED%3AAF-Q08VS7-F1-model_v4_TED01","TED novel fold AF-Q08VS7-F1-model_v4_TED01"]],"b":[["polyketides/aurafuron-a.yaml","aurafuron A"],["polyketides/dawenol.yaml","dawenol"],["unclassified/dkxanthene-504.yaml","dkxanthene 504"],["unclassified/dkxanthene-508.yaml","dkxanthene 508"],["unclassified/dkxanthene-518.yaml","dkxanthene 518"],["unclassified/dkxanthene-520.yaml","dkxanthene 520"]]},{"id":"NCBITaxon:5518","l":"Fusarium graminearum","na":4,"nb":14,"a":[["Pfam%3APF09118","Galactose oxidase-like, Early set domain"],["Pfam%3APF07250","Glyoxal oxidase N-terminus"],["TED%3AAF-A0A2H3FY84-F1-model_v4_TED03","TED novel fold AF-A0A2H3FY84-F1-model_v4_TED03"],["TED%3AAF-A0A2H3G191-F1-model_v4_TED01","TED novel fold AF-A0A2H3G191-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/fusaoctaxin-a.yaml","fusaoctaxin A"],["polyketides/aurofusarin.yaml","aurofusarin"],["polyketides/fusarielin-h.yaml","fusarielin H"],["polyketides/gibepyrone-a.yaml","gibepyrone A"],["polyketides/prolipyrone-b.yaml","prolipyrone B"],["polyketides/zearalenone.yaml","zearalenone"]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":4,"nb":13,"a":[["Pfam%3APF16861","Carbamoyltransferase C-terminus"],["Pfam%3APF02543","Carbamoyltransferase N-terminus"],["Pfam%3APF01960","ArgJ family"],["Pfam%3APF07467","Beta-lactamase inhibitor (BLIP)"]],"b":[["alkaloids/holomycin.yaml","holomycin"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/2-formyloxymethylclavam.yaml","2-formyloxymethylclavam"],["amino_acids_and_peptides/2-hydroxymethylclavam.yaml","2-hydroxymethylclavam"],["amino_acids_and_peptides/alanylclavam.yaml","alanylclavam"],["amino_acids_and_peptides/cephamycin-c.yaml","cephamycin C"]]},{"id":"NCBITaxon:1914","l":"Streptomyces lavendulae","na":4,"nb":12,"a":[["Pfam%3APF01678","Diaminopimelate epimerase"],["Pfam%3APF27100","D-cycloserine synthetase DcsG, N-terminal domain"],["Pfam%3APF20240","Domain of unknown function (DUF6597)"],["Pfam%3APF11731","Pathogenicity locus"]],"b":[["alkaloids/indigoidine.yaml","indigoidine"],["alkaloids/saframycin-a.yaml","saframycin A"],["alkaloids/saframycin-b.yaml","saframycin B"],["amino_acids_and_peptides/cycloserine.yaml","cycloserine"],["amino_acids_and_peptides/isocomplestatin.yaml","isocomplestatin"],["carbohydrates/showdomycin.yaml","showdomycin"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":4,"nb":10,"a":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"],["TED%3AAF-A0A085UKV7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085UKV7-F1-model_v4_TED01"],["TED%3AAF-A0A4R6IU28-F1-model_v4_TED02","TED novel fold AF-A0A4R6IU28-F1-model_v4_TED02"]],"b":[["alkaloids/labradorin-1.yaml","labradorin 1"],["alkaloids/labradorin-2.yaml","labradorin 2"],["alkaloids/secimide.yaml","secimide"],["amino_acids_and_peptides/phaseolotoxin.yaml","phaseolotoxin"],["amino_acids_and_peptides/syringolin-a.yaml","syringolin A"],["amino_acids_and_peptides/tabtoxin.yaml","tabtoxin"]]},{"id":"NCBITaxon:500485","l":"Penicillium rubens Wisconsin 54-1255","na":4,"nb":9,"a":[["Pfam%3APF03417","Acyl-coenzyme A:6-aminopenicillanic acid acyl-transferase"],["Pfam%3APF03659","Glycosyl hydrolase family 71"],["PROSITE%3APS00185","Isopenicillin N synthase signature 1"],["PROSITE%3APS00186","Isopenicillin N synthase signature 2"]],"b":[["alkaloids/dehydrohistidyltryptophanyldiketopiperazine.yaml","dehydrohistidyltryptophanyldiketopiperazine"],["alkaloids/glandicoline-a.yaml","glandicoline A"],["alkaloids/glandicoline-b.yaml","glandicoline B"],["alkaloids/meleagrine.yaml","meleagrine"],["polyketides/sorbicillin.yaml","sorbicillin"],["terpenoids/conidiogenone.yaml","conidiogenone"]]},{"id":"NCBITaxon:5076","l":"Penicillium chrysogenum","na":4,"nb":9,"a":[["Pfam%3APF03417","Acyl-coenzyme A:6-aminopenicillanic acid acyl-transferase"],["Pfam%3APF11402","Antifungal protein"],["PROSITE%3APS00185","Isopenicillin N synthase signature 1"],["PROSITE%3APS00186","Isopenicillin N synthase signature 2"]],"b":[["alkaloids/chrysogine.yaml","chrysogine"],["amino_acids_and_peptides/benzylpenicillin-sodium.yaml","benzylpenicillin sodium"],["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"],["amino_acids_and_peptides/n-5s-5-ammonio-5-carboxylatopentanoyl-l-cysteinyl-d-valinate.yaml","N-[(5S)-5-ammonio-5-carboxylatopentanoyl]-L-cysteinyl-D-valinate"],["polyketides/2-3-dihydrosorbicillin.yaml","2'3'-dihydrosorbicillin"],["polyketides/bisorbicillinol.yaml","bisorbicillinol"]]},{"id":"NCBITaxon:1836","l":"Saccharopolyspora erythraea","na":4,"nb":8,"a":[["Pfam%3APF08990","Erythronolide synthase docking domain"],["Pfam%3APF09277","Erythronolide synthase, docking"],["Pfam%3APF12728","Helix-turn-helix domain"],["Pfam%3APF12307","Protein of unknown function (DUF3631)"]],"b":[["amino_acids_and_peptides/erythrochelin.yaml","erythrochelin"],["polyketides/3-3-diflaviolin.yaml","3,3'-diflaviolin"],["polyketides/erythromycin-a.yaml","erythromycin A"],["polyketides/erythromycin-b.yaml","erythromycin B"],["polyketides/flaviolin-rhamnoside.yaml","flaviolin rhamnoside"],["polyketides/flaviolin.yaml","flaviolin"]]},{"id":"NCBITaxon:227882","l":"Streptomyces avermitilis MA-4680 = NBRC 14893","na":8,"nb":4,"a":[["Pfam%3APF17390","Bacterial alpha-L-rhamnosidase C-terminal domain"],["Pfam%3APF08531","Alpha-L-rhamnosidase N-terminal domain"],["Pfam%3APF05592","Bacterial alpha-L-rhamnosidase concanavalin-like domain"],["Pfam%3APF26366","Domain of unknown function (DUF8094)"],["Pfam%3APF25788","Rha78A-like, N-terminal immunoglobulin domain"],["Pfam%3APF06781","Cell division protein CrgA"]],"b":[["amino_acids_and_peptides/edha.yaml","EDHA"],["polyketides/filipin-iii.yaml","filipin III"],["terpenoids/avermitilol.yaml","avermitilol"],["terpenoids/pentalenolactone.yaml","pentalenolactone"]]},{"id":"NCBITaxon:326423","l":"Bacillus velezensis FZB42","na":4,"nb":8,"a":[["Pfam%3APF21607","[Acyl-carrier-protein] S-malonyltransferase, inserted helical domain"],["Pfam%3APF21996","Histidyl-tRNA synthetase HisZ, C-terminal domain"],["Pfam%3APF07293","Protein of unknown function (DUF1450)"],["Pfam%3APF12227","Protein of unknown function (DUF3603)"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["polyketides/bacillaene.yaml","bacillaene"],["polyketides/difficidin.yaml","difficidin"],["polyketides/macrolactin-h.yaml","macrolactin H"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:1397","l":"Niallia circulans","na":6,"nb":4,"a":[["Pfam%3APF03423","Carbohydrate binding domain (family 25)"],["Pfam%3APF13199","Glycosyl hydrolase family 66"],["Pfam%3APF14399","Butirosin biosynthesis protein H, N-terminal"],["Pfam%3APF19634","Family of unknown function (DUF6137)"],["PROSITE%3APS60000","Chitosanases families 46 and 80 active sites signature"],["TED%3AAF-A0A0J1IR10-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0J1IR10-F1-model_v4_TED01"]],"b":[["carbohydrates/butirosin-a.yaml","butirosin A"],["carbohydrates/butirosin-b.yaml","butirosin B"],["carbohydrates/butirosin.yaml","butirosin"],["unclassified/pelgipeptin-b.yaml","Pelgipeptin B"]]},{"id":"NCBITaxon:32049","l":"Picosynechococcus sp. PCC 7002","na":6,"nb":4,"a":[["Pfam%3APF09367","CpeS-like protein"],["Pfam%3APF06206","CpeT/CpcT family (DUF1001)"],["Pfam%3APF12965","Domain of unknown function (DUF3854)"],["Pfam%3APF19928","Domain of unknown function (DUF6391)"],["Pfam%3APF09366","Protein of unknown function (DUF1997)"],["Pfam%3APF14870","Photosynthesis system II assembly factor YCF48"]],"b":[["alkaloids/synechobactin-a.yaml","synechobactin A"],["alkaloids/synechobactin-b.yaml","synechobactin B"],["alkaloids/synechobactin-c.yaml","synechobactin C"],["fatty_acids/nonadec-1-ene.yaml","nonadec-1-ene"]]},{"id":"NCBITaxon:1393","l":"Brevibacillus brevis","na":5,"nb":4,"a":[["Pfam%3APF03306","Alpha-acetolactate decarboxylase"],["Pfam%3APF05384","Sensor protein DegS"],["TED%3AAF-A0A2Z4MK38-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z4MK38-F1-model_v4_TED01"],["TED%3AAF-A0A2Z4MPQ6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2Z4MPQ6-F1-model_v4_TED02"],["TED%3AAF-A0A517IGN3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A517IGN3-F1-model_v4_TED03"]],"b":[["alkaloids/ulbactin-f.yaml","ulbactin F"],["alkaloids/ulbactin-g.yaml","ulbactin G"],["amino_acids_and_peptides/gramicidin.yaml","gramicidin"],["amino_acids_and_peptides/tyrocidine-a.yaml","tyrocidine A"]]},{"id":"NCBITaxon:31958","l":"Amycolatopsis orientalis","na":5,"nb":4,"a":[["Pfam%3APF16990","Carbohydrate binding module (family 35)"],["Pfam%3APF14696","Hydroxyphenylpyruvate dioxygenase, HPPD, N-terminal"],["Pfam%3APF03559","NDP-hexose 2,3-dehydratase"],["Pfam%3APF18368","Exo-beta-D-glucosaminidase Ig-fold domain"],["TED%3AAF-K4FDK5-F1-model_v4_TED01","TED highly-symmetric fold AF-K4FDK5-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/chloroeremomycin.yaml","chloroeremomycin"],["amino_acids_and_peptides/vancomycin.yaml","vancomycin"],["polyketides/eco-0501.yaml","ECO-0501"],["polyketides/quartromicin-a1.yaml","quartromicin A1"]]},{"id":"NCBITaxon:43","l":"Cystobacter fuscus","na":4,"nb":5,"a":[["TED%3AAF-A0A250J1A4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J1A4-F1-model_v4_TED01"],["TED%3AAF-A0A250J4G5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J4G5-F1-model_v4_TED01"],["TED%3AAF-A0A250J8W0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J8W0-F1-model_v4_TED01"],["TED%3AAF-A0A250J3K5-F1-model_v4_TED03","TED novel fold AF-A0A250J3K5-F1-model_v4_TED03"]],"b":[["amino_acids_and_peptides/cystomanamide-a.yaml","cystomanamide A"],["amino_acids_and_peptides/cystomanamide-b.yaml","cystomanamide B"],["amino_acids_and_peptides/cystomanamide-c.yaml","cystomanamide C"],["amino_acids_and_peptides/cystomanamide-d.yaml","cystomanamide D"],["unclassified/cystothiazole-a.yaml","cystothiazole A"]]},{"id":"NCBITaxon:48","l":"Archangium gephyra","na":4,"nb":4,"a":[["TED%3AAF-A0A0G2ZQX3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G2ZQX3-F1-model_v4_TED01"],["TED%3AAF-A0A0G3A8M9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G3A8M9-F1-model_v4_TED01"],["TED%3AAF-A0A2W5T6H4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2W5T6H4-F1-model_v4_TED03"],["TED%3AAF-A0A0G2ZR59-F1-model_v4_TED01","TED novel fold AF-A0A0G2ZR59-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/tubulysin-f.yaml","tubulysin F"],["amino_acids_and_peptides/tubulysin-g.yaml","tubulysin G"],["amino_acids_and_peptides/tubulysin-i.yaml","tubulysin I"],["polyketides/aurafuron-a.yaml","aurafuron A"]]},{"id":"UniProt:P00784","l":"","na":4,"nb":4,"a":[["EC%3A3.4.22.2","papain"],["MCSA%3A174","papain"],["proteintraitsmech%3ABIOLIP_ALD","ALD-binding site"],["proteintraitsmech%3AMETALPDB_RU_DINUCLEAR","dinuclear ruthenium site"]],"b":[["alkaloids/ergotamine.yaml","ergotamine"],["amino_acids_and_peptides/leupeptin-a.yaml","leupeptin A"],["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"],["terpenoids/carotene.yaml","β-carotene"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli K-12","na":17470,"nb":3,"a":[["EC%3A1.1.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.16.-.-","Oxidizing metal ions"],["EC%3A1.18.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.7.-","With an iron-sulfur protein as acceptor"]],"b":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"],["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"],["unclassified/telomestatin.yaml","telomestatin"]]},{"id":"NCBITaxon:9913","l":"Bos taurus","na":435,"nb":3,"a":[["IDPO%3A0000018","disorder to molten globule"],["IDPO%3A0000011","disorder to order"],["IDPO%3A0000019","disorder to pre-molten globule"],["IDPO%3A0000030","entropic chain"],["IDPO%3A0000003","molten globule"],["IDPO%3A0000014","order to disorder"]],"b":[["alkaloids/methylarcyriarubin.yaml","methylarcyriarubin"],["alkaloids/staurosporine-2.yaml","staurosporine"],["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"NCBITaxon:33178","l":"Aspergillus terreus","na":3,"nb":22,"a":[["Pfam%3APF28386","BfoA family C-terminal domain"],["Pfam%3APF28387","BfoA N-terminal domain"],["Pfam%3APF12351","Ca2+ regulator and membrane fusion protein Fig1"]],"b":[["alkaloids/asterriquinone-ct5.yaml","asterriquinone CT5"],["alkaloids/cytochalasin-e.yaml","cytochalasin E"],["alkaloids/dihydroisoflavipucine.yaml","dihydroisoflavipucine"],["alkaloids/terrequinone-a.yaml","terrequinone A"],["amino_acids_and_peptides/valactamide-a.yaml","valactamide A"],["polyketides/citreoviridin.yaml","citreoviridin"]]},{"id":"NCBITaxon:332648","l":"Botrytis cinerea B05.10","na":3,"nb":21,"a":[["Pfam%3APF01670","Glycosyl hydrolase family 12"],["PROSITE%3APS00776","Glycosyl hydrolases family 11 (GH11) active site signature 1"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"]],"b":[["terpenoids/1-epibotrydial.yaml","1-epibotrydial"],["terpenoids/10-dehydroxy-dihydrobotrydialone.yaml","10-dehydroxy dihydrobotrydialone"],["terpenoids/10-epi-dihydrobotrydial.yaml","10-epi-dihydrobotrydial"],["terpenoids/10-oxo-dihydrobotrydial.yaml","10-Oxo-dihydrobotrydial"],["terpenoids/10-oxodehydrodihydrobotrydial.yaml","10-Oxodehydrodihydrobotrydial"],["terpenoids/10-oxodihydrobotry-1-9-4-5-diendial.yaml","10-Oxodihydrobotry-1(9),4(5)-diendial"]]},{"id":"NCBITaxon:54571","l":"Streptomyces venezuelae","na":3,"nb":21,"a":[["Pfam%3APF08990","Erythronolide synthase docking domain"],["TED%3AAF-A0A5P2CQV7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5P2CQV7-F1-model_v4_TED02"],["TED%3AAF-A0A5P2C5X4-F1-model_v4_TED01","TED novel fold AF-A0A5P2C5X4-F1-model_v4_TED01"]],"b":[["alkaloids/anthelvencin-a.yaml","anthelvencin A"],["alkaloids/anthelvencin-b.yaml","anthelvencin B"],["alkaloids/anthelvencin-c.yaml","anthelvencin C"],["alkaloids/chloramphenicol.yaml","chloramphenicol"],["alkaloids/corynecin-ii.yaml","corynecin II"],["alkaloids/gaburedin-d.yaml","gaburedin D"]]},{"id":"UniProt:P22303","l":"","na":21,"nb":3,"a":[["ComplexPortal%3ACPX-10631","-"],["ComplexPortal%3ACPX-11637","-"],["ComplexPortal%3ACPX-12676","-"],["ComplexPortal%3ACPX-14124","-"],["ComplexPortal%3ACPX-18577","-"],["ComplexPortal%3ACPX-24024","-"]],"b":[["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/physostigmine.yaml","physostigmine"],["unclassified/aflatoxin-b1.yaml","aflatoxin B1"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":3,"nb":20,"a":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF22041","Glutathione S-transferase, C-terminal domain"],["Pfam%3APF08493","Aflatoxin regulatory protein"]],"b":[["alkaloids/actinopolymorphol-c.yaml","actinopolymorphol C"],["alkaloids/c-3-sulfonylated-derivative.yaml","C-3 sulfonylated derivative"],["alkaloids/imizoquin-c.yaml","imizoquin C"],["alkaloids/imizoquin-d.yaml","imizoquin D"],["alkaloids/leporin-b.yaml","leporin B"],["alkaloids/n-n-dioxide-containing-derivate.yaml","N,N-dioxide containing derivate"]]},{"id":"NCBITaxon:3847","l":"Glycine max","na":16,"nb":3,"a":[["Pfam%3APF02095","Extensin-like protein"],["Pfam%3APF00477","Small hydrophilic plant seed protein"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF08027","Albumin I chain b"],["Pfam%3APF10539","Development and cell death domain"],["Pfam%3APF03386","Early nodulin 93 ENOD93 protein"]],"b":[["alkaloids/biotin.yaml","biotin"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":3,"nb":13,"a":[["Pfam%3APF14864","Alkyl sulfatase C-terminal"],["Pfam%3APF13816","Haem-containing dehydratase"],["Pfam%3APF14863","Alkyl sulfatase dimerisation"]],"b":[["unclassified/bananamide-d.yaml","bananamide D"],["unclassified/bananamide-e.yaml","bananamide E"],["unclassified/bananamide-f.yaml","bananamide F"],["unclassified/bananamide-g.yaml","bananamide G"],["unclassified/lokisin.yaml","lokisin"],["unclassified/pseudodesmin-a.yaml","pseudodesmin A"]]},{"id":"NCBITaxon:54","l":"Nannocystis exedens","na":13,"nb":3,"a":[["TED%3AAF-A0A1I2A5Z6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2A5Z6-F1-model_v4_TED01"],["TED%3AAF-A0A1I2FM38-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I2FM38-F1-model_v4_TED02"],["TED%3AAF-A0A1I2H0F9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2H0F9-F1-model_v4_TED01"],["TED%3AAF-A0A831ZMD9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A831ZMD9-F1-model_v4_TED01"],["TED%3AAF-A0A1I1T6U3-F1-model_v4_TED01","TED novel fold AF-A0A1I1T6U3-F1-model_v4_TED01"],["TED%3AAF-A0A1I1XLT5-F1-model_v4_TED02","TED novel fold AF-A0A1I1XLT5-F1-model_v4_TED02"]],"b":[["polyketides/phenylnannolone-a.yaml","phenylnannolone A"],["polyketides/phenylnannolone-b.yaml","phenylnannolone B"],["polyketides/phenylnannolone-c.yaml","phenylnannolone C"]]},{"id":"NCBITaxon:451804","l":"Aspergillus fumigatus A1163","na":11,"nb":3,"a":[["Pfam%3APF28347","ACE1 small beta sheet domain"],["Pfam%3APF28329","Zinc finger transcription factor ace1 N-terminal domain"],["Pfam%3APF11001","YDR124W-like, helical bundle domain"],["Pfam%3APF28457","Probable beta-glucosidase btgE N-terminal domain"],["Pfam%3APF13373","DSC E3 ubiquitin ligase complex subunit 3, C-terminal domain"],["Pfam%3APF10302","DSC E3 ubiquitin ligase complex subunit 3, ubiquitin-like domain"]],"b":[["terpenoids/21-h-hopane-3beta-22-diol.yaml","21-β-H-hopane-3beta, 22-diol"],["terpenoids/compound-3-3.yaml","compound 3"],["terpenoids/fumihopaside-a.yaml","fumihopaside A"]]},{"id":"NCBITaxon:5053","l":"Aspergillus aculeatus","na":3,"nb":11,"a":[["Pfam%3APF14683","Polysaccharide lyase family 4, domain III"],["Pfam%3APF14686","Polysaccharide lyase family 4, domain II"],["Pfam%3APF01670","Glycosyl hydrolase family 12"]],"b":[["alkaloids/acurin-a.yaml","acurin A"],["polyketides/secalonic-acid-a.yaml","Secalonic acid A"],["terpenoids/aculene-a.yaml","aculene A"],["terpenoids/aculene-b.yaml","aculene B"],["terpenoids/aculene-c.yaml","aculene C"],["terpenoids/aculene-d.yaml","aculene D"]]},{"id":"UniProt:Q8WZA2","l":"","na":3,"nb":10,"a":[["ComplexPortal%3ACPX-12363","-"],["CDD%3Acd04437","DEP_Epac"],["CATH%3A1.10.8.1240","CATH homologous superfamily 1.10.8.1240"]],"b":[["alkaloids/8-azaguanine.yaml","8-azaguanine"],["alkaloids/psilocybin.yaml","psilocybin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/actinonin.yaml","actinonin"],["amino_acids_and_peptides/thiostrepton.yaml","thiostrepton"],["carbohydrates/tobramycin.yaml","tobramycin"]]},{"id":"UniProt:Q9BV86","l":"","na":10,"nb":3,"a":[["ComplexPortal%3ACPX-14881","-"],["ComplexPortal%3ACPX-15959","-"],["ComplexPortal%3ACPX-20462","-"],["ComplexPortal%3ACPX-23498","-"],["GO%3A0071885","N-terminal protein N-methyltransferase activity"],["GO%3A0018013","N-terminal peptidyl-glycine methylation"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["polyketides/chlortetracycline.yaml","chlortetracycline"],["polyketides/kojic-acid.yaml","kojic acid"]]},{"id":"NCBITaxon:1971","l":"Streptomyces noursei","na":3,"nb":8,"a":[["Pfam%3APF16715","Cyclodipeptide synthase"],["Pfam%3APF19585","Family of unknown function (DUF6092)"],["TED%3AAF-A0A2N8PAT0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N8PAT0-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/curacomycin.yaml","curacomycin"],["amino_acids_and_peptides/dechlorocuracomycin.yaml","dechlorocuracomycin"],["amino_acids_and_peptides/deimino-antipain.yaml","deimino-antipain"],["carbohydrates/streptothricin-f.yaml","streptothricin F"],["polyketides/nystatin-a1.yaml","nystatin A1"],["polyketides/nystatin.yaml","nystatin"]]},{"id":"NCBITaxon:4081","l":"Solanum lycopersicum","na":8,"nb":3,"a":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF02977","Carboxypeptidase A inhibitor"],["Pfam%3APF26410","GH family 5 beta-mannosidase-like"],["Pfam%3APF02496","ABA/WDS induced protein"],["Pfam%3APF17302","Family of unknown function (DUF5351)"],["PROSITE%3APS00502","Polygalacturonase active site"]],"b":[["fatty_acids/falcarindiol.yaml","falcarindiol"],["terpenoids/lycosantalonol.yaml","lycosantalonol"],["terpenoids/phellandrene.yaml","β-phellandrene"]]},{"id":"NCBITaxon:331117","l":"Aspergillus fischeri NRRL 181","na":3,"nb":7,"a":[["Pfam%3APF23681","ATP-dependent rRNA helicase SPB4-like, C-terminal tail"],["Pfam%3APF16803","Fe-S cluster assembly protein DRE2 N-terminus"],["Pfam%3APF02012","BNR/Asp-box repeat"]],"b":[["terpenoids/compound-5.yaml","compound 5"],["terpenoids/compound-6-2.yaml","compound 6"],["terpenoids/compound-7a.yaml","compound 7a"],["terpenoids/compound-8-2.yaml","compound 8"],["terpenoids/sesterfisheric-acid.yaml","sesterfisheric acid"],["terpenoids/sesterfisherol.yaml","sesterfisherol"]]},{"id":"NCBITaxon:1028729","l":"Fusarium pseudograminearum CS3096","na":3,"nb":6,"a":[["Pfam%3APF26087","Domain of unknown function (DUF8032)"],["Pfam%3APF05704","Capsular polysaccharide synthesis protein"],["TED%3AAF-K3V788-F1-model_v4_TED02","TED novel fold AF-K3V788-F1-model_v4_TED02"]],"b":[["alkaloids/8-oxo-fusatin.yaml","8-oxo-fusatin"],["alkaloids/8-oxo-isopentenyladenine.yaml","8-oxo-isopentenyladenine"],["alkaloids/fusatin.yaml","fusatin"],["alkaloids/fusatinic-acid.yaml","fusatinic acid"],["unclassified/w493-a.yaml","W493 A"],["unclassified/w493-b.yaml","W493 B"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":6,"nb":3,"a":[["Pfam%3APF14525","AraC-binding-like domain"],["Pfam%3APF06139","BphX-like"],["Pfam%3APF13340","Putative transposase of IS4/5 family (DUF4096)"],["Pfam%3APF11794","4-hydroxyphenylacetate 3-hydroxylase N terminal"],["Pfam%3APF03241","4-hydroxyphenylacetate 3-hydroxylase C terminal"],["TED%3AAF-A0A4S3H3T1-F1-model_v4_TED02","TED novel fold AF-A0A4S3H3T1-F1-model_v4_TED02"]],"b":[["alkaloids/cepaciachelin.yaml","cepaciachelin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["terpenoids/hopene.yaml","hopene"]]},{"id":"NCBITaxon:1833","l":"Rhodococcus erythropolis","na":5,"nb":3,"a":[["Pfam%3APF08028","Acyl-CoA dehydrogenase, C-terminal domain"],["Pfam%3APF13816","Haem-containing dehydratase"],["Pfam%3APF07858","Limonene-1,2-epoxide hydrolase catalytic domain"],["Pfam%3APF09663","Amidohydrolase ring-opening protein (Amido_AtzD_TrzD)"],["TED%3AAF-A0A401N7F7-F1-model_v4_TED02","TED novel fold AF-A0A401N7F7-F1-model_v4_TED02"]],"b":[["alkaloids/aurachin-re.yaml","aurachin RE"],["amino_acids_and_peptides/heterobactin-a.yaml","heterobactin A"],["amino_acids_and_peptides/heterobactin-s2.yaml","heterobactin S2"]]},{"id":"NCBITaxon:2021","l":"Thermobifida fusca","na":5,"nb":3,"a":[["Pfam%3APF00553","Cellulose binding domain"],["Pfam%3APF01341","Glycosyl hydrolases family 6"],["PROSITE%3APS00561","CBM2a (carbohydrate-binding type-2) domain signature"],["PROSITE%3APS00655","Glycosyl hydrolases family 6 signature 1"],["PROSITE%3APS00656","Glycosyl hydrolases family 6 signature 2"]],"b":[["amino_acids_and_peptides/fuscachelin-a.yaml","Fuscachelin A"],["amino_acids_and_peptides/fuscachelin-b.yaml","Fuscachelin B"],["amino_acids_and_peptides/fuscachelin-c.yaml","Fuscachelin C"]]},{"id":"NCBITaxon:3885","l":"Phaseolus vulgaris","na":3,"nb":5,"a":[["Pfam%3APF14829","Glycerol-3-phosphate acyltransferase N-terminal"],["PROSITE%3APS00281","Bowman-Birk serine protease inhibitors family signature"],["PROSITE%3APS00308","Legume lectins alpha-chain signature"]],"b":[["alkaloids/biotin.yaml","biotin"],["amino_acids_and_peptides/citrulline.yaml","citrulline"],["amino_acids_and_peptides/ectoine.yaml","ectoine"],["fatty_acids/itaconic-acid.yaml","itaconic acid"],["unclassified/orcinol.yaml","orcinol"]]},{"id":"NCBITaxon:556","l":"Dickeya chrysanthemi","na":5,"nb":3,"a":[["Pfam%3APF18390","Glycogen debranching enzyme C-terminal domain"],["Pfam%3APF25994","AprE, long alpha-helical hairpin"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF03812","2-keto-3-deoxygluconate permease"],["Pfam%3APF09589","HrpA pilus formation protein"]],"b":[["amino_acids_and_peptides/chrysobactin.yaml","chrysobactin"],["amino_acids_and_peptides/dichrysobactin.yaml","dichrysobactin"],["unclassified/cyclic-trichrysobactin.yaml","cyclic trichrysobactin"]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":3,"nb":5,"a":[["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"],["PROSITE%3APS00896","LacY family proton/sugar symporters signature 1"],["PROSITE%3APS00897","LacY family proton/sugar symporters signature 2"]],"b":[["alkaloids/9-deoxy-tilivalline.yaml","9-deoxy tilivalline"],["alkaloids/dehydro-tilivalline.yaml","dehydro tilivalline"],["alkaloids/dihydroxy-dehydro-tilivalline.yaml","dihydroxy-dehydro tilivalline"],["alkaloids/dihydroxy-tilivalline.yaml","dihydroxy tilivalline"],["alkaloids/tilivalline.yaml","tilivalline"]]},{"id":"NCBITaxon:269800","l":"Thermobifida fusca YX","na":4,"nb":3,"a":[["Pfam%3APF20628","Dyp-type peroxidase, C-terminal"],["Pfam%3APF04261","Dyp-type peroxidase, N-terminal"],["Pfam%3APF18374","Enolase N-terminal domain-like"],["PROSITE%3APS00909","Mandelate racemase / muconate lactonizing enzyme family signature 2"]],"b":[["amino_acids_and_peptides/fuscachelin-a.yaml","Fuscachelin A"],["amino_acids_and_peptides/fuscachelin-b.yaml","Fuscachelin B"],["amino_acids_and_peptides/fuscachelin-c.yaml","Fuscachelin C"]]},{"id":"NCBITaxon:306901","l":"","na":4,"nb":3,"a":[["Pfam%3APF07960","CBP4"],["TED%3AAF-Q2GNU1-F1-model_v4_TED01","TED highly-symmetric fold AF-Q2GNU1-F1-model_v4_TED01"],["TED%3AAF-Q2GZS7-F1-model_v4_TED01","TED novel fold AF-Q2GZS7-F1-model_v4_TED01"],["TED%3AAF-Q2H4N9-F1-model_v4_TED02","TED novel fold AF-Q2H4N9-F1-model_v4_TED02"]],"b":[["polyketides/11-epichaetomugilin-a.yaml","11-epichaetomugilin A"],["polyketides/chaetoviridin-e.yaml","chaetoviridin E"],["polyketides/shanorellin.yaml","shanorellin"]]},{"id":"NCBITaxon:33","l":"Myxococcus fulvus","na":4,"nb":3,"a":[["TED%3AAF-A0A511SVC1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A511SVC1-F1-model_v4_TED01"],["TED%3AAF-A0A511SU64-F1-model_v4_TED01","TED novel fold AF-A0A511SU64-F1-model_v4_TED01"],["TED%3AAF-A0A511T2U3-F1-model_v4_TED02","TED novel fold AF-A0A511T2U3-F1-model_v4_TED02"],["TED%3AAF-A0A511T9F8-F1-model_v4_TED05","TED novel fold AF-A0A511T9F8-F1-model_v4_TED05"]],"b":[["unclassified/fulvuthiacene-a.yaml","Fulvuthiacene A"],["unclassified/fulvuthiacene-b.yaml","Fulvuthiacene B"],["unclassified/myxothiazol.yaml","myxothiazol"]]},{"id":"NCBITaxon:34305","l":"Lotus japonicus","na":4,"nb":3,"a":[["Pfam%3APF06241","Castor and Pollux, part of voltage-gated ion channel"],["Pfam%3APF23654","E3 ubiquitin-protein ligase LIN-like, ARM repeat"],["Pfam%3APF23628","Putative E3 ubiquitin-protein ligase LIN, ARM-like domain"],["Pfam%3APF23568","E3 ubiquitin-protein ligase LIN-like, ARM repeat"]],"b":[["amino_acids_and_peptides/linamarin.yaml","linamarin"],["amino_acids_and_peptides/lotaustralin.yaml","lotaustralin"],["terpenoids/lupeol.yaml","lupeol"]]},{"id":"NCBITaxon:392500","l":"Shewanella woodyi ATCC 51908","na":3,"nb":4,"a":[["Pfam%3APF23763","GLAA-B beta-barrel domain I"],["TED%3AAF-B1KH33-F1-model_v4_TED01","TED novel fold AF-B1KH33-F1-model_v4_TED01"],["TED%3AAF-B1KQT1-F1-model_v4_TED01","TED novel fold AF-B1KQT1-F1-model_v4_TED01"]],"b":[["fatty_acids/woodybactin-d.yaml","woodybactin D"],["unclassified/woodybactin-a.yaml","woodybactin A"],["unclassified/woodybactin-b.yaml","woodybactin B"],["unclassified/woodybactin-c.yaml","woodybactin C"]]},{"id":"NCBITaxon:5544","l":"Trichoderma harzianum","na":4,"nb":3,"a":[["Pfam%3APF00840","Glycosyl hydrolase family 7"],["Pfam%3APF12708","Rhamnogalacturonase A/epimerase, pectate lyase-like"],["TED%3AAF-A0A0F9XDU3-F1-model_v4_TED01","TED novel fold AF-A0A0F9XDU3-F1-model_v4_TED01"],["TED%3AAF-A0A0G0ASL4-F1-model_v4_TED01","TED novel fold AF-A0A0G0ASL4-F1-model_v4_TED01"]],"b":[["polyketides/1-2-dehydropenicillide.yaml","1,2-dehydropenicillide"],["polyketides/harziphilone.yaml","harziphilone"],["unclassified/harzianopyridone.yaml","harzianopyridone"]]},{"id":"NCBITaxon:655844","l":"Metarhizium robertsii ARSEF 23","na":3,"nb":4,"a":[["Pfam%3APF07110","EthD domain"],["Pfam%3APF09421","Frequency clock protein"],["TED%3AAF-A0A0B2XHY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0B2XHY6-F1-model_v4_TED01"]],"b":[["alkaloids/swainsonine.yaml","swainsonine"],["unclassified/destruxin-a.yaml","destruxin A"],["unclassified/subglutinol-a.yaml","subglutinol A"],["unclassified/subglutinol-b.yaml","subglutinol B"]]},{"id":"NCBITaxon:1003195","l":"Streptantibioticus cattleyicolor NRRL 8057 = DSM 46488","na":3,"nb":3,"a":[["Pfam%3APF23169","Halogenase D"],["Pfam%3APF02655","ATP-grasp domain"],["Pfam%3APF14518","Iron-containing redox enzyme"]],"b":[["amino_acids_and_peptides/cattlecin.yaml","cattlecin"],["amino_acids_and_peptides/ethynylserine.yaml","β-ethynylserine"],["terpenoids/cattleyene.yaml","cattleyene"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":3,"nb":3,"a":[["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF08130","Type A lantibiotic family"],["Pfam%3APF04738","Lantibiotic dehydratase, N terminus"]],"b":[["amino_acids_and_peptides/epidermin.yaml","epidermin"],["amino_acids_and_peptides/epilancin-15x.yaml","epilancin 15x"],["amino_acids_and_peptides/pep5.yaml","pep5"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":3,"nb":3,"a":[["Pfam%3APF03423","Carbohydrate binding domain (family 25)"],["Pfam%3APF03422","Carbohydrate binding module (family 6)"],["TED%3AAF-A0A7X5SGP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X5SGP7-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/polymyxin-b.yaml","polymyxin B"],["amino_acids_and_peptides/polymyxin.yaml","polymyxin"],["unclassified/fusaricidin-b.yaml","fusaricidin B"]]},{"id":"NCBITaxon:1961","l":"Streptomyces virginiae","na":3,"nb":3,"a":[["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF19328","2,4-diaminopentanoate dehydrogenase C-terminal domain"],["PROSITE%3APS01014","Transcription termination factor nusG signature"]],"b":[["alkaloids/endophenazine-a.yaml","endophenazine A"],["polyketides/monensin.yaml","monensin"],["unclassified/virginiamycin-s1.yaml","virginiamycin S1"]]},{"id":"NCBITaxon:384676","l":"Pseudomonas entomophila L48","na":3,"nb":3,"a":[["Pfam%3APF18063","Beta barrel Pore-forming domain"],["Pfam%3APF08548","Peptidase M10 serralysin C terminal"],["TED%3AAF-Q1I2P2-F1-model_v4_TED01","TED novel fold AF-Q1I2P2-F1-model_v4_TED01"]],"b":[["alkaloids/labradorin-1.yaml","labradorin 1"],["alkaloids/labradorin-2.yaml","labradorin 2"],["alkaloids/pimprinine.yaml","pimprinine"]]},{"id":"NCBITaxon:448385","l":"Sorangium cellulosum So ce56","na":3,"nb":3,"a":[["TED%3AAF-A9FYP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A9FYP8-F1-model_v4_TED01"],["TED%3AAF-A9G932-F1-model_v4_TED01","TED highly-symmetric fold AF-A9G932-F1-model_v4_TED01"],["TED%3AAF-A9F9E5-F1-model_v4_TED01","TED novel fold AF-A9F9E5-F1-model_v4_TED01"]],"b":[["polyketides/etnangien.yaml","etnangien"],["polyketides/soraphen-a.yaml","soraphen A"],["terpenoids/eremophilene.yaml","(+)-eremophilene"]]},{"id":"NCBITaxon:45133","l":"Lasiodiplodia theobromae","na":3,"nb":3,"a":[["TED%3AAF-A0A5N5DCC3-F1-model_v4_TED01","TED novel fold AF-A0A5N5DCC3-F1-model_v4_TED01"],["TED%3AAF-A0A5N5DDT9-F1-model_v4_TED01","TED novel fold AF-A0A5N5DDT9-F1-model_v4_TED01"],["TED%3AAF-A0A5N5DLG2-F1-model_v4_TED02","TED novel fold AF-A0A5N5DLG2-F1-model_v4_TED02"]],"b":[["polyketides/lasiodiplodin.yaml","lasiodiplodin"],["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"],["shikimates_and_phenylpropanoids/mellein.yaml","(-)-Mellein"]]},{"id":"NCBITaxon:454130","l":"Aspergillus calidoustus","na":3,"nb":3,"a":[["Pfam%3APF28380","Sesquiterpene cyclase astC-like C-terminal domain"],["TED%3AAF-A0A0U5FXA2-F1-model_v4_TED01","TED novel fold AF-A0A0U5FXA2-F1-model_v4_TED01"],["TED%3AAF-A0A0U5GJ59-F1-model_v4_TED01","TED novel fold AF-A0A0U5GJ59-F1-model_v4_TED01"]],"b":[["terpenoids/calidoustene-a.yaml","calidoustene A"],["terpenoids/calidoustene-b.yaml","calidoustene B"],["terpenoids/calidoustene-c.yaml","calidoustene C"]]},{"id":"UniProt:P59594","l":"","na":3,"nb":3,"a":[["ComplexPortal%3ACPX-7088","SARS-CoV uncleaved Spike protein complex"],["proteintraitsmech%3AMEROPS_CLEAVAGE_S01_247","epitheliasin cleavage specificity"],["IDPO%3A0000048","limited proteolysis display site"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"],["amino_acids_and_peptides/linaclotide.yaml","linaclotide"],["carbohydrates/kanamycin-a.yaml","kanamycin A"]]},{"id":"NCBITaxon:559292","l":"Saccharomyces cerevisiae (strain ATCC 204508 / S288c)","na":14483,"nb":2,"a":[["EC%3A1.14.18.-","With another compound as one donor, and incorporation of one atom of oxygen"],["EC%3A1.16.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.18.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.5.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.8.-.-","Acting on a sulfur group of donors"]],"b":[["polyketides/kojic-acid.yaml","kojic acid"],["polyketides/radicicol.yaml","radicicol"]]},{"id":"NCBITaxon:224308","l":"Bacillus subtilis subsp. subtilis str. 168","na":11310,"nb":2,"a":[["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.10.3.-","With oxygen as acceptor"],["EC%3A1.13.12.-","With incorporation of one atom of oxygen (internal monooxygenases or internal mixed function oxidases)"],["EC%3A1.14.19.-","With oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water"],["EC%3A1.17.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.21.98.-","With other, known acceptors"]],"b":[["unclassified/corynebactin.yaml","corynebactin"],["unclassified/pulcherriminic-acid.yaml","pulcherriminic acid"]]},{"id":"UniProt:P37840","l":"","na":102,"nb":2,"a":[["ComplexPortal%3ACPX-22614","-"],["ComplexPortal%3ACPX-25548","-"],["GO%3A0030424","axon"],["GO%3A0043679","axon terminus"],["GO%3A0005938","cell cortex"],["GO%3A0030426","growth cone"]],"b":[["amino_acids_and_peptides/actinonin.yaml","actinonin"],["polyketides/sirolimus.yaml","sirolimus"]]},{"id":"NCBITaxon:93061","l":"Staphylococcus aureus subsp. aureus NCTC 8325","na":47,"nb":2,"a":[["IDPO%3A0000033","flexible linker"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF07694","5TMR of 5TMR-LYT"],["Pfam%3APF01757","Acyltransferase domain"],["Pfam%3APF18719","ArlS sensor domain"],["Pfam%3APF02216","B domain"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["unclassified/staphyloferrin-a.yaml","staphyloferrin A"]]},{"id":"UniProt:P00519","l":"","na":42,"nb":2,"a":[["EC%3A2.7.10.2","non-specific protein-tyrosine kinase"],["ComplexPortal%3ACPX-20158","-"],["ComplexPortal%3ACPX-24443","-"],["ComplexPortal%3ACPX-24492","-"],["ComplexPortal%3ACPX-25676","-"],["GO%3A0000405","bubble DNA binding"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"],["polyketides/emodin.yaml","emodin"]]},{"id":"UniProt:P24941","l":"","na":34,"nb":2,"a":[["ComplexPortal%3ACPX-10673","-"],["ComplexPortal%3ACPX-11851","-"],["ComplexPortal%3ACPX-13027","-"],["ComplexPortal%3ACPX-15343","-"],["ComplexPortal%3ACPX-19796","-"],["ComplexPortal%3ACPX-21602","-"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"],["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:1912","l":"Streptomyces hygroscopicus","na":2,"nb":29,"a":[["Pfam%3APF21168","Chorismatase FkbO/Hyg5-like, N-terminal"],["TED%3AAF-A0A1S6RUT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S6RUT8-F1-model_v4_TED01"]],"b":[["alkaloids/9-methylstreptimidone.yaml","9-methylstreptimidone"],["alkaloids/indigoidine-2.yaml","indigoidine"],["alkaloids/staurosporine-2.yaml","staurosporine"],["amino_acids_and_peptides/cyclothiazomycin.yaml","cyclothiazomycin"],["amino_acids_and_peptides/eponemycin.yaml","eponemycin"],["amino_acids_and_peptides/himastatin.yaml","himastatin"]]},{"id":"UniProt:O15296","l":"","na":26,"nb":2,"a":[["ComplexPortal%3ACPX-11775","-"],["ComplexPortal%3ACPX-23490","-"],["ComplexPortal%3ACPX-25286","-"],["GO%3A0050473","arachidonate 15-lipoxygenase activity"],["GO%3A0036403","arachidonate 8(S)-lipoxygenase activity"],["GO%3A0016165","linoleate 13S-lipoxygenase activity"]],"b":[["amino_acids_and_peptides/polymyxin.yaml","polymyxin"],["polyketides/tautomycetin.yaml","tautomycetin"]]},{"id":"UniProt:P62937","l":"","na":26,"nb":2,"a":[["ComplexPortal%3ACPX-16615","-"],["ComplexPortal%3ACPX-25278","-"],["GO%3A1904813","ficolin-1-rich granule lumen"],["GO%3A0016018","cyclosporin A binding"],["GO%3A1904399","heparan sulfate binding"],["GO%3A0003755","peptidyl-prolyl cis-trans isomerase activity"]],"b":[["amino_acids_and_peptides/cyclosporin-a.yaml","cyclosporin A"],["amino_acids_and_peptides/sanglifehrin-a.yaml","sanglifehrin A"]]},{"id":"UniProt:P06276","l":"","na":23,"nb":2,"a":[["ComplexPortal%3ACPX-12760","-"],["ComplexPortal%3ACPX-18032","-"],["ComplexPortal%3ACPX-20651","-"],["ComplexPortal%3ACPX-21068","-"],["ComplexPortal%3ACPX-21174","-"],["ComplexPortal%3ACPX-21255","-"]],"b":[["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/physostigmine.yaml","physostigmine"]]},{"id":"UniProt:P07203","l":"","na":21,"nb":2,"a":[["ComplexPortal%3ACPX-13707","-"],["ComplexPortal%3ACPX-15014","-"],["ComplexPortal%3ACPX-20814","-"],["ComplexPortal%3ACPX-20823","-"],["ComplexPortal%3ACPX-23329","-"],["ComplexPortal%3ACPX-23744","-"]],"b":[["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"],["unclassified/beauvericin.yaml","beauvericin"]]},{"id":"UniProt:P63092","l":"","na":21,"nb":2,"a":[["GO%3A0005834","heterotrimeric G-protein complex"],["GO%3A0010856","adenylate cyclase activator activity"],["GO%3A0031748","D1 dopamine receptor binding"],["GO%3A0031683","G-protein beta/gamma-subunit complex binding"],["GO%3A0007190","activation of adenylate cyclase activity"],["GO%3A0038184","adenylate cyclase-activating G protein-coupled bile acid receptor signaling pathway"]],"b":[["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"]]},{"id":"NCBITaxon:746128","l":"Aspergillus fumigatus","na":2,"nb":20,"a":[["Pfam%3APF07335","Fungal chitosanase of glycosyl hydrolase group 75"],["Pfam%3APF12296","Hydrophobic surface binding protein A"]],"b":[["alkaloids/fumigaclavine-c.yaml","fumigaclavine C"],["alkaloids/fumiquinazoline-a.yaml","fumiquinazoline A"],["alkaloids/fumiquinazoline-c.yaml","fumiquinazoline C"],["alkaloids/fumiquinazoline-d.yaml","fumiquinazoline D"],["alkaloids/hexadehydroastechrome.yaml","hexadehydroastechrome"],["carbohydrates/tobramycin.yaml","tobramycin"]]},{"id":"NCBITaxon:176299","l":"Agrobacterium fabrum str. C58","na":17,"nb":2,"a":[["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF28403","Aconitase X second domain"],["Pfam%3APF28406","Aconitase X third domain"],["Pfam%3APF04412","Aconitase X first domain"],["Pfam%3APF01989","Aconitase X swivel domain"]],"b":[["amino_acids_and_peptides/fabrubactin-a.yaml","fabrubactin A"],["amino_acids_and_peptides/fabrubactin-b.yaml","fabrubactin B"]]},{"id":"NCBITaxon:455632","l":"Streptomyces griseus subsp. griseus NBRC 13350","na":2,"nb":17,"a":[["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["PROSITE%3APS01311","Prolipoprotein diacylglyceryl transferase signature"]],"b":[["alkaloids/grixazone-a.yaml","grixazone A"],["alkaloids/iminimycin-a.yaml","iminimycin A"],["alkaloids/iminimycin-b.yaml","iminimycin B"],["alkaloids/melanin.yaml","melanin"],["carbohydrates/streptomycin.yaml","streptomycin"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":16,"nb":2,"a":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF28265","Lipoprotein N-acylation protein LnsA-like"],["Pfam%3APF16403","Bacterial surface protein, Ig-like domain"],["Pfam%3APF03944","delta endotoxin"],["Pfam%3APF03945","delta endotoxin, N-terminal domain"],["Pfam%3APF06355","Aegerolysin"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"],["unclassified/andalusicin-a.yaml","andalusicin A"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":16,"nb":2,"a":[["Pfam%3APF05932","Tir chaperone protein (CesT) family"],["Pfam%3APF17656","FlgA N-terminal domain"],["Pfam%3APF22200","ExsA N-terminal regulatory domain"],["Pfam%3APF05171","Haemin-degrading HemS.ChuX domain"],["Pfam%3APF07201","HrpJ-like domain"],["Pfam%3APF04391","Protein of unknown function (DUF533)"]],"b":[["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["alkaloids/yersiniabactin.yaml","yersiniabactin"]]},{"id":"NCBITaxon:1360","l":"Lactococcus lactis subsp. lactis","na":14,"nb":2,"a":[["Pfam%3APF08951","Bacteriocin immunity protein family"],["Pfam%3APF08998","Bacterial epsilon antitoxin"],["Pfam%3APF25887","LcnD-like, long helical bundle domain"],["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF25940","LcnD-like, C-terminal domain"],["Pfam%3APF08129","Alpha/beta enterocin family"]],"b":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"],["amino_acids_and_peptides/nisin-a.yaml","nisin A"]]},{"id":"NCBITaxon:29488","l":"Photorhabdus luminescens","na":2,"nb":14,"a":[["Pfam%3APF02273","Acyl transferase"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"]],"b":[["alkaloids/photobactin.yaml","photobactin"],["alkaloids/pzn5.yaml","PZN5"],["amino_acids_and_peptides/gamexpeptide-c.yaml","gamexpeptide C"],["amino_acids_and_peptides/glidobactin.yaml","glidobactin"],["amino_acids_and_peptides/luminmycin-a.yaml","luminmycin A"],["polyketides/photopyrone-a.yaml","photopyrone A"]]},{"id":"NCBITaxon:759273","l":"Colletotrichum higginsianum IMI 349063","na":2,"nb":14,"a":[["TED%3AAF-A0A1B7Y9H0-F1-model_v4_TED01","TED novel fold AF-A0A1B7Y9H0-F1-model_v4_TED01"],["TED%3AAF-H1V1S2-F1-model_v4_TED01","TED novel fold AF-H1V1S2-F1-model_v4_TED01"]],"b":[["shikimates_and_phenylpropanoids/colletorin-d-acid.yaml","Colletorin D acid"],["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"],["unclassified/13-epi-higginsianin-c.yaml","13-epi-higginsianin C"],["unclassified/colletochlorin-a.yaml","Colletochlorin A"],["unclassified/colletochlorin-b.yaml","Colletochlorin B"],["unclassified/colletochlorin-d.yaml","Colletochlorin D"]]},{"id":"NCBITaxon:271848","l":"Burkholderia thailandensis E264","na":2,"nb":12,"a":[["Pfam%3APF12091","Protein of unknown function (DUF3567)"],["Pfam%3APF01075","Glycosyltransferase family 9 (heptosyltransferase)"]],"b":[["alkaloids/malleobactin-b.yaml","malleobactin B"],["alkaloids/malleobactin-d.yaml","malleobactin D"],["polyketides/malleicyprol.yaml","malleicyprol"],["polyketides/malleilactone.yaml","malleilactone"],["polyketides/thailandamide-lactone.yaml","thailandamide lactone"],["polyketides/thailandamide.yaml","thailandamide"]]},{"id":"NCBITaxon:1111077","l":"Claviceps purpurea 20.1","na":2,"nb":11,"a":[["Pfam%3APF28338","AclK C-terminal domain"],["TED%3AAF-M1W301-F1-model_v4_TED01","TED highly-symmetric fold AF-M1W301-F1-model_v4_TED01"]],"b":[["alkaloids/ergotamine.yaml","ergotamine"],["polyketides/clavorubin.yaml","Clavorubin"],["polyketides/endocrocin.yaml","endocrocin"],["polyketides/o-orsellinate-depside.yaml","o-orsellinate depside"],["polyketides/secalonic-acid-a.yaml","Secalonic acid A"],["polyketides/secalonic-acid-b.yaml","Secalonic acid B"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":11,"nb":2,"a":[["Pfam%3APF22829","HphA C-terminal domain"],["Pfam%3APF22828","HphA N-terminal heme-binding domain"],["Pfam%3APF28205","Ciprofloxacin tolerance protein"],["Pfam%3APF19582","Solute-binding protein AdeT 1/2"],["PROSITE%3APS00337","Beta-lactamase class-D active site"],["Pfam%3APF24575","Surface lipoprotein assembly modifier, N-terminal TPR repeats"]],"b":[["alkaloids/acinetobactin.yaml","acinetobactin"],["amino_acids_and_peptides/fimsbactin-a.yaml","fimsbactin A"]]},{"id":"UniProt:P11802","l":"","na":11,"nb":2,"a":[["ComplexPortal%3ACPX-10673","-"],["ComplexPortal%3ACPX-18434","-"],["ComplexPortal%3ACPX-20361","-"],["ComplexPortal%3ACPX-21602","-"],["ComplexPortal%3ACPX-26168","-"],["ComplexPortal%3ACPX-2010","Cyclin D1-CDK4 complex"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"],["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:455432","l":"Nocardia terpenica","na":2,"nb":10,"a":[["TED%3AAF-A0A6G9ZDY9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6G9ZDY9-F1-model_v4_TED01"],["TED%3AAF-A0A164L9V7-F1-model_v4_TED03","TED novel fold AF-A0A164L9V7-F1-model_v4_TED03"]],"b":[["amino_acids_and_peptides/nocapeptin-a.yaml","nocapeptin A"],["amino_acids_and_peptides/nocathioamide-a.yaml","nocathioamide A"],["polyketides/brasilinolide-a.yaml","brasilinolide A"],["polyketides/brasilinolide-b.yaml","brasilinolide B"],["polyketides/brasilinolide-c.yaml","brasilinolide C"],["polyketides/terpenomycin.yaml","terpenomycin"]]},{"id":"NCBITaxon:1159556","l":"Ustilaginoidea virens","na":2,"nb":9,"a":[["Pfam%3APF06966","Protein of unknown function (DUF1295)"],["TED%3AAF-A0A1B5L5W2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1B5L5W2-F1-model_v4_TED03"]],"b":[["amino_acids_and_peptides/ustiloxin-b.yaml","ustiloxin B"],["polyketides/ustilaginoidin-a.yaml","ustilaginoidin A"],["polyketides/ustilaginoidin-d.yaml","ustilaginoidin D"],["polyketides/ustilaginoidin-e.yaml","ustilaginoidin E"],["polyketides/ustilaginoidin-f.yaml","ustilaginoidin F"],["polyketides/ustilaginoidin-g.yaml","ustilaginoidin G"]]},{"id":"NCBITaxon:158878","l":"Staphylococcus aureus subsp. aureus Mu50","na":9,"nb":2,"a":[["Pfam%3APF26317","Histidine racemase CntK N-terminal domain"],["Pfam%3APF13610","DDE domain"],["Pfam%3APF12199","Extracellular fibrinogen binding protein C terminal"],["Pfam%3APF26323","Staphylococcus aureus type VII secretion system substrate EsxC"],["Pfam%3APF19776","Family of unknown function (DUF6262)"],["Pfam%3APF27790","Poly-beta-1,6-N-acetyl-D-glucosamine synthesis protein IcaD"]],"b":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"]]},{"id":"NCBITaxon:57975","l":"Burkholderia thailandensis","na":2,"nb":9,"a":[["TED%3AAF-A0A7Z8HH79-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Z8HH79-F1-model_v4_TED01"],["TED%3AAF-A0A7Z8HK43-F1-model_v4_TED01","TED novel fold AF-A0A7Z8HK43-F1-model_v4_TED01"]],"b":[["fatty_acids/fr901464.yaml","FR901464"],["polyketides/malleicyprol.yaml","malleicyprol"],["polyketides/thailandamide-lactone.yaml","thailandamide lactone"],["polyketides/thailandamide.yaml","thailandamide"],["polyketides/thailanstatin-a.yaml","thailanstatin A"],["shikimates_and_phenylpropanoids/bactobolin.yaml","bactobolin"]]},{"id":"UniProt:P11309","l":"","na":9,"nb":2,"a":[["ComplexPortal%3ACPX-11827","-"],["ComplexPortal%3ACPX-16792","-"],["ComplexPortal%3ACPX-21719","-"],["ComplexPortal%3ACPX-26168","-"],["GO%3A1905062","positive regulation of cardioblast proliferation"],["GO%3A1905701","positive regulation of xenobiotic detoxification by transmembrane export across the plasma membrane"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"],["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":8,"nb":2,"a":[["Pfam%3APF01890","Cobalamin synthesis G C-terminus"],["Pfam%3APF11761","Cobalamin biosynthesis central region"],["Pfam%3APF11760","Cobalamin synthesis G N-terminal"],["Pfam%3APF02570","Precorrin-8X methylmutase"],["PROSITE%3APS00304","Small, acid-soluble spore proteins, alpha/beta type, signature 1"],["PROSITE%3APS00684","Small, acid-soluble spore proteins, alpha/beta type, signature 2"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"],["carbohydrates/oxetanocin-a.yaml","oxetanocin A"]]},{"id":"NCBITaxon:303698","l":"Penicillium steckii","na":2,"nb":8,"a":[["TED%3AAF-A0A1V6TCF9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1V6TCF9-F1-model_v4_TED03"],["TED%3AAF-A0A1V6U0I0-F1-model_v4_TED02","TED novel fold AF-A0A1V6U0I0-F1-model_v4_TED02"]],"b":[["unclassified/adametizine-a.yaml","adametizine A"],["unclassified/fa2097.yaml","FA2097"],["unclassified/outovirin-a.yaml","outovirin A"],["unclassified/outovirin-c.yaml","outovirin C"],["unclassified/penigainamide-a.yaml","penigainamide A"],["unclassified/penigainamide-b.yaml","penigainamide B"]]},{"id":"NCBITaxon:119927","l":"Alternaria tenuissima","na":7,"nb":2,"a":[["TED%3AAF-A0A4Q4MR18-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q4MR18-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4M1N1-F1-model_v4_TED01","TED novel fold AF-A0A4Q4M1N1-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4M2G6-F1-model_v4_TED01","TED novel fold AF-A0A4Q4M2G6-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4MJL0-F1-model_v4_TED01","TED novel fold AF-A0A4Q4MJL0-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4PGY1-F1-model_v4_TED01","TED novel fold AF-A0A4Q4PGY1-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4RTT0-F1-model_v4_TED01","TED novel fold AF-A0A4Q4RTT0-F1-model_v4_TED01"]],"b":[["polyketides/patulin.yaml","patulin"],["polyketides/solanapyrone-a.yaml","solanapyrone A"]]},{"id":"NCBITaxon:1279085","l":"Fusarium fujikuroi IMI 58289","na":2,"nb":7,"a":[["Pfam%3APF12585","Virulence factor CipC-like"],["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"]],"b":[["polyketides/bikaverin.yaml","bikaverin"],["polyketides/fujikurin-c.yaml","fujikurin C"],["polyketides/fujikurin-d.yaml","fujikurin D"],["polyketides/gibepyrone-a.yaml","gibepyrone A"],["terpenoids/acorenol.yaml","α-acorenol"],["terpenoids/koraiol.yaml","koraiol"]]},{"id":"NCBITaxon:1380566","l":"Pochonia chlamydosporia 170","na":2,"nb":7,"a":[["TED%3AAF-A0A179FUG8-F1-model_v4_TED01","TED novel fold AF-A0A179FUG8-F1-model_v4_TED01"],["TED%3AAF-A0A179FWH3-F1-model_v4_TED01","TED novel fold AF-A0A179FWH3-F1-model_v4_TED01"]],"b":[["polyketides/monocillin-ii.yaml","monocillin II"],["polyketides/monocillin-iv.yaml","monocillin IV"],["polyketides/monocillin-v.yaml","monocillin V"],["polyketides/monocillin-vi.yaml","monocillin VI"],["polyketides/monocillin-vii.yaml","monocillin VII"],["polyketides/monorden-d.yaml","monorden D"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":7,"nb":2,"a":[["Pfam%3APF19443","DAHL domain"],["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"],["Pfam%3APF03524","Conjugal transfer protein"],["Pfam%3APF27439","Chaperone protein DnaJ C-terminal region"],["Pfam%3APF10907","Protein of unknown function (DUF2749)"],["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]],"b":[["alkaloids/agrobactin.yaml","agrobactin"],["amino_acids_and_peptides/aztreonam.yaml","aztreonam"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":6,"nb":2,"a":[["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF03744","6-carboxyhexanoate--CoA ligase"],["PROSITE%3APS00836","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 1"],["PROSITE%3APS00837","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 2"],["TED%3AAF-A0A2S5D092-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5D092-F1-model_v4_TED01"],["TED%3AAF-A0A2S0JW09-F1-model_v4_TED01","TED novel fold AF-A0A2S0JW09-F1-model_v4_TED01"]],"b":[["alkaloids/biotin.yaml","biotin"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:1894","l":"Kitasatospora aureofaciens","na":2,"nb":6,"a":[["Pfam%3APF01933","2-phospho-L-lactate transferase CofD"],["TED%3AAF-A0A1E7NF13-F1-model_v4_TED01","TED novel fold AF-A0A1E7NF13-F1-model_v4_TED01"]],"b":[["fatty_acids/triacsin-c.yaml","triacsin C"],["polyketides/auricin.yaml","auricin"],["polyketides/chlortetracycline.yaml","chlortetracycline"],["polyketides/lipomycin.yaml","α-lipomycin"],["polyketides/oxytetracycline.yaml","oxytetracycline"],["polyketides/venturicidin-a.yaml","venturicidin A"]]},{"id":"NCBITaxon:321","l":"Pseudomonas syringae pv. syringae","na":6,"nb":2,"a":[["Pfam%3APF03421","YopJ Serine/Threonine acetyltransferase"],["Pfam%3APF17914","HopA1 effector protein family"],["Pfam%3APF27361","HrcQa N-terminal domain"],["Pfam%3APF04877","HrpZ"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]],"b":[["amino_acids_and_peptides/3-methylarginine.yaml","3-methylarginine"],["unclassified/syringopeptin-25a.yaml","syringopeptin 25A"]]},{"id":"NCBITaxon:52","l":"Chondromyces crocatus","na":2,"nb":6,"a":[["TED%3AAF-A0A0K1ER44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0K1ER44-F1-model_v4_TED01"],["TED%3AAF-A0A0K1E854-F1-model_v4_TED01","TED novel fold AF-A0A0K1E854-F1-model_v4_TED01"]],"b":[["polyketides/chondrochloren-a.yaml","chondrochloren A"],["polyketides/cmc-thuggacin-a.yaml","Cmc-thuggacin A"],["polyketides/crocacin.yaml","crocacin"],["shikimates_and_phenylpropanoids/ajudazol-a.yaml","ajudazol A"],["unclassified/chondramide-a.yaml","chondramide A"],["unclassified/cmc-thuggacin-b.yaml","Cmc-thuggacin B"]]},{"id":"NCBITaxon:2795974","l":"Stieleria maiorica","na":2,"nb":5,"a":[["TED%3AAF-A0A5B9MHL4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5B9MHL4-F1-model_v4_TED02"],["TED%3AAF-A0A5B9MK37-F1-model_v4_TED03","TED novel fold AF-A0A5B9MK37-F1-model_v4_TED03"]],"b":[["alkaloids/stieleriacine-a1.yaml","stieleriacine A1"],["alkaloids/stieleriacine-a2.yaml","stieleriacine A2"],["fatty_acids/stieleriacine-c.yaml","stieleriacine C"],["unclassified/stieleriacine-b1.yaml","stieleriacine B1"],["unclassified/stieleriacine-b2.yaml","stieleriacine B2"]]},{"id":"NCBITaxon:305","l":"Ralstonia solanacearum","na":5,"nb":2,"a":[["Pfam%3APF14897","EpsG family"],["TED%3AAF-A0A7I8FQZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7I8FQZ6-F1-model_v4_TED01"],["TED%3AAF-A0A7H1MI34-F1-model_v4_TED01","TED novel fold AF-A0A7H1MI34-F1-model_v4_TED01"],["TED%3AAF-A0A7I8FKL4-F1-model_v4_TED01","TED novel fold AF-A0A7I8FKL4-F1-model_v4_TED01"],["TED%3AAF-A0A850FKB0-F1-model_v4_TED01","TED novel fold AF-A0A850FKB0-F1-model_v4_TED01"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"],["unclassified/micacocidin.yaml","micacocidin"]]},{"id":"NCBITaxon:394096","l":"Hyalangium minutum","na":5,"nb":2,"a":[["TED%3AAF-A0A085W4M3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085W4M3-F1-model_v4_TED01"],["TED%3AAF-A0A085WRA7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085WRA7-F1-model_v4_TED01"],["TED%3AAF-A0A085WWM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085WWM4-F1-model_v4_TED01"],["TED%3AAF-A0A085W7S5-F1-model_v4_TED03","TED novel fold AF-A0A085W7S5-F1-model_v4_TED03"],["TED%3AAF-A0A085WH04-F1-model_v4_TED01","TED novel fold AF-A0A085WH04-F1-model_v4_TED01"]],"b":[["polyketides/nystatin-a1.yaml","nystatin A1"],["unclassified/myxochromide-d-2.yaml","myxochromide D"]]},{"id":"NCBITaxon:193462","l":"Streptomyces niveus","na":2,"nb":4,"a":[["Pfam%3APF16861","Carbamoyltransferase C-terminus"],["Pfam%3APF02543","Carbamoyltransferase N-terminus"]],"b":[["alkaloids/phenaziterpene-a.yaml","phenaziterpene A"],["carbohydrates/kanamycin-a.yaml","kanamycin A"],["shikimates_and_phenylpropanoids/cathomycin.yaml","cathomycin"],["unclassified/be-14106.yaml","BE-14106"]]},{"id":"NCBITaxon:394095","l":"Pyxidicoccus fallax","na":4,"nb":2,"a":[["TED%3AAF-A0A848LUK3-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A848LUK3-F1-model_v4_TED04"],["TED%3AAF-A0A848LF16-F1-model_v4_TED01","TED novel fold AF-A0A848LF16-F1-model_v4_TED01"],["TED%3AAF-A0A848LFV1-F1-model_v4_TED03","TED novel fold AF-A0A848LFV1-F1-model_v4_TED03"],["TED%3AAF-A0A848LG55-F1-model_v4_TED01","TED novel fold AF-A0A848LG55-F1-model_v4_TED01"]],"b":[["polyketides/gulmirecin-a.yaml","gulmirecin A"],["unclassified/myxarylin.yaml","Myxarylin"]]},{"id":"NCBITaxon:426418","l":"Pyrenophora tritici-repentis Pt-1C-BFP","na":2,"nb":4,"a":[["TED%3AAF-B2VYP9-F1-model_v4_TED01","TED novel fold AF-B2VYP9-F1-model_v4_TED01"],["TED%3AAF-B2VZ40-F1-model_v4_TED02","TED novel fold AF-B2VZ40-F1-model_v4_TED02"]],"b":[["unclassified/triticone-a.yaml","triticone A"],["unclassified/triticone-b.yaml","triticone B"],["unclassified/triticone-c.yaml","triticone C"],["unclassified/triticone-f.yaml","triticone F"]]},{"id":"NCBITaxon:5270","l":"Mycosarcoma maydis","na":4,"nb":2,"a":[["Pfam%3APF17445","Mating factor A1"],["Pfam%3APF24563","Mug60/KHD4 KH type I domain"],["Pfam%3APF01185","Fungal hydrophobin"],["Pfam%3APF07460","NUMOD3 motif"]],"b":[["fatty_acids/itaconic-acid.yaml","itaconic acid"],["fatty_acids/ustilagic-acid.yaml","ustilagic acid"]]},{"id":"NCBITaxon:55601","l":"Vibrio anguillarum","na":4,"nb":2,"a":[["Pfam%3APF17327","Acyl homoserine lactone synthase"],["PROSITE%3APS00949","Autoinducer synthase family signature"],["TED%3AAF-A0A241NLV5-F1-model_v4_TED03","TED novel fold AF-A0A241NLV5-F1-model_v4_TED03"],["TED%3AAF-A0A290PUC4-F1-model_v4_TED02","TED novel fold AF-A0A290PUC4-F1-model_v4_TED02"]],"b":[["alkaloids/anguibactin.yaml","anguibactin"],["amino_acids_and_peptides/vanchrobactin.yaml","vanchrobactin"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":4,"nb":2,"a":[["Pfam%3APF01375","Heat-labile enterotoxin alpha chain"],["Pfam%3APF09101","Exotoxin A binding"],["Pfam%3APF09009","Exotoxin A catalytic"],["Pfam%3APF09102","Exotoxin A, targeting"]],"b":[["alkaloids/vibriobactin-2.yaml","vibriobactin"],["alkaloids/vibriobactin.yaml","vibriobactin"]]},{"id":"UniProt:P02829","l":"","na":4,"nb":2,"a":[["ComplexPortal%3ACPX-1276","HMC complex"],["GO%3A0006458","'de novo' protein folding"],["GO%3A0043248","proteasome assembly"],["GO%3A0070482","response to oxygen levels"]],"b":[["polyketides/monocillin-iv.yaml","monocillin IV"],["polyketides/radicicol.yaml","radicicol"]]},{"id":"NCBITaxon:1120925","l":"Acinetobacter bouvetii DSM 14964 = CIP 107468","na":2,"nb":3,"a":[["proteintraitsmech%3AELIFE109154_VibH_like","VibH-like metallophore standalone condensation enzyme family"],["TED%3AAF-N9C7M4-F1-model_v4_TED02","TED novel fold AF-N9C7M4-F1-model_v4_TED02"]],"b":[["alkaloids/butanochelin.yaml","butanochelin"],["alkaloids/pentanochelin.yaml","pentanochelin"],["alkaloids/propanochelin.yaml","propanochelin"]]},{"id":"NCBITaxon:1229662","l":"Pestalotiopsis fici (strain W106-1 / CGMCC3.15140)","na":3,"nb":2,"a":[["Pfam%3APF26087","Domain of unknown function (DUF8032)"],["Pfam%3APF07110","EthD domain"],["TED%3AAF-W3WKJ8-F1-model_v4_TED01","TED novel fold AF-W3WKJ8-F1-model_v4_TED01"]],"b":[["polyketides/naphthalene-1-3-8-triol.yaml","naphthalene-1,3,8-triol"],["polyketides/scytalone.yaml","scytalone"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":2,"nb":3,"a":[["Pfam%3APF02052","Gallidermin"],["Pfam%3APF04604","Type-A lantibiotic"]],"b":[["unclassified/leuvalin.yaml","leuvalin"],["unclassified/mutanocyclin.yaml","mutanocyclin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":2,"a":[["TED%3AAF-A0A142EAM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142EAM9-F1-model_v4_TED03"],["TED%3AAF-A0A1Q3DTY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3DTY6-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3DNE3-F1-model_v4_TED01","TED novel fold AF-A0A1Q3DNE3-F1-model_v4_TED01"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:1907","l":"Streptomyces glaucescens","na":2,"nb":3,"a":[["Pfam%3APF04673","Polyketide synthesis cyclase"],["Pfam%3APF04655","Aminoglycoside/hydroxyurea antibiotic resistance kinase"]],"b":[["carbohydrates/5-hydroxystreptomycin.yaml","5'-hydroxystreptomycin"],["carbohydrates/streptomycin.yaml","streptomycin"],["polyketides/tetracenomycin-c.yaml","tetracenomycin C"]]},{"id":"NCBITaxon:1940","l":"Streptomyces albireticuli","na":2,"nb":3,"a":[["TED%3AAF-A0A1Z2LD39-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z2LD39-F1-model_v4_TED01"],["TED%3AAF-A0A1Z2LBV3-F1-model_v4_TED01","TED novel fold AF-A0A1Z2LBV3-F1-model_v4_TED01"]],"b":[["fatty_acids/fuelimicin-b.yaml","fuelimicin B"],["fatty_acids/fuelimicin-c.yaml","fuelimicin C"],["fatty_acids/fuelimycin-a.yaml","fuelimycin A"]]},{"id":"NCBITaxon:240292","l":"Trichormus variabilis ATCC 29413","na":2,"nb":3,"a":[["Pfam%3APF18921","Cyanophycin synthase-like N-terminal domain"],["Pfam%3APF13619","KTSC domain"]],"b":[["unclassified/4-deoxygadusol.yaml","4-deoxygadusol"],["unclassified/mycosporine-glycine.yaml","mycosporine glycine"],["unclassified/shinorine.yaml","shinorine"]]},{"id":"NCBITaxon:344612","l":"Aspergillus clavatus (strain ATCC 1007 / CBS 513.65 / DSM 816 / NCTC 3887 / NRRL 1 / QM 1276 / 107)","na":3,"nb":2,"a":[["Pfam%3APF28457","Probable beta-glucosidase btgE N-terminal domain"],["Pfam%3APF24438","IML1, N-terminal, fungi"],["Pfam%3APF25326","SRB8 ARM-like domain"]],"b":[["alkaloids/cytochalasin-e.yaml","cytochalasin E"],["alkaloids/cytochalasin-k.yaml","cytochalasin K"]]},{"id":"NCBITaxon:3635","l":"Gossypium hirsutum","na":3,"nb":2,"a":[["Pfam%3APF20452","Calmodulin binding protein C-terminal domain"],["Pfam%3APF20451","Calmodulin binding protein central domain"],["Pfam%3APF07887","Calmodulin binding protein-like N-terminal domain"]],"b":[["fatty_acids/butyrolactone.yaml","γ-butyrolactone"],["terpenoids/cadinene.yaml","(−)-δ-cadinene"]]},{"id":"NCBITaxon:394503","l":"Ruminiclostridium cellulolyticum H10","na":3,"nb":2,"a":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["PROSITE%3APS00812","Glycosyl hydrolases family 8 signature"],["Pfam%3APF01270","Glycosyl hydrolases family 8"]],"b":[["alkaloids/closthioamide.yaml","closthioamide"],["amino_acids_and_peptides/rc-aip1.yaml","Rc-AIP1"]]},{"id":"NCBITaxon:42236","l":"Streptomyces diastatochromogenes","na":2,"nb":3,"a":[["TED%3AAF-A0A233S9R2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A233S9R2-F1-model_v4_TED01"],["TED%3AAF-A0A233SM76-F1-model_v4_TED01","TED novel fold AF-A0A233SM76-F1-model_v4_TED01"]],"b":[["carbohydrates/toyocamycin.yaml","toyocamycin"],["polyketides/concanamycin-a.yaml","concanamycin A"],["polyketides/polyketomycin.yaml","polyketomycin"]]},{"id":"NCBITaxon:44250","l":"Paenibacillus alvei","na":3,"nb":2,"a":[["PROSITE%3APS00481","Thiol-activated cytolysins signature"],["TED%3AAF-A0A383R9F4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A383R9F4-F1-model_v4_TED01"],["TED%3AAF-A0A7Y4MLP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4MLP7-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/colistin-a.yaml","colistin A"],["amino_acids_and_peptides/colistin-b.yaml","colistin B"]]},{"id":"NCBITaxon:4530","l":"Oryza sativa","na":2,"nb":3,"a":[["Pfam%3APF10839","Protein of unknown function (DUF2647)"],["PROSITE%3APS00937","Ribosomal protein L20 signature"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"],["fatty_acids/nonadec-1-ene.yaml","nonadec-1-ene"],["terpenoids/phytocassane.yaml","phytocassane"]]},{"id":"NCBITaxon:474922","l":"Colletotrichum gloeosporioides","na":2,"nb":3,"a":[["Pfam%3APF28223","CAP22"],["PROSITE%3APS00155","Cutinase, serine active site"]],"b":[["unclassified/colletochlorin-a.yaml","Colletochlorin A"],["unclassified/colletotrichin.yaml","colletotrichin"],["unclassified/orcinol.yaml","orcinol"]]},{"id":"NCBITaxon:51201","l":"Streptomyces griseocarneus","na":3,"nb":2,"a":[["TED%3AAF-A0A3L8IG13-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3L8IG13-F1-model_v4_TED01"],["TED%3AAF-A0A3L8KW22-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3L8KW22-F1-model_v4_TED02"],["TED%3AAF-A0A8A3HJQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8A3HJQ3-F1-model_v4_TED01"]],"b":[["alkaloids/pimprinine.yaml","pimprinine"],["carbohydrates/5-hydroxystreptomycin.yaml","5'-hydroxystreptomycin"]]},{"id":"NCBITaxon:536","l":"Chromobacterium violaceum","na":2,"nb":3,"a":[["TED%3AAF-A0A381EUD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A381EUD6-F1-model_v4_TED01"],["TED%3AAF-A0A447THJ9-F1-model_v4_TED01","TED novel fold AF-A0A447THJ9-F1-model_v4_TED01"]],"b":[["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["unclassified/romidepsin.yaml","romidepsin"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":3,"nb":2,"a":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"],["TED%3AAF-A0A7H8I034-F1-model_v4_TED01","TED novel fold AF-A0A7H8I034-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/aerobactin.yaml","aerobactin"],["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":3,"nb":2,"a":[["Pfam%3APF04205","FMN-binding domain"],["Pfam%3APF10795","Protein of unknown function (DUF2607)"],["TED%3AAF-A0A1W6U0N2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W6U0N2-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/vibrioferrin-2.yaml","vibrioferrin"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:67267","l":"Streptomyces alboflavus","na":3,"nb":2,"a":[["TED%3AAF-A0A1Z1WH37-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z1WH37-F1-model_v4_TED01"],["TED%3AAF-A0A291W4F3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A291W4F3-F1-model_v4_TED01"],["TED%3AAF-A0A291W5G3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A291W5G3-F1-model_v4_TED01"]],"b":[["alkaloids/thienodolin.yaml","thienodolin"],["terpenoids/2-methylisoborneol.yaml","2-methylisoborneol"]]},{"id":"NCBITaxon:1116229","l":"","na":2,"nb":2,"a":[["Pfam%3APF28402","Pneumocandin biosynthesis cluster protein B C-terminal domain"],["TED%3AAF-S3CJ96-F1-model_v4_TED01","TED novel fold AF-S3CJ96-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/pneumocandin-a0.yaml","pneumocandin A0"],["amino_acids_and_peptides/pneumocandin-b0.yaml","pneumocandin B0"]]},{"id":"NCBITaxon:1284","l":"Staphylococcus hyicus","na":2,"nb":2,"a":[["Pfam%3APF04650","YSIRK type signal peptide"],["PROSITE%3APS01123","Thermonuclease family signature 1"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["unclassified/staphyloferrin-a.yaml","staphyloferrin A"]]},{"id":"NCBITaxon:1365484","l":"","na":2,"nb":2,"a":[["Pfam%3APF11578","Protein of unknown function (DUF3237)"],["Pfam%3APF14269","Arylsulfotransferase (ASST)"]],"b":[["alkaloids/mycophenolic-acid-2.yaml","mycophenolic acid"],["terpenoids/pr-toxin.yaml","PR-toxin"]]},{"id":"NCBITaxon:1392255","l":"","na":2,"nb":2,"a":[["Pfam%3APF08592","Anthrone oxygenase"],["TED%3AAF-A0A2I1CES2-F1-model_v4_TED03","TED novel fold AF-A0A2I1CES2-F1-model_v4_TED03"]],"b":[["polyketides/neosartorin.yaml","neosartorin"],["unclassified/novofumigatonin.yaml","novofumigatonin"]]},{"id":"NCBITaxon:247156","l":"Nocardia farcinica IFM 10152","na":2,"nb":2,"a":[["Pfam%3APF19288","CofH/MqnC C-terminal region"],["Pfam%3APF17645","Arylmalonate decarboxylase"]],"b":[["amino_acids_and_peptides/nocobactin-na.yaml","nocobactin NA"],["unclassified/nocobactin-na-10152b.yaml","nocobactin NA 10152B"]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":2,"nb":2,"a":[["Pfam%3APF21252","Glycosyl hydrolase 109, C-terminal domain"],["TED%3AAF-A0A3P1YJQ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3P1YJQ6-F1-model_v4_TED01"]],"b":[["carbohydrates/legionaminic-acid.yaml","legionaminic acid"],["carbohydrates/pseudaminate.yaml","pseudaminate"]]},{"id":"NCBITaxon:285532","l":"Streptomyces achromogenes subsp. streptozoticus","na":2,"nb":2,"a":[["Pfam%3APF07883","Cupin domain"],["Pfam%3APF14518","Iron-containing redox enzyme"]],"b":[["carbohydrates/streptozotocin.yaml","streptozotocin"],["unclassified/enteromycin.yaml","enteromycin"]]},{"id":"NCBITaxon:29430","l":"Acinetobacter haemolyticus","na":2,"nb":2,"a":[["TED%3AAF-A0A845PGH5-F1-model_v4_TED01","TED novel fold AF-A0A845PGH5-F1-model_v4_TED01"],["TED%3AAF-A0A857IU13-F1-model_v4_TED06","TED novel fold AF-A0A857IU13-F1-model_v4_TED06"]],"b":[["alkaloids/acinetoferrin.yaml","acinetoferrin"],["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":2,"nb":2,"a":[["TED%3AAF-A0A6N3WS12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N3WS12-F1-model_v4_TED01"],["TED%3AAF-A0A3R7GIU2-F1-model_v4_TED02","TED novel fold AF-A0A3R7GIU2-F1-model_v4_TED02"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["terpenoids/xanthan.yaml","xanthan"]]},{"id":"NCBITaxon:3469","l":"Papaver somniferum","na":2,"nb":2,"a":[["Pfam%3APF00407","Pathogenesis-related protein Bet v 1 family"],["TED%3AAF-A0A4Y7LH48-F1-model_v4_TED01","TED novel fold AF-A0A4Y7LH48-F1-model_v4_TED01"]],"b":[["alkaloids/noscapine.yaml","(−)-noscapine"],["alkaloids/thebaine.yaml","thebaine"]]},{"id":"NCBITaxon:5044","l":"Hapsidospora chrysogena","na":2,"nb":2,"a":[["PROSITE%3APS00185","Isopenicillin N synthase signature 1"],["PROSITE%3APS00186","Isopenicillin N synthase signature 2"]],"b":[["amino_acids_and_peptides/isopenicillin-n.yaml","isopenicillin N"],["polyketides/sorbicillin.yaml","sorbicillin"]]},{"id":"NCBITaxon:5074","l":"Penicillium brevicompactum","na":2,"nb":2,"a":[["Pfam%3APF09227","Bubble protein"],["Pfam%3APF18558","Methyltransferase, Helix-turn-helix domain"]],"b":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"],["unclassified/asperphenamate.yaml","asperphenamate"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":2,"nb":2,"a":[["PROSITE%3APS00336","Beta-lactamase class-C active site"],["TED%3AAF-A0A155XQ59-F1-model_v4_TED02","TED novel fold AF-A0A155XQ59-F1-model_v4_TED02"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["terpenoids/mk-8.yaml","MK-8"]]},{"id":"NCBITaxon:5514","l":"Fusarium sporotrichioides","na":2,"nb":2,"a":[["Pfam%3APF22701","Mal s 1 allergenic protein-like"],["TED%3AAF-A0A395RG49-F1-model_v4_TED02","TED novel fold AF-A0A395RG49-F1-model_v4_TED02"]],"b":[["terpenoids/t-2-toxin.yaml","T-2 toxin"],["unclassified/beauvericin.yaml","beauvericin"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":2,"nb":2,"a":[["TED%3AAF-B5UAE0-F1-model_v4_TED01","TED highly-symmetric fold AF-B5UAE0-F1-model_v4_TED01"],["TED%3AAF-A0A3E1IF45-F1-model_v4_TED01","TED novel fold AF-A0A3E1IF45-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/vibrioferrin-2.yaml","vibrioferrin"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:68170","l":"Lentzea aerocolonigenes","na":2,"nb":2,"a":[["Pfam%3APF12902","Ferritin-like"],["TED%3AAF-A0A0F0GZM7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0F0GZM7-F1-model_v4_TED03"]],"b":[["alkaloids/rebeccamycin.yaml","rebeccamycin"],["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:69","l":"Lysobacter enzymogenes","na":2,"nb":2,"a":[["TED%3AAF-A0A1J1E6A8-F1-model_v4_TED02","TED novel fold AF-A0A1J1E6A8-F1-model_v4_TED02"],["TED%3AAF-A0A7T8MLU2-F1-model_v4_TED03","TED novel fold AF-A0A7T8MLU2-F1-model_v4_TED03"]],"b":[["unclassified/heat-stable-antifungal-factor.yaml","heat-stable antifungal factor"],["unclassified/wap-8294a2.yaml","WAP-8294A2"]]},{"id":"NCBITaxon:983644","l":"","na":2,"nb":2,"a":[["TED%3AAF-G3J617-F1-model_v4_TED01","TED highly-symmetric fold AF-G3J617-F1-model_v4_TED01"],["TED%3AAF-G3JAX2-F1-model_v4_TED03","TED novel fold AF-G3JAX2-F1-model_v4_TED03"]],"b":[["unclassified/beauveriolide-i.yaml","beauveriolide I"],["unclassified/beauveriolide-iii.yaml","beauveriolide III"]]},{"id":"UniProt:P04058","l":"","na":2,"nb":2,"a":[["proteintraitsmech%3ABIOLIP_03S","03S-binding site"],["proteintraitsmech%3ABIOLIP_AA7","AA7-binding site"]],"b":[["alkaloids/huperzine-a.yaml","huperzine A"],["alkaloids/physostigmine.yaml","physostigmine"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis H37Rv","na":297,"nb":1,"a":[["IDPO%3A0000002","disorder"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000045","phosphorylation display site"],["IDPO%3A0000059","self-inhibition"],["Pfam%3APF17837","4'-phosphopantetheinyl transferase N-terminal domain"]],"b":[["unclassified/mycobactin.yaml","mycobactin"]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":1,"nb":116,"a":[["Pfam%3APF03437","BtpA family"]],"b":[["alkaloids/altemicidin.yaml","altemicidin"],["alkaloids/aurachin-c.yaml","aurachin C"],["alkaloids/aurachin-d.yaml","aurachin D"],["alkaloids/aurachin-ss.yaml","aurachin SS"],["alkaloids/berninamycin-j.yaml","berninamycin J"],["alkaloids/berninamycin-k.yaml","berninamycin K"]]},{"id":"UniProt:P35222","l":"","na":91,"nb":1,"a":[["ComplexPortal%3ACPX-316","beta1-catenin - LEF1 complex"],["ComplexPortal%3ACPX-12016","-"],["ComplexPortal%3ACPX-14403","-"],["ComplexPortal%3ACPX-16015","-"],["ComplexPortal%3ACPX-16618","-"],["ComplexPortal%3ACPX-17387","-"]],"b":[["alkaloids/toxoflavin.yaml","toxoflavin"]]},{"id":"NCBITaxon:199310","l":"Escherichia coli CFT073","na":89,"nb":1,"a":[["Pfam%3APF12343","DeaD helicase C-terminal disordered region"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF08298","PrkA AAA domain"],["Pfam%3APF17425","Arylsulfotransferase Ig-like domain"],["Pfam%3APF02611","CDP-diacylglycerol pyrophosphatase"],["Pfam%3APF10729","Cell division activator CedA"]],"b":[["unclassified/ape-ec.yaml","APE Ec"]]},{"id":"NCBITaxon:1883427","l":"Actinomycetes bacterium","na":78,"nb":1,"a":[["TED%3AAF-A0A2E4AXX0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2E4AXX0-F1-model_v4_TED04"],["TED%3AAF-A0A2W4J8T7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W4J8T7-F1-model_v4_TED01"],["TED%3AAF-A0A350SGF5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A350SGF5-F1-model_v4_TED03"],["TED%3AAF-A0A350XSJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A350XSJ9-F1-model_v4_TED01"],["TED%3AAF-A0A3A4PC78-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A4PC78-F1-model_v4_TED01"],["TED%3AAF-A0A3A4PG42-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A4PG42-F1-model_v4_TED01"]],"b":[["polyketides/anthrabenzoxocinone.yaml","anthrabenzoxocinone"]]},{"id":"UniProt:Q13547","l":"","na":66,"nb":1,"a":[["ComplexPortal%3ACPX-12294","-"],["ComplexPortal%3ACPX-13515","-"],["ComplexPortal%3ACPX-14890","-"],["ComplexPortal%3ACPX-15325","-"],["ComplexPortal%3ACPX-18342","-"],["ComplexPortal%3ACPX-20908","-"]],"b":[["amino_acids_and_peptides/apicidin.yaml","apicidin"]]},{"id":"UniProt:P42345","l":"","na":62,"nb":1,"a":[["ComplexPortal%3ACPX-11469","-"],["ComplexPortal%3ACPX-12119","-"],["ComplexPortal%3ACPX-12694","-"],["ComplexPortal%3ACPX-13423","-"],["ComplexPortal%3ACPX-15386","-"],["ComplexPortal%3ACPX-15693","-"]],"b":[["polyketides/sirolimus.yaml","sirolimus"]]},{"id":"UniProt:P21802","l":"","na":52,"nb":1,"a":[["ComplexPortal%3ACPX-11311","-"],["ComplexPortal%3ACPX-13057","-"],["ComplexPortal%3ACPX-19802","-"],["ComplexPortal%3ACPX-20298","-"],["ComplexPortal%3ACPX-21995","-"],["ComplexPortal%3ACPX-24266","-"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:2026763","l":"Myxococcales bacterium","na":51,"nb":1,"a":[["TED%3AAF-A0A2E5HQQ8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E5HQQ8-F1-model_v4_TED02"],["TED%3AAF-A0A2E6VRH0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E6VRH0-F1-model_v4_TED01"],["TED%3AAF-A0A2E6VU88-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E6VU88-F1-model_v4_TED01"],["TED%3AAF-A0A2F0AQB0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2F0AQB0-F1-model_v4_TED03"],["TED%3AAF-A0A2F0AS25-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2F0AS25-F1-model_v4_TED01"],["TED%3AAF-A0A356T3G6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A356T3G6-F1-model_v4_TED01"]],"b":[["polyketides/sorangipyranone.yaml","Sorangipyranone"]]},{"id":"UniProt:O15379","l":"","na":49,"nb":1,"a":[["ComplexPortal%3ACPX-11143","-"],["ComplexPortal%3ACPX-11157","-"],["ComplexPortal%3ACPX-15289","-"],["ComplexPortal%3ACPX-16349","-"],["ComplexPortal%3ACPX-18525","-"],["ComplexPortal%3ACPX-22988","-"]],"b":[["amino_acids_and_peptides/apicidin.yaml","apicidin"]]},{"id":"UniProt:P49841","l":"","na":49,"nb":1,"a":[["ComplexPortal%3ACPX-109","Beta-catenin destruction core complex, APC-AXIN1-GSK3B variant"],["ComplexPortal%3ACPX-439","Beta-catenin destruction core complex, APC-AXIN2-GSK3B variant"],["ComplexPortal%3ACPX-99","Beta-catenin destruction core complex, APC2-AXIN1-GSK3B variant"],["ComplexPortal%3ACPX-440","Beta-catenin destruction core complex, APC2-AXIN2-GSK3B variant"],["ComplexPortal%3ACPX-14345","-"],["ComplexPortal%3ACPX-16629","-"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:9031","l":"Gallus gallus","na":48,"nb":1,"a":[["Pfam%3APF16620","Unstructured linker between I-set domains 2 and 3 on MYLCK"],["Pfam%3APF15512","Chromatin assembly factor complex 1 subunit p60, C-terminal"],["Pfam%3APF18130","ATP-grasp N-terminal domain"],["Pfam%3APF15632","ATP-grasp in the biosynthetic pathway with Ter operon"],["Pfam%3APF01382","Avidin family"],["Pfam%3APF08072","BDHCT (NUC031) domain"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P08684","l":"","na":47,"nb":1,"a":[["EC%3A1.14.14.55","quinine 3-monooxygenase"],["EC%3A1.14.14.56","1,8-cineole 2-exo-monooxygenase"],["EC%3A1.14.14.73","albendazole monooxygenase (sufoxide-forming)"],["RHEA%3A32895","1,8-cineole + reduced [NADPH--hemoprotein reductase] + O2 = 2-exo-hydroxy-1,8-cineole + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["RHEA%3A20149","quinine + reduced [NADPH--hemoprotein reductase] + O2 = 3-hydroxyquinine + oxidized [NADPH--hemoprotein reductase] + H2O + H(+)"],["ComplexPortal%3ACPX-11243","-"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"UniProt:P0A8V2","l":"","na":47,"nb":1,"a":[["ComplexPortal%3ACPX-4888","DNA-directed RNA polymerase holoenzyme complex, Sigma fecI variant"],["ComplexPortal%3ACPX-4884","DNA-directed RNA polymerase holoenzyme complex, Sigma54 variant"],["ComplexPortal%3ACPX-4881","DNA-directed RNA polymerase holoenzyme complex, Sigma70 variant"],["ComplexPortal%3ACPX-4885","DNA-directed RNA polymerase holoenzyme complex, SigmaE variant"],["ComplexPortal%3ACPX-4886","DNA-directed RNA polymerase holoenzyme complex, SigmaF variant"],["ComplexPortal%3ACPX-4887","DNA-directed RNA polymerase holoenzyme complex, SigmaH variant"]],"b":[["polyketides/rifamycin-sv.yaml","rifamycin SV"]]},{"id":"UniProt:P31749","l":"","na":46,"nb":1,"a":[["ComplexPortal%3ACPX-22352","-"],["ComplexPortal%3ACPX-24286","-"],["GO%3A0099104","potassium channel activator activity"],["GO%3A1904841","TORC2 complex binding"],["GO%3A0006924","activation-induced cell death of T cells"],["GO%3A0043276","anoikis"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P07900","l":"","na":45,"nb":1,"a":[["ComplexPortal%3ACPX-12937","-"],["ComplexPortal%3ACPX-14751","-"],["ComplexPortal%3ACPX-15245","-"],["ComplexPortal%3ACPX-17900","-"],["ComplexPortal%3ACPX-18328","-"],["ComplexPortal%3ACPX-19396","-"]],"b":[["polyketides/radicicol.yaml","radicicol"]]},{"id":"NCBITaxon:243277","l":"Vibrio cholerae O1 biovar El Tor str. N16961","na":44,"nb":1,"a":[["IDPO%3A0000011","disorder to order"],["IDPO%3A0000014","order to disorder"],["Pfam%3APF16671","Actin cross-linking domain"],["Pfam%3APF00842","Alanine racemase, C-terminal domain"],["Pfam%3APF06228","Haem utilisation ChuX/HutX"],["Pfam%3APF19425","Csd3 second domain"]],"b":[["alkaloids/vibriobactin-2.yaml","vibriobactin"]]},{"id":"UniProt:P25054","l":"","na":44,"nb":1,"a":[["ComplexPortal%3ACPX-107","Beta-catenin destruction core complex, APC-AXIN1-GSK3A variant"],["ComplexPortal%3ACPX-109","Beta-catenin destruction core complex, APC-AXIN1-GSK3B variant"],["ComplexPortal%3ACPX-441","Beta-catenin destruction core complex, APC-AXIN2-GSK3A variant"],["ComplexPortal%3ACPX-439","Beta-catenin destruction core complex, APC-AXIN2-GSK3B variant"],["ComplexPortal%3ACPX-12016","-"],["ComplexPortal%3ACPX-14403","-"]],"b":[["alkaloids/toxoflavin.yaml","toxoflavin"]]},{"id":"UniProt:P09917","l":"","na":42,"nb":1,"a":[["EC%3A1.13.11.34","arachidonate 5-lipoxygenase"],["EC%3A1.13.11.-","With incorporation of two atoms of oxygen"],["RHEA%3A32307","(5Z,8Z,11Z,14Z)-eicosatetraenoate + O2 = leukotriene A4 + H2O"],["ComplexPortal%3ACPX-15832","-"],["ComplexPortal%3ACPX-18202","-"],["ComplexPortal%3ACPX-20365","-"]],"b":[["alkaloids/myxochelin-a.yaml","myxochelin A"]]},{"id":"UniProt:Q9UBN7","l":"","na":38,"nb":1,"a":[["EC%3A3.5.1.-","In linear amides"],["ComplexPortal%3ACPX-11040","-"],["ComplexPortal%3ACPX-17348","-"],["ComplexPortal%3ACPX-19115","-"],["ComplexPortal%3ACPX-25368","-"],["ComplexPortal%3ACPX-25485","-"]],"b":[["amino_acids_and_peptides/apicidin.yaml","apicidin"]]},{"id":"UniProt:Q04771","l":"","na":37,"nb":1,"a":[["ComplexPortal%3ACPX-11394","-"],["ComplexPortal%3ACPX-11893","-"],["ComplexPortal%3ACPX-14842","-"],["ComplexPortal%3ACPX-15036","-"],["ComplexPortal%3ACPX-17430","-"],["ComplexPortal%3ACPX-18135","-"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P06493","l":"","na":36,"nb":1,"a":[["ComplexPortal%3ACPX-10673","-"],["ComplexPortal%3ACPX-11851","-"],["ComplexPortal%3ACPX-13027","-"],["ComplexPortal%3ACPX-15730","-"],["ComplexPortal%3ACPX-19796","-"],["ComplexPortal%3ACPX-21602","-"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P18031","l":"","na":35,"nb":1,"a":[["ComplexPortal%3ACPX-26130","-"],["GO%3A0098554","cytoplasmic side of endoplasmic reticulum membrane"],["GO%3A0031904","endosome lumen"],["GO%3A0030061","mitochondrial crista"],["GO%3A0097443","sorting endosome"],["GO%3A0046875","ephrin receptor binding"]],"b":[["terpenoids/lupeol.yaml","lupeol"]]},{"id":"UniProt:P09619","l":"","na":34,"nb":1,"a":[["ComplexPortal%3ACPX-11721","-"],["ComplexPortal%3ACPX-18342","-"],["ComplexPortal%3ACPX-18512","-"],["ComplexPortal%3ACPX-22260","-"],["ComplexPortal%3ACPX-25686","-"],["ComplexPortal%3ACPX-2892","PDGF receptor alpha-beta - PDGF-AB complex"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P62942","l":"","na":33,"nb":1,"a":[["ComplexPortal%3ACPX-15625","-"],["ComplexPortal%3ACPX-17368","-"],["GO%3A0098562","cytoplasmic side of membrane"],["GO%3A1990425","ryanodine receptor complex"],["GO%3A0016529","sarcoplasmic reticulum"],["GO%3A0033017","sarcoplasmic reticulum membrane"]],"b":[["polyketides/sirolimus.yaml","sirolimus"]]},{"id":"UniProt:P07711","l":"","na":31,"nb":1,"a":[["ComplexPortal%3ACPX-10815","-"],["ComplexPortal%3ACPX-12146","-"],["ComplexPortal%3ACPX-12243","-"],["ComplexPortal%3ACPX-18379","-"],["ComplexPortal%3ACPX-23732","-"],["ComplexPortal%3ACPX-23795","-"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"UniProt:P08238","l":"","na":31,"nb":1,"a":[["ComplexPortal%3ACPX-12937","-"],["ComplexPortal%3ACPX-15245","-"],["ComplexPortal%3ACPX-17900","-"],["ComplexPortal%3ACPX-18328","-"],["ComplexPortal%3ACPX-19396","-"],["ComplexPortal%3ACPX-23773","-"]],"b":[["polyketides/radicicol.yaml","radicicol"]]},{"id":"UniProt:P16234","l":"","na":30,"nb":1,"a":[["ComplexPortal%3ACPX-11080","-"],["ComplexPortal%3ACPX-11911","-"],["ComplexPortal%3ACPX-21238","-"],["ComplexPortal%3ACPX-23986","-"],["ComplexPortal%3ACPX-25630","-"],["ComplexPortal%3ACPX-2892","PDGF receptor alpha-beta - PDGF-AB complex"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"]]},{"id":"UniProt:P36897","l":"","na":30,"nb":1,"a":[["ComplexPortal%3ACPX-529","TGF-beta-1-TGFR complex"],["ComplexPortal%3ACPX-834","TGF-beta-2-TGFR complex"],["ComplexPortal%3ACPX-2544","TGF-beta-3-TGFR complex"],["GO%3A0048179","activin receptor complex"],["GO%3A0048185","activin binding"],["GO%3A0016361","activin receptor activity, type I"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":29,"nb":1,"a":[["Pfam%3APF09156","Anthrax toxin lethal factor, middle domain"],["Pfam%3APF08401","N-terminal domain of anti-restriction factor ArdC"],["Pfam%3APF07737","Anthrax toxin lethal factor, N- and C-terminal domain"],["Pfam%3APF27053","Bacillus anthracis plasmid pXO2 protein 26"],["Pfam%3APF13205","Bacterial Ig-like domain"],["Pfam%3APF17475","Clostridial binary toxin B/anthrax toxin PA domain 2"]],"b":[["alkaloids/petrobactin.yaml","petrobactin"]]},{"id":"UniProt:P00747","l":"","na":29,"nb":1,"a":[["ComplexPortal%3ACPX-11986","-"],["ComplexPortal%3ACPX-14765","-"],["ComplexPortal%3ACPX-15280","-"],["ComplexPortal%3ACPX-16758","-"],["ComplexPortal%3ACPX-17221","-"],["ComplexPortal%3ACPX-19201","-"]],"b":[["alkaloids/congocidine.yaml","congocidine"]]},{"id":"CHEBI:57743","l":"","na":28,"nb":1,"a":[["EC%3A1.14.13.39","nitric-oxide synthase (NADPH)"],["EC%3A1.14.14.47","nitric-oxide synthase (flavodoxin)"],["EC%3A2.1.3.3","ornithine carbamoyltransferase"],["EC%3A3.5.1.20","citrullinase"],["EC%3A3.5.3.18","dimethylargininase"],["EC%3A3.5.3.6","arginine deiminase"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"UniProt:P00156","l":"","na":27,"nb":1,"a":[["ComplexPortal%3ACPX-13288","-"],["ComplexPortal%3ACPX-13705","-"],["ComplexPortal%3ACPX-14252","-"],["ComplexPortal%3ACPX-15275","-"],["ComplexPortal%3ACPX-15481","-"],["ComplexPortal%3ACPX-19909","-"]],"b":[["unclassified/antimycin-a1b.yaml","antimycin A1B"]]},{"id":"UniProt:P56524","l":"","na":27,"nb":1,"a":[["ComplexPortal%3ACPX-10863","-"],["ComplexPortal%3ACPX-10978","-"],["ComplexPortal%3ACPX-11176","-"],["ComplexPortal%3ACPX-11281","-"],["ComplexPortal%3ACPX-12671","-"],["ComplexPortal%3ACPX-12759","-"]],"b":[["amino_acids_and_peptides/apicidin.yaml","apicidin"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. PCC 7120 = FACHB-418","na":26,"nb":1,"a":[["Pfam%3APF27270","Alr1449"],["Pfam%3APF27301","Alr2735 N-terminal domain"],["Pfam%3APF27288","Alr2735"],["Pfam%3APF21571","Arginine dihydrolase ArgZ-like, C-terminal, first region"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF13205","Bacterial Ig-like domain"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"]]},{"id":"UniProt:P48736","l":"","na":26,"nb":1,"a":[["ComplexPortal%3ACPX-5986","Phosphatidylinositol 3-kinase complex class IB, p110gamma/p101"],["ComplexPortal%3ACPX-5987","Phosphatidylinositol 3-kinase complex class IB, p110gamma/p87"],["GO%3A0005943","phosphatidylinositol 3-kinase complex, class IA"],["GO%3A0005944","phosphatidylinositol 3-kinase complex, class IB"],["GO%3A0046934","1-phosphatidylinositol-4,5-bisphosphate 3-kinase activity"],["GO%3A0035005","1-phosphatidylinositol-4-phosphate 3-kinase activity"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P53350","l":"","na":26,"nb":1,"a":[["ComplexPortal%3ACPX-14028","-"],["ComplexPortal%3ACPX-17085","-"],["ComplexPortal%3ACPX-19451","-"],["GO%3A0010997","anaphase-promoting complex binding"],["GO%3A0097681","double-strand break repair via alternative nonhomologous end joining"],["GO%3A0048313","Golgi inheritance"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P29466","l":"","na":25,"nb":1,"a":[["ComplexPortal%3ACPX-4142","AIM2 inflammasome"],["ComplexPortal%3ACPX-10594","-"],["ComplexPortal%3ACPX-13219","-"],["ComplexPortal%3ACPX-13566","-"],["ComplexPortal%3ACPX-21295","-"],["ComplexPortal%3ACPX-21498","-"]],"b":[["alkaloids/toxoflavin.yaml","toxoflavin"]]},{"id":"UniProt:Q03181","l":"","na":25,"nb":1,"a":[["ComplexPortal%3ACPX-12990","-"],["ComplexPortal%3ACPX-17750","-"],["ComplexPortal%3ACPX-18139","-"],["ComplexPortal%3ACPX-19679","-"],["ComplexPortal%3ACPX-24893","-"],["GO%3A0070539","linoleic acid binding"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"NCBITaxon:2925","l":"Alexandrium catenella","na":24,"nb":1,"a":[["TED%3AAF-A0A7S1KY03-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1KY03-F1-model_v4_TED01"],["TED%3AAF-A0A7S1L1S9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S1L1S9-F1-model_v4_TED02"],["TED%3AAF-A0A7S1ML43-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1ML43-F1-model_v4_TED01"],["TED%3AAF-A0A7S1PQ85-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1PQ85-F1-model_v4_TED01"],["TED%3AAF-A0A7S1QA17-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A7S1QA17-F1-model_v4_TED05"],["TED%3AAF-A0A7S1QL55-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S1QL55-F1-model_v4_TED03"]],"b":[["alkaloids/saxitoxin.yaml","saxitoxin"]]},{"id":"NCBITaxon:73915","l":"Pyrodinium bahamense","na":24,"nb":1,"a":[["TED%3AAF-A0A7S0A4R5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0A4R5-F1-model_v4_TED01"],["TED%3AAF-A0A7S0AC67-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0AC67-F1-model_v4_TED01"],["TED%3AAF-A0A7S0APM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0APM3-F1-model_v4_TED01"],["TED%3AAF-A0A7S0AQ53-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0AQ53-F1-model_v4_TED01"],["TED%3AAF-A0A7S0AX35-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0AX35-F1-model_v4_TED01"],["TED%3AAF-A0A7S0B705-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S0B705-F1-model_v4_TED02"]],"b":[["alkaloids/saxitoxin.yaml","saxitoxin"]]},{"id":"UniProt:O00444","l":"","na":24,"nb":1,"a":[["ComplexPortal%3ACPX-1299","CEP152-PLK4 complex"],["ComplexPortal%3ACPX-1161","CEP192-PLK4 complex"],["GO%3A0098536","deuterosome"],["GO%3A0120098","procentriole"],["GO%3A0098535","de novo centriole assembly involved in multi-ciliated epithelial cell differentiation"],["GO%3A0046601","positive regulation of centriole replication"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P23284","l":"","na":24,"nb":1,"a":[["ComplexPortal%3ACPX-11676","-"],["ComplexPortal%3ACPX-12341","-"],["ComplexPortal%3ACPX-12626","-"],["ComplexPortal%3ACPX-13324","-"],["ComplexPortal%3ACPX-14387","-"],["ComplexPortal%3ACPX-17992","-"]],"b":[["amino_acids_and_peptides/cyclosporin-a.yaml","cyclosporin A"]]},{"id":"NCBITaxon:40559","l":"Botrytis cinerea","na":1,"nb":23,"a":[["Pfam%3APF08883","Dopa 4,5-dioxygenase family"]],"b":[["terpenoids/1-epibotrydial.yaml","1-epibotrydial"],["terpenoids/10-dehydroxy-dihydrobotrydialone.yaml","10-dehydroxy dihydrobotrydialone"],["terpenoids/10-epi-dihydrobotrydial.yaml","10-epi-dihydrobotrydial"],["terpenoids/10-oxo-dihydrobotrydial.yaml","10-Oxo-dihydrobotrydial"],["terpenoids/10-oxodehydrodihydrobotrydial.yaml","10-Oxodehydrodihydrobotrydial"],["terpenoids/10-oxodihydrobotry-1-9-4-5-diendial.yaml","10-Oxodihydrobotry-1(9),4(5)-diendial"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":23,"nb":1,"a":[["Pfam%3APF09255","Caf1 Capsule antigen"],["Pfam%3APF02611","CDP-diacylglycerol pyrophosphatase"],["Pfam%3APF07411","Domain of unknown function (DUF1508)"],["Pfam%3APF05171","Haemin-degrading HemS.ChuX domain"],["Pfam%3APF21500","DNA polymerase III subunit delta', AAA+ ATPase lid domain"],["Pfam%3APF11004","3-deoxy-D-manno-oct-2-ulosonic acid (Kdo) hydroxylase"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"UniProt:O00763","l":"","na":23,"nb":1,"a":[["ComplexPortal%3ACPX-12392","-"],["ComplexPortal%3ACPX-13685","-"],["ComplexPortal%3ACPX-15849","-"],["ComplexPortal%3ACPX-19952","-"],["ComplexPortal%3ACPX-20498","-"],["ComplexPortal%3ACPX-20638","-"]],"b":[["polyketides/soraphen-a.yaml","soraphen A"]]},{"id":"UniProt:P12830","l":"","na":23,"nb":1,"a":[["ComplexPortal%3ACPX-12016","-"],["ComplexPortal%3ACPX-14403","-"],["ComplexPortal%3ACPX-16015","-"],["ComplexPortal%3ACPX-16575","-"],["ComplexPortal%3ACPX-17484","-"],["ComplexPortal%3ACPX-23131","-"]],"b":[["alkaloids/toxoflavin.yaml","toxoflavin"]]},{"id":"UniProt:P24385","l":"","na":23,"nb":1,"a":[["ComplexPortal%3ACPX-10673","-"],["ComplexPortal%3ACPX-18871","-"],["ComplexPortal%3ACPX-20404","-"],["ComplexPortal%3ACPX-21602","-"],["ComplexPortal%3ACPX-26221","-"],["ComplexPortal%3ACPX-26273","-"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"]]},{"id":"UniProt:Q15119","l":"","na":23,"nb":1,"a":[["ComplexPortal%3ACPX-11733","-"],["ComplexPortal%3ACPX-12952","-"],["ComplexPortal%3ACPX-15696","-"],["ComplexPortal%3ACPX-16639","-"],["ComplexPortal%3ACPX-16656","-"],["ComplexPortal%3ACPX-17227","-"]],"b":[["polyketides/radicicol.yaml","radicicol"]]},{"id":"CHEBI:27547","l":"zeaxanthin","na":22,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_27547","requires zeaxanthin"],["EC%3A1.13.11.65","carotenoid isomerooxygenase"],["EC%3A1.13.11.84","crocetin dialdehyde synthase"],["EC%3A1.14.15.21","zeaxanthin epoxidase"],["EC%3A1.14.15.24","beta-carotene 3-hydroxylase"],["EC%3A1.14.99.64","zeaxanthin 4-ketolase"]],"b":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]]},{"id":"NCBITaxon:394","l":"Sinorhizobium fredii NGR234","na":22,"nb":1,"a":[["Pfam%3APF17841","BID domain of Bartonella effector protein (Bep)"],["Pfam%3APF04255","Protein of unknown function (DUF433)"],["Pfam%3APF18480","Domain of unknown function (DUF5615)"],["Pfam%3APF20008","Domain of unknown function (DUF6429)"],["Pfam%3APF24134","Domain of unknown function (DUF7401)"],["Pfam%3APF18728","AbiV"]],"b":[["terpenoids/gibberellin.yaml","gibberellin"]]},{"id":"UniProt:P42858","l":"","na":22,"nb":1,"a":[["ComplexPortal%3ACPX-25173","-"],["ComplexPortal%3ACPX-11549","Huntingtin-HAP40 endosomal complex"],["GO%3A0005522","profilin binding"],["GO%3A1905337","positive regulation of aggrephagy"],["GO%3A1905291","positive regulation of CAMKK-AMPK signaling cascade"],["GO%3A1904504","positive regulation of lipophagy"]],"b":[["unclassified/antimycin-a.yaml","antimycin A"]]},{"id":"UniProt:P68400","l":"","na":22,"nb":1,"a":[["ComplexPortal%3ACPX-2437","Casein kinase II complex, CSNK2A1-CNSK2A2 variant"],["ComplexPortal%3ACPX-914","Casein kinase II complex, CSNK2A1 variant"],["ComplexPortal%3ACPX-11941","-"],["ComplexPortal%3ACPX-12009","-"],["ComplexPortal%3ACPX-12888","-"],["ComplexPortal%3ACPX-14603","-"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"UniProt:Q24451","l":"","na":22,"nb":1,"a":[["GO%3A0015923","mannosidase activity"],["GO%3A0004572","mannosyl-oligosaccharide 1,3-1,6-alpha-mannosidase activity"],["GO%3A0035010","encapsulation of foreign target"],["GO%3A1904381","Golgi apparatus N-glycan mannose trimming"],["GO%3A0016063","rhodopsin biosynthetic process"],["CDD%3Acd10809","GH38N_AMII_GMII_SfManIII_like"]],"b":[["alkaloids/swainsonine.yaml","swainsonine"]]},{"id":"NCBITaxon:243265","l":"Photorhabdus laumondii subsp. laumondii TTO1","na":1,"nb":21,"a":[["Pfam%3APF07927","HicA toxin of bacterial toxin-antitoxin,"]],"b":[["amino_acids_and_peptides/gamexpeptide-c.yaml","gamexpeptide C"],["amino_acids_and_peptides/luminmycin-a.yaml","luminmycin A"],["amino_acids_and_peptides/ririwpeptide-a.yaml","ririwpeptide A"],["amino_acids_and_peptides/ririwpeptide-b.yaml","ririwpeptide B"],["carbohydrates/oligosaccharide-1-glcnac-1-4-1-6-anhydro-glcnac.yaml","oligosaccharide 1 (GlcNAc-β(1-4)-1,6-anhydro-β-GlcNAc)"],["carbohydrates/oligosaccharide-2-glcnac-1-4-glcnac-1-4-1-6-anhydro-glcnac.yaml","oligosaccharide 2 (GlcNAc-β(1-4)-GlcNAc-β(1-4)-1,6-anhydro-β-GlcNAc)"]]},{"id":"UniProt:O14757","l":"","na":21,"nb":1,"a":[["ComplexPortal%3ACPX-26328","Chromatin regulation assembly"],["ComplexPortal%3ACPX-10797","-"],["ComplexPortal%3ACPX-11546","-"],["ComplexPortal%3ACPX-14608","-"],["ComplexPortal%3ACPX-15285","-"],["ComplexPortal%3ACPX-15872","-"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P00749","l":"","na":21,"nb":1,"a":[["EC%3A3.4.21.73","u-plasminogen activator"],["ComplexPortal%3ACPX-483","uPA-PAI-1 complex"],["ComplexPortal%3ACPX-487","uPA-uPAR complex"],["ComplexPortal%3ACPX-501","uPA-uPAR-vitronectin complex"],["GO%3A1905370","serine-type endopeptidase complex"],["GO%3A0010757","negative regulation of plasminogen activation"]],"b":[["alkaloids/congocidine.yaml","congocidine"]]},{"id":"UniProt:P12268","l":"","na":21,"nb":1,"a":[["ComplexPortal%3ACPX-10668","-"],["ComplexPortal%3ACPX-16204","-"],["ComplexPortal%3ACPX-19278","-"],["ComplexPortal%3ACPX-20073","-"],["ComplexPortal%3ACPX-23201","-"],["ComplexPortal%3ACPX-24150","-"]],"b":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"]]},{"id":"UniProt:P20839","l":"","na":21,"nb":1,"a":[["ComplexPortal%3ACPX-11065","-"],["ComplexPortal%3ACPX-13142","-"],["ComplexPortal%3ACPX-14906","-"],["ComplexPortal%3ACPX-14944","-"],["ComplexPortal%3ACPX-18455","-"],["ComplexPortal%3ACPX-19278","-"]],"b":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"]]},{"id":"UniProt:P49760","l":"","na":21,"nb":1,"a":[["ComplexPortal%3ACPX-11057","-"],["ComplexPortal%3ACPX-12352","-"],["ComplexPortal%3ACPX-13888","-"],["ComplexPortal%3ACPX-15887","-"],["ComplexPortal%3ACPX-18111","-"],["ComplexPortal%3ACPX-18764","-"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P00918","l":"","na":20,"nb":1,"a":[["RHEA%3A10748","hydrogencarbonate + H(+) = CO2 + H2O"],["ComplexPortal%3ACPX-14819","-"],["ComplexPortal%3ACPX-22076","-"],["ComplexPortal%3ACPX-23290","-"],["ComplexPortal%3ACPX-24928","-"],["GO%3A0004089","carbonate dehydratase activity"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:P03372","l":"","na":20,"nb":1,"a":[["ComplexPortal%3ACPX-19787","-"],["ComplexPortal%3ACPX-21796","-"],["ComplexPortal%3ACPX-5156","ERalpha-NCOA2 activated estrogen receptor complex"],["GO%3A0034056","estrogen response element binding"],["GO%3A0030284","nuclear estrogen receptor activity"],["GO%3A0030520","estrogen receptor signaling pathway"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:P11362","l":"","na":20,"nb":1,"a":[["ComplexPortal%3ACPX-13057","-"],["ComplexPortal%3ACPX-18540","-"],["ComplexPortal%3ACPX-19802","-"],["ComplexPortal%3ACPX-21241","-"],["ComplexPortal%3ACPX-21995","-"],["GO%3A0005007","fibroblast growth factor receptor activity"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:Q16706","l":"","na":20,"nb":1,"a":[["EC%3A3.2.1.114","mannosyl-oligosaccharide 1,3-1,6-alpha-mannosidase"],["RHEA%3A56052","N(4)-{beta-D-GlcNAc-(1->2)-alpha-D-Man-(1->3)-[alpha-D-Man-(1->3)-[alpha-D-Man-(1->6)]-alpha-D-Man-(1->6)]-beta-D-Man-(1->4)-beta-D-GlcNAc-(1->4)-beta-D-GlcNAc}-L-asparaginyl-[protein] + 2 H2O = 2 alpha-D-mannopyranose + an N(4)-{beta-D-GlcNAc-(1->2)-alpha-D-Man-(1->3)-[alpha-D-Man-(1->6)]-beta-D-Man-(1->4)-beta-D-GlcNAc-(1->4)-beta-D-GlcNAc}-L-asparaginyl-[protein]"],["ComplexPortal%3ACPX-12202","-"],["ComplexPortal%3ACPX-15107","-"],["ComplexPortal%3ACPX-22647","-"],["GO%3A0016799","hydrolase activity, hydrolyzing N-glycosyl compounds"]],"b":[["alkaloids/swainsonine.yaml","swainsonine"]]},{"id":"UniProt:P07333","l":"","na":19,"nb":1,"a":[["ComplexPortal%3ACPX-22260","-"],["ComplexPortal%3ACPX-10333","IL34-CSF1R complex"],["ComplexPortal%3ACPX-25717","Macrophage colony-stimulating factor-1 receptor-ligand complex"],["GO%3A1990682","CSF1-CSF1R complex"],["GO%3A0005011","macrophage colony-stimulating factor receptor activity"],["GO%3A0036006","cellular response to macrophage colony-stimulating factor stimulus"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P35968","l":"","na":19,"nb":1,"a":[["GO%3A0097443","sorting endosome"],["GO%3A0038085","vascular endothelial growth factor binding"],["GO%3A0005021","vascular endothelial growth factor receptor activity"],["GO%3A1904881","cellular response to hydrogen sulfide"],["GO%3A0003157","endocardium development"],["GO%3A0141150","positive regulation of nitric oxide-cGMP mediated signal transduction"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:Q96QE3","l":"","na":19,"nb":1,"a":[["ComplexPortal%3ACPX-11703","-"],["ComplexPortal%3ACPX-13085","-"],["ComplexPortal%3ACPX-14089","-"],["ComplexPortal%3ACPX-14271","-"],["ComplexPortal%3ACPX-16564","-"],["ComplexPortal%3ACPX-17722","-"]],"b":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]]},{"id":"UniProt:Q05513","l":"","na":18,"nb":1,"a":[["ComplexPortal%3ACPX-10855","-"],["ComplexPortal%3ACPX-16356","-"],["ComplexPortal%3ACPX-18654","-"],["ComplexPortal%3ACPX-18746","-"],["ComplexPortal%3ACPX-22762","-"],["ComplexPortal%3ACPX-23337","-"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:Q12809","l":"","na":18,"nb":1,"a":[["ComplexPortal%3ACPX-12423","-"],["ComplexPortal%3ACPX-16470","-"],["ComplexPortal%3ACPX-16985","-"],["ComplexPortal%3ACPX-21446","-"],["ComplexPortal%3ACPX-22668","-"],["ComplexPortal%3ACPX-3072","Voltage-gated potassium channel complex variant 1"]],"b":[["unclassified/teixobactin.yaml","teixobactin"]]},{"id":"UniProt:O94760","l":"","na":17,"nb":1,"a":[["EC%3A3.5.3.18","dimethylargininase"],["ComplexPortal%3ACPX-11521","-"],["ComplexPortal%3ACPX-12381","-"],["ComplexPortal%3ACPX-13858","-"],["ComplexPortal%3ACPX-15777","-"],["ComplexPortal%3ACPX-18623","-"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"UniProt:P24864","l":"","na":17,"nb":1,"a":[["ComplexPortal%3ACPX-10673","-"],["ComplexPortal%3ACPX-11851","-"],["ComplexPortal%3ACPX-13027","-"],["ComplexPortal%3ACPX-19796","-"],["ComplexPortal%3ACPX-20481","-"],["ComplexPortal%3ACPX-21602","-"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"]]},{"id":"CHEBI:17579","l":"β-carotene","na":16,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17579","requires β-carotene"],["EC%3A1.13.11.63","beta-carotene 15,15'-dioxygenase"],["EC%3A1.13.11.71","carotenoid-9',10'-cleaving dioxygenase"],["EC%3A1.14.15.24","beta-carotene 3-hydroxylase"],["EC%3A1.14.99.63","beta-carotene 4-ketolase"],["EC%3A5.2.1.14","beta-carotene isomerase"]],"b":[["terpenoids/carotene.yaml","β-carotene"]]},{"id":"UniProt:P01215","l":"","na":16,"nb":1,"a":[["ComplexPortal%3ACPX-748","Chorionic gonadotropin hormone complex"],["ComplexPortal%3ACPX-14986","-"],["ComplexPortal%3ACPX-16532","-"],["ComplexPortal%3ACPX-19116","-"],["ComplexPortal%3ACPX-23467","-"],["ComplexPortal%3ACPX-665","Follicle-stimulating hormone complex"]],"b":[["amino_acids_and_peptides/ditryptophenaline.yaml","(-)-ditryptophenaline"]]},{"id":"UniProt:P11086","l":"","na":16,"nb":1,"a":[["EC%3A2.1.1.28","phenylethanolamine N-methyltransferase"],["RHEA%3A25269","(R)-noradrenaline + S-adenosyl-L-methionine = (R)-adrenaline + S-adenosyl-L-homocysteine + H(+)"],["ComplexPortal%3ACPX-11076","-"],["ComplexPortal%3ACPX-14242","-"],["ComplexPortal%3ACPX-17963","-"],["ComplexPortal%3ACPX-21796","-"]],"b":[["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"UniProt:Q9H4B4","l":"","na":16,"nb":1,"a":[["GO%3A0007113","endomitotic cell cycle"],["GO%3A0090166","Golgi disassembly"],["GO%3A0044819","mitotic G1/S transition checkpoint signaling"],["GO%3A1904716","positive regulation of chaperone-mediated autophagy"],["CDD%3Acd14189","STKc_PLK3"],["CDD%3Acd13118","POLO_box_1"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:5127","l":"Fusarium fujikuroi","na":1,"nb":15,"a":[["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"]],"b":[["alkaloids/fusaric-acid.yaml","fusaric acid"],["alkaloids/fusarin-c.yaml","fusarin C"],["polyketides/bikaverin.yaml","bikaverin"],["polyketides/fujikurin-c.yaml","fujikurin C"],["polyketides/fujikurin-d.yaml","fujikurin D"],["polyketides/fumonisin-b1.yaml","Fumonisin B1"]]},{"id":"UniProt:P11511","l":"","na":15,"nb":1,"a":[["ComplexPortal%3ACPX-11590","-"],["ComplexPortal%3ACPX-12153","-"],["ComplexPortal%3ACPX-14456","-"],["ComplexPortal%3ACPX-20752","-"],["ComplexPortal%3ACPX-20895","-"],["ComplexPortal%3ACPX-20967","-"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:P21964","l":"","na":15,"nb":1,"a":[["ComplexPortal%3ACPX-13290","-"],["ComplexPortal%3ACPX-13949","-"],["ComplexPortal%3ACPX-14233","-"],["ComplexPortal%3ACPX-14264","-"],["ComplexPortal%3ACPX-19464","-"],["ComplexPortal%3ACPX-26179","-"]],"b":[["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"UniProt:P22748","l":"","na":15,"nb":1,"a":[["ComplexPortal%3ACPX-17339","-"],["ComplexPortal%3ACPX-17919","-"],["ComplexPortal%3ACPX-18486","-"],["ComplexPortal%3ACPX-19014","-"],["ComplexPortal%3ACPX-23066","-"],["ComplexPortal%3ACPX-23243","-"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:Q02779","l":"","na":15,"nb":1,"a":[["ComplexPortal%3ACPX-10957","-"],["ComplexPortal%3ACPX-11452","-"],["ComplexPortal%3ACPX-11502","-"],["ComplexPortal%3ACPX-11859","-"],["ComplexPortal%3ACPX-13254","-"],["ComplexPortal%3ACPX-13493","-"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":14,"nb":1,"a":[["Pfam%3APF03703","Bacterial PH domain"],["Pfam%3APF01322","Cytochrome C'"],["Pfam%3APF03139","Vanadium/alternative nitrogenase delta subunit"],["Pfam%3APF09527","Putative F0F1-ATPase subunit Ca2+/Mg2+ transporter"],["Pfam%3APF03270","Protein of unknown function, DUF269"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"]],"b":[["alkaloids/molybdenum-cofactor.yaml","molybdenum cofactor"]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":1,"nb":14,"a":[["Pfam%3APF26312","Domain of unknown function (DUF8083)"]],"b":[["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/actinomycin-d.yaml","actinomycin D"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/framycetin.yaml","framycetin"],["carbohydrates/neomycin-c.yaml","neomycin C"],["carbohydrates/paromomycin.yaml","paromomycin"]]},{"id":"NCBITaxon:58346","l":"Streptomyces platensis","na":1,"nb":14,"a":[["PROSITE%3APS00999","Streptomyces subtilisin-type inhibitors signature"]],"b":[["alkaloids/13-epi-dorrigocin-a.yaml","13-epi-dorrigocin A"],["alkaloids/17-hydroxy-8-desmethoxy-isomigrastatin.yaml","17-hydroxy-8-desmethoxy-isomigrastatin"],["alkaloids/dorrigocin-a.yaml","dorrigocin A"],["alkaloids/dorrigocin-b.yaml","dorrigocin B"],["alkaloids/iso-migrastatin.yaml","iso-migrastatin"],["alkaloids/staurosporine.yaml","staurosporine"]]},{"id":"NCBITaxon:9986","l":"Oryctolagus cuniculus","na":14,"nb":1,"a":[["IDPO%3A0000018","disorder to molten globule"],["IDPO%3A0000023","pre-molten globule to molten globule"],["Pfam%3APF27603","AKAP9-like coiled-coil region"],["Pfam%3APF17860","RK-1-like defensin"],["Pfam%3APF14965","Negative regulator of p53/TP53"],["PROSITE%3APS00328","HCP repeats signature"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P27169","l":"","na":14,"nb":1,"a":[["ComplexPortal%3ACPX-10649","-"],["ComplexPortal%3ACPX-12297","-"],["ComplexPortal%3ACPX-16876","-"],["ComplexPortal%3ACPX-25382","-"],["GO%3A0102007","acyl-L-homoserine-lactone lactonohydrolase activity"],["GO%3A0004063","aryldialkylphosphatase activity"]],"b":[["carbohydrates/lincomycin.yaml","lincomycin"]]},{"id":"UniProt:P80192","l":"","na":14,"nb":1,"a":[["ComplexPortal%3ACPX-10957","-"],["ComplexPortal%3ACPX-11452","-"],["ComplexPortal%3ACPX-11502","-"],["ComplexPortal%3ACPX-13254","-"],["ComplexPortal%3ACPX-13493","-"],["ComplexPortal%3ACPX-14473","-"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"]]},{"id":"UniProt:Q9NYY3","l":"","na":14,"nb":1,"a":[["ComplexPortal%3ACPX-18657","-"],["GO%3A0071866","negative regulation of apoptotic process in bone marrow cell"],["CDD%3Acd14188","STKc_PLK2"],["CDD%3Acd13118","POLO_box_1"],["CDD%3Acd13117","POLO_box_2"],["InterPro%3AIPR033701","First polo-box domain"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":13,"nb":1,"a":[["Pfam%3APF07832","Cfr10I/Bse634I restriction endonuclease"],["Pfam%3APF22348","Colicin-A N-terminal domain"],["Pfam%3APF01024","Colicin pore forming domain"],["Pfam%3APF18427","DD-reactivating factor swiveling domain"],["Pfam%3APF02286","Dehydratase large subunit"],["Pfam%3APF02288","Dehydratase medium subunit"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:644","l":"Aeromonas hydrophila","na":13,"nb":1,"a":[["Pfam%3APF01117","Aerolysin toxin"],["Pfam%3APF03440","Aerolysin/Pertussis toxin (APT) domain"],["Pfam%3APF21327","GspA, peptidase C39-like domain"],["Pfam%3APF04231","Endonuclease I"],["PROSITE%3APS01092","Adenylate cyclase class-I signature 1"],["PROSITE%3APS01093","Adenylate cyclase class-I signature 2"]],"b":[["amino_acids_and_peptides/amonabactin-p-750.yaml","amonabactin P 750"]]},{"id":"UniProt:O00754","l":"","na":13,"nb":1,"a":[["ComplexPortal%3ACPX-15965","-"],["ComplexPortal%3ACPX-19551","-"],["ComplexPortal%3ACPX-20291","-"],["ComplexPortal%3ACPX-26077","-"],["ComplexPortal%3ACPX-26144","-"],["CDD%3Acd10810","GH38N_AMII_LAM_like"]],"b":[["alkaloids/swainsonine.yaml","swainsonine"]]},{"id":"UniProt:O15530","l":"","na":13,"nb":1,"a":[["ComplexPortal%3ACPX-13979","-"],["ComplexPortal%3ACPX-20891","-"],["ComplexPortal%3ACPX-24544","-"],["GO%3A0004676","3-phosphoinositide-dependent protein kinase activity"],["GO%3A0141124","intracellular signaling cassette"],["GO%3A0043304","regulation of mast cell degranulation"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:Q14749","l":"","na":13,"nb":1,"a":[["EC%3A2.1.1.20","glycine N-methyltransferase"],["RHEA%3A19937","glycine + S-adenosyl-L-methionine = sarcosine + S-adenosyl-L-homocysteine + H(+)"],["ComplexPortal%3ACPX-10845","-"],["ComplexPortal%3ACPX-14981","-"],["ComplexPortal%3ACPX-21780","-"],["ComplexPortal%3ACPX-22832","-"]],"b":[["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"NCBITaxon:60172","l":"Penicillium solitum","na":1,"nb":12,"a":[["TED%3AAF-A0A1V6R6Y6-F1-model_v4_TED01","TED novel fold AF-A0A1V6R6Y6-F1-model_v4_TED01"]],"b":[["polyketides/dihydrobisvertinolone.yaml","dihydrobisvertinolone"],["polyketides/sorbicillin.yaml","sorbicillin"],["polyketides/terrestric-acid.yaml","terrestric acid"],["polyketides/tetrahydrobisvertinolone.yaml","tetrahydrobisvertinolone"],["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"],["unclassified/penitrem-a.yaml","penitrem A"]]},{"id":"UniProt:P05129","l":"","na":12,"nb":1,"a":[["ComplexPortal%3ACPX-12748","-"],["ComplexPortal%3ACPX-19449","-"],["ComplexPortal%3ACPX-19476","-"],["ComplexPortal%3ACPX-24173","-"],["GO%3A0004698","calcium,diacylglycerol-dependent serine/threonine kinase activity"],["GO%3A0032425","positive regulation of mismatch repair"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P0A853","l":"","na":12,"nb":1,"a":[["GO%3A0060187","cell pole"],["GO%3A0080146","L-cysteine desulfhydrase activity"],["GO%3A0016829","lyase activity"],["GO%3A0030955","potassium ion binding"],["GO%3A0009034","tryptophanase activity"],["GO%3A0042431","indole metabolic process"]],"b":[["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]]},{"id":"UniProt:P31751","l":"","na":12,"nb":1,"a":[["ComplexPortal%3ACPX-10780","-"],["ComplexPortal%3ACPX-16948","-"],["ComplexPortal%3ACPX-22352","-"],["GO%3A0010748","negative regulation of long-chain fatty acid import across plasma membrane"],["GO%3A1903676","positive regulation of cap-dependent translational initiation"],["CDD%3Acd05595","STKc_PKB_beta"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P40261","l":"","na":12,"nb":1,"a":[["EC%3A2.1.1.1","nicotinamide N-methyltransferase"],["RHEA%3A23884","nicotinamide + S-adenosyl-L-methionine = 1-methylnicotinamide + S-adenosyl-L-homocysteine"],["GO%3A0008112","nicotinamide N-methyltransferase activity"],["GO%3A0030760","pyridine N-methyltransferase activity"],["GO%3A0006769","nicotinamide metabolic process"],["GO%3A0090312","positive regulation of protein deacetylation"]],"b":[["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"UniProt:P48454","l":"","na":12,"nb":1,"a":[["ComplexPortal%3ACPX-1112","Calcineurin-Calmodulin-AKAP5 complex, gamma-R1 variant"],["ComplexPortal%3ACPX-1118","Calcineurin-Calmodulin-AKAP5 complex, gamma-R2 variant"],["ComplexPortal%3ACPX-1001","Calcineurin-Calmodulin complex, gamma-R1 variant"],["ComplexPortal%3ACPX-1050","Calcineurin-Calmodulin complex, gamma-R2 variant"],["ComplexPortal%3ACPX-17012","-"],["ComplexPortal%3ACPX-17541","-"]],"b":[["amino_acids_and_peptides/cyclosporin-a.yaml","cyclosporin A"]]},{"id":"UniProt:Q08881","l":"","na":12,"nb":1,"a":[["GO%3A0046629","gamma-delta T cell activation"],["GO%3A0001865","NK T cell differentiation"],["InterPro%3AIPR001562","Zinc finger, Btk motif"],["CDD%3Acd01238","PH_Btk"],["CDD%3Acd05112","PTKc_Itk"],["CDD%3Acd10396","SH2_Tec_Itk"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:4113","l":"Solanum tuberosum","na":11,"nb":1,"a":[["Pfam%3APF02977","Carboxypeptidase A inhibitor"],["Pfam%3APF01474","Class-II DAHP synthetase family"],["Pfam%3APF23229","Alpha-glucan water dikinase, DUF7067"],["Pfam%3APF02446","4-alpha-glucanotransferase"],["Pfam%3APF22973","Alpha-glucan water dikinase, phosphohistidine-like domain"],["Pfam%3APF23166","Alpha-glucan water dikinase 1 Ig-like N-terminal domain"]],"b":[["fatty_acids/itaconic-acid.yaml","itaconic acid"]]},{"id":"UniProt:O60503","l":"","na":11,"nb":1,"a":[["ComplexPortal%3ACPX-10819","-"],["ComplexPortal%3ACPX-10882","-"],["ComplexPortal%3ACPX-14634","-"],["ComplexPortal%3ACPX-14903","-"],["ComplexPortal%3ACPX-17315","-"],["ComplexPortal%3ACPX-18747","-"]],"b":[["polyketides/chlortetracycline.yaml","chlortetracycline"]]},{"id":"UniProt:P00915","l":"","na":11,"nb":1,"a":[["ComplexPortal%3ACPX-11364","-"],["ComplexPortal%3ACPX-12060","-"],["ComplexPortal%3ACPX-14728","-"],["ComplexPortal%3ACPX-15000","-"],["ComplexPortal%3ACPX-25381","-"],["GO%3A0018820","cyanamide hydratase activity"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:Q9BX63","l":"","na":11,"nb":1,"a":[["ComplexPortal%3ACPX-4426","BRCA1-B complex"],["ComplexPortal%3ACPX-17429","-"],["ComplexPortal%3ACPX-26140","-"],["CDD%3Acd18788","SF2_C_XPD"],["CDD%3Acd17970","DEAHc_FancJ"],["InterPro%3AIPR006554","Helicase-like, DEXD box c2 type"]],"b":[["unclassified/telomestatin.yaml","telomestatin"]]},{"id":"NCBITaxon:116188","l":"Streptomyces coeruleorubidus","na":1,"nb":10,"a":[["Pfam%3APF13732","ATP-binding protein DrrA1-3-like, C-terminal domain"]],"b":[["amino_acids_and_peptides/pacidamycin-1.yaml","pacidamycin 1"],["amino_acids_and_peptides/pacidamycin-2.yaml","pacidamycin 2"],["amino_acids_and_peptides/pacidamycin-3.yaml","pacidamycin 3"],["amino_acids_and_peptides/pacidamycin-4.yaml","pacidamycin 4"],["amino_acids_and_peptides/pacidamycin-5.yaml","pacidamycin 5"],["amino_acids_and_peptides/pacidamycin-6.yaml","pacidamycin 6"]]},{"id":"NCBITaxon:257313","l":"Bordetella pertussis Tohama I","na":10,"nb":1,"a":[["Pfam%3APF03440","Aerolysin/Pertussis toxin (APT) domain"],["Pfam%3APF07411","Domain of unknown function (DUF1508)"],["Pfam%3APF25988","CyaD, alpha-helical hairpin domain"],["Pfam%3APF03497","Anthrax toxin LF subunit"],["Pfam%3APF02537","CrcB-like protein, Camphor Resistance (CrcB)"],["Pfam%3APF16970","Type-1 fimbrial protein, A"]],"b":[["amino_acids_and_peptides/alcaligin.yaml","alcaligin"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":10,"nb":1,"a":[["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF09081","Glucan 1,4-alpha-maltotetraohydrolase, domain C"],["Pfam%3APF09459","Ethylbenzene dehydrogenase"],["Pfam%3APF08406","CbbQ/NirQ/NorQ C-terminal"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"],["Pfam%3APF18793","Nitrous oxide reductase propeller repeat 2"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"UniProt:P0A749","l":"","na":10,"nb":1,"a":[["GO%3A0008760","UDP-N-acetylglucosamine 1-carboxyvinyltransferase activity"],["GO%3A0019277","UDP-N-acetylgalactosamine biosynthetic process"],["NCBIfam%3ANF006873","UDP-N-acetylglucosamine 1-carboxyvinyltransferase"],["NCBIfam%3ATIGR01072","UDP-N-acetylglucosamine 1-carboxyvinyltransferase"],["CDD%3Acd01555","UdpNAET"],["InterPro%3AIPR001986","Enolpyruvate transferase domain"]],"b":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"]]},{"id":"UniProt:P14679","l":"","na":10,"nb":1,"a":[["GO%3A0004503","tyrosinase activity"],["GO%3A0006726","eye pigment biosynthetic process"],["GO%3A0006583","melanin biosynthetic process from tyrosine"],["GO%3A0042438","melanin biosynthetic process"],["InterPro%3AIPR002227","Tyrosinase copper-binding domain"],["Pfam%3APF00264","Common central domain of tyrosinase"]],"b":[["polyketides/kojic-acid.yaml","kojic acid"]]},{"id":"UniProt:P15884","l":"","na":10,"nb":1,"a":[["ComplexPortal%3ACPX-11961","-"],["ComplexPortal%3ACPX-14266","-"],["ComplexPortal%3ACPX-14268","-"],["ComplexPortal%3ACPX-14282","-"],["ComplexPortal%3ACPX-21052","-"],["ComplexPortal%3ACPX-26210","-"]],"b":[["alkaloids/toxoflavin.yaml","toxoflavin"]]},{"id":"UniProt:P41240","l":"","na":10,"nb":1,"a":[["EC%3A2.7.10.4","[Src-family] C-terminal protein kinase"],["ComplexPortal%3ACPX-11775","-"],["ComplexPortal%3ACPX-18631","-"],["ComplexPortal%3ACPX-19439","-"],["GO%3A0042997","negative regulation of Golgi to plasma membrane protein transport"],["GO%3A0060368","regulation of Fc receptor mediated stimulatory signaling pathway"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":9,"nb":1,"a":[["Pfam%3APF07835","Bacterial aa3 type cytochrome c oxidase subunit IV"],["Pfam%3APF04828","Glutathione-dependent formaldehyde-activating enzyme"],["Pfam%3APF16448","LapD/MoxY periplasmic domain"],["Pfam%3APF17267","Family of unknown function (DUF5333)"],["Pfam%3APF17272","Family of unknown function (DUF5337)"],["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"]],"b":[["alkaloids/parabactin.yaml","parabactin"]]},{"id":"UniProt:P00811","l":"","na":9,"nb":1,"a":[["EC%3A3.5.2.6","beta-lactamase"],["RHEA%3A20401","a beta-lactam + H2O = a substituted beta-amino acid"],["GO%3A0017001","antibiotic catabolic process"],["NCBIfam%3ANF000185","BlaEC family class C beta-lactamase"],["NCBIfam%3ANF033085","class C beta-lactamase"],["NCBIfam%3ANF012173","CMY2/MIR/ACT/EC family class C beta-lactamase"]],"b":[["amino_acids_and_peptides/clavulanic-acid-2.yaml","clavulanic acid"]]},{"id":"UniProt:P23280","l":"","na":9,"nb":1,"a":[["ComplexPortal%3ACPX-11709","-"],["ComplexPortal%3ACPX-12376","-"],["ComplexPortal%3ACPX-12422","-"],["ComplexPortal%3ACPX-12445","-"],["ComplexPortal%3ACPX-13747","-"],["ComplexPortal%3ACPX-17694","-"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:P24666","l":"","na":9,"nb":1,"a":[["ComplexPortal%3ACPX-17111","-"],["ComplexPortal%3ACPX-18047","-"],["ComplexPortal%3ACPX-19744","-"],["ComplexPortal%3ACPX-26078","-"],["CDD%3Acd16343","LMWPTP"],["InterPro%3AIPR023485","Phosphotyrosine protein phosphatase I"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"UniProt:P43250","l":"","na":9,"nb":1,"a":[["ComplexPortal%3ACPX-15339","-"],["ComplexPortal%3ACPX-18479","-"],["ComplexPortal%3ACPX-21827","-"],["ComplexPortal%3ACPX-23485","-"],["ComplexPortal%3ACPX-26222","-"],["GO%3A0047696","beta-adrenergic receptor kinase activity"]],"b":[["carbohydrates/sangivamycin.yaml","sangivamycin"]]},{"id":"UniProt:Q14353","l":"","na":9,"nb":1,"a":[["ComplexPortal%3ACPX-17611","-"],["ComplexPortal%3ACPX-22207","-"],["ComplexPortal%3ACPX-25132","-"],["GO%3A0030731","guanidinoacetate N-methyltransferase activity"],["GO%3A0006601","creatine biosynthetic process"],["GO%3A0006600","creatine metabolic process"]],"b":[["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"UniProt:Q8JUX6","l":"","na":1,"nb":9,"a":[["proteintraitsmech%3ABIOLIP_LFO","LFO-binding site"]],"b":[["alkaloids/ergotamine.yaml","ergotamine"],["amino_acids_and_peptides/leupeptin-a.yaml","leupeptin A"],["amino_acids_and_peptides/linaclotide.yaml","linaclotide"],["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"],["polyketides/kojic-acid.yaml","kojic acid"],["polyketides/monactin.yaml","monactin"]]},{"id":"CHEBI:58515","l":"","na":8,"nb":1,"a":[["EC%3A1.14.11.55","ectoine hydroxylase"],["EC%3A3.5.4.44","ectoine hydrolase"],["EC%3A4.2.1.108","ectoine synthase"],["RHEA%3A17281","(2S)-4-acetamido-2-aminobutanoate = L-ectoine + H2O"],["RHEA%3A45740","L-ectoine + 2-oxoglutarate + O2 = 5-hydroxyectoine + succinate + CO2"],["RHEA%3A52304","L-ectoine + H2O = (2S)-2-acetamido-4-aminobutanoate"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":8,"nb":1,"a":[["Pfam%3APF01721","Class II bacteriocin"],["Pfam%3APF13700","Domain of unknown function (DUF4158)"],["Pfam%3APF07478","D-ala D-ala ligase C-terminus"],["Pfam%3APF01820","D-ala D-ala ligase N-terminus"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"],["PROSITE%3APS00843","D-alanine--D-alanine ligase signature 1"]],"b":[["amino_acids_and_peptides/enterocin-a.yaml","enterocin A"]]},{"id":"NCBITaxon:1703937","l":"Streptomyces sp. CB03234","na":1,"nb":8,"a":[["TED%3AAF-A0A1Q5LKM4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q5LKM4-F1-model_v4_TED02"]],"b":[["terpenoids/tiancilactone-a.yaml","tiancilactone A"],["terpenoids/tiancilactone-b.yaml","tiancilactone B"],["terpenoids/tiancilactone-c.yaml","tiancilactone C"],["terpenoids/tiancilactone-d.yaml","tiancilactone D"],["terpenoids/tiancilactone-e.yaml","tiancilactone E"],["terpenoids/tiancilactone-f.yaml","tiancilactone F"]]},{"id":"NCBITaxon:1908","l":"Streptomyces globisporus","na":1,"nb":8,"a":[["PROSITE%3APS00953","Glycosyl hydrolases family 25 active site signature"]],"b":[["polyketides/c-1027-chromophore.yaml","C-1027 chromophore"],["polyketides/c-1027.yaml","C-1027"],["polyketides/landomycin-a.yaml","landomycin A"],["polyketides/nonactin.yaml","nonactin"],["polyketides/prejadomycin.yaml","prejadomycin"],["polyketides/tetranactin.yaml","tetranactin"]]},{"id":"NCBITaxon:345341","l":"Kutzneria sp. 744","na":1,"nb":8,"a":[["TED%3AAF-W7SU68-F1-model_v4_TED01","TED novel fold AF-W7SU68-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/kutzneride-6.yaml","Kutzneride 6"],["unclassified/kutzneride-1.yaml","Kutzneride 1"],["unclassified/kutzneride-2.yaml","Kutzneride 2"],["unclassified/kutzneride-3.yaml","Kutzneride 3"],["unclassified/kutzneride-4.yaml","Kutzneride 4"],["unclassified/kutzneride-5.yaml","Kutzneride 5"]]},{"id":"NCBITaxon:380703","l":"Aeromonas hydrophila subsp. hydrophila ATCC 7966","na":8,"nb":1,"a":[["Pfam%3APF26341","tRNA 2-selenouridine synthase AAA domain"],["Pfam%3APF11890","Domain of unknown function (DUF3410)"],["Pfam%3APF11944","Protein of unknown function (DUF3461)"],["Pfam%3APF04356","Protein of unknown function (DUF489)"],["Pfam%3APF12563","Hemolytic toxin N terminal"],["Pfam%3APF04362","Bacterial Fe(2+) trafficking"]],"b":[["amino_acids_and_peptides/amonabactin-p-750.yaml","amonabactin P 750"]]},{"id":"NCBITaxon:40318","l":"Streptomyces nodosus","na":1,"nb":8,"a":[["TED%3AAF-A0A0B5DA96-F1-model_v4_TED01","TED novel fold AF-A0A0B5DA96-F1-model_v4_TED01"]],"b":[["alkaloids/melanin.yaml","melanin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/ectoine.yaml","ectoine"],["amino_acids_and_peptides/siamycin-i.yaml","siamycin I"],["fatty_acids/butyrolactone.yaml","γ-butyrolactone"]]},{"id":"NCBITaxon:420953","l":"Paraburkholderia megapolitana","na":1,"nb":8,"a":[["proteintraitsmech%3AELIFE109154_GrbD","GrbD-type graminine biosynthesis protein family"]],"b":[["amino_acids_and_peptides/megapolibactin-a.yaml","megapolibactin A"],["amino_acids_and_peptides/megapolibactin-acyc.yaml","megapolibactin Acyc"],["amino_acids_and_peptides/megapolibactin-b.yaml","megapolibactin B"],["amino_acids_and_peptides/megapolibactin-c.yaml","megapolibactin C"],["amino_acids_and_peptides/megapolibactin-d.yaml","megapolibactin D"],["amino_acids_and_peptides/megapolibactin-e.yaml","megapolibactin E"]]},{"id":"NCBITaxon:492670","l":"Bacillus velezensis","na":1,"nb":8,"a":[["TED%3AAF-A0A7S9EWF1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S9EWF1-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["polyketides/bacillaene.yaml","bacillaene"],["polyketides/difficidin.yaml","difficidin"],["polyketides/macrolactin-h.yaml","macrolactin H"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":1,"nb":8,"a":[["Pfam%3APF07335","Fungal chitosanase of glycosyl hydrolase group 75"]],"b":[["amino_acids_and_peptides/ferrichrome-2.yaml","ferrichrome"],["polyketides/2-acetyl-1-3-6-8-tetrahydroxynaphthalene.yaml","2-acetyl-1,3,6,8-tetrahydroxynaphthalene"],["polyketides/kojic-acid.yaml","kojic acid"],["terpenoids/aphidicolin.yaml","aphidicolin"],["unclassified/2-oxocyclopiazonic-acid.yaml","2-oxocyclopiazonic acid"],["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"UniProt:O96017","l":"","na":8,"nb":1,"a":[["ComplexPortal%3ACPX-16839","-"],["ComplexPortal%3ACPX-21166","-"],["GO%3A0044773","mitotic DNA damage checkpoint signaling"],["CDD%3Acd14084","STKc_Chk2"],["CDD%3Acd22666","FHA_CHK2"],["ELM%3AELME000425","DOC_PP2A_B56_1"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:Q8TD30","l":"","na":8,"nb":1,"a":[["ComplexPortal%3ACPX-11669","-"],["ComplexPortal%3ACPX-11684","-"],["ComplexPortal%3ACPX-18140","-"],["ComplexPortal%3ACPX-18547","-"],["ComplexPortal%3ACPX-25098","-"],["ComplexPortal%3ACPX-26258","-"]],"b":[["polyketides/monactin.yaml","monactin"]]},{"id":"CHEBI:16089","l":"","na":7,"nb":1,"a":[["EC%3A1.14.15.35","6-deoxyerythronolide B hydroxylase"],["EC%3A2.3.1.94","6-deoxyerythronolide-B synthase"],["RHEA%3A40299","6-deoxyerythronolide B + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = erythronolide B + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"],["RHEA%3A23068","6 (S)-methylmalonyl-CoA + propanoyl-CoA + 6 NADPH + 12 H(+) = 6-deoxyerythronolide B + 6 CO2 + 6 NADP(+) + 7 CoA + H2O"],["MCSA%3A694","6-deoxyerythronolide B hydroxylase"],["MCSA%3A602","6-deoxyerythronolide-B synthase"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"NCBITaxon:1314807","l":"Dendrothele bispora (strain CBS 962.96)","na":7,"nb":1,"a":[["TED%3AAF-A0A4S8L719-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S8L719-F1-model_v4_TED01"],["TED%3AAF-A0A4S8LBA1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4S8LBA1-F1-model_v4_TED02"],["TED%3AAF-A0A4S8KM73-F1-model_v4_TED02","TED novel fold AF-A0A4S8KM73-F1-model_v4_TED02"],["TED%3AAF-A0A4S8KTD4-F1-model_v4_TED01","TED novel fold AF-A0A4S8KTD4-F1-model_v4_TED01"],["TED%3AAF-A0A4S8LE48-F1-model_v4_TED01","TED novel fold AF-A0A4S8LE48-F1-model_v4_TED01"],["TED%3AAF-A0A4S8MMV1-F1-model_v4_TED02","TED novel fold AF-A0A4S8MMV1-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/dendrothelin-a.yaml","dendrothelin A"]]},{"id":"NCBITaxon:391037","l":"Salinispora arenicola CNS-205","na":1,"nb":7,"a":[["Pfam%3APF12072","RNase Y N-terminal region"]],"b":[["alkaloids/lymphostin.yaml","lymphostin"],["alkaloids/lymphostinol.yaml","lymphostinol"],["alkaloids/neolymphostin-b.yaml","neolymphostin b"],["alkaloids/neolymphostinol-b.yaml","neolymphostinol B"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/cyclomarin-d.yaml","cyclomarin D"]]},{"id":"NCBITaxon:405948","l":"Saccharopolyspora erythraea NRRL 2338","na":1,"nb":7,"a":[["Pfam%3APF21036","Erythromycin biosynthesis protein CIII-like, N-terminal domain"]],"b":[["amino_acids_and_peptides/erythrochelin.yaml","erythrochelin"],["polyketides/erythromycin-a.yaml","erythromycin A"],["polyketides/erythromycin-b.yaml","erythromycin B"],["polyketides/erythromycin-c.yaml","erythromycin C"],["polyketides/erythromycin-d.yaml","erythromycin D"],["polyketides/flaviolin.yaml","flaviolin"]]},{"id":"NCBITaxon:5077","l":"Penicillium citrinum","na":1,"nb":7,"a":[["PROSITE%3APS00876","Indoleamine 2,3-dioxygenase signature 1"]],"b":[["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["polyketides/citrinin.yaml","(+)-citrinin"],["polyketides/mevinic-acid.yaml","mevinic acid"],["unclassified/orcinol.yaml","orcinol"],["unclassified/penigainamide-a.yaml","penigainamide A"],["unclassified/penigainamide-b.yaml","penigainamide B"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":7,"nb":1,"a":[["Pfam%3APF11766","Agglutinin-like protein, N-terminal domain"],["Pfam%3APF16856","Cell division control protein 4 dimerisation domain"],["Pfam%3APF18325","Fatty acid synthase subunit alpha Acyl carrier domain"],["Pfam%3APF18314","Fatty acid synthase type I helical domain"],["Pfam%3APF17828","N-terminal domain in fatty acid synthase subunit beta"],["Pfam%3APF05388","Carboxypeptidase Y pro-peptide"]],"b":[["unclassified/antimycin-a1b.yaml","antimycin A1B"]]},{"id":"NCBITaxon:5580","l":"Aureobasidium pullulans","na":7,"nb":1,"a":[["TED%3AAF-A0A4S8XR15-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S8XR15-F1-model_v4_TED01"],["TED%3AAF-A0A4S8YVB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S8YVB9-F1-model_v4_TED01"],["TED%3AAF-A0A4S9KUA9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S9KUA9-F1-model_v4_TED01"],["TED%3AAF-A0A4T0BHY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4T0BHY6-F1-model_v4_TED01"],["TED%3AAF-A0A4S9MB45-F1-model_v4_TED01","TED novel fold AF-A0A4S9MB45-F1-model_v4_TED01"],["TED%3AAF-A0A4S9RE93-F1-model_v4_TED01","TED novel fold AF-A0A4S9RE93-F1-model_v4_TED01"]],"b":[["unclassified/abt1.yaml","AbT1"]]},{"id":"NCBITaxon:5599","l":"Alternaria alternata","na":1,"nb":7,"a":[["Pfam%3APF16541","Alternaria alternata allergen 1"]],"b":[["alkaloids/ak-toxin-i.yaml","AK-toxin I"],["alkaloids/dimethylcoprogen.yaml","dimethylcoprogen"],["amino_acids_and_peptides/am-toxin.yaml","AM-toxin"],["polyketides/act-toxin-ii.yaml","ACT-Toxin II"],["polyketides/unii-yc2q1o94pt.yaml","UNII-YC2Q1O94PT"],["unclassified/af-toxin.yaml","AF-toxin"]]},{"id":"NCBITaxon:672","l":"Vibrio vulnificus","na":7,"nb":1,"a":[["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF08021","Siderophore-interacting FAD-binding domain"],["Pfam%3APF11575","FhuF 2Fe-2S C-terminal domain"],["Pfam%3APF27349","IcsB middle domain"],["Pfam%3APF21735","C-terminal repeat from RTX toxins"],["Pfam%3APF07634","RtxA repeat"]],"b":[["alkaloids/vulnibactin.yaml","vulnibactin"]]},{"id":"NCBITaxon:67339","l":"Streptomyces orinoci","na":1,"nb":7,"a":[["Pfam%3APF09277","Erythronolide synthase, docking"]],"b":[["polyketides/aureothin.yaml","aureothin"],["polyketides/orinocin.yaml","orinocin"],["polyketides/spectinabilin.yaml","spectinabilin"],["terpenoids/snf4435c.yaml","SNF4435C"],["terpenoids/snf4435d.yaml","SNF4435D"],["unclassified/neoantimycin-2.yaml","neoantimycin"]]},{"id":"NCBITaxon:68280","l":"Streptomyces violaceusniger","na":1,"nb":7,"a":[["TED%3AAF-A0A0X3VKA0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0X3VKA0-F1-model_v4_TED01"]],"b":[["fatty_acids/desulfoclethramycin.yaml","desulfoclethramycin"],["polyketides/be-24566b.yaml","BE-24566B"],["polyketides/elaiophylin.yaml","elaiophylin"],["polyketides/meridamycin-2.yaml","meridamycin"],["polyketides/nigericin.yaml","nigericin"],["terpenoids/2-methylisoborneol.yaml","2-methylisoborneol"]]},{"id":"UniProt:P27296","l":"","na":7,"nb":1,"a":[["GO%3A0033677","DNA/RNA helicase activity"],["NCBIfam%3ANF008729","ATP-dependent DNA helicase DinG"],["InterPro%3AIPR006555","ATP-dependent helicase, C-terminal"],["InterPro%3AIPR006554","Helicase-like, DEXD box c2 type"],["InterPro%3AIPR014013","Helicase superfamily 1/2, ATP-binding domain, DinG/Rad3-type"],["InterPro%3AIPR010614","RAD3-like helicase, DEAD"]],"b":[["unclassified/telomestatin.yaml","telomestatin"]]},{"id":"UniProt:P50135","l":"","na":7,"nb":1,"a":[["GO%3A0046539","histamine N-methyltransferase activity"],["GO%3A0001695","histamine catabolic process"],["GO%3A0001692","histamine metabolic process"],["GO%3A0006548","L-histidine catabolic process"],["Pfam%3APF13489","Methyltransferase domain"],["PROSITE%3APS51597","Histamine N-methyltransferase (EC 2.1.1.8) family profile"]],"b":[["unclassified/6ar-11as-11br-10-acetyl-11-hydroxy-7-7-dimethyl-2-6-6a-7-11a-11b-hexahydro-9h-py.yaml","(6aR,11aS,11bR)-10-acetyl-11-hydroxy-7,7-dimethyl-2,6,6a,7,11a,11b-hexahydro-9H-pyrrolo[1',2':2,3]isoindolo[4,5,6-cd]indol-9-one"]]},{"id":"UniProt:Q8IZQ5","l":"","na":7,"nb":1,"a":[["ComplexPortal%3ACPX-14418","-"],["ComplexPortal%3ACPX-17411","-"],["ComplexPortal%3ACPX-17423","-"],["ComplexPortal%3ACPX-17969","-"],["ComplexPortal%3ACPX-19650","-"],["ComplexPortal%3ACPX-22629","-"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"UniProt:Q92731","l":"","na":7,"nb":1,"a":[["GO%3A0030284","nuclear estrogen receptor activity"],["CDD%3Acd07171","NR_DBD_ER"],["CDD%3Acd06949","NR_LBD_ER"],["InterPro%3AIPR021064","Estrogen receptor beta-like, N-terminal"],["Pfam%3APF12497","Estrogen receptor beta"],["ELM%3AELME000053","MOD_GSK3_1"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"UniProt:Q96LB1","l":"","na":7,"nb":1,"a":[["GO%3A0004985","G protein-coupled opioid receptor activity"],["GO%3A1990595","mast cell secretagogue receptor activity"],["GO%3A0045576","mast cell activation"],["CDD%3Acd15106","7tmA_MrgprX-like"],["InterPro%3AIPR017452","GPCR, rhodopsin-like, 7TM"],["PROSITE%3APS50262","G-protein coupled receptors family 1 profile"]],"b":[["alkaloids/thebaine.yaml","thebaine"]]},{"id":"UniProt:Q9FUZ2","l":"","na":7,"nb":1,"a":[["GO%3A0042586","peptide deformylase activity"],["NCBIfam%3ANF001159","peptide deformylase"],["NCBIfam%3ATIGR00079","peptide deformylase"],["CDD%3Acd00487","Pep_deformylase"],["Pfam%3APF01327","Polypeptide deformylase"],["InterPro%3AIPR036821","Peptide deformylase superfamily"]],"b":[["amino_acids_and_peptides/actinonin.yaml","actinonin"]]},{"id":"CHEBI:16536","l":"orcinol","na":6,"nb":1,"a":[["EC%3A1.14.13.6","orcinol 2-monooxygenase"],["EC%3A4.1.1.58","orsellinate decarboxylase"],["RHEA%3A63072","3 malonyl-CoA + acetyl-CoA + 3 H(+) = orcinol + 4 CO2 + 4 CoA"],["RHEA%3A19601","orcinol + NADH + O2 + H(+) = 2,3,5-trihydroxytoluene + NAD(+) + H2O"],["RHEA%3A80563","orcinol + S-adenosyl-L-methionine = 3-methoxy-5-methylphenol + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A16733","orsellinate + H(+) = orcinol + CO2"]],"b":[["unclassified/orcinol.yaml","orcinol"]]},{"id":"CHEBI:18365","l":"naphthalene-1,3,6,8-tetrol","na":6,"nb":1,"a":[["EC%3A1.1.1.252","tetrahydroxynaphthalene reductase"],["EC%3A2.3.1.233","1,3,6,8-tetrahydroxynaphthalene synthase"],["RHEA%3A41524","5 malonyl-CoA + 5 H(+) = naphthalene-1,3,6,8-tetrol + 5 CO2 + 5 CoA + H2O"],["RHEA%3A62700","naphtopyrone YWA1 + H2O = naphthalene-1,3,6,8-tetrol + acetoacetate + H(+)"],["RHEA%3A21908","scytalone + NADP(+) = naphthalene-1,3,6,8-tetrol + NADPH + H(+)"],["MCSA%3A891","Tetrahydroxynaphthalene reductase"]],"b":[["polyketides/naphthalene-1-3-6-8-tetrol.yaml","naphthalene-1,3,6,8-tetrol"]]},{"id":"CHEBI:63677","l":"","na":6,"nb":1,"a":[["EC%3A1.14.13.154","erythromycin 12 hydroxylase"],["EC%3A2.1.1.254","erythromycin 3'-O-methyltransferase"],["EC%3A2.4.1.278","3-alpha-mycarosylerythronolide B desosaminyl transferase"],["RHEA%3A32091","3-O-alpha-L-mycarosylerythronolide B + dTDP-alpha-D-desosamine = erythromycin D + dTDP + H(+)"],["RHEA%3A32631","erythromycin D + NADPH + O2 + H(+) = erythromycin C + NADP(+) + H2O"],["RHEA%3A32651","erythromycin D + S-adenosyl-L-methionine = erythromycin B + S-adenosyl-L-homocysteine + H(+)"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"NCBITaxon:128403","l":"Scytonema hofmannii PCC 7110","na":1,"nb":6,"a":[["TED%3AAF-A0A139X3P3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A139X3P3-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/scytocyclamide-a.yaml","scytocyclamide A"],["amino_acids_and_peptides/scytocyclamide-a2.yaml","scytocyclamide A2"],["amino_acids_and_peptides/scytocyclamide-b.yaml","scytocyclamide B"],["amino_acids_and_peptides/scytocyclamide-b2.yaml","scytocyclamide B2"],["amino_acids_and_peptides/scytocyclamide-b3.yaml","scytocyclamide B3"],["amino_acids_and_peptides/scytocyclamide-c.yaml","scytocyclamide C"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":6,"nb":1,"a":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF10779","Haemolysin XhlA"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF08181","DegQ (SacQ) family"],["Pfam%3APF08057","Erythromycin resistance leader peptide"],["Pfam%3APF14867","Lantibiotic alpha"]],"b":[["amino_acids_and_peptides/bacitracin.yaml","bacitracin"]]},{"id":"NCBITaxon:1877","l":"Micromonospora echinospora","na":1,"nb":6,"a":[["Pfam%3APF07091","Ribosomal RNA methyltransferase (FmrO)"]],"b":[["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/gentamicin-2.yaml","gentamicin"],["carbohydrates/gentamicin.yaml","gentamicin"],["polyketides/1-6-dihydro-8-propylanthraquinone.yaml","1,6-dihydro-8-propylanthraquinone"],["polyketides/calicheamicin.yaml","calicheamicin"],["polyketides/tiacumicin-b.yaml","tiacumicin B"]]},{"id":"NCBITaxon:1920","l":"Streptomyces nigrescens","na":1,"nb":6,"a":[["Pfam%3APF03995","Peptidase inhibitor family I36"]],"b":[["alkaloids/5athq-10a.yaml","5aTHQ-10a"],["alkaloids/5athq-9i.yaml","5aTHQ-9i"],["alkaloids/5athq-9n.yaml","5aTHQ-9n"],["alkaloids/stams-9i.yaml","STAMs-9i"],["alkaloids/stams-9n.yaml","STAMs-9n"],["polyketides/phoslactomycin-b.yaml","phoslactomycin B"]]},{"id":"NCBITaxon:1930","l":"Streptomyces scabiei","na":1,"nb":6,"a":[["TED%3AAF-A0A086GLG9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A086GLG9-F1-model_v4_TED01"]],"b":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"],["amino_acids_and_peptides/thaxtomin-c.yaml","thaxtomin C"],["polyketides/oronofacic-acid.yaml","oronofacic acid"],["unclassified/n-coronafacoyl-l-isoleucine.yaml","N-coronafacoyl-L-isoleucine"],["unclassified/thaxtomin-a.yaml","thaxtomin A"],["unclassified/thaxtomin-b.yaml","thaxtomin B"]]},{"id":"NCBITaxon:278992","l":"Streptomyces ambofaciens ATCC 23877","na":1,"nb":6,"a":[["Pfam%3APF00553","Cellulose binding domain"]],"b":[["alkaloids/congocidine.yaml","congocidine"],["polyketides/spiramycin.yaml","spiramycin"],["polyketides/stambomycin-a.yaml","stambomycin A"],["polyketides/stambomycin-b.yaml","stambomycin B"],["polyketides/stambomycin-c.yaml","stambomycin C"],["polyketides/stambomycin-d.yaml","stambomycin D"]]},{"id":"NCBITaxon:4097","l":"Nicotiana tabacum","na":6,"nb":1,"a":[["Pfam%3APF02041","Auxin binding protein"],["Pfam%3APF12481","Aluminium induced protein"],["Pfam%3APF11995","Domain of unknown function (DUF3490)"],["Pfam%3APF07172","Glycine rich protein family"],["PROSITE%3APS00157","Ribulose bisphosphate carboxylase large chain active site"],["TED%3AAF-A0A1S4A696-F1-model_v4_TED01","TED novel fold AF-A0A1S4A696-F1-model_v4_TED01"]],"b":[["terpenoids/capsidiol.yaml","capsidiol"]]},{"id":"NCBITaxon:46472","l":"Aspergillus versicolor","na":1,"nb":6,"a":[["Pfam%3APF13810","Domain of unknown function (DUF4185)"]],"b":[["alkaloids/psychrophilin-f.yaml","psychrophilin F"],["alkaloids/psychrophilin-g.yaml","psychrophilin G"],["polyketides/sterigmatocystin.yaml","sterigmatocystin"],["unclassified/chevalone-e.yaml","chevalone E"],["unclassified/notoamide-a.yaml","notoamide A"],["unclassified/psychrophilin-h.yaml","psychrophilin H"]]},{"id":"NCBITaxon:5082","l":"Penicillium roqueforti","na":1,"nb":6,"a":[["Pfam%3APF07573","Nitrogen regulatory protein AreA N terminus"]],"b":[["alkaloids/mycophenolic-acid-2.yaml","mycophenolic acid"],["polyketides/mycophenolic-acid.yaml","mycophenolic acid"],["terpenoids/pr-toxin.yaml","PR-toxin"],["unclassified/andrastin-a.yaml","andrastin A"],["unclassified/roquefortine-c.yaml","roquefortine C"],["unclassified/roquefortine-d.yaml","roquefortine D"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":6,"nb":1,"a":[["IDPO%3A0000037","molecular recognition display site"],["Pfam%3APF05403","Plasmodium histidine-rich protein (HRPII/III)"],["Pfam%3APF17986","EMP3-KAHRP-like N-terminal domain"],["Pfam%3APF03805","Cytoadherence-linked asexual protein"],["Pfam%3APF06589","Circumsporozoite-related antigen (CRA)"],["TED%3AAF-Q9U431-F1-model_v4_TED01","TED novel fold AF-Q9U431-F1-model_v4_TED01"]],"b":[["alkaloids/congocidine.yaml","congocidine"]]},{"id":"NCBITaxon:62977","l":"Acinetobacter baylyi ADP1","na":6,"nb":1,"a":[["Pfam%3APF03594","Benzoate membrane transport protein"],["Pfam%3APF27541","Citrate utilization protein B"],["Pfam%3APF05232","Chlorhexidine efflux transporter"],["PROSITE%3APS00083","Intradiol ring-cleavage dioxygenases signature"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"],["Pfam%3APF11846","Virulence factor membrane-bound polymerase, C-terminal"]],"b":[["amino_acids_and_peptides/fimsbactin-a.yaml","fimsbactin A"]]},{"id":"NCBITaxon:78245","l":"Xanthobacter versatilis","na":6,"nb":1,"a":[["Pfam%3APF08882","Acetone carboxylase gamma subunit"],["Pfam%3APF19278","Hydantoinase/oxoprolinase C-terminal domain"],["Pfam%3APF05378","Hydantoinase/oxoprolinase N-terminal region"],["Pfam%3APF01968","Hydantoinase/oxoprolinase"],["Pfam%3APF02538","Hydantoinase B/oxoprolinase"],["TED%3AAF-A7IL68-F1-model_v4_TED01","TED highly-symmetric fold AF-A7IL68-F1-model_v4_TED01"]],"b":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":6,"nb":1,"a":[["Pfam%3APF16376","N-terminal domain of fragilysin"],["TED%3AAF-A0A412XR06-F1-model_v4_TED03","TED novel fold AF-A0A412XR06-F1-model_v4_TED03"],["TED%3AAF-A0A4V1EUI2-F1-model_v4_TED02","TED novel fold AF-A0A4V1EUI2-F1-model_v4_TED02"],["TED%3AAF-A0A5C6IXH5-F1-model_v4_TED01","TED novel fold AF-A0A5C6IXH5-F1-model_v4_TED01"],["TED%3AAF-A0A5C6L6G9-F1-model_v4_TED02","TED novel fold AF-A0A5C6L6G9-F1-model_v4_TED02"],["TED%3AAF-A0A642KY52-F1-model_v4_TED01","TED novel fold AF-A0A642KY52-F1-model_v4_TED01"]],"b":[["fatty_acids/galactosylceramide.yaml","α-galactosylceramide"]]},{"id":"NCBITaxon:882378","l":"Mycetohabitans rhizoxinica HKI 454","na":1,"nb":6,"a":[["Pfam%3APF01983","Guanylyl transferase CofC like"]],"b":[["amino_acids_and_peptides/endopyrrole-b.yaml","endopyrrole B"],["amino_acids_and_peptides/holrhizin-a.yaml","holrhizin A"],["amino_acids_and_peptides/holrhizin-b.yaml","holrhizin B"],["amino_acids_and_peptides/holrhizin-c.yaml","holrhizin C"],["amino_acids_and_peptides/holrhizin-d.yaml","holrhizin D"],["unclassified/endopyrrole-a.yaml","endopyrrole A"]]},{"id":"UniProt:Q9XUB2","l":"","na":6,"nb":1,"a":[["GO%3A0008187","poly-pyrimidine tract binding"],["InterPro%3AIPR000571","Zinc finger, CCCH-type"],["Pfam%3APF00642","Zinc finger C-x8-C-x5-C-x3-H type (and similar)"],["InterPro%3AIPR036855","Zinc finger, CCCH-type superfamily"],["PROSITE%3APS50103","Zinc finger C3H1-type profile"],["CATH%3A4.10.1000.10","Zinc finger, CCCH-type"]],"b":[["polyketides/pyrophen.yaml","pyrophen"]]},{"id":"CHEBI:27977","l":"","na":5,"nb":1,"a":[["EC%3A1.14.15.35","6-deoxyerythronolide B hydroxylase"],["EC%3A2.4.1.328","erythronolide mycarosyltransferase"],["RHEA%3A40299","6-deoxyerythronolide B + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = erythronolide B + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"],["RHEA%3A41576","dTDP-beta-L-mycarose + erythronolide B = 3-O-alpha-L-mycarosylerythronolide B + dTDP + H(+)"],["MCSA%3A694","6-deoxyerythronolide B hydroxylase"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"CHEBI:58572","l":"N-[(5S)-5-ammonio-5-carboxylatopentanoyl]-L-cysteinyl-D-valinate","na":5,"nb":1,"a":[["EC%3A1.21.3.1","isopenicillin-N synthase"],["EC%3A6.3.2.26","N-(5-amino-5-carboxypentanoyl)-L-cysteinyl-D-valine synthase"],["RHEA%3A23196","L-2-aminoadipate + L-valine + L-cysteine + 3 ATP + H2O = N-[(5S)-5-amino-5-carboxypentanoyl]-L-cysteinyl-D-valine + 3 AMP + 3 diphosphate + 3 H(+)"],["RHEA%3A22428","N-[(5S)-5-amino-5-carboxypentanoyl]-L-cysteinyl-D-valine + O2 = isopenicillin N + 2 H2O"],["MCSA%3A145","isopenicillin-N synthase"]],"b":[["amino_acids_and_peptides/n-5s-5-ammonio-5-carboxylatopentanoyl-l-cysteinyl-d-valinate.yaml","N-[(5S)-5-ammonio-5-carboxylatopentanoyl]-L-cysteinyl-D-valinate"]]},{"id":"CHEBI:62219","l":"2-heptyl-4-quinolone","na":5,"nb":1,"a":[["EC%3A1.14.13.182","2-heptyl-3-hydroxy-4(1H)-quinolone synthase"],["EC%3A2.3.1.230","2-heptyl-4(1H)-quinolone synthase"],["RHEA%3A50408","1-(2-aminophenyl)decane-1,3-dione = 2-heptyl-4(1H)-quinolone + H2O"],["RHEA%3A50396","(2-aminobenzoyl)acetate + octanoyl-CoA + H(+) = 2-heptyl-4(1H)-quinolone + CO2 + CoA + H2O"],["RHEA%3A37871","2-heptyl-4(1H)-quinolone + NADH + O2 + H(+) = 2-heptyl-3-hydroxy-4(1H)-quinolone + NAD(+) + H2O"]],"b":[["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"]]},{"id":"CHEBI:90888","l":"aurachin C","na":5,"nb":1,"a":[["EC%3A1.14.13.222","aurachin C monooxygenase/isomerase"],["RHEA%3A49000","aurachin C + NADH + O2 + H(+) = 4-hydroxy-2-methyl-3-oxo-4-[(2E,6E)-farnesyl]-3,4-dihydroquinoline 1-oxide + NAD(+) + H2O"],["RHEA%3A49012","aurachin C + NADH + O2 + H(+) = aurachin C epoxide + NAD(+) + H2O"],["RHEA%3A49004","aurachin C + NADPH + O2 + H(+) = 4-hydroxy-2-methyl-3-oxo-4-[(2E,6E)-farnesyl]-3,4-dihydroquinoline 1-oxide + NADP(+) + H2O"],["RHEA%3A49008","aurachin C + NADPH + O2 + H(+) = aurachin C epoxide + NADP(+) + H2O"]],"b":[["alkaloids/aurachin-c.yaml","aurachin C"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":5,"nb":1,"a":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF02963","Restriction endonuclease EcoRI"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["PROSITE%3APS00974","Mannitol dehydrogenases signature"],["PROSITE%3APS00567","Phosphoribulokinase signature"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:1110502","l":"Tistrella mobilis KA081020-065","na":1,"nb":5,"a":[["TED%3AAF-I3TTD1-F1-model_v4_TED03","TED novel fold AF-I3TTD1-F1-model_v4_TED03"]],"b":[["unclassified/dehydrodidemnin-b-aplidine.yaml","dehydrodidemnin B (aplidine)"],["unclassified/didemnin-b.yaml","didemnin B"],["unclassified/didemnin-x.yaml","didemnin X"],["unclassified/didemnin-y.yaml","didemnin Y"],["unclassified/nordidemnin-b.yaml","nordidemnin B"]]},{"id":"NCBITaxon:1437453","l":"Streptomyces leeuwenhoekii","na":1,"nb":5,"a":[["TED%3AAF-A0A0F7VQ57-F1-model_v4_TED03","TED novel fold AF-A0A0F7VQ57-F1-model_v4_TED03"]],"b":[["amino_acids_and_peptides/leepeptin.yaml","Leepeptin"],["polyketides/chaxamycin-a.yaml","chaxamycin A"],["polyketides/chaxamycin-b.yaml","chaxamycin B"],["polyketides/chaxamycin-c.yaml","chaxamycin C"],["polyketides/chaxamycin-d.yaml","chaxamycin D"]]},{"id":"NCBITaxon:1465","l":"Brevibacillus laterosporus","na":1,"nb":5,"a":[["TED%3AAF-A0A0F7BZ24-F1-model_v4_TED01","TED novel fold AF-A0A0F7BZ24-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/bogorol-a.yaml","bogorol A"],["amino_acids_and_peptides/tauramamide.yaml","tauramamide"],["shikimates_and_phenylpropanoids/basiliskamide-a.yaml","Basiliskamide A"],["unclassified/basiliskamide-b.yaml","Basiliskamide B"],["unclassified/laterocidine.yaml","laterocidine"]]},{"id":"NCBITaxon:176275","l":"Beauveria bassiana","na":1,"nb":5,"a":[["TED%3AAF-A0A2S7Y157-F1-model_v4_TED02","TED novel fold AF-A0A2S7Y157-F1-model_v4_TED02"]],"b":[["alkaloids/desmethylbassianin.yaml","desmethylbassianin"],["alkaloids/tenellin.yaml","tenellin"],["polyketides/oosporein.yaml","oosporein"],["unclassified/bassianolide.yaml","bassianolide"],["unclassified/beauvericin.yaml","beauvericin"]]},{"id":"NCBITaxon:220664","l":"Pseudomonas protegens Pf-5","na":1,"nb":5,"a":[["Pfam%3APF18089","DAPG hydrolase PhiG domain"]],"b":[["alkaloids/pyoluteorin.yaml","pyoluteorin"],["polyketides/2-4-diacetylphloroglucinol.yaml","2,4-diacetylphloroglucinol"],["unclassified/orfamide-a.yaml","orfamide A"],["unclassified/orfamide-c.yaml","orfamide C"],["unclassified/pf-5-pyoverdine.yaml","Pf-5 pyoverdine"]]},{"id":"NCBITaxon:29303","l":"Streptantibioticus cattleyicolor","na":1,"nb":5,"a":[["Pfam%3APF22636","Fluoroacetyl-CoA-specific thioesterase"]],"b":[["amino_acids_and_peptides/cattlecin.yaml","cattlecin"],["amino_acids_and_peptides/clavulanic-acid.yaml","clavulanic acid"],["amino_acids_and_peptides/ethynylserine.yaml","β-ethynylserine"],["amino_acids_and_peptides/thienamycin.yaml","thienamycin"],["terpenoids/cattleyene.yaml","cattleyene"]]},{"id":"NCBITaxon:380704","l":"Aspergillus niger ATCC 1015","na":1,"nb":5,"a":[["Pfam%3APF28387","BfoA N-terminal domain"]],"b":[["polyketides/azanigerone-a.yaml","azanigerone A"],["polyketides/campyrone-b.yaml","campyrone B"],["polyketides/pyranonigrin-e.yaml","pyranonigrin E"],["polyketides/pyrophen.yaml","pyrophen"],["terpenoids/yanuthone-d.yaml","yanuthone D"]]},{"id":"NCBITaxon:384","l":"Rhizobium leguminosarum","na":5,"nb":1,"a":[["Pfam%3APF10931","Protein of unknown function (DUF2735)"],["TED%3AAF-A0A1B1C3F3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1B1C3F3-F1-model_v4_TED02"],["TED%3AAF-A0A4Q8XNE1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q8XNE1-F1-model_v4_TED01"],["TED%3AAF-A0A6P0B3F8-F1-model_v4_TED02","TED novel fold AF-A0A6P0B3F8-F1-model_v4_TED02"],["TED%3AAF-A0A6P0DM15-F1-model_v4_TED01","TED novel fold AF-A0A6P0DM15-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/vicibactin.yaml","vicibactin"]]},{"id":"NCBITaxon:4513","l":"Hordeum vulgare","na":5,"nb":1,"a":[["Pfam%3APF20241","Domain of unknown function (DUF6598)"],["PROSITE%3APS00771","Barwin domain signature 1"],["PROSITE%3APS00426","Cereal trypsin/alpha-amylase inhibitors family signature"],["PROSITE%3APS00725","Germin family signature"],["PROSITE%3APS00431","Small hydrophilic plant seed proteins signature"]],"b":[["unclassified/roquefortine-c.yaml","roquefortine C"]]},{"id":"NCBITaxon:47427","l":"Armillaria gallica","na":5,"nb":1,"a":[["TED%3AAF-A0A2H3CFH3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H3CFH3-F1-model_v4_TED02"],["TED%3AAF-A0A2H3DFZ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H3DFZ3-F1-model_v4_TED01"],["TED%3AAF-A0A2H3DTE1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H3DTE1-F1-model_v4_TED02"],["TED%3AAF-A0A2H3E1R0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H3E1R0-F1-model_v4_TED02"],["TED%3AAF-A0A2H3CX67-F1-model_v4_TED02","TED novel fold AF-A0A2H3CX67-F1-model_v4_TED02"]],"b":[["terpenoids/8-hydroxy-6-protoilludene.yaml","8α-hydroxy-6-protoilludene"]]},{"id":"NCBITaxon:5454","l":"Ascochyta rabiei","na":5,"nb":1,"a":[["TED%3AAF-A0A162YC52-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A162YC52-F1-model_v4_TED01"],["TED%3AAF-A0A163JCD7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A163JCD7-F1-model_v4_TED01"],["TED%3AAF-A0A163LJZ7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A163LJZ7-F1-model_v4_TED02"],["TED%3AAF-A0A163LQ36-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A163LQ36-F1-model_v4_TED01"],["TED%3AAF-A0A163M9G4-F1-model_v4_TED01","TED novel fold AF-A0A163M9G4-F1-model_v4_TED01"]],"b":[["polyketides/solanapyrone-a.yaml","solanapyrone A"]]},{"id":"UniProt:P22629","l":"","na":5,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_4IR","4IR-binding site"],["proteintraitsmech%3ABIOLIP_HL9","HL9-binding site"],["proteintraitsmech%3ABIOLIP_ZOE","ZOE-binding site"],["proteintraitsmech%3AMETALPDB_RH_DINUCLEAR","dinuclear rhodium site"],["proteintraitsmech%3AMETALPDB_CO_TETRANUCLEAR","tetranuclear cobalt site"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"CHEBI:140434","l":"3-[(Z)-2-isocyanovinyl]indole","na":4,"nb":1,"a":[["EC%3A1.14.20.11","3-[(Z)-2-isocyanoethenyl]-1H-indole synthase"],["EC%3A2.5.1.146","3-geranyl-3-[(Z)-2-isocyanoethenyl]indole synthase"],["RHEA%3A56700","(2S)-3-(1H-indol-3-yl)-2-isocyanopropanoate + 2-oxoglutarate + O2 + H(+) = 3-[(Z)-2-isocyanoethenyl]-1H-indole + succinate + 2 CO2 + H2O"],["RHEA%3A17349","3-[(Z)-2-isocyanoethenyl]-1H-indole + (2E)-geranyl diphosphate = 3-geranyl-3-[(Z)-2-isocyanoethenyl]-1H-indole + diphosphate"]],"b":[["alkaloids/3-z-2-isocyanovinyl-indole.yaml","3-[(Z)-2-isocyanovinyl]indole"]]},{"id":"CHEBI:140442","l":"12-epi-fischerindole U isonitrile","na":4,"nb":1,"a":[["EC%3A1.14.20.14","hapalindole-type alkaloid chlorinase"],["EC%3A5.5.1.33","12-epi-fischerindole U synthase"],["RHEA%3A56764","12-epi-fischerindole U + chloride + 2-oxoglutarate + O2 + H(+) = 12-epi-fischerindole G + succinate + CO2 + H2O"],["RHEA%3A56456","3-geranyl-3-[(Z)-2-isocyanoethenyl]-1H-indole = 12-epi-fischerindole U"]],"b":[["alkaloids/12-epi-fischerindole-u-isonitrile.yaml","12-epi-fischerindole U isonitrile"]]},{"id":"CHEBI:155910","l":"aculene D","na":4,"nb":1,"a":[["RHEA%3A65112","aculene D + 2-oxoglutarate + O2 = aculene C + succinate + CO2 + H2O"],["RHEA%3A65104","aculene D + L-prolyl-[peptidyl-carrier protein] = aculene B + holo-[peptidyl-carrier protein]"],["RHEA%3A65084","asperaculane E + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = aculene D + 2 oxidized [NADPH--hemoprotein reductase] + CO2 + 3 H2O + H(+)"],["RHEA%3A65092","asperaculane G + reduced [NADPH--hemoprotein reductase] + O2 = aculene D + oxidized [NADPH--hemoprotein reductase] + CO2 + 2 H2O"]],"b":[["terpenoids/aculene-d.yaml","aculene D"]]},{"id":"CHEBI:16368","l":"6-hydroxymellein","na":4,"nb":1,"a":[["EC%3A2.1.1.108","6-hydroxymellein O-methyltransferase"],["RHEA%3A65248","5 malonyl-CoA + AH2 + 5 H(+) = 6-hydroxymellein + A + 5 CO2 + 5 CoA + H2O"],["RHEA%3A65252","6-hydroxymellein + (2E,6E)-farnesyl diphosphate = verruculide C + diphosphate"],["RHEA%3A15201","6-hydroxymellein + S-adenosyl-L-methionine = 6-methoxymellein + S-adenosyl-L-homocysteine + H(+)"]],"b":[["shikimates_and_phenylpropanoids/6-hydroxymellein.yaml","6-hydroxymellein"]]},{"id":"CHEBI:18048","l":"DIMBOA","na":4,"nb":1,"a":[["EC%3A2.4.1.202","2,4-dihydroxy-7-methoxy-2H-1,4-benzoxazin-3(4H)-one 2-D- glucosyltransferase"],["EC%3A3.2.1.182","4-hydroxy-7-methoxy-3-oxo-3,4-dihydro-2H-1,4-benzoxazin-2-yl glucoside beta-D-glucosidase"],["RHEA%3A33975","DIMBOA beta-D-glucoside + H2O = DIMBOA + D-glucose"],["RHEA%3A15541","DIMBOA + UDP-alpha-D-glucose = DIMBOA beta-D-glucoside + UDP + H(+)"]],"b":[["alkaloids/dimboa.yaml","DIMBOA"]]},{"id":"CHEBI:18227","l":"sterigmatocystin","na":4,"nb":1,"a":[["EC%3A2.1.1.109","demethylsterigmatocystin 6-O-methyltransferase"],["EC%3A2.1.1.110","sterigmatocystin 8-O-methyltransferase"],["RHEA%3A11504","6-demethylsterigmatocystin + S-adenosyl-L-methionine = sterigmatocystin + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A15561","sterigmatocystin + S-adenosyl-L-methionine = 8-O-methylsterigmatocystin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["polyketides/sterigmatocystin.yaml","sterigmatocystin"]]},{"id":"CHEBI:2448","l":"actinorhodin","na":4,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["proteintraitsmech%3ABIOLIP_ZCT","ZCT-binding site"]],"b":[["polyketides/actinorhodin.yaml","actinorhodin"]]},{"id":"CHEBI:4356","l":"desferrioxamine B","na":4,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_4356","requires desferrioxamine B"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["proteintraitsmech%3ABIOLIP_KTY","KTY-binding site"]],"b":[["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"]]},{"id":"CHEBI:51460","l":"albaflavenone","na":4,"nb":1,"a":[["EC%3A1.14.15.39","epi-isozizaene 5-monooxygenase"],["RHEA%3A25988","(5R)-albaflavenol + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = albaflavenone + 2 oxidized [2Fe-2S]-[ferredoxin] + 2 H2O"],["RHEA%3A25980","(5S)-albaflavenol + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = albaflavenone + 2 oxidized [2Fe-2S]-[ferredoxin] + 2 H2O"],["RHEA%3A32439","(+)-epi-isozizaene + 4 reduced [2Fe-2S]-[ferredoxin] + 2 O2 + 4 H(+) = albaflavenone + 4 oxidized [2Fe-2S]-[ferredoxin] + 3 H2O"]],"b":[["terpenoids/albaflavenone.yaml","albaflavenone"]]},{"id":"CHEBI:63282","l":"pseudaminate","na":4,"nb":1,"a":[["EC%3A2.5.1.97","pseudaminic acid synthase"],["EC%3A2.7.7.81","pseudaminic acid cytidylyltransferase"],["RHEA%3A31631","2,4-diacetamido-2,4,6-trideoxy-beta-L-altrose + phosphoenolpyruvate + H2O = pseudaminate + phosphate"],["RHEA%3A32083","pseudaminate + CTP = CMP-pseudaminate + diphosphate"]],"b":[["carbohydrates/pseudaminate.yaml","pseudaminate"]]},{"id":"CHEBI:64258","l":"","na":4,"nb":1,"a":[["EC%3A1.14.13.154","erythromycin 12 hydroxylase"],["EC%3A2.1.1.254","erythromycin 3'-O-methyltransferase"],["RHEA%3A32647","erythromycin C + S-adenosyl-L-methionine = erythromycin A + S-adenosyl-L-homocysteine + H(+)"],["RHEA%3A32631","erythromycin D + NADPH + O2 + H(+) = erythromycin C + NADP(+) + H2O"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"CHEBI:79296","l":"indigoidine","na":4,"nb":1,"a":[["EC%3A4.3.3.9","indigoidine synthase"],["RHEA%3A81507","2 3-amino-1,5-dihydropyridine-2,6-dione + O2 = indigoidine + 2 H2O"],["RHEA%3A81499","2 FMN + 2 L-glutamine + 2 ATP + O2 = indigoidine + 2 FMNH2 + 2 AMP + 2 diphosphate + 2 H2O"],["TCDB%3A2.A.7","The Drug/Metabolite Transporter (DMT) Superfamily"]],"b":[["alkaloids/indigoidine.yaml","indigoidine"]]},{"id":"CHEBI:9555","l":"tioguanine","na":4,"nb":1,"a":[["EC%3A2.1.1.67","thiopurine S-methyltransferase"],["RHEA%3A56580","6-thioguanine + S-adenosyl-L-methionine = 6-methylthioguanine + S-adenosyl-L-homocysteine + H(+)"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.40","The Nucleobase/Ascorbate Transporter (NAT) or Nucleobase:Cation Symporter-2 (NCS2) Family"]],"b":[["alkaloids/tioguanine.yaml","tioguanine"]]},{"id":"NCBITaxon:101028","l":"Fusarium pseudograminearum","na":1,"nb":4,"a":[["TED%3AAF-A0A7S8DXW2-F1-model_v4_TED02","TED novel fold AF-A0A7S8DXW2-F1-model_v4_TED02"]],"b":[["alkaloids/8-oxo-fusatin.yaml","8-oxo-fusatin"],["alkaloids/8-oxo-isopentenyladenine.yaml","8-oxo-isopentenyladenine"],["alkaloids/fusatin.yaml","fusatin"],["alkaloids/fusatinic-acid.yaml","fusatinic acid"]]},{"id":"NCBITaxon:1038928","l":"Streptomyces xinghaiensis","na":1,"nb":4,"a":[["TED%3AAF-A0A3R7FP99-F1-model_v4_TED01","TED novel fold AF-A0A3R7FP99-F1-model_v4_TED01"]],"b":[["alkaloids/dixiamycin-a.yaml","dixiamycin A"],["alkaloids/xiamycin-a.yaml","xiamycin A"],["fatty_acids/desferrioxamine-b.yaml","desferrioxamine B"],["polyketides/oligomycin.yaml","oligomycin"]]},{"id":"NCBITaxon:112509","l":"Hordeum vulgare subsp. vulgare","na":1,"nb":4,"a":[["IDPO%3A0000004","pre-molten globule"]],"b":[["fatty_acids/diketones.yaml","β-Diketones"],["terpenoids/11-hydroxy-hordetriene.yaml","11-hydroxy-hordetriene"],["terpenoids/hordediene.yaml","hordediene"],["terpenoids/hordetriene.yaml","hordetriene"]]},{"id":"NCBITaxon:1311","l":"Streptococcus agalactiae","na":4,"nb":1,"a":[["Pfam%3APF19567","Capsular polysaccharide synthesis, CpsB/CapC"],["Pfam%3APF16828","GAG-binding domain on surface antigen"],["Pfam%3APF27244","GtfB middle domain"],["Pfam%3APF07373","CAMP factor (Cfa)"]],"b":[["carbohydrates/capsular-polysaccharide-3.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:1813822","l":"Xylariales sp. No.14919","na":4,"nb":1,"a":[["TED%3AAF-A0A1V1SW90-F1-model_v4_TED01","TED novel fold AF-A0A1V1SW90-F1-model_v4_TED01"],["TED%3AAF-A0A1V1T5K0-F1-model_v4_TED01","TED novel fold AF-A0A1V1T5K0-F1-model_v4_TED01"],["TED%3AAF-A0A1V1TFW0-F1-model_v4_TED03","TED novel fold AF-A0A1V1TFW0-F1-model_v4_TED03"],["TED%3AAF-A0A1V1THH5-F1-model_v4_TED03","TED novel fold AF-A0A1V1THH5-F1-model_v4_TED03"]],"b":[["polyketides/fr901512.yaml","FR901512"]]},{"id":"NCBITaxon:1944","l":"Streptomyces halstedii","na":1,"nb":4,"a":[["Pfam%3APF09277","Erythronolide synthase, docking"]],"b":[["alkaloids/rotihibin-a.yaml","rotihibin A"],["polyketides/halstoctacosanolide-a.yaml","halstoctacosanolide A"],["terpenoids/geosmin.yaml","(−)-geosmin"],["unclassified/vicenistatin.yaml","vicenistatin"]]},{"id":"NCBITaxon:1967","l":"Streptomyces kanamyceticus","na":1,"nb":4,"a":[["Pfam%3APF13579","Glycosyl transferase 4-like domain"]],"b":[["amino_acids_and_peptides/gausemycin-a.yaml","gausemycin A"],["amino_acids_and_peptides/gausemycin-b.yaml","gausemycin B"],["carbohydrates/2-deoxystreptamine.yaml","2-deoxystreptamine"],["carbohydrates/kanamycin-a.yaml","kanamycin A"]]},{"id":"NCBITaxon:2017","l":"Streptoalloteichus hindustanus","na":1,"nb":4,"a":[["Pfam%3APF19581","Glyoxalase superfamily protein"]],"b":[["amino_acids_and_peptides/tallysomycin-a.yaml","tallysomycin A"],["amino_acids_and_peptides/tallysomycin-b.yaml","tallysomycin B"],["carbohydrates/apramycin.yaml","apramycin"],["carbohydrates/tobramycin.yaml","tobramycin"]]},{"id":"NCBITaxon:2045","l":"Pimelobacter simplex","na":4,"nb":1,"a":[["Pfam%3APF00775","Dioxygenase"],["Pfam%3APF04444","Catechol dioxygenase N terminus"],["PROSITE%3APS00083","Intradiol ring-cleavage dioxygenases signature"],["TED%3AAF-A0A4Y3NBY1-F1-model_v4_TED01","TED novel fold AF-A0A4Y3NBY1-F1-model_v4_TED01"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:226900","l":"Bacillus cereus ATCC 14579","na":4,"nb":1,"a":[["IDPO%3A0000060","self-assembly"],["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF14436","Bacterial EndoU nuclease"],["Pfam%3APF10803","Spore germination GerPB"]],"b":[["amino_acids_and_peptides/thiocillin-i.yaml","thiocillin I"]]},{"id":"NCBITaxon:267608","l":"Ralstonia pseudosolanacearum GMI1000","na":4,"nb":1,"a":[["Pfam%3APF13473","Cupredoxin-like domain"],["Pfam%3APF09483","Type III secretion protein (HpaP)"],["Pfam%3APF14897","EpsG family"],["Pfam%3APF03377","TAL effector repeat"]],"b":[["unclassified/micacocidin.yaml","micacocidin"]]},{"id":"NCBITaxon:269797","l":"Methanosarcina barkeri str. Fusaro","na":4,"nb":1,"a":[["Pfam%3APF27274","Coenzyme F430 synthetase CfbE, C-terminal domain"],["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"],["Pfam%3APF09505","Dimethylamine methyltransferase (Dimeth_PyL)"],["PROSITE%3APS00507","Nickel-dependent hydrogenases large subunit signature 1"]],"b":[["alkaloids/coenzyme-f430.yaml","coenzyme F430"]]},{"id":"NCBITaxon:28447","l":"Clavibacter michiganensis","na":4,"nb":1,"a":[["TED%3AAF-A0A251YC11-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A251YC11-F1-model_v4_TED02"],["TED%3AAF-A0A2S5VA57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5VA57-F1-model_v4_TED01"],["TED%3AAF-A0A2S5VJK2-F1-model_v4_TED01","TED novel fold AF-A0A2S5VJK2-F1-model_v4_TED01"],["TED%3AAF-A0A399NHQ8-F1-model_v4_TED01","TED novel fold AF-A0A399NHQ8-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/michiganin-a.yaml","michiganin A"]]},{"id":"NCBITaxon:28450","l":"Burkholderia pseudomallei","na":4,"nb":1,"a":[["Pfam%3APF18664","CdiA C-terminal tRNase domain"],["Pfam%3APF12106","Colicin E5 ribonuclease domain"],["Pfam%3APF11480","Colicin-E5 Imm protein"],["Pfam%3APF13332","Hemagglutinin repeat"]],"b":[["polyketides/malleilactone.yaml","malleilactone"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans PD1222","na":4,"nb":1,"a":[["Pfam%3APF27518","Heme exporter protein C"],["Pfam%3APF22039","Imidazolonepropionase-like composite domain, bacteria"],["PROSITE%3APS01181","Ribosomal protein S21 signature"],["Pfam%3APF02239","Cytochrome D1 heme domain"]],"b":[["alkaloids/parabactin.yaml","parabactin"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":1,"nb":4,"a":[["TED%3AAF-A0A679J1E9-F1-model_v4_TED01","TED novel fold AF-A0A679J1E9-F1-model_v4_TED01"]],"b":[["unclassified/vacidobactin-a.yaml","vacidobactin A"],["unclassified/vacidobactin-b.yaml","vacidobactin B"],["unclassified/variobactin-a.yaml","variobactin A"],["unclassified/variobactin-b.yaml","variobactin B"]]},{"id":"NCBITaxon:40602","l":"Claviceps fusiformis","na":1,"nb":4,"a":[["Pfam%3APF06766","Fungal hydrophobin"]],"b":[["alkaloids/agroclavine-i.yaml","Agroclavine I"],["alkaloids/elymoclavine.yaml","elymoclavine"],["alkaloids/ergocryptine.yaml","α-ergocryptine"],["alkaloids/ergotamine.yaml","ergotamine"]]},{"id":"NCBITaxon:43662","l":"Pseudoalteromonas piscicida","na":1,"nb":4,"a":[["Pfam%3APF08329","Chitinase A, N-terminal domain"]],"b":[["alkaloids/2-3-4-5-tetrabromopyrrole.yaml","2,3,4,5-tetrabromopyrrole"],["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["alkaloids/pseudochelin-a.yaml","pseudochelin A"]]},{"id":"NCBITaxon:497965","l":"Gloeothece verrucosa PCC 7822","na":4,"nb":1,"a":[["TED%3AAF-E0UJA0-F1-model_v4_TED01","TED highly-symmetric fold AF-E0UJA0-F1-model_v4_TED01"],["TED%3AAF-E0U6M3-F1-model_v4_TED03","TED novel fold AF-E0U6M3-F1-model_v4_TED03"],["TED%3AAF-E0UE39-F1-model_v4_TED02","TED novel fold AF-E0UE39-F1-model_v4_TED02"],["TED%3AAF-E0UM93-F1-model_v4_TED01","TED novel fold AF-E0UM93-F1-model_v4_TED01"]],"b":[["fatty_acids/1-heptadecene.yaml","1-heptadecene"]]},{"id":"NCBITaxon:5083","l":"Penicillium canescens","na":1,"nb":4,"a":[["Pfam%3APF09206","Alpha-L-arabinofuranosidase B, catalytic"]],"b":[["alkaloids/agroclavine-i.yaml","Agroclavine I"],["unclassified/outovirin-a.yaml","outovirin A"],["unclassified/outovirin-c.yaml","outovirin C"],["unclassified/penitrem-a.yaml","penitrem A"]]},{"id":"NCBITaxon:512","l":"Alcaligenes sp.","na":4,"nb":1,"a":[["Pfam%3APF26354","N,N-dimethylformamidase alpha subunit"],["Pfam%3APF20254","N,N-dimethylformamidase beta subunit-like, C-terminal"],["Pfam%3APF11606","Family 31 carbohydrate binding protein"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"]],"b":[["polyketides/kalimantacin-a.yaml","kalimantacin A"]]},{"id":"NCBITaxon:5353","l":"Lentinula edodes","na":4,"nb":1,"a":[["Pfam%3APF21671","Protein CPL1-like"],["Pfam%3APF16850","Peptidase inhibitor I66"],["TED%3AAF-A0A1Q3EBL0-F1-model_v4_TED01","TED novel fold AF-A0A1Q3EBL0-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3ENK4-F1-model_v4_TED01","TED novel fold AF-A0A1Q3ENK4-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/lentinulin-a.yaml","lentinulin A"]]},{"id":"NCBITaxon:5516","l":"Fusarium culmorum","na":1,"nb":4,"a":[["TED%3AAF-A0A2T4GUL3-F1-model_v4_TED01","TED novel fold AF-A0A2T4GUL3-F1-model_v4_TED01"]],"b":[["polyketides/zearalenone.yaml","zearalenone"],["terpenoids/15-acetyldeoxynivalenol.yaml","15-acetyldeoxynivalenol"],["terpenoids/culmorin.yaml","culmorin"],["terpenoids/nivalenol.yaml","nivalenol"]]},{"id":"NCBITaxon:655819","l":"Beauveria bassiana ARSEF 2860","na":1,"nb":4,"a":[["Pfam%3APF22354","Hydrophobin"]],"b":[["polyketides/oosporein.yaml","oosporein"],["unclassified/beauverolide-ba.yaml","beauverolide Ba"],["unclassified/beauverolide-ca.yaml","beauverolide Ca"],["unclassified/beauverolide-ka.yaml","beauverolide Ka"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":4,"nb":1,"a":[["PROSITE%3APS00949","Autoinducer synthase family signature"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"],["PROSITE%3APS00607","cAMP phosphodiesterases class-II signature"],["TED%3AAF-A0A844NWZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A844NWZ1-F1-model_v4_TED02"]],"b":[["unclassified/ape-vf.yaml","APE Vf"]]},{"id":"NCBITaxon:76728","l":"Wenjunlia vitaminophila","na":1,"nb":4,"a":[["TED%3AAF-A0A0T6LRN4-F1-model_v4_TED01","TED novel fold AF-A0A0T6LRN4-F1-model_v4_TED01"]],"b":[["alkaloids/pyrrolomycin-a.yaml","pyrrolomycin A"],["alkaloids/pyrrolomycin-b.yaml","pyrrolomycin B"],["alkaloids/pyrrolomycin-c.yaml","pyrrolomycin C"],["alkaloids/pyrrolomycin-d.yaml","pyrrolomycin D"]]},{"id":"NCBITaxon:85698","l":"Achromobacter xylosoxidans","na":4,"nb":1,"a":[["Pfam%3APF25975","CzcB C-terminal circularly permuted SH3-like domain"],["Pfam%3APF17524","Anti-sigma factor CnrY"],["Pfam%3APF10778","Halocarboxylic acid dehydrogenase DehI"],["TED%3AAF-A0A1R1JVF9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1R1JVF9-F1-model_v4_TED03"]],"b":[["amino_acids_and_peptides/alcaligin.yaml","alcaligin"]]},{"id":"NCBITaxon:933388","l":"Penicillium oxalicum 114-2","na":4,"nb":1,"a":[["Pfam%3APF27751","ATEG_07667 C-terminal domain"],["Pfam%3APF11402","Antifungal protein"],["Pfam%3APF12311","Protein of unknown function (DUF3632)"],["TED%3AAF-S8ATN5-F1-model_v4_TED01","TED highly-symmetric fold AF-S8ATN5-F1-model_v4_TED01"]],"b":[["unclassified/atpenin-b.yaml","atpenin B"]]},{"id":"NCBITaxon:93625","l":"Psilocybe cyanescens","na":4,"nb":1,"a":[["Pfam%3APF02958","Ecdysteroid kinase-like family"],["TED%3AAF-A0A409XLW7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A409XLW7-F1-model_v4_TED01"],["TED%3AAF-A0A409XPY8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A409XPY8-F1-model_v4_TED01"],["TED%3AAF-A0A409XED8-F1-model_v4_TED01","TED novel fold AF-A0A409XED8-F1-model_v4_TED01"]],"b":[["alkaloids/psilocybin.yaml","psilocybin"]]},{"id":"UniProt:P02701","l":"","na":4,"nb":1,"a":[["Pfam%3APF01382","Avidin family"],["PROSITE%3APS00577","Avidin-like domain signature"],["proteintraitsmech%3ABIOLIP_B1R","B1R-binding site"],["proteintraitsmech%3ABIOLIP_BTN","BTN-binding site"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"UniProt:P62593","l":"","na":4,"nb":1,"a":[["proteintraitsmech%3AMEROPS_CLEAVAGE_M50_004","RseP peptidase cleavage specificity"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["PROSITE%3APS00146","Beta-lactamase class-A active site"],["MCSA%3A2","beta-lactamase (Class A)"]],"b":[["amino_acids_and_peptides/clavulanic-acid-2.yaml","clavulanic acid"]]},{"id":"UniProt:Q00441","l":"","na":4,"nb":1,"a":[["EC%3A1.14.15.35","6-deoxyerythronolide B hydroxylase"],["RHEA%3A40299","6-deoxyerythronolide B + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = erythronolide B + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"],["MCSA%3A694","6-deoxyerythronolide B hydroxylase"],["proteintraitsmech%3ABIOLIP_9AP","9AP-binding site"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"UniProt:Q8TDV0","l":"","na":4,"nb":1,"a":[["ComplexPortal%3ACPX-16132","-"],["ComplexPortal%3ACPX-17565","-"],["ComplexPortal%3ACPX-24374","-"],["CDD%3Acd15002","7tmA_GPR151"]],"b":[["carbohydrates/tobramycin.yaml","tobramycin"]]},{"id":"UniProt:Q9Y243","l":"","na":4,"nb":1,"a":[["ComplexPortal%3ACPX-22352","-"],["ComplexPortal%3ACPX-24286","-"],["CDD%3Acd05593","STKc_PKB_gamma"],["InterPro%3AIPR034675","Protein kinase B gamma, catalytic domain"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"CHEBI:131914","l":"violacein","na":3,"nb":1,"a":[["RHEA%3A49720","protoviolaceinate + NADH + 2 O2 + 2 H(+) = violacein + CO2 + NAD(+) + 2 H2O"],["RHEA%3A49728","protoviolaceinate + NADPH + 2 O2 + 2 H(+) = violacein + CO2 + NADP(+) + 2 H2O"],["RHEA%3A49732","violaceinate + O2 + H(+) = violacein + CO2 + H2O"]],"b":[["alkaloids/violacein.yaml","violacein"]]},{"id":"CHEBI:133763","l":"YWA1","na":3,"nb":1,"a":[["RHEA%3A62652","6 malonyl-CoA + acetyl-CoA + 6 H(+) = naphtopyrone YWA1 + 6 CO2 + 7 CoA + H2O"],["RHEA%3A62700","naphtopyrone YWA1 + H2O = naphthalene-1,3,6,8-tetrol + acetoacetate + H(+)"],["RHEA%3A62680","naphtopyrone YWA1 = norrubrofusarin + H2O + H(+)"]],"b":[["polyketides/ywa1.yaml","YWA1"]]},{"id":"CHEBI:138046","l":"sesterfisherol","na":3,"nb":1,"a":[["EC%3A4.2.3.176","sesterfisherol synthase"],["RHEA%3A54068","(2E,6E,10E,14E)-geranylfarnesyl diphosphate + H2O = sesterfisherol + diphosphate"],["RHEA%3A78407","sesterfisherol + 3 reduced [NADPH--hemoprotein reductase] + 3 O2 = sesterfisherate + 3 oxidized [NADPH--hemoprotein reductase] + 4 H2O + 4 H(+)"]],"b":[["terpenoids/sesterfisherol.yaml","sesterfisherol"]]},{"id":"CHEBI:18393","l":"naphthalene-1,3,8-triol","na":3,"nb":1,"a":[["EC%3A4.2.1.94","scytalone dehydratase"],["RHEA%3A24396","scytalone = 1,3,8-trihydroxynaphthalene + H2O"],["MCSA%3A910","scytalone dehydratase"]],"b":[["polyketides/naphthalene-1-3-8-triol.yaml","naphthalene-1,3,8-triol"]]},{"id":"CHEBI:28915","l":"fosfomycin","na":3,"nb":1,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.5","The Pseudomonas OprP Porin (POP) Family"],["proteintraitsmech%3ABIOLIP_FCN","FCN-binding site"]],"b":[["unclassified/fosfomycin.yaml","fosfomycin"]]},{"id":"CHEBI:29472","l":"2-heptyl-3-hydroxy-4-quinolone","na":3,"nb":1,"a":[["EC%3A1.14.13.182","2-heptyl-3-hydroxy-4(1H)-quinolone synthase"],["RHEA%3A60352","2-heptyl-3-hydroxy-4(1H)-quinolone + O2 = N-octanoylanthranilate + CO + H(+)"],["RHEA%3A37871","2-heptyl-4(1H)-quinolone + NADH + O2 + H(+) = 2-heptyl-3-hydroxy-4(1H)-quinolone + NAD(+) + H2O"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"]]},{"id":"CHEBI:3139","l":"bleomycin A2","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A9.A.18","The Peptide Uptake Permease (PUP) Family"]],"b":[["amino_acids_and_peptides/bleomycin-a2.yaml","bleomycin A2"]]},{"id":"CHEBI:31432","l":"corynebactin","na":3,"nb":1,"a":[["RHEA%3A33811","3 2,3-dihydroxybenzoate + 3 L-threonine + 3 glycine + 6 ATP = corynebactin + 6 AMP + 6 diphosphate + 3 H2O + 3 H(+)"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"CHEBI:31550","l":"epothilone B","na":3,"nb":1,"a":[["RHEA%3A47808","epothilone D + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = epothilone B + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["proteintraitsmech%3ABIOLIP_EPB","EPB-binding site"]],"b":[["unclassified/epothilone-b.yaml","epothilone B"]]},{"id":"CHEBI:40968","l":"astaxanthin","na":3,"nb":1,"a":[["EC%3A1.14.99.64","zeaxanthin 4-ketolase"],["RHEA%3A56772","all-trans-adonixanthin + 2 AH2 + 2 O2 = all-trans-(3S,3'S)-astaxanthin + 2 A + 3 H2O"],["proteintraitsmech%3ABIOLIP_AXT","AXT-binding site"]],"b":[["terpenoids/astaxanthin.yaml","astaxanthin"]]},{"id":"CHEBI:46702","l":"(−)-geosmin","na":3,"nb":1,"a":[["EC%3A4.1.99.16","geosmin synthase"],["RHEA%3A30371","(1E,4S,5E,7R)-germacra-1(10),5-dien-11-ol + H2O = (-)-geosmin + acetone"],["RHEA%3A30455","(1S,4aS)-1,4a-dimethyl-1,2,3,4,4a,5,6,8a-octahydronaphthalene + H2O = (-)-geosmin"]],"b":[["terpenoids/geosmin.yaml","(−)-geosmin"]]},{"id":"CHEBI:48741","l":"β-phellandrene","na":3,"nb":1,"a":[["EC%3A4.2.3.51","beta-phellandrene synthase (neryl-diphosphate-cyclizing)"],["RHEA%3A25504","(2E)-geranyl diphosphate = beta-phellandrene + diphosphate"],["RHEA%3A27830","neryl diphosphate = beta-phellandrene + diphosphate"]],"b":[["terpenoids/phellandrene.yaml","β-phellandrene"]]},{"id":"CHEBI:50432","l":"putrebactin","na":3,"nb":1,"a":[["EC%3A6.3.2.63","putrebactin synthase"],["RHEA%3A79279","2 N-(3-carboxypropanoyl)-N-hydroxyputrescine + 2 ATP = putrebactin + 2 AMP + 2 diphosphate + 2 H(+)"],["RHEA%3A79287","pre-putrebactin + ATP = putrebactin + AMP + diphosphate + H(+)"]],"b":[["amino_acids_and_peptides/putrebactin.yaml","putrebactin"]]},{"id":"CHEBI:63468","l":"tirucalla-7,24-dien-3β-ol","na":3,"nb":1,"a":[["EC%3A5.4.99.56","tirucalladienol synthase"],["RHEA%3A31887","(S)-2,3-epoxysqualene = tirucalla-7,24-dien-3beta-ol"],["RHEA%3A80279","tirucalla-7,24-dien-3beta-ol + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = dihydroniloticin + 2 oxidized [NADPH--hemoprotein reductase] + 2 H2O + 2 H(+)"]],"b":[["terpenoids/tirucalla-7-24-dien-3-ol.yaml","tirucalla-7,24-dien-3β-ol"]]},{"id":"CHEBI:6472","l":"lincomycin","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_3QB","3QB-binding site"]],"b":[["carbohydrates/lincomycin.yaml","lincomycin"]]},{"id":"CHEBI:71609","l":"albonoursin","na":3,"nb":1,"a":[["EC%3A1.3.3.13","albonoursin synthase"],["RHEA%3A35531","cyclo(L-phenylalanyl-L-leucyl) + 2 O2 = albonoursin + 2 H2O2"],["RHEA%3A35539","cyclo[(Z)-alpha,beta-didehydrophenylalanyl-L-leucyl] + O2 = albonoursin + H2O2"]],"b":[["unclassified/albonoursin.yaml","albonoursin"]]},{"id":"CHEBI:7719","l":"ochratoxin A","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.60","The Organo Anion Transporter (OAT) Family"]],"b":[["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"]]},{"id":"CHEBI:77879","l":"elaiophylin","na":3,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["proteintraitsmech%3ABIOLIP_ELO","ELO-binding site"]],"b":[["polyketides/elaiophylin.yaml","elaiophylin"]]},{"id":"CHEBI:80729","l":"toxoflavin","na":3,"nb":1,"a":[["EC%3A2.1.1.349","toxoflavin synthase"],["RHEA%3A56852","reumycin + S-adenosyl-L-methionine = toxoflavin + S-adenosyl-L-homocysteine + H(+)"],["proteintraitsmech%3ABIOLIP_TOF","TOF-binding site"]],"b":[["alkaloids/toxoflavin.yaml","toxoflavin"]]},{"id":"CHEBI:9215","l":"spectinomycin","na":3,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"],["proteintraitsmech%3ABIOLIP_SCM","SCM-binding site"]],"b":[["carbohydrates/spectinomycin.yaml","spectinomycin"]]},{"id":"CHEBI:9470","l":"tetracenomycin C","na":3,"nb":1,"a":[["EC%3A1.14.13.200","tetracenomycin A2 monooxygenase-diooxygenase"],["RHEA%3A42824","tetracenomycin A2 + 2 NADH + 2 O2 + 2 H(+) = tetracenomycin C + 2 NAD(+) + H2O"],["RHEA%3A42820","tetracenomycin A2 + 2 NADPH + 2 O2 + 2 H(+) = tetracenomycin C + 2 NADP(+) + H2O"]],"b":[["polyketides/tetracenomycin-c.yaml","tetracenomycin C"]]},{"id":"NCBITaxon:10141","l":"Cavia porcellus","na":3,"nb":1,"a":[["IDPO%3A0000048","limited proteolysis display site"],["Pfam%3APF16681","Ig-like domain on T-cell surface glycoprotein CD3 epsilon chain"],["PROSITE%3APS00799","Granulins signature"]],"b":[["shikimates_and_phenylpropanoids/naringenin.yaml","naringenin"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":3,"nb":1,"a":[["Pfam%3APF05258","Dna[CI] antecedent, DciA"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"],["TED%3AAF-Q0RZW9-F1-model_v4_TED03","TED highly-symmetric fold AF-Q0RZW9-F1-model_v4_TED03"]],"b":[["unclassified/rhodochelin.yaml","rhodochelin"]]},{"id":"NCBITaxon:1125972","l":"Amycolatopsis alba DSM 44262","na":3,"nb":1,"a":[["TED%3AAF-A0A229R958-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A229R958-F1-model_v4_TED01"],["TED%3AAF-A0A229REG9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A229REG9-F1-model_v4_TED01"],["TED%3AAF-A0A229RFD1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A229RFD1-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/albachelin.yaml","albachelin"]]},{"id":"NCBITaxon:1381753","l":"Moniliophthora roreri (strain MCA 2997)","na":3,"nb":1,"a":[["TED%3AAF-V2WPW3-F1-model_v4_TED02","TED highly-symmetric fold AF-V2WPW3-F1-model_v4_TED02"],["TED%3AAF-V2WSW5-F1-model_v4_TED05","TED highly-symmetric fold AF-V2WSW5-F1-model_v4_TED05"],["TED%3AAF-V2XCP9-F1-model_v4_TED03","TED highly-symmetric fold AF-V2XCP9-F1-model_v4_TED03"]],"b":[["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"]]},{"id":"NCBITaxon:1392250","l":"Aspergillus steynii IBT 23096","na":3,"nb":1,"a":[["TED%3AAF-A0A2I2FXR6-F1-model_v4_TED02","TED novel fold AF-A0A2I2FXR6-F1-model_v4_TED02"],["TED%3AAF-A0A2I2GJL8-F1-model_v4_TED01","TED novel fold AF-A0A2I2GJL8-F1-model_v4_TED01"],["TED%3AAF-A0A2I2GP63-F1-model_v4_TED02","TED novel fold AF-A0A2I2GP63-F1-model_v4_TED02"]],"b":[["alkaloids/ochrindole-a.yaml","ochrindole A"]]},{"id":"NCBITaxon:1406225","l":"Archangium violaceum Cb vi76","na":3,"nb":1,"a":[["TED%3AAF-A0A084STC5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A084STC5-F1-model_v4_TED01"],["TED%3AAF-A0A084SQF5-F1-model_v4_TED01","TED novel fold AF-A0A084SQF5-F1-model_v4_TED01"],["TED%3AAF-A0A084SQH8-F1-model_v4_TED01","TED novel fold AF-A0A084SQH8-F1-model_v4_TED01"]],"b":[["polyketides/gephyronic-acid.yaml","gephyronic acid"]]},{"id":"NCBITaxon:1756125","l":"Pyrenochaetopsis sp.","na":1,"nb":3,"a":[["Pfam%3APF22903","Diels-Alderase-like"]],"b":[["polyketides/wakodecalines-a.yaml","wakodecalines A"],["polyketides/wakodecalines-b.yaml","wakodecalines B"],["unclassified/phomasetin.yaml","phomasetin"]]},{"id":"NCBITaxon:1810919","l":"Aspergillus mulundensis","na":3,"nb":1,"a":[["TED%3AAF-A0A3D8QN50-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D8QN50-F1-model_v4_TED01"],["TED%3AAF-A0A3D8RF64-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D8RF64-F1-model_v4_TED01"],["TED%3AAF-A0A3D8R479-F1-model_v4_TED02","TED novel fold AF-A0A3D8R479-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/mulundocandin.yaml","mulundocandin"]]},{"id":"NCBITaxon:1857892","l":"Streptomyces sp. MP131-18","na":1,"nb":3,"a":[["TED%3AAF-A0A1V2RLA5-F1-model_v4_TED02","TED novel fold AF-A0A1V2RLA5-F1-model_v4_TED02"]],"b":[["polyketides/lagunapyrone-a.yaml","lagunapyrone A"],["polyketides/lagunapyrone-b.yaml","lagunapyrone B"],["polyketides/lagunapyrone-c.yaml","lagunapyrone C"]]},{"id":"NCBITaxon:1885","l":"Streptomyces actuosus","na":1,"nb":3,"a":[["Pfam%3APF17258","Family of unknown function (DUF5324)"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"],["alkaloids/staurosporine.yaml","staurosporine"],["amino_acids_and_peptides/nosiheptide-2.yaml","nosiheptide"]]},{"id":"NCBITaxon:1904","l":"Streptomyces cyaneus","na":1,"nb":3,"a":[["Pfam%3APF04673","Polyketide synthesis cyclase"]],"b":[["carbohydrates/curamycin.yaml","curamycin"],["polyketides/cardol.yaml","cardol"],["polyketides/cosmomycin-d.yaml","cosmomycin D"]]},{"id":"NCBITaxon:1932","l":"Streptomyces tendae","na":1,"nb":3,"a":[["Pfam%3APF01356","Alpha amylase inhibitor"]],"b":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"],["polyketides/lysolipin-i.yaml","lysolipin I"],["terpenoids/geosmin.yaml","(−)-geosmin"]]},{"id":"NCBITaxon:1935","l":"Streptomyces violaceoruber","na":1,"nb":3,"a":[["Pfam%3APF03559","NDP-hexose 2,3-dehydratase"]],"b":[["polyketides/granaticin.yaml","granaticin"],["polyketides/kendomycin.yaml","kendomycin"],["terpenoids/methylenomycin-a.yaml","methylenomycin A"]]},{"id":"NCBITaxon:1938","l":"Streptomyces viridochromogenes","na":1,"nb":3,"a":[["Pfam%3APF11599","RRNA methyltransferase AviRa"]],"b":[["amino_acids_and_peptides/glycinocin-a.yaml","glycinocin A"],["carbohydrates/avilamycin-a.yaml","avilamycin A"],["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"]]},{"id":"NCBITaxon:1950","l":"Streptomyces peucetius","na":1,"nb":3,"a":[["Pfam%3APF13732","ATP-binding protein DrrA1-3-like, C-terminal domain"]],"b":[["amino_acids_and_peptides/peucechelin.yaml","peucechelin"],["polyketides/daunorubicin.yaml","daunorubicin"],["polyketides/doxorubicin.yaml","doxorubicin"]]},{"id":"NCBITaxon:1956","l":"Streptomyces diastaticus","na":1,"nb":3,"a":[["TED%3AAF-A0A7K3Q596-F1-model_v4_TED01","TED novel fold AF-A0A7K3Q596-F1-model_v4_TED01"]],"b":[["alkaloids/diastaphenazine.yaml","diastaphenazine"],["alkaloids/izumiphenazine-c.yaml","izumiphenazine C"],["polyketides/rimocidin.yaml","rimocidin"]]},{"id":"NCBITaxon:216591","l":"Burkholderia cenocepacia J2315","na":1,"nb":3,"a":[["Pfam%3APF04199","Putative cyclase"]],"b":[["unclassified/ornibactin-c4.yaml","ornibactin C4"],["unclassified/ornibactin-c6.yaml","ornibactin C6"],["unclassified/ornibactin-c8.yaml","ornibactin C8"]]},{"id":"NCBITaxon:2572248","l":"Cryptosporiopsis sp. 8999","na":1,"nb":3,"a":[["Pfam%3APF08592","Anthrone oxygenase"]],"b":[["polyketides/cryptosporioptide-a.yaml","cryptosporioptide A"],["polyketides/cryptosporioptide-b.yaml","cryptosporioptide B"],["polyketides/cryptosporioptide-c.yaml","cryptosporioptide C"]]},{"id":"NCBITaxon:2747968","l":"Fusarium vanettenii","na":3,"nb":1,"a":[["Pfam%3APF01083","Cutinase"],["PROSITE%3APS00155","Cutinase, serine active site"],["PROSITE%3APS00931","Cutinase, aspartate and histidine active sites"]],"b":[["polyketides/bikaverin.yaml","bikaverin"]]},{"id":"NCBITaxon:312309","l":"Aliivibrio fischeri ES114","na":3,"nb":1,"a":[["Pfam%3APF06610","L-alanine exporter"],["Pfam%3APF00765","Autoinducer synthase"],["PROSITE%3APS00949","Autoinducer synthase family signature"]],"b":[["unclassified/ape-vf.yaml","APE Vf"]]},{"id":"NCBITaxon:322159","l":"Streptococcus thermophilus LMD-9","na":3,"nb":1,"a":[["Pfam%3APF18470","Cas9 alpha-helical lobe domain"],["Pfam%3APF18070","CRISPR-Cas9 PI domain"],["Pfam%3APF18061","CRISPR-Cas9 WED domain"]],"b":[["amino_acids_and_peptides/streptide.yaml","streptide"]]},{"id":"NCBITaxon:324833","l":"Streptomyces lasalocidi","na":1,"nb":3,"a":[["TED%3AAF-A0A4U5W597-F1-model_v4_TED01","TED novel fold AF-A0A4U5W597-F1-model_v4_TED01"]],"b":[["polyketides/lasalocid-2.yaml","lasalocid"],["polyketides/lasalocid.yaml","lasalocid"],["unclassified/echinomycin.yaml","echinomycin"]]},{"id":"NCBITaxon:33203","l":"Purpureocillium lilacinum","na":1,"nb":3,"a":[["TED%3AAF-A0A2U3ENJ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U3ENJ6-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/leucinostatin-a.yaml","leucinostatin A"],["amino_acids_and_peptides/leucinostatin-b.yaml","leucinostatin B"],["polyketides/patulin.yaml","patulin"]]},{"id":"NCBITaxon:347834","l":"Rhizobium etli CFN 42","na":3,"nb":1,"a":[["Pfam%3APF02632","BioY family"],["proteintraitsmech%3AELIFE109154_VbsL","Vicibactin acyl-hydroxyornithine epimerase family"],["PROSITE%3APS01349","Nodulation protein nodA signature"]],"b":[["amino_acids_and_peptides/vicibactin.yaml","vicibactin"]]},{"id":"NCBITaxon:362242","l":"Mycobacterium ulcerans Agy99","na":3,"nb":1,"a":[["Pfam%3APF02654","Cobalamin-5-phosphate synthase"],["Pfam%3APF02622","AlgH-like"],["Pfam%3APF01628","HrcA protein C terminal domain"]],"b":[["polyketides/mycolactone-b.yaml","mycolactone B"]]},{"id":"NCBITaxon:376686","l":"Flavobacterium johnsoniae UW101","na":3,"nb":1,"a":[["Pfam%3APF17957","Bacterial Ig domain"],["Pfam%3APF24850","Bacillithiol biosynthesis BshC, C-terminal coiled-coil domain"],["Pfam%3APF14109","GldH lipoprotein"]],"b":[["polyketides/flexirubin.yaml","flexirubin"]]},{"id":"NCBITaxon:381666","l":"Cupriavidus necator H16","na":3,"nb":1,"a":[["Pfam%3APF13473","Cupredoxin-like domain"],["Pfam%3APF10605","3HB-oligomer hydrolase (3HBOH)"],["Pfam%3APF21783","YNCE-like beta-propeller"]],"b":[["amino_acids_and_peptides/cupriachelin.yaml","cupriachelin"]]},{"id":"NCBITaxon:3879","l":"Medicago sativa","na":3,"nb":1,"a":[["Pfam%3APF02095","Extensin-like protein"],["Pfam%3APF02431","Chalcone-flavanone isomerase"],["PROSITE%3APS00441","Chalcone and stilbene synthases active site"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:393595","l":"Alcanivorax borkumensis SK2","na":1,"nb":3,"a":[["TED%3AAF-Q0VNH7-F1-model_v4_TED01","TED highly-symmetric fold AF-Q0VNH7-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/amphibactin-e.yaml","amphibactin E"],["amino_acids_and_peptides/amphibactin-h.yaml","amphibactin H"],["fatty_acids/amphibactin-i.yaml","amphibactin I"]]},{"id":"NCBITaxon:3988","l":"Ricinus communis","na":3,"nb":1,"a":[["Pfam%3APF10998","Protein of unknown function (DUF2838)"],["PROSITE%3APS00574","Fatty acid desaturases family 2 signature"],["PROSITE%3APS00275","Shiga/ricin ribosomal inactivating toxins active site signature"]],"b":[["terpenoids/casbene.yaml","casbene"]]},{"id":"NCBITaxon:4039","l":"Daucus carota","na":3,"nb":1,"a":[["PROSITE%3APS00451","Pathogenesis-related proteins Bet v I family signature"],["PROSITE%3APS00431","Small hydrophilic plant seed proteins signature"],["Pfam%3APF02987","Late embryogenesis abundant protein"]],"b":[["carbohydrates/adenine-arabinoside.yaml","adenine arabinoside"]]},{"id":"NCBITaxon:41067","l":"Aspergillus candidus","na":1,"nb":3,"a":[["TED%3AAF-A0A2I2EZ62-F1-model_v4_TED02","TED novel fold AF-A0A2I2EZ62-F1-model_v4_TED02"]],"b":[["alkaloids/aspcandine.yaml","aspcandine"],["polyketides/kojic-acid.yaml","kojic acid"],["shikimates_and_phenylpropanoids/chlorflavonin.yaml","chlorflavonin"]]},{"id":"NCBITaxon:41899","l":"Burkholderia plantarii","na":3,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_GrbD","GrbD-type graminine biosynthesis protein family"],["proteintraitsmech%3AELIFE109154_GrbE","GrbE-type graminine biosynthesis protein family"],["TED%3AAF-A0A0B6RMB1-F1-model_v4_TED01","TED novel fold AF-A0A0B6RMB1-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/plantaribactin.yaml","plantaribactin"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":3,"nb":1,"a":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF22277","EncFtn-like"],["TED%3AAF-D0LJ11-F1-model_v4_TED04","TED highly-symmetric fold AF-D0LJ11-F1-model_v4_TED04"]],"b":[["polyketides/haliamide.yaml","haliamide"]]},{"id":"NCBITaxon:53446","l":"Streptomyces cinnamoneus","na":1,"nb":3,"a":[["TED%3AAF-A0A2S6XSK0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S6XSK0-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/cinnamycin.yaml","cinnamycin"],["amino_acids_and_peptides/duramycin.yaml","duramycin"],["unclassified/bicozamycin.yaml","bicozamycin"]]},{"id":"NCBITaxon:645","l":"Aeromonas salmonicida","na":3,"nb":1,"a":[["Pfam%3APF28601","Heat shock protein 15, C-terminal region"],["Pfam%3APF12563","Hemolytic toxin N terminal"],["Pfam%3APF01203","Type II secretion system (T2SS), protein N"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:659352","l":"Actinacidiphila reveromycinica","na":1,"nb":3,"a":[["TED%3AAF-A0A7U3V0R8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7U3V0R8-F1-model_v4_TED02"]],"b":[["polyketides/kinanthraquinone-b.yaml","kinanthraquinone B"],["polyketides/kinanthraquinone.yaml","kinanthraquinone"],["polyketides/reveromycin-a.yaml","reveromycin A"]]},{"id":"NCBITaxon:660122","l":"Fusarium vanettenii 77-13-4","na":3,"nb":1,"a":[["Pfam%3APF17660","Polyglycine hydrolase-like, structural repeat"],["Pfam%3APF26719","ATPase synthesis protein 25, C-terminal TPR repeats"],["TED%3AAF-C7YNY6-F1-model_v4_TED02","TED highly-symmetric fold AF-C7YNY6-F1-model_v4_TED02"]],"b":[["unclassified/sansalvamide.yaml","sansalvamide"]]},{"id":"NCBITaxon:66374","l":"Streptomyces nojiriensis","na":1,"nb":3,"a":[["TED%3AAF-A0A8A6HBY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8A6HBY6-F1-model_v4_TED01"]],"b":[["carbohydrates/streptothricin-d.yaml","streptothricin D"],["carbohydrates/streptothricin-e.yaml","streptothricin E"],["carbohydrates/streptothricin-f.yaml","streptothricin F"]]},{"id":"NCBITaxon:68239","l":"Streptomyces mirabilis","na":1,"nb":3,"a":[["TED%3AAF-A0A1I2Y4U7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2Y4U7-F1-model_v4_TED01"]],"b":[["alkaloids/azodyrecin-a.yaml","Azodyrecin A"],["alkaloids/azodyrecin-b.yaml","Azodyrecin B"],["alkaloids/azodyrecin-c.yaml","Azodyrecin C"]]},{"id":"NCBITaxon:715","l":"Actinobacillus pleuropneumoniae","na":3,"nb":1,"a":[["Pfam%3APF26002","AprE-like, beta-barrel domain"],["Pfam%3APF02794","RTX toxin acyltransferase family"],["PROSITE%3APS00543","HlyD family secretion proteins signature"]],"b":[["unclassified/capsular-polysaccharide.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:717774","l":"Marinomonas mediterranea MMB-1","na":1,"nb":3,"a":[["TED%3AAF-F2K4E6-F1-model_v4_TED01","TED novel fold AF-F2K4E6-F1-model_v4_TED01"]],"b":[["alkaloids/bistribromopyrrole.yaml","bistribromopyrrole"],["shikimates_and_phenylpropanoids/bromophene.yaml","bromophene"],["shikimates_and_phenylpropanoids/pentabromopseudilin.yaml","pentabromopseudilin"]]},{"id":"NCBITaxon:749414","l":"Streptomyces bingchenggensis BCW-1","na":3,"nb":1,"a":[["Pfam%3APF14509","Glycosyl-hydrolase 97 C-terminal, oligomerisation"],["Pfam%3APF14508","Glycosyl-hydrolase 97 N-terminal"],["Pfam%3APF10566","Glycoside hydrolase 97"]],"b":[["polyketides/nanchangmycin.yaml","nanchangmycin"]]},{"id":"NCBITaxon:889282","l":"Polyangium spumosum","na":3,"nb":1,"a":[["TED%3AAF-A0A6N7PQI9-F1-model_v4_TED01","TED novel fold AF-A0A6N7PQI9-F1-model_v4_TED01"],["TED%3AAF-A0A6N7PTT9-F1-model_v4_TED02","TED novel fold AF-A0A6N7PTT9-F1-model_v4_TED02"],["TED%3AAF-A0A6N7Q2E0-F1-model_v4_TED01","TED novel fold AF-A0A6N7Q2E0-F1-model_v4_TED01"]],"b":[["unclassified/antalid.yaml","antalid"]]},{"id":"NCBITaxon:95486","l":"Burkholderia cenocepacia","na":3,"nb":1,"a":[["TED%3AAF-A0A109EHZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A109EHZ6-F1-model_v4_TED01"],["TED%3AAF-A0A071M3L2-F1-model_v4_TED01","TED novel fold AF-A0A071M3L2-F1-model_v4_TED01"],["TED%3AAF-A0A088UYL8-F1-model_v4_TED01","TED novel fold AF-A0A088UYL8-F1-model_v4_TED01"]],"b":[["unclassified/ornibactin-c8.yaml","ornibactin C8"]]},{"id":"RHEA:32647","l":"","na":3,"nb":1,"a":[["EC%3A2.1.1.254","erythromycin 3'-O-methyltransferase"],["RHEA%3A32647","erythromycin C + S-adenosyl-L-methionine = erythromycin A + S-adenosyl-L-homocysteine + H(+)"],["GO%3A0102307","erythromycin 3'-o-methyltransferase activity"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"UniProt:P22629.","l":"","na":3,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_4IR","4IR-binding site"],["proteintraitsmech%3ABIOLIP_HL9","HL9-binding site"],["proteintraitsmech%3ABIOLIP_ZOE","ZOE-binding site"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"UniProt:P48635","l":"","na":3,"nb":1,"a":[["EC%3A1.14.13.154","erythromycin 12 hydroxylase"],["RHEA%3A32631","erythromycin D + NADPH + O2 + H(+) = erythromycin C + NADP(+) + H2O"],["proteintraitsmech%3ABIOLIP_KLN","KLN-binding site"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"UniProt:Q00975","l":"","na":3,"nb":1,"a":[["GO%3A1903235","positive regulation of calcium ion-dependent exocytosis of neurotransmitter"],["ELM%3AELME000451","LIG_PDZ_Wminus1_1"],["proteintraitsmech%3ABIOLIP_PT5","PT5-binding site"]],"b":[["alkaloids/odilorhabdin-noso-95c.yaml","odilorhabdin NOSO-95C"]]},{"id":"UniProt:Q16584","l":"","na":3,"nb":1,"a":[["CDD%3Acd14147","STKc_MLK3"],["CDD%3Acd12059","SH3_MLK1-3"],["InterPro%3AIPR035779","MLK1-3, SH3 domain"]],"b":[["alkaloids/k-252a-2.yaml","K-252a"]]},{"id":"CHEBI:10106","l":"zearalenone","na":2,"nb":1,"a":[["RHEA%3A79255","zearalenone + H2O = hydrolyzed zearalenone + H(+)"],["proteintraitsmech%3ABIOLIP_ZER","ZER-binding site"]],"b":[["polyketides/zearalenone.yaml","zearalenone"]]},{"id":"CHEBI:132426","l":"chondrochloren A","na":2,"nb":1,"a":[["EC%3A4.1.1.129","1'-carboxy-chondrochloren decarboxylase"],["RHEA%3A81491","1'-carboxy-chondrochloren A + FAD + 2 H(+) = chondrochloren A + FADH2 + CO2"]],"b":[["polyketides/chondrochloren-a.yaml","chondrochloren A"]]},{"id":"CHEBI:134612","l":"staphyloferrin B","na":2,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_134612","requires staphyloferrin B"],["proteintraitsmech%3ABIOLIP_SE8","SE8-binding site"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"]]},{"id":"CHEBI:135511","l":"rebeccamycin","na":2,"nb":1,"a":[["EC%3A2.1.1.164","demethylrebeccamycin-D-glucose O-methyltransferase"],["RHEA%3A27353","4'-demethylrebeccamycin + S-adenosyl-L-methionine = rebeccamycin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["alkaloids/rebeccamycin.yaml","rebeccamycin"]]},{"id":"CHEBI:137562","l":"(+)-eremophilene","na":2,"nb":1,"a":[["EC%3A4.2.3.164","(+)-eremophilene synthase"],["RHEA%3A52804","(2E,6E)-farnesyl diphosphate = (+)-eremophilene + diphosphate"]],"b":[["terpenoids/eremophilene.yaml","(+)-eremophilene"]]},{"id":"CHEBI:138165","l":"(+)-(2S,3R,9R)-pristinol","na":2,"nb":1,"a":[["EC%3A4.2.3.182","pristinol synthase"],["RHEA%3A54372","(2E,6E)-farnesyl diphosphate + H2O = (+)-(2S,3R,9R)-pristinol + diphosphate"]],"b":[["terpenoids/2s-3r-9r-pristinol.yaml","(+)-(2S,3R,9R)-pristinol"]]},{"id":"CHEBI:139480","l":"(+)-O-methylkolavelool","na":2,"nb":1,"a":[["EC%3A2.1.1.347","(+)-O-methylkolavelool synthase"],["RHEA%3A55968","(+)-kolavelool + S-adenosyl-L-methionine = (+)-O-methylkolavelool + S-adenosyl-L-homocysteine + H(+)"]],"b":[["terpenoids/o-methylkolavelool.yaml","(+)-O-methylkolavelool"]]},{"id":"CHEBI:145066","l":"stemphyloxin II","na":2,"nb":1,"a":[["RHEA%3A61904","betaenone A + NADPH + O2 + H(+) = stemphyloxin II + NADP(+) + H2O"],["RHEA%3A62716","stemphyloxin I = stemphyloxin II"]],"b":[["polyketides/stemphyloxin-ii.yaml","stemphyloxin II"]]},{"id":"CHEBI:145070","l":"stemphyloxin I","na":2,"nb":1,"a":[["RHEA%3A62712","betaenone C + NADPH + O2 + H(+) = stemphyloxin I + NADP(+) + H2O"],["RHEA%3A62716","stemphyloxin I = stemphyloxin II"]],"b":[["polyketides/stemphyloxin-i.yaml","stemphyloxin I"]]},{"id":"CHEBI:146153","l":"ilicicolin B","na":2,"nb":1,"a":[["RHEA%3A63084","ilicicolin B + FADH2 + chloride + O2 = ilicicolin A + FAD + 2 H2O + H(+)"],["RHEA%3A63080","ilicicolinate B + AH2 + ATP = ilicicolin B + A + AMP + diphosphate"]],"b":[["unclassified/ilicicolin-b.yaml","ilicicolin B"]]},{"id":"CHEBI:155912","l":"aculene C","na":2,"nb":1,"a":[["RHEA%3A65108","aculene C + L-prolyl-[peptidyl-carrier protein] = aculene A + holo-[peptidyl-carrier protein]"],["RHEA%3A65112","aculene D + 2-oxoglutarate + O2 = aculene C + succinate + CO2 + H2O"]],"b":[["terpenoids/aculene-c.yaml","aculene C"]]},{"id":"CHEBI:15956","l":"biotin","na":2,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15956","requires biotin"],["proteintraitsmech%3ABIOLIP_BTN","BTN-binding site"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"CHEBI:16441","l":"linamarin","na":2,"nb":1,"a":[["EC%3A2.4.1.63","linamarin synthase"],["RHEA%3A20009","2-hydroxy-2-methylpropanenitrile + UDP-alpha-D-glucose = linamarin + UDP + H(+)"]],"b":[["amino_acids_and_peptides/linamarin.yaml","linamarin"]]},{"id":"CHEBI:17630","l":"kanamycin A","na":2,"nb":1,"a":[["MCSA%3A647","kanamycin nucleotidyltransferase"],["proteintraitsmech%3ABIOLIP_KAN","KAN-binding site"]],"b":[["carbohydrates/kanamycin-a.yaml","kanamycin A"]]},{"id":"CHEBI:17695","l":"casbene","na":2,"nb":1,"a":[["EC%3A4.2.3.8","casbene synthase"],["RHEA%3A14901","(2E,6E,10E)-geranylgeranyl diphosphate = casbene + diphosphate"]],"b":[["terpenoids/casbene.yaml","casbene"]]},{"id":"CHEBI:17939","l":"puromycin","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["proteintraitsmech%3ABIOLIP_PUY","PUY-binding site"]],"b":[["carbohydrates/puromycin.yaml","puromycin"]]},{"id":"CHEBI:2504","l":"aflatoxin B1","na":2,"nb":1,"a":[["EC%3A1.14.14.117","aflatoxin B synthase"],["RHEA%3A35759","8-O-methylsterigmatocystin + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = aflatoxin B1 + methanol + 2 oxidized [NADPH--hemoprotein reductase] + CO2 + H2O + 2 H(+)"]],"b":[["unclassified/aflatoxin-b1.yaml","aflatoxin B1"]]},{"id":"CHEBI:27826","l":"(S)-4-hydroxymandelonitrile β-D-glucoside","na":2,"nb":1,"a":[["EC%3A2.4.1.85","cyanohydrin beta-glucosyltransferase"],["RHEA%3A12853","(S)-4-hydroxymandelonitrile + UDP-alpha-D-glucose = dhurrin + UDP + H(+)"]],"b":[["amino_acids_and_peptides/s-4-hydroxymandelonitrile-d-glucoside.yaml","(S)-4-hydroxymandelonitrile β-D-glucoside"]]},{"id":"CHEBI:28283","l":"capsidiol","na":2,"nb":1,"a":[["EC%3A1.14.14.149","5-epiaristolochene 1,3-dihydroxylase"],["RHEA%3A28226","(+)-5-epi-aristolochene + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = capsidiol + 2 oxidized [NADPH--hemoprotein reductase] + 2 H2O + 2 H(+)"]],"b":[["terpenoids/capsidiol.yaml","capsidiol"]]},{"id":"CHEBI:29519","l":"","na":2,"nb":1,"a":[["EC%3A4.2.3.42","aphidicolan-16beta-ol synthase"],["RHEA%3A26213","9alpha-copalyl diphosphate + H2O = aphidicolan-16beta-ol + diphosphate"]],"b":[["terpenoids/aphidicolan-16-ol.yaml","aphidicolan-16β-ol"]]},{"id":"CHEBI:29673","l":"rifamycin SV","na":2,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"]],"b":[["polyketides/rifamycin-sv.yaml","rifamycin SV"]]},{"id":"CHEBI:38229","l":"solanapyrone A","na":2,"nb":1,"a":[["EC%3A5.5.1.20","prosolanapyrone-III cycloisomerase"],["RHEA%3A31683","prosolanapyrone III = (-)-solanapyrone A"]],"b":[["polyketides/solanapyrone-a.yaml","solanapyrone A"]]},{"id":"CHEBI:42452","l":"formycin A","na":2,"nb":1,"a":[["TCDB%3A2.A.57","The Equilibrative Nucleoside Transporter (ENT) Family"],["proteintraitsmech%3ABIOLIP_FMC","FMC-binding site"]],"b":[["alkaloids/formycin-a.yaml","formycin A"]]},{"id":"CHEBI:48209","l":"aflatoxin B2","na":2,"nb":1,"a":[["EC%3A1.14.14.117","aflatoxin B synthase"],["RHEA%3A35763","8-O-methyldihydrosterigmatocystin + 2 reduced [NADPH--hemoprotein reductase] + 2 O2 = aflatoxin B2 + methanol + 2 oxidized [NADPH--hemoprotein reductase] + CO2 + H2O + 2 H(+)"]],"b":[["polyketides/aflatoxin-b2.yaml","aflatoxin B2"]]},{"id":"CHEBI:52317","l":"thalianol","na":2,"nb":1,"a":[["EC%3A5.4.99.31","thalianol synthase"],["RHEA%3A26160","(S)-2,3-epoxysqualene = thalianol"]],"b":[["terpenoids/thalianol.yaml","thalianol"]]},{"id":"CHEBI:61345","l":"chrysobactin","na":2,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_61345","requires chrysobactin"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["amino_acids_and_peptides/chrysobactin.yaml","chrysobactin"]]},{"id":"CHEBI:63465","l":"marneral","na":2,"nb":1,"a":[["EC%3A5.4.99.53","marneral synthase"],["RHEA%3A31875","(S)-2,3-epoxysqualene = marneral"]],"b":[["terpenoids/marneral.yaml","marneral"]]},{"id":"CHEBI:63702","l":"avermitilol","na":2,"nb":1,"a":[["EC%3A4.2.3.96","avermitilol synthase"],["RHEA%3A32023","(2E,6E)-farnesyl diphosphate + H2O = avermitilol + diphosphate"]],"b":[["terpenoids/avermitilol.yaml","avermitilol"]]},{"id":"CHEBI:63703","l":"(−)-δ-cadinene","na":2,"nb":1,"a":[["EC%3A4.2.3.97","(-)-delta-cadinene synthase"],["RHEA%3A32015","(2E,6E)-farnesyl diphosphate = (-)-delta-cadinene + diphosphate"]],"b":[["terpenoids/cadinene.yaml","(−)-δ-cadinene"]]},{"id":"CHEBI:63704","l":"(+)-Τ-muurolol","na":2,"nb":1,"a":[["EC%3A4.2.3.98","(+)-T-muurolol synthase"],["RHEA%3A32011","(2E,6E)-farnesyl diphosphate + H2O = (+)-T-muurolol + diphosphate"]],"b":[["terpenoids/muurolol.yaml","(+)-Τ-muurolol"]]},{"id":"CHEBI:64268","l":"","na":2,"nb":1,"a":[["EC%3A2.1.1.254","erythromycin 3'-O-methyltransferase"],["RHEA%3A32647","erythromycin C + S-adenosyl-L-methionine = erythromycin A + S-adenosyl-L-homocysteine + H(+)"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"CHEBI:6570","l":"lupeol","na":2,"nb":1,"a":[["EC%3A5.4.99.41","lupeol synthase"],["RHEA%3A31383","(S)-2,3-epoxysqualene = lupeol"]],"b":[["terpenoids/lupeol.yaml","lupeol"]]},{"id":"CHEBI:73237","l":"(−)-noscapine","na":2,"nb":1,"a":[["EC%3A1.1.1.415","noscapine synthase"],["RHEA%3A57404","narcotine hemiacetal + NAD(+) = noscapine + NADH + H(+)"]],"b":[["alkaloids/noscapine.yaml","(−)-noscapine"]]},{"id":"CHEBI:77772","l":"ilicicolin H","na":2,"nb":1,"a":[["RHEA%3A64568","3-[(2E,4E,8S,10E,12Z)-4,8-dimethyltetradeca-2,4,10,12-tetraenoyl]-4-hydroxy-5-(4-hydroxyphenyl)-1,2-dihydropyridin-2-one = ilicicolin H"],["RHEA%3A64564","8-epi-ilicicolin H = ilicicolin H"]],"b":[["alkaloids/ilicicolin-h.yaml","ilicicolin H"]]},{"id":"CHEBI:80049","l":"coelichelin","na":2,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_80049","requires coelichelin"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["amino_acids_and_peptides/coelichelin.yaml","coelichelin"]]},{"id":"CHEBI:82799","l":"(R)-nephthenol","na":2,"nb":1,"a":[["EC%3A4.2.3.149","nephthenol synthase"],["RHEA%3A42992","(2E,6E,10E)-geranylgeranyl diphosphate + H2O = (R)-nephthenol + diphosphate"]],"b":[["terpenoids/r-nephthenol.yaml","(R)-nephthenol"]]},{"id":"CHEBI:84711","l":"staphyloferrin A","na":2,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_84711","requires staphyloferrin A"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["unclassified/staphyloferrin-a.yaml","staphyloferrin A"]]},{"id":"CHEBI:86012","l":"oxetanocin A","na":2,"nb":1,"a":[["EC%3A3.1.3.112","4'-phosphooxetanocin A phosphatase"],["RHEA%3A81367","4'-phosphooxetanocin A + H2O = oxetanocin A + phosphate"]],"b":[["carbohydrates/oxetanocin-a.yaml","oxetanocin A"]]},{"id":"NCBITaxon:105351","l":"Aspergillus awamori","na":2,"nb":1,"a":[["PROSITE%3APS00820","Glucoamylase active site region signature"],["TED%3AAF-A0A401KM36-F1-model_v4_TED03","TED novel fold AF-A0A401KM36-F1-model_v4_TED03"]],"b":[["alkaloids/aspergillin-pz.yaml","aspergillin PZ"]]},{"id":"NCBITaxon:105696","l":"Epicoccum nigrum","na":1,"nb":2,"a":[["TED%3AAF-A0A1Y2LQ80-F1-model_v4_TED02","TED novel fold AF-A0A1Y2LQ80-F1-model_v4_TED02"]],"b":[["polyketides/epipyrone-a.yaml","epipyrone A"],["terpenoids/carotene.yaml","β-carotene"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":1,"nb":2,"a":[["TED%3AAF-A0A367PA30-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A367PA30-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/cupriachelin.yaml","cupriachelin"],["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"]]},{"id":"NCBITaxon:1214568","l":"Diaporthe amygdali","na":1,"nb":2,"a":[["Pfam%3APF05704","Capsular polysaccharide synthesis protein"]],"b":[["terpenoids/5-9-10-labda-8-20-13-dien-15-yl-diphosphate.yaml","5α,9α,10β-labda-8(20),13-dien-15-yl diphosphate"],["terpenoids/phyllocladan-16-ol.yaml","phyllocladan-16α-ol"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":2,"nb":1,"a":[["Pfam%3APF22538","Hexaprenyl diphosphate synthase, small subunit"],["PROSITE%3APS01066","Undecaprenyl pyrophosphate synthase family signature"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:1278073","l":"Myxococcus stipitatus DSM 14675","na":2,"nb":1,"a":[["TED%3AAF-L7U5Z3-F1-model_v4_TED02","TED novel fold AF-L7U5Z3-F1-model_v4_TED02"],["TED%3AAF-L7UEI7-F1-model_v4_TED03","TED novel fold AF-L7UEI7-F1-model_v4_TED03"]],"b":[["polyketides/phenalamide-a2.yaml","phenalamide A2"]]},{"id":"NCBITaxon:1288362","l":"Actinoplanes sp. ATCC 53533","na":2,"nb":1,"a":[["TED%3AAF-A0A428XH31-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A428XH31-F1-model_v4_TED01"],["TED%3AAF-A0A428XQY1-F1-model_v4_TED01","TED novel fold AF-A0A428XQY1-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/uk-68-597.yaml","UK-68,597"]]},{"id":"NCBITaxon:1353533","l":"Pseudoalteromonas luteoviolacea 2ta16","na":2,"nb":1,"a":[["TED%3AAF-V4HNX8-F1-model_v4_TED01","TED novel fold AF-V4HNX8-F1-model_v4_TED01"],["TED%3AAF-V4JDU9-F1-model_v4_TED01","TED novel fold AF-V4JDU9-F1-model_v4_TED01"]],"b":[["shikimates_and_phenylpropanoids/pentabromopseudilin.yaml","pentabromopseudilin"]]},{"id":"NCBITaxon:1392248","l":"Aspergillus campestris (strain IBT 28561)","na":2,"nb":1,"a":[["Pfam%3APF11954","Domain of unknown function (DUF3471)"],["TED%3AAF-A0A2I1D498-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I1D498-F1-model_v4_TED01"]],"b":[["shikimates_and_phenylpropanoids/chlorflavonin.yaml","chlorflavonin"]]},{"id":"NCBITaxon:1449976","l":"Kutzneria viridogrisea DSM 43870","na":1,"nb":2,"a":[["TED%3AAF-W5WK35-F1-model_v4_TED01","TED novel fold AF-W5WK35-F1-model_v4_TED01"]],"b":[["carbohydrates/huimycin.yaml","huimycin"],["unclassified/aculeximycin.yaml","aculeximycin"]]},{"id":"NCBITaxon:1450533","l":"Aspergillus niger CBS 101883","na":1,"nb":2,"a":[["TED%3AAF-A0A319AKL5-F1-model_v4_TED01","TED novel fold AF-A0A319AKL5-F1-model_v4_TED01"]],"b":[["polyketides/campyrone-b.yaml","campyrone B"],["polyketides/pyrophen.yaml","pyrophen"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":2,"nb":1,"a":[["PROSITE%3APS01120","Urease nickel ligands signature"],["PROSITE%3APS00145","Urease active site"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:148305","l":"Pyricularia grisea","na":1,"nb":2,"a":[["TED%3AAF-A0A6P8AZV3-F1-model_v4_TED01","TED novel fold AF-A0A6P8AZV3-F1-model_v4_TED01"]],"b":[["alkaloids/pyrichalasin-h.yaml","pyrichalasin H"],["polyketides/terrestric-acid.yaml","terrestric acid"]]},{"id":"NCBITaxon:1519471","l":"Streptomyces sp. NRRL S-4","na":1,"nb":2,"a":[["TED%3AAF-A0A0N0YGV9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0N0YGV9-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/thiostreptamide-s4.yaml","thiostreptamide S4"],["polyketides/venturicidin-a.yaml","venturicidin A"]]},{"id":"NCBITaxon:161398","l":"Pseudoalteromonas phenolica","na":2,"nb":1,"a":[["TED%3AAF-A0A4Q7IPD1-F1-model_v4_TED01","TED novel fold AF-A0A4Q7IPD1-F1-model_v4_TED01"],["TED%3AAF-A0A4Q7IRU1-F1-model_v4_TED01","TED novel fold AF-A0A4Q7IRU1-F1-model_v4_TED01"]],"b":[["shikimates_and_phenylpropanoids/bromophene.yaml","bromophene"]]},{"id":"NCBITaxon:164546","l":"Cupriavidus taiwanensis","na":2,"nb":1,"a":[["TED%3AAF-A0A375CFL3-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A375CFL3-F1-model_v4_TED04"],["TED%3AAF-A0A375EJW3-F1-model_v4_TED03","TED novel fold AF-A0A375EJW3-F1-model_v4_TED03"]],"b":[["amino_acids_and_peptides/taiwachelin.yaml","taiwachelin"]]},{"id":"NCBITaxon:1654360","l":"Photobacterium galatheae","na":2,"nb":1,"a":[["TED%3AAF-A0A066RSN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A066RSN6-F1-model_v4_TED01"],["TED%3AAF-A0A066RLQ8-F1-model_v4_TED01","TED novel fold AF-A0A066RLQ8-F1-model_v4_TED01"]],"b":[["alkaloids/holomycin.yaml","holomycin"]]},{"id":"NCBITaxon:179408","l":"Phormidium nigroviride PCC 7112","na":2,"nb":1,"a":[["TED%3AAF-K9VAQ4-F1-model_v4_TED02","TED highly-symmetric fold AF-K9VAQ4-F1-model_v4_TED02"],["TED%3AAF-K9VBA8-F1-model_v4_TED02","TED novel fold AF-K9VBA8-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/viridisamide-a.yaml","viridisamide A"]]},{"id":"NCBITaxon:182096","l":"Aspergillus chevalieri","na":1,"nb":2,"a":[["TED%3AAF-A0A7R7VIB2-F1-model_v4_TED01","TED novel fold AF-A0A7R7VIB2-F1-model_v4_TED01"]],"b":[["polyketides/flavoglaucin.yaml","flavoglaucin"],["polyketides/sterigmatocystin.yaml","sterigmatocystin"]]},{"id":"NCBITaxon:1883078","l":"Dentipellis sp. KUC8613","na":2,"nb":1,"a":[["TED%3AAF-A0A5B1QTZ2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A5B1QTZ2-F1-model_v4_TED03"],["TED%3AAF-A0A5B1QFU0-F1-model_v4_TED02","TED novel fold AF-A0A5B1QFU0-F1-model_v4_TED02"]],"b":[["terpenoids/cyatha-3-12-diene.yaml","(-)-Cyatha-3,12-diene"]]},{"id":"NCBITaxon:1896","l":"Streptomyces bikiniensis","na":1,"nb":2,"a":[["Pfam%3APF00908","dTDP-4-dehydrorhamnose 3,5-epimerase"]],"b":[["carbohydrates/streptomycin.yaml","streptomycin"],["polyketides/chalcomycin-a.yaml","chalcomycin A"]]},{"id":"NCBITaxon:1921","l":"Streptomyces olivaceoviridis","na":1,"nb":2,"a":[["Pfam%3APF01356","Alpha amylase inhibitor"]],"b":[["polyketides/resistoflavine.yaml","resistoflavine"],["polyketides/resistomycin.yaml","resistomycin"]]},{"id":"NCBITaxon:1933","l":"Streptoalloteichus tenebrarius","na":2,"nb":1,"a":[["Pfam%3APF16861","Carbamoyltransferase C-terminus"],["Pfam%3APF02543","Carbamoyltransferase N-terminus"]],"b":[["carbohydrates/tobramycin.yaml","tobramycin"]]},{"id":"NCBITaxon:205918","l":"Pseudomonas syringae pv. syringae B728a","na":1,"nb":2,"a":[["Pfam%3APF15457","Type III T3SS secreted effector HopW1-1/HopPmaA"]],"b":[["alkaloids/secimide.yaml","secimide"],["unclassified/syringomycin.yaml","syringomycin"]]},{"id":"NCBITaxon:216595","l":"Pseudomonas [fluorescens] SBW25","na":2,"nb":1,"a":[["Pfam%3APF04996","Succinylarginine dihydrolase"],["TED%3AAF-A0A0G4E5V4-F1-model_v4_TED01","TED novel fold AF-A0A0G4E5V4-F1-model_v4_TED01"]],"b":[["unclassified/viscosin.yaml","viscosin"]]},{"id":"NCBITaxon:229535","l":"Penicillium nordicum","na":2,"nb":1,"a":[["TED%3AAF-A0A0M8NW73-F1-model_v4_TED02","TED novel fold AF-A0A0M8NW73-F1-model_v4_TED02"],["TED%3AAF-A0A0N0RXF0-F1-model_v4_TED02","TED novel fold AF-A0A0N0RXF0-F1-model_v4_TED02"]],"b":[["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"]]},{"id":"NCBITaxon:230091","l":"Micromonospora endolithica","na":1,"nb":2,"a":[["TED%3AAF-A0A3A9ZCA3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3A9ZCA3-F1-model_v4_TED02"]],"b":[["polyketides/loseolamycin-a1.yaml","loseolamycin A1"],["polyketides/loseolamycin-a2.yaml","loseolamycin A2"]]},{"id":"NCBITaxon:234621","l":"Rhodococcus erythropolis PR4","na":1,"nb":2,"a":[["TED%3AAF-C0ZLI2-F1-model_v4_TED01","TED novel fold AF-C0ZLI2-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/heterobactin-a.yaml","heterobactin A"],["amino_acids_and_peptides/heterobactin-s2.yaml","heterobactin S2"]]},{"id":"NCBITaxon:237631","l":"Ustilago maydis (strain 521 / FGSC 9021)","na":2,"nb":1,"a":[["TED%3AAF-A0A0D1E1G8-F1-model_v4_TED01","TED novel fold AF-A0A0D1E1G8-F1-model_v4_TED01"],["TED%3AAF-A0A0D1E4C0-F1-model_v4_TED02","TED novel fold AF-A0A0D1E4C0-F1-model_v4_TED02"]],"b":[["fatty_acids/ustilagic-acid.yaml","ustilagic acid"]]},{"id":"NCBITaxon:2607326","l":"Streptomonospora sp. PA3","na":2,"nb":1,"a":[["TED%3AAF-A0A6N8GAL7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8GAL7-F1-model_v4_TED01"],["TED%3AAF-A0A6N8GG78-F1-model_v4_TED01","TED novel fold AF-A0A6N8GG78-F1-model_v4_TED01"]],"b":[["polyketides/persiamycin-a.yaml","persiamycin A"]]},{"id":"NCBITaxon:264445","l":"Streptomyces hygroscopicus subsp. limoneus","na":1,"nb":2,"a":[["TED%3AAF-A0A0S2PAJ8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0S2PAJ8-F1-model_v4_TED03"]],"b":[["carbohydrates/validamycin-a-2.yaml","validamycin A"],["carbohydrates/validamycin-a.yaml","validamycin A"]]},{"id":"NCBITaxon:272123","l":"Anabaena cylindrica PCC 7122","na":2,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_FbnM","FbnM-type Dmaq biosynthesis peroxidase subunit family"],["TED%3AAF-K9ZFU9-F1-model_v4_TED01","TED highly-symmetric fold AF-K9ZFU9-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/anachelin.yaml","anachelin"]]},{"id":"NCBITaxon:272559","l":"Bacteroides fragilis NCTC 9343","na":2,"nb":1,"a":[["Pfam%3APF16355","Domain of unknown function (DUF4982)"],["Pfam%3APF14229","Domain of unknown function (DUF4332)"]],"b":[["fatty_acids/galactosylceramide.yaml","α-galactosylceramide"]]},{"id":"NCBITaxon:316274","l":"Herpetosiphon aurantiacus DSM 785","na":1,"nb":2,"a":[["TED%3AAF-A9AZN6-F1-model_v4_TED02","TED highly-symmetric fold AF-A9AZN6-F1-model_v4_TED02"]],"b":[["alkaloids/auriculamide.yaml","auriculamide"],["terpenoids/o-methylkolavelool.yaml","(+)-O-methylkolavelool"]]},{"id":"NCBITaxon:318","l":"Pseudomonas savastanoi pv. glycinea","na":2,"nb":1,"a":[["Pfam%3APF05394","Avirulence protein"],["TED%3AAF-A0A3M5VJX5-F1-model_v4_TED01","TED novel fold AF-A0A3M5VJX5-F1-model_v4_TED01"]],"b":[["polyketides/coronatine.yaml","coronatine"]]},{"id":"NCBITaxon:318829","l":"Pyricularia oryzae","na":2,"nb":1,"a":[["TED%3AAF-A0A4P7NAU2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P7NAU2-F1-model_v4_TED01"],["TED%3AAF-A0A4P7MZB7-F1-model_v4_TED02","TED novel fold AF-A0A4P7MZB7-F1-model_v4_TED02"]],"b":[["polyketides/nectriapyrone.yaml","nectriapyrone"]]},{"id":"NCBITaxon:322710","l":"Azotobacter vinelandii DJ","na":2,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_Orn_monoox","Metallophore-associated ornithine N5-monooxygenase family"],["proteintraitsmech%3AELIFE109154_PvdP","Pyoverdine chromophore maturation tyrosinase family"]],"b":[["amino_acids_and_peptides/azotobactin-d.yaml","azotobactin D"]]},{"id":"NCBITaxon:333849","l":"Enterococcus faecium DO","na":2,"nb":1,"a":[["Pfam%3APF08546","Ketopantoate reductase PanE/ApbA C terminal"],["Pfam%3APF02558","Ketopantoate reductase PanE/ApbA"]],"b":[["amino_acids_and_peptides/enterocin-a.yaml","enterocin A"]]},{"id":"NCBITaxon:338584","l":"Polymorphospora rubra","na":2,"nb":1,"a":[["TED%3AAF-A0A810NDK9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A810NDK9-F1-model_v4_TED01"],["TED%3AAF-A0A810N2K6-F1-model_v4_TED01","TED novel fold AF-A0A810N2K6-F1-model_v4_TED01"]],"b":[["terpenoids/trehangelin.yaml","trehangelin"]]},{"id":"NCBITaxon:33899","l":"Streptomyces galilaeus","na":1,"nb":2,"a":[["Pfam%3APF21036","Erythromycin biosynthesis protein CIII-like, N-terminal domain"]],"b":[["polyketides/aclacinomycin.yaml","aclacinomycin"],["polyketides/cinerubin-b.yaml","cinerubin B"]]},{"id":"NCBITaxon:339670","l":"Burkholderia ambifaria AMMD","na":1,"nb":2,"a":[["Pfam%3APF11004","3-deoxy-D-manno-oct-2-ulosonic acid (Kdo) hydroxylase"]],"b":[["alkaloids/cepaciachelin.yaml","cepaciachelin"],["polyketides/enacyloxin-iia.yaml","enacyloxin IIa"]]},{"id":"NCBITaxon:348901","l":"Cercospora zeina","na":2,"nb":1,"a":[["TED%3AAF-A0A2I0RIM7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I0RIM7-F1-model_v4_TED01"],["TED%3AAF-A0A2I0RWG4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I0RWG4-F1-model_v4_TED01"]],"b":[["polyketides/cercosporin-2.yaml","cercosporin"]]},{"id":"NCBITaxon:349521","l":"Hahella chejuensis KCTC 2396","na":2,"nb":1,"a":[["TED%3AAF-Q2SFS2-F1-model_v4_TED01","TED novel fold AF-Q2SFS2-F1-model_v4_TED01"],["TED%3AAF-Q2SI43-F1-model_v4_TED03","TED novel fold AF-Q2SI43-F1-model_v4_TED03"]],"b":[["alkaloids/prodigiosin-2.yaml","prodigiosin"]]},{"id":"NCBITaxon:36746","l":"Pseudomonas cichorii","na":1,"nb":2,"a":[["TED%3AAF-A0A3M4VH83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M4VH83-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/cichofactin-a.yaml","cichofactin A"],["amino_acids_and_peptides/cichofactin-b.yaml","cichofactin B"]]},{"id":"NCBITaxon:3755","l":"Prunus dulcis","na":2,"nb":1,"a":[["PROSITE%3APS00305","11-S plant seed storage proteins signature"],["TED%3AAF-A0A5E4FP94-F1-model_v4_TED01","TED novel fold AF-A0A5E4FP94-F1-model_v4_TED01"]],"b":[["shikimates_and_phenylpropanoids/4-hydroxy-3-prenylbenzoic-acid.yaml","4-hydroxy-3-prenylbenzoic acid"]]},{"id":"NCBITaxon:377629","l":"Teredinibacter turnerae T7901","na":1,"nb":2,"a":[["TED%3AAF-C5BKS7-F1-model_v4_TED02","TED novel fold AF-C5BKS7-F1-model_v4_TED02"]],"b":[["polyketides/tartrolon-d.yaml","tartrolon D"],["polyketides/tartrolon-e.yaml","tartrolon E"]]},{"id":"NCBITaxon:38300","l":"Streptomyces pristinaespiralis","na":1,"nb":2,"a":[["Pfam%3APF12323","Helix-turn-helix domain"]],"b":[["amino_acids_and_peptides/pristinin-a3.yaml","pristinin A3"],["terpenoids/2s-3r-9r-pristinol.yaml","(+)-(2S,3R,9R)-pristinol"]]},{"id":"NCBITaxon:38313","l":"Shewanella algae","na":2,"nb":1,"a":[["TED%3AAF-A0A1S2T8W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S2T8W3-F1-model_v4_TED01"],["TED%3AAF-A0A8A5EFG1-F1-model_v4_TED02","TED novel fold AF-A0A8A5EFG1-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/avaroferrin.yaml","avaroferrin"]]},{"id":"NCBITaxon:413071","l":"Trichoderma virens Gv29-8","na":1,"nb":2,"a":[["Pfam%3APF07249","Cerato-platanin"]],"b":[["polyketides/trichoxide.yaml","trichoxide"],["unclassified/gliovirin.yaml","gliovirin"]]},{"id":"NCBITaxon:42881","l":"Streptomyces chromofuscus","na":1,"nb":2,"a":[["TED%3AAF-A0A7M2T2Z7-F1-model_v4_TED01","TED novel fold AF-A0A7M2T2Z7-F1-model_v4_TED01"]],"b":[["alkaloids/indigoidine.yaml","indigoidine"],["polyketides/herboxidiene.yaml","herboxidiene"]]},{"id":"NCBITaxon:436515","l":"Variovorax boronicumulans","na":1,"nb":2,"a":[["TED%3AAF-A0A250DMB0-F1-model_v4_TED01","TED novel fold AF-A0A250DMB0-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/variochelin-a.yaml","variochelin A"],["amino_acids_and_peptides/variochelin-b.yaml","variochelin B"]]},{"id":"NCBITaxon:441959","l":"Talaromyces stipitatus ATCC 10500","na":1,"nb":2,"a":[["Pfam%3APF26719","ATPase synthesis protein 25, C-terminal TPR repeats"]],"b":[["polyketides/duclauxin.yaml","duclauxin"],["shikimates_and_phenylpropanoids/stipitatic-acid.yaml","stipitatic acid"]]},{"id":"NCBITaxon:446","l":"Legionella pneumophila","na":2,"nb":1,"a":[["Pfam%3APF14860","DrrA phosphatidylinositol 4-phosphate binding domain"],["TED%3AAF-A0A822WCM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A822WCM6-F1-model_v4_TED01"]],"b":[["fatty_acids/lipopolysaccharide.yaml","lipopolysaccharide"]]},{"id":"NCBITaxon:45151","l":"Pyrenophora tritici-repentis","na":2,"nb":1,"a":[["TED%3AAF-A0A2W1ECP7-F1-model_v4_TED01","TED novel fold AF-A0A2W1ECP7-F1-model_v4_TED01"],["TED%3AAF-A0A834SF78-F1-model_v4_TED01","TED novel fold AF-A0A834SF78-F1-model_v4_TED01"]],"b":[["unclassified/triticone-b.yaml","triticone B"]]},{"id":"NCBITaxon:4558","l":"Sorghum bicolor","na":1,"nb":2,"a":[["TED%3AAF-A0A1W0W5T3-F1-model_v4_TED02","TED novel fold AF-A0A1W0W5T3-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/s-4-hydroxymandelonitrile-d-glucoside.yaml","(S)-4-hydroxymandelonitrile β-D-glucoside"],["shikimates_and_phenylpropanoids/alternariol.yaml","alternariol"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":2,"nb":1,"a":[["PROSITE%3APS00820","Glucoamylase active site region signature"],["TED%3AAF-A0A7I9G6Y3-F1-model_v4_TED02","TED novel fold AF-A0A7I9G6Y3-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":2,"nb":1,"a":[["Pfam%3APF07833","Copper amine oxidase N-terminal domain"],["TED%3AAF-A0A447L715-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A447L715-F1-model_v4_TED02"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:578457","l":"Serpula lacrymans var. lacrymans S7.9","na":2,"nb":1,"a":[["TED%3AAF-F8NT94-F1-model_v4_TED01","TED highly-symmetric fold AF-F8NT94-F1-model_v4_TED01"],["TED%3AAF-F8NMD8-F1-model_v4_TED01","TED novel fold AF-F8NMD8-F1-model_v4_TED01"]],"b":[["terpenoids/ent-kauren-16alpha-ol.yaml","ent-kauren-16alpha-ol"]]},{"id":"NCBITaxon:58291","l":"Rhizopus microsporus","na":2,"nb":1,"a":[["TED%3AAF-A0A1X0RNA5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1X0RNA5-F1-model_v4_TED03"],["TED%3AAF-A0A1X0S5N4-F1-model_v4_TED01","TED novel fold AF-A0A1X0S5N4-F1-model_v4_TED01"]],"b":[["unclassified/rhizoxin-a.yaml","rhizoxin A"]]},{"id":"NCBITaxon:587753","l":"Pseudomonas chlororaphis","na":2,"nb":1,"a":[["TED%3AAF-A0A8A9Z2C4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A8A9Z2C4-F1-model_v4_TED03"],["TED%3AAF-A0A0A6DEM6-F1-model_v4_TED01","TED novel fold AF-A0A0A6DEM6-F1-model_v4_TED01"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"NCBITaxon:60894","l":"Saccharopolyspora spinosa","na":1,"nb":2,"a":[["Pfam%3APF03559","NDP-hexose 2,3-dehydratase"]],"b":[["polyketides/a83543a.yaml","A83543A"],["polyketides/spinosyn-d.yaml","spinosyn D"]]},{"id":"NCBITaxon:62101","l":"Candidatus Endobugula sertula","na":1,"nb":2,"a":[["TED%3AAF-A0A1D2QPY2-F1-model_v4_TED01","TED novel fold AF-A0A1D2QPY2-F1-model_v4_TED01"]],"b":[["polyketides/bryostatin-2.yaml","bryostatin"],["polyketides/bryostatin.yaml","bryostatin"]]},{"id":"NCBITaxon:634771","l":"Chitinophaga eiseniae","na":1,"nb":2,"a":[["TED%3AAF-A0A847SE20-F1-model_v4_TED01","TED novel fold AF-A0A847SE20-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/pentacitidin-a.yaml","pentacitidin A"],["amino_acids_and_peptides/pentacitidin-b.yaml","pentacitidin B"]]},{"id":"NCBITaxon:643403","l":"Streptomyces sp. MK730-62F2","na":1,"nb":2,"a":[["Pfam%3APF14269","Arylsulfotransferase (ASST)"]],"b":[["carbohydrates/caprazamycin-aglycon.yaml","caprazamycin aglycon"],["carbohydrates/caprazamycin.yaml","caprazamycin"]]},{"id":"NCBITaxon:65","l":"Herpetosiphon aurantiacus","na":1,"nb":2,"a":[["Pfam%3APF09520","Type II restriction endonuclease, HinfI"]],"b":[["alkaloids/auriculamide.yaml","auriculamide"],["terpenoids/o-methylkolavelool.yaml","(+)-O-methylkolavelool"]]},{"id":"NCBITaxon:6573","l":"Mizuhopecten yessoensis","na":2,"nb":1,"a":[["TED%3AAF-A0A210PVN9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A210PVN9-F1-model_v4_TED02"],["TED%3AAF-A0A210PMU5-F1-model_v4_TED01","TED novel fold AF-A0A210PMU5-F1-model_v4_TED01"]],"b":[["alkaloids/gonyautoxin-2.yaml","gonyautoxin 2"]]},{"id":"NCBITaxon:66431","l":"Streptomyces thioluteus","na":1,"nb":2,"a":[["Pfam%3APF11583","P-aminobenzoate N-oxygenase AurF"]],"b":[["alkaloids/sf2768.yaml","SF2768"],["polyketides/aureothin.yaml","aureothin"]]},{"id":"NCBITaxon:6848","l":"Carcinoscorpius rotundicauda","na":1,"nb":2,"a":[["Pfam%3APF02035","Coagulin"]],"b":[["alkaloids/neosaxitoxin.yaml","neosaxitoxin"],["alkaloids/saxitoxin.yaml","saxitoxin"]]},{"id":"NCBITaxon:7787","l":"Tetronarce californica","na":2,"nb":1,"a":[["PROSITE%3APS00405","43 Kd postsynaptic protein signature"],["Pfam%3APF10579","Rapsyn N-terminal myristoylation and linker region"]],"b":[["alkaloids/huperzine-a.yaml","huperzine A"]]},{"id":"NCBITaxon:78410","l":"Neonectria ditissima","na":1,"nb":2,"a":[["TED%3AAF-A0A0P7AKS8-F1-model_v4_TED02","TED novel fold AF-A0A0P7AKS8-F1-model_v4_TED02"]],"b":[["unclassified/colletochlorin-b.yaml","Colletochlorin B"],["unclassified/colletorin-b.yaml","Colletorin B"]]},{"id":"NCBITaxon:79329","l":"Chitinophaga pinensis","na":2,"nb":1,"a":[["TED%3AAF-A0A5C6LK20-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C6LK20-F1-model_v4_TED01"],["TED%3AAF-A0A5C6LKB6-F1-model_v4_TED01","TED novel fold AF-A0A5C6LKB6-F1-model_v4_TED01"]],"b":[["polyketides/flexirubin.yaml","flexirubin"]]},{"id":"NCBITaxon:945553","l":"Hypholoma sublateritium FD-334 SS-4","na":2,"nb":1,"a":[["TED%3AAF-A0A0D2NQE0-F1-model_v4_TED01","TED novel fold AF-A0A0D2NQE0-F1-model_v4_TED01"],["TED%3AAF-A0A0D2PBZ7-F1-model_v4_TED01","TED novel fold AF-A0A0D2PBZ7-F1-model_v4_TED01"]],"b":[["terpenoids/naematolin.yaml","naematolin"]]},{"id":"NCBITaxon:985895","l":"Plenodomus lingam JN3","na":2,"nb":1,"a":[["TED%3AAF-E5A7U7-F1-model_v4_TED01","TED novel fold AF-E5A7U7-F1-model_v4_TED01"],["TED%3AAF-E5A9E1-F1-model_v4_TED03","TED novel fold AF-E5A9E1-F1-model_v4_TED03"]],"b":[["terpenoids/2-cis-abscisic-acid.yaml","2-cis-abscisic acid"]]},{"id":"RHEA:32631","l":"","na":2,"nb":1,"a":[["EC%3A1.14.13.154","erythromycin 12 hydroxylase"],["RHEA%3A32631","erythromycin D + NADPH + O2 + H(+) = erythromycin C + NADP(+) + H2O"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"RHEA:40299","l":"","na":2,"nb":1,"a":[["EC%3A1.14.15.35","6-deoxyerythronolide B hydroxylase"],["RHEA%3A40299","6-deoxyerythronolide B + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = erythronolide B + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"UniProt:O00763.","l":"","na":2,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RCP","RCP-binding site"],["proteintraitsmech%3ABIOLIP_S1A","S1A-binding site"]],"b":[["polyketides/soraphen-a.yaml","soraphen A"]]},{"id":"UniProt:P00516","l":"","na":2,"nb":1,"a":[["EC%3A2.7.11.12","cGMP-dependent protein kinase"],["Pfam%3APF16808","Coiled-coil N-terminus of cGMP-dependent protein kinase"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P00517","l":"","na":1,"nb":2,"a":[["MCSA%3A757","cAMP-dependent protein kinase"]],"b":[["alkaloids/methylarcyriarubin.yaml","methylarcyriarubin"],["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P04058.","l":"","na":2,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_03S","03S-binding site"],["proteintraitsmech%3ABIOLIP_AA7","AA7-binding site"]],"b":[["alkaloids/physostigmine.yaml","physostigmine"]]},{"id":"UniProt:P0AD64","l":"","na":2,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MA4","MA4-binding site"],["proteintraitsmech%3ABIOLIP_TSL","TSL-binding site"]],"b":[["amino_acids_and_peptides/clavulanic-acid-2.yaml","clavulanic acid"]]},{"id":"CHEBI:133919","l":"decarbamoylsaxitoxin","na":1,"nb":1,"a":[["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"]],"b":[["alkaloids/decarbamoylsaxitoxin.yaml","decarbamoylsaxitoxin"]]},{"id":"CHEBI:138511","l":"piericidin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_HQH","HQH-binding site"]],"b":[["polyketides/piericidin-a.yaml","piericidin A"]]},{"id":"CHEBI:142639","l":"nectriapyrone","na":1,"nb":1,"a":[["RHEA%3A58748","desmethylnectriapyrone + S-adenosyl-L-methionine = nectriapyrone + S-adenosyl-L-homocysteine + H(+)"]],"b":[["polyketides/nectriapyrone.yaml","nectriapyrone"]]},{"id":"CHEBI:145105","l":"asperphenamate","na":1,"nb":1,"a":[["RHEA%3A61908","N-benzoyl-L-phenylalaninol + benzoate + L-phenylalanine + 2 ATP = asperphenamate + 2 AMP + 2 diphosphate + H(+)"]],"b":[["unclassified/asperphenamate.yaml","asperphenamate"]]},{"id":"CHEBI:146007","l":"(M)-viriditoxin","na":1,"nb":1,"a":[["RHEA%3A62884","4 semiviriditoxin + O2 = 2 (M)-viriditoxin + 2 H2O"]],"b":[["polyketides/viriditoxin.yaml","viriditoxin"]]},{"id":"CHEBI:15353","l":"blasticidin S","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BLS","BLS-binding site"]],"b":[["carbohydrates/blasticidin-s.yaml","blasticidin S"]]},{"id":"CHEBI:15732","l":"phosphonoacetic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_PAE","PAE-binding site"]],"b":[["unclassified/phosphonoacetic-acid.yaml","phosphonoacetic acid"]]},{"id":"CHEBI:15738","l":"staurosporine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_STU","STU-binding site"]],"b":[["alkaloids/staurosporine.yaml","staurosporine"]]},{"id":"CHEBI:157682","l":"vanchrobactin","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_157682","requires vanchrobactin"]],"b":[["amino_acids_and_peptides/vanchrobactin.yaml","vanchrobactin"]]},{"id":"CHEBI:16349","l":"L-citrulline","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_CIR","CIR-binding site"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"CHEBI:167379","l":"trichobrasilenol","na":1,"nb":1,"a":[["RHEA%3A66644","(2E,6E)-farnesyl diphosphate + H2O = trichobrasilenol + diphosphate"]],"b":[["terpenoids/trichobrasilenol.yaml","trichobrasilenol"]]},{"id":"CHEBI:167886","l":"aetokthonotoxin","na":1,"nb":1,"a":[["RHEA%3A82519","5,7-dibromo-indole-3-carbonitrile + 2,3,5-tribromoindole + 2 reduced [2Fe-2S]-[ferredoxin] + O2 + 2 H(+) = aetokthonotoxin + 2 oxidized [2Fe-2S]-[ferredoxin] + 2 H2O"]],"b":[["alkaloids/aetokthonotoxin.yaml","aetokthonotoxin"]]},{"id":"CHEBI:168396","l":"mycophenolic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MOA","MOA-binding site"]],"b":[["polyketides/mycophenolic-acid.yaml","mycophenolic acid"]]},{"id":"CHEBI:171659","l":"quinolobactin","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_171659","requires quinolobactin"]],"b":[["alkaloids/quinolobactin.yaml","quinolobactin"]]},{"id":"CHEBI:18157","l":"aerobactin","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18157","requires aerobactin"]],"b":[["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]]},{"id":"CHEBI:219836","l":"anditomin","na":1,"nb":1,"a":[["RHEA%3A82659","andilesin C + 2-oxoglutarate + O2 = anditomin + succinate + CO2 + H2O"]],"b":[["unclassified/anditomin.yaml","anditomin"]]},{"id":"CHEBI:22152","l":"2-cis-abscisic acid","na":1,"nb":1,"a":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]],"b":[["terpenoids/2-cis-abscisic-acid.yaml","2-cis-abscisic acid"]]},{"id":"CHEBI:26789","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_OI9","OI9-binding site"]],"b":[["carbohydrates/streptothricin-f.yaml","streptothricin F"]]},{"id":"CHEBI:27592","l":"ectoine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_4CS","4CS-binding site"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"CHEBI:27834","l":"pentostatin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DCF","DCF-binding site"]],"b":[["alkaloids/pentostatin.yaml","pentostatin"]]},{"id":"CHEBI:28364","l":"all-cis-5,8,11,14,17-icosapentaenoic acid","na":1,"nb":1,"a":[["TCDB%3A4.C.1","The Fatty Acid Group Translocation (FAT) Family"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"CHEBI:28748","l":"doxorubicin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DM2","DM2-binding site"]],"b":[["polyketides/doxorubicin.yaml","doxorubicin"]]},{"id":"CHEBI:28864","l":"tobramycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TOY","TOY-binding site"]],"b":[["carbohydrates/tobramycin.yaml","tobramycin"]]},{"id":"CHEBI:29703","l":"validamycin A","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["carbohydrates/validamycin-a.yaml","validamycin A"]]},{"id":"CHEBI:30838","l":"itaconic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ITN","ITN-binding site"]],"b":[["fatty_acids/itaconic-acid.yaml","itaconic acid"]]},{"id":"CHEBI:31856","l":"mithramycin","na":1,"nb":1,"a":[["RHEA%3A85455","iso-mithramycin = mithramycin"]],"b":[["polyketides/mithramycin.yaml","mithramycin"]]},{"id":"CHEBI:32079","l":"pyrrolnitrin","na":1,"nb":1,"a":[["RHEA%3A46136","aminopyrrolnitrin + NADPH + 2 O2 + H(+) = pyrrolnitrin + NADP(+) + 2 H2O"]],"b":[["alkaloids/pyrrolnitrin.yaml","pyrrolnitrin"]]},{"id":"CHEBI:34970","l":"saxitoxin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9SL","9SL-binding site"]],"b":[["alkaloids/saxitoxin.yaml","saxitoxin"]]},{"id":"CHEBI:38240","l":"solanapyrone D","na":1,"nb":1,"a":[["RHEA%3A75143","prosolanapyrone III = solanapyrone D"]],"b":[["polyketides/solanapyrone-d.yaml","solanapyrone D"]]},{"id":"CHEBI:40009","l":"D-cycloserine","na":1,"nb":1,"a":[["TCDB%3A2.A.3","The Amino Acid-Polyamine-Organocation (APC) Family"]],"b":[["amino_acids_and_peptides/cycloserine.yaml","cycloserine"]]},{"id":"CHEBI:41977","l":"daunorubicin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_DM1","DM1-binding site"]],"b":[["polyketides/daunorubicin.yaml","daunorubicin"]]},{"id":"CHEBI:42223","l":"emodin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_EMO","EMO-binding site"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"CHEBI:42355","l":"erythromycin A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ERY","ERY-binding site"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"CHEBI:42639","l":"γ-butyrolactone","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_GBL","GBL-binding site"]],"b":[["fatty_acids/butyrolactone.yaml","γ-butyrolactone"]]},{"id":"CHEBI:43616","l":"K-252a","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_KSA","KSA-binding site"]],"b":[["alkaloids/k-252a.yaml","K-252a"]]},{"id":"CHEBI:45257","l":"ribostamycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RIO","RIO-binding site"]],"b":[["carbohydrates/ribostamycin.yaml","ribostamycin"]]},{"id":"CHEBI:473992","l":"nystatin A1","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_A1AZ7","A1AZ7-binding site"]],"b":[["polyketides/nystatin-a1.yaml","nystatin A1"]]},{"id":"CHEBI:48267","l":"tubercidin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_TBN","TBN-binding site"]],"b":[["carbohydrates/tubercidin.yaml","tubercidin"]]},{"id":"CHEBI:48947","l":"clavulanic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_J01","J01-binding site"]],"b":[["amino_acids_and_peptides/clavulanic-acid.yaml","clavulanic acid"]]},{"id":"CHEBI:50437","l":"nocardamine","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_50437","requires desferrioxamine E"]],"b":[["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"]]},{"id":"CHEBI:623918","l":"nikkomycin Z","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BGI","BGI-binding site"]],"b":[["alkaloids/nikkomycin-z.yaml","nikkomycin Z"]]},{"id":"CHEBI:64318","l":"ergotamine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ERM","ERM-binding site"]],"b":[["alkaloids/ergotamine.yaml","ergotamine"]]},{"id":"CHEBI:64695","l":"pyripyropene A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_7T8","7T8-binding site"]],"b":[["unclassified/pyripyropene-a.yaml","pyripyropene A"]]},{"id":"CHEBI:67811","l":"zorbamycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_52G","52G-binding site"]],"b":[["amino_acids_and_peptides/zorbamycin.yaml","zorbamycin"]]},{"id":"CHEBI:68241","l":"platencin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_N32","N32-binding site"]],"b":[["terpenoids/platencin.yaml","platencin"]]},{"id":"CHEBI:70064","l":"","na":1,"nb":1,"a":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]],"b":[["polyketides/landomycin-a.yaml","landomycin A"]]},{"id":"CHEBI:7025","l":"mupirocin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_MRC","MRC-binding site"]],"b":[["polyketides/mupirocin.yaml","mupirocin"]]},{"id":"CHEBI:70399","l":"meleagrine","na":1,"nb":1,"a":[["RHEA%3A51732","glandicoline B + S-adenosyl-L-methionine = meleagrin + S-adenosyl-L-homocysteine + H(+)"]],"b":[["alkaloids/meleagrine.yaml","meleagrine"]]},{"id":"CHEBI:7061","l":"myxochelin B","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_7061","requires myxochelin B"]],"b":[["alkaloids/myxochelin-b.yaml","myxochelin B"]]},{"id":"CHEBI:74926","l":"patulin","na":1,"nb":1,"a":[["RHEA%3A62228","(E)-ascladiol + A = patulin + AH2"]],"b":[["polyketides/patulin.yaml","patulin"]]},{"id":"CHEBI:7508","l":"framycetin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_NMY","NMY-binding site"]],"b":[["carbohydrates/framycetin.yaml","framycetin"]]},{"id":"CHEBI:77742","l":"bongkrekic acid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_BKC","BKC-binding site"]],"b":[["fatty_acids/bongkrekic-acid.yaml","bongkrekic acid"]]},{"id":"CHEBI:79391","l":"(−)-chuangxinmycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_9E0","9E0-binding site"]],"b":[["alkaloids/chuangxinmycin.yaml","(−)-chuangxinmycin"]]},{"id":"CHEBI:84168","l":"4-hydroxy-6-pentadecylpyran-2-one","na":1,"nb":1,"a":[["RHEA%3A44260","hexadecanoyl-CoA + 2 malonyl-CoA + 2 H(+) = 4-hydroxy-6-pentadecylpyran-2-one + 2 CO2 + 3 CoA"]],"b":[["polyketides/4-hydroxy-6-pentadecylpyran-2-one.yaml","4-hydroxy-6-pentadecylpyran-2-one"]]},{"id":"CHEBI:84171","l":"4-hydroxy-6-(2-oxoheptadecyl)pyran-2-one","na":1,"nb":1,"a":[["RHEA%3A44268","hexadecanoyl-CoA + 3 malonyl-CoA + 3 H(+) = 4-hydroxy-6-(2-oxoheptadecyl)pyran-2-one + 3 CO2 + 4 CoA"]],"b":[["polyketides/4-hydroxy-6-2-oxoheptadecyl-pyran-2-one.yaml","4-hydroxy-6-(2-oxoheptadecyl)pyran-2-one"]]},{"id":"CHEBI:84582","l":"schizokinen","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_84582","requires schizokinen"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"]]},{"id":"CHEBI:84585","l":"vibrioferrin","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_84585","requires vibrioferrin"]],"b":[["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"CHEBI:85997","l":"sangivamycin","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SGV","SGV-binding site"]],"b":[["carbohydrates/sangivamycin.yaml","sangivamycin"]]},{"id":"CHEBI:9168","l":"sirolimus","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RAP","RAP-binding site"]],"b":[["polyketides/sirolimus.yaml","sirolimus"]]},{"id":"CHEBI:9200","l":"soraphen A","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_S1A","S1A-binding site"]],"b":[["polyketides/soraphen-a.yaml","soraphen A"]]},{"id":"CHEBI:92181","l":"lasalocid","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_LSD","LSD-binding site"]],"b":[["polyketides/lasalocid.yaml","lasalocid"]]},{"id":"CHEBI:9367","l":"swainsonine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SWA","SWA-binding site"]],"b":[["alkaloids/swainsonine.yaml","swainsonine"]]},{"id":"CHEBI:9519","l":"thebaine","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_D4R","D4R-binding site"]],"b":[["alkaloids/thebaine.yaml","thebaine"]]},{"id":"CHEBI:9973","l":"vibriobactin","na":1,"nb":1,"a":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_9973","requires vibriobactin"]],"b":[["alkaloids/vibriobactin.yaml","vibriobactin"]]},{"id":"NCBITaxon:103733","l":"Saccharothrix syringae","na":1,"nb":1,"a":[["TED%3AAF-A0A5Q0GZB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Q0GZB9-F1-model_v4_TED01"]],"b":[["polyketides/nocamycin.yaml","nocamycin"]]},{"id":"NCBITaxon:104268","l":"Tenacibaculum mesophilum","na":1,"nb":1,"a":[["TED%3AAF-A0A1M5HMT5-F1-model_v4_TED01","TED novel fold AF-A0A1M5HMT5-F1-model_v4_TED01"]],"b":[["fatty_acids/bisucaberin-b.yaml","bisucaberin B"]]},{"id":"NCBITaxon:1081091","l":"Amycolatopsis balhimycina DSM 5908","na":1,"nb":1,"a":[["TED%3AAF-A0A428WRS4-F1-model_v4_TED02","TED novel fold AF-A0A428WRS4-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/balhimycin.yaml","balhimycin"]]},{"id":"NCBITaxon:1108595","l":"Chromobacterium vaccinii","na":1,"nb":1,"a":[["TED%3AAF-A0A2L2B8V3-F1-model_v4_TED02","TED novel fold AF-A0A2L2B8V3-F1-model_v4_TED02"]],"b":[["unclassified/fr900359-2.yaml","FR900359"]]},{"id":"NCBITaxon:1124983","l":"Pseudomonas protegens CHA0","na":1,"nb":1,"a":[["Pfam%3APF18089","DAPG hydrolase PhiG domain"]],"b":[["fatty_acids/protegencin.yaml","protegencin"]]},{"id":"NCBITaxon:1165","l":"Anabaena cylindrica","na":1,"nb":1,"a":[["Pfam%3APF17275","Family of unknown function (DUF5340)"]],"b":[["amino_acids_and_peptides/anachelin.yaml","anachelin"]]},{"id":"NCBITaxon:1214242","l":"Streptomyces collinus Tu 365","na":1,"nb":1,"a":[["TED%3AAF-S5VBX8-F1-model_v4_TED03","TED novel fold AF-S5VBX8-F1-model_v4_TED03"]],"b":[["unclassified/kirromycin.yaml","kirromycin"]]},{"id":"NCBITaxon:122368","l":"Cercospora beticola","na":1,"nb":1,"a":[["TED%3AAF-A0A2G5HT37-F1-model_v4_TED02","TED novel fold AF-A0A2G5HT37-F1-model_v4_TED02"]],"b":[["polyketides/cercosporin.yaml","cercosporin"]]},{"id":"NCBITaxon:1254432","l":"Sorangium cellulosum So0157-2","na":1,"nb":1,"a":[["TED%3AAF-S4XT05-F1-model_v4_TED01","TED novel fold AF-S4XT05-F1-model_v4_TED01"]],"b":[["unclassified/epothilone-b.yaml","epothilone B"]]},{"id":"NCBITaxon:1266744","l":"Talaromyces purpureogenus","na":1,"nb":1,"a":[["Pfam%3APF10503","Esterase PHB depolymerase"]],"b":[["shikimates_and_phenylpropanoids/o-orsellinic-acid.yaml","o-orsellinic acid"]]},{"id":"NCBITaxon:1283841","l":"Stachybotrys chlorohalonatus IBT 40285","na":1,"nb":1,"a":[["TED%3AAF-A0A084QGW0-F1-model_v4_TED01","TED novel fold AF-A0A084QGW0-F1-model_v4_TED01"]],"b":[["alkaloids/isoindolin-1-one.yaml","isoindolin-1-one"]]},{"id":"NCBITaxon:1297742","l":"Pseudomyxococcus hansupus","na":1,"nb":1,"a":[["TED%3AAF-A0A0H4X3W5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0H4X3W5-F1-model_v4_TED02"]],"b":[["unclassified/myxochromide-c.yaml","myxochromide C"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":1,"nb":1,"a":[["PROSITE%3APS01043","Transposases, IS30 family, signature"]],"b":[["amino_acids_and_peptides/salivaricin-d.yaml","salivaricin D"]]},{"id":"NCBITaxon:1341132","l":"Aspergillus welwitschiae","na":1,"nb":1,"a":[["TED%3AAF-A0A3F3Q9J6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3F3Q9J6-F1-model_v4_TED02"]],"b":[["shikimates_and_phenylpropanoids/ochratoxin-a.yaml","ochratoxin A"]]},{"id":"NCBITaxon:1343740","l":"Streptomyces rapamycinicus NRRL 5491","na":1,"nb":1,"a":[["Pfam%3APF21168","Chorismatase FkbO/Hyg5-like, N-terminal"]],"b":[["polyketides/sirolimus.yaml","sirolimus"]]},{"id":"NCBITaxon:13689","l":"Sphingomonas paucimobilis","na":1,"nb":1,"a":[["PROSITE%3APS00082","Extradiol ring-cleavage dioxygenases signature"]],"b":[["unclassified/minimycin.yaml","minimycin"]]},{"id":"NCBITaxon:1408161","l":"Plenodomus tracheiphilus IPT5","na":1,"nb":1,"a":[["TED%3AAF-A0A6A7APH0-F1-model_v4_TED02","TED novel fold AF-A0A6A7APH0-F1-model_v4_TED02"]],"b":[["shikimates_and_phenylpropanoids/mellein.yaml","(-)-Mellein"]]},{"id":"NCBITaxon:150374","l":"Escovopsis weberi","na":1,"nb":1,"a":[["TED%3AAF-A0A0M8MSE0-F1-model_v4_TED01","TED novel fold AF-A0A0M8MSE0-F1-model_v4_TED01"]],"b":[["unclassified/melinacidin-iv.yaml","melinacidin IV"]]},{"id":"NCBITaxon:1563222","l":"Citrobacter pasteurii","na":1,"nb":1,"a":[["TED%3AAF-A0A6N6K4M5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N6K4M5-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/citrocin.yaml","citrocin"]]},{"id":"NCBITaxon:1593482","l":"Massilia sp. YMA4","na":1,"nb":1,"a":[["TED%3AAF-A0A7U5XZA1-F1-model_v4_TED02","TED novel fold AF-A0A7U5XZA1-F1-model_v4_TED02"]],"b":[["unclassified/empedopeptin.yaml","empedopeptin"]]},{"id":"NCBITaxon:159449","l":"Embleya scabrispora","na":1,"nb":1,"a":[["TED%3AAF-A0A1T3P567-F1-model_v4_TED01","TED novel fold AF-A0A1T3P567-F1-model_v4_TED01"]],"b":[["unclassified/hitachimycin.yaml","hitachimycin"]]},{"id":"NCBITaxon:173365","l":"Methylobacter tundripaludum","na":1,"nb":1,"a":[["TED%3AAF-A0A2S6HGL6-F1-model_v4_TED02","TED novel fold AF-A0A2S6HGL6-F1-model_v4_TED02"]],"b":[["unclassified/tundrenone.yaml","tundrenone"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":1,"nb":1,"a":[["Pfam%3APF08124","Polysaccharide lyase family 8, N terminal alpha-helical domain"]],"b":[["amino_acids_and_peptides/cutimycin.yaml","cutimycin"]]},{"id":"NCBITaxon:1764","l":"Mycobacterium avium","na":1,"nb":1,"a":[["Pfam%3APF01882","Protein of unknown function DUF58"]],"b":[["fatty_acids/gpl-21.yaml","GPL-21"]]},{"id":"NCBITaxon:180498","l":"Jatropha curcas","na":1,"nb":1,"a":[["TED%3AAF-A0A067KNY2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A067KNY2-F1-model_v4_TED01"]],"b":[["terpenoids/casbene.yaml","casbene"]]},{"id":"NCBITaxon:1828523","l":"","na":1,"nb":1,"a":[["Pfam%3APF26335","Beta-lactamase-like ARB_00930-like, C-terminal domain"]],"b":[["polyketides/squalestatin-s1.yaml","squalestatin S1"]]},{"id":"NCBITaxon:1869241","l":"Nostoc sp. CENA543","na":1,"nb":1,"a":[["TED%3AAF-A0A2I8A446-F1-model_v4_TED01","TED novel fold AF-A0A2I8A446-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/nodularin-2.yaml","nodularin"]]},{"id":"NCBITaxon:1874","l":"Micromonospora chalcea","na":1,"nb":1,"a":[["TED%3AAF-A0A365UW89-F1-model_v4_TED01","TED novel fold AF-A0A365UW89-F1-model_v4_TED01"]],"b":[["polyketides/tetrocarcin-a.yaml","tetrocarcin A"]]},{"id":"NCBITaxon:1887","l":"Streptomyces albogriseolus","na":1,"nb":1,"a":[["PROSITE%3APS00999","Streptomyces subtilisin-type inhibitors signature"]],"b":[["alkaloids/thienodolin.yaml","thienodolin"]]},{"id":"NCBITaxon:1918945","l":"Vibrio spartinae","na":1,"nb":1,"a":[["TED%3AAF-A0A7D8BB99-F1-model_v4_TED01","TED novel fold AF-A0A7D8BB99-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/vancomycin.yaml","vancomycin"]]},{"id":"NCBITaxon:1948","l":"Streptomyces longisporus","na":1,"nb":1,"a":[["PROSITE%3APS00999","Streptomyces subtilisin-type inhibitors signature"]],"b":[["alkaloids/undecylprodigiosin-2.yaml","undecylprodigiosin"]]},{"id":"NCBITaxon:1970","l":"Streptomyces morookaense","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y7E7U7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y7E7U7-F1-model_v4_TED01"]],"b":[["carbohydrates/blasticidin-s.yaml","blasticidin S"]]},{"id":"NCBITaxon:205922","l":"Pseudomonas fluorescens Pf0-1","na":1,"nb":1,"a":[["Pfam%3APF07927","HicA toxin of bacterial toxin-antitoxin,"]],"b":[["unclassified/gacamide-a.yaml","gacamide A"]]},{"id":"NCBITaxon:216895","l":"Vibrio vulnificus CMCP6","na":1,"nb":1,"a":[["Pfam%3APF18416","N-acetylglucosamine binding protein domain 2"]],"b":[["alkaloids/vulnibactin.yaml","vulnibactin"]]},{"id":"NCBITaxon:2203296","l":"","na":1,"nb":1,"a":[["Pfam%3APF18558","Methyltransferase, Helix-turn-helix domain"]],"b":[["unclassified/xenovulene-a.yaml","xenovulene A"]]},{"id":"NCBITaxon:240499","l":"Calcarisporium arbuscula","na":1,"nb":1,"a":[["Pfam%3APF28402","Pneumocandin biosynthesis cluster protein B C-terminal domain"]],"b":[["polyketides/patulin.yaml","patulin"]]},{"id":"NCBITaxon:2480843","l":"","na":1,"nb":1,"a":[["Pfam%3APF22903","Diels-Alderase-like"]],"b":[["unclassified/xenoacremone-a.yaml","xenoacremone A"]]},{"id":"NCBITaxon:249581","l":"Streptomyces ossamyceticus","na":1,"nb":1,"a":[["TED%3AAF-A0A3N1M1Z0-F1-model_v4_TED02","TED novel fold AF-A0A3N1M1Z0-F1-model_v4_TED02"]],"b":[["polyketides/ossamycin.yaml","ossamycin"]]},{"id":"NCBITaxon:2545265","l":"Streptomyces sp. AJS327","na":1,"nb":1,"a":[["TED%3AAF-A0A7V8NJX1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V8NJX1-F1-model_v4_TED01"]],"b":[["alkaloids/tetrachlorizine.yaml","tetrachlorizine"]]},{"id":"NCBITaxon:263","l":"Francisella tularensis","na":1,"nb":1,"a":[["TED%3AAF-A0A6I4RUC7-F1-model_v4_TED02","TED novel fold AF-A0A6I4RUC7-F1-model_v4_TED02"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"NCBITaxon:264691","l":"Trichormus variabilis","na":1,"nb":1,"a":[["Pfam%3APF09194","Restriction endonuclease BsobI"]],"b":[["unclassified/shinorine.yaml","shinorine"]]},{"id":"NCBITaxon:267747","l":"Cutibacterium acnes KPA171202","na":1,"nb":1,"a":[["Pfam%3APF27542","ArfC"]],"b":[["amino_acids_and_peptides/cutimycin.yaml","cutimycin"]]},{"id":"NCBITaxon:269709","l":"Methylotuvimicrobium kenyense","na":1,"nb":1,"a":[["TED%3AAF-A0A543V9Z8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A543V9Z8-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:2743","l":"Marinobacter nauticus","na":1,"nb":1,"a":[["TED%3AAF-A0A368Y858-F1-model_v4_TED02","TED novel fold AF-A0A368Y858-F1-model_v4_TED02"]],"b":[["alkaloids/petrobactin.yaml","petrobactin"]]},{"id":"NCBITaxon:279113","l":"Collimonas pratensis","na":1,"nb":1,"a":[["TED%3AAF-A0A127Q9K0-F1-model_v4_TED02","TED novel fold AF-A0A127Q9K0-F1-model_v4_TED02"]],"b":[["unclassified/malleobactin-x.yaml","malleobactin X"]]},{"id":"NCBITaxon:285525","l":"Streptomyces sahachiroi","na":1,"nb":1,"a":[["Pfam%3APF06224","DNA glycosylase AlkZ-like"]],"b":[["unclassified/azinomycin-b.yaml","azinomycin B"]]},{"id":"NCBITaxon:28985","l":"Kluyveromyces lactis","na":1,"nb":1,"a":[["Pfam%3APF03930","Recombinase Flp protein N-terminus"]],"b":[["alkaloids/pulcherrimin.yaml","pulcherrimin"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":1,"nb":1,"a":[["PROSITE%3APS01322","Phosphotriesterase family signature 1"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:29447","l":"Xanthomonas albilineans","na":1,"nb":1,"a":[["TED%3AAF-A0A6P1SIK7-F1-model_v4_TED02","TED novel fold AF-A0A6P1SIK7-F1-model_v4_TED02"]],"b":[["alkaloids/albicidin.yaml","albicidin"]]},{"id":"NCBITaxon:29456","l":"Alteromonas sp. B-10-31","na":1,"nb":1,"a":[["Pfam%3APF12559","Serine endopeptidase inhibitors"]],"b":[["unclassified/marinostatin.yaml","marinostatin"]]},{"id":"NCBITaxon:29829","l":"Lipomyces starkeyi","na":1,"nb":1,"a":[["Pfam%3APF03702","Anhydro-N-acetylmuramic acid kinase"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"NCBITaxon:298386","l":"Photobacterium profundum SS9","na":1,"nb":1,"a":[["Pfam%3APF12558","ATP-binding cassette cobalt transporter"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"NCBITaxon:337","l":"Burkholderia glumae","na":1,"nb":1,"a":[["TED%3AAF-A0A8A8MA15-F1-model_v4_TED01","TED novel fold AF-A0A8A8MA15-F1-model_v4_TED01"]],"b":[["alkaloids/toxoflavin.yaml","toxoflavin"]]},{"id":"NCBITaxon:359131","l":"Streptomyces rubellomurinus","na":1,"nb":1,"a":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"]],"b":[["unclassified/fr-900098.yaml","FR-900098"]]},{"id":"NCBITaxon:362","l":"Agrobacterium radiobacter","na":1,"nb":1,"a":[["Pfam%3APF04909","Amidohydrolase"]],"b":[["alkaloids/agrobactin.yaml","agrobactin"]]},{"id":"NCBITaxon:37329","l":"Nocardia farcinica","na":1,"nb":1,"a":[["TED%3AAF-A0A449G5H5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A449G5H5-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/nocobactin-na.yaml","nocobactin NA"]]},{"id":"NCBITaxon:37727","l":"Talaromyces marneffei","na":1,"nb":1,"a":[["Pfam%3APF12296","Hydrophobic surface binding protein A"]],"b":[["polyketides/monascorubrin.yaml","monascorubrin"]]},{"id":"NCBITaxon:38945","l":"Flammulina velutipes","na":1,"nb":1,"a":[["Pfam%3APF09259","Fungal immunomodulatory protein Fve"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:391936","l":"Isoalcanivorax pacificus W11-5","na":1,"nb":1,"a":[["TED%3AAF-A0A0B4XPB7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0B4XPB7-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/pacifibactin.yaml","pacifibactin"]]},{"id":"NCBITaxon:396598","l":"Paraburkholderia graminis C4D1M","na":1,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_GrbE","GrbE-type graminine biosynthesis protein family"]],"b":[["unclassified/gramibactin.yaml","gramibactin"]]},{"id":"NCBITaxon:4100","l":"Nicotiana benthamiana","na":1,"nb":1,"a":[["Pfam%3APF11833","Protein CHAPERONE-LIKE PROTEIN OF POR1-like"]],"b":[["terpenoids/capsidiol.yaml","capsidiol"]]},{"id":"NCBITaxon:41047","l":"Aspergillus thermomutatus","na":1,"nb":1,"a":[["Pfam%3APF28486","AnkG N-terminal domain"]],"b":[["unclassified/pyripyropene-a.yaml","pyripyropene A"]]},{"id":"NCBITaxon:43657","l":"Pseudoalteromonas luteoviolacea","na":1,"nb":1,"a":[["TED%3AAF-A0A1C0TIS0-F1-model_v4_TED02","TED novel fold AF-A0A1C0TIS0-F1-model_v4_TED02"]],"b":[["shikimates_and_phenylpropanoids/pentabromopseudilin.yaml","pentabromopseudilin"]]},{"id":"NCBITaxon:43759","l":"Streptomyces wedmorensis","na":1,"nb":1,"a":[["Pfam%3APF04167","Protein of unknown function (DUF402)"]],"b":[["unclassified/fosfomycin.yaml","fosfomycin"]]},{"id":"NCBITaxon:463","l":"Fluoribacter dumoffii","na":1,"nb":1,"a":[["TED%3AAF-A0A377G6U6-F1-model_v4_TED01","TED novel fold AF-A0A377G6U6-F1-model_v4_TED01"]],"b":[["shikimates_and_phenylpropanoids/legioliulin.yaml","legioliulin"]]},{"id":"NCBITaxon:4679","l":"Allium cepa","na":1,"nb":1,"a":[["Pfam%3APF04863","Alliinase EGF-like domain"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:4682","l":"Allium sativum","na":1,"nb":1,"a":[["Pfam%3APF04863","Alliinase EGF-like domain"]],"b":[["amino_acids_and_peptides/citrulline.yaml","citrulline"]]},{"id":"NCBITaxon:469371","l":"Thermobispora bispora DSM 43833","na":1,"nb":1,"a":[["TED%3AAF-D6Y8C2-F1-model_v4_TED02","TED novel fold AF-D6Y8C2-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/thiomuracin.yaml","thiomuracin"]]},{"id":"NCBITaxon:47759","l":"Streptomyces tubercidicus","na":1,"nb":1,"a":[["TED%3AAF-A0A640UN74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A640UN74-F1-model_v4_TED01"]],"b":[["carbohydrates/tubercidin.yaml","tubercidin"]]},{"id":"NCBITaxon:47850","l":"Micromonospora aurantiaca (nom. illeg.)","na":1,"nb":1,"a":[["TED%3AAF-A0A1C6SK92-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C6SK92-F1-model_v4_TED01"]],"b":[["polyketides/dynemicin-a.yaml","dynemicin A"]]},{"id":"NCBITaxon:47886","l":"Pseudomonas luteola","na":1,"nb":1,"a":[["TED%3AAF-A0A2X2CC74-F1-model_v4_TED02","TED novel fold AF-A0A2X2CC74-F1-model_v4_TED02"]],"b":[["amino_acids_and_peptides/chrysobactin.yaml","chrysobactin"]]},{"id":"NCBITaxon:483219","l":"Myxococcus fulvus HW-1","na":1,"nb":1,"a":[["TED%3AAF-F8C8K4-F1-model_v4_TED01","TED highly-symmetric fold AF-F8C8K4-F1-model_v4_TED01"]],"b":[["unclassified/myxochromide-a-2.yaml","myxochromide A"]]},{"id":"NCBITaxon:488447","l":"Burkholderia contaminans","na":1,"nb":1,"a":[["TED%3AAF-A0A3N8RI51-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N8RI51-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/occidiofungin-a.yaml","occidiofungin A"]]},{"id":"NCBITaxon:528191","l":"Paenibacillus xylanexedens","na":1,"nb":1,"a":[["TED%3AAF-A0A3N6BL17-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N6BL17-F1-model_v4_TED01"]],"b":[["amino_acids_and_peptides/macolacin.yaml","macolacin"]]},{"id":"NCBITaxon:5341","l":"Agaricus bisporus","na":1,"nb":1,"a":[["Pfam%3APF07367","Fungal fruit body lectin"]],"b":[["polyketides/kojic-acid.yaml","kojic acid"]]},{"id":"NCBITaxon:573841","l":"Sordaria araneosa","na":1,"nb":1,"a":[["Pfam%3APF26335","Beta-lactamase-like ARB_00930-like, C-terminal domain"]],"b":[["terpenoids/sordarin.yaml","sordarin"]]},{"id":"NCBITaxon:5839","l":"Plasmodium falciparum (isolate K1 / Thailand)","na":1,"nb":1,"a":[["Pfam%3APF12946","MSP1 EGF domain 1"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"NCBITaxon:6192","l":"Fasciola hepatica","na":1,"nb":1,"a":[["TED%3AAF-A0A4E0R9C7-F1-model_v4_TED02","TED novel fold AF-A0A4E0R9C7-F1-model_v4_TED02"]],"b":[["fatty_acids/trans-aconitic-acid.yaml","trans-aconitic acid"]]},{"id":"NCBITaxon:66425","l":"Streptomyces luteoverticillatus","na":1,"nb":1,"a":[["TED%3AAF-A0A3S9PBS5-F1-model_v4_TED01","TED novel fold AF-A0A3S9PBS5-F1-model_v4_TED01"]],"b":[["alkaloids/carbazomycin-b.yaml","carbazomycin B"]]},{"id":"NCBITaxon:68197","l":"Streptomyces fimbriatus","na":1,"nb":1,"a":[["PROSITE%3APS00093","N-4 cytosine-specific DNA methylases signature"]],"b":[["alkaloids/spicamycin.yaml","spicamycin"]]},{"id":"NCBITaxon:69771","l":"Penicillium decumbens","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6PJ92-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V6PJ92-F1-model_v4_TED01"]],"b":[["polyketides/decumbenone-a.yaml","decumbenone a"]]},{"id":"NCBITaxon:698760","l":"Streptomyces turgidiscabies Car8","na":1,"nb":1,"a":[["TED%3AAF-L7F7V3-F1-model_v4_TED02","TED highly-symmetric fold AF-L7F7V3-F1-model_v4_TED02"]],"b":[["unclassified/thaxtomin-a.yaml","thaxtomin A"]]},{"id":"NCBITaxon:713604","l":"Amycolatopsis mediterranei S699","na":1,"nb":1,"a":[["TED%3AAF-G0FSL6-F1-model_v4_TED01","TED novel fold AF-G0FSL6-F1-model_v4_TED01"]],"b":[["polyketides/rifamycin-sv.yaml","rifamycin SV"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A5C7XIK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7XIK2-F1-model_v4_TED01"]],"b":[["unclassified/lysocin-e.yaml","lysocin E"]]},{"id":"NCBITaxon:741275","l":"","na":1,"nb":1,"a":[["TED%3AAF-R7S2Z2-F1-model_v4_TED02","TED novel fold AF-R7S2Z2-F1-model_v4_TED02"]],"b":[["terpenoids/ent-kauren-16alpha-ol-2.yaml","Ent-kauren-16alpha-ol"]]},{"id":"NCBITaxon:747457","l":"Pseudoalteromonas sp. SANK 73390","na":1,"nb":1,"a":[["Pfam%3APF18014","Acetyltransferase (GNAT) domain"]],"b":[["polyketides/thiomarinol.yaml","thiomarinol"]]},{"id":"NCBITaxon:749593","l":"Epicoccum sorghinum","na":1,"nb":1,"a":[["Pfam%3APF17660","Polyglycine hydrolase-like, structural repeat"]],"b":[["shikimates_and_phenylpropanoids/6-methylsalicylic-acid.yaml","6-methylsalicylic acid"]]},{"id":"NCBITaxon:75695","l":"Umezakia ovalisporum","na":1,"nb":1,"a":[["TED%3AAF-A0A654SF36-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A654SF36-F1-model_v4_TED02"]],"b":[["alkaloids/7-epi-cylindrospermopsin.yaml","7-epi-cylindrospermopsin"]]},{"id":"NCBITaxon:85336","l":"Rothia nasimurium","na":1,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_EntC","EntC-type catechol biosynthesis isochorismate synthase family"]],"b":[["unclassified/valinomycin-2.yaml","valinomycin"]]},{"id":"NCBITaxon:866895","l":"Halobacillus halophilus DSM 2266","na":1,"nb":1,"a":[["TED%3AAF-I0JI49-F1-model_v4_TED03","TED highly-symmetric fold AF-I0JI49-F1-model_v4_TED03"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:877550","l":"","na":1,"nb":1,"a":[["Pfam%3APF13810","Domain of unknown function (DUF4185)"]],"b":[["unclassified/notoamide-a.yaml","notoamide A"]]},{"id":"NCBITaxon:89489","l":"Monascus ruber","na":1,"nb":1,"a":[["Pfam%3APF17828","N-terminal domain in fatty acid synthase subunit beta"]],"b":[["polyketides/citrinin.yaml","(+)-citrinin"]]},{"id":"NCBITaxon:948311","l":"Fusarium proliferatum","na":1,"nb":1,"a":[["TED%3AAF-A0A420SS57-F1-model_v4_TED01","TED novel fold AF-A0A420SS57-F1-model_v4_TED01"]],"b":[["polyketides/prolipyrone-b.yaml","prolipyrone B"]]},{"id":"NCBITaxon:96241","l":"Bacillus spizizenii","na":1,"nb":1,"a":[["Pfam%3APF05952","Bacillus competence pheromone ComX"]],"b":[["amino_acids_and_peptides/entianin.yaml","entianin"]]},{"id":"NCBITaxon:986","l":"Flavobacterium johnsoniae","na":1,"nb":1,"a":[["TED%3AAF-A0A1J7BWE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1J7BWE6-F1-model_v4_TED01"]],"b":[["polyketides/flexirubin.yaml","flexirubin"]]},{"id":"NCBITaxon:994086","l":"Hydnomerulius pinastri MD-312","na":1,"nb":1,"a":[["TED%3AAF-A0A0C9W3H2-F1-model_v4_TED01","TED novel fold AF-A0A0C9W3H2-F1-model_v4_TED01"]],"b":[["fatty_acids/methyl-2s-4-methyl-2-octanoylamino-pentanoate.yaml","methyl (2S)-4-methyl-2-(octanoylamino)pentanoate"]]},{"id":"UniProt:A4F7P5","l":"","na":1,"nb":1,"a":[["EC%3A2.1.1.254","erythromycin 3'-O-methyltransferase"]],"b":[["polyketides/erythromycin-a.yaml","erythromycin A"]]},{"id":"UniProt:O05207","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_RDC","RDC-binding site"]],"b":[["polyketides/radicicol.yaml","radicicol"]]},{"id":"UniProt:O42713","l":"","na":1,"nb":1,"a":[["EC%3A1.14.18.1","tyrosinase"]],"b":[["polyketides/kojic-acid.yaml","kojic acid"]]},{"id":"UniProt:P00523","l":"","na":1,"nb":1,"a":[["ELM%3AELME000013","MOD_TYR_CSK"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P02701.","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_B1R","B1R-binding site"]],"b":[["alkaloids/biotin.yaml","biotin"]]},{"id":"UniProt:P09917.","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_AF7","AF7-binding site"]],"b":[["alkaloids/myxochelin-a.yaml","myxochelin A"]]},{"id":"UniProt:P0C8L0","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_ZL5","ZL5-binding site"]],"b":[["unclassified/antimycin-a1b.yaml","antimycin A1B"]]},{"id":"UniProt:P11799","l":"","na":1,"nb":1,"a":[["Pfam%3APF16620","Unstructured linker between I-set domains 2 and 3 on MYLCK"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:P28523","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_7M0","7M0-binding site"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"UniProt:P43250.","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_SGV","SGV-binding site"]],"b":[["carbohydrates/sangivamycin.yaml","sangivamycin"]]},{"id":"UniProt:Q00024","l":"","na":1,"nb":1,"a":[["EC%3A1.14.18.1","tyrosinase"]],"b":[["polyketides/kojic-acid.yaml","kojic acid"]]},{"id":"UniProt:Q03181.","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_433","433-binding site"]],"b":[["fatty_acids/all-cis-5-8-11-14-17-icosapentaenoic-acid.yaml","all-cis-5,8,11,14,17-icosapentaenoic acid"]]},{"id":"UniProt:Q13451","l":"","na":1,"nb":1,"a":[["ComplexPortal%3ACPX-13334","-"]],"b":[["polyketides/sirolimus.yaml","sirolimus"]]},{"id":"UniProt:Q28021","l":"","na":1,"nb":1,"a":[["Pfam%3APF08912","Rho Binding"]],"b":[["alkaloids/staurosporine-2.yaml","staurosporine"]]},{"id":"UniProt:Q5G940","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_JUG","JUG-binding site"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"UniProt:Q5G940.","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3ABIOLIP_JUG","JUG-binding site"]],"b":[["polyketides/emodin.yaml","emodin"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/ProteinTraitsMech--TaxonMech.json b/assets/fleet/edges/ProteinTraitsMech--TaxonMech.json index f26a228..bdf9d13 100644 --- a/assets/fleet/edges/ProteinTraitsMech--TaxonMech.json +++ b/assets/fleet/edges/ProteinTraitsMech--TaxonMech.json @@ -1 +1 @@ -{"a":"ProteinTraitsMech","b":"TaxonMech","base":{"ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record=","TaxonMech":"https://culturebotai.github.io/TaxonMech/pages/taxon.html?id="},"n":7444,"by":{"NCBITaxon":7444},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":145,"nb":3868,"a":[["IDPO%3A0000033","flexible linker"],["IDPO%3A0000014","order to disorder"],["IDPO%3A0000004","pre-molten globule"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A196023","Aeromonas hydrophila subsp. hydrophila"],["NCBITaxon%3A380703","Aeromonas hydrophila subsp. hydrophila ATCC 7966"],["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A35703","Citrobacter amalonaticus"],["NCBITaxon%3A163202","Corynebacterium appendicis"]]},{"id":"NCBITaxon:83334","l":"Escherichia coli O157:H7","na":130,"nb":140,"a":[["IDPO%3A0000011","disorder to order"],["IDPO%3A0000014","order to disorder"],["Pfam%3APF12343","DeaD helicase C-terminal disordered region"],["Pfam%3APF26539","YhiD C-terminal ACT domain"],["Pfam%3APF01081","KDPG and KHG aldolase"],["Pfam%3APF10423","Bacterial AMP nucleoside phosphorylase N-terminus"]],"b":[["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1389955","Escherichia coli ATCC 35150"],["NCBITaxon%3A83334","Escherichia coli O157:H7"],["NCBITaxon%3A1446609","Escherichia coli O157:H7 str. 06-3745"],["NCBITaxon%3A1446610","Escherichia coli O157:H7 str. 06-4039"],["NCBITaxon%3A1446611","Escherichia coli O157:H7 str. 07-3091"]]},{"id":"NCBITaxon:623","l":"Shigella flexneri","na":94,"nb":120,"a":[["Pfam%3APF13710","ACT domain"],["Pfam%3APF12633","Adenylate cyclase NT domain"],["Pfam%3APF26690","Adenylate cyclase, class-I, third domain"],["Pfam%3APF26691","Adenylate cyclase, class-I, fourth domain"],["Pfam%3APF26693","Adenylate cyclase, class-I, C-terminal"],["Pfam%3APF01295","Adenylate cyclase, class-I, second domain"]],"b":[["NCBITaxon%3A236","Brucella ovis"],["NCBITaxon%3A444178","Brucella ovis ATCC 25840"],["NCBITaxon%3A623","Shigella flexneri"],["NCBITaxon%3A766154","Shigella flexneri 1235-66"],["NCBITaxon%3A766155","Shigella flexneri 1485-80"],["NCBITaxon%3A766156","Shigella flexneri 1676-NY"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":46,"nb":4740,"a":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF13166","AAA domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF27533","CapK C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"]],"b":[["NCBITaxon%3A475088","Methanosphaerula palustris"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1389955","Escherichia coli ATCC 35150"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A574","Klebsiella pneumoniae subsp. ozaenae"],["NCBITaxon%3A1218098","Klebsiella pneumoniae subsp. ozaenae NBRC 105683"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":17470,"nb":39,"a":[["EC%3A1.1.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.16.-.-","Oxidizing metal ions"],["EC%3A1.18.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.7.-","With an iron-sulfur protein as acceptor"]],"b":[["NCBITaxon%3A679895","Escherichia coli BW25113"],["NCBITaxon%3A595496","Escherichia coli BW2952"],["NCBITaxon%3A1318715","Escherichia coli BW38028"],["NCBITaxon%3A1245474","Escherichia coli ER2796"],["NCBITaxon%3A83333","Escherichia coli K-12"],["NCBITaxon%3A527799","Escherichia coli LW1655F+"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":30,"nb":422,"a":[["Pfam%3APF08787","Alginate lyase"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF08218","Citrate lyase ligase C-terminal domain"],["Pfam%3APF13727","CoA-binding domain"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["Pfam%3APF20714","DpiA-like helix-turn-helix domain"]],"b":[["NCBITaxon%3A1653844","Erwinia carnegieana"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A2058152","Klebsiella grimontii"],["NCBITaxon%3A54291","Klebsiella ornithinolytica"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A1443592","Klebsiella pneumoniae 07A044"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":29,"nb":51,"a":[["Pfam%3APF09156","Anthrax toxin lethal factor, middle domain"],["Pfam%3APF08401","N-terminal domain of anti-restriction factor ArdC"],["Pfam%3APF07737","Anthrax toxin lethal factor, N- and C-terminal domain"],["Pfam%3APF27053","Bacillus anthracis plasmid pXO2 protein 26"],["Pfam%3APF13205","Bacterial Ig-like domain"],["Pfam%3APF17475","Clostridial binary toxin B/anthrax toxin PA domain 2"]],"b":[["NCBITaxon%3A1392","Bacillus anthracis"],["NCBITaxon%3A1412844","Bacillus anthracis 52-G"],["NCBITaxon%3A1412843","Bacillus anthracis 8903-G"],["NCBITaxon%3A1412842","Bacillus anthracis 9080-G"],["NCBITaxon%3A1420588","Bacillus anthracis CVCC 40048"],["NCBITaxon%3A1439874","Bacillus anthracis CZC5"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":23,"nb":287,"a":[["Pfam%3APF09255","Caf1 Capsule antigen"],["Pfam%3APF02611","CDP-diacylglycerol pyrophosphatase"],["Pfam%3APF07411","Domain of unknown function (DUF1508)"],["Pfam%3APF05171","Haemin-degrading HemS.ChuX domain"],["Pfam%3APF21500","DNA polymerase III subunit delta', AAA+ ATPase lid domain"],["Pfam%3APF11004","3-deoxy-D-manno-oct-2-ulosonic acid (Kdo) hydroxylase"]],"b":[["NCBITaxon%3A632","Yersinia pestis"],["NCBITaxon%3A1345710","Yersinia pestis 1045"],["NCBITaxon%3A1330535","Yersinia pestis 113"],["NCBITaxon%3A755859","Yersinia pestis 12"],["NCBITaxon%3A1345703","Yersinia pestis 1412"],["NCBITaxon%3A1345704","Yersinia pestis 1413"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":23,"nb":168,"a":[["Pfam%3APF08878","HamA"],["Pfam%3APF05791","Bacillus haemolytic enterotoxin (HBL)"],["Pfam%3APF10803","Spore germination GerPB"],["Pfam%3APF10737","Spore germination protein GerPC"],["Pfam%3APF10970","Spore germination protein GerPE"],["Pfam%3APF07486","Cell Wall Hydrolase"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A572264","Bacillus cereus 03BB102"],["NCBITaxon%3A451709","Bacillus cereus 03BB108"],["NCBITaxon%3A526967","Bacillus cereus 172560W"],["NCBITaxon%3A363751","Bacillus cereus 31673"],["NCBITaxon%3A526979","Bacillus cereus 95/8201"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa (strain ATCC 15692 / DSM 22644 / CIP 104116 / JCM 14847 / LMG 12228 / 1C / PRS 101 / PAO1)","na":162,"nb":23,"a":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF06750","Bacterial Peptidase A24 N-terminal domain"],["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF28403","Aconitase X second domain"],["Pfam%3APF28406","Aconitase X third domain"],["Pfam%3APF04412","Aconitase X first domain"]],"b":[["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1453991","Pseudomonas aeruginosa BK1"],["NCBITaxon%3A1236530","Pseudomonas aeruginosa JCM 14847"],["NCBITaxon%3A1131757","Pseudomonas aeruginosa MPAO1/P1"],["NCBITaxon%3A1131758","Pseudomonas aeruginosa MPAO1/P2"],["NCBITaxon%3A208964","Pseudomonas aeruginosa PAO1"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":20,"nb":53,"a":[["Pfam%3APF14535","AMP-binding enzyme C-terminal domain"],["Pfam%3APF13442","Cytochrome C oxidase, cbb3-type, subunit III"],["Pfam%3APF22247","Catechol 2,3-dioxygenase-like N-terminal domain"],["Pfam%3APF25371","Domain of unknown function (DUF7884)"],["Pfam%3APF19301","LigXa C-terminal domain like"],["Pfam%3APF12729","Four helix bundle sensory module for signal transduction"]],"b":[["NCBITaxon%3A47920","Acidovorax delafieldii"],["NCBITaxon%3A301","Ectopseudomonas oleovorans"],["NCBITaxon%3A29581","Janthinobacterium lividum"],["NCBITaxon%3A294","Pseudomonas fluorescens"],["NCBITaxon%3A77298","Pseudomonas jessenii"],["NCBITaxon%3A1968891","Pseudomonas jessenii subsp. pseudoputida"]]},{"id":"NCBITaxon:90370","l":"","na":20,"nb":27,"a":[["Pfam%3APF09317","Acyl-CoA dehydrogenase, C-terminal, bacterial type"],["Pfam%3APF04958","Arginine N-succinyltransferase beta subunit"],["Pfam%3APF06564","Cellulose biosynthesis protein BcsQ"],["Pfam%3APF21157","DnaK suppressor protein DksA, N-terminal domain"],["Pfam%3APF22102","ElaD/SseL-like C-terminal"],["Pfam%3APF13861","FlgD Tudor-like domain"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A90370","Salmonella enterica subsp. enterica serovar Typhi"],["NCBITaxon%3A497977","Salmonella enterica subsp. enterica serovar Typhi str. 404ty"],["NCBITaxon%3A496065","Salmonella enterica subsp. enterica serovar Typhi str. AG3"],["NCBITaxon%3A1156917","Salmonella enterica subsp. enterica serovar Typhi str. BL196"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":19,"nb":557,"a":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"],["Pfam%3APF18173","Bacterial HORMA domain 2"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["Pfam%3APF27322","Cap8 HORMA domain"],["Pfam%3APF01526","Tn3 transposase DDE domain"]],"b":[["NCBITaxon%3A2073169","Chromobacterium alticapitis"],["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1454219","Pseudomonas aeruginosa 059A"],["NCBITaxon%3A1421538","Pseudomonas aeruginosa 0812"],["NCBITaxon%3A1421545","Pseudomonas aeruginosa 0822"],["NCBITaxon%3A1421531","Pseudomonas aeruginosa 0C2E"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":19,"nb":25,"a":[["Pfam%3APF03306","Alpha-acetolactate decarboxylase"],["Pfam%3APF22208","Cas_Csm6 CARF domain"],["Pfam%3APF09659","Cas_Csm6 HEPN domain"],["Pfam%3APF22335","Cas10/Cmr2, second palm domain"],["Pfam%3APF18395","Cas3 C-terminal domain"],["Pfam%3APF18019","Cas3, HD domain"]],"b":[["NCBITaxon%3A35783","Enterococcus sp."],["NCBITaxon%3A1308","Streptococcus thermophilus"],["NCBITaxon%3A1435981","Streptococcus thermophilus 1F8CT"],["NCBITaxon%3A1408178","Streptococcus thermophilus ASCC 1275"],["NCBITaxon%3A1263110","Streptococcus thermophilus CAG:236"],["NCBITaxon%3A1042404","Streptococcus thermophilus CNCM I-1630"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":16,"nb":156,"a":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF28265","Lipoprotein N-acylation protein LnsA-like"],["Pfam%3APF16403","Bacterial surface protein, Ig-like domain"],["Pfam%3APF03944","delta endotoxin"],["Pfam%3APF03945","delta endotoxin, N-terminal domain"],["Pfam%3APF06355","Aegerolysin"]],"b":[["NCBITaxon%3A1428","Bacillus thuringiensis"],["NCBITaxon%3A1340496","Bacillus thuringiensis AKS-7"],["NCBITaxon%3A714359","Bacillus thuringiensis BMB171"],["NCBITaxon%3A1423143","Bacillus thuringiensis Bt18247"],["NCBITaxon%3A1423142","Bacillus thuringiensis Bt18679"],["NCBITaxon%3A527021","Bacillus thuringiensis Bt407"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":16,"nb":79,"a":[["Pfam%3APF16822","SGNH hydrolase-like domain, acetyltransferase AlgX"],["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"],["Pfam%3APF11182","Alginate O-acetyl transferase AlgF"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF27129","Functional amyloid protein FapB/FapC family"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]],"b":[["NCBITaxon%3A1931223","Caballeronia sp."],["NCBITaxon%3A89065","Pseudomonas abietaniphila"],["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1123912","Pseudomonas auricularis"],["NCBITaxon%3A930166","Pseudomonas brassicacearum"],["NCBITaxon%3A129817","Pseudomonas brenneri"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":16,"nb":47,"a":[["Pfam%3APF05932","Tir chaperone protein (CesT) family"],["Pfam%3APF17656","FlgA N-terminal domain"],["Pfam%3APF22200","ExsA N-terminal regulatory domain"],["Pfam%3APF05171","Haemin-degrading HemS.ChuX domain"],["Pfam%3APF07201","HrpJ-like domain"],["Pfam%3APF04391","Protein of unknown function (DUF533)"]],"b":[["NCBITaxon%3A630","Yersinia enterocolitica"],["NCBITaxon%3A947561","Yersinia enterocolitica IP2222"],["NCBITaxon%3A1243181","Yersinia enterocolitica IP 10393"],["NCBITaxon%3A1443113","Yersinia enterocolitica LC20"],["NCBITaxon%3A947557","Yersinia enterocolitica NFO"],["NCBITaxon%3A150052","Yersinia enterocolitica subsp. enterocolitica"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":82,"a":[["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["Pfam%3APF14562","Restriction endonuclease BglI"],["Pfam%3APF09195","Restriction endonuclease BglII/BglIII"],["Pfam%3APF09208","Restriction endonuclease MspI"]],"b":[["NCBITaxon%3A1390","Bacillus amyloliquefaciens"],["NCBITaxon%3A1452","Bacillus atrophaeus"],["NCBITaxon%3A640707","Bacillus atrophaeus ATCC 9372"],["NCBITaxon%3A483913","Bacillus inaquosorum"],["NCBITaxon%3A1236548","Bacillus inaquosorum KCTC 13429"],["NCBITaxon%3A1402","Bacillus licheniformis"]]},{"id":"NCBITaxon:1360","l":"Lactococcus lactis subsp. lactis","na":14,"nb":25,"a":[["Pfam%3APF08951","Bacteriocin immunity protein family"],["Pfam%3APF08998","Bacterial epsilon antitoxin"],["Pfam%3APF25887","LcnD-like, long helical bundle domain"],["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF25940","LcnD-like, C-terminal domain"],["Pfam%3APF08129","Alpha/beta enterocin family"]],"b":[["NCBITaxon%3A1358","Lactococcus lactis"],["NCBITaxon%3A203404","Lactococcus lactis subsp. hordniae"],["NCBITaxon%3A1348656","Lactococcus lactis subsp. hordniae NBRC 100931"],["NCBITaxon%3A1360","Lactococcus lactis subsp. lactis"],["NCBITaxon%3A1379274","Lactococcus lactis subsp. lactis 1AA59"],["NCBITaxon%3A1137134","Lactococcus lactis subsp. lactis A12"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":297,"nb":13,"a":[["IDPO%3A0000002","disorder"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000045","phosphorylation display site"],["IDPO%3A0000059","self-inhibition"],["Pfam%3APF17837","4'-phosphopantetheinyl transferase N-terminal domain"]],"b":[["NCBITaxon%3A1773","Mycobacterium tuberculosis"],["NCBITaxon%3A83332","Mycobacterium tuberculosis H37Rv"],["NCBITaxon%3A747078","Mycobacterium tuberculosis H37Rv_2009"],["NCBITaxon%3A928249","Mycobacterium tuberculosis H37Rv_ideR_mutant_ST22"],["NCBITaxon%3A757417","Mycobacterium tuberculosis H37RvAE"],["NCBITaxon%3A757419","Mycobacterium tuberculosis H37RvCO"]]},{"id":"NCBITaxon:644","l":"Aeromonas hydrophila","na":13,"nb":44,"a":[["Pfam%3APF01117","Aerolysin toxin"],["Pfam%3APF03440","Aerolysin/Pertussis toxin (APT) domain"],["Pfam%3APF21327","GspA, peptidase C39-like domain"],["Pfam%3APF04231","Endonuclease I"],["PROSITE%3APS01092","Adenylate cyclase class-I signature 1"],["PROSITE%3APS01093","Adenylate cyclase class-I signature 2"]],"b":[["NCBITaxon%3A105751","Aeromonas bestiarum"],["NCBITaxon%3A648","Aeromonas caviae"],["NCBITaxon%3A196024","Aeromonas dhakensis"],["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A1073378","Aeromonas hydrophila 07-345-3437"],["NCBITaxon%3A1268075","Aeromonas hydrophila 116"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":13,"nb":32,"a":[["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF03173","Putative carbohydrate binding domain"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"],["Pfam%3APF06438","Heme-binding protein A (HasA)"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF05247","Flagellar transcriptional activator (FlhD)"]],"b":[["NCBITaxon%3A2703793","Serratia bockelmannii"],["NCBITaxon%3A615","Serratia marcescens"],["NCBITaxon%3A1257036","Serratia marcescens 12"],["NCBITaxon%3A1255611","Serratia marcescens 448"],["NCBITaxon%3A1333586","Serratia marcescens AB42556419-isolate1"],["NCBITaxon%3A1400186","Serratia marcescens BIDMC 44"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":13,"nb":27,"a":[["Pfam%3APF07832","Cfr10I/Bse634I restriction endonuclease"],["Pfam%3APF22348","Colicin-A N-terminal domain"],["Pfam%3APF01024","Colicin pore forming domain"],["Pfam%3APF18427","DD-reactivating factor swiveling domain"],["Pfam%3APF02286","Dehydratase large subunit"],["Pfam%3APF02288","Dehydratase medium subunit"]],"b":[["NCBITaxon%3A57706","Citrobacter braakii"],["NCBITaxon%3A1914243","Citrobacter europaeus"],["NCBITaxon%3A546","Citrobacter freundii"],["NCBITaxon%3A1173724","Citrobacter freundii 47N"],["NCBITaxon%3A742730","Citrobacter freundii 4_7_47CFAA"],["NCBITaxon%3A1444046","Citrobacter freundii 5-172-05_S1_C1"]]},{"id":"NCBITaxon:485","l":"Neisseria gonorrhoeae","na":12,"nb":90,"a":[["Pfam%3APF25860","Cryptic plasmid protein A"],["Pfam%3APF12852","Cupin"],["Pfam%3APF17845","FbpC C-terminal regulatory nucleotide binding domain"],["Pfam%3APF22443","FbpC-like, regulatory domain"],["Pfam%3APF18053","DNA gyrase B subunit insert domain"],["Pfam%3APF25885","EMRA, alpha-helical hairpin domain"]],"b":[["NCBITaxon%3A485","Neisseria gonorrhoeae"],["NCBITaxon%3A528345","Neisseria gonorrhoeae 1291"],["NCBITaxon%3A1193404","Neisseria gonorrhoeae 3502"],["NCBITaxon%3A528346","Neisseria gonorrhoeae 35/02"],["NCBITaxon%3A1352347","Neisseria gonorrhoeae ALB_2011_01-02"],["NCBITaxon%3A1351778","Neisseria gonorrhoeae ALB_2011_03_03"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":11,"nb":1075,"a":[["Pfam%3APF22829","HphA C-terminal domain"],["Pfam%3APF22828","HphA N-terminal heme-binding domain"],["Pfam%3APF28205","Ciprofloxacin tolerance protein"],["Pfam%3APF19582","Solute-binding protein AdeT 1/2"],["PROSITE%3APS00337","Beta-lactamase class-D active site"],["Pfam%3APF24575","Surface lipoprotein assembly modifier, N-terminal TPR repeats"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A1311139","Acinetobacter baumannii 016901DP_1"],["NCBITaxon%3A1311140","Acinetobacter baumannii 016901DP_2"],["NCBITaxon%3A1310784","Acinetobacter baumannii 1007214"],["NCBITaxon%3A1310751","Acinetobacter baumannii 1022959"],["NCBITaxon%3A1310586","Acinetobacter baumannii 1031433"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":10,"nb":5776,"a":[["TED%3AAF-A0A5T2E4X7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5T2E4X7-F1-model_v4_TED01"],["TED%3AAF-A0A5Y4BP44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Y4BP44-F1-model_v4_TED01"],["TED%3AAF-A0A623P6F3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A623P6F3-F1-model_v4_TED02"],["TED%3AAF-A0A721BDS7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A721BDS7-F1-model_v4_TED02"],["TED%3AAF-A0A743P324-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A743P324-F1-model_v4_TED01"],["TED%3AAF-A0A757VWR3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A757VWR3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A54736","Salmonella bongori"],["NCBITaxon%3A218493","Salmonella bongori NCTC 12419"],["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59203","Salmonella enterica subsp. arizonae"],["NCBITaxon%3A2577126","Salmonella enterica subsp. arizonae serovar 11:z4,z23:-"],["NCBITaxon%3A2577127","Salmonella enterica subsp. arizonae serovar 13,22:z4,z23:-"]]},{"id":"NCBITaxon:1496","l":"Clostridioides difficile","na":10,"nb":296,"a":[["Pfam%3APF18671","4-Hydroxyphenylacetate decarboxylase subunit gamma N-terminal"],["Pfam%3APF00302","Chloramphenicol acetyltransferase"],["Pfam%3APF18524","High potential iron-sulfur protein like"],["Pfam%3APF06050","2-hydroxyglutaryl-CoA dehydratase, D-component"],["PROSITE%3APS00100","Chloramphenicol acetyltransferase active site"],["Pfam%3APF01473","Putative cell wall binding repeat"]],"b":[["NCBITaxon%3A1496","Clostridioides difficile"],["NCBITaxon%3A997827","Clostridioides difficile 002-P50-2011"],["NCBITaxon%3A997828","Clostridioides difficile 050-P50-2011"],["NCBITaxon%3A699033","Clostridioides difficile 2007855"],["NCBITaxon%3A1151306","Clostridioides difficile 342"],["NCBITaxon%3A1151307","Clostridioides difficile 360"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":10,"nb":28,"a":[["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF09081","Glucan 1,4-alpha-maltotetraohydrolase, domain C"],["Pfam%3APF09459","Ethylbenzene dehydrogenase"],["Pfam%3APF08406","CbbQ/NirQ/NorQ C-terminal"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"],["Pfam%3APF18793","Nitrous oxide reductase propeller repeat 2"]],"b":[["NCBITaxon%3A729","Haemophilus parainfluenzae"],["NCBITaxon%3A43306","Pseudomonas denitrificans (nom. rej.)"],["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A203192","Stutzerimonas chloritidismutans"],["NCBITaxon%3A3022791","Stutzerimonas decontaminans"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":20,"nb":10,"a":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF27529","AMPT"],["Pfam%3APF24856","L-arabinose isomerase central domain"],["Pfam%3APF02610","L-arabinose isomerase N-terminal domain"],["Pfam%3APF11762","L-arabinose isomerase C-terminal domain"],["Pfam%3APF17727","CtsR C-terminal dimerization domain"]],"b":[["NCBITaxon%3A1891658","Geobacillus sp."],["NCBITaxon%3A1422","Geobacillus stearothermophilus"],["NCBITaxon%3A272567","Geobacillus stearothermophilus 10"],["NCBITaxon%3A1366047","Geobacillus stearothermophilus ATCC 12980"],["NCBITaxon%3A937593","Geobacillus stearothermophilus ATCC 7953"],["NCBITaxon%3A664733","Geobacillus stearothermophilus C56-N21"]]},{"id":"NCBITaxon:387","l":"Rhizobium leguminosarum bv. viciae","na":10,"nb":15,"a":[["Pfam%3APF27444","Uridylyltransferase GlnD third domain"],["Pfam%3APF08335","GlnD PII-uridylyltransferase"],["Pfam%3APF19335","Heavy metal binding domain"],["Pfam%3APF22521","Carbamoyltransferase, Kae1-like Domain, second subdomain"],["Pfam%3APF17788","HypF Kae1-like domain"],["Pfam%3APF04955","HupE / UreJ protein"]],"b":[["NCBITaxon%3A387","Rhizobium leguminosarum bv. viciae"],["NCBITaxon%3A1041141","Rhizobium leguminosarum bv. viciae 128C53"],["NCBITaxon%3A936136","Rhizobium leguminosarum bv. viciae 248"],["NCBITaxon%3A1041142","Rhizobium leguminosarum bv. viciae GB30"],["NCBITaxon%3A1079454","Rhizobium leguminosarum bv. viciae Ps8"],["NCBITaxon%3A935553","Rhizobium leguminosarum bv. viciae TOM"]]},{"id":"NCBITaxon:210","l":"Helicobacter pylori","na":9,"nb":631,"a":[["Pfam%3APF18025","Alpha-(1,3)-fucosyltransferase FucT N-terminal domain"],["Pfam%3APF18971","CagA protein"],["Pfam%3APF03507","CagA exotoxin phosphopeptide substrate mimic region"],["Pfam%3APF02691","Vacuolating cyotoxin beta-helical domain"],["TED%3AAF-A0A2T6UWI4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T6UWI4-F1-model_v4_TED01"],["TED%3AAF-A0A1Q9JB12-F1-model_v4_TED01","TED novel fold AF-A0A1Q9JB12-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A210","Helicobacter pylori"],["NCBITaxon%3A1028810","Helicobacter pylori 10700"],["NCBITaxon%3A585532","Helicobacter pylori 118"],["NCBITaxon%3A102610","Helicobacter pylori #12"],["NCBITaxon%3A585533","Helicobacter pylori 120"],["NCBITaxon%3A103187","Helicobacter pylori 15818"]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":9,"nb":389,"a":[["Pfam%3APF19567","Capsular polysaccharide synthesis, CpsB/CapC"],["Pfam%3APF07501","G5 domain"],["Pfam%3APF13551","Winged helix-turn helix"],["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF03047","COMC family"],["Pfam%3APF04556","DpnII restriction endonuclease"]],"b":[["NCBITaxon%3A1503055","Burkholderia territorii"],["NCBITaxon%3A1270","Micrococcus luteus"],["NCBITaxon%3A465515","Micrococcus luteus NCTC 2665"],["NCBITaxon%3A33051","Sphingomonas sanguinis"],["NCBITaxon%3A1219054","Sphingomonas sanguinis NBRC 13937"],["NCBITaxon%3A1313","Streptococcus pneumoniae"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":9,"nb":176,"a":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF25954","CusB-like, beta-barrel domain"],["Pfam%3APF13438","Domain of unknown function (DUF4113)"],["Pfam%3APF03767","HAD superfamily, subfamily IIIB (Acid phosphatase)"],["Pfam%3APF03496","ADP-ribosyltransferase exoenzyme"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A90371","Salmonella enterica subsp. enterica serovar Typhimurium"],["NCBITaxon%3A1173928","Salmonella enterica subsp. enterica serovar Typhimurium str. 0052"],["NCBITaxon%3A1114946","Salmonella enterica subsp. enterica serovar Typhimurium str. 00-01036"],["NCBITaxon%3A1173930","Salmonella enterica subsp. enterica serovar Typhimurium str. 0364"]]},{"id":"NCBITaxon:1898207","l":"Clostridiales bacterium","na":63,"nb":9,"a":[["TED%3AAF-A0A239QGX8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A239QGX8-F1-model_v4_TED02"],["TED%3AAF-A0A2V2DI93-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V2DI93-F1-model_v4_TED02"],["TED%3AAF-A0A2V2EHK5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V2EHK5-F1-model_v4_TED02"],["TED%3AAF-A0A2V2G296-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2V2G296-F1-model_v4_TED03"],["TED%3AAF-A0A316P962-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A316P962-F1-model_v4_TED03"],["TED%3AAF-A0A316PDC9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A316PDC9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1898207","Clostridiales bacterium"],["NCBITaxon%3A3070003","Clostridiales bacterium T6-6.105"],["NCBITaxon%3A3070004","Clostridiales bacterium T6-6.35"],["NCBITaxon%3A3070005","Clostridiales bacterium T6-6.39"],["NCBITaxon%3A3070006","Clostridiales bacterium T6-7.35"],["NCBITaxon%3A3070007","Clostridiales bacterium T6-7.60"]]},{"id":"NCBITaxon:818","l":"Bacteroides thetaiotaomicron","na":9,"nb":32,"a":[["Pfam%3APF09093","Lyase, catalytic"],["TED%3AAF-A0A174W9M0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A174W9M0-F1-model_v4_TED01"],["TED%3AAF-A0A679HCU6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A679HCU6-F1-model_v4_TED01"],["TED%3AAF-A0A139L295-F1-model_v4_TED04","TED novel fold AF-A0A139L295-F1-model_v4_TED04"],["TED%3AAF-A0A174QBB7-F1-model_v4_TED02","TED novel fold AF-A0A174QBB7-F1-model_v4_TED02"],["TED%3AAF-A0A679H9T4-F1-model_v4_TED03","TED novel fold AF-A0A679H9T4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A47678","Bacteroides caccae"],["NCBITaxon%3A411901","Bacteroides caccae ATCC 43185"],["NCBITaxon%3A29523","Bacteroides sp."],["NCBITaxon%3A818","Bacteroides thetaiotaomicron"],["NCBITaxon%3A1263054","Bacteroides thetaiotaomicron CAG:40"],["NCBITaxon%3A1235785","Bacteroides thetaiotaomicron dnLKV9"]]},{"id":"NCBITaxon:192222","l":"Campylobacter jejuni subsp. jejuni NCTC 11168 = ATCC 700819","na":10,"nb":9,"a":[["Pfam%3APF26365","Apolipoprotein N-acyltransferase integral membrane domain"],["Pfam%3APF22131","CRISPR-associated endonuclease CjCas9 PI-CTD domain"],["Pfam%3APF22129","CRISPR-associated endonuclease CjCas9 wedge domain"],["Pfam%3APF02554","Carbon starvation protein CstA"],["Pfam%3APF27310","HrcA C-terminal domain"],["Pfam%3APF05538","Campylobacter major outer membrane protein"]],"b":[["NCBITaxon%3A197","Campylobacter jejuni"],["NCBITaxon%3A192222","Campylobacter jejuni subsp. jejuni NCTC 11168 = ATCC 700819"],["NCBITaxon%3A1211776","Campylobacter jejuni subsp. jejuni NCTC 11168-BN148"],["NCBITaxon%3A1385724","Campylobacter jejuni subsp. jejuni NCTC 11168-GSv"],["NCBITaxon%3A1385720","Campylobacter jejuni subsp. jejuni NCTC 11168-K12E5"],["NCBITaxon%3A1385723","Campylobacter jejuni subsp. jejuni NCTC 11168-Kf1"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":8,"nb":375,"a":[["Pfam%3APF01721","Class II bacteriocin"],["Pfam%3APF13700","Domain of unknown function (DUF4158)"],["Pfam%3APF07478","D-ala D-ala ligase C-terminus"],["Pfam%3APF01820","D-ala D-ala ligase N-terminus"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"],["PROSITE%3APS00843","D-alanine--D-alanine ligase signature 1"]],"b":[["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A1352","Enterococcus faecium"],["NCBITaxon%3A1391465","Enterococcus faecium 10/96A"],["NCBITaxon%3A1259824","Enterococcus faecium 13.SD.W.09"],["NCBITaxon%3A1429401","Enterococcus faecium 17282"],["NCBITaxon%3A565659","Enterococcus faecium 1,141,733"]]},{"id":"NCBITaxon:99287","l":"Salmonella typhimurium (strain LT2 / SGSC1412 / ATCC 700720)","na":167,"nb":8,"a":[["Pfam%3APF16031","TonB polyproline region"],["Pfam%3APF13521","AAA domain"],["Pfam%3APF26341","tRNA 2-selenouridine synthase AAA domain"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"],["Pfam%3APF09317","Acyl-CoA dehydrogenase, C-terminal, bacterial type"],["Pfam%3APF06315","Isocitrate dehydrogenase kinase/phosphatase (AceK) kinase domain"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A588858","Salmonella enterica subsp. enterica serovar Typhimurium str. 14028S"],["NCBITaxon%3A1094461","Salmonella enterica subsp. enterica serovar Typhimurium str. G455"],["NCBITaxon%3A99287","Salmonella enterica subsp. enterica serovar Typhimurium str. LT2"],["NCBITaxon%3A1159899","Salmonella enterica subsp. enterica serovar Typhimurium str. LT2-4"]]},{"id":"NCBITaxon:1359","l":"Lactococcus cremoris","na":8,"nb":24,"a":[["Pfam%3APF16873","Putative abortive phage resistance protein AbiGii toxin"],["Pfam%3APF21368","AI2M/AI1M-like, HNH endonuclease"],["Pfam%3APF09136","Glucodextranase, domain B"],["Pfam%3APF10899","Putative abortive phage resistance protein AbiGi, antitoxin"],["Pfam%3APF04556","DpnII restriction endonuclease"],["Pfam%3APF04369","Lactococcin-like family"]],"b":[["NCBITaxon%3A1359","Lactococcus cremoris"],["NCBITaxon%3A1286879","Lactococcus cremoris HB61"],["NCBITaxon%3A1286880","Lactococcus cremoris HB63"],["NCBITaxon%3A2816960","Lactococcus cremoris subsp. cremoris"],["NCBITaxon%3A1104322","Lactococcus cremoris subsp. cremoris A76"],["NCBITaxon%3A1415168","Lactococcus cremoris subsp. cremoris GE214"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":14,"nb":8,"a":[["Pfam%3APF03703","Bacterial PH domain"],["Pfam%3APF01322","Cytochrome C'"],["Pfam%3APF03139","Vanadium/alternative nitrogenase delta subunit"],["Pfam%3APF09527","Putative F0F1-ATPase subunit Ca2+/Mg2+ transporter"],["Pfam%3APF03270","Protein of unknown function, DUF269"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"]],"b":[["NCBITaxon%3A1061","Rhodobacter capsulatus"],["NCBITaxon%3A1415162","Rhodobacter capsulatus B6"],["NCBITaxon%3A1415160","Rhodobacter capsulatus DE442"],["NCBITaxon%3A1415163","Rhodobacter capsulatus R121"],["NCBITaxon%3A272942","Rhodobacter capsulatus SB 1003"],["NCBITaxon%3A1415161","Rhodobacter capsulatus Y262"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":8,"nb":14,"a":[["Pfam%3APF01890","Cobalamin synthesis G C-terminus"],["Pfam%3APF11761","Cobalamin biosynthesis central region"],["Pfam%3APF11760","Cobalamin synthesis G N-terminal"],["Pfam%3APF02570","Precorrin-8X methylmutase"],["PROSITE%3APS00304","Small, acid-soluble spore proteins, alpha/beta type, signature 1"],["PROSITE%3APS00684","Small, acid-soluble spore proteins, alpha/beta type, signature 2"]],"b":[["NCBITaxon%3A72360","Bacillus mojavensis"],["NCBITaxon%3A1051501","Bacillus mojavensis RO-H-1 = KCTC 3706"],["NCBITaxon%3A1478","Peribacillus simplex"],["NCBITaxon%3A86664","Priestia flexa"],["NCBITaxon%3A1404","Priestia megaterium"],["NCBITaxon%3A592022","Priestia megaterium DSM 319"]]},{"id":"NCBITaxon:555","l":"Pectobacterium carotovorum subsp. carotovorum","na":8,"nb":12,"a":[["Pfam%3APF09147","Carbapenam-3-carboxylate synthase, N-terminal"],["Pfam%3APF00942","Cellulose binding domain"],["Pfam%3APF04287","tRNA pseudouridine synthase C"],["Pfam%3APF04347","Flagellar biosynthesis protein, FliO"],["PROSITE%3APS01061","Flagella transport protein fliP family signature 2"],["PROSITE%3APS00874","Bacterial type II secretion system protein F signature"]],"b":[["NCBITaxon%3A46161","Actinomadura kijaniata"],["NCBITaxon%3A1220561","Actinomadura kijaniata NBRC 14229"],["NCBITaxon%3A1201031","Pectobacterium aroidearum"],["NCBITaxon%3A554","Pectobacterium carotovorum"],["NCBITaxon%3A555","Pectobacterium carotovorum subsp. carotovorum"],["NCBITaxon%3A1267545","Pectobacterium carotovorum subsp. carotovorum ICMP 5702"]]},{"id":"NCBITaxon:1265","l":"Ruminococcus flavefaciens","na":8,"nb":9,"a":[["TED%3AAF-A0A1H6I5C3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1H6I5C3-F1-model_v4_TED03"],["TED%3AAF-A0A1K2AQV3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1K2AQV3-F1-model_v4_TED01"],["TED%3AAF-A0A1M7IZN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M7IZN6-F1-model_v4_TED01"],["TED%3AAF-A0A1H6IY18-F1-model_v4_TED01","TED novel fold AF-A0A1H6IY18-F1-model_v4_TED01"],["TED%3AAF-A0A1K1WYY5-F1-model_v4_TED01","TED novel fold AF-A0A1K1WYY5-F1-model_v4_TED01"],["TED%3AAF-A0A1K2C3A7-F1-model_v4_TED01","TED novel fold AF-A0A1K2C3A7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1265","Ruminococcus flavefaciens"],["NCBITaxon%3A1341157","Ruminococcus flavefaciens 007c"],["NCBITaxon%3A1030842","Ruminococcus flavefaciens 17"],["NCBITaxon%3A1384066","Ruminococcus flavefaciens AE3010"],["NCBITaxon%3A1336236","Ruminococcus flavefaciens ATCC 19208"],["NCBITaxon%3A1313302","Ruminococcus flavefaciens B34b"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":8,"nb":8,"a":[["Pfam%3APF02927","Cellulase N-terminal ig-like domain"],["Pfam%3APF00404","Dockerin type I domain"],["PROSITE%3APS00448","Clostridium cellulosome enzymes repeated domain signature"],["PROSITE%3APS60032","Glycosyl hydrolases family 9 (GH9) active site signature 1"],["PROSITE%3APS00592","Glycosyl hydrolases family 9 (GH9) active site signature 2"],["PROSITE%3APS00698","Glycosyl hydrolases family 9 (GH9) active site signature 3"]],"b":[["NCBITaxon%3A1515","Acetivibrio thermocellus"],["NCBITaxon%3A1138384","Acetivibrio thermocellus AD2"],["NCBITaxon%3A203119","Acetivibrio thermocellus ATCC 27405"],["NCBITaxon%3A1349417","Acetivibrio thermocellus BC1"],["NCBITaxon%3A637887","Acetivibrio thermocellus DSM 1313"],["NCBITaxon%3A572545","Acetivibrio thermocellus DSM 2360"]]},{"id":"NCBITaxon:1314","l":"Streptococcus pyogenes","na":7,"nb":839,"a":[["Pfam%3APF13585","CHU_C Type IX secretion signal domain"],["Pfam%3APF24547","Domain of unknown function (DUF7601)"],["Pfam%3APF08998","Bacterial epsilon antitoxin"],["Pfam%3APF06280","Fn3-like domain"],["Pfam%3APF02274","Arginine deiminase"],["Pfam%3APF13734","Spi protease inhibitor"]],"b":[["NCBITaxon%3A45634","Streptococcus cristatus"],["NCBITaxon%3A1314","Streptococcus pyogenes"],["NCBITaxon%3A1050217","Streptococcus pyogenes 005-D5"],["NCBITaxon%3A1210041","Streptococcus pyogenes 06BA18369"],["NCBITaxon%3A1235829","Streptococcus pyogenes A20"],["NCBITaxon%3A562016","Streptococcus pyogenes AA216"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":7,"nb":216,"a":[["Pfam%3APF04439","Streptomycin adenylyltransferase"],["TED%3AAF-A0A696J2C3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A696J2C3-F1-model_v4_TED01"],["TED%3AAF-A0A825M6H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A825M6H4-F1-model_v4_TED01"],["TED%3AAF-A0A5T0SBG5-F1-model_v4_TED01","TED novel fold AF-A0A5T0SBG5-F1-model_v4_TED01"],["TED%3AAF-A0A698JVM3-F1-model_v4_TED03","TED novel fold AF-A0A698JVM3-F1-model_v4_TED03"],["TED%3AAF-A0A824N1N8-F1-model_v4_TED01","TED novel fold AF-A0A824N1N8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A863522","Bryocella elongata"],["NCBITaxon%3A195","Campylobacter coli"],["NCBITaxon%3A197","Campylobacter jejuni"],["NCBITaxon%3A1365653","Campylobacter jejuni 10186"],["NCBITaxon%3A1365189","Campylobacter jejuni 10187"],["NCBITaxon%3A1327986","Campylobacter jejuni 10227"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":7,"nb":35,"a":[["Pfam%3APF19443","DAHL domain"],["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"],["Pfam%3APF03524","Conjugal transfer protein"],["Pfam%3APF27439","Chaperone protein DnaJ C-terminal region"],["Pfam%3APF10907","Protein of unknown function (DUF2749)"],["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]],"b":[["NCBITaxon%3A1183421","Agrobacterium fabacearum CFBP 5771"],["NCBITaxon%3A1300224","Agrobacterium fabacearum P4"],["NCBITaxon%3A1183429","Agrobacterium fabacearum S56"],["NCBITaxon%3A1368455","Agrobacterium fabacearum str. Foundi"],["NCBITaxon%3A1183430","Agrobacterium fabacearum TT111"],["NCBITaxon%3A1176649","Agrobacterium fabrum"]]},{"id":"NCBITaxon:28116","l":"Bacteroides ovatus","na":7,"nb":33,"a":[["TED%3AAF-A0A515J030-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A515J030-F1-model_v4_TED01"],["TED%3AAF-A0A5M5C3M7-F1-model_v4_TED01","TED novel fold AF-A0A5M5C3M7-F1-model_v4_TED01"],["TED%3AAF-A0A641PL20-F1-model_v4_TED01","TED novel fold AF-A0A641PL20-F1-model_v4_TED01"],["TED%3AAF-A0A641V3P9-F1-model_v4_TED03","TED novel fold AF-A0A641V3P9-F1-model_v4_TED03"],["TED%3AAF-A0A641VT79-F1-model_v4_TED01","TED novel fold AF-A0A641VT79-F1-model_v4_TED01"],["TED%3AAF-A0A642C648-F1-model_v4_TED01","TED novel fold AF-A0A642C648-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28116","Bacteroides ovatus"],["NCBITaxon%3A665954","Bacteroides ovatus 3_8_47FAA"],["NCBITaxon%3A411476","Bacteroides ovatus ATCC 8483"],["NCBITaxon%3A1263050","Bacteroides ovatus CAG:22"],["NCBITaxon%3A997885","Bacteroides ovatus CL02T12C04"],["NCBITaxon%3A997886","Bacteroides ovatus CL03T12C18"]]},{"id":"NCBITaxon:1305","l":"Streptococcus sanguinis","na":7,"nb":27,"a":[["Pfam%3APF09254","FokI, cleavage domain"],["Pfam%3APF02981","FokI, recognition domain, subdomain 1"],["Pfam%3APF02980","FokI, recognition domain, subdomain 2"],["Pfam%3APF07501","G5 domain"],["Pfam%3APF07581","The GLUG motif"],["TED%3AAF-A0A7H8V358-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H8V358-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1302","Streptococcus gordonii"],["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1305","Streptococcus sanguinis"],["NCBITaxon%3A1247655","Streptococcus sanguinis ATCC 15914"],["NCBITaxon%3A997356","Streptococcus sanguinis ATCC 29667"],["NCBITaxon%3A1073373","Streptococcus sanguinis CC94A"]]},{"id":"NCBITaxon:83558","l":"Chlamydia pneumoniae","na":22,"nb":7,"a":[["Pfam%3APF01308","Chlamydia major outer membrane protein"],["Pfam%3APF27167","GRAD helix-turn-helix domain"],["Pfam%3APF03503","Chlamydia cysteine-rich outer membrane protein 3"],["Pfam%3APF03504","Chlamydia cysteine-rich outer membrane protein 6"],["Pfam%3APF07548","Chlamydia polymorphic membrane protein middle domain"],["Pfam%3APF28261","Uncharacterized protein CT_504-like"]],"b":[["NCBITaxon%3A83558","Chlamydia pneumoniae"],["NCBITaxon%3A115711","Chlamydia pneumoniae AR39"],["NCBITaxon%3A1430897","Chlamydia pneumoniae B21"],["NCBITaxon%3A115713","Chlamydia pneumoniae CWL029"],["NCBITaxon%3A138677","Chlamydia pneumoniae J138"],["NCBITaxon%3A406984","Chlamydia pneumoniae LPCoLN"]]},{"id":"NCBITaxon:837","l":"Porphyromonas gingivalis","na":7,"nb":22,"a":[["Pfam%3APF07675","Cleaved Adhesin Domain"],["Pfam%3APF22492","FimA4 pilin C-terminal domain"],["Pfam%3APF15495","Major fimbrial subunit protein type IV, Fimbrillin, C-terminal"],["Pfam%3APF26306","FimD protein third domain"],["Pfam%3APF27397","FimE C-terminal domain"],["Pfam%3APF10365","Domain of unknown function (DUF2436)"]],"b":[["NCBITaxon%3A837","Porphyromonas gingivalis"],["NCBITaxon%3A1403335","Porphyromonas gingivalis 381"],["NCBITaxon%3A1403337","Porphyromonas gingivalis A7436"],["NCBITaxon%3A1403338","Porphyromonas gingivalis A7A1-28"],["NCBITaxon%3A1403336","Porphyromonas gingivalis AJW4"],["NCBITaxon%3A431947","Porphyromonas gingivalis ATCC 33277"]]},{"id":"NCBITaxon:1911","l":"Streptomyces griseus","na":7,"nb":20,"a":[["Pfam%3APF13207","AAA domain"],["Pfam%3APF27054","Beta-methylindole-3-pyruvate reductase C-terminal domain"],["Pfam%3APF26558","3-dehydroquinate synthase II C-terminal domain"],["Pfam%3APF01959","3-dehydroquinate synthase II N-terminal domain"],["Pfam%3APF13459","4Fe-4S single cluster domain"],["Pfam%3APF04655","Aminoglycoside/hydroxyurea antibiotic resistance kinase"]],"b":[["NCBITaxon%3A1884","Streptomyces acrimycini"],["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A67274","Streptomyces argenteolus"],["NCBITaxon%3A1896","Streptomyces bikiniensis"],["NCBITaxon%3A90079","Streptomyces caviscabies"],["NCBITaxon%3A66883","Streptomyces cyaneofuscatus"]]},{"id":"NCBITaxon:672","l":"Vibrio vulnificus","na":7,"nb":19,"a":[["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF08021","Siderophore-interacting FAD-binding domain"],["Pfam%3APF11575","FhuF 2Fe-2S C-terminal domain"],["Pfam%3APF27349","IcsB middle domain"],["Pfam%3APF21735","C-terminal repeat from RTX toxins"],["Pfam%3APF07634","RtxA repeat"]],"b":[["NCBITaxon%3A678","Vibrio sp."],["NCBITaxon%3A672","Vibrio vulnificus"],["NCBITaxon%3A701179","Vibrio vulnificus 06-2450"],["NCBITaxon%3A1246308","Vibrio vulnificus 96-11-17M"],["NCBITaxon%3A1246309","Vibrio vulnificus A1402"],["NCBITaxon%3A1229202","Vibrio vulnificus B2"]]},{"id":"NCBITaxon:624","l":"Shigella sonnei","na":7,"nb":15,"a":[["Pfam%3APF01024","Colicin pore forming domain"],["Pfam%3APF09019","EcoRII C terminal"],["Pfam%3APF26304","FliM/N C-terminal related"],["Pfam%3APF13384","Homeodomain-like domain"],["Pfam%3APF02090","Salmonella surface presentation of antigen gene type M protein"],["Pfam%3APF03519","Invasion protein B family"]],"b":[["NCBITaxon%3A624","Shigella sonnei"],["NCBITaxon%3A1212580","Shigella sonnei 08-7761"],["NCBITaxon%3A1212581","Shigella sonnei 08-7765"],["NCBITaxon%3A1212582","Shigella sonnei 09-1032"],["NCBITaxon%3A1212583","Shigella sonnei 09-2245"],["NCBITaxon%3A1212584","Shigella sonnei 09-4962"]]},{"id":"NCBITaxon:1510","l":"Thermoclostridium stercorarium","na":7,"nb":8,"a":[["Pfam%3APF07523","Bacterial Ig-like domain (group 3)"],["Pfam%3APF03442","Carbohydrate binding domain X2"],["Pfam%3APF00457","Glycosyl hydrolases family 11"],["Pfam%3APF03422","Carbohydrate binding module (family 6)"],["PROSITE%3APS00776","Glycosyl hydrolases family 11 (GH11) active site signature 1"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"]],"b":[["NCBITaxon%3A1510","Thermoclostridium stercorarium"],["NCBITaxon%3A160385","Thermoclostridium stercorarium subsp. leptospartum"],["NCBITaxon%3A1346611","Thermoclostridium stercorarium subsp. leptospartum DSM 9219"],["NCBITaxon%3A160845","Thermoclostridium stercorarium subsp. stercorarium"],["NCBITaxon%3A1121335","Thermoclostridium stercorarium subsp. stercorarium DSM 8532"],["NCBITaxon%3A29351","Thermoclostridium stercorarium subsp. thermolacticum"]]},{"id":"NCBITaxon:37734","l":"Enterococcus casseliflavus","na":7,"nb":8,"a":[["PROSITE%3APS00843","D-alanine--D-alanine ligase signature 1"],["PROSITE%3APS00844","D-alanine--D-alanine ligase signature 2"],["TED%3AAF-A0A1V3NEA6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1V3NEA6-F1-model_v4_TED03"],["TED%3AAF-A0A377MP00-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A377MP00-F1-model_v4_TED01"],["TED%3AAF-A0A377KTN3-F1-model_v4_TED02","TED novel fold AF-A0A377KTN3-F1-model_v4_TED02"],["TED%3AAF-A0A377MJ12-F1-model_v4_TED01","TED novel fold AF-A0A377MJ12-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A37734","Enterococcus casseliflavus"],["NCBITaxon%3A1259825","Enterococcus casseliflavus 14-MB-W-14"],["NCBITaxon%3A888066","Enterococcus casseliflavus ATCC 12755"],["NCBITaxon%3A1158603","Enterococcus casseliflavus ATCC 49996"],["NCBITaxon%3A565654","Enterococcus casseliflavus EC10"],["NCBITaxon%3A565655","Enterococcus casseliflavus EC20"]]},{"id":"NCBITaxon:1307","l":"Streptococcus suis","na":6,"nb":145,"a":[["TED%3AAF-A0A0Z8XA17-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0Z8XA17-F1-model_v4_TED02"],["TED%3AAF-A0A116R309-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A116R309-F1-model_v4_TED02"],["TED%3AAF-A0A3R8SIF2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R8SIF2-F1-model_v4_TED01"],["TED%3AAF-A0A0Z8H9E5-F1-model_v4_TED02","TED novel fold AF-A0A0Z8H9E5-F1-model_v4_TED02"],["TED%3AAF-A0A4T2GPV6-F1-model_v4_TED02","TED novel fold AF-A0A4T2GPV6-F1-model_v4_TED02"],["TED%3AAF-A0A7G1JVZ6-F1-model_v4_TED02","TED novel fold AF-A0A7G1JVZ6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A229549","Streptococcus minor"],["NCBITaxon%3A82806","Streptococcus ovis"],["NCBITaxon%3A1307","Streptococcus suis"],["NCBITaxon%3A672190","Streptococcus suis 05HAS68"],["NCBITaxon%3A391295","Streptococcus suis 05ZYH33"],["NCBITaxon%3A1214149","Streptococcus suis 07SC3"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":6,"nb":101,"a":[["Pfam%3APF16376","N-terminal domain of fragilysin"],["TED%3AAF-A0A412XR06-F1-model_v4_TED03","TED novel fold AF-A0A412XR06-F1-model_v4_TED03"],["TED%3AAF-A0A4V1EUI2-F1-model_v4_TED02","TED novel fold AF-A0A4V1EUI2-F1-model_v4_TED02"],["TED%3AAF-A0A5C6IXH5-F1-model_v4_TED01","TED novel fold AF-A0A5C6IXH5-F1-model_v4_TED01"],["TED%3AAF-A0A5C6L6G9-F1-model_v4_TED02","TED novel fold AF-A0A5C6L6G9-F1-model_v4_TED02"],["TED%3AAF-A0A642KY52-F1-model_v4_TED01","TED novel fold AF-A0A642KY52-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A817","Bacteroides fragilis"],["NCBITaxon%3A457424","Bacteroides fragilis 3_1_12"],["NCBITaxon%3A862962","Bacteroides fragilis 638R"],["NCBITaxon%3A1308728","Bacteroides fragilis ADL-402"],["NCBITaxon%3A1263046","Bacteroides fragilis CAG:47"],["NCBITaxon%3A1263047","Bacteroides fragilis CAG:558"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":6,"nb":66,"a":[["Pfam%3APF01177","Asp/Glu/Hydantoin racemase"],["Pfam%3APF11339","Protein of unknown function (DUF3141)"],["PROSITE%3APS01303","BCCT family of transporters signature"],["PROSITE%3APS00665","Dihydrodipicolinate synthase signature 1"],["TED%3AAF-A0A2J0YSD4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J0YSD4-F1-model_v4_TED01"],["TED%3AAF-A0A843ZNG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843ZNG8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A382","Sinorhizobium meliloti"],["NCBITaxon%3A266834","Sinorhizobium meliloti 1021"],["NCBITaxon%3A1194706","Sinorhizobium meliloti 1A42"],["NCBITaxon%3A1286640","Sinorhizobium meliloti 2011"],["NCBITaxon%3A1041151","Sinorhizobium meliloti 4H41"],["NCBITaxon%3A1194707","Sinorhizobium meliloti 5A14"]]},{"id":"NCBITaxon:40324","l":"Stenotrophomonas maltophilia","na":6,"nb":44,"a":[["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["TED%3AAF-A0A2U4H7T5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2U4H7T5-F1-model_v4_TED02"],["TED%3AAF-A0A2W6G5X3-F1-model_v4_TED01","TED novel fold AF-A0A2W6G5X3-F1-model_v4_TED01"],["TED%3AAF-A0A2W6IKS3-F1-model_v4_TED02","TED novel fold AF-A0A2W6IKS3-F1-model_v4_TED02"],["TED%3AAF-A0A7D0KRT5-F1-model_v4_TED03","TED novel fold AF-A0A7D0KRT5-F1-model_v4_TED03"],["TED%3AAF-A0A7T8PWR1-F1-model_v4_TED05","TED novel fold AF-A0A7T8PWR1-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A13689","Sphingomonas paucimobilis"],["NCBITaxon%3A1292134","Stenotrophomonas africana"],["NCBITaxon%3A3384461","Stenotrophomonas beteli"],["NCBITaxon%3A86189","Stenotrophomonas hibiscicola"],["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A1288954","Stenotrophomonas maltophilia 503"]]},{"id":"NCBITaxon:727","l":"Haemophilus influenzae","na":6,"nb":43,"a":[["Pfam%3APF06808","Tripartite ATP-independent periplasmic transporter, DctM component"],["Pfam%3APF04290","Tripartite ATP-independent periplasmic transporters, DctQ component"],["Pfam%3APF09226","Restriction endonuclease HincII"],["Pfam%3APF09520","Type II restriction endonuclease, HinfI"],["Pfam%3APF24077","Immunoglobulin A1 protease autotransporter domain 2"],["PROSITE%3APS01068","OmpA-like domain"]],"b":[["NCBITaxon%3A727","Haemophilus influenzae"],["NCBITaxon%3A862964","Haemophilus influenzae 10810"],["NCBITaxon%3A1232659","Haemophilus influenzae 2019"],["NCBITaxon%3A374927","Haemophilus influenzae 22.1-21"],["NCBITaxon%3A520729","Haemophilus influenzae 22.1-24"],["NCBITaxon%3A375063","Haemophilus influenzae 22.4-21"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":6,"nb":33,"a":[["Pfam%3APF14525","AraC-binding-like domain"],["Pfam%3APF06139","BphX-like"],["Pfam%3APF13340","Putative transposase of IS4/5 family (DUF4096)"],["Pfam%3APF11794","4-hydroxyphenylacetate 3-hydroxylase N terminal"],["Pfam%3APF03241","4-hydroxyphenylacetate 3-hydroxylase C terminal"],["TED%3AAF-A0A4S3H3T1-F1-model_v4_TED02","TED novel fold AF-A0A4S3H3T1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A85698","Achromobacter xylosoxidans"],["NCBITaxon%3A152480","Burkholderia ambifaria"],["NCBITaxon%3A179879","Burkholderia anthina"],["NCBITaxon%3A488730","Burkholderia arboris"],["NCBITaxon%3A95486","Burkholderia cenocepacia"],["NCBITaxon%3A292","Burkholderia cepacia"]]},{"id":"NCBITaxon:1390","l":"Bacillus amyloliquefaciens","na":6,"nb":29,"a":[["Pfam%3APF02923","Restriction endonuclease BamHI"],["Pfam%3APF01337","Barstar (barnase inhibitor)"],["Pfam%3APF22148","Fervidolysin N-terminal prodomain"],["PROSITE%3APS00093","N-4 cytosine-specific DNA methylases signature"],["PROSITE%3APS01334","Pyrrolidone-carboxylate peptidase cysteine active site"],["PROSITE%3APS01333","Pyrrolidone-carboxylate peptidase glutamic acid active site"]],"b":[["NCBITaxon%3A1390","Bacillus amyloliquefaciens"],["NCBITaxon%3A1421566","Bacillus amyloliquefaciens AB01"],["NCBITaxon%3A1421569","Bacillus amyloliquefaciens AP143"],["NCBITaxon%3A1421570","Bacillus amyloliquefaciens AP193"],["NCBITaxon%3A1421567","Bacillus amyloliquefaciens AP71"],["NCBITaxon%3A1421568","Bacillus amyloliquefaciens AP79"]]},{"id":"NCBITaxon:1502","l":"Clostridium perfringens","na":6,"nb":24,"a":[["Pfam%3APF08307","Glycosyl hydrolase family 98 C-terminal domain"],["Pfam%3APF08306","Glycosyl hydrolase family 98"],["Pfam%3APF12645","Helix-turn-helix domain"],["Pfam%3APF03505","Clostridium enterotoxin"],["Pfam%3APF10960","BhlA holin family"],["TED%3AAF-A0A140GRT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A140GRT8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1502","Clostridium perfringens"],["NCBITaxon%3A753641","Clostridium perfringens 310"],["NCBITaxon%3A753640","Clostridium perfringens 3100"],["NCBITaxon%3A37763","Clostridium perfringens A"],["NCBITaxon%3A195103","Clostridium perfringens ATCC 13124"],["NCBITaxon%3A451751","Clostridium perfringens B"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":6,"nb":22,"a":[["Pfam%3APF02929","Beta galactosidase small chain"],["Pfam%3APF27279","Fumarate--diaminopropanoate ligase C-terminal domain"],["Pfam%3APF18024","Helix-turn-helix domain"],["Pfam%3APF16353","Beta-galactosidase, domain 4"],["PROSITE%3APS00594","Aromatic amino acids permeases signature"],["PROSITE%3APS00853","Beta-eliminating lyases pyridoxal-phosphate attachment site"]],"b":[["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A221276","[Curtobacterium] plantarum"],["NCBITaxon%3A558","Erwinia sp."],["NCBITaxon%3A83655","Leclercia adecarboxylata"],["NCBITaxon%3A549","Pantoea agglomerans"],["NCBITaxon%3A1261128","Pantoea agglomerans 299R"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":6,"nb":19,"a":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF10779","Haemolysin XhlA"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF08181","DegQ (SacQ) family"],["Pfam%3APF08057","Erythromycin resistance leader peptide"],["Pfam%3APF14867","Lantibiotic alpha"]],"b":[["NCBITaxon%3A1402","Bacillus licheniformis"],["NCBITaxon%3A1169411","Bacillus licheniformis 10-1-A"],["NCBITaxon%3A44097","Bacillus licheniformis 2709"],["NCBITaxon%3A1169412","Bacillus licheniformis 5-2-D"],["NCBITaxon%3A1368424","Bacillus licheniformis CG-B52"],["NCBITaxon%3A1232672","Bacillus licheniformis CGMCC 3963"]]},{"id":"NCBITaxon:321","l":"Pseudomonas syringae pv. syringae","na":6,"nb":18,"a":[["Pfam%3APF03421","YopJ Serine/Threonine acetyltransferase"],["Pfam%3APF17914","HopA1 effector protein family"],["Pfam%3APF27361","HrcQa N-terminal domain"],["Pfam%3APF04877","HrpZ"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]],"b":[["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A1449349","Pseudomonas syringae DSM 10604"],["NCBITaxon%3A1154761","Pseudomonas syringae pv. avellanae str. ISPaVe013"],["NCBITaxon%3A1154762","Pseudomonas syringae pv. avellanae str. ISPaVe037"],["NCBITaxon%3A321","Pseudomonas syringae pv. syringae"],["NCBITaxon%3A1357293","Pseudomonas syringae pv. syringae 1212"]]},{"id":"NCBITaxon:1349","l":"Streptococcus uberis","na":6,"nb":14,"a":[["Pfam%3APF01721","Class II bacteriocin"],["Pfam%3APF09221","Bacteriocin class IId cyclical uberolysin-like"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"],["TED%3AAF-A0A7X2UJT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X2UJT8-F1-model_v4_TED01"],["TED%3AAF-A0A7X2UQ98-F1-model_v4_TED02","TED novel fold AF-A0A7X2UQ98-F1-model_v4_TED02"],["TED%3AAF-A0A8B4IQV9-F1-model_v4_TED03","TED novel fold AF-A0A8B4IQV9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1349","Streptococcus uberis"],["NCBITaxon%3A218495","Streptococcus uberis 0140J"],["NCBITaxon%3A1450192","Streptococcus uberis 6736"],["NCBITaxon%3A1450190","Streptococcus uberis 6780"],["NCBITaxon%3A1450186","Streptococcus uberis Ab71"],["NCBITaxon%3A1450189","Streptococcus uberis B190"]]},{"id":"NCBITaxon:56","l":"Sorangium cellulosum","na":13,"nb":6,"a":[["TED%3AAF-A0A150SQB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A150SQB4-F1-model_v4_TED01"],["TED%3AAF-A0A2L0EP96-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0EP96-F1-model_v4_TED01"],["TED%3AAF-A0A2L0F1G5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0F1G5-F1-model_v4_TED01"],["TED%3AAF-A0A2L0F230-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0F230-F1-model_v4_TED01"],["TED%3AAF-A0A4P2R1W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P2R1W3-F1-model_v4_TED01"],["TED%3AAF-A0A150P579-F1-model_v4_TED02","TED novel fold AF-A0A150P579-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2093422","Sorangium ambruticinum"],["NCBITaxon%3A2093423","Sorangium bulgaricum"],["NCBITaxon%3A56","Sorangium cellulosum"],["NCBITaxon%3A1254432","Sorangium cellulosum So0157-2"],["NCBITaxon%3A448385","Sorangium cellulosum So ce56"],["NCBITaxon%3A2093377","Sorangium sp."]]},{"id":"NCBITaxon:669","l":"Vibrio harveyi","na":6,"nb":13,"a":[["Pfam%3APF02273","Acyl transferase"],["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF03173","Putative carbohydrate binding domain"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"],["TED%3AAF-A0A454D440-F1-model_v4_TED02","TED novel fold AF-A0A454D440-F1-model_v4_TED02"],["TED%3AAF-A0A8B3DE42-F1-model_v4_TED03","TED novel fold AF-A0A8B3DE42-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A342113","Burkholderia oklahomensis"],["NCBITaxon%3A669","Vibrio harveyi"],["NCBITaxon%3A673519","Vibrio harveyi 1DA3"],["NCBITaxon%3A1287887","Vibrio harveyi AOD131"],["NCBITaxon%3A1125980","Vibrio harveyi CAIM 1792"],["NCBITaxon%3A1352943","Vibrio harveyi E385"]]},{"id":"NCBITaxon:1397","l":"Niallia circulans","na":6,"nb":10,"a":[["Pfam%3APF03423","Carbohydrate binding domain (family 25)"],["Pfam%3APF13199","Glycosyl hydrolase family 66"],["Pfam%3APF14399","Butirosin biosynthesis protein H, N-terminal"],["Pfam%3APF19634","Family of unknown function (DUF6137)"],["PROSITE%3APS60000","Chitosanases families 46 and 80 active sites signature"],["TED%3AAF-A0A0J1IR10-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0J1IR10-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1393","Brevibacillus brevis"],["NCBITaxon%3A1397","Niallia circulans"],["NCBITaxon%3A1348626","Niallia circulans NBRC 13626"],["NCBITaxon%3A44160","Niallia circulans subsp. alkalophilus"],["NCBITaxon%3A74308","Niallia circulans subsp. circulans"],["NCBITaxon%3A59846","Paenibacillus chibensis"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":10,"nb":6,"a":[["Pfam%3APF17433","Glycosyl hydrolase family 49 N-terminal Ig-like domain"],["PROSITE%3APS00820","Glucoamylase active site region signature"],["PROSITE%3APS00920","Nitrilases / cyanide hydratase signature 1"],["PROSITE%3APS00502","Polygalacturonase active site"],["Pfam%3APF18841","Beta solenoid repeat from Dextranase"],["Pfam%3APF03718","Glycosyl hydrolase family 49"]],"b":[["NCBITaxon%3A547018","Zhihengliuella alba"],["NCBITaxon%3A5061","Aspergillus niger"],["NCBITaxon%3A380704","Aspergillus niger ATCC 1015"],["NCBITaxon%3A1353008","Aspergillus niger ATCC 13496"],["NCBITaxon%3A1450533","Aspergillus niger CBS 101883"],["NCBITaxon%3A425011","Aspergillus niger CBS 513.88"]]},{"id":"NCBITaxon:853","l":"Faecalibacterium prausnitzii","na":10,"nb":6,"a":[["TED%3AAF-A0A2A7AJ69-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A7AJ69-F1-model_v4_TED01"],["TED%3AAF-A0A329UNG0-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A329UNG0-F1-model_v4_TED05"],["TED%3AAF-A0A3F3JVN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3F3JVN3-F1-model_v4_TED01"],["TED%3AAF-A0A564SWB8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A564SWB8-F1-model_v4_TED02"],["TED%3AAF-A0A173SIF7-F1-model_v4_TED01","TED novel fold AF-A0A173SIF7-F1-model_v4_TED01"],["TED%3AAF-A0A173WYP6-F1-model_v4_TED01","TED novel fold AF-A0A173WYP6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A748224","Faecalibacterium cf. prausnitzii KLE1255"],["NCBITaxon%3A411483","Faecalibacterium duncaniae"],["NCBITaxon%3A853","Faecalibacterium prausnitzii"],["NCBITaxon%3A718252","Faecalibacterium prausnitzii L2-6"],["NCBITaxon%3A411485","Faecalibacterium prausnitzii M21/2"],["NCBITaxon%3A657322","Faecalibacterium prausnitzii SL3/3"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":6,"nb":9,"a":[["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF03744","6-carboxyhexanoate--CoA ligase"],["PROSITE%3APS00836","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 1"],["PROSITE%3APS00837","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 2"],["TED%3AAF-A0A2S5D092-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5D092-F1-model_v4_TED01"],["TED%3AAF-A0A2S0JW09-F1-model_v4_TED01","TED novel fold AF-A0A2S0JW09-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28031","Lysinibacillus fusiformis"],["NCBITaxon%3A1130819","Lysinibacillus mangiferihumi"],["NCBITaxon%3A1421","Lysinibacillus sphaericus"],["NCBITaxon%3A444177","Lysinibacillus sphaericus C3-41"],["NCBITaxon%3A1400869","Lysinibacillus sphaericus CBAM5"],["NCBITaxon%3A1354027","Lysinibacillus sphaericus KCTC 3346"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":9,"nb":6,"a":[["Pfam%3APF07835","Bacterial aa3 type cytochrome c oxidase subunit IV"],["Pfam%3APF04828","Glutathione-dependent formaldehyde-activating enzyme"],["Pfam%3APF16448","LapD/MoxY periplasmic domain"],["Pfam%3APF17267","Family of unknown function (DUF5333)"],["Pfam%3APF17272","Family of unknown function (DUF5337)"],["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"]],"b":[["NCBITaxon%3A266","Paracoccus denitrificans"],["NCBITaxon%3A1302247","Paracoccus denitrificans JCM 21484"],["NCBITaxon%3A318586","Paracoccus denitrificans PD1222"],["NCBITaxon%3A1051075","Paracoccus denitrificans SD1"],["NCBITaxon%3A82367","Paracoccus pantotrophus"],["NCBITaxon%3A189685","uncultured Paracoccus sp."]]},{"id":"NCBITaxon:323","l":"Pseudomonas syringae pv. tomato","na":6,"nb":8,"a":[["Pfam%3APF16847","Avirulence AvrPtoB, BAK1-binding domain"],["Pfam%3APF09046","AvrPtoB E3 ubiquitin ligase"],["Pfam%3APF04234","CopC domain"],["Pfam%3APF21085","CusS sensor domain"],["Pfam%3APF05275","Copper resistance protein B precursor (CopB)"],["TED%3AAF-A0A5E9N4C0-F1-model_v4_TED01","TED novel fold AF-A0A5E9N4C0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A323","Pseudomonas syringae pv. tomato"],["NCBITaxon%3A1324324","Pseudomonas syringae pv. tomato C3"],["NCBITaxon%3A673189","Pseudomonas syringae pv. tomato K40"],["NCBITaxon%3A673198","Pseudomonas syringae pv. tomato Max13"],["NCBITaxon%3A673265","Pseudomonas syringae pv. tomato NCPPB 1108"],["NCBITaxon%3A223283","Pseudomonas syringae pv. tomato str. DC3000"]]},{"id":"NCBITaxon:101571","l":"Burkholderia ubonensis","na":6,"nb":6,"a":[["TED%3AAF-A0A118H7W5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A118H7W5-F1-model_v4_TED01"],["TED%3AAF-A0A853WTK8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A853WTK8-F1-model_v4_TED01"],["TED%3AAF-A0A104J6D5-F1-model_v4_TED03","TED novel fold AF-A0A104J6D5-F1-model_v4_TED03"],["TED%3AAF-A0A104Z719-F1-model_v4_TED01","TED novel fold AF-A0A104Z719-F1-model_v4_TED01"],["TED%3AAF-A0A106QCV3-F1-model_v4_TED01","TED novel fold AF-A0A106QCV3-F1-model_v4_TED01"],["TED%3AAF-A0A124U5S7-F1-model_v4_TED02","TED novel fold AF-A0A124U5S7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A101571","Burkholderia ubonensis"],["NCBITaxon%3A441166","Burkholderia ubonensis Bu"],["NCBITaxon%3A1436049","Burkholderia ubonensis MSMB153"],["NCBITaxon%3A1249668","Burkholderia ubonensis MSMB22"],["NCBITaxon%3A1436063","Burkholderia ubonensis MSMB57"],["NCBITaxon%3A265293","Burkholderia ubonensis subsp. mesacidophila"]]},{"id":"NCBITaxon:224308","l":"Bacillus subtilis (strain 168)","na":11310,"nb":5,"a":[["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.10.3.-","With oxygen as acceptor"],["EC%3A1.13.12.-","With incorporation of one atom of oxygen (internal monooxygenases or internal mixed function oxidases)"],["EC%3A1.14.19.-","With oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water"],["EC%3A1.17.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.21.98.-","With other, known acceptors"]],"b":[["NCBITaxon%3A1423","Bacillus subtilis"],["NCBITaxon%3A135461","Bacillus subtilis subsp. subtilis"],["NCBITaxon%3A224308","Bacillus subtilis subsp. subtilis str. 168"],["NCBITaxon%3A536088","Bacillus subtilis subsp. subtilis str. L170"],["NCBITaxon%3A536089","Bacillus subtilis subsp. subtilis str. N170"]]},{"id":"NCBITaxon:1491","l":"Clostridium botulinum","na":5,"nb":284,"a":[["Pfam%3APF24729","Acb2/Tad1, hairpin domain"],["TED%3AAF-A0A2I4NFI4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2I4NFI4-F1-model_v4_TED02"],["TED%3AAF-A0A6B4TC92-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6B4TC92-F1-model_v4_TED01"],["TED%3AAF-A0A6B4E2T6-F1-model_v4_TED01","TED novel fold AF-A0A6B4E2T6-F1-model_v4_TED01"],["TED%3AAF-A0A6G4HNV8-F1-model_v4_TED01","TED novel fold AF-A0A6G4HNV8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1491","Clostridium botulinum"],["NCBITaxon%3A696040","Clostridium botulinum 14860"],["NCBITaxon%3A1415774","Clostridium botulinum 202F"],["NCBITaxon%3A696053","Clostridium botulinum 213B"],["NCBITaxon%3A696051","Clostridium botulinum 32B"],["NCBITaxon%3A696049","Clostridium botulinum 399A"]]},{"id":"NCBITaxon:195","l":"Campylobacter coli","na":5,"nb":122,"a":[["PROSITE%3APS00100","Chloramphenicol acetyltransferase active site"],["TED%3AAF-A0A697DVN1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A697DVN1-F1-model_v4_TED01"],["TED%3AAF-A0A5T0YXG5-F1-model_v4_TED02","TED novel fold AF-A0A5T0YXG5-F1-model_v4_TED02"],["TED%3AAF-A0A825MHY8-F1-model_v4_TED03","TED novel fold AF-A0A825MHY8-F1-model_v4_TED03"],["TED%3AAF-A0A828DMV9-F1-model_v4_TED01","TED novel fold AF-A0A828DMV9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A195","Campylobacter coli"],["NCBITaxon%3A887290","Campylobacter coli 1091"],["NCBITaxon%3A887291","Campylobacter coli 1098"],["NCBITaxon%3A887280","Campylobacter coli 111-3"],["NCBITaxon%3A887292","Campylobacter coli 1148"],["NCBITaxon%3A887282","Campylobacter coli 132-6"]]},{"id":"NCBITaxon:813","l":"Chlamydia trachomatis","na":5,"nb":100,"a":[["Pfam%3APF07382","Histone H1-like nucleoprotein HC2"],["Pfam%3APF01308","Chlamydia major outer membrane protein"],["Pfam%3APF05475","Pgp3 C-terminal domain"],["Pfam%3APF03504","Chlamydia cysteine-rich outer membrane protein 6"],["TED%3AAF-C7DZ76-F1-model_v4_TED01","TED novel fold AF-C7DZ76-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A813","Chlamydia trachomatis"],["NCBITaxon%3A564416","Chlamydia trachomatis 6276"],["NCBITaxon%3A564417","Chlamydia trachomatis 6276s"],["NCBITaxon%3A564418","Chlamydia trachomatis 70"],["NCBITaxon%3A564419","Chlamydia trachomatis 70s"],["NCBITaxon%3A580047","Chlamydia trachomatis A2497"]]},{"id":"NCBITaxon:384","l":"Rhizobium leguminosarum","na":5,"nb":39,"a":[["Pfam%3APF10931","Protein of unknown function (DUF2735)"],["TED%3AAF-A0A1B1C3F3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1B1C3F3-F1-model_v4_TED02"],["TED%3AAF-A0A4Q8XNE1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q8XNE1-F1-model_v4_TED01"],["TED%3AAF-A0A6P0B3F8-F1-model_v4_TED02","TED novel fold AF-A0A6P0B3F8-F1-model_v4_TED02"],["TED%3AAF-A0A6P0DM15-F1-model_v4_TED01","TED novel fold AF-A0A6P0DM15-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A3019932","Rhizobium brockwellii"],["NCBITaxon%3A384","Rhizobium leguminosarum"],["NCBITaxon%3A385","Rhizobium leguminosarum bv. phaseoli"],["NCBITaxon%3A936350","Rhizobium leguminosarum bv. phaseoli 4292"],["NCBITaxon%3A1408223","Rhizobium leguminosarum bv. phaseoli CCGM1"],["NCBITaxon%3A1041140","Rhizobium leguminosarum bv. phaseoli FA23"]]},{"id":"NCBITaxon:5507","l":"Fusarium oxysporum","na":5,"nb":27,"a":[["Pfam%3APF02015","Glycosyl hydrolase family 45"],["PROSITE%3APS01140","Glycosyl hydrolases family 45 active site"],["TED%3AAF-A0A2H3TJY2-F1-model_v4_TED01","TED novel fold AF-A0A2H3TJY2-F1-model_v4_TED01"],["TED%3AAF-A0A420N954-F1-model_v4_TED01","TED novel fold AF-A0A420N954-F1-model_v4_TED01"],["TED%3AAF-A0A420P6J4-F1-model_v4_TED01","TED novel fold AF-A0A420P6J4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5507","Fusarium oxysporum"],["NCBITaxon%3A72712","Fusarium oxysporum f. sp. albedinis"],["NCBITaxon%3A396571","Fusarium oxysporum f. sp. cepae"],["NCBITaxon%3A62683","Fusarium oxysporum f. sp. ciceris"],["NCBITaxon%3A100902","Fusarium oxysporum f. sp. conglutinans"],["NCBITaxon%3A660025","Fusarium oxysporum f. sp. conglutinans Fo5176"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":25,"nb":5,"a":[["Pfam%3APF13372","Alginate export"],["Pfam%3APF25965","ALG44 beta-barrel domain"],["Pfam%3APF25964","ALG44, barrel-sandwich hybrid domain"],["Pfam%3APF16844","Dinitrogenase iron-molybdenum cofactor, N-terminal"],["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"]],"b":[["NCBITaxon%3A354","Azotobacter vinelandii"],["NCBITaxon%3A1283330","Azotobacter vinelandii CA"],["NCBITaxon%3A1283331","Azotobacter vinelandii CA6"],["NCBITaxon%3A322710","Azotobacter vinelandii DJ"],["NCBITaxon%3A1314750","Azotobacter vinelandii NBRC 13581"]]},{"id":"NCBITaxon:1598","l":"Limosilactobacillus reuteri","na":5,"nb":23,"a":[["TED%3AAF-A0A6N1EMN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N1EMN7-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2V3C3-F1-model_v4_TED01","TED novel fold AF-A0A1Y2V3C3-F1-model_v4_TED01"],["TED%3AAF-A0A848BUA9-F1-model_v4_TED01","TED novel fold AF-A0A848BUA9-F1-model_v4_TED01"],["TED%3AAF-A0A855XJ18-F1-model_v4_TED01","TED novel fold AF-A0A855XJ18-F1-model_v4_TED01"],["TED%3AAF-Q6WUB1-F1-model_v4_TED03","TED novel fold AF-Q6WUB1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1581","Lentilactobacillus buchneri"],["NCBITaxon%3A2767931","Lentilactobacillus sp."],["NCBITaxon%3A1613","Limosilactobacillus fermentum"],["NCBITaxon%3A1598","Limosilactobacillus reuteri"],["NCBITaxon%3A1273150","Limosilactobacillus reuteri 1063"],["NCBITaxon%3A525341","Limosilactobacillus reuteri CF48-3A"]]},{"id":"NCBITaxon:1833","l":"Rhodococcus erythropolis","na":5,"nb":19,"a":[["Pfam%3APF08028","Acyl-CoA dehydrogenase, C-terminal domain"],["Pfam%3APF13816","Haem-containing dehydratase"],["Pfam%3APF07858","Limonene-1,2-epoxide hydrolase catalytic domain"],["Pfam%3APF09663","Amidohydrolase ring-opening protein (Amido_AtzD_TrzD)"],["TED%3AAF-A0A401N7F7-F1-model_v4_TED02","TED novel fold AF-A0A401N7F7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1818","Nocardia globerula"],["NCBITaxon%3A1821","Nocardia sp."],["NCBITaxon%3A53432","Nocardia uniformis"],["NCBITaxon%3A1210100","Nocardia uniformis NBRC 13702"],["NCBITaxon%3A1833","Rhodococcus erythropolis"],["NCBITaxon%3A1136179","Rhodococcus erythropolis CCM2595"]]},{"id":"NCBITaxon:305","l":"Ralstonia solanacearum","na":5,"nb":19,"a":[["Pfam%3APF14897","EpsG family"],["TED%3AAF-A0A7I8FQZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7I8FQZ6-F1-model_v4_TED01"],["TED%3AAF-A0A7H1MI34-F1-model_v4_TED01","TED novel fold AF-A0A7H1MI34-F1-model_v4_TED01"],["TED%3AAF-A0A7I8FKL4-F1-model_v4_TED01","TED novel fold AF-A0A7I8FKL4-F1-model_v4_TED01"],["TED%3AAF-A0A850FKB0-F1-model_v4_TED01","TED novel fold AF-A0A850FKB0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1310165","Ralstonia pseudosolanacearum"],["NCBITaxon%3A305","Ralstonia solanacearum"],["NCBITaxon%3A859656","Ralstonia solanacearum CFBP2957"],["NCBITaxon%3A859655","Ralstonia solanacearum CMR15"],["NCBITaxon%3A1130828","Ralstonia solanacearum FJAT-1458"],["NCBITaxon%3A1130829","Ralstonia solanacearum FJAT-91"]]},{"id":"NCBITaxon:552","l":"Erwinia amylovora","na":5,"nb":17,"a":[["Pfam%3APF09008","Head binding"],["Pfam%3APF11725","AvrE-family Type-III effector proteins (T3Es)"],["Pfam%3APF03608","PTS system enzyme II sorbitol-specific factor"],["Pfam%3APF07663","Sorbitol phosphotransferase enzyme II C-terminus"],["Pfam%3APF03612","Sorbitol phosphotransferase enzyme II N-terminus"]],"b":[["NCBITaxon%3A552","Erwinia amylovora"],["NCBITaxon%3A1255306","Erwinia amylovora 01SFR-BO"],["NCBITaxon%3A1427519","Erwinia amylovora 692"],["NCBITaxon%3A1027397","Erwinia amylovora ACW56400"],["NCBITaxon%3A716540","Erwinia amylovora ATCC 49946"],["NCBITaxon%3A889211","Erwinia amylovora ATCC BAA-2158"]]},{"id":"NCBITaxon:511","l":"Alcaligenes faecalis","na":5,"nb":14,"a":[["Pfam%3APF16867","Dimethlysulfonioproprionate lyase"],["Pfam%3APF17645","Arylmalonate decarboxylase"],["Pfam%3APF06433","Methylamine dehydrogenase heavy chain (MADH)"],["TED%3AAF-A0A1Z3MKY1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z3MKY1-F1-model_v4_TED01"],["TED%3AAF-A0A2U2BPX7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2U2BPX7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A134375","Achromobacter sp."],["NCBITaxon%3A511","Alcaligenes faecalis"],["NCBITaxon%3A1255592","Alcaligenes faecalis 2L10"],["NCBITaxon%3A32001","Alcaligenes faecalis subsp. faecalis"],["NCBITaxon%3A1218102","Alcaligenes faecalis subsp. faecalis NBRC 13111"],["NCBITaxon%3A1156918","Alcaligenes faecalis subsp. faecalis NCIB 8687"]]},{"id":"NCBITaxon:1302","l":"Streptococcus gordonii","na":13,"nb":5,"a":[["Pfam%3APF18652","Adhesin P1 N-terminal domain"],["Pfam%3APF17998","Cell surface antigen I/II C2 terminal domain"],["Pfam%3APF16364","Cell surface antigen C-terminus"],["Pfam%3APF18938","Atypical Rib domain"],["Pfam%3APF08759","Glycosyltransferase GT-D fold"],["Pfam%3APF22145","GtfA extended beta-sheet domain"]],"b":[["NCBITaxon%3A1302","Streptococcus gordonii"],["NCBITaxon%3A1308737","Streptococcus gordonii ADL-228"],["NCBITaxon%3A29390","Streptococcus gordonii str. Challis"],["NCBITaxon%3A467705","Streptococcus gordonii str. Challis substr. CH1"],["NCBITaxon%3A1339616","Streptococcus gordonii TSDC19.2-1.1"]]},{"id":"NCBITaxon:31958","l":"Amycolatopsis orientalis","na":5,"nb":13,"a":[["Pfam%3APF16990","Carbohydrate binding module (family 35)"],["Pfam%3APF14696","Hydroxyphenylpyruvate dioxygenase, HPPD, N-terminal"],["Pfam%3APF03559","NDP-hexose 2,3-dehydratase"],["Pfam%3APF18368","Exo-beta-D-glucosaminidase Ig-fold domain"],["TED%3AAF-K4FDK5-F1-model_v4_TED01","TED highly-symmetric fold AF-K4FDK5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A346045","Amycolatopsis benzoatilytica"],["NCBITaxon%3A1089544","Amycolatopsis benzoatilytica AK 16/65"],["NCBITaxon%3A31959","Amycolatopsis lurida"],["NCBITaxon%3A1460371","Amycolatopsis lurida NRRL 2430"],["NCBITaxon%3A31958","Amycolatopsis orientalis"],["NCBITaxon%3A1125971","Amycolatopsis orientalis DSM 40040 = KCTC 9412"]]},{"id":"NCBITaxon:367830","l":"Staphylococcus aureus (strain USA300)","na":13,"nb":5,"a":[["Pfam%3APF13930","DNA/RNA non-specific endonuclease"],["Pfam%3APF27280","EsaA helical domain"],["Pfam%3APF26323","Staphylococcus aureus type VII secretion system substrate EsxC"],["Pfam%3APF27443","Immunodominant staphylococcal antigen B"],["Pfam%3APF20861","Iron-regulated surface determinant protein H/B, linker domain"],["Pfam%3APF11434","Chemotaxis-inhibiting protein CHIPS"]],"b":[["NCBITaxon%3A367830","Staphylococcus aureus subsp. aureus USA300"],["NCBITaxon%3A451515","Staphylococcus aureus subsp. aureus USA300_FPR3757"],["NCBITaxon%3A451516","Staphylococcus aureus subsp. aureus USA300_TCH1516"],["NCBITaxon%3A566454","Staphylococcus aureus subsp. aureus USA300_TCH1959"],["NCBITaxon%3A450394","Staphylococcus aureus subsp. aureus USA300_TCH959"]]},{"id":"NCBITaxon:1318","l":"Streptococcus parasanguinis","na":5,"nb":12,"a":[["Pfam%3APF26337","Glucosyltransferase 3-like, C-terminal domain"],["Pfam%3APF26334","Glucosyltransferase 3-like, N-terminal domain"],["Pfam%3APF22145","GtfA extended beta-sheet domain"],["Pfam%3APF27244","GtfB middle domain"],["Pfam%3APF04286","Protein of unknown function (DUF445)"]],"b":[["NCBITaxon%3A45634","Streptococcus cristatus"],["NCBITaxon%3A1318","Streptococcus parasanguinis"],["NCBITaxon%3A760570","Streptococcus parasanguinis ATCC 15912"],["NCBITaxon%3A888048","Streptococcus parasanguinis ATCC 903"],["NCBITaxon%3A1073372","Streptococcus parasanguinis CC87K"],["NCBITaxon%3A1403947","Streptococcus parasanguinis DORA_23_24"]]},{"id":"NCBITaxon:1393","l":"Brevibacillus brevis","na":5,"nb":12,"a":[["Pfam%3APF03306","Alpha-acetolactate decarboxylase"],["Pfam%3APF05384","Sensor protein DegS"],["TED%3AAF-A0A2Z4MK38-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z4MK38-F1-model_v4_TED01"],["TED%3AAF-A0A2Z4MPQ6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2Z4MPQ6-F1-model_v4_TED02"],["TED%3AAF-A0A517IGN3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A517IGN3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1391","Aneurinibacillus aneurinilyticus"],["NCBITaxon%3A267746","Aneurinibacillus danicus"],["NCBITaxon%3A47500","Aneurinibacillus migulanus"],["NCBITaxon%3A45462","Brevibacillus borstelensis"],["NCBITaxon%3A1393","Brevibacillus brevis"],["NCBITaxon%3A1129895","Brevibacillus brevis FJAT-0809-GLX"]]},{"id":"NCBITaxon:435","l":"Acetobacter aceti","na":5,"nb":12,"a":[["Pfam%3APF13336","Acetyl-CoA hydrolase/transferase C-terminal domain"],["Pfam%3APF02550","Acetyl-CoA hydrolase/transferase N-terminal domain"],["Pfam%3APF13442","Cytochrome C oxidase, cbb3-type, subunit III"],["Pfam%3APF06481","COX Aromatic Rich Motif"],["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"]],"b":[["NCBITaxon%3A435","Acetobacter aceti"],["NCBITaxon%3A1457393","Acetobacter aceti 1023"],["NCBITaxon%3A663932","Acetobacter aceti ATCC 23746"],["NCBITaxon%3A887700","Acetobacter aceti NBRC 14818"],["NCBITaxon%3A1206747","Acetobacter aceti NRIC 0242"],["NCBITaxon%3A178900","Acetobacter cerevisiae"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":5,"nb":11,"a":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF02963","Restriction endonuclease EcoRI"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["PROSITE%3APS00974","Mannitol dehydrogenases signature"],["PROSITE%3APS00567","Phosphoribulokinase signature"]],"b":[["NCBITaxon%3A1063","Cereibacter sphaeroides"],["NCBITaxon%3A272943","Cereibacter sphaeroides 2.4.1"],["NCBITaxon%3A349102","Cereibacter sphaeroides ATCC 17025"],["NCBITaxon%3A349101","Cereibacter sphaeroides ATCC 17029"],["NCBITaxon%3A39723","Cereibacter sphaeroides f. sp. denitrificans"],["NCBITaxon%3A633146","Cereibacter sphaeroides GA"]]},{"id":"NCBITaxon:556","l":"Dickeya chrysanthemi","na":5,"nb":9,"a":[["Pfam%3APF18390","Glycogen debranching enzyme C-terminal domain"],["Pfam%3APF25994","AprE, long alpha-helical hairpin"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF03812","2-keto-3-deoxygluconate permease"],["Pfam%3APF09589","HrpA pilus formation protein"]],"b":[["NCBITaxon%3A556","Dickeya chrysanthemi"],["NCBITaxon%3A561229","Dickeya chrysanthemi Ech1591"],["NCBITaxon%3A1224148","Dickeya chrysanthemi NCPPB 3533"],["NCBITaxon%3A1223569","Dickeya chrysanthemi NCPPB 402"],["NCBITaxon%3A3474837","Dickeya chrysanthemi pv. chrysanthemi"],["NCBITaxon%3A3474953","Dickeya chrysanthemi pv. parthenii"]]},{"id":"NCBITaxon:292800","l":"Flavonifractor plautii","na":8,"nb":5,"a":[["TED%3AAF-A0A6I2QXD7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I2QXD7-F1-model_v4_TED01"],["TED%3AAF-A0A6I2R9U0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I2R9U0-F1-model_v4_TED01"],["TED%3AAF-A0A6I7GJ83-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6I7GJ83-F1-model_v4_TED02"],["TED%3AAF-A0A174L5D2-F1-model_v4_TED02","TED novel fold AF-A0A174L5D2-F1-model_v4_TED02"],["TED%3AAF-A0A6I2R566-F1-model_v4_TED01","TED novel fold AF-A0A6I2R566-F1-model_v4_TED01"],["TED%3AAF-A0A6I2R5K9-F1-model_v4_TED01","TED novel fold AF-A0A6I2R5K9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A292800","Flavonifractor plautii"],["NCBITaxon%3A742738","Flavonifractor plautii 1_3_50AFAA"],["NCBITaxon%3A411475","Flavonifractor plautii ATCC 29863"],["NCBITaxon%3A1073358","Flavonifractor plautii CC43_001K"],["NCBITaxon%3A649753","Flavonifractor plautii DSM 6740"]]},{"id":"NCBITaxon:28448","l":"Komagataeibacter xylinus","na":5,"nb":7,"a":[["Pfam%3APF03170","Cellulose synthase BcsB, first CBM domain"],["Pfam%3APF03500","Cellulose synthase subunit D"],["Pfam%3APF05420","Cellulose synthase operon protein C C-terminus (BCSC_C)"],["Pfam%3APF17040","Cellulose-complementing protein A"],["Pfam%3APF07721","Tetratricopeptide repeat"]],"b":[["NCBITaxon%3A435","Acetobacter aceti"],["NCBITaxon%3A1053551","Komagataeibacter sucrofermentans"],["NCBITaxon%3A1307942","Komagataeibacter sucrofermentans DSM 15973"],["NCBITaxon%3A28448","Komagataeibacter xylinus"],["NCBITaxon%3A1296990","Komagataeibacter xylinus E25"],["NCBITaxon%3A1234668","Komagataeibacter xylinus NBRC 13693"]]},{"id":"NCBITaxon:1916","l":"Streptomyces lividans","na":6,"nb":5,"a":[["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["Pfam%3APF27079","SpdB plasmid transfer protein, C-terminal HTH domain"],["Pfam%3APF27072","KilB plasmid transfer protein"],["Pfam%3APF08386","TAP-like protein"],["PROSITE%3APS00999","Streptomyces subtilisin-type inhibitors signature"],["Pfam%3APF03664","Glycosyl hydrolase family 62"]],"b":[["NCBITaxon%3A1894","Kitasatospora aureofaciens"],["NCBITaxon%3A1916","Streptomyces lividans"],["NCBITaxon%3A1200984","Streptomyces lividans 1326"],["NCBITaxon%3A457428","Streptomyces lividans TK24"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:2210","l":"Methanosarcina thermophila","na":6,"nb":5,"a":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF19436","ACS/CODH beta subunit C-terminal"],["Pfam%3APF03598","CO dehydrogenase/acetyl-CoA synthase complex beta subunit"],["Pfam%3APF00871","Acetokinase family"],["PROSITE%3APS01075","Acetate and butyrate kinases family signature 1"],["PROSITE%3APS01076","Acetate and butyrate kinases family signature 2"]],"b":[["NCBITaxon%3A1520800","Methanosarcina sp. DSM 11855"],["NCBITaxon%3A2210","Methanosarcina thermophila"],["NCBITaxon%3A1434121","Methanosarcina thermophila CHTI-55"],["NCBITaxon%3A1434122","Methanosarcina thermophila MST-A1"],["NCBITaxon%3A523844","Methanosarcina thermophila TM-1"]]},{"id":"NCBITaxon:1197","l":"Microchaete diplosiphon","na":5,"nb":5,"a":[["Pfam%3APF13546","DDE superfamily endonuclease"],["Pfam%3APF05996","Ferredoxin-dependent bilin reductase"],["Pfam%3APF13613","Helix-turn-helix of DDE superfamily endonuclease"],["PROSITE%3APS00235","Gas vesicles protein GVPc repeated domain signature"],["Pfam%3APF01304","Gas vesicles protein GVPc repeated domain"]],"b":[["NCBITaxon%3A1197","Microchaete diplosiphon"],["NCBITaxon%3A571433","Microchaete diplosiphon B590"],["NCBITaxon%3A1168853","Microchaete diplosiphon CCALA 811"],["NCBITaxon%3A1776041","Microchaete diplosiphon KSU-AQIQ-10"],["NCBITaxon%3A1973485","Microchaete diplosiphon NIES-3275"]]},{"id":"NCBITaxon:319","l":"Pseudomonas savastanoi pv. phaseolicola","na":5,"nb":5,"a":[["Pfam%3APF16847","Avirulence AvrPtoB, BAK1-binding domain"],["Pfam%3APF09046","AvrPtoB E3 ubiquitin ligase"],["Pfam%3APF01052","Type III flagellar switch regulator (C-ring) FliN C-term"],["Pfam%3APF27361","HrcQa N-terminal domain"],["Pfam%3APF04877","HrpZ"]],"b":[["NCBITaxon%3A29438","Pseudomonas savastanoi"],["NCBITaxon%3A319","Pseudomonas savastanoi pv. phaseolicola"],["NCBITaxon%3A264730","Pseudomonas savastanoi pv. phaseolicola 1448A"],["NCBITaxon%3A1079060","Pseudomonas savastanoi pv. phaseolicola 1644R"],["NCBITaxon%3A317","Pseudomonas syringae"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":5,"nb":5,"a":[["TED%3AAF-A0A4Y6CF56-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y6CF56-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6CNZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Y6CNZ1-F1-model_v4_TED02"],["TED%3AAF-A0A7Y4IIX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4IIX4-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6B7F9-F1-model_v4_TED01","TED novel fold AF-A0A4Y6B7F9-F1-model_v4_TED01"],["TED%3AAF-A0A7Y4IR70-F1-model_v4_TED01","TED novel fold AF-A0A7Y4IR70-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A34","Myxococcus xanthus"],["NCBITaxon%3A246197","Myxococcus xanthus DK 1622"],["NCBITaxon%3A1198133","Myxococcus xanthus DZ2"],["NCBITaxon%3A1198538","Myxococcus xanthus DZF1"],["NCBITaxon%3A675543","Myxococcus xanthus NewJersey2"]]},{"id":"NCBITaxon:93466","l":"Fervidobacterium pennivorans","na":5,"nb":5,"a":[["Pfam%3APF22148","Fervidolysin N-terminal prodomain"],["Pfam%3APF22349","Fervidolysin, second beta-sandwich domain"],["Pfam%3APF24025","DR_A0283-like, Ig-like domain"],["TED%3AAF-A0A7V4NEA3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7V4NEA3-F1-model_v4_TED03"],["TED%3AAF-A0A7V4KDB4-F1-model_v4_TED01","TED novel fold AF-A0A7V4KDB4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A93466","Fervidobacterium pennivorans"],["NCBITaxon%3A771875","Fervidobacterium pennivorans DSM 9078"],["NCBITaxon%3A3389976","Fervidobacterium pennivorans subsp. carthaginiensis"],["NCBITaxon%3A3022686","Fervidobacterium pennivorans subsp. keratinolyticus"],["NCBITaxon%3A3389975","Fervidobacterium pennivorans subsp. shakshaketiis"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":4,"nb":391,"a":[["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF09711","CRISPR-associated protein (Cas_Csn2)"],["Pfam%3APF06308","23S rRNA methylastransferase leader peptide (ErmCL)"]],"b":[["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A1260363","Enterococcus faecalis 02-MB-BW-10"],["NCBITaxon%3A1260365","Enterococcus faecalis 02-MB-P-10"],["NCBITaxon%3A1260358","Enterococcus faecalis 06-MB-DW-09"],["NCBITaxon%3A1260359","Enterococcus faecalis 06-MB-S-04"],["NCBITaxon%3A1260360","Enterococcus faecalis 06-MB-S-10"]]},{"id":"NCBITaxon:1311","l":"Streptococcus agalactiae","na":4,"nb":332,"a":[["Pfam%3APF19567","Capsular polysaccharide synthesis, CpsB/CapC"],["Pfam%3APF16828","GAG-binding domain on surface antigen"],["Pfam%3APF27244","GtfB middle domain"],["Pfam%3APF07373","CAMP factor (Cfa)"]],"b":[["NCBITaxon%3A536","Chromobacterium violaceum"],["NCBITaxon%3A2896850","Phocaeicola oris"],["NCBITaxon%3A1311","Streptococcus agalactiae"],["NCBITaxon%3A997295","Streptococcus agalactiae 072.21"],["NCBITaxon%3A1309806","Streptococcus agalactiae 09mas018883"],["NCBITaxon%3A1333579","Streptococcus agalactiae 112469214-isolate1"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":4,"nb":287,"a":[["Pfam%3APF01375","Heat-labile enterotoxin alpha chain"],["Pfam%3APF09101","Exotoxin A binding"],["Pfam%3APF09009","Exotoxin A catalytic"],["Pfam%3APF09102","Exotoxin A, targeting"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A666","Vibrio cholerae"],["NCBITaxon%3A693741","Vibrio cholerae 0139-ARG"],["NCBITaxon%3A1294144","Vibrio cholerae 01-1751"],["NCBITaxon%3A592313","Vibrio cholerae 12129(1)"],["NCBITaxon%3A412966","Vibrio cholerae 1587"]]},{"id":"NCBITaxon:28450","l":"Burkholderia pseudomallei","na":4,"nb":214,"a":[["Pfam%3APF18664","CdiA C-terminal tRNase domain"],["Pfam%3APF12106","Colicin E5 ribonuclease domain"],["Pfam%3APF11480","Colicin-E5 Imm protein"],["Pfam%3APF13332","Hemagglutinin repeat"]],"b":[["NCBITaxon%3A28450","Burkholderia pseudomallei"],["NCBITaxon%3A1085027","Burkholderia pseudomallei 1026a"],["NCBITaxon%3A884204","Burkholderia pseudomallei 1026b"],["NCBITaxon%3A1310219","Burkholderia pseudomallei 104(1990)"],["NCBITaxon%3A357348","Burkholderia pseudomallei 1106a"],["NCBITaxon%3A357347","Burkholderia pseudomallei 1106b"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":4,"nb":183,"a":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"],["TED%3AAF-A0A085UKV7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085UKV7-F1-model_v4_TED01"],["TED%3AAF-A0A4R6IU28-F1-model_v4_TED02","TED novel fold AF-A0A4R6IU28-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A86840","Pseudomonas cannabina"],["NCBITaxon%3A53409","Pseudomonas coronafaciens"],["NCBITaxon%3A29438","Pseudomonas savastanoi"],["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A1204471","Pseudomonas syringae BRIP34876"]]},{"id":"NCBITaxon:28037","l":"Streptococcus mitis","na":4,"nb":38,"a":[["Pfam%3APF03047","COMC family"],["TED%3AAF-A0A1X1L9U5-F1-model_v4_TED02","TED novel fold AF-A0A1X1L9U5-F1-model_v4_TED02"],["TED%3AAF-A0A428B8X0-F1-model_v4_TED01","TED novel fold AF-A0A428B8X0-F1-model_v4_TED01"],["TED%3AAF-A0A6L5H4V3-F1-model_v4_TED03","TED novel fold AF-A0A6L5H4V3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1660","Schaalia odontolytica"],["NCBITaxon%3A45634","Streptococcus cristatus"],["NCBITaxon%3A1302863","Streptococcus cristatus AS 1.3089"],["NCBITaxon%3A1302","Streptococcus gordonii"],["NCBITaxon%3A28037","Streptococcus mitis"],["NCBITaxon%3A1239792","Streptococcus mitis 11/5"]]},{"id":"NCBITaxon:85698","l":"Achromobacter xylosoxidans","na":4,"nb":21,"a":[["Pfam%3APF25975","CzcB C-terminal circularly permuted SH3-like domain"],["Pfam%3APF17524","Anti-sigma factor CnrY"],["Pfam%3APF10778","Halocarboxylic acid dehydrogenase DehI"],["TED%3AAF-A0A1R1JVF9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1R1JVF9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1389935","Achromobacter animicus"],["NCBITaxon%3A1353891","Achromobacter deleyi"],["NCBITaxon%3A32002","Achromobacter denitrificans"],["NCBITaxon%3A217204","Achromobacter insolitus"],["NCBITaxon%3A1287735","Achromobacter insuavis"],["NCBITaxon%3A470868","Achromobacter marplatensis"]]},{"id":"NCBITaxon:1914","l":"Streptomyces lavendulae","na":4,"nb":17,"a":[["Pfam%3APF01678","Diaminopimelate epimerase"],["Pfam%3APF27100","D-cycloserine synthetase DcsG, N-terminal domain"],["Pfam%3APF20240","Domain of unknown function (DUF6597)"],["Pfam%3APF11731","Pathogenicity locus"]],"b":[["NCBITaxon%3A1914","Streptomyces lavendulae"],["NCBITaxon%3A1522107","Streptomyces lavendulae subsp. avirens"],["NCBITaxon%3A1522108","Streptomyces lavendulae subsp. brasilicus"],["NCBITaxon%3A68190","Streptomyces lavendulae subsp. colombiensis"],["NCBITaxon%3A516458","Streptomyces lavendulae subsp. fuscus"],["NCBITaxon%3A66421","Streptomyces lavendulae subsp. grasserius"]]},{"id":"NCBITaxon:285","l":"Comamonas testosteroni","na":4,"nb":16,"a":[["Pfam%3APF02900","Catalytic LigB subunit of aromatic ring-opening dioxygenase"],["Pfam%3APF19301","LigXa C-terminal domain like"],["TED%3AAF-A0A096HND0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A096HND0-F1-model_v4_TED01"],["TED%3AAF-A0A1Y1JCM1-F1-model_v4_TED01","TED novel fold AF-A0A1Y1JCM1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1775535","Acidovorax sp. JCM 10065"],["NCBITaxon%3A285","Comamonas testosteroni"],["NCBITaxon%3A1009852","Comamonas testosteroni ATCC 11996"],["NCBITaxon%3A543891","Comamonas testosteroni CNB-1"],["NCBITaxon%3A688245","Comamonas testosteroni CNB-2"],["NCBITaxon%3A1440775","Comamonas testosteroni I2"]]},{"id":"NCBITaxon:301","l":"Ectopseudomonas oleovorans","na":4,"nb":15,"a":[["PROSITE%3APS00202","Rubredoxin signature"],["TED%3AAF-A0A2W5VSG0-F1-model_v4_TED02","TED novel fold AF-A0A2W5VSG0-F1-model_v4_TED02"],["TED%3AAF-A0A379JMN0-F1-model_v4_TED01","TED novel fold AF-A0A379JMN0-F1-model_v4_TED01"],["TED%3AAF-A0A379PLI0-F1-model_v4_TED03","TED novel fold AF-A0A379PLI0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A43263","Aquipseudomonas alcaligenes"],["NCBITaxon%3A301","Ectopseudomonas oleovorans"],["NCBITaxon%3A1453503","Ectopseudomonas oleovorans AD6"],["NCBITaxon%3A1182590","Ectopseudomonas oleovorans CECT 5344"],["NCBITaxon%3A1033992","Ectopseudomonas oleovorans MOIL14HWK12"],["NCBITaxon%3A468557","Ectopseudomonas oleovorans MTCC 5210"]]},{"id":"NCBITaxon:55601","l":"Vibrio anguillarum","na":4,"nb":15,"a":[["Pfam%3APF17327","Acyl homoserine lactone synthase"],["PROSITE%3APS00949","Autoinducer synthase family signature"],["TED%3AAF-A0A241NLV5-F1-model_v4_TED03","TED novel fold AF-A0A241NLV5-F1-model_v4_TED03"],["TED%3AAF-A0A290PUC4-F1-model_v4_TED02","TED novel fold AF-A0A290PUC4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1056982","Gordonia phosphorivorans"],["NCBITaxon%3A55601","Vibrio anguillarum"],["NCBITaxon%3A1161910","Vibrio anguillarum 13YK-003"],["NCBITaxon%3A882102","Vibrio anguillarum 775"],["NCBITaxon%3A990314","Vibrio anguillarum 96F"],["NCBITaxon%3A882846","Vibrio anguillarum ATCC 43308"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":4,"nb":15,"a":[["PROSITE%3APS00949","Autoinducer synthase family signature"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"],["PROSITE%3APS00607","cAMP phosphodiesterases class-II signature"],["TED%3AAF-A0A844NWZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A844NWZ1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A668","Aliivibrio fischeri"],["NCBITaxon%3A617136","Aliivibrio fischeri 1-C10"],["NCBITaxon%3A617138","Aliivibrio fischeri 9ZB36"],["NCBITaxon%3A1298605","Aliivibrio fischeri ATCC 7744 = JCM 18803 = DSM 507"],["NCBITaxon%3A1367486","Aliivibrio fischeri CB37"],["NCBITaxon%3A1367487","Aliivibrio fischeri EM17"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":4,"nb":14,"a":[["TED%3AAF-A0A7W3UB61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W3UB61-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F4B3-F1-model_v4_TED01","TED novel fold AF-A0A0D7F4B3-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F6R4-F1-model_v4_TED01","TED novel fold AF-A0A0D7F6R4-F1-model_v4_TED01"],["TED%3AAF-A0A7W3YI15-F1-model_v4_TED02","TED novel fold AF-A0A7W3YI15-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1076","Rhodopseudomonas palustris"],["NCBITaxon%3A74570","Rhodopseudomonas palustris ATCC 17001"],["NCBITaxon%3A74573","Rhodopseudomonas palustris ATCC 17007"],["NCBITaxon%3A316055","Rhodopseudomonas palustris BisA53"],["NCBITaxon%3A316056","Rhodopseudomonas palustris BisB18"],["NCBITaxon%3A316057","Rhodopseudomonas palustris BisB5"]]},{"id":"NCBITaxon:56615","l":"Puccinia graminis f. sp. tritici","na":4,"nb":13,"a":[["TED%3AAF-A0A5B0PWH9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B0PWH9-F1-model_v4_TED01"],["TED%3AAF-A0A5B0SKS6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5B0SKS6-F1-model_v4_TED02"],["TED%3AAF-A0A5B0NZU9-F1-model_v4_TED01","TED novel fold AF-A0A5B0NZU9-F1-model_v4_TED01"],["TED%3AAF-A0A5B0QTE7-F1-model_v4_TED03","TED novel fold AF-A0A5B0QTE7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A56615","Puccinia graminis f. sp. tritici"],["NCBITaxon%3A626359","Puccinia graminis f. sp. tritici 05KEN156/04"],["NCBITaxon%3A626360","Puccinia graminis f. sp. tritici 06KEN-19-V-3"],["NCBITaxon%3A626362","Puccinia graminis f. sp. tritici 06YEM 34-1"],["NCBITaxon%3A626361","Puccinia graminis f. sp. tritici 07KEN 24-4"],["NCBITaxon%3A645092","Puccinia graminis f. sp. tritici 126-6711"]]},{"id":"NCBITaxon:28447","l":"Clavibacter michiganensis","na":4,"nb":12,"a":[["TED%3AAF-A0A251YC11-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A251YC11-F1-model_v4_TED02"],["TED%3AAF-A0A2S5VA57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5VA57-F1-model_v4_TED01"],["TED%3AAF-A0A2S5VJK2-F1-model_v4_TED01","TED novel fold AF-A0A2S5VJK2-F1-model_v4_TED01"],["TED%3AAF-A0A399NHQ8-F1-model_v4_TED01","TED novel fold AF-A0A399NHQ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1874630","Clavibacter capsici"],["NCBITaxon%3A2301718","Clavibacter lycopersici"],["NCBITaxon%3A28447","Clavibacter michiganensis"],["NCBITaxon%3A33014","Clavibacter michiganensis subsp. insidiosus"],["NCBITaxon%3A33013","Clavibacter michiganensis subsp. michiganensis"],["NCBITaxon%3A443906","Clavibacter michiganensis subsp. michiganensis NCPPB 382"]]},{"id":"NCBITaxon:301447","l":"Streptococcus pyogenes serotype M1","na":12,"nb":4,"a":[["Pfam%3APF16595","PAM-interacting domain of CRISPR-associated endonuclease Cas9"],["Pfam%3APF22702","Cas9 RuvC domain"],["Pfam%3APF24547","Domain of unknown function (DUF7601)"],["Pfam%3APF22382","Endo-beta-N-acetylglucosaminidase, helical bundle"],["Pfam%3APF20746","Endo-beta-N-acetylglucosaminidase F2, Ig-like domain"],["Pfam%3APF12892","Spy0128-like isopeptide containing domain"]],"b":[["NCBITaxon%3A1207470","Streptococcus pyogenes M1 476"],["NCBITaxon%3A160490","Streptococcus pyogenes M1 GAS"],["NCBITaxon%3A293653","Streptococcus pyogenes MGAS5005"],["NCBITaxon%3A301447","Streptococcus pyogenes serotype M1"]]},{"id":"NCBITaxon:272624","l":"Legionella pneumophila subsp. pneumophila (strain Philadelphia 1 / ATCC 33152 / DSM 7513)","na":9,"nb":4,"a":[["Pfam%3APF22170","Phosphocholine transferase AnkX insertion domain"],["Pfam%3APF23127","DotM, C-terminal cytoplasmic domain"],["Pfam%3APF14860","DrrA phosphatidylinositol 4-phosphate binding domain"],["Pfam%3APF01346","Domain amino terminal to FKBP-type peptidyl-prolyl isomerase"],["Pfam%3APF19335","Heavy metal binding domain"],["Pfam%3APF26393","Lart1 ADP-ribosyltransferase family"]],"b":[["NCBITaxon%3A446","Legionella pneumophila"],["NCBITaxon%3A91891","Legionella pneumophila subsp. pneumophila"],["NCBITaxon%3A1236535","Legionella pneumophila subsp. pneumophila JCM 7571"],["NCBITaxon%3A272624","Legionella pneumophila subsp. pneumophila str. Philadelphia 1"]]},{"id":"NCBITaxon:40520","l":"Blautia obeum","na":4,"nb":7,"a":[["TED%3AAF-A0A174PFW9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A174PFW9-F1-model_v4_TED01"],["TED%3AAF-A0A174PHS9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A174PHS9-F1-model_v4_TED02"],["TED%3AAF-A0A415LGR0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A415LGR0-F1-model_v4_TED01"],["TED%3AAF-A0A414KHY7-F1-model_v4_TED02","TED novel fold AF-A0A414KHY7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A40520","Blautia obeum"],["NCBITaxon%3A657314","Blautia obeum A2-162"],["NCBITaxon%3A411459","Blautia obeum ATCC 29174"],["NCBITaxon%3A1263107","Blautia obeum CAG:39"],["NCBITaxon%3A1339609","Blautia obeum TS7.1-1.1"],["NCBITaxon%3A1339610","Blautia obeum TS7.3-1.1"]]},{"id":"NCBITaxon:238","l":"Elizabethkingia meningoseptica","na":4,"nb":6,"a":[["Pfam%3APF21252","Glycosyl hydrolase 109, C-terminal domain"],["Pfam%3APF26305","cGAS/DncV-like nucleotidyltransferase C-terminal helical domain"],["PROSITE%3APS00743","Beta-lactamases class B signature 1"],["PROSITE%3APS00744","Beta-lactamases class B signature 2"]],"b":[["NCBITaxon%3A1453492","Chryseobacterium hispalense"],["NCBITaxon%3A238","Elizabethkingia meningoseptica"],["NCBITaxon%3A1216967","Elizabethkingia meningoseptica ATCC 13253 = NBRC 12535"],["NCBITaxon%3A1379264","Elizabethkingia meningoseptica KuYH"],["NCBITaxon%3A247","Empedobacter brevis"],["NCBITaxon%3A343874","Empedobacter falsenii"]]},{"id":"NCBITaxon:5693","l":"Trypanosoma cruzi","na":6,"nb":4,"a":[["Pfam%3APF22592","FCaBP EF-hand domain"],["Pfam%3APF09394","Chagasin family peptidase inhibitor I42"],["Pfam%3APF12131","Protein of unknown function (DUF3586)"],["Pfam%3APF11052","Trans-sialidase of Trypanosoma hydrophobic C-terminal"],["Pfam%3APF13859","BNR repeat-like domain"],["TED%3AAF-A0A2V2XJY2-F1-model_v4_TED02","TED novel fold AF-A0A2V2XJY2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A5693","Trypanosoma cruzi"],["NCBITaxon%3A85057","Trypanosoma cruzi cruzi"],["NCBITaxon%3A353153","Trypanosoma cruzi strain CL Brener"],["NCBITaxon%3A366581","Trypanosoma cruzi strain Esmeraldo"]]},{"id":"NCBITaxon:585","l":"Proteus vulgaris","na":4,"nb":6,"a":[["Pfam%3APF05015","RelE-like toxin of type II toxin-antitoxin system HigB"],["PROSITE%3APS00594","Aromatic amino acids permeases signature"],["PROSITE%3APS00853","Beta-eliminating lyases pyridoxal-phosphate attachment site"],["Pfam%3APF09093","Lyase, catalytic"]],"b":[["NCBITaxon%3A183417","Proteus hauseri"],["NCBITaxon%3A585","Proteus vulgaris"],["NCBITaxon%3A1255590","Proteus vulgaris 1M25"],["NCBITaxon%3A1173773","Proteus vulgaris 66N"],["NCBITaxon%3A1403541","Proteus vulgaris AI05"],["NCBITaxon%3A368002","uncultured Proteus sp."]]},{"id":"NCBITaxon:1366","l":"Pseudolactococcus raffinolactis","na":5,"nb":4,"a":[["TED%3AAF-A0A5R9CHM3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5R9CHM3-F1-model_v4_TED02"],["TED%3AAF-A0A6H0UIE5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6H0UIE5-F1-model_v4_TED01"],["TED%3AAF-A0A6H0UK30-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6H0UK30-F1-model_v4_TED01"],["TED%3AAF-A0A6H0URM1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6H0URM1-F1-model_v4_TED02"],["TED%3AAF-A0A6H0UGG1-F1-model_v4_TED06","TED novel fold AF-A0A6H0UGG1-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A1366","Pseudolactococcus raffinolactis"],["NCBITaxon%3A1215915","Pseudolactococcus raffinolactis 4877"],["NCBITaxon%3A1255675","Pseudolactococcus raffinolactis JIM2957"],["NCBITaxon%3A1348633","Pseudolactococcus raffinolactis NBRC 100932"]]},{"id":"NCBITaxon:1501","l":"Clostridium pasteurianum","na":4,"nb":5,"a":[["Pfam%3APF22609","Iron hydrogenase 1-like, iron-sulfur centre-binding domain"],["Pfam%3APF09582","Iron only nitrogenase protein AnfO (AnfO_nitrog)"],["PROSITE%3APS00746","NifH/frxC family signature 1"],["PROSITE%3APS00699","Nitrogenases component 1 alpha and beta subunits signature 1"]],"b":[["NCBITaxon%3A1501","Clostridium pasteurianum"],["NCBITaxon%3A86416","Clostridium pasteurianum BC1"],["NCBITaxon%3A1262449","Clostridium pasteurianum DSM 525 = ATCC 6013"],["NCBITaxon%3A1341159","Clostridium pasteurianum TK"],["NCBITaxon%3A1506","Clostridium sp."]]},{"id":"NCBITaxon:1505","l":"Paraclostridium sordellii","na":4,"nb":5,"a":[["Pfam%3APF13859","BNR repeat-like domain"],["Pfam%3APF01473","Putative cell wall binding repeat"],["Pfam%3APF19127","Choline-binding repeat"],["TED%3AAF-A0A822PVZ2-F1-model_v4_TED01","TED novel fold AF-A0A822PVZ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1490","Paraclostridium bifermentans"],["NCBITaxon%3A1505","Paraclostridium sordellii"],["NCBITaxon%3A1172204","Paraclostridium sordellii 8483"],["NCBITaxon%3A1292036","Paraclostridium sordellii ATCC 9714"],["NCBITaxon%3A1292035","Paraclostridium sordellii VPI 9048"]]},{"id":"NCBITaxon:1525","l":"Neomoorella thermoacetica","na":4,"nb":5,"a":[["Pfam%3APF25461","Selenocysteine-specific elongation factor, beta-barrel domain"],["Pfam%3APF18537","Carbon monoxide dehydrogenase subunit alpha N-terminal domain"],["Pfam%3APF04060","Putative Fe-S cluster"],["Pfam%3APF03599","CO dehydrogenase/acetyl-CoA synthase delta subunit"]],"b":[["NCBITaxon%3A264732","Moorella thermoacetica ATCC 39073"],["NCBITaxon%3A1122242","Moorella thermoacetica DSM 1974"],["NCBITaxon%3A1325331","Moorella thermoacetica Y72"],["NCBITaxon%3A3051332","Neomoorella caeni"],["NCBITaxon%3A1525","Neomoorella thermoacetica"]]},{"id":"NCBITaxon:2021","l":"Thermobifida fusca","na":5,"nb":4,"a":[["Pfam%3APF00553","Cellulose binding domain"],["Pfam%3APF01341","Glycosyl hydrolases family 6"],["PROSITE%3APS00561","CBM2a (carbohydrate-binding type-2) domain signature"],["PROSITE%3APS00655","Glycosyl hydrolases family 6 signature 1"],["PROSITE%3APS00656","Glycosyl hydrolases family 6 signature 2"]],"b":[["NCBITaxon%3A2021","Thermobifida fusca"],["NCBITaxon%3A1223522","Thermobifida fusca NBRC 14071 = JCM 3263"],["NCBITaxon%3A1169414","Thermobifida fusca TM51"],["NCBITaxon%3A269800","Thermobifida fusca YX"]]},{"id":"NCBITaxon:224914","l":"","na":4,"nb":5,"a":[["Pfam%3APF03625","Domain of unknown function DUF302"],["Pfam%3APF07559","Flagellar basal body protein FlaE D2 domain"],["Pfam%3APF07536","HWE histidine kinase"],["Pfam%3APF06776","Invasion associated locus B (IalB) protein"]],"b":[["NCBITaxon%3A29459","Brucella melitensis"],["NCBITaxon%3A1143191","Brucella melitensis 16M13W"],["NCBITaxon%3A1143190","Brucella melitensis 16M1W"],["NCBITaxon%3A644337","Brucella melitensis bv. 1"],["NCBITaxon%3A224914","Brucella melitensis bv. 1 str. 16M"]]},{"id":"NCBITaxon:28068","l":"Rubrivivax gelatinosus","na":5,"nb":4,"a":[["Pfam%3APF27123","Carotenoid hydratase CrtC"],["Pfam%3APF01355","High potential iron-sulfur protein"],["Pfam%3APF00556","Antenna complex alpha/beta subunit"],["PROSITE%3APS00969","Antenna complexes beta subunits signature"],["TED%3AAF-A0A4R2M4B0-F1-model_v4_TED02","TED novel fold AF-A0A4R2M4B0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A28068","Rubrivivax gelatinosus"],["NCBITaxon%3A1154769","Rubrivivax gelatinosus CBS"],["NCBITaxon%3A983917","Rubrivivax gelatinosus IL144"],["NCBITaxon%3A1138313","Rubrivivax gelatinosus S1"]]},{"id":"NCBITaxon:29494","l":"Vibrio furnissii","na":4,"nb":5,"a":[["Pfam%3APF17957","Bacterial Ig domain"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"],["Pfam%3APF02839","Carbohydrate-binding module family 5/12"],["Pfam%3APF06483","Chitinase C"]],"b":[["NCBITaxon%3A676","Vibrio fluvialis"],["NCBITaxon%3A29494","Vibrio furnissii"],["NCBITaxon%3A675811","Vibrio furnissii CIP 102972"],["NCBITaxon%3A903510","Vibrio furnissii NCTC 11218"],["NCBITaxon%3A1339240","Vibrio furnissii ZOR0035"]]},{"id":"NCBITaxon:32053","l":"Thermostichus vulcanus","na":4,"nb":5,"a":[["Pfam%3APF14495","Cytochrome c-550 domain"],["Pfam%3APF00283","Cytochrome b559, alpha (gene psbE) and beta (gene psbF)subunits"],["Pfam%3APF00284","Lumenal portion of Cytochrome b559, alpha (gene psbE) subunit"],["PROSITE%3APS00537","Cytochrome b559 subunits heme-binding site signature"]],"b":[["NCBITaxon%3A32053","Thermostichus vulcanus"],["NCBITaxon%3A2005468","Thermostichus vulcanus NIES-2134"],["NCBITaxon%3A1048443","Thermostichus vulcanus RKN"],["NCBITaxon%3A455064","Thermostichus vulcanus str. Copeland"],["NCBITaxon%3A2813851","Thermostichus vulcanus str. 'Rupite'"]]},{"id":"NCBITaxon:4792","l":"","na":4,"nb":5,"a":[["TED%3AAF-W2KKX9-F1-model_v4_TED01","TED highly-symmetric fold AF-W2KKX9-F1-model_v4_TED01"],["TED%3AAF-W2KMG1-F1-model_v4_TED01","TED novel fold AF-W2KMG1-F1-model_v4_TED01"],["TED%3AAF-W2LDM9-F1-model_v4_TED01","TED novel fold AF-W2LDM9-F1-model_v4_TED01"],["TED%3AAF-W2MCU3-F1-model_v4_TED03","TED novel fold AF-W2MCU3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A4792","Phytophthora nicotianae"],["NCBITaxon%3A761204","Phytophthora nicotianae INRA-310"],["NCBITaxon%3A1317064","Phytophthora nicotianae P10297"],["NCBITaxon%3A1317065","Phytophthora nicotianae P1569"],["NCBITaxon%3A1317066","Phytophthora nicotianae P1976"]]},{"id":"NCBITaxon:5811","l":"Toxoplasma gondii","na":5,"nb":4,"a":[["Pfam%3APF24633","Domain of unknown function (DUF7630)"],["Pfam%3APF24634","Domain of unknown function (DUF7631)"],["Pfam%3APF05084","Granule antigen protein (GRA6)"],["Pfam%3APF14531","Kinase-like"],["Pfam%3APF10564","Sialic-acid binding micronemal adhesive repeat"]],"b":[["NCBITaxon%3A5811","Toxoplasma gondii"],["NCBITaxon%3A1073826","Toxoplasma gondii GUY-DOS"],["NCBITaxon%3A1073827","Toxoplasma gondii GUY-MAT"],["NCBITaxon%3A1073830","Toxoplasma gondii TgCkGy2"]]},{"id":"NCBITaxon:959","l":"Bdellovibrio bacteriovorus","na":5,"nb":4,"a":[["TED%3AAF-A0A150WJL7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A150WJL7-F1-model_v4_TED01"],["TED%3AAF-A0A150WK21-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A150WK21-F1-model_v4_TED01"],["TED%3AAF-A0A1Z3N7G2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Z3N7G2-F1-model_v4_TED02"],["TED%3AAF-A0A150WR18-F1-model_v4_TED04","TED novel fold AF-A0A150WR18-F1-model_v4_TED04"],["TED%3AAF-A0A162GEG0-F1-model_v4_TED02","TED novel fold AF-A0A162GEG0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A959","Bdellovibrio bacteriovorus"],["NCBITaxon%3A264462","Bdellovibrio bacteriovorus HD100"],["NCBITaxon%3A1069642","Bdellovibrio bacteriovorus str. Tiberius"],["NCBITaxon%3A765869","Bdellovibrio bacteriovorus W"]]},{"id":"NCBITaxon:33","l":"Myxococcus fulvus","na":4,"nb":4,"a":[["TED%3AAF-A0A511SVC1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A511SVC1-F1-model_v4_TED01"],["TED%3AAF-A0A511SU64-F1-model_v4_TED01","TED novel fold AF-A0A511SU64-F1-model_v4_TED01"],["TED%3AAF-A0A511T2U3-F1-model_v4_TED02","TED novel fold AF-A0A511T2U3-F1-model_v4_TED02"],["TED%3AAF-A0A511T9F8-F1-model_v4_TED05","TED novel fold AF-A0A511T9F8-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A33","Myxococcus fulvus"],["NCBITaxon%3A1334629","Myxococcus fulvus 124B02"],["NCBITaxon%3A483219","Myxococcus fulvus HW-1"],["NCBITaxon%3A675525","Myxococcus fulvus Mx f65"]]},{"id":"NCBITaxon:689","l":"Vibrio mediterranei","na":4,"nb":4,"a":[["TED%3AAF-A0A3G4VCH4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3G4VCH4-F1-model_v4_TED01"],["TED%3AAF-A0A7Y3YAY8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y3YAY8-F1-model_v4_TED01"],["TED%3AAF-A0A855TK19-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A855TK19-F1-model_v4_TED01"],["TED%3AAF-A0A3G4V5D8-F1-model_v4_TED03","TED novel fold AF-A0A3G4V5D8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A689","Vibrio mediterranei"],["NCBITaxon%3A1224139","Vibrio mediterranei A203"],["NCBITaxon%3A391591","Vibrio mediterranei AK1"],["NCBITaxon%3A1219069","Vibrio mediterranei NBRC 15635"]]},{"id":"NCBITaxon:149539","l":"Salmonella enterica subsp. enterica serovar Enteritidis","na":3,"nb":619,"a":[["Pfam%3APF13508","Acetyltransferase (GNAT) domain"],["Pfam%3APF26304","FliM/N C-terminal related"],["Pfam%3APF07012","Curlin associated repeat"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A149539","Salmonella enterica subsp. enterica serovar Enteritidis"],["NCBITaxon%3A1192642","Salmonella enterica subsp. enterica serovar Enteritidis str. 02-2966"],["NCBITaxon%3A1192608","Salmonella enterica subsp. enterica serovar Enteritidis str. 04-0307"],["NCBITaxon%3A1192643","Salmonella enterica subsp. enterica serovar Enteritidis str. 0502571"]]},{"id":"NCBITaxon:1639","l":"Listeria monocytogenes","na":3,"nb":478,"a":[["TED%3AAF-A0A6Z1JB74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6Z1JB74-F1-model_v4_TED01"],["TED%3AAF-A0A5Z1VYX2-F1-model_v4_TED01","TED novel fold AF-A0A5Z1VYX2-F1-model_v4_TED01"],["TED%3AAF-A0A823IT06-F1-model_v4_TED02","TED novel fold AF-A0A823IT06-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1639","Listeria monocytogenes"],["NCBITaxon%3A1126011","Listeria monocytogenes 07PF0776"],["NCBITaxon%3A653938","Listeria monocytogenes 08-5578"],["NCBITaxon%3A637381","Listeria monocytogenes 08-5923"],["NCBITaxon%3A393133","Listeria monocytogenes 10403S"],["NCBITaxon%3A1380708","Listeria monocytogenes 36-25-1"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":3,"nb":118,"a":[["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF08130","Type A lantibiotic family"],["Pfam%3APF04738","Lantibiotic dehydratase, N terminus"]],"b":[["NCBITaxon%3A69966","Macrococcoides caseolyticum"],["NCBITaxon%3A1822","Nocardia vaccinii"],["NCBITaxon%3A1210098","Nocardia vaccinii NBRC 15922"],["NCBITaxon%3A1282","Staphylococcus epidermidis"],["NCBITaxon%3A1235440","Staphylococcus epidermidis 12142587"],["NCBITaxon%3A1000590","Staphylococcus epidermidis 14.1.R1.SE"]]},{"id":"NCBITaxon:1166","l":"Dolichospermum flos-aquae","na":3,"nb":107,"a":[["PROSITE%3APS00669","Gas vesicles protein GVPa signature 2"],["PROSITE%3APS00235","Gas vesicles protein GVPc repeated domain signature"],["Pfam%3APF01304","Gas vesicles protein GVPc repeated domain"]],"b":[["NCBITaxon%3A1166","Dolichospermum flos-aquae"],["NCBITaxon%3A749200","Dolichospermum flos-aquae 04-10"],["NCBITaxon%3A1335026","Dolichospermum flos-aquae 04-37"],["NCBITaxon%3A575786","Dolichospermum flos-aquae 04-40"],["NCBITaxon%3A575787","Dolichospermum flos-aquae 04-53"],["NCBITaxon%3A749201","Dolichospermum flos-aquae 04-57"]]},{"id":"NCBITaxon:103796","l":"Pseudomonas syringae pv. actinidiae","na":3,"nb":65,"a":[["Pfam%3APF05425","Copper resistance protein D"],["TED%3AAF-J7I956-F1-model_v4_TED01","TED highly-symmetric fold AF-J7I956-F1-model_v4_TED01"],["TED%3AAF-J7IG33-F1-model_v4_TED01","TED highly-symmetric fold AF-J7IG33-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A103796","Pseudomonas syringae pv. actinidiae"],["NCBITaxon%3A1094176","Pseudomonas syringae pv. actinidiae CFBP 7286"],["NCBITaxon%3A1108967","Pseudomonas syringae pv. actinidiae CH2010-5"],["NCBITaxon%3A1108968","Pseudomonas syringae pv. actinidiae CH2010-6"],["NCBITaxon%3A1343752","Pseudomonas syringae pv. actinidiae CH2010-7"],["NCBITaxon%3A1343741","Pseudomonas syringae pv. actinidiae Haxa4"]]},{"id":"NCBITaxon:93061","l":"Staphylococcus aureus (strain NCTC 8325 / PS 47)","na":47,"nb":3,"a":[["IDPO%3A0000033","flexible linker"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF07694","5TMR of 5TMR-LYT"],["Pfam%3APF01757","Acyltransferase domain"],["Pfam%3APF18719","ArlS sensor domain"],["Pfam%3APF02216","B domain"]],"b":[["NCBITaxon%3A1280","Staphylococcus aureus"],["NCBITaxon%3A93061","Staphylococcus aureus subsp. aureus NCTC 8325"],["NCBITaxon%3A561307","Staphylococcus aureus subsp. aureus RN4220"]]},{"id":"NCBITaxon:823","l":"Parabacteroides distasonis","na":3,"nb":45,"a":[["TED%3AAF-A0A412R0B2-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A412R0B2-F1-model_v4_TED05"],["TED%3AAF-A0A4S2EEJ9-F1-model_v4_TED01","TED novel fold AF-A0A4S2EEJ9-F1-model_v4_TED01"],["TED%3AAF-A0A5C6KM13-F1-model_v4_TED03","TED novel fold AF-A0A5C6KM13-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A823","Parabacteroides distasonis"],["NCBITaxon%3A435591","Parabacteroides distasonis ATCC 8503"],["NCBITaxon%3A999416","Parabacteroides distasonis CL03T12C09"],["NCBITaxon%3A999417","Parabacteroides distasonis CL09T03C24"],["NCBITaxon%3A1339342","Parabacteroides distasonis str. 3776 D15 i"],["NCBITaxon%3A1339343","Parabacteroides distasonis str. 3776 D15 iv"]]},{"id":"NCBITaxon:714","l":"Aggregatibacter actinomycetemcomitans","na":3,"nb":35,"a":[["Pfam%3APF10137","CAP12/Pycsar effector protein, TIR domain"],["Pfam%3APF25988","CyaD, alpha-helical hairpin domain"],["PROSITE%3APS00543","HlyD family secretion proteins signature"]],"b":[["NCBITaxon%3A714","Aggregatibacter actinomycetemcomitans"],["NCBITaxon%3A754507","Aggregatibacter actinomycetemcomitans ANH9381"],["NCBITaxon%3A668336","Aggregatibacter actinomycetemcomitans D11S-1"],["NCBITaxon%3A754505","Aggregatibacter actinomycetemcomitans D17P-3"],["NCBITaxon%3A694569","Aggregatibacter actinomycetemcomitans D7S-1"],["NCBITaxon%3A1120957","Aggregatibacter actinomycetemcomitans DSM 8324"]]},{"id":"NCBITaxon:715","l":"Actinobacillus pleuropneumoniae","na":3,"nb":35,"a":[["Pfam%3APF26002","AprE-like, beta-barrel domain"],["Pfam%3APF02794","RTX toxin acyltransferase family"],["PROSITE%3APS00543","HlyD family secretion proteins signature"]],"b":[["NCBITaxon%3A44930","Natronobacterium gregoryi"],["NCBITaxon%3A797304","Natronobacterium gregoryi SP2"],["NCBITaxon%3A715","Actinobacillus pleuropneumoniae"],["NCBITaxon%3A1224142","Actinobacillus pleuropneumoniae S8"],["NCBITaxon%3A40325","Actinobacillus pleuropneumoniae serovar 1"],["NCBITaxon%3A754347","Actinobacillus pleuropneumoniae serovar 10"]]},{"id":"NCBITaxon:820","l":"Bacteroides uniformis","na":3,"nb":34,"a":[["TED%3AAF-A0A412XCH6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A412XCH6-F1-model_v4_TED03"],["TED%3AAF-A0A1Q6HVQ2-F1-model_v4_TED02","TED novel fold AF-A0A1Q6HVQ2-F1-model_v4_TED02"],["TED%3AAF-A0A6N2VYJ0-F1-model_v4_TED03","TED novel fold AF-A0A6N2VYJ0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A28116","Bacteroides ovatus"],["NCBITaxon%3A820","Bacteroides uniformis"],["NCBITaxon%3A411479","Bacteroides uniformis ATCC 8492"],["NCBITaxon%3A1263055","Bacteroides uniformis CAG:3"],["NCBITaxon%3A997889","Bacteroides uniformis CL03T00C23"],["NCBITaxon%3A997890","Bacteroides uniformis CL03T12C37"]]},{"id":"NCBITaxon:75985","l":"Mannheimia haemolytica","na":3,"nb":32,"a":[["Pfam%3APF04224","Protein of unknown function, DUF417"],["Pfam%3APF04393","Protein of unknown function (DUF535)"],["TED%3AAF-A0A378MS69-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A378MS69-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A47735","Bibersteinia trehalosi"],["NCBITaxon%3A85401","Mannheimia glucosida"],["NCBITaxon%3A75985","Mannheimia haemolytica"],["NCBITaxon%3A1261126","Mannheimia haemolytica D153"],["NCBITaxon%3A1311759","Mannheimia haemolytica D171"],["NCBITaxon%3A1311760","Mannheimia haemolytica D174"]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":3,"nb":31,"a":[["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"],["PROSITE%3APS00896","LacY family proton/sugar symporters signature 1"],["PROSITE%3APS00897","LacY family proton/sugar symporters signature 2"]],"b":[["NCBITaxon%3A571","Klebsiella oxytoca"],["NCBITaxon%3A883116","Klebsiella oxytoca 09-7231"],["NCBITaxon%3A883117","Klebsiella oxytoca 10-5242"],["NCBITaxon%3A883118","Klebsiella oxytoca 10-5243"],["NCBITaxon%3A883119","Klebsiella oxytoca 10-5244"],["NCBITaxon%3A883120","Klebsiella oxytoca 10-5245"]]},{"id":"NCBITaxon:1717","l":"Corynebacterium diphtheriae","na":3,"nb":28,"a":[["Pfam%3APF08051","Erythromycin resistance leader peptide"],["PROSITE%3APS01007","Transposases, Mutator family, signature"],["TED%3AAF-A0A811G0F8-F1-model_v4_TED05","TED novel fold AF-A0A811G0F8-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1717","Corynebacterium diphtheriae"],["NCBITaxon%3A698966","Corynebacterium diphtheriae 241"],["NCBITaxon%3A698962","Corynebacterium diphtheriae 31A"],["NCBITaxon%3A698973","Corynebacterium diphtheriae BH8"],["NCBITaxon%3A1720349","Corynebacterium diphtheriae bv. gravis"],["NCBITaxon%3A1450521","Corynebacterium diphtheriae bv. gravis str. ISS 4060"]]},{"id":"NCBITaxon:1680","l":"Bifidobacterium adolescentis","na":3,"nb":27,"a":[["TED%3AAF-A0A1X2Z2R7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1X2Z2R7-F1-model_v4_TED02"],["TED%3AAF-A0A1X2Z7X6-F1-model_v4_TED02","TED novel fold AF-A0A1X2Z7X6-F1-model_v4_TED02"],["TED%3AAF-A0A1X2ZNR8-F1-model_v4_TED04","TED novel fold AF-A0A1X2ZNR8-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1680","Bifidobacterium adolescentis"],["NCBITaxon%3A367928","Bifidobacterium adolescentis ATCC 15703"],["NCBITaxon%3A1263057","Bifidobacterium adolescentis CAG:119"],["NCBITaxon%3A1410644","Bifidobacterium adolescentis DSM 20087"],["NCBITaxon%3A1437612","Bifidobacterium adolescentis JCM 15918"],["NCBITaxon%3A411481","Bifidobacterium adolescentis L2-32"]]},{"id":"NCBITaxon:329854","l":"Bacteroides intestinalis","na":3,"nb":20,"a":[["TED%3AAF-A0A414LEH4-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A414LEH4-F1-model_v4_TED06"],["TED%3AAF-A0A415N9R3-F1-model_v4_TED02","TED novel fold AF-A0A415N9R3-F1-model_v4_TED02"],["TED%3AAF-A0A4Q5H9L0-F1-model_v4_TED03","TED novel fold AF-A0A4Q5H9L0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A329854","Bacteroides intestinalis"],["NCBITaxon%3A1263048","Bacteroides intestinalis CAG:315"],["NCBITaxon%3A1263049","Bacteroides intestinalis CAG:564"],["NCBITaxon%3A471870","Bacteroides intestinalis DSM 17393"],["NCBITaxon%3A702442","Bacteroides intestinalis EK2"],["NCBITaxon%3A1338866","Bacteroides intestinalis TSDA1.8-1.1"]]},{"id":"NCBITaxon:98360","l":"Salmonella enterica subsp. enterica serovar Dublin","na":3,"nb":20,"a":[["Pfam%3APF07824","Type III secretion chaperone domain"],["Pfam%3APF22370","Flagellin, beta sheet domain"],["Pfam%3APF05925","Enterobacterial virulence protein IpgD"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A98360","Salmonella enterica subsp. enterica serovar Dublin"],["NCBITaxon%3A1173809","Salmonella enterica subsp. enterica serovar Dublin str. 0432"],["NCBITaxon%3A1173810","Salmonella enterica subsp. enterica serovar Dublin str. 0637"],["NCBITaxon%3A1173811","Salmonella enterica subsp. enterica serovar Dublin str. 0773"]]},{"id":"NCBITaxon:85963","l":"Helicobacter pylori (strain J99 / ATCC 700824)","na":18,"nb":3,"a":[["Pfam%3APF15437","Plasminogen-binding protein pgbA C-terminal"],["Pfam%3APF02293","AmiS/UreI family transporter"],["Pfam%3APF26365","Apolipoprotein N-acyltransferase integral membrane domain"],["Pfam%3APF16730","DnaG-primase C-terminal, helicase-binding domain"],["Pfam%3APF10398","Protein of unknown function (DUF2443)"],["Pfam%3APF13099","Domain of unknown function (DUF3944)"]],"b":[["NCBITaxon%3A141390","Chromohalobacter israelensis"],["NCBITaxon%3A210","Helicobacter pylori"],["NCBITaxon%3A85963","Helicobacter pylori J99"]]},{"id":"NCBITaxon:95486","l":"Burkholderia cenocepacia","na":3,"nb":18,"a":[["TED%3AAF-A0A109EHZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A109EHZ6-F1-model_v4_TED01"],["TED%3AAF-A0A071M3L2-F1-model_v4_TED01","TED novel fold AF-A0A071M3L2-F1-model_v4_TED01"],["TED%3AAF-A0A088UYL8-F1-model_v4_TED01","TED novel fold AF-A0A088UYL8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A95486","Burkholderia cenocepacia"],["NCBITaxon%3A1110700","Burkholderia cenocepacia AU16956"],["NCBITaxon%3A1110701","Burkholderia cenocepacia AU16958"],["NCBITaxon%3A985077","Burkholderia cenocepacia BC7"],["NCBITaxon%3A1165869","Burkholderia cenocepacia D2AES"],["NCBITaxon%3A1055524","Burkholderia cenocepacia H111"]]},{"id":"NCBITaxon:176299","l":"Agrobacterium fabrum (strain C58 / ATCC 33970)","na":17,"nb":3,"a":[["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF28403","Aconitase X second domain"],["Pfam%3APF28406","Aconitase X third domain"],["Pfam%3APF04412","Aconitase X first domain"],["Pfam%3APF01989","Aconitase X swivel domain"]],"b":[["NCBITaxon%3A1176649","Agrobacterium fabrum"],["NCBITaxon%3A176299","Agrobacterium fabrum str. C58"],["NCBITaxon%3A362","Agrobacterium radiobacter"]]},{"id":"NCBITaxon:5888","l":"Paramecium tetraurelia","na":17,"nb":3,"a":[["Pfam%3APF14926","Cilia- and flagella-associated protein 300"],["TED%3AAF-A0C038-F1-model_v4_TED07","TED highly-symmetric fold AF-A0C038-F1-model_v4_TED07"],["TED%3AAF-A0CFS1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0CFS1-F1-model_v4_TED02"],["TED%3AAF-A0CHQ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0CHQ8-F1-model_v4_TED01"],["TED%3AAF-A0CHQ8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0CHQ8-F1-model_v4_TED02"],["TED%3AAF-A0CHR9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0CHR9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A28907","Caedibacter taeniospiralis"],["NCBITaxon%3A5888","Paramecium tetraurelia"],["NCBITaxon%3A412030","Paramecium tetraurelia strain d4-2"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":3,"nb":16,"a":[["Pfam%3APF03423","Carbohydrate binding domain (family 25)"],["Pfam%3APF03422","Carbohydrate binding module (family 6)"],["TED%3AAF-A0A7X5SGP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X5SGP7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A114136","Paenibacillus jamilae"],["NCBITaxon%3A225917","Paenibacillus massiliensis"],["NCBITaxon%3A1406","Paenibacillus polymyxa"],["NCBITaxon%3A1333863","Paenibacillus polymyxa 1-43"],["NCBITaxon%3A1414587","Paenibacillus polymyxa A18"],["NCBITaxon%3A1206104","Paenibacillus polymyxa ATCC 12321"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":3,"nb":16,"a":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"],["TED%3AAF-A0A7H8I034-F1-model_v4_TED01","TED novel fold AF-A0A7H8I034-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1114880","Aeromonas australiensis"],["NCBITaxon%3A1264931","Flavobacterium acidificum"],["NCBITaxon%3A553","Pantoea ananatis"],["NCBITaxon%3A1419326","Pantoea ananatis 15320"],["NCBITaxon%3A932677","Pantoea ananatis AJ13355"],["NCBITaxon%3A1048262","Pantoea ananatis B1-9"]]},{"id":"NCBITaxon:1492","l":"Clostridium butyricum","na":3,"nb":15,"a":[["Pfam%3APF00302","Chloramphenicol acetyltransferase"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["PROSITE%3APS00100","Chloramphenicol acetyltransferase active site"]],"b":[["NCBITaxon%3A1520","Clostridium beijerinckii"],["NCBITaxon%3A1492","Clostridium butyricum"],["NCBITaxon%3A634501","Clostridium butyricum 2CR37"],["NCBITaxon%3A447214","Clostridium butyricum 5521"],["NCBITaxon%3A997898","Clostridium butyricum 60E.3"],["NCBITaxon%3A1280693","Clostridium butyricum AGR2140"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":15,"a":[["TED%3AAF-A0A142EAM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142EAM9-F1-model_v4_TED03"],["TED%3AAF-A0A1Q3DTY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3DTY6-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3DNE3-F1-model_v4_TED01","TED novel fold AF-A0A1Q3DNE3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A38285","Corynebacterium acetoacidophilum"],["NCBITaxon%3A1718","Corynebacterium glutamicum"],["NCBITaxon%3A196627","Corynebacterium glutamicum ATCC 13032"],["NCBITaxon%3A1079988","Corynebacterium glutamicum ATCC 14067"],["NCBITaxon%3A1204414","Corynebacterium glutamicum K051"],["NCBITaxon%3A1310161","Corynebacterium glutamicum MB001"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":3,"nb":15,"a":[["Pfam%3APF03069","Acetamidase/Formamidase family"],["PROSITE%3APS00818","Dps protein family signature 1"],["Pfam%3APF13810","Domain of unknown function (DUF4185)"]],"b":[["NCBITaxon%3A175628","Gordonia paraffinivorans"],["NCBITaxon%3A1785","Mycobacterium sp."],["NCBITaxon%3A1772","Mycolicibacterium smegmatis"],["NCBITaxon%3A1455235","Mycolicibacterium smegmatis 30-MsmegS_ND_60_A"],["NCBITaxon%3A1455243","Mycolicibacterium smegmatis 31-MsmegS_CIP_60_A"],["NCBITaxon%3A1455251","Mycolicibacterium smegmatis 32-MsmegS_CIP_30_A"]]},{"id":"NCBITaxon:272943","l":"Cereibacter sphaeroides (strain ATCC 17023 / DSM 158 / JCM 6121 / CCUG 31486 / LMG 2827 / NBRC 12203 / NCIMB 8253 / ATH 2.4.1.)","na":15,"nb":3,"a":[["IDPO%3A0000059","self-inhibition"],["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF12973","ChrR Cupin-like domain"],["Pfam%3APF07930","D-aminopeptidase, domain B"],["Pfam%3APF09086","Domain of unknown function (DUF1924)"],["Pfam%3APF13746","4Fe-4S dicluster domain"]],"b":[["NCBITaxon%3A1063","Cereibacter sphaeroides"],["NCBITaxon%3A272943","Cereibacter sphaeroides 2.4.1"],["NCBITaxon%3A2813818","[Luteovulum] sphaeroides subsp. sphaeroides"]]},{"id":"NCBITaxon:39486","l":"Dorea formicigenerans","na":3,"nb":15,"a":[["TED%3AAF-A0A3E5ESC3-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A3E5ESC3-F1-model_v4_TED05"],["TED%3AAF-A0A412MBB7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A412MBB7-F1-model_v4_TED01"],["TED%3AAF-A0A412MF47-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A412MF47-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A39486","Dorea formicigenerans"],["NCBITaxon%3A742765","Dorea formicigenerans 4_6_53AFAA"],["NCBITaxon%3A411461","Dorea formicigenerans ATCC 27755"],["NCBITaxon%3A1263073","Dorea formicigenerans CAG:28"],["NCBITaxon%3A1339457","Dorea formicigenerans TSDA1.2-1.1"],["NCBITaxon%3A1339458","Dorea formicigenerans TSDA1.2-1.2"]]},{"id":"NCBITaxon:645","l":"Aeromonas salmonicida","na":3,"nb":15,"a":[["Pfam%3APF28601","Heat shock protein 15, C-terminal region"],["Pfam%3APF12563","Hemolytic toxin N terminal"],["Pfam%3APF01203","Type II secretion system (T2SS), protein N"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A645","Aeromonas salmonicida"],["NCBITaxon%3A113288","Aeromonas salmonicida subsp. achromogenes"],["NCBITaxon%3A1233098","Aeromonas salmonicida subsp. achromogenes AS03"],["NCBITaxon%3A316054","Aeromonas salmonicida subsp. flounderacida"],["NCBITaxon%3A197700","Aeromonas salmonicida subsp. masoucida"]]},{"id":"NCBITaxon:1587","l":"Lactobacillus helveticus","na":3,"nb":14,"a":[["Pfam%3APF18008","Replication initiator protein A C-terminal domain"],["Pfam%3APF20956","Domain of unknown function (DUF4931) C-terminal domain"],["Pfam%3APF17312","Bacteriocin helveticin-J"]],"b":[["NCBITaxon%3A1587","Lactobacillus helveticus"],["NCBITaxon%3A1226336","Lactobacillus helveticus CIRM-BIA 101"],["NCBITaxon%3A1226332","Lactobacillus helveticus CIRM-BIA 103"],["NCBITaxon%3A1226333","Lactobacillus helveticus CIRM-BIA 104"],["NCBITaxon%3A1226334","Lactobacillus helveticus CIRM-BIA 951"],["NCBITaxon%3A1226335","Lactobacillus helveticus CIRM-BIA 953"]]},{"id":"NCBITaxon:582","l":"Morganella morganii","na":3,"nb":14,"a":[["PROSITE%3APS01157","Class A bacterial acid phosphatases signature"],["TED%3AAF-A0A2C5TPE5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2C5TPE5-F1-model_v4_TED01"],["TED%3AAF-A0A0A2RJY1-F1-model_v4_TED02","TED novel fold AF-A0A0A2RJY1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A582","Morganella morganii"],["NCBITaxon%3A1365974","Morganella morganii AC2_8_11_AN_D6_FAA_4"],["NCBITaxon%3A1428452","Morganella morganii F675"],["NCBITaxon%3A1416758","Morganella morganii H1r"],["NCBITaxon%3A1411647","Morganella morganii IS15"],["NCBITaxon%3A1239989","Morganella morganii SC01"]]},{"id":"NCBITaxon:1624","l":"Ligilactobacillus salivarius","na":3,"nb":13,"a":[["TED%3AAF-A0A7X2SS58-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X2SS58-F1-model_v4_TED01"],["TED%3AAF-A0A089QBS8-F1-model_v4_TED02","TED novel fold AF-A0A089QBS8-F1-model_v4_TED02"],["TED%3AAF-A0A2A2XCA8-F1-model_v4_TED01","TED novel fold AF-A0A2A2XCA8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1624","Ligilactobacillus salivarius"],["NCBITaxon%3A768728","Ligilactobacillus salivarius ACS-116-V-Col5a"],["NCBITaxon%3A1195377","Ligilactobacillus salivarius B-30514"],["NCBITaxon%3A712961","Ligilactobacillus salivarius CECT 5713"],["NCBITaxon%3A1036738","Ligilactobacillus salivarius CELA2"],["NCBITaxon%3A1273133","Ligilactobacillus salivarius cp400"]]},{"id":"NCBITaxon:165179","l":"Segatella copri","na":13,"nb":3,"a":[["TED%3AAF-A0A3R6DW71-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3R6DW71-F1-model_v4_TED02"],["TED%3AAF-A0A3R6EGS2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R6EGS2-F1-model_v4_TED01"],["TED%3AAF-A0A5Q5FTM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Q5FTM4-F1-model_v4_TED01"],["TED%3AAF-A0A3R5WNG5-F1-model_v4_TED02","TED novel fold AF-A0A3R5WNG5-F1-model_v4_TED02"],["TED%3AAF-A0A3R5YKW9-F1-model_v4_TED01","TED novel fold AF-A0A3R5YKW9-F1-model_v4_TED01"],["TED%3AAF-A0A3R6FRY2-F1-model_v4_TED01","TED novel fold AF-A0A3R6FRY2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A165179","Segatella copri"],["NCBITaxon%3A1263102","Segatella copri CAG:164"],["NCBITaxon%3A537011","Segatella copri DSM 18205"]]},{"id":"NCBITaxon:33038","l":"Mediterraneibacter gnavus","na":3,"nb":13,"a":[["Pfam%3APF16874","Glycosyl hydrolase family 36 C-terminal domain"],["Pfam%3APF16875","Glycosyl hydrolase family 36 N-terminal domain"],["Pfam%3APF04604","Type-A lantibiotic"]],"b":[["NCBITaxon%3A33038","Mediterraneibacter gnavus"],["NCBITaxon%3A1384063","Mediterraneibacter gnavus AGR2154"],["NCBITaxon%3A411470","Mediterraneibacter gnavus ATCC 29149"],["NCBITaxon%3A1263106","Mediterraneibacter gnavus CAG:126"],["NCBITaxon%3A1073375","Mediterraneibacter gnavus CC55_001C"],["NCBITaxon%3A935582","Mediterraneibacter gnavus E1"]]},{"id":"NCBITaxon:574521","l":"Escherichia coli O127:H6 (strain E2348/69 / EPEC)","na":13,"nb":3,"a":[["IDPO%3A0000006","order"],["IDPO%3A0000045","phosphorylation display site"],["Pfam%3APF02369","Bacterial Ig-like domain (group 1)"],["Pfam%3APF05307","Bundlin"],["Pfam%3APF27328","EcpD C-terminal domain"],["Pfam%3APF11924","Inverse autotransporter, beta-domain"]],"b":[["NCBITaxon%3A574521","Escherichia coli O127:H6 str. E2348/69"],["NCBITaxon%3A1336205","Escherichia coli O127:H6 str. E2348/69 substr. CVDNalr"],["NCBITaxon%3A1336206","Escherichia coli O127:H6 str. E2348/69 substr. UMD753"]]},{"id":"NCBITaxon:471472","l":"Chlamydia trachomatis serovar L2 (strain ATCC VR-902B / DSM 19102 / 434/Bu)","na":12,"nb":3,"a":[["Pfam%3APF07382","Histone H1-like nucleoprotein HC2"],["Pfam%3APF05475","Pgp3 C-terminal domain"],["Pfam%3APF22368","Response regulator protein ChxR, N-terminal domain"],["Pfam%3APF01345","CLIPPER domain"],["Pfam%3APF07577","Domain of Unknown Function (DUF1547)"],["Pfam%3APF03503","Chlamydia cysteine-rich outer membrane protein 3"]],"b":[["NCBITaxon%3A471472","Chlamydia trachomatis L2/434/Bu"],["NCBITaxon%3A1262673","Chlamydia trachomatis L2/434/Bu(f)"],["NCBITaxon%3A1263406","Chlamydia trachomatis L2/434/Bu(i)"]]},{"id":"NCBITaxon:584","l":"Proteus mirabilis","na":3,"nb":12,"a":[["Pfam%3APF05280","Flagellar transcriptional activator (FlhC)"],["TED%3AAF-A0A1Z1SXV6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z1SXV6-F1-model_v4_TED01"],["TED%3AAF-A0A7U1CMJ9-F1-model_v4_TED01","TED novel fold AF-A0A7U1CMJ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A584","Proteus mirabilis"],["NCBITaxon%3A1285374","Proteus mirabilis 1014"],["NCBITaxon%3A1308721","Proteus mirabilis ADL-319"],["NCBITaxon%3A1308722","Proteus mirabilis ADL-321"],["NCBITaxon%3A1308723","Proteus mirabilis ADL-401"],["NCBITaxon%3A525369","Proteus mirabilis ATCC 29906"]]},{"id":"NCBITaxon:831","l":"Butyrivibrio fibrisolvens","na":3,"nb":12,"a":[["Pfam%3APF16738","Starch-binding module 26"],["Pfam%3APF18318","Glutamine synthetase C-terminal domain"],["Pfam%3APF12437","Glutamine synthetase type III N terminal"]],"b":[["NCBITaxon%3A831","Butyrivibrio fibrisolvens"],["NCBITaxon%3A657324","Butyrivibrio fibrisolvens 16/4"],["NCBITaxon%3A1280697","Butyrivibrio fibrisolvens AB2020"],["NCBITaxon%3A1121131","Butyrivibrio fibrisolvens DSM 3071"],["NCBITaxon%3A1280700","Butyrivibrio fibrisolvens FE2007"],["NCBITaxon%3A1280703","Butyrivibrio fibrisolvens MD2001"]]},{"id":"NCBITaxon:565042","l":"Bifidobacterium longum subsp. longum (strain ATCC 15707 / DSM 20219 / JCM 1217 / NCTC 11818 / E194b)","na":11,"nb":3,"a":[["Pfam%3APF20578","Atrophied bacterial Ig domain"],["Pfam%3APF07523","Bacterial Ig-like domain (group 3)"],["Pfam%3APF07532","Bacterial Ig-like domain (group 4)"],["Pfam%3APF12733","Cadherin-like beta sandwich domain"],["Pfam%3APF07554","FIVAR domain"],["Pfam%3APF20737","Glycoside hydrolase family 127 C-terminal domain"]],"b":[["NCBITaxon%3A216816","Bifidobacterium longum"],["NCBITaxon%3A1679","Bifidobacterium longum subsp. longum"],["NCBITaxon%3A565042","Bifidobacterium longum subsp. longum JCM 1217"]]},{"id":"NCBITaxon:1260","l":"Finegoldia magna","na":3,"nb":10,"a":[["Pfam%3APF17573","GA-like domain"],["Pfam%3APF18656","Family of unknown function (DUF5633)"],["TED%3AAF-A0A233W4R0-F1-model_v4_TED01","TED novel fold AF-A0A233W4R0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1260","Finegoldia magna"],["NCBITaxon%3A768713","Finegoldia magna ACS-171-V-Col3"],["NCBITaxon%3A1459804","Finegoldia magna ALB8"],["NCBITaxon%3A334413","Finegoldia magna ATCC 29328"],["NCBITaxon%3A525282","Finegoldia magna ATCC 53516"],["NCBITaxon%3A866773","Finegoldia magna BVS033A4"]]},{"id":"NCBITaxon:314275","l":"Alteromonas mediterranea","na":3,"nb":10,"a":[["TED%3AAF-A0A1J0SAZ8-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1J0SAZ8-F1-model_v4_TED04"],["TED%3AAF-A0A1J0SA48-F1-model_v4_TED01","TED novel fold AF-A0A1J0SA48-F1-model_v4_TED01"],["TED%3AAF-A0A1J0SX60-F1-model_v4_TED02","TED novel fold AF-A0A1J0SX60-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A314275","Alteromonas mediterranea"],["NCBITaxon%3A1300253","Alteromonas mediterranea 615"],["NCBITaxon%3A1774373","Alteromonas mediterranea DE"],["NCBITaxon%3A1004786","Alteromonas mediterranea DE1"],["NCBITaxon%3A1300254","Alteromonas mediterranea MED64"],["NCBITaxon%3A1300255","Alteromonas mediterranea U4"]]},{"id":"NCBITaxon:561879","l":"Bacillus safensis","na":3,"nb":10,"a":[["Pfam%3APF09221","Bacteriocin class IId cyclical uberolysin-like"],["TED%3AAF-A0A1L6ZPA6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6ZPA6-F1-model_v4_TED01"],["TED%3AAF-A0A1L6ZPC9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6ZPC9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1408","Bacillus pumilus"],["NCBITaxon%3A561879","Bacillus safensis"],["NCBITaxon%3A1326975","Bacillus safensis B204-B1-5"],["NCBITaxon%3A1326976","Bacillus safensis D95"],["NCBITaxon%3A1178541","Bacillus safensis FO-36b"],["NCBITaxon%3A1326974","Bacillus safensis NH21E_2"]]},{"id":"NCBITaxon:199","l":"Campylobacter concisus","na":3,"nb":9,"a":[["TED%3AAF-A0A7S9RBE4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S9RBE4-F1-model_v4_TED03"],["TED%3AAF-A0A1Y5MKZ8-F1-model_v4_TED01","TED novel fold AF-A0A1Y5MKZ8-F1-model_v4_TED01"],["TED%3AAF-A0A7S9X6B9-F1-model_v4_TED01","TED novel fold AF-A0A7S9X6B9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A199","Campylobacter concisus"],["NCBITaxon%3A360104","Campylobacter concisus 13826"],["NCBITaxon%3A1243032","Campylobacter concisus ATCC 51561"],["NCBITaxon%3A1242969","Campylobacter concisus ATCC 51562"],["NCBITaxon%3A1242967","Campylobacter concisus UNSW1"],["NCBITaxon%3A1242965","Campylobacter concisus UNSW2"]]},{"id":"NCBITaxon:274","l":"Thermus thermophilus","na":3,"nb":8,"a":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF01861","Branched-chain polyamine synthase A C-terminal domain"],["Pfam%3APF07736","Chorismate mutase type I"]],"b":[["NCBITaxon%3A274","Thermus thermophilus"],["NCBITaxon%3A1316935","Thermus thermophilus ATCC 33923"],["NCBITaxon%3A262724","Thermus thermophilus HB27"],["NCBITaxon%3A300852","Thermus thermophilus HB8"],["NCBITaxon%3A798128","Thermus thermophilus JL-18"],["NCBITaxon%3A762633","Thermus thermophilus SG0.5JP17-16"]]},{"id":"NCBITaxon:380703","l":"Aeromonas hydrophila subsp. hydrophila (strain ATCC 7966 / DSM 30187 / BCRC 13018 / CCUG 14551 / JCM 1027 / KCTC 2358 / NCIMB 9240 / NCTC 8049)","na":8,"nb":3,"a":[["Pfam%3APF26341","tRNA 2-selenouridine synthase AAA domain"],["Pfam%3APF11890","Domain of unknown function (DUF3410)"],["Pfam%3APF11944","Protein of unknown function (DUF3461)"],["Pfam%3APF04356","Protein of unknown function (DUF489)"],["Pfam%3APF12563","Hemolytic toxin N terminal"],["Pfam%3APF04362","Bacterial Fe(2+) trafficking"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A196023","Aeromonas hydrophila subsp. hydrophila"],["NCBITaxon%3A380703","Aeromonas hydrophila subsp. hydrophila ATCC 7966"]]},{"id":"NCBITaxon:159","l":"Brachyspira hyodysenteriae","na":3,"nb":7,"a":[["Pfam%3APF04620","Flagellar filament outer layer protein Flaa"],["TED%3AAF-A0A8A7L2A3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8A7L2A3-F1-model_v4_TED01"],["TED%3AAF-A0A8A7LC03-F1-model_v4_TED02","TED novel fold AF-A0A8A7LC03-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A159","Brachyspira hyodysenteriae"],["NCBITaxon%3A1266923","Brachyspira hyodysenteriae ATCC 27164"],["NCBITaxon%3A398523","Brachyspira hyodysenteriae ATCC 31212"],["NCBITaxon%3A398522","Brachyspira hyodysenteriae ATCC 49887"],["NCBITaxon%3A1232412","Brachyspira hyodysenteriae P7455"],["NCBITaxon%3A1232411","Brachyspira hyodysenteriae P8544"]]},{"id":"NCBITaxon:28108","l":"Alteromonas macleodii","na":3,"nb":7,"a":[["TED%3AAF-A0A6C5N007-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6C5N007-F1-model_v4_TED01"],["TED%3AAF-A0A126Q0V0-F1-model_v4_TED01","TED novel fold AF-A0A126Q0V0-F1-model_v4_TED01"],["TED%3AAF-A0A6T9Y0H6-F1-model_v4_TED01","TED novel fold AF-A0A6T9Y0H6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28108","Alteromonas macleodii"],["NCBITaxon%3A529120","Alteromonas macleodii ATCC 27126"],["NCBITaxon%3A1004787","Alteromonas macleodii str. 'Balearic Sea AD45'"],["NCBITaxon%3A1004785","Alteromonas macleodii str. 'Black Sea 11'"],["NCBITaxon%3A1004788","Alteromonas macleodii str. 'English Channel 673'"],["NCBITaxon%3A160763","Alteromonas macleodii subsp. abyssi"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":3,"nb":7,"a":[["Pfam%3APF04205","FMN-binding domain"],["Pfam%3APF10795","Protein of unknown function (DUF2607)"],["TED%3AAF-A0A1W6U0N2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W6U0N2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A663","Vibrio alginolyticus"],["NCBITaxon%3A314288","Vibrio alginolyticus 12G01"],["NCBITaxon%3A674977","Vibrio alginolyticus 40B"],["NCBITaxon%3A664","Vibrio alginolyticus chemovar iophagus"],["NCBITaxon%3A1219076","Vibrio alginolyticus NBRC 15630 = ATCC 17749"],["NCBITaxon%3A669","Vibrio harveyi"]]},{"id":"NCBITaxon:1971","l":"Streptomyces noursei","na":3,"nb":6,"a":[["Pfam%3APF16715","Cyclodipeptide synthase"],["Pfam%3APF19585","Family of unknown function (DUF6092)"],["TED%3AAF-A0A2N8PAT0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N8PAT0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1971","Streptomyces noursei"],["NCBITaxon%3A316284","Streptomyces noursei ATCC 11455"],["NCBITaxon%3A1316445","Streptomyces noursei CCRC 11814"],["NCBITaxon%3A1395573","Streptomyces noursei KC-01"],["NCBITaxon%3A1395572","Streptomyces noursei PD-1"],["NCBITaxon%3A1434306","Streptomyces noursei ZPM"]]},{"id":"NCBITaxon:290402","l":"Clostridium beijerinckii (strain ATCC 51743 / NCIMB 8052)","na":6,"nb":3,"a":[["Pfam%3APF28550","Domain of unknown function (DUF8436)"],["Pfam%3APF21688","FAD-dependent protein, C-terminal domain-like"],["Pfam%3APF02001","Protein of unknown function DUF134"],["Pfam%3APF03608","PTS system enzyme II sorbitol-specific factor"],["Pfam%3APF07663","Sorbitol phosphotransferase enzyme II C-terminus"],["Pfam%3APF03612","Sorbitol phosphotransferase enzyme II N-terminus"]],"b":[["NCBITaxon%3A1488","Clostridium acetobutylicum"],["NCBITaxon%3A272562","Clostridium acetobutylicum ATCC 824"],["NCBITaxon%3A290402","Clostridium beijerinckii NCIMB 8052"]]},{"id":"NCBITaxon:316401","l":"Escherichia coli O78:H11 (strain H10407 / ETEC)","na":6,"nb":3,"a":[["Pfam%3APF26759","AcfD helical domain"],["Pfam%3APF04449","CS1 type fimbrial major subunit"],["Pfam%3APF13322","Domain of unknown function (DUF4092)"],["PROSITE%3APS01141","Bacterial type II secretion system protein C signature"],["Pfam%3APF16168","Adhesin of bacterial autotransporter system, probable stalk"],["Pfam%3APF24078","PIC/HAP1/IgA0 second beta-solenoid repeat region"]],"b":[["NCBITaxon%3A316401","Escherichia coli ETEC H10407"],["NCBITaxon%3A1213735","Escherichia coli H10407_1968"],["NCBITaxon%3A1213736","Escherichia coli H10407_1970"]]},{"id":"NCBITaxon:33039","l":"Mediterraneibacter torques","na":3,"nb":6,"a":[["TED%3AAF-A0A174ZX33-F1-model_v4_TED01","TED novel fold AF-A0A174ZX33-F1-model_v4_TED01"],["TED%3AAF-A0A6N3EHF6-F1-model_v4_TED02","TED novel fold AF-A0A6N3EHF6-F1-model_v4_TED02"],["TED%3AAF-A0A6N3EHH7-F1-model_v4_TED01","TED novel fold AF-A0A6N3EHH7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A33039","Mediterraneibacter torques"],["NCBITaxon%3A411460","[Ruminococcus] torques ATCC 27756"],["NCBITaxon%3A1263108","[Ruminococcus] torques CAG:61"],["NCBITaxon%3A1422833","[Ruminococcus] torques IX-70"],["NCBITaxon%3A657313","[Ruminococcus] torques L2-14"],["NCBITaxon%3A1422834","[Ruminococcus] torques VIII-239"]]},{"id":"NCBITaxon:44250","l":"Paenibacillus alvei","na":3,"nb":6,"a":[["PROSITE%3APS00481","Thiol-activated cytolysins signature"],["TED%3AAF-A0A383R9F4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A383R9F4-F1-model_v4_TED01"],["TED%3AAF-A0A7Y4MLP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4MLP7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A44250","Paenibacillus alvei"],["NCBITaxon%3A1117109","Paenibacillus alvei A6-6i-x"],["NCBITaxon%3A1206781","Paenibacillus alvei DSM 29"],["NCBITaxon%3A707255","Paenibacillus alvei NAS6G-6"],["NCBITaxon%3A1117108","Paenibacillus alvei TS-15"],["NCBITaxon%3A49283","Paenibacillus thiaminolyticus"]]},{"id":"NCBITaxon:5664","l":"Leishmania major","na":6,"nb":3,"a":[["Pfam%3APF12724","Flavodoxin domain"],["Pfam%3APF05683","Fumarase C-terminus"],["Pfam%3APF05681","Fumarate hydratase (Fumerase)"],["PROSITE%3APS01247","Inosine-uridine preferring nucleoside hydrolase family signature"],["TED%3AAF-Q4Q3E3-F1-model_v4_TED01","TED novel fold AF-Q4Q3E3-F1-model_v4_TED01"],["TED%3AAF-Q4Q6G3-F1-model_v4_TED01","TED novel fold AF-Q4Q6G3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A347515","Leishmania major strain Friedlin"],["NCBITaxon%3A860569","Leishmania major strain LV39c5"],["NCBITaxon%3A860570","Leishmania major strain SD 75.1"]]},{"id":"NCBITaxon:106648","l":"Acinetobacter bereziniae","na":3,"nb":5,"a":[["TED%3AAF-A0A833PGQ7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A833PGQ7-F1-model_v4_TED03"],["TED%3AAF-A0A3S0AB11-F1-model_v4_TED01","TED novel fold AF-A0A3S0AB11-F1-model_v4_TED01"],["TED%3AAF-A0A833UDR7-F1-model_v4_TED01","TED novel fold AF-A0A833UDR7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A106648","Acinetobacter bereziniae"],["NCBITaxon%3A981324","Acinetobacter bereziniae LMG 1003 = CIP 70.12"],["NCBITaxon%3A1217651","Acinetobacter bereziniae NIPH 3"],["NCBITaxon%3A1311817","Acinetobacter genomosp. 10 str. ATCC 51550"],["NCBITaxon%3A106649","Acinetobacter guillouiae"]]},{"id":"NCBITaxon:1589","l":"Lactiplantibacillus pentosus","na":3,"nb":5,"a":[["PROSITE%3APS60002","Phosphoketolase signature 1"],["PROSITE%3APS60003","Phosphoketolase signature 2"],["TED%3AAF-A0A2K9I3V8-F1-model_v4_TED01","TED novel fold AF-A0A2K9I3V8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1589","Lactiplantibacillus pentosus"],["NCBITaxon%3A1423791","Lactiplantibacillus pentosus DSM 20314"],["NCBITaxon%3A1042160","Lactiplantibacillus pentosus IG1"],["NCBITaxon%3A1136177","Lactiplantibacillus pentosus KCA1"],["NCBITaxon%3A1028490","Lactiplantibacillus pentosus MP-10"]]},{"id":"NCBITaxon:1665","l":"Arthrobacter globiformis","na":3,"nb":5,"a":[["Pfam%3APF21994","AGAO-like N2 domain"],["Pfam%3APF18835","Beta helix repeat of Inulin fructotransferase"],["TED%3AAF-A0A328HCX7-F1-model_v4_TED02","TED novel fold AF-A0A328HCX7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1665","Arthrobacter globiformis"],["NCBITaxon%3A1077972","Arthrobacter globiformis NBRC 12137"],["NCBITaxon%3A1667","Arthrobacter sp."],["NCBITaxon%3A169875","Arthrobacter sp. JCM 1339"],["NCBITaxon%3A1701","Brevibacterium sp."]]},{"id":"NCBITaxon:183","l":"Leptonema illini","na":5,"nb":3,"a":[["TED%3AAF-A0A833GYM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A833GYM6-F1-model_v4_TED01"],["TED%3AAF-A0A833GZG7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A833GZG7-F1-model_v4_TED01"],["TED%3AAF-A0A833H0U1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A833H0U1-F1-model_v4_TED01"],["TED%3AAF-A0A833H0U1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A833H0U1-F1-model_v4_TED02"],["TED%3AAF-A0A833LYP2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A833LYP2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A183","Leptonema illini"],["NCBITaxon%3A929563","Leptonema illini DSM 21528"],["NCBITaxon%3A330706","Leptonema illini serovar Habaki"]]},{"id":"NCBITaxon:216597","l":"Salmonella typhimurium (strain SL1344)","na":5,"nb":3,"a":[["Pfam%3APF08943","CsiD"],["Pfam%3APF07095","Intracellular growth attenuator protein IgaA"],["Pfam%3APF04741","InvH outer membrane lipoprotein"],["Pfam%3APF09599","Salmonella-Shigella invasin protein C (IpaC_SipC)"],["Pfam%3APF27051","TamB, N-terminal domain"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A216597","Salmonella enterica subsp. enterica serovar Typhimurium str. SL1344"]]},{"id":"NCBITaxon:2902295","l":"Vibrio campbellii (strain ATCC BAA-1116)","na":5,"nb":3,"a":[["Pfam%3APF02300","Fumarate reductase subunit C"],["Pfam%3APF18416","N-acetylglucosamine binding protein domain 2"],["Pfam%3APF21868","GlcNAc-binding protein A, third domain"],["Pfam%3APF17327","Acyl homoserine lactone synthase"],["Pfam%3APF06339","Ectoine synthase"]],"b":[["NCBITaxon%3A680","Vibrio campbellii"],["NCBITaxon%3A2902295","Vibrio campbellii ATCC BAA-1116"],["NCBITaxon%3A1224742","Vibrio campbellii CAIM 519 = NBRC 15631 = ATCC 25920"]]},{"id":"NCBITaxon:310297","l":"Phocaeicola plebeius","na":5,"nb":3,"a":[["TED%3AAF-A0A3E4Z795-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3E4Z795-F1-model_v4_TED01"],["TED%3AAF-A0A3E4Z7C6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3E4Z7C6-F1-model_v4_TED02"],["TED%3AAF-A0A3E4Z740-F1-model_v4_TED02","TED novel fold AF-A0A3E4Z740-F1-model_v4_TED02"],["TED%3AAF-A0A3E4Z9K1-F1-model_v4_TED01","TED novel fold AF-A0A3E4Z9K1-F1-model_v4_TED01"],["TED%3AAF-A0A415T3X6-F1-model_v4_TED01","TED novel fold AF-A0A415T3X6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A310297","Phocaeicola plebeius"],["NCBITaxon%3A1263052","Phocaeicola plebeius CAG:211"],["NCBITaxon%3A484018","Phocaeicola plebeius DSM 17135"]]},{"id":"NCBITaxon:33965","l":"Leuconostoc mesenteroides subsp. cremoris","na":3,"nb":5,"a":[["Pfam%3APF08218","Citrate lyase ligase C-terminal domain"],["Pfam%3APF04223","Citrate lyase, alpha subunit (CitF)"],["Pfam%3APF03802","Apo-citrate lyase phosphoribosyl-dephospho-CoA transferase"]],"b":[["NCBITaxon%3A1245","Leuconostoc mesenteroides"],["NCBITaxon%3A33965","Leuconostoc mesenteroides subsp. cremoris"],["NCBITaxon%3A586220","Leuconostoc mesenteroides subsp. cremoris ATCC 19254"],["NCBITaxon%3A1339224","Leuconostoc mesenteroides subsp. cremoris T26"],["NCBITaxon%3A1234889","Leuconostoc mesenteroides subsp. cremoris TIFN8"]]},{"id":"NCBITaxon:39491","l":"Agathobacter rectalis","na":3,"nb":5,"a":[["TED%3AAF-A0A395UXQ4-F1-model_v4_TED01","TED novel fold AF-A0A395UXQ4-F1-model_v4_TED01"],["TED%3AAF-A0A3E4Y626-F1-model_v4_TED03","TED novel fold AF-A0A3E4Y626-F1-model_v4_TED03"],["TED%3AAF-A0A413Q2Y5-F1-model_v4_TED01","TED novel fold AF-A0A413Q2Y5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39491","Agathobacter rectalis"],["NCBITaxon%3A515619","Agathobacter rectalis ATCC 33656"],["NCBITaxon%3A1263079","Agathobacter rectalis CAG:36"],["NCBITaxon%3A657318","Agathobacter rectalis DSM 17629"],["NCBITaxon%3A657317","Agathobacter rectalis M104/1"]]},{"id":"NCBITaxon:477","l":"Moraxella lacunata","na":3,"nb":5,"a":[["Pfam%3APF01548","Transposase"],["TED%3AAF-A0A1B8Q7V0-F1-model_v4_TED03","TED novel fold AF-A0A1B8Q7V0-F1-model_v4_TED03"],["TED%3AAF-A0A378QLT3-F1-model_v4_TED02","TED novel fold AF-A0A378QLT3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A34059","Faucicola atlantae"],["NCBITaxon%3A477","Moraxella lacunata"],["NCBITaxon%3A1223506","Moraxella lacunata NBRC 102154"],["NCBITaxon%3A184756","Nocardia caishijiensis"],["NCBITaxon%3A1210070","Nocardia caishijiensis NBRC 108228"]]},{"id":"NCBITaxon:674529","l":"Bacteroides faecis","na":5,"nb":3,"a":[["TED%3AAF-A0A174UNF9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A174UNF9-F1-model_v4_TED01"],["TED%3AAF-A0A6N2V213-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A6N2V213-F1-model_v4_TED04"],["TED%3AAF-A0A642MMT0-F1-model_v4_TED02","TED novel fold AF-A0A642MMT0-F1-model_v4_TED02"],["TED%3AAF-A0A642MUV2-F1-model_v4_TED02","TED novel fold AF-A0A642MUV2-F1-model_v4_TED02"],["TED%3AAF-A0A6N2V5R3-F1-model_v4_TED01","TED novel fold AF-A0A6N2V5R3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A674529","Bacteroides faecis"],["NCBITaxon%3A1263044","Bacteroides faecis CAG:32"],["NCBITaxon%3A1077285","Bacteroides faecis MAJ27"]]},{"id":"NCBITaxon:716541","l":"Enterobacter cloacae subsp. cloacae (strain ATCC 13047 / DSM 30054 / NBRC 13535 / NCTC 10005 / WDCM 00083 / NCDC 279-56)","na":5,"nb":3,"a":[["Pfam%3APF18228","CdiI N-terminal domain"],["PROSITE%3APS00896","LacY family proton/sugar symporters signature 1"],["PROSITE%3APS00897","LacY family proton/sugar symporters signature 2"],["Pfam%3APF13332","Hemagglutinin repeat"],["Pfam%3APF05860","TPS secretion domain"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A336306","Enterobacter cloacae subsp. cloacae"],["NCBITaxon%3A716541","Enterobacter cloacae subsp. cloacae ATCC 13047"]]},{"id":"NCBITaxon:1085","l":"Rhodospirillum rubrum","na":4,"nb":3,"a":[["Pfam%3APF00556","Antenna complex alpha/beta subunit"],["Pfam%3APF09527","Putative F0F1-ATPase subunit Ca2+/Mg2+ transporter"],["Pfam%3APF07357","Dinitrogenase reductase ADP-ribosyltransferase (DRAT)"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"]],"b":[["NCBITaxon%3A1085","Rhodospirillum rubrum"],["NCBITaxon%3A269796","Rhodospirillum rubrum ATCC 11170"],["NCBITaxon%3A1036743","Rhodospirillum rubrum F11"]]},{"id":"NCBITaxon:1355477","l":"Bradyrhizobium diazoefficiens","na":3,"nb":4,"a":[["TED%3AAF-A0A0E4FY11-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0E4FY11-F1-model_v4_TED02"],["TED%3AAF-A0A7T8A127-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7T8A127-F1-model_v4_TED04"],["TED%3AAF-A0A7T7V5A8-F1-model_v4_TED04","TED novel fold AF-A0A7T7V5A8-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1355477","Bradyrhizobium diazoefficiens"],["NCBITaxon%3A754504","Bradyrhizobium diazoefficiens SEMIA 5080"],["NCBITaxon%3A224911","Bradyrhizobium diazoefficiens USDA 110"],["NCBITaxon%3A375","Bradyrhizobium japonicum"]]},{"id":"NCBITaxon:1433","l":"","na":4,"nb":3,"a":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF17997","Insecticidal delta-endotoxin CryIA(c) domain 5"],["Pfam%3APF21463","Cry1Ac, domain VII"],["Pfam%3APF18449","Pesticidal crystal protein Cry1Aa, domain IV"]],"b":[["NCBITaxon%3A1433","Bacillus thuringiensis serovar aizawai"],["NCBITaxon%3A1238885","Bacillus thuringiensis serovar aizawai str. Hu4-2"],["NCBITaxon%3A1232203","Bacillus thuringiensis serovar aizawai str. Leapi01"]]},{"id":"NCBITaxon:162","l":"Treponema phagedenis","na":3,"nb":4,"a":[["PROSITE%3APS01307","Flagellar motor protein motA family signature"],["TED%3AAF-A0A0B7GT70-F1-model_v4_TED01","TED novel fold AF-A0A0B7GT70-F1-model_v4_TED01"],["TED%3AAF-A0A0B7GWA6-F1-model_v4_TED04","TED novel fold AF-A0A0B7GWA6-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A162","Treponema phagedenis"],["NCBITaxon%3A1306407","Treponema phagedenis 4A"],["NCBITaxon%3A754027","Treponema phagedenis F0421"],["NCBITaxon%3A409321","Treponema phagedenis subsp. vaccae"]]},{"id":"NCBITaxon:17","l":"Methylophilus methylotrophus","na":3,"nb":4,"a":[["Pfam%3APF09086","Domain of unknown function (DUF1924)"],["Pfam%3APF03069","Acetamidase/Formamidase family"],["PROSITE%3APS00696","Electron transfer flavoprotein alpha-subunit signature"]],"b":[["NCBITaxon%3A406","Methylobacillus glycogenes"],["NCBITaxon%3A17","Methylophilus methylotrophus"],["NCBITaxon%3A1122236","Methylophilus methylotrophus DSM 46235 = ATCC 53528"],["NCBITaxon%3A2327","Methylophilus methylotrophus W3A1"]]},{"id":"NCBITaxon:174633","l":"","na":3,"nb":4,"a":[["Pfam%3APF22142","Hydroxylamine oxidoreductase, C-terminal domain"],["Pfam%3APF18582","Hydrazine synthase alpha subunit middle domain"],["Pfam%3APF21783","YNCE-like beta-propeller"]],"b":[["NCBITaxon%3A174633","Candidatus Kuenenia stuttgartensis"],["NCBITaxon%3A1230344","Candidatus Kuenenia stuttgartiensis enrichment culture clone CH1"],["NCBITaxon%3A1230345","Candidatus Kuenenia stuttgartiensis enrichment culture clone RU1"],["NCBITaxon%3A1230346","environmental samples"]]},{"id":"NCBITaxon:1836","l":"Saccharopolyspora erythraea","na":4,"nb":3,"a":[["Pfam%3APF08990","Erythronolide synthase docking domain"],["Pfam%3APF09277","Erythronolide synthase, docking"],["Pfam%3APF12728","Helix-turn-helix domain"],["Pfam%3APF12307","Protein of unknown function (DUF3631)"]],"b":[["NCBITaxon%3A1836","Saccharopolyspora erythraea"],["NCBITaxon%3A1382595","Saccharopolyspora erythraea D"],["NCBITaxon%3A405948","Saccharopolyspora erythraea NRRL 2338"]]},{"id":"NCBITaxon:192","l":"Azospirillum brasilense","na":3,"nb":4,"a":[["Pfam%3APF24931","ACR9-like, ACT-like domain"],["Pfam%3APF27444","Uridylyltransferase GlnD third domain"],["TED%3AAF-A0A235H319-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A235H319-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1064539","Azospirillum baldaniorum"],["NCBITaxon%3A192","Azospirillum brasilense"],["NCBITaxon%3A1117321","Azospirillum brasilense CBG497"],["NCBITaxon%3A1262469","Azospirillum brasilense FP2"]]},{"id":"NCBITaxon:1961","l":"Streptomyces virginiae","na":3,"nb":4,"a":[["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF19328","2,4-diaminopentanoate dehydrogenase C-terminal domain"],["PROSITE%3APS01014","Transcription termination factor nusG signature"]],"b":[["NCBITaxon%3A1535204","Metabacillus endolithicus"],["NCBITaxon%3A67381","Streptomyces violascens"],["NCBITaxon%3A1961","Streptomyces virginiae"],["NCBITaxon%3A3478784","Streptomyces virginiae subsp. lipoxae (nom. nud.)"]]},{"id":"NCBITaxon:227","l":"Pseudoalteromonas carrageenovora","na":3,"nb":4,"a":[["Pfam%3APF25291","Lambda-carrageenase C-terminal domain"],["Pfam%3APF25290","Lambda-carrageenase middle domain"],["Pfam%3APF25292","Lambda-carrageenase beta-propeller domain"]],"b":[["NCBITaxon%3A1511","Acetoanaerobium sticklandii"],["NCBITaxon%3A499177","Acetoanaerobium sticklandii DSM 519"],["NCBITaxon%3A227","Pseudoalteromonas carrageenovora"],["NCBITaxon%3A1314868","Pseudoalteromonas carrageenovora IAM 12662"]]},{"id":"NCBITaxon:253","l":"Chryseobacterium indologenes","na":3,"nb":4,"a":[["PROSITE%3APS00744","Beta-lactamases class B signature 2"],["TED%3AAF-A0A7T8U7T3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T8U7T3-F1-model_v4_TED01"],["TED%3AAF-A0A0N0ZUI2-F1-model_v4_TED01","TED novel fold AF-A0A0N0ZUI2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A246","Chryseobacterium balustinum"],["NCBITaxon%3A253","Chryseobacterium indologenes"],["NCBITaxon%3A1218103","Chryseobacterium indologenes NBRC 14944"],["NCBITaxon%3A239","Flavobacterium sp."]]},{"id":"NCBITaxon:28111","l":"Bacteroides eggerthii","na":3,"nb":4,"a":[["TED%3AAF-A0A380YHG6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A380YHG6-F1-model_v4_TED01"],["TED%3AAF-A0A380YP67-F1-model_v4_TED01","TED novel fold AF-A0A380YP67-F1-model_v4_TED01"],["TED%3AAF-A0A414M8K0-F1-model_v4_TED04","TED novel fold AF-A0A414M8K0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A28111","Bacteroides eggerthii"],["NCBITaxon%3A665953","Bacteroides eggerthii 1_2_48FAA"],["NCBITaxon%3A1263043","Bacteroides eggerthii CAG:109"],["NCBITaxon%3A483216","Bacteroides eggerthii DSM 20697"]]},{"id":"NCBITaxon:28896","l":"Thermoanaerobacterium saccharolyticum","na":3,"nb":4,"a":[["Pfam%3APF06452","Carbohydrate family 9 binding domain-like"],["PROSITE%3APS01027","Glycosyl hydrolases family 39 active site"],["Pfam%3APF00395","S-layer homology domain"]],"b":[["NCBITaxon%3A28896","Thermoanaerobacterium saccharolyticum"],["NCBITaxon%3A1313300","Thermoanaerobacterium saccharolyticum B6A"],["NCBITaxon%3A1123370","Thermoanaerobacterium saccharolyticum DSM 7060"],["NCBITaxon%3A1094508","Thermoanaerobacterium saccharolyticum JW/SL-YS485"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans Pd1222","na":4,"nb":3,"a":[["Pfam%3APF27518","Heme exporter protein C"],["Pfam%3APF22039","Imidazolonepropionase-like composite domain, bacteria"],["PROSITE%3APS01181","Ribosomal protein S21 signature"],["Pfam%3APF02239","Cytochrome D1 heme domain"]],"b":[["NCBITaxon%3A266","Paracoccus denitrificans"],["NCBITaxon%3A1302247","Paracoccus denitrificans JCM 21484"],["NCBITaxon%3A318586","Paracoccus denitrificans PD1222"]]},{"id":"NCBITaxon:37636","l":"Thermus scotoductus","na":3,"nb":4,"a":[["TED%3AAF-A0A430RNB2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A430RNB2-F1-model_v4_TED02"],["TED%3AAF-A0A430UKG8-F1-model_v4_TED01","TED novel fold AF-A0A430UKG8-F1-model_v4_TED01"],["TED%3AAF-A0A430VPL1-F1-model_v4_TED01","TED novel fold AF-A0A430VPL1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A37636","Thermus scotoductus"],["NCBITaxon%3A1123391","Thermus scotoductus DSM 8553"],["NCBITaxon%3A1382313","Thermus scotoductus KI2"],["NCBITaxon%3A743525","Thermus scotoductus SA-01"]]},{"id":"NCBITaxon:45634","l":"Streptococcus cristatus","na":3,"nb":4,"a":[["Pfam%3APF03486","HI0933-like protein Rossmann domain"],["Pfam%3APF22780","HI0933-like protein barrel and H2TH domain"],["TED%3AAF-A0A139N090-F1-model_v4_TED01","TED novel fold AF-A0A139N090-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A45634","Streptococcus cristatus"],["NCBITaxon%3A1302863","Streptococcus cristatus AS 1.3089"],["NCBITaxon%3A889201","Streptococcus cristatus ATCC 51100"],["NCBITaxon%3A1305","Streptococcus sanguinis"]]},{"id":"NCBITaxon:46506","l":"Bacteroides stercoris","na":3,"nb":4,"a":[["Pfam%3APF16889","Heparinase II/III N-terminus"],["TED%3AAF-A0A3E4UKZ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3E4UKZ4-F1-model_v4_TED01"],["TED%3AAF-A0A413B3W6-F1-model_v4_TED03","TED novel fold AF-A0A413B3W6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A46506","Bacteroides stercoris"],["NCBITaxon%3A449673","Bacteroides stercoris ATCC 43183"],["NCBITaxon%3A1263053","Bacteroides stercoris CAG:120"],["NCBITaxon%3A1073351","Bacteroides stercoris CC31F"]]},{"id":"NCBITaxon:51201","l":"Streptomyces griseocarneus","na":3,"nb":4,"a":[["TED%3AAF-A0A3L8IG13-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3L8IG13-F1-model_v4_TED01"],["TED%3AAF-A0A3L8KW22-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3L8KW22-F1-model_v4_TED02"],["TED%3AAF-A0A8A3HJQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8A3HJQ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A173770","Streptomyces alboverticillatus"],["NCBITaxon%3A51201","Streptomyces griseocarneus"],["NCBITaxon%3A156648","Streptomyces septatus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:83552","l":"Parachlamydia acanthamoebae","na":4,"nb":3,"a":[["TED%3AAF-A0A0C1C0X3-F1-model_v4_TED01","TED novel fold AF-A0A0C1C0X3-F1-model_v4_TED01"],["TED%3AAF-A0A0C1C9D0-F1-model_v4_TED03","TED novel fold AF-A0A0C1C9D0-F1-model_v4_TED03"],["TED%3AAF-A0A0C1CAV8-F1-model_v4_TED03","TED novel fold AF-A0A0C1CAV8-F1-model_v4_TED03"],["TED%3AAF-A0A0C1ECC2-F1-model_v4_TED03","TED novel fold AF-A0A0C1ECC2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A83552","Parachlamydia acanthamoebae"],["NCBITaxon%3A159254","Parachlamydia acanthamoebae str. Hall's coccus"],["NCBITaxon%3A765952","Parachlamydia acanthamoebae UV-7"]]},{"id":"NCBITaxon:135487","l":"Nocardia cyriacigeorgica","na":3,"nb":3,"a":[["TED%3AAF-A0A5R8NG95-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5R8NG95-F1-model_v4_TED01"],["TED%3AAF-A0A5R8PHP8-F1-model_v4_TED01","TED novel fold AF-A0A5R8PHP8-F1-model_v4_TED01"],["TED%3AAF-A0A6P1CWQ9-F1-model_v4_TED01","TED novel fold AF-A0A6P1CWQ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A135487","Nocardia cyriacigeorgica"],["NCBITaxon%3A1127134","Nocardia cyriacigeorgica GUH-2"],["NCBITaxon%3A1206728","Nocardia cyriacigeorgica NBRC 100375"]]},{"id":"NCBITaxon:190304","l":"","na":3,"nb":3,"a":[["Pfam%3APF05853","beta-keto acid cleavage enzyme"],["Pfam%3APF26317","Histidine racemase CntK N-terminal domain"],["Pfam%3APF26370","L-erythro-3,5-diaminohexanoate dehydrogenase N-terminal domain"]],"b":[["NCBITaxon%3A851","Fusobacterium nucleatum"],["NCBITaxon%3A76856","Fusobacterium nucleatum subsp. nucleatum"],["NCBITaxon%3A190304","Fusobacterium nucleatum subsp. nucleatum ATCC 25586"]]},{"id":"NCBITaxon:2188","l":"Methanococcus voltae","na":3,"nb":3,"a":[["Pfam%3APF05377","Flagella accessory protein C (FlaC)"],["Pfam%3APF04659","Archaeal flagella protein"],["Pfam%3APF01917","Archaeal-type flagellin"]],"b":[["NCBITaxon%3A2188","Methanococcus voltae"],["NCBITaxon%3A456320","Methanococcus voltae A3"],["NCBITaxon%3A523842","Methanococcus voltae PS"]]},{"id":"NCBITaxon:301452","l":"Streptococcus pyogenes serotype M49","na":3,"nb":3,"a":[["Pfam%3APF20746","Endo-beta-N-acetylglucosaminidase F2, Ig-like domain"],["Pfam%3APF23952","Endo-beta-N-acetylglucosaminidase EndoS LRR domain"],["Pfam%3APF02370","M protein repeat"]],"b":[["NCBITaxon%3A294934","Streptococcus pyogenes M49 591"],["NCBITaxon%3A471876","Streptococcus pyogenes NZ131"],["NCBITaxon%3A301452","Streptococcus pyogenes serotype M49"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":3,"nb":3,"a":[["Pfam%3APF14864","Alkyl sulfatase C-terminal"],["Pfam%3APF13816","Haem-containing dehydratase"],["Pfam%3APF14863","Alkyl sulfatase dimerisation"]],"b":[["NCBITaxon%3A2219225","Pseudomonas asiatica"],["NCBITaxon%3A1628086","Pseudomonas kribbensis"],["NCBITaxon%3A306","Pseudomonas sp."]]},{"id":"NCBITaxon:349221","l":"Micavibrio aeruginosavorus","na":3,"nb":3,"a":[["TED%3AAF-A0A2W5N6B0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W5N6B0-F1-model_v4_TED01"],["TED%3AAF-A0A2W5FID9-F1-model_v4_TED01","TED novel fold AF-A0A2W5FID9-F1-model_v4_TED01"],["TED%3AAF-A0A7T5R250-F1-model_v4_TED01","TED novel fold AF-A0A7T5R250-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A349221","Micavibrio aeruginosavorus"],["NCBITaxon%3A856793","Micavibrio aeruginosavorus ARL-13"],["NCBITaxon%3A349215","Micavibrio aeruginosavorus EPB"]]},{"id":"NCBITaxon:358742","l":"Enterocloster aldenensis","na":3,"nb":3,"a":[["TED%3AAF-A0A413W8D2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A413W8D2-F1-model_v4_TED02"],["TED%3AAF-A0A413W7F7-F1-model_v4_TED01","TED novel fold AF-A0A413W7F7-F1-model_v4_TED01"],["TED%3AAF-A0A413WID6-F1-model_v4_TED03","TED novel fold AF-A0A413WID6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1121294","[Clostridium] aldenense DSM 19262"],["NCBITaxon%3A742731","[Clostridium] aldenense WAL-18727"],["NCBITaxon%3A358742","Enterocloster aldenensis"]]},{"id":"NCBITaxon:39485","l":"Lachnospira eligens","na":3,"nb":3,"a":[["TED%3AAF-A0A413Z2M9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A413Z2M9-F1-model_v4_TED01"],["TED%3AAF-A0A414DG84-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A414DG84-F1-model_v4_TED02"],["TED%3AAF-A0A415MEX8-F1-model_v4_TED01","TED novel fold AF-A0A415MEX8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39485","Lachnospira eligens"],["NCBITaxon%3A515620","Lachnospira eligens ATCC 27750"],["NCBITaxon%3A1263077","Lachnospira eligens CAG:72"]]},{"id":"NCBITaxon:431944","l":"Magnetospirillum gryphiswaldense MSR-1","na":3,"nb":3,"a":[["Pfam%3APF12728","Helix-turn-helix domain"],["Pfam%3APF04011","LemA family"],["Pfam%3APF07219","HemY protein N-terminus"]],"b":[["NCBITaxon%3A55518","Magnetospirillum gryphiswaldense"],["NCBITaxon%3A431944","Magnetospirillum gryphiswaldense MSR-1"],["NCBITaxon%3A1430440","Magnetospirillum gryphiswaldense MSR-1 v2"]]},{"id":"NCBITaxon:53462","l":"Mycolicibacterium mageritense","na":3,"nb":3,"a":[["TED%3AAF-A0A5C7XVY5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7XVY5-F1-model_v4_TED01"],["TED%3AAF-A0A5C7XY26-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7XY26-F1-model_v4_TED01"],["TED%3AAF-A0A5C7XYF8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7XYF8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A53462","Mycolicibacterium mageritense"],["NCBITaxon%3A1209984","Mycolicibacterium mageritense DSM 44476 = CIP 104973"],["NCBITaxon%3A1087053","Mycolicibacterium mageritense JR2009"]]},{"id":"NCBITaxon:54571","l":"Streptomyces venezuelae","na":3,"nb":3,"a":[["Pfam%3APF08990","Erythronolide synthase docking domain"],["TED%3AAF-A0A5P2CQV7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5P2CQV7-F1-model_v4_TED02"],["TED%3AAF-A0A5P2C5X4-F1-model_v4_TED01","TED novel fold AF-A0A5P2C5X4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A54571","Streptomyces venezuelae"],["NCBITaxon%3A953739","Streptomyces venezuelae ATCC 10712"]]},{"id":"NCBITaxon:588","l":"Providencia stuartii","na":3,"nb":3,"a":[["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["PROSITE%3APS01157","Class A bacterial acid phosphatases signature"]],"b":[["NCBITaxon%3A588","Providencia stuartii"],["NCBITaxon%3A471874","Providencia stuartii ATCC 25827"],["NCBITaxon%3A1157951","Providencia stuartii MRSN 2154"]]},{"id":"NCBITaxon:73230","l":"Emmonsia crescens","na":3,"nb":3,"a":[["TED%3AAF-A0A2B7ZD89-F1-model_v4_TED01","TED novel fold AF-A0A2B7ZD89-F1-model_v4_TED01"],["TED%3AAF-A0A2B7ZII7-F1-model_v4_TED01","TED novel fold AF-A0A2B7ZII7-F1-model_v4_TED01"],["TED%3AAF-A0A2B7ZNT7-F1-model_v4_TED02","TED novel fold AF-A0A2B7ZNT7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A68989","Acinetobacter sp. ATCC 17979"],["NCBITaxon%3A40373","Acinetobacter sp. CIP-A165"],["NCBITaxon%3A73230","[Emmonsia] crescens"]]},{"id":"NCBITaxon:76857","l":"","na":3,"nb":3,"a":[["TED%3AAF-A0A2C6BKL5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2C6BKL5-F1-model_v4_TED01"],["TED%3AAF-A0A0S2ZS50-F1-model_v4_TED01","TED novel fold AF-A0A0S2ZS50-F1-model_v4_TED01"],["TED%3AAF-A0A2B7YED0-F1-model_v4_TED02","TED novel fold AF-A0A2B7YED0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A76857","Fusobacterium polymorphum"],["NCBITaxon%3A393480","Fusobacterium polymorphum ATCC 10953"],["NCBITaxon%3A693991","Fusobacterium polymorphum F0401"]]},{"id":"NCBITaxon:79880","l":"Shouchella clausii","na":3,"nb":3,"a":[["Pfam%3APF13536","Putative multidrug resistance efflux transporter"],["Pfam%3APF10776","Protein of unknown function (DUF2600)"],["TED%3AAF-A0A268NXB1-F1-model_v4_TED01","TED novel fold AF-A0A268NXB1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A79880","Shouchella clausii"],["NCBITaxon%3A66692","Shouchella clausii KSM-K16"],["NCBITaxon%3A83428","uncultured Bacillus sp."]]},{"id":"NCBITaxon:996","l":"Flavobacterium columnare","na":3,"nb":3,"a":[["TED%3AAF-A0A4Z0FEB3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Z0FEB3-F1-model_v4_TED02"],["TED%3AAF-A0A2N9P872-F1-model_v4_TED02","TED novel fold AF-A0A2N9P872-F1-model_v4_TED02"],["TED%3AAF-A0A2T4HIF9-F1-model_v4_TED03","TED novel fold AF-A0A2T4HIF9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A996","Flavobacterium columnare"],["NCBITaxon%3A1041826","Flavobacterium columnare ATCC 49512"],["NCBITaxon%3A1218111","Flavobacterium columnare NBRC 100251 = ATCC 23463"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii (strain ATCC 43067 / DSM 2661 / JAL-1 / JCM 10045 / NBRC 100440)","na":5181,"nb":2,"a":[["EC%3A1.12.99.-","With other acceptors"],["EC%3A1.3.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.3.-.-","Acting on the CH-CH group of donors"],["EC%3A1.8.98.-","With other, known, acceptors"],["EC%3A1.97.1.-","Other oxidoreductases"],["EC%3A2.1.2.-","Hydroxymethyl-, formyl- and related transferases"]],"b":[["NCBITaxon%3A2190","Methanocaldococcus jannaschii"],["NCBITaxon%3A243232","Methanocaldococcus jannaschii DSM 2661"]]},{"id":"NCBITaxon:59201","l":"Salmonella enterica subsp. enterica","na":2,"nb":4549,"a":[["TED%3AAF-A0A711ED47-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A711ED47-F1-model_v4_TED01"],["TED%3AAF-A0A5U3EZQ4-F1-model_v4_TED01","TED novel fold AF-A0A5U3EZQ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A486987","Salmonella enterica subsp. enterica serovar '02-6026 18:1 v-z-Arizona'"],["NCBITaxon%3A2978376","Salmonella enterica subsp. enterica serovar 11:b:1,7"],["NCBITaxon%3A2808980","Salmonella enterica subsp. enterica serovar 11:r:-"],["NCBITaxon%3A3367019","Salmonella enterica subsp. enterica serovar 13,22:y:-"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":2,"nb":264,"a":[["TED%3AAF-B5UAE0-F1-model_v4_TED01","TED highly-symmetric fold AF-B5UAE0-F1-model_v4_TED01"],["TED%3AAF-A0A3E1IF45-F1-model_v4_TED01","TED novel fold AF-A0A3E1IF45-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A663","Vibrio alginolyticus"],["NCBITaxon%3A29494","Vibrio furnissii"],["NCBITaxon%3A675811","Vibrio furnissii CIP 102972"],["NCBITaxon%3A670","Vibrio parahaemolyticus"],["NCBITaxon%3A1238231","Vibrio parahaemolyticus 10290"],["NCBITaxon%3A1238195","Vibrio parahaemolyticus 10296"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":2,"nb":178,"a":[["Pfam%3APF02052","Gallidermin"],["Pfam%3APF04604","Type-A lantibiotic"]],"b":[["NCBITaxon%3A150055","Streptococcus lutetiensis"],["NCBITaxon%3A1309","Streptococcus mutans"],["NCBITaxon%3A857155","Streptococcus mutans 11A1"],["NCBITaxon%3A857147","Streptococcus mutans 11SSST2"],["NCBITaxon%3A857143","Streptococcus mutans 11VS1"],["NCBITaxon%3A857113","Streptococcus mutans 14D"]]},{"id":"NCBITaxon:224325","l":"Archaeoglobus fulgidus (strain ATCC 49558 / DSM 4304 / JCM 9628 / NBRC 100126 / VC-16)","na":102,"nb":2,"a":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF19436","ACS/CODH beta subunit C-terminal"],["Pfam%3APF27352","AF_0059 family"],["Pfam%3APF27313","AF_0136 family C-terminal domain"],["Pfam%3APF27315","AF_0136 family N-terminal domain"],["Pfam%3APF27217","AF_0155 Rossmann-like domain"]],"b":[["NCBITaxon%3A2234","Archaeoglobus fulgidus"],["NCBITaxon%3A224325","Archaeoglobus fulgidus DSM 4304"]]},{"id":"NCBITaxon:199310","l":"Escherichia coli O6:H1 (strain CFT073 / ATCC 700928 / UPEC)","na":89,"nb":2,"a":[["Pfam%3APF12343","DeaD helicase C-terminal disordered region"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF08298","PrkA AAA domain"],["Pfam%3APF17425","Arylsulfotransferase Ig-like domain"],["Pfam%3APF02611","CDP-diacylglycerol pyrophosphatase"],["Pfam%3APF10729","Cell division activator CedA"]],"b":[["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A199310","Escherichia coli CFT073"]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":2,"nb":88,"a":[["TED%3AAF-A0A6N3WS12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N3WS12-F1-model_v4_TED01"],["TED%3AAF-A0A3R7GIU2-F1-model_v4_TED02","TED novel fold AF-A0A3R7GIU2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A298","Pseudomonas marginalis"],["NCBITaxon%3A56448","Xanthomonas arboricola"],["NCBITaxon%3A339","Xanthomonas campestris"],["NCBITaxon%3A1281290","Xanthomonas campestris CFBP 5824"],["NCBITaxon%3A1281289","Xanthomonas campestris CFBP 5825"],["NCBITaxon%3A1182783","Xanthomonas campestris JX"]]},{"id":"NCBITaxon:1597","l":"Lacticaseibacillus paracasei","na":2,"nb":56,"a":[["Pfam%3APF09136","Glucodextranase, domain B"],["Pfam%3APF08109","Lactocin 705 family"]],"b":[["NCBITaxon%3A1582","Lacticaseibacillus casei"],["NCBITaxon%3A1597","Lacticaseibacillus paracasei"],["NCBITaxon%3A321967","Lacticaseibacillus paracasei ATCC 334"],["NCBITaxon%3A1226299","Lacticaseibacillus paracasei COM0101"],["NCBITaxon%3A1446494","Lacticaseibacillus paracasei N1115"],["NCBITaxon%3A1435038","Lacticaseibacillus paracasei NRIC 0644"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":2,"nb":56,"a":[["PROSITE%3APS00336","Beta-lactamase class-C active site"],["TED%3AAF-A0A155XQ59-F1-model_v4_TED02","TED novel fold AF-A0A155XQ59-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A61645","Enterobacter asburiae"],["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A1328422","Enterobacter cloacae BIDMC 33A"],["NCBITaxon%3A1439324","Enterobacter cloacae BIDMC 66"],["NCBITaxon%3A1439325","Enterobacter cloacae BIDMC 67"],["NCBITaxon%3A1329846","Enterobacter cloacae BIDMC 8"]]},{"id":"NCBITaxon:446","l":"Legionella pneumophila","na":2,"nb":47,"a":[["Pfam%3APF14860","DrrA phosphatidylinositol 4-phosphate binding domain"],["TED%3AAF-A0A822WCM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A822WCM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A446","Legionella pneumophila"],["NCBITaxon%3A866628","Legionella pneumophila 130b"],["NCBITaxon%3A423212","Legionella pneumophila 2300/99 Alcoy"],["NCBITaxon%3A1370127","Legionella pneumophila Leg01/16"],["NCBITaxon%3A66976","Legionella pneumophila serogroup 1"],["NCBITaxon%3A66985","Legionella pneumophila serogroup 10"]]},{"id":"NCBITaxon:85962","l":"Helicobacter pylori (strain ATCC 700392 / 26695)","na":45,"nb":2,"a":[["IDPO%3A0000002","disorder"],["IDPO%3A0000006","order"],["IDPO%3A0000014","order to disorder"],["Pfam%3APF15437","Plasminogen-binding protein pgbA C-terminal"],["Pfam%3APF02293","AmiS/UreI family transporter"],["Pfam%3APF00772","DnaB-like helicase N terminal domain"]],"b":[["NCBITaxon%3A210","Helicobacter pylori"],["NCBITaxon%3A85962","Helicobacter pylori 26695"]]},{"id":"NCBITaxon:243277","l":"Vibrio cholerae serotype O1 (strain ATCC 39315 / El Tor Inaba N16961)","na":44,"nb":2,"a":[["IDPO%3A0000011","disorder to order"],["IDPO%3A0000014","order to disorder"],["Pfam%3APF16671","Actin cross-linking domain"],["Pfam%3APF00842","Alanine racemase, C-terminal domain"],["Pfam%3APF06228","Haem utilisation ChuX/HutX"],["Pfam%3APF19425","Csd3 second domain"]],"b":[["NCBITaxon%3A666","Vibrio cholerae"],["NCBITaxon%3A243277","Vibrio cholerae O1 biovar El Tor str. N16961"]]},{"id":"NCBITaxon:186497","l":"Pyrococcus furiosus (strain ATCC 43587 / DSM 3638 / JCM 8422 / Vc1)","na":41,"nb":2,"a":[["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF01314","Aldehyde ferredoxin oxidoreductase, domains 2 & 3"],["Pfam%3APF02730","Aldehyde ferredoxin oxidoreductase, N-terminal domain"],["Pfam%3APF22476","Argonaute, N-terminal domain"],["Pfam%3APF09094","Alpha-amylase/4-alpha-glucanotransferase, middle domain"],["Pfam%3APF09095","Alpha-amylase/4-alpha-glucanotransferase, C-terminal"]],"b":[["NCBITaxon%3A2261","Pyrococcus furiosus"],["NCBITaxon%3A186497","Pyrococcus furiosus DSM 3638"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima (strain ATCC 43589 / DSM 3109 / JCM 10099 / NBRC 100826 / MSB8)","na":39,"nb":2,"a":[["Pfam%3APF02829","3H domain"],["Pfam%3APF13175","AAA ATPase domain"],["Pfam%3APF01958","Aspartate dehydrogenase, C-terminal"],["Pfam%3APF05448","Acetyl xylan esterase (AXE1)"],["Pfam%3APF04509","CheC-like family"],["Pfam%3APF13690","Chemotaxis phosphatase CheX"]],"b":[["NCBITaxon%3A2336","Thermotoga maritima"],["NCBITaxon%3A243274","Thermotoga maritima MSB8"]]},{"id":"NCBITaxon:187420","l":"Methanothermobacter thermautotrophicus (strain ATCC 29096 / DSM 1053 / JCM 10044 / NBRC 100330 / Delta H)","na":38,"nb":2,"a":[["Pfam%3APF23902","PRS2 AAA+ lid C-terminal domain"],["Pfam%3APF06819","Archaeal Peptidase A24 C-terminal Domain"],["Pfam%3APF01903","CbiX"],["Pfam%3APF17244","Cell division control protein 24, OB domain 3"],["Pfam%3APF22703","Cdc6 AAA+ ATPase-type lid domain"],["Pfam%3APF27272","Cyclic 2,3-diphosphoglycerate synthetase, N-terminal domain"]],"b":[["NCBITaxon%3A145262","Methanothermobacter thermautotrophicus"],["NCBITaxon%3A187420","Methanothermobacter thermautotrophicus str. Delta H"]]},{"id":"NCBITaxon:272634","l":"Mycoplasmoides pneumoniae (strain ATCC 29342 / M129 / Subtype 1)","na":38,"nb":2,"a":[["Pfam%3APF01812","5-formyltetrahydrofolate cyclo-ligase family"],["Pfam%3APF03257","Mycoplasma adhesin P1, C-terminal"],["Pfam%3APF22509","CARDS D2, beta trefoil domain"],["Pfam%3APF22346","ADP-ribosylating toxin CARDS, C-terminal beta-trefoil domain"],["Pfam%3APF21694","DNA polymerase III delta subunit, C-terminal domain"],["Pfam%3APF01519","Protein of unknown function DUF16"]],"b":[["NCBITaxon%3A2104","Mycoplasmoides pneumoniae"],["NCBITaxon%3A272634","Mycoplasmoides pneumoniae M129"]]},{"id":"NCBITaxon:273057","l":"Saccharolobus solfataricus (strain ATCC 35092 / DSM 1617 / JCM 11322 / P2)","na":37,"nb":2,"a":[["Pfam%3APF02294","7kD DNA-binding domain"],["Pfam%3APF02675","S-adenosylmethionine decarboxylase"],["Pfam%3APF09071","Alpha-amylase, C terminal"],["Pfam%3APF17952","Cas6 N-terminal domain"],["Pfam%3APF27338","Cytochrome b558/566 subunit B"],["Pfam%3APF22703","Cdc6 AAA+ ATPase-type lid domain"]],"b":[["NCBITaxon%3A2287","Saccharolobus solfataricus"],["NCBITaxon%3A273057","Saccharolobus solfataricus P2"]]},{"id":"NCBITaxon:410072","l":"Allocoprococcus comes","na":2,"nb":36,"a":[["TED%3AAF-A0A3R6EK28-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R6EK28-F1-model_v4_TED01"],["TED%3AAF-A0A173UHG4-F1-model_v4_TED01","TED novel fold AF-A0A173UHG4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A410072","Allocoprococcus comes"],["NCBITaxon%3A470146","Coprococcus comes ATCC 27758"],["NCBITaxon%3A1263070","Coprococcus comes CAG:19"],["NCBITaxon%3A717958","Coprococcus comes SL7/1"],["NCBITaxon%3A1339425","Coprococcus comes TS7.1-1.1"],["NCBITaxon%3A1339426","Coprococcus comes TS7.1-1.2"]]},{"id":"NCBITaxon:1303","l":"Streptococcus oralis","na":2,"nb":35,"a":[["Pfam%3APF03047","COMC family"],["TED%3AAF-A0A139PPG4-F1-model_v4_TED02","TED novel fold AF-A0A139PPG4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A68892","Streptococcus infantis"],["NCBITaxon%3A768726","Streptococcus mitis bv. 2 str. F0392"],["NCBITaxon%3A1000588","Streptococcus mitis bv. 2 str. SK95"],["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A655813","Streptococcus oralis ATCC 35037"],["NCBITaxon%3A888049","Streptococcus oralis ATCC 49296"]]},{"id":"NCBITaxon:1912","l":"Streptomyces hygroscopicus","na":2,"nb":35,"a":[["Pfam%3APF21168","Chorismatase FkbO/Hyg5-like, N-terminal"],["TED%3AAF-A0A1S6RUT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S6RUT8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A285578","Streptomyces angustmyceticus"],["NCBITaxon%3A68175","Streptomyces antimycoticus"],["NCBITaxon%3A1226758","Streptomyces antimycoticus subsp. mordarskii"],["NCBITaxon%3A476551","Streptomyces ascomycinicus"],["NCBITaxon%3A114699","Streptomyces asiaticus"],["NCBITaxon%3A3098222","Streptomyces asiaticus subsp. ignotus"]]},{"id":"NCBITaxon:2702","l":"Gardnerella vaginalis","na":2,"nb":35,"a":[["TED%3AAF-A0A133NUL7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A133NUL7-F1-model_v4_TED01"],["TED%3AAF-A0A3E2C3X9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3E2C3X9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2702","Gardnerella vaginalis"],["NCBITaxon%3A698952","Gardnerella vaginalis 0288E"],["NCBITaxon%3A698957","Gardnerella vaginalis 1500E"],["NCBITaxon%3A698950","Gardnerella vaginalis 284V"],["NCBITaxon%3A879307","Gardnerella vaginalis 315-A"],["NCBITaxon%3A553190","Gardnerella vaginalis 409-05"]]},{"id":"NCBITaxon:1582","l":"Lacticaseibacillus casei","na":2,"nb":32,"a":[["Pfam%3APF07475","HPr Serine kinase C-terminal domain"],["PROSITE%3APS01163","Galactose-1-phosphate uridyl transferase family 2 signature"]],"b":[["NCBITaxon%3A1582","Lacticaseibacillus casei"],["NCBITaxon%3A1051650","Lacticaseibacillus casei 12A"],["NCBITaxon%3A1051651","Lacticaseibacillus casei 21/1"],["NCBITaxon%3A1051652","Lacticaseibacillus casei 32G"],["NCBITaxon%3A1378069","Lacticaseibacillus casei 5b"],["NCBITaxon%3A1051653","Lacticaseibacillus casei A2-362"]]},{"id":"NCBITaxon:300852","l":"Thermus thermophilus (strain ATCC 27634 / DSM 579 / HB8)","na":32,"nb":2,"a":[["Pfam%3APF17864","RuvB AAA lid domain"],["Pfam%3APF09210","1,4-alpha-glucan branching enzyme, C-terminal"],["Pfam%3APF09670","Csm6 HEPN domain"],["Pfam%3APF18395","Cas3 C-terminal domain"],["Pfam%3APF18019","Cas3, HD domain"],["Pfam%3APF22590","CRISPR-associated nuclease/helicase Cas3, C-terminal"]],"b":[["NCBITaxon%3A274","Thermus thermophilus"],["NCBITaxon%3A300852","Thermus thermophilus HB8"]]},{"id":"NCBITaxon:171101","l":"Streptococcus pneumoniae (strain ATCC BAA-255 / R6)","na":31,"nb":2,"a":[["Pfam%3APF03590","Aspartate-ammonia ligase"],["Pfam%3APF25935","LcnD-like, barrel-sandwich hybrid domain"],["Pfam%3APF24568","Peptidoglycan hydrolase PcsB, coiled-coil domain"],["Pfam%3APF05257","CHAP domain"],["Pfam%3APF27342","ComB N-terminal domain"],["Pfam%3APF26697","Competence protein ComGC, C-terminal domain"]],"b":[["NCBITaxon%3A1165093","Streptococcus pneumoniae CCCB"],["NCBITaxon%3A171101","Streptococcus pneumoniae R6"]]},{"id":"NCBITaxon:243273","l":"Mycoplasmoides genitalium (strain ATCC 33530 / DSM 19775 / NCTC 10195 / G37)","na":31,"nb":2,"a":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF03257","Mycoplasma adhesin P1, C-terminal"],["Pfam%3APF09185","Domain of unknown function (DUF1948)"],["Pfam%3APF09188","Domain of unknown function (DUF1951)"],["Pfam%3APF03072","Domain of unknown function (DUF237)"],["Pfam%3APF03086","Domain of unknown function (DUF240)"]],"b":[["NCBITaxon%3A2097","Mycoplasmoides genitalium"],["NCBITaxon%3A243273","Mycoplasmoides genitalium G37"]]},{"id":"NCBITaxon:28141","l":"Cronobacter sakazakii","na":2,"nb":28,"a":[["TED%3AAF-A0A855WTZ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A855WTZ2-F1-model_v4_TED01"],["TED%3AAF-A0A855WPZ3-F1-model_v4_TED01","TED novel fold AF-A0A855WPZ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A413497","Cronobacter dublinensis"],["NCBITaxon%3A413501","Cronobacter muytjensii"],["NCBITaxon%3A1159613","Cronobacter muytjensii ATCC 51329"],["NCBITaxon%3A28141","Cronobacter sakazakii"],["NCBITaxon%3A1159489","Cronobacter sakazakii 2151"],["NCBITaxon%3A1208592","Cronobacter sakazakii 680"]]},{"id":"NCBITaxon:226186","l":"Bacteroides thetaiotaomicron (strain ATCC 29148 / DSM 2079 / JCM 5827 / CCUG 10774 / NCTC 10582 / VPI-5482 / E50)","na":25,"nb":2,"a":[["Pfam%3APF06439","3-keto-alpha-glucoside-1,2-lyase-like domain"],["Pfam%3APF13444","Acetyltransferase (GNAT) domain"],["Pfam%3APF19576","Acyltransferase"],["Pfam%3APF23764","GLAA-B beta-barrel domain II"],["Pfam%3APF13715","CarboxypepD_reg-like domain"],["Pfam%3APF26120","SusF, first starch specific CBM"]],"b":[["NCBITaxon%3A818","Bacteroides thetaiotaomicron"],["NCBITaxon%3A226186","Bacteroides thetaiotaomicron VPI-5482"]]},{"id":"NCBITaxon:309800","l":"Haloferax volcanii (strain ATCC 29605 / DSM 3757 / JCM 8879 / NBRC 14742 / NCIMB 2012 / VKM B-1768 / DS2)","na":25,"nb":2,"a":[["Pfam%3APF18079","Archaeal glycosylation protein B long peripheral domain"],["Pfam%3APF15915","GAF and HTH_10 associated domain"],["Pfam%3APF01881","CRISPR associated protein Cas6, C-terminal"],["Pfam%3APF09484","CRISPR-associated protein TM1802 (cas_TM1802) N-terminal domain"],["Pfam%3APF21011","Tubulin-like CetZ, C-terminal domain"],["Pfam%3APF19294","Diadenylate cyclase, N-terminal"]],"b":[["NCBITaxon%3A2246","Haloferax volcanii"],["NCBITaxon%3A309800","Haloferax volcanii DS2"]]},{"id":"NCBITaxon:160488","l":"Pseudomonas putida (strain ATCC 47054 / DSM 6125 / CFBP 8728 / NCIMB 11950 / KT2440)","na":24,"nb":2,"a":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF00842","Alanine racemase, C-terminal domain"],["Pfam%3APF01168","Alanine racemase, N-terminal domain"],["Pfam%3APF13372","Alginate export"],["Pfam%3APF03705","CheR methyltransferase, all-alpha domain"],["Pfam%3APF01739","CheR methyltransferase, SAM binding domain"]],"b":[["NCBITaxon%3A303","Pseudomonas putida"],["NCBITaxon%3A160488","Pseudomonas putida KT2440"]]},{"id":"NCBITaxon:596","l":"Salmonella enterica subsp. enterica serovar Muenchen","na":2,"nb":24,"a":[["Pfam%3APF27117","FliB lysine N-methylase C-terminal domain"],["TED%3AAF-A0A5U8XTE1-F1-model_v4_TED01","TED novel fold AF-A0A5U8XTE1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A596","Salmonella enterica subsp. enterica serovar Muenchen"],["NCBITaxon%3A1173881","Salmonella enterica subsp. enterica serovar Muenchen str. 0424"],["NCBITaxon%3A1328334","Salmonella enterica subsp. enterica serovar Muenchen str. 08-1125"],["NCBITaxon%3A1328333","Salmonella enterica subsp. enterica serovar Muenchen str. 2009K-0951"],["NCBITaxon%3A1192571","Salmonella enterica subsp. enterica serovar Muenchen str. 97016"],["NCBITaxon%3A930770","Salmonella enterica subsp. enterica serovar Muenchen str. ATCC 8388"]]},{"id":"NCBITaxon:157687","l":"Leptotrichia wadei","na":2,"nb":23,"a":[["TED%3AAF-A0A510KFE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A510KFE6-F1-model_v4_TED01"],["TED%3AAF-A0A510KJX4-F1-model_v4_TED02","TED novel fold AF-A0A510KJX4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A157687","Leptotrichia wadei"],["NCBITaxon%3A1122174","Leptotrichia wadei DSM 19758"],["NCBITaxon%3A888055","Leptotrichia wadei F0279"],["NCBITaxon%3A1409967","Leptotrichia wadei HMP_JCVI_SC0129"],["NCBITaxon%3A1409968","Leptotrichia wadei HMP_JCVI_SC0130"],["NCBITaxon%3A1409969","Leptotrichia wadei HMP_JCVI_SC0192"]]},{"id":"NCBITaxon:159749","l":"Thalassiosira oceanica","na":21,"nb":2,"a":[["TED%3AAF-K0QYM2-F1-model_v4_TED01","TED highly-symmetric fold AF-K0QYM2-F1-model_v4_TED01"],["TED%3AAF-K0R5V5-F1-model_v4_TED01","TED highly-symmetric fold AF-K0R5V5-F1-model_v4_TED01"],["TED%3AAF-K0R8R9-F1-model_v4_TED01","TED highly-symmetric fold AF-K0R8R9-F1-model_v4_TED01"],["TED%3AAF-K0R935-F1-model_v4_TED01","TED highly-symmetric fold AF-K0R935-F1-model_v4_TED01"],["TED%3AAF-K0RLI6-F1-model_v4_TED02","TED highly-symmetric fold AF-K0RLI6-F1-model_v4_TED02"],["TED%3AAF-K0SQP1-F1-model_v4_TED01","TED highly-symmetric fold AF-K0SQP1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A159749","Thalassiosira oceanica"],["NCBITaxon%3A637379","Thalassiosira oceanica CCMP1005"]]},{"id":"NCBITaxon:243230","l":"Deinococcus radiodurans (strain ATCC 13939 / DSM 20539 / JCM 16871 / CCUG 27074 / LMG 4051 / NBRC 15346 / NCIMB 9279 / VKM B-1422 / R1)","na":21,"nb":2,"a":[["Pfam%3APF07282","Cas12f1-like, TNB domain"],["Pfam%3APF26517","DNA damage response protein D family"],["Pfam%3APF07733","Bacterial DNA polymerase III alpha NTPase domain"],["Pfam%3APF17657","Bacterial DNA polymerase III alpha subunit finger domain"],["Pfam%3APF11638","DnaA N-terminal domain"],["Pfam%3APF09348","Domain of unknown function (DUF1990)"]],"b":[["NCBITaxon%3A1299","Deinococcus radiodurans"],["NCBITaxon%3A243230","Deinococcus radiodurans R1 = ATCC 13939 = DSM 20539"]]},{"id":"NCBITaxon:64091","l":"Halobacterium salinarum (strain ATCC 700922 / JCM 11081 / NRC-1)","na":21,"nb":2,"a":[["Pfam%3APF06953","Arsenical resistance operon protein ArsD"],["Pfam%3APF01036","Bacteriorhodopsin-like protein"],["Pfam%3APF15915","GAF and HTH_10 associated domain"],["Pfam%3APF01955","Adenosylcobinamide amidohydrolase"],["Pfam%3APF12762","ISXO2-like transposase domain"],["Pfam%3APF24277","DmsR, N-terminal domain-like"]],"b":[["NCBITaxon%3A64091","Halobacterium salinarum NRC-1"],["NCBITaxon%3A2243","Halobacterium sp."]]},{"id":"NCBITaxon:1245","l":"Leuconostoc mesenteroides","na":2,"nb":20,"a":[["Pfam%3APF08951","Bacteriocin immunity protein family"],["TED%3AAF-A0A8B5R1X5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B5R1X5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A33964","Leuconostoc citreum"],["NCBITaxon%3A1245","Leuconostoc mesenteroides"],["NCBITaxon%3A1357402","Leuconostoc mesenteroides A16_17"],["NCBITaxon%3A427140","Leuconostoc mesenteroides KFRI-MG"],["NCBITaxon%3A1429888","Leuconostoc mesenteroides P45"],["NCBITaxon%3A33965","Leuconostoc mesenteroides subsp. cremoris"]]},{"id":"NCBITaxon:1871037","l":"Flavobacteriaceae bacterium","na":20,"nb":2,"a":[["TED%3AAF-A0A2D8LJQ5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D8LJQ5-F1-model_v4_TED01"],["TED%3AAF-A0A2E2EWF0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E2EWF0-F1-model_v4_TED01"],["TED%3AAF-A0A2E2IY52-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E2IY52-F1-model_v4_TED01"],["TED%3AAF-A0A2E2WBT5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2E2WBT5-F1-model_v4_TED03"],["TED%3AAF-A0A2E3BY40-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E3BY40-F1-model_v4_TED01"],["TED%3AAF-A0A2E8VF02-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E8VF02-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1871037","Flavobacteriaceae bacterium"],["NCBITaxon%3A2687242","Mesonia oceanica"]]},{"id":"NCBITaxon:29488","l":"Photorhabdus luminescens","na":2,"nb":20,"a":[["Pfam%3APF02273","Acyl transferase"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"]],"b":[["NCBITaxon%3A171438","Photorhabdus akhurstii"],["NCBITaxon%3A2934395","Photorhabdus akhurstii subsp. akhurstii"],["NCBITaxon%3A1004165","Photorhabdus caribbeanensis"],["NCBITaxon%3A1004166","Photorhabdus hainanensis"],["NCBITaxon%3A230088","Photorhabdus kayaii"],["NCBITaxon%3A768034","Photorhabdus kleinii"]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":2,"nb":20,"a":[["Pfam%3APF07833","Copper amine oxidase N-terminal domain"],["TED%3AAF-A0A447L715-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A447L715-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A548","Klebsiella aerogenes"],["NCBITaxon%3A1308731","Klebsiella aerogenes ADL-323"],["NCBITaxon%3A935296","Klebsiella aerogenes EA1509E"],["NCBITaxon%3A685445","Klebsiella aerogenes FGI35"],["NCBITaxon%3A1028307","Klebsiella aerogenes KCTC 2190"],["NCBITaxon%3A1439320","Klebsiella aerogenes MGH 61"]]},{"id":"NCBITaxon:633","l":"Yersinia pseudotuberculosis","na":2,"nb":20,"a":[["Pfam%3APF03421","YopJ Serine/Threonine acetyltransferase"],["Pfam%3APF01041","DegT/DnrJ/EryC1/StrS aminotransferase family"]],"b":[["NCBITaxon%3A633","Yersinia pseudotuberculosis"],["NCBITaxon%3A1286084","Yersinia pseudotuberculosis B-6796"],["NCBITaxon%3A1286085","Yersinia pseudotuberculosis B-6862"],["NCBITaxon%3A1286086","Yersinia pseudotuberculosis B-6863"],["NCBITaxon%3A1286087","Yersinia pseudotuberculosis B-6864"],["NCBITaxon%3A1286088","Yersinia pseudotuberculosis B-6865"]]},{"id":"NCBITaxon:2026760","l":"Marinimicrobia bacterium","na":19,"nb":2,"a":[["TED%3AAF-A0A2D7MEH7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2D7MEH7-F1-model_v4_TED03"],["TED%3AAF-A0A2E7MXE5-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2E7MXE5-F1-model_v4_TED04"],["TED%3AAF-A0A3D2FQ14-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D2FQ14-F1-model_v4_TED01"],["TED%3AAF-A0A660XAY5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A660XAY5-F1-model_v4_TED01"],["TED%3AAF-A0A7C7JC12-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C7JC12-F1-model_v4_TED02"],["TED%3AAF-A0A7C7MW15-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C7MW15-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A3377529","Fidelibacter multiformis"],["NCBITaxon%3A2026760","Fidelibacterota bacterium"]]},{"id":"NCBITaxon:330779","l":"Sulfolobus acidocaldarius (strain ATCC 33909 / DSM 639 / JCM 8929 / NBRC 15157 / NCIMB 11770)","na":19,"nb":2,"a":[["Pfam%3APF12846","AAA-like domain"],["Pfam%3APF27338","Cytochrome b558/566 subunit B"],["Pfam%3APF18822","CdvA-like coiled-coil domain"],["Pfam%3APF27303","Cell division protein CdvB, C-terminal HTH domain"],["Pfam%3APF27251","DNA import protein CedA1"],["Pfam%3APF18533","Domain of unknown function (DUF5622)"]],"b":[["NCBITaxon%3A2285","Sulfolobus acidocaldarius"],["NCBITaxon%3A330779","Sulfolobus acidocaldarius DSM 639"]]},{"id":"NCBITaxon:375","l":"Bradyrhizobium japonicum","na":2,"nb":19,"a":[["TED%3AAF-A0A1L3FD53-F1-model_v4_TED02","TED novel fold AF-A0A1L3FD53-F1-model_v4_TED02"],["TED%3AAF-A0A1L3FDV4-F1-model_v4_TED02","TED novel fold AF-A0A1L3FDV4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1355477","Bradyrhizobium diazoefficiens"],["NCBITaxon%3A224911","Bradyrhizobium diazoefficiens USDA 110"],["NCBITaxon%3A375","Bradyrhizobium japonicum"],["NCBITaxon%3A306164","Bradyrhizobium japonicum bv. genistearum"],["NCBITaxon%3A305581","Bradyrhizobium japonicum bv. glycinearum"],["NCBITaxon%3A1128253","Bradyrhizobium japonicum CCBAU 15354"]]},{"id":"NCBITaxon:48296","l":"Acinetobacter pittii","na":2,"nb":19,"a":[["TED%3AAF-A0A3R9S6D0-F1-model_v4_TED03","TED novel fold AF-A0A3R9S6D0-F1-model_v4_TED03"],["TED%3AAF-A0A6P1SKX2-F1-model_v4_TED04","TED novel fold AF-A0A6P1SKX2-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A106654","Acinetobacter nosocomialis"],["NCBITaxon%3A1217670","Acinetobacter nosocomialis NIPH 2119"],["NCBITaxon%3A48296","Acinetobacter pittii"],["NCBITaxon%3A1147132","Acinetobacter pittii 42F"],["NCBITaxon%3A1217673","Acinetobacter pittii ANC 3678"]]},{"id":"NCBITaxon:158836","l":"Enterobacter hormaechei","na":2,"nb":18,"a":[["TED%3AAF-A0A431SE22-F1-model_v4_TED01","TED novel fold AF-A0A431SE22-F1-model_v4_TED01"],["TED%3AAF-A0A8B5ZRS3-F1-model_v4_TED01","TED novel fold AF-A0A8B5ZRS3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A3461408","Enterobacter hoffmannii subsp. nototheniae"],["NCBITaxon%3A158836","Enterobacter hormaechei"],["NCBITaxon%3A888063","Enterobacter hormaechei ATCC 49162"],["NCBITaxon%3A1812934","Enterobacter hormaechei subsp. hoffmannii"],["NCBITaxon%3A1333851","Enterobacter hormaechei subsp. hoffmannii ECNIH3"]]},{"id":"NCBITaxon:1580","l":"Levilactobacillus brevis","na":2,"nb":17,"a":[["TED%3AAF-A0A2A3TVW3-F1-model_v4_TED01","TED novel fold AF-A0A2A3TVW3-F1-model_v4_TED01"],["TED%3AAF-A0A7Z6MPZ0-F1-model_v4_TED02","TED novel fold AF-A0A7Z6MPZ0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1590","Lactiplantibacillus plantarum"],["NCBITaxon%3A2767846","Lactiplantibacillus sp."],["NCBITaxon%3A1591","Lactobacillus sp."],["NCBITaxon%3A1581","Lentilactobacillus buchneri"],["NCBITaxon%3A1580","Levilactobacillus brevis"],["NCBITaxon%3A1384064","Levilactobacillus brevis AG48"]]},{"id":"NCBITaxon:57975","l":"Burkholderia thailandensis","na":2,"nb":17,"a":[["TED%3AAF-A0A7Z8HH79-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Z8HH79-F1-model_v4_TED01"],["TED%3AAF-A0A7Z8HK43-F1-model_v4_TED01","TED novel fold AF-A0A7Z8HK43-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A57975","Burkholderia thailandensis"],["NCBITaxon%3A1249660","Burkholderia thailandensis 2002721643"],["NCBITaxon%3A1241582","Burkholderia thailandensis 2002721723"],["NCBITaxon%3A1249664","Burkholderia thailandensis 34"],["NCBITaxon%3A441164","Burkholderia thailandensis Bt4"],["NCBITaxon%3A1436064","Burkholderia thailandensis E0444"]]},{"id":"NCBITaxon:621","l":"Shigella boydii","na":2,"nb":17,"a":[["Pfam%3APF03808","Glycosyl transferase WecG/TagA/CpsF family"],["TED%3AAF-A0A1S9JL82-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S9JL82-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A621","Shigella boydii"],["NCBITaxon%3A1118236","Shigella boydii 08-0009"],["NCBITaxon%3A1212573","Shigella boydii 08-0280"],["NCBITaxon%3A1212574","Shigella boydii 08-2671"],["NCBITaxon%3A1212575","Shigella boydii 08-2675"]]},{"id":"NCBITaxon:69014","l":"Thermococcus kodakarensis (strain ATCC BAA-918 / JCM 12380 / KOD1)","na":17,"nb":2,"a":[["Pfam%3APF08546","Ketopantoate reductase PanE/ApbA C terminal"],["Pfam%3APF02558","Ketopantoate reductase PanE/ApbA"],["Pfam%3APF09210","1,4-alpha-glucan branching enzyme, C-terminal"],["Pfam%3APF01861","Branched-chain polyamine synthase A C-terminal domain"],["Pfam%3APF27272","Cyclic 2,3-diphosphoglycerate synthetase, N-terminal domain"],["Pfam%3APF17884","Domain of unknown function (DUF5591)"]],"b":[["NCBITaxon%3A311400","Thermococcus kodakarensis"],["NCBITaxon%3A69014","Thermococcus kodakarensis KOD1"]]},{"id":"NCBITaxon:243161","l":"Chlamydia muridarum (strain MoPn / Nigg)","na":16,"nb":2,"a":[["Pfam%3APF07382","Histone H1-like nucleoprotein HC2"],["Pfam%3APF05475","Pgp3 C-terminal domain"],["Pfam%3APF07577","Domain of Unknown Function (DUF1547)"],["Pfam%3APF05745","Chlamydia 15 kDa cysteine-rich outer membrane protein (CRPA)"],["Pfam%3APF28261","Uncharacterized protein CT_504-like"],["Pfam%3APF17435","CT_584-like"]],"b":[["NCBITaxon%3A243161","Chlamydia muridarum str. Nigg"],["NCBITaxon%3A1434773","Chlamydia muridarum str. Nigg CM972"]]},{"id":"NCBITaxon:587753","l":"Pseudomonas chlororaphis","na":2,"nb":16,"a":[["TED%3AAF-A0A8A9Z2C4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A8A9Z2C4-F1-model_v4_TED03"],["TED%3AAF-A0A0A6DEM6-F1-model_v4_TED01","TED novel fold AF-A0A0A6DEM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A587753","Pseudomonas chlororaphis"],["NCBITaxon%3A1343078","Pseudomonas chlororaphis HT66"],["NCBITaxon%3A1037915","Pseudomonas chlororaphis O6"],["NCBITaxon%3A1400530","Pseudomonas chlororaphis PCYL_1"],["NCBITaxon%3A86192","Pseudomonas chlororaphis subsp. aurantiaca"],["NCBITaxon%3A1415170","Pseudomonas chlororaphis subsp. aurantiaca PB-St2"]]},{"id":"NCBITaxon:622","l":"Shigella dysenteriae","na":2,"nb":16,"a":[["Pfam%3APF03278","IpaB/EvcA family"],["PROSITE%3APS00275","Shiga/ricin ribosomal inactivating toxins active site signature"]],"b":[["NCBITaxon%3A622","Shigella dysenteriae"],["NCBITaxon%3A984897","Shigella dysenteriae 1"],["NCBITaxon%3A766142","Shigella dysenteriae 155-74"],["NCBITaxon%3A754093","Shigella dysenteriae 1617"],["NCBITaxon%3A766143","Shigella dysenteriae 225-75"],["NCBITaxon%3A984895","Shigella dysenteriae 2a"]]},{"id":"NCBITaxon:1334","l":"Streptococcus dysgalactiae","na":2,"nb":15,"a":[["Pfam%3APF20746","Endo-beta-N-acetylglucosaminidase F2, Ig-like domain"],["Pfam%3APF23952","Endo-beta-N-acetylglucosaminidase EndoS LRR domain"]],"b":[["NCBITaxon%3A1334","Streptococcus dysgalactiae"],["NCBITaxon%3A99822","Streptococcus dysgalactiae subsp. dysgalactiae"],["NCBITaxon%3A663952","Streptococcus dysgalactiae subsp. dysgalactiae ATCC 27957"],["NCBITaxon%3A119602","Streptococcus dysgalactiae subsp. equisimilis"],["NCBITaxon%3A1247189","Streptococcus dysgalactiae subsp. equisimilis 167"],["NCBITaxon%3A759913","Streptococcus dysgalactiae subsp. equisimilis AC-2713"]]},{"id":"NCBITaxon:654","l":"Aeromonas veronii","na":2,"nb":15,"a":[["TED%3AAF-A0A2S3XR57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S3XR57-F1-model_v4_TED01"],["TED%3AAF-A0A1Q8F226-F1-model_v4_TED01","TED novel fold AF-A0A1Q8F226-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A646","Aeromonas sobria"],["NCBITaxon%3A647","Aeromonas sp."],["NCBITaxon%3A654","Aeromonas veronii"],["NCBITaxon%3A1073382","Aeromonas veronii AER39"],["NCBITaxon%3A1073384","Aeromonas veronii AER397"],["NCBITaxon%3A1125687","Aeromonas veronii AMC24"]]},{"id":"NCBITaxon:1347342","l":"Formosa agariphila (strain DSM 15362 / KCTC 12365 / LMG 23005 / KMM 3901 / M-2Alg 35-1)","na":14,"nb":2,"a":[["Pfam%3APF17390","Bacterial alpha-L-rhamnosidase C-terminal domain"],["Pfam%3APF08531","Alpha-L-rhamnosidase N-terminal domain"],["Pfam%3APF05592","Bacterial alpha-L-rhamnosidase concanavalin-like domain"],["Pfam%3APF24208","Endo-acting ulvan lyase beta-trefoil domain"],["Pfam%3APF16355","Domain of unknown function (DUF4982)"],["Pfam%3APF18565","Glycoside hydrolase family 2 C-terminal domain 5"]],"b":[["NCBITaxon%3A320324","Formosa agariphila"],["NCBITaxon%3A1347342","Formosa agariphila KMM 3901"]]},{"id":"NCBITaxon:196627","l":"Corynebacterium glutamicum (strain ATCC 13032 / DSM 20300 / JCM 1318 / BCRC 11384 / CCUG 27702 / LMG 3730 / NBRC 12168 / NCIMB 10025 / NRRL B-2784 / 534)","na":14,"nb":2,"a":[["Pfam%3APF26371","AftB family C-terminal domain"],["Pfam%3APF12897","Aspartate amino-transferase"],["Pfam%3APF02028","BCCT, betaine/carnitine/choline family transporter"],["Pfam%3APF27333","Cgl2226"],["Pfam%3APF13631","Cytochrome b(N-terminal)/b6/petB"],["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"]],"b":[["NCBITaxon%3A1718","Corynebacterium glutamicum"],["NCBITaxon%3A196627","Corynebacterium glutamicum ATCC 13032"]]},{"id":"NCBITaxon:28132","l":"Prevotella melaninogenica","na":2,"nb":14,"a":[["TED%3AAF-A0A8B2A6Y8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B2A6Y8-F1-model_v4_TED01"],["TED%3AAF-A0A250KF16-F1-model_v4_TED03","TED novel fold AF-A0A250KF16-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A840","Hoylesella loescheii"],["NCBITaxon%3A1122985","Hoylesella loescheii DSM 19665 = JCM 12249 = ATCC 15930"],["NCBITaxon%3A28123","Porphyromonas asaccharolytica"],["NCBITaxon%3A837","Porphyromonas gingivalis"],["NCBITaxon%3A28114","Porphyromonas levii"],["NCBITaxon%3A1122973","Porphyromonas levii DSM 23370"]]},{"id":"NCBITaxon:267377","l":"Methanococcus maripaludis (strain DSM 14266 / JCM 13030 / NBRC 101832 / S2 / LL)","na":13,"nb":2,"a":[["Pfam%3APF09171","N-glycosylase/DNA lyase"],["Pfam%3APF06847","Archaeal Peptidase A24 C-terminus Type II"],["Pfam%3APF06819","Archaeal Peptidase A24 C-terminal Domain"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF26558","3-dehydroquinate synthase II C-terminal domain"],["Pfam%3APF01959","3-dehydroquinate synthase II N-terminal domain"]],"b":[["NCBITaxon%3A39152","Methanococcus maripaludis"],["NCBITaxon%3A267377","Methanococcus maripaludis S2"]]},{"id":"NCBITaxon:272562","l":"Clostridium acetobutylicum (strain ATCC 824 / DSM 792 / JCM 1419 / IAM 19013 / LMG 5710 / NBRC 13948 / NRRL B-527 / VKM B-1787 / 2291 / W)","na":13,"nb":2,"a":[["Pfam%3APF10882","Bacterial PH domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["Pfam%3APF09940","Domain of unknown function (DUF2172)"],["Pfam%3APF16254","Domain of unknown function (DUF4910)"],["Pfam%3APF01183","Glycosyl hydrolases family 25"],["Pfam%3APF16221","winged helix-turn-helix"]],"b":[["NCBITaxon%3A1488","Clostridium acetobutylicum"],["NCBITaxon%3A272562","Clostridium acetobutylicum ATCC 824"]]},{"id":"NCBITaxon:272844","l":"Pyrococcus abyssi (strain GE5 / Orsay)","na":13,"nb":2,"a":[["Pfam%3APF27302","AF_2407 family"],["Pfam%3APF22482","PF0864 C-terminal dimeric alpha+beta barrel domain"],["Pfam%3APF21133","CCA-adding enzyme, C-terminal domain"],["Pfam%3APF02641","Uncharacterized ACR, COG1993"],["Pfam%3APF02643","Uncharacterized ACR, COG1430"],["Pfam%3APF24034","Domain of unknown function (DUF7343)"]],"b":[["NCBITaxon%3A29292","Pyrococcus abyssi"],["NCBITaxon%3A272844","Pyrococcus abyssi GE5"]]},{"id":"NCBITaxon:529","l":"Brucella anthropi","na":2,"nb":13,"a":[["Pfam%3APF07930","D-aminopeptidase, domain B"],["TED%3AAF-A0A7T4IBJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T4IBJ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1775538","Acidovorax sp. JCM 10070"],["NCBITaxon%3A1775539","Acidovorax sp. JCM 10072"],["NCBITaxon%3A529","Brucella anthropi"],["NCBITaxon%3A1201037","Brucella anthropi 60a"],["NCBITaxon%3A439375","Brucella anthropi ATCC 49188"],["NCBITaxon%3A1151114","Brucella anthropi CTS-325"]]},{"id":"NCBITaxon:54","l":"Nannocystis exedens","na":13,"nb":2,"a":[["TED%3AAF-A0A1I2A5Z6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2A5Z6-F1-model_v4_TED01"],["TED%3AAF-A0A1I2FM38-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I2FM38-F1-model_v4_TED02"],["TED%3AAF-A0A1I2H0F9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2H0F9-F1-model_v4_TED01"],["TED%3AAF-A0A831ZMD9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A831ZMD9-F1-model_v4_TED01"],["TED%3AAF-A0A1I1T6U3-F1-model_v4_TED01","TED novel fold AF-A0A1I1T6U3-F1-model_v4_TED01"],["TED%3AAF-A0A1I1XLT5-F1-model_v4_TED02","TED novel fold AF-A0A1I1XLT5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A54","Nannocystis exedens"],["NCBITaxon%3A1366054","Nannocystis exedens subsp. cinnabaria"]]},{"id":"NCBITaxon:70601","l":"Pyrococcus horikoshii (strain ATCC 700860 / DSM 12428 / JCM 9974 / NBRC 100139 / OT-3)","na":13,"nb":2,"a":[["Pfam%3APF22482","PF0864 C-terminal dimeric alpha+beta barrel domain"],["Pfam%3APF21350","CRISPR-associated protein Cas6, N-terminal"],["Pfam%3APF04122","Cell wall binding domain 2 (CWB2)"],["Pfam%3APF13660","Domain of unknown function (DUF4147)"],["Pfam%3APF04473","Transglutaminase-like domain"],["Pfam%3APF24034","Domain of unknown function (DUF7343)"]],"b":[["NCBITaxon%3A53953","Pyrococcus horikoshii"],["NCBITaxon%3A70601","Pyrococcus horikoshii OT3"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":2,"nb":12,"a":[["Pfam%3APF22538","Hexaprenyl diphosphate synthase, small subunit"],["PROSITE%3APS01066","Undecaprenyl pyrophosphate synthase family signature"]],"b":[["NCBITaxon%3A72000","Kocuria rhizophila"],["NCBITaxon%3A378753","Kocuria rhizophila DC2201"],["NCBITaxon%3A1272","Kocuria varians"],["NCBITaxon%3A1270","Micrococcus luteus"],["NCBITaxon%3A1357403","Micrococcus luteus CD1_FAA_NB_1"],["NCBITaxon%3A935864","Micrococcus luteus J28"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus ATCC 27405","na":12,"nb":2,"a":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["Pfam%3APF00942","Cellulose binding domain"],["Pfam%3APF17996","Carbohydrate esterase 2 N-terminal"],["Pfam%3APF00963","Cohesin domain"],["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF00404","Dockerin type I domain"]],"b":[["NCBITaxon%3A1515","Acetivibrio thermocellus"],["NCBITaxon%3A203119","Acetivibrio thermocellus ATCC 27405"]]},{"id":"NCBITaxon:224326","l":"Borreliella burgdorferi (strain ATCC 35210 / DSM 4680 / CIP 102532 / B31)","na":12,"nb":2,"a":[["Pfam%3APF09822","ABC-type uncharacterized transport system"],["Pfam%3APF02352","Decorin binding protein"],["Pfam%3APF23357","Domain of unknown function (DUF7088)"],["Pfam%3APF27167","GRAD helix-turn-helix domain"],["Pfam%3APF28090","BB0208-like"],["Pfam%3APF02999","Borrelia orf-D family"]],"b":[["NCBITaxon%3A139","Borreliella burgdorferi"],["NCBITaxon%3A224326","Borreliella burgdorferi B31"]]},{"id":"NCBITaxon:273123","l":"Yersinia pseudotuberculosis serotype I (strain IP32953)","na":12,"nb":2,"a":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF07201","HrpJ-like domain"],["Pfam%3APF09134","Invasin, domain 3"],["Pfam%3APF21764","Invasin, domain 4"],["Pfam%3APF07321","Type III secretion protein YscO"],["Pfam%3APF06932","Protein of unknown function (DUF1283)"]],"b":[["NCBITaxon%3A633","Yersinia pseudotuberculosis"],["NCBITaxon%3A273123","Yersinia pseudotuberculosis IP 32953"]]},{"id":"NCBITaxon:373153","l":"Streptococcus pneumoniae serotype 2 (strain D39 / NCTC 7466)","na":12,"nb":2,"a":[["Pfam%3APF24568","Peptidoglycan hydrolase PcsB, coiled-coil domain"],["Pfam%3APF05257","CHAP domain"],["Pfam%3APF22610","Histidine kinase, HAMP domain"],["Pfam%3APF18075","FtsX extracellular domain"],["Pfam%3APF02687","FtsX-like permease C-terminal"],["Pfam%3APF14804","Jag N-terminus"]],"b":[["NCBITaxon%3A1313","Streptococcus pneumoniae"],["NCBITaxon%3A373153","Streptococcus pneumoniae D39"]]},{"id":"NCBITaxon:431947","l":"Porphyromonas gingivalis (strain ATCC 33277 / DSM 20709 / CIP 103683 / JCM 12257 / NCTC 11834 / 2561)","na":12,"nb":2,"a":[["Pfam%3APF07675","Cleaved Adhesin Domain"],["Pfam%3APF19755","Domain of unknown function (DUF6242) N-terminal domain"],["Pfam%3APF22492","FimA4 pilin C-terminal domain"],["Pfam%3APF15495","Major fimbrial subunit protein type IV, Fimbrillin, C-terminal"],["Pfam%3APF26306","FimD protein third domain"],["Pfam%3APF27397","FimE C-terminal domain"]],"b":[["NCBITaxon%3A837","Porphyromonas gingivalis"],["NCBITaxon%3A431947","Porphyromonas gingivalis ATCC 33277"]]},{"id":"NCBITaxon:523841","l":"Haloferax mediterranei (strain ATCC 33500 / DSM 1411 / JCM 8866 / NBRC 14739 / NCIMB 2177 / R-4)","na":12,"nb":2,"a":[["Pfam%3APF01881","CRISPR associated protein Cas6, C-terminal"],["Pfam%3APF16952","Glutamine synthetase N-terminal domain"],["Pfam%3APF20440","GvpD basic region 2"],["Pfam%3APF07088","GvpD gas vesicle protein, P-loop domain"],["Pfam%3APF05120","Gas vesicle protein G"],["Pfam%3APF16912","Glucose dehydrogenase C-terminus"]],"b":[["NCBITaxon%3A2252","Haloferax mediterranei"],["NCBITaxon%3A523841","Haloferax mediterranei ATCC 33500"]]},{"id":"NCBITaxon:5702","l":"Trypanosoma brucei brucei","na":12,"nb":2,"a":[["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF05887","Procyclic acidic repetitive protein (PARP)"],["Pfam%3APF18526","Thymine dioxygenase JBP1 DNA-binding domain"],["Pfam%3APF22592","FCaBP EF-hand domain"],["Pfam%3APF12131","Protein of unknown function (DUF3586)"]],"b":[["NCBITaxon%3A5702","Trypanosoma brucei brucei"],["NCBITaxon%3A185431","Trypanosoma brucei brucei TREU927"]]},{"id":"NCBITaxon:1254","l":"Pediococcus acidilactici","na":2,"nb":11,"a":[["Pfam%3APF01721","Class II bacteriocin"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"]],"b":[["NCBITaxon%3A1245","Leuconostoc mesenteroides"],["NCBITaxon%3A1254","Pediococcus acidilactici"],["NCBITaxon%3A563194","Pediococcus acidilactici 7_4"],["NCBITaxon%3A1384067","Pediococcus acidilactici AGR20"],["NCBITaxon%3A1306952","Pediococcus acidilactici D3"],["NCBITaxon%3A862514","Pediococcus acidilactici DSM 20284"]]},{"id":"NCBITaxon:192952","l":"Methanosarcina mazei (strain ATCC BAA-159 / DSM 3647 / Goe1 / Go1 / JCM 11833 / OCM 88)","na":11,"nb":2,"a":[["Pfam%3APF01955","Adenosylcobinamide amidohydrolase"],["Pfam%3APF13189","Cytidylate kinase-like family"],["Pfam%3APF04432","Coenzyme F420 hydrogenase/dehydrogenase, beta subunit C terminus"],["Pfam%3APF13528","Glycosyl transferase family 1"],["Pfam%3APF19769","CPxCG-related zinc finger"],["Pfam%3APF10049","Protein of unknown function (DUF2283)"]],"b":[["NCBITaxon%3A2209","Methanosarcina mazei"],["NCBITaxon%3A192952","Methanosarcina mazei Go1"]]},{"id":"NCBITaxon:208962","l":"Escherichia albertii","na":2,"nb":11,"a":[["Pfam%3APF18134","Adenylyl/Guanylyl and SMODS C-terminal sensor domain"],["Pfam%3APF18153","Cap15, cyclic dinucleotide receptor domain"]],"b":[["NCBITaxon%3A208962","Escherichia albertii"],["NCBITaxon%3A550692","Escherichia albertii B090"],["NCBITaxon%3A550693","Escherichia albertii B156"],["NCBITaxon%3A1440052","Escherichia albertii KF1"],["NCBITaxon%3A1115511","Escherichia albertii NBRC 107761 = DSM 17582"],["NCBITaxon%3A502347","Escherichia albertii TW07627"]]},{"id":"NCBITaxon:46503","l":"Parabacteroides merdae","na":2,"nb":11,"a":[["TED%3AAF-A0A3R6EXH1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R6EXH1-F1-model_v4_TED01"],["TED%3AAF-A0A7K1HWR2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K1HWR2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A46503","Parabacteroides merdae"],["NCBITaxon%3A411477","Parabacteroides merdae ATCC 43184"],["NCBITaxon%3A1263094","Parabacteroides merdae CAG:48"],["NCBITaxon%3A999420","Parabacteroides merdae CL03T12C32"],["NCBITaxon%3A999421","Parabacteroides merdae CL09T00C40"],["NCBITaxon%3A1339583","Parabacteroides merdae TSDC10.1-1.1"]]},{"id":"NCBITaxon:498211","l":"Cellvibrio japonicus (strain Ueda107)","na":11,"nb":2,"a":[["Pfam%3APF17996","Carbohydrate esterase 2 N-terminal"],["Pfam%3APF02156","Glycosyl hydrolase family 26"],["Pfam%3APF02015","Glycosyl hydrolase family 45"],["Pfam%3APF07477","Glycosyl hydrolase family 67 C-terminus"],["Pfam%3APF07488","Glycosyl hydrolase family 67 middle domain"],["Pfam%3APF03648","Glycosyl hydrolase family 67 N-terminus"]],"b":[["NCBITaxon%3A155077","Cellvibrio japonicus"],["NCBITaxon%3A498211","Cellvibrio japonicus Ueda107"]]},{"id":"NCBITaxon:588596","l":"Rhizophagus irregularis","na":11,"nb":2,"a":[["TED%3AAF-A0A2I1G4L7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I1G4L7-F1-model_v4_TED01"],["TED%3AAF-A0A2N0R6X3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N0R6X3-F1-model_v4_TED01"],["TED%3AAF-A0A2N0RUV7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N0RUV7-F1-model_v4_TED01"],["TED%3AAF-A0A2I1FP07-F1-model_v4_TED02","TED novel fold AF-A0A2I1FP07-F1-model_v4_TED02"],["TED%3AAF-A0A2I1G2C0-F1-model_v4_TED01","TED novel fold AF-A0A2I1G2C0-F1-model_v4_TED01"],["TED%3AAF-A0A2I1GB98-F1-model_v4_TED02","TED novel fold AF-A0A2I1GB98-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A588596","Rhizophagus irregularis"],["NCBITaxon%3A747089","Rhizophagus irregularis DAOM 181602=DAOM 197198"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":11,"nb":2,"a":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF02085","Class III cytochrome C family"],["Pfam%3APF06397","Desulfoferrodoxin, N-terminal domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["Pfam%3APF12797","4Fe-4S binding domain"],["Pfam%3APF06180","Cobalt chelatase (CbiK)"]],"b":[["NCBITaxon%3A881","Nitratidesulfovibrio vulgaris"],["NCBITaxon%3A882","Nitratidesulfovibrio vulgaris str. Hildenborough"]]},{"id":"NCBITaxon:190192","l":"Methanopyrus kandleri (strain AV19 / DSM 6324 / JCM 9639 / NBRC 100938)","na":10,"nb":2,"a":[["Pfam%3APF26548","Putative peptidyl-prolyl cis-trans isomerase domain"],["Pfam%3APF02741","FTR, proximal lobe"],["Pfam%3APF01913","Formylmethanofuran-tetrahydromethanopterin formyltransferase"],["Pfam%3APF22616","HMD N-terminal domain"],["Pfam%3APF04038","Dihydroneopterin aldolase"],["Pfam%3APF07318","Protein of unknown function (DUF1464)"]],"b":[["NCBITaxon%3A2320","Methanopyrus kandleri"],["NCBITaxon%3A190192","Methanopyrus kandleri AV19"]]},{"id":"NCBITaxon:190650","l":"Caulobacter vibrioides (strain ATCC 19089 / CIP 103742 / CB 15)","na":10,"nb":2,"a":[["IDPO%3A0000060","self-assembly"],["Pfam%3APF27198","FlaEY third domain"],["Pfam%3APF22367","Flagellar hook protein FlgE, third domain"],["Pfam%3APF03799","Cell division protein FtsQ/DivIB, C-terminal"],["Pfam%3APF27294","HfaA"],["Pfam%3APF27277","Holdfast attachment protein D"]],"b":[["NCBITaxon%3A155892","Caulobacter vibrioides"],["NCBITaxon%3A190650","Caulobacter vibrioides CB15"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":10,"nb":2,"a":[["Pfam%3APF27445","Adaptation to cold protein A"],["Pfam%3APF27450","AtcB C-terminal domain"],["Pfam%3APF27486","AtcB N-terminal domain"],["Pfam%3APF02464","CinA C-terminal domain"],["Pfam%3APF13657","HipA N-terminal domain"],["Pfam%3APF01934","Ribonuclease HepT-like"]],"b":[["NCBITaxon%3A70863","Shewanella oneidensis"],["NCBITaxon%3A211586","Shewanella oneidensis MR-1"]]},{"id":"NCBITaxon:224911","l":"Bradyrhizobium diazoefficiens USDA 110","na":10,"nb":2,"a":[["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["Pfam%3APF14715","N-terminal domain of cytochrome oxidase-cbb3, FixP"],["Pfam%3APF03886","ABC-type transport auxiliary lipoprotein component"],["Pfam%3APF10649","Protein of unknown function (DUF2478)"],["Pfam%3APF01924","Hydrogenase formation hypA family"],["PROSITE%3APS00882","Nickel-dependent hydrogenases b-type cytochrome subunit signature 1"]],"b":[["NCBITaxon%3A1355477","Bradyrhizobium diazoefficiens"],["NCBITaxon%3A224911","Bradyrhizobium diazoefficiens USDA 110"]]},{"id":"NCBITaxon:266264","l":"Cupriavidus metallidurans CH34","na":10,"nb":2,"a":[["Pfam%3APF25973","CzcB-like, barrel-sandwich hybrid domain"],["Pfam%3APF09828","ChrB, C-terminal domain"],["Pfam%3APF20229","Protein ChrB, N-terminal"],["Pfam%3APF01923","Cobalamin adenosyltransferase"],["Pfam%3APF25975","CzcB C-terminal circularly permuted SH3-like domain"],["Pfam%3APF25971","CzcB, N-terminal domain"]],"b":[["NCBITaxon%3A119219","Cupriavidus metallidurans"],["NCBITaxon%3A266264","Cupriavidus metallidurans CH34"]]},{"id":"NCBITaxon:279010","l":"Bacillus licheniformis (strain ATCC 14580 / DSM 13 / JCM 2505 / CCUG 7422 / NBRC 12200 / NCIMB 9375 / NCTC 10341 / NRRL NRS-1264 / Gibson 46)","na":10,"nb":2,"a":[["Pfam%3APF02863","Arginine repressor, C-terminal domain"],["Pfam%3APF01316","Arginine repressor, DNA binding domain"],["Pfam%3APF16715","Cyclodipeptide synthase"],["Pfam%3APF27491","GerT N-terminal domain"],["Pfam%3APF07745","Glycosyl hydrolase family 53"],["Pfam%3APF21996","Histidyl-tRNA synthetase HisZ, C-terminal domain"]],"b":[["NCBITaxon%3A1402","Bacillus licheniformis"],["NCBITaxon%3A279010","Bacillus licheniformis DSM 13 = ATCC 14580"]]},{"id":"NCBITaxon:40214","l":"Acinetobacter johnsonii","na":2,"nb":10,"a":[["Pfam%3APF12973","ChrR Cupin-like domain"],["Pfam%3APF13807","G-rich domain on putative tyrosine kinase"]],"b":[["NCBITaxon%3A40214","Acinetobacter johnsonii"],["NCBITaxon%3A1255605","Acinetobacter johnsonii 3M05"],["NCBITaxon%3A1217662","Acinetobacter johnsonii ANC 3681"],["NCBITaxon%3A1217663","Acinetobacter johnsonii CIP 64.6"],["NCBITaxon%3A1160709","Acinetobacter johnsonii L18"],["NCBITaxon%3A701047","Acinetobacter johnsonii SE1"]]},{"id":"NCBITaxon:920","l":"Acidithiobacillus ferrooxidans","na":2,"nb":10,"a":[["Pfam%3APF20538","Family of unknown function (DUF6753)"],["PROSITE%3APS01007","Transposases, Mutator family, signature"]],"b":[["NCBITaxon%3A163359","Acidiferrobacter thiooxydans"],["NCBITaxon%3A1232575","Acidithiobacillus ferridurans"],["NCBITaxon%3A920","Acidithiobacillus ferrooxidans"],["NCBITaxon%3A243159","Acidithiobacillus ferrooxidans ATCC 23270"],["NCBITaxon%3A380394","Acidithiobacillus ferrooxidans ATCC 53993"],["NCBITaxon%3A1433292","Acidithiobacillus ferrooxidans BY-3"]]},{"id":"NCBITaxon:1238","l":"Piscirickettsia salmonis","na":2,"nb":9,"a":[["TED%3AAF-A0A0K2DZD9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0K2DZD9-F1-model_v4_TED01"],["TED%3AAF-A0A1L6TBT4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6TBT4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1238","Piscirickettsia salmonis"],["NCBITaxon%3A1269812","Piscirickettsia salmonis Al10015"],["NCBITaxon%3A1398558","Piscirickettsia salmonis AUSTRAL-005"],["NCBITaxon%3A1441380","Piscirickettsia salmonis CGA/3731"],["NCBITaxon%3A1435375","Piscirickettsia salmonis EM-90"],["NCBITaxon%3A1435376","Piscirickettsia salmonis ES-3"]]},{"id":"NCBITaxon:158878","l":"Staphylococcus aureus (strain Mu50 / ATCC 700699)","na":9,"nb":2,"a":[["Pfam%3APF26317","Histidine racemase CntK N-terminal domain"],["Pfam%3APF13610","DDE domain"],["Pfam%3APF12199","Extracellular fibrinogen binding protein C terminal"],["Pfam%3APF26323","Staphylococcus aureus type VII secretion system substrate EsxC"],["Pfam%3APF19776","Family of unknown function (DUF6262)"],["Pfam%3APF27790","Poly-beta-1,6-N-acetyl-D-glucosamine synthesis protein IcaD"]],"b":[["NCBITaxon%3A1280","Staphylococcus aureus"],["NCBITaxon%3A158878","Staphylococcus aureus subsp. aureus Mu50"]]},{"id":"NCBITaxon:188937","l":"Methanosarcina acetivorans (strain ATCC 35395 / DSM 2834 / JCM 12185 / C2A)","na":9,"nb":2,"a":[["Pfam%3APF01903","CbiX"],["Pfam%3APF27274","Coenzyme F430 synthetase CfbE, C-terminal domain"],["Pfam%3APF04060","Putative Fe-S cluster"],["Pfam%3APF13528","Glycosyl transferase family 1"],["Pfam%3APF01837","Homocysteine biosynthesis enzyme, sulfur-incorporation"],["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"]],"b":[["NCBITaxon%3A2214","Methanosarcina acetivorans"],["NCBITaxon%3A188937","Methanosarcina acetivorans C2A"]]},{"id":"NCBITaxon:1904441","l":"Paracoccaceae bacterium","na":9,"nb":2,"a":[["TED%3AAF-A0A2E3PFF7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E3PFF7-F1-model_v4_TED02"],["TED%3AAF-A0A357LNH5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A357LNH5-F1-model_v4_TED01"],["TED%3AAF-A0A3D4DSL4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D4DSL4-F1-model_v4_TED01"],["TED%3AAF-A0A6L8C0Y8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L8C0Y8-F1-model_v4_TED01"],["TED%3AAF-A0A7Y2J0I6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y2J0I6-F1-model_v4_TED01"],["TED%3AAF-A0A2E0BJC7-F1-model_v4_TED02","TED novel fold AF-A0A2E0BJC7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2301217","Marinibacterium anthonyi"],["NCBITaxon%3A1904441","Paracoccaceae bacterium"]]},{"id":"NCBITaxon:190485","l":"Xanthomonas campestris pv. campestris (strain ATCC 33913 / DSM 3586 / NCPPB 528 / LMG 568 / P 25)","na":9,"nb":2,"a":[["Pfam%3APF28546","TonB transmembrane helix"],["Pfam%3APF00325","Bacterial regulatory proteins, crp family"],["Pfam%3APF06165","Glycosyl hydrolase 94, supersandwich domain"],["Pfam%3APF12019","Type II transport protein GspH"],["Pfam%3APF22059","Glucuronosyltransferase GumK, N-terminal domain"],["Pfam%3APF14307","Glycosyltransferase WbsX"]],"b":[["NCBITaxon%3A339","Xanthomonas campestris"],["NCBITaxon%3A190485","Xanthomonas campestris pv. campestris str. ATCC 33913"]]},{"id":"NCBITaxon:226185","l":"Enterococcus faecalis (strain ATCC 700802 / V583)","na":9,"nb":2,"a":[["Pfam%3APF13523","Acetyltransferase (GNAT) domain"],["Pfam%3APF17255","EbsA-like protein"],["Pfam%3APF22647","Deacetylase EF_0837-like composite domain"],["Pfam%3APF08858","IDEAL domain"],["Pfam%3APF02655","ATP-grasp domain"],["Pfam%3APF17400","Family of unknown function (DUF5406)"]],"b":[["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A226185","Enterococcus faecalis V583"]]},{"id":"NCBITaxon:29430","l":"Acinetobacter haemolyticus","na":2,"nb":9,"a":[["TED%3AAF-A0A845PGH5-F1-model_v4_TED01","TED novel fold AF-A0A845PGH5-F1-model_v4_TED01"],["TED%3AAF-A0A857IU13-F1-model_v4_TED06","TED novel fold AF-A0A857IU13-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A29430","Acinetobacter haemolyticus"],["NCBITaxon%3A707232","Acinetobacter haemolyticus ATCC 19194"],["NCBITaxon%3A1217659","Acinetobacter haemolyticus CIP 64.3 = MTCC 9819"],["NCBITaxon%3A1217986","Acinetobacter haemolyticus NIPH 261"],["NCBITaxon%3A1221297","Acinetobacter haemolyticus TG19599"],["NCBITaxon%3A1221298","Acinetobacter haemolyticus TG19602"]]},{"id":"NCBITaxon:37919","l":"Rhodococcus opacus","na":2,"nb":9,"a":[["Pfam%3APF11794","4-hydroxyphenylacetate 3-hydroxylase N terminal"],["Pfam%3APF03241","4-hydroxyphenylacetate 3-hydroxylase C terminal"]],"b":[["NCBITaxon%3A1833","Rhodococcus erythropolis"],["NCBITaxon%3A37919","Rhodococcus opacus"],["NCBITaxon%3A632772","Rhodococcus opacus B4"],["NCBITaxon%3A1129896","Rhodococcus opacus M213"],["NCBITaxon%3A1219021","Rhodococcus opacus NBRC 100626"],["NCBITaxon%3A543736","Rhodococcus opacus PD630"]]},{"id":"NCBITaxon:38323","l":"Bartonella henselae","na":2,"nb":9,"a":[["Pfam%3APF05662","Coiled stalk of trimeric autotransporter adhesin"],["Pfam%3APF05658","YadA head domain repeat (2 copies)"]],"b":[["NCBITaxon%3A38323","Bartonella henselae"],["NCBITaxon%3A1402979","Bartonella henselae JK 41"],["NCBITaxon%3A1402980","Bartonella henselae JK 42"],["NCBITaxon%3A1402981","Bartonella henselae JK 50"],["NCBITaxon%3A1402982","Bartonella henselae JK 51"],["NCBITaxon%3A1134508","Bartonella henselae JK 53"]]},{"id":"NCBITaxon:39152","l":"Methanococcus maripaludis","na":2,"nb":9,"a":[["Pfam%3APF02571","Precorrin-6x reductase CbiJ/CobK"],["TED%3AAF-A0A7J9PSA9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J9PSA9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39152","Methanococcus maripaludis"],["NCBITaxon%3A402880","Methanococcus maripaludis C5"],["NCBITaxon%3A444158","Methanococcus maripaludis C6"],["NCBITaxon%3A426368","Methanococcus maripaludis C7"],["NCBITaxon%3A637914","Methanococcus maripaludis KA1"],["NCBITaxon%3A637915","Methanococcus maripaludis OS7"]]},{"id":"NCBITaxon:411476","l":"Bacteroides ovatus (strain ATCC 8483 / DSM 1896 / JCM 5824 / BCRC 10623 / CCUG 4943 / NCTC 11153)","na":9,"nb":2,"a":[["Pfam%3APF13004","Putative binding domain, N-terminal"],["Pfam%3APF02927","Cellulase N-terminal ig-like domain"],["Pfam%3APF16355","Domain of unknown function (DUF4982)"],["Pfam%3APF17851","Beta xylosidase C-terminal Concanavalin A-like domain"],["Pfam%3APF18565","Glycoside hydrolase family 2 C-terminal domain 5"],["Pfam%3APF17137","Domain of unknown function (DUF5110)"]],"b":[["NCBITaxon%3A28116","Bacteroides ovatus"],["NCBITaxon%3A411476","Bacteroides ovatus ATCC 8483"]]},{"id":"NCBITaxon:79929","l":"Methanothermobacter marburgensis (strain ATCC BAA-927 / DSM 2133 / JCM 14651 / NBRC 100331 / OCM 82 / Marburg)","na":9,"nb":2,"a":[["Pfam%3APF23902","PRS2 AAA+ lid C-terminal domain"],["Pfam%3APF02754","Cysteine-rich domain"],["Pfam%3APF12798","4Fe-4S binding domain"],["Pfam%3APF13183","4Fe-4S dicluster domain"],["Pfam%3APF22616","HMD N-terminal domain"],["Pfam%3APF03201","H2-forming N5,N10-methylene-tetrahydromethanopterin dehydrogenase"]],"b":[["NCBITaxon%3A145263","Methanothermobacter marburgensis"],["NCBITaxon%3A79929","Methanothermobacter marburgensis str. Marburg"]]},{"id":"NCBITaxon:1655","l":"Actinomyces naeslundii","na":2,"nb":8,"a":[["Pfam%3APF16555","Gram-positive pilin subunit D1, N-terminal domain"],["TED%3AAF-A0A2Z5QNH6-F1-model_v4_TED02","TED novel fold AF-A0A2Z5QNH6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A3050225","Actinomyces acetigenes"],["NCBITaxon%3A544581","Actinomyces johnsonii"],["NCBITaxon%3A1655","Actinomyces naeslundii"],["NCBITaxon%3A240017","Actinomyces naeslundii MG1"],["NCBITaxon%3A1115803","Actinomyces naeslundii str. Howell 279"],["NCBITaxon%3A544580","Actinomyces oris"]]},{"id":"NCBITaxon:1909294","l":"Hyphomicrobiales bacterium","na":8,"nb":2,"a":[["TED%3AAF-A0A2D8YNS6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D8YNS6-F1-model_v4_TED01"],["TED%3AAF-A0A2N6AYA1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N6AYA1-F1-model_v4_TED01"],["TED%3AAF-A0A3C1NDV6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C1NDV6-F1-model_v4_TED01"],["TED%3AAF-A0A431NIF5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A431NIF5-F1-model_v4_TED01"],["TED%3AAF-A0A4Q3HF49-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q3HF49-F1-model_v4_TED01"],["TED%3AAF-A0A2W6AY92-F1-model_v4_TED01","TED novel fold AF-A0A2W6AY92-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1909294","Hyphomicrobiales bacterium"],["NCBITaxon%3A3349849","Hyphomicrobiales bacterium G4i25"]]},{"id":"NCBITaxon:227882","l":"","na":8,"nb":2,"a":[["Pfam%3APF17390","Bacterial alpha-L-rhamnosidase C-terminal domain"],["Pfam%3APF08531","Alpha-L-rhamnosidase N-terminal domain"],["Pfam%3APF05592","Bacterial alpha-L-rhamnosidase concanavalin-like domain"],["Pfam%3APF26366","Domain of unknown function (DUF8094)"],["Pfam%3APF25788","Rha78A-like, N-terminal immunoglobulin domain"],["Pfam%3APF06781","Cell division protein CrgA"]],"b":[["NCBITaxon%3A33903","Streptomyces avermitilis"],["NCBITaxon%3A227882","Streptomyces avermitilis MA-4680 = NBRC 14893"]]},{"id":"NCBITaxon:272557","l":"Aeropyrum pernix (strain ATCC 700893 / DSM 11879 / JCM 9820 / NBRC 100138 / K1)","na":8,"nb":2,"a":[["Pfam%3APF28403","Aconitase X second domain"],["Pfam%3APF28406","Aconitase X third domain"],["Pfam%3APF04412","Aconitase X first domain"],["Pfam%3APF09171","N-glycosylase/DNA lyase"],["Pfam%3APF10432","Bacterial phospho-glucose isomerase C-terminal SIS domain"],["Pfam%3APF09895","RecB-family nuclease (DUF2122)"]],"b":[["NCBITaxon%3A56636","Aeropyrum pernix"],["NCBITaxon%3A272557","Aeropyrum pernix K1"]]},{"id":"NCBITaxon:481805","l":"Escherichia coli (strain ATCC 8739 / DSM 1576 / NBRC 3972 / NCIMB 8545 / WDCM 00012 / Crooks)","na":8,"nb":2,"a":[["Pfam%3APF06392","Acid shock protein"],["Pfam%3APF10807","Domain of unknown function (DUF2541)"],["Pfam%3APF26739","Domain of unknown function (DUF8245)"],["Pfam%3APF18649","EcpB C-terminal domain"],["Pfam%3APF25878","pHBA AAEA subunit, alpha-helical hairpin domain"],["Pfam%3APF02685","Glucokinase"]],"b":[["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A481805","Escherichia coli ATCC 8739"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":2,"nb":8,"a":[["PROSITE%3APS00820","Glucoamylase active site region signature"],["TED%3AAF-A0A7I9G6Y3-F1-model_v4_TED02","TED novel fold AF-A0A7I9G6Y3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A4932","Saccharomyces cerevisiae"],["NCBITaxon%3A1266529","Saccharomyces cerevisiae BY4743"],["NCBITaxon%3A1218710","Saccharomyces cerevisiae CBS 1585"],["NCBITaxon%3A764102","Saccharomyces cerevisiae FostersB"],["NCBITaxon%3A764101","Saccharomyces cerevisiae FostersO"],["NCBITaxon%3A1220494","Saccharomyces cerevisiae PE-2"]]},{"id":"NCBITaxon:572477","l":"Allochromatium vinosum (strain ATCC 17899 / DSM 180 / NBRC 103801 / NCIMB 10441 / D)","na":8,"nb":2,"a":[["Pfam%3APF01322","Cytochrome C'"],["Pfam%3APF02635","DsrE/DsrF-like family"],["Pfam%3APF21706","Sulfide dehydrogenase [flavocytochrome c] flavoprotein chain, central"],["Pfam%3APF09242","Flavocytochrome c sulphide dehydrogenase, flavin-binding"],["Pfam%3APF01355","High potential iron-sulfur protein"],["Pfam%3APF13686","DsrE/DsrF/DrsH-like family"]],"b":[["NCBITaxon%3A1049","Allochromatium vinosum"],["NCBITaxon%3A572477","Allochromatium vinosum DSM 180"]]},{"id":"NCBITaxon:154046","l":"Hungatella hathewayi","na":2,"nb":7,"a":[["TED%3AAF-A0A3E3DRT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3E3DRT8-F1-model_v4_TED01"],["TED%3AAF-A0A174BLS4-F1-model_v4_TED01","TED novel fold AF-A0A174BLS4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A154046","Hungatella hathewayi"],["NCBITaxon%3A999412","Hungatella hathewayi 12489931"],["NCBITaxon%3A1263067","Hungatella hathewayi CAG:224"],["NCBITaxon%3A566550","Hungatella hathewayi DSM 13479"],["NCBITaxon%3A1232440","Hungatella hathewayi VE202-04"],["NCBITaxon%3A1232451","Hungatella hathewayi VE202-11"]]},{"id":"NCBITaxon:1871047","l":"Chryseobacterium sp.","na":7,"nb":2,"a":[["TED%3AAF-A0A2W6XQ62-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W6XQ62-F1-model_v4_TED01"],["TED%3AAF-A0A2W6YLD3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2W6YLD3-F1-model_v4_TED02"],["TED%3AAF-A0A5N7U1L3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5N7U1L3-F1-model_v4_TED01"],["TED%3AAF-A0A3D4JZX5-F1-model_v4_TED04","TED novel fold AF-A0A3D4JZX5-F1-model_v4_TED04"],["TED%3AAF-A0A3N7GZ20-F1-model_v4_TED01","TED novel fold AF-A0A3N7GZ20-F1-model_v4_TED01"],["TED%3AAF-A0A5N7YYR2-F1-model_v4_TED01","TED novel fold AF-A0A5N7YYR2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A651561","Chryseobacterium arthrosphaerae"],["NCBITaxon%3A1871047","Chryseobacterium sp."]]},{"id":"NCBITaxon:262724","l":"Thermus thermophilus (strain ATCC BAA-163 / DSM 7039 / HB27)","na":7,"nb":2,"a":[["Pfam%3APF22474","Argonaute, middle domain"],["Pfam%3APF22472","Argonaute, N-terminal domain"],["Pfam%3APF03449","Transcription elongation factor, N-terminal"],["Pfam%3APF01272","Transcription elongation factor, GreA/GreB, C-term"],["Pfam%3APF09704","CRISPR-associated protein (Cas_Cas5)"],["PROSITE%3APS01224","N-acetyl-gamma-glutamyl-phosphate reductase active site"]],"b":[["NCBITaxon%3A274","Thermus thermophilus"],["NCBITaxon%3A262724","Thermus thermophilus HB27"]]},{"id":"NCBITaxon:273075","l":"Thermoplasma acidophilum (strain ATCC 25905 / DSM 1728 / JCM 9062 / NBRC 15155 / AMRC-C165)","na":7,"nb":2,"a":[["Pfam%3APF17989","Actin like proteins N terminal domain"],["Pfam%3APF10432","Bacterial phospho-glucose isomerase C-terminal SIS domain"],["Pfam%3APF22490","tRNA-splicing endonuclease, linker domain"],["Pfam%3APF22578","Geranylgeranyl reductase catalytic domain"],["Pfam%3APF12831","FAD dependent oxidoreductase"],["Pfam%3APF26550","Tricorn protease second beta propeller domain"]],"b":[["NCBITaxon%3A2303","Thermoplasma acidophilum"],["NCBITaxon%3A273075","Thermoplasma acidophilum DSM 1728"]]},{"id":"NCBITaxon:27334","l":"Penicillium expansum","na":7,"nb":2,"a":[["Pfam%3APF11786","Aft1 HRA domain"],["Pfam%3APF11787","Aft1 HRR domain"],["Pfam%3APF11785","Aft1 osmotic stress response (OSM) domain"],["Pfam%3APF14856","Pathogen effector; putative necrosis-inducing factor"],["PROSITE%3APS00624","GMC oxidoreductases signature 2"],["TED%3AAF-A0A0A2ILJ4-F1-model_v4_TED03","TED novel fold AF-A0A0A2ILJ4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A27334","Penicillium expansum"],["NCBITaxon%3A1208580","Penicillium expansum NRRL 62431"]]},{"id":"NCBITaxon:291644","l":"Bacteroides salyersiae","na":2,"nb":7,"a":[["TED%3AAF-A0A641MFK5-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A641MFK5-F1-model_v4_TED04"],["TED%3AAF-A0A7J4XH39-F1-model_v4_TED02","TED novel fold AF-A0A7J4XH39-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A291644","Bacteroides salyersiae"],["NCBITaxon%3A997887","Bacteroides salyersiae CL02T12C01"],["NCBITaxon%3A1338913","Bacteroides salyersiae TS7.3-1.1"],["NCBITaxon%3A1338914","Bacteroides salyersiae TSDA1.8-1.1"],["NCBITaxon%3A1338915","Bacteroides salyersiae TSDA1.8-1.2"],["NCBITaxon%3A1338916","Bacteroides salyersiae TSDA1.8-1.3"]]},{"id":"NCBITaxon:334771","l":"Ignisphaera aggregans","na":7,"nb":2,"a":[["TED%3AAF-A0A7J2U2H6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J2U2H6-F1-model_v4_TED01"],["TED%3AAF-A0A7J3JN22-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7J3JN22-F1-model_v4_TED02"],["TED%3AAF-A0A7C4D126-F1-model_v4_TED02","TED novel fold AF-A0A7C4D126-F1-model_v4_TED02"],["TED%3AAF-A0A7C4FEF1-F1-model_v4_TED01","TED novel fold AF-A0A7C4FEF1-F1-model_v4_TED01"],["TED%3AAF-A0A7C4JKV5-F1-model_v4_TED02","TED novel fold AF-A0A7C4JKV5-F1-model_v4_TED02"],["TED%3AAF-A0A7J3Z8K0-F1-model_v4_TED01","TED novel fold AF-A0A7J3Z8K0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A334771","Ignisphaera aggregans"],["NCBITaxon%3A583356","Ignisphaera aggregans DSM 17230"]]},{"id":"NCBITaxon:41514","l":"Salmonella arizonae (strain ATCC BAA-731 / CDC346-86 / RSK2980)","na":7,"nb":2,"a":[["Pfam%3APF22102","ElaD/SseL-like C-terminal"],["Pfam%3APF02952","L-fucose isomerase, C-terminal domain"],["Pfam%3APF07881","L-fucose isomerase, first N-terminal domain"],["Pfam%3APF07882","L-fucose isomerase, second N-terminal domain"],["Pfam%3APF25881","YBHG alpha-helical hairpin domain"],["Pfam%3APF10781","Dextransucrase DSRB"]],"b":[["NCBITaxon%3A41514","Salmonella enterica subsp. arizonae serovar 62:z4,z23:-"],["NCBITaxon%3A882884","Salmonella enterica subsp. arizonae serovar 62:z4,z23:- str. RSK2980"]]},{"id":"NCBITaxon:478009","l":"Halobacterium salinarum (strain ATCC 29341 / DSM 671 / R1)","na":7,"nb":2,"a":[["Pfam%3APF01036","Bacteriorhodopsin-like protein"],["Pfam%3APF02895","Signal transducing histidine kinase, homodimeric domain"],["Pfam%3APF04283","Archaeal Chemotaxis signal transduction system protein F"],["Pfam%3APF07311","Dodecin"],["Pfam%3APF03814","Potassium-transporting ATPase A subunit"],["Pfam%3APF18204","PGF-CTERM motif"]],"b":[["NCBITaxon%3A2242","Halobacterium salinarum"],["NCBITaxon%3A478009","Halobacterium salinarum R1"]]},{"id":"NCBITaxon:49338","l":"Desulfitobacterium hafniense","na":2,"nb":7,"a":[["Pfam%3APF13484","4Fe-4S double cluster binding domain"],["Pfam%3APF10518","TAT (twin-arginine translocation) pathway signal sequence"]],"b":[["NCBITaxon%3A49338","Desulfitobacterium hafniense"],["NCBITaxon%3A272564","Desulfitobacterium hafniense DCB-2"],["NCBITaxon%3A537010","Desulfitobacterium hafniense DP7"],["NCBITaxon%3A1090321","Desulfitobacterium hafniense PCP-1"],["NCBITaxon%3A884048","Desulfitobacterium hafniense TCE1"],["NCBITaxon%3A872024","Desulfitobacterium hafniense TCP-A"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":7,"nb":2,"a":[["Pfam%3APF11766","Agglutinin-like protein, N-terminal domain"],["Pfam%3APF16856","Cell division control protein 4 dimerisation domain"],["Pfam%3APF18325","Fatty acid synthase subunit alpha Acyl carrier domain"],["Pfam%3APF18314","Fatty acid synthase type I helical domain"],["Pfam%3APF17828","N-terminal domain in fatty acid synthase subunit beta"],["Pfam%3APF05388","Carboxypeptidase Y pro-peptide"]],"b":[["NCBITaxon%3A5476","Candida albicans"],["NCBITaxon%3A1182531","Candida albicans 3153A"]]},{"id":"NCBITaxon:555778","l":"","na":7,"nb":2,"a":[["Pfam%3APF08936","Carboxysome Shell Carbonic Anhydrase, C-terminal"],["Pfam%3APF20686","Carboxysome Shell Carbonic Anhydrase, catalytic domain"],["Pfam%3APF20687","Carboxysome Shell Carbonic Anhydrase, N-terminal"],["Pfam%3APF12288","Carboxysome shell peptide mid-region"],["Pfam%3APF10070","Probable inorganic carbon transporter subunit DabA"],["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]],"b":[["NCBITaxon%3A927","Halothiobacillus neapolitanus"],["NCBITaxon%3A555778","Halothiobacillus neapolitanus c2"]]},{"id":"NCBITaxon:5580","l":"Aureobasidium pullulans","na":7,"nb":2,"a":[["TED%3AAF-A0A4S8XR15-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S8XR15-F1-model_v4_TED01"],["TED%3AAF-A0A4S8YVB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S8YVB9-F1-model_v4_TED01"],["TED%3AAF-A0A4S9KUA9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S9KUA9-F1-model_v4_TED01"],["TED%3AAF-A0A4T0BHY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4T0BHY6-F1-model_v4_TED01"],["TED%3AAF-A0A4S9MB45-F1-model_v4_TED01","TED novel fold AF-A0A4S9MB45-F1-model_v4_TED01"],["TED%3AAF-A0A4S9RE93-F1-model_v4_TED01","TED novel fold AF-A0A4S9RE93-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5580","Aureobasidium pullulans"],["NCBITaxon%3A1043002","Aureobasidium pullulans EXF-150"]]},{"id":"NCBITaxon:60552","l":"Burkholderia vietnamiensis","na":2,"nb":7,"a":[["TED%3AAF-A0A1G5M5D3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G5M5D3-F1-model_v4_TED02"],["TED%3AAF-A0A2Z6TW79-F1-model_v4_TED01","TED novel fold AF-A0A2Z6TW79-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A292","Burkholderia cepacia"],["NCBITaxon%3A36773","Burkholderia sp."],["NCBITaxon%3A60552","Burkholderia vietnamiensis"],["NCBITaxon%3A269482","Burkholderia vietnamiensis G4"],["NCBITaxon%3A1449978","Burkholderia vietnamiensis LMG 10929"],["NCBITaxon%3A1254","Pediococcus acidilactici"]]},{"id":"NCBITaxon:768679","l":"Thermoproteus tenax (strain ATCC 35583 / DSM 2078 / JCM 9277 / NBRC 100435 / Kra 1)","na":7,"nb":2,"a":[["Pfam%3APF22662","Csa3 CRISPR-associated Rossmann-like domain"],["Pfam%3APF25212","HVO_A0114"],["Pfam%3APF01867","CRISPR associated protein Cas1"],["Pfam%3APF09703","CRISPR-associated protein (Cas_Csa4)"],["Pfam%3APF09827","CRISPR associated protein Cas2"],["Pfam%3APF06023","CRISPR-associated exonuclease Csa1"]],"b":[["NCBITaxon%3A2271","Thermoproteus tenax"],["NCBITaxon%3A768679","Thermoproteus tenax Kra 1"]]},{"id":"NCBITaxon:124","l":"Blastopirellula marina","na":6,"nb":2,"a":[["TED%3AAF-A0A2S8GNX8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S8GNX8-F1-model_v4_TED01"],["TED%3AAF-A0A2S8F9J3-F1-model_v4_TED04","TED novel fold AF-A0A2S8F9J3-F1-model_v4_TED04"],["TED%3AAF-A0A2S8FMN6-F1-model_v4_TED01","TED novel fold AF-A0A2S8FMN6-F1-model_v4_TED01"],["TED%3AAF-A0A2S8GCT5-F1-model_v4_TED02","TED novel fold AF-A0A2S8GCT5-F1-model_v4_TED02"],["TED%3AAF-A0A2S8GL91-F1-model_v4_TED01","TED novel fold AF-A0A2S8GL91-F1-model_v4_TED01"],["TED%3AAF-A0A2S8GLG3-F1-model_v4_TED01","TED novel fold AF-A0A2S8GLG3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A124","Blastopirellula marina"],["NCBITaxon%3A314230","Blastopirellula marina DSM 3645"]]},{"id":"NCBITaxon:1306","l":"Streptococcus sp.","na":6,"nb":2,"a":[["TED%3AAF-A0A496KVG3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A496KVG3-F1-model_v4_TED02"],["TED%3AAF-A0A496KCG7-F1-model_v4_TED01","TED novel fold AF-A0A496KCG7-F1-model_v4_TED01"],["TED%3AAF-A0A496L3I5-F1-model_v4_TED01","TED novel fold AF-A0A496L3I5-F1-model_v4_TED01"],["TED%3AAF-A0A496LB14-F1-model_v4_TED02","TED novel fold AF-A0A496LB14-F1-model_v4_TED02"],["TED%3AAF-A0A496M1E6-F1-model_v4_TED02","TED novel fold AF-A0A496M1E6-F1-model_v4_TED02"],["TED%3AAF-A0A496M2R1-F1-model_v4_TED06","TED novel fold AF-A0A496M2R1-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1306","Streptococcus sp."]]},{"id":"NCBITaxon:135720","l":"Neisseria meningitidis serogroup C","na":2,"nb":6,"a":[["IDPO%3A0000048","limited proteolysis display site"],["Pfam%3APF04480","Protein of unknown function (DUF559)"]],"b":[["NCBITaxon%3A374833","Neisseria meningitidis 053442"],["NCBITaxon%3A604162","Neisseria meningitidis 8013"],["NCBITaxon%3A272831","Neisseria meningitidis FAM18"],["NCBITaxon%3A768485","Neisseria meningitidis K1207"],["NCBITaxon%3A768484","Neisseria meningitidis S0108"],["NCBITaxon%3A135720","Neisseria meningitidis serogroup C"]]},{"id":"NCBITaxon:1430","l":"Bacillus thuringiensis subsp. israelensis","na":6,"nb":2,"a":[["Pfam%3APF01338","Bacillus thuringiensis toxin"],["Pfam%3APF17997","Insecticidal delta-endotoxin CryIA(c) domain 5"],["Pfam%3APF21463","Cry1Ac, domain VII"],["Pfam%3APF03944","delta endotoxin"],["Pfam%3APF03945","delta endotoxin, N-terminal domain"],["Pfam%3APF00555","delta endotoxin"]],"b":[["NCBITaxon%3A1430","Bacillus thuringiensis serovar israelensis"],["NCBITaxon%3A339854","Bacillus thuringiensis serovar israelensis ATCC 35646"]]},{"id":"NCBITaxon:166486","l":"Roseburia intestinalis","na":2,"nb":6,"a":[["TED%3AAF-A0A3R6HE72-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R6HE72-F1-model_v4_TED01"],["TED%3AAF-A0A6L6XJA4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L6XJA4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A166486","Roseburia intestinalis"],["NCBITaxon%3A1263104","Roseburia intestinalis CAG:13"],["NCBITaxon%3A536231","Roseburia intestinalis L1-82"],["NCBITaxon%3A657315","Roseburia intestinalis M50/1"],["NCBITaxon%3A1339593","Roseburia intestinalis TSDC19.2-1.1"],["NCBITaxon%3A718255","Roseburia intestinalis XB6B4"]]},{"id":"NCBITaxon:194439","l":"Chlorobaculum tepidum TLS","na":6,"nb":2,"a":[["Pfam%3APF02327","Bacteriochlorophyll A protein"],["Pfam%3APF27499","CsmB chlorosome envelope protein"],["Pfam%3APF28537","Probable trigger factor, FKBP-like domain"],["Pfam%3APF02043","Bacteriochlorophyll C binding protein"],["Pfam%3APF11098","Chlorosome envelope protein C"],["Pfam%3APF10643","Photosystem P840 reaction-centre cytochrome c-551"]],"b":[["NCBITaxon%3A1097","Chlorobaculum tepidum"],["NCBITaxon%3A194439","Chlorobaculum tepidum TLS"]]},{"id":"NCBITaxon:246787","l":"Bacteroides cellulosilyticus","na":2,"nb":6,"a":[["TED%3AAF-A0A6H9Q0G2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A6H9Q0G2-F1-model_v4_TED03"],["TED%3AAF-A0A642PT16-F1-model_v4_TED01","TED novel fold AF-A0A642PT16-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A246787","Bacteroides cellulosilyticus"],["NCBITaxon%3A1263038","Bacteroides cellulosilyticus CAG:158"],["NCBITaxon%3A997874","Bacteroides cellulosilyticus CL02T12C19"],["NCBITaxon%3A537012","Bacteroides cellulosilyticus DSM 14838"],["NCBITaxon%3A1357381","Bacteroides cellulosilyticus UC1_FAA_J"],["NCBITaxon%3A1268240","Bacteroides cellulosilyticus WH2"]]},{"id":"NCBITaxon:272569","l":"Haloarcula marismortui (strain ATCC 43049 / DSM 3752 / JCM 8966 / VKM B-1809)","na":6,"nb":2,"a":[["Pfam%3APF06847","Archaeal Peptidase A24 C-terminus Type II"],["Pfam%3APF12840","Helix-turn-helix domain"],["PROSITE%3APS01171","Ribosomal protein L21e signature"],["PROSITE%3APS01144","Ribosomal protein L31e signature"],["PROSITE%3APS00580","Ribosomal protein L32e signature"],["PROSITE%3APS01172","Ribosomal protein L44e signature"]],"b":[["NCBITaxon%3A2238","Haloarcula marismortui"],["NCBITaxon%3A272569","Haloarcula marismortui ATCC 43049"]]},{"id":"NCBITaxon:272630","l":"Methylorubrum extorquens (strain ATCC 14718 / DSM 1338 / JCM 2805 / NCIMB 9133 / AM1)","na":6,"nb":2,"a":[["Pfam%3APF07726","ATPase family associated with various cellular activities (AAA)"],["Pfam%3APF02741","FTR, proximal lobe"],["Pfam%3APF01913","Formylmethanofuran-tetrahydromethanopterin formyltransferase"],["Pfam%3APF10677","Protein of unknown function (DUF2490)"],["Pfam%3APF08714","Formaldehyde-activating enzyme (Fae)"],["PROSITE%3APS00363","Bacterial quinoprotein dehydrogenases signature 1"]],"b":[["NCBITaxon%3A408","Methylorubrum extorquens"],["NCBITaxon%3A272630","Methylorubrum extorquens AM1"]]},{"id":"NCBITaxon:273063","l":"Sulfurisphaera tokodaii (strain DSM 16993 / JCM 10545 / NBRC 100140 / 7)","na":6,"nb":2,"a":[["Pfam%3APF01935","Helicase HerA, central domain"],["Pfam%3APF09378","HAS barrel domain"],["Pfam%3APF05872","Helicase HerA-like C-terminal"],["Pfam%3APF08112","ATP synthase epsilon subunit"],["Pfam%3APF05626","Protein of unknown function (DUF790)"],["Pfam%3APF01950","Fructose-1,6-bisphosphatase"]],"b":[["NCBITaxon%3A111955","Sulfurisphaera tokodaii"],["NCBITaxon%3A273063","Sulfurisphaera tokodaii str. 7"]]},{"id":"NCBITaxon:371601","l":"Bacteroides xylanisolvens","na":2,"nb":6,"a":[["TED%3AAF-A0A1H4FUH8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H4FUH8-F1-model_v4_TED02"],["TED%3AAF-A0A415K7P7-F1-model_v4_TED02","TED novel fold AF-A0A415K7P7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A371601","Bacteroides xylanisolvens"],["NCBITaxon%3A997892","Bacteroides xylanisolvens CL03T12C04"],["NCBITaxon%3A702447","Bacteroides xylanisolvens SD CC 1b"],["NCBITaxon%3A702444","Bacteroides xylanisolvens SD CC 2a"],["NCBITaxon%3A1422842","Bacteroides xylanisolvens VIII-271A"],["NCBITaxon%3A657309","Bacteroides xylanisolvens XB1A"]]},{"id":"NCBITaxon:391625","l":"Plesiocystis pacifica SIR-1","na":6,"nb":2,"a":[["TED%3AAF-A6FXI2-F1-model_v4_TED01","TED highly-symmetric fold AF-A6FXI2-F1-model_v4_TED01"],["TED%3AAF-A6G0J0-F1-model_v4_TED01","TED highly-symmetric fold AF-A6G0J0-F1-model_v4_TED01"],["TED%3AAF-A6G9Q2-F1-model_v4_TED01","TED highly-symmetric fold AF-A6G9Q2-F1-model_v4_TED01"],["TED%3AAF-A6G861-F1-model_v4_TED02","TED novel fold AF-A6G861-F1-model_v4_TED02"],["TED%3AAF-A6GGD7-F1-model_v4_TED01","TED novel fold AF-A6GGD7-F1-model_v4_TED01"],["TED%3AAF-A6GI73-F1-model_v4_TED02","TED novel fold AF-A6GI73-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A191768","Plesiocystis pacifica"],["NCBITaxon%3A391625","Plesiocystis pacifica SIR-1"]]},{"id":"NCBITaxon:407148","l":"Campylobacter jejuni subsp. jejuni serotype O:6 (strain 81116 / NCTC 11828)","na":6,"nb":2,"a":[["Pfam%3APF00700","Bacterial flagellin C-terminal helical region"],["Pfam%3APF02561","Flagellar protein FliS"],["Pfam%3APF02623","FliW protein"],["Pfam%3APF00669","Bacterial flagellin N-terminal helical region"],["Pfam%3APF07196","Flagellin hook IN motif"],["PROSITE%3APS00550","Hemerythrin family signature"]],"b":[["NCBITaxon%3A197","Campylobacter jejuni"],["NCBITaxon%3A407148","Campylobacter jejuni subsp. jejuni 81116"]]},{"id":"NCBITaxon:523849","l":"Thermococcus litoralis (strain ATCC 51850 / DSM 5473 / JCM 8560 / NS-C)","na":6,"nb":2,"a":[["Pfam%3APF09094","Alpha-amylase/4-alpha-glucanotransferase, middle domain"],["Pfam%3APF09095","Alpha-amylase/4-alpha-glucanotransferase, C-terminal"],["Pfam%3APF28476","Glycogen phosphorylase C-terminal domain"],["Pfam%3APF11897","Protein of unknown function (DUF3417)"],["PROSITE%3APS01334","Pyrrolidone-carboxylate peptidase cysteine active site"],["PROSITE%3APS01333","Pyrrolidone-carboxylate peptidase glutamic acid active site"]],"b":[["NCBITaxon%3A2265","Thermococcus litoralis"],["NCBITaxon%3A523849","Thermococcus litoralis DSM 5473"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":6,"nb":2,"a":[["IDPO%3A0000037","molecular recognition display site"],["Pfam%3APF05403","Plasmodium histidine-rich protein (HRPII/III)"],["Pfam%3APF17986","EMP3-KAHRP-like N-terminal domain"],["Pfam%3APF03805","Cytoadherence-linked asexual protein"],["Pfam%3APF06589","Circumsporozoite-related antigen (CRA)"],["TED%3AAF-Q9U431-F1-model_v4_TED01","TED novel fold AF-Q9U431-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5833","Plasmodium falciparum"],["NCBITaxon%3A5843","Plasmodium falciparum NF54"]]},{"id":"NCBITaxon:62977","l":"Acinetobacter baylyi (strain ATCC 33305 / BD413 / ADP1)","na":6,"nb":2,"a":[["Pfam%3APF03594","Benzoate membrane transport protein"],["Pfam%3APF27541","Citrate utilization protein B"],["Pfam%3APF05232","Chlorhexidine efflux transporter"],["PROSITE%3APS00083","Intradiol ring-cleavage dioxygenases signature"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"],["Pfam%3APF11846","Virulence factor membrane-bound polymerase, C-terminal"]],"b":[["NCBITaxon%3A202950","Acinetobacter baylyi"],["NCBITaxon%3A62977","Acinetobacter baylyi ADP1"]]},{"id":"NCBITaxon:873","l":"Desulfocurvibacter africanus","na":2,"nb":6,"a":[["Pfam%3APF02085","Class III cytochrome C family"],["Pfam%3APF10371","Domain of unknown function"]],"b":[["NCBITaxon%3A873","Desulfocurvibacter africanus"],["NCBITaxon%3A1262666","Desulfocurvibacter africanus PCS"],["NCBITaxon%3A1511600","Desulfocurvibacter africanus subsp. africanus"],["NCBITaxon%3A1121435","Desulfocurvibacter africanus subsp. africanus DSM 2603"],["NCBITaxon%3A690850","Desulfocurvibacter africanus subsp. africanus str. Walvis Bay"],["NCBITaxon%3A1511599","Desulfocurvibacter africanus subsp. uniflagellum"]]},{"id":"NCBITaxon:888064","l":"Enterococcus italicus (strain DSM 15952 / CCUG 50447 / LMG 22039 / TP 1.5)","na":6,"nb":2,"a":[["Pfam%3APF22206","CRISPR-associated protein Csm6 6H domain"],["Pfam%3APF22208","Cas_Csm6 CARF domain"],["Pfam%3APF09659","Cas_Csm6 HEPN domain"],["Pfam%3APF18211","Csm1 subunit domain B"],["Pfam%3APF17953","CRISPR Csm4 C-terminal domain"],["Pfam%3APF03750","Csm2 Type III-A"]],"b":[["NCBITaxon%3A246144","Enterococcus italicus"],["NCBITaxon%3A888064","Enterococcus italicus DSM 15952"]]},{"id":"NCBITaxon:1356854","l":"Alicyclobacillus acidoterrestris (strain ATCC 49025 / DSM 3922 / CIP 106132 / NCIMB 13137 / GD3B)","na":5,"nb":2,"a":[["Pfam%3APF22202","CRISPR-associated endonuclease C2c1 first helical domain"],["Pfam%3APF22172","CRISPR-associated endonuclease C2c1 second helical domain"],["Pfam%3APF22077","CRISPR-associated endonuclease C2c1 Nuc-II domain"],["Pfam%3APF22126","C2c1 CRISPR-Cas endonuclease, RuvC-like domain"],["Pfam%3APF22204","CRISPR-associated endonuclease C2c1, wedge domain, second region"]],"b":[["NCBITaxon%3A1450","Alicyclobacillus acidoterrestris"],["NCBITaxon%3A1356854","Alicyclobacillus acidoterrestris ATCC 49025"]]},{"id":"NCBITaxon:155077","l":"Cellvibrio japonicus","na":5,"nb":2,"a":[["Pfam%3APF02013","Cellulose or protein binding domain"],["Pfam%3APF03426","Carbohydrate binding domain (family 15)"],["Pfam%3APF16841","Ca-dependent carbohydrate-binding module xylan-binding"],["Pfam%3APF00331","Glycosyl hydrolase family 10"],["PROSITE%3APS00591","Glycosyl hydrolases family 10 (GH10) active site"]],"b":[["NCBITaxon%3A155077","Cellvibrio japonicus"],["NCBITaxon%3A498211","Cellvibrio japonicus Ueda107"]]},{"id":"NCBITaxon:169435","l":"Anaerotruncus colihominis","na":5,"nb":2,"a":[["TED%3AAF-A0A174TWH9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A174TWH9-F1-model_v4_TED03"],["TED%3AAF-A0A174V310-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A174V310-F1-model_v4_TED01"],["TED%3AAF-A0A174PYH3-F1-model_v4_TED02","TED novel fold AF-A0A174PYH3-F1-model_v4_TED02"],["TED%3AAF-A0A845QNC0-F1-model_v4_TED01","TED novel fold AF-A0A845QNC0-F1-model_v4_TED01"],["TED%3AAF-A0A845SWY0-F1-model_v4_TED01","TED novel fold AF-A0A845SWY0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A169435","Anaerotruncus colihominis"],["NCBITaxon%3A445972","Anaerotruncus colihominis DSM 17241"]]},{"id":"NCBITaxon:1731","l":"Peptoclostridium acidaminophilum","na":5,"nb":2,"a":[["Pfam%3APF07355","Glycine/sarcosine/betaine reductase selenoprotein B (GRDB)"],["Pfam%3APF19364","Family of unknown function (DUF5940)"],["Pfam%3APF02504","Fatty acid synthesis protein"],["Pfam%3APF09338","Glycine/sarcosine/betaine reductase component B subunits"],["Pfam%3APF04723","Glycine reductase complex selenoprotein A"]],"b":[["NCBITaxon%3A1731","Peptoclostridium acidaminophilum"],["NCBITaxon%3A1286171","Peptoclostridium acidaminophilum DSM 3953"]]},{"id":"NCBITaxon:1736314","l":"Leifsonia sp. Leaf264","na":5,"nb":2,"a":[["TED%3AAF-A0A0S9KEE9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S9KEE9-F1-model_v4_TED01"],["TED%3AAF-A0A0S9KEK1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S9KEK1-F1-model_v4_TED01"],["TED%3AAF-A0A0S9KEW3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S9KEW3-F1-model_v4_TED01"],["TED%3AAF-A0A0S9KDG5-F1-model_v4_TED01","TED novel fold AF-A0A0S9KDG5-F1-model_v4_TED01"],["TED%3AAF-A0A0S9KNQ4-F1-model_v4_TED01","TED novel fold AF-A0A0S9KNQ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1870902","Leifsonia sp."],["NCBITaxon%3A1736314","Leifsonia sp. Leaf264"]]},{"id":"NCBITaxon:176279","l":"Staphylococcus epidermidis (strain ATCC 35984 / DSM 28319 / BCRC 17069 / CCUG 31568 / BM 3577 / RP62A)","na":5,"nb":2,"a":[["Pfam%3APF07564","Domain of Unknown Function (DUF1542)"],["Pfam%3APF12008","Type I restriction and modification enzyme - subunit R C terminal"],["Pfam%3APF28494","Glycyl-tRNA synthetase insertion domain 1"],["Pfam%3APF04464","CDP-Glycerol:Poly(glycerophosphate) glycerophosphotransferase"],["Pfam%3APF27790","Poly-beta-1,6-N-acetyl-D-glucosamine synthesis protein IcaD"]],"b":[["NCBITaxon%3A1282","Staphylococcus epidermidis"],["NCBITaxon%3A176279","Staphylococcus epidermidis RP62A"]]},{"id":"NCBITaxon:2026792","l":"Spirochaetales bacterium","na":5,"nb":2,"a":[["TED%3AAF-A0A7X6TBI9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X6TBI9-F1-model_v4_TED01"],["TED%3AAF-A0A7X8XJX1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X8XJX1-F1-model_v4_TED01"],["TED%3AAF-A0A7Y3J1T5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y3J1T5-F1-model_v4_TED01"],["TED%3AAF-A0A7C1T0J9-F1-model_v4_TED03","TED novel fold AF-A0A7C1T0J9-F1-model_v4_TED03"],["TED%3AAF-A0A7V5DXE1-F1-model_v4_TED01","TED novel fold AF-A0A7V5DXE1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026792","Spirochaetales bacterium"],["NCBITaxon%3A2828656","Thermospira aquatica"]]},{"id":"NCBITaxon:2718","l":"Cardiobacterium hominis","na":2,"nb":5,"a":[["TED%3AAF-A0A1C3H4F2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C3H4F2-F1-model_v4_TED01"],["TED%3AAF-A0A1C3H5Q4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C3H5Q4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A35814","Bordetella holmesii"],["NCBITaxon%3A1247649","Bordetella holmesii ATCC 51541"],["NCBITaxon%3A2718","Cardiobacterium hominis"],["NCBITaxon%3A638300","Cardiobacterium hominis ATCC 15826"],["NCBITaxon%3A194702","Cardiobacterium valvarum"]]},{"id":"NCBITaxon:272558","l":"Halalkalibacterium halodurans (strain ATCC BAA-125 / DSM 18197 / FERM 7344 / JCM 9153 / C-125)","na":5,"nb":2,"a":[["Pfam%3APF22184","Carbohydrate binding module family 56"],["Pfam%3APF22769","dCTP deaminase-like"],["Pfam%3APF18438","Glycosyl hydrolases family 38 C-terminal domain 1"],["Pfam%3APF09827","CRISPR associated protein Cas2"],["Pfam%3APF01270","Glycosyl hydrolases family 8"]],"b":[["NCBITaxon%3A86665","Halalkalibacterium halodurans"],["NCBITaxon%3A272558","Halalkalibacterium halodurans C-125"]]},{"id":"NCBITaxon:2751","l":"Carnobacterium maltaromaticum","na":2,"nb":5,"a":[["Pfam%3APF09221","Bacteriocin class IId cyclical uberolysin-like"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"]],"b":[["NCBITaxon%3A2751","Carnobacterium maltaromaticum"],["NCBITaxon%3A1255596","Carnobacterium maltaromaticum 38b"],["NCBITaxon%3A1087479","Carnobacterium maltaromaticum ATCC 35586"],["NCBITaxon%3A1449341","Carnobacterium maltaromaticum DSM 20342"],["NCBITaxon%3A1234679","Carnobacterium maltaromaticum LMA28"]]},{"id":"NCBITaxon:288705","l":"Renibacterium salmoninarum (strain ATCC 33209 / DSM 20767 / JCM 11484 / NBRC 15589 / NCIMB 2235)","na":5,"nb":2,"a":[["Pfam%3APF18080","Galactose mutarotase-like fold domain"],["Pfam%3APF17974","Galactose-binding domain-like"],["Pfam%3APF21466","Endo-alpha-N-acetylgalactosaminidase, domain 5"],["Pfam%3APF17451","Glycosyl hydrolase 101 beta sandwich domain"],["Pfam%3APF12905","Endo-alpha-N-acetylgalactosaminidase"]],"b":[["NCBITaxon%3A1646","Renibacterium salmoninarum"],["NCBITaxon%3A288705","Renibacterium salmoninarum ATCC 33209"]]},{"id":"NCBITaxon:3039","l":"Euglena gracilis","na":5,"nb":2,"a":[["Pfam%3APF01333","Apocytochrome F, C-terminal"],["Pfam%3APF16639","Apocytochrome F, N-terminal"],["Pfam%3APF04940","Sensors of blue-light using FAD"],["Pfam%3APF10371","Domain of unknown function"],["PROSITE%3APS00938","Initiation factor 3 signature"]],"b":[["NCBITaxon%3A3039","Euglena gracilis"],["NCBITaxon%3A158060","Euglena gracilis var. bacillaris"]]},{"id":"NCBITaxon:317025","l":"Hydrogenovibrio crunogenus (strain DSM 25203 / XCL-2)","na":5,"nb":2,"a":[["Pfam%3APF08936","Carboxysome Shell Carbonic Anhydrase, C-terminal"],["Pfam%3APF20686","Carboxysome Shell Carbonic Anhydrase, catalytic domain"],["Pfam%3APF20687","Carboxysome Shell Carbonic Anhydrase, N-terminal"],["Pfam%3APF12288","Carboxysome shell peptide mid-region"],["Pfam%3APF10070","Probable inorganic carbon transporter subunit DabA"]],"b":[["NCBITaxon%3A39765","Hydrogenovibrio crunogenus"],["NCBITaxon%3A317025","Hydrogenovibrio crunogenus XCL-2"]]},{"id":"NCBITaxon:318","l":"Pseudomonas savastanoi pv. glycinea","na":2,"nb":5,"a":[["Pfam%3APF05394","Avirulence protein"],["TED%3AAF-A0A3M5VJX5-F1-model_v4_TED01","TED novel fold AF-A0A3M5VJX5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29438","Pseudomonas savastanoi"],["NCBITaxon%3A318","Pseudomonas savastanoi pv. glycinea"],["NCBITaxon%3A875329","Pseudomonas savastanoi pv. glycinea str. B076"],["NCBITaxon%3A875330","Pseudomonas savastanoi pv. glycinea str. race 4"],["NCBITaxon%3A317","Pseudomonas syringae"]]},{"id":"NCBITaxon:324602","l":"Chloroflexus aurantiacus (strain ATCC 29366 / DSM 635 / J-10-fl)","na":5,"nb":2,"a":[["Pfam%3APF00127","Copper binding proteins, plastocyanin/azurin family"],["Pfam%3APF02276","Photosynthetic reaction centre cytochrome C subunit"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["PROSITE%3APS00196","Type-1 copper (blue) proteins signature"],["PROSITE%3APS00648","Bacterial ribonuclease P protein component signature"]],"b":[["NCBITaxon%3A1108","Chloroflexus aurantiacus"],["NCBITaxon%3A324602","Chloroflexus aurantiacus J-10-fl"]]},{"id":"NCBITaxon:349747","l":"Yersinia pseudotuberculosis serotype O:1b (strain IP 31758)","na":5,"nb":2,"a":[["Pfam%3APF09012","FeoC like transcriptional regulator"],["Pfam%3APF13413","Helix-turn-helix domain"],["Pfam%3APF07429","4-alpha-L-fucosyltransferase glycosyl transferase group 56"],["Pfam%3APF24996","N-acetylneuraminate epimerase"],["Pfam%3APF17874","MalT-like TPR region"]],"b":[["NCBITaxon%3A633","Yersinia pseudotuberculosis"],["NCBITaxon%3A349747","Yersinia pseudotuberculosis IP 31758"]]},{"id":"NCBITaxon:38313","l":"Shewanella algae","na":2,"nb":5,"a":[["TED%3AAF-A0A1S2T8W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S2T8W3-F1-model_v4_TED01"],["TED%3AAF-A0A8A5EFG1-F1-model_v4_TED02","TED novel fold AF-A0A8A5EFG1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A38313","Shewanella algae"],["NCBITaxon%3A1331670","Shewanella algae ACDC"],["NCBITaxon%3A1236541","Shewanella algae JCM 14758"],["NCBITaxon%3A1236544","Shewanella algae JCM 21037 = NBRC 103173"],["NCBITaxon%3A24","Shewanella putrefaciens"]]},{"id":"NCBITaxon:410359","l":"Pyrobaculum calidifontis (strain DSM 21063 / JCM 11548 / VA1)","na":5,"nb":2,"a":[["Pfam%3APF18653","Arcadin 1"],["Pfam%3APF01930","Domain of unknown function DUF83"],["PROSITE%3APS00895","3-hydroxyisobutyrate dehydrogenase signature"],["TED%3AAF-A3MU28-F1-model_v4_TED02","TED highly-symmetric fold AF-A3MU28-F1-model_v4_TED02"],["TED%3AAF-A3MXY3-F1-model_v4_TED01","TED highly-symmetric fold AF-A3MXY3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A181486","Pyrobaculum calidifontis"],["NCBITaxon%3A410359","Pyrobaculum calidifontis JCM 11548"]]},{"id":"NCBITaxon:436","l":"Novacetimonas hansenii","na":2,"nb":5,"a":[["Pfam%3APF03170","Cellulose synthase BcsB, first CBM domain"],["Pfam%3APF17040","Cellulose-complementing protein A"]],"b":[["NCBITaxon%3A28448","Komagataeibacter xylinus"],["NCBITaxon%3A436","Novacetimonas hansenii"],["NCBITaxon%3A714995","Novacetimonas hansenii ATCC 23769"],["NCBITaxon%3A1231352","Novacetimonas hansenii JCM 7643"],["NCBITaxon%3A1307933","Novacetimonas hansenii NRIC 0243"]]},{"id":"NCBITaxon:43658","l":"Pseudoalteromonas rubra","na":5,"nb":2,"a":[["proteintraitsmech%3AELIFE109154_Orn_monoox","Metallophore-associated ornithine N5-monooxygenase family"],["TED%3AAF-A0A0F4QZE1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0F4QZE1-F1-model_v4_TED02"],["TED%3AAF-A0A0U3GWJ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0U3GWJ2-F1-model_v4_TED01"],["TED%3AAF-A0A0F4QSG0-F1-model_v4_TED02","TED novel fold AF-A0A0F4QSG0-F1-model_v4_TED02"],["TED%3AAF-A0A0L0EPH9-F1-model_v4_TED03","TED novel fold AF-A0A0L0EPH9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A43658","Pseudoalteromonas rubra"],["NCBITaxon%3A1117318","Pseudoalteromonas rubra DSM 6842"]]},{"id":"NCBITaxon:439481","l":"Aciduliprofundum boonei (strain DSM 19572 / T469)","na":5,"nb":2,"a":[["Pfam%3APF12671","Putative amidase domain"],["PROSITE%3APS00953","Glycosyl hydrolases family 25 active site signature"],["TED%3AAF-D3TBP7-F1-model_v4_TED01","TED highly-symmetric fold AF-D3TBP7-F1-model_v4_TED01"],["TED%3AAF-B5IH98-F1-model_v4_TED01","TED novel fold AF-B5IH98-F1-model_v4_TED01"],["TED%3AAF-B5IHB9-F1-model_v4_TED01","TED novel fold AF-B5IHB9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A439481","Aciduliprofundum boonei T469"],["NCBITaxon%3A379547","Candidatus Aciduliprofundum boonei"]]},{"id":"NCBITaxon:525146","l":"Desulfovibrio desulfuricans (strain ATCC 27774 / DSM 6949 / MB)","na":5,"nb":2,"a":[["Pfam%3APF06397","Desulfoferrodoxin, N-terminal domain"],["Pfam%3APF09719","Putative redox-active protein (C_GCAxxG_C_C)"],["PROSITE%3APS00202","Rubredoxin signature"],["TED%3AAF-B8J1U9-F1-model_v4_TED02","TED highly-symmetric fold AF-B8J1U9-F1-model_v4_TED02"],["TED%3AAF-B8J2X7-F1-model_v4_TED01","TED novel fold AF-B8J2X7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A876","Desulfovibrio desulfuricans"],["NCBITaxon%3A525146","Desulfovibrio desulfuricans ATCC 27774"]]},{"id":"NCBITaxon:536","l":"Chromobacterium violaceum","na":2,"nb":5,"a":[["TED%3AAF-A0A381EUD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A381EUD6-F1-model_v4_TED01"],["TED%3AAF-A0A447THJ9-F1-model_v4_TED01","TED novel fold AF-A0A447THJ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1382803","Chromobacterium amazonense"],["NCBITaxon%3A686831","Chromobacterium piscinae"],["NCBITaxon%3A3055134","Chromobacterium sp. CCUG 30098"],["NCBITaxon%3A536","Chromobacterium violaceum"],["NCBITaxon%3A243365","Chromobacterium violaceum ATCC 12472"]]},{"id":"NCBITaxon:5478","l":"Nakaseomyces glabratus","na":2,"nb":5,"a":[["TED%3AAF-A0A0W0D8W7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0W0D8W7-F1-model_v4_TED02"],["TED%3AAF-A0A0W0D4K9-F1-model_v4_TED02","TED novel fold AF-A0A0W0D4K9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A5478","Nakaseomyces glabratus"],["NCBITaxon%3A1231519","Nakaseomyces glabratus CAB52-4041"],["NCBITaxon%3A1406948","Nakaseomyces glabratus CCTCC M202019"],["NCBITaxon%3A1398155","Nakaseomyces glabratus M202019"],["NCBITaxon%3A1403403","Nakaseomyces glabratus UOB301"]]},{"id":"NCBITaxon:553611","l":"Photobacterium leiognathi","na":2,"nb":5,"a":[["TED%3AAF-A0A2G4WQ25-F1-model_v4_TED01","TED novel fold AF-A0A2G4WQ25-F1-model_v4_TED01"],["TED%3AAF-A0A2G4WRI7-F1-model_v4_TED01","TED novel fold AF-A0A2G4WRI7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A553611","Photobacterium leiognathi"],["NCBITaxon%3A1248232","Photobacterium leiognathi lrivu.4.1"],["NCBITaxon%3A658","Photobacterium leiognathi subsp. leiognathi"],["NCBITaxon%3A48408","Photobacterium leiognathi subsp. mandapamensis"],["NCBITaxon%3A1001530","Photobacterium leiognathi subsp. mandapamensis svers.1.1."]]},{"id":"NCBITaxon:627192","l":"Sphingobium sp. (strain NBRC 103272 / SYK-6)","na":5,"nb":2,"a":[["Pfam%3APF04909","Amidohydrolase"],["Pfam%3APF22041","Glutathione S-transferase, C-terminal domain"],["Pfam%3APF19301","LigXa C-terminal domain like"],["Pfam%3APF07746","Aromatic-ring-opening dioxygenase LigAB, LigA subunit"],["TED%3AAF-G2IS43-F1-model_v4_TED01","TED highly-symmetric fold AF-G2IS43-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1113922","Sphingobium sp. NBRC 103272"],["NCBITaxon%3A627192","Sphingobium sp. SYK-6"]]},{"id":"NCBITaxon:76114","l":"Aromatoleum aromaticum (strain DSM 19018 / LMG 30748 / EbN1)","na":5,"nb":2,"a":[["Pfam%3APF08882","Acetone carboxylase gamma subunit"],["Pfam%3APF19278","Hydantoinase/oxoprolinase C-terminal domain"],["Pfam%3APF05378","Hydantoinase/oxoprolinase N-terminal region"],["Pfam%3APF01968","Hydantoinase/oxoprolinase"],["Pfam%3APF02538","Hydantoinase B/oxoprolinase"]],"b":[["NCBITaxon%3A551760","Aromatoleum aromaticum"],["NCBITaxon%3A76114","Aromatoleum aromaticum EbN1"]]},{"id":"NCBITaxon:953739","l":"Streptomyces venezuelae ATCC 10712","na":5,"nb":2,"a":[["Pfam%3APF11583","P-aminobenzoate N-oxygenase AurF"],["Pfam%3APF18456","Diiron non-heme beta-hydroxylase N-terminal domain"],["Pfam%3APF07931","Chloramphenicol phosphotransferase-like protein"],["Pfam%3APF02650","WhiA C-terminal HTH domain"],["Pfam%3APF14527","WhiA LAGLIDADG-like domain"]],"b":[["NCBITaxon%3A54571","Streptomyces venezuelae"],["NCBITaxon%3A953739","Streptomyces venezuelae ATCC 10712"]]},{"id":"NCBITaxon:1079","l":"Blastochloris viridis","na":4,"nb":2,"a":[["Pfam%3APF00556","Antenna complex alpha/beta subunit"],["Pfam%3APF02276","Photosynthetic reaction centre cytochrome C subunit"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["TED%3AAF-A0A0H5BDG4-F1-model_v4_TED01","TED novel fold AF-A0A0H5BDG4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A50712","Blastochloris sulfoviridis"],["NCBITaxon%3A1079","Blastochloris viridis"]]},{"id":"NCBITaxon:1098","l":"Prosthecochloris vibrioformis","na":4,"nb":2,"a":[["Pfam%3APF17886","HSP20-like domain found in ArsA"],["Pfam%3APF27499","CsmB chlorosome envelope protein"],["Pfam%3APF11098","Chlorosome envelope protein C"],["Pfam%3APF10643","Photosystem P840 reaction-centre cytochrome c-551"]],"b":[["NCBITaxon%3A1098","Prosthecochloris vibrioformis"],["NCBITaxon%3A115853","Prosthecochloris vibrioformis f. thiosulfatophilum"]]},{"id":"NCBITaxon:1115803","l":"Actinomyces naeslundii (strain ATCC 12104 / DSM 43013 / CCUG 2238 / JCM 8349 / NCTC 10301 / Howell 279)","na":4,"nb":2,"a":[["Pfam%3APF18470","Cas9 alpha-helical lobe domain"],["Pfam%3APF17893","CRISPR-associated endonuclease Cas9 beta-hairpin domain"],["Pfam%3APF18525","Cas9 C-terminal domain"],["Pfam%3APF17894","Topo homolgy domain in CRISPR-associated endonuclease Cas9"]],"b":[["NCBITaxon%3A1655","Actinomyces naeslundii"],["NCBITaxon%3A1115803","Actinomyces naeslundii str. Howell 279"]]},{"id":"NCBITaxon:122587","l":"Neisseria meningitidis serogroup A / serotype 4A (strain DSM 15465 / Z2491)","na":4,"nb":2,"a":[["Pfam%3APF17850","CysA C-terminal regulatory domain"],["Pfam%3APF22443","FbpC-like, regulatory domain"],["Pfam%3APF05159","Capsule polysaccharide biosynthesis protein"],["Pfam%3APF10077","Uncharacterized protein conserved in bacteria (DUF2314)"]],"b":[["NCBITaxon%3A487","Neisseria meningitidis"],["NCBITaxon%3A122587","Neisseria meningitidis Z2491"]]},{"id":"NCBITaxon:1249","l":"Weissella paramesenteroides","na":2,"nb":4,"a":[["Pfam%3APF01874","ATP:dephospho-CoA triphosphoribosyl transferase"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"]],"b":[["NCBITaxon%3A1930076","Leuconostoc sp."],["NCBITaxon%3A46256","Weissella hellenica"],["NCBITaxon%3A1249","Weissella paramesenteroides"],["NCBITaxon%3A585506","Weissella paramesenteroides ATCC 33313"]]},{"id":"NCBITaxon:1343","l":"Streptococcus vestibularis","na":2,"nb":4,"a":[["TED%3AAF-A0A448A888-F1-model_v4_TED01","TED novel fold AF-A0A448A888-F1-model_v4_TED01"],["TED%3AAF-A0A564T3Y1-F1-model_v4_TED01","TED novel fold AF-A0A564T3Y1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1304","Streptococcus salivarius"],["NCBITaxon%3A1343","Streptococcus vestibularis"],["NCBITaxon%3A889206","Streptococcus vestibularis ATCC 49124"],["NCBITaxon%3A904306","Streptococcus vestibularis F0396"]]},{"id":"NCBITaxon:1401","l":"Paenibacillus lautus","na":4,"nb":2,"a":[["Pfam%3APF18448","Carbohydrate binding domain"],["Pfam%3APF12891","Glycoside hydrolase family 44"],["TED%3AAF-A0A328VZ83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A328VZ83-F1-model_v4_TED01"],["TED%3AAF-A0A385TU82-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A385TU82-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1401","Paenibacillus lautus"],["NCBITaxon%3A1349780","Paenibacillus lautus NBRC 15380"]]},{"id":"NCBITaxon:1451","l":"Paenibacillus amylolyticus","na":4,"nb":2,"a":[["Pfam%3APF03211","Pectate lyase"],["TED%3AAF-A0A117I1X0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A117I1X0-F1-model_v4_TED01"],["TED%3AAF-A0A1R1DDF3-F1-model_v4_TED01","TED novel fold AF-A0A1R1DDF3-F1-model_v4_TED01"],["TED%3AAF-A0A4V3B7H8-F1-model_v4_TED01","TED novel fold AF-A0A4V3B7H8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1451","Paenibacillus amylolyticus"],["NCBITaxon%3A59846","Paenibacillus chibensis"]]},{"id":"NCBITaxon:164546","l":"Cupriavidus taiwanensis","na":2,"nb":4,"a":[["TED%3AAF-A0A375CFL3-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A375CFL3-F1-model_v4_TED04"],["TED%3AAF-A0A375EJW3-F1-model_v4_TED03","TED novel fold AF-A0A375EJW3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A164546","Cupriavidus taiwanensis"],["NCBITaxon%3A977880","Cupriavidus taiwanensis LMG 19424"],["NCBITaxon%3A1040978","Cupriavidus taiwanensis STM 6018"],["NCBITaxon%3A129578","Oceanimonas baumannii"]]},{"id":"NCBITaxon:183417","l":"Proteus hauseri","na":2,"nb":4,"a":[["Pfam%3APF09225","Restriction endonuclease PvuII"],["PROSITE%3APS00093","N-4 cytosine-specific DNA methylases signature"]],"b":[["NCBITaxon%3A183417","Proteus hauseri"],["NCBITaxon%3A1255589","Proteus hauseri 1M10"],["NCBITaxon%3A1354271","Proteus hauseri ATCC 700826"],["NCBITaxon%3A1312367","Proteus hauseri ZMd44"]]},{"id":"NCBITaxon:187145","l":"Caldithrix abyssi","na":4,"nb":2,"a":[["TED%3AAF-A0A7V4WUZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V4WUZ6-F1-model_v4_TED01"],["TED%3AAF-A0A7V5UE99-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V5UE99-F1-model_v4_TED01"],["TED%3AAF-A0A7V5PPC6-F1-model_v4_TED04","TED novel fold AF-A0A7V5PPC6-F1-model_v4_TED04"],["TED%3AAF-A0A7V5RQL1-F1-model_v4_TED02","TED novel fold AF-A0A7V5RQL1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A187145","Caldithrix abyssi"],["NCBITaxon%3A880073","Caldithrix abyssi DSM 13497"]]},{"id":"NCBITaxon:207559","l":"Oleidesulfovibrio alaskensis (strain ATCC BAA-1058 / DSM 17464 / G20)","na":4,"nb":2,"a":[["Pfam%3APF13353","4Fe-4S single cluster domain"],["Pfam%3APF01228","Glycine radical"],["PROSITE%3APS00850","Glycine radical domain signature"],["PROSITE%3APS01087","Radical activating enzymes signature"]],"b":[["NCBITaxon%3A58180","Oleidesulfovibrio alaskensis"],["NCBITaxon%3A207559","Oleidesulfovibrio alaskensis G20"]]},{"id":"NCBITaxon:2094","l":"Mycoplasmopsis arginini","na":2,"nb":4,"a":[["TED%3AAF-A0A0C6G6F9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0C6G6F9-F1-model_v4_TED01"],["TED%3AAF-A0A449BG36-F1-model_v4_TED02","TED novel fold AF-A0A449BG36-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2094","Mycoplasmopsis arginini"],["NCBITaxon%3A1188236","Mycoplasmopsis arginini 7264"],["NCBITaxon%3A1266999","Mycoplasmopsis arginini ATCC 23838"],["NCBITaxon%3A2899417","Mycoplasmopsis arginini QMP CG1-2758"]]},{"id":"NCBITaxon:2186","l":"Methanothermococcus thermolithotrophicus","na":2,"nb":4,"a":[["Pfam%3APF22616","HMD N-terminal domain"],["Pfam%3APF03201","H2-forming N5,N10-methylene-tetrahydromethanopterin dehydrogenase"]],"b":[["NCBITaxon%3A2186","Methanothermococcus thermolithotrophicus"],["NCBITaxon%3A523845","Methanothermococcus thermolithotrophicus DSM 2095"],["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A316","Stutzerimonas stutzeri"]]},{"id":"NCBITaxon:223926","l":"Vibrio parahaemolyticus serotype O3:K6 (strain RIMD 2210633)","na":4,"nb":2,"a":[["Pfam%3APF05232","Chlorhexidine efflux transporter"],["Pfam%3APF12221","Bacterial membrane protein N terminal"],["PROSITE%3APS01307","Flagellar motor protein motA family signature"],["Pfam%3APF10952","Protein of unknown function (DUF2753)"]],"b":[["NCBITaxon%3A670","Vibrio parahaemolyticus"],["NCBITaxon%3A223926","Vibrio parahaemolyticus RIMD 2210633"]]},{"id":"NCBITaxon:226900","l":"","na":4,"nb":2,"a":[["IDPO%3A0000060","self-assembly"],["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF14436","Bacterial EndoU nuclease"],["Pfam%3APF10803","Spore germination GerPB"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A226900","Bacillus cereus ATCC 14579"]]},{"id":"NCBITaxon:252970","l":"Paraburkholderia phenoliruptrix","na":2,"nb":4,"a":[["TED%3AAF-A0A6J5BF93-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6J5BF93-F1-model_v4_TED01"],["TED%3AAF-A0A6J5BWX8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6J5BWX8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A252970","Paraburkholderia phenoliruptrix"],["NCBITaxon%3A1337996","Paraburkholderia phenoliruptrix AC1100"],["NCBITaxon%3A1229205","Paraburkholderia phenoliruptrix BR3459a"],["NCBITaxon%3A1926495","Paraburkholderia sp."]]},{"id":"NCBITaxon:266265","l":"","na":4,"nb":2,"a":[["Pfam%3APF09290","Prokaryotic acetaldehyde dehydrogenase, dimerisation"],["Pfam%3APF04345","Chorismate lyase"],["Pfam%3APF07836","DmpG-like communication domain"],["Pfam%3APF06139","BphX-like"]],"b":[["NCBITaxon%3A36873","Paraburkholderia xenovorans"],["NCBITaxon%3A266265","Paraburkholderia xenovorans LB400"]]},{"id":"NCBITaxon:269796","l":"Rhodospirillum rubrum (strain ATCC 11170 / ATH 1.1.1 / DSM 467 / LMG 4362 / NCIMB 8255 / S1)","na":4,"nb":2,"a":[["Pfam%3APF24931","ACR9-like, ACT-like domain"],["Pfam%3APF20543","N2-fixation sustaining protein CowN"],["Pfam%3APF22277","EncFtn-like"],["TED%3AAF-Q2RML2-F1-model_v4_TED01","TED highly-symmetric fold AF-Q2RML2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1085","Rhodospirillum rubrum"],["NCBITaxon%3A269796","Rhodospirillum rubrum ATCC 11170"]]},{"id":"NCBITaxon:272563","l":"Clostridioides difficile (strain 630)","na":4,"nb":2,"a":[["Pfam%3APF07737","Anthrax toxin lethal factor, N- and C-terminal domain"],["Pfam%3APF11155","Domain of unknown function (DUF2935)"],["Pfam%3APF06249","Ethanolamine utilisation protein EutQ"],["Pfam%3APF12544","Lysine-2,3-aminomutase"]],"b":[["NCBITaxon%3A1496","Clostridioides difficile"],["NCBITaxon%3A272563","Clostridioides difficile 630"]]},{"id":"NCBITaxon:2748","l":"Carnobacterium divergens","na":2,"nb":4,"a":[["TED%3AAF-A0A7Z8CZ16-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Z8CZ16-F1-model_v4_TED02"],["TED%3AAF-A0A5F0MGI8-F1-model_v4_TED01","TED novel fold AF-A0A5F0MGI8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2748","Carnobacterium divergens"],["NCBITaxon%3A1449336","Carnobacterium divergens DSM 20623"],["NCBITaxon%3A2751","Carnobacterium maltaromaticum"],["NCBITaxon%3A1579","Lactobacillus acidophilus"]]},{"id":"NCBITaxon:28087","l":"Legionella sainthelensi","na":2,"nb":4,"a":[["TED%3AAF-A0A3S4I5M7-F1-model_v4_TED01","TED novel fold AF-A0A3S4I5M7-F1-model_v4_TED01"],["TED%3AAF-A0A447STS7-F1-model_v4_TED04","TED novel fold AF-A0A447STS7-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A28087","Legionella sainthelensi"],["NCBITaxon%3A1408445","Legionella sainthelensi ATCC 35248 = DSM 19231"],["NCBITaxon%3A3413801","Legionella sainthelensi serogroup 1"],["NCBITaxon%3A66962","Legionella sainthelensi serogroup 2"]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":2,"nb":4,"a":[["Pfam%3APF21252","Glycosyl hydrolase 109, C-terminal domain"],["TED%3AAF-A0A3P1YJQ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3P1YJQ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28112","Tannerella forsythia"],["NCBITaxon%3A1307832","Tannerella forsythia 3313"],["NCBITaxon%3A203275","Tannerella forsythia 92A2"],["NCBITaxon%3A1307833","Tannerella forsythia KS16"]]},{"id":"NCBITaxon:28130","l":"Prevotella disiens","na":2,"nb":4,"a":[["TED%3AAF-A0A379E001-F1-model_v4_TED01","TED novel fold AF-A0A379E001-F1-model_v4_TED01"],["TED%3AAF-A0A3E4QAE1-F1-model_v4_TED01","TED novel fold AF-A0A3E4QAE1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28130","Prevotella disiens"],["NCBITaxon%3A1401075","Prevotella disiens DNF00882"],["NCBITaxon%3A866771","Prevotella disiens FB035-09AN"],["NCBITaxon%3A1235811","Prevotella disiens JCM 6334 = ATCC 29426"]]},{"id":"NCBITaxon:28214","l":"Sphingomonas sp.","na":4,"nb":2,"a":[["Pfam%3APF11723","Homotrimeric ring hydroxylase"],["Pfam%3APF07364","Metallopeptidase family M81"],["TED%3AAF-A0A525HJK0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A525HJK0-F1-model_v4_TED02"],["TED%3AAF-A0A520ITV0-F1-model_v4_TED02","TED novel fold AF-A0A520ITV0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A28214","Sphingomonas sp."],["NCBITaxon%3A1888892","Sphingomonas turrisvirgatae"]]},{"id":"NCBITaxon:290398","l":"","na":4,"nb":2,"a":[["Pfam%3APF20629","D-galactarate/Altronate dehydratase, C-terminal"],["Pfam%3APF04295","D-galactarate dehydratase/Altronate hydrolase, second domain"],["Pfam%3APF11982","Domain of unknown function (DUF3483)"],["PROSITE%3APS00908","Mandelate racemase / muconate lactonizing enzyme family signature 1"]],"b":[["NCBITaxon%3A141390","Chromohalobacter israelensis"],["NCBITaxon%3A290398","Chromohalobacter israelensis DSM 3043"]]},{"id":"NCBITaxon:29491","l":"Aeromonas salmonicida subsp. salmonicida","na":2,"nb":4,"a":[["TED%3AAF-A0A189PGR3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A189PGR3-F1-model_v4_TED01"],["TED%3AAF-A0A0F6QDS7-F1-model_v4_TED02","TED novel fold AF-A0A0F6QDS7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A645","Aeromonas salmonicida"],["NCBITaxon%3A29491","Aeromonas salmonicida subsp. salmonicida"],["NCBITaxon%3A1076135","Aeromonas salmonicida subsp. salmonicida 01-B526"],["NCBITaxon%3A382245","Aeromonas salmonicida subsp. salmonicida A449"]]},{"id":"NCBITaxon:326423","l":"Bacillus velezensis FZB42","na":4,"nb":2,"a":[["Pfam%3APF21607","[Acyl-carrier-protein] S-malonyltransferase, inserted helical domain"],["Pfam%3APF21996","Histidyl-tRNA synthetase HisZ, C-terminal domain"],["Pfam%3APF07293","Protein of unknown function (DUF1450)"],["Pfam%3APF12227","Protein of unknown function (DUF3603)"]],"b":[["NCBITaxon%3A492670","Bacillus velezensis"],["NCBITaxon%3A326423","Bacillus velezensis FZB42"]]},{"id":"NCBITaxon:33025","l":"Phascolarctobacterium faecium","na":2,"nb":4,"a":[["TED%3AAF-A0A7X2XEV4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X2XEV4-F1-model_v4_TED01"],["TED%3AAF-A0A7X2XFG3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7X2XFG3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A33025","Phascolarctobacterium faecium"],["NCBITaxon%3A1357408","Phascolarctobacterium faecium 4_1_13G"],["NCBITaxon%3A1122957","Phascolarctobacterium faecium DSM 14760"],["NCBITaxon%3A1357409","Phascolarctobacterium faecium UC1_BHI_D"]]},{"id":"NCBITaxon:334542","l":"Rhodococcus qingshengii","na":2,"nb":4,"a":[["Pfam%3APF08028","Acyl-CoA dehydrogenase, C-terminal domain"],["TED%3AAF-A0A069J8A7-F1-model_v4_TED01","TED novel fold AF-A0A069J8A7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1833","Rhodococcus erythropolis"],["NCBITaxon%3A334542","Rhodococcus qingshengii"],["NCBITaxon%3A1278077","Rhodococcus qingshengii BKS 20-40"],["NCBITaxon%3A1303681","Rhodococcus qingshengii JCM 15477"]]},{"id":"NCBITaxon:342451","l":"Staphylococcus saprophyticus subsp. saprophyticus (strain ATCC 15305 / DSM 20229 / NCIMB 8711 / NCTC 7292 / S-41)","na":4,"nb":2,"a":[["Pfam%3APF18719","ArlS sensor domain"],["Pfam%3APF08406","CbbQ/NirQ/NorQ C-terminal"],["Pfam%3APF06103","Bacterial protein of unknown function (DUF948)"],["Pfam%3APF04313","Type I restriction enzyme R protein N terminus (HSDR_N)"]],"b":[["NCBITaxon%3A29385","Staphylococcus saprophyticus"],["NCBITaxon%3A342451","Staphylococcus saprophyticus subsp. saprophyticus ATCC 15305 = NCTC 7292"]]},{"id":"NCBITaxon:349307","l":"","na":4,"nb":2,"a":[["Pfam%3APF06973","Domain of unknown function (DUF1297)"],["Pfam%3APF07826","IMP cyclohydrolase-like protein"],["Pfam%3APF06849","Protein of unknown function (DUF1246)"],["Pfam%3APF08714","Formaldehyde-activating enzyme (Fae)"]],"b":[["NCBITaxon%3A2224","Methanothrix thermoacetophila"],["NCBITaxon%3A349307","Methanothrix thermoacetophila PT"]]},{"id":"NCBITaxon:351160","l":"Methanocella arvoryzae (strain DSM 22066 / NBRC 105507 / MRE50)","na":4,"nb":2,"a":[["Pfam%3APF11842","Domain of unknown function (DUF3362)"],["Pfam%3APF04475","Protein of unknown function (DUF555)"],["Pfam%3APF08714","Formaldehyde-activating enzyme (Fae)"],["TED%3AAF-Q0W3F7-F1-model_v4_TED01","TED highly-symmetric fold AF-Q0W3F7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1175445","Methanocella arvoryzae"],["NCBITaxon%3A351160","Methanocella arvoryzae MRE50"]]},{"id":"NCBITaxon:386043","l":"Listeria welshimeri serovar 6b (strain ATCC 35897 / DSM 20650 / CCUG 15529 / CIP 8149 / NCTC 11857 / SLCC 5334 / V8)","na":4,"nb":2,"a":[["Pfam%3APF27467","ATP-dependent helicase/deoxyribonuclease AddB fifth domain"],["Pfam%3APF06569","Protein of unknown function (DUF1128)"],["Pfam%3APF05636","HIGH Nucleotidyl Transferase"],["Pfam%3APF01430","Hsp33 protein"]],"b":[["NCBITaxon%3A1643","Listeria welshimeri"],["NCBITaxon%3A386043","Listeria welshimeri serovar 6b str. SLCC5334"]]},{"id":"NCBITaxon:398","l":"","na":2,"nb":4,"a":[["Pfam%3APF26956","ACR family N-terminal ACT domain"],["TED%3AAF-A0A329Y2T7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A329Y2T7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29450","Martinezella leucaenae"],["NCBITaxon%3A398","Martinezella tropici"],["NCBITaxon%3A1041147","Rhizobium leucaenae USDA 9039"],["NCBITaxon%3A698761","Rhizobium tropici CIAT 899"]]},{"id":"NCBITaxon:398512","l":"Pseudobacteroides cellulosolvens ATCC 35603 = DSM 2933","na":4,"nb":2,"a":[["TED%3AAF-A0A0L6JH99-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0L6JH99-F1-model_v4_TED01"],["TED%3AAF-A0A0L6JIG6-F1-model_v4_TED01","TED novel fold AF-A0A0L6JIG6-F1-model_v4_TED01"],["TED%3AAF-A0A0L6JK72-F1-model_v4_TED01","TED novel fold AF-A0A0L6JK72-F1-model_v4_TED01"],["TED%3AAF-A0A0L6JU00-F1-model_v4_TED01","TED novel fold AF-A0A0L6JU00-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A35825","Pseudobacteroides cellulosolvens"],["NCBITaxon%3A398512","Pseudobacteroides cellulosolvens ATCC 35603 = DSM 2933"]]},{"id":"NCBITaxon:400946","l":"Wohlfahrtiimonas chitiniclastica","na":2,"nb":4,"a":[["TED%3AAF-A0A256BUL6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A256BUL6-F1-model_v4_TED01"],["TED%3AAF-A0A256BUL6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A256BUL6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A472","Acinetobacter sp."],["NCBITaxon%3A400946","Wohlfahrtiimonas chitiniclastica"],["NCBITaxon%3A1123502","Wohlfahrtiimonas chitiniclastica DSM 18708"],["NCBITaxon%3A1261130","Wohlfahrtiimonas chitiniclastica SH04"]]},{"id":"NCBITaxon:406327","l":"","na":4,"nb":2,"a":[["Pfam%3APF06787","FeGP cofactor biosynthesis protein HcgF"],["Pfam%3APF04476","4-HFC-P synthase"],["Pfam%3APF27030","AbpE bacteria"],["Pfam%3APF09840","Uncharacterized protein conserved in archaea (DUF2067)"]],"b":[["NCBITaxon%3A2187","Methanococcus vannielii"],["NCBITaxon%3A406327","Methanococcus vannielii SB"]]},{"id":"NCBITaxon:410358","l":"Methanocorpusculum labreanum (strain ATCC 43576 / DSM 4855 / Z)","na":4,"nb":2,"a":[["Pfam%3APF27030","AbpE bacteria"],["Pfam%3APF01864","CDP-archaeol synthase"],["Pfam%3APF01891","Cobalt uptake substrate-specific transmembrane region"],["TED%3AAF-A2SPH3-F1-model_v4_TED02","TED highly-symmetric fold AF-A2SPH3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A83984","Methanocorpusculum labreanum"],["NCBITaxon%3A410358","Methanocorpusculum labreanum Z"]]},{"id":"NCBITaxon:418127","l":"Staphylococcus aureus (strain Mu3 / ATCC 700698)","na":4,"nb":2,"a":[["Pfam%3APF07564","Domain of Unknown Function (DUF1542)"],["Pfam%3APF01468","GA module"],["Pfam%3APF04647","Accessory gene regulator B"],["Pfam%3APF11858","Domain of unknown function (DUF3378)"]],"b":[["NCBITaxon%3A1280","Staphylococcus aureus"],["NCBITaxon%3A418127","Staphylococcus aureus subsp. aureus Mu3"]]},{"id":"NCBITaxon:43","l":"Cystobacter fuscus","na":4,"nb":2,"a":[["TED%3AAF-A0A250J1A4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J1A4-F1-model_v4_TED01"],["TED%3AAF-A0A250J4G5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J4G5-F1-model_v4_TED01"],["TED%3AAF-A0A250J8W0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J8W0-F1-model_v4_TED01"],["TED%3AAF-A0A250J3K5-F1-model_v4_TED03","TED novel fold AF-A0A250J3K5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A43","Cystobacter fuscus"],["NCBITaxon%3A1242864","Cystobacter fuscus DSM 2262"]]},{"id":"NCBITaxon:435591","l":"Parabacteroides distasonis (strain ATCC 8503 / DSM 20701 / CIP 104284 / JCM 5825 / NCTC 11152)","na":4,"nb":2,"a":[["Pfam%3APF21489","Fimbrium tip subunit Fim1C-like, C-terminal domain"],["Pfam%3APF22449","Fim1F, C-terminal domain"],["Pfam%3APF14229","Domain of unknown function (DUF4332)"],["Pfam%3APF10091","Putative glucoamylase"]],"b":[["NCBITaxon%3A823","Parabacteroides distasonis"],["NCBITaxon%3A435591","Parabacteroides distasonis ATCC 8503"]]},{"id":"NCBITaxon:438753","l":"Azorhizobium caulinodans ORS 571","na":4,"nb":2,"a":[["Pfam%3APF27389","AZC_3924"],["Pfam%3APF09663","Amidohydrolase ring-opening protein (Amido_AtzD_TrzD)"],["PROSITE%3APS01349","Nodulation protein nodA signature"],["PROSITE%3APS00647","Thymidine and pyrimidine-nucleoside phosphorylases signature"]],"b":[["NCBITaxon%3A7","Azorhizobium caulinodans"],["NCBITaxon%3A438753","Azorhizobium caulinodans ORS 571"]]},{"id":"NCBITaxon:439375","l":"Brucella anthropi (strain ATCC 49188 / DSM 6882 / CCUG 24695 / JCM 21032 / LMG 3331 / NBRC 15819 / NCTC 12168 / Alc 37)","na":4,"nb":2,"a":[["Pfam%3APF25839","D-apionate lactonase, C-terminal immunoglobulin-like domain"],["Pfam%3APF25838","D-apionate lactonase, TIM barrel domain"],["Pfam%3APF25837","D-apionate lactonase, N-terminal domain"],["Pfam%3APF10073","GapR-like, DNA-binding domain"]],"b":[["NCBITaxon%3A529","Brucella anthropi"],["NCBITaxon%3A439375","Brucella anthropi ATCC 49188"]]},{"id":"NCBITaxon:452863","l":"Pseudarthrobacter chlorophenolicus (strain ATCC 700700 / DSM 12829 / CIP 107037 / JCM 12360 / KCTC 9906 / NCIMB 13794 / A6)","na":4,"nb":2,"a":[["TED%3AAF-B8HI43-F1-model_v4_TED02","TED highly-symmetric fold AF-B8HI43-F1-model_v4_TED02"],["TED%3AAF-B8HIA6-F1-model_v4_TED01","TED highly-symmetric fold AF-B8HIA6-F1-model_v4_TED01"],["TED%3AAF-B8HIQ6-F1-model_v4_TED02","TED highly-symmetric fold AF-B8HIQ6-F1-model_v4_TED02"],["TED%3AAF-B8HHK3-F1-model_v4_TED01","TED novel fold AF-B8HHK3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A85085","Pseudarthrobacter chlorophenolicus"],["NCBITaxon%3A452863","Pseudarthrobacter chlorophenolicus A6"]]},{"id":"NCBITaxon:476","l":"Moraxella bovis","na":2,"nb":4,"a":[["Pfam%3APF04556","DpnII restriction endonuclease"],["TED%3AAF-A0A1S9ZVN5-F1-model_v4_TED01","TED novel fold AF-A0A1S9ZVN5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A476","Moraxella bovis"],["NCBITaxon%3A387425","Moraxella bovis Epp63"],["NCBITaxon%3A386891","Moraxella bovoculi"],["NCBITaxon%3A60442","Moraxella equi"]]},{"id":"NCBITaxon:485913","l":"Ktedonobacter racemifer DSM 44963","na":4,"nb":2,"a":[["TED%3AAF-D6U145-F1-model_v4_TED01","TED highly-symmetric fold AF-D6U145-F1-model_v4_TED01"],["TED%3AAF-D6U380-F1-model_v4_TED01","TED highly-symmetric fold AF-D6U380-F1-model_v4_TED01"],["TED%3AAF-D6TNQ7-F1-model_v4_TED02","TED novel fold AF-D6TNQ7-F1-model_v4_TED02"],["TED%3AAF-D6U8N4-F1-model_v4_TED02","TED novel fold AF-D6U8N4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A363277","Ktedonobacter racemifer"],["NCBITaxon%3A485913","Ktedonobacter racemifer DSM 44963"]]},{"id":"NCBITaxon:485917","l":"Pedobacter heparinus (strain ATCC 13125 / DSM 2366 / CIP 104194 / JCM 7457 / NBRC 12017 / NCIMB 9290 / NRRL B-14731 / HIM 762-3)","na":4,"nb":2,"a":[["Pfam%3APF07940","Heparinase II/III-like, C-terminal"],["Pfam%3APF18675","Heparinase II C-terminal domain"],["Pfam%3APF14592","Chondroitinase B"],["Pfam%3APF16889","Heparinase II/III N-terminus"]],"b":[["NCBITaxon%3A984","Pedobacter heparinus"],["NCBITaxon%3A485917","Pedobacter heparinus DSM 2366"]]},{"id":"NCBITaxon:499177","l":"Acetoanaerobium sticklandii (strain ATCC 12662 / DSM 519 / JCM 1433 / CCUG 9281 / NCIMB 10654 / HF)","na":4,"nb":2,"a":[["Pfam%3APF26370","L-erythro-3,5-diaminohexanoate dehydrogenase N-terminal domain"],["Pfam%3APF09338","Glycine/sarcosine/betaine reductase component B subunits"],["Pfam%3APF04723","Glycine reductase complex selenoprotein A"],["TED%3AAF-E3PW30-F1-model_v4_TED02","TED highly-symmetric fold AF-E3PW30-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1511","Acetoanaerobium sticklandii"],["NCBITaxon%3A499177","Acetoanaerobium sticklandii DSM 519"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":4,"nb":2,"a":[["Pfam%3APF11720","Peptidase inhibitor I78 family"],["Pfam%3APF12296","Hydrophobic surface binding protein A"],["TED%3AAF-A0A3M7JGA1-F1-model_v4_TED02","TED novel fold AF-A0A3M7JGA1-F1-model_v4_TED02"],["TED%3AAF-A0A7G5JNS3-F1-model_v4_TED03","TED novel fold AF-A0A7G5JNS3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A5059","Aspergillus flavus"],["NCBITaxon%3A332952","Aspergillus flavus NRRL3357"]]},{"id":"NCBITaxon:523848","l":"Saccharolobus shibatae (strain ATCC 51178 / DSM 5389 / JCM 8931 / NBRC 15437 / B12)","na":4,"nb":2,"a":[["IDPO%3A0000003","molten globule"],["Pfam%3APF02294","7kD DNA-binding domain"],["Pfam%3APF21133","CCA-adding enzyme, C-terminal domain"],["Pfam%3APF11520","Chromatin protein Cren7"]],"b":[["NCBITaxon%3A2286","Saccharolobus shibatae"],["NCBITaxon%3A523848","Saccharolobus shibatae B12"]]},{"id":"NCBITaxon:5671","l":"Leishmania infantum","na":4,"nb":2,"a":[["Pfam%3APF03037","Kinetoplastid membrane protein 11"],["TED%3AAF-A0A6L0XLP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L0XLP7-F1-model_v4_TED01"],["TED%3AAF-A4HWI8-F1-model_v4_TED01","TED novel fold AF-A4HWI8-F1-model_v4_TED01"],["TED%3AAF-A4HWZ8-F1-model_v4_TED01","TED novel fold AF-A4HWZ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5671","Leishmania infantum"],["NCBITaxon%3A435258","Leishmania infantum JPCM5"]]},{"id":"NCBITaxon:5741","l":"Giardia intestinalis","na":4,"nb":2,"a":[["Pfam%3APF22293","Annexin E1, fourth repeat"],["Pfam%3APF17529","Family of unknown function (DUF5450)"],["TED%3AAF-V6TFM4-F1-model_v4_TED01","TED novel fold AF-V6TFM4-F1-model_v4_TED01"],["TED%3AAF-V6TNW5-F1-model_v4_TED02","TED novel fold AF-V6TNW5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A5741","Giardia duodenalis"],["NCBITaxon%3A598745","Giardia duodenalis ATCC 50581"]]},{"id":"NCBITaxon:577","l":"Klebsiella terrigena","na":2,"nb":4,"a":[["TED%3AAF-A0A485AWY7-F1-model_v4_TED01","TED novel fold AF-A0A485AWY7-F1-model_v4_TED01"],["TED%3AAF-A0A4U9DC68-F1-model_v4_TED02","TED novel fold AF-A0A4U9DC68-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A577","Klebsiella terrigena"],["NCBITaxon%3A1354274","Klebsiella terrigena ATCC 33257"],["NCBITaxon%3A1255696","Klebsiella terrigena Pi19"]]},{"id":"NCBITaxon:5802","l":"Eimeria tenella","na":4,"nb":2,"a":[["TED%3AAF-U6KRF5-F1-model_v4_TED01","TED highly-symmetric fold AF-U6KRF5-F1-model_v4_TED01"],["TED%3AAF-H9BA61-F1-model_v4_TED01","TED novel fold AF-H9BA61-F1-model_v4_TED01"],["TED%3AAF-H9BA71-F1-model_v4_TED01","TED novel fold AF-H9BA71-F1-model_v4_TED01"],["TED%3AAF-U6KGN9-F1-model_v4_TED03","TED novel fold AF-U6KGN9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A5802","Eimeria tenella"],["NCBITaxon%3A413949","Eimeria tenella strain Houghton"]]},{"id":"NCBITaxon:58291","l":"Rhizopus microsporus","na":2,"nb":4,"a":[["TED%3AAF-A0A1X0RNA5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1X0RNA5-F1-model_v4_TED03"],["TED%3AAF-A0A1X0S5N4-F1-model_v4_TED01","TED novel fold AF-A0A1X0S5N4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A58291","Rhizopus microsporus"],["NCBITaxon%3A4843","Rhizopus microsporus var. chinensis"],["NCBITaxon%3A86635","Rhizopus microsporus var. microsporus"],["NCBITaxon%3A4847","Rhizopus microsporus var. oligosporus"]]},{"id":"NCBITaxon:5850","l":"Plasmodium knowlesi","na":4,"nb":2,"a":[["Pfam%3APF12361","Duffy-antigen binding protein"],["Pfam%3APF05424","Duffy binding domain"],["Pfam%3APF12377","Duffy binding protein N terminal"],["Pfam%3APF11556","Erythrocyte binding antigen 175"]],"b":[["NCBITaxon%3A5850","Plasmodium knowlesi"],["NCBITaxon%3A5851","Plasmodium knowlesi strain H"]]},{"id":"NCBITaxon:61646","l":"Lelliottia amnigena","na":2,"nb":4,"a":[["Pfam%3APF17425","Arylsulfotransferase Ig-like domain"],["Pfam%3APF05935","Arylsulfotransferase (ASST)"]],"b":[["NCBITaxon%3A61646","Lelliottia amnigena"],["NCBITaxon%3A1439331","Lelliottia amnigena CHS 78"],["NCBITaxon%3A1255644","Lelliottia amnigena CV9"],["NCBITaxon%3A1219085","Lelliottia amnigena NBRC 105700"]]},{"id":"NCBITaxon:66219","l":"Lachnoclostridium phytofermentans","na":2,"nb":4,"a":[["TED%3AAF-A0A3D2X3U8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D2X3U8-F1-model_v4_TED01"],["TED%3AAF-A0A3D2X6Y1-F1-model_v4_TED04","TED novel fold AF-A0A3D2X6Y1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A66219","Lachnoclostridium phytofermentans"],["NCBITaxon%3A357809","Lachnoclostridium phytofermentans ISDg"],["NCBITaxon%3A1458471","Lachnoclostridium phytofermentans KNHs212"],["NCBITaxon%3A1458468","Lachnoclostridium phytofermentans KNHs2132"]]},{"id":"NCBITaxon:702114","l":"Methylomonas koyamae","na":4,"nb":2,"a":[["TED%3AAF-A0A291IJ28-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A291IJ28-F1-model_v4_TED01"],["TED%3AAF-A0A177N3K8-F1-model_v4_TED02","TED novel fold AF-A0A177N3K8-F1-model_v4_TED02"],["TED%3AAF-A0A177N3P2-F1-model_v4_TED04","TED novel fold AF-A0A177N3P2-F1-model_v4_TED04"],["TED%3AAF-A0A177NN90-F1-model_v4_TED01","TED novel fold AF-A0A177NN90-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A702114","Methylomonas koyamae"],["NCBITaxon%3A1294261","Methylomonas koyamae JCM 16701"]]},{"id":"NCBITaxon:80876","l":"Insolitispirillum peregrinum","na":2,"nb":4,"a":[["TED%3AAF-A0A1N7NQ08-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1N7NQ08-F1-model_v4_TED01"],["TED%3AAF-A0A1N7PDB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1N7PDB9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A80876","Insolitispirillum peregrinum"],["NCBITaxon%3A180200","Insolitispirillum peregrinum subsp. integrum"],["NCBITaxon%3A1122127","Insolitispirillum peregrinum subsp. integrum DSM 11589"],["NCBITaxon%3A180201","Insolitispirillum peregrinum subsp. peregrinum"]]},{"id":"NCBITaxon:971","l":"Pseudoselenomonas ruminantium","na":2,"nb":4,"a":[["TED%3AAF-A0A1H0QI16-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H0QI16-F1-model_v4_TED02"],["TED%3AAF-A0A1I6XHL5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I6XHL5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A971","Pseudoselenomonas ruminantium"],["NCBITaxon%3A1392501","Selenomonas ruminantium AC2024"],["NCBITaxon%3A114196","Selenomonas ruminantium subsp. ruminantium"],["NCBITaxon%3A1280706","Selenomonas ruminantium subsp. ruminantium ATCC 12561"]]},{"id":"NCBITaxon:1003195","l":"","na":3,"nb":2,"a":[["Pfam%3APF23169","Halogenase D"],["Pfam%3APF02655","ATP-grasp domain"],["Pfam%3APF14518","Iron-containing redox enzyme"]],"b":[["NCBITaxon%3A29303","Streptantibioticus cattleyicolor"],["NCBITaxon%3A1003195","Streptantibioticus cattleyicolor NRRL 8057 = DSM 46488"]]},{"id":"NCBITaxon:1019","l":"Capnocytophaga sputigena","na":2,"nb":3,"a":[["TED%3AAF-A0A3S4WAY3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S4WAY3-F1-model_v4_TED01"],["TED%3AAF-A0A2A3N675-F1-model_v4_TED02","TED novel fold AF-A0A2A3N675-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1019","Capnocytophaga sputigena"],["NCBITaxon%3A553177","Capnocytophaga sputigena ATCC 33612"],["NCBITaxon%3A1073354","Capnocytophaga sputigena CC21_001D"]]},{"id":"NCBITaxon:1069201","l":"Aspergillus luchuensis","na":2,"nb":3,"a":[["PROSITE%3APS00820","Glucoamylase active site region signature"],["TED%3AAF-A0A7R7WRP2-F1-model_v4_TED01","TED novel fold AF-A0A7R7WRP2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1069201","Aspergillus luchuensis"],["NCBITaxon%3A1137211","Aspergillus luchuensis CBS 106.47"],["NCBITaxon%3A1033177","Aspergillus luchuensis IFO 4308"]]},{"id":"NCBITaxon:1078020","l":"Mycolicibacterium thermoresistibile (strain ATCC 19527 / DSM 44167 / CIP 105390 / JCM 6362 / NCTC 10409 / 316)","na":3,"nb":2,"a":[["Pfam%3APF12867","DinB superfamily"],["TED%3AAF-G7CBF7-F1-model_v4_TED02","TED novel fold AF-G7CBF7-F1-model_v4_TED02"],["TED%3AAF-G7CLC7-F1-model_v4_TED01","TED novel fold AF-G7CLC7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797","Mycolicibacterium thermoresistibile"],["NCBITaxon%3A1078020","Mycolicibacterium thermoresistibile ATCC 19527"]]},{"id":"NCBITaxon:1090322","l":"Methanolobus tindarius DSM 2278","na":3,"nb":2,"a":[["TED%3AAF-W9DQM0-F1-model_v4_TED03","TED highly-symmetric fold AF-W9DQM0-F1-model_v4_TED03"],["TED%3AAF-W9DMY0-F1-model_v4_TED01","TED novel fold AF-W9DMY0-F1-model_v4_TED01"],["TED%3AAF-W9DNB8-F1-model_v4_TED01","TED novel fold AF-W9DNB8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2221","Methanolobus tindarius"],["NCBITaxon%3A1090322","Methanolobus tindarius DSM 2278"]]},{"id":"NCBITaxon:1121335","l":"Thermoclostridium stercorarium (strain ATCC 35414 / DSM 8532 / NCIMB 11754)","na":2,"nb":3,"a":[["Pfam%3APF03442","Carbohydrate binding domain X2"],["TED%3AAF-L7VJJ5-F1-model_v4_TED02","TED highly-symmetric fold AF-L7VJJ5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1510","Thermoclostridium stercorarium"],["NCBITaxon%3A160845","Thermoclostridium stercorarium subsp. stercorarium"],["NCBITaxon%3A1121335","Thermoclostridium stercorarium subsp. stercorarium DSM 8532"]]},{"id":"NCBITaxon:1122961","l":"","na":3,"nb":2,"a":[["Pfam%3APF22578","Geranylgeranyl reductase catalytic domain"],["Pfam%3APF04038","Dihydroneopterin aldolase"],["Pfam%3APF16912","Glucose dehydrogenase C-terminus"]],"b":[["NCBITaxon%3A46632","Picrophilus oshimae"],["NCBITaxon%3A1122961","Picrophilus oshimae DSM 9789"]]},{"id":"NCBITaxon:1125972","l":"Amycolatopsis alba DSM 44262","na":3,"nb":2,"a":[["TED%3AAF-A0A229R958-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A229R958-F1-model_v4_TED01"],["TED%3AAF-A0A229REG9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A229REG9-F1-model_v4_TED01"],["TED%3AAF-A0A229RFD1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A229RFD1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A76020","Amycolatopsis alba"],["NCBITaxon%3A1125972","Amycolatopsis alba DSM 44262"]]},{"id":"NCBITaxon:114","l":"Gemmata obscuriglobus","na":3,"nb":2,"a":[["TED%3AAF-A0A2Z3H719-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z3H719-F1-model_v4_TED01"],["TED%3AAF-A0A2Z3H7W0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z3H7W0-F1-model_v4_TED01"],["TED%3AAF-A0A2Z3GTM0-F1-model_v4_TED04","TED novel fold AF-A0A2Z3GTM0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A114","Gemmata obscuriglobus"],["NCBITaxon%3A214688","Gemmata obscuriglobus UQM 2246"]]},{"id":"NCBITaxon:1166950","l":"Candidatus Thiodictyon syntrophicum","na":3,"nb":2,"a":[["TED%3AAF-A0A2K8UAD6-F1-model_v4_TED03","TED novel fold AF-A0A2K8UAD6-F1-model_v4_TED03"],["TED%3AAF-A0A2K8UBL3-F1-model_v4_TED02","TED novel fold AF-A0A2K8UBL3-F1-model_v4_TED02"],["TED%3AAF-A0A2K8UHY2-F1-model_v4_TED01","TED novel fold AF-A0A2K8UHY2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1166950","Candidatus Thiodictyon syntrophicum"],["NCBITaxon%3A572262","Candidatus Thiodictyon syntrophicum str. Cad16"]]},{"id":"NCBITaxon:1192034","l":"Chondromyces apiculatus DSM 436","na":3,"nb":2,"a":[["TED%3AAF-A0A017T755-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A017T755-F1-model_v4_TED01"],["TED%3AAF-A0A017SVV4-F1-model_v4_TED01","TED novel fold AF-A0A017SVV4-F1-model_v4_TED01"],["TED%3AAF-A0A017T5R3-F1-model_v4_TED03","TED novel fold AF-A0A017T5R3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A51","Chondromyces apiculatus"],["NCBITaxon%3A1192034","Chondromyces apiculatus DSM 436"]]},{"id":"NCBITaxon:1203610","l":"Parabacteroides gordonii MS-1 = DSM 23371","na":3,"nb":2,"a":[["TED%3AAF-A0A0F5JCJ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F5JCJ0-F1-model_v4_TED01"],["TED%3AAF-A0A0F5JIU1-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A0F5JIU1-F1-model_v4_TED05"],["TED%3AAF-A0A0F5JIU1-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A0F5JIU1-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A574930","Parabacteroides gordonii"],["NCBITaxon%3A1203610","Parabacteroides gordonii MS-1 = DSM 23371"]]},{"id":"NCBITaxon:1219077","l":"Vibrio azureus NBRC 104587","na":3,"nb":2,"a":[["TED%3AAF-U3ANH8-F1-model_v4_TED01","TED highly-symmetric fold AF-U3ANH8-F1-model_v4_TED01"],["TED%3AAF-U3CG72-F1-model_v4_TED04","TED highly-symmetric fold AF-U3CG72-F1-model_v4_TED04"],["TED%3AAF-U3AN91-F1-model_v4_TED01","TED novel fold AF-U3AN91-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A512649","Vibrio azureus"],["NCBITaxon%3A1219077","Vibrio azureus NBRC 104587"]]},{"id":"NCBITaxon:1265738","l":"Rhodopirellula maiorica SM1","na":2,"nb":3,"a":[["TED%3AAF-M5RME8-F1-model_v4_TED01","TED novel fold AF-M5RME8-F1-model_v4_TED01"],["TED%3AAF-M5RML1-F1-model_v4_TED01","TED novel fold AF-M5RML1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1265734","Novipirellula maiorica"],["NCBITaxon%3A1265738","Rhodopirellula maiorica SM1"],["NCBITaxon%3A2024855","Rhodopirellula sp."]]},{"id":"NCBITaxon:129394","l":"Xanthomonas oryzae pv. oryzicola","na":2,"nb":3,"a":[["Pfam%3APF27358","Type III secretion system regulatory protein HrpD6"],["TED%3AAF-A0A5C2EW55-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C2EW55-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A129394","Xanthomonas oryzae pv. oryzicola"],["NCBITaxon%3A383407","Xanthomonas oryzae pv. oryzicola BLS256"],["NCBITaxon%3A1423890","Xanthomonas oryzae pv. oryzicola MAI10"]]},{"id":"NCBITaxon:1295","l":"Staphylococcus schleiferi","na":2,"nb":3,"a":[["Pfam%3APF18153","Cap15, cyclic dinucleotide receptor domain"],["Pfam%3APF26305","cGAS/DncV-like nucleotidyltransferase C-terminal helical domain"]],"b":[["NCBITaxon%3A74706","Staphylococcus coagulans"],["NCBITaxon%3A1295","Staphylococcus schleiferi"],["NCBITaxon%3A74707","Staphylococcus schleiferi subsp. schleiferi"]]},{"id":"NCBITaxon:134537","l":"Paraburkholderia fungorum","na":2,"nb":3,"a":[["TED%3AAF-A0A1H1IH55-F1-model_v4_TED01","TED novel fold AF-A0A1H1IH55-F1-model_v4_TED01"],["TED%3AAF-A0A2N8QLD6-F1-model_v4_TED03","TED novel fold AF-A0A2N8QLD6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A36773","Burkholderia sp."],["NCBITaxon%3A134537","Paraburkholderia fungorum"],["NCBITaxon%3A1218077","Paraburkholderia fungorum NBRC 102489"]]},{"id":"NCBITaxon:135735","l":"Priestia endophytica","na":2,"nb":3,"a":[["TED%3AAF-A0A3N6AMS3-F1-model_v4_TED04","TED novel fold AF-A0A3N6AMS3-F1-model_v4_TED04"],["TED%3AAF-A0A6I0BVE8-F1-model_v4_TED01","TED novel fold AF-A0A6I0BVE8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A135735","Priestia endophytica"],["NCBITaxon%3A1196029","Priestia endophytica 2102"],["NCBITaxon%3A1121089","Priestia endophytica DSM 13796"]]},{"id":"NCBITaxon:1406225","l":"Archangium violaceum Cb vi76","na":3,"nb":2,"a":[["TED%3AAF-A0A084STC5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A084STC5-F1-model_v4_TED01"],["TED%3AAF-A0A084SQF5-F1-model_v4_TED01","TED novel fold AF-A0A084SQF5-F1-model_v4_TED01"],["TED%3AAF-A0A084SQH8-F1-model_v4_TED01","TED novel fold AF-A0A084SQH8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A83451","Archangium violaceum"],["NCBITaxon%3A1406225","Archangium violaceum Cb vi76"]]},{"id":"NCBITaxon:145262","l":"Methanothermobacter thermautotrophicus","na":2,"nb":3,"a":[["Pfam%3APF12686","Protein of unknown function (DUF3800)"],["PROSITE%3APS00093","N-4 cytosine-specific DNA methylases signature"]],"b":[["NCBITaxon%3A145262","Methanothermobacter thermautotrophicus"],["NCBITaxon%3A187420","Methanothermobacter thermautotrophicus str. Delta H"],["NCBITaxon%3A79930","Methanothermobacter thermautotrophicus str. Winter"]]},{"id":"NCBITaxon:149386","l":"Salmonella enterica subsp. enterica serovar Chester","na":3,"nb":2,"a":[["TED%3AAF-A0A3Z4X662-F1-model_v4_TED02","TED novel fold AF-A0A3Z4X662-F1-model_v4_TED02"],["TED%3AAF-A0A635R8B2-F1-model_v4_TED01","TED novel fold AF-A0A635R8B2-F1-model_v4_TED01"],["TED%3AAF-A0A635RC84-F1-model_v4_TED01","TED novel fold AF-A0A635RC84-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A149386","Salmonella enterica subsp. enterica serovar Chester"],["NCBITaxon%3A941190","Salmonella enterica subsp. enterica serovar Chester str. ATCC 11997"]]},{"id":"NCBITaxon:158500","l":"Novosphingobium resinovorum","na":2,"nb":3,"a":[["TED%3AAF-A0A031JQ90-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A031JQ90-F1-model_v4_TED01"],["TED%3AAF-A0A031JQV5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A031JQV5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1495645","Xanthomarina arctica"],["NCBITaxon%3A158500","Novosphingobium resinovorum"],["NCBITaxon%3A284035","Streptomyces lienomycini"]]},{"id":"NCBITaxon:168927","l":"Escherichia coli O111:H-","na":3,"nb":2,"a":[["Pfam%3APF05307","Bundlin"],["Pfam%3APF26918","Intimin, immunoglobulin-like domain"],["Pfam%3APF07979","Intimin C-type lectin domain"]],"b":[["NCBITaxon%3A168927","Escherichia coli O111:H-"],["NCBITaxon%3A585396","Escherichia coli O111:H- str. 11128"]]},{"id":"NCBITaxon:1708","l":"Cellulomonas fimi","na":3,"nb":2,"a":[["Pfam%3APF00553","Cellulose binding domain"],["PROSITE%3APS00561","CBM2a (carbohydrate-binding type-2) domain signature"],["PROSITE%3APS00591","Glycosyl hydrolases family 10 (GH10) active site"]],"b":[["NCBITaxon%3A1708","Cellulomonas fimi"],["NCBITaxon%3A590998","Cellulomonas fimi ATCC 484"]]},{"id":"NCBITaxon:1736552","l":"Paenibacillus sp. Root52","na":3,"nb":2,"a":[["TED%3AAF-A0A0Q7SKA9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0Q7SKA9-F1-model_v4_TED03"],["TED%3AAF-A0A0Q7T2A7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q7T2A7-F1-model_v4_TED01"],["TED%3AAF-A0A0Q7STD2-F1-model_v4_TED01","TED novel fold AF-A0A0Q7STD2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A58172","Paenibacillus sp."],["NCBITaxon%3A1736552","Paenibacillus sp. Root52"]]},{"id":"NCBITaxon:178306","l":"Pyrobaculum aerophilum (strain ATCC 51768 / DSM 7523 / JCM 9630 / CIP 104966 / NBRC 100827 / IM2)","na":3,"nb":2,"a":[["Pfam%3APF09171","N-glycosylase/DNA lyase"],["Pfam%3APF10432","Bacterial phospho-glucose isomerase C-terminal SIS domain"],["TED%3AAF-Q8ZWY1-F1-model_v4_TED04","TED novel fold AF-Q8ZWY1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A13773","Pyrobaculum aerophilum"],["NCBITaxon%3A178306","Pyrobaculum aerophilum str. IM2"]]},{"id":"NCBITaxon:178900","l":"Acetobacter cerevisiae","na":2,"nb":3,"a":[["TED%3AAF-A0A149VCN2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A149VCN2-F1-model_v4_TED01"],["TED%3AAF-A0A149VES1-F1-model_v4_TED01","TED novel fold AF-A0A149VES1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A178900","Acetobacter cerevisiae"],["NCBITaxon%3A1307903","Acetobacter cerevisiae DSM 14362"],["NCBITaxon%3A438","Acetobacter pasteurianus"]]},{"id":"NCBITaxon:180282","l":"Delftia tsuruhatensis","na":2,"nb":3,"a":[["TED%3AAF-A0A1D8JBF2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1D8JBF2-F1-model_v4_TED01"],["TED%3AAF-A0A5P8XEZ5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5P8XEZ5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A180282","Delftia tsuruhatensis"],["NCBITaxon%3A1280939","Delftia tsuruhatensis ARB"],["NCBITaxon%3A1220577","Delftia tsuruhatensis NBRC 16741"]]},{"id":"NCBITaxon:1871071","l":"Comamonadaceae bacterium","na":3,"nb":2,"a":[["TED%3AAF-A0A4Q3MGW3-F1-model_v4_TED02","TED novel fold AF-A0A4Q3MGW3-F1-model_v4_TED02"],["TED%3AAF-A0A4Q3MH32-F1-model_v4_TED02","TED novel fold AF-A0A4Q3MH32-F1-model_v4_TED02"],["TED%3AAF-A0A4Q5ULA3-F1-model_v4_TED01","TED novel fold AF-A0A4Q5ULA3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1871071","Comamonadaceae bacterium"],["NCBITaxon%3A3043857","Comamonadaceae bacterium OTU2469"]]},{"id":"NCBITaxon:1890302","l":"Bacillus wiedmannii","na":3,"nb":2,"a":[["TED%3AAF-A0A2B5XSY7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2B5XSY7-F1-model_v4_TED01"],["TED%3AAF-A0A4U3BAX3-F1-model_v4_TED01","TED novel fold AF-A0A4U3BAX3-F1-model_v4_TED01"],["TED%3AAF-A0A4V5TSE9-F1-model_v4_TED01","TED novel fold AF-A0A4V5TSE9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1890302","Bacillus wiedmannii"],["NCBITaxon%3A2494319","Bacillus wiedmannii bv. thuringiensis"]]},{"id":"NCBITaxon:1909293","l":"Acetobacteraceae bacterium","na":3,"nb":2,"a":[["TED%3AAF-A0A4P7WA61-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A4P7WA61-F1-model_v4_TED03"],["TED%3AAF-A0A4Q4CZF9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q4CZF9-F1-model_v4_TED01"],["TED%3AAF-A0A354V6Y2-F1-model_v4_TED01","TED novel fold AF-A0A354V6Y2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1909293","Acetobacteraceae bacterium"],["NCBITaxon%3A1484109","Lichenicola cladoniae"]]},{"id":"NCBITaxon:203122","l":"Saccharophagus degradans 2-40","na":3,"nb":2,"a":[["Pfam%3APF22686","Exo-oligoalginate lyase-like, C-terminal domain"],["Pfam%3APF07940","Heparinase II/III-like, C-terminal"],["Pfam%3APF05426","Alginate lyase"]],"b":[["NCBITaxon%3A86304","Saccharophagus degradans"],["NCBITaxon%3A203122","Saccharophagus degradans 2-40"]]},{"id":"NCBITaxon:208435","l":"Streptococcus agalactiae serotype V (strain ATCC BAA-611 / 2603 V/R)","na":3,"nb":2,"a":[["Pfam%3APF18419","ATP-grasp-like domain"],["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF04262","Glutamate-cysteine ligase"]],"b":[["NCBITaxon%3A1311","Streptococcus agalactiae"],["NCBITaxon%3A208435","Streptococcus agalactiae 2603V/R"]]},{"id":"NCBITaxon:2151","l":"Mesoplasma florum","na":2,"nb":3,"a":[["TED%3AAF-A0A2R3NYP5-F1-model_v4_TED02","TED novel fold AF-A0A2R3NYP5-F1-model_v4_TED02"],["TED%3AAF-A0A2R3P753-F1-model_v4_TED02","TED novel fold AF-A0A2R3P753-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2151","Mesoplasma florum"],["NCBITaxon%3A265311","Mesoplasma florum L1"],["NCBITaxon%3A1406864","Mesoplasma florum W37"]]},{"id":"NCBITaxon:2162","l":"Methanobacterium formicicum","na":2,"nb":3,"a":[["Pfam%3APF04432","Coenzyme F420 hydrogenase/dehydrogenase, beta subunit C terminus"],["Pfam%3APF04422","Coenzyme F420 hydrogenase/dehydrogenase, beta subunit N-term"]],"b":[["NCBITaxon%3A2162","Methanobacterium formicicum"],["NCBITaxon%3A1204725","Methanobacterium formicicum DSM 3637"],["NCBITaxon%3A1300163","Methanobacterium formicicum JCM 10132"]]},{"id":"NCBITaxon:2257","l":"Natronomonas pharaonis","na":3,"nb":2,"a":[["Pfam%3APF17909","Htr2 transmembrane domain"],["PROSITE%3APS00950","Bacterial rhodopsins signature 1"],["PROSITE%3APS00327","Bacterial rhodopsins retinal binding site"]],"b":[["NCBITaxon%3A2257","Natronomonas pharaonis"],["NCBITaxon%3A348780","Natronomonas pharaonis DSM 2160"]]},{"id":"NCBITaxon:235279","l":"Helicobacter hepaticus (strain ATCC 51449 / 3B1)","na":3,"nb":2,"a":[["Pfam%3APF13673","Acetyltransferase (GNAT) domain"],["Pfam%3APF03498","Cytolethal distending toxin A/C domain"],["Pfam%3APF03352","Methyladenine glycosylase"]],"b":[["NCBITaxon%3A32025","Helicobacter hepaticus"],["NCBITaxon%3A235279","Helicobacter hepaticus ATCC 51449"]]},{"id":"NCBITaxon:239935","l":"Akkermansia muciniphila","na":2,"nb":3,"a":[["TED%3AAF-A0A2N8IJN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N8IJN7-F1-model_v4_TED01"],["TED%3AAF-A0A6N2UM07-F1-model_v4_TED01","TED novel fold AF-A0A6N2UM07-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A239935","Akkermansia muciniphila"],["NCBITaxon%3A349741","Akkermansia muciniphila ATCC BAA-835"],["NCBITaxon%3A1263034","Akkermansia muciniphila CAG:154"]]},{"id":"NCBITaxon:243090","l":"Rhodopirellula baltica SH 1","na":3,"nb":2,"a":[["Pfam%3APF02601","Exonuclease VII, large subunit"],["TED%3AAF-Q7UU79-F1-model_v4_TED04","TED highly-symmetric fold AF-Q7UU79-F1-model_v4_TED04"],["TED%3AAF-Q7USE8-F1-model_v4_TED02","TED novel fold AF-Q7USE8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A265606","Rhodopirellula baltica"],["NCBITaxon%3A243090","Rhodopirellula baltica SH 1"]]},{"id":"NCBITaxon:243231","l":"Geobacter sulfurreducens PCA","na":2,"nb":3,"a":[["Pfam%3APF01930","Domain of unknown function DUF83"],["Pfam%3APF13435","Cytochrome c554 and c-prime"]],"b":[["NCBITaxon%3A35554","Geobacter sulfurreducens"],["NCBITaxon%3A243231","Geobacter sulfurreducens PCA"],["NCBITaxon%3A1649546","Geobacter sulfurreducens subsp. sulfurreducens"]]},{"id":"NCBITaxon:243365","l":"Chromobacterium violaceum ATCC 12472","na":3,"nb":2,"a":[["Pfam%3APF17074","Darcynin, domain of unknown function"],["Pfam%3APF12902","Ferritin-like"],["Pfam%3APF06314","Acetoacetate decarboxylase (ADC)"]],"b":[["NCBITaxon%3A536","Chromobacterium violaceum"],["NCBITaxon%3A243365","Chromobacterium violaceum ATCC 12472"]]},{"id":"NCBITaxon:246","l":"Chryseobacterium balustinum","na":2,"nb":3,"a":[["TED%3AAF-A0A3G6TGN0-F1-model_v4_TED05","TED novel fold AF-A0A3G6TGN0-F1-model_v4_TED05"],["TED%3AAF-A0A3G6TJP7-F1-model_v4_TED01","TED novel fold AF-A0A3G6TJP7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A246","Chryseobacterium balustinum"],["NCBITaxon%3A1349755","Chryseobacterium balustinum NBRC 15053"],["NCBITaxon%3A1241981","Chryseobacterium lactis"]]},{"id":"NCBITaxon:2600065","l":"Pseudomonas haemolytica","na":2,"nb":3,"a":[["TED%3AAF-A0A5P1D772-F1-model_v4_TED02","TED novel fold AF-A0A5P1D772-F1-model_v4_TED02"],["TED%3AAF-A0A646P5P3-F1-model_v4_TED01","TED novel fold AF-A0A646P5P3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2219658","Promicromonospora panici"],["NCBITaxon%3A2600065","Pseudomonas haemolytica"],["NCBITaxon%3A306","Pseudomonas sp."]]},{"id":"NCBITaxon:269084","l":"Synechococcus sp. (strain ATCC 27144 / PCC 6301 / SAUG 1402/1)","na":3,"nb":2,"a":[["Pfam%3APF24763","CGL160, C-terminal"],["Pfam%3APF11805","Protein of unknown function (DUF3326)"],["PROSITE%3APS00157","Ribulose bisphosphate carboxylase large chain active site"]],"b":[["NCBITaxon%3A269084","Synechococcus elongatus PCC 6301"],["NCBITaxon%3A1350461","Synechococcus elongatus UTEX 2973"]]},{"id":"NCBITaxon:272564","l":"Desulfitobacterium hafniense (strain DSM 10664 / DCB-2)","na":3,"nb":2,"a":[["Pfam%3APF17425","Arylsulfotransferase Ig-like domain"],["Pfam%3APF10087","Uncharacterized protein conserved in bacteria (DUF2325)"],["Pfam%3APF05935","Arylsulfotransferase (ASST)"]],"b":[["NCBITaxon%3A49338","Desulfitobacterium hafniense"],["NCBITaxon%3A272564","Desulfitobacterium hafniense DCB-2"]]},{"id":"NCBITaxon:273121","l":"Wolinella succinogenes ATCC 29543","na":3,"nb":2,"a":[["Pfam%3APF26365","Apolipoprotein N-acyltransferase integral membrane domain"],["Pfam%3APF02335","Cytochrome c552"],["PROSITE%3APS00883","Nickel-dependent hydrogenases b-type cytochrome subunit signature 2"]],"b":[["NCBITaxon%3A844","Wolinella succinogenes"],["NCBITaxon%3A273121","Wolinella succinogenes DSM 1740"]]},{"id":"NCBITaxon:2747968","l":"Fusarium vanettenii","na":3,"nb":2,"a":[["Pfam%3APF01083","Cutinase"],["PROSITE%3APS00155","Cutinase, serine active site"],["PROSITE%3APS00931","Cutinase, aspartate and histidine active sites"]],"b":[["NCBITaxon%3A2747968","Fusarium vanettenii"],["NCBITaxon%3A660122","Fusarium vanettenii 77-13-4"]]},{"id":"NCBITaxon:2765360","l":"Massilia antarctica","na":3,"nb":2,"a":[["TED%3AAF-A0A7S9UFA6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S9UFA6-F1-model_v4_TED01"],["TED%3AAF-A0A7S9UI56-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S9UI56-F1-model_v4_TED01"],["TED%3AAF-A0A7S9Y9R6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7S9Y9R6-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2765360","Massilia antarctica"],["NCBITaxon%3A2996459","Massilia antarctica subsp. insulae"]]},{"id":"NCBITaxon:28077","l":"Nitrospirillum amazonense","na":3,"nb":2,"a":[["TED%3AAF-A0A560EXE1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A560EXE1-F1-model_v4_TED01"],["TED%3AAF-A0A560KI49-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A560KI49-F1-model_v4_TED01"],["TED%3AAF-A0A560FRY1-F1-model_v4_TED02","TED novel fold AF-A0A560FRY1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A28077","Nitrospirillum amazonense"],["NCBITaxon%3A3144925","Nitrospirillum viridazoti"]]},{"id":"NCBITaxon:28115","l":"Porphyromonas macacae","na":2,"nb":3,"a":[["TED%3AAF-A0A379E7L0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A379E7L0-F1-model_v4_TED01"],["TED%3AAF-A0A379E9C9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A379E9C9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28115","Porphyromonas macacae"],["NCBITaxon%3A1122974","Porphyromonas macacae DSM 20710 = JCM 13914"],["NCBITaxon%3A1236521","Porphyromonas macacae JCM 15984"]]},{"id":"NCBITaxon:284016","l":"Phenylobacterium zucineum","na":3,"nb":2,"a":[["TED%3AAF-A0A2W5PXN0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2W5PXN0-F1-model_v4_TED03"],["TED%3AAF-A0A227JQY1-F1-model_v4_TED01","TED novel fold AF-A0A227JQY1-F1-model_v4_TED01"],["TED%3AAF-A0A2W5RE76-F1-model_v4_TED01","TED novel fold AF-A0A2W5RE76-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A284016","Phenylobacterium zucineum"],["NCBITaxon%3A450851","Phenylobacterium zucineum HLK1"]]},{"id":"NCBITaxon:29320","l":"Paenarthrobacter nicotinovorans","na":2,"nb":3,"a":[["Pfam%3APF22607","FAD binding domain-like"],["Pfam%3APF06500","Esterase FrsA-like"]],"b":[["NCBITaxon%3A29320","Paenarthrobacter nicotinovorans"],["NCBITaxon%3A1304876","Paenarthrobacter nicotinovorans 231Sha2.1M6"],["NCBITaxon%3A1292042","Paenarthrobacter nicotinovorans 26Cvi1.1E"]]},{"id":"NCBITaxon:29361","l":"Faecalimonas nexilis","na":2,"nb":3,"a":[["TED%3AAF-A0A6N2UJS6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N2UJS6-F1-model_v4_TED01"],["TED%3AAF-A0A413JDE0-F1-model_v4_TED02","TED novel fold AF-A0A413JDE0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1263069","[Clostridium] nexile CAG:348"],["NCBITaxon%3A500632","[Clostridium] nexile DSM 1787"],["NCBITaxon%3A29361","Faecalimonas nexilis"]]},{"id":"NCBITaxon:305900","l":"Endozoicomonas elysicola","na":2,"nb":3,"a":[["TED%3AAF-A0A081K9I3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A081K9I3-F1-model_v4_TED01"],["TED%3AAF-A0A081KBA1-F1-model_v4_TED01","TED novel fold AF-A0A081KBA1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A305900","Endozoicomonas elysicola"],["NCBITaxon%3A1121862","Endozoicomonas elysicola DSM 22380"],["NCBITaxon%3A1091502","Endozoicomonas elysicola MKT110"]]},{"id":"NCBITaxon:309799","l":"Dictyoglomus thermophilum (strain ATCC 35947 / DSM 3960 / H-6-12)","na":3,"nb":2,"a":[["Pfam%3APF09094","Alpha-amylase/4-alpha-glucanotransferase, middle domain"],["Pfam%3APF09095","Alpha-amylase/4-alpha-glucanotransferase, C-terminal"],["TED%3AAF-B5YB33-F1-model_v4_TED01","TED highly-symmetric fold AF-B5YB33-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A14","Dictyoglomus thermophilum"],["NCBITaxon%3A309799","Dictyoglomus thermophilum H-6-12"]]},{"id":"NCBITaxon:321967","l":"Lacticaseibacillus paracasei (strain ATCC 334 / BCRC 17002 / CCUG 31169 / CIP 107868 / KCTC 3260 / NRRL B-441)","na":3,"nb":2,"a":[["Pfam%3APF11975","Family 4 glycosyl hydrolase C-terminal domain"],["Pfam%3APF02056","Family 4 glycosyl hydrolase"],["PROSITE%3APS01324","Glycosyl hydrolases family 4 signature"]],"b":[["NCBITaxon%3A1597","Lacticaseibacillus paracasei"],["NCBITaxon%3A321967","Lacticaseibacillus paracasei ATCC 334"]]},{"id":"NCBITaxon:331636","l":"Chlamydophila psittaci (strain ATCC VR-125 / 6BC)","na":3,"nb":2,"a":[["Pfam%3APF01345","CLIPPER domain"],["Pfam%3APF04413","3-Deoxy-D-manno-octulosonic-acid transferase (kdotransferase)"],["Pfam%3APF03503","Chlamydia cysteine-rich outer membrane protein 3"]],"b":[["NCBITaxon%3A83554","Chlamydia psittaci"],["NCBITaxon%3A331636","Chlamydia psittaci 6BC"]]},{"id":"NCBITaxon:335543","l":"","na":3,"nb":2,"a":[["Pfam%3APF03746","LamB/YcsF family"],["Pfam%3APF03588","Leucyl/phenylalanyl-tRNA protein transferase"],["Pfam%3APF05167","Uncharacterised ACR (DUF711)"]],"b":[["NCBITaxon%3A119484","Syntrophobacter fumaroxidans"],["NCBITaxon%3A335543","Syntrophobacter fumaroxidans MPOB"]]},{"id":"NCBITaxon:340102","l":"","na":3,"nb":2,"a":[["Pfam%3APF22039","Imidazolonepropionase-like composite domain, bacteria"],["Pfam%3APF01949","Endonuclease dU"],["TED%3AAF-A4WK08-F1-model_v4_TED01","TED novel fold AF-A4WK08-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A121277","Pyrobaculum arsenaticum"],["NCBITaxon%3A340102","Pyrobaculum arsenaticum DSM 13514"]]},{"id":"NCBITaxon:347834","l":"Rhizobium etli (strain ATCC 51251 / DSM 11541 / JCM 21823 / NBRC 15573 / CFN 42)","na":3,"nb":2,"a":[["Pfam%3APF02632","BioY family"],["proteintraitsmech%3AELIFE109154_VbsL","Vicibactin acyl-hydroxyornithine epimerase family"],["PROSITE%3APS01349","Nodulation protein nodA signature"]],"b":[["NCBITaxon%3A29449","Rhizobium etli"],["NCBITaxon%3A347834","Rhizobium etli CFN 42"]]},{"id":"NCBITaxon:349124","l":"Halorhodospira halophila (strain DSM 244 / SL1)","na":3,"nb":2,"a":[["Pfam%3APF02639","Uncharacterized BCR, YaiI/YqxD family COG1671"],["Pfam%3APF20543","N2-fixation sustaining protein CowN"],["Pfam%3APF07311","Dodecin"]],"b":[["NCBITaxon%3A1053","Halorhodospira halophila"],["NCBITaxon%3A349124","Halorhodospira halophila SL1"]]},{"id":"NCBITaxon:349741","l":"Akkermansia muciniphila (strain ATCC BAA-835 / DSM 22959 / JCM 33894 / BCRC 81048 / CCUG 64013 / CIP 107961 / Muc)","na":3,"nb":2,"a":[["Pfam%3APF23763","GLAA-B beta-barrel domain I"],["Pfam%3APF23764","GLAA-B beta-barrel domain II"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"]],"b":[["NCBITaxon%3A239935","Akkermansia muciniphila"],["NCBITaxon%3A349741","Akkermansia muciniphila ATCC BAA-835"]]},{"id":"NCBITaxon:357804","l":"Psychromonas ingrahamii (strain DSM 17664 / CCUG 51855 / 37)","na":3,"nb":2,"a":[["Pfam%3APF27465","DNA-binding protein Fis N-terminal domain"],["Pfam%3APF04363","Protein of unknown function (DUF496)"],["Pfam%3APF18955","Domain of unknown function (DUF5698)"]],"b":[["NCBITaxon%3A357794","Psychromonas ingrahamii"],["NCBITaxon%3A357804","Psychromonas ingrahamii 37"]]},{"id":"NCBITaxon:357809","l":"Lachnoclostridium phytofermentans ISDg","na":3,"nb":2,"a":[["Pfam%3APF09508","Lacto-N-biose phosphorylase N-terminal TIM barrel domain"],["Pfam%3APF17386","Lacto-N-biose phosphorylase C-terminal domain"],["Pfam%3APF17385","Lacto-N-biose phosphorylase central domain"]],"b":[["NCBITaxon%3A66219","Lachnoclostridium phytofermentans"],["NCBITaxon%3A357809","Lachnoclostridium phytofermentans ISDg"]]},{"id":"NCBITaxon:362976","l":"Haloquadratum walsbyi (strain DSM 16790 / HBSQ001)","na":3,"nb":2,"a":[["Pfam%3APF01986","Domain of unknown function DUF123"],["PROSITE%3APS00950","Bacterial rhodopsins signature 1"],["PROSITE%3APS00327","Bacterial rhodopsins retinal binding site"]],"b":[["NCBITaxon%3A293091","Haloquadratum walsbyi"],["NCBITaxon%3A362976","Haloquadratum walsbyi DSM 16790"]]},{"id":"NCBITaxon:363265","l":"Leyella stercorea","na":2,"nb":3,"a":[["TED%3AAF-A0A415GCN6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A415GCN6-F1-model_v4_TED04"],["TED%3AAF-A0A3R6FHW9-F1-model_v4_TED01","TED novel fold AF-A0A3R6FHW9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A363265","Leyella stercorea"],["NCBITaxon%3A1263103","Leyella stercorea CAG:629"],["NCBITaxon%3A1002367","Leyella stercorea DSM 18206"]]},{"id":"NCBITaxon:367928","l":"Bifidobacterium adolescentis (strain ATCC 15703 / DSM 20083 / NCTC 11814 / E194a)","na":3,"nb":2,"a":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["Pfam%3APF02156","Glycosyl hydrolase family 26"],["Pfam%3APF27512","LeuD_N"]],"b":[["NCBITaxon%3A1680","Bifidobacterium adolescentis"],["NCBITaxon%3A367928","Bifidobacterium adolescentis ATCC 15703"]]},{"id":"NCBITaxon:376686","l":"","na":3,"nb":2,"a":[["Pfam%3APF17957","Bacterial Ig domain"],["Pfam%3APF24850","Bacillithiol biosynthesis BshC, C-terminal coiled-coil domain"],["Pfam%3APF14109","GldH lipoprotein"]],"b":[["NCBITaxon%3A986","Flavobacterium johnsoniae"],["NCBITaxon%3A376686","Flavobacterium johnsoniae UW101"]]},{"id":"NCBITaxon:381666","l":"Cupriavidus necator H16","na":3,"nb":2,"a":[["Pfam%3APF13473","Cupredoxin-like domain"],["Pfam%3APF10605","3HB-oligomer hydrolase (3HBOH)"],["Pfam%3APF21783","YNCE-like beta-propeller"]],"b":[["NCBITaxon%3A106590","Cupriavidus necator"],["NCBITaxon%3A381666","Cupriavidus necator H16"]]},{"id":"NCBITaxon:384616","l":"Pyrobaculum islandicum (strain DSM 4184 / JCM 9189 / GEO3)","na":3,"nb":2,"a":[["Pfam%3APF01941","S-adenosylmethionine synthetase (AdoMet synthetase)"],["Pfam%3APF11520","Chromatin protein Cren7"],["Pfam%3APF05167","Uncharacterised ACR (DUF711)"]],"b":[["NCBITaxon%3A2277","Pyrobaculum islandicum"],["NCBITaxon%3A384616","Pyrobaculum islandicum DSM 4184"]]},{"id":"NCBITaxon:384676","l":"Pseudomonas entomophila L48","na":3,"nb":2,"a":[["Pfam%3APF18063","Beta barrel Pore-forming domain"],["Pfam%3APF08548","Peptidase M10 serralysin C terminal"],["TED%3AAF-Q1I2P2-F1-model_v4_TED01","TED novel fold AF-Q1I2P2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A312306","Pseudomonas entomophila"],["NCBITaxon%3A384676","Pseudomonas entomophila L48"]]},{"id":"NCBITaxon:391587","l":"Kordia algicida OT-1","na":3,"nb":2,"a":[["TED%3AAF-A9DJI5-F1-model_v4_TED02","TED highly-symmetric fold AF-A9DJI5-F1-model_v4_TED02"],["TED%3AAF-A9E7Y3-F1-model_v4_TED02","TED highly-symmetric fold AF-A9E7Y3-F1-model_v4_TED02"],["TED%3AAF-A9E6S0-F1-model_v4_TED02","TED novel fold AF-A9E6S0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A221066","Kordia algicida"],["NCBITaxon%3A391587","Kordia algicida OT-1"]]},{"id":"NCBITaxon:392500","l":"Shewanella woodyi ATCC 51908","na":3,"nb":2,"a":[["Pfam%3APF23763","GLAA-B beta-barrel domain I"],["TED%3AAF-B1KH33-F1-model_v4_TED01","TED novel fold AF-B1KH33-F1-model_v4_TED01"],["TED%3AAF-B1KQT1-F1-model_v4_TED01","TED novel fold AF-B1KQT1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A60961","Shewanella woodyi"],["NCBITaxon%3A392500","Shewanella woodyi ATCC 51908"]]},{"id":"NCBITaxon:394503","l":"Ruminiclostridium cellulolyticum H10","na":3,"nb":2,"a":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["PROSITE%3APS00812","Glycosyl hydrolases family 8 signature"],["Pfam%3APF01270","Glycosyl hydrolases family 8"]],"b":[["NCBITaxon%3A1521","Ruminiclostridium cellulolyticum"],["NCBITaxon%3A394503","Ruminiclostridium cellulolyticum H10"]]},{"id":"NCBITaxon:39488","l":"Anaerobutyricum hallii","na":2,"nb":3,"a":[["TED%3AAF-A0A414B1Y3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A414B1Y3-F1-model_v4_TED01"],["TED%3AAF-A0A415G3S7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A415G3S7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A39488","Anaerobutyricum hallii"],["NCBITaxon%3A1263078","Anaerobutyricum hallii CAG:12"],["NCBITaxon%3A411469","Anaerobutyricum hallii DSM 3353"]]},{"id":"NCBITaxon:400667","l":"","na":3,"nb":2,"a":[["Pfam%3APF17074","Darcynin, domain of unknown function"],["Pfam%3APF05232","Chlorhexidine efflux transporter"],["Pfam%3APF05662","Coiled stalk of trimeric autotransporter adhesin"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A400667","Acinetobacter baumannii ATCC 17978"]]},{"id":"NCBITaxon:418240","l":"Blautia wexlerae","na":2,"nb":3,"a":[["TED%3AAF-A0A174M0A4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A174M0A4-F1-model_v4_TED02"],["TED%3AAF-A0A6L8T7F6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L8T7F6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A418240","Blautia wexlerae"],["NCBITaxon%3A1280691","Blautia wexlerae AGR2146"],["NCBITaxon%3A1121115","Blautia wexlerae DSM 19850"]]},{"id":"NCBITaxon:418699","l":"","na":3,"nb":2,"a":[["Pfam%3APF27460","ATP phosphoribosyltransferase subunit HisZ C-terminal domain"],["Pfam%3APF20543","N2-fixation sustaining protein CowN"],["PROSITE%3APS00855","Signal peptidases II signature"]],"b":[["NCBITaxon%3A418699","Azoarcus olearius"],["NCBITaxon%3A29544","Azoarcus sp."]]},{"id":"NCBITaxon:41899","l":"Burkholderia plantarii","na":3,"nb":2,"a":[["proteintraitsmech%3AELIFE109154_GrbD","GrbD-type graminine biosynthesis protein family"],["proteintraitsmech%3AELIFE109154_GrbE","GrbE-type graminine biosynthesis protein family"],["TED%3AAF-A0A0B6RMB1-F1-model_v4_TED01","TED novel fold AF-A0A0B6RMB1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A41899","Burkholderia plantarii"],["NCBITaxon%3A796107","Burkholderia plantarii MAFF 301723"]]},{"id":"NCBITaxon:419665","l":"Methanococcus aeolicus (strain ATCC BAA-1280 / DSM 17508 / OCM 812 / Nankai-3)","na":3,"nb":2,"a":[["Pfam%3APF26548","Putative peptidyl-prolyl cis-trans isomerase domain"],["Pfam%3APF06787","FeGP cofactor biosynthesis protein HcgF"],["Pfam%3APF01941","S-adenosylmethionine synthetase (AdoMet synthetase)"]],"b":[["NCBITaxon%3A42879","Methanococcus aeolicus"],["NCBITaxon%3A419665","Methanococcus aeolicus Nankai-3"]]},{"id":"NCBITaxon:439292","l":"Bacillus selenitireducens (strain ATCC 700615 / DSM 15326 / MLS10)","na":3,"nb":2,"a":[["Pfam%3APF03633","Glycosyl hydrolase family 65, C-terminal domain"],["Pfam%3APF03636","Glycosyl hydrolase family 65, N-terminal domain"],["Pfam%3APF03632","Glycosyl hydrolase family 65 central catalytic domain"]],"b":[["NCBITaxon%3A439292","[Bacillus] selenitireducens MLS10"],["NCBITaxon%3A85683","Salisediminibacterium selenitireducens"]]},{"id":"NCBITaxon:44001","l":"Caldicellulosiruptor saccharolyticus","na":3,"nb":2,"a":[["Pfam%3APF12891","Glycoside hydrolase family 44"],["PROSITE%3APS01027","Glycosyl hydrolases family 39 active site"],["Pfam%3APF02011","Glycosyl hydrolase family 48"]],"b":[["NCBITaxon%3A44001","Caldicellulosiruptor saccharolyticus"],["NCBITaxon%3A351627","Caldicellulosiruptor saccharolyticus DSM 8903"]]},{"id":"NCBITaxon:444178","l":"Brucella ovis (strain ATCC 25840 / 63/290 / NCTC 10512)","na":3,"nb":2,"a":[["Pfam%3APF05128","Domain of unknown function (DUF697)"],["Pfam%3APF06411","HdeA/HdeB family"],["Pfam%3APF07886","BA14K-like protein"]],"b":[["NCBITaxon%3A236","Brucella ovis"],["NCBITaxon%3A444178","Brucella ovis ATCC 25840"]]},{"id":"NCBITaxon:447","l":"Legionella bozemanae","na":2,"nb":3,"a":[["TED%3AAF-A0A0W0RGI2-F1-model_v4_TED01","TED novel fold AF-A0A0W0RGI2-F1-model_v4_TED01"],["TED%3AAF-A0A0W0RQT5-F1-model_v4_TED01","TED novel fold AF-A0A0W0RQT5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A447","Legionella bozemanae"],["NCBITaxon%3A66973","Legionella bozemanae serogroup 1"],["NCBITaxon%3A66974","Legionella bozemanae serogroup 2"]]},{"id":"NCBITaxon:448385","l":"","na":3,"nb":2,"a":[["TED%3AAF-A9FYP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A9FYP8-F1-model_v4_TED01"],["TED%3AAF-A9G932-F1-model_v4_TED01","TED highly-symmetric fold AF-A9G932-F1-model_v4_TED01"],["TED%3AAF-A9F9E5-F1-model_v4_TED01","TED novel fold AF-A9F9E5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A56","Sorangium cellulosum"],["NCBITaxon%3A448385","Sorangium cellulosum So ce56"]]},{"id":"NCBITaxon:45658","l":"Vibrio scophthalmi","na":2,"nb":3,"a":[["TED%3AAF-A0A1B1NNY0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B1NNY0-F1-model_v4_TED01"],["TED%3AAF-A0A1C7FC26-F1-model_v4_TED03","TED novel fold AF-A0A1C7FC26-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2946866","Vibrio methylphosphonaticus"],["NCBITaxon%3A45658","Vibrio scophthalmi"],["NCBITaxon%3A870967","Vibrio scophthalmi LMG 19158"]]},{"id":"NCBITaxon:456999","l":"Rhizoctonia solani","na":2,"nb":3,"a":[["TED%3AAF-A0A0K6FTW9-F1-model_v4_TED04","TED novel fold AF-A0A0K6FTW9-F1-model_v4_TED04"],["TED%3AAF-A0A0K6GEX0-F1-model_v4_TED01","TED novel fold AF-A0A0K6GEX0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A456999","Rhizoctonia solani"],["NCBITaxon%3A983506","Rhizoctonia solani AG-1 IA"],["NCBITaxon%3A1086053","Rhizoctonia solani AG-3"]]},{"id":"NCBITaxon:4922","l":"Komagataella pastoris","na":3,"nb":2,"a":[["Pfam%3APF26001","Peroxin 8 protein-like, N-terminal domain"],["Pfam%3APF27812","PEX8 central TPR-like domain"],["TED%3AAF-A0A1B2J8F2-F1-model_v4_TED02","TED novel fold AF-A0A1B2J8F2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A4922","Komagataella pastoris"],["NCBITaxon%3A638632","Komagataella pastoris DSMZ 70382"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":3,"nb":2,"a":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF22277","EncFtn-like"],["TED%3AAF-D0LJ11-F1-model_v4_TED04","TED highly-symmetric fold AF-D0LJ11-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A80816","Haliangium ochraceum"],["NCBITaxon%3A502025","Haliangium ochraceum DSM 14365"]]},{"id":"NCBITaxon:5334","l":"Schizophyllum commune","na":3,"nb":2,"a":[["Pfam%3APF04611","Mating type protein A alpha Y mating type dependent binding region"],["Pfam%3APF01185","Fungal hydrophobin"],["PROSITE%3APS00956","Fungal hydrophobins signature"]],"b":[["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A5334","Schizophyllum commune"]]},{"id":"NCBITaxon:555970","l":"","na":2,"nb":3,"a":[["PROSITE%3APS60002","Phosphoketolase signature 1"],["PROSITE%3APS60003","Phosphoketolase signature 2"]],"b":[["NCBITaxon%3A28025","Bifidobacterium animalis"],["NCBITaxon%3A302911","Bifidobacterium animalis subsp. lactis"],["NCBITaxon%3A555970","Bifidobacterium animalis subsp. lactis DSM 10140"]]},{"id":"NCBITaxon:561007","l":"Mycobacteroides abscessus (strain ATCC 19977 / DSM 44196 / CCUG 20993 / CIP 104536 / JCM 13569 / NCTC 13031 / TMC 1543 / L948)","na":2,"nb":3,"a":[["Pfam%3APF18089","DAPG hydrolase PhiG domain"],["Pfam%3APF13492","GAF domain"]],"b":[["NCBITaxon%3A36809","Mycobacteroides abscessus"],["NCBITaxon%3A561007","Mycobacteroides abscessus ATCC 19977"],["NCBITaxon%3A1185650","Mycobacteroides abscessus subsp. abscessus"]]},{"id":"NCBITaxon:568706","l":"","na":3,"nb":2,"a":[["IDPO%3A0000011","disorder to order"],["PROSITE%3APS00330","Hemolysin-type calcium-binding region signature"],["Pfam%3APF06594","Haemolysin-type calcium binding protein related domain"]],"b":[["NCBITaxon%3A520","Bordetella pertussis"],["NCBITaxon%3A568706","Bordetella pertussis 18323"]]},{"id":"NCBITaxon:585503","l":"Selenomonas noxia ATCC 43541","na":3,"nb":2,"a":[["TED%3AAF-D4S4I0-F1-model_v4_TED02","TED highly-symmetric fold AF-D4S4I0-F1-model_v4_TED02"],["TED%3AAF-D4S4I0-F1-model_v4_TED03","TED highly-symmetric fold AF-D4S4I0-F1-model_v4_TED03"],["TED%3AAF-D4S5Z2-F1-model_v4_TED05","TED novel fold AF-D4S5Z2-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A135083","Centipeda noxia"],["NCBITaxon%3A585503","Centipeda noxia ATCC 43541"]]},{"id":"NCBITaxon:59405","l":"Thauera aromatica","na":2,"nb":3,"a":[["Pfam%3APF18512","Benzylsuccinate synthase beta subunit"],["Pfam%3APF08201","BssC/TutF protein"]],"b":[["NCBITaxon%3A59405","Thauera aromatica"],["NCBITaxon%3A859322","Thauera aromatica 3CB2"],["NCBITaxon%3A44139","Thauera aromatica K172"]]},{"id":"NCBITaxon:634497","l":"Haloarcula hispanica (strain ATCC 33960 / DSM 4426 / JCM 8911 / NBRC 102182 / NCIMB 2187 / VKM B-1755)","na":3,"nb":2,"a":[["Pfam%3APF23951","Domain of unknown function (DUF7282)"],["Pfam%3APF25162","Domain of unknown function (DUF7827)"],["Pfam%3APF18204","PGF-CTERM motif"]],"b":[["NCBITaxon%3A51589","Haloarcula hispanica"],["NCBITaxon%3A634497","Haloarcula hispanica ATCC 33960"]]},{"id":"NCBITaxon:644282","l":"Desulfarculus baarsii (strain ATCC 33931 / DSM 2075 / LMG 7858 / VKM B-1802 / 2st14)","na":3,"nb":2,"a":[["Pfam%3APF06397","Desulfoferrodoxin, N-terminal domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["TED%3AAF-E1QLH8-F1-model_v4_TED02","TED novel fold AF-E1QLH8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A453230","Desulfarculus baarsii"],["NCBITaxon%3A644282","Desulfarculus baarsii DSM 2075"]]},{"id":"NCBITaxon:645462","l":"Clostridioides difficile (strain CD196)","na":2,"nb":3,"a":[["Pfam%3APF18671","4-Hydroxyphenylacetate decarboxylase subunit gamma N-terminal"],["Pfam%3APF18524","High potential iron-sulfur protein like"]],"b":[["NCBITaxon%3A1496","Clostridioides difficile"],["NCBITaxon%3A645462","Clostridioides difficile CD196"],["NCBITaxon%3A499176","Clostridioides difficile CIP 107932"]]},{"id":"NCBITaxon:646","l":"Aeromonas sobria","na":3,"nb":2,"a":[["Pfam%3APF01117","Aerolysin toxin"],["Pfam%3APF03440","Aerolysin/Pertussis toxin (APT) domain"],["PROSITE%3APS00274","Aerolysin type toxins signature"]],"b":[["NCBITaxon%3A646","Aeromonas sobria"],["NCBITaxon%3A654","Aeromonas veronii"]]},{"id":"NCBITaxon:647720","l":"Shimia isoporae","na":2,"nb":3,"a":[["TED%3AAF-A0A4R1NAD6-F1-model_v4_TED01","TED novel fold AF-A0A4R1NAD6-F1-model_v4_TED01"],["TED%3AAF-A0A4R1NBY7-F1-model_v4_TED03","TED novel fold AF-A0A4R1NBY7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A487319","Shewanella marina"],["NCBITaxon%3A1236542","Shewanella marina JCM 15074"],["NCBITaxon%3A647720","Shimia isoporae"]]},{"id":"NCBITaxon:661478","l":"Fimbriimonas ginsengisoli Gsoil 348","na":3,"nb":2,"a":[["TED%3AAF-A0A068NS74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A068NS74-F1-model_v4_TED01"],["TED%3AAF-A0A068NSB0-F1-model_v4_TED02","TED novel fold AF-A0A068NSB0-F1-model_v4_TED02"],["TED%3AAF-A0A068NX35-F1-model_v4_TED03","TED novel fold AF-A0A068NX35-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1005039","Fimbriimonas ginsengisoli"],["NCBITaxon%3A661478","Fimbriimonas ginsengisoli Gsoil 348"]]},{"id":"NCBITaxon:678","l":"Vibrio sp.","na":2,"nb":3,"a":[["Pfam%3APF17851","Beta xylosidase C-terminal Concanavalin A-like domain"],["Pfam%3APF11606","Family 31 carbohydrate binding protein"]],"b":[["NCBITaxon%3A2077090","Vibrio gangliei"],["NCBITaxon%3A678","Vibrio sp."],["NCBITaxon%3A1046128","Vibrio zhanjiangensis"]]},{"id":"NCBITaxon:688270","l":"Cellulophaga algicola (strain DSM 14237 / IC166 / ACAM 630)","na":3,"nb":2,"a":[["TED%3AAF-E6XBJ1-F1-model_v4_TED01","TED highly-symmetric fold AF-E6XBJ1-F1-model_v4_TED01"],["TED%3AAF-E6X960-F1-model_v4_TED02","TED novel fold AF-E6X960-F1-model_v4_TED02"],["TED%3AAF-E6XEV2-F1-model_v4_TED02","TED novel fold AF-E6XEV2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A59600","Cellulophaga algicola"],["NCBITaxon%3A688270","Cellulophaga algicola DSM 14237"]]},{"id":"NCBITaxon:746128","l":"Aspergillus fumigatus","na":2,"nb":3,"a":[["Pfam%3APF07335","Fungal chitosanase of glycosyl hydrolase group 75"],["Pfam%3APF12296","Hydrophobic surface binding protein A"]],"b":[["NCBITaxon%3A746128","Aspergillus fumigatus"],["NCBITaxon%3A451804","Aspergillus fumigatus A1163"],["NCBITaxon%3A41122","Aspergillus fumigatus var. fumigatus"]]},{"id":"NCBITaxon:82979","l":"Budvicia aquatica","na":2,"nb":3,"a":[["TED%3AAF-A0A2C6DMW2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2C6DMW2-F1-model_v4_TED01"],["TED%3AAF-A0A484ZI63-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A484ZI63-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A82979","Budvicia aquatica"],["NCBITaxon%3A1111728","Budvicia aquatica DSM 5075 = ATCC 35567"],["NCBITaxon%3A2304490","Pragia sp."]]},{"id":"NCBITaxon:83167","l":"Pseudomonas syringae pv. aptata","na":2,"nb":3,"a":[["Pfam%3APF22079","Type III effector protein HopBA1"],["Pfam%3APF04877","HrpZ"]],"b":[["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A83167","Pseudomonas syringae pv. aptata"],["NCBITaxon%3A629268","Pseudomonas syringae pv. aptata str. DSM 50252"]]},{"id":"NCBITaxon:83771","l":"Succinivibrio dextrinosolvens","na":2,"nb":3,"a":[["TED%3AAF-A0A662ZAL8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A662ZAL8-F1-model_v4_TED01"],["TED%3AAF-A0A662ZAR2-F1-model_v4_TED01","TED novel fold AF-A0A662ZAR2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A83771","Succinivibrio dextrinosolvens"],["NCBITaxon%3A1123324","Succinivibrio dextrinosolvens DSM 3072"],["NCBITaxon%3A1410676","Succinivibrio dextrinosolvens H5"]]},{"id":"NCBITaxon:85995","l":"Humicola insolens","na":3,"nb":2,"a":[["Pfam%3APF17851","Beta xylosidase C-terminal Concanavalin A-like domain"],["PROSITE%3APS00655","Glycosyl hydrolases family 6 signature 1"],["PROSITE%3APS00656","Glycosyl hydrolases family 6 signature 2"]],"b":[["NCBITaxon%3A85995","Mycothermus thermophilus"],["NCBITaxon%3A686564","Mycothermus thermophilus ATCC 16453"]]},{"id":"NCBITaxon:878","l":"Solidesulfovibrio fructosivorans","na":3,"nb":2,"a":[["Pfam%3APF27537","HoxL-like"],["PROSITE%3APS00507","Nickel-dependent hydrogenases large subunit signature 1"],["PROSITE%3APS00508","Nickel-dependent hydrogenases large subunit signature 2"]],"b":[["NCBITaxon%3A878","Solidesulfovibrio fructosivorans"],["NCBITaxon%3A596151","Solidesulfovibrio fructosivorans JJ]"]]},{"id":"NCBITaxon:879","l":"Megalodesulfovibrio gigas","na":2,"nb":3,"a":[["Pfam%3APF13370","4Fe-4S single cluster domain of Ferredoxin I"],["PROSITE%3APS00202","Rubredoxin signature"]],"b":[["NCBITaxon%3A885","Desulfovibrio sp."],["NCBITaxon%3A879","Megalodesulfovibrio gigas"],["NCBITaxon%3A1121448","Megalodesulfovibrio gigas DSM 1382 = ATCC 19364"]]},{"id":"NCBITaxon:88274","l":"delta proteobacterium NaphS2","na":3,"nb":2,"a":[["TED%3AAF-D8EY11-F1-model_v4_TED01","TED highly-symmetric fold AF-D8EY11-F1-model_v4_TED01"],["TED%3AAF-D8F978-F1-model_v4_TED02","TED highly-symmetric fold AF-D8F978-F1-model_v4_TED02"],["TED%3AAF-D8F8A3-F1-model_v4_TED01","TED novel fold AF-D8F8A3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A88274","delta proteobacterium NaphS2"]]},{"id":"NCBITaxon:885957","l":"Desulfosarcina ovata subsp. sediminis","na":3,"nb":2,"a":[["TED%3AAF-A0A5K7ZII7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5K7ZII7-F1-model_v4_TED01"],["TED%3AAF-A0A5K7ZKN4-F1-model_v4_TED02","TED novel fold AF-A0A5K7ZKN4-F1-model_v4_TED02"],["TED%3AAF-A0A5K8A0E3-F1-model_v4_TED03","TED novel fold AF-A0A5K8A0E3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A83564","Desulfosarcina ovata"],["NCBITaxon%3A885957","Desulfosarcina ovata subsp. sediminis"]]},{"id":"NCBITaxon:886293","l":"Singulisphaera acidiphila (strain ATCC BAA-1392 / DSM 18658 / VKM B-2454 / MOB10)","na":3,"nb":2,"a":[["TED%3AAF-L0DF60-F1-model_v4_TED01","TED highly-symmetric fold AF-L0DF60-F1-model_v4_TED01"],["TED%3AAF-L0DFV3-F1-model_v4_TED01","TED highly-symmetric fold AF-L0DFV3-F1-model_v4_TED01"],["TED%3AAF-L0DBJ5-F1-model_v4_TED02","TED novel fold AF-L0DBJ5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A466153","Singulisphaera acidiphila"],["NCBITaxon%3A886293","Singulisphaera acidiphila DSM 18658"]]},{"id":"NCBITaxon:97084","l":"Halobacteriovorax marinus","na":3,"nb":2,"a":[["TED%3AAF-A0A1Y5FAL2-F1-model_v4_TED01","TED novel fold AF-A0A1Y5FAL2-F1-model_v4_TED01"],["TED%3AAF-A0A1Y5FC91-F1-model_v4_TED01","TED novel fold AF-A0A1Y5FC91-F1-model_v4_TED01"],["TED%3AAF-A0A1Y5FCF4-F1-model_v4_TED02","TED novel fold AF-A0A1Y5FCF4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A97084","Halobacteriovorax marinus"],["NCBITaxon%3A862908","Halobacteriovorax marinus SJ"]]},{"id":"NCBITaxon:100884","l":"Coprobacillus cateniformis","na":2,"nb":2,"a":[["TED%3AAF-E7G7Y6-F1-model_v4_TED01","TED highly-symmetric fold AF-E7G7Y6-F1-model_v4_TED01"],["TED%3AAF-E7G976-F1-model_v4_TED02","TED highly-symmetric fold AF-E7G976-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A100884","Coprobacillus cateniformis"],["NCBITaxon%3A1297794","Coprobacillus cateniformis JCM 10604"]]},{"id":"NCBITaxon:1028307","l":"","na":2,"nb":2,"a":[["Pfam%3APF16031","TonB polyproline region"],["Pfam%3APF09078","CheY binding"]],"b":[["NCBITaxon%3A548","Klebsiella aerogenes"],["NCBITaxon%3A1028307","Klebsiella aerogenes KCTC 2190"]]},{"id":"NCBITaxon:1032480","l":"Microlunatus phosphovorus NM-1","na":2,"nb":2,"a":[["TED%3AAF-F5XIG6-F1-model_v4_TED02","TED novel fold AF-F5XIG6-F1-model_v4_TED02"],["TED%3AAF-F5XQ24-F1-model_v4_TED04","TED novel fold AF-F5XQ24-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A29405","Microlunatus phosphovorus"],["NCBITaxon%3A1032480","Microlunatus phosphovorus NM-1"]]},{"id":"NCBITaxon:1033810","l":"Haloplasma contractile SSD-17B","na":2,"nb":2,"a":[["TED%3AAF-F7PZK9-F1-model_v4_TED01","TED highly-symmetric fold AF-F7PZK9-F1-model_v4_TED01"],["TED%3AAF-U2EDU2-F1-model_v4_TED03","TED novel fold AF-U2EDU2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A471825","Haloplasma contractile"],["NCBITaxon%3A1033810","Haloplasma contractile SSD-17B"]]},{"id":"NCBITaxon:1051646","l":"Vibrio tubiashii ATCC 19109","na":2,"nb":2,"a":[["TED%3AAF-F9T5D9-F1-model_v4_TED01","TED highly-symmetric fold AF-F9T5D9-F1-model_v4_TED01"],["TED%3AAF-F9T6Q9-F1-model_v4_TED01","TED highly-symmetric fold AF-F9T6Q9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29498","Vibrio tubiashii"],["NCBITaxon%3A1051646","Vibrio tubiashii ATCC 19109"]]},{"id":"NCBITaxon:105351","l":"Aspergillus awamori","na":2,"nb":2,"a":[["PROSITE%3APS00820","Glucoamylase active site region signature"],["TED%3AAF-A0A401KM36-F1-model_v4_TED03","TED novel fold AF-A0A401KM36-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A105351","Aspergillus awamori"],["NCBITaxon%3A309746","Aspergillus awamori var. piceus"]]},{"id":"NCBITaxon:1071","l":"Rhodopila globiformis","na":2,"nb":2,"a":[["TED%3AAF-A0A2S6NEC8-F1-model_v4_TED01","TED novel fold AF-A0A2S6NEC8-F1-model_v4_TED01"],["TED%3AAF-A0A2S6NJW5-F1-model_v4_TED01","TED novel fold AF-A0A2S6NJW5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A563170","Ferruginibacter alkalilentus"],["NCBITaxon%3A1071","Rhodopila globiformis"]]},{"id":"NCBITaxon:1073999","l":"Cronobacter condimenti 1330","na":2,"nb":2,"a":[["TED%3AAF-K8A163-F1-model_v4_TED01","TED highly-symmetric fold AF-K8A163-F1-model_v4_TED01"],["TED%3AAF-K8A2Z7-F1-model_v4_TED01","TED highly-symmetric fold AF-K8A2Z7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1163710","Cronobacter condimenti"],["NCBITaxon%3A1073999","Cronobacter condimenti 1330"]]},{"id":"NCBITaxon:1108045","l":"Gordonia rhizosphera NBRC 16068","na":2,"nb":2,"a":[["TED%3AAF-K6W7E5-F1-model_v4_TED03","TED highly-symmetric fold AF-K6W7E5-F1-model_v4_TED03"],["TED%3AAF-K6V733-F1-model_v4_TED02","TED novel fold AF-K6V733-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A83341","Gordonia rhizosphera"],["NCBITaxon%3A1108045","Gordonia rhizosphera NBRC 16068"]]},{"id":"NCBITaxon:1115515","l":"Pseudescherichia vulneris NBRC 102420","na":2,"nb":2,"a":[["TED%3AAF-A0A090UX33-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A090UX33-F1-model_v4_TED05"],["TED%3AAF-A0A090V6A2-F1-model_v4_TED01","TED novel fold AF-A0A090V6A2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A566","Pseudescherichia vulneris"],["NCBITaxon%3A1115515","Pseudescherichia vulneris NBRC 102420"]]},{"id":"NCBITaxon:1116389","l":"Devosia insulae DS-56","na":2,"nb":2,"a":[["TED%3AAF-A0A1E5XN43-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1E5XN43-F1-model_v4_TED02"],["TED%3AAF-A0A1E5XX71-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1E5XX71-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A408174","Devosia insulae"],["NCBITaxon%3A1116389","Devosia insulae DS-56"]]},{"id":"NCBITaxon:1120925","l":"Acinetobacter bouvetii DSM 14964 = CIP 107468","na":2,"nb":2,"a":[["proteintraitsmech%3AELIFE109154_VibH_like","VibH-like metallophore standalone condensation enzyme family"],["TED%3AAF-N9C7M4-F1-model_v4_TED02","TED novel fold AF-N9C7M4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A202951","Acinetobacter bouvetii"],["NCBITaxon%3A1120925","Acinetobacter bouvetii DSM 14964 = CIP 107468"]]},{"id":"NCBITaxon:1121264","l":"Caloranaerobacter azorensis DSM 13643","na":2,"nb":2,"a":[["TED%3AAF-A0A1M5V0T2-F1-model_v4_TED02","TED novel fold AF-A0A1M5V0T2-F1-model_v4_TED02"],["TED%3AAF-A0A1M5V0T2-F1-model_v4_TED03","TED novel fold AF-A0A1M5V0T2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A116090","Caloranaerobacter azorensis"],["NCBITaxon%3A1121264","Caloranaerobacter azorensis DSM 13643"]]},{"id":"NCBITaxon:1121279","l":"Chitinimonas taiwanensis DSM 18899","na":2,"nb":2,"a":[["TED%3AAF-A0A1K2HNH6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1K2HNH6-F1-model_v4_TED02"],["TED%3AAF-A0A1K2HS13-F1-model_v4_TED04","TED novel fold AF-A0A1K2HS13-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A240412","Chitinimonas taiwanensis"],["NCBITaxon%3A1121279","Chitinimonas taiwanensis DSM 18899"]]},{"id":"NCBITaxon:1121395","l":"Desulfitobacterium chlororespirans DSM 11544","na":2,"nb":2,"a":[["TED%3AAF-A0A1M7UUA6-F1-model_v4_TED02","TED novel fold AF-A0A1M7UUA6-F1-model_v4_TED02"],["TED%3AAF-A0A1M7UUA6-F1-model_v4_TED03","TED novel fold AF-A0A1M7UUA6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A51616","Desulfitobacterium chlororespirans"],["NCBITaxon%3A1121395","Desulfitobacterium chlororespirans DSM 11544"]]},{"id":"NCBITaxon:1121419","l":"Desulfosporosinus hippei DSM 8344","na":2,"nb":2,"a":[["TED%3AAF-A0A1G8D348-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G8D348-F1-model_v4_TED01"],["TED%3AAF-A0A1G8CVS7-F1-model_v4_TED01","TED novel fold AF-A0A1G8CVS7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A569859","Desulfosporosinus hippei"],["NCBITaxon%3A1121419","Desulfosporosinus hippei DSM 8344"]]},{"id":"NCBITaxon:1121868","l":"Enterovibrio nigricans DSM 22720","na":2,"nb":2,"a":[["TED%3AAF-A0A1T4UXP3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1T4UXP3-F1-model_v4_TED01"],["TED%3AAF-A0A1T4VT23-F1-model_v4_TED01","TED novel fold AF-A0A1T4VT23-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A504469","Enterovibrio nigricans"],["NCBITaxon%3A1121868","Enterovibrio nigricans DSM 22720"]]},{"id":"NCBITaxon:1121886","l":"Flavobacterium croceum DSM 17960","na":2,"nb":2,"a":[["TED%3AAF-A0A2S4N5H0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2S4N5H0-F1-model_v4_TED03"],["TED%3AAF-A0A2S4N9Y2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2S4N9Y2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A370975","Flavobacterium croceum"],["NCBITaxon%3A1121886","Flavobacterium croceum DSM 17960"]]},{"id":"NCBITaxon:1121955","l":"Hymenobacter daecheongensis DSM 21074","na":2,"nb":2,"a":[["TED%3AAF-A0A1M6EGP6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M6EGP6-F1-model_v4_TED02"],["TED%3AAF-A0A1M6M5E1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M6M5E1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A496053","Hymenobacter daecheongensis"],["NCBITaxon%3A1121955","Hymenobacter daecheongensis DSM 21074"]]},{"id":"NCBITaxon:1122192","l":"Marinactinospora thermotolerans DSM 45154","na":2,"nb":2,"a":[["TED%3AAF-A0A1T4KF05-F1-model_v4_TED04","TED novel fold AF-A0A1T4KF05-F1-model_v4_TED04"],["TED%3AAF-A0A1T4TG93-F1-model_v4_TED01","TED novel fold AF-A0A1T4TG93-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A531310","Marinactinospora thermotolerans"],["NCBITaxon%3A1122192","Marinactinospora thermotolerans DSM 45154"]]},{"id":"NCBITaxon:1123404","l":"Tissierella praeacuta DSM 18095","na":2,"nb":2,"a":[["TED%3AAF-A0A1M4YWW1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M4YWW1-F1-model_v4_TED01"],["TED%3AAF-A0A1M4X8A7-F1-model_v4_TED01","TED novel fold AF-A0A1M4X8A7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A43131","Tissierella praeacuta"],["NCBITaxon%3A1123404","Tissierella praeacuta DSM 18095"]]},{"id":"NCBITaxon:11247","l":"Bovine respiratory syncytial virus (strain A51908)","na":2,"nb":2,"a":[["Pfam%3APF00523","Fusion glycoprotein F0"],["Pfam%3APF00802","Pneumovirus attachment glycoprotein G"]],"b":[["NCBITaxon%3A60961","Shewanella woodyi"],["NCBITaxon%3A392500","Shewanella woodyi ATCC 51908"]]},{"id":"NCBITaxon:1177179","l":"Alcanivorax hongdengensis A-11-3","na":2,"nb":2,"a":[["TED%3AAF-L0WEI9-F1-model_v4_TED02","TED highly-symmetric fold AF-L0WEI9-F1-model_v4_TED02"],["TED%3AAF-L0WAP4-F1-model_v4_TED02","TED novel fold AF-L0WAP4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A519051","Alcanivorax hongdengensis"],["NCBITaxon%3A1177179","Alcanivorax hongdengensis A-11-3"]]},{"id":"NCBITaxon:1184267","l":"Pseudobdellovibrio exovorus JSS","na":2,"nb":2,"a":[["TED%3AAF-M4VA20-F1-model_v4_TED02","TED highly-symmetric fold AF-M4VA20-F1-model_v4_TED02"],["TED%3AAF-M4VEE5-F1-model_v4_TED01","TED highly-symmetric fold AF-M4VEE5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A453816","Pseudobdellovibrio exovorus"],["NCBITaxon%3A1184267","Pseudobdellovibrio exovorus JSS"]]},{"id":"NCBITaxon:1185650","l":"Mycobacteroides abscessus subsp. abscessus","na":2,"nb":2,"a":[["TED%3AAF-A0A8B4EU15-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B4EU15-F1-model_v4_TED01"],["TED%3AAF-A0A8B4ERD5-F1-model_v4_TED01","TED novel fold AF-A0A8B4ERD5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A36809","Mycobacteroides abscessus"],["NCBITaxon%3A1185650","Mycobacteroides abscessus subsp. abscessus"]]},{"id":"NCBITaxon:1189310","l":"Corallococcus macrosporus DSM 14697","na":2,"nb":2,"a":[["TED%3AAF-A0A250JQZ3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A250JQZ3-F1-model_v4_TED02"],["TED%3AAF-A0A250K364-F1-model_v4_TED01","TED novel fold AF-A0A250K364-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A35","Corallococcus macrosporus"],["NCBITaxon%3A1189310","Corallococcus macrosporus DSM 14697"]]},{"id":"NCBITaxon:1192854","l":"Granulosicoccus antarcticus IMCC3135","na":2,"nb":2,"a":[["TED%3AAF-A0A2Z2NPF3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2Z2NPF3-F1-model_v4_TED03"],["TED%3AAF-A0A2Z2P0Z5-F1-model_v4_TED01","TED novel fold AF-A0A2Z2P0Z5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A437505","Granulosicoccus antarcticus"],["NCBITaxon%3A1192854","Granulosicoccus antarcticus IMCC3135"]]},{"id":"NCBITaxon:119641","l":"Clostridium uliginosum","na":2,"nb":2,"a":[["TED%3AAF-A0A1I1R8X9-F1-model_v4_TED03","TED novel fold AF-A0A1I1R8X9-F1-model_v4_TED03"],["TED%3AAF-A0A1I1S8C7-F1-model_v4_TED03","TED novel fold AF-A0A1I1S8C7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A119641","Clostridium uliginosum"],["NCBITaxon%3A1121343","Clostridium uliginosum DSM 12992"]]},{"id":"NCBITaxon:1223802","l":"Sulfuritalea hydrogenivorans sk43H","na":2,"nb":2,"a":[["TED%3AAF-W0SFR7-F1-model_v4_TED01","TED highly-symmetric fold AF-W0SFR7-F1-model_v4_TED01"],["TED%3AAF-W0SGJ9-F1-model_v4_TED03","TED novel fold AF-W0SGJ9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A748811","Sulfuritalea hydrogenivorans"],["NCBITaxon%3A1223802","Sulfuritalea hydrogenivorans sk43H"]]},{"id":"NCBITaxon:1227453","l":"Haloarcula japonica (strain ATCC 49778 / DSM 6131 / JCM 7785 / NBRC 101032 / NCIMB 13157 / TR-1)","na":2,"nb":2,"a":[["Pfam%3APF04240","Carotenoid biosynthesis protein"],["TED%3AAF-M0LHX3-F1-model_v4_TED01","TED highly-symmetric fold AF-M0LHX3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29282","Haloarcula japonica"],["NCBITaxon%3A1227453","Haloarcula japonica DSM 6131"]]},{"id":"NCBITaxon:1227494","l":"Natrinema altunense (strain JCM 12890 / CGMCC 1.3731 / AJ2)","na":2,"nb":2,"a":[["Pfam%3APF28161","Fusexin 1"],["TED%3AAF-L9ZJ05-F1-model_v4_TED02","TED highly-symmetric fold AF-L9ZJ05-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A222984","Natrinema altunense"],["NCBITaxon%3A1227494","Natrinema altunense JCM 12890"]]},{"id":"NCBITaxon:1231","l":"Nitrosospira multiformis","na":2,"nb":2,"a":[["TED%3AAF-A0A1I0DRD9-F1-model_v4_TED01","TED novel fold AF-A0A1I0DRD9-F1-model_v4_TED01"],["TED%3AAF-A0A2T5IBV5-F1-model_v4_TED01","TED novel fold AF-A0A2T5IBV5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1231","Nitrosospira multiformis"],["NCBITaxon%3A323848","Nitrosospira multiformis ATCC 25196"]]},{"id":"NCBITaxon:123214","l":"Persephonella marina (strain DSM 14350 / EX-H1)","na":2,"nb":2,"a":[["PROSITE%3APS01228","Hypothetical cof family signature 1"],["TED%3AAF-C0QUQ0-F1-model_v4_TED01","TED highly-symmetric fold AF-C0QUQ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A309805","Persephonella marina"],["NCBITaxon%3A123214","Persephonella marina EX-H1"]]},{"id":"NCBITaxon:1236504","l":"Prevotella histicola JCM 15637 = DNF00424","na":2,"nb":2,"a":[["TED%3AAF-A0A095Z5H5-F1-model_v4_TED02","TED novel fold AF-A0A095Z5H5-F1-model_v4_TED02"],["TED%3AAF-A0A096B9P0-F1-model_v4_TED01","TED novel fold AF-A0A096B9P0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A470565","Prevotella histicola"],["NCBITaxon%3A1236504","Prevotella histicola JCM 15637 = DNF00424"]]},{"id":"NCBITaxon:1278073","l":"","na":2,"nb":2,"a":[["TED%3AAF-L7U5Z3-F1-model_v4_TED02","TED novel fold AF-L7U5Z3-F1-model_v4_TED02"],["TED%3AAF-L7UEI7-F1-model_v4_TED03","TED novel fold AF-L7UEI7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A83455","Myxococcus stipitatus"],["NCBITaxon%3A1278073","Myxococcus stipitatus DSM 14675"]]},{"id":"NCBITaxon:1283301","l":"Streptomyces afghaniensis 772","na":2,"nb":2,"a":[["TED%3AAF-S4MYJ0-F1-model_v4_TED01","TED highly-symmetric fold AF-S4MYJ0-F1-model_v4_TED01"],["TED%3AAF-S4N3X6-F1-model_v4_TED01","TED novel fold AF-S4N3X6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A66865","Streptomyces afghaniensis"],["NCBITaxon%3A1283301","Streptomyces afghaniensis 772"]]},{"id":"NCBITaxon:1284","l":"Staphylococcus hyicus","na":2,"nb":2,"a":[["Pfam%3APF04650","YSIRK type signal peptide"],["PROSITE%3APS01123","Thermonuclease family signature 1"]],"b":[["NCBITaxon%3A1284","Staphylococcus hyicus"],["NCBITaxon%3A29387","Staphylococcus sp."]]},{"id":"NCBITaxon:1286635","l":"Desulfotignum phosphitoxidans DSM 13687","na":2,"nb":2,"a":[["TED%3AAF-S0G346-F1-model_v4_TED01","TED highly-symmetric fold AF-S0G346-F1-model_v4_TED01"],["TED%3AAF-S0G0I7-F1-model_v4_TED02","TED novel fold AF-S0G0I7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A190898","Desulfotignum phosphitoxidans"],["NCBITaxon%3A1286635","Desulfotignum phosphitoxidans DSM 13687"]]},{"id":"NCBITaxon:1293036","l":"Metallosphaera hakonensis JCM 8857 = DSM 7519","na":2,"nb":2,"a":[["TED%3AAF-A0A2U9IR82-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2U9IR82-F1-model_v4_TED02"],["TED%3AAF-A0A2U9IUQ0-F1-model_v4_TED02","TED novel fold AF-A0A2U9IUQ0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A79601","Metallosphaera hakonensis"],["NCBITaxon%3A1293036","Metallosphaera hakonensis JCM 8857 = DSM 7519"]]},{"id":"NCBITaxon:1293045","l":"Limnohabitans planktonicus II-D5","na":2,"nb":2,"a":[["TED%3AAF-A0A2T7UA66-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2T7UA66-F1-model_v4_TED04"],["TED%3AAF-A0A2T7ST92-F1-model_v4_TED03","TED novel fold AF-A0A2T7ST92-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A540060","Limnohabitans planktonicus"],["NCBITaxon%3A1293045","Limnohabitans planktonicus II-D5"]]},{"id":"NCBITaxon:1294264","l":"Lysinibacillus boronitolerans JCM 21713 = 10a = NBRC 103108","na":2,"nb":2,"a":[["TED%3AAF-A0A0A3ILB0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A3ILB0-F1-model_v4_TED01"],["TED%3AAF-A0A0A3IJV1-F1-model_v4_TED01","TED novel fold AF-A0A0A3IJV1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A309788","Lysinibacillus boronitolerans"],["NCBITaxon%3A1294264","Lysinibacillus boronitolerans JCM 21713 = 10a = NBRC 103108"]]},{"id":"NCBITaxon:1294270","l":"Melittangium boletus DSM 14713","na":2,"nb":2,"a":[["TED%3AAF-A0A250IC43-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A250IC43-F1-model_v4_TED02"],["TED%3AAF-A0A250IHT1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250IHT1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A83453","Melittangium boletus"],["NCBITaxon%3A1294270","Melittangium boletus DSM 14713"]]},{"id":"NCBITaxon:1303518","l":"Chthonomonas calidirosea (strain DSM 23976 / ICMP 18418 / T49)","na":2,"nb":2,"a":[["TED%3AAF-S0EWH8-F1-model_v4_TED01","TED highly-symmetric fold AF-S0EWH8-F1-model_v4_TED01"],["TED%3AAF-S0EW19-F1-model_v4_TED01","TED novel fold AF-S0EW19-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A454171","Chthonomonas calidirosea"],["NCBITaxon%3A1303518","Chthonomonas calidirosea T49"]]},{"id":"NCBITaxon:1305617","l":"Porphyromonas crevioricanis JCM 15906","na":2,"nb":2,"a":[["TED%3AAF-T1DS86-F1-model_v4_TED01","TED highly-symmetric fold AF-T1DS86-F1-model_v4_TED01"],["TED%3AAF-T1DTH4-F1-model_v4_TED03","TED highly-symmetric fold AF-T1DTH4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A393921","Porphyromonas crevioricanis"],["NCBITaxon%3A1305617","Porphyromonas crevioricanis JCM 15906"]]},{"id":"NCBITaxon:1341154","l":"Flavobacterium cauense R2A-7","na":2,"nb":2,"a":[["TED%3AAF-V6RYF5-F1-model_v4_TED01","TED novel fold AF-V6RYF5-F1-model_v4_TED01"],["TED%3AAF-V6S0E8-F1-model_v4_TED02","TED novel fold AF-V6S0E8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A510946","Flavobacterium cauense"],["NCBITaxon%3A1341154","Flavobacterium cauense R2A-7"]]},{"id":"NCBITaxon:1344584","l":"Archaeoglobus fulgidus DSM 8774","na":2,"nb":2,"a":[["TED%3AAF-A0A075WBT5-F1-model_v4_TED01","TED novel fold AF-A0A075WBT5-F1-model_v4_TED01"],["TED%3AAF-A0A075WIA8-F1-model_v4_TED01","TED novel fold AF-A0A075WIA8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2234","Archaeoglobus fulgidus"],["NCBITaxon%3A1344584","Archaeoglobus fulgidus DSM 8774"]]},{"id":"NCBITaxon:135947","l":"Actinoplanes awajinensis subsp. mycoplanecinus","na":2,"nb":2,"a":[["TED%3AAF-A0A101JCS8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A101JCS8-F1-model_v4_TED01"],["TED%3AAF-A0A101JE48-F1-model_v4_TED01","TED novel fold AF-A0A101JE48-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A135946","Actinoplanes awajinensis"],["NCBITaxon%3A135947","Actinoplanes awajinensis subsp. mycoplanecinus"]]},{"id":"NCBITaxon:1365250","l":"Pseudoalteromonas luteoviolacea DSM 6061","na":2,"nb":2,"a":[["TED%3AAF-A0A166UDI2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A166UDI2-F1-model_v4_TED01"],["TED%3AAF-A0A166WU22-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A166WU22-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A43657","Pseudoalteromonas luteoviolacea"],["NCBITaxon%3A1365250","Pseudoalteromonas luteoviolacea DSM 6061"]]},{"id":"NCBITaxon:1386089","l":"Intrasporangium oryzae NRRL B-24470","na":2,"nb":2,"a":[["TED%3AAF-W9G9T8-F1-model_v4_TED01","TED highly-symmetric fold AF-W9G9T8-F1-model_v4_TED01"],["TED%3AAF-W9GBB2-F1-model_v4_TED02","TED novel fold AF-W9GBB2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A412687","Intrasporangium oryzae"],["NCBITaxon%3A1386089","Intrasporangium oryzae NRRL B-24470"]]},{"id":"NCBITaxon:1420917","l":"Marinobacter salarius","na":2,"nb":2,"a":[["TED%3AAF-W5YQE2-F1-model_v4_TED01","TED highly-symmetric fold AF-W5YQE2-F1-model_v4_TED01"],["TED%3AAF-A0A1W6KFK7-F1-model_v4_TED01","TED novel fold AF-A0A1W6KFK7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1420917","Marinobacter salarius"],["NCBITaxon%3A1761792","Marinobacter sp. DSM 26291"]]},{"id":"NCBITaxon:1434","l":"","na":2,"nb":2,"a":[["Pfam%3APF17997","Insecticidal delta-endotoxin CryIA(c) domain 5"],["Pfam%3APF21463","Cry1Ac, domain VII"]],"b":[["NCBITaxon%3A1434","Bacillus thuringiensis serovar berliner"],["NCBITaxon%3A527031","Bacillus thuringiensis serovar berliner ATCC 10792"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":2,"nb":2,"a":[["PROSITE%3APS01120","Urease nickel ligands signature"],["PROSITE%3APS00145","Urease active site"]],"b":[["NCBITaxon%3A1474","Sporosarcina pasteurii"],["NCBITaxon%3A1415631","Sporosarcina pasteurii NCIM 2477"]]},{"id":"NCBITaxon:151781","l":"Lactobacillus intestinalis","na":2,"nb":2,"a":[["TED%3AAF-A0A4S2BPB9-F1-model_v4_TED01","TED novel fold AF-A0A4S2BPB9-F1-model_v4_TED01"],["TED%3AAF-A0A4S2BRX7-F1-model_v4_TED01","TED novel fold AF-A0A4S2BRX7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A151781","Lactobacillus intestinalis"],["NCBITaxon%3A1423761","Lactobacillus intestinalis DSM 6629"]]},{"id":"NCBITaxon:1527","l":"Anaerocolumna aminovalerica","na":2,"nb":2,"a":[["TED%3AAF-A0A1I5I955-F1-model_v4_TED02","TED novel fold AF-A0A1I5I955-F1-model_v4_TED02"],["TED%3AAF-A0A1I5ILH1-F1-model_v4_TED04","TED novel fold AF-A0A1I5ILH1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1527","Anaerocolumna aminovalerica"],["NCBITaxon%3A1121297","Anaerocolumna aminovalerica DSM 1283"]]},{"id":"NCBITaxon:1532905","l":"Paenibacillus sp. CAA11","na":2,"nb":2,"a":[["TED%3AAF-A0A2S0U7C4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S0U7C4-F1-model_v4_TED01"],["TED%3AAF-A0A2S0U9Q8-F1-model_v4_TED03","TED novel fold AF-A0A2S0U9Q8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A58172","Paenibacillus sp."],["NCBITaxon%3A1532905","Paenibacillus sp. CAA11"]]},{"id":"NCBITaxon:1533","l":"Clostridium fallax","na":2,"nb":2,"a":[["TED%3AAF-A0A1M4V1D2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M4V1D2-F1-model_v4_TED02"],["TED%3AAF-A0A1M4U9I6-F1-model_v4_TED01","TED novel fold AF-A0A1M4U9I6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1533","Clostridium fallax"],["NCBITaxon%3A1121309","Clostridium fallax DSM 2631"]]},{"id":"NCBITaxon:1557","l":"Peptoclostridium litorale","na":2,"nb":2,"a":[["Pfam%3APF07355","Glycine/sarcosine/betaine reductase selenoprotein B (GRDB)"],["Pfam%3APF04723","Glycine reductase complex selenoprotein A"]],"b":[["NCBITaxon%3A1557","Peptoclostridium litorale"],["NCBITaxon%3A1121324","Peptoclostridium litorale DSM 5388"]]},{"id":"NCBITaxon:155863","l":"Methanothermococcus okinawensis","na":2,"nb":2,"a":[["TED%3AAF-A0A832YR66-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A832YR66-F1-model_v4_TED02"],["TED%3AAF-A0A832ZXX8-F1-model_v4_TED01","TED novel fold AF-A0A832ZXX8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A155863","Methanothermococcus okinawensis"],["NCBITaxon%3A647113","Methanothermococcus okinawensis IH1"]]},{"id":"NCBITaxon:156889","l":"Magnetococcus marinus MC-1","na":2,"nb":2,"a":[["Pfam%3APF02622","AlgH-like"],["Pfam%3APF04279","Intracellular septation protein A"]],"b":[["NCBITaxon%3A1124597","Magnetococcus marinus"],["NCBITaxon%3A156889","Magnetococcus marinus MC-1"]]},{"id":"NCBITaxon:1608996","l":"Pseudomonas helleri","na":2,"nb":2,"a":[["TED%3AAF-A0A7X1XEY7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X1XEY7-F1-model_v4_TED01"],["TED%3AAF-A0A7X1WZY1-F1-model_v4_TED01","TED novel fold AF-A0A7X1WZY1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1460875","Bisgaardia miroungae"],["NCBITaxon%3A1608996","Pseudomonas helleri"]]},{"id":"NCBITaxon:161398","l":"Pseudoalteromonas phenolica","na":2,"nb":2,"a":[["TED%3AAF-A0A4Q7IPD1-F1-model_v4_TED01","TED novel fold AF-A0A4Q7IPD1-F1-model_v4_TED01"],["TED%3AAF-A0A4Q7IRU1-F1-model_v4_TED01","TED novel fold AF-A0A4Q7IRU1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A161398","Pseudoalteromonas phenolica"],["NCBITaxon%3A1315281","Pseudoalteromonas phenolica O-BC30"]]},{"id":"NCBITaxon:1629","l":"Weissella viridescens","na":2,"nb":2,"a":[["Pfam%3APF02388","FemAB family"],["TED%3AAF-A0A3P2RFX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3P2RFX7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1896315","Weissella sp."],["NCBITaxon%3A1629","Weissella viridescens"]]},{"id":"NCBITaxon:173480","l":"Gemmatimonas aurantiaca","na":2,"nb":2,"a":[["TED%3AAF-A0A3D4VAD6-F1-model_v4_TED03","TED novel fold AF-A0A3D4VAD6-F1-model_v4_TED03"],["TED%3AAF-A0A3D4VE85-F1-model_v4_TED02","TED novel fold AF-A0A3D4VE85-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A173480","Gemmatimonas aurantiaca"],["NCBITaxon%3A379066","Gemmatimonas aurantiaca T-27"]]},{"id":"NCBITaxon:1736367","l":"Chryseobacterium sp. Leaf405","na":2,"nb":2,"a":[["TED%3AAF-A0A0Q6A750-F1-model_v4_TED01","TED novel fold AF-A0A0Q6A750-F1-model_v4_TED01"],["TED%3AAF-A0A0Q6AVC3-F1-model_v4_TED02","TED novel fold AF-A0A0Q6AVC3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1871047","Chryseobacterium sp."],["NCBITaxon%3A1736367","Chryseobacterium sp. Leaf405"]]},{"id":"NCBITaxon:176280","l":"Staphylococcus epidermidis (strain ATCC 12228 / FDA PCI 1200)","na":2,"nb":2,"a":[["Pfam%3APF23846","WalK sensor protein kinase Chache domain"],["Pfam%3APF21650","DNA primase DnaG, catalytic core, helical bundle"]],"b":[["NCBITaxon%3A1282","Staphylococcus epidermidis"],["NCBITaxon%3A176280","Staphylococcus epidermidis ATCC 12228"]]},{"id":"NCBITaxon:177439","l":"Desulfotalea psychrophila (strain LSv54 / DSM 12343)","na":2,"nb":2,"a":[["Pfam%3APF18419","ATP-grasp-like domain"],["Pfam%3APF04262","Glutamate-cysteine ligase"]],"b":[["NCBITaxon%3A84980","Desulfotalea psychrophila"],["NCBITaxon%3A177439","Desulfotalea psychrophila LSv54"]]},{"id":"NCBITaxon:182270","l":"Aurantimonas coralicida","na":2,"nb":2,"a":[["TED%3AAF-A0A7C1MD78-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C1MD78-F1-model_v4_TED01"],["TED%3AAF-A0A7C1RGX2-F1-model_v4_TED02","TED novel fold AF-A0A7C1RGX2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A182270","Aurantimonas coralicida"],["NCBITaxon%3A1121027","Aurantimonas coralicida DSM 14790"]]},{"id":"NCBITaxon:186479","l":"Kouleothrix aurantiaca","na":2,"nb":2,"a":[["TED%3AAF-A0A0N8PR83-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0N8PR83-F1-model_v4_TED02"],["TED%3AAF-A0A0P9DLJ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0P9DLJ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A181207","Eikelboom Type 1851 Ben52"],["NCBITaxon%3A186479","Kouleothrix aurantiaca"]]},{"id":"NCBITaxon:190974","l":"Methanobrevibacter gottschalkii","na":2,"nb":2,"a":[["TED%3AAF-A0A1H7GZV1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1H7GZV1-F1-model_v4_TED03"],["TED%3AAF-A0A1H7PF58-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H7PF58-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A190974","Methanobrevibacter gottschalkii"],["NCBITaxon%3A1122229","Methanobrevibacter gottschalkii DSM 11977"]]},{"id":"NCBITaxon:193462","l":"Streptomyces niveus","na":2,"nb":2,"a":[["Pfam%3APF16861","Carbamoyltransferase C-terminus"],["Pfam%3APF02543","Carbamoyltransferase N-terminus"]],"b":[["NCBITaxon%3A193462","Streptomyces niveus"],["NCBITaxon%3A1352941","Streptomyces niveus NCIMB 11891"]]},{"id":"NCBITaxon:194963","l":"Sinorhizobium americanum","na":2,"nb":2,"a":[["TED%3AAF-A0A2S3YNG1-F1-model_v4_TED01","TED novel fold AF-A0A2S3YNG1-F1-model_v4_TED01"],["TED%3AAF-A0A4R2AWY1-F1-model_v4_TED01","TED novel fold AF-A0A4R2AWY1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A194963","Sinorhizobium americanum"],["NCBITaxon%3A1408224","Sinorhizobium americanum CCGM7"]]},{"id":"NCBITaxon:195103","l":"Clostridium perfringens (strain ATCC 13124 / DSM 756 / JCM 1290 / NCIMB 6125 / NCTC 8237 / Type A)","na":2,"nb":2,"a":[["Pfam%3APF00963","Cohesin domain"],["PROSITE%3APS00384","Prokaryotic zinc-dependent phospholipase C signature"]],"b":[["NCBITaxon%3A1502","Clostridium perfringens"],["NCBITaxon%3A195103","Clostridium perfringens ATCC 13124"]]},{"id":"NCBITaxon:196164","l":"Corynebacterium efficiens (strain DSM 44549 / YS-314 / AJ 12310 / JCM 11189 / NBRC 100395)","na":2,"nb":2,"a":[["Pfam%3APF13631","Cytochrome b(N-terminal)/b6/petB"],["Pfam%3APF12270","Cytochrome c oxidase subunit IV"]],"b":[["NCBITaxon%3A152794","Corynebacterium efficiens"],["NCBITaxon%3A196164","Corynebacterium efficiens YS-314"]]},{"id":"NCBITaxon:2024855","l":"Rhodopirellula sp.","na":2,"nb":2,"a":[["TED%3AAF-A0A2E0S8K6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0S8K6-F1-model_v4_TED01"],["TED%3AAF-A0A358MZ88-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A358MZ88-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1263866","Rhodopirellula europaea"],["NCBITaxon%3A2024855","Rhodopirellula sp."]]},{"id":"NCBITaxon:202772","l":"Zooshikella ganghwensis","na":2,"nb":2,"a":[["TED%3AAF-A0A4P9VE42-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P9VE42-F1-model_v4_TED01"],["TED%3AAF-A0A4P9VMX2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4P9VMX2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A202772","Zooshikella ganghwensis"],["NCBITaxon%3A1123509","Zooshikella ganghwensis DSM 15267"]]},{"id":"NCBITaxon:2053594","l":"Prolixibacteraceae bacterium","na":2,"nb":2,"a":[["TED%3AAF-A0A350Z0D2-F1-model_v4_TED02","TED novel fold AF-A0A350Z0D2-F1-model_v4_TED02"],["TED%3AAF-A0A3D5Z2L5-F1-model_v4_TED01","TED novel fold AF-A0A3D5Z2L5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A3374600","Halosquirtibacter laminarini"],["NCBITaxon%3A2053594","Prolixibacteraceae bacterium"]]},{"id":"NCBITaxon:213810","l":"Ruminococcus champanellensis 18P13 = JCM 17042","na":2,"nb":2,"a":[["TED%3AAF-D4LAY2-F1-model_v4_TED01","TED novel fold AF-D4LAY2-F1-model_v4_TED01"],["TED%3AAF-D4LBV4-F1-model_v4_TED01","TED novel fold AF-D4LBV4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1161942","Ruminococcus champanellensis"],["NCBITaxon%3A213810","Ruminococcus champanellensis 18P13 = JCM 17042"]]},{"id":"NCBITaxon:215578","l":"Williamsoniiplasma somnilux","na":2,"nb":2,"a":[["TED%3AAF-A0A2K8NY68-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2K8NY68-F1-model_v4_TED01"],["TED%3AAF-A0A2K8P0R0-F1-model_v4_TED01","TED novel fold AF-A0A2K8P0R0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A215578","Williamsoniiplasma somnilux"],["NCBITaxon%3A1399795","Williamsoniiplasma somnilux ATCC 49194"]]},{"id":"NCBITaxon:2223","l":"Methanothrix soehngenii","na":2,"nb":2,"a":[["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"],["TED%3AAF-A0A7K4AJW5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K4AJW5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2223","Methanothrix soehngenii"],["NCBITaxon%3A990316","Methanothrix soehngenii GP6"]]},{"id":"NCBITaxon:225999","l":"Mesoplasma syrphidae","na":2,"nb":2,"a":[["TED%3AAF-A0A2K9BQL1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2K9BQL1-F1-model_v4_TED01"],["TED%3AAF-A0A2K9BRS8-F1-model_v4_TED02","TED novel fold AF-A0A2K9BRS8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A225999","Mesoplasma syrphidae"],["NCBITaxon%3A1408449","Mesoplasma syrphidae ATCC 51578"]]},{"id":"NCBITaxon:2265","l":"Thermococcus litoralis","na":2,"nb":2,"a":[["Pfam%3APF13459","4Fe-4S single cluster domain"],["Pfam%3APF06560","Glucose-6-phosphate isomerase (GPI)"]],"b":[["NCBITaxon%3A2265","Thermococcus litoralis"],["NCBITaxon%3A523849","Thermococcus litoralis DSM 5473"]]},{"id":"NCBITaxon:227941","l":"Chlamydia caviae (strain ATCC VR-813 / DSM 19441 / 03DC25 / GPIC)","na":2,"nb":2,"a":[["Pfam%3APF06188","HrpE/YscL/FliH and V-type ATPase subunit E"],["Pfam%3APF07578","Lipid A Biosynthesis N-terminal domain"]],"b":[["NCBITaxon%3A83557","Chlamydia caviae"],["NCBITaxon%3A227941","Chlamydia caviae GPIC"]]},{"id":"NCBITaxon:246200","l":"Ruegeria pomeroyi DSS-3","na":2,"nb":2,"a":[["Pfam%3APF16867","Dimethlysulfonioproprionate lyase"],["Pfam%3APF09347","Domain of unknown function (DUF1989)"]],"b":[["NCBITaxon%3A89184","Ruegeria pomeroyi"],["NCBITaxon%3A246200","Ruegeria pomeroyi DSS-3"]]},{"id":"NCBITaxon:2564099","l":"Ruminococcus bovis","na":2,"nb":2,"a":[["TED%3AAF-A0A4P8XXI7-F1-model_v4_TED01","TED novel fold AF-A0A4P8XXI7-F1-model_v4_TED01"],["TED%3AAF-A0A4P8XXY0-F1-model_v4_TED02","TED novel fold AF-A0A4P8XXY0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2564099","Ruminococcus bovis"],["NCBITaxon%3A2486417","Streptomyces botrytidirepellens"]]},{"id":"NCBITaxon:2585117","l":"Alistipes onderdonkii subsp. vulgaris","na":2,"nb":2,"a":[["TED%3AAF-A0A4Y1WGW4-F1-model_v4_TED01","TED novel fold AF-A0A4Y1WGW4-F1-model_v4_TED01"],["TED%3AAF-A0A4Y1X8F5-F1-model_v4_TED01","TED novel fold AF-A0A4Y1X8F5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A328813","Alistipes onderdonkii"],["NCBITaxon%3A2585117","Alistipes onderdonkii subsp. vulgaris"]]},{"id":"NCBITaxon:2606634","l":"Velocimicrobium porci","na":2,"nb":2,"a":[["TED%3AAF-A0A6L5XWX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L5XWX7-F1-model_v4_TED01"],["TED%3AAF-A0A6L5XZP1-F1-model_v4_TED05","TED novel fold AF-A0A6L5XZP1-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2049040","Roseburia sp."],["NCBITaxon%3A2606634","Velocimicrobium porci"]]},{"id":"NCBITaxon:262543","l":"","na":2,"nb":2,"a":[["Pfam%3APF06335","Domain of unknown function (DUF1054)"],["Pfam%3APF11023","Zinc-ribbon containing domain"]],"b":[["NCBITaxon%3A340145","Exiguobacterium artemiae"],["NCBITaxon%3A262543","Exiguobacterium artemiae 255-15"]]},{"id":"NCBITaxon:264462","l":"Bdellovibrio bacteriovorus HD100","na":2,"nb":2,"a":[["TED%3AAF-Q6MMM6-F1-model_v4_TED01","TED novel fold AF-Q6MMM6-F1-model_v4_TED01"],["TED%3AAF-Q6MPT8-F1-model_v4_TED01","TED novel fold AF-Q6MPT8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A959","Bdellovibrio bacteriovorus"],["NCBITaxon%3A264462","Bdellovibrio bacteriovorus HD100"]]},{"id":"NCBITaxon:264732","l":"Moorella thermoacetica (strain ATCC 39073 / JCM 9320)","na":2,"nb":2,"a":[["Pfam%3APF10371","Domain of unknown function"],["PROSITE%3APS00202","Rubredoxin signature"]],"b":[["NCBITaxon%3A264732","Moorella thermoacetica ATCC 39073"],["NCBITaxon%3A1525","Neomoorella thermoacetica"]]},{"id":"NCBITaxon:2664442","l":"Fundicoccus ignavus","na":2,"nb":2,"a":[["TED%3AAF-A0A6I2GCU7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I2GCU7-F1-model_v4_TED01"],["TED%3AAF-A0A844CGI6-F1-model_v4_TED01","TED novel fold AF-A0A844CGI6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2664442","Fundicoccus ignavus"],["NCBITaxon%3A1907779","Pediococcus sp."]]},{"id":"NCBITaxon:266940","l":"Kineococcus radiotolerans SRS30216 = ATCC BAA-149","na":2,"nb":2,"a":[["Pfam%3APF01083","Cutinase"],["TED%3AAF-A6WE06-F1-model_v4_TED06","TED novel fold AF-A6WE06-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A131568","Kineococcus radiotolerans"],["NCBITaxon%3A266940","Kineococcus radiotolerans SRS30216 = ATCC BAA-149"]]},{"id":"NCBITaxon:271848","l":"Burkholderia thailandensis E264","na":2,"nb":2,"a":[["Pfam%3APF12091","Protein of unknown function (DUF3567)"],["Pfam%3APF01075","Glycosyltransferase family 9 (heptosyltransferase)"]],"b":[["NCBITaxon%3A57975","Burkholderia thailandensis"],["NCBITaxon%3A271848","Burkholderia thailandensis E264"]]},{"id":"NCBITaxon:2721544","l":"Actinoplanes sp. NBRC 14428","na":2,"nb":2,"a":[["TED%3AAF-A0A810M2Y5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A810M2Y5-F1-model_v4_TED02"],["TED%3AAF-A0A810MBC3-F1-model_v4_TED01","TED novel fold AF-A0A810MBC3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A136271","Actinoplanes sp. IFO 14428"],["NCBITaxon%3A2721544","Actinoplanes sp. NBRC 14428"]]},{"id":"NCBITaxon:272559","l":"","na":2,"nb":2,"a":[["Pfam%3APF16355","Domain of unknown function (DUF4982)"],["Pfam%3APF14229","Domain of unknown function (DUF4332)"]],"b":[["NCBITaxon%3A817","Bacteroides fragilis"],["NCBITaxon%3A272559","Bacteroides fragilis NCTC 9343"]]},{"id":"NCBITaxon:27291","l":"Saccharomyces paradoxus","na":2,"nb":2,"a":[["Pfam%3APF27692","Cytochrome B pre-mRNA-processing protein 2"],["Pfam%3APF08643","Fungal family of unknown function (DUF1776)"]],"b":[["NCBITaxon%3A27291","Saccharomyces paradoxus"],["NCBITaxon%3A226125","Saccharomyces paradoxus NRRL Y-17217"]]},{"id":"NCBITaxon:273116","l":"Thermoplasma volcanium (strain ATCC 51530 / DSM 4299 / JCM 9571 / NBRC 15438 / GSS1)","na":2,"nb":2,"a":[["Pfam%3APF17989","Actin like proteins N terminal domain"],["Pfam%3APF26550","Tricorn protease second beta propeller domain"]],"b":[["NCBITaxon%3A50339","Thermoplasma volcanium"],["NCBITaxon%3A273116","Thermoplasma volcanium GSS1"]]},{"id":"NCBITaxon:2752305","l":"Desulfosarcina ovata subsp. ovata","na":2,"nb":2,"a":[["TED%3AAF-A0A5K8AAG7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A5K8AAG7-F1-model_v4_TED03"],["TED%3AAF-A0A5K8AJH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5K8AJH3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A83564","Desulfosarcina ovata"],["NCBITaxon%3A2752305","Desulfosarcina ovata subsp. ovata"]]},{"id":"NCBITaxon:283166","l":"Bartonella henselae str. Houston-1","na":2,"nb":2,"a":[["Pfam%3APF18543","Intracellular delivery domain"],["Pfam%3APF03524","Conjugal transfer protein"]],"b":[["NCBITaxon%3A38323","Bartonella henselae"],["NCBITaxon%3A283166","Bartonella henselae str. Houston-1"]]},{"id":"NCBITaxon:28454","l":"Sphingobacterium multivorum","na":2,"nb":2,"a":[["TED%3AAF-A0A7T9NU88-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T9NU88-F1-model_v4_TED01"],["TED%3AAF-A0A7T9PGY4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T9PGY4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28454","Sphingobacterium multivorum"],["NCBITaxon%3A1123264","Sphingobacterium multivorum DSM 11691"]]},{"id":"NCBITaxon:285532","l":"Streptomyces achromogenes subsp. streptozoticus","na":2,"nb":2,"a":[["Pfam%3APF07883","Cupin domain"],["Pfam%3APF14518","Iron-containing redox enzyme"]],"b":[["NCBITaxon%3A67255","Streptomyces achromogenes"],["NCBITaxon%3A285532","Streptomyces achromogenes subsp. streptozoticus"]]},{"id":"NCBITaxon:290633","l":"Gluconobacter oxydans (strain 621H)","na":2,"nb":2,"a":[["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"],["Pfam%3APF01011","Glucose/ethanol/alcohol dehydrogenase, beta-propeller domain"]],"b":[["NCBITaxon%3A442","Gluconobacter oxydans"],["NCBITaxon%3A290633","Gluconobacter oxydans 621H"]]},{"id":"NCBITaxon:292459","l":"","na":2,"nb":2,"a":[["PROSITE%3APS00853","Beta-eliminating lyases pyridoxal-phosphate attachment site"],["TED%3AAF-Q67TA8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q67TA8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2734","Symbiobacterium thermophilum"],["NCBITaxon%3A292459","Symbiobacterium thermophilum IAM 14863"]]},{"id":"NCBITaxon:29495","l":"Vibrio navarrensis","na":2,"nb":2,"a":[["TED%3AAF-A0A099LRS8-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A099LRS8-F1-model_v4_TED05"],["TED%3AAF-A0A7T0RRB9-F1-model_v4_TED02","TED novel fold AF-A0A7T0RRB9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29495","Vibrio navarrensis"],["NCBITaxon%3A706139","Vibrio navarrensis 08-2462"]]},{"id":"NCBITaxon:307480","l":"Chryseobacterium vrystaatense","na":2,"nb":2,"a":[["TED%3AAF-A0A1M5B1Q6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1M5B1Q6-F1-model_v4_TED03"],["TED%3AAF-A0A1M5MNX0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M5MNX0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A307480","Chryseobacterium vrystaatense"],["NCBITaxon%3A1256510","Chryseobacterium vrystaatense PCAI F2.7"]]},{"id":"NCBITaxon:313606","l":"Microscilla marina ATCC 23134","na":2,"nb":2,"a":[["TED%3AAF-A1ZH11-F1-model_v4_TED02","TED novel fold AF-A1ZH11-F1-model_v4_TED02"],["TED%3AAF-A1ZSU9-F1-model_v4_TED01","TED novel fold AF-A1ZSU9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1027","Microscilla marina"],["NCBITaxon%3A313606","Microscilla marina ATCC 23134"]]},{"id":"NCBITaxon:313612","l":"Lyngbya sp. (strain PCC 8106)","na":2,"nb":2,"a":[["TED%3AAF-A0YRM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0YRM4-F1-model_v4_TED01"],["TED%3AAF-A0Z017-F1-model_v4_TED04","TED highly-symmetric fold AF-A0Z017-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A118322","Lyngbya aestuarii"],["NCBITaxon%3A313612","Lyngbya sp. PCC 8106"]]},{"id":"NCBITaxon:33035","l":"Blautia producta","na":2,"nb":2,"a":[["TED%3AAF-A0A2S4GEH6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S4GEH6-F1-model_v4_TED01"],["TED%3AAF-A0A7G5MNY0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G5MNY0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A33035","Blautia producta"],["NCBITaxon%3A1121114","Blautia producta ATCC 27340 = DSM 2950"]]},{"id":"NCBITaxon:33058","l":"Thauera selenatis","na":2,"nb":2,"a":[["Pfam%3APF09459","Ethylbenzene dehydrogenase"],["Pfam%3APF12797","4Fe-4S binding domain"]],"b":[["NCBITaxon%3A33058","Thauera selenatis"],["NCBITaxon%3A905052","Thauera selenatis AX"]]},{"id":"NCBITaxon:34003","l":"Paracoccus aminophilus","na":2,"nb":2,"a":[["Pfam%3APF26354","N,N-dimethylformamidase alpha subunit"],["Pfam%3APF20254","N,N-dimethylformamidase beta subunit-like, C-terminal"]],"b":[["NCBITaxon%3A34003","Paracoccus aminophilus"],["NCBITaxon%3A1367847","Paracoccus aminophilus JCM 7686"]]},{"id":"NCBITaxon:348780","l":"Natronomonas pharaonis (strain ATCC 35678 / DSM 2160 / CIP 103997 / JCM 8858 / NBRC 14720 / NCIMB 2260 / Gabara)","na":2,"nb":2,"a":[["Pfam%3APF12840","Helix-turn-helix domain"],["Pfam%3APF26067","Family of unknown function (DUF8024)"]],"b":[["NCBITaxon%3A2257","Natronomonas pharaonis"],["NCBITaxon%3A348780","Natronomonas pharaonis DSM 2160"]]},{"id":"NCBITaxon:349521","l":"Hahella chejuensis KCTC 2396","na":2,"nb":2,"a":[["TED%3AAF-Q2SFS2-F1-model_v4_TED01","TED novel fold AF-Q2SFS2-F1-model_v4_TED01"],["TED%3AAF-Q2SI43-F1-model_v4_TED03","TED novel fold AF-Q2SI43-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A158327","Hahella chejuensis"],["NCBITaxon%3A349521","Hahella chejuensis KCTC 2396"]]},{"id":"NCBITaxon:349967","l":"Yersinia mollaretii (strain ATCC 43969 / DSM 18520 / CIP 103324 / CNY 7263 / WAIP 204)","na":2,"nb":2,"a":[["Pfam%3APF18624","CDI immunity protein"],["Pfam%3APF14436","Bacterial EndoU nuclease"]],"b":[["NCBITaxon%3A33060","Yersinia mollaretii"],["NCBITaxon%3A349967","Yersinia mollaretii ATCC 43969"]]},{"id":"NCBITaxon:35746","l":"Haloferax gibbonsii","na":2,"nb":2,"a":[["Pfam%3APF25162","Domain of unknown function (DUF7827)"],["Pfam%3APF20009","GEVED domain"]],"b":[["NCBITaxon%3A35746","Haloferax gibbonsii"],["NCBITaxon%3A1227459","Haloferax gibbonsii ATCC 33959"]]},{"id":"NCBITaxon:365044","l":"Polaromonas naphthalenivorans CJ2","na":2,"nb":2,"a":[["Pfam%3APF01888","CbiD"],["Pfam%3APF02609","Exonuclease VII small subunit"]],"b":[["NCBITaxon%3A216465","Polaromonas naphthalenivorans"],["NCBITaxon%3A365044","Polaromonas naphthalenivorans CJ2"]]},{"id":"NCBITaxon:368407","l":"","na":2,"nb":2,"a":[["Pfam%3APF27030","AbpE bacteria"],["Pfam%3APF04019","Protein of unknown function (DUF359)"]],"b":[["NCBITaxon%3A2198","Methanoculleus marisnigri"],["NCBITaxon%3A368407","Methanoculleus marisnigri JR1"]]},{"id":"NCBITaxon:379547","l":"Candidatus Aciduliprofundum boonei","na":2,"nb":2,"a":[["TED%3AAF-A0A7J3T8Z3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7J3T8Z3-F1-model_v4_TED02"],["TED%3AAF-A0A7J3T9E7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J3T9E7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A439481","Aciduliprofundum boonei T469"],["NCBITaxon%3A379547","Candidatus Aciduliprofundum boonei"]]},{"id":"NCBITaxon:381306","l":"Thiohalorhabdus denitrificans","na":2,"nb":2,"a":[["TED%3AAF-A0A1G5AS59-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G5AS59-F1-model_v4_TED01"],["TED%3AAF-A0A1G5CMD7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G5CMD7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A381306","Thiohalorhabdus denitrificans"],["NCBITaxon%3A1123396","Thiohalorhabdus denitrificans DSM 15699"]]},{"id":"NCBITaxon:391592","l":"Caminibacter mediatlanticus TB-2","na":2,"nb":2,"a":[["TED%3AAF-A0A4P9DRC2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A4P9DRC2-F1-model_v4_TED03"],["TED%3AAF-A0A4P9DXX3-F1-model_v4_TED03","TED novel fold AF-A0A4P9DXX3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A291048","Caminibacter mediatlanticus"],["NCBITaxon%3A391592","Caminibacter mediatlanticus TB-2"]]},{"id":"NCBITaxon:393310","l":"Skermanella aerolata","na":2,"nb":2,"a":[["TED%3AAF-A0A512DYI2-F1-model_v4_TED01","TED novel fold AF-A0A512DYI2-F1-model_v4_TED01"],["TED%3AAF-A0A512E076-F1-model_v4_TED01","TED novel fold AF-A0A512E076-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A393310","Skermanella aerolata"],["NCBITaxon%3A1385368","Skermanella aerolata KACC 11604"]]},{"id":"NCBITaxon:393664","l":"","na":2,"nb":2,"a":[["TED%3AAF-A0A7W4XHJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W4XHJ9-F1-model_v4_TED01"],["TED%3AAF-A0A7W4SSW3-F1-model_v4_TED01","TED novel fold AF-A0A7W4SSW3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A393664","Aliirhizobium cellulosilyticum"],["NCBITaxon%3A1368426","Aliirhizobium cellulosilyticum ALA10B2"]]},{"id":"NCBITaxon:39490","l":"Eubacterium ramulus","na":2,"nb":2,"a":[["TED%3AAF-A0A173V5Z6-F1-model_v4_TED02","TED novel fold AF-A0A173V5Z6-F1-model_v4_TED02"],["TED%3AAF-A0A2V1JWA1-F1-model_v4_TED05","TED novel fold AF-A0A2V1JWA1-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A39490","Eubacterium ramulus"],["NCBITaxon%3A1256908","Eubacterium ramulus ATCC 29099"]]},{"id":"NCBITaxon:398511","l":"Alkalihalophilus pseudofirmus (strain ATCC BAA-2126 / JCM 17055 / OF4)","na":2,"nb":2,"a":[["Pfam%3APF25991","K(+)/H(+) antiporter subunit KhtT, N-terminal domain"],["Pfam%3APF04238","Protein of unknown function (DUF420)"]],"b":[["NCBITaxon%3A79885","Alkalihalophilus pseudofirmus"],["NCBITaxon%3A398511","Alkalihalophilus pseudofirmus OF4"]]},{"id":"NCBITaxon:411468","l":"Clostridium scindens (strain ATCC 35704 / DSM 5676 / VPI 13733 / 19)","na":2,"nb":2,"a":[["Pfam%3APF03486","HI0933-like protein Rossmann domain"],["Pfam%3APF22780","HI0933-like protein barrel and H2TH domain"]],"b":[["NCBITaxon%3A29347","[Clostridium] scindens"],["NCBITaxon%3A411468","[Clostridium] scindens ATCC 35704"]]},{"id":"NCBITaxon:411473","l":"Ruminococcus callidus ATCC 27760","na":2,"nb":2,"a":[["TED%3AAF-U2KYE7-F1-model_v4_TED02","TED novel fold AF-U2KYE7-F1-model_v4_TED02"],["TED%3AAF-U2KYU1-F1-model_v4_TED02","TED novel fold AF-U2KYU1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A40519","Ruminococcus callidus"],["NCBITaxon%3A411473","Ruminococcus callidus ATCC 27760"]]},{"id":"NCBITaxon:418719","l":"Marinobacter salsuginis","na":2,"nb":2,"a":[["TED%3AAF-A0A5M3Q1Q7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5M3Q1Q7-F1-model_v4_TED01"],["TED%3AAF-A0A5M3Q638-F1-model_v4_TED02","TED novel fold AF-A0A5M3Q638-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A418719","Marinobacter salsuginis"],["NCBITaxon%3A1260625","Marinobacter salsuginis SD-14B"]]},{"id":"NCBITaxon:420247","l":"","na":2,"nb":2,"a":[["Pfam%3APF17884","Domain of unknown function (DUF5591)"],["Pfam%3APF18195","GatD N-terminal domain"]],"b":[["NCBITaxon%3A2173","Methanobrevibacter smithii"],["NCBITaxon%3A420247","Methanobrevibacter smithii ATCC 35061"]]},{"id":"NCBITaxon:42236","l":"Streptomyces diastatochromogenes","na":2,"nb":2,"a":[["TED%3AAF-A0A233S9R2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A233S9R2-F1-model_v4_TED01"],["TED%3AAF-A0A233SM76-F1-model_v4_TED01","TED novel fold AF-A0A233SM76-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A42236","Streptomyces diastatochromogenes"],["NCBITaxon%3A285494","Streptomyces diastatochromogenes subsp. luteus"]]},{"id":"NCBITaxon:425104","l":"","na":2,"nb":2,"a":[["Pfam%3APF13286","Phosphohydrolase-associated domain"],["TED%3AAF-A8FZD8-F1-model_v4_TED01","TED novel fold AF-A8FZD8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A271097","Shewanella sediminis"],["NCBITaxon%3A425104","Shewanella sediminis HAW-EB3"]]},{"id":"NCBITaxon:426128","l":"Natronincola peptidivorans","na":2,"nb":2,"a":[["TED%3AAF-A0A1I0EK12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I0EK12-F1-model_v4_TED01"],["TED%3AAF-A0A1I0H2J6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I0H2J6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A426128","Natronincola peptidivorans"],["NCBITaxon%3A1122597","Natronincola peptidivorans DSM 18979"]]},{"id":"NCBITaxon:435590","l":"Phocaeicola vulgatus ATCC 8482","na":2,"nb":2,"a":[["Pfam%3APF13444","Acetyltransferase (GNAT) domain"],["Pfam%3APF19576","Acyltransferase"]],"b":[["NCBITaxon%3A821","Phocaeicola vulgatus"],["NCBITaxon%3A435590","Phocaeicola vulgatus ATCC 8482"]]},{"id":"NCBITaxon:452637","l":"","na":2,"nb":2,"a":[["TED%3AAF-B1ZX41-F1-model_v4_TED02","TED novel fold AF-B1ZX41-F1-model_v4_TED02"],["TED%3AAF-B1ZYN8-F1-model_v4_TED02","TED novel fold AF-B1ZYN8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A107709","Opitutus terrae"],["NCBITaxon%3A452637","Opitutus terrae PB90-1"]]},{"id":"NCBITaxon:45361","l":"Mesomycoplasma conjunctivae","na":2,"nb":2,"a":[["TED%3AAF-A0A449AKT0-F1-model_v4_TED02","TED novel fold AF-A0A449AKT0-F1-model_v4_TED02"],["TED%3AAF-A0A449AL49-F1-model_v4_TED04","TED novel fold AF-A0A449AL49-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A45361","Mesomycoplasma conjunctivae"],["NCBITaxon%3A572263","Mesomycoplasma conjunctivae HRC/581"]]},{"id":"NCBITaxon:455432","l":"Nocardia terpenica","na":2,"nb":2,"a":[["TED%3AAF-A0A6G9ZDY9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6G9ZDY9-F1-model_v4_TED01"],["TED%3AAF-A0A164L9V7-F1-model_v4_TED03","TED novel fold AF-A0A164L9V7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A455432","Nocardia terpenica"],["NCBITaxon%3A1206738","Nocardia terpenica NBRC 100888"]]},{"id":"NCBITaxon:455632","l":"Streptomyces griseus subsp. griseus NBRC 13350","na":2,"nb":2,"a":[["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["PROSITE%3APS01311","Prolipoprotein diacylglyceryl transferase signature"]],"b":[["NCBITaxon%3A1896","Streptomyces bikiniensis"],["NCBITaxon%3A455632","Streptomyces griseus subsp. griseus NBRC 13350"]]},{"id":"NCBITaxon:467091","l":"Ilumatobacter fluminis","na":2,"nb":2,"a":[["TED%3AAF-A0A4R7I1A9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A4R7I1A9-F1-model_v4_TED03"],["TED%3AAF-A0A4R7HV94-F1-model_v4_TED01","TED novel fold AF-A0A4R7HV94-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A467091","Ilumatobacter fluminis"],["NCBITaxon%3A1331058","Ilumatobacter fluminis YM22-133"]]},{"id":"NCBITaxon:47884","l":"Pseudomonas taetrolens","na":2,"nb":2,"a":[["PROSITE%3APS00395","Alanine racemase pyridoxal-phosphate attachment site"],["PROSITE%3APS00182","Glutamine synthetase class-I adenylation site"]],"b":[["NCBITaxon%3A1128622","Pseudomonas sp. JCM 5493"],["NCBITaxon%3A47884","Pseudomonas taetrolens"]]},{"id":"NCBITaxon:479434","l":"Sphaerobacter thermophilus DSM 20745","na":2,"nb":2,"a":[["TED%3AAF-D1C926-F1-model_v4_TED01","TED highly-symmetric fold AF-D1C926-F1-model_v4_TED01"],["TED%3AAF-D1C9G8-F1-model_v4_TED01","TED highly-symmetric fold AF-D1C9G8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2057","Sphaerobacter thermophilus"],["NCBITaxon%3A479434","Sphaerobacter thermophilus DSM 20745"]]},{"id":"NCBITaxon:484019","l":"","na":2,"nb":2,"a":[["TED%3AAF-B7IGW9-F1-model_v4_TED05","TED highly-symmetric fold AF-B7IGW9-F1-model_v4_TED05"],["TED%3AAF-B7IEF5-F1-model_v4_TED01","TED novel fold AF-B7IEF5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2421","Thermosipho africanus"],["NCBITaxon%3A484019","Thermosipho africanus TCF52B"]]},{"id":"NCBITaxon:49283","l":"Paenibacillus thiaminolyticus","na":2,"nb":2,"a":[["TED%3AAF-A0A378XAJ0-F1-model_v4_TED02","TED novel fold AF-A0A378XAJ0-F1-model_v4_TED02"],["TED%3AAF-A0A7G3DXQ4-F1-model_v4_TED01","TED novel fold AF-A0A7G3DXQ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A49283","Paenibacillus thiaminolyticus"],["NCBITaxon%3A1349794","Paenibacillus thiaminolyticus NBRC 15656 = DSM 7262"]]},{"id":"NCBITaxon:497964","l":"Chthoniobacter flavus Ellin428","na":2,"nb":2,"a":[["TED%3AAF-B4CWB8-F1-model_v4_TED01","TED highly-symmetric fold AF-B4CWB8-F1-model_v4_TED01"],["TED%3AAF-B4D4Q6-F1-model_v4_TED01","TED highly-symmetric fold AF-B4D4Q6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A191863","Chthoniobacter flavus"],["NCBITaxon%3A497964","Chthoniobacter flavus Ellin428"]]},{"id":"NCBITaxon:505345","l":"Gallibacterium genomosp. 3","na":2,"nb":2,"a":[["TED%3AAF-A0A1A7NMW7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1A7NMW7-F1-model_v4_TED01"],["TED%3AAF-A0A1A7PT98-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1A7PT98-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A505345","Gallibacterium genomosp. 3"],["NCBITaxon%3A2517781","Gallibacterium sp."]]},{"id":"NCBITaxon:5074","l":"Penicillium brevicompactum","na":2,"nb":2,"a":[["Pfam%3APF09227","Bubble protein"],["Pfam%3APF18558","Methyltransferase, Helix-turn-helix domain"]],"b":[["NCBITaxon%3A1337893","Streptomyces bernensis"],["NCBITaxon%3A5074","Penicillium brevicompactum"]]},{"id":"NCBITaxon:508451","l":"Lactobacillus taiwanensis","na":2,"nb":2,"a":[["TED%3AAF-A0A256LG95-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A256LG95-F1-model_v4_TED04"],["TED%3AAF-A0A8A8VQ16-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8A8VQ16-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A508451","Lactobacillus taiwanensis"],["NCBITaxon%3A1423809","Lactobacillus taiwanensis DSM 21401"]]},{"id":"NCBITaxon:517417","l":"","na":2,"nb":2,"a":[["Pfam%3APF28537","Probable trigger factor, FKBP-like domain"],["Pfam%3APF10643","Photosystem P840 reaction-centre cytochrome c-551"]],"b":[["NCBITaxon%3A274539","Chlorobaculum parvum"],["NCBITaxon%3A517417","Chlorobaculum parvum NCIB 8327"]]},{"id":"NCBITaxon:523794","l":"Leptotrichia buccalis (strain ATCC 14201 / DSM 1135 / JCM 12969 / NCTC 10249 / C-1013-b)","na":2,"nb":2,"a":[["Pfam%3APF28350","Cas13a C-terminal HEPN-like domain"],["Pfam%3APF28192","CRISPR-associated endoribonuclease Cas13a"]],"b":[["NCBITaxon%3A40542","Leptotrichia buccalis"],["NCBITaxon%3A523794","Leptotrichia buccalis C-1013-b"]]},{"id":"NCBITaxon:523846","l":"Methanothermus fervidus DSM 2088","na":2,"nb":2,"a":[["Pfam%3APF02829","3H domain"],["Pfam%3APF27272","Cyclic 2,3-diphosphoglycerate synthetase, N-terminal domain"]],"b":[["NCBITaxon%3A2180","Methanothermus fervidus"],["NCBITaxon%3A523846","Methanothermus fervidus DSM 2088"]]},{"id":"NCBITaxon:5322","l":"Pleurotus ostreatus","na":2,"nb":2,"a":[["Pfam%3APF14521","Lysine-specific metallo-endopeptidase"],["Pfam%3APF06355","Aegerolysin"]],"b":[["NCBITaxon%3A5322","Pleurotus ostreatus"],["NCBITaxon%3A1137138","Pleurotus ostreatus PC15"]]},{"id":"NCBITaxon:53429","l":"Nocardia flavorosea","na":2,"nb":2,"a":[["TED%3AAF-A0A846YCZ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A846YCZ8-F1-model_v4_TED01"],["TED%3AAF-A0A846YMF9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A846YMF9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A53429","Nocardia flavorosea"],["NCBITaxon%3A1220553","Nocardia flavorosea NBRC 108225"]]},{"id":"NCBITaxon:5482","l":"Candida tropicalis","na":2,"nb":2,"a":[["Pfam%3APF05203","Hom_end-associated Hint"],["Pfam%3APF05204","Homing endonuclease"]],"b":[["NCBITaxon%3A5482","Candida tropicalis"],["NCBITaxon%3A1312901","Candida tropicalis ATCC 200956"]]},{"id":"NCBITaxon:560819","l":"Tistlia consotensis USBA 355","na":2,"nb":2,"a":[["TED%3AAF-A0A1Y6BHA7-F1-model_v4_TED02","TED novel fold AF-A0A1Y6BHA7-F1-model_v4_TED02"],["TED%3AAF-A0A1Y6CS94-F1-model_v4_TED02","TED novel fold AF-A0A1Y6CS94-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1321365","Tistlia consotensis"],["NCBITaxon%3A560819","Tistlia consotensis USBA 355"]]},{"id":"NCBITaxon:5684","l":"Leptomonas seymouri","na":2,"nb":2,"a":[["TED%3AAF-A0A0N0P8Q7-F1-model_v4_TED02","TED novel fold AF-A0A0N0P8Q7-F1-model_v4_TED02"],["TED%3AAF-A0A0N1I6S9-F1-model_v4_TED03","TED novel fold AF-A0A0N1I6S9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A5684","Leptomonas seymouri"],["NCBITaxon%3A1263718","Leptomonas seymouri BHU1095"]]},{"id":"NCBITaxon:572546","l":"Archaeoglobus profundus DSM 5631","na":2,"nb":2,"a":[["TED%3AAF-D2RFB5-F1-model_v4_TED02","TED highly-symmetric fold AF-D2RFB5-F1-model_v4_TED02"],["TED%3AAF-D2RE38-F1-model_v4_TED02","TED novel fold AF-D2RE38-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A84156","Archaeoglobus profundus"],["NCBITaxon%3A572546","Archaeoglobus profundus DSM 5631"]]},{"id":"NCBITaxon:575788","l":"Vibrio atlanticus (strain LGP32)","na":2,"nb":2,"a":[["Pfam%3APF17327","Acyl homoserine lactone synthase"],["Pfam%3APF09829","Uncharacterized protein conserved in bacteria (DUF2057)"]],"b":[["NCBITaxon%3A575788","Vibrio atlanticus LGP32"],["NCBITaxon%3A29497","Vibrio splendidus"]]},{"id":"NCBITaxon:580327","l":"Thermoanaerobacterium thermosaccharolyticum (strain ATCC 7956 / DSM 571 / NCIMB 9385 / NCA 3814 / NCTC 13789 / WDCM 00135 / 2032)","na":2,"nb":2,"a":[["Pfam%3APF09861","Lactate racemase N-terminal domain"],["Pfam%3APF21113","Lactate racemase C-terminal domain"]],"b":[["NCBITaxon%3A1517","Thermoanaerobacterium thermosaccharolyticum"],["NCBITaxon%3A580327","Thermoanaerobacterium thermosaccharolyticum DSM 571"]]},{"id":"NCBITaxon:585394","l":"Roseburia hominis (strain DSM 16839 / JCM 17582 / NCIMB 14029 / A2-183)","na":2,"nb":2,"a":[["Pfam%3APF13336","Acetyl-CoA hydrolase/transferase C-terminal domain"],["Pfam%3APF02550","Acetyl-CoA hydrolase/transferase N-terminal domain"]],"b":[["NCBITaxon%3A301301","Roseburia hominis"],["NCBITaxon%3A585394","Roseburia hominis A2-183"]]},{"id":"NCBITaxon:591197","l":"Ignavibacterium album","na":2,"nb":2,"a":[["TED%3AAF-A0A7V3E6U4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7V3E6U4-F1-model_v4_TED03"],["TED%3AAF-A0A7V2ZKR1-F1-model_v4_TED02","TED novel fold AF-A0A7V2ZKR1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A591197","Ignavibacterium album"],["NCBITaxon%3A945713","Ignavibacterium album JCM 16511"]]},{"id":"NCBITaxon:59893","l":"Paenibacillus peoriae","na":2,"nb":2,"a":[["TED%3AAF-A0A0S3KGK3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S3KGK3-F1-model_v4_TED01"],["TED%3AAF-A0A7H0Y2B5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H0Y2B5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A59893","Paenibacillus peoriae"],["NCBITaxon%3A1087481","Paenibacillus peoriae KCTC 3763"]]},{"id":"NCBITaxon:61647","l":"Pluralibacter gergoviae","na":2,"nb":2,"a":[["TED%3AAF-A0A379CWN8-F1-model_v4_TED02","TED novel fold AF-A0A379CWN8-F1-model_v4_TED02"],["TED%3AAF-A0A806NV12-F1-model_v4_TED02","TED novel fold AF-A0A806NV12-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A61647","Pluralibacter gergoviae"],["NCBITaxon%3A1354260","Pluralibacter gergoviae ATCC 33028 = NBRC 105706"]]},{"id":"NCBITaxon:63363","l":"Aquifex aeolicus","na":2,"nb":2,"a":[["TED%3AAF-A0A7C5L434-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C5L434-F1-model_v4_TED01"],["TED%3AAF-A0A7C5L9T1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C5L9T1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A63363","Aquifex aeolicus"],["NCBITaxon%3A224324","Aquifex aeolicus VF5"]]},{"id":"NCBITaxon:64104","l":"Bacillus pseudomycoides","na":2,"nb":2,"a":[["TED%3AAF-A0A1Y3MB62-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y3MB62-F1-model_v4_TED01"],["TED%3AAF-A0A2C4USY5-F1-model_v4_TED01","TED novel fold AF-A0A2C4USY5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A64104","Bacillus pseudomycoides"],["NCBITaxon%3A527000","Bacillus pseudomycoides DSM 12442"]]},{"id":"NCBITaxon:642492","l":"","na":2,"nb":2,"a":[["TED%3AAF-F2JHU0-F1-model_v4_TED01","TED highly-symmetric fold AF-F2JHU0-F1-model_v4_TED01"],["TED%3AAF-F2JQ83-F1-model_v4_TED01","TED highly-symmetric fold AF-F2JQ83-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29360","Cellulosilyticum lentocellum"],["NCBITaxon%3A642492","Cellulosilyticum lentocellum DSM 5427"]]},{"id":"NCBITaxon:644107","l":"","na":2,"nb":2,"a":[["Pfam%3APF16867","Dimethlysulfonioproprionate lyase"],["TED%3AAF-D0CYX0-F1-model_v4_TED01","TED novel fold AF-D0CYX0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A55218","Ruegeria lacuscaerulensis"],["NCBITaxon%3A644107","Ruegeria lacuscaerulensis ITI-1157"]]},{"id":"NCBITaxon:647113","l":"Methanothermococcus okinawensis IH1","na":2,"nb":2,"a":[["TED%3AAF-F8ANV0-F1-model_v4_TED01","TED highly-symmetric fold AF-F8ANV0-F1-model_v4_TED01"],["TED%3AAF-F8AK92-F1-model_v4_TED02","TED novel fold AF-F8AK92-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A155863","Methanothermococcus okinawensis"],["NCBITaxon%3A647113","Methanothermococcus okinawensis IH1"]]},{"id":"NCBITaxon:658187","l":"Legionella drancourtii LLAP12","na":2,"nb":2,"a":[["TED%3AAF-G9EK81-F1-model_v4_TED02","TED highly-symmetric fold AF-G9EK81-F1-model_v4_TED02"],["TED%3AAF-G9ERF4-F1-model_v4_TED01","TED novel fold AF-G9ERF4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A168933","Legionella drancourtii"],["NCBITaxon%3A658187","Legionella drancourtii LLAP12"]]},{"id":"NCBITaxon:661367","l":"Legionella longbeachae serogroup 1 (strain NSW150)","na":2,"nb":2,"a":[["TED%3AAF-D3HM90-F1-model_v4_TED01","TED novel fold AF-D3HM90-F1-model_v4_TED01"],["TED%3AAF-D3HMM1-F1-model_v4_TED01","TED novel fold AF-D3HMM1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A450","Legionella longbeachae"],["NCBITaxon%3A661367","Legionella longbeachae NSW150"]]},{"id":"NCBITaxon:665126","l":"Prosthecomicrobium hirschii","na":2,"nb":2,"a":[["TED%3AAF-A0A0P6VIT9-F1-model_v4_TED02","TED novel fold AF-A0A0P6VIT9-F1-model_v4_TED02"],["TED%3AAF-A0A0P6WHU2-F1-model_v4_TED01","TED novel fold AF-A0A0P6WHU2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A665126","Prosthecodimorpha hirschii"],["NCBITaxon%3A2212461","Prosthecomicrobium sp."]]},{"id":"NCBITaxon:671","l":"Vibrio proteolyticus","na":2,"nb":2,"a":[["Pfam%3APF06165","Glycosyl hydrolase 94, supersandwich domain"],["Pfam%3APF17167","Glycosyl hydrolase 94 superfamily, catalytic domain"]],"b":[["NCBITaxon%3A671","Vibrio proteolyticus"],["NCBITaxon%3A1219065","Vibrio proteolyticus NBRC 13287"]]},{"id":"NCBITaxon:683837","l":"Listeria seeligeri serovar 1/2b (strain ATCC 35967 / DSM 20751 / CCM 3970 / CCUG 15530 / CIP 100100 / LMG 11386 / NCTC 11856 / SLCC 3954 / 1120)","na":2,"nb":2,"a":[["Pfam%3APF28350","Cas13a C-terminal HEPN-like domain"],["Pfam%3APF28192","CRISPR-associated endoribonuclease Cas13a"]],"b":[["NCBITaxon%3A1640","Listeria seeligeri"],["NCBITaxon%3A683837","Listeria seeligeri serovar 1/2b str. SLCC3954"]]},{"id":"NCBITaxon:685727","l":"Rhodococcus equi (strain 103S)","na":2,"nb":2,"a":[["Pfam%3APF00150","Cellulase (glycosyl hydrolase family 5)"],["Pfam%3APF18564","Glycoside hydrolase family 5 C-terminal domain"]],"b":[["NCBITaxon%3A43767","Prescottella equi"],["NCBITaxon%3A685727","Prescottella equi 103S"]]},{"id":"NCBITaxon:688246","l":"Hallella multisaccharivorax DSM 17128","na":2,"nb":2,"a":[["TED%3AAF-F8N9C0-F1-model_v4_TED03","TED novel fold AF-F8N9C0-F1-model_v4_TED03"],["TED%3AAF-F8N9F2-F1-model_v4_TED01","TED novel fold AF-F8N9F2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A310514","Hallella multisaccharivorax"],["NCBITaxon%3A688246","Hallella multisaccharivorax DSM 17128"]]},{"id":"NCBITaxon:69","l":"Lysobacter enzymogenes","na":2,"nb":2,"a":[["TED%3AAF-A0A1J1E6A8-F1-model_v4_TED02","TED novel fold AF-A0A1J1E6A8-F1-model_v4_TED02"],["TED%3AAF-A0A7T8MLU2-F1-model_v4_TED03","TED novel fold AF-A0A7T8MLU2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A69","Lysobacter enzymogenes"],["NCBITaxon%3A262324","Lysobacter gummosus"]]},{"id":"NCBITaxon:693979","l":"Bacteroides helcogenes (strain ATCC 35417 / DSM 20613 / JCM 6297 / CCUG 15421 / P 36-108)","na":2,"nb":2,"a":[["TED%3AAF-E6SVP5-F1-model_v4_TED02","TED highly-symmetric fold AF-E6SVP5-F1-model_v4_TED02"],["TED%3AAF-E6SMX4-F1-model_v4_TED02","TED novel fold AF-E6SMX4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A290053","Bacteroides helcogenes"],["NCBITaxon%3A693979","Bacteroides helcogenes P 36-108"]]},{"id":"NCBITaxon:697329","l":"Ruminococcus albus (strain ATCC 27210 / DSM 20455 / JCM 14654 / NCDO 2250 / 7)","na":2,"nb":2,"a":[["Pfam%3APF04041","beta-1,4-mannooligosaccharide phosphorylase"],["TED%3AAF-E6UGN9-F1-model_v4_TED01","TED highly-symmetric fold AF-E6UGN9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1264","Hominimerdicola alba"],["NCBITaxon%3A697329","Hominimerdicola alba 7 = DSM 20455"]]},{"id":"NCBITaxon:700598","l":"Niastella koreensis (strain DSM 17620 / KACC 11465 / NBRC 106392 / GR20-10)","na":2,"nb":2,"a":[["TED%3AAF-G8T8R6-F1-model_v4_TED01","TED highly-symmetric fold AF-G8T8R6-F1-model_v4_TED01"],["TED%3AAF-G8TCY2-F1-model_v4_TED03","TED novel fold AF-G8TCY2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A354356","Niastella koreensis"],["NCBITaxon%3A700598","Niastella koreensis GR20-10"]]},{"id":"NCBITaxon:709032","l":"Sulfuricurvum kujiense (strain ATCC BAA-921 / DSM 16994 / JCM 11577 / YK-1)","na":2,"nb":2,"a":[["TED%3AAF-E4TWD5-F1-model_v4_TED02","TED highly-symmetric fold AF-E4TWD5-F1-model_v4_TED02"],["TED%3AAF-E4TYW6-F1-model_v4_TED01","TED highly-symmetric fold AF-E4TYW6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A148813","Sulfuricurvum kujiense"],["NCBITaxon%3A709032","Sulfuricurvum kujiense DSM 16994"]]},{"id":"NCBITaxon:74318","l":"Maricaulis maris","na":2,"nb":2,"a":[["TED%3AAF-A0A495D3Q7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A495D3Q7-F1-model_v4_TED02"],["TED%3AAF-A0A495DKG6-F1-model_v4_TED01","TED novel fold AF-A0A495DKG6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A74318","Maricaulis maris"],["NCBITaxon%3A394221","Maricaulis maris MCS10"]]},{"id":"NCBITaxon:746697","l":"Aequorivita sublithincola DSM 14238","na":2,"nb":2,"a":[["TED%3AAF-I3YW66-F1-model_v4_TED01","TED highly-symmetric fold AF-I3YW66-F1-model_v4_TED01"],["TED%3AAF-I3YWC3-F1-model_v4_TED01","TED highly-symmetric fold AF-I3YWC3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A101385","Aequorivita sublithincola"],["NCBITaxon%3A746697","Aequorivita sublithincola DSM 14238"]]},{"id":"NCBITaxon:755732","l":"Fluviicola taffensis (strain DSM 16823 / NCIMB 13979 / RW262)","na":2,"nb":2,"a":[["TED%3AAF-F2IER5-F1-model_v4_TED02","TED highly-symmetric fold AF-F2IER5-F1-model_v4_TED02"],["TED%3AAF-F2IDG5-F1-model_v4_TED01","TED novel fold AF-F2IDG5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A191579","Fluviicola taffensis"],["NCBITaxon%3A755732","Fluviicola taffensis DSM 16823"]]},{"id":"NCBITaxon:765913","l":"Thiorhodococcus drewsii AZ1","na":2,"nb":2,"a":[["TED%3AAF-G2E6U1-F1-model_v4_TED01","TED highly-symmetric fold AF-G2E6U1-F1-model_v4_TED01"],["TED%3AAF-G2E738-F1-model_v4_TED01","TED novel fold AF-G2E738-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A210408","Thiorhodococcus drewsii"],["NCBITaxon%3A765913","Thiorhodococcus drewsii AZ1"]]},{"id":"NCBITaxon:79329","l":"Chitinophaga pinensis","na":2,"nb":2,"a":[["TED%3AAF-A0A5C6LK20-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C6LK20-F1-model_v4_TED01"],["TED%3AAF-A0A5C6LKB6-F1-model_v4_TED01","TED novel fold AF-A0A5C6LKB6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A79329","Chitinophaga pinensis"],["NCBITaxon%3A485918","Chitinophaga pinensis DSM 2588"]]},{"id":"NCBITaxon:86049","l":"Cladophialophora carrionii","na":2,"nb":2,"a":[["TED%3AAF-A0A1C1CA15-F1-model_v4_TED03","TED novel fold AF-A0A1C1CA15-F1-model_v4_TED03"],["TED%3AAF-A0A1C1CZQ0-F1-model_v4_TED04","TED novel fold AF-A0A1C1CZQ0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A67367","Streptomyces tanashiensis"],["NCBITaxon%3A86049","Cladophialophora carrionii"]]},{"id":"NCBITaxon:869209","l":"Treponema succinifaciens (strain ATCC 33096 / DSM 2489 / 6091)","na":2,"nb":2,"a":[["TED%3AAF-F2NRP2-F1-model_v4_TED01","TED highly-symmetric fold AF-F2NRP2-F1-model_v4_TED01"],["TED%3AAF-F2NT59-F1-model_v4_TED02","TED highly-symmetric fold AF-F2NT59-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A167","Treponema succinifaciens"],["NCBITaxon%3A869209","Treponema succinifaciens DSM 2489"]]},{"id":"NCBITaxon:869212","l":"Turneriella parva (strain ATCC BAA-1111 / DSM 21527 / NCTC 11395 / H)","na":2,"nb":2,"a":[["TED%3AAF-I4B6F4-F1-model_v4_TED01","TED highly-symmetric fold AF-I4B6F4-F1-model_v4_TED01"],["TED%3AAF-I4B9D1-F1-model_v4_TED01","TED highly-symmetric fold AF-I4B9D1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29510","Turneriella parva"],["NCBITaxon%3A869212","Turneriella parva DSM 21527"]]},{"id":"NCBITaxon:876364","l":"Cupriavidus sp. USMAA2-4","na":2,"nb":2,"a":[["TED%3AAF-A0A1D9GSB5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1D9GSB5-F1-model_v4_TED01"],["TED%3AAF-A0A1D9H8X5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1D9H8X5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1873897","Cupriavidus sp."],["NCBITaxon%3A876364","Cupriavidus sp. USMAA2-4"]]},{"id":"NCBITaxon:88382","l":"Promicromonospora sukumoe","na":2,"nb":2,"a":[["TED%3AAF-A0A7W3J7T7-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7W3J7T7-F1-model_v4_TED04"],["TED%3AAF-A0A7W3JDT4-F1-model_v4_TED01","TED novel fold AF-A0A7W3JDT4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A88382","Promicromonospora sukumoe"],["NCBITaxon%3A1172178","Promicromonospora sukumoe 327MFSha3.1"]]},{"id":"NCBITaxon:888832","l":"Prevotella salivae DSM 15606","na":2,"nb":2,"a":[["TED%3AAF-E6MT40-F1-model_v4_TED02","TED highly-symmetric fold AF-E6MT40-F1-model_v4_TED02"],["TED%3AAF-E6MS53-F1-model_v4_TED02","TED novel fold AF-E6MS53-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A228604","Segatella salivae"],["NCBITaxon%3A888832","Segatella salivae DSM 15606"]]},{"id":"NCBITaxon:889378","l":"Spirochaeta africana DSM 8902","na":2,"nb":2,"a":[["TED%3AAF-H9UHS0-F1-model_v4_TED01","TED highly-symmetric fold AF-H9UHS0-F1-model_v4_TED01"],["TED%3AAF-H9UIK6-F1-model_v4_TED01","TED novel fold AF-H9UIK6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A46355","Spirochaeta africana"],["NCBITaxon%3A889378","Spirochaeta africana DSM 8902"]]},{"id":"NCBITaxon:912594","l":"Mycolicibacterium iranicum","na":2,"nb":2,"a":[["TED%3AAF-A0A178LVR2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A178LVR2-F1-model_v4_TED02"],["TED%3AAF-A0A178M0U6-F1-model_v4_TED01","TED novel fold AF-A0A178M0U6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A912594","Mycolicibacterium iranicum"],["NCBITaxon%3A1370125","Mycolicibacterium iranicum UM_TJL"]]},{"id":"NCBITaxon:95641","l":"Methylotuvimicrobium buryatense","na":2,"nb":2,"a":[["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"],["Pfam%3APF01011","Glucose/ethanol/alcohol dehydrogenase, beta-propeller domain"]],"b":[["NCBITaxon%3A95641","Methylotuvimicrobium buryatense"],["NCBITaxon%3A675511","Methylotuvimicrobium buryatense 5G"]]},{"id":"NCBITaxon:981334","l":"Acinetobacter radioresistens DSM 6976 = NBRC 102413 = CIP 103788","na":2,"nb":2,"a":[["TED%3AAF-A0A7U9KBJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7U9KBJ8-F1-model_v4_TED01"],["TED%3AAF-A0A7U9KCJ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7U9KCJ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A40216","Acinetobacter radioresistens"],["NCBITaxon%3A981334","Acinetobacter radioresistens DSM 6976 = NBRC 102413 = CIP 103788"]]},{"id":"NCBITaxon:99656","l":"[Clostridium] fimetarium","na":2,"nb":2,"a":[["TED%3AAF-A0A1I0N088-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I0N088-F1-model_v4_TED02"],["TED%3AAF-A0A1I0QS44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I0QS44-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A99656","[Clostridium] fimetarium"],["NCBITaxon%3A1121311","[Clostridium] fimetarium DSM 9179"]]},{"id":"NCBITaxon:997347","l":"Fusobacterium animalis ATCC 51191","na":2,"nb":2,"a":[["TED%3AAF-F9ENM2-F1-model_v4_TED01","TED highly-symmetric fold AF-F9ENM2-F1-model_v4_TED01"],["TED%3AAF-F9ERA5-F1-model_v4_TED03","TED highly-symmetric fold AF-F9ERA5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A76859","Fusobacterium animalis"],["NCBITaxon%3A997347","Fusobacterium animalis ATCC 51191"]]},{"id":"NCBITaxon:2","l":"Bacteria","na":1,"nb":605695,"a":[["proteintraitsmech%3AORTHODB_LEVEL_2","Bacteria orthologous groups (OrthoDB)"]],"b":[["NCBITaxon%3A119160","2,3-D degrading bacterium NHC2"],["NCBITaxon%3A119159","2,3-D degrading bacterium NHG3"],["NCBITaxon%3A103498","2,4-D-degrading bacterium 001"],["NCBITaxon%3A103499","2,4-D-degrading bacterium 007"],["NCBITaxon%3A103492","2,4-D-degrading bacterium 010"],["NCBITaxon%3A103495","2,4-D-degrading bacterium 012"]]},{"id":"NCBITaxon:2157","l":"Archaea","na":1,"nb":14013,"a":[["proteintraitsmech%3AORTHODB_LEVEL_2157","Archaea orthologous groups (OrthoDB)"]],"b":[["NCBITaxon%3A3879924","Abyssiniarchaeum dallolvicinus (SeqCode)"],["NCBITaxon%3A3693715","Acidarchaeum fankouense (SeqCode)"],["NCBITaxon%3A2283","Acidianus ambivalens"],["NCBITaxon%3A41673","Acidianus brierleyi"],["NCBITaxon%3A269667","Acidianus convivator"],["NCBITaxon%3A563177","Acidianus hospitalis"]]},{"id":"NCBITaxon:2759","l":"Eukaryota","na":1,"nb":6243,"a":[["proteintraitsmech%3AORTHODB_LEVEL_2759","Eukaryota orthologous groups (OrthoDB)"]],"b":[["NCBITaxon%3A1450171","Aaosphaeria arxii"],["NCBITaxon%3A749232","Abeoforma whisleri"],["NCBITaxon%3A137743","Abortiporus biennis"],["NCBITaxon%3A420591","Absidia anomala"],["NCBITaxon%3A90261","Absidia caerulea"],["NCBITaxon%3A327741","Absidia californica"]]},{"id":"NCBITaxon:487","l":"Neisseria meningitidis","na":1,"nb":232,"a":[["Pfam%3APF22582","Amylosucrase, C-terminal domain"]],"b":[["NCBITaxon%3A487","Neisseria meningitidis"],["NCBITaxon%3A374833","Neisseria meningitidis 053442"],["NCBITaxon%3A926508","Neisseria meningitidis 1076"],["NCBITaxon%3A926533","Neisseria meningitidis 1101"],["NCBITaxon%3A926506","Neisseria meningitidis 1102"],["NCBITaxon%3A926507","Neisseria meningitidis 115 CB V1"]]},{"id":"NCBITaxon:1978231","l":"Acidobacteriota bacterium","na":186,"nb":1,"a":[["TED%3AAF-A0A2E4W649-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4W649-F1-model_v4_TED01"],["TED%3AAF-A0A2P6WIX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P6WIX4-F1-model_v4_TED01"],["TED%3AAF-A0A2V2RP64-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V2RP64-F1-model_v4_TED01"],["TED%3AAF-A0A2V7TZP2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V7TZP2-F1-model_v4_TED01"],["TED%3AAF-A0A2V7USQ3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V7USQ3-F1-model_v4_TED02"],["TED%3AAF-A0A2V7V8X8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V7V8X8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1978231","Acidobacteriota bacterium"]]},{"id":"NCBITaxon:44689","l":"Dictyostelium discoideum","na":151,"nb":1,"a":[["IDPO%3A0000002","disorder"],["IDPO%3A0000030","entropic chain"],["IDPO%3A0000006","order"],["IDPO%3A0000058","self-activation"],["Pfam%3APF23297","Highly reducing polyketide synthase sdgA, C-terminal ACP domain"],["Pfam%3APF09192","Actin-fragmin kinase, catalytic"]],"b":[["NCBITaxon%3A44689","Dictyostelium discoideum"]]},{"id":"NCBITaxon:59203","l":"Salmonella enterica subsp. arizonae","na":1,"nb":151,"a":[["TED%3AAF-A0A3S4K1T2-F1-model_v4_TED01","TED novel fold AF-A0A3S4K1T2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59203","Salmonella enterica subsp. arizonae"],["NCBITaxon%3A2577126","Salmonella enterica subsp. arizonae serovar 11:z4,z23:-"],["NCBITaxon%3A2577127","Salmonella enterica subsp. arizonae serovar 13,22:z4,z23:-"],["NCBITaxon%3A2691147","Salmonella enterica subsp. arizonae serovar 13,23:g,z51:-"],["NCBITaxon%3A2577128","Salmonella enterica subsp. arizonae serovar 13,23:z4,z23,[z32]:-"]]},{"id":"NCBITaxon:58095","l":"Salmonella enterica subsp. enterica serovar Agona","na":1,"nb":145,"a":[["TED%3AAF-A0A752MZK0-F1-model_v4_TED01","TED novel fold AF-A0A752MZK0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A58095","Salmonella enterica subsp. enterica serovar Agona"],["NCBITaxon%3A1265673","Salmonella enterica subsp. enterica serovar Agona str. 01.O.05"],["NCBITaxon%3A1029989","Salmonella enterica subsp. enterica serovar Agona str. 0292"],["NCBITaxon%3A1265665","Salmonella enterica subsp. enterica serovar Agona str. 02.O.05"],["NCBITaxon%3A1029990","Salmonella enterica subsp. enterica serovar Agona str. 0322"],["NCBITaxon%3A1265636","Salmonella enterica subsp. enterica serovar Agona str. 03.O.05"]]},{"id":"NCBITaxon:2026735","l":"Deltaproteobacteria bacterium","na":134,"nb":1,"a":[["TED%3AAF-A0A2D5SEF5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D5SEF5-F1-model_v4_TED01"],["TED%3AAF-A0A2D5ST50-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D5ST50-F1-model_v4_TED01"],["TED%3AAF-A0A2D7NP73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D7NP73-F1-model_v4_TED01"],["TED%3AAF-A0A2E7MB46-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2E7MB46-F1-model_v4_TED03"],["TED%3AAF-A0A2E9GNR1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E9GNR1-F1-model_v4_TED02"],["TED%3AAF-A0A2E9GV09-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E9GV09-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026735","Deltaproteobacteria bacterium"]]},{"id":"NCBITaxon:71421","l":"Haemophilus influenzae (strain ATCC 51907 / DSM 11121 / KW20 / Rd)","na":133,"nb":1,"a":[["Pfam%3APF13521","AAA domain"],["Pfam%3APF13654","LonB-like, AAA domain"],["Pfam%3APF16326","ABC transporter C-terminal domain"],["Pfam%3APF13710","ACT domain"],["Pfam%3APF12633","Adenylate cyclase NT domain"],["Pfam%3APF26690","Adenylate cyclase, class-I, third domain"]],"b":[["NCBITaxon%3A71421","Haemophilus influenzae Rd KW20"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":1,"nb":124,"a":[["Pfam%3APF08124","Polysaccharide lyase family 8, N terminal alpha-helical domain"]],"b":[["NCBITaxon%3A1748","Acidipropionibacterium acidipropionici"],["NCBITaxon%3A1171373","Acidipropionibacterium acidipropionici ATCC 4875"],["NCBITaxon%3A1750","Arachnia propionica"],["NCBITaxon%3A38288","Corynebacterium genitalium"],["NCBITaxon%3A585529","Corynebacterium genitalium ATCC 33030"],["NCBITaxon%3A1747","Cutibacterium acnes"]]},{"id":"NCBITaxon:264691","l":"Trichormus variabilis","na":1,"nb":120,"a":[["Pfam%3APF09194","Restriction endonuclease BsobI"]],"b":[["NCBITaxon%3A264691","Trichormus variabilis"],["NCBITaxon%3A375899","Trichormus variabilis 0441"],["NCBITaxon%3A358556","Trichormus variabilis 9CH37S2"],["NCBITaxon%3A2681313","Trichormus variabilis 9RC"],["NCBITaxon%3A1392459","Trichormus variabilis A1"],["NCBITaxon%3A2799915","Trichormus variabilis A2"]]},{"id":"NCBITaxon:2026780","l":"Planctomycetota bacterium","na":119,"nb":1,"a":[["TED%3AAF-A0A2A5DKK7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A5DKK7-F1-model_v4_TED01"],["TED%3AAF-A0A2A5DYX6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A5DYX6-F1-model_v4_TED01"],["TED%3AAF-A0A2D5ATW0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D5ATW0-F1-model_v4_TED01"],["TED%3AAF-A0A2D5AYR3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D5AYR3-F1-model_v4_TED01"],["TED%3AAF-A0A2D5NH55-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D5NH55-F1-model_v4_TED01"],["TED%3AAF-A0A2D5NKW7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D5NKW7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026780","Planctomycetota bacterium"]]},{"id":"NCBITaxon:263","l":"Francisella tularensis","na":1,"nb":117,"a":[["TED%3AAF-A0A6I4RUC7-F1-model_v4_TED02","TED novel fold AF-A0A6I4RUC7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A984129","Francisella cf. novicida Fx1"],["NCBITaxon%3A676032","Francisella cf. tularensis subsp. novicida 3523"],["NCBITaxon%3A263","Francisella tularensis"],["NCBITaxon%3A1367846","Francisella tularensis 99A-2628"],["NCBITaxon%3A545771","Francisella tularensis B-SA"],["NCBITaxon%3A1410527","Francisella tularensis FSC069"]]},{"id":"NCBITaxon:2026724","l":"Chloroflexota bacterium","na":108,"nb":1,"a":[["TED%3AAF-A0A2D9WK23-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9WK23-F1-model_v4_TED01"],["TED%3AAF-A0A2E4F1D3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4F1D3-F1-model_v4_TED01"],["TED%3AAF-A0A2E5E7P4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E5E7P4-F1-model_v4_TED02"],["TED%3AAF-A0A2E5F270-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E5F270-F1-model_v4_TED02"],["TED%3AAF-A0A2E5NZE5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E5NZE5-F1-model_v4_TED01"],["TED%3AAF-A0A2E6WIS4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E6WIS4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026724","Chloroflexota bacterium"]]},{"id":"NCBITaxon:83331","l":"Mycobacterium tuberculosis (strain CDC 1551 / Oshkosh)","na":99,"nb":1,"a":[["Pfam%3APF09407","AbiEi antitoxin C-terminal domain"],["Pfam%3APF17668","Acetyltransferase (GNAT) domain"],["Pfam%3APF13480","Acetyltransferase (GNAT) domain"],["Pfam%3APF13527","Acetyltransferase (GNAT) domain"],["Pfam%3APF16701","Adenylate cyclase regulatory domain"],["Pfam%3APF06029","AlkA N-terminal domain"]],"b":[["NCBITaxon%3A83331","Mycobacterium tuberculosis CDC1551"]]},{"id":"NCBITaxon:1883427","l":"Actinomycetia bacterium","na":78,"nb":1,"a":[["TED%3AAF-A0A2E4AXX0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2E4AXX0-F1-model_v4_TED04"],["TED%3AAF-A0A2W4J8T7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W4J8T7-F1-model_v4_TED01"],["TED%3AAF-A0A350SGF5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A350SGF5-F1-model_v4_TED03"],["TED%3AAF-A0A350XSJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A350XSJ9-F1-model_v4_TED01"],["TED%3AAF-A0A3A4PC78-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A4PC78-F1-model_v4_TED01"],["TED%3AAF-A0A3A4PG42-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A4PG42-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1883427","Actinomycetes bacterium"]]},{"id":"NCBITaxon:1764","l":"Mycobacterium avium","na":1,"nb":76,"a":[["Pfam%3APF01882","Protein of unknown function DUF58"]],"b":[["NCBITaxon%3A1764","Mycobacterium avium"],["NCBITaxon%3A1392002","Mycobacterium avium 05-4293"],["NCBITaxon%3A1392001","Mycobacterium avium 09-5983"],["NCBITaxon%3A1235987","Mycobacterium avium 100"],["NCBITaxon%3A1235988","Mycobacterium avium 101"],["NCBITaxon%3A243243","Mycobacterium avium 104"]]},{"id":"NCBITaxon:1898104","l":"Bacteroidota bacterium","na":72,"nb":1,"a":[["TED%3AAF-A0A2A4Q994-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2A4Q994-F1-model_v4_TED03"],["TED%3AAF-A0A2G6GVF6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2G6GVF6-F1-model_v4_TED03"],["TED%3AAF-A0A2T4XGN9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T4XGN9-F1-model_v4_TED01"],["TED%3AAF-A0A317HCP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A317HCP7-F1-model_v4_TED01"],["TED%3AAF-A0A350BLG6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A350BLG6-F1-model_v4_TED01"],["TED%3AAF-A0A350IIQ5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A350IIQ5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1898104","Bacteroidota bacterium"]]},{"id":"NCBITaxon:28183","l":"Leptospira santarosai","na":1,"nb":72,"a":[["TED%3AAF-A0A2P1QYQ7-F1-model_v4_TED01","TED novel fold AF-A0A2P1QYQ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28183","Leptospira santarosai"],["NCBITaxon%3A312171","Leptospira santarosai serovar Alexi"],["NCBITaxon%3A407851","Leptospira santarosai serovar Alice"],["NCBITaxon%3A1049975","Leptospira santarosai serovar Arenal"],["NCBITaxon%3A1085549","Leptospira santarosai serovar Arenal str. 11"],["NCBITaxon%3A1085550","Leptospira santarosai serovar Arenal str. 7"]]},{"id":"NCBITaxon:216816","l":"Bifidobacterium longum","na":1,"nb":69,"a":[["TED%3AAF-A0A413ACI9-F1-model_v4_TED01","TED novel fold AF-A0A413ACI9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1680","Bifidobacterium adolescentis"],["NCBITaxon%3A216816","Bifidobacterium longum"],["NCBITaxon%3A1000567","Bifidobacterium longum 3_1_37DFAAB"],["NCBITaxon%3A1280702","Bifidobacterium longum AGR2137"],["NCBITaxon%3A478445","Bifidobacterium longum BORI"],["NCBITaxon%3A1263059","Bifidobacterium longum CAG:69"]]},{"id":"NCBITaxon:83554","l":"Chlamydia psittaci","na":1,"nb":69,"a":[["Pfam%3APF01345","CLIPPER domain"]],"b":[["NCBITaxon%3A83554","Chlamydia psittaci"],["NCBITaxon%3A1112252","Chlamydia psittaci 01DC11"],["NCBITaxon%3A1221877","Chlamydia psittaci 01DC12"],["NCBITaxon%3A1112253","Chlamydia psittaci 02DC14"],["NCBITaxon%3A1112254","Chlamydia psittaci 02DC15"],["NCBITaxon%3A1112255","Chlamydia psittaci 02DC16"]]},{"id":"NCBITaxon:1913989","l":"Gammaproteobacteria bacterium","na":68,"nb":1,"a":[["TED%3AAF-A0A2D7BTI7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2D7BTI7-F1-model_v4_TED03"],["TED%3AAF-A0A2E0GQK5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E0GQK5-F1-model_v4_TED02"],["TED%3AAF-A0A2E1MNN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E1MNN3-F1-model_v4_TED01"],["TED%3AAF-A0A2E4G9I4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E4G9I4-F1-model_v4_TED02"],["TED%3AAF-A0A2E9KQ70-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E9KQ70-F1-model_v4_TED02"],["TED%3AAF-A0A2G6L7M2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2G6L7M2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1913989","Gammaproteobacteria bacterium"]]},{"id":"NCBITaxon:2026779","l":"Planctomycetaceae bacterium","na":66,"nb":1,"a":[["TED%3AAF-A0A2D4WNH1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D4WNH1-F1-model_v4_TED01"],["TED%3AAF-A0A2D4WRD3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D4WRD3-F1-model_v4_TED01"],["TED%3AAF-A0A2D5S4B7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2D5S4B7-F1-model_v4_TED03"],["TED%3AAF-A0A2D5S7C0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D5S7C0-F1-model_v4_TED01"],["TED%3AAF-A0A2D5YVT9-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A2D5YVT9-F1-model_v4_TED05"],["TED%3AAF-A0A2E0X0G9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E0X0G9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026779","Planctomycetaceae bacterium"]]},{"id":"NCBITaxon:246196","l":"Mycolicibacterium smegmatis (strain ATCC 700084 / mc(2)155)","na":66,"nb":1,"a":[["Pfam%3APF12806","Acetyl-CoA dehydrogenase C-terminal like"],["Pfam%3APF12897","Aspartate amino-transferase"],["Pfam%3APF05088","Bacterial NAD-glutamate dehydrogenase, catalytic domain"],["Pfam%3APF26519","Biotin synthase auxiliary protein family"],["Pfam%3APF21095","CarD, C-terminal domain"],["Pfam%3APF24607","Arabinofuranosyltransferase D, third carbohydrate binding module"]],"b":[["NCBITaxon%3A246196","Mycolicibacterium smegmatis MC2 155"]]},{"id":"NCBITaxon:1111708","l":"Synechocystis sp. (strain ATCC 27184 / PCC 6803 / Kazusa)","na":61,"nb":1,"a":[["Pfam%3APF07698","7TM receptor with intracellular HD hydrolase"],["Pfam%3APF07697","7TM-HD extracellular"],["Pfam%3APF11266","Long-chain fatty aldehyde decarbonylase"],["Pfam%3APF21571","Arginine dihydrolase ArgZ-like, C-terminal, first region"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF17886","HSP20-like domain found in ArsA"]],"b":[["NCBITaxon%3A1111708","Synechocystis sp. PCC 6803 substr. Kazusa"]]},{"id":"NCBITaxon:174","l":"Leptospira borgpetersenii","na":1,"nb":61,"a":[["Pfam%3APF01548","Transposase"]],"b":[["NCBITaxon%3A174","Leptospira borgpetersenii"],["NCBITaxon%3A652580","Leptospira borgpetersenii serovar Arborea"],["NCBITaxon%3A1218566","Leptospira borgpetersenii serovar Arborea str. LT2208"],["NCBITaxon%3A508535","Leptospira borgpetersenii serovar Balcanica"],["NCBITaxon%3A280505","Leptospira borgpetersenii serovar Ballum"],["NCBITaxon%3A376921","Leptospira borgpetersenii serovar Castellonis"]]},{"id":"NCBITaxon:2026799","l":"Verrucomicrobiota bacterium","na":59,"nb":1,"a":[["TED%3AAF-A0A2E4G0Z6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E4G0Z6-F1-model_v4_TED02"],["TED%3AAF-A0A2N9NMU0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N9NMU0-F1-model_v4_TED01"],["TED%3AAF-A0A2N9NPU2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N9NPU2-F1-model_v4_TED01"],["TED%3AAF-A0A2V2BWA1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V2BWA1-F1-model_v4_TED02"],["TED%3AAF-A0A2V2C310-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V2C310-F1-model_v4_TED01"],["TED%3AAF-A0A2V2DHS2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V2DHS2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026799","Verrucomicrobiota bacterium"]]},{"id":"NCBITaxon:1869227","l":"bacterium","na":57,"nb":1,"a":[["TED%3AAF-A0A2D6E3L3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D6E3L3-F1-model_v4_TED02"],["TED%3AAF-A0A2D6IMF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D6IMF4-F1-model_v4_TED01"],["TED%3AAF-A0A3N5GA95-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3N5GA95-F1-model_v4_TED02"],["TED%3AAF-A0A3N5I065-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N5I065-F1-model_v4_TED01"],["TED%3AAF-A0A496UYV5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A496UYV5-F1-model_v4_TED02"],["TED%3AAF-A0A4Q3U385-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q3U385-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1869227","bacterium"]]},{"id":"NCBITaxon:233413","l":"Mycobacterium bovis (strain ATCC BAA-935 / AF2122/97)","na":52,"nb":1,"a":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF12625","Arabinose-binding domain of AraC transcription regulator, N-term"],["Pfam%3APF21139","Methylcrotonyl-CoA carboxylase, alpha-subunit, BT domain"],["Pfam%3APF09167","Domain of unknown function (DUF1942)"],["Pfam%3APF09438","Domain of unknown function (DUF2017)"],["Pfam%3APF12823","Domain of unknown function (DUF3817)"]],"b":[["NCBITaxon%3A233413","Mycobacterium tuberculosis variant bovis AF2122/97"]]},{"id":"NCBITaxon:1165","l":"Anabaena cylindrica","na":1,"nb":51,"a":[["Pfam%3APF17275","Family of unknown function (DUF5340)"]],"b":[["NCBITaxon%3A136078","Anabaena cf. cylindrica 133"],["NCBITaxon%3A2716356","Anabaena cf. cylindrica BACA0067"],["NCBITaxon%3A136079","Anabaena cf. cylindrica PMC9705"],["NCBITaxon%3A264675","Anabaena cf. cylindrica XP6B"],["NCBITaxon%3A1165","Anabaena cylindrica"],["NCBITaxon%3A425377","Anabaena cylindrica A621"]]},{"id":"NCBITaxon:1184","l":"Leptolyngbya boryana","na":1,"nb":51,"a":[["Pfam%3APF17265","Family of unknown function (DUF5331)"]],"b":[["NCBITaxon%3A1184","Leptolyngbya boryana"],["NCBITaxon%3A2745129","Leptolyngbya boryana ampf9"],["NCBITaxon%3A2048973","Leptolyngbya boryana AV12"],["NCBITaxon%3A3013905","Leptolyngbya boryana BACA0330"],["NCBITaxon%3A3384761","Leptolyngbya boryana BEA 1476B"],["NCBITaxon%3A3024996","Leptolyngbya boryana C132"]]},{"id":"NCBITaxon:2026763","l":"Myxococcales bacterium","na":51,"nb":1,"a":[["TED%3AAF-A0A2E5HQQ8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E5HQQ8-F1-model_v4_TED02"],["TED%3AAF-A0A2E6VRH0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E6VRH0-F1-model_v4_TED01"],["TED%3AAF-A0A2E6VU88-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E6VU88-F1-model_v4_TED01"],["TED%3AAF-A0A2F0AQB0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2F0AQB0-F1-model_v4_TED03"],["TED%3AAF-A0A2F0AS25-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2F0AS25-F1-model_v4_TED01"],["TED%3AAF-A0A356T3G6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A356T3G6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026763","Myxococcales bacterium"]]},{"id":"NCBITaxon:2026742","l":"Gemmatimonadota bacterium","na":49,"nb":1,"a":[["TED%3AAF-A0A2D8UDK3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D8UDK3-F1-model_v4_TED02"],["TED%3AAF-A0A2E8HI53-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E8HI53-F1-model_v4_TED02"],["TED%3AAF-A0A2V7GTY6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2V7GTY6-F1-model_v4_TED03"],["TED%3AAF-A0A2V7KRA4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V7KRA4-F1-model_v4_TED01"],["TED%3AAF-A0A2V7S355-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V7S355-F1-model_v4_TED01"],["TED%3AAF-A0A3M2BQU6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M2BQU6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026742","Gemmatimonadota bacterium"]]},{"id":"NCBITaxon:2026714","l":"Candidatus Bathyarchaeota archaeon","na":48,"nb":1,"a":[["TED%3AAF-A0A2U0S3C7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U0S3C7-F1-model_v4_TED01"],["TED%3AAF-A0A3R7FRL7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R7FRL7-F1-model_v4_TED01"],["TED%3AAF-A0A419JY39-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A419JY39-F1-model_v4_TED02"],["TED%3AAF-A0A497K2R1-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A497K2R1-F1-model_v4_TED04"],["TED%3AAF-A0A497M2J4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A497M2J4-F1-model_v4_TED02"],["TED%3AAF-A0A537DTR3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A537DTR3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026714","Candidatus Bathyarchaeota archaeon"]]},{"id":"NCBITaxon:75695","l":"Umezakia ovalisporum","na":1,"nb":48,"a":[["TED%3AAF-A0A654SF36-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A654SF36-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A75695","Umezakia ovalisporum"],["NCBITaxon%3A543814","Umezakia ovalisporum 1LT27S04"],["NCBITaxon%3A543812","Umezakia ovalisporum 2LT27S02"],["NCBITaxon%3A543813","Umezakia ovalisporum 2LT27S12"],["NCBITaxon%3A2290998","Umezakia ovalisporum A1"],["NCBITaxon%3A985844","Umezakia ovalisporum AB2010/05"]]},{"id":"NCBITaxon:1977087","l":"Pseudomonadota bacterium","na":46,"nb":1,"a":[["TED%3AAF-A0A2E7CHS1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E7CHS1-F1-model_v4_TED02"],["TED%3AAF-A0A2E7CJB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E7CJB9-F1-model_v4_TED01"],["TED%3AAF-A0A2E7CKH3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E7CKH3-F1-model_v4_TED02"],["TED%3AAF-A0A2E7CLD6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2E7CLD6-F1-model_v4_TED04"],["TED%3AAF-A0A2G6CNE9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G6CNE9-F1-model_v4_TED01"],["TED%3AAF-A0A2W4LDI3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W4LDI3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1977087","Pseudomonadota bacterium"]]},{"id":"NCBITaxon:224324","l":"Aquifex aeolicus (strain VF5)","na":46,"nb":1,"a":[["IDPO%3A0000018","disorder to molten globule"],["IDPO%3A0000003","molten globule"],["IDPO%3A0000014","order to disorder"],["Pfam%3APF22430","Ago, N-terminal domain"],["Pfam%3APF08843","Nucleotidyl transferase AbiEii toxin, Type IV TA system"],["Pfam%3APF27187","aq_097 APC superfamily transporter"]],"b":[["NCBITaxon%3A224324","Aquifex aeolicus VF5"]]},{"id":"NCBITaxon:2026739","l":"Euryarchaeota archaeon","na":44,"nb":1,"a":[["TED%3AAF-A0A2D6U3C6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D6U3C6-F1-model_v4_TED01"],["TED%3AAF-A0A2D6UU17-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D6UU17-F1-model_v4_TED02"],["TED%3AAF-A0A2E1YFF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E1YFF4-F1-model_v4_TED01"],["TED%3AAF-A0A2E2S7P6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E2S7P6-F1-model_v4_TED02"],["TED%3AAF-A0A2E2TTK1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E2TTK1-F1-model_v4_TED02"],["TED%3AAF-A0A2E3C8C1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2E3C8C1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2026739","Methanobacteriota archaeon"]]},{"id":"NCBITaxon:149391","l":"Salmonella enterica subsp. enterica serovar Braenderup","na":1,"nb":43,"a":[["TED%3AAF-A0A5X8MTY2-F1-model_v4_TED01","TED novel fold AF-A0A5X8MTY2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A149391","Salmonella enterica subsp. enterica serovar Braenderup"],["NCBITaxon%3A1173803","Salmonella enterica subsp. enterica serovar Braenderup str. 0823"],["NCBITaxon%3A1124927","Salmonella enterica subsp. enterica serovar Braenderup str. 700136"],["NCBITaxon%3A1192707","Salmonella enterica subsp. enterica serovar Braenderup str. 85239"]]},{"id":"NCBITaxon:268141","l":"Phormidesmis priestleyi","na":1,"nb":43,"a":[["TED%3AAF-A0A2W4ZQA1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W4ZQA1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A268141","Phormidesmis priestleyi"],["NCBITaxon%3A3051850","Phormidesmis priestleyi 101"],["NCBITaxon%3A3051851","Phormidesmis priestleyi 102"],["NCBITaxon%3A3051852","Phormidesmis priestleyi 103"],["NCBITaxon%3A3438410","Phormidesmis priestleyi 3-1-A_LPP2"],["NCBITaxon%3A1844210","Phormidesmis priestleyi AB 10-10"]]},{"id":"NCBITaxon:456327","l":"Xanthomonas euvesicatoria","na":1,"nb":42,"a":[["Pfam%3APF03377","TAL effector repeat"]],"b":[["NCBITaxon%3A487855","Xanthomonas campestris pv. blepharidis"],["NCBITaxon%3A487857","Xanthomonas campestris pv. carissae"],["NCBITaxon%3A487859","Xanthomonas campestris pv. clerodendri"],["NCBITaxon%3A487860","Xanthomonas campestris pv. convolvuli"],["NCBITaxon%3A279089","Xanthomonas campestris pv. coriandri"],["NCBITaxon%3A487861","Xanthomonas campestris pv. daturae"]]},{"id":"NCBITaxon:340","l":"Xanthomonas campestris pv. campestris","na":1,"nb":41,"a":[["Pfam%3APF22059","Glucuronosyltransferase GumK, N-terminal domain"]],"b":[["NCBITaxon%3A339","Xanthomonas campestris"],["NCBITaxon%3A340","Xanthomonas campestris pv. campestris"],["NCBITaxon%3A1357995","Xanthomonas campestris pv. campestris str. 147"],["NCBITaxon%3A314565","Xanthomonas campestris pv. campestris str. 8004"],["NCBITaxon%3A190485","Xanthomonas campestris pv. campestris str. ATCC 33913"],["NCBITaxon%3A509169","Xanthomonas campestris pv. campestris str. B100"]]},{"id":"NCBITaxon:2052180","l":"Phycisphaerales bacterium","na":40,"nb":1,"a":[["TED%3AAF-A0A349UME3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A349UME3-F1-model_v4_TED02"],["TED%3AAF-A0A349UPM2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A349UPM2-F1-model_v4_TED02"],["TED%3AAF-A0A349UQM8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A349UQM8-F1-model_v4_TED02"],["TED%3AAF-A0A357C0B5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A357C0B5-F1-model_v4_TED01"],["TED%3AAF-A0A3D0JYL5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D0JYL5-F1-model_v4_TED01"],["TED%3AAF-A0A6P2AJ98-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6P2AJ98-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052180","Phycisphaerales bacterium"]]},{"id":"NCBITaxon:367110","l":"Neurospora crassa (strain ATCC 24698 / 74-OR23-1A / CBS 708.71 / DSM 1257 / FGSC 987)","na":40,"nb":1,"a":[["Pfam%3APF08509","Adenylate cyclase G-alpha binding domain"],["Pfam%3APF25026","Asd-4-like domain"],["Pfam%3APF21334","Fungal epsilon subunit of F1F0-ATP synthase C-terminal domain"],["Pfam%3APF20238","Copper acquisition factor BIM1-like"],["Pfam%3APF21492","Ribosomal protein L31p, N-terminal"],["Pfam%3APF00734","Fungal cellulose binding domain"]],"b":[["NCBITaxon%3A367110","Neurospora crassa OR74A"]]},{"id":"NCBITaxon:595","l":"Salmonella enterica subsp. enterica serovar Infantis","na":1,"nb":40,"a":[["Pfam%3APF12728","Helix-turn-helix domain"]],"b":[["NCBITaxon%3A595","Salmonella enterica subsp. enterica serovar Infantis"],["NCBITaxon%3A1173851","Salmonella enterica subsp. enterica serovar Infantis str. 0662"],["NCBITaxon%3A1329901","Salmonella enterica subsp. enterica serovar Infantis str. 119944"],["NCBITaxon%3A1347789","Salmonella enterica subsp. enterica serovar Infantis str. 335-3"],["NCBITaxon%3A1192724","Salmonella enterica subsp. enterica serovar Infantis str. 79108"],["NCBITaxon%3A1192725","Salmonella enterica subsp. enterica serovar Infantis str. 81164"]]},{"id":"NCBITaxon:1879010","l":"Bacillota bacterium","na":39,"nb":1,"a":[["TED%3AAF-A0A2V2EW79-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V2EW79-F1-model_v4_TED02"],["TED%3AAF-A0A2V2GI07-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V2GI07-F1-model_v4_TED01"],["TED%3AAF-A0A316N6L2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A316N6L2-F1-model_v4_TED01"],["TED%3AAF-A0A348VYN1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A348VYN1-F1-model_v4_TED01"],["TED%3AAF-A0A350BI57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A350BI57-F1-model_v4_TED01"],["TED%3AAF-A0A351SP42-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A351SP42-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1879010","Bacillota bacterium"]]},{"id":"NCBITaxon:1913988","l":"Alphaproteobacteria bacterium","na":38,"nb":1,"a":[["TED%3AAF-A0A2A4UMX6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A4UMX6-F1-model_v4_TED01"],["TED%3AAF-A0A2A4YY25-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2A4YY25-F1-model_v4_TED02"],["TED%3AAF-A0A2D6WF12-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D6WF12-F1-model_v4_TED02"],["TED%3AAF-A0A349MJ15-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349MJ15-F1-model_v4_TED01"],["TED%3AAF-A0A349MKS3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349MKS3-F1-model_v4_TED01"],["TED%3AAF-A0A356FV58-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A356FV58-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1913988","Alphaproteobacteria bacterium"]]},{"id":"NCBITaxon:47715","l":"Lacticaseibacillus rhamnosus","na":1,"nb":38,"a":[["Pfam%3APF04914","DltD protein"]],"b":[["NCBITaxon%3A1597","Lacticaseibacillus paracasei"],["NCBITaxon%3A47715","Lacticaseibacillus rhamnosus"],["NCBITaxon%3A1381116","Lacticaseibacillus rhamnosus 2166"],["NCBITaxon%3A1408180","Lacticaseibacillus rhamnosus 51B"],["NCBITaxon%3A1002365","Lacticaseibacillus rhamnosus ATCC 21052"],["NCBITaxon%3A1088720","Lacticaseibacillus rhamnosus ATCC 8530"]]},{"id":"NCBITaxon:747","l":"Pasteurella multocida","na":1,"nb":38,"a":[["TED%3AAF-A0A8A8HHD5-F1-model_v4_TED02","TED novel fold AF-A0A8A8HHD5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A714","Aggregatibacter actinomycetemcomitans"],["NCBITaxon%3A747","Pasteurella multocida"],["NCBITaxon%3A1298929","Pasteurella multocida 1500C"],["NCBITaxon%3A1298924","Pasteurella multocida 1500E"],["NCBITaxon%3A1298925","Pasteurella multocida 2000"],["NCBITaxon%3A1075089","Pasteurella multocida 36950"]]},{"id":"NCBITaxon:1590","l":"Lactiplantibacillus plantarum","na":1,"nb":36,"a":[["Pfam%3APF06314","Acetoacetate decarboxylase (ADC)"]],"b":[["NCBITaxon%3A271881","Lactiplantibacillus argentoratensis"],["NCBITaxon%3A1423831","Lactiplantibacillus argentoratensis DSM 16365"],["NCBITaxon%3A60520","Lactiplantibacillus paraplantarum"],["NCBITaxon%3A1590","Lactiplantibacillus plantarum"],["NCBITaxon%3A1327988","Lactiplantibacillus plantarum 16"],["NCBITaxon%3A1399793","Lactiplantibacillus plantarum 19L3"]]},{"id":"NCBITaxon:54736","l":"Salmonella bongori","na":1,"nb":36,"a":[["TED%3AAF-A0A698W123-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A698W123-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A54736","Salmonella bongori"],["NCBITaxon%3A1299281","Salmonella bongori CFSAN000509"],["NCBITaxon%3A1299282","Salmonella bongori CFSAN000510"],["NCBITaxon%3A1197719","Salmonella bongori N268-08"],["NCBITaxon%3A218493","Salmonella bongori NCTC 12419"],["NCBITaxon%3A2577113","Salmonella bongori serovar 13,22:r:-"]]},{"id":"NCBITaxon:1898203","l":"Lachnospiraceae bacterium","na":35,"nb":1,"a":[["TED%3AAF-A0A2G3Q064-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G3Q064-F1-model_v4_TED01"],["TED%3AAF-A0A316PVU3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A316PVU3-F1-model_v4_TED02"],["TED%3AAF-A0A349YHB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349YHB4-F1-model_v4_TED01"],["TED%3AAF-A0A349ZVK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349ZVK2-F1-model_v4_TED01"],["TED%3AAF-A0A354ID29-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A354ID29-F1-model_v4_TED04"],["TED%3AAF-A0A355NJL5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A355NJL5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1898203","Lachnospiraceae bacterium"]]},{"id":"NCBITaxon:268115","l":"Shackletoniella antarctica","na":1,"nb":34,"a":[["TED%3AAF-A0A2W4VQ15-F1-model_v4_TED03","TED novel fold AF-A0A2W4VQ15-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2153382","Leptolyngbya cf. antarctica ULC090"],["NCBITaxon%3A268115","Shackletoniella antarctica"],["NCBITaxon%3A3065884","Shackletoniella antarctica ACKU671"],["NCBITaxon%3A3065885","Shackletoniella antarctica ACKU672"],["NCBITaxon%3A268119","Shackletoniella antarctica ANT.BFI.1"],["NCBITaxon%3A268126","Shackletoniella antarctica ANT.L18.1"]]},{"id":"NCBITaxon:438","l":"Acetobacter pasteurianus","na":1,"nb":34,"a":[["TED%3AAF-A0A1A0CE09-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1A0CE09-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A435","Acetobacter aceti"],["NCBITaxon%3A178900","Acetobacter cerevisiae"],["NCBITaxon%3A1307903","Acetobacter cerevisiae DSM 14362"],["NCBITaxon%3A1737472","Acetobacter conturbans"],["NCBITaxon%3A104097","Acetobacter estunensis"],["NCBITaxon%3A104101","Acetobacter indonesiensis"]]},{"id":"NCBITaxon:2026778","l":"Phycisphaerae bacterium","na":33,"nb":1,"a":[["TED%3AAF-A0A2D6LLD2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D6LLD2-F1-model_v4_TED01"],["TED%3AAF-A0A2D9C3W2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2D9C3W2-F1-model_v4_TED03"],["TED%3AAF-A0A2D9CC21-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9CC21-F1-model_v4_TED01"],["TED%3AAF-A0A2D9CGW5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9CGW5-F1-model_v4_TED01"],["TED%3AAF-A0A2E0XWN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0XWN7-F1-model_v4_TED01"],["TED%3AAF-A0A2E3Q3Y9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2E3Q3Y9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2026778","Phycisphaerae bacterium"]]},{"id":"NCBITaxon:2026801","l":"Verrucomicrobiales bacterium","na":33,"nb":1,"a":[["TED%3AAF-A0A2D5AKS0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D5AKS0-F1-model_v4_TED01"],["TED%3AAF-A0A2D9K0M4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9K0M4-F1-model_v4_TED01"],["TED%3AAF-A0A2E0QW10-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0QW10-F1-model_v4_TED01"],["TED%3AAF-A0A2E5EQN4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E5EQN4-F1-model_v4_TED02"],["TED%3AAF-A0A2E5WTV4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E5WTV4-F1-model_v4_TED01"],["TED%3AAF-A0A350EXF0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A350EXF0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026801","Verrucomicrobiales bacterium"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":32,"nb":1,"a":[["Pfam%3APF25848","Rodlin protein"],["Pfam%3APF13420","Acetyltransferase (GNAT) domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF26381","BREX System ATPase PglY protein 5th domain"],["Pfam%3APF26382","BREX System ATPase PglY protein 6th domain"]],"b":[["NCBITaxon%3A100226","Streptomyces coelicolor A3(2)"]]},{"id":"NCBITaxon:170187","l":"Streptococcus pneumoniae serotype 4 (strain ATCC BAA-334 / TIGR4)","na":32,"nb":1,"a":[["Pfam%3APF25935","LcnD-like, barrel-sandwich hybrid domain"],["Pfam%3APF22637","BppA domain 1"],["Pfam%3APF18146","Damage-inducible protein CinA KH domain"],["Pfam%3APF27342","ComB N-terminal domain"],["Pfam%3APF26697","Competence protein ComGC, C-terminal domain"],["Pfam%3APF23117","DpnD N-terminal domain"]],"b":[["NCBITaxon%3A170187","Streptococcus pneumoniae TIGR4"]]},{"id":"NCBITaxon:196","l":"Campylobacter fetus","na":1,"nb":32,"a":[["TED%3AAF-A0A7D7Q980-F1-model_v4_TED02","TED novel fold AF-A0A7D7Q980-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A196","Campylobacter fetus"],["NCBITaxon%3A32019","Campylobacter fetus subsp. fetus"],["NCBITaxon%3A1240980","Campylobacter fetus subsp. fetus 04/554"],["NCBITaxon%3A360106","Campylobacter fetus subsp. fetus 82-40"],["NCBITaxon%3A1273268","Campylobacter fetus subsp. fetus BT 10/98"],["NCBITaxon%3A1273130","Campylobacter fetus subsp. fetus cff110800-21-2"]]},{"id":"NCBITaxon:89957","l":"Polarella glacialis","na":31,"nb":1,"a":[["TED%3AAF-A0A813DR61-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A813DR61-F1-model_v4_TED02"],["TED%3AAF-A0A813EZ41-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A813EZ41-F1-model_v4_TED01"],["TED%3AAF-A0A813F2F6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A813F2F6-F1-model_v4_TED02"],["TED%3AAF-A0A813FUK9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A813FUK9-F1-model_v4_TED01"],["TED%3AAF-A0A813FWP3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A813FWP3-F1-model_v4_TED03"],["TED%3AAF-A0A813FX44-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A813FX44-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A89957","Polarella glacialis"]]},{"id":"NCBITaxon:2021391","l":"Flavobacteriales bacterium","na":30,"nb":1,"a":[["TED%3AAF-A0A2A4YEP9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A4YEP9-F1-model_v4_TED01"],["TED%3AAF-A0A2A5AVN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A5AVN3-F1-model_v4_TED01"],["TED%3AAF-A0A2A5G2T9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2A5G2T9-F1-model_v4_TED02"],["TED%3AAF-A0A2D8WDN1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D8WDN1-F1-model_v4_TED02"],["TED%3AAF-A0A2E6QTX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E6QTX7-F1-model_v4_TED01"],["TED%3AAF-A0A2E6SXH5-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2E6SXH5-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2021391","Flavobacteriales bacterium"]]},{"id":"NCBITaxon:2030927","l":"Bacteroidales bacterium","na":30,"nb":1,"a":[["TED%3AAF-A0A352Z0C5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A352Z0C5-F1-model_v4_TED01"],["TED%3AAF-A0A353YZA1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A353YZA1-F1-model_v4_TED02"],["TED%3AAF-A0A3D2HK01-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3D2HK01-F1-model_v4_TED03"],["TED%3AAF-A0A3N5EPM0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3N5EPM0-F1-model_v4_TED03"],["TED%3AAF-A0A4U1GQT3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U1GQT3-F1-model_v4_TED01"],["TED%3AAF-A0A6I0E1S9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I0E1S9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2030927","Bacteroidales bacterium"]]},{"id":"NCBITaxon:2052143","l":"Anaerolineae bacterium","na":30,"nb":1,"a":[["TED%3AAF-A0A521T0W4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A521T0W4-F1-model_v4_TED02"],["TED%3AAF-A0A7C3CL15-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C3CL15-F1-model_v4_TED02"],["TED%3AAF-A0A7C3W5I8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C3W5I8-F1-model_v4_TED01"],["TED%3AAF-A0A7C3YC23-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C3YC23-F1-model_v4_TED01"],["TED%3AAF-A0A7C5UU49-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A7C5UU49-F1-model_v4_TED05"],["TED%3AAF-A0A7C5YS47-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C5YS47-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2052143","Anaerolineae bacterium"]]},{"id":"NCBITaxon:272947","l":"Rickettsia prowazekii (strain Madrid E)","na":30,"nb":1,"a":[["Pfam%3APF16998","17 kDa outer membrane surface antigen"],["Pfam%3APF11020","Domain of unknown function (DUF2610)"],["Pfam%3APF13441","YMGG-like Gly-zipper"],["Pfam%3APF18324","Bacterial isocitrate dehydrogenase, C-terminal domain"],["Pfam%3APF18640","LepB N-terminal domain"],["Pfam%3APF04392","ABC transporter substrate binding protein"]],"b":[["NCBITaxon%3A272947","Rickettsia prowazekii str. Madrid E"]]},{"id":"NCBITaxon:129910","l":"Limnospira maxima","na":1,"nb":29,"a":[["Pfam%3APF09150","Orange carotenoid protein, N-terminal"]],"b":[["NCBITaxon%3A129910","Limnospira maxima"],["NCBITaxon%3A652024","Limnospira maxima BJ 2000"],["NCBITaxon%3A1193116","Limnospira maxima CCC481"],["NCBITaxon%3A293862","Limnospira maxima CONC-040"],["NCBITaxon%3A513049","Limnospira maxima CS-328"],["NCBITaxon%3A1346522","Limnospira maxima CY-023"]]},{"id":"NCBITaxon:1596","l":"Lactobacillus gasseri","na":1,"nb":29,"a":[["TED%3AAF-A0A845FIT3-F1-model_v4_TED02","TED novel fold AF-A0A845FIT3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A305793","Companilactobacillus nantensis"],["NCBITaxon%3A1596","Lactobacillus gasseri"],["NCBITaxon%3A440498","Lactobacillus gasseri 1151"],["NCBITaxon%3A1403312","Lactobacillus gasseri 130918"],["NCBITaxon%3A1346615","Lactobacillus gasseri 2016"],["NCBITaxon%3A630527","Lactobacillus gasseri 202-4"]]},{"id":"NCBITaxon:1898204","l":"Clostridiaceae bacterium","na":29,"nb":1,"a":[["TED%3AAF-A0A7C6HD61-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C6HD61-F1-model_v4_TED02"],["TED%3AAF-A0A7C6HNV7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C6HNV7-F1-model_v4_TED01"],["TED%3AAF-A0A7V6L6S6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7V6L6S6-F1-model_v4_TED02"],["TED%3AAF-A0A7V6W7J0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7V6W7J0-F1-model_v4_TED03"],["TED%3AAF-A0A7X4ZH89-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X4ZH89-F1-model_v4_TED01"],["TED%3AAF-A0A7X6VJ94-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7X6VJ94-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1898204","Clostridiaceae bacterium"]]},{"id":"NCBITaxon:1932692","l":"Lentisphaerota bacterium","na":29,"nb":1,"a":[["TED%3AAF-A0A2V2GUJ0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2V2GUJ0-F1-model_v4_TED03"],["TED%3AAF-A0A7C5AIX1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C5AIX1-F1-model_v4_TED02"],["TED%3AAF-A0A7C5EJG1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C5EJG1-F1-model_v4_TED01"],["TED%3AAF-A0A7V6HEL0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7V6HEL0-F1-model_v4_TED02"],["TED%3AAF-A0A7V6HGC0-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A7V6HGC0-F1-model_v4_TED06"],["TED%3AAF-A0A7V6LFG8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7V6LFG8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1932692","Lentisphaerota bacterium"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":1,"nb":29,"a":[["TED%3AAF-A0A4R6CRR7-F1-model_v4_TED01","TED novel fold AF-A0A4R6CRR7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1579","Lactobacillus acidophilus"],["NCBITaxon%3A47770","Lactobacillus crispatus"],["NCBITaxon%3A575595","Lactobacillus crispatus 125-2-CHN"],["NCBITaxon%3A1381118","Lactobacillus crispatus 2029"],["NCBITaxon%3A679188","Lactobacillus crispatus 214-1"],["NCBITaxon%3A440496","Lactobacillus crispatus CTV-05"]]},{"id":"NCBITaxon:1335","l":"Streptococcus equinus","na":1,"nb":27,"a":[["TED%3AAF-A0A1V0GLT7-F1-model_v4_TED01","TED novel fold AF-A0A1V0GLT7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1335","Streptococcus equinus"],["NCBITaxon%3A1410675","Streptococcus equinus 2B"],["NCBITaxon%3A1210006","Streptococcus equinus ATCC 33317"],["NCBITaxon%3A864569","Streptococcus equinus ATCC 700338"],["NCBITaxon%3A525379","Streptococcus equinus ATCC 9812"],["NCBITaxon%3A1280690","Streptococcus equinus B315"]]},{"id":"NCBITaxon:319705","l":"Mycobacteroides abscessus subsp. bolletii","na":1,"nb":27,"a":[["TED%3AAF-A0A8B4E570-F1-model_v4_TED01","TED novel fold AF-A0A8B4E570-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A36809","Mycobacteroides abscessus"],["NCBITaxon%3A1185650","Mycobacteroides abscessus subsp. abscessus"],["NCBITaxon%3A319705","Mycobacteroides abscessus subsp. bolletii"],["NCBITaxon%3A1299325","Mycobacteroides abscessus subsp. bolletii 103"],["NCBITaxon%3A1299321","Mycobacteroides abscessus subsp. bolletii 1513"],["NCBITaxon%3A1001704","Mycobacteroides abscessus subsp. bolletii 1S-151-0930"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae (strain ATCC 42149 / RIB 40)","na":27,"nb":1,"a":[["Pfam%3APF09260","Alpha-amylase, domain C"],["Pfam%3APF28338","AclK C-terminal domain"],["Pfam%3APF09206","Alpha-L-arabinofuranosidase B, catalytic"],["Pfam%3APF28380","Sesquiterpene cyclase astC-like C-terminal domain"],["Pfam%3APF13364","Beta-galactosidase second all-beta domain"],["Pfam%3APF10435","Beta-galactosidase, domain 2"]],"b":[["NCBITaxon%3A510516","Aspergillus oryzae RIB40"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":26,"nb":1,"a":[["Pfam%3APF27270","Alr1449"],["Pfam%3APF27301","Alr2735 N-terminal domain"],["Pfam%3APF27288","Alr2735"],["Pfam%3APF21571","Arginine dihydrolase ArgZ-like, C-terminal, first region"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF13205","Bacterial Ig-like domain"]],"b":[["NCBITaxon%3A103690","Nostoc sp. PCC 7120 = FACHB-418"]]},{"id":"NCBITaxon:2026800","l":"Verrucomicrobiaceae bacterium","na":26,"nb":1,"a":[["TED%3AAF-A0A2E4GNC6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4GNC6-F1-model_v4_TED01"],["TED%3AAF-A0A2E5XI32-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E5XI32-F1-model_v4_TED01"],["TED%3AAF-A0A4Q2XDM6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Q2XDM6-F1-model_v4_TED02"],["TED%3AAF-A0A4Q2YNJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q2YNJ9-F1-model_v4_TED01"],["TED%3AAF-A0A4Q2Z5Y8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Q2Z5Y8-F1-model_v4_TED02"],["TED%3AAF-A0A4Q2ZFM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q2ZFM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026800","Verrucomicrobiaceae bacterium"]]},{"id":"NCBITaxon:2371","l":"Xylella fastidiosa","na":1,"nb":26,"a":[["TED%3AAF-A0A1L2B4G6-F1-model_v4_TED02","TED novel fold AF-A0A1L2B4G6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A329529","environmental samples"],["NCBITaxon%3A329530","uncultured Xylella fastidiosa"],["NCBITaxon%3A2371","Xylella fastidiosa"],["NCBITaxon%3A1214121","Xylella fastidiosa 32"],["NCBITaxon%3A1211847","Xylella fastidiosa 6c"],["NCBITaxon%3A160492","Xylella fastidiosa 9a5c"]]},{"id":"NCBITaxon:272561","l":"Chlamydia trachomatis serovar D (strain ATCC VR-885 / DSM 19411 / UW-3/Cx)","na":26,"nb":1,"a":[["Pfam%3APF09825","Biotin-protein ligase, N terminal"],["Pfam%3APF01308","Chlamydia major outer membrane protein"],["Pfam%3APF07577","Domain of Unknown Function (DUF1547)"],["Pfam%3APF27167","GRAD helix-turn-helix domain"],["Pfam%3APF00950","ABC 3 transport family"],["Pfam%3APF07548","Chlamydia polymorphic membrane protein middle domain"]],"b":[["NCBITaxon%3A272561","Chlamydia trachomatis D/UW-3/CX"]]},{"id":"NCBITaxon:28182","l":"Leptospira noguchii","na":1,"nb":26,"a":[["TED%3AAF-A0A540THB7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A540THB7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28182","Leptospira noguchii"],["NCBITaxon%3A508575","Leptospira noguchii serovar Argentiniensis"],["NCBITaxon%3A2608988","Leptospira noguchii serovar Australis"],["NCBITaxon%3A1085539","Leptospira noguchii serovar Autumnalis"],["NCBITaxon%3A1085540","Leptospira noguchii serovar Autumnalis str. ZUN142"],["NCBITaxon%3A508576","Leptospira noguchii serovar Carimagua"]]},{"id":"NCBITaxon:45916","l":"Nostoc ellipsosporum","na":1,"nb":25,"a":[["Pfam%3APF08881","CVNH domain"]],"b":[["NCBITaxon%3A45916","Nostoc ellipsosporum"],["NCBITaxon%3A1565566","Nostoc ellipsosporum AUS-JR/BS/MS/NT-049"],["NCBITaxon%3A1565585","Nostoc ellipsosporum AUS-JR/MT/NT-043"],["NCBITaxon%3A1887373","Nostoc ellipsosporum AUS-JR/MT/NT-102"],["NCBITaxon%3A1887374","Nostoc ellipsosporum AUS-JR/MT/NT-129"],["NCBITaxon%3A1510454","Nostoc ellipsosporum BTA 1075"]]},{"id":"NCBITaxon:2033014","l":"Armatimonadota bacterium","na":24,"nb":1,"a":[["TED%3AAF-A0A351MPS6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A351MPS6-F1-model_v4_TED01"],["TED%3AAF-A0A3D4ZVL2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D4ZVL2-F1-model_v4_TED02"],["TED%3AAF-A0A3D5A2W0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D5A2W0-F1-model_v4_TED01"],["TED%3AAF-A0A5M4DGB7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5M4DGB7-F1-model_v4_TED01"],["TED%3AAF-A0A7C2QLV6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7C2QLV6-F1-model_v4_TED03"],["TED%3AAF-A0A7C2VIR9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C2VIR9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2033014","Armatimonadota bacterium"]]},{"id":"NCBITaxon:2053489","l":"Candidatus Lokiarchaeota archaeon","na":24,"nb":1,"a":[["TED%3AAF-A0A497QJ17-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A497QJ17-F1-model_v4_TED02"],["TED%3AAF-A0A523RAE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A523RAE6-F1-model_v4_TED01"],["TED%3AAF-A0A524CXP6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A524CXP6-F1-model_v4_TED02"],["TED%3AAF-A0A524DLR2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A524DLR2-F1-model_v4_TED01"],["TED%3AAF-A0A524EDL8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A524EDL8-F1-model_v4_TED01"],["TED%3AAF-A0A524EZ17-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A524EZ17-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053489","Promethearchaeota archaeon"]]},{"id":"NCBITaxon:2925","l":"Alexandrium catenella","na":24,"nb":1,"a":[["TED%3AAF-A0A7S1KY03-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1KY03-F1-model_v4_TED01"],["TED%3AAF-A0A7S1L1S9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S1L1S9-F1-model_v4_TED02"],["TED%3AAF-A0A7S1ML43-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1ML43-F1-model_v4_TED01"],["TED%3AAF-A0A7S1PQ85-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1PQ85-F1-model_v4_TED01"],["TED%3AAF-A0A7S1QA17-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A7S1QA17-F1-model_v4_TED05"],["TED%3AAF-A0A7S1QL55-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S1QL55-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2925","Alexandrium catenella"]]},{"id":"NCBITaxon:2951","l":"Symbiodinium microadriaticum","na":24,"nb":1,"a":[["TED%3AAF-A0A1Q9CNX9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1Q9CNX9-F1-model_v4_TED03"],["TED%3AAF-A0A1Q9CU81-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q9CU81-F1-model_v4_TED01"],["TED%3AAF-A0A1Q9D1A1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q9D1A1-F1-model_v4_TED01"],["TED%3AAF-A0A1Q9DLT2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q9DLT2-F1-model_v4_TED01"],["TED%3AAF-A0A812J082-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A812J082-F1-model_v4_TED04"],["TED%3AAF-A0A812LXI9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812LXI9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2951","Symbiodinium microadriaticum"]]},{"id":"NCBITaxon:471","l":"Acinetobacter calcoaceticus","na":1,"nb":24,"a":[["TED%3AAF-A0A1A0GJD3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1A0GJD3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A471","Acinetobacter calcoaceticus"],["NCBITaxon%3A1295710","Acinetobacter calcoaceticus 639"],["NCBITaxon%3A1295711","Acinetobacter calcoaceticus 642"],["NCBITaxon%3A1295712","Acinetobacter calcoaceticus 648"],["NCBITaxon%3A1295713","Acinetobacter calcoaceticus 665"]]},{"id":"NCBITaxon:73915","l":"Pyrodinium bahamense","na":24,"nb":1,"a":[["TED%3AAF-A0A7S0A4R5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0A4R5-F1-model_v4_TED01"],["TED%3AAF-A0A7S0AC67-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0AC67-F1-model_v4_TED01"],["TED%3AAF-A0A7S0APM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0APM3-F1-model_v4_TED01"],["TED%3AAF-A0A7S0AQ53-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0AQ53-F1-model_v4_TED01"],["TED%3AAF-A0A7S0AX35-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0AX35-F1-model_v4_TED01"],["TED%3AAF-A0A7S0B705-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S0B705-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A73915","Pyrodinium bahamense"]]},{"id":"NCBITaxon:243276","l":"Treponema pallidum (strain DSM 117211 / Nichols)","na":23,"nb":1,"a":[["Pfam%3APF02424","ApbE family"],["Pfam%3APF27473","Cytoplasmic filament protein A C-terminal domain"],["Pfam%3APF13189","Cytidylate kinase-like family"],["Pfam%3APF10895","Domain of unknown function (DUF2715)"],["Pfam%3APF25843","Domain of unknown function (DUF7954)"],["Pfam%3APF25844","Domain of unknown function (DUF7955)"]],"b":[["NCBITaxon%3A243276","Treponema pallidum subsp. pallidum str. Nichols"]]},{"id":"NCBITaxon:266834","l":"Rhizobium meliloti (strain 1021)","na":23,"nb":1,"a":[["Pfam%3APF13279","Thioesterase-like superfamily"],["Pfam%3APF26956","ACR family N-terminal ACT domain"],["Pfam%3APF27143","Atu0565 family"],["Pfam%3APF27488","BioS helical-like domain"],["Pfam%3APF05853","beta-keto acid cleavage enzyme"],["Pfam%3APF13746","4Fe-4S dicluster domain"]],"b":[["NCBITaxon%3A266834","Sinorhizobium meliloti 1021"]]},{"id":"NCBITaxon:29497","l":"Vibrio splendidus","na":1,"nb":23,"a":[["TED%3AAF-A0A2N7ELI8-F1-model_v4_TED01","TED novel fold AF-A0A2N7ELI8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A693153","Vibrio atlanticus"],["NCBITaxon%3A29497","Vibrio splendidus"],["NCBITaxon%3A1191312","Vibrio splendidus 0407ZC148"],["NCBITaxon%3A314291","Vibrio splendidus 12B01"],["NCBITaxon%3A1191305","Vibrio splendidus 12E03"],["NCBITaxon%3A530557","Vibrio splendidus 12F01"]]},{"id":"NCBITaxon:59207","l":"Salmonella enterica subsp. indica","na":1,"nb":23,"a":[["TED%3AAF-A0A379YMR2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A379YMR2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59207","Salmonella enterica subsp. indica"],["NCBITaxon%3A3462441","Salmonella enterica subsp. indica 6,14:a:e,n,x"],["NCBITaxon%3A2577555","Salmonella enterica subsp. indica serovar 11:a:1,5"],["NCBITaxon%3A1160774","Salmonella enterica subsp. indica serovar 11:b:1,7"],["NCBITaxon%3A1307499","Salmonella enterica subsp. indica serovar 11:b:e,n,x"]]},{"id":"NCBITaxon:948","l":"Anaplasma phagocytophilum","na":1,"nb":23,"a":[["TED%3AAF-A0A181ZJH2-F1-model_v4_TED02","TED novel fold AF-A0A181ZJH2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A948","Anaplasma phagocytophilum"],["NCBITaxon%3A1359151","Anaplasma phagocytophilum str. Annie"],["NCBITaxon%3A1359152","Anaplasma phagocytophilum str. ApMUC09"],["NCBITaxon%3A1359153","Anaplasma phagocytophilum str. ApNP"],["NCBITaxon%3A1359154","Anaplasma phagocytophilum str. ApNYW"],["NCBITaxon%3A1359155","Anaplasma phagocytophilum str. ApWI1"]]},{"id":"NCBITaxon:119857","l":"Francisella tularensis subsp. holarctica","na":1,"nb":22,"a":[["TED%3AAF-A0A0B3VVZ9-F1-model_v4_TED01","TED novel fold AF-A0A0B3VVZ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A263","Francisella tularensis"],["NCBITaxon%3A119857","Francisella tularensis subsp. holarctica"],["NCBITaxon%3A412422","Francisella tularensis subsp. holarctica 257"],["NCBITaxon%3A1244086","Francisella tularensis subsp. holarctica BD11-00177"],["NCBITaxon%3A1232394","Francisella tularensis subsp. holarctica F92"],["NCBITaxon%3A1088870","Francisella tularensis subsp. holarctica FSC021"]]},{"id":"NCBITaxon:1869212","l":"Chitinophagaceae bacterium","na":22,"nb":1,"a":[["TED%3AAF-A0A357ZBL9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A357ZBL9-F1-model_v4_TED01"],["TED%3AAF-A0A3C1LFZ1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C1LFZ1-F1-model_v4_TED01"],["TED%3AAF-A0A3D2XD43-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D2XD43-F1-model_v4_TED02"],["TED%3AAF-A0A4Q3VIN8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q3VIN8-F1-model_v4_TED01"],["TED%3AAF-A0A4Q5SZ31-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q5SZ31-F1-model_v4_TED01"],["TED%3AAF-A0A4Q5TQZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q5TQZ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1869212","Chitinophagaceae bacterium"]]},{"id":"NCBITaxon:2026803","l":"Candidatus Woesearchaeota archaeon","na":22,"nb":1,"a":[["TED%3AAF-A0A2D6KW09-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D6KW09-F1-model_v4_TED01"],["TED%3AAF-A0A2D6P7P8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D6P7P8-F1-model_v4_TED01"],["TED%3AAF-A0A3M1JJU7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M1JJU7-F1-model_v4_TED01"],["TED%3AAF-A0A662EYR7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A662EYR7-F1-model_v4_TED01"],["TED%3AAF-A0A662F004-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A662F004-F1-model_v4_TED02"],["TED%3AAF-A0A662F4Y7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A662F4Y7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026803","Candidatus Woesearchaeota archaeon"]]},{"id":"NCBITaxon:2250277","l":"Thermoprotei archaeon","na":22,"nb":1,"a":[["TED%3AAF-A0A497FVH5-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A497FVH5-F1-model_v4_TED04"],["TED%3AAF-A0A497FWJ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A497FWJ0-F1-model_v4_TED01"],["TED%3AAF-A0A662GB86-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A662GB86-F1-model_v4_TED01"],["TED%3AAF-A0A662GMH9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A662GMH9-F1-model_v4_TED03"],["TED%3AAF-A0A662HGF0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A662HGF0-F1-model_v4_TED02"],["TED%3AAF-A0A662HZW1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A662HZW1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2250277","Thermoprotei archaeon"]]},{"id":"NCBITaxon:2952","l":"Symbiodinium pilosum","na":22,"nb":1,"a":[["TED%3AAF-A0A812IPQ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812IPQ7-F1-model_v4_TED01"],["TED%3AAF-A0A812IT96-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A812IT96-F1-model_v4_TED02"],["TED%3AAF-A0A812SR62-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812SR62-F1-model_v4_TED01"],["TED%3AAF-A0A812VKC8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812VKC8-F1-model_v4_TED01"],["TED%3AAF-A0A812XN12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812XN12-F1-model_v4_TED01"],["TED%3AAF-A0A812Y1P6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812Y1P6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2952","Symbiodinium pilosum"]]},{"id":"NCBITaxon:394","l":"Sinorhizobium fredii (strain NBRC 101917 / NGR234)","na":22,"nb":1,"a":[["Pfam%3APF17841","BID domain of Bartonella effector protein (Bep)"],["Pfam%3APF04255","Protein of unknown function (DUF433)"],["Pfam%3APF18480","Domain of unknown function (DUF5615)"],["Pfam%3APF20008","Domain of unknown function (DUF6429)"],["Pfam%3APF24134","Domain of unknown function (DUF7401)"],["Pfam%3APF18728","AbiV"]],"b":[["NCBITaxon%3A394","Sinorhizobium fredii NGR234"]]},{"id":"NCBITaxon:77133","l":"uncultured bacterium","na":22,"nb":1,"a":[["TED%3AAF-A0A059X489-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A059X489-F1-model_v4_TED02"],["TED%3AAF-A0A059X769-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A059X769-F1-model_v4_TED01"],["TED%3AAF-K1YCK5-F1-model_v4_TED02","TED highly-symmetric fold AF-K1YCK5-F1-model_v4_TED02"],["TED%3AAF-K1Z363-F1-model_v4_TED05","TED highly-symmetric fold AF-K1Z363-F1-model_v4_TED05"],["TED%3AAF-K1ZVQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-K1ZVQ3-F1-model_v4_TED01"],["TED%3AAF-K2AKZ9-F1-model_v4_TED01","TED highly-symmetric fold AF-K2AKZ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A77133","uncultured bacterium"]]},{"id":"NCBITaxon:784","l":"Orientia tsutsugamushi","na":1,"nb":22,"a":[["TED%3AAF-A0A2U3QXG5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U3QXG5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A784","Orientia tsutsugamushi"],["NCBITaxon%3A1359169","Orientia tsutsugamushi str. AFSC7"],["NCBITaxon%3A357244","Orientia tsutsugamushi str. Boryong"],["NCBITaxon%3A1359170","Orientia tsutsugamushi str. Darnley"],["NCBITaxon%3A1359184","Orientia tsutsugamushi str. Gilliam"],["NCBITaxon%3A334380","Orientia tsutsugamushi str. Ikeda"]]},{"id":"NCBITaxon:2053491","l":"Thorarchaeota archaeon (strain OWC)","na":21,"nb":1,"a":[["TED%3AAF-A0A3L6JIS9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3L6JIS9-F1-model_v4_TED02"],["TED%3AAF-A0A497PT19-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A497PT19-F1-model_v4_TED01"],["TED%3AAF-A0A497Q075-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A497Q075-F1-model_v4_TED01"],["TED%3AAF-A0A497QEX2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A497QEX2-F1-model_v4_TED02"],["TED%3AAF-A0A523S0A4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A523S0A4-F1-model_v4_TED02"],["TED%3AAF-A0A524DRR9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A524DRR9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2053491","Candidatus Thorarchaeota archaeon"]]},{"id":"NCBITaxon:49249","l":"Ditylum brightwellii","na":21,"nb":1,"a":[["TED%3AAF-A0A7S1ZRE5-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7S1ZRE5-F1-model_v4_TED04"],["TED%3AAF-A0A7S4QX91-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S4QX91-F1-model_v4_TED02"],["TED%3AAF-A0A7S4RZD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4RZD6-F1-model_v4_TED01"],["TED%3AAF-A0A6U3S3W6-F1-model_v4_TED02","TED novel fold AF-A0A6U3S3W6-F1-model_v4_TED02"],["TED%3AAF-A0A6U3SMK8-F1-model_v4_TED01","TED novel fold AF-A0A6U3SMK8-F1-model_v4_TED01"],["TED%3AAF-A0A6V2HP17-F1-model_v4_TED02","TED novel fold AF-A0A6V2HP17-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A49249","Ditylum brightwellii"]]},{"id":"NCBITaxon:1333877","l":"Zooxanthella nutricula","na":20,"nb":1,"a":[["TED%3AAF-A0A7S2I7M8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2I7M8-F1-model_v4_TED01"],["TED%3AAF-A0A7S2KGI9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2KGI9-F1-model_v4_TED01"],["TED%3AAF-A0A7S2QN22-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2QN22-F1-model_v4_TED01"],["TED%3AAF-A0A6U6QYV6-F1-model_v4_TED02","TED novel fold AF-A0A6U6QYV6-F1-model_v4_TED02"],["TED%3AAF-A0A6U8X411-F1-model_v4_TED02","TED novel fold AF-A0A6U8X411-F1-model_v4_TED02"],["TED%3AAF-A0A7S2J1W7-F1-model_v4_TED01","TED novel fold AF-A0A7S2J1W7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1333877","Zooxanthella nutricula"]]},{"id":"NCBITaxon:2026773","l":"Candidatus Pacearchaeota archaeon","na":20,"nb":1,"a":[["TED%3AAF-A0A2D6L4C8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D6L4C8-F1-model_v4_TED01"],["TED%3AAF-A0A2D6MBC0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D6MBC0-F1-model_v4_TED01"],["TED%3AAF-A0A2D6NGF5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D6NGF5-F1-model_v4_TED01"],["TED%3AAF-A0A2D6X056-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D6X056-F1-model_v4_TED01"],["TED%3AAF-A0A2D6X943-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D6X943-F1-model_v4_TED01"],["TED%3AAF-A0A7J2RVY7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7J2RVY7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026773","Candidatus Pacearchaeota archaeon"]]},{"id":"NCBITaxon:2202144","l":"Spirochaetota bacterium","na":20,"nb":1,"a":[["TED%3AAF-A0A496RBW7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A496RBW7-F1-model_v4_TED01"],["TED%3AAF-A0A5C7LFX3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7LFX3-F1-model_v4_TED01"],["TED%3AAF-A0A660U2K3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A660U2K3-F1-model_v4_TED01"],["TED%3AAF-A0A7C2KGS7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C2KGS7-F1-model_v4_TED01"],["TED%3AAF-A0A496REE7-F1-model_v4_TED03","TED novel fold AF-A0A496REE7-F1-model_v4_TED03"],["TED%3AAF-A0A5C7JKW4-F1-model_v4_TED01","TED novel fold AF-A0A5C7JKW4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2202144","Spirochaetota bacterium"]]},{"id":"NCBITaxon:158","l":"Treponema denticola","na":1,"nb":19,"a":[["TED%3AAF-A0A125RME2-F1-model_v4_TED02","TED novel fold AF-A0A125RME2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A158","Treponema denticola"],["NCBITaxon%3A999426","Treponema denticola AL-2"],["NCBITaxon%3A999427","Treponema denticola ASLM"],["NCBITaxon%3A999428","Treponema denticola ATCC 33520"],["NCBITaxon%3A999429","Treponema denticola ATCC 33521"],["NCBITaxon%3A999430","Treponema denticola ATCC 35404"]]},{"id":"NCBITaxon:40041","l":"Streptococcus equi subsp. zooepidemicus","na":1,"nb":19,"a":[["Pfam%3APF02388","FemAB family"]],"b":[["NCBITaxon%3A1336","Streptococcus equi"],["NCBITaxon%3A40041","Streptococcus equi subsp. zooepidemicus"],["NCBITaxon%3A1051072","Streptococcus equi subsp. zooepidemicus ATCC 35246"],["NCBITaxon%3A681573","Streptococcus equi subsp. zooepidemicus BHS5"],["NCBITaxon%3A1403449","Streptococcus equi subsp. zooepidemicus CY"],["NCBITaxon%3A553483","Streptococcus equi subsp. zooepidemicus H70"]]},{"id":"NCBITaxon:122586","l":"Neisseria meningitidis serogroup B (strain ATCC BAA-335 / MC58)","na":18,"nb":1,"a":[["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000057","self-regulatory activity"],["Pfam%3APF03797","Autotransporter beta-domain"],["Pfam%3APF16779","DNA-mimic protein"],["Pfam%3APF14300","DMP19-like protein"],["Pfam%3APF17845","FbpC C-terminal regulatory nucleotide binding domain"]],"b":[["NCBITaxon%3A122586","Neisseria meningitidis MC58"]]},{"id":"NCBITaxon:169963","l":"Listeria monocytogenes serovar 1/2a (strain ATCC BAA-679 / EGD-e)","na":18,"nb":1,"a":[["Pfam%3APF17936","Bacterial Ig domain"],["Pfam%3APF06778","Chlorite dismutase"],["Pfam%3APF05737","Collagen binding domain"],["Pfam%3APF09479","Listeria-Bacteroides repeat domain (List_Bact_rpt)"],["Pfam%3APF13457","GW (Gly-Tryp) dipeptide domain"],["Pfam%3APF08858","IDEAL domain"]],"b":[["NCBITaxon%3A169963","Listeria monocytogenes EGD-e"]]},{"id":"NCBITaxon:1871066","l":"Mesorhizobium sp.","na":18,"nb":1,"a":[["TED%3AAF-A0A3S3GQ11-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S3GQ11-F1-model_v4_TED01"],["TED%3AAF-A0A439J515-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A439J515-F1-model_v4_TED03"],["TED%3AAF-A0A439JC49-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A439JC49-F1-model_v4_TED01"],["TED%3AAF-A0A439N076-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A439N076-F1-model_v4_TED01"],["TED%3AAF-A0A442WFH9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A442WFH9-F1-model_v4_TED03"],["TED%3AAF-A0A529PFR3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A529PFR3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1871066","Mesorhizobium sp."]]},{"id":"NCBITaxon:2026728","l":"Crocinitomicaceae bacterium","na":18,"nb":1,"a":[["TED%3AAF-A0A2D7DFU8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D7DFU8-F1-model_v4_TED02"],["TED%3AAF-A0A2D7KAN1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D7KAN1-F1-model_v4_TED01"],["TED%3AAF-A0A2E3XYM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E3XYM3-F1-model_v4_TED01"],["TED%3AAF-A0A2E4EBK4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4EBK4-F1-model_v4_TED01"],["TED%3AAF-A0A2E4EDE8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4EDE8-F1-model_v4_TED01"],["TED%3AAF-A0A2E4EDG6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4EDG6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026728","Crocinitomicaceae bacterium"]]},{"id":"NCBITaxon:2052186","l":"Limisphaerales bacterium","na":18,"nb":1,"a":[["TED%3AAF-A0A520QMV5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A520QMV5-F1-model_v4_TED01"],["TED%3AAF-A0A6I1K0E9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I1K0E9-F1-model_v4_TED01"],["TED%3AAF-A0A6I1KAG9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I1KAG9-F1-model_v4_TED01"],["TED%3AAF-A0A7C3MCF9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C3MCF9-F1-model_v4_TED02"],["TED%3AAF-A0A7C4QME7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C4QME7-F1-model_v4_TED01"],["TED%3AAF-A0A7V3QEN6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7V3QEN6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2052186","Limisphaerales bacterium"]]},{"id":"NCBITaxon:272843","l":"Pasteurella multocida (strain Pm70)","na":18,"nb":1,"a":[["Pfam%3APF18419","ATP-grasp-like domain"],["Pfam%3APF11974","Bacterial alpha-2-macroglobulin MG3 domain"],["Pfam%3APF17972","Bacterial Alpha-2-macroglobulin MG5 domain"],["Pfam%3APF17962","Bacterial macroglobulin domain 6"],["Pfam%3APF18470","Cas9 alpha-helical lobe domain"],["Pfam%3APF12441","CopG antitoxin of type II toxin-antitoxin system"]],"b":[["NCBITaxon%3A272843","Pasteurella multocida subsp. multocida str. Pm70"]]},{"id":"NCBITaxon:492670","l":"Bacillus velezensis","na":1,"nb":18,"a":[["TED%3AAF-A0A7S9EWF1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S9EWF1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A492670","Bacillus velezensis"],["NCBITaxon%3A2517241","Bacillus velezensis A3"],["NCBITaxon%3A1225788","Bacillus velezensis AS43.3"],["NCBITaxon%3A1239834","Bacillus velezensis At1"],["NCBITaxon%3A1114958","Bacillus velezensis CAU B946"],["NCBITaxon%3A2853458","Bacillus velezensis EYE_388"]]},{"id":"NCBITaxon:759272","l":"Thermochaetoides thermophila (strain DSM 1495 / CBS 144.50 / DAOM 24625 / IMI 039719)","na":18,"nb":1,"a":[["Pfam%3APF21509","Fungal polycomb repressive complex 2, Ezh2-like, preSET CXC domain"],["Pfam%3APF18600","Fungal MCSS domain"],["Pfam%3APF18601","EZH2 N-terminal domain"],["Pfam%3APF24519","Nucleoporin pom152-like, first immunoglobulin-like domain"],["Pfam%3APF24527","Nucleoporin pom152-like, ninth immunoglobulin-like domain"],["Pfam%3APF24312","Nucleoporin POM152, Ig-like domain"]],"b":[["NCBITaxon%3A759272","Thermochaetoides thermophila DSM 1495"]]},{"id":"NCBITaxon:1767","l":"Mycobacterium intracellulare","na":1,"nb":17,"a":[["Pfam%3APF18914","Domain of unknown function (DUF5666)"]],"b":[["NCBITaxon%3A1764","Mycobacterium avium"],["NCBITaxon%3A1767","Mycobacterium intracellulare"],["NCBITaxon%3A1299331","Mycobacterium intracellulare 1956"],["NCBITaxon%3A1160713","Mycobacterium intracellulare 3387"],["NCBITaxon%3A487521","Mycobacterium intracellulare ATCC 13950"],["NCBITaxon%3A1134473","Mycobacterium intracellulare H2"]]},{"id":"NCBITaxon:1829","l":"Rhodococcus rhodochrous","na":1,"nb":17,"a":[["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"]],"b":[["NCBITaxon%3A1872672","Azotobacter sp."],["NCBITaxon%3A36822","Gordonia rubripertincta"],["NCBITaxon%3A1824","Nocardia asteroides"],["NCBITaxon%3A37329","Nocardia farcinica"],["NCBITaxon%3A1833","Rhodococcus erythropolis"],["NCBITaxon%3A33008","Rhodococcus globerulus"]]},{"id":"NCBITaxon:2052166","l":"Candidatus Melainabacteria bacterium","na":17,"nb":1,"a":[["TED%3AAF-A0A2W4I3U7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W4I3U7-F1-model_v4_TED01"],["TED%3AAF-A0A2W4IPF7-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2W4IPF7-F1-model_v4_TED04"],["TED%3AAF-A0A2W4KA26-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W4KA26-F1-model_v4_TED01"],["TED%3AAF-A0A317ILL7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A317ILL7-F1-model_v4_TED01"],["TED%3AAF-A0A431KZA4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A431KZA4-F1-model_v4_TED01"],["TED%3AAF-A0A7T9H5Y2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T9H5Y2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052166","Candidatus Melainabacteria bacterium"]]},{"id":"NCBITaxon:208963","l":"Pseudomonas aeruginosa (strain UCBPP-PA14)","na":17,"nb":1,"a":[["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF21384","CRISPR-associated nuclease/helicase Cas3, I-F/YPEST, Cas2 domain"],["Pfam%3APF21802","CRISPR-associated Cas3 subtype I-F/YPEST-like, C-terminal domain"],["Pfam%3APF20975","DGC-associated coil"],["Pfam%3APF19502","Nucleotidyltransferase of unknown function (DUF6036)"]],"b":[["NCBITaxon%3A208963","Pseudomonas aeruginosa UCBPP-PA14"]]},{"id":"NCBITaxon:210007","l":"Streptococcus mutans serotype c (strain ATCC 700610 / UA159)","na":17,"nb":1,"a":[["Pfam%3APF18652","Adhesin P1 N-terminal domain"],["Pfam%3APF17998","Cell surface antigen I/II C2 terminal domain"],["Pfam%3APF16364","Cell surface antigen C-terminus"],["Pfam%3APF12733","Cadherin-like beta sandwich domain"],["Pfam%3APF05737","Collagen binding domain"],["Pfam%3APF21537","DUF1980 C-terminal domain"]],"b":[["NCBITaxon%3A210007","Streptococcus mutans UA159"]]},{"id":"NCBITaxon:2268199","l":"Polyangiaceae bacterium","na":17,"nb":1,"a":[["TED%3AAF-A0A7C5J3Y7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C5J3Y7-F1-model_v4_TED01"],["TED%3AAF-A0A7Y5E0R3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y5E0R3-F1-model_v4_TED01"],["TED%3AAF-A0A7Y5L0J9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y5L0J9-F1-model_v4_TED01"],["TED%3AAF-A0A7Y5NNJ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y5NNJ7-F1-model_v4_TED01"],["TED%3AAF-A0A849Z2I2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A849Z2I2-F1-model_v4_TED01"],["TED%3AAF-A0A849ZAK7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A849ZAK7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2268199","Polyangiaceae bacterium"]]},{"id":"NCBITaxon:311494","l":"Alexandrium monilatum","na":17,"nb":1,"a":[["TED%3AAF-A0A7S4Q8A6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4Q8A6-F1-model_v4_TED01"],["TED%3AAF-A0A7S4QTT6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S4QTT6-F1-model_v4_TED02"],["TED%3AAF-A0A7S4QWV2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4QWV2-F1-model_v4_TED01"],["TED%3AAF-A0A7S4RKI0-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A7S4RKI0-F1-model_v4_TED05"],["TED%3AAF-A0A7S4SUG3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S4SUG3-F1-model_v4_TED02"],["TED%3AAF-A0A7S4VCD8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S4VCD8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A311494","Alexandrium monilatum"]]},{"id":"NCBITaxon:1363","l":"Lactococcus garvieae","na":1,"nb":16,"a":[["TED%3AAF-A0A6L2ZWS4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L2ZWS4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1363","Lactococcus garvieae"],["NCBITaxon%3A998087","Lactococcus garvieae 21881"],["NCBITaxon%3A913847","Lactococcus garvieae 8831"],["NCBITaxon%3A420889","Lactococcus garvieae ATCC 49156"],["NCBITaxon%3A1231377","Lactococcus garvieae DCC43"],["NCBITaxon%3A1229517","Lactococcus garvieae I113"]]},{"id":"NCBITaxon:2026734","l":"Dehalococcoidia bacterium","na":16,"nb":1,"a":[["TED%3AAF-A0A521XC61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521XC61-F1-model_v4_TED01"],["TED%3AAF-A0A523UGM8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A523UGM8-F1-model_v4_TED01"],["TED%3AAF-A0A7C5HK83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C5HK83-F1-model_v4_TED01"],["TED%3AAF-A0A7C7CQR7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C7CQR7-F1-model_v4_TED01"],["TED%3AAF-A0A7C7TSB3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C7TSB3-F1-model_v4_TED01"],["TED%3AAF-A0A7V1QTX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V1QTX7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026734","Dehalococcoidia bacterium"]]},{"id":"NCBITaxon:2026745","l":"Halobacteriovoraceae bacterium","na":16,"nb":1,"a":[["TED%3AAF-A0A2E1RGY7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E1RGY7-F1-model_v4_TED01"],["TED%3AAF-A0A2E3XRC3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E3XRC3-F1-model_v4_TED01"],["TED%3AAF-A0A2E4D7J8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E4D7J8-F1-model_v4_TED02"],["TED%3AAF-A0A2E4DD71-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4DD71-F1-model_v4_TED01"],["TED%3AAF-A0A2E1REY1-F1-model_v4_TED01","TED novel fold AF-A0A2E1REY1-F1-model_v4_TED01"],["TED%3AAF-A0A2E2EEJ1-F1-model_v4_TED04","TED novel fold AF-A0A2E2EEJ1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2026745","Halobacteriovoraceae bacterium"]]},{"id":"NCBITaxon:244366","l":"Klebsiella variicola","na":1,"nb":16,"a":[["TED%3AAF-A0A2N4Z4E2-F1-model_v4_TED01","TED novel fold AF-A0A2N4Z4E2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A576","Klebsiella sp."],["NCBITaxon%3A244366","Klebsiella variicola"],["NCBITaxon%3A507522","Klebsiella variicola 342"],["NCBITaxon%3A640131","Klebsiella variicola At-22"],["NCBITaxon%3A1438700","Klebsiella variicola BIDMC 61"]]},{"id":"NCBITaxon:272631","l":"Mycobacterium leprae (strain TN)","na":16,"nb":1,"a":[["Pfam%3APF26519","Biotin synthase auxiliary protein family"],["Pfam%3APF24481","CT398-like coiled coil hairpin domain"],["Pfam%3APF09438","Domain of unknown function (DUF2017)"],["Pfam%3APF12089","Transmembrane domain of unknown function (DUF3566)"],["Pfam%3APF12823","Domain of unknown function (DUF3817)"],["Pfam%3APF19187","PafC helix-turn-helix domain"]],"b":[["NCBITaxon%3A272631","Mycobacterium leprae TN"]]},{"id":"NCBITaxon:380","l":"Sinorhizobium fredii","na":1,"nb":16,"a":[["TED%3AAF-A0A2A6LXQ6-F1-model_v4_TED04","TED novel fold AF-A0A2A6LXQ6-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A380","Sinorhizobium fredii"],["NCBITaxon%3A418669","Sinorhizobium fredii bv. mediterranense"],["NCBITaxon%3A1128329","Sinorhizobium fredii CCBAU 05557"],["NCBITaxon%3A1128330","Sinorhizobium fredii CCBAU 25509"],["NCBITaxon%3A1128331","Sinorhizobium fredii CCBAU 45436"],["NCBITaxon%3A1128332","Sinorhizobium fredii CCBAU 83622"]]},{"id":"NCBITaxon:636","l":"Edwardsiella tarda","na":1,"nb":16,"a":[["Pfam%3APF05791","Bacillus haemolytic enterotoxin (HBL)"]],"b":[["NCBITaxon%3A1896336","Citrobacter sp."],["NCBITaxon%3A636","Edwardsiella tarda"],["NCBITaxon%3A1418112","Edwardsiella tarda 3-novo"],["NCBITaxon%3A1418111","Edwardsiella tarda 3P"],["NCBITaxon%3A667121","Edwardsiella tarda ATCC 15947 = NBRC 105688"],["NCBITaxon%3A500638","Edwardsiella tarda ATCC 23685"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":1,"nb":15,"a":[["PROSITE%3APS01043","Transposases, IS30 family, signature"]],"b":[["NCBITaxon%3A1304","Streptococcus salivarius"],["NCBITaxon%3A1046629","Streptococcus salivarius 57.I"],["NCBITaxon%3A1420586","Streptococcus salivarius ATCC 25975"],["NCBITaxon%3A1263109","Streptococcus salivarius CAG:79"],["NCBITaxon%3A1048332","Streptococcus salivarius CCHSS3"],["NCBITaxon%3A1255635","Streptococcus salivarius CJ181"]]},{"id":"NCBITaxon:1585","l":"Lactobacillus delbrueckii subsp. bulgaricus","na":1,"nb":15,"a":[["TED%3AAF-A0A809EIY6-F1-model_v4_TED02","TED novel fold AF-A0A809EIY6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2775876","Lacticaseibacillus sp."],["NCBITaxon%3A1584","Lactobacillus delbrueckii"],["NCBITaxon%3A1585","Lactobacillus delbrueckii subsp. bulgaricus"],["NCBITaxon%3A353496","Lactobacillus delbrueckii subsp. bulgaricus 2038"],["NCBITaxon%3A390333","Lactobacillus delbrueckii subsp. bulgaricus ATCC 11842 = JCM 1002"],["NCBITaxon%3A321956","Lactobacillus delbrueckii subsp. bulgaricus ATCC BAA-365"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":1,"nb":15,"a":[["TED%3AAF-A0A415C3I8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A415C3I8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1681","Bifidobacterium bifidum"],["NCBITaxon%3A500634","Bifidobacterium bifidum ATCC 29521 = JCM 1255 = DSM 20456"],["NCBITaxon%3A484020","Bifidobacterium bifidum BGN4"],["NCBITaxon%3A1263058","Bifidobacterium bifidum CAG:234"],["NCBITaxon%3A1173065","Bifidobacterium bifidum CECT 7366"],["NCBITaxon%3A398515","Bifidobacterium bifidum DSM 20215"]]},{"id":"NCBITaxon:2052146","l":"Blastocatellia bacterium","na":15,"nb":1,"a":[["TED%3AAF-A0A352EXE7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A352EXE7-F1-model_v4_TED01"],["TED%3AAF-A0A357F5W7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A357F5W7-F1-model_v4_TED01"],["TED%3AAF-A0A3B9MP35-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B9MP35-F1-model_v4_TED01"],["TED%3AAF-A0A3D0P0V8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3D0P0V8-F1-model_v4_TED03"],["TED%3AAF-A0A7C5ZUX8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C5ZUX8-F1-model_v4_TED01"],["TED%3AAF-A0A7V9ZCI5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V9ZCI5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052146","Blastocatellia bacterium"]]},{"id":"NCBITaxon:2096","l":"Mycoplasmoides gallisepticum","na":1,"nb":15,"a":[["TED%3AAF-A0A5P3I5B9-F1-model_v4_TED02","TED novel fold AF-A0A5P3I5B9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2096","Mycoplasmoides gallisepticum"],["NCBITaxon%3A1267002","Mycoplasmoides gallisepticum ATCC 19610"],["NCBITaxon%3A1159203","Mycoplasmoides gallisepticum CA06_2006.052-5-2P"],["NCBITaxon%3A1159202","Mycoplasmoides gallisepticum NC06_2006.080-5-2P"],["NCBITaxon%3A1159204","Mycoplasmoides gallisepticum NC08_2008.031-4-3P"],["NCBITaxon%3A1159198","Mycoplasmoides gallisepticum NC95_13295-2-2P"]]},{"id":"NCBITaxon:2507553","l":"Aphanocapsa feldmannii 277cV","na":1,"nb":15,"a":[["TED%3AAF-A0A524RKM2-F1-model_v4_TED01","TED novel fold AF-A0A524RKM2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2507553","Aphanocapsa feldmannii 277cV"],["NCBITaxon%3A2569818","Aphanocapsa feldmannii 277cV_00123"],["NCBITaxon%3A2569819","Aphanocapsa feldmannii 277cV_00124"],["NCBITaxon%3A2569824","Aphanocapsa feldmannii 277cV_00125"],["NCBITaxon%3A2569820","Aphanocapsa feldmannii 277cV_00126"],["NCBITaxon%3A2569825","Aphanocapsa feldmannii 277cV_00403"]]},{"id":"NCBITaxon:312017","l":"Tetrahymena thermophila (strain SB210)","na":15,"nb":1,"a":[["Pfam%3APF23448","CFAP184 CAP-like domain"],["Pfam%3APF23449","CFAP184 CBM-like domain"],["Pfam%3APF13870","CCDC113/CCDC96, coiled-coil"],["Pfam%3APF23150","CFAP61 dimerisation domain"],["Pfam%3APF16092","Cilia- and flagella-associated protein 61, N-terminal domain"],["Pfam%3APF23119","Telomerase reverse transcriptase, CTE domain"]],"b":[["NCBITaxon%3A312017","Tetrahymena thermophila SB210"]]},{"id":"NCBITaxon:347","l":"Xanthomonas oryzae","na":1,"nb":15,"a":[["TED%3AAF-A0A856CQL9-F1-model_v4_TED01","TED novel fold AF-A0A856CQL9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A134375","Achromobacter sp."],["NCBITaxon%3A347","Xanthomonas oryzae"],["NCBITaxon%3A1313303","Xanthomonas oryzae ATCC 35933"],["NCBITaxon%3A3112258","Xanthomonas oryzae pv. leersiae"],["NCBITaxon%3A64187","Xanthomonas oryzae pv. oryzae"],["NCBITaxon%3A291331","Xanthomonas oryzae pv. oryzae KACC 10331"]]},{"id":"NCBITaxon:425011","l":"Aspergillus niger (strain ATCC MYA-4892 / CBS 513.88 / FGSC A1513)","na":15,"nb":1,"a":[["Pfam%3APF09260","Alpha-amylase, domain C"],["Pfam%3APF13364","Beta-galactosidase second all-beta domain"],["Pfam%3APF10435","Beta-galactosidase, domain 2"],["Pfam%3APF13363","Beta-galactosidase, domain 3"],["Pfam%3APF28386","BfoA family C-terminal domain"],["Pfam%3APF28387","BfoA N-terminal domain"]],"b":[["NCBITaxon%3A425011","Aspergillus niger CBS 513.88"]]},{"id":"NCBITaxon:43657","l":"Pseudoalteromonas luteoviolacea","na":1,"nb":15,"a":[["TED%3AAF-A0A1C0TIS0-F1-model_v4_TED02","TED novel fold AF-A0A1C0TIS0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A43657","Pseudoalteromonas luteoviolacea"],["NCBITaxon%3A1353533","Pseudoalteromonas luteoviolacea 2ta16"],["NCBITaxon%3A1268239","Pseudoalteromonas luteoviolacea B = ATCC 29581"],["NCBITaxon%3A1365248","Pseudoalteromonas luteoviolacea CPMOR-1"],["NCBITaxon%3A1365249","Pseudoalteromonas luteoviolacea CPMOR-2"],["NCBITaxon%3A1365250","Pseudoalteromonas luteoviolacea DSM 6061"]]},{"id":"NCBITaxon:61435","l":"Dehalococcoides mccartyi","na":1,"nb":15,"a":[["TED%3AAF-A0A2J1E0L6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J1E0L6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A61435","Dehalococcoides mccartyi"],["NCBITaxon%3A243164","Dehalococcoides mccartyi 195"],["NCBITaxon%3A216389","Dehalococcoides mccartyi BAV1"],["NCBITaxon%3A1193806","Dehalococcoides mccartyi BTF08"],["NCBITaxon%3A255470","Dehalococcoides mccartyi CBDB1"],["NCBITaxon%3A1432059","Dehalococcoides mccartyi CG1"]]},{"id":"NCBITaxon:878477","l":"Symbiodinium natans","na":15,"nb":1,"a":[["TED%3AAF-A0A812I205-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812I205-F1-model_v4_TED01"],["TED%3AAF-A0A812J3S0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A812J3S0-F1-model_v4_TED02"],["TED%3AAF-A0A812JCI6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A812JCI6-F1-model_v4_TED02"],["TED%3AAF-A0A812LE22-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812LE22-F1-model_v4_TED01"],["TED%3AAF-A0A812MQ26-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812MQ26-F1-model_v4_TED01"],["TED%3AAF-A0A812QZV2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812QZV2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A878477","Symbiodinium natans"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":14,"nb":1,"a":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF02224","Cytidylate kinase"],["Pfam%3APF03319","Ethanolamine utilisation protein EutN/carboxysome"],["Pfam%3APF22019","alpha-1,4-glucan branching enzyme GlgB, N-terminal domain"],["Pfam%3APF21714","Circadian clock protein KaiA, N-terminal domain"],["Pfam%3APF07688","KaiA C-terminal domain"]],"b":[["NCBITaxon%3A1140","Synechococcus elongatus PCC 7942 = FACHB-805"]]},{"id":"NCBITaxon:138074","l":"Serratia symbiotica","na":1,"nb":14,"a":[["TED%3AAF-A0A068YYP3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A068YYP3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A655401","Serratia symbiont of Stomaphis sp."],["NCBITaxon%3A138074","Serratia symbiotica"],["NCBITaxon%3A1592400","Serratia symbiotica AfA2.1"],["NCBITaxon%3A1592401","Serratia symbiotica AfA3.1"],["NCBITaxon%3A2856988","Serratia symbiotica (Cacopsylla coccinea)"],["NCBITaxon%3A1339251","Serratia symbiotica CWBI2.3"]]},{"id":"NCBITaxon:2049433","l":"Desulfobacteraceae bacterium","na":14,"nb":1,"a":[["TED%3AAF-A0A2N6CCF5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N6CCF5-F1-model_v4_TED01"],["TED%3AAF-A0A355W8I2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A355W8I2-F1-model_v4_TED02"],["TED%3AAF-A0A3A4S7V6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A4S7V6-F1-model_v4_TED01"],["TED%3AAF-A0A3D6C2L3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D6C2L3-F1-model_v4_TED01"],["TED%3AAF-A0A3N5ZFV9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N5ZFV9-F1-model_v4_TED01"],["TED%3AAF-A0A3N6A7C3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3N6A7C3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2049433","Desulfobacteraceae bacterium"]]},{"id":"NCBITaxon:2163009","l":"Candidatus Poseidoniales archaeon","na":14,"nb":1,"a":[["TED%3AAF-A0A3A5VXE3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A5VXE3-F1-model_v4_TED01"],["TED%3AAF-A0A6V8CWM4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6V8CWM4-F1-model_v4_TED02"],["TED%3AAF-A0A6V8DK59-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6V8DK59-F1-model_v4_TED02"],["TED%3AAF-A0A7J4DCA9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7J4DCA9-F1-model_v4_TED02"],["TED%3AAF-A0A7M3SGG1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7M3SGG1-F1-model_v4_TED01"],["TED%3AAF-A0A7M3ZNW9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7M3ZNW9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2163009","Candidatus Poseidoniales archaeon"]]},{"id":"NCBITaxon:223283","l":"Pseudomonas syringae pv. tomato (strain ATCC BAA-871 / DC3000)","na":14,"nb":1,"a":[["IDPO%3A0000030","entropic chain"],["IDPO%3A0000037","molecular recognition display site"],["Pfam%3APF16847","Avirulence AvrPtoB, BAK1-binding domain"],["Pfam%3APF09046","AvrPtoB E3 ubiquitin ligase"],["Pfam%3APF25965","ALG44 beta-barrel domain"],["Pfam%3APF25964","ALG44, barrel-sandwich hybrid domain"]],"b":[["NCBITaxon%3A223283","Pseudomonas syringae pv. tomato str. DC3000"]]},{"id":"NCBITaxon:2242","l":"Halobacterium salinarum","na":1,"nb":14,"a":[["Pfam%3APF07232","Putative rep protein (DUF1424)"]],"b":[["NCBITaxon%3A2242","Halobacterium salinarum"],["NCBITaxon%3A2597657","Halobacterium salinarum DSM 3754"],["NCBITaxon%3A64091","Halobacterium salinarum NRC-1"],["NCBITaxon%3A2886895","Halobacterium salinarum NRC-34001"],["NCBITaxon%3A478009","Halobacterium salinarum R1"],["NCBITaxon%3A2109941","Halobacterium salinarum str. WSR1 (ex H. Halobium)"]]},{"id":"NCBITaxon:29466","l":"Veillonella parvula","na":1,"nb":14,"a":[["TED%3AAF-A0A134BYG5-F1-model_v4_TED01","TED novel fold AF-A0A134BYG5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39777","Veillonella atypica"],["NCBITaxon%3A29466","Veillonella parvula"],["NCBITaxon%3A1357417","Veillonella parvula AC2_8_11_AN_NA_2"],["NCBITaxon%3A768727","Veillonella parvula ACS-068-V-Sch12"],["NCBITaxon%3A686660","Veillonella parvula ATCC 17745"],["NCBITaxon%3A479436","Veillonella parvula DSM 2008"]]},{"id":"NCBITaxon:329","l":"Ralstonia pickettii","na":1,"nb":14,"a":[["Pfam%3APF10605","3HB-oligomer hydrolase (3HBOH)"]],"b":[["NCBITaxon%3A80878","Acidovorax temperans"],["NCBITaxon%3A3058600","Ralstonia condita"],["NCBITaxon%3A3058599","Ralstonia edaphi"],["NCBITaxon%3A190721","Ralstonia insidiosa"],["NCBITaxon%3A105219","Ralstonia mannitolilytica"],["NCBITaxon%3A329","Ralstonia pickettii"]]},{"id":"NCBITaxon:42445","l":"Sinorhizobium sp","na":14,"nb":1,"a":[["Pfam%3APF01656","CobQ/CobB/MinD/ParA nucleotide binding domain"],["Pfam%3APF02572","ATP:corrinoid adenosyltransferase BtuR/CobO/CobP"],["Pfam%3APF02654","Cobalamin-5-phosphate synthase"],["Pfam%3APF11775","Cobalamin biosynthesis protein CobT VWA domain"],["Pfam%3APF02283","Cobinamide kinase / cobinamide phosphate guanyltransferase"],["Pfam%3APF02277","Phosphoribosyltransferase"]],"b":[["NCBITaxon%3A42445","Sinorhizobium sp."]]},{"id":"NCBITaxon:426430","l":"Staphylococcus aureus (strain Newman)","na":14,"nb":1,"a":[["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF18938","Atypical Rib domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF17961","Bacterial Ig domain"],["Pfam%3APF06778","Chlorite dismutase"],["Pfam%3APF12199","Extracellular fibrinogen binding protein C terminal"]],"b":[["NCBITaxon%3A426430","Staphylococcus aureus subsp. aureus str. Newman"]]},{"id":"NCBITaxon:93062","l":"Staphylococcus aureus (strain COL)","na":14,"nb":1,"a":[["Pfam%3APF18927","Glycosyl-4,4'-diaponeurosporenoate acyltransferase"],["Pfam%3APF13684","Fatty acid kinase subunit A-like, C-terminal"],["Pfam%3APF21645","Fatty acid kinase subunit A-like, middle domain"],["Pfam%3APF07685","CobB/CobQ-like glutamine amidotransferase domain"],["Pfam%3APF28494","Glycyl-tRNA synthetase insertion domain 1"],["Pfam%3APF18698","Histidine kinase sensor domain"]],"b":[["NCBITaxon%3A93062","Staphylococcus aureus subsp. aureus COL"]]},{"id":"NCBITaxon:1144522","l":"Tritrichomonas foetus","na":13,"nb":1,"a":[["TED%3AAF-A0A1J4JPA9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1J4JPA9-F1-model_v4_TED02"],["TED%3AAF-A0A1J4K6U7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1J4K6U7-F1-model_v4_TED02"],["TED%3AAF-A0A1J4KYY8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1J4KYY8-F1-model_v4_TED03"],["TED%3AAF-A0A1J4KZM1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1J4KZM1-F1-model_v4_TED02"],["TED%3AAF-A0A1J4KZM1-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1J4KZM1-F1-model_v4_TED04"],["TED%3AAF-A0A1J4L5V9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1J4L5V9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1144522","Tritrichomonas foetus"]]},{"id":"NCBITaxon:115547","l":"Uncultured archaeon","na":13,"nb":1,"a":[["Pfam%3APF07282","Cas12f1-like, TNB domain"],["Pfam%3APF28161","Fusexin 1"],["TED%3AAF-A0A5E4HKS5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5E4HKS5-F1-model_v4_TED01"],["TED%3AAF-A0A5E4HZH8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5E4HZH8-F1-model_v4_TED01"],["TED%3AAF-A0A5E4J2V3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5E4J2V3-F1-model_v4_TED01"],["TED%3AAF-A0A5E4JWA9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5E4JWA9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A115547","uncultured archaeon"]]},{"id":"NCBITaxon:150053","l":"Yersinia enterocolitica subsp. palearctica","na":1,"nb":13,"a":[["TED%3AAF-A0A6M1Q6Y0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6M1Q6Y0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A630","Yersinia enterocolitica"],["NCBITaxon%3A150052","Yersinia enterocolitica subsp. enterocolitica"],["NCBITaxon%3A150053","Yersinia enterocolitica subsp. palearctica"],["NCBITaxon%3A994476","Yersinia enterocolitica subsp. palearctica 105.5R(r)"],["NCBITaxon%3A940287","Yersinia enterocolitica subsp. palearctica 556/8265"],["NCBITaxon%3A940288","Yersinia enterocolitica subsp. palearctica 647/5307"]]},{"id":"NCBITaxon:1520","l":"Clostridium beijerinckii","na":1,"nb":13,"a":[["TED%3AAF-A0A0B5QQV4-F1-model_v4_TED02","TED novel fold AF-A0A0B5QQV4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1488","Clostridium acetobutylicum"],["NCBITaxon%3A272562","Clostridium acetobutylicum ATCC 824"],["NCBITaxon%3A1520","Clostridium beijerinckii"],["NCBITaxon%3A1202535","Clostridium beijerinckii AAU1"],["NCBITaxon%3A864803","Clostridium beijerinckii ATCC 35702"],["NCBITaxon%3A1200349","Clostridium beijerinckii G117"]]},{"id":"NCBITaxon:1542","l":"Clostridium novyi","na":1,"nb":13,"a":[["PROSITE%3APS00384","Prokaryotic zinc-dependent phospholipase C signature"]],"b":[["NCBITaxon%3A84025","Clostridium haemolyticum"],["NCBITaxon%3A1542","Clostridium novyi"],["NCBITaxon%3A1809276","Clostridium novyi A"],["NCBITaxon%3A1443121","Clostridium novyi A str. 4540"],["NCBITaxon%3A1444289","Clostridium novyi A str. 4552"],["NCBITaxon%3A1444290","Clostridium novyi A str. 4570"]]},{"id":"NCBITaxon:1754190","l":"Neocallimastix californiae","na":13,"nb":1,"a":[["TED%3AAF-A0A1Y1XC87-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y1XC87-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2ADM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y2ADM3-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2AH60-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y2AH60-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2BB05-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Y2BB05-F1-model_v4_TED02"],["TED%3AAF-A0A1Y2CV21-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1Y2CV21-F1-model_v4_TED04"],["TED%3AAF-A0A1Y2ECT1-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1Y2ECT1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1754190","Neocallimastix californiae"]]},{"id":"NCBITaxon:1906665","l":"archaeon","na":13,"nb":1,"a":[["TED%3AAF-A0A2D6R7R0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D6R7R0-F1-model_v4_TED02"],["TED%3AAF-A0A2D6RMA6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D6RMA6-F1-model_v4_TED02"],["TED%3AAF-A0A482UEK7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A482UEK7-F1-model_v4_TED01"],["TED%3AAF-A0A7T5UTQ0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7T5UTQ0-F1-model_v4_TED02"],["TED%3AAF-A0A482RZA5-F1-model_v4_TED01","TED novel fold AF-A0A482RZA5-F1-model_v4_TED01"],["TED%3AAF-A0A482SIC6-F1-model_v4_TED03","TED novel fold AF-A0A482SIC6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1906665","archaeon"]]},{"id":"NCBITaxon:2024894","l":"Acidimicrobiaceae bacterium","na":13,"nb":1,"a":[["TED%3AAF-A0A2D8LQD2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D8LQD2-F1-model_v4_TED01"],["TED%3AAF-A0A2E0RXG4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0RXG4-F1-model_v4_TED01"],["TED%3AAF-A0A2E4RLD1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4RLD1-F1-model_v4_TED01"],["TED%3AAF-A0A351EQ15-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A351EQ15-F1-model_v4_TED01"],["TED%3AAF-A0A3B8M7L9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B8M7L9-F1-model_v4_TED01"],["TED%3AAF-A0A3C2B035-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3C2B035-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2024894","Acidimicrobiaceae bacterium"]]},{"id":"NCBITaxon:2026781","l":"Poribacteria bacterium","na":13,"nb":1,"a":[["TED%3AAF-A0A2D5VJS7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D5VJS7-F1-model_v4_TED02"],["TED%3AAF-A0A2E4DW61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4DW61-F1-model_v4_TED01"],["TED%3AAF-A0A496B2L5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A496B2L5-F1-model_v4_TED02"],["TED%3AAF-A0A7V0YVG4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V0YVG4-F1-model_v4_TED01"],["TED%3AAF-A0A7X3T5F6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7X3T5F6-F1-model_v4_TED02"],["TED%3AAF-A0A800AEN1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A800AEN1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026781","Candidatus Poribacteria bacterium"]]},{"id":"NCBITaxon:239","l":"Flavobacterium sp.","na":13,"nb":1,"a":[["Pfam%3APF21331","Isoamylase, C-terminal"],["TED%3AAF-A0A2E4PC55-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E4PC55-F1-model_v4_TED02"],["TED%3AAF-A0A2E4PGC5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4PGC5-F1-model_v4_TED01"],["TED%3AAF-A0A2E4PMB7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E4PMB7-F1-model_v4_TED02"],["TED%3AAF-A0A355BEV2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A355BEV2-F1-model_v4_TED02"],["TED%3AAF-A0A519QLA6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A519QLA6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A239","Flavobacterium sp."]]},{"id":"NCBITaxon:2485925","l":"Oscillospiraceae bacterium","na":13,"nb":1,"a":[["TED%3AAF-A0A2V2FDS6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V2FDS6-F1-model_v4_TED01"],["TED%3AAF-A0A354HDZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A354HDZ1-F1-model_v4_TED02"],["TED%3AAF-A0A358X4Y1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A358X4Y1-F1-model_v4_TED03"],["TED%3AAF-A0A3D2AE20-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D2AE20-F1-model_v4_TED02"],["TED%3AAF-A0A3D4T7L7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D4T7L7-F1-model_v4_TED02"],["TED%3AAF-A0A847PNE5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A847PNE5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2485925","Oscillospiraceae bacterium"]]},{"id":"NCBITaxon:28090","l":"Acinetobacter lwoffii","na":1,"nb":13,"a":[["TED%3AAF-A0A7S9AAV2-F1-model_v4_TED01","TED novel fold AF-A0A7S9AAV2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1311822","Acinetobacter genomosp. 9 str. ATCC 17910"],["NCBITaxon%3A40215","Acinetobacter junii"],["NCBITaxon%3A28090","Acinetobacter lwoffii"],["NCBITaxon%3A1311804","Acinetobacter lwoffii ATCC 9957 = CIP 70.31"],["NCBITaxon%3A54394","Acinetobacter lwoffii K24"],["NCBITaxon%3A981327","Acinetobacter lwoffii NCTC 5866 = CIP 64.10 = NIPH 512"]]},{"id":"NCBITaxon:327968","l":"Alexandrium andersonii","na":13,"nb":1,"a":[["TED%3AAF-A0A7S2AKY4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2AKY4-F1-model_v4_TED01"],["TED%3AAF-A0A7S2AN30-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2AN30-F1-model_v4_TED01"],["TED%3AAF-A0A7S2DXA2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S2DXA2-F1-model_v4_TED03"],["TED%3AAF-A0A7S2FIF3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2FIF3-F1-model_v4_TED01"],["TED%3AAF-A0A7S2FTB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2FTB9-F1-model_v4_TED01"],["TED%3AAF-A0A7S2J1J3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2J1J3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A327968","Alexandrium andersonii"]]},{"id":"NCBITaxon:66852","l":"Methanobrevibacter sp.","na":13,"nb":1,"a":[["TED%3AAF-A0A843EVZ3-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A843EVZ3-F1-model_v4_TED04"],["TED%3AAF-A0A843FCF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843FCF4-F1-model_v4_TED01"],["TED%3AAF-A0A843FFG9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A843FFG9-F1-model_v4_TED03"],["TED%3AAF-A0A843G9S4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843G9S4-F1-model_v4_TED01"],["TED%3AAF-A0A843GSU1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843GSU1-F1-model_v4_TED01"],["TED%3AAF-A0A843HRZ5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A843HRZ5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A66852","Methanobrevibacter sp."]]},{"id":"NCBITaxon:750","l":"Gallibacterium anatis","na":1,"nb":13,"a":[["TED%3AAF-A0A0A2XNX9-F1-model_v4_TED01","TED novel fold AF-A0A0A2XNX9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A750","Gallibacterium anatis"],["NCBITaxon%3A1396515","Gallibacterium anatis 10672-6"],["NCBITaxon%3A1195244","Gallibacterium anatis 12656/12"],["NCBITaxon%3A1396510","Gallibacterium anatis 4895"],["NCBITaxon%3A1396511","Gallibacterium anatis 7990"],["NCBITaxon%3A1380411","Gallibacterium anatis biovar haemolytica"]]},{"id":"NCBITaxon:119602","l":"Streptococcus dysgalactiae subsp. equisimilis","na":1,"nb":12,"a":[["TED%3AAF-A0A5M4CWR2-F1-model_v4_TED02","TED novel fold AF-A0A5M4CWR2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1334","Streptococcus dysgalactiae"],["NCBITaxon%3A119602","Streptococcus dysgalactiae subsp. equisimilis"],["NCBITaxon%3A1247189","Streptococcus dysgalactiae subsp. equisimilis 167"],["NCBITaxon%3A759913","Streptococcus dysgalactiae subsp. equisimilis AC-2713"],["NCBITaxon%3A452436","Streptococcus dysgalactiae subsp. equisimilis AKSDE4288"],["NCBITaxon%3A663954","Streptococcus dysgalactiae subsp. equisimilis ATCC 12394"]]},{"id":"NCBITaxon:1897614","l":"Maribacter sp.","na":12,"nb":1,"a":[["TED%3AAF-A0A3C0GJN2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C0GJN2-F1-model_v4_TED01"],["TED%3AAF-A0A3B9R709-F1-model_v4_TED02","TED novel fold AF-A0A3B9R709-F1-model_v4_TED02"],["TED%3AAF-A0A3B9R7Z4-F1-model_v4_TED01","TED novel fold AF-A0A3B9R7Z4-F1-model_v4_TED01"],["TED%3AAF-A0A3B9RA49-F1-model_v4_TED02","TED novel fold AF-A0A3B9RA49-F1-model_v4_TED02"],["TED%3AAF-A0A3C0FZ60-F1-model_v4_TED02","TED novel fold AF-A0A3C0FZ60-F1-model_v4_TED02"],["TED%3AAF-A0A3C0G1Z3-F1-model_v4_TED03","TED novel fold AF-A0A3C0G1Z3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1897614","Maribacter sp."]]},{"id":"NCBITaxon:201","l":"Campylobacter lari","na":1,"nb":12,"a":[["TED%3AAF-A0A5M0YYW6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5M0YYW6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A198","Campylobacter hyointestinalis"],["NCBITaxon%3A201","Campylobacter lari"],["NCBITaxon%3A1388750","Campylobacter lari CCUG 22395"],["NCBITaxon%3A1388749","Campylobacter lari NCTC 11845"],["NCBITaxon%3A1453989","Campylobacter lari RM16701"],["NCBITaxon%3A1453988","Campylobacter lari RM16712"]]},{"id":"NCBITaxon:2024896","l":"Anaerolineaceae bacterium","na":12,"nb":1,"a":[["TED%3AAF-A0A2E0L407-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2E0L407-F1-model_v4_TED03"],["TED%3AAF-A0A2E0V255-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0V255-F1-model_v4_TED01"],["TED%3AAF-A0A2E1AAR7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E1AAR7-F1-model_v4_TED01"],["TED%3AAF-A0A3A4VPM9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3A4VPM9-F1-model_v4_TED02"],["TED%3AAF-A0A3B9A2N8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B9A2N8-F1-model_v4_TED01"],["TED%3AAF-A0A7X9PDU0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X9PDU0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024896","Anaerolineaceae bacterium"]]},{"id":"NCBITaxon:2049431","l":"Tissierellia bacterium","na":12,"nb":1,"a":[["TED%3AAF-A0A7C7AGH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C7AGH3-F1-model_v4_TED01"],["TED%3AAF-A0A7X8D040-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A7X8D040-F1-model_v4_TED05"],["TED%3AAF-A0A7X8FRG7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X8FRG7-F1-model_v4_TED01"],["TED%3AAF-A0A7X8G0K6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X8G0K6-F1-model_v4_TED01"],["TED%3AAF-A0A847AW67-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A847AW67-F1-model_v4_TED01"],["TED%3AAF-A0A847NG83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A847NG83-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2049431","Tissierellia bacterium"]]},{"id":"NCBITaxon:2052164","l":"Gemmataceae bacterium","na":12,"nb":1,"a":[["TED%3AAF-A0A4V0I0C1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4V0I0C1-F1-model_v4_TED02"],["TED%3AAF-A0A7C4UC94-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7C4UC94-F1-model_v4_TED03"],["TED%3AAF-A0A7C4UDY7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C4UDY7-F1-model_v4_TED01"],["TED%3AAF-A0A7V3VYA3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7V3VYA3-F1-model_v4_TED03"],["TED%3AAF-A0A4V0I7D3-F1-model_v4_TED01","TED novel fold AF-A0A4V0I7D3-F1-model_v4_TED01"],["TED%3AAF-A0A7C4UB88-F1-model_v4_TED04","TED novel fold AF-A0A7C4UB88-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2052164","Gemmataceae bacterium"]]},{"id":"NCBITaxon:2053306","l":"Ignavibacteria bacterium","na":12,"nb":1,"a":[["TED%3AAF-A0A533YHW3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A533YHW3-F1-model_v4_TED02"],["TED%3AAF-A0A7C2AFB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C2AFB4-F1-model_v4_TED01"],["TED%3AAF-A0A7S6MWR5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S6MWR5-F1-model_v4_TED01"],["TED%3AAF-A0A7V4LVX5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V4LVX5-F1-model_v4_TED01"],["TED%3AAF-A0A2N6A028-F1-model_v4_TED01","TED novel fold AF-A0A2N6A028-F1-model_v4_TED01"],["TED%3AAF-A0A7C3EXK1-F1-model_v4_TED03","TED novel fold AF-A0A7C3EXK1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2053306","Ignavibacteria bacterium"]]},{"id":"NCBITaxon:231916","l":"Gymnopilus dilepis","na":12,"nb":1,"a":[["TED%3AAF-A0A409W679-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A409W679-F1-model_v4_TED01"],["TED%3AAF-A0A409XZH6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A409XZH6-F1-model_v4_TED02"],["TED%3AAF-A0A409Y3U6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A409Y3U6-F1-model_v4_TED01"],["TED%3AAF-A0A409Y4E4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A409Y4E4-F1-model_v4_TED01"],["TED%3AAF-A0A409VY99-F1-model_v4_TED01","TED novel fold AF-A0A409VY99-F1-model_v4_TED01"],["TED%3AAF-A0A409W9H6-F1-model_v4_TED01","TED novel fold AF-A0A409W9H6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A231916","Gymnopilus dilepis"]]},{"id":"NCBITaxon:267567","l":"Skeletonema marinoi","na":12,"nb":1,"a":[["TED%3AAF-A0A7S2L0Q3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2L0Q3-F1-model_v4_TED01"],["TED%3AAF-A0A7S2L7Y0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2L7Y0-F1-model_v4_TED01"],["TED%3AAF-A0A7S2LFD5-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7S2LFD5-F1-model_v4_TED04"],["TED%3AAF-A0A7S2M7J6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2M7J6-F1-model_v4_TED01"],["TED%3AAF-A0A7S2PGZ4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S2PGZ4-F1-model_v4_TED02"],["TED%3AAF-A0A7S2Q0A5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2Q0A5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A267567","Skeletonema marinoi"]]},{"id":"NCBITaxon:272942","l":"Rhodobacter capsulatus (strain ATCC BAA-309 / NBRC 16581 / SB1003)","na":12,"nb":1,"a":[["Pfam%3APF02553","Cobalt transport protein component CbiN"],["Pfam%3APF03379","CcmB protein"],["Pfam%3APF27123","Carotenoid hydratase CrtC"],["Pfam%3APF14715","N-terminal domain of cytochrome oxidase-cbb3, FixP"],["Pfam%3APF07284","2-vinyl bacteriochlorophyllide hydratase (BCHF)"],["Pfam%3APF02571","Precorrin-6x reductase CbiJ/CobK"]],"b":[["NCBITaxon%3A272942","Rhodobacter capsulatus SB 1003"]]},{"id":"NCBITaxon:51453","l":"Trichoderma reesei","na":12,"nb":1,"a":[["Pfam%3APF28347","ACE1 small beta sheet domain"],["Pfam%3APF28329","Zinc finger transcription factor ace1 N-terminal domain"],["Pfam%3APF00150","Cellulase (glycosyl hydrolase family 5)"],["Pfam%3APF22514","EXPB1-like domain 1"],["Pfam%3APF01341","Glycosyl hydrolases family 6"],["Pfam%3APF00840","Glycosyl hydrolase family 7"]],"b":[["NCBITaxon%3A51453","Trichoderma reesei"]]},{"id":"NCBITaxon:544645","l":"Butyricimonas virosa","na":1,"nb":12,"a":[["TED%3AAF-A0A413ITS3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A413ITS3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A544645","Butyricimonas virosa"],["NCBITaxon%3A1121130","Butyricimonas virosa DSM 23226"],["NCBITaxon%3A1339048","Butyricimonas virosa TS7.1-1.1"],["NCBITaxon%3A1339049","Butyricimonas virosa TS7.1-1.2"],["NCBITaxon%3A1339050","Butyricimonas virosa TS7.1-2.1"],["NCBITaxon%3A1339051","Butyricimonas virosa TSDA1.2-1.1"]]},{"id":"NCBITaxon:61645","l":"Enterobacter asburiae","na":1,"nb":12,"a":[["TED%3AAF-A0A8B3U934-F1-model_v4_TED02","TED novel fold AF-A0A8B3U934-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A61645","Enterobacter asburiae"],["NCBITaxon%3A1330532","Enterobacter asburiae B1-3"],["NCBITaxon%3A1330533","Enterobacter asburiae B5-60"],["NCBITaxon%3A1442602","Enterobacter asburiae C1"],["NCBITaxon%3A1298604","Enterobacter asburiae JCM 6051"],["NCBITaxon%3A1421338","Enterobacter asburiae L1"]]},{"id":"NCBITaxon:945775","l":"Pseudanabaena frigida","na":1,"nb":12,"a":[["TED%3AAF-A0A2W4Y9W9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2W4Y9W9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A945776","Pseudanabaena cf. frigida LEGE 06144"],["NCBITaxon%3A945775","Pseudanabaena frigida"],["NCBITaxon%3A3711284","Pseudanabaena frigida D12_PA_1"],["NCBITaxon%3A2037890","Pseudanabaena frigida ISB82"],["NCBITaxon%3A1719111","Pseudanabaena frigida O-302"],["NCBITaxon%3A2739198","Pseudanabaena frigida PUPCCC 106.7/1"]]},{"id":"NCBITaxon:106654","l":"Acinetobacter nosocomialis","na":1,"nb":11,"a":[["TED%3AAF-A0A5Q0RRM8-F1-model_v4_TED01","TED novel fold AF-A0A5Q0RRM8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A981325","Acinetobacter genomosp. 13TU str. NCTC 8102"],["NCBITaxon%3A106654","Acinetobacter nosocomialis"],["NCBITaxon%3A1147131","Acinetobacter nosocomialis 28F"],["NCBITaxon%3A1183155","Acinetobacter nosocomialis Ab22222"],["NCBITaxon%3A1343071","Acinetobacter nosocomialis M2"],["NCBITaxon%3A1217670","Acinetobacter nosocomialis NIPH 2119"]]},{"id":"NCBITaxon:1214915","l":"Mycolicibacterium smegmatis (strain MKD8)","na":11,"nb":1,"a":[["Pfam%3APF18625","ESX-1 secreted protein B PE domain"],["Pfam%3APF21856","ESX-1 secretion-associated protein EspB, PPE domain"],["Pfam%3APF27215","EspK C-terminal domain"],["Pfam%3APF25832","Fibronectin type III domain SaeA second domain"],["Pfam%3APF25833","Fibronectin type III domain SaeA third domain"],["Pfam%3APF25834","Fibronectin type III domain SaeA fourth domain"]],"b":[["NCBITaxon%3A1214915","Mycolicibacterium smegmatis MKD8"]]},{"id":"NCBITaxon:1354","l":"Enterococcus hirae","na":1,"nb":11,"a":[["Pfam%3APF11983","Cell division protein FtsA, C-terminal"]],"b":[["NCBITaxon%3A1352","Enterococcus faecium"],["NCBITaxon%3A1354","Enterococcus hirae"],["NCBITaxon%3A1232728","Enterococcus hirae 57-03-H11"],["NCBITaxon%3A1232727","Enterococcus hirae 57-09-G6"],["NCBITaxon%3A1262665","Enterococcus hirae 67-03-C5"],["NCBITaxon%3A1262668","Enterococcus hirae 78-09-C1"]]},{"id":"NCBITaxon:1898209","l":"Acholeplasmataceae bacterium","na":11,"nb":1,"a":[["TED%3AAF-A0A353PIL2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A353PIL2-F1-model_v4_TED01"],["TED%3AAF-A0A7C6K3C3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C6K3C3-F1-model_v4_TED02"],["TED%3AAF-A0A7C6SBZ4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7C6SBZ4-F1-model_v4_TED03"],["TED%3AAF-A0A7V6IUB6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V6IUB6-F1-model_v4_TED01"],["TED%3AAF-A0A7X7C6M0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7X7C6M0-F1-model_v4_TED03"],["TED%3AAF-A0A7X7C6M0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7X7C6M0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1898209","Acholeplasmataceae bacterium"]]},{"id":"NCBITaxon:198628","l":"Dickeya dadantii (strain 3937)","na":11,"nb":1,"a":[["Pfam%3APF14600","Cellulose-binding domain"],["Pfam%3APF08946","Osmosensory transporter coiled coil"],["Pfam%3APF19929","Immunity protein CdiI"],["Pfam%3APF15655","NTF2 fold immunity protein"],["Pfam%3APF06178","Oligogalacturonate-specific porin protein (KdgM)"],["PROSITE%3APS00659","Glycosyl hydrolases family 5 signature"]],"b":[["NCBITaxon%3A198628","Dickeya dadantii 3937"]]},{"id":"NCBITaxon:2026741","l":"Gemmatimonadaceae bacterium","na":11,"nb":1,"a":[["TED%3AAF-A0A7W1C216-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7W1C216-F1-model_v4_TED03"],["TED%3AAF-A0A7W1E6J1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W1E6J1-F1-model_v4_TED02"],["TED%3AAF-A0A7W1E8S4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W1E8S4-F1-model_v4_TED01"],["TED%3AAF-A0A7W1EK17-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W1EK17-F1-model_v4_TED02"],["TED%3AAF-A0A2E8H9Y1-F1-model_v4_TED02","TED novel fold AF-A0A2E8H9Y1-F1-model_v4_TED02"],["TED%3AAF-A0A7V9QMW2-F1-model_v4_TED01","TED novel fold AF-A0A7V9QMW2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026741","Gemmatimonadaceae bacterium"]]},{"id":"NCBITaxon:2026887","l":"Nitrospirota bacterium","na":11,"nb":1,"a":[["TED%3AAF-A0A521SRV9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A521SRV9-F1-model_v4_TED02"],["TED%3AAF-A0A533XE66-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A533XE66-F1-model_v4_TED01"],["TED%3AAF-A0A6N7AVM2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N7AVM2-F1-model_v4_TED01"],["TED%3AAF-A0A7C0ZXT1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C0ZXT1-F1-model_v4_TED01"],["TED%3AAF-A0A7C1KT15-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C1KT15-F1-model_v4_TED02"],["TED%3AAF-A0A7C8EC21-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C8EC21-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026887","Nitrospirota bacterium"]]},{"id":"NCBITaxon:2030800","l":"Elusimicrobiota bacterium","na":11,"nb":1,"a":[["TED%3AAF-A0A3B9YFR8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B9YFR8-F1-model_v4_TED01"],["TED%3AAF-A0A3C1EKU1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C1EKU1-F1-model_v4_TED01"],["TED%3AAF-A0A3C1ENG3-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A3C1ENG3-F1-model_v4_TED04"],["TED%3AAF-A0A7C3VF23-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C3VF23-F1-model_v4_TED01"],["TED%3AAF-A0A7V3ERG8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7V3ERG8-F1-model_v4_TED02"],["TED%3AAF-A0A7X7TVI3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X7TVI3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2030800","Elusimicrobiota bacterium"]]},{"id":"NCBITaxon:2053607","l":"Candidatus Rokubacteria bacterium","na":11,"nb":1,"a":[["TED%3AAF-A0A2V2SFB4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2V2SFB4-F1-model_v4_TED03"],["TED%3AAF-A0A2V6PUY9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V6PUY9-F1-model_v4_TED01"],["TED%3AAF-A0A2V6PVL1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V6PVL1-F1-model_v4_TED01"],["TED%3AAF-A0A2V6QHW3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V6QHW3-F1-model_v4_TED01"],["TED%3AAF-A0A2V6QT53-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V6QT53-F1-model_v4_TED02"],["TED%3AAF-A0A2V6YUV3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V6YUV3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053607","Candidatus Rokuibacteriota bacterium"]]},{"id":"NCBITaxon:222440","l":"Streblomastix strix","na":11,"nb":1,"a":[["TED%3AAF-A0A5J4TUQ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5J4TUQ0-F1-model_v4_TED01"],["TED%3AAF-A0A5J4UW04-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A5J4UW04-F1-model_v4_TED04"],["TED%3AAF-A0A5J4V2A5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5J4V2A5-F1-model_v4_TED01"],["TED%3AAF-A0A5J4V9N0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A5J4V9N0-F1-model_v4_TED04"],["TED%3AAF-A0A5J4VP50-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5J4VP50-F1-model_v4_TED01"],["TED%3AAF-A0A5J4VPU9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5J4VPU9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A222440","Streblomastix strix"]]},{"id":"NCBITaxon:2250274","l":"Micrarchaeota archaeon","na":11,"nb":1,"a":[["TED%3AAF-A0A7J2Z0S6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J2Z0S6-F1-model_v4_TED01"],["TED%3AAF-A0A7J3CTW2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7J3CTW2-F1-model_v4_TED02"],["TED%3AAF-A0A7J3DKL9-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A7J3DKL9-F1-model_v4_TED05"],["TED%3AAF-A0A7L4RA83-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7L4RA83-F1-model_v4_TED03"],["TED%3AAF-A0A7L4RFJ7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7L4RFJ7-F1-model_v4_TED02"],["TED%3AAF-A0A497IDY3-F1-model_v4_TED01","TED novel fold AF-A0A497IDY3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2250274","Microcaldota archaeon"]]},{"id":"NCBITaxon:2448054","l":"Gemmatimonadales bacterium","na":11,"nb":1,"a":[["TED%3AAF-A0A524KSK4-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A524KSK4-F1-model_v4_TED04"],["TED%3AAF-A0A6L7ULV7-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A6L7ULV7-F1-model_v4_TED05"],["TED%3AAF-A0A7V8X8E7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V8X8E7-F1-model_v4_TED01"],["TED%3AAF-A0A7W1BDN8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W1BDN8-F1-model_v4_TED01"],["TED%3AAF-A0A7W1KM63-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W1KM63-F1-model_v4_TED01"],["TED%3AAF-A0A7Y2NWI3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y2NWI3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2448054","Gemmatimonadales bacterium"]]},{"id":"NCBITaxon:272626","l":"Listeria innocua serovar 6a (strain ATCC BAA-680 / CLIP 11262)","na":11,"nb":1,"a":[["Pfam%3APF16595","PAM-interacting domain of CRISPR-associated endonuclease Cas9"],["Pfam%3APF21846","Domain of unknown function (DUF6905)"],["Pfam%3APF27405","Lin0124 C-terminal coiled-coil domain"],["Pfam%3APF14297","Lin1244/Lin1753-like, N-terminal"],["Pfam%3APF16593","Bridge helix of CRISPR-associated endonuclease Cas9"],["Pfam%3APF16592","REC lobe of CRISPR-associated endonuclease Cas9"]],"b":[["NCBITaxon%3A272626","Listeria innocua Clip11262"]]},{"id":"NCBITaxon:2762014","l":"Candidatus Parcubacteria bacterium","na":11,"nb":1,"a":[["TED%3AAF-A0A2N6A8U3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N6A8U3-F1-model_v4_TED01"],["TED%3AAF-A0A3A4VEN4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A4VEN4-F1-model_v4_TED01"],["TED%3AAF-A0A3A4ZRB7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A4ZRB7-F1-model_v4_TED01"],["TED%3AAF-A0A3M1FNI3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M1FNI3-F1-model_v4_TED01"],["TED%3AAF-A0A7C5A8P4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C5A8P4-F1-model_v4_TED01"],["TED%3AAF-A0A7V3PB42-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V3PB42-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2762014","Candidatus Parcubacteria bacterium"]]},{"id":"NCBITaxon:331112","l":"Escherichia coli O9:H4 (strain HS)","na":11,"nb":1,"a":[["Pfam%3APF25796","BREX ATP-binding protein BrxC 4th domain with six-stranded beta sheet"],["Pfam%3APF25792","BREX ATP-binding protein BrxC alpha helical domain"],["Pfam%3APF08747","BREX protein BrxB"],["Pfam%3APF19557","BrxC/PglY, N-terminal domain"],["Pfam%3APF13337","Lon-like protease BrxL-like, ATPase domain"],["Pfam%3APF20442","BREX system Lon protease-like protein BrxL N-terminal"]],"b":[["NCBITaxon%3A331112","Escherichia coli HS"]]},{"id":"NCBITaxon:451804","l":"Aspergillus fumigatus (strain CBS 144.89 / FGSC A1163 / CEA10)","na":11,"nb":1,"a":[["Pfam%3APF28347","ACE1 small beta sheet domain"],["Pfam%3APF28329","Zinc finger transcription factor ace1 N-terminal domain"],["Pfam%3APF11001","YDR124W-like, helical bundle domain"],["Pfam%3APF28457","Probable beta-glucosidase btgE N-terminal domain"],["Pfam%3APF13373","DSC E3 ubiquitin ligase complex subunit 3, C-terminal domain"],["Pfam%3APF10302","DSC E3 ubiquitin ligase complex subunit 3, ubiquitin-like domain"]],"b":[["NCBITaxon%3A451804","Aspergillus fumigatus A1163"]]},{"id":"NCBITaxon:53446","l":"Streptomyces cinnamoneus","na":1,"nb":11,"a":[["TED%3AAF-A0A2S6XSK0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S6XSK0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A53446","Streptomyces cinnamoneus"],["NCBITaxon%3A173776","Streptomyces cinnamoneus subsp. albosporus"],["NCBITaxon%3A173777","Streptomyces cinnamoneus subsp. azacoluta"],["NCBITaxon%3A173778","Streptomyces cinnamoneus subsp. lanosus"],["NCBITaxon%3A1521191","Streptomyces cinnamoneus subsp. monicae"],["NCBITaxon%3A173779","Streptomyces cinnamoneus subsp. sparsus"]]},{"id":"NCBITaxon:574560","l":"Photorhabdus temperata","na":1,"nb":11,"a":[["TED%3AAF-A0A4R7P891-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R7P891-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A471575","Photorhabdus cinerea"],["NCBITaxon%3A1004150","Photorhabdus khanii"],["NCBITaxon%3A2675885","Photorhabdus khanii subsp. khanii"],["NCBITaxon%3A1004159","Photorhabdus tasmaniensis"],["NCBITaxon%3A574560","Photorhabdus temperata"],["NCBITaxon%3A1389415","Photorhabdus temperata J3"]]},{"id":"NCBITaxon:59620","l":"uncultured Clostridium sp.","na":11,"nb":1,"a":[["TED%3AAF-A0A1C5QU37-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C5QU37-F1-model_v4_TED01"],["TED%3AAF-A0A1C5UPV7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1C5UPV7-F1-model_v4_TED02"],["TED%3AAF-A0A1C5W2V9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1C5W2V9-F1-model_v4_TED02"],["TED%3AAF-A0A1C5XLL0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C5XLL0-F1-model_v4_TED01"],["TED%3AAF-A0A1C5Z394-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C5Z394-F1-model_v4_TED01"],["TED%3AAF-A0A1C5ZSK7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1C5ZSK7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A59620","uncultured Clostridium sp."]]},{"id":"NCBITaxon:76860","l":"Streptococcus constellatus","na":1,"nb":11,"a":[["TED%3AAF-A0A380JGS6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A380JGS6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1328","Streptococcus anginosus"],["NCBITaxon%3A76860","Streptococcus constellatus"],["NCBITaxon%3A184246","Streptococcus constellatus subsp. constellatus"],["NCBITaxon%3A1095730","Streptococcus constellatus subsp. constellatus SK53"],["NCBITaxon%3A184250","Streptococcus constellatus subsp. pharyngis"],["NCBITaxon%3A862969","Streptococcus constellatus subsp. pharyngis C1050"]]},{"id":"NCBITaxon:889272","l":"Polyangium fumosum","na":11,"nb":1,"a":[["TED%3AAF-A0A4U1IM92-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4U1IM92-F1-model_v4_TED02"],["TED%3AAF-A0A4U1IPC0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A4U1IPC0-F1-model_v4_TED03"],["TED%3AAF-A0A4U1IXQ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U1IXQ7-F1-model_v4_TED01"],["TED%3AAF-A0A4U1J2I8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U1J2I8-F1-model_v4_TED01"],["TED%3AAF-A0A4U1J3Y1-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A4U1J3Y1-F1-model_v4_TED04"],["TED%3AAF-A0A4U1JFX6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4U1JFX6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A889272","Polyangium fumosum"]]},{"id":"NCBITaxon:1581","l":"Lentilactobacillus buchneri","na":1,"nb":10,"a":[["Pfam%3APF02329","Histidine carboxylase PI chain"]],"b":[["NCBITaxon%3A1581","Lentilactobacillus buchneri"],["NCBITaxon%3A525318","Lentilactobacillus buchneri ATCC 11577"],["NCBITaxon%3A1423728","Lentilactobacillus buchneri DSM 20057"],["NCBITaxon%3A511437","Lentilactobacillus buchneri NRRL B-30929"],["NCBITaxon%3A2737513","Lentilactobacillus buchneri subsp. buchneri"],["NCBITaxon%3A2737512","Lentilactobacillus buchneri subsp. silagei"]]},{"id":"NCBITaxon:158879","l":"Staphylococcus aureus (strain N315)","na":10,"nb":1,"a":[["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"],["Pfam%3APF03780","Asp23 family, cell envelope-related function"],["Pfam%3APF12199","Extracellular fibrinogen binding protein C terminal"],["Pfam%3APF07685","CobB/CobQ-like glutamine amidotransferase domain"],["Pfam%3APF20861","Iron-regulated surface determinant protein H/B, linker domain"],["Pfam%3APF10804","Protein of unknown function (DUF2538)"]],"b":[["NCBITaxon%3A158879","Staphylococcus aureus subsp. aureus N315"]]},{"id":"NCBITaxon:1628268","l":"Symbiodinium necroappetens","na":10,"nb":1,"a":[["TED%3AAF-A0A812MKM8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812MKM8-F1-model_v4_TED01"],["TED%3AAF-A0A812Y428-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812Y428-F1-model_v4_TED01"],["TED%3AAF-A0A812YG85-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A812YG85-F1-model_v4_TED02"],["TED%3AAF-A0A813A6P0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A813A6P0-F1-model_v4_TED02"],["TED%3AAF-A0A813BN35-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A813BN35-F1-model_v4_TED03"],["TED%3AAF-A0A812LYB9-F1-model_v4_TED01","TED novel fold AF-A0A812LYB9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1628268","Symbiodinium necroappetens"]]},{"id":"NCBITaxon:1781","l":"Mycobacterium marinum","na":1,"nb":10,"a":[["TED%3AAF-A0A2Z5YKC9-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2Z5YKC9-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1781","Mycobacterium marinum"],["NCBITaxon%3A1348799","Mycobacterium marinum ATCC BAA-535"],["NCBITaxon%3A459420","Mycobacterium marinum DL240490"],["NCBITaxon%3A1131442","Mycobacterium marinum E11"],["NCBITaxon%3A216594","Mycobacterium marinum M"],["NCBITaxon%3A1288036","Mycobacterium marinum MB2"]]},{"id":"NCBITaxon:185431","l":"Trypanosoma brucei brucei (strain 927/4 GUTat10.1)","na":10,"nb":1,"a":[["Pfam%3APF25828","Cfap43 coiled coil"],["Pfam%3APF18526","Thymine dioxygenase JBP1 DNA-binding domain"],["Pfam%3APF01916","Deoxyhypusine synthase"],["Pfam%3APF26536","REH2 DRSM domain"],["Pfam%3APF23398","FAZ1, conserved domain"],["Pfam%3APF02689","Helicase"]],"b":[["NCBITaxon%3A185431","Trypanosoma brucei brucei TREU927"]]},{"id":"NCBITaxon:196620","l":"Staphylococcus aureus (strain MW2)","na":10,"nb":1,"a":[["Pfam%3APF03780","Asp23 family, cell envelope-related function"],["Pfam%3APF13610","DDE domain"],["Pfam%3APF21650","DNA primase DnaG, catalytic core, helical bundle"],["Pfam%3APF18698","Histidine kinase sensor domain"],["Pfam%3APF18483","Legume lectin beta-barrel domain"],["Pfam%3APF11546","Staphylococcal complement inhibitor SCIN"]],"b":[["NCBITaxon%3A196620","Staphylococcus aureus subsp. aureus MW2"]]},{"id":"NCBITaxon:197221","l":"Thermosynechococcus vestitus (strain NIES-2133 / IAM M-273 / BP-1)","na":10,"nb":1,"a":[["Pfam%3APF00430","ATP synthase B/B' CF(0)"],["Pfam%3APF14495","Cytochrome c-550 domain"],["Pfam%3APF21714","Circadian clock protein KaiA, N-terminal domain"],["Pfam%3APF07688","KaiA C-terminal domain"],["Pfam%3APF07689","KaiB domain"],["Pfam%3APF00283","Cytochrome b559, alpha (gene psbE) and beta (gene psbF)subunits"]],"b":[["NCBITaxon%3A197221","Thermosynechococcus vestitus BP-1"]]},{"id":"NCBITaxon:2026720","l":"Candidatus Saccharibacteria bacterium","na":10,"nb":1,"a":[["TED%3AAF-A0A521GQH8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521GQH8-F1-model_v4_TED01"],["TED%3AAF-A0A7T9BG81-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7T9BG81-F1-model_v4_TED04"],["TED%3AAF-A0A2G6C427-F1-model_v4_TED01","TED novel fold AF-A0A2G6C427-F1-model_v4_TED01"],["TED%3AAF-A0A3B8XDR1-F1-model_v4_TED01","TED novel fold AF-A0A3B8XDR1-F1-model_v4_TED01"],["TED%3AAF-A0A7T9EYG0-F1-model_v4_TED02","TED novel fold AF-A0A7T9EYG0-F1-model_v4_TED02"],["TED%3AAF-A0A7T9QFY5-F1-model_v4_TED01","TED novel fold AF-A0A7T9QFY5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026720","Candidatus Saccharimonadota bacterium"]]},{"id":"NCBITaxon:2026795","l":"Nitrososphaerota archaeon","na":10,"nb":1,"a":[["TED%3AAF-A0A2E0QIG3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E0QIG3-F1-model_v4_TED02"],["TED%3AAF-A0A519CY76-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A519CY76-F1-model_v4_TED02"],["TED%3AAF-A0A533VPG5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A533VPG5-F1-model_v4_TED01"],["TED%3AAF-A0A533VS28-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A533VS28-F1-model_v4_TED01"],["TED%3AAF-A0A538P7I2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A538P7I2-F1-model_v4_TED02"],["TED%3AAF-A0A662PPJ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A662PPJ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026795","Nitrososphaerota archaeon"]]},{"id":"NCBITaxon:2030809","l":"Hydrogenedentes bacterium","na":10,"nb":1,"a":[["TED%3AAF-A0A3M1IHM8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M1IHM8-F1-model_v4_TED01"],["TED%3AAF-A0A7C3ASP1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C3ASP1-F1-model_v4_TED01"],["TED%3AAF-A0A7C3SSL5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C3SSL5-F1-model_v4_TED01"],["TED%3AAF-A0A7Y5CAQ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y5CAQ0-F1-model_v4_TED01"],["TED%3AAF-A0A831UKD5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A831UKD5-F1-model_v4_TED02"],["TED%3AAF-A0A831XK46-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A831XK46-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2030809","Candidatus Hydrogenedentota bacterium"]]},{"id":"NCBITaxon:2049046","l":"Porphyromonadaceae bacterium","na":10,"nb":1,"a":[["TED%3AAF-A0A352HPZ5-F1-model_v4_TED02","TED novel fold AF-A0A352HPZ5-F1-model_v4_TED02"],["TED%3AAF-A0A352HSX3-F1-model_v4_TED01","TED novel fold AF-A0A352HSX3-F1-model_v4_TED01"],["TED%3AAF-A0A353Q9U7-F1-model_v4_TED05","TED novel fold AF-A0A353Q9U7-F1-model_v4_TED05"],["TED%3AAF-A0A353RIS8-F1-model_v4_TED01","TED novel fold AF-A0A353RIS8-F1-model_v4_TED01"],["TED%3AAF-A0A355FFT1-F1-model_v4_TED02","TED novel fold AF-A0A355FFT1-F1-model_v4_TED02"],["TED%3AAF-A0A355ZAD8-F1-model_v4_TED03","TED novel fold AF-A0A355ZAD8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2049046","Porphyromonadaceae bacterium"]]},{"id":"NCBITaxon:2080302","l":"Acidimicrobiia bacterium","na":10,"nb":1,"a":[["TED%3AAF-A0A7K2CSN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K2CSN7-F1-model_v4_TED01"],["TED%3AAF-A0A7K2EB93-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K2EB93-F1-model_v4_TED01"],["TED%3AAF-A0A7V8Z207-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7V8Z207-F1-model_v4_TED02"],["TED%3AAF-A0A7V9IJW2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V9IJW2-F1-model_v4_TED01"],["TED%3AAF-A0A7W0HBJ6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W0HBJ6-F1-model_v4_TED02"],["TED%3AAF-A0A7Y1XA56-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y1XA56-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2080302","Acidimicrobiia bacterium"]]},{"id":"NCBITaxon:215803","l":"Enhygromyxa salina","na":10,"nb":1,"a":[["TED%3AAF-A0A0C1ZPD8-F1-model_v4_TED02","TED novel fold AF-A0A0C1ZPD8-F1-model_v4_TED02"],["TED%3AAF-A0A0C2CKS6-F1-model_v4_TED03","TED novel fold AF-A0A0C2CKS6-F1-model_v4_TED03"],["TED%3AAF-A0A0C2D012-F1-model_v4_TED02","TED novel fold AF-A0A0C2D012-F1-model_v4_TED02"],["TED%3AAF-A0A2S9XAM6-F1-model_v4_TED01","TED novel fold AF-A0A2S9XAM6-F1-model_v4_TED01"],["TED%3AAF-A0A2S9XEU4-F1-model_v4_TED01","TED novel fold AF-A0A2S9XEU4-F1-model_v4_TED01"],["TED%3AAF-A0A2S9XNB5-F1-model_v4_TED01","TED novel fold AF-A0A2S9XNB5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A215803","Enhygromyxa salina"]]},{"id":"NCBITaxon:2202734","l":"Saprospiraceae bacterium","na":10,"nb":1,"a":[["TED%3AAF-A0A521UI51-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A521UI51-F1-model_v4_TED06"],["TED%3AAF-A0A7Y2BYI8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y2BYI8-F1-model_v4_TED01"],["TED%3AAF-A0A7Y3A5A8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7Y3A5A8-F1-model_v4_TED03"],["TED%3AAF-A0A7Y4T0B6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y4T0B6-F1-model_v4_TED02"],["TED%3AAF-A0A7Y5MTU2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y5MTU2-F1-model_v4_TED01"],["TED%3AAF-A0A7D5MI03-F1-model_v4_TED01","TED novel fold AF-A0A7D5MI03-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2202734","Saprospiraceae bacterium"]]},{"id":"NCBITaxon:2209","l":"Methanosarcina mazei","na":1,"nb":10,"a":[["TED%3AAF-A0A0F8CQX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F8CQX7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2209","Methanosarcina mazei"],["NCBITaxon%3A1434113","Methanosarcina mazei C16"],["NCBITaxon%3A192952","Methanosarcina mazei Go1"],["NCBITaxon%3A1293038","Methanosarcina mazei JCM 9314"],["NCBITaxon%3A1434114","Methanosarcina mazei LYC"],["NCBITaxon%3A213585","Methanosarcina mazei S-6"]]},{"id":"NCBITaxon:228","l":"Pseudoalteromonas haloplanktis","na":1,"nb":10,"a":[["Pfam%3APF07023","Protein of unknown function (DUF1315)"]],"b":[["NCBITaxon%3A228","Pseudoalteromonas haloplanktis"],["NCBITaxon%3A722419","Pseudoalteromonas haloplanktis ANT/505"],["NCBITaxon%3A1117315","Pseudoalteromonas haloplanktis ATCC 14393"],["NCBITaxon%3A540541","Pseudoalteromonas haloplanktis subsp. haloplanktis"],["NCBITaxon%3A1333511","Pseudoalteromonas haloplanktis TAB23"],["NCBITaxon%3A1333513","Pseudoalteromonas haloplanktis TAE56"]]},{"id":"NCBITaxon:257313","l":"Bordetella pertussis (strain Tohama I / ATCC BAA-589 / NCTC 13251)","na":10,"nb":1,"a":[["Pfam%3APF03440","Aerolysin/Pertussis toxin (APT) domain"],["Pfam%3APF07411","Domain of unknown function (DUF1508)"],["Pfam%3APF25988","CyaD, alpha-helical hairpin domain"],["Pfam%3APF03497","Anthrax toxin LF subunit"],["Pfam%3APF02537","CrcB-like protein, Camphor Resistance (CrcB)"],["Pfam%3APF16970","Type-1 fimbrial protein, A"]],"b":[["NCBITaxon%3A257313","Bordetella pertussis Tohama I"]]},{"id":"NCBITaxon:33959","l":"Lactobacillus johnsonii","na":1,"nb":10,"a":[["Pfam%3APF13518","Helix-turn-helix domain"]],"b":[["NCBITaxon%3A1596","Lactobacillus gasseri"],["NCBITaxon%3A33959","Lactobacillus johnsonii"],["NCBITaxon%3A572503","Lactobacillus johnsonii 135-1-CHN"],["NCBITaxon%3A1033983","Lactobacillus johnsonii 16"],["NCBITaxon%3A525330","Lactobacillus johnsonii ATCC 33200"],["NCBITaxon%3A909954","Lactobacillus johnsonii DPC 6026"]]},{"id":"NCBITaxon:345073","l":"Vibrio cholerae serotype O1 (strain ATCC 39541 / Classical Ogawa 395 / O395)","na":10,"nb":1,"a":[["IDPO%3A0000048","limited proteolysis display site"],["Pfam%3APF16671","Actin cross-linking domain"],["Pfam%3APF26759","AcfD helical domain"],["Pfam%3APF00165","Bacterial regulatory helix-turn-helix proteins, AraC family"],["Pfam%3APF08328","Adenylosuccinate lyase C-terminal"],["Pfam%3APF07208","Protein of unknown function (DUF1414)"]],"b":[["NCBITaxon%3A345073","Vibrio cholerae O395"]]},{"id":"NCBITaxon:38304","l":"Corynebacterium tuberculostearicum","na":1,"nb":10,"a":[["TED%3AAF-A0A7U0H937-F1-model_v4_TED01","TED novel fold AF-A0A7U0H937-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A38284","Corynebacterium accolens"],["NCBITaxon%3A1736004","Corynebacterium cf. tuberculostearicum 1237_CAUR"],["NCBITaxon%3A1736005","Corynebacterium cf. tuberculostearicum 620_CAUR"],["NCBITaxon%3A1736006","Corynebacterium cf. tuberculostearicum 911_CAUR"],["NCBITaxon%3A38287","Corynebacterium fastidiosum"],["NCBITaxon%3A1720","Corynebacterium sp."]]},{"id":"NCBITaxon:393305","l":"Yersinia enterocolitica serotype O:8 / biotype 1B (strain NCTC 13174 / 8081)","na":10,"nb":1,"a":[["Pfam%3APF22200","ExsA N-terminal regulatory domain"],["Pfam%3APF06826","Predicted Permease Membrane Region"],["Pfam%3APF03186","CobD/Cbib protein"],["Pfam%3APF11944","Protein of unknown function (DUF3461)"],["Pfam%3APF04363","Protein of unknown function (DUF496)"],["Pfam%3APF17551","Family of unknown function (DUF5463)"]],"b":[["NCBITaxon%3A393305","Yersinia enterocolitica subsp. enterocolitica 8081"]]},{"id":"NCBITaxon:955","l":"Wolbachia pipientis","na":1,"nb":10,"a":[["TED%3AAF-A0A6I5SYC0-F1-model_v4_TED01","TED novel fold AF-A0A6I5SYC0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A955","Wolbachia pipientis"],["NCBITaxon%3A1116230","Wolbachia pipientis wAlbB"],["NCBITaxon%3A2049495","Wolbachia pipientis wAus"],["NCBITaxon%3A1238452","Wolbachia pipientis wBol1-b"],["NCBITaxon%3A1379791","Wolbachia pipientis wMelCS"],["NCBITaxon%3A1317678","Wolbachia pipientis wMelPop"]]},{"id":"NCBITaxon:107806","l":"Buchnera aphidicola subsp. Acyrthosiphon pisum (strain APS)","na":9,"nb":1,"a":[["Pfam%3APF21157","DnaK suppressor protein DksA, N-terminal domain"],["Pfam%3APF21158","Flagellar hook-associated protein 1, D2-like domain"],["Pfam%3APF02955","Prokaryotic glutathione synthetase, ATP-grasp domain"],["Pfam%3APF02951","Prokaryotic glutathione synthetase, N-terminal domain"],["Pfam%3APF21500","DNA polymerase III subunit delta', AAA+ ATPase lid domain"],["Pfam%3APF14840","Processivity clamp loader gamma complex DNA pol III C-term"]],"b":[["NCBITaxon%3A107806","Buchnera aphidicola str. APS (Acyrthosiphon pisum)"]]},{"id":"NCBITaxon:1134687","l":"Klebsiella michiganensis","na":1,"nb":9,"a":[["TED%3AAF-A0A443W129-F1-model_v4_TED01","TED novel fold AF-A0A443W129-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1134687","Klebsiella michiganensis"],["NCBITaxon%3A1191061","Klebsiella michiganensis E718"],["NCBITaxon%3A1416754","Klebsiella michiganensis H1g"],["NCBITaxon%3A1308980","Klebsiella michiganensis HKOPL1"],["NCBITaxon%3A1006551","Klebsiella michiganensis KCTC 1686"],["NCBITaxon%3A290336","Klebsiella michiganensis M5al"]]},{"id":"NCBITaxon:1290","l":"Staphylococcus hominis","na":1,"nb":9,"a":[["TED%3AAF-A0A6N0I1N0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N0I1N0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1290","Staphylococcus hominis"],["NCBITaxon%3A629742","Staphylococcus hominis SK119"],["NCBITaxon%3A145391","Staphylococcus hominis subsp. hominis"],["NCBITaxon%3A435837","Staphylococcus hominis subsp. hominis C80"],["NCBITaxon%3A1185421","Staphylococcus hominis subsp. hominis ZBW5"],["NCBITaxon%3A145393","Staphylococcus hominis subsp. novobiosepticus"]]},{"id":"NCBITaxon:1604","l":"Lactobacillus amylovorus","na":1,"nb":9,"a":[["Pfam%3APF10439","Bacteriocin class II with double-glycine leader peptide"]],"b":[["NCBITaxon%3A1604","Lactobacillus amylovorus"],["NCBITaxon%3A1263084","Lactobacillus amylovorus CAG:719"],["NCBITaxon%3A1423723","Lactobacillus amylovorus DSM 20531"],["NCBITaxon%3A695562","Lactobacillus amylovorus GRL1118"],["NCBITaxon%3A695560","Lactobacillus amylovorus GRL 1112"],["NCBITaxon%3A695561","Lactobacillus amylovorus GRL 1115"]]},{"id":"NCBITaxon:1656","l":"Actinomyces viscosus","na":1,"nb":9,"a":[["Pfam%3APF16555","Gram-positive pilin subunit D1, N-terminal domain"]],"b":[["NCBITaxon%3A1655","Actinomyces naeslundii"],["NCBITaxon%3A544580","Actinomyces oris"],["NCBITaxon%3A29317","Actinomyces sp."],["NCBITaxon%3A3050227","Actinomyces stomatis"],["NCBITaxon%3A1656","Actinomyces viscosus"],["NCBITaxon%3A562973","Actinomyces viscosus C505"]]},{"id":"NCBITaxon:166","l":"Treponema sp.","na":9,"nb":1,"a":[["TED%3AAF-A0A351Z2H3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A351Z2H3-F1-model_v4_TED01"],["TED%3AAF-A0A356K0W2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A356K0W2-F1-model_v4_TED02"],["TED%3AAF-A0A3B8WTM6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3B8WTM6-F1-model_v4_TED02"],["TED%3AAF-A0A3C1HX51-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3C1HX51-F1-model_v4_TED03"],["TED%3AAF-A0A521IH80-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521IH80-F1-model_v4_TED01"],["TED%3AAF-A0A7X8IF67-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X8IF67-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A166","Treponema sp."]]},{"id":"NCBITaxon:1812935","l":"Enterobacter roggenkampii","na":1,"nb":9,"a":[["TED%3AAF-A0A7D6U4G9-F1-model_v4_TED01","TED novel fold AF-A0A7D6U4G9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A299767","Enterobacter ludwigii"],["NCBITaxon%3A1812935","Enterobacter roggenkampii"],["NCBITaxon%3A1439326","Enterobacter roggenkampii CHS 79"],["NCBITaxon%3A1334630","Enterobacter roggenkampii EC_38VIM1"],["NCBITaxon%3A1329832","Enterobacter roggenkampii MGH 34"]]},{"id":"NCBITaxon:1891238","l":"Burkholderiales bacterium","na":9,"nb":1,"a":[["TED%3AAF-A0A4Q3VEM9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q3VEM9-F1-model_v4_TED01"],["TED%3AAF-A0A4V1UPL0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4V1UPL0-F1-model_v4_TED01"],["TED%3AAF-A0A7X8XQ74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X8XQ74-F1-model_v4_TED01"],["TED%3AAF-A0A7X9AEE9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X9AEE9-F1-model_v4_TED01"],["TED%3AAF-A0A3N5GYF7-F1-model_v4_TED02","TED novel fold AF-A0A3N5GYF7-F1-model_v4_TED02"],["TED%3AAF-A0A417N833-F1-model_v4_TED02","TED novel fold AF-A0A417N833-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1891238","Burkholderiales bacterium"]]},{"id":"NCBITaxon:1891241","l":"Betaproteobacteria bacterium","na":9,"nb":1,"a":[["TED%3AAF-A0A2U1RVU7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U1RVU7-F1-model_v4_TED01"],["TED%3AAF-A0A536T3L4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A536T3L4-F1-model_v4_TED01"],["TED%3AAF-A0A537ATD3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A537ATD3-F1-model_v4_TED01"],["TED%3AAF-A0A3D0EVD4-F1-model_v4_TED01","TED novel fold AF-A0A3D0EVD4-F1-model_v4_TED01"],["TED%3AAF-A0A521VEK6-F1-model_v4_TED02","TED novel fold AF-A0A521VEK6-F1-model_v4_TED02"],["TED%3AAF-A0A536S5A6-F1-model_v4_TED01","TED novel fold AF-A0A536S5A6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1891241","Betaproteobacteria bacterium"]]},{"id":"NCBITaxon:1930","l":"Streptomyces scabiei","na":1,"nb":9,"a":[["TED%3AAF-A0A086GLG9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A086GLG9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2993540","Streptomyces griseiscabiei"],["NCBITaxon%3A1930","Streptomyces scabiei"],["NCBITaxon%3A680198","Streptomyces scabiei 87.22"],["NCBITaxon%3A175280","Streptomyces scabiei subsp. chosun"],["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A74595","Streptomyces sp. ATCC 10246"]]},{"id":"NCBITaxon:195102","l":"Clostridium perfringens (strain 13 / Type A)","na":9,"nb":1,"a":[["Pfam%3APF00963","Cohesin domain"],["Pfam%3APF07085","DRTGG domain"],["Pfam%3APF07554","FIVAR domain"],["Pfam%3APF02329","Histidine carboxylase PI chain"],["PROSITE%3APS00384","Prokaryotic zinc-dependent phospholipase C signature"],["PROSITE%3APS00397","Site-specific recombinases active site"]],"b":[["NCBITaxon%3A195102","Clostridium perfringens str. 13"]]},{"id":"NCBITaxon:2026771","l":"Opitutae bacterium","na":9,"nb":1,"a":[["TED%3AAF-A0A351FCU9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A351FCU9-F1-model_v4_TED02"],["TED%3AAF-A0A3B9FK87-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B9FK87-F1-model_v4_TED01"],["TED%3AAF-A0A3B9FQG1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B9FQG1-F1-model_v4_TED01"],["TED%3AAF-A0A2E7HLG5-F1-model_v4_TED01","TED novel fold AF-A0A2E7HLG5-F1-model_v4_TED01"],["TED%3AAF-A0A2E8A986-F1-model_v4_TED03","TED novel fold AF-A0A2E8A986-F1-model_v4_TED03"],["TED%3AAF-A0A388PNP3-F1-model_v4_TED01","TED novel fold AF-A0A388PNP3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026771","Opitutia bacterium"]]},{"id":"NCBITaxon:2026790","l":"Saprospirales bacterium","na":9,"nb":1,"a":[["TED%3AAF-A0A2E0VPV1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0VPV1-F1-model_v4_TED01"],["TED%3AAF-A0A350C3R5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A350C3R5-F1-model_v4_TED02"],["TED%3AAF-A0A3B9AIU7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B9AIU7-F1-model_v4_TED01"],["TED%3AAF-A0A3B9AQT4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B9AQT4-F1-model_v4_TED01"],["TED%3AAF-A0A3C2EH16-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A3C2EH16-F1-model_v4_TED06"],["TED%3AAF-A0A350I6X8-F1-model_v4_TED05","TED novel fold AF-A0A350I6X8-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2026790","Saprospirales bacterium"]]},{"id":"NCBITaxon:2035772","l":"Omnitrophica bacterium","na":9,"nb":1,"a":[["TED%3AAF-A0A357BHW2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A357BHW2-F1-model_v4_TED03"],["TED%3AAF-A0A3A4NVP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A4NVP7-F1-model_v4_TED01"],["TED%3AAF-A0A3C0MWJ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C0MWJ7-F1-model_v4_TED01"],["TED%3AAF-A0A496RGI7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A496RGI7-F1-model_v4_TED01"],["TED%3AAF-A0A496RSP3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A496RSP3-F1-model_v4_TED01"],["TED%3AAF-A0A496RUZ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A496RUZ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2035772","Candidatus Omnitrophota bacterium"]]},{"id":"NCBITaxon:2044944","l":"Sphingobacteriales bacterium","na":9,"nb":1,"a":[["TED%3AAF-A0A4Q3BJJ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q3BJJ3-F1-model_v4_TED01"],["TED%3AAF-A0A4Q3CF66-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A4Q3CF66-F1-model_v4_TED03"],["TED%3AAF-A0A4Q3D751-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Q3D751-F1-model_v4_TED02"],["TED%3AAF-A0A4Q5Y1T8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Q5Y1T8-F1-model_v4_TED02"],["TED%3AAF-A0A431MVU6-F1-model_v4_TED01","TED novel fold AF-A0A431MVU6-F1-model_v4_TED01"],["TED%3AAF-A0A4Q3CE48-F1-model_v4_TED01","TED novel fold AF-A0A4Q3CE48-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2044944","Sphingobacteriales bacterium"]]},{"id":"NCBITaxon:2052149","l":"Candidatus Aminicenantes bacterium","na":9,"nb":1,"a":[["TED%3AAF-A0A2N7QEI2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N7QEI2-F1-model_v4_TED02"],["TED%3AAF-A0A524GLZ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A524GLZ8-F1-model_v4_TED01"],["TED%3AAF-A0A7C3RQU7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C3RQU7-F1-model_v4_TED01"],["TED%3AAF-A0A7V3A5N9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V3A5N9-F1-model_v4_TED01"],["TED%3AAF-A0A523X3I9-F1-model_v4_TED02","TED novel fold AF-A0A523X3I9-F1-model_v4_TED02"],["TED%3AAF-A0A7C1LTD6-F1-model_v4_TED01","TED novel fold AF-A0A7C1LTD6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052149","Candidatus Aminicenantota bacterium"]]},{"id":"NCBITaxon:2053527","l":"candidate division Zixibacteria bacterium","na":9,"nb":1,"a":[["TED%3AAF-A0A523YRI5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A523YRI5-F1-model_v4_TED01"],["TED%3AAF-A0A660PDK1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A660PDK1-F1-model_v4_TED01"],["TED%3AAF-A0A660PEZ7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A660PEZ7-F1-model_v4_TED02"],["TED%3AAF-A0A7V2EMC0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7V2EMC0-F1-model_v4_TED02"],["TED%3AAF-A0A7X9FDL7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X9FDL7-F1-model_v4_TED01"],["TED%3AAF-A0A7C1EL72-F1-model_v4_TED01","TED novel fold AF-A0A7C1EL72-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053527","Candidatus Zixiibacteriota bacterium"]]},{"id":"NCBITaxon:2053541","l":"Cytophagales bacterium","na":9,"nb":1,"a":[["TED%3AAF-A0A3B8I2I4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B8I2I4-F1-model_v4_TED01"],["TED%3AAF-A0A3B8IB95-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B8IB95-F1-model_v4_TED01"],["TED%3AAF-A0A3D4IR98-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3D4IR98-F1-model_v4_TED03"],["TED%3AAF-A0A3D5KMW2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D5KMW2-F1-model_v4_TED01"],["TED%3AAF-A0A3B8HZ12-F1-model_v4_TED05","TED novel fold AF-A0A3B8HZ12-F1-model_v4_TED05"],["TED%3AAF-A0A3B8IGB2-F1-model_v4_TED01","TED novel fold AF-A0A3B8IGB2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053541","Cytophagales bacterium"]]},{"id":"NCBITaxon:214853","l":"Anaerofustis stercorihominis","na":1,"nb":9,"a":[["TED%3AAF-A0A3E3E141-F1-model_v4_TED03","TED novel fold AF-A0A3E3E141-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A214853","Anaerofustis stercorihominis"],["NCBITaxon%3A445971","Anaerofustis stercorihominis DSM 17244"],["NCBITaxon%3A1338830","Anaerofustis stercorihominis TSDC10.1-1.1"],["NCBITaxon%3A1338831","Anaerofustis stercorihominis TSDC19.1-1.1"],["NCBITaxon%3A1338832","Anaerofustis stercorihominis TSDC20.1-1.1"],["NCBITaxon%3A1338833","Anaerofustis stercorihominis TSDC20.2-1.1"]]},{"id":"NCBITaxon:2172550","l":"candidate division KSB1 bacterium","na":9,"nb":1,"a":[["TED%3AAF-A0A3N5JNL5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N5JNL5-F1-model_v4_TED01"],["TED%3AAF-A0A496T630-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A496T630-F1-model_v4_TED04"],["TED%3AAF-A0A496TFB5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A496TFB5-F1-model_v4_TED02"],["TED%3AAF-A0A660YQ78-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A660YQ78-F1-model_v4_TED01"],["TED%3AAF-A0A660YNR3-F1-model_v4_TED01","TED novel fold AF-A0A660YNR3-F1-model_v4_TED01"],["TED%3AAF-A0A7Y5G412-F1-model_v4_TED01","TED novel fold AF-A0A7Y5G412-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2172550","Candidatus Zhuqueibacterota bacterium"]]},{"id":"NCBITaxon:2208","l":"Methanosarcina barkeri","na":1,"nb":9,"a":[["Pfam%3APF09505","Dimethylamine methyltransferase (Dimeth_PyL)"]],"b":[["NCBITaxon%3A2208","Methanosarcina barkeri"],["NCBITaxon%3A1434106","Methanosarcina barkeri 227"],["NCBITaxon%3A1434107","Methanosarcina barkeri 3"],["NCBITaxon%3A796385","Methanosarcina barkeri CM1"],["NCBITaxon%3A1298606","Methanosarcina barkeri JCM 10043"],["NCBITaxon%3A1434108","Methanosarcina barkeri MS"]]},{"id":"NCBITaxon:235443","l":"Cryptococcus neoformans (strain H99 / ATCC 208821 / CBS 10515 / FGSC 9487)","na":9,"nb":1,"a":[["Pfam%3APF20238","Copper acquisition factor BIM1-like"],["Pfam%3APF27979","CON7 transcription factor helical domain"],["Pfam%3APF21671","Protein CPL1-like"],["Pfam%3APF06280","Fn3-like domain"],["Pfam%3APF14613","HAM1-like, C-terminal domain"],["Pfam%3APF19343","HAM1-like, N-terminal domain"]],"b":[["NCBITaxon%3A235443","Cryptococcus neoformans H99"]]},{"id":"NCBITaxon:272944","l":"Rickettsia conorii (strain ATCC VR-613 / Malish 7)","na":9,"nb":1,"a":[["Pfam%3APF11020","Domain of unknown function (DUF2610)"],["Pfam%3APF18640","LepB N-terminal domain"],["Pfam%3APF10878","Protein of unknown function (DUF2672)"],["Pfam%3APF10871","Protein of unknown function (DUF2748)"],["Pfam%3APF17372","Family of unknown function (DUF5394)"],["Pfam%3APF17462","Family of unknown function (DUF5424)"]],"b":[["NCBITaxon%3A272944","Rickettsia conorii str. Malish 7"]]},{"id":"NCBITaxon:282458","l":"Staphylococcus aureus (strain MRSA252)","na":9,"nb":1,"a":[["Pfam%3APF13166","AAA domain"],["Pfam%3APF18927","Glycosyl-4,4'-diaponeurosporenoate acyltransferase"],["Pfam%3APF22694","Activating protease CtpB N-terminal domain"],["Pfam%3APF04507","Csa1 family"],["Pfam%3APF12008","Type I restriction and modification enzyme - subunit R C terminal"],["Pfam%3APF05372","Delta lysin family"]],"b":[["NCBITaxon%3A282458","Staphylococcus aureus subsp. aureus MRSA252"]]},{"id":"NCBITaxon:2903","l":"Emiliania huxleyi","na":9,"nb":1,"a":[["TED%3AAF-A0A7S3RZJ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3RZJ4-F1-model_v4_TED01"],["TED%3AAF-A0A7S3W933-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3W933-F1-model_v4_TED01"],["TED%3AAF-A0A7S3W9Q3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3W9Q3-F1-model_v4_TED01"],["TED%3AAF-R1DPG1-F1-model_v4_TED01","TED highly-symmetric fold AF-R1DPG1-F1-model_v4_TED01"],["TED%3AAF-A0A7S3TQB6-F1-model_v4_TED02","TED novel fold AF-A0A7S3TQB6-F1-model_v4_TED02"],["TED%3AAF-R1BEB4-F1-model_v4_TED01","TED novel fold AF-R1BEB4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2903","Emiliania huxleyi"]]},{"id":"NCBITaxon:298","l":"Pseudomonas marginalis","na":1,"nb":9,"a":[["PROSITE%3APS00330","Hemolysin-type calcium-binding region signature"]],"b":[["NCBITaxon%3A129847","Pseudomonas grimontii"],["NCBITaxon%3A298","Pseudomonas marginalis"],["NCBITaxon%3A1198318","Pseudomonas marginalis ICMP 11289"],["NCBITaxon%3A1198317","Pseudomonas marginalis ICMP 9505"],["NCBITaxon%3A69646","Pseudomonas marginalis pv. alfalfae"],["NCBITaxon%3A97473","Pseudomonas marginalis pv. marginalis"]]},{"id":"NCBITaxon:32019","l":"Campylobacter fetus subsp. fetus","na":1,"nb":9,"a":[["TED%3AAF-A0A0S4SB94-F1-model_v4_TED05","TED novel fold AF-A0A0S4SB94-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A196","Campylobacter fetus"],["NCBITaxon%3A32019","Campylobacter fetus subsp. fetus"],["NCBITaxon%3A1240980","Campylobacter fetus subsp. fetus 04/554"],["NCBITaxon%3A360106","Campylobacter fetus subsp. fetus 82-40"],["NCBITaxon%3A1273268","Campylobacter fetus subsp. fetus BT 10/98"],["NCBITaxon%3A1273130","Campylobacter fetus subsp. fetus cff110800-21-2"]]},{"id":"NCBITaxon:354242","l":"Campylobacter jejuni subsp. jejuni 81-176","na":1,"nb":9,"a":[["PROSITE%3APS01300","RecR protein signature"]],"b":[["NCBITaxon%3A354242","Campylobacter jejuni subsp. jejuni 81-176"],["NCBITaxon%3A1368608","Campylobacter jejuni subsp. jejuni 81-176-55"],["NCBITaxon%3A1368609","Campylobacter jejuni subsp. jejuni 81-176-55-O1"],["NCBITaxon%3A1368610","Campylobacter jejuni subsp. jejuni 81-176-55-O3"],["NCBITaxon%3A1368611","Campylobacter jejuni subsp. jejuni 81-176-55-T1"],["NCBITaxon%3A1368612","Campylobacter jejuni subsp. jejuni 81-176-55-T3"]]},{"id":"NCBITaxon:359391","l":"Brucella abortus (strain 2308)","na":9,"nb":1,"a":[["Pfam%3APF13444","Acetyltransferase (GNAT) domain"],["Pfam%3APF10090","Histidine phosphotransferase C-terminal domain"],["Pfam%3APF07536","HWE histidine kinase"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF07886","BA14K-like protein"],["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"]],"b":[["NCBITaxon%3A359391","Brucella abortus 2308"]]},{"id":"NCBITaxon:40215","l":"Acinetobacter junii","na":1,"nb":9,"a":[["TED%3AAF-A0A8B4RWB2-F1-model_v4_TED01","TED novel fold AF-A0A8B4RWB2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A471","Acinetobacter calcoaceticus"],["NCBITaxon%3A40215","Acinetobacter junii"],["NCBITaxon%3A1217666","Acinetobacter junii CIP 107470 = MTCC 11364"],["NCBITaxon%3A1217664","Acinetobacter junii CIP 64.5"],["NCBITaxon%3A1217665","Acinetobacter junii NIPH 182"],["NCBITaxon%3A575587","Acinetobacter junii SH205"]]},{"id":"NCBITaxon:405955","l":"Escherichia coli O1:K1 / APEC","na":9,"nb":1,"a":[["Pfam%3APF07417","Sigma factor-binding transcriptional regulator Crl"],["Pfam%3APF10807","Domain of unknown function (DUF2541)"],["Pfam%3APF25878","pHBA AAEA subunit, alpha-helical hairpin domain"],["Pfam%3APF10796","Sigma-S stabilisation anti-adaptor protein"],["Pfam%3APF06693","Protein of unknown function (DUF1190)"],["Pfam%3APF06932","Protein of unknown function (DUF1283)"]],"b":[["NCBITaxon%3A405955","Escherichia coli APEC O1"]]},{"id":"NCBITaxon:451708","l":"Bacillus cereus (strain H3081.97)","na":9,"nb":1,"a":[["Pfam%3APF25796","BREX ATP-binding protein BrxC 4th domain with six-stranded beta sheet"],["Pfam%3APF25792","BREX ATP-binding protein BrxC alpha helical domain"],["Pfam%3APF08747","BREX protein BrxB"],["Pfam%3APF27212","BrxC seventh domain"],["Pfam%3APF27153","BrxC C-terminal alpha-beta domain"],["Pfam%3APF19557","BrxC/PglY, N-terminal domain"]],"b":[["NCBITaxon%3A451708","Bacillus cereus H3081.97"]]},{"id":"NCBITaxon:5963","l":"Stentor coeruleus","na":9,"nb":1,"a":[["TED%3AAF-A0A1R2B826-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1R2B826-F1-model_v4_TED03"],["TED%3AAF-A0A1R2BGQ2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1R2BGQ2-F1-model_v4_TED02"],["TED%3AAF-A0A1R2CI53-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1R2CI53-F1-model_v4_TED01"],["TED%3AAF-A0A1R2CKY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1R2CKY6-F1-model_v4_TED01"],["TED%3AAF-A0A1R2BD98-F1-model_v4_TED03","TED novel fold AF-A0A1R2BD98-F1-model_v4_TED03"],["TED%3AAF-A0A1R2BHU7-F1-model_v4_TED01","TED novel fold AF-A0A1R2BHU7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5963","Stentor coeruleus"]]},{"id":"NCBITaxon:729","l":"Haemophilus parainfluenzae","na":1,"nb":9,"a":[["Pfam%3APF04480","Protein of unknown function (DUF559)"]],"b":[["NCBITaxon%3A732","Aggregatibacter aphrophilus"],["NCBITaxon%3A726","Haemophilus haemolyticus"],["NCBITaxon%3A729","Haemophilus parainfluenzae"],["NCBITaxon%3A888828","Haemophilus parainfluenzae ATCC 33392"],["NCBITaxon%3A1095746","Haemophilus parainfluenzae HK2019"],["NCBITaxon%3A1095745","Haemophilus parainfluenzae HK262"]]},{"id":"NCBITaxon:96241","l":"Bacillus spizizenii","na":1,"nb":9,"a":[["Pfam%3APF05952","Bacillus competence pheromone ComX"]],"b":[["NCBITaxon%3A96241","Bacillus spizizenii"],["NCBITaxon%3A703612","Bacillus spizizenii ATCC 6633 = JCM 2499"],["NCBITaxon%3A1051503","Bacillus spizizenii DV1-B-1"],["NCBITaxon%3A932006","Bacillus spizizenii RFWG1A3"],["NCBITaxon%3A932005","Bacillus spizizenii RFWG1A4"],["NCBITaxon%3A932007","Bacillus spizizenii RFWG4C10"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":1,"nb":8,"a":[["TED%3AAF-A0A367PA30-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A367PA30-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A119219","Cupriavidus metallidurans"],["NCBITaxon%3A106590","Cupriavidus necator"],["NCBITaxon%3A1304882","Cupriavidus necator A5-1"],["NCBITaxon%3A381666","Cupriavidus necator H16"],["NCBITaxon%3A53482","Cupriavidus necator H850"],["NCBITaxon%3A1042878","Cupriavidus necator N-1"]]},{"id":"NCBITaxon:1261","l":"Peptostreptococcus anaerobius","na":1,"nb":8,"a":[["TED%3AAF-A0A379CE26-F1-model_v4_TED01","TED novel fold AF-A0A379CE26-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1944660","Parvimonas sp."],["NCBITaxon%3A1261","Peptostreptococcus anaerobius"],["NCBITaxon%3A596329","Peptostreptococcus anaerobius 653-L"],["NCBITaxon%3A1263100","Peptostreptococcus anaerobius CAG:621"],["NCBITaxon%3A1073365","Peptostreptococcus anaerobius CC14N"],["NCBITaxon%3A1035196","Peptostreptococcus anaerobius VPI 4330 = DSM 2949"]]},{"id":"NCBITaxon:127549","l":"Calcidiscus leptoporus","na":8,"nb":1,"a":[["TED%3AAF-A0A7S0INC1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S0INC1-F1-model_v4_TED02"],["TED%3AAF-A0A7S0IYC3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0IYC3-F1-model_v4_TED01"],["TED%3AAF-A0A7S0JEV1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0JEV1-F1-model_v4_TED01"],["TED%3AAF-A0A7S0NTQ4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S0NTQ4-F1-model_v4_TED03"],["TED%3AAF-A0A7S0ITZ3-F1-model_v4_TED01","TED novel fold AF-A0A7S0ITZ3-F1-model_v4_TED01"],["TED%3AAF-A0A7S0IVK3-F1-model_v4_TED02","TED novel fold AF-A0A7S0IVK3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A127549","Calcidiscus leptoporus"]]},{"id":"NCBITaxon:13689","l":"Sphingomonas paucimobilis","na":1,"nb":8,"a":[["PROSITE%3APS00082","Extradiol ring-cleavage dioxygenases signature"]],"b":[["NCBITaxon%3A178355","Flavobacterium omnivorum"],["NCBITaxon%3A1404341","Sphingobium scionense"],["NCBITaxon%3A13689","Sphingomonas paucimobilis"],["NCBITaxon%3A1219050","Sphingomonas paucimobilis NBRC 13935"],["NCBITaxon%3A33051","Sphingomonas sanguinis"],["NCBITaxon%3A1219054","Sphingomonas sanguinis NBRC 13937"]]},{"id":"NCBITaxon:1487602","l":"Vannella robusta","na":8,"nb":1,"a":[["TED%3AAF-A0A7S4HGW0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4HGW0-F1-model_v4_TED01"],["TED%3AAF-A0A7S4I8J6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4I8J6-F1-model_v4_TED01"],["TED%3AAF-A0A7S4M3M8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S4M3M8-F1-model_v4_TED03"],["TED%3AAF-A0A7S4MDY9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S4MDY9-F1-model_v4_TED02"],["TED%3AAF-A0A7S4HLW6-F1-model_v4_TED01","TED novel fold AF-A0A7S4HLW6-F1-model_v4_TED01"],["TED%3AAF-A0A7S4IBF0-F1-model_v4_TED02","TED novel fold AF-A0A7S4IBF0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1487602","Vannella robusta"]]},{"id":"NCBITaxon:1490","l":"Paraclostridium bifermentans","na":1,"nb":8,"a":[["TED%3AAF-A0A5P3XDT9-F1-model_v4_TED01","TED novel fold AF-A0A5P3XDT9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1490","Paraclostridium bifermentans"],["NCBITaxon%3A1233170","Paraclostridium bifermentans ATCC 19299"],["NCBITaxon%3A1233171","Paraclostridium bifermentans ATCC 638 = DSM 14991"],["NCBITaxon%3A1357385","Paraclostridium bifermentans NI48_6"],["NCBITaxon%3A2663174","Paraclostridium bifermentans subsp. bifermentans"],["NCBITaxon%3A2663173","Paraclostridium bifermentans subsp. muricolitidis"]]},{"id":"NCBITaxon:1519565","l":"Fistulifera solaris","na":8,"nb":1,"a":[["TED%3AAF-A0A1Z5KJL4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z5KJL4-F1-model_v4_TED01"],["TED%3AAF-A0A1Z5JER3-F1-model_v4_TED01","TED novel fold AF-A0A1Z5JER3-F1-model_v4_TED01"],["TED%3AAF-A0A1Z5JX70-F1-model_v4_TED01","TED novel fold AF-A0A1Z5JX70-F1-model_v4_TED01"],["TED%3AAF-A0A1Z5K129-F1-model_v4_TED03","TED novel fold AF-A0A1Z5K129-F1-model_v4_TED03"],["TED%3AAF-A0A1Z5K6R2-F1-model_v4_TED02","TED novel fold AF-A0A1Z5K6R2-F1-model_v4_TED02"],["TED%3AAF-A0A1Z5KAG5-F1-model_v4_TED02","TED novel fold AF-A0A1Z5KAG5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1519565","Fistulifera solaris"]]},{"id":"NCBITaxon:155615","l":"Fusobacterium vincentii","na":1,"nb":8,"a":[["TED%3AAF-A0A2D3JJJ5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D3JJJ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A851","Fusobacterium nucleatum"],["NCBITaxon%3A155615","Fusobacterium vincentii"],["NCBITaxon%3A469602","Fusobacterium vincentii 3_1_27"],["NCBITaxon%3A469604","Fusobacterium vincentii 3_1_36A2"],["NCBITaxon%3A469606","Fusobacterium vincentii 4_1_13"],["NCBITaxon%3A209882","Fusobacterium vincentii ATCC 49256"]]},{"id":"NCBITaxon:156174","l":"Haptolina ericina","na":8,"nb":1,"a":[["TED%3AAF-A0A6T9BHX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6T9BHX2-F1-model_v4_TED01"],["TED%3AAF-A0A7S3AM90-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S3AM90-F1-model_v4_TED02"],["TED%3AAF-A0A7S3BLC7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3BLC7-F1-model_v4_TED01"],["TED%3AAF-A0A7S3FK24-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3FK24-F1-model_v4_TED01"],["TED%3AAF-A0A7S3FK24-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S3FK24-F1-model_v4_TED02"],["TED%3AAF-A0A7S3AD30-F1-model_v4_TED01","TED novel fold AF-A0A7S3AD30-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A156174","Haptolina ericina"]]},{"id":"NCBITaxon:163516","l":"Leptocylindrus danicus","na":8,"nb":1,"a":[["TED%3AAF-A0A7S2K456-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2K456-F1-model_v4_TED01"],["TED%3AAF-A0A7S2K4C3-F1-model_v4_TED03","TED novel fold AF-A0A7S2K4C3-F1-model_v4_TED03"],["TED%3AAF-A0A7S2K9T3-F1-model_v4_TED02","TED novel fold AF-A0A7S2K9T3-F1-model_v4_TED02"],["TED%3AAF-A0A7S2KEQ3-F1-model_v4_TED02","TED novel fold AF-A0A7S2KEQ3-F1-model_v4_TED02"],["TED%3AAF-A0A7S2LA27-F1-model_v4_TED01","TED novel fold AF-A0A7S2LA27-F1-model_v4_TED01"],["TED%3AAF-A0A7S2NST6-F1-model_v4_TED02","TED novel fold AF-A0A7S2NST6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A163516","Leptocylindrus danicus"]]},{"id":"NCBITaxon:183190","l":"Xylella fastidiosa (strain Temecula1 / ATCC 700964)","na":8,"nb":1,"a":[["Pfam%3APF21142","Bacterial alpha-2 macroglobulin MG2 domain"],["Pfam%3APF04273","Beta-lactamase hydrolase-like protein, phosphatase-like domain"],["Pfam%3APF17970","Bacterial Alpha-2-macroglobulin MG1 domain"],["Pfam%3APF17973","Bacterial Alpha-2-macroglobulin MG10 domain"],["Pfam%3APF11974","Bacterial alpha-2-macroglobulin MG3 domain"],["Pfam%3APF17972","Bacterial Alpha-2-macroglobulin MG5 domain"]],"b":[["NCBITaxon%3A183190","Xylella fastidiosa Temecula1"]]},{"id":"NCBITaxon:1898112","l":"Rhodospirillaceae bacterium","na":8,"nb":1,"a":[["TED%3AAF-A0A2E2MMI2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E2MMI2-F1-model_v4_TED01"],["TED%3AAF-A0A2E7PH74-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E7PH74-F1-model_v4_TED02"],["TED%3AAF-A0A2G4IIC6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G4IIC6-F1-model_v4_TED01"],["TED%3AAF-A0A2G4IN46-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G4IN46-F1-model_v4_TED01"],["TED%3AAF-A0A353X848-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A353X848-F1-model_v4_TED03"],["TED%3AAF-A0A3D3V9F8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D3V9F8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1898112","Rhodospirillaceae bacterium"]]},{"id":"NCBITaxon:1898206","l":"Spirochaetaceae bacterium","na":8,"nb":1,"a":[["TED%3AAF-A0A2E8PS22-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E8PS22-F1-model_v4_TED01"],["TED%3AAF-A0A2E9Q6U7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2E9Q6U7-F1-model_v4_TED03"],["TED%3AAF-A0A3B9GEQ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B9GEQ8-F1-model_v4_TED01"],["TED%3AAF-A0A3B9GF21-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3B9GF21-F1-model_v4_TED02"],["TED%3AAF-A0A3N5U8M9-F1-model_v4_TED01","TED novel fold AF-A0A3N5U8M9-F1-model_v4_TED01"],["TED%3AAF-A0A525BZN2-F1-model_v4_TED01","TED novel fold AF-A0A525BZN2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1898206","Spirochaetaceae bacterium"]]},{"id":"NCBITaxon:1899355","l":"Oceanospirillaceae bacterium","na":8,"nb":1,"a":[["TED%3AAF-A0A2E2IFM2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E2IFM2-F1-model_v4_TED01"],["TED%3AAF-A0A2E7EAQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E7EAQ3-F1-model_v4_TED01"],["TED%3AAF-A0A2E7JE34-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E7JE34-F1-model_v4_TED01"],["TED%3AAF-A0A352R0R2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A352R0R2-F1-model_v4_TED01"],["TED%3AAF-A0A2D5PA45-F1-model_v4_TED01","TED novel fold AF-A0A2D5PA45-F1-model_v4_TED01"],["TED%3AAF-A0A2D5PBR3-F1-model_v4_TED05","TED novel fold AF-A0A2D5PBR3-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1899355","Oceanospirillaceae bacterium"]]},{"id":"NCBITaxon:2026777","l":"Phycisphaeraceae bacterium","na":8,"nb":1,"a":[["TED%3AAF-A0A2D5ZBA1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D5ZBA1-F1-model_v4_TED01"],["TED%3AAF-A0A2D5Z3V1-F1-model_v4_TED01","TED novel fold AF-A0A2D5Z3V1-F1-model_v4_TED01"],["TED%3AAF-A0A2E2B811-F1-model_v4_TED01","TED novel fold AF-A0A2E2B811-F1-model_v4_TED01"],["TED%3AAF-A0A2E5G3N3-F1-model_v4_TED01","TED novel fold AF-A0A2E5G3N3-F1-model_v4_TED01"],["TED%3AAF-A0A2E5G721-F1-model_v4_TED01","TED novel fold AF-A0A2E5G721-F1-model_v4_TED01"],["TED%3AAF-A0A5Q4ENV4-F1-model_v4_TED01","TED novel fold AF-A0A5Q4ENV4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026777","Phycisphaeraceae bacterium"]]},{"id":"NCBITaxon:2212470","l":"Eisenbacteria bacterium","na":8,"nb":1,"a":[["TED%3AAF-A0A538TQM9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A538TQM9-F1-model_v4_TED02"],["TED%3AAF-A0A538TUC4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A538TUC4-F1-model_v4_TED02"],["TED%3AAF-A0A538U1H5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A538U1H5-F1-model_v4_TED03"],["TED%3AAF-A0A7Y2E941-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y2E941-F1-model_v4_TED01"],["TED%3AAF-A0A7Y2EA43-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y2EA43-F1-model_v4_TED01"],["TED%3AAF-A0A7Y2EAQ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y2EAQ1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2212470","Candidatus Eiseniibacteriota bacterium"]]},{"id":"NCBITaxon:2250255","l":"Methanosarcinales archaeon","na":8,"nb":1,"a":[["TED%3AAF-A0A662QZ99-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A662QZ99-F1-model_v4_TED02"],["TED%3AAF-A0A7C0VQZ1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7C0VQZ1-F1-model_v4_TED03"],["TED%3AAF-A0A822JF34-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A822JF34-F1-model_v4_TED01"],["TED%3AAF-A0A843CE04-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843CE04-F1-model_v4_TED01"],["TED%3AAF-A0A849PQJ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A849PQJ3-F1-model_v4_TED01"],["TED%3AAF-A0A497ITN9-F1-model_v4_TED01","TED novel fold AF-A0A497ITN9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2250255","Methanosarcinales archaeon"]]},{"id":"NCBITaxon:230985","l":"Symbiodinium sp. KB8","na":8,"nb":1,"a":[["TED%3AAF-A0A812NTD9-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A812NTD9-F1-model_v4_TED04"],["TED%3AAF-A0A812VMU1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812VMU1-F1-model_v4_TED01"],["TED%3AAF-A0A813BWY4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A813BWY4-F1-model_v4_TED02"],["TED%3AAF-A0A813CFP1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A813CFP1-F1-model_v4_TED01"],["TED%3AAF-A0A813CJY8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A813CJY8-F1-model_v4_TED02"],["TED%3AAF-A0A812LNA9-F1-model_v4_TED01","TED novel fold AF-A0A812LNA9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A230985","Symbiodinium sp. KB8"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK1622","na":8,"nb":1,"a":[["Pfam%3APF27281","DevT C-terminal domain"],["Pfam%3APF27372","DevT N-terminal domain"],["Pfam%3APF17762","ParB HTH domain"],["Pfam%3APF01930","Domain of unknown function DUF83"],["Pfam%3APF09559","Cas6 Crispr"],["Pfam%3APF01905","CRISPR-associated negative auto-regulator DevR/Csa2"]],"b":[["NCBITaxon%3A246197","Myxococcus xanthus DK 1622"]]},{"id":"NCBITaxon:2482794","l":"Desulfurellales bacterium","na":8,"nb":1,"a":[["TED%3AAF-A0A5C7P4X7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7P4X7-F1-model_v4_TED01"],["TED%3AAF-A0A5C7P5L0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7P5L0-F1-model_v4_TED01"],["TED%3AAF-A0A5C7P6G5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5C7P6G5-F1-model_v4_TED02"],["TED%3AAF-A0A5C7PE00-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7PE00-F1-model_v4_TED01"],["TED%3AAF-A0A5C7PN44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7PN44-F1-model_v4_TED01"],["TED%3AAF-A0A5C7Q1Z9-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A5C7Q1Z9-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2482794","Desulfurellales bacterium"]]},{"id":"NCBITaxon:265563","l":"Odontella aurita","na":8,"nb":1,"a":[["TED%3AAF-A0A7S4IRF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4IRF4-F1-model_v4_TED01"],["TED%3AAF-A0A7S4J6G7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4J6G7-F1-model_v4_TED01"],["TED%3AAF-A0A7S4JEH1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4JEH1-F1-model_v4_TED01"],["TED%3AAF-A0A7S4K4L9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4K4L9-F1-model_v4_TED01"],["TED%3AAF-A0A7S4IH07-F1-model_v4_TED01","TED novel fold AF-A0A7S4IH07-F1-model_v4_TED01"],["TED%3AAF-A0A7S4JR13-F1-model_v4_TED02","TED novel fold AF-A0A7S4JR13-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A265563","Odontella aurita"]]},{"id":"NCBITaxon:28038","l":"Latilactobacillus curvatus","na":1,"nb":8,"a":[["TED%3AAF-A0A3R5XZN9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3R5XZN9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A418199","Lactobacillus sp. JCM 7527"],["NCBITaxon%3A28038","Latilactobacillus curvatus"],["NCBITaxon%3A1074451","Latilactobacillus curvatus CRL 705"],["NCBITaxon%3A1357401","Latilactobacillus curvatus F16_9"],["NCBITaxon%3A1293592","Latilactobacillus curvatus JCM 1096 = DSM 20019"],["NCBITaxon%3A1318630","Latilactobacillus curvatus WSU1"]]},{"id":"NCBITaxon:29508","l":"Leptospira meyeri","na":1,"nb":8,"a":[["TED%3AAF-A0A5F2D179-F1-model_v4_TED01","TED novel fold AF-A0A5F2D179-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29508","Leptospira meyeri"],["NCBITaxon%3A293077","Leptospira meyeri serovar Hardjo"],["NCBITaxon%3A1193051","Leptospira meyeri serovar Hardjo str. Went 5"],["NCBITaxon%3A293064","Leptospira meyeri serovar Ranarum"],["NCBITaxon%3A293080","Leptospira meyeri serovar Semaranga"],["NCBITaxon%3A1218585","Leptospira meyeri serovar Semaranga str. Veldrot Semarang 173"]]},{"id":"NCBITaxon:300","l":"Ectopseudomonas mendocina","na":1,"nb":8,"a":[["TED%3AAF-A0A550EU84-F1-model_v4_TED01","TED novel fold AF-A0A550EU84-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A300","Ectopseudomonas mendocina"],["NCBITaxon%3A1197721","Ectopseudomonas mendocina DLHK"],["NCBITaxon%3A1390370","Ectopseudomonas mendocina EGD-AQ5"],["NCBITaxon%3A1215108","Ectopseudomonas mendocina NBRC 14162"],["NCBITaxon%3A1001585","Ectopseudomonas mendocina NK-01"],["NCBITaxon%3A1225174","Ectopseudomonas mendocina S5.2"]]},{"id":"NCBITaxon:32597","l":"Perkinsus olseni","na":8,"nb":1,"a":[["TED%3AAF-A0A7J6LEI3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J6LEI3-F1-model_v4_TED01"],["TED%3AAF-A0A7J6P2W0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J6P2W0-F1-model_v4_TED01"],["TED%3AAF-A0A7J6L1P5-F1-model_v4_TED03","TED novel fold AF-A0A7J6L1P5-F1-model_v4_TED03"],["TED%3AAF-A0A7J6L6E8-F1-model_v4_TED01","TED novel fold AF-A0A7J6L6E8-F1-model_v4_TED01"],["TED%3AAF-A0A7J6MV19-F1-model_v4_TED02","TED novel fold AF-A0A7J6MV19-F1-model_v4_TED02"],["TED%3AAF-A0A7J6RMU5-F1-model_v4_TED03","TED novel fold AF-A0A7J6RMU5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A32597","Perkinsus olseni"]]},{"id":"NCBITaxon:33070","l":"Parathermosynechococcus lividus","na":1,"nb":8,"a":[["Pfam%3APF06745","KaiC"]],"b":[["NCBITaxon%3A33070","Parathermosynechococcus lividus"],["NCBITaxon%3A2991904","Parathermosynechococcus lividus BC1607"],["NCBITaxon%3A102118","Parathermosynechococcus lividus C1"],["NCBITaxon%3A459417","Parathermosynechococcus lividus CR_36M"],["NCBITaxon%3A459418","Parathermosynechococcus lividus CR_9M"],["NCBITaxon%3A1897098","Parathermosynechococcus lividus M6"]]},{"id":"NCBITaxon:33967","l":"Leuconostoc mesenteroides subsp. mesenteroides","na":1,"nb":8,"a":[["Pfam%3APF03390","2-hydroxycarboxylate transporter family"]],"b":[["NCBITaxon%3A33964","Leuconostoc citreum"],["NCBITaxon%3A1245","Leuconostoc mesenteroides"],["NCBITaxon%3A33967","Leuconostoc mesenteroides subsp. mesenteroides"],["NCBITaxon%3A203120","Leuconostoc mesenteroides subsp. mesenteroides ATCC 8293"],["NCBITaxon%3A1107880","Leuconostoc mesenteroides subsp. mesenteroides J18"],["NCBITaxon%3A889970","Leuconostoc mesenteroides subsp. mesenteroides Y110"]]},{"id":"NCBITaxon:35128","l":"Thalassiosira pseudonana","na":8,"nb":1,"a":[["TED%3AAF-B5YN71-F1-model_v4_TED01","TED highly-symmetric fold AF-B5YN71-F1-model_v4_TED01"],["TED%3AAF-B8C4R6-F1-model_v4_TED02","TED highly-symmetric fold AF-B8C4R6-F1-model_v4_TED02"],["TED%3AAF-B8C9A8-F1-model_v4_TED01","TED highly-symmetric fold AF-B8C9A8-F1-model_v4_TED01"],["TED%3AAF-B8BWF8-F1-model_v4_TED05","TED novel fold AF-B8BWF8-F1-model_v4_TED05"],["TED%3AAF-B8C2H1-F1-model_v4_TED03","TED novel fold AF-B8C2H1-F1-model_v4_TED03"],["TED%3AAF-B8C8D0-F1-model_v4_TED01","TED novel fold AF-B8C8D0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A35128","Thalassiosira pseudonana"]]},{"id":"NCBITaxon:39966","l":"Hypsizygus marmoreus","na":8,"nb":1,"a":[["TED%3AAF-A0A369J6K5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A369J6K5-F1-model_v4_TED01"],["TED%3AAF-A0A369JBT3-F1-model_v4_TED02","TED novel fold AF-A0A369JBT3-F1-model_v4_TED02"],["TED%3AAF-A0A369JEI9-F1-model_v4_TED02","TED novel fold AF-A0A369JEI9-F1-model_v4_TED02"],["TED%3AAF-A0A369JTQ8-F1-model_v4_TED01","TED novel fold AF-A0A369JTQ8-F1-model_v4_TED01"],["TED%3AAF-A0A369JZM3-F1-model_v4_TED01","TED novel fold AF-A0A369JZM3-F1-model_v4_TED01"],["TED%3AAF-A0A369K0Y7-F1-model_v4_TED02","TED novel fold AF-A0A369K0Y7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A39966","Hypsizygus marmoreus"]]},{"id":"NCBITaxon:40216","l":"Acinetobacter radioresistens","na":1,"nb":8,"a":[["TED%3AAF-A0A7D7YF26-F1-model_v4_TED02","TED novel fold AF-A0A7D7YF26-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A40216","Acinetobacter radioresistens"],["NCBITaxon%3A981334","Acinetobacter radioresistens DSM 6976 = NBRC 102413 = CIP 103788"],["NCBITaxon%3A1217674","Acinetobacter radioresistens NIPH 2130"],["NCBITaxon%3A575589","Acinetobacter radioresistens SH164"],["NCBITaxon%3A596318","Acinetobacter radioresistens SK82"],["NCBITaxon%3A1221310","Acinetobacter radioresistens TG02010"]]},{"id":"NCBITaxon:41978","l":"Ruminococcus sp.","na":8,"nb":1,"a":[["TED%3AAF-A0A354K7U3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A354K7U3-F1-model_v4_TED01"],["TED%3AAF-A0A354PWT2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A354PWT2-F1-model_v4_TED01"],["TED%3AAF-A0A3B9SYL6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B9SYL6-F1-model_v4_TED01"],["TED%3AAF-A0A3C0QNU7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C0QNU7-F1-model_v4_TED01"],["TED%3AAF-A0A3C0QSS9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3C0QSS9-F1-model_v4_TED02"],["TED%3AAF-A0A354PX54-F1-model_v4_TED01","TED novel fold AF-A0A354PX54-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A41978","Ruminococcus sp."]]},{"id":"NCBITaxon:419947","l":"Mycobacterium tuberculosis (strain ATCC 25177 / H37Ra)","na":8,"nb":1,"a":[["Pfam%3APF17668","Acetyltransferase (GNAT) domain"],["Pfam%3APF13527","Acetyltransferase (GNAT) domain"],["Pfam%3APF02261","Aspartate decarboxylase"],["Pfam%3APF07584","Aerotolerance regulator N-terminal"],["Pfam%3APF03993","Domain of Unknown Function (DUF349)"],["Pfam%3APF02313","Fumarate reductase subunit D"]],"b":[["NCBITaxon%3A419947","Mycobacterium tuberculosis H37Ra"]]},{"id":"NCBITaxon:467705","l":"Streptococcus gordonii (strain Challis / ATCC 35105 / BCRC 15272 / CH1 / DL1 / V288)","na":8,"nb":1,"a":[["Pfam%3APF18652","Adhesin P1 N-terminal domain"],["Pfam%3APF17998","Cell surface antigen I/II C2 terminal domain"],["Pfam%3APF16364","Cell surface antigen C-terminus"],["Pfam%3APF18938","Atypical Rib domain"],["Pfam%3APF20164","GspA/SrpA SigLec-like domain"],["Pfam%3APF08363","Glucan-binding protein C"]],"b":[["NCBITaxon%3A467705","Streptococcus gordonii str. Challis substr. CH1"]]},{"id":"NCBITaxon:565050","l":"Caulobacter vibrioides NA1000","na":8,"nb":1,"a":[["Pfam%3APF02767","DNA polymerase III beta subunit, central domain"],["Pfam%3APF02768","DNA polymerase III beta subunit, C-terminal domain"],["Pfam%3APF00712","DNA polymerase III beta subunit, N-terminal domain"],["Pfam%3APF21249","GyrB, hook"],["Pfam%3APF07378","Flagellar protein FlbT"],["Pfam%3APF03748","Flagellar basal body-associated protein FliL"]],"b":[["NCBITaxon%3A565050","Caulobacter vibrioides NA1000"]]},{"id":"NCBITaxon:58346","l":"Streptomyces platensis","na":1,"nb":8,"a":[["PROSITE%3APS00999","Streptomyces subtilisin-type inhibitors signature"]],"b":[["NCBITaxon%3A249580","Streptomyces glebosus"],["NCBITaxon%3A249582","Streptomyces libani subsp. rufus"],["NCBITaxon%3A1920","Streptomyces nigrescens"],["NCBITaxon%3A58346","Streptomyces platensis"],["NCBITaxon%3A1649334","Streptomyces platensis subsp. clarensis"],["NCBITaxon%3A285579","Streptomyces platensis subsp. malvinus"]]},{"id":"NCBITaxon:605","l":"Salmonella enterica subsp. enterica serovar Pullorum","na":1,"nb":8,"a":[["Pfam%3APF25855","Invasion plasmid antigen J, cysteine protease"]],"b":[["NCBITaxon%3A605","Salmonella enterica subsp. enterica serovar Pullorum"],["NCBITaxon%3A1079472","Salmonella enterica subsp. enterica serovar Pullorum str. 10398"],["NCBITaxon%3A1079471","Salmonella enterica subsp. enterica serovar Pullorum str. 13036"],["NCBITaxon%3A1079470","Salmonella enterica subsp. enterica serovar Pullorum str. 19945"],["NCBITaxon%3A1029979","Salmonella enterica subsp. enterica serovar Pullorum str. ATCC 9120"],["NCBITaxon%3A1299269","Salmonella enterica subsp. enterica serovar Pullorum str. CFSAN000606"]]},{"id":"NCBITaxon:726","l":"Haemophilus haemolyticus","na":1,"nb":8,"a":[["TED%3AAF-A0A1B8PEV3-F1-model_v4_TED01","TED novel fold AF-A0A1B8PEV3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A726","Haemophilus haemolyticus"],["NCBITaxon%3A1095742","Haemophilus haemolyticus HK386"],["NCBITaxon%3A1028802","Haemophilus haemolyticus M19107"],["NCBITaxon%3A1028803","Haemophilus haemolyticus M19501"],["NCBITaxon%3A1028804","Haemophilus haemolyticus M21127"],["NCBITaxon%3A1028805","Haemophilus haemolyticus M21621"]]},{"id":"NCBITaxon:86840","l":"Pseudomonas cannabina","na":1,"nb":8,"a":[["TED%3AAF-A0A3M3K1Y4-F1-model_v4_TED03","TED novel fold AF-A0A3M3K1Y4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A86840","Pseudomonas cannabina"],["NCBITaxon%3A757414","Pseudomonas cannabina pv. alisalensis"],["NCBITaxon%3A1292044","Pseudomonas cannabina pv. alisalensis str. BS91"],["NCBITaxon%3A1292357","Pseudomonas cannabina pv. alisalensis str. PSa1-3"],["NCBITaxon%3A1290997","Pseudomonas cannabina pv. alisalensis str. PSa866"],["NCBITaxon%3A1292045","Pseudomonas cannabina pv. alisalensis str. T3C"]]},{"id":"NCBITaxon:89044","l":"Spumella elongata","na":8,"nb":1,"a":[["TED%3AAF-A0A7S3GNY1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3GNY1-F1-model_v4_TED01"],["TED%3AAF-A0A7S3GPM1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3GPM1-F1-model_v4_TED01"],["TED%3AAF-A0A7S3H3K0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S3H3K0-F1-model_v4_TED02"],["TED%3AAF-A0A7S3M258-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3M258-F1-model_v4_TED01"],["TED%3AAF-A0A7S3H7J2-F1-model_v4_TED01","TED novel fold AF-A0A7S3H7J2-F1-model_v4_TED01"],["TED%3AAF-A0A7S3LZW7-F1-model_v4_TED01","TED novel fold AF-A0A7S3LZW7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A89044","Spumella elongata"]]},{"id":"NCBITaxon:927083","l":"Sandaracinus amylolyticus","na":8,"nb":1,"a":[["TED%3AAF-A0A0F6VZG6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F6VZG6-F1-model_v4_TED01"],["TED%3AAF-A0A0F6W2H9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F6W2H9-F1-model_v4_TED01"],["TED%3AAF-A0A0F6W521-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0F6W521-F1-model_v4_TED02"],["TED%3AAF-A0A0F6W9I9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F6W9I9-F1-model_v4_TED01"],["TED%3AAF-A0A0F6YGP9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F6YGP9-F1-model_v4_TED01"],["TED%3AAF-A0A0F6SDQ8-F1-model_v4_TED01","TED novel fold AF-A0A0F6SDQ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A927083","Sandaracinus amylolyticus"]]},{"id":"NCBITaxon:119927","l":"Alternaria tenuissima","na":7,"nb":1,"a":[["TED%3AAF-A0A4Q4MR18-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q4MR18-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4M1N1-F1-model_v4_TED01","TED novel fold AF-A0A4Q4M1N1-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4M2G6-F1-model_v4_TED01","TED novel fold AF-A0A4Q4M2G6-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4MJL0-F1-model_v4_TED01","TED novel fold AF-A0A4Q4MJL0-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4PGY1-F1-model_v4_TED01","TED novel fold AF-A0A4Q4PGY1-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4RTT0-F1-model_v4_TED01","TED novel fold AF-A0A4Q4RTT0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A119927","Alternaria tenuissima"]]},{"id":"NCBITaxon:1202772","l":"Achlya hypogyna","na":7,"nb":1,"a":[["TED%3AAF-A0A0A7CNN0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A7CNN0-F1-model_v4_TED01"],["TED%3AAF-A0A1V9YXU6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V9YXU6-F1-model_v4_TED01"],["TED%3AAF-A0A1V9ZTZ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V9ZTZ4-F1-model_v4_TED01"],["TED%3AAF-A0A1V9YDY2-F1-model_v4_TED01","TED novel fold AF-A0A1V9YDY2-F1-model_v4_TED01"],["TED%3AAF-A0A1V9YYN3-F1-model_v4_TED01","TED novel fold AF-A0A1V9YYN3-F1-model_v4_TED01"],["TED%3AAF-A0A1V9Z3L8-F1-model_v4_TED05","TED novel fold AF-A0A1V9Z3L8-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1202772","Achlya hypogyna"]]},{"id":"NCBITaxon:122233","l":"Chaetoceros debilis","na":7,"nb":1,"a":[["TED%3AAF-A0A7S3PXS8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3PXS8-F1-model_v4_TED01"],["TED%3AAF-A0A7S3Q425-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S3Q425-F1-model_v4_TED03"],["TED%3AAF-A0A7S3V5P7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3V5P7-F1-model_v4_TED01"],["TED%3AAF-A0A6S8XPX8-F1-model_v4_TED01","TED novel fold AF-A0A6S8XPX8-F1-model_v4_TED01"],["TED%3AAF-A0A7S3PYF0-F1-model_v4_TED01","TED novel fold AF-A0A7S3PYF0-F1-model_v4_TED01"],["TED%3AAF-A0A7S3PZM3-F1-model_v4_TED01","TED novel fold AF-A0A7S3PZM3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A122233","Chaetoceros debilis"]]},{"id":"NCBITaxon:141414","l":"Strombidinopsis acuminata","na":7,"nb":1,"a":[["TED%3AAF-A0A7S3SGM9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3SGM9-F1-model_v4_TED01"],["TED%3AAF-A0A7S3TCM1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3TCM1-F1-model_v4_TED01"],["TED%3AAF-A0A7S3TSP0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S3TSP0-F1-model_v4_TED02"],["TED%3AAF-A0A7S3RMS0-F1-model_v4_TED01","TED novel fold AF-A0A7S3RMS0-F1-model_v4_TED01"],["TED%3AAF-A0A7S3RXR2-F1-model_v4_TED01","TED novel fold AF-A0A7S3RXR2-F1-model_v4_TED01"],["TED%3AAF-A0A7S3T6A7-F1-model_v4_TED01","TED novel fold AF-A0A7S3T6A7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A141414","Strombidinopsis acuminata"]]},{"id":"NCBITaxon:1463165","l":"Klebsiella quasipneumoniae","na":1,"nb":7,"a":[["TED%3AAF-A0A6H3DTS3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A6H3DTS3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A1463165","Klebsiella quasipneumoniae"],["NCBITaxon%3A1667327","Klebsiella quasipneumoniae subsp. quasipneumoniae"],["NCBITaxon%3A1443591","Klebsiella quasipneumoniae subsp. quasipneumoniae 18A069"],["NCBITaxon%3A1328397","Klebsiella quasipneumoniae subsp. quasipneumoniae UCICRE 14"],["NCBITaxon%3A1463164","Klebsiella quasipneumoniae subsp. similipneumoniae"]]},{"id":"NCBITaxon:156173","l":"Haptolina brevifila","na":7,"nb":1,"a":[["TED%3AAF-A0A7S2IEX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2IEX7-F1-model_v4_TED01"],["TED%3AAF-A0A7S2D8H5-F1-model_v4_TED01","TED novel fold AF-A0A7S2D8H5-F1-model_v4_TED01"],["TED%3AAF-A0A7S2D8Z9-F1-model_v4_TED01","TED novel fold AF-A0A7S2D8Z9-F1-model_v4_TED01"],["TED%3AAF-A0A7S2G649-F1-model_v4_TED02","TED novel fold AF-A0A7S2G649-F1-model_v4_TED02"],["TED%3AAF-A0A7S2H406-F1-model_v4_TED01","TED novel fold AF-A0A7S2H406-F1-model_v4_TED01"],["TED%3AAF-A0A7S2ITJ3-F1-model_v4_TED02","TED novel fold AF-A0A7S2ITJ3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A156173","Haptolina brevifila"]]},{"id":"NCBITaxon:1735","l":"Holdemanella biformis","na":1,"nb":7,"a":[["TED%3AAF-A0A395W7I9-F1-model_v4_TED01","TED novel fold AF-A0A395W7I9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1735","Holdemanella biformis"],["NCBITaxon%3A518637","Holdemanella biformis DSM 3989"],["NCBITaxon%3A1339517","Holdemanella biformis TSDC10.1-1.1"],["NCBITaxon%3A1339518","Holdemanella biformis TSDC10.1-1.2"],["NCBITaxon%3A1339519","Holdemanella biformis TSDC10.1-2.1"],["NCBITaxon%3A1339520","Holdemanella biformis TSDC10.1-3.1"]]},{"id":"NCBITaxon:1774","l":"Mycobacteroides chelonae","na":1,"nb":7,"a":[["TED%3AAF-A0A4Y6IJG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y6IJG8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2038731","[Mycobacterium] chelonae subsp. bovistauri"],["NCBITaxon%3A2099321","[Mycobacterium] chelonae subsp. chelonae"],["NCBITaxon%3A2480908","[Mycobacterium] chelonae subsp. gwanakae"],["NCBITaxon%3A1785","Mycobacterium sp."],["NCBITaxon%3A1774","Mycobacteroides chelonae"],["NCBITaxon%3A1299322","Mycobacteroides chelonae 1518"]]},{"id":"NCBITaxon:1906666","l":"Thermoplasmata archaeon","na":7,"nb":1,"a":[["TED%3AAF-A0A497HVI4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A497HVI4-F1-model_v4_TED01"],["TED%3AAF-A0A497HX78-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A497HX78-F1-model_v4_TED01"],["TED%3AAF-A0A662M489-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A662M489-F1-model_v4_TED03"],["TED%3AAF-A0A662MMC3-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A662MMC3-F1-model_v4_TED06"],["TED%3AAF-A0A7J4F045-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J4F045-F1-model_v4_TED01"],["TED%3AAF-A0A5A7S0Y2-F1-model_v4_TED02","TED novel fold AF-A0A5A7S0Y2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1906666","Thermoplasmata archaeon"]]},{"id":"NCBITaxon:1908","l":"Streptomyces globisporus","na":1,"nb":7,"a":[["PROSITE%3APS00953","Glycosyl hydrolases family 25 active site signature"]],"b":[["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A332582","Streptomyces flavofuscus"],["NCBITaxon%3A1908","Streptomyces globisporus"],["NCBITaxon%3A1172567","Streptomyces globisporus C-1027"],["NCBITaxon%3A66858","Streptomyces globisporus subsp. globisporus"],["NCBITaxon%3A1522106","Streptomyces globisporus subsp. griseus"]]},{"id":"NCBITaxon:1935","l":"Streptomyces violaceoruber","na":1,"nb":7,"a":[["Pfam%3APF03559","NDP-hexose 2,3-dehydratase"]],"b":[["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A67291","Streptomyces cyanocolor"],["NCBITaxon%3A80860","Streptomyces cyanogenus"],["NCBITaxon%3A1916","Streptomyces lividans"],["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A68277","Streptomyces tricolor"]]},{"id":"NCBITaxon:1938","l":"Streptomyces viridochromogenes","na":1,"nb":7,"a":[["Pfam%3APF11599","RRNA methyltransferase AviRa"]],"b":[["NCBITaxon%3A1969","Streptomyces chartreusis"],["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A1938","Streptomyces viridochromogenes"],["NCBITaxon%3A591159","Streptomyces viridochromogenes DSM 40736"],["NCBITaxon%3A285521","Streptomyces viridochromogenes subsp. komabensis"],["NCBITaxon%3A285503","Streptomyces viridochromogenes subsp. sulfomycini"]]},{"id":"NCBITaxon:1945593","l":"Oscillibacter sp.","na":7,"nb":1,"a":[["TED%3AAF-A0A316SYU4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A316SYU4-F1-model_v4_TED02"],["TED%3AAF-A0A350TIA9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A350TIA9-F1-model_v4_TED02"],["TED%3AAF-A0A3D1X7I7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D1X7I7-F1-model_v4_TED01"],["TED%3AAF-A0A3D5TDY6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D5TDY6-F1-model_v4_TED02"],["TED%3AAF-A0A3D2IC70-F1-model_v4_TED03","TED novel fold AF-A0A3D2IC70-F1-model_v4_TED03"],["TED%3AAF-A0A3D4G4P2-F1-model_v4_TED04","TED novel fold AF-A0A3D4G4P2-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1945593","Oscillibacter sp."]]},{"id":"NCBITaxon:2006849","l":"Xanthomonadales bacterium","na":7,"nb":1,"a":[["TED%3AAF-A0A2E6REI1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E6REI1-F1-model_v4_TED01"],["TED%3AAF-A0A2E6RHE7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E6RHE7-F1-model_v4_TED02"],["TED%3AAF-A0A354Z1F6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A354Z1F6-F1-model_v4_TED01"],["TED%3AAF-A0A3S0DIN1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S0DIN1-F1-model_v4_TED01"],["TED%3AAF-A0A431HZV9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A431HZV9-F1-model_v4_TED02"],["TED%3AAF-A0A3S0DMM0-F1-model_v4_TED01","TED novel fold AF-A0A3S0DMM0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2006849","Lysobacterales bacterium"]]},{"id":"NCBITaxon:2024858","l":"","na":7,"nb":1,"a":[["TED%3AAF-A0A2D9T9L6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9T9L6-F1-model_v4_TED01"],["TED%3AAF-A0A2E0T9R7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0T9R7-F1-model_v4_TED01"],["TED%3AAF-A0A891ZV95-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A891ZV95-F1-model_v4_TED01"],["TED%3AAF-A0A2D9SYS7-F1-model_v4_TED02","TED novel fold AF-A0A2D9SYS7-F1-model_v4_TED02"],["TED%3AAF-A0A2D9TFN8-F1-model_v4_TED02","TED novel fold AF-A0A2D9TFN8-F1-model_v4_TED02"],["TED%3AAF-A0A2E0TMV1-F1-model_v4_TED03","TED novel fold AF-A0A2E0TMV1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2024858","Sandaracinus sp."]]},{"id":"NCBITaxon:2026743","l":"Halieaceae bacterium","na":7,"nb":1,"a":[["TED%3AAF-A0A7V0ZK52-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7V0ZK52-F1-model_v4_TED04"],["TED%3AAF-A0A2E6YTW5-F1-model_v4_TED04","TED novel fold AF-A0A2E6YTW5-F1-model_v4_TED04"],["TED%3AAF-A0A356SGU4-F1-model_v4_TED01","TED novel fold AF-A0A356SGU4-F1-model_v4_TED01"],["TED%3AAF-A0A356VJ87-F1-model_v4_TED01","TED novel fold AF-A0A356VJ87-F1-model_v4_TED01"],["TED%3AAF-A0A3C7W294-F1-model_v4_TED01","TED novel fold AF-A0A3C7W294-F1-model_v4_TED01"],["TED%3AAF-A0A3D1YQW8-F1-model_v4_TED02","TED novel fold AF-A0A3D1YQW8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026743","Halieaceae bacterium"]]},{"id":"NCBITaxon:2026784","l":"Puniceicoccaceae bacterium","na":7,"nb":1,"a":[["TED%3AAF-A0A2E9IMP1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E9IMP1-F1-model_v4_TED02"],["TED%3AAF-A0A6N2CS77-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N2CS77-F1-model_v4_TED02"],["TED%3AAF-A0A2E9IV22-F1-model_v4_TED01","TED novel fold AF-A0A2E9IV22-F1-model_v4_TED01"],["TED%3AAF-A0A2E9IVC4-F1-model_v4_TED02","TED novel fold AF-A0A2E9IVC4-F1-model_v4_TED02"],["TED%3AAF-A0A6N2CJU8-F1-model_v4_TED01","TED novel fold AF-A0A6N2CJU8-F1-model_v4_TED01"],["TED%3AAF-A0A6N2CN60-F1-model_v4_TED02","TED novel fold AF-A0A6N2CN60-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026784","Puniceicoccaceae bacterium"]]},{"id":"NCBITaxon:2030806","l":"Burkholderiaceae bacterium","na":7,"nb":1,"a":[["TED%3AAF-A0A5C7NHS1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7NHS1-F1-model_v4_TED01"],["TED%3AAF-A0A5C7Q2S0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A5C7Q2S0-F1-model_v4_TED04"],["TED%3AAF-A0A7L5Y4H7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7L5Y4H7-F1-model_v4_TED02"],["TED%3AAF-A0A520VNE1-F1-model_v4_TED02","TED novel fold AF-A0A520VNE1-F1-model_v4_TED02"],["TED%3AAF-A0A522SAF0-F1-model_v4_TED01","TED novel fold AF-A0A522SAF0-F1-model_v4_TED01"],["TED%3AAF-A0A5C7NTX8-F1-model_v4_TED02","TED novel fold AF-A0A5C7NTX8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2030806","Burkholderiaceae bacterium"]]},{"id":"NCBITaxon:2030827","l":"Dependentiae bacterium","na":7,"nb":1,"a":[["TED%3AAF-A0A355KRB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A355KRB9-F1-model_v4_TED01"],["TED%3AAF-A0A3S0ECE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S0ECE6-F1-model_v4_TED01"],["TED%3AAF-A0A523RJZ0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A523RJZ0-F1-model_v4_TED02"],["TED%3AAF-A0A523RL65-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A523RL65-F1-model_v4_TED01"],["TED%3AAF-A0A355KSL6-F1-model_v4_TED02","TED novel fold AF-A0A355KSL6-F1-model_v4_TED02"],["TED%3AAF-A0A3S0BNC5-F1-model_v4_TED04","TED novel fold AF-A0A3S0BNC5-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2030827","Candidatus Babelota bacterium"]]},{"id":"NCBITaxon:2044939","l":"Clostridia bacterium","na":7,"nb":1,"a":[["TED%3AAF-A0A2V2CAW9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V2CAW9-F1-model_v4_TED01"],["TED%3AAF-A0A2V2CJ24-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V2CJ24-F1-model_v4_TED02"],["TED%3AAF-A0A2V2CKI1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V2CKI1-F1-model_v4_TED01"],["TED%3AAF-A0A2V2EGZ8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V2EGZ8-F1-model_v4_TED02"],["TED%3AAF-A0A6N7M119-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N7M119-F1-model_v4_TED01"],["TED%3AAF-A0A2V2CXP7-F1-model_v4_TED01","TED novel fold AF-A0A2V2CXP7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2044939","Clostridia bacterium"]]},{"id":"NCBITaxon:2044940","l":"Desulfobacterales bacterium","na":7,"nb":1,"a":[["TED%3AAF-A0A7C0YF25-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C0YF25-F1-model_v4_TED02"],["TED%3AAF-A0A7Y3ABX0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y3ABX0-F1-model_v4_TED01"],["TED%3AAF-A0A7Y3EMB5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y3EMB5-F1-model_v4_TED01"],["TED%3AAF-A0A7Y3EVT1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y3EVT1-F1-model_v4_TED01"],["TED%3AAF-A0A7Y3GG06-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y3GG06-F1-model_v4_TED01"],["TED%3AAF-A0A7V4T5K6-F1-model_v4_TED01","TED novel fold AF-A0A7V4T5K6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2044940","Desulfobacterales bacterium"]]},{"id":"NCBITaxon:2051","l":"Mobiluncus curtisii","na":1,"nb":7,"a":[["TED%3AAF-A0A7Y0UGC2-F1-model_v4_TED01","TED novel fold AF-A0A7Y0UGC2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2051","Mobiluncus curtisii"],["NCBITaxon%3A548479","Mobiluncus curtisii ATCC 43063"],["NCBITaxon%3A887326","Mobiluncus curtisii ATCC 51333"],["NCBITaxon%3A144177","Mobiluncus curtisii subsp. curtisii"],["NCBITaxon%3A585198","Mobiluncus curtisii subsp. curtisii ATCC 35241"],["NCBITaxon%3A144178","Mobiluncus holmesii"]]},{"id":"NCBITaxon:2052176","l":"Parachlamydiaceae bacterium","na":7,"nb":1,"a":[["TED%3AAF-A0A7W0FUG8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7W0FUG8-F1-model_v4_TED03"],["TED%3AAF-A0A7W1RG26-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W1RG26-F1-model_v4_TED01"],["TED%3AAF-A0A7D5MPV0-F1-model_v4_TED01","TED novel fold AF-A0A7D5MPV0-F1-model_v4_TED01"],["TED%3AAF-A0A7V9ZKP2-F1-model_v4_TED03","TED novel fold AF-A0A7V9ZKP2-F1-model_v4_TED03"],["TED%3AAF-A0A7V9ZN19-F1-model_v4_TED01","TED novel fold AF-A0A7V9ZN19-F1-model_v4_TED01"],["TED%3AAF-A0A7W0FW10-F1-model_v4_TED01","TED novel fold AF-A0A7W0FW10-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052176","Parachlamydiaceae bacterium"]]},{"id":"NCBITaxon:2053307","l":"Desulfobulbaceae bacterium","na":7,"nb":1,"a":[["TED%3AAF-A0A353NBC5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A353NBC5-F1-model_v4_TED01"],["TED%3AAF-A0A7V5R4I6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V5R4I6-F1-model_v4_TED01"],["TED%3AAF-A0A7W0ISJ1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W0ISJ1-F1-model_v4_TED01"],["TED%3AAF-A0A7X6YUV4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X6YUV4-F1-model_v4_TED01"],["TED%3AAF-A0A6L4ARB4-F1-model_v4_TED01","TED novel fold AF-A0A6L4ARB4-F1-model_v4_TED01"],["TED%3AAF-A0A7J5VQT5-F1-model_v4_TED01","TED novel fold AF-A0A7J5VQT5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053307","Desulfobulbaceae bacterium"]]},{"id":"NCBITaxon:2053570","l":"Latescibacteria bacterium","na":7,"nb":1,"a":[["TED%3AAF-A0A3B8MFX1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B8MFX1-F1-model_v4_TED01"],["TED%3AAF-A0A3D4B8J6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D4B8J6-F1-model_v4_TED01"],["TED%3AAF-A0A7C7R9T5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C7R9T5-F1-model_v4_TED01"],["TED%3AAF-A0A846P6H1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A846P6H1-F1-model_v4_TED03"],["TED%3AAF-A0A846P818-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A846P818-F1-model_v4_TED01"],["TED%3AAF-A0A836QNS3-F1-model_v4_TED03","TED novel fold AF-A0A836QNS3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2053570","Candidatus Latescibacterota bacterium"]]},{"id":"NCBITaxon:2053581","l":"Microscillaceae bacterium","na":7,"nb":1,"a":[["TED%3AAF-A0A349E0D3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A349E0D3-F1-model_v4_TED02"],["TED%3AAF-A0A349E0M1-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A349E0M1-F1-model_v4_TED04"],["TED%3AAF-A0A349E3R7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349E3R7-F1-model_v4_TED01"],["TED%3AAF-A0A349E508-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A349E508-F1-model_v4_TED02"],["TED%3AAF-A0A349DIC5-F1-model_v4_TED02","TED novel fold AF-A0A349DIC5-F1-model_v4_TED02"],["TED%3AAF-A0A349DXN9-F1-model_v4_TED02","TED novel fold AF-A0A349DXN9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053581","Microscillaceae bacterium"]]},{"id":"NCBITaxon:2100","l":"Mesomycoplasma hyorhinis","na":1,"nb":7,"a":[["Pfam%3APF06646","Extracytoplasmic thiamine-binding lipoprotein"]],"b":[["NCBITaxon%3A2100","Mesomycoplasma hyorhinis"],["NCBITaxon%3A634996","Mesomycoplasma hyorhinis ATCC 17981"],["NCBITaxon%3A634997","Mesomycoplasma hyorhinis DBS 1050"],["NCBITaxon%3A1129369","Mesomycoplasma hyorhinis GDL-1"],["NCBITaxon%3A872331","Mesomycoplasma hyorhinis HUB-1"],["NCBITaxon%3A936139","Mesomycoplasma hyorhinis MCLD"]]},{"id":"NCBITaxon:216773","l":"Corethron hystrix","na":7,"nb":1,"a":[["TED%3AAF-A0A7S1B7I7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1B7I7-F1-model_v4_TED01"],["TED%3AAF-A0A7S1BDF8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1BDF8-F1-model_v4_TED01"],["TED%3AAF-A0A7S1BL96-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1BL96-F1-model_v4_TED01"],["TED%3AAF-A0A7S1FKX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1FKX2-F1-model_v4_TED01"],["TED%3AAF-A0A7S1BFC1-F1-model_v4_TED01","TED novel fold AF-A0A7S1BFC1-F1-model_v4_TED01"],["TED%3AAF-A0A7S1BX15-F1-model_v4_TED02","TED novel fold AF-A0A7S1BX15-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A216773","Corethron hystrix"]]},{"id":"NCBITaxon:2184738","l":"Desulfurococcaceae archaeon","na":7,"nb":1,"a":[["TED%3AAF-A0A2V2XT73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V2XT73-F1-model_v4_TED01"],["TED%3AAF-A0A7J2VAN9-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7J2VAN9-F1-model_v4_TED04"],["TED%3AAF-A0A7J3QAX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J3QAX7-F1-model_v4_TED01"],["TED%3AAF-A0A832JV08-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A832JV08-F1-model_v4_TED02"],["TED%3AAF-A0A832NJC3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A832NJC3-F1-model_v4_TED01"],["TED%3AAF-A0A7J3EMI2-F1-model_v4_TED01","TED novel fold AF-A0A7J3EMI2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2184738","Desulfurococcaceae archaeon"]]},{"id":"NCBITaxon:218491","l":"Pectobacterium atrosepticum (strain SCRI 1043 / ATCC BAA-672)","na":7,"nb":1,"a":[["Pfam%3APF21384","CRISPR-associated nuclease/helicase Cas3, I-F/YPEST, Cas2 domain"],["Pfam%3APF21802","CRISPR-associated Cas3 subtype I-F/YPEST-like, C-terminal domain"],["Pfam%3APF09611","CRISPR-associated protein (Cas_Csy1)"],["Pfam%3APF09614","CRISPR-associated protein (Cas_Csy2)"],["Pfam%3APF09615","CRISPR-associated protein (Cas_Csy3)"],["Pfam%3APF09618","CRISPR-associated protein (Cas_Csy4)"]],"b":[["NCBITaxon%3A218491","Pectobacterium atrosepticum SCRI1043"]]},{"id":"NCBITaxon:2212474","l":"Kofleriaceae bacterium","na":7,"nb":1,"a":[["TED%3AAF-A0A7J5EWQ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J5EWQ9-F1-model_v4_TED01"],["TED%3AAF-A0A7Y6UC87-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y6UC87-F1-model_v4_TED01"],["TED%3AAF-A0A7Y6UCE7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y6UCE7-F1-model_v4_TED01"],["TED%3AAF-A0A7J5EW94-F1-model_v4_TED01","TED novel fold AF-A0A7J5EW94-F1-model_v4_TED01"],["TED%3AAF-A0A7J5EZ53-F1-model_v4_TED03","TED novel fold AF-A0A7J5EZ53-F1-model_v4_TED03"],["TED%3AAF-A0A7J5EZ80-F1-model_v4_TED01","TED novel fold AF-A0A7J5EZ80-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2212474","Kofleriaceae bacterium"]]},{"id":"NCBITaxon:242619","l":"Porphyromonas gingivalis (strain ATCC BAA-308 / W83)","na":7,"nb":1,"a":[["Pfam%3APF13290","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF04023","FeoA domain"],["Pfam%3APF17910","FeoB cytosolic helical domain"],["Pfam%3APF02421","Ferrous iron transport protein B"],["Pfam%3APF22492","FimA4 pilin C-terminal domain"],["Pfam%3APF07664","Ferrous iron transport protein B C terminus"]],"b":[["NCBITaxon%3A242619","Porphyromonas gingivalis W83"]]},{"id":"NCBITaxon:246432","l":"Staphylococcus equorum","na":1,"nb":7,"a":[["TED%3AAF-A0A1B1GAW5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1B1GAW5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A246432","Staphylococcus equorum"],["NCBITaxon%3A29383","Staphylococcus equorum subsp. equorum"],["NCBITaxon%3A1159488","Staphylococcus equorum subsp. equorum Mu2"],["NCBITaxon%3A201829","Staphylococcus equorum subsp. linens"],["NCBITaxon%3A1357294","Staphylococcus equorum UMC-CNS-924"],["NCBITaxon%3A214473","Staphylococcus nepalensis"]]},{"id":"NCBITaxon:2567896","l":"Polyangium aurulentum","na":7,"nb":1,"a":[["TED%3AAF-A0A4U1GYF2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U1GYF2-F1-model_v4_TED01"],["TED%3AAF-A0A4U1H499-F1-model_v4_TED01","TED novel fold AF-A0A4U1H499-F1-model_v4_TED01"],["TED%3AAF-A0A4U1H9S4-F1-model_v4_TED01","TED novel fold AF-A0A4U1H9S4-F1-model_v4_TED01"],["TED%3AAF-A0A4U1HCT2-F1-model_v4_TED02","TED novel fold AF-A0A4U1HCT2-F1-model_v4_TED02"],["TED%3AAF-A0A4U1HEA5-F1-model_v4_TED03","TED novel fold AF-A0A4U1HEA5-F1-model_v4_TED03"],["TED%3AAF-A0A4U1HVC8-F1-model_v4_TED01","TED novel fold AF-A0A4U1HVC8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2567896","Polyangium aurulentum"]]},{"id":"NCBITaxon:264203","l":"Zymomonas mobilis subsp. mobilis (strain ATCC 31821 / ZM4 / CP4)","na":7,"nb":1,"a":[["Pfam%3APF13590","Domain of unknown function (DUF4136)"],["Pfam%3APF08436","1-deoxy-D-xylulose 5-phosphate reductoisomerase C-terminal domain"],["Pfam%3APF13288","DXP reductoisomerase C-terminal domain"],["Pfam%3APF02670","1-deoxy-D-xylulose 5-phosphate reductoisomerase"],["PROSITE%3APS01157","Class A bacterial acid phosphatases signature"],["PROSITE%3APS01320","Uncharacterized protein family UPF0067 signature"]],"b":[["NCBITaxon%3A264203","Zymomonas mobilis subsp. mobilis ZM4 = ATCC 31821"]]},{"id":"NCBITaxon:2719382","l":"Candidatus Helarchaeota archaeon","na":7,"nb":1,"a":[["TED%3AAF-A0A850LTW9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A850LTW9-F1-model_v4_TED01"],["TED%3AAF-A0A850M489-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A850M489-F1-model_v4_TED01"],["TED%3AAF-A0A850ML52-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A850ML52-F1-model_v4_TED03"],["TED%3AAF-A0A850MRJ8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A850MRJ8-F1-model_v4_TED02"],["TED%3AAF-A0A850MAC1-F1-model_v4_TED02","TED novel fold AF-A0A850MAC1-F1-model_v4_TED02"],["TED%3AAF-A0A850MD70-F1-model_v4_TED02","TED novel fold AF-A0A850MD70-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2719382","Candidatus Helarchaeota archaeon"]]},{"id":"NCBITaxon:272623","l":"Lactococcus lactis subsp. lactis (strain IL1403)","na":7,"nb":1,"a":[["Pfam%3APF25935","LcnD-like, barrel-sandwich hybrid domain"],["Pfam%3APF27342","ComB N-terminal domain"],["Pfam%3APF06993","Protein of unknown function (DUF1304)"],["Pfam%3APF25887","LcnD-like, long helical bundle domain"],["Pfam%3APF13276","HTH-like domain"],["Pfam%3APF25940","LcnD-like, C-terminal domain"]],"b":[["NCBITaxon%3A272623","Lactococcus lactis subsp. lactis Il1403"]]},{"id":"NCBITaxon:2740538","l":"Ktedonobacteraceae bacterium","na":7,"nb":1,"a":[["TED%3AAF-A0A838DTJ1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A838DTJ1-F1-model_v4_TED01"],["TED%3AAF-A0A838J990-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A838J990-F1-model_v4_TED01"],["TED%3AAF-A0A838EHB8-F1-model_v4_TED01","TED novel fold AF-A0A838EHB8-F1-model_v4_TED01"],["TED%3AAF-A0A838EI64-F1-model_v4_TED02","TED novel fold AF-A0A838EI64-F1-model_v4_TED02"],["TED%3AAF-A0A838EV93-F1-model_v4_TED03","TED novel fold AF-A0A838EV93-F1-model_v4_TED03"],["TED%3AAF-A0A838J9Z7-F1-model_v4_TED01","TED novel fold AF-A0A838J9Z7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2740538","Ktedonobacteraceae bacterium"]]},{"id":"NCBITaxon:28147","l":"Salmonella enterica subsp. enterica serovar Oranienburg","na":1,"nb":7,"a":[["TED%3AAF-A0A5W8G185-F1-model_v4_TED01","TED novel fold AF-A0A5W8G185-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28147","Salmonella enterica subsp. enterica serovar Oranienburg"],["NCBITaxon%3A997333","Salmonella enterica subsp. enterica serovar Oranienburg str. 0250"],["NCBITaxon%3A997334","Salmonella enterica subsp. enterica serovar Oranienburg str. 701"],["NCBITaxon%3A1192574","Salmonella enterica subsp. enterica serovar Oranienburg str. 91006"],["NCBITaxon%3A1124960","Salmonella enterica subsp. enterica serovar Oranienburg str. 9239"],["NCBITaxon%3A1173918","Salmonella enterica subsp. enterica serovar Oranienburg str. CC250"]]},{"id":"NCBITaxon:28198","l":"Aliarcobacter cryaerophilus","na":1,"nb":7,"a":[["TED%3AAF-A0A2S9SPY1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S9SPY1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28197","Aliarcobacter butzleri"],["NCBITaxon%3A28198","Aliarcobacter cryaerophilus"],["NCBITaxon%3A1032070","Aliarcobacter cryaerophilus ATCC 43158"],["NCBITaxon%3A1032071","Aliarcobacter cryaerophilus D2610"],["NCBITaxon%3A2933790","Arcobacter cryaerophilus gv. crypticus"],["NCBITaxon%3A2027466","Arcobacter cryaerophilus gv. occultus"]]},{"id":"NCBITaxon:284592","l":"Debaryomyces hansenii (strain ATCC 36239 / CBS 767 / BCRC 21394 / JCM 1990 / NBRC 0083 / IGC 2968)","na":7,"nb":1,"a":[["Pfam%3APF25459","AIM3/BBC1 Cysteine proteinase-fold domain"],["Pfam%3APF12015","Bud3, N-terminal"],["Pfam%3APF12709","Fungal Transforming acidic coiled-coil (TACC) proteins"],["Pfam%3APF27585","HIR3 second domain"],["Pfam%3APF24438","IML1, N-terminal, fungi"],["Pfam%3APF08738","Gon7 family"]],"b":[["NCBITaxon%3A284592","Debaryomyces hansenii CBS767"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":1,"nb":7,"a":[["PROSITE%3APS01322","Phosphotriesterase family signature 1"]],"b":[["NCBITaxon%3A293","Brevundimonas diminuta"],["NCBITaxon%3A1255603","Brevundimonas diminuta 3F5N"],["NCBITaxon%3A1035191","Brevundimonas diminuta 470-4"],["NCBITaxon%3A751586","Brevundimonas diminuta ATCC 11568"],["NCBITaxon%3A588932","Brevundimonas naejangsanensis"],["NCBITaxon%3A1325724","Brevundimonas vancanneytii"]]},{"id":"NCBITaxon:295405","l":"Bacteroides fragilis (strain YCH46)","na":7,"nb":1,"a":[["Pfam%3APF23763","GLAA-B beta-barrel domain I"],["Pfam%3APF23764","GLAA-B beta-barrel domain II"],["Pfam%3APF14873","N-terminal domain of BNR-repeat neuraminidase"],["Pfam%3APF18318","Glutamine synthetase C-terminal domain"],["Pfam%3APF12437","Glutamine synthetase type III N terminal"],["Pfam%3APF04301","Pimeloyl-ACP methyl esterase BioG"]],"b":[["NCBITaxon%3A295405","Bacteroides fragilis YCH46"]]},{"id":"NCBITaxon:299583","l":"Francisella orientalis","na":1,"nb":7,"a":[["TED%3AAF-A0A5C1SE57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C1SE57-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A299583","Francisella orientalis"],["NCBITaxon%3A1390363","Francisella orientalis FNO12"],["NCBITaxon%3A1449091","Francisella orientalis FNO24"],["NCBITaxon%3A1088881","Francisella orientalis FSC770"],["NCBITaxon%3A1089432","Francisella orientalis FSC771"],["NCBITaxon%3A1356861","Francisella orientalis LADL 07-285A"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":1,"nb":7,"a":[["TED%3AAF-A0A679J1E9-F1-model_v4_TED01","TED novel fold AF-A0A679J1E9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A34073","Variovorax paradoxus"],["NCBITaxon%3A1150395","Variovorax paradoxus 4MFCol3.1"],["NCBITaxon%3A1246301","Variovorax paradoxus B4"],["NCBITaxon%3A595537","Variovorax paradoxus EPS"],["NCBITaxon%3A1321610","Variovorax paradoxus NBRC 15149"],["NCBITaxon%3A543728","Variovorax paradoxus S110"]]},{"id":"NCBITaxon:357276","l":"Phocaeicola dorei","na":1,"nb":7,"a":[["TED%3AAF-A0A5M5ZM66-F1-model_v4_TED01","TED novel fold AF-A0A5M5ZM66-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A357276","Phocaeicola dorei"],["NCBITaxon%3A556260","Phocaeicola dorei 5_1_36/D4"],["NCBITaxon%3A1263042","Phocaeicola dorei CAG:222"],["NCBITaxon%3A997875","Phocaeicola dorei CL02T00C15"],["NCBITaxon%3A997876","Phocaeicola dorei CL02T12C06"],["NCBITaxon%3A997877","Phocaeicola dorei CL03T12C01"]]},{"id":"NCBITaxon:362","l":"Agrobacterium radiobacter","na":1,"nb":7,"a":[["Pfam%3APF04909","Amidohydrolase"]],"b":[["NCBITaxon%3A362","Agrobacterium radiobacter"],["NCBITaxon%3A1336745","Agrobacterium radiobacter DSM 30147"],["NCBITaxon%3A361","Agrobacterium sp."],["NCBITaxon%3A358","Agrobacterium tumefaciens"],["NCBITaxon%3A359","Martinezella rhizogenes"],["NCBITaxon%3A204072","Ramlibacter henchirensis"]]},{"id":"NCBITaxon:38293","l":"Photobacterium damselae","na":1,"nb":7,"a":[["TED%3AAF-A0A2T3QCV4-F1-model_v4_TED01","TED novel fold AF-A0A2T3QCV4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A38293","Photobacterium damselae"],["NCBITaxon%3A85581","Photobacterium damselae subsp. damselae"],["NCBITaxon%3A675817","Photobacterium damselae subsp. damselae CIP 102761"],["NCBITaxon%3A38294","Photobacterium damselae subsp. piscicida"],["NCBITaxon%3A1200302","Photobacterium damselae subsp. piscicida DI21"],["NCBITaxon%3A406525","Photobacterium damselae subsp. piscicida PT99-018"]]},{"id":"NCBITaxon:40518","l":"Ruminococcus bromii","na":1,"nb":7,"a":[["TED%3AAF-A0A412UMQ9-F1-model_v4_TED02","TED novel fold AF-A0A412UMQ9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A40518","Ruminococcus bromii"],["NCBITaxon%3A657321","Ruminococcus bromii L2-63"],["NCBITaxon%3A1339598","Ruminococcus bromii TSDC10.1-1.1"],["NCBITaxon%3A1339599","Ruminococcus bromii TSDC10.2-1.1"],["NCBITaxon%3A1339600","Ruminococcus bromii TSDC17.2-1.1"],["NCBITaxon%3A1339601","Ruminococcus bromii TSDC17.2-1.2"]]},{"id":"NCBITaxon:408","l":"Methylorubrum extorquens","na":1,"nb":7,"a":[["Pfam%3APF04476","4-HFC-P synthase"]],"b":[["NCBITaxon%3A408","Methylorubrum extorquens"],["NCBITaxon%3A272630","Methylorubrum extorquens AM1"],["NCBITaxon%3A440085","Methylorubrum extorquens CM4"],["NCBITaxon%3A661410","Methylorubrum extorquens DM4"],["NCBITaxon%3A882800","Methylorubrum extorquens DSM 13060"],["NCBITaxon%3A419610","Methylorubrum extorquens PA1"]]},{"id":"NCBITaxon:410289","l":"Mycobacterium bovis (strain BCG / Pasteur 1173P2)","na":7,"nb":1,"a":[["Pfam%3APF27542","ArfC"],["Pfam%3APF21923","BON-like domain"],["Pfam%3APF18374","Enolase N-terminal domain-like"],["Pfam%3APF07174","Fibronectin-attachment protein (FAP) domain"],["Pfam%3APF15598","Immunity protein 61"],["Pfam%3APF01790","Prolipoprotein diacylglyceryl transferase"]],"b":[["NCBITaxon%3A410289","Mycobacterium tuberculosis variant bovis BCG str. Pasteur 1173P2"]]},{"id":"NCBITaxon:416870","l":"Lactococcus lactis subsp. cremoris (strain MG1363)","na":7,"nb":1,"a":[["Pfam%3APF21445","ADDB, N-terminal"],["Pfam%3APF02632","BioY family"],["Pfam%3APF06018","CodY GAF-like domain"],["Pfam%3APF27471","Energy-coupling factor transporter EcfA1 C-terminal domain"],["Pfam%3APF08222","CodY helix-turn-helix domain"],["Pfam%3APF11858","Domain of unknown function (DUF3378)"]],"b":[["NCBITaxon%3A416870","Lactococcus cremoris subsp. cremoris MG1363"]]},{"id":"NCBITaxon:486","l":"Neisseria lactamica","na":1,"nb":7,"a":[["Pfam%3APF05315","ICEA Protein"]],"b":[["NCBITaxon%3A486","Neisseria lactamica"],["NCBITaxon%3A489653","Neisseria lactamica 020-06"],["NCBITaxon%3A546265","Neisseria lactamica ATCC 23970"],["NCBITaxon%3A933280","Neisseria lactamica NS19"],["NCBITaxon%3A869214","Neisseria lactamica Y92-1009"],["NCBITaxon%3A28449","Neisseria subflava"]]},{"id":"NCBITaxon:53249","l":"","na":7,"nb":1,"a":[["Pfam%3APF25291","Lambda-carrageenase C-terminal domain"],["Pfam%3APF25290","Lambda-carrageenase middle domain"],["Pfam%3APF17396","Domain of unknown function (DUF1611_N) Rossmann-like domain"],["Pfam%3APF07755","Domain of unknown function (DUF1611_C) P-loop domain"],["Pfam%3APF25292","Lambda-carrageenase beta-propeller domain"],["TED%3AAF-A0A2D5T282-F1-model_v4_TED01","TED novel fold AF-A0A2D5T282-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A53249","Pseudoalteromonas sp."]]},{"id":"NCBITaxon:53985","l":"Phytophthora fragariae","na":7,"nb":1,"a":[["TED%3AAF-A0A6A3HTP9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A3HTP9-F1-model_v4_TED01"],["TED%3AAF-A0A6A3VAY2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A3VAY2-F1-model_v4_TED01"],["TED%3AAF-A0A6A3ZRY1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A3ZRY1-F1-model_v4_TED01"],["TED%3AAF-A0A6A3VYK4-F1-model_v4_TED02","TED novel fold AF-A0A6A3VYK4-F1-model_v4_TED02"],["TED%3AAF-A0A6A3XBI8-F1-model_v4_TED02","TED novel fold AF-A0A6A3XBI8-F1-model_v4_TED02"],["TED%3AAF-A0A6G0PL32-F1-model_v4_TED01","TED novel fold AF-A0A6G0PL32-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A53985","Phytophthora fragariae"]]},{"id":"NCBITaxon:68892","l":"Streptococcus infantis","na":1,"nb":7,"a":[["TED%3AAF-A0A0F2E1C7-F1-model_v4_TED04","TED novel fold AF-A0A0F2E1C7-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A68892","Streptococcus infantis"],["NCBITaxon%3A889204","Streptococcus infantis ATCC 700779"],["NCBITaxon%3A1005705","Streptococcus infantis SK1076"],["NCBITaxon%3A871237","Streptococcus infantis SK1302"],["NCBITaxon%3A1035189","Streptococcus infantis SK970"],["NCBITaxon%3A1159208","Streptococcus infantis SPAR10"]]},{"id":"NCBITaxon:884204","l":"Burkholderia pseudomallei (strain 1026b)","na":7,"nb":1,"a":[["Pfam%3APF18451","Contact-dependent growth inhibition CdiA C-terminal domain"],["Pfam%3APF07077","Virulence factor BPSS1818"],["Pfam%3APF11958","Surface attachment protein BPSS1860"],["Pfam%3APF28203","CDI System Immunity Component"],["Pfam%3APF13018","Extended Signal Peptide of Type V secretion system"],["Pfam%3APF05594","Haemagglutinin repeat"]],"b":[["NCBITaxon%3A884204","Burkholderia pseudomallei 1026b"]]},{"id":"NCBITaxon:892","l":"Desulfuromonas sp.","na":7,"nb":1,"a":[["TED%3AAF-A0A2J6J079-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J6J079-F1-model_v4_TED01"],["TED%3AAF-A0A2N6EEP5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2N6EEP5-F1-model_v4_TED03"],["TED%3AAF-A0A2N6F027-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N6F027-F1-model_v4_TED02"],["TED%3AAF-A0A2N6FEU0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N6FEU0-F1-model_v4_TED01"],["TED%3AAF-A0A2N6FKI0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N6FKI0-F1-model_v4_TED01"],["TED%3AAF-A0A2N6DYD3-F1-model_v4_TED01","TED novel fold AF-A0A2N6DYD3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A892","Desulfuromonas sp."]]},{"id":"NCBITaxon:1018","l":"Capnocytophaga ochracea","na":1,"nb":6,"a":[["TED%3AAF-A0A2X2T3Z4-F1-model_v4_TED01","TED novel fold AF-A0A2X2T3Z4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1018","Capnocytophaga ochracea"],["NCBITaxon%3A521097","Capnocytophaga ochracea DSM 7271"],["NCBITaxon%3A873517","Capnocytophaga ochracea F0287"],["NCBITaxon%3A1410029","Capnocytophaga ochracea HMP_JCVI_SC0240"],["NCBITaxon%3A1125719","Capnocytophaga ochracea str. Holt 25"],["NCBITaxon%3A1019","Capnocytophaga sputigena"]]},{"id":"NCBITaxon:103816","l":"Rhodococcus pyridinivorans","na":1,"nb":6,"a":[["TED%3AAF-A0A419ZLU8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A419ZLU8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A103816","Rhodococcus pyridinivorans"],["NCBITaxon%3A1114960","Rhodococcus pyridinivorans AK37"],["NCBITaxon%3A1303690","Rhodococcus pyridinivorans JCM 10940 = NBRC 100608"],["NCBITaxon%3A1441730","Rhodococcus pyridinivorans KG-16"],["NCBITaxon%3A1041510","Rhodococcus pyridinivorans NAM81"],["NCBITaxon%3A1435356","Rhodococcus pyridinivorans SB3094"]]},{"id":"NCBITaxon:112090","l":"Aphanomyces astaci","na":6,"nb":1,"a":[["TED%3AAF-A0A396ZSI1-F1-model_v4_TED01","TED novel fold AF-A0A396ZSI1-F1-model_v4_TED01"],["TED%3AAF-A0A397AN04-F1-model_v4_TED03","TED novel fold AF-A0A397AN04-F1-model_v4_TED03"],["TED%3AAF-A0A3R7E1X6-F1-model_v4_TED02","TED novel fold AF-A0A3R7E1X6-F1-model_v4_TED02"],["TED%3AAF-A0A418C3Y3-F1-model_v4_TED01","TED novel fold AF-A0A418C3Y3-F1-model_v4_TED01"],["TED%3AAF-A0A6A5AJC4-F1-model_v4_TED01","TED novel fold AF-A0A6A5AJC4-F1-model_v4_TED01"],["TED%3AAF-W4FQR6-F1-model_v4_TED01","TED novel fold AF-W4FQR6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A112090","Aphanomyces astaci"]]},{"id":"NCBITaxon:1193534","l":"uncultured Flavonifractor sp.","na":6,"nb":1,"a":[["TED%3AAF-A0A1C6GG29-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C6GG29-F1-model_v4_TED01"],["TED%3AAF-A0A1C6HJ74-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A1C6HJ74-F1-model_v4_TED05"],["TED%3AAF-A0A1C6DL99-F1-model_v4_TED01","TED novel fold AF-A0A1C6DL99-F1-model_v4_TED01"],["TED%3AAF-A0A1C6GAL2-F1-model_v4_TED02","TED novel fold AF-A0A1C6GAL2-F1-model_v4_TED02"],["TED%3AAF-A0A1C6GZ65-F1-model_v4_TED01","TED novel fold AF-A0A1C6GZ65-F1-model_v4_TED01"],["TED%3AAF-A0A1C6HXH7-F1-model_v4_TED02","TED novel fold AF-A0A1C6HXH7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1193534","uncultured Flavonifractor sp."]]},{"id":"NCBITaxon:1286","l":"Staphylococcus simulans","na":1,"nb":6,"a":[["Pfam%3APF25533","Lysostaphin, N-terminal domain"]],"b":[["NCBITaxon%3A1285","Staphylococcus intermedius"],["NCBITaxon%3A1286","Staphylococcus simulans"],["NCBITaxon%3A883166","Staphylococcus simulans ACS-120-V-Sch1"],["NCBITaxon%3A1287","Staphylococcus simulans bv. staphylolyticus"],["NCBITaxon%3A1405498","Staphylococcus simulans UMC-CNS-990"],["NCBITaxon%3A29387","Staphylococcus sp."]]},{"id":"NCBITaxon:1288","l":"Staphylococcus xylosus","na":1,"nb":6,"a":[["Pfam%3APF02603","HPr Serine kinase N terminus"]],"b":[["NCBITaxon%3A246432","Staphylococcus equorum"],["NCBITaxon%3A1293","Staphylococcus gallinarum"],["NCBITaxon%3A29387","Staphylococcus sp."],["NCBITaxon%3A1288","Staphylococcus xylosus"],["NCBITaxon%3A1353979","Staphylococcus xylosus DMB3-Bh1"],["NCBITaxon%3A1262650","Staphylococcus xylosus NJ"]]},{"id":"NCBITaxon:137591","l":"Weissella cibaria","na":1,"nb":6,"a":[["TED%3AAF-A0A0D1LFQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D1LFQ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A137591","Weissella cibaria"],["NCBITaxon%3A1255594","Weissella cibaria 3385"],["NCBITaxon%3A1255595","Weissella cibaria 3386"],["NCBITaxon%3A1357418","Weissella cibaria F16_1"],["NCBITaxon%3A911104","Weissella cibaria KACC 11862"],["NCBITaxon%3A1583","Weissella confusa"]]},{"id":"NCBITaxon:1409","l":"Bacillus sp. (in: firmicutes)","na":6,"nb":1,"a":[["Pfam%3APF02903","Alpha amylase, N-terminal ig-like domain"],["Pfam%3APF12123","PlyG Cell wall binding domain"],["Pfam%3APF24517","Carbohydrate-binding module family 96"],["Pfam%3APF07827","KNTase C-terminal domain"],["TED%3AAF-A0A3D0E1V5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D0E1V5-F1-model_v4_TED01"],["TED%3AAF-A0A3D5U4K3-F1-model_v4_TED01","TED novel fold AF-A0A3D5U4K3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1409","Bacillus sp. (in: firmicutes)"]]},{"id":"NCBITaxon:1509","l":"Clostridium sporogenes","na":1,"nb":6,"a":[["Pfam%3APF06050","2-hydroxyglutaryl-CoA dehydratase, D-component"]],"b":[["NCBITaxon%3A1491","Clostridium botulinum"],["NCBITaxon%3A1506","Clostridium sp."],["NCBITaxon%3A1509","Clostridium sporogenes"],["NCBITaxon%3A471871","Clostridium sporogenes ATCC 15579"],["NCBITaxon%3A1075091","Clostridium sporogenes PA 3679"],["NCBITaxon%3A378516","Clostridium sporogenes subsp. tusciae"]]},{"id":"NCBITaxon:1710","l":"Cellulosimicrobium cellulans","na":1,"nb":6,"a":[["Pfam%3APF16483","Beta-1,3-glucanase"]],"b":[["NCBITaxon%3A1710","Cellulosimicrobium cellulans"],["NCBITaxon%3A1350482","Cellulosimicrobium cellulans F16"],["NCBITaxon%3A903523","Cellulosimicrobium cellulans J1"],["NCBITaxon%3A935838","Cellulosimicrobium cellulans J34"],["NCBITaxon%3A935839","Cellulosimicrobium cellulans J36"],["NCBITaxon%3A1242247","Cellulosimicrobium cellulans LMG 16121"]]},{"id":"NCBITaxon:1754192","l":"Anaeromyces robustus","na":6,"nb":1,"a":[["TED%3AAF-A0A1Y1WPZ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y1WPZ9-F1-model_v4_TED01"],["TED%3AAF-A0A1Y1X1Y7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Y1X1Y7-F1-model_v4_TED02"],["TED%3AAF-A0A1Y1XPC1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Y1XPC1-F1-model_v4_TED02"],["TED%3AAF-A0A1Y1VRN1-F1-model_v4_TED04","TED novel fold AF-A0A1Y1VRN1-F1-model_v4_TED04"],["TED%3AAF-A0A1Y1XNI2-F1-model_v4_TED01","TED novel fold AF-A0A1Y1XNI2-F1-model_v4_TED01"],["TED%3AAF-A0A1Y1XR04-F1-model_v4_TED01","TED novel fold AF-A0A1Y1XR04-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1754192","Anaeromyces robustus"]]},{"id":"NCBITaxon:1861","l":"Geodermatophilus obscurus","na":1,"nb":6,"a":[["TED%3AAF-A0A1M7SWB5-F1-model_v4_TED02","TED novel fold AF-A0A1M7SWB5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1296565","Geodermatophilus amargosae"],["NCBITaxon%3A1523247","Geodermatophilus dictyosporus"],["NCBITaxon%3A1861","Geodermatophilus obscurus"],["NCBITaxon%3A526225","Geodermatophilus obscurus DSM 43160"],["NCBITaxon%3A1523248","Geodermatophilus obscurus subsp. utahensis"],["NCBITaxon%3A97398","Streptomyces abikoensis"]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":1,"nb":6,"a":[["Pfam%3APF26312","Domain of unknown function (DUF8083)"]],"b":[["NCBITaxon%3A1906","Streptomyces fradiae"],["NCBITaxon%3A1319510","Streptomyces fradiae ATCC 10745 = DSM 40063"],["NCBITaxon%3A285449","Streptomyces fradiae subsp. acinicolor"],["NCBITaxon%3A2871172","Streptomyces fradiae V-1-3"],["NCBITaxon%3A66894","Streptomyces griseobrunneus"],["NCBITaxon%3A1909","Streptomyces griseolus"]]},{"id":"NCBITaxon:1908690","l":"Fimbriiglobus ruber","na":6,"nb":1,"a":[["TED%3AAF-A0A225DH96-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A225DH96-F1-model_v4_TED01"],["TED%3AAF-A0A225DLF8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A225DLF8-F1-model_v4_TED03"],["TED%3AAF-A0A225E5P1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A225E5P1-F1-model_v4_TED01"],["TED%3AAF-A0A225CYI1-F1-model_v4_TED02","TED novel fold AF-A0A225CYI1-F1-model_v4_TED02"],["TED%3AAF-A0A225CZP0-F1-model_v4_TED02","TED novel fold AF-A0A225CZP0-F1-model_v4_TED02"],["TED%3AAF-A0A225DEG1-F1-model_v4_TED02","TED novel fold AF-A0A225DEG1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1908690","Fimbriiglobus ruber"]]},{"id":"NCBITaxon:2026754","l":"Legionellales bacterium","na":6,"nb":1,"a":[["TED%3AAF-A0A2E6W6A1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E6W6A1-F1-model_v4_TED01"],["TED%3AAF-A0A2E0PUP6-F1-model_v4_TED01","TED novel fold AF-A0A2E0PUP6-F1-model_v4_TED01"],["TED%3AAF-A0A2E3MFC7-F1-model_v4_TED01","TED novel fold AF-A0A2E3MFC7-F1-model_v4_TED01"],["TED%3AAF-A0A2E6W7Z1-F1-model_v4_TED01","TED novel fold AF-A0A2E6W7Z1-F1-model_v4_TED01"],["TED%3AAF-A0A2E6W9H5-F1-model_v4_TED02","TED novel fold AF-A0A2E6W9H5-F1-model_v4_TED02"],["TED%3AAF-A0A2E6W9H5-F1-model_v4_TED03","TED novel fold AF-A0A2E6W9H5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2026754","Legionellales bacterium"]]},{"id":"NCBITaxon:2026788","l":"Rickettsiales bacterium","na":6,"nb":1,"a":[["TED%3AAF-A0A2D6ZXG0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D6ZXG0-F1-model_v4_TED01"],["TED%3AAF-A0A2D9KP70-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9KP70-F1-model_v4_TED01"],["TED%3AAF-A0A2E9XWG5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E9XWG5-F1-model_v4_TED01"],["TED%3AAF-A0A2E0EMB5-F1-model_v4_TED01","TED novel fold AF-A0A2E0EMB5-F1-model_v4_TED01"],["TED%3AAF-A0A2F0A232-F1-model_v4_TED02","TED novel fold AF-A0A2F0A232-F1-model_v4_TED02"],["TED%3AAF-A0A4V1SXV8-F1-model_v4_TED01","TED novel fold AF-A0A4V1SXV8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026788","Rickettsiales bacterium"]]},{"id":"NCBITaxon:204039","l":"Dickeya dianthicola","na":1,"nb":6,"a":[["TED%3AAF-A0A385Y0K7-F1-model_v4_TED02","TED novel fold AF-A0A385Y0K7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A204039","Dickeya dianthicola"],["NCBITaxon%3A1226343","Dickeya dianthicola GBBC 2039"],["NCBITaxon%3A1225780","Dickeya dianthicola IPO 980"],["NCBITaxon%3A1223570","Dickeya dianthicola NCPPB 3534"],["NCBITaxon%3A1223568","Dickeya dianthicola NCPPB 453"],["NCBITaxon%3A1306405","Dickeya dianthicola RNS04.9"]]},{"id":"NCBITaxon:2044936","l":"Bacteroidia bacterium","na":6,"nb":1,"a":[["TED%3AAF-A0A2G6GSB3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G6GSB3-F1-model_v4_TED01"],["TED%3AAF-A0A524QHG3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A524QHG3-F1-model_v4_TED03"],["TED%3AAF-A0A7C4Y6F0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C4Y6F0-F1-model_v4_TED02"],["TED%3AAF-A0A7Y1UBX9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y1UBX9-F1-model_v4_TED01"],["TED%3AAF-A0A7V3UD23-F1-model_v4_TED02","TED novel fold AF-A0A7V3UD23-F1-model_v4_TED02"],["TED%3AAF-A0A7Y3MKL4-F1-model_v4_TED05","TED novel fold AF-A0A7Y3MKL4-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2044936","Bacteroidia bacterium"]]},{"id":"NCBITaxon:2049044","l":"Erysipelotrichaceae bacterium","na":6,"nb":1,"a":[["TED%3AAF-A0A7C6CWM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C6CWM3-F1-model_v4_TED01"],["TED%3AAF-A0A7X8CHC5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X8CHC5-F1-model_v4_TED01"],["TED%3AAF-A0A3B9FXN9-F1-model_v4_TED02","TED novel fold AF-A0A3B9FXN9-F1-model_v4_TED02"],["TED%3AAF-A0A3C1EA06-F1-model_v4_TED03","TED novel fold AF-A0A3C1EA06-F1-model_v4_TED03"],["TED%3AAF-A0A7X8CHE4-F1-model_v4_TED02","TED novel fold AF-A0A7X8CHE4-F1-model_v4_TED02"],["TED%3AAF-A0A847LM69-F1-model_v4_TED02","TED novel fold AF-A0A847LM69-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2049044","Erysipelotrichaceae bacterium"]]},{"id":"NCBITaxon:2053569","l":"Lentisphaeria bacterium","na":6,"nb":1,"a":[["TED%3AAF-A0A348XF45-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A348XF45-F1-model_v4_TED02"],["TED%3AAF-A0A3D1V0D5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D1V0D5-F1-model_v4_TED02"],["TED%3AAF-A0A3D3JJQ2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D3JJQ2-F1-model_v4_TED02"],["TED%3AAF-A0A348XHN0-F1-model_v4_TED04","TED novel fold AF-A0A348XHN0-F1-model_v4_TED04"],["TED%3AAF-A0A348XHP1-F1-model_v4_TED01","TED novel fold AF-A0A348XHP1-F1-model_v4_TED01"],["TED%3AAF-A0A3D1UX69-F1-model_v4_TED04","TED novel fold AF-A0A3D1UX69-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2053569","Lentisphaeria bacterium"]]},{"id":"NCBITaxon:2053586","l":"Riflebacteria bacterium","na":6,"nb":1,"a":[["TED%3AAF-A0A847HK49-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A847HK49-F1-model_v4_TED02"],["TED%3AAF-A0A3B9HQS8-F1-model_v4_TED01","TED novel fold AF-A0A3B9HQS8-F1-model_v4_TED01"],["TED%3AAF-A0A3B9HWC3-F1-model_v4_TED02","TED novel fold AF-A0A3B9HWC3-F1-model_v4_TED02"],["TED%3AAF-A0A847LET6-F1-model_v4_TED03","TED novel fold AF-A0A847LET6-F1-model_v4_TED03"],["TED%3AAF-A0A847LK56-F1-model_v4_TED03","TED novel fold AF-A0A847LK56-F1-model_v4_TED03"],["TED%3AAF-A0A847LN44-F1-model_v4_TED02","TED novel fold AF-A0A847LN44-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053586","Candidatus Rifleibacteriota bacterium"]]},{"id":"NCBITaxon:2073117","l":"Anaerolineales bacterium","na":6,"nb":1,"a":[["TED%3AAF-A0A523TYN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A523TYN6-F1-model_v4_TED01"],["TED%3AAF-A0A524J9D6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A524J9D6-F1-model_v4_TED01"],["TED%3AAF-A0A7Y5BY07-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7Y5BY07-F1-model_v4_TED03"],["TED%3AAF-A0A7Y5BZ94-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y5BZ94-F1-model_v4_TED01"],["TED%3AAF-A0A363U7G5-F1-model_v4_TED06","TED novel fold AF-A0A363U7G5-F1-model_v4_TED06"],["TED%3AAF-A0A524PQP3-F1-model_v4_TED01","TED novel fold AF-A0A524PQP3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2073117","Anaerolineales bacterium"]]},{"id":"NCBITaxon:216594","l":"Mycobacterium marinum (strain ATCC BAA-535 / M)","na":6,"nb":1,"a":[["Pfam%3APF18625","ESX-1 secreted protein B PE domain"],["Pfam%3APF21856","ESX-1 secretion-associated protein EspB, PPE domain"],["Pfam%3APF10862","FcoT-like thioesterase domain"],["Pfam%3APF19053","EccD-like transmembrane domain"],["Pfam%3APF11203","Putative type VII ESX secretion system translocon, EccE"],["Pfam%3APF21545","T7SS, ESX-1 secretion system protein EccA1, N-terminal domain"]],"b":[["NCBITaxon%3A216594","Mycobacterium marinum M"]]},{"id":"NCBITaxon:2201154","l":"Chthoniobacterales bacterium","na":6,"nb":1,"a":[["TED%3AAF-A0A7V2CW09-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V2CW09-F1-model_v4_TED01"],["TED%3AAF-A0A7W1BCB1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W1BCB1-F1-model_v4_TED01"],["TED%3AAF-A0A7V9EQG7-F1-model_v4_TED02","TED novel fold AF-A0A7V9EQG7-F1-model_v4_TED02"],["TED%3AAF-A0A7W1CSQ9-F1-model_v4_TED01","TED novel fold AF-A0A7W1CSQ9-F1-model_v4_TED01"],["TED%3AAF-A0A7W1RNV9-F1-model_v4_TED02","TED novel fold AF-A0A7W1RNV9-F1-model_v4_TED02"],["TED%3AAF-A0A838DC49-F1-model_v4_TED01","TED novel fold AF-A0A838DC49-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2201154","Chthoniobacterales bacterium"]]},{"id":"NCBITaxon:2212468","l":"Bryobacteraceae bacterium","na":6,"nb":1,"a":[["TED%3AAF-A0A7C2E9E6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C2E9E6-F1-model_v4_TED02"],["TED%3AAF-A0A7Y5GEH2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y5GEH2-F1-model_v4_TED01"],["TED%3AAF-A0A7C2J7J0-F1-model_v4_TED01","TED novel fold AF-A0A7C2J7J0-F1-model_v4_TED01"],["TED%3AAF-A0A7C4FZF5-F1-model_v4_TED01","TED novel fold AF-A0A7C4FZF5-F1-model_v4_TED01"],["TED%3AAF-A0A7Y5LER7-F1-model_v4_TED01","TED novel fold AF-A0A7Y5LER7-F1-model_v4_TED01"],["TED%3AAF-A0A7Y8LIJ6-F1-model_v4_TED02","TED novel fold AF-A0A7Y8LIJ6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2212468","Bryobacteraceae bacterium"]]},{"id":"NCBITaxon:225991","l":"Comamonas aquatica","na":1,"nb":6,"a":[["TED%3AAF-A0A8B0TG78-F1-model_v4_TED02","TED novel fold AF-A0A8B0TG78-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A225991","Comamonas aquatica"],["NCBITaxon%3A1457173","Comamonas aquatica DA1877"],["NCBITaxon%3A1219031","Comamonas aquatica NBRC 14918"],["NCBITaxon%3A2708318","Comamonas aquatica subsp. aquatica"],["NCBITaxon%3A2708319","Comamonas aquatica subsp. rana"],["NCBITaxon%3A32013","Comamonas terrigena"]]},{"id":"NCBITaxon:2268204","l":"Thermoplasmatales archaeon","na":6,"nb":1,"a":[["TED%3AAF-A0A7C2AKF2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7C2AKF2-F1-model_v4_TED03"],["TED%3AAF-A0A7J2S4D8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7J2S4D8-F1-model_v4_TED03"],["TED%3AAF-A0A7J3TK18-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7J3TK18-F1-model_v4_TED02"],["TED%3AAF-A0A7C1E5G8-F1-model_v4_TED01","TED novel fold AF-A0A7C1E5G8-F1-model_v4_TED01"],["TED%3AAF-A0A842X889-F1-model_v4_TED01","TED novel fold AF-A0A842X889-F1-model_v4_TED01"],["TED%3AAF-A0A842X9F6-F1-model_v4_TED01","TED novel fold AF-A0A842X9F6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2268204","Thermoplasmatales archaeon"]]},{"id":"NCBITaxon:2484252","l":"Myxococcaceae bacterium","na":6,"nb":1,"a":[["TED%3AAF-A0A3N5HXW8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N5HXW8-F1-model_v4_TED01"],["TED%3AAF-A0A4Q5Y5E2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q5Y5E2-F1-model_v4_TED01"],["TED%3AAF-A0A4V2ATR8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4V2ATR8-F1-model_v4_TED01"],["TED%3AAF-A0A521TJ55-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521TJ55-F1-model_v4_TED01"],["TED%3AAF-A0A4Q6A6H4-F1-model_v4_TED01","TED novel fold AF-A0A4Q6A6H4-F1-model_v4_TED01"],["TED%3AAF-A0A521UGL1-F1-model_v4_TED01","TED novel fold AF-A0A521UGL1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2484252","Myxococcaceae bacterium"]]},{"id":"NCBITaxon:249188","l":"Haemophilus pittmaniae","na":1,"nb":6,"a":[["TED%3AAF-A0A377IVF0-F1-model_v4_TED01","TED novel fold AF-A0A377IVF0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A249188","Haemophilus pittmaniae"],["NCBITaxon%3A1035188","Haemophilus pittmaniae HK 85"],["NCBITaxon%3A1409957","Haemophilus pittmaniae HMP_JCVI_SC0163"],["NCBITaxon%3A1409958","Haemophilus pittmaniae HMP_JCVI_SC0173"],["NCBITaxon%3A1409959","Haemophilus pittmaniae HMP_JCVI_SC0183"],["NCBITaxon%3A1409960","Haemophilus pittmaniae HMP_JCVI_SC0190"]]},{"id":"NCBITaxon:2562705","l":"Akkermansiaceae bacterium","na":6,"nb":1,"a":[["TED%3AAF-A0A7Y1UEU6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7Y1UEU6-F1-model_v4_TED04"],["TED%3AAF-A0A7Y2U929-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y2U929-F1-model_v4_TED01"],["TED%3AAF-A0A7Y1UGE4-F1-model_v4_TED03","TED novel fold AF-A0A7Y1UGE4-F1-model_v4_TED03"],["TED%3AAF-A0A7Y1Y0C9-F1-model_v4_TED01","TED novel fold AF-A0A7Y1Y0C9-F1-model_v4_TED01"],["TED%3AAF-A0A7Y2U769-F1-model_v4_TED04","TED novel fold AF-A0A7Y2U769-F1-model_v4_TED04"],["TED%3AAF-A0A8A7W8C6-F1-model_v4_TED02","TED novel fold AF-A0A8A7W8C6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2562705","Akkermansiaceae bacterium"]]},{"id":"NCBITaxon:257309","l":"Corynebacterium diphtheriae (strain ATCC 700971 / NCTC 13129 / Biotype gravis)","na":6,"nb":1,"a":[["Pfam%3APF17893","CRISPR-associated endonuclease Cas9 beta-hairpin domain"],["Pfam%3APF18525","Cas9 C-terminal domain"],["Pfam%3APF17894","Topo homolgy domain in CRISPR-associated endonuclease Cas9"],["Pfam%3APF18357","Diphteria toxin repressor SH3 domain"],["Pfam%3APF02742","Iron dependent repressor, metal binding and dimerisation domain"],["Pfam%3APF01325","Iron dependent repressor, N-terminal DNA binding domain"]],"b":[["NCBITaxon%3A257309","Corynebacterium diphtheriae NCTC 13129"]]},{"id":"NCBITaxon:2712867","l":"Pseudenhygromyxa sp. WMMC2535","na":6,"nb":1,"a":[["TED%3AAF-A0A850GFL1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A850GFL1-F1-model_v4_TED02"],["TED%3AAF-A0A850G649-F1-model_v4_TED01","TED novel fold AF-A0A850G649-F1-model_v4_TED01"],["TED%3AAF-A0A850GCH1-F1-model_v4_TED03","TED novel fold AF-A0A850GCH1-F1-model_v4_TED03"],["TED%3AAF-A0A850GIF6-F1-model_v4_TED02","TED novel fold AF-A0A850GIF6-F1-model_v4_TED02"],["TED%3AAF-A0A850GMI1-F1-model_v4_TED01","TED novel fold AF-A0A850GMI1-F1-model_v4_TED01"],["TED%3AAF-A0A850GPM5-F1-model_v4_TED02","TED novel fold AF-A0A850GPM5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2712867","Pseudenhygromyxa sp. WMMC2535"]]},{"id":"NCBITaxon:2762","l":"Cyanophora paradoxa","na":6,"nb":1,"a":[["Pfam%3APF06799","Conserved in the green lineage and diatoms 27"],["Pfam%3APF06868","Protein of unknown function (DUF1257)"],["Pfam%3APF10693","Protein of unknown function (DUF2499)"],["Pfam%3APF10726","Protein of function (DUF2518)"],["Pfam%3APF04481","Protein of unknown function (DUF561)"],["Pfam%3APF05421","Protein of unknown function (DUF751)"]],"b":[["NCBITaxon%3A2762","Cyanophora paradoxa"]]},{"id":"NCBITaxon:284813","l":"Encephalitozoon cuniculi (strain GB-M1)","na":6,"nb":1,"a":[["Pfam%3APF17027","Histone-fold protein"],["Pfam%3APF10455","Bin/amphiphysin/Rvs domain for vesicular trafficking"],["Pfam%3APF07753","Protein of unknown function (DUF1609)"],["Pfam%3APF09591","Protein of unknown function (DUF2463)"],["Pfam%3APF12376","Protein of unknown function (DUF3654)"],["TED%3AAF-Q8SVN2-F1-model_v4_TED01","TED novel fold AF-Q8SVN2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A284813","Encephalitozoon cuniculi GB-M1"]]},{"id":"NCBITaxon:2880","l":"Ectocarpus siliculosus","na":6,"nb":1,"a":[["TED%3AAF-D7G442-F1-model_v4_TED01","TED highly-symmetric fold AF-D7G442-F1-model_v4_TED01"],["TED%3AAF-D8LQ32-F1-model_v4_TED02","TED highly-symmetric fold AF-D8LQ32-F1-model_v4_TED02"],["TED%3AAF-D7G8D2-F1-model_v4_TED01","TED novel fold AF-D7G8D2-F1-model_v4_TED01"],["TED%3AAF-D7G8R3-F1-model_v4_TED02","TED novel fold AF-D7G8R3-F1-model_v4_TED02"],["TED%3AAF-D8LC48-F1-model_v4_TED02","TED novel fold AF-D8LC48-F1-model_v4_TED02"],["TED%3AAF-D8LTU7-F1-model_v4_TED03","TED novel fold AF-D8LTU7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2880","Ectocarpus siliculosus"]]},{"id":"NCBITaxon:29339","l":"Bacillus thuringiensis serovar kurstaki","na":1,"nb":6,"a":[["Pfam%3APF07029","CryBP1 protein"]],"b":[["NCBITaxon%3A714359","Bacillus thuringiensis BMB171"],["NCBITaxon%3A29339","Bacillus thuringiensis serovar kurstaki"],["NCBITaxon%3A1279365","Bacillus thuringiensis serovar kurstaki str. HD73"],["NCBITaxon%3A1261129","Bacillus thuringiensis serovar kurstaki str. HD-1"],["NCBITaxon%3A527023","Bacillus thuringiensis serovar kurstaki str. T03a001"],["NCBITaxon%3A570416","Bacillus thuringiensis serovar kurstaki str. YBT-1520"]]},{"id":"NCBITaxon:300269","l":"Shigella sonnei (strain Ss046)","na":6,"nb":1,"a":[["Pfam%3APF17868","AAA lid domain"],["Pfam%3APF12592","ATPase, RavA, C-terminal"],["Pfam%3APF20030","MoxR domain in the MoxR-vWA-beta-propeller ternary systems"],["Pfam%3APF10729","Cell division activator CedA"],["Pfam%3APF20265","ATPase, RavA, LARA domain"],["Pfam%3APF06872","EspG protein"]],"b":[["NCBITaxon%3A300269","Shigella sonnei Ss046"]]},{"id":"NCBITaxon:32049","l":"Picosynechococcus sp. PCC 7002","na":6,"nb":1,"a":[["Pfam%3APF09367","CpeS-like protein"],["Pfam%3APF06206","CpeT/CpcT family (DUF1001)"],["Pfam%3APF12965","Domain of unknown function (DUF3854)"],["Pfam%3APF19928","Domain of unknown function (DUF6391)"],["Pfam%3APF09366","Protein of unknown function (DUF1997)"],["Pfam%3APF14870","Photosynthesis system II assembly factor YCF48"]],"b":[["NCBITaxon%3A32049","Picosynechococcus sp. PCC 7002"]]},{"id":"NCBITaxon:331111","l":"Escherichia coli O139:H28 (strain E24377A / ETEC)","na":6,"nb":1,"a":[["Pfam%3APF04336","Acyl carrier protein phosphodiesterase"],["Pfam%3APF15611","EH_Signature domain"],["Pfam%3APF24860","FdhE, C-terminal domain"],["Pfam%3APF24859","FdhE, central domain"],["Pfam%3APF04216","FdhE, N-terminal"],["Pfam%3APF03974","Ecotin"]],"b":[["NCBITaxon%3A331111","Escherichia coli O139:H28 str. E24377A"]]},{"id":"NCBITaxon:337","l":"Burkholderia glumae","na":1,"nb":6,"a":[["TED%3AAF-A0A8A8MA15-F1-model_v4_TED01","TED novel fold AF-A0A8A8MA15-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A337","Burkholderia glumae"],["NCBITaxon%3A1248414","Burkholderia glumae 3252-8"],["NCBITaxon%3A1417989","Burkholderia glumae 336gr-1"],["NCBITaxon%3A1176514","Burkholderia glumae AU6208"],["NCBITaxon%3A626418","Burkholderia glumae BGR1"],["NCBITaxon%3A1176492","Burkholderia glumae LMG 2196 = ATCC 33617"]]},{"id":"NCBITaxon:33905","l":"Bifidobacterium thermophilum","na":1,"nb":6,"a":[["TED%3AAF-A0A2N3QE79-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3QE79-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A650367","Bifidobacterium sp. JCM 7027"],["NCBITaxon%3A650368","Bifidobacterium sp. JCM 7028"],["NCBITaxon%3A33905","Bifidobacterium thermophilum"],["NCBITaxon%3A1437596","Bifidobacterium thermophilum DSM 20210"],["NCBITaxon%3A1410648","Bifidobacterium thermophilum DSM 20212"],["NCBITaxon%3A1254439","Bifidobacterium thermophilum RBL67"]]},{"id":"NCBITaxon:34062","l":"Faucicola osloensis","na":1,"nb":6,"a":[["Pfam%3APF14130","Cap4, dsDNA endonuclease domain"]],"b":[["NCBITaxon%3A34062","Faucicola osloensis"],["NCBITaxon%3A478","Moraxella nonliquefaciens"],["NCBITaxon%3A1138309","Moraxella osloensis ARD 1"],["NCBITaxon%3A1138312","Moraxella osloensis ARD 11"],["NCBITaxon%3A1138310","Moraxella osloensis ARD 2"],["NCBITaxon%3A1138311","Moraxella osloensis ARD 3"]]},{"id":"NCBITaxon:353153","l":"Trypanosoma cruzi (strain CL Brener)","na":6,"nb":1,"a":[["Pfam%3APF03738","Glutathionylspermidine synthase preATP-grasp"],["TED%3AAF-Q4D5Q0-F1-model_v4_TED01","TED highly-symmetric fold AF-Q4D5Q0-F1-model_v4_TED01"],["TED%3AAF-Q4CQE1-F1-model_v4_TED01","TED novel fold AF-Q4CQE1-F1-model_v4_TED01"],["TED%3AAF-Q4DRS0-F1-model_v4_TED01","TED novel fold AF-Q4DRS0-F1-model_v4_TED01"],["TED%3AAF-Q4DY69-F1-model_v4_TED01","TED novel fold AF-Q4DY69-F1-model_v4_TED01"],["TED%3AAF-Q4E0W9-F1-model_v4_TED01","TED novel fold AF-Q4E0W9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A353153","Trypanosoma cruzi strain CL Brener"]]},{"id":"NCBITaxon:361100","l":"Bacillus cereus (strain Q1)","na":6,"nb":1,"a":[["Pfam%3APF13555","P-loop containing region of AAA domain"],["Pfam%3APF18496","Collagenase G catalytic helper subdomain"],["Pfam%3APF09983","Wadjet protein JetD, C-terminal"],["Pfam%3APF18982","Wadjet protein JetA"],["Pfam%3APF13835","Wadjet protein JetB"],["Pfam%3APF08453","Peptidase family M9 N-terminal"]],"b":[["NCBITaxon%3A361100","Bacillus cereus Q1"]]},{"id":"NCBITaxon:364106","l":"Escherichia coli (strain UTI89 / UPEC)","na":6,"nb":1,"a":[["Pfam%3APF26516","Inner membrane protein CbrB"],["Pfam%3APF17151","Periplasmic sensor domain"],["Pfam%3APF08971","Glycogen synthesis protein"],["Pfam%3APF06005","ZapB family"],["Pfam%3APF09618","CRISPR-associated protein (Cas_Csy4)"],["Pfam%3APF28061","Type I toxin DinQ-like"]],"b":[["NCBITaxon%3A364106","Escherichia coli UTI89"]]},{"id":"NCBITaxon:373","l":"Gillisella vitis","na":1,"nb":6,"a":[["TED%3AAF-A0A368P0R2-F1-model_v4_TED01","TED novel fold AF-A0A368P0R2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A361","Agrobacterium sp."],["NCBITaxon%3A1265506","Agrobacterium vitis ATCC 49767"],["NCBITaxon%3A1385422","Agrobacterium vitis pv. musae"],["NCBITaxon%3A1384504","Agrobacterium vitis pv. vitis"],["NCBITaxon%3A373","Gillisella vitis"],["NCBITaxon%3A204072","Ramlibacter henchirensis"]]},{"id":"NCBITaxon:37372","l":"Helicobacter bilis","na":1,"nb":6,"a":[["TED%3AAF-A0A4U8UA27-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8UA27-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28447","Clavibacter michiganensis"],["NCBITaxon%3A33014","Clavibacter michiganensis subsp. insidiosus"],["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A613026","Helicobacter bilis ATCC 43879"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"],["NCBITaxon%3A1235804","Helicobacter bilis WiWa"]]},{"id":"NCBITaxon:374930","l":"Haemophilus influenzae (strain PittEE)","na":6,"nb":1,"a":[["Pfam%3APF02952","L-fucose isomerase, C-terminal domain"],["Pfam%3APF07881","L-fucose isomerase, first N-terminal domain"],["Pfam%3APF07882","L-fucose isomerase, second N-terminal domain"],["Pfam%3APF02313","Fumarate reductase subunit D"],["Pfam%3APF13286","Phosphohydrolase-associated domain"],["Pfam%3APF04751","Dual-action ribosomal maturation protein DarP"]],"b":[["NCBITaxon%3A374930","Haemophilus influenzae PittEE"]]},{"id":"NCBITaxon:388919","l":"","na":6,"nb":1,"a":[["Pfam%3APF20921","Domain of unknown function DUF1846, C-terminal"],["Pfam%3APF08903","Domain of unknown function DUF1846, N-terminal"],["Pfam%3APF03186","CobD/Cbib protein"],["Pfam%3APF08503","Tetrahydrodipicolinate succinyltransferase N-terminal"],["Pfam%3APF06949","Protein of unknown function (DUF1292)"],["Pfam%3APF06160","Septation ring formation regulator, EzrA"]],"b":[["NCBITaxon%3A388919","Streptococcus sanguinis SK36"]]},{"id":"NCBITaxon:399742","l":"Enterobacter sp. (strain 638)","na":6,"nb":1,"a":[["Pfam%3APF12404","Peptidase"],["Pfam%3APF27465","DNA-binding protein Fis N-terminal domain"],["Pfam%3APF02300","Fumarate reductase subunit C"],["Pfam%3APF04102","SlyX"],["Pfam%3APF06005","ZapB family"],["Pfam%3APF07208","Protein of unknown function (DUF1414)"]],"b":[["NCBITaxon%3A399742","Enterobacter sp. 638"]]},{"id":"NCBITaxon:401614","l":"Francisella tularensis subsp. novicida (strain ATCC 15482 / CCUG 33449 / U112)","na":6,"nb":1,"a":[["Pfam%3APF21918","CRISPR-associated endonuclease Cpf1 REC2 domain"],["Pfam%3APF22385","CRISPR-associated endonuclease Cas9, C-terminal domain"],["Pfam%3APF22222","CRISPR-associated endonuclease Cpf1 PI domain"],["Pfam%3APF21069","CRISPR-associated endonuclease Cas9 alpha-helical lobe"],["Pfam%3APF11685","Protein of unknown function (DUF3281)"],["PROSITE%3APS01300","RecR protein signature"]],"b":[["NCBITaxon%3A401614","Francisella tularensis subsp. novicida U112"]]},{"id":"NCBITaxon:420246","l":"Geobacillus thermodenitrificans (strain NG80-2)","na":6,"nb":1,"a":[["Pfam%3APF21445","ADDB, N-terminal"],["Pfam%3APF02623","FliW protein"],["Pfam%3APF24898","Cyclic-di-AMP phosphodiesterase GdpP-like, GGDEF domain"],["Pfam%3APF07457","Protein of unknown function (DUF1516)"],["Pfam%3APF12227","Protein of unknown function (DUF3603)"],["Pfam%3APF12538","DNA transporter"]],"b":[["NCBITaxon%3A420246","Geobacillus thermodenitrificans NG80-2"]]},{"id":"NCBITaxon:43675","l":"Rothia mucilaginosa","na":1,"nb":6,"a":[["TED%3AAF-A0A291DCT6-F1-model_v4_TED03","TED novel fold AF-A0A291DCT6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A43675","Rothia mucilaginosa"],["NCBITaxon%3A553201","Rothia mucilaginosa ATCC 25296"],["NCBITaxon%3A1073369","Rothia mucilaginosa CC87LB"],["NCBITaxon%3A680646","Rothia mucilaginosa DY-18"],["NCBITaxon%3A1255664","Rothia mucilaginosa M1710"],["NCBITaxon%3A563033","Rothia mucilaginosa M508"]]},{"id":"NCBITaxon:44445","l":"Pseudo-nitzschia australis","na":6,"nb":1,"a":[["TED%3AAF-A0A6V0BU40-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6V0BU40-F1-model_v4_TED02"],["TED%3AAF-A0A7S4AM56-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4AM56-F1-model_v4_TED01"],["TED%3AAF-A0A7S4EET1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4EET1-F1-model_v4_TED01"],["TED%3AAF-A0A6V0CM61-F1-model_v4_TED02","TED novel fold AF-A0A6V0CM61-F1-model_v4_TED02"],["TED%3AAF-A0A7S4ABE6-F1-model_v4_TED01","TED novel fold AF-A0A7S4ABE6-F1-model_v4_TED01"],["TED%3AAF-A0A7S4EFE9-F1-model_v4_TED01","TED novel fold AF-A0A7S4EFE9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A44445","Pseudo-nitzschia australis"]]},{"id":"NCBITaxon:464988","l":"Hemiselmis andersenii","na":6,"nb":1,"a":[["TED%3AAF-A0A7S0TL45-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0TL45-F1-model_v4_TED01"],["TED%3AAF-A0A7S1GUI2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1GUI2-F1-model_v4_TED01"],["TED%3AAF-A0A7S1DED9-F1-model_v4_TED01","TED novel fold AF-A0A7S1DED9-F1-model_v4_TED01"],["TED%3AAF-A0A7S1DF29-F1-model_v4_TED01","TED novel fold AF-A0A7S1DF29-F1-model_v4_TED01"],["TED%3AAF-A0A7S1DXR5-F1-model_v4_TED01","TED novel fold AF-A0A7S1DXR5-F1-model_v4_TED01"],["TED%3AAF-A0A7S1MTU0-F1-model_v4_TED01","TED novel fold AF-A0A7S1MTU0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A464988","Hemiselmis andersenii"]]},{"id":"NCBITaxon:489","l":"Neisseria polysaccharea","na":1,"nb":6,"a":[["Pfam%3APF22582","Amylosucrase, C-terminal domain"]],"b":[["NCBITaxon%3A483","Neisseria cinerea"],["NCBITaxon%3A489","Neisseria polysaccharea"],["NCBITaxon%3A546267","Neisseria polysaccharea ATCC 43768"],["NCBITaxon%3A933269","Neisseria polysaccharea NS342"],["NCBITaxon%3A490","Neisseria sicca"],["NCBITaxon%3A192066","Neisseria sp."]]},{"id":"NCBITaxon:4934","l":"Lachancea kluyveri","na":6,"nb":1,"a":[["Pfam%3APF21986","Allophanate hydrolase C-terminal domain"],["Pfam%3APF21187","Yeast adenylate cyclase, C-terminal"],["Pfam%3APF02626","Carboxyltransferase domain, subdomain A and B"],["Pfam%3APF02682","Carboxyltransferase domain, subdomain C and D"],["Pfam%3APF07958","Protein of unknown function (DUF1688)"],["Pfam%3APF12471","GTP cyclohydrolase N terminal"]],"b":[["NCBITaxon%3A4934","Lachancea kluyveri"]]},{"id":"NCBITaxon:544580","l":"Actinomyces oris","na":1,"nb":6,"a":[["TED%3AAF-A0A1Q8WF60-F1-model_v4_TED01","TED novel fold AF-A0A1Q8WF60-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A3050225","Actinomyces acetigenes"],["NCBITaxon%3A1655","Actinomyces naeslundii"],["NCBITaxon%3A544580","Actinomyces oris"],["NCBITaxon%3A871541","Actinomyces oris K20"],["NCBITaxon%3A29317","Actinomyces sp."],["NCBITaxon%3A1656","Actinomyces viscosus"]]},{"id":"NCBITaxon:59511","l":"Pseudomonas syringae pv. maculicola","na":1,"nb":6,"a":[["Pfam%3APF15457","Type III T3SS secreted effector HopW1-1/HopPmaA"]],"b":[["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A59511","Pseudomonas syringae pv. maculicola"],["NCBITaxon%3A629265","Pseudomonas syringae pv. maculicola str. ES4326"],["NCBITaxon%3A698748","Pseudomonas syringae pv. maculicola str. F1"],["NCBITaxon%3A698749","Pseudomonas syringae pv. maculicola str. M3"],["NCBITaxon%3A698750","Pseudomonas syringae pv. maculicola str. M6"]]},{"id":"NCBITaxon:59799","l":"Angomonas deanei","na":6,"nb":1,"a":[["TED%3AAF-A0A7G2CPC7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7G2CPC7-F1-model_v4_TED03"],["TED%3AAF-A0A7G2BZJ1-F1-model_v4_TED02","TED novel fold AF-A0A7G2BZJ1-F1-model_v4_TED02"],["TED%3AAF-A0A7G2C3S7-F1-model_v4_TED02","TED novel fold AF-A0A7G2C3S7-F1-model_v4_TED02"],["TED%3AAF-A0A7G2CRL5-F1-model_v4_TED01","TED novel fold AF-A0A7G2CRL5-F1-model_v4_TED01"],["TED%3AAF-S9VAC3-F1-model_v4_TED02","TED novel fold AF-S9VAC3-F1-model_v4_TED02"],["TED%3AAF-S9VIQ1-F1-model_v4_TED01","TED novel fold AF-S9VIQ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A59799","Angomonas deanei"]]},{"id":"NCBITaxon:59823","l":"Prevotella sp.","na":6,"nb":1,"a":[["TED%3AAF-A0A350PQL3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A350PQL3-F1-model_v4_TED03"],["TED%3AAF-A0A353E5D4-F1-model_v4_TED01","TED novel fold AF-A0A353E5D4-F1-model_v4_TED01"],["TED%3AAF-A0A353E6B1-F1-model_v4_TED02","TED novel fold AF-A0A353E6B1-F1-model_v4_TED02"],["TED%3AAF-A0A3C1E689-F1-model_v4_TED01","TED novel fold AF-A0A3C1E689-F1-model_v4_TED01"],["TED%3AAF-A0A3D1CZM6-F1-model_v4_TED01","TED novel fold AF-A0A3D1CZM6-F1-model_v4_TED01"],["TED%3AAF-A0A3D1GWB4-F1-model_v4_TED03","TED novel fold AF-A0A3D1GWB4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A59823","Prevotella sp."]]},{"id":"NCBITaxon:68280","l":"Streptomyces violaceusniger","na":1,"nb":6,"a":[["TED%3AAF-A0A0X3VKA0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0X3VKA0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1912","Streptomyces hygroscopicus"],["NCBITaxon%3A68042","Streptomyces hygroscopicus subsp. hygroscopicus"],["NCBITaxon%3A33900","Streptomyces murinus"],["NCBITaxon%3A114686","Streptomyces phaeoluteigriseus"],["NCBITaxon%3A68280","Streptomyces violaceusniger"],["NCBITaxon%3A653045","Streptomyces violaceusniger Tu 4113"]]},{"id":"NCBITaxon:690887","l":"Lophiotrema nucula","na":6,"nb":1,"a":[["TED%3AAF-A0A6A5YKY9-F1-model_v4_TED01","TED novel fold AF-A0A6A5YKY9-F1-model_v4_TED01"],["TED%3AAF-A0A6A5YT26-F1-model_v4_TED01","TED novel fold AF-A0A6A5YT26-F1-model_v4_TED01"],["TED%3AAF-A0A6A5YZE9-F1-model_v4_TED01","TED novel fold AF-A0A6A5YZE9-F1-model_v4_TED01"],["TED%3AAF-A0A6A5Z722-F1-model_v4_TED01","TED novel fold AF-A0A6A5Z722-F1-model_v4_TED01"],["TED%3AAF-A0A6A5ZAN3-F1-model_v4_TED02","TED novel fold AF-A0A6A5ZAN3-F1-model_v4_TED02"],["TED%3AAF-A0A6A5ZR44-F1-model_v4_TED01","TED novel fold AF-A0A6A5ZR44-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A690887","Lophiotrema nucula"]]},{"id":"NCBITaxon:70125","l":"Nitrospira sp.","na":6,"nb":1,"a":[["TED%3AAF-A0A3C1YZ39-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3C1YZ39-F1-model_v4_TED02"],["TED%3AAF-A0A532C4P6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A532C4P6-F1-model_v4_TED01"],["TED%3AAF-A0A532D6L6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A532D6L6-F1-model_v4_TED01"],["TED%3AAF-A0A532DGQ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A532DGQ7-F1-model_v4_TED01"],["TED%3AAF-A0A7C7WA77-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C7WA77-F1-model_v4_TED01"],["TED%3AAF-A0A533BBR6-F1-model_v4_TED01","TED novel fold AF-A0A533BBR6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A70125","Nitrospira sp."]]},{"id":"NCBITaxon:747089","l":"Rhizophagus irregularis (strain DAOM 181602 / DAOM 197198 / MUCL 43194)","na":6,"nb":1,"a":[["Pfam%3APF20147","Crinkler effector protein N-terminal domain"],["TED%3AAF-A0A2H5REZ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H5REZ7-F1-model_v4_TED01"],["TED%3AAF-A0A2P4PHF1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2P4PHF1-F1-model_v4_TED02"],["TED%3AAF-U9TZ49-F1-model_v4_TED02","TED highly-symmetric fold AF-U9TZ49-F1-model_v4_TED02"],["TED%3AAF-A0A2H5SCM8-F1-model_v4_TED02","TED novel fold AF-A0A2H5SCM8-F1-model_v4_TED02"],["TED%3AAF-A0A2H5SIW6-F1-model_v4_TED01","TED novel fold AF-A0A2H5SIW6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A747089","Rhizophagus irregularis DAOM 181602=DAOM 197198"]]},{"id":"NCBITaxon:75058","l":"Bodo saltans","na":6,"nb":1,"a":[["TED%3AAF-A0A0S4IKA4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S4IKA4-F1-model_v4_TED01"],["TED%3AAF-A0A0S4IKA4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0S4IKA4-F1-model_v4_TED02"],["TED%3AAF-A0A0S4IN57-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A0S4IN57-F1-model_v4_TED04"],["TED%3AAF-A0A0S4JT99-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S4JT99-F1-model_v4_TED01"],["TED%3AAF-A0A0S4JE73-F1-model_v4_TED02","TED novel fold AF-A0A0S4JE73-F1-model_v4_TED02"],["TED%3AAF-A0A0S4JGE0-F1-model_v4_TED01","TED novel fold AF-A0A0S4JGE0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A75058","Bodo saltans"]]},{"id":"NCBITaxon:78245","l":"Xanthobacter autotrophicus (strain ATCC BAA-1158 / Py2)","na":6,"nb":1,"a":[["Pfam%3APF08882","Acetone carboxylase gamma subunit"],["Pfam%3APF19278","Hydantoinase/oxoprolinase C-terminal domain"],["Pfam%3APF05378","Hydantoinase/oxoprolinase N-terminal region"],["Pfam%3APF01968","Hydantoinase/oxoprolinase"],["Pfam%3APF02538","Hydantoinase B/oxoprolinase"],["TED%3AAF-A7IL68-F1-model_v4_TED01","TED highly-symmetric fold AF-A7IL68-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A78245","Xanthobacter versatilis"]]},{"id":"NCBITaxon:863372","l":"Herbaspirillum huttiense","na":1,"nb":6,"a":[["TED%3AAF-A0A4P7ADR5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P7ADR5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A863372","Herbaspirillum huttiense"],["NCBITaxon%3A86172","Herbaspirillum huttiense subsp. huttiense"],["NCBITaxon%3A3074428","Herbaspirillum huttiense subsp. lycopersici"],["NCBITaxon%3A3075126","Herbaspirillum huttiense subsp. nephrolepidis"],["NCBITaxon%3A230311","Herbaspirillum huttiense subsp. putei"],["NCBITaxon%3A1235558","Herbaspirillum huttiense subsp. putei IAM 15032"]]},{"id":"NCBITaxon:1006551","l":"Klebsiella michiganensis (strain ATCC 8724 / DSM 4798 / JCM 20051 / NBRC 3318 / NRRL B-199 / KCTC 1686 / BUCSAV 143 / CCM 1901)","na":5,"nb":1,"a":[["Pfam%3APF07833","Copper amine oxidase N-terminal domain"],["Pfam%3APF18427","DD-reactivating factor swiveling domain"],["Pfam%3APF02288","Dehydratase medium subunit"],["Pfam%3APF08841","Diol dehydratase reactivase ATPase-like domain"],["TED%3AAF-A0A0H3H2M0-F1-model_v4_TED01","TED novel fold AF-A0A0H3H2M0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1006551","Klebsiella michiganensis KCTC 1686"]]},{"id":"NCBITaxon:100861","l":"Aphanomyces euteiches","na":5,"nb":1,"a":[["TED%3AAF-A0A6G0WQE8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6G0WQE8-F1-model_v4_TED02"],["TED%3AAF-A0A6G0WJG0-F1-model_v4_TED02","TED novel fold AF-A0A6G0WJG0-F1-model_v4_TED02"],["TED%3AAF-A0A6G0WL59-F1-model_v4_TED01","TED novel fold AF-A0A6G0WL59-F1-model_v4_TED01"],["TED%3AAF-A0A6G0WMX7-F1-model_v4_TED01","TED novel fold AF-A0A6G0WMX7-F1-model_v4_TED01"],["TED%3AAF-A0A6G0WTB7-F1-model_v4_TED02","TED novel fold AF-A0A6G0WTB7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A100861","Aphanomyces euteiches"]]},{"id":"NCBITaxon:1055524","l":"Burkholderia cenocepacia (strain H111)","na":5,"nb":1,"a":[["Pfam%3APF20148","Domain of unknown function (DUF6531)"],["Pfam%3APF14430","Immunity protein Imm1"],["Pfam%3APF05488","PAAR motif"],["Pfam%3APF03527","RHS protein"],["Pfam%3APF05593","RHS Repeat"]],"b":[["NCBITaxon%3A1055524","Burkholderia cenocepacia H111"]]},{"id":"NCBITaxon:1137281","l":"Xanthomarina gelatinilytica","na":5,"nb":1,"a":[["TED%3AAF-A0A3C0F097-F1-model_v4_TED01","TED novel fold AF-A0A3C0F097-F1-model_v4_TED01"],["TED%3AAF-A0A3C0F157-F1-model_v4_TED01","TED novel fold AF-A0A3C0F157-F1-model_v4_TED01"],["TED%3AAF-A0A3C0F5W9-F1-model_v4_TED01","TED novel fold AF-A0A3C0F5W9-F1-model_v4_TED01"],["TED%3AAF-A0A3C0F8S8-F1-model_v4_TED01","TED novel fold AF-A0A3C0F8S8-F1-model_v4_TED01"],["TED%3AAF-A0A3D6BP25-F1-model_v4_TED02","TED novel fold AF-A0A3D6BP25-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1137281","Xanthomarina gelatinilytica"]]},{"id":"NCBITaxon:1172189","l":"Oxytricha trifallax","na":5,"nb":1,"a":[["TED%3AAF-J9EH04-F1-model_v4_TED01","TED highly-symmetric fold AF-J9EH04-F1-model_v4_TED01"],["TED%3AAF-J9IW26-F1-model_v4_TED03","TED highly-symmetric fold AF-J9IW26-F1-model_v4_TED03"],["TED%3AAF-J9HM40-F1-model_v4_TED01","TED novel fold AF-J9HM40-F1-model_v4_TED01"],["TED%3AAF-J9IHP4-F1-model_v4_TED01","TED novel fold AF-J9IHP4-F1-model_v4_TED01"],["TED%3AAF-J9IUB6-F1-model_v4_TED02","TED novel fold AF-J9IUB6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1172189","Oxytricha trifallax"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":1,"nb":5,"a":[["TED%3AAF-A0A132HLN2-F1-model_v4_TED01","TED novel fold AF-A0A132HLN2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A119219","Cupriavidus metallidurans"],["NCBITaxon%3A266264","Cupriavidus metallidurans CH34"],["NCBITaxon%3A1395123","Cupriavidus metallidurans H1130"],["NCBITaxon%3A1218106","Cupriavidus metallidurans NBRC 101272"],["NCBITaxon%3A1873897","Cupriavidus sp."]]},{"id":"NCBITaxon:120398","l":"Aphanomyces stellatus","na":5,"nb":1,"a":[["TED%3AAF-A0A6A4YU89-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A4YU89-F1-model_v4_TED01"],["TED%3AAF-A0A485K586-F1-model_v4_TED02","TED novel fold AF-A0A485K586-F1-model_v4_TED02"],["TED%3AAF-A0A485L7W5-F1-model_v4_TED01","TED novel fold AF-A0A485L7W5-F1-model_v4_TED01"],["TED%3AAF-A0A485LNP0-F1-model_v4_TED01","TED novel fold AF-A0A485LNP0-F1-model_v4_TED01"],["TED%3AAF-A0A6A4ZLE5-F1-model_v4_TED01","TED novel fold AF-A0A6A4ZLE5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A120398","Aphanomyces stellatus"]]},{"id":"NCBITaxon:1244","l":"Leuconostoc gelidum","na":1,"nb":5,"a":[["Pfam%3APF08951","Bacteriocin immunity protein family"]],"b":[["NCBITaxon%3A1244","Leuconostoc gelidum"],["NCBITaxon%3A1229756","Leuconostoc gelidum JB7"],["NCBITaxon%3A1607837","Leuconostoc gelidum subsp. aenigmaticum"],["NCBITaxon%3A1607839","Leuconostoc gelidum subsp. gelidum"],["NCBITaxon%3A927691","Leuconostoc gelidum subsp. gelidum KCTC 3527"]]},{"id":"NCBITaxon:126793","l":"Plasmodium vivax (strain Salvador I)","na":5,"nb":1,"a":[["Pfam%3APF08627","CRT-like, chloroquine-resistance transporter-like"],["Pfam%3APF12361","Duffy-antigen binding protein"],["Pfam%3APF05424","Duffy binding domain"],["Pfam%3APF12377","Duffy binding protein N terminal"],["Pfam%3APF11556","Erythrocyte binding antigen 175"]],"b":[["NCBITaxon%3A126793","Plasmodium vivax Sal-1"]]},{"id":"NCBITaxon:1391654","l":"Labilithrix luteola","na":5,"nb":1,"a":[["TED%3AAF-A0A0K1PPH0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0K1PPH0-F1-model_v4_TED01"],["TED%3AAF-A0A0K1PQV0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0K1PQV0-F1-model_v4_TED01"],["TED%3AAF-A0A0K1PKQ0-F1-model_v4_TED02","TED novel fold AF-A0A0K1PKQ0-F1-model_v4_TED02"],["TED%3AAF-A0A0K1QB04-F1-model_v4_TED01","TED novel fold AF-A0A0K1QB04-F1-model_v4_TED01"],["TED%3AAF-A0A0K1QB59-F1-model_v4_TED04","TED novel fold AF-A0A0K1QB59-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1391654","Labilithrix luteola"]]},{"id":"NCBITaxon:1399860","l":"Ophiocordyceps australis","na":5,"nb":1,"a":[["TED%3AAF-A0A2C5XYE3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2C5XYE3-F1-model_v4_TED02"],["TED%3AAF-A0A2C5XXI9-F1-model_v4_TED01","TED novel fold AF-A0A2C5XXI9-F1-model_v4_TED01"],["TED%3AAF-A0A2C5Y9G2-F1-model_v4_TED01","TED novel fold AF-A0A2C5Y9G2-F1-model_v4_TED01"],["TED%3AAF-A0A2C5YDN9-F1-model_v4_TED01","TED novel fold AF-A0A2C5YDN9-F1-model_v4_TED01"],["TED%3AAF-A0A2C5Z5D6-F1-model_v4_TED02","TED novel fold AF-A0A2C5Z5D6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1399860","Ophiocordyceps australis"]]},{"id":"NCBITaxon:1460663","l":"Paraphaeosphaeria sporulosa","na":5,"nb":1,"a":[["TED%3AAF-A0A177BYU6-F1-model_v4_TED01","TED novel fold AF-A0A177BYU6-F1-model_v4_TED01"],["TED%3AAF-A0A177C1V7-F1-model_v4_TED01","TED novel fold AF-A0A177C1V7-F1-model_v4_TED01"],["TED%3AAF-A0A177C423-F1-model_v4_TED02","TED novel fold AF-A0A177C423-F1-model_v4_TED02"],["TED%3AAF-A0A177CFU8-F1-model_v4_TED03","TED novel fold AF-A0A177CFU8-F1-model_v4_TED03"],["TED%3AAF-A0A177CTN1-F1-model_v4_TED01","TED novel fold AF-A0A177CTN1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1460663","Paraphaeosphaeria sporulosa"]]},{"id":"NCBITaxon:1465","l":"Brevibacillus laterosporus","na":1,"nb":5,"a":[["TED%3AAF-A0A0F7BZ24-F1-model_v4_TED01","TED novel fold AF-A0A0F7BZ24-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1465","Brevibacillus laterosporus"],["NCBITaxon%3A1121121","Brevibacillus laterosporus DSM 25"],["NCBITaxon%3A1118154","Brevibacillus laterosporus GI-9"],["NCBITaxon%3A1042163","Brevibacillus laterosporus LMG 15441"],["NCBITaxon%3A1399144","Brevibacillus laterosporus PE36"]]},{"id":"NCBITaxon:1473586","l":"Roseiarcus fermentans","na":5,"nb":1,"a":[["TED%3AAF-A0A366EFE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A366EFE6-F1-model_v4_TED01"],["TED%3AAF-A0A366FNN9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A366FNN9-F1-model_v4_TED01"],["TED%3AAF-A0A366FT73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A366FT73-F1-model_v4_TED01"],["TED%3AAF-A0A366EUJ4-F1-model_v4_TED01","TED novel fold AF-A0A366EUJ4-F1-model_v4_TED01"],["TED%3AAF-A0A366FSX2-F1-model_v4_TED01","TED novel fold AF-A0A366FSX2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1473586","Roseiarcus fermentans"]]},{"id":"NCBITaxon:147558","l":"Byssothecium circinans","na":5,"nb":1,"a":[["TED%3AAF-A0A6A5TH04-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A5TH04-F1-model_v4_TED01"],["TED%3AAF-A0A6A5TN25-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A5TN25-F1-model_v4_TED01"],["TED%3AAF-A0A6A5T6G0-F1-model_v4_TED01","TED novel fold AF-A0A6A5T6G0-F1-model_v4_TED01"],["TED%3AAF-A0A6A5U5A4-F1-model_v4_TED02","TED novel fold AF-A0A6A5U5A4-F1-model_v4_TED02"],["TED%3AAF-A0A6A5UDD3-F1-model_v4_TED01","TED novel fold AF-A0A6A5UDD3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A147558","Byssothecium circinans"]]},{"id":"NCBITaxon:1514140","l":"Trieres chinensis","na":5,"nb":1,"a":[["TED%3AAF-A0A7S1YW68-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1YW68-F1-model_v4_TED01"],["TED%3AAF-A0A7S1Z4Z7-F1-model_v4_TED01","TED novel fold AF-A0A7S1Z4Z7-F1-model_v4_TED01"],["TED%3AAF-A0A7S1ZAT3-F1-model_v4_TED03","TED novel fold AF-A0A7S1ZAT3-F1-model_v4_TED03"],["TED%3AAF-A0A7S2A6A9-F1-model_v4_TED02","TED novel fold AF-A0A7S2A6A9-F1-model_v4_TED02"],["TED%3AAF-A0A7S2A7V0-F1-model_v4_TED02","TED novel fold AF-A0A7S2A7V0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1514140","Trieres chinensis"]]},{"id":"NCBITaxon:1630","l":"Kandleria vitulina","na":1,"nb":5,"a":[["TED%3AAF-A0A1H2RJ13-F1-model_v4_TED02","TED novel fold AF-A0A1H2RJ13-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1630","Kandleria vitulina"],["NCBITaxon%3A1410657","Kandleria vitulina DSM 20405"],["NCBITaxon%3A1410658","Kandleria vitulina MC3001"],["NCBITaxon%3A1410659","Kandleria vitulina WCE2011"],["NCBITaxon%3A322505","Sharpea azabuensis"]]},{"id":"NCBITaxon:1667","l":"Arthrobacter sp.","na":5,"nb":1,"a":[["Pfam%3APF14031","Putative serine dehydratase domain"],["Pfam%3APF02449","Beta-galactosidase"],["Pfam%3APF08533","Beta-galactosidase C-terminal domain"],["Pfam%3APF08532","Beta-galactosidase trimerisation domain"],["TED%3AAF-A0A3C2BWN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C2BWN3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1667","Arthrobacter sp."]]},{"id":"NCBITaxon:166793","l":"Solirubrobacter pauli","na":5,"nb":1,"a":[["TED%3AAF-A0A660KVC2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A660KVC2-F1-model_v4_TED01"],["TED%3AAF-A0A660L8K6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A660L8K6-F1-model_v4_TED03"],["TED%3AAF-A0A660L9Y2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A660L9Y2-F1-model_v4_TED02"],["TED%3AAF-A0A660L5E2-F1-model_v4_TED01","TED novel fold AF-A0A660L5E2-F1-model_v4_TED01"],["TED%3AAF-A0A660LBC0-F1-model_v4_TED02","TED novel fold AF-A0A660LBC0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A166793","Solirubrobacter pauli"]]},{"id":"NCBITaxon:1752","l":"Propionibacterium freudenreichii subsp. shermanii","na":1,"nb":5,"a":[["PROSITE%3APS00544","Methylmalonyl-CoA mutase signature"]],"b":[["NCBITaxon%3A1591","Lactobacillus sp."],["NCBITaxon%3A1744","Propionibacterium freudenreichii"],["NCBITaxon%3A1752","Propionibacterium freudenreichii subsp. shermanii"],["NCBITaxon%3A754252","Propionibacterium freudenreichii subsp. shermanii CIRM-BIA1"],["NCBITaxon%3A1445610","Propionibacterium freudenreichii subsp. shermanii SANPR8"]]},{"id":"NCBITaxon:1798206","l":"Thioclava sp. ES.032","na":5,"nb":1,"a":[["TED%3AAF-A0A4R7KQ83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R7KQ83-F1-model_v4_TED01"],["TED%3AAF-A0A4R7KH50-F1-model_v4_TED01","TED novel fold AF-A0A4R7KH50-F1-model_v4_TED01"],["TED%3AAF-A0A4R7KMZ7-F1-model_v4_TED01","TED novel fold AF-A0A4R7KMZ7-F1-model_v4_TED01"],["TED%3AAF-A0A4R7KP85-F1-model_v4_TED01","TED novel fold AF-A0A4R7KP85-F1-model_v4_TED01"],["TED%3AAF-A0A4R7KRD5-F1-model_v4_TED01","TED novel fold AF-A0A4R7KRD5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798206","Thioclava sp. ES.032"]]},{"id":"NCBITaxon:1856293","l":"Gammaproteobacteria bacterium 42 54 T18","na":5,"nb":1,"a":[["TED%3AAF-A0A1Z7YLF6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z7YLF6-F1-model_v4_TED01"],["TED%3AAF-A0A1Z7ZRW5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z7ZRW5-F1-model_v4_TED01"],["TED%3AAF-A0A1Z8A185-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z8A185-F1-model_v4_TED01"],["TED%3AAF-A0A1Z7YM22-F1-model_v4_TED01","TED novel fold AF-A0A1Z7YM22-F1-model_v4_TED01"],["TED%3AAF-A0A1Z7ZZU7-F1-model_v4_TED01","TED novel fold AF-A0A1Z7ZZU7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1856293","Gammaproteobacteria bacterium 42_54_T18"]]},{"id":"NCBITaxon:1871070","l":"Oxalobacteraceae bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A4Q3LAA3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q3LAA3-F1-model_v4_TED01"],["TED%3AAF-A0A4Q3HLQ7-F1-model_v4_TED02","TED novel fold AF-A0A4Q3HLQ7-F1-model_v4_TED02"],["TED%3AAF-A0A4Q3KLL6-F1-model_v4_TED03","TED novel fold AF-A0A4Q3KLL6-F1-model_v4_TED03"],["TED%3AAF-A0A4Q3LPB8-F1-model_v4_TED01","TED novel fold AF-A0A4Q3LPB8-F1-model_v4_TED01"],["TED%3AAF-A0A4V1TM44-F1-model_v4_TED01","TED novel fold AF-A0A4V1TM44-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1871070","Oxalobacteraceae bacterium"]]},{"id":"NCBITaxon:1872427","l":"Alcanivorax sp.","na":5,"nb":1,"a":[["TED%3AAF-A0A3C1HS87-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A3C1HS87-F1-model_v4_TED05"],["TED%3AAF-A0A2E8G0K2-F1-model_v4_TED02","TED novel fold AF-A0A2E8G0K2-F1-model_v4_TED02"],["TED%3AAF-A0A2E8G2P9-F1-model_v4_TED01","TED novel fold AF-A0A2E8G2P9-F1-model_v4_TED01"],["TED%3AAF-A0A3B8PCI6-F1-model_v4_TED01","TED novel fold AF-A0A3B8PCI6-F1-model_v4_TED01"],["TED%3AAF-A0A3C0M083-F1-model_v4_TED02","TED novel fold AF-A0A3C0M083-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1872427","Alcanivorax sp."]]},{"id":"NCBITaxon:1872629","l":"Arcobacter sp.","na":5,"nb":1,"a":[["TED%3AAF-A0A2D5P801-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D5P801-F1-model_v4_TED02"],["TED%3AAF-A0A2G6R5Z0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G6R5Z0-F1-model_v4_TED01"],["TED%3AAF-A0A7C3M446-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C3M446-F1-model_v4_TED01"],["TED%3AAF-A0A2D5P5I8-F1-model_v4_TED01","TED novel fold AF-A0A2D5P5I8-F1-model_v4_TED01"],["TED%3AAF-A0A7C3R557-F1-model_v4_TED02","TED novel fold AF-A0A7C3R557-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1872629","Arcobacter sp."]]},{"id":"NCBITaxon:1898103","l":"Rhodocyclaceae bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A5C9BV10-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C9BV10-F1-model_v4_TED01"],["TED%3AAF-A0A7C6KDT6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C6KDT6-F1-model_v4_TED01"],["TED%3AAF-A0A3S0EHT2-F1-model_v4_TED01","TED novel fold AF-A0A3S0EHT2-F1-model_v4_TED01"],["TED%3AAF-A0A431JPK4-F1-model_v4_TED02","TED novel fold AF-A0A431JPK4-F1-model_v4_TED02"],["TED%3AAF-A0A5C9BLM6-F1-model_v4_TED01","TED novel fold AF-A0A5C9BLM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1898103","Rhodocyclaceae bacterium"]]},{"id":"NCBITaxon:190893","l":"Vibrio coralliilyticus","na":1,"nb":5,"a":[["TED%3AAF-A0A7Y4BNK4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4BNK4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A190893","Vibrio coralliilyticus"],["NCBITaxon%3A675814","Vibrio coralliilyticus ATCC BAA-450"],["NCBITaxon%3A1353535","Vibrio coralliilyticus NA0301"],["NCBITaxon%3A1384040","Vibrio coralliilyticus OCN008"],["NCBITaxon%3A909421","Vibrio coralliilyticus P1"]]},{"id":"NCBITaxon:1911520","l":"Actinomycetales bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A7X7DA60-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X7DA60-F1-model_v4_TED01"],["TED%3AAF-A0A7X7NMJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X7NMJ9-F1-model_v4_TED01"],["TED%3AAF-A0A847CNG4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A847CNG4-F1-model_v4_TED01"],["TED%3AAF-A0A847KL95-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A847KL95-F1-model_v4_TED02"],["TED%3AAF-A0A847KJV2-F1-model_v4_TED01","TED novel fold AF-A0A847KJV2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1911520","Actinomycetales bacterium"]]},{"id":"NCBITaxon:1926873","l":"Xanthomonadaceae bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A3C0JAH5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C0JAH5-F1-model_v4_TED01"],["TED%3AAF-A0A7C6VXP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C6VXP7-F1-model_v4_TED01"],["TED%3AAF-A0A7X7SSY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X7SSY6-F1-model_v4_TED01"],["TED%3AAF-A0A5C7RAV8-F1-model_v4_TED01","TED novel fold AF-A0A5C7RAV8-F1-model_v4_TED01"],["TED%3AAF-A0A7C6VXF5-F1-model_v4_TED01","TED novel fold AF-A0A7C6VXF5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1926873","Lysobacteraceae bacterium"]]},{"id":"NCBITaxon:193","l":"Azospirillum lipoferum","na":1,"nb":5,"a":[["TED%3AAF-A0A1X7MZF1-F1-model_v4_TED02","TED novel fold AF-A0A1X7MZF1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A442870","Acanthopleuribacter pedis"],["NCBITaxon%3A52761","Azospirillum largimobile"],["NCBITaxon%3A193","Azospirillum lipoferum"],["NCBITaxon%3A862719","Azospirillum lipoferum 4B"],["NCBITaxon%3A34012","Azospirillum sp."]]},{"id":"NCBITaxon:1978525","l":"Sphingomonadales bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A4Q3A6F4-F1-model_v4_TED01","TED novel fold AF-A0A4Q3A6F4-F1-model_v4_TED01"],["TED%3AAF-A0A4Q3AFM2-F1-model_v4_TED02","TED novel fold AF-A0A4Q3AFM2-F1-model_v4_TED02"],["TED%3AAF-A0A4Q3AGI7-F1-model_v4_TED03","TED novel fold AF-A0A4Q3AGI7-F1-model_v4_TED03"],["TED%3AAF-A0A4Q3AGZ4-F1-model_v4_TED01","TED novel fold AF-A0A4Q3AGZ4-F1-model_v4_TED01"],["TED%3AAF-A0A4Q3ARA3-F1-model_v4_TED01","TED novel fold AF-A0A4Q3ARA3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1978525","Sphingomonadales bacterium"]]},{"id":"NCBITaxon:200324","l":"Puccinia coronata f. sp. avenae","na":5,"nb":1,"a":[["TED%3AAF-A0A2N5UHE5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N5UHE5-F1-model_v4_TED02"],["TED%3AAF-A0A2N5UTY3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N5UTY3-F1-model_v4_TED02"],["TED%3AAF-A0A2N5SHP2-F1-model_v4_TED01","TED novel fold AF-A0A2N5SHP2-F1-model_v4_TED01"],["TED%3AAF-A0A2N5TCK3-F1-model_v4_TED02","TED novel fold AF-A0A2N5TCK3-F1-model_v4_TED02"],["TED%3AAF-A0A2N5UYI1-F1-model_v4_TED01","TED novel fold AF-A0A2N5UYI1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A200324","Puccinia coronata f. sp. avenae"]]},{"id":"NCBITaxon:2024841","l":"Micavibrio sp.","na":5,"nb":1,"a":[["TED%3AAF-A0A2D8LYK6-F1-model_v4_TED01","TED novel fold AF-A0A2D8LYK6-F1-model_v4_TED01"],["TED%3AAF-A0A2D8M0X9-F1-model_v4_TED01","TED novel fold AF-A0A2D8M0X9-F1-model_v4_TED01"],["TED%3AAF-A0A651F7P0-F1-model_v4_TED01","TED novel fold AF-A0A651F7P0-F1-model_v4_TED01"],["TED%3AAF-A0A651FN22-F1-model_v4_TED01","TED novel fold AF-A0A651FN22-F1-model_v4_TED01"],["TED%3AAF-A0A7C7SSI7-F1-model_v4_TED01","TED novel fold AF-A0A7C7SSI7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024841","Micavibrio sp."]]},{"id":"NCBITaxon:2026715","l":"Pseudobdellovibrionaceae bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A2E8I2Q3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E8I2Q3-F1-model_v4_TED02"],["TED%3AAF-A0A2E8I7A7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E8I7A7-F1-model_v4_TED02"],["TED%3AAF-A0A2E1Q4H5-F1-model_v4_TED06","TED novel fold AF-A0A2E1Q4H5-F1-model_v4_TED06"],["TED%3AAF-A0A2E7GIF0-F1-model_v4_TED01","TED novel fold AF-A0A2E7GIF0-F1-model_v4_TED01"],["TED%3AAF-A0A849WIZ5-F1-model_v4_TED01","TED novel fold AF-A0A849WIZ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026715","Pseudobdellovibrionaceae bacterium"]]},{"id":"NCBITaxon:2026759","l":"Magnetococcales bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A2D7C635-F1-model_v4_TED01","TED novel fold AF-A0A2D7C635-F1-model_v4_TED01"],["TED%3AAF-A0A2D7C9W2-F1-model_v4_TED01","TED novel fold AF-A0A2D7C9W2-F1-model_v4_TED01"],["TED%3AAF-A0A2E3BZA0-F1-model_v4_TED01","TED novel fold AF-A0A2E3BZA0-F1-model_v4_TED01"],["TED%3AAF-A0A2E3BZF8-F1-model_v4_TED01","TED novel fold AF-A0A2E3BZF8-F1-model_v4_TED01"],["TED%3AAF-A0A2E3BZZ3-F1-model_v4_TED03","TED novel fold AF-A0A2E3BZZ3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2026759","Magnetococcales bacterium"]]},{"id":"NCBITaxon:2026770","l":"Nitrospiraceae bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A354A1E5-F1-model_v4_TED01","TED novel fold AF-A0A354A1E5-F1-model_v4_TED01"],["TED%3AAF-A0A3C0TQL9-F1-model_v4_TED01","TED novel fold AF-A0A3C0TQL9-F1-model_v4_TED01"],["TED%3AAF-A0A3C1FTK4-F1-model_v4_TED01","TED novel fold AF-A0A3C1FTK4-F1-model_v4_TED01"],["TED%3AAF-A0A3C1G5D1-F1-model_v4_TED02","TED novel fold AF-A0A3C1G5D1-F1-model_v4_TED02"],["TED%3AAF-A0A3N5HM95-F1-model_v4_TED03","TED novel fold AF-A0A3N5HM95-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2026770","Nitrospiraceae bacterium"]]},{"id":"NCBITaxon:2026791","l":"Bryobacterales bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A350UR89-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A350UR89-F1-model_v4_TED01"],["TED%3AAF-A0A7C3C4M2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C3C4M2-F1-model_v4_TED01"],["TED%3AAF-A0A7C3E5H8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C3E5H8-F1-model_v4_TED01"],["TED%3AAF-A0A7C3DZN5-F1-model_v4_TED02","TED novel fold AF-A0A7C3DZN5-F1-model_v4_TED02"],["TED%3AAF-A0A7X2PP26-F1-model_v4_TED01","TED novel fold AF-A0A7X2PP26-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026791","Bryobacterales bacterium"]]},{"id":"NCBITaxon:2026809","l":"Campylobacterota bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A661IE68-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A661IE68-F1-model_v4_TED02"],["TED%3AAF-A0A661ISK7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A661ISK7-F1-model_v4_TED01"],["TED%3AAF-A0A496XQ20-F1-model_v4_TED01","TED novel fold AF-A0A496XQ20-F1-model_v4_TED01"],["TED%3AAF-A0A496XVW7-F1-model_v4_TED01","TED novel fold AF-A0A496XVW7-F1-model_v4_TED01"],["TED%3AAF-A0A7C5JB24-F1-model_v4_TED01","TED novel fold AF-A0A7C5JB24-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026809","Campylobacterota bacterium"]]},{"id":"NCBITaxon:2030808","l":"Cloacimonadota bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A2A5AQC3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A5AQC3-F1-model_v4_TED01"],["TED%3AAF-A0A7C5HX70-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7C5HX70-F1-model_v4_TED03"],["TED%3AAF-A0A7X8IKA9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X8IKA9-F1-model_v4_TED01"],["TED%3AAF-A0A2A5AJ12-F1-model_v4_TED01","TED novel fold AF-A0A2A5AJ12-F1-model_v4_TED01"],["TED%3AAF-A0A7X8IJH3-F1-model_v4_TED02","TED novel fold AF-A0A7X8IJH3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2030808","Candidatus Cloacimonadota bacterium"]]},{"id":"NCBITaxon:2030829","l":"SAR202 cluster bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A5N9CY77-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5N9CY77-F1-model_v4_TED01"],["TED%3AAF-A0A5N9C391-F1-model_v4_TED01","TED novel fold AF-A0A5N9C391-F1-model_v4_TED01"],["TED%3AAF-A0A5N9CEW4-F1-model_v4_TED02","TED novel fold AF-A0A5N9CEW4-F1-model_v4_TED02"],["TED%3AAF-A0A5N9HQ74-F1-model_v4_TED01","TED novel fold AF-A0A5N9HQ74-F1-model_v4_TED01"],["TED%3AAF-A0A6L3C6H7-F1-model_v4_TED01","TED novel fold AF-A0A6L3C6H7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2030829","SAR202 cluster bacterium"]]},{"id":"NCBITaxon:2044938","l":"candidate division SR1 bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A7W4E492-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W4E492-F1-model_v4_TED01"],["TED%3AAF-A0A2W4IPX7-F1-model_v4_TED01","TED novel fold AF-A0A2W4IPX7-F1-model_v4_TED01"],["TED%3AAF-A0A7W4E3C7-F1-model_v4_TED01","TED novel fold AF-A0A7W4E3C7-F1-model_v4_TED01"],["TED%3AAF-A0A7W4HH77-F1-model_v4_TED02","TED novel fold AF-A0A7W4HH77-F1-model_v4_TED02"],["TED%3AAF-A0A7W4HH77-F1-model_v4_TED03","TED novel fold AF-A0A7W4HH77-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2044938","candidate division SR1 bacterium"]]},{"id":"NCBITaxon:2045217","l":"Candidatus Moranbacteria bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A5C7KV64-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A5C7KV64-F1-model_v4_TED05"],["TED%3AAF-A0A7T9K0N2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7T9K0N2-F1-model_v4_TED02"],["TED%3AAF-A0A7V6WJZ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V6WJZ0-F1-model_v4_TED01"],["TED%3AAF-A0A7X6WRF8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7X6WRF8-F1-model_v4_TED03"],["TED%3AAF-A0A7C0UIF6-F1-model_v4_TED01","TED novel fold AF-A0A7C0UIF6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2045217","Candidatus Moraniibacteriota bacterium"]]},{"id":"NCBITaxon:2052148","l":"candidate division WOR-3 bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A7C0VCF3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C0VCF3-F1-model_v4_TED01"],["TED%3AAF-A0A7V0XFP2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7V0XFP2-F1-model_v4_TED02"],["TED%3AAF-A0A7C4YHW3-F1-model_v4_TED02","TED novel fold AF-A0A7C4YHW3-F1-model_v4_TED02"],["TED%3AAF-A0A7V3KPS3-F1-model_v4_TED01","TED novel fold AF-A0A7V3KPS3-F1-model_v4_TED01"],["TED%3AAF-A0A7V3RFT1-F1-model_v4_TED02","TED novel fold AF-A0A7V3RFT1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2052148","Caldifarciminota bacterium"]]},{"id":"NCBITaxon:2052181","l":"Planctomycetia bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A3D3KNQ9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D3KNQ9-F1-model_v4_TED02"],["TED%3AAF-A0A7L9BX08-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7L9BX08-F1-model_v4_TED01"],["TED%3AAF-A0A7S6M8R0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S6M8R0-F1-model_v4_TED01"],["TED%3AAF-A0A4P5WR48-F1-model_v4_TED01","TED novel fold AF-A0A4P5WR48-F1-model_v4_TED01"],["TED%3AAF-A0A7L9C6V5-F1-model_v4_TED01","TED novel fold AF-A0A7L9C6V5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052181","Planctomycetia bacterium"]]},{"id":"NCBITaxon:2053627","l":"Syntrophomonas sp.","na":5,"nb":1,"a":[["TED%3AAF-A0A356U822-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A356U822-F1-model_v4_TED01"],["TED%3AAF-A0A356ZAA2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A356ZAA2-F1-model_v4_TED01"],["TED%3AAF-A0A3B8HTV0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3B8HTV0-F1-model_v4_TED02"],["TED%3AAF-A0A356UEY7-F1-model_v4_TED01","TED novel fold AF-A0A356UEY7-F1-model_v4_TED01"],["TED%3AAF-A0A356Z3H4-F1-model_v4_TED02","TED novel fold AF-A0A356Z3H4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053627","Syntrophomonas sp."]]},{"id":"NCBITaxon:2080303","l":"Dadabacteria bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A3M1VQ27-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M1VQ27-F1-model_v4_TED01"],["TED%3AAF-A0A3M1VUL2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M1VUL2-F1-model_v4_TED01"],["TED%3AAF-A0A7V1ZJV8-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A7V1ZJV8-F1-model_v4_TED05"],["TED%3AAF-A0A3M1FT61-F1-model_v4_TED01","TED novel fold AF-A0A3M1FT61-F1-model_v4_TED01"],["TED%3AAF-A0A3M1VQ71-F1-model_v4_TED01","TED novel fold AF-A0A3M1VQ71-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2080303","Candidatus Dadabacteria bacterium"]]},{"id":"NCBITaxon:2081524","l":"Chlamydiota bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A6M1ZCM9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6M1ZCM9-F1-model_v4_TED02"],["TED%3AAF-A0A7X5TAS2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7X5TAS2-F1-model_v4_TED02"],["TED%3AAF-A0A7X5TCW0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7X5TCW0-F1-model_v4_TED02"],["TED%3AAF-A0A6M1ZLH8-F1-model_v4_TED01","TED novel fold AF-A0A6M1ZLH8-F1-model_v4_TED01"],["TED%3AAF-A0A6M1ZSE1-F1-model_v4_TED02","TED novel fold AF-A0A6M1ZSE1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2081524","Chlamydiota bacterium"]]},{"id":"NCBITaxon:2110","l":"Mycoplasmopsis agalactiae","na":1,"nb":5,"a":[["TED%3AAF-D3VRI4-F1-model_v4_TED01","TED novel fold AF-D3VRI4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2110","Mycoplasmopsis agalactiae"],["NCBITaxon%3A1110504","Mycoplasmopsis agalactiae 14628"],["NCBITaxon%3A347258","Mycoplasmopsis agalactiae 5632"],["NCBITaxon%3A347257","Mycoplasmopsis agalactiae PG2"],["NCBITaxon%3A452658","Mycoplasmopsis agalactiae VP20-L15/02"]]},{"id":"NCBITaxon:2138576","l":"Vitiosangium sp. (strain GDMCC 1.1324)","na":5,"nb":1,"a":[["Pfam%3APF12770","CHAT domain"],["Pfam%3APF26164","Bacterial Gasdermin Family"],["TED%3AAF-A0A2T4VC24-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T4VC24-F1-model_v4_TED01"],["TED%3AAF-A0A2T4VJ48-F1-model_v4_TED02","TED novel fold AF-A0A2T4VJ48-F1-model_v4_TED02"],["TED%3AAF-A0A2T4VKG0-F1-model_v4_TED01","TED novel fold AF-A0A2T4VKG0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2138576","Vitiosangium sp. GDMCC 1.1324"]]},{"id":"NCBITaxon:214684","l":"Cryptococcus deneoformans (strain JEC21 / ATCC MYA-565)","na":5,"nb":1,"a":[["Pfam%3APF28371","Clampless protein 1 N-terminal domain"],["Pfam%3APF28353","Clampless protein 1 C-terminal domain"],["Pfam%3APF11735","Cryptococcal mannosyltransferase 1"],["PROSITE%3APS01103","Aspartate-semialdehyde dehydrogenase signature"],["PROSITE%3APS00614","Indole-3-glycerol phosphate synthase signature"]],"b":[["NCBITaxon%3A214684","Cryptococcus deneoformans JEC21"]]},{"id":"NCBITaxon:2201156","l":"Acidimicrobiales bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A6B1B579-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6B1B579-F1-model_v4_TED02"],["TED%3AAF-A0A7Y3LKE7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y3LKE7-F1-model_v4_TED01"],["TED%3AAF-A0A7X7D9X0-F1-model_v4_TED02","TED novel fold AF-A0A7X7D9X0-F1-model_v4_TED02"],["TED%3AAF-A0A7Y2GLL1-F1-model_v4_TED01","TED novel fold AF-A0A7Y2GLL1-F1-model_v4_TED01"],["TED%3AAF-A0A7Y3LL73-F1-model_v4_TED02","TED novel fold AF-A0A7Y3LL73-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2201156","Acidimicrobiales bacterium"]]},{"id":"NCBITaxon:220668","l":"Lactiplantibacillus plantarum (strain ATCC BAA-793 / NCIMB 8826 / WCFS1)","na":5,"nb":1,"a":[["Pfam%3APF17727","CtsR C-terminal dimerization domain"],["Pfam%3APF05848","CtsR N-terminal HTH domain"],["Pfam%3APF14804","Jag N-terminus"],["Pfam%3APF09861","Lactate racemase N-terminal domain"],["Pfam%3APF21113","Lactate racemase C-terminal domain"]],"b":[["NCBITaxon%3A220668","Lactiplantibacillus plantarum WCFS1"]]},{"id":"NCBITaxon:2212469","l":"Calditrichota bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A3M1X9B8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M1X9B8-F1-model_v4_TED01"],["TED%3AAF-A0A3M1AWL8-F1-model_v4_TED02","TED novel fold AF-A0A3M1AWL8-F1-model_v4_TED02"],["TED%3AAF-A0A6H9L0R7-F1-model_v4_TED01","TED novel fold AF-A0A6H9L0R7-F1-model_v4_TED01"],["TED%3AAF-A0A6H9L8S3-F1-model_v4_TED01","TED novel fold AF-A0A6H9L8S3-F1-model_v4_TED01"],["TED%3AAF-A0A6H9LBC1-F1-model_v4_TED02","TED novel fold AF-A0A6H9LBC1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2212469","Calditrichota bacterium"]]},{"id":"NCBITaxon:221442","l":"Coccolithus braarudii","na":5,"nb":1,"a":[["TED%3AAF-A0A7S0L0L4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0L0L4-F1-model_v4_TED01"],["TED%3AAF-A0A7S0LI79-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0LI79-F1-model_v4_TED01"],["TED%3AAF-A0A7S0Q856-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0Q856-F1-model_v4_TED01"],["TED%3AAF-A0A7S0QA11-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0QA11-F1-model_v4_TED01"],["TED%3AAF-A0A7S0Q0N5-F1-model_v4_TED02","TED novel fold AF-A0A7S0Q0N5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A221442","Coccolithus braarudii"]]},{"id":"NCBITaxon:2420332","l":"Caldilineae bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A3M1EY42-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M1EY42-F1-model_v4_TED01"],["TED%3AAF-A0A3M1G2A4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M1G2A4-F1-model_v4_TED01"],["TED%3AAF-A0A3M1E9U3-F1-model_v4_TED03","TED novel fold AF-A0A3M1E9U3-F1-model_v4_TED03"],["TED%3AAF-A0A3M1F5B3-F1-model_v4_TED02","TED novel fold AF-A0A3M1F5B3-F1-model_v4_TED02"],["TED%3AAF-A0A7V2LNF5-F1-model_v4_TED02","TED novel fold AF-A0A7V2LNF5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2420332","Caldilineae bacterium"]]},{"id":"NCBITaxon:2448782","l":"Chloroflexia bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A7V9F8Q8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V9F8Q8-F1-model_v4_TED01"],["TED%3AAF-A0A7V9SE74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V9SE74-F1-model_v4_TED01"],["TED%3AAF-A0A7W0TW73-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A7W0TW73-F1-model_v4_TED06"],["TED%3AAF-A0A7V9KJ87-F1-model_v4_TED01","TED novel fold AF-A0A7V9KJ87-F1-model_v4_TED01"],["TED%3AAF-A0A7W0QRA7-F1-model_v4_TED03","TED novel fold AF-A0A7W0QRA7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2448782","Chloroflexia bacterium"]]},{"id":"NCBITaxon:2498093","l":"Muribaculaceae bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A4S4G8A7-F1-model_v4_TED01","TED novel fold AF-A0A4S4G8A7-F1-model_v4_TED01"],["TED%3AAF-A0A7J0A8S6-F1-model_v4_TED01","TED novel fold AF-A0A7J0A8S6-F1-model_v4_TED01"],["TED%3AAF-A0A7J0AHV0-F1-model_v4_TED04","TED novel fold AF-A0A7J0AHV0-F1-model_v4_TED04"],["TED%3AAF-A0A7J0AJE8-F1-model_v4_TED01","TED novel fold AF-A0A7J0AJE8-F1-model_v4_TED01"],["TED%3AAF-A0A7J0AX19-F1-model_v4_TED02","TED novel fold AF-A0A7J0AX19-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2498093","Muribaculaceae bacterium"]]},{"id":"NCBITaxon:256","l":"Myroides odoratus","na":1,"nb":5,"a":[["TED%3AAF-A0A378RV66-F1-model_v4_TED01","TED novel fold AF-A0A378RV66-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1820002","Bartonella mastomydis"],["NCBITaxon%3A76832","Myroides odoratimimus"],["NCBITaxon%3A256","Myroides odoratus"],["NCBITaxon%3A883155","Myroides odoratus CIP 103059"],["NCBITaxon%3A929704","Myroides odoratus DSM 2801"]]},{"id":"NCBITaxon:271","l":"Thermus aquaticus","na":1,"nb":5,"a":[["Pfam%3APF07669","Eco57I restriction-modification methylase"]],"b":[["NCBITaxon%3A271","Thermus aquaticus"],["NCBITaxon%3A1123387","Thermus aquaticus DSM 625"],["NCBITaxon%3A498848","Thermus aquaticus Y51MC23"],["NCBITaxon%3A274","Thermus thermophilus"],["NCBITaxon%3A300852","Thermus thermophilus HB8"]]},{"id":"NCBITaxon:278944","l":"Botryotinia narcissicola","na":5,"nb":1,"a":[["TED%3AAF-A0A4Z1HD61-F1-model_v4_TED02","TED novel fold AF-A0A4Z1HD61-F1-model_v4_TED02"],["TED%3AAF-A0A4Z1HKJ8-F1-model_v4_TED01","TED novel fold AF-A0A4Z1HKJ8-F1-model_v4_TED01"],["TED%3AAF-A0A4Z1HSA7-F1-model_v4_TED01","TED novel fold AF-A0A4Z1HSA7-F1-model_v4_TED01"],["TED%3AAF-A0A4Z1J0L2-F1-model_v4_TED01","TED novel fold AF-A0A4Z1J0L2-F1-model_v4_TED01"],["TED%3AAF-A0A4Z1JE74-F1-model_v4_TED01","TED novel fold AF-A0A4Z1JE74-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A278944","Botryotinia narcissicola"]]},{"id":"NCBITaxon:278959","l":"Opitutaceae bacterium TAV4","na":5,"nb":1,"a":[["TED%3AAF-A0A3R8KKA4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R8KKA4-F1-model_v4_TED01"],["TED%3AAF-A0A3R8QGI6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A3R8QGI6-F1-model_v4_TED04"],["TED%3AAF-A0A426CFE3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A426CFE3-F1-model_v4_TED01"],["TED%3AAF-A0A426CJA7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A426CJA7-F1-model_v4_TED01"],["TED%3AAF-A0A426CQ29-F1-model_v4_TED01","TED novel fold AF-A0A426CQ29-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A278959","Opitutaceae bacterium TAV4"]]},{"id":"NCBITaxon:2813651","l":"Orbilia oligospora","na":5,"nb":1,"a":[["TED%3AAF-A0A7C8QX08-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C8QX08-F1-model_v4_TED01"],["TED%3AAF-A0A6G1LQE8-F1-model_v4_TED01","TED novel fold AF-A0A6G1LQE8-F1-model_v4_TED01"],["TED%3AAF-A0A7C8K8Y3-F1-model_v4_TED01","TED novel fold AF-A0A7C8K8Y3-F1-model_v4_TED01"],["TED%3AAF-A0A7C8PM63-F1-model_v4_TED01","TED novel fold AF-A0A7C8PM63-F1-model_v4_TED01"],["TED%3AAF-A0A7C8QEL3-F1-model_v4_TED01","TED novel fold AF-A0A7C8QEL3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2813651","Orbilia oligospora"]]},{"id":"NCBITaxon:28151","l":"Serratia proteamaculans","na":1,"nb":5,"a":[["TED%3AAF-A0A4Z0DTE8-F1-model_v4_TED01","TED novel fold AF-A0A4Z0DTE8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A614","Serratia liquefaciens"],["NCBITaxon%3A28151","Serratia proteamaculans"],["NCBITaxon%3A1255585","Serratia proteamaculans 1C2F"],["NCBITaxon%3A399741","Serratia proteamaculans 568"],["NCBITaxon%3A137545","Serratia quinivorans"]]},{"id":"NCBITaxon:282459","l":"Staphylococcus aureus (strain MSSA476)","na":5,"nb":1,"a":[["Pfam%3APF21650","DNA primase DnaG, catalytic core, helical bundle"],["Pfam%3APF04507","Csa1 family"],["Pfam%3APF27280","EsaA helical domain"],["Pfam%3APF10661","WXG100 protein secretion system (Wss), protein EssA"],["PROSITE%3APS01327","Large-conductance mechanosensitive channels mscL family signature"]],"b":[["NCBITaxon%3A282459","Staphylococcus aureus subsp. aureus MSSA476"]]},{"id":"NCBITaxon:29363","l":"Clostridium paraputrificum","na":1,"nb":5,"a":[["TED%3AAF-A0A6N3ESK2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N3ESK2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29363","Clostridium paraputrificum"],["NCBITaxon%3A1280689","Clostridium paraputrificum AGR2156"],["NCBITaxon%3A1357390","Clostridium paraputrificum ETR2_15"],["NCBITaxon%3A1725","Corynebacterium xerosis"],["NCBITaxon%3A1223513","Corynebacterium xerosis NBRC 16721 = ATCC 373"]]},{"id":"NCBITaxon:296","l":"Pseudomonas fragi","na":1,"nb":5,"a":[["TED%3AAF-A0A449IS41-F1-model_v4_TED01","TED novel fold AF-A0A449IS41-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A296","Pseudomonas fragi"],["NCBITaxon%3A1255586","Pseudomonas fragi 1E26"],["NCBITaxon%3A1134475","Pseudomonas fragi A22"],["NCBITaxon%3A1136138","Pseudomonas fragi B25"],["NCBITaxon%3A1215101","Pseudomonas fragi NBRC 3458"]]},{"id":"NCBITaxon:32021","l":"Campylobacter jejuni subsp. doylei","na":1,"nb":5,"a":[["TED%3AAF-A0A381D4M6-F1-model_v4_TED01","TED novel fold AF-A0A381D4M6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A197","Campylobacter jejuni"],["NCBITaxon%3A32021","Campylobacter jejuni subsp. doylei"],["NCBITaxon%3A360109","Campylobacter jejuni subsp. doylei 269.97"],["NCBITaxon%3A1408360","Campylobacter jejuni subsp. doylei ATCC 49349"],["NCBITaxon%3A1070741","Campylobacter jejuni subsp. doylei str. RM3440"]]},{"id":"NCBITaxon:321314","l":"Salmonella choleraesuis (strain SC-B67)","na":5,"nb":1,"a":[["Pfam%3APF03100","CcmE domain"],["Pfam%3APF08884","Flagellin D3 domain"],["Pfam%3APF27117","FliB lysine N-methylase C-terminal domain"],["Pfam%3APF04741","InvH outer membrane lipoprotein"],["PROSITE%3APS01148","Uncharacterized protein family UPF0033 signature"]],"b":[["NCBITaxon%3A321314","Salmonella enterica subsp. enterica serovar Choleraesuis str. SC-B67"]]},{"id":"NCBITaxon:35818","l":"Helicobacter pullorum","na":1,"nb":5,"a":[["TED%3AAF-A0A1C0W344-F1-model_v4_TED01","TED novel fold AF-A0A1C0W344-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A35818","Helicobacter pullorum"],["NCBITaxon%3A585526","Helicobacter pullorum C1a"],["NCBITaxon%3A585527","Helicobacter pullorum C2a"],["NCBITaxon%3A537972","Helicobacter pullorum MIT 98-5489"],["NCBITaxon%3A552535","Helicobacter pullorum NCTC 12824"]]},{"id":"NCBITaxon:35828","l":"Fibrobacter sp.","na":5,"nb":1,"a":[["TED%3AAF-A0A7X7E2C0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X7E2C0-F1-model_v4_TED01"],["TED%3AAF-A0A7X7NJQ3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7X7NJQ3-F1-model_v4_TED03"],["TED%3AAF-A0A7X7P5S3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7X7P5S3-F1-model_v4_TED03"],["TED%3AAF-A0A847P247-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A847P247-F1-model_v4_TED01"],["TED%3AAF-A0A847NVS0-F1-model_v4_TED03","TED novel fold AF-A0A847NVS0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A35828","Fibrobacter sp."]]},{"id":"NCBITaxon:359786","l":"Staphylococcus aureus (strain JH9)","na":5,"nb":1,"a":[["Pfam%3APF04647","Accessory gene regulator B"],["Pfam%3APF07285","Protein of unknown function (DUF1444)"],["Pfam%3APF09902","Uncharacterized protein conserved in bacteria (DUF2129)"],["Pfam%3APF06874","Firmicute fructose-1,6-bisphosphatase"],["Pfam%3APF12127","Flotillin-like protein FloA"]],"b":[["NCBITaxon%3A359786","Staphylococcus aureus subsp. aureus JH9"]]},{"id":"NCBITaxon:361077","l":"Tieghemostelium lacteum","na":5,"nb":1,"a":[["TED%3AAF-A0A151Z3L8-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A151Z3L8-F1-model_v4_TED04"],["TED%3AAF-A0A151Z3Z9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A151Z3Z9-F1-model_v4_TED01"],["TED%3AAF-A0A151Z594-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A151Z594-F1-model_v4_TED02"],["TED%3AAF-A0A152A8X6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A152A8X6-F1-model_v4_TED01"],["TED%3AAF-A0A152A6H9-F1-model_v4_TED01","TED novel fold AF-A0A152A6H9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A361077","Tieghemostelium lacteum"]]},{"id":"NCBITaxon:376620","l":"Gluconobacter japonicus","na":1,"nb":5,"a":[["Pfam%3APF12318","Membrane bound FAD containing D-sorbitol dehydrogenase"]],"b":[["NCBITaxon%3A38307","Gluconobacter cerinus"],["NCBITaxon%3A38308","Gluconobacter frateurii"],["NCBITaxon%3A376620","Gluconobacter japonicus"],["NCBITaxon%3A1307947","Gluconobacter japonicus NBRC 3271"],["NCBITaxon%3A442","Gluconobacter oxydans"]]},{"id":"NCBITaxon:38294","l":"Photobacterium damselae subsp. piscicida","na":1,"nb":5,"a":[["TED%3AAF-A0A1V1VGA1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V1VGA1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A38293","Photobacterium damselae"],["NCBITaxon%3A38294","Photobacterium damselae subsp. piscicida"],["NCBITaxon%3A1200302","Photobacterium damselae subsp. piscicida DI21"],["NCBITaxon%3A406525","Photobacterium damselae subsp. piscicida PT99-018"],["NCBITaxon%3A406524","Photobacterium damselae subsp. piscicida USA91278"]]},{"id":"NCBITaxon:38301","l":"Corynebacterium minutissimum","na":1,"nb":5,"a":[["TED%3AAF-A0A376D050-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A376D050-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A43765","Corynebacterium amycolatum"],["NCBITaxon%3A169292","Corynebacterium aurimucosum"],["NCBITaxon%3A156978","Corynebacterium imitans"],["NCBITaxon%3A38301","Corynebacterium minutissimum"],["NCBITaxon%3A1223512","Corynebacterium minutissimum NBRC 15361"]]},{"id":"NCBITaxon:393133","l":"Listeria monocytogenes serotype 1/2a (strain 10403S)","na":5,"nb":1,"a":[["Pfam%3APF07698","7TM receptor with intracellular HD hydrolase"],["Pfam%3APF07697","7TM-HD extracellular"],["Pfam%3APF24898","Cyclic-di-AMP phosphodiesterase GdpP-like, GGDEF domain"],["Pfam%3APF19293","CdaA N-terminal transmembrane domain"],["Pfam%3APF04346","Ethanolamine utilisation protein, EutH"]],"b":[["NCBITaxon%3A393133","Listeria monocytogenes 10403S"]]},{"id":"NCBITaxon:394096","l":"Hyalangium minutum","na":5,"nb":1,"a":[["TED%3AAF-A0A085W4M3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085W4M3-F1-model_v4_TED01"],["TED%3AAF-A0A085WRA7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085WRA7-F1-model_v4_TED01"],["TED%3AAF-A0A085WWM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085WWM4-F1-model_v4_TED01"],["TED%3AAF-A0A085W7S5-F1-model_v4_TED03","TED novel fold AF-A0A085W7S5-F1-model_v4_TED03"],["TED%3AAF-A0A085WH04-F1-model_v4_TED01","TED novel fold AF-A0A085WH04-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A394096","Hyalangium minutum"]]},{"id":"NCBITaxon:39492","l":"[Eubacterium] siraeum","na":1,"nb":5,"a":[["TED%3AAF-A0A175A0B4-F1-model_v4_TED03","TED novel fold AF-A0A175A0B4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A39492","[Eubacterium] siraeum"],["NCBITaxon%3A657319","[Eubacterium] siraeum 70/3"],["NCBITaxon%3A1263080","[Eubacterium] siraeum CAG:80"],["NCBITaxon%3A428128","[Eubacterium] siraeum DSM 15702"],["NCBITaxon%3A717961","[Eubacterium] siraeum V10Sc8a"]]},{"id":"NCBITaxon:39650","l":"Cellvibrio mixtus","na":1,"nb":5,"a":[["TED%3AAF-A0A266QDL6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A266QDL6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A39650","Cellvibrio mixtus"],["NCBITaxon%3A180904","Cellvibrio mixtus subsp. dextranolyticus"],["NCBITaxon%3A126346","Cellvibrio mixtus subsp. mixtus"],["NCBITaxon%3A1209072","Cellvibrio mixtus subsp. mixtus J3-8"],["NCBITaxon%3A180915","Cellvibrio vulgaris"]]},{"id":"NCBITaxon:397291","l":"Lachnospiraceae bacterium A4","na":5,"nb":1,"a":[["TED%3AAF-R9IPI4-F1-model_v4_TED03","TED highly-symmetric fold AF-R9IPI4-F1-model_v4_TED03"],["TED%3AAF-R9JGJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-R9JGJ9-F1-model_v4_TED01"],["TED%3AAF-R9J569-F1-model_v4_TED03","TED novel fold AF-R9J569-F1-model_v4_TED03"],["TED%3AAF-R9JGL1-F1-model_v4_TED01","TED novel fold AF-R9JGL1-F1-model_v4_TED01"],["TED%3AAF-R9JR00-F1-model_v4_TED01","TED novel fold AF-R9JR00-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A397291","Lachnospiraceae bacterium A4"]]},{"id":"NCBITaxon:406548","l":"Aquisphaera giovannonii","na":5,"nb":1,"a":[["TED%3AAF-A0A5B9VUK0-F1-model_v4_TED01","TED novel fold AF-A0A5B9VUK0-F1-model_v4_TED01"],["TED%3AAF-A0A5B9VZ73-F1-model_v4_TED01","TED novel fold AF-A0A5B9VZ73-F1-model_v4_TED01"],["TED%3AAF-A0A5B9VZ88-F1-model_v4_TED02","TED novel fold AF-A0A5B9VZ88-F1-model_v4_TED02"],["TED%3AAF-A0A5B9W7W9-F1-model_v4_TED01","TED novel fold AF-A0A5B9W7W9-F1-model_v4_TED01"],["TED%3AAF-A0A5B9WD91-F1-model_v4_TED02","TED novel fold AF-A0A5B9WD91-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A406548","Aquisphaera giovannonii"]]},{"id":"NCBITaxon:408170","l":"human gut metagenome","na":5,"nb":1,"a":[["TED%3AAF-K1SHE9-F1-model_v4_TED01","TED highly-symmetric fold AF-K1SHE9-F1-model_v4_TED01"],["TED%3AAF-K1U1H4-F1-model_v4_TED01","TED highly-symmetric fold AF-K1U1H4-F1-model_v4_TED01"],["TED%3AAF-K1RVA2-F1-model_v4_TED01","TED novel fold AF-K1RVA2-F1-model_v4_TED01"],["TED%3AAF-K1TLH8-F1-model_v4_TED01","TED novel fold AF-K1TLH8-F1-model_v4_TED01"],["TED%3AAF-K1TUJ9-F1-model_v4_TED01","TED novel fold AF-K1TUJ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A408170","human gut metagenome"]]},{"id":"NCBITaxon:43263","l":"Aquipseudomonas alcaligenes","na":1,"nb":5,"a":[["TED%3AAF-A0A7W7JBX8-F1-model_v4_TED01","TED novel fold AF-A0A7W7JBX8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A43263","Aquipseudomonas alcaligenes"],["NCBITaxon%3A1405803","Aquipseudomonas alcaligenes MRY13-0052"],["NCBITaxon%3A1215092","Aquipseudomonas alcaligenes NBRC 14159"],["NCBITaxon%3A1333854","Aquipseudomonas alcaligenes OT 69"],["NCBITaxon%3A28094","Trinickia caryophylli"]]},{"id":"NCBITaxon:44252","l":"Paenibacillus macerans","na":1,"nb":5,"a":[["TED%3AAF-A0A6N8EWI4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A6N8EWI4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A266009","Methylovorus glucosotrophus"],["NCBITaxon%3A343517","Paenibacillus barengoltzii"],["NCBITaxon%3A44252","Paenibacillus macerans"],["NCBITaxon%3A1349781","Paenibacillus macerans NBRC 15307"],["NCBITaxon%3A58172","Paenibacillus sp."]]},{"id":"NCBITaxon:44941","l":"Gigaspora rosea","na":5,"nb":1,"a":[["TED%3AAF-A0A397UBJ2-F1-model_v4_TED02","TED novel fold AF-A0A397UBJ2-F1-model_v4_TED02"],["TED%3AAF-A0A397UPX2-F1-model_v4_TED01","TED novel fold AF-A0A397UPX2-F1-model_v4_TED01"],["TED%3AAF-A0A397V7N4-F1-model_v4_TED01","TED novel fold AF-A0A397V7N4-F1-model_v4_TED01"],["TED%3AAF-A0A397VB64-F1-model_v4_TED01","TED novel fold AF-A0A397VB64-F1-model_v4_TED01"],["TED%3AAF-A0A397VR16-F1-model_v4_TED01","TED novel fold AF-A0A397VR16-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A44941","Gigaspora rosea"]]},{"id":"NCBITaxon:473421","l":"Xanthomonas citri pv. glycines","na":1,"nb":5,"a":[["PROSITE%3APS01060","Flagella transport protein fliP family signature 1"]],"b":[["NCBITaxon%3A473421","Xanthomonas citri pv. glycines"],["NCBITaxon%3A1365648","Xanthomonas citri pv. glycines CFBP 2526"],["NCBITaxon%3A1365649","Xanthomonas citri pv. glycines CFBP 7119"],["NCBITaxon%3A1150615","Xanthomonas citri pv. glycines str. 12-2"],["NCBITaxon%3A1401257","Xanthomonas citri pv. glycines str. 8ra"]]},{"id":"NCBITaxon:47427","l":"Armillaria gallica","na":5,"nb":1,"a":[["TED%3AAF-A0A2H3CFH3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H3CFH3-F1-model_v4_TED02"],["TED%3AAF-A0A2H3DFZ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H3DFZ3-F1-model_v4_TED01"],["TED%3AAF-A0A2H3DTE1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H3DTE1-F1-model_v4_TED02"],["TED%3AAF-A0A2H3E1R0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H3E1R0-F1-model_v4_TED02"],["TED%3AAF-A0A2H3CX67-F1-model_v4_TED02","TED novel fold AF-A0A2H3CX67-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A47427","Armillaria gallica"]]},{"id":"NCBITaxon:4846","l":"Rhizopus stolonifer","na":5,"nb":1,"a":[["TED%3AAF-A0A367KJ25-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A367KJ25-F1-model_v4_TED02"],["TED%3AAF-A0A367KTA1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A367KTA1-F1-model_v4_TED01"],["TED%3AAF-A0A367J2U8-F1-model_v4_TED03","TED novel fold AF-A0A367J2U8-F1-model_v4_TED03"],["TED%3AAF-A0A367J367-F1-model_v4_TED01","TED novel fold AF-A0A367J367-F1-model_v4_TED01"],["TED%3AAF-A0A367JRQ7-F1-model_v4_TED01","TED novel fold AF-A0A367JRQ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A4846","Rhizopus stolonifer"]]},{"id":"NCBITaxon:488447","l":"Burkholderia contaminans","na":1,"nb":5,"a":[["TED%3AAF-A0A3N8RI51-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N8RI51-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A488447","Burkholderia contaminans"],["NCBITaxon%3A1423418","Burkholderia contaminans FFH2050"],["NCBITaxon%3A1423419","Burkholderia contaminans FFH2055"],["NCBITaxon%3A1334628","Burkholderia contaminans LMG 23361"],["NCBITaxon%3A36773","Burkholderia sp."]]},{"id":"NCBITaxon:498019","l":"","na":5,"nb":1,"a":[["Pfam%3APF10182","Flo11 domain"],["Pfam%3APF15789","Hyphally regulated cell wall GPI-anchored protein 1"],["TED%3AAF-A0A0L0NR05-F1-model_v4_TED02","TED novel fold AF-A0A0L0NR05-F1-model_v4_TED02"],["TED%3AAF-A0A510NYC2-F1-model_v4_TED01","TED novel fold AF-A0A510NYC2-F1-model_v4_TED01"],["TED%3AAF-A0A5Q7YF59-F1-model_v4_TED03","TED novel fold AF-A0A5Q7YF59-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A498019","Candidozyma auris"]]},{"id":"NCBITaxon:502800","l":"Yersinia pseudotuberculosis serotype O:3 (strain YPIII)","na":5,"nb":1,"a":[["Pfam%3APF03421","YopJ Serine/Threonine acetyltransferase"],["Pfam%3APF21111","CDI toxin restriction endonuclease-like domain"],["Pfam%3APF21483","Toxin CdiA-like, helical domain"],["Pfam%3APF07262","CDI immunity protein"],["Pfam%3APF16374","Cycle inhibiting factor (CIF)"]],"b":[["NCBITaxon%3A502800","Yersinia pseudotuberculosis YPIII"]]},{"id":"NCBITaxon:5081","l":"","na":5,"nb":1,"a":[["Pfam%3APF13364","Beta-galactosidase second all-beta domain"],["Pfam%3APF10435","Beta-galactosidase, domain 2"],["Pfam%3APF13363","Beta-galactosidase, domain 3"],["Pfam%3APF01301","Glycosyl hydrolases family 35"],["PROSITE%3APS01182","Glycosyl hydrolases family 35 putative active site"]],"b":[["NCBITaxon%3A5081","Penicillium sp."]]},{"id":"NCBITaxon:5454","l":"","na":5,"nb":1,"a":[["TED%3AAF-A0A162YC52-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A162YC52-F1-model_v4_TED01"],["TED%3AAF-A0A163JCD7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A163JCD7-F1-model_v4_TED01"],["TED%3AAF-A0A163LJZ7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A163LJZ7-F1-model_v4_TED02"],["TED%3AAF-A0A163LQ36-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A163LQ36-F1-model_v4_TED01"],["TED%3AAF-A0A163M9G4-F1-model_v4_TED01","TED novel fold AF-A0A163M9G4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5454","Ascochyta rabiei"]]},{"id":"NCBITaxon:5762","l":"Naegleria gruberi","na":5,"nb":1,"a":[["TED%3AAF-D2VJ76-F1-model_v4_TED03","TED highly-symmetric fold AF-D2VJ76-F1-model_v4_TED03"],["TED%3AAF-D2VTQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-D2VTQ3-F1-model_v4_TED01"],["TED%3AAF-D2VYX3-F1-model_v4_TED01","TED highly-symmetric fold AF-D2VYX3-F1-model_v4_TED01"],["TED%3AAF-D2VGJ9-F1-model_v4_TED02","TED novel fold AF-D2VGJ9-F1-model_v4_TED02"],["TED%3AAF-D2VJ05-F1-model_v4_TED02","TED novel fold AF-D2VJ05-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A5762","Naegleria gruberi"]]},{"id":"NCBITaxon:588858","l":"Salmonella typhimurium (strain 14028s / SGSC 2262)","na":5,"nb":1,"a":[["Pfam%3APF13508","Acetyltransferase (GNAT) domain"],["Pfam%3APF10995","Cellulose biosynthesis protein BcsE, N-terminal domain"],["Pfam%3APF26769","Sensor protein PhoQ-like, HAMP domain"],["Pfam%3APF07071","KDGP aldolase"],["PROSITE%3APS01195","Peptidyl-tRNA hydrolase signature 1"]],"b":[["NCBITaxon%3A588858","Salmonella enterica subsp. enterica serovar Typhimurium str. 14028S"]]},{"id":"NCBITaxon:63737","l":"Nostoc punctiforme PCC 73102","na":5,"nb":1,"a":[["Pfam%3APF11266","Long-chain fatty aldehyde decarbonylase"],["Pfam%3APF21808","Bacterial dynamin-like protein, helical domain"],["Pfam%3APF18460","Heterocyst differentiation regulator C-terminal Hood domain"],["Pfam%3APF13619","KTSC domain"],["PROSITE%3APS01026","Photosystem I psaG and psaK proteins signature"]],"b":[["NCBITaxon%3A63737","Nostoc punctiforme PCC 73102"]]},{"id":"NCBITaxon:73025","l":"Eutreptiella gymnastica","na":5,"nb":1,"a":[["TED%3AAF-A0A7S1IWD8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S1IWD8-F1-model_v4_TED03"],["TED%3AAF-A0A7S4GLI6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S4GLI6-F1-model_v4_TED02"],["TED%3AAF-A0A7S1J4P7-F1-model_v4_TED01","TED novel fold AF-A0A7S1J4P7-F1-model_v4_TED01"],["TED%3AAF-A0A7S1NTX7-F1-model_v4_TED01","TED novel fold AF-A0A7S1NTX7-F1-model_v4_TED01"],["TED%3AAF-A0A7S4GF48-F1-model_v4_TED02","TED novel fold AF-A0A7S4GF48-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A73025","Eutreptiella gymnastica"]]},{"id":"NCBITaxon:735","l":"Haemophilus parahaemolyticus","na":1,"nb":5,"a":[["Pfam%3APF13391","HNH endonuclease"]],"b":[["NCBITaxon%3A735","Haemophilus parahaemolyticus"],["NCBITaxon%3A1430896","Haemophilus parahaemolyticus G321"],["NCBITaxon%3A1095744","Haemophilus parahaemolyticus HK385"],["NCBITaxon%3A736","Haemophilus paraphrohaemolyticus"],["NCBITaxon%3A1078480","Haemophilus sputorum"]]},{"id":"NCBITaxon:758","l":"Rodentibacter pneumotropicus","na":1,"nb":5,"a":[["TED%3AAF-A0A6L9GQA8-F1-model_v4_TED01","TED novel fold AF-A0A6L9GQA8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A301","Ectopseudomonas oleovorans"],["NCBITaxon%3A1215116","Ectopseudomonas oleovorans NBRC 14167"],["NCBITaxon%3A1796644","Rodentibacter caecimuris"],["NCBITaxon%3A758","Rodentibacter pneumotropicus"],["NCBITaxon%3A1122936","Rodentibacter pneumotropicus DSM 21403"]]},{"id":"NCBITaxon:76594","l":"Cellulophaga baltica","na":1,"nb":5,"a":[["TED%3AAF-A0A1G7LG86-F1-model_v4_TED01","TED novel fold AF-A0A1G7LG86-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A76594","Cellulophaga baltica"],["NCBITaxon%3A1348583","Cellulophaga baltica 13"],["NCBITaxon%3A1348584","Cellulophaga baltica 18"],["NCBITaxon%3A1348582","Cellulophaga baltica 4"],["NCBITaxon%3A1348585","Cellulophaga baltica NN016038"]]},{"id":"NCBITaxon:76856","l":"Fusobacterium nucleatum subsp. nucleatum","na":1,"nb":5,"a":[["TED%3AAF-A0A101K510-F1-model_v4_TED01","TED novel fold AF-A0A101K510-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A851","Fusobacterium nucleatum"],["NCBITaxon%3A76856","Fusobacterium nucleatum subsp. nucleatum"],["NCBITaxon%3A525283","Fusobacterium nucleatum subsp. nucleatum ATCC 23726"],["NCBITaxon%3A190304","Fusobacterium nucleatum subsp. nucleatum ATCC 25586"],["NCBITaxon%3A1307428","Fusobacterium nucleatum subsp. nucleatum ChDC F316"]]},{"id":"NCBITaxon:786","l":"Rickettsia akari","na":1,"nb":5,"a":[["Pfam%3APF12574","120 KDa Rickettsia surface antigen"]],"b":[["NCBITaxon%3A786","Rickettsia akari"],["NCBITaxon%3A1359190","Rickettsia akari str. AS4-1"],["NCBITaxon%3A1359191","Rickettsia akari str. Croatia"],["NCBITaxon%3A293614","Rickettsia akari str. Hartford"],["NCBITaxon%3A1359192","Rickettsia akari str. Toger"]]},{"id":"NCBITaxon:82367","l":"Paracoccus pantotrophus","na":1,"nb":5,"a":[["Pfam%3APF17805","AsnC-like ligand binding domain"]],"b":[["NCBITaxon%3A266","Paracoccus denitrificans"],["NCBITaxon%3A1302247","Paracoccus denitrificans JCM 21484"],["NCBITaxon%3A82367","Paracoccus pantotrophus"],["NCBITaxon%3A936051","Paracoccus pantotrophus J40"],["NCBITaxon%3A935565","Paracoccus pantotrophus J46"]]},{"id":"NCBITaxon:863","l":"Syntrophomonas wolfei","na":1,"nb":5,"a":[["TED%3AAF-A0A354YY78-F1-model_v4_TED03","TED novel fold AF-A0A354YY78-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A863","Syntrophomonas wolfei"],["NCBITaxon%3A378794","Syntrophomonas wolfei subsp. methylbutyratica"],["NCBITaxon%3A373074","Syntrophomonas wolfei subsp. saponavida"],["NCBITaxon%3A370885","Syntrophomonas wolfei subsp. wolfei"],["NCBITaxon%3A335541","Syntrophomonas wolfei subsp. wolfei str. Goettingen G311"]]},{"id":"NCBITaxon:97359","l":"Auriculariopsis ampla","na":5,"nb":1,"a":[["TED%3AAF-A0A550BT88-F1-model_v4_TED02","TED novel fold AF-A0A550BT88-F1-model_v4_TED02"],["TED%3AAF-A0A550C1Q6-F1-model_v4_TED01","TED novel fold AF-A0A550C1Q6-F1-model_v4_TED01"],["TED%3AAF-A0A550C8V2-F1-model_v4_TED01","TED novel fold AF-A0A550C8V2-F1-model_v4_TED01"],["TED%3AAF-A0A550CST1-F1-model_v4_TED02","TED novel fold AF-A0A550CST1-F1-model_v4_TED02"],["TED%3AAF-A0A550CVG0-F1-model_v4_TED01","TED novel fold AF-A0A550CVG0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A97359","Schizophyllum amplum"]]},{"id":"NCBITaxon:97972","l":"Periconia macrospinosa","na":5,"nb":1,"a":[["TED%3AAF-A0A2V1CWF6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V1CWF6-F1-model_v4_TED01"],["TED%3AAF-A0A2V1CWR1-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A2V1CWR1-F1-model_v4_TED05"],["TED%3AAF-A0A2V1D579-F1-model_v4_TED02","TED novel fold AF-A0A2V1D579-F1-model_v4_TED02"],["TED%3AAF-A0A2V1D6F3-F1-model_v4_TED01","TED novel fold AF-A0A2V1D6F3-F1-model_v4_TED01"],["TED%3AAF-A0A2V1DKR2-F1-model_v4_TED02","TED novel fold AF-A0A2V1DKR2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A97972","Periconia macrospinosa"]]},{"id":"NCBITaxon:986","l":"Flavobacterium johnsoniae","na":1,"nb":5,"a":[["TED%3AAF-A0A1J7BWE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1J7BWE6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2704140","Flavobacterium bizetiae"],["NCBITaxon%3A986","Flavobacterium johnsoniae"],["NCBITaxon%3A994","Flavobacterium johnsoniae subsp. aurantiacum"],["NCBITaxon%3A376686","Flavobacterium johnsoniae UW101"],["NCBITaxon%3A1337839","Flavobacterium sp. DSM 425"]]},{"id":"NCBITaxon:100816","l":"Madurella mycetomatis","na":4,"nb":1,"a":[["IDPO%3A0000033","flexible linker"],["TED%3AAF-A0A175WFF5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A175WFF5-F1-model_v4_TED02"],["TED%3AAF-A0A175VN21-F1-model_v4_TED04","TED novel fold AF-A0A175VN21-F1-model_v4_TED04"],["TED%3AAF-A0A175VW88-F1-model_v4_TED02","TED novel fold AF-A0A175VW88-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A100816","Madurella mycetomatis"]]},{"id":"NCBITaxon:108980","l":"Acinetobacter ursingii","na":1,"nb":4,"a":[["TED%3AAF-A0A3F3LBR7-F1-model_v4_TED01","TED novel fold AF-A0A3F3LBR7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A108980","Acinetobacter ursingii"],["NCBITaxon%3A1257043","Acinetobacter ursingii ANC 3649"],["NCBITaxon%3A981336","Acinetobacter ursingii DSM 16037 = CIP 107286"],["NCBITaxon%3A1217716","Acinetobacter ursingii NIPH 706"]]},{"id":"NCBITaxon:108981","l":"Acinetobacter schindleri","na":1,"nb":4,"a":[["TED%3AAF-A0A855WCB4-F1-model_v4_TED02","TED novel fold AF-A0A855WCB4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A108981","Acinetobacter schindleri"],["NCBITaxon%3A1217988","Acinetobacter schindleri CIP 107287"],["NCBITaxon%3A1217675","Acinetobacter schindleri NIPH 900"],["NCBITaxon%3A1221311","Acinetobacter schindleri TG19614"]]},{"id":"NCBITaxon:1095630","l":"Hyaloscypha bicolor E","na":4,"nb":1,"a":[["TED%3AAF-A0A2J6SZK6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2J6SZK6-F1-model_v4_TED02"],["TED%3AAF-A0A2J6TXE7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J6TXE7-F1-model_v4_TED01"],["TED%3AAF-A0A2J6TLU9-F1-model_v4_TED03","TED novel fold AF-A0A2J6TLU9-F1-model_v4_TED03"],["TED%3AAF-A0A2J6TUE6-F1-model_v4_TED02","TED novel fold AF-A0A2J6TUE6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1095630","Hyaloscypha bicolor E"]]},{"id":"NCBITaxon:1148157","l":"Acinetobacter oleivorans","na":1,"nb":4,"a":[["TED%3AAF-A0A0B2UAV2-F1-model_v4_TED02","TED novel fold AF-A0A0B2UAV2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1148157","Acinetobacter oleivorans"],["NCBITaxon%3A1391912","Acinetobacter oleivorans CIP 110421"],["NCBITaxon%3A436717","Acinetobacter oleivorans DR1"],["NCBITaxon%3A472","Acinetobacter sp."]]},{"id":"NCBITaxon:1214573","l":"Diaporthe ampelina","na":4,"nb":1,"a":[["TED%3AAF-A0A0G2HYY7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G2HYY7-F1-model_v4_TED01"],["TED%3AAF-A0A0G2FLY8-F1-model_v4_TED02","TED novel fold AF-A0A0G2FLY8-F1-model_v4_TED02"],["TED%3AAF-A0A0G2FPQ9-F1-model_v4_TED02","TED novel fold AF-A0A0G2FPQ9-F1-model_v4_TED02"],["TED%3AAF-A0A0G2HNR1-F1-model_v4_TED01","TED novel fold AF-A0A0G2HNR1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1214573","Diaporthe ampelina"]]},{"id":"NCBITaxon:121719","l":"Pannonibacter phragmitetus","na":1,"nb":4,"a":[["TED%3AAF-A0A0U3EPB7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0U3EPB7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A134375","Achromobacter sp."],["NCBITaxon%3A121719","Pannonibacter phragmitetus"],["NCBITaxon%3A1402210","Pannonibacter phragmitetus BB"],["NCBITaxon%3A1122929","Pannonibacter phragmitetus DSM 14782"]]},{"id":"NCBITaxon:1231657","l":"Clohesyomyces aquaticus","na":4,"nb":1,"a":[["TED%3AAF-A0A1Y1ZK11-F1-model_v4_TED01","TED novel fold AF-A0A1Y1ZK11-F1-model_v4_TED01"],["TED%3AAF-A0A1Y1ZYS0-F1-model_v4_TED01","TED novel fold AF-A0A1Y1ZYS0-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2A1E6-F1-model_v4_TED03","TED novel fold AF-A0A1Y2A1E6-F1-model_v4_TED03"],["TED%3AAF-A0A1Y2A232-F1-model_v4_TED01","TED novel fold AF-A0A1Y2A232-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1231657","Clohesyomyces aquaticus"]]},{"id":"NCBITaxon:1235793","l":"Lachnospiraceae bacterium MD335","na":4,"nb":1,"a":[["TED%3AAF-A0A7X5RDY3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X5RDY3-F1-model_v4_TED01"],["TED%3AAF-R9K9C1-F1-model_v4_TED01","TED highly-symmetric fold AF-R9K9C1-F1-model_v4_TED01"],["TED%3AAF-R9K5A2-F1-model_v4_TED02","TED novel fold AF-R9K5A2-F1-model_v4_TED02"],["TED%3AAF-R9KI55-F1-model_v4_TED01","TED novel fold AF-R9KI55-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1235793","Lachnospiraceae bacterium MD335"]]},{"id":"NCBITaxon:1294122","l":"Nanobsidianus stetteri","na":4,"nb":1,"a":[["TED%3AAF-R1E4D6-F1-model_v4_TED02","TED highly-symmetric fold AF-R1E4D6-F1-model_v4_TED02"],["TED%3AAF-R1GAD9-F1-model_v4_TED01","TED highly-symmetric fold AF-R1GAD9-F1-model_v4_TED01"],["TED%3AAF-A0A2T9WKI4-F1-model_v4_TED01","TED novel fold AF-A0A2T9WKI4-F1-model_v4_TED01"],["TED%3AAF-A0A2T9WL51-F1-model_v4_TED01","TED novel fold AF-A0A2T9WL51-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1294122","Candidatus Nanobsidianus stetteri"]]},{"id":"NCBITaxon:13221","l":"Chrysotila carterae","na":4,"nb":1,"a":[["TED%3AAF-A0A7S4BGL5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4BGL5-F1-model_v4_TED01"],["TED%3AAF-A0A7S4FAB1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4FAB1-F1-model_v4_TED01"],["TED%3AAF-A0A7S4BZI9-F1-model_v4_TED01","TED novel fold AF-A0A7S4BZI9-F1-model_v4_TED01"],["TED%3AAF-A0A7S4C065-F1-model_v4_TED02","TED novel fold AF-A0A7S4C065-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A13221","Chrysotila carterae"]]},{"id":"NCBITaxon:1353","l":"Enterococcus gallinarum","na":1,"nb":4,"a":[["Pfam%3APF01757","Acyltransferase domain"]],"b":[["NCBITaxon%3A1353","Enterococcus gallinarum"],["NCBITaxon%3A565653","Enterococcus gallinarum EG2"],["NCBITaxon%3A1357296","Enterococcus gallinarum EGD-AAK12"],["NCBITaxon%3A1218091","Enterococcus gallinarum NBRC 100675"]]},{"id":"NCBITaxon:1353891","l":"Achromobacter deleyi","na":1,"nb":4,"a":[["TED%3AAF-A0A7Y4KA77-F1-model_v4_TED01","TED novel fold AF-A0A7Y4KA77-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1353891","Achromobacter deleyi"],["NCBITaxon%3A32002","Achromobacter denitrificans"],["NCBITaxon%3A72556","Achromobacter piechaudii"],["NCBITaxon%3A85698","Achromobacter xylosoxidans"]]},{"id":"NCBITaxon:137584","l":"Thalassomonas viridans","na":4,"nb":1,"a":[["TED%3AAF-A0A0D8CPR2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D8CPR2-F1-model_v4_TED01"],["TED%3AAF-A0A0D8CLZ9-F1-model_v4_TED01","TED novel fold AF-A0A0D8CLZ9-F1-model_v4_TED01"],["TED%3AAF-A0A0D8D8E8-F1-model_v4_TED02","TED novel fold AF-A0A0D8D8E8-F1-model_v4_TED02"],["TED%3AAF-A0A0D8DAF2-F1-model_v4_TED01","TED novel fold AF-A0A0D8DAF2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A137584","Thalassomonas viridans"]]},{"id":"NCBITaxon:1411316","l":"Pedobacter sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A520IH20-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A520IH20-F1-model_v4_TED02"],["TED%3AAF-A0A519VYD0-F1-model_v4_TED02","TED novel fold AF-A0A519VYD0-F1-model_v4_TED02"],["TED%3AAF-A0A520CAS2-F1-model_v4_TED01","TED novel fold AF-A0A520CAS2-F1-model_v4_TED01"],["TED%3AAF-A0A520GU64-F1-model_v4_TED01","TED novel fold AF-A0A520GU64-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1411316","Pedobacter sp."]]},{"id":"NCBITaxon:1469910","l":"Ophiobolus disseminans","na":4,"nb":1,"a":[["TED%3AAF-A0A6A6ZF39-F1-model_v4_TED01","TED novel fold AF-A0A6A6ZF39-F1-model_v4_TED01"],["TED%3AAF-A0A6A6ZQ10-F1-model_v4_TED01","TED novel fold AF-A0A6A6ZQ10-F1-model_v4_TED01"],["TED%3AAF-A0A6A7A7Q3-F1-model_v4_TED02","TED novel fold AF-A0A6A7A7Q3-F1-model_v4_TED02"],["TED%3AAF-A0A6A7AM34-F1-model_v4_TED01","TED novel fold AF-A0A6A7AM34-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1469910","Ophiobolus disseminans"]]},{"id":"NCBITaxon:147","l":"Spirochaeta aurantia","na":1,"nb":4,"a":[["Pfam%3APF06226","Protein of unknown function (DUF1007)"]],"b":[["NCBITaxon%3A147","Spirochaeta aurantia"],["NCBITaxon%3A143778","Spirochaeta aurantia subsp. aurantia"],["NCBITaxon%3A555314","Spirochaeta aurantia subsp. aurantia M1"],["NCBITaxon%3A143779","Spirochaeta aurantia subsp. stricta"]]},{"id":"NCBITaxon:1486930","l":"Bicosoecida sp. CB-2014","na":4,"nb":1,"a":[["TED%3AAF-A0A7S1C883-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1C883-F1-model_v4_TED01"],["TED%3AAF-A0A7S1CQ98-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1CQ98-F1-model_v4_TED01"],["TED%3AAF-A0A7S1C3X4-F1-model_v4_TED02","TED novel fold AF-A0A7S1C3X4-F1-model_v4_TED02"],["TED%3AAF-A0A7S1CFB4-F1-model_v4_TED01","TED novel fold AF-A0A7S1CFB4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1486930","Bicosoecida sp. CB-2014"]]},{"id":"NCBITaxon:1507806","l":"Campylobacter fetus subsp. testudinum","na":1,"nb":4,"a":[["TED%3AAF-A0A2S0JEW5-F1-model_v4_TED02","TED novel fold AF-A0A2S0JEW5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A196","Campylobacter fetus"],["NCBITaxon%3A1507806","Campylobacter fetus subsp. testudinum"],["NCBITaxon%3A1244528","Campylobacter fetus subsp. testudinum 03-427"],["NCBITaxon%3A1244529","Campylobacter fetus subsp. testudinum Sp3"]]},{"id":"NCBITaxon:157692","l":"Pseudoleptotrichia goodfellowii","na":1,"nb":4,"a":[["TED%3AAF-A0A510JCV0-F1-model_v4_TED01","TED novel fold AF-A0A510JCV0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A157692","Pseudoleptotrichia goodfellowii"],["NCBITaxon%3A564663","Pseudoleptotrichia goodfellowii D28"],["NCBITaxon%3A714315","Pseudoleptotrichia goodfellowii DSM 19756"],["NCBITaxon%3A596323","Pseudoleptotrichia goodfellowii F0264"]]},{"id":"NCBITaxon:1588","l":"Lentilactobacillus hilgardii","na":1,"nb":4,"a":[["TED%3AAF-A0A6G9Q2H1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6G9Q2H1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1588","Lentilactobacillus hilgardii"],["NCBITaxon%3A525310","Lentilactobacillus hilgardii ATCC 27305"],["NCBITaxon%3A1423757","Lentilactobacillus hilgardii DSM 20176 = ATCC 8290"],["NCBITaxon%3A1580","Levilactobacillus brevis"]]},{"id":"NCBITaxon:160491","l":"Streptococcus pyogenes serotype M5 (strain Manfredo)","na":4,"nb":1,"a":[["Pfam%3APF20921","Domain of unknown function DUF1846, C-terminal"],["Pfam%3APF08903","Domain of unknown function DUF1846, N-terminal"],["Pfam%3APF05979","Bacterial protein of unknown function (DUF896)"],["Pfam%3APF02274","Arginine deiminase"]],"b":[["NCBITaxon%3A160491","Streptococcus pyogenes str. Manfredo"]]},{"id":"NCBITaxon:160492","l":"Xylella fastidiosa (strain 9a5c)","na":4,"nb":1,"a":[["Pfam%3APF21142","Bacterial alpha-2 macroglobulin MG2 domain"],["Pfam%3APF04273","Beta-lactamase hydrolase-like protein, phosphatase-like domain"],["Pfam%3APF17970","Bacterial Alpha-2-macroglobulin MG1 domain"],["Pfam%3APF20398","Family of unknown function (DUF6691)"]],"b":[["NCBITaxon%3A160492","Xylella fastidiosa 9a5c"]]},{"id":"NCBITaxon:161662","l":"Teratosphaeria nubilosa","na":4,"nb":1,"a":[["TED%3AAF-A0A6G1L6X0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6G1L6X0-F1-model_v4_TED01"],["TED%3AAF-A0A6G1L7T9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6G1L7T9-F1-model_v4_TED01"],["TED%3AAF-A0A6G1KZ67-F1-model_v4_TED02","TED novel fold AF-A0A6G1KZ67-F1-model_v4_TED02"],["TED%3AAF-A0A6G1LI25-F1-model_v4_TED04","TED novel fold AF-A0A6G1LI25-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A161662","Teratosphaeria nubilosa"]]},{"id":"NCBITaxon:1632865","l":"Pirellula sp. SH-Sr6A","na":4,"nb":1,"a":[["TED%3AAF-A0A142XYB0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A142XYB0-F1-model_v4_TED01"],["TED%3AAF-A0A142Y0N9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A142Y0N9-F1-model_v4_TED01"],["TED%3AAF-A0A142Y915-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A142Y915-F1-model_v4_TED01"],["TED%3AAF-A0A142Y424-F1-model_v4_TED02","TED novel fold AF-A0A142Y424-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1632865","Pirellula sp. SH-Sr6A"]]},{"id":"NCBITaxon:165186","l":"uncultured Ruminococcus sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A1C6BFR9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C6BFR9-F1-model_v4_TED01"],["TED%3AAF-A0A1C6EIV9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1C6EIV9-F1-model_v4_TED02"],["TED%3AAF-A0A1C6EIR5-F1-model_v4_TED03","TED novel fold AF-A0A1C6EIR5-F1-model_v4_TED03"],["TED%3AAF-A0A1C6F3V5-F1-model_v4_TED02","TED novel fold AF-A0A1C6F3V5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A165186","uncultured Ruminococcus sp."]]},{"id":"NCBITaxon:1667327","l":"Klebsiella quasipneumoniae subsp. quasipneumoniae","na":1,"nb":4,"a":[["TED%3AAF-A0A208M152-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A208M152-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1463165","Klebsiella quasipneumoniae"],["NCBITaxon%3A1667327","Klebsiella quasipneumoniae subsp. quasipneumoniae"],["NCBITaxon%3A1443591","Klebsiella quasipneumoniae subsp. quasipneumoniae 18A069"],["NCBITaxon%3A1328397","Klebsiella quasipneumoniae subsp. quasipneumoniae UCICRE 14"]]},{"id":"NCBITaxon:173365","l":"Methylobacter tundripaludum","na":1,"nb":4,"a":[["TED%3AAF-A0A2S6HGL6-F1-model_v4_TED02","TED novel fold AF-A0A2S6HGL6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A173365","Methylobacter tundripaludum"],["NCBITaxon%3A1408450","Methylobacter tundripaludum 21/22"],["NCBITaxon%3A1408451","Methylobacter tundripaludum 31/32"],["NCBITaxon%3A697282","Methylobacter tundripaludum SV96"]]},{"id":"NCBITaxon:1813822","l":"Xylariales sp. No.14919","na":4,"nb":1,"a":[["TED%3AAF-A0A1V1SW90-F1-model_v4_TED01","TED novel fold AF-A0A1V1SW90-F1-model_v4_TED01"],["TED%3AAF-A0A1V1T5K0-F1-model_v4_TED01","TED novel fold AF-A0A1V1T5K0-F1-model_v4_TED01"],["TED%3AAF-A0A1V1TFW0-F1-model_v4_TED03","TED novel fold AF-A0A1V1TFW0-F1-model_v4_TED03"],["TED%3AAF-A0A1V1THH5-F1-model_v4_TED03","TED novel fold AF-A0A1V1THH5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1813822","Xylariales sp. No.14919"]]},{"id":"NCBITaxon:1852869","l":"Deltaproteobacteria bacterium ADurb.Bin207","na":4,"nb":1,"a":[["TED%3AAF-A0A1V5X5S0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5X5S0-F1-model_v4_TED01"],["TED%3AAF-A0A1V5XCK9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5XCK9-F1-model_v4_TED01"],["TED%3AAF-A0A1V5WYL9-F1-model_v4_TED01","TED novel fold AF-A0A1V5WYL9-F1-model_v4_TED01"],["TED%3AAF-A0A1V5XM89-F1-model_v4_TED02","TED novel fold AF-A0A1V5XM89-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1852869","Deltaproteobacteria bacterium ADurb.Bin207"]]},{"id":"NCBITaxon:1871086","l":"Brevundimonas sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A2W6RYY6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2W6RYY6-F1-model_v4_TED03"],["TED%3AAF-A0A326KNM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A326KNM4-F1-model_v4_TED01"],["TED%3AAF-A0A521NPA0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521NPA0-F1-model_v4_TED01"],["TED%3AAF-A0A519PPD7-F1-model_v4_TED01","TED novel fold AF-A0A519PPD7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1871086","Brevundimonas sp."]]},{"id":"NCBITaxon:187327","l":"Acidaminococcus intestini","na":1,"nb":4,"a":[["TED%3AAF-C0WBZ8-F1-model_v4_TED01","TED highly-symmetric fold AF-C0WBZ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A187327","Acidaminococcus intestini"],["NCBITaxon%3A1263033","Acidaminococcus intestini CAG:325"],["NCBITaxon%3A1120921","Acidaminococcus intestini DSM 21505"],["NCBITaxon%3A568816","Acidaminococcus intestini RyC-MR95"]]},{"id":"NCBITaxon:1882271","l":"Geodermatophilaceae bacterium","na":4,"nb":1,"a":[["TED%3AAF-A0A7V9LZB8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V9LZB8-F1-model_v4_TED01"],["TED%3AAF-A0A7W0GCM7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W0GCM7-F1-model_v4_TED01"],["TED%3AAF-A0A7W0JMU1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W0JMU1-F1-model_v4_TED01"],["TED%3AAF-A0A7W0L938-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W0L938-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1882271","Geodermatophilaceae bacterium"]]},{"id":"NCBITaxon:1887","l":"Streptomyces albogriseolus","na":1,"nb":4,"a":[["PROSITE%3APS00999","Streptomyces subtilisin-type inhibitors signature"]],"b":[["NCBITaxon%3A1887","Streptomyces albogriseolus"],["NCBITaxon%3A1093098","Streptomyces albogriseolus 1-36"],["NCBITaxon%3A1608467","Streptomyces albogriseolus subsp. cellulolyticus"],["NCBITaxon%3A3075520","Streptomyces lancefieldiae"]]},{"id":"NCBITaxon:1891926","l":"Fuerstiella marisgermanici","na":4,"nb":1,"a":[["TED%3AAF-A0A1P8WC41-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1P8WC41-F1-model_v4_TED01"],["TED%3AAF-A0A1P8WR00-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1P8WR00-F1-model_v4_TED02"],["TED%3AAF-A0A1P8WFX6-F1-model_v4_TED01","TED novel fold AF-A0A1P8WFX6-F1-model_v4_TED01"],["TED%3AAF-A0A1P8WQN4-F1-model_v4_TED02","TED novel fold AF-A0A1P8WQN4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1891926","Fuerstiella marisgermanici"]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":4,"nb":1,"a":[["Pfam%3APF16861","Carbamoyltransferase C-terminus"],["Pfam%3APF02543","Carbamoyltransferase N-terminus"],["Pfam%3APF01960","ArgJ family"],["Pfam%3APF07467","Beta-lactamase inhibitor (BLIP)"]],"b":[["NCBITaxon%3A1901","Streptomyces clavuligerus"]]},{"id":"NCBITaxon:1906242","l":"Tenacibaculum sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A3C1S134-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3C1S134-F1-model_v4_TED03"],["TED%3AAF-A0A354GFG9-F1-model_v4_TED02","TED novel fold AF-A0A354GFG9-F1-model_v4_TED02"],["TED%3AAF-A0A354GH92-F1-model_v4_TED03","TED novel fold AF-A0A354GH92-F1-model_v4_TED03"],["TED%3AAF-A0A3C1RZP3-F1-model_v4_TED01","TED novel fold AF-A0A3C1RZP3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1906242","Tenacibaculum sp."]]},{"id":"NCBITaxon:1909295","l":"Solirubrobacterales bacterium","na":4,"nb":1,"a":[["TED%3AAF-A0A2W5YWX4-F1-model_v4_TED01","TED novel fold AF-A0A2W5YWX4-F1-model_v4_TED01"],["TED%3AAF-A0A7V9Q330-F1-model_v4_TED01","TED novel fold AF-A0A7V9Q330-F1-model_v4_TED01"],["TED%3AAF-A0A7W0TI55-F1-model_v4_TED01","TED novel fold AF-A0A7W0TI55-F1-model_v4_TED01"],["TED%3AAF-A0A7W1S1I9-F1-model_v4_TED02","TED novel fold AF-A0A7W1S1I9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1909295","Solirubrobacterales bacterium"]]},{"id":"NCBITaxon:1944","l":"Streptomyces halstedii","na":1,"nb":4,"a":[["Pfam%3APF09277","Erythronolide synthase, docking"]],"b":[["NCBITaxon%3A68212","Streptomyces graminofaciens"],["NCBITaxon%3A1909","Streptomyces griseolus"],["NCBITaxon%3A1944","Streptomyces halstedii"],["NCBITaxon%3A178788","Streptomyces halstedii subsp. scabies"]]},{"id":"NCBITaxon:1961369","l":"Thermofilum sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A7C2LAY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C2LAY6-F1-model_v4_TED01"],["TED%3AAF-A0A831U077-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A831U077-F1-model_v4_TED01"],["TED%3AAF-A0A832LZK9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A832LZK9-F1-model_v4_TED01"],["TED%3AAF-A0A832DVC5-F1-model_v4_TED02","TED novel fold AF-A0A832DVC5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1961369","Thermofilum sp."]]},{"id":"NCBITaxon:1970323","l":"Bdellovibrio sp. 28-41-41","na":4,"nb":1,"a":[["TED%3AAF-A0A258VH67-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A258VH67-F1-model_v4_TED01"],["TED%3AAF-A0A258VZ35-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A258VZ35-F1-model_v4_TED01"],["TED%3AAF-A0A258W5J6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A258W5J6-F1-model_v4_TED01"],["TED%3AAF-A0A258W0Q9-F1-model_v4_TED01","TED novel fold AF-A0A258W0Q9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970323","Bdellovibrio sp. 28-41-41"]]},{"id":"NCBITaxon:2020412","l":"Bosea sp. ANAM02","na":4,"nb":1,"a":[["TED%3AAF-A0A6F8UU50-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6F8UU50-F1-model_v4_TED01"],["TED%3AAF-A0A6F8UZT3-F1-model_v4_TED01","TED novel fold AF-A0A6F8UZT3-F1-model_v4_TED01"],["TED%3AAF-A0A6F8V204-F1-model_v4_TED02","TED novel fold AF-A0A6F8V204-F1-model_v4_TED02"],["TED%3AAF-A0A6F8V2X3-F1-model_v4_TED02","TED novel fold AF-A0A6F8V2X3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2020412","Allobosea sp. ANAM02"]]},{"id":"NCBITaxon:2020862","l":"Halobacteriovorax sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A2E6H9I1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E6H9I1-F1-model_v4_TED01"],["TED%3AAF-A0A2D5YKQ7-F1-model_v4_TED01","TED novel fold AF-A0A2D5YKQ7-F1-model_v4_TED01"],["TED%3AAF-A0A2E6H4R2-F1-model_v4_TED01","TED novel fold AF-A0A2E6H4R2-F1-model_v4_TED01"],["TED%3AAF-A0A2E6H7Z0-F1-model_v4_TED01","TED novel fold AF-A0A2E6H7Z0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2020862","Halobacteriovorax sp."]]},{"id":"NCBITaxon:2024824","l":"Balneola sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A3D4V172-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D4V172-F1-model_v4_TED01"],["TED%3AAF-A0A2E6N6U3-F1-model_v4_TED03","TED novel fold AF-A0A2E6N6U3-F1-model_v4_TED03"],["TED%3AAF-A0A3D4V1W0-F1-model_v4_TED04","TED novel fold AF-A0A3D4V1W0-F1-model_v4_TED04"],["TED%3AAF-A0A3M8G8Y9-F1-model_v4_TED02","TED novel fold AF-A0A3M8G8Y9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2024824","Balneola sp."]]},{"id":"NCBITaxon:2024843","l":"Nitrosopumilus sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A7K4F371-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K4F371-F1-model_v4_TED01"],["TED%3AAF-A0A838N9C6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A838N9C6-F1-model_v4_TED01"],["TED%3AAF-A0A836SSE3-F1-model_v4_TED01","TED novel fold AF-A0A836SSE3-F1-model_v4_TED01"],["TED%3AAF-A0A843BS33-F1-model_v4_TED01","TED novel fold AF-A0A843BS33-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024843","Candidatus Nitrosopumilus sp."]]},{"id":"NCBITaxon:2024848","l":"Parvibaculum sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A2D4VKC7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D4VKC7-F1-model_v4_TED01"],["TED%3AAF-A0A2D8XBJ5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D8XBJ5-F1-model_v4_TED02"],["TED%3AAF-A0A2D4VKJ3-F1-model_v4_TED01","TED novel fold AF-A0A2D4VKJ3-F1-model_v4_TED01"],["TED%3AAF-A0A2D8XB08-F1-model_v4_TED01","TED novel fold AF-A0A2D8XB08-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024848","Parvibaculum sp."]]},{"id":"NCBITaxon:2024849","l":"Candidatus Pelagibacter sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A2D7PDP1-F1-model_v4_TED01","TED novel fold AF-A0A2D7PDP1-F1-model_v4_TED01"],["TED%3AAF-A0A2D7PF68-F1-model_v4_TED01","TED novel fold AF-A0A2D7PF68-F1-model_v4_TED01"],["TED%3AAF-A0A2E6T7S4-F1-model_v4_TED01","TED novel fold AF-A0A2E6T7S4-F1-model_v4_TED01"],["TED%3AAF-A0A2E6TB82-F1-model_v4_TED01","TED novel fold AF-A0A2E6TB82-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024849","Candidatus Pelagibacter sp."]]},{"id":"NCBITaxon:2026740","l":"Flammeovirgaceae bacterium","na":4,"nb":1,"a":[["TED%3AAF-A0A7L9BKK8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7L9BKK8-F1-model_v4_TED02"],["TED%3AAF-A0A2D6AK53-F1-model_v4_TED03","TED novel fold AF-A0A2D6AK53-F1-model_v4_TED03"],["TED%3AAF-A0A2D6AK65-F1-model_v4_TED01","TED novel fold AF-A0A2D6AK65-F1-model_v4_TED01"],["TED%3AAF-A0A2D6B1Q0-F1-model_v4_TED03","TED novel fold AF-A0A2D6B1Q0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2026740","Flammeovirgaceae bacterium"]]},{"id":"NCBITaxon:2026764","l":"Nanoarchaeota archaeon","na":4,"nb":1,"a":[["TED%3AAF-A0A522EUE5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A522EUE5-F1-model_v4_TED02"],["TED%3AAF-A0A6B2CCZ1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6B2CCZ1-F1-model_v4_TED01"],["TED%3AAF-A0A833A267-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A833A267-F1-model_v4_TED01"],["TED%3AAF-A0A7J4KXA8-F1-model_v4_TED02","TED novel fold AF-A0A7J4KXA8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026764","Nanobdellota archaeon"]]},{"id":"NCBITaxon:2044941","l":"Flavobacteriia bacterium","na":4,"nb":1,"a":[["TED%3AAF-A0A7Y7CXE7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y7CXE7-F1-model_v4_TED01"],["TED%3AAF-A0A432IP99-F1-model_v4_TED01","TED novel fold AF-A0A432IP99-F1-model_v4_TED01"],["TED%3AAF-A0A432IYJ1-F1-model_v4_TED01","TED novel fold AF-A0A432IYJ1-F1-model_v4_TED01"],["TED%3AAF-A0A7Y6YH70-F1-model_v4_TED01","TED novel fold AF-A0A7Y6YH70-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2044941","Flavobacteriia bacterium"]]},{"id":"NCBITaxon:2045","l":"Nocardioides simplex","na":4,"nb":1,"a":[["Pfam%3APF00775","Dioxygenase"],["Pfam%3APF04444","Catechol dioxygenase N terminus"],["PROSITE%3APS00083","Intradiol ring-cleavage dioxygenases signature"],["TED%3AAF-A0A4Y3NBY1-F1-model_v4_TED01","TED novel fold AF-A0A4Y3NBY1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2045","Pimelobacter simplex"]]},{"id":"NCBITaxon:2049040","l":"Roseburia sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A351R2S0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A351R2S0-F1-model_v4_TED01"],["TED%3AAF-A0A3D2PUE7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D2PUE7-F1-model_v4_TED02"],["TED%3AAF-A0A3D5LE36-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D5LE36-F1-model_v4_TED01"],["TED%3AAF-A0A3B9D3T9-F1-model_v4_TED02","TED novel fold AF-A0A3B9D3T9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2049040","Roseburia sp."]]},{"id":"NCBITaxon:2049048","l":"Rikenellaceae bacterium","na":4,"nb":1,"a":[["TED%3AAF-A0A3D6B1M6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D6B1M6-F1-model_v4_TED02"],["TED%3AAF-A0A351AT40-F1-model_v4_TED03","TED novel fold AF-A0A351AT40-F1-model_v4_TED03"],["TED%3AAF-A0A355U3N1-F1-model_v4_TED01","TED novel fold AF-A0A355U3N1-F1-model_v4_TED01"],["TED%3AAF-A0A3D0F348-F1-model_v4_TED02","TED novel fold AF-A0A3D0F348-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2049048","Rikenellaceae bacterium"]]},{"id":"NCBITaxon:2051955","l":"Methylobacter sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A2P5LKB3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2P5LKB3-F1-model_v4_TED02"],["TED%3AAF-A0A522WVN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A522WVN3-F1-model_v4_TED01"],["TED%3AAF-A0A2P5M384-F1-model_v4_TED01","TED novel fold AF-A0A2P5M384-F1-model_v4_TED01"],["TED%3AAF-A0A2S5Q8H2-F1-model_v4_TED02","TED novel fold AF-A0A2S5Q8H2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2051955","Methylobacter sp."]]},{"id":"NCBITaxon:2051956","l":"Methylotenera sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A849UFG5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A849UFG5-F1-model_v4_TED01"],["TED%3AAF-A0A2P5LDN0-F1-model_v4_TED01","TED novel fold AF-A0A2P5LDN0-F1-model_v4_TED01"],["TED%3AAF-A0A2S5L9P9-F1-model_v4_TED02","TED novel fold AF-A0A2S5L9P9-F1-model_v4_TED02"],["TED%3AAF-A0A7Y4ZX98-F1-model_v4_TED02","TED novel fold AF-A0A7Y4ZX98-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2051956","Methylotenera sp."]]},{"id":"NCBITaxon:2052139","l":"Patescibacteria bacterium","na":4,"nb":1,"a":[["TED%3AAF-A0A522U5G3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A522U5G3-F1-model_v4_TED02"],["TED%3AAF-A0A522W7N7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A522W7N7-F1-model_v4_TED02"],["TED%3AAF-A0A521ZPU3-F1-model_v4_TED02","TED novel fold AF-A0A521ZPU3-F1-model_v4_TED02"],["TED%3AAF-A0A522E927-F1-model_v4_TED04","TED novel fold AF-A0A522E927-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2052139","Patescibacteria group bacterium"]]},{"id":"NCBITaxon:2052159","l":"Coriobacteriia bacterium","na":4,"nb":1,"a":[["TED%3AAF-A0A2V2EFX1-F1-model_v4_TED01","TED novel fold AF-A0A2V2EFX1-F1-model_v4_TED01"],["TED%3AAF-A0A316P0Z8-F1-model_v4_TED01","TED novel fold AF-A0A316P0Z8-F1-model_v4_TED01"],["TED%3AAF-A0A316RTQ8-F1-model_v4_TED02","TED novel fold AF-A0A316RTQ8-F1-model_v4_TED02"],["TED%3AAF-A0A316RU81-F1-model_v4_TED01","TED novel fold AF-A0A316RU81-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052159","Coriobacteriia bacterium"]]},{"id":"NCBITaxon:2052160","l":"Fibrobacterota bacterium","na":4,"nb":1,"a":[["TED%3AAF-A0A3C0PGL2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3C0PGL2-F1-model_v4_TED03"],["TED%3AAF-A0A7T9E906-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T9E906-F1-model_v4_TED01"],["TED%3AAF-A0A3C1WKF1-F1-model_v4_TED02","TED novel fold AF-A0A3C1WKF1-F1-model_v4_TED02"],["TED%3AAF-A0A7T9E9C4-F1-model_v4_TED01","TED novel fold AF-A0A7T9E9C4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052160","Fibrobacterota bacterium"]]},{"id":"NCBITaxon:2053493","l":"Candidatus Acetothermia bacterium","na":4,"nb":1,"a":[["TED%3AAF-A0A662EH56-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A662EH56-F1-model_v4_TED03"],["TED%3AAF-A0A662F5F1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A662F5F1-F1-model_v4_TED02"],["TED%3AAF-A0A7C5LAP1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C5LAP1-F1-model_v4_TED02"],["TED%3AAF-A0A7V5YI91-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V5YI91-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053493","Candidatus Acetothermia bacterium"]]},{"id":"NCBITaxon:2073116","l":"Holophagae bacterium","na":4,"nb":1,"a":[["TED%3AAF-A0A7Z1R0H2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Z1R0H2-F1-model_v4_TED01"],["TED%3AAF-A0A7X7YF04-F1-model_v4_TED01","TED novel fold AF-A0A7X7YF04-F1-model_v4_TED01"],["TED%3AAF-A0A7Z1R2K0-F1-model_v4_TED02","TED novel fold AF-A0A7Z1R2K0-F1-model_v4_TED02"],["TED%3AAF-A0A7Z1TS59-F1-model_v4_TED04","TED novel fold AF-A0A7Z1TS59-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2073116","Holophagae bacterium"]]},{"id":"NCBITaxon:2081706","l":"Bacteriovoracaceae bacterium","na":4,"nb":1,"a":[["TED%3AAF-A0A849T5B5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A849T5B5-F1-model_v4_TED01"],["TED%3AAF-A0A849TDV2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A849TDV2-F1-model_v4_TED01"],["TED%3AAF-A0A849SZI0-F1-model_v4_TED02","TED novel fold AF-A0A849SZI0-F1-model_v4_TED02"],["TED%3AAF-A0A849T2V8-F1-model_v4_TED01","TED novel fold AF-A0A849T2V8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2081706","Bacteriovoracaceae bacterium"]]},{"id":"NCBITaxon:2082293","l":"Hyaloscypha hepaticicola","na":4,"nb":1,"a":[["TED%3AAF-A0A2J6PIA1-F1-model_v4_TED01","TED novel fold AF-A0A2J6PIA1-F1-model_v4_TED01"],["TED%3AAF-A0A2J6PLY5-F1-model_v4_TED01","TED novel fold AF-A0A2J6PLY5-F1-model_v4_TED01"],["TED%3AAF-A0A2J6PXD2-F1-model_v4_TED02","TED novel fold AF-A0A2J6PXD2-F1-model_v4_TED02"],["TED%3AAF-A0A2J6Q0I5-F1-model_v4_TED04","TED novel fold AF-A0A2J6Q0I5-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2082293","Hyaloscypha hepaticicola"]]},{"id":"NCBITaxon:2098","l":"Metamycoplasma hominis","na":1,"nb":4,"a":[["TED%3AAF-A0A6A8Q3G2-F1-model_v4_TED02","TED novel fold AF-A0A6A8Q3G2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2098","Metamycoplasma hominis"],["NCBITaxon%3A347256","Metamycoplasma hominis ATCC 23114"],["NCBITaxon%3A1267000","Metamycoplasma hominis ATCC 27545"],["NCBITaxon%3A287","Pseudomonas aeruginosa"]]},{"id":"NCBITaxon:210454","l":"Grammatophora oceanica","na":4,"nb":1,"a":[["TED%3AAF-A0A7S1UN71-F1-model_v4_TED01","TED novel fold AF-A0A7S1UN71-F1-model_v4_TED01"],["TED%3AAF-A0A7S1UXS3-F1-model_v4_TED01","TED novel fold AF-A0A7S1UXS3-F1-model_v4_TED01"],["TED%3AAF-A0A7S1YCZ6-F1-model_v4_TED02","TED novel fold AF-A0A7S1YCZ6-F1-model_v4_TED02"],["TED%3AAF-A0A7S1YLG8-F1-model_v4_TED02","TED novel fold AF-A0A7S1YLG8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A210454","Grammatophora oceanica"]]},{"id":"NCBITaxon:2108360","l":"Microvirga tunisiensis","na":4,"nb":1,"a":[["TED%3AAF-A0A5N7MHB4-F1-model_v4_TED01","TED novel fold AF-A0A5N7MHB4-F1-model_v4_TED01"],["TED%3AAF-A0A5N7MK37-F1-model_v4_TED03","TED novel fold AF-A0A5N7MK37-F1-model_v4_TED03"],["TED%3AAF-A0A5N7MK85-F1-model_v4_TED03","TED novel fold AF-A0A5N7MK85-F1-model_v4_TED03"],["TED%3AAF-A0A5N7MTB9-F1-model_v4_TED01","TED novel fold AF-A0A5N7MTB9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2108360","Microvirga tunisiensis"]]},{"id":"NCBITaxon:2109","l":"Mycoplasmopsis synoviae","na":1,"nb":4,"a":[["TED%3AAF-A0A3B0PIE0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3B0PIE0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2109","Mycoplasmopsis synoviae"],["NCBITaxon%3A262723","Mycoplasmopsis synoviae 53"],["NCBITaxon%3A1267001","Mycoplasmopsis synoviae ATCC 25204"],["NCBITaxon%3A1148512","Mycoplasmopsis synoviae GX11-T"]]},{"id":"NCBITaxon:211110","l":"Streptococcus agalactiae serotype III (strain NEM316)","na":4,"nb":1,"a":[["Pfam%3APF22637","BppA domain 1"],["Pfam%3APF21461","Hyaluronate lyase, N-terminal beta-sheet domain"],["Pfam%3APF12558","ATP-binding cassette cobalt transporter"],["Pfam%3APF07470","Glycosyl Hydrolase Family 88"]],"b":[["NCBITaxon%3A211110","Streptococcus agalactiae NEM316"]]},{"id":"NCBITaxon:215","l":"Helicobacter fennelliae","na":1,"nb":4,"a":[["TED%3AAF-A0A2X3EJ56-F1-model_v4_TED01","TED novel fold AF-A0A2X3EJ56-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A213","Helicobacter cinaedi"],["NCBITaxon%3A537971","Helicobacter cinaedi CCUG 18818 = ATCC BAA-847"],["NCBITaxon%3A215","Helicobacter fennelliae"],["NCBITaxon%3A1325130","Helicobacter fennelliae MRY12-0050"]]},{"id":"NCBITaxon:216820","l":"Cyclophora tenuis","na":4,"nb":1,"a":[["TED%3AAF-A0A7S1GP11-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1GP11-F1-model_v4_TED01"],["TED%3AAF-A0A6U1R8I6-F1-model_v4_TED01","TED novel fold AF-A0A6U1R8I6-F1-model_v4_TED01"],["TED%3AAF-A0A7S1GLN4-F1-model_v4_TED01","TED novel fold AF-A0A7S1GLN4-F1-model_v4_TED01"],["TED%3AAF-A0A7S1GMK2-F1-model_v4_TED01","TED novel fold AF-A0A7S1GMK2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A216820","Cyclophora tenuis"]]},{"id":"NCBITaxon:218490","l":"Polaribacter butkevichii","na":4,"nb":1,"a":[["TED%3AAF-A0A2P6C707-F1-model_v4_TED02","TED novel fold AF-A0A2P6C707-F1-model_v4_TED02"],["TED%3AAF-A0A2P6CAG7-F1-model_v4_TED01","TED novel fold AF-A0A2P6CAG7-F1-model_v4_TED01"],["TED%3AAF-A0A2P6CCV8-F1-model_v4_TED01","TED novel fold AF-A0A2P6CCV8-F1-model_v4_TED01"],["TED%3AAF-A0A2P6CFF0-F1-model_v4_TED01","TED novel fold AF-A0A2P6CFF0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A218490","Polaribacter butkevichii"]]},{"id":"NCBITaxon:221103","l":"Moniliophthora roreri","na":4,"nb":1,"a":[["TED%3AAF-A0A0W0EY20-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0W0EY20-F1-model_v4_TED01"],["TED%3AAF-A0A0W0GBN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0W0GBN7-F1-model_v4_TED01"],["TED%3AAF-A0A0W0FN93-F1-model_v4_TED01","TED novel fold AF-A0A0W0FN93-F1-model_v4_TED01"],["TED%3AAF-A0A0W0G2E5-F1-model_v4_TED02","TED novel fold AF-A0A0W0G2E5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A221103","Moniliophthora roreri"]]},{"id":"NCBITaxon:224915","l":"Buchnera aphidicola subsp. Baizongia pistaciae (strain Bp)","na":4,"nb":1,"a":[["Pfam%3APF26016","Exonuclease I C-terminal domain"],["Pfam%3APF08411","Exonuclease I SH3-like domain"],["Pfam%3APF09849","Uncharacterized protein conserved in bacteria (DUF2076)"],["Pfam%3APF06481","COX Aromatic Rich Motif"]],"b":[["NCBITaxon%3A224915","Buchnera aphidicola str. Bp (Baizongia pistaciae)"]]},{"id":"NCBITaxon:2250254","l":"Thermococci archaeon","na":4,"nb":1,"a":[["TED%3AAF-A0A497HYZ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A497HYZ8-F1-model_v4_TED01"],["TED%3AAF-A0A662PGI5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A662PGI5-F1-model_v4_TED03"],["TED%3AAF-A0A662PJ18-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A662PJ18-F1-model_v4_TED01"],["TED%3AAF-A0A662P955-F1-model_v4_TED01","TED novel fold AF-A0A662P955-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2250254","Thermococci archaeon"]]},{"id":"NCBITaxon:2250256","l":"Altiarchaeales archaeon","na":4,"nb":1,"a":[["TED%3AAF-A0A497RVP9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A497RVP9-F1-model_v4_TED01"],["TED%3AAF-A0A497S7B6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A497S7B6-F1-model_v4_TED02"],["TED%3AAF-A0A7C0XRN1-F1-model_v4_TED02","TED novel fold AF-A0A7C0XRN1-F1-model_v4_TED02"],["TED%3AAF-A0A842UHS2-F1-model_v4_TED05","TED novel fold AF-A0A842UHS2-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2250256","Candidatus Altarchaeales archaeon"]]},{"id":"NCBITaxon:2250258","l":"Archaeoglobales archaeon","na":4,"nb":1,"a":[["TED%3AAF-A0A662W9Y5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A662W9Y5-F1-model_v4_TED01"],["TED%3AAF-A0A662VTF3-F1-model_v4_TED01","TED novel fold AF-A0A662VTF3-F1-model_v4_TED01"],["TED%3AAF-A0A662VW03-F1-model_v4_TED01","TED novel fold AF-A0A662VW03-F1-model_v4_TED01"],["TED%3AAF-A0A662W350-F1-model_v4_TED01","TED novel fold AF-A0A662W350-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2250258","Archaeoglobales archaeon"]]},{"id":"NCBITaxon:2250276","l":"Hadesarchaea archaeon","na":4,"nb":1,"a":[["TED%3AAF-A0A523AS63-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A523AS63-F1-model_v4_TED01"],["TED%3AAF-A0A523AZE0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A523AZE0-F1-model_v4_TED02"],["TED%3AAF-A0A7C3Y088-F1-model_v4_TED04","TED novel fold AF-A0A7C3Y088-F1-model_v4_TED04"],["TED%3AAF-A0A7J2J8X3-F1-model_v4_TED01","TED novel fold AF-A0A7J2J8X3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2250276","Hadesarchaea archaeon"]]},{"id":"NCBITaxon:2262","l":"Pyrococcus woesei","na":4,"nb":1,"a":[["Pfam%3APF01113","Dihydrodipicolinate reductase, N-terminus"],["Pfam%3APF08967","Putative type 4B encapsulin shell protein"],["Pfam%3APF01889","Archaeal lipoprotein biogenesis component AliA/AliB-like"],["Pfam%3APF11667","Putative zincin peptidase"]],"b":[["NCBITaxon%3A2262","Pyrococcus woesei"]]},{"id":"NCBITaxon:2283092","l":"Pyrinomonadaceae bacterium","na":4,"nb":1,"a":[["TED%3AAF-A0A7W0ZNM8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W0ZNM8-F1-model_v4_TED01"],["TED%3AAF-A0A838MX18-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A838MX18-F1-model_v4_TED01"],["TED%3AAF-A0A7W1JDR7-F1-model_v4_TED02","TED novel fold AF-A0A7W1JDR7-F1-model_v4_TED02"],["TED%3AAF-A0A838GSN0-F1-model_v4_TED01","TED novel fold AF-A0A838GSN0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2283092","Pyrinomonadaceae bacterium"]]},{"id":"NCBITaxon:230819","l":"Coprinopsis marcescibilis","na":4,"nb":1,"a":[["TED%3AAF-A0A5C3KJQ3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5C3KJQ3-F1-model_v4_TED02"],["TED%3AAF-A0A5C3KKH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C3KKH3-F1-model_v4_TED01"],["TED%3AAF-A0A5C3K9L8-F1-model_v4_TED01","TED novel fold AF-A0A5C3K9L8-F1-model_v4_TED01"],["TED%3AAF-A0A5C3KRI0-F1-model_v4_TED01","TED novel fold AF-A0A5C3KRI0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A230819","Coprinopsis marcescibilis"]]},{"id":"NCBITaxon:242231","l":"Neisseria gonorrhoeae (strain ATCC 700825 / FA 1090)","na":4,"nb":1,"a":[["Pfam%3APF17845","FbpC C-terminal regulatory nucleotide binding domain"],["Pfam%3APF22443","FbpC-like, regulatory domain"],["Pfam%3APF22513","Antitoxin FitA-like, ribbon-helix-helix"],["Pfam%3APF08750","CNP1-like family"]],"b":[["NCBITaxon%3A242231","Neisseria gonorrhoeae FA 1090"]]},{"id":"NCBITaxon:244","l":"Planomicrobium okeanokoites","na":4,"nb":1,"a":[["Pfam%3APF09254","FokI, cleavage domain"],["Pfam%3APF02981","FokI, recognition domain, subdomain 1"],["Pfam%3APF16902","FokI, D3 domain"],["Pfam%3APF02980","FokI, recognition domain, subdomain 2"]],"b":[["NCBITaxon%3A244","Planomicrobium okeanokoites"]]},{"id":"NCBITaxon:2510337","l":"Sandaracinaceae bacterium","na":4,"nb":1,"a":[["TED%3AAF-A0A520PSZ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A520PSZ8-F1-model_v4_TED01"],["TED%3AAF-A0A520QL44-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A520QL44-F1-model_v4_TED03"],["TED%3AAF-A0A520QBZ2-F1-model_v4_TED03","TED novel fold AF-A0A520QBZ2-F1-model_v4_TED03"],["TED%3AAF-A0A847F4I9-F1-model_v4_TED01","TED novel fold AF-A0A847F4I9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2510337","Sandaracinaceae bacterium"]]},{"id":"NCBITaxon:2527983","l":"Caulifigura coniformis","na":4,"nb":1,"a":[["TED%3AAF-A0A517S890-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A517S890-F1-model_v4_TED01"],["TED%3AAF-A0A517SC12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A517SC12-F1-model_v4_TED01"],["TED%3AAF-A0A517SC47-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A517SC47-F1-model_v4_TED02"],["TED%3AAF-A0A517SDF0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A517SDF0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2527983","Caulifigura coniformis"]]},{"id":"NCBITaxon:2529384","l":"Roseibium sp. RKSG952","na":4,"nb":1,"a":[["TED%3AAF-A0A6N7ZP27-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N7ZP27-F1-model_v4_TED01"],["TED%3AAF-A0A6N7ZQ59-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N7ZQ59-F1-model_v4_TED01"],["TED%3AAF-A0A6N7ZR90-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N7ZR90-F1-model_v4_TED01"],["TED%3AAF-A0A6N7ZZ23-F1-model_v4_TED01","TED novel fold AF-A0A6N7ZZ23-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2529384","Roseibium sp. RKSG952"]]},{"id":"NCBITaxon:258","l":"Sphingobacterium spiritivorum","na":1,"nb":4,"a":[["TED%3AAF-A0A380CHI8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A380CHI8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A649196","Sphingobacterium hotanense"],["NCBITaxon%3A258","Sphingobacterium spiritivorum"],["NCBITaxon%3A525372","Sphingobacterium spiritivorum ATCC 33300"],["NCBITaxon%3A525373","Sphingobacterium spiritivorum ATCC 33861"]]},{"id":"NCBITaxon:258594","l":"Rhodopseudomonas palustris CGA009","na":4,"nb":1,"a":[["Pfam%3APF01322","Cytochrome C'"],["PROSITE%3APS00969","Antenna complexes beta subunits signature"],["PROSITE%3APS00936","Ribosomal protein L35 signature"],["PROSITE%3APS01181","Ribosomal protein S21 signature"]],"b":[["NCBITaxon%3A258594","Rhodopseudomonas palustris CGA009"]]},{"id":"NCBITaxon:2587412","l":"Podospora anserina","na":4,"nb":1,"a":[["Pfam%3APF08509","Adenylate cyclase G-alpha binding domain"],["Pfam%3APF14479","Prion-inhibition and propagation"],["Pfam%3APF06985","Heterokaryon incompatibility protein (HET)"],["Pfam%3APF11558","Het-s 218-289"]],"b":[["NCBITaxon%3A2587412","Podospora anserina"]]},{"id":"NCBITaxon:2594798","l":"Nanohaloarchaea archaeon","na":4,"nb":1,"a":[["TED%3AAF-A0A848EKT4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A848EKT4-F1-model_v4_TED01"],["TED%3AAF-A0A849QF42-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A849QF42-F1-model_v4_TED01"],["TED%3AAF-A0A842K9G1-F1-model_v4_TED04","TED novel fold AF-A0A842K9G1-F1-model_v4_TED04"],["TED%3AAF-A0A849QBL9-F1-model_v4_TED02","TED novel fold AF-A0A849QBL9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2594798","Candidatus Nanohaloarchaea archaeon"]]},{"id":"NCBITaxon:2607767","l":"Oscillatoria sp. SIO1A7","na":4,"nb":1,"a":[["TED%3AAF-A0A7C9PR93-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C9PR93-F1-model_v4_TED01"],["TED%3AAF-A0A7C9PUP6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C9PUP6-F1-model_v4_TED02"],["TED%3AAF-A0A7C9TUK3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C9TUK3-F1-model_v4_TED01"],["TED%3AAF-A0A7C9PXN7-F1-model_v4_TED01","TED novel fold AF-A0A7C9PXN7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607767","Oscillatoria sp. SIO1A7"]]},{"id":"NCBITaxon:262316","l":"","na":4,"nb":1,"a":[["Pfam%3APF19288","CofH/MqnC C-terminal region"],["Pfam%3APF03601","Conserved hypothetical protein 698"],["PROSITE%3APS60002","Phosphoketolase signature 1"],["PROSITE%3APS60003","Phosphoketolase signature 2"]],"b":[["NCBITaxon%3A262316","Mycobacterium avium subsp. paratuberculosis K-10"]]},{"id":"NCBITaxon:265554","l":"Amphora coffeiformis","na":4,"nb":1,"a":[["TED%3AAF-A0A7S3L6U4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3L6U4-F1-model_v4_TED01"],["TED%3AAF-A0A7S3L8J1-F1-model_v4_TED01","TED novel fold AF-A0A7S3L8J1-F1-model_v4_TED01"],["TED%3AAF-A0A7S3LC07-F1-model_v4_TED02","TED novel fold AF-A0A7S3LC07-F1-model_v4_TED02"],["TED%3AAF-A0A7S3P7C7-F1-model_v4_TED01","TED novel fold AF-A0A7S3P7C7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A265554","Amphora coffeiformis"]]},{"id":"NCBITaxon:266149","l":"Pseudocohnilembus persalinus","na":4,"nb":1,"a":[["TED%3AAF-A0A0V0Q971-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0V0Q971-F1-model_v4_TED01"],["TED%3AAF-A0A0V0QFC0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0V0QFC0-F1-model_v4_TED02"],["TED%3AAF-A0A0V0QUL9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0V0QUL9-F1-model_v4_TED02"],["TED%3AAF-A0A0V0QLH5-F1-model_v4_TED02","TED novel fold AF-A0A0V0QLH5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A266149","Pseudocohnilembus persalinus"]]},{"id":"NCBITaxon:2666346","l":"Candidatus Poseidoniaceae archaeon","na":4,"nb":1,"a":[["TED%3AAF-A0A7J4QR94-F1-model_v4_TED01","TED novel fold AF-A0A7J4QR94-F1-model_v4_TED01"],["TED%3AAF-A0A7J4SJK8-F1-model_v4_TED06","TED novel fold AF-A0A7J4SJK8-F1-model_v4_TED06"],["TED%3AAF-A0A7J4T2G3-F1-model_v4_TED01","TED novel fold AF-A0A7J4T2G3-F1-model_v4_TED01"],["TED%3AAF-A0A7J4T4C8-F1-model_v4_TED01","TED novel fold AF-A0A7J4T4C8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2666346","Candidatus Poseidoniaceae archaeon"]]},{"id":"NCBITaxon:267608","l":"Ralstonia nicotianae (strain ATCC BAA-1114 / GMI1000)","na":4,"nb":1,"a":[["Pfam%3APF13473","Cupredoxin-like domain"],["Pfam%3APF09483","Type III secretion protein (HpaP)"],["Pfam%3APF14897","EpsG family"],["Pfam%3APF03377","TAL effector repeat"]],"b":[["NCBITaxon%3A267608","Ralstonia pseudosolanacearum GMI1000"]]},{"id":"NCBITaxon:2691037","l":"Candidatus Methanoperedenaceae archaeon GB37","na":4,"nb":1,"a":[["TED%3AAF-A0A812A6G3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812A6G3-F1-model_v4_TED01"],["TED%3AAF-A0A7R9N5L5-F1-model_v4_TED02","TED novel fold AF-A0A7R9N5L5-F1-model_v4_TED02"],["TED%3AAF-A0A7R9N8X7-F1-model_v4_TED02","TED novel fold AF-A0A7R9N8X7-F1-model_v4_TED02"],["TED%3AAF-A0A7R9NFN0-F1-model_v4_TED03","TED novel fold AF-A0A7R9NFN0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2691037","Candidatus Methanoperedentaceae archaeon GB37"]]},{"id":"NCBITaxon:269237","l":"uncultured Sulfurovum sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A6S6S605-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6S6S605-F1-model_v4_TED02"],["TED%3AAF-A0A6S6SGE5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6S6SGE5-F1-model_v4_TED01"],["TED%3AAF-A0A6S6TSW6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6S6TSW6-F1-model_v4_TED02"],["TED%3AAF-A0A6S6RYD3-F1-model_v4_TED01","TED novel fold AF-A0A6S6RYD3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A269237","uncultured Sulfurovum sp."]]},{"id":"NCBITaxon:269797","l":"Methanosarcina barkeri str. Fusaro","na":4,"nb":1,"a":[["Pfam%3APF27274","Coenzyme F430 synthetase CfbE, C-terminal domain"],["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"],["Pfam%3APF09505","Dimethylamine methyltransferase (Dimeth_PyL)"],["PROSITE%3APS00507","Nickel-dependent hydrogenases large subunit signature 1"]],"b":[["NCBITaxon%3A269797","Methanosarcina barkeri str. Fusaro"]]},{"id":"NCBITaxon:269800","l":"Thermobifida fusca YX","na":4,"nb":1,"a":[["Pfam%3APF20628","Dyp-type peroxidase, C-terminal"],["Pfam%3APF04261","Dyp-type peroxidase, N-terminal"],["Pfam%3APF18374","Enolase N-terminal domain-like"],["PROSITE%3APS00909","Mandelate racemase / muconate lactonizing enzyme family signature 2"]],"b":[["NCBITaxon%3A269800","Thermobifida fusca YX"]]},{"id":"NCBITaxon:2711231","l":"Roseimicrobium sp. ORNL1","na":4,"nb":1,"a":[["TED%3AAF-A0A6G6K4X0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A6G6K4X0-F1-model_v4_TED03"],["TED%3AAF-A0A6G6KCX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6G6KCX2-F1-model_v4_TED01"],["TED%3AAF-A0A6G6KEM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6G6KEM3-F1-model_v4_TED01"],["TED%3AAF-A0A6G6K9L4-F1-model_v4_TED01","TED novel fold AF-A0A6G6K9L4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2711231","Roseimicrobium sp. ORNL1"]]},{"id":"NCBITaxon:2725","l":"Unknown prokaryotic organism","na":4,"nb":1,"a":[["Pfam%3APF01036","Bacteriorhodopsin-like protein"],["Pfam%3APF19328","2,4-diaminopentanoate dehydrogenase C-terminal domain"],["PROSITE%3APS00950","Bacterial rhodopsins signature 1"],["Pfam%3APF19964","Effector-associated domain 11"]],"b":[["NCBITaxon%3A2725","unidentified prokaryotic organism"]]},{"id":"NCBITaxon:272620","l":"Klebsiella pneumoniae subsp. pneumoniae (strain ATCC 700721 / MGH 78578)","na":4,"nb":1,"a":[["Pfam%3APF04336","Acyl carrier protein phosphodiesterase"],["Pfam%3APF17948","DnaT DNA-binding domain"],["PROSITE%3APS00839","Uroporphyrin-III C-methyltransferase signature 1"],["PROSITE%3APS00840","Uroporphyrin-III C-methyltransferase signature 2"]],"b":[["NCBITaxon%3A272620","Klebsiella pneumoniae subsp. pneumoniae MGH 78578"]]},{"id":"NCBITaxon:27292","l":"Saccharomyces pastorianus","na":1,"nb":4,"a":[["TED%3AAF-A0A6C1DP73-F1-model_v4_TED02","TED novel fold AF-A0A6C1DP73-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A27292","Saccharomyces pastorianus"],["NCBITaxon%3A1429090","Saccharomyces pastorianus CBS 1503"],["NCBITaxon%3A1073566","Saccharomyces pastorianus CBS 1513"],["NCBITaxon%3A1337639","Saccharomyces pastorianus CBS 6283"]]},{"id":"NCBITaxon:27322","l":"Metschnikowia bicuspidata","na":1,"nb":4,"a":[["TED%3AAF-A0A4P9Z9E9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4P9Z9E9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A27322","Metschnikowia bicuspidata"],["NCBITaxon%3A869754","Metschnikowia bicuspidata var. bicuspidata NRRL YB-4993"],["NCBITaxon%3A278769","Metschnikowia bicuspidata var. californica"],["NCBITaxon%3A278771","Metschnikowia bicuspidata var. chathamia"]]},{"id":"NCBITaxon:27342","l":"Schizopora paradoxa","na":4,"nb":1,"a":[["TED%3AAF-A0A0H2R7N1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0H2R7N1-F1-model_v4_TED01"],["TED%3AAF-A0A0H2S876-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0H2S876-F1-model_v4_TED02"],["TED%3AAF-A0A0H2RAH4-F1-model_v4_TED03","TED novel fold AF-A0A0H2RAH4-F1-model_v4_TED03"],["TED%3AAF-A0A0H2S445-F1-model_v4_TED01","TED novel fold AF-A0A0H2S445-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A27342","Schizopora paradoxa"]]},{"id":"NCBITaxon:2743","l":"Marinobacter nauticus","na":1,"nb":4,"a":[["TED%3AAF-A0A368Y858-F1-model_v4_TED02","TED novel fold AF-A0A368Y858-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2743","Marinobacter nauticus"],["NCBITaxon%3A1163748","Marinobacter nauticus ATCC 49840"],["NCBITaxon%3A1238884","Marinobacter nauticus ES-69"],["NCBITaxon%3A351348","Marinobacter nauticus VT8"]]},{"id":"NCBITaxon:276","l":"Thermus filiformis","na":4,"nb":1,"a":[["Pfam%3APF03119","NAD-dependent DNA ligase C4 zinc finger domain"],["PROSITE%3APS01055","NAD-dependent DNA ligase signature 1"],["PROSITE%3APS01056","NAD-dependent DNA ligase signature 2"],["TED%3AAF-A0A0A2WQ65-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0A2WQ65-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A276","Thermus filiformis"]]},{"id":"NCBITaxon:28031","l":"Lysinibacillus fusiformis","na":1,"nb":4,"a":[["TED%3AAF-A0A1E4QZZ2-F1-model_v4_TED04","TED novel fold AF-A0A1E4QZZ2-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A28031","Lysinibacillus fusiformis"],["NCBITaxon%3A1416755","Lysinibacillus fusiformis H1k"],["NCBITaxon%3A1231627","Lysinibacillus fusiformis ZB2"],["NCBITaxon%3A714961","Lysinibacillus fusiformis ZC1"]]},{"id":"NCBITaxon:28201","l":"Bdellovibrio sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A3M1C7V0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3M1C7V0-F1-model_v4_TED02"],["TED%3AAF-A0A3M1CAH8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M1CAH8-F1-model_v4_TED01"],["TED%3AAF-A0A317JLD2-F1-model_v4_TED01","TED novel fold AF-A0A317JLD2-F1-model_v4_TED01"],["TED%3AAF-A0A3M1C1J4-F1-model_v4_TED01","TED novel fold AF-A0A3M1C1J4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28201","Bdellovibrio sp."]]},{"id":"NCBITaxon:2822231","l":"Phanerodontia chrysosporium","na":4,"nb":1,"a":[["Pfam%3APF18637","Aldos-2-ulose dehydratase/isomerase (AUDH) Cupin domain"],["Pfam%3APF16010","Cytochrome domain of cellobiose dehydrogenase"],["PROSITE%3APS00623","GMC oxidoreductases signature 1"],["Pfam%3APF22301","Aldos-2-ulose dehydratase, beta-propeller domain"]],"b":[["NCBITaxon%3A2822231","Phanerodontia chrysosporium"]]},{"id":"NCBITaxon:29391","l":"Gemella morbillorum","na":1,"nb":4,"a":[["TED%3AAF-A0A2X4RFS7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2X4RFS7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A59505","Actinotignum schaalii"],["NCBITaxon%3A29391","Gemella morbillorum"],["NCBITaxon%3A1073360","Gemella morbillorum CC57F"],["NCBITaxon%3A562982","Gemella morbillorum M424"]]},{"id":"NCBITaxon:293958","l":"Rhizobium lusitanum","na":4,"nb":1,"a":[["TED%3AAF-A0A1C3VR22-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C3VR22-F1-model_v4_TED01"],["TED%3AAF-A0A7G6RR69-F1-model_v4_TED01","TED novel fold AF-A0A7G6RR69-F1-model_v4_TED01"],["TED%3AAF-A0A7X0IU19-F1-model_v4_TED02","TED novel fold AF-A0A7X0IU19-F1-model_v4_TED02"],["TED%3AAF-A0A7X0MEH1-F1-model_v4_TED01","TED novel fold AF-A0A7X0MEH1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A293958","Martinezella lusitana"]]},{"id":"NCBITaxon:29581","l":"Janthinobacterium lividum","na":1,"nb":4,"a":[["TED%3AAF-A0A853SDQ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A853SDQ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29581","Janthinobacterium lividum"],["NCBITaxon%3A1112211","Janthinobacterium lividum PAMC 25724"],["NCBITaxon%3A303","Pseudomonas putida"],["NCBITaxon%3A13690","Sphingobium yanoikuyae"]]},{"id":"NCBITaxon:312471","l":"Neobodo designis","na":4,"nb":1,"a":[["TED%3AAF-A0A7S1PR96-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1PR96-F1-model_v4_TED01"],["TED%3AAF-A0A7S1QZ59-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1QZ59-F1-model_v4_TED01"],["TED%3AAF-A0A7S1MNS8-F1-model_v4_TED02","TED novel fold AF-A0A7S1MNS8-F1-model_v4_TED02"],["TED%3AAF-A0A7S1QYM9-F1-model_v4_TED02","TED novel fold AF-A0A7S1QYM9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A312471","Neobodo designis"]]},{"id":"NCBITaxon:317577","l":"Deinococcus ficus","na":1,"nb":4,"a":[["TED%3AAF-A0A221T2Q9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A221T2Q9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A317577","Deinococcus ficus"],["NCBITaxon%3A1054569","Deinococcus ficus cp02"],["NCBITaxon%3A1054570","Deinococcus ficus cp4502"],["NCBITaxon%3A1121379","Deinococcus ficus DSM 19119"]]},{"id":"NCBITaxon:322","l":"Pseudomonas amygdali pv. tabaci","na":1,"nb":4,"a":[["TED%3AAF-A0A3M6HY89-F1-model_v4_TED01","TED novel fold AF-A0A3M6HY89-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A322","Pseudomonas amygdali pv. tabaci"],["NCBITaxon%3A1189622","Pseudomonas amygdali pv. tabaci str. 6605"],["NCBITaxon%3A573066","Pseudomonas amygdali pv. tabaci str. ATCC 11528"],["NCBITaxon%3A317","Pseudomonas syringae"]]},{"id":"NCBITaxon:328517","l":"Dokdonella fugitiva","na":4,"nb":1,"a":[["TED%3AAF-A0A4R2IAV8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4R2IAV8-F1-model_v4_TED02"],["TED%3AAF-A0A839F433-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A839F433-F1-model_v4_TED01"],["TED%3AAF-A0A839FCZ1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A839FCZ1-F1-model_v4_TED01"],["TED%3AAF-A0A839F660-F1-model_v4_TED03","TED novel fold AF-A0A839F660-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A328517","Dokdonella fugitiva"]]},{"id":"NCBITaxon:329046","l":"Rhizoclosmatium globosum","na":4,"nb":1,"a":[["TED%3AAF-A0A1Y2B3S8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y2B3S8-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2BAH9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y2BAH9-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2C6M9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1Y2C6M9-F1-model_v4_TED03"],["TED%3AAF-A0A1Y2C669-F1-model_v4_TED02","TED novel fold AF-A0A1Y2C669-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A329046","Rhizoclosmatium globosum"]]},{"id":"NCBITaxon:33008","l":"Rhodococcus globerulus","na":1,"nb":4,"a":[["Pfam%3APF13816","Haem-containing dehydratase"]],"b":[["NCBITaxon%3A84096","Gordonia alkanivorans"],["NCBITaxon%3A1818","Nocardia globerula"],["NCBITaxon%3A33008","Rhodococcus globerulus"],["NCBITaxon%3A1219016","Rhodococcus globerulus NBRC 14531"]]},{"id":"NCBITaxon:33043","l":"Coprococcus eutactus","na":1,"nb":4,"a":[["TED%3AAF-A0A3R5WIV7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3R5WIV7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2981786","Coprococcus aceti"],["NCBITaxon%3A33043","Coprococcus eutactus"],["NCBITaxon%3A411474","Coprococcus eutactus ATCC 27759"],["NCBITaxon%3A1263071","Coprococcus eutactus CAG:665"]]},{"id":"NCBITaxon:33657","l":"Phaeocystis antarctica","na":4,"nb":1,"a":[["TED%3AAF-A0A7S0ERP1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0ERP1-F1-model_v4_TED01"],["TED%3AAF-A0A7S0HHT1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0HHT1-F1-model_v4_TED01"],["TED%3AAF-A0A7S0E8J9-F1-model_v4_TED01","TED novel fold AF-A0A7S0E8J9-F1-model_v4_TED01"],["TED%3AAF-A0A7S0EGP5-F1-model_v4_TED01","TED novel fold AF-A0A7S0EGP5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A33657","Phaeocystis antarctica"]]},{"id":"NCBITaxon:337243","l":"Halorubrum ezzemoulense","na":1,"nb":4,"a":[["TED%3AAF-A0A256K5A6-F1-model_v4_TED01","TED novel fold AF-A0A256K5A6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A337243","Halorubrum ezzemoulense"],["NCBITaxon%3A1121945","Halorubrum ezzemoulense DSM 17463"],["NCBITaxon%3A44930","Natronobacterium gregoryi"],["NCBITaxon%3A797304","Natronobacterium gregoryi SP2"]]},{"id":"NCBITaxon:33938","l":"Geobacillus thermocatenulatus","na":1,"nb":4,"a":[["TED%3AAF-A0A226Q9L4-F1-model_v4_TED01","TED novel fold AF-A0A226Q9L4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A33938","Geobacillus thermocatenulatus"],["NCBITaxon%3A1366049","Geobacillus thermocatenulatus BGSC 93A1"],["NCBITaxon%3A626521","Geobacillus thermocatenulatus C56 T9"],["NCBITaxon%3A1444308","Geobacillus thermocatenulatus GS-1"]]},{"id":"NCBITaxon:34059","l":"Faucicola atlantae","na":1,"nb":4,"a":[["TED%3AAF-A0A1B8QAE0-F1-model_v4_TED02","TED novel fold AF-A0A1B8QAE0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A34059","Faucicola atlantae"],["NCBITaxon%3A1223508","Moraxella atlantae NBRC 14588"],["NCBITaxon%3A495","Neisseria elongata"],["NCBITaxon%3A294","Pseudomonas fluorescens"]]},{"id":"NCBITaxon:348802","l":"Exophiala xenobiotica","na":4,"nb":1,"a":[["TED%3AAF-A0A0D2F362-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D2F362-F1-model_v4_TED01"],["TED%3AAF-A0A0D2C843-F1-model_v4_TED02","TED novel fold AF-A0A0D2C843-F1-model_v4_TED02"],["TED%3AAF-A0A0D2ESI4-F1-model_v4_TED01","TED novel fold AF-A0A0D2ESI4-F1-model_v4_TED01"],["TED%3AAF-A0A0D2EUF9-F1-model_v4_TED01","TED novel fold AF-A0A0D2EUF9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A348802","Exophiala xenobiotica"]]},{"id":"NCBITaxon:355","l":"Azotobacter chroococcum mcd 1","na":4,"nb":1,"a":[["Pfam%3APF22521","Carbamoyltransferase, Kae1-like Domain, second subdomain"],["Pfam%3APF17788","HypF Kae1-like domain"],["Pfam%3APF09820","Predicted AAA-ATPase"],["PROSITE%3APS00692","NifH/frxC family signature 2"]],"b":[["NCBITaxon%3A355","Azotobacter chroococcum (strain mcd 1)"]]},{"id":"NCBITaxon:35677","l":"Pelagomonas calceolata","na":4,"nb":1,"a":[["TED%3AAF-A0A7S4EBC1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4EBC1-F1-model_v4_TED01"],["TED%3AAF-A0A7S4E2J9-F1-model_v4_TED01","TED novel fold AF-A0A7S4E2J9-F1-model_v4_TED01"],["TED%3AAF-A0A7S4E700-F1-model_v4_TED01","TED novel fold AF-A0A7S4E700-F1-model_v4_TED01"],["TED%3AAF-A0A7S4ECA1-F1-model_v4_TED01","TED novel fold AF-A0A7S4ECA1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A35677","Pelagomonas calceolata"]]},{"id":"NCBITaxon:35703","l":"Citrobacter amalonaticus","na":1,"nb":4,"a":[["TED%3AAF-A0A376C300-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A376C300-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A35703","Citrobacter amalonaticus"],["NCBITaxon%3A1261127","Citrobacter amalonaticus Y19"],["NCBITaxon%3A67824","Citrobacter farmeri"],["NCBITaxon%3A546","Citrobacter freundii"]]},{"id":"NCBITaxon:360316","l":"Crenothrix polyspora","na":4,"nb":1,"a":[["TED%3AAF-A0A1R4HFB5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1R4HFB5-F1-model_v4_TED02"],["TED%3AAF-A0A1R4GYY9-F1-model_v4_TED02","TED novel fold AF-A0A1R4GYY9-F1-model_v4_TED02"],["TED%3AAF-A0A1R4H4I0-F1-model_v4_TED01","TED novel fold AF-A0A1R4H4I0-F1-model_v4_TED01"],["TED%3AAF-A0A1R4HE31-F1-model_v4_TED02","TED novel fold AF-A0A1R4HE31-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A360316","Crenothrix polyspora"]]},{"id":"NCBITaxon:370355","l":"Entamoeba invadens IP1","na":4,"nb":1,"a":[["TED%3AAF-A0A0A1TVI8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A1TVI8-F1-model_v4_TED01"],["TED%3AAF-A0A0A1TVN8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A1TVN8-F1-model_v4_TED01"],["TED%3AAF-A0A0A1UGU1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A1UGU1-F1-model_v4_TED01"],["TED%3AAF-L7FNI6-F1-model_v4_TED01","TED highly-symmetric fold AF-L7FNI6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A370355","Entamoeba invadens IP1"]]},{"id":"NCBITaxon:378806","l":"Stigmatella aurantiaca DW4/3-1","na":4,"nb":1,"a":[["TED%3AAF-Q098I8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q098I8-F1-model_v4_TED01"],["TED%3AAF-E3FRW3-F1-model_v4_TED01","TED novel fold AF-E3FRW3-F1-model_v4_TED01"],["TED%3AAF-E3G0M4-F1-model_v4_TED01","TED novel fold AF-E3G0M4-F1-model_v4_TED01"],["TED%3AAF-Q08VS7-F1-model_v4_TED01","TED novel fold AF-Q08VS7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A378806","Allostigmatella aurantiaca DW4/3-1"]]},{"id":"NCBITaxon:390894","l":"Lophium mytilinum","na":4,"nb":1,"a":[["TED%3AAF-A0A6A6QJJ8-F1-model_v4_TED01","TED novel fold AF-A0A6A6QJJ8-F1-model_v4_TED01"],["TED%3AAF-A0A6A6QKI0-F1-model_v4_TED02","TED novel fold AF-A0A6A6QKI0-F1-model_v4_TED02"],["TED%3AAF-A0A6A6QNR0-F1-model_v4_TED02","TED novel fold AF-A0A6A6QNR0-F1-model_v4_TED02"],["TED%3AAF-A0A6A6QWC0-F1-model_v4_TED01","TED novel fold AF-A0A6A6QWC0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A390894","Lophium mytilinum"]]},{"id":"NCBITaxon:394095","l":"Pyxidicoccus fallax","na":4,"nb":1,"a":[["TED%3AAF-A0A848LUK3-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A848LUK3-F1-model_v4_TED04"],["TED%3AAF-A0A848LF16-F1-model_v4_TED01","TED novel fold AF-A0A848LF16-F1-model_v4_TED01"],["TED%3AAF-A0A848LFV1-F1-model_v4_TED03","TED novel fold AF-A0A848LFV1-F1-model_v4_TED03"],["TED%3AAF-A0A848LG55-F1-model_v4_TED01","TED novel fold AF-A0A848LG55-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A394095","Pyxidicoccus fallax"]]},{"id":"NCBITaxon:39441","l":"Methanobrevibacter arboriphilus","na":1,"nb":4,"a":[["TED%3AAF-A0A843AID3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843AID3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39441","Methanobrevibacter arboriphilus"],["NCBITaxon%3A1401244","Methanobrevibacter arboriphilus ANOR1"],["NCBITaxon%3A1300164","Methanobrevibacter arboriphilus JCM 13429 = DSM 1125"],["NCBITaxon%3A1293039","Methanobrevibacter arboriphilus JCM 9315"]]},{"id":"NCBITaxon:39791","l":"Corynebacterium glucuronolyticum","na":1,"nb":4,"a":[["TED%3AAF-A0A1W1U9X0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W1U9X0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39791","Corynebacterium glucuronolyticum"],["NCBITaxon%3A548478","Corynebacterium glucuronolyticum ATCC 51866"],["NCBITaxon%3A548477","Corynebacterium glucuronolyticum ATCC 51867"],["NCBITaxon%3A1121361","Corynebacterium glucuronolyticum DSM 44120"]]},{"id":"NCBITaxon:404589","l":"","na":4,"nb":1,"a":[["TED%3AAF-A7H7H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A7H7H4-F1-model_v4_TED01"],["TED%3AAF-A7H7U8-F1-model_v4_TED01","TED highly-symmetric fold AF-A7H7U8-F1-model_v4_TED01"],["TED%3AAF-A7HAV5-F1-model_v4_TED01","TED novel fold AF-A7HAV5-F1-model_v4_TED01"],["TED%3AAF-A7HE89-F1-model_v4_TED01","TED novel fold AF-A7HE89-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A404589","Anaeromyxobacter sp. Fw109-5"]]},{"id":"NCBITaxon:420281","l":"Proboscia inermis","na":4,"nb":1,"a":[["TED%3AAF-A0A7S0C146-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S0C146-F1-model_v4_TED03"],["TED%3AAF-A0A7S0CII7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S0CII7-F1-model_v4_TED02"],["TED%3AAF-A0A7S0CMH6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0CMH6-F1-model_v4_TED01"],["TED%3AAF-A0A7S0C3Z8-F1-model_v4_TED01","TED novel fold AF-A0A7S0C3Z8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A420281","Proboscia inermis"]]},{"id":"NCBITaxon:43305","l":"Butyrivibrio proteoclasticus","na":1,"nb":4,"a":[["TED%3AAF-A0A1I5WKT8-F1-model_v4_TED03","TED novel fold AF-A0A1I5WKT8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A43305","Butyrivibrio proteoclasticus"],["NCBITaxon%3A515622","Butyrivibrio proteoclasticus B316"],["NCBITaxon%3A1408431","Butyrivibrio proteoclasticus FD2007"],["NCBITaxon%3A1410650","Butyrivibrio proteoclasticus P6B7"]]},{"id":"NCBITaxon:43992","l":"Bradyrhizobium liaoningense","na":1,"nb":4,"a":[["TED%3AAF-A0A151FZT9-F1-model_v4_TED04","TED novel fold AF-A0A151FZT9-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A43992","Bradyrhizobium liaoningense"],["NCBITaxon%3A306163","Bradyrhizobium liaoningense bv. glycinearum"],["NCBITaxon%3A1128287","Bradyrhizobium liaoningense CCBAU 05525"],["NCBITaxon%3A1128288","Bradyrhizobium liaoningense CCBAU 83689"]]},{"id":"NCBITaxon:44447","l":"Pseudo-nitzschia delicatissima","na":4,"nb":1,"a":[["TED%3AAF-A0A7S0UI31-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0UI31-F1-model_v4_TED01"],["TED%3AAF-A0A7S0UJS7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0UJS7-F1-model_v4_TED01"],["TED%3AAF-A0A7S0ULC9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0ULC9-F1-model_v4_TED01"],["TED%3AAF-A0A7S0Y5Z9-F1-model_v4_TED01","TED novel fold AF-A0A7S0Y5Z9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A44447","Pseudo-nitzschia delicatissima"]]},{"id":"NCBITaxon:45243","l":"Capnocytophaga haemolytica","na":1,"nb":4,"a":[["TED%3AAF-A0A0X8JC19-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0X8JC19-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A45243","Capnocytophaga haemolytica"],["NCBITaxon%3A1410026","Capnocytophaga haemolytica HMP_JCVI_SC0216"],["NCBITaxon%3A1410027","Capnocytophaga haemolytica HMP_JCVI_SC0218"],["NCBITaxon%3A1827100","Capnocytophaga sp. JCM 8568"]]},{"id":"NCBITaxon:46180","l":"Nonomuraea rubra","na":1,"nb":4,"a":[["TED%3AAF-A0A7X0TYV7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X0TYV7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1193278","Corallincola platygyrae"],["NCBITaxon%3A1505037","Emcibacter nanhaiensis"],["NCBITaxon%3A46180","Nonomuraea rubra"],["NCBITaxon%3A1141892","Sphingomonas gimensis"]]},{"id":"NCBITaxon:464990","l":"Hemiselmis tepida","na":4,"nb":1,"a":[["TED%3AAF-A0A7S0W066-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S0W066-F1-model_v4_TED03"],["TED%3AAF-A0A7S0W722-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S0W722-F1-model_v4_TED02"],["TED%3AAF-A0A7S0V8V7-F1-model_v4_TED01","TED novel fold AF-A0A7S0V8V7-F1-model_v4_TED01"],["TED%3AAF-A0A7S0W156-F1-model_v4_TED01","TED novel fold AF-A0A7S0W156-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A464990","Hemiselmis tepida"]]},{"id":"NCBITaxon:470868","l":"Achromobacter marplatensis","na":1,"nb":4,"a":[["TED%3AAF-J4YJG0-F1-model_v4_TED03","TED highly-symmetric fold AF-J4YJG0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A217204","Achromobacter insolitus"],["NCBITaxon%3A470868","Achromobacter marplatensis"],["NCBITaxon%3A72556","Achromobacter piechaudii"],["NCBITaxon%3A85698","Achromobacter xylosoxidans"]]},{"id":"NCBITaxon:4787","l":"Phytophthora infestans","na":4,"nb":1,"a":[["Pfam%3APF27643","BZIP transcription factor 1 C-terminal domain"],["Pfam%3APF20147","Crinkler effector protein N-terminal domain"],["TED%3AAF-A0A833SU74-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A833SU74-F1-model_v4_TED02"],["TED%3AAF-A0A833S5L0-F1-model_v4_TED01","TED novel fold AF-A0A833S5L0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A4787","Phytophthora infestans"]]},{"id":"NCBITaxon:48","l":"Archangium gephyra","na":4,"nb":1,"a":[["TED%3AAF-A0A0G2ZQX3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G2ZQX3-F1-model_v4_TED01"],["TED%3AAF-A0A0G3A8M9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G3A8M9-F1-model_v4_TED01"],["TED%3AAF-A0A2W5T6H4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2W5T6H4-F1-model_v4_TED03"],["TED%3AAF-A0A0G2ZR59-F1-model_v4_TED01","TED novel fold AF-A0A0G2ZR59-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A48","Archangium gephyra"]]},{"id":"NCBITaxon:48465","l":"Prosthecobacter dejongeii","na":4,"nb":1,"a":[["TED%3AAF-A0A7W7YJS7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W7YJS7-F1-model_v4_TED01"],["TED%3AAF-A0A7W7YL82-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W7YL82-F1-model_v4_TED01"],["TED%3AAF-A0A7W8DRC9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W8DRC9-F1-model_v4_TED01"],["TED%3AAF-A0A7W8DRQ8-F1-model_v4_TED01","TED novel fold AF-A0A7W8DRQ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A48465","Prosthecobacter dejongeii"]]},{"id":"NCBITaxon:487316","l":"Acinetobacter soli","na":1,"nb":4,"a":[["TED%3AAF-A0A427LG51-F1-model_v4_TED01","TED novel fold AF-A0A427LG51-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A487316","Acinetobacter soli"],["NCBITaxon%3A1217676","Acinetobacter soli CIP 110264"],["NCBITaxon%3A1217677","Acinetobacter soli NIPH 2899"],["NCBITaxon%3A1451233","Acinetobacter soli TCM341"]]},{"id":"NCBITaxon:4955","l":"Lachancea fermentati","na":4,"nb":1,"a":[["Pfam%3APF03930","Recombinase Flp protein N-terminus"],["Pfam%3APF05202","Recombinase Flp protein"],["TED%3AAF-A0A1G4MCS2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G4MCS2-F1-model_v4_TED01"],["TED%3AAF-A0A1G4MJ93-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G4MJ93-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A4955","Lachancea fermentati"]]},{"id":"NCBITaxon:497965","l":"","na":4,"nb":1,"a":[["TED%3AAF-E0UJA0-F1-model_v4_TED01","TED highly-symmetric fold AF-E0UJA0-F1-model_v4_TED01"],["TED%3AAF-E0U6M3-F1-model_v4_TED03","TED novel fold AF-E0U6M3-F1-model_v4_TED03"],["TED%3AAF-E0UE39-F1-model_v4_TED02","TED novel fold AF-E0UE39-F1-model_v4_TED02"],["TED%3AAF-E0UM93-F1-model_v4_TED01","TED novel fold AF-E0UM93-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A497965","Gloeothece verrucosa PCC 7822"]]},{"id":"NCBITaxon:500485","l":"Penicillium rubens Wisconsin 54-1255","na":4,"nb":1,"a":[["Pfam%3APF03417","Acyl-coenzyme A:6-aminopenicillanic acid acyl-transferase"],["Pfam%3APF03659","Glycosyl hydrolase family 71"],["PROSITE%3APS00185","Isopenicillin N synthase signature 1"],["PROSITE%3APS00186","Isopenicillin N synthase signature 2"]],"b":[["NCBITaxon%3A500485","Penicillium rubens Wisconsin 54-1255"]]},{"id":"NCBITaxon:50741","l":"Marinobacter sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A2D9LBV8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9LBV8-F1-model_v4_TED01"],["TED%3AAF-A0A2D7X1D2-F1-model_v4_TED01","TED novel fold AF-A0A2D7X1D2-F1-model_v4_TED01"],["TED%3AAF-A0A2E8AEX3-F1-model_v4_TED02","TED novel fold AF-A0A2E8AEX3-F1-model_v4_TED02"],["TED%3AAF-A0A3D5Q8H2-F1-model_v4_TED01","TED novel fold AF-A0A3D5Q8H2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A50741","Marinobacter sp."]]},{"id":"NCBITaxon:5076","l":"Penicillium chrysogenum","na":4,"nb":1,"a":[["Pfam%3APF03417","Acyl-coenzyme A:6-aminopenicillanic acid acyl-transferase"],["Pfam%3APF11402","Antifungal protein"],["PROSITE%3APS00185","Isopenicillin N synthase signature 1"],["PROSITE%3APS00186","Isopenicillin N synthase signature 2"]],"b":[["NCBITaxon%3A5076","Penicillium chrysogenum"]]},{"id":"NCBITaxon:50990","l":"Rickenella mellea","na":4,"nb":1,"a":[["TED%3AAF-A0A4Y7PJF9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y7PJF9-F1-model_v4_TED01"],["TED%3AAF-A0A4Y7PDJ0-F1-model_v4_TED03","TED novel fold AF-A0A4Y7PDJ0-F1-model_v4_TED03"],["TED%3AAF-A0A4Y7PG65-F1-model_v4_TED01","TED novel fold AF-A0A4Y7PG65-F1-model_v4_TED01"],["TED%3AAF-A0A4Y7PGV9-F1-model_v4_TED02","TED novel fold AF-A0A4Y7PGV9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A50990","Rickenella mellea"]]},{"id":"NCBITaxon:512","l":"Alcaligenes sp","na":4,"nb":1,"a":[["Pfam%3APF26354","N,N-dimethylformamidase alpha subunit"],["Pfam%3APF20254","N,N-dimethylformamidase beta subunit-like, C-terminal"],["Pfam%3APF11606","Family 31 carbohydrate binding protein"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"]],"b":[["NCBITaxon%3A512","Alcaligenes sp."]]},{"id":"NCBITaxon:51671","l":"Microbacterium sp.","na":4,"nb":1,"a":[["Pfam%3APF19906","C-glycoside deglycosidase beta subunit"],["TED%3AAF-A0A349CW39-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349CW39-F1-model_v4_TED01"],["TED%3AAF-A0A2W6V981-F1-model_v4_TED01","TED novel fold AF-A0A2W6V981-F1-model_v4_TED01"],["TED%3AAF-A0A3D4PQL1-F1-model_v4_TED01","TED novel fold AF-A0A3D4PQL1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A51671","Microbacterium sp."]]},{"id":"NCBITaxon:519","l":"Bordetella parapertussis","na":1,"nb":4,"a":[["Pfam%3APF13542","Helix-turn-helix domain of transposase family ISL3"]],"b":[["NCBITaxon%3A519","Bordetella parapertussis"],["NCBITaxon%3A257311","Bordetella parapertussis 12822"],["NCBITaxon%3A1208717","Bordetella parapertussis 18323"],["NCBITaxon%3A1208660","Bordetella parapertussis Bpp5"]]},{"id":"NCBITaxon:522373","l":"Stenotrophomonas maltophilia (strain K279a)","na":4,"nb":1,"a":[["Pfam%3APF07940","Heparinase II/III-like, C-terminal"],["Pfam%3APF16970","Type-1 fimbrial protein, A"],["PROSITE%3APS00550","Hemerythrin family signature"],["Pfam%3APF05426","Alginate lyase"]],"b":[["NCBITaxon%3A522373","Stenotrophomonas maltophilia K279a"]]},{"id":"NCBITaxon:5270","l":"","na":4,"nb":1,"a":[["Pfam%3APF17445","Mating factor A1"],["Pfam%3APF24563","Mug60/KHD4 KH type I domain"],["Pfam%3APF01185","Fungal hydrophobin"],["Pfam%3APF07460","NUMOD3 motif"]],"b":[["NCBITaxon%3A5270","Mycosarcoma maydis"]]},{"id":"NCBITaxon:529507","l":"","na":4,"nb":1,"a":[["Pfam%3APF02028","BCCT, betaine/carnitine/choline family transporter"],["PROSITE%3APS01303","BCCT family of transporters signature"],["PROSITE%3APS01120","Urease nickel ligands signature"],["PROSITE%3APS00145","Urease active site"]],"b":[["NCBITaxon%3A529507","Proteus mirabilis HI4320"]]},{"id":"NCBITaxon:5341","l":"Agaricus bisporus","na":1,"nb":4,"a":[["Pfam%3APF07367","Fungal fruit body lectin"]],"b":[["NCBITaxon%3A5341","Agaricus bisporus"],["NCBITaxon%3A936046","Agaricus bisporus var. bisporus H97"],["NCBITaxon%3A192524","Agaricus bisporus var. burnettii"],["NCBITaxon%3A597362","Agaricus bisporus var. burnettii JB137-S8"]]},{"id":"NCBITaxon:53432","l":"Nocardia uniformis","na":1,"nb":4,"a":[["TED%3AAF-A0A849C8L0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A849C8L0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1872144","Actinosynnema sp."],["NCBITaxon%3A53432","Nocardia uniformis"],["NCBITaxon%3A1210100","Nocardia uniformis NBRC 13702"],["NCBITaxon%3A96045","Nocardia uniformis subsp. tsuyamanensis"]]},{"id":"NCBITaxon:5353","l":"Lentinula edodes","na":4,"nb":1,"a":[["Pfam%3APF21671","Protein CPL1-like"],["Pfam%3APF16850","Peptidase inhibitor I66"],["TED%3AAF-A0A1Q3EBL0-F1-model_v4_TED01","TED novel fold AF-A0A1Q3EBL0-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3ENK4-F1-model_v4_TED01","TED novel fold AF-A0A1Q3ENK4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5353","Lentinula edodes"]]},{"id":"NCBITaxon:53707","l":"Pseudomonas amygdali pv. lachrymans","na":1,"nb":4,"a":[["TED%3AAF-A0A3M5I528-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M5I528-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A53707","Pseudomonas amygdali pv. lachrymans"],["NCBITaxon%3A629260","Pseudomonas amygdali pv. lachrymans str. M301315"],["NCBITaxon%3A629267","Pseudomonas amygdali pv. lachrymans str. M302278"],["NCBITaxon%3A317","Pseudomonas syringae"]]},{"id":"NCBITaxon:5481","l":"Diutina rugosa","na":4,"nb":1,"a":[["TED%3AAF-A0A642UM15-F1-model_v4_TED02","TED novel fold AF-A0A642UM15-F1-model_v4_TED02"],["TED%3AAF-A0A642UMZ0-F1-model_v4_TED01","TED novel fold AF-A0A642UMZ0-F1-model_v4_TED01"],["TED%3AAF-A0A642UNT8-F1-model_v4_TED02","TED novel fold AF-A0A642UNT8-F1-model_v4_TED02"],["TED%3AAF-A0A642UTN5-F1-model_v4_TED01","TED novel fold AF-A0A642UTN5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5481","Diutina rugosa"]]},{"id":"NCBITaxon:5518","l":"Fusarium graminearum","na":4,"nb":1,"a":[["Pfam%3APF09118","Galactose oxidase-like, Early set domain"],["Pfam%3APF07250","Glyoxal oxidase N-terminus"],["TED%3AAF-A0A2H3FY84-F1-model_v4_TED03","TED novel fold AF-A0A2H3FY84-F1-model_v4_TED03"],["TED%3AAF-A0A2H3G191-F1-model_v4_TED01","TED novel fold AF-A0A2H3G191-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5518","Fusarium graminearum"]]},{"id":"NCBITaxon:553239","l":"Vibrio breoganii","na":1,"nb":4,"a":[["TED%3AAF-A0A193KJE7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A193KJE7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A553239","Vibrio breoganii"],["NCBITaxon%3A1205908","Vibrio breoganii 1C10"],["NCBITaxon%3A1188257","Vibrio breoganii ZF-29"],["NCBITaxon%3A1188253","Vibrio breoganii ZF-55"]]},{"id":"NCBITaxon:5544","l":"Trichoderma harzianum","na":4,"nb":1,"a":[["Pfam%3APF00840","Glycosyl hydrolase family 7"],["Pfam%3APF12708","Rhamnogalacturonase A/epimerase, pectate lyase-like"],["TED%3AAF-A0A0F9XDU3-F1-model_v4_TED01","TED novel fold AF-A0A0F9XDU3-F1-model_v4_TED01"],["TED%3AAF-A0A0G0ASL4-F1-model_v4_TED01","TED novel fold AF-A0A0G0ASL4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5544","Trichoderma harzianum"]]},{"id":"NCBITaxon:556484","l":"","na":4,"nb":1,"a":[["TED%3AAF-B7GAJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-B7GAJ8-F1-model_v4_TED01"],["TED%3AAF-B7G520-F1-model_v4_TED02","TED novel fold AF-B7G520-F1-model_v4_TED02"],["TED%3AAF-B7G8V4-F1-model_v4_TED02","TED novel fold AF-B7G8V4-F1-model_v4_TED02"],["TED%3AAF-B7GB31-F1-model_v4_TED01","TED novel fold AF-B7GB31-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A556484","Phaeodactylum tricornutum CCAP 1055/1"]]},{"id":"NCBITaxon:561230","l":"Pectobacterium carotovorum subsp. carotovorum (strain PC1)","na":4,"nb":1,"a":[["Pfam%3APF17868","AAA lid domain"],["Pfam%3APF12592","ATPase, RavA, C-terminal"],["Pfam%3APF20030","MoxR domain in the MoxR-vWA-beta-propeller ternary systems"],["Pfam%3APF20265","ATPase, RavA, LARA domain"]],"b":[["NCBITaxon%3A561230","Pectobacterium carotovorum subsp. carotovorum PC1"]]},{"id":"NCBITaxon:564","l":"Escherichia fergusonii","na":1,"nb":4,"a":[["TED%3AAF-A0A4Y5RSR2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y5RSR2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A564","Escherichia fergusonii"],["NCBITaxon%3A585054","Escherichia fergusonii ATCC 35469"],["NCBITaxon%3A550694","Escherichia fergusonii B253"],["NCBITaxon%3A981367","Escherichia fergusonii ECD227"]]},{"id":"NCBITaxon:56646","l":"Fusarium venenatum","na":4,"nb":1,"a":[["TED%3AAF-A0A2L2T3T0-F1-model_v4_TED01","TED novel fold AF-A0A2L2T3T0-F1-model_v4_TED01"],["TED%3AAF-A0A2L2T6Y7-F1-model_v4_TED02","TED novel fold AF-A0A2L2T6Y7-F1-model_v4_TED02"],["TED%3AAF-A0A2L2TYS2-F1-model_v4_TED01","TED novel fold AF-A0A2L2TYS2-F1-model_v4_TED01"],["TED%3AAF-A0A2L2U1R1-F1-model_v4_TED03","TED novel fold AF-A0A2L2U1R1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A56646","Fusarium venenatum"]]},{"id":"NCBITaxon:5691","l":"Trypanosoma brucei","na":1,"nb":4,"a":[["TED%3AAF-A0A1J0R543-F1-model_v4_TED02","TED novel fold AF-A0A1J0R543-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A5702","Trypanosoma brucei brucei"],["NCBITaxon%3A185431","Trypanosoma brucei brucei TREU927"],["NCBITaxon%3A630700","Trypanosoma brucei equiperdum"],["NCBITaxon%3A31286","Trypanosoma brucei rhodesiense"]]},{"id":"NCBITaxon:5759","l":"Entamoeba histolytica","na":4,"nb":1,"a":[["IDPO%3A0000012","molten globule to order"],["TED%3AAF-C4LXE1-F1-model_v4_TED01","TED highly-symmetric fold AF-C4LXE1-F1-model_v4_TED01"],["TED%3AAF-C4LXH3-F1-model_v4_TED02","TED novel fold AF-C4LXH3-F1-model_v4_TED02"],["TED%3AAF-C4MBN2-F1-model_v4_TED03","TED novel fold AF-C4MBN2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A5759","Entamoeba histolytica"]]},{"id":"NCBITaxon:599839","l":"Fibroporia radiculosa","na":4,"nb":1,"a":[["TED%3AAF-J4G061-F1-model_v4_TED01","TED highly-symmetric fold AF-J4G061-F1-model_v4_TED01"],["TED%3AAF-J4HTT0-F1-model_v4_TED01","TED highly-symmetric fold AF-J4HTT0-F1-model_v4_TED01"],["TED%3AAF-J4GNK0-F1-model_v4_TED01","TED novel fold AF-J4GNK0-F1-model_v4_TED01"],["TED%3AAF-J4H469-F1-model_v4_TED01","TED novel fold AF-J4H469-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A599839","Fibroporia radiculosa"]]},{"id":"NCBITaxon:620833","l":"Fusobacterium periodonticum D10","na":4,"nb":1,"a":[["TED%3AAF-K1GSN7-F1-model_v4_TED02","TED highly-symmetric fold AF-K1GSN7-F1-model_v4_TED02"],["TED%3AAF-K1GK28-F1-model_v4_TED01","TED novel fold AF-K1GK28-F1-model_v4_TED01"],["TED%3AAF-K1GT63-F1-model_v4_TED01","TED novel fold AF-K1GT63-F1-model_v4_TED01"],["TED%3AAF-K1HFK3-F1-model_v4_TED01","TED novel fold AF-K1HFK3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A620833","Fusobacterium periodonticum D10"]]},{"id":"NCBITaxon:644352","l":"Gaeumannomyces tritici (strain R3-111a-1)","na":4,"nb":1,"a":[["TED%3AAF-J8U2T4-F1-model_v4_TED01","TED highly-symmetric fold AF-J8U2T4-F1-model_v4_TED01"],["TED%3AAF-J3NLU7-F1-model_v4_TED02","TED novel fold AF-J3NLU7-F1-model_v4_TED02"],["TED%3AAF-J3NQT0-F1-model_v4_TED01","TED novel fold AF-J3NQT0-F1-model_v4_TED01"],["TED%3AAF-J3PFR6-F1-model_v4_TED02","TED novel fold AF-J3PFR6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A644352","Gaeumannomyces tritici R3-111a-1"]]},{"id":"NCBITaxon:658196","l":"Glomus cerebriforme","na":4,"nb":1,"a":[["TED%3AAF-A0A397SM59-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A397SM59-F1-model_v4_TED01"],["TED%3AAF-A0A397T6M2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A397T6M2-F1-model_v4_TED02"],["TED%3AAF-A0A397S7Z6-F1-model_v4_TED02","TED novel fold AF-A0A397S7Z6-F1-model_v4_TED02"],["TED%3AAF-A0A397SLL5-F1-model_v4_TED02","TED novel fold AF-A0A397SLL5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A658196","Glomus cerebriforme"]]},{"id":"NCBITaxon:671267","l":"Phocaeicola sartorii","na":1,"nb":4,"a":[["TED%3AAF-A0A4S2FG02-F1-model_v4_TED02","TED novel fold AF-A0A4S2FG02-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A671267","Phocaeicola sartorii"],["NCBITaxon%3A1235788","Phocaeicola sartorii dnLKV3"],["NCBITaxon%3A1236538","Phocaeicola sartorii JCM 16497"],["NCBITaxon%3A1236515","Phocaeicola sartorii JCM 17136 = DSM 21941"]]},{"id":"NCBITaxon:68998","l":"Alcaligenes sp. (strain CT14)","na":4,"nb":1,"a":[["Pfam%3APF25973","CzcB-like, barrel-sandwich hybrid domain"],["Pfam%3APF25975","CzcB C-terminal circularly permuted SH3-like domain"],["Pfam%3APF25971","CzcB, N-terminal domain"],["Pfam%3APF25893","CzcB-like, alpha-helical hairpin domain"]],"b":[["NCBITaxon%3A68998","Alcaligenes sp. CT14"]]},{"id":"NCBITaxon:710127","l":"Mycoplasmoides gallisepticum (strain R(low / passage 15 / clone 2))","na":4,"nb":1,"a":[["Pfam%3APF27734","Cytadherence high molecular weight protein 2"],["Pfam%3APF07271","Cytadhesin P30/P32"],["Pfam%3APF06574","FAD synthetase"],["Pfam%3APF12378","Mycoplasma adhesin P1, N-terminal"]],"b":[["NCBITaxon%3A710127","Mycoplasmoides gallisepticum str. R(low)"]]},{"id":"NCBITaxon:72360","l":"Bacillus mojavensis","na":1,"nb":4,"a":[["Pfam%3APF05952","Bacillus competence pheromone ComX"]],"b":[["NCBITaxon%3A260554","Bacillus halotolerans"],["NCBITaxon%3A72360","Bacillus mojavensis"],["NCBITaxon%3A1051501","Bacillus mojavensis RO-H-1 = KCTC 3706"],["NCBITaxon%3A1329377","Bacillus mojavensis RRC 101"]]},{"id":"NCBITaxon:72548","l":"Prymnesium polylepis","na":4,"nb":1,"a":[["TED%3AAF-A0A7S4MJG5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4MJG5-F1-model_v4_TED01"],["TED%3AAF-A0A7S4HUL0-F1-model_v4_TED03","TED novel fold AF-A0A7S4HUL0-F1-model_v4_TED03"],["TED%3AAF-A0A7S4MHM1-F1-model_v4_TED01","TED novel fold AF-A0A7S4MHM1-F1-model_v4_TED01"],["TED%3AAF-A0A7S4N3G6-F1-model_v4_TED01","TED novel fold AF-A0A7S4N3G6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A72548","Prymnesium polylepis"]]},{"id":"NCBITaxon:744512","l":"Treponema rectale","na":4,"nb":1,"a":[["TED%3AAF-A0A7M1XL74-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7M1XL74-F1-model_v4_TED02"],["TED%3AAF-A0A7M1XI10-F1-model_v4_TED02","TED novel fold AF-A0A7M1XI10-F1-model_v4_TED02"],["TED%3AAF-A0A7M1XIN4-F1-model_v4_TED02","TED novel fold AF-A0A7M1XIN4-F1-model_v4_TED02"],["TED%3AAF-A0A7M1XJH8-F1-model_v4_TED03","TED novel fold AF-A0A7M1XJH8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A744512","Treponema rectale"]]},{"id":"NCBITaxon:74565","l":"Arthrobacter sp. (strain CB-8)","na":4,"nb":1,"a":[["Pfam%3APF17433","Glycosyl hydrolase family 49 N-terminal Ig-like domain"],["Pfam%3APF18841","Beta solenoid repeat from Dextranase"],["Pfam%3APF03718","Glycosyl hydrolase family 49"],["Pfam%3APF18783","Isopullulanase beta-solenoid repeat"]],"b":[["NCBITaxon%3A74565","Arthrobacter sp. CB-8"]]},{"id":"NCBITaxon:747676","l":"Melampsora larici-populina (strain 98AG31 / pathotype 3-4-7)","na":4,"nb":1,"a":[["TED%3AAF-F4R5F1-F1-model_v4_TED01","TED highly-symmetric fold AF-F4R5F1-F1-model_v4_TED01"],["TED%3AAF-F4RCW9-F1-model_v4_TED01","TED highly-symmetric fold AF-F4RCW9-F1-model_v4_TED01"],["TED%3AAF-F4RU47-F1-model_v4_TED01","TED highly-symmetric fold AF-F4RU47-F1-model_v4_TED01"],["TED%3AAF-F4SD93-F1-model_v4_TED01","TED highly-symmetric fold AF-F4SD93-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A747676","Melampsora larici-populina 98AG31"]]},{"id":"NCBITaxon:787","l":"Rickettsia australis","na":1,"nb":4,"a":[["Pfam%3APF16998","17 kDa outer membrane surface antigen"]],"b":[["NCBITaxon%3A787","Rickettsia australis"],["NCBITaxon%3A1105110","Rickettsia australis str. Cutlack"],["NCBITaxon%3A1359150","Rickettsia australis str. H2292"],["NCBITaxon%3A1196662","Rickettsia australis str. Phillips"]]},{"id":"NCBITaxon:83449","l":"Cystobacter ferrugineus","na":4,"nb":1,"a":[["TED%3AAF-A0A1L9B4M1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L9B4M1-F1-model_v4_TED01"],["TED%3AAF-A0A1L9B5W1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L9B5W1-F1-model_v4_TED01"],["TED%3AAF-A0A1L9BCS8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L9BCS8-F1-model_v4_TED01"],["TED%3AAF-A0A1L9BDA4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1L9BDA4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A83449","Cystobacter ferrugineus"]]},{"id":"NCBITaxon:839","l":"Xylanibacter ruminicola","na":1,"nb":4,"a":[["TED%3AAF-A0A1M7DCP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M7DCP8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1531","Enterocloster clostridioformis"],["NCBITaxon%3A839","Xylanibacter ruminicola"],["NCBITaxon%3A264731","Xylanibacter ruminicola 23"],["NCBITaxon%3A1410667","Xylanibacter ruminicola Ga6B6"]]},{"id":"NCBITaxon:84025","l":"Clostridium haemolyticum","na":1,"nb":4,"a":[["TED%3AAF-A0A1V2Y674-F1-model_v4_TED01","TED novel fold AF-A0A1V2Y674-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1491","Clostridium botulinum"],["NCBITaxon%3A84025","Clostridium haemolyticum"],["NCBITaxon%3A1443115","Clostridium haemolyticum NCTC 8350"],["NCBITaxon%3A1443114","Clostridium haemolyticum NCTC 9693"]]},{"id":"NCBITaxon:870","l":"Dichelobacter nodosus","na":1,"nb":4,"a":[["Pfam%3APF27166","Fimbrial assembly protein FimB"]],"b":[["NCBITaxon%3A870","Dichelobacter nodosus"],["NCBITaxon%3A35819","Dichelobacter nodosus A198"],["NCBITaxon%3A46911","Dichelobacter nodosus H1"],["NCBITaxon%3A246195","Dichelobacter nodosus VCS1703A"]]},{"id":"NCBITaxon:888845","l":"Minicystis rosea","na":4,"nb":1,"a":[["TED%3AAF-A0A1L6LHU6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6LHU6-F1-model_v4_TED01"],["TED%3AAF-A0A1L6LWQ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6LWQ0-F1-model_v4_TED01"],["TED%3AAF-A0A1L6L181-F1-model_v4_TED02","TED novel fold AF-A0A1L6L181-F1-model_v4_TED02"],["TED%3AAF-A0A1L6LWI8-F1-model_v4_TED02","TED novel fold AF-A0A1L6LWI8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A888845","Minicystis rosea"]]},{"id":"NCBITaxon:909420","l":"Neisseria meningitidis serogroup B / serotype 15 (strain H44/76)","na":4,"nb":1,"a":[["Pfam%3APF08794","Factor H binding protein, C-terminal"],["Pfam%3APF20937","Factor H binding protein, N-terminal"],["Pfam%3APF10093","Elongation-Factor P (EF-P) rhamnosyltransferase EarP"],["Pfam%3APF12951","Passenger-associated-transport-repeat"]],"b":[["NCBITaxon%3A909420","Neisseria meningitidis H44/76"]]},{"id":"NCBITaxon:914234","l":"Ceriporiopsis subvermispora (strain B)","na":4,"nb":1,"a":[["TED%3AAF-M2PE00-F1-model_v4_TED02","TED novel fold AF-M2PE00-F1-model_v4_TED02"],["TED%3AAF-M2R4A1-F1-model_v4_TED01","TED novel fold AF-M2R4A1-F1-model_v4_TED01"],["TED%3AAF-M2RBL3-F1-model_v4_TED01","TED novel fold AF-M2RBL3-F1-model_v4_TED01"],["TED%3AAF-M2RKN7-F1-model_v4_TED01","TED novel fold AF-M2RKN7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A914234","Gelatoporia subvermispora B"]]},{"id":"NCBITaxon:91943","l":"Hortaea werneckii","na":4,"nb":1,"a":[["TED%3AAF-A0A3M7FF58-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M7FF58-F1-model_v4_TED01"],["TED%3AAF-A0A3M7A540-F1-model_v4_TED02","TED novel fold AF-A0A3M7A540-F1-model_v4_TED02"],["TED%3AAF-A0A3M7EWD3-F1-model_v4_TED02","TED novel fold AF-A0A3M7EWD3-F1-model_v4_TED02"],["TED%3AAF-A0A3M7F0J9-F1-model_v4_TED01","TED novel fold AF-A0A3M7F0J9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A91943","Hortaea werneckii"]]},{"id":"NCBITaxon:933388","l":"Penicillium oxalicum (strain 114-2 / CGMCC 5302)","na":4,"nb":1,"a":[["Pfam%3APF27751","ATEG_07667 C-terminal domain"],["Pfam%3APF11402","Antifungal protein"],["Pfam%3APF12311","Protein of unknown function (DUF3632)"],["TED%3AAF-S8ATN5-F1-model_v4_TED01","TED highly-symmetric fold AF-S8ATN5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A933388","Penicillium oxalicum 114-2"]]},{"id":"NCBITaxon:935293","l":"Yersinia entomophaga","na":4,"nb":1,"a":[["Pfam%3APF05785","Rho-activating domain of cytotoxic necrotizing factor"],["Pfam%3APF20220","ABC toxin N-terminal region"],["Pfam%3APF18413","Neuraminidase-like domain"],["Pfam%3APF12256","Insecticide toxin TcdB middle/N-terminal region"]],"b":[["NCBITaxon%3A935293","Yersinia entomophaga"]]},{"id":"NCBITaxon:93625","l":"Psilocybe cyanescens","na":4,"nb":1,"a":[["Pfam%3APF02958","Ecdysteroid kinase-like family"],["TED%3AAF-A0A409XLW7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A409XLW7-F1-model_v4_TED01"],["TED%3AAF-A0A409XPY8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A409XPY8-F1-model_v4_TED01"],["TED%3AAF-A0A409XED8-F1-model_v4_TED01","TED novel fold AF-A0A409XED8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A93625","Psilocybe cyanescens"]]},{"id":"NCBITaxon:940295","l":"Ignicoccus islandicus DSM 13165","na":1,"nb":4,"a":[["TED%3AAF-A0A0U3FPM2-F1-model_v4_TED03","TED novel fold AF-A0A0U3FPM2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A54259","Ignicoccus islandicus"],["NCBITaxon%3A940295","Ignicoccus islandicus DSM 13165"],["NCBITaxon%3A114376","Ignicoccus pacificus"],["NCBITaxon%3A940294","Ignicoccus pacificus DSM 13166"]]},{"id":"NCBITaxon:960","l":"Bacteriovorax stolpii","na":4,"nb":1,"a":[["TED%3AAF-A0A2K9NQE9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2K9NQE9-F1-model_v4_TED01"],["TED%3AAF-A0A2K9NU38-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2K9NU38-F1-model_v4_TED03"],["TED%3AAF-A0A2K9NN30-F1-model_v4_TED02","TED novel fold AF-A0A2K9NN30-F1-model_v4_TED02"],["TED%3AAF-A0A2K9NUC6-F1-model_v4_TED01","TED novel fold AF-A0A2K9NUC6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A960","Bacteriovorax stolpii"]]},{"id":"NCBITaxon:1003181","l":"Candidatus Thiomargarita nelsonii","na":3,"nb":1,"a":[["TED%3AAF-A0A0A6P559-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A6P559-F1-model_v4_TED01"],["TED%3AAF-A0A176S227-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A176S227-F1-model_v4_TED01"],["TED%3AAF-A0A4E0QWU3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4E0QWU3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1003181","Candidatus Thiomargarita nelsonii"]]},{"id":"NCBITaxon:1003237","l":"Nitrospirillum amazonense Y2","na":1,"nb":3,"a":[["TED%3AAF-G1Y2J3-F1-model_v4_TED02","TED novel fold AF-G1Y2J3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A28077","Nitrospirillum amazonense"],["NCBITaxon%3A3144925","Nitrospirillum viridazoti"],["NCBITaxon%3A1003237","Nitrospirillum viridazoti Y2"]]},{"id":"NCBITaxon:101127","l":"Hesseltinella vesiculosa","na":3,"nb":1,"a":[["TED%3AAF-A0A1X2GTE9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X2GTE9-F1-model_v4_TED01"],["TED%3AAF-A0A1X2GVH9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X2GVH9-F1-model_v4_TED01"],["TED%3AAF-A0A1X2GHF0-F1-model_v4_TED03","TED novel fold AF-A0A1X2GHF0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A101127","Hesseltinella vesiculosa"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":3,"nb":1,"a":[["Pfam%3APF05258","Dna[CI] antecedent, DciA"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"],["TED%3AAF-Q0RZW9-F1-model_v4_TED03","TED highly-symmetric fold AF-Q0RZW9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A101510","Rhodococcus jostii RHA1"]]},{"id":"NCBITaxon:1017","l":"Capnocytophaga gingivalis","na":1,"nb":3,"a":[["TED%3AAF-A0A250FUG5-F1-model_v4_TED01","TED novel fold AF-A0A250FUG5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1017","Capnocytophaga gingivalis"],["NCBITaxon%3A553178","Capnocytophaga gingivalis ATCC 33624"],["NCBITaxon%3A45242","Capnocytophaga granulosa"]]},{"id":"NCBITaxon:102129","l":"Leptolyngbya sp. PCC 7375","na":3,"nb":1,"a":[["TED%3AAF-K9ELM8-F1-model_v4_TED01","TED highly-symmetric fold AF-K9ELM8-F1-model_v4_TED01"],["TED%3AAF-K9F3N8-F1-model_v4_TED02","TED highly-symmetric fold AF-K9F3N8-F1-model_v4_TED02"],["TED%3AAF-K9FA28-F1-model_v4_TED01","TED novel fold AF-K9FA28-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A102129","Leptolyngbya sp. PCC 7375"]]},{"id":"NCBITaxon:1035193","l":"Capnocytophaga sp. oral taxon 326 str. F0382","na":3,"nb":1,"a":[["TED%3AAF-L1Q2A5-F1-model_v4_TED01","TED highly-symmetric fold AF-L1Q2A5-F1-model_v4_TED01"],["TED%3AAF-L1PA32-F1-model_v4_TED01","TED novel fold AF-L1PA32-F1-model_v4_TED01"],["TED%3AAF-L1PEF0-F1-model_v4_TED01","TED novel fold AF-L1PEF0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1035193","Capnocytophaga sp. oral taxon 326 str. F0382"]]},{"id":"NCBITaxon:1038928","l":"Streptomyces xinghaiensis","na":1,"nb":3,"a":[["TED%3AAF-A0A3R7FP99-F1-model_v4_TED01","TED novel fold AF-A0A3R7FP99-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1906","Streptomyces fradiae"],["NCBITaxon%3A1038928","Streptomyces xinghaiensis"],["NCBITaxon%3A1038929","Streptomyces xinghaiensis S187"]]},{"id":"NCBITaxon:106004","l":"Leucosporidium creatinivorum","na":3,"nb":1,"a":[["TED%3AAF-A0A1Y2CPR7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y2CPR7-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2EW19-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Y2EW19-F1-model_v4_TED02"],["TED%3AAF-A0A1Y2G0B4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y2G0B4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A106004","Leucosporidium creatinivorum"]]},{"id":"NCBITaxon:1076126","l":"Phytohabitans houttuyneae","na":3,"nb":1,"a":[["TED%3AAF-A0A6V8KGS6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6V8KGS6-F1-model_v4_TED01"],["TED%3AAF-A0A6V8KHM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6V8KHM3-F1-model_v4_TED01"],["TED%3AAF-A0A6V8K7N7-F1-model_v4_TED01","TED novel fold AF-A0A6V8K7N7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1076126","Phytohabitans houttuyneae"]]},{"id":"NCBITaxon:1076256","l":"Armillaria solidipes","na":3,"nb":1,"a":[["TED%3AAF-A0A2H3BR39-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H3BR39-F1-model_v4_TED02"],["TED%3AAF-A0A2H3B8U4-F1-model_v4_TED01","TED novel fold AF-A0A2H3B8U4-F1-model_v4_TED01"],["TED%3AAF-A0A2H3BBY0-F1-model_v4_TED02","TED novel fold AF-A0A2H3BBY0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1076256","Armillaria solidipes"]]},{"id":"NCBITaxon:1121336","l":"Thermoclostridium stercorarium subsp. thermolacticum DSM 2910","na":1,"nb":3,"a":[["TED%3AAF-A0A1B1YDV6-F1-model_v4_TED02","TED novel fold AF-A0A1B1YDV6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1510","Thermoclostridium stercorarium"],["NCBITaxon%3A29351","Thermoclostridium stercorarium subsp. thermolacticum"],["NCBITaxon%3A1121336","Thermoclostridium stercorarium subsp. thermolacticum DSM 2910"]]},{"id":"NCBITaxon:1125630","l":"Klebsiella pneumoniae subsp. pneumoniae (strain HS11286)","na":3,"nb":1,"a":[["Pfam%3APF16527","Two-component sensor protein CpxA, periplasmic domain"],["Pfam%3APF03883","Peroxide stress protein YaaA"],["PROSITE%3APS01081","TetR-type HTH domain signature"]],"b":[["NCBITaxon%3A1125630","Klebsiella pneumoniae subsp. pneumoniae HS11286"]]},{"id":"NCBITaxon:114699","l":"Streptomyces asiaticus","na":1,"nb":3,"a":[["TED%3AAF-A0A6G4A920-F1-model_v4_TED03","TED novel fold AF-A0A6G4A920-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A114699","Streptomyces asiaticus"],["NCBITaxon%3A3098222","Streptomyces asiaticus subsp. ignotus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:1147111","l":"Fusarium euwallaceae","na":3,"nb":1,"a":[["TED%3AAF-A0A430KYR9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A430KYR9-F1-model_v4_TED01"],["TED%3AAF-A0A430LI96-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A430LI96-F1-model_v4_TED01"],["TED%3AAF-A0A430LBG1-F1-model_v4_TED03","TED novel fold AF-A0A430LBG1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1147111","Fusarium euwallaceae"]]},{"id":"NCBITaxon:1149755","l":"Hyaloscypha variabilis F","na":3,"nb":1,"a":[["TED%3AAF-A0A2J6S371-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2J6S371-F1-model_v4_TED03"],["TED%3AAF-A0A2J6QYZ0-F1-model_v4_TED03","TED novel fold AF-A0A2J6QYZ0-F1-model_v4_TED03"],["TED%3AAF-A0A2J6RQN3-F1-model_v4_TED02","TED novel fold AF-A0A2J6RQN3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1149755","Hyaloscypha variabilis F"]]},{"id":"NCBITaxon:115778","l":"Leuconostoc gasicomitatum","na":1,"nb":3,"a":[["TED%3AAF-A0A7H9BD19-F1-model_v4_TED01","TED novel fold AF-A0A7H9BD19-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A115778","Leuconostoc gasicomitatum"],["NCBITaxon%3A1165892","Leuconostoc gasicomitatum KG16-1"],["NCBITaxon%3A762550","Leuconostoc gasicomitatum LMG 18811"]]},{"id":"NCBITaxon:116188","l":"Streptomyces coeruleorubidus","na":1,"nb":3,"a":[["Pfam%3APF13732","ATP-binding protein DrrA1-3-like, C-terminal domain"]],"b":[["NCBITaxon%3A1521190","Streptomyces bellus subsp. cirolerosus"],["NCBITaxon%3A116188","Streptomyces coeruleorubidus"],["NCBITaxon%3A146536","Streptomyces curacoi"]]},{"id":"NCBITaxon:1169539","l":"Vitrella brassicaformis","na":3,"nb":1,"a":[["TED%3AAF-A0A7S1JS09-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S1JS09-F1-model_v4_TED02"],["TED%3AAF-A0A7S1P3H9-F1-model_v4_TED02","TED novel fold AF-A0A7S1P3H9-F1-model_v4_TED02"],["TED%3AAF-A0A7S1P6L5-F1-model_v4_TED02","TED novel fold AF-A0A7S1P6L5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1169539","Vitrella brassicaformis"]]},{"id":"NCBITaxon:1195236","l":"Ruminiclostridium cellobioparum subsp. termitidis CT1112","na":1,"nb":3,"a":[["TED%3AAF-S0FP91-F1-model_v4_TED01","TED highly-symmetric fold AF-S0FP91-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29355","Ruminiclostridium cellobioparum"],["NCBITaxon%3A29371","Ruminiclostridium cellobioparum subsp. termitidis"],["NCBITaxon%3A1195236","Ruminiclostridium cellobioparum subsp. termitidis CT1112"]]},{"id":"NCBITaxon:1196095","l":"Gilliamella apicola","na":1,"nb":3,"a":[["TED%3AAF-A0A1B9LJZ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B9LJZ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1196095","Gilliamella apicola"],["NCBITaxon%3A1445513","Gilliamella apicola SCGC AB-598-B02"],["NCBITaxon%3A1445514","Gilliamella apicola SCGC AB-598-I20"]]},{"id":"NCBITaxon:1227467","l":"Halorubrum distributum JCM 9100","na":1,"nb":3,"a":[["TED%3AAF-M0EUZ2-F1-model_v4_TED02","TED novel fold AF-M0EUZ2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29283","Halorubrum distributum"],["NCBITaxon%3A1227468","Halorubrum distributum JCM 10118"],["NCBITaxon%3A1227467","Halorubrum distributum JCM 9100"]]},{"id":"NCBITaxon:1230097","l":"Cytospora leucostoma","na":3,"nb":1,"a":[["TED%3AAF-A0A423XFD9-F1-model_v4_TED03","TED novel fold AF-A0A423XFD9-F1-model_v4_TED03"],["TED%3AAF-A0A423XFH9-F1-model_v4_TED02","TED novel fold AF-A0A423XFH9-F1-model_v4_TED02"],["TED%3AAF-A0A423XKU4-F1-model_v4_TED02","TED novel fold AF-A0A423XKU4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1230097","Cytospora leucostoma"]]},{"id":"NCBITaxon:1233171","l":"Paraclostridium bifermentans ATCC 638 = DSM 14991","na":1,"nb":3,"a":[["TED%3AAF-T4VPR8-F1-model_v4_TED01","TED novel fold AF-T4VPR8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1490","Paraclostridium bifermentans"],["NCBITaxon%3A1233171","Paraclostridium bifermentans ATCC 638 = DSM 14991"],["NCBITaxon%3A2663174","Paraclostridium bifermentans subsp. bifermentans"]]},{"id":"NCBITaxon:1235835","l":"Anaerotruncus sp. G3(2012)","na":3,"nb":1,"a":[["TED%3AAF-R9L8U2-F1-model_v4_TED01","TED novel fold AF-R9L8U2-F1-model_v4_TED01"],["TED%3AAF-R9LRP4-F1-model_v4_TED03","TED novel fold AF-R9LRP4-F1-model_v4_TED03"],["TED%3AAF-R9LW99-F1-model_v4_TED01","TED novel fold AF-R9LW99-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1235835","Anaerotruncus sp. G3(2012)"]]},{"id":"NCBITaxon:1243014","l":"Vibrio thalassae","na":1,"nb":3,"a":[["TED%3AAF-A0A240ENP9-F1-model_v4_TED01","TED novel fold AF-A0A240ENP9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1387297","Falsiporphyromonas endometrii"],["NCBITaxon%3A1268269","Geojedonia litorea"],["NCBITaxon%3A1243014","Vibrio thalassae"]]},{"id":"NCBITaxon:1252","l":"Leuconostoc carnosum","na":1,"nb":3,"a":[["TED%3AAF-A0A2U3PKG3-F1-model_v4_TED01","TED novel fold AF-A0A2U3PKG3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1252","Leuconostoc carnosum"],["NCBITaxon%3A1229758","Leuconostoc carnosum JB16"],["NCBITaxon%3A1046593","Leuconostoc carnosum KCTC 3525"]]},{"id":"NCBITaxon:1257118","l":"Acanthamoeba castellanii str. Neff","na":3,"nb":1,"a":[["TED%3AAF-L8GX64-F1-model_v4_TED01","TED highly-symmetric fold AF-L8GX64-F1-model_v4_TED01"],["TED%3AAF-L8GQY5-F1-model_v4_TED03","TED novel fold AF-L8GQY5-F1-model_v4_TED03"],["TED%3AAF-L8H6A2-F1-model_v4_TED01","TED novel fold AF-L8H6A2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1257118","Acanthamoeba castellanii str. Neff"]]},{"id":"NCBITaxon:1262753","l":"Bacteroides sp. CAG:927","na":3,"nb":1,"a":[["TED%3AAF-R5B046-F1-model_v4_TED02","TED highly-symmetric fold AF-R5B046-F1-model_v4_TED02"],["TED%3AAF-R5AYB1-F1-model_v4_TED04","TED novel fold AF-R5AYB1-F1-model_v4_TED04"],["TED%3AAF-R5B5Z5-F1-model_v4_TED01","TED novel fold AF-R5B5Z5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262753","Bacteroides sp. CAG:927"]]},{"id":"NCBITaxon:1262795","l":"Clostridium sp. CAG:307","na":3,"nb":1,"a":[["TED%3AAF-R7GGA9-F1-model_v4_TED02","TED highly-symmetric fold AF-R7GGA9-F1-model_v4_TED02"],["TED%3AAF-R7GHK2-F1-model_v4_TED02","TED highly-symmetric fold AF-R7GHK2-F1-model_v4_TED02"],["TED%3AAF-R7GB72-F1-model_v4_TED04","TED novel fold AF-R7GB72-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1262795","Clostridium sp. CAG:307"]]},{"id":"NCBITaxon:1262821","l":"Clostridium sp. CAG:568","na":3,"nb":1,"a":[["TED%3AAF-R5ZMH9-F1-model_v4_TED01","TED highly-symmetric fold AF-R5ZMH9-F1-model_v4_TED01"],["TED%3AAF-R5ZCU7-F1-model_v4_TED01","TED novel fold AF-R5ZCU7-F1-model_v4_TED01"],["TED%3AAF-R5ZER1-F1-model_v4_TED03","TED novel fold AF-R5ZER1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1262821","Clostridium sp. CAG:568"]]},{"id":"NCBITaxon:1262831","l":"Clostridium sp. CAG:678","na":3,"nb":1,"a":[["TED%3AAF-R5KLS5-F1-model_v4_TED02","TED highly-symmetric fold AF-R5KLS5-F1-model_v4_TED02"],["TED%3AAF-R5KP39-F1-model_v4_TED03","TED highly-symmetric fold AF-R5KP39-F1-model_v4_TED03"],["TED%3AAF-R5KNL4-F1-model_v4_TED01","TED novel fold AF-R5KNL4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262831","Clostridium sp. CAG:678"]]},{"id":"NCBITaxon:1263023","l":"Firmicutes bacterium CAG:449","na":3,"nb":1,"a":[["TED%3AAF-R6QYP7-F1-model_v4_TED01","TED highly-symmetric fold AF-R6QYP7-F1-model_v4_TED01"],["TED%3AAF-R6R7G3-F1-model_v4_TED01","TED highly-symmetric fold AF-R6R7G3-F1-model_v4_TED01"],["TED%3AAF-R6RCJ9-F1-model_v4_TED03","TED novel fold AF-R6RCJ9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1263023","Firmicutes bacterium CAG:449"]]},{"id":"NCBITaxon:1263870","l":"","na":1,"nb":3,"a":[["TED%3AAF-M5TT15-F1-model_v4_TED02","TED novel fold AF-M5TT15-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1263869","Aporhodopirellula sallentina"],["NCBITaxon%3A1263870","Aporhodopirellula sallentina SM41"],["NCBITaxon%3A2024855","Rhodopirellula sp."]]},{"id":"NCBITaxon:1265868","l":"","na":1,"nb":3,"a":[["TED%3AAF-L8EUT2-F1-model_v4_TED01","TED highly-symmetric fold AF-L8EUT2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1927","Streptomyces rimosus"],["NCBITaxon%3A132474","Streptomyces rimosus subsp. rimosus"],["NCBITaxon%3A1265868","Streptomyces rimosus subsp. rimosus ATCC 10970"]]},{"id":"NCBITaxon:1267423","l":"Roseivirga pacifica","na":3,"nb":1,"a":[["TED%3AAF-A0A1I0MEP5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I0MEP5-F1-model_v4_TED02"],["TED%3AAF-A0A1I0RG98-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I0RG98-F1-model_v4_TED01"],["TED%3AAF-A0A4D7JNA0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4D7JNA0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1267423","Roseivirga pacifica"]]},{"id":"NCBITaxon:129364","l":"Phytophthora rubi","na":3,"nb":1,"a":[["TED%3AAF-A0A6A3GAK5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A3GAK5-F1-model_v4_TED01"],["TED%3AAF-A0A6A3IQC8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A3IQC8-F1-model_v4_TED01"],["TED%3AAF-A0A6A3K0A8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A3K0A8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A129364","Phytophthora rubi"]]},{"id":"NCBITaxon:1295009","l":"Methanomassiliicoccus intestinalis (strain Issoire-Mx1)","na":3,"nb":1,"a":[["TED%3AAF-R9T6Q3-F1-model_v4_TED04","TED highly-symmetric fold AF-R9T6Q3-F1-model_v4_TED04"],["TED%3AAF-R9TAZ5-F1-model_v4_TED01","TED highly-symmetric fold AF-R9TAZ5-F1-model_v4_TED01"],["TED%3AAF-R9T6T6-F1-model_v4_TED01","TED novel fold AF-R9T6T6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1295009","Candidatus Methanomassiliicoccus intestinalis Issoire-Mx1"]]},{"id":"NCBITaxon:1297742","l":"Myxococcus hansupus","na":1,"nb":3,"a":[["TED%3AAF-A0A0H4X3W5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0H4X3W5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A51","Chondromyces apiculatus"],["NCBITaxon%3A1192034","Chondromyces apiculatus DSM 436"],["NCBITaxon%3A1297742","Pseudomyxococcus hansupus"]]},{"id":"NCBITaxon:130081","l":"Galdieria sulphuraria","na":3,"nb":1,"a":[["Pfam%3APF04483","Protein of unknown function (DUF565)"],["TED%3AAF-M2VTL8-F1-model_v4_TED02","TED highly-symmetric fold AF-M2VTL8-F1-model_v4_TED02"],["TED%3AAF-M2XJR4-F1-model_v4_TED04","TED highly-symmetric fold AF-M2XJR4-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A130081","Galdieria sulphuraria"]]},{"id":"NCBITaxon:131363","l":"Fusarium ambrosium","na":3,"nb":1,"a":[["TED%3AAF-A0A428RPT4-F1-model_v4_TED01","TED novel fold AF-A0A428RPT4-F1-model_v4_TED01"],["TED%3AAF-A0A428V172-F1-model_v4_TED03","TED novel fold AF-A0A428V172-F1-model_v4_TED03"],["TED%3AAF-A0A428V1N4-F1-model_v4_TED01","TED novel fold AF-A0A428V1N4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A131363","Fusarium ambrosium"]]},{"id":"NCBITaxon:1317","l":"Streptococcus downei","na":1,"nb":3,"a":[["Pfam%3APF13199","Glycosyl hydrolase family 66"]],"b":[["NCBITaxon%3A1317","Streptococcus downei"],["NCBITaxon%3A904293","Streptococcus downei F0415"],["NCBITaxon%3A764290","Streptococcus downei MFe28"]]},{"id":"NCBITaxon:1321773","l":"Atopobium sp. oral taxon 810 str. F0209","na":3,"nb":1,"a":[["TED%3AAF-U1WDF8-F1-model_v4_TED01","TED novel fold AF-U1WDF8-F1-model_v4_TED01"],["TED%3AAF-U1WME7-F1-model_v4_TED02","TED novel fold AF-U1WME7-F1-model_v4_TED02"],["TED%3AAF-U1WWD2-F1-model_v4_TED03","TED novel fold AF-U1WWD2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1321773","Atopobium sp. oral taxon 810 str. F0209"]]},{"id":"NCBITaxon:1329250","l":"Weissella oryzae (strain DSM 25784 / JCM 18191 / LMG 30913 / SG25)","na":3,"nb":1,"a":[["Pfam%3APF26322","Botulinum-like neurotoxin Wo, C-terminal beta-trefoil domain"],["Pfam%3APF26321","Botulinum-like neurotoxin Wo, concanavalin A-like domain"],["TED%3AAF-A0A069CU70-F1-model_v4_TED02","TED novel fold AF-A0A069CU70-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1329250","Weissella oryzae SG25"]]},{"id":"NCBITaxon:1331910","l":"Thermogutta terrifontis","na":3,"nb":1,"a":[["TED%3AAF-A0A286RGV2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A286RGV2-F1-model_v4_TED01"],["TED%3AAF-A0A286RH16-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A286RH16-F1-model_v4_TED02"],["TED%3AAF-A0A286RL45-F1-model_v4_TED03","TED novel fold AF-A0A286RL45-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1331910","Thermogutta terrifontis"]]},{"id":"NCBITaxon:1334565","l":"","na":3,"nb":1,"a":[["Pfam%3APF09479","Listeria-Bacteroides repeat domain (List_Bact_rpt)"],["Pfam%3APF13457","GW (Gly-Tryp) dipeptide domain"],["Pfam%3APF12354","Bacterial adhesion/invasion protein N terminal"]],"b":[["NCBITaxon%3A1334565","Listeria monocytogenes EGD"]]},{"id":"NCBITaxon:135569","l":"Helicobacter apodemus","na":1,"nb":3,"a":[["TED%3AAF-A0A4U8UFG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8UFG8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A135569","Helicobacter apodemus"],["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"]]},{"id":"NCBITaxon:1399","l":"Cytobacillus firmus","na":1,"nb":3,"a":[["TED%3AAF-A0A800NFK9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A800NFK9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1399","Cytobacillus firmus"],["NCBITaxon%3A1307436","Cytobacillus firmus DS1"],["NCBITaxon%3A1314753","Cytobacillus firmus NBRC 15306"]]},{"id":"NCBITaxon:1400387","l":"Bythopirellula goksoeyrii","na":3,"nb":1,"a":[["TED%3AAF-A0A5B9Q7V0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B9Q7V0-F1-model_v4_TED01"],["TED%3AAF-A0A5B9QF75-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A5B9QF75-F1-model_v4_TED06"],["TED%3AAF-A0A5B9QUN1-F1-model_v4_TED01","TED novel fold AF-A0A5B9QUN1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1400387","Bythopirellula goksoeyrii"]]},{"id":"NCBITaxon:1423728","l":"Lentilactobacillus buchneri DSM 20057","na":1,"nb":3,"a":[["TED%3AAF-A0A4V3A4G3-F1-model_v4_TED01","TED novel fold AF-A0A4V3A4G3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1581","Lentilactobacillus buchneri"],["NCBITaxon%3A1423728","Lentilactobacillus buchneri DSM 20057"],["NCBITaxon%3A2737513","Lentilactobacillus buchneri subsp. buchneri"]]},{"id":"NCBITaxon:1434108","l":"Methanosarcina barkeri MS","na":1,"nb":3,"a":[["TED%3AAF-A0A0E3QTL0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0E3QTL0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2208","Methanosarcina barkeri"],["NCBITaxon%3A1298606","Methanosarcina barkeri JCM 10043"],["NCBITaxon%3A1434108","Methanosarcina barkeri MS"]]},{"id":"NCBITaxon:1437360","l":"Bradyrhizobium erythrophlei","na":3,"nb":1,"a":[["TED%3AAF-A0A1H4W4K7-F1-model_v4_TED01","TED novel fold AF-A0A1H4W4K7-F1-model_v4_TED01"],["TED%3AAF-A0A1M5NBM0-F1-model_v4_TED01","TED novel fold AF-A0A1M5NBM0-F1-model_v4_TED01"],["TED%3AAF-A0A1N6HZW8-F1-model_v4_TED02","TED novel fold AF-A0A1N6HZW8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1437360","Bradyrhizobium erythrophlei"]]},{"id":"NCBITaxon:146919","l":"Salinibacter ruber","na":1,"nb":3,"a":[["TED%3AAF-A0A840D6P8-F1-model_v4_TED02","TED novel fold AF-A0A840D6P8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A146919","Salinibacter ruber"],["NCBITaxon%3A309807","Salinibacter ruber DSM 13855"],["NCBITaxon%3A761659","Salinibacter ruber M8"]]},{"id":"NCBITaxon:1485010","l":"[Pythium] brassicae (nom. inval.)","na":3,"nb":1,"a":[["TED%3AAF-A0A5D6XQI2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5D6XQI2-F1-model_v4_TED01"],["TED%3AAF-A0A5D6Y5L6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5D6Y5L6-F1-model_v4_TED01"],["TED%3AAF-A0A5D6Y7V7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5D6Y7V7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1485010","[Pythium] brassicae (nom. inval.)"]]},{"id":"NCBITaxon:148604","l":"Limosilactobacillus ingluviei","na":1,"nb":3,"a":[["TED%3AAF-A0A0R2GUF0-F1-model_v4_TED01","TED novel fold AF-A0A0R2GUF0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A148604","Limosilactobacillus ingluviei"],["NCBITaxon%3A1423760","Limosilactobacillus ingluviei DSM 15946"],["NCBITaxon%3A1203076","Limosilactobacillus ingluviei str. Autruche 4"]]},{"id":"NCBITaxon:1506","l":"Clostridium sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A3D5KI35-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D5KI35-F1-model_v4_TED01"],["TED%3AAF-A0A316SA98-F1-model_v4_TED01","TED novel fold AF-A0A316SA98-F1-model_v4_TED01"],["TED%3AAF-A0A3B9UYE3-F1-model_v4_TED01","TED novel fold AF-A0A3B9UYE3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1506","Clostridium sp."]]},{"id":"NCBITaxon:1509431","l":"Candidatus Magnetomorum sp. HK-1","na":3,"nb":1,"a":[["TED%3AAF-A0A0M9EAF7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0M9EAF7-F1-model_v4_TED02"],["TED%3AAF-A0A0M9E7D0-F1-model_v4_TED02","TED novel fold AF-A0A0M9E7D0-F1-model_v4_TED02"],["TED%3AAF-A0A0M9E7N0-F1-model_v4_TED02","TED novel fold AF-A0A0M9E7N0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1509431","Candidatus Magnetomorum sp. HK-1"]]},{"id":"NCBITaxon:1520823","l":"Lachnospiraceae bacterium NE2001","na":3,"nb":1,"a":[["TED%3AAF-A0A1H9FYV6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H9FYV6-F1-model_v4_TED02"],["TED%3AAF-A0A1H9F501-F1-model_v4_TED02","TED novel fold AF-A0A1H9F501-F1-model_v4_TED02"],["TED%3AAF-A0A1H9LDC3-F1-model_v4_TED01","TED novel fold AF-A0A1H9LDC3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1520823","Lachnospiraceae bacterium NE2001"]]},{"id":"NCBITaxon:1534","l":"Clostridium kluyveri","na":1,"nb":3,"a":[["TED%3AAF-A0A1L5FEG9-F1-model_v4_TED01","TED novel fold AF-A0A1L5FEG9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1534","Clostridium kluyveri"],["NCBITaxon%3A431943","Clostridium kluyveri DSM 555"],["NCBITaxon%3A583346","Clostridium kluyveri NBRC 12016"]]},{"id":"NCBITaxon:1537994","l":"Alteromonas sp. (strain LOR)","na":3,"nb":1,"a":[["Pfam%3APF08531","Alpha-L-rhamnosidase N-terminal domain"],["Pfam%3APF05592","Bacterial alpha-L-rhamnosidase concanavalin-like domain"],["Pfam%3APF15892","BNR repeat-containing family member"]],"b":[["NCBITaxon%3A1537994","Alteromonas sp. LOR"]]},{"id":"NCBITaxon:1552123","l":"Listeria booriae","na":3,"nb":1,"a":[["TED%3AAF-A0A7X0TLR3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X0TLR3-F1-model_v4_TED01"],["TED%3AAF-A0A841XX79-F1-model_v4_TED03","TED novel fold AF-A0A841XX79-F1-model_v4_TED03"],["TED%3AAF-A0A842AXH7-F1-model_v4_TED01","TED novel fold AF-A0A842AXH7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1552123","Listeria booriae"]]},{"id":"NCBITaxon:1560006","l":"Silvibacterium dinghuense","na":3,"nb":1,"a":[["TED%3AAF-A0A4Q1SDA6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A4Q1SDA6-F1-model_v4_TED04"],["TED%3AAF-A0A4Q1SDV9-F1-model_v4_TED03","TED novel fold AF-A0A4Q1SDV9-F1-model_v4_TED03"],["TED%3AAF-A0A4Q1SJV1-F1-model_v4_TED02","TED novel fold AF-A0A4Q1SJV1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1560006","Silvibacterium dinghuense"]]},{"id":"NCBITaxon:157072","l":"Aphanomyces invadans","na":3,"nb":1,"a":[["TED%3AAF-A0A3R6WHR1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R6WHR1-F1-model_v4_TED01"],["TED%3AAF-A0A024TYB0-F1-model_v4_TED03","TED novel fold AF-A0A024TYB0-F1-model_v4_TED03"],["TED%3AAF-A0A024U7U8-F1-model_v4_TED02","TED novel fold AF-A0A024U7U8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A157072","Aphanomyces invadans"]]},{"id":"NCBITaxon:1617433","l":"Candidatus Hinthialibacteria bacterium OLB16","na":3,"nb":1,"a":[["TED%3AAF-A0A136MB65-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A136MB65-F1-model_v4_TED01"],["TED%3AAF-A0A136MHY2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A136MHY2-F1-model_v4_TED01"],["TED%3AAF-A0A136MTX9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A136MTX9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1617433","Candidatus Hinthialibacteria bacterium OLB16"]]},{"id":"NCBITaxon:161879","l":"Corynebacterium kroppenstedtii","na":1,"nb":3,"a":[["TED%3AAF-A0A2N6TDE9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N6TDE9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A161879","Corynebacterium kroppenstedtii"],["NCBITaxon%3A645127","Corynebacterium kroppenstedtii DSM 44385"],["NCBITaxon%3A2736648","Corynebacterium kroppenstedtii subsp. demodicis"]]},{"id":"NCBITaxon:1618960","l":"Parcubacteria group bacterium GW2011 GWF2 38 76","na":3,"nb":1,"a":[["TED%3AAF-A0A0G0NWX6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G0NWX6-F1-model_v4_TED01"],["TED%3AAF-A0A0G0N710-F1-model_v4_TED01","TED novel fold AF-A0A0G0N710-F1-model_v4_TED01"],["TED%3AAF-A0A0G0NYU7-F1-model_v4_TED03","TED novel fold AF-A0A0G0NYU7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1618960","Parcubacteria group bacterium GW2011_GWF2_38_76"]]},{"id":"NCBITaxon:1622","l":"Ligilactobacillus murinus","na":1,"nb":3,"a":[["TED%3AAF-A0A4S2E8S9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4S2E8S9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1622","Ligilactobacillus murinus"],["NCBITaxon%3A1235801","Ligilactobacillus murinus ASF361"],["NCBITaxon%3A1423772","Ligilactobacillus murinus DSM 20452 = NBRC 14221"]]},{"id":"NCBITaxon:164328","l":"Phytophthora ramorum","na":3,"nb":1,"a":[["TED%3AAF-H3GJD6-F1-model_v4_TED01","TED novel fold AF-H3GJD6-F1-model_v4_TED01"],["TED%3AAF-H3GUW9-F1-model_v4_TED01","TED novel fold AF-H3GUW9-F1-model_v4_TED01"],["TED%3AAF-H3GWV4-F1-model_v4_TED01","TED novel fold AF-H3GWV4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A164328","Phytophthora ramorum"]]},{"id":"NCBITaxon:1660156","l":"bacterium SCN 62-11","na":3,"nb":1,"a":[["TED%3AAF-A0A1E4EMS3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1E4EMS3-F1-model_v4_TED03"],["TED%3AAF-A0A1E4FA37-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E4FA37-F1-model_v4_TED01"],["TED%3AAF-A0A1E4FS61-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1E4FS61-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1660156","bacterium SCN 62-11"]]},{"id":"NCBITaxon:167371","l":"Phellinidium pouzarii","na":3,"nb":1,"a":[["TED%3AAF-A0A4S4L103-F1-model_v4_TED02","TED novel fold AF-A0A4S4L103-F1-model_v4_TED02"],["TED%3AAF-A0A4S4L7F3-F1-model_v4_TED01","TED novel fold AF-A0A4S4L7F3-F1-model_v4_TED01"],["TED%3AAF-A0A4S4LHK8-F1-model_v4_TED01","TED novel fold AF-A0A4S4LHK8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A167371","Phellinidium pouzarii"]]},{"id":"NCBITaxon:168471","l":"Laribacter hongkongensis","na":1,"nb":3,"a":[["TED%3AAF-A0A248LK09-F1-model_v4_TED01","TED novel fold AF-A0A248LK09-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A168471","Laribacter hongkongensis"],["NCBITaxon%3A1122157","Laribacter hongkongensis DSM 14985"],["NCBITaxon%3A557598","Laribacter hongkongensis HLHK9"]]},{"id":"NCBITaxon:1690","l":"Bifidobacterium pseudolongum subsp. globosum","na":1,"nb":3,"a":[["TED%3AAF-A0A4Q5B3M5-F1-model_v4_TED01","TED novel fold AF-A0A4Q5B3M5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1694","Bifidobacterium pseudolongum"],["NCBITaxon%3A1690","Bifidobacterium pseudolongum subsp. globosum"],["NCBITaxon%3A1410605","Bifidobacterium pseudolongum subsp. globosum DSM 20092"]]},{"id":"NCBITaxon:169430","l":"Paraburkholderia hospita","na":1,"nb":3,"a":[["TED%3AAF-A0A244DYB0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A244DYB0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A292","Burkholderia cepacia"],["NCBITaxon%3A169430","Paraburkholderia hospita"],["NCBITaxon%3A1171375","Paraburkholderia hospita BS001"]]},{"id":"NCBITaxon:1703410","l":"Phycisphaerae bacterium SM1 79","na":3,"nb":1,"a":[["TED%3AAF-A0A0S8KRY8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S8KRY8-F1-model_v4_TED01"],["TED%3AAF-A0A0S8KIV3-F1-model_v4_TED04","TED novel fold AF-A0A0S8KIV3-F1-model_v4_TED04"],["TED%3AAF-A0A0S8KNG4-F1-model_v4_TED04","TED novel fold AF-A0A0S8KNG4-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1703410","Phycisphaerae bacterium SM1_79"]]},{"id":"NCBITaxon:1712","l":"Cellulomonas gelida","na":1,"nb":3,"a":[["TED%3AAF-A0A4Y3KKM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y3KKM3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1712","Cellulomonas gelida"],["NCBITaxon%3A475662","Halomonas beimenensis"],["NCBITaxon%3A454151","Luteolibacter algae"]]},{"id":"NCBITaxon:171674","l":"Inquilinus limosus","na":1,"nb":3,"a":[["TED%3AAF-A0A211ZKE4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A211ZKE4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A171674","Inquilinus limosus"],["NCBITaxon%3A1122125","Inquilinus limosus DSM 16000"],["NCBITaxon%3A1398085","Inquilinus limosus MP06"]]},{"id":"NCBITaxon:172671","l":"Pinguiococcus pyrenoidosus","na":3,"nb":1,"a":[["TED%3AAF-A0A7R9U927-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7R9U927-F1-model_v4_TED01"],["TED%3AAF-A0A7R9U4U2-F1-model_v4_TED01","TED novel fold AF-A0A7R9U4U2-F1-model_v4_TED01"],["TED%3AAF-A0A7R9YBD8-F1-model_v4_TED01","TED novel fold AF-A0A7R9YBD8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A172671","Pinguiococcus pyrenoidosus"]]},{"id":"NCBITaxon:1727","l":"Corynebacterium variabile","na":1,"nb":3,"a":[["TED%3AAF-A0A120N518-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A120N518-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1665","Arthrobacter globiformis"],["NCBITaxon%3A1727","Corynebacterium variabile"],["NCBITaxon%3A858619","Corynebacterium variabile DSM 44702"]]},{"id":"NCBITaxon:179636","l":"Alicycliphilus denitrificans","na":1,"nb":3,"a":[["TED%3AAF-A0A858ZP78-F1-model_v4_TED01","TED novel fold AF-A0A858ZP78-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A179636","Alicycliphilus denitrificans"],["NCBITaxon%3A596153","Alicycliphilus denitrificans BC"],["NCBITaxon%3A596154","Alicycliphilus denitrificans K601"]]},{"id":"NCBITaxon:1797346","l":"Bacteroidetes bacterium GWF2 40 13","na":3,"nb":1,"a":[["TED%3AAF-A0A1F3JPW9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F3JPW9-F1-model_v4_TED01"],["TED%3AAF-A0A1F3JPR4-F1-model_v4_TED02","TED novel fold AF-A0A1F3JPR4-F1-model_v4_TED02"],["TED%3AAF-A0A1F3JRR7-F1-model_v4_TED02","TED novel fold AF-A0A1F3JRR7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797346","Bacteroidetes bacterium GWF2_40_13"]]},{"id":"NCBITaxon:1797395","l":"Bdellovibrionales bacterium RIFOXYC1 FULL 37 79","na":3,"nb":1,"a":[["TED%3AAF-A0A1F3VGU5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F3VGU5-F1-model_v4_TED01"],["TED%3AAF-A0A1F3VHT0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1F3VHT0-F1-model_v4_TED03"],["TED%3AAF-A0A1F3VD82-F1-model_v4_TED01","TED novel fold AF-A0A1F3VD82-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797395","Bdellovibrionales bacterium RIFOXYC1_FULL_37_79"]]},{"id":"NCBITaxon:179993","l":"Fusarium langsethiae","na":3,"nb":1,"a":[["TED%3AAF-A0A0N0DC99-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0N0DC99-F1-model_v4_TED01"],["TED%3AAF-A0A0N0DHX6-F1-model_v4_TED03","TED novel fold AF-A0A0N0DHX6-F1-model_v4_TED03"],["TED%3AAF-A0A0N1J303-F1-model_v4_TED02","TED novel fold AF-A0A0N1J303-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A179993","Fusarium langsethiae"]]},{"id":"NCBITaxon:1801619","l":"Collimonas sp. (strain OK412)","na":3,"nb":1,"a":[["Pfam%3APF27055","BilA ubiquitin-like domain 2"],["Pfam%3APF24702","Bacterial E2-like ubiquitin protein BilB"],["Pfam%3APF27312","BilD N-terminal domain"]],"b":[["NCBITaxon%3A1801619","Collimonas sp. OK412"]]},{"id":"NCBITaxon:1801952","l":"Planctomycetes bacterium GWC2 45 44","na":3,"nb":1,"a":[["TED%3AAF-A0A1G2X9S1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G2X9S1-F1-model_v4_TED01"],["TED%3AAF-A0A1G2XHM0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1G2XHM0-F1-model_v4_TED03"],["TED%3AAF-A0A1G2X9X7-F1-model_v4_TED02","TED novel fold AF-A0A1G2X9X7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1801952","Planctomycetes bacterium GWC2_45_44"]]},{"id":"NCBITaxon:1801971","l":"Planctomycetes bacterium RBG 16 64 12","na":3,"nb":1,"a":[["TED%3AAF-A0A1G3AF33-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1G3AF33-F1-model_v4_TED03"],["TED%3AAF-A0A1G3AK99-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G3AK99-F1-model_v4_TED02"],["TED%3AAF-A0A1G3AR13-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G3AR13-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801971","Planctomycetes bacterium RBG_16_64_12"]]},{"id":"NCBITaxon:180227","l":"Paramoeba aestuarina","na":3,"nb":1,"a":[["TED%3AAF-A0A7S4NTH0-F1-model_v4_TED01","TED novel fold AF-A0A7S4NTH0-F1-model_v4_TED01"],["TED%3AAF-A0A7S4P3P8-F1-model_v4_TED01","TED novel fold AF-A0A7S4P3P8-F1-model_v4_TED01"],["TED%3AAF-A0A7S4PJF2-F1-model_v4_TED02","TED novel fold AF-A0A7S4PJF2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A180227","Paramoeba aestuarina"]]},{"id":"NCBITaxon:1803814","l":"Theionarchaea archaeon (strain DG-70-1)","na":3,"nb":1,"a":[["TED%3AAF-A0A151ERH4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A151ERH4-F1-model_v4_TED01"],["TED%3AAF-A0A151EY16-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A151EY16-F1-model_v4_TED01"],["TED%3AAF-A0A151F5B7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A151F5B7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1803814","Theionarchaea archaeon DG-70-1"]]},{"id":"NCBITaxon:1831","l":"","na":3,"nb":1,"a":[["Pfam%3APF14525","AraC-binding-like domain"],["Pfam%3APF01613","Flavin reductase like domain"],["TED%3AAF-A0A7X7SF64-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X7SF64-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1831","Rhodococcus sp. (in: high G+C Gram-positive bacteria)"]]},{"id":"NCBITaxon:1834193","l":"Enterococcus sp. 9E7 DIV0242","na":3,"nb":1,"a":[["TED%3AAF-A0A242JUV6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A242JUV6-F1-model_v4_TED01"],["TED%3AAF-A0A242K8V1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A242K8V1-F1-model_v4_TED01"],["TED%3AAF-A0A242KEE4-F1-model_v4_TED04","TED novel fold AF-A0A242KEE4-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1834193","Candidatus Enterococcus clewellii"]]},{"id":"NCBITaxon:183478","l":"Stemphylium lycopersici","na":3,"nb":1,"a":[["TED%3AAF-A0A364MT81-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A364MT81-F1-model_v4_TED02"],["TED%3AAF-A0A364N992-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A364N992-F1-model_v4_TED01"],["TED%3AAF-A0A364N922-F1-model_v4_TED04","TED novel fold AF-A0A364N922-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A183478","Stemphylium lycopersici"]]},{"id":"NCBITaxon:1852","l":"Saccharomonospora viridis","na":1,"nb":3,"a":[["TED%3AAF-A0A837DC99-F1-model_v4_TED01","TED novel fold AF-A0A837DC99-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A40988","Saccharomonospora azurea"],["NCBITaxon%3A1852","Saccharomonospora viridis"],["NCBITaxon%3A471857","Saccharomonospora viridis DSM 43017"]]},{"id":"NCBITaxon:1856405","l":"Alteromonas lipolytica","na":3,"nb":1,"a":[["TED%3AAF-A0A1E8FFS9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E8FFS9-F1-model_v4_TED01"],["TED%3AAF-A0A1E8FJE8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E8FJE8-F1-model_v4_TED01"],["TED%3AAF-A0A1E8FD90-F1-model_v4_TED01","TED novel fold AF-A0A1E8FD90-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1856405","Marisediminitalea lipolytica"]]},{"id":"NCBITaxon:1866936","l":"bacterium ADurb.Bin243","na":3,"nb":1,"a":[["TED%3AAF-A0A1V5UDM0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5UDM0-F1-model_v4_TED01"],["TED%3AAF-A0A1V5UJ50-F1-model_v4_TED01","TED novel fold AF-A0A1V5UJ50-F1-model_v4_TED01"],["TED%3AAF-A0A1V5UQT9-F1-model_v4_TED02","TED novel fold AF-A0A1V5UQT9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1866936","bacterium ADurb.Bin243"]]},{"id":"NCBITaxon:1869","l":"Actinoplanes utahensis","na":1,"nb":3,"a":[["TED%3AAF-A0A0A6U9K1-F1-model_v4_TED02","TED novel fold AF-A0A0A6U9K1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1871","Actinoplanes sp."],["NCBITaxon%3A1869","Actinoplanes utahensis"],["NCBITaxon%3A768533","Chelativorans composti"]]},{"id":"NCBITaxon:1872578","l":"Aquabacterium sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A521ZRM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521ZRM4-F1-model_v4_TED01"],["TED%3AAF-A0A521ZL87-F1-model_v4_TED04","TED novel fold AF-A0A521ZL87-F1-model_v4_TED04"],["TED%3AAF-A0A5C8BIL8-F1-model_v4_TED02","TED novel fold AF-A0A5C8BIL8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1872578","Aquabacterium sp."]]},{"id":"NCBITaxon:1874","l":"Micromonospora chalcea","na":1,"nb":3,"a":[["TED%3AAF-A0A365UW89-F1-model_v4_TED01","TED novel fold AF-A0A365UW89-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1874","Micromonospora chalcea"],["NCBITaxon%3A2008351","Micromonospora chalcea subsp. izumensis"],["NCBITaxon%3A1876","Micromonospora sp."]]},{"id":"NCBITaxon:1877","l":"Micromonospora echinospora","na":1,"nb":3,"a":[["Pfam%3APF07091","Ribosomal RNA methyltransferase (FmrO)"]],"b":[["NCBITaxon%3A1877","Micromonospora echinospora"],["NCBITaxon%3A704114","Micromonospora echinospora subsp. challisensis"],["NCBITaxon%3A145854","Micromonospora pallida"]]},{"id":"NCBITaxon:1882831","l":"Verrucomicrobium sp. GAS474","na":3,"nb":1,"a":[["TED%3AAF-A0A1H2GE34-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H2GE34-F1-model_v4_TED01"],["TED%3AAF-A0A1H2GVJ7-F1-model_v4_TED04","TED novel fold AF-A0A1H2GVJ7-F1-model_v4_TED04"],["TED%3AAF-A0A1H2HH15-F1-model_v4_TED02","TED novel fold AF-A0A1H2HH15-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1882831","Verrucomicrobium sp. GAS474"]]},{"id":"NCBITaxon:1885","l":"Streptomyces actuosus","na":1,"nb":3,"a":[["Pfam%3APF17258","Family of unknown function (DUF5324)"]],"b":[["NCBITaxon%3A1280","Staphylococcus aureus"],["NCBITaxon%3A1885","Streptomyces actuosus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:188932","l":"Pedobacter cryoconitis","na":3,"nb":1,"a":[["TED%3AAF-A0A127VAP9-F1-model_v4_TED01","TED novel fold AF-A0A127VAP9-F1-model_v4_TED01"],["TED%3AAF-A0A127VGI1-F1-model_v4_TED01","TED novel fold AF-A0A127VGI1-F1-model_v4_TED01"],["TED%3AAF-A0A7W8YYF4-F1-model_v4_TED01","TED novel fold AF-A0A7W8YYF4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A188932","Pedobacter cryoconitis"]]},{"id":"NCBITaxon:1889775","l":"Moraxellaceae bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A3D4UCB7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D4UCB7-F1-model_v4_TED02"],["TED%3AAF-A0A3D4UDA0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D4UDA0-F1-model_v4_TED02"],["TED%3AAF-A0A4Q6EH99-F1-model_v4_TED01","TED novel fold AF-A0A4Q6EH99-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1889775","Moraxellaceae bacterium"]]},{"id":"NCBITaxon:1890364","l":"Planoprotostelium fungivorum","na":3,"nb":1,"a":[["TED%3AAF-A0A2P6MM50-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P6MM50-F1-model_v4_TED01"],["TED%3AAF-A0A2P6NL93-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P6NL93-F1-model_v4_TED01"],["TED%3AAF-A0A2P6NDP0-F1-model_v4_TED01","TED novel fold AF-A0A2P6NDP0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1890364","Planoprotostelium fungivorum"]]},{"id":"NCBITaxon:1891229","l":"Pseudomonadales bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A2D9TPX5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9TPX5-F1-model_v4_TED01"],["TED%3AAF-A0A2E3CXD3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E3CXD3-F1-model_v4_TED01"],["TED%3AAF-A0A7Y3G4Q2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y3G4Q2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1891229","Pseudomonadales bacterium"]]},{"id":"NCBITaxon:1895795","l":"Myxococcales bacterium 68-20","na":3,"nb":1,"a":[["TED%3AAF-A0A1M3N7A3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M3N7A3-F1-model_v4_TED01"],["TED%3AAF-A0A1M3NGT7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M3NGT7-F1-model_v4_TED01"],["TED%3AAF-A0A1M3NC51-F1-model_v4_TED01","TED novel fold AF-A0A1M3NC51-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895795","Myxococcales bacterium 68-20"]]},{"id":"NCBITaxon:1898111","l":"Cryomorphaceae bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A353FDE2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A353FDE2-F1-model_v4_TED02"],["TED%3AAF-A0A3B9P638-F1-model_v4_TED01","TED novel fold AF-A0A3B9P638-F1-model_v4_TED01"],["TED%3AAF-A0A8A7WP39-F1-model_v4_TED02","TED novel fold AF-A0A8A7WP39-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1898111","Cryomorphaceae bacterium"]]},{"id":"NCBITaxon:190655","l":"Legionella busanensis","na":3,"nb":1,"a":[["TED%3AAF-A0A378JRR1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A378JRR1-F1-model_v4_TED01"],["TED%3AAF-A0A378JH21-F1-model_v4_TED02","TED novel fold AF-A0A378JH21-F1-model_v4_TED02"],["TED%3AAF-A0A378JIY5-F1-model_v4_TED01","TED novel fold AF-A0A378JIY5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A190655","Legionella busanensis"]]},{"id":"NCBITaxon:191292","l":"Rhodococcus aetherivorans","na":1,"nb":3,"a":[["TED%3AAF-N1LZY7-F1-model_v4_TED01","TED highly-symmetric fold AF-N1LZY7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A191292","Rhodococcus aetherivorans"],["NCBITaxon%3A1036179","Rhodococcus aetherivorans I24"],["NCBITaxon%3A194249","uncultured Rhodococcus sp."]]},{"id":"NCBITaxon:1916082","l":"Alteromonadaceae bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A2E5MKL5-F1-model_v4_TED03","TED novel fold AF-A0A2E5MKL5-F1-model_v4_TED03"],["TED%3AAF-A0A7Y6ZTD4-F1-model_v4_TED02","TED novel fold AF-A0A7Y6ZTD4-F1-model_v4_TED02"],["TED%3AAF-A0A7Y6ZTV9-F1-model_v4_TED01","TED novel fold AF-A0A7Y6ZTV9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1916082","Alteromonadaceae bacterium"]]},{"id":"NCBITaxon:1917697","l":"Candidatus Saccharimonas sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A660M0I9-F1-model_v4_TED02","TED novel fold AF-A0A660M0I9-F1-model_v4_TED02"],["TED%3AAF-A0A660M4I9-F1-model_v4_TED01","TED novel fold AF-A0A660M4I9-F1-model_v4_TED01"],["TED%3AAF-A0A660M7X9-F1-model_v4_TED01","TED novel fold AF-A0A660M7X9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1917697","Saccharimonas sp. (SeqCode)"]]},{"id":"NCBITaxon:1920","l":"Streptomyces nigrescens","na":1,"nb":3,"a":[["Pfam%3APF03995","Peptidase inhibitor family I36"]],"b":[["NCBITaxon%3A1128671","Microvirga arabica"],["NCBITaxon%3A249582","Streptomyces libani subsp. rufus"],["NCBITaxon%3A1920","Streptomyces nigrescens"]]},{"id":"NCBITaxon:192066","l":"Neisseria sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A496JVX2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A496JVX2-F1-model_v4_TED03"],["TED%3AAF-A0A496L0X3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A496L0X3-F1-model_v4_TED01"],["TED%3AAF-A0A496JRN7-F1-model_v4_TED02","TED novel fold AF-A0A496JRN7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A192066","Neisseria sp."]]},{"id":"NCBITaxon:192149","l":"Muricauda sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A2E1AQS9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E1AQS9-F1-model_v4_TED02"],["TED%3AAF-A0A358G5R9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A358G5R9-F1-model_v4_TED01"],["TED%3AAF-A0A2E1AXQ4-F1-model_v4_TED02","TED novel fold AF-A0A2E1AXQ4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A192149","Allomuricauda sp."]]},{"id":"NCBITaxon:1927959","l":"Dyella choica","na":3,"nb":1,"a":[["TED%3AAF-A0A3S0Q5X2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S0Q5X2-F1-model_v4_TED01"],["TED%3AAF-A0A432LZT3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A432LZT3-F1-model_v4_TED01"],["TED%3AAF-A0A432MAV7-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A432MAV7-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A1927959","Dyella choica"]]},{"id":"NCBITaxon:1934244","l":"Thiotrichaceae bacterium IS1","na":3,"nb":1,"a":[["TED%3AAF-A0A1Y1Q2V2-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1Y1Q2V2-F1-model_v4_TED04"],["TED%3AAF-A0A1Y1Q4L0-F1-model_v4_TED01","TED novel fold AF-A0A1Y1Q4L0-F1-model_v4_TED01"],["TED%3AAF-A0A1Y1Q4Z4-F1-model_v4_TED01","TED novel fold AF-A0A1Y1Q4Z4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1934244","Thiotrichaceae bacterium IS1"]]},{"id":"NCBITaxon:1934248","l":"Desulfobacteraceae bacterium IS3","na":3,"nb":1,"a":[["TED%3AAF-A0A1W9MUI9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W9MUI9-F1-model_v4_TED01"],["TED%3AAF-A0A1W9MY42-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1W9MY42-F1-model_v4_TED02"],["TED%3AAF-A0A1W9LQ90-F1-model_v4_TED03","TED novel fold AF-A0A1W9LQ90-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1934248","Desulfobacteraceae bacterium IS3"]]},{"id":"NCBITaxon:193567","l":"Streptococcus pyogenes serotype M3 (strain SSI-1)","na":3,"nb":1,"a":[["Pfam%3APF13585","CHU_C Type IX secretion signal domain"],["Pfam%3APF06280","Fn3-like domain"],["PROSITE%3APS00481","Thiol-activated cytolysins signature"]],"b":[["NCBITaxon%3A193567","Streptococcus pyogenes SSI-1"]]},{"id":"NCBITaxon:1940289","l":"Phaeodactylibacter sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A7C3CFH9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C3CFH9-F1-model_v4_TED01"],["TED%3AAF-A0A7C3G5E4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C3G5E4-F1-model_v4_TED01"],["TED%3AAF-A0A7C3G5R3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C3G5R3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1940289","Phaeodactylibacter sp."]]},{"id":"NCBITaxon:1945521","l":"Psychrobacter piechaudii","na":1,"nb":3,"a":[["TED%3AAF-A0A1R4GEU4-F1-model_v4_TED01","TED novel fold AF-A0A1R4GEU4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A90241","Lwoffella lincolnii"],["NCBITaxon%3A1945521","Psychrobacter piechaudii"],["NCBITaxon%3A56811","Psychrobacter sp."]]},{"id":"NCBITaxon:1950","l":"Streptomyces peucetius","na":1,"nb":3,"a":[["Pfam%3APF13732","ATP-binding protein DrrA1-3-like, C-terminal domain"]],"b":[["NCBITaxon%3A1950","Streptomyces peucetius"],["NCBITaxon%3A55158","Streptomyces peucetius subsp. caesius"],["NCBITaxon%3A316280","Streptomyces peucetius subsp. caesius ATCC 27952"]]},{"id":"NCBITaxon:1956","l":"Streptomyces diastaticus","na":1,"nb":3,"a":[["TED%3AAF-A0A7K3Q596-F1-model_v4_TED01","TED novel fold AF-A0A7K3Q596-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A285564","Streptomyces ardesiacus"],["NCBITaxon%3A1956","Streptomyces diastaticus"],["NCBITaxon%3A68040","Streptomyces diastaticus subsp. diastaticus"]]},{"id":"NCBITaxon:1965588","l":"Anaerofilum sp. An201","na":3,"nb":1,"a":[["TED%3AAF-A0A1Y4H1V6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y4H1V6-F1-model_v4_TED01"],["TED%3AAF-A0A1Y4H5V0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y4H5V0-F1-model_v4_TED01"],["TED%3AAF-A0A1Y4H6S0-F1-model_v4_TED02","TED novel fold AF-A0A1Y4H6S0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1965588","Anaerofilum sp. An201"]]},{"id":"NCBITaxon:1970199","l":"Sorangiineae bacterium NIC37A 2","na":3,"nb":1,"a":[["TED%3AAF-A0A1W9QHW9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W9QHW9-F1-model_v4_TED01"],["TED%3AAF-A0A1W9Q7E2-F1-model_v4_TED02","TED novel fold AF-A0A1W9Q7E2-F1-model_v4_TED02"],["TED%3AAF-A0A1W9QHC1-F1-model_v4_TED04","TED novel fold AF-A0A1W9QHC1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1970199","Sorangiineae bacterium NIC37A_2"]]},{"id":"NCBITaxon:1973475","l":"Nostoc sp. NIES-2111","na":3,"nb":1,"a":[["TED%3AAF-A0A1Z4IJ26-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z4IJ26-F1-model_v4_TED01"],["TED%3AAF-A0A1Z4I7D1-F1-model_v4_TED01","TED novel fold AF-A0A1Z4I7D1-F1-model_v4_TED01"],["TED%3AAF-A0A1Z4IJI1-F1-model_v4_TED01","TED novel fold AF-A0A1Z4IJI1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973475","Nostoc sp. NIES-2111"]]},{"id":"NCBITaxon:1975527","l":"Bdellovibrio sp. CG11 big fil rev 8 21 14 0 20 39 38","na":3,"nb":1,"a":[["TED%3AAF-A0A2H0QEJ6-F1-model_v4_TED02","TED novel fold AF-A0A2H0QEJ6-F1-model_v4_TED02"],["TED%3AAF-A0A2H0QG06-F1-model_v4_TED02","TED novel fold AF-A0A2H0QG06-F1-model_v4_TED02"],["TED%3AAF-A0A2H0QP34-F1-model_v4_TED02","TED novel fold AF-A0A2H0QP34-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1975527","Bdellovibrio sp. CG11_big_fil_rev_8_21_14_0_20_39_38"]]},{"id":"NCBITaxon:1977054","l":"Leeuwenhoekiella sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A2E5GSB9-F1-model_v4_TED01","TED novel fold AF-A0A2E5GSB9-F1-model_v4_TED01"],["TED%3AAF-A0A3D4EPK5-F1-model_v4_TED01","TED novel fold AF-A0A3D4EPK5-F1-model_v4_TED01"],["TED%3AAF-A0A3D4EPM4-F1-model_v4_TED02","TED novel fold AF-A0A3D4EPM4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1977054","Leeuwenhoekiella sp."]]},{"id":"NCBITaxon:1977903","l":"Propionibacterium sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A7X9L725-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X9L725-F1-model_v4_TED01"],["TED%3AAF-A0A7X6NWY2-F1-model_v4_TED01","TED novel fold AF-A0A7X6NWY2-F1-model_v4_TED01"],["TED%3AAF-A0A7X9QD40-F1-model_v4_TED01","TED novel fold AF-A0A7X9QD40-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1977903","Propionibacterium sp."]]},{"id":"NCBITaxon:198804","l":"Buchnera aphidicola subsp. Schizaphis graminum (strain Sg)","na":3,"nb":1,"a":[["Pfam%3APF09849","Uncharacterized protein conserved in bacteria (DUF2076)"],["Pfam%3APF09976","Tetratricopeptide repeat-like domain"],["Pfam%3APF13371","Tetratricopeptide repeat"]],"b":[["NCBITaxon%3A198804","Buchnera aphidicola str. Sg (Schizaphis graminum)"]]},{"id":"NCBITaxon:2004705","l":"Pyrobaculum sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A6B2CYC8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6B2CYC8-F1-model_v4_TED01"],["TED%3AAF-A0A831PF94-F1-model_v4_TED01","TED novel fold AF-A0A831PF94-F1-model_v4_TED01"],["TED%3AAF-A0A831YHZ8-F1-model_v4_TED03","TED novel fold AF-A0A831YHZ8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2004705","Pyrobaculum sp."]]},{"id":"NCBITaxon:2013741","l":"Deltaproteobacteria bacterium HGW-Deltaproteobacteria-14","na":3,"nb":1,"a":[["TED%3AAF-A0A2N2JHU5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N2JHU5-F1-model_v4_TED02"],["TED%3AAF-A0A2N2JK01-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N2JK01-F1-model_v4_TED02"],["TED%3AAF-A0A2N2JJI3-F1-model_v4_TED01","TED novel fold AF-A0A2N2JJI3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013741","Deltaproteobacteria bacterium HGW-Deltaproteobacteria-14"]]},{"id":"NCBITaxon:2013837","l":"Spirochaetae bacterium HGW-Spirochaetae-5","na":3,"nb":1,"a":[["TED%3AAF-A0A2N1RMK9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N1RMK9-F1-model_v4_TED02"],["TED%3AAF-A0A2N1RRW6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N1RRW6-F1-model_v4_TED01"],["TED%3AAF-A0A2N1RNH6-F1-model_v4_TED01","TED novel fold AF-A0A2N1RNH6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013837","Spirochaetae bacterium HGW-Spirochaetae-5"]]},{"id":"NCBITaxon:2015799","l":"Hyphomicrobiaceae bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A5C7LPC7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7LPC7-F1-model_v4_TED01"],["TED%3AAF-A0A5C7MAH8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5C7MAH8-F1-model_v4_TED02"],["TED%3AAF-A0A849TN71-F1-model_v4_TED01","TED novel fold AF-A0A849TN71-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2015799","Hyphomicrobiaceae bacterium"]]},{"id":"NCBITaxon:2020871","l":"Vulcanisaeta sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A7C5TCI3-F1-model_v4_TED04","TED novel fold AF-A0A7C5TCI3-F1-model_v4_TED04"],["TED%3AAF-A0A7C5TGH3-F1-model_v4_TED03","TED novel fold AF-A0A7C5TGH3-F1-model_v4_TED03"],["TED%3AAF-A0A7C5XM43-F1-model_v4_TED01","TED novel fold AF-A0A7C5XM43-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2020871","Vulcanisaeta sp."]]},{"id":"NCBITaxon:2021370","l":"Sphingobacteriaceae bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A4Q5SP92-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Q5SP92-F1-model_v4_TED02"],["TED%3AAF-A0A2A3U6E1-F1-model_v4_TED02","TED novel fold AF-A0A2A3U6E1-F1-model_v4_TED02"],["TED%3AAF-A0A4V1SZT0-F1-model_v4_TED01","TED novel fold AF-A0A4V1SZT0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2021370","Sphingobacteriaceae bacterium"]]},{"id":"NCBITaxon:2021405","l":"Variovorax sp. B4","na":3,"nb":1,"a":[["TED%3AAF-A0A2J7VAY3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J7VAY3-F1-model_v4_TED01"],["TED%3AAF-A0A2J7VHP9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J7VHP9-F1-model_v4_TED01"],["TED%3AAF-A0A2J7VJ59-F1-model_v4_TED01","TED novel fold AF-A0A2J7VJ59-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2021405","Variovorax sp. B4"]]},{"id":"NCBITaxon:2026762","l":"Micrococcales bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A2E0W944-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0W944-F1-model_v4_TED01"],["TED%3AAF-A0A2G6JW52-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G6JW52-F1-model_v4_TED01"],["TED%3AAF-A0A2E0WDK7-F1-model_v4_TED01","TED novel fold AF-A0A2E0WDK7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026762","Micrococcales bacterium"]]},{"id":"NCBITaxon:2026769","l":"Nitrospinota bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A351RUP4-F1-model_v4_TED01","TED novel fold AF-A0A351RUP4-F1-model_v4_TED01"],["TED%3AAF-A0A832U9I9-F1-model_v4_TED01","TED novel fold AF-A0A832U9I9-F1-model_v4_TED01"],["TED%3AAF-A0A845JWL7-F1-model_v4_TED03","TED novel fold AF-A0A845JWL7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2026769","Nitrospinota bacterium"]]},{"id":"NCBITaxon:2026774","l":"Parcubacteria group bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A315X0E2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A315X0E2-F1-model_v4_TED01"],["TED%3AAF-A0A2D6DPG4-F1-model_v4_TED02","TED novel fold AF-A0A2D6DPG4-F1-model_v4_TED02"],["TED%3AAF-A0A2D6FK48-F1-model_v4_TED02","TED novel fold AF-A0A2D6FK48-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026774","Parcubacteria group bacterium"]]},{"id":"NCBITaxon:2026776","l":"Pelagibacterales bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A2E6DWY1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E6DWY1-F1-model_v4_TED01"],["TED%3AAF-A0A2F0AIM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2F0AIM3-F1-model_v4_TED01"],["TED%3AAF-A0A2E4WGY3-F1-model_v4_TED01","TED novel fold AF-A0A2E4WGY3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026776","Candidatus Pelagibacterales bacterium"]]},{"id":"NCBITaxon:2026888","l":"Thermoleophilia bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A7Y5WZR7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y5WZR7-F1-model_v4_TED01"],["TED%3AAF-A0A7Y6CVK3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y6CVK3-F1-model_v4_TED01"],["TED%3AAF-A0A7Y5WWI2-F1-model_v4_TED03","TED novel fold AF-A0A7Y5WWI2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2026888","Thermoleophilia bacterium"]]},{"id":"NCBITaxon:2030","l":"Kibdelosporangium aridum","na":1,"nb":3,"a":[["TED%3AAF-A0A1W1ZQL0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W1ZQL0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2030","Kibdelosporangium aridum"],["NCBITaxon%3A145995","Kibdelosporangium aridum subsp. aridum"],["NCBITaxon%3A145996","Kibdelosporangium aridum subsp. largum"]]},{"id":"NCBITaxon:203124","l":"Trichodesmium erythraeum IMS101","na":3,"nb":1,"a":[["Pfam%3APF06206","CpeT/CpcT family (DUF1001)"],["Pfam%3APF18460","Heterocyst differentiation regulator C-terminal Hood domain"],["TED%3AAF-Q10WG6-F1-model_v4_TED05","TED highly-symmetric fold AF-Q10WG6-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A203124","Trichodesmium erythraeum IMS101"]]},{"id":"NCBITaxon:2034841","l":"Lentimicrobium sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A847IVW1-F1-model_v4_TED08","TED highly-symmetric fold AF-A0A847IVW1-F1-model_v4_TED08"],["TED%3AAF-A0A847IXU2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A847IXU2-F1-model_v4_TED01"],["TED%3AAF-A0A847IZV2-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A847IZV2-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2034841","Lentimicrobium sp."]]},{"id":"NCBITaxon:2049428","l":"Ignavibacteriales bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A3N5QV19-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N5QV19-F1-model_v4_TED01"],["TED%3AAF-A0A7T9FZU1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7T9FZU1-F1-model_v4_TED02"],["TED%3AAF-A0A3D6BA26-F1-model_v4_TED01","TED novel fold AF-A0A3D6BA26-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2049428","Ignavibacteriales bacterium"]]},{"id":"NCBITaxon:2052147","l":"Caldisericota bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A661X368-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A661X368-F1-model_v4_TED02"],["TED%3AAF-A0A661XDC9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A661XDC9-F1-model_v4_TED02"],["TED%3AAF-A0A661X1M7-F1-model_v4_TED01","TED novel fold AF-A0A661X1M7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052147","Caldisericota bacterium"]]},{"id":"NCBITaxon:2053303","l":"Marinilabiliales bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A2J6HCK7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J6HCK7-F1-model_v4_TED01"],["TED%3AAF-A0A2N5YXJ7-F1-model_v4_TED01","TED novel fold AF-A0A2N5YXJ7-F1-model_v4_TED01"],["TED%3AAF-A0A2N5ZWL4-F1-model_v4_TED03","TED novel fold AF-A0A2N5ZWL4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2053303","Marinilabiliales bacterium"]]},{"id":"NCBITaxon:2053538","l":"Candidatus Competibacteraceae bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A3D2VN95-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D2VN95-F1-model_v4_TED01"],["TED%3AAF-A0A433ID10-F1-model_v4_TED02","TED novel fold AF-A0A433ID10-F1-model_v4_TED02"],["TED%3AAF-A0A433IIV2-F1-model_v4_TED01","TED novel fold AF-A0A433IIV2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053538","Candidatus Competibacteraceae bacterium"]]},{"id":"NCBITaxon:2053582","l":"Neisseriales bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A3D5YR85-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D5YR85-F1-model_v4_TED01"],["TED%3AAF-A0A5C8BT50-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C8BT50-F1-model_v4_TED01"],["TED%3AAF-A0A5C8BPV5-F1-model_v4_TED03","TED novel fold AF-A0A5C8BPV5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2053582","Neisseriales bacterium"]]},{"id":"NCBITaxon:2053624","l":"Synergistaceae bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A3C0QE43-F1-model_v4_TED02","TED novel fold AF-A0A3C0QE43-F1-model_v4_TED02"],["TED%3AAF-A0A7X7DUQ2-F1-model_v4_TED02","TED novel fold AF-A0A7X7DUQ2-F1-model_v4_TED02"],["TED%3AAF-A0A847AA05-F1-model_v4_TED02","TED novel fold AF-A0A847AA05-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053624","Synergistaceae bacterium"]]},{"id":"NCBITaxon:2055766","l":"Cyanobacteria bacterium UBA8543","na":3,"nb":1,"a":[["TED%3AAF-A0A3C0NE74-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3C0NE74-F1-model_v4_TED02"],["TED%3AAF-A0A3C0N4S6-F1-model_v4_TED01","TED novel fold AF-A0A3C0N4S6-F1-model_v4_TED01"],["TED%3AAF-A0A3C0NB52-F1-model_v4_TED01","TED novel fold AF-A0A3C0NB52-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2055766","Cyanobacteria bacterium UBA8543"]]},{"id":"NCBITaxon:2056631","l":"Thermoproteota archaeon","na":3,"nb":1,"a":[["TED%3AAF-A0A370LUU6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A370LUU6-F1-model_v4_TED02"],["TED%3AAF-A0A370LQW0-F1-model_v4_TED01","TED novel fold AF-A0A370LQW0-F1-model_v4_TED01"],["TED%3AAF-A0A7K3ZAV1-F1-model_v4_TED01","TED novel fold AF-A0A7K3ZAV1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2056631","Thermoproteota archaeon"]]},{"id":"NCBITaxon:205917","l":"Dentipellis fragilis","na":3,"nb":1,"a":[["TED%3AAF-A0A4Y9YCY1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y9YCY1-F1-model_v4_TED01"],["TED%3AAF-A0A4Y9YWP5-F1-model_v4_TED02","TED novel fold AF-A0A4Y9YWP5-F1-model_v4_TED02"],["TED%3AAF-A0A4Y9YY98-F1-model_v4_TED02","TED novel fold AF-A0A4Y9YY98-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A205917","Dentipellis fragilis"]]},{"id":"NCBITaxon:2093811","l":"Syntrophomonadaceae bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A7X7A0H8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7X7A0H8-F1-model_v4_TED02"],["TED%3AAF-A0A7X8IKT1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7X8IKT1-F1-model_v4_TED03"],["TED%3AAF-A0A7X8LLW0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X8LLW0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2093811","Syntrophomonadaceae bacterium"]]},{"id":"NCBITaxon:2099670","l":"Candidatus Dojkabacteria bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A832QDE0-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A832QDE0-F1-model_v4_TED05"],["TED%3AAF-A0A5C7JBY6-F1-model_v4_TED04","TED novel fold AF-A0A5C7JBY6-F1-model_v4_TED04"],["TED%3AAF-A0A847ES74-F1-model_v4_TED01","TED novel fold AF-A0A847ES74-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2099670","Candidatus Dojkabacteria bacterium"]]},{"id":"NCBITaxon:2135684","l":"Niastella sp. CF465","na":3,"nb":1,"a":[["TED%3AAF-A0A4R2W5I4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R2W5I4-F1-model_v4_TED01"],["TED%3AAF-A0A4V2TB43-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4V2TB43-F1-model_v4_TED01"],["TED%3AAF-A0A4R2WDU4-F1-model_v4_TED01","TED novel fold AF-A0A4R2WDU4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2135684","Niastella sp. CF465"]]},{"id":"NCBITaxon:215587","l":"Aplanochytrium stocchinoi","na":3,"nb":1,"a":[["TED%3AAF-A0A7S3LQ34-F1-model_v4_TED01","TED novel fold AF-A0A7S3LQ34-F1-model_v4_TED01"],["TED%3AAF-A0A7S3PJ73-F1-model_v4_TED01","TED novel fold AF-A0A7S3PJ73-F1-model_v4_TED01"],["TED%3AAF-A0A7S3V330-F1-model_v4_TED01","TED novel fold AF-A0A7S3V330-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A215587","Aplanochytrium stocchinoi"]]},{"id":"NCBITaxon:216596","l":"Rhizobium johnstonii (strain DSM 114642 / LMG 32736 / 3841)","na":3,"nb":1,"a":[["Pfam%3APF17803","Bacterial cadherin-like domain"],["Pfam%3APF07536","HWE histidine kinase"],["PROSITE%3APS01039","Bacterial extracellular solute-binding proteins, family 3 signature"]],"b":[["NCBITaxon%3A216596","Rhizobium johnstonii 3841"]]},{"id":"NCBITaxon:216778","l":"Stenotrophomonas rhizophila","na":1,"nb":3,"a":[["TED%3AAF-A0A023XYG6-F1-model_v4_TED02","TED novel fold AF-A0A023XYG6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A216778","Stenotrophomonas rhizophila"],["NCBITaxon%3A1255680","Stenotrophomonas rhizophila PCA13"]]},{"id":"NCBITaxon:2169412","l":"Candidatus Angelobacter sp. Gp1-AA117","na":3,"nb":1,"a":[["TED%3AAF-A0A321L6V4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A321L6V4-F1-model_v4_TED01"],["TED%3AAF-A0A321LSL1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A321LSL1-F1-model_v4_TED01"],["TED%3AAF-A0A321LKA5-F1-model_v4_TED01","TED novel fold AF-A0A321LKA5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2169412","Candidatus Angelobacter sp. Gp1-AA117"]]},{"id":"NCBITaxon:2183553","l":"Spirosoma telluris","na":3,"nb":1,"a":[["TED%3AAF-A0A327NEY5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A327NEY5-F1-model_v4_TED01"],["TED%3AAF-A0A327NHH0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A327NHH0-F1-model_v4_TED02"],["TED%3AAF-A0A327NDZ9-F1-model_v4_TED01","TED novel fold AF-A0A327NDZ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2183553","Spirosoma telluris"]]},{"id":"NCBITaxon:2184014","l":"Erysipelotrichia bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A847B4H6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A847B4H6-F1-model_v4_TED01"],["TED%3AAF-A0A847B5R0-F1-model_v4_TED02","TED novel fold AF-A0A847B5R0-F1-model_v4_TED02"],["TED%3AAF-A0A847VSU0-F1-model_v4_TED03","TED novel fold AF-A0A847VSU0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2184014","Erysipelotrichia bacterium"]]},{"id":"NCBITaxon:2201155","l":"Pseudonocardiales bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A7V9BPH1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V9BPH1-F1-model_v4_TED01"],["TED%3AAF-A0A838S3W0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A838S3W0-F1-model_v4_TED01"],["TED%3AAF-A0A2W6C903-F1-model_v4_TED01","TED novel fold AF-A0A2W6C903-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2201155","Pseudonocardiales bacterium"]]},{"id":"NCBITaxon:220378","l":"Nocardiopsis aegyptia","na":1,"nb":3,"a":[["TED%3AAF-A0A7Z0EIT8-F1-model_v4_TED01","TED novel fold AF-A0A7Z0EIT8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A187102","Mycolicibacterium pyrenivorans"],["NCBITaxon%3A1305860","Mycolicibacterium pyrenivorans JCM 15927"],["NCBITaxon%3A220378","Nocardiopsis aegyptia"]]},{"id":"NCBITaxon:2220073","l":"Bdellovibrio sp. NC01","na":3,"nb":1,"a":[["TED%3AAF-A0A514WYU5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A514WYU5-F1-model_v4_TED01"],["TED%3AAF-A0A514WSL4-F1-model_v4_TED01","TED novel fold AF-A0A514WSL4-F1-model_v4_TED01"],["TED%3AAF-A0A514X124-F1-model_v4_TED01","TED novel fold AF-A0A514X124-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2220073","Bdellovibrio sp. NC01"]]},{"id":"NCBITaxon:222523","l":"Bacillus cereus (strain ATCC 10987 / NRS 248)","na":3,"nb":1,"a":[["Pfam%3APF17850","CysA C-terminal regulatory domain"],["Pfam%3APF04204","Homoserine O-succinyltransferase"],["Pfam%3APF09021","HutP"]],"b":[["NCBITaxon%3A222523","Bacillus cereus ATCC 10987"]]},{"id":"NCBITaxon:2231053","l":"Bdellovibrio sp. ZAP7","na":3,"nb":1,"a":[["TED%3AAF-A0A514XHL1-F1-model_v4_TED01","TED novel fold AF-A0A514XHL1-F1-model_v4_TED01"],["TED%3AAF-A0A514XIN8-F1-model_v4_TED01","TED novel fold AF-A0A514XIN8-F1-model_v4_TED01"],["TED%3AAF-A0A514XJC4-F1-model_v4_TED02","TED novel fold AF-A0A514XJC4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2231053","Bdellovibrio sp. ZAP7"]]},{"id":"NCBITaxon:2268124","l":"Candidatus Ozemobacter sibiricus","na":3,"nb":1,"a":[["TED%3AAF-A0A367ZJG5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A367ZJG5-F1-model_v4_TED01"],["TED%3AAF-A0A367ZQB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A367ZQB4-F1-model_v4_TED01"],["TED%3AAF-A0A367ZP10-F1-model_v4_TED01","TED novel fold AF-A0A367ZP10-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2268124","Candidatus Ozemibacter sibiricus"]]},{"id":"NCBITaxon:2268184","l":"Candidatus Fraserbacteria bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A7V5S831-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7V5S831-F1-model_v4_TED02"],["TED%3AAF-A0A7V5VMX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V5VMX4-F1-model_v4_TED01"],["TED%3AAF-A0A7V5S7E4-F1-model_v4_TED02","TED novel fold AF-A0A7V5S7E4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2268184","Candidatus Fraserbacteria bacterium"]]},{"id":"NCBITaxon:2268197","l":"Nitrososphaerales archaeon","na":3,"nb":1,"a":[["TED%3AAF-A0A7J2YER0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J2YER0-F1-model_v4_TED01"],["TED%3AAF-A0A7J3A8U8-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A7J3A8U8-F1-model_v4_TED05"],["TED%3AAF-A0A7C3TK66-F1-model_v4_TED02","TED novel fold AF-A0A7C3TK66-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2268197","Nitrososphaerales archaeon"]]},{"id":"NCBITaxon:2282151","l":"Chthonomonadales bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A847JW98-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A847JW98-F1-model_v4_TED01"],["TED%3AAF-A0A850B7H6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A850B7H6-F1-model_v4_TED01"],["TED%3AAF-A0A850B0F9-F1-model_v4_TED02","TED novel fold AF-A0A850B0F9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2282151","Chthonomonadales bacterium"]]},{"id":"NCBITaxon:228229","l":"Ligilactobacillus saerimneri","na":1,"nb":3,"a":[["TED%3AAF-A0A7H9EIW4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H9EIW4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A228229","Ligilactobacillus saerimneri"],["NCBITaxon%3A1227363","Ligilactobacillus saerimneri 30a"],["NCBITaxon%3A1122153","Ligilactobacillus saerimneri DSM 16049"]]},{"id":"NCBITaxon:2283","l":"Acidianus ambivalens","na":3,"nb":1,"a":[["Pfam%3APF07680","TQO small subunit DoxA"],["Pfam%3APF04173","TQO small subunit DoxD"],["TED%3AAF-O57695-F1-model_v4_TED01","TED highly-symmetric fold AF-O57695-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2283","Acidianus ambivalens"]]},{"id":"NCBITaxon:228410","l":"Nitrosomonas europaea ATCC 19718","na":3,"nb":1,"a":[["Pfam%3APF02461","Ammonia monooxygenase"],["Pfam%3APF13435","Cytochrome c554 and c-prime"],["TED%3AAF-Q82SR8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q82SR8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A228410","Nitrosomonas europaea ATCC 19718"]]},{"id":"NCBITaxon:2287","l":"Saccharolobus solfataricus","na":1,"nb":3,"a":[["Pfam%3APF09071","Alpha-amylase, C terminal"]],"b":[["NCBITaxon%3A2287","Saccharolobus solfataricus"],["NCBITaxon%3A555311","Saccharolobus solfataricus 98/2"],["NCBITaxon%3A273057","Saccharolobus solfataricus P2"]]},{"id":"NCBITaxon:2292257","l":"Sphingorhabdus pulchriflava","na":3,"nb":1,"a":[["TED%3AAF-A0A371BI53-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A371BI53-F1-model_v4_TED02"],["TED%3AAF-A0A371BEJ6-F1-model_v4_TED02","TED novel fold AF-A0A371BEJ6-F1-model_v4_TED02"],["TED%3AAF-A0A371BFK0-F1-model_v4_TED03","TED novel fold AF-A0A371BFK0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2292257","Sphingorhabdus pulchriflava"]]},{"id":"NCBITaxon:2292376","l":"Ruminococcus sp. OM08-7","na":3,"nb":1,"a":[["TED%3AAF-A0A417P6U8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A417P6U8-F1-model_v4_TED03"],["TED%3AAF-A0A417PKJ3-F1-model_v4_TED02","TED novel fold AF-A0A417PKJ3-F1-model_v4_TED02"],["TED%3AAF-A0A417PUT6-F1-model_v4_TED02","TED novel fold AF-A0A417PUT6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2292376","Ruminococcus sp. OM08-7"]]},{"id":"NCBITaxon:2292771","l":"Parvularcula marina","na":3,"nb":1,"a":[["TED%3AAF-A0A371R7U4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A371R7U4-F1-model_v4_TED01"],["TED%3AAF-A0A371R8E8-F1-model_v4_TED01","TED novel fold AF-A0A371R8E8-F1-model_v4_TED01"],["TED%3AAF-A0A371RGQ8-F1-model_v4_TED01","TED novel fold AF-A0A371RGQ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292771","Parvularcula marina"]]},{"id":"NCBITaxon:2315210","l":"Hondaea fermentalgiana","na":3,"nb":1,"a":[["TED%3AAF-A0A2R5GT68-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2R5GT68-F1-model_v4_TED01"],["TED%3AAF-A0A2R5GAK9-F1-model_v4_TED01","TED novel fold AF-A0A2R5GAK9-F1-model_v4_TED01"],["TED%3AAF-A0A2R5GSA5-F1-model_v4_TED01","TED novel fold AF-A0A2R5GSA5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2315210","Hondaea fermentalgiana"]]},{"id":"NCBITaxon:233186","l":"Cryptomonas curvata","na":3,"nb":1,"a":[["TED%3AAF-A0A7S0MXC9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0MXC9-F1-model_v4_TED01"],["TED%3AAF-A0A7S0NBD3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0NBD3-F1-model_v4_TED01"],["TED%3AAF-A0A7S0MVA1-F1-model_v4_TED02","TED novel fold AF-A0A7S0MVA1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A233186","Cryptomonas curvata"]]},{"id":"NCBITaxon:2364211","l":"Phototrophicales bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A2M8NRF1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M8NRF1-F1-model_v4_TED01"],["TED%3AAF-A0A2M8NRW1-F1-model_v4_TED02","TED novel fold AF-A0A2M8NRW1-F1-model_v4_TED02"],["TED%3AAF-A0A2M8NV39-F1-model_v4_TED01","TED novel fold AF-A0A2M8NV39-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2364211","Phototrophicales bacterium"]]},{"id":"NCBITaxon:236787","l":"Florenciella parvula","na":3,"nb":1,"a":[["TED%3AAF-A0A7S2AZ98-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S2AZ98-F1-model_v4_TED02"],["TED%3AAF-A0A7S2C9R3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2C9R3-F1-model_v4_TED01"],["TED%3AAF-A0A7S2GC10-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2GC10-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A236787","Florenciella parvula"]]},{"id":"NCBITaxon:243233","l":"Methylococcus capsulatus Bath","na":3,"nb":1,"a":[["Pfam%3APF17850","CysA C-terminal regulatory domain"],["Pfam%3APF02461","Ammonia monooxygenase"],["TED%3AAF-Q604F4-F1-model_v4_TED02","TED novel fold AF-Q604F4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A243233","Methylococcus capsulatus str. Bath"]]},{"id":"NCBITaxon:243243","l":"Mycobacterium avium (strain 104)","na":3,"nb":1,"a":[["Pfam%3APF13740","ACT domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03710","Glutamate-ammonia ligase adenylyltransferase"]],"b":[["NCBITaxon%3A243243","Mycobacterium avium 104"]]},{"id":"NCBITaxon:243265","l":"Photorhabdus laumondii subsp. laumondii TTO1","na":1,"nb":3,"a":[["Pfam%3APF07927","HicA toxin of bacterial toxin-antitoxin,"]],"b":[["NCBITaxon%3A2218628","Photorhabdus laumondii"],["NCBITaxon%3A141679","Photorhabdus laumondii subsp. laumondii"],["NCBITaxon%3A243265","Photorhabdus laumondii subsp. laumondii TTO1"]]},{"id":"NCBITaxon:245188","l":"Yoonia vestfoldensis","na":1,"nb":3,"a":[["TED%3AAF-A0A1Y0EB74-F1-model_v4_TED01","TED novel fold AF-A0A1Y0EB74-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A245188","Yoonia vestfoldensis"],["NCBITaxon%3A1122181","Yoonia vestfoldensis DSM 16212"],["NCBITaxon%3A314232","Yoonia vestfoldensis SKA53"]]},{"id":"NCBITaxon:2478486","l":"Holophagales bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A6B0W773-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6B0W773-F1-model_v4_TED01"],["TED%3AAF-A0A6N8VG55-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N8VG55-F1-model_v4_TED02"],["TED%3AAF-A0A6B1GTV8-F1-model_v4_TED02","TED novel fold AF-A0A6B1GTV8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2478486","Holophagales bacterium"]]},{"id":"NCBITaxon:2483351","l":"Actinomadura harenae","na":1,"nb":3,"a":[["TED%3AAF-A0A3M2LMA6-F1-model_v4_TED01","TED novel fold AF-A0A3M2LMA6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2483351","Actinomadura harenae"],["NCBITaxon%3A531813","Pelagibacterium halotolerans"],["NCBITaxon%3A1082931","Pelagibacterium halotolerans B2"]]},{"id":"NCBITaxon:250","l":"Chryseobacterium gleum","na":1,"nb":3,"a":[["TED%3AAF-A0A448B167-F1-model_v4_TED02","TED novel fold AF-A0A448B167-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A250","Chryseobacterium gleum"],["NCBITaxon%3A525257","Chryseobacterium gleum ATCC 35910"],["NCBITaxon%3A1871047","Chryseobacterium sp."]]},{"id":"NCBITaxon:251702","l":"Pseudomonas syringae pv. antirrhini","na":1,"nb":3,"a":[["TED%3AAF-A0A0P9JLN7-F1-model_v4_TED01","TED novel fold AF-A0A0P9JLN7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A251702","Pseudomonas syringae pv. antirrhini"],["NCBITaxon%3A698755","Pseudomonas syringae pv. antirrhini str. 126"]]},{"id":"NCBITaxon:252740","l":"","na":3,"nb":1,"a":[["Pfam%3APF03443","Auxiliary Activity family 9 (formerly GH61)"],["TED%3AAF-A0A423W5C7-F1-model_v4_TED02","TED novel fold AF-A0A423W5C7-F1-model_v4_TED02"],["TED%3AAF-A0A423WC61-F1-model_v4_TED03","TED novel fold AF-A0A423WC61-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A252740","Cytospora chrysosperma"]]},{"id":"NCBITaxon:2527978","l":"Gimesia panareensis","na":3,"nb":1,"a":[["TED%3AAF-A0A517Q1W7-F1-model_v4_TED01","TED novel fold AF-A0A517Q1W7-F1-model_v4_TED01"],["TED%3AAF-A0A517Q3S7-F1-model_v4_TED02","TED novel fold AF-A0A517Q3S7-F1-model_v4_TED02"],["TED%3AAF-A0A518FYP2-F1-model_v4_TED01","TED novel fold AF-A0A518FYP2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2527978","Gimesia panareensis"]]},{"id":"NCBITaxon:2528011","l":"Planctomycetes bacterium Pla133","na":3,"nb":1,"a":[["TED%3AAF-A0A518BEQ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A518BEQ2-F1-model_v4_TED01"],["TED%3AAF-A0A518BSG9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A518BSG9-F1-model_v4_TED02"],["TED%3AAF-A0A518BLD8-F1-model_v4_TED01","TED novel fold AF-A0A518BLD8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528011","Engelhardtia mirabilis"]]},{"id":"NCBITaxon:2528021","l":"Anatilimnocola aggregata","na":3,"nb":1,"a":[["TED%3AAF-A0A517YG31-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A517YG31-F1-model_v4_TED01"],["TED%3AAF-A0A517YEC3-F1-model_v4_TED01","TED novel fold AF-A0A517YEC3-F1-model_v4_TED01"],["TED%3AAF-A0A517YG72-F1-model_v4_TED01","TED novel fold AF-A0A517YG72-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528021","Anatilimnocola aggregata"]]},{"id":"NCBITaxon:2528023","l":"Urbifossiella limnaea","na":3,"nb":1,"a":[["TED%3AAF-A0A517Y227-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A517Y227-F1-model_v4_TED01"],["TED%3AAF-A0A517XL09-F1-model_v4_TED02","TED novel fold AF-A0A517XL09-F1-model_v4_TED02"],["TED%3AAF-A0A517XT91-F1-model_v4_TED01","TED novel fold AF-A0A517XT91-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528023","Urbifossiella limnaea"]]},{"id":"NCBITaxon:2528828","l":"Candidatus Stahlbacteria bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A523W416-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A523W416-F1-model_v4_TED01"],["TED%3AAF-A0A523Z1T4-F1-model_v4_TED01","TED novel fold AF-A0A523Z1T4-F1-model_v4_TED01"],["TED%3AAF-A0A7C7VB62-F1-model_v4_TED01","TED novel fold AF-A0A7C7VB62-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528828","Candidatus Stahliibacteriota bacterium"]]},{"id":"NCBITaxon:257310","l":"Bordetella bronchiseptica (strain ATCC BAA-588 / NCTC 13252 / RB50)","na":3,"nb":1,"a":[["Pfam%3APF03497","Anthrax toxin LF subunit"],["Pfam%3APF06594","Haemolysin-type calcium binding protein related domain"],["Pfam%3APF03212","Pertactin"]],"b":[["NCBITaxon%3A257310","Bordetella bronchiseptica RB50"]]},{"id":"NCBITaxon:2576071","l":"Phragmitibacter flavus","na":3,"nb":1,"a":[["TED%3AAF-A0A5R8KF89-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5R8KF89-F1-model_v4_TED02"],["TED%3AAF-A0A5R8KII2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5R8KII2-F1-model_v4_TED01"],["TED%3AAF-A0A5R8KJY9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5R8KJY9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2576071","Phragmitibacter flavus"]]},{"id":"NCBITaxon:2587852","l":"Roseivivax sp. THAF30","na":3,"nb":1,"a":[["TED%3AAF-A0A5P9FGS6-F1-model_v4_TED02","TED novel fold AF-A0A5P9FGS6-F1-model_v4_TED02"],["TED%3AAF-A0A5P9FI68-F1-model_v4_TED01","TED novel fold AF-A0A5P9FI68-F1-model_v4_TED01"],["TED%3AAF-A0A5P9FM36-F1-model_v4_TED01","TED novel fold AF-A0A5P9FM36-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2587852","Roseivivax sp. THAF30"]]},{"id":"NCBITaxon:2591470","l":"Lentzea tibetensis","na":3,"nb":1,"a":[["TED%3AAF-A0A563EGR8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A563EGR8-F1-model_v4_TED01"],["TED%3AAF-A0A563EKL5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A563EKL5-F1-model_v4_TED01"],["TED%3AAF-A0A563EEJ6-F1-model_v4_TED01","TED novel fold AF-A0A563EEJ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2591470","Lentzea tibetensis"]]},{"id":"NCBITaxon:2598579","l":"Limnoglobus roseus","na":3,"nb":1,"a":[["TED%3AAF-A0A5C1A5Q5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C1A5Q5-F1-model_v4_TED01"],["TED%3AAF-A0A5C1ACX4-F1-model_v4_TED01","TED novel fold AF-A0A5C1ACX4-F1-model_v4_TED01"],["TED%3AAF-A0A5C1ATB5-F1-model_v4_TED02","TED novel fold AF-A0A5C1ATB5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2598579","Limnoglobus roseus"]]},{"id":"NCBITaxon:2607790","l":"Okeania sp. SIO2F4","na":3,"nb":1,"a":[["TED%3AAF-A0A846C618-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A846C618-F1-model_v4_TED01"],["TED%3AAF-A0A846CIW5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A846CIW5-F1-model_v4_TED01"],["TED%3AAF-A0A846CB44-F1-model_v4_TED03","TED novel fold AF-A0A846CB44-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2607790","Okeania sp. SIO2F4"]]},{"id":"NCBITaxon:2607809","l":"Symploca sp. SIO2E6","na":3,"nb":1,"a":[["TED%3AAF-A0A6M0GAF0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6M0GAF0-F1-model_v4_TED01"],["TED%3AAF-A0A6M0GFI8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6M0GFI8-F1-model_v4_TED02"],["TED%3AAF-A0A6M0GG53-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6M0GG53-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607809","Symploca sp. SIO2E6"]]},{"id":"NCBITaxon:264731","l":"","na":3,"nb":1,"a":[["Pfam%3APF05448","Acetyl xylan esterase (AXE1)"],["Pfam%3APF00331","Glycosyl hydrolase family 10"],["TED%3AAF-D5EXZ1-F1-model_v4_TED03","TED novel fold AF-D5EXZ1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A264731","Xylanibacter ruminicola 23"]]},{"id":"NCBITaxon:2651163","l":"Ignavibacteriaceae bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A7Y8JA55-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y8JA55-F1-model_v4_TED01"],["TED%3AAF-A0A7Y2K4Z6-F1-model_v4_TED01","TED novel fold AF-A0A7Y2K4Z6-F1-model_v4_TED01"],["TED%3AAF-A0A7Y5L2T1-F1-model_v4_TED01","TED novel fold AF-A0A7Y5L2T1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2651163","Ignavibacteriaceae bacterium"]]},{"id":"NCBITaxon:265669","l":"Listeria monocytogenes serotype 4b (strain F2365)","na":3,"nb":1,"a":[["Pfam%3APF22508","Internalin J, Immunoglobulin-like domain"],["Pfam%3APF18981","Internalin K domain (D3/D4)"],["Pfam%3APF22350","Internalin, EF-hand domain"]],"b":[["NCBITaxon%3A265669","Listeria monocytogenes serotype 4b str. F2365"]]},{"id":"NCBITaxon:2697043","l":"Tichowtungia aerotolerans","na":3,"nb":1,"a":[["TED%3AAF-A0A6P1M8R0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6P1M8R0-F1-model_v4_TED02"],["TED%3AAF-A0A6P1M9Q5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A6P1M9Q5-F1-model_v4_TED03"],["TED%3AAF-A0A6P1M733-F1-model_v4_TED02","TED novel fold AF-A0A6P1M733-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2697043","Tichowtungia aerotolerans"]]},{"id":"NCBITaxon:2699742","l":"Candidatus Anammoximicrobium sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A847GXB5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A847GXB5-F1-model_v4_TED02"],["TED%3AAF-A0A847GSA2-F1-model_v4_TED01","TED novel fold AF-A0A847GSA2-F1-model_v4_TED01"],["TED%3AAF-A0A847H196-F1-model_v4_TED03","TED novel fold AF-A0A847H196-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2699742","Candidatus Anammoximicrobium sp."]]},{"id":"NCBITaxon:2699754","l":"Pirellulaceae bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A7X7KCT3-F1-model_v4_TED02","TED novel fold AF-A0A7X7KCT3-F1-model_v4_TED02"],["TED%3AAF-A0A7X7QG98-F1-model_v4_TED02","TED novel fold AF-A0A7X7QG98-F1-model_v4_TED02"],["TED%3AAF-A0A7Y2AM27-F1-model_v4_TED01","TED novel fold AF-A0A7Y2AM27-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2699754","Pirellulaceae bacterium"]]},{"id":"NCBITaxon:2715253","l":"Pirellulales bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A7Y5SNH7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y5SNH7-F1-model_v4_TED01"],["TED%3AAF-A0A838QX04-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A838QX04-F1-model_v4_TED02"],["TED%3AAF-A0A838RD69-F1-model_v4_TED01","TED novel fold AF-A0A838RD69-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2715253","Pirellulales bacterium"]]},{"id":"NCBITaxon:2720503","l":"Herpetosiphonaceae bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A7W1A9W6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W1A9W6-F1-model_v4_TED01"],["TED%3AAF-A0A7W1YPE0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W1YPE0-F1-model_v4_TED02"],["TED%3AAF-A0A7W1TNI0-F1-model_v4_TED01","TED novel fold AF-A0A7W1TNI0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2720503","Herpetosiphonaceae bacterium"]]},{"id":"NCBITaxon:2723095","l":"Paraburkholderia sp. HC6.4b","na":3,"nb":1,"a":[["TED%3AAF-A0A7W8PCC7-F1-model_v4_TED03","TED novel fold AF-A0A7W8PCC7-F1-model_v4_TED03"],["TED%3AAF-A0A7W8PCI5-F1-model_v4_TED02","TED novel fold AF-A0A7W8PCI5-F1-model_v4_TED02"],["TED%3AAF-A0A7W8URT5-F1-model_v4_TED01","TED novel fold AF-A0A7W8URT5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2723095","Paraburkholderia sp. HC6.4b"]]},{"id":"NCBITaxon:272560","l":"Burkholderia pseudomallei (strain K96243)","na":3,"nb":1,"a":[["Pfam%3APF07077","Virulence factor BPSS1818"],["Pfam%3APF11958","Surface attachment protein BPSS1860"],["Pfam%3APF16374","Cycle inhibiting factor (CIF)"]],"b":[["NCBITaxon%3A272560","Burkholderia pseudomallei K96243"]]},{"id":"NCBITaxon:272632","l":"","na":1,"nb":3,"a":[["TED%3AAF-Q6MU57-F1-model_v4_TED01","TED novel fold AF-Q6MU57-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2102","Mycoplasma mycoides"],["NCBITaxon%3A2103","Mycoplasma mycoides subsp. mycoides"],["NCBITaxon%3A272632","Mycoplasma mycoides subsp. mycoides SC str. PG1"]]},{"id":"NCBITaxon:272951","l":"Rickettsia sibirica 246","na":1,"nb":3,"a":[["Pfam%3APF22203","Surface cell antigen Sca2 helical repeat"]],"b":[["NCBITaxon%3A35793","Rickettsia sibirica"],["NCBITaxon%3A272951","Rickettsia sibirica 246"],["NCBITaxon%3A1144281","Rickettsia sibirica subsp. sibirica"]]},{"id":"NCBITaxon:273036","l":"Staphylococcus aureus (strain bovine RF122 / ET3-1)","na":3,"nb":1,"a":[["Pfam%3APF03780","Asp23 family, cell envelope-related function"],["Pfam%3APF18927","Glycosyl-4,4'-diaponeurosporenoate acyltransferase"],["Pfam%3APF04507","Csa1 family"]],"b":[["NCBITaxon%3A273036","Staphylococcus aureus RF122"]]},{"id":"NCBITaxon:273068","l":"","na":1,"nb":3,"a":[["Pfam%3APF24894","GlmU-like, C-terminal hexapeptide"]],"b":[["NCBITaxon%3A911092","Caldanaerobacter subterraneus"],["NCBITaxon%3A119072","Caldanaerobacter subterraneus subsp. tengcongensis"],["NCBITaxon%3A273068","Caldanaerobacter subterraneus subsp. tengcongensis MB4"]]},{"id":"NCBITaxon:27350","l":"Puccinia striiformis","na":1,"nb":3,"a":[["TED%3AAF-A0A2S4U9T6-F1-model_v4_TED01","TED novel fold AF-A0A2S4U9T6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A27350","Puccinia striiformis"],["NCBITaxon%3A168172","Puccinia striiformis f. sp. tritici"],["NCBITaxon%3A1165861","Puccinia striiformis f. sp. tritici PST-78"]]},{"id":"NCBITaxon:2749911","l":"Pseudictyota dubia","na":3,"nb":1,"a":[["TED%3AAF-A0A7R9W8L7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7R9W8L7-F1-model_v4_TED01"],["TED%3AAF-A0A7R9VQK5-F1-model_v4_TED01","TED novel fold AF-A0A7R9VQK5-F1-model_v4_TED01"],["TED%3AAF-A0A7R9Z4N2-F1-model_v4_TED03","TED novel fold AF-A0A7R9Z4N2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2749911","Pseudictyota dubia"]]},{"id":"NCBITaxon:2761452","l":"Mitsuaria sp. WAJ17","na":3,"nb":1,"a":[["TED%3AAF-A0A839LEQ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A839LEQ7-F1-model_v4_TED01"],["TED%3AAF-A0A839LJ22-F1-model_v4_TED01","TED novel fold AF-A0A839LJ22-F1-model_v4_TED01"],["TED%3AAF-A0A839LJB2-F1-model_v4_TED01","TED novel fold AF-A0A839LJB2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2761452","Mitsuaria sp. WAJ17"]]},{"id":"NCBITaxon:277","l":"Meiothermus ruber","na":1,"nb":3,"a":[["TED%3AAF-A0A7C3DF06-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C3DF06-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A277","Meiothermus ruber"],["NCBITaxon%3A504728","Meiothermus ruber DSM 1279"],["NCBITaxon%3A1297799","Meiothermus ruber H328"]]},{"id":"NCBITaxon:279808","l":"Staphylococcus haemolyticus (strain JCSC1435)","na":3,"nb":1,"a":[["Pfam%3APF18719","ArlS sensor domain"],["Pfam%3APF21191","CvfB first S1-like domain"],["Pfam%3APF21543","Virulence regulatory factor CvfB, second domain"]],"b":[["NCBITaxon%3A279808","Staphylococcus haemolyticus JCSC1435"]]},{"id":"NCBITaxon:2829","l":"Heterosigma akashiwo","na":3,"nb":1,"a":[["TED%3AAF-A0A7S4DBT0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S4DBT0-F1-model_v4_TED02"],["TED%3AAF-A0A6S9LBI5-F1-model_v4_TED01","TED novel fold AF-A0A6S9LBI5-F1-model_v4_TED01"],["TED%3AAF-A0A7S3XMU2-F1-model_v4_TED01","TED novel fold AF-A0A7S3XMU2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2829","Heterosigma akashiwo"]]},{"id":"NCBITaxon:283643","l":"","na":3,"nb":1,"a":[["Pfam%3APF28371","Clampless protein 1 N-terminal domain"],["Pfam%3APF28353","Clampless protein 1 C-terminal domain"],["TED%3AAF-Q55JJ5-F1-model_v4_TED02","TED novel fold AF-Q55JJ5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A283643","Cryptococcus deneoformans B-3501A"]]},{"id":"NCBITaxon:288000","l":"Bradyrhizobium sp. (strain BTAi1 / ATCC BAA-1182)","na":3,"nb":1,"a":[["Pfam%3APF10073","GapR-like, DNA-binding domain"],["Pfam%3APF10755","Protein of unknown function (DUF2585)"],["TED%3AAF-A5EG84-F1-model_v4_TED02","TED highly-symmetric fold AF-A5EG84-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A288000","Bradyrhizobium sp. BTAi1"]]},{"id":"NCBITaxon:290338","l":"Citrobacter koseri (strain ATCC BAA-895 / CDC 4225-83 / SGSC4696)","na":3,"nb":1,"a":[["Pfam%3APF03783","Curli production assembly/transport component CsgG"],["Pfam%3APF04269","Protein of unknown function, DUF440"],["Pfam%3APF17874","MalT-like TPR region"]],"b":[["NCBITaxon%3A290338","Citrobacter koseri ATCC BAA-895"]]},{"id":"NCBITaxon:291645","l":"Bacteroides nordii","na":1,"nb":3,"a":[["TED%3AAF-A0A413VD19-F1-model_v4_TED01","TED novel fold AF-A0A413VD19-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A291645","Bacteroides nordii"],["NCBITaxon%3A997884","Bacteroides nordii CL02T12C05"],["NCBITaxon%3A1203608","Bacteroides nordii WAL 11050 = JCM 12987"]]},{"id":"NCBITaxon:293939","l":"Aspergillus lentulus","na":3,"nb":1,"a":[["TED%3AAF-A0A0S7DQ50-F1-model_v4_TED03","TED novel fold AF-A0A0S7DQ50-F1-model_v4_TED03"],["TED%3AAF-A0A0S7DZR8-F1-model_v4_TED04","TED novel fold AF-A0A0S7DZR8-F1-model_v4_TED04"],["TED%3AAF-A0A0S7E8Y7-F1-model_v4_TED02","TED novel fold AF-A0A0S7E8Y7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A293939","Aspergillus lentulus"]]},{"id":"NCBITaxon:29523","l":"Bacteroides sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A351YFX8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A351YFX8-F1-model_v4_TED01"],["TED%3AAF-A0A7C1V1S3-F1-model_v4_TED01","TED novel fold AF-A0A7C1V1S3-F1-model_v4_TED01"],["TED%3AAF-A0A7C2R702-F1-model_v4_TED01","TED novel fold AF-A0A7C2R702-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29523","Bacteroides sp."]]},{"id":"NCBITaxon:295319","l":"Salmonella paratyphi A (strain ATCC 9150 / SARB42)","na":3,"nb":1,"a":[["Pfam%3APF07824","Type III secretion chaperone domain"],["Pfam%3APF04217","Protein of unknown function, DUF412"],["Pfam%3APF06109","Haemolysin E (HlyE)"]],"b":[["NCBITaxon%3A295319","Salmonella enterica subsp. enterica serovar Paratyphi A str. ATCC 9150"]]},{"id":"NCBITaxon:300268","l":"Shigella boydii serotype 4 (strain Sb227)","na":3,"nb":1,"a":[["Pfam%3APF21118","DosC CZB-like middle domain"],["Pfam%3APF07869","Protein of unknown function (DUF1656)"],["Pfam%3APF06977","SdiA-regulated"]],"b":[["NCBITaxon%3A300268","Shigella boydii Sb227"]]},{"id":"NCBITaxon:303371","l":"Tribonema minus","na":3,"nb":1,"a":[["TED%3AAF-A0A836CJF8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A836CJF8-F1-model_v4_TED01"],["TED%3AAF-A0A835YUR5-F1-model_v4_TED01","TED novel fold AF-A0A835YUR5-F1-model_v4_TED01"],["TED%3AAF-A0A835Z887-F1-model_v4_TED02","TED novel fold AF-A0A835Z887-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A303371","Tribonema minus"]]},{"id":"NCBITaxon:312309","l":"","na":3,"nb":1,"a":[["Pfam%3APF06610","L-alanine exporter"],["Pfam%3APF00765","Autoinducer synthase"],["PROSITE%3APS00949","Autoinducer synthase family signature"]],"b":[["NCBITaxon%3A312309","Aliivibrio fischeri ES114"]]},{"id":"NCBITaxon:313628","l":"Lentisphaera araneosa HTCC2155","na":3,"nb":1,"a":[["TED%3AAF-A6DHC8-F1-model_v4_TED01","TED novel fold AF-A6DHC8-F1-model_v4_TED01"],["TED%3AAF-A6DNV7-F1-model_v4_TED01","TED novel fold AF-A6DNV7-F1-model_v4_TED01"],["TED%3AAF-A6DRD8-F1-model_v4_TED03","TED novel fold AF-A6DRD8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A313628","Lentisphaera araneosa HTCC2155"]]},{"id":"NCBITaxon:314565","l":"Xanthomonas campestris pv. campestris (strain 8004)","na":3,"nb":1,"a":[["Pfam%3APF00325","Bacterial regulatory proteins, crp family"],["Pfam%3APF13487","HD domain"],["PROSITE%3APS00042","Crp-type HTH domain signature"]],"b":[["NCBITaxon%3A314565","Xanthomonas campestris pv. campestris str. 8004"]]},{"id":"NCBITaxon:315456","l":"Rickettsia felis (strain ATCC VR-1525 / URRWXCal2)","na":3,"nb":1,"a":[["Pfam%3APF18324","Bacterial isocitrate dehydrogenase, C-terminal domain"],["Pfam%3APF11019","Protein of unknown function (DUF2608)"],["Pfam%3APF22203","Surface cell antigen Sca2 helical repeat"]],"b":[["NCBITaxon%3A315456","Rickettsia felis Marseille-URRWFXCal2"]]},{"id":"NCBITaxon:320389","l":"Burkholderia mallei (strain NCTC 10247)","na":3,"nb":1,"a":[["Pfam%3APF06315","Isocitrate dehydrogenase kinase/phosphatase (AceK) kinase domain"],["Pfam%3APF20423","Isocitrate dehydrogenase kinase/phosphatase (AceK), regulatory domain"],["Pfam%3APF22688","Hda, lid domain"]],"b":[["NCBITaxon%3A320389","Burkholderia mallei NCTC 10247"]]},{"id":"NCBITaxon:320662","l":"Rhodovulum marinum","na":1,"nb":3,"a":[["TED%3AAF-A0A4R2PU14-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4R2PU14-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A364296","Rhodobium gokarnense"],["NCBITaxon%3A320662","Rhodovulum marinum"],["NCBITaxon%3A1188260","Rhodovulum marinum JA128"]]},{"id":"NCBITaxon:322159","l":"Streptococcus thermophilus (strain ATCC BAA-491 / LMD-9)","na":3,"nb":1,"a":[["Pfam%3APF18470","Cas9 alpha-helical lobe domain"],["Pfam%3APF18070","CRISPR-Cas9 PI domain"],["Pfam%3APF18061","CRISPR-Cas9 WED domain"]],"b":[["NCBITaxon%3A322159","Streptococcus thermophilus LMD-9"]]},{"id":"NCBITaxon:322505","l":"Sharpea azabuensis","na":1,"nb":3,"a":[["TED%3AAF-A0A1H6US53-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H6US53-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A322505","Sharpea azabuensis"],["NCBITaxon%3A1410674","Sharpea azabuensis DSM 18934"],["NCBITaxon%3A2652286","Sharpea porci"]]},{"id":"NCBITaxon:322866","l":"Leptolyngbya valderiana BDU 20041","na":3,"nb":1,"a":[["TED%3AAF-A0A166VCM9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A166VCM9-F1-model_v4_TED02"],["TED%3AAF-A0A168TVG0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A168TVG0-F1-model_v4_TED01"],["TED%3AAF-A0A166TA39-F1-model_v4_TED03","TED novel fold AF-A0A166TA39-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A322866","Leptolyngbya valderiana BDU 20041"]]},{"id":"NCBITaxon:323656","l":"Neorhizobium galegae bv. officinalis","na":1,"nb":3,"a":[["TED%3AAF-A0A0T7GYR3-F1-model_v4_TED01","TED novel fold AF-A0A0T7GYR3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A399","Neorhizobium galegae"],["NCBITaxon%3A323656","Neorhizobium galegae bv. officinalis"],["NCBITaxon%3A1028801","Neorhizobium galegae bv. officinalis bv. officinalis str. HAMBI 1141"]]},{"id":"NCBITaxon:325452","l":"Phytophthora kernoviae","na":3,"nb":1,"a":[["TED%3AAF-A0A3F2RWY7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3F2RWY7-F1-model_v4_TED01"],["TED%3AAF-A0A3F2RX54-F1-model_v4_TED01","TED novel fold AF-A0A3F2RX54-F1-model_v4_TED01"],["TED%3AAF-A0A421EY51-F1-model_v4_TED03","TED novel fold AF-A0A421EY51-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A325452","Phytophthora kernoviae"]]},{"id":"NCBITaxon:328814","l":"Alistipes shahii","na":1,"nb":3,"a":[["TED%3AAF-A0A5B3G0H9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A5B3G0H9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A328814","Alistipes shahii"],["NCBITaxon%3A1357378","Alistipes shahii ETR2_14"],["NCBITaxon%3A717959","Alistipes shahii WAL 8301"]]},{"id":"NCBITaxon:329726","l":"Acaryochloris marina (strain MBIC 11017)","na":3,"nb":1,"a":[["TED%3AAF-B0C760-F1-model_v4_TED01","TED highly-symmetric fold AF-B0C760-F1-model_v4_TED01"],["TED%3AAF-A8ZPU7-F1-model_v4_TED01","TED novel fold AF-A8ZPU7-F1-model_v4_TED01"],["TED%3AAF-B0C5H8-F1-model_v4_TED01","TED novel fold AF-B0C5H8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A329726","Acaryochloris marina MBIC11017"]]},{"id":"NCBITaxon:33178","l":"Aspergillus terreus","na":3,"nb":1,"a":[["Pfam%3APF28386","BfoA family C-terminal domain"],["Pfam%3APF28387","BfoA N-terminal domain"],["Pfam%3APF12351","Ca2+ regulator and membrane fusion protein Fig1"]],"b":[["NCBITaxon%3A33178","Aspergillus terreus"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":3,"nb":1,"a":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF22041","Glutathione S-transferase, C-terminal domain"],["Pfam%3APF08493","Aflatoxin regulatory protein"]],"b":[["NCBITaxon%3A332952","Aspergillus flavus NRRL3357"]]},{"id":"NCBITaxon:333962","l":"Providencia heimbachae","na":1,"nb":3,"a":[["TED%3AAF-A0A4D7JDZ4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4D7JDZ4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A333962","Providencia heimbachae"],["NCBITaxon%3A1354272","Providencia heimbachae ATCC 35613"],["NCBITaxon%3A1255655","Providencia heimbachae GR4"]]},{"id":"NCBITaxon:336407","l":"Rickettsia bellii (strain RML369-C)","na":3,"nb":1,"a":[["Pfam%3APF16998","17 kDa outer membrane surface antigen"],["Pfam%3APF11019","Protein of unknown function (DUF2608)"],["Pfam%3APF10399","Ubiquitinol-cytochrome C reductase Fe-S subunit TAT signal"]],"b":[["NCBITaxon%3A336407","Rickettsia bellii RML369-C"]]},{"id":"NCBITaxon:33889","l":"Brevibacterium casei","na":1,"nb":3,"a":[["TED%3AAF-A0A7T2TGM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T2TGM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A33889","Brevibacterium casei"],["NCBITaxon%3A1255625","Brevibacterium casei CIP 102111"],["NCBITaxon%3A1229781","Brevibacterium casei S18"]]},{"id":"NCBITaxon:340047","l":"Mycoplasma capricolum subsp. capricolum ATCC 27343","na":1,"nb":3,"a":[["Pfam%3APF27879","Helix-rich protein"]],"b":[["NCBITaxon%3A2095","Mycoplasma capricolum"],["NCBITaxon%3A40479","Mycoplasma capricolum subsp. capricolum"],["NCBITaxon%3A340047","Mycoplasma capricolum subsp. capricolum ATCC 27343"]]},{"id":"NCBITaxon:34068","l":"Cycloclasticus pugetii","na":1,"nb":3,"a":[["TED%3AAF-A0A1M6DAX1-F1-model_v4_TED03","TED novel fold AF-A0A1M6DAX1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A34068","Cycloclasticus pugetii"],["NCBITaxon%3A655438","Cycloclasticus pugetii PS-1"],["NCBITaxon%3A1884353","Cycloclasticus sp. DSM 27168"]]},{"id":"NCBITaxon:34087","l":"Sphingobacterium faecium","na":1,"nb":3,"a":[["TED%3AAF-A0A7K0B7N5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K0B7N5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A34087","Sphingobacterium faecium"],["NCBITaxon%3A1220575","Sphingobacterium faecium NBRC 15299"],["NCBITaxon%3A1255690","Sphingobacterium faecium PCAi_F2.5"]]},{"id":"NCBITaxon:342108","l":"","na":3,"nb":1,"a":[["Pfam%3APF08269","Cache domain"],["Pfam%3APF08849","BrxA"],["Pfam%3APF04011","LemA family"]],"b":[["NCBITaxon%3A342108","Paramagnetospirillum magneticum AMB-1"]]},{"id":"NCBITaxon:343874","l":"Empedobacter falsenii","na":1,"nb":3,"a":[["TED%3AAF-A0A376G7G3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A376G7G3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A343874","Empedobacter falsenii"],["NCBITaxon%3A343876","Empedobacter falsenii genomovar 1"],["NCBITaxon%3A343875","Empedobacter falsenii genomovar 2"]]},{"id":"NCBITaxon:351656","l":"Xenorhabdus vietnamensis","na":3,"nb":1,"a":[["TED%3AAF-A0A1Y2S714-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y2S714-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2S9F2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y2S9F2-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2S6H8-F1-model_v4_TED02","TED novel fold AF-A0A1Y2S6H8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A351656","Xenorhabdus vietnamensis"]]},{"id":"NCBITaxon:351745","l":"Shewanella sp. (strain W3-18-1)","na":3,"nb":1,"a":[["Pfam%3APF17810","Arginine decarboxylase helical bundle domain"],["Pfam%3APF17944","Arginine decarboxylase C-terminal helical extension"],["Pfam%3APF02001","Protein of unknown function DUF134"]],"b":[["NCBITaxon%3A351745","Shewanella sp. W3-18-1"]]},{"id":"NCBITaxon:35688","l":"Porphyridium purpureum","na":3,"nb":1,"a":[["TED%3AAF-A0A5J4YJT2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5J4YJT2-F1-model_v4_TED01"],["TED%3AAF-A0A5J4Z0Q3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5J4Z0Q3-F1-model_v4_TED01"],["TED%3AAF-A0A5J4YHT1-F1-model_v4_TED03","TED novel fold AF-A0A5J4YHT1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A35688","Porphyridium purpureum"]]},{"id":"NCBITaxon:35722","l":"Parasitella parasitica","na":1,"nb":3,"a":[["TED%3AAF-A0A0B7NWV4-F1-model_v4_TED02","TED novel fold AF-A0A0B7NWV4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A54571","Streptomyces venezuelae"],["NCBITaxon%3A953739","Streptomyces venezuelae ATCC 10712"],["NCBITaxon%3A35722","Parasitella parasitica"]]},{"id":"NCBITaxon:35787","l":"Limosilactobacillus pontis","na":1,"nb":3,"a":[["TED%3AAF-A0A2J6NPS8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2J6NPS8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1591","Lactobacillus sp."],["NCBITaxon%3A35787","Limosilactobacillus pontis"],["NCBITaxon%3A1423794","Limosilactobacillus pontis DSM 8475"]]},{"id":"NCBITaxon:360807","l":"Roseburia inulinivorans","na":1,"nb":3,"a":[["TED%3AAF-A0A173VWR5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A173VWR5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A360807","Roseburia inulinivorans"],["NCBITaxon%3A1263105","Roseburia inulinivorans CAG:15"],["NCBITaxon%3A622312","Roseburia inulinivorans DSM 16841"]]},{"id":"NCBITaxon:362242","l":"","na":3,"nb":1,"a":[["Pfam%3APF02654","Cobalamin-5-phosphate synthase"],["Pfam%3APF02622","AlgH-like"],["Pfam%3APF01628","HrcA protein C terminal domain"]],"b":[["NCBITaxon%3A362242","Mycobacterium ulcerans Agy99"]]},{"id":"NCBITaxon:362663","l":"Escherichia coli O6:K15:H31 (strain 536 / UPEC)","na":3,"nb":1,"a":[["Pfam%3APF18616","CDI immunity proteins"],["Pfam%3APF09160","FimH, mannose binding"],["Pfam%3APF05860","TPS secretion domain"]],"b":[["NCBITaxon%3A362663","Escherichia coli 536"]]},{"id":"NCBITaxon:36330","l":"Plasmodium ovale","na":1,"nb":3,"a":[["Pfam%3APF05424","Duffy binding domain"]],"b":[["NCBITaxon%3A36330","Plasmodium ovale"],["NCBITaxon%3A864141","Plasmodium ovale curtisi"],["NCBITaxon%3A864142","Plasmodium ovale wallikeri"]]},{"id":"NCBITaxon:36746","l":"Pseudomonas cichorii","na":1,"nb":3,"a":[["TED%3AAF-A0A3M4VH83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M4VH83-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2488639","Pectobacterium versatile"],["NCBITaxon%3A36746","Pseudomonas cichorii"],["NCBITaxon%3A1441629","Pseudomonas cichorii JBC1"]]},{"id":"NCBITaxon:36841","l":"Terrisporobacter glycolicus","na":1,"nb":3,"a":[["TED%3AAF-A0A1I3PG81-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I3PG81-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A36841","Terrisporobacter glycolicus"],["NCBITaxon%3A1121315","Terrisporobacter glycolicus ATCC 14880 = DSM 1288"],["NCBITaxon%3A1125703","Terrisporobacter glycolicus CC88H"]]},{"id":"NCBITaxon:36911","l":"Clavispora lusitaniae","na":3,"nb":1,"a":[["TED%3AAF-A0A5Q0ICH9-F1-model_v4_TED01","TED novel fold AF-A0A5Q0ICH9-F1-model_v4_TED01"],["TED%3AAF-A0A5Q0ITE0-F1-model_v4_TED01","TED novel fold AF-A0A5Q0ITE0-F1-model_v4_TED01"],["TED%3AAF-A0A5Q0JDK0-F1-model_v4_TED01","TED novel fold AF-A0A5Q0JDK0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A36911","Clavispora lusitaniae"]]},{"id":"NCBITaxon:37329","l":"Nocardia farcinica","na":1,"nb":3,"a":[["TED%3AAF-A0A449G5H5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A449G5H5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A37329","Nocardia farcinica"],["NCBITaxon%3A247156","Nocardia farcinica IFM 10152"],["NCBITaxon%3A1210076","Nocardia farcinica NBRC 15532"]]},{"id":"NCBITaxon:37332","l":"Nocardia seriolae","na":1,"nb":3,"a":[["TED%3AAF-A0A0B8NE12-F1-model_v4_TED02","TED novel fold AF-A0A0B8NE12-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A37332","Nocardia seriolae"],["NCBITaxon%3A1454200","Nocardia seriolae N-2927"],["NCBITaxon%3A1210095","Nocardia seriolae NBRC 15557"]]},{"id":"NCBITaxon:38300","l":"Streptomyces pristinaespiralis","na":1,"nb":3,"a":[["Pfam%3APF12323","Helix-turn-helix domain"]],"b":[["NCBITaxon%3A38300","Streptomyces pristinaespiralis"],["NCBITaxon%3A457429","Streptomyces pristinaespiralis ATCC 25486"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:386415","l":"","na":3,"nb":1,"a":[["Pfam%3APF27467","ATP-dependent helicase/deoxyribonuclease AddB fifth domain"],["Pfam%3APF01888","CbiD"],["Pfam%3APF18146","Damage-inducible protein CinA KH domain"]],"b":[["NCBITaxon%3A386415","Clostridium novyi NT"]]},{"id":"NCBITaxon:386656","l":"Yersinia pestis (strain Pestoides F)","na":3,"nb":1,"a":[["Pfam%3APF13413","Helix-turn-helix domain"],["Pfam%3APF04361","Protein of unknown function (DUF494)"],["Pfam%3APF04792","V antigen (LcrV) protein"]],"b":[["NCBITaxon%3A386656","Yersinia pestis Pestoides F"]]},{"id":"NCBITaxon:390896","l":"Trematosphaeria pertusa","na":3,"nb":1,"a":[["TED%3AAF-A0A6A6I275-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A6I275-F1-model_v4_TED01"],["TED%3AAF-A0A6A6HUS3-F1-model_v4_TED03","TED novel fold AF-A0A6A6HUS3-F1-model_v4_TED03"],["TED%3AAF-A0A6A6J005-F1-model_v4_TED03","TED novel fold AF-A0A6A6J005-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A390896","Trematosphaeria pertusa"]]},{"id":"NCBITaxon:391904","l":"","na":1,"nb":3,"a":[["Pfam%3APF25528","Domain of unknown function (DUF7917)"]],"b":[["NCBITaxon%3A216816","Bifidobacterium longum"],["NCBITaxon%3A1682","Bifidobacterium longum subsp. infantis"],["NCBITaxon%3A391904","Bifidobacterium longum subsp. infantis ATCC 15697 = JCM 1222 = DSM 20088"]]},{"id":"NCBITaxon:393921","l":"Porphyromonas crevioricanis","na":1,"nb":3,"a":[["TED%3AAF-A0A2X4PLZ5-F1-model_v4_TED01","TED novel fold AF-A0A2X4PLZ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A393921","Porphyromonas crevioricanis"],["NCBITaxon%3A1305618","Porphyromonas crevioricanis JCM 13913"],["NCBITaxon%3A1305617","Porphyromonas crevioricanis JCM 15906"]]},{"id":"NCBITaxon:39496","l":"Eubacterium ventriosum","na":1,"nb":3,"a":[["TED%3AAF-A0A414RCC0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A414RCC0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A39496","Eubacterium ventriosum"],["NCBITaxon%3A411463","Eubacterium ventriosum ATCC 27560"],["NCBITaxon%3A1263081","Eubacterium ventriosum MGS:89"]]},{"id":"NCBITaxon:395963","l":"Beijerinckia indica subsp. indica ATCC 9039","na":1,"nb":3,"a":[["TED%3AAF-B2IFK3-F1-model_v4_TED03","TED novel fold AF-B2IFK3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A533","Beijerinckia indica"],["NCBITaxon%3A31994","Beijerinckia indica subsp. indica"],["NCBITaxon%3A395963","Beijerinckia indica subsp. indica ATCC 9039"]]},{"id":"NCBITaxon:397290","l":"Lachnospiraceae bacterium A2","na":3,"nb":1,"a":[["TED%3AAF-R9K6E4-F1-model_v4_TED02","TED highly-symmetric fold AF-R9K6E4-F1-model_v4_TED02"],["TED%3AAF-R9KN16-F1-model_v4_TED02","TED highly-symmetric fold AF-R9KN16-F1-model_v4_TED02"],["TED%3AAF-R9KRD0-F1-model_v4_TED01","TED novel fold AF-R9KRD0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A397290","Lachnospiraceae bacterium A2"]]},{"id":"NCBITaxon:399599","l":"Shewanella baltica (strain OS195)","na":3,"nb":1,"a":[["Pfam%3APF24860","FdhE, C-terminal domain"],["Pfam%3APF24859","FdhE, central domain"],["Pfam%3APF04216","FdhE, N-terminal"]],"b":[["NCBITaxon%3A399599","Shewanella baltica OS195"]]},{"id":"NCBITaxon:399739","l":"Ectopseudomonas mendocina (strain ymp)","na":3,"nb":1,"a":[["Pfam%3APF22289","Dimethylamine monooxygenase subunit DmmA-like, C-terminal domain"],["Pfam%3APF04359","Protein of unknown function (DUF493)"],["Pfam%3APF11927","Haem-dependent oxidative N-demethylase, alpha subunit-like"]],"b":[["NCBITaxon%3A399739","Ectopseudomonas mendocina ymp"]]},{"id":"NCBITaxon:401625","l":"Ceraceosorus bombacis","na":3,"nb":1,"a":[["TED%3AAF-A0A0P1B815-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0P1B815-F1-model_v4_TED02"],["TED%3AAF-A0A0N7LAT1-F1-model_v4_TED01","TED novel fold AF-A0A0N7LAT1-F1-model_v4_TED01"],["TED%3AAF-A0A0P1BJI8-F1-model_v4_TED01","TED novel fold AF-A0A0P1BJI8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A401625","Ceraceosorus bombacis"]]},{"id":"NCBITaxon:402880","l":"","na":3,"nb":1,"a":[["Pfam%3APF02553","Cobalt transport protein component CbiN"],["Pfam%3APF18195","GatD N-terminal domain"],["Pfam%3APF01941","S-adenosylmethionine synthetase (AdoMet synthetase)"]],"b":[["NCBITaxon%3A402880","Methanococcus maripaludis C5"]]},{"id":"NCBITaxon:406547","l":"Rubripirellula obstinata","na":3,"nb":1,"a":[["TED%3AAF-A0A5B1CJC2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B1CJC2-F1-model_v4_TED01"],["TED%3AAF-A0A5B1CQ78-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B1CQ78-F1-model_v4_TED01"],["TED%3AAF-A0A5B1CIN8-F1-model_v4_TED02","TED novel fold AF-A0A5B1CIN8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A406547","Rubripirellula obstinata"]]},{"id":"NCBITaxon:408139","l":"Leptospira kmetyi","na":1,"nb":3,"a":[["TED%3AAF-A0A7I0IE69-F1-model_v4_TED02","TED novel fold AF-A0A7I0IE69-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A408139","Leptospira kmetyi"],["NCBITaxon%3A408140","Leptospira kmetyi serovar Malaysia"],["NCBITaxon%3A1049970","Leptospira kmetyi serovar Malaysia str. Bejo-Iso9"]]},{"id":"NCBITaxon:40841","l":"Succiniclasticum ruminis","na":1,"nb":3,"a":[["TED%3AAF-A0A1G6L1P5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G6L1P5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A40841","Succiniclasticum ruminis"],["NCBITaxon%3A1123323","Succiniclasticum ruminis DSM 9236"],["NCBITaxon%3A2775030","Succiniclasticum sp."]]},{"id":"NCBITaxon:40998","l":"Elsinoe australis","na":3,"nb":1,"a":[["TED%3AAF-A0A2P7YCG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P7YCG8-F1-model_v4_TED01"],["TED%3AAF-A0A4U7AWE5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4U7AWE5-F1-model_v4_TED02"],["TED%3AAF-A0A4U7AZW9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U7AZW9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A40998","Elsinoe australis"]]},{"id":"NCBITaxon:414004","l":"Cenarchaeum symbiosum (strain A)","na":3,"nb":1,"a":[["Pfam%3APF06973","Domain of unknown function (DUF1297)"],["Pfam%3APF06849","Protein of unknown function (DUF1246)"],["Pfam%3APF01950","Fructose-1,6-bisphosphatase"]],"b":[["NCBITaxon%3A414004","Cenarchaeum symbiosum A"]]},{"id":"NCBITaxon:416269","l":"Actinobacillus pleuropneumoniae serotype 5b (strain L20)","na":3,"nb":1,"a":[["Pfam%3APF11412","Thiol:disulfide interchange protein DsbD, N-terminal"],["Pfam%3APF18254","HMW1 domain 2"],["Pfam%3APF18071","HMW1C N-terminal"]],"b":[["NCBITaxon%3A416269","Actinobacillus pleuropneumoniae serovar 5b str. L20"]]},{"id":"NCBITaxon:41673","l":"Acidianus brierleyi","na":3,"nb":1,"a":[["TED%3AAF-A0A2U9IEJ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U9IEJ0-F1-model_v4_TED01"],["TED%3AAF-A0A2U9IC53-F1-model_v4_TED01","TED novel fold AF-A0A2U9IC53-F1-model_v4_TED01"],["TED%3AAF-A0A2U9ICQ8-F1-model_v4_TED02","TED novel fold AF-A0A2U9ICQ8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A41673","Acidianus brierleyi"]]},{"id":"NCBITaxon:420275","l":"Attheya septentrionalis","na":3,"nb":1,"a":[["TED%3AAF-A0A6T7ICE9-F1-model_v4_TED01","TED novel fold AF-A0A6T7ICE9-F1-model_v4_TED01"],["TED%3AAF-A0A7S2UDP5-F1-model_v4_TED02","TED novel fold AF-A0A7S2UDP5-F1-model_v4_TED02"],["TED%3AAF-A0A7S2XPC0-F1-model_v4_TED01","TED novel fold AF-A0A7S2XPC0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A420275","Attheya septentrionalis"]]},{"id":"NCBITaxon:426428","l":"Fusarium oxysporum f. sp. lycopersici (strain 4287 / CBS 123668 / FGSC 9935 / NRRL 34936)","na":3,"nb":1,"a":[["Pfam%3APF27599","CcsR C-terminal domain"],["Pfam%3APF09421","Frequency clock protein"],["Pfam%3APF09729","Gti1/Pac2 family"]],"b":[["NCBITaxon%3A426428","Fusarium oxysporum f. sp. lycopersici 4287"]]},{"id":"NCBITaxon:43049","l":"Tilletia indica","na":3,"nb":1,"a":[["TED%3AAF-A0A177T6N8-F1-model_v4_TED02","TED novel fold AF-A0A177T6N8-F1-model_v4_TED02"],["TED%3AAF-A0A177T862-F1-model_v4_TED02","TED novel fold AF-A0A177T862-F1-model_v4_TED02"],["TED%3AAF-A0A177TT98-F1-model_v4_TED04","TED novel fold AF-A0A177TT98-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A43049","Tilletia indica"]]},{"id":"NCBITaxon:436515","l":"Variovorax boronicumulans","na":1,"nb":3,"a":[["TED%3AAF-A0A250DMB0-F1-model_v4_TED01","TED novel fold AF-A0A250DMB0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A436515","Variovorax boronicumulans"],["NCBITaxon%3A1321609","Variovorax boronicumulans NBRC 103145"],["NCBITaxon%3A34073","Variovorax paradoxus"]]},{"id":"NCBITaxon:43662","l":"Pseudoalteromonas piscicida","na":1,"nb":3,"a":[["Pfam%3APF08329","Chitinase A, N-terminal domain"]],"b":[["NCBITaxon%3A43662","Pseudoalteromonas piscicida"],["NCBITaxon%3A1279016","Pseudoalteromonas piscicida ATCC 15057"],["NCBITaxon%3A53249","Pseudoalteromonas sp."]]},{"id":"NCBITaxon:43768","l":"Corynebacterium matruchotii","na":1,"nb":3,"a":[["TED%3AAF-A0A6H9XP04-F1-model_v4_TED01","TED novel fold AF-A0A6H9XP04-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A43768","Corynebacterium matruchotii"],["NCBITaxon%3A553207","Corynebacterium matruchotii ATCC 14266"],["NCBITaxon%3A566549","Corynebacterium matruchotii ATCC 33806"]]},{"id":"NCBITaxon:44008","l":"Enterococcus cecorum","na":1,"nb":3,"a":[["TED%3AAF-A0A200I1A2-F1-model_v4_TED01","TED novel fold AF-A0A200I1A2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A44008","Enterococcus cecorum"],["NCBITaxon%3A1121864","Enterococcus cecorum DSM 20682 = ATCC 43198"],["NCBITaxon%3A1352","Enterococcus faecium"]]},{"id":"NCBITaxon:444158","l":"Methanococcus maripaludis (strain C6 / ATCC BAA-1332)","na":3,"nb":1,"a":[["Pfam%3APF06847","Archaeal Peptidase A24 C-terminus Type II"],["Pfam%3APF09888","Uncharacterized protein conserved in archaea (DUF2115)"],["Pfam%3APF05165","GTP cyclohydrolase III"]],"b":[["NCBITaxon%3A444158","Methanococcus maripaludis C6"]]},{"id":"NCBITaxon:45133","l":"Lasiodiplodia theobromae","na":3,"nb":1,"a":[["TED%3AAF-A0A5N5DCC3-F1-model_v4_TED01","TED novel fold AF-A0A5N5DCC3-F1-model_v4_TED01"],["TED%3AAF-A0A5N5DDT9-F1-model_v4_TED01","TED novel fold AF-A0A5N5DDT9-F1-model_v4_TED01"],["TED%3AAF-A0A5N5DLG2-F1-model_v4_TED02","TED novel fold AF-A0A5N5DLG2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A45133","Lasiodiplodia theobromae"]]},{"id":"NCBITaxon:454130","l":"Aspergillus calidoustus","na":3,"nb":1,"a":[["Pfam%3APF28380","Sesquiterpene cyclase astC-like C-terminal domain"],["TED%3AAF-A0A0U5FXA2-F1-model_v4_TED01","TED novel fold AF-A0A0U5FXA2-F1-model_v4_TED01"],["TED%3AAF-A0A0U5GJ59-F1-model_v4_TED01","TED novel fold AF-A0A0U5GJ59-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A454130","Aspergillus calidoustus"]]},{"id":"NCBITaxon:46158","l":"Actinomadura citrea","na":1,"nb":3,"a":[["TED%3AAF-A0A7Y9GGR5-F1-model_v4_TED05","TED novel fold AF-A0A7Y9GGR5-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A46158","Actinomadura citrea"],["NCBITaxon%3A46161","Actinomadura kijaniata"],["NCBITaxon%3A1220561","Actinomadura kijaniata NBRC 14229"]]},{"id":"NCBITaxon:463","l":"Fluoribacter dumoffii","na":1,"nb":3,"a":[["TED%3AAF-A0A377G6U6-F1-model_v4_TED01","TED novel fold AF-A0A377G6U6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A463","Fluoribacter dumoffii"],["NCBITaxon%3A1094715","Fluoribacter dumoffii NY 23"],["NCBITaxon%3A1094714","Fluoribacter dumoffii Tex-KL"]]},{"id":"NCBITaxon:46610","l":"Geobacter sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A399I484-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A399I484-F1-model_v4_TED02"],["TED%3AAF-A0A3N9VD38-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3N9VD38-F1-model_v4_TED02"],["TED%3AAF-A0A3N9V9F3-F1-model_v4_TED01","TED novel fold AF-A0A3N9V9F3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A46610","Geobacter sp."]]},{"id":"NCBITaxon:470137","l":"Brucella suis (strain ATCC 23445 / NCTC 10510)","na":3,"nb":1,"a":[["Pfam%3APF07930","D-aminopeptidase, domain B"],["Pfam%3APF07378","Flagellar protein FlbT"],["PROSITE%3APS00648","Bacterial ribonuclease P protein component signature"]],"b":[["NCBITaxon%3A470137","Brucella suis ATCC 23445"]]},{"id":"NCBITaxon:471871","l":"Clostridium sporogenes (strain ATCC 15579)","na":3,"nb":1,"a":[["Pfam%3APF27077","Exosporium protein A"],["Pfam%3APF27268","Exosporium protein B"],["Pfam%3APF25250","Domain of unknown function (DUF7852)"]],"b":[["NCBITaxon%3A471871","Clostridium sporogenes ATCC 15579"]]},{"id":"NCBITaxon:47660","l":"Pseudomonas sp. (strain ADP)","na":3,"nb":1,"a":[["Pfam%3APF21986","Allophanate hydrolase C-terminal domain"],["Pfam%3APF09663","Amidohydrolase ring-opening protein (Amido_AtzD_TrzD)"],["Pfam%3APF13318","1-carboxybiuret hydrolase subunit AtzG-like"]],"b":[["NCBITaxon%3A47660","Pseudomonas sp. ADP"]]},{"id":"NCBITaxon:477690","l":"Lishizhenia tianjinensis","na":3,"nb":1,"a":[["TED%3AAF-A0A1I6Y9W8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I6Y9W8-F1-model_v4_TED01"],["TED%3AAF-A0A1I6YTM9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I6YTM9-F1-model_v4_TED02"],["TED%3AAF-A0A1I6XV16-F1-model_v4_TED01","TED novel fold AF-A0A1I6XV16-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A477690","Lishizhenia tianjinensis"]]},{"id":"NCBITaxon:478008","l":"Escherichia coli O157:H7 (strain EC869)","na":3,"nb":1,"a":[["Pfam%3APF21111","CDI toxin restriction endonuclease-like domain"],["Pfam%3APF21483","Toxin CdiA-like, helical domain"],["Pfam%3APF07262","CDI immunity protein"]],"b":[["NCBITaxon%3A478008","Escherichia coli O157:H7 str. EC869"]]},{"id":"NCBITaxon:47885","l":"Pseudomonas oryzihabitans","na":1,"nb":3,"a":[["TED%3AAF-A0A7X3T0R5-F1-model_v4_TED02","TED novel fold AF-A0A7X3T0R5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A47885","Pseudomonas oryzihabitans"],["NCBITaxon%3A1215113","Pseudomonas oryzihabitans NBRC 102199"],["NCBITaxon%3A1112217","Pseudomonas psychrotolerans L19"]]},{"id":"NCBITaxon:47886","l":"Pseudomonas luteola","na":1,"nb":3,"a":[["TED%3AAF-A0A2X2CC74-F1-model_v4_TED02","TED novel fold AF-A0A2X2CC74-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A47886","Pseudomonas luteola"],["NCBITaxon%3A1215106","Pseudomonas luteola NBRC 103146"],["NCBITaxon%3A1207076","Pseudomonas luteola XLDN4-9"]]},{"id":"NCBITaxon:482957","l":"","na":1,"nb":3,"a":[["TED%3AAF-A0A6P2XDC0-F1-model_v4_TED01","TED novel fold AF-A0A6P2XDC0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2015348","Burkholderia aenigmatica"],["NCBITaxon%3A292","Burkholderia cepacia"],["NCBITaxon%3A482957","Burkholderia lata"]]},{"id":"NCBITaxon:487821","l":"Xanthomonas arboricola pv. corylina","na":1,"nb":3,"a":[["TED%3AAF-A0A2S7CES6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S7CES6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A56448","Xanthomonas arboricola"],["NCBITaxon%3A487821","Xanthomonas arboricola pv. corylina"],["NCBITaxon%3A1306948","Xanthomonas arboricola pv. corylina str. NCCB 100457"]]},{"id":"NCBITaxon:491915","l":"","na":1,"nb":3,"a":[["TED%3AAF-B7GL61-F1-model_v4_TED01","TED highly-symmetric fold AF-B7GL61-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A33934","Anoxybacillus flavithermus"],["NCBITaxon%3A1185649","Anoxybacillus flavithermus subsp. flavithermus"],["NCBITaxon%3A491915","Anoxybacillus flavithermus WK1"]]},{"id":"NCBITaxon:5116","l":"Cryphonectria parasitica","na":1,"nb":3,"a":[["Pfam%3APF26980","Dicer-like protein 2, dsRNA binding domain"]],"b":[["NCBITaxon%3A331526","Kribbia dieselivorans"],["NCBITaxon%3A1223526","Kribbia dieselivorans NBRC 106261"],["NCBITaxon%3A5116","Cryphonectria parasitica"]]},{"id":"NCBITaxon:51663","l":"Pediococcus damnosus","na":1,"nb":3,"a":[["TED%3AAF-A0A0R2HKY5-F1-model_v4_TED01","TED novel fold AF-A0A0R2HKY5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A51663","Pediococcus damnosus"],["NCBITaxon%3A1089442","Pediococcus damnosus 9-6b"],["NCBITaxon%3A1448143","Pediococcus damnosus LMG 28219"]]},{"id":"NCBITaxon:520092","l":"Tahibacter aquaticus","na":3,"nb":1,"a":[["TED%3AAF-A0A4R6YT45-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R6YT45-F1-model_v4_TED01"],["TED%3AAF-A0A4R6Z707-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R6Z707-F1-model_v4_TED01"],["TED%3AAF-A0A4V3DLG3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A4V3DLG3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A520092","Tahibacter aquaticus"]]},{"id":"NCBITaxon:5286","l":"Rhodotorula toruloides","na":3,"nb":1,"a":[["PROSITE%3APS00488","Phenylalanine and histidine ammonia-lyases signature"],["TED%3AAF-A0A0K3C4G3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0K3C4G3-F1-model_v4_TED02"],["TED%3AAF-A0A0K3CJQ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0K3CJQ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5286","Rhodotorula toruloides"]]},{"id":"NCBITaxon:53412","l":"Metapseudomonas resinovorans","na":1,"nb":3,"a":[["Pfam%3APF11723","Homotrimeric ring hydroxylase"]],"b":[["NCBITaxon%3A53412","Metapseudomonas resinovorans"],["NCBITaxon%3A1123020","Metapseudomonas resinovorans DSM 21078"],["NCBITaxon%3A1245471","Metapseudomonas resinovorans NBRC 106553"]]},{"id":"NCBITaxon:5346","l":"Coprinopsis cinerea","na":3,"nb":1,"a":[["Pfam%3APF18251","Fungal defensin Copsin"],["Pfam%3APF16010","Cytochrome domain of cellobiose dehydrogenase"],["Pfam%3APF22807","TrAA12-like"]],"b":[["NCBITaxon%3A5346","Coprinopsis cinerea"]]},{"id":"NCBITaxon:537457","l":"Actinobacillus pleuropneumoniae serotype 7 (strain AP76)","na":3,"nb":1,"a":[["Pfam%3APF18254","HMW1 domain 2"],["Pfam%3APF18071","HMW1C N-terminal"],["TED%3AAF-B3H2V6-F1-model_v4_TED02","TED novel fold AF-B3H2V6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A537457","Actinobacillus pleuropneumoniae serovar 7 str. AP76"]]},{"id":"NCBITaxon:555217","l":"","na":1,"nb":3,"a":[["Pfam%3APF13154","Protein of unknown function (DUF3991)"]],"b":[["NCBITaxon%3A542","Zymomonas mobilis"],["NCBITaxon%3A120045","Zymomonas mobilis subsp. mobilis"],["NCBITaxon%3A555217","Zymomonas mobilis subsp. mobilis ATCC 10988"]]},{"id":"NCBITaxon:55529","l":"Guillardia theta","na":3,"nb":1,"a":[["Pfam%3APF06868","Protein of unknown function (DUF1257)"],["Pfam%3APF05421","Protein of unknown function (DUF751)"],["TED%3AAF-A0A7S4PQE0-F1-model_v4_TED01","TED novel fold AF-A0A7S4PQE0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A905079","Guillardia theta CCMP2712"]]},{"id":"NCBITaxon:559515","l":"Hyaloperonospora arabidopsidis (strain Emoy2)","na":3,"nb":1,"a":[["Pfam%3APF22223","ATR1 N-terminal domain"],["Pfam%3APF21421","Avirulence protein ATR1, WY-domain"],["Pfam%3APF16829","Avirulence protein ATR13, RxLR effector"]],"b":[["NCBITaxon%3A559515","Hyaloperonospora arabidopsidis Emoy2"]]},{"id":"NCBITaxon:5627","l":"Grifola frondosa","na":3,"nb":1,"a":[["Pfam%3APF14521","Lysine-specific metallo-endopeptidase"],["TED%3AAF-A0A1C7MDV5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1C7MDV5-F1-model_v4_TED02"],["TED%3AAF-A0A1C7MM25-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C7MM25-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5627","Grifola frondosa"]]},{"id":"NCBITaxon:56438","l":"Couchioplanes caeruleus","na":1,"nb":3,"a":[["TED%3AAF-A0A3N1FTH6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N1FTH6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A56428","Couchioplanes azureus"],["NCBITaxon%3A56438","Couchioplanes caeruleus"],["NCBITaxon%3A56427","Couchioplanes caeruleus subsp. caeruleus"]]},{"id":"NCBITaxon:5689","l":"Leishmania tarentolae","na":3,"nb":1,"a":[["Pfam%3APF18526","Thymine dioxygenase JBP1 DNA-binding domain"],["TED%3AAF-A0A640KN43-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A640KN43-F1-model_v4_TED01"],["TED%3AAF-A0A640KQE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A640KQE6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5689","Leishmania tarentolae"]]},{"id":"NCBITaxon:569365","l":"Cladophialophora immunda","na":3,"nb":1,"a":[["TED%3AAF-A0A0D2AQD9-F1-model_v4_TED02","TED novel fold AF-A0A0D2AQD9-F1-model_v4_TED02"],["TED%3AAF-A0A0D2BBC7-F1-model_v4_TED02","TED novel fold AF-A0A0D2BBC7-F1-model_v4_TED02"],["TED%3AAF-A0A0D2DH84-F1-model_v4_TED02","TED novel fold AF-A0A0D2DH84-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A569365","Cladophialophora immunda"]]},{"id":"NCBITaxon:569862","l":"Streptosporangium minutum","na":3,"nb":1,"a":[["TED%3AAF-A0A243RGM5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A243RGM5-F1-model_v4_TED01"],["TED%3AAF-A0A243RM70-F1-model_v4_TED01","TED novel fold AF-A0A243RM70-F1-model_v4_TED01"],["TED%3AAF-A0A243RXS2-F1-model_v4_TED01","TED novel fold AF-A0A243RXS2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A569862","Streptosporangium minutum"]]},{"id":"NCBITaxon:570156","l":"Pseudoalteromonas lipolytica","na":1,"nb":3,"a":[["TED%3AAF-A0A1I7CGN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I7CGN6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A570156","Pseudoalteromonas lipolytica"],["NCBITaxon%3A1315275","Pseudoalteromonas lipolytica LMEB 39"],["NCBITaxon%3A1452721","Pseudoalteromonas lipolytica SCSIO 04301"]]},{"id":"NCBITaxon:5791","l":"Badhamia polycephala","na":3,"nb":1,"a":[["Pfam%3APF09192","Actin-fragmin kinase, catalytic"],["Pfam%3APF08964","Beta/Gamma crystallin"],["Pfam%3APF03866","Hydrophobic abundant protein (HAP)"]],"b":[["NCBITaxon%3A5791","Badhamia polycephala"]]},{"id":"NCBITaxon:579112","l":"Vibrio cholerae serotype O1 (strain M66-2)","na":3,"nb":1,"a":[["Pfam%3APF21868","GlcNAc-binding protein A, third domain"],["Pfam%3APF20773","Immune inhibitor A-like, MAM domain"],["Pfam%3APF20774","Immune inhibitor A-like metallopeptidase, VEG domain"]],"b":[["NCBITaxon%3A579112","Vibrio cholerae M66-2"]]},{"id":"NCBITaxon:585056","l":"Escherichia coli O17:K52:H18 (strain UMN026 / ExPEC)","na":3,"nb":1,"a":[["Pfam%3APF27070","Rpn/YhgA-like nuclease family, C-terminal HTH domain"],["Pfam%3APF09134","Invasin, domain 3"],["Pfam%3APF21764","Invasin, domain 4"]],"b":[["NCBITaxon%3A585056","Escherichia coli UMN026"]]},{"id":"NCBITaxon:5861","l":"Plasmodium yoelii","na":1,"nb":3,"a":[["TED%3AAF-A0A078KHH8-F1-model_v4_TED01","TED novel fold AF-A0A078KHH8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5861","Plasmodium yoelii"],["NCBITaxon%3A283801","Plasmodium yoelii killicki"],["NCBITaxon%3A31274","Plasmodium yoelii nigeriensis"]]},{"id":"NCBITaxon:59374","l":"","na":1,"nb":3,"a":[["TED%3AAF-C9RP25-F1-model_v4_TED01","TED novel fold AF-C9RP25-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A833","Fibrobacter succinogenes"],["NCBITaxon%3A834","Fibrobacter succinogenes subsp. succinogenes"],["NCBITaxon%3A59374","Fibrobacter succinogenes subsp. succinogenes S85"]]},{"id":"NCBITaxon:5949","l":"Stylonychia lemnae","na":3,"nb":1,"a":[["TED%3AAF-A0A078AJL2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A078AJL2-F1-model_v4_TED01"],["TED%3AAF-A0A078B2T0-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A078B2T0-F1-model_v4_TED05"],["TED%3AAF-A0A078B0V0-F1-model_v4_TED02","TED novel fold AF-A0A078B0V0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A5949","Stylonychia lemnae"]]},{"id":"NCBITaxon:61652","l":"Serratia rubidaea","na":1,"nb":3,"a":[["TED%3AAF-A0A3S5F1U8-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A3S5F1U8-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A61652","Serratia rubidaea"],["NCBITaxon%3A1218096","Serratia rubidaea NBRC 103169"],["NCBITaxon%3A1255701","Serratia rubidaea TA_26"]]},{"id":"NCBITaxon:644223","l":"Komagataella phaffii (strain GS115 / ATCC 20864)","na":3,"nb":1,"a":[["Pfam%3APF05388","Carboxypeptidase Y pro-peptide"],["Pfam%3APF26001","Peroxin 8 protein-like, N-terminal domain"],["Pfam%3APF27812","PEX8 central TPR-like domain"]],"b":[["NCBITaxon%3A644223","Komagataella phaffii GS115"]]},{"id":"NCBITaxon:645657","l":"Bacillus subtilis subsp. natto (strain BEST195)","na":3,"nb":1,"a":[["Pfam%3APF24517","Carbohydrate-binding module family 96"],["Pfam%3APF20148","Domain of unknown function (DUF6531)"],["Pfam%3APF05593","RHS Repeat"]],"b":[["NCBITaxon%3A645657","Bacillus subtilis subsp. natto BEST195"]]},{"id":"NCBITaxon:648716","l":"Cohnella sp. AR92","na":3,"nb":1,"a":[["TED%3AAF-A0A3S0Z044-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S0Z044-F1-model_v4_TED01"],["TED%3AAF-A0A433RAW9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A433RAW9-F1-model_v4_TED01"],["TED%3AAF-A0A433RDT1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A433RDT1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A648716","Cohnella sp. AR92"]]},{"id":"NCBITaxon:65357","l":"Albugo candida","na":3,"nb":1,"a":[["TED%3AAF-A0A024G112-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A024G112-F1-model_v4_TED03"],["TED%3AAF-A0A024FUD4-F1-model_v4_TED02","TED novel fold AF-A0A024FUD4-F1-model_v4_TED02"],["TED%3AAF-A0A024GNU1-F1-model_v4_TED01","TED novel fold AF-A0A024GNU1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A65357","Albugo candida"]]},{"id":"NCBITaxon:65393","l":"","na":3,"nb":1,"a":[["Pfam%3APF13720","Udp N-acetylglucosamine O-acyltransferase; Domain 2"],["TED%3AAF-B7K6Y8-F1-model_v4_TED03","TED novel fold AF-B7K6Y8-F1-model_v4_TED03"],["TED%3AAF-B7KGW4-F1-model_v4_TED01","TED novel fold AF-B7KGW4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A65393","Gloeothece citriformis PCC 7424"]]},{"id":"NCBITaxon:65515","l":"Nonomuraea dietziae","na":1,"nb":3,"a":[["TED%3AAF-A0A7W5Y4U9-F1-model_v4_TED02","TED novel fold AF-A0A7W5Y4U9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A504797","Actinopolymorpha cephalotaxi"],["NCBITaxon%3A65515","Nonomuraea dietziae"],["NCBITaxon%3A1494959","Pseudogracilibacillus auburnensis"]]},{"id":"NCBITaxon:655844","l":"Metarhizium robertsii ARSEF 23","na":3,"nb":1,"a":[["Pfam%3APF07110","EthD domain"],["Pfam%3APF09421","Frequency clock protein"],["TED%3AAF-A0A0B2XHY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0B2XHY6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A655844","Metarhizium robertsii ARSEF 23"]]},{"id":"NCBITaxon:659","l":"Photobacterium phosphoreum","na":1,"nb":3,"a":[["Pfam%3APF02273","Acyl transferase"]],"b":[["NCBITaxon%3A318456","Photobacterium kishitanii"],["NCBITaxon%3A659","Photobacterium phosphoreum"],["NCBITaxon%3A1454202","Photobacterium phosphoreum ANT-2200"]]},{"id":"NCBITaxon:65959","l":"Acetobacter pomorum","na":1,"nb":3,"a":[["TED%3AAF-A0A2G4RD85-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G4RD85-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A65959","Acetobacter pomorum"],["NCBITaxon%3A945681","Acetobacter pomorum DM001"],["NCBITaxon%3A1307917","Acetobacter pomorum DSM 11825"]]},{"id":"NCBITaxon:660122","l":"Fusarium vanettenii (strain ATCC MYA-4622 / CBS 123669 / FGSC 9596 / NRRL 45880 / 77-13-4)","na":3,"nb":1,"a":[["Pfam%3APF17660","Polyglycine hydrolase-like, structural repeat"],["Pfam%3APF26719","ATPase synthesis protein 25, C-terminal TPR repeats"],["TED%3AAF-C7YNY6-F1-model_v4_TED02","TED highly-symmetric fold AF-C7YNY6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A660122","Fusarium vanettenii 77-13-4"]]},{"id":"NCBITaxon:660520","l":"Halogranum amylolyticum","na":3,"nb":1,"a":[["TED%3AAF-A0A1H8WPE4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H8WPE4-F1-model_v4_TED01"],["TED%3AAF-A0A1H8R6W4-F1-model_v4_TED02","TED novel fold AF-A0A1H8R6W4-F1-model_v4_TED02"],["TED%3AAF-A0A1H8T5Q7-F1-model_v4_TED02","TED novel fold AF-A0A1H8T5Q7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A660520","Halogranum amylolyticum"]]},{"id":"NCBITaxon:66271","l":"Pantoea stewartii subsp. stewartii","na":1,"nb":3,"a":[["Pfam%3APF11725","AvrE-family Type-III effector proteins (T3Es)"]],"b":[["NCBITaxon%3A66269","Pantoea stewartii"],["NCBITaxon%3A66271","Pantoea stewartii subsp. stewartii"],["NCBITaxon%3A660596","Pantoea stewartii subsp. stewartii DC283"]]},{"id":"NCBITaxon:664683","l":"Vreelandella titanicae","na":1,"nb":3,"a":[["TED%3AAF-A0A7Y6R1H5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y6R1H5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1761787","Halomonas sp. DSM 26667"],["NCBITaxon%3A664683","Vreelandella titanicae"],["NCBITaxon%3A1204738","Vreelandella titanicae BH1"]]},{"id":"NCBITaxon:67267","l":"Streptomyces alboflavus","na":3,"nb":1,"a":[["TED%3AAF-A0A1Z1WH37-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z1WH37-F1-model_v4_TED01"],["TED%3AAF-A0A291W4F3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A291W4F3-F1-model_v4_TED01"],["TED%3AAF-A0A291W5G3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A291W5G3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A67267","Streptomyces alboflavus"]]},{"id":"NCBITaxon:68040","l":"Streptomyces diastaticus subsp. diastaticus","na":1,"nb":3,"a":[["TED%3AAF-A0A6A0C936-F1-model_v4_TED02","TED novel fold AF-A0A6A0C936-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1956","Streptomyces diastaticus"],["NCBITaxon%3A68040","Streptomyces diastaticus subsp. diastaticus"],["NCBITaxon%3A53448","Streptomyces gougerotii"]]},{"id":"NCBITaxon:68197","l":"Streptomyces fimbriatus","na":1,"nb":3,"a":[["PROSITE%3APS00093","N-4 cytosine-specific DNA methylases signature"]],"b":[["NCBITaxon%3A1398493","Pseudocitrobacter faecalis"],["NCBITaxon%3A68197","Streptomyces fimbriatus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:685828","l":"Armatimonas rosea","na":3,"nb":1,"a":[["TED%3AAF-A0A7W9SS11-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7W9SS11-F1-model_v4_TED04"],["TED%3AAF-A0A7W9W617-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7W9W617-F1-model_v4_TED03"],["TED%3AAF-A0A7W9WAF2-F1-model_v4_TED04","TED novel fold AF-A0A7W9WAF2-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A685828","Armatimonas rosea"]]},{"id":"NCBITaxon:68886","l":"Theileria orientalis","na":3,"nb":1,"a":[["TED%3AAF-A0A2T7I0Y7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2T7I0Y7-F1-model_v4_TED02"],["TED%3AAF-A0A2T7ITL4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T7ITL4-F1-model_v4_TED01"],["TED%3AAF-A0A2T7IKV1-F1-model_v4_TED01","TED novel fold AF-A0A2T7IKV1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A68886","Theileria orientalis"]]},{"id":"NCBITaxon:690879","l":"Terrimicrobium sacchariphilum","na":3,"nb":1,"a":[["TED%3AAF-A0A146G6C7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A146G6C7-F1-model_v4_TED02"],["TED%3AAF-A0A146G3H0-F1-model_v4_TED03","TED novel fold AF-A0A146G3H0-F1-model_v4_TED03"],["TED%3AAF-A0A146GFR8-F1-model_v4_TED02","TED novel fold AF-A0A146GFR8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A690879","Terrimicrobium sacchariphilum"]]},{"id":"NCBITaxon:698986","l":"Olavius sp. associated proteobacterium Delta 1","na":3,"nb":1,"a":[["TED%3AAF-A0A6J4WR07-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6J4WR07-F1-model_v4_TED01"],["TED%3AAF-A0A6J4X3E0-F1-model_v4_TED01","TED novel fold AF-A0A6J4X3E0-F1-model_v4_TED01"],["TED%3AAF-A0A6J4XQQ0-F1-model_v4_TED01","TED novel fold AF-A0A6J4XQQ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A698986","Olavius sp. associated proteobacterium Delta 1"]]},{"id":"NCBITaxon:69974","l":"Mesorhizobium plurifarium","na":1,"nb":3,"a":[["PROSITE%3APS01349","Nodulation protein nodA signature"]],"b":[["NCBITaxon%3A69974","Mesorhizobium plurifarium"],["NCBITaxon%3A198626","Mesorhizobium plurifarium subsp. americum"],["NCBITaxon%3A391","Rhizobium sp."]]},{"id":"NCBITaxon:703342","l":"Myroides marinus","na":3,"nb":1,"a":[["TED%3AAF-A0A163X950-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A163X950-F1-model_v4_TED01"],["TED%3AAF-A0A1H6XJL5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1H6XJL5-F1-model_v4_TED03"],["TED%3AAF-A0A164A2Y1-F1-model_v4_TED02","TED novel fold AF-A0A164A2Y1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A703342","Myroides marinus"]]},{"id":"NCBITaxon:70996","l":"Herpetosiphon geysericola","na":3,"nb":1,"a":[["TED%3AAF-A0A0P6YGG3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0P6YGG3-F1-model_v4_TED01"],["TED%3AAF-A0A0P6XCC2-F1-model_v4_TED01","TED novel fold AF-A0A0P6XCC2-F1-model_v4_TED01"],["TED%3AAF-A0A0P6XIM9-F1-model_v4_TED03","TED novel fold AF-A0A0P6XIM9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A70996","Herpetosiphon geysericola"]]},{"id":"NCBITaxon:713059","l":"Candidatus Saccharibacteria bacterium oral taxon 488","na":3,"nb":1,"a":[["TED%3AAF-A0A6M5F8X7-F1-model_v4_TED02","TED novel fold AF-A0A6M5F8X7-F1-model_v4_TED02"],["TED%3AAF-A0A857VBF2-F1-model_v4_TED02","TED novel fold AF-A0A857VBF2-F1-model_v4_TED02"],["TED%3AAF-A0A857VF06-F1-model_v4_TED01","TED novel fold AF-A0A857VF06-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A713059","Candidatus Saccharibacteria bacterium oral taxon 488"]]},{"id":"NCBITaxon:71433","l":"Mesorhizobium amorphae","na":1,"nb":3,"a":[["TED%3AAF-A0A7Z1UR79-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Z1UR79-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A71433","Mesorhizobium amorphae"],["NCBITaxon%3A1449348","Mesorhizobium amorphae CCBAU 01583"],["NCBITaxon%3A1082933","Mesorhizobium amorphae CCNWGS0123"]]},{"id":"NCBITaxon:748857","l":"Roseimicrobium gellanilyticum","na":3,"nb":1,"a":[["TED%3AAF-A0A366H6K4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A366H6K4-F1-model_v4_TED02"],["TED%3AAF-A0A366HAW4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A366HAW4-F1-model_v4_TED02"],["TED%3AAF-A0A366HBA0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A366HBA0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A748857","Roseimicrobium gellanilyticum"]]},{"id":"NCBITaxon:749414","l":"","na":3,"nb":1,"a":[["Pfam%3APF14509","Glycosyl-hydrolase 97 C-terminal, oligomerisation"],["Pfam%3APF14508","Glycosyl-hydrolase 97 N-terminal"],["Pfam%3APF10566","Glycoside hydrolase 97"]],"b":[["NCBITaxon%3A749414","Streptomyces bingchenggensis BCW-1"]]},{"id":"NCBITaxon:754081","l":"Escherichia coli (strain STEC_O31)","na":3,"nb":1,"a":[["Pfam%3APF18624","CDI immunity protein"],["Pfam%3APF21726","Family of unknown function (DUF6862)"],["Pfam%3APF13332","Hemagglutinin repeat"]],"b":[["NCBITaxon%3A754081","Escherichia coli STEC_O31"]]},{"id":"NCBITaxon:758826","l":"Acidovorax radicis","na":1,"nb":3,"a":[["TED%3AAF-A0A561C4M3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A561C4M3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A758826","Acidovorax radicis"],["NCBITaxon%3A999386","Acidovorax radicis N35"],["NCBITaxon%3A999394","Acidovorax radicis N35v"]]},{"id":"NCBITaxon:765821","l":"uncultured Blautia sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A6N2W179-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A6N2W179-F1-model_v4_TED04"],["TED%3AAF-A0A1C5PFZ2-F1-model_v4_TED01","TED novel fold AF-A0A1C5PFZ2-F1-model_v4_TED01"],["TED%3AAF-A0A1C5UUR5-F1-model_v4_TED01","TED novel fold AF-A0A1C5UUR5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A765821","uncultured Blautia sp."]]},{"id":"NCBITaxon:78327","l":"Pseudomonas mosselii","na":1,"nb":3,"a":[["TED%3AAF-A0A2V4KNJ1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V4KNJ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A78327","Pseudomonas mosselii"],["NCBITaxon%3A1403339","Pseudomonas mosselii DSM 17497"],["NCBITaxon%3A1388763","Pseudomonas mosselii SJ10"]]},{"id":"NCBITaxon:79885","l":"Alkalihalophilus pseudofirmus","na":1,"nb":3,"a":[["TED%3AAF-A0A1Q8TV17-F1-model_v4_TED02","TED novel fold AF-A0A1Q8TV17-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A79885","Alkalihalophilus pseudofirmus"],["NCBITaxon%3A398511","Alkalihalophilus pseudofirmus OF4"],["NCBITaxon%3A83428","uncultured Bacillus sp."]]},{"id":"NCBITaxon:79967","l":"Erwinia pyrifoliae","na":1,"nb":3,"a":[["Pfam%3APF09589","HrpA pilus formation protein"]],"b":[["NCBITaxon%3A79967","Erwinia pyrifoliae"],["NCBITaxon%3A644651","Erwinia pyrifoliae DSM 12163"],["NCBITaxon%3A634499","Erwinia pyrifoliae Ep1/96"]]},{"id":"NCBITaxon:83555","l":"Chlamydia abortus","na":1,"nb":3,"a":[["TED%3AAF-A0A5C1D8N1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C1D8N1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A83555","Chlamydia abortus"],["NCBITaxon%3A1003238","Chlamydia abortus LLG"],["NCBITaxon%3A218497","Chlamydia abortus S26/3"]]},{"id":"NCBITaxon:83655","l":"Leclercia adecarboxylata","na":1,"nb":3,"a":[["TED%3AAF-A0A5B7XGB6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A5B7XGB6-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A42895","Enterobacter sp."],["NCBITaxon%3A83655","Leclercia adecarboxylata"],["NCBITaxon%3A911008","Leclercia adecarboxylata ATCC 23216 = NBRC 102595"]]},{"id":"NCBITaxon:84588","l":"Parasynechococcus marenigrum (strain WH8102)","na":3,"nb":1,"a":[["Pfam%3APF08936","Carboxysome Shell Carbonic Anhydrase, C-terminal"],["Pfam%3APF20686","Carboxysome Shell Carbonic Anhydrase, catalytic domain"],["Pfam%3APF20687","Carboxysome Shell Carbonic Anhydrase, N-terminal"]],"b":[["NCBITaxon%3A84588","Parasynechococcus marenigrum WH 8102"]]},{"id":"NCBITaxon:84635","l":"Bacillus sp. (strain GL1)","na":3,"nb":1,"a":[["Pfam%3APF25275","Golvesin C-terminal domain"],["Pfam%3APF07470","Glycosyl Hydrolase Family 88"],["Pfam%3APF08124","Polysaccharide lyase family 8, N terminal alpha-helical domain"]],"b":[["NCBITaxon%3A84635","Bacillus sp. GL1"]]},{"id":"NCBITaxon:85581","l":"Photobacterium damselae subsp. damselae","na":1,"nb":3,"a":[["TED%3AAF-A0A850QXP5-F1-model_v4_TED01","TED novel fold AF-A0A850QXP5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A38293","Photobacterium damselae"],["NCBITaxon%3A85581","Photobacterium damselae subsp. damselae"],["NCBITaxon%3A675817","Photobacterium damselae subsp. damselae CIP 102761"]]},{"id":"NCBITaxon:86029","l":"Bacillus subtilis subsp. natto","na":1,"nb":3,"a":[["Pfam%3APF13040","Fur-regulated basic protein B"]],"b":[["NCBITaxon%3A86029","Bacillus subtilis subsp. natto"],["NCBITaxon%3A645657","Bacillus subtilis subsp. natto BEST195"],["NCBITaxon%3A1248410","Bacillus subtilis subsp. natto HSF 1410"]]},{"id":"NCBITaxon:888027","l":"Lactobacillus delbrueckii subsp. lactis DSM 20072","na":1,"nb":3,"a":[["TED%3AAF-A0A0R1JCR6-F1-model_v4_TED01","TED novel fold AF-A0A0R1JCR6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1584","Lactobacillus delbrueckii"],["NCBITaxon%3A29397","Lactobacillus delbrueckii subsp. lactis"],["NCBITaxon%3A888027","Lactobacillus delbrueckii subsp. lactis DSM 20072"]]},{"id":"NCBITaxon:889282","l":"Polyangium spumosum","na":3,"nb":1,"a":[["TED%3AAF-A0A6N7PQI9-F1-model_v4_TED01","TED novel fold AF-A0A6N7PQI9-F1-model_v4_TED01"],["TED%3AAF-A0A6N7PTT9-F1-model_v4_TED02","TED novel fold AF-A0A6N7PTT9-F1-model_v4_TED02"],["TED%3AAF-A0A6N7Q2E0-F1-model_v4_TED01","TED novel fold AF-A0A6N7Q2E0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A889282","Polyangium spumosum"]]},{"id":"NCBITaxon:901","l":"Desulfovibrio piger","na":1,"nb":3,"a":[["TED%3AAF-A0A848CHH4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A848CHH4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A901","Desulfovibrio piger"],["NCBITaxon%3A411464","Desulfovibrio piger ATCC 29098"],["NCBITaxon%3A613189","Desulfovibrio piger GOR1"]]},{"id":"NCBITaxon:90262","l":"Absidia repens","na":3,"nb":1,"a":[["TED%3AAF-A0A1X2HE06-F1-model_v4_TED02","TED novel fold AF-A0A1X2HE06-F1-model_v4_TED02"],["TED%3AAF-A0A1X2I011-F1-model_v4_TED02","TED novel fold AF-A0A1X2I011-F1-model_v4_TED02"],["TED%3AAF-A0A1X2I4A9-F1-model_v4_TED01","TED novel fold AF-A0A1X2I4A9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A90262","Absidia repens"]]},{"id":"NCBITaxon:913107","l":"Pelolinea submarina","na":3,"nb":1,"a":[["TED%3AAF-A0A347ZP40-F1-model_v4_TED01","TED novel fold AF-A0A347ZP40-F1-model_v4_TED01"],["TED%3AAF-A0A347ZW01-F1-model_v4_TED02","TED novel fold AF-A0A347ZW01-F1-model_v4_TED02"],["TED%3AAF-A0A3E0AIB0-F1-model_v4_TED01","TED novel fold AF-A0A3E0AIB0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A913107","Pelolinea submarina"]]},{"id":"NCBITaxon:91324","l":"Lotharella globosa","na":3,"nb":1,"a":[["TED%3AAF-A0A7S4DGV9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S4DGV9-F1-model_v4_TED02"],["TED%3AAF-A0A7S4DM08-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4DM08-F1-model_v4_TED01"],["TED%3AAF-A0A7S4DYU3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4DYU3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A91324","Lotharella globosa"]]},{"id":"NCBITaxon:93064","l":"Sphingomonas koreensis","na":1,"nb":3,"a":[["TED%3AAF-A0A2M8WIB0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M8WIB0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A93064","Sphingomonas koreensis"],["NCBITaxon%3A1219046","Sphingomonas koreensis NBRC 16723"],["NCBITaxon%3A28214","Sphingomonas sp."]]},{"id":"NCBITaxon:94122","l":"Shewanella sp. ANA-3","na":3,"nb":1,"a":[["Pfam%3APF03883","Peroxide stress protein YaaA"],["Pfam%3APF04751","Dual-action ribosomal maturation protein DarP"],["Pfam%3APF04356","Protein of unknown function (DUF489)"]],"b":[["NCBITaxon%3A94122","Shewanella sp. ANA-3"]]},{"id":"NCBITaxon:94130","l":"Rhizophagus clarus","na":3,"nb":1,"a":[["TED%3AAF-A0A2Z6R1J4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z6R1J4-F1-model_v4_TED01"],["TED%3AAF-A0A2Z6SKM0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z6SKM0-F1-model_v4_TED01"],["TED%3AAF-A0A2Z6S4T9-F1-model_v4_TED04","TED novel fold AF-A0A2Z6S4T9-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A94130","Rhizophagus clarus"]]},{"id":"NCBITaxon:94132","l":"Ramlibacter tataouinensis","na":1,"nb":3,"a":[["TED%3AAF-A0A127JUU0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A127JUU0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1349425","Ramlibacter solisilvae"],["NCBITaxon%3A94132","Ramlibacter tataouinensis"],["NCBITaxon%3A365046","Ramlibacter tataouinensis TTB310"]]},{"id":"NCBITaxon:944289","l":"Collybiopsis luxurians FD-317 M1","na":3,"nb":1,"a":[["TED%3AAF-A0A0D0C9Q9-F1-model_v4_TED03","TED novel fold AF-A0A0D0C9Q9-F1-model_v4_TED03"],["TED%3AAF-A0A0D0CDF9-F1-model_v4_TED02","TED novel fold AF-A0A0D0CDF9-F1-model_v4_TED02"],["TED%3AAF-A0A0D0CH84-F1-model_v4_TED02","TED novel fold AF-A0A0D0CH84-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A944289","Collybiopsis luxurians FD-317 M1"]]},{"id":"NCBITaxon:946362","l":"Salpingoeca rosetta (strain ATCC 50818 / BSB-021)","na":3,"nb":1,"a":[["TED%3AAF-F2UQV7-F1-model_v4_TED02","TED highly-symmetric fold AF-F2UQV7-F1-model_v4_TED02"],["TED%3AAF-F2UA55-F1-model_v4_TED01","TED novel fold AF-F2UA55-F1-model_v4_TED01"],["TED%3AAF-F2UT64-F1-model_v4_TED02","TED novel fold AF-F2UT64-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A946362","Salpingoeca rosetta"]]},{"id":"NCBITaxon:948756","l":"Paenibacillus macquariensis","na":1,"nb":3,"a":[["TED%3AAF-A0A1N7D9D7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1N7D9D7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A948756","Paenibacillus macquariensis"],["NCBITaxon%3A467974","Paenibacillus macquariensis subsp. defensor"],["NCBITaxon%3A1468","Paenibacillus macquariensis subsp. macquariensis"]]},{"id":"NCBITaxon:97331","l":"Arthrobotrys flagrans","na":3,"nb":1,"a":[["Pfam%3APF11710","G protein-coupled glucose receptor regulating Gpa2"],["Pfam%3APF11327","Egh16-like virulence factor"],["TED%3AAF-A0A436ZMZ5-F1-model_v4_TED02","TED novel fold AF-A0A436ZMZ5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A97331","Arthrobotrys flagrans"]]},{"id":"NCBITaxon:983506","l":"Thanatephorus cucumeris (strain AG1-IA)","na":3,"nb":1,"a":[["TED%3AAF-L8WQG2-F1-model_v4_TED01","TED novel fold AF-L8WQG2-F1-model_v4_TED01"],["TED%3AAF-L8WS62-F1-model_v4_TED02","TED novel fold AF-L8WS62-F1-model_v4_TED02"],["TED%3AAF-L8WX42-F1-model_v4_TED01","TED novel fold AF-L8WX42-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A983506","Rhizoctonia solani AG-1 IA"]]},{"id":"NCBITaxon:99822","l":"Streptococcus dysgalactiae subsp. dysgalactiae","na":1,"nb":3,"a":[["TED%3AAF-A0A380JYN4-F1-model_v4_TED01","TED novel fold AF-A0A380JYN4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1334","Streptococcus dysgalactiae"],["NCBITaxon%3A99822","Streptococcus dysgalactiae subsp. dysgalactiae"],["NCBITaxon%3A663952","Streptococcus dysgalactiae subsp. dysgalactiae ATCC 27957"]]},{"id":"NCBITaxon:1004901","l":"Gordonia iterans","na":1,"nb":2,"a":[["TED%3AAF-A0A2S0KFK9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S0KFK9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1004901","Gordonia iterans"],["NCBITaxon%3A198437","uncultured Gordonia sp."]]},{"id":"NCBITaxon:1005043","l":"Candidatus Regiella insecticola 5.15","na":2,"nb":1,"a":[["TED%3AAF-G2H098-F1-model_v4_TED01","TED highly-symmetric fold AF-G2H098-F1-model_v4_TED01"],["TED%3AAF-G2H102-F1-model_v4_TED04","TED novel fold AF-G2H102-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1005043","Candidatus Regiella insecticola 5.15"]]},{"id":"NCBITaxon:1005994","l":"Trabulsiella guamensis ATCC 49490","na":1,"nb":2,"a":[["TED%3AAF-A0A084ZLG9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A084ZLG9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A158852","Trabulsiella guamensis"],["NCBITaxon%3A1005994","Trabulsiella guamensis ATCC 49490"]]},{"id":"NCBITaxon:1006155","l":"Paenilisteria weihenstephanensis","na":1,"nb":2,"a":[["TED%3AAF-A0A1S7FXD4-F1-model_v4_TED02","TED novel fold AF-A0A1S7FXD4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1006155","Paenilisteria weihenstephanensis"],["NCBITaxon%3A1265845","Paenilisteria weihenstephanensis FSL R9-0317"]]},{"id":"NCBITaxon:1007099","l":"Pseudomonas kuykendallii","na":1,"nb":2,"a":[["TED%3AAF-A0A2W5F5H8-F1-model_v4_TED05","TED novel fold AF-A0A2W5F5H8-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1007099","Pseudomonas kuykendallii"],["NCBITaxon%3A306","Pseudomonas sp."]]},{"id":"NCBITaxon:100787","l":"Verticillium longisporum","na":2,"nb":1,"a":[["TED%3AAF-A0A0G4L720-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G4L720-F1-model_v4_TED01"],["TED%3AAF-A0A0G4KSC1-F1-model_v4_TED01","TED novel fold AF-A0A0G4KSC1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A100787","Verticillium longisporum"]]},{"id":"NCBITaxon:102862","l":"Proteus penneri","na":1,"nb":2,"a":[["TED%3AAF-A0A0G4Q3D2-F1-model_v4_TED01","TED novel fold AF-A0A0G4Q3D2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A102862","Proteus penneri"],["NCBITaxon%3A471881","Proteus penneri ATCC 35198"]]},{"id":"NCBITaxon:1032476","l":"Nonomuraea soli","na":2,"nb":1,"a":[["TED%3AAF-A0A7W0HQS4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7W0HQS4-F1-model_v4_TED03"],["TED%3AAF-A0A7W0CFM2-F1-model_v4_TED01","TED novel fold AF-A0A7W0CFM2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1032476","Nonomuraea soli"]]},{"id":"NCBITaxon:1034831","l":"Rhizochromulina marina","na":2,"nb":1,"a":[["TED%3AAF-A0A7S2SVZ9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S2SVZ9-F1-model_v4_TED02"],["TED%3AAF-A0A7S2WVI7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2WVI7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1034831","Rhizochromulina marina"]]},{"id":"NCBITaxon:1034943","l":"Legionella massiliensis","na":2,"nb":1,"a":[["TED%3AAF-A0A078KZR2-F1-model_v4_TED02","TED novel fold AF-A0A078KZR2-F1-model_v4_TED02"],["TED%3AAF-A0A078L1Y9-F1-model_v4_TED02","TED novel fold AF-A0A078L1Y9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1034943","Legionella massiliensis"]]},{"id":"NCBITaxon:1036020","l":"Nocardioides soli","na":2,"nb":1,"a":[["TED%3AAF-A0A7W4VSZ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W4VSZ4-F1-model_v4_TED01"],["TED%3AAF-A0A7W4Z0C7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W4Z0C7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1036020","Nocardioides soli"]]},{"id":"NCBITaxon:1043004","l":"Aureobasidium namibiae CBS 147.97","na":2,"nb":1,"a":[["TED%3AAF-A0A074X7C9-F1-model_v4_TED05","TED novel fold AF-A0A074X7C9-F1-model_v4_TED05"],["TED%3AAF-A0A074XB98-F1-model_v4_TED02","TED novel fold AF-A0A074XB98-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1043004","Aureobasidium namibiae CBS 147.97"]]},{"id":"NCBITaxon:1045004","l":"Oenococcus kitaharae DSM 17330","na":1,"nb":2,"a":[["TED%3AAF-G9WIN5-F1-model_v4_TED02","TED highly-symmetric fold AF-G9WIN5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A336988","Oenococcus kitaharae"],["NCBITaxon%3A1045004","Oenococcus kitaharae DSM 17330"]]},{"id":"NCBITaxon:1045775","l":"Paenibacillus catalpae","na":2,"nb":1,"a":[["TED%3AAF-A0A1I2B153-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2B153-F1-model_v4_TED01"],["TED%3AAF-A0A1I2FU75-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1I2FU75-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1045775","Paenibacillus catalpae"]]},{"id":"NCBITaxon:1045858","l":"","na":1,"nb":2,"a":[["TED%3AAF-G0EQD8-F1-model_v4_TED02","TED novel fold AF-G0EQD8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A84377","Brachyspira intermedia"],["NCBITaxon%3A1045858","Brachyspira intermedia PWS/A"]]},{"id":"NCBITaxon:104623","l":"Prodigiosinella confusarubida","na":2,"nb":1,"a":[["Pfam%3APF07254","Membrane-bound toxin component of toxin-antitoxin system"],["Pfam%3APF19507","Family of unknown function (DUF6041)"]],"b":[["NCBITaxon%3A104623","Prodigiosinella confusarubida"]]},{"id":"NCBITaxon:1047168","l":"Zymoseptoria brevis","na":2,"nb":1,"a":[["TED%3AAF-A0A0F4G6M4-F1-model_v4_TED01","TED novel fold AF-A0A0F4G6M4-F1-model_v4_TED01"],["TED%3AAF-A0A0F4GF48-F1-model_v4_TED01","TED novel fold AF-A0A0F4GF48-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1047168","Zymoseptoria brevis"]]},{"id":"NCBITaxon:1048689","l":"","na":2,"nb":1,"a":[["Pfam%3APF28043","Anti-phage protein KwaA"],["Pfam%3APF16162","Kiwa protein KwaB-like"]],"b":[["NCBITaxon%3A1048689","Escherichia coli O55:H7 str. RM12579"]]},{"id":"NCBITaxon:1048830","l":"Malacoplasma iowae 695","na":1,"nb":2,"a":[["TED%3AAF-A0A6P1LDJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6P1LDJ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2116","Malacoplasma iowae"],["NCBITaxon%3A1048830","Malacoplasma iowae 695"]]},{"id":"NCBITaxon:1049789","l":"Leptospira broomii serovar Hurstbridge str. 5399","na":1,"nb":2,"a":[["TED%3AAF-T0F5H5-F1-model_v4_TED02","TED novel fold AF-T0F5H5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A301541","Leptospira broomii"],["NCBITaxon%3A1049789","Leptospira broomii serovar Hurstbridge str. 5399"]]},{"id":"NCBITaxon:1050","l":"Thermochromatium tepidum","na":1,"nb":2,"a":[["Pfam%3APF02276","Photosynthetic reaction centre cytochrome C subunit"]],"b":[["NCBITaxon%3A1050","Thermochromatium tepidum"],["NCBITaxon%3A316276","Thermochromatium tepidum ATCC 43061"]]},{"id":"NCBITaxon:1052585","l":"","na":1,"nb":2,"a":[["TED%3AAF-G4P1P4-F1-model_v4_TED01","TED highly-symmetric fold AF-G4P1P4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A96241","Bacillus spizizenii"],["NCBITaxon%3A1052585","Bacillus spizizenii TU-B-10"]]},{"id":"NCBITaxon:105612","l":"Dellaglioa algida","na":1,"nb":2,"a":[["TED%3AAF-A0A5C6M980-F1-model_v4_TED02","TED novel fold AF-A0A5C6M980-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A105612","Dellaglioa algida"],["NCBITaxon%3A1423719","Dellaglioa algida DSM 15638"]]},{"id":"NCBITaxon:105841","l":"Anaerostipes caccae","na":1,"nb":2,"a":[["TED%3AAF-A0A6N2WKG2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N2WKG2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A105841","Anaerostipes caccae"],["NCBITaxon%3A411490","Anaerostipes caccae L1-92"]]},{"id":"NCBITaxon:105984","l":"Apiotrichum porosum","na":2,"nb":1,"a":[["TED%3AAF-A0A427XIN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A427XIN3-F1-model_v4_TED01"],["TED%3AAF-A0A427XP81-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A427XP81-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A105984","Apiotrichum porosum"]]},{"id":"NCBITaxon:1070861","l":"Bailinhaonella thermotolerans","na":2,"nb":1,"a":[["TED%3AAF-A0A3A4APG1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A4APG1-F1-model_v4_TED01"],["TED%3AAF-A0A3A4AX42-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A4AX42-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1070861","Bailinhaonella thermotolerans"]]},{"id":"NCBITaxon:1072389","l":"","na":2,"nb":1,"a":[["Pfam%3APF05730","CFEM domain"],["TED%3AAF-K1WGS2-F1-model_v4_TED01","TED highly-symmetric fold AF-K1WGS2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1072389","Drepanopeziza brunnea f. sp. 'multigermtubi' MB_m1"]]},{"id":"NCBITaxon:1072583","l":"Vreelandella boliviensis LC1","na":1,"nb":2,"a":[["TED%3AAF-A0A265DTH2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A265DTH2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A223527","Vreelandella boliviensis"],["NCBITaxon%3A1072583","Vreelandella boliviensis LC1"]]},{"id":"NCBITaxon:1073090","l":"Penicilliopsis zonata CBS 506.65","na":2,"nb":1,"a":[["TED%3AAF-A0A1L9S4H1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L9S4H1-F1-model_v4_TED01"],["TED%3AAF-A0A1L9SL11-F1-model_v4_TED01","TED novel fold AF-A0A1L9SL11-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1073090","Penicilliopsis zonata CBS 506.65"]]},{"id":"NCBITaxon:107327","l":"Pseudoalteromonas ulvae","na":1,"nb":2,"a":[["TED%3AAF-A0A244CSP0-F1-model_v4_TED01","TED novel fold AF-A0A244CSP0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A107327","Pseudoalteromonas ulvae"],["NCBITaxon%3A1315306","Pseudoalteromonas ulvae UL12"]]},{"id":"NCBITaxon:1074","l":"Rhodoblastus acidophilus","na":2,"nb":1,"a":[["PROSITE%3APS00969","Antenna complexes beta subunits signature"],["TED%3AAF-A0A6N8DR15-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8DR15-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1074","Rhodoblastus acidophilus"]]},{"id":"NCBITaxon:107401","l":"Tenacibaculum maritimum","na":1,"nb":2,"a":[["TED%3AAF-A0A5S9T7W6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5S9T7W6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A107401","Tenacibaculum maritimum"],["NCBITaxon%3A1349785","Tenacibaculum maritimum NCIMB 2154"]]},{"id":"NCBITaxon:1075417","l":"Catalinimonas alkaloidigena","na":1,"nb":2,"a":[["TED%3AAF-A0A1G9GY81-F1-model_v4_TED01","TED novel fold AF-A0A1G9GY81-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1075417","Catalinimonas alkaloidigena"],["NCBITaxon%3A1075416","Mooreia alkaloidigena"]]},{"id":"NCBITaxon:1076935","l":"Pyronema omphalodes (strain CBS 100304)","na":2,"nb":1,"a":[["TED%3AAF-U4KXW2-F1-model_v4_TED01","TED highly-symmetric fold AF-U4KXW2-F1-model_v4_TED01"],["TED%3AAF-U4LQ68-F1-model_v4_TED01","TED highly-symmetric fold AF-U4LQ68-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1076935","Pyronema omphalodes CBS 100304"]]},{"id":"NCBITaxon:1077972","l":"","na":1,"nb":2,"a":[["Pfam%3APF19906","C-glycoside deglycosidase beta subunit"]],"b":[["NCBITaxon%3A1665","Arthrobacter globiformis"],["NCBITaxon%3A1077972","Arthrobacter globiformis NBRC 12137"]]},{"id":"NCBITaxon:1077974","l":"Gordonia effusa NBRC 100432","na":1,"nb":2,"a":[["TED%3AAF-H0R5B3-F1-model_v4_TED01","TED highly-symmetric fold AF-H0R5B3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A263908","Gordonia effusa"],["NCBITaxon%3A1077974","Gordonia effusa NBRC 100432"]]},{"id":"NCBITaxon:1078773","l":"Herbaspirillum rubrisubalbicans M1","na":1,"nb":2,"a":[["TED%3AAF-A0A0U3LK61-F1-model_v4_TED02","TED novel fold AF-A0A0U3LK61-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A80842","Herbaspirillum rubrisubalbicans"],["NCBITaxon%3A1078773","Herbaspirillum rubrisubalbicans M1"]]},{"id":"NCBITaxon:1079859","l":"Pseudarcicella hirudinis","na":1,"nb":2,"a":[["TED%3AAF-A0A1I5W7M0-F1-model_v4_TED03","TED novel fold AF-A0A1I5W7M0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1434730","Dactylosporangium cerinum"],["NCBITaxon%3A1079859","Pseudarcicella hirudinis"]]},{"id":"NCBITaxon:1082188","l":"Strombidium rassoulzadegani","na":2,"nb":1,"a":[["TED%3AAF-A0A7S3CNG5-F1-model_v4_TED01","TED novel fold AF-A0A7S3CNG5-F1-model_v4_TED01"],["TED%3AAF-A0A7S3FZU1-F1-model_v4_TED01","TED novel fold AF-A0A7S3FZU1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1082188","Strombidium rassoulzadegani"]]},{"id":"NCBITaxon:1083","l":"Magnetospirillum molischianum","na":1,"nb":2,"a":[["PROSITE%3APS00969","Antenna complexes beta subunits signature"]],"b":[["NCBITaxon%3A1083","Magnetospirillum molischianum"],["NCBITaxon%3A1150626","Magnetospirillum molischianum DSM 120"]]},{"id":"NCBITaxon:1084421","l":"Sinomicrobium pectinilyticum","na":2,"nb":1,"a":[["TED%3AAF-A0A3N0EA19-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N0EA19-F1-model_v4_TED01"],["TED%3AAF-A0A3N0F5C6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3N0F5C6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1084421","Sinomicrobium pectinilyticum"]]},{"id":"NCBITaxon:1085623","l":"","na":1,"nb":2,"a":[["TED%3AAF-G4QL11-F1-model_v4_TED01","TED novel fold AF-G4QL11-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A300231","Brumicola nitratireducens"],["NCBITaxon%3A1085623","Brumicola nitratireducens FR1064"]]},{"id":"NCBITaxon:1088540","l":"Leptospira weilii serovar Topaz str. LT2116","na":2,"nb":1,"a":[["TED%3AAF-M3GVT4-F1-model_v4_TED02","TED highly-symmetric fold AF-M3GVT4-F1-model_v4_TED02"],["TED%3AAF-M3FSY3-F1-model_v4_TED01","TED novel fold AF-M3FSY3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1088540","Leptospira weilii serovar Topaz str. LT2116"]]},{"id":"NCBITaxon:1088868","l":"Commensalibacter intestini A911","na":1,"nb":2,"a":[["TED%3AAF-G6EZZ4-F1-model_v4_TED03","TED highly-symmetric fold AF-G6EZZ4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A479936","Commensalibacter intestini"],["NCBITaxon%3A1088868","Commensalibacter intestini A911"]]},{"id":"NCBITaxon:1089457","l":"Fusarium oxysporum f. sp. conglutinans race 2 54008","na":2,"nb":1,"a":[["TED%3AAF-X0H3K0-F1-model_v4_TED02","TED novel fold AF-X0H3K0-F1-model_v4_TED02"],["TED%3AAF-X0I8I2-F1-model_v4_TED02","TED novel fold AF-X0I8I2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1089457","Fusarium oxysporum f. sp. conglutinans race 2 54008"]]},{"id":"NCBITaxon:1094555","l":"Bartonella elizabethae F9251 = ATCC 49927","na":1,"nb":2,"a":[["TED%3AAF-J1K501-F1-model_v4_TED02","TED highly-symmetric fold AF-J1K501-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A807","Bartonella elizabethae"],["NCBITaxon%3A1094555","Bartonella elizabethae F9251 = ATCC 49927"]]},{"id":"NCBITaxon:1100720","l":"Limnohabitans sp. Rim28","na":1,"nb":2,"a":[["TED%3AAF-A0A2T7SZL1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T7SZL1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1907725","Limnohabitans sp."],["NCBITaxon%3A1100720","Limnohabitans sp. Rim28"]]},{"id":"NCBITaxon:1100822","l":"Streptomyces sp. AmelKG-E11A","na":2,"nb":1,"a":[["TED%3AAF-A0A1C6R3A1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C6R3A1-F1-model_v4_TED01"],["TED%3AAF-A0A1C6R678-F1-model_v4_TED01","TED novel fold AF-A0A1C6R678-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1100822","Streptomyces sp. AmelKG-E11A"]]},{"id":"NCBITaxon:1102","l":"Prosthecochloris aestuarii","na":1,"nb":2,"a":[["Pfam%3APF02327","Bacteriochlorophyll A protein"]],"b":[["NCBITaxon%3A1102","Prosthecochloris aestuarii"],["NCBITaxon%3A290512","Prosthecochloris aestuarii DSM 271"]]},{"id":"NCBITaxon:110365","l":"Gregarina niphandrodes","na":2,"nb":1,"a":[["TED%3AAF-A0A023AX34-F1-model_v4_TED01","TED novel fold AF-A0A023AX34-F1-model_v4_TED01"],["TED%3AAF-A0A023AXI4-F1-model_v4_TED03","TED novel fold AF-A0A023AXI4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A110365","Gregarina niphandrodes"]]},{"id":"NCBITaxon:1107882","l":"Mesorhizobium alhagi CCNWXJ12-2","na":1,"nb":2,"a":[["TED%3AAF-H0I1K0-F1-model_v4_TED01","TED novel fold AF-H0I1K0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A475067","Allomesorhizobium alhagi"],["NCBITaxon%3A1107882","Mesorhizobium alhagi CCNWXJ12-2"]]},{"id":"NCBITaxon:1110509","l":"","na":2,"nb":1,"a":[["Pfam%3APF05228","CHASE4 domain"],["Pfam%3APF08350","Methanogenesis regulatory protein FilR1, middle domain"]],"b":[["NCBITaxon%3A1110509","Methanothrix harundinacea 6Ac"]]},{"id":"NCBITaxon:1112204","l":"Gordonia polyisoprenivorans VH2","na":1,"nb":2,"a":[["TED%3AAF-H6N0Q7-F1-model_v4_TED01","TED novel fold AF-H6N0Q7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A84595","Gordonia polyisoprenivorans"],["NCBITaxon%3A1112204","Gordonia polyisoprenivorans VH2"]]},{"id":"NCBITaxon:1114856","l":"","na":1,"nb":2,"a":[["TED%3AAF-L9VUV1-F1-model_v4_TED01","TED novel fold AF-L9VUV1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A63128","Natronorubrum tibetense"],["NCBITaxon%3A1114856","Natronorubrum tibetense GA33"]]},{"id":"NCBITaxon:1116472","l":"Methyloglobulus morosus KoM1","na":1,"nb":2,"a":[["TED%3AAF-V5BKR0-F1-model_v4_TED01","TED highly-symmetric fold AF-V5BKR0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1410681","Methyloglobulus morosus"],["NCBITaxon%3A1116472","Methyloglobulus morosus KoM1"]]},{"id":"NCBITaxon:1117313","l":"Pseudoalteromonas arctica A 37-1-2","na":1,"nb":2,"a":[["TED%3AAF-A0A290S486-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A290S486-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A394751","Pseudoalteromonas arctica"],["NCBITaxon%3A1117313","Pseudoalteromonas arctica A 37-1-2"]]},{"id":"NCBITaxon:1120918","l":"Acetitomaculum ruminis DSM 5522","na":1,"nb":2,"a":[["TED%3AAF-A0A1I1ATM7-F1-model_v4_TED01","TED novel fold AF-A0A1I1ATM7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2382","Acetitomaculum ruminis"],["NCBITaxon%3A1120918","Acetitomaculum ruminis DSM 5522"]]},{"id":"NCBITaxon:1120923","l":"Acidocella aminolytica 101 = DSM 11237","na":1,"nb":2,"a":[["TED%3AAF-A0A0D6PBP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D6PBP8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A33998","Acidocella aminolytica"],["NCBITaxon%3A1120923","Acidocella aminolytica 101 = DSM 11237"]]},{"id":"NCBITaxon:1120926","l":"Acinetobacter gerneri DSM 14967 = CIP 107464 = MTCC 9824","na":1,"nb":2,"a":[["TED%3AAF-N8ZKV3-F1-model_v4_TED01","TED highly-symmetric fold AF-N8ZKV3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A202952","Acinetobacter gerneri"],["NCBITaxon%3A1120926","Acinetobacter gerneri DSM 14967 = CIP 107464 = MTCC 9824"]]},{"id":"NCBITaxon:1120927","l":"Acinetobacter tandoii DSM 14970 = CIP 107469","na":1,"nb":2,"a":[["TED%3AAF-R9BEH0-F1-model_v4_TED04","TED highly-symmetric fold AF-R9BEH0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A202954","Acinetobacter tandoii"],["NCBITaxon%3A1120927","Acinetobacter tandoii DSM 14970 = CIP 107469"]]},{"id":"NCBITaxon:1120928","l":"Acinetobacter tjernbergiae DSM 14971 = CIP 107465","na":1,"nb":2,"a":[["TED%3AAF-V2W927-F1-model_v4_TED01","TED highly-symmetric fold AF-V2W927-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A202955","Acinetobacter tjernbergiae"],["NCBITaxon%3A1120928","Acinetobacter tjernbergiae DSM 14971 = CIP 107465"]]},{"id":"NCBITaxon:1120940","l":"Actinomadura pelletieri DSM 43383","na":1,"nb":2,"a":[["TED%3AAF-A0A495QU85-F1-model_v4_TED02","TED novel fold AF-A0A495QU85-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A111805","Actinomadura pelletieri"],["NCBITaxon%3A1120940","Actinomadura pelletieri DSM 43383"]]},{"id":"NCBITaxon:1120964","l":"Algoriphagus boritolerans DSM 17298 = JCM 18970","na":1,"nb":2,"a":[["TED%3AAF-A0A1H5ZF82-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H5ZF82-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A308111","Algoriphagus boritolerans"],["NCBITaxon%3A1120964","Algoriphagus boritolerans DSM 17298 = JCM 18970"]]},{"id":"NCBITaxon:1120981","l":"Alysiella filiformis DSM 16848","na":1,"nb":2,"a":[["TED%3AAF-A0A286E5W8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A286E5W8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A194196","Alysiella filiformis"],["NCBITaxon%3A1120981","Alysiella filiformis DSM 16848"]]},{"id":"NCBITaxon:1120996","l":"Anaerosporobacter mobilis DSM 15930","na":1,"nb":2,"a":[["TED%3AAF-A0A1M7NGC0-F1-model_v4_TED01","TED novel fold AF-A0A1M7NGC0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A264463","Anaerosporobacter mobilis"],["NCBITaxon%3A1120996","Anaerosporobacter mobilis DSM 15930"]]},{"id":"NCBITaxon:1121022","l":"Asticcacaulis benevestitus DSM 16100 = ATCC BAA-896","na":1,"nb":2,"a":[["TED%3AAF-V4PT21-F1-model_v4_TED01","TED highly-symmetric fold AF-V4PT21-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A347481","Asticcacaulis benevestitus"],["NCBITaxon%3A1121022","Asticcacaulis benevestitus DSM 16100 = ATCC BAA-896"]]},{"id":"NCBITaxon:1121098","l":"Phocaeicola massiliensis B84634 = Timone 84634 = DSM 17679 = JCM 13223","na":1,"nb":2,"a":[["TED%3AAF-U6RRG8-F1-model_v4_TED01","TED highly-symmetric fold AF-U6RRG8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A204516","Phocaeicola massiliensis"],["NCBITaxon%3A1121098","Phocaeicola massiliensis B84634 = Timone 84634 = DSM 17679 = JCM 13223"]]},{"id":"NCBITaxon:1121132","l":"Butyrivibrio hungatei DSM 14810","na":1,"nb":2,"a":[["TED%3AAF-A0A1M7SJD3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M7SJD3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A185008","Butyrivibrio hungatei"],["NCBITaxon%3A1121132","Butyrivibrio hungatei DSM 14810"]]},{"id":"NCBITaxon:1121270","l":"","na":1,"nb":2,"a":[["TED%3AAF-A0A1T4LMW3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1T4LMW3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A178899","Carboxydocella thermautotrophica"],["NCBITaxon%3A1121270","Carboxydocella thermautotrophica DSM 16521"]]},{"id":"NCBITaxon:1121284","l":"Epilithonimonas bovis DSM 19482","na":1,"nb":2,"a":[["TED%3AAF-A0A1U7PTX5-F1-model_v4_TED01","TED novel fold AF-A0A1U7PTX5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A421530","Epilithonimonas bovis"],["NCBITaxon%3A1121284","Epilithonimonas bovis DSM 19482"]]},{"id":"NCBITaxon:1121301","l":"Paramaledivibacter caminithermalis DSM 15212","na":1,"nb":2,"a":[["TED%3AAF-A0A1M6LSW1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M6LSW1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A191027","Paramaledivibacter caminithermalis"],["NCBITaxon%3A1121301","Paramaledivibacter caminithermalis DSM 15212"]]},{"id":"NCBITaxon:1121324","l":"Peptoclostridium litorale DSM 5388","na":1,"nb":2,"a":[["TED%3AAF-A0A069RDW3-F1-model_v4_TED01","TED novel fold AF-A0A069RDW3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1557","Peptoclostridium litorale"],["NCBITaxon%3A1121324","Peptoclostridium litorale DSM 5388"]]},{"id":"NCBITaxon:1121325","l":"Romboutsia lituseburensis DSM 797","na":1,"nb":2,"a":[["TED%3AAF-A0A1G9LA77-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G9LA77-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1537","Romboutsia lituseburensis"],["NCBITaxon%3A1121325","Romboutsia lituseburensis DSM 797"]]},{"id":"NCBITaxon:1121326","l":"Clostridium magnum DSM 2767","na":1,"nb":2,"a":[["TED%3AAF-A0A162T1A8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A162T1A8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A33954","Clostridium magnum"],["NCBITaxon%3A1121326","Clostridium magnum DSM 2767"]]},{"id":"NCBITaxon:1121331","l":"Hathewaya proteolytica DSM 3090","na":1,"nb":2,"a":[["TED%3AAF-A0A1M6KJK5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M6KJK5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29365","Hathewaya proteolytica"],["NCBITaxon%3A1121331","Hathewaya proteolytica DSM 3090"]]},{"id":"NCBITaxon:1121391","l":"Desulfacinum infernum DSM 9756","na":1,"nb":2,"a":[["TED%3AAF-A0A1M5CF65-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M5CF65-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A35837","Desulfacinum infernum"],["NCBITaxon%3A1121391","Desulfacinum infernum DSM 9756"]]},{"id":"NCBITaxon:1121393","l":"Desulfatibacillum alkenivorans DSM 16219","na":1,"nb":2,"a":[["TED%3AAF-A0A1M6GB75-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M6GB75-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A259354","Desulfatibacillum alkenivorans"],["NCBITaxon%3A1121393","Desulfatibacillum alkenivorans DSM 16219"]]},{"id":"NCBITaxon:1121405","l":"Desulfococcus multivorans DSM 2059","na":1,"nb":2,"a":[["TED%3AAF-S7VDW8-F1-model_v4_TED02","TED highly-symmetric fold AF-S7VDW8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A897","Desulfococcus multivorans"],["NCBITaxon%3A1121405","Desulfococcus multivorans DSM 2059"]]},{"id":"NCBITaxon:1121421","l":"Desulforamulus aeronauticus DSM 10349","na":1,"nb":2,"a":[["TED%3AAF-A0A1M6XE41-F1-model_v4_TED01","TED novel fold AF-A0A1M6XE41-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A53343","Desulforamulus aeronauticus"],["NCBITaxon%3A1121421","Desulforamulus aeronauticus DSM 10349"]]},{"id":"NCBITaxon:1121424","l":"Desulfotruncus arcticus DSM 17038","na":1,"nb":2,"a":[["TED%3AAF-A0A1I2Z3E3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I2Z3E3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A341036","Desulfotruncus arcticus"],["NCBITaxon%3A1121424","Desulfotruncus arcticus DSM 17038"]]},{"id":"NCBITaxon:1121426","l":"Desulfoscipio geothermicus DSM 3669","na":1,"nb":2,"a":[["TED%3AAF-A0A1I6DXW2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I6DXW2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39060","Desulfoscipio geothermicus"],["NCBITaxon%3A1121426","Desulfoscipio geothermicus DSM 3669"]]},{"id":"NCBITaxon:1121448","l":"","na":1,"nb":2,"a":[["Pfam%3APF12139","Adenosine-5'-phosphosulfate reductase beta subunit"]],"b":[["NCBITaxon%3A879","Megalodesulfovibrio gigas"],["NCBITaxon%3A1121448","Megalodesulfovibrio gigas DSM 1382 = ATCC 19364"]]},{"id":"NCBITaxon:1121449","l":"Paucidesulfovibrio gracilis DSM 16080","na":1,"nb":2,"a":[["TED%3AAF-A0A1T4W1V7-F1-model_v4_TED03","TED novel fold AF-A0A1T4W1V7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A47158","Paucidesulfovibrio gracilis"],["NCBITaxon%3A1121449","Paucidesulfovibrio gracilis DSM 16080"]]},{"id":"NCBITaxon:1121451","l":"Maridesulfovibrio hydrothermalis AM13 = DSM 14728","na":1,"nb":2,"a":[["TED%3AAF-L0RH10-F1-model_v4_TED01","TED novel fold AF-L0RH10-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A191026","Maridesulfovibrio hydrothermalis"],["NCBITaxon%3A1121451","Maridesulfovibrio hydrothermalis AM13 = DSM 14728"]]},{"id":"NCBITaxon:1121898","l":"Flavobacterium subsaxonicum WB 4.1-42 = DSM 21790","na":1,"nb":2,"a":[["TED%3AAF-A0A0A2M8C2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A2M8C2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A426226","Flavobacterium subsaxonicum"],["NCBITaxon%3A1121898","Flavobacterium subsaxonicum WB 4.1-42 = DSM 21790"]]},{"id":"NCBITaxon:1121915","l":"Geoalkalibacter ferrihydriticus DSM 17813","na":1,"nb":2,"a":[["TED%3AAF-A0A0C2HTA4-F1-model_v4_TED03","TED novel fold AF-A0A0C2HTA4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A392333","Geoalkalibacter ferrihydriticus"],["NCBITaxon%3A1121915","Geoalkalibacter ferrihydriticus DSM 17813"]]},{"id":"NCBITaxon:1121923","l":"Glaciecola punicea ACAM 611","na":1,"nb":2,"a":[["TED%3AAF-H5T7Y4-F1-model_v4_TED01","TED novel fold AF-H5T7Y4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A56804","Glaciecola punicea"],["NCBITaxon%3A1121923","Glaciecola punicea ACAM 611"]]},{"id":"NCBITaxon:1121927","l":"Gordonia hirsuta DSM 44140 = NBRC 16056","na":1,"nb":2,"a":[["TED%3AAF-L7L8J6-F1-model_v4_TED01","TED highly-symmetric fold AF-L7L8J6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A53427","Gordonia hirsuta"],["NCBITaxon%3A1121927","Gordonia hirsuta DSM 44140 = NBRC 16056"]]},{"id":"NCBITaxon:1121950","l":"Hespellia stercorisuis DSM 15480","na":1,"nb":2,"a":[["TED%3AAF-A0A1M6UMY1-F1-model_v4_TED01","TED novel fold AF-A0A1M6UMY1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A180311","Hespellia stercorisuis"],["NCBITaxon%3A1121950","Hespellia stercorisuis DSM 15480"]]},{"id":"NCBITaxon:1122133","l":"Kaistia soli DSM 19436","na":1,"nb":2,"a":[["TED%3AAF-A0A1M5DFE2-F1-model_v4_TED01","TED novel fold AF-A0A1M5DFE2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A446684","Kaistia soli"],["NCBITaxon%3A1122133","Kaistia soli DSM 19436"]]},{"id":"NCBITaxon:1122169","l":"Legionella shakespearei DSM 23087","na":1,"nb":2,"a":[["TED%3AAF-A0A0W0YL59-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0W0YL59-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A45075","Legionella shakespearei"],["NCBITaxon%3A1122169","Legionella shakespearei DSM 23087"]]},{"id":"NCBITaxon:1122172","l":"","na":1,"nb":2,"a":[["Pfam%3APF28192","CRISPR-associated endoribonuclease Cas13a"]],"b":[["NCBITaxon%3A157691","Leptotrichia shahii"],["NCBITaxon%3A1122172","Leptotrichia shahii DSM 19757"]]},{"id":"NCBITaxon:1122177","l":"","na":1,"nb":2,"a":[["TED%3AAF-A0A2D0NEP3-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A2D0NEP3-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A70997","Flavilitoribacter nigricans"],["NCBITaxon%3A1122177","Flavilitoribacter nigricans DSM 23189 = NBRC 102662"]]},{"id":"NCBITaxon:1122189","l":"Malonomonas rubra DSM 5091","na":1,"nb":2,"a":[["TED%3AAF-A0A1M6IYP5-F1-model_v4_TED01","TED novel fold AF-A0A1M6IYP5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A57040","Malonomonas rubra"],["NCBITaxon%3A1122189","Malonomonas rubra DSM 5091"]]},{"id":"NCBITaxon:1122195","l":"Marinitoga hydrogenitolerans DSM 16785","na":1,"nb":2,"a":[["Pfam%3APF22362","Argonaute, middle domain, bacteria"]],"b":[["NCBITaxon%3A287990","Marinitoga hydrogenitolerans"],["NCBITaxon%3A1122195","Marinitoga hydrogenitolerans DSM 16785"]]},{"id":"NCBITaxon:1122247","l":"Mycolicibacterium hassiacum DSM 44199","na":1,"nb":2,"a":[["Pfam%3APF22422","Mannosylglycerate hydrolase MGH1-like glycoside hydrolase domain"]],"b":[["NCBITaxon%3A46351","Mycolicibacterium hassiacum"],["NCBITaxon%3A1122247","Mycolicibacterium hassiacum DSM 44199"]]},{"id":"NCBITaxon:1122252","l":"Marinospirillum celere","na":1,"nb":2,"a":[["TED%3AAF-A0A1I1DUZ3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1I1DUZ3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1122252","Marinospirillum celere"],["NCBITaxon%3A497722","Marinospirillum celere DSM 18438"]]},{"id":"NCBITaxon:1122941","l":"Pedobacter glucosidilyticus","na":1,"nb":2,"a":[["TED%3AAF-A0A0B8XLS8-F1-model_v4_TED02","TED novel fold AF-A0A0B8XLS8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1122941","Pedobacter glucosidilyticus"],["NCBITaxon%3A540906","Pedobacter glucosidilyticus DSM 23534"]]},{"id":"NCBITaxon:1122991","l":"","na":1,"nb":2,"a":[["TED%3AAF-A0A318IBD7-F1-model_v4_TED01","TED novel fold AF-A0A318IBD7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A228603","Hoylesella shahii"],["NCBITaxon%3A1122991","Hoylesella shahii DSM 15611 = JCM 12083"]]},{"id":"NCBITaxon:1123010","l":"Pseudoalteromonas denitrificans DSM 6059","na":1,"nb":2,"a":[["TED%3AAF-A0A1I1HP94-F1-model_v4_TED01","TED novel fold AF-A0A1I1HP94-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A43656","Pseudoalteromonas denitrificans"],["NCBITaxon%3A1123010","Pseudoalteromonas denitrificans DSM 6059"]]},{"id":"NCBITaxon:1123012","l":"Pseudobutyrivibrio xylanivorans DSM 14809","na":1,"nb":2,"a":[["TED%3AAF-A0A1M6KN30-F1-model_v4_TED01","TED novel fold AF-A0A1M6KN30-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A185007","Pseudobutyrivibrio xylanivorans"],["NCBITaxon%3A1123012","Pseudobutyrivibrio xylanivorans DSM 14809"]]},{"id":"NCBITaxon:1123071","l":"Rubritalea squalenifaciens DSM 18772","na":1,"nb":2,"a":[["TED%3AAF-A0A1M6J7A4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M6J7A4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A407226","Rubritalea squalenifaciens"],["NCBITaxon%3A1123071","Rubritalea squalenifaciens DSM 18772"]]},{"id":"NCBITaxon:1123078","l":"Runella zeae DSM 19591","na":1,"nb":2,"a":[["Pfam%3APF26164","Bacterial Gasdermin Family"]],"b":[["NCBITaxon%3A94255","Runella zeae"],["NCBITaxon%3A1123078","Runella zeae DSM 19591"]]},{"id":"NCBITaxon:1123272","l":"Parasphingorhabdus marina DSM 22363","na":1,"nb":2,"a":[["TED%3AAF-A0A1N6G6L0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1N6G6L0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A394732","Parasphingorhabdus marina"],["NCBITaxon%3A1123272","Parasphingorhabdus marina DSM 22363"]]},{"id":"NCBITaxon:1123282","l":"Sporobacter termitidis DSM 10068","na":1,"nb":2,"a":[["TED%3AAF-A0A1M5VTW1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M5VTW1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A44749","Sporobacter termitidis"],["NCBITaxon%3A1123282","Sporobacter termitidis DSM 10068"]]},{"id":"NCBITaxon:1123291","l":"Pelosinus propionicus DSM 13327","na":1,"nb":2,"a":[["TED%3AAF-A0A1I4HT33-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I4HT33-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A380084","Pelosinus propionicus"],["NCBITaxon%3A1123291","Pelosinus propionicus DSM 13327"]]},{"id":"NCBITaxon:1123352","l":"Tepidimicrobium xylanilyticum","na":1,"nb":2,"a":[["TED%3AAF-A0A1H3C0I4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H3C0I4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1123352","Tepidimicrobium xylanilyticum"],["NCBITaxon%3A437529","Tepidimicrobium xylanilyticum DSM 23310"]]},{"id":"NCBITaxon:1123367","l":"","na":1,"nb":2,"a":[["Pfam%3APF18566","Linalool dehydratase/isomerase"]],"b":[["NCBITaxon%3A76112","Thauera linaloolentis"],["NCBITaxon%3A1123367","Thauera linaloolentis 47Lol = DSM 12138"]]},{"id":"NCBITaxon:1123397","l":"Thiohalospira halophila DSM 15071","na":1,"nb":2,"a":[["TED%3AAF-A0A1I1UA86-F1-model_v4_TED02","TED novel fold AF-A0A1I1UA86-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A381300","Thiohalospira halophila"],["NCBITaxon%3A1123397","Thiohalospira halophila DSM 15071"]]},{"id":"NCBITaxon:1123498","l":"","na":1,"nb":2,"a":[["Pfam%3APF04205","FMN-binding domain"]],"b":[["NCBITaxon%3A184755","Vibrio ruber"],["NCBITaxon%3A1123498","Vibrio ruber DSM 16370"]]},{"id":"NCBITaxon:1124983","l":"Pseudomonas protegens CHA0","na":1,"nb":2,"a":[["Pfam%3APF18089","DAPG hydrolase PhiG domain"]],"b":[["NCBITaxon%3A380021","Pseudomonas protegens"],["NCBITaxon%3A1124983","Pseudomonas protegens CHA0"]]},{"id":"NCBITaxon:1124992","l":"Mycoplasma capricolum subsp. capripneumoniae 87001","na":2,"nb":1,"a":[["TED%3AAF-A0A1D5B5D7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1D5B5D7-F1-model_v4_TED02"],["TED%3AAF-A0A1D5B5J2-F1-model_v4_TED01","TED novel fold AF-A0A1D5B5J2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1124992","Mycoplasma capricolum subsp. capripneumoniae 87001"]]},{"id":"NCBITaxon:1125699","l":"Treponema maltophilum ATCC 51939","na":1,"nb":2,"a":[["TED%3AAF-S3JYS9-F1-model_v4_TED02","TED novel fold AF-S3JYS9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A51160","Treponema maltophilum"],["NCBITaxon%3A1125699","Treponema maltophilum ATCC 51939"]]},{"id":"NCBITaxon:1128398","l":"","na":1,"nb":2,"a":[["TED%3AAF-K0AXG8-F1-model_v4_TED02","TED highly-symmetric fold AF-K0AXG8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1556","Gottschalkia acidurici"],["NCBITaxon%3A1128398","Gottschalkia acidurici 9a"]]},{"id":"NCBITaxon:112903","l":"Propionispora vibrioides","na":1,"nb":2,"a":[["TED%3AAF-A0A1H8XC57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H8XC57-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A112903","Propionispora vibrioides"],["NCBITaxon%3A1123004","Propionispora vibrioides DSM 13305"]]},{"id":"NCBITaxon:1129374","l":"Alishewanella jeotgali KCTC 22429","na":1,"nb":2,"a":[["TED%3AAF-H3ZBB0-F1-model_v4_TED01","TED highly-symmetric fold AF-H3ZBB0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A545533","Alishewanella jeotgali"],["NCBITaxon%3A1129374","Alishewanella jeotgali KCTC 22429"]]},{"id":"NCBITaxon:1129793","l":"Paraglaciecola polaris LMG 21857","na":1,"nb":2,"a":[["TED%3AAF-K7ACJ4-F1-model_v4_TED01","TED novel fold AF-K7ACJ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A222814","Paraglaciecola polaris"],["NCBITaxon%3A1129793","Paraglaciecola polaris LMG 21857"]]},{"id":"NCBITaxon:1129897","l":"Nitrolancea hollandica Lb","na":1,"nb":2,"a":[["TED%3AAF-I4EL36-F1-model_v4_TED01","TED highly-symmetric fold AF-I4EL36-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1206749","Nitrolancea hollandica"],["NCBITaxon%3A1129897","Nitrolancea hollandica Lb"]]},{"id":"NCBITaxon:113107","l":"Streptococcus australis","na":1,"nb":2,"a":[["TED%3AAF-A0A4Q1ZLA9-F1-model_v4_TED02","TED novel fold AF-A0A4Q1ZLA9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A113107","Streptococcus australis"],["NCBITaxon%3A888833","Streptococcus australis ATCC 700641"]]},{"id":"NCBITaxon:1131730","l":"Neobacillus vireti LMG 21834","na":1,"nb":2,"a":[["TED%3AAF-W1SLV2-F1-model_v4_TED01","TED highly-symmetric fold AF-W1SLV2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A220686","Neobacillus vireti"],["NCBITaxon%3A1131730","Neobacillus vireti LMG 21834"]]},{"id":"NCBITaxon:113226","l":"Pseudocercospora musae","na":2,"nb":1,"a":[["TED%3AAF-A0A139I2J8-F1-model_v4_TED01","TED novel fold AF-A0A139I2J8-F1-model_v4_TED01"],["TED%3AAF-A0A139ICL8-F1-model_v4_TED01","TED novel fold AF-A0A139ICL8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A113226","Pseudocercospora musae"]]},{"id":"NCBITaxon:1133319","l":"Bacteroides reticulotermitis","na":1,"nb":2,"a":[["TED%3AAF-A0A840CY44-F1-model_v4_TED01","TED novel fold AF-A0A840CY44-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1133319","Bacteroides reticulotermitis"],["NCBITaxon%3A1445607","Bacteroides reticulotermitis JCM 10512"]]},{"id":"NCBITaxon:113653","l":"Geoglobus ahangari","na":2,"nb":1,"a":[["TED%3AAF-A0A7J3TIF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J3TIF4-F1-model_v4_TED01"],["TED%3AAF-A0A0F7ID24-F1-model_v4_TED02","TED novel fold AF-A0A0F7ID24-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A113653","Geoglobus ahangari"]]},{"id":"NCBITaxon:1137138","l":"Pleurotus ostreatus PC15","na":2,"nb":1,"a":[["PROSITE%3APS00956","Fungal hydrophobins signature"],["TED%3AAF-A0A067NEF3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A067NEF3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1137138","Pleurotus ostreatus PC15"]]},{"id":"NCBITaxon:1140002","l":"Enterococcus avium ATCC 14025","na":1,"nb":2,"a":[["TED%3AAF-S0RUC2-F1-model_v4_TED01","TED highly-symmetric fold AF-S0RUC2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A33945","Enterococcus avium"],["NCBITaxon%3A1140002","Enterococcus avium ATCC 14025"]]},{"id":"NCBITaxon:1141098","l":"Pseudomassariella vexata","na":2,"nb":1,"a":[["TED%3AAF-A0A1Y2E1L6-F1-model_v4_TED04","TED novel fold AF-A0A1Y2E1L6-F1-model_v4_TED04"],["TED%3AAF-A0A1Y2E2L4-F1-model_v4_TED01","TED novel fold AF-A0A1Y2E2L4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1141098","Pseudomassariella vexata"]]},{"id":"NCBITaxon:1141221","l":"Chryseobacterium taihuense","na":1,"nb":2,"a":[["TED%3AAF-A0A4U8WD57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8WD57-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1871047","Chryseobacterium sp."],["NCBITaxon%3A1141221","Chryseobacterium taihuense"]]},{"id":"NCBITaxon:114155","l":"Dichomitus squalens","na":2,"nb":1,"a":[["TED%3AAF-A0A4Q9MKV3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Q9MKV3-F1-model_v4_TED02"],["TED%3AAF-A0A4Q9PEE3-F1-model_v4_TED02","TED novel fold AF-A0A4Q9PEE3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A114155","Dichomitus squalens"]]},{"id":"NCBITaxon:114885","l":"Mycoplasmopsis maculosa","na":2,"nb":1,"a":[["TED%3AAF-A0A449B3M2-F1-model_v4_TED04","TED novel fold AF-A0A449B3M2-F1-model_v4_TED04"],["TED%3AAF-A0A449B4G6-F1-model_v4_TED03","TED novel fold AF-A0A449B4G6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A114885","Mycoplasmopsis maculosa"]]},{"id":"NCBITaxon:1149133","l":"Metapseudomonas furukawaii","na":2,"nb":1,"a":[["Pfam%3APF22632","Dihydroxybiphenyl dioxygenase BphC D1"],["PROSITE%3APS00082","Extradiol ring-cleavage dioxygenases signature"]],"b":[["NCBITaxon%3A1149133","Metapseudomonas furukawaii"]]},{"id":"NCBITaxon:1150298","l":"Fusicatenibacter saccharivorans","na":2,"nb":1,"a":[["TED%3AAF-A0A174K1Z5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A174K1Z5-F1-model_v4_TED01"],["TED%3AAF-A0A174J3Q6-F1-model_v4_TED01","TED novel fold AF-A0A174J3Q6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1150298","Fusicatenibacter saccharivorans"]]},{"id":"NCBITaxon:1153","l":"Pseudanabaena sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2W6YPX5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W6YPX5-F1-model_v4_TED01"],["TED%3AAF-A0A2W7B262-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W7B262-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1153","Pseudanabaena sp."]]},{"id":"NCBITaxon:115852","l":"Chlorobaculum thiosulfatiphilum","na":2,"nb":1,"a":[["Pfam%3APF02327","Bacteriochlorophyll A protein"],["Pfam%3APF27499","CsmB chlorosome envelope protein"]],"b":[["NCBITaxon%3A115852","Chlorobaculum thiosulfatiphilum"]]},{"id":"NCBITaxon:1158602","l":"Enterococcus raffinosus ATCC 49464","na":1,"nb":2,"a":[["TED%3AAF-R2R3Z5-F1-model_v4_TED02","TED highly-symmetric fold AF-R2R3Z5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A33945","Enterococcus avium"],["NCBITaxon%3A1158602","Enterococcus raffinosus ATCC 49464"]]},{"id":"NCBITaxon:1158610","l":"Enterococcus phoeniculicola ATCC BAA-412","na":1,"nb":2,"a":[["TED%3AAF-R3WN72-F1-model_v4_TED03","TED novel fold AF-R3WN72-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A154621","Enterococcus phoeniculicola"],["NCBITaxon%3A1158610","Enterococcus phoeniculicola ATCC BAA-412"]]},{"id":"NCBITaxon:1159556","l":"Ustilaginoidea virens","na":2,"nb":1,"a":[["Pfam%3APF06966","Protein of unknown function (DUF1295)"],["TED%3AAF-A0A1B5L5W2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1B5L5W2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1159556","Ustilaginoidea virens"]]},{"id":"NCBITaxon:115979","l":"Niallia nealsonii","na":1,"nb":2,"a":[["TED%3AAF-A0A2N0Z186-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N0Z186-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A115979","Niallia nealsonii"],["NCBITaxon%3A1202533","Niallia nealsonii AAU1"]]},{"id":"NCBITaxon:1161412","l":"Prevotella sp. ICM33","na":2,"nb":1,"a":[["TED%3AAF-X6PST8-F1-model_v4_TED01","TED novel fold AF-X6PST8-F1-model_v4_TED01"],["TED%3AAF-X6Q0D4-F1-model_v4_TED01","TED novel fold AF-X6Q0D4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1161412","Prevotella sp. ICM33"]]},{"id":"NCBITaxon:1161912","l":"Thermosipho africanus (strain H17ap60334)","na":2,"nb":1,"a":[["Pfam%3APF14487","ssDNA thymidine ADP-ribosyltransferase, DarT"],["TED%3AAF-K2PFI9-F1-model_v4_TED01","TED highly-symmetric fold AF-K2PFI9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1161912","Thermosipho africanus H17ap60334"]]},{"id":"NCBITaxon:1161919","l":"Erwinia piriflorinigrans CFBP 5888","na":1,"nb":2,"a":[["TED%3AAF-V5Z5E5-F1-model_v4_TED01","TED novel fold AF-V5Z5E5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A665097","Erwinia piriflorinigrans"],["NCBITaxon%3A1161919","Erwinia piriflorinigrans CFBP 5888"]]},{"id":"NCBITaxon:1163617","l":"","na":1,"nb":2,"a":[["TED%3AAF-S6ABZ5-F1-model_v4_TED01","TED highly-symmetric fold AF-S6ABZ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A649841","Sulfuricella denitrificans"],["NCBITaxon%3A1163617","Sulfuricella denitrificans skB26"]]},{"id":"NCBITaxon:1163748","l":"","na":1,"nb":2,"a":[["Pfam%3APF13205","Bacterial Ig-like domain"]],"b":[["NCBITaxon%3A2743","Marinobacter nauticus"],["NCBITaxon%3A1163748","Marinobacter nauticus ATCC 49840"]]},{"id":"NCBITaxon:1165092","l":"Lachnospiraceae bacterium JC7","na":2,"nb":1,"a":[["TED%3AAF-W3AP45-F1-model_v4_TED03","TED highly-symmetric fold AF-W3AP45-F1-model_v4_TED03"],["TED%3AAF-W3ATW4-F1-model_v4_TED02","TED highly-symmetric fold AF-W3ATW4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1165092","Lachnospiraceae bacterium JC7"]]},{"id":"NCBITaxon:1165861","l":"Puccinia striiformis f. sp. tritici PST-78","na":2,"nb":1,"a":[["TED%3AAF-A0A0L0VM11-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0L0VM11-F1-model_v4_TED01"],["TED%3AAF-A0A0L0VHH9-F1-model_v4_TED01","TED novel fold AF-A0A0L0VHH9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1165861","Puccinia striiformis f. sp. tritici PST-78"]]},{"id":"NCBITaxon:1166018","l":"Fibrella aestuarina BUZ 2","na":1,"nb":2,"a":[["TED%3AAF-I0K3W3-F1-model_v4_TED02","TED highly-symmetric fold AF-I0K3W3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A651143","Fibrella aestuarina"],["NCBITaxon%3A1166018","Fibrella aestuarina BUZ 2"]]},{"id":"NCBITaxon:1168035","l":"Tangfeifania diversioriginum","na":2,"nb":1,"a":[["TED%3AAF-A0A1M6L916-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M6L916-F1-model_v4_TED01"],["TED%3AAF-A0A1M6CKI2-F1-model_v4_TED02","TED novel fold AF-A0A1M6CKI2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1168035","Tangfeifania diversioriginum"]]},{"id":"NCBITaxon:1172204","l":"","na":2,"nb":1,"a":[["TED%3AAF-A0A446IBF2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A446IBF2-F1-model_v4_TED01"],["TED%3AAF-A0A446ICV2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A446ICV2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1172204","Paraclostridium sordellii 8483"]]},{"id":"NCBITaxon:1176240","l":"Vreelandella zhaodongensis","na":1,"nb":2,"a":[["Pfam%3APF07556","Protein of unknown function (DUF1538)"]],"b":[["NCBITaxon%3A3042314","Sphingomonas oryzagri"],["NCBITaxon%3A1176240","Vreelandella zhaodongensis"]]},{"id":"NCBITaxon:117681","l":"Pseudomonas gingeri","na":1,"nb":2,"a":[["TED%3AAF-A0A7Y7X9U2-F1-model_v4_TED01","TED novel fold AF-A0A7Y7X9U2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A117681","Pseudomonas gingeri"],["NCBITaxon%3A707248","Pseudomonas gingeri NCPPB 3146 = LMG 5327"]]},{"id":"NCBITaxon:1181734","l":"Escherichia coli (strain KTE188)","na":2,"nb":1,"a":[["Pfam%3APF18138","Bacterial HORMA domain family 1"],["Pfam%3APF18178","ATP nucleosidase Cap17-like, N-terminal"]],"b":[["NCBITaxon%3A1181734","Escherichia coli KTE188"]]},{"id":"NCBITaxon:1184387","l":"Mesotoga prima","na":1,"nb":2,"a":[["TED%3AAF-A0A101HJI5-F1-model_v4_TED01","TED novel fold AF-A0A101HJI5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1184387","Mesotoga prima"],["NCBITaxon%3A660470","Mesotoga prima MesG1.Ag.4.2"]]},{"id":"NCBITaxon:1185767","l":"Zunongwangia atlantica 22II14-10F7","na":1,"nb":2,"a":[["TED%3AAF-A0A1Y1SXH8-F1-model_v4_TED02","TED novel fold AF-A0A1Y1SXH8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1502297","Zunongwangia atlantica"],["NCBITaxon%3A1185767","Zunongwangia atlantica 22II14-10F7"]]},{"id":"NCBITaxon:1194083","l":"","na":1,"nb":2,"a":[["TED%3AAF-A0A077LU77-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A077LU77-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A99481","Nostocoides japonicum"],["NCBITaxon%3A1194083","Nostocoides japonicum T1-X7"]]},{"id":"NCBITaxon:1194405","l":"Pseudomonas syringae pv. actinidiae ICMP 19096","na":2,"nb":1,"a":[["TED%3AAF-A0A656JJL9-F1-model_v4_TED01","TED novel fold AF-A0A656JJL9-F1-model_v4_TED01"],["TED%3AAF-A0A656JZI9-F1-model_v4_TED01","TED novel fold AF-A0A656JZI9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1194405","Pseudomonas syringae pv. actinidiae ICMP 19096"]]},{"id":"NCBITaxon:1197174","l":"Alishewanella aestuarii B11","na":1,"nb":2,"a":[["TED%3AAF-J1Q2H4-F1-model_v4_TED02","TED novel fold AF-J1Q2H4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A453835","Alishewanella aestuarii"],["NCBITaxon%3A1197174","Alishewanella aestuarii B11"]]},{"id":"NCBITaxon:1198114","l":"Granulicella tundricola MP5ACTX9","na":1,"nb":2,"a":[["TED%3AAF-E8X149-F1-model_v4_TED01","TED highly-symmetric fold AF-E8X149-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A940615","Granulicella tundricola"],["NCBITaxon%3A1198114","Granulicella tundricola MP5ACTX9"]]},{"id":"NCBITaxon:1206781","l":"","na":1,"nb":2,"a":[["Pfam%3APF07737","Anthrax toxin lethal factor, N- and C-terminal domain"]],"b":[["NCBITaxon%3A44250","Paenibacillus alvei"],["NCBITaxon%3A1206781","Paenibacillus alvei DSM 29"]]},{"id":"NCBITaxon:1209778","l":"Salinisphaera japonica YTM-1","na":1,"nb":2,"a":[["TED%3AAF-A0A423PPR3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A423PPR3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1304270","Salinisphaera japonica"],["NCBITaxon%3A1209778","Salinisphaera japonica YTM-1"]]},{"id":"NCBITaxon:1209984","l":"Mycolicibacterium mageritense DSM 44476 = CIP 104973","na":1,"nb":2,"a":[["TED%3AAF-X5KX85-F1-model_v4_TED01","TED highly-symmetric fold AF-X5KX85-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A53462","Mycolicibacterium mageritense"],["NCBITaxon%3A1209984","Mycolicibacterium mageritense DSM 44476 = CIP 104973"]]},{"id":"NCBITaxon:1210091","l":"Nocardia ninae NBRC 108245","na":1,"nb":2,"a":[["TED%3AAF-A0A511MS59-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A511MS59-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A356145","Nocardia ninae"],["NCBITaxon%3A1210091","Nocardia ninae NBRC 108245"]]},{"id":"NCBITaxon:1210884","l":"Gemmata massiliana","na":2,"nb":1,"a":[["TED%3AAF-A0A6P2D5S8-F1-model_v4_TED01","TED novel fold AF-A0A6P2D5S8-F1-model_v4_TED01"],["TED%3AAF-A0A6P2D8H0-F1-model_v4_TED01","TED novel fold AF-A0A6P2D8H0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1210884","Gemmata massiliana"]]},{"id":"NCBITaxon:1214242","l":"Streptomyces collinus Tu 365","na":1,"nb":2,"a":[["TED%3AAF-S5VBX8-F1-model_v4_TED03","TED novel fold AF-S5VBX8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1214242","Streptomyces collinus Tu 365"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:1214928","l":"Thermus tengchongensis","na":1,"nb":2,"a":[["TED%3AAF-A0A7V4ANW9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V4ANW9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1214928","Thermus tengchongensis"],["NCBITaxon%3A1449357","Thermus tengchongensis YIM 77401"]]},{"id":"NCBITaxon:1215089","l":"Planococcus halocryophilus","na":1,"nb":2,"a":[["TED%3AAF-A0A1C7DVM0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C7DVM0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1215089","Planococcus halocryophilus"],["NCBITaxon%3A1005941","Planococcus halocryophilus Or1"]]},{"id":"NCBITaxon:1216006","l":"Vibrio aerogenes CECT 7868","na":1,"nb":2,"a":[["TED%3AAF-A0A1M5VN06-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M5VN06-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A92172","Vibrio aerogenes"],["NCBITaxon%3A1216006","Vibrio aerogenes CECT 7868"]]},{"id":"NCBITaxon:121759","l":"Paracoccidioides brasiliensis","na":2,"nb":1,"a":[["TED%3AAF-A0A1D2JC16-F1-model_v4_TED01","TED novel fold AF-A0A1D2JC16-F1-model_v4_TED01"],["TED%3AAF-A0A1E2XTS3-F1-model_v4_TED02","TED novel fold AF-A0A1E2XTS3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A121759","Paracoccidioides brasiliensis"]]},{"id":"NCBITaxon:1217641","l":"Acinetobacter baumannii NIPH 615","na":1,"nb":2,"a":[["TED%3AAF-A0A5K1MMB0-F1-model_v4_TED01","TED novel fold AF-A0A5K1MMB0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A1217641","Acinetobacter baumannii NIPH 615"]]},{"id":"NCBITaxon:1218108","l":"Empedobacter brevis NBRC 14943 = ATCC 43319","na":1,"nb":2,"a":[["TED%3AAF-A0A511NGL9-F1-model_v4_TED02","TED novel fold AF-A0A511NGL9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A247","Empedobacter brevis"],["NCBITaxon%3A1218108","Empedobacter brevis NBRC 14943 = ATCC 43319"]]},{"id":"NCBITaxon:1218591","l":"Leptospira vanthielii serovar Holland str. Waz Holland = ATCC 700522","na":1,"nb":2,"a":[["TED%3AAF-N1W7L1-F1-model_v4_TED01","TED highly-symmetric fold AF-N1W7L1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A293085","Leptospira vanthielii"],["NCBITaxon%3A1218591","Leptospira vanthielii serovar Holland str. Waz Holland = ATCC 700522"]]},{"id":"NCBITaxon:1219035","l":"Caenibius tardaugens NBRC 16725","na":1,"nb":2,"a":[["TED%3AAF-U3A023-F1-model_v4_TED01","TED highly-symmetric fold AF-U3A023-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A169176","Caenibius tardaugens"],["NCBITaxon%3A1219035","Caenibius tardaugens NBRC 16725"]]},{"id":"NCBITaxon:1219043","l":"Sphingomonas changbaiensis NBRC 104936","na":1,"nb":2,"a":[["TED%3AAF-A0A0E9MQ39-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0E9MQ39-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A529705","Sphingomonas changbaiensis"],["NCBITaxon%3A1219043","Sphingomonas changbaiensis NBRC 104936"]]},{"id":"NCBITaxon:122","l":"Gimesia maris","na":1,"nb":2,"a":[["TED%3AAF-A0A3D3R686-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D3R686-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A122","Gimesia maris"],["NCBITaxon%3A344747","Gimesia maris DSM 8797"]]},{"id":"NCBITaxon:1220207","l":"Aspergillus puulaauensis","na":2,"nb":1,"a":[["TED%3AAF-A0A7R7XXX1-F1-model_v4_TED02","TED novel fold AF-A0A7R7XXX1-F1-model_v4_TED02"],["TED%3AAF-A0A7R8AJP7-F1-model_v4_TED02","TED novel fold AF-A0A7R8AJP7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1220207","Aspergillus puulaauensis"]]},{"id":"NCBITaxon:1220575","l":"","na":1,"nb":2,"a":[["Pfam%3APF10137","CAP12/Pycsar effector protein, TIR domain"]],"b":[["NCBITaxon%3A34087","Sphingobacterium faecium"],["NCBITaxon%3A1220575","Sphingobacterium faecium NBRC 15299"]]},{"id":"NCBITaxon:1220589","l":"Lysinibacillus odysseyi 34hs-1 = NBRC 100172","na":1,"nb":2,"a":[["TED%3AAF-A0A0A3J3B5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A3J3B5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A202611","Lysinibacillus odysseyi"],["NCBITaxon%3A1220589","Lysinibacillus odysseyi 34hs-1 = NBRC 100172"]]},{"id":"NCBITaxon:1221996","l":"Bacillus thermotolerans","na":2,"nb":1,"a":[["Pfam%3APF24309","IMEF cargo Flp protein"],["Pfam%3APF04454","Encapsulating protein for peroxidase"]],"b":[["NCBITaxon%3A1221996","Bacillus thermotolerans"]]},{"id":"NCBITaxon:1223518","l":"","na":1,"nb":2,"a":[["TED%3AAF-A0A511MXV2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A511MXV2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A401558","Deinococcus cellulosilyticus"],["NCBITaxon%3A1223518","Deinococcus cellulosilyticus NBRC 106333 = KACC 11606"]]},{"id":"NCBITaxon:1227452","l":"Haloarcula amylolytica JCM 13557","na":1,"nb":2,"a":[["TED%3AAF-M0KRK7-F1-model_v4_TED01","TED highly-symmetric fold AF-M0KRK7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A396317","Haloarcula amylolytica"],["NCBITaxon%3A1227452","Haloarcula amylolytica JCM 13557"]]},{"id":"NCBITaxon:1227455","l":"Halococcus saccharolyticus DSM 5350","na":1,"nb":2,"a":[["TED%3AAF-M0MGR3-F1-model_v4_TED01","TED highly-symmetric fold AF-M0MGR3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A62319","Halococcus saccharolyticus"],["NCBITaxon%3A1227455","Halococcus saccharolyticus DSM 5350"]]},{"id":"NCBITaxon:1227466","l":"Halorubrum coriense DSM 10284","na":1,"nb":2,"a":[["TED%3AAF-M0ENX3-F1-model_v4_TED01","TED highly-symmetric fold AF-M0ENX3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A64713","Halorubrum coriense"],["NCBITaxon%3A1227466","Halorubrum coriense DSM 10284"]]},{"id":"NCBITaxon:1227485","l":"Halorubrum tebenquichense DSM 14210","na":1,"nb":2,"a":[["TED%3AAF-M0DXR8-F1-model_v4_TED01","TED highly-symmetric fold AF-M0DXR8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A119434","Halorubrum tebenquichense"],["NCBITaxon%3A1227485","Halorubrum tebenquichense DSM 14210"]]},{"id":"NCBITaxon:1227489","l":"Natrinema thermotolerans DSM 11552","na":1,"nb":2,"a":[["TED%3AAF-M0BXN9-F1-model_v4_TED01","TED highly-symmetric fold AF-M0BXN9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A121872","Natrinema thermotolerans"],["NCBITaxon%3A1227489","Natrinema thermotolerans DSM 11552"]]},{"id":"NCBITaxon:1227495","l":"Natrinema pallidum DSM 3751","na":1,"nb":2,"a":[["TED%3AAF-L9ZA08-F1-model_v4_TED01","TED highly-symmetric fold AF-L9ZA08-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A69527","Natrinema pallidum"],["NCBITaxon%3A1227495","Natrinema pallidum DSM 3751"]]},{"id":"NCBITaxon:1227498","l":"Natronococcus jeotgali DSM 18795","na":1,"nb":2,"a":[["TED%3AAF-L9WM09-F1-model_v4_TED01","TED novel fold AF-L9WM09-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A413812","Natronococcus jeotgali"],["NCBITaxon%3A1227498","Natronococcus jeotgali DSM 18795"]]},{"id":"NCBITaxon:1229493","l":"Vibrio owensii CAIM 1854 = LMG 25443","na":1,"nb":2,"a":[["TED%3AAF-A0A0C1Z7S3-F1-model_v4_TED01","TED novel fold AF-A0A0C1Z7S3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A696485","Vibrio owensii"],["NCBITaxon%3A1229493","Vibrio owensii CAIM 1854 = LMG 25443"]]},{"id":"NCBITaxon:1230456","l":"Halorubrum kocurii JCM 14978","na":1,"nb":2,"a":[["TED%3AAF-M0PB06-F1-model_v4_TED02","TED highly-symmetric fold AF-M0PB06-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A478441","Halorubrum kocurii"],["NCBITaxon%3A1230456","Halorubrum kocurii JCM 14978"]]},{"id":"NCBITaxon:1231350","l":"Acidisphaera rubrifaciens HS-AP3","na":1,"nb":2,"a":[["TED%3AAF-A0A0D6PBJ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D6PBJ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A50715","Acidisphaera rubrifaciens"],["NCBITaxon%3A1231350","Acidisphaera rubrifaciens HS-AP3"]]},{"id":"NCBITaxon:1232683","l":"Marinobacterium lacunae","na":2,"nb":1,"a":[["TED%3AAF-A0A081FTJ9-F1-model_v4_TED01","TED novel fold AF-A0A081FTJ9-F1-model_v4_TED01"],["TED%3AAF-A0A081FX50-F1-model_v4_TED01","TED novel fold AF-A0A081FX50-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1232683","Marinobacterium lacunae"]]},{"id":"NCBITaxon:1233170","l":"Paraclostridium bifermentans ATCC 19299","na":1,"nb":2,"a":[["TED%3AAF-T4VCS4-F1-model_v4_TED02","TED novel fold AF-T4VCS4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1490","Paraclostridium bifermentans"],["NCBITaxon%3A1233170","Paraclostridium bifermentans ATCC 19299"]]},{"id":"NCBITaxon:1234023","l":"uncultured bacterium (gcode 4)","na":2,"nb":1,"a":[["TED%3AAF-K1XI48-F1-model_v4_TED04","TED highly-symmetric fold AF-K1XI48-F1-model_v4_TED04"],["TED%3AAF-K2BC65-F1-model_v4_TED02","TED novel fold AF-K2BC65-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1234023","uncultured bacterium (gcode 4)"]]},{"id":"NCBITaxon:1235794","l":"Adlercreutzia caecimuris B7","na":1,"nb":2,"a":[["TED%3AAF-R9KXL3-F1-model_v4_TED01","TED highly-symmetric fold AF-R9KXL3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A671266","Adlercreutzia caecimuris"],["NCBITaxon%3A1235794","Adlercreutzia caecimuris B7"]]},{"id":"NCBITaxon:1235802","l":"Eubacterium plexicaudatum ASF492","na":2,"nb":1,"a":[["TED%3AAF-N1ZVY8-F1-model_v4_TED04","TED novel fold AF-N1ZVY8-F1-model_v4_TED04"],["TED%3AAF-N2B622-F1-model_v4_TED04","TED novel fold AF-N2B622-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1235802","Eubacterium plexicaudatum ASF492"]]},{"id":"NCBITaxon:1236960","l":"Stenotrophomonas pictorum JCM 9942","na":1,"nb":2,"a":[["TED%3AAF-A0A0R0AT88-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0R0AT88-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A86184","Stenotrophomonas pictorum"],["NCBITaxon%3A1236960","Stenotrophomonas pictorum JCM 9942"]]},{"id":"NCBITaxon:1236973","l":"","na":1,"nb":2,"a":[["Pfam%3APF03424","Carbohydrate binding domain (family 17/28)"]],"b":[["NCBITaxon%3A1411","Halalkalibacter akibai"],["NCBITaxon%3A1236973","Halalkalibacter akibai JCM 9157"]]},{"id":"NCBITaxon:1236976","l":"Paenibacillus pini JCM 16418","na":1,"nb":2,"a":[["TED%3AAF-W7YJV9-F1-model_v4_TED01","TED novel fold AF-W7YJV9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A669461","Paenibacillus pini"],["NCBITaxon%3A1236976","Paenibacillus pini JCM 16418"]]},{"id":"NCBITaxon:1237149","l":"Fulvivirga imtechensis AK7","na":1,"nb":2,"a":[["TED%3AAF-L8JJE1-F1-model_v4_TED01","TED highly-symmetric fold AF-L8JJE1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A881893","Fulvivirga imtechensis"],["NCBITaxon%3A1237149","Fulvivirga imtechensis AK7"]]},{"id":"NCBITaxon:1241978","l":"Chryseobacterium bernardetii","na":1,"nb":2,"a":[["TED%3AAF-A0A3G6T371-F1-model_v4_TED04","TED novel fold AF-A0A3G6T371-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1241978","Chryseobacterium bernardetii"],["NCBITaxon%3A1137990","Geodermatophilus arenarius"]]},{"id":"NCBITaxon:1242864","l":"","na":1,"nb":2,"a":[["TED%3AAF-S9R041-F1-model_v4_TED01","TED novel fold AF-S9R041-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A43","Cystobacter fuscus"],["NCBITaxon%3A1242864","Cystobacter fuscus DSM 2262"]]},{"id":"NCBITaxon:1245469","l":"Bradyrhizobium oligotrophicum S58","na":1,"nb":2,"a":[["TED%3AAF-M4ZLP8-F1-model_v4_TED01","TED highly-symmetric fold AF-M4ZLP8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A44255","Bradyrhizobium oligotrophicum"],["NCBITaxon%3A1245469","Bradyrhizobium oligotrophicum S58"]]},{"id":"NCBITaxon:1255043","l":"","na":1,"nb":2,"a":[["Pfam%3APF02335","Cytochrome c552"]],"b":[["NCBITaxon%3A186931","Thioalkalivibrio nitratireducens"],["NCBITaxon%3A1255043","Thioalkalivibrio nitratireducens DSM 14787"]]},{"id":"NCBITaxon:1259217","l":"Cryobacterium zongtaii","na":2,"nb":1,"a":[["TED%3AAF-A0A2S3ZK52-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S3ZK52-F1-model_v4_TED01"],["TED%3AAF-A0A2S3Z5E3-F1-model_v4_TED01","TED novel fold AF-A0A2S3Z5E3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1259217","Cryobacterium zongtaii"]]},{"id":"NCBITaxon:1261634","l":"Roseburia sp. 499","na":2,"nb":1,"a":[["TED%3AAF-A0A1Q9JP08-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q9JP08-F1-model_v4_TED02"],["TED%3AAF-A0A1Q9JYK0-F1-model_v4_TED03","TED novel fold AF-A0A1Q9JYK0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1261634","Roseburia sp. 499"]]},{"id":"NCBITaxon:1262691","l":"Akkermansia sp. CAG:344","na":2,"nb":1,"a":[["TED%3AAF-R7DY31-F1-model_v4_TED02","TED highly-symmetric fold AF-R7DY31-F1-model_v4_TED02"],["TED%3AAF-R7E0J5-F1-model_v4_TED04","TED highly-symmetric fold AF-R7E0J5-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1262691","Akkermansia sp. CAG:344"]]},{"id":"NCBITaxon:1262700","l":"Anaerotruncus sp. CAG:528","na":2,"nb":1,"a":[["TED%3AAF-R5XBN3-F1-model_v4_TED03","TED highly-symmetric fold AF-R5XBN3-F1-model_v4_TED03"],["TED%3AAF-R5XDH2-F1-model_v4_TED02","TED highly-symmetric fold AF-R5XDH2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262700","Anaerotruncus sp. CAG:528"]]},{"id":"NCBITaxon:1262703","l":"Anaerotruncus sp. CAG:390","na":2,"nb":1,"a":[["TED%3AAF-R7ESX1-F1-model_v4_TED02","TED highly-symmetric fold AF-R7ESX1-F1-model_v4_TED02"],["TED%3AAF-R7EJR4-F1-model_v4_TED02","TED novel fold AF-R7EJR4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262703","Anaerotruncus sp. CAG:390"]]},{"id":"NCBITaxon:1262744","l":"Bacteroides sp. CAG:633","na":2,"nb":1,"a":[["TED%3AAF-R6FBQ9-F1-model_v4_TED02","TED novel fold AF-R6FBQ9-F1-model_v4_TED02"],["TED%3AAF-R6FFZ7-F1-model_v4_TED05","TED novel fold AF-R6FFZ7-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1262744","Bacteroides sp. CAG:633"]]},{"id":"NCBITaxon:1262751","l":"Bacteroides sp. CAG:770","na":2,"nb":1,"a":[["TED%3AAF-R6STY7-F1-model_v4_TED01","TED highly-symmetric fold AF-R6STY7-F1-model_v4_TED01"],["TED%3AAF-R6SUE1-F1-model_v4_TED03","TED novel fold AF-R6SUE1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1262751","Bacteroides sp. CAG:770"]]},{"id":"NCBITaxon:1262771","l":"Clostridium sp. CAG:1193","na":2,"nb":1,"a":[["TED%3AAF-R5ISV7-F1-model_v4_TED01","TED novel fold AF-R5ISV7-F1-model_v4_TED01"],["TED%3AAF-R5J8V2-F1-model_v4_TED01","TED novel fold AF-R5J8V2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262771","Clostridium sp. CAG:1193"]]},{"id":"NCBITaxon:1262800","l":"Clostridium sp. CAG:356","na":2,"nb":1,"a":[["TED%3AAF-R6Z6X7-F1-model_v4_TED02","TED novel fold AF-R6Z6X7-F1-model_v4_TED02"],["TED%3AAF-R7A358-F1-model_v4_TED03","TED novel fold AF-R7A358-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1262800","Clostridium sp. CAG:356"]]},{"id":"NCBITaxon:1262802","l":"Clostridium sp. CAG:411","na":2,"nb":1,"a":[["TED%3AAF-R7HU34-F1-model_v4_TED02","TED highly-symmetric fold AF-R7HU34-F1-model_v4_TED02"],["TED%3AAF-R7HXD9-F1-model_v4_TED02","TED novel fold AF-R7HXD9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262802","Clostridium sp. CAG:411"]]},{"id":"NCBITaxon:1262808","l":"Clostridium sp. CAG:448","na":2,"nb":1,"a":[["TED%3AAF-R6SK23-F1-model_v4_TED02","TED highly-symmetric fold AF-R6SK23-F1-model_v4_TED02"],["TED%3AAF-R6T3L5-F1-model_v4_TED01","TED highly-symmetric fold AF-R6T3L5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262808","Clostridium sp. CAG:448"]]},{"id":"NCBITaxon:1262812","l":"Clostridium sp. CAG:470","na":2,"nb":1,"a":[["TED%3AAF-R7FGB6-F1-model_v4_TED01","TED novel fold AF-R7FGB6-F1-model_v4_TED01"],["TED%3AAF-R7FJT9-F1-model_v4_TED02","TED novel fold AF-R7FJT9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262812","Clostridium sp. CAG:470"]]},{"id":"NCBITaxon:1262827","l":"Clostridium sp. CAG:609","na":2,"nb":1,"a":[["TED%3AAF-R7P5H2-F1-model_v4_TED01","TED highly-symmetric fold AF-R7P5H2-F1-model_v4_TED01"],["TED%3AAF-R7P882-F1-model_v4_TED02","TED highly-symmetric fold AF-R7P882-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262827","Clostridium sp. CAG:609"]]},{"id":"NCBITaxon:1262830","l":"Clostridium sp. CAG:632","na":2,"nb":1,"a":[["TED%3AAF-R5KA46-F1-model_v4_TED01","TED highly-symmetric fold AF-R5KA46-F1-model_v4_TED01"],["TED%3AAF-R5K3X5-F1-model_v4_TED02","TED novel fold AF-R5K3X5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262830","Clostridium sp. CAG:632"]]},{"id":"NCBITaxon:1262838","l":"Clostridium sp. CAG:768","na":2,"nb":1,"a":[["TED%3AAF-R7HV93-F1-model_v4_TED02","TED novel fold AF-R7HV93-F1-model_v4_TED02"],["TED%3AAF-R7HX21-F1-model_v4_TED03","TED novel fold AF-R7HX21-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1262838","Clostridium sp. CAG:768"]]},{"id":"NCBITaxon:1262845","l":"Clostridium sp. CAG:91","na":2,"nb":1,"a":[["TED%3AAF-R6W1R6-F1-model_v4_TED02","TED highly-symmetric fold AF-R6W1R6-F1-model_v4_TED02"],["TED%3AAF-R6W8U4-F1-model_v4_TED03","TED novel fold AF-R6W8U4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1262845","Clostridium sp. CAG:91"]]},{"id":"NCBITaxon:1262865","l":"Coraliomargarita sp. CAG:312","na":2,"nb":1,"a":[["TED%3AAF-R7L8G0-F1-model_v4_TED02","TED highly-symmetric fold AF-R7L8G0-F1-model_v4_TED02"],["TED%3AAF-R7LBH8-F1-model_v4_TED01","TED highly-symmetric fold AF-R7LBH8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262865","Coraliomargarita sp. CAG:312"]]},{"id":"NCBITaxon:1262867","l":"Corallococcus sp. CAG:1435","na":2,"nb":1,"a":[["TED%3AAF-R5W403-F1-model_v4_TED07","TED highly-symmetric fold AF-R5W403-F1-model_v4_TED07"],["TED%3AAF-R5W403-F1-model_v4_TED08","TED highly-symmetric fold AF-R5W403-F1-model_v4_TED08"]],"b":[["NCBITaxon%3A1262867","Corallococcus sp. CAG:1435"]]},{"id":"NCBITaxon:1262893","l":"Eubacterium sp. CAG:786","na":2,"nb":1,"a":[["TED%3AAF-R5GYM3-F1-model_v4_TED01","TED highly-symmetric fold AF-R5GYM3-F1-model_v4_TED01"],["TED%3AAF-R5GHZ1-F1-model_v4_TED01","TED novel fold AF-R5GHZ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262893","Eubacterium sp. CAG:786"]]},{"id":"NCBITaxon:1262899","l":"Fusobacterium sp. CAG:439","na":2,"nb":1,"a":[["TED%3AAF-R7J972-F1-model_v4_TED02","TED novel fold AF-R7J972-F1-model_v4_TED02"],["TED%3AAF-R7JDH5-F1-model_v4_TED01","TED novel fold AF-R7JDH5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262899","Fusobacterium sp. CAG:439"]]},{"id":"NCBITaxon:1262901","l":"Fusobacterium sp. CAG:815","na":2,"nb":1,"a":[["TED%3AAF-R7LTJ5-F1-model_v4_TED01","TED novel fold AF-R7LTJ5-F1-model_v4_TED01"],["TED%3AAF-R7M016-F1-model_v4_TED03","TED novel fold AF-R7M016-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1262901","Fusobacterium sp. CAG:815"]]},{"id":"NCBITaxon:1262906","l":"Mycoplasma sp. CAG:776","na":2,"nb":1,"a":[["TED%3AAF-R7NIP8-F1-model_v4_TED02","TED highly-symmetric fold AF-R7NIP8-F1-model_v4_TED02"],["TED%3AAF-R7NIJ0-F1-model_v4_TED01","TED novel fold AF-R7NIJ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262906","Mycoplasma sp. CAG:776"]]},{"id":"NCBITaxon:1262908","l":"Mycoplasma sp. CAG:956","na":2,"nb":1,"a":[["TED%3AAF-R5MTW9-F1-model_v4_TED02","TED novel fold AF-R5MTW9-F1-model_v4_TED02"],["TED%3AAF-R5MUD8-F1-model_v4_TED02","TED novel fold AF-R5MUD8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262908","Mycoplasma sp. CAG:956"]]},{"id":"NCBITaxon:1262913","l":"Parabacteroides sp. CAG:409","na":2,"nb":1,"a":[["TED%3AAF-R7J556-F1-model_v4_TED01","TED highly-symmetric fold AF-R7J556-F1-model_v4_TED01"],["TED%3AAF-R7JFU8-F1-model_v4_TED01","TED highly-symmetric fold AF-R7JFU8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262913","Parabacteroides sp. CAG:409"]]},{"id":"NCBITaxon:1262918","l":"Prevotella sp. CAG:1058","na":2,"nb":1,"a":[["TED%3AAF-R5CHC2-F1-model_v4_TED02","TED highly-symmetric fold AF-R5CHC2-F1-model_v4_TED02"],["TED%3AAF-R5CMC1-F1-model_v4_TED02","TED highly-symmetric fold AF-R5CMC1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262918","Prevotella sp. CAG:1058"]]},{"id":"NCBITaxon:1262919","l":"Prevotella sp. CAG:1092","na":2,"nb":1,"a":[["TED%3AAF-R5P475-F1-model_v4_TED02","TED novel fold AF-R5P475-F1-model_v4_TED02"],["TED%3AAF-R5P942-F1-model_v4_TED02","TED novel fold AF-R5P942-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262919","Prevotella sp. CAG:1092"]]},{"id":"NCBITaxon:1262955","l":"Ruminococcus sp. CAG:353","na":2,"nb":1,"a":[["TED%3AAF-R7KSA2-F1-model_v4_TED02","TED highly-symmetric fold AF-R7KSA2-F1-model_v4_TED02"],["TED%3AAF-R7L073-F1-model_v4_TED01","TED novel fold AF-R7L073-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262955","Ruminococcus sp. CAG:353"]]},{"id":"NCBITaxon:1262987","l":"Proteobacteria bacterium CAG:495","na":2,"nb":1,"a":[["TED%3AAF-R5R8H4-F1-model_v4_TED01","TED highly-symmetric fold AF-R5R8H4-F1-model_v4_TED01"],["TED%3AAF-R5QQZ0-F1-model_v4_TED02","TED novel fold AF-R5QQZ0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262987","Proteobacteria bacterium CAG:495"]]},{"id":"NCBITaxon:1262996","l":"Firmicutes bacterium CAG:631","na":2,"nb":1,"a":[["TED%3AAF-R5V429-F1-model_v4_TED01","TED highly-symmetric fold AF-R5V429-F1-model_v4_TED01"],["TED%3AAF-R5VP30-F1-model_v4_TED02","TED novel fold AF-R5VP30-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262996","Firmicutes bacterium CAG:631"]]},{"id":"NCBITaxon:1263072","l":"Dialister invisus CAG:218","na":2,"nb":1,"a":[["TED%3AAF-R5SLC0-F1-model_v4_TED01","TED highly-symmetric fold AF-R5SLC0-F1-model_v4_TED01"],["TED%3AAF-R5SJI2-F1-model_v4_TED01","TED novel fold AF-R5SJI2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1263072","Dialister invisus CAG:218"]]},{"id":"NCBITaxon:1264554","l":"Mycoplasmopsis meleagridis ATCC 25294","na":1,"nb":2,"a":[["TED%3AAF-A0A0F5H293-F1-model_v4_TED02","TED novel fold AF-A0A0F5H293-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29561","Mycoplasmopsis meleagridis"],["NCBITaxon%3A1264554","Mycoplasmopsis meleagridis ATCC 25294"]]},{"id":"NCBITaxon:1266829","l":"Kribbella albertanoniae","na":2,"nb":1,"a":[["TED%3AAF-A0A4R4Q3H2-F1-model_v4_TED01","TED novel fold AF-A0A4R4Q3H2-F1-model_v4_TED01"],["TED%3AAF-A0A4V2XRY1-F1-model_v4_TED01","TED novel fold AF-A0A4V2XRY1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1266829","Kribbella albertanoniae"]]},{"id":"NCBITaxon:1268635","l":"Legionella oakridgensis ATCC 33761 = DSM 21215","na":1,"nb":2,"a":[["TED%3AAF-W0BCQ3-F1-model_v4_TED02","TED highly-symmetric fold AF-W0BCQ3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29423","Legionella oakridgensis"],["NCBITaxon%3A1268635","Legionella oakridgensis ATCC 33761 = DSM 21215"]]},{"id":"NCBITaxon:1276218","l":"Spiroplasma platyhelix PALS-1","na":1,"nb":2,"a":[["TED%3AAF-A0A846U5R9-F1-model_v4_TED04","TED novel fold AF-A0A846U5R9-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A301585","Spiroplasma platyhelix"],["NCBITaxon%3A1276218","Spiroplasma platyhelix PALS-1"]]},{"id":"NCBITaxon:1276220","l":"Spiroplasma taiwanense CT-1","na":1,"nb":2,"a":[["TED%3AAF-S5LY17-F1-model_v4_TED02","TED novel fold AF-S5LY17-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2145","Spiroplasma taiwanense"],["NCBITaxon%3A1276220","Spiroplasma taiwanense CT-1"]]},{"id":"NCBITaxon:1276221","l":"Spiroplasma diminutum CUAS-1","na":1,"nb":2,"a":[["TED%3AAF-S5M2Q1-F1-model_v4_TED01","TED novel fold AF-S5M2Q1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A216936","Spiroplasma diminutum"],["NCBITaxon%3A1276221","Spiroplasma diminutum CUAS-1"]]},{"id":"NCBITaxon:1276257","l":"Spiroplasma sabaudiense Ar-1343","na":1,"nb":2,"a":[["TED%3AAF-W6A9B9-F1-model_v4_TED02","TED novel fold AF-W6A9B9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A216944","Spiroplasma sabaudiense"],["NCBITaxon%3A1276257","Spiroplasma sabaudiense Ar-1343"]]},{"id":"NCBITaxon:1276258","l":"Spiroplasma apis B31","na":1,"nb":2,"a":[["TED%3AAF-V5RIT7-F1-model_v4_TED01","TED novel fold AF-V5RIT7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2137","Spiroplasma apis"],["NCBITaxon%3A1276258","Spiroplasma apis B31"]]},{"id":"NCBITaxon:1280954","l":"Hyphomonas polymorpha PS728","na":1,"nb":2,"a":[["TED%3AAF-A0A062VEK9-F1-model_v4_TED02","TED novel fold AF-A0A062VEK9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A74319","Hyphomonas polymorpha"],["NCBITaxon%3A1280954","Hyphomonas polymorpha PS728"]]},{"id":"NCBITaxon:1281278","l":"Escherichia coli (strain UMEA 4076-1)","na":2,"nb":1,"a":[["Pfam%3APF25164","Competence protein CoiA, N-terminal domain"],["Pfam%3APF14236","Druantia protein DruA"]],"b":[["NCBITaxon%3A1281278","Escherichia coli UMEA 4076-1"]]},{"id":"NCBITaxon:1284222","l":"Candidatus Scalindua japonica","na":2,"nb":1,"a":[["TED%3AAF-A0A286TW35-F1-model_v4_TED01","TED novel fold AF-A0A286TW35-F1-model_v4_TED01"],["TED%3AAF-A0A286U3P4-F1-model_v4_TED02","TED novel fold AF-A0A286U3P4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1284222","Candidatus Scalindua japonica"]]},{"id":"NCBITaxon:1286171","l":"Peptoclostridium acidaminophilum DSM 3953","na":1,"nb":2,"a":[["TED%3AAF-W8TCY3-F1-model_v4_TED02","TED highly-symmetric fold AF-W8TCY3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1731","Peptoclostridium acidaminophilum"],["NCBITaxon%3A1286171","Peptoclostridium acidaminophilum DSM 3953"]]},{"id":"NCBITaxon:1287","l":"","na":1,"nb":2,"a":[["Pfam%3APF25533","Lysostaphin, N-terminal domain"]],"b":[["NCBITaxon%3A1286","Staphylococcus simulans"],["NCBITaxon%3A1287","Staphylococcus simulans bv. staphylolyticus"]]},{"id":"NCBITaxon:1287120","l":"Mesorhizobium sp. L2C089B000","na":2,"nb":1,"a":[["TED%3AAF-V7GX33-F1-model_v4_TED03","TED highly-symmetric fold AF-V7GX33-F1-model_v4_TED03"],["TED%3AAF-V7GS75-F1-model_v4_TED02","TED novel fold AF-V7GS75-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1287120","Mesorhizobium sp. L2C089B000"]]},{"id":"NCBITaxon:128803","l":"Planococcus sp. (strain 'SOS Orange')","na":2,"nb":1,"a":[["Pfam%3APF02449","Beta-galactosidase"],["Pfam%3APF08532","Beta-galactosidase trimerisation domain"]],"b":[["NCBITaxon%3A128803","Planococcus sp. 'SOS Orange'"]]},{"id":"NCBITaxon:1288313","l":"Gluconobacter oxydans DSM 3504","na":1,"nb":2,"a":[["TED%3AAF-A0A067Z3R2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A067Z3R2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1288313","Gluconobacter oxydans DSM 3504"],["NCBITaxon%3A1876758","Gluconobacter sp."]]},{"id":"NCBITaxon:1288362","l":"Actinoplanes sp. ATCC 53533","na":2,"nb":1,"a":[["TED%3AAF-A0A428XH31-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A428XH31-F1-model_v4_TED01"],["TED%3AAF-A0A428XQY1-F1-model_v4_TED01","TED novel fold AF-A0A428XQY1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1288362","Actinoplanes sp. ATCC 53533"]]},{"id":"NCBITaxon:1288385","l":"Yersinia pekkanenii","na":1,"nb":2,"a":[["TED%3AAF-A0A0T9R6K6-F1-model_v4_TED01","TED novel fold AF-A0A0T9R6K6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1288385","Yersinia pekkanenii"],["NCBITaxon%3A687899","Yersinia pekkanenii DSM 22769"]]},{"id":"NCBITaxon:1291052","l":"Lacticaseibacillus sharpeae JCM 1186 = DSM 20505","na":1,"nb":2,"a":[["TED%3AAF-A0A0R1ZZL8-F1-model_v4_TED01","TED novel fold AF-A0A0R1ZZL8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1626","Lacticaseibacillus sharpeae"],["NCBITaxon%3A1291052","Lacticaseibacillus sharpeae JCM 1186 = DSM 20505"]]},{"id":"NCBITaxon:1291742","l":"Paucilactobacillus hokkaidonensis JCM 18461","na":1,"nb":2,"a":[["TED%3AAF-A0A0A1GYI0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A1GYI0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1193095","Paucilactobacillus hokkaidonensis"],["NCBITaxon%3A1291742","Paucilactobacillus hokkaidonensis JCM 18461"]]},{"id":"NCBITaxon:1292036","l":"","na":1,"nb":2,"a":[["TED%3AAF-T0CWZ2-F1-model_v4_TED01","TED highly-symmetric fold AF-T0CWZ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1505","Paraclostridium sordellii"],["NCBITaxon%3A1292036","Paraclostridium sordellii ATCC 9714"]]},{"id":"NCBITaxon:1292037","l":"Amycolatopsis vancoresmycina DSM 44592","na":1,"nb":2,"a":[["TED%3AAF-R1ICU3-F1-model_v4_TED01","TED highly-symmetric fold AF-R1ICU3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A208444","Amycolatopsis vancoresmycina"],["NCBITaxon%3A1292037","Amycolatopsis vancoresmycina DSM 44592"]]},{"id":"NCBITaxon:1293890","l":"Thalassospira alkalitolerans","na":2,"nb":1,"a":[["TED%3AAF-A0A1Y2L7Y4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y2L7Y4-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2LDQ3-F1-model_v4_TED01","TED novel fold AF-A0A1Y2LDQ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1293890","Thalassospira alkalitolerans"]]},{"id":"NCBITaxon:1295609","l":"Thermodesulfobacterium geofontis","na":1,"nb":2,"a":[["TED%3AAF-A0A2N7PMV0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2N7PMV0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1295609","Thermodesulfobacterium geofontis"],["NCBITaxon%3A795359","Thermodesulfobacterium geofontis OPF15"]]},{"id":"NCBITaxon:1296109","l":"Cryptococcus gattii CA1280","na":2,"nb":1,"a":[["TED%3AAF-A0A0D0TFT0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D0TFT0-F1-model_v4_TED01"],["TED%3AAF-A0A0D0VLQ5-F1-model_v4_TED01","TED novel fold AF-A0A0D0VLQ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1296109","Cryptococcus bacillisporus CA1280"]]},{"id":"NCBITaxon:12968","l":"Blastocystis hominis","na":1,"nb":2,"a":[["TED%3AAF-D8LUQ2-F1-model_v4_TED02","TED novel fold AF-D8LUQ2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A12968","Blastocystis hominis"],["NCBITaxon%3A478820","Blastocystis sp. ATCC 50177/Nand II"]]},{"id":"NCBITaxon:1298595","l":"Veillonella rogosae JCM 15642","na":1,"nb":2,"a":[["TED%3AAF-A0A2S7YXG0-F1-model_v4_TED02","TED novel fold AF-A0A2S7YXG0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A423477","Veillonella rogosae"],["NCBITaxon%3A1298595","Veillonella rogosae JCM 15642"]]},{"id":"NCBITaxon:1298609","l":"Psychrobacter sp. JCM 18901","na":2,"nb":1,"a":[["TED%3AAF-X0QEB9-F1-model_v4_TED01","TED novel fold AF-X0QEB9-F1-model_v4_TED01"],["TED%3AAF-X0RVB5-F1-model_v4_TED02","TED novel fold AF-X0RVB5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1298609","Psychrobacter sp. JCM 18901"]]},{"id":"NCBITaxon:1300164","l":"Methanobrevibacter arboriphilus JCM 13429 = DSM 1125","na":1,"nb":2,"a":[["TED%3AAF-A0A1V6N2T2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V6N2T2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39441","Methanobrevibacter arboriphilus"],["NCBITaxon%3A1300164","Methanobrevibacter arboriphilus JCM 13429 = DSM 1125"]]},{"id":"NCBITaxon:1300341","l":"Croceitalea dokdonensis DOKDO 023","na":1,"nb":2,"a":[["TED%3AAF-A0A0P7AXM5-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A0P7AXM5-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A346188","Croceitalea dokdonensis"],["NCBITaxon%3A1300341","Croceitalea dokdonensis DOKDO 023"]]},{"id":"NCBITaxon:1300345","l":"Lysobacter dokdonensis DS-58","na":1,"nb":2,"a":[["TED%3AAF-A0A0A2WHH1-F1-model_v4_TED02","TED novel fold AF-A0A0A2WHH1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1300345","Lysobacter dokdonensis DS-58"],["NCBITaxon%3A414050","Noviluteimonas dokdonensis"]]},{"id":"NCBITaxon:1300350","l":"Sulfitobacter donghicola DSW-25 = KCTC 12864 = JCM 14565","na":1,"nb":2,"a":[["TED%3AAF-A0A073IE13-F1-model_v4_TED01","TED novel fold AF-A0A073IE13-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A421000","Sulfitobacter donghicola"],["NCBITaxon%3A1300350","Sulfitobacter donghicola DSW-25 = KCTC 12864 = JCM 14565"]]},{"id":"NCBITaxon:1302250","l":"Secundilactobacillus silagei JCM 19001","na":1,"nb":2,"a":[["TED%3AAF-A0A1Z5IHU1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z5IHU1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1293415","Secundilactobacillus silagei"],["NCBITaxon%3A1302250","Secundilactobacillus silagei JCM 19001"]]},{"id":"NCBITaxon:1302730","l":"Gracilimonas mengyeensis","na":2,"nb":1,"a":[["TED%3AAF-A0A521AK96-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A521AK96-F1-model_v4_TED03"],["TED%3AAF-A0A521C5Z7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521C5Z7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1302730","Gracilimonas mengyeensis"]]},{"id":"NCBITaxon:1305827","l":"Streptomyces sp. KhCrAH-43","na":2,"nb":1,"a":[["TED%3AAF-A0A327TZE8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A327TZE8-F1-model_v4_TED03"],["TED%3AAF-A0A327TZL0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A327TZL0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1305827","Streptomyces sp. KhCrAH-43"]]},{"id":"NCBITaxon:1307442","l":"Fusobacterium hwasookii ChDC F174","na":1,"nb":2,"a":[["TED%3AAF-A0A0S2ZR09-F1-model_v4_TED04","TED novel fold AF-A0A0S2ZR09-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1583098","Fusobacterium hwasookii"],["NCBITaxon%3A1307442","Fusobacterium hwasookii ChDC F174"]]},{"id":"NCBITaxon:1307942","l":"","na":1,"nb":2,"a":[["Pfam%3APF03500","Cellulose synthase subunit D"]],"b":[["NCBITaxon%3A1053551","Komagataeibacter sucrofermentans"],["NCBITaxon%3A1307942","Komagataeibacter sucrofermentans DSM 15973"]]},{"id":"NCBITaxon:1313172","l":"","na":1,"nb":2,"a":[["TED%3AAF-A0A6C7EH59-F1-model_v4_TED02","TED novel fold AF-A0A6C7EH59-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A467094","Ilumatobacter coccineus"],["NCBITaxon%3A1313172","Ilumatobacter coccineus YM16-304"]]},{"id":"NCBITaxon:1313304","l":"Chitinivibrio alkaliphilus ACht1","na":1,"nb":2,"a":[["TED%3AAF-U7D985-F1-model_v4_TED02","TED highly-symmetric fold AF-U7D985-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1505232","Chitinivibrio alkaliphilus"],["NCBITaxon%3A1313304","Chitinivibrio alkaliphilus ACht1"]]},{"id":"NCBITaxon:1320","l":"Streptococcus sp. group G","na":2,"nb":1,"a":[["Pfam%3APF17573","GA-like domain"],["Pfam%3APF01378","B domain"]],"b":[["NCBITaxon%3A1320","Streptococcus sp. 'group G'"]]},{"id":"NCBITaxon:1321815","l":"Treponema lecithinolyticum ATCC 700332","na":1,"nb":2,"a":[["TED%3AAF-U2LXC9-F1-model_v4_TED01","TED highly-symmetric fold AF-U2LXC9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A53418","Treponema lecithinolyticum"],["NCBITaxon%3A1321815","Treponema lecithinolyticum ATCC 700332"]]},{"id":"NCBITaxon:1323","l":"Faecalicoccus pleomorphus","na":1,"nb":2,"a":[["TED%3AAF-A0A3E3DXS9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3E3DXS9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1323","Faecalicoccus pleomorphus"],["NCBITaxon%3A1123313","Faecalicoccus pleomorphus DSM 20574"]]},{"id":"NCBITaxon:132476","l":"Pseudomonas kilonensis","na":1,"nb":2,"a":[["TED%3AAF-A0A1H5FUT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H5FUT8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A132476","Pseudomonas kilonensis"],["NCBITaxon%3A1173480","Pseudomonas kilonensis CBLA-66"]]},{"id":"NCBITaxon:1324956","l":"Melghiribacillus thermohalophilus","na":2,"nb":1,"a":[["TED%3AAF-A0A4R3NCD2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4R3NCD2-F1-model_v4_TED02"],["TED%3AAF-A0A4V2V194-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4V2V194-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1324956","Melghiribacillus thermohalophilus"]]},{"id":"NCBITaxon:1329909","l":"Sphingobium quisquiliarum P25","na":1,"nb":2,"a":[["TED%3AAF-T0H4F7-F1-model_v4_TED01","TED highly-symmetric fold AF-T0H4F7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A538379","Sphingobium quisquiliarum"],["NCBITaxon%3A1329909","Sphingobium quisquiliarum P25"]]},{"id":"NCBITaxon:1331007","l":"Agarivorans albus MKT 106","na":1,"nb":2,"a":[["TED%3AAF-R9PH52-F1-model_v4_TED02","TED highly-symmetric fold AF-R9PH52-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A182262","Agarivorans albus"],["NCBITaxon%3A1331007","Agarivorans albus MKT 106"]]},{"id":"NCBITaxon:1331668","l":"Streptomyces sparsogenes DSM 40356","na":1,"nb":2,"a":[["TED%3AAF-A0A1R1SPZ2-F1-model_v4_TED01","TED novel fold AF-A0A1R1SPZ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A67365","Streptomyces sparsogenes"],["NCBITaxon%3A1331668","Streptomyces sparsogenes DSM 40356"]]},{"id":"NCBITaxon:1331704","l":"uncultured Aureispira sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A6S6SCG7-F1-model_v4_TED01","TED novel fold AF-A0A6S6SCG7-F1-model_v4_TED01"],["TED%3AAF-A0A6S6THH5-F1-model_v4_TED01","TED novel fold AF-A0A6S6THH5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1331704","uncultured Aureispira sp."]]},{"id":"NCBITaxon:133190","l":"Sphingomonas sp. SRS2","na":2,"nb":1,"a":[["TED%3AAF-A0A0F5PEN9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F5PEN9-F1-model_v4_TED01"],["TED%3AAF-A0A0F5PFK4-F1-model_v4_TED02","TED novel fold AF-A0A0F5PFK4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A133190","Sphingomonas sp. SRS2"]]},{"id":"NCBITaxon:13335","l":"Anaerobiospirillum succiniciproducens","na":1,"nb":2,"a":[["PROSITE%3APS00532","Phosphoenolpyruvate carboxykinase (ATP) signature"]],"b":[["NCBITaxon%3A13335","Anaerobiospirillum succiniciproducens"],["NCBITaxon%3A1120988","Anaerobiospirillum succiniciproducens DSM 6400"]]},{"id":"NCBITaxon:1333996","l":"Variibacter gotjawalensis","na":2,"nb":1,"a":[["TED%3AAF-A0A0S3PVZ4-F1-model_v4_TED01","TED novel fold AF-A0A0S3PVZ4-F1-model_v4_TED01"],["TED%3AAF-A0A0S3PYV0-F1-model_v4_TED02","TED novel fold AF-A0A0S3PYV0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1333996","Variibacter gotjawalensis"]]},{"id":"NCBITaxon:1335613","l":"Gordonibacter urolithinfaciens","na":2,"nb":1,"a":[["TED%3AAF-A0A6N8II72-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8II72-F1-model_v4_TED01"],["TED%3AAF-A0A423UK16-F1-model_v4_TED02","TED novel fold AF-A0A423UK16-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1335613","Gordonibacter urolithinfaciens"]]},{"id":"NCBITaxon:1336748","l":"Spiroplasma monobiae MQ-1","na":1,"nb":2,"a":[["TED%3AAF-A0A2K9LUI3-F1-model_v4_TED04","TED novel fold AF-A0A2K9LUI3-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2136","Spiroplasma monobiae"],["NCBITaxon%3A1336748","Spiroplasma monobiae MQ-1"]]},{"id":"NCBITaxon:1336749","l":"Spiroplasma floricola 23-6","na":1,"nb":2,"a":[["TED%3AAF-A0A2K8SEV4-F1-model_v4_TED03","TED novel fold AF-A0A2K8SEV4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A216937","Spiroplasma floricola"],["NCBITaxon%3A1336749","Spiroplasma floricola 23-6"]]},{"id":"NCBITaxon:1337886","l":"Sporomusa sphaeroides DSM 2875","na":1,"nb":2,"a":[["TED%3AAF-A0A1U7MJ00-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1U7MJ00-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A47679","Sporomusa sphaeroides"],["NCBITaxon%3A1337886","Sporomusa sphaeroides DSM 2875"]]},{"id":"NCBITaxon:134","l":"Methylocystis parvus","na":1,"nb":2,"a":[["TED%3AAF-A0A6B8M6B0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6B8M6B0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A134","Methylocystis parvus"],["NCBITaxon%3A1134912","Methylocystis parvus OBBP"]]},{"id":"NCBITaxon:1341156","l":"Ruminococcus albus SY3","na":2,"nb":1,"a":[["TED%3AAF-A0A011VVU4-F1-model_v4_TED01","TED novel fold AF-A0A011VVU4-F1-model_v4_TED01"],["TED%3AAF-A0A011WN20-F1-model_v4_TED01","TED novel fold AF-A0A011WN20-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1341156","Hominimerdicola alba SY3"]]},{"id":"NCBITaxon:1343740","l":"Streptomyces rapamycinicus NRRL 5491","na":1,"nb":2,"a":[["Pfam%3APF21168","Chorismatase FkbO/Hyg5-like, N-terminal"]],"b":[["NCBITaxon%3A1226757","Streptomyces rapamycinicus"],["NCBITaxon%3A1343740","Streptomyces rapamycinicus NRRL 5491"]]},{"id":"NCBITaxon:1344003","l":"Williamsia sterculiae","na":2,"nb":1,"a":[["TED%3AAF-A0A1N7FTP5-F1-model_v4_TED01","TED novel fold AF-A0A1N7FTP5-F1-model_v4_TED01"],["TED%3AAF-A0A1N7H905-F1-model_v4_TED01","TED novel fold AF-A0A1N7H905-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1344003","Williamsia sterculiae"]]},{"id":"NCBITaxon:1345695","l":"Clostridium saccharobutylicum DSM 13864","na":1,"nb":2,"a":[["TED%3AAF-U5ML78-F1-model_v4_TED01","TED highly-symmetric fold AF-U5ML78-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A169679","Clostridium saccharobutylicum"],["NCBITaxon%3A1345695","Clostridium saccharobutylicum DSM 13864"]]},{"id":"NCBITaxon:1346790","l":"Sphingobium indicum IP26","na":1,"nb":2,"a":[["TED%3AAF-W1KN37-F1-model_v4_TED01","TED highly-symmetric fold AF-W1KN37-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A332055","Sphingobium indicum"],["NCBITaxon%3A1346790","Sphingobium indicum IP26"]]},{"id":"NCBITaxon:1348163","l":"Desulfocarbo indianensis","na":2,"nb":1,"a":[["TED%3AAF-A0A0K9IA67-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0K9IA67-F1-model_v4_TED01"],["TED%3AAF-A0A0K9I238-F1-model_v4_TED01","TED novel fold AF-A0A0K9I238-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1348163","Desulfocarbo indianensis"]]},{"id":"NCBITaxon:1348623","l":"","na":1,"nb":2,"a":[["TED%3AAF-A0A846AWI2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A846AWI2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1404","Priestia megaterium"],["NCBITaxon%3A1348623","Priestia megaterium NBRC 15308 = ATCC 14581"]]},{"id":"NCBITaxon:1348657","l":"Thauera terpenica 58Eu","na":1,"nb":2,"a":[["TED%3AAF-S9Z9C4-F1-model_v4_TED01","TED novel fold AF-S9Z9C4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A76113","Thauera terpenica"],["NCBITaxon%3A1348657","Thauera terpenica 58Eu"]]},{"id":"NCBITaxon:1350429","l":"Cyclobacterium qasimii","na":1,"nb":2,"a":[["TED%3AAF-A0A512CD48-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A512CD48-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1350429","Cyclobacterium qasimii"],["NCBITaxon%3A641524","Cyclobacterium qasimii M12-11B"]]},{"id":"NCBITaxon:1353533","l":"Pseudoalteromonas luteoviolacea 2ta16","na":2,"nb":1,"a":[["TED%3AAF-V4HNX8-F1-model_v4_TED01","TED novel fold AF-V4HNX8-F1-model_v4_TED01"],["TED%3AAF-V4JDU9-F1-model_v4_TED01","TED novel fold AF-V4JDU9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1353533","Pseudoalteromonas luteoviolacea 2ta16"]]},{"id":"NCBITaxon:1353889","l":"Achromobacter pestifer","na":1,"nb":2,"a":[["TED%3AAF-A0A6S6YSL4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6S6YSL4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1353889","Achromobacter pestifer"],["NCBITaxon%3A85698","Achromobacter xylosoxidans"]]},{"id":"NCBITaxon:1353890","l":"Achromobacter kerstersii","na":2,"nb":1,"a":[["TED%3AAF-A0A6S7AQP5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6S7AQP5-F1-model_v4_TED01"],["TED%3AAF-A0A6S7AZ74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6S7AZ74-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1353890","Achromobacter kerstersii"]]},{"id":"NCBITaxon:136273","l":"","na":1,"nb":2,"a":[["TED%3AAF-A0A0A6VR62-F1-model_v4_TED02","TED novel fold AF-A0A0A6VR62-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1275","Kocuria rosea"],["NCBITaxon%3A136273","Kocuria rosea subsp. polaris"]]},{"id":"NCBITaxon:136370","l":"Lasallia pustulata","na":2,"nb":1,"a":[["TED%3AAF-A0A1W5CUI7-F1-model_v4_TED02","TED novel fold AF-A0A1W5CUI7-F1-model_v4_TED02"],["TED%3AAF-A0A5M8PR11-F1-model_v4_TED02","TED novel fold AF-A0A5M8PR11-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A136370","Lasallia pustulata"]]},{"id":"NCBITaxon:1365176","l":"Thermofilum adornatum","na":1,"nb":2,"a":[["TED%3AAF-A0A7C1CCT4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C1CCT4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1365176","Thermofilum adornatum"],["NCBITaxon%3A697581","Thermofilum adornatum 1505"]]},{"id":"NCBITaxon:1365257","l":"Pseudoalteromonas luteoviolacea S4060-1","na":2,"nb":1,"a":[["TED%3AAF-A0A161YZI7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A161YZI7-F1-model_v4_TED01"],["TED%3AAF-A0A167KUY8-F1-model_v4_TED01","TED novel fold AF-A0A167KUY8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1365257","Pseudoalteromonas luteoviolacea S4060-1"]]},{"id":"NCBITaxon:137658","l":"Pseudomonas indica","na":1,"nb":2,"a":[["proteintraitsmech%3AELIFE109154_IBH_His","Interface-associated metallophore histidine beta-hydroxylase family"]],"b":[["NCBITaxon%3A137658","Pseudomonas indica"],["NCBITaxon%3A1215103","Pseudomonas indica NBRC 103045"]]},{"id":"NCBITaxon:137722","l":"Azospirillum sp. B510","na":1,"nb":2,"a":[["TED%3AAF-D3P3H1-F1-model_v4_TED02","TED highly-symmetric fold AF-D3P3H1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A34012","Azospirillum sp."],["NCBITaxon%3A137722","Azospirillum sp. B510"]]},{"id":"NCBITaxon:13773","l":"Pyrobaculum aerophilum","na":1,"nb":2,"a":[["TED%3AAF-A0A832SQL0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A832SQL0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A13773","Pyrobaculum aerophilum"],["NCBITaxon%3A178306","Pyrobaculum aerophilum str. IM2"]]},{"id":"NCBITaxon:137730","l":"Falseniella ignava","na":1,"nb":2,"a":[["TED%3AAF-A0A2I1K1R7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I1K1R7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A137730","Falseniella ignava"],["NCBITaxon%3A883112","Falseniella ignava CCUG 37419"]]},{"id":"NCBITaxon:137779","l":"Pseudoalteromonas flavipulchra","na":1,"nb":2,"a":[["TED%3AAF-A0A5S3S9K7-F1-model_v4_TED01","TED novel fold AF-A0A5S3S9K7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1315273","Pseudoalteromonas flavipulchra NCIMB 2033 = ATCC BAA-314"],["NCBITaxon%3A184924","Pseudoalteromonas maricaloris"]]},{"id":"NCBITaxon:1380357","l":"Rhodospirillales bacterium URHD0017","na":2,"nb":1,"a":[["TED%3AAF-A0A1H8SNT0-F1-model_v4_TED02","TED novel fold AF-A0A1H8SNT0-F1-model_v4_TED02"],["TED%3AAF-A0A1H8Y0S7-F1-model_v4_TED02","TED novel fold AF-A0A1H8Y0S7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1380357","Rhodospirillales bacterium URHD0017"]]},{"id":"NCBITaxon:138300","l":"Kytococcus schroeteri","na":1,"nb":2,"a":[["TED%3AAF-A0A2I1PDY3-F1-model_v4_TED01","TED novel fold AF-A0A2I1PDY3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A138300","Kytococcus schroeteri"],["NCBITaxon%3A1122141","Kytococcus schroeteri DSM 13884"]]},{"id":"NCBITaxon:1383851","l":"Halorubrum halodurans","na":2,"nb":1,"a":[["TED%3AAF-A0A256INQ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A256INQ8-F1-model_v4_TED01"],["TED%3AAF-A0A256IED1-F1-model_v4_TED04","TED novel fold AF-A0A256IED1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1383851","Halorubrum halodurans"]]},{"id":"NCBITaxon:1384057","l":"Ureibacillus sinduriensis BLB-1 = JCM 15800","na":1,"nb":2,"a":[["TED%3AAF-A0A0A3HYH1-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A0A3HYH1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A561440","Ureibacillus sinduriensis"],["NCBITaxon%3A1384057","Ureibacillus sinduriensis BLB-1 = JCM 15800"]]},{"id":"NCBITaxon:1385511","l":"Pontibacillus marinus BH030004 = DSM 16465","na":1,"nb":2,"a":[["TED%3AAF-A0A0A5GIK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A5GIK2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A273164","Pontibacillus marinus"],["NCBITaxon%3A1385511","Pontibacillus marinus BH030004 = DSM 16465"]]},{"id":"NCBITaxon:1385625","l":"Thiohalocapsa sp. PB-PSB1","na":2,"nb":1,"a":[["TED%3AAF-V4ITH6-F1-model_v4_TED04","TED novel fold AF-V4ITH6-F1-model_v4_TED04"],["TED%3AAF-V4IUM5-F1-model_v4_TED02","TED novel fold AF-V4IUM5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1385625","Thiohalocapsa sp. PB-PSB1"]]},{"id":"NCBITaxon:1385663","l":"","na":1,"nb":2,"a":[["TED%3AAF-A0A0M5K0Y8-F1-model_v4_TED01","TED novel fold AF-A0A0M5K0Y8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1385663","Hymenobacter erythromyxa"],["NCBITaxon%3A1924939","Nibribacter sp."]]},{"id":"NCBITaxon:1385935","l":"Leptolyngbya sp. Heron Island J","na":2,"nb":1,"a":[["TED%3AAF-U9VLH2-F1-model_v4_TED04","TED highly-symmetric fold AF-U9VLH2-F1-model_v4_TED04"],["TED%3AAF-U9W7G7-F1-model_v4_TED03","TED highly-symmetric fold AF-U9W7G7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1385935","Leptolyngbya sp. Heron Island J"]]},{"id":"NCBITaxon:1387353","l":"Paludisphaera borealis","na":2,"nb":1,"a":[["TED%3AAF-A0A1U7CK02-F1-model_v4_TED02","TED novel fold AF-A0A1U7CK02-F1-model_v4_TED02"],["TED%3AAF-A0A1U7CMS9-F1-model_v4_TED03","TED novel fold AF-A0A1U7CMS9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1387353","Paludisphaera borealis"]]},{"id":"NCBITaxon:1387883","l":"Halomonas heilongjiangensis","na":2,"nb":1,"a":[["TED%3AAF-A0A2N7TG04-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N7TG04-F1-model_v4_TED02"],["TED%3AAF-A0A2N7TQ20-F1-model_v4_TED01","TED novel fold AF-A0A2N7TQ20-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1387883","Halomonas heilongjiangensis"]]},{"id":"NCBITaxon:1388749","l":"Campylobacter lari NCTC 11845","na":1,"nb":2,"a":[["TED%3AAF-A0A0A8HSL3-F1-model_v4_TED03","TED novel fold AF-A0A0A8HSL3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A201","Campylobacter lari"],["NCBITaxon%3A1388749","Campylobacter lari NCTC 11845"]]},{"id":"NCBITaxon:1395125","l":"Prevotella salivae F0493","na":2,"nb":1,"a":[["TED%3AAF-U2L8Q3-F1-model_v4_TED01","TED novel fold AF-U2L8Q3-F1-model_v4_TED01"],["TED%3AAF-U2MGD9-F1-model_v4_TED01","TED novel fold AF-U2MGD9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1395125","Segatella salivae F0493"]]},{"id":"NCBITaxon:1395513","l":"Sporolactobacillus laevolacticus DSM 442","na":1,"nb":2,"a":[["TED%3AAF-V6IW76-F1-model_v4_TED02","TED highly-symmetric fold AF-V6IW76-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A33018","Sporolactobacillus laevolacticus"],["NCBITaxon%3A1395513","Sporolactobacillus laevolacticus DSM 442"]]},{"id":"NCBITaxon:1400861","l":"Candidatus Contendobacter odensis Run B J11","na":2,"nb":1,"a":[["TED%3AAF-A0A7U7GDL9-F1-model_v4_TED01","TED novel fold AF-A0A7U7GDL9-F1-model_v4_TED01"],["TED%3AAF-A0A7U7GE39-F1-model_v4_TED02","TED novel fold AF-A0A7U7GE39-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1400861","Candidatus Contendobacter odensis Run_B_J11"]]},{"id":"NCBITaxon:1402511","l":"Pseudomonas aeruginosa (strain BWHPSA011 / Pa011)","na":2,"nb":1,"a":[["Pfam%3APF21713","Cyclic GMP-AMP synthase, C-terminal domain"],["Pfam%3APF21654","Cyclic GMP-AMP synthase DncV-like, nucleotidyltransferase domain"]],"b":[["NCBITaxon%3A1402511","Pseudomonas aeruginosa BWHPSA011"]]},{"id":"NCBITaxon:1407071","l":"Acinetobacter sp. TGL-Y2","na":2,"nb":1,"a":[["TED%3AAF-A0A143G679-F1-model_v4_TED02","TED novel fold AF-A0A143G679-F1-model_v4_TED02"],["TED%3AAF-A0A145WVV8-F1-model_v4_TED01","TED novel fold AF-A0A145WVV8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1407071","Acinetobacter sp. TGL-Y2"]]},{"id":"NCBITaxon:1408250","l":"Cellulomonas cellasea DSM 20118","na":1,"nb":2,"a":[["TED%3AAF-A0A0A0BCT5-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A0A0BCT5-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A43670","Cellulomonas cellasea"],["NCBITaxon%3A1408250","Cellulomonas cellasea DSM 20118"]]},{"id":"NCBITaxon:1412874","l":"uncultured archaeon A07HR60","na":2,"nb":1,"a":[["TED%3AAF-V4XTB4-F1-model_v4_TED02","TED novel fold AF-V4XTB4-F1-model_v4_TED02"],["TED%3AAF-V4YHV6-F1-model_v4_TED01","TED novel fold AF-V4YHV6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1412874","uncultured archaeon A07HR60"]]},{"id":"NCBITaxon:1415166","l":"Nocardia nova SH22a","na":2,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_Lys_monoox","Mycobactin-type lysine N6-monooxygenase family"],["TED%3AAF-W5TML8-F1-model_v4_TED02","TED novel fold AF-W5TML8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1415166","Nocardia nova SH22a"]]},{"id":"NCBITaxon:1420591","l":"Novosphingobium barchaimii","na":1,"nb":2,"a":[["TED%3AAF-A0A561HW41-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A561HW41-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1420591","Novosphingobium barchaimii"],["NCBITaxon%3A1114963","Novosphingobium barchaimii LL02"]]},{"id":"NCBITaxon:1423734","l":"Agrilactobacillus composti DSM 18527 = JCM 14202","na":1,"nb":2,"a":[["TED%3AAF-X0PQH2-F1-model_v4_TED01","TED highly-symmetric fold AF-X0PQH2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A398555","Agrilactobacillus composti"],["NCBITaxon%3A1423734","Agrilactobacillus composti DSM 18527 = JCM 14202"]]},{"id":"NCBITaxon:1423735","l":"Lapidilactobacillus concavus DSM 17758","na":1,"nb":2,"a":[["TED%3AAF-A0A0R1VYU6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0R1VYU6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A287844","Lapidilactobacillus concavus"],["NCBITaxon%3A1423735","Lapidilactobacillus concavus DSM 17758"]]},{"id":"NCBITaxon:1423737","l":"Companilactobacillus crustorum JCM 15951","na":1,"nb":2,"a":[["TED%3AAF-A0A837RKZ0-F1-model_v4_TED01","TED novel fold AF-A0A837RKZ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A392416","Companilactobacillus crustorum"],["NCBITaxon%3A1423737","Companilactobacillus crustorum JCM 15951"]]},{"id":"NCBITaxon:1423743","l":"Lentilactobacillus farraginis DSM 18382 = JCM 14108","na":1,"nb":2,"a":[["TED%3AAF-X0PMJ3-F1-model_v4_TED01","TED highly-symmetric fold AF-X0PMJ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A390841","Lentilactobacillus farraginis"],["NCBITaxon%3A1423743","Lentilactobacillus farraginis DSM 18382 = JCM 14108"]]},{"id":"NCBITaxon:1423765","l":"Companilactobacillus kimchii DSM 13961 = JCM 10707","na":1,"nb":2,"a":[["TED%3AAF-A0A0R1I3Z1-F1-model_v4_TED01","TED novel fold AF-A0A0R1I3Z1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2801452","Companilactobacillus kimchii"],["NCBITaxon%3A1423765","Companilactobacillus kimchii DSM 13961 = JCM 10707"]]},{"id":"NCBITaxon:1423774","l":"Companilactobacillus nantensis DSM 16982","na":1,"nb":2,"a":[["TED%3AAF-A0A0R1WL06-F1-model_v4_TED01","TED novel fold AF-A0A0R1WL06-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A305793","Companilactobacillus nantensis"],["NCBITaxon%3A1423774","Companilactobacillus nantensis DSM 16982"]]},{"id":"NCBITaxon:1423792","l":"Schleiferilactobacillus perolens DSM 12744","na":1,"nb":2,"a":[["TED%3AAF-A0A0R1MPN9-F1-model_v4_TED03","TED novel fold AF-A0A0R1MPN9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A100468","Schleiferilactobacillus perolens"],["NCBITaxon%3A1423792","Schleiferilactobacillus perolens DSM 12744"]]},{"id":"NCBITaxon:1423806","l":"Liquorilactobacillus sucicola DSM 21376 = JCM 15457","na":1,"nb":2,"a":[["TED%3AAF-A0A023CYF4-F1-model_v4_TED02","TED novel fold AF-A0A023CYF4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A519050","Liquorilactobacillus sucicola"],["NCBITaxon%3A1423806","Liquorilactobacillus sucicola DSM 21376 = JCM 15457"]]},{"id":"NCBITaxon:1423810","l":"Lacticaseibacillus thailandensis DSM 22698 = JCM 13996","na":1,"nb":2,"a":[["TED%3AAF-A0A0R2C6X6-F1-model_v4_TED01","TED novel fold AF-A0A0R2C6X6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A381741","Lacticaseibacillus thailandensis"],["NCBITaxon%3A1423810","Lacticaseibacillus thailandensis DSM 22698 = JCM 13996"]]},{"id":"NCBITaxon:1431546","l":"Corynebacterium aquilae DSM 44791","na":1,"nb":2,"a":[["TED%3AAF-A0A1L7CFU4-F1-model_v4_TED03","TED novel fold AF-A0A1L7CFU4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A203263","Corynebacterium aquilae"],["NCBITaxon%3A1431546","Corynebacterium aquilae DSM 44791"]]},{"id":"NCBITaxon:1432052","l":"Eisenbergiella tayi","na":1,"nb":2,"a":[["TED%3AAF-A0A1E3UPB3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1E3UPB3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2652274","Eisenbergiella porci"],["NCBITaxon%3A1432052","Eisenbergiella tayi"]]},{"id":"NCBITaxon:1434842","l":"Sphingobacterium sp. JB170","na":2,"nb":1,"a":[["TED%3AAF-A0A1R4J3P6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1R4J3P6-F1-model_v4_TED01"],["TED%3AAF-A0A1R4KF03-F1-model_v4_TED01","TED novel fold AF-A0A1R4KF03-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1434842","Sphingobacterium sp. JB170"]]},{"id":"NCBITaxon:143495","l":"Aneurinibacillus thermoaerophilus","na":2,"nb":1,"a":[["Pfam%3APF05523","WxcM-like, C-terminal"],["TED%3AAF-A0A1G8FMF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G8FMF4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A143495","Aneurinibacillus thermoaerophilus"]]},{"id":"NCBITaxon:1435","l":"Bacillus thuringiensis subsp. san diego","na":2,"nb":1,"a":[["Pfam%3APF03944","delta endotoxin"],["Pfam%3APF00555","delta endotoxin"]],"b":[["NCBITaxon%3A1435","Bacillus thuringiensis serovar san diego"]]},{"id":"NCBITaxon:1435051","l":"Bifidobacterium moukalabense DSM 27321","na":1,"nb":2,"a":[["TED%3AAF-W4N9D3-F1-model_v4_TED03","TED novel fold AF-W4N9D3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1333651","Bifidobacterium moukalabense"],["NCBITaxon%3A1435051","Bifidobacterium moukalabense DSM 27321"]]},{"id":"NCBITaxon:1437280","l":"Sphingobacterium yanglingense","na":2,"nb":1,"a":[["TED%3AAF-A0A4R6WGK7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4R6WGK7-F1-model_v4_TED02"],["TED%3AAF-A0A4R6WPH5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R6WPH5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1437280","Sphingobacterium yanglingense"]]},{"id":"NCBITaxon:1437824","l":"","na":1,"nb":2,"a":[["Pfam%3APF18566","Linalool dehydratase/isomerase"]],"b":[["NCBITaxon%3A75697","Castellaniella defragrans"],["NCBITaxon%3A1437824","Castellaniella defragrans 65Phen"]]},{"id":"NCBITaxon:1440","l":"Bacillus thuringiensis subsp. alesti","na":2,"nb":1,"a":[["Pfam%3APF20773","Immune inhibitor A-like, MAM domain"],["Pfam%3APF20774","Immune inhibitor A-like metallopeptidase, VEG domain"]],"b":[["NCBITaxon%3A1440","Bacillus thuringiensis serovar alesti"]]},{"id":"NCBITaxon:1441714","l":"-","na":2,"nb":1,"a":[["TED%3AAF-A0A2T1AGR1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2T1AGR1-F1-model_v4_TED02"],["TED%3AAF-A0A2T1AKH5-F1-model_v4_TED03","TED novel fold AF-A0A2T1AKH5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A134537","Paraburkholderia fungorum"]]},{"id":"NCBITaxon:1441930","l":"Chania multitudinisentens RB-25","na":1,"nb":2,"a":[["TED%3AAF-W0LKM6-F1-model_v4_TED03","TED highly-symmetric fold AF-W0LKM6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1639108","Chania multitudinisentens"],["NCBITaxon%3A1441930","Chania multitudinisentens RB-25"]]},{"id":"NCBITaxon:1444","l":"Bacillus thuringiensis serovar tenebrionis","na":1,"nb":2,"a":[["Pfam%3APF03945","delta endotoxin, N-terminal domain"]],"b":[["NCBITaxon%3A1444","Bacillus thuringiensis serovar tenebrionis"],["NCBITaxon%3A529121","Bacillus thuringiensis serovar tenebrionis str. YBT-1765"]]},{"id":"NCBITaxon:1447872","l":"Emergomyces pasteurianus Ep9510","na":2,"nb":1,"a":[["TED%3AAF-A0A1J9P8J4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1J9P8J4-F1-model_v4_TED01"],["TED%3AAF-A0A1J9PF03-F1-model_v4_TED01","TED novel fold AF-A0A1J9PF03-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1447872","Emergomyces pasteurianus Ep9510"]]},{"id":"NCBITaxon:1447875","l":"Helicocarpus griseus UAMH5409","na":2,"nb":1,"a":[["TED%3AAF-A0A2B7WG23-F1-model_v4_TED02","TED novel fold AF-A0A2B7WG23-F1-model_v4_TED02"],["TED%3AAF-A0A2B7XGI3-F1-model_v4_TED02","TED novel fold AF-A0A2B7XGI3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1447875","Helicocarpus griseus UAMH5409"]]},{"id":"NCBITaxon:1447883","l":"Polytolypa hystricis UAMH7299","na":2,"nb":1,"a":[["TED%3AAF-A0A2B7XF76-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2B7XF76-F1-model_v4_TED02"],["TED%3AAF-A0A2B7XVY8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2B7XVY8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1447883","Polytolypa hystricis UAMH7299"]]},{"id":"NCBITaxon:1448857","l":"Campylobacter corcagiensis","na":2,"nb":1,"a":[["TED%3AAF-A0A7M1LDD3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7M1LDD3-F1-model_v4_TED01"],["TED%3AAF-A0A7M1LDP4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7M1LDP4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1448857","Campylobacter corcagiensis"]]},{"id":"NCBITaxon:1449976","l":"Kutzneria albida DSM 43870","na":1,"nb":2,"a":[["TED%3AAF-W5WK35-F1-model_v4_TED01","TED novel fold AF-W5WK35-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A47990","Kutzneria viridogrisea"],["NCBITaxon%3A1449976","Kutzneria viridogrisea DSM 43870"]]},{"id":"NCBITaxon:1453500","l":"Schleiferia thermophila str. Yellowstone","na":2,"nb":1,"a":[["TED%3AAF-A0A085KZN4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085KZN4-F1-model_v4_TED01"],["TED%3AAF-A0A085L5S3-F1-model_v4_TED01","TED novel fold AF-A0A085L5S3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1453500","Schleiferia thermophila str. Yellowstone"]]},{"id":"NCBITaxon:1454006","l":"Siansivirga zeaxanthinifaciens CC-SAMT-1","na":1,"nb":2,"a":[["TED%3AAF-A0A0C5WPT2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0C5WPT2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A762954","Siansivirga zeaxanthinifaciens"],["NCBITaxon%3A1454006","Siansivirga zeaxanthinifaciens CC-SAMT-1"]]},{"id":"NCBITaxon:1459","l":"Sporosarcina globispora","na":1,"nb":2,"a":[["Pfam%3APF16990","Carbohydrate binding module (family 35)"]],"b":[["NCBITaxon%3A1459","Sporosarcina globispora"],["NCBITaxon%3A83428","uncultured Bacillus sp."]]},{"id":"NCBITaxon:146475","l":"Acetobacter cibinongensis","na":1,"nb":2,"a":[["TED%3AAF-A0A0D6N7J0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D6N7J0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A146475","Acetobacter cibinongensis"],["NCBITaxon%3A1307904","Acetobacter cibinongensis NRIC 0482"]]},{"id":"NCBITaxon:147645","l":"Paracoccus yeei","na":1,"nb":2,"a":[["TED%3AAF-A0A5P2QVK1-F1-model_v4_TED01","TED novel fold AF-A0A5P2QVK1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A147645","Paracoccus yeei"],["NCBITaxon%3A1446473","Paracoccus yeei ATCC BAA-599"]]},{"id":"NCBITaxon:1478131","l":"Streptomyces sp. L-9-10","na":2,"nb":1,"a":[["TED%3AAF-A0A4Q4DC23-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A4Q4DC23-F1-model_v4_TED03"],["TED%3AAF-A0A4Q4DRF2-F1-model_v4_TED03","TED novel fold AF-A0A4Q4DRF2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1478131","Streptomyces sp. L-9-10"]]},{"id":"NCBITaxon:1478174","l":"Neochlamydia sp. TUME1","na":1,"nb":2,"a":[["TED%3AAF-A0A0C1JMX6-F1-model_v4_TED04","TED novel fold AF-A0A0C1JMX6-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A3100387","Neochlamydia sp."],["NCBITaxon%3A1478174","Neochlamydia sp. TUME1"]]},{"id":"NCBITaxon:1486917","l":"Craspedostauros australis","na":2,"nb":1,"a":[["TED%3AAF-A0A7R9WX70-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7R9WX70-F1-model_v4_TED01"],["TED%3AAF-A0A7R9WUI6-F1-model_v4_TED01","TED novel fold AF-A0A7R9WUI6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1486917","Craspedostauros australis"]]},{"id":"NCBITaxon:149040","l":"Mollisia scopiformis","na":2,"nb":1,"a":[["TED%3AAF-A0A132B1T2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A132B1T2-F1-model_v4_TED01"],["TED%3AAF-A0A132B5X2-F1-model_v4_TED02","TED novel fold AF-A0A132B5X2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A149040","Mollisia scopiformis"]]},{"id":"NCBITaxon:1498","l":"Hathewaya histolytica","na":2,"nb":1,"a":[["Pfam%3APF18496","Collagenase G catalytic helper subdomain"],["Pfam%3APF08453","Peptidase family M9 N-terminal"]],"b":[["NCBITaxon%3A1498","Hathewaya histolytica"]]},{"id":"NCBITaxon:1499","l":"Ruminiclostridium josui","na":1,"nb":2,"a":[["PROSITE%3APS00747","Glutamyl-tRNA reductase signature"]],"b":[["NCBITaxon%3A1499","Ruminiclostridium josui"],["NCBITaxon%3A1291050","Ruminiclostridium josui JCM 17888"]]},{"id":"NCBITaxon:1502850","l":"Sphingopyxis sp. LC81","na":2,"nb":1,"a":[["TED%3AAF-A0A095BVH7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A095BVH7-F1-model_v4_TED01"],["TED%3AAF-A0A095D0J2-F1-model_v4_TED01","TED novel fold AF-A0A095D0J2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1502850","Sphingopyxis sp. LC81"]]},{"id":"NCBITaxon:1505037","l":"Emcibacter nanhaiensis","na":1,"nb":2,"a":[["TED%3AAF-A0A501PJX8-F1-model_v4_TED02","TED novel fold AF-A0A501PJX8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1505037","Emcibacter nanhaiensis"],["NCBITaxon%3A630535","Gracilibacillus marinus"]]},{"id":"NCBITaxon:1510197","l":"Streptomyces sp. PT12","na":1,"nb":2,"a":[["TED%3AAF-A0A365YRR4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A365YRR4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A1510197","Streptomyces sp. PT12"]]},{"id":"NCBITaxon:151035","l":"Euplotes harpa","na":2,"nb":1,"a":[["TED%3AAF-A0A7S3J944-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3J944-F1-model_v4_TED01"],["TED%3AAF-A0A7S3J5Z8-F1-model_v4_TED01","TED novel fold AF-A0A7S3J5Z8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A151035","Euplotes harpa"]]},{"id":"NCBITaxon:1510460","l":"Ascidiaceihabitans donghaensis","na":2,"nb":1,"a":[["TED%3AAF-A0A2R8BG13-F1-model_v4_TED01","TED novel fold AF-A0A2R8BG13-F1-model_v4_TED01"],["TED%3AAF-A0A2R8BGW8-F1-model_v4_TED02","TED novel fold AF-A0A2R8BGW8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1510460","Ascidiaceihabitans donghaensis"]]},{"id":"NCBITaxon:1510841","l":"Parasaccharibacter apium","na":1,"nb":2,"a":[["TED%3AAF-A0A2C6HKU2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2C6HKU2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1785988","Bombella apis"],["NCBITaxon%3A1510841","Parasaccharibacter apium"]]},{"id":"NCBITaxon:151783","l":"Cupriavidus campinensis","na":1,"nb":2,"a":[["TED%3AAF-A0A556UPV6-F1-model_v4_TED01","TED novel fold AF-A0A556UPV6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A151783","Cupriavidus campinensis"],["NCBITaxon%3A1706855","Deinococcus malanensis"]]},{"id":"NCBITaxon:1520810","l":"Butyrivibrio sp. Su6","na":2,"nb":1,"a":[["TED%3AAF-A0A1H5SCF6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H5SCF6-F1-model_v4_TED02"],["TED%3AAF-A0A1H5RWX6-F1-model_v4_TED02","TED novel fold AF-A0A1H5RWX6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1520810","Butyrivibrio sp. Su6"]]},{"id":"NCBITaxon:152142","l":"Mycolicibacterium holsaticum","na":1,"nb":2,"a":[["TED%3AAF-A0A1E3RVW1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E3RVW1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A152142","Mycolicibacterium holsaticum"],["NCBITaxon%3A1226752","Mycolicibacterium holsaticum DSM 44478 = JCM 12374"]]},{"id":"NCBITaxon:152263","l":"","na":1,"nb":2,"a":[["TED%3AAF-A0A514EFL3-F1-model_v4_TED01","TED novel fold AF-A0A514EFL3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A3390025","Xanthomonas cerealis"],["NCBITaxon%3A152263","Xanthomonas cerealis pv. cerealis"]]},{"id":"NCBITaxon:1524254","l":"Pseudohongiella acticola","na":2,"nb":1,"a":[["TED%3AAF-A0A1E8CF60-F1-model_v4_TED04","TED novel fold AF-A0A1E8CF60-F1-model_v4_TED04"],["TED%3AAF-A0A1E8CLK0-F1-model_v4_TED02","TED novel fold AF-A0A1E8CLK0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1524254","Pseudohongiella acticola"]]},{"id":"NCBITaxon:1525360","l":"Hymenobacter wooponensis","na":2,"nb":1,"a":[["TED%3AAF-A0A4Z0MMW4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Z0MMW4-F1-model_v4_TED02"],["TED%3AAF-A0A4Z0MGV5-F1-model_v4_TED01","TED novel fold AF-A0A4Z0MGV5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1525360","Hymenobacter wooponensis"]]},{"id":"NCBITaxon:1538158","l":"Rhizobium acidisoli","na":2,"nb":1,"a":[["TED%3AAF-A0A0N1DKC6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0N1DKC6-F1-model_v4_TED01"],["TED%3AAF-A0A0N1MDV0-F1-model_v4_TED01","TED novel fold AF-A0A0N1MDV0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1538158","Rhizobium acidisoli"]]},{"id":"NCBITaxon:1540082","l":"Acidianus sp. RZ1","na":1,"nb":2,"a":[["TED%3AAF-A0A7K4FX46-F1-model_v4_TED02","TED novel fold AF-A0A7K4FX46-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1540082","Acidianus sp. RZ1"],["NCBITaxon%3A1160895","Candidatus Acidianus copahuensis"]]},{"id":"NCBITaxon:1540520","l":"Kribbella italica","na":2,"nb":1,"a":[["TED%3AAF-A0A7W9J4H4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W9J4H4-F1-model_v4_TED02"],["TED%3AAF-A0A7W9JER4-F1-model_v4_TED01","TED novel fold AF-A0A7W9JER4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1540520","Kribbella italica"]]},{"id":"NCBITaxon:1541063","l":"Prolixibacter denitrificans","na":2,"nb":1,"a":[["TED%3AAF-A0A2P8CHN5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P8CHN5-F1-model_v4_TED01"],["TED%3AAF-A0A2P8CKY9-F1-model_v4_TED01","TED novel fold AF-A0A2P8CKY9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1541063","Prolixibacter denitrificans"]]},{"id":"NCBITaxon:1541960","l":"Candidatus Izimaplasma bacterium HR2","na":2,"nb":1,"a":[["TED%3AAF-A0A094KWA0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A094KWA0-F1-model_v4_TED02"],["TED%3AAF-A0A094J3E5-F1-model_v4_TED01","TED novel fold AF-A0A094J3E5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1541960","Candidatus Izimoplasma sp. HR2"]]},{"id":"NCBITaxon:1547","l":"Thomasclavelia ramosa","na":1,"nb":2,"a":[["TED%3AAF-A0A3E3E4C4-F1-model_v4_TED02","TED novel fold AF-A0A3E3E4C4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1547","Thomasclavelia ramosa"],["NCBITaxon%3A445974","Thomasclavelia ramosa DSM 1402"]]},{"id":"NCBITaxon:1547597","l":"Sanguibacteroides justesenii","na":2,"nb":1,"a":[["TED%3AAF-A0A318NC13-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A318NC13-F1-model_v4_TED05"],["TED%3AAF-A0A318N2U5-F1-model_v4_TED04","TED novel fold AF-A0A318N2U5-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1547597","Sanguibacteroides justesenii"]]},{"id":"NCBITaxon:1548","l":"Clostridium scatologenes","na":2,"nb":1,"a":[["Pfam%3APF18671","4-Hydroxyphenylacetate decarboxylase subunit gamma N-terminal"],["Pfam%3APF18524","High potential iron-sulfur protein like"]],"b":[["NCBITaxon%3A1548","Clostridium scatologenes"]]},{"id":"NCBITaxon:1549748","l":"Kiloniella litopenaei","na":2,"nb":1,"a":[["TED%3AAF-A0A0M2R8I7-F1-model_v4_TED02","TED novel fold AF-A0A0M2R8I7-F1-model_v4_TED02"],["TED%3AAF-A0A0M2RGD3-F1-model_v4_TED01","TED novel fold AF-A0A0M2RGD3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1549748","Kiloniella litopenaei"]]},{"id":"NCBITaxon:1550024","l":"Ruthenibacterium lactatiformans","na":2,"nb":1,"a":[["TED%3AAF-A0A0D8IWE3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0D8IWE3-F1-model_v4_TED03"],["TED%3AAF-A0A0W7TUX1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0W7TUX1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1550024","Ruthenibacterium lactatiformans"]]},{"id":"NCBITaxon:1553448","l":"","na":2,"nb":1,"a":[["TED%3AAF-A0A444M931-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A444M931-F1-model_v4_TED02"],["TED%3AAF-A0A444ME17-F1-model_v4_TED01","TED novel fold AF-A0A444ME17-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1553448","Falsigemmobacter intermedius"]]},{"id":"NCBITaxon:1561963","l":"Amorphochlora amoebiformis","na":2,"nb":1,"a":[["TED%3AAF-A0A7S0DJ05-F1-model_v4_TED02","TED novel fold AF-A0A7S0DJ05-F1-model_v4_TED02"],["TED%3AAF-A0A7S0DP28-F1-model_v4_TED01","TED novel fold AF-A0A7S0DP28-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1561963","Amorphochlora amoebiformis"]]},{"id":"NCBITaxon:1564487","l":"Herbinix hemicellulosilytica","na":2,"nb":1,"a":[["Pfam%3APF28350","Cas13a C-terminal HEPN-like domain"],["TED%3AAF-A0A3R9QDU8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3R9QDU8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1564487","Herbinix hemicellulosilytica"]]},{"id":"NCBITaxon:1566026","l":"Roseivirga seohaensis subsp. aquiponti","na":1,"nb":2,"a":[["TED%3AAF-A0A0L8AL15-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0L8AL15-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1914963","Roseivirga seohaensis"],["NCBITaxon%3A1566026","Roseivirga seohaensis subsp. aquiponti"]]},{"id":"NCBITaxon:1566287","l":"","na":1,"nb":2,"a":[["TED%3AAF-A0A559RRF6-F1-model_v4_TED01","TED novel fold AF-A0A559RRF6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024995","Dokdonia sp."],["NCBITaxon%3A1566287","Dokdonia sp. Hel_I_53"]]},{"id":"NCBITaxon:1569284","l":"Bdellovibrio sp. ArHS","na":2,"nb":1,"a":[["TED%3AAF-A0A0B8WL91-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0B8WL91-F1-model_v4_TED01"],["TED%3AAF-A0A0B8WXD6-F1-model_v4_TED01","TED novel fold AF-A0A0B8WXD6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1569284","Bdellovibrio sp. ArHS"]]},{"id":"NCBITaxon:156981","l":"Cellulomonas hominis","na":1,"nb":2,"a":[["TED%3AAF-A0A7Y9R8H3-F1-model_v4_TED06","TED novel fold AF-A0A7Y9R8H3-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A156981","Cellulomonas hominis"],["NCBITaxon%3A1305868","Cellulomonas hominis JCM 12133"]]},{"id":"NCBITaxon:1571199","l":"Bradyrhizobium sp. Leo170","na":2,"nb":1,"a":[["TED%3AAF-A0A4Q8QKG2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A4Q8QKG2-F1-model_v4_TED03"],["TED%3AAF-A0A4Q8R934-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q8R934-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1571199","Bradyrhizobium sp. Leo170"]]},{"id":"NCBITaxon:157538","l":"Leptomonas pyrrhocoris","na":2,"nb":1,"a":[["TED%3AAF-A0A0M9G8S4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0M9G8S4-F1-model_v4_TED01"],["TED%3AAF-A0A0M9G713-F1-model_v4_TED03","TED novel fold AF-A0A0M9G713-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A157538","Leptomonas pyrrhocoris"]]},{"id":"NCBITaxon:1576369","l":"Planctomicrobium piriforme","na":2,"nb":1,"a":[["TED%3AAF-A0A1I3L149-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I3L149-F1-model_v4_TED01"],["TED%3AAF-A0A1I3P1K5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1I3P1K5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1576369","Planctomicrobium piriforme"]]},{"id":"NCBITaxon:157782","l":"Pseudomonas parafulva","na":1,"nb":2,"a":[["TED%3AAF-A0A147GAW8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A147GAW8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A157782","Pseudomonas parafulva"],["NCBITaxon%3A1215114","Pseudomonas parafulva NBRC 16636 = DSM 17004"]]},{"id":"NCBITaxon:1581095","l":"Sphingobacterium sp. HMSC13C05","na":2,"nb":1,"a":[["TED%3AAF-A0A1F2K807-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F2K807-F1-model_v4_TED02"],["TED%3AAF-A0A1F2KFK1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F2KFK1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1581095","Sphingobacterium sp. HMSC13C05"]]},{"id":"NCBITaxon:158189","l":"","na":1,"nb":2,"a":[["TED%3AAF-F0RW27-F1-model_v4_TED03","TED novel fold AF-F0RW27-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1131703","Sphaerochaeta globosa"],["NCBITaxon%3A158189","Sphaerochaeta globosa str. Buddy"]]},{"id":"NCBITaxon:158190","l":"","na":1,"nb":2,"a":[["TED%3AAF-G8QR79-F1-model_v4_TED02","TED novel fold AF-G8QR79-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1131707","Sphaerochaeta pleomorpha"],["NCBITaxon%3A158190","Sphaerochaeta pleomorpha str. Grapes"]]},{"id":"NCBITaxon:158607","l":"Diaporthe helianthi","na":2,"nb":1,"a":[["TED%3AAF-A0A2P5HTH0-F1-model_v4_TED03","TED novel fold AF-A0A2P5HTH0-F1-model_v4_TED03"],["TED%3AAF-A0A2P5I5U4-F1-model_v4_TED02","TED novel fold AF-A0A2P5I5U4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A158607","Diaporthe helianthi"]]},{"id":"NCBITaxon:158755","l":"uncultured Cytophagales bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A6J4ITQ0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6J4ITQ0-F1-model_v4_TED02"],["TED%3AAF-A0A6J4JM73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6J4JM73-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A158755","uncultured Cytophagales bacterium"]]},{"id":"NCBITaxon:158822","l":"Cedecea neteri","na":1,"nb":2,"a":[["TED%3AAF-A0A2X3IYC7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2X3IYC7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A158822","Cedecea neteri"],["NCBITaxon%3A1216978","Cedecea neteri NBRC 105707 = ATCC 33855"]]},{"id":"NCBITaxon:158841","l":"Leminorella richardii","na":1,"nb":2,"a":[["TED%3AAF-A0A2X4XJ45-F1-model_v4_TED01","TED novel fold AF-A0A2X4XJ45-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A158841","Leminorella richardii"],["NCBITaxon%3A1354266","Leminorella richardii ATCC 33998"]]},{"id":"NCBITaxon:1592327","l":"Actinobacteria bacterium OK074","na":2,"nb":1,"a":[["TED%3AAF-A0A0N0MT24-F1-model_v4_TED01","TED novel fold AF-A0A0N0MT24-F1-model_v4_TED01"],["TED%3AAF-A0A0N1FVZ1-F1-model_v4_TED01","TED novel fold AF-A0A0N1FVZ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1592327","Actinobacteria bacterium OK074"]]},{"id":"NCBITaxon:159449","l":"Embleya scabrispora","na":1,"nb":2,"a":[["TED%3AAF-A0A1T3P567-F1-model_v4_TED01","TED novel fold AF-A0A1T3P567-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A159449","Embleya scabrispora"],["NCBITaxon%3A1123320","Embleya scabrispora DSM 41855"]]},{"id":"NCBITaxon:159743","l":"Paenibacillus terrae","na":1,"nb":2,"a":[["TED%3AAF-A0A0D7WXS4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D7WXS4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A159743","Paenibacillus terrae"],["NCBITaxon%3A985665","Paenibacillus terrae HPL-003"]]},{"id":"NCBITaxon:1597977","l":"Spirosoma fluviale","na":2,"nb":1,"a":[["TED%3AAF-A0A286FEP1-F1-model_v4_TED03","TED novel fold AF-A0A286FEP1-F1-model_v4_TED03"],["TED%3AAF-A0A286GW32-F1-model_v4_TED01","TED novel fold AF-A0A286GW32-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1597977","Spirosoma fluviale"]]},{"id":"NCBITaxon:1603295","l":"Fungal sp. (strain No.11243)","na":2,"nb":1,"a":[["TED%3AAF-A0A0S6XE84-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S6XE84-F1-model_v4_TED01"],["TED%3AAF-A0A0S6XNK0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S6XNK0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1603295","Dothideomycetidae sp. 11243"]]},{"id":"NCBITaxon:160396","l":"Chryseobacterium defluvii","na":2,"nb":1,"a":[["TED%3AAF-A0A495S9U1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A495S9U1-F1-model_v4_TED01"],["TED%3AAF-A0A840KF89-F1-model_v4_TED02","TED novel fold AF-A0A840KF89-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A160396","Chryseobacterium defluvii"]]},{"id":"NCBITaxon:160799","l":"Paenibacillus borealis","na":2,"nb":1,"a":[["Pfam%3APF06165","Glycosyl hydrolase 94, supersandwich domain"],["Pfam%3APF17167","Glycosyl hydrolase 94 superfamily, catalytic domain"]],"b":[["NCBITaxon%3A160799","Paenibacillus borealis"]]},{"id":"NCBITaxon:160808","l":"Acidithiobacillus ferrivorans","na":1,"nb":2,"a":[["TED%3AAF-A0A060UTX4-F1-model_v4_TED01","TED novel fold AF-A0A060UTX4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A160808","Acidithiobacillus ferrivorans"],["NCBITaxon%3A743299","Acidithiobacillus ferrivorans SS3"]]},{"id":"NCBITaxon:1608400","l":"Algibacter amylolyticus","na":2,"nb":1,"a":[["TED%3AAF-A0A5M7BIX9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5M7BIX9-F1-model_v4_TED02"],["TED%3AAF-A0A5M7B9R4-F1-model_v4_TED01","TED novel fold AF-A0A5M7B9R4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1608400","Algibacter amylolyticus"]]},{"id":"NCBITaxon:1608957","l":"Euzebya pacifica","na":2,"nb":1,"a":[["TED%3AAF-A0A346Y3M1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A346Y3M1-F1-model_v4_TED02"],["TED%3AAF-A0A346Y0S8-F1-model_v4_TED01","TED novel fold AF-A0A346Y0S8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1608957","Euzebya pacifica"]]},{"id":"NCBITaxon:1612308","l":"Methylocapsa palsarum","na":2,"nb":1,"a":[["TED%3AAF-A0A1I4BSR3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I4BSR3-F1-model_v4_TED02"],["TED%3AAF-A0A1I3X4Y4-F1-model_v4_TED01","TED novel fold AF-A0A1I3X4Y4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1612308","Methylocapsa palsarum"]]},{"id":"NCBITaxon:161355","l":"","na":1,"nb":2,"a":[["TED%3AAF-A0A161LJ98-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A161LJ98-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A58119","Planomonospora parontospora"],["NCBITaxon%3A161355","Planomonospora parontospora subsp. sphaerica"]]},{"id":"NCBITaxon:1617416","l":"Chloroflexi bacterium OLB15","na":2,"nb":1,"a":[["TED%3AAF-A0A136KZS9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A136KZS9-F1-model_v4_TED02"],["TED%3AAF-A0A136KZS9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A136KZS9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1617416","Chloroflexi bacterium OLB15"]]},{"id":"NCBITaxon:1618392","l":"Candidatus Collierbacteria bacterium GW2011 GWC2 44 18","na":2,"nb":1,"a":[["TED%3AAF-A0A0G1HR75-F1-model_v4_TED02","TED novel fold AF-A0A0G1HR75-F1-model_v4_TED02"],["TED%3AAF-A0A0G1HRP8-F1-model_v4_TED02","TED novel fold AF-A0A0G1HRP8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1618392","Candidatus Collierbacteria bacterium GW2011_GWC2_44_18"]]},{"id":"NCBITaxon:1618979","l":"Candidatus Uhrbacteria bacterium GW2011 GWA2 52 8d","na":2,"nb":1,"a":[["TED%3AAF-A0A0G1XJV8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G1XJV8-F1-model_v4_TED01"],["TED%3AAF-A0A0G1XPW5-F1-model_v4_TED01","TED novel fold AF-A0A0G1XPW5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618979","Candidatus Uhrbacteria bacterium GW2011_GWA2_52_8d"]]},{"id":"NCBITaxon:1619898","l":"Chlorobi bacterium OLB7","na":2,"nb":1,"a":[["TED%3AAF-A0A136PB26-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A136PB26-F1-model_v4_TED05"],["TED%3AAF-A0A136PC65-F1-model_v4_TED03","TED novel fold AF-A0A136PC65-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1619898","Chlorobi bacterium OLB7"]]},{"id":"NCBITaxon:1621989","l":"Desulfofervidus auxilii","na":2,"nb":1,"a":[["TED%3AAF-A0A7C2A368-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C2A368-F1-model_v4_TED01"],["TED%3AAF-A0A7C0Y6H1-F1-model_v4_TED02","TED novel fold AF-A0A7C0Y6H1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1621989","Candidatus Desulfofervidus auxilii"]]},{"id":"NCBITaxon:162496","l":"Glutamicibacter creatinolyticus","na":1,"nb":2,"a":[["TED%3AAF-A0A5B7WZ71-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B7WZ71-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1701","Brevibacterium sp."],["NCBITaxon%3A162496","Glutamicibacter creatinolyticus"]]},{"id":"NCBITaxon:1628085","l":"Agathobaculum butyriciproducens","na":2,"nb":1,"a":[["TED%3AAF-A0A3E2Y033-F1-model_v4_TED01","TED novel fold AF-A0A3E2Y033-F1-model_v4_TED01"],["TED%3AAF-A0A3E2Y3F1-F1-model_v4_TED01","TED novel fold AF-A0A3E2Y3F1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1628085","Agathobaculum butyriciproducens"]]},{"id":"NCBITaxon:163","l":"Treponema bryantii","na":1,"nb":2,"a":[["TED%3AAF-A0A1I3JLL1-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A1I3JLL1-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A163","Treponema bryantii"],["NCBITaxon%3A877418","Treponema bryantii NK4A124"]]},{"id":"NCBITaxon:1630693","l":"Gemmata sp. SH-PL17","na":2,"nb":1,"a":[["TED%3AAF-A0A142XKF3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A142XKF3-F1-model_v4_TED01"],["TED%3AAF-A0A142XIQ8-F1-model_v4_TED02","TED novel fold AF-A0A142XIQ8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1630693","Gemmata sp. SH-PL17"]]},{"id":"NCBITaxon:1632859","l":"Arsukibacterium sp. MJ3","na":2,"nb":1,"a":[["TED%3AAF-A0A0M2VH42-F1-model_v4_TED02","TED novel fold AF-A0A0M2VH42-F1-model_v4_TED02"],["TED%3AAF-A0A0M2VJ55-F1-model_v4_TED01","TED novel fold AF-A0A0M2VJ55-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1632859","Arsukibacterium sp. MJ3"]]},{"id":"NCBITaxon:1632867","l":"Methylocucumis oryzae","na":2,"nb":1,"a":[["TED%3AAF-A0A0F3IKK7-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A0F3IKK7-F1-model_v4_TED04"],["TED%3AAF-A0A0F3IKK2-F1-model_v4_TED01","TED novel fold AF-A0A0F3IKK2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1632867","Methylocucumis oryzae"]]},{"id":"NCBITaxon:1639882","l":"Longimicrobium terrae","na":2,"nb":1,"a":[["TED%3AAF-A0A841GZH2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841GZH2-F1-model_v4_TED01"],["TED%3AAF-A0A841H2X8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841H2X8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1639882","Longimicrobium terrae"]]},{"id":"NCBITaxon:1640509","l":"Candidatus Rokubacteria bacterium CSP1-6","na":2,"nb":1,"a":[["TED%3AAF-A0A0T6A749-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0T6A749-F1-model_v4_TED01"],["TED%3AAF-A0A0T6AIY2-F1-model_v4_TED02","TED novel fold AF-A0A0T6AIY2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1640509","Candidatus Rokubacteria bacterium CSP1-6"]]},{"id":"NCBITaxon:1641165","l":"Halomicronema hongdechloris C2206","na":2,"nb":1,"a":[["TED%3AAF-A0A1Z3HJ02-F1-model_v4_TED01","TED novel fold AF-A0A1Z3HJ02-F1-model_v4_TED01"],["TED%3AAF-A0A1Z3HJU6-F1-model_v4_TED05","TED novel fold AF-A0A1Z3HJU6-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1641165","Halomicronema hongdechloris C2206"]]},{"id":"NCBITaxon:1654360","l":"Photobacterium galatheae","na":2,"nb":1,"a":[["TED%3AAF-A0A066RSN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A066RSN6-F1-model_v4_TED01"],["TED%3AAF-A0A066RLQ8-F1-model_v4_TED01","TED novel fold AF-A0A066RLQ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1654360","Photobacterium galatheae"]]},{"id":"NCBITaxon:1655638","l":"Peptococcaceae bacterium 1109","na":2,"nb":1,"a":[["TED%3AAF-A0A0J1DN64-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0J1DN64-F1-model_v4_TED02"],["TED%3AAF-A0A0J1DP87-F1-model_v4_TED01","TED novel fold AF-A0A0J1DP87-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1655638","Peptococcaceae bacterium 1109"]]},{"id":"NCBITaxon:1658618","l":"Rubritalea profundi","na":2,"nb":1,"a":[["TED%3AAF-A0A2S7TYC2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S7TYC2-F1-model_v4_TED01"],["TED%3AAF-A0A2S7TX30-F1-model_v4_TED01","TED novel fold AF-A0A2S7TX30-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1658618","Rubritalea profundi"]]},{"id":"NCBITaxon:1658672","l":"Ottowia sp. oral taxon 894","na":2,"nb":1,"a":[["TED%3AAF-A0A0K1NEW5-F1-model_v4_TED02","TED novel fold AF-A0A0K1NEW5-F1-model_v4_TED02"],["TED%3AAF-A0A0K1NFW6-F1-model_v4_TED03","TED novel fold AF-A0A0K1NFW6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1658672","Ottowia sp. oral taxon 894"]]},{"id":"NCBITaxon:1660102","l":"Hyphomicrobium sp. SCN 65-11","na":2,"nb":1,"a":[["TED%3AAF-A0A1E4CJA3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1E4CJA3-F1-model_v4_TED02"],["TED%3AAF-A0A1E4CUN4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1E4CUN4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1660102","Hyphomicrobium sp. SCN 65-11"]]},{"id":"NCBITaxon:1664694","l":"Phialophora attinorum","na":2,"nb":1,"a":[["TED%3AAF-A0A0N1H3E1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0N1H3E1-F1-model_v4_TED01"],["TED%3AAF-A0A0N1NVY1-F1-model_v4_TED01","TED novel fold AF-A0A0N1NVY1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1664694","Cyphellophora attinorum"]]},{"id":"NCBITaxon:1672391","l":"uncultured Chloroflexia bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A6J4I1X6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6J4I1X6-F1-model_v4_TED01"],["TED%3AAF-A0A6J4K868-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6J4K868-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1672391","uncultured Chloroflexia bacterium"]]},{"id":"NCBITaxon:1672749","l":"Xaviernesmea rhizosphaerae","na":2,"nb":1,"a":[["TED%3AAF-A0A1Q9AN22-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q9AN22-F1-model_v4_TED01"],["TED%3AAF-A0A1Q9AMN0-F1-model_v4_TED01","TED novel fold AF-A0A1Q9AMN0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1672749","Xaviernesmea rhizosphaerae"]]},{"id":"NCBITaxon:1678012","l":"Streptomyces monashensis","na":2,"nb":1,"a":[["TED%3AAF-A0A1S2QRY7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S2QRY7-F1-model_v4_TED01"],["TED%3AAF-A0A1S2PJL5-F1-model_v4_TED02","TED novel fold AF-A0A1S2PJL5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1678012","Streptomyces monashensis"]]},{"id":"NCBITaxon:167968","l":"uncultured Desulfovibrio sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A212J776-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A212J776-F1-model_v4_TED02"],["TED%3AAF-A0A212L6P7-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A212L6P7-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A167968","uncultured Desulfovibrio sp."]]},{"id":"NCBITaxon:1691940","l":"Clostridium luticellarii","na":2,"nb":1,"a":[["TED%3AAF-A0A2T0BQR6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T0BQR6-F1-model_v4_TED01"],["TED%3AAF-A0A2T0BNQ9-F1-model_v4_TED01","TED novel fold AF-A0A2T0BNQ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1691940","Clostridium luticellarii"]]},{"id":"NCBITaxon:1693","l":"Bifidobacterium minimum","na":1,"nb":2,"a":[["TED%3AAF-A0A087BMT5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A087BMT5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1693","Bifidobacterium minimum"],["NCBITaxon%3A1121109","Bifidobacterium minimum DSM 20102"]]},{"id":"NCBITaxon:169480","l":"Rothia amarae","na":1,"nb":2,"a":[["TED%3AAF-A0A7H2BI57-F1-model_v4_TED03","TED novel fold AF-A0A7H2BI57-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1207057","Ottowia beijingensis"],["NCBITaxon%3A169480","Rothia amarae"]]},{"id":"NCBITaxon:169679","l":"Clostridium saccharobutylicum","na":1,"nb":2,"a":[["Pfam%3APF13290","Chitobiase/beta-hexosaminidase C-terminal domain"]],"b":[["NCBITaxon%3A169679","Clostridium saccharobutylicum"],["NCBITaxon%3A1345695","Clostridium saccharobutylicum DSM 13864"]]},{"id":"NCBITaxon:1698277","l":"candidate division MSBL1 archaeon SCGC-AAA261O19","na":2,"nb":1,"a":[["TED%3AAF-A0A133VCK7-F1-model_v4_TED01","TED novel fold AF-A0A133VCK7-F1-model_v4_TED01"],["TED%3AAF-A0A133VCN5-F1-model_v4_TED01","TED novel fold AF-A0A133VCN5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1698277","candidate division MSBL1 archaeon SCGC-AAA261O19"]]},{"id":"NCBITaxon:1703345","l":"Niastella vici","na":2,"nb":1,"a":[["TED%3AAF-A0A1V9FWX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V9FWX7-F1-model_v4_TED01"],["TED%3AAF-A0A1V9G1L1-F1-model_v4_TED02","TED novel fold AF-A0A1V9G1L1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1703345","Niastella vici"]]},{"id":"NCBITaxon:1703397","l":"Deltaproteobacteria bacterium DG 8","na":2,"nb":1,"a":[["TED%3AAF-A0A0S7X9Q5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0S7X9Q5-F1-model_v4_TED02"],["TED%3AAF-A0A0S7X820-F1-model_v4_TED01","TED novel fold AF-A0A0S7X820-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1703397","Deltaproteobacteria bacterium DG_8"]]},{"id":"NCBITaxon:1703413","l":"Planctomycetes bacterium DG 20","na":2,"nb":1,"a":[["TED%3AAF-A0A0S7YKG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S7YKG8-F1-model_v4_TED01"],["TED%3AAF-A0A0S7YRG6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S7YRG6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1703413","Planctomycetes bacterium DG_20"]]},{"id":"NCBITaxon:1703781","l":"Latescibacteria bacterium DG 63","na":2,"nb":1,"a":[["TED%3AAF-A0A0S7XAJ5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0S7XAJ5-F1-model_v4_TED03"],["TED%3AAF-A0A0S7X9E4-F1-model_v4_TED01","TED novel fold AF-A0A0S7X9E4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1703781","Latescibacteria bacterium DG_63"]]},{"id":"NCBITaxon:1704028","l":"Planctomycetes bacterium SM23 25","na":2,"nb":1,"a":[["TED%3AAF-A0A0S8E147-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S8E147-F1-model_v4_TED01"],["TED%3AAF-A0A0S8EDG7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S8EDG7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1704028","Planctomycetes bacterium SM23_25"]]},{"id":"NCBITaxon:1704499","l":"Methylovulum psychrotolerans","na":2,"nb":1,"a":[["TED%3AAF-A0A2S5CPZ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5CPZ3-F1-model_v4_TED01"],["TED%3AAF-A0A1Z4BUX9-F1-model_v4_TED02","TED novel fold AF-A0A1Z4BUX9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1704499","Methylovulum psychrotolerans"]]},{"id":"NCBITaxon:170673","l":"Vibrio kanaloae","na":1,"nb":2,"a":[["TED%3AAF-A0A4U1Z3U9-F1-model_v4_TED01","TED novel fold AF-A0A4U1Z3U9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A170673","Vibrio kanaloae"],["NCBITaxon%3A1191299","Vibrio kanaloae 5S-149"]]},{"id":"NCBITaxon:1707093","l":"Heyndrickxia camelliae","na":2,"nb":1,"a":[["TED%3AAF-A0A2N3LKI2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3LKI2-F1-model_v4_TED01"],["TED%3AAF-A0A2N3LJD8-F1-model_v4_TED01","TED novel fold AF-A0A2N3LJD8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1707093","Heyndrickxia camelliae"]]},{"id":"NCBITaxon:171282","l":"Mycoplasmopsis columboralis","na":1,"nb":2,"a":[["TED%3AAF-A0A449B6Z6-F1-model_v4_TED01","TED novel fold AF-A0A449B6Z6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A171282","Mycoplasmopsis columboralis"],["NCBITaxon%3A1408458","Mycoplasmopsis columboralis ATCC 29258"]]},{"id":"NCBITaxon:1714254","l":"Caldivirga sp. JCHS 4","na":2,"nb":1,"a":[["TED%3AAF-A0A101XLH7-F1-model_v4_TED01","TED novel fold AF-A0A101XLH7-F1-model_v4_TED01"],["TED%3AAF-A0A124IVB1-F1-model_v4_TED02","TED novel fold AF-A0A124IVB1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1714254","Caldivirga sp. JCHS_4"]]},{"id":"NCBITaxon:1718998","l":"Streptomyces sp. TSRI0281","na":2,"nb":1,"a":[["TED%3AAF-A0A1Q4ZJ45-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q4ZJ45-F1-model_v4_TED01"],["TED%3AAF-A0A1Q4Z284-F1-model_v4_TED01","TED novel fold AF-A0A1Q4Z284-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1718998","Streptomyces sp. TSRI0281"]]},{"id":"NCBITaxon:172044","l":"Sphingomonas yabuuchiae","na":1,"nb":2,"a":[["TED%3AAF-A0A147IMF7-F1-model_v4_TED02","TED novel fold AF-A0A147IMF7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A172044","Sphingomonas yabuuchiae"],["NCBITaxon%3A1508805","Sphingorhabdus buctiana"]]},{"id":"NCBITaxon:172045","l":"Elizabethkingia miricola","na":1,"nb":2,"a":[["TED%3AAF-A0A0D5BKG2-F1-model_v4_TED01","TED novel fold AF-A0A0D5BKG2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A238","Elizabethkingia meningoseptica"],["NCBITaxon%3A172045","Elizabethkingia miricola"]]},{"id":"NCBITaxon:173366","l":"Methylocystis rosea","na":1,"nb":2,"a":[["TED%3AAF-A0A6B8LTI5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6B8LTI5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A173366","Methylocystis rosea"],["NCBITaxon%3A1132444","Methylocystis rosea SV97"]]},{"id":"NCBITaxon:1734395","l":"Desulfitibacter sp. BRH c19","na":2,"nb":1,"a":[["TED%3AAF-A0A124IG40-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A124IG40-F1-model_v4_TED01"],["TED%3AAF-A0A124IHE3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A124IHE3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1734395","Desulfitibacter sp. BRH_c19"]]},{"id":"NCBITaxon:1734398","l":"Gracilibacter sp. BRH c7a","na":2,"nb":1,"a":[["TED%3AAF-A0A101VP94-F1-model_v4_TED01","TED novel fold AF-A0A101VP94-F1-model_v4_TED01"],["TED%3AAF-A0A117SDZ2-F1-model_v4_TED01","TED novel fold AF-A0A117SDZ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1734398","Gracilibacter sp. BRH_c7a"]]},{"id":"NCBITaxon:1735676","l":"Sphingomonas sp. Leaf10","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q4DHC6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0Q4DHC6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A28214","Sphingomonas sp."],["NCBITaxon%3A1735676","Sphingomonas sp. Leaf10"]]},{"id":"NCBITaxon:1735677","l":"Microbacterium sp. Leaf203","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q4DGD5-F1-model_v4_TED02","TED novel fold AF-A0A0Q4DGD5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A51671","Microbacterium sp."],["NCBITaxon%3A1735677","Microbacterium sp. Leaf203"]]},{"id":"NCBITaxon:1735692","l":"Sphingomonas sp. Leaf25","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q4IJQ9-F1-model_v4_TED03","TED novel fold AF-A0A0Q4IJQ9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A28214","Sphingomonas sp."],["NCBITaxon%3A1735692","Sphingomonas sp. Leaf25"]]},{"id":"NCBITaxon:1736139","l":"Kocuria subflava","na":1,"nb":2,"a":[["TED%3AAF-A0A846U4G8-F1-model_v4_TED01","TED novel fold AF-A0A846U4G8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1871328","Kocuria sp."],["NCBITaxon%3A1736139","Kocuria subflava"]]},{"id":"NCBITaxon:1736213","l":"Sphingomonas sp. Leaf30","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q4JRM2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0Q4JRM2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A28214","Sphingomonas sp."],["NCBITaxon%3A1736213","Sphingomonas sp. Leaf30"]]},{"id":"NCBITaxon:1736230","l":"Sphingomonas sp. Leaf67","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q4PM00-F1-model_v4_TED01","TED novel fold AF-A0A0Q4PM00-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28214","Sphingomonas sp."],["NCBITaxon%3A1736230","Sphingomonas sp. Leaf67"]]},{"id":"NCBITaxon:1736232","l":"Arthrobacter sp. Leaf69","na":1,"nb":2,"a":[["TED%3AAF-A0A0S9BSZ3-F1-model_v4_TED01","TED novel fold AF-A0A0S9BSZ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1667","Arthrobacter sp."],["NCBITaxon%3A1736232","Arthrobacter sp. Leaf69"]]},{"id":"NCBITaxon:1736241","l":"Methylobacterium sp. Leaf85","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q4UFR1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q4UFR1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A409","Methylobacterium sp."],["NCBITaxon%3A1736241","Methylobacterium sp. Leaf85"]]},{"id":"NCBITaxon:1736267","l":"Pseudomonas sp. Leaf127","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q5FPX8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0Q5FPX8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A1736267","Pseudomonas sp. Leaf127"]]},{"id":"NCBITaxon:1736286","l":"Pedobacter sp. Leaf176","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q5NJJ8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0Q5NJJ8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1411316","Pedobacter sp."],["NCBITaxon%3A1736286","Pedobacter sp. Leaf176"]]},{"id":"NCBITaxon:1736339","l":"Cellulomonas sp. Leaf334","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q5J3M3-F1-model_v4_TED02","TED novel fold AF-A0A0Q5J3M3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A40001","Cellulomonas sp."],["NCBITaxon%3A1736339","Cellulomonas sp. Leaf334"]]},{"id":"NCBITaxon:1736351","l":"Flavobacterium sp. Leaf359","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q5UMD8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q5UMD8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A239","Flavobacterium sp."],["NCBITaxon%3A1736351","Flavobacterium sp. Leaf359"]]},{"id":"NCBITaxon:1736353","l":"Brevundimonas sp. Leaf363","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q5VGL5-F1-model_v4_TED01","TED novel fold AF-A0A0Q5VGL5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1871086","Brevundimonas sp."],["NCBITaxon%3A1736353","Brevundimonas sp. Leaf363"]]},{"id":"NCBITaxon:1736361","l":"Chryseobacterium sp. Leaf394","na":1,"nb":2,"a":[["TED%3AAF-A0A0T0M6Q0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0T0M6Q0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1871047","Chryseobacterium sp."],["NCBITaxon%3A1736361","Chryseobacterium sp. Leaf394"]]},{"id":"NCBITaxon:1736362","l":"Cellulomonas sp. Leaf395","na":1,"nb":2,"a":[["TED%3AAF-A0A0T0MKR8-F1-model_v4_TED01","TED novel fold AF-A0A0T0MKR8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A40001","Cellulomonas sp."],["NCBITaxon%3A1736362","Cellulomonas sp. Leaf395"]]},{"id":"NCBITaxon:1736378","l":"Aurantimonas sp. Leaf443","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q6EX14-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A0Q6EX14-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1872654","Aurantimonas sp."],["NCBITaxon%3A1736378","Aurantimonas sp. Leaf443"]]},{"id":"NCBITaxon:1736380","l":"Rhizobium sp. Leaf453","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q6GSI8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q6GSI8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A391","Rhizobium sp."],["NCBITaxon%3A1736380","Rhizobium sp. Leaf453"]]},{"id":"NCBITaxon:1736423","l":"Devosia sp. Root105","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q6NWX9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q6NWX9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1871048","Devosia sp."],["NCBITaxon%3A1736423","Devosia sp. Root105"]]},{"id":"NCBITaxon:1736431","l":"Nocardioides sp. Root122","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q6VQ53-F1-model_v4_TED01","TED novel fold AF-A0A0Q6VQ53-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A35761","Nocardioides sp."],["NCBITaxon%3A1736431","Nocardioides sp. Root122"]]},{"id":"NCBITaxon:1736436","l":"Afipia sp. Root123D2","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q6Z3G8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q6Z3G8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1871052","Afipia sp."],["NCBITaxon%3A1736436","Afipia sp. Root123D2"]]},{"id":"NCBITaxon:1736471","l":"Duganella sp. Root1480D1","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q7XEM4-F1-model_v4_TED01","TED novel fold AF-A0A0Q7XEM4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1904440","Duganella sp."],["NCBITaxon%3A1736471","Duganella sp. Root1480D1"]]},{"id":"NCBITaxon:1736482","l":"Rhodanobacter sp. Root179","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q8MB65-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0Q8MB65-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1883446","Rhodanobacter sp."],["NCBITaxon%3A1736482","Rhodanobacter sp. Root179"]]},{"id":"NCBITaxon:1736491","l":"Sphingopyxis sp. Root214","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q8S0P9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q8S0P9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1908224","Sphingopyxis sp."],["NCBITaxon%3A1736491","Sphingopyxis sp. Root214"]]},{"id":"NCBITaxon:1736501","l":"Sphingomonas sp. Root241","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q8XHQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q8XHQ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28214","Sphingomonas sp."],["NCBITaxon%3A1736501","Sphingomonas sp. Root241"]]},{"id":"NCBITaxon:1736511","l":"Rhizobacter sp. Root29","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q6MMM8-F1-model_v4_TED02","TED novel fold AF-A0A0Q6MMM8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1909292","Rhizobacter sp."],["NCBITaxon%3A1736511","Rhizobacter sp. Root29"]]},{"id":"NCBITaxon:1736517","l":"Massilia sp. Root335","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q6SWW0-F1-model_v4_TED03","TED novel fold AF-A0A0Q6SWW0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1882437","Massilia sp."],["NCBITaxon%3A1736517","Massilia sp. Root335"]]},{"id":"NCBITaxon:1736532","l":"Massilia sp. Root418","na":2,"nb":1,"a":[["TED%3AAF-A0A0Q7EKH3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0Q7EKH3-F1-model_v4_TED02"],["TED%3AAF-A0A0Q7ERD3-F1-model_v4_TED02","TED novel fold AF-A0A0Q7ERD3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1736532","Massilia sp. Root418"]]},{"id":"NCBITaxon:1736533","l":"Flavobacterium sp. Root420","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q7FJW1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q7FJW1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A239","Flavobacterium sp."],["NCBITaxon%3A1736533","Flavobacterium sp. Root420"]]},{"id":"NCBITaxon:1736539","l":"Angustibacter sp. Root456","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q7JT80-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q7JT80-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1871064","Angustibacter sp."],["NCBITaxon%3A1736539","Angustibacter sp. Root456"]]},{"id":"NCBITaxon:1736546","l":"Cellulomonas sp. Root485","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q7MAF1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q7MAF1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A40001","Cellulomonas sp."],["NCBITaxon%3A1736546","Cellulomonas sp. Root485"]]},{"id":"NCBITaxon:1736550","l":"Aeromicrobium sp. Root495","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q7QLK8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0Q7QLK8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1871063","Aeromicrobium sp."],["NCBITaxon%3A1736550","Aeromicrobium sp. Root495"]]},{"id":"NCBITaxon:1736604","l":"Pseudomonas sp. Root9","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q8ZAK6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A0Q8ZAK6-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A1736604","Pseudomonas sp. Root9"]]},{"id":"NCBITaxon:1736605","l":"Flavobacterium sp. Root901","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q8ZZQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q8ZZQ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A239","Flavobacterium sp."],["NCBITaxon%3A1736605","Flavobacterium sp. Root901"]]},{"id":"NCBITaxon:1742858","l":"Chryseobacterium sp. JAH","na":2,"nb":1,"a":[["TED%3AAF-A0A101C883-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A101C883-F1-model_v4_TED02"],["TED%3AAF-A0A117K7K3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A117K7K3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1742858","Chryseobacterium sp. JAH"]]},{"id":"NCBITaxon:1743174","l":"Polynucleobacter tropicus","na":1,"nb":2,"a":[["TED%3AAF-A0A6M9Q7P4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6M9Q7P4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1743163","Polynucleobacter campilacus"],["NCBITaxon%3A1743174","Polynucleobacter tropicus"]]},{"id":"NCBITaxon:1754191","l":"Piromyces finnis","na":2,"nb":1,"a":[["TED%3AAF-A0A1Y1UXN1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1Y1UXN1-F1-model_v4_TED03"],["TED%3AAF-A0A1Y1VE46-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y1VE46-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1754191","Piromyces finnis"]]},{"id":"NCBITaxon:1755241","l":"Anaerococcus nagyae","na":1,"nb":2,"a":[["TED%3AAF-A0A3E2TFG5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3E2TFG5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1755241","Anaerococcus nagyae"],["NCBITaxon%3A1872515","Anaerococcus sp."]]},{"id":"NCBITaxon:1758642","l":"Bacillus sp. V59.32b","na":2,"nb":1,"a":[["TED%3AAF-A0A3E2JA02-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3E2JA02-F1-model_v4_TED01"],["TED%3AAF-A0A3E2JWN3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3E2JWN3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1758642","Bacillus sp. V59.32b"]]},{"id":"NCBITaxon:1761874","l":"Paenibacillus sp. 453mf","na":2,"nb":1,"a":[["TED%3AAF-A0A1I6QRZ1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I6QRZ1-F1-model_v4_TED01"],["TED%3AAF-A0A1I6TGS5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I6TGS5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1761874","Paenibacillus sp. 453mf"]]},{"id":"NCBITaxon:1764569","l":"Acaryochloris thomasi RCC1774","na":2,"nb":1,"a":[["TED%3AAF-A0A2W1JLP0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2W1JLP0-F1-model_v4_TED02"],["TED%3AAF-A0A2W1K3W8-F1-model_v4_TED01","TED novel fold AF-A0A2W1K3W8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1764569","Acaryochloris thomasi RCC1774"]]},{"id":"NCBITaxon:1765049","l":"Azospira sp. I09","na":2,"nb":1,"a":[["TED%3AAF-A0A5H2YUS6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5H2YUS6-F1-model_v4_TED01"],["TED%3AAF-A0A5H2YE29-F1-model_v4_TED02","TED novel fold AF-A0A5H2YE29-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1765049","Azospira sp. I09"]]},{"id":"NCBITaxon:1768114","l":"bacterium F083","na":2,"nb":1,"a":[["TED%3AAF-A0A132HC91-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A132HC91-F1-model_v4_TED01"],["TED%3AAF-A0A132I168-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A132I168-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1768114","Candidatus Hemicellulosilyticus sp. F083"]]},{"id":"NCBITaxon:1769296","l":"Candidatus Methanomethylophilus sp. 1R26","na":2,"nb":1,"a":[["TED%3AAF-A0A0W7TGP4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0W7TGP4-F1-model_v4_TED01"],["TED%3AAF-A0A0W7TK49-F1-model_v4_TED01","TED novel fold AF-A0A0W7TK49-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1769296","Candidatus Methanomethylophilus sp. 1R26"]]},{"id":"NCBITaxon:177437","l":"Desulforapulum autotrophicum HRM2","na":1,"nb":2,"a":[["TED%3AAF-C0QA36-F1-model_v4_TED03","TED novel fold AF-C0QA36-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2296","Desulforapulum autotrophicum"],["NCBITaxon%3A177437","Desulforapulum autotrophicum HRM2"]]},{"id":"NCBITaxon:1775674","l":"Candidatus Aegiribacteria sp. MLS C","na":2,"nb":1,"a":[["TED%3AAF-A0A1V4MWG7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V4MWG7-F1-model_v4_TED02"],["TED%3AAF-A0A1V4MY69-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V4MY69-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1775674","Candidatus Aegiribacteria sp. MLS_C"]]},{"id":"NCBITaxon:1775675","l":"Firmicutes bacterium ML8 F2","na":2,"nb":1,"a":[["TED%3AAF-A0A1V4M7X3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1V4M7X3-F1-model_v4_TED03"],["TED%3AAF-A0A1V4M534-F1-model_v4_TED01","TED novel fold AF-A0A1V4M534-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1775675","Firmicutes bacterium ML8_F2"]]},{"id":"NCBITaxon:1775910","l":"Methylobacterium indicum","na":2,"nb":1,"a":[["TED%3AAF-A0A0J6R755-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0J6R755-F1-model_v4_TED02"],["TED%3AAF-A0A0J6RUM1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0J6RUM1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1775910","Methylobacterium indicum"]]},{"id":"NCBITaxon:1778672","l":"Novosphingobium flavum","na":2,"nb":1,"a":[["TED%3AAF-A0A7X1FQ38-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X1FQ38-F1-model_v4_TED01"],["TED%3AAF-A0A7X1KN98-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X1KN98-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1778672","Novosphingobium flavum"]]},{"id":"NCBITaxon:178399","l":"Marinomonas primoryensis","na":2,"nb":1,"a":[["TED%3AAF-A0A2Z4PVF9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z4PVF9-F1-model_v4_TED01"],["TED%3AAF-A0A2Z4PW34-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2Z4PW34-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A178399","Marinomonas primoryensis"]]},{"id":"NCBITaxon:179408","l":"Oscillatoria nigro-viridis PCC 7112","na":2,"nb":1,"a":[["TED%3AAF-K9VAQ4-F1-model_v4_TED02","TED highly-symmetric fold AF-K9VAQ4-F1-model_v4_TED02"],["TED%3AAF-K9VBA8-F1-model_v4_TED02","TED novel fold AF-K9VBA8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A179408","Phormidium nigroviride PCC 7112"]]},{"id":"NCBITaxon:1797182","l":"Acidobacteria bacterium RIFCSPLOWO2 02 FULL 65 29","na":2,"nb":1,"a":[["TED%3AAF-A0A1F2U0F4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F2U0F4-F1-model_v4_TED01"],["TED%3AAF-A0A1F2UBX0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F2UBX0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797182","Acidobacteria bacterium RIFCSPLOWO2_02_FULL_65_29"]]},{"id":"NCBITaxon:1797191","l":"","na":2,"nb":1,"a":[["TED%3AAF-A0A1F2TD39-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F2TD39-F1-model_v4_TED01"],["TED%3AAF-A0A1F2TJD6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F2TJD6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797191","Acidobacteria bacterium RIFCSPLOWO2_12_FULL_66_21"]]},{"id":"NCBITaxon:1797313","l":"Bacteroidetes bacterium GWA2 30 7","na":2,"nb":1,"a":[["TED%3AAF-A0A1F3DGK7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F3DGK7-F1-model_v4_TED01"],["TED%3AAF-A0A1F3E425-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F3E425-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797313","Bacteroidetes bacterium GWA2_30_7"]]},{"id":"NCBITaxon:1797364","l":"Bacteroidetes bacterium RIFCSPLOWO2 12 FULL 35 15","na":2,"nb":1,"a":[["TED%3AAF-A0A1F3PYF3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F3PYF3-F1-model_v4_TED01"],["TED%3AAF-A0A1F3Q4V2-F1-model_v4_TED03","TED novel fold AF-A0A1F3Q4V2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1797364","Bacteroidetes bacterium RIFCSPLOWO2_12_FULL_35_15"]]},{"id":"NCBITaxon:1797384","l":"Bdellovibrionales bacterium GWA2 49 15","na":2,"nb":1,"a":[["TED%3AAF-A0A1F3SPP1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F3SPP1-F1-model_v4_TED02"],["TED%3AAF-A0A1F3SSW7-F1-model_v4_TED03","TED novel fold AF-A0A1F3SSW7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1797384","Bdellovibrionales bacterium GWA2_49_15"]]},{"id":"NCBITaxon:1797396","l":"Bdellovibrionales bacterium RIFOXYC1 FULL 39 130","na":2,"nb":1,"a":[["TED%3AAF-A0A1F3V2D7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1F3V2D7-F1-model_v4_TED03"],["TED%3AAF-A0A1F3VI80-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F3VI80-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797396","Bdellovibrionales bacterium RIFOXYC1_FULL_39_130"]]},{"id":"NCBITaxon:1797403","l":"Bdellovibrionales bacterium RIFOXYD1 FULL 53 11","na":2,"nb":1,"a":[["TED%3AAF-A0A1F3XT58-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1F3XT58-F1-model_v4_TED03"],["TED%3AAF-A0A1F3Y1B7-F1-model_v4_TED01","TED novel fold AF-A0A1F3Y1B7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797403","Bdellovibrionales bacterium RIFOXYD1_FULL_53_11"]]},{"id":"NCBITaxon:1797675","l":"Chloroflexi bacterium RIFOXYD12 FULL 57 15","na":2,"nb":1,"a":[["TED%3AAF-A0A1F8TTA5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F8TTA5-F1-model_v4_TED02"],["TED%3AAF-A0A1F8U4I7-F1-model_v4_TED01","TED novel fold AF-A0A1F8U4I7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797675","Chloroflexi bacterium RIFOXYD12_FULL_57_15"]]},{"id":"NCBITaxon:1797922","l":"Elusimicrobia bacterium GWA2 56 46","na":2,"nb":1,"a":[["TED%3AAF-A0A1F9QR23-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F9QR23-F1-model_v4_TED01"],["TED%3AAF-A0A1F9QR31-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F9QR31-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797922","Elusimicrobia bacterium GWA2_56_46"]]},{"id":"NCBITaxon:1797927","l":"Elusimicrobia bacterium GWA2 69 24","na":2,"nb":1,"a":[["TED%3AAF-A0A1F9RRG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F9RRG8-F1-model_v4_TED01"],["TED%3AAF-A0A1F9S3D2-F1-model_v4_TED01","TED novel fold AF-A0A1F9S3D2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797927","Elusimicrobia bacterium GWA2_69_24"]]},{"id":"NCBITaxon:1797973","l":"Elusimicrobia bacterium RIFOXYD2 FULL 34 15","na":2,"nb":1,"a":[["TED%3AAF-A0A1F9YV72-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F9YV72-F1-model_v4_TED01"],["TED%3AAF-A0A1F9Z4J2-F1-model_v4_TED03","TED novel fold AF-A0A1F9Z4J2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1797973","Elusimicrobia bacterium RIFOXYD2_FULL_34_15"]]},{"id":"NCBITaxon:1798278","l":"Gammaproteobacteria bacterium RIFCSPHIGHO2 12 FULL 38 11","na":2,"nb":1,"a":[["TED%3AAF-A0A1G0HEL0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G0HEL0-F1-model_v4_TED01"],["TED%3AAF-A0A1G0HH18-F1-model_v4_TED01","TED novel fold AF-A0A1G0HH18-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798278","Gammaproteobacteria bacterium RIFCSPHIGHO2_12_FULL_38_11"]]},{"id":"NCBITaxon:1798415","l":"Hydrogenophilales bacterium RIFOXYD1 FULL 62 11","na":2,"nb":1,"a":[["TED%3AAF-A0A1G0NAM6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G0NAM6-F1-model_v4_TED02"],["TED%3AAF-A0A1G0NGR4-F1-model_v4_TED02","TED novel fold AF-A0A1G0NGR4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798415","Hydrogenophilales bacterium RIFOXYD1_FULL_62_11"]]},{"id":"NCBITaxon:1798571","l":"Lentisphaerae bacterium GWF2 44 16","na":2,"nb":1,"a":[["TED%3AAF-A0A1G0YJM0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1G0YJM0-F1-model_v4_TED03"],["TED%3AAF-A0A1G0Z6T1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G0Z6T1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798571","Lentisphaerae bacterium GWF2_44_16"]]},{"id":"NCBITaxon:1798574","l":"Lentisphaerae bacterium GWF2 50 93","na":2,"nb":1,"a":[["TED%3AAF-A0A1G0ZAS7-F1-model_v4_TED09","TED novel fold AF-A0A1G0ZAS7-F1-model_v4_TED09"],["TED%3AAF-A0A1G0ZHW3-F1-model_v4_TED02","TED novel fold AF-A0A1G0ZHW3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798574","Lentisphaerae bacterium GWF2_50_93"]]},{"id":"NCBITaxon:1798575","l":"Lentisphaerae bacterium GWF2 52 8","na":2,"nb":1,"a":[["TED%3AAF-A0A1G0YT11-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G0YT11-F1-model_v4_TED02"],["TED%3AAF-A0A1G0ZBK9-F1-model_v4_TED03","TED novel fold AF-A0A1G0ZBK9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1798575","Lentisphaerae bacterium GWF2_52_8"]]},{"id":"NCBITaxon:1798582","l":"Lentisphaerae bacterium RIFOXYC12 FULL 60 16","na":2,"nb":1,"a":[["TED%3AAF-A0A1G0ZUV5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1G0ZUV5-F1-model_v4_TED03"],["TED%3AAF-A0A1G0ZSX7-F1-model_v4_TED01","TED novel fold AF-A0A1G0ZSX7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798582","Lentisphaerae bacterium RIFOXYC12_FULL_60_16"]]},{"id":"NCBITaxon:1799370","l":"bacterium SCGC AG-212-C10","na":2,"nb":1,"a":[["TED%3AAF-A0A177PWS0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A177PWS0-F1-model_v4_TED01"],["TED%3AAF-A0A177Q9Q9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A177Q9Q9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1799370","bacterium SCGC AG-212-C10"]]},{"id":"NCBITaxon:1799657","l":"Planctomyces sp. SCGC AG-212-M04","na":2,"nb":1,"a":[["TED%3AAF-A0A177R1F8-F1-model_v4_TED04","TED novel fold AF-A0A177R1F8-F1-model_v4_TED04"],["TED%3AAF-A0A177R2Y2-F1-model_v4_TED02","TED novel fold AF-A0A177R2Y2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1799657","Planctomyces sp. SCGC AG-212-M04"]]},{"id":"NCBITaxon:1801658","l":"candidate division NC10 bacterium RIFCSPLOWO2 02 FULL 66 22","na":2,"nb":1,"a":[["TED%3AAF-A0A1F4QAX7-F1-model_v4_TED01","TED novel fold AF-A0A1F4QAX7-F1-model_v4_TED01"],["TED%3AAF-A0A1F4QCV8-F1-model_v4_TED01","TED novel fold AF-A0A1F4QCV8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801658","candidate division NC10 bacterium RIFCSPLOWO2_02_FULL_66_22"]]},{"id":"NCBITaxon:1801957","l":"Planctomycetes bacterium GWF2 41 51","na":2,"nb":1,"a":[["TED%3AAF-A0A1G2XX38-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G2XX38-F1-model_v4_TED01"],["TED%3AAF-A0A1G2XVX2-F1-model_v4_TED01","TED novel fold AF-A0A1G2XVX2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801957","Planctomycetes bacterium GWF2_41_51"]]},{"id":"NCBITaxon:1801968","l":"Planctomycetes bacterium RBG 16 55 9","na":2,"nb":1,"a":[["TED%3AAF-A0A1G2ZS35-F1-model_v4_TED02","TED novel fold AF-A0A1G2ZS35-F1-model_v4_TED02"],["TED%3AAF-A0A1G3A0U8-F1-model_v4_TED01","TED novel fold AF-A0A1G3A0U8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801968","Planctomycetes bacterium RBG_16_55_9"]]},{"id":"NCBITaxon:1802176","l":"Spirochaetes bacterium GWB1 59 5","na":2,"nb":1,"a":[["TED%3AAF-A0A1G3LC70-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1G3LC70-F1-model_v4_TED03"],["TED%3AAF-A0A1G3M4D2-F1-model_v4_TED01","TED novel fold AF-A0A1G3M4D2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802176","Spirochaetes bacterium GWB1_59_5"]]},{"id":"NCBITaxon:1802205","l":"Candidatus Staskawiczbacteria bacterium RIFCSPHIGHO2 02 FULL 34 10","na":2,"nb":1,"a":[["TED%3AAF-A0A1G2HYQ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G2HYQ2-F1-model_v4_TED01"],["TED%3AAF-A0A1G2HVZ8-F1-model_v4_TED01","TED novel fold AF-A0A1G2HVZ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802205","Candidatus Staskawiczbacteria bacterium RIFCSPHIGHO2_02_FULL_34_10"]]},{"id":"NCBITaxon:180344","l":"Vagococcus elongatus","na":2,"nb":1,"a":[["TED%3AAF-A0A430AW26-F1-model_v4_TED02","TED novel fold AF-A0A430AW26-F1-model_v4_TED02"],["TED%3AAF-A0A430AZH1-F1-model_v4_TED01","TED novel fold AF-A0A430AZH1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A180344","Vagococcus elongatus"]]},{"id":"NCBITaxon:1803813","l":"Theionarchaea archaeon DG-70","na":2,"nb":1,"a":[["TED%3AAF-A0A151F6X2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A151F6X2-F1-model_v4_TED02"],["TED%3AAF-A0A151FCD0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A151FCD0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1803813","Theionarchaea archaeon DG-70"]]},{"id":"NCBITaxon:1803817","l":"Thermoplasmatales archaeon SG8-52-2","na":2,"nb":1,"a":[["TED%3AAF-A0A151E1N5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A151E1N5-F1-model_v4_TED01"],["TED%3AAF-A0A151DZ19-F1-model_v4_TED01","TED novel fold AF-A0A151DZ19-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1803817","Thermoplasmatales archaeon SG8-52-2"]]},{"id":"NCBITaxon:1805055","l":"Catenulispora sp. 13 1 20CM 3 70 7","na":2,"nb":1,"a":[["TED%3AAF-A0A1Q7W9R9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q7W9R9-F1-model_v4_TED01"],["TED%3AAF-A0A1Q7WCM7-F1-model_v4_TED02","TED novel fold AF-A0A1Q7WCM7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1805055","Catenulispora sp. 13_1_20CM_3_70_7"]]},{"id":"NCBITaxon:1805249","l":"Candidatus Micrarchaeota archaeon CG1 02 51 15","na":2,"nb":1,"a":[["TED%3AAF-A0A1J4UL61-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1J4UL61-F1-model_v4_TED03"],["TED%3AAF-A0A1J4ULJ0-F1-model_v4_TED07","TED highly-symmetric fold AF-A0A1J4ULJ0-F1-model_v4_TED07"]],"b":[["NCBITaxon%3A1805249","Candidatus Micrarchaeota archaeon CG1_02_51_15"]]},{"id":"NCBITaxon:1805288","l":"Candidatus Omnitrophica bacterium CG1 02 46 14","na":2,"nb":1,"a":[["TED%3AAF-A0A1J4VL74-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1J4VL74-F1-model_v4_TED02"],["TED%3AAF-A0A1J4VTR0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1J4VTR0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1805288","Candidatus Omnitrophica bacterium CG1_02_46_14"]]},{"id":"NCBITaxon:1810840","l":"Piscirickettsiaceae bacterium NZ-RLO1","na":2,"nb":1,"a":[["TED%3AAF-A0A177W3E9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A177W3E9-F1-model_v4_TED03"],["TED%3AAF-A0A177W3K1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A177W3K1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1810840","Piscirickettsiaceae bacterium NZ-RLO1"]]},{"id":"NCBITaxon:1811677","l":"Methanocella sp. PtaU1.Bin125","na":2,"nb":1,"a":[["TED%3AAF-A0A1V4Z2A5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V4Z2A5-F1-model_v4_TED01"],["TED%3AAF-A0A1V4Z301-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V4Z301-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1811677","Methanocella sp. PtaU1.Bin125"]]},{"id":"NCBITaxon:1811688","l":"Methanosaeta sp. PtaU1.Bin060","na":2,"nb":1,"a":[["TED%3AAF-A0A1V5B5P4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5B5P4-F1-model_v4_TED01"],["TED%3AAF-A0A1V5BAI8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5BAI8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1811688","Methanosaeta sp. PtaU1.Bin060"]]},{"id":"NCBITaxon:1811693","l":"Pelotomaculum sp. PtaB.Bin104","na":2,"nb":1,"a":[["TED%3AAF-A0A1V4VN91-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V4VN91-F1-model_v4_TED02"],["TED%3AAF-A0A1V4VWP3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V4VWP3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1811693","Pelotomaculum sp. PtaB.Bin104"]]},{"id":"NCBITaxon:1811718","l":"Syntrophaceae bacterium PtaU1.Bin231","na":2,"nb":1,"a":[["TED%3AAF-A0A1V5EC01-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1V5EC01-F1-model_v4_TED03"],["TED%3AAF-A0A1V5DZZ4-F1-model_v4_TED02","TED novel fold AF-A0A1V5DZZ4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1811718","Syntrophaceae bacterium PtaU1.Bin231"]]},{"id":"NCBITaxon:1817773","l":"Candidatus Lambdaproteobacteria bacterium RIFOXYD2 FULL 56 26","na":2,"nb":1,"a":[["TED%3AAF-A0A1F6GPL7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1F6GPL7-F1-model_v4_TED03"],["TED%3AAF-A0A1F6GPV0-F1-model_v4_TED03","TED novel fold AF-A0A1F6GPV0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1817773","Candidatus Lambdaproteobacteria bacterium RIFOXYD2_FULL_56_26"]]},{"id":"NCBITaxon:1817813","l":"Candidatus Wallbacteria bacterium GWC2 49 35","na":2,"nb":1,"a":[["TED%3AAF-A0A1F7WM48-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F7WM48-F1-model_v4_TED01"],["TED%3AAF-A0A1F7X005-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F7X005-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1817813","Candidatus Wallbacteria bacterium GWC2_49_35"]]},{"id":"NCBITaxon:1817868","l":"Handelsmanbacteria sp. (strain RIFCSPLOWO2 12 FULL 64 10)","na":2,"nb":1,"a":[["TED%3AAF-A0A1F6C736-F1-model_v4_TED04","TED novel fold AF-A0A1F6C736-F1-model_v4_TED04"],["TED%3AAF-A0A1F6CTD9-F1-model_v4_TED04","TED novel fold AF-A0A1F6CTD9-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1817868","Candidatus Handelsmanbacteria bacterium RIFCSPLOWO2_12_FULL_64_10"]]},{"id":"NCBITaxon:1817874","l":"Candidatus Riflebacteria bacterium GWC2 50 8","na":2,"nb":1,"a":[["TED%3AAF-A0A1F7FYI5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F7FYI5-F1-model_v4_TED02"],["TED%3AAF-A0A1F7FJC4-F1-model_v4_TED02","TED novel fold AF-A0A1F7FJC4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1817874","Candidatus Riflebacteria bacterium GWC2_50_8"]]},{"id":"NCBITaxon:1817963","l":"","na":1,"nb":2,"a":[["TED%3AAF-A0A1V2GU95-F1-model_v4_TED02","TED novel fold AF-A0A1V2GU95-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2692566","Muricoccus harenae"],["NCBITaxon%3A1817963","Teichococcus deserti"]]},{"id":"NCBITaxon:181874","l":"Panaeolus cyanescens","na":2,"nb":1,"a":[["TED%3AAF-A0A409Y7D6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A409Y7D6-F1-model_v4_TED01"],["TED%3AAF-A0A409X270-F1-model_v4_TED01","TED novel fold AF-A0A409X270-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A181874","Panaeolus cyanescens"]]},{"id":"NCBITaxon:182087","l":"Favella ehrenbergii","na":2,"nb":1,"a":[["TED%3AAF-A0A7S3HZS1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3HZS1-F1-model_v4_TED01"],["TED%3AAF-A0A7S3MNX9-F1-model_v4_TED02","TED novel fold AF-A0A7S3MNX9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A182087","Favella ehrenbergii"]]},{"id":"NCBITaxon:1825094","l":"Amycolatopsis sp. M39","na":2,"nb":1,"a":[["TED%3AAF-A0A178XBM7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A178XBM7-F1-model_v4_TED02"],["TED%3AAF-A0A178WVL3-F1-model_v4_TED01","TED novel fold AF-A0A178WVL3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1825094","Amycolatopsis sp. M39"]]},{"id":"NCBITaxon:1825523","l":"Novimethylophilus kurashikiensis","na":2,"nb":1,"a":[["TED%3AAF-A0A2R5F8H7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2R5F8H7-F1-model_v4_TED01"],["TED%3AAF-A0A2R5FEB3-F1-model_v4_TED01","TED novel fold AF-A0A2R5FEB3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1825523","Novimethylophilus kurashikiensis"]]},{"id":"NCBITaxon:1827384","l":"Proteobacteria bacterium SG bin7","na":2,"nb":1,"a":[["TED%3AAF-A0A1W9HU97-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W9HU97-F1-model_v4_TED01"],["TED%3AAF-A0A1W9HM99-F1-model_v4_TED01","TED novel fold AF-A0A1W9HM99-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1827384","Proteobacteria bacterium SG_bin7"]]},{"id":"NCBITaxon:183589","l":"Pseudo-nitzschia multistriata","na":2,"nb":1,"a":[["TED%3AAF-A0A448Z036-F1-model_v4_TED02","TED novel fold AF-A0A448Z036-F1-model_v4_TED02"],["TED%3AAF-A0A448Z5N8-F1-model_v4_TED01","TED novel fold AF-A0A448Z5N8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A183589","Pseudo-nitzschia multistriata"]]},{"id":"NCBITaxon:1841598","l":"Candidatus Heimdallarchaeota archaeon LC 3","na":2,"nb":1,"a":[["TED%3AAF-A0A1Q9NQM7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q9NQM7-F1-model_v4_TED01"],["TED%3AAF-A0A1Q9N383-F1-model_v4_TED02","TED novel fold AF-A0A1Q9N383-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1841598","Candidatus Heimdallarchaeota archaeon LC_3"]]},{"id":"NCBITaxon:1842532","l":"Syntrophotalea acetylenivorans","na":1,"nb":2,"a":[["TED%3AAF-A0A1L3GKY2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1L3GKY2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29542","Syntrophotalea acetylenica"],["NCBITaxon%3A1842532","Syntrophotalea acetylenivorans"]]},{"id":"NCBITaxon:1849047","l":"Coleophoma cylindrospora","na":2,"nb":1,"a":[["TED%3AAF-A0A3D8QNW7-F1-model_v4_TED07","TED novel fold AF-A0A3D8QNW7-F1-model_v4_TED07"],["TED%3AAF-A0A3D8RHS1-F1-model_v4_TED01","TED novel fold AF-A0A3D8RHS1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1849047","Coleophoma cylindrospora"]]},{"id":"NCBITaxon:1849840","l":"Methylosinus sp. 3S-1","na":2,"nb":1,"a":[["TED%3AAF-A0A1A6FKT5-F1-model_v4_TED01","TED novel fold AF-A0A1A6FKT5-F1-model_v4_TED01"],["TED%3AAF-A0A1A6FNE4-F1-model_v4_TED01","TED novel fold AF-A0A1A6FNE4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1849840","Methylosinus sp. 3S-1"]]},{"id":"NCBITaxon:1850348","l":"Longibacter salinarum","na":2,"nb":1,"a":[["TED%3AAF-A0A2A8CV41-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2A8CV41-F1-model_v4_TED02"],["TED%3AAF-A0A2A8CZN2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A8CZN2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1850348","Longibacter salinarum"]]},{"id":"NCBITaxon:1852872","l":"Deltaproteobacteria bacterium ADurb.BinA179","na":2,"nb":1,"a":[["TED%3AAF-A0A1V5H945-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5H945-F1-model_v4_TED01"],["TED%3AAF-A0A1V5H9P7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5H9P7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852872","Deltaproteobacteria bacterium ADurb.BinA179"]]},{"id":"NCBITaxon:1852885","l":"Firmicutes bacterium ADurb.Bin193","na":2,"nb":1,"a":[["TED%3AAF-A0A1V5X829-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5X829-F1-model_v4_TED01"],["TED%3AAF-A0A1V5X8X8-F1-model_v4_TED02","TED novel fold AF-A0A1V5X8X8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1852885","Firmicutes bacterium ADurb.Bin193"]]},{"id":"NCBITaxon:1852892","l":"Firmicutes bacterium ADurb.Bin419","na":2,"nb":1,"a":[["TED%3AAF-A0A1V5M7Y9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V5M7Y9-F1-model_v4_TED02"],["TED%3AAF-A0A1V5MP57-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V5MP57-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1852892","Firmicutes bacterium ADurb.Bin419"]]},{"id":"NCBITaxon:1852897","l":"Firmicutes bacterium ADurb.BinA205","na":2,"nb":1,"a":[["TED%3AAF-A0A1V5GD15-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V5GD15-F1-model_v4_TED02"],["TED%3AAF-A0A1V5GPI2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5GPI2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852897","Firmicutes bacterium ADurb.BinA205"]]},{"id":"NCBITaxon:1852900","l":"Lentisphaerae bacterium ADurb.Bin242","na":2,"nb":1,"a":[["TED%3AAF-A0A1V5UT20-F1-model_v4_TED01","TED novel fold AF-A0A1V5UT20-F1-model_v4_TED01"],["TED%3AAF-A0A1V5V7R0-F1-model_v4_TED04","TED novel fold AF-A0A1V5V7R0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1852900","Lentisphaerae bacterium ADurb.Bin242"]]},{"id":"NCBITaxon:1852903","l":"Planctomycetes bacterium ADurb.Bin126","na":2,"nb":1,"a":[["TED%3AAF-A0A1V6D5B8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1V6D5B8-F1-model_v4_TED03"],["TED%3AAF-A0A1V6D343-F1-model_v4_TED04","TED novel fold AF-A0A1V6D343-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1852903","Planctomycetes bacterium ADurb.Bin126"]]},{"id":"NCBITaxon:1852908","l":"Spirochaetes bacterium ADurb.Bin110","na":2,"nb":1,"a":[["TED%3AAF-A0A1V6E1F0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V6E1F0-F1-model_v4_TED01"],["TED%3AAF-A0A1V6E573-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V6E573-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852908","Spirochaetes bacterium ADurb.Bin110"]]},{"id":"NCBITaxon:1852939","l":"Parcubacteria group bacterium ADurb.Bin216","na":2,"nb":1,"a":[["TED%3AAF-A0A1V5WXV8-F1-model_v4_TED01","TED novel fold AF-A0A1V5WXV8-F1-model_v4_TED01"],["TED%3AAF-A0A1V5X3E8-F1-model_v4_TED01","TED novel fold AF-A0A1V5X3E8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852939","Parcubacteria group bacterium ADurb.Bin216"]]},{"id":"NCBITaxon:1852943","l":"Parcubacteria group bacterium ADurb.Bin326","na":2,"nb":1,"a":[["TED%3AAF-A0A1V5R4C7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5R4C7-F1-model_v4_TED01"],["TED%3AAF-A0A1V5R4R5-F1-model_v4_TED01","TED novel fold AF-A0A1V5R4R5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852943","Parcubacteria group bacterium ADurb.Bin326"]]},{"id":"NCBITaxon:1854588","l":"Pseudonocardia sp. MH-G8","na":2,"nb":1,"a":[["TED%3AAF-A0A263DNN9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A263DNN9-F1-model_v4_TED01"],["TED%3AAF-A0A263DLQ4-F1-model_v4_TED01","TED novel fold AF-A0A263DLQ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1854588","Pseudonocardia sp. MH-G8"]]},{"id":"NCBITaxon:1855298","l":"Mucilaginibacter sp. YR332","na":2,"nb":1,"a":[["TED%3AAF-A0A497ZA77-F1-model_v4_TED02","TED novel fold AF-A0A497ZA77-F1-model_v4_TED02"],["TED%3AAF-A0A497ZHE4-F1-model_v4_TED02","TED novel fold AF-A0A497ZHE4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1855298","Mucilaginibacter sp. YR332"]]},{"id":"NCBITaxon:1855304","l":"Rhizobium sp. AN5","na":2,"nb":1,"a":[["TED%3AAF-A0A285XY16-F1-model_v4_TED02","TED novel fold AF-A0A285XY16-F1-model_v4_TED02"],["TED%3AAF-A0A285XY16-F1-model_v4_TED04","TED novel fold AF-A0A285XY16-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1855304","Rhizobium sp. AN5"]]},{"id":"NCBITaxon:1855374","l":"Lachnospiraceae bacterium KH1T2","na":2,"nb":1,"a":[["TED%3AAF-A0A1I4C1K4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I4C1K4-F1-model_v4_TED02"],["TED%3AAF-A0A1I4DRK9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I4DRK9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1855374","Lachnospiraceae bacterium KH1T2"]]},{"id":"NCBITaxon:1857892","l":"Streptomyces sp. MP131-18","na":1,"nb":2,"a":[["TED%3AAF-A0A1V2RLA5-F1-model_v4_TED02","TED novel fold AF-A0A1V2RLA5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A1857892","Streptomyces sp. MP131-18"]]},{"id":"NCBITaxon:1862385","l":"Aquincola rivuli","na":2,"nb":1,"a":[["TED%3AAF-A0A437R9J1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A437R9J1-F1-model_v4_TED01"],["TED%3AAF-A0A437RCC8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A437RCC8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1862385","Rubrivivax rivuli"]]},{"id":"NCBITaxon:1864825","l":"Siphonobacter sp. BAB-5405","na":2,"nb":1,"a":[["TED%3AAF-A0A2N7BBA0-F1-model_v4_TED02","TED novel fold AF-A0A2N7BBA0-F1-model_v4_TED02"],["TED%3AAF-A0A2N7BBU2-F1-model_v4_TED02","TED novel fold AF-A0A2N7BBU2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1864825","Siphonobacter sp. BAB-5405"]]},{"id":"NCBITaxon:1871053","l":"Phenylobacterium sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A525JER3-F1-model_v4_TED03","TED novel fold AF-A0A525JER3-F1-model_v4_TED03"],["TED%3AAF-A0A525JM96-F1-model_v4_TED02","TED novel fold AF-A0A525JM96-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1871053","Phenylobacterium sp."]]},{"id":"NCBITaxon:1872493","l":"Ammonifex sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A3A6N187-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A6N187-F1-model_v4_TED01"],["TED%3AAF-A0A3A6N562-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3A6N562-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1872493","Ammonifex sp."]]},{"id":"NCBITaxon:1872586","l":"Aquimarina sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2D9XY70-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9XY70-F1-model_v4_TED01"],["TED%3AAF-A0A2D9XYI3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9XYI3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1872586","Aquimarina sp."]]},{"id":"NCBITaxon:1878","l":"Micromonospora rosea","na":1,"nb":2,"a":[["Pfam%3APF07091","Ribosomal RNA methyltransferase (FmrO)"]],"b":[["NCBITaxon%3A1878","Micromonospora rosea"],["NCBITaxon%3A31942","Micromonospora rosea MNG00182"]]},{"id":"NCBITaxon:187868","l":"Paracidovorax valerianellae","na":2,"nb":1,"a":[["TED%3AAF-A0A1G6MUY9-F1-model_v4_TED01","TED novel fold AF-A0A1G6MUY9-F1-model_v4_TED01"],["TED%3AAF-A0A1G6R6F0-F1-model_v4_TED01","TED novel fold AF-A0A1G6R6F0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A187868","Paracidovorax valerianellae"]]},{"id":"NCBITaxon:1880","l":"Micromonospora olivasterospora","na":2,"nb":1,"a":[["Pfam%3APF07091","Ribosomal RNA methyltransferase (FmrO)"],["TED%3AAF-A0A562IGP2-F1-model_v4_TED01","TED novel fold AF-A0A562IGP2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1880","Micromonospora olivasterospora"]]},{"id":"NCBITaxon:1880848","l":"Vibrio sp. 10N.261.49.E11","na":1,"nb":2,"a":[["TED%3AAF-A0A2N7J4P0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N7J4P0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A678","Vibrio sp."],["NCBITaxon%3A1880848","Vibrio sp. 10N.261.49.E11"]]},{"id":"NCBITaxon:1881048","l":"Mucilaginibacter sp. OK268","na":2,"nb":1,"a":[["TED%3AAF-A0A1H0QSC9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H0QSC9-F1-model_v4_TED02"],["TED%3AAF-A0A1H0VSK4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H0VSK4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1881048","Mucilaginibacter sp. OK268"]]},{"id":"NCBITaxon:1882483","l":"Testicularia cyperi","na":2,"nb":1,"a":[["TED%3AAF-A0A317XPK1-F1-model_v4_TED01","TED novel fold AF-A0A317XPK1-F1-model_v4_TED01"],["TED%3AAF-A0A317XPQ7-F1-model_v4_TED01","TED novel fold AF-A0A317XPQ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1882483","Testicularia cyperi"]]},{"id":"NCBITaxon:1882763","l":"Bacillus sp. OV166","na":2,"nb":1,"a":[["TED%3AAF-A0A1Y6FXP3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y6FXP3-F1-model_v4_TED01"],["TED%3AAF-A0A1Y6G3A8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y6G3A8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1882763","Bacillus sp. OV166"]]},{"id":"NCBITaxon:1884367","l":"Chitinophaga sp. CF118","na":2,"nb":1,"a":[["TED%3AAF-A0A1I1X7T5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I1X7T5-F1-model_v4_TED02"],["TED%3AAF-A0A1I2BGU5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2BGU5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1884367","Chitinophaga sp. CF118"]]},{"id":"NCBITaxon:188908","l":"Oleispira antarctica","na":1,"nb":2,"a":[["TED%3AAF-A0A1Y5HYG0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y5HYG0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A188908","Oleispira antarctica"],["NCBITaxon%3A698738","Oleispira antarctica RB-8"]]},{"id":"NCBITaxon:1894","l":"Kitasatospora aureofaciens","na":2,"nb":1,"a":[["Pfam%3APF01933","2-phospho-L-lactate transferase CofD"],["TED%3AAF-A0A1E7NF13-F1-model_v4_TED01","TED novel fold AF-A0A1E7NF13-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1894","Kitasatospora aureofaciens"]]},{"id":"NCBITaxon:1895664","l":"Halanaerobium sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A315QT49-F1-model_v4_TED03","TED novel fold AF-A0A315QT49-F1-model_v4_TED03"],["TED%3AAF-A0A315R434-F1-model_v4_TED03","TED novel fold AF-A0A315R434-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1895664","Halanaerobium sp."]]},{"id":"NCBITaxon:1895743","l":"Chlamydiales bacterium 38-26","na":2,"nb":1,"a":[["TED%3AAF-A0A1M3CS01-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M3CS01-F1-model_v4_TED02"],["TED%3AAF-A0A1M3CPU2-F1-model_v4_TED05","TED novel fold AF-A0A1M3CPU2-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1895743","Chlamydiales bacterium 38-26"]]},{"id":"NCBITaxon:1895788","l":"Microbacterium sp. 71-36","na":2,"nb":1,"a":[["TED%3AAF-A0A2R9U991-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2R9U991-F1-model_v4_TED01"],["TED%3AAF-A0A2R9UFZ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2R9UFZ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895788","Microbacterium sp. 71-36"]]},{"id":"NCBITaxon:1895833","l":"Solirubrobacterales bacterium 70-9","na":2,"nb":1,"a":[["TED%3AAF-A0A1M3BJ71-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M3BJ71-F1-model_v4_TED01"],["TED%3AAF-A0A1M3BK47-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M3BK47-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1895833","Solirubrobacterales bacterium 70-9"]]},{"id":"NCBITaxon:1895923","l":"Bacteroidetes bacterium 43-16","na":2,"nb":1,"a":[["TED%3AAF-A0A1M3E771-F1-model_v4_TED01","TED novel fold AF-A0A1M3E771-F1-model_v4_TED01"],["TED%3AAF-A0A1M3EBH9-F1-model_v4_TED01","TED novel fold AF-A0A1M3EBH9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895923","Bacteroidetes bacterium 43-16"]]},{"id":"NCBITaxon:1895926","l":"Bacteroidetes bacterium 47-18","na":2,"nb":1,"a":[["TED%3AAF-A0A1Q3MYV5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3MYV5-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3N0P4-F1-model_v4_TED02","TED novel fold AF-A0A1Q3N0P4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1895926","Bacteroidetes bacterium 47-18"]]},{"id":"NCBITaxon:1896","l":"Streptomyces bikiniensis","na":1,"nb":2,"a":[["Pfam%3APF00908","dTDP-4-dehydrorhamnose 3,5-epimerase"]],"b":[["NCBITaxon%3A1896","Streptomyces bikiniensis"],["NCBITaxon%3A44286","Streptomyces bikiniensis subsp. zorbonensis"]]},{"id":"NCBITaxon:1896170","l":"Burkholderiales bacterium 68-12","na":2,"nb":1,"a":[["TED%3AAF-A0A1M3JRK7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M3JRK7-F1-model_v4_TED01"],["TED%3AAF-A0A1M3JPD9-F1-model_v4_TED02","TED novel fold AF-A0A1M3JPD9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1896170","Burkholderiales bacterium 68-12"]]},{"id":"NCBITaxon:1896208","l":"Fibrobacter sp. UWCM","na":2,"nb":1,"a":[["TED%3AAF-A0A1M5T024-F1-model_v4_TED02","TED novel fold AF-A0A1M5T024-F1-model_v4_TED02"],["TED%3AAF-A0A1M5WWA9-F1-model_v4_TED02","TED novel fold AF-A0A1M5WWA9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1896208","Fibrobacter sp. UWCM"]]},{"id":"NCBITaxon:1896971","l":"Azospirillum sp. 47 25","na":2,"nb":1,"a":[["TED%3AAF-A0A1Q6U8E0-F1-model_v4_TED01","TED novel fold AF-A0A1Q6U8E0-F1-model_v4_TED01"],["TED%3AAF-A0A1Q6UG74-F1-model_v4_TED02","TED novel fold AF-A0A1Q6UG74-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1896971","Azospirillum sp. 47_25"]]},{"id":"NCBITaxon:1896979","l":"Clostridium sp. 27 14","na":2,"nb":1,"a":[["TED%3AAF-A0A1Q6LHD7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q6LHD7-F1-model_v4_TED01"],["TED%3AAF-A0A1Q6LHD7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q6LHD7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1896979","Clostridium sp. 27_14"]]},{"id":"NCBITaxon:1896985","l":"Clostridium sp. CAG:12237 41","na":2,"nb":1,"a":[["TED%3AAF-A0A1Q6LMW0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1Q6LMW0-F1-model_v4_TED03"],["TED%3AAF-A0A1Q6LRH0-F1-model_v4_TED01","TED novel fold AF-A0A1Q6LRH0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1896985","Clostridium sp. CAG:12237_41"]]},{"id":"NCBITaxon:1897025","l":"Verrucomicrobia bacterium CAG:312 58 20","na":2,"nb":1,"a":[["TED%3AAF-A0A1Q6UH36-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q6UH36-F1-model_v4_TED01"],["TED%3AAF-A0A1Q6UM84-F1-model_v4_TED01","TED novel fold AF-A0A1Q6UM84-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1897025","Verrucomicrobia bacterium CAG:312_58_20"]]},{"id":"NCBITaxon:1903056","l":"","na":1,"nb":2,"a":[["TED%3AAF-A0A4R5YA11-F1-model_v4_TED01","TED novel fold AF-A0A4R5YA11-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1903056","Macrococcoides bohemicum"],["NCBITaxon%3A1871621","Macrococcus sp."]]},{"id":"NCBITaxon:1903704","l":"Tumebacillus avium","na":2,"nb":1,"a":[["TED%3AAF-A0A1Y0IJW7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Y0IJW7-F1-model_v4_TED02"],["TED%3AAF-A0A1Y0IMH8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y0IMH8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1903704","Tumebacillus avium"]]},{"id":"NCBITaxon:1903720","l":"Bacilli bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A7V6XP83-F1-model_v4_TED01","TED novel fold AF-A0A7V6XP83-F1-model_v4_TED01"],["TED%3AAF-A0A7X7Q2X1-F1-model_v4_TED02","TED novel fold AF-A0A7X7Q2X1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1903720","Bacilli bacterium"]]},{"id":"NCBITaxon:1904","l":"Streptomyces cyaneus","na":1,"nb":2,"a":[["Pfam%3APF04673","Polyketide synthesis cyclase"]],"b":[["NCBITaxon%3A146537","Streptomyces azureus"],["NCBITaxon%3A1904","Streptomyces cyaneus"]]},{"id":"NCBITaxon:1907","l":"Streptomyces glaucescens","na":2,"nb":1,"a":[["Pfam%3APF04673","Polyketide synthesis cyclase"],["Pfam%3APF04655","Aminoglycoside/hydroxyurea antibiotic resistance kinase"]],"b":[["NCBITaxon%3A1907","Streptomyces glaucescens"]]},{"id":"NCBITaxon:1907941","l":"Alkanindiges hydrocarboniclasticus","na":2,"nb":1,"a":[["TED%3AAF-A0A1S8CSP8-F1-model_v4_TED02","TED novel fold AF-A0A1S8CSP8-F1-model_v4_TED02"],["TED%3AAF-A0A1S8D0J5-F1-model_v4_TED02","TED novel fold AF-A0A1S8D0J5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1907941","Alkanindiges hydrocarboniclasticus"]]},{"id":"NCBITaxon:1909","l":"Streptomyces griseolus","na":1,"nb":2,"a":[["Pfam%3APF06902","Divergent 4Fe-4S mono-cluster"]],"b":[["NCBITaxon%3A1909","Streptomyces griseolus"],["NCBITaxon%3A1944","Streptomyces halstedii"]]},{"id":"NCBITaxon:190975","l":"Methanobrevibacter thaueri","na":2,"nb":1,"a":[["TED%3AAF-A0A315XL87-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A315XL87-F1-model_v4_TED02"],["TED%3AAF-A0A315XLC9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A315XLC9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A190975","Methanobrevibacter thaueri"]]},{"id":"NCBITaxon:1912856","l":"Peptoniphilus sp. ING2-D1G","na":1,"nb":2,"a":[["TED%3AAF-A0A090HYP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A090HYP8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1971214","Peptoniphilus sp."],["NCBITaxon%3A1912856","Peptoniphilus sp. ING2-D1G"]]},{"id":"NCBITaxon:1912928","l":"Candidatus Gracilibacteria bacterium GN02-872","na":2,"nb":1,"a":[["TED%3AAF-A0A328EDA4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A328EDA4-F1-model_v4_TED01"],["TED%3AAF-A0A328EJ66-F1-model_v4_TED03","TED novel fold AF-A0A328EJ66-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1912928","Candidatus Gracilibacteria bacterium GN02-872"]]},{"id":"NCBITaxon:1914410","l":"Spiroplasma sp. NBRC 100390","na":1,"nb":2,"a":[["TED%3AAF-A0A1J0U0D3-F1-model_v4_TED02","TED novel fold AF-A0A1J0U0D3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2144","Spiroplasma mirum"],["NCBITaxon%3A1914410","Spiroplasma sp. NBRC 100390"]]},{"id":"NCBITaxon:1915388","l":"Achromobacter sp. KAs 3-5","na":1,"nb":2,"a":[["TED%3AAF-A0A854PQ59-F1-model_v4_TED01","TED novel fold AF-A0A854PQ59-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A134375","Achromobacter sp."],["NCBITaxon%3A1915388","Achromobacter sp. KAs 3-5"]]},{"id":"NCBITaxon:1916222","l":"Candidatus Gastranaerophilales bacterium HUM 23","na":2,"nb":1,"a":[["TED%3AAF-A0A292SUD0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A292SUD0-F1-model_v4_TED01"],["TED%3AAF-A0A292SQQ3-F1-model_v4_TED02","TED novel fold AF-A0A292SQQ3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1916222","Candidatus Gastranaerophilales bacterium HUM_23"]]},{"id":"NCBITaxon:1916232","l":"Candidatus Gastranaerophilales bacterium HUM 20","na":2,"nb":1,"a":[["TED%3AAF-A0A292SIX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A292SIX7-F1-model_v4_TED01"],["TED%3AAF-A0A292SNW9-F1-model_v4_TED01","TED novel fold AF-A0A292SNW9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1916232","Candidatus Gastranaerophilales bacterium HUM_20"]]},{"id":"NCBITaxon:1917219","l":"Fluviicola sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2G2DNA9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2G2DNA9-F1-model_v4_TED02"],["TED%3AAF-A0A2G2E9M7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2G2E9M7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1917219","Fluviicola sp."]]},{"id":"NCBITaxon:1919113","l":"Bacteroidetes bacterium SW 11 45 7","na":2,"nb":1,"a":[["TED%3AAF-A0A2T2VEL8-F1-model_v4_TED01","TED novel fold AF-A0A2T2VEL8-F1-model_v4_TED01"],["TED%3AAF-A0A2T2VII4-F1-model_v4_TED01","TED novel fold AF-A0A2T2VII4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1919113","Bacteroidetes bacterium SW_11_45_7"]]},{"id":"NCBITaxon:1919187","l":"Halobacteriales archaeon QS 8 69 26","na":2,"nb":1,"a":[["TED%3AAF-A0A2R6JKB9-F1-model_v4_TED07","TED highly-symmetric fold AF-A0A2R6JKB9-F1-model_v4_TED07"],["TED%3AAF-A0A2R6JTS9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2R6JTS9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1919187","Halobacteriales archaeon QS_8_69_26"]]},{"id":"NCBITaxon:191960","l":"Sedimenticola selenatireducens","na":1,"nb":2,"a":[["TED%3AAF-A0A2N6CT86-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N6CT86-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A191960","Sedimenticola selenatireducens"],["NCBITaxon%3A1111735","Sedimenticola selenatireducens DSM 17993"]]},{"id":"NCBITaxon:1920190","l":"Archangium sp. Cb G35","na":1,"nb":2,"a":[["TED%3AAF-A0A1Q3HAE1-F1-model_v4_TED02","TED novel fold AF-A0A1Q3HAE1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1872627","Archangium sp."],["NCBITaxon%3A1920190","Archangium sp. Cb G35"]]},{"id":"NCBITaxon:1920419","l":"Desulfobulbaceae bacterium DB1","na":2,"nb":1,"a":[["TED%3AAF-A0A1Q6DKC7-F1-model_v4_TED02","TED novel fold AF-A0A1Q6DKC7-F1-model_v4_TED02"],["TED%3AAF-A0A1Q6DKM1-F1-model_v4_TED02","TED novel fold AF-A0A1Q6DKM1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1920419","Desulfobulbaceae bacterium DB1"]]},{"id":"NCBITaxon:1921421","l":"Geobacillus genomosp. 3","na":1,"nb":2,"a":[["Pfam%3APF22247","Catechol 2,3-dioxygenase-like N-terminal domain"]],"b":[["NCBITaxon%3A1921421","Geobacillus genomosp. 3"],["NCBITaxon%3A1891658","Geobacillus sp."]]},{"id":"NCBITaxon:1926491","l":"Hahella sp. CCB-MM4","na":2,"nb":1,"a":[["Pfam%3APF25271","Domain of unknown function (DUF7868)"],["TED%3AAF-A0A261GH03-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A261GH03-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1926491","Hahella sp. CCB-MM4"]]},{"id":"NCBITaxon:1927124","l":"Mycobacterium aquaticum","na":2,"nb":1,"a":[["TED%3AAF-A0A1X0A4W7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X0A4W7-F1-model_v4_TED01"],["TED%3AAF-A0A1X0B8H0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X0B8H0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1927124","Mycobacterium aquaticum"]]},{"id":"NCBITaxon:192904","l":"Kriegella aquimaris","na":2,"nb":1,"a":[["TED%3AAF-A0A1G9QMB2-F1-model_v4_TED01","TED novel fold AF-A0A1G9QMB2-F1-model_v4_TED01"],["TED%3AAF-A0A1G9TPJ1-F1-model_v4_TED01","TED novel fold AF-A0A1G9TPJ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A192904","Kriegella aquimaris"]]},{"id":"NCBITaxon:1929291","l":"Reyranella sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A521MAL3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521MAL3-F1-model_v4_TED01"],["TED%3AAF-A0A522ZGQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A522ZGQ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1929291","Reyranella sp."]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":1,"nb":2,"a":[["Pfam%3APF03437","BtpA family"]],"b":[["NCBITaxon%3A324833","Streptomyces lasalocidi"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:1932693","l":"bacterium E08(2017)","na":2,"nb":1,"a":[["TED%3AAF-A0A202DFY8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A202DFY8-F1-model_v4_TED01"],["TED%3AAF-A0A202DGR6-F1-model_v4_TED01","TED novel fold AF-A0A202DGR6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1932693","bacterium E08(2017)"]]},{"id":"NCBITaxon:1932716","l":"Ktedonobacter sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A3B9Y8D4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B9Y8D4-F1-model_v4_TED01"],["TED%3AAF-A0A3B9KCL3-F1-model_v4_TED03","TED novel fold AF-A0A3B9KCL3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1932716","Ktedonobacter sp."]]},{"id":"NCBITaxon:1933","l":"Streptoalloteichus tenebrarius","na":2,"nb":1,"a":[["Pfam%3APF16861","Carbamoyltransferase C-terminus"],["Pfam%3APF02543","Carbamoyltransferase N-terminus"]],"b":[["NCBITaxon%3A1933","Streptoalloteichus tenebrarius"]]},{"id":"NCBITaxon:1933220","l":"Sphingobacterium sp. B29","na":2,"nb":1,"a":[["TED%3AAF-A0A1P8E3E2-F1-model_v4_TED02","TED novel fold AF-A0A1P8E3E2-F1-model_v4_TED02"],["TED%3AAF-A0A1P8E830-F1-model_v4_TED01","TED novel fold AF-A0A1P8E830-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1933220","Sphingobacterium sp. B29"]]},{"id":"NCBITaxon:1936077","l":"candidate division WOR-3 bacterium 4484 100","na":2,"nb":1,"a":[["TED%3AAF-A0A1V4QGD8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V4QGD8-F1-model_v4_TED02"],["TED%3AAF-A0A1V4QI01-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V4QI01-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1936077","Caldifarciminota bacterium 4484_100"]]},{"id":"NCBITaxon:1938851","l":"Streptomyces sp. Ag109 O5-1","na":2,"nb":1,"a":[["TED%3AAF-A0A3N4S2G1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N4S2G1-F1-model_v4_TED01"],["TED%3AAF-A0A3N4SIH2-F1-model_v4_TED02","TED novel fold AF-A0A3N4SIH2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1938851","Streptomyces sp. Ag109_O5-1"]]},{"id":"NCBITaxon:1940","l":"","na":2,"nb":1,"a":[["TED%3AAF-A0A1Z2LD39-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z2LD39-F1-model_v4_TED01"],["TED%3AAF-A0A1Z2LBV3-F1-model_v4_TED01","TED novel fold AF-A0A1Z2LBV3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1940","Streptomyces albireticuli"]]},{"id":"NCBITaxon:1940610","l":"Phreatobacter stygius","na":2,"nb":1,"a":[["TED%3AAF-A0A4D7AVB2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4D7AVB2-F1-model_v4_TED01"],["TED%3AAF-A0A4D7B3N4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4D7B3N4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1940610","Phreatobacter stygius"]]},{"id":"NCBITaxon:1944635","l":"Sutterella seckii","na":2,"nb":1,"a":[["TED%3AAF-A0A6I1E9Q4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I1E9Q4-F1-model_v4_TED01"],["TED%3AAF-A0A6I1ED05-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I1ED05-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1944635","Sutterella seckii"]]},{"id":"NCBITaxon:1945579","l":"Methanosphaera sp. rholeuAM74","na":2,"nb":1,"a":[["TED%3AAF-A0A328RYM3-F1-model_v4_TED02","TED novel fold AF-A0A328RYM3-F1-model_v4_TED02"],["TED%3AAF-A0A328SFK5-F1-model_v4_TED02","TED novel fold AF-A0A328SFK5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1945579","Methanosphaera sp. rholeuAM74"]]},{"id":"NCBITaxon:1945872","l":"Fibrobacter sp. UWRM","na":2,"nb":1,"a":[["TED%3AAF-A0A2P6URS1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P6URS1-F1-model_v4_TED01"],["TED%3AAF-A0A2P6UTR6-F1-model_v4_TED02","TED novel fold AF-A0A2P6UTR6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1945872","Fibrobacter sp. UWRM"]]},{"id":"NCBITaxon:194702","l":"Cardiobacterium valvarum","na":1,"nb":2,"a":[["TED%3AAF-A0A381EEF6-F1-model_v4_TED02","TED novel fold AF-A0A381EEF6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A194702","Cardiobacterium valvarum"],["NCBITaxon%3A797473","Cardiobacterium valvarum F0432"]]},{"id":"NCBITaxon:1948","l":"Streptomyces longisporus","na":1,"nb":2,"a":[["PROSITE%3APS00999","Streptomyces subtilisin-type inhibitors signature"]],"b":[["NCBITaxon%3A1948","Streptomyces longisporus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:1954253","l":"Filimonas sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A388Q2C7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A388Q2C7-F1-model_v4_TED01"],["TED%3AAF-A0A388Q7L9-F1-model_v4_TED02","TED novel fold AF-A0A388Q7L9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1954253","Filimonas sp."]]},{"id":"NCBITaxon:1956162","l":"Planctomycetales bacterium 4484 123","na":2,"nb":1,"a":[["TED%3AAF-A0A1V4QVM4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V4QVM4-F1-model_v4_TED02"],["TED%3AAF-A0A1V4QRZ0-F1-model_v4_TED01","TED novel fold AF-A0A1V4QRZ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1956162","Planctomycetales bacterium 4484_123"]]},{"id":"NCBITaxon:196024","l":"Aeromonas dhakensis","na":1,"nb":2,"a":[["TED%3AAF-K1KBM8-F1-model_v4_TED01","TED novel fold AF-K1KBM8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A196024","Aeromonas dhakensis"],["NCBITaxon%3A1156800","Aeromonas dhakensis AAK1"]]},{"id":"NCBITaxon:196308","l":"Nostoc sp. HK-01","na":2,"nb":1,"a":[["TED%3AAF-A0A2Z6D4J6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z6D4J6-F1-model_v4_TED01"],["TED%3AAF-A0A2Z6CXK5-F1-model_v4_TED02","TED novel fold AF-A0A2Z6CXK5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A196308","Nostoc sp. HK-01"]]},{"id":"NCBITaxon:1964352","l":"Fibrobacter sp. UWR2","na":2,"nb":1,"a":[["TED%3AAF-A0A254REI0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A254REI0-F1-model_v4_TED01"],["TED%3AAF-A0A254RLR2-F1-model_v4_TED01","TED novel fold AF-A0A254RLR2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1964352","Fibrobacter sp. UWR2"]]},{"id":"NCBITaxon:1965555","l":"Lachnoclostridium sp. An131","na":2,"nb":1,"a":[["TED%3AAF-A0A1Y4S1T7-F1-model_v4_TED05","TED novel fold AF-A0A1Y4S1T7-F1-model_v4_TED05"],["TED%3AAF-A0A1Y4SAW0-F1-model_v4_TED01","TED novel fold AF-A0A1Y4SAW0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965555","Lachnoclostridium sp. An131"]]},{"id":"NCBITaxon:1965557","l":"Massilimicrobiota sp. An134","na":2,"nb":1,"a":[["TED%3AAF-A0A1Y4SF01-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Y4SF01-F1-model_v4_TED02"],["TED%3AAF-A0A1Y4SKF5-F1-model_v4_TED02","TED novel fold AF-A0A1Y4SKF5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1965557","Massilimicrobiota sp. An134"]]},{"id":"NCBITaxon:1965580","l":"Bacteroides sp. An19","na":2,"nb":1,"a":[["TED%3AAF-A0A1Y4JFG1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y4JFG1-F1-model_v4_TED01"],["TED%3AAF-A0A1Y4K1E2-F1-model_v4_TED02","TED novel fold AF-A0A1Y4K1E2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1965580","Bacteroides sp. An19"]]},{"id":"NCBITaxon:1965622","l":"Megasphaera sp. An286","na":2,"nb":1,"a":[["TED%3AAF-A0A1Y4CN46-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Y4CN46-F1-model_v4_TED02"],["TED%3AAF-A0A1Y4CHV3-F1-model_v4_TED01","TED novel fold AF-A0A1Y4CHV3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965622","Megasphaera sp. An286"]]},{"id":"NCBITaxon:1967782","l":"Chlamydia serpentis","na":1,"nb":2,"a":[["TED%3AAF-A0A2R8FBB5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2R8FBB5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1967782","Chlamydia serpentis"],["NCBITaxon%3A35827","Chlamydia sp."]]},{"id":"NCBITaxon:1969813","l":"Sinobacteraceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A522J9Y5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A522J9Y5-F1-model_v4_TED01"],["TED%3AAF-A0A5C7L3T6-F1-model_v4_TED02","TED novel fold AF-A0A5C7L3T6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1969813","Nevskiaceae bacterium"]]},{"id":"NCBITaxon:1970","l":"Streptomyces morookaense","na":1,"nb":2,"a":[["TED%3AAF-A0A7Y7E7U7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y7E7U7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A68176","Streptomyces aspergilloides"],["NCBITaxon%3A1970","Streptomyces morookaense"]]},{"id":"NCBITaxon:1970302","l":"Acidocella sp. 20-58-15","na":2,"nb":1,"a":[["TED%3AAF-A0A257QXJ2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A257QXJ2-F1-model_v4_TED03"],["TED%3AAF-A0A257QPV7-F1-model_v4_TED01","TED novel fold AF-A0A257QPV7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970302","Acidocella sp. 20-58-15"]]},{"id":"NCBITaxon:1970480","l":"Candidatus Saccharibacteria bacterium 32-50-10","na":2,"nb":1,"a":[["TED%3AAF-A0A258FYM3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A258FYM3-F1-model_v4_TED02"],["TED%3AAF-A0A258FVM1-F1-model_v4_TED01","TED novel fold AF-A0A258FVM1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970480","Candidatus Saccharibacteria bacterium 32-50-10"]]},{"id":"NCBITaxon:1970772","l":"candidate division KSB1 bacterium 4484 87","na":2,"nb":1,"a":[["TED%3AAF-A0A1W9RH52-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W9RH52-F1-model_v4_TED01"],["TED%3AAF-A0A1W9RSU5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W9RSU5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970772","Candidatus Zhuqueibacterota bacterium 4484_87"]]},{"id":"NCBITaxon:1972642","l":"Sphaerochaeta sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A3C1LQH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C1LQH3-F1-model_v4_TED01"],["TED%3AAF-A0A3C1LQH3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3C1LQH3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1972642","Sphaerochaeta sp."]]},{"id":"NCBITaxon:1973478","l":"Calothrix brevissima NIES-22","na":2,"nb":1,"a":[["TED%3AAF-A0A1Z4JTJ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z4JTJ2-F1-model_v4_TED01"],["TED%3AAF-A0A1Z4K5N3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z4K5N3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973478","Calothrix brevissima NIES-22"]]},{"id":"NCBITaxon:1973928","l":"Bdellovibrionales bacterium CG11 big fil rev 8 21 14 0 20 38 13","na":2,"nb":1,"a":[["TED%3AAF-A0A2H0Q7W6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H0Q7W6-F1-model_v4_TED01"],["TED%3AAF-A0A2H0Q805-F1-model_v4_TED01","TED novel fold AF-A0A2H0Q805-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973928","Bdellovibrionales bacterium CG11_big_fil_rev_8_21_14_0_20_38_13"]]},{"id":"NCBITaxon:1974064","l":"Nitrospirae bacterium CG01 land 8 20 14 3 00 44 22","na":2,"nb":1,"a":[["TED%3AAF-A0A2M7EE09-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M7EE09-F1-model_v4_TED01"],["TED%3AAF-A0A2M7EHQ1-F1-model_v4_TED01","TED novel fold AF-A0A2M7EHQ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1974064","Nitrospirae bacterium CG01_land_8_20_14_3_00_44_22"]]},{"id":"NCBITaxon:1974645","l":"Candidatus Magasanikbacteria bacterium CG10 big fil rev 8 21 14 0 10 36 16","na":2,"nb":1,"a":[["TED%3AAF-A0A2H0TXT1-F1-model_v4_TED01","TED novel fold AF-A0A2H0TXT1-F1-model_v4_TED01"],["TED%3AAF-A0A2H0TXT1-F1-model_v4_TED06","TED novel fold AF-A0A2H0TXT1-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A1974645","Candidatus Magasanikbacteria bacterium CG10_big_fil_rev_8_21_14_0_10_36_16"]]},{"id":"NCBITaxon:1974700","l":"Candidatus Nealsonbacteria bacterium CG02 land 8 20 14 3 00 40 11","na":2,"nb":1,"a":[["TED%3AAF-A0A2M7D756-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2M7D756-F1-model_v4_TED03"],["TED%3AAF-A0A2M7D8U7-F1-model_v4_TED01","TED novel fold AF-A0A2M7D8U7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1974700","Candidatus Nealsonbacteria bacterium CG02_land_8_20_14_3_00_40_11"]]},{"id":"NCBITaxon:1974834","l":"Candidatus Roizmanbacteria bacterium CG 4 8 14 3 um filter 36 10","na":2,"nb":1,"a":[["TED%3AAF-A0A2M8GLJ4-F1-model_v4_TED01","TED novel fold AF-A0A2M8GLJ4-F1-model_v4_TED01"],["TED%3AAF-A0A2M8GNB7-F1-model_v4_TED01","TED novel fold AF-A0A2M8GNB7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1974834","Candidatus Roizmanbacteria bacterium CG_4_8_14_3_um_filter_36_10"]]},{"id":"NCBITaxon:197538","l":"Strombidium inclinatum","na":2,"nb":1,"a":[["TED%3AAF-A0A7S3IUV5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S3IUV5-F1-model_v4_TED02"],["TED%3AAF-A0A7S3N2I4-F1-model_v4_TED01","TED novel fold AF-A0A7S3N2I4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A197538","Strombidium inclinatum"]]},{"id":"NCBITaxon:1975567","l":"bacterium CG 4 9 14 3 um filter 65 15","na":2,"nb":1,"a":[["TED%3AAF-A0A2M7YT17-F1-model_v4_TED04","TED novel fold AF-A0A2M7YT17-F1-model_v4_TED04"],["TED%3AAF-A0A2M7YWK0-F1-model_v4_TED01","TED novel fold AF-A0A2M7YWK0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1975567","bacterium CG_4_9_14_3_um_filter_65_15"]]},{"id":"NCBITaxon:1977876","l":"Acinetobacter sp. ANC 4558","na":2,"nb":1,"a":[["TED%3AAF-A0A241W1C8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A241W1C8-F1-model_v4_TED01"],["TED%3AAF-A0A2C9WTH4-F1-model_v4_TED01","TED novel fold AF-A0A2C9WTH4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1977876","Acinetobacter sp. ANC 4558"]]},{"id":"NCBITaxon:1977908","l":"Limnohabitans sp. JirII-31","na":1,"nb":2,"a":[["TED%3AAF-A0A2M6VQB3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2M6VQB3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1907725","Limnohabitans sp."],["NCBITaxon%3A1977908","Limnohabitans sp. JirII-31"]]},{"id":"NCBITaxon:1980636","l":"Woeseia sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2E6ZKI2-F1-model_v4_TED01","TED novel fold AF-A0A2E6ZKI2-F1-model_v4_TED01"],["TED%3AAF-A0A848VGI5-F1-model_v4_TED02","TED novel fold AF-A0A848VGI5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1980636","Woeseia sp."]]},{"id":"NCBITaxon:1982319","l":"Opitutae bacterium Tous-C1TDCM","na":2,"nb":1,"a":[["TED%3AAF-A0A2A2PZ60-F1-model_v4_TED02","TED novel fold AF-A0A2A2PZ60-F1-model_v4_TED02"],["TED%3AAF-A0A2A2QAY9-F1-model_v4_TED03","TED novel fold AF-A0A2A2QAY9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1982319","Opitutia bacterium Tous-C1TDCM"]]},{"id":"NCBITaxon:1982332","l":"Verrucomicrobiae bacterium Tous-C4TDCM","na":2,"nb":1,"a":[["TED%3AAF-A0A2A2Q6M6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A2Q6M6-F1-model_v4_TED01"],["TED%3AAF-A0A2A2QMI7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A2QMI7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1982332","Verrucomicrobiia bacterium Tous-C4TDCM"]]},{"id":"NCBITaxon:198466","l":"Streptococcus pyogenes serotype M3 (strain ATCC BAA-595 / MGAS315)","na":2,"nb":1,"a":[["IDPO%3A0000006","order"],["Pfam%3APF05532","CsbD-like"]],"b":[["NCBITaxon%3A198466","Streptococcus pyogenes MGAS315"]]},{"id":"NCBITaxon:1986668","l":"Betaproteobacteria bacterium TMED41","na":2,"nb":1,"a":[["TED%3AAF-A0A1Z8QIS2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z8QIS2-F1-model_v4_TED01"],["TED%3AAF-A0A1Z8QC02-F1-model_v4_TED05","TED novel fold AF-A0A1Z8QC02-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1986668","Betaproteobacteria bacterium TMED41"]]},{"id":"NCBITaxon:1993866","l":"Lactobacillales bacterium","na":1,"nb":2,"a":[["TED%3AAF-A0A847B9V9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A847B9V9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1993866","Lactobacillales bacterium"],["NCBITaxon%3A2269374","Lactobacillus terrae"]]},{"id":"NCBITaxon:199441","l":"Halalkalibacter krulwichiae","na":1,"nb":2,"a":[["TED%3AAF-A0A1X9MDU1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X9MDU1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A199441","Halalkalibacter krulwichiae"],["NCBITaxon%3A1220588","Halalkalibacter krulwichiae NBRC 102362"]]},{"id":"NCBITaxon:200475","l":"Brumimicrobium glaciale","na":2,"nb":1,"a":[["TED%3AAF-A0A4Q4KLV2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q4KLV2-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4KNV1-F1-model_v4_TED02","TED novel fold AF-A0A4Q4KNV1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A200475","Brumimicrobium glaciale"]]},{"id":"NCBITaxon:2004951","l":"Cordyceps sp. RAO-2017","na":2,"nb":1,"a":[["TED%3AAF-A0A2C5ZMY6-F1-model_v4_TED02","TED novel fold AF-A0A2C5ZMY6-F1-model_v4_TED02"],["TED%3AAF-A0A2C6AB72-F1-model_v4_TED02","TED novel fold AF-A0A2C6AB72-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2004951","Cordyceps sp. RAO-2017"]]},{"id":"NCBITaxon:2004952","l":"Ophiocordyceps camponoti-rufipedis","na":2,"nb":1,"a":[["TED%3AAF-A0A2C5ZA05-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2C5ZA05-F1-model_v4_TED03"],["TED%3AAF-A0A2C5YKA6-F1-model_v4_TED01","TED novel fold AF-A0A2C5YKA6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2004952","Ophiocordyceps camponoti-rufipedis"]]},{"id":"NCBITaxon:2006848","l":"Opitutaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A2E4J3I4-F1-model_v4_TED02","TED novel fold AF-A0A2E4J3I4-F1-model_v4_TED02"],["TED%3AAF-A0A2E4J5P7-F1-model_v4_TED04","TED novel fold AF-A0A2E4J5P7-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2006848","Opitutaceae bacterium"]]},{"id":"NCBITaxon:2007294","l":"Marine Group II euryarchaeote MED-G33","na":2,"nb":1,"a":[["TED%3AAF-A0A2A5VK90-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A5VK90-F1-model_v4_TED01"],["TED%3AAF-A0A2A5VQT0-F1-model_v4_TED05","TED novel fold AF-A0A2A5VQT0-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2007294","Marine Group II euryarchaeote MED-G33"]]},{"id":"NCBITaxon:2011094","l":"Coriobacteriaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A425WIX8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A425WIX8-F1-model_v4_TED02"],["TED%3AAF-A0A4S2F318-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S2F318-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2011094","Coriobacteriaceae bacterium"]]},{"id":"NCBITaxon:2012506","l":"Candidatus Altiarchaeales archaeon ex4484 2","na":2,"nb":1,"a":[["TED%3AAF-A0A256ZLI0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A256ZLI0-F1-model_v4_TED01"],["TED%3AAF-A0A256ZNF3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A256ZNF3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2012506","Candidatus Altarchaeales archaeon ex4484_2"]]},{"id":"NCBITaxon:2012998","l":"candidate division LCP-89 bacterium B3 LCP","na":2,"nb":1,"a":[["TED%3AAF-A0A532UU55-F1-model_v4_TED01","TED novel fold AF-A0A532UU55-F1-model_v4_TED01"],["TED%3AAF-A0A532V3E1-F1-model_v4_TED01","TED novel fold AF-A0A532V3E1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2012998","candidate division LCP-89 bacterium B3_LCP"]]},{"id":"NCBITaxon:2013680","l":"Bacteroidetes bacterium HGW-Bacteroidetes-12","na":2,"nb":1,"a":[["TED%3AAF-A0A2N2ZU31-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2N2ZU31-F1-model_v4_TED04"],["TED%3AAF-A0A2N2ZU60-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N2ZU60-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013680","Bacteroidetes bacterium HGW-Bacteroidetes-12"]]},{"id":"NCBITaxon:2013720","l":"Betaproteobacteria bacterium HGW-Betaproteobacteria-8","na":2,"nb":1,"a":[["TED%3AAF-A0A2N2Q6B9-F1-model_v4_TED02","TED novel fold AF-A0A2N2Q6B9-F1-model_v4_TED02"],["TED%3AAF-A0A2N2Q6M1-F1-model_v4_TED01","TED novel fold AF-A0A2N2Q6M1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013720","Betaproteobacteria bacterium HGW-Betaproteobacteria-8"]]},{"id":"NCBITaxon:2013760","l":"Candidatus Dependentiae bacterium HGW-Dependentiae-1","na":2,"nb":1,"a":[["TED%3AAF-A0A2N2F5N0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N2F5N0-F1-model_v4_TED01"],["TED%3AAF-A0A2N2F5N0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N2F5N0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2013760","Candidatus Dependentiae bacterium HGW-Dependentiae-1"]]},{"id":"NCBITaxon:2013761","l":"Candidatus Dojkabacteria bacterium HGW-Dojkabacteria-1","na":2,"nb":1,"a":[["TED%3AAF-A0A2N2F3B3-F1-model_v4_TED01","TED novel fold AF-A0A2N2F3B3-F1-model_v4_TED01"],["TED%3AAF-A0A2N2F3N0-F1-model_v4_TED01","TED novel fold AF-A0A2N2F3N0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013761","Candidatus Dojkabacteria bacterium HGW-Dojkabacteria-1"]]},{"id":"NCBITaxon:2013820","l":"Methanomicrobiales archaeon HGW-Methanomicrobiales-4","na":2,"nb":1,"a":[["TED%3AAF-A0A2I0P3V8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I0P3V8-F1-model_v4_TED01"],["TED%3AAF-A0A2I0P3U6-F1-model_v4_TED02","TED novel fold AF-A0A2I0P3U6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2013820","Methanomicrobiales archaeon HGW-Methanomicrobiales-4"]]},{"id":"NCBITaxon:2013838","l":"Spirochaetae bacterium HGW-Spirochaetae-6","na":2,"nb":1,"a":[["TED%3AAF-A0A2I0NEL2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I0NEL2-F1-model_v4_TED01"],["TED%3AAF-A0A2I0NEM3-F1-model_v4_TED01","TED novel fold AF-A0A2I0NEM3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013838","Spirochaetae bacterium HGW-Spirochaetae-6"]]},{"id":"NCBITaxon:2014248","l":"Candidatus Kerfeldbacteria bacterium CG 4 10 14 0 8 um filter 42 10","na":2,"nb":1,"a":[["TED%3AAF-A0A2M7RGB2-F1-model_v4_TED01","TED novel fold AF-A0A2M7RGB2-F1-model_v4_TED01"],["TED%3AAF-A0A2M7RH96-F1-model_v4_TED01","TED novel fold AF-A0A2M7RH96-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2014248","Candidatus Kerfeldbacteria bacterium CG_4_10_14_0_8_um_filter_42_10"]]},{"id":"NCBITaxon:2014261","l":"bacterium (Candidatus Blackallbacteria) CG17 big fil post rev 8 21 14 2 50 48 46","na":2,"nb":1,"a":[["TED%3AAF-A0A2M7G1V9-F1-model_v4_TED02","TED novel fold AF-A0A2M7G1V9-F1-model_v4_TED02"],["TED%3AAF-A0A2M7G4F1-F1-model_v4_TED01","TED novel fold AF-A0A2M7G4F1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2014261","bacterium (Candidatus Blackallbacteria) CG17_big_fil_post_rev_8_21_14_2_50_48_46"]]},{"id":"NCBITaxon:2014529","l":"Nostoc sp. 'Peltigera membranacea cyanobiont' 210A","na":2,"nb":1,"a":[["TED%3AAF-A0A235I2L5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A235I2L5-F1-model_v4_TED01"],["TED%3AAF-A0A235HVT9-F1-model_v4_TED06","TED novel fold AF-A0A235HVT9-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A2014529","Nostoc sp. 'Peltigera membranacea cyanobiont' 210A"]]},{"id":"NCBITaxon:2014784","l":"Neisseriaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A431J1D1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A431J1D1-F1-model_v4_TED01"],["TED%3AAF-A0A431HS40-F1-model_v4_TED01","TED novel fold AF-A0A431HS40-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2014784","Neisseriaceae bacterium"]]},{"id":"NCBITaxon:2018025","l":"Kitasatospora sp. MMS16-BH015","na":2,"nb":1,"a":[["TED%3AAF-A0A2H5B0Y4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H5B0Y4-F1-model_v4_TED02"],["TED%3AAF-A0A2H5B820-F1-model_v4_TED02","TED novel fold AF-A0A2H5B820-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2018025","Kitasatospora sp. MMS16-BH015"]]},{"id":"NCBITaxon:2022749","l":"Sulfurimonas sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2G1XYB8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G1XYB8-F1-model_v4_TED01"],["TED%3AAF-A0A2G2CS60-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2G2CS60-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2022749","Sulfurimonas sp."]]},{"id":"NCBITaxon:2023178","l":"Leptospira levettii","na":2,"nb":1,"a":[["TED%3AAF-A0A2N0AQT8-F1-model_v4_TED01","TED novel fold AF-A0A2N0AQT8-F1-model_v4_TED01"],["TED%3AAF-A0A5F2DAR0-F1-model_v4_TED02","TED novel fold AF-A0A5F2DAR0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2023178","Leptospira levettii"]]},{"id":"NCBITaxon:2023182","l":"Leptospira brenneri","na":2,"nb":1,"a":[["TED%3AAF-A0A5F1Z3S3-F1-model_v4_TED02","TED novel fold AF-A0A5F1Z3S3-F1-model_v4_TED02"],["TED%3AAF-A0A5F1Z7W0-F1-model_v4_TED08","TED novel fold AF-A0A5F1Z7W0-F1-model_v4_TED08"]],"b":[["NCBITaxon%3A2023182","Leptospira brenneri"]]},{"id":"NCBITaxon:2024553","l":"Candidatus Viridilinea mediisalina","na":2,"nb":1,"a":[["TED%3AAF-A0A2A6RFR8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A6RFR8-F1-model_v4_TED01"],["TED%3AAF-A0A2A6RK58-F1-model_v4_TED02","TED novel fold AF-A0A2A6RK58-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2024553","Candidatus Viridilinea mediisalina"]]},{"id":"NCBITaxon:2024826","l":"Blastopirellula sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2E0B0H3-F1-model_v4_TED02","TED novel fold AF-A0A2E0B0H3-F1-model_v4_TED02"],["TED%3AAF-A0A2G2IUT2-F1-model_v4_TED02","TED novel fold AF-A0A2G2IUT2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2024826","Blastopirellula sp."]]},{"id":"NCBITaxon:2024833","l":"Gimesia sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2E2C1V0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E2C1V0-F1-model_v4_TED01"],["TED%3AAF-A0A2E7KM43-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2E7KM43-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2024833","Gimesia sp."]]},{"id":"NCBITaxon:2024839","l":"Marinovum sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2D7D514-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D7D514-F1-model_v4_TED01"],["TED%3AAF-A0A2D7JZ21-F1-model_v4_TED01","TED novel fold AF-A0A2D7JZ21-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024839","Marinovum sp."]]},{"id":"NCBITaxon:2024840","l":"Methylophaga sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2G2HZW2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G2HZW2-F1-model_v4_TED01"],["TED%3AAF-A0A2E2D735-F1-model_v4_TED01","TED novel fold AF-A0A2E2D735-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024840","Methylophaga sp."]]},{"id":"NCBITaxon:2024844","l":"Nitrospina sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A3C8C9N2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3C8C9N2-F1-model_v4_TED02"],["TED%3AAF-A0A3C8C840-F1-model_v4_TED03","TED novel fold AF-A0A3C8C840-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2024844","Nitrospina sp."]]},{"id":"NCBITaxon:2024850","l":"Peredibacter sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2E5C9S7-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A2E5C9S7-F1-model_v4_TED05"],["TED%3AAF-A0A2E5C9V8-F1-model_v4_TED02","TED novel fold AF-A0A2E5C9V8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2024850","Peredibacter sp."]]},{"id":"NCBITaxon:2024853","l":"Porticoccus sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2G2QMR8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G2QMR8-F1-model_v4_TED01"],["TED%3AAF-A0A2G2QS79-F1-model_v4_TED03","TED novel fold AF-A0A2G2QS79-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2024853","Porticoccus sp."]]},{"id":"NCBITaxon:2024889","l":"SAR324 cluster bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A432GFQ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A432GFQ8-F1-model_v4_TED01"],["TED%3AAF-A0A7X9ILB3-F1-model_v4_TED02","TED novel fold AF-A0A7X9ILB3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2024889","SAR324 cluster bacterium"]]},{"id":"NCBITaxon:2024893","l":"Acidiferrobacteraceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A2E6P5K1-F1-model_v4_TED03","TED novel fold AF-A0A2E6P5K1-F1-model_v4_TED03"],["TED%3AAF-A0A2E9IGP7-F1-model_v4_TED03","TED novel fold AF-A0A2E9IGP7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2024893","Acidiferrobacteraceae bacterium"]]},{"id":"NCBITaxon:2026304","l":"Flavobacterium sp. IR1","na":2,"nb":1,"a":[["TED%3AAF-A0A7L4TGE7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7L4TGE7-F1-model_v4_TED01"],["TED%3AAF-A0A7L4TGQ6-F1-model_v4_TED01","TED novel fold AF-A0A7L4TGQ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026304","Flavobacterium sp. IR1"]]},{"id":"NCBITaxon:2026717","l":"Candidatus Magasanikbacteria bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A349IPD9-F1-model_v4_TED04","TED novel fold AF-A0A349IPD9-F1-model_v4_TED04"],["TED%3AAF-A0A847VXL4-F1-model_v4_TED02","TED novel fold AF-A0A847VXL4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026717","Candidatus Magasanikiibacteriota bacterium"]]},{"id":"NCBITaxon:2026722","l":"Cellvibrionales bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A350J1R3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A350J1R3-F1-model_v4_TED01"],["TED%3AAF-A0A3D5SD53-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D5SD53-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026722","Cellvibrionales bacterium"]]},{"id":"NCBITaxon:2026725","l":"Chromatiales bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A520X6H8-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A520X6H8-F1-model_v4_TED05"],["TED%3AAF-A0A7C2AIC9-F1-model_v4_TED02","TED novel fold AF-A0A7C2AIC9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026725","Chromatiales bacterium"]]},{"id":"NCBITaxon:2026747","l":"Candidatus Heimdallarchaeota archaeon","na":2,"nb":1,"a":[["TED%3AAF-A0A842R7J3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A842R7J3-F1-model_v4_TED01"],["TED%3AAF-A0A497R3Q0-F1-model_v4_TED01","TED novel fold AF-A0A497R3Q0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026747","Candidatus Heimdallarchaeota archaeon"]]},{"id":"NCBITaxon:2026768","l":"Nitrosopumilales archaeon","na":2,"nb":1,"a":[["TED%3AAF-A0A835XA14-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A835XA14-F1-model_v4_TED02"],["TED%3AAF-A0A6G1YPX0-F1-model_v4_TED02","TED novel fold AF-A0A6G1YPX0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026768","Nitrosopumilales archaeon"]]},{"id":"NCBITaxon:2026775","l":"Pelagibacteraceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A2D5WYN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D5WYN7-F1-model_v4_TED01"],["TED%3AAF-A0A2E5R6E3-F1-model_v4_TED02","TED novel fold AF-A0A2E5R6E3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026775","Candidatus Pelagibacteraceae bacterium"]]},{"id":"NCBITaxon:2026782","l":"Porticoccaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A2E0VJ56-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0VJ56-F1-model_v4_TED01"],["TED%3AAF-A0A351Q4J1-F1-model_v4_TED01","TED novel fold AF-A0A351Q4J1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026782","Porticoccaceae bacterium"]]},{"id":"NCBITaxon:2026785","l":"Rhodobiaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A2E5BQH7-F1-model_v4_TED01","TED novel fold AF-A0A2E5BQH7-F1-model_v4_TED01"],["TED%3AAF-A0A2E6NZZ9-F1-model_v4_TED01","TED novel fold AF-A0A2E6NZZ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026785","Rhodobiaceae bacterium"]]},{"id":"NCBITaxon:2026794","l":"Sutterellaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A3D4GBS5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3D4GBS5-F1-model_v4_TED03"],["TED%3AAF-A0A2E2R281-F1-model_v4_TED02","TED novel fold AF-A0A2E2R281-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026794","Sutterellaceae bacterium"]]},{"id":"NCBITaxon:2026798","l":"Trueperaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A5Q4G3Q5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5Q4G3Q5-F1-model_v4_TED02"],["TED%3AAF-A0A838IUG2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A838IUG2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026798","Trueperaceae bacterium"]]},{"id":"NCBITaxon:2026804","l":"Candidatus Woesebacteria bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A7T5RDP6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7T5RDP6-F1-model_v4_TED02"],["TED%3AAF-A0A3D4HBR5-F1-model_v4_TED01","TED novel fold AF-A0A3D4HBR5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026804","Candidatus Woesebacteria bacterium"]]},{"id":"NCBITaxon:2026806","l":"Woeseiaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A2D9M3K6-F1-model_v4_TED02","TED novel fold AF-A0A2D9M3K6-F1-model_v4_TED02"],["TED%3AAF-A0A7Y1TVN7-F1-model_v4_TED03","TED novel fold AF-A0A7Y1TVN7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2026806","Woeseiaceae bacterium"]]},{"id":"NCBITaxon:2026807","l":"Zetaproteobacteria bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A3M1HFQ6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A3M1HFQ6-F1-model_v4_TED04"],["TED%3AAF-A0A2A5ERT7-F1-model_v4_TED05","TED novel fold AF-A0A2A5ERT7-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2026807","Zetaproteobacteria bacterium"]]},{"id":"NCBITaxon:2026886","l":"Nitrosarchaeum sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A843CKT6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843CKT6-F1-model_v4_TED01"],["TED%3AAF-A0A846T5S4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A846T5S4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026886","Nitrosarchaeum sp."]]},{"id":"NCBITaxon:2028574","l":"Psittacicella gerlachiana","na":2,"nb":1,"a":[["TED%3AAF-A0A3A1YL73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A1YL73-F1-model_v4_TED01"],["TED%3AAF-A0A3A1Y8T7-F1-model_v4_TED01","TED novel fold AF-A0A3A1Y8T7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2028574","Psittacicella gerlachiana"]]},{"id":"NCBITaxon:2028575","l":"Psittacicella hinzii","na":2,"nb":1,"a":[["TED%3AAF-A0A3A1YFW7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A1YFW7-F1-model_v4_TED01"],["TED%3AAF-A0A3A1YMH4-F1-model_v4_TED01","TED novel fold AF-A0A3A1YMH4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2028575","Psittacicella hinzii"]]},{"id":"NCBITaxon:203","l":"Campylobacter rectus","na":1,"nb":2,"a":[["TED%3AAF-A0A6G5QQ81-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A6G5QQ81-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A203","Campylobacter rectus"],["NCBITaxon%3A553218","Campylobacter rectus RM3267"]]},{"id":"NCBITaxon:2030823","l":"Robiginitomaculum sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2G2G860-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2G2G860-F1-model_v4_TED02"],["TED%3AAF-A0A2G2LLT5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G2LLT5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2030823","Robiginitomaculum sp."]]},{"id":"NCBITaxon:2030880","l":"SAR86 cluster bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A2A4MT12-F1-model_v4_TED01","TED novel fold AF-A0A2A4MT12-F1-model_v4_TED01"],["TED%3AAF-A0A520N024-F1-model_v4_TED02","TED novel fold AF-A0A520N024-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2030880","SAR86 cluster bacterium"]]},{"id":"NCBITaxon:2033499","l":"Bacillus sp. AFS037270","na":2,"nb":1,"a":[["TED%3AAF-A0A2C1YQ20-F1-model_v4_TED01","TED novel fold AF-A0A2C1YQ20-F1-model_v4_TED01"],["TED%3AAF-A0A2C1ZAQ5-F1-model_v4_TED01","TED novel fold AF-A0A2C1ZAQ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2033499","Bacillus sp. AFS037270"]]},{"id":"NCBITaxon:2035407","l":"bacterium HR12","na":2,"nb":1,"a":[["TED%3AAF-A0A2H5WBP2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H5WBP2-F1-model_v4_TED01"],["TED%3AAF-A0A2H5WDV7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2H5WDV7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2035407","bacterium HR12"]]},{"id":"NCBITaxon:2043165","l":"Candidatus Sulfopaludibacter sp. SbA4","na":2,"nb":1,"a":[["TED%3AAF-A0A2U3JYH5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2U3JYH5-F1-model_v4_TED03"],["TED%3AAF-A0A2U3LY46-F1-model_v4_TED01","TED novel fold AF-A0A2U3LY46-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2043165","Candidatus Sulfopaludibacter sp. SbA4"]]},{"id":"NCBITaxon:2044595","l":"Gracilibacteria bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A3D0UUF8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D0UUF8-F1-model_v4_TED02"],["TED%3AAF-A0A660MQW4-F1-model_v4_TED03","TED novel fold AF-A0A660MQW4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2044595","Candidatus Altimarinota bacterium"]]},{"id":"NCBITaxon:2044937","l":"candidate division KSB3 bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A2G6K8E3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G6K8E3-F1-model_v4_TED01"],["TED%3AAF-A0A2G6KFX6-F1-model_v4_TED01","TED novel fold AF-A0A2G6KFX6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2044937","candidate division KSB3 bacterium"]]},{"id":"NCBITaxon:2045445","l":"Rhodobacteraceae bacterium 4F10","na":2,"nb":1,"a":[["TED%3AAF-A0A2G1C1G8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2G1C1G8-F1-model_v4_TED03"],["TED%3AAF-A0A2G1BZQ5-F1-model_v4_TED02","TED novel fold AF-A0A2G1BZQ5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2045445","Rhodobacteraceae bacterium 4F10"]]},{"id":"NCBITaxon:204722","l":"Brucella suis biovar 1 (strain 1330)","na":2,"nb":1,"a":[["Pfam%3APF03625","Domain of unknown function DUF302"],["Pfam%3APF10634","Fe2+ transport protein"]],"b":[["NCBITaxon%3A204722","Brucella suis 1330"]]},{"id":"NCBITaxon:2051959","l":"Edaphobacter lichenicola","na":2,"nb":1,"a":[["TED%3AAF-A0A7W8J8A0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W8J8A0-F1-model_v4_TED01"],["TED%3AAF-A0A7W8MT28-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W8MT28-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2051959","Tunturiibacter lichenicola"]]},{"id":"NCBITaxon:2052142","l":"Acidobacteriaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A7Y5RFN7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y5RFN7-F1-model_v4_TED02"],["TED%3AAF-A0A7Y5VIS3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y5VIS3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052142","Acidobacteriaceae bacterium"]]},{"id":"NCBITaxon:2052152","l":"Candidatus Nomurabacteria bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A354G2P8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A354G2P8-F1-model_v4_TED03"],["TED%3AAF-A0A7T9BFK0-F1-model_v4_TED01","TED novel fold AF-A0A7T9BFK0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052152","Candidatus Nomurabacteria bacterium"]]},{"id":"NCBITaxon:2052182","l":"Rhodanobacteraceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A522RM40-F1-model_v4_TED01","TED novel fold AF-A0A522RM40-F1-model_v4_TED01"],["TED%3AAF-A0A522RTT8-F1-model_v4_TED01","TED novel fold AF-A0A522RTT8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052182","Rhodanobacteraceae bacterium"]]},{"id":"NCBITaxon:2052185","l":"Syntrophobacteraceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A352PU63-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A352PU63-F1-model_v4_TED01"],["TED%3AAF-A0A3B8HTL6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3B8HTL6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2052185","Syntrophobacteraceae bacterium"]]},{"id":"NCBITaxon:2053187","l":"Rhodohalobacter barkolensis","na":2,"nb":1,"a":[["TED%3AAF-A0A2N0VHX0-F1-model_v4_TED02","TED novel fold AF-A0A2N0VHX0-F1-model_v4_TED02"],["TED%3AAF-A0A2N0VJJ6-F1-model_v4_TED02","TED novel fold AF-A0A2N0VJJ6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053187","Rhodohalobacter barkolensis"]]},{"id":"NCBITaxon:2053308","l":"Denitrovibrio sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2N6D8B9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N6D8B9-F1-model_v4_TED02"],["TED%3AAF-A0A2N6D5R6-F1-model_v4_TED02","TED novel fold AF-A0A2N6D5R6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053308","Denitrovibrio sp."]]},{"id":"NCBITaxon:2053494","l":"Acholeplasmatales bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A348WSM8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A348WSM8-F1-model_v4_TED03"],["TED%3AAF-A0A3D5RJM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3D5RJM9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2053494","Acholeplasmatales bacterium"]]},{"id":"NCBITaxon:2053516","l":"Balneolaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A356X2A1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A356X2A1-F1-model_v4_TED01"],["TED%3AAF-A0A356X8T9-F1-model_v4_TED01","TED novel fold AF-A0A356X8T9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053516","Balneolaceae bacterium"]]},{"id":"NCBITaxon:2053517","l":"Bdellovibrionales bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A838F4M8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A838F4M8-F1-model_v4_TED02"],["TED%3AAF-A0A838F0T0-F1-model_v4_TED04","TED novel fold AF-A0A838F0T0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2053517","Bdellovibrionales bacterium"]]},{"id":"NCBITaxon:2053554","l":"Candidatus Falkowbacteria bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A661TPV6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A661TPV6-F1-model_v4_TED02"],["TED%3AAF-A0A351SM32-F1-model_v4_TED02","TED novel fold AF-A0A351SM32-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053554","Candidatus Falkowiibacteriota bacterium"]]},{"id":"NCBITaxon:2053591","l":"Planctomycetales bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A354GQH8-F1-model_v4_TED02","TED novel fold AF-A0A354GQH8-F1-model_v4_TED02"],["TED%3AAF-A0A354GRH7-F1-model_v4_TED01","TED novel fold AF-A0A354GRH7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053591","Planctomycetales bacterium"]]},{"id":"NCBITaxon:2053620","l":"Succinivibrionaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A3C0CAV6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C0CAV6-F1-model_v4_TED01"],["TED%3AAF-A0A3C0CA37-F1-model_v4_TED01","TED novel fold AF-A0A3C0CA37-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053620","Succinivibrionaceae bacterium"]]},{"id":"NCBITaxon:2054177","l":"Christensenellaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A7X9L123-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X9L123-F1-model_v4_TED01"],["TED%3AAF-A0A7X8HJN5-F1-model_v4_TED01","TED novel fold AF-A0A7X8HJN5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2054177","Christensenellaceae bacterium"]]},{"id":"NCBITaxon:2055768","l":"Cyanobacteria bacterium UBA11372","na":2,"nb":1,"a":[["TED%3AAF-A0A350XA13-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A350XA13-F1-model_v4_TED02"],["TED%3AAF-A0A350XDK6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A350XDK6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2055768","Cyanobacteria bacterium UBA11372"]]},{"id":"NCBITaxon:2055771","l":"Cyanobacteria bacterium UBA8553","na":2,"nb":1,"a":[["TED%3AAF-A0A3B8JEH6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B8JEH6-F1-model_v4_TED01"],["TED%3AAF-A0A3B8JT93-F1-model_v4_TED01","TED novel fold AF-A0A3B8JT93-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2055771","Cyanobacteria bacterium UBA8553"]]},{"id":"NCBITaxon:2055774","l":"Cyanobacteria bacterium UBA11367","na":2,"nb":1,"a":[["TED%3AAF-A0A352XGH6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A352XGH6-F1-model_v4_TED02"],["TED%3AAF-A0A352XHH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A352XHH3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2055774","Cyanobacteria bacterium UBA11367"]]},{"id":"NCBITaxon:2056316","l":"Methanophagales archaeon","na":2,"nb":1,"a":[["TED%3AAF-A0A368TL25-F1-model_v4_TED01","TED novel fold AF-A0A368TL25-F1-model_v4_TED01"],["TED%3AAF-A0A849QVV8-F1-model_v4_TED01","TED novel fold AF-A0A849QVV8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2056316","Candidatus Methanophagales archaeon"]]},{"id":"NCBITaxon:2056317","l":"ANME-2 cluster archaeon","na":2,"nb":1,"a":[["TED%3AAF-A0A524PZU0-F1-model_v4_TED02","TED novel fold AF-A0A524PZU0-F1-model_v4_TED02"],["TED%3AAF-A0A7J9T369-F1-model_v4_TED01","TED novel fold AF-A0A7J9T369-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2056317","ANME-2 cluster archaeon"]]},{"id":"NCBITaxon:2056859","l":"Stenotrophomonas sp. HMWF023","na":2,"nb":1,"a":[["TED%3AAF-A0A2R7IPA4-F1-model_v4_TED09","TED novel fold AF-A0A2R7IPA4-F1-model_v4_TED09"],["TED%3AAF-A0A2R7IPB5-F1-model_v4_TED02","TED novel fold AF-A0A2R7IPB5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2056859","Stenotrophomonas sp. HMWF023"]]},{"id":"NCBITaxon:205921","l":"Streptococcus agalactiae serotype Ia (strain ATCC 27591 / A909 / CDC SS700)","na":2,"nb":1,"a":[["Pfam%3APF08829","Alpha C protein N terminal"],["Pfam%3APF17480","AlphaC N-terminal domain 2"]],"b":[["NCBITaxon%3A205921","Streptococcus agalactiae A909"]]},{"id":"NCBITaxon:2065379","l":"Paracoccus jeotgali","na":2,"nb":1,"a":[["TED%3AAF-A0A2K9MH88-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2K9MH88-F1-model_v4_TED01"],["TED%3AAF-A0A2K9MJ90-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2K9MJ90-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2065379","Paracoccus jeotgali"]]},{"id":"NCBITaxon:2066021","l":"Desulfocapsa sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A432R1K4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A432R1K4-F1-model_v4_TED02"],["TED%3AAF-A0A432QNQ2-F1-model_v4_TED01","TED novel fold AF-A0A432QNQ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2066021","Desulfocapsa sp."]]},{"id":"NCBITaxon:2066053","l":"Bacillus sp. UMB0893","na":2,"nb":1,"a":[["TED%3AAF-A0A2N5FCU2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N5FCU2-F1-model_v4_TED02"],["TED%3AAF-A0A2N5FKU1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N5FKU1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2066053","Bacillus sp. UMB0893"]]},{"id":"NCBITaxon:2072417","l":"candidate division NC10 bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A2U1S0N1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U1S0N1-F1-model_v4_TED01"],["TED%3AAF-A0A2U1S545-F1-model_v4_TED03","TED novel fold AF-A0A2U1S545-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2072417","Candidatus Methylomirabilota bacterium"]]},{"id":"NCBITaxon:2079197","l":"Telmatospirillum sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A6A8QF94-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A8QF94-F1-model_v4_TED01"],["TED%3AAF-A0A6A8QJ93-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A8QJ93-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2079197","Telmatospirillum sp."]]},{"id":"NCBITaxon:2080573","l":"Pseudoclavibacter sp. RFBA6","na":2,"nb":1,"a":[["TED%3AAF-A0A2S5X1W1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2S5X1W1-F1-model_v4_TED02"],["TED%3AAF-A0A2S5X6A4-F1-model_v4_TED02","TED novel fold AF-A0A2S5X6A4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2080573","Pseudoclavibacter sp. RFBA6"]]},{"id":"NCBITaxon:2081964","l":"Lysinibacillus sp. B2A1","na":2,"nb":1,"a":[["TED%3AAF-A0A2S0JJX6-F1-model_v4_TED01","TED novel fold AF-A0A2S0JJX6-F1-model_v4_TED01"],["TED%3AAF-A0A2S0JLZ8-F1-model_v4_TED01","TED novel fold AF-A0A2S0JLZ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2081964","Lysinibacillus sp. B2A1"]]},{"id":"NCBITaxon:2082308","l":"Sphaceloma murrayae","na":2,"nb":1,"a":[["TED%3AAF-A0A2K1QZX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2K1QZX4-F1-model_v4_TED01"],["TED%3AAF-A0A2K1R1V3-F1-model_v4_TED01","TED novel fold AF-A0A2K1R1V3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2082308","Sphaceloma murrayae"]]},{"id":"NCBITaxon:2083279","l":"Kaistia algarum","na":2,"nb":1,"a":[["TED%3AAF-A0A2S5U2U1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2S5U2U1-F1-model_v4_TED03"],["TED%3AAF-A0A2S5U3K4-F1-model_v4_TED01","TED novel fold AF-A0A2S5U3K4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2083279","Kaistia algarum"]]},{"id":"NCBITaxon:2099677","l":"Desulfuromonadaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A847C200-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A847C200-F1-model_v4_TED01"],["TED%3AAF-A0A847C290-F1-model_v4_TED02","TED novel fold AF-A0A847C290-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2099677","Desulfuromonadaceae bacterium"]]},{"id":"NCBITaxon:2099678","l":"Desulfuromonadales bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A7Y7NCW4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y7NCW4-F1-model_v4_TED01"],["TED%3AAF-A0A7Y7NAA7-F1-model_v4_TED01","TED novel fold AF-A0A7Y7NAA7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2099678","Desulfuromonadales bacterium"]]},{"id":"NCBITaxon:2099680","l":"Methanobacteriaceae archaeon","na":2,"nb":1,"a":[["TED%3AAF-A0A7L4NXH5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7L4NXH5-F1-model_v4_TED01"],["TED%3AAF-A0A842M5K6-F1-model_v4_TED01","TED novel fold AF-A0A842M5K6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2099680","Methanobacteriaceae archaeon"]]},{"id":"NCBITaxon:2099795","l":"Candidatus Rhabdochlamydia sp. T3358","na":2,"nb":1,"a":[["TED%3AAF-A0A486XQX9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A486XQX9-F1-model_v4_TED01"],["TED%3AAF-A0A486XN84-F1-model_v4_TED02","TED novel fold AF-A0A486XN84-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2099795","Candidatus Rhabdochlamydia sp. T3358"]]},{"id":"NCBITaxon:2100167","l":"Photorhabdus luminescens subsp. mexicana","na":1,"nb":2,"a":[["TED%3AAF-A0A4R4IMQ6-F1-model_v4_TED01","TED novel fold AF-A0A4R4IMQ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29488","Photorhabdus luminescens"],["NCBITaxon%3A2100167","Photorhabdus luminescens subsp. mexicana"]]},{"id":"NCBITaxon:2100533","l":"Sphingobacterium haloxyli","na":2,"nb":1,"a":[["TED%3AAF-A0A2S9J8F0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S9J8F0-F1-model_v4_TED01"],["TED%3AAF-A0A2S9J915-F1-model_v4_TED02","TED novel fold AF-A0A2S9J915-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2100533","Sphingobacterium haloxyli"]]},{"id":"NCBITaxon:2107694","l":"Aphanothece hegewaldii CCALA 016","na":2,"nb":1,"a":[["TED%3AAF-A0A2T1LQB3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T1LQB3-F1-model_v4_TED01"],["TED%3AAF-A0A2T1LZQ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T1LZQ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2107694","Aphanothece hegewaldii CCALA 016"]]},{"id":"NCBITaxon:2107698","l":"Stenomitos frigidus ULC18","na":2,"nb":1,"a":[["TED%3AAF-A0A2T1DVW2-F1-model_v4_TED01","TED novel fold AF-A0A2T1DVW2-F1-model_v4_TED01"],["TED%3AAF-A0A2T1DXN5-F1-model_v4_TED01","TED novel fold AF-A0A2T1DXN5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2107698","Stenomitos frigidus ULC18"]]},{"id":"NCBITaxon:2107700","l":"filamentous cyanobacterium CCP2","na":2,"nb":1,"a":[["TED%3AAF-A0A2T1CHV0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T1CHV0-F1-model_v4_TED01"],["TED%3AAF-A0A2T1CQA7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2T1CQA7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2107700","filamentous cyanobacterium CCP2"]]},{"id":"NCBITaxon:2107701","l":"filamentous cyanobacterium CCP5","na":2,"nb":1,"a":[["TED%3AAF-A0A2P8VY56-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2P8VY56-F1-model_v4_TED02"],["TED%3AAF-A0A2P8WFD1-F1-model_v4_TED02","TED novel fold AF-A0A2P8WFD1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2107701","filamentous cyanobacterium CCP5"]]},{"id":"NCBITaxon:2107705","l":"filamentous cyanobacterium Phorm 46","na":2,"nb":1,"a":[["TED%3AAF-A0A2T1DSP8-F1-model_v4_TED02","TED novel fold AF-A0A2T1DSP8-F1-model_v4_TED02"],["TED%3AAF-A0A2T1EEX4-F1-model_v4_TED01","TED novel fold AF-A0A2T1EEX4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2107705","filamentous cyanobacterium Phorm 46"]]},{"id":"NCBITaxon:2112","l":"Mycoplasmopsis bovigenitalium","na":1,"nb":2,"a":[["TED%3AAF-A0A449A8A6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A449A8A6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2112","Mycoplasmopsis bovigenitalium"],["NCBITaxon%3A1188235","Mycoplasmopsis bovigenitalium 51080"]]},{"id":"NCBITaxon:2113","l":"Mycoplasmopsis californica","na":1,"nb":2,"a":[["TED%3AAF-A0A059XW28-F1-model_v4_TED04","TED novel fold AF-A0A059XW28-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2113","Mycoplasmopsis californica"],["NCBITaxon%3A1397850","Mycoplasmopsis californica HAZ160_1"]]},{"id":"NCBITaxon:2116516","l":"Sphingobacteriales bacterium UPWRP 1","na":2,"nb":1,"a":[["TED%3AAF-A0A2P7TMB8-F1-model_v4_TED01","TED novel fold AF-A0A2P7TMB8-F1-model_v4_TED01"],["TED%3AAF-A0A2P7TQ92-F1-model_v4_TED02","TED novel fold AF-A0A2P7TQ92-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2116516","Sphingobacteriales bacterium UPWRP_1"]]},{"id":"NCBITaxon:2126342","l":"Candidatus Kentron sp. LFY","na":2,"nb":1,"a":[["TED%3AAF-A0A450V704-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A450V704-F1-model_v4_TED01"],["TED%3AAF-A0A450W6Z3-F1-model_v4_TED02","TED novel fold AF-A0A450W6Z3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2126342","Candidatus Kentrum sp. LFY"]]},{"id":"NCBITaxon:2135466","l":"Leifsonia sp. OV430","na":2,"nb":1,"a":[["TED%3AAF-A0A420X9C0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A420X9C0-F1-model_v4_TED01"],["TED%3AAF-A0A420X9H3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A420X9H3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2135466","Leifsonia sp. OV430"]]},{"id":"NCBITaxon:2135469","l":"Filimonas sp. YR581","na":2,"nb":1,"a":[["TED%3AAF-A0A2U0ZFR8-F1-model_v4_TED02","TED novel fold AF-A0A2U0ZFR8-F1-model_v4_TED02"],["TED%3AAF-A0A2U0ZFX6-F1-model_v4_TED01","TED novel fold AF-A0A2U0ZFX6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2135469","Filimonas sp. YR581"]]},{"id":"NCBITaxon:2135615","l":"Stappia sp. ARW1T","na":2,"nb":1,"a":[["TED%3AAF-A0A419YX15-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A419YX15-F1-model_v4_TED01"],["TED%3AAF-A0A419YYJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A419YYJ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2135615","Stappia sp. ARW1T"]]},{"id":"NCBITaxon:2135741","l":"Bacillus sp. OV186","na":2,"nb":1,"a":[["TED%3AAF-A0A2T5S6C1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T5S6C1-F1-model_v4_TED01"],["TED%3AAF-A0A2T5SBX6-F1-model_v4_TED01","TED novel fold AF-A0A2T5SBX6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2135741","Bacillus sp. OV186"]]},{"id":"NCBITaxon:2136176","l":"Deinococcus arcticus","na":2,"nb":1,"a":[["TED%3AAF-A0A2T3W9E4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T3W9E4-F1-model_v4_TED01"],["TED%3AAF-A0A2T3W7H7-F1-model_v4_TED03","TED novel fold AF-A0A2T3W7H7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2136176","Deinococcus arcticus"]]},{"id":"NCBITaxon:2148","l":"Acholeplasma laidlawii","na":1,"nb":2,"a":[["TED%3AAF-A0A553IH20-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A553IH20-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2148","Acholeplasma laidlawii"],["NCBITaxon%3A441768","Acholeplasma laidlawii PG-8A"]]},{"id":"NCBITaxon:215243","l":"Exophiala oligosperma","na":2,"nb":1,"a":[["TED%3AAF-A0A0D2AWG1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0D2AWG1-F1-model_v4_TED02"],["TED%3AAF-A0A0D2DVN6-F1-model_v4_TED02","TED novel fold AF-A0A0D2DVN6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A215243","Exophiala oligosperma"]]},{"id":"NCBITaxon:215250","l":"Acaromyces ingoldii","na":2,"nb":1,"a":[["TED%3AAF-A0A316YKZ9-F1-model_v4_TED01","TED novel fold AF-A0A316YKZ9-F1-model_v4_TED01"],["TED%3AAF-A0A316Z0J2-F1-model_v4_TED02","TED novel fold AF-A0A316Z0J2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A215250","Acaromyces ingoldii"]]},{"id":"NCBITaxon:2161865","l":"Opitutaceae bacterium EW11","na":2,"nb":1,"a":[["TED%3AAF-A0A2T6DTI1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2T6DTI1-F1-model_v4_TED03"],["TED%3AAF-A0A2T6E1F8-F1-model_v4_TED03","TED novel fold AF-A0A2T6E1F8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2161865","Opitutaceae bacterium EW11"]]},{"id":"NCBITaxon:2163","l":"Methanobacterium ivanovii","na":2,"nb":1,"a":[["PROSITE%3APS00839","Uroporphyrin-III C-methyltransferase signature 1"],["PROSITE%3APS00840","Uroporphyrin-III C-methyltransferase signature 2"]],"b":[["NCBITaxon%3A2163","Methanobacterium ivanovii"]]},{"id":"NCBITaxon:2164130","l":"Cyanobium sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2W6ZT90-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2W6ZT90-F1-model_v4_TED02"],["TED%3AAF-A0A4P5VPF8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4P5VPF8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2164130","Cyanobium sp."]]},{"id":"NCBITaxon:2164131","l":"Snowella sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2W7BHM9-F1-model_v4_TED01","TED novel fold AF-A0A2W7BHM9-F1-model_v4_TED01"],["TED%3AAF-A0A2W7BNF2-F1-model_v4_TED02","TED novel fold AF-A0A2W7BNF2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2164131","Snowella sp."]]},{"id":"NCBITaxon:216427","l":"Mesoplasma chauliocola","na":1,"nb":2,"a":[["TED%3AAF-A0A249SN95-F1-model_v4_TED02","TED novel fold AF-A0A249SN95-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A216427","Mesoplasma chauliocola"],["NCBITaxon%3A1336232","Mesoplasma chauliocola ATCC 49578"]]},{"id":"NCBITaxon:216591","l":"Burkholderia cenocepacia J2315","na":1,"nb":2,"a":[["Pfam%3APF04199","Putative cyclase"]],"b":[["NCBITaxon%3A95486","Burkholderia cenocepacia"],["NCBITaxon%3A216591","Burkholderia cenocepacia J2315"]]},{"id":"NCBITaxon:216595","l":"","na":2,"nb":1,"a":[["Pfam%3APF04996","Succinylarginine dihydrolase"],["TED%3AAF-A0A0G4E5V4-F1-model_v4_TED01","TED novel fold AF-A0A0G4E5V4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A216595","Pseudomonas [fluorescens] SBW25"]]},{"id":"NCBITaxon:216931","l":"Spiroplasma alleghenense","na":1,"nb":2,"a":[["TED%3AAF-A0A345Z4J0-F1-model_v4_TED03","TED novel fold AF-A0A345Z4J0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A216931","Spiroplasma alleghenense"],["NCBITaxon%3A1336750","Spiroplasma alleghenense PLHS-1"]]},{"id":"NCBITaxon:216942","l":"Spiroplasma litorale","na":2,"nb":1,"a":[["TED%3AAF-A0A0K1W1A0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0K1W1A0-F1-model_v4_TED02"],["TED%3AAF-A0A0K1W1A0-F1-model_v4_TED05","TED novel fold AF-A0A0K1W1A0-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A216942","Spiroplasma litorale"]]},{"id":"NCBITaxon:2169593","l":"Nitrososphaeraceae archaeon","na":2,"nb":1,"a":[["TED%3AAF-A0A6A7LBX9-F1-model_v4_TED01","TED novel fold AF-A0A6A7LBX9-F1-model_v4_TED01"],["TED%3AAF-A0A6A7LKX5-F1-model_v4_TED01","TED novel fold AF-A0A6A7LKX5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2169593","Nitrososphaeraceae archaeon"]]},{"id":"NCBITaxon:217090","l":"Paenibacillus pasadenensis","na":1,"nb":2,"a":[["TED%3AAF-A0A2N5N237-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N5N237-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A217090","Paenibacillus pasadenensis"],["NCBITaxon%3A1122923","Paenibacillus pasadenensis DSM 19293"]]},{"id":"NCBITaxon:2171976","l":"Agriterribacter soli","na":2,"nb":1,"a":[["TED%3AAF-A0A2T7QCA4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T7QCA4-F1-model_v4_TED01"],["TED%3AAF-A0A2T7QFL0-F1-model_v4_TED01","TED novel fold AF-A0A2T7QFL0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2171976","Agriterribacter soli"]]},{"id":"NCBITaxon:2175644","l":"Curtobacterium sp. MCSS17 016","na":2,"nb":1,"a":[["TED%3AAF-A0A2W1TJ21-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W1TJ21-F1-model_v4_TED01"],["TED%3AAF-A0A2W1TIH0-F1-model_v4_TED01","TED novel fold AF-A0A2W1TIH0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2175644","Curtobacterium sp. MCSS17_016"]]},{"id":"NCBITaxon:2180","l":"Methanothermus fervidus","na":1,"nb":2,"a":[["Pfam%3APF09130","Domain of unknown function (DUF1932)"]],"b":[["NCBITaxon%3A2180","Methanothermus fervidus"],["NCBITaxon%3A523846","Methanothermus fervidus DSM 2088"]]},{"id":"NCBITaxon:218208","l":"Desulfatibacillum aliphaticivorans","na":1,"nb":2,"a":[["TED%3AAF-B8FC96-F1-model_v4_TED02","TED highly-symmetric fold AF-B8FC96-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A218208","Desulfatibacillum aliphaticivorans"],["NCBITaxon%3A1121392","Desulfatibacillum aliphaticivorans DSM 15576"]]},{"id":"NCBITaxon:2183582","l":"Saliniradius amylolyticus","na":2,"nb":1,"a":[["TED%3AAF-A0A2S2E167-F1-model_v4_TED01","TED novel fold AF-A0A2S2E167-F1-model_v4_TED01"],["TED%3AAF-A0A2S2E2D0-F1-model_v4_TED01","TED novel fold AF-A0A2S2E2D0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2183582","Saliniradius amylolyticus"]]},{"id":"NCBITaxon:218497","l":"","na":1,"nb":2,"a":[["Pfam%3APF07578","Lipid A Biosynthesis N-terminal domain"]],"b":[["NCBITaxon%3A83555","Chlamydia abortus"],["NCBITaxon%3A218497","Chlamydia abortus S26/3"]]},{"id":"NCBITaxon:218673","l":"Sulfitobacter dubius","na":1,"nb":2,"a":[["TED%3AAF-A0A1I2SP51-F1-model_v4_TED02","TED novel fold AF-A0A1I2SP51-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A218673","Sulfitobacter dubius"],["NCBITaxon%3A1903071","Sulfitobacter sp."]]},{"id":"NCBITaxon:218821","l":"Amycolatopsis pretoriensis","na":2,"nb":1,"a":[["TED%3AAF-A0A1H5RH46-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H5RH46-F1-model_v4_TED02"],["TED%3AAF-A0A1H5RIK5-F1-model_v4_TED01","TED novel fold AF-A0A1H5RIK5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A218821","Amycolatopsis pretoriensis"]]},{"id":"NCBITaxon:2189","l":"Methanotorris igneus","na":1,"nb":2,"a":[["Pfam%3APF13207","AAA domain"]],"b":[["NCBITaxon%3A2189","Methanotorris igneus"],["NCBITaxon%3A880724","Methanotorris igneus Kol 5"]]},{"id":"NCBITaxon:2190","l":"Methanocaldococcus jannaschii","na":1,"nb":2,"a":[["TED%3AAF-A0A832WL57-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A832WL57-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2190","Methanocaldococcus jannaschii"],["NCBITaxon%3A243232","Methanocaldococcus jannaschii DSM 2661"]]},{"id":"NCBITaxon:2200906","l":"endosymbiont of Galathealinum brachiosum","na":2,"nb":1,"a":[["TED%3AAF-A0A370D976-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A370D976-F1-model_v4_TED01"],["TED%3AAF-A0A370DP35-F1-model_v4_TED02","TED novel fold AF-A0A370DP35-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2200906","endosymbiont of Galathealinum brachiosum"]]},{"id":"NCBITaxon:2202203","l":"Leptospira stimsonii","na":2,"nb":1,"a":[["TED%3AAF-A0A396Z2C7-F1-model_v4_TED01","TED novel fold AF-A0A396Z2C7-F1-model_v4_TED01"],["TED%3AAF-A0A396Z7U2-F1-model_v4_TED02","TED novel fold AF-A0A396Z7U2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2202203","Leptospira stimsonii"]]},{"id":"NCBITaxon:2202894","l":"Pseudomonas sp. RW407","na":2,"nb":1,"a":[["TED%3AAF-A0A2V2T3H1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V2T3H1-F1-model_v4_TED01"],["TED%3AAF-A0A2V2SN48-F1-model_v4_TED01","TED novel fold AF-A0A2V2SN48-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2202894","Pseudomonas sp. RW407"]]},{"id":"NCBITaxon:2203195","l":"Amycolatopsis sp. WAC 01376","na":2,"nb":1,"a":[["TED%3AAF-A0A428XAC6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A428XAC6-F1-model_v4_TED02"],["TED%3AAF-A0A428Y6H5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A428Y6H5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2203195","Amycolatopsis sp. WAC 01376"]]},{"id":"NCBITaxon:2211140","l":"Acidisarcina polymorpha","na":2,"nb":1,"a":[["TED%3AAF-A0A2Z5FS30-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z5FS30-F1-model_v4_TED01"],["TED%3AAF-A0A2Z5G280-F1-model_v4_TED03","TED novel fold AF-A0A2Z5G280-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2211140","Acidisarcina polymorpha"]]},{"id":"NCBITaxon:2212850","l":"Halosegnis rubeus","na":2,"nb":1,"a":[["TED%3AAF-A0A5N5U3N4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5N5U3N4-F1-model_v4_TED02"],["TED%3AAF-A0A5N5U6C0-F1-model_v4_TED01","TED novel fold AF-A0A5N5U6C0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2212850","Halosegnis rubeus"]]},{"id":"NCBITaxon:2219043","l":"Capsulimonas corticalis","na":2,"nb":1,"a":[["TED%3AAF-A0A402D0M5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A402D0M5-F1-model_v4_TED02"],["TED%3AAF-A0A402D2D4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A402D2D4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2219043","Capsulimonas corticalis"]]},{"id":"NCBITaxon:2219161","l":"Putridiphycobacter roseus","na":1,"nb":2,"a":[["TED%3AAF-A0A2W1NR84-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W1NR84-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1198295","Halopenitus salinus"],["NCBITaxon%3A2219161","Putridiphycobacter roseus"]]},{"id":"NCBITaxon:221988","l":"Mannheimia succiniciproducens (strain KCTC 0769BP / MBEL55E)","na":2,"nb":1,"a":[["Pfam%3APF27507","Co-chaperone DjlA transmembrane domain"],["PROSITE%3APS01335","Methylglyoxal synthase active site"]],"b":[["NCBITaxon%3A221988","[Mannheimia] succiniciproducens MBEL55E"]]},{"id":"NCBITaxon:223967","l":"Methylorubrum populi","na":1,"nb":2,"a":[["TED%3AAF-A0A161JLG1-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A161JLG1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A223967","Methylorubrum populi"],["NCBITaxon%3A441620","Methylorubrum populi BJ001"]]},{"id":"NCBITaxon:2249217","l":"Corallococcus sp. H22C18031201","na":2,"nb":1,"a":[["TED%3AAF-A0A3A5FZT0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A5FZT0-F1-model_v4_TED01"],["TED%3AAF-A0A3A5GG84-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A5GG84-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2249217","Corallococcus sp. H22C18031201"]]},{"id":"NCBITaxon:2250580","l":"Blastococcus sp. TF02A-30","na":2,"nb":1,"a":[["TED%3AAF-A0A367AA69-F1-model_v4_TED01","TED novel fold AF-A0A367AA69-F1-model_v4_TED01"],["TED%3AAF-A0A367AG13-F1-model_v4_TED02","TED novel fold AF-A0A367AG13-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2250580","Blastococcus sp. TF02A-30"]]},{"id":"NCBITaxon:2250710","l":"candidate division TA06 bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A523URQ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A523URQ4-F1-model_v4_TED01"],["TED%3AAF-A0A660SDZ3-F1-model_v4_TED01","TED novel fold AF-A0A660SDZ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2250710","candidate division TA06 bacterium"]]},{"id":"NCBITaxon:225324","l":"Enhydrobacter aerosaccus","na":1,"nb":2,"a":[["TED%3AAF-A0A1T4TCH1-F1-model_v4_TED01","TED novel fold AF-A0A1T4TCH1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A225324","Enhydrobacter aerosaccus"],["NCBITaxon%3A553217","Enhydrobacter aerosaccus SK60"]]},{"id":"NCBITaxon:225849","l":"Shewanella piezotolerans WP3","na":1,"nb":2,"a":[["TED%3AAF-B8CPC1-F1-model_v4_TED01","TED novel fold AF-B8CPC1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A404011","Shewanella piezotolerans"],["NCBITaxon%3A225849","Shewanella piezotolerans WP3"]]},{"id":"NCBITaxon:2268139","l":"Thermoproteus sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A831UYY9-F1-model_v4_TED01","TED novel fold AF-A0A831UYY9-F1-model_v4_TED01"],["TED%3AAF-A0A831V605-F1-model_v4_TED02","TED novel fold AF-A0A831V605-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2268139","Thermoproteus sp."]]},{"id":"NCBITaxon:2268195","l":"Methanomicrobia archaeon","na":2,"nb":1,"a":[["TED%3AAF-A0A7J3WNF7-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7J3WNF7-F1-model_v4_TED04"],["TED%3AAF-A0A7J3WP17-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J3WP17-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2268195","Methanomicrobia archaeon"]]},{"id":"NCBITaxon:2268202","l":"Synergistota bacterium","na":1,"nb":2,"a":[["TED%3AAF-A0A7C1DQE8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C1DQE8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A3029084","Aminithiophilus ramosus"],["NCBITaxon%3A2268202","Synergistota bacterium"]]},{"id":"NCBITaxon:227377","l":"Coxiella burnetii (strain RSA 493 / Nine Mile phase I)","na":2,"nb":1,"a":[["Pfam%3APF27266","CBUA0006 C-terminal domain"],["Pfam%3APF01548","Transposase"]],"b":[["NCBITaxon%3A227377","Coxiella burnetii RSA 493"]]},{"id":"NCBITaxon:2282215","l":"Corallincola holothuriorum","na":2,"nb":1,"a":[["TED%3AAF-A0A368NLP9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A368NLP9-F1-model_v4_TED02"],["TED%3AAF-A0A368NKW7-F1-model_v4_TED01","TED novel fold AF-A0A368NKW7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2282215","Corallincola holothuriorum"]]},{"id":"NCBITaxon:2282649","l":"Chitinophaga silvatica","na":2,"nb":1,"a":[["TED%3AAF-A0A3E1Y456-F1-model_v4_TED02","TED novel fold AF-A0A3E1Y456-F1-model_v4_TED02"],["TED%3AAF-A0A3E1YH46-F1-model_v4_TED02","TED novel fold AF-A0A3E1YH46-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2282649","Chitinophaga silvatica"]]},{"id":"NCBITaxon:2283384","l":"Psychrilyobacter sp. S5","na":2,"nb":1,"a":[["TED%3AAF-A0A369XVN8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A369XVN8-F1-model_v4_TED01"],["TED%3AAF-A0A369XXT0-F1-model_v4_TED01","TED novel fold AF-A0A369XXT0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2283384","Psychrilyobacter sp. S5"]]},{"id":"NCBITaxon:2283433","l":"Oceanispirochaeta sp. M1","na":2,"nb":1,"a":[["TED%3AAF-A0A370APH3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A370APH3-F1-model_v4_TED02"],["TED%3AAF-A0A370AU59-F1-model_v4_TED02","TED novel fold AF-A0A370AU59-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2283433","Oceanispirochaeta sp. M1"]]},{"id":"NCBITaxon:2291710","l":"Dokdonella sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A833GMB4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A833GMB4-F1-model_v4_TED02"],["TED%3AAF-A0A5C7ZRS8-F1-model_v4_TED01","TED novel fold AF-A0A5C7ZRS8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2291710","Dokdonella sp."]]},{"id":"NCBITaxon:2291814","l":"Chitinophaga silvisoli","na":2,"nb":1,"a":[["TED%3AAF-A0A3E1NS54-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3E1NS54-F1-model_v4_TED02"],["TED%3AAF-A0A3E1NMZ4-F1-model_v4_TED01","TED novel fold AF-A0A3E1NMZ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2291814","Chitinophaga silvisoli"]]},{"id":"NCBITaxon:229204","l":"Flavobacterium frigoris","na":1,"nb":2,"a":[["TED%3AAF-A0A1H9S675-F1-model_v4_TED01","TED novel fold AF-A0A1H9S675-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A229204","Flavobacterium frigoris"],["NCBITaxon%3A1086011","Flavobacterium frigoris PS1"]]},{"id":"NCBITaxon:2292277","l":"Absiella sp. AM27-20","na":2,"nb":1,"a":[["TED%3AAF-A0A417K626-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A417K626-F1-model_v4_TED02"],["TED%3AAF-A0A417K670-F1-model_v4_TED01","TED novel fold AF-A0A417K670-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292277","Absiella sp. AM27-20"]]},{"id":"NCBITaxon:2292372","l":"Ruminococcus sp. AM42-11","na":2,"nb":1,"a":[["TED%3AAF-A0A417C8A2-F1-model_v4_TED01","TED novel fold AF-A0A417C8A2-F1-model_v4_TED01"],["TED%3AAF-A0A417CUL9-F1-model_v4_TED02","TED novel fold AF-A0A417CUL9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2292372","Ruminococcus sp. AM42-11"]]},{"id":"NCBITaxon:2292702","l":"Adonisia turfae CCMR0081","na":2,"nb":1,"a":[["TED%3AAF-A0A6M0RXW6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A6M0RXW6-F1-model_v4_TED03"],["TED%3AAF-A0A6M0RJE0-F1-model_v4_TED03","TED novel fold AF-A0A6M0RJE0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2292702","Adonisia turfae CCMR0081"]]},{"id":"NCBITaxon:2292889","l":"Firmicutes bacterium AF36-3BH","na":2,"nb":1,"a":[["TED%3AAF-A0A416D5W5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A416D5W5-F1-model_v4_TED02"],["TED%3AAF-A0A416D6M6-F1-model_v4_TED01","TED novel fold AF-A0A416D6M6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292889","Firmicutes bacterium AF36-3BH"]]},{"id":"NCBITaxon:2292938","l":"Bacteroides sp. AM16-13","na":2,"nb":1,"a":[["TED%3AAF-A0A372Z677-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A372Z677-F1-model_v4_TED01"],["TED%3AAF-A0A372Z139-F1-model_v4_TED02","TED novel fold AF-A0A372Z139-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2292938","Bacteroides sp. AM16-13"]]},{"id":"NCBITaxon:2293039","l":"Clostridium sp. OF10-22XD","na":2,"nb":1,"a":[["TED%3AAF-A0A3R6XZD9-F1-model_v4_TED01","TED novel fold AF-A0A3R6XZD9-F1-model_v4_TED01"],["TED%3AAF-A0A3R6XZD9-F1-model_v4_TED02","TED novel fold AF-A0A3R6XZD9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2293039","Clostridium sp. OF10-22XD"]]},{"id":"NCBITaxon:2293112","l":"Odoribacter sp. OF09-27XD","na":2,"nb":1,"a":[["TED%3AAF-A0A7Z6S5M8-F1-model_v4_TED02","TED novel fold AF-A0A7Z6S5M8-F1-model_v4_TED02"],["TED%3AAF-A0A7Z6S656-F1-model_v4_TED01","TED novel fold AF-A0A7Z6S656-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293112","Odoribacter sp. OF09-27XD"]]},{"id":"NCBITaxon:2293138","l":"Roseburia sp. AM59-24XD","na":2,"nb":1,"a":[["TED%3AAF-A0A416HJU1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A416HJU1-F1-model_v4_TED02"],["TED%3AAF-A0A416HH95-F1-model_v4_TED01","TED novel fold AF-A0A416HH95-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293138","Roseburia sp. AM59-24XD"]]},{"id":"NCBITaxon:2293149","l":"Ruminococcus sp. AF16-50","na":2,"nb":1,"a":[["TED%3AAF-A0A373YE22-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A373YE22-F1-model_v4_TED02"],["TED%3AAF-A0A373XS09-F1-model_v4_TED01","TED novel fold AF-A0A373XS09-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293149","Ruminococcus sp. AF16-50"]]},{"id":"NCBITaxon:2293192","l":"Ruminococcus sp. AM27-16","na":2,"nb":1,"a":[["TED%3AAF-A0A417JFT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A417JFT8-F1-model_v4_TED01"],["TED%3AAF-A0A417JTB0-F1-model_v4_TED01","TED novel fold AF-A0A417JTB0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293192","Ruminococcus sp. AM27-16"]]},{"id":"NCBITaxon:2293212","l":"Ruminococcus sp. AM40-10AC","na":2,"nb":1,"a":[["TED%3AAF-A0A417DBZ7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A417DBZ7-F1-model_v4_TED02"],["TED%3AAF-A0A417DNP2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A417DNP2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2293212","Ruminococcus sp. AM40-10AC"]]},{"id":"NCBITaxon:2294117","l":"Hydrogenophaga borbori","na":2,"nb":1,"a":[["TED%3AAF-A0A372EI89-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A372EI89-F1-model_v4_TED01"],["TED%3AAF-A0A372EFE8-F1-model_v4_TED01","TED novel fold AF-A0A372EFE8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2294117","Hydrogenophaga borbori"]]},{"id":"NCBITaxon:229535","l":"Penicillium nordicum","na":2,"nb":1,"a":[["TED%3AAF-A0A0M8NW73-F1-model_v4_TED02","TED novel fold AF-A0A0M8NW73-F1-model_v4_TED02"],["TED%3AAF-A0A0N0RXF0-F1-model_v4_TED02","TED novel fold AF-A0A0N0RXF0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A229535","Penicillium nordicum"]]},{"id":"NCBITaxon:2302943","l":"Coprococcus sp. AF38-1","na":2,"nb":1,"a":[["TED%3AAF-A0A3A6JFT0-F1-model_v4_TED01","TED novel fold AF-A0A3A6JFT0-F1-model_v4_TED01"],["TED%3AAF-A0A3A6JT15-F1-model_v4_TED01","TED novel fold AF-A0A3A6JT15-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2302943","Coprococcus sp. AF38-1"]]},{"id":"NCBITaxon:2305244","l":"Lachnospiraceae bacterium OF11-28","na":2,"nb":1,"a":[["TED%3AAF-A0A373DGG0-F1-model_v4_TED04","TED novel fold AF-A0A373DGG0-F1-model_v4_TED04"],["TED%3AAF-A0A373DHI9-F1-model_v4_TED02","TED novel fold AF-A0A373DHI9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2305244","Lachnospiraceae bacterium OF11-28"]]},{"id":"NCBITaxon:230658","l":"Paraeggerthella hongkongensis","na":1,"nb":2,"a":[["TED%3AAF-A0A3N0B8S6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3N0B8S6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A230658","Paraeggerthella hongkongensis"],["NCBITaxon%3A883106","Paraeggerthella hongkongensis JCM 14552"]]},{"id":"NCBITaxon:231438","l":"Desulfoluna butyratoxydans","na":1,"nb":2,"a":[["TED%3AAF-A0A4U8YKH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8YKH3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A231438","Desulfoluna butyratoxydans"],["NCBITaxon%3A1121410","Desulfoluna butyratoxydans DSM 19427"]]},{"id":"NCBITaxon:2316717","l":"Corallococcus sp. AB032C","na":2,"nb":1,"a":[["TED%3AAF-A0A3A8RDS8-F1-model_v4_TED01","TED novel fold AF-A0A3A8RDS8-F1-model_v4_TED01"],["TED%3AAF-A0A3A8RT77-F1-model_v4_TED01","TED novel fold AF-A0A3A8RT77-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2316717","Corallococcus sp. AB032C"]]},{"id":"NCBITaxon:2316729","l":"Corallococcus sp. CA047B","na":2,"nb":1,"a":[["TED%3AAF-A0A3A8KNN0-F1-model_v4_TED01","TED novel fold AF-A0A3A8KNN0-F1-model_v4_TED01"],["TED%3AAF-A0A3A8LNW8-F1-model_v4_TED01","TED novel fold AF-A0A3A8LNW8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2316729","Corallococcus sp. CA047B"]]},{"id":"NCBITaxon:2316733","l":"Corallococcus terminator","na":2,"nb":1,"a":[["TED%3AAF-A0A3A8HRF7-F1-model_v4_TED01","TED novel fold AF-A0A3A8HRF7-F1-model_v4_TED01"],["TED%3AAF-A0A3A8IT11-F1-model_v4_TED02","TED novel fold AF-A0A3A8IT11-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2316733","Corallococcus terminator"]]},{"id":"NCBITaxon:2316736","l":"Corallococcus exercitus","na":2,"nb":1,"a":[["TED%3AAF-A0A3A8IA29-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3A8IA29-F1-model_v4_TED02"],["TED%3AAF-A0A7Y4KNC0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4KNC0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2316736","Corallococcus exercitus"]]},{"id":"NCBITaxon:2320","l":"Methanopyrus kandleri","na":1,"nb":2,"a":[["TED%3AAF-A0A832SV77-F1-model_v4_TED01","TED novel fold AF-A0A832SV77-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2320","Methanopyrus kandleri"],["NCBITaxon%3A190192","Methanopyrus kandleri AV19"]]},{"id":"NCBITaxon:2320082","l":"Anaerotruncus sp. 1XD22-93","na":2,"nb":1,"a":[["TED%3AAF-A0A3A9HP33-F1-model_v4_TED01","TED novel fold AF-A0A3A9HP33-F1-model_v4_TED01"],["TED%3AAF-A0A3A9IJ99-F1-model_v4_TED01","TED novel fold AF-A0A3A9IJ99-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2320082","Anaerotruncus sp. 1XD22-93"]]},{"id":"NCBITaxon:2320083","l":"Butyricicoccus sp. 1XD8-22","na":2,"nb":1,"a":[["TED%3AAF-A0A658JJ02-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A658JJ02-F1-model_v4_TED01"],["TED%3AAF-A0A658JQH2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A658JQH2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2320083","Butyricicoccus sp. 1XD8-22"]]},{"id":"NCBITaxon:2320098","l":"bacterium D16-59","na":2,"nb":1,"a":[["TED%3AAF-A0A3A8WF47-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A8WF47-F1-model_v4_TED01"],["TED%3AAF-A0A3A8W6I2-F1-model_v4_TED01","TED novel fold AF-A0A3A8W6I2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2320098","bacterium D16-59"]]},{"id":"NCBITaxon:2320104","l":"bacterium D16-54","na":2,"nb":1,"a":[["TED%3AAF-A0A3A9B720-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3A9B720-F1-model_v4_TED03"],["TED%3AAF-A0A3A9B8X8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3A9B8X8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2320104","bacterium D16-54"]]},{"id":"NCBITaxon:2320113","l":"bacterium 1xD42-87","na":2,"nb":1,"a":[["TED%3AAF-A0A3A8ZZW8-F1-model_v4_TED01","TED novel fold AF-A0A3A8ZZW8-F1-model_v4_TED01"],["TED%3AAF-A0A3A9AH75-F1-model_v4_TED01","TED novel fold AF-A0A3A9AH75-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2320113","bacterium 1xD42-87"]]},{"id":"NCBITaxon:2321229","l":"Salinisphaera sp. Q1T1-3","na":2,"nb":1,"a":[["TED%3AAF-A0A3A5J4I3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A5J4I3-F1-model_v4_TED01"],["TED%3AAF-A0A3A5J6V3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A5J6V3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2321229","Salinisphaera sp. Q1T1-3"]]},{"id":"NCBITaxon:232991","l":"Dulcicalothrix desertica PCC 7102","na":1,"nb":2,"a":[["TED%3AAF-A0A433V699-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A433V699-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A32056","Dulcicalothrix desertica"],["NCBITaxon%3A232991","Dulcicalothrix desertica PCC 7102"]]},{"id":"NCBITaxon:2340915","l":"Pseudonocardiaceae bacterium YIM PH 21723","na":2,"nb":1,"a":[["TED%3AAF-A0A419HNW7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A419HNW7-F1-model_v4_TED01"],["TED%3AAF-A0A419HTD5-F1-model_v4_TED01","TED novel fold AF-A0A419HTD5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2340915","Pseudonocardiaceae bacterium YIM PH 21723"]]},{"id":"NCBITaxon:2341083","l":"Mycobacterium innocens","na":2,"nb":1,"a":[["TED%3AAF-A0A498PW13-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A498PW13-F1-model_v4_TED02"],["TED%3AAF-A0A498QDL9-F1-model_v4_TED01","TED novel fold AF-A0A498QDL9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2341083","Mycobacterium innocens"]]},{"id":"NCBITaxon:234267","l":"Candidatus Solibacter usitatus Ellin6076","na":2,"nb":1,"a":[["TED%3AAF-Q01YB9-F1-model_v4_TED05","TED highly-symmetric fold AF-Q01YB9-F1-model_v4_TED05"],["TED%3AAF-Q02DA0-F1-model_v4_TED01","TED highly-symmetric fold AF-Q02DA0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A234267","Candidatus Solibacter usitatus Ellin6076"]]},{"id":"NCBITaxon:2358456","l":"Nitrospinaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A836WQD9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A836WQD9-F1-model_v4_TED03"],["TED%3AAF-A0A836X0F7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A836X0F7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2358456","Nitrospinaceae bacterium"]]},{"id":"NCBITaxon:2382230","l":"Bacteroidetes/Chlorobi group bacterium ChocPot Mid","na":2,"nb":1,"a":[["TED%3AAF-A0A3N0ZFG1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3N0ZFG1-F1-model_v4_TED02"],["TED%3AAF-A0A3N0ZUN4-F1-model_v4_TED01","TED novel fold AF-A0A3N0ZUN4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2382230","Bacteroidetes/Chlorobi group bacterium ChocPot_Mid"]]},{"id":"NCBITaxon:240292","l":"Trichormus variabilis ATCC 29413","na":2,"nb":1,"a":[["Pfam%3APF18921","Cyanophycin synthase-like N-terminal domain"],["Pfam%3APF13619","KTSC domain"]],"b":[["NCBITaxon%3A240292","Trichormus variabilis ATCC 29413"]]},{"id":"NCBITaxon:240840","l":"Actinomadura meyerae","na":1,"nb":2,"a":[["TED%3AAF-A0A239ML85-F1-model_v4_TED01","TED novel fold AF-A0A239ML85-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A240840","Actinomadura meyerae"],["NCBITaxon%3A1989","Actinomadura sp."]]},{"id":"NCBITaxon:2419771","l":"Gryllotalpicola protaetiae","na":2,"nb":1,"a":[["TED%3AAF-A0A387BPP1-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A387BPP1-F1-model_v4_TED06"],["TED%3AAF-A0A387BR07-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A387BR07-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2419771","Gryllotalpicola protaetiae"]]},{"id":"NCBITaxon:2420334","l":"Thermoflexia bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A3M1DIA7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M1DIA7-F1-model_v4_TED01"],["TED%3AAF-A0A7C3BR60-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7C3BR60-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2420334","Thermoflexia bacterium"]]},{"id":"NCBITaxon:243160","l":"Burkholderia mallei ATCC 23344","na":1,"nb":2,"a":[["PROSITE%3APS01306","Uncharacterized protein family UPF0054 signature"]],"b":[["NCBITaxon%3A13373","Burkholderia mallei"],["NCBITaxon%3A243160","Burkholderia mallei ATCC 23344"]]},{"id":"NCBITaxon:243164","l":"Dehalococcoides mccartyi 195","na":1,"nb":2,"a":[["Pfam%3APF13486","Reductive dehalogenase subunit"]],"b":[["NCBITaxon%3A61435","Dehalococcoides mccartyi"],["NCBITaxon%3A243164","Dehalococcoides mccartyi 195"]]},{"id":"NCBITaxon:244734","l":"Bradyrhizobium betae","na":2,"nb":1,"a":[["TED%3AAF-A0A4Q1V2G1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q1V2G1-F1-model_v4_TED01"],["TED%3AAF-A0A5P6PEJ6-F1-model_v4_TED02","TED novel fold AF-A0A5P6PEJ6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A244734","Bradyrhizobium betae"]]},{"id":"NCBITaxon:247156","l":"Nocardia farcinica IFM 10152","na":2,"nb":1,"a":[["Pfam%3APF19288","CofH/MqnC C-terminal region"],["Pfam%3APF17645","Arylmalonate decarboxylase"]],"b":[["NCBITaxon%3A247156","Nocardia farcinica IFM 10152"]]},{"id":"NCBITaxon:247639","l":"marine gamma proteobacterium HTCC2080","na":2,"nb":1,"a":[["TED%3AAF-A0Z244-F1-model_v4_TED01","TED highly-symmetric fold AF-A0Z244-F1-model_v4_TED01"],["TED%3AAF-A0Z9H5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0Z9H5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A247639","marine gamma proteobacterium HTCC2080"]]},{"id":"NCBITaxon:2480821","l":"Desulfurococcales archaeon","na":2,"nb":1,"a":[["TED%3AAF-A0A6B2C9E3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6B2C9E3-F1-model_v4_TED01"],["TED%3AAF-A0A6B2C2J7-F1-model_v4_TED02","TED novel fold AF-A0A6B2C2J7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2480821","Desulfurococcales archaeon"]]},{"id":"NCBITaxon:2483361","l":"Nocardia stercoris","na":2,"nb":1,"a":[["TED%3AAF-A0A3M2L9W7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M2L9W7-F1-model_v4_TED01"],["TED%3AAF-A0A3M2LHY4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M2LHY4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2483361","Nocardia stercoris"]]},{"id":"NCBITaxon:2484932","l":"Leptospira congkakensis","na":2,"nb":1,"a":[["TED%3AAF-A0A4Z1A446-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Z1A446-F1-model_v4_TED01"],["TED%3AAF-A0A4Z1AB08-F1-model_v4_TED02","TED novel fold AF-A0A4Z1AB08-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2484932","Leptospira congkakensis"]]},{"id":"NCBITaxon:2484943","l":"Leptospira sarikeiensis","na":2,"nb":1,"a":[["TED%3AAF-A0A4R9K5P5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R9K5P5-F1-model_v4_TED01"],["TED%3AAF-A0A4R9K578-F1-model_v4_TED01","TED novel fold AF-A0A4R9K578-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2484943","Leptospira sarikeiensis"]]},{"id":"NCBITaxon:2485163","l":"","na":2,"nb":1,"a":[["TED%3AAF-A0A4R7A0H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R7A0H4-F1-model_v4_TED01"],["TED%3AAF-A0A4R7AGM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R7AGM3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2485163","Methylocaldum gracile subsp. desertum"]]},{"id":"NCBITaxon:2486460","l":"Muribaculaceae bacterium Isolate-036 (Harlan)","na":2,"nb":1,"a":[["TED%3AAF-A0A3N2KHW4-F1-model_v4_TED02","TED novel fold AF-A0A3N2KHW4-F1-model_v4_TED02"],["TED%3AAF-A0A3N2KJH8-F1-model_v4_TED05","TED novel fold AF-A0A3N2KJH8-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2486460","Muribaculaceae bacterium Isolate-036 (Harlan)"]]},{"id":"NCBITaxon:2487118","l":"Intestinibaculum porci","na":2,"nb":1,"a":[["TED%3AAF-A0A3G9JNW8-F1-model_v4_TED02","TED novel fold AF-A0A3G9JNW8-F1-model_v4_TED02"],["TED%3AAF-A0A3G9JSX0-F1-model_v4_TED04","TED novel fold AF-A0A3G9JSX0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2487118","Intestinibaculum porci"]]},{"id":"NCBITaxon:2487930","l":"Aureibaculum marinum","na":2,"nb":1,"a":[["TED%3AAF-A0A3N4PIZ4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3N4PIZ4-F1-model_v4_TED02"],["TED%3AAF-A0A3N4NH22-F1-model_v4_TED01","TED novel fold AF-A0A3N4NH22-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2487930","Aureibaculum marinum"]]},{"id":"NCBITaxon:2493089","l":"Pseudoxanthomonas sp. SGD-10","na":2,"nb":1,"a":[["TED%3AAF-A0A3R8MHB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R8MHB9-F1-model_v4_TED01"],["TED%3AAF-A0A426H7W6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A426H7W6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2493089","Pseudoxanthomonas sp. SGD-10"]]},{"id":"NCBITaxon:2494234","l":"Sutterella megalosphaeroides","na":2,"nb":1,"a":[["TED%3AAF-A0A2Z6IAM8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z6IAM8-F1-model_v4_TED01"],["TED%3AAF-A0A2Z6ICR4-F1-model_v4_TED02","TED novel fold AF-A0A2Z6ICR4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2494234","Sutterella megalosphaeroides"]]},{"id":"NCBITaxon:2497860","l":"Cellulosilyticum sp. WCF-2","na":2,"nb":1,"a":[["TED%3AAF-A0A5B9YI52-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5B9YI52-F1-model_v4_TED02"],["TED%3AAF-A0A5B9YJ63-F1-model_v4_TED01","TED novel fold AF-A0A5B9YJ63-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2497860","Cellulosilyticum sp. WCF-2"]]},{"id":"NCBITaxon:2498109","l":"Legionella septentrionalis","na":2,"nb":1,"a":[["TED%3AAF-A0A433JGA1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A433JGA1-F1-model_v4_TED01"],["TED%3AAF-A0A433JI74-F1-model_v4_TED02","TED novel fold AF-A0A433JI74-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2498109","Legionella septentrionalis"]]},{"id":"NCBITaxon:2499851","l":"Inhella crocodyli","na":2,"nb":1,"a":[["TED%3AAF-A0A437LTL6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A437LTL6-F1-model_v4_TED03"],["TED%3AAF-A0A437LTG8-F1-model_v4_TED04","TED novel fold AF-A0A437LTG8-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2499851","Inhella crocodyli"]]},{"id":"NCBITaxon:2502994","l":"Fusarium odoratissimum","na":1,"nb":2,"a":[["TED%3AAF-N1SAH4-F1-model_v4_TED01","TED highly-symmetric fold AF-N1SAH4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2502994","Fusarium odoratissimum"],["NCBITaxon%3A1089451","Fusarium odoratissimum NRRL 54006"]]},{"id":"NCBITaxon:2507584","l":"Enterobacteriaceae bacterium ML5","na":2,"nb":1,"a":[["TED%3AAF-A0A4S3LMQ9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4S3LMQ9-F1-model_v4_TED02"],["TED%3AAF-A0A4S3LL88-F1-model_v4_TED01","TED novel fold AF-A0A4S3LL88-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2507584","Enterobacteriaceae bacterium ML5"]]},{"id":"NCBITaxon:2508720","l":"Oleiharenicola lentus","na":2,"nb":1,"a":[["TED%3AAF-A0A4Q1C7Q2-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A4Q1C7Q2-F1-model_v4_TED04"],["TED%3AAF-A0A4Q1C4T5-F1-model_v4_TED01","TED novel fold AF-A0A4Q1C4T5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2508720","Oleiharenicola lentus"]]},{"id":"NCBITaxon:2508868","l":"Puniceicoccaceae bacterium 5H","na":2,"nb":1,"a":[["TED%3AAF-A0A6N6Z537-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N6Z537-F1-model_v4_TED01"],["TED%3AAF-A0A6N6ZFX7-F1-model_v4_TED01","TED novel fold AF-A0A6N6ZFX7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2508868","Puniceicoccaceae bacterium 5H"]]},{"id":"NCBITaxon:2508949","l":"Candidatus Borkfalkia ceftriaxoniphila","na":2,"nb":1,"a":[["TED%3AAF-A0A4Q2KDG3-F1-model_v4_TED01","TED novel fold AF-A0A4Q2KDG3-F1-model_v4_TED01"],["TED%3AAF-A0A4Q2KFX3-F1-model_v4_TED02","TED novel fold AF-A0A4Q2KFX3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2508949","Candidatus Borkfalkia ceftriaxoniphila"]]},{"id":"NCBITaxon:2508984","l":"Candidatus Saccharicenans subterraneum","na":2,"nb":1,"a":[["TED%3AAF-A0A3E2BK72-F1-model_v4_TED02","TED novel fold AF-A0A3E2BK72-F1-model_v4_TED02"],["TED%3AAF-A0A3E2BKL4-F1-model_v4_TED03","TED novel fold AF-A0A3E2BKL4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2508984","Candidatus Saccharicenans subterraneus"]]},{"id":"NCBITaxon:2510335","l":"Parvularculaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A520R213-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A520R213-F1-model_v4_TED01"],["TED%3AAF-A0A850SW22-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A850SW22-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2510335","Parvularculaceae bacterium"]]},{"id":"NCBITaxon:2510978","l":"Amycolatopsis suaedae","na":2,"nb":1,"a":[["TED%3AAF-A0A4Q7J3A7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q7J3A7-F1-model_v4_TED01"],["TED%3AAF-A0A4Q7JEK5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q7JEK5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2510978","Amycolatopsis suaedae"]]},{"id":"NCBITaxon:2511932","l":"Marine Group I thaumarchaeote","na":2,"nb":1,"a":[["TED%3AAF-A0A7K4NKP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K4NKP7-F1-model_v4_TED01"],["TED%3AAF-A0A7K4MWS9-F1-model_v4_TED01","TED novel fold AF-A0A7K4MWS9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2511932","Marine Group I thaumarchaeote"]]},{"id":"NCBITaxon:2512159","l":"Streptomyces sp. BK447","na":2,"nb":1,"a":[["TED%3AAF-A0A4R7JEY7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R7JEY7-F1-model_v4_TED01"],["TED%3AAF-A0A4R7IPA9-F1-model_v4_TED02","TED novel fold AF-A0A4R7IPA9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2512159","Streptomyces sp. BK447"]]},{"id":"NCBITaxon:2512241","l":"Xylaria flabelliformis","na":2,"nb":1,"a":[["TED%3AAF-A0A553I0L4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A553I0L4-F1-model_v4_TED01"],["TED%3AAF-A0A553HY53-F1-model_v4_TED01","TED novel fold AF-A0A553HY53-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2512241","Xylaria flabelliformis"]]},{"id":"NCBITaxon:2517205","l":"Candidatus Methanomethylophilaceae archaeon","na":2,"nb":1,"a":[["TED%3AAF-A0A843E6Q0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843E6Q0-F1-model_v4_TED01"],["TED%3AAF-A0A843IVX5-F1-model_v4_TED02","TED novel fold AF-A0A843IVX5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2517205","Candidatus Methanomethylophilaceae archaeon"]]},{"id":"NCBITaxon:2517210","l":"Candidatus Brocadiia bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A849WI07-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A849WI07-F1-model_v4_TED01"],["TED%3AAF-A0A849WG49-F1-model_v4_TED01","TED novel fold AF-A0A849WG49-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2517210","Candidatus Brocadiia bacterium"]]},{"id":"NCBITaxon:2518612","l":"Candidatus Nanopelagicales bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A871YDM5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A871YDM5-F1-model_v4_TED01"],["TED%3AAF-A0A871YC05-F1-model_v4_TED03","TED novel fold AF-A0A871YC05-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2518612","Candidatus Nanopelagicales bacterium"]]},{"id":"NCBITaxon:2518622","l":"Methyloglobulus sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A849V6M6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A849V6M6-F1-model_v4_TED01"],["TED%3AAF-A0A849V4F6-F1-model_v4_TED01","TED novel fold AF-A0A849V4F6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2518622","Methyloglobulus sp."]]},{"id":"NCBITaxon:2518971","l":"Duncaniella dubosii","na":2,"nb":1,"a":[["TED%3AAF-A0A4P7W4N7-F1-model_v4_TED01","TED novel fold AF-A0A4P7W4N7-F1-model_v4_TED01"],["TED%3AAF-A0A4V1D356-F1-model_v4_TED01","TED novel fold AF-A0A4V1D356-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2518971","Duncaniella dubosii"]]},{"id":"NCBITaxon:2527974","l":"Tautonia plasticadhaerens","na":2,"nb":1,"a":[["TED%3AAF-A0A518HEF3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A518HEF3-F1-model_v4_TED01"],["TED%3AAF-A0A518H506-F1-model_v4_TED03","TED novel fold AF-A0A518H506-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2527974","Tautonia plasticadhaerens"]]},{"id":"NCBITaxon:2527994","l":"Thalassoglobus polymorphus","na":2,"nb":1,"a":[["TED%3AAF-A0A517QH44-F1-model_v4_TED08","TED highly-symmetric fold AF-A0A517QH44-F1-model_v4_TED08"],["TED%3AAF-A0A517QHS7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A517QHS7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2527994","Thalassoglobus polymorphus"]]},{"id":"NCBITaxon:2527995","l":"Symmachiella dynata","na":2,"nb":1,"a":[["TED%3AAF-A0A517ZUQ7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A517ZUQ7-F1-model_v4_TED02"],["TED%3AAF-A0A517ZU26-F1-model_v4_TED01","TED novel fold AF-A0A517ZU26-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2527995","Symmachiella dynata"]]},{"id":"NCBITaxon:2527996","l":"Crateriforma conspicua","na":2,"nb":1,"a":[["TED%3AAF-A0A5C6FJ16-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C6FJ16-F1-model_v4_TED01"],["TED%3AAF-A0A5C6FR39-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C6FR39-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2527996","Crateriforma conspicua"]]},{"id":"NCBITaxon:2528010","l":"Lignipirellula cremea","na":2,"nb":1,"a":[["TED%3AAF-A0A518DL57-F1-model_v4_TED03","TED novel fold AF-A0A518DL57-F1-model_v4_TED03"],["TED%3AAF-A0A518DQB4-F1-model_v4_TED02","TED novel fold AF-A0A518DQB4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2528010","Lignipirellula cremea"]]},{"id":"NCBITaxon:2528018","l":"Planctomycetes bacterium Poly30","na":2,"nb":1,"a":[["TED%3AAF-A0A518EV70-F1-model_v4_TED02","TED novel fold AF-A0A518EV70-F1-model_v4_TED02"],["TED%3AAF-A0A518EWJ0-F1-model_v4_TED02","TED novel fold AF-A0A518EWJ0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2528018","Saltatorellus ferox"]]},{"id":"NCBITaxon:2528022","l":"Botrimarina mediterranea","na":2,"nb":1,"a":[["TED%3AAF-A0A518K7W0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A518K7W0-F1-model_v4_TED02"],["TED%3AAF-A0A518K645-F1-model_v4_TED02","TED novel fold AF-A0A518K645-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2528022","Botrimarina mediterranea"]]},{"id":"NCBITaxon:2528024","l":"Lacipirellula limnantheis","na":2,"nb":1,"a":[["TED%3AAF-A0A517TZ88-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A517TZ88-F1-model_v4_TED02"],["TED%3AAF-A0A517U4L3-F1-model_v4_TED01","TED novel fold AF-A0A517U4L3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528024","Lacipirellula limnantheis"]]},{"id":"NCBITaxon:2528026","l":"Maioricimonas rarisocia","na":2,"nb":1,"a":[["TED%3AAF-A0A517ZC53-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A517ZC53-F1-model_v4_TED03"],["TED%3AAF-A0A517Z0R0-F1-model_v4_TED01","TED novel fold AF-A0A517Z0R0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528026","Maioricimonas rarisocia"]]},{"id":"NCBITaxon:2528034","l":"Phycisphaerae bacterium RAS1","na":2,"nb":1,"a":[["TED%3AAF-A0A5C5VSG7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C5VSG7-F1-model_v4_TED01"],["TED%3AAF-A0A5C5W2Y3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C5W2Y3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528034","Phycisphaerae bacterium RAS1"]]},{"id":"NCBITaxon:2528041","l":"Methanomassiliicoccus sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A843AYI4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843AYI4-F1-model_v4_TED01"],["TED%3AAF-A0A524I1X9-F1-model_v4_TED01","TED novel fold AF-A0A524I1X9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528041","Methanomassiliicoccus sp."]]},{"id":"NCBITaxon:2528593","l":"Zhaonella formicivorans","na":2,"nb":1,"a":[["TED%3AAF-A0A4R5JND7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R5JND7-F1-model_v4_TED01"],["TED%3AAF-A0A4R5JLL6-F1-model_v4_TED02","TED novel fold AF-A0A4R5JLL6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2528593","Zhaonella formicivorans"]]},{"id":"NCBITaxon:2528971","l":"Azotobacter chroococcum subsp. isscasi","na":1,"nb":2,"a":[["TED%3AAF-A0A4Q9UQR6-F1-model_v4_TED01","TED novel fold AF-A0A4Q9UQR6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A353","Azotobacter chroococcum"],["NCBITaxon%3A2528971","Azotobacter chroococcum subsp. isscasi"]]},{"id":"NCBITaxon:2530339","l":"Tenacibaculum sp. M341","na":2,"nb":1,"a":[["TED%3AAF-A0A4R1AGJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R1AGJ9-F1-model_v4_TED01"],["TED%3AAF-A0A4R1AG26-F1-model_v4_TED01","TED novel fold AF-A0A4R1AG26-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2530339","Tenacibaculum sp. M341"]]},{"id":"NCBITaxon:2530368","l":"Actinomadura rubrisoli","na":2,"nb":1,"a":[["TED%3AAF-A0A4R5AC84-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R5AC84-F1-model_v4_TED01"],["TED%3AAF-A0A4R4ZYW4-F1-model_v4_TED02","TED novel fold AF-A0A4R4ZYW4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2530368","Actinomadura rubrisoli"]]},{"id":"NCBITaxon:2530391","l":"Duncaniella freteri","na":2,"nb":1,"a":[["TED%3AAF-A0A4Z0V1A0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Z0V1A0-F1-model_v4_TED01"],["TED%3AAF-A0A4Z0VA30-F1-model_v4_TED03","TED novel fold AF-A0A4Z0VA30-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2530391","Duncaniella freteri"]]},{"id":"NCBITaxon:253239","l":"Ethanoligenens harbinense","na":1,"nb":2,"a":[["TED%3AAF-A0A386XVY3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A386XVY3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A253239","Ethanoligenens harbinense"],["NCBITaxon%3A663278","Ethanoligenens harbinense YUAN-3"]]},{"id":"NCBITaxon:2547395","l":"Paenibacillus piri","na":2,"nb":1,"a":[["TED%3AAF-A0A4V2ZS36-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A4V2ZS36-F1-model_v4_TED03"],["TED%3AAF-A0A4R5KXP2-F1-model_v4_TED02","TED novel fold AF-A0A4R5KXP2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2547395","Paenibacillus piri"]]},{"id":"NCBITaxon:255616","l":"Haloferax sulfurifontis","na":1,"nb":2,"a":[["TED%3AAF-A0A830E6F0-F1-model_v4_TED02","TED novel fold AF-A0A830E6F0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A255616","Haloferax sulfurifontis"],["NCBITaxon%3A662480","Haloferax sulfurifontis ATCC BAA-897"]]},{"id":"NCBITaxon:2558278","l":"Barnesiella sp. WM24","na":2,"nb":1,"a":[["TED%3AAF-A0A4Y9IUV5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y9IUV5-F1-model_v4_TED01"],["TED%3AAF-A0A4Y9J2S8-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A4Y9J2S8-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2558278","Barnesiella sp. WM24"]]},{"id":"NCBITaxon:2565572","l":"Parasutterella muris","na":1,"nb":2,"a":[["TED%3AAF-A0A6L6YGF5-F1-model_v4_TED01","TED novel fold AF-A0A6L6YGF5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A487175","Parasutterella excrementihominis"],["NCBITaxon%3A2565572","Parasutterella muris"]]},{"id":"NCBITaxon:2571105","l":"Pseudomonas nicosulfuronedens","na":2,"nb":1,"a":[["TED%3AAF-A0A5R9RAI5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5R9RAI5-F1-model_v4_TED01"],["TED%3AAF-A0A5R9QPW4-F1-model_v4_TED02","TED novel fold AF-A0A5R9QPW4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2571105","Pseudomonas nicosulfuronedens"]]},{"id":"NCBITaxon:257314","l":"","na":2,"nb":1,"a":[["Pfam%3APF10439","Bacteriocin class II with double-glycine leader peptide"],["Pfam%3APF02435","Levansucrase/Invertase"]],"b":[["NCBITaxon%3A257314","Lactobacillus johnsonii NCC 533"]]},{"id":"NCBITaxon:257363","l":"Rickettsia typhi str. Wilmington","na":1,"nb":2,"a":[["Pfam%3APF12334","Rickettsia outer membrane protein B, passenger domain"]],"b":[["NCBITaxon%3A785","Rickettsia typhi"],["NCBITaxon%3A257363","Rickettsia typhi str. Wilmington"]]},{"id":"NCBITaxon:2583808","l":"Aggregicoccus sp. 17bor-14","na":2,"nb":1,"a":[["TED%3AAF-A0A6I2GV38-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A6I2GV38-F1-model_v4_TED04"],["TED%3AAF-A0A6I2GU45-F1-model_v4_TED01","TED novel fold AF-A0A6I2GU45-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2583808","Aggregicoccus sp. 17bor-14"]]},{"id":"NCBITaxon:2585211","l":"Mumia zhuanghuii","na":1,"nb":2,"a":[["TED%3AAF-A0A5Q6S068-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Q6S068-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A706184","Flavobacterium anseonense"],["NCBITaxon%3A2585211","Mumia zhuanghuii"]]},{"id":"NCBITaxon:2589807","l":"Rhizobium glycinendophyticum","na":2,"nb":1,"a":[["TED%3AAF-A0A504UB93-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A504UB93-F1-model_v4_TED01"],["TED%3AAF-A0A504UAL4-F1-model_v4_TED01","TED novel fold AF-A0A504UAL4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2589807","Peteryoungia glycinendophytica"]]},{"id":"NCBITaxon:2590453","l":"Myxococcus llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogochensis","na":2,"nb":1,"a":[["TED%3AAF-A0A540WM48-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A540WM48-F1-model_v4_TED01"],["TED%3AAF-A0A540WRD7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A540WRD7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2590453","Myxococcus llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogochensis"]]},{"id":"NCBITaxon:2591008","l":"Exilibacterium tricleocarpae","na":2,"nb":1,"a":[["TED%3AAF-A0A545ST62-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A545ST62-F1-model_v4_TED01"],["TED%3AAF-A0A545TKA2-F1-model_v4_TED01","TED novel fold AF-A0A545TKA2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2591008","Exilibacterium tricleocarpae"]]},{"id":"NCBITaxon:2591009","l":"Denitrobaculum tricleocarpae","na":2,"nb":1,"a":[["TED%3AAF-A0A545T098-F1-model_v4_TED01","TED novel fold AF-A0A545T098-F1-model_v4_TED01"],["TED%3AAF-A0A545TF96-F1-model_v4_TED03","TED novel fold AF-A0A545TF96-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2591009","Denitrobaculum tricleocarpae"]]},{"id":"NCBITaxon:2591038","l":"Moraxellaceae bacterium AER2 44 116","na":2,"nb":1,"a":[["TED%3AAF-A0A507W977-F1-model_v4_TED02","TED novel fold AF-A0A507W977-F1-model_v4_TED02"],["TED%3AAF-A0A507WBL5-F1-model_v4_TED03","TED novel fold AF-A0A507WBL5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2591038","Moraxellaceae bacterium AER2_44_116"]]},{"id":"NCBITaxon:259564","l":"Methanococcoides burtonii DSM 6242","na":1,"nb":2,"a":[["TED%3AAF-Q12W09-F1-model_v4_TED02","TED novel fold AF-Q12W09-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29291","Methanococcoides burtonii"],["NCBITaxon%3A259564","Methanococcoides burtonii DSM 6242"]]},{"id":"NCBITaxon:2596890","l":"Uabimicrobium amorphum","na":2,"nb":1,"a":[["TED%3AAF-A0A5S9IPI8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5S9IPI8-F1-model_v4_TED02"],["TED%3AAF-A0A5S9ISU6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A5S9ISU6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2596890","Candidatus Uabimicrobium amorphum"]]},{"id":"NCBITaxon:2597660","l":"Tomitella fengzijianii","na":2,"nb":1,"a":[["TED%3AAF-A0A516X5Q7-F1-model_v4_TED02","TED novel fold AF-A0A516X5Q7-F1-model_v4_TED02"],["TED%3AAF-A0A516X678-F1-model_v4_TED01","TED novel fold AF-A0A516X678-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2597660","Tomitella fengzijianii"]]},{"id":"NCBITaxon:2597822","l":"Rariglobus hedericola","na":2,"nb":1,"a":[["TED%3AAF-A0A556QRP6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A556QRP6-F1-model_v4_TED01"],["TED%3AAF-A0A556QSH2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A556QSH2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2597822","Rariglobus hedericola"]]},{"id":"NCBITaxon:2600176","l":"Lujinxingia vulgaris","na":2,"nb":1,"a":[["TED%3AAF-A0A5C6XAT5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5C6XAT5-F1-model_v4_TED02"],["TED%3AAF-A0A5C6XBF3-F1-model_v4_TED02","TED novel fold AF-A0A5C6XBF3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2600176","Lujinxingia vulgaris"]]},{"id":"NCBITaxon:2600580","l":"Hepatocystis sp. ex Piliocolobus tephrosceles","na":2,"nb":1,"a":[["TED%3AAF-A0A653H884-F1-model_v4_TED01","TED novel fold AF-A0A653H884-F1-model_v4_TED01"],["TED%3AAF-A0A653HMD1-F1-model_v4_TED01","TED novel fold AF-A0A653HMD1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2600580","Hepatocystis sp. ex Piliocolobus tephrosceles"]]},{"id":"NCBITaxon:2601267","l":"Sphingorhabdus soli","na":2,"nb":1,"a":[["TED%3AAF-A0A5C6U8M3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C6U8M3-F1-model_v4_TED01"],["TED%3AAF-A0A5C6U7V0-F1-model_v4_TED03","TED novel fold AF-A0A5C6U7V0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2601267","Flavisphingopyxis soli"]]},{"id":"NCBITaxon:2601894","l":"Halioglobus maricola","na":2,"nb":1,"a":[["TED%3AAF-A0A5P9NEZ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5P9NEZ2-F1-model_v4_TED01"],["TED%3AAF-A0A5P9NHU7-F1-model_v4_TED02","TED novel fold AF-A0A5P9NHU7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2601894","Halioglobus maricola"]]},{"id":"NCBITaxon:2601898","l":"Noviherbaspirillum sp. UKPF54","na":2,"nb":1,"a":[["TED%3AAF-A0A5B8N2S3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B8N2S3-F1-model_v4_TED01"],["TED%3AAF-A0A5B8NAF3-F1-model_v4_TED01","TED novel fold AF-A0A5B8NAF3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2601898","Noviherbaspirillum sp. UKPF54"]]},{"id":"NCBITaxon:2604466","l":"Nonomuraea sp. PA05","na":2,"nb":1,"a":[["TED%3AAF-A0A5D0QGF6-F1-model_v4_TED01","TED novel fold AF-A0A5D0QGF6-F1-model_v4_TED01"],["TED%3AAF-A0A5D0QRZ7-F1-model_v4_TED02","TED novel fold AF-A0A5D0QRZ7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2604466","Nonomuraea sp. PA05"]]},{"id":"NCBITaxon:2605778","l":"Clostridium porci","na":2,"nb":1,"a":[["TED%3AAF-A0A7X2NKU0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7X2NKU0-F1-model_v4_TED04"],["TED%3AAF-A0A7X2NLE6-F1-model_v4_TED02","TED novel fold AF-A0A7X2NLE6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2605778","Clostridium porci"]]},{"id":"NCBITaxon:2605780","l":"Collinsella sp. WCA1-178-WT-3 (M2)","na":1,"nb":2,"a":[["TED%3AAF-A0A6A8M6A3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A8M6A3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A74426","Collinsella aerofaciens"],["NCBITaxon%3A2605780","Collinsella sp. WCA1-178-WT-3 (M2)"]]},{"id":"NCBITaxon:2605989","l":"Gimesia chilikensis","na":2,"nb":1,"a":[["TED%3AAF-A0A517WDA1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A517WDA1-F1-model_v4_TED01"],["TED%3AAF-A0A517WJP8-F1-model_v4_TED01","TED novel fold AF-A0A517WJP8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2605989","Gimesia chilikensis"]]},{"id":"NCBITaxon:2606626","l":"Sodaliphilus pleomorphus","na":2,"nb":1,"a":[["TED%3AAF-A0A6L5XH57-F1-model_v4_TED03","TED novel fold AF-A0A6L5XH57-F1-model_v4_TED03"],["TED%3AAF-A0A6L5XH76-F1-model_v4_TED01","TED novel fold AF-A0A6L5XH76-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2606626","Sodaliphilus pleomorphus"]]},{"id":"NCBITaxon:2607326","l":"Streptomonospora sp. PA3","na":2,"nb":1,"a":[["TED%3AAF-A0A6N8GAL7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8GAL7-F1-model_v4_TED01"],["TED%3AAF-A0A6N8GG78-F1-model_v4_TED01","TED novel fold AF-A0A6N8GG78-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607326","Streptomonospora sp. PA3"]]},{"id":"NCBITaxon:2607614","l":"Tissierella pigra","na":2,"nb":1,"a":[["TED%3AAF-A0A6N7XY67-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N7XY67-F1-model_v4_TED01"],["TED%3AAF-A0A6N7Y0X7-F1-model_v4_TED01","TED novel fold AF-A0A6N7Y0X7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607614","Tissierella pigra"]]},{"id":"NCBITaxon:2607730","l":"Aquimarina sp. RZ0","na":2,"nb":1,"a":[["TED%3AAF-A0A5B1B781-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5B1B781-F1-model_v4_TED02"],["TED%3AAF-A0A5B1B106-F1-model_v4_TED01","TED novel fold AF-A0A5B1B106-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607730","Aquimarina sp. RZ0"]]},{"id":"NCBITaxon:2607771","l":"Leptolyngbya sp. SIOISBB","na":2,"nb":1,"a":[["TED%3AAF-A0A6I5NY60-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I5NY60-F1-model_v4_TED01"],["TED%3AAF-A0A6I5PEJ2-F1-model_v4_TED01","TED novel fold AF-A0A6I5PEJ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607771","Leptolyngbya sp. SIOISBB"]]},{"id":"NCBITaxon:2607779","l":"Merismopedia sp. SIO2A8","na":2,"nb":1,"a":[["TED%3AAF-A0A6P0YS12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6P0YS12-F1-model_v4_TED01"],["TED%3AAF-A0A6P0Z729-F1-model_v4_TED02","TED novel fold AF-A0A6P0Z729-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2607779","Merismopedia sp. SIO2A8"]]},{"id":"NCBITaxon:2607780","l":"Leptolyngbya sp. SIO3F4","na":2,"nb":1,"a":[["TED%3AAF-A0A6I5PU43-F1-model_v4_TED02","TED novel fold AF-A0A6I5PU43-F1-model_v4_TED02"],["TED%3AAF-A0A6I5Q2F8-F1-model_v4_TED01","TED novel fold AF-A0A6I5Q2F8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607780","Leptolyngbya sp. SIO3F4"]]},{"id":"NCBITaxon:2607789","l":"Symploca sp. SIO2D2","na":2,"nb":1,"a":[["TED%3AAF-A0A6P0RPF6-F1-model_v4_TED04","TED novel fold AF-A0A6P0RPF6-F1-model_v4_TED04"],["TED%3AAF-A0A6P0S7W2-F1-model_v4_TED01","TED novel fold AF-A0A6P0S7W2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607789","Symploca sp. SIO2D2"]]},{"id":"NCBITaxon:2607798","l":"Symploca sp. SIO2G7","na":2,"nb":1,"a":[["TED%3AAF-A0A845Y6S6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A845Y6S6-F1-model_v4_TED01"],["TED%3AAF-A0A845Y7B4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A845Y7B4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607798","Symploca sp. SIO2G7"]]},{"id":"NCBITaxon:2608384","l":"Campylobacter portucalensis","na":2,"nb":1,"a":[["TED%3AAF-A0A6L5WM94-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6L5WM94-F1-model_v4_TED02"],["TED%3AAF-A0A6L5WIX2-F1-model_v4_TED02","TED novel fold AF-A0A6L5WIX2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2608384","Campylobacter portucalensis"]]},{"id":"NCBITaxon:2609281","l":"Massilia frigida","na":2,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_IBH_His","Interface-associated metallophore histidine beta-hydroxylase family"],["proteintraitsmech%3AELIFE109154_TBH_Asp","T-E-associated metallophore aspartate beta-hydroxylase family"]],"b":[["NCBITaxon%3A2609281","Massilia frigida"]]},{"id":"NCBITaxon:2614160","l":"Halospina sp. K52047b","na":1,"nb":2,"a":[["TED%3AAF-A0A5J5FLE6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5J5FLE6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2614160","Halospina sp. K52047b"],["NCBITaxon%3A1803916","Salibacter halophilus"]]},{"id":"NCBITaxon:2614252","l":"Calditrichaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A850AGU9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A850AGU9-F1-model_v4_TED01"],["TED%3AAF-A0A850AN03-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A850AN03-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2614252","Calditrichaceae bacterium"]]},{"id":"NCBITaxon:261474","l":"Pelotomaculum sp. FP","na":1,"nb":2,"a":[["TED%3AAF-A0A4Y7S625-F1-model_v4_TED02","TED novel fold AF-A0A4Y7S625-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053590","Pelotomaculum sp."],["NCBITaxon%3A261474","Pelotomaculum sp. FP"]]},{"id":"NCBITaxon:262698","l":"Brucella abortus biovar 1 (strain 9-941)","na":2,"nb":1,"a":[["Pfam%3APF03625","Domain of unknown function DUF302"],["Pfam%3APF06776","Invasion associated locus B (IalB) protein"]],"b":[["NCBITaxon%3A262698","Brucella abortus bv. 1 str. 9-941"]]},{"id":"NCBITaxon:263819","l":"Yersinia aleksiciae","na":2,"nb":1,"a":[["Pfam%3APF18153","Cap15, cyclic dinucleotide receptor domain"],["Pfam%3APF23471","Cap15, TM helices"]],"b":[["NCBITaxon%3A263819","Yersinia aleksiciae"]]},{"id":"NCBITaxon:264198","l":"Cupriavidus pinatubonensis JMP134","na":1,"nb":2,"a":[["TED%3AAF-Q476D1-F1-model_v4_TED02","TED highly-symmetric fold AF-Q476D1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A106590","Cupriavidus necator"],["NCBITaxon%3A264198","Cupriavidus pinatubonensis JMP134"]]},{"id":"NCBITaxon:264199","l":"Streptococcus thermophilus (strain ATCC BAA-250 / LMG 18311)","na":2,"nb":1,"a":[["Pfam%3APF17864","RuvB AAA lid domain"],["Pfam%3APF27471","Energy-coupling factor transporter EcfA1 C-terminal domain"]],"b":[["NCBITaxon%3A264199","Streptococcus thermophilus LMG 18311"]]},{"id":"NCBITaxon:264297","l":"Cellulomonas denverensis","na":1,"nb":2,"a":[["TED%3AAF-A0A7X6QZH2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X6QZH2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A264297","Cellulomonas denverensis"],["NCBITaxon%3A1305869","Cellulomonas denverensis JCM 14733"]]},{"id":"NCBITaxon:264445","l":"Streptomyces hygroscopicus subsp. limoneus","na":1,"nb":2,"a":[["TED%3AAF-A0A0S2PAJ8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0S2PAJ8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1912","Streptomyces hygroscopicus"],["NCBITaxon%3A264445","Streptomyces hygroscopicus subsp. limoneus"]]},{"id":"NCBITaxon:264483","l":"Phaffia rhodozyma","na":2,"nb":1,"a":[["TED%3AAF-A0A0F7SE65-F1-model_v4_TED03","TED novel fold AF-A0A0F7SE65-F1-model_v4_TED03"],["TED%3AAF-A0A0F7SS48-F1-model_v4_TED01","TED novel fold AF-A0A0F7SS48-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A264483","Phaffia rhodozyma"]]},{"id":"NCBITaxon:264636","l":"Acholeplasma hippikon","na":1,"nb":2,"a":[["TED%3AAF-A0A449BIU6-F1-model_v4_TED01","TED novel fold AF-A0A449BIU6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A264636","Acholeplasma hippikon"],["NCBITaxon%3A1408416","Acholeplasma hippikon ATCC 29725"]]},{"id":"NCBITaxon:2650471","l":"Lacipirellula parvula","na":2,"nb":1,"a":[["TED%3AAF-A0A5K7X529-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5K7X529-F1-model_v4_TED01"],["TED%3AAF-A0A5K7XG93-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5K7XG93-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2650471","Lacipirellula parvula"]]},{"id":"NCBITaxon:265072","l":"Methylobacillus flagellatus KT","na":1,"nb":2,"a":[["Pfam%3APF10414","Sirohaem synthase dimerisation region"]],"b":[["NCBITaxon%3A405","Methylobacillus flagellatus"],["NCBITaxon%3A265072","Methylobacillus flagellatus KT"]]},{"id":"NCBITaxon:2651171","l":"Thermoanaerobaculia bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A6L4B118-F1-model_v4_TED01","TED novel fold AF-A0A6L4B118-F1-model_v4_TED01"],["TED%3AAF-A0A833H7H8-F1-model_v4_TED01","TED novel fold AF-A0A833H7H8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2651171","Thermoanaerobaculia bacterium"]]},{"id":"NCBITaxon:2654236","l":"Cytophagaceae bacterium SJW1-29","na":2,"nb":1,"a":[["TED%3AAF-A0A7C9B999-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C9B999-F1-model_v4_TED02"],["TED%3AAF-A0A7C9BIZ3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C9BIZ3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2654236","Salmonirosea aquatica"]]},{"id":"NCBITaxon:265543","l":"Minutocellus polymorphus","na":2,"nb":1,"a":[["TED%3AAF-A0A7S0B109-F1-model_v4_TED01","TED novel fold AF-A0A7S0B109-F1-model_v4_TED01"],["TED%3AAF-A0A7S0FL87-F1-model_v4_TED01","TED novel fold AF-A0A7S0FL87-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A265543","Minutocellus polymorphus"]]},{"id":"NCBITaxon:265719","l":"Aquimonas voraii","na":1,"nb":2,"a":[["TED%3AAF-A0A1G6S3E9-F1-model_v4_TED02","TED novel fold AF-A0A1G6S3E9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A265719","Aquimonas voraii"],["NCBITaxon%3A1121008","Aquimonas voraii DSM 16957"]]},{"id":"NCBITaxon:266117","l":"Rubrobacter xylanophilus DSM 9941","na":1,"nb":2,"a":[["TED%3AAF-Q1AVL5-F1-model_v4_TED02","TED highly-symmetric fold AF-Q1AVL5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A49319","Rubrobacter xylanophilus"],["NCBITaxon%3A266117","Rubrobacter xylanophilus DSM 9941"]]},{"id":"NCBITaxon:2661913","l":"Actinomadura sp. J1-007","na":2,"nb":1,"a":[["TED%3AAF-A0A6I4PKW5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6I4PKW5-F1-model_v4_TED02"],["TED%3AAF-A0A6I4PYS5-F1-model_v4_TED03","TED novel fold AF-A0A6I4PYS5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2661913","Actinomadura sp. J1-007"]]},{"id":"NCBITaxon:2662194","l":"Pseudomonas sp. FSL R10-0399","na":2,"nb":1,"a":[["TED%3AAF-A0A7X1WIH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X1WIH3-F1-model_v4_TED01"],["TED%3AAF-A0A7X1WKI9-F1-model_v4_TED02","TED novel fold AF-A0A7X1WKI9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2662194","Pseudomonas sp. FSL R10-0399"]]},{"id":"NCBITaxon:2663009","l":"Fusobacterium pseudoperiodonticum","na":2,"nb":1,"a":[["TED%3AAF-A0A2D3NTS3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D3NTS3-F1-model_v4_TED01"],["TED%3AAF-A0A2D3LZB2-F1-model_v4_TED02","TED novel fold AF-A0A2D3LZB2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2663009","Fusobacterium pseudoperiodonticum"]]},{"id":"NCBITaxon:2666084","l":"Duganella guangzhouensis","na":2,"nb":1,"a":[["TED%3AAF-A0A6I2L2N4-F1-model_v4_TED03","TED novel fold AF-A0A6I2L2N4-F1-model_v4_TED03"],["TED%3AAF-A0A6I2LCD9-F1-model_v4_TED01","TED novel fold AF-A0A6I2LCD9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2666084","Duganella guangzhouensis"]]},{"id":"NCBITaxon:2670410","l":"Halobacteria archaeon","na":2,"nb":1,"a":[["TED%3AAF-A0A7K4ERY7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K4ERY7-F1-model_v4_TED01"],["TED%3AAF-A0A7K4E646-F1-model_v4_TED01","TED novel fold AF-A0A7K4E646-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2670410","Halobacteria archaeon"]]},{"id":"NCBITaxon:2672569","l":"Microlunatus sp. Gsoil 973","na":2,"nb":1,"a":[["TED%3AAF-A0A6I5VKN1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I5VKN1-F1-model_v4_TED01"],["TED%3AAF-A0A6I5VPG1-F1-model_v4_TED01","TED novel fold AF-A0A6I5VPG1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2672569","Microlunatus sp. Gsoil 973"]]},{"id":"NCBITaxon:267363","l":"Levilactobacillus zymae","na":1,"nb":2,"a":[["TED%3AAF-A0A5P8PYD2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5P8PYD2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A267363","Levilactobacillus zymae"],["NCBITaxon%3A1423817","Levilactobacillus zymae DSM 19395"]]},{"id":"NCBITaxon:267747","l":"Cutibacterium acnes KPA171202","na":1,"nb":2,"a":[["Pfam%3APF27542","ArfC"]],"b":[["NCBITaxon%3A1747","Cutibacterium acnes"],["NCBITaxon%3A267747","Cutibacterium acnes KPA171202"]]},{"id":"NCBITaxon:2678688","l":"Pseudodesulfovibrio cashew","na":2,"nb":1,"a":[["TED%3AAF-A0A6I6JE61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I6JE61-F1-model_v4_TED01"],["TED%3AAF-A0A6I6JD43-F1-model_v4_TED01","TED novel fold AF-A0A6I6JD43-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2678688","Pseudodesulfovibrio cashew"]]},{"id":"NCBITaxon:2682092","l":"Spirosoma arboris","na":2,"nb":1,"a":[["TED%3AAF-A0A7K1S3P3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7K1S3P3-F1-model_v4_TED02"],["TED%3AAF-A0A7K1S8E3-F1-model_v4_TED02","TED novel fold AF-A0A7K1S8E3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2682092","Spirosoma arboris"]]},{"id":"NCBITaxon:2682781","l":"Mesorhizobium microcysteis","na":2,"nb":1,"a":[["TED%3AAF-A0A5D4GRG3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A5D4GRG3-F1-model_v4_TED03"],["TED%3AAF-A0A5D4H5U8-F1-model_v4_TED01","TED novel fold AF-A0A5D4H5U8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2682781","Neoaquamicrobium microcysteis"]]},{"id":"NCBITaxon:2687297","l":"Oligoflexales bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A832PTV1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A832PTV1-F1-model_v4_TED02"],["TED%3AAF-A0A832QYV9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A832QYV9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2687297","Oligoflexales bacterium"]]},{"id":"NCBITaxon:268739","l":"","na":1,"nb":2,"a":[["TED%3AAF-M1XRW3-F1-model_v4_TED01","TED highly-symmetric fold AF-M1XRW3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A416273","Natronomonas moolapensis"],["NCBITaxon%3A268739","Natronomonas moolapensis 8.8.11"]]},{"id":"NCBITaxon:2690782","l":"Halorubrum sp. JWXQ-INN 858","na":2,"nb":1,"a":[["TED%3AAF-A0A6G2HEJ4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6G2HEJ4-F1-model_v4_TED02"],["TED%3AAF-A0A6G2HCM7-F1-model_v4_TED05","TED novel fold AF-A0A6G2HCM7-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2690782","Halorubrum sp. JWXQ-INN 858"]]},{"id":"NCBITaxon:269482","l":"Burkholderia vietnamiensis G4","na":1,"nb":2,"a":[["TED%3AAF-A4JWD8-F1-model_v4_TED01","TED novel fold AF-A4JWD8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A60552","Burkholderia vietnamiensis"],["NCBITaxon%3A269482","Burkholderia vietnamiensis G4"]]},{"id":"NCBITaxon:269536","l":"Frankia sp. R43","na":2,"nb":1,"a":[["TED%3AAF-A0A0P7CJ03-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0P7CJ03-F1-model_v4_TED02"],["TED%3AAF-A0A0P7CJ87-F1-model_v4_TED02","TED novel fold AF-A0A0P7CJ87-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A269536","Frankia sp. R43"]]},{"id":"NCBITaxon:2695856","l":"Steroidobacter agaridevorans","na":2,"nb":1,"a":[["TED%3AAF-A0A829Y8E6-F1-model_v4_TED02","TED novel fold AF-A0A829Y8E6-F1-model_v4_TED02"],["TED%3AAF-A0A829YLU4-F1-model_v4_TED02","TED novel fold AF-A0A829YLU4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2695856","Steroidobacter agaridevorans"]]},{"id":"NCBITaxon:2699751","l":"Oligosphaeraceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A7X7MJU1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X7MJU1-F1-model_v4_TED01"],["TED%3AAF-A0A7X9G563-F1-model_v4_TED01","TED novel fold AF-A0A7X9G563-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2699751","Oligosphaeraceae bacterium"]]},{"id":"NCBITaxon:2703787","l":"Chitinophaga agri","na":2,"nb":1,"a":[["TED%3AAF-A0A6B9Z9L0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6B9Z9L0-F1-model_v4_TED01"],["TED%3AAF-A0A6B9ZJ42-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6B9ZJ42-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2703787","Chitinophaga agri"]]},{"id":"NCBITaxon:2705072","l":"Candidatus Anoxychlamydiales bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A846KQV6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A846KQV6-F1-model_v4_TED02"],["TED%3AAF-A0A6M1YSW0-F1-model_v4_TED01","TED novel fold AF-A0A6M1YSW0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2705072","Candidatus Anoxychlamydiales bacterium"]]},{"id":"NCBITaxon:2705533","l":"Candidatus Nitronauta litoralis","na":2,"nb":1,"a":[["TED%3AAF-A0A7T0BVA8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T0BVA8-F1-model_v4_TED01"],["TED%3AAF-A0A7T0BVL0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T0BVL0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2705533","Candidatus Nitronauta litoralis"]]},{"id":"NCBITaxon:2708063","l":"Pseudomonas brassicae","na":2,"nb":1,"a":[["TED%3AAF-A0A6B3NI41-F1-model_v4_TED01","TED novel fold AF-A0A6B3NI41-F1-model_v4_TED01"],["TED%3AAF-A0A6M0CT22-F1-model_v4_TED01","TED novel fold AF-A0A6M0CT22-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2708063","Pseudomonas brassicae"]]},{"id":"NCBITaxon:2708301","l":"Kineobactrum salinum","na":2,"nb":1,"a":[["TED%3AAF-A0A6C0TY05-F1-model_v4_TED01","TED novel fold AF-A0A6C0TY05-F1-model_v4_TED01"],["TED%3AAF-A0A6C0U6W3-F1-model_v4_TED01","TED novel fold AF-A0A6C0U6W3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2708301","Kineobactrum salinum"]]},{"id":"NCBITaxon:2709380","l":"Starkeya sp. ORNL1","na":2,"nb":1,"a":[["TED%3AAF-A0A858X0A3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A858X0A3-F1-model_v4_TED01"],["TED%3AAF-A0A858X2A2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A858X2A2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2709380","Starkeya sp. ORNL1"]]},{"id":"NCBITaxon:2709665","l":"Methylobacterium sp. DB0501","na":2,"nb":1,"a":[["TED%3AAF-A0A6M1MDN5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6M1MDN5-F1-model_v4_TED01"],["TED%3AAF-A0A6M1M195-F1-model_v4_TED04","TED novel fold AF-A0A6M1M195-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2709665","Methylobacterium sp. DB0501"]]},{"id":"NCBITaxon:2710756","l":"Streptomyces bathyalis","na":2,"nb":1,"a":[["TED%3AAF-A0A7T1T2F9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T1T2F9-F1-model_v4_TED01"],["TED%3AAF-A0A7T1T7I7-F1-model_v4_TED01","TED novel fold AF-A0A7T1T7I7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2710756","Streptomyces bathyalis"]]},{"id":"NCBITaxon:2714","l":"Aquifex pyrophilus","na":2,"nb":1,"a":[["PROSITE%3APS00923","Aspartate and glutamate racemases signature 1"],["PROSITE%3APS00924","Aspartate and glutamate racemases signature 2"]],"b":[["NCBITaxon%3A2714","Aquifex pyrophilus"]]},{"id":"NCBITaxon:271420","l":"Stutzerimonas xanthomarina","na":1,"nb":2,"a":[["TED%3AAF-A0A3R8TXN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R8TXN3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A271420","Stutzerimonas xanthomarina"],["NCBITaxon%3A1403346","Stutzerimonas xanthomarina DSM 18231"]]},{"id":"NCBITaxon:2721173","l":"Streptomyces sp. DSM 40868","na":1,"nb":2,"a":[["TED%3AAF-A0A6H0CQN2-F1-model_v4_TED02","TED novel fold AF-A0A6H0CQN2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A67315","Streptomyces lavenduligriseus"],["NCBITaxon%3A2721173","Streptomyces sp. DSM 40868"]]},{"id":"NCBITaxon:272123","l":"","na":2,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_FbnM","FbnM-type Dmaq biosynthesis peroxidase subunit family"],["TED%3AAF-K9ZFU9-F1-model_v4_TED01","TED highly-symmetric fold AF-K9ZFU9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A272123","Anabaena cylindrica PCC 7122"]]},{"id":"NCBITaxon:2721777","l":"Oscillospiraceae bacterium HV4-5-C5C","na":2,"nb":1,"a":[["TED%3AAF-A0A7X6CV36-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7X6CV36-F1-model_v4_TED02"],["TED%3AAF-A0A7X6CSM3-F1-model_v4_TED02","TED novel fold AF-A0A7X6CSM3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2721777","Oscillospiraceae bacterium HV4-5-C5C"]]},{"id":"NCBITaxon:2723666","l":"Planctomycetales bacterium ZRK34","na":2,"nb":1,"a":[["TED%3AAF-A0A7G9NYS9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7G9NYS9-F1-model_v4_TED02"],["TED%3AAF-A0A7G9P3Y2-F1-model_v4_TED01","TED novel fold AF-A0A7G9P3Y2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2723666","Planctomycetales bacterium ZRK34"]]},{"id":"NCBITaxon:2725303","l":"Clostridium sp. SM-530-WT-3G","na":1,"nb":2,"a":[["TED%3AAF-A0A7X9S550-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X9S550-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2675590","Clostridium sp. DSM 107452"],["NCBITaxon%3A2725303","Clostridium sp. SM-530-WT-3G"]]},{"id":"NCBITaxon:2725306","l":"Psychrobacillus sp. BL-248-WT-3","na":1,"nb":2,"a":[["TED%3AAF-A0A7X9MW50-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X9MW50-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1871623","Psychrobacillus sp."],["NCBITaxon%3A2725306","Psychrobacillus sp. BL-248-WT-3"]]},{"id":"NCBITaxon:2725996","l":"Lutibacter sp. B1","na":2,"nb":1,"a":[["TED%3AAF-A0A7X8NAT0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X8NAT0-F1-model_v4_TED01"],["TED%3AAF-A0A7X8NAM9-F1-model_v4_TED02","TED novel fold AF-A0A7X8NAM9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2725996","Lutibacter sp. B1"]]},{"id":"NCBITaxon:2726072","l":"Kribbellaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A850DDQ1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A850DDQ1-F1-model_v4_TED01"],["TED%3AAF-A0A850D640-F1-model_v4_TED02","TED novel fold AF-A0A850D640-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2726072","Kribbellaceae bacterium"]]},{"id":"NCBITaxon:2726742","l":"Flammeovirga agarivorans","na":2,"nb":1,"a":[["TED%3AAF-A0A7X8XWP0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7X8XWP0-F1-model_v4_TED03"],["TED%3AAF-A0A7X8SPZ2-F1-model_v4_TED02","TED novel fold AF-A0A7X8SPZ2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2726742","Flammeovirga agarivorans"]]},{"id":"NCBITaxon:2728020","l":"Massilia forsythiae","na":2,"nb":1,"a":[["TED%3AAF-A0A7Z2VYU2-F1-model_v4_TED01","TED novel fold AF-A0A7Z2VYU2-F1-model_v4_TED01"],["TED%3AAF-A0A7Z2VZ79-F1-model_v4_TED03","TED novel fold AF-A0A7Z2VZ79-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2728020","Massilia forsythiae"]]},{"id":"NCBITaxon:2728024","l":"Spirosoma rhododendri","na":2,"nb":1,"a":[["TED%3AAF-A0A7L5DIZ5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7L5DIZ5-F1-model_v4_TED02"],["TED%3AAF-A0A7L5DPJ3-F1-model_v4_TED01","TED novel fold AF-A0A7L5DPJ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2728024","Spirosoma rhododendri"]]},{"id":"NCBITaxon:272831","l":"Neisseria meningitidis FAM18","na":1,"nb":2,"a":[["Pfam%3APF27460","ATP phosphoribosyltransferase subunit HisZ C-terminal domain"]],"b":[["NCBITaxon%3A487","Neisseria meningitidis"],["NCBITaxon%3A272831","Neisseria meningitidis FAM18"]]},{"id":"NCBITaxon:272952","l":"Hyaloperonospora arabidopsidis","na":1,"nb":2,"a":[["Pfam%3APF16829","Avirulence protein ATR13, RxLR effector"]],"b":[["NCBITaxon%3A272952","Hyaloperonospora arabidopsidis"],["NCBITaxon%3A559515","Hyaloperonospora arabidopsidis Emoy2"]]},{"id":"NCBITaxon:2729599","l":"Marinigracilibium pacificum","na":2,"nb":1,"a":[["TED%3AAF-A0A848IYL5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A848IYL5-F1-model_v4_TED02"],["TED%3AAF-A0A848JAJ2-F1-model_v4_TED04","TED novel fold AF-A0A848JAJ2-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2729599","Marinigracilibium pacificum"]]},{"id":"NCBITaxon:273119","l":"Ureaplasma parvum serovar 3 (strain ATCC 700970)","na":2,"nb":1,"a":[["Pfam%3APF11074","Domain of unknown function (DUF2779)"],["Pfam%3APF10896","Protein of unknown function (DUF2714)"]],"b":[["NCBITaxon%3A273119","Ureaplasma parvum serovar 3 str. ATCC 700970"]]},{"id":"NCBITaxon:273384","l":"Brevibacterium aurantiacum","na":1,"nb":2,"a":[["TED%3AAF-A0A556CK32-F1-model_v4_TED02","TED novel fold AF-A0A556CK32-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A273384","Brevibacterium aurantiacum"],["NCBITaxon%3A1703","Brevibacterium linens"]]},{"id":"NCBITaxon:2735135","l":"Azospirillum oleiclasticum","na":2,"nb":1,"a":[["TED%3AAF-A0A853HJJ8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A853HJJ8-F1-model_v4_TED02"],["TED%3AAF-A0A853HQV7-F1-model_v4_TED01","TED novel fold AF-A0A853HQV7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2735135","Azospirillum oleiclasticum"]]},{"id":"NCBITaxon:2735434","l":"Paraburkholderia sp. PGU19","na":2,"nb":1,"a":[["TED%3AAF-A0A7I8CJ86-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7I8CJ86-F1-model_v4_TED02"],["TED%3AAF-A0A7I8CQB6-F1-model_v4_TED02","TED novel fold AF-A0A7I8CQB6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2735434","Paraburkholderia sp. PGU19"]]},{"id":"NCBITaxon:2742195","l":"Mycoplasma sp. OR1901","na":2,"nb":1,"a":[["TED%3AAF-A0A6N1DW44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N1DW44-F1-model_v4_TED01"],["TED%3AAF-A0A6N1DTH0-F1-model_v4_TED06","TED novel fold AF-A0A6N1DTH0-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A2742195","Mycoplasma sp. OR1901"]]},{"id":"NCBITaxon:2745200","l":"Myxococcus sp. AM011","na":2,"nb":1,"a":[["TED%3AAF-A0A7Y6XIE4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y6XIE4-F1-model_v4_TED02"],["TED%3AAF-A0A7Y7CCJ7-F1-model_v4_TED02","TED novel fold AF-A0A7Y7CCJ7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2745200","Myxococcus sp. AM011"]]},{"id":"NCBITaxon:2754057","l":"Xanthomonas hortorum pv. cynarae","na":1,"nb":2,"a":[["TED%3AAF-A0A7Z1NH73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Z1NH73-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A56454","Xanthomonas hortorum"],["NCBITaxon%3A2754057","Xanthomonas hortorum pv. cynarae"]]},{"id":"NCBITaxon:2755382","l":"Nocardia huaxiensis","na":2,"nb":1,"a":[["TED%3AAF-A0A7D6YZX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7D6YZX7-F1-model_v4_TED01"],["TED%3AAF-A0A7D6ZHV2-F1-model_v4_TED02","TED novel fold AF-A0A7D6ZHV2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2755382","Nocardia huaxiensis"]]},{"id":"NCBITaxon:2761102","l":"Halobellus ruber","na":1,"nb":2,"a":[["TED%3AAF-A0A7J9SJC4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J9SJC4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2761102","Halobellus ruber"],["NCBITaxon%3A1979212","Halobellus sp."]]},{"id":"NCBITaxon:2762332","l":"Robiginitalea sp. SC105","na":2,"nb":1,"a":[["TED%3AAF-A0A842IMD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A842IMD6-F1-model_v4_TED01"],["TED%3AAF-A0A842IP13-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A842IP13-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2762332","Robiginitalea sp. SC105"]]},{"id":"NCBITaxon:2768438","l":"Microbacterium sp. SLBN-1","na":2,"nb":1,"a":[["TED%3AAF-A0A542GBV6-F1-model_v4_TED01","TED novel fold AF-A0A542GBV6-F1-model_v4_TED01"],["TED%3AAF-A0A542GBW6-F1-model_v4_TED01","TED novel fold AF-A0A542GBW6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2768438","Microbacterium sp. SLBN-1"]]},{"id":"NCBITaxon:2768448","l":"Promicromonospora sp. SLBN-65","na":2,"nb":1,"a":[["TED%3AAF-A0A542K652-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A542K652-F1-model_v4_TED01"],["TED%3AAF-A0A542JW13-F1-model_v4_TED03","TED novel fold AF-A0A542JW13-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2768448","Promicromonospora sp. SLBN-65"]]},{"id":"NCBITaxon:2774151","l":"Frigoriglobus tundricola","na":2,"nb":1,"a":[["TED%3AAF-A0A6M5Z446-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6M5Z446-F1-model_v4_TED02"],["TED%3AAF-A0A6M5YIB3-F1-model_v4_TED02","TED novel fold AF-A0A6M5YIB3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2774151","Frigoriglobus tundricola"]]},{"id":"NCBITaxon:2788","l":"Pyropia yezoensis","na":2,"nb":1,"a":[["Pfam%3APF06799","Conserved in the green lineage and diatoms 27"],["Pfam%3APF12452","Protein of unknown function (DUF3685)"]],"b":[["NCBITaxon%3A2788","Pyropia yezoensis"]]},{"id":"NCBITaxon:278992","l":"Streptomyces ambofaciens ATCC 23877","na":1,"nb":2,"a":[["Pfam%3APF00553","Cellulose binding domain"]],"b":[["NCBITaxon%3A1889","Streptomyces ambofaciens"],["NCBITaxon%3A278992","Streptomyces ambofaciens ATCC 23877"]]},{"id":"NCBITaxon:279262","l":"Nocardia mexicana","na":1,"nb":2,"a":[["TED%3AAF-A0A370GK18-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A370GK18-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A279262","Nocardia mexicana"],["NCBITaxon%3A1210089","Nocardia mexicana NBRC 108244"]]},{"id":"NCBITaxon:2795974","l":"Stieleria maiorica","na":2,"nb":1,"a":[["TED%3AAF-A0A5B9MHL4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5B9MHL4-F1-model_v4_TED02"],["TED%3AAF-A0A5B9MK37-F1-model_v4_TED03","TED novel fold AF-A0A5B9MK37-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2795974","Stieleria maiorica"]]},{"id":"NCBITaxon:2803864","l":"Shewanella sp. KX20019","na":2,"nb":1,"a":[["TED%3AAF-A0A7U0SGA6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7U0SGA6-F1-model_v4_TED01"],["TED%3AAF-A0A7U0XVY2-F1-model_v4_TED01","TED novel fold AF-A0A7U0XVY2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2803864","Shewanella sp. KX20019"]]},{"id":"NCBITaxon:28085","l":"Legionella cincinnatiensis","na":2,"nb":1,"a":[["TED%3AAF-A0A378ILG0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A378ILG0-F1-model_v4_TED01"],["TED%3AAF-A0A378IH57-F1-model_v4_TED01","TED novel fold AF-A0A378IH57-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28085","Legionella cincinnatiensis"]]},{"id":"NCBITaxon:28113","l":"Prevotella heparinolytica","na":1,"nb":2,"a":[["TED%3AAF-A0A449I749-F1-model_v4_TED01","TED novel fold AF-A0A449I749-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28113","Prevotella heparinolytica"],["NCBITaxon%3A888058","Prevotella heparinolytica ATCC 35895"]]},{"id":"NCBITaxon:28128","l":"Prevotella corporis","na":1,"nb":2,"a":[["TED%3AAF-A0A133Q582-F1-model_v4_TED02","TED novel fold AF-A0A133Q582-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A28128","Prevotella corporis"],["NCBITaxon%3A1122981","Prevotella corporis DSM 18810 = JCM 8529"]]},{"id":"NCBITaxon:281310","l":"Haemophilus influenzae (strain 86-028NP)","na":2,"nb":1,"a":[["Pfam%3APF22106","HvfC C-terminal domain"],["Pfam%3APF09836","HvfC C-terminal domain"]],"b":[["NCBITaxon%3A281310","Haemophilus influenzae 86-028NP"]]},{"id":"NCBITaxon:28185","l":"Spirochaeta sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A3C0SUV0-F1-model_v4_TED03","TED novel fold AF-A0A3C0SUV0-F1-model_v4_TED03"],["TED%3AAF-A0A6N7M3Q7-F1-model_v4_TED01","TED novel fold AF-A0A6N7M3Q7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28185","Spirochaeta sp."]]},{"id":"NCBITaxon:282199","l":"Nereida ignava","na":1,"nb":2,"a":[["TED%3AAF-A0A0U1NPS2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0U1NPS2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A282199","Nereida ignava"],["NCBITaxon%3A1122600","Nereida ignava DSM 16309"]]},{"id":"NCBITaxon:282217","l":"Variovorax sp. SRS16","na":2,"nb":1,"a":[["TED%3AAF-A0A8B6LM65-F1-model_v4_TED02","TED novel fold AF-A0A8B6LM65-F1-model_v4_TED02"],["TED%3AAF-A0A8B6LWN2-F1-model_v4_TED01","TED novel fold AF-A0A8B6LWN2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A282217","Variovorax sp. SRS16"]]},{"id":"NCBITaxon:282683","l":"Salipiger thiooxidans","na":1,"nb":2,"a":[["TED%3AAF-A0A1G7IRE3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G7IRE3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A282683","Salipiger thiooxidans"],["NCBITaxon%3A1207065","Salipiger thiooxidans DLFJ3-3"]]},{"id":"NCBITaxon:284577","l":"Halomonas taeanensis","na":2,"nb":1,"a":[["TED%3AAF-A0A1G7R3Y1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G7R3Y1-F1-model_v4_TED01"],["TED%3AAF-A0A1G7PAN4-F1-model_v4_TED01","TED novel fold AF-A0A1G7PAN4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A284577","Onishia taeanensis"]]},{"id":"NCBITaxon:28572","l":"Talaromyces funiculosus","na":2,"nb":1,"a":[["Pfam%3APF10503","Esterase PHB depolymerase"],["PROSITE%3APS00562","CBM1 (carbohydrate binding type-1) domain signature"]],"b":[["NCBITaxon%3A28572","Talaromyces funiculosus"]]},{"id":"NCBITaxon:287478","l":"Hellea balneolensis","na":1,"nb":2,"a":[["TED%3AAF-A0A7C5QPM5-F1-model_v4_TED01","TED novel fold AF-A0A7C5QPM5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A287478","Hellea balneolensis"],["NCBITaxon%3A1121948","Hellea balneolensis DSM 19091"]]},{"id":"NCBITaxon:287487","l":"Haliea salexigens","na":1,"nb":2,"a":[["TED%3AAF-A0A3C1KKH1-F1-model_v4_TED03","TED novel fold AF-A0A3C1KKH1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A287487","Haliea salexigens"],["NCBITaxon%3A1121937","Haliea salexigens DSM 19537"]]},{"id":"NCBITaxon:28892","l":"Methanofollis liminatans DSM 4140","na":1,"nb":2,"a":[["TED%3AAF-J0S6K4-F1-model_v4_TED02","TED novel fold AF-J0S6K4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2201","Methanofollis liminatans"],["NCBITaxon%3A28892","Methanofollis liminatans DSM 4140"]]},{"id":"NCBITaxon:290318","l":"","na":1,"nb":2,"a":[["Pfam%3APF24850","Bacillithiol biosynthesis BshC, C-terminal coiled-coil domain"]],"b":[["NCBITaxon%3A1094","Chlorobium phaeovibrioides"],["NCBITaxon%3A290318","Chlorobium phaeovibrioides DSM 265"]]},{"id":"NCBITaxon:290339","l":"","na":2,"nb":1,"a":[["Pfam%3APF06610","L-alanine exporter"],["Pfam%3APF10796","Sigma-S stabilisation anti-adaptor protein"]],"b":[["NCBITaxon%3A290339","Cronobacter sakazakii ATCC BAA-894"]]},{"id":"NCBITaxon:290397","l":"","na":1,"nb":2,"a":[["TED%3AAF-Q2IEQ0-F1-model_v4_TED01","TED highly-symmetric fold AF-Q2IEQ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A161493","Anaeromyxobacter dehalogenans"],["NCBITaxon%3A290397","Anaeromyxobacter dehalogenans 2CP-C"]]},{"id":"NCBITaxon:290399","l":"","na":1,"nb":2,"a":[["Pfam%3APF01628","HrcA protein C terminal domain"]],"b":[["NCBITaxon%3A1667","Arthrobacter sp."],["NCBITaxon%3A290399","Arthrobacter sp. FB24"]]},{"id":"NCBITaxon:290512","l":"","na":1,"nb":2,"a":[["Pfam%3APF02043","Bacteriochlorophyll C binding protein"]],"b":[["NCBITaxon%3A1102","Prosthecochloris aestuarii"],["NCBITaxon%3A290512","Prosthecochloris aestuarii DSM 271"]]},{"id":"NCBITaxon:29295","l":"halophilic archaeon","na":1,"nb":2,"a":[["TED%3AAF-A0A365TD16-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A365TD16-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2304676","Halomicrococcus hydrotolerans"],["NCBITaxon%3A29295","halophilic archaeon"]]},{"id":"NCBITaxon:29303","l":"Streptomyces cattleya","na":1,"nb":2,"a":[["Pfam%3APF22636","Fluoroacetyl-CoA-specific thioesterase"]],"b":[["NCBITaxon%3A29303","Streptantibioticus cattleyicolor"],["NCBITaxon%3A1003195","Streptantibioticus cattleyicolor NRRL 8057 = DSM 46488"]]},{"id":"NCBITaxon:29340","l":"Bacillus thuringiensis serovar sotto","na":1,"nb":2,"a":[["Pfam%3APF18449","Pesticidal crystal protein Cry1Aa, domain IV"]],"b":[["NCBITaxon%3A29340","Bacillus thuringiensis serovar sotto"],["NCBITaxon%3A527026","Bacillus thuringiensis serovar sotto str. T04001"]]},{"id":"NCBITaxon:29345","l":"Sedimentibacter hydroxybenzoicus","na":1,"nb":2,"a":[["Pfam%3APF26358","EcdD/BsdD phenolic detoxification"]],"b":[["NCBITaxon%3A29345","Sedimentibacter hydroxybenzoicus"],["NCBITaxon%3A1123245","Sedimentibacter hydroxybenzoicus DSM 7310"]]},{"id":"NCBITaxon:29367","l":"Clostridium puniceum","na":2,"nb":1,"a":[["TED%3AAF-A0A1S8T7W1-F1-model_v4_TED03","TED novel fold AF-A0A1S8T7W1-F1-model_v4_TED03"],["TED%3AAF-A0A1S8TA42-F1-model_v4_TED02","TED novel fold AF-A0A1S8TA42-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29367","Clostridium puniceum"]]},{"id":"NCBITaxon:29428","l":"Methylorubrum rhodinum","na":1,"nb":2,"a":[["TED%3AAF-A0A840ZF28-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A840ZF28-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29428","Methylorubrum rhodinum"],["NCBITaxon%3A1236969","Methylorubrum rhodinum JCM 2811"]]},{"id":"NCBITaxon:29447","l":"Xanthomonas albilineans","na":1,"nb":2,"a":[["TED%3AAF-A0A6P1SIK7-F1-model_v4_TED02","TED novel fold AF-A0A6P1SIK7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29447","Xanthomonas albilineans"],["NCBITaxon%3A380358","Xanthomonas albilineans GPE PC73"]]},{"id":"NCBITaxon:294710","l":"Proteiniphilum acetatigenes","na":1,"nb":2,"a":[["TED%3AAF-A0A101HH48-F1-model_v4_TED02","TED novel fold AF-A0A101HH48-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A294710","Proteiniphilum acetatigenes"],["NCBITaxon%3A1123008","Proteiniphilum acetatigenes DSM 18083"]]},{"id":"NCBITaxon:29482","l":"Salmonella enterica subsp. enterica serovar Abony","na":1,"nb":2,"a":[["Pfam%3APF03614","Repressor of phase-1 flagellin"]],"b":[["NCBITaxon%3A29482","Salmonella enterica subsp. enterica serovar Abony"],["NCBITaxon%3A1029983","Salmonella enterica subsp. enterica serovar Abony str. 0014"]]},{"id":"NCBITaxon:29522","l":"Brachyspira aalborgi","na":2,"nb":1,"a":[["TED%3AAF-A0A5C8E3N2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C8E3N2-F1-model_v4_TED01"],["TED%3AAF-A0A5C8E9C6-F1-model_v4_TED01","TED novel fold AF-A0A5C8E9C6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29522","Brachyspira aalborgi"]]},{"id":"NCBITaxon:29536","l":"Flavobacterium succinicans","na":1,"nb":2,"a":[["TED%3AAF-A0A1I4VV98-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I4VV98-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29536","Flavobacterium succinicans"],["NCBITaxon%3A1450525","Flavobacterium succinicans LMG 10402"]]},{"id":"NCBITaxon:29552","l":"Haploplasma axanthum","na":1,"nb":2,"a":[["TED%3AAF-A0A449BD20-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A449BD20-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29552","Haploplasma axanthum"],["NCBITaxon%3A1278311","Haploplasma axanthum ATCC 25176"]]},{"id":"NCBITaxon:29557","l":"Mycoplasmopsis gallinarum","na":1,"nb":2,"a":[["TED%3AAF-A0A168RG78-F1-model_v4_TED05","TED novel fold AF-A0A168RG78-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A29557","Mycoplasmopsis gallinarum"],["NCBITaxon%3A1122248","Mycoplasmopsis gallinarum DSM 19816"]]},{"id":"NCBITaxon:29559","l":"Metamycoplasma hyosynoviae","na":2,"nb":1,"a":[["TED%3AAF-A0A063YD07-F1-model_v4_TED02","TED novel fold AF-A0A063YD07-F1-model_v4_TED02"],["TED%3AAF-A0A4R7TZF5-F1-model_v4_TED02","TED novel fold AF-A0A4R7TZF5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29559","Metamycoplasma hyosynoviae"]]},{"id":"NCBITaxon:2969","l":"Oxyrrhis marina","na":2,"nb":1,"a":[["TED%3AAF-A0A7S4GPX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4GPX7-F1-model_v4_TED01"],["TED%3AAF-A0A7S4GMJ0-F1-model_v4_TED01","TED novel fold AF-A0A7S4GMJ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2969","Oxyrrhis marina"]]},{"id":"NCBITaxon:297244","l":"Chryseobacterium shigense","na":1,"nb":2,"a":[["TED%3AAF-A0A1N7IFX1-F1-model_v4_TED03","TED novel fold AF-A0A1N7IFX1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A297244","Chryseobacterium shigense"],["NCBITaxon%3A1255686","Chryseobacterium shigense PCAi_B2.3"]]},{"id":"NCBITaxon:29829","l":"Lipomyces starkeyi","na":1,"nb":2,"a":[["Pfam%3APF03702","Anhydro-N-acetylmuramic acid kinase"]],"b":[["NCBITaxon%3A29829","Lipomyces starkeyi"],["NCBITaxon%3A675824","Lipomyces starkeyi NRRL Y-11557"]]},{"id":"NCBITaxon:298657","l":"Pseudoalteromonas spongiae","na":1,"nb":2,"a":[["TED%3AAF-A0A5S3VMG7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5S3VMG7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A298657","Pseudoalteromonas spongiae"],["NCBITaxon%3A1117319","Pseudoalteromonas spongiae UST010723-006"]]},{"id":"NCBITaxon:29920","l":"Phytophthora cactorum","na":2,"nb":1,"a":[["TED%3AAF-A0A329STP2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A329STP2-F1-model_v4_TED02"],["TED%3AAF-A0A329SP24-F1-model_v4_TED02","TED novel fold AF-A0A329SP24-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29920","Phytophthora cactorum"]]},{"id":"NCBITaxon:299255","l":"Ferrimonas marina","na":1,"nb":2,"a":[["TED%3AAF-A0A1M5RZT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M5RZT8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A299255","Ferrimonas marina"],["NCBITaxon%3A1349749","Ferrimonas marina NBRC 102583"]]},{"id":"NCBITaxon:299767","l":"Enterobacter ludwigii","na":1,"nb":2,"a":[["TED%3AAF-W0BYN9-F1-model_v4_TED01","TED highly-symmetric fold AF-W0BYN9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A299767","Enterobacter ludwigii"]]},{"id":"NCBITaxon:300267","l":"Shigella dysenteriae serotype 1 (strain Sd197)","na":2,"nb":1,"a":[["Pfam%3APF07869","Protein of unknown function (DUF1656)"],["Pfam%3APF06872","EspG protein"]],"b":[["NCBITaxon%3A300267","Shigella dysenteriae Sd197"]]},{"id":"NCBITaxon:302484","l":"Haloferax larsenii","na":1,"nb":2,"a":[["TED%3AAF-A0A1H7N6T5-F1-model_v4_TED01","TED novel fold AF-A0A1H7N6T5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A302484","Haloferax larsenii"],["NCBITaxon%3A1227460","Haloferax larsenii JCM 13917"]]},{"id":"NCBITaxon:303698","l":"Penicillium steckii","na":2,"nb":1,"a":[["TED%3AAF-A0A1V6TCF9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1V6TCF9-F1-model_v4_TED03"],["TED%3AAF-A0A1V6U0I0-F1-model_v4_TED02","TED novel fold AF-A0A1V6U0I0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A303698","Penicillium steckii"]]},{"id":"NCBITaxon:304371","l":"Methanocella paludicola SANAE","na":1,"nb":2,"a":[["TED%3AAF-D1Z063-F1-model_v4_TED03","TED highly-symmetric fold AF-D1Z063-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A570267","Methanocella paludicola"],["NCBITaxon%3A304371","Methanocella paludicola SANAE"]]},{"id":"NCBITaxon:305507","l":"Algoriphagus locisalis","na":2,"nb":1,"a":[["TED%3AAF-A0A1I7E6M2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I7E6M2-F1-model_v4_TED02"],["TED%3AAF-A0A1I7CQ03-F1-model_v4_TED01","TED novel fold AF-A0A1I7CQ03-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A305507","Algoriphagus locisalis"]]},{"id":"NCBITaxon:306537","l":"Corynebacterium jeikeium K411","na":1,"nb":2,"a":[["TED%3AAF-Q4JSH9-F1-model_v4_TED02","TED novel fold AF-Q4JSH9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A38289","Corynebacterium jeikeium"],["NCBITaxon%3A306537","Corynebacterium jeikeium K411"]]},{"id":"NCBITaxon:307","l":"Pseudomonas sp. (strain KKS102)","na":2,"nb":1,"a":[["Pfam%3APF22632","Dihydroxybiphenyl dioxygenase BphC D1"],["PROSITE%3APS00082","Extradiol ring-cleavage dioxygenases signature"]],"b":[["NCBITaxon%3A307","Pseudomonas sp. KKS102"]]},{"id":"NCBITaxon:309798","l":"","na":1,"nb":2,"a":[["TED%3AAF-B5Y636-F1-model_v4_TED03","TED novel fold AF-B5Y636-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A35786","Coprothermobacter proteolyticus"],["NCBITaxon%3A309798","Coprothermobacter proteolyticus DSM 5265"]]},{"id":"NCBITaxon:309803","l":"","na":1,"nb":2,"a":[["Pfam%3APF01960","ArgJ family"]],"b":[["NCBITaxon%3A2337","Thermotoga neapolitana"],["NCBITaxon%3A309803","Thermotoga neapolitana DSM 4359"]]},{"id":"NCBITaxon:309807","l":"Salinibacter ruber DSM 13855","na":1,"nb":2,"a":[["Pfam%3APF06491","Disulphide isomerase"]],"b":[["NCBITaxon%3A146919","Salinibacter ruber"],["NCBITaxon%3A309807","Salinibacter ruber DSM 13855"]]},{"id":"NCBITaxon:311234","l":"Cellulomonas terrae","na":1,"nb":2,"a":[["TED%3AAF-A0A511JIA8-F1-model_v4_TED02","TED novel fold AF-A0A511JIA8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A311234","Cellulomonas terrae"],["NCBITaxon%3A1305858","Cellulomonas terrae JCM 14899"]]},{"id":"NCBITaxon:311334","l":"Chryseobacterium taeanense","na":1,"nb":2,"a":[["TED%3AAF-A0A1G8PE03-F1-model_v4_TED03","TED novel fold AF-A0A1G8PE03-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A311334","Chryseobacterium taeanense"],["NCBITaxon%3A1227361","Chryseobacterium taeanense ARB2"]]},{"id":"NCBITaxon:311403","l":"","na":1,"nb":2,"a":[["Pfam%3APF07969","Amidohydrolase family"]],"b":[["NCBITaxon%3A3025782","Gillisella ampelina"],["NCBITaxon%3A311403","Rhizobium rhizogenes K84"]]},{"id":"NCBITaxon:313594","l":"Polaribacter irgensii 23-P","na":1,"nb":2,"a":[["TED%3AAF-A4BXQ4-F1-model_v4_TED01","TED novel fold AF-A4BXQ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A531","Polaribacter irgensii"],["NCBITaxon%3A313594","Polaribacter irgensii 23-P"]]},{"id":"NCBITaxon:313595","l":"Psychroflexus torquis ATCC 700755","na":1,"nb":2,"a":[["TED%3AAF-K4IBR2-F1-model_v4_TED01","TED novel fold AF-K4IBR2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A57029","Psychroflexus torquis"],["NCBITaxon%3A313595","Psychroflexus torquis ATCC 700755"]]},{"id":"NCBITaxon:313603","l":"Maribacter sp. HTCC2170","na":2,"nb":1,"a":[["TED%3AAF-A4ARA8-F1-model_v4_TED01","TED novel fold AF-A4ARA8-F1-model_v4_TED01"],["TED%3AAF-A4ARA8-F1-model_v4_TED02","TED novel fold AF-A4ARA8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A313603","Maribacter sp. HTCC2170"]]},{"id":"NCBITaxon:314230","l":"Blastopirellula marina DSM 3645","na":1,"nb":2,"a":[["TED%3AAF-A3ZZX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A3ZZX2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A124","Blastopirellula marina"],["NCBITaxon%3A314230","Blastopirellula marina DSM 3645"]]},{"id":"NCBITaxon:314280","l":"Photobacterium profundum 3TCK","na":2,"nb":1,"a":[["TED%3AAF-Q1Z3V5-F1-model_v4_TED02","TED highly-symmetric fold AF-Q1Z3V5-F1-model_v4_TED02"],["TED%3AAF-Q1YWT9-F1-model_v4_TED01","TED novel fold AF-Q1YWT9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A314280","Photobacterium profundum 3TCK"]]},{"id":"NCBITaxon:315277","l":"Chlamydia trachomatis A/HAR-13","na":1,"nb":2,"a":[["Pfam%3APF05745","Chlamydia 15 kDa cysteine-rich outer membrane protein (CRPA)"]],"b":[["NCBITaxon%3A813","Chlamydia trachomatis"],["NCBITaxon%3A315277","Chlamydia trachomatis A/HAR-13"]]},{"id":"NCBITaxon:315358","l":"Spiroplasma eriocheiris","na":1,"nb":2,"a":[["TED%3AAF-A0A0H3XHP2-F1-model_v4_TED01","TED novel fold AF-A0A0H3XHP2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A315358","Spiroplasma eriocheiris"],["NCBITaxon%3A743698","Spiroplasma eriocheiris CCTCC M 207170"]]},{"id":"NCBITaxon:315730","l":"Bacillus mycoides (strain KBAB4)","na":2,"nb":1,"a":[["Pfam%3APF11023","Zinc-ribbon containing domain"],["Pfam%3APF07155","ECF-type riboflavin transporter, S component"]],"b":[["NCBITaxon%3A315730","Bacillus mycoides KBAB4"]]},{"id":"NCBITaxon:316274","l":"Herpetosiphon aurantiacus DSM 785","na":1,"nb":2,"a":[["TED%3AAF-A9AZN6-F1-model_v4_TED02","TED highly-symmetric fold AF-A9AZN6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A65","Herpetosiphon aurantiacus"],["NCBITaxon%3A316274","Herpetosiphon aurantiacus DSM 785"]]},{"id":"NCBITaxon:317010","l":"Enterococcus canintestini","na":1,"nb":2,"a":[["TED%3AAF-A0A1L8R2Z2-F1-model_v4_TED01","TED novel fold AF-A0A1L8R2Z2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1448267","Corynebacterium nasicanis"],["NCBITaxon%3A317010","Enterococcus canintestini"]]},{"id":"NCBITaxon:317655","l":"Sphingopyxis alaskensis RB2256","na":1,"nb":2,"a":[["Pfam%3APF10755","Protein of unknown function (DUF2585)"]],"b":[["NCBITaxon%3A117207","Sphingopyxis alaskensis"],["NCBITaxon%3A317655","Sphingopyxis alaskensis RB2256"]]},{"id":"NCBITaxon:318167","l":"Shewanella frigidimarina (strain NCIMB 400)","na":2,"nb":1,"a":[["Pfam%3APF14537","Cytochrome c3"],["TED%3AAF-Q080H2-F1-model_v4_TED02","TED novel fold AF-Q080H2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A318167","Shewanella frigidimarina NCIMB 400"]]},{"id":"NCBITaxon:318683","l":"Gluconobacter albidus","na":1,"nb":2,"a":[["TED%3AAF-A0A149TK51-F1-model_v4_TED01","TED novel fold AF-A0A149TK51-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A318683","Gluconobacter albidus"],["NCBITaxon%3A1307944","Gluconobacter albidus NBRC 3250"]]},{"id":"NCBITaxon:318829","l":"Magnaporthe oryzae","na":2,"nb":1,"a":[["TED%3AAF-A0A4P7NAU2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P7NAU2-F1-model_v4_TED01"],["TED%3AAF-A0A4P7MZB7-F1-model_v4_TED02","TED novel fold AF-A0A4P7MZB7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A318829","Pyricularia oryzae"]]},{"id":"NCBITaxon:319017","l":"Bradyrhizobium sp. WSM471","na":2,"nb":1,"a":[["TED%3AAF-H5YAF1-F1-model_v4_TED02","TED highly-symmetric fold AF-H5YAF1-F1-model_v4_TED02"],["TED%3AAF-H5Y776-F1-model_v4_TED02","TED novel fold AF-H5Y776-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A319017","Bradyrhizobium sp. WSM471"]]},{"id":"NCBITaxon:319224","l":"Shewanella putrefaciens CN-32","na":2,"nb":1,"a":[["Pfam%3APF17810","Arginine decarboxylase helical bundle domain"],["Pfam%3APF17944","Arginine decarboxylase C-terminal helical extension"]],"b":[["NCBITaxon%3A319224","Shewanella putrefaciens CN-32"]]},{"id":"NCBITaxon:319795","l":"","na":1,"nb":2,"a":[["Pfam%3APF12747","DdrB-like protein"]],"b":[["NCBITaxon%3A68909","Deinococcus geothermalis"],["NCBITaxon%3A319795","Deinococcus geothermalis DSM 11300"]]},{"id":"NCBITaxon:32052","l":"Synechococcus sp. (strain WH8020)","na":2,"nb":1,"a":[["Pfam%3APF10847","Protein of unknown function (DUF2656)"],["TED%3AAF-A0A0H4B904-F1-model_v4_TED02","TED novel fold AF-A0A0H4B904-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A32052","Synechococcus sp. WH 8020"]]},{"id":"NCBITaxon:320771","l":"","na":2,"nb":1,"a":[["TED%3AAF-B9XAB4-F1-model_v4_TED02","TED highly-symmetric fold AF-B9XAB4-F1-model_v4_TED02"],["TED%3AAF-B9XFV1-F1-model_v4_TED01","TED highly-symmetric fold AF-B9XFV1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A320771","Pedosphaera parvula Ellin514"]]},{"id":"NCBITaxon:320912","l":"Maribacter dokdonensis","na":1,"nb":2,"a":[["TED%3AAF-A0A1H4M5S7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H4M5S7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A320912","Maribacter dokdonensis"],["NCBITaxon%3A1300346","Maribacter dokdonensis DSW-8"]]},{"id":"NCBITaxon:321317","l":"Sphaerisporangium rubeum","na":2,"nb":1,"a":[["TED%3AAF-A0A7X0IGY2-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A7X0IGY2-F1-model_v4_TED06"],["TED%3AAF-A0A7X0MAZ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X0MAZ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A321317","Sphaerisporangium rubeum"]]},{"id":"NCBITaxon:321662","l":"Pseudomonas moraviensis","na":1,"nb":2,"a":[["TED%3AAF-A0A423NRI6-F1-model_v4_TED06","TED novel fold AF-A0A423NRI6-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A321662","Pseudomonas moraviensis"],["NCBITaxon%3A1689450","Pseudomonas moraviensis subsp. stanleyae"]]},{"id":"NCBITaxon:322710","l":"Azotobacter vinelandii DJ","na":2,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_Orn_monoox","Metallophore-associated ornithine N5-monooxygenase family"],["proteintraitsmech%3AELIFE109154_PvdP","Pyoverdine chromophore maturation tyrosinase family"]],"b":[["NCBITaxon%3A322710","Azotobacter vinelandii DJ"]]},{"id":"NCBITaxon:323259","l":"Methanospirillum hungatei JF-1","na":1,"nb":2,"a":[["Pfam%3APF01864","CDP-archaeol synthase"]],"b":[["NCBITaxon%3A2203","Methanospirillum hungatei"],["NCBITaxon%3A323259","Methanospirillum hungatei JF-1"]]},{"id":"NCBITaxon:323426","l":"Jezberella montanilacus","na":2,"nb":1,"a":[["TED%3AAF-A0A2T0XBZ0-F1-model_v4_TED02","TED novel fold AF-A0A2T0XBZ0-F1-model_v4_TED02"],["TED%3AAF-A0A2T0XCA1-F1-model_v4_TED02","TED novel fold AF-A0A2T0XCA1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A323426","Jezberella montanilacus"]]},{"id":"NCBITaxon:323545","l":"Xylaria multiplex","na":2,"nb":1,"a":[["TED%3AAF-A0A7C8ILS5-F1-model_v4_TED01","TED novel fold AF-A0A7C8ILS5-F1-model_v4_TED01"],["TED%3AAF-A0A7C8MZ20-F1-model_v4_TED02","TED novel fold AF-A0A7C8MZ20-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A323545","Xylaria multiplex"]]},{"id":"NCBITaxon:325240","l":"","na":1,"nb":2,"a":[["Pfam%3APF04337","Protein of unknown function, DUF480"]],"b":[["NCBITaxon%3A62322","Shewanella baltica"],["NCBITaxon%3A325240","Shewanella baltica OS155"]]},{"id":"NCBITaxon:326424","l":"Frankia alni ACN14a","na":1,"nb":2,"a":[["Pfam%3APF14403","Circularly permuted ATP-grasp type 2"]],"b":[["NCBITaxon%3A1859","Frankia alni"],["NCBITaxon%3A326424","Frankia alni ACN14a"]]},{"id":"NCBITaxon:326427","l":"","na":1,"nb":2,"a":[["Pfam%3APF22039","Imidazolonepropionase-like composite domain, bacteria"]],"b":[["NCBITaxon%3A152260","Chloroflexus aggregans"],["NCBITaxon%3A326427","Chloroflexus aggregans DSM 9485"]]},{"id":"NCBITaxon:327575","l":"Capnocytophaga leadbetteri","na":1,"nb":2,"a":[["TED%3AAF-A0A250FA39-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A250FA39-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A327575","Capnocytophaga leadbetteri"],["NCBITaxon%3A1410028","Capnocytophaga leadbetteri HMP_JCVI_SC0215"]]},{"id":"NCBITaxon:331678","l":"Chlorobium phaeobacteroides (strain BS1)","na":2,"nb":1,"a":[["Pfam%3APF28537","Probable trigger factor, FKBP-like domain"],["TED%3AAF-B3ENX6-F1-model_v4_TED04","TED highly-symmetric fold AF-B3ENX6-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A331678","Chlorobium phaeobacteroides BS1"]]},{"id":"NCBITaxon:332186","l":"Shewanella xiamenensis","na":1,"nb":2,"a":[["TED%3AAF-A0A1E3UT11-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1E3UT11-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A24","Shewanella putrefaciens"],["NCBITaxon%3A332186","Shewanella xiamenensis"]]},{"id":"NCBITaxon:333367","l":"Enterocloster asparagiformis","na":1,"nb":2,"a":[["TED%3AAF-A0A413F8C9-F1-model_v4_TED04","TED novel fold AF-A0A413F8C9-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A518636","[Clostridium] asparagiforme DSM 15981"],["NCBITaxon%3A333367","Enterocloster asparagiformis"]]},{"id":"NCBITaxon:333849","l":"","na":2,"nb":1,"a":[["Pfam%3APF08546","Ketopantoate reductase PanE/ApbA C terminal"],["Pfam%3APF02558","Ketopantoate reductase PanE/ApbA"]],"b":[["NCBITaxon%3A333849","Enterococcus faecium DO"]]},{"id":"NCBITaxon:334380","l":"Orientia tsutsugamushi (strain Ikeda)","na":2,"nb":1,"a":[["Pfam%3APF01745","Isopentenyl transferase"],["TED%3AAF-B3CRH9-F1-model_v4_TED02","TED highly-symmetric fold AF-B3CRH9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A334380","Orientia tsutsugamushi str. Ikeda"]]},{"id":"NCBITaxon:335020","l":"Neomesorhizobium albiziae","na":1,"nb":2,"a":[["TED%3AAF-A0A1I4BW12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I4BW12-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1122227","Mesorhizobium albiziae DSM 21822"],["NCBITaxon%3A335020","Neomesorhizobium albiziae"]]},{"id":"NCBITaxon:335284","l":"Psychrobacter cryohalolentis K5","na":1,"nb":2,"a":[["Pfam%3APF10414","Sirohaem synthase dimerisation region"]],"b":[["NCBITaxon%3A330922","Psychrobacter cryohalolentis"],["NCBITaxon%3A335284","Psychrobacter cryohalolentis K5"]]},{"id":"NCBITaxon:336203","l":"Sphingobium fuliginis","na":1,"nb":2,"a":[["TED%3AAF-A0A4Q4J272-F1-model_v4_TED01","TED novel fold AF-A0A4Q4J272-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A336203","Sphingobium fuliginis"],["NCBITaxon%3A1208342","Sphingobium fuliginis ATCC 27551"]]},{"id":"NCBITaxon:338584","l":"Polymorphospora rubra","na":2,"nb":1,"a":[["TED%3AAF-A0A810NDK9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A810NDK9-F1-model_v4_TED01"],["TED%3AAF-A0A810N2K6-F1-model_v4_TED01","TED novel fold AF-A0A810N2K6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A338584","Polymorphospora rubra"]]},{"id":"NCBITaxon:338969","l":"Rhodoferax ferrireducens T118","na":1,"nb":2,"a":[["Pfam%3APF11154","Protein of unknown function (DUF2934)"]],"b":[["NCBITaxon%3A192843","Rhodoferax ferrireducens"],["NCBITaxon%3A338969","Rhodoferax ferrireducens T118"]]},{"id":"NCBITaxon:33899","l":"Streptomyces galilaeus","na":1,"nb":2,"a":[["Pfam%3APF21036","Erythromycin biosynthesis protein CIII-like, N-terminal domain"]],"b":[["NCBITaxon%3A67280","Streptomyces bobili"],["NCBITaxon%3A33899","Streptomyces galilaeus"]]},{"id":"NCBITaxon:33922","l":"Mycoplasmopsis agassizii","na":2,"nb":1,"a":[["TED%3AAF-A0A1W1X4W5-F1-model_v4_TED01","TED novel fold AF-A0A1W1X4W5-F1-model_v4_TED01"],["TED%3AAF-A0A1W1XA50-F1-model_v4_TED02","TED novel fold AF-A0A1W1XA50-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A33922","Mycoplasmopsis agassizii"]]},{"id":"NCBITaxon:33950","l":"Thermoanaerobacterium thermosulfurigenes","na":2,"nb":1,"a":[["Pfam%3APF18565","Glycoside hydrolase family 2 C-terminal domain 5"],["Pfam%3APF00395","S-layer homology domain"]],"b":[["NCBITaxon%3A33950","Thermoanaerobacterium thermosulfurigenes"]]},{"id":"NCBITaxon:342616","l":"","na":2,"nb":1,"a":[["Pfam%3APF26337","Glucosyltransferase 3-like, C-terminal domain"],["Pfam%3APF26334","Glucosyltransferase 3-like, N-terminal domain"]],"b":[["NCBITaxon%3A342616","Streptococcus agalactiae COH1"]]},{"id":"NCBITaxon:34475","l":"Rhodofomes roseus","na":2,"nb":1,"a":[["TED%3AAF-A0A4Y9Y9S1-F1-model_v4_TED01","TED novel fold AF-A0A4Y9Y9S1-F1-model_v4_TED01"],["TED%3AAF-A0A4Y9YQ77-F1-model_v4_TED02","TED novel fold AF-A0A4Y9YQ77-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A34475","Rhodofomes roseus"]]},{"id":"NCBITaxon:348837","l":"Spironucleus salmonicida","na":2,"nb":1,"a":[["TED%3AAF-V6LUE2-F1-model_v4_TED01","TED highly-symmetric fold AF-V6LUE2-F1-model_v4_TED01"],["TED%3AAF-V6LDU7-F1-model_v4_TED02","TED novel fold AF-V6LDU7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A348837","Spironucleus salmonicida"]]},{"id":"NCBITaxon:348901","l":"Cercospora zeina","na":2,"nb":1,"a":[["TED%3AAF-A0A2I0RIM7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I0RIM7-F1-model_v4_TED01"],["TED%3AAF-A0A2I0RWG4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I0RWG4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A348901","Cercospora zeina"]]},{"id":"NCBITaxon:349102","l":"Cereibacter sphaeroides (strain ATCC 17025 / ATH 2.4.3)","na":2,"nb":1,"a":[["Pfam%3APF13286","Phosphohydrolase-associated domain"],["Pfam%3APF04962","KduI/IolB family"]],"b":[["NCBITaxon%3A349102","Cereibacter sphaeroides ATCC 17025"]]},{"id":"NCBITaxon:349215","l":"Micavibrio aeruginosavorus EPB","na":2,"nb":1,"a":[["TED%3AAF-M4VW25-F1-model_v4_TED02","TED highly-symmetric fold AF-M4VW25-F1-model_v4_TED02"],["TED%3AAF-M4VIZ9-F1-model_v4_TED01","TED novel fold AF-M4VIZ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A349215","Micavibrio aeruginosavorus EPB"]]},{"id":"NCBITaxon:350688","l":"Alkaliphilus oremlandii OhILAs","na":1,"nb":2,"a":[["Pfam%3APF18955","Domain of unknown function (DUF5698)"]],"b":[["NCBITaxon%3A461876","Alkaliphilus oremlandii"],["NCBITaxon%3A350688","Alkaliphilus oremlandii OhILAs"]]},{"id":"NCBITaxon:350893","l":"Flavobacterium daejeonense","na":1,"nb":2,"a":[["Pfam%3APF10137","CAP12/Pycsar effector protein, TIR domain"]],"b":[["NCBITaxon%3A350893","Flavobacterium daejeonense"],["NCBITaxon%3A1121887","Flavobacterium daejeonense DSM 17708"]]},{"id":"NCBITaxon:351052","l":"Alkalilimnicola ehrlichii","na":1,"nb":2,"a":[["TED%3AAF-A0A3E0WF12-F1-model_v4_TED02","TED novel fold AF-A0A3E0WF12-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A351052","Alkalilimnicola ehrlichii"],["NCBITaxon%3A187272","Alkalilimnicola ehrlichii MLHE-1"]]},{"id":"NCBITaxon:351605","l":"","na":1,"nb":2,"a":[["TED%3AAF-A5GE78-F1-model_v4_TED01","TED highly-symmetric fold AF-A5GE78-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A351604","Geotalea uraniireducens"],["NCBITaxon%3A351605","Geotalea uraniireducens Rf4"]]},{"id":"NCBITaxon:351607","l":"Acidothermus cellulolyticus 11B","na":1,"nb":2,"a":[["Pfam%3APF10647","Lipoprotein LpqB beta-propeller domain"]],"b":[["NCBITaxon%3A28049","Acidothermus cellulolyticus"],["NCBITaxon%3A351607","Acidothermus cellulolyticus 11B"]]},{"id":"NCBITaxon:353852","l":"Mycoplasma nasistruthionis","na":2,"nb":1,"a":[["TED%3AAF-A0A4Y6I7G8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y6I7G8-F1-model_v4_TED01"],["TED%3AAF-A0A5B7XW33-F1-model_v4_TED03","TED novel fold AF-A0A5B7XW33-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A353852","Mycoplasma nasistruthionis"]]},{"id":"NCBITaxon:356829","l":"Bifidobacterium tsurumiense","na":1,"nb":2,"a":[["TED%3AAF-A0A6L5X0P9-F1-model_v4_TED01","TED novel fold AF-A0A6L5X0P9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A356829","Bifidobacterium tsurumiense"],["NCBITaxon%3A1121112","Bifidobacterium tsurumiense DSM 17777"]]},{"id":"NCBITaxon:35761","l":"Nocardioides sp.","na":1,"nb":2,"a":[["TED%3AAF-A0A2E8Z449-F1-model_v4_TED01","TED novel fold AF-A0A2E8Z449-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A35761","Nocardioides sp."],["NCBITaxon%3A2568655","Nocardioides vastitatis"]]},{"id":"NCBITaxon:35788","l":"Rickettsia africae","na":1,"nb":2,"a":[["Pfam%3APF12574","120 KDa Rickettsia surface antigen"]],"b":[["NCBITaxon%3A35788","Rickettsia africae"],["NCBITaxon%3A347255","Rickettsia africae ESF-5"]]},{"id":"NCBITaxon:359131","l":"Streptomyces rubellomurinus","na":1,"nb":2,"a":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"]],"b":[["NCBITaxon%3A359131","Streptomyces rubellomurinus"],["NCBITaxon%3A1615590","Streptomyces rubellomurinus subsp. indigoferus"]]},{"id":"NCBITaxon:359787","l":"Staphylococcus aureus (strain JH1)","na":2,"nb":1,"a":[["Pfam%3APF04647","Accessory gene regulator B"],["Pfam%3APF09902","Uncharacterized protein conserved in bacteria (DUF2129)"]],"b":[["NCBITaxon%3A359787","Staphylococcus aureus subsp. aureus JH1"]]},{"id":"NCBITaxon:360095","l":"","na":1,"nb":2,"a":[["Pfam%3APF06776","Invasion associated locus B (IalB) protein"]],"b":[["NCBITaxon%3A774","Bartonella bacilliformis"],["NCBITaxon%3A360095","Bartonella bacilliformis KC583"]]},{"id":"NCBITaxon:362787","l":"Candidatus Protochlamydia amoebophila","na":1,"nb":2,"a":[["TED%3AAF-A0A0C1H7Y9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0C1H7Y9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A362787","Candidatus Protochlamydia amoebophila"],["NCBITaxon%3A264201","Candidatus Protochlamydia amoebophila UWE25"]]},{"id":"NCBITaxon:366618","l":"Haematobacter genomosp. 1","na":1,"nb":2,"a":[["TED%3AAF-A0A212ACG5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A212ACG5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A366618","Haematobacter genomosp. 1"],["NCBITaxon%3A2953762","Haematobacter sp."]]},{"id":"NCBITaxon:36818","l":"Streptomyces subrutilus","na":2,"nb":1,"a":[["TED%3AAF-A0A1E5P0P4-F1-model_v4_TED03","TED novel fold AF-A0A1E5P0P4-F1-model_v4_TED03"],["TED%3AAF-A0A1E5PTA7-F1-model_v4_TED01","TED novel fold AF-A0A1E5PTA7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A36818","Streptomyces subrutilus"]]},{"id":"NCBITaxon:368408","l":"","na":1,"nb":2,"a":[["Pfam%3APF04019","Protein of unknown function (DUF359)"]],"b":[["NCBITaxon%3A2269","Thermofilum pendens"],["NCBITaxon%3A368408","Thermofilum pendens Hrk 5"]]},{"id":"NCBITaxon:36849","l":"Oxobacter pfennigii","na":2,"nb":1,"a":[["TED%3AAF-A0A0P8WAY7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0P8WAY7-F1-model_v4_TED03"],["TED%3AAF-A0A0P8YVE3-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A0P8YVE3-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A36849","Oxobacter pfennigii"]]},{"id":"NCBITaxon:370038","l":"Oceanidesulfovibrio marinus","na":2,"nb":1,"a":[["TED%3AAF-A0A6P1Z9Y9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6P1Z9Y9-F1-model_v4_TED02"],["TED%3AAF-A0A6P1ZER6-F1-model_v4_TED01","TED novel fold AF-A0A6P1ZER6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A370038","Oceanidesulfovibrio marinus"]]},{"id":"NCBITaxon:370973","l":"Runella defluvii","na":1,"nb":2,"a":[["TED%3AAF-A0A7W5ZNZ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W5ZNZ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A370973","Runella defluvii"],["NCBITaxon%3A1123076","Runella defluvii DSM 17976"]]},{"id":"NCBITaxon:373668","l":"Chryseobacterium ureilyticum","na":1,"nb":2,"a":[["TED%3AAF-A0A1N7Q4L0-F1-model_v4_TED01","TED novel fold AF-A0A1N7Q4L0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A373668","Chryseobacterium ureilyticum"],["NCBITaxon%3A239","Flavobacterium sp."]]},{"id":"NCBITaxon:374047","l":"Helicotheca tamesis","na":2,"nb":1,"a":[["TED%3AAF-A0A7S2HHS1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S2HHS1-F1-model_v4_TED03"],["TED%3AAF-A0A7S2HE61-F1-model_v4_TED01","TED novel fold AF-A0A7S2HE61-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A374047","Helicotheca tamesis"]]},{"id":"NCBITaxon:37482","l":"Laceyella sacchari","na":1,"nb":2,"a":[["TED%3AAF-A0A4R4AMW2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R4AMW2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A37482","Laceyella sacchari"],["NCBITaxon%3A1341151","Laceyella sacchari 1-1"]]},{"id":"NCBITaxon:374981","l":"Synechococcus sp. PCC 7003","na":2,"nb":1,"a":[["TED%3AAF-A0A1B1TQ28-F1-model_v4_TED01","TED novel fold AF-A0A1B1TQ28-F1-model_v4_TED01"],["TED%3AAF-A0A1B1TRQ9-F1-model_v4_TED01","TED novel fold AF-A0A1B1TRQ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A374981","Picosynechococcus sp. PCC 7003"]]},{"id":"NCBITaxon:375286","l":"","na":2,"nb":1,"a":[["Pfam%3APF06299","Protein of unknown function (DUF1045)"],["Pfam%3APF04361","Protein of unknown function (DUF494)"]],"b":[["NCBITaxon%3A375286","Janthinobacterium sp. Marseille"]]},{"id":"NCBITaxon:375451","l":"Roseobacter denitrificans OCh 114","na":1,"nb":2,"a":[["TED%3AAF-Q164W9-F1-model_v4_TED02","TED highly-symmetric fold AF-Q164W9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2434","Roseobacter denitrificans"],["NCBITaxon%3A375451","Roseobacter denitrificans OCh 114"]]},{"id":"NCBITaxon:376427","l":"","na":1,"nb":2,"a":[["TED%3AAF-A0A1G8XFR9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G8XFR9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A376427","Billgrantia gudaonensis"],["NCBITaxon%3A2697581","Halomonas sambharensis"]]},{"id":"NCBITaxon:377629","l":"Teredinibacter turnerae T7901","na":1,"nb":2,"a":[["TED%3AAF-C5BKS7-F1-model_v4_TED02","TED novel fold AF-C5BKS7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2426","Teredinibacter turnerae"],["NCBITaxon%3A377629","Teredinibacter turnerae T7901"]]},{"id":"NCBITaxon:379097","l":"Vibrio sinaloensis","na":1,"nb":2,"a":[["Pfam%3APF08787","Alginate lyase"]],"b":[["NCBITaxon%3A379097","Vibrio sinaloensis"],["NCBITaxon%3A945550","Vibrio sinaloensis DSM 21326"]]},{"id":"NCBITaxon:384602","l":"Micrococcus flavus","na":1,"nb":2,"a":[["TED%3AAF-A0A7W7PAI2-F1-model_v4_TED01","TED novel fold AF-A0A7W7PAI2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A384602","Micrococcus flavus"],["NCBITaxon%3A1271","Micrococcus sp."]]},{"id":"NCBITaxon:384765","l":"Roseibium aggregatum IAM 12614","na":1,"nb":2,"a":[["Pfam%3APF04199","Putative cyclase"]],"b":[["NCBITaxon%3A187304","Roseibium aggregatum"],["NCBITaxon%3A384765","Roseibium aggregatum IAM 12614"]]},{"id":"NCBITaxon:388399","l":"Sagittula stellata E-37","na":1,"nb":2,"a":[["TED%3AAF-A3JXK6-F1-model_v4_TED02","TED novel fold AF-A3JXK6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A52603","Sagittula stellata"],["NCBITaxon%3A388399","Sagittula stellata E-37"]]},{"id":"NCBITaxon:390874","l":"","na":1,"nb":2,"a":[["Pfam%3APF16369","C-terminal lipocalin-like domain"]],"b":[["NCBITaxon%3A93929","Thermotoga petrophila"],["NCBITaxon%3A390874","Thermotoga petrophila RKU-1"]]},{"id":"NCBITaxon:391038","l":"Paraburkholderia phymatum STM815","na":1,"nb":2,"a":[["PROSITE%3APS00921","Nitrilases / cyanide hydratase active site signature"]],"b":[["NCBITaxon%3A148447","Paraburkholderia phymatum"],["NCBITaxon%3A391038","Paraburkholderia phymatum STM815"]]},{"id":"NCBITaxon:391623","l":"","na":1,"nb":2,"a":[["Pfam%3APF08494","DEAD/H associated"]],"b":[["NCBITaxon%3A55802","Thermococcus barophilus"],["NCBITaxon%3A391623","Thermococcus barophilus MP"]]},{"id":"NCBITaxon:391936","l":"Isoalcanivorax pacificus W11-5","na":1,"nb":2,"a":[["TED%3AAF-A0A0B4XPB7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0B4XPB7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1306787","Isoalcanivorax pacificus"],["NCBITaxon%3A391936","Isoalcanivorax pacificus W11-5"]]},{"id":"NCBITaxon:392015","l":"Paenalicyclobacillus macrosporangiidus","na":1,"nb":2,"a":[["TED%3AAF-A0A1I7LHN3-F1-model_v4_TED02","TED novel fold AF-A0A1I7LHN3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1382304","Alicyclobacillus macrosporangiidus CPP55"],["NCBITaxon%3A392015","Paenalicyclobacillus macrosporangiidus"]]},{"id":"NCBITaxon:392593","l":"Inhella inkyongensis","na":2,"nb":1,"a":[["TED%3AAF-A0A840S1N4-F1-model_v4_TED02","TED novel fold AF-A0A840S1N4-F1-model_v4_TED02"],["TED%3AAF-A0A840S2L1-F1-model_v4_TED01","TED novel fold AF-A0A840S2L1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A392593","Inhella inkyongensis"]]},{"id":"NCBITaxon:392828","l":"Actinomadura chibensis","na":1,"nb":2,"a":[["TED%3AAF-A0A5D0NHS4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5D0NHS4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A392828","Actinomadura chibensis"],["NCBITaxon%3A1220554","Actinomadura chibensis NBRC 106107"]]},{"id":"NCBITaxon:393003","l":"Chitinophaga ginsengisegetis","na":1,"nb":2,"a":[["TED%3AAF-A0A1T5N2Y5-F1-model_v4_TED01","TED novel fold AF-A0A1T5N2Y5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A393003","Chitinophaga ginsengisegetis"],["NCBITaxon%3A1133597","Chitinophaga ginsengisegetis KLC07"]]},{"id":"NCBITaxon:393480","l":"Fusobacterium polymorphum ATCC 10953","na":1,"nb":2,"a":[["TED%3AAF-A5TXK7-F1-model_v4_TED01","TED highly-symmetric fold AF-A5TXK7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A76857","Fusobacterium polymorphum"],["NCBITaxon%3A393480","Fusobacterium polymorphum ATCC 10953"]]},{"id":"NCBITaxon:393595","l":"Alcanivorax borkumensis SK2","na":1,"nb":2,"a":[["TED%3AAF-Q0VNH7-F1-model_v4_TED01","TED highly-symmetric fold AF-Q0VNH7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A59754","Alcanivorax borkumensis"],["NCBITaxon%3A393595","Alcanivorax borkumensis SK2"]]},{"id":"NCBITaxon:394098","l":"Bhargavaea cecembensis","na":1,"nb":2,"a":[["TED%3AAF-A0A165GX10-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A165GX10-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A394098","Bhargavaea cecembensis"],["NCBITaxon%3A1235279","Bhargavaea cecembensis DSE10"]]},{"id":"NCBITaxon:394751","l":"Pseudoalteromonas arctica","na":1,"nb":2,"a":[["TED%3AAF-A0A855H5N4-F1-model_v4_TED01","TED novel fold AF-A0A855H5N4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A394751","Pseudoalteromonas arctica"],["NCBITaxon%3A1117313","Pseudoalteromonas arctica A 37-1-2"]]},{"id":"NCBITaxon:394935","l":"Chromobacterium haemolyticum","na":1,"nb":2,"a":[["TED%3AAF-A0A1W0CCE1-F1-model_v4_TED01","TED novel fold AF-A0A1W0CCE1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A394935","Chromobacterium haemolyticum"],["NCBITaxon%3A1121283","Chromobacterium haemolyticum DSM 19808"]]},{"id":"NCBITaxon:395019","l":"Burkholderia multivorans ATCC 17616","na":1,"nb":2,"a":[["TED%3AAF-A0A0H3KMX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0H3KMX2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A87883","Burkholderia multivorans"],["NCBITaxon%3A395019","Burkholderia multivorans ATCC 17616"]]},{"id":"NCBITaxon:395494","l":"","na":2,"nb":1,"a":[["TED%3AAF-D9SCL7-F1-model_v4_TED01","TED highly-symmetric fold AF-D9SCL7-F1-model_v4_TED01"],["TED%3AAF-D9SFM7-F1-model_v4_TED01","TED highly-symmetric fold AF-D9SFM7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A395494","Gallionella capsiferriformans ES-2"]]},{"id":"NCBITaxon:396014","l":"Brachybacterium phenoliresistens","na":1,"nb":2,"a":[["TED%3AAF-Z9JSX2-F1-model_v4_TED01","TED highly-symmetric fold AF-Z9JSX2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A396014","Brachybacterium phenoliresistens"],["NCBITaxon%3A1460426","Brachybacterium phenoliresistens W13A50"]]},{"id":"NCBITaxon:396598","l":"Paraburkholderia graminis C4D1M","na":1,"nb":2,"a":[["proteintraitsmech%3AELIFE109154_GrbE","GrbE-type graminine biosynthesis protein family"]],"b":[["NCBITaxon%3A60548","Paraburkholderia graminis"],["NCBITaxon%3A396598","Paraburkholderia graminis C4D1M"]]},{"id":"NCBITaxon:39687","l":"Mycolicibacterium austroafricanum","na":1,"nb":2,"a":[["TED%3AAF-A0A2S8LBV1-F1-model_v4_TED02","TED novel fold AF-A0A2S8LBV1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A39687","Mycolicibacterium austroafricanum"],["NCBITaxon%3A350058","Mycolicibacterium vanbaalenii PYR-1"]]},{"id":"NCBITaxon:39691","l":"Mycolicibacterium moriokaense","na":2,"nb":1,"a":[["TED%3AAF-A0A370D086-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A370D086-F1-model_v4_TED01"],["TED%3AAF-A0A370D4B9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A370D4B9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39691","Mycolicibacterium moriokaense"]]},{"id":"NCBITaxon:39950","l":"Dialister pneumosintes","na":1,"nb":2,"a":[["TED%3AAF-A0A1B3WC02-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B3WC02-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39950","Dialister pneumosintes"],["NCBITaxon%3A1357393","Dialister pneumosintes CD1_D5_FAA_6"]]},{"id":"NCBITaxon:399549","l":"Metallosphaera sedula DSM 5348","na":1,"nb":2,"a":[["Pfam%3APF18195","GatD N-terminal domain"]],"b":[["NCBITaxon%3A43687","Metallosphaera sedula"],["NCBITaxon%3A399549","Metallosphaera sedula DSM 5348"]]},{"id":"NCBITaxon:399579","l":"Thermogymnomonas acidicola","na":1,"nb":2,"a":[["TED%3AAF-A0A830FZ95-F1-model_v4_TED01","TED novel fold AF-A0A830FZ95-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A399579","Thermogymnomonas acidicola"],["NCBITaxon%3A1295120","Thermogymnomonas acidicola JCM 13583"]]},{"id":"NCBITaxon:39962","l":"Legionella moravica","na":1,"nb":2,"a":[["TED%3AAF-A0A378JTS2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A378JTS2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39962","Legionella moravica"],["NCBITaxon%3A1122165","Legionella moravica DSM 19234"]]},{"id":"NCBITaxon:399741","l":"Serratia proteamaculans 568","na":2,"nb":1,"a":[["Pfam%3APF09012","FeoC like transcriptional regulator"],["Pfam%3APF05488","PAAR motif"]],"b":[["NCBITaxon%3A399741","Serratia proteamaculans 568"]]},{"id":"NCBITaxon:401053","l":"Terriglobus saanensis SP1PR4","na":1,"nb":2,"a":[["TED%3AAF-E8UZX5-F1-model_v4_TED02","TED novel fold AF-E8UZX5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A870903","Terriglobus saanensis"],["NCBITaxon%3A401053","Terriglobus saanensis SP1PR4"]]},{"id":"NCBITaxon:40318","l":"Streptomyces nodosus","na":1,"nb":2,"a":[["TED%3AAF-A0A0B5DA96-F1-model_v4_TED01","TED novel fold AF-A0A0B5DA96-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A40318","Streptomyces nodosus"],["NCBITaxon%3A222892","Streptomyces nodosus subsp. asukaensis"]]},{"id":"NCBITaxon:403833","l":"Petrotoga mobilis SJ95","na":1,"nb":2,"a":[["Pfam%3APF19328","2,4-diaminopentanoate dehydrogenase C-terminal domain"]],"b":[["NCBITaxon%3A69499","Petrotoga mobilis"],["NCBITaxon%3A403833","Petrotoga mobilis SJ95"]]},{"id":"NCBITaxon:404941","l":"Mycobacteroides salmoniphilum","na":2,"nb":1,"a":[["TED%3AAF-A0A4R8SEB1-F1-model_v4_TED02","TED novel fold AF-A0A4R8SEB1-F1-model_v4_TED02"],["TED%3AAF-A0A4R8SGK3-F1-model_v4_TED01","TED novel fold AF-A0A4R8SGK3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A404941","Mycobacteroides salmoniphilum"]]},{"id":"NCBITaxon:405564","l":"Actinopolyspora xinjiangensis","na":2,"nb":1,"a":[["TED%3AAF-A0A1H0Q6G4-F1-model_v4_TED02","TED novel fold AF-A0A1H0Q6G4-F1-model_v4_TED02"],["TED%3AAF-A0A1H0U3N3-F1-model_v4_TED01","TED novel fold AF-A0A1H0U3N3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A405564","Actinopolyspora xinjiangensis"]]},{"id":"NCBITaxon:40559","l":"Botrytis cinerea","na":1,"nb":2,"a":[["Pfam%3APF08883","Dopa 4,5-dioxygenase family"]],"b":[["NCBITaxon%3A40559","Botrytis cinerea"],["NCBITaxon%3A999810","Botrytis cinerea T4"]]},{"id":"NCBITaxon:405671","l":"Pedobacter terrae","na":2,"nb":1,"a":[["TED%3AAF-A0A561GCB8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A561GCB8-F1-model_v4_TED02"],["TED%3AAF-A0A1G7QBD5-F1-model_v4_TED01","TED novel fold AF-A0A1G7QBD5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A405671","Pedobacter terrae"]]},{"id":"NCBITaxon:405948","l":"Saccharopolyspora erythraea NRRL 2338","na":1,"nb":2,"a":[["Pfam%3APF21036","Erythromycin biosynthesis protein CIII-like, N-terminal domain"]],"b":[["NCBITaxon%3A1836","Saccharopolyspora erythraea"],["NCBITaxon%3A405948","Saccharopolyspora erythraea NRRL 2338"]]},{"id":"NCBITaxon:407234","l":"Phaeovulum vinaykumarii","na":2,"nb":1,"a":[["TED%3AAF-A0A1N7K680-F1-model_v4_TED01","TED novel fold AF-A0A1N7K680-F1-model_v4_TED01"],["TED%3AAF-A0A1N7LGQ6-F1-model_v4_TED03","TED novel fold AF-A0A1N7LGQ6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A407234","Phaeovulum vinaykumarii"]]},{"id":"NCBITaxon:408657","l":"Dyadobacter koreensis","na":2,"nb":1,"a":[["TED%3AAF-A0A1H6SH56-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H6SH56-F1-model_v4_TED02"],["TED%3AAF-A0A1H6QMB6-F1-model_v4_TED01","TED novel fold AF-A0A1H6QMB6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A408657","Dyadobacter koreensis"]]},{"id":"NCBITaxon:409438","l":"","na":1,"nb":2,"a":[["Pfam%3APF05962","HutD"]],"b":[["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A409438","Escherichia coli SE11"]]},{"id":"NCBITaxon:411154","l":"Christiangramia forsetii KT0803","na":1,"nb":2,"a":[["Pfam%3APF14109","GldH lipoprotein"]],"b":[["NCBITaxon%3A411153","Christiangramia forsetii"],["NCBITaxon%3A411154","Christiangramia forsetii KT0803"]]},{"id":"NCBITaxon:411461","l":"Dorea formicigenerans ATCC 27755","na":1,"nb":2,"a":[["TED%3AAF-B0G854-F1-model_v4_TED01","TED novel fold AF-B0G854-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39486","Dorea formicigenerans"],["NCBITaxon%3A411461","Dorea formicigenerans ATCC 27755"]]},{"id":"NCBITaxon:411463","l":"Eubacterium ventriosum ATCC 27560","na":1,"nb":2,"a":[["TED%3AAF-A5Z937-F1-model_v4_TED01","TED highly-symmetric fold AF-A5Z937-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39496","Eubacterium ventriosum"],["NCBITaxon%3A411463","Eubacterium ventriosum ATCC 27560"]]},{"id":"NCBITaxon:411471","l":"Subdoligranulum variabile DSM 15176","na":1,"nb":2,"a":[["TED%3AAF-D1PNK4-F1-model_v4_TED02","TED novel fold AF-D1PNK4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A214851","Subdoligranulum variabile"],["NCBITaxon%3A411471","Subdoligranulum variabile DSM 15176"]]},{"id":"NCBITaxon:411684","l":"Hoeflea phototrophica DFL-43","na":1,"nb":2,"a":[["TED%3AAF-A9D4N0-F1-model_v4_TED02","TED novel fold AF-A9D4N0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A411684","Hoeflea phototrophica DFL-43"],["NCBITaxon%3A244596","Parahoeflea phototrophica"]]},{"id":"NCBITaxon:412022","l":"Burkholderia mallei (strain NCTC 10229)","na":2,"nb":1,"a":[["Pfam%3APF22688","Hda, lid domain"],["Pfam%3APF03975","CheD chemotactic sensory transduction"]],"b":[["NCBITaxon%3A412022","Burkholderia mallei NCTC 10229"]]},{"id":"NCBITaxon:412694","l":"Bacillus thuringiensis (strain Al Hakam)","na":2,"nb":1,"a":[["Pfam%3APF03590","Aspartate-ammonia ligase"],["Pfam%3APF07408","Protein of unknown function (DUF1507)"]],"b":[["NCBITaxon%3A412694","Bacillus thuringiensis str. Al Hakam"]]},{"id":"NCBITaxon:415222","l":"Pelagicoccus albus","na":2,"nb":1,"a":[["TED%3AAF-A0A7X1B8W0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X1B8W0-F1-model_v4_TED01"],["TED%3AAF-A0A7X1E8K3-F1-model_v4_TED03","TED novel fold AF-A0A7X1E8K3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A415222","Pelagicoccus albus"]]},{"id":"NCBITaxon:415426","l":"","na":1,"nb":2,"a":[["Pfam%3APF01982","Domain of unknown function DUF120"]],"b":[["NCBITaxon%3A54248","Hyperthermus butylicus"],["NCBITaxon%3A415426","Hyperthermus butylicus DSM 5456"]]},{"id":"NCBITaxon:41675","l":"Stygiolobus azoricus","na":1,"nb":2,"a":[["TED%3AAF-A0A650CQQ9-F1-model_v4_TED01","TED novel fold AF-A0A650CQQ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A41675","Stygiolobus azoricus"],["NCBITaxon%3A1313299","Stygiolobus azoricus DSM 6296"]]},{"id":"NCBITaxon:417745","l":"Shinella kummerowiae","na":2,"nb":1,"a":[["TED%3AAF-A0A6N8SE75-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8SE75-F1-model_v4_TED01"],["TED%3AAF-A0A6N8SAK3-F1-model_v4_TED01","TED novel fold AF-A0A6N8SAK3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A417745","Shinella kummerowiae"]]},{"id":"NCBITaxon:418459","l":"Puccinia graminis f. sp. tritici (strain CRL 75-36-700-3 / race SCCL)","na":2,"nb":1,"a":[["TED%3AAF-E3KWP8-F1-model_v4_TED01","TED novel fold AF-E3KWP8-F1-model_v4_TED01"],["TED%3AAF-E3L0V6-F1-model_v4_TED01","TED novel fold AF-E3L0V6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A418459","Puccinia graminis f. sp. tritici CRL 75-36-700-3"]]},{"id":"NCBITaxon:418630","l":"[Luteovulum] sphaeroides subsp. megalophilum","na":1,"nb":2,"a":[["TED%3AAF-A0A239MB29-F1-model_v4_TED01","TED novel fold AF-A0A239MB29-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1063","Cereibacter sphaeroides"],["NCBITaxon%3A418630","[Luteovulum] sphaeroides subsp. megalophilum"]]},{"id":"NCBITaxon:420778","l":"Diplodia seriata","na":2,"nb":1,"a":[["TED%3AAF-A0A0G2DUU8-F1-model_v4_TED02","TED novel fold AF-A0A0G2DUU8-F1-model_v4_TED02"],["TED%3AAF-A0A0G2ERU8-F1-model_v4_TED01","TED novel fold AF-A0A0G2ERU8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A420778","Diplodia seriata"]]},{"id":"NCBITaxon:420952","l":"Paraburkholderia bryophila","na":1,"nb":2,"a":[["TED%3AAF-A0A7Y9WQV4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y9WQV4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A420952","Paraburkholderia bryophila"],["NCBITaxon%3A1169143","Paraburkholderia bryophila 376MFSha3.1"]]},{"id":"NCBITaxon:421052","l":"Acinetobacter rudis CIP 110305","na":1,"nb":2,"a":[["TED%3AAF-S3N7W1-F1-model_v4_TED04","TED novel fold AF-S3N7W1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A632955","Acinetobacter rudis"],["NCBITaxon%3A421052","Acinetobacter rudis CIP 110305"]]},{"id":"NCBITaxon:421058","l":"Chryseobacterium oranimense","na":1,"nb":2,"a":[["TED%3AAF-A0A1M5UIN4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M5UIN4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A421058","Chryseobacterium oranimense"],["NCBITaxon%3A1300143","Chryseobacterium oranimense G311"]]},{"id":"NCBITaxon:42251","l":"Tuber borchii","na":2,"nb":1,"a":[["TED%3AAF-A0A2T6ZEW2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T6ZEW2-F1-model_v4_TED01"],["TED%3AAF-A0A2T6ZK07-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2T6ZK07-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A42251","Tuber borchii"]]},{"id":"NCBITaxon:42256","l":"Rubrobacter radiotolerans","na":1,"nb":2,"a":[["TED%3AAF-A0A023X7L7-F1-model_v4_TED02","TED novel fold AF-A0A023X7L7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A42256","Rubrobacter radiotolerans"],["NCBITaxon%3A643560","Rubrobacter radiotolerans DSM 5868"]]},{"id":"NCBITaxon:42322","l":"Eubacterium ruminantium","na":2,"nb":1,"a":[["TED%3AAF-A0A1H6A208-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H6A208-F1-model_v4_TED01"],["TED%3AAF-A0A1T4Q7U0-F1-model_v4_TED01","TED novel fold AF-A0A1T4Q7U0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A42322","Eubacterium ruminantium"]]},{"id":"NCBITaxon:427683","l":"Methylobacterium platani","na":1,"nb":2,"a":[["TED%3AAF-A0A179RZM9-F1-model_v4_TED01","TED novel fold AF-A0A179RZM9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A427683","Methylobacterium platani"],["NCBITaxon%3A1295136","Methylobacterium platani JCM 14648"]]},{"id":"NCBITaxon:429133","l":"Modestobacter versicolor","na":2,"nb":1,"a":[["TED%3AAF-A0A323VFP8-F1-model_v4_TED01","TED novel fold AF-A0A323VFP8-F1-model_v4_TED01"],["TED%3AAF-A0A839XZ80-F1-model_v4_TED02","TED novel fold AF-A0A839XZ80-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A429133","Modestobacter versicolor"]]},{"id":"NCBITaxon:430522","l":"Pedobacter steynii","na":2,"nb":1,"a":[["TED%3AAF-A0A1G9K403-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G9K403-F1-model_v4_TED01"],["TED%3AAF-A0A1G9UZ90-F1-model_v4_TED01","TED novel fold AF-A0A1G9UZ90-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A430522","Pedobacter steynii"]]},{"id":"NCBITaxon:432331","l":"Sulfurihydrogenibium yellowstonense SS-5","na":1,"nb":2,"a":[["TED%3AAF-C4FIW6-F1-model_v4_TED01","TED novel fold AF-C4FIW6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A304736","Sulfurihydrogenibium yellowstonense"],["NCBITaxon%3A432331","Sulfurihydrogenibium yellowstonense SS-5"]]},{"id":"NCBITaxon:433924","l":"Pseudacidovorax intermedius","na":1,"nb":2,"a":[["TED%3AAF-A0A147GRQ0-F1-model_v4_TED01","TED novel fold AF-A0A147GRQ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A433924","Pseudacidovorax intermedius"],["NCBITaxon%3A1257078","Pseudacidovorax intermedius NH-1"]]},{"id":"NCBITaxon:436308","l":"Nitrosopumilus maritimus SCM1","na":1,"nb":2,"a":[["Pfam%3APF19045","Ligase-CoA domain"]],"b":[["NCBITaxon%3A338192","Nitrosopumilus maritimus"],["NCBITaxon%3A436308","Nitrosopumilus maritimus SCM1"]]},{"id":"NCBITaxon:43655","l":"Pseudoalteromonas citrea","na":1,"nb":2,"a":[["TED%3AAF-A0A5S3XJV9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5S3XJV9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A43655","Pseudoalteromonas citrea"],["NCBITaxon%3A1117314","Pseudoalteromonas citrea DSM 8771"]]},{"id":"NCBITaxon:43671","l":"Actinotalea fermentans","na":1,"nb":2,"a":[["TED%3AAF-A0A511YTN2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A511YTN2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A43671","Actinotalea fermentans"],["NCBITaxon%3A862422","Actinotalea fermentans ATCC 43279 = JCM 9966 = DSM 3133"]]},{"id":"NCBITaxon:436717","l":"Acinetobacter oleivorans DR1","na":1,"nb":2,"a":[["TED%3AAF-D8JEH7-F1-model_v4_TED03","TED novel fold AF-D8JEH7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1148157","Acinetobacter oleivorans"],["NCBITaxon%3A436717","Acinetobacter oleivorans DR1"]]},{"id":"NCBITaxon:43677","l":"Promicromonospora citrea","na":1,"nb":2,"a":[["TED%3AAF-A0A7Y2QR62-F1-model_v4_TED01","TED novel fold AF-A0A7Y2QR62-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2126556","Flavobacterium artemisiae"],["NCBITaxon%3A43677","Promicromonospora citrea"]]},{"id":"NCBITaxon:441770","l":"","na":1,"nb":2,"a":[["Pfam%3APF11842","Domain of unknown function (DUF3362)"]],"b":[["NCBITaxon%3A1491","Clostridium botulinum"],["NCBITaxon%3A441770","Clostridium botulinum A str. ATCC 19397"]]},{"id":"NCBITaxon:441772","l":"","na":2,"nb":1,"a":[["Pfam%3APF02001","Protein of unknown function DUF134"],["Pfam%3APF06874","Firmicute fructose-1,6-bisphosphatase"]],"b":[["NCBITaxon%3A441772","Clostridium botulinum F str. Langeland"]]},{"id":"NCBITaxon:442341","l":"Halomonas xianhensis","na":2,"nb":1,"a":[["TED%3AAF-A0A4R8FRP4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R8FRP4-F1-model_v4_TED01"],["TED%3AAF-A0A1I3EZC5-F1-model_v4_TED01","TED novel fold AF-A0A1I3EZC5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A442341","Modicisalibacter xianhensis"]]},{"id":"NCBITaxon:443152","l":"Marinobacter algicola DG893","na":1,"nb":2,"a":[["TED%3AAF-A6EY08-F1-model_v4_TED01","TED highly-symmetric fold AF-A6EY08-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A236100","Marinobacter algicola"],["NCBITaxon%3A443152","Marinobacter algicola DG893"]]},{"id":"NCBITaxon:443226","l":"Coccidioides posadasii (strain RMSCC 757 / Silveira)","na":2,"nb":1,"a":[["TED%3AAF-E9D519-F1-model_v4_TED01","TED highly-symmetric fold AF-E9D519-F1-model_v4_TED01"],["TED%3AAF-E9D534-F1-model_v4_TED01","TED novel fold AF-E9D534-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A443226","Coccidioides posadasii str. Silveira"]]},{"id":"NCBITaxon:443254","l":"","na":1,"nb":2,"a":[["Pfam%3APF22362","Argonaute, middle domain, bacteria"]],"b":[["NCBITaxon%3A149715","Marinitoga piezophila"],["NCBITaxon%3A443254","Marinitoga piezophila KA3"]]},{"id":"NCBITaxon:444157","l":"Pyrobaculum neutrophilum V24Sta","na":1,"nb":2,"a":[["Pfam%3APF01950","Fructose-1,6-bisphosphatase"]],"b":[["NCBITaxon%3A70771","Pyrobaculum neutrophilum"],["NCBITaxon%3A444157","Pyrobaculum neutrophilum V24Sta"]]},{"id":"NCBITaxon:445970","l":"Alistipes putredinis DSM 17216","na":1,"nb":2,"a":[["TED%3AAF-B0MZK9-F1-model_v4_TED03","TED highly-symmetric fold AF-B0MZK9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A28117","Alistipes putredinis"],["NCBITaxon%3A445970","Alistipes putredinis DSM 17216"]]},{"id":"NCBITaxon:445987","l":"Borreliella valaisiana VS116","na":1,"nb":2,"a":[["TED%3AAF-C0R8L4-F1-model_v4_TED01","TED novel fold AF-C0R8L4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A62088","Borreliella valaisiana"],["NCBITaxon%3A445987","Borreliella valaisiana VS116"]]},{"id":"NCBITaxon:446462","l":"","na":1,"nb":2,"a":[["TED%3AAF-C6WQL9-F1-model_v4_TED01","TED highly-symmetric fold AF-C6WQL9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A40567","Actinosynnema mirum"],["NCBITaxon%3A446462","Actinosynnema mirum DSM 43827"]]},{"id":"NCBITaxon:446465","l":"Brachybacterium faecium DSM 4810","na":1,"nb":2,"a":[["TED%3AAF-C7MEJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-C7MEJ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A43669","Brachybacterium faecium"],["NCBITaxon%3A446465","Brachybacterium faecium DSM 4810"]]},{"id":"NCBITaxon:446469","l":"Sanguibacter keddieii DSM 10542","na":1,"nb":2,"a":[["TED%3AAF-D1BCE8-F1-model_v4_TED01","TED highly-symmetric fold AF-D1BCE8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A60920","Sanguibacter keddieii"],["NCBITaxon%3A446469","Sanguibacter keddieii DSM 10542"]]},{"id":"NCBITaxon:44737","l":"Capnocytophaga sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A496MK20-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A496MK20-F1-model_v4_TED01"],["TED%3AAF-A0A496MK73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A496MK73-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A44737","Capnocytophaga sp."]]},{"id":"NCBITaxon:449","l":"Legionella hackeliae","na":2,"nb":1,"a":[["TED%3AAF-A0A0A8UQD0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A8UQD0-F1-model_v4_TED01"],["TED%3AAF-A0A0A8UPB0-F1-model_v4_TED01","TED novel fold AF-A0A0A8UPB0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A449","Legionella hackeliae"]]},{"id":"NCBITaxon:44930","l":"Natronobacterium gregoryi","na":1,"nb":2,"a":[["TED%3AAF-A0A1I3LHC3-F1-model_v4_TED01","TED novel fold AF-A0A1I3LHC3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A44930","Natronobacterium gregoryi"],["NCBITaxon%3A797304","Natronobacterium gregoryi SP2"]]},{"id":"NCBITaxon:44935","l":"Vreelandella venusta","na":1,"nb":2,"a":[["TED%3AAF-A0A7S9VEF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S9VEF4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A44935","Vreelandella venusta"],["NCBITaxon%3A1255601","Vreelandella venusta 3D7M"]]},{"id":"NCBITaxon:45073","l":"Legionella quinlivanii","na":1,"nb":2,"a":[["TED%3AAF-A0A364LK99-F1-model_v4_TED02","TED novel fold AF-A0A364LK99-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A45073","Legionella quinlivanii"],["NCBITaxon%3A1122167","Legionella quinlivanii DSM 21216"]]},{"id":"NCBITaxon:451457","l":"Pseudolactococcus chungangensis","na":1,"nb":2,"a":[["TED%3AAF-A0A847J563-F1-model_v4_TED01","TED novel fold AF-A0A847J563-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A451457","Pseudolactococcus chungangensis"],["NCBITaxon%3A1122154","Pseudolactococcus chungangensis CAU 28 = DSM 22330"]]},{"id":"NCBITaxon:45151","l":"Pyrenophora tritici-repentis","na":2,"nb":1,"a":[["TED%3AAF-A0A2W1ECP7-F1-model_v4_TED01","TED novel fold AF-A0A2W1ECP7-F1-model_v4_TED01"],["TED%3AAF-A0A834SF78-F1-model_v4_TED01","TED novel fold AF-A0A834SF78-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A45151","Pyrenophora tritici-repentis"]]},{"id":"NCBITaxon:451516","l":"Staphylococcus aureus (strain USA300 / TCH1516)","na":2,"nb":1,"a":[["Pfam%3APF07457","Protein of unknown function (DUF1516)"],["Pfam%3APF12127","Flotillin-like protein FloA"]],"b":[["NCBITaxon%3A451516","Staphylococcus aureus subsp. aureus USA300_TCH1516"]]},{"id":"NCBITaxon:45235","l":"Tolypocladium capitatum","na":2,"nb":1,"a":[["TED%3AAF-A0A2K3Q6C8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2K3Q6C8-F1-model_v4_TED01"],["TED%3AAF-A0A2K3QFT5-F1-model_v4_TED02","TED novel fold AF-A0A2K3QFT5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A45235","Tolypocladium capitatum"]]},{"id":"NCBITaxon:452629","l":"Amphritea balenae","na":1,"nb":2,"a":[["TED%3AAF-A0A3P1STJ2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3P1STJ2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A452629","Amphritea balenae"],["NCBITaxon%3A1278310","Amphritea balenae ATCC BAA-1529"]]},{"id":"NCBITaxon:453","l":"Legionella feeleii","na":1,"nb":2,"a":[["TED%3AAF-A0A378IZL6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A378IZL6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A453","Legionella feeleii"],["NCBITaxon%3A66975","Legionella feeleii serogroup 2"]]},{"id":"NCBITaxon:45357","l":"Candidozyma haemuli","na":1,"nb":2,"a":[["TED%3AAF-A0A2V1AT11-F1-model_v4_TED02","TED novel fold AF-A0A2V1AT11-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A45357","Candidozyma haemuli"],["NCBITaxon%3A1231523","Candidozyma haemuli var. vulneris"]]},{"id":"NCBITaxon:454","l":"Legionella israelensis","na":1,"nb":2,"a":[["TED%3AAF-A0A0W0WIG0-F1-model_v4_TED02","TED novel fold AF-A0A0W0WIG0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A454","Legionella israelensis"],["NCBITaxon%3A1122162","Legionella israelensis DSM 19235"]]},{"id":"NCBITaxon:455488","l":"Anaeromyxobacter dehalogenans 2CP-1","na":1,"nb":2,"a":[["TED%3AAF-B8J8V7-F1-model_v4_TED01","TED novel fold AF-B8J8V7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A161493","Anaeromyxobacter dehalogenans"],["NCBITaxon%3A455488","Anaeromyxobacter dehalogenans 2CP-1"]]},{"id":"NCBITaxon:457570","l":"Natranaerobius thermophilus JW/NM-WN-LF","na":1,"nb":2,"a":[["TED%3AAF-B2A1S1-F1-model_v4_TED02","TED highly-symmetric fold AF-B2A1S1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A375929","Natranaerobius thermophilus"],["NCBITaxon%3A457570","Natranaerobius thermophilus JW/NM-WN-LF"]]},{"id":"NCBITaxon:458817","l":"","na":1,"nb":2,"a":[["TED%3AAF-B0TIQ1-F1-model_v4_TED01","TED novel fold AF-B0TIQ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A271098","Shewanella halifaxensis"],["NCBITaxon%3A458817","Shewanella halifaxensis HAW-EB4"]]},{"id":"NCBITaxon:459529","l":"Sphingobacterium siyangense","na":1,"nb":2,"a":[["TED%3AAF-A0A420FHV4-F1-model_v4_TED01","TED novel fold AF-A0A420FHV4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A459529","Sphingobacterium siyangense"],["NCBITaxon%3A634159","Sphingobacterium siyangense subsp. cladoniae"]]},{"id":"NCBITaxon:46163","l":"Actinomadura luteofluorescens","na":1,"nb":2,"a":[["TED%3AAF-A0A7Y9EGM5-F1-model_v4_TED01","TED novel fold AF-A0A7Y9EGM5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A46163","Actinomadura luteofluorescens"],["NCBITaxon%3A1449332","Actinomadura luteofluorescens DSM 44770"]]},{"id":"NCBITaxon:462910","l":"Pontibacillus yanchengensis","na":1,"nb":2,"a":[["TED%3AAF-A0A6I5A559-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A6I5A559-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A462910","Pontibacillus yanchengensis"],["NCBITaxon%3A1385514","Pontibacillus yanchengensis Y32"]]},{"id":"NCBITaxon:46469","l":"Orenia marismortui","na":1,"nb":2,"a":[["TED%3AAF-A0A4R8H1H9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R8H1H9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A46469","Orenia marismortui"],["NCBITaxon%3A926561","Orenia marismortui DSM 5156"]]},{"id":"NCBITaxon:469371","l":"Thermobispora bispora DSM 43833","na":1,"nb":2,"a":[["TED%3AAF-D6Y8C2-F1-model_v4_TED02","TED novel fold AF-D6Y8C2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2006","Thermobispora bispora"],["NCBITaxon%3A469371","Thermobispora bispora DSM 43833"]]},{"id":"NCBITaxon:469383","l":"Conexibacter woesei DSM 14684","na":1,"nb":2,"a":[["TED%3AAF-D3FEY8-F1-model_v4_TED03","TED highly-symmetric fold AF-D3FEY8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A191495","Conexibacter woesei"],["NCBITaxon%3A469383","Conexibacter woesei DSM 14684"]]},{"id":"NCBITaxon:469591","l":"","na":1,"nb":2,"a":[["TED%3AAF-A0A3E4PGJ8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3E4PGJ8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A29523","Bacteroides sp."],["NCBITaxon%3A469591","Parabacteroides sp. 20_3"]]},{"id":"NCBITaxon:470096","l":"Pseudovirgaria hyperparasitica","na":2,"nb":1,"a":[["TED%3AAF-A0A6A6VSI4-F1-model_v4_TED01","TED novel fold AF-A0A6A6VSI4-F1-model_v4_TED01"],["TED%3AAF-A0A6A6WEH1-F1-model_v4_TED02","TED novel fold AF-A0A6A6WEH1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A470096","Pseudovirgaria hyperparasitica"]]},{"id":"NCBITaxon:470145","l":"Phocaeicola coprocola DSM 17136","na":1,"nb":2,"a":[["TED%3AAF-B3JL62-F1-model_v4_TED04","TED novel fold AF-B3JL62-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A310298","Phocaeicola coprocola"],["NCBITaxon%3A470145","Phocaeicola coprocola DSM 17136"]]},{"id":"NCBITaxon:470146","l":"Coprococcus comes ATCC 27758","na":1,"nb":2,"a":[["TED%3AAF-C0BDT1-F1-model_v4_TED01","TED highly-symmetric fold AF-C0BDT1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A410072","Allocoprococcus comes"],["NCBITaxon%3A470146","Coprococcus comes ATCC 27758"]]},{"id":"NCBITaxon:470453","l":"Moraxella pluranimalium","na":1,"nb":2,"a":[["TED%3AAF-A0A1T0CC81-F1-model_v4_TED02","TED novel fold AF-A0A1T0CC81-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A470453","Moraxella pluranimalium"],["NCBITaxon%3A1122246","Moraxella pluranimalium DSM 22804"]]},{"id":"NCBITaxon:47055","l":"Dethiosulfovibrio peptidovorans","na":1,"nb":2,"a":[["TED%3AAF-A0A2G6M2T0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2G6M2T0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A47055","Dethiosulfovibrio peptidovorans"],["NCBITaxon%3A469381","Dethiosulfovibrio peptidovorans DSM 11002"]]},{"id":"NCBITaxon:471852","l":"Thermomonospora curvata DSM 43183","na":1,"nb":2,"a":[["Pfam%3APF01580","FtsK/SpoIIIE family"]],"b":[["NCBITaxon%3A2020","Thermomonospora curvata"],["NCBITaxon%3A471852","Thermomonospora curvata DSM 43183"]]},{"id":"NCBITaxon:472","l":"Acinetobacter sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A433CUV6-F1-model_v4_TED01","TED novel fold AF-A0A433CUV6-F1-model_v4_TED01"],["TED%3AAF-A0A7G3BTL8-F1-model_v4_TED01","TED novel fold AF-A0A7G3BTL8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A472","Acinetobacter sp."]]},{"id":"NCBITaxon:472759","l":"Nitrosococcus halophilus Nc 4","na":1,"nb":2,"a":[["TED%3AAF-D5BWL1-F1-model_v4_TED01","TED highly-symmetric fold AF-D5BWL1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A133539","Nitrosococcus halophilus"],["NCBITaxon%3A472759","Nitrosococcus halophilus Nc 4"]]},{"id":"NCBITaxon:47428","l":"Armillaria ostoyae","na":2,"nb":1,"a":[["TED%3AAF-A0A284RWZ8-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A284RWZ8-F1-model_v4_TED04"],["TED%3AAF-A0A284RP12-F1-model_v4_TED01","TED novel fold AF-A0A284RP12-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A47428","Armillaria ostoyae"]]},{"id":"NCBITaxon:474922","l":"Colletotrichum gloeosporioides","na":2,"nb":1,"a":[["Pfam%3APF28223","CAP22"],["PROSITE%3APS00155","Cutinase, serine active site"]],"b":[["NCBITaxon%3A474922","Colletotrichum gloeosporioides"]]},{"id":"NCBITaxon:474952","l":"Granulicella rosea","na":2,"nb":1,"a":[["TED%3AAF-A0A239KLB2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A239KLB2-F1-model_v4_TED01"],["TED%3AAF-A0A239CX56-F1-model_v4_TED02","TED novel fold AF-A0A239CX56-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A474952","Granulicella rosea"]]},{"id":"NCBITaxon:4758","l":"Neocallimastix patriciarum","na":2,"nb":1,"a":[["Pfam%3APF02013","Cellulose or protein binding domain"],["PROSITE%3APS00776","Glycosyl hydrolases family 11 (GH11) active site signature 1"]],"b":[["NCBITaxon%3A4758","Neocallimastix patriciarum"]]},{"id":"NCBITaxon:4779","l":"Bremia lactucae","na":2,"nb":1,"a":[["TED%3AAF-A0A484E5D3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A484E5D3-F1-model_v4_TED01"],["TED%3AAF-A0A484EDT0-F1-model_v4_TED01","TED novel fold AF-A0A484EDT0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A4779","Bremia lactucae"]]},{"id":"NCBITaxon:478","l":"Moraxella nonliquefaciens","na":1,"nb":2,"a":[["TED%3AAF-A0A1B8PJM7-F1-model_v4_TED01","TED novel fold AF-A0A1B8PJM7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A478","Moraxella nonliquefaciens"],["NCBITaxon%3A1441929","Moraxella nonliquefaciens DSM 6327"]]},{"id":"NCBITaxon:4785","l":"Phytophthora cinnamomi","na":2,"nb":1,"a":[["Pfam%3APF00964","Elicitin"],["TED%3AAF-B8Y7U3-F1-model_v4_TED01","TED highly-symmetric fold AF-B8Y7U3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A4785","Phytophthora cinnamomi"]]},{"id":"NCBITaxon:47850","l":"","na":1,"nb":2,"a":[["TED%3AAF-A0A1C6SK92-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C6SK92-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A644283","Micromonospora aurantiaca ATCC 27029"],["NCBITaxon%3A47850","Micromonospora aurantiaca (nom. illeg.)"]]},{"id":"NCBITaxon:47875","l":"Micromonospora sagamiensis","na":1,"nb":2,"a":[["TED%3AAF-A0A562WCI2-F1-model_v4_TED01","TED novel fold AF-A0A562WCI2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A47875","Micromonospora sagamiensis"],["NCBITaxon%3A675089","Micromonospora sagamiensis subsp. flava"]]},{"id":"NCBITaxon:47878","l":"Pseudomonas azotoformans","na":1,"nb":2,"a":[["TED%3AAF-A0A514BG00-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A514BG00-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A47878","Pseudomonas azotoformans"],["NCBITaxon%3A1215094","Pseudomonas azotoformans NBRC 12693"]]},{"id":"NCBITaxon:47919","l":"Nocardioides sp. (strain N106)","na":2,"nb":1,"a":[["Pfam%3APF01374","Glycosyl hydrolase family 46"],["PROSITE%3APS60000","Chitosanases families 46 and 80 active sites signature"]],"b":[["NCBITaxon%3A47919","Nocardioides sp. N106"]]},{"id":"NCBITaxon:479431","l":"Nakamurella multipartita DSM 44233","na":1,"nb":2,"a":[["TED%3AAF-C8XHD0-F1-model_v4_TED02","TED novel fold AF-C8XHD0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A53461","Nakamurella multipartita"],["NCBITaxon%3A479431","Nakamurella multipartita DSM 44233"]]},{"id":"NCBITaxon:479435","l":"Kribbella flavida DSM 17836","na":1,"nb":2,"a":[["Pfam%3APF21568","1,3-alpha-isomaltosidase-like, N-terminal domain"]],"b":[["NCBITaxon%3A182640","Kribbella flavida"],["NCBITaxon%3A479435","Kribbella flavida DSM 17836"]]},{"id":"NCBITaxon:481448","l":"Methylacidiphilum infernorum (isolate V4)","na":2,"nb":1,"a":[["Pfam%3APF11004","3-deoxy-D-manno-oct-2-ulosonic acid (Kdo) hydroxylase"],["TED%3AAF-B3DX40-F1-model_v4_TED02","TED novel fold AF-B3DX40-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A481448","Methylacidiphilum infernorum V4"]]},{"id":"NCBITaxon:4829","l":"Absidia glauca","na":2,"nb":1,"a":[["TED%3AAF-A0A168R8W2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A168R8W2-F1-model_v4_TED01"],["TED%3AAF-A0A168SH55-F1-model_v4_TED01","TED novel fold AF-A0A168SH55-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A4829","Absidia glauca"]]},{"id":"NCBITaxon:483013","l":"Tritonibacter scottomollicae","na":2,"nb":1,"a":[["Pfam%3APF17396","Domain of unknown function (DUF1611_N) Rossmann-like domain"],["Pfam%3APF07755","Domain of unknown function (DUF1611_C) P-loop domain"]],"b":[["NCBITaxon%3A483013","Tritonibacter scottomollicae"]]},{"id":"NCBITaxon:484018","l":"","na":1,"nb":2,"a":[["Pfam%3APF18040","beta porphyranase A C-terminal"]],"b":[["NCBITaxon%3A310297","Phocaeicola plebeius"],["NCBITaxon%3A484018","Phocaeicola plebeius DSM 17135"]]},{"id":"NCBITaxon:485915","l":"","na":1,"nb":2,"a":[["TED%3AAF-C8WYZ3-F1-model_v4_TED02","TED highly-symmetric fold AF-C8WYZ3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A45663","Desulfohalobium retbaense"],["NCBITaxon%3A485915","Desulfohalobium retbaense DSM 5692"]]},{"id":"NCBITaxon:485916","l":"Desulfofarcimen acetoxidans DSM 771","na":1,"nb":2,"a":[["TED%3AAF-C8W2Y9-F1-model_v4_TED01","TED highly-symmetric fold AF-C8W2Y9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A58138","Desulfofarcimen acetoxidans"],["NCBITaxon%3A485916","Desulfofarcimen acetoxidans DSM 771"]]},{"id":"NCBITaxon:48665","l":"Streptomyces viridifaciens","na":1,"nb":2,"a":[["TED%3AAF-A0A1L9E1F9-F1-model_v4_TED01","TED novel fold AF-A0A1L9E1F9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A642496","Streptomyces sp. DSM 40239"],["NCBITaxon%3A48665","Streptomyces viridifaciens"]]},{"id":"NCBITaxon:490899","l":"Desulfurococcus amylolyticus 1221n","na":1,"nb":2,"a":[["TED%3AAF-B8D4A7-F1-model_v4_TED01","TED novel fold AF-B8D4A7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A94694","Desulfurococcus amylolyticus"],["NCBITaxon%3A490899","Desulfurococcus amylolyticus 1221n"]]},{"id":"NCBITaxon:4909","l":"Pichia kudriavzevii","na":1,"nb":2,"a":[["TED%3AAF-A0A099P804-F1-model_v4_TED01","TED novel fold AF-A0A099P804-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A4909","Pichia kudriavzevii"],["NCBITaxon%3A1231518","Pichia kudriavzevii CAB39-6420"]]},{"id":"NCBITaxon:4911","l":"Kluyveromyces marxianus","na":1,"nb":2,"a":[["Pfam%3APF04684","BAF1 / ABF1 chromatin reorganising factor"]],"b":[["NCBITaxon%3A4911","Kluyveromyces marxianus"],["NCBITaxon%3A374272","Kluyveromyces marxianus var. marxianus"]]},{"id":"NCBITaxon:491952","l":"Marinomonas posidonica IVIA-Po-181","na":1,"nb":2,"a":[["proteintraitsmech%3AELIFE109154_SalSyn","Metallophore-associated bifunctional salicylate synthase family"]],"b":[["NCBITaxon%3A936476","Marinomonas posidonica"],["NCBITaxon%3A491952","Marinomonas posidonica IVIA-Po-181"]]},{"id":"NCBITaxon:49252","l":"Eucampia antarctica","na":2,"nb":1,"a":[["TED%3AAF-A0A7S2RNI9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S2RNI9-F1-model_v4_TED02"],["TED%3AAF-A0A7S2SD61-F1-model_v4_TED01","TED novel fold AF-A0A7S2SD61-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A49252","Eucampia antarctica"]]},{"id":"NCBITaxon:494026","l":"Paenibacillus glacialis","na":1,"nb":2,"a":[["TED%3AAF-A0A168H7S0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A168H7S0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A494026","Paenibacillus glacialis"],["NCBITaxon%3A58172","Paenibacillus sp."]]},{"id":"NCBITaxon:4952","l":"Yarrowia lipolytica","na":2,"nb":1,"a":[["TED%3AAF-A0A7H0KE04-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H0KE04-F1-model_v4_TED01"],["TED%3AAF-A0A371C7L0-F1-model_v4_TED02","TED novel fold AF-A0A371C7L0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A4952","Yarrowia lipolytica"]]},{"id":"NCBITaxon:4954","l":"Zygosaccharomyces bailii","na":1,"nb":2,"a":[["TED%3AAF-A0A212M6M2-F1-model_v4_TED03","TED novel fold AF-A0A212M6M2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1935","Streptomyces violaceoruber"],["NCBITaxon%3A4954","Zygosaccharomyces bailii"]]},{"id":"NCBITaxon:496014","l":"Baekduia soli","na":2,"nb":1,"a":[["TED%3AAF-A0A5B8U3Z1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B8U3Z1-F1-model_v4_TED01"],["TED%3AAF-A0A5B8U5U7-F1-model_v4_TED01","TED novel fold AF-A0A5B8U5U7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A496014","Baekduia soli"]]},{"id":"NCBITaxon:496833","l":"","na":1,"nb":2,"a":[["TED%3AAF-C4XEY6-F1-model_v4_TED01","TED novel fold AF-C4XEY6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2115","Mycoplasmopsis fermentans"],["NCBITaxon%3A496833","Mycoplasmopsis fermentans PG18"]]},{"id":"NCBITaxon:497735","l":"Brevibacillus panacihumi","na":1,"nb":2,"a":[["TED%3AAF-A0A3M8CS74-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3M8CS74-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A497735","Brevibacillus panacihumi"],["NCBITaxon%3A1408254","Brevibacillus panacihumi W25"]]},{"id":"NCBITaxon:498214","l":"","na":2,"nb":1,"a":[["Pfam%3APF20921","Domain of unknown function DUF1846, C-terminal"],["Pfam%3APF08903","Domain of unknown function DUF1846, N-terminal"]],"b":[["NCBITaxon%3A498214","Clostridium botulinum A3 str. Loch Maree"]]},{"id":"NCBITaxon:498846","l":"Candidatus Korarchaeum cryptofilum","na":1,"nb":2,"a":[["TED%3AAF-A0A3R9WZD4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3R9WZD4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A498846","Candidatus Korarchaeum cryptofilum"],["NCBITaxon%3A374847","Candidatus Korarchaeum cryptofilum OPF8"]]},{"id":"NCBITaxon:498848","l":"Thermus aquaticus (strain ATCC BAA-2747 / Y51MC23)","na":2,"nb":1,"a":[["Pfam%3APF14487","ssDNA thymidine ADP-ribosyltransferase, DarT"],["TED%3AAF-B7A9A7-F1-model_v4_TED01","TED novel fold AF-B7A9A7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A498848","Thermus aquaticus Y51MC23"]]},{"id":"NCBITaxon:500633","l":"","na":1,"nb":2,"a":[["TED%3AAF-B6G1L6-F1-model_v4_TED01","TED highly-symmetric fold AF-B6G1L6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A89152","Peptacetobacter hiranonis"],["NCBITaxon%3A500633","Peptacetobacter hiranonis DSM 13275"]]},{"id":"NCBITaxon:500637","l":"Providencia rustigianii DSM 4541","na":1,"nb":2,"a":[["TED%3AAF-D1NXZ5-F1-model_v4_TED01","TED highly-symmetric fold AF-D1NXZ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A158850","Providencia rustigianii"],["NCBITaxon%3A500637","Providencia rustigianii DSM 4541"]]},{"id":"NCBITaxon:50259","l":"Rubrivivax sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A519Z6H9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A519Z6H9-F1-model_v4_TED01"],["TED%3AAF-A0A519Z4I2-F1-model_v4_TED02","TED novel fold AF-A0A519Z4I2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A50259","Rubrivivax sp."]]},{"id":"NCBITaxon:50338","l":"Rhizobium sullae","na":1,"nb":2,"a":[["TED%3AAF-A0A4R3Q746-F1-model_v4_TED03","TED novel fold AF-A0A4R3Q746-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A50338","Rhizobium sullae"],["NCBITaxon%3A1041146","Rhizobium sullae WSM1592"]]},{"id":"NCBITaxon:5044","l":"","na":2,"nb":1,"a":[["PROSITE%3APS00185","Isopenicillin N synthase signature 1"],["PROSITE%3APS00186","Isopenicillin N synthase signature 2"]],"b":[["NCBITaxon%3A5044","Hapsidospora chrysogena"]]},{"id":"NCBITaxon:504472","l":"Spirosoma linguale DSM 74","na":1,"nb":2,"a":[["TED%3AAF-D2QHB9-F1-model_v4_TED01","TED highly-symmetric fold AF-D2QHB9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A108","Spirosoma linguale"],["NCBITaxon%3A504472","Spirosoma linguale DSM 74"]]},{"id":"NCBITaxon:504797","l":"Actinopolymorpha cephalotaxi","na":1,"nb":2,"a":[["TED%3AAF-A0A1I2Y0M5-F1-model_v4_TED01","TED novel fold AF-A0A1I2Y0M5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A504797","Actinopolymorpha cephalotaxi"],["NCBITaxon%3A418707","Methylobacterium iners"]]},{"id":"NCBITaxon:505341","l":"Gallibacterium salpingitidis","na":2,"nb":1,"a":[["TED%3AAF-A0A1A7NNL6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1A7NNL6-F1-model_v4_TED02"],["TED%3AAF-A0A1A7PX16-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1A7PX16-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A505341","Gallibacterium salpingitidis"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":1,"nb":2,"a":[["Pfam%3APF07335","Fungal chitosanase of glycosyl hydrolase group 75"]],"b":[["NCBITaxon%3A5062","Aspergillus oryzae"],["NCBITaxon%3A510516","Aspergillus oryzae RIB40"]]},{"id":"NCBITaxon:506534","l":"Rheinheimera sp. A13L","na":2,"nb":1,"a":[["TED%3AAF-F7NRG2-F1-model_v4_TED05","TED highly-symmetric fold AF-F7NRG2-F1-model_v4_TED05"],["TED%3AAF-F7NT36-F1-model_v4_TED02","TED novel fold AF-F7NT36-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A506534","Rheinheimera sp. A13L"]]},{"id":"NCBITaxon:507522","l":"","na":2,"nb":1,"a":[["Pfam%3APF18649","EcpB C-terminal domain"],["Pfam%3APF04205","FMN-binding domain"]],"b":[["NCBITaxon%3A507522","Klebsiella variicola 342"]]},{"id":"NCBITaxon:509169","l":"Xanthomonas campestris pv. campestris (strain B100)","na":2,"nb":1,"a":[["Pfam%3APF28546","TonB transmembrane helix"],["Pfam%3APF14307","Glycosyltransferase WbsX"]],"b":[["NCBITaxon%3A509169","Xanthomonas campestris pv. campestris str. B100"]]},{"id":"NCBITaxon:512564","l":"","na":1,"nb":2,"a":[["TED%3AAF-D5E5R9-F1-model_v4_TED07","TED novel fold AF-D5E5R9-F1-model_v4_TED07"]],"b":[["NCBITaxon%3A50052","Mycoplasma crocodyli"],["NCBITaxon%3A512564","Mycoplasma crocodyli MP145"]]},{"id":"NCBITaxon:513050","l":"Dictyoglomus turgidum","na":1,"nb":2,"a":[["TED%3AAF-A0A7C3SR87-F1-model_v4_TED04","TED novel fold AF-A0A7C3SR87-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A513050","Dictyoglomus turgidum"],["NCBITaxon%3A515635","Dictyoglomus turgidum DSM 6724"]]},{"id":"NCBITaxon:51363","l":"Metamycoplasma auris","na":1,"nb":2,"a":[["TED%3AAF-A0A2W7G4E4-F1-model_v4_TED02","TED novel fold AF-A0A2W7G4E4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A51363","Metamycoplasma auris"],["NCBITaxon%3A1188233","Metamycoplasma auris 15026"]]},{"id":"NCBITaxon:5141","l":"Neurospora crassa","na":1,"nb":2,"a":[["TED%3AAF-A0A0B0E1R4-F1-model_v4_TED01","TED novel fold AF-A0A0B0E1R4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5141","Neurospora crassa"],["NCBITaxon%3A367110","Neurospora crassa OR74A"]]},{"id":"NCBITaxon:515393","l":"Pseudomonas yamanorum","na":2,"nb":1,"a":[["TED%3AAF-A0A143GFF9-F1-model_v4_TED03","TED novel fold AF-A0A143GFF9-F1-model_v4_TED03"],["TED%3AAF-A0A1H2I658-F1-model_v4_TED02","TED novel fold AF-A0A1H2I658-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A515393","Pseudomonas yamanorum"]]},{"id":"NCBITaxon:515622","l":"","na":1,"nb":2,"a":[["TED%3AAF-E0S461-F1-model_v4_TED02","TED highly-symmetric fold AF-E0S461-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A43305","Butyrivibrio proteoclasticus"],["NCBITaxon%3A515622","Butyrivibrio proteoclasticus B316"]]},{"id":"NCBITaxon:52","l":"Chondromyces crocatus","na":2,"nb":1,"a":[["TED%3AAF-A0A0K1ER44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0K1ER44-F1-model_v4_TED01"],["TED%3AAF-A0A0K1E854-F1-model_v4_TED01","TED novel fold AF-A0A0K1E854-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A52","Chondromyces crocatus"]]},{"id":"NCBITaxon:521007","l":"Borreliella burgdorferi (strain N40)","na":2,"nb":1,"a":[["Pfam%3APF02352","Decorin binding protein"],["Pfam%3APF17044","Borrelial persistence in ticks protein A"]],"b":[["NCBITaxon%3A521007","Borreliella burgdorferi N40"]]},{"id":"NCBITaxon:521096","l":"","na":1,"nb":2,"a":[["proteintraitsmech%3AELIFE109154_Lys_monoox","Mycobactin-type lysine N6-monooxygenase family"]],"b":[["NCBITaxon%3A2061","Tsukamurella paurometabola"],["NCBITaxon%3A521096","Tsukamurella paurometabola DSM 20162"]]},{"id":"NCBITaxon:521674","l":"Planctopirus limnophila DSM 3776","na":1,"nb":2,"a":[["TED%3AAF-D5SQH0-F1-model_v4_TED01","TED novel fold AF-D5SQH0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A120","Planctopirus limnophila"],["NCBITaxon%3A521674","Planctopirus limnophila DSM 3776"]]},{"id":"NCBITaxon:52247","l":"[Candida] inconspicua","na":2,"nb":1,"a":[["TED%3AAF-A0A4T0X0W3-F1-model_v4_TED01","TED novel fold AF-A0A4T0X0W3-F1-model_v4_TED01"],["TED%3AAF-A0A4V4NFB8-F1-model_v4_TED01","TED novel fold AF-A0A4V4NFB8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A52247","Pichia inconspicua"]]},{"id":"NCBITaxon:52442","l":"Nitrosomonas nitrosa","na":2,"nb":1,"a":[["TED%3AAF-A0A1I4KWB0-F1-model_v4_TED01","TED novel fold AF-A0A1I4KWB0-F1-model_v4_TED01"],["TED%3AAF-A0A1I4TNH7-F1-model_v4_TED01","TED novel fold AF-A0A1I4TNH7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A52442","Nitrosomonas nitrosa"]]},{"id":"NCBITaxon:526216","l":"Oceanibaculum indicum","na":1,"nb":2,"a":[["TED%3AAF-A0A420WQU0-F1-model_v4_TED01","TED novel fold AF-A0A420WQU0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A526216","Oceanibaculum indicum"],["NCBITaxon%3A1207063","Oceanibaculum indicum P24"]]},{"id":"NCBITaxon:527326","l":"Georgenia thermotolerans","na":2,"nb":1,"a":[["TED%3AAF-A0A7J5UNV2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J5UNV2-F1-model_v4_TED01"],["TED%3AAF-A0A7J5UIX3-F1-model_v4_TED04","TED novel fold AF-A0A7J5UIX3-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A527326","Georgenia thermotolerans"]]},{"id":"NCBITaxon:529505","l":"Belliella pelovolcani","na":2,"nb":1,"a":[["TED%3AAF-A0A1N7NE82-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A1N7NE82-F1-model_v4_TED05"],["TED%3AAF-A0A1N7Q4E5-F1-model_v4_TED03","TED novel fold AF-A0A1N7Q4E5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A529505","Belliella pelovolcani"]]},{"id":"NCBITaxon:530564","l":"Pirellula staleyi DSM 6068","na":1,"nb":2,"a":[["TED%3AAF-D2QXI3-F1-model_v4_TED05","TED novel fold AF-D2QXI3-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A125","Pirellula staleyi"],["NCBITaxon%3A530564","Pirellula staleyi DSM 6068"]]},{"id":"NCBITaxon:536044","l":"Methanolobus zinderi","na":2,"nb":1,"a":[["TED%3AAF-A0A7D5IAI6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7D5IAI6-F1-model_v4_TED01"],["TED%3AAF-A0A7D5E6R2-F1-model_v4_TED02","TED novel fold AF-A0A7D5E6R2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A536044","Methanolobus zinderi"]]},{"id":"NCBITaxon:5364","l":"Heliocybe sulcata","na":2,"nb":1,"a":[["TED%3AAF-A0A5C3NM97-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A5C3NM97-F1-model_v4_TED03"],["TED%3AAF-A0A5C3MY03-F1-model_v4_TED01","TED novel fold AF-A0A5C3MY03-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5364","Heliocybe sulcata"]]},{"id":"NCBITaxon:537006","l":"Parabacteroides johnsonii DSM 18315","na":1,"nb":2,"a":[["TED%3AAF-B7B7V2-F1-model_v4_TED03","TED novel fold AF-B7B7V2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A387661","Parabacteroides johnsonii"],["NCBITaxon%3A537006","Parabacteroides johnsonii DSM 18315"]]},{"id":"NCBITaxon:537011","l":"","na":1,"nb":2,"a":[["TED%3AAF-A0A6G1VST5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A6G1VST5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A165179","Segatella copri"],["NCBITaxon%3A537011","Segatella copri DSM 18205"]]},{"id":"NCBITaxon:53952","l":"Thermococcus peptonophilus","na":1,"nb":2,"a":[["TED%3AAF-A0A142CST1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A142CST1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A53952","Thermococcus peptonophilus"],["NCBITaxon%3A523851","Thermococcus peptonophilus OG-1 = JCM 9653"]]},{"id":"NCBITaxon:54062","l":"Pediococcus parvulus","na":1,"nb":2,"a":[["TED%3AAF-A0A511ITE1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A511ITE1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A54062","Pediococcus parvulus"],["NCBITaxon%3A1255634","Pediococcus parvulus CIRM 750"]]},{"id":"NCBITaxon:543526","l":"","na":1,"nb":2,"a":[["TED%3AAF-D2RXQ8-F1-model_v4_TED01","TED novel fold AF-D2RXQ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A62320","Haloterrigena turkmenica"],["NCBITaxon%3A543526","Haloterrigena turkmenica DSM 5511"]]},{"id":"NCBITaxon:545695","l":"","na":1,"nb":2,"a":[["TED%3AAF-F5Y7H9-F1-model_v4_TED01","TED highly-symmetric fold AF-F5Y7H9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A150829","Leadbettera azotonutricia"],["NCBITaxon%3A545695","Leadbettera azotonutricia ZAS-9"]]},{"id":"NCBITaxon:545697","l":"Clostridium celatum DSM 1785","na":1,"nb":2,"a":[["TED%3AAF-L1QP93-F1-model_v4_TED02","TED highly-symmetric fold AF-L1QP93-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A36834","Clostridium celatum"],["NCBITaxon%3A545697","Clostridium celatum DSM 1785"]]},{"id":"NCBITaxon:545864","l":"Pseudorhodoferax soli","na":2,"nb":1,"a":[["TED%3AAF-A0A368XMY9-F1-model_v4_TED04","TED novel fold AF-A0A368XMY9-F1-model_v4_TED04"],["TED%3AAF-A0A368Y0L3-F1-model_v4_TED04","TED novel fold AF-A0A368Y0L3-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A545864","Pseudorhodoferax soli"]]},{"id":"NCBITaxon:546265","l":"Neisseria lactamica ATCC 23970","na":1,"nb":2,"a":[["TED%3AAF-D0W7J3-F1-model_v4_TED01","TED highly-symmetric fold AF-D0W7J3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A486","Neisseria lactamica"],["NCBITaxon%3A546265","Neisseria lactamica ATCC 23970"]]},{"id":"NCBITaxon:546270","l":"Gemella haemolysans ATCC 10379","na":1,"nb":2,"a":[["TED%3AAF-C5NV13-F1-model_v4_TED02","TED novel fold AF-C5NV13-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1379","Gemella haemolysans"],["NCBITaxon%3A546270","Gemella haemolysans ATCC 10379"]]},{"id":"NCBITaxon:546271","l":"","na":1,"nb":2,"a":[["TED%3AAF-C9LW72-F1-model_v4_TED01","TED novel fold AF-C9LW72-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A69823","Selenomonas sputigena"],["NCBITaxon%3A546271","Selenomonas sputigena ATCC 35185"]]},{"id":"NCBITaxon:546414","l":"","na":1,"nb":2,"a":[["PROSITE%3APS00356","LacI-type HTH domain signature"]],"b":[["NCBITaxon%3A310783","Deinococcus deserti"],["NCBITaxon%3A546414","Deinococcus deserti VCD115"]]},{"id":"NCBITaxon:547559","l":"","na":1,"nb":2,"a":[["TED%3AAF-D3SYF3-F1-model_v4_TED01","TED novel fold AF-D3SYF3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A13769","Natrialba magadii"],["NCBITaxon%3A547559","Natrialba magadii ATCC 43099"]]},{"id":"NCBITaxon:550540","l":"","na":1,"nb":2,"a":[["TED%3AAF-E1SQV4-F1-model_v4_TED01","TED highly-symmetric fold AF-E1SQV4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A44012","Ferrimonas balearica"],["NCBITaxon%3A550540","Ferrimonas balearica DSM 9799"]]},{"id":"NCBITaxon:5514","l":"Fusarium sporotrichioides","na":2,"nb":1,"a":[["Pfam%3APF22701","Mal s 1 allergenic protein-like"],["TED%3AAF-A0A395RG49-F1-model_v4_TED02","TED novel fold AF-A0A395RG49-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A5514","Fusarium sporotrichioides"]]},{"id":"NCBITaxon:55209","l":"Pantoea cypripedii","na":2,"nb":1,"a":[["Pfam%3APF13618","Gluconate 2-dehydrogenase subunit 3"],["TED%3AAF-A0A1X1EQM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1X1EQM9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A55209","Pantoea cypripedii"]]},{"id":"NCBITaxon:553151","l":"Halopseudomonas pelagia","na":1,"nb":2,"a":[["TED%3AAF-A0A2A4AUI1-F1-model_v4_TED01","TED novel fold AF-A0A2A4AUI1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A553151","Halopseudomonas pelagia"],["NCBITaxon%3A1323663","Halopseudomonas pelagia CL-AP6"]]},{"id":"NCBITaxon:553178","l":"","na":1,"nb":2,"a":[["TED%3AAF-C2M6B3-F1-model_v4_TED03","TED novel fold AF-C2M6B3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1017","Capnocytophaga gingivalis"],["NCBITaxon%3A553178","Capnocytophaga gingivalis ATCC 33624"]]},{"id":"NCBITaxon:553220","l":"Campylobacter gracilis RM3268","na":1,"nb":2,"a":[["TED%3AAF-C8PGW1-F1-model_v4_TED02","TED novel fold AF-C8PGW1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A824","Campylobacter gracilis"],["NCBITaxon%3A553220","Campylobacter gracilis RM3268"]]},{"id":"NCBITaxon:5539","l":"Scytalidium lignicola","na":2,"nb":1,"a":[["TED%3AAF-A0A3E2GX72-F1-model_v4_TED02","TED novel fold AF-A0A3E2GX72-F1-model_v4_TED02"],["TED%3AAF-A0A3E2H974-F1-model_v4_TED01","TED novel fold AF-A0A3E2H974-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5539","Scytalidium lignicola"]]},{"id":"NCBITaxon:555311","l":"Saccharolobus solfataricus (strain 98/2)","na":2,"nb":1,"a":[["Pfam%3APF18533","Domain of unknown function (DUF5622)"],["Pfam%3APF21280","Archaeal helicase, domain 4"]],"b":[["NCBITaxon%3A555311","Saccharolobus solfataricus 98/2"]]},{"id":"NCBITaxon:558173","l":"Corynebacterium doosanense CAU 212 = DSM 45436","na":1,"nb":2,"a":[["TED%3AAF-A0A097IJJ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A097IJJ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1121358","Corynebacterium doosanense"],["NCBITaxon%3A558173","Corynebacterium doosanense CAU 212 = DSM 45436"]]},{"id":"NCBITaxon:558537","l":"Delftia lacustris","na":1,"nb":2,"a":[["TED%3AAF-A0A7T3DHC3-F1-model_v4_TED02","TED novel fold AF-A0A7T3DHC3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A80866","Delftia acidovorans"],["NCBITaxon%3A558537","Delftia lacustris"]]},{"id":"NCBITaxon:56055","l":"Bogoriella caseilytica","na":2,"nb":1,"a":[["TED%3AAF-A0A3N2B9M1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N2B9M1-F1-model_v4_TED01"],["TED%3AAF-A0A3N2B9S2-F1-model_v4_TED04","TED novel fold AF-A0A3N2B9S2-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A56055","Allobogoriella caseilytica"]]},{"id":"NCBITaxon:56458","l":"Xanthomonas sacchari","na":1,"nb":2,"a":[["TED%3AAF-A0A5D1AFE3-F1-model_v4_TED01","TED novel fold AF-A0A5D1AFE3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A56458","Xanthomonas sacchari"],["NCBITaxon%3A1084662","Xanthomonas sacchari NCPPB 4393"]]},{"id":"NCBITaxon:565072","l":"Streptomyces spongiae","na":2,"nb":1,"a":[["TED%3AAF-A0A5N8XGB6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5N8XGB6-F1-model_v4_TED01"],["TED%3AAF-A0A5N8XXA3-F1-model_v4_TED01","TED novel fold AF-A0A5N8XXA3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A565072","Streptomyces spongiae"]]},{"id":"NCBITaxon:5661","l":"Leishmania donovani","na":2,"nb":1,"a":[["Pfam%3APF03037","Kinetoplastid membrane protein 11"],["Pfam%3APF03130","PBS lyase HEAT-like repeat"]],"b":[["NCBITaxon%3A5661","Leishmania donovani"]]},{"id":"NCBITaxon:566549","l":"Corynebacterium matruchotii ATCC 33806","na":1,"nb":2,"a":[["TED%3AAF-C0E5R2-F1-model_v4_TED02","TED highly-symmetric fold AF-C0E5R2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A43768","Corynebacterium matruchotii"],["NCBITaxon%3A566549","Corynebacterium matruchotii ATCC 33806"]]},{"id":"NCBITaxon:566550","l":"Hungatella hathewayi DSM 13479","na":1,"nb":2,"a":[["TED%3AAF-D3AIU1-F1-model_v4_TED01","TED novel fold AF-D3AIU1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A154046","Hungatella hathewayi"],["NCBITaxon%3A566550","Hungatella hathewayi DSM 13479"]]},{"id":"NCBITaxon:56799","l":"Colwellia sp.","na":2,"nb":1,"a":[["Pfam%3APF11999","Ice-binding-like"],["TED%3AAF-A0A2G2IC50-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G2IC50-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A56799","Colwellia sp."]]},{"id":"NCBITaxon:568106","l":"Marinobacterium lutimaris","na":1,"nb":2,"a":[["TED%3AAF-A0A1H5Y6J0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1H5Y6J0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A568106","Marinobacterium lutimaris"],["NCBITaxon%3A657014","Thalassovita taeanensis"]]},{"id":"NCBITaxon:56811","l":"Psychrobacter sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A350DM46-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A350DM46-F1-model_v4_TED01"],["TED%3AAF-A0A353XTU7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A353XTU7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A56811","Psychrobacter sp."]]},{"id":"NCBITaxon:56812","l":"Shewanella frigidimarina","na":1,"nb":2,"a":[["Pfam%3APF14537","Cytochrome c3"]],"b":[["NCBITaxon%3A56812","Shewanella frigidimarina"],["NCBITaxon%3A318167","Shewanella frigidimarina NCIMB 400"]]},{"id":"NCBITaxon:568860","l":"Nonomuraea wenchangensis","na":2,"nb":1,"a":[["TED%3AAF-A0A1I0L6E6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I0L6E6-F1-model_v4_TED01"],["TED%3AAF-A0A1I0F204-F1-model_v4_TED01","TED novel fold AF-A0A1I0F204-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A568860","Nonomuraea wenchangensis"]]},{"id":"NCBITaxon:56946","l":"Afipia broomeae","na":1,"nb":2,"a":[["TED%3AAF-A0A2M8ZDY1-F1-model_v4_TED03","TED novel fold AF-A0A2M8ZDY1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A56946","Afipia broomeae"],["NCBITaxon%3A883078","Afipia broomeae ATCC 49717"]]},{"id":"NCBITaxon:5698","l":"Trypanosoma rangeli","na":2,"nb":1,"a":[["TED%3AAF-A0A3R7MRW3-F1-model_v4_TED01","TED novel fold AF-A0A3R7MRW3-F1-model_v4_TED01"],["TED%3AAF-A0A3R7RRC6-F1-model_v4_TED01","TED novel fold AF-A0A3R7RRC6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A429131","Trypanosoma rangeli SC58"]]},{"id":"NCBITaxon:57040","l":"Malonomonas rubra","na":1,"nb":2,"a":[["Pfam%3APF06857","Malonate decarboxylase delta subunit (MdcD)"]],"b":[["NCBITaxon%3A57040","Malonomonas rubra"],["NCBITaxon%3A1122189","Malonomonas rubra DSM 5091"]]},{"id":"NCBITaxon:570446","l":"Sphingobium faniae","na":2,"nb":1,"a":[["TED%3AAF-A0A1G4PQM2-F1-model_v4_TED01","TED novel fold AF-A0A1G4PQM2-F1-model_v4_TED01"],["TED%3AAF-A0A1G4TUU7-F1-model_v4_TED03","TED novel fold AF-A0A1G4TUU7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A570446","Sphingobium faniae"]]},{"id":"NCBITaxon:570835","l":"Edaphobacter aggregans","na":1,"nb":2,"a":[["TED%3AAF-A0A3R9QJI3-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A3R9QJI3-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A570835","Edaphobacter aggregans"],["NCBITaxon%3A1121860","Edaphobacter aggregans DSM 19364"]]},{"id":"NCBITaxon:572419","l":"Mycoplasma amphoriforme A39","na":1,"nb":2,"a":[["TED%3AAF-A0A292IJF8-F1-model_v4_TED03","TED novel fold AF-A0A292IJF8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A273136","Mycoplasma amphoriforme"],["NCBITaxon%3A572419","Mycoplasma amphoriforme A39"]]},{"id":"NCBITaxon:572479","l":"","na":1,"nb":2,"a":[["TED%3AAF-E3DS46-F1-model_v4_TED02","TED novel fold AF-E3DS46-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2331","Halanaerobium praevalens"],["NCBITaxon%3A572479","Halanaerobium praevalens DSM 2228"]]},{"id":"NCBITaxon:573064","l":"Methanocaldococcus fervens AG86","na":1,"nb":2,"a":[["Pfam%3APF02655","ATP-grasp domain"]],"b":[["NCBITaxon%3A83171","Methanocaldococcus fervens"],["NCBITaxon%3A573064","Methanocaldococcus fervens AG86"]]},{"id":"NCBITaxon:573065","l":"Asticcacaulis excentricus CB 48","na":1,"nb":2,"a":[["TED%3AAF-E8RUW8-F1-model_v4_TED01","TED novel fold AF-E8RUW8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A78587","Asticcacaulis excentricus"],["NCBITaxon%3A573065","Asticcacaulis excentricus CB 48"]]},{"id":"NCBITaxon:575540","l":"Isosphaera pallida ATCC 43644","na":1,"nb":2,"a":[["TED%3AAF-E8R507-F1-model_v4_TED01","TED highly-symmetric fold AF-E8R507-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A128","Isosphaera pallida"],["NCBITaxon%3A575540","Isosphaera pallida ATCC 43644"]]},{"id":"NCBITaxon:575584","l":"","na":1,"nb":2,"a":[["Pfam%3APF22290","Dimethylamine monooxygenase subunit DmmA-like, N-terminal domain"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A575584","Acinetobacter baumannii ATCC 19606 = CIP 70.34 = JCM 6841"]]},{"id":"NCBITaxon:5763","l":"Naegleria fowleri","na":2,"nb":1,"a":[["TED%3AAF-A0A6A5BVA1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A5BVA1-F1-model_v4_TED01"],["TED%3AAF-A0A6A5C079-F1-model_v4_TED01","TED novel fold AF-A0A6A5C079-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5763","Naegleria fowleri"]]},{"id":"NCBITaxon:57664","l":"Desulfuromonas thiophila","na":1,"nb":2,"a":[["TED%3AAF-A0A1G7DXZ5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G7DXZ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A57664","Desulfuromonas thiophila"],["NCBITaxon%3A1121475","Desulfuromonas thiophila DSM 8987"]]},{"id":"NCBITaxon:57732","l":"Enterococcus asini","na":1,"nb":2,"a":[["TED%3AAF-A0A413AL28-F1-model_v4_TED03","TED novel fold AF-A0A413AL28-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A57732","Enterococcus asini"],["NCBITaxon%3A1158606","Enterococcus asini ATCC 700915"]]},{"id":"NCBITaxon:578093","l":"Lineolata rhizophorae","na":2,"nb":1,"a":[["TED%3AAF-A0A6A6NRD4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A6NRD4-F1-model_v4_TED01"],["TED%3AAF-A0A6A6NL82-F1-model_v4_TED01","TED novel fold AF-A0A6A6NL82-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A578093","Lineolata rhizophorae"]]},{"id":"NCBITaxon:578457","l":"","na":2,"nb":1,"a":[["TED%3AAF-F8NT94-F1-model_v4_TED01","TED highly-symmetric fold AF-F8NT94-F1-model_v4_TED01"],["TED%3AAF-F8NMD8-F1-model_v4_TED01","TED novel fold AF-F8NMD8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A578457","Serpula lacrymans var. lacrymans S7.9"]]},{"id":"NCBITaxon:5786","l":"Dictyostelium purpureum","na":2,"nb":1,"a":[["TED%3AAF-F1A1P2-F1-model_v4_TED01","TED highly-symmetric fold AF-F1A1P2-F1-model_v4_TED01"],["TED%3AAF-F1A2N0-F1-model_v4_TED01","TED novel fold AF-F1A2N0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5786","Dictyostelium purpureum"]]},{"id":"NCBITaxon:579137","l":"Methanocaldococcus vulcanius M7","na":1,"nb":2,"a":[["TED%3AAF-C9RDN7-F1-model_v4_TED02","TED highly-symmetric fold AF-C9RDN7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A73913","Methanocaldococcus vulcanius"],["NCBITaxon%3A579137","Methanocaldococcus vulcanius M7"]]},{"id":"NCBITaxon:58172","l":"Paenibacillus sp.","na":2,"nb":1,"a":[["Pfam%3APF03442","Carbohydrate binding domain X2"],["TED%3AAF-A0A357M9E9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A357M9E9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A58172","Paenibacillus sp."]]},{"id":"NCBITaxon:582702","l":"Rhodanobacter glycinis","na":2,"nb":1,"a":[["TED%3AAF-A0A1I4G4N7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I4G4N7-F1-model_v4_TED02"],["TED%3AAF-A0A502CFB8-F1-model_v4_TED01","TED novel fold AF-A0A502CFB8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A582702","Rhodanobacter glycinis"]]},{"id":"NCBITaxon:582855","l":"Streptomyces haliclonae","na":1,"nb":2,"a":[["TED%3AAF-A0A7W7BYP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W7BYP7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A582855","Streptomyces haliclonae"],["NCBITaxon%3A582854","Streptomyces marinus"]]},{"id":"NCBITaxon:584657","l":"Intrasporangium chromatireducens Q5-1","na":1,"nb":2,"a":[["TED%3AAF-W9GQ20-F1-model_v4_TED01","TED highly-symmetric fold AF-W9GQ20-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1386088","Intrasporangium chromatireducens"],["NCBITaxon%3A584657","Intrasporangium chromatireducens Q5-1"]]},{"id":"NCBITaxon:585054","l":"Escherichia fergusonii ATCC 35469","na":1,"nb":2,"a":[["Pfam%3APF08364","Bacterial translation initiation factor IF-2 associated region"]],"b":[["NCBITaxon%3A564","Escherichia fergusonii"],["NCBITaxon%3A585054","Escherichia fergusonii ATCC 35469"]]},{"id":"NCBITaxon:5855","l":"Plasmodium vivax","na":1,"nb":2,"a":[["PROSITE%3APS01006","Formate and nitrite transporters signature 2"]],"b":[["NCBITaxon%3A5855","Plasmodium vivax"],["NCBITaxon%3A126793","Plasmodium vivax Sal-1"]]},{"id":"NCBITaxon:5857","l":"Plasmodium fragile","na":2,"nb":1,"a":[["Pfam%3APF02430","Apical membrane antigen 1"],["TED%3AAF-A0A0D9QCU0-F1-model_v4_TED03","TED novel fold AF-A0A0D9QCU0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A5857","Plasmodium fragile"]]},{"id":"NCBITaxon:588581","l":"Ruminiclostridium papyrosolvens DSM 2782","na":1,"nb":2,"a":[["TED%3AAF-F1TA67-F1-model_v4_TED05","TED highly-symmetric fold AF-F1TA67-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A29362","Ruminiclostridium papyrosolvens"],["NCBITaxon%3A588581","Ruminiclostridium papyrosolvens DSM 2782"]]},{"id":"NCBITaxon:589873","l":"Alteromonas australica","na":2,"nb":1,"a":[["TED%3AAF-A0A350P6M3-F1-model_v4_TED03","TED novel fold AF-A0A350P6M3-F1-model_v4_TED03"],["TED%3AAF-A0A358DY91-F1-model_v4_TED02","TED novel fold AF-A0A358DY91-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A589873","Alteromonas australica"]]},{"id":"NCBITaxon:589924","l":"Ferroglobus placidus DSM 10642","na":1,"nb":2,"a":[["TED%3AAF-D3S1W1-F1-model_v4_TED01","TED novel fold AF-D3S1W1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A54261","Ferroglobus placidus"],["NCBITaxon%3A589924","Ferroglobus placidus DSM 10642"]]},{"id":"NCBITaxon:590998","l":"","na":1,"nb":2,"a":[["Pfam%3APF02927","Cellulase N-terminal ig-like domain"]],"b":[["NCBITaxon%3A1708","Cellulomonas fimi"],["NCBITaxon%3A590998","Cellulomonas fimi ATCC 484"]]},{"id":"NCBITaxon:5911","l":"Tetrahymena thermophila","na":1,"nb":2,"a":[["Pfam%3APF10699","Male gamete fusion factor"]],"b":[["NCBITaxon%3A5911","Tetrahymena thermophila"],["NCBITaxon%3A312017","Tetrahymena thermophila SB210"]]},{"id":"NCBITaxon:592015","l":"Acetomicrobium hydrogeniformans ATCC BAA-1850","na":1,"nb":2,"a":[["TED%3AAF-A0A0T5X7S6-F1-model_v4_TED02","TED novel fold AF-A0A0T5X7S6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A649746","Acetomicrobium hydrogeniformans"],["NCBITaxon%3A592015","Acetomicrobium hydrogeniformans ATCC BAA-1850"]]},{"id":"NCBITaxon:592022","l":"","na":1,"nb":2,"a":[["Pfam%3APF21715","CggR N-terminal DNA binding domain"]],"b":[["NCBITaxon%3A1404","Priestia megaterium"],["NCBITaxon%3A592022","Priestia megaterium DSM 319"]]},{"id":"NCBITaxon:593907","l":"","na":1,"nb":2,"a":[["TED%3AAF-F8A5U1-F1-model_v4_TED01","TED highly-symmetric fold AF-F8A5U1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A11","Cellulomonas gilvus"],["NCBITaxon%3A593907","Cellulomonas gilvus ATCC 13127"]]},{"id":"NCBITaxon:59406","l":"Aromatoleum evansii","na":2,"nb":1,"a":[["Pfam%3APF14535","AMP-binding enzyme C-terminal domain"],["Pfam%3APF12837","4Fe-4S binding domain"]],"b":[["NCBITaxon%3A59406","Aromatoleum evansii"]]},{"id":"NCBITaxon:595670","l":"Acinetobacter kyonggiensis","na":2,"nb":1,"a":[["TED%3AAF-A0A1H3M0H6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H3M0H6-F1-model_v4_TED01"],["TED%3AAF-A0A1H3HIF5-F1-model_v4_TED02","TED novel fold AF-A0A1H3HIF5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A595670","Acinetobacter kyonggiensis"]]},{"id":"NCBITaxon:596151","l":"Solidesulfovibrio fructosivorans JJ]","na":1,"nb":2,"a":[["TED%3AAF-E1JSF8-F1-model_v4_TED01","TED highly-symmetric fold AF-E1JSF8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A878","Solidesulfovibrio fructosivorans"],["NCBITaxon%3A596151","Solidesulfovibrio fructosivorans JJ]"]]},{"id":"NCBITaxon:5970","l":"Exophiala dermatitidis","na":1,"nb":2,"a":[["Pfam%3APF22997","Chitin synthase 4-like domain"]],"b":[["NCBITaxon%3A5970","Exophiala dermatitidis"],["NCBITaxon%3A858893","Exophiala dermatitidis NIH/UT8656"]]},{"id":"NCBITaxon:59845","l":"Paenibacillus illinoisensis","na":1,"nb":2,"a":[["TED%3AAF-A0A2W0C6X7-F1-model_v4_TED01","TED novel fold AF-A0A2W0C6X7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A59845","Paenibacillus illinoisensis"],["NCBITaxon%3A1349779","Paenibacillus illinoisensis NBRC 15959"]]},{"id":"NCBITaxon:598659","l":"","na":1,"nb":2,"a":[["TED%3AAF-B9L8X6-F1-model_v4_TED01","TED highly-symmetric fold AF-B9L8X6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A244787","Nautilia profundicola"],["NCBITaxon%3A598659","Nautilia profundicola AmH"]]},{"id":"NCBITaxon:59919","l":"Prochlorococcus marinus subsp. pastoris str. CCMP1986","na":2,"nb":1,"a":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF12288","Carboxysome shell peptide mid-region"]],"b":[["NCBITaxon%3A59919","Prochlorococcus marinus subsp. pastoris str. CCMP1986"]]},{"id":"NCBITaxon:604354","l":"","na":1,"nb":2,"a":[["Pfam%3APF04475","Protein of unknown function (DUF555)"]],"b":[["NCBITaxon%3A172049","Thermococcus sibiricus"],["NCBITaxon%3A604354","Thermococcus sibiricus MM 739"]]},{"id":"NCBITaxon:60453","l":"Dactylosporangium sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A849DQQ6-F1-model_v4_TED02","TED novel fold AF-A0A849DQQ6-F1-model_v4_TED02"],["TED%3AAF-A0A849DTX5-F1-model_v4_TED03","TED novel fold AF-A0A849DTX5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A60453","Dactylosporangium sp."]]},{"id":"NCBITaxon:60480","l":"","na":2,"nb":1,"a":[["Pfam%3APF06276","Ferric iron reductase FhuF-like transporter"],["Pfam%3APF04183","IucA / IucC family"]],"b":[["NCBITaxon%3A60480","Shewanella sp. MR-4"]]},{"id":"NCBITaxon:60481","l":"Shewanella sp. (strain MR-7)","na":2,"nb":1,"a":[["Pfam%3APF04183","IucA / IucC family"],["TED%3AAF-Q0HVU8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q0HVU8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A60481","Shewanella sp. MR-7"]]},{"id":"NCBITaxon:60549","l":"Paraburkholderia phenazinium","na":2,"nb":1,"a":[["TED%3AAF-A0A1N6HFN5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1N6HFN5-F1-model_v4_TED01"],["TED%3AAF-A0A4R7QIB5-F1-model_v4_TED01","TED novel fold AF-A0A4R7QIB5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A60549","Paraburkholderia phenazinium"]]},{"id":"NCBITaxon:608538","l":"Hydrogenobacter thermophilus TK-6","na":1,"nb":2,"a":[["Pfam%3APF17805","AsnC-like ligand binding domain"]],"b":[["NCBITaxon%3A940","Hydrogenobacter thermophilus"],["NCBITaxon%3A608538","Hydrogenobacter thermophilus TK-6"]]},{"id":"NCBITaxon:60894","l":"Saccharopolyspora spinosa","na":1,"nb":2,"a":[["Pfam%3APF03559","NDP-hexose 2,3-dehydratase"]],"b":[["NCBITaxon%3A60894","Saccharopolyspora spinosa"],["NCBITaxon%3A994479","Saccharopolyspora spinosa NRRL 18395"]]},{"id":"NCBITaxon:610130","l":"[Clostridium] saccharolyticum WM1","na":1,"nb":2,"a":[["TED%3AAF-D9RA58-F1-model_v4_TED03","TED highly-symmetric fold AF-D9RA58-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A610130","[Clostridium] saccharolyticum WM1"],["NCBITaxon%3A84030","Lacrimispora saccharolytica"]]},{"id":"NCBITaxon:61644","l":"Chromatium okenii","na":1,"nb":2,"a":[["TED%3AAF-A0A2S7XR51-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S7XR51-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A61644","Chromatium okenii"],["NCBITaxon%3A1434305","Chromatium okenii LC"]]},{"id":"NCBITaxon:620903","l":"Negativicoccus succinicivorans","na":1,"nb":2,"a":[["TED%3AAF-A0A841R3K7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A841R3K7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A620903","Negativicoccus succinicivorans"],["NCBITaxon%3A1403945","Negativicoccus succinicivorans DORA_17_25"]]},{"id":"NCBITaxon:626931","l":"Bacteroides oleiciplenus","na":1,"nb":2,"a":[["TED%3AAF-A0A1Q6GFG4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q6GFG4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A626931","Bacteroides oleiciplenus"],["NCBITaxon%3A742727","Bacteroides oleiciplenus YIT 12058"]]},{"id":"NCBITaxon:626939","l":"Phascolarctobacterium succinatutens YIT 12067","na":1,"nb":2,"a":[["TED%3AAF-E8LCK5-F1-model_v4_TED01","TED novel fold AF-E8LCK5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A626940","Phascolarctobacterium succinatutens"],["NCBITaxon%3A626939","Phascolarctobacterium succinatutens YIT 12067"]]},{"id":"NCBITaxon:629741","l":"Kingella oralis ATCC 51147","na":1,"nb":2,"a":[["TED%3AAF-C4GEH4-F1-model_v4_TED01","TED highly-symmetric fold AF-C4GEH4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A505","Kingella oralis"],["NCBITaxon%3A629741","Kingella oralis ATCC 51147"]]},{"id":"NCBITaxon:633697","l":"","na":1,"nb":2,"a":[["Pfam%3APF19906","C-glycoside deglycosidase beta subunit"]],"b":[["NCBITaxon%3A29322","[Eubacterium] cellulosolvens"],["NCBITaxon%3A633697","[Eubacterium] cellulosolvens 6"]]},{"id":"NCBITaxon:637390","l":"Acidithiobacillus thiooxidans ATCC 19377","na":1,"nb":2,"a":[["TED%3AAF-A0A5P9XT39-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5P9XT39-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A930","Acidithiobacillus thiooxidans"],["NCBITaxon%3A637390","Acidithiobacillus thiooxidans ATCC 19377"]]},{"id":"NCBITaxon:637886","l":"Dysgonomonas hofstadii","na":1,"nb":2,"a":[["TED%3AAF-A0A840CH36-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A840CH36-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A637886","Dysgonomonas hofstadii"],["NCBITaxon%3A1298597","Dysgonomonas hofstadii JCM 17038 = DSM 104969"]]},{"id":"NCBITaxon:638300","l":"Cardiobacterium hominis ATCC 15826","na":1,"nb":2,"a":[["TED%3AAF-C8NBX0-F1-model_v4_TED02","TED novel fold AF-C8NBX0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2718","Cardiobacterium hominis"],["NCBITaxon%3A638300","Cardiobacterium hominis ATCC 15826"]]},{"id":"NCBITaxon:638302","l":"","na":1,"nb":2,"a":[["TED%3AAF-C4V4M5-F1-model_v4_TED02","TED highly-symmetric fold AF-C4V4M5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A135080","Centipeda flueggei"],["NCBITaxon%3A638302","Centipeda flueggei ATCC 43531"]]},{"id":"NCBITaxon:638303","l":"","na":1,"nb":2,"a":[["TED%3AAF-D3SLN6-F1-model_v4_TED03","TED highly-symmetric fold AF-D3SLN6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A136094","Thermocrinis albus"],["NCBITaxon%3A638303","Thermocrinis albus DSM 14484"]]},{"id":"NCBITaxon:639283","l":"Ancylobacter novellus DSM 506","na":1,"nb":2,"a":[["TED%3AAF-D6ZYI9-F1-model_v4_TED01","TED highly-symmetric fold AF-D6ZYI9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A921","Ancylobacter novellus"],["NCBITaxon%3A639283","Ancylobacter novellus DSM 506"]]},{"id":"NCBITaxon:644548","l":"Gordonia neofelifaecis NRRL B-59395","na":1,"nb":2,"a":[["TED%3AAF-F1YHR7-F1-model_v4_TED02","TED novel fold AF-F1YHR7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A945692","Gordonia neofelifaecis"],["NCBITaxon%3A644548","Gordonia neofelifaecis NRRL B-59395"]]},{"id":"NCBITaxon:645127","l":"","na":1,"nb":2,"a":[["Pfam%3APF03744","6-carboxyhexanoate--CoA ligase"]],"b":[["NCBITaxon%3A161879","Corynebacterium kroppenstedtii"],["NCBITaxon%3A645127","Corynebacterium kroppenstedtii DSM 44385"]]},{"id":"NCBITaxon:645463","l":"Clostridioides difficile R20291","na":1,"nb":2,"a":[["Pfam%3APF04392","ABC transporter substrate binding protein"]],"b":[["NCBITaxon%3A1496","Clostridioides difficile"],["NCBITaxon%3A645463","Clostridioides difficile R20291"]]},{"id":"NCBITaxon:64571","l":"Lobosporangium transversale","na":2,"nb":1,"a":[["TED%3AAF-A0A1Y2G8M8-F1-model_v4_TED01","TED novel fold AF-A0A1Y2G8M8-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2GK20-F1-model_v4_TED03","TED novel fold AF-A0A1Y2GK20-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A64571","Lobosporangium transversale"]]},{"id":"NCBITaxon:645991","l":"","na":1,"nb":2,"a":[["TED%3AAF-F0T282-F1-model_v4_TED01","TED highly-symmetric fold AF-F0T282-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A51197","Syntrophobotulus glycolicus"],["NCBITaxon%3A645991","Syntrophobotulus glycolicus DSM 8271"]]},{"id":"NCBITaxon:649349","l":"Leadbetterella byssophila DSM 17132","na":1,"nb":2,"a":[["TED%3AAF-E4RVH3-F1-model_v4_TED02","TED novel fold AF-E4RVH3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A316068","Leadbetterella byssophila"],["NCBITaxon%3A649349","Leadbetterella byssophila DSM 17132"]]},{"id":"NCBITaxon:649638","l":"","na":1,"nb":2,"a":[["TED%3AAF-D7CR89-F1-model_v4_TED01","TED highly-symmetric fold AF-D7CR89-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A332249","Truepera radiovictrix"],["NCBITaxon%3A649638","Truepera radiovictrix DSM 17093"]]},{"id":"NCBITaxon:649639","l":"","na":1,"nb":2,"a":[["Pfam%3APF03424","Carbohydrate binding domain (family 17/28)"]],"b":[["NCBITaxon%3A1413","Evansella cellulosilytica"],["NCBITaxon%3A649639","Evansella cellulosilytica DSM 2522"]]},{"id":"NCBITaxon:64972","l":"Oceanobacter kriegii","na":1,"nb":2,"a":[["Pfam%3APF02923","Restriction endonuclease BamHI"]],"b":[["NCBITaxon%3A64972","Oceanobacter kriegii"],["NCBITaxon%3A1122615","Oceanobacter kriegii DSM 6294"]]},{"id":"NCBITaxon:649747","l":"Aneurinibacillus aneurinilyticus ATCC 12856","na":1,"nb":2,"a":[["TED%3AAF-U1WRS1-F1-model_v4_TED03","TED highly-symmetric fold AF-U1WRS1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1391","Aneurinibacillus aneurinilyticus"],["NCBITaxon%3A649747","Aneurinibacillus aneurinilyticus ATCC 12856"]]},{"id":"NCBITaxon:649755","l":"Faecalitalea cylindroides ATCC 27803","na":1,"nb":2,"a":[["TED%3AAF-U2P7A3-F1-model_v4_TED01","TED highly-symmetric fold AF-U2P7A3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39483","Faecalitalea cylindroides"],["NCBITaxon%3A649755","Faecalitalea cylindroides ATCC 27803"]]},{"id":"NCBITaxon:649756","l":"Anaerostipes hadrus","na":1,"nb":2,"a":[["TED%3AAF-A0A173SPJ6-F1-model_v4_TED03","TED novel fold AF-A0A173SPJ6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A649756","Anaerostipes hadrus"],["NCBITaxon%3A649757","Anaerostipes hadrus ATCC 29173 = JCM 17467"]]},{"id":"NCBITaxon:65","l":"Herpetosiphon aurantiacus","na":1,"nb":2,"a":[["Pfam%3APF09520","Type II restriction endonuclease, HinfI"]],"b":[["NCBITaxon%3A65","Herpetosiphon aurantiacus"],["NCBITaxon%3A316274","Herpetosiphon aurantiacus DSM 785"]]},{"id":"NCBITaxon:652620","l":"","na":1,"nb":2,"a":[["Pfam%3APF12574","120 KDa Rickettsia surface antigen"]],"b":[["NCBITaxon%3A35790","Rickettsia japonica"],["NCBITaxon%3A652620","Rickettsia japonica YH"]]},{"id":"NCBITaxon:652722","l":"Prevotella sp. oral taxon 313","na":1,"nb":2,"a":[["TED%3AAF-A0A2T4TJT6-F1-model_v4_TED01","TED novel fold AF-A0A2T4TJT6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A652722","Prevotella sp. oral taxon 313"],["NCBITaxon%3A621373","Prevotella sp. oral taxon 313 str. D3"]]},{"id":"NCBITaxon:652764","l":"Azospirillum sp. TSH100","na":1,"nb":2,"a":[["TED%3AAF-A0A4P7YGG1-F1-model_v4_TED01","TED novel fold AF-A0A4P7YGG1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A192","Azospirillum brasilense"],["NCBITaxon%3A652764","Azospirillum sp. TSH100"]]},{"id":"NCBITaxon:653931","l":"Sphingomonas alpina","na":2,"nb":1,"a":[["TED%3AAF-A0A7G5YYV7-F1-model_v4_TED01","TED novel fold AF-A0A7G5YYV7-F1-model_v4_TED01"],["TED%3AAF-A0A7H0LPD7-F1-model_v4_TED01","TED novel fold AF-A0A7H0LPD7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A653931","Sphingomonas alpina"]]},{"id":"NCBITaxon:655816","l":"Bacillus spizizenii (strain ATCC 23059 / NRRL B-14472 / W23)","na":2,"nb":1,"a":[["Pfam%3APF13930","DNA/RNA non-specific endonuclease"],["Pfam%3APF03626","Prokaryotic Cytochrome C oxidase subunit IV"]],"b":[["NCBITaxon%3A655816","Bacillus spizizenii str. W23"]]},{"id":"NCBITaxon:656914","l":"Desulfonispora thiosulfatigenes DSM 11270","na":1,"nb":2,"a":[["TED%3AAF-A0A1W1UJ66-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W1UJ66-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A83661","Desulfonispora thiosulfatigenes"],["NCBITaxon%3A656914","Desulfonispora thiosulfatigenes DSM 11270"]]},{"id":"NCBITaxon:657318","l":"","na":1,"nb":2,"a":[["TED%3AAF-D6E2S4-F1-model_v4_TED03","TED novel fold AF-D6E2S4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A39491","Agathobacter rectalis"],["NCBITaxon%3A657318","Agathobacter rectalis DSM 17629"]]},{"id":"NCBITaxon:659243","l":"Bacillus siamensis","na":1,"nb":2,"a":[["TED%3AAF-A0A853L550-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A853L550-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A659243","Bacillus siamensis"],["NCBITaxon%3A1177185","Bacillus siamensis KCTC 13613"]]},{"id":"NCBITaxon:659425","l":"Thermoclostridium caenicola","na":1,"nb":2,"a":[["TED%3AAF-A0A1M6H7B8-F1-model_v4_TED02","TED novel fold AF-A0A1M6H7B8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A659425","Thermoclostridium caenicola"],["NCBITaxon%3A1121300","Thermoclostridium caenicola DSM 19027"]]},{"id":"NCBITaxon:661","l":"Photobacterium angustum","na":1,"nb":2,"a":[["TED%3AAF-A0A2S7VJB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S7VJB4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A661","Photobacterium angustum"],["NCBITaxon%3A314292","Photobacterium angustum S14"]]},{"id":"NCBITaxon:663278","l":"","na":1,"nb":2,"a":[["TED%3AAF-E6U344-F1-model_v4_TED03","TED highly-symmetric fold AF-E6U344-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A253239","Ethanoligenens harbinense"],["NCBITaxon%3A663278","Ethanoligenens harbinense YUAN-3"]]},{"id":"NCBITaxon:665004","l":"Thermobifida cellulosilytica TB100","na":1,"nb":2,"a":[["TED%3AAF-A0A147KM88-F1-model_v4_TED01","TED novel fold AF-A0A147KM88-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A144786","Thermobifida cellulosilytica"],["NCBITaxon%3A665004","Thermobifida cellulosilytica TB100"]]},{"id":"NCBITaxon:666681","l":"Methylotenera versatilis 301","na":1,"nb":2,"a":[["TED%3AAF-D7DL14-F1-model_v4_TED01","TED novel fold AF-D7DL14-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1055487","Methylotenera versatilis"],["NCBITaxon%3A666681","Methylotenera versatilis 301"]]},{"id":"NCBITaxon:66821","l":"Sulfurospirillum multivorans","na":1,"nb":2,"a":[["Pfam%3APF13484","4Fe-4S double cluster binding domain"]],"b":[["NCBITaxon%3A66821","Sulfurospirillum multivorans"],["NCBITaxon%3A1150621","Sulfurospirillum multivorans DSM 12446"]]},{"id":"NCBITaxon:67003","l":"Trypanosoma theileri","na":2,"nb":1,"a":[["TED%3AAF-A0A1X0P2L0-F1-model_v4_TED01","TED novel fold AF-A0A1X0P2L0-F1-model_v4_TED01"],["TED%3AAF-A0A1X0P808-F1-model_v4_TED03","TED novel fold AF-A0A1X0P808-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A67003","Trypanosoma theileri"]]},{"id":"NCBITaxon:670483","l":"Gloeophyllum trabeum (strain ATCC 11539 / FP-39264 / Madison 617)","na":2,"nb":1,"a":[["TED%3AAF-S7PVB2-F1-model_v4_TED01","TED highly-symmetric fold AF-S7PVB2-F1-model_v4_TED01"],["TED%3AAF-S7PSV9-F1-model_v4_TED02","TED novel fold AF-S7PSV9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A670483","Gloeophyllum trabeum ATCC 11539"]]},{"id":"NCBITaxon:670487","l":"","na":1,"nb":2,"a":[["TED%3AAF-E4U714-F1-model_v4_TED01","TED highly-symmetric fold AF-E4U714-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A187137","Oceanithermus profundus"],["NCBITaxon%3A670487","Oceanithermus profundus DSM 14977"]]},{"id":"NCBITaxon:679189","l":"Prevotella timonensis CRIS 5C-B1","na":2,"nb":1,"a":[["TED%3AAF-D1W1N1-F1-model_v4_TED01","TED highly-symmetric fold AF-D1W1N1-F1-model_v4_TED01"],["TED%3AAF-D1VYX6-F1-model_v4_TED04","TED novel fold AF-D1VYX6-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A679189","Hoylesella timonensis CRIS 5C-B1"]]},{"id":"NCBITaxon:679200","l":"Johnsonella ignava ATCC 51276","na":1,"nb":2,"a":[["TED%3AAF-G5GIZ0-F1-model_v4_TED01","TED highly-symmetric fold AF-G5GIZ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A43995","Johnsonella ignava"],["NCBITaxon%3A679200","Johnsonella ignava ATCC 51276"]]},{"id":"NCBITaxon:679201","l":"","na":1,"nb":2,"a":[["TED%3AAF-G5GM54-F1-model_v4_TED01","TED novel fold AF-G5GM54-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A135082","Centipeda infelix"],["NCBITaxon%3A679201","Centipeda infelix ATCC 43532"]]},{"id":"NCBITaxon:679318","l":"Rhodococcus sp. WMMA185","na":2,"nb":1,"a":[["TED%3AAF-A0A1D8T5W2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1D8T5W2-F1-model_v4_TED02"],["TED%3AAF-A0A1D8T4K7-F1-model_v4_TED02","TED novel fold AF-A0A1D8T4K7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A679318","Rhodococcus sp. WMMA185"]]},{"id":"NCBITaxon:679926","l":"Methanolacinia petrolearia DSM 11571","na":1,"nb":2,"a":[["TED%3AAF-E1RJC3-F1-model_v4_TED02","TED novel fold AF-E1RJC3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A54120","Methanolacinia petrolearia"],["NCBITaxon%3A679926","Methanolacinia petrolearia DSM 11571"]]},{"id":"NCBITaxon:679937","l":"Bacteroides coprosuis DSM 18011","na":1,"nb":2,"a":[["TED%3AAF-F3ZUW4-F1-model_v4_TED02","TED novel fold AF-F3ZUW4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A151276","Bacteroides coprosuis"],["NCBITaxon%3A679937","Bacteroides coprosuis DSM 18011"]]},{"id":"NCBITaxon:68170","l":"","na":2,"nb":1,"a":[["Pfam%3APF12902","Ferritin-like"],["TED%3AAF-A0A0F0GZM7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0F0GZM7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A68170","Lentzea aerocolonigenes"]]},{"id":"NCBITaxon:68215","l":"Streptomyces griseoverticillatus","na":1,"nb":2,"a":[["Pfam%3APF19398","Lantibiotic duramycin B-like"]],"b":[["NCBITaxon%3A53446","Streptomyces cinnamoneus"],["NCBITaxon%3A68215","Streptomyces griseoverticillatus"]]},{"id":"NCBITaxon:68239","l":"Streptomyces mirabilis","na":1,"nb":2,"a":[["TED%3AAF-A0A1I2Y4U7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2Y4U7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A68239","Streptomyces mirabilis"],["NCBITaxon%3A1169149","Streptomyces mirabilis 138MFCol5.1"]]},{"id":"NCBITaxon:682795","l":"","na":1,"nb":2,"a":[["TED%3AAF-G8NRD9-F1-model_v4_TED01","TED highly-symmetric fold AF-G8NRD9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A940614","Granulicella mallensis"],["NCBITaxon%3A682795","Granulicella mallensis MP5ACTX8"]]},{"id":"NCBITaxon:683260","l":"Nonomuraea maritima","na":2,"nb":1,"a":[["TED%3AAF-A0A1G8Z2R0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G8Z2R0-F1-model_v4_TED02"],["TED%3AAF-A0A1G9GNN2-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A1G9GNN2-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A683260","Nonomuraea maritima"]]},{"id":"NCBITaxon:683846","l":"Fervidicoccus fontis","na":1,"nb":2,"a":[["TED%3AAF-A0A7C1E7K4-F1-model_v4_TED03","TED novel fold AF-A0A7C1E7K4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A683846","Fervidicoccus fontis"],["NCBITaxon%3A1163730","Fervidicoccus fontis Kam940"]]},{"id":"NCBITaxon:68775","l":"Crucibulum laeve","na":2,"nb":1,"a":[["TED%3AAF-A0A5C3M7N8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5C3M7N8-F1-model_v4_TED02"],["TED%3AAF-A0A5C3LPE8-F1-model_v4_TED02","TED novel fold AF-A0A5C3LPE8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A68775","Crucibulum laeve"]]},{"id":"NCBITaxon:687861","l":"","na":1,"nb":2,"a":[["Pfam%3APF17841","BID domain of Bartonella effector protein (Bep)"]],"b":[["NCBITaxon%3A165694","Bartonella schoenbuchensis"],["NCBITaxon%3A687861","Bartonella schoenbuchensis R1"]]},{"id":"NCBITaxon:688269","l":"Pseudothermotoga thermarum DSM 5069","na":1,"nb":2,"a":[["TED%3AAF-F7YY41-F1-model_v4_TED02","TED highly-symmetric fold AF-F7YY41-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A119394","Pseudothermotoga thermarum"],["NCBITaxon%3A688269","Pseudothermotoga thermarum DSM 5069"]]},{"id":"NCBITaxon:69019","l":"Streptomyces sp. (strain N174)","na":2,"nb":1,"a":[["Pfam%3APF01374","Glycosyl hydrolase family 46"],["PROSITE%3APS60000","Chitosanases families 46 and 80 active sites signature"]],"b":[["NCBITaxon%3A69019","Streptomyces sp. N174"]]},{"id":"NCBITaxon:692036","l":"Tuwongella immobilis","na":2,"nb":1,"a":[["TED%3AAF-A0A6C2YKE9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6C2YKE9-F1-model_v4_TED01"],["TED%3AAF-A0A6C2YRP1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6C2YRP1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A692036","Tuwongella immobilis"]]},{"id":"NCBITaxon:693023","l":"Roseomonas pecuniae","na":2,"nb":1,"a":[["TED%3AAF-A0A840Y722-F1-model_v4_TED01","TED novel fold AF-A0A840Y722-F1-model_v4_TED01"],["TED%3AAF-A0A840Y8N1-F1-model_v4_TED02","TED novel fold AF-A0A840Y8N1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A693023","Muricoccus pecuniae"]]},{"id":"NCBITaxon:693216","l":"Cronobacter turicensis z3032","na":1,"nb":2,"a":[["TED%3AAF-C9Y1S3-F1-model_v4_TED01","TED novel fold AF-C9Y1S3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A413502","Cronobacter turicensis"],["NCBITaxon%3A693216","Cronobacter turicensis z3032"]]},{"id":"NCBITaxon:693661","l":"Archaeoglobus veneficus SNP6","na":1,"nb":2,"a":[["TED%3AAF-F2KRD1-F1-model_v4_TED02","TED highly-symmetric fold AF-F2KRD1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A58290","Archaeoglobus veneficus"],["NCBITaxon%3A693661","Archaeoglobus veneficus SNP6"]]},{"id":"NCBITaxon:69368","l":"Microbacterium saperdae","na":2,"nb":1,"a":[["TED%3AAF-A0A543BLE7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A543BLE7-F1-model_v4_TED01"],["TED%3AAF-A0A543BLF3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A543BLF3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A69368","Microbacterium saperdae"]]},{"id":"NCBITaxon:693988","l":"Bilophila sp. 4 1 30","na":2,"nb":1,"a":[["TED%3AAF-G1V4C5-F1-model_v4_TED01","TED highly-symmetric fold AF-G1V4C5-F1-model_v4_TED01"],["TED%3AAF-G1V6L8-F1-model_v4_TED01","TED highly-symmetric fold AF-G1V6L8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A693988","Bilophila sp. 4_1_30"]]},{"id":"NCBITaxon:694270","l":"Fusarium longipes","na":2,"nb":1,"a":[["TED%3AAF-A0A395SX93-F1-model_v4_TED01","TED novel fold AF-A0A395SX93-F1-model_v4_TED01"],["TED%3AAF-A0A395T148-F1-model_v4_TED01","TED novel fold AF-A0A395T148-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A694270","Fusarium longipes"]]},{"id":"NCBITaxon:694429","l":"","na":1,"nb":2,"a":[["TED%3AAF-G0EC50-F1-model_v4_TED01","TED highly-symmetric fold AF-G0EC50-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A54252","Pyrolobus fumarii"],["NCBITaxon%3A694429","Pyrolobus fumarii 1A"]]},{"id":"NCBITaxon:694433","l":"Saprospira grandis DSM 2844","na":1,"nb":2,"a":[["TED%3AAF-J0P380-F1-model_v4_TED01","TED highly-symmetric fold AF-J0P380-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1008","Saprospira grandis"],["NCBITaxon%3A694433","Saprospira grandis DSM 2844"]]},{"id":"NCBITaxon:694437","l":"Flammeovirga aprica JL-4","na":1,"nb":2,"a":[["TED%3AAF-A0A7X9P2C6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X9P2C6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29528","Flammeovirga aprica"],["NCBITaxon%3A694437","Flammeovirga aprica JL-4"]]},{"id":"NCBITaxon:696747","l":"Limnospira platensis (strain NIES-39 / UTEX 3086 / IAM M-135)","na":2,"nb":1,"a":[["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"]],"b":[["NCBITaxon%3A696747","Limnospira platensis NIES-39"]]},{"id":"NCBITaxon:698738","l":"Oleispira antarctica RB-8","na":1,"nb":2,"a":[["TED%3AAF-R4YLW4-F1-model_v4_TED01","TED highly-symmetric fold AF-R4YLW4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A188908","Oleispira antarctica"],["NCBITaxon%3A698738","Oleispira antarctica RB-8"]]},{"id":"NCBITaxon:698757","l":"","na":1,"nb":2,"a":[["TED%3AAF-H6QD06-F1-model_v4_TED01","TED novel fold AF-H6QD06-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A99007","Pyrobaculum oguniense"],["NCBITaxon%3A698757","Pyrobaculum oguniense TE7"]]},{"id":"NCBITaxon:698759","l":"Streptomyces ipomoeae 91-03","na":2,"nb":1,"a":[["TED%3AAF-L1KR24-F1-model_v4_TED01","TED highly-symmetric fold AF-L1KR24-F1-model_v4_TED01"],["TED%3AAF-L1L393-F1-model_v4_TED01","TED highly-symmetric fold AF-L1L393-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A698759","Streptomyces ipomoeae 91-03"]]},{"id":"NCBITaxon:703497","l":"Microthyrium microscopicum","na":2,"nb":1,"a":[["TED%3AAF-A0A6A6U421-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A6U421-F1-model_v4_TED01"],["TED%3AAF-A0A6A6U184-F1-model_v4_TED01","TED novel fold AF-A0A6A6U184-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A703497","Microthyrium microscopicum"]]},{"id":"NCBITaxon:703511","l":"Trichodelitschia bisporula","na":2,"nb":1,"a":[["TED%3AAF-A0A6G1HXI5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6G1HXI5-F1-model_v4_TED01"],["TED%3AAF-A0A6G1I3S2-F1-model_v4_TED01","TED novel fold AF-A0A6G1I3S2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A703511","Trichodelitschia bisporula"]]},{"id":"NCBITaxon:70611","l":"Legionella taurinensis","na":2,"nb":1,"a":[["TED%3AAF-A0A3A5L139-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3A5L139-F1-model_v4_TED02"],["TED%3AAF-A0A4T0Y3E4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4T0Y3E4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A70611","Legionella taurinensis"]]},{"id":"NCBITaxon:706587","l":"Desulfomonile tiedjei DSM 6799","na":1,"nb":2,"a":[["TED%3AAF-I4CB34-F1-model_v4_TED01","TED highly-symmetric fold AF-I4CB34-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2358","Desulfomonile tiedjei"],["NCBITaxon%3A706587","Desulfomonile tiedjei DSM 6799"]]},{"id":"NCBITaxon:706981","l":"Clathrospora elynae","na":2,"nb":1,"a":[["TED%3AAF-A0A6A5SIJ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A5SIJ0-F1-model_v4_TED01"],["TED%3AAF-A0A6A5SZD9-F1-model_v4_TED01","TED novel fold AF-A0A6A5SZD9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A706981","Clathrospora elynae"]]},{"id":"NCBITaxon:709813","l":"Azospirillum sp. TSA6c","na":1,"nb":2,"a":[["TED%3AAF-A0A2U1WGZ6-F1-model_v4_TED03","TED novel fold AF-A0A2U1WGZ6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A192","Azospirillum brasilense"],["NCBITaxon%3A709813","Azospirillum sp. TSA6c"]]},{"id":"NCBITaxon:710648","l":"Acinetobacter sp. (strain Tol 5)","na":2,"nb":1,"a":[["Pfam%3APF04355","Outer membrane protein assembly factor BamE domain"],["Pfam%3APF05662","Coiled stalk of trimeric autotransporter adhesin"]],"b":[["NCBITaxon%3A710648","Acinetobacter sp. Tol 5"]]},{"id":"NCBITaxon:712365","l":"Leptotrichia sp. oral taxon 417","na":2,"nb":1,"a":[["TED%3AAF-A0A851IVR6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A851IVR6-F1-model_v4_TED02"],["TED%3AAF-A0A851IRL6-F1-model_v4_TED02","TED novel fold AF-A0A851IRL6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A712365","Leptotrichia sp. oral taxon 417"]]},{"id":"NCBITaxon:712991","l":"Lachnospiraceae bacterium oral taxon 500","na":1,"nb":2,"a":[["TED%3AAF-A0A2R3N3Q0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2R3N3Q0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A712991","Lachnospiraceae bacterium oral taxon 500"],["NCBITaxon%3A575593","Lachnospiraceae oral taxon 107 str. F0167"]]},{"id":"NCBITaxon:713604","l":"Amycolatopsis mediterranei S699","na":1,"nb":2,"a":[["TED%3AAF-G0FSL6-F1-model_v4_TED01","TED novel fold AF-G0FSL6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A33910","Amycolatopsis mediterranei"],["NCBITaxon%3A713604","Amycolatopsis mediterranei S699"]]},{"id":"NCBITaxon:714962","l":"Escherichia coli O18:K1:H7 (strain IHE3034 / ExPEC)","na":2,"nb":1,"a":[["Pfam%3APF27348","EcpR N-terminal domain"],["Pfam%3APF15976","CS1-pili formation C-terminal"]],"b":[["NCBITaxon%3A714962","Escherichia coli IHE3034"]]},{"id":"NCBITaxon:716760","l":"Azospirillum sp. TSO5","na":1,"nb":2,"a":[["TED%3AAF-A0A2U1YMX5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2U1YMX5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A192","Azospirillum brasilense"],["NCBITaxon%3A716760","Azospirillum sp. TSO5"]]},{"id":"NCBITaxon:717646","l":"Baudoinia panamericana (strain UAMH 10762)","na":2,"nb":1,"a":[["TED%3AAF-M2N4I7-F1-model_v4_TED02","TED novel fold AF-M2N4I7-F1-model_v4_TED02"],["TED%3AAF-M2NGF0-F1-model_v4_TED01","TED novel fold AF-M2NGF0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A717646","Baudoinia panamericana UAMH 10762"]]},{"id":"NCBITaxon:717774","l":"Marinomonas mediterranea MMB-1","na":1,"nb":2,"a":[["TED%3AAF-F2K4E6-F1-model_v4_TED01","TED novel fold AF-F2K4E6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A119864","Marinomonas mediterranea"],["NCBITaxon%3A717774","Marinomonas mediterranea MMB-1"]]},{"id":"NCBITaxon:717836","l":"Cercospora zeae-maydis SCOH1-5","na":2,"nb":1,"a":[["TED%3AAF-A0A6A6F9L6-F1-model_v4_TED01","TED novel fold AF-A0A6A6F9L6-F1-model_v4_TED01"],["TED%3AAF-A0A6A6FG01-F1-model_v4_TED01","TED novel fold AF-A0A6A6FG01-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A717836","Cercospora zeae-maydis SCOH1-5"]]},{"id":"NCBITaxon:717959","l":"Alistipes shahii WAL 8301","na":1,"nb":2,"a":[["TED%3AAF-D4INA3-F1-model_v4_TED03","TED novel fold AF-D4INA3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A328814","Alistipes shahii"],["NCBITaxon%3A717959","Alistipes shahii WAL 8301"]]},{"id":"NCBITaxon:717962","l":"Coprococcus catus GD/7","na":2,"nb":1,"a":[["TED%3AAF-D4J8X9-F1-model_v4_TED02","TED novel fold AF-D4J8X9-F1-model_v4_TED02"],["TED%3AAF-D4J8Z5-F1-model_v4_TED01","TED novel fold AF-D4J8Z5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A717962","Pseudocoprococcus catus GD/7"]]},{"id":"NCBITaxon:717982","l":"Auricularia subglabra (strain TFB-10046 / SS5)","na":2,"nb":1,"a":[["TED%3AAF-J0D7B6-F1-model_v4_TED01","TED highly-symmetric fold AF-J0D7B6-F1-model_v4_TED01"],["TED%3AAF-J0LD77-F1-model_v4_TED04","TED novel fold AF-J0LD77-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A717982","Auricularia subglabra TFB-10046 SS5"]]},{"id":"NCBITaxon:718193","l":"Ferrimonas sediminum","na":2,"nb":1,"a":[["TED%3AAF-A0A1G8RI63-F1-model_v4_TED01","TED novel fold AF-A0A1G8RI63-F1-model_v4_TED01"],["TED%3AAF-A0A1G8ZWE4-F1-model_v4_TED02","TED novel fold AF-A0A1G8ZWE4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A718193","Ferrimonas sediminum"]]},{"id":"NCBITaxon:720554","l":"","na":1,"nb":2,"a":[["TED%3AAF-G8LY27-F1-model_v4_TED01","TED highly-symmetric fold AF-G8LY27-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A288965","Acetivibrio clariflavus"],["NCBITaxon%3A720554","Acetivibrio clariflavus DSM 19732"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":2,"a":[["TED%3AAF-A0A5C7XIK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7XIK2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A72226","Lysobacter sp."],["NCBITaxon%3A1645665","Solilutibacter silvestris"]]},{"id":"NCBITaxon:72520","l":"Microchloropsis gaditana","na":1,"nb":2,"a":[["TED%3AAF-W7TG93-F1-model_v4_TED02","TED highly-symmetric fold AF-W7TG93-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A72520","Microchloropsis gaditana"],["NCBITaxon%3A1093141","Nannochloropsis gaditana CCMP526"]]},{"id":"NCBITaxon:72586","l":"Pseudomonas sp. (strain CBS-3)","na":2,"nb":1,"a":[["Pfam%3APF13279","Thioesterase-like superfamily"],["PROSITE%3APS01328","4-hydroxybenzoyl-CoA thioesterase family active site"]],"b":[["NCBITaxon%3A72586","Pseudomonas sp. CBS3"]]},{"id":"NCBITaxon:74033","l":"Antarctobacter heliothermus","na":2,"nb":1,"a":[["TED%3AAF-A0A239BAJ3-F1-model_v4_TED01","TED novel fold AF-A0A239BAJ3-F1-model_v4_TED01"],["TED%3AAF-A0A239DKX9-F1-model_v4_TED02","TED novel fold AF-A0A239DKX9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A74033","Antarctobacter heliothermus"]]},{"id":"NCBITaxon:742152","l":"Wolfiporia cocos (strain MD-104)","na":2,"nb":1,"a":[["TED%3AAF-A0A2H3IX44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H3IX44-F1-model_v4_TED01"],["TED%3AAF-A0A2H3JM17-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H3JM17-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A742152","Wolfiporia cocos MD-104 SS10"]]},{"id":"NCBITaxon:742723","l":"","na":1,"nb":2,"a":[["TED%3AAF-F3BAA4-F1-model_v4_TED02","TED highly-symmetric fold AF-F3BAA4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1898203","Lachnospiraceae bacterium"],["NCBITaxon%3A742723","Lachnospiraceae bacterium 2_1_46FAA"]]},{"id":"NCBITaxon:742726","l":"Barnesiella intestinihominis YIT 11860","na":1,"nb":2,"a":[["TED%3AAF-K0XG25-F1-model_v4_TED01","TED highly-symmetric fold AF-K0XG25-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A487174","Barnesiella intestinihominis"],["NCBITaxon%3A742726","Barnesiella intestinihominis YIT 11860"]]},{"id":"NCBITaxon:742742","l":"Collinsella tanakaei YIT 12063","na":1,"nb":2,"a":[["TED%3AAF-G1WI80-F1-model_v4_TED02","TED highly-symmetric fold AF-G1WI80-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A626935","Collinsella tanakaei"],["NCBITaxon%3A742742","Collinsella tanakaei YIT 12063"]]},{"id":"NCBITaxon:742766","l":"Dysgonomonas gadei ATCC BAA-286","na":1,"nb":2,"a":[["TED%3AAF-F5IT17-F1-model_v4_TED02","TED novel fold AF-F5IT17-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A156974","Dysgonomonas gade"],["NCBITaxon%3A742766","Dysgonomonas gadei ATCC BAA-286"]]},{"id":"NCBITaxon:742821","l":"Sutterella wadsworthensis 3 1 45B","na":2,"nb":1,"a":[["TED%3AAF-E7H5T8-F1-model_v4_TED02","TED highly-symmetric fold AF-E7H5T8-F1-model_v4_TED02"],["TED%3AAF-E7H696-F1-model_v4_TED01","TED highly-symmetric fold AF-E7H696-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A742821","Sutterella wadsworthensis 3_1_45B"]]},{"id":"NCBITaxon:743974","l":"Moraxella bovoculi 237","na":1,"nb":2,"a":[["TED%3AAF-A0A066UIR0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A066UIR0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A386891","Moraxella bovoculi"],["NCBITaxon%3A743974","Moraxella bovoculi 237"]]},{"id":"NCBITaxon:745377","l":"Natrarchaeobaculum aegyptiacum","na":2,"nb":1,"a":[["TED%3AAF-A0A2Z2HS05-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2Z2HS05-F1-model_v4_TED03"],["TED%3AAF-A0A2Z2HUE3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2Z2HUE3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A745377","Natrarchaeobaculum aegyptiacum"]]},{"id":"NCBITaxon:74557","l":"Thraustotheca clavata","na":2,"nb":1,"a":[["TED%3AAF-A0A1V9ZWZ6-F1-model_v4_TED01","TED novel fold AF-A0A1V9ZWZ6-F1-model_v4_TED01"],["TED%3AAF-A0A1W0A288-F1-model_v4_TED01","TED novel fold AF-A0A1W0A288-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A74557","Thraustotheca clavata"]]},{"id":"NCBITaxon:747682","l":"Mycoplasmopsis alligatoris A21JP2","na":1,"nb":2,"a":[["TED%3AAF-D4XVY7-F1-model_v4_TED01","TED novel fold AF-D4XVY7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A47687","Mycoplasmopsis alligatoris"],["NCBITaxon%3A747682","Mycoplasmopsis alligatoris A21JP2"]]},{"id":"NCBITaxon:747725","l":"Mucor lusitanicus CBS 277.49","na":2,"nb":1,"a":[["TED%3AAF-A0A162R859-F1-model_v4_TED01","TED novel fold AF-A0A162R859-F1-model_v4_TED01"],["TED%3AAF-A0A168MB84-F1-model_v4_TED01","TED novel fold AF-A0A168MB84-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A747725","Mucor lusitanicus CBS 277.49"]]},{"id":"NCBITaxon:748831","l":"Brevifollis gellanilyticus","na":2,"nb":1,"a":[["TED%3AAF-A0A512MEJ3-F1-model_v4_TED01","TED novel fold AF-A0A512MEJ3-F1-model_v4_TED01"],["TED%3AAF-A0A512MF51-F1-model_v4_TED03","TED novel fold AF-A0A512MF51-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A748831","Prosthecobacter gellanilyticus"]]},{"id":"NCBITaxon:749537","l":"Escherichia coli (strain MS 115-1)","na":2,"nb":1,"a":[["Pfam%3APF18138","Bacterial HORMA domain family 1"],["Pfam%3APF20247","Domain of unknown function (DUF6602)"]],"b":[["NCBITaxon%3A749537","Escherichia coli MS 115-1"]]},{"id":"NCBITaxon:752555","l":"","na":1,"nb":2,"a":[["TED%3AAF-A0A1H9KJ19-F1-model_v4_TED01","TED novel fold AF-A0A1H9KJ19-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A752555","Segatella baroniae B14"],["NCBITaxon%3A77095","Segatella bryantii"]]},{"id":"NCBITaxon:753642","l":"Escherichia coli (strain NC101)","na":2,"nb":1,"a":[["Pfam%3APF28101","Immunity protein CdiI-like"],["Pfam%3APF21726","Family of unknown function (DUF6862)"]],"b":[["NCBITaxon%3A753642","Escherichia coli NC101"]]},{"id":"NCBITaxon:754426","l":"Tenacibaculum sp. SG-28","na":2,"nb":1,"a":[["TED%3AAF-A0A2S7TK03-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2S7TK03-F1-model_v4_TED02"],["TED%3AAF-A0A2S7TJV7-F1-model_v4_TED02","TED novel fold AF-A0A2S7TJV7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A754426","Tenacibaculum sp. SG-28"]]},{"id":"NCBITaxon:755307","l":"Salinigranum rubrum","na":2,"nb":1,"a":[["TED%3AAF-A0A2I8VHD1-F1-model_v4_TED02","TED novel fold AF-A0A2I8VHD1-F1-model_v4_TED02"],["TED%3AAF-A0A2I8VT61-F1-model_v4_TED02","TED novel fold AF-A0A2I8VT61-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A755307","Salinigranum rubrum"]]},{"id":"NCBITaxon:756272","l":"Rubinisphaera brasiliensis DSM 5305","na":1,"nb":2,"a":[["TED%3AAF-F0SH04-F1-model_v4_TED04","TED novel fold AF-F0SH04-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A119","Rubinisphaera brasiliensis"],["NCBITaxon%3A756272","Rubinisphaera brasiliensis DSM 5305"]]},{"id":"NCBITaxon:758847","l":"Leptospira santarosai serovar Shermani str. LT 821","na":1,"nb":2,"a":[["TED%3AAF-A0A097ES00-F1-model_v4_TED01","TED novel fold AF-A0A097ES00-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28183","Leptospira santarosai"],["NCBITaxon%3A758847","Leptospira santarosai serovar Shermani str. LT 821"]]},{"id":"NCBITaxon:760570","l":"","na":1,"nb":2,"a":[["TED%3AAF-F8DHG8-F1-model_v4_TED02","TED novel fold AF-F8DHG8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1318","Streptococcus parasanguinis"],["NCBITaxon%3A760570","Streptococcus parasanguinis ATCC 15912"]]},{"id":"NCBITaxon:762968","l":"Paraprevotella clara YIT 11840","na":1,"nb":2,"a":[["TED%3AAF-G5SSZ7-F1-model_v4_TED02","TED novel fold AF-G5SSZ7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A454154","Paraprevotella clara"],["NCBITaxon%3A762968","Paraprevotella clara YIT 11840"]]},{"id":"NCBITaxon:763034","l":"Bacteroides fluxus YIT 12057","na":1,"nb":2,"a":[["TED%3AAF-F3PT75-F1-model_v4_TED01","TED novel fold AF-F3PT75-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A626930","Bacteroides fluxus"],["NCBITaxon%3A763034","Bacteroides fluxus YIT 12057"]]},{"id":"NCBITaxon:764102","l":"Saccharomyces cerevisiae (strain FostersB)","na":2,"nb":1,"a":[["Pfam%3APF15272","Spindle pole body component BBP1, C-terminal"],["Pfam%3APF11544","Spindle pole body component Spc42p"]],"b":[["NCBITaxon%3A764102","Saccharomyces cerevisiae FostersB"]]},{"id":"NCBITaxon:765868","l":"Stagonospora sp. SRC1lsM3a","na":2,"nb":1,"a":[["TED%3AAF-A0A178B1W7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A178B1W7-F1-model_v4_TED03"],["TED%3AAF-A0A178B9C7-F1-model_v4_TED01","TED novel fold AF-A0A178B9C7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A765868","Phaeosphaeriaceae sp. SRC1lsM3a"]]},{"id":"NCBITaxon:765953","l":"Waddlia chondrophila 2032/99","na":1,"nb":2,"a":[["TED%3AAF-F8LCI1-F1-model_v4_TED03","TED novel fold AF-F8LCI1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A71667","Waddlia chondrophila"],["NCBITaxon%3A765953","Waddlia chondrophila 2032/99"]]},{"id":"NCBITaxon:76728","l":"Streptomyces vitaminophilus","na":1,"nb":2,"a":[["TED%3AAF-A0A0T6LRN4-F1-model_v4_TED01","TED novel fold AF-A0A0T6LRN4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A76728","Wenjunlia vitaminophila"],["NCBITaxon%3A1123322","Wenjunlia vitaminophila DSM 41686"]]},{"id":"NCBITaxon:768066","l":"Halomonas elongata DSM 2581","na":1,"nb":2,"a":[["Pfam%3APF06339","Ectoine synthase"]],"b":[["NCBITaxon%3A2746","Halomonas elongata"],["NCBITaxon%3A768066","Halomonas elongata DSM 2581"]]},{"id":"NCBITaxon:768706","l":"","na":1,"nb":2,"a":[["TED%3AAF-G7WI39-F1-model_v4_TED02","TED highly-symmetric fold AF-G7WI39-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1563","Desulfosporosinus orientis"],["NCBITaxon%3A768706","Desulfosporosinus orientis DSM 765"]]},{"id":"NCBITaxon:768710","l":"Desulfosporosinus youngiae DSM 17734","na":1,"nb":2,"a":[["TED%3AAF-H5Y0R4-F1-model_v4_TED01","TED highly-symmetric fold AF-H5Y0R4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A339862","Desulfosporosinus youngiae"],["NCBITaxon%3A768710","Desulfosporosinus youngiae DSM 17734"]]},{"id":"NCBITaxon:768727","l":"Veillonella parvula ACS-068-V-Sch12","na":1,"nb":2,"a":[["TED%3AAF-F5KZP8-F1-model_v4_TED01","TED novel fold AF-F5KZP8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29466","Veillonella parvula"],["NCBITaxon%3A768727","Veillonella parvula ACS-068-V-Sch12"]]},{"id":"NCBITaxon:771875","l":"","na":1,"nb":2,"a":[["TED%3AAF-H9UA22-F1-model_v4_TED01","TED highly-symmetric fold AF-H9UA22-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A93466","Fervidobacterium pennivorans"],["NCBITaxon%3A771875","Fervidobacterium pennivorans DSM 9078"]]},{"id":"NCBITaxon:78057","l":"Paenibacillus popilliae","na":1,"nb":2,"a":[["Pfam%3APF09131","Bacillus thuringiensis delta-Endotoxin, middle domain"]],"b":[["NCBITaxon%3A78057","Paenibacillus popilliae"],["NCBITaxon%3A1212764","Paenibacillus popilliae ATCC 14706"]]},{"id":"NCBITaxon:78229","l":"Paracidovorax anthurii","na":2,"nb":1,"a":[["TED%3AAF-A0A328ZC73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A328ZC73-F1-model_v4_TED01"],["TED%3AAF-A0A328Z0A2-F1-model_v4_TED01","TED novel fold AF-A0A328Z0A2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A78229","Paracidovorax anthurii"]]},{"id":"NCBITaxon:79269","l":"Desulfurella multipotens","na":1,"nb":2,"a":[["TED%3AAF-A0A1G6RXM9-F1-model_v4_TED02","TED novel fold AF-A0A1G6RXM9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A79269","Desulfurella multipotens"],["NCBITaxon%3A1121470","Desulfurella multipotens DSM 8415"]]},{"id":"NCBITaxon:795797","l":"Halalkalicoccus jeotgali B3","na":1,"nb":2,"a":[["TED%3AAF-D8JCM3-F1-model_v4_TED01","TED highly-symmetric fold AF-D8JCM3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A413810","Halalkalicoccus jeotgali"],["NCBITaxon%3A795797","Halalkalicoccus jeotgali B3"]]},{"id":"NCBITaxon:796944","l":"Oribacterium asaccharolyticum ACB7","na":1,"nb":2,"a":[["TED%3AAF-G9WU86-F1-model_v4_TED05","TED novel fold AF-G9WU86-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1501332","Oribacterium asaccharolyticum"],["NCBITaxon%3A796944","Oribacterium asaccharolyticum ACB7"]]},{"id":"NCBITaxon:80852","l":"Aliivibrio wodanis","na":2,"nb":1,"a":[["TED%3AAF-A0A090IC05-F1-model_v4_TED01","TED novel fold AF-A0A090IC05-F1-model_v4_TED01"],["TED%3AAF-A0A5Q4ZIL3-F1-model_v4_TED01","TED novel fold AF-A0A5Q4ZIL3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A80852","Aliivibrio wodanis"]]},{"id":"NCBITaxon:80854","l":"Moritella viscosa","na":2,"nb":1,"a":[["TED%3AAF-A0A090IBQ5-F1-model_v4_TED01","TED novel fold AF-A0A090IBQ5-F1-model_v4_TED01"],["TED%3AAF-A0A090IF54-F1-model_v4_TED01","TED novel fold AF-A0A090IF54-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A80854","Moritella viscosa"]]},{"id":"NCBITaxon:82380","l":"Microbacterium oxydans","na":1,"nb":2,"a":[["TED%3AAF-A0A4Y4GD74-F1-model_v4_TED02","TED novel fold AF-A0A4Y4GD74-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A82380","Microbacterium oxydans"],["NCBITaxon%3A1255678","Microbacterium oxydans PCA1"]]},{"id":"NCBITaxon:84022","l":"Andreesenella acetica","na":2,"nb":1,"a":[["TED%3AAF-A0A0D8IAM1-F1-model_v4_TED01","TED novel fold AF-A0A0D8IAM1-F1-model_v4_TED01"],["TED%3AAF-A0A0D8IBN9-F1-model_v4_TED02","TED novel fold AF-A0A0D8IBN9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A84022","Andreesenella acetica"]]},{"id":"NCBITaxon:84035","l":"Propionispira arboris","na":1,"nb":2,"a":[["TED%3AAF-A0A1H6Y1Q4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H6Y1Q4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A84035","Propionispira arboris"],["NCBITaxon%3A1123002","Propionispira arboris DSM 2179"]]},{"id":"NCBITaxon:850","l":"Fusobacterium mortiferum","na":1,"nb":2,"a":[["TED%3AAF-A0A414PT75-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A414PT75-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A850","Fusobacterium mortiferum"],["NCBITaxon%3A469616","Fusobacterium mortiferum ATCC 9817"]]},{"id":"NCBITaxon:85336","l":"Rothia nasimurium","na":1,"nb":2,"a":[["proteintraitsmech%3AELIFE109154_EntC","EntC-type catechol biosynthesis isochorismate synthase family"]],"b":[["NCBITaxon%3A85336","Rothia nasimurium"],["NCBITaxon%3A553203","Rothia nasimurium JCVIHMP032"]]},{"id":"NCBITaxon:856","l":"Fusobacterium varium","na":1,"nb":2,"a":[["TED%3AAF-A0A250LZB9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A250LZB9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A856","Fusobacterium varium"],["NCBITaxon%3A469618","Fusobacterium varium ATCC 27725"]]},{"id":"NCBITaxon:85701","l":"Bartonella tribocorum","na":1,"nb":2,"a":[["TED%3AAF-A0A2M6URN9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M6URN9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A85701","Bartonella tribocorum"],["NCBITaxon%3A382640","Bartonella tribocorum CIP 105476"]]},{"id":"NCBITaxon:857087","l":"","na":1,"nb":2,"a":[["TED%3AAF-F9ZY30-F1-model_v4_TED01","TED novel fold AF-F9ZY30-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A421","Methylomonas methanica"],["NCBITaxon%3A857087","Methylomonas methanica MC09"]]},{"id":"NCBITaxon:858215","l":"","na":1,"nb":2,"a":[["TED%3AAF-F6BJ69-F1-model_v4_TED03","TED highly-symmetric fold AF-F6BJ69-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A29329","Thermoanaerobacterium xylanolyticum"],["NCBITaxon%3A858215","Thermoanaerobacterium xylanolyticum LX-11"]]},{"id":"NCBITaxon:85831","l":"Bacteroides acidifaciens","na":1,"nb":2,"a":[["TED%3AAF-A0A7K3MGB4-F1-model_v4_TED01","TED novel fold AF-A0A7K3MGB4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A85831","Bacteroides acidifaciens"],["NCBITaxon%3A1235814","Bacteroides acidifaciens JCM 10556"]]},{"id":"NCBITaxon:858455","l":"Rhodomicrobium udaipurense JA643","na":1,"nb":2,"a":[["TED%3AAF-A0A037UZG0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A037UZG0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1202716","Rhodomicrobium udaipurense"],["NCBITaxon%3A858455","Rhodomicrobium udaipurense JA643"]]},{"id":"NCBITaxon:858893","l":"Exophiala dermatitidis (strain ATCC 34100 / CBS 525.76 / NIH/UT8656)","na":2,"nb":1,"a":[["TED%3AAF-H6BSC2-F1-model_v4_TED01","TED novel fold AF-H6BSC2-F1-model_v4_TED01"],["TED%3AAF-H6BSC3-F1-model_v4_TED01","TED novel fold AF-H6BSC3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A858893","Exophiala dermatitidis NIH/UT8656"]]},{"id":"NCBITaxon:859350","l":"Candidatus Nitrosopumilus salaria BD31","na":2,"nb":1,"a":[["TED%3AAF-I3CZV0-F1-model_v4_TED01","TED novel fold AF-I3CZV0-F1-model_v4_TED01"],["TED%3AAF-I3D3A9-F1-model_v4_TED02","TED novel fold AF-I3D3A9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A859350","Candidatus Nitrosopumilus salarius BD31"]]},{"id":"NCBITaxon:861450","l":"Anaeroglobus geminatus F0357","na":2,"nb":1,"a":[["TED%3AAF-G9YJV4-F1-model_v4_TED01","TED highly-symmetric fold AF-G9YJV4-F1-model_v4_TED01"],["TED%3AAF-G9YJG2-F1-model_v4_TED01","TED novel fold AF-G9YJG2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A861450","Megasphaera geminata F0357"]]},{"id":"NCBITaxon:862517","l":"Peptoniphilus duerdenii ATCC BAA-1640","na":1,"nb":2,"a":[["TED%3AAF-E0NJG4-F1-model_v4_TED01","TED highly-symmetric fold AF-E0NJG4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A507750","Peptoniphilus duerdenii"],["NCBITaxon%3A862517","Peptoniphilus duerdenii ATCC BAA-1640"]]},{"id":"NCBITaxon:86259","l":"Venturia nashicola","na":2,"nb":1,"a":[["TED%3AAF-A0A4Z1NYE5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Z1NYE5-F1-model_v4_TED01"],["TED%3AAF-A0A4Z1NNX9-F1-model_v4_TED02","TED novel fold AF-A0A4Z1NNX9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A86259","Venturia nashicola"]]},{"id":"NCBITaxon:862962","l":"","na":1,"nb":2,"a":[["Pfam%3APF04301","Pimeloyl-ACP methyl esterase BioG"]],"b":[["NCBITaxon%3A817","Bacteroides fragilis"],["NCBITaxon%3A862962","Bacteroides fragilis 638R"]]},{"id":"NCBITaxon:865937","l":"Gillisia limnaea DSM 15749","na":1,"nb":2,"a":[["Pfam%3APF27061","Bacterial gasdermin-associated protease"]],"b":[["NCBITaxon%3A195907","Gillisia limnaea"],["NCBITaxon%3A865937","Gillisia limnaea DSM 15749"]]},{"id":"NCBITaxon:865938","l":"Weeksella virosa DSM 16922","na":1,"nb":2,"a":[["TED%3AAF-F0P1F3-F1-model_v4_TED01","TED novel fold AF-F0P1F3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1014","Weeksella virosa"],["NCBITaxon%3A865938","Weeksella virosa DSM 16922"]]},{"id":"NCBITaxon:866499","l":"Cloacibacillus evryensis DSM 19522","na":1,"nb":2,"a":[["TED%3AAF-A0A010YSJ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A010YSJ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A508460","Cloacibacillus evryensis"],["NCBITaxon%3A866499","Cloacibacillus evryensis DSM 19522"]]},{"id":"NCBITaxon:866895","l":"Halobacillus halophilus DSM 2266","na":1,"nb":2,"a":[["TED%3AAF-I0JI49-F1-model_v4_TED03","TED highly-symmetric fold AF-I0JI49-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1570","Halobacillus halophilus"],["NCBITaxon%3A866895","Halobacillus halophilus DSM 2266"]]},{"id":"NCBITaxon:867902","l":"","na":1,"nb":2,"a":[["TED%3AAF-I3ZYX7-F1-model_v4_TED02","TED novel fold AF-I3ZYX7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A28251","Ornithobacterium rhinotracheale"],["NCBITaxon%3A867902","Ornithobacterium rhinotracheale DSM 15997"]]},{"id":"NCBITaxon:86804","l":"Ustilago trichophora","na":2,"nb":1,"a":[["TED%3AAF-A0A5C3DST0-F1-model_v4_TED02","TED novel fold AF-A0A5C3DST0-F1-model_v4_TED02"],["TED%3AAF-A0A5C3E4G9-F1-model_v4_TED01","TED novel fold AF-A0A5C3E4G9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A86804","Ustilago trichophora"]]},{"id":"NCBITaxon:86841","l":"Pseudomonas amygdali pv. sesami","na":1,"nb":2,"a":[["TED%3AAF-A0A3M6FLB5-F1-model_v4_TED03","TED novel fold AF-A0A3M6FLB5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A86841","Pseudomonas amygdali pv. sesami"],["NCBITaxon%3A317","Pseudomonas syringae"]]},{"id":"NCBITaxon:869210","l":"Marinithermus hydrothermalis DSM 14884","na":1,"nb":2,"a":[["TED%3AAF-F2NQ34-F1-model_v4_TED01","TED novel fold AF-F2NQ34-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A186192","Marinithermus hydrothermalis"],["NCBITaxon%3A869210","Marinithermus hydrothermalis DSM 14884"]]},{"id":"NCBITaxon:869213","l":"Saccharicrinis fermentans DSM 9555 = JCM 21142","na":1,"nb":2,"a":[["TED%3AAF-W7Y4M8-F1-model_v4_TED02","TED novel fold AF-W7Y4M8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A982","Saccharicrinis fermentans"],["NCBITaxon%3A869213","Saccharicrinis fermentans DSM 9555 = JCM 21142"]]},{"id":"NCBITaxon:870501","l":"Malaciobacter molluscorum LMG 25693","na":1,"nb":2,"a":[["TED%3AAF-A0A2G1DEC9-F1-model_v4_TED01","TED novel fold AF-A0A2G1DEC9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1032072","Malaciobacter molluscorum"],["NCBITaxon%3A870501","Malaciobacter molluscorum LMG 25693"]]},{"id":"NCBITaxon:870730","l":"Pichia angusta","na":2,"nb":1,"a":[["Pfam%3APF10791","Mitochondrial F1-F0 ATP synthase subunit F of fungi"],["Pfam%3APF05933","Fungal ATP synthase protein 8 (A6L)"]],"b":[["NCBITaxon%3A870730","Ogataea angusta"]]},{"id":"NCBITaxon:871575","l":"Ogataea parapolymorpha (strain ATCC 26012 / BCRC 20466 / JCM 22074 / NRRL Y-7560 / DL-1)","na":2,"nb":1,"a":[["IDPO%3A0000033","flexible linker"],["TED%3AAF-W1Q7V8-F1-model_v4_TED01","TED novel fold AF-W1Q7V8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A871575","Ogataea parapolymorpha DL-1"]]},{"id":"NCBITaxon:871738","l":"","na":1,"nb":2,"a":[["Pfam%3APF10518","TAT (twin-arginine translocation) pathway signal sequence"]],"b":[["NCBITaxon%3A55583","Dehalobacter restrictus"],["NCBITaxon%3A871738","Dehalobacter restrictus DSM 9455"]]},{"id":"NCBITaxon:87229","l":"Botrytis porri","na":2,"nb":1,"a":[["TED%3AAF-A0A4Z1KLQ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Z1KLQ9-F1-model_v4_TED01"],["TED%3AAF-A0A4Z1L2R4-F1-model_v4_TED03","TED novel fold AF-A0A4Z1L2R4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A87229","Botrytis porri"]]},{"id":"NCBITaxon:873533","l":"","na":1,"nb":2,"a":[["TED%3AAF-E7RTH2-F1-model_v4_TED02","TED highly-symmetric fold AF-E7RTH2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A28134","Hoylesella oralis"],["NCBITaxon%3A873533","Hoylesella oralis ATCC 33269"]]},{"id":"NCBITaxon:875328","l":"","na":1,"nb":2,"a":[["TED%3AAF-A0A1A2EHJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1A2EHJ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1789","Mycobacterium xenopi"],["NCBITaxon%3A875328","Mycolicibacter sinensis"]]},{"id":"NCBITaxon:877406","l":"Lachnospiraceae bacterium NK3A20","na":2,"nb":1,"a":[["TED%3AAF-A0A1H3YE89-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H3YE89-F1-model_v4_TED01"],["TED%3AAF-A0A1H3YMS4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H3YMS4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A877406","Lachnospiraceae bacterium NK3A20"]]},{"id":"NCBITaxon:882378","l":"","na":1,"nb":2,"a":[["Pfam%3APF01983","Guanylyl transferase CofC like"]],"b":[["NCBITaxon%3A412963","Mycetohabitans rhizoxinica"],["NCBITaxon%3A882378","Mycetohabitans rhizoxinica HKI 454"]]},{"id":"NCBITaxon:882800","l":"Methylorubrum extorquens DSM 13060","na":1,"nb":2,"a":[["TED%3AAF-H1KCQ0-F1-model_v4_TED01","TED highly-symmetric fold AF-H1KCQ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A408","Methylorubrum extorquens"],["NCBITaxon%3A882800","Methylorubrum extorquens DSM 13060"]]},{"id":"NCBITaxon:883","l":"Nitratidesulfovibrio vulgaris str. 'Miyazaki F'","na":1,"nb":2,"a":[["TED%3AAF-B8DPA3-F1-model_v4_TED01","TED novel fold AF-B8DPA3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A881","Nitratidesulfovibrio vulgaris"],["NCBITaxon%3A883","Nitratidesulfovibrio vulgaris str. 'Miyazaki F'"]]},{"id":"NCBITaxon:883067","l":"Actinotignum schaalii FB123-CNA-2","na":1,"nb":2,"a":[["TED%3AAF-S2VKD3-F1-model_v4_TED01","TED highly-symmetric fold AF-S2VKD3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A59505","Actinotignum schaalii"],["NCBITaxon%3A883067","Actinotignum schaalii FB123-CNA-2"]]},{"id":"NCBITaxon:883069","l":"Gleimia europaea ACS-120-V-Col10b","na":1,"nb":2,"a":[["TED%3AAF-S2VXV4-F1-model_v4_TED01","TED novel fold AF-S2VXV4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A66228","Gleimia europaea"],["NCBITaxon%3A883069","Gleimia europaea ACS-120-V-Col10b"]]},{"id":"NCBITaxon:884107","l":"Schleiferia thermophila","na":1,"nb":2,"a":[["TED%3AAF-A0A368ZV81-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A368ZV81-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A884107","Schleiferia thermophila"],["NCBITaxon%3A1453500","Schleiferia thermophila str. Yellowstone"]]},{"id":"NCBITaxon:885","l":"Desulfovibrio sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A6N8BWZ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8BWZ8-F1-model_v4_TED01"],["TED%3AAF-A0A2E3RAH3-F1-model_v4_TED02","TED novel fold AF-A0A2E3RAH3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A885","Desulfovibrio sp."]]},{"id":"NCBITaxon:886882","l":"Paenibacillus polymyxa (strain SC2)","na":2,"nb":1,"a":[["TED%3AAF-E3EJR1-F1-model_v4_TED01","TED highly-symmetric fold AF-E3EJR1-F1-model_v4_TED01"],["TED%3AAF-E3EKS2-F1-model_v4_TED01","TED highly-symmetric fold AF-E3EKS2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A886882","Paenibacillus polymyxa SC2"]]},{"id":"NCBITaxon:88724","l":"Natrinema versiforme","na":1,"nb":2,"a":[["TED%3AAF-A0A4V1FYY6-F1-model_v4_TED02","TED novel fold AF-A0A4V1FYY6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A88724","Natrinema versiforme"],["NCBITaxon%3A1227496","Natrinema versiforme JCM 10478"]]},{"id":"NCBITaxon:888741","l":"Kingella denitrificans ATCC 33394","na":1,"nb":2,"a":[["TED%3AAF-F0F2L2-F1-model_v4_TED01","TED novel fold AF-F0F2L2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A502","Kingella denitrificans"],["NCBITaxon%3A888741","Kingella denitrificans ATCC 33394"]]},{"id":"NCBITaxon:888743","l":"Prevotella multiformis DSM 16608","na":1,"nb":2,"a":[["TED%3AAF-F0F5W8-F1-model_v4_TED02","TED novel fold AF-F0F5W8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A282402","Prevotella multiformis"],["NCBITaxon%3A888743","Prevotella multiformis DSM 16608"]]},{"id":"NCBITaxon:888745","l":"","na":1,"nb":2,"a":[["Pfam%3APF09711","CRISPR-associated protein (Cas_Csn2)"]],"b":[["NCBITaxon%3A1311","Streptococcus agalactiae"],["NCBITaxon%3A888745","Streptococcus agalactiae ATCC 13813"]]},{"id":"NCBITaxon:890399","l":"Candidatus Magnetoglobus multicellularis str. Araruama","na":2,"nb":1,"a":[["TED%3AAF-A0A1V1NSM7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V1NSM7-F1-model_v4_TED02"],["TED%3AAF-A0A1V1P8X9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V1P8X9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A890399","Candidatus Magnetoglobus multicellularis str. Araruama"]]},{"id":"NCBITaxon:89187","l":"","na":1,"nb":2,"a":[["Pfam%3APF12806","Acetyl-CoA dehydrogenase C-terminal like"]],"b":[["NCBITaxon%3A314263","Roseovarius nubinhibens"],["NCBITaxon%3A89187","Roseovarius nubinhibens ISM"]]},{"id":"NCBITaxon:891974","l":"Plautia stali symbiont","na":2,"nb":1,"a":[["TED%3AAF-U3TSJ2-F1-model_v4_TED01","TED highly-symmetric fold AF-U3TSJ2-F1-model_v4_TED01"],["TED%3AAF-U3U2Z5-F1-model_v4_TED02","TED highly-symmetric fold AF-U3U2Z5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A891974","Plautia stali symbiont"]]},{"id":"NCBITaxon:90244","l":"Oligella ureolytica","na":1,"nb":2,"a":[["TED%3AAF-A0A378XF55-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A378XF55-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A90244","Oligella ureolytica"],["NCBITaxon%3A1122619","Oligella ureolytica DSM 18253"]]},{"id":"NCBITaxon:90426","l":"Methanothrix sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A843KAS7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843KAS7-F1-model_v4_TED01"],["TED%3AAF-A0A3N9UN54-F1-model_v4_TED01","TED novel fold AF-A0A3N9UN54-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A90426","Methanothrix sp."]]},{"id":"NCBITaxon:907348","l":"Treponema saccharophilum DSM 2985","na":1,"nb":2,"a":[["TED%3AAF-H7EGY0-F1-model_v4_TED01","TED novel fold AF-H7EGY0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A165","Treponema saccharophilum"],["NCBITaxon%3A907348","Treponema saccharophilum DSM 2985"]]},{"id":"NCBITaxon:908338","l":"Peptoniphilus harei ACS-146-V-Sch2b","na":1,"nb":2,"a":[["TED%3AAF-E4KZA4-F1-model_v4_TED02","TED novel fold AF-E4KZA4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A908338","Peptoniphilus harei ACS-146-V-Sch2b"],["NCBITaxon%3A1971214","Peptoniphilus sp."]]},{"id":"NCBITaxon:910964","l":"","na":1,"nb":2,"a":[["Pfam%3APF26324","Type III secretion system effector HopBF1 kinase domain"]],"b":[["NCBITaxon%3A41202","Ewingella americana"],["NCBITaxon%3A910964","Ewingella americana ATCC 33852"]]},{"id":"NCBITaxon:913088","l":"Escherichia coli TW11681","na":2,"nb":1,"a":[["Pfam%3APF21713","Cyclic GMP-AMP synthase, C-terminal domain"],["Pfam%3APF21654","Cyclic GMP-AMP synthase DncV-like, nucleotidyltransferase domain"]],"b":[["NCBITaxon%3A913088","Escherichia coli TW11681"]]},{"id":"NCBITaxon:91360","l":"Desulforhopalus singaporensis","na":1,"nb":2,"a":[["TED%3AAF-A0A1H0QB18-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H0QB18-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A91360","Desulforhopalus singaporensis"],["NCBITaxon%3A1121418","Desulforhopalus singaporensis DSM 12130"]]},{"id":"NCBITaxon:91604","l":"Candidatus Paracaedibacter acanthamoebae","na":2,"nb":1,"a":[["TED%3AAF-A0A077ASK7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A077ASK7-F1-model_v4_TED02"],["TED%3AAF-A0A077AYS2-F1-model_v4_TED01","TED novel fold AF-A0A077AYS2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A91604","Candidatus Odyssella acanthamoebae"]]},{"id":"NCBITaxon:92400","l":"[Mycoplasma] anseris","na":1,"nb":2,"a":[["TED%3AAF-A0A2Z4NCE3-F1-model_v4_TED01","TED novel fold AF-A0A2Z4NCE3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A92400","[Mycoplasma] anseris"],["NCBITaxon%3A1408454","Mycoplasma anseris ATCC 49234"]]},{"id":"NCBITaxon:926556","l":"","na":1,"nb":2,"a":[["TED%3AAF-L0FWC9-F1-model_v4_TED01","TED novel fold AF-L0FWC9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A390884","Echinicola vietnamensis"],["NCBITaxon%3A926556","Echinicola vietnamensis DSM 17526"]]},{"id":"NCBITaxon:926562","l":"","na":1,"nb":2,"a":[["TED%3AAF-G8R7M3-F1-model_v4_TED02","TED highly-symmetric fold AF-G8R7M3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A253245","Owenweeksia hongkongensis"],["NCBITaxon%3A926562","Owenweeksia hongkongensis DSM 17368"]]},{"id":"NCBITaxon:926566","l":"","na":1,"nb":2,"a":[["TED%3AAF-I3ZI83-F1-model_v4_TED01","TED highly-symmetric fold AF-I3ZI83-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A392734","Terriglobus roseus"],["NCBITaxon%3A926566","Terriglobus roseus DSM 18391"]]},{"id":"NCBITaxon:926571","l":"Nitrososphaera viennensis EN76","na":1,"nb":2,"a":[["TED%3AAF-A0A060HRG3-F1-model_v4_TED01","TED novel fold AF-A0A060HRG3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1034015","Nitrososphaera viennensis"],["NCBITaxon%3A926571","Nitrososphaera viennensis EN76"]]},{"id":"NCBITaxon:926690","l":"Haloplanus natans DSM 17983","na":1,"nb":2,"a":[["Pfam%3APF28161","Fusexin 1"]],"b":[["NCBITaxon%3A376171","Haloplanus natans"],["NCBITaxon%3A926690","Haloplanus natans DSM 17983"]]},{"id":"NCBITaxon:930090","l":"Bipolaris oryzae ATCC 44560","na":2,"nb":1,"a":[["TED%3AAF-W6YQ25-F1-model_v4_TED01","TED novel fold AF-W6YQ25-F1-model_v4_TED01"],["TED%3AAF-W6YT83-F1-model_v4_TED01","TED novel fold AF-W6YT83-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A930090","Bipolaris oryzae ATCC 44560"]]},{"id":"NCBITaxon:931626","l":"","na":1,"nb":2,"a":[["Pfam%3APF00766","Electron transfer flavoprotein FAD-binding domain"]],"b":[["NCBITaxon%3A33952","Acetobacterium woodii"],["NCBITaxon%3A931626","Acetobacterium woodii DSM 1030"]]},{"id":"NCBITaxon:933063","l":"Dichotomicrobium thermohalophilum","na":2,"nb":1,"a":[["TED%3AAF-A0A397Q5H3-F1-model_v4_TED01","TED novel fold AF-A0A397Q5H3-F1-model_v4_TED01"],["TED%3AAF-A0A397Q636-F1-model_v4_TED02","TED novel fold AF-A0A397Q636-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A933063","Dichotomicrobium thermohalophilum"]]},{"id":"NCBITaxon:936594","l":"Lachnoanaerobaculum sp. ICM7","na":2,"nb":1,"a":[["TED%3AAF-J5GJZ1-F1-model_v4_TED01","TED highly-symmetric fold AF-J5GJZ1-F1-model_v4_TED01"],["TED%3AAF-J4TLJ1-F1-model_v4_TED02","TED novel fold AF-J4TLJ1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A936594","Lachnoanaerobaculum sp. ICM7"]]},{"id":"NCBITaxon:941824","l":"Thermobrachium celere DSM 8682","na":1,"nb":2,"a":[["TED%3AAF-R7RR46-F1-model_v4_TED02","TED highly-symmetric fold AF-R7RR46-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A53422","Thermobrachium celere"],["NCBITaxon%3A941824","Thermobrachium celere DSM 8682"]]},{"id":"NCBITaxon:943261","l":"Komagataeibacter kakiaceti","na":1,"nb":2,"a":[["TED%3AAF-A0A840XUK5-F1-model_v4_TED01","TED novel fold AF-A0A840XUK5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A943261","Komagataeibacter kakiaceti"],["NCBITaxon%3A1234672","Komagataeibacter kakiaceti JCM 25156"]]},{"id":"NCBITaxon:945553","l":"","na":2,"nb":1,"a":[["TED%3AAF-A0A0D2NQE0-F1-model_v4_TED01","TED novel fold AF-A0A0D2NQE0-F1-model_v4_TED01"],["TED%3AAF-A0A0D2PBZ7-F1-model_v4_TED01","TED novel fold AF-A0A0D2PBZ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A945553","Hypholoma sublateritium FD-334 SS-4"]]},{"id":"NCBITaxon:945713","l":"","na":1,"nb":2,"a":[["Pfam%3APF22369","GLMA-like, second domain"]],"b":[["NCBITaxon%3A591197","Ignavibacterium album"],["NCBITaxon%3A945713","Ignavibacterium album JCM 16511"]]},{"id":"NCBITaxon:94617","l":"Fibrocapsa japonica","na":2,"nb":1,"a":[["TED%3AAF-A0A7S2V0T5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2V0T5-F1-model_v4_TED01"],["TED%3AAF-A0A7S2V6B1-F1-model_v4_TED01","TED novel fold AF-A0A7S2V6B1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A94617","Fibrocapsa japonica"]]},{"id":"NCBITaxon:94626","l":"Brucella tritici","na":2,"nb":1,"a":[["TED%3AAF-A0A7X6FRR6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X6FRR6-F1-model_v4_TED01"],["TED%3AAF-A0A7X6JC90-F1-model_v4_TED01","TED novel fold AF-A0A7X6JC90-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A94626","Brucella tritici"]]},{"id":"NCBITaxon:947919","l":"Desulfosarcina widdelii","na":2,"nb":1,"a":[["TED%3AAF-A0A5K7ZAU3-F1-model_v4_TED01","TED novel fold AF-A0A5K7ZAU3-F1-model_v4_TED01"],["TED%3AAF-A0A5K7ZAZ5-F1-model_v4_TED01","TED novel fold AF-A0A5K7ZAZ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A947919","Desulfosarcina widdelii"]]},{"id":"NCBITaxon:948311","l":"Fusarium proliferatum","na":1,"nb":2,"a":[["TED%3AAF-A0A420SS57-F1-model_v4_TED01","TED novel fold AF-A0A420SS57-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A948311","Fusarium proliferatum"],["NCBITaxon%3A1227346","Fusarium proliferatum ET1"]]},{"id":"NCBITaxon:95485","l":"Burkholderia stabilis","na":1,"nb":2,"a":[["TED%3AAF-A0A4V1PSL6-F1-model_v4_TED02","TED novel fold AF-A0A4V1PSL6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A292","Burkholderia cepacia"],["NCBITaxon%3A95485","Burkholderia stabilis"]]},{"id":"NCBITaxon:96639","l":"Mucochytrium quahogii","na":2,"nb":1,"a":[["TED%3AAF-A0A7S2SPI0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2SPI0-F1-model_v4_TED01"],["TED%3AAF-A0A7S2R8E2-F1-model_v4_TED02","TED novel fold AF-A0A7S2R8E2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A96639","Mucochytrium quahogii"]]},{"id":"NCBITaxon:97481","l":"Phocoenobacter skyensis","na":1,"nb":2,"a":[["TED%3AAF-A0A1H8AD66-F1-model_v4_TED03","TED novel fold AF-A0A1H8AD66-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A97481","Phocoenobacter skyensis"],["NCBITaxon%3A1122937","Phocoenobacter skyensis DSM 24204"]]},{"id":"NCBITaxon:980251","l":"Mariniblastus fucicola","na":2,"nb":1,"a":[["TED%3AAF-A0A5B9PAC4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B9PAC4-F1-model_v4_TED01"],["TED%3AAF-A0A5B9P6V1-F1-model_v4_TED02","TED novel fold AF-A0A5B9P6V1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A980251","Mariniblastus fucicola"]]},{"id":"NCBITaxon:981333","l":"Acinetobacter parvus DSM 16617 = CIP 108168","na":1,"nb":2,"a":[["TED%3AAF-N8Q927-F1-model_v4_TED02","TED novel fold AF-N8Q927-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A134533","Acinetobacter parvus"],["NCBITaxon%3A981333","Acinetobacter parvus DSM 16617 = CIP 108168"]]},{"id":"NCBITaxon:985895","l":"","na":2,"nb":1,"a":[["TED%3AAF-E5A7U7-F1-model_v4_TED01","TED novel fold AF-E5A7U7-F1-model_v4_TED01"],["TED%3AAF-E5A9E1-F1-model_v4_TED03","TED novel fold AF-E5A9E1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A985895","Plenodomus lingam JN3"]]},{"id":"NCBITaxon:989410","l":"Pseudovibrio sp. Ad26","na":2,"nb":1,"a":[["TED%3AAF-A0A165T205-F1-model_v4_TED02","TED novel fold AF-A0A165T205-F1-model_v4_TED02"],["TED%3AAF-A0A165VKR9-F1-model_v4_TED03","TED novel fold AF-A0A165VKR9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A989410","Pseudovibrio sp. Ad26"]]},{"id":"NCBITaxon:99675","l":"Clostridium putrefaciens","na":1,"nb":2,"a":[["TED%3AAF-A0A381J816-F1-model_v4_TED01","TED novel fold AF-A0A381J816-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A99675","Clostridium putrefaciens"],["NCBITaxon%3A1121332","Clostridium putrefaciens DSM 1291"]]},{"id":"NCBITaxon:999552","l":"Leisingera methylohalidivorans DSM 14336","na":1,"nb":2,"a":[["TED%3AAF-V9VZA3-F1-model_v4_TED02","TED novel fold AF-V9VZA3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A133924","Leisingera methylohalidivorans"],["NCBITaxon%3A999552","Leisingera methylohalidivorans DSM 14336"]]},{"id":"NCBITaxon:100","l":"Ancylobacter aquaticus","na":1,"nb":1,"a":[["TED%3AAF-A0A431PQS4-F1-model_v4_TED01","TED novel fold AF-A0A431PQS4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A100","Ancylobacter aquaticus"]]},{"id":"NCBITaxon:100035","l":"Massariosphaeria phaeospora","na":1,"nb":1,"a":[["TED%3AAF-A0A7C8I3N5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C8I3N5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A100035","Massariosphaeria phaeospora"]]},{"id":"NCBITaxon:1001240","l":"Cryobacterium roopkundense","na":1,"nb":1,"a":[["TED%3AAF-A0A099JLC4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A099JLC4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1001240","Cryobacterium roopkundense"]]},{"id":"NCBITaxon:1001590","l":"Leptospira interrogans str. 2006001854","na":1,"nb":1,"a":[["TED%3AAF-M6GW27-F1-model_v4_TED03","TED novel fold AF-M6GW27-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1001590","Leptospira interrogans str. 2006001854"]]},{"id":"NCBITaxon:1002340","l":"Leisingera sp. ANG1","na":1,"nb":1,"a":[["TED%3AAF-A0A0B4EI55-F1-model_v4_TED01","TED novel fold AF-A0A0B4EI55-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1002340","Leisingera sp. ANG1"]]},{"id":"NCBITaxon:1004304","l":"Hydrotalea sandarakina","na":1,"nb":1,"a":[["TED%3AAF-A0A2W7RGM4-F1-model_v4_TED03","TED novel fold AF-A0A2W7RGM4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1004304","Hydrotalea sandarakina"]]},{"id":"NCBITaxon:1007676","l":"Companilactobacillus ginsenosidimutans","na":1,"nb":1,"a":[["TED%3AAF-A0A0H4QHM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0H4QHM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1007676","Companilactobacillus ginsenosidimutans"]]},{"id":"NCBITaxon:1008305","l":"Fervidobacterium thailandense","na":1,"nb":1,"a":[["TED%3AAF-A0A1E3G5H1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E3G5H1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1008305","Fervidobacterium thailandense"]]},{"id":"NCBITaxon:1009714","l":"","na":1,"nb":1,"a":[["Pfam%3APF05567","PilY1 beta-propeller domain"]],"b":[["NCBITaxon%3A1009714","Pseudomonas aeruginosa PAK"]]},{"id":"NCBITaxon:101028","l":"Fusarium pseudograminearum","na":1,"nb":1,"a":[["TED%3AAF-A0A7S8DXW2-F1-model_v4_TED02","TED novel fold AF-A0A7S8DXW2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A101028","Fusarium pseudograminearum"]]},{"id":"NCBITaxon:1010611","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A521FVX5-F1-model_v4_TED02","TED novel fold AF-A0A521FVX5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1010611","Thalassovita litoralis"]]},{"id":"NCBITaxon:101383","l":"Cryomorpha ignava","na":1,"nb":1,"a":[["TED%3AAF-A0A7K3WMI9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7K3WMI9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A101383","Cryomorpha ignava"]]},{"id":"NCBITaxon:1017277","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0V8GEY0-F1-model_v4_TED01","TED novel fold AF-A0A0V8GEY0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A296995","Exiguobacterium indicum"]]},{"id":"NCBITaxon:1017319","l":"Rhodococcus sp. Eu-32","na":1,"nb":1,"a":[["TED%3AAF-A0A426QT40-F1-model_v4_TED01","TED novel fold AF-A0A426QT40-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1017319","Rhodococcus sp. Eu-32"]]},{"id":"NCBITaxon:101924","l":"Rhodosorus marinus","na":1,"nb":1,"a":[["TED%3AAF-A0A7S3ENK5-F1-model_v4_TED04","TED novel fold AF-A0A7S3ENK5-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A101924","Rhodosorus marinus"]]},{"id":"NCBITaxon:102897","l":"Parafrankia sp. EUN1f","na":1,"nb":1,"a":[["TED%3AAF-D3D2N4-F1-model_v4_TED01","TED novel fold AF-D3D2N4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A102897","Parafrankia sp. EUN1f"]]},{"id":"NCBITaxon:1029718","l":"Candidatus Arthromitus sp. SFB-mouse-Japan","na":1,"nb":1,"a":[["TED%3AAF-F9VKB6-F1-model_v4_TED01","TED novel fold AF-F9VKB6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1029718","Candidatus Arthromitus sp. SFB-mouse-Japan"]]},{"id":"NCBITaxon:1031537","l":"Bremerella cremea","na":1,"nb":1,"a":[["TED%3AAF-A0A368KQM2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A368KQM2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1031537","Bremerella cremea"]]},{"id":"NCBITaxon:1032","l":"Thiothrix sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A432UXQ4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A432UXQ4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1032","Thiothrix sp."]]},{"id":"NCBITaxon:1032505","l":"Fusobacterium sp. OBRC1","na":1,"nb":1,"a":[["TED%3AAF-X8HXN3-F1-model_v4_TED01","TED highly-symmetric fold AF-X8HXN3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1032505","Fusobacterium sp. OBRC1"]]},{"id":"NCBITaxon:1035309","l":"Ceratocystis fimbriata CBS 114723","na":1,"nb":1,"a":[["TED%3AAF-A0A2C5WW72-F1-model_v4_TED01","TED novel fold AF-A0A2C5WW72-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1035309","Ceratocystis fimbriata CBS 114723"]]},{"id":"NCBITaxon:1035707","l":"Pseudoduganella namucuonensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1I7M3T5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I7M3T5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1035707","Pseudoduganella namucuonensis"]]},{"id":"NCBITaxon:103733","l":"Saccharothrix syringae","na":1,"nb":1,"a":[["TED%3AAF-A0A5Q0GZB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Q0GZB9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A103733","Saccharothrix syringae"]]},{"id":"NCBITaxon:1037377","l":"Chryseobacterium viscerum","na":1,"nb":1,"a":[["TED%3AAF-A0A316W9L1-F1-model_v4_TED02","TED novel fold AF-A0A316W9L1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1037377","Chryseobacterium viscerum"]]},{"id":"NCBITaxon:1038014","l":"Aquimarina amphilecti","na":1,"nb":1,"a":[["TED%3AAF-A0A1H7GXR7-F1-model_v4_TED01","TED novel fold AF-A0A1H7GXR7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1038014","Aquimarina amphilecti"]]},{"id":"NCBITaxon:103808","l":"","na":1,"nb":1,"a":[["Pfam%3APF17172","Glutathione S-transferase N-terminal domain"]],"b":[["NCBITaxon%3A103808","Rhodococcus sp. AD45"]]},{"id":"NCBITaxon:103836","l":"Thermopolyspora flexuosa","na":1,"nb":1,"a":[["TED%3AAF-A0A543J0S6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A543J0S6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A103836","Thermopolyspora flexuosa"]]},{"id":"NCBITaxon:103838","l":"Nonomuraea turkmeniaca","na":1,"nb":1,"a":[["TED%3AAF-A0A5S4FRG4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5S4FRG4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A103838","Nonomuraea turkmeniaca"]]},{"id":"NCBITaxon:1038845","l":"Flavobacterium rakeshii","na":1,"nb":1,"a":[["TED%3AAF-A0A6N8H854-F1-model_v4_TED02","TED novel fold AF-A0A6N8H854-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1038845","Flavobacterium rakeshii"]]},{"id":"NCBITaxon:104027","l":"","na":1,"nb":1,"a":[["Pfam%3APF11941","Domain of unknown function (DUF3459)"]],"b":[["NCBITaxon%3A104027","Arthrobacter sp. Q36"]]},{"id":"NCBITaxon:1042","l":"Erythrobacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A6G9N8S4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6G9N8S4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1042","Erythrobacter sp."]]},{"id":"NCBITaxon:104205","l":"Streptomonospora salina","na":1,"nb":1,"a":[["TED%3AAF-A0A841ECK8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841ECK8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A104205","Streptomonospora salina"]]},{"id":"NCBITaxon:1042156","l":"","na":1,"nb":1,"a":[["TED%3AAF-F7V550-F1-model_v4_TED06","TED highly-symmetric fold AF-F7V550-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A1042156","Clostridium sp. SY8519"]]},{"id":"NCBITaxon:104268","l":"Tenacibaculum mesophilum","na":1,"nb":1,"a":[["TED%3AAF-A0A1M5HMT5-F1-model_v4_TED01","TED novel fold AF-A0A1M5HMT5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A104268","Tenacibaculum mesophilum"]]},{"id":"NCBITaxon:1043002","l":"Aureobasidium pullulans EXF-150","na":1,"nb":1,"a":[["TED%3AAF-A0A074XMY3-F1-model_v4_TED02","TED novel fold AF-A0A074XMY3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1043002","Aureobasidium pullulans EXF-150"]]},{"id":"NCBITaxon:104605","l":"Sphingomonas sp. Ant20","na":1,"nb":1,"a":[["TED%3AAF-A0A0A6F241-F1-model_v4_TED03","TED novel fold AF-A0A0A6F241-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A104605","Sphingomonas sp. Ant20"]]},{"id":"NCBITaxon:104663","l":"Chitinophaga filiformis","na":1,"nb":1,"a":[["TED%3AAF-A0A1G7RSD9-F1-model_v4_TED01","TED novel fold AF-A0A1G7RSD9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A104663","Chitinophaga filiformis"]]},{"id":"NCBITaxon:1048394","l":"Compostimonas suwonensis","na":1,"nb":1,"a":[["TED%3AAF-A0A2M9BCH6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2M9BCH6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1048394","Compostimonas suwonensis"]]},{"id":"NCBITaxon:1048396","l":"Halopenitus persicus","na":1,"nb":1,"a":[["TED%3AAF-A0A1H3M4L7-F1-model_v4_TED01","TED novel fold AF-A0A1H3M4L7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1048396","Halopenitus persicus"]]},{"id":"NCBITaxon:1048519","l":"Viridothelium virens","na":1,"nb":1,"a":[["Pfam%3APF28380","Sesquiterpene cyclase astC-like C-terminal domain"]],"b":[["NCBITaxon%3A1048519","Viridothelium virens"]]},{"id":"NCBITaxon:1048834","l":"","na":1,"nb":1,"a":[["TED%3AAF-F8ICG4-F1-model_v4_TED01","TED novel fold AF-F8ICG4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1048834","Alicyclobacillus acidocaldarius subsp. acidocaldarius Tc-4-1"]]},{"id":"NCBITaxon:1049985","l":"Leptospira santarosai str. ZUN179","na":1,"nb":1,"a":[["TED%3AAF-M6UTI1-F1-model_v4_TED01","TED highly-symmetric fold AF-M6UTI1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1049985","Leptospira santarosai str. ZUN179"]]},{"id":"NCBITaxon:1050222","l":"Paenibacillus sp. Aloe-11","na":1,"nb":1,"a":[["TED%3AAF-H6CRM8-F1-model_v4_TED02","TED highly-symmetric fold AF-H6CRM8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1050222","Paenibacillus sp. Aloe-11"]]},{"id":"NCBITaxon:1050624","l":"Synechococcus sp. A15-127","na":1,"nb":1,"a":[["TED%3AAF-A0A7G8GN66-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G8GN66-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1050624","Synechococcus sp. A15-127"]]},{"id":"NCBITaxon:1051531","l":"Saccharothrix tamanrassetensis","na":1,"nb":1,"a":[["TED%3AAF-A0A841CPC6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841CPC6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1051531","Saccharothrix tamanrassetensis"]]},{"id":"NCBITaxon:1051890","l":"Terfezia boudieri ATCC MYA-4762","na":1,"nb":1,"a":[["TED%3AAF-A0A3N4M0H0-F1-model_v4_TED01","TED novel fold AF-A0A3N4M0H0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1051890","Terfezia boudieri ATCC MYA-4762"]]},{"id":"NCBITaxon:1052260","l":"Klenkia soli","na":1,"nb":1,"a":[["TED%3AAF-A0A1H0TFA4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H0TFA4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1052260","Klenkia soli"]]},{"id":"NCBITaxon:1053167","l":"Bacillus cereus BAG1O-1","na":1,"nb":1,"a":[["TED%3AAF-R8HSP0-F1-model_v4_TED01","TED highly-symmetric fold AF-R8HSP0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1053167","Bacillus cereus BAG1O-1"]]},{"id":"NCBITaxon:1053222","l":"Bacillus cereus MSX-D12","na":1,"nb":1,"a":[["TED%3AAF-J8G3X2-F1-model_v4_TED01","TED highly-symmetric fold AF-J8G3X2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1053222","Bacillus cereus MSX-D12"]]},{"id":"NCBITaxon:1053225","l":"","na":1,"nb":1,"a":[["Pfam%3APF13175","AAA ATPase domain"]],"b":[["NCBITaxon%3A1053225","Bacillus cereus VD045"]]},{"id":"NCBITaxon:1054033","l":"Arcobacter venerupis","na":1,"nb":1,"a":[["TED%3AAF-A0A443TV84-F1-model_v4_TED01","TED novel fold AF-A0A443TV84-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1054033","Arcobacter venerupis"]]},{"id":"NCBITaxon:1054202","l":"Rhodobacter viridis","na":1,"nb":1,"a":[["TED%3AAF-A0A318TZ12-F1-model_v4_TED01","TED novel fold AF-A0A318TZ12-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1054202","Rhodobacter viridis"]]},{"id":"NCBITaxon:1054217","l":"Thermoplasmatales archaeon BRNA1","na":1,"nb":1,"a":[["TED%3AAF-M4YJR5-F1-model_v4_TED01","TED highly-symmetric fold AF-M4YJR5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1054217","Thermoplasmatales archaeon BRNA1"]]},{"id":"NCBITaxon:1054996","l":"Roseovarius marisflavi","na":1,"nb":1,"a":[["TED%3AAF-A0A1M7BRV4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M7BRV4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1054996","Roseovarius marisflavi"]]},{"id":"NCBITaxon:1055723","l":"Muricauda antarctica","na":1,"nb":1,"a":[["TED%3AAF-A0A1M6XG01-F1-model_v4_TED01","TED novel fold AF-A0A1M6XG01-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1005926","Flagellimonas taeanensis"]]},{"id":"NCBITaxon:1056511","l":"Photobacterium marinum","na":1,"nb":1,"a":[["TED%3AAF-L8JAE3-F1-model_v4_TED01","TED novel fold AF-L8JAE3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1056511","Photobacterium marinum"]]},{"id":"NCBITaxon:105696","l":"Epicoccum nigrum","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y2LQ80-F1-model_v4_TED02","TED novel fold AF-A0A1Y2LQ80-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A105696","Epicoccum nigrum"]]},{"id":"NCBITaxon:1058","l":"Thiocapsa roseopersicina","na":1,"nb":1,"a":[["Pfam%3APF27123","Carotenoid hydratase CrtC"]],"b":[["NCBITaxon%3A1058","Thiocapsa roseopersicina"]]},{"id":"NCBITaxon:106370","l":"Frankia casuarinae","na":1,"nb":1,"a":[["Pfam%3APF14403","Circularly permuted ATP-grasp type 2"]],"b":[["NCBITaxon%3A106370","Frankia casuarinae"]]},{"id":"NCBITaxon:1069642","l":"Bdellovibrio bacteriovorus str. Tiberius","na":1,"nb":1,"a":[["TED%3AAF-K7ZFZ4-F1-model_v4_TED02","TED highly-symmetric fold AF-K7ZFZ4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1069642","Bdellovibrio bacteriovorus str. Tiberius"]]},{"id":"NCBITaxon:1069985","l":"Pedobacter kyungheensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0C1FTG1-F1-model_v4_TED01","TED novel fold AF-A0A0C1FTG1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1069985","Pedobacter kyungheensis"]]},{"id":"NCBITaxon:1071072","l":"Bacillus sp. NSP2.1","na":1,"nb":1,"a":[["TED%3AAF-A0A6I7FTV0-F1-model_v4_TED01","TED novel fold AF-A0A6I7FTV0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1071072","Bacillus sp. NSP2.1"]]},{"id":"NCBITaxon:1071078","l":"Bacillus sp. NSP9.1","na":1,"nb":1,"a":[["TED%3AAF-A0A6I7F721-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I7F721-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1071078","Bacillus sp. NSP9.1"]]},{"id":"NCBITaxon:1071381","l":"","na":1,"nb":1,"a":[["TED%3AAF-G8C093-F1-model_v4_TED01","TED novel fold AF-G8C093-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1071381","Tetrapisispora phaffii CBS 4417"]]},{"id":"NCBITaxon:1075091","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7U9C9C0-F1-model_v4_TED01","TED novel fold AF-A0A7U9C9C0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1075091","Clostridium sporogenes PA 3679"]]},{"id":"NCBITaxon:1076124","l":"Phytohabitans flavus","na":1,"nb":1,"a":[["TED%3AAF-A0A6F8Y916-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A6F8Y916-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1076124","Phytohabitans flavus"]]},{"id":"NCBITaxon:1076397","l":"Streptomyces sp. CAI 127","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y6LSI4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y6LSI4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1076397","Streptomyces sp. CAI 127"]]},{"id":"NCBITaxon:1076937","l":"Fontimonas thermophila","na":1,"nb":1,"a":[["TED%3AAF-A0A1I2KE35-F1-model_v4_TED01","TED novel fold AF-A0A1I2KE35-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1076937","Fontimonas thermophila"]]},{"id":"NCBITaxon:1077255","l":"Agitococcus lubricus","na":1,"nb":1,"a":[["TED%3AAF-A0A2T5IPV5-F1-model_v4_TED01","TED novel fold AF-A0A2T5IPV5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1077255","Agitococcus lubricus"]]},{"id":"NCBITaxon:1078016","l":"Rhodococcus erythropolis XP","na":1,"nb":1,"a":[["Pfam%3APF08028","Acyl-CoA dehydrogenase, C-terminal domain"]],"b":[["NCBITaxon%3A1078016","Rhodococcus erythropolis XP"]]},{"id":"NCBITaxon:1078050","l":"Seleniivibrio woodruffii","na":1,"nb":1,"a":[["TED%3AAF-A0A4R1KEH0-F1-model_v4_TED02","TED novel fold AF-A0A4R1KEH0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1078050","Seleniivibrio woodruffii"]]},{"id":"NCBITaxon:1078087","l":"Parabacteroides sp. HGS0025","na":1,"nb":1,"a":[["TED%3AAF-A0A0F5J503-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F5J503-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1078087","Parabacteroides sp. HGS0025"]]},{"id":"NCBITaxon:1080225","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2T0MH98-F1-model_v4_TED02","TED novel fold AF-A0A2T0MH98-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1080225","Flagellimonas meridianipacifica"]]},{"id":"NCBITaxon:1081091","l":"Amycolatopsis balhimycina DSM 5908","na":1,"nb":1,"a":[["TED%3AAF-A0A428WRS4-F1-model_v4_TED02","TED novel fold AF-A0A428WRS4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1081091","Amycolatopsis balhimycina DSM 5908"]]},{"id":"NCBITaxon:1081671","l":"Enterospora canceri","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y1S5B2-F1-model_v4_TED01","TED novel fold AF-A0A1Y1S5B2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1081671","Enterospora canceri"]]},{"id":"NCBITaxon:1081904","l":"","na":1,"nb":1,"a":[["TED%3AAF-U2MVK7-F1-model_v4_TED02","TED novel fold AF-U2MVK7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1081904","Hoylesella pleuritidis F0068"]]},{"id":"NCBITaxon:1085538","l":"Leptospira interrogans serovar Bataviae str. HAI135","na":1,"nb":1,"a":[["TED%3AAF-M6TC60-F1-model_v4_TED05","TED novel fold AF-M6TC60-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1085538","Leptospira interrogans serovar Bataviae str. HAI135"]]},{"id":"NCBITaxon:1086011","l":"","na":1,"nb":1,"a":[["Pfam%3APF11999","Ice-binding-like"]],"b":[["NCBITaxon%3A1086011","Flavobacterium frigoris PS1"]]},{"id":"NCBITaxon:1093900","l":"Thyridium curvatum","na":1,"nb":1,"a":[["TED%3AAF-A0A507BNS0-F1-model_v4_TED02","TED novel fold AF-A0A507BNS0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1093900","Thyridium curvatum"]]},{"id":"NCBITaxon:1095","l":"Chlorobium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A533TQV7-F1-model_v4_TED01","TED novel fold AF-A0A533TQV7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1095","Chlorobium sp."]]},{"id":"NCBITaxon:1095465","l":"Bondarzewia mesenterica","na":1,"nb":1,"a":[["TED%3AAF-A0A4S4LKR0-F1-model_v4_TED01","TED novel fold AF-A0A4S4LKR0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1095465","Bondarzewia mesenterica"]]},{"id":"NCBITaxon:1096246","l":"Hungatella effluvii","na":1,"nb":1,"a":[["TED%3AAF-A0A2V3YBX4-F1-model_v4_TED02","TED novel fold AF-A0A2V3YBX4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1096246","Hungatella effluvii"]]},{"id":"NCBITaxon:1096341","l":"Fonticella tunisiensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4V3ETC5-F1-model_v4_TED01","TED novel fold AF-A0A4V3ETC5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1096341","Fonticella tunisiensis"]]},{"id":"NCBITaxon:1100824","l":"Streptomyces sp. SceaMP-e96","na":1,"nb":1,"a":[["TED%3AAF-A0A1C6PTM6-F1-model_v4_TED01","TED novel fold AF-A0A1C6PTM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1100824","Streptomyces sp. SceaMP-e96"]]},{"id":"NCBITaxon:1107881","l":"Sinorhizobium meliloti CCNWSX0020","na":1,"nb":1,"a":[["TED%3AAF-H0FZ04-F1-model_v4_TED02","TED highly-symmetric fold AF-H0FZ04-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1107881","Sinorhizobium meliloti CCNWSX0020"]]},{"id":"NCBITaxon:1108595","l":"Chromobacterium vaccinii","na":1,"nb":1,"a":[["TED%3AAF-A0A2L2B8V3-F1-model_v4_TED02","TED novel fold AF-A0A2L2B8V3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1108595","Chromobacterium vaccinii"]]},{"id":"NCBITaxon:1110502","l":"Tistrella mobilis KA081020-065","na":1,"nb":1,"a":[["TED%3AAF-I3TTD1-F1-model_v4_TED03","TED novel fold AF-I3TTD1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1110502","Tistrella mobilis KA081020-065"]]},{"id":"NCBITaxon:1111120","l":"","na":1,"nb":1,"a":[["Pfam%3APF21918","CRISPR-associated endonuclease Cpf1 REC2 domain"]],"b":[["NCBITaxon%3A1111120","Acidaminococcus sp. BV3L6"]]},{"id":"NCBITaxon:1111454","l":"","na":1,"nb":1,"a":[["TED%3AAF-U7UHK7-F1-model_v4_TED01","TED novel fold AF-U7UHK7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1111454","Megasphaera vaginalis (ex Srinivasan et al. 2021)"]]},{"id":"NCBITaxon:1113587","l":"Enterococcus sp. NBRC 3427","na":1,"nb":1,"a":[["TED%3AAF-A0A4Y3JKX5-F1-model_v4_TED01","TED novel fold AF-A0A4Y3JKX5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1113587","Enterococcus sp. NBRC 3427"]]},{"id":"NCBITaxon:1113929","l":"Arenibacter sp. NBRC 103722","na":1,"nb":1,"a":[["TED%3AAF-A0A2I9DRB6-F1-model_v4_TED03","TED novel fold AF-A0A2I9DRB6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1113929","Arenibacter sp. NBRC 103722"]]},{"id":"NCBITaxon:1114970","l":"","na":1,"nb":1,"a":[["Pfam%3APF03869","Arc-like DNA binding domain"]],"b":[["NCBITaxon%3A1114970","Pseudomonas ogarae"]]},{"id":"NCBITaxon:111770","l":"Thiothrix fructosivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A8B0SKG2-F1-model_v4_TED02","TED novel fold AF-A0A8B0SKG2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A111770","Thiothrix fructosivorans"]]},{"id":"NCBITaxon:1117987","l":"Paenibacillus sp. 598K","na":1,"nb":1,"a":[["TED%3AAF-A0A401HXD4-F1-model_v4_TED02","TED novel fold AF-A0A401HXD4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1117987","Paenibacillus sp. 598K"]]},{"id":"NCBITaxon:1118154","l":"Brevibacillus laterosporus GI-9","na":1,"nb":1,"a":[["TED%3AAF-H0U9B3-F1-model_v4_TED02","TED highly-symmetric fold AF-H0U9B3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1118154","Brevibacillus laterosporus GI-9"]]},{"id":"NCBITaxon:1118202","l":"Cruoricaptor ignavus","na":1,"nb":1,"a":[["TED%3AAF-A0A1M6G8N4-F1-model_v4_TED01","TED novel fold AF-A0A1M6G8N4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1118202","Cruoricaptor ignavus"]]},{"id":"NCBITaxon:1119533","l":"Marinobacter sp. P4B1","na":1,"nb":1,"a":[["TED%3AAF-A0A0T6W6C4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0T6W6C4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1119533","Marinobacter sp. P4B1"]]},{"id":"NCBITaxon:1120658","l":"Aquamicrobium sp. LC103","na":1,"nb":1,"a":[["TED%3AAF-A0A4U6CBC2-F1-model_v4_TED01","TED novel fold AF-A0A4U6CBC2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1120658","Aquamicrobium sp. LC103"]]},{"id":"NCBITaxon:1123867","l":"SAR86 cluster bacterium SAR86B","na":1,"nb":1,"a":[["TED%3AAF-J5KHP8-F1-model_v4_TED02","TED novel fold AF-J5KHP8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1123867","SAR86 cluster bacterium SAR86B"]]},{"id":"NCBITaxon:112413","l":"Amycolatopsis rubida","na":1,"nb":1,"a":[["TED%3AAF-A0A1I5EMX3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5EMX3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A112413","Amycolatopsis rubida"]]},{"id":"NCBITaxon:1124188","l":"Flavobacterium fontis","na":1,"nb":1,"a":[["TED%3AAF-A0A1M4WE81-F1-model_v4_TED01","TED novel fold AF-A0A1M4WE81-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1124188","Flavobacterium fontis"]]},{"id":"NCBITaxon:1124743","l":"Kribbella soli","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q7WU76-F1-model_v4_TED01","TED novel fold AF-A0A4Q7WU76-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1124743","Kribbella soli"]]},{"id":"NCBITaxon:1125712","l":"Olsenella profusa F0195","na":1,"nb":1,"a":[["TED%3AAF-U2TWC0-F1-model_v4_TED02","TED novel fold AF-U2TWC0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1125712","Olsenella profusa F0195"]]},{"id":"NCBITaxon:1125723","l":"Porphyromonas sp. oral taxon 279 str. F0450","na":1,"nb":1,"a":[["TED%3AAF-J5VS35-F1-model_v4_TED02","TED novel fold AF-J5VS35-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1125723","Porphyromonas sp. oral taxon 279 str. F0450"]]},{"id":"NCBITaxon:1125876","l":"Halpernia frigidisoli","na":1,"nb":1,"a":[["TED%3AAF-A0A1I3H4T1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I3H4T1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1125876","Halpernia frigidisoli"]]},{"id":"NCBITaxon:1127134","l":"","na":1,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_SalSyn","Metallophore-associated bifunctional salicylate synthase family"]],"b":[["NCBITaxon%3A1127134","Nocardia cyriacigeorgica GUH-2"]]},{"id":"NCBITaxon:1127692","l":"Capnocytophaga sp. oral taxon 332 str. F0381","na":1,"nb":1,"a":[["TED%3AAF-L1P1Z3-F1-model_v4_TED01","TED highly-symmetric fold AF-L1P1Z3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1127692","Capnocytophaga sp. oral taxon 332 str. F0381"]]},{"id":"NCBITaxon:1128331","l":"Sinorhizobium fredii CCBAU 45436","na":1,"nb":1,"a":[["TED%3AAF-A0A2U8G1E2-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A2U8G1E2-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1128331","Sinorhizobium fredii CCBAU 45436"]]},{"id":"NCBITaxon:1128664","l":"Amycolatopsis cihanbeyliensis","na":1,"nb":1,"a":[["TED%3AAF-A0A542DPL2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A542DPL2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1128664","Amycolatopsis cihanbeyliensis"]]},{"id":"NCBITaxon:1128677","l":"Saccharomonospora amisosensis","na":1,"nb":1,"a":[["TED%3AAF-A0A7X5ULP8-F1-model_v4_TED04","TED novel fold AF-A0A7X5ULP8-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1128677","Saccharomonospora amisosensis"]]},{"id":"NCBITaxon:1128680","l":"Streptomyces coryli","na":1,"nb":1,"a":[["TED%3AAF-A0A6G4UEJ6-F1-model_v4_TED01","TED novel fold AF-A0A6G4UEJ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1128680","Streptomyces coryli"]]},{"id":"NCBITaxon:113355","l":"Geminocystis herdmanii PCC 6308","na":1,"nb":1,"a":[["Pfam%3APF18921","Cyanophycin synthase-like N-terminal domain"]],"b":[["NCBITaxon%3A113355","Geminocystis herdmanii PCC 6308"]]},{"id":"NCBITaxon:1133849","l":"Nocardia brasiliensis ATCC 700358","na":1,"nb":1,"a":[["TED%3AAF-K0ES07-F1-model_v4_TED01","TED novel fold AF-K0ES07-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1133849","Nocardia brasiliensis ATCC 700358"]]},{"id":"NCBITaxon:1134406","l":"Ornatilinea apprima","na":1,"nb":1,"a":[["TED%3AAF-A0A0P6XBK5-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A0P6XBK5-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1134406","Ornatilinea apprima"]]},{"id":"NCBITaxon:1134802","l":"Enterococcus faecium TX1337RF","na":1,"nb":1,"a":[["TED%3AAF-J8W7A1-F1-model_v4_TED01","TED highly-symmetric fold AF-J8W7A1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1134802","Enterococcus faecium TX1337RF"]]},{"id":"NCBITaxon:113574","l":"Hyphomicrobium sp. GJ21","na":1,"nb":1,"a":[["TED%3AAF-A0A218PUP1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A218PUP1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A113574","Hyphomicrobium sp. GJ21"]]},{"id":"NCBITaxon:1135998","l":"uncultured Craurococcus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A6J4HXK8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6J4HXK8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1135998","uncultured Craurococcus sp."]]},{"id":"NCBITaxon:1136231","l":"","na":1,"nb":1,"a":[["TED%3AAF-H8X3X7-F1-model_v4_TED02","TED novel fold AF-H8X3X7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1136231","Lodderomyces orthopsilosis Co 90-125"]]},{"id":"NCBITaxon:1137095","l":"Scytonema sp. HK-05","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z4IXU0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Z4IXU0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1137095","Scytonema sp. HK-05"]]},{"id":"NCBITaxon:1138189","l":"Rhizobium bangladeshense","na":1,"nb":1,"a":[["TED%3AAF-A0A8A3LGY7-F1-model_v4_TED01","TED novel fold AF-A0A8A3LGY7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1138189","Rhizobium bangladeshense"]]},{"id":"NCBITaxon:1138383","l":"Mycobacterium paraintracellulare","na":1,"nb":1,"a":[["TED%3AAF-A0A7I7TSN1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7I7TSN1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1138383","Mycobacterium paraintracellulare"]]},{"id":"NCBITaxon:1141878","l":"Deinococcus metalli","na":1,"nb":1,"a":[["TED%3AAF-A0A7W8KJA7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W8KJA7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1141878","Deinococcus metalli"]]},{"id":"NCBITaxon:1141890","l":"Sphingomonas guangdongensis","na":1,"nb":1,"a":[["TED%3AAF-A0A285R2C6-F1-model_v4_TED02","TED novel fold AF-A0A285R2C6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1141890","Sphingomonas guangdongensis"]]},{"id":"NCBITaxon:1144311","l":"Brevibacillus sp. CF112","na":1,"nb":1,"a":[["TED%3AAF-J2H7A9-F1-model_v4_TED02","TED highly-symmetric fold AF-J2H7A9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1144311","Brevibacillus sp. CF112"]]},{"id":"NCBITaxon:1144312","l":"Rhizobium sp. CF122","na":1,"nb":1,"a":[["TED%3AAF-J2IX71-F1-model_v4_TED01","TED novel fold AF-J2IX71-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1144312","Rhizobium sp. CF122"]]},{"id":"NCBITaxon:1144321","l":"Pseudomonas sp. GM102","na":1,"nb":1,"a":[["TED%3AAF-J3EAD0-F1-model_v4_TED02","TED novel fold AF-J3EAD0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1144321","Pseudomonas sp. GM102"]]},{"id":"NCBITaxon:1144338","l":"Pseudomonas sp. GM79","na":1,"nb":1,"a":[["TED%3AAF-J2WCT1-F1-model_v4_TED02","TED highly-symmetric fold AF-J2WCT1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1144338","Pseudomonas sp. GM79"]]},{"id":"NCBITaxon:1144618","l":"Allonocardiopsis opalescens","na":1,"nb":1,"a":[["TED%3AAF-A0A2T0QE02-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T0QE02-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1144618","Allonocardiopsis opalescens"]]},{"id":"NCBITaxon:1144672","l":"Acinetobacter sp. CIP 56.2","na":1,"nb":1,"a":[["TED%3AAF-N8WE79-F1-model_v4_TED01","TED novel fold AF-N8WE79-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A472","Acinetobacter sp."]]},{"id":"NCBITaxon:114527","l":"Mogibacterium diversum","na":1,"nb":1,"a":[["TED%3AAF-A0A2S0L5I6-F1-model_v4_TED02","TED novel fold AF-A0A2S0L5I6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A114527","Mogibacterium diversum"]]},{"id":"NCBITaxon:114615","l":"Bradyrhizobium sp. ORS 278","na":1,"nb":1,"a":[["Pfam%3APF10073","GapR-like, DNA-binding domain"]],"b":[["NCBITaxon%3A114615","Bradyrhizobium sp. ORS 278"]]},{"id":"NCBITaxon:114619","l":"Rickettsia sp. IRS3","na":1,"nb":1,"a":[["TED%3AAF-Q9LAF1-F1-model_v4_TED02","TED highly-symmetric fold AF-Q9LAF1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A114619","Rickettsia sp. IRS3"]]},{"id":"NCBITaxon:114630","l":"","na":1,"nb":1,"a":[["PROSITE%3APS00093","N-4 cytosine-specific DNA methylases signature"]],"b":[["NCBITaxon%3A114630","Bacillus sp. NEB-606"]]},{"id":"NCBITaxon:114742","l":"Pythium insidiosum","na":1,"nb":1,"a":[["TED%3AAF-A0A2D4C934-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D4C934-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A114742","Pythium insidiosum"]]},{"id":"NCBITaxon:1150368","l":"Sinomicrobium oceani","na":1,"nb":1,"a":[["TED%3AAF-A0A1K1M5D1-F1-model_v4_TED01","TED novel fold AF-A0A1K1M5D1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1150368","Sinomicrobium oceani"]]},{"id":"NCBITaxon:1150389","l":"Flavobacteriaceae bacterium UJ101","na":1,"nb":1,"a":[["TED%3AAF-A0A1J0LPF8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1J0LPF8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1150389","Flavobacteriaceae bacterium UJ101"]]},{"id":"NCBITaxon:1151187","l":"","na":1,"nb":1,"a":[["Pfam%3APF26305","cGAS/DncV-like nucleotidyltransferase C-terminal helical domain"]],"b":[["NCBITaxon%3A1151187","Enterococcus faecalis EnGen0062"]]},{"id":"NCBITaxon:1151252","l":"","na":1,"nb":1,"a":[["Pfam%3APF12641","Flavodoxin domain"]],"b":[["NCBITaxon%3A1151252","Clostridioides difficile CD3"]]},{"id":"NCBITaxon:1151292","l":"Clostridioides difficile CD160","na":1,"nb":1,"a":[["TED%3AAF-T3DT05-F1-model_v4_TED01","TED highly-symmetric fold AF-T3DT05-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1151292","Clostridioides difficile CD160"]]},{"id":"NCBITaxon:1156417","l":"Caloranaerobacter azorensis H53214","na":1,"nb":1,"a":[["TED%3AAF-A0A096CTK5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A096CTK5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1156417","Caloranaerobacter azorensis H53214"]]},{"id":"NCBITaxon:115808","l":"Bradyrhizobium sp. ORS 285","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y6KEH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y6KEH3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A115808","Bradyrhizobium sp. ORS 285"]]},{"id":"NCBITaxon:1158606","l":"Enterococcus asini ATCC 700915","na":1,"nb":1,"a":[["TED%3AAF-R2PXZ3-F1-model_v4_TED01","TED novel fold AF-R2PXZ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1158606","Enterococcus asini ATCC 700915"]]},{"id":"NCBITaxon:1159017","l":"Pseudidiomarina indica","na":1,"nb":1,"a":[["TED%3AAF-A0A1G6BAB6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G6BAB6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1159017","Pseudidiomarina indica"]]},{"id":"NCBITaxon:1159327","l":"Pontimonas salivibrio","na":1,"nb":1,"a":[["TED%3AAF-A0A2L2BSE8-F1-model_v4_TED02","TED novel fold AF-A0A2L2BSE8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1159327","Pontimonas salivibrio"]]},{"id":"NCBITaxon:116092","l":"Pseudoalteromonas sp. A25","na":1,"nb":1,"a":[["TED%3AAF-A0A5H2Y3J0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5H2Y3J0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A116092","Pseudoalteromonas sp. A25"]]},{"id":"NCBITaxon:1162706","l":"uncultured Solirubrobacteraceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A6J4R7V0-F1-model_v4_TED01","TED novel fold AF-A0A6J4R7V0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1162706","uncultured Solirubrobacteraceae bacterium"]]},{"id":"NCBITaxon:1162967","l":"Diaminobutyricimonas aerilata","na":1,"nb":1,"a":[["TED%3AAF-A0A2M9CH35-F1-model_v4_TED01","TED novel fold AF-A0A2M9CH35-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1162967","Diaminobutyricimonas aerilata"]]},{"id":"NCBITaxon:1163745","l":"Helicobacter cetorum MIT 99-5656","na":1,"nb":1,"a":[["TED%3AAF-I0EUT8-F1-model_v4_TED01","TED novel fold AF-I0EUT8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1163745","Helicobacter cetorum MIT 99-5656"]]},{"id":"NCBITaxon:1164594","l":"Massilia yuzhufengensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1I1LD95-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I1LD95-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1164594","Massilia yuzhufengensis"]]},{"id":"NCBITaxon:1166078","l":"Aureimonas phyllosphaerae","na":1,"nb":1,"a":[["TED%3AAF-A0A7W6FW33-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W6FW33-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1166078","Aureimonas phyllosphaerae"]]},{"id":"NCBITaxon:1168","l":"","na":1,"nb":1,"a":[["Pfam%3APF01383","CpcD/allophycocyanin linker domain"]],"b":[["NCBITaxon%3A1168","Nostoc sp. PCC 7119"]]},{"id":"NCBITaxon:1168221","l":"","na":1,"nb":1,"a":[["TED%3AAF-R7YM74-F1-model_v4_TED01","TED novel fold AF-R7YM74-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1168221","Coniosporium apollinis CBS 100218"]]},{"id":"NCBITaxon:1168729","l":"Nocardioides zhouii","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q2T3K7-F1-model_v4_TED02","TED novel fold AF-A0A4Q2T3K7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1168729","Nocardioides zhouii"]]},{"id":"NCBITaxon:1172614","l":"Paenibacillus hemerocallicola","na":1,"nb":1,"a":[["TED%3AAF-A0A5C4TIE0-F1-model_v4_TED01","TED novel fold AF-A0A5C4TIE0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1172614","Paenibacillus hemerocallicola"]]},{"id":"NCBITaxon:1173064","l":"Anaplasma phagocytophilum str. JM","na":1,"nb":1,"a":[["TED%3AAF-S5Q3Y9-F1-model_v4_TED01","TED novel fold AF-S5Q3Y9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1173064","Anaplasma phagocytophilum str. JM"]]},{"id":"NCBITaxon:1173487","l":"Halorubrum sp. AJ67","na":1,"nb":1,"a":[["TED%3AAF-V6DTK2-F1-model_v4_TED02","TED highly-symmetric fold AF-V6DTK2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1173487","Halorubrum sp. AJ67"]]},{"id":"NCBITaxon:1173584","l":"Aliiroseovarius sediminilitoris","na":1,"nb":1,"a":[["TED%3AAF-A0A1I0PD53-F1-model_v4_TED03","TED novel fold AF-A0A1I0PD53-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1173584","Aliiroseovarius sediminilitoris"]]},{"id":"NCBITaxon:1173701","l":"Colletotrichum sublineola","na":1,"nb":1,"a":[["TED%3AAF-A0A066XA05-F1-model_v4_TED03","TED novel fold AF-A0A066XA05-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1173701","Colletotrichum sublineola"]]},{"id":"NCBITaxon:1173995","l":"Parvularcula dongshanensis","na":1,"nb":1,"a":[["TED%3AAF-A0A840I3S3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A840I3S3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1173995","Parvularcula dongshanensis"]]},{"id":"NCBITaxon:1174501","l":"Paenibacillus typhae","na":1,"nb":1,"a":[["TED%3AAF-A0A1G8GPR0-F1-model_v4_TED02","TED novel fold AF-A0A1G8GPR0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1174501","Paenibacillus typhae"]]},{"id":"NCBITaxon:1176176","l":"Methylobacterium haplocladii","na":1,"nb":1,"a":[["TED%3AAF-A0A512INB8-F1-model_v4_TED02","TED novel fold AF-A0A512INB8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1176176","Methylobacterium haplocladii"]]},{"id":"NCBITaxon:1176243","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2T0V4V7-F1-model_v4_TED03","TED novel fold AF-A0A2T0V4V7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1176243","Vreelandella songnenensis"]]},{"id":"NCBITaxon:1176533","l":"Luteimonas granuli","na":1,"nb":1,"a":[["TED%3AAF-A0A518N6X9-F1-model_v4_TED02","TED novel fold AF-A0A518N6X9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1176533","Luteimonas granuli"]]},{"id":"NCBITaxon:1177154","l":"Alcanivorax nanhaiticus","na":1,"nb":1,"a":[["TED%3AAF-A0A095SFN1-F1-model_v4_TED01","TED novel fold AF-A0A095SFN1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1177154","Alcanivorax nanhaiticus"]]},{"id":"NCBITaxon:1178516","l":"Spirosoma montaniterrae","na":1,"nb":1,"a":[["TED%3AAF-A0A1P9WRL0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1P9WRL0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1178516","Spirosoma montaniterrae"]]},{"id":"NCBITaxon:1179777","l":"Mycoplasma feriruminatoris","na":1,"nb":1,"a":[["TED%3AAF-A0A654IMN0-F1-model_v4_TED02","TED novel fold AF-A0A654IMN0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1179777","Mycoplasma feriruminatoris"]]},{"id":"NCBITaxon:118127","l":"Chryseobacterium proteolyticum","na":1,"nb":1,"a":[["Pfam%3APF18626","Glutaminase"]],"b":[["NCBITaxon%3A118127","Chryseobacterium proteolyticum"]]},{"id":"NCBITaxon:1183429","l":"Agrobacterium fabacearum S56","na":1,"nb":1,"a":[["TED%3AAF-A0A1S7NI73-F1-model_v4_TED02","TED novel fold AF-A0A1S7NI73-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1183429","Agrobacterium fabacearum S56"]]},{"id":"NCBITaxon:1184151","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A178IHD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A178IHD6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1184151","Termitidicoccus mucosus"]]},{"id":"NCBITaxon:1186196","l":"Natrinema salaciae","na":1,"nb":1,"a":[["TED%3AAF-A0A1H9QMZ8-F1-model_v4_TED01","TED novel fold AF-A0A1H9QMZ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1186196","Natrinema salaciae"]]},{"id":"NCBITaxon:118675","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y0IP23-F1-model_v4_TED01","TED novel fold AF-A0A7Y0IP23-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A118675","[Chroococcidiopsis] sp. PCC 6712"]]},{"id":"NCBITaxon:1188229","l":"Gloeomargarita lithophora Alchichica-D10","na":1,"nb":1,"a":[["TED%3AAF-A0A1J0AGF7-F1-model_v4_TED01","TED novel fold AF-A0A1J0AGF7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1188229","Gloeomargarita lithophora Alchichica-D10"]]},{"id":"NCBITaxon:1188234","l":"Metamycoplasma alkalescens 14918","na":1,"nb":1,"a":[["TED%3AAF-N9UBA4-F1-model_v4_TED01","TED novel fold AF-N9UBA4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1188234","Metamycoplasma alkalescens 14918"]]},{"id":"NCBITaxon:1188242","l":"Mycoplasmopsis bovis 8790","na":1,"nb":1,"a":[["TED%3AAF-A0A4U0W9X5-F1-model_v4_TED01","TED novel fold AF-A0A4U0W9X5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1188242","Mycoplasmopsis bovis 8790"]]},{"id":"NCBITaxon:1190417","l":"Geodermatophilus telluris","na":1,"nb":1,"a":[["TED%3AAF-A0A1G6L8J2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G6L8J2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1190417","Geodermatophilus telluris"]]},{"id":"NCBITaxon:1191209","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A243T1A0-F1-model_v4_TED02","TED novel fold AF-A0A243T1A0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1191209","Billgrantia desiderata SP1"]]},{"id":"NCBITaxon:1191298","l":"Vibrio genomosp. F6 str. FF-238","na":1,"nb":1,"a":[["TED%3AAF-A0A1E5D5V8-F1-model_v4_TED02","TED novel fold AF-A0A1E5D5V8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1191298","Vibrio genomosp. F6 str. FF-238"]]},{"id":"NCBITaxon:1191305","l":"Vibrio splendidus 12E03","na":1,"nb":1,"a":[["TED%3AAF-A0A1E5FC68-F1-model_v4_TED01","TED novel fold AF-A0A1E5FC68-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1191305","Vibrio splendidus 12E03"]]},{"id":"NCBITaxon:1191459","l":"Flammeovirga sp. MY04","na":1,"nb":1,"a":[["TED%3AAF-A0A1B1FZ46-F1-model_v4_TED02","TED novel fold AF-A0A1B1FZ46-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1191459","Flammeovirga sp. MY04"]]},{"id":"NCBITaxon:1192197","l":"Pelosinus fermentans JBW45","na":1,"nb":1,"a":[["TED%3AAF-I9DM65-F1-model_v4_TED01","TED novel fold AF-I9DM65-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1192197","Pelosinus fermentans JBW45"]]},{"id":"NCBITaxon:1192688","l":"Salmonella enterica subsp. enterica serovar Dublin str. UC16","na":1,"nb":1,"a":[["TED%3AAF-M7S6D1-F1-model_v4_TED01","TED novel fold AF-M7S6D1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1192688","Salmonella enterica subsp. enterica serovar Dublin str. UC16"]]},{"id":"NCBITaxon:1193500","l":"Leptospira idonii","na":1,"nb":1,"a":[["TED%3AAF-A0A4R9LX20-F1-model_v4_TED02","TED novel fold AF-A0A4R9LX20-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1193500","Leptospira idonii"]]},{"id":"NCBITaxon:1193682","l":"Actinokineospora bangkokensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q9LJW8-F1-model_v4_TED01","TED novel fold AF-A0A1Q9LJW8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1193682","Actinokineospora bangkokensis"]]},{"id":"NCBITaxon:1196322","l":"Clostridium sp. Maddingley MBC34-26","na":1,"nb":1,"a":[["TED%3AAF-K6TT75-F1-model_v4_TED01","TED highly-symmetric fold AF-K6TT75-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1196322","Clostridium sp. Maddingley MBC34-26"]]},{"id":"NCBITaxon:1198452","l":"Janthinobacterium sp. HH01","na":1,"nb":1,"a":[["TED%3AAF-L9PHA3-F1-model_v4_TED01","TED highly-symmetric fold AF-L9PHA3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1198452","Janthinobacterium sp. HH01"]]},{"id":"NCBITaxon:1200751","l":"Ruminococcaceae bacterium P7","na":1,"nb":1,"a":[["TED%3AAF-A0A1G4WUB4-F1-model_v4_TED01","TED novel fold AF-A0A1G4WUB4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1200751","Ruminococcaceae bacterium P7"]]},{"id":"NCBITaxon:1200792","l":"Brevibacillus brevis X23","na":1,"nb":1,"a":[["TED%3AAF-A0A291BDV3-F1-model_v4_TED01","TED novel fold AF-A0A291BDV3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1200792","Brevibacillus brevis X23"]]},{"id":"NCBITaxon:1201031","l":"Pectobacterium aroidearum","na":1,"nb":1,"a":[["TED%3AAF-A0A7S9Y306-F1-model_v4_TED01","TED novel fold AF-A0A7S9Y306-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1201031","Pectobacterium aroidearum"]]},{"id":"NCBITaxon:1201290","l":"","na":1,"nb":1,"a":[["TED%3AAF-T0CEV1-F1-model_v4_TED02","TED novel fold AF-T0CEV1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1201290","Bacteriovorax sp. BAL6_X"]]},{"id":"NCBITaxon:1203556","l":"Actinomyces sp. HPA0247","na":1,"nb":1,"a":[["TED%3AAF-S2ZT21-F1-model_v4_TED02","TED novel fold AF-S2ZT21-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1203556","Actinomyces sp. HPA0247"]]},{"id":"NCBITaxon:1204385","l":"Litorilinea aerophila","na":1,"nb":1,"a":[["TED%3AAF-A0A540VHU2-F1-model_v4_TED01","TED novel fold AF-A0A540VHU2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1204385","Litorilinea aerophila"]]},{"id":"NCBITaxon:1205910","l":"","na":1,"nb":1,"a":[["TED%3AAF-J7L5Y1-F1-model_v4_TED01","TED novel fold AF-J7L5Y1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1205910","Nocardiopsis alba ATCC BAA-2165"]]},{"id":"NCBITaxon:120645","l":"","na":1,"nb":1,"a":[["Pfam%3APF07143","AttH-like"]],"b":[["NCBITaxon%3A120645","Fusarium phaseoli"]]},{"id":"NCBITaxon:1206767","l":"Solidesulfovibrio magneticus str. Maddingley MBC34","na":1,"nb":1,"a":[["TED%3AAF-K6HEH0-F1-model_v4_TED02","TED highly-symmetric fold AF-K6HEH0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1206767","Solidesulfovibrio magneticus str. Maddingley MBC34"]]},{"id":"NCBITaxon:1208320","l":"Thalassolituus oleivorans R6-15","na":1,"nb":1,"a":[["TED%3AAF-W8G4Y2-F1-model_v4_TED02","TED highly-symmetric fold AF-W8G4Y2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1208320","Thalassolituus oleivorans R6-15"]]},{"id":"NCBITaxon:1208365","l":"SAR86 cluster bacterium SAR86E","na":1,"nb":1,"a":[["TED%3AAF-K6GHH6-F1-model_v4_TED04","TED novel fold AF-K6GHH6-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1208365","SAR86 cluster bacterium SAR86E"]]},{"id":"NCBITaxon:1208583","l":"Commensalibacter papalotli (ex Servin-Garciduenas et al. 2014)","na":1,"nb":1,"a":[["TED%3AAF-W7DJT2-F1-model_v4_TED01","TED highly-symmetric fold AF-W7DJT2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1208583","Commensalibacter papalotli (ex Servin-Garciduenas et al. 2014)"]]},{"id":"NCBITaxon:1208661","l":"Cronobacter dublinensis 582","na":1,"nb":1,"a":[["TED%3AAF-K8B0L1-F1-model_v4_TED02","TED highly-symmetric fold AF-K8B0L1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1208661","Cronobacter dublinensis 582"]]},{"id":"NCBITaxon:120959","l":"Mycobacterium kubicae","na":1,"nb":1,"a":[["TED%3AAF-A0A7G8A8J2-F1-model_v4_TED02","TED novel fold AF-A0A7G8A8J2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A120959","Mycobacterium kubicae"]]},{"id":"NCBITaxon:1209926","l":"Colletotrichum orchidophilum","na":1,"nb":1,"a":[["TED%3AAF-A0A1G4BEU5-F1-model_v4_TED01","TED novel fold AF-A0A1G4BEU5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1209926","Colletotrichum orchidophilum"]]},{"id":"NCBITaxon:1210932","l":"Peteryoungia ipomoeae","na":1,"nb":1,"a":[["TED%3AAF-A0A4S8P7B5-F1-model_v4_TED01","TED novel fold AF-A0A4S8P7B5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1210932","Peteryoungia ipomoeae"]]},{"id":"NCBITaxon:1212765","l":"Candidatus Mycoplasma haematolamae str. Purdue","na":1,"nb":1,"a":[["TED%3AAF-I7CFH3-F1-model_v4_TED01","TED novel fold AF-I7CFH3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1212765","Candidatus Mycoplasma haematolamae str. Purdue"]]},{"id":"NCBITaxon:1213189","l":"Zancudomyces culisetae","na":1,"nb":1,"a":[["TED%3AAF-A0A1R1PVM1-F1-model_v4_TED01","TED novel fold AF-A0A1R1PVM1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1213189","Zancudomyces culisetae"]]},{"id":"NCBITaxon:1213861","l":"Actinocrispum wychmicini","na":1,"nb":1,"a":[["TED%3AAF-A0A4R2IZC5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R2IZC5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1213861","Actinocrispum wychmicini"]]},{"id":"NCBITaxon:1214604","l":"Tumebacillus algifaecis","na":1,"nb":1,"a":[["TED%3AAF-A0A223CZ66-F1-model_v4_TED03","TED novel fold AF-A0A223CZ66-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1214604","Tumebacillus algifaecis"]]},{"id":"NCBITaxon:1216886","l":"Nguyenibacter vanlangensis","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y7IW05-F1-model_v4_TED02","TED novel fold AF-A0A7Y7IW05-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1216886","Nguyenibacter vanlangensis"]]},{"id":"NCBITaxon:1217692","l":"Acinetobacter sp. NIPH 298","na":1,"nb":1,"a":[["TED%3AAF-N9MZT5-F1-model_v4_TED02","TED novel fold AF-N9MZT5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1217692","Acinetobacter sp. NIPH 298"]]},{"id":"NCBITaxon:1217707","l":"Acinetobacter sp. ANC 3929","na":1,"nb":1,"a":[["TED%3AAF-N9KJP3-F1-model_v4_TED02","TED highly-symmetric fold AF-N9KJP3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1217707","Acinetobacter sp. ANC 3929"]]},{"id":"NCBITaxon:1217737","l":"Bacillus thuringiensis HD-789","na":1,"nb":1,"a":[["TED%3AAF-A0A806HWA2-F1-model_v4_TED01","TED novel fold AF-A0A806HWA2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1217737","Bacillus thuringiensis HD-789"]]},{"id":"NCBITaxon:1217969","l":"Nonlabens arenilitoris","na":1,"nb":1,"a":[["TED%3AAF-A0A2S7U9M6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S7U9M6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1217969","Nonlabens arenilitoris"]]},{"id":"NCBITaxon:1218175","l":"Bacillus thuringiensis HD-771","na":1,"nb":1,"a":[["TED%3AAF-J3UA09-F1-model_v4_TED02","TED highly-symmetric fold AF-J3UA09-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1218175","Bacillus thuringiensis HD-771"]]},{"id":"NCBITaxon:1218494","l":"Lactobacillus helsingborgensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0F4LPM4-F1-model_v4_TED01","TED novel fold AF-A0A0F4LPM4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1218494","Lactobacillus helsingborgensis"]]},{"id":"NCBITaxon:1219491","l":"Actinomadura sp. WMMB 499","na":1,"nb":1,"a":[["TED%3AAF-A0A5J6UA85-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A5J6UA85-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1219491","Actinomadura sp. WMMB 499"]]},{"id":"NCBITaxon:1221500","l":"Fictibacillus phosphorivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A161TIQ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A161TIQ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1221500","Fictibacillus phosphorivorans"]]},{"id":"NCBITaxon:1222016","l":"Caldicellulosiruptor changbaiensis","na":1,"nb":1,"a":[["TED%3AAF-A0A3T0D3Q7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3T0D3Q7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1222016","Caldicellulosiruptor changbaiensis"]]},{"id":"NCBITaxon:122368","l":"Cercospora beticola","na":1,"nb":1,"a":[["TED%3AAF-A0A2G5HT37-F1-model_v4_TED02","TED novel fold AF-A0A2G5HT37-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A122368","Cercospora beticola"]]},{"id":"NCBITaxon:1225657","l":"Loktanella sp. 3ANDIMAR09","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q2YXZ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q2YXZ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1225657","Loktanella sp. 3ANDIMAR09"]]},{"id":"NCBITaxon:1226323","l":"Oscillibacter sp. KLE 1745","na":1,"nb":1,"a":[["TED%3AAF-U2QJK1-F1-model_v4_TED01","TED highly-symmetric fold AF-U2QJK1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1226323","Oscillibacter sp. KLE 1745"]]},{"id":"NCBITaxon:1226754","l":"Paenibacillus sp. FSL R5-192","na":1,"nb":1,"a":[["TED%3AAF-W4AKI2-F1-model_v4_TED03","TED novel fold AF-W4AKI2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1226754","Paenibacillus sp. FSL R5-192"]]},{"id":"NCBITaxon:1226755","l":"Paenibacillus sp. FSL R7-269","na":1,"nb":1,"a":[["TED%3AAF-W4CCP5-F1-model_v4_TED01","TED novel fold AF-W4CCP5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1226755","Paenibacillus sp. FSL R7-269"]]},{"id":"NCBITaxon:1227077","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1I5ZPQ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5ZPQ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1227077","Hymenobacter arizonensis"]]},{"id":"NCBITaxon:1227266","l":"Capnocytophaga sp. oral taxon 863 str. F0517","na":1,"nb":1,"a":[["TED%3AAF-U2ANL2-F1-model_v4_TED01","TED highly-symmetric fold AF-U2ANL2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1227266","Capnocytophaga sp. oral taxon 863 str. F0517"]]},{"id":"NCBITaxon:1227271","l":"Porphyromonas gingivalis F0570","na":1,"nb":1,"a":[["TED%3AAF-A0A0E2LSH2-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A0E2LSH2-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1227271","Porphyromonas gingivalis F0570"]]},{"id":"NCBITaxon:1227352","l":"Paenibacillus sp. FSL R7-277","na":1,"nb":1,"a":[["TED%3AAF-W4CZ93-F1-model_v4_TED01","TED highly-symmetric fold AF-W4CZ93-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1227352","Paenibacillus sp. FSL R7-277"]]},{"id":"NCBITaxon:1227551","l":"Meiothermus granaticius NBRC 107808","na":1,"nb":1,"a":[["TED%3AAF-A0A399FBI9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A399FBI9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1227551","Meiothermus granaticius NBRC 107808"]]},{"id":"NCBITaxon:1229521","l":"Nitrincola nitratireducens","na":1,"nb":1,"a":[["TED%3AAF-W9VFH2-F1-model_v4_TED01","TED highly-symmetric fold AF-W9VFH2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1229521","Nitrincola nitratireducens"]]},{"id":"NCBITaxon:1230730","l":"Tissierellia bacterium S5-A11","na":1,"nb":1,"a":[["TED%3AAF-A0A095XB89-F1-model_v4_TED02","TED novel fold AF-A0A095XB89-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1230730","Tissierellia bacterium S5-A11"]]},{"id":"NCBITaxon:1230846","l":"Acidobacteria bacterium AB60","na":1,"nb":1,"a":[["TED%3AAF-A0A5M8SNT8-F1-model_v4_TED01","TED novel fold AF-A0A5M8SNT8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1230846","Acidobacteria bacterium AB60"]]},{"id":"NCBITaxon:1232866","l":"Caballeronia udeis","na":1,"nb":1,"a":[["TED%3AAF-A0A158IK30-F1-model_v4_TED03","TED novel fold AF-A0A158IK30-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1232866","Caballeronia udeis"]]},{"id":"NCBITaxon:1233","l":"Nitrosovibrio tenuis","na":1,"nb":1,"a":[["TED%3AAF-A0A1H7P7C7-F1-model_v4_TED01","TED novel fold AF-A0A1H7P7C7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1233","Nitrosovibrio tenuis"]]},{"id":"NCBITaxon:1234841","l":"Mucilaginibacter xinganensis","na":1,"nb":1,"a":[["TED%3AAF-A0A223P1G7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A223P1G7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1234841","Mucilaginibacter xinganensis"]]},{"id":"NCBITaxon:1235795","l":"Paenibacillus barengoltzii G22","na":1,"nb":1,"a":[["TED%3AAF-R9L6P1-F1-model_v4_TED01","TED highly-symmetric fold AF-R9L6P1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1235795","Paenibacillus barengoltzii G22"]]},{"id":"NCBITaxon:1235796","l":"Firmicutes bacterium M10-2","na":1,"nb":1,"a":[["TED%3AAF-R9LTU1-F1-model_v4_TED02","TED novel fold AF-R9LTU1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1235796","Firmicutes bacterium M10-2"]]},{"id":"NCBITaxon:1235797","l":"Oscillibacter sp. 1-3","na":1,"nb":1,"a":[["TED%3AAF-R9M5Y4-F1-model_v4_TED01","TED novel fold AF-R9M5Y4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1235797","Oscillibacter sp. 1-3"]]},{"id":"NCBITaxon:1235800","l":"Lachnospiraceae bacterium 10-1","na":1,"nb":1,"a":[["TED%3AAF-R9N039-F1-model_v4_TED02","TED novel fold AF-R9N039-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1235800","Lachnospiraceae bacterium 10-1"]]},{"id":"NCBITaxon:1236046","l":"Mesotoga infera","na":1,"nb":1,"a":[["TED%3AAF-A0A7C1CX61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C1CX61-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1236046","Mesotoga infera"]]},{"id":"NCBITaxon:1236689","l":"Candidatus Methanomethylophilus alvi Mx1201","na":1,"nb":1,"a":[["TED%3AAF-M9SC19-F1-model_v4_TED01","TED highly-symmetric fold AF-M9SC19-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1236689","Candidatus Methanomethylophilus alvi Mx1201"]]},{"id":"NCBITaxon:1236968","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A5A7NBS5-F1-model_v4_TED01","TED novel fold AF-A0A5A7NBS5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1236968","Iodidimonas nitroreducens"]]},{"id":"NCBITaxon:1236974","l":"Paenibacillus sp. JCM 10914","na":1,"nb":1,"a":[["TED%3AAF-V9GB85-F1-model_v4_TED03","TED highly-symmetric fold AF-V9GB85-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1236974","Paenibacillus sp. JCM 10914"]]},{"id":"NCBITaxon:1238424","l":"Haloquadratum walsbyi J07HQW1","na":1,"nb":1,"a":[["TED%3AAF-U1PDD5-F1-model_v4_TED01","TED highly-symmetric fold AF-U1PDD5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1238424","Haloquadratum walsbyi J07HQW1"]]},{"id":"NCBITaxon:1240085","l":"Anaerovibrio sp. JC8","na":1,"nb":1,"a":[["TED%3AAF-A0A1X1Q430-F1-model_v4_TED02","TED novel fold AF-A0A1X1Q430-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1240085","Anaerovibrio sp. JC8"]]},{"id":"NCBITaxon:1241337","l":"Pedobacter nutrimenti","na":1,"nb":1,"a":[["TED%3AAF-A0A318UDW2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A318UDW2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1241337","Pedobacter nutrimenti"]]},{"id":"NCBITaxon:1241761","l":"Sphingomonas yantingensis","na":1,"nb":1,"a":[["TED%3AAF-A0A7W9AM50-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W9AM50-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1241761","Sphingomonas yantingensis"]]},{"id":"NCBITaxon:1242107","l":"Salmonella enterica subsp. enterica serovar Macclesfield str. S-1643","na":1,"nb":1,"a":[["TED%3AAF-A0A2C9NXK1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2C9NXK1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1242107","Salmonella enterica subsp. enterica serovar Macclesfield str. S-1643"]]},{"id":"NCBITaxon:1244108","l":"Jannaschia faecimaris","na":1,"nb":1,"a":[["TED%3AAF-A0A1H3KAR9-F1-model_v4_TED02","TED novel fold AF-A0A1H3KAR9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1244108","Jannaschia faecimaris"]]},{"id":"NCBITaxon:1244155","l":"Enterococcus faecium SD3B-2","na":1,"nb":1,"a":[["TED%3AAF-S4EFH8-F1-model_v4_TED01","TED highly-symmetric fold AF-S4EFH8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1244155","Enterococcus faecium SD3B-2"]]},{"id":"NCBITaxon:124430","l":"Phaeomonas parva","na":1,"nb":1,"a":[["TED%3AAF-A0A7S1U9F8-F1-model_v4_TED01","TED novel fold AF-A0A7S1U9F8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A124430","Phaeomonas parva"]]},{"id":"NCBITaxon:1245471","l":"Metapseudomonas resinovorans NBRC 106553","na":1,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_PvdO","Pyoverdine chromophore maturation oxidoreductase family"]],"b":[["NCBITaxon%3A1245471","Metapseudomonas resinovorans NBRC 106553"]]},{"id":"NCBITaxon:1245769","l":"Lachancea lanzarotensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0C7NC52-F1-model_v4_TED02","TED novel fold AF-A0A0C7NC52-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1245769","Lachancea lanzarotensis"]]},{"id":"NCBITaxon:1247510","l":"Verticiella sediminum","na":1,"nb":1,"a":[["TED%3AAF-A0A556AER9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A556AER9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1247510","Verticiella sediminum"]]},{"id":"NCBITaxon:1247546","l":"Pseudomonas hunanensis","na":1,"nb":1,"a":[["TED%3AAF-A0A2I0C4S2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I0C4S2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1247546","Pseudomonas hunanensis"]]},{"id":"NCBITaxon:1249553","l":"Bacterioplanes sanyensis","na":1,"nb":1,"a":[["TED%3AAF-A0A222FKK1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A222FKK1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1249553","Bacterioplanes sanyensis"]]},{"id":"NCBITaxon:1249627","l":"Imhoffiella purpurea","na":1,"nb":1,"a":[["TED%3AAF-W9W3R8-F1-model_v4_TED01","TED novel fold AF-W9W3R8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1249627","Imhoffiella purpurea"]]},{"id":"NCBITaxon:1250001","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A559RBM7-F1-model_v4_TED01","TED novel fold AF-A0A559RBM7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1250001","Olleya sp. Hel_I_94"]]},{"id":"NCBITaxon:1250029","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A397L855-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A397L855-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1250029","Flavobacteriaceae bacterium MAR_2010_72"]]},{"id":"NCBITaxon:1250050","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A559NSX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A559NSX2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1250050","Maribacter sp. MAR_2009_72"]]},{"id":"NCBITaxon:1250059","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1H4J5U1-F1-model_v4_TED03","TED novel fold AF-A0A1H4J5U1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1250059","Tenacibaculum sp. MAR_2009_124"]]},{"id":"NCBITaxon:1250544","l":"Sphaerosporella brunnea","na":1,"nb":1,"a":[["TED%3AAF-A0A5J5EXM5-F1-model_v4_TED01","TED novel fold AF-A0A5J5EXM5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1250544","Sphaerosporella brunnea"]]},{"id":"NCBITaxon:1254432","l":"Sorangium cellulosum So0157-2","na":1,"nb":1,"a":[["TED%3AAF-S4XT05-F1-model_v4_TED01","TED novel fold AF-S4XT05-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1254432","Sorangium cellulosum So0157-2"]]},{"id":"NCBITaxon:1255570","l":"Gulosibacter sp. 10","na":1,"nb":1,"a":[["TED%3AAF-A0A1R4FN97-F1-model_v4_TED01","TED novel fold AF-A0A1R4FN97-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1255570","Gulosibacter sp. 10"]]},{"id":"NCBITaxon:1255669","l":"Brevibacterium sp. Mu109","na":1,"nb":1,"a":[["TED%3AAF-A0A2H1J0C3-F1-model_v4_TED02","TED novel fold AF-A0A2H1J0C3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1255669","Brevibacterium sp. Mu109"]]},{"id":"NCBITaxon:1259231","l":"Cryobacterium sp. TMT1-19","na":1,"nb":1,"a":[["TED%3AAF-A0A4R8ZNV8-F1-model_v4_TED01","TED novel fold AF-A0A4R8ZNV8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1259231","Cryobacterium sp. TMT1-19"]]},{"id":"NCBITaxon:1260356","l":"Enterococcus faecalis 13-SD-W-01","na":1,"nb":1,"a":[["TED%3AAF-S4DDC6-F1-model_v4_TED02","TED highly-symmetric fold AF-S4DDC6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1260356","Enterococcus faecalis 13-SD-W-01"]]},{"id":"NCBITaxon:1260363","l":"Enterococcus faecalis 02-MB-BW-10","na":1,"nb":1,"a":[["TED%3AAF-S4CDW6-F1-model_v4_TED01","TED novel fold AF-S4CDW6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1260363","Enterococcus faecalis 02-MB-BW-10"]]},{"id":"NCBITaxon:1261403","l":"Mangrovibacterium diazotrophicum","na":1,"nb":1,"a":[["TED%3AAF-A0A419W901-F1-model_v4_TED02","TED novel fold AF-A0A419W901-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1261403","Mangrovibacterium diazotrophicum"]]},{"id":"NCBITaxon:1261629","l":"Pseudomonas sp. URMO17WK12:I6","na":1,"nb":1,"a":[["TED%3AAF-A0A2W7IV95-F1-model_v4_TED01","TED novel fold AF-A0A2W7IV95-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1261629","Pseudomonas sp. URMO17WK12:I6"]]},{"id":"NCBITaxon:1261630","l":"Pseudomonas sp. URIL14HWK12:I5","na":1,"nb":1,"a":[["TED%3AAF-A0A1W1Z4F4-F1-model_v4_TED01","TED novel fold AF-A0A1W1Z4F4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1261630","Pseudomonas sp. URIL14HWK12:I5"]]},{"id":"NCBITaxon:1262452","l":"Streptomyces sp. 769","na":1,"nb":1,"a":[["TED%3AAF-A0A0A8EFP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A8EFP7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262452","Streptomyces sp. 769"]]},{"id":"NCBITaxon:1262550","l":"Brevibacterium jeotgali","na":1,"nb":1,"a":[["TED%3AAF-A0A2H1L8Q0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H1L8Q0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262550","Brevibacterium jeotgali"]]},{"id":"NCBITaxon:1262583","l":"Tamaricihabitans halophyticus","na":1,"nb":1,"a":[["TED%3AAF-A0A4R2RDI5-F1-model_v4_TED01","TED novel fold AF-A0A4R2RDI5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262583","Tamaricihabitans halophyticus"]]},{"id":"NCBITaxon:1262686","l":"Acholeplasma sp. CAG:878","na":1,"nb":1,"a":[["TED%3AAF-R5HWA5-F1-model_v4_TED01","TED novel fold AF-R5HWA5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262686","Acholeplasma sp. CAG:878"]]},{"id":"NCBITaxon:1262688","l":"Acidaminococcus sp. CAG:917","na":1,"nb":1,"a":[["TED%3AAF-R7K8M9-F1-model_v4_TED01","TED highly-symmetric fold AF-R7K8M9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262688","Acidaminococcus sp. CAG:917"]]},{"id":"NCBITaxon:1262690","l":"Acinetobacter sp. CAG:196","na":1,"nb":1,"a":[["TED%3AAF-R5SCI3-F1-model_v4_TED02","TED novel fold AF-R5SCI3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262690","Acinetobacter sp. CAG:196"]]},{"id":"NCBITaxon:1262737","l":"Bacteroides sp. CAG:189","na":1,"nb":1,"a":[["TED%3AAF-R5JN61-F1-model_v4_TED02","TED novel fold AF-R5JN61-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262737","Bacteroides sp. CAG:189"]]},{"id":"NCBITaxon:1262742","l":"Bacteroides sp. CAG:545","na":1,"nb":1,"a":[["TED%3AAF-R5RUB0-F1-model_v4_TED07","TED highly-symmetric fold AF-R5RUB0-F1-model_v4_TED07"]],"b":[["NCBITaxon%3A1262742","Bacteroides sp. CAG:545"]]},{"id":"NCBITaxon:1262752","l":"Bacteroides sp. CAG:875","na":1,"nb":1,"a":[["TED%3AAF-R6ZV18-F1-model_v4_TED02","TED novel fold AF-R6ZV18-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262752","Bacteroides sp. CAG:875"]]},{"id":"NCBITaxon:1262759","l":"Brachyspira sp. CAG:484","na":1,"nb":1,"a":[["TED%3AAF-R5HKW8-F1-model_v4_TED01","TED novel fold AF-R5HKW8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262759","Brachyspira sp. CAG:484"]]},{"id":"NCBITaxon:1262773","l":"Clostridium sp. CAG:122","na":1,"nb":1,"a":[["TED%3AAF-R5S4D8-F1-model_v4_TED01","TED novel fold AF-R5S4D8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262773","Clostridium sp. CAG:122"]]},{"id":"NCBITaxon:1262776","l":"Clostridium sp. CAG:149","na":1,"nb":1,"a":[["TED%3AAF-R5M503-F1-model_v4_TED01","TED novel fold AF-R5M503-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262776","Clostridium sp. CAG:149"]]},{"id":"NCBITaxon:1262778","l":"Clostridium sp. CAG:169","na":1,"nb":1,"a":[["TED%3AAF-R6BDP7-F1-model_v4_TED01","TED highly-symmetric fold AF-R6BDP7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262778","Clostridium sp. CAG:169"]]},{"id":"NCBITaxon:1262781","l":"Clostridium sp. CAG:226","na":1,"nb":1,"a":[["TED%3AAF-R5B4L0-F1-model_v4_TED01","TED novel fold AF-R5B4L0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262781","Clostridium sp. CAG:226"]]},{"id":"NCBITaxon:1262783","l":"Clostridium sp. CAG:242","na":1,"nb":1,"a":[["TED%3AAF-R6D4A2-F1-model_v4_TED01","TED highly-symmetric fold AF-R6D4A2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262783","Clostridium sp. CAG:242"]]},{"id":"NCBITaxon:1262788","l":"Clostridium sp. CAG:269","na":1,"nb":1,"a":[["TED%3AAF-R7IYD9-F1-model_v4_TED01","TED novel fold AF-R7IYD9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262788","Clostridium sp. CAG:269"]]},{"id":"NCBITaxon:1262789","l":"Clostridium sp. CAG:273","na":1,"nb":1,"a":[["TED%3AAF-R7L6S0-F1-model_v4_TED01","TED novel fold AF-R7L6S0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262789","Clostridium sp. CAG:273"]]},{"id":"NCBITaxon:1262798","l":"Clostridium sp. CAG:352","na":1,"nb":1,"a":[["TED%3AAF-R6R399-F1-model_v4_TED01","TED novel fold AF-R6R399-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262798","Clostridium sp. CAG:352"]]},{"id":"NCBITaxon:1262801","l":"Clostridium sp. CAG:389","na":1,"nb":1,"a":[["TED%3AAF-R7LQW5-F1-model_v4_TED01","TED novel fold AF-R7LQW5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262801","Clostridium sp. CAG:389"]]},{"id":"NCBITaxon:1262806","l":"Clostridium sp. CAG:433","na":1,"nb":1,"a":[["TED%3AAF-R6Y4R9-F1-model_v4_TED01","TED novel fold AF-R6Y4R9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262806","Clostridium sp. CAG:433"]]},{"id":"NCBITaxon:1262807","l":"Clostridium sp. CAG:440","na":1,"nb":1,"a":[["TED%3AAF-R7GD66-F1-model_v4_TED01","TED highly-symmetric fold AF-R7GD66-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262807","Clostridium sp. CAG:440"]]},{"id":"NCBITaxon:1262809","l":"Clostridium sp. CAG:451","na":1,"nb":1,"a":[["TED%3AAF-R7KDM6-F1-model_v4_TED01","TED highly-symmetric fold AF-R7KDM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262809","Clostridium sp. CAG:451"]]},{"id":"NCBITaxon:1262815","l":"Clostridium sp. CAG:508","na":1,"nb":1,"a":[["TED%3AAF-R6RBM2-F1-model_v4_TED01","TED highly-symmetric fold AF-R6RBM2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262815","Clostridium sp. CAG:508"]]},{"id":"NCBITaxon:1262820","l":"Clostridium sp. CAG:567","na":1,"nb":1,"a":[["TED%3AAF-R7M9L5-F1-model_v4_TED01","TED novel fold AF-R7M9L5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262820","Clostridium sp. CAG:567"]]},{"id":"NCBITaxon:1262824","l":"Clostridium sp. CAG:58","na":1,"nb":1,"a":[["TED%3AAF-R6SSL9-F1-model_v4_TED01","TED highly-symmetric fold AF-R6SSL9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262824","Clostridium sp. CAG:58"]]},{"id":"NCBITaxon:1262825","l":"Clostridium sp. CAG:590","na":1,"nb":1,"a":[["TED%3AAF-R5ELB2-F1-model_v4_TED02","TED novel fold AF-R5ELB2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262825","Clostridium sp. CAG:590"]]},{"id":"NCBITaxon:1262829","l":"Clostridium sp. CAG:628","na":1,"nb":1,"a":[["TED%3AAF-R7MCF7-F1-model_v4_TED01","TED novel fold AF-R7MCF7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262829","Clostridium sp. CAG:628"]]},{"id":"NCBITaxon:1262832","l":"Clostridium sp. CAG:7","na":1,"nb":1,"a":[["TED%3AAF-R5IHW6-F1-model_v4_TED01","TED novel fold AF-R5IHW6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262832","Clostridium sp. CAG:7"]]},{"id":"NCBITaxon:1262834","l":"Clostridium sp. CAG:715","na":1,"nb":1,"a":[["TED%3AAF-R5DMB4-F1-model_v4_TED01","TED novel fold AF-R5DMB4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262834","Clostridium sp. CAG:715"]]},{"id":"NCBITaxon:1262840","l":"Clostridium sp. CAG:793","na":1,"nb":1,"a":[["TED%3AAF-R5N623-F1-model_v4_TED02","TED novel fold AF-R5N623-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262840","Clostridium sp. CAG:793"]]},{"id":"NCBITaxon:1262843","l":"Clostridium sp. CAG:813","na":1,"nb":1,"a":[["TED%3AAF-R7MGZ7-F1-model_v4_TED01","TED highly-symmetric fold AF-R7MGZ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262843","Clostridium sp. CAG:813"]]},{"id":"NCBITaxon:1262869","l":"Dialister sp. CAG:357","na":1,"nb":1,"a":[["TED%3AAF-R7CTH2-F1-model_v4_TED01","TED highly-symmetric fold AF-R7CTH2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262869","Dialister sp. CAG:357"]]},{"id":"NCBITaxon:1262874","l":"Eggerthella sp. CAG:1427","na":1,"nb":1,"a":[["TED%3AAF-R5FMM4-F1-model_v4_TED02","TED highly-symmetric fold AF-R5FMM4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262874","Eggerthella sp. CAG:1427"]]},{"id":"NCBITaxon:1262877","l":"Eggerthella sp. CAG:368","na":1,"nb":1,"a":[["TED%3AAF-R7BR43-F1-model_v4_TED01","TED novel fold AF-R7BR43-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262877","Eggerthella sp. CAG:368"]]},{"id":"NCBITaxon:1262881","l":"Eubacterium sp. CAG:161","na":1,"nb":1,"a":[["TED%3AAF-R5LAA8-F1-model_v4_TED01","TED highly-symmetric fold AF-R5LAA8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262881","Eubacterium sp. CAG:161"]]},{"id":"NCBITaxon:1262887","l":"Eubacterium sp. CAG:252","na":1,"nb":1,"a":[["TED%3AAF-R6KC60-F1-model_v4_TED04","TED highly-symmetric fold AF-R6KC60-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1262887","Eubacterium sp. CAG:252"]]},{"id":"NCBITaxon:1262888","l":"Eubacterium sp. CAG:274","na":1,"nb":1,"a":[["TED%3AAF-R6PP10-F1-model_v4_TED01","TED highly-symmetric fold AF-R6PP10-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262888","Eubacterium sp. CAG:274"]]},{"id":"NCBITaxon:1262903","l":"Methanoculleus sp. CAG:1088","na":1,"nb":1,"a":[["TED%3AAF-R7Q245-F1-model_v4_TED02","TED novel fold AF-R7Q245-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262903","Methanoculleus sp. CAG:1088"]]},{"id":"NCBITaxon:1262904","l":"Mycoplasma sp. CAG:472","na":1,"nb":1,"a":[["TED%3AAF-R7HJ97-F1-model_v4_TED03","TED novel fold AF-R7HJ97-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1262904","Mycoplasma sp. CAG:472"]]},{"id":"NCBITaxon:1262907","l":"Mycoplasma sp. CAG:877","na":1,"nb":1,"a":[["TED%3AAF-R5LQW6-F1-model_v4_TED01","TED highly-symmetric fold AF-R5LQW6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262907","Mycoplasma sp. CAG:877"]]},{"id":"NCBITaxon:1262915","l":"Phascolarctobacterium sp. CAG:266","na":1,"nb":1,"a":[["TED%3AAF-R6IBR4-F1-model_v4_TED01","TED highly-symmetric fold AF-R6IBR4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262915","Phascolarctobacterium sp. CAG:266"]]},{"id":"NCBITaxon:1262917","l":"Prevotella sp. CAG:1031","na":1,"nb":1,"a":[["TED%3AAF-R5APF1-F1-model_v4_TED01","TED highly-symmetric fold AF-R5APF1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262917","Prevotella sp. CAG:1031"]]},{"id":"NCBITaxon:1262920","l":"Prevotella sp. CAG:1124","na":1,"nb":1,"a":[["TED%3AAF-R5KZ47-F1-model_v4_TED01","TED novel fold AF-R5KZ47-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262920","Prevotella sp. CAG:1124"]]},{"id":"NCBITaxon:1262923","l":"Prevotella sp. CAG:255","na":1,"nb":1,"a":[["TED%3AAF-R5CNK9-F1-model_v4_TED03","TED novel fold AF-R5CNK9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1262923","Prevotella sp. CAG:255"]]},{"id":"NCBITaxon:1262924","l":"Prevotella sp. CAG:279","na":1,"nb":1,"a":[["TED%3AAF-R7HNB1-F1-model_v4_TED02","TED novel fold AF-R7HNB1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262924","Prevotella sp. CAG:279"]]},{"id":"NCBITaxon:1262936","l":"Prevotella sp. CAG:873","na":1,"nb":1,"a":[["TED%3AAF-R7J213-F1-model_v4_TED02","TED highly-symmetric fold AF-R7J213-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262936","Prevotella sp. CAG:873"]]},{"id":"NCBITaxon:1262940","l":"Roseburia sp. CAG:100","na":1,"nb":1,"a":[["TED%3AAF-R7R539-F1-model_v4_TED03","TED highly-symmetric fold AF-R7R539-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1262940","Roseburia sp. CAG:100"]]},{"id":"NCBITaxon:1262944","l":"Roseburia sp. CAG:303","na":1,"nb":1,"a":[["TED%3AAF-R7IMP6-F1-model_v4_TED03","TED highly-symmetric fold AF-R7IMP6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1262944","Roseburia sp. CAG:303"]]},{"id":"NCBITaxon:1262945","l":"Roseburia sp. CAG:309","na":1,"nb":1,"a":[["TED%3AAF-R6YF90-F1-model_v4_TED02","TED highly-symmetric fold AF-R6YF90-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262945","Roseburia sp. CAG:309"]]},{"id":"NCBITaxon:1262946","l":"Roseburia sp. CAG:380","na":1,"nb":1,"a":[["TED%3AAF-R6VHC4-F1-model_v4_TED01","TED novel fold AF-R6VHC4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262946","Roseburia sp. CAG:380"]]},{"id":"NCBITaxon:1262954","l":"Ruminococcus sp. CAG:330","na":1,"nb":1,"a":[["TED%3AAF-R7F9L4-F1-model_v4_TED01","TED novel fold AF-R7F9L4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262954","Ruminococcus sp. CAG:330"]]},{"id":"NCBITaxon:1262957","l":"Ruminococcus sp. CAG:382","na":1,"nb":1,"a":[["TED%3AAF-R6W5D9-F1-model_v4_TED01","TED highly-symmetric fold AF-R6W5D9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262957","Ruminococcus sp. CAG:382"]]},{"id":"NCBITaxon:1262961","l":"Ruminococcus sp. CAG:563","na":1,"nb":1,"a":[["TED%3AAF-R6ELH5-F1-model_v4_TED01","TED highly-symmetric fold AF-R6ELH5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262961","Ruminococcus sp. CAG:563"]]},{"id":"NCBITaxon:1262969","l":"Staphylococcus sp. CAG:324","na":1,"nb":1,"a":[["TED%3AAF-R6TNJ6-F1-model_v4_TED01","TED novel fold AF-R6TNJ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262969","Staphylococcus sp. CAG:324"]]},{"id":"NCBITaxon:1262977","l":"Sutterella sp. CAG:521","na":1,"nb":1,"a":[["TED%3AAF-R7KI60-F1-model_v4_TED02","TED novel fold AF-R7KI60-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262977","Sutterella sp. CAG:521"]]},{"id":"NCBITaxon:1262981","l":"Erysipelotrichaceae bacterium CAG:64","na":1,"nb":1,"a":[["TED%3AAF-R6UR66-F1-model_v4_TED01","TED highly-symmetric fold AF-R6UR66-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262981","Erysipelotrichaceae bacterium CAG:64"]]},{"id":"NCBITaxon:1262988","l":"Firmicutes bacterium CAG:95","na":1,"nb":1,"a":[["TED%3AAF-R7N5E0-F1-model_v4_TED02","TED highly-symmetric fold AF-R7N5E0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262988","Firmicutes bacterium CAG:95"]]},{"id":"NCBITaxon:1262991","l":"Firmicutes bacterium CAG:882","na":1,"nb":1,"a":[["TED%3AAF-R7BH83-F1-model_v4_TED01","TED novel fold AF-R7BH83-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262991","Firmicutes bacterium CAG:882"]]},{"id":"NCBITaxon:1262999","l":"Firmicutes bacterium CAG:103","na":1,"nb":1,"a":[["TED%3AAF-R5B7E2-F1-model_v4_TED01","TED novel fold AF-R5B7E2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262999","Firmicutes bacterium CAG:103"]]},{"id":"NCBITaxon:1263000","l":"Firmicutes bacterium CAG:110","na":1,"nb":1,"a":[["TED%3AAF-R5EWT9-F1-model_v4_TED01","TED novel fold AF-R5EWT9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1263000","Firmicutes bacterium CAG:110"]]},{"id":"NCBITaxon:1263009","l":"Firmicutes bacterium CAG:212","na":1,"nb":1,"a":[["TED%3AAF-R5XXC1-F1-model_v4_TED01","TED novel fold AF-R5XXC1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1263009","Firmicutes bacterium CAG:212"]]},{"id":"NCBITaxon:1263018","l":"Firmicutes bacterium CAG:321","na":1,"nb":1,"a":[["TED%3AAF-R7HIA0-F1-model_v4_TED01","TED novel fold AF-R7HIA0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1263018","Firmicutes bacterium CAG:321"]]},{"id":"NCBITaxon:1263020","l":"Firmicutes bacterium CAG:345","na":1,"nb":1,"a":[["TED%3AAF-R6XWM6-F1-model_v4_TED01","TED highly-symmetric fold AF-R6XWM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1263020","Firmicutes bacterium CAG:345"]]},{"id":"NCBITaxon:1263022","l":"Firmicutes bacterium CAG:424","na":1,"nb":1,"a":[["TED%3AAF-R6RDG6-F1-model_v4_TED02","TED highly-symmetric fold AF-R6RDG6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1263022","Firmicutes bacterium CAG:424"]]},{"id":"NCBITaxon:1263025","l":"Firmicutes bacterium CAG:466","na":1,"nb":1,"a":[["TED%3AAF-R6PUK4-F1-model_v4_TED01","TED novel fold AF-R6PUK4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1263025","Firmicutes bacterium CAG:466"]]},{"id":"NCBITaxon:1263026","l":"Firmicutes bacterium CAG:475","na":1,"nb":1,"a":[["TED%3AAF-R7BUV3-F1-model_v4_TED02","TED novel fold AF-R7BUV3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1263026","Firmicutes bacterium CAG:475"]]},{"id":"NCBITaxon:1263044","l":"Bacteroides faecis CAG:32","na":1,"nb":1,"a":[["TED%3AAF-R6V0V1-F1-model_v4_TED04","TED highly-symmetric fold AF-R6V0V1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1263044","Bacteroides faecis CAG:32"]]},{"id":"NCBITaxon:1263052","l":"","na":1,"nb":1,"a":[["TED%3AAF-R5VT61-F1-model_v4_TED01","TED highly-symmetric fold AF-R5VT61-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1263052","Phocaeicola plebeius CAG:211"]]},{"id":"NCBITaxon:1263054","l":"Bacteroides thetaiotaomicron CAG:40","na":1,"nb":1,"a":[["TED%3AAF-R7KRD3-F1-model_v4_TED01","TED novel fold AF-R7KRD3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1263054","Bacteroides thetaiotaomicron CAG:40"]]},{"id":"NCBITaxon:1263055","l":"Bacteroides uniformis CAG:3","na":1,"nb":1,"a":[["TED%3AAF-R7ER82-F1-model_v4_TED04","TED novel fold AF-R7ER82-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1263055","Bacteroides uniformis CAG:3"]]},{"id":"NCBITaxon:1263071","l":"Coprococcus eutactus CAG:665","na":1,"nb":1,"a":[["TED%3AAF-R5VPN3-F1-model_v4_TED01","TED highly-symmetric fold AF-R5VPN3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1263071","Coprococcus eutactus CAG:665"]]},{"id":"NCBITaxon:1263088","l":"Methanobrevibacter smithii CAG:186","na":1,"nb":1,"a":[["TED%3AAF-R7PRU9-F1-model_v4_TED01","TED highly-symmetric fold AF-R7PRU9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1263088","Methanobrevibacter smithii CAG:186"]]},{"id":"NCBITaxon:1263095","l":"Paraprevotella clara CAG:116","na":1,"nb":1,"a":[["TED%3AAF-R5NYH7-F1-model_v4_TED01","TED novel fold AF-R5NYH7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1263095","Paraprevotella clara CAG:116"]]},{"id":"NCBITaxon:1263636","l":"Microbacterium kyungheense","na":1,"nb":1,"a":[["TED%3AAF-A0A543F149-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A543F149-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1263636","Microbacterium kyungheense"]]},{"id":"NCBITaxon:1263868","l":"Rhodopirellula europaea SH398","na":1,"nb":1,"a":[["TED%3AAF-M5SBP6-F1-model_v4_TED02","TED novel fold AF-M5SBP6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1263868","Rhodopirellula europaea SH398"]]},{"id":"NCBITaxon:1266600","l":"Glaciihabitans tibetensis","na":1,"nb":1,"a":[["TED%3AAF-A0A2T0VGK9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T0VGK9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1266600","Glaciihabitans tibetensis"]]},{"id":"NCBITaxon:1266744","l":"Talaromyces purpureogenus","na":1,"nb":1,"a":[["Pfam%3APF10503","Esterase PHB depolymerase"]],"b":[["NCBITaxon%3A1266744","Talaromyces purpureogenus"]]},{"id":"NCBITaxon:1267021","l":"Frischella perrara","na":1,"nb":1,"a":[["TED%3AAF-A0A0A7S1S1-F1-model_v4_TED05","TED novel fold AF-A0A0A7S1S1-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1267021","Frischella perrara"]]},{"id":"NCBITaxon:1267768","l":"Brevirhabdus pacifica","na":1,"nb":1,"a":[["TED%3AAF-A0A2M9DE94-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M9DE94-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1267768","Brevirhabdus pacifica"]]},{"id":"NCBITaxon:1273125","l":"Rhodococcus rhodnii LMG 5362","na":1,"nb":1,"a":[["TED%3AAF-R7WN57-F1-model_v4_TED01","TED highly-symmetric fold AF-R7WN57-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1273125","Rhodococcus rhodnii LMG 5362"]]},{"id":"NCBITaxon:1273541","l":"Pyrodictium delaneyi","na":1,"nb":1,"a":[["TED%3AAF-A0A211YRF7-F1-model_v4_TED01","TED novel fold AF-A0A211YRF7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1273541","Pyrodictium delaneyi"]]},{"id":"NCBITaxon:1274631","l":"Bradyrhizobium icense","na":1,"nb":1,"a":[["TED%3AAF-A0A533IQI7-F1-model_v4_TED02","TED novel fold AF-A0A533IQI7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1274631","Bradyrhizobium icense"]]},{"id":"NCBITaxon:1278078","l":"Rhodococcus triatomae BKS 15-14","na":1,"nb":1,"a":[["TED%3AAF-M2WTH6-F1-model_v4_TED01","TED highly-symmetric fold AF-M2WTH6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1278078","Rhodococcus triatomae BKS 15-14"]]},{"id":"NCBITaxon:1280637","l":"Saccharothrix carnea","na":1,"nb":1,"a":[["TED%3AAF-A0A2P8IFT9-F1-model_v4_TED01","TED novel fold AF-A0A2P8IFT9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1280637","Saccharothrix carnea"]]},{"id":"NCBITaxon:1280837","l":"Meira miltonrushii","na":1,"nb":1,"a":[["TED%3AAF-A0A316VB52-F1-model_v4_TED01","TED novel fold AF-A0A316VB52-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1280837","Meira miltonrushii"]]},{"id":"NCBITaxon:1280846","l":"Aliiruegeria haliotis","na":1,"nb":1,"a":[["TED%3AAF-A0A2T0RUV5-F1-model_v4_TED02","TED novel fold AF-A0A2T0RUV5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1280846","Aliiruegeria haliotis"]]},{"id":"NCBITaxon:1280944","l":"Hyphomonas sp. CY54-11-8","na":1,"nb":1,"a":[["TED%3AAF-A0A059DV47-F1-model_v4_TED03","TED novel fold AF-A0A059DV47-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1280944","Hyphomonas sp. CY54-11-8"]]},{"id":"NCBITaxon:1280946","l":"Hyphomonas beringensis","na":1,"nb":1,"a":[["TED%3AAF-A0A062TWQ9-F1-model_v4_TED01","TED novel fold AF-A0A062TWQ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1280946","Hyphomonas beringensis"]]},{"id":"NCBITaxon:1282361","l":"Asticcacaulis sp. AC402","na":1,"nb":1,"a":[["TED%3AAF-V4NKK3-F1-model_v4_TED01","TED highly-symmetric fold AF-V4NKK3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1282361","Asticcacaulis sp. AC402"]]},{"id":"NCBITaxon:1283331","l":"Azotobacter vinelandii CA6","na":1,"nb":1,"a":[["TED%3AAF-M9YNZ0-F1-model_v4_TED02","TED novel fold AF-M9YNZ0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1283331","Azotobacter vinelandii CA6"]]},{"id":"NCBITaxon:1283841","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A084QGW0-F1-model_v4_TED01","TED novel fold AF-A0A084QGW0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1283841","Stachybotrys chlorohalonatus IBT 40285"]]},{"id":"NCBITaxon:128403","l":"Scytonema hofmannii PCC 7110","na":1,"nb":1,"a":[["TED%3AAF-A0A139X3P3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A139X3P3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A128403","Scytonema hofmannii PCC 7110"]]},{"id":"NCBITaxon:1284686","l":"Anaerococcus lactolyticus S7-1-13","na":1,"nb":1,"a":[["TED%3AAF-A0A095X2X0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A095X2X0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1284686","Anaerococcus lactolyticus S7-1-13"]]},{"id":"NCBITaxon:1284708","l":"Tissierellia bacterium S7-1-4","na":1,"nb":1,"a":[["TED%3AAF-A0A095XBA2-F1-model_v4_TED03","TED novel fold AF-A0A095XBA2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1284708","Tissierellia bacterium S7-1-4"]]},{"id":"NCBITaxon:1285901","l":"Tessaracoccus defluvii","na":1,"nb":1,"a":[["TED%3AAF-A0A7H0H364-F1-model_v4_TED01","TED novel fold AF-A0A7H0H364-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1285901","Tessaracoccus defluvii"]]},{"id":"NCBITaxon:1285928","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G6TFZ5-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1G6TFZ5-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1285928","Niabella drilacis"]]},{"id":"NCBITaxon:1286186","l":"Gluconacetobacter aggeris","na":1,"nb":1,"a":[["TED%3AAF-A0A7W4IWG2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W4IWG2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1286186","Gluconacetobacter aggeris"]]},{"id":"NCBITaxon:1287089","l":"Mesorhizobium sp. L103C131B0","na":1,"nb":1,"a":[["TED%3AAF-X6JGH5-F1-model_v4_TED02","TED novel fold AF-X6JGH5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1287089","Mesorhizobium sp. L103C131B0"]]},{"id":"NCBITaxon:1287105","l":"Mesorhizobium sp. L2C066B000","na":1,"nb":1,"a":[["TED%3AAF-X6I5M7-F1-model_v4_TED04","TED highly-symmetric fold AF-X6I5M7-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1287105","Mesorhizobium sp. L2C066B000"]]},{"id":"NCBITaxon:1287117","l":"Mesorhizobium sp. L2C085B000","na":1,"nb":1,"a":[["TED%3AAF-X6GE96-F1-model_v4_TED01","TED novel fold AF-X6GE96-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1287117","Mesorhizobium sp. L2C085B000"]]},{"id":"NCBITaxon:1287182","l":"Mesorhizobium sp. L48C026A00","na":1,"nb":1,"a":[["TED%3AAF-X6FXQ1-F1-model_v4_TED03","TED novel fold AF-X6FXQ1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1287182","Mesorhizobium sp. L48C026A00"]]},{"id":"NCBITaxon:1287240","l":"Mesorhizobium sp. LNHC229A00","na":1,"nb":1,"a":[["TED%3AAF-X6F6C2-F1-model_v4_TED01","TED highly-symmetric fold AF-X6F6C2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1287240","Mesorhizobium sp. LNHC229A00"]]},{"id":"NCBITaxon:1287285","l":"Mesorhizobium sp. LSHC412B00","na":1,"nb":1,"a":[["TED%3AAF-X5X577-F1-model_v4_TED01","TED highly-symmetric fold AF-X5X577-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1287285","Mesorhizobium sp. LSHC412B00"]]},{"id":"NCBITaxon:1287322","l":"Mesorhizobium sp. LSJC265A00","na":1,"nb":1,"a":[["TED%3AAF-X5RW13-F1-model_v4_TED01","TED novel fold AF-X5RW13-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1287322","Mesorhizobium sp. LSJC265A00"]]},{"id":"NCBITaxon:1288970","l":"","na":1,"nb":1,"a":[["TED%3AAF-W6KH56-F1-model_v4_TED01","TED novel fold AF-W6KH56-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1288970","Magnetospira sp. QH-2"]]},{"id":"NCBITaxon:1294296","l":"Luteibaculum oceani","na":1,"nb":1,"a":[["TED%3AAF-A0A5C6V805-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A5C6V805-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1294296","Luteibaculum oceani"]]},{"id":"NCBITaxon:1296344","l":"Merismopedia glauca CCAP 1448/3","na":1,"nb":1,"a":[["TED%3AAF-A0A2T1C1C4-F1-model_v4_TED02","TED novel fold AF-A0A2T1C1C4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1296344","Merismopedia glauca CCAP 1448/3"]]},{"id":"NCBITaxon:1297424","l":"Anaerobacterium chartisolvens","na":1,"nb":1,"a":[["TED%3AAF-A0A369ARR1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A369ARR1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1297424","Anaerobacterium chartisolvens"]]},{"id":"NCBITaxon:1297570","l":"Mesorhizobium sp. STM 4661","na":1,"nb":1,"a":[["TED%3AAF-M5FA19-F1-model_v4_TED01","TED novel fold AF-M5FA19-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1297570","Mesorhizobium sp. STM 4661"]]},{"id":"NCBITaxon:1298608","l":"Psychrobacter sp. JCM 18900","na":1,"nb":1,"a":[["TED%3AAF-X0RKN6-F1-model_v4_TED01","TED highly-symmetric fold AF-X0RKN6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1298608","Psychrobacter sp. JCM 18900"]]},{"id":"NCBITaxon:1298856","l":"Sphingomonas sp. URHD0007","na":1,"nb":1,"a":[["TED%3AAF-A0A2U1FWJ9-F1-model_v4_TED03","TED novel fold AF-A0A2U1FWJ9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1298856","Sphingomonas sp. URHD0007"]]},{"id":"NCBITaxon:1299328","l":"Mycobacterium kansasii 824","na":1,"nb":1,"a":[["TED%3AAF-X7YBI6-F1-model_v4_TED04","TED novel fold AF-X7YBI6-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1299328","Mycobacterium kansasii 824"]]},{"id":"NCBITaxon:1299998","l":"Tractidigestivibacter scatoligenes","na":1,"nb":1,"a":[["TED%3AAF-A0A100YXB1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A100YXB1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1299998","Tractidigestivibacter scatoligenes"]]},{"id":"NCBITaxon:1300150","l":"Enterococcus mundtii QU 25","na":1,"nb":1,"a":[["TED%3AAF-V5XLP0-F1-model_v4_TED02","TED highly-symmetric fold AF-V5XLP0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1300150","Enterococcus mundtii QU 25"]]},{"id":"NCBITaxon:1300915","l":"Anaeromyxobacter sp. PSR-1","na":1,"nb":1,"a":[["TED%3AAF-A0A0D6QKZ5-F1-model_v4_TED01","TED novel fold AF-A0A0D6QKZ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1300915","Anaeromyxobacter sp. PSR-1"]]},{"id":"NCBITaxon:1301086","l":"Bacillus sp. GeD10","na":1,"nb":1,"a":[["TED%3AAF-N1LKH2-F1-model_v4_TED01","TED novel fold AF-N1LKH2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1301086","Bacillus sp. GeD10"]]},{"id":"NCBITaxon:1301915","l":"Methanocaldococcus bathoardescens","na":1,"nb":1,"a":[["TED%3AAF-A0A076LC90-F1-model_v4_TED01","TED novel fold AF-A0A076LC90-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1301915","Methanocaldococcus bathoardescens"]]},{"id":"NCBITaxon:1302151","l":"Caloranaerobacter sp. TR13","na":1,"nb":1,"a":[["TED%3AAF-A0A0P8UY73-F1-model_v4_TED01","TED novel fold AF-A0A0P8UY73-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1302151","Caloranaerobacter sp. TR13"]]},{"id":"NCBITaxon:1303590","l":"Bombilactobacillus bombi","na":1,"nb":1,"a":[["TED%3AAF-A0A417Z5N1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A417Z5N1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1303590","Bombilactobacillus bombi"]]},{"id":"NCBITaxon:1304833","l":"Hassallia byssoidea VB512170","na":1,"nb":1,"a":[["TED%3AAF-A0A846HDF7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A846HDF7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1304833","Hassallia byssoidea VB512170"]]},{"id":"NCBITaxon:1304866","l":"Clostridium sp. ASBs410","na":1,"nb":1,"a":[["TED%3AAF-A0A7U9JZL6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7U9JZL6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1304866","Clostridium sp. ASBs410"]]},{"id":"NCBITaxon:1304873","l":"Pasteurella multocida subsp. multocida OH4807","na":1,"nb":1,"a":[["TED%3AAF-A0A0E3ZRL7-F1-model_v4_TED01","TED novel fold AF-A0A0E3ZRL7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1304873","Pasteurella multocida subsp. multocida OH4807"]]},{"id":"NCBITaxon:1304900","l":"Alteromonadaceae bacterium 2052S.S.stab0a.01","na":1,"nb":1,"a":[["TED%3AAF-A0A495DIH9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A495DIH9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1304900","Alteromonadaceae bacterium 2052S.S.stab0a.01"]]},{"id":"NCBITaxon:1304903","l":"Alteromonadaceae bacterium Bs31","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y6C7G2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y6C7G2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1304903","Alteromonadaceae bacterium Bs31"]]},{"id":"NCBITaxon:1306401","l":"Mycobacteroides abscessus subsp. bolletii CRM-0020","na":1,"nb":1,"a":[["TED%3AAF-A0A829HQB8-F1-model_v4_TED02","TED novel fold AF-A0A829HQB8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1306401","Mycobacteroides abscessus subsp. bolletii CRM-0020"]]},{"id":"NCBITaxon:1306861","l":"Colletotrichum tanaceti","na":1,"nb":1,"a":[["TED%3AAF-A0A4U6X365-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4U6X365-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1306861","Colletotrichum tanaceti"]]},{"id":"NCBITaxon:1306947","l":"candidate division TM6 bacterium JCVI TM6SC1","na":1,"nb":1,"a":[["TED%3AAF-A0A0D2K579-F1-model_v4_TED02","TED novel fold AF-A0A0D2K579-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1306947","candidate division TM6 bacterium JCVI TM6SC1"]]},{"id":"NCBITaxon:1307761","l":"Salinispira pacifica","na":1,"nb":1,"a":[["TED%3AAF-V5WIK3-F1-model_v4_TED01","TED highly-symmetric fold AF-V5WIK3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1307761","Salinispira pacifica"]]},{"id":"NCBITaxon:1307853","l":"Mesorhizobium neociceri","na":1,"nb":1,"a":[["TED%3AAF-A0A838B3L0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A838B3L0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1307853","Mesorhizobium neociceri"]]},{"id":"NCBITaxon:1312072","l":"Polaribacter sp. SA4-12","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y0MTL7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Y0MTL7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1312072","Polaribacter sp. SA4-12"]]},{"id":"NCBITaxon:1312363","l":"Roseovarius litorisediminis","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y5S2P8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y5S2P8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1312363","Roseovarius litorisediminis"]]},{"id":"NCBITaxon:1315974","l":"Sphingobium sp. TKS","na":1,"nb":1,"a":[["TED%3AAF-A0A126RV65-F1-model_v4_TED02","TED novel fold AF-A0A126RV65-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1315974","Sphingobium sp. TKS"]]},{"id":"NCBITaxon:1316194","l":"Penicillium subrubescens","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q5U3E9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q5U3E9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1316194","Penicillium subrubescens"]]},{"id":"NCBITaxon:1316588","l":"Fusobacterium nucleatum CTI-7","na":1,"nb":1,"a":[["TED%3AAF-A0A829KSD3-F1-model_v4_TED03","TED novel fold AF-A0A829KSD3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1316588","Fusobacterium nucleatum CTI-7"]]},{"id":"NCBITaxon:1316803","l":"Micromonospora taraxaci","na":1,"nb":1,"a":[["TED%3AAF-A0A561W8A9-F1-model_v4_TED01","TED novel fold AF-A0A561W8A9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1316803","Micromonospora taraxaci"]]},{"id":"NCBITaxon:1317064","l":"","na":1,"nb":1,"a":[["TED%3AAF-W2ZIJ1-F1-model_v4_TED03","TED highly-symmetric fold AF-W2ZIJ1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1317064","Phytophthora nicotianae P10297"]]},{"id":"NCBITaxon:1317066","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A080ZSM0-F1-model_v4_TED01","TED novel fold AF-A0A080ZSM0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1317066","Phytophthora nicotianae P1976"]]},{"id":"NCBITaxon:1317111","l":"Phaeobacter sp. 22II1-1F12B","na":1,"nb":1,"a":[["TED%3AAF-A0A254QQW0-F1-model_v4_TED05","TED novel fold AF-A0A254QQW0-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1317111","Phaeobacter sp. 22II1-1F12B"]]},{"id":"NCBITaxon:1321778","l":"Clostridiales bacterium oral taxon 876 str. F0540","na":1,"nb":1,"a":[["TED%3AAF-U2DBJ5-F1-model_v4_TED02","TED highly-symmetric fold AF-U2DBJ5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1321778","Clostridiales bacterium oral taxon 876 str. F0540"]]},{"id":"NCBITaxon:1321786","l":"Selenomonas sp. oral taxon 892 str. F0426","na":1,"nb":1,"a":[["TED%3AAF-U2JV27-F1-model_v4_TED02","TED highly-symmetric fold AF-U2JV27-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1321786","Selenomonas sp. oral taxon 892 str. F0426"]]},{"id":"NCBITaxon:1321820","l":"Gemella bergeri ATCC 700627","na":1,"nb":1,"a":[["TED%3AAF-U2QQY0-F1-model_v4_TED02","TED highly-symmetric fold AF-U2QQY0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1321820","Gemella bergeri ATCC 700627"]]},{"id":"NCBITaxon:1323745","l":"Arsukibacterium tuosuense","na":1,"nb":1,"a":[["TED%3AAF-A0A285JDX1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A285JDX1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1323745","Arsukibacterium tuosuense"]]},{"id":"NCBITaxon:13243","l":"Rarobacter faecitabidus","na":1,"nb":1,"a":[["TED%3AAF-A0A542ZUH8-F1-model_v4_TED03","TED novel fold AF-A0A542ZUH8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A13243","Rarobacter faecitabidus"]]},{"id":"NCBITaxon:1324314","l":"Paenibacillus selenitireducens","na":1,"nb":1,"a":[["TED%3AAF-A0A1T2XFE4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1T2XFE4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1324314","Paenibacillus selenitireducens"]]},{"id":"NCBITaxon:1324350","l":"Acinetobacter equi","na":1,"nb":1,"a":[["TED%3AAF-A0A0N9WF70-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0N9WF70-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1324350","Acinetobacter equi"]]},{"id":"NCBITaxon:1324935","l":"Limisphaera ngatamarikiensis","na":1,"nb":1,"a":[["TED%3AAF-A0A6M1RI37-F1-model_v4_TED01","TED novel fold AF-A0A6M1RI37-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1324935","Limisphaera ngatamarikiensis"]]},{"id":"NCBITaxon:1325107","l":"Bradyrhizobium zhanjiangense","na":1,"nb":1,"a":[["TED%3AAF-A0A4V1KWK5-F1-model_v4_TED01","TED novel fold AF-A0A4V1KWK5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1325107","Bradyrhizobium zhanjiangense"]]},{"id":"NCBITaxon:1325120","l":"Bradyrhizobium sp. CCBAU 53421","na":1,"nb":1,"a":[["TED%3AAF-A0A7S7TT02-F1-model_v4_TED01","TED novel fold AF-A0A7S7TT02-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1325120","Bradyrhizobium sp. CCBAU 53421"]]},{"id":"NCBITaxon:1325130","l":"Helicobacter fennelliae MRY12-0050","na":1,"nb":1,"a":[["TED%3AAF-T1DVF5-F1-model_v4_TED01","TED highly-symmetric fold AF-T1DVF5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1325130","Helicobacter fennelliae MRY12-0050"]]},{"id":"NCBITaxon:1325733","l":"Fusarium floridanum","na":1,"nb":1,"a":[["TED%3AAF-A0A428P9I3-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A428P9I3-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1325733","Fusarium floridanum"]]},{"id":"NCBITaxon:1325734","l":"Fusarium duplospermum","na":1,"nb":1,"a":[["TED%3AAF-A0A428QAC0-F1-model_v4_TED01","TED novel fold AF-A0A428QAC0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1325734","Fusarium duplospermum"]]},{"id":"NCBITaxon:1326980","l":"Candidatus Aramenus sulfurataquae","na":1,"nb":1,"a":[["TED%3AAF-W7KV71-F1-model_v4_TED02","TED novel fold AF-W7KV71-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1326980","Candidatus Aramenus sulfurataquae"]]},{"id":"NCBITaxon:1327752","l":"Idiomarina aquatica","na":1,"nb":1,"a":[["TED%3AAF-A0A4R6P1E4-F1-model_v4_TED03","TED novel fold AF-A0A4R6P1E4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1327752","Idiomarina aquatica"]]},{"id":"NCBITaxon:13290","l":"Tilletia caries","na":1,"nb":1,"a":[["TED%3AAF-A0A177V7I0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A177V7I0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A13290","Tilletia caries"]]},{"id":"NCBITaxon:1329640","l":"Alkalispirochaeta odontotermitis","na":1,"nb":1,"a":[["TED%3AAF-A0A0A0DL64-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0A0DL64-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1329640","Alkalispirochaeta odontotermitis"]]},{"id":"NCBITaxon:1330035","l":"Osedax symbiont Rs2","na":1,"nb":1,"a":[["TED%3AAF-S6HJ22-F1-model_v4_TED01","TED novel fold AF-S6HJ22-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1330035","Osedax symbiont Rs2"]]},{"id":"NCBITaxon:1332069","l":"Pantoea sp. AS-PWVM4","na":1,"nb":1,"a":[["TED%3AAF-A0A7U9NU73-F1-model_v4_TED01","TED novel fold AF-A0A7U9NU73-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1332069","Pantoea sp. AS-PWVM4"]]},{"id":"NCBITaxon:1333523","l":"Salinarchaeum sp. Harcht-Bsk1","na":1,"nb":1,"a":[["TED%3AAF-R4VXQ2-F1-model_v4_TED01","TED highly-symmetric fold AF-R4VXQ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1333523","Salinarchaeum sp. Harcht-Bsk1"]]},{"id":"NCBITaxon:1333662","l":"Polaribacter atrinae","na":1,"nb":1,"a":[["TED%3AAF-A0A176TCF4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A176TCF4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1333662","Polaribacter atrinae"]]},{"id":"NCBITaxon:133412","l":"Smittium culicis","na":1,"nb":1,"a":[["TED%3AAF-A0A1R1XYA9-F1-model_v4_TED02","TED novel fold AF-A0A1R1XYA9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A133412","Smittium culicis"]]},{"id":"NCBITaxon:1335322","l":"","na":1,"nb":1,"a":[["TED%3AAF-X7VB87-F1-model_v4_TED03","TED novel fold AF-X7VB87-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1335322","Mycobacterium sp. MAC_080597_8934"]]},{"id":"NCBITaxon:1336794","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1D7XZK9-F1-model_v4_TED01","TED novel fold AF-A0A1D7XZK9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1336794","Formosa sp. Hel1_33_131"]]},{"id":"NCBITaxon:1336795","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1D7XRD8-F1-model_v4_TED03","TED novel fold AF-A0A1D7XRD8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1336795","Formosa sp. Hel3_A1_48"]]},{"id":"NCBITaxon:1338009","l":"Sphingobacterium sp. IITKGP-BTPF85","na":1,"nb":1,"a":[["TED%3AAF-A0A0M3C8D6-F1-model_v4_TED03","TED novel fold AF-A0A0M3C8D6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1338009","Sphingobacterium sp. IITKGP-BTPF85"]]},{"id":"NCBITaxon:133804","l":"gamma proteobacterium EBAC31A08","na":1,"nb":1,"a":[["PROSITE%3APS00950","Bacterial rhodopsins signature 1"]],"b":[["NCBITaxon%3A133804","uncultured marine gamma proteobacterium EBAC31A08"]]},{"id":"NCBITaxon:1338689","l":"Pseudomonas sp. JY-Q","na":1,"nb":1,"a":[["TED%3AAF-A0A173HBY6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A173HBY6-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1338689","Pseudomonas sp. JY-Q"]]},{"id":"NCBITaxon:1341132","l":"Aspergillus welwitschiae","na":1,"nb":1,"a":[["TED%3AAF-A0A3F3Q9J6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3F3Q9J6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1341132","Aspergillus welwitschiae"]]},{"id":"NCBITaxon:1341157","l":"Ruminococcus flavefaciens 007c","na":1,"nb":1,"a":[["TED%3AAF-W7UF30-F1-model_v4_TED01","TED novel fold AF-W7UF30-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1341157","Ruminococcus flavefaciens 007c"]]},{"id":"NCBITaxon:1342794","l":"Photobacterium sanctipauli","na":1,"nb":1,"a":[["TED%3AAF-A0A2T3P194-F1-model_v4_TED01","TED novel fold AF-A0A2T3P194-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1342794","Photobacterium sanctipauli"]]},{"id":"NCBITaxon:1345023","l":"Exiguobacterium chiriqhucha RW-2","na":1,"nb":1,"a":[["TED%3AAF-U1LVJ8-F1-model_v4_TED03","TED highly-symmetric fold AF-U1LVJ8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1345023","Exiguobacterium chiriqhucha RW-2"]]},{"id":"NCBITaxon:1346286","l":"Indolivaga macrotermitis","na":1,"nb":1,"a":[["TED%3AAF-A0A1M4VXX6-F1-model_v4_TED02","TED novel fold AF-A0A1M4VXX6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1346286","Indolivaga macrotermitis"]]},{"id":"NCBITaxon:134676","l":"","na":1,"nb":1,"a":[["TED%3AAF-G8RZI7-F1-model_v4_TED02","TED novel fold AF-G8RZI7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A134676","Actinoplanes sp. SE50/110"]]},{"id":"NCBITaxon:1347341","l":"Serratia symbiotica SCt-VLC","na":1,"nb":1,"a":[["TED%3AAF-A0A068R9A3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A068R9A3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1347341","Serratia symbiotica SCt-VLC"]]},{"id":"NCBITaxon:1347389","l":"Colletotrichum sidae","na":1,"nb":1,"a":[["TED%3AAF-A0A4R8TJT3-F1-model_v4_TED01","TED novel fold AF-A0A4R8TJT3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1347389","Colletotrichum sidae"]]},{"id":"NCBITaxon:1347390","l":"Colletotrichum spinosum","na":1,"nb":1,"a":[["TED%3AAF-A0A4R8QPW4-F1-model_v4_TED02","TED novel fold AF-A0A4R8QPW4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1347390","Colletotrichum spinosum"]]},{"id":"NCBITaxon:1348114","l":"Pseudoalteromonas piratica","na":1,"nb":1,"a":[["TED%3AAF-A0A0A7EDY8-F1-model_v4_TED01","TED novel fold AF-A0A0A7EDY8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1348114","Pseudoalteromonas piratica"]]},{"id":"NCBITaxon:1348429","l":"Effusibacillus lacus","na":1,"nb":1,"a":[["TED%3AAF-A0A292YJ73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A292YJ73-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1348429","Effusibacillus lacus"]]},{"id":"NCBITaxon:1348612","l":"Diversispora epigaea","na":1,"nb":1,"a":[["TED%3AAF-A0A397JCT7-F1-model_v4_TED03","TED novel fold AF-A0A397JCT7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1348612","Diversispora epigaea"]]},{"id":"NCBITaxon:1349436","l":"Paenibacillus sp. P46E","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q5XU69-F1-model_v4_TED02","TED novel fold AF-A0A1Q5XU69-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1349436","Paenibacillus sp. P46E"]]},{"id":"NCBITaxon:135208","l":"Hericium alpestre","na":1,"nb":1,"a":[["TED%3AAF-A0A4Y9ZHN8-F1-model_v4_TED01","TED novel fold AF-A0A4Y9ZHN8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A135208","Hericium alpestre"]]},{"id":"NCBITaxon:1353009","l":"Trametes coccinea BRFM310","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y2I6T8-F1-model_v4_TED02","TED novel fold AF-A0A1Y2I6T8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1353009","Trametes coccinea BRFM310"]]},{"id":"NCBITaxon:1353138","l":"Synechococcus sp. CBW1006","na":1,"nb":1,"a":[["TED%3AAF-A0A7T1I3C1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T1I3C1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1353138","Synechococcus sp. CBW1006"]]},{"id":"NCBITaxon:1353529","l":"","na":1,"nb":1,"a":[["TED%3AAF-T0T117-F1-model_v4_TED02","TED highly-symmetric fold AF-T0T117-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1353529","Bacteriovorax sp. BSW11_IV"]]},{"id":"NCBITaxon:1353886","l":"Caballeronia cordobensis","na":1,"nb":1,"a":[["TED%3AAF-A0A158GFG3-F1-model_v4_TED02","TED novel fold AF-A0A158GFG3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1353886","Caballeronia cordobensis"]]},{"id":"NCBITaxon:1357508","l":"Nostoc calcicola FACHB-389","na":1,"nb":1,"a":[["TED%3AAF-A0A1U7I4W4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1U7I4W4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1357508","Nostoc calcicola FACHB-389"]]},{"id":"NCBITaxon:1357716","l":"Batrachochytrium salamandrivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A1S8W4I2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S8W4I2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1357716","Batrachochytrium salamandrivorans"]]},{"id":"NCBITaxon:1358027","l":"Limosilactobacillus reuteri TD1","na":1,"nb":1,"a":[["TED%3AAF-S5NS22-F1-model_v4_TED01","TED novel fold AF-S5NS22-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1358027","Limosilactobacillus reuteri TD1"]]},{"id":"NCBITaxon:1365251","l":"Pseudoalteromonas luteoviolacea H33","na":1,"nb":1,"a":[["TED%3AAF-A0A161Y3H3-F1-model_v4_TED01","TED novel fold AF-A0A161Y3H3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1365251","Pseudoalteromonas luteoviolacea H33"]]},{"id":"NCBITaxon:1365253","l":"Pseudoalteromonas luteoviolacea NCIMB 1942","na":1,"nb":1,"a":[["TED%3AAF-A0A167AQV7-F1-model_v4_TED02","TED novel fold AF-A0A167AQV7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1365253","Pseudoalteromonas luteoviolacea NCIMB 1942"]]},{"id":"NCBITaxon:1367881","l":"Halorientalis persicus","na":1,"nb":1,"a":[["TED%3AAF-A0A1H8S3D3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H8S3D3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1367881","Halorientalis persicus"]]},{"id":"NCBITaxon:13706","l":"Syncephalastrum racemosum","na":1,"nb":1,"a":[["TED%3AAF-A0A1X2HDD3-F1-model_v4_TED01","TED novel fold AF-A0A1X2HDD3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A13706","Syncephalastrum racemosum"]]},{"id":"NCBITaxon:1380412","l":"Devosia sp. DBB001","na":1,"nb":1,"a":[["TED%3AAF-A0A024KHJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A024KHJ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1380412","Devosia sp. DBB001"]]},{"id":"NCBITaxon:1382356","l":"Thermorudis peleae","na":1,"nb":1,"a":[["TED%3AAF-A0A831TAE2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A831TAE2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1382356","Thermorudis peleae"]]},{"id":"NCBITaxon:1382522","l":"Kuraishia capsulata CBS 1993","na":1,"nb":1,"a":[["TED%3AAF-W6MUB0-F1-model_v4_TED01","TED novel fold AF-W6MUB0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1382522","Kuraishia capsulata CBS 1993"]]},{"id":"NCBITaxon:1383067","l":"Desulforamulus profundi","na":1,"nb":1,"a":[["TED%3AAF-A0A2C6MBR6-F1-model_v4_TED01","TED novel fold AF-A0A2C6MBR6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1383067","Desulforamulus profundi"]]},{"id":"NCBITaxon:1383844","l":"Halorubrum persicum","na":1,"nb":1,"a":[["TED%3AAF-A0A2G1WLM2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2G1WLM2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1383844","Halorubrum persicum"]]},{"id":"NCBITaxon:1385367","l":"Snodgrassella alvi SCGC AB-598-J21","na":1,"nb":1,"a":[["TED%3AAF-A0A074VYV1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A074VYV1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1385367","Snodgrassella alvi SCGC AB-598-J21"]]},{"id":"NCBITaxon:1385624","l":"Desulfofustis sp. PB-SRB1","na":1,"nb":1,"a":[["TED%3AAF-V4J0S4-F1-model_v4_TED02","TED novel fold AF-V4J0S4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1385624","Desulfofustis sp. PB-SRB1"]]},{"id":"NCBITaxon:1385975","l":"Algisphaera agarilytica","na":1,"nb":1,"a":[["TED%3AAF-A0A7X0H9L7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X0H9L7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1385975","Algisphaera agarilytica"]]},{"id":"NCBITaxon:1386941","l":"Synechococcus sp. MVIR-18-1","na":1,"nb":1,"a":[["TED%3AAF-A0A7G8F7M3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7G8F7M3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1386941","Synechococcus sp. MVIR-18-1"]]},{"id":"NCBITaxon:1387779","l":"Cohnella nanjingensis","na":1,"nb":1,"a":[["TED%3AAF-A0A7X0RVC7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7X0RVC7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1387779","Cohnella nanjingensis"]]},{"id":"NCBITaxon:1389935","l":"Achromobacter animicus","na":1,"nb":1,"a":[["TED%3AAF-A0A6S6ZIK1-F1-model_v4_TED02","TED novel fold AF-A0A6S6ZIK1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1389935","Achromobacter animicus"]]},{"id":"NCBITaxon:1390185","l":"Pseudoalteromonas sp. DL-6","na":1,"nb":1,"a":[["TED%3AAF-A0A4P6T1Q8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P6T1Q8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1390185","Pseudoalteromonas sp. DL-6"]]},{"id":"NCBITaxon:1390249","l":"Desulfuribacillus stibiiarsenatis","na":1,"nb":1,"a":[["TED%3AAF-A0A1E5L3L8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E5L3L8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1390249","Desulfuribacillus stibiiarsenatis"]]},{"id":"NCBITaxon:1392877","l":"Pseudomonas oryzae","na":1,"nb":1,"a":[["TED%3AAF-A0A1H1M2A5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H1M2A5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1392877","Pseudomonas oryzae"]]},{"id":"NCBITaxon:1392998","l":"Candidatus Methanoperedens nitratireducens","na":1,"nb":1,"a":[["TED%3AAF-A0A062V4L1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A062V4L1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1392998","Candidatus Methanoperedens nitratireducens"]]},{"id":"NCBITaxon:1394711","l":"","na":1,"nb":1,"a":[["TED%3AAF-V5RW81-F1-model_v4_TED01","TED highly-symmetric fold AF-V5RW81-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1394711","Candidatus Saccharibacteria bacterium RAAC3_TM7_1"]]},{"id":"NCBITaxon:1394984","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A132NVQ6-F1-model_v4_TED03","TED novel fold AF-A0A132NVQ6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1394984","Giardia duodenalis assemblage B"]]},{"id":"NCBITaxon:1395119","l":"Salmonella enterica subsp. arizonae serovar 18:z4,z23:- str. CVM N26626","na":1,"nb":1,"a":[["TED%3AAF-A0A3S5YLL3-F1-model_v4_TED02","TED novel fold AF-A0A3S5YLL3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1395119","Salmonella enterica subsp. arizonae serovar 18:z4,z23:- str. CVM N26626"]]},{"id":"NCBITaxon:1395516","l":"","na":1,"nb":1,"a":[["TED%3AAF-V8R7U0-F1-model_v4_TED01","TED highly-symmetric fold AF-V8R7U0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1395516","Pseudomonas atacamensis R28-S"]]},{"id":"NCBITaxon:1395570","l":"Burkholderia cepacia JBK9","na":1,"nb":1,"a":[["TED%3AAF-A0A0U4DQI1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0U4DQI1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1395570","Burkholderia cepacia JBK9"]]},{"id":"NCBITaxon:1395587","l":"Paenibacillus sp. MAEPY2","na":1,"nb":1,"a":[["TED%3AAF-A0A0A2UF58-F1-model_v4_TED01","TED novel fold AF-A0A0A2UF58-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1395587","Paenibacillus sp. MAEPY2"]]},{"id":"NCBITaxon:1395589","l":"Leptospira interrogans serovar Linhai str. 56609","na":1,"nb":1,"a":[["TED%3AAF-A0A0C5WN51-F1-model_v4_TED01","TED novel fold AF-A0A0C5WN51-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1395589","Leptospira interrogans serovar Linhai str. 56609"]]},{"id":"NCBITaxon:1395624","l":"Francisella sp. LA112445","na":1,"nb":1,"a":[["TED%3AAF-A0A7M3TD02-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7M3TD02-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1395624","Francisella sp. LA112445"]]},{"id":"NCBITaxon:1396819","l":"Solimonas terrae","na":1,"nb":1,"a":[["TED%3AAF-A0A6M2BWP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6M2BWP8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1396819","Solimonas terrae"]]},{"id":"NCBITaxon:1397112","l":"Patiriisocius marinus","na":1,"nb":1,"a":[["TED%3AAF-A0A5J4J2Z6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5J4J2Z6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1397112","Patiriisocius marinus"]]},{"id":"NCBITaxon:1397368","l":"Pseudonocardia sediminis","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q7UUS6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q7UUS6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1397368","Pseudonocardia sediminis"]]},{"id":"NCBITaxon:1397476","l":"Martelella radicis","na":1,"nb":1,"a":[["TED%3AAF-A0A7W6KR34-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7W6KR34-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1397476","Martelella radicis"]]},{"id":"NCBITaxon:1398203","l":"Xenorhabdus bovienii str. kraussei Quebec","na":1,"nb":1,"a":[["TED%3AAF-A0A077PJZ1-F1-model_v4_TED02","TED novel fold AF-A0A077PJZ1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1398203","Xenorhabdus bovienii str. kraussei Quebec"]]},{"id":"NCBITaxon:1400155","l":"","na":1,"nb":1,"a":[["Pfam%3APF26398","Cap2 central linker domain"]],"b":[["NCBITaxon%3A1400155","Enterobacter hormaechei subsp. hoffmannii UCI 50"]]},{"id":"NCBITaxon:1400863","l":"","na":1,"nb":1,"a":[["TED%3AAF-W6MA62-F1-model_v4_TED02","TED novel fold AF-W6MA62-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1400863","Candidatus Competibacter denitrificans Run_A_D11"]]},{"id":"NCBITaxon:1400979","l":"Pontibacter diazotrophicus","na":1,"nb":1,"a":[["TED%3AAF-A0A3D8L6P6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D8L6P6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1400979","Pontibacter diazotrophicus"]]},{"id":"NCBITaxon:1401073","l":"Prevotella melaninogenica DNF00666","na":1,"nb":1,"a":[["TED%3AAF-A0A096AJX9-F1-model_v4_TED01","TED novel fold AF-A0A096AJX9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1401073","Prevotella melaninogenica DNF00666"]]},{"id":"NCBITaxon:1401087","l":"Dickeya aquatica","na":1,"nb":1,"a":[["TED%3AAF-A0A375A9L4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A375A9L4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1401087","Dickeya aquatica"]]},{"id":"NCBITaxon:1402860","l":"[Bacillus] enclensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0V8H3K4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0V8H3K4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1402860","[Bacillus] enclensis"]]},{"id":"NCBITaxon:1403564","l":"Salmonella enterica subsp. enterica serovar Hull","na":1,"nb":1,"a":[["TED%3AAF-A0A5X4PE40-F1-model_v4_TED01","TED novel fold AF-A0A5X4PE40-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1403564","Salmonella enterica subsp. enterica serovar Hull"]]},{"id":"NCBITaxon:1403937","l":"","na":1,"nb":1,"a":[["TED%3AAF-W1UTG4-F1-model_v4_TED01","TED novel fold AF-W1UTG4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1403937","Streptococcus sp. DORA_10"]]},{"id":"NCBITaxon:1403947","l":"","na":1,"nb":1,"a":[["TED%3AAF-W1VBZ4-F1-model_v4_TED01","TED highly-symmetric fold AF-W1VBZ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1403947","Streptococcus parasanguinis DORA_23_24"]]},{"id":"NCBITaxon:1403949","l":"","na":1,"nb":1,"a":[["TED%3AAF-W1UZK5-F1-model_v4_TED02","TED novel fold AF-W1UZK5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1403949","Veillonella dispar DORA_11"]]},{"id":"NCBITaxon:1404367","l":"Bradyrhizobium symbiodeficiens","na":1,"nb":1,"a":[["TED%3AAF-A0A6G9A9B1-F1-model_v4_TED01","TED novel fold AF-A0A6G9A9B1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1404367","Bradyrhizobium symbiodeficiens"]]},{"id":"NCBITaxon:1404429","l":"Bradyrhizobium sp. 2S1","na":1,"nb":1,"a":[["TED%3AAF-A0A850HYB4-F1-model_v4_TED01","TED novel fold AF-A0A850HYB4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1404429","Bradyrhizobium sp. 2S1"]]},{"id":"NCBITaxon:1404888","l":"Bradyrhizobium sp. 1(2017)","na":1,"nb":1,"a":[["TED%3AAF-A0A6G8U5S3-F1-model_v4_TED02","TED novel fold AF-A0A6G8U5S3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1404888","Bradyrhizobium sp. 1(2017)"]]},{"id":"NCBITaxon:1407017","l":"Clostridium botulinum B str. Osaka05","na":1,"nb":1,"a":[["TED%3AAF-A0A060N8U1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A060N8U1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1407017","Clostridium botulinum B str. Osaka05"]]},{"id":"NCBITaxon:1407055","l":"Candidatus Nitrosotenuis uzonensis","na":1,"nb":1,"a":[["TED%3AAF-A0A812F2F8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812F2F8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1407055","Candidatus Nitrosotenuis uzonensis"]]},{"id":"NCBITaxon:1408161","l":"Plenodomus tracheiphilus IPT5","na":1,"nb":1,"a":[["TED%3AAF-A0A6A7APH0-F1-model_v4_TED02","TED novel fold AF-A0A6A7APH0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1408161","Plenodomus tracheiphilus IPT5"]]},{"id":"NCBITaxon:1408254","l":"Brevibacillus panacihumi W25","na":1,"nb":1,"a":[["TED%3AAF-V6MJN1-F1-model_v4_TED01","TED novel fold AF-V6MJN1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1408254","Brevibacillus panacihumi W25"]]},{"id":"NCBITaxon:1408281","l":"Endomicrobium proavitum","na":1,"nb":1,"a":[["TED%3AAF-A0A0G3WK72-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G3WK72-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1408281","Endomicrobium proavitum"]]},{"id":"NCBITaxon:1408282","l":"Geobacillus thermopakistaniensis","na":1,"nb":1,"a":[["Pfam%3APF02903","Alpha amylase, N-terminal ig-like domain"]],"b":[["NCBITaxon%3A1408282","Geobacillus thermopakistaniensis"]]},{"id":"NCBITaxon:1408889","l":"Clostridium tyrobutyricum DIVETGP","na":1,"nb":1,"a":[["TED%3AAF-W6NH89-F1-model_v4_TED02","TED novel fold AF-W6NH89-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1408889","Clostridium tyrobutyricum DIVETGP"]]},{"id":"NCBITaxon:1408890","l":"Rhodobacter sp. CACIA14H1","na":1,"nb":1,"a":[["TED%3AAF-V7EIX2-F1-model_v4_TED07","TED highly-symmetric fold AF-V7EIX2-F1-model_v4_TED07"]],"b":[["NCBITaxon%3A1408890","Rhodobacter sp. CACIA14H1"]]},{"id":"NCBITaxon:1410573","l":"uncultured Acidilobus sp. MG","na":1,"nb":1,"a":[["TED%3AAF-V4JVL8-F1-model_v4_TED01","TED highly-symmetric fold AF-V4JVL8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1410573","uncultured Acidilobus sp. MG"]]},{"id":"NCBITaxon:1410606","l":"Candidatus Nitrosopelagicus brevis","na":1,"nb":1,"a":[["TED%3AAF-A0A0A7V1V1-F1-model_v4_TED03","TED novel fold AF-A0A0A7V1V1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1410606","Candidatus Nitrosopelagicus brevis"]]},{"id":"NCBITaxon:1410619","l":"Serratia sp. DD3","na":1,"nb":1,"a":[["TED%3AAF-A0A084A1V1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A084A1V1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1410619","Serratia sp. DD3"]]},{"id":"NCBITaxon:1410655","l":"Enterococcus faecalis PF3","na":1,"nb":1,"a":[["TED%3AAF-V7ZKW3-F1-model_v4_TED02","TED highly-symmetric fold AF-V7ZKW3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1410655","Enterococcus faecalis PF3"]]},{"id":"NCBITaxon:1411118","l":"Thermomonospora cellulosilytica","na":1,"nb":1,"a":[["TED%3AAF-A0A7W3N3V2-F1-model_v4_TED01","TED novel fold AF-A0A7W3N3V2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1411118","Thermomonospora cellulosilytica"]]},{"id":"NCBITaxon:1411122","l":"Hymenobacter luteus","na":1,"nb":1,"a":[["TED%3AAF-A0A7W9SYW3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W9SYW3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1411122","Hymenobacter luteus"]]},{"id":"NCBITaxon:1411148","l":"Tannerella sp. oral taxon BU063 isolate Cell 2","na":1,"nb":1,"a":[["TED%3AAF-W2C603-F1-model_v4_TED04","TED novel fold AF-W2C603-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1411148","Tannerella sp. oral taxon BU063 isolate Cell 2"]]},{"id":"NCBITaxon:1415","l":"","na":1,"nb":1,"a":[["Pfam%3APF03424","Carbohydrate binding domain (family 17/28)"]],"b":[["NCBITaxon%3A1415","Bacillus sp. KSM-635"]]},{"id":"NCBITaxon:1415168","l":"Lactococcus cremoris subsp. cremoris GE214","na":1,"nb":1,"a":[["TED%3AAF-A0A084AAH4-F1-model_v4_TED01","TED novel fold AF-A0A084AAH4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1415168","Lactococcus cremoris subsp. cremoris GE214"]]},{"id":"NCBITaxon:1415546","l":"Streptomyces sp. MMG1533","na":1,"nb":1,"a":[["TED%3AAF-A0A0M8TUR4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0M8TUR4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1415546","Streptomyces sp. MMG1533"]]},{"id":"NCBITaxon:1415551","l":"Streptomyces sp. WM4235","na":1,"nb":1,"a":[["TED%3AAF-A0A0M8SSR9-F1-model_v4_TED01","TED novel fold AF-A0A0M8SSR9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1415551","Streptomyces sp. WM4235"]]},{"id":"NCBITaxon:1415773","l":"Mycoplasma ovis str. Michigan","na":1,"nb":1,"a":[["TED%3AAF-V9R9K3-F1-model_v4_TED01","TED novel fold AF-V9R9K3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1415773","Mycoplasma ovis str. Michigan"]]},{"id":"NCBITaxon:1415782","l":"Mycolicibacterium mucogenicum 261Sha1.1M5","na":1,"nb":1,"a":[["TED%3AAF-A0A495CRS6-F1-model_v4_TED07","TED novel fold AF-A0A495CRS6-F1-model_v4_TED07"]],"b":[["NCBITaxon%3A1415782","Mycolicibacterium mucogenicum 261Sha1.1M5"]]},{"id":"NCBITaxon:1416","l":"","na":1,"nb":1,"a":[["Pfam%3APF09154","Alpha-amylase C-terminal"]],"b":[["NCBITaxon%3A1416","Bacillus sp. 707"]]},{"id":"NCBITaxon:1417629","l":"Anaerosolibacter carboniphilus","na":1,"nb":1,"a":[["TED%3AAF-A0A841KW00-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841KW00-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1417629","Anaerosolibacter carboniphilus"]]},{"id":"NCBITaxon:1418234","l":"Sneathiella chungangensis","na":1,"nb":1,"a":[["TED%3AAF-A0A845MJ63-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A845MJ63-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1418234","Sneathiella chungangensis"]]},{"id":"NCBITaxon:1420851","l":"Methyloprofundus sedimenti","na":1,"nb":1,"a":[["TED%3AAF-A0A1V8M3J1-F1-model_v4_TED01","TED novel fold AF-A0A1V8M3J1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1420851","Methyloprofundus sedimenti"]]},{"id":"NCBITaxon:1420899","l":"Streptomyces klenkii","na":1,"nb":1,"a":[["TED%3AAF-A0A3A9ZW83-F1-model_v4_TED01","TED novel fold AF-A0A3A9ZW83-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1420899","Streptomyces klenkii"]]},{"id":"NCBITaxon:1423959","l":"Chryseobacterium contaminans","na":1,"nb":1,"a":[["TED%3AAF-A0A1M7CGX0-F1-model_v4_TED01","TED novel fold AF-A0A1M7CGX0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1423959","Chryseobacterium contaminans"]]},{"id":"NCBITaxon:1424653","l":"Caminibacter pacificus","na":1,"nb":1,"a":[["TED%3AAF-A0A3N1YR43-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3N1YR43-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1424653","Caminibacter pacificus"]]},{"id":"NCBITaxon:142586","l":"Eubacterium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A3D0GVH0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D0GVH0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A142586","Eubacterium sp."]]},{"id":"NCBITaxon:142588","l":"Isobaculum melis","na":1,"nb":1,"a":[["TED%3AAF-A0A1H9QPQ1-F1-model_v4_TED07","TED highly-symmetric fold AF-A0A1H9QPQ1-F1-model_v4_TED07"]],"b":[["NCBITaxon%3A142588","Isobaculum melis"]]},{"id":"NCBITaxon:1427296","l":"Mycobacterium avium XTB13-223","na":1,"nb":1,"a":[["TED%3AAF-A0A049DXN9-F1-model_v4_TED01","TED novel fold AF-A0A049DXN9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1427296","Mycobacterium avium XTB13-223"]]},{"id":"NCBITaxon:1427370","l":"Chlamydia pecorum DBDeUG","na":1,"nb":1,"a":[["TED%3AAF-V8TRT3-F1-model_v4_TED01","TED highly-symmetric fold AF-V8TRT3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1427370","Chlamydia pecorum DBDeUG"]]},{"id":"NCBITaxon:1428644","l":"Mangrovactinospora gilvigrisea","na":1,"nb":1,"a":[["TED%3AAF-A0A1J7BG73-F1-model_v4_TED01","TED novel fold AF-A0A1J7BG73-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1428644","Mangrovactinospora gilvigrisea"]]},{"id":"NCBITaxon:1429438","l":"","na":1,"nb":1,"a":[["TED%3AAF-W4LG66-F1-model_v4_TED01","TED highly-symmetric fold AF-W4LG66-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1429438","Candidatus Entotheonella factor"]]},{"id":"NCBITaxon:1432049","l":"Rhizobium etli bv. phaseoli str. IE4803","na":1,"nb":1,"a":[["TED%3AAF-A0A7U4IWE8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7U4IWE8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1432049","Rhizobium etli bv. phaseoli str. IE4803"]]},{"id":"NCBITaxon:1432564","l":"Brachybacterium aquaticum","na":1,"nb":1,"a":[["TED%3AAF-A0A841ADV7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A841ADV7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1432564","Brachybacterium aquaticum"]]},{"id":"NCBITaxon:143451","l":"Plasmopara viticola","na":1,"nb":1,"a":[["Pfam%3APF08315","cwf18 pre-mRNA splicing factor"]],"b":[["NCBITaxon%3A143451","Plasmopara viticola"]]},{"id":"NCBITaxon:1434707","l":"Taibaiella chishuiensis","na":1,"nb":1,"a":[["TED%3AAF-A0A2P8D5N9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2P8D5N9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1434707","Taibaiella chishuiensis"]]},{"id":"NCBITaxon:1435370","l":"Burkholderia pseudomallei MSHR4000","na":1,"nb":1,"a":[["TED%3AAF-A0A0F6L4H7-F1-model_v4_TED01","TED novel fold AF-A0A0F6L4H7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1435370","Burkholderia pseudomallei MSHR4000"]]},{"id":"NCBITaxon:1435465","l":"Fluviicoccus keumensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q7ZC11-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q7ZC11-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1435465","Fluviicoccus keumensis"]]},{"id":"NCBITaxon:1436","l":"","na":1,"nb":1,"a":[["Pfam%3APF18449","Pesticidal crystal protein Cry1Aa, domain IV"]],"b":[["NCBITaxon%3A1436","Bacillus thuringiensis serovar entomocidus"]]},{"id":"NCBITaxon:1437059","l":"Magnetospirillum moscoviense","na":1,"nb":1,"a":[["TED%3AAF-A0A178MYG0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A178MYG0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1437059","Magnetospirillum moscoviense"]]},{"id":"NCBITaxon:1437444","l":"Hydrogenophaga sp. T4","na":1,"nb":1,"a":[["TED%3AAF-W7WNT5-F1-model_v4_TED01","TED highly-symmetric fold AF-W7WNT5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1437444","Hydrogenophaga sp. T4"]]},{"id":"NCBITaxon:1437446","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A421CAQ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A421CAQ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1437446","Mesotoga sp. BH458_6_3_2_1"]]},{"id":"NCBITaxon:1437453","l":"Streptomyces leeuwenhoekii","na":1,"nb":1,"a":[["TED%3AAF-A0A0F7VQ57-F1-model_v4_TED03","TED novel fold AF-A0A0F7VQ57-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1437453","Streptomyces leeuwenhoekii"]]},{"id":"NCBITaxon:1444258","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A029H999-F1-model_v4_TED01","TED novel fold AF-A0A029H999-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1444258","Escherichia coli 2-005-03_S4_C3"]]},{"id":"NCBITaxon:1444289","l":"Clostridium novyi A str. 4552","na":1,"nb":1,"a":[["TED%3AAF-A0A0A0IBM0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0A0IBM0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1444289","Clostridium novyi A str. 4552"]]},{"id":"NCBITaxon:1444315","l":"Lysobacter capsici AZ78","na":1,"nb":1,"a":[["TED%3AAF-A0A108UBP0-F1-model_v4_TED01","TED novel fold AF-A0A108UBP0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1444315","Lysobacter capsici AZ78"]]},{"id":"NCBITaxon:1445661","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A4S3MRC1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S3MRC1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1445661","Aliigemmobacter aestuarii"]]},{"id":"NCBITaxon:1446494","l":"Lacticaseibacillus paracasei N1115","na":1,"nb":1,"a":[["TED%3AAF-A0A806L751-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A806L751-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1446494","Lacticaseibacillus paracasei N1115"]]},{"id":"NCBITaxon:1447260","l":"Aliarcobacter butzleri L352","na":1,"nb":1,"a":[["TED%3AAF-A0A837JE98-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A837JE98-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1447260","Aliarcobacter butzleri L352"]]},{"id":"NCBITaxon:1447781","l":"Maribacter caenipelagi","na":1,"nb":1,"a":[["TED%3AAF-A0A4R7D3Q6-F1-model_v4_TED03","TED novel fold AF-A0A4R7D3Q6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1447781","Maribacter caenipelagi"]]},{"id":"NCBITaxon:1448271","l":"Bacillus oleivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A285CJD4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A285CJD4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1448271","Bacillus oleivorans"]]},{"id":"NCBITaxon:1449167","l":"Epsilonproteobacteria bacterium SCGC AD-308-I21","na":1,"nb":1,"a":[["TED%3AAF-A0A318DDP5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A318DDP5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1449167","Epsilonproteobacteria bacterium SCGC AD-308-I21"]]},{"id":"NCBITaxon:1450156","l":"Defluviitalea raffinosedens","na":1,"nb":1,"a":[["TED%3AAF-A0A7C8LR52-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C8LR52-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1450156","Defluviitalea raffinosedens"]]},{"id":"NCBITaxon:1450533","l":"Aspergillus niger CBS 101883","na":1,"nb":1,"a":[["TED%3AAF-A0A319AKL5-F1-model_v4_TED01","TED novel fold AF-A0A319AKL5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1450533","Aspergillus niger CBS 101883"]]},{"id":"NCBITaxon:1450648","l":"Clostridium oryzae","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4IHY1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V4IHY1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1450648","Clostridium oryzae"]]},{"id":"NCBITaxon:1452364","l":"methanogenic archaeon mixed culture ISO4-G1","na":1,"nb":1,"a":[["TED%3AAF-A0A126QVC0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A126QVC0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1452364","methanogenic archaeon mixed culture ISO4-G1"]]},{"id":"NCBITaxon:1452450","l":"Neoroseomonas alkaliterrae","na":1,"nb":1,"a":[["TED%3AAF-A0A840YB57-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A840YB57-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1452450","Neoroseomonas alkaliterrae"]]},{"id":"NCBITaxon:1452508","l":"Caldimonas caldifontis","na":1,"nb":1,"a":[["TED%3AAF-A0A2S5SVM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5SVM3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1452508","Caldimonas caldifontis"]]},{"id":"NCBITaxon:1453103","l":"Prauserella shujinwangii","na":1,"nb":1,"a":[["TED%3AAF-A0A2T0LNK4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2T0LNK4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1453103","Prauserella shujinwangii"]]},{"id":"NCBITaxon:1456162","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A075H869-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A075H869-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1456162","uncultured marine thaumarchaeote KM3_46_G12"]]},{"id":"NCBITaxon:1457234","l":"Nocardioides zeae","na":1,"nb":1,"a":[["TED%3AAF-A0A6P0HF47-F1-model_v4_TED01","TED novel fold AF-A0A6P0HF47-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1457234","Nocardioides zeae"]]},{"id":"NCBITaxon:1457822","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A075FYZ3-F1-model_v4_TED01","TED novel fold AF-A0A075FYZ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1457822","uncultured marine group II/III euryarchaeote AD1000_88_G11"]]},{"id":"NCBITaxon:1459636","l":"Candidatus Nitrososphaera evergladensis SR1","na":1,"nb":1,"a":[["TED%3AAF-A0A075MU04-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A075MU04-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1459636","Candidatus Nitrososphaera evergladensis SR1"]]},{"id":"NCBITaxon:1460083","l":"Serratia liquefaciens FK01","na":1,"nb":1,"a":[["TED%3AAF-A0A7U9PQR8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7U9PQR8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1460083","Serratia liquefaciens FK01"]]},{"id":"NCBITaxon:1460289","l":"Chrysochromulina tobinii","na":1,"nb":1,"a":[["TED%3AAF-A0A0M0JKQ0-F1-model_v4_TED02","TED novel fold AF-A0A0M0JKQ0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1460289","Chrysochromulina tobinii"]]},{"id":"NCBITaxon:1460647","l":"Vibrio sp. JCM 19052","na":1,"nb":1,"a":[["TED%3AAF-A0A061Q7K1-F1-model_v4_TED01","TED novel fold AF-A0A061Q7K1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1460647","Vibrio sp. JCM 19052"]]},{"id":"NCBITaxon:1461","l":"Psychrobacillus insolitus","na":1,"nb":1,"a":[["TED%3AAF-A0A2W7P9M5-F1-model_v4_TED02","TED novel fold AF-A0A2W7P9M5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1461","Psychrobacillus insolitus"]]},{"id":"NCBITaxon:1461337","l":"Aestuariispira insulae","na":1,"nb":1,"a":[["TED%3AAF-A0A3D9HK82-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D9HK82-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1461337","Aestuariispira insulae"]]},{"id":"NCBITaxon:1461581","l":"Pseudomonas saudimassiliensis","na":1,"nb":1,"a":[["TED%3AAF-A0A078MFS6-F1-model_v4_TED03","TED novel fold AF-A0A078MFS6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1461581","Pseudomonas saudimassiliensis"]]},{"id":"NCBITaxon:1461694","l":"Pseudooceanicola atlanticus","na":1,"nb":1,"a":[["TED%3AAF-A0A0A0E8I5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0A0E8I5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1461694","Pseudooceanicola atlanticus"]]},{"id":"NCBITaxon:1462440","l":"Pseudoduganella ginsengisoli","na":1,"nb":1,"a":[["TED%3AAF-A0A6L6PV27-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A6L6PV27-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1462440","Pseudoduganella ginsengisoli"]]},{"id":"NCBITaxon:1463597","l":"Qipengyuania oceanensis","na":1,"nb":1,"a":[["TED%3AAF-A0A844YBM6-F1-model_v4_TED01","TED novel fold AF-A0A844YBM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1463597","Qipengyuania oceanensis"]]},{"id":"NCBITaxon:1465486","l":"Frigidibacter albus","na":1,"nb":1,"a":[["TED%3AAF-A0A6L8VHY0-F1-model_v4_TED01","TED novel fold AF-A0A6L8VHY0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1465486","Frigidibacter albus"]]},{"id":"NCBITaxon:1469603","l":"Spirosoma oryzae","na":1,"nb":1,"a":[["TED%3AAF-A0A2T0S8I1-F1-model_v4_TED07","TED highly-symmetric fold AF-A0A2T0S8I1-F1-model_v4_TED07"]],"b":[["NCBITaxon%3A1469603","Spirosoma oryzae"]]},{"id":"NCBITaxon:1470066","l":"Nitrosopumilus cobalaminigenes","na":1,"nb":1,"a":[["TED%3AAF-A0A7D5LZ07-F1-model_v4_TED01","TED novel fold AF-A0A7D5LZ07-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1470066","Nitrosopumilus cobalaminigenes"]]},{"id":"NCBITaxon:1471381","l":"Pseudomonas helmanticensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4R7UU40-F1-model_v4_TED01","TED novel fold AF-A0A4R7UU40-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1471381","Pseudomonas helmanticensis"]]},{"id":"NCBITaxon:1472378","l":"Sinorhizobium glycinis","na":1,"nb":1,"a":[["TED%3AAF-A0A178XTK6-F1-model_v4_TED02","TED novel fold AF-A0A178XTK6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1472378","Sinorhizobium glycinis"]]},{"id":"NCBITaxon:1472416","l":"Butyricimonas faecihominis","na":1,"nb":1,"a":[["TED%3AAF-A0A7W6MZV9-F1-model_v4_TED04","TED novel fold AF-A0A7W6MZV9-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1472416","Butyricimonas faecihominis"]]},{"id":"NCBITaxon:1472767","l":"Lentibacillus amyloliquefaciens","na":1,"nb":1,"a":[["TED%3AAF-A0A0U4EI34-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0U4EI34-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1472767","Lentibacillus amyloliquefaciens"]]},{"id":"NCBITaxon:1473598","l":"Paludibaculum fermentans","na":1,"nb":1,"a":[["TED%3AAF-A0A7S7NND6-F1-model_v4_TED01","TED novel fold AF-A0A7S7NND6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1473598","Paludibaculum fermentans"]]},{"id":"NCBITaxon:1476194","l":"Helicobacter sp. 11S02596-1","na":1,"nb":1,"a":[["TED%3AAF-A0A268TH10-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A268TH10-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1476194","Helicobacter sp. 11S02596-1"]]},{"id":"NCBITaxon:1476195","l":"Helicobacter sp. 11S02629-2","na":1,"nb":1,"a":[["TED%3AAF-A0A268TL45-F1-model_v4_TED01","TED novel fold AF-A0A268TL45-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1476195","Helicobacter sp. 11S02629-2"]]},{"id":"NCBITaxon:1476464","l":"Pedobacter xixiisoli","na":1,"nb":1,"a":[["TED%3AAF-A0A285ZUL6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A285ZUL6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1476464","Pedobacter xixiisoli"]]},{"id":"NCBITaxon:1476959","l":"Marinobacterium mangrovicola","na":1,"nb":1,"a":[["TED%3AAF-A0A4R1G9Q6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R1G9Q6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1476959","Marinobacterium mangrovicola"]]},{"id":"NCBITaxon:1476999","l":"Olsenella sp. DNF00959","na":1,"nb":1,"a":[["TED%3AAF-A0A134A4J3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A134A4J3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1476999","Olsenella sp. DNF00959"]]},{"id":"NCBITaxon:1477506","l":"Prauserella flavalba","na":1,"nb":1,"a":[["TED%3AAF-A0A318M583-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A318M583-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1477506","Prauserella flavalba"]]},{"id":"NCBITaxon:1478134","l":"Novosphingobium sp. KN65.2","na":1,"nb":1,"a":[["TED%3AAF-A0A158S4C5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A158S4C5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1478134","Novosphingobium sp. KN65.2"]]},{"id":"NCBITaxon:1479485","l":"Tolypothrix bouteillei VB521301","na":1,"nb":1,"a":[["TED%3AAF-A0A0C1QRR2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0C1QRR2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1479485","Tolypothrix bouteillei VB521301"]]},{"id":"NCBITaxon:1481457","l":"Spongiivirga citrea","na":1,"nb":1,"a":[["TED%3AAF-A0A6M0CF90-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6M0CF90-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1481457","Spongiivirga citrea"]]},{"id":"NCBITaxon:1481663","l":"Vibrio metoecus","na":1,"nb":1,"a":[["Pfam%3APF20247","Domain of unknown function (DUF6602)"]],"b":[["NCBITaxon%3A1481663","Vibrio metoecus"]]},{"id":"NCBITaxon:1481926","l":"Vibrio sp. JCM 19236","na":1,"nb":1,"a":[["TED%3AAF-A0A0B8PST6-F1-model_v4_TED01","TED novel fold AF-A0A0B8PST6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1481926","Vibrio sp. JCM 19236"]]},{"id":"NCBITaxon:1482732","l":"Alkaliphilus pronyensis","na":1,"nb":1,"a":[["TED%3AAF-A0A6I0FE98-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I0FE98-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1482732","Alkaliphilus pronyensis"]]},{"id":"NCBITaxon:148305","l":"Pyricularia grisea","na":1,"nb":1,"a":[["TED%3AAF-A0A6P8AZV3-F1-model_v4_TED01","TED novel fold AF-A0A6P8AZV3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A148305","Pyricularia grisea"]]},{"id":"NCBITaxon:148448","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1I1K5F6-F1-model_v4_TED01","TED novel fold AF-A0A1I1K5F6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A148448","Natronobacterium haloterrestre"]]},{"id":"NCBITaxon:1485002","l":"Acinetobacter sp. ETR1","na":1,"nb":1,"a":[["TED%3AAF-A0A072CSU4-F1-model_v4_TED04","TED novel fold AF-A0A072CSU4-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1485002","Acinetobacter sp. ETR1"]]},{"id":"NCBITaxon:1486246","l":"Halomonas sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A355PHS8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A355PHS8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1486246","Halomonas sp."]]},{"id":"NCBITaxon:1486281","l":"Roseovarius sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A350LS23-F1-model_v4_TED01","TED novel fold AF-A0A350LS23-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1486281","Roseovarius sp."]]},{"id":"NCBITaxon:1487726","l":"Mycobacterium persicum","na":1,"nb":1,"a":[["TED%3AAF-A0A498PG61-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A498PG61-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1487726","Mycobacterium persicum"]]},{"id":"NCBITaxon:1487949","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0C1NT92-F1-model_v4_TED02","TED novel fold AF-A0A0C1NT92-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1487949","Smithella sp. SC_K08D17"]]},{"id":"NCBITaxon:148818","l":"Hamiltosporidium magnivora","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q9LGG3-F1-model_v4_TED01","TED novel fold AF-A0A4Q9LGG3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A148818","Hamiltosporidium magnivora"]]},{"id":"NCBITaxon:1494","l":"Clostridium cochlearium","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y3V7F0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y3V7F0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1494","Clostridium cochlearium"]]},{"id":"NCBITaxon:1495144","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A110A2W2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A110A2W2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1495144","methanogenic archaeon ISO4-H5"]]},{"id":"NCBITaxon:1497020","l":"Neosynechococcus sphagnicola sy1","na":1,"nb":1,"a":[["TED%3AAF-A0A098TMI1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A098TMI1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1497020","Neosynechococcus sphagnicola sy1"]]},{"id":"NCBITaxon:1497337","l":"Acinetobacter sp. SM1B","na":1,"nb":1,"a":[["TED%3AAF-A0A330FBJ1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A330FBJ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1497337","Acinetobacter sp. SM1B"]]},{"id":"NCBITaxon:1497681","l":"Paenilisteria newyorkensis","na":1,"nb":1,"a":[["TED%3AAF-A0A841Z083-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A841Z083-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1497681","Paenilisteria newyorkensis"]]},{"id":"NCBITaxon:1499502","l":"Prochlorococcus sp. MIT 0701","na":1,"nb":1,"a":[["TED%3AAF-A0A0A2CX85-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A2CX85-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1499502","Prochlorococcus sp. MIT 0701"]]},{"id":"NCBITaxon:1499688","l":"Neobacillus massiliamazoniensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0U1NRJ1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0U1NRJ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1499688","Neobacillus massiliamazoniensis"]]},{"id":"NCBITaxon:150","l":"Spirochaeta isovalerica","na":1,"nb":1,"a":[["TED%3AAF-A0A841R6V2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841R6V2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A150","Spirochaeta isovalerica"]]},{"id":"NCBITaxon:1500264","l":"Rhizobacter sp. OV335","na":1,"nb":1,"a":[["TED%3AAF-A0A1M7I6F1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M7I6F1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1500264","Rhizobacter sp. OV335"]]},{"id":"NCBITaxon:1500506","l":"Halopolyspora algeriensis","na":1,"nb":1,"a":[["TED%3AAF-A0A368VEW2-F1-model_v4_TED01","TED novel fold AF-A0A368VEW2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1500506","Halopolyspora algeriensis"]]},{"id":"NCBITaxon:1501240","l":"Palleronia abyssalis","na":1,"nb":1,"a":[["TED%3AAF-A0A2R8BW46-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2R8BW46-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1501240","Palleronia abyssalis"]]},{"id":"NCBITaxon:1502292","l":"Marine Group I thaumarchaeote SCGC AAA799-E16","na":1,"nb":1,"a":[["TED%3AAF-A0A081S3X1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A081S3X1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1502292","Marine Group I thaumarchaeote SCGC AAA799-E16"]]},{"id":"NCBITaxon:1502726","l":"Microcystis sp. 0824","na":1,"nb":1,"a":[["TED%3AAF-A0A2L2XND4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2L2XND4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1502726","Microcystis sp. 0824"]]},{"id":"NCBITaxon:1502758","l":"Luteibacter sp. UNCMF366Tsu5.1","na":1,"nb":1,"a":[["TED%3AAF-A0A1K1RRU1-F1-model_v4_TED01","TED novel fold AF-A0A1K1RRU1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1502758","Luteibacter sp. UNCMF366Tsu5.1"]]},{"id":"NCBITaxon:1503","l":"Gottschalkia purinilytica","na":1,"nb":1,"a":[["Pfam%3APF07355","Glycine/sarcosine/betaine reductase selenoprotein B (GRDB)"]],"b":[["NCBITaxon%3A1503","Gottschalkia purinilytica"]]},{"id":"NCBITaxon:1503053","l":"Burkholderia singularis","na":1,"nb":1,"a":[["TED%3AAF-A0A238HAX7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A238HAX7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1503053","Burkholderia singularis"]]},{"id":"NCBITaxon:1503055","l":"Burkholderia territorii","na":1,"nb":1,"a":[["TED%3AAF-A0A6L3N8P5-F1-model_v4_TED01","TED novel fold AF-A0A6L3N8P5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1503055","Burkholderia territorii"]]},{"id":"NCBITaxon:150374","l":"Escovopsis weberi","na":1,"nb":1,"a":[["TED%3AAF-A0A0M8MSE0-F1-model_v4_TED01","TED novel fold AF-A0A0M8MSE0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A150374","Escovopsis weberi"]]},{"id":"NCBITaxon:1504536","l":"Robinsoniella sp. RHS","na":1,"nb":1,"a":[["TED%3AAF-A0A0J1FYX4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0J1FYX4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1504536","Robinsoniella sp. RHS"]]},{"id":"NCBITaxon:1506545","l":"Candidatus Chloroploca asiatica","na":1,"nb":1,"a":[["TED%3AAF-A0A2H3KI37-F1-model_v4_TED02","TED novel fold AF-A0A2H3KI37-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1506545","Candidatus Chloroploca asiatica"]]},{"id":"NCBITaxon:1507870","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1V8TAE1-F1-model_v4_TED02","TED novel fold AF-A0A1V8TAE1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1507870","Cryoendolithus antarcticus"]]},{"id":"NCBITaxon:150831","l":"Roseibium hamelinense","na":1,"nb":1,"a":[["TED%3AAF-A0A562T7P7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A562T7P7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A150831","Roseibium hamelinense"]]},{"id":"NCBITaxon:1508390","l":"Aureibacillus halotolerans","na":1,"nb":1,"a":[["TED%3AAF-A0A4R6U114-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R6U114-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1508390","Aureibacillus halotolerans"]]},{"id":"NCBITaxon:1508404","l":"Jeotgalibacillus malaysiensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0B5ASX9-F1-model_v4_TED01","TED novel fold AF-A0A0B5ASX9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1508404","Jeotgalibacillus malaysiensis"]]},{"id":"NCBITaxon:1509407","l":"Aspergillus nomiae NRRL 13137","na":1,"nb":1,"a":[["TED%3AAF-A0A0L1JHJ8-F1-model_v4_TED01","TED novel fold AF-A0A0L1JHJ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1509407","Aspergillus nomiae NRRL 13137"]]},{"id":"NCBITaxon:1513271","l":"Catenovulum maritimum","na":1,"nb":1,"a":[["TED%3AAF-A0A0J8GTT7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0J8GTT7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1513271","Catenovulum maritimum"]]},{"id":"NCBITaxon:1513793","l":"Pseudobacteriovorax antillogorgiicola","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y6CR30-F1-model_v4_TED01","TED novel fold AF-A0A1Y6CR30-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1513793","Pseudobacteriovorax antillogorgiicola"]]},{"id":"NCBITaxon:1514080","l":"Neolewinella xylanilytica","na":1,"nb":1,"a":[["TED%3AAF-A0A2S6I9U1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S6I9U1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1514080","Neolewinella xylanilytica"]]},{"id":"NCBITaxon:1514971","l":"Haloprofundus marisrubri","na":1,"nb":1,"a":[["TED%3AAF-A0A0W1R579-F1-model_v4_TED02","TED novel fold AF-A0A0W1R579-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1514971","Haloprofundus marisrubri"]]},{"id":"NCBITaxon:1516059","l":"","na":1,"nb":1,"a":[["Pfam%3APF02839","Carbohydrate-binding module family 5/12"]],"b":[["NCBITaxon%3A1516059","Microbulbifer sp. ALW1"]]},{"id":"NCBITaxon:1517416","l":"Pseudidiomarina atlantica","na":1,"nb":1,"a":[["TED%3AAF-A0A094IVS2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A094IVS2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1517416","Pseudidiomarina atlantica"]]},{"id":"NCBITaxon:1517681","l":"Vibrio sp. ER1A","na":1,"nb":1,"a":[["TED%3AAF-A0A084TB57-F1-model_v4_TED02","TED novel fold AF-A0A084TB57-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1517681","Vibrio sp. ER1A"]]},{"id":"NCBITaxon:1517683","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A086FBC8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A086FBC8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1517683","Chryseobacterium sp. P1-3"]]},{"id":"NCBITaxon:1519471","l":"Streptomyces sp. NRRL S-4","na":1,"nb":1,"a":[["TED%3AAF-A0A0N0YGV9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0N0YGV9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1519471","Streptomyces sp. NRRL S-4"]]},{"id":"NCBITaxon:1519491","l":"Streptomyces sp. NRRL WC-3723","na":1,"nb":1,"a":[["TED%3AAF-A0A0M8X365-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0M8X365-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1519491","Streptomyces sp. NRRL WC-3723"]]},{"id":"NCBITaxon:1520803","l":"Pseudobutyrivibrio sp. C4","na":1,"nb":1,"a":[["TED%3AAF-A0A1I0ACI0-F1-model_v4_TED02","TED novel fold AF-A0A1I0ACI0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1520803","Pseudobutyrivibrio sp. C4"]]},{"id":"NCBITaxon:1520807","l":"Butyrivibrio sp. INlla16","na":1,"nb":1,"a":[["TED%3AAF-A0A1G6F9M5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G6F9M5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1520807","Butyrivibrio sp. INlla16"]]},{"id":"NCBITaxon:1520808","l":"Butyrivibrio sp. INlla14","na":1,"nb":1,"a":[["TED%3AAF-A0A1G5C891-F1-model_v4_TED01","TED novel fold AF-A0A1G5C891-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1520808","Butyrivibrio sp. INlla14"]]},{"id":"NCBITaxon:1520813","l":"Paracoccus sp. SM22M-07","na":1,"nb":1,"a":[["TED%3AAF-A0A1L9BU60-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L9BU60-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1520813","Paracoccus sp. SM22M-07"]]},{"id":"NCBITaxon:1520816","l":"Ruminococcaceae bacterium YAD3003","na":1,"nb":1,"a":[["TED%3AAF-A0A1H3HR91-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H3HR91-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1520816","Ruminococcaceae bacterium YAD3003"]]},{"id":"NCBITaxon:1520821","l":"Lachnospiraceae bacterium A10","na":1,"nb":1,"a":[["TED%3AAF-A0A1H6VE99-F1-model_v4_TED01","TED novel fold AF-A0A1H6VE99-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1520821","Lachnospiraceae bacterium A10"]]},{"id":"NCBITaxon:1520822","l":"Lachnospiraceae bacterium C10","na":1,"nb":1,"a":[["TED%3AAF-A0A1G4RBH0-F1-model_v4_TED01","TED novel fold AF-A0A1G4RBH0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1520822","Lachnospiraceae bacterium C10"]]},{"id":"NCBITaxon:1520826","l":"Lachnospiraceae bacterium XBB2008","na":1,"nb":1,"a":[["TED%3AAF-A0A1G5BX79-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G5BX79-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1520826","Lachnospiraceae bacterium XBB2008"]]},{"id":"NCBITaxon:1520828","l":"Lachnospiraceae bacterium YSD2013","na":1,"nb":1,"a":[["TED%3AAF-A0A1G4V7H1-F1-model_v4_TED01","TED novel fold AF-A0A1G4V7H1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1520828","Lachnospiraceae bacterium YSD2013"]]},{"id":"NCBITaxon:1520829","l":"Peptostreptococcaceae bacterium pGA-8","na":1,"nb":1,"a":[["TED%3AAF-A0A1I1YYQ5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1I1YYQ5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1520829","Peptostreptococcaceae bacterium pGA-8"]]},{"id":"NCBITaxon:1520830","l":"Prevotellaceae bacterium HUN156","na":1,"nb":1,"a":[["TED%3AAF-A0A1K1LQ12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1K1LQ12-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1520830","Prevotellaceae bacterium HUN156"]]},{"id":"NCBITaxon:1521402","l":"Mastigocladus laminosus WC112","na":1,"nb":1,"a":[["TED%3AAF-A0A370CKL0-F1-model_v4_TED01","TED novel fold AF-A0A370CKL0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1521402","Mastigocladus laminosus WC112"]]},{"id":"NCBITaxon:1522189","l":"Ceraceosorus guamensis","na":1,"nb":1,"a":[["TED%3AAF-A0A316VYV9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A316VYV9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1522189","Ceraceosorus guamensis"]]},{"id":"NCBITaxon:1522758","l":"Streptomyces sp. ADI95-16","na":1,"nb":1,"a":[["TED%3AAF-A0A3G4VPW2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3G4VPW2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1522758","Streptomyces sp. ADI95-16"]]},{"id":"NCBITaxon:1523415","l":"Sphingomonas sp. AAP5","na":1,"nb":1,"a":[["TED%3AAF-A0A4P6X9R5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P6X9R5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1523415","Sphingomonas sp. AAP5"]]},{"id":"NCBITaxon:1523418","l":"alpha proteobacterium AAP38","na":1,"nb":1,"a":[["TED%3AAF-A0A0N1BSA5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0N1BSA5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1523418","alpha proteobacterium AAP38"]]},{"id":"NCBITaxon:1524097","l":"Massilia glaciei","na":1,"nb":1,"a":[["TED%3AAF-A0A2U2HFI6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U2HFI6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1524097","Massilia glaciei"]]},{"id":"NCBITaxon:1525753","l":"Streptomyces sp. JS01","na":1,"nb":1,"a":[["TED%3AAF-A0A087K6S8-F1-model_v4_TED02","TED novel fold AF-A0A087K6S8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1525753","Streptomyces sp. JS01"]]},{"id":"NCBITaxon:1526762","l":"Vibrio sp. B183","na":1,"nb":1,"a":[["TED%3AAF-A0A086WSI7-F1-model_v4_TED02","TED novel fold AF-A0A086WSI7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1526762","Vibrio sp. B183"]]},{"id":"NCBITaxon:1527608","l":"Hydromonas duriensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4R6Y270-F1-model_v4_TED01","TED novel fold AF-A0A4R6Y270-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1527608","Hydromonas duriensis"]]},{"id":"NCBITaxon:1528101","l":"Vibrio sp. ES.044","na":1,"nb":1,"a":[["TED%3AAF-A0A559NC50-F1-model_v4_TED01","TED novel fold AF-A0A559NC50-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1528101","Vibrio sp. ES.044"]]},{"id":"NCBITaxon:1528773","l":"Janthinobacterium sp. AD80","na":1,"nb":1,"a":[["TED%3AAF-A0A2N7REY8-F1-model_v4_TED01","TED novel fold AF-A0A2N7REY8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1528773","Janthinobacterium sp. AD80"]]},{"id":"NCBITaxon:1529041","l":"Roseivivax jejudonensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1X6Y6C0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X6Y6C0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1529041","Roseivivax jejudonensis"]]},{"id":"NCBITaxon:1530123","l":"Acinetobacter seifertii","na":1,"nb":1,"a":[["TED%3AAF-A0A2M8MEQ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M8MEQ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1530123","Acinetobacter seifertii"]]},{"id":"NCBITaxon:1531429","l":"Berryella intestinalis","na":1,"nb":1,"a":[["TED%3AAF-A0A0A8B291-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A8B291-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1531429","Berryella intestinalis"]]},{"id":"NCBITaxon:1532350","l":"Metallosphaera tengchongensis","na":1,"nb":1,"a":[["TED%3AAF-A0A6N0NWZ4-F1-model_v4_TED02","TED novel fold AF-A0A6N0NWZ4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1532350","Metallosphaera tengchongensis"]]},{"id":"NCBITaxon:1532552","l":"Anaerobacillus isosaccharinicus","na":1,"nb":1,"a":[["TED%3AAF-A0A1S2M938-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1S2M938-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1532552","Anaerobacillus isosaccharinicus"]]},{"id":"NCBITaxon:1532906","l":"","na":1,"nb":1,"a":[["Pfam%3APF01934","Ribonuclease HepT-like"]],"b":[["NCBITaxon%3A1532906","Aphanizomenon flos-aquae 2012/KM1/D3"]]},{"id":"NCBITaxon:1535422","l":"Thalassotalea sp. ND16A","na":1,"nb":1,"a":[["TED%3AAF-A0A099KGF6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A099KGF6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1535422","Thalassotalea sp. ND16A"]]},{"id":"NCBITaxon:1536651","l":"Desulfosporosinus sp. Tol-M","na":1,"nb":1,"a":[["TED%3AAF-A0A0A2TS00-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A2TS00-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1536651","Desulfosporosinus sp. Tol-M"]]},{"id":"NCBITaxon:1536775","l":"Paenibacillus sp. FSL H7-0737","na":1,"nb":1,"a":[["TED%3AAF-A0A089ITK5-F1-model_v4_TED02","TED novel fold AF-A0A089ITK5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1536775","Paenibacillus sp. FSL H7-0737"]]},{"id":"NCBITaxon:1537702","l":"Delftia sp. 670","na":1,"nb":1,"a":[["TED%3AAF-A0A081J8I6-F1-model_v4_TED01","TED novel fold AF-A0A081J8I6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1537702","Delftia sp. 670"]]},{"id":"NCBITaxon:1538146","l":"Alteriqipengyuania lutimaris","na":1,"nb":1,"a":[["TED%3AAF-A0A395LNL2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A395LNL2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1538146","Alteriqipengyuania lutimaris"]]},{"id":"NCBITaxon:1540922","l":"Wallemia hederae","na":1,"nb":1,"a":[["TED%3AAF-A0A4T0FD79-F1-model_v4_TED01","TED novel fold AF-A0A4T0FD79-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1540922","Wallemia hederae"]]},{"id":"NCBITaxon:1542390","l":"Francisella frigiditurris","na":1,"nb":1,"a":[["TED%3AAF-A0A1J0KT66-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1J0KT66-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1542390","Francisella frigiditurris"]]},{"id":"NCBITaxon:154538","l":"Trametes pubescens","na":1,"nb":1,"a":[["TED%3AAF-A0A1M2W3Q5-F1-model_v4_TED01","TED novel fold AF-A0A1M2W3Q5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A154538","Trametes pubescens"]]},{"id":"NCBITaxon:1547283","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1L3MNT2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L3MNT2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1547283","Metabacillus harenarius"]]},{"id":"NCBITaxon:1547444","l":"Pseudoalteromonas sp. (strain PLSV)","na":1,"nb":1,"a":[["Pfam%3APF15892","BNR repeat-containing family member"]],"b":[["NCBITaxon%3A1547444","Pseudoalteromonas sp. PLSV"]]},{"id":"NCBITaxon:1547922","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0K8P774-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0K8P774-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1547922","Pseudideonella sakaiensis"]]},{"id":"NCBITaxon:1549638","l":"Quisquiliibacterium transsilvanicum","na":1,"nb":1,"a":[["TED%3AAF-A0A7W8HDM4-F1-model_v4_TED04","TED novel fold AF-A0A7W8HDM4-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1549638","Quisquiliibacterium transsilvanicum"]]},{"id":"NCBITaxon:1550","l":"Clostridium subterminale","na":1,"nb":1,"a":[["Pfam%3APF12544","Lysine-2,3-aminomutase"]],"b":[["NCBITaxon%3A1550","Clostridium subterminale"]]},{"id":"NCBITaxon:1550235","l":"Clostridium sp. KNHs216","na":1,"nb":1,"a":[["TED%3AAF-A0A542ALS0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A542ALS0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1550235","Clostridium sp. KNHs216"]]},{"id":"NCBITaxon:1550579","l":"Mucilaginibacter gotjawali","na":1,"nb":1,"a":[["TED%3AAF-A0A0X8X2M5-F1-model_v4_TED03","TED novel fold AF-A0A0X8X2M5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1550579","Mucilaginibacter gotjawali"]]},{"id":"NCBITaxon:1552121","l":"Leptolyngbya sp. NIES-2104","na":1,"nb":1,"a":[["TED%3AAF-A0A0P4V2F6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0P4V2F6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1552121","Leptolyngbya sp. NIES-2104"]]},{"id":"NCBITaxon:155417","l":"Monosporascus ibericus","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q4SZB0-F1-model_v4_TED01","TED novel fold AF-A0A4Q4SZB0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A155417","Monosporascus ibericus"]]},{"id":"NCBITaxon:1555241","l":"Caulochytrium protostelioides","na":1,"nb":1,"a":[["TED%3AAF-A0A4P9X4L6-F1-model_v4_TED01","TED novel fold AF-A0A4P9X4L6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1555241","Caulochytrium protostelioides"]]},{"id":"NCBITaxon:155925","l":"Nitrosospira sp. NRS527","na":1,"nb":1,"a":[["TED%3AAF-A0A811AEU4-F1-model_v4_TED01","TED novel fold AF-A0A811AEU4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A155925","Nitrosospira sp. NRS527"]]},{"id":"NCBITaxon:155974","l":"Actinokineospora terrae","na":1,"nb":1,"a":[["TED%3AAF-A0A1H9N3Z4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H9N3Z4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A155974","Actinokineospora terrae"]]},{"id":"NCBITaxon:155976","l":"Actinokineospora auranticolor","na":1,"nb":1,"a":[["TED%3AAF-A0A2S6GGX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S6GGX2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A155976","Actinokineospora auranticolor"]]},{"id":"NCBITaxon:1560234","l":"Halodesulfovibrio spirochaetisodalis","na":1,"nb":1,"a":[["TED%3AAF-A0A1B7XAE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B7XAE6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1560234","Halodesulfovibrio spirochaetisodalis"]]},{"id":"NCBITaxon:1561003","l":"Candidatus Ichthyocystis hellenicum","na":1,"nb":1,"a":[["TED%3AAF-A0A0S4M2T9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S4M2T9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1561003","Candidatus Ichthyocystis hellenicum"]]},{"id":"NCBITaxon:1561964","l":"Methanosphaera sp. WGK6","na":1,"nb":1,"a":[["TED%3AAF-A0A1D2X1R8-F1-model_v4_TED01","TED novel fold AF-A0A1D2X1R8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1561964","Methanosphaera sp. WGK6"]]},{"id":"NCBITaxon:1562603","l":"Microbulbifer rhizosphaerae","na":1,"nb":1,"a":[["TED%3AAF-A0A7W4Z867-F1-model_v4_TED06","TED novel fold AF-A0A7W4Z867-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A1562603","Microbulbifer rhizosphaerae"]]},{"id":"NCBITaxon:1563222","l":"Citrobacter pasteurii","na":1,"nb":1,"a":[["TED%3AAF-A0A6N6K4M5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N6K4M5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1563222","Citrobacter pasteurii"]]},{"id":"NCBITaxon:1563671","l":"Sulfitobacter undariae","na":1,"nb":1,"a":[["TED%3AAF-A0A7W6E4U0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W6E4U0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1563671","Sulfitobacter undariae"]]},{"id":"NCBITaxon:1564114","l":"Rhodococcus sp. B7740","na":1,"nb":1,"a":[["TED%3AAF-A0A0D5A6X9-F1-model_v4_TED03","TED novel fold AF-A0A0D5A6X9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1564114","Rhodococcus sp. B7740"]]},{"id":"NCBITaxon:1564164","l":"Blastococcus xanthinilyticus","na":1,"nb":1,"a":[["TED%3AAF-A0A5S5D581-F1-model_v4_TED03","TED novel fold AF-A0A5S5D581-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1564164","Blastococcus xanthinilyticus"]]},{"id":"NCBITaxon:1564506","l":"Rhodovulum sp. P5","na":1,"nb":1,"a":[["TED%3AAF-A0A1V0PUI0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V0PUI0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1564506","Rhodovulum sp. P5"]]},{"id":"NCBITaxon:1566283","l":"Sphingomonas sp. NFR04","na":1,"nb":1,"a":[["TED%3AAF-A0A1I3YWA6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1I3YWA6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1566283","Sphingomonas sp. NFR04"]]},{"id":"NCBITaxon:1569628","l":"Jaminaea rosea","na":1,"nb":1,"a":[["TED%3AAF-A0A316USJ9-F1-model_v4_TED03","TED novel fold AF-A0A316USJ9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1569628","Jaminaea rosea"]]},{"id":"NCBITaxon:1572656","l":"Ruminococcaceae bacterium CPB6","na":1,"nb":1,"a":[["TED%3AAF-A0A1W6WC59-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W6WC59-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1572656","Ruminococcaceae bacterium CPB6"]]},{"id":"NCBITaxon:1574262","l":"Sutterella sp. KLE1602","na":1,"nb":1,"a":[["TED%3AAF-A0A139JRX3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A139JRX3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1574262","Sutterella sp. KLE1602"]]},{"id":"NCBITaxon:1574623","l":"Lyngbya confervoides BDU141951","na":1,"nb":1,"a":[["TED%3AAF-A0A0C1V1F7-F1-model_v4_TED01","TED novel fold AF-A0A0C1V1F7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1574623","Lyngbya confervoides BDU141951"]]},{"id":"NCBITaxon:157733","l":"Alkalihalobacillus macyae","na":1,"nb":1,"a":[["TED%3AAF-A0A0J6FWV9-F1-model_v4_TED01","TED novel fold AF-A0A0J6FWV9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A208199","Guptibacillus hwajinpoensis"]]},{"id":"NCBITaxon:1577686","l":"Silvibacterium bohemicum","na":1,"nb":1,"a":[["TED%3AAF-A0A841JPR1-F1-model_v4_TED02","TED novel fold AF-A0A841JPR1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1577686","Silvibacterium bohemicum"]]},{"id":"NCBITaxon:1577780","l":"Phaeocystidibacter marisrubri","na":1,"nb":1,"a":[["TED%3AAF-A0A6L3ZHW6-F1-model_v4_TED03","TED novel fold AF-A0A6L3ZHW6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1577780","Phaeocystidibacter marisrubri"]]},{"id":"NCBITaxon:157779","l":"Kushneria marisflavi","na":1,"nb":1,"a":[["TED%3AAF-A0A240ULV8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A240ULV8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A157779","Kushneria marisflavi"]]},{"id":"NCBITaxon:1577791","l":"Candidatus Methanoplasma termitum","na":1,"nb":1,"a":[["TED%3AAF-A0A0A7LCU2-F1-model_v4_TED01","TED novel fold AF-A0A0A7LCU2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1577791","Candidatus Methanoplasma termitum"]]},{"id":"NCBITaxon:1577902","l":"Leisingera sp. ANG-M7","na":1,"nb":1,"a":[["TED%3AAF-A0A0C1IJ64-F1-model_v4_TED02","TED novel fold AF-A0A0C1IJ64-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1577902","Leisingera sp. ANG-M7"]]},{"id":"NCBITaxon:1577905","l":"Tateyamaria sp. ANG-S1","na":1,"nb":1,"a":[["TED%3AAF-A0A0B4CZX6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0B4CZX6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1577905","Tateyamaria sp. ANG-S1"]]},{"id":"NCBITaxon:1578720","l":"Helicobacter ailurogastricus","na":1,"nb":1,"a":[["TED%3AAF-A0A0K2X3G5-F1-model_v4_TED01","TED novel fold AF-A0A0K2X3G5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1578720","Helicobacter ailurogastricus"]]},{"id":"NCBITaxon:157907","l":"Desulfosporosinus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A358U7F5-F1-model_v4_TED02","TED novel fold AF-A0A358U7F5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A157907","Desulfosporosinus sp."]]},{"id":"NCBITaxon:1579333","l":"Limibacillus halophilus","na":1,"nb":1,"a":[["TED%3AAF-A0A839SUA2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A839SUA2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1579333","Limibacillus halophilus"]]},{"id":"NCBITaxon:1579370","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0B5HG27-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0B5HG27-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1579370","archaeon GW2011_AR10"]]},{"id":"NCBITaxon:1579376","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0B3ASZ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0B3ASZ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1579376","archaeon GW2011_AR18"]]},{"id":"NCBITaxon:158046","l":"Phaeomoniella chlamydospora","na":1,"nb":1,"a":[["TED%3AAF-A0A0G2HLS3-F1-model_v4_TED02","TED novel fold AF-A0A0G2HLS3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A158046","Phaeomoniella chlamydospora"]]},{"id":"NCBITaxon:1580596","l":"Phaeobacter piscinae","na":1,"nb":1,"a":[["TED%3AAF-A0A837DZ53-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A837DZ53-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1580596","Phaeobacter piscinae"]]},{"id":"NCBITaxon:1581124","l":"Neisseria sp. HMSC06F02","na":1,"nb":1,"a":[["TED%3AAF-A0A0D9LS50-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D9LS50-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1581124","Neisseria sp. HMSC06F02"]]},{"id":"NCBITaxon:1582974","l":"Ceratobasidium theobromae","na":1,"nb":1,"a":[["TED%3AAF-A0A5N5Q870-F1-model_v4_TED01","TED novel fold AF-A0A5N5Q870-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1582974","Ceratobasidium theobromae"]]},{"id":"NCBITaxon:1586287","l":"Lentzea guizhouensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1B2HN25-F1-model_v4_TED01","TED novel fold AF-A0A1B2HN25-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1586287","Lentzea guizhouensis"]]},{"id":"NCBITaxon:1586708","l":"Pandoraea sp. ISTKB","na":1,"nb":1,"a":[["TED%3AAF-A0A1E3LNT6-F1-model_v4_TED01","TED novel fold AF-A0A1E3LNT6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1586708","Pandoraea sp. ISTKB"]]},{"id":"NCBITaxon:1591054","l":"Thermococcus sp. EP1","na":1,"nb":1,"a":[["TED%3AAF-A0A0P8ZDE3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0P8ZDE3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1591054","Thermococcus sp. EP1"]]},{"id":"NCBITaxon:1592329","l":"Actinobacteria bacterium OV320","na":1,"nb":1,"a":[["TED%3AAF-A0A0N0N9B4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0N0N9B4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1592329","Actinobacteria bacterium OV320"]]},{"id":"NCBITaxon:1592727","l":"Streptomyces sp. MBRL 10","na":1,"nb":1,"a":[["TED%3AAF-A0A0D6WSL6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D6WSL6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1592727","Streptomyces sp. MBRL 10"]]},{"id":"NCBITaxon:1593482","l":"Massilia sp. YMA4","na":1,"nb":1,"a":[["TED%3AAF-A0A7U5XZA1-F1-model_v4_TED02","TED novel fold AF-A0A7U5XZA1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1593482","Massilia sp. YMA4"]]},{"id":"NCBITaxon:1603038","l":"Vibrio sp. qd031","na":1,"nb":1,"a":[["TED%3AAF-A0A1X1MV27-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1X1MV27-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1603038","Vibrio sp. qd031"]]},{"id":"NCBITaxon:1603293","l":"Flavobacterium sp. 316","na":1,"nb":1,"a":[["TED%3AAF-A0A0D6TP58-F1-model_v4_TED02","TED novel fold AF-A0A0D6TP58-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1603293","Flavobacterium sp. 316"]]},{"id":"NCBITaxon:1603886","l":"Bifidobacterium lemurum","na":1,"nb":1,"a":[["TED%3AAF-A0A261FPN5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A261FPN5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1603886","Bifidobacterium lemurum"]]},{"id":"NCBITaxon:1604835","l":"Achromatium sp. WMS2","na":1,"nb":1,"a":[["TED%3AAF-A0A0M1J9N5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0M1J9N5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1604835","Achromatium sp. WMS2"]]},{"id":"NCBITaxon:1605376","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0M2U440-F1-model_v4_TED01","TED novel fold AF-A0A0M2U440-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1605376","Clostridiales bacterium PH28_bin88"]]},{"id":"NCBITaxon:1605994","l":"Paenibacillus sp. NAIST15-1","na":1,"nb":1,"a":[["TED%3AAF-A0A1E1VIF5-F1-model_v4_TED01","TED novel fold AF-A0A1E1VIF5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1605994","Paenibacillus sp. NAIST15-1"]]},{"id":"NCBITaxon:1608422","l":"Henriciella algicola","na":1,"nb":1,"a":[["TED%3AAF-A0A399RH60-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A399RH60-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1608422","Henriciella algicola"]]},{"id":"NCBITaxon:1608465","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2B7GRS3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2B7GRS3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1608465","Natrinema thermophila"]]},{"id":"NCBITaxon:1609098","l":"Streptomyces sp. NRRL F-5122","na":1,"nb":1,"a":[["TED%3AAF-A0A0X3SCA4-F1-model_v4_TED02","TED novel fold AF-A0A0X3SCA4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1609098","Streptomyces sp. NRRL F-5122"]]},{"id":"NCBITaxon:1609133","l":"Streptomyces sp. NRRL S-495","na":1,"nb":1,"a":[["TED%3AAF-A0A0F4JA07-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0F4JA07-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1609133","Streptomyces sp. NRRL S-495"]]},{"id":"NCBITaxon:1609134","l":"Streptomyces sp. NRRL S-444","na":1,"nb":1,"a":[["TED%3AAF-A0A656TJD4-F1-model_v4_TED01","TED novel fold AF-A0A656TJD4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1609134","Streptomyces sp. NRRL S-444"]]},{"id":"NCBITaxon:1609272","l":"Streptomyces adustus","na":1,"nb":1,"a":[["TED%3AAF-A0A5N8V8R0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5N8V8R0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1609272","Streptomyces adustus"]]},{"id":"NCBITaxon:1609968","l":"Methanobrevibacter sp. YE315","na":1,"nb":1,"a":[["TED%3AAF-A0A125RB74-F1-model_v4_TED01","TED novel fold AF-A0A125RB74-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1609968","Methanobrevibacter sp. YE315"]]},{"id":"NCBITaxon:1609970","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0F2IXQ2-F1-model_v4_TED01","TED novel fold AF-A0A0F2IXQ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1609970","Candidatus Magnetovum chiemense"]]},{"id":"NCBITaxon:1611544","l":"Methylomonas sp. Kb3","na":1,"nb":1,"a":[["TED%3AAF-A0A2N0V705-F1-model_v4_TED01","TED novel fold AF-A0A2N0V705-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1611544","Methylomonas sp. Kb3"]]},{"id":"NCBITaxon:1612149","l":"Chryseobacterium limigenitum","na":1,"nb":1,"a":[["TED%3AAF-A0A1K2ISG6-F1-model_v4_TED01","TED novel fold AF-A0A1K2ISG6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1612149","Chryseobacterium limigenitum"]]},{"id":"NCBITaxon:1615909","l":"Geminocystis sp. NIES-3708","na":1,"nb":1,"a":[["TED%3AAF-A0A0D6AGM1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D6AGM1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1615909","Geminocystis sp. NIES-3708"]]},{"id":"NCBITaxon:1616","l":"Weissella kandleri","na":1,"nb":1,"a":[["TED%3AAF-A0A0R2JNV5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0R2JNV5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1616","Weissella kandleri"]]},{"id":"NCBITaxon:1616788","l":"Paenibacillus bovis","na":1,"nb":1,"a":[["TED%3AAF-A0A1X9T409-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X9T409-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1616788","Paenibacillus bovis"]]},{"id":"NCBITaxon:1617410","l":"Nitrospira sp. OLB3","na":1,"nb":1,"a":[["TED%3AAF-A0A136JXF7-F1-model_v4_TED03","TED novel fold AF-A0A136JXF7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1617410","Nitrospira sp. OLB3"]]},{"id":"NCBITaxon:1617415","l":"Chloroflexi bacterium OLB14","na":1,"nb":1,"a":[["TED%3AAF-A0A136L2M5-F1-model_v4_TED02","TED novel fold AF-A0A136L2M5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1617415","Chloroflexi bacterium OLB14"]]},{"id":"NCBITaxon:1617421","l":"Bacteroidetes bacterium OLB10","na":1,"nb":1,"a":[["TED%3AAF-A0A136NN96-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A136NN96-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1617421","Bacteroidetes bacterium OLB10"]]},{"id":"NCBITaxon:1617423","l":"Acidobacteria bacterium OLB17","na":1,"nb":1,"a":[["TED%3AAF-A0A136KB18-F1-model_v4_TED03","TED novel fold AF-A0A136KB18-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1617423","Acidobacteria bacterium OLB17"]]},{"id":"NCBITaxon:1617426","l":"candidate division WS6 bacterium OLB20","na":1,"nb":1,"a":[["TED%3AAF-A0A136LWE5-F1-model_v4_TED01","TED novel fold AF-A0A136LWE5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1617426","candidate division WS6 bacterium OLB20"]]},{"id":"NCBITaxon:1617967","l":"Granulicella sp. 5B5","na":1,"nb":1,"a":[["TED%3AAF-A0A7D8FKC4-F1-model_v4_TED02","TED novel fold AF-A0A7D8FKC4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1617967","Granulicella sp. 5B5"]]},{"id":"NCBITaxon:1618342","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1YIE7-F1-model_v4_TED02","TED novel fold AF-A0A0G1YIE7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1618342","candidate division CPR1 bacterium GW2011_GWC1_49_13"]]},{"id":"NCBITaxon:1618381","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1PMB0-F1-model_v4_TED03","TED novel fold AF-A0A0G1PMB0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1618381","Candidatus Collierbacteria bacterium GW2011_GWA2_46_26"]]},{"id":"NCBITaxon:1618388","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A837IEC1-F1-model_v4_TED01","TED novel fold AF-A0A837IEC1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618388","Candidatus Collierbacteria bacterium GW2011_GWB2_45_17"]]},{"id":"NCBITaxon:1618405","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G0RDL7-F1-model_v4_TED02","TED novel fold AF-A0A0G0RDL7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1618405","Candidatus Curtissbacteria bacterium GW2011_GWA1_40_16"]]},{"id":"NCBITaxon:1618497","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G0H9R1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G0H9R1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618497","Microgenomates group bacterium GW2011_GWA2_37_6"]]},{"id":"NCBITaxon:1618524","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A837IEJ1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A837IEJ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618524","Microgenomates group bacterium GW2011_GWC1_44_37"]]},{"id":"NCBITaxon:1618531","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1MYW8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G1MYW8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618531","Microgenomates group bacterium GW2011_GWC2_45_8"]]},{"id":"NCBITaxon:1618578","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1DMI8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G1DMI8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618578","Candidatus Woesebacteria bacterium GW2011_GWB1_43_14"]]},{"id":"NCBITaxon:1618586","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0F9YKM8-F1-model_v4_TED01","TED novel fold AF-A0A0F9YKM8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618586","Candidatus Woesebacteria bacterium GW2011_GWC2_31_9"]]},{"id":"NCBITaxon:1618590","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1V118-F1-model_v4_TED02","TED novel fold AF-A0A0G1V118-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1618590","Candidatus Woesebacteria bacterium GW2011_GWC2_47_16"]]},{"id":"NCBITaxon:1618665","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1W7L0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0G1W7L0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1618665","Candidatus Jorgensenbacteria bacterium GW2011_GWB1_50_10"]]},{"id":"NCBITaxon:1618666","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1XUZ7-F1-model_v4_TED02","TED novel fold AF-A0A0G1XUZ7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1618666","Candidatus Jorgensenbacteria bacterium GW2011_GWC1_48_8"]]},{"id":"NCBITaxon:1618668","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1YS41-F1-model_v4_TED01","TED novel fold AF-A0A0G1YS41-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618668","Candidatus Kaiserbacteria bacterium GW2011_GWA1_50_28"]]},{"id":"NCBITaxon:1618695","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G0S822-F1-model_v4_TED01","TED novel fold AF-A0A0G0S822-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618695","Candidatus Moranbacteria bacterium GW2011_GWA2_39_41"]]},{"id":"NCBITaxon:1618699","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G0TCH8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G0TCH8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618699","Candidatus Moranbacteria bacterium GW2011_GWC2_40_12"]]},{"id":"NCBITaxon:1618715","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G0D426-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0G0D426-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1618715","Candidatus Moranbacteria bacterium GW2011_GWF1_34_10"]]},{"id":"NCBITaxon:1618789","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1N099-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0G1N099-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1618789","Parcubacteria group bacterium GW2011_GWA1_Parcubacteria_45_10"]]},{"id":"NCBITaxon:1618803","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1YL44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G1YL44-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618803","Parcubacteria group bacterium GW2011_GWA1_56_13"]]},{"id":"NCBITaxon:1618827","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1ED26-F1-model_v4_TED01","TED novel fold AF-A0A0G1ED26-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618827","Parcubacteria group bacterium GW2011_GWA2_43_17"]]},{"id":"NCBITaxon:1618845","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1T721-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0G1T721-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1618845","Parcubacteria group bacterium GW2011_GWA2_47_64"]]},{"id":"NCBITaxon:1618850","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1XAM6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0G1XAM6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1618850","Parcubacteria group bacterium GW2011_GWA2_48_9"]]},{"id":"NCBITaxon:1618852","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1Y838-F1-model_v4_TED01","TED novel fold AF-A0A0G1Y838-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618852","Parcubacteria group bacterium GW2011_GWA2_49_9"]]},{"id":"NCBITaxon:1618864","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G0NBQ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G0NBQ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618864","Parcubacteria group bacterium GW2011_GWB1_38_8"]]},{"id":"NCBITaxon:1618872","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1F5H8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0G1F5H8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1618872","Parcubacteria group bacterium GW2011_GWB1_43_6"]]},{"id":"NCBITaxon:1618900","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G0NFW5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G0NFW5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618900","Parcubacteria group bacterium GW2011_GWC1_39_29"]]},{"id":"NCBITaxon:1618918","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0F9YN28-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F9YN28-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618918","Parcubacteria group bacterium GW2011_GWC2_32_10"]]},{"id":"NCBITaxon:1618993","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1QJK0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0G1QJK0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1618993","Candidatus Uhrbacteria bacterium GW2011_GWE2_45_35"]]},{"id":"NCBITaxon:1618994","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1Q703-F1-model_v4_TED01","TED novel fold AF-A0A0G1Q703-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618994","Candidatus Uhrbacteria bacterium GW2011_GWE2_46_68"]]},{"id":"NCBITaxon:1619010","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G0J416-F1-model_v4_TED02","TED novel fold AF-A0A0G0J416-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1619010","Candidatus Wolfebacteria bacterium GW2011_GWC1_37_10"]]},{"id":"NCBITaxon:1619039","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1A845-F1-model_v4_TED02","TED novel fold AF-A0A0G1A845-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1619039","Candidatus Magasanikbacteria bacterium GW2011_GWA2_42_32"]]},{"id":"NCBITaxon:1619042","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1NZM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G1NZM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1619042","Candidatus Magasanikbacteria bacterium GW2011_GWA2_46_17"]]},{"id":"NCBITaxon:1619044","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G2AJX8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G2AJX8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1619044","Candidatus Magasanikbacteria bacterium GW2011_GWA2_56_11"]]},{"id":"NCBITaxon:1619057","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1JX42-F1-model_v4_TED02","TED novel fold AF-A0A0G1JX42-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1619057","Candidatus Peregrinibacteria bacterium GW2011_GWA2_44_7"]]},{"id":"NCBITaxon:1619058","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1TF34-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G1TF34-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1619058","Candidatus Peregrinibacteria bacterium GW2011_GWA2_47_7"]]},{"id":"NCBITaxon:1619059","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1YBX6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G1YBX6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1619059","Candidatus Peregrinibacteria bacterium GW2011_GWA2_54_9"]]},{"id":"NCBITaxon:1619060","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G2A8E9-F1-model_v4_TED02","TED novel fold AF-A0A0G2A8E9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1619060","Candidatus Peribacteria bacterium GW2011_GWB1_54_5"]]},{"id":"NCBITaxon:1619076","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1DAV5-F1-model_v4_TED01","TED novel fold AF-A0A0G1DAV5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1619076","candidate division TM6 bacterium GW2011_GWE2_42_60"]]},{"id":"NCBITaxon:1619090","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G0DMJ6-F1-model_v4_TED01","TED novel fold AF-A0A0G0DMJ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1619090","candidate division WS6 bacterium GW2011_GWC1_36_11"]]},{"id":"NCBITaxon:1619091","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G0EVW7-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A0G0EVW7-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A1619091","candidate division WS6 bacterium GW2011_GWC2_36_7"]]},{"id":"NCBITaxon:1619097","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G0EMC3-F1-model_v4_TED01","TED novel fold AF-A0A0G0EMC3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1619097","candidate division WS6 bacterium GW2011_GWF1_35_23"]]},{"id":"NCBITaxon:1619100","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0G0N089-F1-model_v4_TED01","TED novel fold AF-A0A0G0N089-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1619100","candidate division WS6 bacterium GW2011_GWF2_39_15"]]},{"id":"NCBITaxon:1619153","l":"Cohnella sp. LGH","na":1,"nb":1,"a":[["TED%3AAF-A0A8A5Z8C7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A8A5Z8C7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1619153","Cohnella sp. LGH"]]},{"id":"NCBITaxon:1619233","l":"Bradyrhizobium sp. LTSPM299","na":1,"nb":1,"a":[["TED%3AAF-A0A0D7Q9Z8-F1-model_v4_TED01","TED novel fold AF-A0A0D7Q9Z8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1619233","Bradyrhizobium sp. LTSPM299"]]},{"id":"NCBITaxon:1619234","l":"Anaerobium acetethylicum","na":1,"nb":1,"a":[["TED%3AAF-A0A1D3TWF5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1D3TWF5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1619234","Anaerobium acetethylicum"]]},{"id":"NCBITaxon:1620421","l":"Hoeflea sp. IMCC20628","na":1,"nb":1,"a":[["TED%3AAF-A0A0F7PLE4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0F7PLE4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1620421","Hoeflea sp. IMCC20628"]]},{"id":"NCBITaxon:162156","l":"uncultured Bacteroides sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A1C5XFB7-F1-model_v4_TED02","TED novel fold AF-A0A1C5XFB7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A162156","uncultured Bacteroides sp."]]},{"id":"NCBITaxon:1628158","l":"Mariniphaga sediminis","na":1,"nb":1,"a":[["TED%3AAF-A0A399CX27-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A399CX27-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1628158","Mariniphaga sediminis"]]},{"id":"NCBITaxon:1628193","l":"Chromobacterium sp. LK1","na":1,"nb":1,"a":[["TED%3AAF-A0A0J6KNS5-F1-model_v4_TED01","TED novel fold AF-A0A0J6KNS5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1628193","Chromobacterium sp. LK1"]]},{"id":"NCBITaxon:1628833","l":"Pseudomonas sp. ES3-33","na":1,"nb":1,"a":[["TED%3AAF-A0A0D8ZZX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D8ZZX7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1628833","Pseudomonas sp. ES3-33"]]},{"id":"NCBITaxon:1629717","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0F2PPN4-F1-model_v4_TED02","TED novel fold AF-A0A0F2PPN4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1629717","Peptococcaceae bacterium BRH_c4b"]]},{"id":"NCBITaxon:1629718","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0F2RDH0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F2RDH0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1629718","Rhodospirillaceae bacterium BRH_c57"]]},{"id":"NCBITaxon:1629722","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0F2P724-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F2P724-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1629722","Gammaproteobacteria bacterium BRH_c0"]]},{"id":"NCBITaxon:163003","l":"","na":1,"nb":1,"a":[["Pfam%3APF01934","Ribonuclease HepT-like"]],"b":[["NCBITaxon%3A163003","Thermococcus cleftensis"]]},{"id":"NCBITaxon:1630141","l":"Candidatus Nitrosoglobus terrae","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q2SLZ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q2SLZ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1630141","Candidatus Nitrosoglobus terrae"]]},{"id":"NCBITaxon:1630166","l":"Bifidobacterium myosotis","na":1,"nb":1,"a":[["TED%3AAF-A0A5M9ZH21-F1-model_v4_TED01","TED novel fold AF-A0A5M9ZH21-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1630166","Bifidobacterium myosotis"]]},{"id":"NCBITaxon:1631356","l":"Luteipulveratus halotolerans","na":1,"nb":1,"a":[["TED%3AAF-A0A0L6CK14-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0L6CK14-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1631356","Luteipulveratus halotolerans"]]},{"id":"NCBITaxon:1632864","l":"Planctomyces sp. SH-PL14","na":1,"nb":1,"a":[["TED%3AAF-A0A142X1A9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A142X1A9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1632864","Planctomyces sp. SH-PL14"]]},{"id":"NCBITaxon:1633631","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0P1MHJ7-F1-model_v4_TED01","TED novel fold AF-A0A0P1MHJ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1633631","Candidatus Kryptonium thompsonii"]]},{"id":"NCBITaxon:1635171","l":"Pokkaliibacter plantistimulans","na":1,"nb":1,"a":[["TED%3AAF-A0A318C1K6-F1-model_v4_TED02","TED novel fold AF-A0A318C1K6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1635171","Pokkaliibacter plantistimulans"]]},{"id":"NCBITaxon:1635258","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A101DGG6-F1-model_v4_TED02","TED novel fold AF-A0A101DGG6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1635258","Desulfonauticus sp. 38_4375"]]},{"id":"NCBITaxon:1635287","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A101F534-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A101F534-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1635287","Methanosarcinales archeaon 56_1174"]]},{"id":"NCBITaxon:1636719","l":"Psychrobacillus lasiicapitis","na":1,"nb":1,"a":[["TED%3AAF-A0A544SVH9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A544SVH9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1636719","Psychrobacillus lasiicapitis"]]},{"id":"NCBITaxon:1637999","l":"Verrucomicrobia bacterium IMCC26134","na":1,"nb":1,"a":[["TED%3AAF-A0A0E3YY29-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A0E3YY29-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1637999","Verrucomicrobia bacterium IMCC26134"]]},{"id":"NCBITaxon:1638099","l":"Salinarimonas soli","na":1,"nb":1,"a":[["TED%3AAF-A0A5B2VF65-F1-model_v4_TED03","TED novel fold AF-A0A5B2VF65-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1638099","Salinarimonas soli"]]},{"id":"NCBITaxon:1638939","l":"Streptomyces sp. KE1","na":1,"nb":1,"a":[["TED%3AAF-A0A0H1ADU0-F1-model_v4_TED01","TED novel fold AF-A0A0H1ADU0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1638939","Streptomyces sp. KE1"]]},{"id":"NCBITaxon:1639035","l":"Ancylomarina subtilis","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q7VJ86-F1-model_v4_TED01","TED novel fold AF-A0A4Q7VJ86-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1639035","Ancylomarina subtilis"]]},{"id":"NCBITaxon:1639133","l":"Citrobacter portucalensis","na":1,"nb":1,"a":[["TED%3AAF-A0A7I7D4I9-F1-model_v4_TED01","TED novel fold AF-A0A7I7D4I9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1639133","Citrobacter portucalensis"]]},{"id":"NCBITaxon:1639348","l":"Magnetospirillum sp. ME-1","na":1,"nb":1,"a":[["TED%3AAF-A0A1W6CQ93-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1W6CQ93-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1639348","Magnetospirillum sp. ME-1"]]},{"id":"NCBITaxon:1639689","l":"Pontivivens insulae","na":1,"nb":1,"a":[["TED%3AAF-A0A2R8A870-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2R8A870-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1639689","Pontivivens insulae"]]},{"id":"NCBITaxon:1640508","l":"Candidatus Dadabacteria bacterium CSP1-2","na":1,"nb":1,"a":[["TED%3AAF-A0A0T5ZT54-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0T5ZT54-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1640508","Candidatus Dadabacteria bacterium CSP1-2"]]},{"id":"NCBITaxon:1640674","l":"Williamwhitmania taraxaci","na":1,"nb":1,"a":[["TED%3AAF-A0A1G6THB4-F1-model_v4_TED03","TED novel fold AF-A0A1G6THB4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1640674","Williamwhitmania taraxaci"]]},{"id":"NCBITaxon:1641389","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A101HI13-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A101HI13-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1641389","candidate division WS6 bacterium 34_10"]]},{"id":"NCBITaxon:1642299","l":"Streptomyces alfalfae","na":1,"nb":1,"a":[["TED%3AAF-A0A7T4PGJ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T4PGJ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1642299","Streptomyces alfalfae"]]},{"id":"NCBITaxon:1642303","l":"Nonomuraea zeae","na":1,"nb":1,"a":[["TED%3AAF-A0A5S4G4F8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5S4G4F8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1642303","Nonomuraea zeae"]]},{"id":"NCBITaxon:164332","l":"Roseicyclus mahoneyensis","na":1,"nb":1,"a":[["TED%3AAF-A0A316GQD4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A316GQD4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A164332","Roseicyclus mahoneyensis"]]},{"id":"NCBITaxon:1643451","l":"Sphingobacterium sp. Ag1","na":1,"nb":1,"a":[["TED%3AAF-A0A0M2XSW5-F1-model_v4_TED04","TED novel fold AF-A0A0M2XSW5-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1643451","Sphingobacterium sp. Ag1"]]},{"id":"NCBITaxon:1645681","l":"Nakamurella silvestris","na":1,"nb":1,"a":[["TED%3AAF-A0A399UJU9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A399UJU9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1645681","Nakamurella silvestris"]]},{"id":"NCBITaxon:164756","l":"Mycobacterium sp. MCS","na":1,"nb":1,"a":[["TED%3AAF-A0A5Q5BFH8-F1-model_v4_TED01","TED novel fold AF-A0A5Q5BFH8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A164756","Mycobacterium sp. MCS"]]},{"id":"NCBITaxon:1647582","l":"Wenyingzhuangia aestuarii","na":1,"nb":1,"a":[["Pfam%3APF18040","beta porphyranase A C-terminal"]],"b":[["NCBITaxon%3A1647582","Wenyingzhuangia aestuarii"]]},{"id":"NCBITaxon:1648404","l":"Aurantiacibacter atlanticus","na":1,"nb":1,"a":[["TED%3AAF-A0A0H4VAN8-F1-model_v4_TED01","TED novel fold AF-A0A0H4VAN8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1648404","Aurantiacibacter atlanticus"]]},{"id":"NCBITaxon:164851","l":"uncultured soil bacterium","na":1,"nb":1,"a":[["IDPO%3A0000033","flexible linker"]],"b":[["NCBITaxon%3A164851","uncultured soil bacterium"]]},{"id":"NCBITaxon:1649266","l":"Pontibacter mucosus","na":1,"nb":1,"a":[["TED%3AAF-A0A2T5YD72-F1-model_v4_TED02","TED novel fold AF-A0A2T5YD72-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1649266","Pontibacter mucosus"]]},{"id":"NCBITaxon:1649877","l":"Pseudomonas sp. CCOS 191","na":1,"nb":1,"a":[["TED%3AAF-A0A0F7Y2R1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0F7Y2R1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1649877","Pseudomonas sp. CCOS 191"]]},{"id":"NCBITaxon:1650663","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A4R1QMU8-F1-model_v4_TED06","TED novel fold AF-A0A4R1QMU8-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A1650663","Allofournierella massiliensis"]]},{"id":"NCBITaxon:165185","l":"uncultured Eubacterium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A1C6GM73-F1-model_v4_TED04","TED novel fold AF-A0A1C6GM73-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A165185","uncultured Eubacterium sp."]]},{"id":"NCBITaxon:1652831","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0H3ZNT2-F1-model_v4_TED01","TED novel fold AF-A0A0H3ZNT2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1652831","Vibrio sp. FF_286"]]},{"id":"NCBITaxon:1653476","l":"Caldimicrobium thiodismutans","na":1,"nb":1,"a":[["TED%3AAF-A0A0U4W3M4-F1-model_v4_TED01","TED novel fold AF-A0A0U4W3M4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1653476","Caldimicrobium thiodismutans"]]},{"id":"NCBITaxon:1653850","l":"Planctomyces bekefii","na":1,"nb":1,"a":[["TED%3AAF-A0A5C6M4E2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5C6M4E2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1653850","Planctomyces bekefii"]]},{"id":"NCBITaxon:1655277","l":"Brevibacillus gelatini","na":1,"nb":1,"a":[["TED%3AAF-A0A3M8BF35-F1-model_v4_TED02","TED novel fold AF-A0A3M8BF35-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1655277","Brevibacillus gelatini"]]},{"id":"NCBITaxon:1655435","l":"Serinibacter arcticus","na":1,"nb":1,"a":[["TED%3AAF-A0A2U1ZSC6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U1ZSC6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1655435","Serinibacter arcticus"]]},{"id":"NCBITaxon:1655592","l":"Cryomorphaceae bacterium BACL21 MAG-121220-bin10","na":1,"nb":1,"a":[["TED%3AAF-A0A0R2RYD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0R2RYD6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1655592","Cryomorphaceae bacterium BACL21 MAG-121220-bin10"]]},{"id":"NCBITaxon:1655611","l":"SAR86 cluster bacterium BACL1 MAG-120619-bin26","na":1,"nb":1,"a":[["TED%3AAF-A0A0R2UVS8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0R2UVS8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1655611","SAR86 cluster bacterium BACL1 MAG-120619-bin26"]]},{"id":"NCBITaxon:1655633","l":"Actinobacteria bacterium BACL2 MAG-120507-bin38","na":1,"nb":1,"a":[["TED%3AAF-A0A0R2WX30-F1-model_v4_TED01","TED novel fold AF-A0A0R2WX30-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1655633","Actinobacteria bacterium BACL2 MAG-120507-bin38"]]},{"id":"NCBITaxon:165597","l":"Crocosphaera watsonii WH 8501","na":1,"nb":1,"a":[["TED%3AAF-Q4C993-F1-model_v4_TED03","TED novel fold AF-Q4C993-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A165597","Crocosphaera watsonii WH 8501"]]},{"id":"NCBITaxon:1658765","l":"Marinobacter subterrani","na":1,"nb":1,"a":[["TED%3AAF-A0A0J7J4S0-F1-model_v4_TED02","TED novel fold AF-A0A0J7J4S0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1658765","Marinobacter subterrani"]]},{"id":"NCBITaxon:1659195","l":"Parcubacteria bacterium C7867-001","na":1,"nb":1,"a":[["TED%3AAF-A0A0L0LMR2-F1-model_v4_TED01","TED novel fold AF-A0A0L0LMR2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1659195","Parcubacteria bacterium C7867-001"]]},{"id":"NCBITaxon:1659202","l":"Parcubacteria bacterium C7867-008","na":1,"nb":1,"a":[["TED%3AAF-A0A0L0LGW9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0L0LGW9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1659202","Parcubacteria bacterium C7867-008"]]},{"id":"NCBITaxon:1660097","l":"Devosia sp. SCN 66-27","na":1,"nb":1,"a":[["TED%3AAF-A0A1E4AWJ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E4AWJ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1660097","Devosia sp. SCN 66-27"]]},{"id":"NCBITaxon:1660099","l":"Erythrobacter sp. SCN 62-14","na":1,"nb":1,"a":[["TED%3AAF-A0A1E4B557-F1-model_v4_TED01","TED novel fold AF-A0A1E4B557-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1660099","Erythrobacter sp. SCN 62-14"]]},{"id":"NCBITaxon:1660104","l":"Lautropia sp. SCN 69-89","na":1,"nb":1,"a":[["TED%3AAF-A0A1D2SDE0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1D2SDE0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1660104","Lautropia sp. SCN 69-89"]]},{"id":"NCBITaxon:1660128","l":"Phenylobacterium sp. SCN 69-14","na":1,"nb":1,"a":[["TED%3AAF-A0A1D2TRD7-F1-model_v4_TED01","TED novel fold AF-A0A1D2TRD7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1660128","Phenylobacterium sp. SCN 69-14"]]},{"id":"NCBITaxon:1660129","l":"Phenylobacterium sp. SCN 70-31","na":1,"nb":1,"a":[["TED%3AAF-A0A1E4GQB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E4GQB9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1660129","Phenylobacterium sp. SCN 70-31"]]},{"id":"NCBITaxon:1660139","l":"Rubrivivax sp. SCN 70-15","na":1,"nb":1,"a":[["TED%3AAF-A0A1E4PV28-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E4PV28-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1660139","Rubrivivax sp. SCN 70-15"]]},{"id":"NCBITaxon:1660152","l":"Variovorax sp. SCN 67-85","na":1,"nb":1,"a":[["TED%3AAF-A0A1E4J2S9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E4J2S9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1660152","Variovorax sp. SCN 67-85"]]},{"id":"NCBITaxon:1660161","l":"Comamonadaceae bacterium SCN 68-20","na":1,"nb":1,"a":[["TED%3AAF-A0A1E4LPY3-F1-model_v4_TED01","TED novel fold AF-A0A1E4LPY3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1660161","Comamonadaceae bacterium SCN 68-20"]]},{"id":"NCBITaxon:1660164","l":"Nitrosomonadales bacterium SCN 54-20","na":1,"nb":1,"a":[["TED%3AAF-A0A1E4GKC2-F1-model_v4_TED01","TED novel fold AF-A0A1E4GKC2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1660164","Nitrosomonadales bacterium SCN 54-20"]]},{"id":"NCBITaxon:1662404","l":"Streptomyces sp. GKU 895","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4E5Y3-F1-model_v4_TED02","TED novel fold AF-A0A1V4E5Y3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1662404","Streptomyces sp. GKU 895"]]},{"id":"NCBITaxon:1663685","l":"Pedobacter sp. BMA","na":1,"nb":1,"a":[["TED%3AAF-A0A0J0Y946-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0J0Y946-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1663685","Pedobacter sp. BMA"]]},{"id":"NCBITaxon:1664068","l":"bacterium 336/3","na":1,"nb":1,"a":[["TED%3AAF-A0A0N0CYH9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0N0CYH9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1664068","bacterium 336/3"]]},{"id":"NCBITaxon:1666904","l":"Oceanicaulis sp. HLUCCA04","na":1,"nb":1,"a":[["TED%3AAF-A0A0P7VI28-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0P7VI28-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1666904","Oceanicaulis sp. HLUCCA04"]]},{"id":"NCBITaxon:1666913","l":"Rhodobacteraceae bacterium HLUCCA08","na":1,"nb":1,"a":[["TED%3AAF-A0A0P7VN22-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0P7VN22-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1666913","Rhodobacteraceae bacterium HLUCCA08"]]},{"id":"NCBITaxon:1667024","l":"Vibrio algivorus","na":1,"nb":1,"a":[["TED%3AAF-A0A557NSY4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A557NSY4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1667024","Vibrio algivorus"]]},{"id":"NCBITaxon:1670455","l":"Sulfodiicoccus acidiphilus","na":1,"nb":1,"a":[["TED%3AAF-A0A348B6D9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A348B6D9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1670455","Sulfodiicoccus acidiphilus"]]},{"id":"NCBITaxon:1670800","l":"Aquibium oceanicum","na":1,"nb":1,"a":[["TED%3AAF-A0A1L3SXT9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1L3SXT9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1670800","Aquibium oceanicum"]]},{"id":"NCBITaxon:1673428","l":"Cuniculiplasma divulgatum","na":1,"nb":1,"a":[["TED%3AAF-A0A1N5S5J2-F1-model_v4_TED02","TED novel fold AF-A0A1N5S5J2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1673428","Cuniculiplasma divulgatum"]]},{"id":"NCBITaxon:167539","l":"","na":1,"nb":1,"a":[["TED%3AAF-Q7VCX4-F1-model_v4_TED08","TED novel fold AF-Q7VCX4-F1-model_v4_TED08"]],"b":[["NCBITaxon%3A167539","Prochlorococcus marinus subsp. marinus str. CCMP1375"]]},{"id":"NCBITaxon:1675527","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0J9EEL6-F1-model_v4_TED01","TED novel fold AF-A0A0J9EEL6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1675527","Candidatus Rhodobacter oscarellae"]]},{"id":"NCBITaxon:1675530","l":"Acinetobacter genomosp. 33YU","na":1,"nb":1,"a":[["TED%3AAF-A0A1V2V0J6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V2V0J6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1675530","Acinetobacter genomosp. 33YU"]]},{"id":"NCBITaxon:1675788","l":"Paracoccus onubensis","na":1,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_IPL","Metallophore-associated isochorismate pyruvate-lyase family"]],"b":[["NCBITaxon%3A1675788","Paracoccus onubensis"]]},{"id":"NCBITaxon:1677857","l":"Acetivibrio saccincola","na":1,"nb":1,"a":[["TED%3AAF-A0A2S8RBD2-F1-model_v4_TED03","TED novel fold AF-A0A2S8RBD2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1677857","Acetivibrio saccincola"]]},{"id":"NCBITaxon:1678841","l":"Lentimicrobium saccharophilum","na":1,"nb":1,"a":[["TED%3AAF-A0A0S7BSF5-F1-model_v4_TED01","TED novel fold AF-A0A0S7BSF5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1678841","Lentimicrobium saccharophilum"]]},{"id":"NCBITaxon:1679083","l":"Natrarchaeobius chitinivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A3N6M7R2-F1-model_v4_TED01","TED novel fold AF-A0A3N6M7R2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1679083","Natrarchaeobius chitinivorans"]]},{"id":"NCBITaxon:1685010","l":"Chryseobacterium glaciei","na":1,"nb":1,"a":[["TED%3AAF-A0A172XRJ3-F1-model_v4_TED03","TED novel fold AF-A0A172XRJ3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1685010","Chryseobacterium glaciei"]]},{"id":"NCBITaxon:1685377","l":"Microbulbifer sp. ZGT114","na":1,"nb":1,"a":[["TED%3AAF-A0A0X3UAA2-F1-model_v4_TED02","TED novel fold AF-A0A0X3UAA2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1685377","Microbulbifer sp. ZGT114"]]},{"id":"NCBITaxon:1688639","l":"Noviherbaspirillum humi","na":1,"nb":1,"a":[["TED%3AAF-A0A239G4L3-F1-model_v4_TED01","TED novel fold AF-A0A239G4L3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1688639","Noviherbaspirillum humi"]]},{"id":"NCBITaxon:1688776","l":"Bacteroidales bacterium 6E","na":1,"nb":1,"a":[["TED%3AAF-A0A0K8QZY2-F1-model_v4_TED05","TED novel fold AF-A0A0K8QZY2-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1688776","Bacteroidales bacterium 6E"]]},{"id":"NCBITaxon:1690485","l":"Betaproteobacteria bacterium UKL13-2","na":1,"nb":1,"a":[["TED%3AAF-A0A142LLM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A142LLM3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1690485","Betaproteobacteria bacterium UKL13-2"]]},{"id":"NCBITaxon:1696036","l":"Candidatus Finniella inopinata","na":1,"nb":1,"a":[["TED%3AAF-A0A4V2DZL4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4V2DZL4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1696036","Candidatus Finniella inopinata"]]},{"id":"NCBITaxon:1697043","l":"Bordetella sp. H567","na":1,"nb":1,"a":[["TED%3AAF-A0A1B2RAG0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B2RAG0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1697043","Bordetella sp. H567"]]},{"id":"NCBITaxon:1697557","l":"Marinobacter confluentis","na":1,"nb":1,"a":[["TED%3AAF-A0A4Z1BTW9-F1-model_v4_TED01","TED novel fold AF-A0A4Z1BTW9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1697557","Marinobacter confluentis"]]},{"id":"NCBITaxon:169760","l":"Paenibacillus stellifer","na":1,"nb":1,"a":[["TED%3AAF-A0A089LNP8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A089LNP8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A169760","Paenibacillus stellifer"]]},{"id":"NCBITaxon:1698281","l":"candidate division MSBL1 archaeon SCGC-AAA382C18","na":1,"nb":1,"a":[["TED%3AAF-A0A133VH86-F1-model_v4_TED01","TED novel fold AF-A0A133VH86-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1698281","candidate division MSBL1 archaeon SCGC-AAA382C18"]]},{"id":"NCBITaxon:170000","l":"Phakopsora pachyrhizi","na":1,"nb":1,"a":[["TED%3AAF-A0A0S1MKM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S1MKM4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A170000","Phakopsora pachyrhizi"]]},{"id":"NCBITaxon:1700835","l":"Candidatus Bathyarchaeota archaeon BA1","na":1,"nb":1,"a":[["TED%3AAF-A0A0P9I0I1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0P9I0I1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1700835","Candidatus Bathyarchaeota archaeon BA1"]]},{"id":"NCBITaxon:1702","l":"Brevibacterium sterolicum","na":1,"nb":1,"a":[["Pfam%3APF22500","GMC oxidoreductase, C-terminal"]],"b":[["NCBITaxon%3A1702","Brevibacterium sterolicum"]]},{"id":"NCBITaxon:1703337","l":"Hallella colorans","na":1,"nb":1,"a":[["TED%3AAF-A0A2U0U072-F1-model_v4_TED04","TED novel fold AF-A0A2U0U072-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1703337","Hallella colorans"]]},{"id":"NCBITaxon:1703343","l":"Marinirhabdus gelatinilytica","na":1,"nb":1,"a":[["TED%3AAF-A0A370Q2G1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A370Q2G1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1703343","Marinirhabdus gelatinilytica"]]},{"id":"NCBITaxon:1703352","l":"Bacteroides sp. SM23_62","na":1,"nb":1,"a":[["TED%3AAF-A0A0S8JVR9-F1-model_v4_TED02","TED novel fold AF-A0A0S8JVR9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1703352","Bacteroides sp. SM23_62"]]},{"id":"NCBITaxon:1703357","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0S8BD44-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0S8BD44-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1703357","Gemmatimonas sp. SG8_28"]]},{"id":"NCBITaxon:1703358","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0S8FXC8-F1-model_v4_TED03","TED novel fold AF-A0A0S8FXC8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1703358","Gemmatimonas sp. SG8_38_2"]]},{"id":"NCBITaxon:1703359","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0S8HDK6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0S8HDK6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1703359","Gemmatimonas sp. SM23_52"]]},{"id":"NCBITaxon:1703361","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0S7Y159-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0S7Y159-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1703361","Syntrophobacter sp. DG_60"]]},{"id":"NCBITaxon:1703385","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0S8GK70-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S8GK70-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1703385","Acidithiobacillales bacterium SM23_46"]]},{"id":"NCBITaxon:1703388","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0S8KE38-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S8KE38-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1703388","Anaerolineae bacterium SM23_84"]]},{"id":"NCBITaxon:1703395","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0S8CBD1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0S8CBD1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1703395","Dehalococcoidia bacterium SM23_28_1"]]},{"id":"NCBITaxon:1703402","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0S7ZT21-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S7ZT21-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1703402","Gammaproteobacteria bacterium SG8_11"]]},{"id":"NCBITaxon:1703408","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0S8F4A3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0S8F4A3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1703408","Myxococcales bacterium SG8_38_1"]]},{"id":"NCBITaxon:1703411","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0S8GVF7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S8GVF7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1703411","Phycisphaerae bacterium SM23_30"]]},{"id":"NCBITaxon:1703415","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0S7WZC6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S7WZC6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1703415","Planctomycetes bacterium DG_58"]]},{"id":"NCBITaxon:1703416","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0S8ESX3-F1-model_v4_TED01","TED novel fold AF-A0A0S8ESX3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1703416","Thiotrichales bacterium SG8_50"]]},{"id":"NCBITaxon:1703424","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0S8IZM5-F1-model_v4_TED01","TED novel fold AF-A0A0S8IZM5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1703424","candidate division Zixibacteria bacterium SM1_73"]]},{"id":"NCBITaxon:1703427","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0S8ISL4-F1-model_v4_TED01","TED novel fold AF-A0A0S8ISL4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1703427","candidate division Zixibacteria bacterium SM23_73_3"]]},{"id":"NCBITaxon:170367","l":"Paenibacillus anaericanus","na":1,"nb":1,"a":[["TED%3AAF-A0A433Y7J1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A433Y7J1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A170367","Paenibacillus anaericanus"]]},{"id":"NCBITaxon:1703764","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0S7WY80-F1-model_v4_TED01","TED novel fold AF-A0A0S7WY80-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1703764","Parcubacteria bacterium DG_72"]]},{"id":"NCBITaxon:1703937","l":"Streptomyces sp. CB03234","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q5LKM4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q5LKM4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1703937","Streptomyces sp. CB03234"]]},{"id":"NCBITaxon:1703940","l":"Streptomyces sp. CB02261","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q5I6L7-F1-model_v4_TED01","TED novel fold AF-A0A1Q5I6L7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1703940","Streptomyces sp. CB02261"]]},{"id":"NCBITaxon:1703960","l":"Rhizobium sp. N113","na":1,"nb":1,"a":[["TED%3AAF-A0A192M071-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A192M071-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1703960","Rhizobium sp. N113"]]},{"id":"NCBITaxon:1704024","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0S8D382-F1-model_v4_TED01","TED novel fold AF-A0A0S8D382-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1704024","Nitrospira bacterium SG8_35_1"]]},{"id":"NCBITaxon:1704025","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0S8AI38-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S8AI38-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1704025","Nitrospira bacterium SG8_35_4"]]},{"id":"NCBITaxon:1704590","l":"Brachybacterium sp. SW0106-09","na":1,"nb":1,"a":[["TED%3AAF-A0A0M9UKT3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0M9UKT3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1704590","Brachybacterium sp. SW0106-09"]]},{"id":"NCBITaxon:1705393","l":"Chryseobacterium sp. ERMR1:04","na":1,"nb":1,"a":[["TED%3AAF-A0A0N1MGT1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0N1MGT1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1705393","Chryseobacterium sp. ERMR1:04"]]},{"id":"NCBITaxon:1705562","l":"Haloarcula rubripromontorii","na":1,"nb":1,"a":[["TED%3AAF-A0A847TUX0-F1-model_v4_TED01","TED novel fold AF-A0A847TUX0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1705562","Haloarcula rubripromontorii"]]},{"id":"NCBITaxon:1705564","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A150J0S6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A150J0S6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1705564","Candidatus Methanofastidiosum methylothiophilum"]]},{"id":"NCBITaxon:1706046","l":"Sulfurirhabdus autotrophica","na":1,"nb":1,"a":[["TED%3AAF-A0A4R3XTA7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4R3XTA7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1706046","Sulfurirhabdus autotrophica"]]},{"id":"NCBITaxon:1706443","l":"Candidatus Thorarchaeota archaeon SMTZ-45","na":1,"nb":1,"a":[["TED%3AAF-A0A135VJX9-F1-model_v4_TED01","TED novel fold AF-A0A135VJX9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1706443","Candidatus Thorarchaeota archaeon SMTZ-45"]]},{"id":"NCBITaxon:1706444","l":"Candidatus Thorarchaeota archaeon SMTZ1-45","na":1,"nb":1,"a":[["TED%3AAF-A0A135VDT4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A135VDT4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1706444","Candidatus Thorarchaeota archaeon SMTZ1-45"]]},{"id":"NCBITaxon:1706445","l":"Candidatus Thorarchaeota archaeon SMTZ1-83","na":1,"nb":1,"a":[["TED%3AAF-A0A135VYZ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A135VYZ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1706445","Candidatus Thorarchaeota archaeon SMTZ1-83"]]},{"id":"NCBITaxon:1706839","l":"Paracoccus gahaiensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4U0RMG3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U0RMG3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1706839","Paracoccus gahaiensis"]]},{"id":"NCBITaxon:1710888","l":"Anabaena sp. CRKS33","na":1,"nb":1,"a":[["TED%3AAF-A0A1B7WA14-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B7WA14-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1710888","Anabaena sp. CRKS33"]]},{"id":"NCBITaxon:1710892","l":"Anabaena sp. LE011-02","na":1,"nb":1,"a":[["TED%3AAF-A0A1B7VF61-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1B7VF61-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1710892","Anabaena sp. LE011-02"]]},{"id":"NCBITaxon:1710896","l":"Aphanizomenon flos-aquae WA102","na":1,"nb":1,"a":[["TED%3AAF-A0A1B7X855-F1-model_v4_TED01","TED novel fold AF-A0A1B7X855-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1710896","Aphanizomenon flos-aquae WA102"]]},{"id":"NCBITaxon:1712410","l":"Thermanaerosceptrum fracticalcis","na":1,"nb":1,"a":[["TED%3AAF-A0A7G6E021-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7G6E021-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1712410","Thermanaerosceptrum fracticalcis"]]},{"id":"NCBITaxon:171292","l":"uncultured Mycobacterium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y5PD85-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y5PD85-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A171292","uncultured Mycobacterium sp."]]},{"id":"NCBITaxon:171383","l":"Vibrio hepatarius","na":1,"nb":1,"a":[["TED%3AAF-A0A0M0HYY9-F1-model_v4_TED02","TED novel fold AF-A0A0M0HYY9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A171383","Vibrio hepatarius"]]},{"id":"NCBITaxon:1714253","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A101WZJ6-F1-model_v4_TED03","TED novel fold AF-A0A101WZJ6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1714253","Vulcanisaeta sp. JCHS_4"]]},{"id":"NCBITaxon:1714258","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A101X9V8-F1-model_v4_TED02","TED novel fold AF-A0A101X9V8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1714258","Thermoproteus sp. JCHS_4"]]},{"id":"NCBITaxon:1714260","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A117SN63-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A117SN63-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1714260","Pyrobaculum sp. JCHS_4"]]},{"id":"NCBITaxon:1715006","l":"Corynebacterium sp. HMSC070E08","na":1,"nb":1,"a":[["TED%3AAF-A0A1E9ZFL8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1E9ZFL8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1715006","Corynebacterium sp. HMSC070E08"]]},{"id":"NCBITaxon:1715007","l":"Rothia sp. HMSC071B01","na":1,"nb":1,"a":[["TED%3AAF-A0A1E9ZM56-F1-model_v4_TED01","TED novel fold AF-A0A1E9ZM56-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1715007","Rothia sp. HMSC071B01"]]},{"id":"NCBITaxon:1715079","l":"Neisseria sp. HMSC077D05","na":1,"nb":1,"a":[["TED%3AAF-A0A1E9VTI2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E9VTI2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1715079","Neisseria sp. HMSC077D05"]]},{"id":"NCBITaxon:1715109","l":"Rothia sp. HMSC072B03","na":1,"nb":1,"a":[["TED%3AAF-A0A1E9T6W6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1E9T6W6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1715109","Rothia sp. HMSC072B03"]]},{"id":"NCBITaxon:1715720","l":"Diaphorobacter ruginosibacter","na":1,"nb":1,"a":[["TED%3AAF-A0A7G9RTU7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G9RTU7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1715720","Diaphorobacter ruginosibacter"]]},{"id":"NCBITaxon:1716141","l":"Streptomyces jeddahensis","na":1,"nb":1,"a":[["TED%3AAF-A0A177HQP2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A177HQP2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1716141","Streptomyces jeddahensis"]]},{"id":"NCBITaxon:1718918","l":"Pseudomonas sp. ICMP 561","na":1,"nb":1,"a":[["TED%3AAF-A0A2G0V9T3-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A2G0V9T3-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1718918","Pseudomonas sp. ICMP 561"]]},{"id":"NCBITaxon:1719036","l":"Seonamhaeicola algicola","na":1,"nb":1,"a":[["TED%3AAF-A0A5C7AM55-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7AM55-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1719036","Seonamhaeicola algicola"]]},{"id":"NCBITaxon:1720294","l":"Eisenbergiella massiliensis","na":1,"nb":1,"a":[["TED%3AAF-A0A3E3I720-F1-model_v4_TED01","TED novel fold AF-A0A3E3I720-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1720294","Eisenbergiella massiliensis"]]},{"id":"NCBITaxon:1720313","l":"Bittarella massiliensis (ex Durand et al. 2017)","na":1,"nb":1,"a":[["TED%3AAF-A0A6B1UFA0-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A6B1UFA0-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1720313","Bittarella massiliensis (ex Durand et al. 2017)"]]},{"id":"NCBITaxon:1720316","l":"Senegalia massiliensis","na":1,"nb":1,"a":[["TED%3AAF-A0A845QYK1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A845QYK1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1720316","Senegalia massiliensis"]]},{"id":"NCBITaxon:1724","l":"Corynebacterium renale","na":1,"nb":1,"a":[["TED%3AAF-A0A2A9DLH1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A9DLH1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1724","Corynebacterium renale"]]},{"id":"NCBITaxon:1727163","l":"Algoriphagus sanaruensis","na":1,"nb":1,"a":[["TED%3AAF-A0A142ENK3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142ENK3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1727163","Algoriphagus sanaruensis"]]},{"id":"NCBITaxon:1729581","l":"Flavobacterium sp. TAB 87","na":1,"nb":1,"a":[["TED%3AAF-A0A119A8W3-F1-model_v4_TED01","TED novel fold AF-A0A119A8W3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1729581","Flavobacterium sp. TAB 87"]]},{"id":"NCBITaxon:1729650","l":"Planktothrix sp. PCC 11201","na":1,"nb":1,"a":[["TED%3AAF-A0A1T4ZGB8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1T4ZGB8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1729650","Planktothrix sp. PCC 11201"]]},{"id":"NCBITaxon:1732569","l":"Bdellovibrio sp. SKB1291214","na":1,"nb":1,"a":[["TED%3AAF-A0A254QC67-F1-model_v4_TED03","TED novel fold AF-A0A254QC67-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1732569","Bdellovibrio sp. SKB1291214"]]},{"id":"NCBITaxon:1735162","l":"Candidatus Peribacter riflensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0S1SSH7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S1SSH7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1735162","Candidatus Peribacter riflensis"]]},{"id":"NCBITaxon:1736316","l":"Pseudorhodoferax sp. Leaf267","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q4XVH2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q4XVH2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1736316","Pseudorhodoferax sp. Leaf267"]]},{"id":"NCBITaxon:1736375","l":"Aureimonas sp. Leaf427","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q6CCD2-F1-model_v4_TED01","TED novel fold AF-A0A0Q6CCD2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1736375","Aureimonas sp. Leaf427"]]},{"id":"NCBITaxon:1736404","l":"Paenibacillus sp. Soil766","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q9QY30-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0Q9QY30-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1736404","Paenibacillus sp. Soil766"]]},{"id":"NCBITaxon:1736415","l":"Phycicoccus sp. Soil803","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q9SAW4-F1-model_v4_TED03","TED novel fold AF-A0A0Q9SAW4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1736415","Phycicoccus sp. Soil803"]]},{"id":"NCBITaxon:1736416","l":"Nocardioides sp. Soil805","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q9TGD2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q9TGD2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1736416","Nocardioides sp. Soil805"]]},{"id":"NCBITaxon:1736419","l":"Terrabacter sp. Soil811","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q9U0N8-F1-model_v4_TED01","TED novel fold AF-A0A0Q9U0N8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1736419","Terrabacter sp. Soil811"]]},{"id":"NCBITaxon:1736430","l":"Pelomonas sp. Root1217","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q6TDV5-F1-model_v4_TED03","TED novel fold AF-A0A0Q6TDV5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1736430","Pelomonas sp. Root1217"]]},{"id":"NCBITaxon:1736464","l":"Pelomonas sp. Root1444","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q7SFG8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0Q7SFG8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1736464","Pelomonas sp. Root1444"]]},{"id":"NCBITaxon:1736470","l":"Caulobacter sp. Root1472","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q7V710-F1-model_v4_TED01","TED novel fold AF-A0A0Q7V710-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1736470","Caulobacter sp. Root1472"]]},{"id":"NCBITaxon:1736674","l":"Pseudalgibacter alginicilyticus","na":1,"nb":1,"a":[["TED%3AAF-A0A0P0DD24-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0P0DD24-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1736674","Pseudalgibacter alginicilyticus"]]},{"id":"NCBITaxon:1737063","l":"Brumimicrobium aurantiacum","na":1,"nb":1,"a":[["TED%3AAF-A0A3E1EWN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3E1EWN3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1737063","Brumimicrobium aurantiacum"]]},{"id":"NCBITaxon:1739113","l":"Novosphingobium sp. FSW06-99","na":1,"nb":1,"a":[["TED%3AAF-A0A124JZM1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A124JZM1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1739113","Novosphingobium sp. FSW06-99"]]},{"id":"NCBITaxon:1739251","l":"Fusobacterium sp. HMSC073F01","na":1,"nb":1,"a":[["TED%3AAF-A0A1E9J453-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E9J453-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1739251","Fusobacterium sp. HMSC073F01"]]},{"id":"NCBITaxon:1739367","l":"Micrococcus sp. HMSC067E09","na":1,"nb":1,"a":[["TED%3AAF-A0A1F1IAR3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F1IAR3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1739367","Micrococcus sp. HMSC067E09"]]},{"id":"NCBITaxon:1739423","l":"Rothia sp. HMSC068E02","na":1,"nb":1,"a":[["TED%3AAF-A0A1F0Z8K8-F1-model_v4_TED01","TED novel fold AF-A0A1F0Z8K8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1739423","Rothia sp. HMSC068E02"]]},{"id":"NCBITaxon:1739517","l":"Bacteroides sp. HMSC073E02","na":1,"nb":1,"a":[["TED%3AAF-A0A1F0J0B6-F1-model_v4_TED01","TED novel fold AF-A0A1F0J0B6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1739517","Bacteroides sp. HMSC073E02"]]},{"id":"NCBITaxon:173959","l":"Brevibacillus invocatus","na":1,"nb":1,"a":[["TED%3AAF-A0A3M8C5C7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M8C5C7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A173959","Brevibacillus invocatus"]]},{"id":"NCBITaxon:1740090","l":"Pedobacter sp. Hv1","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q0VF61-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0Q0VF61-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1740090","Pedobacter sp. Hv1"]]},{"id":"NCBITaxon:1743144","l":"Bacillus sp. FJAT-27225","na":1,"nb":1,"a":[["TED%3AAF-A0A1B9APH1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B9APH1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1743144","Bacillus sp. FJAT-27225"]]},{"id":"NCBITaxon:1743164","l":"Polynucleobacter aenigmaticus","na":1,"nb":1,"a":[["TED%3AAF-A0A254PW67-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A254PW67-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1743164","Polynucleobacter aenigmaticus"]]},{"id":"NCBITaxon:1745182","l":"Paracoccus sp. MKU1","na":1,"nb":1,"a":[["TED%3AAF-A0A0V0Q5K7-F1-model_v4_TED01","TED novel fold AF-A0A0V0Q5K7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1745182","Paracoccus sp. MKU1"]]},{"id":"NCBITaxon:1745382","l":"Frankia sp. CcI49","na":1,"nb":1,"a":[["TED%3AAF-A0A1V2KNB4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V2KNB4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1745382","Frankia sp. CcI49"]]},{"id":"NCBITaxon:1752064","l":"Leptolyngbya sp. NIES-3755","na":1,"nb":1,"a":[["TED%3AAF-A0A0S3U0Y9-F1-model_v4_TED02","TED novel fold AF-A0A0S3U0Y9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1752064","Leptolyngbya sp. NIES-3755"]]},{"id":"NCBITaxon:1753","l":"Propioniferax innocua","na":1,"nb":1,"a":[["TED%3AAF-A0A542ZCI2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A542ZCI2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1753","Propioniferax innocua"]]},{"id":"NCBITaxon:1759059","l":"Candidatus Viadribacter manganicus","na":1,"nb":1,"a":[["TED%3AAF-A0A1B1AI86-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B1AI86-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1759059","Candidatus Viadribacter manganicus"]]},{"id":"NCBITaxon:1761012","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A3G1KNS5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3G1KNS5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1761012","Candidatus Formimonas warabiya"]]},{"id":"NCBITaxon:1761761","l":"Bacillus sp. cl95","na":1,"nb":1,"a":[["TED%3AAF-A0A1I6CC48-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I6CC48-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1761761","Bacillus sp. cl95"]]},{"id":"NCBITaxon:1761772","l":"Bradyrhizobium shewense","na":1,"nb":1,"a":[["TED%3AAF-A0A1C3XS56-F1-model_v4_TED01","TED novel fold AF-A0A1C3XS56-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1761772","Bradyrhizobium shewense"]]},{"id":"NCBITaxon:1761780","l":"Butyrivibrio sp. ob235","na":1,"nb":1,"a":[["TED%3AAF-A0A1H7I3V4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H7I3V4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1761780","Butyrivibrio sp. ob235"]]},{"id":"NCBITaxon:1761781","l":"Clostridium sp. DSM 8431","na":1,"nb":1,"a":[["TED%3AAF-A0A1I7JB16-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I7JB16-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1761781","Clostridium sp. DSM 8431"]]},{"id":"NCBITaxon:1761786","l":"Gordonia sp. v-85","na":1,"nb":1,"a":[["TED%3AAF-A0A1C4F8L6-F1-model_v4_TED01","TED novel fold AF-A0A1C4F8L6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1761786","Gordonia sp. v-85"]]},{"id":"NCBITaxon:1761801","l":"Methylobacterium sp. yr668","na":1,"nb":1,"a":[["TED%3AAF-A0A1I6WHK9-F1-model_v4_TED01","TED novel fold AF-A0A1I6WHK9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1761801","Methylobacterium sp. yr668"]]},{"id":"NCBITaxon:1761884","l":"Prevotella sp. khp1","na":1,"nb":1,"a":[["TED%3AAF-A0A1H0Y2B2-F1-model_v4_TED01","TED novel fold AF-A0A1H0Y2B2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1761884","Prevotella sp. khp1"]]},{"id":"NCBITaxon:1761887","l":"Prevotella sp. ne3005","na":1,"nb":1,"a":[["TED%3AAF-A0A1H8F602-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1H8F602-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1761887","Prevotella sp. ne3005"]]},{"id":"NCBITaxon:1761889","l":"Prevotella sp. tf2-5","na":1,"nb":1,"a":[["TED%3AAF-A0A1I5M0X3-F1-model_v4_TED02","TED novel fold AF-A0A1I5M0X3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1761889","Prevotella sp. tf2-5"]]},{"id":"NCBITaxon:1761890","l":"Pseudoalteromonas sp. 10-33","na":1,"nb":1,"a":[["TED%3AAF-A0A0W1LFK1-F1-model_v4_TED01","TED novel fold AF-A0A0W1LFK1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1761890","Pseudoalteromonas sp. 10-33"]]},{"id":"NCBITaxon:176275","l":"Beauveria bassiana","na":1,"nb":1,"a":[["TED%3AAF-A0A2S7Y157-F1-model_v4_TED02","TED novel fold AF-A0A2S7Y157-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A176275","Beauveria bassiana"]]},{"id":"NCBITaxon:1763509","l":"Lachnotalea glycerini","na":1,"nb":1,"a":[["TED%3AAF-A0A371JF42-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A371JF42-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1763509","Lachnotalea glycerini"]]},{"id":"NCBITaxon:1763883","l":"Vibrio cidicii","na":1,"nb":1,"a":[["TED%3AAF-A0A151JGE3-F1-model_v4_TED01","TED novel fold AF-A0A151JGE3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1763883","Vibrio cidicii"]]},{"id":"NCBITaxon:1765050","l":"Azospira sp. I13","na":1,"nb":1,"a":[["TED%3AAF-A0A2R5EG35-F1-model_v4_TED01","TED novel fold AF-A0A2R5EG35-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1765050","Azospira sp. I13"]]},{"id":"NCBITaxon:1765683","l":"Ferroacidibacillus organovorans","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4ES42-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V4ES42-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1765683","Ferroacidibacillus organovorans"]]},{"id":"NCBITaxon:1765684","l":"Sulfoacidibacillus thermotolerans","na":1,"nb":1,"a":[["TED%3AAF-A0A2U3D5S8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U3D5S8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1765684","Sulfoacidibacillus thermotolerans"]]},{"id":"NCBITaxon:1765737","l":"Dissulfurirhabdus thermomarina","na":1,"nb":1,"a":[["TED%3AAF-A0A6N9TJJ0-F1-model_v4_TED01","TED novel fold AF-A0A6N9TJJ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1765737","Dissulfurirhabdus thermomarina"]]},{"id":"NCBITaxon:1768112","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A132H1S2-F1-model_v4_TED02","TED novel fold AF-A0A132H1S2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1768112","Candidatus Alcium sp. P201"]]},{"id":"NCBITaxon:1768242","l":"Paucibacter sp. KCTC 42545","na":1,"nb":1,"a":[["TED%3AAF-A0A0U3EZN4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0U3EZN4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1768242","Paucibacter sp. KCTC 42545"]]},{"id":"NCBITaxon:1769779","l":"Microbulbifer aggregans","na":1,"nb":1,"a":[["TED%3AAF-A0A1C9WAE5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C9WAE5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1769779","Microbulbifer aggregans"]]},{"id":"NCBITaxon:1770053","l":"Chitinasiproducens palmae","na":1,"nb":1,"a":[["TED%3AAF-A0A1H2PKT1-F1-model_v4_TED03","TED novel fold AF-A0A1H2PKT1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1770053","Chitinasiproducens palmae"]]},{"id":"NCBITaxon:1770526","l":"Hymenobacter crusticola","na":1,"nb":1,"a":[["TED%3AAF-A0A243WCG8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A243WCG8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1770526","Hymenobacter crusticola"]]},{"id":"NCBITaxon:177199","l":"Coniochaeta pulveracea","na":1,"nb":1,"a":[["TED%3AAF-A0A420Y9L7-F1-model_v4_TED01","TED novel fold AF-A0A420Y9L7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A177199","Coniochaeta pulveracea"]]},{"id":"NCBITaxon:1772283","l":"Mycobacterium sp. GA-2829","na":1,"nb":1,"a":[["TED%3AAF-A0A117JRD0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A117JRD0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1772283","Mycobacterium sp. GA-2829"]]},{"id":"NCBITaxon:1772288","l":"Marinobacter sp. C18","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q8G2Z9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q8G2Z9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1772288","Marinobacter sp. C18"]]},{"id":"NCBITaxon:177413","l":"Ancylobacter rudongensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1G4UQ36-F1-model_v4_TED01","TED novel fold AF-A0A1G4UQ36-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A177413","Ancylobacter rudongensis"]]},{"id":"NCBITaxon:1774745","l":"Cupriavidus sp. UYMMa02A","na":1,"nb":1,"a":[["TED%3AAF-A0A1E4QUI2-F1-model_v4_TED01","TED novel fold AF-A0A1E4QUI2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1774745","Cupriavidus sp. UYMMa02A"]]},{"id":"NCBITaxon:1774970","l":"Methyloceanibacter stevinii","na":1,"nb":1,"a":[["TED%3AAF-A0A1E3VQS9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E3VQS9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1774970","Methyloceanibacter stevinii"]]},{"id":"NCBITaxon:1775474","l":"Variovorax guangxiensis","na":1,"nb":1,"a":[["TED%3AAF-A0A840FS97-F1-model_v4_TED01","TED novel fold AF-A0A840FS97-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1775474","Variovorax guangxiensis"]]},{"id":"NCBITaxon:1776032","l":"Hymenobacter gummosus","na":1,"nb":1,"a":[["TED%3AAF-A0A431U235-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A431U235-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1776032","Hymenobacter gummosus"]]},{"id":"NCBITaxon:1776165","l":"Massilia eburnea","na":1,"nb":1,"a":[["TED%3AAF-A0A6L6QRZ1-F1-model_v4_TED02","TED novel fold AF-A0A6L6QRZ1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1776165","Massilia eburnea"]]},{"id":"NCBITaxon:1776384","l":"Emergencia timonensis","na":1,"nb":1,"a":[["TED%3AAF-A0A415E478-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A415E478-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1776384","Emergencia timonensis"]]},{"id":"NCBITaxon:1777136","l":"Caballeronia catudaia","na":1,"nb":1,"a":[["TED%3AAF-A0A158C321-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A158C321-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1777136","Caballeronia catudaia"]]},{"id":"NCBITaxon:1777139","l":"Caballeronia calidae","na":1,"nb":1,"a":[["TED%3AAF-A0A157ZK63-F1-model_v4_TED03","TED novel fold AF-A0A157ZK63-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1777139","Caballeronia calidae"]]},{"id":"NCBITaxon:1777237","l":"Pseudoalteromonas sp. CO133X","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q6YIM6-F1-model_v4_TED01","TED novel fold AF-A0A4Q6YIM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1777237","Pseudoalteromonas sp. CO133X"]]},{"id":"NCBITaxon:1778","l":"Mycobacterium gordonae","na":1,"nb":1,"a":[["TED%3AAF-A0A7D6E392-F1-model_v4_TED02","TED novel fold AF-A0A7D6E392-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1778","Mycobacterium gordonae"]]},{"id":"NCBITaxon:1778678","l":"Paenibacillus psychroresistens","na":1,"nb":1,"a":[["TED%3AAF-A0A6B8REU5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6B8REU5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1778678","Paenibacillus psychroresistens"]]},{"id":"NCBITaxon:1779329","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2A3JX46-F1-model_v4_TED02","TED novel fold AF-A0A2A3JX46-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1779329","Alloyangia mangrovi"]]},{"id":"NCBITaxon:178","l":"Leptospira sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2M8HMG8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2M8HMG8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A178","Leptospira sp."]]},{"id":"NCBITaxon:1780380","l":"Eubacteriaceae bacterium CHKCI004","na":1,"nb":1,"a":[["TED%3AAF-A0A143XSV8-F1-model_v4_TED03","TED novel fold AF-A0A143XSV8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1780380","Eubacteriaceae bacterium CHKCI004"]]},{"id":"NCBITaxon:1781067","l":"Duganella sp. HH105","na":1,"nb":1,"a":[["TED%3AAF-A0A1E7VAC3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E7VAC3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1781067","Duganella sp. HH105"]]},{"id":"NCBITaxon:178356","l":"Flavobacterium xinjiangense","na":1,"nb":1,"a":[["TED%3AAF-A0A1M7LQC4-F1-model_v4_TED02","TED novel fold AF-A0A1M7LQC4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A178356","Flavobacterium xinjiangense"]]},{"id":"NCBITaxon:1784713","l":"Flavobacterium arcticum","na":1,"nb":1,"a":[["TED%3AAF-A0A345HCH9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A345HCH9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1784713","Flavobacterium arcticum"]]},{"id":"NCBITaxon:1784714","l":"Arcticibacterium luteifluviistationis","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z4GGL1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2Z4GGL1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1784714","Arcticibacterium luteifluviistationis"]]},{"id":"NCBITaxon:1784719","l":"Leucobacter triazinivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A4P6KBD8-F1-model_v4_TED01","TED novel fold AF-A0A4P6KBD8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1784719","Leucobacter triazinivorans"]]},{"id":"NCBITaxon:1785949","l":"Candidatus Frackibacter sp. T328-2","na":1,"nb":1,"a":[["TED%3AAF-A0A139CQV0-F1-model_v4_TED01","TED novel fold AF-A0A139CQV0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1785949","Candidatus Frackibacter sp. T328-2"]]},{"id":"NCBITaxon:1785996","l":"Leptotrichia sp. oral taxon 847","na":1,"nb":1,"a":[["TED%3AAF-A0A0X8JUT6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0X8JUT6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1785996","Leptotrichia sp. oral taxon 847"]]},{"id":"NCBITaxon:1789224","l":"Acinetobacter larvae","na":1,"nb":1,"a":[["TED%3AAF-A0A1B2M311-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B2M311-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1789224","Acinetobacter larvae"]]},{"id":"NCBITaxon:1792508","l":"Salipiger sp. CCB-MM3","na":1,"nb":1,"a":[["TED%3AAF-A0A1B1PYX5-F1-model_v4_TED01","TED novel fold AF-A0A1B1PYX5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1792508","Salipiger sp. CCB-MM3"]]},{"id":"NCBITaxon:1792836","l":"Wenzhouxiangella sediminis","na":1,"nb":1,"a":[["TED%3AAF-A0A3E1K9F2-F1-model_v4_TED02","TED novel fold AF-A0A3E1K9F2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1792836","Wenzhouxiangella sediminis"]]},{"id":"NCBITaxon:1793","l":"Mycolicibacterium fallax","na":1,"nb":1,"a":[["TED%3AAF-A0A1X1R017-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X1R017-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1793","Mycolicibacterium fallax"]]},{"id":"NCBITaxon:1793722","l":"Curtobacterium sp. 9128","na":1,"nb":1,"a":[["TED%3AAF-A0A181ZA59-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A181ZA59-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1793722","Curtobacterium sp. 9128"]]},{"id":"NCBITaxon:1793724","l":"Dictyoglomus sp. ob1-4","na":1,"nb":1,"a":[["TED%3AAF-A0A5S5BH10-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A5S5BH10-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1793724","Dictyoglomus sp. ob1-4"]]},{"id":"NCBITaxon:1795630","l":"Frondihabitans sp. PAMC 28766","na":1,"nb":1,"a":[["TED%3AAF-A0A126Z0C8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A126Z0C8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1795630","Frondihabitans sp. PAMC 28766"]]},{"id":"NCBITaxon:1795830","l":"Eikenella sp. NML080894","na":1,"nb":1,"a":[["TED%3AAF-A0A1B6VST7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B6VST7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1795830","Eikenella sp. NML080894"]]},{"id":"NCBITaxon:1795832","l":"Eikenella halliae","na":1,"nb":1,"a":[["TED%3AAF-A0A1B6VZF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B6VZF4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1795832","Eikenella halliae"]]},{"id":"NCBITaxon:1796620","l":"Acutalibacter muris","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z2XSH3-F1-model_v4_TED01","TED novel fold AF-A0A1Z2XSH3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1796620","Acutalibacter muris"]]},{"id":"NCBITaxon:1796628","l":"Longibaculum muris","na":1,"nb":1,"a":[["TED%3AAF-A0A4R3Z5B6-F1-model_v4_TED01","TED novel fold AF-A0A4R3Z5B6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1796628","Longibaculum muris"]]},{"id":"NCBITaxon:1796652","l":"Turicimonas muris","na":1,"nb":1,"a":[["TED%3AAF-A0A227KL63-F1-model_v4_TED02","TED novel fold AF-A0A227KL63-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1796652","Turicimonas muris"]]},{"id":"NCBITaxon:1796921","l":"Ereboglobus luteus","na":1,"nb":1,"a":[["TED%3AAF-A0A2U8E3K8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2U8E3K8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1796921","Ereboglobus luteus"]]},{"id":"NCBITaxon:1797178","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F2T7L3-F1-model_v4_TED01","TED novel fold AF-A0A1F2T7L3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797178","Acidobacteria bacterium RIFCSPLOWO2_02_FULL_59_13"]]},{"id":"NCBITaxon:1797180","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F2RJX5-F1-model_v4_TED01","TED novel fold AF-A0A1F2RJX5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797180","Acidobacteria bacterium RIFCSPLOWO2_02_FULL_61_28"]]},{"id":"NCBITaxon:1797185","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F2S3C4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F2S3C4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797185","Acidobacteria bacterium RIFCSPLOWO2_02_FULL_68_18"]]},{"id":"NCBITaxon:1797198","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F2X5C9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1F2X5C9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1797198","Actinobacteria bacterium RBG_13_63_9"]]},{"id":"NCBITaxon:1797200","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F2WGA0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F2WGA0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797200","Actinobacteria bacterium RBG_16_64_13"]]},{"id":"NCBITaxon:1797203","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F2Y355-F1-model_v4_TED01","TED novel fold AF-A0A1F2Y355-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797203","Actinobacteria bacterium RBG_16_68_12"]]},{"id":"NCBITaxon:1797212","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F2XG95-F1-model_v4_TED01","TED novel fold AF-A0A1F2XG95-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797212","Alphaproteobacteria bacterium GWC2_42_16"]]},{"id":"NCBITaxon:1797213","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F2YPV8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F2YPV8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797213","Alphaproteobacteria bacterium GWF2_58_20"]]},{"id":"NCBITaxon:1797220","l":"Alphaproteobacteria bacterium RIFCSPHIGHO2_02_FULL_46_13","na":1,"nb":1,"a":[["TED%3AAF-A0A1F2Z3M8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F2Z3M8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797220","Alphaproteobacteria bacterium RIFCSPHIGHO2_02_FULL_46_13"]]},{"id":"NCBITaxon:1797226","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F2ZIL3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F2ZIL3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797226","Alphaproteobacteria bacterium RIFCSPLOWO2_01_FULL_40_26"]]},{"id":"NCBITaxon:1797253","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F4YFE9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F4YFE9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797253","Candidatus Amesbacteria bacterium RIFCSPHIGHO2_01_FULL_48_32b"]]},{"id":"NCBITaxon:1797273","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5ASF2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F5ASF2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797273","Candidatus Aminicenantes bacterium RBG_16_63_16"]]},{"id":"NCBITaxon:1797277","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5B663-F1-model_v4_TED01","TED novel fold AF-A0A1F5B663-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797277","Candidatus Aminicenantes bacterium RBG_19FT_COMBO_65_30"]]},{"id":"NCBITaxon:1797319","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F3D2G1-F1-model_v4_TED02","TED novel fold AF-A0A1F3D2G1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797319","Bacteroidetes bacterium GWA2_40_15"]]},{"id":"NCBITaxon:1797342","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F3JV05-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F3JV05-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797342","Bacteroidetes bacterium GWF2_33_38"]]},{"id":"NCBITaxon:1797347","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F3LG22-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F3LG22-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797347","Bacteroidetes bacterium GWF2_40_14"]]},{"id":"NCBITaxon:1797386","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F3SXD2-F1-model_v4_TED02","TED novel fold AF-A0A1F3SXD2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797386","Bdellovibrionales bacterium GWB1_55_8"]]},{"id":"NCBITaxon:1797388","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F3SF45-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F3SF45-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797388","Bdellovibrionales bacterium RBG_16_40_8"]]},{"id":"NCBITaxon:1797394","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F3WP69-F1-model_v4_TED02","TED novel fold AF-A0A1F3WP69-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797394","Bdellovibrionales bacterium RIFOXYB2_FULL_36_6"]]},{"id":"NCBITaxon:1797404","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F3XSU0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F3XSU0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797404","Bdellovibrionales bacterium RIFOXYD1_FULL_55_31"]]},{"id":"NCBITaxon:1797497","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F4E3P9-F1-model_v4_TED02","TED novel fold AF-A0A1F4E3P9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797497","Betaproteobacteria bacterium RIFCSPLOWO2_12_FULL_62_58"]]},{"id":"NCBITaxon:1797520","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1VDM9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G1VDM9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797520","Candidatus Blackburnbacteria bacterium RIFCSPLOWO2_01_FULL_41_27"]]},{"id":"NCBITaxon:1797531","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1XSP2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1G1XSP2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1797531","Candidatus Buchananbacteria bacterium RBG_13_39_9"]]},{"id":"NCBITaxon:1797564","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F4IZ93-F1-model_v4_TED01","TED novel fold AF-A0A1F4IZ93-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797564","Burkholderiales bacterium RIFCSPLOWO2_02_FULL_67_64"]]},{"id":"NCBITaxon:1797568","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F4MTM4-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1F4MTM4-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1797568","Burkholderiales bacterium RIFCSPLOWO2_12_FULL_64_99"]]},{"id":"NCBITaxon:1797585","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8I4Q2-F1-model_v4_TED01","TED novel fold AF-A0A1F8I4Q2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797585","Caulobacterales bacterium RIFCSPHIGHO2_01_FULL_70_19"]]},{"id":"NCBITaxon:1797591","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1VUB9-F1-model_v4_TED01","TED novel fold AF-A0A1G1VUB9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797591","Candidatus Chisholmbacteria bacterium RIFCSPHIGHO2_01_FULL_52_32"]]},{"id":"NCBITaxon:1797598","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8J304-F1-model_v4_TED03","TED novel fold AF-A0A1F8J304-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1797598","Chlamydiae bacterium RIFCSPHIGHO2_01_FULL_44_39"]]},{"id":"NCBITaxon:1797603","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8JJQ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F8JJQ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797603","Chlamydiae bacterium RIFCSPHIGHO2_12_FULL_49_11"]]},{"id":"NCBITaxon:1797613","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8KML2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F8KML2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797613","Chloroflexi bacterium GWB2_54_36"]]},{"id":"NCBITaxon:1797620","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8LXZ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F8LXZ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797620","Chloroflexi bacterium RBG_13_48_10"]]},{"id":"NCBITaxon:1797640","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8P1I1-F1-model_v4_TED01","TED novel fold AF-A0A1F8P1I1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797640","Chloroflexi bacterium RBG_16_48_7"]]},{"id":"NCBITaxon:1797643","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8P8D9-F1-model_v4_TED02","TED novel fold AF-A0A1F8P8D9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797643","Chloroflexi bacterium RBG_16_50_9"]]},{"id":"NCBITaxon:1797658","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8RDU4-F1-model_v4_TED01","TED novel fold AF-A0A1F8RDU4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797658","Chloroflexi bacterium RBG_16_64_32"]]},{"id":"NCBITaxon:1797659","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8RQQ6-F1-model_v4_TED01","TED novel fold AF-A0A1F8RQQ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797659","Chloroflexi bacterium RBG_16_64_43"]]},{"id":"NCBITaxon:1797660","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8RWL3-F1-model_v4_TED01","TED novel fold AF-A0A1F8RWL3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797660","Chloroflexi bacterium RBG_16_68_14"]]},{"id":"NCBITaxon:1797663","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8SCL9-F1-model_v4_TED02","TED novel fold AF-A0A1F8SCL9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797663","Chloroflexi bacterium RBG_16_72_14"]]},{"id":"NCBITaxon:1797671","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8TG41-F1-model_v4_TED02","TED novel fold AF-A0A1F8TG41-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797671","Chloroflexi bacterium RBG_19FT_COMBO_62_14"]]},{"id":"NCBITaxon:1797710","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5GCG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F5GCG8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797710","Candidatus Curtissbacteria bacterium RIFCSPHIGHO2_01_FULL_40_12"]]},{"id":"NCBITaxon:1797718","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5H1K0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F5H1K0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797718","Candidatus Curtissbacteria bacterium RIFCSPHIGHO2_12_41_11"]]},{"id":"NCBITaxon:1797729","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5I035-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F5I035-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797729","Candidatus Curtissbacteria bacterium RIFCSPLOWO2_01_FULL_42_26"]]},{"id":"NCBITaxon:1797756","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5IU88-F1-model_v4_TED01","TED novel fold AF-A0A1F5IU88-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797756","Candidatus Dadabacteria bacterium RIFCSPHIGHO2_12_FULL_53_21"]]},{"id":"NCBITaxon:1797808","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8WUM6-F1-model_v4_TED01","TED novel fold AF-A0A1F8WUM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797808","Deltaproteobacteria bacterium GWA2_54_12"]]},{"id":"NCBITaxon:1797809","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8X0V8-F1-model_v4_TED01","TED novel fold AF-A0A1F8X0V8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797809","Deltaproteobacteria bacterium GWA2_55_10"]]},{"id":"NCBITaxon:1797814","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8XUW8-F1-model_v4_TED03","TED novel fold AF-A0A1F8XUW8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1797814","Deltaproteobacteria bacterium GWB2_55_19"]]},{"id":"NCBITaxon:1797832","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9BSC4-F1-model_v4_TED01","TED novel fold AF-A0A1F9BSC4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797832","Deltaproteobacteria bacterium RBG_13_58_19"]]},{"id":"NCBITaxon:1797839","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9DCK0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F9DCK0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797839","Deltaproteobacteria bacterium RBG_16_48_10"]]},{"id":"NCBITaxon:1797841","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9BRC7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F9BRC7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797841","Deltaproteobacteria bacterium RBG_16_50_11"]]},{"id":"NCBITaxon:1797848","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9FDV0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F9FDV0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797848","Deltaproteobacteria bacterium RBG_16_71_12"]]},{"id":"NCBITaxon:1797858","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9FFN6-F1-model_v4_TED02","TED novel fold AF-A0A1F9FFN6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797858","Deltaproteobacteria bacterium RIFCSPHIGHO2_02_FULL_40_11"]]},{"id":"NCBITaxon:1797879","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9HYQ5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F9HYQ5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797879","Deltaproteobacteria bacterium RIFCSPLOWO2_02_FULL_46_8"]]},{"id":"NCBITaxon:1797880","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9HY74-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F9HY74-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797880","Deltaproteobacteria bacterium RIFCSPLOWO2_02_FULL_47_10"]]},{"id":"NCBITaxon:1797892","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9KGF5-F1-model_v4_TED01","TED novel fold AF-A0A1F9KGF5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797892","Deltaproteobacteria bacterium RIFCSPLOWO2_12_FULL_57_22"]]},{"id":"NCBITaxon:1797895","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9LDQ7-F1-model_v4_TED01","TED novel fold AF-A0A1F9LDQ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797895","Deltaproteobacteria bacterium RIFOXYA12_FULL_58_15"]]},{"id":"NCBITaxon:1797896","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9LJG9-F1-model_v4_TED02","TED novel fold AF-A0A1F9LJG9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797896","Deltaproteobacteria bacterium RIFOXYA12_FULL_61_11"]]},{"id":"NCBITaxon:1797902","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9M592-F1-model_v4_TED01","TED novel fold AF-A0A1F9M592-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797902","Deltaproteobacteria bacterium RIFOXYD12_FULL_50_9"]]},{"id":"NCBITaxon:1797903","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9MBZ0-F1-model_v4_TED01","TED novel fold AF-A0A1F9MBZ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797903","Deltaproteobacteria bacterium RIFOXYD12_FULL_53_23"]]},{"id":"NCBITaxon:1797905","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9L3G5-F1-model_v4_TED01","TED novel fold AF-A0A1F9L3G5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797905","Deltaproteobacteria bacterium RIFOXYD12_FULL_56_24"]]},{"id":"NCBITaxon:1797913","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9NEE0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F9NEE0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797913","Desulfobacterales bacterium GWB2_56_26"]]},{"id":"NCBITaxon:1797923","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9QIG5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F9QIG5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797923","Elusimicrobia bacterium GWA2_61_42"]]},{"id":"NCBITaxon:1797952","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9VS96-F1-model_v4_TED02","TED novel fold AF-A0A1F9VS96-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797952","Elusimicrobia bacterium RIFCSPLOWO2_12_FULL_59_9"]]},{"id":"NCBITaxon:1797958","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9WRJ5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F9WRJ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797958","Elusimicrobia bacterium RIFOXYA2_FULL_40_6"]]},{"id":"NCBITaxon:1797968","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9Y7R0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F9Y7R0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797968","Elusimicrobia bacterium RIFOXYB2_FULL_49_7"]]},{"id":"NCBITaxon:1797984","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0AC96-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1G0AC96-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1797984","Euryarchaeota archaeon RBG_19FT_COMBO_69_17"]]},{"id":"NCBITaxon:1797994","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5SHV8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F5SHV8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797994","Candidatus Falkowbacteria bacterium RIFOXYA2_FULL_47_19"]]},{"id":"NCBITaxon:1798015","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0AYZ0-F1-model_v4_TED02","TED novel fold AF-A0A1G0AYZ0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798015","Flavobacteria bacterium RIFCSPLOWO2_12_FULL_31_7"]]},{"id":"NCBITaxon:1798016","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0B2N9-F1-model_v4_TED03","TED novel fold AF-A0A1G0B2N9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1798016","Flavobacteria bacterium RIFCSPLOWO2_12_FULL_35_11"]]},{"id":"NCBITaxon:1798019","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0CJM9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G0CJM9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798019","Fluviicola sp. RIFCSPHIGHO2_12_FULL_43_24"]]},{"id":"NCBITaxon:1798185","l":"Pseudobutyrivibrio sp. UC1225","na":1,"nb":1,"a":[["TED%3AAF-A0A1I5GI49-F1-model_v4_TED01","TED novel fold AF-A0A1I5GI49-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798185","Pseudobutyrivibrio sp. UC1225"]]},{"id":"NCBITaxon:1798213","l":"Pseudovibrio sp. Tun.PSC04-5.I4","na":1,"nb":1,"a":[["TED%3AAF-A0A1H1I1X9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H1I1X9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798213","Pseudovibrio sp. Tun.PSC04-5.I4"]]},{"id":"NCBITaxon:1798215","l":"Leifsonia sp. CL147","na":1,"nb":1,"a":[["TED%3AAF-A0A1I4MD37-F1-model_v4_TED01","TED novel fold AF-A0A1I4MD37-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798215","Leifsonia sp. CL147"]]},{"id":"NCBITaxon:1798224","l":"Jiangella sp. DSM 45060","na":1,"nb":1,"a":[["TED%3AAF-A0A1H2CE01-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H2CE01-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798224","Jiangella sp. DSM 45060"]]},{"id":"NCBITaxon:1798276","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0GM97-F1-model_v4_TED01","TED novel fold AF-A0A1G0GM97-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798276","Gammaproteobacteria bacterium RIFCSPHIGHO2_12_FULL_37_14"]]},{"id":"NCBITaxon:1798277","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0GZ96-F1-model_v4_TED02","TED novel fold AF-A0A1G0GZ96-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798277","Gammaproteobacteria bacterium RIFCSPHIGHO2_12_FULL_37_34"]]},{"id":"NCBITaxon:1798298","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0JB92-F1-model_v4_TED02","TED novel fold AF-A0A1G0JB92-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798298","Gammaproteobacteria bacterium RIFCSPLOWO2_02_FULL_56_15"]]},{"id":"NCBITaxon:1798301","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0JQ90-F1-model_v4_TED01","TED novel fold AF-A0A1G0JQ90-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798301","Gammaproteobacteria bacterium RIFCSPLOWO2_12_47_11"]]},{"id":"NCBITaxon:1798308","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0KTX5-F1-model_v4_TED02","TED novel fold AF-A0A1G0KTX5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798308","Gammaproteobacteria bacterium RIFOXYD12_FULL_61_37"]]},{"id":"NCBITaxon:1798311","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0LSN7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G0LSN7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798311","Gemmatimonadetes bacterium RBG_16_66_8"]]},{"id":"NCBITaxon:1798312","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0LC16-F1-model_v4_TED02","TED novel fold AF-A0A1G0LC16-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798312","Gemmatimonadetes bacterium RIFCSPLOWO2_02_FULL_71_11"]]},{"id":"NCBITaxon:1798315","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0LEM7-F1-model_v4_TED01","TED novel fold AF-A0A1G0LEM7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798315","Geobacteraceae bacterium GWC2_48_7"]]},{"id":"NCBITaxon:1798331","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5WFL9-F1-model_v4_TED02","TED novel fold AF-A0A1F5WFL9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798331","Candidatus Giovannonibacteria bacterium RIFCSPHIGHO2_02_43_16"]]},{"id":"NCBITaxon:1798391","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6BBG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F6BBG8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798391","Candidatus Gottesmanbacteria bacterium RIFCSPLOWO2_01_FULL_42_22"]]},{"id":"NCBITaxon:1798396","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6AX47-F1-model_v4_TED01","TED novel fold AF-A0A1F6AX47-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798396","Candidatus Gottesmanbacteria bacterium RIFCSPLOWO2_01_FULL_49_10"]]},{"id":"NCBITaxon:1798427","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0QPM9-F1-model_v4_TED01","TED novel fold AF-A0A1G0QPM9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798427","Ignavibacteria bacterium GWC2_36_12"]]},{"id":"NCBITaxon:1798432","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0R270-F1-model_v4_TED01","TED novel fold AF-A0A1G0R270-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798432","Ignavibacteria bacterium RBG_13_36_8"]]},{"id":"NCBITaxon:1798448","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0VK37-F1-model_v4_TED03","TED novel fold AF-A0A1G0VK37-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1798448","Stygiobacter sp. RIFOXYB2_FULL_37_11"]]},{"id":"NCBITaxon:1798470","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6BN75-F1-model_v4_TED01","TED novel fold AF-A0A1F6BN75-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798470","Candidatus Jorgensenbacteria bacterium RIFCSPHIGHO2_02_FULL_45_20"]]},{"id":"NCBITaxon:1798487","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6DFE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F6DFE6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798487","Candidatus Kaiserbacteria bacterium RIFCSPHIGHO2_01_FULL_56_24"]]},{"id":"NCBITaxon:1798507","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6EIZ4-F1-model_v4_TED02","TED novel fold AF-A0A1F6EIZ4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798507","Candidatus Kaiserbacteria bacterium RIFCSPLOWO2_01_FULL_50_24"]]},{"id":"NCBITaxon:1798509","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6EX73-F1-model_v4_TED01","TED novel fold AF-A0A1F6EX73-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798509","Candidatus Kaiserbacteria bacterium RIFCSPLOWO2_01_FULL_52_12b"]]},{"id":"NCBITaxon:1798512","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6F094-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F6F094-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798512","Candidatus Kaiserbacteria bacterium RIFCSPLOWO2_01_FULL_54_13"]]},{"id":"NCBITaxon:1798531","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6FIM7-F1-model_v4_TED01","TED novel fold AF-A0A1F6FIM7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798531","Candidatus Kaiserbacteria bacterium RIFOXYB1_FULL_46_14"]]},{"id":"NCBITaxon:1798540","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2ARW6-F1-model_v4_TED02","TED novel fold AF-A0A1G2ARW6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798540","Candidatus Kerfeldbacteria bacterium RIFCSPHIGHO2_02_FULL_42_14"]]},{"id":"NCBITaxon:1798547","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2BHU9-F1-model_v4_TED02","TED novel fold AF-A0A1G2BHU9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798547","Candidatus Kerfeldbacteria bacterium RIFOXYB2_FULL_38_14"]]},{"id":"NCBITaxon:1798552","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2BSU0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G2BSU0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798552","Candidatus Komeilibacteria bacterium RIFCSPLOWO2_01_FULL_53_11"]]},{"id":"NCBITaxon:1798567","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0XC70-F1-model_v4_TED01","TED novel fold AF-A0A1G0XC70-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798567","Legionellales bacterium RIFCSPHIGHO2_12_FULL_35_11"]]},{"id":"NCBITaxon:1798572","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0XFY2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G0XFY2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798572","Lentisphaerae bacterium GWF2_45_14"]]},{"id":"NCBITaxon:1798573","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0YAC1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G0YAC1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798573","Lentisphaerae bacterium GWF2_49_21"]]},{"id":"NCBITaxon:1798576","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0Y3T4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G0Y3T4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798576","Lentisphaerae bacterium GWF2_57_35"]]},{"id":"NCBITaxon:1798585","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6HEX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F6HEX7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798585","Candidatus Levybacteria bacterium RBG_16_35_6"]]},{"id":"NCBITaxon:1798651","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2CH03-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1G2CH03-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1798651","Candidatus Liptonbacteria bacterium RIFCSPLOWO2_01_FULL_53_13"]]},{"id":"NCBITaxon:1798658","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2CWC2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G2CWC2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798658","Candidatus Lloydbacteria bacterium RIFCSPHIGHO2_01_FULL_49_22"]]},{"id":"NCBITaxon:1798676","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6M667-F1-model_v4_TED02","TED novel fold AF-A0A1F6M667-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798676","Candidatus Magasanikbacteria bacterium RIFCSPHIGHO2_02_FULL_41_13"]]},{"id":"NCBITaxon:1798680","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6M8C9-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1F6M8C9-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1798680","Candidatus Magasanikbacteria bacterium RIFCSPHIGHO2_02_FULL_47_14"]]},{"id":"NCBITaxon:1798683","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6MPA6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F6MPA6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798683","Candidatus Magasanikbacteria bacterium RIFCSPHIGHO2_02_FULL_51_14"]]},{"id":"NCBITaxon:1798704","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6NUX8-F1-model_v4_TED01","TED novel fold AF-A0A1F6NUX8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798704","Candidatus Magasanikbacteria bacterium RIFOXYC2_FULL_42_28"]]},{"id":"NCBITaxon:1798804","l":"Rhizobium sp. 58","na":1,"nb":1,"a":[["TED%3AAF-A0A853YI55-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A853YI55-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1798804","Rhizobium sp. 58"]]},{"id":"NCBITaxon:1799658","l":"Planctomycetaceae bacterium SCGC AG-212-F19","na":1,"nb":1,"a":[["TED%3AAF-A0A177QIY2-F1-model_v4_TED01","TED novel fold AF-A0A177QIY2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1799658","Planctomycetaceae bacterium SCGC AG-212-F19"]]},{"id":"NCBITaxon:1799659","l":"Verrucomicrobiaceae bacterium SCGC AG-212-N21","na":1,"nb":1,"a":[["TED%3AAF-A0A177RCM1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A177RCM1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1799659","Verrucomicrobiaceae bacterium SCGC AG-212-N21"]]},{"id":"NCBITaxon:1799661","l":"Gammaproteobacteria bacterium SCGC AG-212-F23","na":1,"nb":1,"a":[["TED%3AAF-A0A177QS54-F1-model_v4_TED01","TED novel fold AF-A0A177QS54-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1799661","Gammaproteobacteria bacterium SCGC AG-212-F23"]]},{"id":"NCBITaxon:1799667","l":"Prochlorococcus sp. MIT 1306","na":1,"nb":1,"a":[["TED%3AAF-A0A163DPJ5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A163DPJ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1799667","Prochlorococcus sp. MIT 1306"]]},{"id":"NCBITaxon:1799789","l":"Paraglaciecola hydrolytica","na":1,"nb":1,"a":[["TED%3AAF-A0A135ZZ80-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A135ZZ80-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1799789","Paraglaciecola hydrolytica"]]},{"id":"NCBITaxon:179995","l":"Anaerobiospirillum thomasii","na":1,"nb":1,"a":[["TED%3AAF-A0A2X0VC15-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2X0VC15-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A179995","Anaerobiospirillum thomasii"]]},{"id":"NCBITaxon:180088","l":"Rhizopogon vesiculosus","na":1,"nb":1,"a":[["TED%3AAF-A0A1J8PQS8-F1-model_v4_TED02","TED novel fold AF-A0A1J8PQS8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A180088","Rhizopogon vesiculosus"]]},{"id":"NCBITaxon:1801604","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6PV27-F1-model_v4_TED02","TED novel fold AF-A0A1F6PV27-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1801604","Candidatus Melainabacteria bacterium GWA2_34_9"]]},{"id":"NCBITaxon:1801609","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6QQC6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F6QQC6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801609","Candidatus Melainabacteria bacterium RIFCSPLOWO2_12_FULL_35_11"]]},{"id":"NCBITaxon:1801632","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6QWM3-F1-model_v4_TED01","TED novel fold AF-A0A1F6QWM3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801632","Candidatus Micrarchaeota archaeon RBG_16_36_9"]]},{"id":"NCBITaxon:1801637","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6R1N8-F1-model_v4_TED04","TED novel fold AF-A0A1F6R1N8-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1801637","Candidatus Moranbacteria bacterium RIFCSPHIGHO2_01_FULL_54_31"]]},{"id":"NCBITaxon:1801649","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6S1D9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F6S1D9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801649","Candidatus Moranbacteria bacterium RIFOXYB1_FULL_43_19"]]},{"id":"NCBITaxon:1801671","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2EF91-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G2EF91-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801671","Candidatus Nealsonbacteria bacterium RIFCSPLOWO2_01_FULL_41_9"]]},{"id":"NCBITaxon:1801692","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1F1X7-F1-model_v4_TED04","TED novel fold AF-A0A1G1F1X7-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1801692","Nitrospirae bacterium GWB2_47_37"]]},{"id":"NCBITaxon:1801697","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1F4T5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G1F4T5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801697","Nitrospirae bacterium GWC2_57_13"]]},{"id":"NCBITaxon:1801701","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1FR36-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1G1FR36-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1801701","Nitrospirae bacterium GWD2_57_9"]]},{"id":"NCBITaxon:1801704","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1GTR1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G1GTR1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801704","Nitrospirae bacterium RBG_13_41_22"]]},{"id":"NCBITaxon:1801711","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1GVS2-F1-model_v4_TED01","TED novel fold AF-A0A1G1GVS2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801711","Nitrospirae bacterium RBG_19FT_COMBO_58_9"]]},{"id":"NCBITaxon:1801718","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1LDN9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G1LDN9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801718","Nitrospirae bacterium RIFCSPLOWO2_12_FULL_63_8"]]},{"id":"NCBITaxon:1801786","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6XZR0-F1-model_v4_TED01","TED novel fold AF-A0A1F6XZR0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801786","Candidatus Nomurabacteria bacterium RIFCSPLOWO2_02_FULL_40_10"]]},{"id":"NCBITaxon:1801814","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1IS29-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G1IS29-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1801814","Omnitrophica bacterium GWA2_41_15"]]},{"id":"NCBITaxon:1801818","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1J283-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G1J283-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801818","Omnitrophica bacterium RBG_13_46_9"]]},{"id":"NCBITaxon:1801827","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1JVJ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G1JVJ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801827","Omnitrophica bacterium RIFCSPLOWO2_01_FULL_45_10b"]]},{"id":"NCBITaxon:1801856","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1NDQ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G1NDQ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801856","Omnitrophica WOR_2 bacterium RIFCSPHIGHO2_02_FULL_48_11"]]},{"id":"NCBITaxon:1801857","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1PAC5-F1-model_v4_TED01","TED novel fold AF-A0A1G1PAC5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801857","Omnitrophica WOR_2 bacterium RIFCSPHIGHO2_02_FULL_50_17"]]},{"id":"NCBITaxon:1801858","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1P862-F1-model_v4_TED04","TED novel fold AF-A0A1G1P862-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1801858","Omnitrophica WOR_2 bacterium RIFCSPHIGHO2_02_FULL_52_10"]]},{"id":"NCBITaxon:1801873","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1Q8R5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1G1Q8R5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1801873","Omnitrophica WOR_2 bacterium RIFOXYA2_FULL_38_17"]]},{"id":"NCBITaxon:1801895","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2WH70-F1-model_v4_TED03","TED novel fold AF-A0A1G2WH70-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1801895","Desulfuromonadaceae bacterium GWB2_53_15"]]},{"id":"NCBITaxon:1801905","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F7AUL0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F7AUL0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801905","Candidatus Peregrinibacteria bacterium RIFOXYB12_FULL_41_12"]]},{"id":"NCBITaxon:1801962","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2YV80-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G2YV80-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1801962","Planctomycetes bacterium RBG_13_50_24"]]},{"id":"NCBITaxon:1801977","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G3BPH6-F1-model_v4_TED01","TED novel fold AF-A0A1G3BPH6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801977","Planctomycetes bacterium RIFCSPHIGHO2_12_39_6"]]},{"id":"NCBITaxon:1801983","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G3C8S1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G3C8S1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801983","Planctomycetes bacterium RIFCSPLOWO2_12_FULL_40_19"]]},{"id":"NCBITaxon:1802043","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F7HGD6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F7HGD6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1802043","Candidatus Roizmanbacteria bacterium RIFCSPHIGHO2_02_FULL_43_11"]]},{"id":"NCBITaxon:1802053","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F7I5S8-F1-model_v4_TED01","TED novel fold AF-A0A1F7I5S8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802053","Candidatus Roizmanbacteria bacterium RIFCSPHIGHO2_12_FULL_42_10"]]},{"id":"NCBITaxon:1802082","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F7KFJ9-F1-model_v4_TED01","TED novel fold AF-A0A1F7KFJ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802082","Candidatus Roizmanbacteria bacterium RIFOXYA1_FULL_41_12"]]},{"id":"NCBITaxon:1802115","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2G8E2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G2G8E2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802115","Candidatus Ryanbacteria bacterium RIFCSPHIGHO2_01_FULL_48_27"]]},{"id":"NCBITaxon:1802173","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G3LNL6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G3LNL6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802173","Spirochaetes bacterium GWB1_27_13"]]},{"id":"NCBITaxon:1802187","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G3P5W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G3P5W3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802187","Spirochaetes bacterium GWF1_31_7"]]},{"id":"NCBITaxon:1802188","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G3PBZ0-F1-model_v4_TED01","TED novel fold AF-A0A1G3PBZ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802188","Spirochaetes bacterium GWF1_41_5"]]},{"id":"NCBITaxon:1802189","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G3PH37-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G3PH37-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802189","Spirochaetes bacterium GWF1_49_6"]]},{"id":"NCBITaxon:1802253","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G3TCI5-F1-model_v4_TED01","TED novel fold AF-A0A1G3TCI5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802253","Sulfurimonas sp. RIFCSPLOWO2_12_36_12"]]},{"id":"NCBITaxon:1802272","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2KNY1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G2KNY1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1802272","Candidatus Sungbacteria bacterium RIFCSPHIGHO2_02_FULL_49_20"]]},{"id":"NCBITaxon:1802312","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2MTD3-F1-model_v4_TED02","TED novel fold AF-A0A1G2MTD3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1802312","Candidatus Taylorbacteria bacterium RIFCSPHIGHO2_02_FULL_46_13"]]},{"id":"NCBITaxon:1802366","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2PV61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G2PV61-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802366","Candidatus Terrybacteria bacterium RIFCSPLOWO2_01_FULL_40_23"]]},{"id":"NCBITaxon:1802375","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F4PM56-F1-model_v4_TED01","TED novel fold AF-A0A1F4PM56-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802375","candidate division TM6 bacterium RIFCSPHIGHO2_12_FULL_32_22"]]},{"id":"NCBITaxon:1802377","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F4PRB0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F4PRB0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1802377","candidate division TM6 bacterium RIFCSPHIGHO2_12_FULL_38_8"]]},{"id":"NCBITaxon:1802407","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F7V5J3-F1-model_v4_TED01","TED novel fold AF-A0A1F7V5J3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802407","Candidatus Uhrbacteria bacterium RIFCSPLOWO2_02_FULL_48_12"]]},{"id":"NCBITaxon:1802422","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F7W566-F1-model_v4_TED02","TED novel fold AF-A0A1F7W566-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1802422","Candidatus Uhrbacteria bacterium RIFOXYB2_FULL_57_15"]]},{"id":"NCBITaxon:1802433","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G3ZKE5-F1-model_v4_TED03","TED novel fold AF-A0A1G3ZKE5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1802433","Verrucomicrobia bacterium RIFCSPHIGHO2_12_FULL_41_10"]]},{"id":"NCBITaxon:1802478","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F7X1A9-F1-model_v4_TED01","TED novel fold AF-A0A1F7X1A9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802478","Candidatus Woesebacteria bacterium RBG_13_36_22"]]},{"id":"NCBITaxon:1802492","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F7Y4F5-F1-model_v4_TED01","TED novel fold AF-A0A1F7Y4F5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802492","Candidatus Woesebacteria bacterium RIFCSPHIGHO2_01_FULL_38_9"]]},{"id":"NCBITaxon:1802496","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F7YA21-F1-model_v4_TED04","TED novel fold AF-A0A1F7YA21-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1802496","Candidatus Woesebacteria bacterium RIFCSPHIGHO2_01_FULL_39_28"]]},{"id":"NCBITaxon:1802518","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8BLY7-F1-model_v4_TED02","TED novel fold AF-A0A1F8BLY7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1802518","Candidatus Woesebacteria bacterium RIFCSPLOWO2_01_FULL_39_14"]]},{"id":"NCBITaxon:1802592","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1W575-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G1W575-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802592","Candidatus Woykebacteria bacterium GWB1_45_5"]]},{"id":"NCBITaxon:1802598","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1WH97-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G1WH97-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802598","Candidatus Woykebacteria bacterium RBG_19FT_COMBO_43_10"]]},{"id":"NCBITaxon:1802618","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F4V213-F1-model_v4_TED01","TED novel fold AF-A0A1F4V213-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802618","candidate division WWE3 bacterium RIFCSPHIGHO2_01_FULL_43_9"]]},{"id":"NCBITaxon:1802636","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F4W281-F1-model_v4_TED01","TED novel fold AF-A0A1F4W281-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802636","candidate division WWE3 bacterium RIFOXYA2_FULL_46_9"]]},{"id":"NCBITaxon:1802661","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8EEG9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F8EEG9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802661","Candidatus Yanofskybacteria bacterium RIFCSPHIGHO2_01_FULL_41_26"]]},{"id":"NCBITaxon:1802669","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8EYA5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F8EYA5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802669","Candidatus Yanofskybacteria bacterium RIFCSPHIGHO2_01_FULL_44_22"]]},{"id":"NCBITaxon:1802671","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8F4J4-F1-model_v4_TED01","TED novel fold AF-A0A1F8F4J4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802671","Candidatus Yanofskybacteria bacterium RIFCSPHIGHO2_01_FULL_45_42"]]},{"id":"NCBITaxon:1802730","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2SL64-F1-model_v4_TED01","TED novel fold AF-A0A1G2SL64-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802730","Candidatus Yonathbacteria bacterium RIFOXYD1_FULL_52_36"]]},{"id":"NCBITaxon:1802748","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2THG6-F1-model_v4_TED02","TED novel fold AF-A0A1G2THG6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1802748","Candidatus Zambryskibacteria bacterium RIFCSPHIGHO2_02_FULL_43_14"]]},{"id":"NCBITaxon:1802749","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2TGH1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G2TGH1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1802749","Candidatus Zambryskibacteria bacterium RIFCSPHIGHO2_02_FULL_43_37"]]},{"id":"NCBITaxon:1802776","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2URS1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G2URS1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802776","Candidatus Zambryskibacteria bacterium RIFCSPLOWO2_12_FULL_39_23"]]},{"id":"NCBITaxon:1802984","l":"Candidatus Fokinia solitaria","na":1,"nb":1,"a":[["TED%3AAF-A0A2U8BT05-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U8BT05-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802984","Candidatus Fokinia solitaria"]]},{"id":"NCBITaxon:1803424","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q8BEA6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q8BEA6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1803424","Acidobacteria bacterium 13_1_20CM_2_55_15"]]},{"id":"NCBITaxon:1803428","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q8ANT9-F1-model_v4_TED01","TED novel fold AF-A0A1Q8ANT9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1803428","Acidobacteria bacterium 13_1_20CM_2_65_9"]]},{"id":"NCBITaxon:1803450","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q7MS00-F1-model_v4_TED03","TED novel fold AF-A0A1Q7MS00-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1803450","Acidobacteria bacterium 13_1_40CM_3_65_5"]]},{"id":"NCBITaxon:1803456","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q7K8T4-F1-model_v4_TED01","TED novel fold AF-A0A1Q7K8T4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1803456","Acidobacteria bacterium 13_1_40CM_4_65_8"]]},{"id":"NCBITaxon:1803459","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q7GVF6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1Q7GVF6-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1803459","Acidobacteria bacterium 13_1_40CM_65_14"]]},{"id":"NCBITaxon:1803465","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6WU70-F1-model_v4_TED03","TED novel fold AF-A0A1Q6WU70-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1803465","Acidobacteria bacterium 13_2_20CM_57_7"]]},{"id":"NCBITaxon:1803492","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q7C938-F1-model_v4_TED02","TED novel fold AF-A0A1Q7C938-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1803492","Actinobacteria bacterium 13_2_20CM_2_66_6"]]},{"id":"NCBITaxon:1803508","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1J4RGT0-F1-model_v4_TED01","TED novel fold AF-A0A1J4RGT0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1803508","Alphaproteobacteria bacterium CG1_02_46_17"]]},{"id":"NCBITaxon:1803514","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1J5J640-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1J5J640-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1803514","Candidatus Altarchaeum sp. CG2_30_32_3053"]]},{"id":"NCBITaxon:1803819","l":"Thermoplasmatales archaeon SG8-52-4","na":1,"nb":1,"a":[["TED%3AAF-A0A151DZ87-F1-model_v4_TED01","TED novel fold AF-A0A151DZ87-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1803819","Thermoplasmatales archaeon SG8-52-4"]]},{"id":"NCBITaxon:1803822","l":"Candidatus Proteinoplasmatales archaeon SG8-5","na":1,"nb":1,"a":[["TED%3AAF-A0A151ERD5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A151ERD5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1803822","Candidatus Proteinoplasmatales archaeon SG8-5"]]},{"id":"NCBITaxon:1803865","l":"Thiomicrospira sp. S5","na":1,"nb":1,"a":[["TED%3AAF-A0A3S9TMS1-F1-model_v4_TED02","TED novel fold AF-A0A3S9TMS1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1803865","Thiomicrospira sp. S5"]]},{"id":"NCBITaxon:1803903","l":"Actinomadura montaniterrae","na":1,"nb":1,"a":[["TED%3AAF-A0A6L3VXB5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L3VXB5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1803903","Actinomadura montaniterrae"]]},{"id":"NCBITaxon:1804625","l":"Ruficoccus amylovorans","na":1,"nb":1,"a":[["TED%3AAF-A0A842HAR4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A842HAR4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1804625","Ruficoccus amylovorans"]]},{"id":"NCBITaxon:1804986","l":"Amycolatopsis albispora","na":1,"nb":1,"a":[["TED%3AAF-A0A344L4Y7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A344L4Y7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1804986","Amycolatopsis albispora"]]},{"id":"NCBITaxon:1804988","l":"Nesterenkonia sphaerica","na":1,"nb":1,"a":[["TED%3AAF-A0A5R9AAV0-F1-model_v4_TED01","TED novel fold AF-A0A5R9AAV0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1804988","Nesterenkonia sphaerica"]]},{"id":"NCBITaxon:1805004","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1J5A5D4-F1-model_v4_TED03","TED novel fold AF-A0A1J5A5D4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1805004","Anaerolineae bacterium CG2_30_58_95"]]},{"id":"NCBITaxon:1805008","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q8A3L0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q8A3L0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1805008","archaeon 13_1_20CM_2_54_9"]]},{"id":"NCBITaxon:1805026","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q7FX52-F1-model_v4_TED01","TED novel fold AF-A0A1Q7FX52-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1805026","Armatimonadetes bacterium 13_1_40CM_64_14"]]},{"id":"NCBITaxon:1805035","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1J5B876-F1-model_v4_TED01","TED novel fold AF-A0A1J5B876-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1805035","Candidatus Beckwithbacteria bacterium CG2_30_44_31"]]},{"id":"NCBITaxon:1805096","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q7MGL8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1Q7MGL8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1805096","Crenarchaeota archaeon 13_1_40CM_3_52_17"]]},{"id":"NCBITaxon:1805126","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1J5EMZ8-F1-model_v4_TED01","TED novel fold AF-A0A1J5EMZ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1805126","Deltaproteobacteria bacterium CG2_30_63_29"]]},{"id":"NCBITaxon:1805128","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1J5E7K9-F1-model_v4_TED01","TED novel fold AF-A0A1J5E7K9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1805128","Desulfobacteraceae bacterium CG2_30_51_40"]]},{"id":"NCBITaxon:1805130","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1J4T3W5-F1-model_v4_TED02","TED novel fold AF-A0A1J4T3W5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1805130","Desulfovibrionaceae bacterium CG1_02_65_16"]]},{"id":"NCBITaxon:1805146","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1J4T4S7-F1-model_v4_TED07","TED highly-symmetric fold AF-A0A1J4T4S7-F1-model_v4_TED07"]],"b":[["NCBITaxon%3A1805146","Candidatus Falkowbacteria bacterium CG1_02_37_44"]]},{"id":"NCBITaxon:1805220","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1J4U5E6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1J4U5E6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1805220","Ignavibacteria bacterium CG1_02_37_35"]]},{"id":"NCBITaxon:1805224","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q7WUS9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q7WUS9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1805224","Ktedonobacter sp. 13_1_20CM_3_54_15"]]},{"id":"NCBITaxon:1805240","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1J4XBB4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1J4XBB4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1805240","Fidelibacterota bacterium CG1_02_48_14"]]},{"id":"NCBITaxon:1805263","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q7SGL5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q7SGL5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1805263","Nitrospirae bacterium 13_1_20CM_4_62_6"]]},{"id":"NCBITaxon:1805284","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1J4VFU9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1J4VFU9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1805284","Candidatus Omnitrophica bacterium CG1_02_40_15"]]},{"id":"NCBITaxon:1805286","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1J4Z274-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1J4Z274-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1805286","Candidatus Omnitrophica bacterium CG1_02_43_210"]]},{"id":"NCBITaxon:1805297","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1J4W239-F1-model_v4_TED01","TED novel fold AF-A0A1J4W239-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1805297","Candidatus Pacearchaeota archaeon CG1_02_35_32"]]},{"id":"NCBITaxon:1805302","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1J4WA19-F1-model_v4_TED01","TED novel fold AF-A0A1J4WA19-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1805302","Parcubacteria group bacterium CG1_02_37_13"]]},{"id":"NCBITaxon:1805308","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1J4WKZ9-F1-model_v4_TED01","TED novel fold AF-A0A1J4WKZ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1805308","Parcubacteria group bacterium CG1_02_41_26"]]},{"id":"NCBITaxon:1805317","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1J5H0E8-F1-model_v4_TED01","TED novel fold AF-A0A1J5H0E8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1805317","Parcubacteria group bacterium CG2_30_44_11"]]},{"id":"NCBITaxon:1805333","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1J4X614-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1J4X614-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1805333","Proteobacteria bacterium CG1_02_64_396"]]},{"id":"NCBITaxon:1805366","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q7D5X9-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1Q7D5X9-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1805366","Candidatus Rokubacteria bacterium 13_1_40CM_68_15"]]},{"id":"NCBITaxon:1805371","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6WCT4-F1-model_v4_TED02","TED novel fold AF-A0A1Q6WCT4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1805371","Candidatus Rokubacteria bacterium 13_2_20CM_69_10"]]},{"id":"NCBITaxon:1805403","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1J5DNS0-F1-model_v4_TED02","TED novel fold AF-A0A1J5DNS0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1805403","bacterium CG2_30_54_10"]]},{"id":"NCBITaxon:1805422","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1J4XLR5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1J4XLR5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1805422","Candidatus Woesearchaeota archaeon CG1_02_33_12"]]},{"id":"NCBITaxon:1805424","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1J4XRK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1J4XRK2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1805424","Candidatus Woesearchaeota archaeon CG1_02_57_44"]]},{"id":"NCBITaxon:1805481","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A177EK54-F1-model_v4_TED02","TED novel fold AF-A0A177EK54-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1805481","Nematocida ironsii"]]},{"id":"NCBITaxon:1806667","l":"Marinomonas gallaica","na":1,"nb":1,"a":[["TED%3AAF-A0A1C3JTC5-F1-model_v4_TED01","TED novel fold AF-A0A1C3JTC5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1806667","Marinomonas gallaica"]]},{"id":"NCBITaxon:1806885","l":"Sphingorhabdus sp. M41","na":1,"nb":1,"a":[["TED%3AAF-A0A127MDA6-F1-model_v4_TED01","TED novel fold AF-A0A127MDA6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1806885","Sphingorhabdus sp. M41"]]},{"id":"NCBITaxon:180862","l":"Bacillus thuringiensis serovar toumanoffi","na":1,"nb":1,"a":[["TED%3AAF-A0A243E870-F1-model_v4_TED01","TED novel fold AF-A0A243E870-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A180862","Bacillus thuringiensis serovar toumanoffi"]]},{"id":"NCBITaxon:180880","l":"Bacillus thuringiensis serovar argentinensis","na":1,"nb":1,"a":[["TED%3AAF-A0A243JUF1-F1-model_v4_TED01","TED novel fold AF-A0A243JUF1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A180880","Bacillus thuringiensis serovar argentinensis"]]},{"id":"NCBITaxon:1808955","l":"Bacillus mesophilus","na":1,"nb":1,"a":[["TED%3AAF-A0A6M0Q7E2-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A6M0Q7E2-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1808955","Bacillus mesophilus"]]},{"id":"NCBITaxon:1811674","l":"Methanobacterium sp. PtaB.Bin024","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4TH57-F1-model_v4_TED01","TED novel fold AF-A0A1V4TH57-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1811674","Methanobacterium sp. PtaB.Bin024"]]},{"id":"NCBITaxon:1811676","l":"Methanobacterium sp. PtaU1.Bin242","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4YTN8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1V4YTN8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1811676","Methanobacterium sp. PtaU1.Bin242"]]},{"id":"NCBITaxon:1811679","l":"Methanomethylovorans sp. PtaU1.Bin093","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4YFL3-F1-model_v4_TED01","TED novel fold AF-A0A1V4YFL3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1811679","Methanomethylovorans sp. PtaU1.Bin093"]]},{"id":"NCBITaxon:1811685","l":"Methanosaeta sp. PtaB.Bin039","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4UYT6-F1-model_v4_TED01","TED novel fold AF-A0A1V4UYT6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1811685","Methanosaeta sp. PtaB.Bin039"]]},{"id":"NCBITaxon:1811691","l":"Methanosaeta sp. PtaU1.Bin055","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5BF30-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5BF30-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1811691","Methanosaeta sp. PtaU1.Bin055"]]},{"id":"NCBITaxon:1811700","l":"Syntrophorhabdus sp. PtaB.Bin047","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4WYL1-F1-model_v4_TED08","TED novel fold AF-A0A1V4WYL1-F1-model_v4_TED08"]],"b":[["NCBITaxon%3A1811700","Syntrophorhabdus sp. PtaB.Bin047"]]},{"id":"NCBITaxon:1811710","l":"Syntrophus sp. PtaB.Bin001","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4X270-F1-model_v4_TED02","TED novel fold AF-A0A1V4X270-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1811710","Syntrophus sp. PtaB.Bin001"]]},{"id":"NCBITaxon:1811713","l":"Syntrophus sp. PtaU1.Bin208","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5DMC7-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1V5DMC7-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1811713","Syntrophus sp. PtaU1.Bin208"]]},{"id":"NCBITaxon:1811720","l":"Methanoregulaceae archaeon PtaB.Bin009","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4U8V2-F1-model_v4_TED01","TED novel fold AF-A0A1V4U8V2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1811720","Methanoregulaceae archaeon PtaB.Bin009"]]},{"id":"NCBITaxon:1811722","l":"Methanoregulaceae archaeon PtaB.Bin108","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4UG46-F1-model_v4_TED02","TED novel fold AF-A0A1V4UG46-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1811722","Methanoregulaceae archaeon PtaB.Bin108"]]},{"id":"NCBITaxon:1811725","l":"Methanoregulaceae archaeon PtaU1.Bin066","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5A3G5-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1V5A3G5-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1811725","Methanoregulaceae archaeon PtaU1.Bin066"]]},{"id":"NCBITaxon:1812858","l":"Anaerosacchariphilus polymeriproducens","na":1,"nb":1,"a":[["TED%3AAF-A0A371AZT7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A371AZT7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1812858","Anaerosacchariphilus polymeriproducens"]]},{"id":"NCBITaxon:1813876","l":"Phenylobacterium hankyongense","na":1,"nb":1,"a":[["TED%3AAF-A0A328B167-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A328B167-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1813876","Phenylobacterium hankyongense"]]},{"id":"NCBITaxon:1817495","l":"Agromyces binzhouensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q2K015-F1-model_v4_TED02","TED novel fold AF-A0A4Q2K015-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1817495","Agromyces binzhouensis"]]},{"id":"NCBITaxon:1817731","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5FX50-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F5FX50-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1817731","Candidatus Collierbacteria bacterium RIFOXYD1_FULL_40_9"]]},{"id":"NCBITaxon:1817748","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1C2I3-F1-model_v4_TED01","TED novel fold AF-A0A1G1C2I3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1817748","Microgenomates group bacterium RBG_19FT_COMBO_39_10"]]},{"id":"NCBITaxon:1817750","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1CI75-F1-model_v4_TED01","TED novel fold AF-A0A1G1CI75-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1817750","Microgenomates group bacterium RIFCSPLOWO2_01_FULL_46_13"]]},{"id":"NCBITaxon:1817755","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6V2B3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F6V2B3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1817755","Candidatus Muproteobacteria bacterium RBG_16_60_9"]]},{"id":"NCBITaxon:1817757","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6T0C4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F6T0C4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1817757","Candidatus Muproteobacteria bacterium RBG_16_64_10"]]},{"id":"NCBITaxon:1817761","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6UEJ7-F1-model_v4_TED01","TED novel fold AF-A0A1F6UEJ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1817761","Candidatus Muproteobacteria bacterium RBG_19FT_COMBO_61_10"]]},{"id":"NCBITaxon:1817824","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5NNY4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F5NNY4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1817824","Candidatus Doudnabacteria bacterium RIFCSPHIGHO2_01_FULL_46_14"]]},{"id":"NCBITaxon:1817828","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5PET0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F5PET0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1817828","Candidatus Doudnabacteria bacterium RIFCSPHIGHO2_01_FULL_50_11"]]},{"id":"NCBITaxon:1817851","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5RHY4-F1-model_v4_TED04","TED novel fold AF-A0A1F5RHY4-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1817851","Candidatus Edwardsbacteria bacterium GWF2_54_11"]]},{"id":"NCBITaxon:1817863","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5VLS4-F1-model_v4_TED01","TED novel fold AF-A0A1F5VLS4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1817863","Candidatus Fischerbacteria bacterium RBG_13_37_8"]]},{"id":"NCBITaxon:1817864","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5URP5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F5URP5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1817864","Candidatus Fraserbacteria bacterium RBG_16_55_9"]]},{"id":"NCBITaxon:1817876","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F7RNQ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F7RNQ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1817876","Candidatus Schekmanbacteria bacterium GWA2_38_11"]]},{"id":"NCBITaxon:1817883","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F7SL59-F1-model_v4_TED02","TED novel fold AF-A0A1F7SL59-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1817883","Candidatus Schekmanbacteria bacterium RIFCSPLOWO2_12_FULL_38_15"]]},{"id":"NCBITaxon:1817890","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F7FCR9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F7FCR9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1817890","Candidatus Raymondbacteria bacterium RIFOXYD12_FULL_49_13"]]},{"id":"NCBITaxon:1817892","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1J5IM62-F1-model_v4_TED01","TED novel fold AF-A0A1J5IM62-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1817892","Candidatus Wirthbacteria bacterium CG2_30_54_11"]]},{"id":"NCBITaxon:1817896","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1F4UJQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F4UJQ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1817896","candidate division WS6 bacterium RIFOXYB1_FULL_33_14"]]},{"id":"NCBITaxon:182096","l":"Aspergillus chevalieri","na":1,"nb":1,"a":[["TED%3AAF-A0A7R7VIB2-F1-model_v4_TED01","TED novel fold AF-A0A7R7VIB2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A182096","Aspergillus chevalieri"]]},{"id":"NCBITaxon:182220","l":"Mycolicibacterium murale","na":1,"nb":1,"a":[["TED%3AAF-A0A7I9WL32-F1-model_v4_TED01","TED novel fold AF-A0A7I9WL32-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39695","Mycolicibacterium tokaiense"]]},{"id":"NCBITaxon:1822235","l":"Roseovarius sp. HI0049","na":1,"nb":1,"a":[["TED%3AAF-A0A176FJ41-F1-model_v4_TED02","TED novel fold AF-A0A176FJ41-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1822235","Roseovarius sp. HI0049"]]},{"id":"NCBITaxon:1822240","l":"Erythrobacter sp. HI0063","na":1,"nb":1,"a":[["TED%3AAF-A0A167IPA1-F1-model_v4_TED01","TED novel fold AF-A0A167IPA1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1822240","Erythrobacter sp. HI0063"]]},{"id":"NCBITaxon:1822254","l":"Oleiphilus sp. HI0079","na":1,"nb":1,"a":[["TED%3AAF-A0A657BC38-F1-model_v4_TED02","TED novel fold AF-A0A657BC38-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1822254","Oleiphilus sp. HI0079"]]},{"id":"NCBITaxon:1827290","l":"Chryseobacterium sp. MYb7","na":1,"nb":1,"a":[["TED%3AAF-A0A2S8ZE56-F1-model_v4_TED03","TED novel fold AF-A0A2S8ZE56-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1827290","Chryseobacterium sp. MYb7"]]},{"id":"NCBITaxon:1827382","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1W9H4W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W9H4W3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1827382","Proteobacteria bacterium SG_bin5"]]},{"id":"NCBITaxon:1827383","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1W9HJL3-F1-model_v4_TED02","TED novel fold AF-A0A1W9HJL3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1827383","Proteobacteria bacterium SG_bin6"]]},{"id":"NCBITaxon:1827606","l":"Streptomyces sp. 70","na":1,"nb":1,"a":[["TED%3AAF-A0A2G7EW80-F1-model_v4_TED01","TED novel fold AF-A0A2G7EW80-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1827606","Streptomyces sp. 70"]]},{"id":"NCBITaxon:1827608","l":"Streptomyces sp. 74","na":1,"nb":1,"a":[["TED%3AAF-A0A497W5L2-F1-model_v4_TED01","TED novel fold AF-A0A497W5L2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1827608","Streptomyces sp. 74"]]},{"id":"NCBITaxon:1833852","l":"Desulforamulus ferrireducens","na":1,"nb":1,"a":[["TED%3AAF-A0A1S6IZY5-F1-model_v4_TED02","TED novel fold AF-A0A1S6IZY5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1833852","Desulforamulus ferrireducens"]]},{"id":"NCBITaxon:1834037","l":"Rheinheimera riviphila","na":1,"nb":1,"a":[["TED%3AAF-A0A437QT82-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A437QT82-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1834037","Rheinheimera riviphila"]]},{"id":"NCBITaxon:1834075","l":"Mycobacterium sp. 1245801.1","na":1,"nb":1,"a":[["TED%3AAF-A0A1A3FAD2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1A3FAD2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1834075","Mycobacterium sp. 1245801.1"]]},{"id":"NCBITaxon:1834077","l":"Mycobacterium sp. 1274761.0","na":1,"nb":1,"a":[["TED%3AAF-A0A1A3SSL2-F1-model_v4_TED01","TED novel fold AF-A0A1A3SSL2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1834077","Mycobacterium sp. 1274761.0"]]},{"id":"NCBITaxon:1834089","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1B7U477-F1-model_v4_TED01","TED novel fold AF-A0A1B7U477-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1834089","Mycobacterium sp. 852002-40037_SCH5390672"]]},{"id":"NCBITaxon:1834109","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1A0WQJ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1A0WQJ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1834109","Mycobacterium sp. 852013-50091_SCH5140682"]]},{"id":"NCBITaxon:1834154","l":"Mycobacterium sp. GA-1841","na":1,"nb":1,"a":[["TED%3AAF-A0A1R0V4H9-F1-model_v4_TED01","TED novel fold AF-A0A1R0V4H9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1834154","Mycobacterium sp. GA-1841"]]},{"id":"NCBITaxon:1834192","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A200JDJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A200JDJ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1834192","Candidatus Enterococcus dunnyi"]]},{"id":"NCBITaxon:1835702","l":"Penicillium arizonense","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5L3E5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F5L3E5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1835702","Penicillium arizonense"]]},{"id":"NCBITaxon:1835722","l":"Neolewinella aquimaris","na":1,"nb":1,"a":[["TED%3AAF-A0A840E6J2-F1-model_v4_TED03","TED novel fold AF-A0A840E6J2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1835722","Neolewinella aquimaris"]]},{"id":"NCBITaxon:1835767","l":"Limnohabitans sp. MMS-10A-178","na":1,"nb":1,"a":[["TED%3AAF-A0A315B4N1-F1-model_v4_TED02","TED novel fold AF-A0A315B4N1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1835767","Limnohabitans sp. MMS-10A-178"]]},{"id":"NCBITaxon:1839766","l":"Streptomyces sp. DconLS","na":1,"nb":1,"a":[["TED%3AAF-A0A1C5DNZ5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C5DNZ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1839766","Streptomyces sp. DconLS"]]},{"id":"NCBITaxon:1840705","l":"Nostoc sp. ATCC 43529","na":1,"nb":1,"a":[["TED%3AAF-A0A367QQT5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A367QQT5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1840705","Nostoc sp. ATCC 43529"]]},{"id":"NCBITaxon:1841597","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q9NZD8-F1-model_v4_TED01","TED novel fold AF-A0A1Q9NZD8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1841597","Candidatus Heimdallarchaeota archaeon LC_2"]]},{"id":"NCBITaxon:1841599","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q9N9F6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1Q9N9F6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1841599","Candidatus Odinarchaeum yellowstonii"]]},{"id":"NCBITaxon:1841610","l":"Planctopirus hydrillae","na":1,"nb":1,"a":[["TED%3AAF-A0A1C3EHJ6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1C3EHJ6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1841610","Planctopirus hydrillae"]]},{"id":"NCBITaxon:1842539","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1B3NDG9-F1-model_v4_TED01","TED novel fold AF-A0A1B3NDG9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1842539","Allobosea sp. RAC05"]]},{"id":"NCBITaxon:1843184","l":"Pseudomonas sp. AU11447","na":1,"nb":1,"a":[["TED%3AAF-A0A1B8VEK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B8VEK2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1843184","Pseudomonas sp. AU11447"]]},{"id":"NCBITaxon:1843237","l":"Sphingomonas prati","na":1,"nb":1,"a":[["TED%3AAF-A0A7W9BV99-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W9BV99-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1843237","Sphingomonas prati"]]},{"id":"NCBITaxon:1844006","l":"Phaeobacter porticola","na":1,"nb":1,"a":[["TED%3AAF-A0A1L3I6U2-F1-model_v4_TED01","TED novel fold AF-A0A1L3I6U2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1844006","Phaeobacter porticola"]]},{"id":"NCBITaxon:1844972","l":"Paenibacillus oryzae","na":1,"nb":1,"a":[["TED%3AAF-A0A1A5YQ67-F1-model_v4_TED01","TED novel fold AF-A0A1A5YQ67-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1844972","Paenibacillus oryzae"]]},{"id":"NCBITaxon:1848329","l":"Nonomuraea diastatica","na":1,"nb":1,"a":[["TED%3AAF-A0A4R4WGH3-F1-model_v4_TED02","TED novel fold AF-A0A4R4WGH3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1848329","Nonomuraea diastatica"]]},{"id":"NCBITaxon:1848693","l":"Microbacterium sp. MYb72","na":1,"nb":1,"a":[["TED%3AAF-A0A2S8ZM11-F1-model_v4_TED01","TED novel fold AF-A0A2S8ZM11-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1848693","Microbacterium sp. MYb72"]]},{"id":"NCBITaxon:1848756","l":"Actinobacteria bacterium IMCC26103","na":1,"nb":1,"a":[["TED%3AAF-A0A7D6IK92-F1-model_v4_TED01","TED novel fold AF-A0A7D6IK92-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1848756","Actinobacteria bacterium IMCC26103"]]},{"id":"NCBITaxon:1848928","l":"Helicobacter sp. TUL","na":1,"nb":1,"a":[["TED%3AAF-A0A2A2GT12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A2GT12-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1848928","Helicobacter sp. TUL"]]},{"id":"NCBITaxon:1849261","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1D2RA25-F1-model_v4_TED02","TED novel fold AF-A0A1D2RA25-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1849261","Candidatus Altarchaeales archaeon WOR_SM1_SCG"]]},{"id":"NCBITaxon:1849359","l":"Jannaschia sp. EhC01","na":1,"nb":1,"a":[["TED%3AAF-A0A1B6YP83-F1-model_v4_TED06","TED novel fold AF-A0A1B6YP83-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A1849359","Jannaschia sp. EhC01"]]},{"id":"NCBITaxon:184978","l":"Decorospora gaudefroyi","na":1,"nb":1,"a":[["TED%3AAF-A0A6A5K2G3-F1-model_v4_TED01","TED novel fold AF-A0A6A5K2G3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A184978","Decorospora gaudefroyi"]]},{"id":"NCBITaxon:1850093","l":"Hymenobacter nivis","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z3GL83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z3GL83-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1850093","Hymenobacter nivis"]]},{"id":"NCBITaxon:1850238","l":"Rhizorhabdus dicambivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A2A4FP30-F1-model_v4_TED01","TED novel fold AF-A0A2A4FP30-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1850238","Rhizorhabdus dicambivorans"]]},{"id":"NCBITaxon:1850246","l":"Urechidicola croceus","na":1,"nb":1,"a":[["TED%3AAF-A0A1D8P9B6-F1-model_v4_TED01","TED novel fold AF-A0A1D8P9B6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1850246","Urechidicola croceus"]]},{"id":"NCBITaxon:1850252","l":"Tenacibaculum todarodis","na":1,"nb":1,"a":[["TED%3AAF-A0A1L3JJ42-F1-model_v4_TED01","TED novel fold AF-A0A1L3JJ42-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1850252","Tenacibaculum todarodis"]]},{"id":"NCBITaxon:1850347","l":"Novosphingobium guangzhouense","na":1,"nb":1,"a":[["TED%3AAF-A0A2K2G3N9-F1-model_v4_TED02","TED novel fold AF-A0A2K2G3N9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1850347","Novosphingobium guangzhouense"]]},{"id":"NCBITaxon:1850373","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A4S8N3I1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S8N3I1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1850373","Peteryoungia rhizophila"]]},{"id":"NCBITaxon:1850517","l":"Paenibacillus oryzisoli","na":1,"nb":1,"a":[["TED%3AAF-A0A197ZY80-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A197ZY80-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1850517","Paenibacillus oryzisoli"]]},{"id":"NCBITaxon:1851148","l":"Limihaloglobus sulfuriphilus","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q2MIY0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q2MIY0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1851148","Limihaloglobus sulfuriphilus"]]},{"id":"NCBITaxon:1851167","l":"Streptomyces sp. 11-1-2","na":1,"nb":1,"a":[["TED%3AAF-A0A222SLM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A222SLM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1851167","Streptomyces sp. 11-1-2"]]},{"id":"NCBITaxon:185139","l":"Rubrobacter taiwanensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4R1BQH8-F1-model_v4_TED01","TED novel fold AF-A0A4R1BQH8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A185139","Rubrobacter taiwanensis"]]},{"id":"NCBITaxon:1852029","l":"Aquicoccus porphyridii","na":1,"nb":1,"a":[["TED%3AAF-A0A5A9ZV31-F1-model_v4_TED02","TED novel fold AF-A0A5A9ZV31-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1852029","Aquicoccus porphyridii"]]},{"id":"NCBITaxon:185243","l":"Propionicimonas paludicola","na":1,"nb":1,"a":[["TED%3AAF-A0A2A9CU70-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A9CU70-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A185243","Propionicimonas paludicola"]]},{"id":"NCBITaxon:1852791","l":"Alphaproteobacteria bacterium ADurb.Bin100","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6FVU0-F1-model_v4_TED05","TED novel fold AF-A0A1V6FVU0-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1852791","Alphaproteobacteria bacterium ADurb.Bin100"]]},{"id":"NCBITaxon:1852795","l":"Bacteroidetes bacterium ADurb.Bin008","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6JEY9-F1-model_v4_TED09","TED highly-symmetric fold AF-A0A1V6JEY9-F1-model_v4_TED09"]],"b":[["NCBITaxon%3A1852795","Bacteroidetes bacterium ADurb.Bin008"]]},{"id":"NCBITaxon:1852798","l":"Bacteroidetes bacterium ADurb.Bin028","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6I663-F1-model_v4_TED01","TED novel fold AF-A0A1V6I663-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852798","Bacteroidetes bacterium ADurb.Bin028"]]},{"id":"NCBITaxon:1852799","l":"Bacteroidetes bacterium ADurb.Bin035","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6I9V5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V6I9V5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852799","Bacteroidetes bacterium ADurb.Bin035"]]},{"id":"NCBITaxon:1852803","l":"Bacteroidetes bacterium ADurb.Bin090","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6ELI2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V6ELI2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1852803","Bacteroidetes bacterium ADurb.Bin090"]]},{"id":"NCBITaxon:1852809","l":"Bacteroidetes bacterium ADurb.Bin217","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5VSW2-F1-model_v4_TED01","TED novel fold AF-A0A1V5VSW2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852809","Bacteroidetes bacterium ADurb.Bin217"]]},{"id":"NCBITaxon:1852813","l":"Bacteroidetes bacterium ADurb.Bin408","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5NBE7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5NBE7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852813","Bacteroidetes bacterium ADurb.Bin408"]]},{"id":"NCBITaxon:1852822","l":"candidate division Hyd24-12 bacterium ADurb.Bin004","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6K796-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1V6K796-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1852822","candidate division Hyd24-12 bacterium ADurb.Bin004"]]},{"id":"NCBITaxon:1852823","l":"candidate division BRC1 bacterium ADurb.Bin183","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5Y2G0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V5Y2G0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1852823","candidate division BRC1 bacterium ADurb.Bin183"]]},{"id":"NCBITaxon:1852826","l":"candidate division CPR1 bacterium ADurb.Bin160","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5ZNE9-F1-model_v4_TED01","TED novel fold AF-A0A1V5ZNE9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852826","candidate division CPR1 bacterium ADurb.Bin160"]]},{"id":"NCBITaxon:1852827","l":"candidate division TA06 bacterium ADurb.Bin131","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6C6G6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V6C6G6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1852827","candidate division TA06 bacterium ADurb.Bin131"]]},{"id":"NCBITaxon:1852835","l":"Candidatus Cloacimonetes bacterium ADurb.Bin088","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6F973-F1-model_v4_TED04","TED novel fold AF-A0A1V6F973-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1852835","Candidatus Cloacimonetes bacterium ADurb.Bin088"]]},{"id":"NCBITaxon:1852848","l":"Candidatus Hydrogenedentes bacterium ADurb.Bin170","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5YWP3-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A1V5YWP3-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1852848","Candidatus Hydrogenedentes bacterium ADurb.Bin170"]]},{"id":"NCBITaxon:1852857","l":"Chloroflexi bacterium ADurb.Bin180","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5YJB6-F1-model_v4_TED01","TED novel fold AF-A0A1V5YJB6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852857","Chloroflexi bacterium ADurb.Bin180"]]},{"id":"NCBITaxon:1852860","l":"Chloroflexi bacterium ADurb.Bin344","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5Q6M1-F1-model_v4_TED02","TED novel fold AF-A0A1V5Q6M1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1852860","Chloroflexi bacterium ADurb.Bin344"]]},{"id":"NCBITaxon:1852861","l":"Chloroflexi bacterium ADurb.Bin360","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5Q263-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V5Q263-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1852861","Chloroflexi bacterium ADurb.Bin360"]]},{"id":"NCBITaxon:1852862","l":"Deltaproteobacteria bacterium ADurb.Bin002","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6KE57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V6KE57-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852862","Deltaproteobacteria bacterium ADurb.Bin002"]]},{"id":"NCBITaxon:1852866","l":"Deltaproteobacteria bacterium ADurb.Bin072","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6GU64-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V6GU64-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852866","Deltaproteobacteria bacterium ADurb.Bin072"]]},{"id":"NCBITaxon:1852873","l":"Elusimicrobia bacterium ADurb.Bin231","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5VGG2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5VGG2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852873","Elusimicrobia bacterium ADurb.Bin231"]]},{"id":"NCBITaxon:1852878","l":"Euryarchaeota archaeon ADurb.Bin294","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5SHM9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5SHM9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852878","Euryarchaeota archaeon ADurb.Bin294"]]},{"id":"NCBITaxon:1852879","l":"Euryarchaeota archaeon ADurb.BinA087","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5ICC1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5ICC1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852879","Euryarchaeota archaeon ADurb.BinA087"]]},{"id":"NCBITaxon:1852884","l":"Firmicutes bacterium ADurb.Bin182","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5Y8P3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5Y8P3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852884","Firmicutes bacterium ADurb.Bin182"]]},{"id":"NCBITaxon:1852888","l":"Firmicutes bacterium ADurb.Bin300","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5S513-F1-model_v4_TED02","TED novel fold AF-A0A1V5S513-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1852888","Firmicutes bacterium ADurb.Bin300"]]},{"id":"NCBITaxon:1852890","l":"Firmicutes bacterium ADurb.Bin356","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5PAI7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5PAI7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852890","Firmicutes bacterium ADurb.Bin356"]]},{"id":"NCBITaxon:1852896","l":"Firmicutes bacterium ADurb.BinA052","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5IZN8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1V5IZN8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1852896","Firmicutes bacterium ADurb.BinA052"]]},{"id":"NCBITaxon:1852901","l":"Lentisphaerae bacterium ADurb.BinA184","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5H8X0-F1-model_v4_TED02","TED novel fold AF-A0A1V5H8X0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1852901","Lentisphaerae bacterium ADurb.BinA184"]]},{"id":"NCBITaxon:1852909","l":"Spirochaetes bacterium ADurb.Bin133","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6BUR7-F1-model_v4_TED01","TED novel fold AF-A0A1V6BUR7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852909","Spirochaetes bacterium ADurb.Bin133"]]},{"id":"NCBITaxon:1852919","l":"Tenericutes bacterium ADurb.Bin140","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6B748-F1-model_v4_TED03","TED novel fold AF-A0A1V6B748-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1852919","Tenericutes bacterium ADurb.Bin140"]]},{"id":"NCBITaxon:1852926","l":"Verrucomicrobia bacterium ADurb.Bin063","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6GJN9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V6GJN9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852926","Verrucomicrobia bacterium ADurb.Bin063"]]},{"id":"NCBITaxon:1852927","l":"Verrucomicrobia bacterium ADurb.Bin070","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6G9P6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1V6G9P6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1852927","Verrucomicrobia bacterium ADurb.Bin070"]]},{"id":"NCBITaxon:1852938","l":"Parcubacteria group bacterium ADurb.Bin192","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5XPC1-F1-model_v4_TED02","TED novel fold AF-A0A1V5XPC1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1852938","Parcubacteria group bacterium ADurb.Bin192"]]},{"id":"NCBITaxon:1853257","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1A6L771-F1-model_v4_TED02","TED novel fold AF-A0A1A6L771-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1853257","Vibrio sp. UCD-FRSSP16_10"]]},{"id":"NCBITaxon:1853682","l":"Halarchaeum sp. CBA1220","na":1,"nb":1,"a":[["TED%3AAF-A0A7D5DZJ3-F1-model_v4_TED01","TED novel fold AF-A0A7D5DZJ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1853682","Halarchaeum sp. CBA1220"]]},{"id":"NCBITaxon:1854586","l":"Amycolatopsis antarctica","na":1,"nb":1,"a":[["TED%3AAF-A0A263D954-F1-model_v4_TED01","TED novel fold AF-A0A263D954-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1854586","Amycolatopsis antarctica"]]},{"id":"NCBITaxon:1855285","l":"Rhodoferax sp. OV413","na":1,"nb":1,"a":[["TED%3AAF-A0A1H0QZU1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H0QZU1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1855285","Rhodoferax sp. OV413"]]},{"id":"NCBITaxon:1855288","l":"Cohnella sp. OV330","na":1,"nb":1,"a":[["TED%3AAF-A0A1I0ZWJ5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I0ZWJ5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1855288","Cohnella sp. OV330"]]},{"id":"NCBITaxon:1855302","l":"Pseudobutyrivibrio sp. JW11","na":1,"nb":1,"a":[["TED%3AAF-A0A1I5E7M3-F1-model_v4_TED01","TED novel fold AF-A0A1I5E7M3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1855302","Pseudobutyrivibrio sp. JW11"]]},{"id":"NCBITaxon:1855307","l":"Tardiphaga sp. OK246","na":1,"nb":1,"a":[["TED%3AAF-A0A239N8J6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A239N8J6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1855307","Tardiphaga sp. OK246"]]},{"id":"NCBITaxon:1855323","l":"Butyrivibrio sp. M55","na":1,"nb":1,"a":[["TED%3AAF-A0A1I7HAE2-F1-model_v4_TED02","TED novel fold AF-A0A1I7HAE2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1855323","Butyrivibrio sp. M55"]]},{"id":"NCBITaxon:1855338","l":"Nitrosospira sp. Nsp11","na":1,"nb":1,"a":[["TED%3AAF-A0A1M7G523-F1-model_v4_TED01","TED novel fold AF-A0A1M7G523-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1855338","Nitrosospira sp. Nsp11"]]},{"id":"NCBITaxon:1855343","l":"Oribacterium sp. WCC10","na":1,"nb":1,"a":[["TED%3AAF-A0A1I2RES7-F1-model_v4_TED02","TED novel fold AF-A0A1I2RES7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1855343","Oribacterium sp. WCC10"]]},{"id":"NCBITaxon:1855347","l":"Streptomyces sp. 2231.1","na":1,"nb":1,"a":[["TED%3AAF-A0A1H5I6Q3-F1-model_v4_TED04","TED novel fold AF-A0A1H5I6Q3-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1855347","Streptomyces sp. 2231.1"]]},{"id":"NCBITaxon:1855351","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1H4X8M6-F1-model_v4_TED01","TED novel fold AF-A0A1H4X8M6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1855351","Streptomyces sp. PAN_FS17"]]},{"id":"NCBITaxon:1855375","l":"Lachnospiraceae bacterium KHCPX20","na":1,"nb":1,"a":[["TED%3AAF-A0A1H2TQE4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H2TQE4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1855375","Lachnospiraceae bacterium KHCPX20"]]},{"id":"NCBITaxon:1855726","l":"Burkholderia sp. KK1","na":1,"nb":1,"a":[["TED%3AAF-A0A1P9YEG3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1P9YEG3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1855726","Burkholderia sp. KK1"]]},{"id":"NCBITaxon:1855912","l":"Luteitalea pratensis","na":1,"nb":1,"a":[["TED%3AAF-A0A143PJX2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A143PJX2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1855912","Luteitalea pratensis"]]},{"id":"NCBITaxon:1856","l":"Frankia torreyi","na":1,"nb":1,"a":[["TED%3AAF-A0A0D8BA00-F1-model_v4_TED01","TED novel fold AF-A0A0D8BA00-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1856","Frankia torreyi"]]},{"id":"NCBITaxon:1856283","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y5DHG2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y5DHG2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1856283","Marinomonas sp. 42_23_T18"]]},{"id":"NCBITaxon:1856287","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y5H823-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y5H823-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1856287","Thalassotalea sp. 42_200_T64"]]},{"id":"NCBITaxon:1856292","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y5E3Q9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y5E3Q9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1856292","Alphaproteobacteria bacterium 46_93_T64"]]},{"id":"NCBITaxon:1856297","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y5GP34-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y5GP34-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1856297","Gammaproteobacteria bacterium 45_16_T64"]]},{"id":"NCBITaxon:1856860","l":"Mycobacterium sp. 1245852.3","na":1,"nb":1,"a":[["TED%3AAF-A0A1A3L3W2-F1-model_v4_TED02","TED novel fold AF-A0A1A3L3W2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1856860","Mycobacterium sp. 1245852.3"]]},{"id":"NCBITaxon:1857568","l":"Macellibacteroides sp. HH-ZS","na":1,"nb":1,"a":[["TED%3AAF-A0A1C2BQK6-F1-model_v4_TED01","TED novel fold AF-A0A1C2BQK6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1857568","Macellibacteroides sp. HH-ZS"]]},{"id":"NCBITaxon:1857893","l":"Gordonia sp. UCD-TK1","na":1,"nb":1,"a":[["TED%3AAF-A0A1B9R9N9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1B9R9N9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1857893","Gordonia sp. UCD-TK1"]]},{"id":"NCBITaxon:1858805","l":"","na":1,"nb":1,"a":[["TED%3AAF-M5FWQ1-F1-model_v4_TED01","TED novel fold AF-M5FWQ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1858805","Dacryopinax primogenitus"]]},{"id":"NCBITaxon:1859475","l":"Floricoccus penangensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1E8GJL3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1E8GJL3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1859475","Floricoccus penangensis"]]},{"id":"NCBITaxon:1860085","l":"Bacteriovorax sp. MedPE-SWde","na":1,"nb":1,"a":[["TED%3AAF-A0A1J5KC37-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1J5KC37-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1860085","Bacteriovorax sp. MedPE-SWde"]]},{"id":"NCBITaxon:1860100","l":"Methanobacterium sp. A39","na":1,"nb":1,"a":[["TED%3AAF-A0A1D2WAA7-F1-model_v4_TED01","TED novel fold AF-A0A1D2WAA7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1860100","Methanobacterium sp. A39"]]},{"id":"NCBITaxon:1860123","l":"Pseudomonas sp. AU12215","na":1,"nb":1,"a":[["TED%3AAF-A0A1B8TCA3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B8TCA3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1860123","Pseudomonas sp. AU12215"]]},{"id":"NCBITaxon:186103","l":"","na":1,"nb":1,"a":[["Pfam%3APF13585","CHU_C Type IX secretion signal domain"]],"b":[["NCBITaxon%3A186103","Streptococcus pyogenes MGAS8232"]]},{"id":"NCBITaxon:1861639","l":"Firmicutes bacterium ZCTH02-B6","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y3Q7C5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y3Q7C5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1861639","Firmicutes bacterium ZCTH02-B6"]]},{"id":"NCBITaxon:1862668","l":"Ileibacterium valens","na":1,"nb":1,"a":[["TED%3AAF-A0A1U7NHQ9-F1-model_v4_TED02","TED novel fold AF-A0A1U7NHQ9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1862668","Ileibacterium valens"]]},{"id":"NCBITaxon:1862950","l":"Rhizobiales bacterium NRL2","na":1,"nb":1,"a":[["TED%3AAF-A0A192IL09-F1-model_v4_TED01","TED novel fold AF-A0A192IL09-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1862950","Rhizobiales bacterium NRL2"]]},{"id":"NCBITaxon:1866913","l":"Desulfobacterales bacterium C00003104","na":1,"nb":1,"a":[["TED%3AAF-A0A1E7HCS4-F1-model_v4_TED01","TED novel fold AF-A0A1E7HCS4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1866913","Desulfobacterales bacterium C00003104"]]},{"id":"NCBITaxon:1866923","l":"bacterium ADurb.Bin132","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6C5W7-F1-model_v4_TED01","TED novel fold AF-A0A1V6C5W7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1866923","bacterium ADurb.Bin132"]]},{"id":"NCBITaxon:1866927","l":"bacterium ADurb.Bin363","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5PKI9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V5PKI9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1866927","bacterium ADurb.Bin363"]]},{"id":"NCBITaxon:1866930","l":"bacterium ADurb.Bin429","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5M3H3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5M3H3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1866930","bacterium ADurb.Bin429"]]},{"id":"NCBITaxon:1866934","l":"bacterium ADurb.BinA186","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5GXP0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1V5GXP0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1866934","bacterium ADurb.BinA186"]]},{"id":"NCBITaxon:1866939","l":"Synechococcus sp. A18-40","na":1,"nb":1,"a":[["TED%3AAF-A0A7G8ICB5-F1-model_v4_TED02","TED novel fold AF-A0A7G8ICB5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1866939","Synechococcus sp. A18-40"]]},{"id":"NCBITaxon:1867956","l":"Rhizobium oryziradicis","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q8ZRR4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q8ZRR4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1867956","Rhizobium oryziradicis"]]},{"id":"NCBITaxon:1868214","l":"Candidatus Korarchaeota archaeon NZ13-K","na":1,"nb":1,"a":[["TED%3AAF-A0A369T3A9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A369T3A9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1868214","Candidatus Korarchaeota archaeon NZ13-K"]]},{"id":"NCBITaxon:1868286","l":"Rhodobacteraceae bacterium (ex Bugula neritina AB1)","na":1,"nb":1,"a":[["TED%3AAF-A0A1E5AKC8-F1-model_v4_TED03","TED novel fold AF-A0A1E5AKC8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1868286","Rhodobacteraceae bacterium (ex Bugula neritina AB1)"]]},{"id":"NCBITaxon:1868324","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A395LZ30-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A395LZ30-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1868324","Candidatus Thermochlorobacter aerophilus"]]},{"id":"NCBITaxon:186901","l":"","na":1,"nb":1,"a":[["PROSITE%3APS01349","Nodulation protein nodA signature"]],"b":[["NCBITaxon%3A186901","Bradyrhizobium sp. ANU289"]]},{"id":"NCBITaxon:1869214","l":"Rheinheimera sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2D5RQK8-F1-model_v4_TED01","TED novel fold AF-A0A2D5RQK8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1869214","Rheinheimera sp."]]},{"id":"NCBITaxon:1869241","l":"Nostoc sp. CENA543","na":1,"nb":1,"a":[["TED%3AAF-A0A2I8A446-F1-model_v4_TED01","TED novel fold AF-A0A2I8A446-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1869241","Nostoc sp. CENA543"]]},{"id":"NCBITaxon:1869300","l":"Desulfobacterales bacterium S5133MH16","na":1,"nb":1,"a":[["TED%3AAF-A0A1E7I4I1-F1-model_v4_TED01","TED novel fold AF-A0A1E7I4I1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1869300","Desulfobacterales bacterium S5133MH16"]]},{"id":"NCBITaxon:1869302","l":"Desulfobacterales bacterium S7086C20","na":1,"nb":1,"a":[["TED%3AAF-A0A1V1WVT0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V1WVT0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1869302","Desulfobacterales bacterium S7086C20"]]},{"id":"NCBITaxon:1869305","l":"Desulfobulbaceae bacterium S3730MH12","na":1,"nb":1,"a":[["TED%3AAF-A0A1E7H854-F1-model_v4_TED01","TED novel fold AF-A0A1E7H854-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1869305","Desulfobulbaceae bacterium S3730MH12"]]},{"id":"NCBITaxon:1869309","l":"Desulfuromonadales bacterium C00003107","na":1,"nb":1,"a":[["TED%3AAF-A0A1E7IH38-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E7IH38-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1869309","Desulfuromonadales bacterium C00003107"]]},{"id":"NCBITaxon:1869311","l":"Desulfuromonadales bacterium C00003096","na":1,"nb":1,"a":[["TED%3AAF-A0A1E7GST7-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A1E7GST7-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1869311","Desulfuromonadales bacterium C00003096"]]},{"id":"NCBITaxon:1869339","l":"Polaromonas sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y0C4X5-F1-model_v4_TED01","TED novel fold AF-A0A7Y0C4X5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1869339","Polaromonas sp."]]},{"id":"NCBITaxon:1870902","l":"Leifsonia sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2E0SSA9-F1-model_v4_TED02","TED novel fold AF-A0A2E0SSA9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1870902","Leifsonia sp."]]},{"id":"NCBITaxon:1871043","l":"Variovorax sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2E9BKC8-F1-model_v4_TED02","TED novel fold AF-A0A2E9BKC8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1871043","Variovorax sp."]]},{"id":"NCBITaxon:1871072","l":"Nocardioidaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7W0M449-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W0M449-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1871072","Nocardioidaceae bacterium"]]},{"id":"NCBITaxon:1872076","l":"Candidatus Scalindua rubra","na":1,"nb":1,"a":[["TED%3AAF-A0A1E3XEX8-F1-model_v4_TED01","TED novel fold AF-A0A1E3XEX8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1872076","Candidatus Scalindua rubra"]]},{"id":"NCBITaxon:1872109","l":"Acidilobus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A6B2CP94-F1-model_v4_TED01","TED novel fold AF-A0A6B2CP94-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1872109","Acidilobus sp."]]},{"id":"NCBITaxon:1872119","l":"Acidobacterium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2G4JIL1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2G4JIL1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1872119","Acidobacterium sp."]]},{"id":"NCBITaxon:1872399","l":"Aeropyrum sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A832FSN2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A832FSN2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1872399","Aeropyrum sp."]]},{"id":"NCBITaxon:1872437","l":"Alicycliphilus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A5C8C4W8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5C8C4W8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1872437","Alicycliphilus sp."]]},{"id":"NCBITaxon:1872442","l":"Aliiroseovarius sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7C5GKH2-F1-model_v4_TED01","TED novel fold AF-A0A7C5GKH2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1872442","Aliiroseovarius sp."]]},{"id":"NCBITaxon:1872444","l":"Alistipes sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A358LZJ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A358LZJ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1872444","Alistipes sp."]]},{"id":"NCBITaxon:1872532","l":"Anaerovibrio sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A3D4AM55-F1-model_v4_TED01","TED novel fold AF-A0A3D4AM55-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1872532","Anaerovibrio sp."]]},{"id":"NCBITaxon:187303","l":"Methylocystis hydrogenophila","na":1,"nb":1,"a":[["TED%3AAF-J7QPR6-F1-model_v4_TED01","TED novel fold AF-J7QPR6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A187303","Methylocystis hydrogenophila"]]},{"id":"NCBITaxon:1873464","l":"Micromonosporaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A3D5AGM4-F1-model_v4_TED01","TED novel fold AF-A0A3D5AGM4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1873464","Micromonosporaceae bacterium"]]},{"id":"NCBITaxon:1873524","l":"Halodesulfurarchaeum formicicum","na":1,"nb":1,"a":[["TED%3AAF-A0A1J1ABB1-F1-model_v4_TED01","TED novel fold AF-A0A1J1ABB1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1873524","Halodesulfurarchaeum formicicum"]]},{"id":"NCBITaxon:1873897","l":"Cupriavidus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A352SA47-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A352SA47-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1873897","Cupriavidus sp."]]},{"id":"NCBITaxon:1874317","l":"Marinobacter salinus","na":1,"nb":1,"a":[["TED%3AAF-A0A1D9GM66-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1D9GM66-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1874317","Marinobacter salinus"]]},{"id":"NCBITaxon:1874361","l":"Idiomarina sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2E9H521-F1-model_v4_TED01","TED novel fold AF-A0A2E9H521-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1874361","Idiomarina sp."]]},{"id":"NCBITaxon:1874629","l":"Thermodesulfatator sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7C3GMU6-F1-model_v4_TED02","TED novel fold AF-A0A7C3GMU6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1874629","Thermodesulfatator sp."]]},{"id":"NCBITaxon:1874826","l":"Novosphingobium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A3D1P3T8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D1P3T8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1874826","Novosphingobium sp."]]},{"id":"NCBITaxon:1879050","l":"Acinetobacter wuhouensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q7AIW8-F1-model_v4_TED01","TED novel fold AF-A0A4Q7AIW8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1879050","Acinetobacter wuhouensis"]]},{"id":"NCBITaxon:1880849","l":"Vibrio sp. 10N.261.52.A1","na":1,"nb":1,"a":[["TED%3AAF-A0A2N7IPL4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N7IPL4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1880849","Vibrio sp. 10N.261.52.A1"]]},{"id":"NCBITaxon:1881035","l":"Mitsuaria sp. PDC51","na":1,"nb":1,"a":[["TED%3AAF-A0A1I6JG99-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I6JG99-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1881035","Mitsuaria sp. PDC51"]]},{"id":"NCBITaxon:1881037","l":"Rhodanobacter sp. OK091","na":1,"nb":1,"a":[["TED%3AAF-A0A1M7GY95-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M7GY95-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1881037","Rhodanobacter sp. OK091"]]},{"id":"NCBITaxon:1881038","l":"Duganella sp. CF517","na":1,"nb":1,"a":[["TED%3AAF-A0A1H8H966-F1-model_v4_TED01","TED novel fold AF-A0A1H8H966-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1881038","Duganella sp. CF517"]]},{"id":"NCBITaxon:1881049","l":"Mucilaginibacter sp. OK283","na":1,"nb":1,"a":[["TED%3AAF-A0A1H8XZP9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H8XZP9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1881049","Mucilaginibacter sp. OK283"]]},{"id":"NCBITaxon:1881060","l":"Clostridium sp. USBA 49","na":1,"nb":1,"a":[["TED%3AAF-A0A1T4XFS6-F1-model_v4_TED02","TED novel fold AF-A0A1T4XFS6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1881060","Clostridium sp. USBA 49"]]},{"id":"NCBITaxon:1882438","l":"Mucilaginibacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2J6H382-F1-model_v4_TED01","TED novel fold AF-A0A2J6H382-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1882438","Mucilaginibacter sp."]]},{"id":"NCBITaxon:1882735","l":"Methanosarcina sp. Ant1","na":1,"nb":1,"a":[["TED%3AAF-A0A1E7G8V2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E7G8V2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1882735","Methanosarcina sp. Ant1"]]},{"id":"NCBITaxon:1882750","l":"Burkholderia sp. GAS332","na":1,"nb":1,"a":[["TED%3AAF-A0A1N6LVR0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1N6LVR0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1882750","Burkholderia sp. GAS332"]]},{"id":"NCBITaxon:1882752","l":"Singulisphaera sp. GP187","na":1,"nb":1,"a":[["TED%3AAF-A0A1N6KHP4-F1-model_v4_TED02","TED novel fold AF-A0A1N6KHP4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1882752","Singulisphaera sp. GP187"]]},{"id":"NCBITaxon:1882755","l":"Pseudomonas sp. BS3759","na":1,"nb":1,"a":[["TED%3AAF-A0A1H0LFG3-F1-model_v4_TED03","TED novel fold AF-A0A1H0LFG3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1882755","Pseudomonas sp. BS3759"]]},{"id":"NCBITaxon:1882770","l":"Streptomyces sp. OK885","na":1,"nb":1,"a":[["TED%3AAF-A0A2N3ZZI5-F1-model_v4_TED01","TED novel fold AF-A0A2N3ZZI5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1882770","Streptomyces sp. OK885"]]},{"id":"NCBITaxon:1882814","l":"Rhodococcus sp. OK270","na":1,"nb":1,"a":[["TED%3AAF-A0A285DXY5-F1-model_v4_TED01","TED novel fold AF-A0A285DXY5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1882814","Rhodococcus sp. OK270"]]},{"id":"NCBITaxon:1882832","l":"Paenibacillaceae bacterium GAS479","na":1,"nb":1,"a":[["TED%3AAF-A0A1H1ZWX8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H1ZWX8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1882832","Paenibacillaceae bacterium GAS479"]]},{"id":"NCBITaxon:1882918","l":"Pajaroellobacter abortibovis","na":1,"nb":1,"a":[["TED%3AAF-A0A1L6MVB8-F1-model_v4_TED03","TED novel fold AF-A0A1L6MVB8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1882918","Pajaroellobacter abortibovis"]]},{"id":"NCBITaxon:1883156","l":"Winogradskyella sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A848UQ47-F1-model_v4_TED01","TED novel fold AF-A0A848UQ47-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1883156","Winogradskyella sp."]]},{"id":"NCBITaxon:1883416","l":"Halomonas sp. 1513","na":1,"nb":1,"a":[["TED%3AAF-A0A1P8R790-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1P8R790-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1883416","Halomonas sp. 1513"]]},{"id":"NCBITaxon:1884311","l":"Variovorax sp. OK202","na":1,"nb":1,"a":[["TED%3AAF-A0A1H7ES98-F1-model_v4_TED01","TED novel fold AF-A0A1H7ES98-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1884311","Variovorax sp. OK202"]]},{"id":"NCBITaxon:1884368","l":"Duganella sp. CF458","na":1,"nb":1,"a":[["TED%3AAF-A0A1I2WJF2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2WJF2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1884368","Duganella sp. CF458"]]},{"id":"NCBITaxon:1884369","l":"Sphingobium sp. AP50","na":1,"nb":1,"a":[["TED%3AAF-A0A1H7DSH5-F1-model_v4_TED02","TED novel fold AF-A0A1H7DSH5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1884369","Sphingobium sp. AP50"]]},{"id":"NCBITaxon:1884375","l":"Paenibacillus sp. PDC88","na":1,"nb":1,"a":[["TED%3AAF-A0A1H2UHZ1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H2UHZ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1884375","Paenibacillus sp. PDC88"]]},{"id":"NCBITaxon:1884377","l":"Paenibacillus sp. OV219","na":1,"nb":1,"a":[["TED%3AAF-A0A1H8HIB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H8HIB4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1884377","Paenibacillus sp. OV219"]]},{"id":"NCBITaxon:1884656","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1V2YJ98-F1-model_v4_TED02","TED novel fold AF-A0A1V2YJ98-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1884656","Candidatus Parepulonipiscium sp. PG-Nuni2H_MBin01"]]},{"id":"NCBITaxon:1884657","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1V2YCI7-F1-model_v4_TED03","TED novel fold AF-A0A1V2YCI7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1884657","Candidatus Parepulonipiscium sp. PG-Nun2H_MBin03"]]},{"id":"NCBITaxon:1884791","l":"Euhalothece sp. KZN 001","na":1,"nb":1,"a":[["TED%3AAF-A0A2K3BS64-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2K3BS64-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1884791","Euhalothece sp. KZN 001"]]},{"id":"NCBITaxon:1884913","l":"Candidatus Planktophila lacus","na":1,"nb":1,"a":[["TED%3AAF-A0A249LJY0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A249LJY0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1884913","Candidatus Planktophila lacus"]]},{"id":"NCBITaxon:1885016","l":"Rothia sp. (in: high G+C Gram-positive bacteria)","na":1,"nb":1,"a":[["TED%3AAF-A0A3D3LXD1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D3LXD1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1885016","Rothia sp. (in: high G+C Gram-positive bacteria)"]]},{"id":"NCBITaxon:1888168","l":"Curvibacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A433BGD3-F1-model_v4_TED01","TED novel fold AF-A0A433BGD3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1888168","Curvibacter sp."]]},{"id":"NCBITaxon:188906","l":"Jannaschia helgolandensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1H7MIC2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H7MIC2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A188906","Jannaschia helgolandensis"]]},{"id":"NCBITaxon:1889770","l":"Thioclava sp. SK-1","na":1,"nb":1,"a":[["TED%3AAF-A0A1C2HJ00-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1C2HJ00-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1889770","Thioclava sp. SK-1"]]},{"id":"NCBITaxon:1889780","l":"Gaetbulibacter sp. 5U11","na":1,"nb":1,"a":[["TED%3AAF-A0A7Z1RBL4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Z1RBL4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1889780","Gaetbulibacter sp. 5U11"]]},{"id":"NCBITaxon:1890295","l":"Pseudoduganella danionis","na":1,"nb":1,"a":[["TED%3AAF-A0A6A8VX57-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6A8VX57-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1890295","Pseudoduganella danionis"]]},{"id":"NCBITaxon:1890675","l":"Herbaspirillum sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2E7PAN6-F1-model_v4_TED02","TED novel fold AF-A0A2E7PAN6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1890675","Herbaspirillum sp."]]},{"id":"NCBITaxon:1891280","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1C8ZU42-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C8ZU42-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1891280","Saccharolobus sp. A20"]]},{"id":"NCBITaxon:1891921","l":"Piscirickettsia litoralis","na":1,"nb":1,"a":[["TED%3AAF-A0A1E3G997-F1-model_v4_TED01","TED novel fold AF-A0A1E3G997-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1891921","Piscirickettsia litoralis"]]},{"id":"NCBITaxon:1892852","l":"Solihabitans fulvus","na":1,"nb":1,"a":[["TED%3AAF-A0A5B2XST0-F1-model_v4_TED04","TED novel fold AF-A0A5B2XST0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1892852","Solihabitans fulvus"]]},{"id":"NCBITaxon:1894970","l":"Micromonospora musae","na":1,"nb":1,"a":[["TED%3AAF-A0A3A9Y0G1-F1-model_v4_TED03","TED novel fold AF-A0A3A9Y0G1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1894970","Micromonospora musae"]]},{"id":"NCBITaxon:189518","l":"Leptospira interrogans serovar Lai str. 56601","na":1,"nb":1,"a":[["Pfam%3APF27429","LB_356"]],"b":[["NCBITaxon%3A189518","Leptospira interrogans serovar Lai str. 56601"]]},{"id":"NCBITaxon:1895721","l":"Bacteroidia bacterium 44-10","na":1,"nb":1,"a":[["TED%3AAF-A0A1M3FSU7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M3FSU7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895721","Bacteroidia bacterium 44-10"]]},{"id":"NCBITaxon:1895735","l":"Caedibacter sp. 37-49","na":1,"nb":1,"a":[["TED%3AAF-A0A1M3J316-F1-model_v4_TED01","TED novel fold AF-A0A1M3J316-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895735","Caedibacter sp. 37-49"]]},{"id":"NCBITaxon:1895737","l":"Caulobacterales bacterium 68-7","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q3JHD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3JHD6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895737","Caulobacterales bacterium 68-7"]]},{"id":"NCBITaxon:1895742","l":"Chlamydia sp. 32-24","na":1,"nb":1,"a":[["TED%3AAF-A0A1M3B8J9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M3B8J9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895742","Chlamydia sp. 32-24"]]},{"id":"NCBITaxon:1895784","l":"Microbacterium sp. 69-7","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q3LD51-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3LD51-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895784","Microbacterium sp. 69-7"]]},{"id":"NCBITaxon:1895791","l":"Micrococcales bacterium 73-13","na":1,"nb":1,"a":[["TED%3AAF-A0A1M3LG94-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M3LG94-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895791","Micrococcales bacterium 73-13"]]},{"id":"NCBITaxon:1895807","l":"Planctomycetales bacterium 71-10","na":1,"nb":1,"a":[["TED%3AAF-A0A1U7GL33-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1U7GL33-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1895807","Planctomycetales bacterium 71-10"]]},{"id":"NCBITaxon:1895810","l":"Rhizobiales bacterium 62-17","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q4B9D3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q4B9D3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1895810","Rhizobiales bacterium 62-17"]]},{"id":"NCBITaxon:1895832","l":"Solirubrobacterales bacterium 67-14","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q3NGI6-F1-model_v4_TED01","TED novel fold AF-A0A1Q3NGI6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895832","Solirubrobacterales bacterium 67-14"]]},{"id":"NCBITaxon:1895841","l":"Sphingobacteriales bacterium 50-39","na":1,"nb":1,"a":[["TED%3AAF-A0A1M3HFF3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M3HFF3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895841","Sphingobacteriales bacterium 50-39"]]},{"id":"NCBITaxon:1895843","l":"Sphingobacterium sp. 40-24","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q4G9U7-F1-model_v4_TED01","TED novel fold AF-A0A1Q4G9U7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895843","Sphingobacterium sp. 40-24"]]},{"id":"NCBITaxon:1895845","l":"Sphingobium sp. 66-54","na":1,"nb":1,"a":[["TED%3AAF-A0A1M3PTQ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M3PTQ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895845","Sphingobium sp. 66-54"]]},{"id":"NCBITaxon:1895854","l":"Spirosoma sp. 48-14","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q3WWG0-F1-model_v4_TED01","TED novel fold AF-A0A1Q3WWG0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895854","Spirosoma sp. 48-14"]]},{"id":"NCBITaxon:1895866","l":"Verrucomicrobia bacterium 61-8","na":1,"nb":1,"a":[["TED%3AAF-A0A1M3CGR7-F1-model_v4_TED03","TED novel fold AF-A0A1M3CGR7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1895866","Verrucomicrobia bacterium 61-8"]]},{"id":"NCBITaxon:1895869","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q4FQH4-F1-model_v4_TED01","TED novel fold AF-A0A1Q4FQH4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895869","Lysobacterales bacterium 69-70"]]},{"id":"NCBITaxon:1895921","l":"Bacteroidetes bacterium 37-13","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q3Q800-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q3Q800-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1895921","Bacteroidetes bacterium 37-13"]]},{"id":"NCBITaxon:1895922","l":"Bacteroidetes bacterium 41-46","na":1,"nb":1,"a":[["TED%3AAF-A0A1M3CYM1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M3CYM1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1895922","Bacteroidetes bacterium 41-46"]]},{"id":"NCBITaxon:1895927","l":"Chloroflexi bacterium 44-23","na":1,"nb":1,"a":[["TED%3AAF-A0A1M3K0J8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1M3K0J8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1895927","Chloroflexi bacterium 44-23"]]},{"id":"NCBITaxon:1896175","l":"Polaribacter sp. KT 15","na":1,"nb":1,"a":[["TED%3AAF-A0A1M7MCC0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M7MCC0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1896175","Polaribacter sp. KT 15"]]},{"id":"NCBITaxon:1896196","l":"Porphyrobacter sp. LM 6","na":1,"nb":1,"a":[["TED%3AAF-A0A1D7NP70-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1D7NP70-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1896196","Porphyrobacter sp. LM 6"]]},{"id":"NCBITaxon:1896207","l":"Fibrobacter sp. UWB8","na":1,"nb":1,"a":[["TED%3AAF-A0A1M5KSJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M5KSJ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1896207","Fibrobacter sp. UWB8"]]},{"id":"NCBITaxon:1896217","l":"Fibrobacter sp. UWR3","na":1,"nb":1,"a":[["TED%3AAF-A0A1M7GJB3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M7GJB3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1896217","Fibrobacter sp. UWR3"]]},{"id":"NCBITaxon:1896224","l":"Fibrobacter sp. UWT2","na":1,"nb":1,"a":[["TED%3AAF-A0A1M6UY53-F1-model_v4_TED01","TED novel fold AF-A0A1M6UY53-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1896224","Fibrobacter sp. UWT2"]]},{"id":"NCBITaxon:1896225","l":"Fibrobacter sp. UWT3","na":1,"nb":1,"a":[["TED%3AAF-A0A2C8YRE3-F1-model_v4_TED04","TED novel fold AF-A0A2C8YRE3-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1896225","Fibrobacter sp. UWT3"]]},{"id":"NCBITaxon:1896965","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6T0X6-F1-model_v4_TED01","TED novel fold AF-A0A1Q6T0X6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1896965","Acetobacter sp. 46_36"]]},{"id":"NCBITaxon:1896966","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6TS89-F1-model_v4_TED01","TED novel fold AF-A0A1Q6TS89-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1896966","Acinetobacter sp. CAG:196_36_41"]]},{"id":"NCBITaxon:1896975","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6FT72-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q6FT72-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1896975","Bacteroides sp. CAG:1060_57_27"]]},{"id":"NCBITaxon:1896977","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6JX10-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q6JX10-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1896977","Clostridium sp. 26_21"]]},{"id":"NCBITaxon:1896980","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6KK16-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q6KK16-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1896980","Clostridium sp. 28_12"]]},{"id":"NCBITaxon:1896986","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6M2W2-F1-model_v4_TED01","TED novel fold AF-A0A1Q6M2W2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1896986","Clostridium sp. CAG:245_30_32"]]},{"id":"NCBITaxon:1896987","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6M635-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q6M635-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1896987","Clostridium sp. CAG:307_30_263"]]},{"id":"NCBITaxon:1896990","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6N734-F1-model_v4_TED01","TED novel fold AF-A0A1Q6N734-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1896990","Clostridium sp. CAG:62_40_43"]]},{"id":"NCBITaxon:1896994","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6NNT5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q6NNT5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1896994","Coprobacillus sp. 28_7"]]},{"id":"NCBITaxon:1896997","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6MJS1-F1-model_v4_TED02","TED novel fold AF-A0A1Q6MJS1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1896997","Coprococcus sp. CAG:131_42_139"]]},{"id":"NCBITaxon:1897001","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6MB21-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q6MB21-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1897001","Eubacterium sp. 36_13"]]},{"id":"NCBITaxon:1897015","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6UNK1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q6UNK1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1897015","Roseburia sp. 40_7"]]},{"id":"NCBITaxon:1897019","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6TD62-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q6TD62-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1897019","Ruminococcus sp. 37_24"]]},{"id":"NCBITaxon:1897034","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6QXA8-F1-model_v4_TED01","TED novel fold AF-A0A1Q6QXA8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1897034","Firmicutes bacterium CAG:321_26_22"]]},{"id":"NCBITaxon:1897036","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6SHB6-F1-model_v4_TED02","TED novel fold AF-A0A1Q6SHB6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1897036","Firmicutes bacterium CAG:65_45_313"]]},{"id":"NCBITaxon:1897037","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6QLJ3-F1-model_v4_TED01","TED novel fold AF-A0A1Q6QLJ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1897037","Firmicutes bacterium CAG_194_44_15"]]},{"id":"NCBITaxon:1897038","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6F6W6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q6F6W6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1897038","Bacteroidales bacterium 43_36"]]},{"id":"NCBITaxon:1897040","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6ECH6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q6ECH6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1897040","Bacteroidales bacterium 52_46"]]},{"id":"NCBITaxon:1897041","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6ER29-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q6ER29-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1897041","Bacteroidales bacterium 55_9"]]},{"id":"NCBITaxon:1897620","l":"Marinobacter sp. X15-166B","na":1,"nb":1,"a":[["TED%3AAF-A0A1E7PXU9-F1-model_v4_TED02","TED novel fold AF-A0A1E7PXU9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1897620","Marinobacter sp. X15-166B"]]},{"id":"NCBITaxon:1897630","l":"Motiliproteus sp. MSK22-1","na":1,"nb":1,"a":[["TED%3AAF-A0A1R1LDJ1-F1-model_v4_TED02","TED novel fold AF-A0A1R1LDJ1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1897630","Motiliproteus sp. MSK22-1"]]},{"id":"NCBITaxon:1898105","l":"Paludibacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A6I3N567-F1-model_v4_TED01","TED novel fold AF-A0A6I3N567-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1898105","Paludibacter sp."]]},{"id":"NCBITaxon:1898113","l":"Idiomarinaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A2E4ZCZ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4ZCZ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1898113","Idiomarinaceae bacterium"]]},{"id":"NCBITaxon:189873","l":"Bradyrhizobium sp. LMTR 3","na":1,"nb":1,"a":[["TED%3AAF-A0A1B9YKW8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B9YKW8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A189873","Bradyrhizobium sp. LMTR 3"]]},{"id":"NCBITaxon:1898978","l":"Hymenobacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A519UC12-F1-model_v4_TED02","TED novel fold AF-A0A519UC12-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1898978","Hymenobacter sp."]]},{"id":"NCBITaxon:189918","l":"Mycobacterium sp. KMS","na":1,"nb":1,"a":[["Pfam%3APF06339","Ectoine synthase"]],"b":[["NCBITaxon%3A189918","Mycobacterium sp. KMS"]]},{"id":"NCBITaxon:1899563","l":"Candidatus Venteria ishoeyi","na":1,"nb":1,"a":[["TED%3AAF-A0A1H6FHC1-F1-model_v4_TED02","TED novel fold AF-A0A1H6FHC1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1899563","Candidatus Venteria ishoeyi"]]},{"id":"NCBITaxon:190195","l":"Kribbella antibiotica","na":1,"nb":1,"a":[["TED%3AAF-A0A4R4YYU0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R4YYU0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A190195","Kribbella antibiotica"]]},{"id":"NCBITaxon:190386","l":"Agrobacterium tumefaciens (strain 15955)","na":1,"nb":1,"a":[["Pfam%3APF19443","DAHL domain"]],"b":[["NCBITaxon%3A190386","Agrobacterium tumefaciens (strain 15955)"]]},{"id":"NCBITaxon:1904462","l":"Stenotrophomonas sp. BIIR7","na":1,"nb":1,"a":[["TED%3AAF-A0A1E7RPY0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E7RPY0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1904462","Stenotrophomonas sp. BIIR7"]]},{"id":"NCBITaxon:1904757","l":"Burkholderia puraquae","na":1,"nb":1,"a":[["TED%3AAF-A0A1X1PMY2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X1PMY2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1904757","Burkholderia puraquae"]]},{"id":"NCBITaxon:1904863","l":"Micrococcaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A851HKR4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A851HKR4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1904863","Micrococcaceae bacterium"]]},{"id":"NCBITaxon:1904962","l":"Corynebacterium sp. CNJ-954","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q9VKJ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q9VKJ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1904962","Corynebacterium sp. CNJ-954"]]},{"id":"NCBITaxon:1904966","l":"Ornithinimicrobium sp. CNJ-824","na":1,"nb":1,"a":[["TED%3AAF-A0A1U7MPL4-F1-model_v4_TED02","TED novel fold AF-A0A1U7MPL4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1904966","Ornithinimicrobium sp. CNJ-824"]]},{"id":"NCBITaxon:1904967","l":"Pseudonocardia sp. CNS-004","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q9RYV1-F1-model_v4_TED01","TED novel fold AF-A0A1Q9RYV1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1904967","Pseudonocardia sp. CNS-004"]]},{"id":"NCBITaxon:1905142","l":"Amycolatopsis vastitatis","na":1,"nb":1,"a":[["TED%3AAF-A0A229SUX4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A229SUX4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1905142","Amycolatopsis vastitatis"]]},{"id":"NCBITaxon:1905289","l":"Rhodococcus sp. 1163","na":1,"nb":1,"a":[["TED%3AAF-A0A1X0U5H7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X0U5H7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1905289","Rhodococcus sp. 1163"]]},{"id":"NCBITaxon:1905359","l":"marine bacterium AO1-C","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q3GHF7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3GHF7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1905359","marine bacterium AO1-C"]]},{"id":"NCBITaxon:1905676","l":"Glaciecola sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A348MZQ3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A348MZQ3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1905676","Glaciecola sp."]]},{"id":"NCBITaxon:1906667","l":"Methanomassiliicoccales archaeon","na":1,"nb":1,"a":[["TED%3AAF-A0A523YEA2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A523YEA2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1906667","Methanomassiliicoccales archaeon"]]},{"id":"NCBITaxon:1906740","l":"Streptomyces sp. CC53","na":1,"nb":1,"a":[["TED%3AAF-A0A1S2K907-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S2K907-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1906740","Streptomyces sp. CC53"]]},{"id":"NCBITaxon:1907121","l":"Candidatus Rickettsia muridii","na":1,"nb":1,"a":[["TED%3AAF-A0A2H4FH04-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H4FH04-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1907121","Candidatus Rickettsia muridii"]]},{"id":"NCBITaxon:1907202","l":"Roseobacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2E9YXC7-F1-model_v4_TED01","TED novel fold AF-A0A2E9YXC7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1907202","Roseobacter sp."]]},{"id":"NCBITaxon:1907219","l":"Piptocephalis cylindrospora","na":1,"nb":1,"a":[["TED%3AAF-A0A4P9Y4Y0-F1-model_v4_TED02","TED novel fold AF-A0A4P9Y4Y0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1907219","Piptocephalis cylindrospora"]]},{"id":"NCBITaxon:1907403","l":"Pseudacidovorax sp. RU35E","na":1,"nb":1,"a":[["TED%3AAF-A0A1N6WQ52-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1N6WQ52-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1907403","Pseudacidovorax sp. RU35E"]]},{"id":"NCBITaxon:1907408","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1N6S5V1-F1-model_v4_TED01","TED novel fold AF-A0A1N6S5V1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1907408","Allobosea sp. TND4EK4"]]},{"id":"NCBITaxon:1907413","l":"Rhizobium sp. RU33A","na":1,"nb":1,"a":[["TED%3AAF-A0A1N6PUX0-F1-model_v4_TED01","TED novel fold AF-A0A1N6PUX0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1907413","Rhizobium sp. RU33A"]]},{"id":"NCBITaxon:1907575","l":"Jatrophihabitans sp. GAS493","na":1,"nb":1,"a":[["TED%3AAF-A0A286EQ27-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A286EQ27-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1907575","Jatrophihabitans sp. GAS493"]]},{"id":"NCBITaxon:1908224","l":"Sphingopyxis sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2G2D229-F1-model_v4_TED01","TED novel fold AF-A0A2G2D229-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1908224","Sphingopyxis sp."]]},{"id":"NCBITaxon:1908236","l":"Hymenobacter glacialis","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1T1A8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G1T1A8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1908236","Hymenobacter glacialis"]]},{"id":"NCBITaxon:1908241","l":"Pedobacter petrophilus","na":1,"nb":1,"a":[["TED%3AAF-A0A7K0G656-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K0G656-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1908241","Pedobacter petrophilus"]]},{"id":"NCBITaxon:1909299","l":"Blastomonas sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2D6H5R0-F1-model_v4_TED03","TED novel fold AF-A0A2D6H5R0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1909299","Blastomonas sp."]]},{"id":"NCBITaxon:1910","l":"Streptomyces griseosporeus","na":1,"nb":1,"a":[["Pfam%3APF01356","Alpha amylase inhibitor"]],"b":[["NCBITaxon%3A1910","Streptomyces griseosporeus"]]},{"id":"NCBITaxon:1910957","l":"Synechococcus sp. Lanier","na":1,"nb":1,"a":[["TED%3AAF-A0A251Z8Q7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A251Z8Q7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1910957","Synechococcus sp. Lanier"]]},{"id":"NCBITaxon:1911175","l":"Amycolatopsis sp. BJA-103","na":1,"nb":1,"a":[["TED%3AAF-A0A2N8MN42-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2N8MN42-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1911175","Amycolatopsis sp. BJA-103"]]},{"id":"NCBITaxon:1911683","l":"Tenericutes bacterium MZ-XQ","na":1,"nb":1,"a":[["TED%3AAF-A0A2K9AA77-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2K9AA77-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1911683","Tenericutes bacterium MZ-XQ"]]},{"id":"NCBITaxon:1911685","l":"Methanobacterium sp. MZ-A1","na":1,"nb":1,"a":[["TED%3AAF-A0A2H4VJL3-F1-model_v4_TED01","TED novel fold AF-A0A2H4VJL3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1911685","Methanobacterium sp. MZ-A1"]]},{"id":"NCBITaxon:1912246","l":"Seonamhaeicola marinus","na":1,"nb":1,"a":[["TED%3AAF-A0A5D0HN32-F1-model_v4_TED02","TED novel fold AF-A0A5D0HN32-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1912246","Seonamhaeicola marinus"]]},{"id":"NCBITaxon:1913460","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6V040-F1-model_v4_TED01","TED novel fold AF-A0A1Q6V040-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1913460","Candidatus Melainabacteria bacterium LEY3_CP_29_8"]]},{"id":"NCBITaxon:191390","l":"Pseudomonas palleroniana","na":1,"nb":1,"a":[["TED%3AAF-A0A1H5NR40-F1-model_v4_TED01","TED novel fold AF-A0A1H5NR40-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A191390","Pseudomonas palleroniana"]]},{"id":"NCBITaxon:191391","l":"Pseudomonas salomonii","na":1,"nb":1,"a":[["TED%3AAF-A0A3M4QF91-F1-model_v4_TED04","TED novel fold AF-A0A3M4QF91-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A191391","Pseudomonas salomonii"]]},{"id":"NCBITaxon:1914242","l":"Gemmata sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7C1PH33-F1-model_v4_TED03","TED novel fold AF-A0A7C1PH33-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1914242","Gemmata sp."]]},{"id":"NCBITaxon:1914243","l":"Citrobacter europaeus","na":1,"nb":1,"a":[["TED%3AAF-A0A811XLH7-F1-model_v4_TED03","TED novel fold AF-A0A811XLH7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1914243","Citrobacter europaeus"]]},{"id":"NCBITaxon:1914409","l":"Salibaculum griseiflavum","na":1,"nb":1,"a":[["TED%3AAF-A0A2V1P9V2-F1-model_v4_TED01","TED novel fold AF-A0A2V1P9V2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1914409","Salibaculum griseiflavum"]]},{"id":"NCBITaxon:1914755","l":"Nocardioides thalensis","na":1,"nb":1,"a":[["TED%3AAF-A0A853C687-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A853C687-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1914755","Nocardioides thalensis"]]},{"id":"NCBITaxon:1914933","l":"Siminovitchia terrae","na":1,"nb":1,"a":[["TED%3AAF-A0A429X9P4-F1-model_v4_TED03","TED novel fold AF-A0A429X9P4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1914933","Siminovitchia terrae"]]},{"id":"NCBITaxon:1915004","l":"Streptococcus sp. 'caviae'","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q8RKH2-F1-model_v4_TED01","TED novel fold AF-A0A1Q8RKH2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1915004","Streptococcus sp. 'caviae'"]]},{"id":"NCBITaxon:1916068","l":"Methylococcaceae bacterium CS3","na":1,"nb":1,"a":[["TED%3AAF-A0A6I7WL18-F1-model_v4_TED01","TED novel fold AF-A0A6I7WL18-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1916068","Methylococcaceae bacterium CS3"]]},{"id":"NCBITaxon:1916216","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A292RNI7-F1-model_v4_TED01","TED novel fold AF-A0A292RNI7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1916216","Candidatus Gastranaerophilales bacterium HUM_11"]]},{"id":"NCBITaxon:1916217","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A292QPX9-F1-model_v4_TED02","TED novel fold AF-A0A292QPX9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1916217","Candidatus Gastranaerophilales bacterium HUM_3"]]},{"id":"NCBITaxon:1916231","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A292S444-F1-model_v4_TED02","TED novel fold AF-A0A292S444-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1916231","Candidatus Gastranaerophilales bacterium HUM_18"]]},{"id":"NCBITaxon:1917166","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2D2Q459-F1-model_v4_TED01","TED novel fold AF-A0A2D2Q459-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1917166","Parathermosynechococcus lividus PCC 6715"]]},{"id":"NCBITaxon:1917525","l":"Sporomusaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A402BN05-F1-model_v4_TED01","TED novel fold AF-A0A402BN05-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1917525","Sporomusaceae bacterium"]]},{"id":"NCBITaxon:1917820","l":"Leptospira johnsonii","na":1,"nb":1,"a":[["TED%3AAF-A0A2P2D2G2-F1-model_v4_TED02","TED novel fold AF-A0A2P2D2G2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1917820","Leptospira johnsonii"]]},{"id":"NCBITaxon:1918945","l":"Vibrio spartinae","na":1,"nb":1,"a":[["TED%3AAF-A0A7D8BB99-F1-model_v4_TED01","TED novel fold AF-A0A7D8BB99-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1918945","Vibrio spartinae"]]},{"id":"NCBITaxon:1919086","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2T2RB21-F1-model_v4_TED01","TED novel fold AF-A0A2T2RB21-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1919086","Actinobacteria bacterium QS_8_72_14"]]},{"id":"NCBITaxon:1919126","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2T2RLN8-F1-model_v4_TED03","TED novel fold AF-A0A2T2RLN8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1919126","Cyanobacteria bacterium QH_9_48_43"]]},{"id":"NCBITaxon:1919144","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2T2R716-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2T2R716-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1919144","Cyanobacteria bacterium SW_9_44_58"]]},{"id":"NCBITaxon:1919156","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2R6G3A4-F1-model_v4_TED01","TED novel fold AF-A0A2R6G3A4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1919156","Halobacteriales archaeon QH_6_68_27"]]},{"id":"NCBITaxon:1919158","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2R6ESL1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2R6ESL1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1919158","Halobacteriales archaeon QH_7_66_36"]]},{"id":"NCBITaxon:1919161","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2R6E5N7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2R6E5N7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1919161","Halobacteriales archaeon QH_7_69_31"]]},{"id":"NCBITaxon:1919167","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2R6EJB1-F1-model_v4_TED01","TED novel fold AF-A0A2R6EJB1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1919167","Halobacteriales archaeon QS_1_67_19"]]},{"id":"NCBITaxon:1919169","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2R6G619-F1-model_v4_TED01","TED novel fold AF-A0A2R6G619-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1919169","Halobacteriales archaeon QS_1_68_20"]]},{"id":"NCBITaxon:1919175","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2R6GE67-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2R6GE67-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1919175","Halobacteriales archaeon QS_4_69_225"]]},{"id":"NCBITaxon:1919177","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2R6HEC8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2R6HEC8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1919177","Halobacteriales archaeon QS_4_69_34"]]},{"id":"NCBITaxon:1919188","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2R6JPZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2R6JPZ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1919188","Halobacteriales archaeon QS_8_69_73"]]},{"id":"NCBITaxon:1919189","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2R6KHY7-F1-model_v4_TED02","TED novel fold AF-A0A2R6KHY7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1919189","Halobacteriales archaeon QS_9_67_15"]]},{"id":"NCBITaxon:1919201","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2R6M034-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2R6M034-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1919201","Halobacteriales archaeon SW_6_65_15"]]},{"id":"NCBITaxon:1919204","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2R6LXX7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2R6LXX7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1919204","Halobacteriales archaeon SW_7_68_16"]]},{"id":"NCBITaxon:1919224","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2T2R4Y8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T2R4Y8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1919224","Parcubacteria group bacterium SW_4_46_8"]]},{"id":"NCBITaxon:1919232","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2P6VVV1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2P6VVV1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1919232","Thermoplasmatales archaeon SW_10_69_26"]]},{"id":"NCBITaxon:1920245","l":"Kangiella sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2G2KWK6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G2KWK6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1920245","Kangiella sp."]]},{"id":"NCBITaxon:1920421","l":"Paenibacillus sp. FSL H7-0331","na":1,"nb":1,"a":[["TED%3AAF-A0A1R1CAA1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1R1CAA1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1920421","Paenibacillus sp. FSL H7-0331"]]},{"id":"NCBITaxon:1920490","l":"Phormidesmis priestleyi ULC007","na":1,"nb":1,"a":[["TED%3AAF-A0A2T1DEI0-F1-model_v4_TED01","TED novel fold AF-A0A2T1DEI0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1920490","Phormidesmis priestleyi ULC007"]]},{"id":"NCBITaxon:1920889","l":"Arthrobacter sp. SW1","na":1,"nb":1,"a":[["TED%3AAF-A0A1E8FS11-F1-model_v4_TED01","TED novel fold AF-A0A1E8FS11-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1920889","Arthrobacter sp. SW1"]]},{"id":"NCBITaxon:1921","l":"Streptomyces olivaceoviridis","na":1,"nb":1,"a":[["Pfam%3APF01356","Alpha amylase inhibitor"]],"b":[["NCBITaxon%3A1921","Streptomyces olivaceoviridis"]]},{"id":"NCBITaxon:1923971","l":"Salinibacter sp. 10B","na":1,"nb":1,"a":[["TED%3AAF-A0A2P6C0S6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P6C0S6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1923971","Salinibacter sp. 10B"]]},{"id":"NCBITaxon:1925020","l":"Bacillus swezeyi","na":1,"nb":1,"a":[["TED%3AAF-A0A1R1S0T5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1R1S0T5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1925020","Bacillus swezeyi"]]},{"id":"NCBITaxon:1925021","l":"Bacillus haynesii","na":1,"nb":1,"a":[["TED%3AAF-A0A1R1RXP1-F1-model_v4_TED01","TED novel fold AF-A0A1R1RXP1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1925021","Bacillus haynesii"]]},{"id":"NCBITaxon:1925591","l":"Roseofilum reptotaenium AO1-A","na":1,"nb":1,"a":[["TED%3AAF-A0A1L9QV17-F1-model_v4_TED03","TED novel fold AF-A0A1L9QV17-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1925591","Roseofilum reptotaenium AO1-A"]]},{"id":"NCBITaxon:1926630","l":"Pseudoblastomonas halimionae","na":1,"nb":1,"a":[["TED%3AAF-A0A6I4U4Z5-F1-model_v4_TED03","TED novel fold AF-A0A6I4U4Z5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1926630","Pseudoblastomonas halimionae"]]},{"id":"NCBITaxon:1927958","l":"Dyella monticola","na":1,"nb":1,"a":[["TED%3AAF-A0A370WRE3-F1-model_v4_TED03","TED novel fold AF-A0A370WRE3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1927958","Dyella monticola"]]},{"id":"NCBITaxon:1928574","l":"Aliidiomarina soli","na":1,"nb":1,"a":[["TED%3AAF-A0A432WGJ7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A432WGJ7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1928574","Aliidiomarina soli"]]},{"id":"NCBITaxon:1930276","l":"Adhaeretor mobilis","na":1,"nb":1,"a":[["TED%3AAF-A0A517MS66-F1-model_v4_TED02","TED novel fold AF-A0A517MS66-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1930276","Adhaeretor mobilis"]]},{"id":"NCBITaxon:1930277","l":"Rosistilla ulvae","na":1,"nb":1,"a":[["TED%3AAF-A0A517M701-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A517M701-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1930277","Rosistilla ulvae"]]},{"id":"NCBITaxon:1930536","l":"Sphingomonadaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A520X4L1-F1-model_v4_TED02","TED novel fold AF-A0A520X4L1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1930536","Sphingomonadaceae bacterium"]]},{"id":"NCBITaxon:1931228","l":"Christiangramia sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2D8KSS7-F1-model_v4_TED03","TED novel fold AF-A0A2D8KSS7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1931228","Christiangramia sp."]]},{"id":"NCBITaxon:1932","l":"Streptomyces tendae","na":1,"nb":1,"a":[["Pfam%3APF01356","Alpha amylase inhibitor"]],"b":[["NCBITaxon%3A1932","Streptomyces tendae"]]},{"id":"NCBITaxon:1932694","l":"bacterium F16","na":1,"nb":1,"a":[["TED%3AAF-A0A202DPI2-F1-model_v4_TED03","TED novel fold AF-A0A202DPI2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1932694","bacterium F16"]]},{"id":"NCBITaxon:1932698","l":"bacterium F11","na":1,"nb":1,"a":[["TED%3AAF-A0A202DHL9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A202DHL9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1932698","bacterium F11"]]},{"id":"NCBITaxon:1932703","l":"bacterium I07","na":1,"nb":1,"a":[["TED%3AAF-A0A202DS02-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A202DS02-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1932703","bacterium I07"]]},{"id":"NCBITaxon:1932778","l":"Mucilaginibacter limnophilus","na":1,"nb":1,"a":[["TED%3AAF-A0A3S2Y3R2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S2Y3R2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1932778","Mucilaginibacter limnophilus"]]},{"id":"NCBITaxon:1933219","l":"Diaphorobacter sp. LR2014-1","na":1,"nb":1,"a":[["TED%3AAF-A0A2S4KFX0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S4KFX0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1933219","Diaphorobacter sp. LR2014-1"]]},{"id":"NCBITaxon:1933880","l":"Glutamicibacter halophytocola","na":1,"nb":1,"a":[["TED%3AAF-A0A5B8IKN3-F1-model_v4_TED01","TED novel fold AF-A0A5B8IKN3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1933880","Glutamicibacter halophytocola"]]},{"id":"NCBITaxon:1933926","l":"Methylococcaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y4XTX6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y4XTX6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1933926","Methylococcaceae bacterium"]]},{"id":"NCBITaxon:1933929","l":"Synechocystis sp. CACIAM 05","na":1,"nb":1,"a":[["TED%3AAF-A0A6P1VJ80-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6P1VJ80-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1933929","Synechocystis sp. CACIAM 05"]]},{"id":"NCBITaxon:1934250","l":"Desulfobulbaceae bacterium A2","na":1,"nb":1,"a":[["TED%3AAF-A0A1W9M0B5-F1-model_v4_TED01","TED novel fold AF-A0A1W9M0B5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1934250","Desulfobulbaceae bacterium A2"]]},{"id":"NCBITaxon:1934251","l":"Verrucomicrobia bacterium A1","na":1,"nb":1,"a":[["TED%3AAF-A0A1W9LED0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W9LED0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1934251","Verrucomicrobia bacterium A1"]]},{"id":"NCBITaxon:1934309","l":"Alkalinema sp. CACIAM 70d","na":1,"nb":1,"a":[["TED%3AAF-A0A251W9I5-F1-model_v4_TED01","TED novel fold AF-A0A251W9I5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1934309","Alkalinema sp. CACIAM 70d"]]},{"id":"NCBITaxon:1934400","l":"Pseudorhodobacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A5C7U5I6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7U5I6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1934400","Pseudorhodobacter sp."]]},{"id":"NCBITaxon:1936029","l":"Mycobacterium sp. MS1601","na":1,"nb":1,"a":[["TED%3AAF-A0A1P8XC76-F1-model_v4_TED01","TED novel fold AF-A0A1P8XC76-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1936029","Mycobacterium sp. MS1601"]]},{"id":"NCBITaxon:1936990","l":"Nitrospira sp. KM1","na":1,"nb":1,"a":[["TED%3AAF-A0A679I6E2-F1-model_v4_TED01","TED novel fold AF-A0A679I6E2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1936990","Nitrospira sp. KM1"]]},{"id":"NCBITaxon:1938607","l":"Sphingomonas sp. LM7","na":1,"nb":1,"a":[["TED%3AAF-A0A1S6FPE2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S6FPE2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1938607","Sphingomonas sp. LM7"]]},{"id":"NCBITaxon:1938609","l":"Flavobacterium sp. LM4","na":1,"nb":1,"a":[["TED%3AAF-A0A1T1BT57-F1-model_v4_TED01","TED novel fold AF-A0A1T1BT57-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1938609","Flavobacterium sp. LM4"]]},{"id":"NCBITaxon:1938619","l":"Thalassoglobus neptunius","na":1,"nb":1,"a":[["TED%3AAF-A0A5C5WLP6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C5WLP6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1938619","Thalassoglobus neptunius"]]},{"id":"NCBITaxon:1938744","l":"Bacillus sp. V-88","na":1,"nb":1,"a":[["TED%3AAF-A0A1U6JWX2-F1-model_v4_TED01","TED novel fold AF-A0A1U6JWX2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1938744","Bacillus sp. V-88"]]},{"id":"NCBITaxon:1938745","l":"Blastococcus haudaquaticus","na":1,"nb":1,"a":[["TED%3AAF-A0A286GU62-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A286GU62-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1938745","Blastococcus haudaquaticus"]]},{"id":"NCBITaxon:1938796","l":"Paraburkholderia sp. BL10I2N1","na":1,"nb":1,"a":[["TED%3AAF-A0A4R6F5Z7-F1-model_v4_TED01","TED novel fold AF-A0A4R6F5Z7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1938796","Paraburkholderia sp. BL10I2N1"]]},{"id":"NCBITaxon:1938801","l":"Paraburkholderia sp. BL21I4N1","na":1,"nb":1,"a":[["TED%3AAF-A0A2S8RQH9-F1-model_v4_TED02","TED novel fold AF-A0A2S8RQH9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1938801","Paraburkholderia sp. BL21I4N1"]]},{"id":"NCBITaxon:1938807","l":"Paraburkholderia sp. BL6669N2","na":1,"nb":1,"a":[["TED%3AAF-A0A3E0CAW2-F1-model_v4_TED02","TED novel fold AF-A0A3E0CAW2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1938807","Paraburkholderia sp. BL6669N2"]]},{"id":"NCBITaxon:1938830","l":"Streptomyces sp. 1114.5","na":1,"nb":1,"a":[["TED%3AAF-A0A495SRF0-F1-model_v4_TED01","TED novel fold AF-A0A495SRF0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1938830","Streptomyces sp. 1114.5"]]},{"id":"NCBITaxon:1938836","l":"Streptomyces sp. 2114.4","na":1,"nb":1,"a":[["TED%3AAF-A0A212U7M9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A212U7M9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1938836","Streptomyces sp. 2114.4"]]},{"id":"NCBITaxon:1938846","l":"Streptomyces sp. 3212.3","na":1,"nb":1,"a":[["TED%3AAF-A0A3D9QET1-F1-model_v4_TED03","TED novel fold AF-A0A3D9QET1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1938846","Streptomyces sp. 3212.3"]]},{"id":"NCBITaxon:1938847","l":"Streptomyces sp. 4121.5","na":1,"nb":1,"a":[["TED%3AAF-A0A2N0FC69-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N0FC69-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1938847","Streptomyces sp. 4121.5"]]},{"id":"NCBITaxon:1938870","l":"Candidatus Pantoea floridensis","na":1,"nb":1,"a":[["TED%3AAF-A0A286BLC6-F1-model_v4_TED02","TED novel fold AF-A0A286BLC6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1938870","Candidatus Pantoea floridensis"]]},{"id":"NCBITaxon:1938886","l":"Fastidiosipila sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A847BPI8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A847BPI8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1938886","Fastidiosipila sp."]]},{"id":"NCBITaxon:1940525","l":"Labilibaculum manganireducens","na":1,"nb":1,"a":[["TED%3AAF-A0A2N3IGB8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3IGB8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1940525","Labilibaculum manganireducens"]]},{"id":"NCBITaxon:1940526","l":"Labilibaculum filiforme","na":1,"nb":1,"a":[["TED%3AAF-A0A2N3HUZ8-F1-model_v4_TED05","TED novel fold AF-A0A2N3HUZ8-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1940526","Labilibaculum filiforme"]]},{"id":"NCBITaxon:1940690","l":"Pseudidiomarina andamanensis","na":1,"nb":1,"a":[["TED%3AAF-A0A6I6DCU6-F1-model_v4_TED01","TED novel fold AF-A0A6I6DCU6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1940690","Pseudidiomarina andamanensis"]]},{"id":"NCBITaxon:1941349","l":"Sedimentisphaera salicampi","na":1,"nb":1,"a":[["TED%3AAF-A0A1W6LIY2-F1-model_v4_TED02","TED novel fold AF-A0A1W6LIY2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1941349","Sedimentisphaera salicampi"]]},{"id":"NCBITaxon:1943579","l":"Oribacterium sp. C9","na":1,"nb":1,"a":[["TED%3AAF-A0A1S9BTM3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1S9BTM3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1943579","Oribacterium sp. C9"]]},{"id":"NCBITaxon:1943583","l":"Candidatus Synechococcus spongiarum LMB bulk15N","na":1,"nb":1,"a":[["TED%3AAF-A0A1T1D6G1-F1-model_v4_TED01","TED novel fold AF-A0A1T1D6G1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1943583","Candidatus Synechococcus spongiarum LMB bulk15N"]]},{"id":"NCBITaxon:1945577","l":"Methanosphaera sp. rholeuAM270","na":1,"nb":1,"a":[["TED%3AAF-A0A328SCG4-F1-model_v4_TED01","TED novel fold AF-A0A328SCG4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1945577","Methanosphaera sp. rholeuAM270"]]},{"id":"NCBITaxon:1945581","l":"Chryseobacterium mucoviscidosis","na":1,"nb":1,"a":[["TED%3AAF-A0A202BWT4-F1-model_v4_TED01","TED novel fold AF-A0A202BWT4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1945581","Chryseobacterium mucoviscidosis"]]},{"id":"NCBITaxon:1945595","l":"Methanosarcinaceae archaeon","na":1,"nb":1,"a":[["TED%3AAF-A0A7J4PFN5-F1-model_v4_TED02","TED novel fold AF-A0A7J4PFN5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1945595","Methanosarcinaceae archaeon"]]},{"id":"NCBITaxon:1945887","l":"Prevotellaceae bacterium MN60","na":1,"nb":1,"a":[["TED%3AAF-A0A239QYE6-F1-model_v4_TED02","TED novel fold AF-A0A239QYE6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1945887","Prevotellaceae bacterium MN60"]]},{"id":"NCBITaxon:1945892","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A286IKU0-F1-model_v4_TED03","TED novel fold AF-A0A286IKU0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1945892","Spirosomataceae bacterium TFI 002"]]},{"id":"NCBITaxon:1949069","l":"Pseudoduganella buxea","na":1,"nb":1,"a":[["TED%3AAF-A0A6I3T0T8-F1-model_v4_TED01","TED novel fold AF-A0A6I3T0T8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1949069","Pseudoduganella buxea"]]},{"id":"NCBITaxon:1953771","l":"Chelatococcus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2W7APJ3-F1-model_v4_TED01","TED novel fold AF-A0A2W7APJ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1953771","Chelatococcus sp."]]},{"id":"NCBITaxon:1954172","l":"Calothrix sp. NIES-2100","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z4GTF8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z4GTF8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1954172","Calothrix sp. NIES-2100"]]},{"id":"NCBITaxon:1955620","l":"Hymenobacter sp. CRA2","na":1,"nb":1,"a":[["TED%3AAF-A0A1S9AVK6-F1-model_v4_TED01","TED novel fold AF-A0A1S9AVK6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1955620","Hymenobacter sp. CRA2"]]},{"id":"NCBITaxon:1955714","l":"Cohnella sp. CIP 111063","na":1,"nb":1,"a":[["TED%3AAF-A0A231RF01-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A231RF01-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1955714","Cohnella sp. CIP 111063"]]},{"id":"NCBITaxon:1955775","l":"Emergomyces africanus","na":1,"nb":1,"a":[["TED%3AAF-A0A1B7P984-F1-model_v4_TED01","TED novel fold AF-A0A1B7P984-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1955775","Emergomyces africanus"]]},{"id":"NCBITaxon:1956161","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4QRE7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V4QRE7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1956161","Planctomycetales bacterium 4484_113"]]},{"id":"NCBITaxon:1958773","l":"Pseudomonas sp. PIC25","na":1,"nb":1,"a":[["TED%3AAF-A0A2A2E902-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A2E902-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1958773","Pseudomonas sp. PIC25"]]},{"id":"NCBITaxon:1958945","l":"Aurantiacibacter aquimixticola","na":1,"nb":1,"a":[["TED%3AAF-A0A419RSL8-F1-model_v4_TED02","TED novel fold AF-A0A419RSL8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1958945","Aurantiacibacter aquimixticola"]]},{"id":"NCBITaxon:195913","l":"Loktanella salsilacus","na":1,"nb":1,"a":[["TED%3AAF-A0A1I4CVX6-F1-model_v4_TED03","TED novel fold AF-A0A1I4CVX6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A195913","Loktanella salsilacus"]]},{"id":"NCBITaxon:1960125","l":"Parendozoicomonas haliclonae","na":1,"nb":1,"a":[["TED%3AAF-A0A1X7ARE0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X7ARE0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1960125","Parendozoicomonas haliclonae"]]},{"id":"NCBITaxon:1960126","l":"Salmonella enterica subsp. enterica serovar Wilhelmsburg","na":1,"nb":1,"a":[["TED%3AAF-A0A659QGA1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A659QGA1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1960126","Salmonella enterica subsp. enterica serovar Wilhelmsburg"]]},{"id":"NCBITaxon:1960156","l":"Abditibacterium utsteinense","na":1,"nb":1,"a":[["TED%3AAF-A0A2S8SU22-F1-model_v4_TED02","TED novel fold AF-A0A2S8SU22-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1960156","Abditibacterium utsteinense"]]},{"id":"NCBITaxon:1960825","l":"Acinetobacter sp. MF4642","na":1,"nb":1,"a":[["TED%3AAF-A0A1T1JB81-F1-model_v4_TED01","TED novel fold AF-A0A1T1JB81-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1960825","Acinetobacter sp. MF4642"]]},{"id":"NCBITaxon:1960827","l":"Pseudomonas sp. MF4836","na":1,"nb":1,"a":[["TED%3AAF-A0A1T1IBN9-F1-model_v4_TED01","TED novel fold AF-A0A1T1IBN9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1960827","Pseudomonas sp. MF4836"]]},{"id":"NCBITaxon:1960830","l":"Mesonia sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2D8UMY7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D8UMY7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1960830","Mesonia sp."]]},{"id":"NCBITaxon:1960881","l":"Runella sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A3C0UPU2-F1-model_v4_TED01","TED novel fold AF-A0A3C0UPU2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1960881","Runella sp."]]},{"id":"NCBITaxon:196109","l":"Microdochium bolleyi","na":1,"nb":1,"a":[["TED%3AAF-A0A136IX34-F1-model_v4_TED02","TED novel fold AF-A0A136IX34-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A196109","Microdochium bolleyi"]]},{"id":"NCBITaxon:196162","l":"Nocardioides sp. JS614","na":1,"nb":1,"a":[["TED%3AAF-A1SFH1-F1-model_v4_TED04","TED highly-symmetric fold AF-A1SFH1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A196162","Nocardioides sp. JS614"]]},{"id":"NCBITaxon:1961706","l":"Mycobacterium sp. AT1","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4Q3C2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1V4Q3C2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1961706","Mycobacterium sp. AT1"]]},{"id":"NCBITaxon:1962","l":"Streptomyces albus G","na":1,"nb":1,"a":[["Pfam%3APF13613","Helix-turn-helix of DDE superfamily endonuclease"]],"b":[["NCBITaxon%3A1962","Streptomyces albus G"]]},{"id":"NCBITaxon:196367","l":"Caballeronia sordidicola","na":1,"nb":1,"a":[["TED%3AAF-A0A7H9UPF1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H9UPF1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A196367","Caballeronia sordidicola"]]},{"id":"NCBITaxon:1964356","l":"Fibrobacter sp. UWB4","na":1,"nb":1,"a":[["TED%3AAF-A0A254S640-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A254S640-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1964356","Fibrobacter sp. UWB4"]]},{"id":"NCBITaxon:1965294","l":"Collinsella sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A3D1WST0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D1WST0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1965294","Collinsella sp."]]},{"id":"NCBITaxon:1965537","l":"Flavonifractor sp. An10","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4WLE4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1Y4WLE4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1965537","Flavonifractor sp. An10"]]},{"id":"NCBITaxon:1965547","l":"Lachnoclostridium sp. An118","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4TVU4-F1-model_v4_TED03","TED novel fold AF-A0A1Y4TVU4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1965547","Lachnoclostridium sp. An118"]]},{"id":"NCBITaxon:1965550","l":"Faecalibacterium sp. An121","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4TDE2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Y4TDE2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1965550","Faecalibacterium sp. An121"]]},{"id":"NCBITaxon:1965558","l":"Flavonifractor sp. An135","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4S482-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y4S482-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965558","Flavonifractor sp. An135"]]},{"id":"NCBITaxon:1965564","l":"Massilimicrobiota sp. An142","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4RBI2-F1-model_v4_TED01","TED novel fold AF-A0A1Y4RBI2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965564","Massilimicrobiota sp. An142"]]},{"id":"NCBITaxon:1965566","l":"Erysipelatoclostridium sp. An15","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4QS30-F1-model_v4_TED01","TED novel fold AF-A0A1Y4QS30-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965566","Erysipelatoclostridium sp. An15"]]},{"id":"NCBITaxon:1965575","l":"Lachnoclostridium sp. An181","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4LAC0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Y4LAC0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1965575","Lachnoclostridium sp. An181"]]},{"id":"NCBITaxon:1965579","l":"Olsenella sp. An188","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4K124-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y4K124-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965579","Olsenella sp. An188"]]},{"id":"NCBITaxon:1965583","l":"Lachnoclostridium sp. An196","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4ISD7-F1-model_v4_TED02","TED novel fold AF-A0A1Y4ISD7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1965583","Lachnoclostridium sp. An196"]]},{"id":"NCBITaxon:1965590","l":"Barnesiella sp. An22","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4GUZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y4GUZ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965590","Barnesiella sp. An22"]]},{"id":"NCBITaxon:1965591","l":"Cloacibacillus sp. An23","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4GGY1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Y4GGY1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1965591","Cloacibacillus sp. An23"]]},{"id":"NCBITaxon:1965603","l":"Blautia sp. An249","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4F359-F1-model_v4_TED01","TED novel fold AF-A0A1Y4F359-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965603","Blautia sp. An249"]]},{"id":"NCBITaxon:1965613","l":"Bacteroides sp. An269","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4EW98-F1-model_v4_TED02","TED novel fold AF-A0A1Y4EW98-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1965613","Bacteroides sp. An269"]]},{"id":"NCBITaxon:1965616","l":"Collinsella sp. An271","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4DSD0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y4DSD0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965616","Collinsella sp. An271"]]},{"id":"NCBITaxon:1965629","l":"Flavonifractor sp. An306","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4CFF8-F1-model_v4_TED01","TED novel fold AF-A0A1Y4CFF8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965629","Flavonifractor sp. An306"]]},{"id":"NCBITaxon:1965634","l":"Flavonifractor sp. An4","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y3Z369-F1-model_v4_TED01","TED novel fold AF-A0A1Y3Z369-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965634","Flavonifractor sp. An4"]]},{"id":"NCBITaxon:1965640","l":"Bacteroides sp. An51A","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y3X5P3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y3X5P3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965640","Bacteroides sp. An51A"]]},{"id":"NCBITaxon:1965646","l":"Barnesiella sp. An55","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y3W911-F1-model_v4_TED01","TED novel fold AF-A0A1Y3W911-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965646","Barnesiella sp. An55"]]},{"id":"NCBITaxon:1965654","l":"Lachnoclostridium sp. An76","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y3TDU7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y3TDU7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965654","Lachnoclostridium sp. An76"]]},{"id":"NCBITaxon:1965664","l":"Flavonifractor sp. An9","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y3RAD2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y3RAD2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965664","Flavonifractor sp. An9"]]},{"id":"NCBITaxon:1965665","l":"Flavonifractor sp. An91","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y3RCN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y3RCN7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965665","Flavonifractor sp. An91"]]},{"id":"NCBITaxon:1966350","l":"Methanococcoides sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A849PVH1-F1-model_v4_TED01","TED novel fold AF-A0A849PVH1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1966350","Methanococcoides sp."]]},{"id":"NCBITaxon:1967","l":"Streptomyces kanamyceticus","na":1,"nb":1,"a":[["Pfam%3APF13579","Glycosyl transferase 4-like domain"]],"b":[["NCBITaxon%3A1967","Streptomyces kanamyceticus"]]},{"id":"NCBITaxon:1967498","l":"Ilumatobacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2E3TVT0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E3TVT0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1967498","Ilumatobacter sp."]]},{"id":"NCBITaxon:1967781","l":"Rhizobium esperanzae","na":1,"nb":1,"a":[["TED%3AAF-A0A7W6W3W3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W6W3W3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1967781","Rhizobium esperanzae"]]},{"id":"NCBITaxon:1967839","l":"Pseudoalteromonas sp. A601","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y5KD00-F1-model_v4_TED04","TED novel fold AF-A0A1Y5KD00-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1967839","Pseudoalteromonas sp. A601"]]},{"id":"NCBITaxon:1969380","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A328M7C9-F1-model_v4_TED02","TED novel fold AF-A0A328M7C9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1969380","Bacillus sp. SRB_336"]]},{"id":"NCBITaxon:1969733","l":"Geothermobacter hydrogeniphilus","na":1,"nb":1,"a":[["TED%3AAF-A0A1X0Y030-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X0Y030-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1969733","Geothermobacter hydrogeniphilus"]]},{"id":"NCBITaxon:1969738","l":"Butyricimonas sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7G2MLY6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7G2MLY6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1969738","Butyricimonas sp."]]},{"id":"NCBITaxon:1970082","l":"Pyrodictium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A833DYK4-F1-model_v4_TED01","TED novel fold AF-A0A833DYK4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970082","Pyrodictium sp."]]},{"id":"NCBITaxon:1970083","l":"Hyperthermus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A432R784-F1-model_v4_TED01","TED novel fold AF-A0A432R784-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970083","Hyperthermus sp."]]},{"id":"NCBITaxon:1970291","l":"Acidiphilium sp. 20-67-58","na":1,"nb":1,"a":[["TED%3AAF-A0A257R2U2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A257R2U2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970291","Acidiphilium sp. 20-67-58"]]},{"id":"NCBITaxon:1970331","l":"Caulobacter sp. 35-67-4","na":1,"nb":1,"a":[["TED%3AAF-A0A258KAX8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A258KAX8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970331","Caulobacter sp. 35-67-4"]]},{"id":"NCBITaxon:1970334","l":"Chthoniobacter sp. 12-60-6","na":1,"nb":1,"a":[["TED%3AAF-A0A257XBV1-F1-model_v4_TED01","TED novel fold AF-A0A257XBV1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970334","Chthoniobacter sp. 12-60-6"]]},{"id":"NCBITaxon:1970383","l":"Halothiobacillus sp. 20-53-49","na":1,"nb":1,"a":[["TED%3AAF-A0A257QD04-F1-model_v4_TED01","TED novel fold AF-A0A257QD04-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970383","Halothiobacillus sp. 20-53-49"]]},{"id":"NCBITaxon:1970386","l":"Halothiobacillus sp. 28-55-5","na":1,"nb":1,"a":[["TED%3AAF-A0A258QIP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A258QIP8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970386","Halothiobacillus sp. 28-55-5"]]},{"id":"NCBITaxon:1970390","l":"Hyphomicrobium sp. 32-62-53","na":1,"nb":1,"a":[["TED%3AAF-A0A258L5X3-F1-model_v4_TED01","TED novel fold AF-A0A258L5X3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970390","Hyphomicrobium sp. 32-62-53"]]},{"id":"NCBITaxon:1970400","l":"Microbacterium sp. 14-71-5","na":1,"nb":1,"a":[["TED%3AAF-A0A259SVI0-F1-model_v4_TED02","TED novel fold AF-A0A259SVI0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1970400","Microbacterium sp. 14-71-5"]]},{"id":"NCBITaxon:1970406","l":"Novosphingobium sp. 17-62-19","na":1,"nb":1,"a":[["TED%3AAF-A0A259E3M0-F1-model_v4_TED01","TED novel fold AF-A0A259E3M0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970406","Novosphingobium sp. 17-62-19"]]},{"id":"NCBITaxon:1970407","l":"Novosphingobium sp. 17-62-8","na":1,"nb":1,"a":[["TED%3AAF-A0A259C6J9-F1-model_v4_TED01","TED novel fold AF-A0A259C6J9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970407","Novosphingobium sp. 17-62-8"]]},{"id":"NCBITaxon:1970418","l":"Polaromonas sp. 35-63-35","na":1,"nb":1,"a":[["TED%3AAF-A0A258NST0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A258NST0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970418","Polaromonas sp. 35-63-35"]]},{"id":"NCBITaxon:1970432","l":"Sphingomonas sp. 28-62-11","na":1,"nb":1,"a":[["TED%3AAF-A0A258R9E4-F1-model_v4_TED01","TED novel fold AF-A0A258R9E4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970432","Sphingomonas sp. 28-62-11"]]},{"id":"NCBITaxon:1970433","l":"Sphingomonas sp. 28-62-20","na":1,"nb":1,"a":[["TED%3AAF-A0A258SDY8-F1-model_v4_TED01","TED novel fold AF-A0A258SDY8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970433","Sphingomonas sp. 28-62-20"]]},{"id":"NCBITaxon:1970434","l":"Sphingomonas sp. 28-63-12","na":1,"nb":1,"a":[["TED%3AAF-A0A258RQ90-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A258RQ90-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970434","Sphingomonas sp. 28-63-12"]]},{"id":"NCBITaxon:1970486","l":"Acidobacteria bacterium 37-65-4","na":1,"nb":1,"a":[["TED%3AAF-A0A257V9L0-F1-model_v4_TED04","TED novel fold AF-A0A257V9L0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1970486","Acidobacteria bacterium 37-65-4"]]},{"id":"NCBITaxon:1970489","l":"Actinobacteria bacterium 21-73-9","na":1,"nb":1,"a":[["TED%3AAF-A0A257RE24-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A257RE24-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970489","Actinobacteria bacterium 21-73-9"]]},{"id":"NCBITaxon:1970490","l":"Alphaproteobacteria bacterium 16-39-46","na":1,"nb":1,"a":[["TED%3AAF-A0A258XBG1-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A258XBG1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1970490","Alphaproteobacteria bacterium 16-39-46"]]},{"id":"NCBITaxon:1970510","l":"Gallionellales bacterium 24-53-125","na":1,"nb":1,"a":[["TED%3AAF-A0A258ZAY9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A258ZAY9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1970510","Gallionellales bacterium 24-53-125"]]},{"id":"NCBITaxon:1970514","l":"Gemmatimonadetes bacterium 21-71-4","na":1,"nb":1,"a":[["TED%3AAF-A0A257RPC9-F1-model_v4_TED01","TED novel fold AF-A0A257RPC9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970514","Gemmatimonadetes bacterium 21-71-4"]]},{"id":"NCBITaxon:1970532","l":"Ignavibacteriae bacterium 37-53-5","na":1,"nb":1,"a":[["TED%3AAF-A0A257TMI8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A257TMI8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1970532","Ignavibacteriae bacterium 37-53-5"]]},{"id":"NCBITaxon:1970533","l":"Methylophilaceae bacterium 17-43-7","na":1,"nb":1,"a":[["TED%3AAF-A0A258ZSQ9-F1-model_v4_TED01","TED novel fold AF-A0A258ZSQ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970533","Methylophilaceae bacterium 17-43-7"]]},{"id":"NCBITaxon:1970538","l":"Methylophilales bacterium 28-44-11","na":1,"nb":1,"a":[["TED%3AAF-A0A258Q043-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A258Q043-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1970538","Methylophilales bacterium 28-44-11"]]},{"id":"NCBITaxon:1970542","l":"Planctomycetia bacterium 21-64-5","na":1,"nb":1,"a":[["TED%3AAF-A0A257TP90-F1-model_v4_TED02","TED novel fold AF-A0A257TP90-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1970542","Planctomycetia bacterium 21-64-5"]]},{"id":"NCBITaxon:1970549","l":"Rhizobiales bacterium 32-66-11","na":1,"nb":1,"a":[["TED%3AAF-A0A258IJC2-F1-model_v4_TED01","TED novel fold AF-A0A258IJC2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970549","Rhizobiales bacterium 32-66-11"]]},{"id":"NCBITaxon:1970550","l":"Rhizobiales bacterium 32-66-8","na":1,"nb":1,"a":[["TED%3AAF-A0A258DUN5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A258DUN5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970550","Rhizobiales bacterium 32-66-8"]]},{"id":"NCBITaxon:1970552","l":"Rhizobiales bacterium 35-68-8","na":1,"nb":1,"a":[["TED%3AAF-A0A258LT13-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A258LT13-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970552","Rhizobiales bacterium 35-68-8"]]},{"id":"NCBITaxon:1970573","l":"Sphingobacteriia bacterium 28-36-52","na":1,"nb":1,"a":[["TED%3AAF-A0A258U799-F1-model_v4_TED02","TED novel fold AF-A0A258U799-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1970573","Sphingobacteriia bacterium 28-36-52"]]},{"id":"NCBITaxon:1970586","l":"Sphingomonadales bacterium 12-68-11","na":1,"nb":1,"a":[["TED%3AAF-A0A257YE58-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A257YE58-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970586","Sphingomonadales bacterium 12-68-11"]]},{"id":"NCBITaxon:1970589","l":"Sphingomonadales bacterium 28-55-16","na":1,"nb":1,"a":[["TED%3AAF-A0A258RRI2-F1-model_v4_TED02","TED novel fold AF-A0A258RRI2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1970589","Sphingomonadales bacterium 28-55-16"]]},{"id":"NCBITaxon:1970591","l":"Sphingomonadales bacterium 28-64-96","na":1,"nb":1,"a":[["TED%3AAF-A0A258VAH0-F1-model_v4_TED01","TED novel fold AF-A0A258VAH0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970591","Sphingomonadales bacterium 28-64-96"]]},{"id":"NCBITaxon:1971619","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1W9TIB3-F1-model_v4_TED02","TED novel fold AF-A0A1W9TIB3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1971619","Marinitoga sp. 4572_148"]]},{"id":"NCBITaxon:1971625","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1W9SU75-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W9SU75-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1971625","Desulfobacteraceae bacterium 4572_130"]]},{"id":"NCBITaxon:1971630","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A256W873-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A256W873-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1971630","Bacteroidetes bacterium 4572_112"]]},{"id":"NCBITaxon:1971631","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A256WD82-F1-model_v4_TED02","TED novel fold AF-A0A256WD82-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1971631","Bacteroidetes bacterium 4572_114"]]},{"id":"NCBITaxon:1971632","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1W9SY04-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W9SY04-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1971632","Bacteroidetes bacterium 4572_117"]]},{"id":"NCBITaxon:1971633","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1W9ST60-F1-model_v4_TED03","TED novel fold AF-A0A1W9ST60-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1971633","Bacteroidetes bacterium 4572_128"]]},{"id":"NCBITaxon:1971727","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1W9VFK2-F1-model_v4_TED01","TED novel fold AF-A0A1W9VFK2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1971727","Spirochaetaceae bacterium 4572_59"]]},{"id":"NCBITaxon:1972456","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1W9VXE4-F1-model_v4_TED01","TED novel fold AF-A0A1W9VXE4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1972456","Spirochaetaceae bacterium 4572_7"]]},{"id":"NCBITaxon:1972846","l":"Streptomyces sp. Sge12","na":1,"nb":1,"a":[["TED%3AAF-A0A1V0QT96-F1-model_v4_TED01","TED novel fold AF-A0A1V0QT96-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1972846","Streptomyces sp. Sge12"]]},{"id":"NCBITaxon:1973142","l":"Thermoplasma sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A5J5FF33-F1-model_v4_TED01","TED novel fold AF-A0A5J5FF33-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973142","Thermoplasma sp."]]},{"id":"NCBITaxon:1973259","l":"Zestosphaera tikiterensis","na":1,"nb":1,"a":[["TED%3AAF-A0A2R7Y2H4-F1-model_v4_TED01","TED novel fold AF-A0A2R7Y2H4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973259","Zestosphaera tikiterensis"]]},{"id":"NCBITaxon:1973477","l":"Nodularia sp. NIES-3585","na":1,"nb":1,"a":[["TED%3AAF-A0A218PYE4-F1-model_v4_TED01","TED novel fold AF-A0A218PYE4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973477","Nodularia sp. NIES-3585"]]},{"id":"NCBITaxon:1973484","l":"Leptolyngbya boryana NIES-2135","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z4JRH1-F1-model_v4_TED01","TED novel fold AF-A0A1Z4JRH1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973484","Leptolyngbya boryana NIES-2135"]]},{"id":"NCBITaxon:1973748","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A235BZX3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A235BZX3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973748","Caldifarciminota bacterium JGI_Cruoil_03_44_89"]]},{"id":"NCBITaxon:1973888","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M8D5F1-F1-model_v4_TED03","TED novel fold AF-A0A2M8D5F1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1973888","Acidobacteria bacterium CG_4_9_14_3_um_filter_49_7"]]},{"id":"NCBITaxon:1973916","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7A827-F1-model_v4_TED02","TED novel fold AF-A0A2M7A827-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1973916","Armatimonadetes bacterium CG07_land_8_20_14_0_80_40_9"]]},{"id":"NCBITaxon:1973917","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7AGG3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2M7AGG3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1973917","Armatimonadetes bacterium CG07_land_8_20_14_0_80_59_28"]]},{"id":"NCBITaxon:1973919","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7N334-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M7N334-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973919","Bacteroidetes bacterium CG_4_10_14_3_um_filter_31_20"]]},{"id":"NCBITaxon:1973920","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7PJ97-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2M7PJ97-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1973920","Bacteroidetes bacterium CG_4_10_14_3_um_filter_42_6"]]},{"id":"NCBITaxon:1973925","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0HDX3-F1-model_v4_TED01","TED novel fold AF-A0A2H0HDX3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973925","Bacteroidetes bacterium CG18_big_fil_WC_8_21_14_2_50_41_14"]]},{"id":"NCBITaxon:1973926","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0BCP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H0BCP8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973926","Bacteroidetes bacterium CG23_combo_of_CG06-09_8_20_14_all_32_9"]]},{"id":"NCBITaxon:1973927","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M6X4S8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M6X4S8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973927","Bdellovibrionales bacterium CG10_big_fil_rev_8_21_14_0_10_45_34"]]},{"id":"NCBITaxon:1973935","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0VNB5-F1-model_v4_TED01","TED novel fold AF-A0A2H0VNB5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973935","Chlamydiae bacterium CG10_big_fil_rev_8_21_14_0_10_35_9"]]},{"id":"NCBITaxon:1973962","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7JSH6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2M7JSH6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1973962","Deltaproteobacteria bacterium CG_4_8_14_3_um_filter_45_9"]]},{"id":"NCBITaxon:1973963","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7JGF0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2M7JGF0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1973963","Deltaproteobacteria bacterium CG_4_8_14_3_um_filter_51_11"]]},{"id":"NCBITaxon:1973967","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M8B4E2-F1-model_v4_TED02","TED novel fold AF-A0A2M8B4E2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1973967","Deltaproteobacteria bacterium CG_4_9_14_3_um_filter_63_12"]]},{"id":"NCBITaxon:1973971","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M6ZXW2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M6ZXW2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973971","Deltaproteobacteria bacterium CG07_land_8_20_14_0_80_38_7"]]},{"id":"NCBITaxon:1973983","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2G9ZZZ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G9ZZZ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973983","Desulfobacterales bacterium CG23_combo_of_CG06-09_8_20_14_all_51_8"]]},{"id":"NCBITaxon:1973994","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7DL13-F1-model_v4_TED01","TED novel fold AF-A0A2M7DL13-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973994","Flavobacteriaceae bacterium CG02_land_8_20_14_3_00_34_13"]]},{"id":"NCBITaxon:1974127","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7HCL7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2M7HCL7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1974127","Zetaproteobacteria bacterium CG12_big_fil_rev_8_21_14_0_65_55_1124"]]},{"id":"NCBITaxon:1974426","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2H9PX84-F1-model_v4_TED03","TED novel fold AF-A0A2H9PX84-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1974426","Candidatus Pacearchaeota archaeon CG_4_10_14_0_2_um_filter_31_10"]]},{"id":"NCBITaxon:1974445","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2G9NCG0-F1-model_v4_TED01","TED novel fold AF-A0A2G9NCG0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1974445","Candidatus Pacearchaeota archaeon CG10_big_fil_rev_8_21_14_0_10_35_13"]]},{"id":"NCBITaxon:1974463","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2G9MA02-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2G9MA02-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1974463","Candidatus Woesearchaeota archaeon CG10_big_fil_rev_8_21_14_0_10_37_12"]]},{"id":"NCBITaxon:1974464","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2G9N4U0-F1-model_v4_TED02","TED novel fold AF-A0A2G9N4U0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1974464","Candidatus Woesearchaeota archaeon CG10_big_fil_rev_8_21_14_0_10_44_13"]]},{"id":"NCBITaxon:1974478","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M8ESB9-F1-model_v4_TED02","TED novel fold AF-A0A2M8ESB9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1974478","Candidatus Shapirobacteria bacterium CG_4_9_14_0_2_um_filter_39_11"]]},{"id":"NCBITaxon:1974485","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M6WZU0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2M6WZU0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1974485","Candidatus Andersenbacteria bacterium CG10_big_fil_rev_8_21_14_0_10_54_11"]]},{"id":"NCBITaxon:1974497","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0B6L5-F1-model_v4_TED01","TED novel fold AF-A0A2H0B6L5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1974497","Candidatus Beckwithbacteria bacterium CG23_combo_of_CG06-09_8_20_14_all_34_8"]]},{"id":"NCBITaxon:1974550","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0A4B0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H0A4B0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1974550","Candidatus Desantisbacteria bacterium CG23_combo_of_CG06-09_8_20_14_all_40_23"]]},{"id":"NCBITaxon:1974551","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0VDX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H0VDX2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1974551","Candidatus Doudnabacteria bacterium CG10_big_fil_rev_8_21_14_0_10_41_10"]]},{"id":"NCBITaxon:1974559","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M8ADX0-F1-model_v4_TED03","TED novel fold AF-A0A2M8ADX0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1974559","Candidatus Falkowbacteria bacterium CG_4_9_14_3_um_filter_38_19"]]},{"id":"NCBITaxon:1974585","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0UQ17-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H0UQ17-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1974585","Candidatus Harrisonbacteria bacterium CG10_big_fil_rev_8_21_14_0_10_44_23"]]},{"id":"NCBITaxon:1974647","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M6NZZ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M6NZZ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1974647","Candidatus Magasanikbacteria bacterium CG10_big_fil_rev_8_21_14_0_10_38_6"]]},{"id":"NCBITaxon:1974650","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M6W203-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2M6W203-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1974650","Candidatus Magasanikbacteria bacterium CG10_big_fil_rev_8_21_14_0_10_43_6"]]},{"id":"NCBITaxon:1974725","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0TG47-F1-model_v4_TED02","TED novel fold AF-A0A2H0TG47-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1974725","Candidatus Niyogibacteria bacterium CG10_big_fil_rev_8_21_14_0_10_42_19"]]},{"id":"NCBITaxon:1974748","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0LSV6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H0LSV6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1974748","Candidatus Abzuiibacterium crystallinum"]]},{"id":"NCBITaxon:1974757","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2G9YJU5-F1-model_v4_TED01","TED novel fold AF-A0A2G9YJU5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1974757","Candidatus Sherwoodlollariibacterium unditelluris"]]},{"id":"NCBITaxon:1974784","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0S8P7-F1-model_v4_TED03","TED novel fold AF-A0A2H0S8P7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1974784","Candidatus Peregrinibacteria bacterium CG10_big_fil_rev_8_21_14_0_10_36_19"]]},{"id":"NCBITaxon:1974791","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0RQ70-F1-model_v4_TED02","TED novel fold AF-A0A2H0RQ70-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1974791","Candidatus Peregrinibacteria bacterium CG10_big_fil_rev_8_21_14_0_10_55_24"]]},{"id":"NCBITaxon:1974814","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M8KFY5-F1-model_v4_TED01","TED novel fold AF-A0A2M8KFY5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1974814","Candidatus Portnoybacteria bacterium CG10_big_fil_rev_8_21_14_0_10_40_22"]]},{"id":"NCBITaxon:197482","l":"Malaciobacter halophilus","na":1,"nb":1,"a":[["TED%3AAF-A0A8B3RF77-F1-model_v4_TED01","TED novel fold AF-A0A8B3RF77-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A197482","Malaciobacter halophilus"]]},{"id":"NCBITaxon:1974837","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M8F0D2-F1-model_v4_TED04","TED novel fold AF-A0A2M8F0D2-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1974837","Candidatus Roizmanbacteria bacterium CG_4_9_14_0_2_um_filter_36_12"]]},{"id":"NCBITaxon:1974841","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7XWN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M7XWN7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1974841","Candidatus Roizmanbacteria bacterium CG_4_9_14_3_um_filter_33_18"]]},{"id":"NCBITaxon:1974843","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7E5D6-F1-model_v4_TED02","TED novel fold AF-A0A2M7E5D6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1974843","Candidatus Roizmanbacteria bacterium CG01_land_8_20_14_3_00_33_9"]]},{"id":"NCBITaxon:1975025","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0KBG4-F1-model_v4_TED01","TED novel fold AF-A0A2H0KBG4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1975025","Candidatus Taylorbacteria bacterium CG11_big_fil_rev_8_21_14_0_20_46_11"]]},{"id":"NCBITaxon:1975035","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7XD98-F1-model_v4_TED01","TED novel fold AF-A0A2M7XD98-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1975035","Candidatus Uhrbacteria bacterium CG_4_9_14_3_um_filter_50_9"]]},{"id":"NCBITaxon:1975062","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7Q8B6-F1-model_v4_TED02","TED novel fold AF-A0A2M7Q8B6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1975062","Candidatus Wolfebacteria bacterium CG_4_10_14_0_8_um_filter_37_11"]]},{"id":"NCBITaxon:1975071","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0ECG7-F1-model_v4_TED01","TED novel fold AF-A0A2H0ECG7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1975071","Candidatus Wolfebacteria bacterium CG18_big_fil_WC_8_21_14_2_50_39_7"]]},{"id":"NCBITaxon:1975072","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7TGC4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2M7TGC4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1975072","candidate division WWE3 bacterium CG_4_10_14_0_2_um_filter_41_14"]]},{"id":"NCBITaxon:1975078","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M8EJT3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M8EJT3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1975078","candidate division WWE3 bacterium CG_4_9_14_0_2_um_filter_48_10"]]},{"id":"NCBITaxon:1975099","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7Q5K1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2M7Q5K1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1975099","Candidatus Yonathbacteria bacterium CG_4_10_14_0_8_um_filter_43_17"]]},{"id":"NCBITaxon:1975523","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7XWD0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2M7XWD0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1975523","Fidelibacterota bacterium CG_4_9_14_3_um_filter_48_9"]]},{"id":"NCBITaxon:1975526","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0WBQ6-F1-model_v4_TED01","TED novel fold AF-A0A2H0WBQ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1975526","Bdellovibrio sp. CG10_big_fil_rev_8_21_14_0_10_47_8"]]},{"id":"NCBITaxon:1975530","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7NIZ0-F1-model_v4_TED01","TED novel fold AF-A0A2M7NIZ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1975530","Flexibacter sp. CG_4_10_14_3_um_filter_32_15"]]},{"id":"NCBITaxon:1975555","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2H9M1U6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H9M1U6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1975555","archaeon CG06_land_8_20_14_3_00_37_11"]]},{"id":"NCBITaxon:1975559","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2H9QXA8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H9QXA8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1975559","Euryarchaeota archaeon CG_4_9_14_3_um_filter_38_12"]]},{"id":"NCBITaxon:1977873","l":"Acinetobacter sp. ANC 3813","na":1,"nb":1,"a":[["TED%3AAF-A0A241W2X8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A241W2X8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1977873","Acinetobacter sp. ANC 3813"]]},{"id":"NCBITaxon:1977879","l":"Acinetobacter sp. ANC 4169","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y3CTW4-F1-model_v4_TED01","TED novel fold AF-A0A1Y3CTW4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1977879","Acinetobacter sp. ANC 4169"]]},{"id":"NCBITaxon:1978124","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2G1NW85-F1-model_v4_TED01","TED novel fold AF-A0A2G1NW85-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1978124","Methanosarcinales archaeon ex4572_44"]]},{"id":"NCBITaxon:1978230","l":"Caulobacteraceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q3SVZ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q3SVZ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1978230","Caulobacteraceae bacterium"]]},{"id":"NCBITaxon:1979207","l":"Parvularcula sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A357LEX5-F1-model_v4_TED01","TED novel fold AF-A0A357LEX5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1979207","Parvularcula sp."]]},{"id":"NCBITaxon:1979269","l":"Rhodovarius crocodyli","na":1,"nb":1,"a":[["TED%3AAF-A0A437M387-F1-model_v4_TED02","TED novel fold AF-A0A437M387-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1979269","Rhodovarius crocodyli"]]},{"id":"NCBITaxon:1979401","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2E9FXM2-F1-model_v4_TED01","TED novel fold AF-A0A2E9FXM2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1979401","Thalassovita sp."]]},{"id":"NCBITaxon:1979955","l":"Eudoraea sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y1VLE0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y1VLE0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1979955","Eudoraea sp."]]},{"id":"NCBITaxon:1979961","l":"Wenzhouxiangella sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A5Q4GWL5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Q4GWL5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1979961","Wenzhouxiangella sp."]]},{"id":"NCBITaxon:1979962","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2D7XCF2-F1-model_v4_TED02","TED novel fold AF-A0A2D7XCF2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1979962","Pusillimonas sp."]]},{"id":"NCBITaxon:1980981","l":"Thermofilum sp. NZ13","na":1,"nb":1,"a":[["TED%3AAF-A0A2J4G700-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J4G700-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1980981","Thermofilum sp. NZ13"]]},{"id":"NCBITaxon:198107","l":"Azoarcus sp. CIB","na":1,"nb":1,"a":[["TED%3AAF-A0A0K1J426-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0K1J426-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A198107","Azoarcus sp. CIB"]]},{"id":"NCBITaxon:1981099","l":"Niveispirillum lacus","na":1,"nb":1,"a":[["TED%3AAF-A0A255YSY8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A255YSY8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1981099","Niveispirillum lacus"]]},{"id":"NCBITaxon:1981173","l":"Rhizobium sp. NXC14","na":1,"nb":1,"a":[["TED%3AAF-A0A1W6PXC9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W6PXC9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1981173","Rhizobium sp. NXC14"]]},{"id":"NCBITaxon:198119","l":"Paenibacillus barcinonensis","na":1,"nb":1,"a":[["Pfam%3APF06452","Carbohydrate family 9 binding domain-like"]],"b":[["NCBITaxon%3A198119","Paenibacillus barcinonensis"]]},{"id":"NCBITaxon:1982044","l":"Zhengella mangrovi","na":1,"nb":1,"a":[["TED%3AAF-A0A2G1QL83-F1-model_v4_TED03","TED novel fold AF-A0A2G1QL83-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1982044","Zhengella mangrovi"]]},{"id":"NCBITaxon:1982322","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2A2QPA7-F1-model_v4_TED01","TED novel fold AF-A0A2A2QPA7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1982322","Opitutia bacterium Tous-C5TDCM"]]},{"id":"NCBITaxon:1982323","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2A2RC65-F1-model_v4_TED03","TED novel fold AF-A0A2A2RC65-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1982323","Opitutia bacterium Tous-C8FEB"]]},{"id":"NCBITaxon:1982326","l":"Spartobacteria bacterium AMD-G5","na":1,"nb":1,"a":[["TED%3AAF-A0A2A2XYR8-F1-model_v4_TED02","TED novel fold AF-A0A2A2XYR8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1982326","Spartobacteria bacterium AMD-G5"]]},{"id":"NCBITaxon:1982328","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2A2Y7L6-F1-model_v4_TED01","TED novel fold AF-A0A2A2Y7L6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1982328","Verrucomicrobiia bacterium AMD-G2"]]},{"id":"NCBITaxon:1982333","l":"Verrucomicrobia bacterium Tous-C9LFEB","na":1,"nb":1,"a":[["TED%3AAF-A0A2A2R1H1-F1-model_v4_TED02","TED novel fold AF-A0A2A2R1H1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1982333","Verrucomicrobia bacterium Tous-C9LFEB"]]},{"id":"NCBITaxon:1982626","l":"Faecalibacillus intestinalis","na":1,"nb":1,"a":[["TED%3AAF-A0A7I8DY50-F1-model_v4_TED01","TED novel fold AF-A0A7I8DY50-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1982626","Faecalibacillus intestinalis"]]},{"id":"NCBITaxon:1983721","l":"Metabacillus lacus","na":1,"nb":1,"a":[["TED%3AAF-A0A7X2IYG1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7X2IYG1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1983721","Metabacillus lacus"]]},{"id":"NCBITaxon:198480","l":"Psychrobacter fozii","na":1,"nb":1,"a":[["TED%3AAF-A0A2V4UPN2-F1-model_v4_TED02","TED novel fold AF-A0A2V4UPN2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A198480","Psychrobacter fozii"]]},{"id":"NCBITaxon:1985169","l":"Hydrogenophaga sp. IBVHS1","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y2QT13-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y2QT13-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1985169","Hydrogenophaga sp. IBVHS1"]]},{"id":"NCBITaxon:198620","l":"Pseudomonas koreensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1G7ALV2-F1-model_v4_TED02","TED novel fold AF-A0A1G7ALV2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A198620","Pseudomonas koreensis"]]},{"id":"NCBITaxon:1986256","l":"OM182 bacterium MED-G28","na":1,"nb":1,"a":[["TED%3AAF-A0A2A5WFQ8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2A5WFQ8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1986256","OM182 bacterium MED-G28"]]},{"id":"NCBITaxon:1986264","l":"Bacteroidetes bacterium MED-G13","na":1,"nb":1,"a":[["TED%3AAF-A0A2A5XDS1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A5XDS1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986264","Bacteroidetes bacterium MED-G13"]]},{"id":"NCBITaxon:1986603","l":"Alteromonas sp. TMED35","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z9X2W2-F1-model_v4_TED01","TED novel fold AF-A0A1Z9X2W2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986603","Alteromonas sp. TMED35"]]},{"id":"NCBITaxon:1986614","l":"Rhodopirellula sp. TMED11","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z8MMH4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1Z8MMH4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1986614","Rhodopirellula sp. TMED11"]]},{"id":"NCBITaxon:1986638","l":"Candidatus Endolissoclinum sp. TMED37","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z8T4S0-F1-model_v4_TED02","TED novel fold AF-A0A1Z8T4S0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1986638","Candidatus Endolissoclinum sp. TMED37"]]},{"id":"NCBITaxon:1986639","l":"Candidatus Puniceispirillum sp. TMED52","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z8UUH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z8UUH3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986639","Candidatus Puniceispirillum sp. TMED52"]]},{"id":"NCBITaxon:1986642","l":"Alphaproteobacteria bacterium TMED62","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z8VSQ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z8VSQ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986642","Alphaproteobacteria bacterium TMED62"]]},{"id":"NCBITaxon:1986654","l":"bacterium TMED181","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z9KS85-F1-model_v4_TED02","TED novel fold AF-A0A1Z9KS85-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1986654","bacterium TMED181"]]},{"id":"NCBITaxon:1986665","l":"Rhodothermaceae bacterium TMED105","na":1,"nb":1,"a":[["TED%3AAF-A0A424HU99-F1-model_v4_TED01","TED novel fold AF-A0A424HU99-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986665","Rhodothermaceae bacterium TMED105"]]},{"id":"NCBITaxon:1986690","l":"Euryarchaeota archaeon TMED215","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z9NHI6-F1-model_v4_TED01","TED novel fold AF-A0A1Z9NHI6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986690","Euryarchaeota archaeon TMED215"]]},{"id":"NCBITaxon:1986720","l":"Crocinitomicaceae bacterium TMED114","na":1,"nb":1,"a":[["TED%3AAF-A0A3R7U5F4-F1-model_v4_TED02","TED novel fold AF-A0A3R7U5F4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1986720","Crocinitomicaceae bacterium TMED114"]]},{"id":"NCBITaxon:1986728","l":"Crocinitomicaceae bacterium TMED45","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z8S7L6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z8S7L6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986728","Crocinitomicaceae bacterium TMED45"]]},{"id":"NCBITaxon:1986732","l":"Gammaproteobacteria bacterium TMED104","na":1,"nb":1,"a":[["TED%3AAF-A0A3R7SUP8-F1-model_v4_TED05","TED novel fold AF-A0A3R7SUP8-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1986732","Gammaproteobacteria bacterium TMED104"]]},{"id":"NCBITaxon:1986741","l":"Gammaproteobacteria bacterium TMED182","na":1,"nb":1,"a":[["TED%3AAF-A0A424NLN9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A424NLN9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986741","Gammaproteobacteria bacterium TMED182"]]},{"id":"NCBITaxon:1986754","l":"Gammaproteobacteria bacterium TMED257","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z9RPQ5-F1-model_v4_TED01","TED novel fold AF-A0A1Z9RPQ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986754","Gammaproteobacteria bacterium TMED257"]]},{"id":"NCBITaxon:1986763","l":"Gammaproteobacteria bacterium TMED50","na":1,"nb":1,"a":[["TED%3AAF-A0A424LB35-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A424LB35-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986763","Gammaproteobacteria bacterium TMED50"]]},{"id":"NCBITaxon:1986767","l":"Gammaproteobacteria bacterium TMED78","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z8X4N1-F1-model_v4_TED02","TED novel fold AF-A0A1Z8X4N1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1986767","Gammaproteobacteria bacterium TMED78"]]},{"id":"NCBITaxon:1986771","l":"Gammaproteobacteria bacterium TMED95","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z9AQ58-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1Z9AQ58-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1986771","Gammaproteobacteria bacterium TMED95"]]},{"id":"NCBITaxon:1986772","l":"Cellvibrionales bacterium TMED122","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z9DQ10-F1-model_v4_TED01","TED novel fold AF-A0A1Z9DQ10-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986772","Cellvibrionales bacterium TMED122"]]},{"id":"NCBITaxon:1986779","l":"bacterium TMED198","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z9M4M7-F1-model_v4_TED02","TED novel fold AF-A0A1Z9M4M7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1986779","bacterium TMED198"]]},{"id":"NCBITaxon:1986791","l":"Verrucomicrobia bacterium TMED44","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z8SMK6-F1-model_v4_TED02","TED novel fold AF-A0A1Z8SMK6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1986791","Verrucomicrobia bacterium TMED44"]]},{"id":"NCBITaxon:1986792","l":"Verrucomicrobia bacterium TMED56","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z8U0I2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1Z8U0I2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1986792","Verrucomicrobia bacterium TMED56"]]},{"id":"NCBITaxon:1986793","l":"Verrucomicrobia bacterium TMED60","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z8VC00-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z8VC00-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986793","Verrucomicrobia bacterium TMED60"]]},{"id":"NCBITaxon:1986810","l":"Candidatus Pelagibacter sp. TMED202","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z9MMV8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z9MMV8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986810","Candidatus Pelagibacter sp. TMED202"]]},{"id":"NCBITaxon:1986818","l":"Pelagibacteraceae bacterium TMED247","na":1,"nb":1,"a":[["TED%3AAF-A0A424JIC6-F1-model_v4_TED02","TED novel fold AF-A0A424JIC6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1986818","Pelagibacteraceae bacterium TMED247"]]},{"id":"NCBITaxon:1986831","l":"Phycisphaeraceae bacterium TMED231","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z9QAB1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Z9QAB1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1986831","Phycisphaeraceae bacterium TMED231"]]},{"id":"NCBITaxon:1986836","l":"Planctomycetaceae bacterium TMED241","na":1,"nb":1,"a":[["TED%3AAF-A0A3R7R3C3-F1-model_v4_TED01","TED novel fold AF-A0A3R7R3C3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986836","Planctomycetaceae bacterium TMED241"]]},{"id":"NCBITaxon:1986837","l":"Planctomycetes bacterium TMED75","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z8YM18-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Z8YM18-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1986837","Planctomycetes bacterium TMED75"]]},{"id":"NCBITaxon:1986838","l":"Flavobacteriaceae bacterium TMED184","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z9K5V7-F1-model_v4_TED02","TED novel fold AF-A0A1Z9K5V7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1986838","Flavobacteriaceae bacterium TMED184"]]},{"id":"NCBITaxon:1986839","l":"Planctomycetia bacterium TMED53","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z8SV58-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Z8SV58-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1986839","Planctomycetia bacterium TMED53"]]},{"id":"NCBITaxon:1986867","l":"Rickettsiales bacterium TMED131","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z9F225-F1-model_v4_TED01","TED novel fold AF-A0A1Z9F225-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986867","Rickettsiales bacterium TMED131"]]},{"id":"NCBITaxon:1987493","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2T9WY00-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T9WY00-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1987493","Vulcanisaeta sp. SCGC AB-777_J10"]]},{"id":"NCBITaxon:1987723","l":"Cellvibrio sp. PSBB006","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y0FT02-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y0FT02-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1987723","Cellvibrio sp. PSBB006"]]},{"id":"NCBITaxon:2003551","l":"Cellulomonas sp. PSBB021","na":1,"nb":1,"a":[["TED%3AAF-A0A222XC97-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A222XC97-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2003551","Cellulomonas sp. PSBB021"]]},{"id":"NCBITaxon:200379","l":"Lentzea flaviverrucosa","na":1,"nb":1,"a":[["TED%3AAF-A0A1H9XTL0-F1-model_v4_TED01","TED novel fold AF-A0A1H9XTL0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A200379","Lentzea flaviverrucosa"]]},{"id":"NCBITaxon:2004468","l":"Armatimonadetes bacterium Uphvl-Ar2","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y0H937-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y0H937-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2004468","Armatimonadetes bacterium Uphvl-Ar2"]]},{"id":"NCBITaxon:2004800","l":"Luteitalea sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A843SUD8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843SUD8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2004800","Luteitalea sp."]]},{"id":"NCBITaxon:2004993","l":"Nitrospira sp. UW-LDO-01","na":1,"nb":1,"a":[["TED%3AAF-A0A256WTA4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A256WTA4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2004993","Nitrospira sp. UW-LDO-01"]]},{"id":"NCBITaxon:2005462","l":"Calothrix sp. NIES-3974","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z4NQR0-F1-model_v4_TED01","TED novel fold AF-A0A1Z4NQR0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2005462","Calothrix sp. NIES-3974"]]},{"id":"NCBITaxon:2005464","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z4PR78-F1-model_v4_TED01","TED novel fold AF-A0A1Z4PR78-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2005464","Kalymmatonema gypsitolerans NIES-4073"]]},{"id":"NCBITaxon:2005467","l":"Nostoc commune NIES-4072","na":1,"nb":1,"a":[["TED%3AAF-A0A2R5G6A0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2R5G6A0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2005467","Nostoc commune NIES-4072"]]},{"id":"NCBITaxon:2005469","l":"Calothrix sp. NIES-4071","na":1,"nb":1,"a":[["TED%3AAF-A0A2H2XIK6-F1-model_v4_TED02","TED novel fold AF-A0A2H2XIK6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2005469","Calothrix sp. NIES-4071"]]},{"id":"NCBITaxon:2005713","l":"bacterium BMS3Abin05","na":1,"nb":1,"a":[["TED%3AAF-A0A2H6ETN6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H6ETN6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2005713","bacterium BMS3Abin05"]]},{"id":"NCBITaxon:2005716","l":"bacterium BMS3Abin08","na":1,"nb":1,"a":[["TED%3AAF-A0A2H6FHE4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H6FHE4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2005716","bacterium BMS3Abin08"]]},{"id":"NCBITaxon:2007299","l":"Marine Group II euryarchaeote MED-G38","na":1,"nb":1,"a":[["TED%3AAF-A0A2A5VGT3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A5VGT3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2007299","Marine Group II euryarchaeote MED-G38"]]},{"id":"NCBITaxon:2009329","l":"Sagittula sp. P11","na":1,"nb":1,"a":[["TED%3AAF-A0A2K8W7C5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2K8W7C5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2009329","Sagittula sp. P11"]]},{"id":"NCBITaxon:200989","l":"Alkalicoccus saliphilus","na":1,"nb":1,"a":[["TED%3AAF-A0A2T4U9U6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2T4U9U6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A200989","Alkalicoccus saliphilus"]]},{"id":"NCBITaxon:2010949","l":"Dictyoglomus sp. NZ13-RE01","na":1,"nb":1,"a":[["TED%3AAF-A0A2J6XSY7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J6XSY7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2010949","Dictyoglomus sp. NZ13-RE01"]]},{"id":"NCBITaxon:2010972","l":"Caulobacter rhizosphaerae","na":1,"nb":1,"a":[["TED%3AAF-A0A561NW71-F1-model_v4_TED02","TED novel fold AF-A0A561NW71-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2010972","Caulobacter rhizosphaerae"]]},{"id":"NCBITaxon:2011159","l":"Erythrobacter sp. KY5","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z4K0Q8-F1-model_v4_TED01","TED novel fold AF-A0A2Z4K0Q8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2011159","Erythrobacter sp. KY5"]]},{"id":"NCBITaxon:2012491","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A532TNF4-F1-model_v4_TED01","TED novel fold AF-A0A532TNF4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2012491","Promethearchaeota archaeon Loki_b32"]]},{"id":"NCBITaxon:2012493","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2U3CFI5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U3CFI5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2012493","Candidatus Heimdallarchaeota archaeon B3_Heim"]]},{"id":"NCBITaxon:2012521","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A256YJU3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A256YJU3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2012521","Desulfurococcales archaeon ex4484_58"]]},{"id":"NCBITaxon:2012528","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A256XI72-F1-model_v4_TED01","TED novel fold AF-A0A256XI72-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2012528","Thermofilum sp. ex4484_82"]]},{"id":"NCBITaxon:2012679","l":"Janthinobacterium sp. PC23-8","na":1,"nb":1,"a":[["TED%3AAF-A0A255HGE6-F1-model_v4_TED02","TED novel fold AF-A0A255HGE6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2012679","Janthinobacterium sp. PC23-8"]]},{"id":"NCBITaxon:2013086","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2S6SGC9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S6SGC9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013086","Alphaproteobacteria bacterium MarineAlpha5_Bin11"]]},{"id":"NCBITaxon:2013106","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2S6QD62-F1-model_v4_TED01","TED novel fold AF-A0A2S6QD62-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013106","Alphaproteobacteria bacterium MarineAlpha11_Bin1"]]},{"id":"NCBITaxon:2013647","l":"Actinobacteria bacterium HGW-Actinobacteria-2","na":1,"nb":1,"a":[["TED%3AAF-A0A2N3GG04-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3GG04-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013647","Actinobacteria bacterium HGW-Actinobacteria-2"]]},{"id":"NCBITaxon:2013648","l":"Candidatus Anoxymicrobium japonicum","na":1,"nb":1,"a":[["TED%3AAF-A0A2N3G2B2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N3G2B2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2013648","Candidatus Anoxymicrobium japonicum"]]},{"id":"NCBITaxon:2013651","l":"Actinobacteria bacterium HGW-Actinobacteria-6","na":1,"nb":1,"a":[["TED%3AAF-A0A2N3FKV3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3FKV3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013651","Actinobacteria bacterium HGW-Actinobacteria-6"]]},{"id":"NCBITaxon:2013652","l":"Actinobacteria bacterium HGW-Actinobacteria-7","na":1,"nb":1,"a":[["TED%3AAF-A0A2N3F6T3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N3F6T3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2013652","Actinobacteria bacterium HGW-Actinobacteria-7"]]},{"id":"NCBITaxon:2013661","l":"Alphaproteobacteria bacterium HGW-Alphaproteobacteria-15","na":1,"nb":1,"a":[["TED%3AAF-A0A2N3DK73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3DK73-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013661","Alphaproteobacteria bacterium HGW-Alphaproteobacteria-15"]]},{"id":"NCBITaxon:2013679","l":"Bacteroidetes bacterium HGW-Bacteroidetes-11","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2ZXZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N2ZXZ1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2013679","Bacteroidetes bacterium HGW-Bacteroidetes-11"]]},{"id":"NCBITaxon:2013681","l":"Bacteroidetes bacterium HGW-Bacteroidetes-13","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2ZMI9-F1-model_v4_TED02","TED novel fold AF-A0A2N2ZMI9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2013681","Bacteroidetes bacterium HGW-Bacteroidetes-13"]]},{"id":"NCBITaxon:2013695","l":"Bacteroidetes bacterium HGW-Bacteroidetes-5","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2WTH8-F1-model_v4_TED04","TED novel fold AF-A0A2N2WTH8-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2013695","Bacteroidetes bacterium HGW-Bacteroidetes-5"]]},{"id":"NCBITaxon:2013696","l":"Bacteroidetes bacterium HGW-Bacteroidetes-6","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2WEP0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N2WEP0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013696","Bacteroidetes bacterium HGW-Bacteroidetes-6"]]},{"id":"NCBITaxon:2013698","l":"Bacteroidetes bacterium HGW-Bacteroidetes-8","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2W6N7-F1-model_v4_TED02","TED novel fold AF-A0A2N2W6N7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2013698","Bacteroidetes bacterium HGW-Bacteroidetes-8"]]},{"id":"NCBITaxon:2013699","l":"Bacteroidetes bacterium HGW-Bacteroidetes-9","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2VUD7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N2VUD7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013699","Bacteroidetes bacterium HGW-Bacteroidetes-9"]]},{"id":"NCBITaxon:2013718","l":"Betaproteobacteria bacterium HGW-Betaproteobacteria-6","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2RFL1-F1-model_v4_TED03","TED novel fold AF-A0A2N2RFL1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2013718","Betaproteobacteria bacterium HGW-Betaproteobacteria-6"]]},{"id":"NCBITaxon:2013722","l":"candidate division BRC1 bacterium HGW-BRC1-1","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2PKH8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N2PKH8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013722","candidate division BRC1 bacterium HGW-BRC1-1"]]},{"id":"NCBITaxon:2013724","l":"Chloroflexi bacterium HGW-Chloroflexi-10","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2NZX0-F1-model_v4_TED01","TED novel fold AF-A0A2N2NZX0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013724","Chloroflexi bacterium HGW-Chloroflexi-10"]]},{"id":"NCBITaxon:2013726","l":"Chloroflexi bacterium HGW-Chloroflexi-3","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2NIQ4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N2NIQ4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2013726","Chloroflexi bacterium HGW-Chloroflexi-3"]]},{"id":"NCBITaxon:2013727","l":"Chloroflexi bacterium HGW-Chloroflexi-4","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2N060-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N2N060-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013727","Chloroflexi bacterium HGW-Chloroflexi-4"]]},{"id":"NCBITaxon:2013728","l":"Chloroflexi bacterium HGW-Chloroflexi-5","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2N7D4-F1-model_v4_TED01","TED novel fold AF-A0A2N2N7D4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013728","Chloroflexi bacterium HGW-Chloroflexi-5"]]},{"id":"NCBITaxon:2013731","l":"Chloroflexi bacterium HGW-Chloroflexi-8","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2LRF1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N2LRF1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2013731","Chloroflexi bacterium HGW-Chloroflexi-8"]]},{"id":"NCBITaxon:2013732","l":"Chloroflexi bacterium HGW-Chloroflexi-9","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2LH68-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N2LH68-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013732","Chloroflexi bacterium HGW-Chloroflexi-9"]]},{"id":"NCBITaxon:2013735","l":"Candidatus Cloacimonetes bacterium HGW-Cloacimonetes-3","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2KN82-F1-model_v4_TED03","TED novel fold AF-A0A2N2KN82-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2013735","Candidatus Cloacimonetes bacterium HGW-Cloacimonetes-3"]]},{"id":"NCBITaxon:2013739","l":"Deltaproteobacteria bacterium HGW-Deltaproteobacteria-12","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2KHT3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N2KHT3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013739","Deltaproteobacteria bacterium HGW-Deltaproteobacteria-12"]]},{"id":"NCBITaxon:2013740","l":"Deltaproteobacteria bacterium HGW-Deltaproteobacteria-13","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2J520-F1-model_v4_TED01","TED novel fold AF-A0A2N2J520-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013740","Deltaproteobacteria bacterium HGW-Deltaproteobacteria-13"]]},{"id":"NCBITaxon:2013742","l":"Deltaproteobacteria bacterium HGW-Deltaproteobacteria-15","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2K2M3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2N2K2M3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2013742","Deltaproteobacteria bacterium HGW-Deltaproteobacteria-15"]]},{"id":"NCBITaxon:2013744","l":"Deltaproteobacteria bacterium HGW-Deltaproteobacteria-17","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2IIR5-F1-model_v4_TED01","TED novel fold AF-A0A2N2IIR5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013744","Deltaproteobacteria bacterium HGW-Deltaproteobacteria-17"]]},{"id":"NCBITaxon:2013753","l":"Deltaproteobacteria bacterium HGW-Deltaproteobacteria-3","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2GNY6-F1-model_v4_TED01","TED novel fold AF-A0A2N2GNY6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013753","Deltaproteobacteria bacterium HGW-Deltaproteobacteria-3"]]},{"id":"NCBITaxon:2013771","l":"Firmicutes bacterium HGW-Firmicutes-10","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2DWX9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N2DWX9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013771","Firmicutes bacterium HGW-Firmicutes-10"]]},{"id":"NCBITaxon:2013795","l":"Gammaproteobacteria bacterium HGW-Gammaproteobacteria-13","na":1,"nb":1,"a":[["TED%3AAF-A0A2N1YQ90-F1-model_v4_TED01","TED novel fold AF-A0A2N1YQ90-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013795","Gammaproteobacteria bacterium HGW-Gammaproteobacteria-13"]]},{"id":"NCBITaxon:2013796","l":"Gammaproteobacteria bacterium HGW-Gammaproteobacteria-14","na":1,"nb":1,"a":[["TED%3AAF-A0A2N1YMF6-F1-model_v4_TED01","TED novel fold AF-A0A2N1YMF6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013796","Gammaproteobacteria bacterium HGW-Gammaproteobacteria-14"]]},{"id":"NCBITaxon:2013803","l":"Gammaproteobacteria bacterium HGW-Gammaproteobacteria-7","na":1,"nb":1,"a":[["TED%3AAF-A0A2N1XKF4-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2N1XKF4-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2013803","Gammaproteobacteria bacterium HGW-Gammaproteobacteria-7"]]},{"id":"NCBITaxon:2013807","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2N1W5L2-F1-model_v4_TED02","TED novel fold AF-A0A2N1W5L2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2013807","Candidatus Goldiibacteriota bacterium HGW-Goldbacteria-1"]]},{"id":"NCBITaxon:2013809","l":"Ignavibacteriae bacterium HGW-Ignavibacteriae-2","na":1,"nb":1,"a":[["TED%3AAF-A0A2N1VYC8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N1VYC8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2013809","Ignavibacteriae bacterium HGW-Ignavibacteriae-2"]]},{"id":"NCBITaxon:2013810","l":"Ignavibacteriae bacterium HGW-Ignavibacteriae-3","na":1,"nb":1,"a":[["TED%3AAF-A0A2N1VGV0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N1VGV0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2013810","Ignavibacteriae bacterium HGW-Ignavibacteriae-3"]]},{"id":"NCBITaxon:2013827","l":"Planctomycetes bacterium HGW-Planctomycetes-1","na":1,"nb":1,"a":[["TED%3AAF-A0A2N1UBU3-F1-model_v4_TED03","TED novel fold AF-A0A2N1UBU3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2013827","Planctomycetes bacterium HGW-Planctomycetes-1"]]},{"id":"NCBITaxon:2013832","l":"Spirochaetae bacterium HGW-Spirochaetae-1","na":1,"nb":1,"a":[["TED%3AAF-A0A2N1TKF0-F1-model_v4_TED01","TED novel fold AF-A0A2N1TKF0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013832","Spirochaetae bacterium HGW-Spirochaetae-1"]]},{"id":"NCBITaxon:2013840","l":"Spirochaetae bacterium HGW-Spirochaetae-8","na":1,"nb":1,"a":[["TED%3AAF-A0A2N1RH66-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N1RH66-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013840","Spirochaetae bacterium HGW-Spirochaetae-8"]]},{"id":"NCBITaxon:2013852","l":"Thermoplasmata archaeon HGW-Thermoplasmata-1","na":1,"nb":1,"a":[["TED%3AAF-A0A2I0N8I4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I0N8I4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013852","Thermoplasmata archaeon HGW-Thermoplasmata-1"]]},{"id":"NCBITaxon:2014292","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2G9YDK1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G9YDK1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2014292","bacterium (Candidatus Ratteibacteria) CG23_combo_of_CG06-09_8_20_14_all_48_7"]]},{"id":"NCBITaxon:2014297","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7TQL4-F1-model_v4_TED01","TED novel fold AF-A0A2M7TQL4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2014297","bacterium (Candidatus Torokbacteria) CG_4_10_14_0_2_um_filter_35_8"]]},{"id":"NCBITaxon:2014305","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7DT76-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M7DT76-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2014305","Elusimicrobia bacterium CG02_land_8_20_14_3_00_37_13"]]},{"id":"NCBITaxon:2014309","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0ZAE8-F1-model_v4_TED02","TED novel fold AF-A0A2H0ZAE8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2014309","Elusimicrobia bacterium CG08_land_8_20_14_0_20_51_18"]]},{"id":"NCBITaxon:2014312","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0DIE1-F1-model_v4_TED01","TED novel fold AF-A0A2H0DIE1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2014312","Elusimicrobia bacterium CG22_combo_CG10-13_8_21_14_all_63_91"]]},{"id":"NCBITaxon:2014530","l":"Nostoc sp. 'Peltigera membranacea cyanobiont' 213","na":1,"nb":1,"a":[["TED%3AAF-A0A235IN49-F1-model_v4_TED01","TED novel fold AF-A0A235IN49-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2014530","Nostoc sp. 'Peltigera membranacea cyanobiont' 213"]]},{"id":"NCBITaxon:2014542","l":"Alcanivorax sp. N3-2A","na":1,"nb":1,"a":[["TED%3AAF-A0A220SU57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A220SU57-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2014542","Alcanivorax sp. N3-2A"]]},{"id":"NCBITaxon:2014804","l":"Lewinellaceae bacterium SD302","na":1,"nb":1,"a":[["TED%3AAF-A0A2C6CIY4-F1-model_v4_TED03","TED novel fold AF-A0A2C6CIY4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2014804","Lewinellaceae bacterium SD302"]]},{"id":"NCBITaxon:2014871","l":"Tengunoibacter tsumagoiensis","na":1,"nb":1,"a":[["TED%3AAF-A0A402A5G4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A402A5G4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2014871","Tengunoibacter tsumagoiensis"]]},{"id":"NCBITaxon:2014873","l":"Dictyobacter alpinus","na":1,"nb":1,"a":[["TED%3AAF-A0A402B519-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A402B519-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2014873","Dictyobacter alpinus"]]},{"id":"NCBITaxon:2015348","l":"Burkholderia aenigmatica","na":1,"nb":1,"a":[["TED%3AAF-A0A6J5JM31-F1-model_v4_TED01","TED novel fold AF-A0A6J5JM31-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2015348","Burkholderia aenigmatica"]]},{"id":"NCBITaxon:2015567","l":"Burkholderiales bacterium PBB5","na":1,"nb":1,"a":[["TED%3AAF-A0A257JDH8-F1-model_v4_TED01","TED novel fold AF-A0A257JDH8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2015567","Burkholderiales bacterium PBB5"]]},{"id":"NCBITaxon:2015568","l":"Burkholderiales bacterium PBB6","na":1,"nb":1,"a":[["TED%3AAF-A0A257CAT0-F1-model_v4_TED01","TED novel fold AF-A0A257CAT0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2015568","Burkholderiales bacterium PBB6"]]},{"id":"NCBITaxon:2015569","l":"Alphaproteobacteria bacterium PA1","na":1,"nb":1,"a":[["TED%3AAF-A0A257HS32-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A257HS32-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2015569","Alphaproteobacteria bacterium PA1"]]},{"id":"NCBITaxon:2015574","l":"Chitinophagaceae bacterium BSSC1","na":1,"nb":1,"a":[["TED%3AAF-A0A257HZ02-F1-model_v4_TED02","TED novel fold AF-A0A257HZ02-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2015574","Chitinophagaceae bacterium BSSC1"]]},{"id":"NCBITaxon:2015575","l":"Verrucomicrobiales bacterium VVV1","na":1,"nb":1,"a":[["TED%3AAF-A0A257LZM7-F1-model_v4_TED01","TED novel fold AF-A0A257LZM7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2015575","Verrucomicrobiales bacterium VVV1"]]},{"id":"NCBITaxon:2015578","l":"Rhodobacteraceae bacterium PARR1","na":1,"nb":1,"a":[["TED%3AAF-A0A257EYZ9-F1-model_v4_TED01","TED novel fold AF-A0A257EYZ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2015578","Rhodobacteraceae bacterium PARR1"]]},{"id":"NCBITaxon:2015582","l":"Bacteroidetes bacterium B1(2017)","na":1,"nb":1,"a":[["TED%3AAF-A0A257LBM7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A257LBM7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2015582","Bacteroidetes bacterium B1(2017)"]]},{"id":"NCBITaxon:2015906","l":"Sulfurovum sp. UBA12169","na":1,"nb":1,"a":[["TED%3AAF-A0A2D3WJY5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D3WJY5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2015906","Sulfurovum sp. UBA12169"]]},{"id":"NCBITaxon:2017","l":"Streptoalloteichus hindustanus","na":1,"nb":1,"a":[["Pfam%3APF19581","Glyoxalase superfamily protein"]],"b":[["NCBITaxon%3A2017","Streptoalloteichus hindustanus"]]},{"id":"NCBITaxon:2017133","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A554JA82-F1-model_v4_TED01","TED novel fold AF-A0A554JA82-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2017133","Candidatus Doudnabacteria bacterium Gr01-1014_77"]]},{"id":"NCBITaxon:2017175","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A554KWI0-F1-model_v4_TED01","TED novel fold AF-A0A554KWI0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2017175","Parcubacteria group bacterium Gr01-1014_13"]]},{"id":"NCBITaxon:2017176","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A554KV16-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A554KV16-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2017176","Parcubacteria group bacterium Gr01-1014_17"]]},{"id":"NCBITaxon:2017178","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A554KRN6-F1-model_v4_TED01","TED novel fold AF-A0A554KRN6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2017178","Parcubacteria group bacterium Gr01-1014_19"]]},{"id":"NCBITaxon:2017179","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A554KPX1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A554KPX1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2017179","Parcubacteria group bacterium Gr01-1014_20"]]},{"id":"NCBITaxon:2017193","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A554JJ04-F1-model_v4_TED01","TED novel fold AF-A0A554JJ04-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2017193","Parcubacteria group bacterium Gr01-1014_72"]]},{"id":"NCBITaxon:2017194","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A554JF58-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A554JF58-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2017194","Parcubacteria group bacterium Gr01-1014_73"]]},{"id":"NCBITaxon:2017210","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A554KXD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A554KXD6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2017210","Microgenomates group bacterium Gr01-1014_16"]]},{"id":"NCBITaxon:2017595","l":"Sphingobium sp. D43FB","na":1,"nb":1,"a":[["TED%3AAF-A0A2A3MTG8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2A3MTG8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2017595","Sphingobium sp. D43FB"]]},{"id":"NCBITaxon:2017977","l":"Candidatus Frackibacter sp. WG12","na":1,"nb":1,"a":[["TED%3AAF-A0A1H7Z976-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H7Z976-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2017977","Candidatus Frackibacter sp. WG12"]]},{"id":"NCBITaxon:2018066","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2A7UMH0-F1-model_v4_TED01","TED novel fold AF-A0A2A7UMH0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2018066","Nocardia sp. FDAARGOS_372"]]},{"id":"NCBITaxon:2018083","l":"Gelidibacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A6P1DFQ6-F1-model_v4_TED02","TED novel fold AF-A0A6P1DFQ6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2018083","Gelidibacter sp."]]},{"id":"NCBITaxon:201975","l":"Planifilum fimeticola","na":1,"nb":1,"a":[["TED%3AAF-A0A2T0LA62-F1-model_v4_TED02","TED novel fold AF-A0A2T0LA62-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A201975","Planifilum fimeticola"]]},{"id":"NCBITaxon:2020130","l":"Arthrobacter sp. 7749","na":1,"nb":1,"a":[["TED%3AAF-A0A221Q5E5-F1-model_v4_TED01","TED novel fold AF-A0A221Q5E5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2020130","Arthrobacter sp. 7749"]]},{"id":"NCBITaxon:2020875","l":"Methyloprofundus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7R6W8I7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7R6W8I7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2020875","Methyloprofundus sp."]]},{"id":"NCBITaxon:2020902","l":"Ponticaulis sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2D7KCV6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D7KCV6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2020902","Ponticaulis sp."]]},{"id":"NCBITaxon:2020965","l":"Bifidobacterium imperatoris","na":1,"nb":1,"a":[["TED%3AAF-A0A2N5IT75-F1-model_v4_TED01","TED novel fold AF-A0A2N5IT75-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2020965","Bifidobacterium imperatoris"]]},{"id":"NCBITaxon:2021359","l":"Bifidobacteriaceae bacterium NR020","na":1,"nb":1,"a":[["TED%3AAF-A0A3E2CM29-F1-model_v4_TED02","TED novel fold AF-A0A3E2CM29-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2021359","Bifidobacteriaceae bacterium NR020"]]},{"id":"NCBITaxon:2021368","l":"Alcaligenaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7Z0N1X4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Z0N1X4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2021368","Alcaligenaceae bacterium"]]},{"id":"NCBITaxon:2021369","l":"Streptomycetaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y6E5G3-F1-model_v4_TED02","TED novel fold AF-A0A7Y6E5G3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2021369","Streptomycetaceae bacterium"]]},{"id":"NCBITaxon:2021379","l":"Xanthobacteraceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A6I1JZP1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I1JZP1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2021379","Xanthobacteraceae bacterium"]]},{"id":"NCBITaxon:2021380","l":"Propionibacteriaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7W0Y047-F1-model_v4_TED01","TED novel fold AF-A0A7W0Y047-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2021380","Propionibacteriaceae bacterium"]]},{"id":"NCBITaxon:2021862","l":"Labrenzia sp. VG12","na":1,"nb":1,"a":[["TED%3AAF-A0A222F3S5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A222F3S5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2021862","Labrenzia sp. VG12"]]},{"id":"NCBITaxon:2022438","l":"Mongoliibacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A6I7MVY3-F1-model_v4_TED03","TED novel fold AF-A0A6I7MVY3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2022438","Mongoliibacter sp."]]},{"id":"NCBITaxon:2022503","l":"Rhodococcus sp. 02-925g","na":1,"nb":1,"a":[["TED%3AAF-A0A260PY08-F1-model_v4_TED01","TED novel fold AF-A0A260PY08-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2022503","Rhodococcus sp. 02-925g"]]},{"id":"NCBITaxon:2022508","l":"Rhodococcus sp. 06-235-1A","na":1,"nb":1,"a":[["TED%3AAF-A0A260BTG1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A260BTG1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2022508","Rhodococcus sp. 06-235-1A"]]},{"id":"NCBITaxon:2022510","l":"Rhodococcus sp. 06-469-3-2","na":1,"nb":1,"a":[["TED%3AAF-A0A259YZX4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A259YZX4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2022510","Rhodococcus sp. 06-469-3-2"]]},{"id":"NCBITaxon:2022549","l":"Paenibacillus sp. 7516","na":1,"nb":1,"a":[["TED%3AAF-A0A268SAJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A268SAJ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2022549","Paenibacillus sp. 7516"]]},{"id":"NCBITaxon:2023130","l":"Rhodopirellula sp. MGV","na":1,"nb":1,"a":[["TED%3AAF-A0A255R619-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A255R619-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2023130","Rhodopirellula sp. MGV"]]},{"id":"NCBITaxon:2023140","l":"Rhodococcus sp. 15-649-2-2","na":1,"nb":1,"a":[["TED%3AAF-A0A260QPE4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A260QPE4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2023140","Rhodococcus sp. 15-649-2-2"]]},{"id":"NCBITaxon:2023142","l":"Rhodococcus sp. 15-2388-1-1a","na":1,"nb":1,"a":[["TED%3AAF-A0A260RNP9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A260RNP9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2023142","Rhodococcus sp. 15-2388-1-1a"]]},{"id":"NCBITaxon:2023177","l":"Leptospira hartskeerlii","na":1,"nb":1,"a":[["TED%3AAF-A0A2M9XDB6-F1-model_v4_TED05","TED novel fold AF-A0A2M9XDB6-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2023177","Leptospira hartskeerlii"]]},{"id":"NCBITaxon:2023184","l":"Leptospira barantonii","na":1,"nb":1,"a":[["TED%3AAF-A0A2M9Z0J0-F1-model_v4_TED01","TED novel fold AF-A0A2M9Z0J0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2023184","Leptospira barantonii"]]},{"id":"NCBITaxon:2023191","l":"Leptospira perolatii","na":1,"nb":1,"a":[["TED%3AAF-A0A2M9ZJK9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M9ZJK9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2023191","Leptospira perolatii"]]},{"id":"NCBITaxon:2023261","l":"Paracoccus hibiscisoli","na":1,"nb":1,"a":[["TED%3AAF-A0A4U0QR11-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U0QR11-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2023261","Paracoccus hibiscisoli"]]},{"id":"NCBITaxon:2024223","l":"Prevotella sp. P3-122","na":1,"nb":1,"a":[["TED%3AAF-A0A255T1P7-F1-model_v4_TED02","TED novel fold AF-A0A255T1P7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2024223","Prevotella sp. P3-122"]]},{"id":"NCBITaxon:2024228","l":"Prevotella sp. P4-51","na":1,"nb":1,"a":[["TED%3AAF-A0A255UBE8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A255UBE8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024228","Prevotella sp. P4-51"]]},{"id":"NCBITaxon:2024580","l":"Plantactinospora sp. KBS50","na":1,"nb":1,"a":[["TED%3AAF-A0A248YTM1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A248YTM1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024580","Plantactinospora sp. KBS50"]]},{"id":"NCBITaxon:2024823","l":"Altibacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2D9N3K7-F1-model_v4_TED02","TED novel fold AF-A0A2D9N3K7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2024823","Altibacter sp."]]},{"id":"NCBITaxon:2024825","l":"Bermanella sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2D4S3X4-F1-model_v4_TED01","TED novel fold AF-A0A2D4S3X4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024825","Bermanella sp."]]},{"id":"NCBITaxon:2024832","l":"Geminicoccus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2E1V8X3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E1V8X3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2024832","Geminicoccus sp."]]},{"id":"NCBITaxon:2024834","l":"Halioglobus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2E0YYR1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0YYR1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024834","Halioglobus sp."]]},{"id":"NCBITaxon:2024835","l":"Hirschia sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2E4QUE4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4QUE4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024835","Hirschia sp."]]},{"id":"NCBITaxon:2024856","l":"Roseibacillus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2E3N9V4-F1-model_v4_TED01","TED novel fold AF-A0A2E3N9V4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024856","Roseibacillus sp."]]},{"id":"NCBITaxon:2024857","l":"Rubinisphaera sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2E9VTV9-F1-model_v4_TED02","TED novel fold AF-A0A2E9VTV9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2024857","Rubinisphaera sp."]]},{"id":"NCBITaxon:2024860","l":"Spongiibacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2D7WH13-F1-model_v4_TED03","TED novel fold AF-A0A2D7WH13-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2024860","Spongiibacter sp."]]},{"id":"NCBITaxon:2024869","l":"Cyanobium sp. ARS6","na":1,"nb":1,"a":[["TED%3AAF-A0A2D6FHG9-F1-model_v4_TED01","TED novel fold AF-A0A2D6FHG9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024869","Cyanobium sp. ARS6"]]},{"id":"NCBITaxon:2024871","l":"Cyanobium sp. MED843","na":1,"nb":1,"a":[["TED%3AAF-A0A2E1IRI3-F1-model_v4_TED01","TED novel fold AF-A0A2E1IRI3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024871","Cyanobium sp. MED843"]]},{"id":"NCBITaxon:2024963","l":"Caldimicrobium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7C2K5W8-F1-model_v4_TED01","TED novel fold AF-A0A7C2K5W8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024963","Caldimicrobium sp."]]},{"id":"NCBITaxon:2025307","l":"Sulfuriferula sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y4S8R3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4S8R3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2025307","Sulfuriferula sp."]]},{"id":"NCBITaxon:2025310","l":"Larkinella knui","na":1,"nb":1,"a":[["TED%3AAF-A0A3P1CJC3-F1-model_v4_TED02","TED novel fold AF-A0A3P1CJC3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2025310","Larkinella knui"]]},{"id":"NCBITaxon:2025312","l":"Larkinella rosea","na":1,"nb":1,"a":[["TED%3AAF-A0A3P1BTP9-F1-model_v4_TED04","TED novel fold AF-A0A3P1BTP9-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2025312","Larkinella rosea"]]},{"id":"NCBITaxon:2025808","l":"Vibrio qinghaiensis","na":1,"nb":1,"a":[["TED%3AAF-A0A223N3A8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A223N3A8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2025808","Vibrio qinghaiensis"]]},{"id":"NCBITaxon:2025950","l":"Pseudoalteromonas sp. NBT06-2","na":1,"nb":1,"a":[["TED%3AAF-A0A269PHA2-F1-model_v4_TED01","TED novel fold AF-A0A269PHA2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2025950","Pseudoalteromonas sp. NBT06-2"]]},{"id":"NCBITaxon:2025994","l":"Coniella lustricola","na":1,"nb":1,"a":[["TED%3AAF-A0A2T3AMG3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2T3AMG3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2025994","Coniella lustricola"]]},{"id":"NCBITaxon:2026089","l":"Paenibacillus sp. XY044","na":1,"nb":1,"a":[["TED%3AAF-A0A259TJY4-F1-model_v4_TED01","TED novel fold AF-A0A259TJY4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026089","Paenibacillus sp. XY044"]]},{"id":"NCBITaxon:2026093","l":"Bifidobacteriaceae bacterium NR016","na":1,"nb":1,"a":[["TED%3AAF-A0A3A1XZ64-F1-model_v4_TED03","TED novel fold AF-A0A3A1XZ64-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2026093","Bifidobacteriaceae bacterium NR016"]]},{"id":"NCBITaxon:2026099","l":"Bifidobacteriaceae bacterium WP012","na":1,"nb":1,"a":[["TED%3AAF-A0A3A1X063-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A1X063-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026099","Bifidobacteriaceae bacterium WP012"]]},{"id":"NCBITaxon:2026721","l":"Candidatus Thioglobus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A368C7V5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A368C7V5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026721","Candidatus Thioglobus sp."]]},{"id":"NCBITaxon:2026727","l":"Coxiellaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7D5S2U3-F1-model_v4_TED01","TED novel fold AF-A0A7D5S2U3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026727","Coxiellaceae bacterium"]]},{"id":"NCBITaxon:2026729","l":"Cytophagaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q3NU34-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q3NU34-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026729","Cytophagaceae bacterium"]]},{"id":"NCBITaxon:2026730","l":"Cytophagia bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y6XPG9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y6XPG9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026730","Cytophagia bacterium"]]},{"id":"NCBITaxon:2026737","l":"Ectothiorhodospiraceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7V1D5I9-F1-model_v4_TED02","TED novel fold AF-A0A7V1D5I9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026737","Ectothiorhodospiraceae bacterium"]]},{"id":"NCBITaxon:2026751","l":"Kangiellaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A850KZ63-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A850KZ63-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026751","Kangiellaceae bacterium"]]},{"id":"NCBITaxon:2026766","l":"Nevskiales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A2E9ZTD0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E9ZTD0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026766","Nevskiales bacterium"]]},{"id":"NCBITaxon:2026793","l":"Spongiibacteraceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A2E7ITB8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E7ITB8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026793","Spongiibacteraceae bacterium"]]},{"id":"NCBITaxon:2027857","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A385BUD3-F1-model_v4_TED01","TED novel fold AF-A0A385BUD3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2027857","Mariniflexile rhizosphaerae"]]},{"id":"NCBITaxon:2027860","l":"Mucilaginibacter rubeus","na":1,"nb":1,"a":[["TED%3AAF-A0A364WTV7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A364WTV7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2027860","Mucilaginibacter rubeus"]]},{"id":"NCBITaxon:2028282","l":"Lachnoclostridium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A352NZQ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A352NZQ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2028282","Lachnoclostridium sp."]]},{"id":"NCBITaxon:2029110","l":"Staphylococcus sp. UMB0328","na":1,"nb":1,"a":[["TED%3AAF-A0A2J6P1M1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2J6P1M1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2029110","Staphylococcus sp. UMB0328"]]},{"id":"NCBITaxon:2029166","l":"Stenotrophobium rhamnosiphilum","na":1,"nb":1,"a":[["TED%3AAF-A0A2T5MBE1-F1-model_v4_TED02","TED novel fold AF-A0A2T5MBE1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2029166","Stenotrophobium rhamnosiphilum"]]},{"id":"NCBITaxon:2029678","l":"Pseudoalteromonas sp. HM-SA03","na":1,"nb":1,"a":[["TED%3AAF-A0A2A2UTB2-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A2A2UTB2-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A2029678","Pseudoalteromonas sp. HM-SA03"]]},{"id":"NCBITaxon:2029980","l":"Candidatus Gastranaerophilus sp. (ex Termes propinquus)","na":1,"nb":1,"a":[["TED%3AAF-A0A2L2X4Y5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L2X4Y5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2029980","Candidatus Gastranaerophilus sp. (ex Termes propinquus)"]]},{"id":"NCBITaxon:2029982","l":"BD1-7 clade bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A5S9PLP5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5S9PLP5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2029982","BD1-7 clade bacterium"]]},{"id":"NCBITaxon:2030815","l":"Marinosulfonomonas sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2G2B7K9-F1-model_v4_TED01","TED novel fold AF-A0A2G2B7K9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2030815","Marinosulfonomonas sp."]]},{"id":"NCBITaxon:2030816","l":"Methylophilaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A3B9L643-F1-model_v4_TED02","TED novel fold AF-A0A3B9L643-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2030816","Methylophilaceae bacterium"]]},{"id":"NCBITaxon:2030825","l":"Thalassobium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2G2Q3F1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G2Q3F1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2030825","Thalassobium sp."]]},{"id":"NCBITaxon:2030882","l":"Thiotrichaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A836TYR7-F1-model_v4_TED01","TED novel fold AF-A0A836TYR7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2030882","Thiotrichaceae bacterium"]]},{"id":"NCBITaxon:2030921","l":"OCS116 cluster bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A2A4YV15-F1-model_v4_TED01","TED novel fold AF-A0A2A4YV15-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2030921","OCS116 cluster bacterium"]]},{"id":"NCBITaxon:2032627","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2A2G842-F1-model_v4_TED02","TED novel fold AF-A0A2A2G842-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2032627","Fodinibius salipaludis"]]},{"id":"NCBITaxon:203267","l":"","na":1,"nb":1,"a":[["TED%3AAF-Q83GV8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q83GV8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A203267","Tropheryma whipplei str. Twist"]]},{"id":"NCBITaxon:2032688","l":"Candidatus Methanoperedens sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A6A2G2H6-F1-model_v4_TED02","TED novel fold AF-A0A6A2G2H6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2032688","Candidatus Methanoperedens sp."]]},{"id":"NCBITaxon:2033405","l":"Prevotella sp. MGM1","na":1,"nb":1,"a":[["TED%3AAF-A0A2L2WSX7-F1-model_v4_TED01","TED novel fold AF-A0A2L2WSX7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2033405","Prevotella sp. MGM1"]]},{"id":"NCBITaxon:2033491","l":"Bacillus sp. AFS018417","na":1,"nb":1,"a":[["TED%3AAF-A0A2A8SBU7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A8SBU7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2033491","Bacillus sp. AFS018417"]]},{"id":"NCBITaxon:2033507","l":"Bacillus sp. AFS055030","na":1,"nb":1,"a":[["TED%3AAF-A0A2B8TU32-F1-model_v4_TED02","TED novel fold AF-A0A2B8TU32-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2033507","Bacillus sp. AFS055030"]]},{"id":"NCBITaxon:2033588","l":"[Chlorobium] sp. 445","na":1,"nb":1,"a":[["TED%3AAF-A0A2G9SVA7-F1-model_v4_TED01","TED novel fold AF-A0A2G9SVA7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2033588","[Chlorobium] sp. 445"]]},{"id":"NCBITaxon:2035204","l":"Acidovorax sp. 59","na":1,"nb":1,"a":[["TED%3AAF-A0A2G6S5C0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G6S5C0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2035204","Acidovorax sp. 59"]]},{"id":"NCBITaxon:2035214","l":"Chryseobacterium sp. 7","na":1,"nb":1,"a":[["TED%3AAF-A0A497V379-F1-model_v4_TED03","TED novel fold AF-A0A497V379-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2035214","Chryseobacterium sp. 7"]]},{"id":"NCBITaxon:2035247","l":"Micromonospora sp. CNZ309","na":1,"nb":1,"a":[["TED%3AAF-A0A2N3YXM7-F1-model_v4_TED01","TED novel fold AF-A0A2N3YXM7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2035247","Micromonospora sp. CNZ309"]]},{"id":"NCBITaxon:2035402","l":"bacterium HR07","na":1,"nb":1,"a":[["TED%3AAF-A0A2H5VJ00-F1-model_v4_TED01","TED novel fold AF-A0A2H5VJ00-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2035402","bacterium HR07"]]},{"id":"NCBITaxon:2035406","l":"bacterium HR11","na":1,"nb":1,"a":[["TED%3AAF-A0A2H5W7K3-F1-model_v4_TED01","TED novel fold AF-A0A2H5W7K3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2035406","bacterium HR11"]]},{"id":"NCBITaxon:2035410","l":"bacterium HR15","na":1,"nb":1,"a":[["TED%3AAF-A0A2H5WW51-F1-model_v4_TED02","TED novel fold AF-A0A2H5WW51-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2035410","bacterium HR15"]]},{"id":"NCBITaxon:2035411","l":"bacterium HR16","na":1,"nb":1,"a":[["TED%3AAF-A0A2H5X254-F1-model_v4_TED02","TED novel fold AF-A0A2H5X254-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2035411","bacterium HR16"]]},{"id":"NCBITaxon:2035414","l":"bacterium HR19","na":1,"nb":1,"a":[["TED%3AAF-A0A2H5XRY4-F1-model_v4_TED01","TED novel fold AF-A0A2H5XRY4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2035414","bacterium HR19"]]},{"id":"NCBITaxon:2035420","l":"bacterium HR25","na":1,"nb":1,"a":[["TED%3AAF-A0A2H5YNM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H5YNM3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2035420","bacterium HR25"]]},{"id":"NCBITaxon:2035423","l":"bacterium HR28","na":1,"nb":1,"a":[["TED%3AAF-A0A2H5Z688-F1-model_v4_TED01","TED novel fold AF-A0A2H5Z688-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2035423","bacterium HR28"]]},{"id":"NCBITaxon:2035424","l":"bacterium HR29","na":1,"nb":1,"a":[["TED%3AAF-A0A2H5ZFH6-F1-model_v4_TED01","TED novel fold AF-A0A2H5ZFH6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2035424","bacterium HR29"]]},{"id":"NCBITaxon:2035425","l":"bacterium HR30","na":1,"nb":1,"a":[["TED%3AAF-A0A2H5ZKE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H5ZKE6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2035425","bacterium HR30"]]},{"id":"NCBITaxon:2035428","l":"bacterium HR33","na":1,"nb":1,"a":[["TED%3AAF-A0A2H6A5T7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H6A5T7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2035428","bacterium HR33"]]},{"id":"NCBITaxon:2035431","l":"bacterium HR36","na":1,"nb":1,"a":[["TED%3AAF-A0A2H6AAW5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2H6AAW5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2035431","bacterium HR36"]]},{"id":"NCBITaxon:2035432","l":"bacterium HR37","na":1,"nb":1,"a":[["TED%3AAF-A0A2H6AM83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H6AM83-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2035432","bacterium HR37"]]},{"id":"NCBITaxon:2037900","l":"Mesorhizobium sanjuanii","na":1,"nb":1,"a":[["TED%3AAF-A0A2A6FDQ4-F1-model_v4_TED01","TED novel fold AF-A0A2A6FDQ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2037900","Mesorhizobium sanjuanii"]]},{"id":"NCBITaxon:2038111","l":"Ochrobactrum sp. 30A/1000/2015","na":1,"nb":1,"a":[["TED%3AAF-A0A855GK25-F1-model_v4_TED02","TED novel fold AF-A0A855GK25-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2038111","Ochrobactrum sp. 30A/1000/2015"]]},{"id":"NCBITaxon:2038116","l":"Nostoc flagelliforme CCNUN1","na":1,"nb":1,"a":[["TED%3AAF-A0A2K8SJD5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2K8SJD5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2038116","Nostoc flagelliforme CCNUN1"]]},{"id":"NCBITaxon:2038371","l":"Imperialibacter sp. EC-SDR9","na":1,"nb":1,"a":[["TED%3AAF-A0A5E7YW92-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5E7YW92-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2038371","Imperialibacter sp. EC-SDR9"]]},{"id":"NCBITaxon:2038396","l":"Erythrobacter sp. EC-HK427","na":1,"nb":1,"a":[["TED%3AAF-A0A5E7Z5E0-F1-model_v4_TED02","TED novel fold AF-A0A5E7Z5E0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2038396","Erythrobacter sp. EC-HK427"]]},{"id":"NCBITaxon:2039167","l":"Sulfobacillus sp. hq2","na":1,"nb":1,"a":[["TED%3AAF-A0A2S3QD68-F1-model_v4_TED01","TED novel fold AF-A0A2S3QD68-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2039167","Sulfobacillus sp. hq2"]]},{"id":"NCBITaxon:2039283","l":"endosymbiont GvMRE of Glomus versiforme","na":1,"nb":1,"a":[["TED%3AAF-A0A397FSL0-F1-model_v4_TED01","TED novel fold AF-A0A397FSL0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2039283","endosymbiont GvMRE of Glomus versiforme"]]},{"id":"NCBITaxon:2039284","l":"Bacillus fungorum","na":1,"nb":1,"a":[["TED%3AAF-A0A2G6QK95-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G6QK95-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2039284","Bacillus fungorum"]]},{"id":"NCBITaxon:2039337","l":"Campylobacter sp. 113","na":1,"nb":1,"a":[["TED%3AAF-A0A2A4L7S7-F1-model_v4_TED02","TED novel fold AF-A0A2A4L7S7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2039337","Campylobacter sp. 113"]]},{"id":"NCBITaxon:2039874","l":"Ophiocordyceps camponoti-saundersi (nom. inval.)","na":1,"nb":1,"a":[["TED%3AAF-A0A369H6B4-F1-model_v4_TED01","TED novel fold AF-A0A369H6B4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2039874","Ophiocordyceps camponoti-saundersi (nom. inval.)"]]},{"id":"NCBITaxon:2039875","l":"Ophiocordyceps camponoti-leonardi (nom. inval.)","na":1,"nb":1,"a":[["TED%3AAF-A0A369GP28-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A369GP28-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2039875","Ophiocordyceps camponoti-leonardi (nom. inval.)"]]},{"id":"NCBITaxon:2040649","l":"Helicobacter sp. MIT 14-3879","na":1,"nb":1,"a":[["TED%3AAF-A0A3D8IJY0-F1-model_v4_TED01","TED novel fold AF-A0A3D8IJY0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2040649","Helicobacter sp. MIT 14-3879"]]},{"id":"NCBITaxon:2040653","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2A5MAG2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A5MAG2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2040653","Campylobacter sp. BCW_8712"]]},{"id":"NCBITaxon:2041346","l":"Chryseomicrobium excrementi","na":1,"nb":1,"a":[["TED%3AAF-A0A2M9EYZ0-F1-model_v4_TED02","TED novel fold AF-A0A2M9EYZ0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2041346","Chryseomicrobium excrementi"]]},{"id":"NCBITaxon:2041385","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2W4B1G5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W4B1G5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2041385","Arminella tumorigenes"]]},{"id":"NCBITaxon:2042683","l":"Olsenella sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A356G3I0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A356G3I0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2042683","Olsenella sp."]]},{"id":"NCBITaxon:2043161","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2N9L7E4-F1-model_v4_TED02","TED novel fold AF-A0A2N9L7E4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2043161","Candidatus Sulfuritelmatomonas gaucii"]]},{"id":"NCBITaxon:2043162","l":"Acidobacteriia bacterium SbA2","na":1,"nb":1,"a":[["TED%3AAF-A0A2N9MFY0-F1-model_v4_TED03","TED novel fold AF-A0A2N9MFY0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2043162","Acidobacteriia bacterium SbA2"]]},{"id":"NCBITaxon:2043164","l":"Candidatus Sulfopaludibacter sp. SbA3","na":1,"nb":1,"a":[["TED%3AAF-A0A2N9MMJ4-F1-model_v4_TED02","TED novel fold AF-A0A2N9MMJ4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2043164","Candidatus Sulfopaludibacter sp. SbA3"]]},{"id":"NCBITaxon:2043170","l":"Paremcibacter congregatus","na":1,"nb":1,"a":[["TED%3AAF-A0A2G4YR47-F1-model_v4_TED04","TED novel fold AF-A0A2G4YR47-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2043170","Paremcibacter congregatus"]]},{"id":"NCBITaxon:2044587","l":"Schaedlerella arabinosiphila","na":1,"nb":1,"a":[["TED%3AAF-A0A3R8L015-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R8L015-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2044587","Schaedlerella arabinosiphila"]]},{"id":"NCBITaxon:2044591","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2G6LTX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G6LTX2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2044591","Candidatus Fermentibacterota bacterium"]]},{"id":"NCBITaxon:2044729","l":"Candidatus Nephrothrix sp. EaCA","na":1,"nb":1,"a":[["TED%3AAF-A0A2B8A3B7-F1-model_v4_TED02","TED novel fold AF-A0A2B8A3B7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2044729","Candidatus Nephrothrix sp. EaCA"]]},{"id":"NCBITaxon:2045207","l":"Salipaludibacillus keqinensis","na":1,"nb":1,"a":[["TED%3AAF-A0A323TPP0-F1-model_v4_TED01","TED novel fold AF-A0A323TPP0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2045207","Salipaludibacillus keqinensis"]]},{"id":"NCBITaxon:2045210","l":"Pollutimonas subterranea","na":1,"nb":1,"a":[["TED%3AAF-A0A2N4U398-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2N4U398-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2045210","Pollutimonas subterranea"]]},{"id":"NCBITaxon:2045244","l":"Alteribacter lacisalsi","na":1,"nb":1,"a":[["TED%3AAF-A0A2W0H3Z1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W0H3Z1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2045244","Alteribacter lacisalsi"]]},{"id":"NCBITaxon:2045279","l":"Thermogemmatispora aurantia","na":1,"nb":1,"a":[["TED%3AAF-A0A5J4K5T4-F1-model_v4_TED01","TED novel fold AF-A0A5J4K5T4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2045279","Thermogemmatispora aurantia"]]},{"id":"NCBITaxon:2045280","l":"Thermogemmatispora argillosa","na":1,"nb":1,"a":[["TED%3AAF-A0A455T6B0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A455T6B0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2045280","Thermogemmatispora argillosa"]]},{"id":"NCBITaxon:2045438","l":"Bifidobacterium primatium","na":1,"nb":1,"a":[["TED%3AAF-A0A2M9H9T9-F1-model_v4_TED01","TED novel fold AF-A0A2M9H9T9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2045438","Bifidobacterium primatium"]]},{"id":"NCBITaxon:2047982","l":"Aquimarina algiphila","na":1,"nb":1,"a":[["TED%3AAF-A0A554VHH6-F1-model_v4_TED01","TED novel fold AF-A0A554VHH6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2047982","Aquimarina algiphila"]]},{"id":"NCBITaxon:2048264","l":"Sporosarcina sp. P10","na":1,"nb":1,"a":[["TED%3AAF-A0A2G5VZ33-F1-model_v4_TED02","TED novel fold AF-A0A2G5VZ33-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2048264","Sporosarcina sp. P10"]]},{"id":"NCBITaxon:2048283","l":"Thalassospira marina","na":1,"nb":1,"a":[["TED%3AAF-A0A2N3KSX3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3KSX3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2048283","Thalassospira marina"]]},{"id":"NCBITaxon:2048897","l":"Rhizobium sp. NXC24","na":1,"nb":1,"a":[["TED%3AAF-A0A2L0WEX0-F1-model_v4_TED02","TED novel fold AF-A0A2L0WEX0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2048897","Rhizobium sp. NXC24"]]},{"id":"NCBITaxon:204891","l":"Nocardia iowensis","na":1,"nb":1,"a":[["Pfam%3APF17837","4'-phosphopantetheinyl transferase N-terminal domain"]],"b":[["NCBITaxon%3A204891","Nocardia iowensis"]]},{"id":"NCBITaxon:2048971","l":"Hahellaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A2D8RI32-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D8RI32-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2048971","Hahellaceae bacterium"]]},{"id":"NCBITaxon:2049028","l":"Granulicatella sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A420YQP7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A420YQP7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2049028","Granulicatella sp."]]},{"id":"NCBITaxon:2049043","l":"Desulfovibrionaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A2V2FVR0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V2FVR0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2049043","Desulfovibrionaceae bacterium"]]},{"id":"NCBITaxon:2049047","l":"Prevotellaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A3D1KHR1-F1-model_v4_TED02","TED novel fold AF-A0A3D1KHR1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2049047","Prevotellaceae bacterium"]]},{"id":"NCBITaxon:2049432","l":"Chromatiaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7C7GTU1-F1-model_v4_TED02","TED novel fold AF-A0A7C7GTU1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2049432","Chromatiaceae bacterium"]]},{"id":"NCBITaxon:2052161","l":"Gallionella sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A849TGY6-F1-model_v4_TED01","TED novel fold AF-A0A849TGY6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052161","Gallionella sp."]]},{"id":"NCBITaxon:2052162","l":"Gallionellaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A5C9BKD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C9BKD6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052162","Gallionellaceae bacterium"]]},{"id":"NCBITaxon:2052183","l":"Spartobacteria bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A3B9LF62-F1-model_v4_TED02","TED novel fold AF-A0A3B9LF62-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2052183","Spartobacteria bacterium"]]},{"id":"NCBITaxon:2052315","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A849IWX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A849IWX4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052315","Candidatus Dormiibacterota bacterium"]]},{"id":"NCBITaxon:2052574","l":"Clostridium sp. CT7","na":1,"nb":1,"a":[["TED%3AAF-A0A2M8T781-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M8T781-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052574","Clostridium sp. CT7"]]},{"id":"NCBITaxon:2052832","l":"Methanofollis fontis","na":1,"nb":1,"a":[["TED%3AAF-A0A483CTM5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A483CTM5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052832","Methanofollis fontis"]]},{"id":"NCBITaxon:205332","l":"Agromyces albus","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q2L130-F1-model_v4_TED02","TED novel fold AF-A0A4Q2L130-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A205332","Agromyces albus"]]},{"id":"NCBITaxon:2053492","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A3D6DR04-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D6DR04-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053492","Accumulibacter sp."]]},{"id":"NCBITaxon:2053503","l":"Aquificaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7C7UV79-F1-model_v4_TED02","TED novel fold AF-A0A7C7UV79-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053503","Aquificaceae bacterium"]]},{"id":"NCBITaxon:2053509","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7T1AN42-F1-model_v4_TED02","TED novel fold AF-A0A7T1AN42-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053509","Candidatus Atribacteria bacterium"]]},{"id":"NCBITaxon:2053519","l":"Candidatus Beckwithbacteria bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7X9DC36-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7X9DC36-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053519","Candidatus Beckwithbacteria bacterium"]]},{"id":"NCBITaxon:2053526","l":"candidate division WWE3 bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7X9HHD0-F1-model_v4_TED02","TED novel fold AF-A0A7X9HHD0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053526","candidate division WWE3 bacterium"]]},{"id":"NCBITaxon:2053534","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A3D3F014-F1-model_v4_TED01","TED novel fold AF-A0A3D3F014-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053534","Cloacimonas sp. (SeqCode)"]]},{"id":"NCBITaxon:2053540","l":"Candidatus Collierbacteria bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A352JLT2-F1-model_v4_TED02","TED novel fold AF-A0A352JLT2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053540","Candidatus Collierbacteria bacterium"]]},{"id":"NCBITaxon:2053559","l":"Holosporales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A3D4YDA4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D4YDA4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053559","Holosporales bacterium"]]},{"id":"NCBITaxon:2053568","l":"Lautropia sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A660NSB6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A660NSB6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053568","Lautropia sp."]]},{"id":"NCBITaxon:2053573","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2W4I621-F1-model_v4_TED02","TED novel fold AF-A0A2W4I621-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053573","Candidatus Margulisiibacteriota bacterium"]]},{"id":"NCBITaxon:2053589","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A847W871-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A847W871-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053589","Minisyncoccota bacterium"]]},{"id":"NCBITaxon:2053605","l":"Richelia sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A3B9F8L2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B9F8L2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053605","Richelia sp."]]},{"id":"NCBITaxon:2053608","l":"Ruminiclostridium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A357AL72-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A357AL72-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053608","Ruminiclostridium sp."]]},{"id":"NCBITaxon:2053613","l":"Candidatus Shapirobacteria bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A420ZAT9-F1-model_v4_TED01","TED novel fold AF-A0A420ZAT9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053613","Candidatus Shapirobacteria bacterium"]]},{"id":"NCBITaxon:2053614","l":"Smithella sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A847ZAC5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A847ZAC5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2053614","Smithella sp."]]},{"id":"NCBITaxon:2053618","l":"Subdoligranulum sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A316SM40-F1-model_v4_TED01","TED novel fold AF-A0A316SM40-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053618","Subdoligranulum sp."]]},{"id":"NCBITaxon:2053622","l":"Sulfurospirillum sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A432SPG8-F1-model_v4_TED01","TED novel fold AF-A0A432SPG8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053622","Sulfurospirillum sp."]]},{"id":"NCBITaxon:2053632","l":"Tyzzerella sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A352UU01-F1-model_v4_TED01","TED novel fold AF-A0A352UU01-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053632","Tyzzerella sp."]]},{"id":"NCBITaxon:2053634","l":"Candidatus Uhrbacteria bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7C2PD08-F1-model_v4_TED01","TED novel fold AF-A0A7C2PD08-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053634","Candidatus Uhrbacteria bacterium"]]},{"id":"NCBITaxon:2053636","l":"Candidatus Veblenbacteria bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A353WER2-F1-model_v4_TED01","TED novel fold AF-A0A353WER2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053636","Candidatus Veblenbacteria bacterium"]]},{"id":"NCBITaxon:2053688","l":"Candidatus Peribacteria bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A847HPS2-F1-model_v4_TED01","TED novel fold AF-A0A847HPS2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053688","Candidatus Peribacteria bacterium"]]},{"id":"NCBITaxon:2053689","l":"Thermotogota bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A3D6DD65-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D6DD65-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053689","Thermotogota bacterium"]]},{"id":"NCBITaxon:2055137","l":"Caulobacter zeae","na":1,"nb":1,"a":[["TED%3AAF-A0A2N5DL77-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A2N5DL77-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2055137","Caulobacter zeae"]]},{"id":"NCBITaxon:2055770","l":"Cyanobacteria bacterium UBA11371","na":1,"nb":1,"a":[["TED%3AAF-A0A351LC38-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A351LC38-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2055770","Cyanobacteria bacterium UBA11371"]]},{"id":"NCBITaxon:2055781","l":"Cyanobacteria bacterium UBA11162","na":1,"nb":1,"a":[["TED%3AAF-A0A355DKP6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A355DKP6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2055781","Cyanobacteria bacterium UBA11162"]]},{"id":"NCBITaxon:2055789","l":"Cyanobacteria bacterium UBA11991","na":1,"nb":1,"a":[["TED%3AAF-A0A3D0SIN7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D0SIN7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2055789","Cyanobacteria bacterium UBA11991"]]},{"id":"NCBITaxon:2055790","l":"Cyanobacteria bacterium UBA8530","na":1,"nb":1,"a":[["TED%3AAF-A0A355UMI2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A355UMI2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2055790","Cyanobacteria bacterium UBA8530"]]},{"id":"NCBITaxon:2055793","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A355CGN5-F1-model_v4_TED01","TED novel fold AF-A0A355CGN5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2055793","Microcoleaceae cyanobacterium UBA10368"]]},{"id":"NCBITaxon:2055798","l":"Synechococcales bacterium UBA12195","na":1,"nb":1,"a":[["TED%3AAF-A0A3D5HXG3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D5HXG3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2055798","Synechococcales bacterium UBA12195"]]},{"id":"NCBITaxon:2055944","l":"Synechococcus sp. BS56D","na":1,"nb":1,"a":[["TED%3AAF-A0A4R0QZ59-F1-model_v4_TED06","TED novel fold AF-A0A4R0QZ59-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A2055944","Synechococcus sp. BS56D"]]},{"id":"NCBITaxon:2055947","l":"Corynebacterium heidelbergense","na":1,"nb":1,"a":[["TED%3AAF-A0A364V5T8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A364V5T8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2055947","Corynebacterium heidelbergense"]]},{"id":"NCBITaxon:2056840","l":"Stenotrophomonas sp. HMWF003","na":1,"nb":1,"a":[["TED%3AAF-A0A2R7QKN8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2R7QKN8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2056840","Stenotrophomonas sp. HMWF003"]]},{"id":"NCBITaxon:2056843","l":"Pseudomonas sp. HMWF006","na":1,"nb":1,"a":[["TED%3AAF-A0A2R7KA25-F1-model_v4_TED01","TED novel fold AF-A0A2R7KA25-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2056843","Pseudomonas sp. HMWF006"]]},{"id":"NCBITaxon:2056855","l":"Acidovorax sp. HMWF018","na":1,"nb":1,"a":[["TED%3AAF-A0A2R7NJV7-F1-model_v4_TED01","TED novel fold AF-A0A2R7NJV7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2056855","Acidovorax sp. HMWF018"]]},{"id":"NCBITaxon:2057025","l":"Spirosoma pollinicola","na":1,"nb":1,"a":[["TED%3AAF-A0A2K8YWY0-F1-model_v4_TED02","TED novel fold AF-A0A2K8YWY0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2057025","Spirosoma pollinicola"]]},{"id":"NCBITaxon:2057180","l":"Rahnella sp. AA","na":1,"nb":1,"a":[["TED%3AAF-A0A2N0VY06-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N0VY06-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2057180","Rahnella sp. AA"]]},{"id":"NCBITaxon:2058089","l":"Psychromonas sp. psych-6C06","na":1,"nb":1,"a":[["TED%3AAF-A0A2N0X161-F1-model_v4_TED03","TED novel fold AF-A0A2N0X161-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2058089","Psychromonas sp. psych-6C06"]]},{"id":"NCBITaxon:2058095","l":"Meiothermus sp. QL-1","na":1,"nb":1,"a":[["TED%3AAF-A0A370JWS2-F1-model_v4_TED02","TED novel fold AF-A0A370JWS2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2058095","Meiothermus sp. QL-1"]]},{"id":"NCBITaxon:2058213","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2S7K4V3-F1-model_v4_TED03","TED novel fold AF-A0A2S7K4V3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2058213","Hyphococcus luteus"]]},{"id":"NCBITaxon:2058214","l":"Rummeliibacillus sp. TYF005","na":1,"nb":1,"a":[["TED%3AAF-A0A3N5ZX25-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N5ZX25-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2058214","Rummeliibacillus sp. TYF005"]]},{"id":"NCBITaxon:2058325","l":"Psychrobacter sp. Sarcosine-3u-12","na":1,"nb":1,"a":[["TED%3AAF-A0A2N0ZU59-F1-model_v4_TED01","TED novel fold AF-A0A2N0ZU59-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2058325","Psychrobacter sp. Sarcosine-3u-12"]]},{"id":"NCBITaxon:2058390","l":"Silicimonas sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A849G7Z3-F1-model_v4_TED01","TED novel fold AF-A0A849G7Z3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2058390","Silicimonas sp."]]},{"id":"NCBITaxon:2058625","l":"Undibacterium sp. YM2","na":1,"nb":1,"a":[["TED%3AAF-A0A809QK39-F1-model_v4_TED02","TED novel fold AF-A0A809QK39-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2058625","Undibacterium sp. YM2"]]},{"id":"NCBITaxon:205918","l":"Pseudomonas syringae pv. syringae B728a","na":1,"nb":1,"a":[["Pfam%3APF15457","Type III T3SS secreted effector HopW1-1/HopPmaA"]],"b":[["NCBITaxon%3A205918","Pseudomonas syringae pv. syringae B728a"]]},{"id":"NCBITaxon:205922","l":"Pseudomonas fluorescens Pf0-1","na":1,"nb":1,"a":[["Pfam%3APF07927","HicA toxin of bacterial toxin-antitoxin,"]],"b":[["NCBITaxon%3A205922","Pseudomonas fluorescens Pf0-1"]]},{"id":"NCBITaxon:2059268","l":"Paenibacillus sp. GM2FR","na":1,"nb":1,"a":[["TED%3AAF-A0A2M9MKD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M9MKD6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2059268","Paenibacillus sp. GM2FR"]]},{"id":"NCBITaxon:2059302","l":"Pseudochryseolinea flava","na":1,"nb":1,"a":[["TED%3AAF-A0A364XWK5-F1-model_v4_TED01","TED novel fold AF-A0A364XWK5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2059302","Pseudochryseolinea flava"]]},{"id":"NCBITaxon:2059318","l":"Histoplasma mississippiense","na":1,"nb":1,"a":[["Pfam%3APF10153","rRNA-processing protein Efg1"]],"b":[["NCBITaxon%3A2059318","Histoplasma mississippiense"]]},{"id":"NCBITaxon:2059726","l":"Maribacter litoralis","na":1,"nb":1,"a":[["TED%3AAF-A0A653TP48-F1-model_v4_TED01","TED novel fold AF-A0A653TP48-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2059726","Maribacter litoralis"]]},{"id":"NCBITaxon:2060068","l":"Chimaeribacter coloradensis","na":1,"nb":1,"a":[["TED%3AAF-A0A2N5EBC2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N5EBC2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2060068","Chimaeribacter coloradensis"]]},{"id":"NCBITaxon:2060919","l":"Cyanobacteria bacterium UBA10660","na":1,"nb":1,"a":[["TED%3AAF-A0A349HXT9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A349HXT9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2060919","Cyanobacteria bacterium UBA10660"]]},{"id":"NCBITaxon:2060922","l":"Persephonella sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A432RZ01-F1-model_v4_TED01","TED novel fold AF-A0A432RZ01-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2060922","Persephonella sp."]]},{"id":"NCBITaxon:2064643","l":"Oxynema aestuarii AP17","na":1,"nb":1,"a":[["TED%3AAF-A0A6H1U0N3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6H1U0N3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2064643","Oxynema aestuarii AP17"]]},{"id":"NCBITaxon:206506","l":"Kerstersia gyiorum","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q7MWT5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Q7MWT5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A206506","Kerstersia gyiorum"]]},{"id":"NCBITaxon:2065820","l":"Hydrogenovibrio sp. SC-1","na":1,"nb":1,"a":[["TED%3AAF-A0A2I2A6S0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I2A6S0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2065820","Hydrogenovibrio sp. SC-1"]]},{"id":"NCBITaxon:2066022","l":"Burkholderia sp. WAC0059","na":1,"nb":1,"a":[["TED%3AAF-A0A2J6MTA7-F1-model_v4_TED02","TED novel fold AF-A0A2J6MTA7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2066022","Burkholderia sp. WAC0059"]]},{"id":"NCBITaxon:2066514","l":"Pseudoalteromonas sp. S1727","na":1,"nb":1,"a":[["TED%3AAF-A0A5S3RMS3-F1-model_v4_TED01","TED novel fold AF-A0A5S3RMS3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2066514","Pseudoalteromonas sp. S1727"]]},{"id":"NCBITaxon:206672","l":"","na":1,"nb":1,"a":[["Pfam%3APF05258","Dna[CI] antecedent, DciA"]],"b":[["NCBITaxon%3A206672","Bifidobacterium longum NCC2705"]]},{"id":"NCBITaxon:2067415","l":"Altererythrobacter sp. TH136","na":1,"nb":1,"a":[["TED%3AAF-A0A515LBQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A515LBQ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2067415","Altererythrobacter sp. TH136"]]},{"id":"NCBITaxon:2067454","l":"Emticicia sp. TH156","na":1,"nb":1,"a":[["TED%3AAF-A0A2N4X6Y8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N4X6Y8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2067454","Emticicia sp. TH156"]]},{"id":"NCBITaxon:2067553","l":"Halobacteriovorax sp. DA5","na":1,"nb":1,"a":[["TED%3AAF-A0A2S3QQ47-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S3QQ47-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2067553","Halobacteriovorax sp. DA5"]]},{"id":"NCBITaxon:2068624","l":"Zymomonas sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A519E950-F1-model_v4_TED02","TED novel fold AF-A0A519E950-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2068624","Zymomonas sp."]]},{"id":"NCBITaxon:2068625","l":"Candidatus Solibacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7C5AV84-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7C5AV84-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2068625","Candidatus Solibacter sp."]]},{"id":"NCBITaxon:2070510","l":"Arundinibacter roseus","na":1,"nb":1,"a":[["TED%3AAF-A0A4R4KBS1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R4KBS1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2070510","Arundinibacter roseus"]]},{"id":"NCBITaxon:2070537","l":"Commensalibacter melissae","na":1,"nb":1,"a":[["TED%3AAF-A0A318MV83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A318MV83-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2070537","Commensalibacter melissae"]]},{"id":"NCBITaxon:2070539","l":"Gammaproteobacteria bacterium ESL0073","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z3I9A8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2Z3I9A8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2070539","Gammaproteobacteria bacterium ESL0073"]]},{"id":"NCBITaxon:2070776","l":"Vibrio sp. F12","na":1,"nb":1,"a":[["TED%3AAF-A0A4U1WMF5-F1-model_v4_TED04","TED novel fold AF-A0A4U1WMF5-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2070776","Vibrio sp. F12"]]},{"id":"NCBITaxon:2072414","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A3S7KS92-F1-model_v4_TED01","TED novel fold AF-A0A3S7KS92-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2072414","Stenotrophomonas sp. ESTM1D_MKCIP4_1"]]},{"id":"NCBITaxon:2072847","l":"Adhaeribacter pallidiroseus","na":1,"nb":1,"a":[["TED%3AAF-A0A369QQQ0-F1-model_v4_TED01","TED novel fold AF-A0A369QQQ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2072847","Adhaeribacter pallidiroseus"]]},{"id":"NCBITaxon:2073169","l":"Chromobacterium alticapitis","na":1,"nb":1,"a":[["TED%3AAF-A0A2S5DB94-F1-model_v4_TED01","TED novel fold AF-A0A2S5DB94-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2073169","Chromobacterium alticapitis"]]},{"id":"NCBITaxon:2077091","l":"Flavipsychrobacter stenotrophus","na":1,"nb":1,"a":[["TED%3AAF-A0A2S7T2Z8-F1-model_v4_TED01","TED novel fold AF-A0A2S7T2Z8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2077091","Flavipsychrobacter stenotrophus"]]},{"id":"NCBITaxon:2077204","l":"Haloferax sp. Atlit-10N","na":1,"nb":1,"a":[["TED%3AAF-A0A371M5H9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A371M5H9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2077204","Haloferax sp. Atlit-10N"]]},{"id":"NCBITaxon:2077205","l":"Haloferax sp. Atlit-6N","na":1,"nb":1,"a":[["TED%3AAF-A0A371MXI1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A371MXI1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2077205","Haloferax sp. Atlit-6N"]]},{"id":"NCBITaxon:2078593","l":"Colletotrichum shisoi","na":1,"nb":1,"a":[["TED%3AAF-A0A5Q4BJG2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5Q4BJG2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2078593","Colletotrichum shisoi"]]},{"id":"NCBITaxon:2079792","l":"Mycetocola zhujimingii","na":1,"nb":1,"a":[["TED%3AAF-A0A2U1TCR4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2U1TCR4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2079792","Mycetocola zhujimingii"]]},{"id":"NCBITaxon:2080243","l":"Caldivirga sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7C2YMM7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C2YMM7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2080243","Caldivirga sp."]]},{"id":"NCBITaxon:2080452","l":"bacterium MnTg02","na":1,"nb":1,"a":[["TED%3AAF-A0A5J4E0H8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5J4E0H8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2080452","bacterium MnTg02"]]},{"id":"NCBITaxon:2080664","l":"Enterobacter cloacae complex sp. ECNIH14","na":1,"nb":1,"a":[["TED%3AAF-A0A855LWE8-F1-model_v4_TED01","TED novel fold AF-A0A855LWE8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2080664","Enterobacter cloacae complex sp. ECNIH14"]]},{"id":"NCBITaxon:2080747","l":"Streptomyces sp. Ru72","na":1,"nb":1,"a":[["TED%3AAF-A0A2S4XT49-F1-model_v4_TED02","TED novel fold AF-A0A2S4XT49-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2080747","Streptomyces sp. Ru72"]]},{"id":"NCBITaxon:2080755","l":"Tautonia sociabilis","na":1,"nb":1,"a":[["TED%3AAF-A0A432MKP2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A432MKP2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2080755","Tautonia sociabilis"]]},{"id":"NCBITaxon:2082193","l":"Clostridiaceae bacterium 14S0207","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z4W8W5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z4W8W5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2082193","Clostridiaceae bacterium 14S0207"]]},{"id":"NCBITaxon:2082949","l":"Microvirga sp. 17 mud 1-3","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z3IA84-F1-model_v4_TED02","TED novel fold AF-A0A2Z3IA84-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2082949","Microvirga sp. 17 mud 1-3"]]},{"id":"NCBITaxon:2083052","l":"Pseudomonas sp. SWI36","na":1,"nb":1,"a":[["TED%3AAF-A0A2L1ID03-F1-model_v4_TED04","TED novel fold AF-A0A2L1ID03-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2083052","Pseudomonas sp. SWI36"]]},{"id":"NCBITaxon:2086263","l":"Rhodobacteraceae bacterium WD3A24","na":1,"nb":1,"a":[["TED%3AAF-A0A2S8EVX9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S8EVX9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2086263","Rhodobacteraceae bacterium WD3A24"]]},{"id":"NCBITaxon:2088","l":"Anaeroplasma bactoclasticum","na":1,"nb":1,"a":[["TED%3AAF-A0A397QUQ0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A397QUQ0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2088","Anaeroplasma bactoclasticum"]]},{"id":"NCBITaxon:2093369","l":"Desulfurivibrio sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A3A6NT79-F1-model_v4_TED01","TED novel fold AF-A0A3A6NT79-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2093369","Desulfurivibrio sp."]]},{"id":"NCBITaxon:2093373","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7X9EJ53-F1-model_v4_TED01","TED novel fold AF-A0A7X9EJ53-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2093373","Candidatus Microgenomates bacterium"]]},{"id":"NCBITaxon:2093793","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7V1FQP9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7V1FQP9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2093793","Candidatus Nealsoniibacteriota bacterium"]]},{"id":"NCBITaxon:2093857","l":"Dysosmobacter welbionis","na":1,"nb":1,"a":[["TED%3AAF-A0A4D7ANP7-F1-model_v4_TED01","TED novel fold AF-A0A4D7ANP7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2093857","Dysosmobacter welbionis"]]},{"id":"NCBITaxon:2094022","l":"Micromonospora sp. MW-13","na":1,"nb":1,"a":[["TED%3AAF-A0A3E2YV82-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3E2YV82-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2094022","Micromonospora sp. MW-13"]]},{"id":"NCBITaxon:2094024","l":"Glaesserella australis","na":1,"nb":1,"a":[["TED%3AAF-A0A328C018-F1-model_v4_TED01","TED novel fold AF-A0A328C018-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2094024","Glaesserella australis"]]},{"id":"NCBITaxon:2094191","l":"Burkholderia sp. SRS-46","na":1,"nb":1,"a":[["TED%3AAF-A0A4V2WIF6-F1-model_v4_TED02","TED novel fold AF-A0A4V2WIF6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2094191","Burkholderia sp. SRS-46"]]},{"id":"NCBITaxon:2094193","l":"Limnohabitans sp. TS-CS-82","na":1,"nb":1,"a":[["TED%3AAF-A0A2S7JK38-F1-model_v4_TED01","TED novel fold AF-A0A2S7JK38-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2094193","Limnohabitans sp. TS-CS-82"]]},{"id":"NCBITaxon:2099400","l":"Solimicrobium silvestre","na":1,"nb":1,"a":[["TED%3AAF-A0A2S9H335-F1-model_v4_TED04","TED novel fold AF-A0A2S9H335-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2099400","Solimicrobium silvestre"]]},{"id":"NCBITaxon:2099583","l":"Streptomyces sp. ICC1","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z4VBQ9-F1-model_v4_TED02","TED novel fold AF-A0A2Z4VBQ9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2099583","Streptomyces sp. ICC1"]]},{"id":"NCBITaxon:2099665","l":"Ardenticatenia bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A3M1BQY4-F1-model_v4_TED02","TED novel fold AF-A0A3M1BQY4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2099665","Ardenticatenia bacterium"]]},{"id":"NCBITaxon:2099667","l":"Bradymonadales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A6I7PZX4-F1-model_v4_TED01","TED novel fold AF-A0A6I7PZX4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2099667","Bradymonadales bacterium"]]},{"id":"NCBITaxon:2099669","l":"candidate division WS1 bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A847M743-F1-model_v4_TED01","TED novel fold AF-A0A847M743-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2099669","candidate division WS1 bacterium"]]},{"id":"NCBITaxon:2099671","l":"Candidatus Handelsmanbacteria bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A836XCN0-F1-model_v4_TED02","TED novel fold AF-A0A836XCN0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2099671","Candidatus Handelsmanbacteria bacterium"]]},{"id":"NCBITaxon:2099675","l":"Cyclobacteriaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7D5RNH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7D5RNH3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2099675","Cyclobacteriaceae bacterium"]]},{"id":"NCBITaxon:2099692","l":"Mycobacterium sp. ITM-2017-0098","na":1,"nb":1,"a":[["TED%3AAF-A0A2S9F609-F1-model_v4_TED01","TED novel fold AF-A0A2S9F609-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2099692","Mycobacterium sp. ITM-2017-0098"]]},{"id":"NCBITaxon:2099694","l":"Mycobacterium sp. ITM-2016-00317","na":1,"nb":1,"a":[["TED%3AAF-A0A2S8N1M8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S8N1M8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2099694","Mycobacterium sp. ITM-2016-00317"]]},{"id":"NCBITaxon:2099695","l":"Mycobacterium sp. ITM-2016-00316","na":1,"nb":1,"a":[["TED%3AAF-A0A2S8LFS5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S8LFS5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2099695","Mycobacterium sp. ITM-2016-00316"]]},{"id":"NCBITaxon:2100161","l":"Desulfobacteraceae bacterium SEEP-SAG9","na":1,"nb":1,"a":[["TED%3AAF-A0A2S8K7A3-F1-model_v4_TED04","TED novel fold AF-A0A2S8K7A3-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2100161","Desulfobacteraceae bacterium SEEP-SAG9"]]},{"id":"NCBITaxon:2100725","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2U2XAU4-F1-model_v4_TED01","TED novel fold AF-A0A2U2XAU4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2100725","Brumimicrobium oceani"]]},{"id":"NCBITaxon:2107693","l":"Chlorogloea sp. CCALA 695","na":1,"nb":1,"a":[["TED%3AAF-A0A2T1EQ25-F1-model_v4_TED01","TED novel fold AF-A0A2T1EQ25-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2107693","Chlorogloea sp. CCALA 695"]]},{"id":"NCBITaxon:2108467","l":"Thermobacillus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A3E0R231-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3E0R231-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2108467","Thermobacillus sp."]]},{"id":"NCBITaxon:2109333","l":"Streptomyces dioscori","na":1,"nb":1,"a":[["TED%3AAF-A0A2P8PXQ3-F1-model_v4_TED01","TED novel fold AF-A0A2P8PXQ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2109333","Streptomyces dioscori"]]},{"id":"NCBITaxon:211165","l":"Chlorogloeopsis fritschii PCC 6912","na":1,"nb":1,"a":[["TED%3AAF-A0A433N4H9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A433N4H9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A211165","Chlorogloeopsis fritschii PCC 6912"]]},{"id":"NCBITaxon:2125990","l":"Pseudodesulfovibrio hydrargyri","na":1,"nb":1,"a":[["TED%3AAF-A0A1J5N6X0-F1-model_v4_TED02","TED novel fold AF-A0A1J5N6X0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2125990","Pseudodesulfovibrio hydrargyri"]]},{"id":"NCBITaxon:212602","l":"Erysiphe neolycopersici","na":1,"nb":1,"a":[["TED%3AAF-A0A420I879-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A420I879-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A212602","Erysiphe neolycopersici"]]},{"id":"NCBITaxon:2126343","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A451ACY0-F1-model_v4_TED01","TED novel fold AF-A0A451ACY0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2126343","Candidatus Kentrum sp. TUN"]]},{"id":"NCBITaxon:2126353","l":"Pedobacter yulinensis","na":1,"nb":1,"a":[["TED%3AAF-A0A2T3HK13-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T3HK13-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2126353","Pedobacter yulinensis"]]},{"id":"NCBITaxon:2126553","l":"Christiangramia fulva","na":1,"nb":1,"a":[["TED%3AAF-A0A2R3Z8P3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2R3Z8P3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2126553","Christiangramia fulva"]]},{"id":"NCBITaxon:212717","l":"Clostridium tetani E88","na":1,"nb":1,"a":[["Pfam%3APF08453","Peptidase family M9 N-terminal"]],"b":[["NCBITaxon%3A212717","Clostridium tetani E88"]]},{"id":"NCBITaxon:212767","l":"Mycobacterium sp. JS623","na":1,"nb":1,"a":[["TED%3AAF-L0J9K3-F1-model_v4_TED01","TED novel fold AF-L0J9K3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A212767","Mycobacterium sp. JS623"]]},{"id":"NCBITaxon:213224","l":"Geothermobacter ehrlichii","na":1,"nb":1,"a":[["TED%3AAF-A0A5D3WPY1-F1-model_v4_TED02","TED novel fold AF-A0A5D3WPY1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A213224","Geothermobacter ehrlichii"]]},{"id":"NCBITaxon:213248","l":"Mesonia algae","na":1,"nb":1,"a":[["TED%3AAF-A0A2W7IWM5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W7IWM5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A213248","Mesonia algae"]]},{"id":"NCBITaxon:2133","l":"Spiroplasma citri","na":1,"nb":1,"a":[["TED%3AAF-A0A6I7GSK0-F1-model_v4_TED04","TED novel fold AF-A0A6I7GSK0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2133","Spiroplasma citri"]]},{"id":"NCBITaxon:2133765","l":"Flavobacterium circumlabens","na":1,"nb":1,"a":[["TED%3AAF-A0A8B4Y0F6-F1-model_v4_TED01","TED novel fold AF-A0A8B4Y0F6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2133765","Flavobacterium circumlabens"]]},{"id":"NCBITaxon:2133947","l":"Bradyrhizobium sp. MOS002","na":1,"nb":1,"a":[["TED%3AAF-A0A2T2QB40-F1-model_v4_TED02","TED novel fold AF-A0A2T2QB40-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2133947","Bradyrhizobium sp. MOS002"]]},{"id":"NCBITaxon:2133950","l":"Fluviicola sp. XM-24bin1","na":1,"nb":1,"a":[["TED%3AAF-A0A316K2S0-F1-model_v4_TED01","TED novel fold AF-A0A316K2S0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2133950","Fluviicola sp. XM-24bin1"]]},{"id":"NCBITaxon:2133960","l":"Paraconexibacter algicola","na":1,"nb":1,"a":[["TED%3AAF-A0A2T4UGZ7-F1-model_v4_TED03","TED novel fold AF-A0A2T4UGZ7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2133960","Paraconexibacter algicola"]]},{"id":"NCBITaxon:2135462","l":"Chitinophaga sp. S165","na":1,"nb":1,"a":[["TED%3AAF-A0A317MMT4-F1-model_v4_TED02","TED novel fold AF-A0A317MMT4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2135462","Chitinophaga sp. S165"]]},{"id":"NCBITaxon:2135470","l":"Mucilaginibacter sp. OV119","na":1,"nb":1,"a":[["TED%3AAF-A0A318VA29-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A318VA29-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2135470","Mucilaginibacter sp. OV119"]]},{"id":"NCBITaxon:2135475","l":"Ensifer sp. AP48","na":1,"nb":1,"a":[["TED%3AAF-A0A2V4Z2D5-F1-model_v4_TED01","TED novel fold AF-A0A2V4Z2D5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2135475","Ensifer sp. AP48"]]},{"id":"NCBITaxon:2135584","l":"Pseudomonas sp. OV081","na":1,"nb":1,"a":[["TED%3AAF-A0A3D9WYP5-F1-model_v4_TED02","TED novel fold AF-A0A3D9WYP5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2135584","Pseudomonas sp. OV081"]]},{"id":"NCBITaxon:2135619","l":"Arenibacter sp. ARW7G5Y1","na":1,"nb":1,"a":[["TED%3AAF-A0A318IYY3-F1-model_v4_TED02","TED novel fold AF-A0A318IYY3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2135619","Arenibacter sp. ARW7G5Y1"]]},{"id":"NCBITaxon:2135627","l":"Flavobacterium sp. 123","na":1,"nb":1,"a":[["TED%3AAF-A0A495SFE8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A495SFE8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2135627","Flavobacterium sp. 123"]]},{"id":"NCBITaxon:2135631","l":"Janthinobacterium sp. 78","na":1,"nb":1,"a":[["TED%3AAF-A0A2U0T4V2-F1-model_v4_TED02","TED novel fold AF-A0A2U0T4V2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2135631","Janthinobacterium sp. 78"]]},{"id":"NCBITaxon:2135643","l":"Simplicispira sp. 125","na":1,"nb":1,"a":[["TED%3AAF-A0A2U1CAF0-F1-model_v4_TED01","TED novel fold AF-A0A2U1CAF0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2135643","Simplicispira sp. 125"]]},{"id":"NCBITaxon:2135677","l":"Nocardioides sp. CF204","na":1,"nb":1,"a":[["TED%3AAF-A0A2T5WBB4-F1-model_v4_TED02","TED novel fold AF-A0A2T5WBB4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2135677","Nocardioides sp. CF204"]]},{"id":"NCBITaxon:2135688","l":"Novosphingobium sp. GV013","na":1,"nb":1,"a":[["TED%3AAF-A0A4V3E3S6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4V3E3S6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2135688","Novosphingobium sp. GV013"]]},{"id":"NCBITaxon:2135721","l":"Pelomonas sp. BT06","na":1,"nb":1,"a":[["TED%3AAF-A0A397S1Z7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A397S1Z7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2135721","Pelomonas sp. BT06"]]},{"id":"NCBITaxon:2135723","l":"Promicromonospora sp. AC04","na":1,"nb":1,"a":[["TED%3AAF-A0A2T6LHY3-F1-model_v4_TED02","TED novel fold AF-A0A2T6LHY3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2135723","Promicromonospora sp. AC04"]]},{"id":"NCBITaxon:2135724","l":"Promicromonospora sp. CF082","na":1,"nb":1,"a":[["TED%3AAF-A0A4V2R0G5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4V2R0G5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2135724","Promicromonospora sp. CF082"]]},{"id":"NCBITaxon:2135746","l":"Mycobacterium sp. YR708","na":1,"nb":1,"a":[["TED%3AAF-A0A4R2UA23-F1-model_v4_TED01","TED novel fold AF-A0A4R2UA23-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2135746","Mycobacterium sp. YR708"]]},{"id":"NCBITaxon:2135765","l":"Cellvibrio sp. YR554","na":1,"nb":1,"a":[["TED%3AAF-A0A4R7BLG2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4R7BLG2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2135765","Cellvibrio sp. YR554"]]},{"id":"NCBITaxon:2135812","l":"Rhodobacteraceae bacterium PT6CLA","na":1,"nb":1,"a":[["TED%3AAF-A0A559Q8H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A559Q8H4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2135812","Rhodobacteraceae bacterium PT6CLA"]]},{"id":"NCBITaxon:2136401","l":"Streptomyces sp. YIM 121038","na":1,"nb":1,"a":[["TED%3AAF-A0A5B7V919-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B7V919-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2136401","Streptomyces sp. YIM 121038"]]},{"id":"NCBITaxon:2137198","l":"Marinobacter sp. B9-2","na":1,"nb":1,"a":[["TED%3AAF-A0A2T4DFM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T4DFM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2137198","Marinobacter sp. B9-2"]]},{"id":"NCBITaxon:2138300","l":"Nocardioides gansuensis","na":1,"nb":1,"a":[["TED%3AAF-A0A2T8F569-F1-model_v4_TED01","TED novel fold AF-A0A2T8F569-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2138300","Nocardioides gansuensis"]]},{"id":"NCBITaxon:2139","l":"Spiroplasma clarkii","na":1,"nb":1,"a":[["TED%3AAF-A0A2K8KLS2-F1-model_v4_TED02","TED novel fold AF-A0A2K8KLS2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2139","Spiroplasma clarkii"]]},{"id":"NCBITaxon:2153358","l":"Variovorax sp. KBW07","na":1,"nb":1,"a":[["TED%3AAF-A0A3N7D3F2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N7D3F2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2153358","Variovorax sp. KBW07"]]},{"id":"NCBITaxon:2153361","l":"Paucibacter sp. KBW04","na":1,"nb":1,"a":[["TED%3AAF-A0A3N7C9I4-F1-model_v4_TED02","TED novel fold AF-A0A3N7C9I4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2153361","Paucibacter sp. KBW04"]]},{"id":"NCBITaxon:2153364","l":"Pedobacter sp. KBW01","na":1,"nb":1,"a":[["TED%3AAF-A0A3N7CIX9-F1-model_v4_TED01","TED novel fold AF-A0A3N7CIX9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2153364","Pedobacter sp. KBW01"]]},{"id":"NCBITaxon:215590","l":"Brucella gallinifaecis","na":1,"nb":1,"a":[["TED%3AAF-A0A502BMS9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A502BMS9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A215590","Brucella gallinifaecis"]]},{"id":"NCBITaxon:215637","l":"Dimargaris cristalligena","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q0A1Q7-F1-model_v4_TED02","TED novel fold AF-A0A4Q0A1Q7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A215637","Dimargaris cristalligena"]]},{"id":"NCBITaxon:2161813","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z6UKL2-F1-model_v4_TED02","TED novel fold AF-A0A2Z6UKL2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2161813","Glaciecola sp. KUL10"]]},{"id":"NCBITaxon:2161826","l":"Chromobacterium sp. Panama","na":1,"nb":1,"a":[["TED%3AAF-A0A2T5NEF8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T5NEF8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2161826","Chromobacterium sp. Panama"]]},{"id":"NCBITaxon:2161864","l":"Opitutus sp. ER46","na":1,"nb":1,"a":[["TED%3AAF-A0A2T6CMU6-F1-model_v4_TED02","TED novel fold AF-A0A2T6CMU6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2161864","Opitutus sp. ER46"]]},{"id":"NCBITaxon:2161866","l":"Spartobacteria bacterium LR76","na":1,"nb":1,"a":[["TED%3AAF-A0A2T6D158-F1-model_v4_TED02","TED novel fold AF-A0A2T6D158-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2161866","Spartobacteria bacterium LR76"]]},{"id":"NCBITaxon:2161867","l":"Verrucomicrobia bacterium LW23","na":1,"nb":1,"a":[["TED%3AAF-A0A2T6DMB5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T6DMB5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2161867","Verrucomicrobia bacterium LW23"]]},{"id":"NCBITaxon:2162637","l":"Bacteroides sp. PHL 2737","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q0U345-F1-model_v4_TED02","TED novel fold AF-A0A4Q0U345-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2162637","Bacteroides sp. PHL 2737"]]},{"id":"NCBITaxon:2162893","l":"Marinilabilia rubra","na":1,"nb":1,"a":[["TED%3AAF-A0A2U2B527-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U2B527-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2162893","Marinilabilia rubra"]]},{"id":"NCBITaxon:2163881","l":"Paenibacillus cremeus","na":1,"nb":1,"a":[["TED%3AAF-A0A559KAQ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A559KAQ1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2163881","Paenibacillus cremeus"]]},{"id":"NCBITaxon:2164","l":"Methanobacterium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A6A8RVR7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6A8RVR7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2164","Methanobacterium sp."]]},{"id":"NCBITaxon:2164062","l":"Xanthomonas vasicola pv. zeae","na":1,"nb":1,"a":[["TED%3AAF-A0A7C7FQW4-F1-model_v4_TED02","TED novel fold AF-A0A7C7FQW4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2164062","Xanthomonas vasicola pv. zeae"]]},{"id":"NCBITaxon:216895","l":"Vibrio vulnificus CMCP6","na":1,"nb":1,"a":[["Pfam%3APF18416","N-acetylglucosamine binding protein domain 2"]],"b":[["NCBITaxon%3A216895","Vibrio vulnificus CMCP6"]]},{"id":"NCBITaxon:216932","l":"Spiroplasma chinense","na":1,"nb":1,"a":[["TED%3AAF-A0A5B9Y534-F1-model_v4_TED01","TED novel fold AF-A0A5B9Y534-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A216932","Spiroplasma chinense"]]},{"id":"NCBITaxon:216934","l":"Spiroplasma corruscae","na":1,"nb":1,"a":[["TED%3AAF-A0A222ENS0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A222ENS0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A216934","Spiroplasma corruscae"]]},{"id":"NCBITaxon:216938","l":"Spiroplasma helicoides","na":1,"nb":1,"a":[["TED%3AAF-A0A1B3SKL9-F1-model_v4_TED02","TED novel fold AF-A0A1B3SKL9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A216938","Spiroplasma helicoides"]]},{"id":"NCBITaxon:2169413","l":"Blastocatellia bacterium AA13","na":1,"nb":1,"a":[["TED%3AAF-A0A321L7A5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A321L7A5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2169413","Blastocatellia bacterium AA13"]]},{"id":"NCBITaxon:2169414","l":"Chitinophaga parva","na":1,"nb":1,"a":[["TED%3AAF-A0A2T7BEI4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T7BEI4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2169414","Chitinophaga parva"]]},{"id":"NCBITaxon:2170265","l":"Candidatus Similichlamydia laticola","na":1,"nb":1,"a":[["TED%3AAF-A0A369KIK0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A369KIK0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2170265","Candidatus Similichlamydia laticola"]]},{"id":"NCBITaxon:2170730","l":"Acinetobacter sp. AM","na":1,"nb":1,"a":[["TED%3AAF-A0A315WJ61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A315WJ61-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2170730","Acinetobacter sp. AM"]]},{"id":"NCBITaxon:2170733","l":"Pseudomonas sp. NDM","na":1,"nb":1,"a":[["TED%3AAF-A0A2U1QT22-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U1QT22-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2170733","Pseudomonas sp. NDM"]]},{"id":"NCBITaxon:2171751","l":"Pueribacillus theae","na":1,"nb":1,"a":[["TED%3AAF-A0A2U1K335-F1-model_v4_TED02","TED novel fold AF-A0A2U1K335-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2171751","Pueribacillus theae"]]},{"id":"NCBITaxon:2172121","l":"Pararhodobacter oceanensis","na":1,"nb":1,"a":[["TED%3AAF-A0A2T8HZ71-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T8HZ71-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2172121","Pararhodobacter oceanensis"]]},{"id":"NCBITaxon:2173149","l":"Marine Group III euryarchaeote","na":1,"nb":1,"a":[["TED%3AAF-A0A7C7PQZ2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7C7PQZ2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2173149","Marine Group III euryarchaeote"]]},{"id":"NCBITaxon:2174845","l":"Marixanthomonas spongiae","na":1,"nb":1,"a":[["TED%3AAF-A0A2U0HZF1-F1-model_v4_TED02","TED novel fold AF-A0A2U0HZF1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2174845","Marixanthomonas spongiae"]]},{"id":"NCBITaxon:2175091","l":"Flavobacterium album","na":1,"nb":1,"a":[["TED%3AAF-A0A2S1QWV5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S1QWV5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2175091","Flavobacterium album"]]},{"id":"NCBITaxon:2175229","l":"Corticimicrobacter populi","na":1,"nb":1,"a":[["TED%3AAF-A0A2V1K5S0-F1-model_v4_TED01","TED novel fold AF-A0A2V1K5S0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2175229","Corticimicrobacter populi"]]},{"id":"NCBITaxon:2175648","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2W1US76-F1-model_v4_TED03","TED novel fold AF-A0A2W1US76-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2175648","Curtobacterium sp. MCLR17_007"]]},{"id":"NCBITaxon:2175659","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2W1TXH0-F1-model_v4_TED01","TED novel fold AF-A0A2W1TXH0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2175659","Curtobacterium sp. MCBD17_032"]]},{"id":"NCBITaxon:2175674","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2W1ZB63-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W1ZB63-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2175674","Curtobacterium sp. MCBD17_040"]]},{"id":"NCBITaxon:2175803","l":"Bacteroidetes bacterium SCGC AAA795-G10","na":1,"nb":1,"a":[["TED%3AAF-A0A2U2RZ29-F1-model_v4_TED03","TED novel fold AF-A0A2U2RZ29-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2175803","Bacteroidetes bacterium SCGC AAA795-G10"]]},{"id":"NCBITaxon:2175864","l":"Streptomyces sp. NHF165","na":1,"nb":1,"a":[["TED%3AAF-A0A6I6WF12-F1-model_v4_TED04","TED novel fold AF-A0A6I6WF12-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2175864","Streptomyces sp. NHF165"]]},{"id":"NCBITaxon:2182384","l":"Erythrobacter aureus","na":1,"nb":1,"a":[["TED%3AAF-A0A345YJI9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A345YJI9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2182384","Erythrobacter aureus"]]},{"id":"NCBITaxon:2182432","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2U2N383-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2U2N383-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2182432","Sediminicurvatus halobius"]]},{"id":"NCBITaxon:2183922","l":"Mucilaginibacter sp. 94","na":1,"nb":1,"a":[["TED%3AAF-A0A495T2W7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A495T2W7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2183922","Mucilaginibacter sp. 94"]]},{"id":"NCBITaxon:2183984","l":"Alcanivorax sp. EA2","na":1,"nb":1,"a":[["TED%3AAF-A0A3D9IAU4-F1-model_v4_TED02","TED novel fold AF-A0A3D9IAU4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2183984","Alcanivorax sp. EA2"]]},{"id":"NCBITaxon:2183985","l":"Halomonas sp. A11-A","na":1,"nb":1,"a":[["TED%3AAF-A0A317P655-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A317P655-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2183985","Halomonas sp. A11-A"]]},{"id":"NCBITaxon:2183989","l":"Brachybacterium sp. AG952","na":1,"nb":1,"a":[["TED%3AAF-A0A4R6R2W4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R6R2W4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2183989","Brachybacterium sp. AG952"]]},{"id":"NCBITaxon:2183996","l":"Rhodococcus sp. AG1013","na":1,"nb":1,"a":[["TED%3AAF-A0A370FT27-F1-model_v4_TED02","TED novel fold AF-A0A370FT27-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2183996","Rhodococcus sp. AG1013"]]},{"id":"NCBITaxon:2184052","l":"Methanomicrobiales archaeon","na":1,"nb":1,"a":[["TED%3AAF-A0A7K4CCY7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K4CCY7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2184052","Methanomicrobiales archaeon"]]},{"id":"NCBITaxon:2184311","l":"Candidatus Nitrotoga sp. MKT","na":1,"nb":1,"a":[["TED%3AAF-A0A3E1D1N1-F1-model_v4_TED01","TED novel fold AF-A0A3E1D1N1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2184311","Candidatus Nitrotoga sp. MKT"]]},{"id":"NCBITaxon:2184346","l":"Candidatus Marinamargulisbacteria bacterium SCGC AG-439-L15","na":1,"nb":1,"a":[["TED%3AAF-A0A328RKB5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A328RKB5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2184346","Candidatus Marinamargulisbacteria bacterium SCGC AG-439-L15"]]},{"id":"NCBITaxon:2184347","l":"Candidatus Marinamargulisbacteria bacterium SCGC AAA071-K20","na":1,"nb":1,"a":[["TED%3AAF-A0A328RMQ6-F1-model_v4_TED01","TED novel fold AF-A0A328RMQ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2184347","Candidatus Marinamargulisbacteria bacterium SCGC AAA071-K20"]]},{"id":"NCBITaxon:2184554","l":"Burkholderia sp. Bp8992","na":1,"nb":1,"a":[["TED%3AAF-A0A3N8HMV5-F1-model_v4_TED02","TED novel fold AF-A0A3N8HMV5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2184554","Burkholderia sp. Bp8992"]]},{"id":"NCBITaxon:2184569","l":"Burkholderia sp. Bp9125","na":1,"nb":1,"a":[["TED%3AAF-A0A3N8D7F1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3N8D7F1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2184569","Burkholderia sp. Bp9125"]]},{"id":"NCBITaxon:2184757","l":"Legionella qingyii","na":1,"nb":1,"a":[["TED%3AAF-A0A317TZ28-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A317TZ28-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2184757","Legionella qingyii"]]},{"id":"NCBITaxon:218936","l":"Aeromonas simiae","na":1,"nb":1,"a":[["TED%3AAF-A0A5J6WY36-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5J6WY36-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A218936","Aeromonas simiae"]]},{"id":"NCBITaxon:2200760","l":"Streptomyces sp. Act143","na":1,"nb":1,"a":[["TED%3AAF-A0A2U2ZUU3-F1-model_v4_TED01","TED novel fold AF-A0A2U2ZUU3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2200760","Streptomyces sp. Act143"]]},{"id":"NCBITaxon:2200886","l":"Sulfolobus sp. F3","na":1,"nb":1,"a":[["TED%3AAF-A0A550D1T9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A550D1T9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2200886","Sulfolobus sp. F3"]]},{"id":"NCBITaxon:2201350","l":"Phenylobacterium parvum","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z3HP51-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2Z3HP51-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2201350","Phenylobacterium parvum"]]},{"id":"NCBITaxon:2202136","l":"Ruminococcaceae bacterium R-25","na":1,"nb":1,"a":[["TED%3AAF-A0A316BET6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A316BET6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2202136","Ruminococcaceae bacterium R-25"]]},{"id":"NCBITaxon:2202143","l":"candidate division Kazan bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A420ZCG7-F1-model_v4_TED06","TED novel fold AF-A0A420ZCG7-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A2202143","candidate division Kazan bacterium"]]},{"id":"NCBITaxon:2202149","l":"Thermomonas aquatica","na":1,"nb":1,"a":[["TED%3AAF-A0A5B7ZSQ5-F1-model_v4_TED02","TED novel fold AF-A0A5B7ZSQ5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2202149","Thermomonas aquatica"]]},{"id":"NCBITaxon:2202151","l":"Aquificota bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A3M2ANL4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M2ANL4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2202151","Aquificota bacterium"]]},{"id":"NCBITaxon:2202153","l":"Thermodesulfobacteriota bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A660S9H5-F1-model_v4_TED01","TED novel fold AF-A0A660S9H5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2202153","Thermodesulfobacteriota bacterium"]]},{"id":"NCBITaxon:2202161","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A329J8I8-F1-model_v4_TED01","TED novel fold AF-A0A329J8I8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2202161","Pseudomonas sp. RIT412"]]},{"id":"NCBITaxon:2202197","l":"Candidatus Methylumidiphilus alinenensis","na":1,"nb":1,"a":[["TED%3AAF-A0A2W4RIR3-F1-model_v4_TED02","TED novel fold AF-A0A2W4RIR3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2202197","Candidatus Methylumidiphilus alinenensis"]]},{"id":"NCBITaxon:2202201","l":"Leptospira yasudae","na":1,"nb":1,"a":[["TED%3AAF-A0A5F2BAE7-F1-model_v4_TED01","TED novel fold AF-A0A5F2BAE7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2202201","Leptospira yasudae"]]},{"id":"NCBITaxon:2202249","l":"Streptosporangium sp. 'caverna'","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z3USU0-F1-model_v4_TED03","TED novel fold AF-A0A2Z3USU0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2202249","Streptosporangium sp. 'caverna'"]]},{"id":"NCBITaxon:2202516","l":"Streptomyces sp. ZEA17I","na":1,"nb":1,"a":[["TED%3AAF-A0A2V2Q3I4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V2Q3I4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2202516","Streptomyces sp. ZEA17I"]]},{"id":"NCBITaxon:2202652","l":"Pseudomonas sp. RW405","na":1,"nb":1,"a":[["TED%3AAF-A0A2V3CQ14-F1-model_v4_TED01","TED novel fold AF-A0A2V3CQ14-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2202652","Pseudomonas sp. RW405"]]},{"id":"NCBITaxon:2202825","l":"Methylobacterium durans","na":1,"nb":1,"a":[["TED%3AAF-A0A2U8W1A2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2U8W1A2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2202825","Methylobacterium durans"]]},{"id":"NCBITaxon:2203209","l":"Streptomyces sp. WAC 06725","na":1,"nb":1,"a":[["TED%3AAF-A0A429JII5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A429JII5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2203209","Streptomyces sp. WAC 06725"]]},{"id":"NCBITaxon:2203212","l":"Pedobacter paludis","na":1,"nb":1,"a":[["TED%3AAF-A0A317EV51-F1-model_v4_TED02","TED novel fold AF-A0A317EV51-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2203212","Pedobacter paludis"]]},{"id":"NCBITaxon:2203419","l":"Ochrobactrum sp. POC9","na":1,"nb":1,"a":[["TED%3AAF-A0A317LGQ4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A317LGQ4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2203419","Ochrobactrum sp. POC9"]]},{"id":"NCBITaxon:2203782","l":"Ensifer sp. M14","na":1,"nb":1,"a":[["TED%3AAF-A0A395L633-F1-model_v4_TED03","TED novel fold AF-A0A395L633-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2203782","Ensifer sp. M14"]]},{"id":"NCBITaxon:2204294","l":"Photobacterium malacitanum","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y6MEK4-F1-model_v4_TED01","TED novel fold AF-A0A1Y6MEK4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2204294","Photobacterium malacitanum"]]},{"id":"NCBITaxon:220664","l":"Pseudomonas protegens Pf-5","na":1,"nb":1,"a":[["Pfam%3APF18089","DAPG hydrolase PhiG domain"]],"b":[["NCBITaxon%3A220664","Pseudomonas protegens Pf-5"]]},{"id":"NCBITaxon:220927","l":"Mycobacterium saskatchewanense","na":1,"nb":1,"a":[["TED%3AAF-A0A1X2C961-F1-model_v4_TED02","TED novel fold AF-A0A1X2C961-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A220927","Mycobacterium saskatchewanense"]]},{"id":"NCBITaxon:2211119","l":"Lujinxingia litoralis","na":1,"nb":1,"a":[["TED%3AAF-A0A328C1B2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A328C1B2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2211119","Lujinxingia litoralis"]]},{"id":"NCBITaxon:2211139","l":"Paenibacillus flagellatus","na":1,"nb":1,"a":[["TED%3AAF-A0A2V5JTW1-F1-model_v4_TED01","TED novel fold AF-A0A2V5JTW1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2211139","Paenibacillus flagellatus"]]},{"id":"NCBITaxon:2211445","l":"Flavobacterium hydrophilum","na":1,"nb":1,"a":[["TED%3AAF-A0A2V4C030-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2V4C030-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2211445","Flavobacterium hydrophilum"]]},{"id":"NCBITaxon:2212467","l":"Bacteroidaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A6F9ZK93-F1-model_v4_TED05","TED novel fold AF-A0A6F9ZK93-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2212467","Bacteroidaceae bacterium"]]},{"id":"NCBITaxon:221359","l":"Synechococcus sp. RS9916","na":1,"nb":1,"a":[["TED%3AAF-Q05VF6-F1-model_v4_TED02","TED highly-symmetric fold AF-Q05VF6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A221359","Synechococcus sp. RS9916"]]},{"id":"NCBITaxon:2217664","l":"Croceicoccus ponticola","na":1,"nb":1,"a":[["TED%3AAF-A0A437GZM5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A437GZM5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2217664","Croceicoccus ponticola"]]},{"id":"NCBITaxon:2219224","l":"Nonomuraea phyllanthi","na":1,"nb":1,"a":[["TED%3AAF-A0A5C4WBR4-F1-model_v4_TED03","TED novel fold AF-A0A5C4WBR4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2219224","Nonomuraea phyllanthi"]]},{"id":"NCBITaxon:2231116","l":"Mycoplasmatota bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7C6RQP9-F1-model_v4_TED01","TED novel fold AF-A0A7C6RQP9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2231116","Mycoplasmatota bacterium"]]},{"id":"NCBITaxon:2234116","l":"Marinilabiliaceae bacterium JC017","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q8RYP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q8RYP7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2234116","Marinilabiliaceae bacterium JC017"]]},{"id":"NCBITaxon:223788","l":"Balnearium lithotrophicum","na":1,"nb":1,"a":[["TED%3AAF-A0A521D8E7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A521D8E7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A223788","Balnearium lithotrophicum"]]},{"id":"NCBITaxon:2249476","l":"Leishmania orientalis","na":1,"nb":1,"a":[["TED%3AAF-A0A836HGD2-F1-model_v4_TED02","TED novel fold AF-A0A836HGD2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2249476","Leishmania orientalis"]]},{"id":"NCBITaxon:2249761","l":"Halorubrum sp. 48-1-W","na":1,"nb":1,"a":[["TED%3AAF-A0A329T5Y7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A329T5Y7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2249761","Halorubrum sp. 48-1-W"]]},{"id":"NCBITaxon:2250252","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z4Y898-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z4Y898-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2250252","Candidatus Sumerlaea chitinivorans"]]},{"id":"NCBITaxon:225848","l":"Shewanella psychrophila","na":1,"nb":1,"a":[["TED%3AAF-A0A1S6HJS1-F1-model_v4_TED02","TED novel fold AF-A0A1S6HJS1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A225848","Shewanella psychrophila"]]},{"id":"NCBITaxon:2258964","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A3D9AIB1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D9AIB1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2258964","Chryseobacterium sp. 5_R23647"]]},{"id":"NCBITaxon:2259036","l":"Chitinophaga flava","na":1,"nb":1,"a":[["TED%3AAF-A0A365XWH2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A365XWH2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2259036","Chitinophaga flava"]]},{"id":"NCBITaxon:2259342","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A3N5YBN8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N5YBN8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2259342","Paralteromonas sediminis"]]},{"id":"NCBITaxon:2259644","l":"Streptomyces sp. YIM 130001","na":1,"nb":1,"a":[["TED%3AAF-A0A399HGF2-F1-model_v4_TED02","TED novel fold AF-A0A399HGF2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2259644","Streptomyces sp. YIM 130001"]]},{"id":"NCBITaxon:226506","l":"Algoriphagus ornithinivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A1I5CGG6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5CGG6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A226506","Algoriphagus ornithinivorans"]]},{"id":"NCBITaxon:2267264","l":"Alteromonas sp. RKMC-009","na":1,"nb":1,"a":[["TED%3AAF-A0A385MUJ3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A385MUJ3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2267264","Alteromonas sp. RKMC-009"]]},{"id":"NCBITaxon:2268024","l":"Ephemeroptericola cinctiostellae","na":1,"nb":1,"a":[["TED%3AAF-A0A345DDH0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A345DDH0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2268024","Ephemeroptericola cinctiostellae"]]},{"id":"NCBITaxon:2268140","l":"Thioploca sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7C2AVM7-F1-model_v4_TED09","TED highly-symmetric fold AF-A0A7C2AVM7-F1-model_v4_TED09"]],"b":[["NCBITaxon%3A2268140","Thioploca sp."]]},{"id":"NCBITaxon:2268141","l":"Thermopetrobacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7C5SDZ9-F1-model_v4_TED01","TED novel fold AF-A0A7C5SDZ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2268141","Thermopetrobacter sp."]]},{"id":"NCBITaxon:2268177","l":"Aeromonadales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7V2S520-F1-model_v4_TED02","TED novel fold AF-A0A7V2S520-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2268177","Aeromonadales bacterium"]]},{"id":"NCBITaxon:2268179","l":"Campylobacteraceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A850JRK3-F1-model_v4_TED02","TED novel fold AF-A0A850JRK3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2268179","Campylobacteraceae bacterium"]]},{"id":"NCBITaxon:2268180","l":"Campylobacterales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7V4QCR0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7V4QCR0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2268180","Campylobacterales bacterium"]]},{"id":"NCBITaxon:2268181","l":"candidate division CPR3 bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7V3J9M4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V3J9M4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2268181","candidate division CPR3 bacterium"]]},{"id":"NCBITaxon:2268182","l":"Candidatus Buchananbacteria bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A849W7Y3-F1-model_v4_TED02","TED novel fold AF-A0A849W7Y3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2268182","Candidatus Buchananbacteria bacterium"]]},{"id":"NCBITaxon:2268192","l":"Chlorobiota bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7J4V7N2-F1-model_v4_TED01","TED novel fold AF-A0A7J4V7N2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2268192","Chlorobiota bacterium"]]},{"id":"NCBITaxon:2268198","l":"Nitrososphaeria archaeon","na":1,"nb":1,"a":[["TED%3AAF-A0A7J3PL42-F1-model_v4_TED02","TED novel fold AF-A0A7J3PL42-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2268198","Nitrososphaeria archaeon"]]},{"id":"NCBITaxon:2268200","l":"Sulfolobales archaeon","na":1,"nb":1,"a":[["TED%3AAF-A0A7C5XR34-F1-model_v4_TED01","TED novel fold AF-A0A7C5XR34-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2268200","Sulfolobales archaeon"]]},{"id":"NCBITaxon:2268201","l":"Synergistales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A832JNQ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A832JNQ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2268201","Synergistales bacterium"]]},{"id":"NCBITaxon:227605","l":"Methylocella tundrae","na":1,"nb":1,"a":[["TED%3AAF-A0A4U8Z7R3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8Z7R3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A227605","Methylocella tundrae"]]},{"id":"NCBITaxon:2282125","l":"Haloarcula sp. Atlit-7R","na":1,"nb":1,"a":[["TED%3AAF-A0A498GGU0-F1-model_v4_TED01","TED novel fold AF-A0A498GGU0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2282125","Haloarcula sp. Atlit-7R"]]},{"id":"NCBITaxon:2282131","l":"Halobellus sp. Atlit-38R","na":1,"nb":1,"a":[["TED%3AAF-A0A498GBB9-F1-model_v4_TED01","TED novel fold AF-A0A498GBB9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2282131","Halobellus sp. Atlit-38R"]]},{"id":"NCBITaxon:2282132","l":"Haloarcula sp. Atlit-47R","na":1,"nb":1,"a":[["TED%3AAF-A0A3R7FKY9-F1-model_v4_TED01","TED novel fold AF-A0A3R7FKY9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2282132","Haloarcula sp. Atlit-47R"]]},{"id":"NCBITaxon:2282142","l":"Terriglobales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7W1T1G5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W1T1G5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2282142","Terriglobales bacterium"]]},{"id":"NCBITaxon:2282152","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A832B9Y3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A832B9Y3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2282152","Chthonomonadia bacterium"]]},{"id":"NCBITaxon:2282154","l":"Geobacteraceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7V4UXK5-F1-model_v4_TED02","TED novel fold AF-A0A7V4UXK5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2282154","Geobacteraceae bacterium"]]},{"id":"NCBITaxon:2282167","l":"Planktothricoides sp. SpSt-374","na":1,"nb":1,"a":[["TED%3AAF-A0A7C3VEW8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C3VEW8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2282167","Planktothricoides sp. SpSt-374"]]},{"id":"NCBITaxon:2282170","l":"Kordia sp. SMS9","na":1,"nb":1,"a":[["TED%3AAF-A0A345H488-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A345H488-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2282170","Kordia sp. SMS9"]]},{"id":"NCBITaxon:2282420","l":"Streptococcus hillyeri","na":1,"nb":1,"a":[["TED%3AAF-A0A3L9DJK9-F1-model_v4_TED03","TED novel fold AF-A0A3L9DJK9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2282420","Streptococcus hillyeri"]]},{"id":"NCBITaxon:2282449","l":"Exiguobacterium sp. RIT594","na":1,"nb":1,"a":[["TED%3AAF-A0A369KPC7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A369KPC7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2282449","Exiguobacterium sp. RIT594"]]},{"id":"NCBITaxon:2282866","l":"Sporosarcina sp. BI001-red","na":1,"nb":1,"a":[["TED%3AAF-A0A3D8YT39-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D8YT39-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2282866","Sporosarcina sp. BI001-red"]]},{"id":"NCBITaxon:2283194","l":"Sporosarcina sp. PTS2304","na":1,"nb":1,"a":[["TED%3AAF-A0A345P1P1-F1-model_v4_TED02","TED novel fold AF-A0A345P1P1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2283194","Sporosarcina sp. PTS2304"]]},{"id":"NCBITaxon:2283627","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A425XWD0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A425XWD0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2283627","Ancylomarina euxina"]]},{"id":"NCBITaxon:228908","l":"","na":1,"nb":1,"a":[["Pfam%3APF01949","Endonuclease dU"]],"b":[["NCBITaxon%3A228908","Nanoarchaeum equitans Kin4-M"]]},{"id":"NCBITaxon:229037","l":"Proteus sp. (in: enterobacteria)","na":1,"nb":1,"a":[["TED%3AAF-A0A3D2BNA0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D2BNA0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A229037","Proteus sp. (in: enterobacteria)"]]},{"id":"NCBITaxon:2290913","l":"Candidatus Cryosericum septentrionale","na":1,"nb":1,"a":[["TED%3AAF-A0A398DLC0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A398DLC0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2290913","Candidatus Cryosericum septentrionale"]]},{"id":"NCBITaxon:2290923","l":"Crenobacter cavernae","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q2JGP7-F1-model_v4_TED01","TED novel fold AF-A0A4Q2JGP7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2290923","Crenobacter cavernae"]]},{"id":"NCBITaxon:2290935","l":"Parabacteroides acidifaciens","na":1,"nb":1,"a":[["TED%3AAF-A0A3D8H9Y5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D8H9Y5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2290935","Parabacteroides acidifaciens"]]},{"id":"NCBITaxon:2291815","l":"Deminuibacter soli","na":1,"nb":1,"a":[["TED%3AAF-A0A3E1NDY4-F1-model_v4_TED02","TED novel fold AF-A0A3E1NDY4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2291815","Deminuibacter soli"]]},{"id":"NCBITaxon:2291993","l":"Absiella sp. AM09-45","na":1,"nb":1,"a":[["TED%3AAF-A0A372SWN5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A372SWN5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2291993","Absiella sp. AM09-45"]]},{"id":"NCBITaxon:2292003","l":"Butyricicoccus sp. AF35-5AC","na":1,"nb":1,"a":[["TED%3AAF-A0A416DBL2-F1-model_v4_TED01","TED novel fold AF-A0A416DBL2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292003","Butyricicoccus sp. AF35-5AC"]]},{"id":"NCBITaxon:2292025","l":"Collinsella sp. AM15-2","na":1,"nb":1,"a":[["TED%3AAF-A0A414ZX86-F1-model_v4_TED01","TED novel fold AF-A0A414ZX86-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292025","Collinsella sp. AM15-2"]]},{"id":"NCBITaxon:2292028","l":"Collinsella sp. AM18-10","na":1,"nb":1,"a":[["TED%3AAF-A0A414WNE9-F1-model_v4_TED02","TED novel fold AF-A0A414WNE9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2292028","Collinsella sp. AM18-10"]]},{"id":"NCBITaxon:2292066","l":"Roseburia sp. AM23-20","na":1,"nb":1,"a":[["TED%3AAF-A0A3R6FRW6-F1-model_v4_TED01","TED novel fold AF-A0A3R6FRW6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292066","Roseburia sp. AM23-20"]]},{"id":"NCBITaxon:2292075","l":"Sutterella sp. AM11-39","na":1,"nb":1,"a":[["TED%3AAF-A0A415CE65-F1-model_v4_TED01","TED novel fold AF-A0A415CE65-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292075","Sutterella sp. AM11-39"]]},{"id":"NCBITaxon:2292179","l":"Clostridiaceae bacterium AF29-16BH","na":1,"nb":1,"a":[["TED%3AAF-A0A3R6TSB6-F1-model_v4_TED05","TED novel fold AF-A0A3R6TSB6-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2292179","Clostridiaceae bacterium AF29-16BH"]]},{"id":"NCBITaxon:2292223","l":"Collinsella sp. AF23-3LB","na":1,"nb":1,"a":[["TED%3AAF-A0A412HUW7-F1-model_v4_TED02","TED novel fold AF-A0A412HUW7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2292223","Collinsella sp. AF23-3LB"]]},{"id":"NCBITaxon:2292251","l":"Ruminococcus sp. AF21-42","na":1,"nb":1,"a":[["TED%3AAF-A0A416PML0-F1-model_v4_TED01","TED novel fold AF-A0A416PML0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292251","Ruminococcus sp. AF21-42"]]},{"id":"NCBITaxon:2292270","l":"Ruminococcaceae bacterium TF06-43","na":1,"nb":1,"a":[["TED%3AAF-A0A417NAR0-F1-model_v4_TED01","TED novel fold AF-A0A417NAR0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292270","Ruminococcaceae bacterium TF06-43"]]},{"id":"NCBITaxon:2292274","l":"Clostridiaceae bacterium OM08-6BH","na":1,"nb":1,"a":[["TED%3AAF-A0A3R6SCX2-F1-model_v4_TED01","TED novel fold AF-A0A3R6SCX2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292274","Clostridiaceae bacterium OM08-6BH"]]},{"id":"NCBITaxon:2292281","l":"Bacteroides sp. OF04-15BH","na":1,"nb":1,"a":[["TED%3AAF-A0A416GBK9-F1-model_v4_TED03","TED novel fold AF-A0A416GBK9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2292281","Bacteroides sp. OF04-15BH"]]},{"id":"NCBITaxon:2292287","l":"Blautia sp. OF03-15BH","na":1,"nb":1,"a":[["TED%3AAF-A0A413HUN0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A413HUN0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2292287","Blautia sp. OF03-15BH"]]},{"id":"NCBITaxon:2292288","l":"Clostridiaceae bacterium AM27-36LB","na":1,"nb":1,"a":[["TED%3AAF-A0A417I018-F1-model_v4_TED02","TED novel fold AF-A0A417I018-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2292288","Clostridiaceae bacterium AM27-36LB"]]},{"id":"NCBITaxon:2292298","l":"Butyricicoccus sp. OF10-2","na":1,"nb":1,"a":[["TED%3AAF-A0A396Q9G3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A396Q9G3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292298","Butyricicoccus sp. OF10-2"]]},{"id":"NCBITaxon:2292305","l":"Clostridium sp. AM42-4","na":1,"nb":1,"a":[["TED%3AAF-A0A417BW51-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A417BW51-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292305","Clostridium sp. AM42-4"]]},{"id":"NCBITaxon:2292320","l":"Collinsella sp. AM41-2BH","na":1,"nb":1,"a":[["TED%3AAF-A0A413UK93-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A413UK93-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292320","Collinsella sp. AM41-2BH"]]},{"id":"NCBITaxon:2292329","l":"Collinsella sp. OM08-14AT","na":1,"nb":1,"a":[["TED%3AAF-A0A374V4M3-F1-model_v4_TED01","TED novel fold AF-A0A374V4M3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292329","Collinsella sp. OM08-14AT"]]},{"id":"NCBITaxon:2292347","l":"Dorea sp. OM02-2LB","na":1,"nb":1,"a":[["TED%3AAF-A0A374X375-F1-model_v4_TED01","TED novel fold AF-A0A374X375-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292347","Dorea sp. OM02-2LB"]]},{"id":"NCBITaxon:2292358","l":"Megasphaera sp. AM44-1BH","na":1,"nb":1,"a":[["TED%3AAF-A0A413QQL4-F1-model_v4_TED01","TED novel fold AF-A0A413QQL4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292358","Megasphaera sp. AM44-1BH"]]},{"id":"NCBITaxon:2292363","l":"Parabacteroides sp. TM07-1AC","na":1,"nb":1,"a":[["TED%3AAF-A0A3R6RVC2-F1-model_v4_TED02","TED novel fold AF-A0A3R6RVC2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2292363","Parabacteroides sp. TM07-1AC"]]},{"id":"NCBITaxon:2292364","l":"Prevotella sp. AM34-19LB","na":1,"nb":1,"a":[["TED%3AAF-A0A3R6B020-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3R6B020-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2292364","Prevotella sp. AM34-19LB"]]},{"id":"NCBITaxon:2292365","l":"Prevotella sp. TF12-30","na":1,"nb":1,"a":[["TED%3AAF-A0A374TE07-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A374TE07-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292365","Prevotella sp. TF12-30"]]},{"id":"NCBITaxon:2292705","l":"Paenibacillus paeoniae","na":1,"nb":1,"a":[["TED%3AAF-A0A371PIW4-F1-model_v4_TED01","TED novel fold AF-A0A371PIW4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292705","Paenibacillus paeoniae"]]},{"id":"NCBITaxon:2292766","l":"Persicimonas caeni","na":1,"nb":1,"a":[["TED%3AAF-A0A4Y6Q2C3-F1-model_v4_TED01","TED novel fold AF-A0A4Y6Q2C3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292766","Persicimonas caeni"]]},{"id":"NCBITaxon:2292910","l":"Alistipes sp. AF14-19","na":1,"nb":1,"a":[["TED%3AAF-A0A374A2V7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A374A2V7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2292910","Alistipes sp. AF14-19"]]},{"id":"NCBITaxon:2292911","l":"Alistipes sp. AM16-43","na":1,"nb":1,"a":[["TED%3AAF-A0A6N4H138-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N4H138-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292911","Alistipes sp. AM16-43"]]},{"id":"NCBITaxon:2292923","l":"Bacteroides sp. AF25-18","na":1,"nb":1,"a":[["TED%3AAF-A0A3A5ZVW8-F1-model_v4_TED02","TED novel fold AF-A0A3A5ZVW8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2292923","Bacteroides sp. AF25-18"]]},{"id":"NCBITaxon:2292942","l":"Bacteroides sp. AM23-12","na":1,"nb":1,"a":[["TED%3AAF-A0A372UNQ0-F1-model_v4_TED05","TED novel fold AF-A0A372UNQ0-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2292942","Bacteroides sp. AM23-12"]]},{"id":"NCBITaxon:2292962","l":"Blautia sp. AF19-13LB","na":1,"nb":1,"a":[["TED%3AAF-A0A416S5R5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A416S5R5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292962","Blautia sp. AF19-13LB"]]},{"id":"NCBITaxon:2292968","l":"Blautia sp. AF34-10","na":1,"nb":1,"a":[["TED%3AAF-A0A416EA07-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A416EA07-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292968","Blautia sp. AF34-10"]]},{"id":"NCBITaxon:2292971","l":"Blautia sp. AM23-13AC","na":1,"nb":1,"a":[["TED%3AAF-A0A373GU64-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A373GU64-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2292971","Blautia sp. AM23-13AC"]]},{"id":"NCBITaxon:2292979","l":"Blautia sp. AM47-4","na":1,"nb":1,"a":[["TED%3AAF-A0A416ZLU8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A416ZLU8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2292979","Blautia sp. AM47-4"]]},{"id":"NCBITaxon:2293015","l":"Clostridium sp. AF36-4","na":1,"nb":1,"a":[["TED%3AAF-A0A373LW89-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A373LW89-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293015","Clostridium sp. AF36-4"]]},{"id":"NCBITaxon:2293021","l":"Clostridium sp. AF50-3","na":1,"nb":1,"a":[["TED%3AAF-A0A3R6MB85-F1-model_v4_TED01","TED novel fold AF-A0A3R6MB85-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293021","Clostridium sp. AF50-3"]]},{"id":"NCBITaxon:2293025","l":"Clostridium sp. AM27-28","na":1,"nb":1,"a":[["TED%3AAF-A0A3R6RLH9-F1-model_v4_TED03","TED novel fold AF-A0A3R6RLH9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2293025","Clostridium sp. AM27-28"]]},{"id":"NCBITaxon:2293041","l":"Clostridium sp. OM04-12AA","na":1,"nb":1,"a":[["TED%3AAF-A0A417U5V0-F1-model_v4_TED04","TED novel fold AF-A0A417U5V0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2293041","Clostridium sp. OM04-12AA"]]},{"id":"NCBITaxon:2293049","l":"Clostridium sp. OM08-29","na":1,"nb":1,"a":[["TED%3AAF-A0A417PJ91-F1-model_v4_TED01","TED novel fold AF-A0A417PJ91-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293049","Clostridium sp. OM08-29"]]},{"id":"NCBITaxon:2293054","l":"Clostridium sp. TM06-18","na":1,"nb":1,"a":[["TED%3AAF-A0A3R6SPQ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R6SPQ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293054","Clostridium sp. TM06-18"]]},{"id":"NCBITaxon:2293083","l":"Coprobacillus sp. OF03-2AA","na":1,"nb":1,"a":[["TED%3AAF-A0A416GDF1-F1-model_v4_TED01","TED novel fold AF-A0A416GDF1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293083","Coprobacillus sp. OF03-2AA"]]},{"id":"NCBITaxon:2293088","l":"Coprococcus sp. AF16-5","na":1,"nb":1,"a":[["TED%3AAF-A0A3R6T6B7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R6T6B7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293088","Coprococcus sp. AF16-5"]]},{"id":"NCBITaxon:2293113","l":"Parabacteroides sp. AF17-3","na":1,"nb":1,"a":[["TED%3AAF-A0A496D3Q5-F1-model_v4_TED02","TED novel fold AF-A0A496D3Q5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2293113","Parabacteroides sp. AF17-3"]]},{"id":"NCBITaxon:2293124","l":"Parabacteroides sp. OF04-13BH","na":1,"nb":1,"a":[["TED%3AAF-A0A496CTK2-F1-model_v4_TED07","TED novel fold AF-A0A496CTK2-F1-model_v4_TED07"]],"b":[["NCBITaxon%3A2293124","Parabacteroides sp. OF04-13BH"]]},{"id":"NCBITaxon:2293125","l":"Prevotella sp. AM42-24","na":1,"nb":1,"a":[["TED%3AAF-A0A374BKF8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A374BKF8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2293125","Prevotella sp. AM42-24"]]},{"id":"NCBITaxon:2293128","l":"Roseburia sp. AF15-21","na":1,"nb":1,"a":[["TED%3AAF-A0A3R6RT74-F1-model_v4_TED01","TED novel fold AF-A0A3R6RT74-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293128","Roseburia sp. AF15-21"]]},{"id":"NCBITaxon:2293129","l":"Roseburia sp. AF20-18LB","na":1,"nb":1,"a":[["TED%3AAF-A0A373UUB6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A373UUB6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293129","Roseburia sp. AF20-18LB"]]},{"id":"NCBITaxon:2293144","l":"Roseburia sp. TF10-5","na":1,"nb":1,"a":[["TED%3AAF-A0A374IBS0-F1-model_v4_TED03","TED novel fold AF-A0A374IBS0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2293144","Roseburia sp. TF10-5"]]},{"id":"NCBITaxon:2293146","l":"Ruminococcus sp. AF12-5","na":1,"nb":1,"a":[["TED%3AAF-A0A374A227-F1-model_v4_TED02","TED novel fold AF-A0A374A227-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2293146","Ruminococcus sp. AF12-5"]]},{"id":"NCBITaxon:2293150","l":"Ruminococcus sp. AF17-11","na":1,"nb":1,"a":[["TED%3AAF-A0A373XMI7-F1-model_v4_TED01","TED novel fold AF-A0A373XMI7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293150","Ruminococcus sp. AF17-11"]]},{"id":"NCBITaxon:2293154","l":"Ruminococcus sp. AF17-6","na":1,"nb":1,"a":[["TED%3AAF-A0A373WJM5-F1-model_v4_TED03","TED novel fold AF-A0A373WJM5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2293154","Ruminococcus sp. AF17-6"]]},{"id":"NCBITaxon:2293158","l":"Ruminococcus sp. AF19-29","na":1,"nb":1,"a":[["TED%3AAF-A0A416RYY3-F1-model_v4_TED02","TED novel fold AF-A0A416RYY3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2293158","Ruminococcus sp. AF19-29"]]},{"id":"NCBITaxon:2293178","l":"Ruminococcus sp. AF37-20","na":1,"nb":1,"a":[["TED%3AAF-A0A373LCT7-F1-model_v4_TED01","TED novel fold AF-A0A373LCT7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293178","Ruminococcus sp. AF37-20"]]},{"id":"NCBITaxon:2293195","l":"Ruminococcus sp. AM28-29LB","na":1,"nb":1,"a":[["TED%3AAF-A0A374G5B5-F1-model_v4_TED01","TED novel fold AF-A0A374G5B5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293195","Ruminococcus sp. AM28-29LB"]]},{"id":"NCBITaxon:2293202","l":"Ruminococcus sp. AM31-15AC","na":1,"nb":1,"a":[["TED%3AAF-A0A374EXV0-F1-model_v4_TED01","TED novel fold AF-A0A374EXV0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293202","Ruminococcus sp. AM31-15AC"]]},{"id":"NCBITaxon:2293208","l":"Ruminococcus sp. AM36-17","na":1,"nb":1,"a":[["TED%3AAF-A0A417DI12-F1-model_v4_TED01","TED novel fold AF-A0A417DI12-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293208","Ruminococcus sp. AM36-17"]]},{"id":"NCBITaxon:2293215","l":"Ruminococcus sp. AM42-10AC","na":1,"nb":1,"a":[["TED%3AAF-A0A417CN21-F1-model_v4_TED01","TED novel fold AF-A0A417CN21-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293215","Ruminococcus sp. AM42-10AC"]]},{"id":"NCBITaxon:2293228","l":"Ruminococcus sp. OF02-6","na":1,"nb":1,"a":[["TED%3AAF-A0A416GZV7-F1-model_v4_TED02","TED novel fold AF-A0A416GZV7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2293228","Ruminococcus sp. OF02-6"]]},{"id":"NCBITaxon:2293230","l":"Ruminococcus sp. OF05-2BH","na":1,"nb":1,"a":[["TED%3AAF-A0A374LM13-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A374LM13-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293230","Ruminococcus sp. OF05-2BH"]]},{"id":"NCBITaxon:2293859","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A424YC22-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A424YC22-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293859","Halanaerobium sp. MSAO_Bac5"]]},{"id":"NCBITaxon:229919","l":"Anaerolinea thermolimosa","na":1,"nb":1,"a":[["TED%3AAF-A0A3D1JEJ6-F1-model_v4_TED03","TED novel fold AF-A0A3D1JEJ6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A229919","Anaerolinea thermolimosa"]]},{"id":"NCBITaxon:230089","l":"Photorhabdus thracensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0F7LMP9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F7LMP9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A230089","Photorhabdus thracensis"]]},{"id":"NCBITaxon:230091","l":"Micromonospora endolithica","na":1,"nb":1,"a":[["TED%3AAF-A0A3A9ZCA3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3A9ZCA3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A230091","Micromonospora endolithica"]]},{"id":"NCBITaxon:2302364","l":"Acinetobacter sp. JW","na":1,"nb":1,"a":[["TED%3AAF-A0A372BGZ3-F1-model_v4_TED01","TED novel fold AF-A0A372BGZ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2302364","Acinetobacter sp. JW"]]},{"id":"NCBITaxon:2302989","l":"Clostridiales bacterium TF09-2AC","na":1,"nb":1,"a":[["TED%3AAF-A0A3A6IFD3-F1-model_v4_TED03","TED novel fold AF-A0A3A6IFD3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2302989","Clostridiales bacterium TF09-2AC"]]},{"id":"NCBITaxon:2303331","l":"Solimonas sp. K1W22B-7","na":1,"nb":1,"a":[["TED%3AAF-A0A346N7K7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A346N7K7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2303331","Solimonas sp. K1W22B-7"]]},{"id":"NCBITaxon:2303332","l":"Cellvibrio sp. KY-GH-1","na":1,"nb":1,"a":[["TED%3AAF-A0A5J6P7W3-F1-model_v4_TED01","TED novel fold AF-A0A5J6P7W3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2303332","Cellvibrio sp. KY-GH-1"]]},{"id":"NCBITaxon:2303333","l":"Mucilaginibacter conchicola","na":1,"nb":1,"a":[["TED%3AAF-A0A372NTR5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A372NTR5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2303333","Mucilaginibacter conchicola"]]},{"id":"NCBITaxon:230361","l":"Methanobrevibacter millerae","na":1,"nb":1,"a":[["TED%3AAF-A0A0U3DSU9-F1-model_v4_TED04","TED novel fold AF-A0A0U3DSU9-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A230361","Methanobrevibacter millerae"]]},{"id":"NCBITaxon:2303987","l":"Motilimonas pumila","na":1,"nb":1,"a":[["TED%3AAF-A0A418YIK5-F1-model_v4_TED02","TED novel fold AF-A0A418YIK5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2303987","Motilimonas pumila"]]},{"id":"NCBITaxon:2304039","l":"Thermoanaerobacterales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7V6UE01-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7V6UE01-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2304039","Thermoanaerobacterales bacterium"]]},{"id":"NCBITaxon:2304571","l":"Enterorhabdus sp. P55","na":1,"nb":1,"a":[["TED%3AAF-A0A7K3KZ32-F1-model_v4_TED01","TED novel fold AF-A0A7K3KZ32-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2304571","Enterorhabdus sp. P55"]]},{"id":"NCBITaxon:2304576","l":"Pseudoflavonifractor sp. 60","na":1,"nb":1,"a":[["TED%3AAF-A0A6G3LXM3-F1-model_v4_TED02","TED novel fold AF-A0A6G3LXM3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2304576","Pseudoflavonifractor sp. 60"]]},{"id":"NCBITaxon:2304594","l":"Marinobacter sp. Arc7-DN-1","na":1,"nb":1,"a":[["TED%3AAF-A0A346S279-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A346S279-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2304594","Marinobacter sp. Arc7-DN-1"]]},{"id":"NCBITaxon:2304604","l":"Adonisia turfae CCMR0082","na":1,"nb":1,"a":[["TED%3AAF-A0A6M0SB69-F1-model_v4_TED01","TED novel fold AF-A0A6M0SB69-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2304604","Adonisia turfae CCMR0082"]]},{"id":"NCBITaxon:230495","l":"Reinekea marinisedimentorum","na":1,"nb":1,"a":[["TED%3AAF-A0A4R3I585-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R3I585-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A230495","Reinekea marinisedimentorum"]]},{"id":"NCBITaxon:2305219","l":"Paracoccus sp. BP8","na":1,"nb":1,"a":[["TED%3AAF-A0A3N7GAZ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N7GAZ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2305219","Paracoccus sp. BP8"]]},{"id":"NCBITaxon:2305242","l":"Clostridium sp. AM34-11AC","na":1,"nb":1,"a":[["TED%3AAF-A0A373C7X0-F1-model_v4_TED02","TED novel fold AF-A0A373C7X0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2305242","Clostridium sp. AM34-11AC"]]},{"id":"NCBITaxon:2305243","l":"Desulfotomaculum sp. OF05-3","na":1,"nb":1,"a":[["TED%3AAF-A0A373DCU4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A373DCU4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2305243","Desulfotomaculum sp. OF05-3"]]},{"id":"NCBITaxon:2305245","l":"Clostridiaceae bacterium TF01-6","na":1,"nb":1,"a":[["TED%3AAF-A0A373CRX3-F1-model_v4_TED02","TED novel fold AF-A0A373CRX3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2305245","Clostridiaceae bacterium TF01-6"]]},{"id":"NCBITaxon:2305463","l":"Maribellus luteus","na":1,"nb":1,"a":[["TED%3AAF-A0A399SUN2-F1-model_v4_TED01","TED novel fold AF-A0A399SUN2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2305463","Maribellus luteus"]]},{"id":"NCBITaxon:2305508","l":"Mucilaginibacter celer","na":1,"nb":1,"a":[["TED%3AAF-A0A494VUG1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A494VUG1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2305508","Mucilaginibacter celer"]]},{"id":"NCBITaxon:2305907","l":"Sphingomonas gilva","na":1,"nb":1,"a":[["TED%3AAF-A0A396RP53-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A396RP53-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2305907","Sphingomonas gilva"]]},{"id":"NCBITaxon:2305909","l":"Mucilaginibacter gilvus","na":1,"nb":1,"a":[["TED%3AAF-A0A3S3VHX5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3S3VHX5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2305909","Mucilaginibacter gilvus"]]},{"id":"NCBITaxon:2306023","l":"Gemmobacter lutimaris","na":1,"nb":1,"a":[["TED%3AAF-A0A398BQ53-F1-model_v4_TED04","TED novel fold AF-A0A398BQ53-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2306023","Gemmobacter lutimaris"]]},{"id":"NCBITaxon:2306054","l":"Rhodothermales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y2CAE0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y2CAE0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2306054","Rhodothermales bacterium"]]},{"id":"NCBITaxon:2306975","l":"Bifidobacterium goeldii","na":1,"nb":1,"a":[["TED%3AAF-A0A430FLK0-F1-model_v4_TED03","TED novel fold AF-A0A430FLK0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2306975","Bifidobacterium goeldii"]]},{"id":"NCBITaxon:2306998","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A3A1NM92-F1-model_v4_TED01","TED novel fold AF-A0A3A1NM92-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2306998","Flagellimonas pelagia"]]},{"id":"NCBITaxon:2307003","l":"Aurantiacibacter zhengii","na":1,"nb":1,"a":[["TED%3AAF-A0A418NVT8-F1-model_v4_TED01","TED novel fold AF-A0A418NVT8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2307003","Aurantiacibacter zhengii"]]},{"id":"NCBITaxon:2307007","l":"Aromatoleum sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A6N9R918-F1-model_v4_TED06","TED novel fold AF-A0A6N9R918-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A2307007","Aromatoleum sp."]]},{"id":"NCBITaxon:2315236","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A480AP83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A480AP83-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2315236","Pseudaquabacterium pictum"]]},{"id":"NCBITaxon:2315329","l":"Streptomyces sporangiiformans","na":1,"nb":1,"a":[["TED%3AAF-A0A505DC79-F1-model_v4_TED01","TED novel fold AF-A0A505DC79-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2315329","Streptomyces sporangiiformans"]]},{"id":"NCBITaxon:2316362","l":"Candolleomyces aberdarensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q2D4N0-F1-model_v4_TED01","TED novel fold AF-A0A4Q2D4N0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2316362","Candolleomyces aberdarensis"]]},{"id":"NCBITaxon:2316716","l":"Corallococcus sp. AB030","na":1,"nb":1,"a":[["TED%3AAF-A0A3A8ULP0-F1-model_v4_TED01","TED novel fold AF-A0A3A8ULP0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2316716","Corallococcus sp. AB030"]]},{"id":"NCBITaxon:2316718","l":"Corallococcus sp. AB038B","na":1,"nb":1,"a":[["TED%3AAF-A0A3A8TYU4-F1-model_v4_TED01","TED novel fold AF-A0A3A8TYU4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2316718","Corallococcus sp. AB038B"]]},{"id":"NCBITaxon:2316720","l":"Corallococcus interemptor","na":1,"nb":1,"a":[["TED%3AAF-A0A3A8Q6H5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3A8Q6H5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2316720","Corallococcus interemptor"]]},{"id":"NCBITaxon:2316722","l":"Corallococcus aberystwythensis","na":1,"nb":1,"a":[["TED%3AAF-A0A3A8P7F2-F1-model_v4_TED01","TED novel fold AF-A0A3A8P7F2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2316722","Corallococcus aberystwythensis"]]},{"id":"NCBITaxon:2316726","l":"Corallococcus sicarius","na":1,"nb":1,"a":[["TED%3AAF-A0A3A8MYI2-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A3A8MYI2-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2316726","Corallococcus sicarius"]]},{"id":"NCBITaxon:2316728","l":"Corallococcus carmarthensis","na":1,"nb":1,"a":[["TED%3AAF-A0A3A8K3V0-F1-model_v4_TED03","TED novel fold AF-A0A3A8K3V0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2316728","Corallococcus carmarthensis"]]},{"id":"NCBITaxon:2316731","l":"Corallococcus llansteffanensis","na":1,"nb":1,"a":[["TED%3AAF-A0A3A8PPT6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3A8PPT6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2316731","Corallococcus llansteffanensis"]]},{"id":"NCBITaxon:2316732","l":"Corallococcus sp. CA053C","na":1,"nb":1,"a":[["TED%3AAF-A0A3A8J8M5-F1-model_v4_TED02","TED novel fold AF-A0A3A8J8M5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2316732","Corallococcus sp. CA053C"]]},{"id":"NCBITaxon:2316734","l":"Corallococcus sp. CA054B","na":1,"nb":1,"a":[["TED%3AAF-A0A3A8H705-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A8H705-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2316734","Corallococcus sp. CA054B"]]},{"id":"NCBITaxon:2316735","l":"Corallococcus sp. AB011P","na":1,"nb":1,"a":[["TED%3AAF-A0A3A8GFM2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3A8GFM2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2316735","Corallococcus sp. AB011P"]]},{"id":"NCBITaxon:2319844","l":"Sphingomonas paeninsulae","na":1,"nb":1,"a":[["TED%3AAF-A0A494T9D4-F1-model_v4_TED01","TED novel fold AF-A0A494T9D4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2319844","Sphingomonas paeninsulae"]]},{"id":"NCBITaxon:232","l":"Alteromonas sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2D9B6J8-F1-model_v4_TED01","TED novel fold AF-A0A2D9B6J8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A232","Alteromonas sp."]]},{"id":"NCBITaxon:2320099","l":"bacterium 0.1xD8-71","na":1,"nb":1,"a":[["TED%3AAF-A0A3A9AH35-F1-model_v4_TED03","TED novel fold AF-A0A3A9AH35-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2320099","bacterium 0.1xD8-71"]]},{"id":"NCBITaxon:2320102","l":"bacterium 1XD42-8","na":1,"nb":1,"a":[["TED%3AAF-A0A3A9FTI0-F1-model_v4_TED03","TED novel fold AF-A0A3A9FTI0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2320102","bacterium 1XD42-8"]]},{"id":"NCBITaxon:2320107","l":"bacterium 1xD42-67","na":1,"nb":1,"a":[["TED%3AAF-A0A3A8YJJ5-F1-model_v4_TED01","TED novel fold AF-A0A3A8YJJ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2320107","bacterium 1xD42-67"]]},{"id":"NCBITaxon:2320112","l":"bacterium D16-50","na":1,"nb":1,"a":[["TED%3AAF-A0A3A9DC66-F1-model_v4_TED02","TED novel fold AF-A0A3A9DC66-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2320112","bacterium D16-50"]]},{"id":"NCBITaxon:2320115","l":"bacterium 1XD8-76","na":1,"nb":1,"a":[["TED%3AAF-A0A3A9FA06-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A9FA06-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2320115","bacterium 1XD8-76"]]},{"id":"NCBITaxon:2320122","l":"bacterium J10(2018)","na":1,"nb":1,"a":[["TED%3AAF-A0A3L8A0P8-F1-model_v4_TED01","TED novel fold AF-A0A3L8A0P8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2320122","bacterium J10(2018)"]]},{"id":"NCBITaxon:2320861","l":"Sphingomonas cavernae","na":1,"nb":1,"a":[["TED%3AAF-A0A418W7W4-F1-model_v4_TED01","TED novel fold AF-A0A418W7W4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2320861","Sphingomonas cavernae"]]},{"id":"NCBITaxon:2320862","l":"Noviherbaspirillum cavernae","na":1,"nb":1,"a":[["TED%3AAF-A0A418X340-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A418X340-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2320862","Noviherbaspirillum cavernae"]]},{"id":"NCBITaxon:2320867","l":"Pseudomonas cavernae","na":1,"nb":1,"a":[["TED%3AAF-A0A385Z222-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A385Z222-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2320867","Pseudomonas cavernae"]]},{"id":"NCBITaxon:2320884","l":"bacterium 1XD8-92","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q2BN90-F1-model_v4_TED03","TED novel fold AF-A0A4Q2BN90-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2320884","bacterium 1XD8-92"]]},{"id":"NCBITaxon:232346","l":"Halomonas alkaliantarctica","na":1,"nb":1,"a":[["TED%3AAF-A0A4R7Y984-F1-model_v4_TED01","TED novel fold AF-A0A4R7Y984-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A115551","Vreelandella neptunia"]]},{"id":"NCBITaxon:2340725","l":"Streptomyces bauhiniae","na":1,"nb":1,"a":[["TED%3AAF-A0A4Z1CTK4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Z1CTK4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2340725","Streptomyces bauhiniae"]]},{"id":"NCBITaxon:2340916","l":"Nocardia panacis","na":1,"nb":1,"a":[["TED%3AAF-A0A3A4KXJ6-F1-model_v4_TED02","TED novel fold AF-A0A3A4KXJ6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2340916","Nocardia panacis"]]},{"id":"NCBITaxon:2341115","l":"Bradyrhizobium sp. LVM 105","na":1,"nb":1,"a":[["TED%3AAF-A0A5E8V541-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5E8V541-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2341115","Bradyrhizobium sp. LVM 105"]]},{"id":"NCBITaxon:234621","l":"Rhodococcus erythropolis PR4","na":1,"nb":1,"a":[["TED%3AAF-C0ZLI2-F1-model_v4_TED01","TED novel fold AF-C0ZLI2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A234621","Rhodococcus erythropolis PR4"]]},{"id":"NCBITaxon:2358142","l":"Microcystis aeruginosa 11-30S32","na":1,"nb":1,"a":[["TED%3AAF-A0A510PNA6-F1-model_v4_TED02","TED novel fold AF-A0A510PNA6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2358142","Microcystis aeruginosa 11-30S32"]]},{"id":"NCBITaxon:2358460","l":"Nitrospirales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7W1Z1J8-F1-model_v4_TED02","TED novel fold AF-A0A7W1Z1J8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2358460","Nitrospirales bacterium"]]},{"id":"NCBITaxon:2364879","l":"Butyrivibrio sp. CB08","na":1,"nb":1,"a":[["TED%3AAF-A0A3A9TL31-F1-model_v4_TED01","TED novel fold AF-A0A3A9TL31-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2364879","Butyrivibrio sp. CB08"]]},{"id":"NCBITaxon:237018","l":"Algoriphagus aquimarinus","na":1,"nb":1,"a":[["TED%3AAF-A0A5C7AAU4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5C7AAU4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A237018","Algoriphagus aquimarinus"]]},{"id":"NCBITaxon:237610","l":"Pseudomonas psychrotolerans","na":1,"nb":1,"a":[["TED%3AAF-A0A1G5PDN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G5PDN6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A47885","Pseudomonas oryzihabitans"]]},{"id":"NCBITaxon:237656","l":"Pseudonocardia antarctica","na":1,"nb":1,"a":[["TED%3AAF-A0A852WGN1-F1-model_v4_TED01","TED novel fold AF-A0A852WGN1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A33907","Pseudonocardia alni"]]},{"id":"NCBITaxon:2377","l":"Sporomusa termitida","na":1,"nb":1,"a":[["TED%3AAF-A0A517DX57-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A517DX57-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2377","Sporomusa termitida"]]},{"id":"NCBITaxon:2382124","l":"Cardiobacterium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A660MDG5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A660MDG5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2382124","Cardiobacterium sp."]]},{"id":"NCBITaxon:2382229","l":"Bacteroidetes/Chlorobi group bacterium Naka2016","na":1,"nb":1,"a":[["TED%3AAF-A0A3N0ZIA2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N0ZIA2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2382229","Bacteroidetes/Chlorobi group bacterium Naka2016"]]},{"id":"NCBITaxon:238540","l":"Algoriphagus antarcticus","na":1,"nb":1,"a":[["TED%3AAF-A0A3E0D6W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3E0D6W3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A238540","Algoriphagus antarcticus"]]},{"id":"NCBITaxon:238800","l":"Rickettsia asiatica","na":1,"nb":1,"a":[["TED%3AAF-A0A510G767-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A510G767-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A238800","Rickettsia asiatica"]]},{"id":"NCBITaxon:240499","l":"Calcarisporium arbuscula","na":1,"nb":1,"a":[["Pfam%3APF28402","Pneumocandin biosynthesis cluster protein B C-terminal domain"]],"b":[["NCBITaxon%3A240499","Calcarisporium arbuscula"]]},{"id":"NCBITaxon:241244","l":"Rummeliibacillus stabekisii","na":1,"nb":1,"a":[["TED%3AAF-A0A511BZV1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A511BZV1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A241244","Rummeliibacillus stabekisii"]]},{"id":"NCBITaxon:2419777","l":"Trinickia fusca","na":1,"nb":1,"a":[["TED%3AAF-A0A494XH39-F1-model_v4_TED01","TED novel fold AF-A0A494XH39-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2419777","Trinickia fusca"]]},{"id":"NCBITaxon:2419984","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A3M1RQX1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3M1RQX1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2419984","Candidatus Schekmanbacteria bacterium"]]},{"id":"NCBITaxon:244362","l":"Ruminococcus sp. YE71","na":1,"nb":1,"a":[["TED%3AAF-A0A1K1MJM1-F1-model_v4_TED01","TED novel fold AF-A0A1K1MJM1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A244362","Ruminococcus sp. YE71"]]},{"id":"NCBITaxon:2447956","l":"Antrodiella citrinella","na":1,"nb":1,"a":[["TED%3AAF-A0A4S4N318-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S4N318-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2447956","Antrodiella citrinella"]]},{"id":"NCBITaxon:2448056","l":"Nitriliruptor sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A651GEH8-F1-model_v4_TED01","TED novel fold AF-A0A651GEH8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2448056","Nitriliruptor sp."]]},{"id":"NCBITaxon:244830","l":"Anaerospora hongkongensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4R1PSF8-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A4R1PSF8-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A244830","Anaerospora hongkongensis"]]},{"id":"NCBITaxon:245014","l":"butyrate-producing bacterium SS3/4","na":1,"nb":1,"a":[["TED%3AAF-D7GQM5-F1-model_v4_TED01","TED novel fold AF-D7GQM5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A245014","butyrate-producing bacterium SS3/4"]]},{"id":"NCBITaxon:245739","l":"","na":1,"nb":1,"a":[["Pfam%3APF22862","Halocin C8-like N-terminal domain"]],"b":[["NCBITaxon%3A245739","Halobacterium sp. AS7092"]]},{"id":"NCBITaxon:246264","l":"Hydrogenivirga caldilitoris","na":1,"nb":1,"a":[["TED%3AAF-A0A497XPR0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A497XPR0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A246264","Hydrogenivirga caldilitoris"]]},{"id":"NCBITaxon:247633","l":"marine gamma proteobacterium HTCC2143","na":1,"nb":1,"a":[["TED%3AAF-A0YB29-F1-model_v4_TED02","TED novel fold AF-A0YB29-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A247633","marine gamma proteobacterium HTCC2143"]]},{"id":"NCBITaxon:2478479","l":"Deinococcales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A847HTL5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A847HTL5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2478479","Deinococcales bacterium"]]},{"id":"NCBITaxon:2478537","l":"Spiroplasma endosymbiont of Megaselia nigra","na":1,"nb":1,"a":[["TED%3AAF-A0A3S0YN18-F1-model_v4_TED01","TED novel fold AF-A0A3S0YN18-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2478537","Spiroplasma endosymbiont of Megaselia nigra"]]},{"id":"NCBITaxon:2478552","l":"Flavobacterium sp. 140616W15","na":1,"nb":1,"a":[["TED%3AAF-A0A3G2GIX5-F1-model_v4_TED01","TED novel fold AF-A0A3G2GIX5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2478552","Flavobacterium sp. 140616W15"]]},{"id":"NCBITaxon:2478556","l":"Nitrosopumilus sp. H13","na":1,"nb":1,"a":[["TED%3AAF-A0A3M9ZZR2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3M9ZZR2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2478556","Nitrosopumilus sp. H13"]]},{"id":"NCBITaxon:2478558","l":"Thaumarchaeota archaeon S14","na":1,"nb":1,"a":[["TED%3AAF-A0A3M9ZMB6-F1-model_v4_TED01","TED novel fold AF-A0A3M9ZMB6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2478558","Thaumarchaeota archaeon S14"]]},{"id":"NCBITaxon:2478957","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A652M130-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A652M130-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2478957","Streptomyces sp. OR43"]]},{"id":"NCBITaxon:2478958","l":"Streptomyces sp. col6","na":1,"nb":1,"a":[["TED%3AAF-A0A6I7Y0W7-F1-model_v4_TED02","TED novel fold AF-A0A6I7Y0W7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2478958","Streptomyces sp. col6"]]},{"id":"NCBITaxon:2479048","l":"Granulicella sibirica","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q0SZE6-F1-model_v4_TED01","TED novel fold AF-A0A4Q0SZE6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2479048","Granulicella sibirica"]]},{"id":"NCBITaxon:2480211","l":"Leptolyngbya sp. LCM1.Bin17","na":1,"nb":1,"a":[["TED%3AAF-A0A6H2NM33-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6H2NM33-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2480211","Leptolyngbya sp. LCM1.Bin17"]]},{"id":"NCBITaxon:2480805","l":"Alteromonas sp. KUL150","na":1,"nb":1,"a":[["TED%3AAF-A0A640QLQ6-F1-model_v4_TED01","TED novel fold AF-A0A640QLQ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2480805","Alteromonas sp. KUL150"]]},{"id":"NCBITaxon:2480908","l":"[Mycobacterium] chelonae subsp. gwanakae","na":1,"nb":1,"a":[["TED%3AAF-A0A809GZX1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A809GZX1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2480908","[Mycobacterium] chelonae subsp. gwanakae"]]},{"id":"NCBITaxon:2482727","l":"Mucilaginibacter terrenus","na":1,"nb":1,"a":[["TED%3AAF-A0A3E2NY53-F1-model_v4_TED04","TED novel fold AF-A0A3E2NY53-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2482727","Mucilaginibacter terrenus"]]},{"id":"NCBITaxon:2483403","l":"Mesorhizobium sp. NZP2298","na":1,"nb":1,"a":[["TED%3AAF-A0A6M7W8G8-F1-model_v4_TED05","TED novel fold AF-A0A6M7W8G8-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2483403","Mesorhizobium sp. NZP2298"]]},{"id":"NCBITaxon:2483812","l":"Pseudogemmobacter humi","na":1,"nb":1,"a":[["TED%3AAF-A0A3P5WW18-F1-model_v4_TED01","TED novel fold AF-A0A3P5WW18-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2483812","Pseudogemmobacter humi"]]},{"id":"NCBITaxon:2484950","l":"Leptospira koniambonensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4R9JDH9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R9JDH9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2484950","Leptospira koniambonensis"]]},{"id":"NCBITaxon:2484976","l":"Leptospira andrefontaineae","na":1,"nb":1,"a":[["TED%3AAF-A0A4R9H1E3-F1-model_v4_TED01","TED novel fold AF-A0A4R9H1E3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2484976","Leptospira andrefontaineae"]]},{"id":"NCBITaxon:2485118","l":"Enterobacter sp. BIGb0383","na":1,"nb":1,"a":[["TED%3AAF-A0A3N1IS18-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N1IS18-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2485118","Enterobacter sp. BIGb0383"]]},{"id":"NCBITaxon:2485123","l":"Photobacterium chitinilyticum","na":1,"nb":1,"a":[["TED%3AAF-A0A3S3SZC5-F1-model_v4_TED01","TED novel fold AF-A0A3S3SZC5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2485123","Photobacterium chitinilyticum"]]},{"id":"NCBITaxon:2485153","l":"Streptomyces sp. CEV 2-1","na":1,"nb":1,"a":[["TED%3AAF-A0A3N1SQW1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N1SQW1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2485153","Streptomyces sp. CEV 2-1"]]},{"id":"NCBITaxon:2485167","l":"Bradyrhizobium sp. Y-H1","na":1,"nb":1,"a":[["TED%3AAF-A0A4R3TUN0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R3TUN0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2485167","Bradyrhizobium sp. Y-H1"]]},{"id":"NCBITaxon:2485168","l":"Methylosinus sp. sav-2","na":1,"nb":1,"a":[["TED%3AAF-A0A4R8HS43-F1-model_v4_TED01","TED novel fold AF-A0A4R8HS43-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2485168","Methylosinus sp. sav-2"]]},{"id":"NCBITaxon:2485180","l":"Curtobacterium sp. PhB134","na":1,"nb":1,"a":[["TED%3AAF-A0A4R1TTQ2-F1-model_v4_TED02","TED novel fold AF-A0A4R1TTQ2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2485180","Curtobacterium sp. PhB134"]]},{"id":"NCBITaxon:2485187","l":"Curtobacterium sp. PhB146","na":1,"nb":1,"a":[["TED%3AAF-A0A4R3SK95-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R3SK95-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2485187","Curtobacterium sp. PhB146"]]},{"id":"NCBITaxon:2485484","l":"Nostoc sp. 2RC","na":1,"nb":1,"a":[["TED%3AAF-A0A841WKU9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841WKU9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2485484","Nostoc sp. 2RC"]]},{"id":"NCBITaxon:2486251","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A552FML4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A552FML4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2486251","Microcystis aeruginosa Ma_QC_Ca_00000000_S207"]]},{"id":"NCBITaxon:2486264","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A551ZTV0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A551ZTV0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2486264","Microcystis aeruginosa Ma_AC_P_19900807_S299"]]},{"id":"NCBITaxon:2486266","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A552IW16-F1-model_v4_TED01","TED novel fold AF-A0A552IW16-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2486266","Microcystis novacekii Mn_MB_F_20050700_S1D"]]},{"id":"NCBITaxon:2486270","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A552H5C1-F1-model_v4_TED02","TED novel fold AF-A0A552H5C1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2486270","Microcystis viridis Mv_BB_P_19951000_S68D"]]},{"id":"NCBITaxon:2486462","l":"Muribaculaceae bacterium Isolate-042 (Harlan)","na":1,"nb":1,"a":[["TED%3AAF-A0A3N2KBF0-F1-model_v4_TED02","TED novel fold AF-A0A3N2KBF0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2486462","Muribaculaceae bacterium Isolate-042 (Harlan)"]]},{"id":"NCBITaxon:2486466","l":"Muribaculaceae bacterium Isolate-039 (Harlan)","na":1,"nb":1,"a":[["TED%3AAF-A0A3N2K9Y4-F1-model_v4_TED04","TED novel fold AF-A0A3N2K9Y4-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2486466","Muribaculaceae bacterium Isolate-039 (Harlan)"]]},{"id":"NCBITaxon:2486467","l":"Muribaculaceae bacterium Isolate-077 (Janvier)","na":1,"nb":1,"a":[["TED%3AAF-A0A3N2LBZ0-F1-model_v4_TED06","TED novel fold AF-A0A3N2LBZ0-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A2486467","Muribaculaceae bacterium Isolate-077 (Janvier)"]]},{"id":"NCBITaxon:2486468","l":"Muribaculaceae bacterium Isolate-080 (Janvier)","na":1,"nb":1,"a":[["TED%3AAF-A0A3N2KRD5-F1-model_v4_TED01","TED novel fold AF-A0A3N2KRD5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2486468","Muribaculaceae bacterium Isolate-080 (Janvier)"]]},{"id":"NCBITaxon:2487017","l":"Ancylomarina longa","na":1,"nb":1,"a":[["TED%3AAF-A0A434AXK3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A434AXK3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2487017","Ancylomarina longa"]]},{"id":"NCBITaxon:2487066","l":"Chryseobacterium sp. G0240","na":1,"nb":1,"a":[["TED%3AAF-A0A3N0WP96-F1-model_v4_TED01","TED novel fold AF-A0A3N0WP96-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2487066","Chryseobacterium sp. G0240"]]},{"id":"NCBITaxon:2487137","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A3N0EGX0-F1-model_v4_TED01","TED novel fold AF-A0A3N0EGX0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2487137","Halostreptopolyspora alba"]]},{"id":"NCBITaxon:2487322","l":"Vibrio viridaestus","na":1,"nb":1,"a":[["TED%3AAF-A0A3N9TGN7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3N9TGN7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2487322","Vibrio viridaestus"]]},{"id":"NCBITaxon:2487337","l":"Pseudanabaena sp. UWO311","na":1,"nb":1,"a":[["TED%3AAF-A0A6N2K1G6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N2K1G6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2487337","Pseudanabaena sp. UWO311"]]},{"id":"NCBITaxon:2487352","l":"Rhodococcus spongiicola","na":1,"nb":1,"a":[["TED%3AAF-A0A438APS3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A438APS3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2487352","Rhodococcus spongiicola"]]},{"id":"NCBITaxon:2487416","l":"Streptomyces sp. WAC06614","na":1,"nb":1,"a":[["TED%3AAF-A0A3R9VE74-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A3R9VE74-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2487416","Streptomyces sp. WAC06614"]]},{"id":"NCBITaxon:2487722","l":"Levilactobacillus suantsaiihabitans","na":1,"nb":1,"a":[["TED%3AAF-A0A4Z0J8A0-F1-model_v4_TED01","TED novel fold AF-A0A4Z0J8A0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2487722","Levilactobacillus suantsaiihabitans"]]},{"id":"NCBITaxon:2487897","l":"Cyclobacteriaceae bacterium YHN15","na":1,"nb":1,"a":[["TED%3AAF-A0A3N4H952-F1-model_v4_TED02","TED novel fold AF-A0A3N4H952-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2487897","Cyclobacteriaceae bacterium YHN15"]]},{"id":"NCBITaxon:2487931","l":"Pseudorhodobacter sp. E13","na":1,"nb":1,"a":[["TED%3AAF-A0A3S0Z2P2-F1-model_v4_TED02","TED novel fold AF-A0A3S0Z2P2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2487931","Pseudorhodobacter sp. E13"]]},{"id":"NCBITaxon:2488728","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A3P3W2W0-F1-model_v4_TED03","TED novel fold AF-A0A3P3W2W0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2488728","Paenimyroides tangerinum"]]},{"id":"NCBITaxon:2488730","l":"Falsigemmobacter faecalis","na":1,"nb":1,"a":[["TED%3AAF-A0A3P3DJT5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3P3DJT5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2488730","Falsigemmobacter faecalis"]]},{"id":"NCBITaxon:2488809","l":"Verrucomicrobia bacterium S94","na":1,"nb":1,"a":[["TED%3AAF-A0A4P6PDV8-F1-model_v4_TED01","TED novel fold AF-A0A4P6PDV8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2488809","Verrucomicrobia bacterium S94"]]},{"id":"NCBITaxon:248906","l":"Zobellia laminariae","na":1,"nb":1,"a":[["TED%3AAF-A0A844N883-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A844N883-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A248906","Zobellia laminariae"]]},{"id":"NCBITaxon:2489215","l":"Muribaculaceae bacterium Isolate-002 (NCI)","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q0IZI5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q0IZI5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2489215","Muribaculaceae bacterium Isolate-002 (NCI)"]]},{"id":"NCBITaxon:2490491","l":"Salinivibrio sp. VYel4","na":1,"nb":1,"a":[["TED%3AAF-A0A5N8T8K3-F1-model_v4_TED01","TED novel fold AF-A0A5N8T8K3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2490491","Salinivibrio sp. VYel4"]]},{"id":"NCBITaxon:2490543","l":"Rapeseed phyllody phytoplasma","na":1,"nb":1,"a":[["TED%3AAF-A0A859I9R5-F1-model_v4_TED01","TED novel fold AF-A0A859I9R5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2490543","Rapeseed phyllody phytoplasma"]]},{"id":"NCBITaxon:2490544","l":"Amphritea opalescens","na":1,"nb":1,"a":[["TED%3AAF-A0A430KT01-F1-model_v4_TED01","TED novel fold AF-A0A430KT01-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2490544","Amphritea opalescens"]]},{"id":"NCBITaxon:2490633","l":"Streptococcus periodonticum","na":1,"nb":1,"a":[["TED%3AAF-A0A3S9MQ51-F1-model_v4_TED01","TED novel fold AF-A0A3S9MQ51-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2490633","Streptococcus periodonticum"]]},{"id":"NCBITaxon:2490854","l":"Prevotella koreensis","na":1,"nb":1,"a":[["TED%3AAF-A0A3S0RAS3-F1-model_v4_TED01","TED novel fold AF-A0A3S0RAS3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2490854","Prevotella koreensis"]]},{"id":"NCBITaxon:2490863","l":"Thermosporothrix sp. COM3","na":1,"nb":1,"a":[["TED%3AAF-A0A455SY61-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A455SY61-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2490863","Thermosporothrix sp. COM3"]]},{"id":"NCBITaxon:2491050","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A3P1VN80-F1-model_v4_TED01","TED novel fold AF-A0A3P1VN80-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2491050","Leucobacter sp. OH2974_COT-288"]]},{"id":"NCBITaxon:2491057","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A3P1XLP3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3P1XLP3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2491057","Comamonadaceae bacterium OH2545_COT-014"]]},{"id":"NCBITaxon:2491082","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A520JYC5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A520JYC5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2491082","Candidatus Methanophagales archaeon ANME-1-THS"]]},{"id":"NCBITaxon:2492393","l":"Emticicia agri","na":1,"nb":1,"a":[["TED%3AAF-A0A4V1ZCT7-F1-model_v4_TED01","TED novel fold AF-A0A4V1ZCT7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2492393","Emticicia agri"]]},{"id":"NCBITaxon:2493092","l":"Aquabacterium soli","na":1,"nb":1,"a":[["TED%3AAF-A0A3R8T4B2-F1-model_v4_TED02","TED novel fold AF-A0A3R8T4B2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2493092","Aquabacterium soli"]]},{"id":"NCBITaxon:2493553","l":"Glycomyces terrestris","na":1,"nb":1,"a":[["TED%3AAF-A0A426UYJ2-F1-model_v4_TED03","TED novel fold AF-A0A426UYJ2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2493553","Glycomyces terrestris"]]},{"id":"NCBITaxon:2493665","l":"Ammoniphilus sp. CFH 90114","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q1SS73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q1SS73-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2493665","Ammoniphilus sp. CFH 90114"]]},{"id":"NCBITaxon:2494326","l":"Candidatus Jettenia ecosi","na":1,"nb":1,"a":[["TED%3AAF-A0A533QC19-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A533QC19-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2494326","Candidatus Jettenia ecosi"]]},{"id":"NCBITaxon:2494375","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A410G7M8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A410G7M8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2494375","Aequorivita ciconiae"]]},{"id":"NCBITaxon:2495421","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A428J8G1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A428J8G1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2495421","Bacillus salinus"]]},{"id":"NCBITaxon:249581","l":"Streptomyces ossamyceticus","na":1,"nb":1,"a":[["TED%3AAF-A0A3N1M1Z0-F1-model_v4_TED02","TED novel fold AF-A0A3N1M1Z0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A249581","Streptomyces ossamyceticus"]]},{"id":"NCBITaxon:2496694","l":"Mesorhizobium sp. M7A.F.Ca.CA.004.05.1.1","na":1,"nb":1,"a":[["TED%3AAF-A0A436EZH3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A436EZH3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2496694","Mesorhizobium sp. M7A.F.Ca.CA.004.05.1.1"]]},{"id":"NCBITaxon:2496729","l":"Mesorhizobium sp. M7A.F.Ca.CA.001.13.2.1","na":1,"nb":1,"a":[["TED%3AAF-A0A435IV59-F1-model_v4_TED02","TED novel fold AF-A0A435IV59-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2496729","Mesorhizobium sp. M7A.F.Ca.CA.001.13.2.1"]]},{"id":"NCBITaxon:2496739","l":"Mesorhizobium sp. M7A.F.Ca.CA.002.09.1.1","na":1,"nb":1,"a":[["TED%3AAF-A0A435B3N0-F1-model_v4_TED03","TED novel fold AF-A0A435B3N0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2496739","Mesorhizobium sp. M7A.F.Ca.CA.002.09.1.1"]]},{"id":"NCBITaxon:2496741","l":"Mesorhizobium sp. M7A.F.Ca.US.011.01.1.1","na":1,"nb":1,"a":[["TED%3AAF-A0A434ZTM9-F1-model_v4_TED02","TED novel fold AF-A0A434ZTM9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2496741","Mesorhizobium sp. M7A.F.Ca.US.011.01.1.1"]]},{"id":"NCBITaxon:2496836","l":"Streptomyces cyaneochromogenes","na":1,"nb":1,"a":[["TED%3AAF-A0A3S9M1D4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S9M1D4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2496836","Streptomyces cyaneochromogenes"]]},{"id":"NCBITaxon:2497483","l":"Flavobacterium bomense","na":1,"nb":1,"a":[["TED%3AAF-A0A3S0MKL8-F1-model_v4_TED02","TED novel fold AF-A0A3S0MKL8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2497483","Flavobacterium bomense"]]},{"id":"NCBITaxon:2498111","l":"Legionella sp. km772","na":1,"nb":1,"a":[["TED%3AAF-A0A433JX48-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A433JX48-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2498111","Legionella sp. km772"]]},{"id":"NCBITaxon:2498135","l":"Streptomonospora litoralis","na":1,"nb":1,"a":[["TED%3AAF-A0A4V0ZJD0-F1-model_v4_TED03","TED novel fold AF-A0A4V0ZJD0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2498135","Streptomonospora litoralis"]]},{"id":"NCBITaxon:2498892","l":"Maribacter algicola","na":1,"nb":1,"a":[["TED%3AAF-A0A426RLJ0-F1-model_v4_TED01","TED novel fold AF-A0A426RLJ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2498892","Maribacter algicola"]]},{"id":"NCBITaxon:2499078","l":"Vibrio ouci","na":1,"nb":1,"a":[["TED%3AAF-A0A4Y8WAE7-F1-model_v4_TED01","TED novel fold AF-A0A4Y8WAE7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2499078","Vibrio ouci"]]},{"id":"NCBITaxon:2499833","l":"Aliishimia ponticola","na":1,"nb":1,"a":[["TED%3AAF-A0A4S4NE60-F1-model_v4_TED02","TED novel fold AF-A0A4S4NE60-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2499833","Aliishimia ponticola"]]},{"id":"NCBITaxon:2500177","l":"Streptomyces sp. Z26","na":1,"nb":1,"a":[["TED%3AAF-A0A498DJ61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A498DJ61-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2500177","Streptomyces sp. Z26"]]},{"id":"NCBITaxon:2501297","l":"Hydrotalea sp. AMD","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q0AVN0-F1-model_v4_TED05","TED novel fold AF-A0A4Q0AVN0-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2501297","Hydrotalea sp. AMD"]]},{"id":"NCBITaxon:2501298","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A658NLS6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A658NLS6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2501298","Citrobacter sp. AAK_AS5"]]},{"id":"NCBITaxon:2501609","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A410FT40-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A410FT40-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2501609","Candidatus Bipolaricaulis sibiricus"]]},{"id":"NCBITaxon:2502781","l":"Hymenobacter jejuensis","na":1,"nb":1,"a":[["TED%3AAF-A0A5B8A5F0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B8A5F0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2502781","Hymenobacter jejuensis"]]},{"id":"NCBITaxon:2502782","l":"Nocardioides jejuensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4R1CJ34-F1-model_v4_TED01","TED novel fold AF-A0A4R1CJ34-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2502782","Nocardioides jejuensis"]]},{"id":"NCBITaxon:2502893","l":"Spirosoma sordidisoli","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q2UM74-F1-model_v4_TED02","TED novel fold AF-A0A4Q2UM74-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2502893","Spirosoma sordidisoli"]]},{"id":"NCBITaxon:2506149","l":"Endozoicomonadaceae bacterium GTF-13","na":1,"nb":1,"a":[["TED%3AAF-A0A444GPN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A444GPN7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2506149","Endozoicomonadaceae bacterium GTF-13"]]},{"id":"NCBITaxon:2506420","l":"Periweissella cryptocerci","na":1,"nb":1,"a":[["TED%3AAF-A0A4P6YRY8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P6YRY8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2506420","Periweissella cryptocerci"]]},{"id":"NCBITaxon:2506423","l":"Sphingobium fluviale","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q1KDC5-F1-model_v4_TED01","TED novel fold AF-A0A4Q1KDC5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2506423","Sphingobium fluviale"]]},{"id":"NCBITaxon:2506452","l":"Corynebacterium suranareeae","na":1,"nb":1,"a":[["TED%3AAF-A0A160PR52-F1-model_v4_TED02","TED novel fold AF-A0A160PR52-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2506452","Corynebacterium suranareeae"]]},{"id":"NCBITaxon:2506947","l":"Candidatus Chaera renei","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q0AG16-F1-model_v4_TED02","TED novel fold AF-A0A4Q0AG16-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2506947","Candidatus Chaera renei"]]},{"id":"NCBITaxon:2506948","l":"Candidatus Microsaccharimonas sossegonensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q0AGU7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A4Q0AGU7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2506948","Candidatus Microsaccharimonas sossegonensis"]]},{"id":"NCBITaxon:2507075","l":"Methanosarcina sp. MSH10X1","na":1,"nb":1,"a":[["TED%3AAF-A0A498GTE2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A498GTE2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2507075","Methanosarcina sp. MSH10X1"]]},{"id":"NCBITaxon:2507162","l":"Caproiciproducens sp. NJN-50","na":1,"nb":1,"a":[["TED%3AAF-A0A410Q502-F1-model_v4_TED01","TED novel fold AF-A0A410Q502-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2507162","Caproiciproducens sp. NJN-50"]]},{"id":"NCBITaxon:2507566","l":"Chengkuizengella marina","na":1,"nb":1,"a":[["TED%3AAF-A0A6N9Q6Q8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N9Q6Q8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2507566","Chengkuizengella marina"]]},{"id":"NCBITaxon:2508301","l":"Pandoraea anapnoica","na":1,"nb":1,"a":[["TED%3AAF-A0A5E5A4K9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5E5A4K9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2508301","Pandoraea anapnoica"]]},{"id":"NCBITaxon:2508721","l":"Filimonas effusa","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q1D7Q5-F1-model_v4_TED02","TED novel fold AF-A0A4Q1D7Q5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2508721","Filimonas effusa"]]},{"id":"NCBITaxon:2509004","l":"Apibacter muscae","na":1,"nb":1,"a":[["TED%3AAF-A0A563DC02-F1-model_v4_TED03","TED novel fold AF-A0A563DC02-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2509004","Apibacter muscae"]]},{"id":"NCBITaxon:2509241","l":"Aquirufa rosea","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q1C1H3-F1-model_v4_TED01","TED novel fold AF-A0A4Q1C1H3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2509241","Aquirufa rosea"]]},{"id":"NCBITaxon:2509434","l":"Verminephrobacter sp. Larva24","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q2L645-F1-model_v4_TED01","TED novel fold AF-A0A4Q2L645-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2509434","Verminephrobacter sp. Larva24"]]},{"id":"NCBITaxon:2509675","l":"Ktedonosporobacter rubrisoli","na":1,"nb":1,"a":[["TED%3AAF-A0A4V0Z027-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4V0Z027-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2509675","Ktedonosporobacter rubrisoli"]]},{"id":"NCBITaxon:2510334","l":"OM182 bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A520SEU8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A520SEU8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2510334","OM182 bacterium"]]},{"id":"NCBITaxon:2511025","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A4Y9EPB5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Y9EPB5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2511025","Glacieibacterium arshaanense"]]},{"id":"NCBITaxon:2511130","l":"Paraburkholderia sp. UYCP14C","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q6X8N7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q6X8N7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2511130","Paraburkholderia sp. UYCP14C"]]},{"id":"NCBITaxon:2511821","l":"Archaeoglobaceae archaeon","na":1,"nb":1,"a":[["TED%3AAF-A0A7J4ET47-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J4ET47-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2511821","Archaeoglobaceae archaeon"]]},{"id":"NCBITaxon:2511985","l":"Enterobacter cloacae complex sp. 743-2DZ2F-22B","na":1,"nb":1,"a":[["TED%3AAF-A0A4V1RGZ1-F1-model_v4_TED01","TED novel fold AF-A0A4V1RGZ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2511985","Enterobacter cloacae complex sp. 743-2DZ2F-22B"]]},{"id":"NCBITaxon:2511995","l":"Pseudolysobacter antarcticus","na":1,"nb":1,"a":[["TED%3AAF-A0A411HM88-F1-model_v4_TED01","TED novel fold AF-A0A411HM88-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2511995","Pseudolysobacter antarcticus"]]},{"id":"NCBITaxon:2512117","l":"Caulobacter sp. BK020","na":1,"nb":1,"a":[["TED%3AAF-A0A4R3H3Q8-F1-model_v4_TED01","TED novel fold AF-A0A4R3H3Q8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2512117","Caulobacter sp. BK020"]]},{"id":"NCBITaxon:2512127","l":"Streptomyces sp. BK215","na":1,"nb":1,"a":[["TED%3AAF-A0A4R3RKI3-F1-model_v4_TED03","TED novel fold AF-A0A4R3RKI3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2512127","Streptomyces sp. BK215"]]},{"id":"NCBITaxon:2512128","l":"Streptomyces sp. BK387","na":1,"nb":1,"a":[["TED%3AAF-A0A4R2EJ27-F1-model_v4_TED01","TED novel fold AF-A0A4R2EJ27-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2512128","Streptomyces sp. BK387"]]},{"id":"NCBITaxon:2512134","l":"Paenibacillus sp. BK673","na":1,"nb":1,"a":[["TED%3AAF-A0A4V3CHK3-F1-model_v4_TED01","TED novel fold AF-A0A4V3CHK3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2512134","Paenibacillus sp. BK673"]]},{"id":"NCBITaxon:2512146","l":"Micromonospora sp. CNZ295","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q8A7W5-F1-model_v4_TED01","TED novel fold AF-A0A4Q8A7W5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2512146","Micromonospora sp. CNZ295"]]},{"id":"NCBITaxon:2512153","l":"Streptomyces sp. BK674","na":1,"nb":1,"a":[["TED%3AAF-A0A4V2U669-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4V2U669-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2512153","Streptomyces sp. BK674"]]},{"id":"NCBITaxon:2512154","l":"Paenibacillus sp. BK736","na":1,"nb":1,"a":[["TED%3AAF-A0A4R3CPT4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4R3CPT4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2512154","Paenibacillus sp. BK736"]]},{"id":"NCBITaxon:2512165","l":"Mycobacterium sp. BK086","na":1,"nb":1,"a":[["TED%3AAF-A0A4R6I244-F1-model_v4_TED01","TED novel fold AF-A0A4R6I244-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2512165","Mycobacterium sp. BK086"]]},{"id":"NCBITaxon:2512167","l":"Streptomyces sp. BK561","na":1,"nb":1,"a":[["TED%3AAF-A0A4R7ANN1-F1-model_v4_TED01","TED novel fold AF-A0A4R7ANN1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2512167","Streptomyces sp. BK561"]]},{"id":"NCBITaxon:2512181","l":"Bacillus sp. BK100","na":1,"nb":1,"a":[["TED%3AAF-A0A4R2A5C6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R2A5C6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2512181","Bacillus sp. BK100"]]},{"id":"NCBITaxon:251221","l":"","na":1,"nb":1,"a":[["TED%3AAF-Q7NJ19-F1-model_v4_TED02","TED highly-symmetric fold AF-Q7NJ19-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A251221","Gloeobacter violaceus PCC 7421"]]},{"id":"NCBITaxon:2512217","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A4R2IIL2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R2IIL2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2512217","Kribbella antiqua"]]},{"id":"NCBITaxon:2512218","l":"Kribbella sp. VKM Ac-2566","na":1,"nb":1,"a":[["TED%3AAF-A0A4R8DKU6-F1-model_v4_TED05","TED novel fold AF-A0A4R8DKU6-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2512218","Kribbella sp. VKM Ac-2566"]]},{"id":"NCBITaxon:2512221","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A4R7ZLA8-F1-model_v4_TED01","TED novel fold AF-A0A4R7ZLA8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2512221","Kribbella kalugense"]]},{"id":"NCBITaxon:2512240","l":"Sulfolobus sp. S-194","na":1,"nb":1,"a":[["TED%3AAF-A0A6H0TUT9-F1-model_v4_TED02","TED novel fold AF-A0A6H0TUT9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2512240","Sulfolobus sp. S-194"]]},{"id":"NCBITaxon:2516328","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q5L2J3-F1-model_v4_TED01","TED novel fold AF-A0A4Q5L2J3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2516328","Methylolobus aquaticus"]]},{"id":"NCBITaxon:2516559","l":"Aquirufa antheringensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q9BGF9-F1-model_v4_TED03","TED novel fold AF-A0A4Q9BGF9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2516559","Aquirufa antheringensis"]]},{"id":"NCBITaxon:2517818","l":"Streptomyces sp. IB2014 016-6","na":1,"nb":1,"a":[["TED%3AAF-A0A5C8QPQ9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5C8QPQ9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2517818","Streptomyces sp. IB2014 016-6"]]},{"id":"NCBITaxon:2518115","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A4U7C1B2-F1-model_v4_TED01","TED novel fold AF-A0A4U7C1B2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2518115","Halorubrum sp. CGM5_25_10-8B"]]},{"id":"NCBITaxon:2518119","l":"Halorubrum sp. SS7","na":1,"nb":1,"a":[["TED%3AAF-A0A4U7DQF0-F1-model_v4_TED02","TED novel fold AF-A0A4U7DQF0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2518119","Halorubrum sp. SS7"]]},{"id":"NCBITaxon:2518371","l":"Nocardioides seonyuensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4P7IFM0-F1-model_v4_TED01","TED novel fold AF-A0A4P7IFM0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2518371","Nocardioides seonyuensis"]]},{"id":"NCBITaxon:2518624","l":"Acinetobacter sp. WCHAc060033","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q7BQU1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q7BQU1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2518624","Acinetobacter sp. WCHAc060033"]]},{"id":"NCBITaxon:2520506","l":"Spirosoma sp. KCTC 42546","na":1,"nb":1,"a":[["TED%3AAF-A0A514ZXP1-F1-model_v4_TED01","TED novel fold AF-A0A514ZXP1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2520506","Spirosoma sp. KCTC 42546"]]},{"id":"NCBITaxon:252514","l":"Microbulbifer thermotolerans","na":1,"nb":1,"a":[["Pfam%3APF18040","beta porphyranase A C-terminal"]],"b":[["NCBITaxon%3A252514","Microbulbifer thermotolerans"]]},{"id":"NCBITaxon:2527963","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A518L056-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A518L056-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2527963","Stieleria magnilauensis"]]},{"id":"NCBITaxon:2527964","l":"Gimesia aquarii","na":1,"nb":1,"a":[["TED%3AAF-A0A517VQM5-F1-model_v4_TED01","TED novel fold AF-A0A517VQM5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2527964","Gimesia aquarii"]]},{"id":"NCBITaxon:2527968","l":"Aureliella helgolandensis","na":1,"nb":1,"a":[["TED%3AAF-A0A518GGH1-F1-model_v4_TED01","TED novel fold AF-A0A518GGH1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2527968","Aureliella helgolandensis"]]},{"id":"NCBITaxon:2527971","l":"Gimesia algae","na":1,"nb":1,"a":[["TED%3AAF-A0A517V7F5-F1-model_v4_TED03","TED novel fold AF-A0A517V7F5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2527971","Gimesia algae"]]},{"id":"NCBITaxon:2527972","l":"Aeoliella mucimassa","na":1,"nb":1,"a":[["TED%3AAF-A0A518AV48-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A518AV48-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2527972","Aeoliella mucimassa"]]},{"id":"NCBITaxon:2527973","l":"Gimesia alba","na":1,"nb":1,"a":[["TED%3AAF-A0A517RIP9-F1-model_v4_TED01","TED novel fold AF-A0A517RIP9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2527973","Gimesia alba"]]},{"id":"NCBITaxon:2527975","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A518B387-F1-model_v4_TED02","TED novel fold AF-A0A518B387-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2527975","Kolteria novifilia"]]},{"id":"NCBITaxon:2527976","l":"Gimesia fumaroli","na":1,"nb":1,"a":[["TED%3AAF-A0A518IB04-F1-model_v4_TED02","TED novel fold AF-A0A518IB04-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2527976","Gimesia fumaroli"]]},{"id":"NCBITaxon:2527979","l":"Stieleria neptunia","na":1,"nb":1,"a":[["TED%3AAF-A0A518HR59-F1-model_v4_TED01","TED novel fold AF-A0A518HR59-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2527979","Stieleria neptunia"]]},{"id":"NCBITaxon:2527982","l":"Mucisphaera calidilacus","na":1,"nb":1,"a":[["TED%3AAF-A0A518BTF4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A518BTF4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2527982","Mucisphaera calidilacus"]]},{"id":"NCBITaxon:2527986","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A5C5Z7B3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C5Z7B3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2527986","Novipirellula herctigrandis"]]},{"id":"NCBITaxon:2527998","l":"Planctomycetes bacterium MalM25","na":1,"nb":1,"a":[["TED%3AAF-A0A517TKN2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A517TKN2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2527998","Planctomycetes bacterium MalM25"]]},{"id":"NCBITaxon:2527999","l":"Rubripirellula amarantea","na":1,"nb":1,"a":[["TED%3AAF-A0A5C5WRB7-F1-model_v4_TED01","TED novel fold AF-A0A5C5WRB7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2527999","Rubripirellula amarantea"]]},{"id":"NCBITaxon:2528001","l":"Botrimarina colliarenosi","na":1,"nb":1,"a":[["TED%3AAF-A0A5C6A5M4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5C6A5M4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2528001","Botrimarina colliarenosi"]]},{"id":"NCBITaxon:2528002","l":"Posidoniimonas polymericola","na":1,"nb":1,"a":[["TED%3AAF-A0A5C5YI66-F1-model_v4_TED01","TED novel fold AF-A0A5C5YI66-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528002","Posidoniimonas polymericola"]]},{"id":"NCBITaxon:2528003","l":"Bythopirellula polymerisocia","na":1,"nb":1,"a":[["TED%3AAF-A0A5C6CR23-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5C6CR23-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2528003","Bythopirellula polymerisocia"]]},{"id":"NCBITaxon:2528005","l":"Stieleria varia","na":1,"nb":1,"a":[["TED%3AAF-A0A5C5ZQ23-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C5ZQ23-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528005","Stieleria varia"]]},{"id":"NCBITaxon:2528014","l":"Planctomycetes bacterium Poly21","na":1,"nb":1,"a":[["TED%3AAF-A0A5C6C474-F1-model_v4_TED01","TED novel fold AF-A0A5C6C474-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528014","Planctomycetes bacterium Poly21"]]},{"id":"NCBITaxon:2528016","l":"Novipirellula artificiosorum","na":1,"nb":1,"a":[["TED%3AAF-A0A5C6D7J4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C6D7J4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528016","Novipirellula artificiosorum"]]},{"id":"NCBITaxon:2528017","l":"Rosistilla carotiformis","na":1,"nb":1,"a":[["TED%3AAF-A0A518JWA2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A518JWA2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528017","Rosistilla carotiformis"]]},{"id":"NCBITaxon:2528025","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A517SSY0-F1-model_v4_TED01","TED novel fold AF-A0A517SSY0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528025","Stieleria bergensis"]]},{"id":"NCBITaxon:2528035","l":"Phycisphaerae bacterium RAS2","na":1,"nb":1,"a":[["TED%3AAF-A0A518LKG1-F1-model_v4_TED05","TED novel fold AF-A0A518LKG1-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2528035","Phycisphaerae bacterium RAS2"]]},{"id":"NCBITaxon:2528038","l":"Calditrichales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A524LCS7-F1-model_v4_TED02","TED novel fold AF-A0A524LCS7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2528038","Calditrichales bacterium"]]},{"id":"NCBITaxon:2528039","l":"Chrysiogenales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A524Q1G9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A524Q1G9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2528039","Chrysiogenales bacterium"]]},{"id":"NCBITaxon:2528202","l":"Parasulfuritortus cantonensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4R1BGR8-F1-model_v4_TED02","TED novel fold AF-A0A4R1BGR8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2528202","Parasulfuritortus cantonensis"]]},{"id":"NCBITaxon:2528208","l":"Lewinella sp. W8","na":1,"nb":1,"a":[["TED%3AAF-A0A7H5EZD2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H5EZD2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528208","Lewinella sp. W8"]]},{"id":"NCBITaxon:2528251","l":"Sneathiellales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A836TT46-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A836TT46-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528251","Sneathiellales bacterium"]]},{"id":"NCBITaxon:2529274","l":"Pedobacter changchengzhani","na":1,"nb":1,"a":[["TED%3AAF-A0A4R5MMP0-F1-model_v4_TED01","TED novel fold AF-A0A4R5MMP0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2529274","Pedobacter changchengzhani"]]},{"id":"NCBITaxon:2530203","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A5N5ZD46-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5N5ZD46-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2530203","Kordia sp. TARA_039_SRF"]]},{"id":"NCBITaxon:2530364","l":"Actinomadura sp. 6K520","na":1,"nb":1,"a":[["TED%3AAF-A0A4R5DXZ8-F1-model_v4_TED02","TED novel fold AF-A0A4R5DXZ8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2530364","Actinomadura sp. 6K520"]]},{"id":"NCBITaxon:2530371","l":"Actinomadura sp. KC345","na":1,"nb":1,"a":[["TED%3AAF-A0A4R4RBU8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R4RBU8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2530371","Actinomadura sp. KC345"]]},{"id":"NCBITaxon:2530373","l":"Jiangella aurantiaca","na":1,"nb":1,"a":[["TED%3AAF-A0A4R5AMS3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R5AMS3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2530373","Jiangella aurantiaca"]]},{"id":"NCBITaxon:2530377","l":"Micromonospora sp. KC207","na":1,"nb":1,"a":[["TED%3AAF-A0A4V2XZG7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4V2XZG7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2530377","Micromonospora sp. KC207"]]},{"id":"NCBITaxon:2530379","l":"Micromonospora sp. KC606","na":1,"nb":1,"a":[["TED%3AAF-A0A4R4UFL4-F1-model_v4_TED03","TED novel fold AF-A0A4R4UFL4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2530379","Micromonospora sp. KC606"]]},{"id":"NCBITaxon:2530453","l":"Pedobacter psychroterrae","na":1,"nb":1,"a":[["TED%3AAF-A0A4R0NWY1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R0NWY1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2530453","Pedobacter psychroterrae"]]},{"id":"NCBITaxon:2530455","l":"Pedobacter frigidisoli","na":1,"nb":1,"a":[["TED%3AAF-A0A4R0NZC0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R0NZC0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2530455","Pedobacter frigidisoli"]]},{"id":"NCBITaxon:253184","l":"Myceligenerans xiligouense","na":1,"nb":1,"a":[["TED%3AAF-A0A3N4Z286-F1-model_v4_TED02","TED novel fold AF-A0A3N4Z286-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A253184","Myceligenerans xiligouense"]]},{"id":"NCBITaxon:253628","l":"Verruconis gallopava","na":1,"nb":1,"a":[["TED%3AAF-A0A0D2ANI5-F1-model_v4_TED01","TED novel fold AF-A0A0D2ANI5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A253628","Verruconis gallopava"]]},{"id":"NCBITaxon:2540710","l":"Candidatus Ordinivivax streblomastigis","na":1,"nb":1,"a":[["TED%3AAF-A0A5M8P651-F1-model_v4_TED02","TED novel fold AF-A0A5M8P651-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2540710","Candidatus Ordinivivax streblomastigis"]]},{"id":"NCBITaxon:2541734","l":"Flavobacterium hiemivividum","na":1,"nb":1,"a":[["TED%3AAF-A0A4R5D2J8-F1-model_v4_TED01","TED novel fold AF-A0A4R5D2J8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2541734","Flavobacterium hiemivividum"]]},{"id":"NCBITaxon:2545265","l":"Streptomyces sp. AJS327","na":1,"nb":1,"a":[["TED%3AAF-A0A7V8NJX1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V8NJX1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2545265","Streptomyces sp. AJS327"]]},{"id":"NCBITaxon:2545455","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A5P2G6M0-F1-model_v4_TED03","TED novel fold AF-A0A5P2G6M0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2545455","Rhizosphaericola mali"]]},{"id":"NCBITaxon:2545754","l":"Deinococcus sp. S9","na":1,"nb":1,"a":[["TED%3AAF-A0A4R5G9H4-F1-model_v4_TED02","TED novel fold AF-A0A4R5G9H4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2545754","Deinococcus sp. S9"]]},{"id":"NCBITaxon:2545760","l":"Paenibacillus albiflavus","na":1,"nb":1,"a":[["TED%3AAF-A0A4V2WNN0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4V2WNN0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2545760","Paenibacillus albiflavus"]]},{"id":"NCBITaxon:2547396","l":"Arthrobacter terricola","na":1,"nb":1,"a":[["TED%3AAF-A0A4R5KNZ8-F1-model_v4_TED02","TED novel fold AF-A0A4R5KNZ8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2547396","Arthrobacter terricola"]]},{"id":"NCBITaxon:254758","l":"Siminovitchia fortis","na":1,"nb":1,"a":[["TED%3AAF-A0A443IZJ3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A443IZJ3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A254758","Siminovitchia fortis"]]},{"id":"NCBITaxon:2547811","l":"Bacillus salipaludis","na":1,"nb":1,"a":[["TED%3AAF-A0A4R5VNI6-F1-model_v4_TED01","TED novel fold AF-A0A4R5VNI6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2547811","Bacillus salipaludis"]]},{"id":"NCBITaxon:2548426","l":"Candidatus Sedimenticola endophacoides","na":1,"nb":1,"a":[["TED%3AAF-A0A657PQA9-F1-model_v4_TED01","TED novel fold AF-A0A657PQA9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2548426","Candidatus Sedimenticola endophacoides"]]},{"id":"NCBITaxon:255723","l":"Slackia faecicanis","na":1,"nb":1,"a":[["TED%3AAF-A0A3N0ADX8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3N0ADX8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A255723","Slackia faecicanis"]]},{"id":"NCBITaxon:2558362","l":"Jiella endophytica","na":1,"nb":1,"a":[["TED%3AAF-A0A4Y8RES7-F1-model_v4_TED01","TED novel fold AF-A0A4Y8RES7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2558362","Jiella endophytica"]]},{"id":"NCBITaxon:2559236","l":"Streptomyces sp. MZ04","na":1,"nb":1,"a":[["TED%3AAF-A0A4R9EQ28-F1-model_v4_TED03","TED novel fold AF-A0A4R9EQ28-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2559236","Streptomyces sp. MZ04"]]},{"id":"NCBITaxon:2559571","l":"Flavivirga rizhaonensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4S1DSR7-F1-model_v4_TED02","TED novel fold AF-A0A4S1DSR7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2559571","Flavivirga rizhaonensis"]]},{"id":"NCBITaxon:2561932","l":"Duganella callida","na":1,"nb":1,"a":[["TED%3AAF-A0A4Y9S820-F1-model_v4_TED01","TED novel fold AF-A0A4Y9S820-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2561932","Duganella callida"]]},{"id":"NCBITaxon:2562453","l":"Methylorubrum sp. Q1","na":1,"nb":1,"a":[["TED%3AAF-A0A4Z0EFB6-F1-model_v4_TED02","TED novel fold AF-A0A4Z0EFB6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2562453","Methylorubrum sp. Q1"]]},{"id":"NCBITaxon:2563114","l":"Hymenobacter metallicola","na":1,"nb":1,"a":[["TED%3AAF-A0A4Z0QB90-F1-model_v4_TED01","TED novel fold AF-A0A4Z0QB90-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2563114","Hymenobacter metallicola"]]},{"id":"NCBITaxon:256318","l":"metagenome","na":1,"nb":1,"a":[["TED%3AAF-A0A380TIV2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A380TIV2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A256318","metagenome"]]},{"id":"NCBITaxon:2563600","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A5B2Z9H2-F1-model_v4_TED01","TED novel fold AF-A0A5B2Z9H2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2563600","Candidatus Nitrosocosmicus agrestis"]]},{"id":"NCBITaxon:2563896","l":"Candidatus Pelagibacter giovannonii","na":1,"nb":1,"a":[["TED%3AAF-A0A6H1Q3S8-F1-model_v4_TED01","TED novel fold AF-A0A6H1Q3S8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2563896","Candidatus Pelagibacter giovannonii"]]},{"id":"NCBITaxon:2565079","l":"Salmonella enterica subsp. enterica serovar Tamberma","na":1,"nb":1,"a":[["TED%3AAF-A0A5X9FFC1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5X9FFC1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2565079","Salmonella enterica subsp. enterica serovar Tamberma"]]},{"id":"NCBITaxon:2565549","l":"Alteromonas portus","na":1,"nb":1,"a":[["TED%3AAF-A0A4U0ZFG4-F1-model_v4_TED01","TED novel fold AF-A0A4U0ZFG4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2565549","Alteromonas portus"]]},{"id":"NCBITaxon:2565554","l":"Sphingobium sp. PAMC28499","na":1,"nb":1,"a":[["TED%3AAF-A0A4P7QJS9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P7QJS9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2565554","Sphingobium sp. PAMC28499"]]},{"id":"NCBITaxon:2565556","l":"Sphingopyxis sp. PAMC25046","na":1,"nb":1,"a":[["TED%3AAF-A0A4P7RZ57-F1-model_v4_TED04","TED novel fold AF-A0A4P7RZ57-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2565556","Sphingopyxis sp. PAMC25046"]]},{"id":"NCBITaxon:2565926","l":"Paenibacillus algicola","na":1,"nb":1,"a":[["TED%3AAF-A0A4V1G3T1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4V1G3T1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2565926","Paenibacillus algicola"]]},{"id":"NCBITaxon:2568653","l":"Deinococcus sp. Arct2-2","na":1,"nb":1,"a":[["TED%3AAF-A0A4S4B4G2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A4S4B4G2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2568653","Deinococcus sp. Arct2-2"]]},{"id":"NCBITaxon:2568654","l":"Deinococcus sp. KSM4-11","na":1,"nb":1,"a":[["TED%3AAF-A0A4S4CEL8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4S4CEL8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2568654","Deinococcus sp. KSM4-11"]]},{"id":"NCBITaxon:2569539","l":"Ferrimonas aestuarii","na":1,"nb":1,"a":[["TED%3AAF-A0A4U1BTI2-F1-model_v4_TED02","TED novel fold AF-A0A4U1BTI2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2569539","Ferrimonas aestuarii"]]},{"id":"NCBITaxon:2570357","l":"Halomonas sp. 15WGF","na":1,"nb":1,"a":[["TED%3AAF-A0A4V5TYW5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4V5TYW5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2570357","Halomonas sp. 15WGF"]]},{"id":"NCBITaxon:2570561","l":"Psychroserpens sp. NJDZ02","na":1,"nb":1,"a":[["TED%3AAF-A0A4P7WYH3-F1-model_v4_TED02","TED novel fold AF-A0A4P7WYH3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2570561","Psychroserpens sp. NJDZ02"]]},{"id":"NCBITaxon:2571141","l":"Actinacidiphila oryziradicis","na":1,"nb":1,"a":[["TED%3AAF-A0A4U0SPF5-F1-model_v4_TED01","TED novel fold AF-A0A4U0SPF5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2571141","Actinacidiphila oryziradicis"]]},{"id":"NCBITaxon:2571271","l":"Pedobacter cryophilus","na":1,"nb":1,"a":[["TED%3AAF-A0A4V5NYJ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4V5NYJ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2571271","Pedobacter cryophilus"]]},{"id":"NCBITaxon:2571747","l":"Paraburkholderia acidiphila","na":1,"nb":1,"a":[["TED%3AAF-A0A7Z2JC49-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Z2JC49-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2571747","Paraburkholderia acidiphila"]]},{"id":"NCBITaxon:2572577","l":"Salinimonas iocasae","na":1,"nb":1,"a":[["TED%3AAF-A0A5B7YIN9-F1-model_v4_TED01","TED novel fold AF-A0A5B7YIN9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2572577","Salinimonas iocasae"]]},{"id":"NCBITaxon:2572910","l":"Brevibacillus sp. AG162","na":1,"nb":1,"a":[["TED%3AAF-A0A542RIB6-F1-model_v4_TED01","TED novel fold AF-A0A542RIB6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2572910","Brevibacillus sp. AG162"]]},{"id":"NCBITaxon:257466","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1B0Z1W2-F1-model_v4_TED01","TED novel fold AF-A0A1B0Z1W2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A257466","uncultured marine euryarchaeote"]]},{"id":"NCBITaxon:2575442","l":"Herbidospora galbida","na":1,"nb":1,"a":[["TED%3AAF-A0A4U3MIS3-F1-model_v4_TED02","TED novel fold AF-A0A4U3MIS3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2575442","Herbidospora galbida"]]},{"id":"NCBITaxon:2575699","l":"Elizabethkingia sp. 2-6","na":1,"nb":1,"a":[["TED%3AAF-A0A4P8E4G0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4P8E4G0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2575699","Elizabethkingia sp. 2-6"]]},{"id":"NCBITaxon:2575867","l":"Ilyomonas limi","na":1,"nb":1,"a":[["TED%3AAF-A0A4U3KZT4-F1-model_v4_TED01","TED novel fold AF-A0A4U3KZT4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2575867","Ilyomonas limi"]]},{"id":"NCBITaxon:2576035","l":"Arthrobacter sp. NamB2","na":1,"nb":1,"a":[["TED%3AAF-A0A4U6NG55-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U6NG55-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2576035","Arthrobacter sp. NamB2"]]},{"id":"NCBITaxon:2576308","l":"Nakamurella flava","na":1,"nb":1,"a":[["TED%3AAF-A0A4V6CWB7-F1-model_v4_TED01","TED novel fold AF-A0A4V6CWB7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2576308","Nakamurella flava"]]},{"id":"NCBITaxon:2576891","l":"Nibricoccus aquaticus","na":1,"nb":1,"a":[["TED%3AAF-A0A290QJZ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A290QJZ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2576891","Nibricoccus aquaticus"]]},{"id":"NCBITaxon:257772","l":"Halomonas organivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A7W5C2T6-F1-model_v4_TED01","TED novel fold AF-A0A7W5C2T6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A257772","Halomonas organivorans"]]},{"id":"NCBITaxon:2578118","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A5S3PMY7-F1-model_v4_TED01","TED novel fold AF-A0A5S3PMY7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2578118","Maribacter algarum (ex Zhang et al. 2020)"]]},{"id":"NCBITaxon:2579248","l":"Agrobacterium sp. CGMCC 11546","na":1,"nb":1,"a":[["TED%3AAF-A0A7I0RQ36-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7I0RQ36-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2579248","Agrobacterium sp. CGMCC 11546"]]},{"id":"NCBITaxon:2579250","l":"Nautilia sp. PV-1","na":1,"nb":1,"a":[["TED%3AAF-A0A3T0L461-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3T0L461-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2579250","Nautilia sp. PV-1"]]},{"id":"NCBITaxon:2580422","l":"Paenibacillus sp. UASWS1643","na":1,"nb":1,"a":[["TED%3AAF-A0A5M9TVU1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5M9TVU1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2580422","Paenibacillus sp. UASWS1643"]]},{"id":"NCBITaxon:2580517","l":"Micromonospora sp. CP22","na":1,"nb":1,"a":[["TED%3AAF-A0A7K1H2F9-F1-model_v4_TED03","TED novel fold AF-A0A7K1H2F9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2580517","Micromonospora sp. CP22"]]},{"id":"NCBITaxon:2583219","l":"Lentibacillus cibarius","na":1,"nb":1,"a":[["TED%3AAF-A0A549YFU0-F1-model_v4_TED02","TED novel fold AF-A0A549YFU0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2583219","Lentibacillus cibarius"]]},{"id":"NCBITaxon:2583233","l":"Rhizobium sp. MHM7A","na":1,"nb":1,"a":[["TED%3AAF-A0A5R9NZ24-F1-model_v4_TED01","TED novel fold AF-A0A5R9NZ24-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2583233","Rhizobium sp. MHM7A"]]},{"id":"NCBITaxon:2583243","l":"Micromonospora sp. HM134","na":1,"nb":1,"a":[["TED%3AAF-A0A518WHF4-F1-model_v4_TED01","TED novel fold AF-A0A518WHF4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2583243","Micromonospora sp. HM134"]]},{"id":"NCBITaxon:2583452","l":"Amedibacterium intestinale","na":1,"nb":1,"a":[["TED%3AAF-A0A6N4THS5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N4THS5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2583452","Amedibacterium intestinale"]]},{"id":"NCBITaxon:2583530","l":"Thermosynechococcus sp. CL-1","na":1,"nb":1,"a":[["TED%3AAF-A0A5C2M810-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C2M810-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2583530","Thermosynechococcus sp. CL-1"]]},{"id":"NCBITaxon:2583809","l":"Phaeobacter sp. B1627","na":1,"nb":1,"a":[["TED%3AAF-A0A5C4S7H6-F1-model_v4_TED01","TED novel fold AF-A0A5C4S7H6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2583809","Phaeobacter sp. B1627"]]},{"id":"NCBITaxon:2584121","l":"Antrihabitans stalactiti","na":1,"nb":1,"a":[["TED%3AAF-A0A848K3F4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A848K3F4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2584121","Antrihabitans stalactiti"]]},{"id":"NCBITaxon:2584624","l":"Blautia sp. BIOML-A1","na":1,"nb":1,"a":[["TED%3AAF-A0A6N9LH19-F1-model_v4_TED04","TED novel fold AF-A0A6N9LH19-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2584624","Blautia sp. BIOML-A1"]]},{"id":"NCBITaxon:2584625","l":"Butyricicoccus sp. BIOML-A1","na":1,"nb":1,"a":[["TED%3AAF-A0A845N2K1-F1-model_v4_TED01","TED novel fold AF-A0A845N2K1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2584625","Butyricicoccus sp. BIOML-A1"]]},{"id":"NCBITaxon:2584680","l":"Pseudoflavonifractor sp. BIOML-A18","na":1,"nb":1,"a":[["TED%3AAF-A0A844K7V4-F1-model_v4_TED02","TED novel fold AF-A0A844K7V4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2584680","Pseudoflavonifractor sp. BIOML-A18"]]},{"id":"NCBITaxon:2584944","l":"Sutterella faecalis","na":1,"nb":1,"a":[["TED%3AAF-A0A5B7ZEU6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5B7ZEU6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2584944","Sutterella faecalis"]]},{"id":"NCBITaxon:2585118","l":"Alistipes communis","na":1,"nb":1,"a":[["TED%3AAF-A0A3D3YMR4-F1-model_v4_TED02","TED novel fold AF-A0A3D3YMR4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2585118","Alistipes communis"]]},{"id":"NCBITaxon:258515","l":"Acetanaerobacterium elongatum","na":1,"nb":1,"a":[["TED%3AAF-A0A1H0CHA1-F1-model_v4_TED01","TED novel fold AF-A0A1H0CHA1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A258515","Acetanaerobacterium elongatum"]]},{"id":"NCBITaxon:2585196","l":"Streptomyces smaragdinus","na":1,"nb":1,"a":[["TED%3AAF-A0A7K0CAT2-F1-model_v4_TED01","TED novel fold AF-A0A7K0CAT2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2585196","Streptomyces smaragdinus"]]},{"id":"NCBITaxon:2585199","l":"Nocardia aurantia","na":1,"nb":1,"a":[["TED%3AAF-A0A7K0DV44-F1-model_v4_TED01","TED novel fold AF-A0A7K0DV44-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2585199","Nocardia aurantia"]]},{"id":"NCBITaxon:2586978","l":"Rhizobium sp. BK700","na":1,"nb":1,"a":[["TED%3AAF-A0A7W5W0L3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W5W0L3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2586978","Rhizobium sp. BK700"]]},{"id":"NCBITaxon:2586981","l":"Sphingomonas sp. BK481","na":1,"nb":1,"a":[["TED%3AAF-A0A7W5X2V4-F1-model_v4_TED01","TED novel fold AF-A0A7W5X2V4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2586981","Sphingomonas sp. BK481"]]},{"id":"NCBITaxon:2586988","l":"Rhizobium sp. BK612","na":1,"nb":1,"a":[["TED%3AAF-A0A7W5UR77-F1-model_v4_TED05","TED novel fold AF-A0A7W5UR77-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2586988","Rhizobium sp. BK612"]]},{"id":"NCBITaxon:2586989","l":"Rhizobium sp. BK619","na":1,"nb":1,"a":[["TED%3AAF-A0A7W5XB29-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W5XB29-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2586989","Rhizobium sp. BK619"]]},{"id":"NCBITaxon:2587012","l":"Azospirillum sp. OGB3","na":1,"nb":1,"a":[["TED%3AAF-A0A839WB26-F1-model_v4_TED01","TED novel fold AF-A0A839WB26-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2587012","Azospirillum sp. OGB3"]]},{"id":"NCBITaxon:2587018","l":"Dyella sp. SG609","na":1,"nb":1,"a":[["TED%3AAF-A0A846VC72-F1-model_v4_TED01","TED novel fold AF-A0A846VC72-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2587018","Dyella sp. SG609"]]},{"id":"NCBITaxon:2587021","l":"Mucilaginibacter sp. SG538B","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y7L8T0-F1-model_v4_TED02","TED novel fold AF-A0A7Y7L8T0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2587021","Mucilaginibacter sp. SG538B"]]},{"id":"NCBITaxon:2587027","l":"Variovorax sp. Sphag1AA","na":1,"nb":1,"a":[["TED%3AAF-A0A7W5DBM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W5DBM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2587027","Variovorax sp. Sphag1AA"]]},{"id":"NCBITaxon:2587127","l":"Methylobacterium sp. RAS18","na":1,"nb":1,"a":[["TED%3AAF-A0A7W3SCX3-F1-model_v4_TED03","TED novel fold AF-A0A7W3SCX3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2587127","Methylobacterium sp. RAS18"]]},{"id":"NCBITaxon:2587129","l":"Rhizobium sp. RAS22","na":1,"nb":1,"a":[["TED%3AAF-A0A7W4U1B4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W4U1B4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2587129","Rhizobium sp. RAS22"]]},{"id":"NCBITaxon:2587140","l":"Rhizobacter sp. SG703","na":1,"nb":1,"a":[["TED%3AAF-A0A846UAF8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A846UAF8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2587140","Rhizobacter sp. SG703"]]},{"id":"NCBITaxon:2587145","l":"Sphingobacterium sp. JUb56","na":1,"nb":1,"a":[["TED%3AAF-A0A839NR61-F1-model_v4_TED02","TED novel fold AF-A0A839NR61-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2587145","Sphingobacterium sp. JUb56"]]},{"id":"NCBITaxon:2587808","l":"Cellulosimicrobium protaetiae","na":1,"nb":1,"a":[["TED%3AAF-A0A6M5UKT5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6M5UKT5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2587808","Cellulosimicrobium protaetiae"]]},{"id":"NCBITaxon:2587843","l":"Pseudoalteromonas sp. THAF3","na":1,"nb":1,"a":[["TED%3AAF-A0A5P9J546-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5P9J546-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2587843","Pseudoalteromonas sp. THAF3"]]},{"id":"NCBITaxon:2588693","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A564QAZ0-F1-model_v4_TED01","TED novel fold AF-A0A564QAZ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2588693","Candidatus Syntropharchaeum sp. GoM_oil"]]},{"id":"NCBITaxon:2589790","l":"Shewanella sp. LC6","na":1,"nb":1,"a":[["TED%3AAF-A0A501XZA5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A501XZA5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2589790","Shewanella sp. LC6"]]},{"id":"NCBITaxon:2589817","l":"Maribrevibacterium harenarium","na":1,"nb":1,"a":[["TED%3AAF-A0A501X0P0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A501X0P0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2589817","Maribrevibacterium harenarium"]]},{"id":"NCBITaxon:2589961","l":"Mesorhizobium sp. B2-3-2","na":1,"nb":1,"a":[["TED%3AAF-A0A503X4P9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A503X4P9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2589961","Mesorhizobium sp. B2-3-2"]]},{"id":"NCBITaxon:2589995","l":"Aquimarina algicola","na":1,"nb":1,"a":[["TED%3AAF-A0A504J2V1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A504J2V1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2589995","Aquimarina algicola"]]},{"id":"NCBITaxon:2590025","l":"Dolichospermum sp. UHCC 0260","na":1,"nb":1,"a":[["TED%3AAF-A0A844IIA9-F1-model_v4_TED02","TED novel fold AF-A0A844IIA9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2590025","Dolichospermum sp. UHCC 0260"]]},{"id":"NCBITaxon:2590028","l":"Aphanizomenon sp. UHCC 0183","na":1,"nb":1,"a":[["TED%3AAF-A0A844IEK7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A844IEK7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2590028","Aphanizomenon sp. UHCC 0183"]]},{"id":"NCBITaxon:2590547","l":"Paenibacillus vietnamensis","na":1,"nb":1,"a":[["TED%3AAF-A0A559IZM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A559IZM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2590547","Paenibacillus vietnamensis"]]},{"id":"NCBITaxon:2590774","l":"Pseudarthrobacter sp. NIBRBAC000502771","na":1,"nb":1,"a":[["TED%3AAF-A0A4Y6QWB4-F1-model_v4_TED03","TED novel fold AF-A0A4Y6QWB4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2590774","Pseudarthrobacter sp. NIBRBAC000502771"]]},{"id":"NCBITaxon:2590869","l":"Janthinobacterium tructae","na":1,"nb":1,"a":[["TED%3AAF-A0A4Y6RAM4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Y6RAM4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2590869","Janthinobacterium tructae"]]},{"id":"NCBITaxon:2591463","l":"Brevundimonas sp. M20","na":1,"nb":1,"a":[["TED%3AAF-A0A514C1G8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A514C1G8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2591463","Brevundimonas sp. M20"]]},{"id":"NCBITaxon:2591634","l":"Echinicola soli","na":1,"nb":1,"a":[["TED%3AAF-A0A514CKC4-F1-model_v4_TED02","TED novel fold AF-A0A514CKC4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2591634","Echinicola soli"]]},{"id":"NCBITaxon:2592334","l":"Nocardioides sp. JQ2195","na":1,"nb":1,"a":[["TED%3AAF-A0A6H1A300-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A6H1A300-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A2592334","Nocardioides sp. JQ2195"]]},{"id":"NCBITaxon:2592383","l":"Aliikangiella coralliicola","na":1,"nb":1,"a":[["TED%3AAF-A0A545UDA7-F1-model_v4_TED01","TED novel fold AF-A0A545UDA7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2592383","Aliikangiella coralliicola"]]},{"id":"NCBITaxon:2592816","l":"Tardiphaga sp. vice352","na":1,"nb":1,"a":[["TED%3AAF-A0A515KK81-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A515KK81-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2592816","Tardiphaga sp. vice352"]]},{"id":"NCBITaxon:259315","l":"uncultured Faecalibacterium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A1C5N185-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C5N185-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A259315","uncultured Faecalibacterium sp."]]},{"id":"NCBITaxon:2593659","l":"","na":1,"nb":1,"a":[["Pfam%3APF07589","PEP-CTERM protein-sorting motif"]],"b":[["NCBITaxon%3A2593659","Nostoc sp. HG1"]]},{"id":"NCBITaxon:2593672","l":"Arcobacter sp. FWKO B","na":1,"nb":1,"a":[["TED%3AAF-A0A7L8V3P2-F1-model_v4_TED01","TED novel fold AF-A0A7L8V3P2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2593672","Arcobacter sp. FWKO B"]]},{"id":"NCBITaxon:2594005","l":"Thalassotalea sp. PS06","na":1,"nb":1,"a":[["TED%3AAF-A0A516HCM8-F1-model_v4_TED01","TED novel fold AF-A0A516HCM8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2594005","Thalassotalea sp. PS06"]]},{"id":"NCBITaxon:2594007","l":"Rhodococcus sp. WB9","na":1,"nb":1,"a":[["TED%3AAF-A0A516WPA8-F1-model_v4_TED01","TED novel fold AF-A0A516WPA8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2594007","Rhodococcus sp. WB9"]]},{"id":"NCBITaxon:2594042","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A5B9D689-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B9D689-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2594042","Promethearchaeum syntrophicum"]]},{"id":"NCBITaxon:2594460","l":"Streptomyces sp. S1A1-8","na":1,"nb":1,"a":[["TED%3AAF-A0A856N3J6-F1-model_v4_TED02","TED novel fold AF-A0A856N3J6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2594460","Streptomyces sp. S1A1-8"]]},{"id":"NCBITaxon:2594476","l":"Carboxylicivirga sp. M1479","na":1,"nb":1,"a":[["TED%3AAF-A0A553GLI2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A553GLI2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2594476","Carboxylicivirga sp. M1479"]]},{"id":"NCBITaxon:2594477","l":"Thalassomonas sp. M1454","na":1,"nb":1,"a":[["TED%3AAF-A0A553F670-F1-model_v4_TED04","TED novel fold AF-A0A553F670-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2594477","Thalassomonas sp. M1454"]]},{"id":"NCBITaxon:2594500","l":"Bacteroides sp. HF-5092","na":1,"nb":1,"a":[["TED%3AAF-A0A553ECR7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A553ECR7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2594500","Bacteroides sp. HF-5092"]]},{"id":"NCBITaxon:2596829","l":"Corallococcus sp. Z5C101001","na":1,"nb":1,"a":[["TED%3AAF-A0A554FXA3-F1-model_v4_TED02","TED novel fold AF-A0A554FXA3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2596829","Corallococcus sp. Z5C101001"]]},{"id":"NCBITaxon:2596893","l":"Amycolatopsis acidicola","na":1,"nb":1,"a":[["TED%3AAF-A0A5N0VHZ5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5N0VHZ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2596893","Amycolatopsis acidicola"]]},{"id":"NCBITaxon:2597223","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A519BCI6-F1-model_v4_TED01","TED novel fold AF-A0A519BCI6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2597223","Candidatus Acidulidesulfobacterium ferriphilum"]]},{"id":"NCBITaxon:2597350","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A5B0BWV8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B0BWV8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2597350","Pseudomonas sp. ANT_H4"]]},{"id":"NCBITaxon:2597356","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A5A9X8D3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5A9X8D3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2597356","Pusillimonas sp. ANT_WB101"]]},{"id":"NCBITaxon:2597670","l":"Mucilaginibacter corticis","na":1,"nb":1,"a":[["TED%3AAF-A0A556MKK0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A556MKK0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2597670","Mucilaginibacter corticis"]]},{"id":"NCBITaxon:2599390","l":"Flavobacterium sp. XN-5","na":1,"nb":1,"a":[["TED%3AAF-A0A6M2CB07-F1-model_v4_TED01","TED novel fold AF-A0A6M2CB07-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2599390","Flavobacterium sp. XN-5"]]},{"id":"NCBITaxon:2599596","l":"Parafrankia soli","na":1,"nb":1,"a":[["TED%3AAF-A0A1S1PC11-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S1PC11-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2599596","Parafrankia soli"]]},{"id":"NCBITaxon:2599616","l":"Reyranella sp. CPCC 100927","na":1,"nb":1,"a":[["TED%3AAF-A0A5C5TE83-F1-model_v4_TED02","TED novel fold AF-A0A5C5TE83-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2599616","Reyranella sp. CPCC 100927"]]},{"id":"NCBITaxon:2599694","l":"Terrilactibacillus tamarindi","na":1,"nb":1,"a":[["TED%3AAF-A0A6N8CTX1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8CTX1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2599694","Terrilactibacillus tamarindi"]]},{"id":"NCBITaxon:2600148","l":"Streptococcus sp. sy010","na":1,"nb":1,"a":[["TED%3AAF-A0A5C5TSN3-F1-model_v4_TED01","TED novel fold AF-A0A5C5TSN3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2600148","Streptococcus sp. sy010"]]},{"id":"NCBITaxon:260086","l":"Pseudonocardia ammonioxydans","na":1,"nb":1,"a":[["TED%3AAF-A0A1I5CIV7-F1-model_v4_TED01","TED novel fold AF-A0A1I5CIV7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A260086","Pseudonocardia ammonioxydans"]]},{"id":"NCBITaxon:2601122","l":"Acinetobacter sp. YH12138","na":1,"nb":1,"a":[["TED%3AAF-A0A7S6W0W4-F1-model_v4_TED02","TED novel fold AF-A0A7S6W0W4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2601122","Acinetobacter sp. YH12138"]]},{"id":"NCBITaxon:2601869","l":"Litoreibacter roseus","na":1,"nb":1,"a":[["TED%3AAF-A0A6N6JMU7-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A6N6JMU7-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2601869","Litoreibacter roseus"]]},{"id":"NCBITaxon:2602289","l":"Roseobacter cerasinus","na":1,"nb":1,"a":[["TED%3AAF-A0A640VSB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A640VSB4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2602289","Roseobacter cerasinus"]]},{"id":"NCBITaxon:2602760","l":"Mesonia sp. K4-1","na":1,"nb":1,"a":[["TED%3AAF-A0A5C8LQA4-F1-model_v4_TED03","TED novel fold AF-A0A5C8LQA4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2602760","Mesonia sp. K4-1"]]},{"id":"NCBITaxon:2603628","l":"Flagellimonas hymeniacidonis","na":1,"nb":1,"a":[["TED%3AAF-A0A5C8V210-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A5C8V210-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2603628","Flagellimonas hymeniacidonis"]]},{"id":"NCBITaxon:2603858","l":"Oryzomonas japonica","na":1,"nb":1,"a":[["TED%3AAF-A0A7J4ZSR9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J4ZSR9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2603858","Oryzomonas japonica"]]},{"id":"NCBITaxon:2603887","l":"Methylobacterium sp. WL120","na":1,"nb":1,"a":[["TED%3AAF-A0A5C8RZ22-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5C8RZ22-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2603887","Methylobacterium sp. WL120"]]},{"id":"NCBITaxon:2603888","l":"Methylobacterium sp. WL119","na":1,"nb":1,"a":[["TED%3AAF-A0A5C8VYH2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C8VYH2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2603888","Methylobacterium sp. WL119"]]},{"id":"NCBITaxon:2603898","l":"Methylobacterium sp. WL9","na":1,"nb":1,"a":[["TED%3AAF-A0A5C8U038-F1-model_v4_TED02","TED novel fold AF-A0A5C8U038-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2603898","Methylobacterium sp. WL9"]]},{"id":"NCBITaxon:2604423","l":"Agromyces mariniharenae","na":1,"nb":1,"a":[["TED%3AAF-A0A5S4UWB3-F1-model_v4_TED01","TED novel fold AF-A0A5S4UWB3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2604423","Agromyces mariniharenae"]]},{"id":"NCBITaxon:2604572","l":"Actinomadura decatromicini","na":1,"nb":1,"a":[["TED%3AAF-A0A5D3F885-F1-model_v4_TED02","TED novel fold AF-A0A5D3F885-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2604572","Actinomadura decatromicini"]]},{"id":"NCBITaxon:2604873","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A6G2K727-F1-model_v4_TED02","TED novel fold AF-A0A6G2K727-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2604873","Cenarchaeum sp. SB0662_bin_33"]]},{"id":"NCBITaxon:2605257","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A845CY77-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A845CY77-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2605257","Caldilineaceae bacterium SB0662_bin_25"]]},{"id":"NCBITaxon:2605263","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A845C865-F1-model_v4_TED01","TED novel fold AF-A0A845C865-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2605263","Caldilineaceae bacterium SB0666_bin_21"]]},{"id":"NCBITaxon:2605428","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A5B0FIC5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B0FIC5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2605428","Dyadobacter aurulentus"]]},{"id":"NCBITaxon:2605746","l":"Herbaspirillum sp. CAH-3","na":1,"nb":1,"a":[["TED%3AAF-A0A7X2IG44-F1-model_v4_TED01","TED novel fold AF-A0A7X2IG44-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2605746","Herbaspirillum sp. CAH-3"]]},{"id":"NCBITaxon:2605747","l":"Pedobacter aquae","na":1,"nb":1,"a":[["TED%3AAF-A0A5C0VI45-F1-model_v4_TED02","TED novel fold AF-A0A5C0VI45-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2605747","Pedobacter aquae"]]},{"id":"NCBITaxon:2605782","l":"Desulfovibrio porci","na":1,"nb":1,"a":[["TED%3AAF-A0A6L5XL46-F1-model_v4_TED01","TED novel fold AF-A0A6L5XL46-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2605782","Desulfovibrio porci"]]},{"id":"NCBITaxon:2606439","l":"Candidatus Manganitrophus noduliformans","na":1,"nb":1,"a":[["TED%3AAF-A0A7X6DR50-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X6DR50-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2606439","Candidatus Manganitrophus noduliformans"]]},{"id":"NCBITaxon:2606450","l":"Alicyclobacillus sp. TC","na":1,"nb":1,"a":[["TED%3AAF-A0A7U3FDC8-F1-model_v4_TED01","TED novel fold AF-A0A7U3FDC8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2606450","Alicyclobacillus sp. TC"]]},{"id":"NCBITaxon:2606614","l":"Mycolicibacterium sp. CBMA 360","na":1,"nb":1,"a":[["TED%3AAF-A0A7K1JND0-F1-model_v4_TED01","TED novel fold AF-A0A7K1JND0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2606614","Mycolicibacterium sp. CBMA 360"]]},{"id":"NCBITaxon:2606635","l":"Waltera intestinalis","na":1,"nb":1,"a":[["TED%3AAF-A0A6L5YKL2-F1-model_v4_TED02","TED novel fold AF-A0A6L5YKL2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2606635","Waltera intestinalis"]]},{"id":"NCBITaxon:2606638","l":"Bullifex porci","na":1,"nb":1,"a":[["TED%3AAF-A0A7X2TS46-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X2TS46-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2606638","Bullifex porci"]]},{"id":"NCBITaxon:2606681","l":"Ramlibacter lithotrophicus","na":1,"nb":1,"a":[["TED%3AAF-A0A7X6I5A9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7X6I5A9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2606681","Ramlibacter lithotrophicus"]]},{"id":"NCBITaxon:2606906","l":"Calorimonas adulescens","na":1,"nb":1,"a":[["TED%3AAF-A0A5D8QJA0-F1-model_v4_TED01","TED novel fold AF-A0A5D8QJA0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2606906","Calorimonas adulescens"]]},{"id":"NCBITaxon:2607496","l":"Azospirillum sp. B21","na":1,"nb":1,"a":[["TED%3AAF-A0A5A9EU56-F1-model_v4_TED02","TED novel fold AF-A0A5A9EU56-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2607496","Azospirillum sp. B21"]]},{"id":"NCBITaxon:2607602","l":"Vibrio sp. 99-8-1","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y4FIG3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y4FIG3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2607602","Vibrio sp. 99-8-1"]]},{"id":"NCBITaxon:2607607","l":"Vibrio sp. 03-59-1","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y4AGH1-F1-model_v4_TED02","TED novel fold AF-A0A7Y4AGH1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2607607","Vibrio sp. 03-59-1"]]},{"id":"NCBITaxon:2607653","l":"Chitinophaga agrisoli","na":1,"nb":1,"a":[["TED%3AAF-A0A5B2VM43-F1-model_v4_TED01","TED novel fold AF-A0A5B2VM43-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607653","Chitinophaga agrisoli"]]},{"id":"NCBITaxon:2607654","l":"Larkinella humicola","na":1,"nb":1,"a":[["TED%3AAF-A0A5N1JIW3-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A5N1JIW3-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2607654","Larkinella humicola"]]},{"id":"NCBITaxon:2607659","l":"Nocardioides antri","na":1,"nb":1,"a":[["TED%3AAF-A0A5B1M286-F1-model_v4_TED01","TED novel fold AF-A0A5B1M286-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607659","Nocardioides antri"]]},{"id":"NCBITaxon:2607660","l":"Nocardioides humilatus","na":1,"nb":1,"a":[["TED%3AAF-A0A5B1LLV6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B1LLV6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607660","Nocardioides humilatus"]]},{"id":"NCBITaxon:2607754","l":"Paenibacillus sp. B2(2019)","na":1,"nb":1,"a":[["TED%3AAF-A0A5B0W0T2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B0W0T2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607754","Paenibacillus sp. B2(2019)"]]},{"id":"NCBITaxon:2607763","l":"Symploca sp. SIO1B1","na":1,"nb":1,"a":[["TED%3AAF-A0A846BXF7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A846BXF7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607763","Symploca sp. SIO1B1"]]},{"id":"NCBITaxon:2607768","l":"Leptolyngbya sp. SIO1E4","na":1,"nb":1,"a":[["TED%3AAF-A0A6I5RHA9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I5RHA9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607768","Leptolyngbya sp. SIO1E4"]]},{"id":"NCBITaxon:2607769","l":"Symploca sp. SIO1C2","na":1,"nb":1,"a":[["TED%3AAF-A0A6P0VBZ9-F1-model_v4_TED02","TED novel fold AF-A0A6P0VBZ9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2607769","Symploca sp. SIO1C2"]]},{"id":"NCBITaxon:2607770","l":"Leptolyngbya sp. SIO4C1","na":1,"nb":1,"a":[["TED%3AAF-A0A6I5NA04-F1-model_v4_TED03","TED novel fold AF-A0A6I5NA04-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2607770","Leptolyngbya sp. SIO4C1"]]},{"id":"NCBITaxon:2607772","l":"Okeania sp. SIO1I7","na":1,"nb":1,"a":[["TED%3AAF-A0A6M0FNT0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6M0FNT0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2607772","Okeania sp. SIO1I7"]]},{"id":"NCBITaxon:2607785","l":"Symploca sp. SIO2B6","na":1,"nb":1,"a":[["TED%3AAF-A0A6M0EWE3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A6M0EWE3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2607785","Symploca sp. SIO2B6"]]},{"id":"NCBITaxon:2607787","l":"Okeania sp. SIO2C2","na":1,"nb":1,"a":[["TED%3AAF-A0A6P0NL51-F1-model_v4_TED03","TED novel fold AF-A0A6P0NL51-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2607787","Okeania sp. SIO2C2"]]},{"id":"NCBITaxon:2607806","l":"Caldora sp. SIO3E6","na":1,"nb":1,"a":[["TED%3AAF-A0A6P0X4Z5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6P0X4Z5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607806","Caldora sp. SIO3E6"]]},{"id":"NCBITaxon:2607811","l":"Okeania sp. SIO3B5","na":1,"nb":1,"a":[["TED%3AAF-A0A6M0A5D0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6M0A5D0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607811","Okeania sp. SIO3B5"]]},{"id":"NCBITaxon:2607814","l":"Sphaerospermopsis sp. SIO1G1","na":1,"nb":1,"a":[["TED%3AAF-A0A846EMA3-F1-model_v4_TED01","TED novel fold AF-A0A846EMA3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607814","Sphaerospermopsis sp. SIO1G1"]]},{"id":"NCBITaxon:2607816","l":"Spirulina sp. SIO3F2","na":1,"nb":1,"a":[["TED%3AAF-A0A845X2H5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A845X2H5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607816","Spirulina sp. SIO3F2"]]},{"id":"NCBITaxon:2607823","l":"Moorena sp. SIO2B7","na":1,"nb":1,"a":[["TED%3AAF-A0A846DJN0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A846DJN0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607823","Moorena sp. SIO2B7"]]},{"id":"NCBITaxon:2607826","l":"Moorena sp. SIO4E2","na":1,"nb":1,"a":[["TED%3AAF-A0A6P0PUY1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6P0PUY1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2607826","Moorena sp. SIO4E2"]]},{"id":"NCBITaxon:2607832","l":"Moorena sp. SIO3I7","na":1,"nb":1,"a":[["TED%3AAF-A0A6P0J132-F1-model_v4_TED02","TED novel fold AF-A0A6P0J132-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2607832","Moorena sp. SIO3I7"]]},{"id":"NCBITaxon:2607840","l":"Moorena sp. SIO1G6","na":1,"nb":1,"a":[["TED%3AAF-A0A846H2X0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A846H2X0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607840","Moorena sp. SIO1G6"]]},{"id":"NCBITaxon:2608255","l":"Arenimonas fontis","na":1,"nb":1,"a":[["TED%3AAF-A0A5B2Z8Y6-F1-model_v4_TED01","TED novel fold AF-A0A5B2Z8Y6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2608255","Arenimonas fontis"]]},{"id":"NCBITaxon:2608632","l":"Parvibaculum sedimenti","na":1,"nb":1,"a":[["TED%3AAF-A0A6N6VQ78-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N6VQ78-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2608632","Parvibaculum sedimenti"]]},{"id":"NCBITaxon:2608793","l":"Candidatus Argoarchaeum ethanivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A811T573-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A811T573-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2608793","Candidatus Argoarchaeum ethanivorans"]]},{"id":"NCBITaxon:261292","l":"","na":1,"nb":1,"a":[["TED%3AAF-F8GG60-F1-model_v4_TED02","TED novel fold AF-F8GG60-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A261292","Nitrosomonas sp. Is79A3"]]},{"id":"NCBITaxon:2613962","l":"Histidinibacterium aquaticum","na":1,"nb":1,"a":[["TED%3AAF-A0A5J5GJ54-F1-model_v4_TED01","TED novel fold AF-A0A5J5GJ54-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2613962","Histidinibacterium aquaticum"]]},{"id":"NCBITaxon:2613965","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7L9WRV4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7L9WRV4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2613965","Pseudooceanicola spongiae"]]},{"id":"NCBITaxon:2614251","l":"Caldisericales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7X9K8A2-F1-model_v4_TED03","TED novel fold AF-A0A7X9K8A2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2614251","Caldisericales bacterium"]]},{"id":"NCBITaxon:2614691","l":"Microbacterium sp. 3290","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y9ZTJ1-F1-model_v4_TED01","TED novel fold AF-A0A7Y9ZTJ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2614691","Microbacterium sp. 3290"]]},{"id":"NCBITaxon:2614804","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A6N6MAZ3-F1-model_v4_TED02","TED novel fold AF-A0A6N6MAZ3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2614804","Pseudotamlana haliotis"]]},{"id":"NCBITaxon:262667","l":"Sphingopyxis sp. C-1","na":1,"nb":1,"a":[["TED%3AAF-A0A0M8JF35-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0M8JF35-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A262667","Sphingopyxis sp. C-1"]]},{"id":"NCBITaxon:264730","l":"","na":1,"nb":1,"a":[["Pfam%3APF15457","Type III T3SS secreted effector HopW1-1/HopPmaA"]],"b":[["NCBITaxon%3A264730","Pseudomonas savastanoi pv. phaseolicola 1448A"]]},{"id":"NCBITaxon:264736","l":"Photobacterium frigidiphilum","na":1,"nb":1,"a":[["TED%3AAF-A0A2T3JIJ5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T3JIJ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A264736","Photobacterium frigidiphilum"]]},{"id":"NCBITaxon:2650101","l":"Pseudomonas sp. R-28-1W-6","na":1,"nb":1,"a":[["TED%3AAF-A0A7X3L9Y6-F1-model_v4_TED01","TED novel fold AF-A0A7X3L9Y6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2650101","Pseudomonas sp. R-28-1W-6"]]},{"id":"NCBITaxon:2650565","l":"Micromonospora sp. AMSO1212t","na":1,"nb":1,"a":[["TED%3AAF-A0A6H9XF65-F1-model_v4_TED02","TED novel fold AF-A0A6H9XF65-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2650565","Micromonospora sp. AMSO1212t"]]},{"id":"NCBITaxon:2650748","l":"Actinomadura physcomitrii","na":1,"nb":1,"a":[["TED%3AAF-A0A6I4MMC2-F1-model_v4_TED01","TED novel fold AF-A0A6I4MMC2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2650748","Actinomadura physcomitrii"]]},{"id":"NCBITaxon:2650924","l":"Aestuariivirga litoralis","na":1,"nb":1,"a":[["TED%3AAF-A0A2W2AL08-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W2AL08-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2650924","Aestuariivirga litoralis"]]},{"id":"NCBITaxon:2651167","l":"Ignavibacterium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A6L3ZVV5-F1-model_v4_TED02","TED novel fold AF-A0A6L3ZVV5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2651167","Ignavibacterium sp."]]},{"id":"NCBITaxon:2651169","l":"Caedimonadaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A833FVR8-F1-model_v4_TED02","TED novel fold AF-A0A833FVR8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2651169","Caedimonadaceae bacterium"]]},{"id":"NCBITaxon:2651839","l":"Chloroflexia bacterium SDU3-3","na":1,"nb":1,"a":[["TED%3AAF-A0A7V7ZND2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7V7ZND2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2651839","Chloroflexia bacterium SDU3-3"]]},{"id":"NCBITaxon:2651870","l":"Deinococcus terrestris","na":1,"nb":1,"a":[["TED%3AAF-A0A7X1NUD2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X1NUD2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2651870","Deinococcus terrestris"]]},{"id":"NCBITaxon:2652177","l":"Pelistega ratti","na":1,"nb":1,"a":[["TED%3AAF-A0A6L9Y6W6-F1-model_v4_TED01","TED novel fold AF-A0A6L9Y6W6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2652177","Pelistega ratti"]]},{"id":"NCBITaxon:2652251","l":"Corynebacterium sp. 366","na":1,"nb":1,"a":[["TED%3AAF-A0A6I0F7K5-F1-model_v4_TED01","TED novel fold AF-A0A6I0F7K5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2652251","Corynebacterium sp. 366"]]},{"id":"NCBITaxon:2652293","l":"Hornefia butyriciproducens","na":1,"nb":1,"a":[["TED%3AAF-A0A6L5Y848-F1-model_v4_TED02","TED novel fold AF-A0A6L5Y848-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2652293","Hornefia butyriciproducens"]]},{"id":"NCBITaxon:265311","l":"","na":1,"nb":1,"a":[["TED%3AAF-Q6F294-F1-model_v4_TED03","TED novel fold AF-Q6F294-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A265311","Mesoplasma florum L1"]]},{"id":"NCBITaxon:2653135","l":"Citricoccus sp. K5","na":1,"nb":1,"a":[["TED%3AAF-A0A653NX81-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A653NX81-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2653135","Citricoccus sp. K5"]]},{"id":"NCBITaxon:2653142","l":"Flavobacterium sp. 9AF","na":1,"nb":1,"a":[["TED%3AAF-A0A653P3D5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A653P3D5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2653142","Flavobacterium sp. 9AF"]]},{"id":"NCBITaxon:2653161","l":"Plantibacter sp. T3","na":1,"nb":1,"a":[["TED%3AAF-A0A653X5F2-F1-model_v4_TED01","TED novel fold AF-A0A653X5F2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2653161","Plantibacter sp. T3"]]},{"id":"NCBITaxon:2653182","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A653ZLB2-F1-model_v4_TED01","TED novel fold AF-A0A653ZLB2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2653182","Allobosea sp. 62"]]},{"id":"NCBITaxon:2653201","l":"Bacillus sp. B1-b2","na":1,"nb":1,"a":[["TED%3AAF-A0A6I1F0Q0-F1-model_v4_TED01","TED novel fold AF-A0A6I1F0Q0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2653201","Bacillus sp. B1-b2"]]},{"id":"NCBITaxon:2653854","l":"Cupriavidus sp. SW-Y-13","na":1,"nb":1,"a":[["TED%3AAF-A0A7X3HGB1-F1-model_v4_TED01","TED novel fold AF-A0A7X3HGB1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2653854","Cupriavidus sp. SW-Y-13"]]},{"id":"NCBITaxon:2653856","l":"Rouxiella sp. S1S-2","na":1,"nb":1,"a":[["TED%3AAF-A0A7C8GNP7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C8GNP7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2653856","Rouxiella sp. S1S-2"]]},{"id":"NCBITaxon:2653936","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A6I1GAW3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6I1GAW3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2653936","Nostocoides sp. F2B08"]]},{"id":"NCBITaxon:2654244","l":"Flavobacterium sp. LMO8","na":1,"nb":1,"a":[["TED%3AAF-A0A6A7WG51-F1-model_v4_TED01","TED novel fold AF-A0A6A7WG51-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2654244","Flavobacterium sp. LMO8"]]},{"id":"NCBITaxon:2654547","l":"Pseudactinotalea sp. HY158","na":1,"nb":1,"a":[["TED%3AAF-A0A5Q2VY63-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5Q2VY63-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2654547","Pseudactinotalea sp. HY158"]]},{"id":"NCBITaxon:265668","l":"Vibrio ponticus","na":1,"nb":1,"a":[["TED%3AAF-A0A090P9C9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A090P9C9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A265668","Vibrio ponticus"]]},{"id":"NCBITaxon:2656763","l":"Apibacter sp. B2912","na":1,"nb":1,"a":[["TED%3AAF-A0A6N8TP71-F1-model_v4_TED02","TED novel fold AF-A0A6N8TP71-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2656763","Apibacter sp. B2912"]]},{"id":"NCBITaxon:2661628","l":"Bifidobacterium platyrrhinorum","na":1,"nb":1,"a":[["TED%3AAF-A0A6L9SQU0-F1-model_v4_TED04","TED novel fold AF-A0A6L9SQU0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2661628","Bifidobacterium platyrrhinorum"]]},{"id":"NCBITaxon:2662262","l":"Vibrio algicola","na":1,"nb":1,"a":[["TED%3AAF-A0A5Q0THS2-F1-model_v4_TED01","TED novel fold AF-A0A5Q0THS2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2662262","Vibrio algicola"]]},{"id":"NCBITaxon:2662454","l":"Gluconobacter aidae","na":1,"nb":1,"a":[["TED%3AAF-A0A7X1SQF4-F1-model_v4_TED02","TED novel fold AF-A0A7X1SQF4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2662454","Gluconobacter aidae"]]},{"id":"NCBITaxon:2663008","l":"Alcanivorax sediminis","na":1,"nb":1,"a":[["TED%3AAF-A0A6N7LY60-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N7LY60-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2663008","Alcanivorax sediminis"]]},{"id":"NCBITaxon:2663120","l":"Chitinophaga sp. SYP-B3965","na":1,"nb":1,"a":[["TED%3AAF-A0A6N7P8B2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N7P8B2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2663120","Chitinophaga sp. SYP-B3965"]]},{"id":"NCBITaxon:2663121","l":"Rhodococcus sp. WAY2","na":1,"nb":1,"a":[["TED%3AAF-A0A6P1HZM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6P1HZM4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2663121","Rhodococcus sp. WAY2"]]},{"id":"NCBITaxon:2663855","l":"Sphingomonas sp. R3G8C","na":1,"nb":1,"a":[["TED%3AAF-A0A852XTN1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A852XTN1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2663855","Sphingomonas sp. R3G8C"]]},{"id":"NCBITaxon:2663856","l":"Sphingomonas sp. R3G8D","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y9VPZ3-F1-model_v4_TED02","TED novel fold AF-A0A7Y9VPZ3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2663856","Sphingomonas sp. R3G8D"]]},{"id":"NCBITaxon:2663859","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7G9F4W0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G9F4W0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2663859","Aeromicrobium senzhongii"]]},{"id":"NCBITaxon:2664451","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7K0E7U2-F1-model_v4_TED02","TED novel fold AF-A0A7K0E7U2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2664451","Flavobacteriaceae bacterium EG-1"]]},{"id":"NCBITaxon:2664453","l":"Shewanella sp. XMDDZSB0408","na":1,"nb":1,"a":[["TED%3AAF-A0A6L5P080-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6L5P080-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2017544","Shewanella intestini"]]},{"id":"NCBITaxon:2665158","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7K1FLR7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K1FLR7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2665158","Nakamurella alba"]]},{"id":"NCBITaxon:2665159","l":"Hyphomicrobium album","na":1,"nb":1,"a":[["TED%3AAF-A0A6I3KJD5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6I3KJD5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2665159","Hyphomicrobium album"]]},{"id":"NCBITaxon:2665644","l":"Paracoccus lichenicola","na":1,"nb":1,"a":[["TED%3AAF-A0A6L6HU09-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L6HU09-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2665644","Paracoccus lichenicola"]]},{"id":"NCBITaxon:2665645","l":"Flavobacterium sp. SLB02","na":1,"nb":1,"a":[["TED%3AAF-A0A5Q3R0U2-F1-model_v4_TED03","TED novel fold AF-A0A5Q3R0U2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2665645","Flavobacterium sp. SLB02"]]},{"id":"NCBITaxon:2665646","l":"Alicyclobacillus sp. SO9","na":1,"nb":1,"a":[["TED%3AAF-A0A7T5ETD7-F1-model_v4_TED01","TED novel fold AF-A0A7T5ETD7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2665646","Alicyclobacillus sp. SO9"]]},{"id":"NCBITaxon:2665648","l":"Paracoccus sp. S-4012","na":1,"nb":1,"a":[["TED%3AAF-A0A6I2M1I8-F1-model_v4_TED04","TED novel fold AF-A0A6I2M1I8-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2665648","Paracoccus sp. S-4012"]]},{"id":"NCBITaxon:2666136","l":"Pedobacter puniceum","na":1,"nb":1,"a":[["TED%3AAF-A0A7K0FJJ9-F1-model_v4_TED01","TED novel fold AF-A0A7K0FJJ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2666136","Pedobacter puniceum"]]},{"id":"NCBITaxon:2666183","l":"Pseudomonas juntendi","na":1,"nb":1,"a":[["TED%3AAF-A0A7W2M1L2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W2M1L2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2666183","Pseudomonas juntendi"]]},{"id":"NCBITaxon:2666192","l":"Acinetobacter sp. RIT698","na":1,"nb":1,"a":[["TED%3AAF-A0A6I2JJ96-F1-model_v4_TED02","TED novel fold AF-A0A6I2JJ96-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2666192","Acinetobacter sp. RIT698"]]},{"id":"NCBITaxon:2666330","l":"Flavobacterium sp. LC2016-23","na":1,"nb":1,"a":[["TED%3AAF-A0A7K0FDI7-F1-model_v4_TED01","TED novel fold AF-A0A7K0FDI7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2666330","Flavobacterium sp. LC2016-23"]]},{"id":"NCBITaxon:2668068","l":"Halapricum sp. CBA1109","na":1,"nb":1,"a":[["TED%3AAF-A0A6A9T3Q8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A9T3Q8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2668068","Halapricum sp. CBA1109"]]},{"id":"NCBITaxon:2668070","l":"Natronomonas sp. CBA1123","na":1,"nb":1,"a":[["TED%3AAF-A0A6A9SQV1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6A9SQV1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2668070","Natronomonas sp. CBA1123"]]},{"id":"NCBITaxon:2668074","l":"Halobacterium sp. CBA1126","na":1,"nb":1,"a":[["TED%3AAF-A0A6A9SHM4-F1-model_v4_TED02","TED novel fold AF-A0A6A9SHM4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2668074","Halobacterium sp. CBA1126"]]},{"id":"NCBITaxon:2670411","l":"Candidatus Thalassarchaeaceae archaeon","na":1,"nb":1,"a":[["TED%3AAF-A0A7J4NTU9-F1-model_v4_TED03","TED novel fold AF-A0A7J4NTU9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2670411","Candidatus Thalassarchaeaceae archaeon"]]},{"id":"NCBITaxon:2672570","l":"Sulfurimonas aquatica","na":1,"nb":1,"a":[["TED%3AAF-A0A8A3Q0J9-F1-model_v4_TED01","TED novel fold AF-A0A8A3Q0J9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2672570","Sulfurimonas aquatica"]]},{"id":"NCBITaxon:2672572","l":"Cellulosimicrobium composti","na":1,"nb":1,"a":[["TED%3AAF-A0A6N7ZKP0-F1-model_v4_TED01","TED novel fold AF-A0A6N7ZKP0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2672572","Cellulosimicrobium composti"]]},{"id":"NCBITaxon:2675059","l":"Lysobacter helvus","na":1,"nb":1,"a":[["TED%3AAF-A0A811BHP5-F1-model_v4_TED01","TED novel fold AF-A0A811BHP5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2675059","Lysobacter helvus"]]},{"id":"NCBITaxon:2675219","l":"Corynebacterium occultum","na":1,"nb":1,"a":[["TED%3AAF-A0A6B8WQE4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6B8WQE4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2675219","Corynebacterium occultum"]]},{"id":"NCBITaxon:2675226","l":"Paludibacterium denitrificans","na":1,"nb":1,"a":[["TED%3AAF-A0A844G9G1-F1-model_v4_TED01","TED novel fold AF-A0A844G9G1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2675226","Paludibacterium denitrificans"]]},{"id":"NCBITaxon:2675227","l":"Conexibacter sp. W3-3-2","na":1,"nb":1,"a":[["TED%3AAF-A0A6N7YQS7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N7YQS7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2675227","Conexibacter sp. W3-3-2"]]},{"id":"NCBITaxon:2675457","l":"Deefgea sp. CFH1-16","na":1,"nb":1,"a":[["TED%3AAF-A0A838ZYX8-F1-model_v4_TED01","TED novel fold AF-A0A838ZYX8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2675457","Deefgea sp. CFH1-16"]]},{"id":"NCBITaxon:2675851","l":"Nocardia terrae","na":1,"nb":1,"a":[["TED%3AAF-A0A7K1VCA8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7K1VCA8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2675851","Nocardia terrae"]]},{"id":"NCBITaxon:2675875","l":"Flavobacterium sp. LC2016-13","na":1,"nb":1,"a":[["TED%3AAF-A0A7K1FUB6-F1-model_v4_TED01","TED novel fold AF-A0A7K1FUB6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2675875","Flavobacterium sp. LC2016-13"]]},{"id":"NCBITaxon:2675877","l":"Hymenobacter sp. BRD67","na":1,"nb":1,"a":[["TED%3AAF-A0A7D3X7L8-F1-model_v4_TED01","TED novel fold AF-A0A7D3X7L8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2675877","Hymenobacter sp. BRD67"]]},{"id":"NCBITaxon:2675880","l":"Fusarium flagelliforme","na":1,"nb":1,"a":[["TED%3AAF-A0A395MG19-F1-model_v4_TED01","TED novel fold AF-A0A395MG19-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2675880","Fusarium flagelliforme"]]},{"id":"NCBITaxon:2676308","l":"Flavobacterium sp. MC2016-06","na":1,"nb":1,"a":[["TED%3AAF-A0A6I3MC26-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I3MC26-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2676308","Flavobacterium sp. MC2016-06"]]},{"id":"NCBITaxon:267671","l":"Leptospira interrogans serovar Copenhageni str. Fiocruz L1-130","na":1,"nb":1,"a":[["Pfam%3APF05262","Borrelia P83/100 protein"]],"b":[["NCBITaxon%3A267671","Leptospira interrogans serovar Copenhageni str. Fiocruz L1-130"]]},{"id":"NCBITaxon:2676868","l":"Phnomibacter ginsenosidimutans","na":1,"nb":1,"a":[["TED%3AAF-A0A6I6G6I9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I6G6I9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2676868","Phnomibacter ginsenosidimutans"]]},{"id":"NCBITaxon:2678357","l":"Secundilactobacillus folii","na":1,"nb":1,"a":[["TED%3AAF-A0A7X3C277-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X3C277-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2678357","Secundilactobacillus folii"]]},{"id":"NCBITaxon:2681312","l":"Nostoc sp. UCD120","na":1,"nb":1,"a":[["TED%3AAF-A0A841VCF7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A841VCF7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2681312","Nostoc sp. UCD120"]]},{"id":"NCBITaxon:2681547","l":"Microbulbifer sp. SH-1","na":1,"nb":1,"a":[["TED%3AAF-A0A6G8DE42-F1-model_v4_TED03","TED novel fold AF-A0A6G8DE42-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2681547","Microbulbifer sp. SH-1"]]},{"id":"NCBITaxon:2681766","l":"Maribellus comscasis","na":1,"nb":1,"a":[["TED%3AAF-A0A6I6JQN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I6JQN6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2681766","Maribellus comscasis"]]},{"id":"NCBITaxon:2681861","l":"Sporofaciens musculi","na":1,"nb":1,"a":[["TED%3AAF-A0A7X3MN05-F1-model_v4_TED02","TED novel fold AF-A0A7X3MN05-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2681861","Sporofaciens musculi"]]},{"id":"NCBITaxon:2681972","l":"bacterium LRH843","na":1,"nb":1,"a":[["TED%3AAF-A0A6P1AW56-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6P1AW56-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2681972","bacterium LRH843"]]},{"id":"NCBITaxon:2682096","l":"Nitratireductor arenosus","na":1,"nb":1,"a":[["TED%3AAF-A0A844QGE3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A844QGE3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2682096","Nitratireductor arenosus"]]},{"id":"NCBITaxon:2682607","l":"Methanocorpusculaceae archaeon","na":1,"nb":1,"a":[["TED%3AAF-A0A843IML4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A843IML4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2682607","Methanocorpusculaceae archaeon"]]},{"id":"NCBITaxon:2682977","l":"Deinococcus arboris","na":1,"nb":1,"a":[["TED%3AAF-A0A7C9IAU3-F1-model_v4_TED01","TED novel fold AF-A0A7C9IAU3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2682977","Deinococcus arboris"]]},{"id":"NCBITaxon:2683200","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7K3NCN8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K3NCN8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2683200","Allomuricauda sp. TY007"]]},{"id":"NCBITaxon:2683649","l":"Lichenicoccus roseus","na":1,"nb":1,"a":[["TED%3AAF-A0A5R9J5L8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5R9J5L8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2683649","Lichenicoccus roseus"]]},{"id":"NCBITaxon:2684468","l":"Streptomyces sp. QHH-9511","na":1,"nb":1,"a":[["TED%3AAF-A0A7L4YA32-F1-model_v4_TED02","TED novel fold AF-A0A7L4YA32-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2684468","Streptomyces sp. QHH-9511"]]},{"id":"NCBITaxon:268505","l":"Ophiocordyceps unilateralis","na":1,"nb":1,"a":[["TED%3AAF-A0A2A9P7W5-F1-model_v4_TED02","TED novel fold AF-A0A2A9P7W5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A268505","Ophiocordyceps unilateralis"]]},{"id":"NCBITaxon:2686288","l":"Microcystis aeruginosa FD4","na":1,"nb":1,"a":[["TED%3AAF-A0A857CZK1-F1-model_v4_TED01","TED novel fold AF-A0A857CZK1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2686288","Microcystis aeruginosa FD4"]]},{"id":"NCBITaxon:2686357","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7M4D2X2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7M4D2X2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2686357","Labilibaculum euxinicum"]]},{"id":"NCBITaxon:2687311","l":"Gilliamella sp. Pas-s27","na":1,"nb":1,"a":[["TED%3AAF-A0A844WTT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A844WTT8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2687311","Gilliamella sp. Pas-s27"]]},{"id":"NCBITaxon:268807","l":"","na":1,"nb":1,"a":[["Pfam%3APF22148","Fervidolysin N-terminal prodomain"]],"b":[["NCBITaxon%3A268807","Bacillus sp. Ak1"]]},{"id":"NCBITaxon:2689987","l":"Stagnimonas aquatica","na":1,"nb":1,"a":[["TED%3AAF-A0A3N0VKC0-F1-model_v4_TED01","TED novel fold AF-A0A3N0VKC0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2689987","Stagnimonas aquatica"]]},{"id":"NCBITaxon:2690260","l":"Streptomyces sp. SID3343","na":1,"nb":1,"a":[["TED%3AAF-A0A7K2YVW5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K2YVW5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2690260","Streptomyces sp. SID3343"]]},{"id":"NCBITaxon:2690275","l":"Streptomyces sp. SID4926","na":1,"nb":1,"a":[["TED%3AAF-A0A6I5BJ78-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6I5BJ78-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2690275","Streptomyces sp. SID4926"]]},{"id":"NCBITaxon:2690277","l":"Streptomyces sp. SID4931","na":1,"nb":1,"a":[["TED%3AAF-A0A6G2UI30-F1-model_v4_TED01","TED novel fold AF-A0A6G2UI30-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2690277","Streptomyces sp. SID4931"]]},{"id":"NCBITaxon:2690317","l":"Streptomyces sp. SID6013","na":1,"nb":1,"a":[["TED%3AAF-A0A7K2ML90-F1-model_v4_TED03","TED novel fold AF-A0A7K2ML90-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2690317","Streptomyces sp. SID6013"]]},{"id":"NCBITaxon:2690322","l":"Streptomyces sp. SID685","na":1,"nb":1,"a":[["TED%3AAF-A0A6G2Q1R4-F1-model_v4_TED02","TED novel fold AF-A0A6G2Q1R4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2690322","Streptomyces sp. SID685"]]},{"id":"NCBITaxon:2690343","l":"Streptomyces sp. SID8359","na":1,"nb":1,"a":[["TED%3AAF-A0A6G2T6I5-F1-model_v4_TED01","TED novel fold AF-A0A6G2T6I5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2690343","Streptomyces sp. SID8359"]]},{"id":"NCBITaxon:2690360","l":"Streptomyces sp. SID8380","na":1,"nb":1,"a":[["TED%3AAF-A0A6I5GAL2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I5GAL2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2690360","Streptomyces sp. SID8380"]]},{"id":"NCBITaxon:2691042","l":"Kangsaoukella pontilimi","na":1,"nb":1,"a":[["TED%3AAF-A0A7C9IET5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C9IET5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2691042","Kangsaoukella pontilimi"]]},{"id":"NCBITaxon:2691084","l":"Paenibacillus dendrobii","na":1,"nb":1,"a":[["TED%3AAF-A0A7X3IQD1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X3IQD1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2691084","Paenibacillus dendrobii"]]},{"id":"NCBITaxon:2691582","l":"Aurantiacibacter rhizosphaerae","na":1,"nb":1,"a":[["TED%3AAF-A0A844XBH1-F1-model_v4_TED01","TED novel fold AF-A0A844XBH1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2691582","Aurantiacibacter rhizosphaerae"]]},{"id":"NCBITaxon:2691583","l":"Acerihabitans arboris","na":1,"nb":1,"a":[["TED%3AAF-A0A845SMM8-F1-model_v4_TED03","TED novel fold AF-A0A845SMM8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2691583","Acerihabitans arboris"]]},{"id":"NCBITaxon:2691605","l":"Paenibacillus sp. OT2-17","na":1,"nb":1,"a":[["TED%3AAF-A0A6B0PUZ6-F1-model_v4_TED02","TED novel fold AF-A0A6B0PUZ6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2691605","Paenibacillus sp. OT2-17"]]},{"id":"NCBITaxon:2692125","l":"Nanchangia anserum","na":1,"nb":1,"a":[["TED%3AAF-A0A7S7FJV4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S7FJV4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2692125","Nanchangia anserum"]]},{"id":"NCBITaxon:2692190","l":"Stappia sediminis","na":1,"nb":1,"a":[["TED%3AAF-A0A7X3S780-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X3S780-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2692190","Stappia sediminis"]]},{"id":"NCBITaxon:2692211","l":"Flavobacterium sp. Sd200","na":1,"nb":1,"a":[["TED%3AAF-A0A6B0PMG6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6B0PMG6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2692211","Flavobacterium sp. Sd200"]]},{"id":"NCBITaxon:2692629","l":"Copranaerobaculum intestinale","na":1,"nb":1,"a":[["TED%3AAF-A0A6N8U9L0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8U9L0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2692629","Copranaerobaculum intestinale"]]},{"id":"NCBITaxon:2696058","l":"Methylobacterium sp. NI91","na":1,"nb":1,"a":[["TED%3AAF-A0A6H2U3I7-F1-model_v4_TED01","TED novel fold AF-A0A6H2U3I7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2696058","Methylobacterium sp. NI91"]]},{"id":"NCBITaxon:2696062","l":"Alteromonas profundi","na":1,"nb":1,"a":[["TED%3AAF-A0A7X5RKT0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X5RKT0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2696062","Alteromonas profundi"]]},{"id":"NCBITaxon:2696063","l":"Anaerocolumna sedimenticola","na":1,"nb":1,"a":[["TED%3AAF-A0A6P1TLG6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6P1TLG6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2696063","Anaerocolumna sedimenticola"]]},{"id":"NCBITaxon:2696284","l":"Herbidospora solisilvae","na":1,"nb":1,"a":[["TED%3AAF-A0A7C9NGI7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C9NGI7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2696284","Herbidospora solisilvae"]]},{"id":"NCBITaxon:269709","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A543V9Z8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A543V9Z8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A269709","Methylotuvimicrobium kenyense"]]},{"id":"NCBITaxon:2699745","l":"Exilispira sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A847LY92-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A847LY92-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2699745","Exilispira sp."]]},{"id":"NCBITaxon:2700082","l":"Pontibacter fetidus","na":1,"nb":1,"a":[["TED%3AAF-A0A6B2H985-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6B2H985-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2700082","Pontibacter fetidus"]]},{"id":"NCBITaxon:270351","l":"Methylobacterium aquaticum","na":1,"nb":1,"a":[["TED%3AAF-A0A0J6S4M9-F1-model_v4_TED02","TED novel fold AF-A0A0J6S4M9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A270351","Methylobacterium aquaticum"]]},{"id":"NCBITaxon:270368","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A4R6QP76-F1-model_v4_TED01","TED novel fold AF-A0A4R6QP76-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A270368","Roseateles toxinivorans"]]},{"id":"NCBITaxon:2703815","l":"Candidatus Mcinerneyibacterium aminivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A5D0MDZ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5D0MDZ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2703815","Candidatus Mcinerneyibacterium aminivorans"]]},{"id":"NCBITaxon:2703884","l":"Rouxiella aceris","na":1,"nb":1,"a":[["TED%3AAF-A0A848MGE5-F1-model_v4_TED01","TED novel fold AF-A0A848MGE5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2703884","Rouxiella aceris"]]},{"id":"NCBITaxon:2704462","l":"Paenibacillus lycopersici","na":1,"nb":1,"a":[["TED%3AAF-A0A6C0FXC5-F1-model_v4_TED01","TED novel fold AF-A0A6C0FXC5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2704462","Paenibacillus lycopersici"]]},{"id":"NCBITaxon:2705014","l":"Shewanella sp. SE1","na":1,"nb":1,"a":[["TED%3AAF-A0A6B2ICQ7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6B2ICQ7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2705014","Shewanella sp. SE1"]]},{"id":"NCBITaxon:2705428","l":"Bifidobacterium sp. DSM 109963","na":1,"nb":1,"a":[["TED%3AAF-A0A848J8F0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A848J8F0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2675321","Bifidobacterium panos"]]},{"id":"NCBITaxon:2705429","l":"Bifidobacterium sp. DSM 109957","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y0EQ14-F1-model_v4_TED01","TED novel fold AF-A0A7Y0EQ14-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2675322","Bifidobacterium oedipodis"]]},{"id":"NCBITaxon:2705463","l":"Psychrobacter sp. BI730","na":1,"nb":1,"a":[["TED%3AAF-A0A7Z0HCN2-F1-model_v4_TED02","TED novel fold AF-A0A7Z0HCN2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2705463","Psychrobacter sp. BI730"]]},{"id":"NCBITaxon:2706027","l":"Streptomyces sp. SID10815","na":1,"nb":1,"a":[["TED%3AAF-A0A6B2V5P6-F1-model_v4_TED01","TED novel fold AF-A0A6B2V5P6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2706027","Streptomyces sp. SID10815"]]},{"id":"NCBITaxon:2706031","l":"Streptomyces sp. SID11385","na":1,"nb":1,"a":[["TED%3AAF-A0A6B2UCN6-F1-model_v4_TED01","TED novel fold AF-A0A6B2UCN6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2706031","Streptomyces sp. SID11385"]]},{"id":"NCBITaxon:2706086","l":"Streptomyces sp. SID7499","na":1,"nb":1,"a":[["TED%3AAF-A0A6G3XUN9-F1-model_v4_TED01","TED novel fold AF-A0A6G3XUN9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2706086","Streptomyces sp. SID7499"]]},{"id":"NCBITaxon:2706092","l":"Streptomyces sp. SID7909","na":1,"nb":1,"a":[["TED%3AAF-A0A6B2ZL91-F1-model_v4_TED03","TED novel fold AF-A0A6B2ZL91-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2706092","Streptomyces sp. SID7909"]]},{"id":"NCBITaxon:2706104","l":"Streptomyces sp. SID8455","na":1,"nb":1,"a":[["TED%3AAF-A0A6B3IGZ6-F1-model_v4_TED01","TED novel fold AF-A0A6B3IGZ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2706104","Streptomyces sp. SID8455"]]},{"id":"NCBITaxon:2706888","l":"Oceanipulchritudo coccoides","na":1,"nb":1,"a":[["TED%3AAF-A0A6B2M276-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A6B2M276-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2706888","Oceanipulchritudo coccoides"]]},{"id":"NCBITaxon:2707005","l":"Paenibacillus lutimineralis","na":1,"nb":1,"a":[["TED%3AAF-A0A3S9UWH3-F1-model_v4_TED03","TED novel fold AF-A0A3S9UWH3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2707005","Paenibacillus lutimineralis"]]},{"id":"NCBITaxon:2707176","l":"Ideonella livida","na":1,"nb":1,"a":[["TED%3AAF-A0A7C9TJE1-F1-model_v4_TED01","TED novel fold AF-A0A7C9TJE1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2707176","Ideonella livida"]]},{"id":"NCBITaxon:2707344","l":"Candidatus Hydrogenisulfobacillus filiaventi","na":1,"nb":1,"a":[["TED%3AAF-A0A6F8ZGP4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6F8ZGP4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2707344","Candidatus Hydrogenisulfobacillus filiaventi"]]},{"id":"NCBITaxon:2707525","l":"Sulfuriroseicoccus oceanibius","na":1,"nb":1,"a":[["TED%3AAF-A0A6B3LA18-F1-model_v4_TED02","TED novel fold AF-A0A6B3LA18-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2707525","Sulfuriroseicoccus oceanibius"]]},{"id":"NCBITaxon:2708082","l":"Mumia sp. ZJ1417","na":1,"nb":1,"a":[["TED%3AAF-A0A7G5LSA1-F1-model_v4_TED03","TED novel fold AF-A0A7G5LSA1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2708082","Mumia sp. ZJ1417"]]},{"id":"NCBITaxon:2708117","l":"Capnocytophaga endodontalis","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z4BK40-F1-model_v4_TED02","TED novel fold AF-A0A1Z4BK40-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2708117","Capnocytophaga endodontalis"]]},{"id":"NCBITaxon:270918","l":"Salegentibacter mishustinae","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q9ZKQ5-F1-model_v4_TED01","TED novel fold AF-A0A0Q9ZKQ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A270918","Salegentibacter mishustinae"]]},{"id":"NCBITaxon:2709310","l":"Psychroflexus aurantiacus","na":1,"nb":1,"a":[["TED%3AAF-A0A6B3R6F6-F1-model_v4_TED01","TED novel fold AF-A0A6B3R6F6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2709310","Psychroflexus aurantiacus"]]},{"id":"NCBITaxon:2710650","l":"Tabrizicola oligotrophica","na":1,"nb":1,"a":[["TED%3AAF-A0A6M0QVQ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6M0QVQ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2710650","Tabrizicola oligotrophica"]]},{"id":"NCBITaxon:2710758","l":"Phototrophicus methaneseepsis","na":1,"nb":1,"a":[["TED%3AAF-A0A7S8EBR2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S8EBR2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2710758","Phototrophicus methaneseepsis"]]},{"id":"NCBITaxon:2710881","l":"Sphingobacterium sp. SGG-5","na":1,"nb":1,"a":[["TED%3AAF-A0A6M1N329-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6M1N329-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2710881","Sphingobacterium sp. SGG-5"]]},{"id":"NCBITaxon:2710883","l":"Sphingobacterium sp. SGL-16","na":1,"nb":1,"a":[["TED%3AAF-A0A6M1NSA2-F1-model_v4_TED02","TED novel fold AF-A0A6M1NSA2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2710883","Sphingobacterium sp. SGL-16"]]},{"id":"NCBITaxon:2713571","l":"Arthrobacter sp. SDTb3-6","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y7M4K4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y7M4K4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2713571","Arthrobacter sp. SDTb3-6"]]},{"id":"NCBITaxon:2714353","l":"Vescimonas fastidiosa","na":1,"nb":1,"a":[["TED%3AAF-A0A810PZE6-F1-model_v4_TED02","TED novel fold AF-A0A810PZE6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2714353","Vescimonas fastidiosa"]]},{"id":"NCBITaxon:2714763","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A179HZU5-F1-model_v4_TED01","TED novel fold AF-A0A179HZU5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2714763","Akanthomyces lecanii"]]},{"id":"NCBITaxon:2714928","l":"Erysipelothrix sp. HDW6A","na":1,"nb":1,"a":[["TED%3AAF-A0A6G7WWW2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6G7WWW2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2714928","Erysipelothrix sp. HDW6A"]]},{"id":"NCBITaxon:2714945","l":"Thermomonas sp. HDW16","na":1,"nb":1,"a":[["TED%3AAF-A0A6G7ZWG8-F1-model_v4_TED02","TED novel fold AF-A0A6G7ZWG8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2714945","Thermomonas sp. HDW16"]]},{"id":"NCBITaxon:2715255","l":"Candidatus Sumerlaeia bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A849ZNH8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A849ZNH8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2715255","Candidatus Sumerlaeia bacterium"]]},{"id":"NCBITaxon:2715692","l":"Hellea sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A848V7Z8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A848V7Z8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2715692","Hellea sp."]]},{"id":"NCBITaxon:2716225","l":"Hydrogenophaga crocea","na":1,"nb":1,"a":[["TED%3AAF-A0A6G8IJ99-F1-model_v4_TED01","TED novel fold AF-A0A6G8IJ99-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2716225","Hydrogenophaga crocea"]]},{"id":"NCBITaxon:2716538","l":"Clostridium muellerianum","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y0HS39-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y0HS39-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2716538","Clostridium muellerianum"]]},{"id":"NCBITaxon:2717365","l":"Ktedonobacteria bacterium brp13","na":1,"nb":1,"a":[["TED%3AAF-A0A7I8EZU9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7I8EZU9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2717365","Ktedonobacteria bacterium brp13"]]},{"id":"NCBITaxon:2719008","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7X6JJ83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X6JJ83-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2719008","Rhodobacteraceae bacterium R_SAG6"]]},{"id":"NCBITaxon:2719014","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7X6G3T4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7X6G3T4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2719014","Alteromonadaceae bacterium A_SAG2"]]},{"id":"NCBITaxon:2719023","l":"Saccharopolyspora sp. ASAGF58","na":1,"nb":1,"a":[["TED%3AAF-A0A6H1RDL1-F1-model_v4_TED01","TED novel fold AF-A0A6H1RDL1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2719023","Saccharopolyspora sp. ASAGF58"]]},{"id":"NCBITaxon:2719586","l":"Pseudomonas sp. CES","na":1,"nb":1,"a":[["TED%3AAF-A0A7V8GU83-F1-model_v4_TED03","TED novel fold AF-A0A7V8GU83-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2719586","Pseudomonas sp. CES"]]},{"id":"NCBITaxon:2720482","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7X6HKG9-F1-model_v4_TED01","TED novel fold AF-A0A7X6HKG9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2720482","Microcoleus sp. SU_5_3"]]},{"id":"NCBITaxon:2721242","l":"Streptomyces sp. RLA2-12","na":1,"nb":1,"a":[["TED%3AAF-A0A7X9VIM1-F1-model_v4_TED02","TED novel fold AF-A0A7X9VIM1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2721242","Streptomyces sp. RLA2-12"]]},{"id":"NCBITaxon:2722756","l":"Brenneria izadpanahii","na":1,"nb":1,"a":[["TED%3AAF-A0A8A5FYX8-F1-model_v4_TED03","TED novel fold AF-A0A8A5FYX8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2722756","Brenneria izadpanahii"]]},{"id":"NCBITaxon:2723028","l":"Nostocaceae cyanobacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A838VQ58-F1-model_v4_TED01","TED novel fold AF-A0A838VQ58-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2723028","Nostocaceae cyanobacterium"]]},{"id":"NCBITaxon:2723083","l":"Rhodanobacter sp. ANJX3","na":1,"nb":1,"a":[["TED%3AAF-A0A7W8JHU5-F1-model_v4_TED02","TED novel fold AF-A0A7W8JHU5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2723083","Rhodanobacter sp. ANJX3"]]},{"id":"NCBITaxon:2723091","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7W9XJ11-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W9XJ11-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2723091","Mucilaginibacter saanensis"]]},{"id":"NCBITaxon:2723094","l":"Paraburkholderia sp. Cpub6","na":1,"nb":1,"a":[["TED%3AAF-A0A7W8RVB6-F1-model_v4_TED03","TED novel fold AF-A0A7W8RVB6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2723094","Paraburkholderia sp. Cpub6"]]},{"id":"NCBITaxon:2724616","l":"Desulfatitalea sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A849ETY0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A849ETY0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2724616","Desulfatitalea sp."]]},{"id":"NCBITaxon:2724914","l":"Leifsonia sp. PS1209","na":1,"nb":1,"a":[["TED%3AAF-A0A6H1W4P6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6H1W4P6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2724914","Leifsonia sp. PS1209"]]},{"id":"NCBITaxon:2725268","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7L6N6H3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7L6N6H3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2725268","Hujiaoplasma nucleasis"]]},{"id":"NCBITaxon:2725304","l":"Fusobacterium sp. FSA-380-WT-3A","na":1,"nb":1,"a":[["TED%3AAF-A0A848C134-F1-model_v4_TED01","TED novel fold AF-A0A848C134-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2725304","Fusobacterium sp. FSA-380-WT-3A"]]},{"id":"NCBITaxon:2726116","l":"Chitinophaga sp. Ak27","na":1,"nb":1,"a":[["TED%3AAF-A0A847T8E7-F1-model_v4_TED01","TED novel fold AF-A0A847T8E7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2726116","Chitinophaga sp. Ak27"]]},{"id":"NCBITaxon:2726117","l":"Mycoplasma phocoeninasale","na":1,"nb":1,"a":[["TED%3AAF-A0A858U3I0-F1-model_v4_TED03","TED novel fold AF-A0A858U3I0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2726117","Mycoplasma phocoeninasale"]]},{"id":"NCBITaxon:272622","l":"","na":1,"nb":1,"a":[["Pfam%3APF09136","Glucodextranase, domain B"]],"b":[["NCBITaxon%3A272622","Lactococcus cremoris subsp. cremoris SK11"]]},{"id":"NCBITaxon:272635","l":"","na":1,"nb":1,"a":[["TED%3AAF-Q98QG8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q98QG8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A272635","Mycoplasmopsis pulmonis UAB CTIP"]]},{"id":"NCBITaxon:2726738","l":"Rhizobium sp. P32RR-XVIII","na":1,"nb":1,"a":[["TED%3AAF-A0A7X8Y8R6-F1-model_v4_TED01","TED novel fold AF-A0A7X8Y8R6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2726738","Rhizobium sp. P32RR-XVIII"]]},{"id":"NCBITaxon:2726956","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7G5DIN6-F1-model_v4_TED02","TED novel fold AF-A0A7G5DIN6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2726956","Pseudomonas berkeleyensis"]]},{"id":"NCBITaxon:2728835","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A858RIN4-F1-model_v4_TED01","TED novel fold AF-A0A858RIN4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2728835","Neoluteolibacter luteus"]]},{"id":"NCBITaxon:2728836","l":"Azohydromonas caseinilytica","na":1,"nb":1,"a":[["TED%3AAF-A0A848F889-F1-model_v4_TED02","TED novel fold AF-A0A848F889-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2728836","Azohydromonas caseinilytica"]]},{"id":"NCBITaxon:2728838","l":"Sphingomonas sp. G-3-2-10","na":1,"nb":1,"a":[["TED%3AAF-A0A7X9WKK5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X9WKK5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2728838","Sphingomonas sp. G-3-2-10"]]},{"id":"NCBITaxon:2728839","l":"Paraburkholderia antibiotica","na":1,"nb":1,"a":[["TED%3AAF-A0A7X9ZW44-F1-model_v4_TED02","TED novel fold AF-A0A7X9ZW44-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2728839","Paraburkholderia antibiotica"]]},{"id":"NCBITaxon:2728841","l":"Pseudoflavitalea sp. G-6-1-2","na":1,"nb":1,"a":[["TED%3AAF-A0A848G2J7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A848G2J7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2728841","Pseudoflavitalea sp. G-6-1-2"]]},{"id":"NCBITaxon:2728842","l":"Chitinophaga fulva","na":1,"nb":1,"a":[["TED%3AAF-A0A848GKS7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A848GKS7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2728842","Chitinophaga fulva"]]},{"id":"NCBITaxon:2728847","l":"Chryseobacterium antibioticum","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y0AMI8-F1-model_v4_TED01","TED novel fold AF-A0A7Y0AMI8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2728847","Chryseobacterium antibioticum"]]},{"id":"NCBITaxon:2729613","l":"Thalassotalea sp. Y01","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y0KVJ5-F1-model_v4_TED01","TED novel fold AF-A0A7Y0KVJ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2729613","Thalassotalea sp. Y01"]]},{"id":"NCBITaxon:2729629","l":"Sulfobacillus harzensis","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y0Q4W7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y0Q4W7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2729629","Sulfobacillus harzensis"]]},{"id":"NCBITaxon:2730080","l":"Fundidesulfovibrio magnetotacticus","na":1,"nb":1,"a":[["TED%3AAF-A0A6V8LL98-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6V8LL98-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2730080","Fundidesulfovibrio magnetotacticus"]]},{"id":"NCBITaxon:2732044","l":"Streptomyces sp. S3(2020)","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y3PWD0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y3PWD0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2732044","Streptomyces sp. S3(2020)"]]},{"id":"NCBITaxon:2733487","l":"Halomonas sp. MCCC 1A13316","na":1,"nb":1,"a":[["TED%3AAF-A0A7M1QAE4-F1-model_v4_TED01","TED novel fold AF-A0A7M1QAE4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2781855","Billgrantia diversa"]]},{"id":"NCBITaxon:2734618","l":"Microbacterium sp. NIBRBAC000506063","na":1,"nb":1,"a":[["TED%3AAF-A0A8B0KQM8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B0KQM8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2734618","Microbacterium sp. NIBRBAC000506063"]]},{"id":"NCBITaxon:2735878","l":"Novosphingobium sp. R1F6D","na":1,"nb":1,"a":[["TED%3AAF-A0A7Z0GFQ0-F1-model_v4_TED01","TED novel fold AF-A0A7Z0GFQ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2735878","Novosphingobium sp. R1F6D"]]},{"id":"NCBITaxon:2735882","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7W8CMF6-F1-model_v4_TED02","TED novel fold AF-A0A7W8CMF6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2735882","Mycobacterium sp. AZCC_0083"]]},{"id":"NCBITaxon:2735906","l":"Pseudomonas sp. B11D7D","na":1,"nb":1,"a":[["TED%3AAF-A0A7G7RYE9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G7RYE9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2735906","Pseudomonas sp. B11D7D"]]},{"id":"NCBITaxon:2735912","l":"Chryseobacterium sp. H1D6C","na":1,"nb":1,"a":[["TED%3AAF-A0A7Z0G7Z3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Z0G7Z3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2735912","Chryseobacterium sp. H1D6C"]]},{"id":"NCBITaxon:2736284","l":"Bacillus sp. Gen3","na":1,"nb":1,"a":[["TED%3AAF-A0A7Z0TDN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Z0TDN3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2736284","Bacillus sp. Gen3"]]},{"id":"NCBITaxon:2739","l":"Vagococcus salmoninarum","na":1,"nb":1,"a":[["TED%3AAF-A0A429ZRZ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A429ZRZ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2739","Vagococcus salmoninarum"]]},{"id":"NCBITaxon:2740537","l":"Rubrobacteraceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A838KWE1-F1-model_v4_TED01","TED novel fold AF-A0A838KWE1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2740537","Rubrobacteraceae bacterium"]]},{"id":"NCBITaxon:2740543","l":"Bradymonadaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A838IDP9-F1-model_v4_TED03","TED novel fold AF-A0A838IDP9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2740543","Bradymonadaceae bacterium"]]},{"id":"NCBITaxon:2740584","l":"Rheinheimera lutimaris","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y5EJE9-F1-model_v4_TED01","TED novel fold AF-A0A7Y5EJE9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2740584","Rheinheimera lutimaris"]]},{"id":"NCBITaxon:2741497","l":"Peptidiphaga gingivicola","na":1,"nb":1,"a":[["TED%3AAF-A0A179B1W0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A179B1W0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2741497","Peptidiphaga gingivicola"]]},{"id":"NCBITaxon:2741543","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7V8NL93-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V8NL93-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2741543","Candidatus Acidiferrum panamense"]]},{"id":"NCBITaxon:2742129","l":"Stenotrophomonas sp. NA06056","na":1,"nb":1,"a":[["TED%3AAF-A0A7H8NWE4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H8NWE4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2742129","Stenotrophomonas sp. NA06056"]]},{"id":"NCBITaxon:2742135","l":"Kitasatospora sp. NA04385","na":1,"nb":1,"a":[["TED%3AAF-A0A7H8L1A8-F1-model_v4_TED01","TED novel fold AF-A0A7H8L1A8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2742135","Kitasatospora sp. NA04385"]]},{"id":"NCBITaxon:2742136","l":"Streptomyces sp. NA04227","na":1,"nb":1,"a":[["TED%3AAF-A0A7H8JMX3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H8JMX3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2742136","Streptomyces sp. NA04227"]]},{"id":"NCBITaxon:2742137","l":"Streptomyces sp. NA02950","na":1,"nb":1,"a":[["TED%3AAF-A0A7H8IZV7-F1-model_v4_TED01","TED novel fold AF-A0A7H8IZV7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2742137","Streptomyces sp. NA02950"]]},{"id":"NCBITaxon:2744516","l":"Mesorhizobium sp. 113-3-3","na":1,"nb":1,"a":[["TED%3AAF-A0A7R7AVA7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7R7AVA7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2744516","Mesorhizobium sp. 113-3-3"]]},{"id":"NCBITaxon:2744520","l":"Mesorhizobium sp. 131-3-5","na":1,"nb":1,"a":[["TED%3AAF-A0A7R7BKF3-F1-model_v4_TED02","TED novel fold AF-A0A7R7BKF3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2744520","Mesorhizobium sp. 131-3-5"]]},{"id":"NCBITaxon:2744522","l":"Mesorhizobium sp. L-8-3","na":1,"nb":1,"a":[["TED%3AAF-A0A7R7BYU5-F1-model_v4_TED04","TED novel fold AF-A0A7R7BYU5-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2744522","Mesorhizobium sp. L-8-3"]]},{"id":"NCBITaxon:2744550","l":"Pseudomonas sp. GC01","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y2PJK7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y2PJK7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2744550","Pseudomonas sp. GC01"]]},{"id":"NCBITaxon:2745197","l":"Adhaeribacter radiodurans","na":1,"nb":1,"a":[["TED%3AAF-A0A7L7L7C4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7L7L7C4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2745197","Adhaeribacter radiodurans"]]},{"id":"NCBITaxon:2745508","l":"Pseudomonas khorasanensis","na":1,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_TBH_Asp","T-E-associated metallophore aspartate beta-hydroxylase family"]],"b":[["NCBITaxon%3A2745508","Pseudomonas khorasanensis"]]},{"id":"NCBITaxon:2745851","l":"Moheibacter lacus","na":1,"nb":1,"a":[["TED%3AAF-A0A838ZEU7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A838ZEU7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2745851","Moheibacter lacus"]]},{"id":"NCBITaxon:2748318","l":"Oceaniferula marina","na":1,"nb":1,"a":[["TED%3AAF-A0A851GBV4-F1-model_v4_TED02","TED novel fold AF-A0A851GBV4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2748318","Oceaniferula marina"]]},{"id":"NCBITaxon:2748865","l":"Bdellovibrio sp. KM01","na":1,"nb":1,"a":[["TED%3AAF-A0A7H9MJQ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H9MJQ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2748865","Bdellovibrio sp. KM01"]]},{"id":"NCBITaxon:2749086","l":"Hyphobacterium sp. CCMP332","na":1,"nb":1,"a":[["TED%3AAF-A0A7G8ZLM0-F1-model_v4_TED01","TED novel fold AF-A0A7G8ZLM0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2749086","Hyphobacterium sp. CCMP332"]]},{"id":"NCBITaxon:2749828","l":"Streptomyces sp. BR123","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y8X3R1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y8X3R1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2749828","Streptomyces sp. BR123"]]},{"id":"NCBITaxon:2750658","l":"Pontiella sulfatireligans","na":1,"nb":1,"a":[["TED%3AAF-A0A6C2UJ91-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6C2UJ91-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2750658","Pontiella sulfatireligans"]]},{"id":"NCBITaxon:2750659","l":"Pontiella desulfatans","na":1,"nb":1,"a":[["TED%3AAF-A0A6C2U8C2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6C2U8C2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2750659","Pontiella desulfatans"]]},{"id":"NCBITaxon:2751176","l":"Vibrio sp. B1ASS3","na":1,"nb":1,"a":[["TED%3AAF-A0A812GPM8-F1-model_v4_TED04","TED novel fold AF-A0A812GPM8-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2751176","Vibrio sp. B1ASS3"]]},{"id":"NCBITaxon:2751178","l":"Vibrio sp. B1FLJ16","na":1,"nb":1,"a":[["TED%3AAF-A0A812GLG0-F1-model_v4_TED01","TED novel fold AF-A0A812GLG0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2751178","Vibrio sp. B1FLJ16"]]},{"id":"NCBITaxon:2752311","l":"Haloechinothrix aidingensis","na":1,"nb":1,"a":[["TED%3AAF-A0A838A710-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A838A710-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2752311","Haloechinothrix aidingensis"]]},{"id":"NCBITaxon:2754530","l":"Protomyces lactucae-debilis","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y2EYD1-F1-model_v4_TED01","TED novel fold AF-A0A1Y2EYD1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2754530","Protomyces lactucae-debilis"]]},{"id":"NCBITaxon:2754717","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A6V8NQ24-F1-model_v4_TED01","TED novel fold AF-A0A6V8NQ24-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2754717","Candidatus Hakubella thermalkaliphila"]]},{"id":"NCBITaxon:2754723","l":"Cetobacterium sp. 2A","na":1,"nb":1,"a":[["TED%3AAF-A0A842J1M3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A842J1M3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2754723","Cetobacterium sp. 2A"]]},{"id":"NCBITaxon:2755323","l":"Thermogemmata fonticola","na":1,"nb":1,"a":[["TED%3AAF-A0A7V9ABT3-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7V9ABT3-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2755323","Thermogemmata fonticola"]]},{"id":"NCBITaxon:2755562","l":"Legionella sp. PC997","na":1,"nb":1,"a":[["TED%3AAF-A0A7G4RI73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G4RI73-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2755562","Legionella sp. PC997"]]},{"id":"NCBITaxon:2758037","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7D7LLD3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7D7LLD3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2758037","Marnyiella aurantia"]]},{"id":"NCBITaxon:2758439","l":"Rhizobium sp. G21","na":1,"nb":1,"a":[["TED%3AAF-A0A7W3WAF5-F1-model_v4_TED02","TED novel fold AF-A0A7W3WAF5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2758439","Rhizobium sp. G21"]]},{"id":"NCBITaxon:2758675","l":"Flavobacterium sp. xlx-221","na":1,"nb":1,"a":[["TED%3AAF-A0A7W2FYJ7-F1-model_v4_TED01","TED novel fold AF-A0A7W2FYJ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2758675","Flavobacterium sp. xlx-221"]]},{"id":"NCBITaxon:2759817","l":"Colwellia sp. Bg11-12","na":1,"nb":1,"a":[["TED%3AAF-A0A7W2ML90-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W2ML90-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2759817","Colwellia sp. Bg11-12"]]},{"id":"NCBITaxon:2759824","l":"Colwellia sp. MB02u-6","na":1,"nb":1,"a":[["TED%3AAF-A0A7W2SE70-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W2SE70-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2759824","Colwellia sp. MB02u-6"]]},{"id":"NCBITaxon:2759847","l":"Pseudoalteromonas sp. 5Ae-yellow","na":1,"nb":1,"a":[["TED%3AAF-A0A7W2TMF7-F1-model_v4_TED01","TED novel fold AF-A0A7W2TMF7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2759847","Pseudoalteromonas sp. 5Ae-yellow"]]},{"id":"NCBITaxon:2759911","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7G9YNZ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G9YNZ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2759911","Candidatus Methanogaster sp. ANME-2c ERB4"]]},{"id":"NCBITaxon:2759912","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7G9YX06-F1-model_v4_TED03","TED novel fold AF-A0A7G9YX06-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2759912","Candidatus Methanophagaceae archaeon ANME-1 ERB6"]]},{"id":"NCBITaxon:2760087","l":"Aequorivita sp. 609","na":1,"nb":1,"a":[["TED%3AAF-A0A841TPZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841TPZ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2760087","Aequorivita sp. 609"]]},{"id":"NCBITaxon:2760088","l":"Oceanospirillum sediminis","na":1,"nb":1,"a":[["TED%3AAF-A0A839IN35-F1-model_v4_TED01","TED novel fold AF-A0A839IN35-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2760088","Oceanospirillum sediminis"]]},{"id":"NCBITaxon:2760438","l":"Limnospira indica BM01","na":1,"nb":1,"a":[["TED%3AAF-A0A7G7VWE4-F1-model_v4_TED01","TED novel fold AF-A0A7G7VWE4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2760438","Limnospira indica BM01"]]},{"id":"NCBITaxon:2760935","l":"Shewanella sp. SR44-4","na":1,"nb":1,"a":[["TED%3AAF-A0A7W4AR60-F1-model_v4_TED02","TED novel fold AF-A0A7W4AR60-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2760935","Shewanella sp. SR44-4"]]},{"id":"NCBITaxon:2760936","l":"Shewanella sp. SR44-3","na":1,"nb":1,"a":[["TED%3AAF-A0A7W3X3H7-F1-model_v4_TED02","TED novel fold AF-A0A7W3X3H7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2760936","Shewanella sp. SR44-3"]]},{"id":"NCBITaxon:2760976","l":"Shewanella sp. SG41-4","na":1,"nb":1,"a":[["TED%3AAF-A0A7W4C704-F1-model_v4_TED01","TED novel fold AF-A0A7W4C704-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2760976","Shewanella sp. SG41-4"]]},{"id":"NCBITaxon:2761500","l":"Porcisia hertigi","na":1,"nb":1,"a":[["TED%3AAF-A0A836ID28-F1-model_v4_TED01","TED novel fold AF-A0A836ID28-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2761500","Porcisia hertigi"]]},{"id":"NCBITaxon:2761579","l":"Hymenobacter sediminicola","na":1,"nb":1,"a":[["TED%3AAF-A0A7G7W366-F1-model_v4_TED02","TED novel fold AF-A0A7G7W366-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2761579","Hymenobacter sediminicola"]]},{"id":"NCBITaxon:2762576","l":"Pseudomonas baltica","na":1,"nb":1,"a":[["TED%3AAF-A0A7X1G7W6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X1G7W6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2762576","Pseudomonas baltica"]]},{"id":"NCBITaxon:2763107","l":"Alloacidobacterium dinghuense","na":1,"nb":1,"a":[["TED%3AAF-A0A7G8BDT6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G8BDT6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2763107","Alloacidobacterium dinghuense"]]},{"id":"NCBITaxon:2763672","l":"Simiaoa sunii","na":1,"nb":1,"a":[["TED%3AAF-A0A7G9FVC0-F1-model_v4_TED01","TED novel fold AF-A0A7G9FVC0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2763672","Simiaoa sunii"]]},{"id":"NCBITaxon:2764720","l":"Olivibacter sp. SDN3","na":1,"nb":1,"a":[["TED%3AAF-A0A7G9BDR3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G9BDR3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2764720","Olivibacter sp. SDN3"]]},{"id":"NCBITaxon:2766701","l":"Treponema sp. Marseille-Q4132","na":1,"nb":1,"a":[["TED%3AAF-A0A7G9FFA3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G9FFA3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2766701","Treponema sp. Marseille-Q4132"]]},{"id":"NCBITaxon:2768445","l":"Nocardioides sp. SLBN-35","na":1,"nb":1,"a":[["TED%3AAF-A0A542SD74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A542SD74-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2768445","Nocardioides sp. SLBN-35"]]},{"id":"NCBITaxon:2768447","l":"Phycicoccus sp. SLBN-51","na":1,"nb":1,"a":[["TED%3AAF-A0A542HJ27-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A542HJ27-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2768447","Phycicoccus sp. SLBN-51"]]},{"id":"NCBITaxon:2768460","l":"Lysinimonas sp. SLBN-160","na":1,"nb":1,"a":[["TED%3AAF-A0A852YIC4-F1-model_v4_TED01","TED novel fold AF-A0A852YIC4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2768460","Lysinimonas sp. SLBN-160"]]},{"id":"NCBITaxon:2770322","l":"Stenotrophomonas sp. 169","na":1,"nb":1,"a":[["TED%3AAF-A0A7H1APN7-F1-model_v4_TED01","TED novel fold AF-A0A7H1APN7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2770322","Stenotrophomonas sp. 169"]]},{"id":"NCBITaxon:2770636","l":"Mannheimia bovis","na":1,"nb":1,"a":[["TED%3AAF-A0A7H1C138-F1-model_v4_TED01","TED novel fold AF-A0A7H1C138-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2770636","Mannheimia bovis"]]},{"id":"NCBITaxon:2771430","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7T2GHX0-F1-model_v4_TED01","TED novel fold AF-A0A7T2GHX0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2771430","Allosphingosinicella flava"]]},{"id":"NCBITaxon:2775420","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7T8RW62-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7T8RW62-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2775420","Skermanella cutis"]]},{"id":"NCBITaxon:277988","l":"Thermococcus thioreducens","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q2S4S6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q2S4S6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A277988","Thermococcus thioreducens"]]},{"id":"NCBITaxon:2780922","l":"Solibaculum mannosilyticum","na":1,"nb":1,"a":[["TED%3AAF-A0A7M3W2R4-F1-model_v4_TED02","TED novel fold AF-A0A7M3W2R4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2780922","Solibaculum mannosilyticum"]]},{"id":"NCBITaxon:2784880","l":"Natranaeroarchaeum sulfidigenes","na":1,"nb":1,"a":[["TED%3AAF-A0A897ML23-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A897ML23-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2784880","Natranaeroarchaeum sulfidigenes"]]},{"id":"NCBITaxon:2785331","l":"Entomomonas asaccharolytica","na":1,"nb":1,"a":[["TED%3AAF-A0A7T8RLN2-F1-model_v4_TED05","TED novel fold AF-A0A7T8RLN2-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2785331","Entomomonas asaccharolytica"]]},{"id":"NCBITaxon:2785785","l":"Methylomonas sp. LL1","na":1,"nb":1,"a":[["TED%3AAF-A0A7T0JPB0-F1-model_v4_TED01","TED novel fold AF-A0A7T0JPB0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2785785","Methylomonas sp. LL1"]]},{"id":"NCBITaxon:2787628","l":"Treponema peruense","na":1,"nb":1,"a":[["TED%3AAF-A0A7T3RE25-F1-model_v4_TED03","TED novel fold AF-A0A7T3RE25-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2787628","Treponema peruense"]]},{"id":"NCBITaxon:2789216","l":"Labrys sp. KNU-23","na":1,"nb":1,"a":[["TED%3AAF-A0A5C1WCX6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C1WCX6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2789216","Labrys sp. KNU-23"]]},{"id":"NCBITaxon:278940","l":"Botrytis galanthina","na":1,"nb":1,"a":[["TED%3AAF-A0A4S8QP05-F1-model_v4_TED01","TED novel fold AF-A0A4S8QP05-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A278940","Botrytis galanthina"]]},{"id":"NCBITaxon:279058","l":"Collimonas arenae","na":1,"nb":1,"a":[["TED%3AAF-A0A0A1FBZ5-F1-model_v4_TED02","TED novel fold AF-A0A0A1FBZ5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A279058","Collimonas arenae"]]},{"id":"NCBITaxon:279113","l":"Collimonas pratensis","na":1,"nb":1,"a":[["TED%3AAF-A0A127Q9K0-F1-model_v4_TED02","TED novel fold AF-A0A127Q9K0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A279113","Collimonas pratensis"]]},{"id":"NCBITaxon:2792603","l":"Acidihalobacter aeolianus","na":1,"nb":1,"a":[["TED%3AAF-A0A1D8KBM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1D8KBM4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2792603","Acidihalobacter aeolianus"]]},{"id":"NCBITaxon:2795689","l":"Alteromonas sp. KC14","na":1,"nb":1,"a":[["TED%3AAF-A0A7R7GIT0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7R7GIT0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2795689","Alteromonas sp. KC14"]]},{"id":"NCBITaxon:2795690","l":"Kaistia sp. 32K","na":1,"nb":1,"a":[["TED%3AAF-A0A7R7T725-F1-model_v4_TED01","TED novel fold AF-A0A7R7T725-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2795690","Kaistia sp. 32K"]]},{"id":"NCBITaxon:2795738","l":"Sphingobacterium sp. UDSM-2020","na":1,"nb":1,"a":[["TED%3AAF-A0A7T4QWN9-F1-model_v4_TED02","TED novel fold AF-A0A7T4QWN9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2795738","Sphingobacterium sp. UDSM-2020"]]},{"id":"NCBITaxon:279714","l":"Pseudogulbenkiania ferrooxidans 2002","na":1,"nb":1,"a":[["TED%3AAF-B9Z3M4-F1-model_v4_TED02","TED novel fold AF-B9Z3M4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A279714","Pseudogulbenkiania ferrooxidans 2002"]]},{"id":"NCBITaxon:2798577","l":"Breznakiella homolactica","na":1,"nb":1,"a":[["TED%3AAF-A0A7T7XPH2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T7XPH2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2798577","Breznakiella homolactica"]]},{"id":"NCBITaxon:280036","l":"Sporisorium graminicola","na":1,"nb":1,"a":[["TED%3AAF-A0A4U7KT65-F1-model_v4_TED02","TED novel fold AF-A0A4U7KT65-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A280036","Sporisorium graminicola"]]},{"id":"NCBITaxon:2802972","l":"Bryobacterales bacterium F-183","na":1,"nb":1,"a":[["TED%3AAF-A0A7R8BBA2-F1-model_v4_TED01","TED novel fold AF-A0A7R8BBA2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2802972","Bryobacterales bacterium F-183"]]},{"id":"NCBITaxon:2803181","l":"Leishmania sp. Ghana 2012 LV757","na":1,"nb":1,"a":[["TED%3AAF-A0A836HN95-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A836HN95-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2803181","Leishmania sp. Ghana 2012 LV757"]]},{"id":"NCBITaxon:2805098","l":"Photorhabdus aegyptia","na":1,"nb":1,"a":[["TED%3AAF-A0A022PGR1-F1-model_v4_TED04","TED novel fold AF-A0A022PGR1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2805098","Photorhabdus aegyptia"]]},{"id":"NCBITaxon:2806336","l":"Clostridiales bacterium FE2010","na":1,"nb":1,"a":[["TED%3AAF-A0A8A5D479-F1-model_v4_TED03","TED novel fold AF-A0A8A5D479-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2806336","Clostridiales bacterium FE2010"]]},{"id":"NCBITaxon:280699","l":"Cyanidioschyzon merolae (strain NIES-3377 / 10D)","na":1,"nb":1,"a":[["Pfam%3APF17866","AAA lid domain"]],"b":[["NCBITaxon%3A280699","Cyanidioschyzon merolae strain 10D"]]},{"id":"NCBITaxon:28083","l":"Legionella birminghamensis","na":1,"nb":1,"a":[["TED%3AAF-A0A378I8E9-F1-model_v4_TED02","TED novel fold AF-A0A378I8E9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A28083","Legionella birminghamensis"]]},{"id":"NCBITaxon:28101","l":"Phyllobacterium myrsinacearum","na":1,"nb":1,"a":[["TED%3AAF-A0A2S9JAN5-F1-model_v4_TED02","TED novel fold AF-A0A2S9JAN5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A28101","Phyllobacterium myrsinacearum"]]},{"id":"NCBITaxon:28119","l":"Bacteroides zoogleoformans","na":1,"nb":1,"a":[["TED%3AAF-A0A562V923-F1-model_v4_TED02","TED novel fold AF-A0A562V923-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A28119","Bacteroides zoogleoformans"]]},{"id":"NCBITaxon:2813780","l":"Alcaligenes sp. SORT26","na":1,"nb":1,"a":[["TED%3AAF-A0A8A4H621-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8A4H621-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2813780","Alcaligenes sp. SORT26"]]},{"id":"NCBITaxon:28149","l":"","na":1,"nb":1,"a":[["Pfam%3APF22370","Flagellin, beta sheet domain"]],"b":[["NCBITaxon%3A28149","Salmonella enterica subsp. enterica serovar Rostock"]]},{"id":"NCBITaxon:28177","l":"Kryptophanaron alfredi symbiont","na":1,"nb":1,"a":[["PROSITE%3APS00494","Bacterial luciferase subunits signature"]],"b":[["NCBITaxon%3A28177","Kryptophanaron alfredi symbiont"]]},{"id":"NCBITaxon:28181","l":"Magnetovibrio blakemorei","na":1,"nb":1,"a":[["TED%3AAF-A0A1E5Q9I9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E5Q9I9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28181","Magnetovibrio blakemorei"]]},{"id":"NCBITaxon:2819280","l":"Acidihalobacter yilgarnensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1D8IQR8-F1-model_v4_TED01","TED novel fold AF-A0A1D8IQR8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2819280","Acidihalobacter yilgarnensis"]]},{"id":"NCBITaxon:2820278","l":"Aquabacter sp. L1I39","na":1,"nb":1,"a":[["TED%3AAF-A0A8A7CUZ9-F1-model_v4_TED02","TED novel fold AF-A0A8A7CUZ9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2820278","Aquabacter sp. L1I39"]]},{"id":"NCBITaxon:282197","l":"Jannaschia rubra","na":1,"nb":1,"a":[["TED%3AAF-A0A0M6XN40-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0M6XN40-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A282197","Jannaschia rubra"]]},{"id":"NCBITaxon:2823317","l":"Phascolarctobacterium sp. Marseille-Q4147","na":1,"nb":1,"a":[["TED%3AAF-A0A8B0KIM4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A8B0KIM4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2823317","Phascolarctobacterium sp. Marseille-Q4147"]]},{"id":"NCBITaxon:28234","l":"Geotoga petraea","na":1,"nb":1,"a":[["TED%3AAF-A0A1G6NUB4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1G6NUB4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A28234","Geotoga petraea"]]},{"id":"NCBITaxon:28238","l":"","na":1,"nb":1,"a":[["Pfam%3APF19538","Family of unknown function (DUF6062)"]],"b":[["NCBITaxon%3A28238","Caldicellulosiruptor sp. Rt8B.4"]]},{"id":"NCBITaxon:282423","l":"Planktothrix agardhii NIES-204","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z6CJC9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z6CJC9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A282423","Planktothrix agardhii NIES-204"]]},{"id":"NCBITaxon:284028","l":"Streptomyces fulvorobeus","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y9HHV1-F1-model_v4_TED01","TED novel fold AF-A0A7Y9HHV1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A284028","Streptomyces fulvorobeus"]]},{"id":"NCBITaxon:2843","l":"Skeletonema costatum","na":1,"nb":1,"a":[["Pfam%3APF06868","Protein of unknown function (DUF1257)"]],"b":[["NCBITaxon%3A2843","Skeletonema costatum"]]},{"id":"NCBITaxon:284579","l":"Salibacterium salarium","na":1,"nb":1,"a":[["TED%3AAF-A0A3R9PEH4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R9PEH4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A284579","Salibacterium salarium"]]},{"id":"NCBITaxon:284581","l":"Priestia koreensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0M0L512-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0M0L512-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A284581","Priestia koreensis"]]},{"id":"NCBITaxon:285525","l":"Streptomyces sahachiroi","na":1,"nb":1,"a":[["Pfam%3APF06224","DNA glycosylase AlkZ-like"]],"b":[["NCBITaxon%3A285525","Streptomyces sahachiroi"]]},{"id":"NCBITaxon:285676","l":"Micromonospora saelicesensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1C4ZZA2-F1-model_v4_TED02","TED novel fold AF-A0A1C4ZZA2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A285676","Micromonospora saelicesensis"]]},{"id":"NCBITaxon:285729","l":"Fusobacterium canifelinum","na":1,"nb":1,"a":[["TED%3AAF-A0A3P1V048-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3P1V048-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A285729","Fusobacterium canifelinum"]]},{"id":"NCBITaxon:286115","l":"Synchytrium endobioticum","na":1,"nb":1,"a":[["TED%3AAF-A0A507DIM4-F1-model_v4_TED01","TED novel fold AF-A0A507DIM4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A286115","Synchytrium endobioticum"]]},{"id":"NCBITaxon:286636","l":"","na":1,"nb":1,"a":[["PROSITE%3APS00829","Prokaryotic transcription elongation factors signature 1"]],"b":[["NCBITaxon%3A286636","Streptococcus pyogenes MGAS10394"]]},{"id":"NCBITaxon:286727","l":"Azospirillum oryzae","na":1,"nb":1,"a":[["TED%3AAF-A0A6N1AKY1-F1-model_v4_TED01","TED novel fold AF-A0A6N1AKY1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A286727","Azospirillum oryzae"]]},{"id":"NCBITaxon:288681","l":"Bacillus cereus E33L","na":1,"nb":1,"a":[["TED%3AAF-Q4V119-F1-model_v4_TED01","TED highly-symmetric fold AF-Q4V119-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A288681","Bacillus cereus E33L"]]},{"id":"NCBITaxon:288768","l":"Bordetella ansorpii","na":1,"nb":1,"a":[["TED%3AAF-A0A157MBV7-F1-model_v4_TED01","TED novel fold AF-A0A157MBV7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A288768","Bordetella ansorpii"]]},{"id":"NCBITaxon:288992","l":"Pedobacter caeni","na":1,"nb":1,"a":[["TED%3AAF-A0A1M4ZFL8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M4ZFL8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A288992","Pedobacter caeni"]]},{"id":"NCBITaxon:28985","l":"Kluyveromyces lactis","na":1,"nb":1,"a":[["Pfam%3APF03930","Recombinase Flp protein N-terminus"]],"b":[["NCBITaxon%3A28985","Kluyveromyces lactis"]]},{"id":"NCBITaxon:290052","l":"Acetivibrio ethanolgignens","na":1,"nb":1,"a":[["TED%3AAF-A0A0V8QEW9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0V8QEW9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A290052","Acetivibrio ethanolgignens"]]},{"id":"NCBITaxon:290054","l":"Eubacterium coprostanoligenes","na":1,"nb":1,"a":[["TED%3AAF-A0A1T4NG17-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1T4NG17-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A290054","Eubacterium coprostanoligenes"]]},{"id":"NCBITaxon:290847","l":"","na":1,"nb":1,"a":[["Pfam%3APF10788","Protein of unknown function (DUF2603)"]],"b":[["NCBITaxon%3A290847","Helicobacter pylori 51"]]},{"id":"NCBITaxon:291195","l":"Tubulinosema ratisbonensis","na":1,"nb":1,"a":[["TED%3AAF-A0A437AH37-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A437AH37-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A291195","Tubulinosema ratisbonensis"]]},{"id":"NCBITaxon:29176","l":"Neospora caninum","na":1,"nb":1,"a":[["Pfam%3APF05084","Granule antigen protein (GRA6)"]],"b":[["NCBITaxon%3A29176","Neospora caninum"]]},{"id":"NCBITaxon:292415","l":"Thiobacillus denitrificans ATCC 25259","na":1,"nb":1,"a":[["Pfam%3APF06804","Outer membrane protein assembly factor BamC-like C-terminal domain"]],"b":[["NCBITaxon%3A292415","Thiobacillus denitrificans ATCC 25259"]]},{"id":"NCBITaxon:29313","l":"Mycobacterium shimoidei","na":1,"nb":1,"a":[["TED%3AAF-A0A1E3TGG0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1E3TGG0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29313","Mycobacterium shimoidei"]]},{"id":"NCBITaxon:29408","l":"Rhodoplanes elegans","na":1,"nb":1,"a":[["TED%3AAF-A0A327KTJ5-F1-model_v4_TED01","TED novel fold AF-A0A327KTJ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29408","Rhodoplanes elegans"]]},{"id":"NCBITaxon:29422","l":"Legionella brunensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0W0RZW2-F1-model_v4_TED03","TED novel fold AF-A0A0W0RZW2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A29422","Legionella brunensis"]]},{"id":"NCBITaxon:29443","l":"Paucimonas lemoignei","na":1,"nb":1,"a":[["TED%3AAF-A0A4R3HQA7-F1-model_v4_TED02","TED novel fold AF-A0A4R3HQA7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29443","Paucimonas lemoignei"]]},{"id":"NCBITaxon:29456","l":"Alteromonas sp. B-10-31","na":1,"nb":1,"a":[["Pfam%3APF12559","Serine endopeptidase inhibitors"]],"b":[["NCBITaxon%3A29456","Alteromonas sp. B-10-31"]]},{"id":"NCBITaxon:295108","l":"Candidatus Berkiella aquae","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q9YS56-F1-model_v4_TED01","TED novel fold AF-A0A0Q9YS56-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A295108","Candidatus Berkiella aquae"]]},{"id":"NCBITaxon:29529","l":"Chitinophaga arvensicola","na":1,"nb":1,"a":[["TED%3AAF-A0A1I0RVZ5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I0RVZ5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29529","Chitinophaga arvensicola"]]},{"id":"NCBITaxon:29539","l":"Thermoleophilum album","na":1,"nb":1,"a":[["TED%3AAF-A0A1H6FIV6-F1-model_v4_TED01","TED novel fold AF-A0A1H6FIV6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29539","Thermoleophilum album"]]},{"id":"NCBITaxon:29553","l":"Mycoplasmopsis bovirhinis","na":1,"nb":1,"a":[["TED%3AAF-A0A224AXF9-F1-model_v4_TED02","TED novel fold AF-A0A224AXF9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29553","Mycoplasmopsis bovirhinis"]]},{"id":"NCBITaxon:29554","l":"Metamycoplasma canadense","na":1,"nb":1,"a":[["TED%3AAF-A0A077LB01-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A077LB01-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29554","Metamycoplasma canadense"]]},{"id":"NCBITaxon:29556","l":"Mycoplasmopsis gallinacea","na":1,"nb":1,"a":[["TED%3AAF-A0A449A3R6-F1-model_v4_TED02","TED novel fold AF-A0A449A3R6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29556","Mycoplasmopsis gallinacea"]]},{"id":"NCBITaxon:295838","l":"Streptomyces rugosporus","na":1,"nb":1,"a":[["Pfam%3APF18678","Allene oxide cyclase barrel like domain"]],"b":[["NCBITaxon%3A295838","Streptomyces rugosporus"]]},{"id":"NCBITaxon:297246","l":"Legionella pneumophila str. Paris","na":1,"nb":1,"a":[["Pfam%3APF03445","Putative nucleotidyltransferase DUF294"]],"b":[["NCBITaxon%3A297246","Legionella pneumophila str. Paris"]]},{"id":"NCBITaxon:298386","l":"Photobacterium profundum SS9","na":1,"nb":1,"a":[["Pfam%3APF12558","ATP-binding cassette cobalt transporter"]],"b":[["NCBITaxon%3A298386","Photobacterium profundum SS9"]]},{"id":"NCBITaxon:298394","l":"uncultured Thiotrichaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A6S6S720-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A6S6S720-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A298394","uncultured Thiotrichaceae bacterium"]]},{"id":"NCBITaxon:29875","l":"Trichoderma virens","na":1,"nb":1,"a":[["Pfam%3APF07249","Cerato-platanin"]],"b":[["NCBITaxon%3A29875","Trichoderma virens"]]},{"id":"NCBITaxon:298908","l":"Pseudomonas segetis","na":1,"nb":1,"a":[["TED%3AAF-A0A239C9B0-F1-model_v4_TED01","TED novel fold AF-A0A239C9B0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A298908","Pseudomonas segetis"]]},{"id":"NCBITaxon:300193","l":"Phyllobacterium trifolii","na":1,"nb":1,"a":[["TED%3AAF-A0A839U734-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A839U734-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A300193","Phyllobacterium trifolii"]]},{"id":"NCBITaxon:3005","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A7S0A1R6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0A1R6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A3005","Sundstroemia setigera"]]},{"id":"NCBITaxon:301154","l":"Sphingomonas oligophenolica","na":1,"nb":1,"a":[["TED%3AAF-A0A502CIK8-F1-model_v4_TED02","TED novel fold AF-A0A502CIK8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A301154","Sphingomonas oligophenolica"]]},{"id":"NCBITaxon:302913","l":"Elsinoe ampelina","na":1,"nb":1,"a":[["TED%3AAF-A0A6A6G1T3-F1-model_v4_TED01","TED novel fold AF-A0A6A6G1T3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A302913","Elsinoe ampelina"]]},{"id":"NCBITaxon:304","l":"Roseateles saccharophilus","na":1,"nb":1,"a":[["Pfam%3APF09081","Glucan 1,4-alpha-maltotetraohydrolase, domain C"]],"b":[["NCBITaxon%3A304","Roseateles saccharophilus"]]},{"id":"NCBITaxon:310782","l":"Actinacidiphila paucisporea","na":1,"nb":1,"a":[["TED%3AAF-A0A1M7P1B4-F1-model_v4_TED01","TED novel fold AF-A0A1M7P1B4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A310782","Actinacidiphila paucisporea"]]},{"id":"NCBITaxon:311180","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1I6PGV3-F1-model_v4_TED01","TED novel fold AF-A0A1I6PGV3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A311180","Alloyangia pacifica"]]},{"id":"NCBITaxon:311410","l":"Roseibium album","na":1,"nb":1,"a":[["TED%3AAF-A0A0M6YT48-F1-model_v4_TED01","TED novel fold AF-A0A0M6YT48-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A311410","Roseibium album"]]},{"id":"NCBITaxon:311424","l":"","na":1,"nb":1,"a":[["Pfam%3APF13486","Reductive dehalogenase subunit"]],"b":[["NCBITaxon%3A311424","Dehalococcoides mccartyi VS"]]},{"id":"NCBITaxon:312253","l":"Bradyrhizobium tropiciagri","na":1,"nb":1,"a":[["Pfam%3APF26164","Bacterial Gasdermin Family"]],"b":[["NCBITaxon%3A312253","Bradyrhizobium tropiciagri"]]},{"id":"NCBITaxon:31271","l":"Plasmodium chabaudi chabaudi","na":1,"nb":1,"a":[["TED%3AAF-A0A1C6YTY0-F1-model_v4_TED03","TED novel fold AF-A0A1C6YTY0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A31271","Plasmodium chabaudi chabaudi"]]},{"id":"NCBITaxon:313589","l":"Janibacter sp. HTCC2649","na":1,"nb":1,"a":[["TED%3AAF-A3TKC7-F1-model_v4_TED01","TED novel fold AF-A3TKC7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A313589","Janibacter sp. HTCC2649"]]},{"id":"NCBITaxon:314225","l":"","na":1,"nb":1,"a":[["Pfam%3APF03445","Putative nucleotidyltransferase DUF294"]],"b":[["NCBITaxon%3A314225","Erythrobacter litoralis HTCC2594"]]},{"id":"NCBITaxon:314237","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A318T1W1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A318T1W1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A314237","Paramesorhizobium leguminum"]]},{"id":"NCBITaxon:314279","l":"Nitrosococcus oceani C-27","na":1,"nb":1,"a":[["TED%3AAF-A0A0E2YXI3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0E2YXI3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A314279","Nitrosococcus oceani C-27"]]},{"id":"NCBITaxon:314283","l":"Reinekea blandensis MED297","na":1,"nb":1,"a":[["TED%3AAF-A4BH14-F1-model_v4_TED01","TED highly-symmetric fold AF-A4BH14-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A314283","Reinekea blandensis MED297"]]},{"id":"NCBITaxon:315750","l":"Bacillus pumilus SAFR-032","na":1,"nb":1,"a":[["Pfam%3APF06569","Protein of unknown function (DUF1128)"]],"b":[["NCBITaxon%3A315750","Bacillus pumilus SAFR-032"]]},{"id":"NCBITaxon:316058","l":"Rhodopseudomonas palustris HaA2","na":1,"nb":1,"a":[["TED%3AAF-Q2IYC7-F1-model_v4_TED03","TED novel fold AF-Q2IYC7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A316058","Rhodopseudomonas palustris HaA2"]]},{"id":"NCBITaxon:316278","l":"","na":1,"nb":1,"a":[["TED%3AAF-A5GRF4-F1-model_v4_TED02","TED highly-symmetric fold AF-A5GRF4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A316278","Synechococcus sp. RCC307"]]},{"id":"NCBITaxon:316385","l":"Escherichia coli str. K-12 substr. DH10B","na":1,"nb":1,"a":[["Pfam%3APF06392","Acid shock protein"]],"b":[["NCBITaxon%3A316385","Escherichia coli str. K-12 substr. DH10B"]]},{"id":"NCBITaxon:318456","l":"Photobacterium kishitanii","na":1,"nb":1,"a":[["TED%3AAF-A0A2T3R1R5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T3R1R5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A318456","Photobacterium kishitanii"]]},{"id":"NCBITaxon:31872","l":"Magnetospirillum sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A522WHT1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A522WHT1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A31872","Magnetospirillum sp."]]},{"id":"NCBITaxon:318751","l":"Westerdykella ornata","na":1,"nb":1,"a":[["TED%3AAF-A0A6A6JM44-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6A6JM44-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A318751","Westerdykella ornata"]]},{"id":"NCBITaxon:31944","l":"","na":1,"nb":1,"a":[["Pfam%3APF12831","FAD dependent oxidoreductase"]],"b":[["NCBITaxon%3A31944","Corynebacterium sp. U-96"]]},{"id":"NCBITaxon:319701","l":"","na":1,"nb":1,"a":[["Pfam%3APF13734","Spi protease inhibitor"]],"b":[["NCBITaxon%3A319701","Streptococcus pyogenes MGAS6180"]]},{"id":"NCBITaxon:31991","l":"","na":1,"nb":1,"a":[["Pfam%3APF01355","High potential iron-sulfur protein"]],"b":[["NCBITaxon%3A31991","Halomonas halodenitrificans ATCC 12084"]]},{"id":"NCBITaxon:319939","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A6S5RS37-F1-model_v4_TED02","TED novel fold AF-A0A6S5RS37-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A319939","Metapseudomonas otitidis"]]},{"id":"NCBITaxon:320373","l":"","na":1,"nb":1,"a":[["Pfam%3APF21291","Cyanate hydratase, N-terminal"]],"b":[["NCBITaxon%3A320373","Burkholderia pseudomallei 668"]]},{"id":"NCBITaxon:320388","l":"Burkholderia mallei SAVP1","na":1,"nb":1,"a":[["Pfam%3APF27460","ATP phosphoribosyltransferase subunit HisZ C-terminal domain"]],"b":[["NCBITaxon%3A320388","Burkholderia mallei SAVP1"]]},{"id":"NCBITaxon:32043","l":"","na":1,"nb":1,"a":[["Pfam%3APF21331","Isoamylase, C-terminal"]],"b":[["NCBITaxon%3A32043","Pseudomonas sp. 'amyloderamosa'"]]},{"id":"NCBITaxon:320787","l":"Cyclobacterium amurskyense","na":1,"nb":1,"a":[["TED%3AAF-A0A0H4PRD2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0H4PRD2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A320787","Cyclobacterium amurskyense"]]},{"id":"NCBITaxon:321146","l":"Pseudocercospora eumusae","na":1,"nb":1,"a":[["TED%3AAF-A0A139HNA6-F1-model_v4_TED02","TED novel fold AF-A0A139HNA6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A321146","Pseudocercospora eumusae"]]},{"id":"NCBITaxon:321267","l":"Shimia marina","na":1,"nb":1,"a":[["TED%3AAF-A0A0P1EQT4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0P1EQT4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A321267","Shimia marina"]]},{"id":"NCBITaxon:321332","l":"","na":1,"nb":1,"a":[["TED%3AAF-Q2JL60-F1-model_v4_TED01","TED highly-symmetric fold AF-Q2JL60-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A321332","Synechococcus sp. JA-2-3B'a(2-13)"]]},{"id":"NCBITaxon:321339","l":"Citreimonas salinaria","na":1,"nb":1,"a":[["TED%3AAF-A0A1H3NJK8-F1-model_v4_TED01","TED novel fold AF-A0A1H3NJK8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A321339","Citreimonas salinaria"]]},{"id":"NCBITaxon:321846","l":"Pseudomonas simiae","na":1,"nb":1,"a":[["TED%3AAF-A0A1N7UJF9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1N7UJF9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A321846","Pseudomonas simiae"]]},{"id":"NCBITaxon:321983","l":"Pseudoduganella albidiflava","na":1,"nb":1,"a":[["TED%3AAF-A0A411X2J1-F1-model_v4_TED01","TED novel fold AF-A0A411X2J1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A321983","Pseudoduganella albidiflava"]]},{"id":"NCBITaxon:321985","l":"Pseudoduganella lutea","na":1,"nb":1,"a":[["TED%3AAF-A0A4V0Z4E3-F1-model_v4_TED01","TED novel fold AF-A0A4V0Z4E3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A321985","Pseudoduganella lutea"]]},{"id":"NCBITaxon:324057","l":"Paenibacillus sp. JDR-2","na":1,"nb":1,"a":[["Pfam%3APF06452","Carbohydrate family 9 binding domain-like"]],"b":[["NCBITaxon%3A324057","Paenibacillus sp. JDR-2"]]},{"id":"NCBITaxon:324768","l":"Metabacillus idriensis","na":1,"nb":1,"a":[["TED%3AAF-A0A6I2MBD5-F1-model_v4_TED02","TED novel fold AF-A0A6I2MBD5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A324768","Metabacillus idriensis"]]},{"id":"NCBITaxon:324833","l":"Streptomyces lasaliensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4U5W597-F1-model_v4_TED01","TED novel fold AF-A0A4U5W597-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A324833","Streptomyces lasalocidi"]]},{"id":"NCBITaxon:32595","l":"Babesia divergens","na":1,"nb":1,"a":[["Pfam%3APF11641","Glycosylphosphatidylinositol-anchored merozoite surface protein"]],"b":[["NCBITaxon%3A32595","Babesia divergens"]]},{"id":"NCBITaxon:326454","l":"Burkholderia sp. M701","na":1,"nb":1,"a":[["TED%3AAF-V5YP78-F1-model_v4_TED02","TED highly-symmetric fold AF-V5YP78-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A326454","Burkholderia sp. M701"]]},{"id":"NCBITaxon:329885","l":"Friedmanniomyces endolithicus","na":1,"nb":1,"a":[["TED%3AAF-A0A4U0UK33-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U0UK33-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A329885","Friedmanniomyces endolithicus"]]},{"id":"NCBITaxon:33053","l":"Neisseria perflava","na":1,"nb":1,"a":[["TED%3AAF-A0A2I1Y2M3-F1-model_v4_TED02","TED novel fold AF-A0A2I1Y2M3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A33053","Neisseria perflava"]]},{"id":"NCBITaxon:331271","l":"","na":1,"nb":1,"a":[["Pfam%3APF02685","Glucokinase"]],"b":[["NCBITaxon%3A331271","Burkholderia orbicola AU 1054"]]},{"id":"NCBITaxon:331272","l":"Burkholderia cenocepacia HI2424","na":1,"nb":1,"a":[["Pfam%3APF02673","Bacitracin resistance protein BacA"]],"b":[["NCBITaxon%3A331272","Burkholderia cenocepacia HI2424"]]},{"id":"NCBITaxon:331657","l":"Cryomyces minteri","na":1,"nb":1,"a":[["TED%3AAF-A0A4U0X6C2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U0X6C2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A331657","Cryomyces minteri"]]},{"id":"NCBITaxon:331677","l":"","na":1,"nb":1,"a":[["Pfam%3APF15461","Beta-carotene 15,15'-dioxygenase"]],"b":[["NCBITaxon%3A331677","uncultured marine bacterium 66A03"]]},{"id":"NCBITaxon:33203","l":"Purpureocillium lilacinum","na":1,"nb":1,"a":[["TED%3AAF-A0A2U3ENJ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U3ENJ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A33203","Purpureocillium lilacinum"]]},{"id":"NCBITaxon:332175","l":"Desulfosalsimonas propionicica","na":1,"nb":1,"a":[["TED%3AAF-A0A7W0HJC5-F1-model_v4_TED03","TED novel fold AF-A0A7W0HJC5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A332175","Desulfosalsimonas propionicica"]]},{"id":"NCBITaxon:332524","l":"Actinomyces ruminicola","na":1,"nb":1,"a":[["TED%3AAF-A0A1G9TMB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G9TMB9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A332524","Actinomyces ruminicola"]]},{"id":"NCBITaxon:334747","l":"Olavius algarvensis Delta 1 endosymbiont","na":1,"nb":1,"a":[["TED%3AAF-A0A6J4YGJ7-F1-model_v4_TED02","TED novel fold AF-A0A6J4YGJ7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A334747","Olavius algarvensis Delta 1 endosymbiont"]]},{"id":"NCBITaxon:335431","l":"Tepidimonas thermarum","na":1,"nb":1,"a":[["TED%3AAF-A0A554X0R3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A554X0R3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A335431","Tepidimonas thermarum"]]},{"id":"NCBITaxon:335541","l":"Syntrophomonas wolfei subsp. wolfei (strain DSM 2245B / Goettingen)","na":1,"nb":1,"a":[["TED%3AAF-Q0AVF9-F1-model_v4_TED01","TED novel fold AF-Q0AVF9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A335541","Syntrophomonas wolfei subsp. wolfei str. Goettingen G311"]]},{"id":"NCBITaxon:335975","l":"Sulfitobacter litoralis","na":1,"nb":1,"a":[["TED%3AAF-A0A7V1BHU1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V1BHU1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A335975","Sulfitobacter litoralis"]]},{"id":"NCBITaxon:339670","l":"Burkholderia ambifaria AMMD","na":1,"nb":1,"a":[["Pfam%3APF11004","3-deoxy-D-manno-oct-2-ulosonic acid (Kdo) hydroxylase"]],"b":[["NCBITaxon%3A339670","Burkholderia ambifaria AMMD"]]},{"id":"NCBITaxon:33977","l":"Caryophanon latum","na":1,"nb":1,"a":[["TED%3AAF-A0A1C0YYY7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1C0YYY7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A33977","Caryophanon latum"]]},{"id":"NCBITaxon:34002","l":"Paracoccus alcaliphilus","na":1,"nb":1,"a":[["TED%3AAF-A0A1H8HHY3-F1-model_v4_TED02","TED novel fold AF-A0A1H8HHY3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A34002","Paracoccus alcaliphilus"]]},{"id":"NCBITaxon:34007","l":"Paracoccus versutus","na":1,"nb":1,"a":[["Pfam%3APF06433","Methylamine dehydrogenase heavy chain (MADH)"]],"b":[["NCBITaxon%3A34007","Paracoccus versutus"]]},{"id":"NCBITaxon:34028","l":"","na":1,"nb":1,"a":[["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"]],"b":[["NCBITaxon%3A34028","Comamonas sp."]]},{"id":"NCBITaxon:340345","l":"Actinoalloteichus hymeniacidonis","na":1,"nb":1,"a":[["TED%3AAF-A0A7W9UEM7-F1-model_v4_TED01","TED novel fold AF-A0A7W9UEM7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A340345","Actinoalloteichus hymeniacidonis"]]},{"id":"NCBITaxon:34095","l":"Borreliella japonica","na":1,"nb":1,"a":[["Pfam%3APF17044","Borrelial persistence in ticks protein A"]],"b":[["NCBITaxon%3A34095","Borreliella japonica"]]},{"id":"NCBITaxon:34097","l":"Brevinema andersonii","na":1,"nb":1,"a":[["TED%3AAF-A0A1I1E5H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I1E5H4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A34097","Brevinema andersonii"]]},{"id":"NCBITaxon:341454","l":"Ascodesmis nigricans","na":1,"nb":1,"a":[["TED%3AAF-A0A4S2MVE6-F1-model_v4_TED02","TED novel fold AF-A0A4S2MVE6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A341454","Ascodesmis nigricans"]]},{"id":"NCBITaxon:342002","l":"Mycolicibacter arupensis","na":1,"nb":1,"a":[["TED%3AAF-A0A5C7Y8M2-F1-model_v4_TED01","TED novel fold AF-A0A5C7Y8M2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A342002","Mycolicibacter arupensis"]]},{"id":"NCBITaxon:342109","l":"","na":1,"nb":1,"a":[["Pfam%3APF04977","Septum formation initiator"]],"b":[["NCBITaxon%3A342109","Xanthomonas oryzae pv. oryzae MAFF 311018"]]},{"id":"NCBITaxon:342668","l":"Pseudogymnoascus verrucosus","na":1,"nb":1,"a":[["TED%3AAF-A0A1B8GR16-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1B8GR16-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A342668","Pseudogymnoascus verrucosus"]]},{"id":"NCBITaxon:342949","l":"","na":1,"nb":1,"a":[["TED%3AAF-F4HI69-F1-model_v4_TED02","TED highly-symmetric fold AF-F4HI69-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A342949","Pyrococcus sp. NA2"]]},{"id":"NCBITaxon:342955","l":"Lacinutrix mariniflava","na":1,"nb":1,"a":[["Pfam%3APF13189","Cytidylate kinase-like family"]],"b":[["NCBITaxon%3A342955","Lacinutrix mariniflava"]]},{"id":"NCBITaxon:343509","l":"Sodalis glossinidius str. 'morsitans'","na":1,"nb":1,"a":[["Pfam%3APF04345","Chorismate lyase"]],"b":[["NCBITaxon%3A343509","Sodalis glossinidius str. 'morsitans'"]]},{"id":"NCBITaxon:345309","l":"Luteibacter yeojuensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0F3L280-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F3L280-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A345309","Luteibacter yeojuensis"]]},{"id":"NCBITaxon:345341","l":"Kutzneria sp. 744","na":1,"nb":1,"a":[["TED%3AAF-W7SU68-F1-model_v4_TED01","TED novel fold AF-W7SU68-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A345341","Kutzneria sp. 744"]]},{"id":"NCBITaxon:345631","l":"Geobacter argillaceus","na":1,"nb":1,"a":[["TED%3AAF-A0A562VM24-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A562VM24-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A345631","Geobacter argillaceus"]]},{"id":"NCBITaxon:346185","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q1BKA9-F1-model_v4_TED02","TED novel fold AF-A0A0Q1BKA9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A346185","Flagellimonas eckloniae"]]},{"id":"NCBITaxon:347209","l":"Arthrobacter sp. J3.40","na":1,"nb":1,"a":[["TED%3AAF-I3W1F3-F1-model_v4_TED01","TED novel fold AF-I3W1F3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A347209","Arthrobacter sp. J3.40"]]},{"id":"NCBITaxon:348151","l":"Furfurilactobacillus siliginis","na":1,"nb":1,"a":[["TED%3AAF-A0A0R2L6V8-F1-model_v4_TED02","TED novel fold AF-A0A0R2L6V8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A348151","Furfurilactobacillus siliginis"]]},{"id":"NCBITaxon:348826","l":"Natronorubrum aibiense","na":1,"nb":1,"a":[["TED%3AAF-A0A5P9P2A0-F1-model_v4_TED01","TED novel fold AF-A0A5P9P2A0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A348826","Natronorubrum aibiense"]]},{"id":"NCBITaxon:349746","l":"","na":1,"nb":1,"a":[["Pfam%3APF03974","Ecotin"]],"b":[["NCBITaxon%3A349746","Yersinia pestis Angola"]]},{"id":"NCBITaxon:351659","l":"Xenorhabdus koppenhoeferi","na":1,"nb":1,"a":[["TED%3AAF-A0A1I7KAB7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1I7KAB7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A351659","Xenorhabdus koppenhoeferi"]]},{"id":"NCBITaxon:354243","l":"Mycolicibacter kumamotonensis","na":1,"nb":1,"a":[["TED%3AAF-A0A7K3LH87-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K3LH87-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A354243","Mycolicibacter kumamotonensis"]]},{"id":"NCBITaxon:355243","l":"Amphritea atlantica","na":1,"nb":1,"a":[["TED%3AAF-A0A1H9MBM2-F1-model_v4_TED01","TED novel fold AF-A0A1H9MBM2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A355243","Amphritea atlantica"]]},{"id":"NCBITaxon:35623","l":"Acholeplasma oculi","na":1,"nb":1,"a":[["TED%3AAF-A0A061AIF7-F1-model_v4_TED03","TED novel fold AF-A0A061AIF7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A35623","Acholeplasma oculi"]]},{"id":"NCBITaxon:356305","l":"Chryseobacterium wanjuense","na":1,"nb":1,"a":[["TED%3AAF-A0A1I0RKT6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I0RKT6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A356305","Chryseobacterium wanjuense"]]},{"id":"NCBITaxon:357244","l":"Orientia tsutsugamushi str. Boryong","na":1,"nb":1,"a":[["Pfam%3APF01745","Isopentenyl transferase"]],"b":[["NCBITaxon%3A357244","Orientia tsutsugamushi str. Boryong"]]},{"id":"NCBITaxon:357348","l":"","na":1,"nb":1,"a":[["Pfam%3APF01958","Aspartate dehydrogenase, C-terminal"]],"b":[["NCBITaxon%3A357348","Burkholderia pseudomallei 1106a"]]},{"id":"NCBITaxon:357385","l":"Paenibacillus sp. F4","na":1,"nb":1,"a":[["TED%3AAF-A0A2K1ENT1-F1-model_v4_TED01","TED novel fold AF-A0A2K1ENT1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A357385","Paenibacillus sp. F4"]]},{"id":"NCBITaxon:35752","l":"Actinoplanes philippinensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1I2HI82-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I2HI82-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A35752","Actinoplanes philippinensis"]]},{"id":"NCBITaxon:35759","l":"Streptomyces sp. (strain R2075)","na":1,"nb":1,"a":[["Pfam%3APF19398","Lantibiotic duramycin B-like"]],"b":[["NCBITaxon%3A35759","Streptomyces sp. (strain R2075)"]]},{"id":"NCBITaxon:35764","l":"Streptosporangium nondiastaticum","na":1,"nb":1,"a":[["TED%3AAF-A0A2P7PWM4-F1-model_v4_TED01","TED novel fold AF-A0A2P7PWM4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A35764","Streptosporangium nondiastaticum"]]},{"id":"NCBITaxon:35816","l":"Pelobacter acidigallici","na":1,"nb":1,"a":[["Pfam%3APF21423","Pyrogallol hydroxytransferase large subunit-like, domain 1"]],"b":[["NCBITaxon%3A35816","Pelobacter acidigallici"]]},{"id":"NCBITaxon:360094","l":"","na":1,"nb":1,"a":[["Pfam%3APF03377","TAL effector repeat"]],"b":[["NCBITaxon%3A360094","Xanthomonas oryzae pv. oryzae PXO99A"]]},{"id":"NCBITaxon:360106","l":"","na":1,"nb":1,"a":[["Pfam%3APF10788","Protein of unknown function (DUF2603)"]],"b":[["NCBITaxon%3A360106","Campylobacter fetus subsp. fetus 82-40"]]},{"id":"NCBITaxon:36022","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1V2L1Y2-F1-model_v4_TED02","TED novel fold AF-A0A1V2L1Y2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A36022","Petasospora fabianii"]]},{"id":"NCBITaxon:360412","l":"Longilinea arvoryzae","na":1,"nb":1,"a":[["TED%3AAF-A0A0S7BD54-F1-model_v4_TED02","TED novel fold AF-A0A0S7BD54-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A360412","Longilinea arvoryzae"]]},{"id":"NCBITaxon:36050","l":"Fusarium poae","na":1,"nb":1,"a":[["TED%3AAF-A0A1B8B0N0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1B8B0N0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A36050","Fusarium poae"]]},{"id":"NCBITaxon:36056","l":"Boletus edulis","na":1,"nb":1,"a":[["Pfam%3APF07367","Fungal fruit body lectin"]],"b":[["NCBITaxon%3A36056","Boletus edulis"]]},{"id":"NCBITaxon:360911","l":"Exiguobacterium sp. AT1b","na":1,"nb":1,"a":[["TED%3AAF-C4L6T8-F1-model_v4_TED04","TED highly-symmetric fold AF-C4L6T8-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A360911","Exiguobacterium sp. AT1b"]]},{"id":"NCBITaxon:360921","l":"Pseudomonas savastanoi pv. nerii","na":1,"nb":1,"a":[["TED%3AAF-A0A0N8SCT2-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A0N8SCT2-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A360921","Pseudomonas savastanoi pv. nerii"]]},{"id":"NCBITaxon:362257","l":"Streptomyces vietnamensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0B5IE19-F1-model_v4_TED01","TED novel fold AF-A0A0B5IE19-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A362257","Streptomyces vietnamensis"]]},{"id":"NCBITaxon:362649","l":"Microbacterium thalassium","na":1,"nb":1,"a":[["TED%3AAF-A0A7X0KUL1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X0KUL1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A362649","Microbacterium thalassium"]]},{"id":"NCBITaxon:362837","l":"Spiroplasma cantharicola","na":1,"nb":1,"a":[["TED%3AAF-A0A0M5KEJ6-F1-model_v4_TED03","TED novel fold AF-A0A0M5KEJ6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A362837","Spiroplasma cantharicola"]]},{"id":"NCBITaxon:363253","l":"","na":1,"nb":1,"a":[["TED%3AAF-Q1MSC4-F1-model_v4_TED02","TED highly-symmetric fold AF-Q1MSC4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A363253","Lawsonia intracellularis PHE/MN1-00"]]},{"id":"NCBITaxon:363837","l":"Chitinophaga ginsengisoli","na":1,"nb":1,"a":[["TED%3AAF-A0A2P8FDY3-F1-model_v4_TED01","TED novel fold AF-A0A2P8FDY3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A363837","Chitinophaga ginsengisoli"]]},{"id":"NCBITaxon:365340","l":"Rhodovulum imhoffii","na":1,"nb":1,"a":[["TED%3AAF-A0A2T5BVE1-F1-model_v4_TED01","TED novel fold AF-A0A2T5BVE1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A365340","Rhodovulum imhoffii"]]},{"id":"NCBITaxon:365591","l":"Shewanella morhuae","na":1,"nb":1,"a":[["TED%3AAF-A0A380A628-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A380A628-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A365591","Shewanella morhuae"]]},{"id":"NCBITaxon:366394","l":"","na":1,"nb":1,"a":[["Pfam%3APF05128","Domain of unknown function (DUF697)"]],"b":[["NCBITaxon%3A366394","Sinorhizobium medicae WSM419"]]},{"id":"NCBITaxon:36824","l":"","na":1,"nb":1,"a":[["Pfam%3APF13386","Cytochrome C biogenesis protein transmembrane region"]],"b":[["NCBITaxon%3A36824","Bacillus sp. TB-90"]]},{"id":"NCBITaxon:368607","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A290WWL9-F1-model_v4_TED02","TED novel fold AF-A0A290WWL9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A368607","Janthinobacterium svalbardense"]]},{"id":"NCBITaxon:369932","l":"Amycolatopsis niigatensis","na":1,"nb":1,"a":[["TED%3AAF-A0A2N3X0E8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3X0E8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2576905","Amycolatopsis echigonensis"]]},{"id":"NCBITaxon:370554","l":"Streptococcus pyogenes MGAS10750","na":1,"nb":1,"a":[["Pfam%3APF04260","Protein of unknown function (DUF436)"]],"b":[["NCBITaxon%3A370554","Streptococcus pyogenes MGAS10750"]]},{"id":"NCBITaxon:370959","l":"Sphingomonas mucosissima","na":1,"nb":1,"a":[["TED%3AAF-A0A245ZPX4-F1-model_v4_TED03","TED novel fold AF-A0A245ZPX4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A370959","Sphingomonas mucosissima"]]},{"id":"NCBITaxon:372484","l":"Sanguibacter antarcticus","na":1,"nb":1,"a":[["TED%3AAF-A0A2A9E4K5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A9E4K5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A372484","Sanguibacter antarcticus"]]},{"id":"NCBITaxon:37360","l":"Plasmodiophora brassicae","na":1,"nb":1,"a":[["TED%3AAF-A0A0G4IW71-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G4IW71-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A37360","Plasmodiophora brassicae"]]},{"id":"NCBITaxon:373672","l":"Chryseobacterium gambrini","na":1,"nb":1,"a":[["TED%3AAF-A0A1N7P9B3-F1-model_v4_TED02","TED novel fold AF-A0A1N7P9B3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A373672","Chryseobacterium gambrini"]]},{"id":"NCBITaxon:375063","l":"Haemophilus influenzae 22.4-21","na":1,"nb":1,"a":[["TED%3AAF-A4NYM7-F1-model_v4_TED02","TED novel fold AF-A4NYM7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A375063","Haemophilus influenzae 22.4-21"]]},{"id":"NCBITaxon:375177","l":"Haemophilus influenzae 3655","na":1,"nb":1,"a":[["Pfam%3APF16747","Surface-adhesin protein E"]],"b":[["NCBITaxon%3A375177","Haemophilus influenzae 3655"]]},{"id":"NCBITaxon:375926","l":"Helicobacter anseris","na":1,"nb":1,"a":[["TED%3AAF-A0A3D8J1W2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3D8J1W2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A375926","Helicobacter anseris"]]},{"id":"NCBITaxon:375927","l":"Helicobacter brantae","na":1,"nb":1,"a":[["TED%3AAF-A0A3D8J4Q3-F1-model_v4_TED02","TED novel fold AF-A0A3D8J4Q3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A375927","Helicobacter brantae"]]},{"id":"NCBITaxon:37628","l":"Mollicutes bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7X6SHQ2-F1-model_v4_TED03","TED novel fold AF-A0A7X6SHQ2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A37628","Mollicutes bacterium"]]},{"id":"NCBITaxon:37727","l":"Talaromyces marneffei","na":1,"nb":1,"a":[["Pfam%3APF12296","Hydrophobic surface binding protein A"]],"b":[["NCBITaxon%3A37727","Talaromyces marneffei"]]},{"id":"NCBITaxon:377621","l":"","na":1,"nb":1,"a":[["Pfam%3APF08533","Beta-galactosidase C-terminal domain"]],"b":[["NCBITaxon%3A377621","Planococcus sp. L4"]]},{"id":"NCBITaxon:378543","l":"Tumebacillus permanentifrigoris","na":1,"nb":1,"a":[["TED%3AAF-A0A316DIT3-F1-model_v4_TED01","TED novel fold AF-A0A316DIT3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A378543","Tumebacillus permanentifrigoris"]]},{"id":"NCBITaxon:37929","l":"Glutamicibacter nicotianae","na":1,"nb":1,"a":[["Pfam%3APF16701","Adenylate cyclase regulatory domain"]],"b":[["NCBITaxon%3A37929","Glutamicibacter nicotianae"]]},{"id":"NCBITaxon:380244","l":"Glycomyces sambucus","na":1,"nb":1,"a":[["TED%3AAF-A0A1G9J2V2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G9J2V2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A380244","Glycomyces sambucus"]]},{"id":"NCBITaxon:380704","l":"Aspergillus niger ATCC 1015","na":1,"nb":1,"a":[["Pfam%3APF28387","BfoA N-terminal domain"]],"b":[["NCBITaxon%3A380704","Aspergillus niger ATCC 1015"]]},{"id":"NCBITaxon:381308","l":"Thiohalophilus thiocyanatoxydans","na":1,"nb":1,"a":[["TED%3AAF-A0A4R8ITD7-F1-model_v4_TED01","TED novel fold AF-A0A4R8ITD7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A381308","Thiohalophilus thiocyanatoxydans"]]},{"id":"NCBITaxon:381754","l":"Pseudomonas paraeruginosa PA7","na":1,"nb":1,"a":[["Pfam%3APF05985","Ethanolamine ammonia-lyase light chain (EutC)"]],"b":[["NCBITaxon%3A381754","Pseudomonas paraeruginosa PA7"]]},{"id":"NCBITaxon:381802","l":"Brachyspira suanatina","na":1,"nb":1,"a":[["TED%3AAF-A0A0G4K4I9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0G4K4I9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A381802","Brachyspira suanatina"]]},{"id":"NCBITaxon:382514","l":"Telmatospirillum siberiense","na":1,"nb":1,"a":[["TED%3AAF-A0A2N3PPB2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3PPB2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A382514","Telmatospirillum siberiense"]]},{"id":"NCBITaxon:383750","l":"Marinomonas arctica","na":1,"nb":1,"a":[["TED%3AAF-A0A7H1J8T9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7H1J8T9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A383750","Marinomonas arctica"]]},{"id":"NCBITaxon:383855","l":"","na":1,"nb":1,"a":[["TED%3AAF-M3AXZ2-F1-model_v4_TED01","TED novel fold AF-M3AXZ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A383855","Pseudocercospora fijiensis CIRAD86"]]},{"id":"NCBITaxon:383911","l":"Pseudoalteromonas sp. BSi20311","na":1,"nb":1,"a":[["TED%3AAF-G7EV99-F1-model_v4_TED02","TED highly-symmetric fold AF-G7EV99-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A383911","Pseudoalteromonas sp. BSi20311"]]},{"id":"NCBITaxon:38457","l":"Monilinia fructigena","na":1,"nb":1,"a":[["TED%3AAF-A0A395IK50-F1-model_v4_TED01","TED novel fold AF-A0A395IK50-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A38457","Monilinia fructigena"]]},{"id":"NCBITaxon:385957","l":"","na":1,"nb":1,"a":[["Pfam%3APF21105","DyP dimeric alpha+beta barrel domain"]],"b":[["NCBITaxon%3A385957","Amycolatopsis sp. ATCC 39116"]]},{"id":"NCBITaxon:387957","l":"Methanobrevibacter sp. 87.7","na":1,"nb":1,"a":[["TED%3AAF-A0A219AM20-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A219AM20-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A387957","Methanobrevibacter sp. 87.7"]]},{"id":"NCBITaxon:388278","l":"Photobacterium lutimaris","na":1,"nb":1,"a":[["TED%3AAF-A0A2T3ITP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T3ITP8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A388278","Photobacterium lutimaris"]]},{"id":"NCBITaxon:388280","l":"Cyclobacterium lianum","na":1,"nb":1,"a":[["TED%3AAF-A0A1M7NTJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M7NTJ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A388280","Cyclobacterium lianum"]]},{"id":"NCBITaxon:388396","l":"Aliivibrio fischeri MJ11","na":1,"nb":1,"a":[["Pfam%3APF21868","GlcNAc-binding protein A, third domain"]],"b":[["NCBITaxon%3A388396","Aliivibrio fischeri MJ11"]]},{"id":"NCBITaxon:389348","l":"Candidatus Protochlamydia naegleriophila","na":1,"nb":1,"a":[["TED%3AAF-A0A0U5J6J4-F1-model_v4_TED01","TED novel fold AF-A0A0U5J6J4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A389348","Candidatus Protochlamydia naegleriophila"]]},{"id":"NCBITaxon:38945","l":"Flammulina velutipes","na":1,"nb":1,"a":[["Pfam%3APF09259","Fungal immunomodulatory protein Fve"]],"b":[["NCBITaxon%3A38945","Flammulina velutipes"]]},{"id":"NCBITaxon:390640","l":"Salinimicrobium catena","na":1,"nb":1,"a":[["TED%3AAF-A0A1H5N3E6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H5N3E6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A390640","Salinimicrobium catena"]]},{"id":"NCBITaxon:390989","l":"Actinocatenispora sera","na":1,"nb":1,"a":[["TED%3AAF-A0A810L9K2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A810L9K2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A390989","Actinocatenispora sera"]]},{"id":"NCBITaxon:391","l":"Rhizobium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A353G134-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A353G134-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A391","Rhizobium sp."]]},{"id":"NCBITaxon:391037","l":"Salinispora arenicola CNS-205","na":1,"nb":1,"a":[["Pfam%3APF12072","RNase Y N-terminal region"]],"b":[["NCBITaxon%3A391037","Salinispora arenicola CNS-205"]]},{"id":"NCBITaxon:391295","l":"","na":1,"nb":1,"a":[["Pfam%3APF06160","Septation ring formation regulator, EzrA"]],"b":[["NCBITaxon%3A391295","Streptococcus suis 05ZYH33"]]},{"id":"NCBITaxon:391296","l":"","na":1,"nb":1,"a":[["Pfam%3APF06949","Protein of unknown function (DUF1292)"]],"b":[["NCBITaxon%3A391296","Streptococcus suis 98HAH33"]]},{"id":"NCBITaxon:391598","l":"Flavobacteria bacterium BAL38","na":1,"nb":1,"a":[["TED%3AAF-A3J071-F1-model_v4_TED02","TED novel fold AF-A3J071-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A391598","Flavobacteria bacterium BAL38"]]},{"id":"NCBITaxon:391612","l":"Crocosphaera chwakensis CCY0110","na":1,"nb":1,"a":[["TED%3AAF-A3ILV2-F1-model_v4_TED01","TED highly-symmetric fold AF-A3ILV2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A391612","Crocosphaera chwakensis CCY0110"]]},{"id":"NCBITaxon:391905","l":"Methylocystis heyeri","na":1,"nb":1,"a":[["TED%3AAF-A0A6B8KKQ2-F1-model_v4_TED02","TED novel fold AF-A0A6B8KKQ2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A391905","Methylocystis heyeri"]]},{"id":"NCBITaxon:392421","l":"Natrinema hispanicum","na":1,"nb":1,"a":[["TED%3AAF-A0A482YFG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A482YFG8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A392421","Natrinema hispanicum"]]},{"id":"NCBITaxon:392547","l":"Candidatus Brocadia sapporoensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6M2Y0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V6M2Y0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A392547","Candidatus Brocadia sapporoensis"]]},{"id":"NCBITaxon:393763","l":"Anaerobacillus alkalilacustris","na":1,"nb":1,"a":[["TED%3AAF-A0A1S2LYP0-F1-model_v4_TED02","TED novel fold AF-A0A1S2LYP0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A393763","Anaerobacillus alkalilacustris"]]},{"id":"NCBITaxon:39495","l":"Eubacterium uniforme","na":1,"nb":1,"a":[["TED%3AAF-A0A1T4W9S3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1T4W9S3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A39495","Eubacterium uniforme"]]},{"id":"NCBITaxon:395933","l":"Chryseobacterium lathyri","na":1,"nb":1,"a":[["TED%3AAF-A0A511Y8C1-F1-model_v4_TED04","TED novel fold AF-A0A511Y8C1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A395933","Chryseobacterium lathyri"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["Pfam%3APF13282","Domain of unknown function (DUF4070)"]],"b":[["NCBITaxon%3A395960","Rhodopseudomonas palustris TIE-1"]]},{"id":"NCBITaxon:395961","l":"Cyanothece sp. PCC 7425","na":1,"nb":1,"a":[["TED%3AAF-B8HKH7-F1-model_v4_TED01","TED highly-symmetric fold AF-B8HKH7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A395961","Cyanothece sp. PCC 7425"]]},{"id":"NCBITaxon:396013","l":"Pseudooceanicola marinus","na":1,"nb":1,"a":[["TED%3AAF-A0A1X6YM17-F1-model_v4_TED03","TED novel fold AF-A0A1X6YM17-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A396013","Pseudooceanicola marinus"]]},{"id":"NCBITaxon:396513","l":"","na":1,"nb":1,"a":[["Pfam%3APF03123","CAT RNA binding domain"]],"b":[["NCBITaxon%3A396513","Staphylococcus carnosus subsp. carnosus TM300"]]},{"id":"NCBITaxon:39769","l":"Methylococcus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A3N9V7U0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N9V7U0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39769","Methylococcus sp."]]},{"id":"NCBITaxon:398673","l":"Trichoderma gamsii","na":1,"nb":1,"a":[["TED%3AAF-A0A2K0TA12-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2K0TA12-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A398673","Trichoderma gamsii"]]},{"id":"NCBITaxon:399497","l":"Tessaracoccus flavescens","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q2CX18-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q2CX18-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A399497","Tessaracoccus flavescens"]]},{"id":"NCBITaxon:40001","l":"Cellulomonas sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y0H2X6-F1-model_v4_TED01","TED novel fold AF-A0A7Y0H2X6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A40001","Cellulomonas sp."]]},{"id":"NCBITaxon:400673","l":"","na":1,"nb":1,"a":[["Pfam%3APF03445","Putative nucleotidyltransferase DUF294"]],"b":[["NCBITaxon%3A400673","Legionella pneumophila str. Corby"]]},{"id":"NCBITaxon:400777","l":"Paenibacillus ginsengarvi","na":1,"nb":1,"a":[["TED%3AAF-A0A3B0CDW4-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A3B0CDW4-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A400777","Paenibacillus ginsengarvi"]]},{"id":"NCBITaxon:401471","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A3S9HIB2-F1-model_v4_TED01","TED novel fold AF-A0A3S9HIB2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A401471","Neoundibacterium parvum"]]},{"id":"NCBITaxon:402882","l":"","na":1,"nb":1,"a":[["Pfam%3APF09829","Uncharacterized protein conserved in bacteria (DUF2057)"]],"b":[["NCBITaxon%3A402882","Shewanella baltica OS185"]]},{"id":"NCBITaxon:403776","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A077XLJ2-F1-model_v4_TED04","TED novel fold AF-A0A077XLJ2-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A403776","Sphingobacterium sp. PM2-P1-29"]]},{"id":"NCBITaxon:404881","l":"Albidovulum denitrificans","na":1,"nb":1,"a":[["TED%3AAF-A0A2S8SDZ8-F1-model_v4_TED03","TED novel fold AF-A0A2S8SDZ8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A404881","Albidovulum denitrificans"]]},{"id":"NCBITaxon:405440","l":"Xylella fastidiosa M12","na":1,"nb":1,"a":[["Pfam%3APF04977","Septum formation initiator"]],"b":[["NCBITaxon%3A405440","Xylella fastidiosa M12"]]},{"id":"NCBITaxon:405532","l":"","na":1,"nb":1,"a":[["Pfam%3APF09021","HutP"]],"b":[["NCBITaxon%3A405532","Bacillus cereus B4264"]]},{"id":"NCBITaxon:405535","l":"","na":1,"nb":1,"a":[["Pfam%3APF10087","Uncharacterized protein conserved in bacteria (DUF2325)"]],"b":[["NCBITaxon%3A405535","Bacillus cereus AH820"]]},{"id":"NCBITaxon:405555","l":"Haloactinospora alba","na":1,"nb":1,"a":[["TED%3AAF-A0A543NJX9-F1-model_v4_TED03","TED novel fold AF-A0A543NJX9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A405555","Haloactinospora alba"]]},{"id":"NCBITaxon:41047","l":"Aspergillus thermomutatus","na":1,"nb":1,"a":[["Pfam%3APF28486","AnkG N-terminal domain"]],"b":[["NCBITaxon%3A41047","Aspergillus thermomutatus"]]},{"id":"NCBITaxon:41067","l":"Aspergillus candidus","na":1,"nb":1,"a":[["TED%3AAF-A0A2I2EZ62-F1-model_v4_TED02","TED novel fold AF-A0A2I2EZ62-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A41067","Aspergillus candidus"]]},{"id":"NCBITaxon:411486","l":"Clostridium sp. M62/1","na":1,"nb":1,"a":[["TED%3AAF-D4CA03-F1-model_v4_TED02","TED novel fold AF-D4CA03-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A411486","Clostridium sp. M62/1"]]},{"id":"NCBITaxon:41211","l":"Desulfotomaculum sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A356UJQ3-F1-model_v4_TED01","TED novel fold AF-A0A356UJQ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A41211","Desulfotomaculum sp."]]},{"id":"NCBITaxon:412955","l":"Pseudomonas sp. SCT","na":1,"nb":1,"a":[["Pfam%3APF03150","Di-haem cytochrome c peroxidase"]],"b":[["NCBITaxon%3A412955","Pseudomonas sp. SCT"]]},{"id":"NCBITaxon:413404","l":"","na":1,"nb":1,"a":[["Pfam%3APF04359","Protein of unknown function (DUF493)"]],"b":[["NCBITaxon%3A413404","Candidatus Ruthia magnifica str. Cm (Calyptogena magnifica)"]]},{"id":"NCBITaxon:413434","l":"Sediminibacterium ginsengisoli","na":1,"nb":1,"a":[["TED%3AAF-A0A1T4NZ26-F1-model_v4_TED01","TED novel fold AF-A0A1T4NZ26-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A413434","Sediminibacterium ginsengisoli"]]},{"id":"NCBITaxon:413815","l":"Halorubrum cibi","na":1,"nb":1,"a":[["TED%3AAF-A0A521C3X2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A521C3X2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A413815","Halorubrum cibi"]]},{"id":"NCBITaxon:414684","l":"Rhodospirillum centenum SW","na":1,"nb":1,"a":[["Pfam%3APF27469","ATP synthase epsilon chain C-terminal domain"]],"b":[["NCBITaxon%3A414684","Rhodospirillum centenum SW"]]},{"id":"NCBITaxon:415851","l":"Chryseobacterium flavum","na":1,"nb":1,"a":[["TED%3AAF-A0A3D9CSI6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D9CSI6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A415851","Chryseobacterium flavum"]]},{"id":"NCBITaxon:415956","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A5S5DER4-F1-model_v4_TED03","TED novel fold AF-A0A5S5DER4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A415956","Sphingobacterium allocomposti"]]},{"id":"NCBITaxon:41643","l":"Corynebacterium melassecola","na":1,"nb":1,"a":[["Pfam%3APF08310","LGFP repeat"]],"b":[["NCBITaxon%3A41643","Corynebacterium melassecola"]]},{"id":"NCBITaxon:416450","l":"Penicillium antarcticum","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6PWJ0-F1-model_v4_TED01","TED novel fold AF-A0A1V6PWJ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A416450","Penicillium antarcticum"]]},{"id":"NCBITaxon:41688","l":"Lomentospora prolificans","na":1,"nb":1,"a":[["TED%3AAF-A0A2N3N8C0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3N8C0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A41688","Lomentospora prolificans"]]},{"id":"NCBITaxon:418","l":"Methylomonas sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2P5N113-F1-model_v4_TED01","TED novel fold AF-A0A2P5N113-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A418","Methylomonas sp."]]},{"id":"NCBITaxon:418784","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2P7YR10-F1-model_v4_TED02","TED novel fold AF-A0A2P7YR10-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A418784","Candidozyma pseudohaemuli"]]},{"id":"NCBITaxon:41956","l":"Amanita muscaria","na":1,"nb":1,"a":[["Pfam%3APF08883","Dopa 4,5-dioxygenase family"]],"b":[["NCBITaxon%3A41956","Amanita muscaria"]]},{"id":"NCBITaxon:420324","l":"Microvirga lupini","na":1,"nb":1,"a":[["TED%3AAF-A0A7W4VPM2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W4VPM2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A420324","Microvirga lupini"]]},{"id":"NCBITaxon:420953","l":"Paraburkholderia megapolitana","na":1,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_GrbD","GrbD-type graminine biosynthesis protein family"]],"b":[["NCBITaxon%3A420953","Paraburkholderia megapolitana"]]},{"id":"NCBITaxon:420998","l":"Jannaschia donghaensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0M6YL59-F1-model_v4_TED01","TED novel fold AF-A0A0M6YL59-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A420998","Jannaschia donghaensis"]]},{"id":"NCBITaxon:422288","l":"Beggiatoa sp. SS","na":1,"nb":1,"a":[["TED%3AAF-A7BLJ0-F1-model_v4_TED01","TED novel fold AF-A7BLJ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A422288","Beggiatoa sp. SS"]]},{"id":"NCBITaxon:422289","l":"Beggiatoa sp. PS","na":1,"nb":1,"a":[["TED%3AAF-A7BS81-F1-model_v4_TED01","TED highly-symmetric fold AF-A7BS81-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A422289","Beggiatoa sp. PS"]]},{"id":"NCBITaxon:42249","l":"Tuber magnatum","na":1,"nb":1,"a":[["TED%3AAF-A0A317SJ45-F1-model_v4_TED01","TED novel fold AF-A0A317SJ45-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A42249","Tuber magnatum"]]},{"id":"NCBITaxon:42260","l":"Zygotorulaspora mrakii","na":1,"nb":1,"a":[["TED%3AAF-A0A7H9B774-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H9B774-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A42260","Zygotorulaspora mrakii"]]},{"id":"NCBITaxon:423474","l":"Crocosphaera watsonii WH 8502","na":1,"nb":1,"a":[["TED%3AAF-T2ICX6-F1-model_v4_TED01","TED highly-symmetric fold AF-T2ICX6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A423474","Crocosphaera watsonii WH 8502"]]},{"id":"NCBITaxon:423536","l":"","na":1,"nb":1,"a":[["TED%3AAF-C5L005-F1-model_v4_TED04","TED novel fold AF-C5L005-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A423536","Perkinsus marinus ATCC 50983"]]},{"id":"NCBITaxon:424796","l":"Brevundimonas lenta","na":1,"nb":1,"a":[["TED%3AAF-A0A7W6NPS7-F1-model_v4_TED01","TED novel fold AF-A0A7W6NPS7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A424796","Brevundimonas lenta"]]},{"id":"NCBITaxon:425511","l":"Pedobacter duraquae","na":1,"nb":1,"a":[["TED%3AAF-A0A4R6IHU7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R6IHU7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A425511","Pedobacter duraquae"]]},{"id":"NCBITaxon:426703","l":"Alkalibacterium putridalgicola","na":1,"nb":1,"a":[["TED%3AAF-A0A1H7XG09-F1-model_v4_TED03","TED novel fold AF-A0A1H7XG09-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A426703","Alkalibacterium putridalgicola"]]},{"id":"NCBITaxon:426756","l":"Bhargavaea beijingensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1G7A385-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G7A385-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A426756","Bhargavaea beijingensis"]]},{"id":"NCBITaxon:427317","l":"Saccharolobus islandicus M.14.25","na":1,"nb":1,"a":[["Pfam%3APF05165","GTP cyclohydrolase III"]],"b":[["NCBITaxon%3A427317","Saccharolobus islandicus M.14.25"]]},{"id":"NCBITaxon:42881","l":"Streptomyces chromofuscus","na":1,"nb":1,"a":[["TED%3AAF-A0A7M2T2Z7-F1-model_v4_TED01","TED novel fold AF-A0A7M2T2Z7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A42881","Streptomyces chromofuscus"]]},{"id":"NCBITaxon:429572","l":"Saccharolobus islandicus L.S.2.15","na":1,"nb":1,"a":[["TED%3AAF-C3MM69-F1-model_v4_TED02","TED novel fold AF-C3MM69-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A429572","Saccharolobus islandicus L.S.2.15"]]},{"id":"NCBITaxon:429728","l":"Devosia crocina","na":1,"nb":1,"a":[["TED%3AAF-A0A1I7NJ57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I7NJ57-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A429728","Devosia crocina"]]},{"id":"NCBITaxon:430066","l":"","na":1,"nb":1,"a":[["Pfam%3APF07886","BA14K-like protein"]],"b":[["NCBITaxon%3A430066","Brucella abortus S19"]]},{"id":"NCBITaxon:430453","l":"Marinobacter segnicrescens","na":1,"nb":1,"a":[["TED%3AAF-A0A1I0D7N2-F1-model_v4_TED03","TED novel fold AF-A0A1I0D7N2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A430453","Marinobacter segnicrescens"]]},{"id":"NCBITaxon:431061","l":"Roseateles aquatilis","na":1,"nb":1,"a":[["TED%3AAF-A0A246JM08-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A246JM08-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A431061","Roseateles aquatilis"]]},{"id":"NCBITaxon:43262","l":"","na":1,"nb":1,"a":[["Pfam%3APF01338","Bacillus thuringiensis toxin"]],"b":[["NCBITaxon%3A43262","Bacillus thuringiensis serovar neoleonensis"]]},{"id":"NCBITaxon:433330","l":"Propioniciclava tarda","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q9KJ61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q9KJ61-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A433330","Propioniciclava tarda"]]},{"id":"NCBITaxon:434010","l":"Hydrogenophaga sp. PBL-H3","na":1,"nb":1,"a":[["TED%3AAF-A0A6P1IMA9-F1-model_v4_TED01","TED novel fold AF-A0A6P1IMA9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A434010","Hydrogenophaga sp. PBL-H3"]]},{"id":"NCBITaxon:43759","l":"Streptomyces wedmorensis","na":1,"nb":1,"a":[["Pfam%3APF04167","Protein of unknown function (DUF402)"]],"b":[["NCBITaxon%3A43759","Streptomyces wedmorensis"]]},{"id":"NCBITaxon:439495","l":"Pseudovibrio sp. JE062","na":1,"nb":1,"a":[["TED%3AAF-B6R9T4-F1-model_v4_TED01","TED highly-symmetric fold AF-B6R9T4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A439495","Pseudovibrio sp. JE062"]]},{"id":"NCBITaxon:439851","l":"","na":1,"nb":1,"a":[["Pfam%3APF25881","YBHG alpha-helical hairpin domain"]],"b":[["NCBITaxon%3A439851","Salmonella enterica subsp. enterica serovar Dublin str. CT_02021853"]]},{"id":"NCBITaxon:43989","l":"","na":1,"nb":1,"a":[["Pfam%3APF11844","Domain of unknown function (DUF3364)"]],"b":[["NCBITaxon%3A43989","Crocosphaera subtropica ATCC 51142"]]},{"id":"NCBITaxon:44056","l":"Aureococcus anophagefferens","na":1,"nb":1,"a":[["TED%3AAF-F0YA46-F1-model_v4_TED02","TED highly-symmetric fold AF-F0YA46-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A44056","Aureococcus anophagefferens"]]},{"id":"NCBITaxon:44058","l":"Aureoumbra lagunensis","na":1,"nb":1,"a":[["TED%3AAF-A0A7S3NFQ1-F1-model_v4_TED02","TED novel fold AF-A0A7S3NFQ1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A44058","Aureoumbra lagunensis"]]},{"id":"NCBITaxon:44093","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A642UWE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A642UWE6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A44093","Blastobotrys ciferrii"]]},{"id":"NCBITaxon:44161","l":"","na":1,"nb":1,"a":[["Pfam%3APF01338","Bacillus thuringiensis toxin"]],"b":[["NCBITaxon%3A44161","Bacillus thuringiensis serovar kyushuensis"]]},{"id":"NCBITaxon:441771","l":"","na":1,"nb":1,"a":[["Pfam%3APF05636","HIGH Nucleotidyl Transferase"]],"b":[["NCBITaxon%3A441771","Clostridium botulinum A str. Hall"]]},{"id":"NCBITaxon:442563","l":"","na":1,"nb":1,"a":[["Pfam%3APF27512","LeuD_N"]],"b":[["NCBITaxon%3A442563","Bifidobacterium animalis subsp. lactis AD011"]]},{"id":"NCBITaxon:443143","l":"","na":1,"nb":1,"a":[["TED%3AAF-E8WN43-F1-model_v4_TED01","TED novel fold AF-E8WN43-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A443143","Geobacter sp. M18"]]},{"id":"NCBITaxon:443612","l":"Flavobacterium resistens","na":1,"nb":1,"a":[["TED%3AAF-A0A521EE63-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521EE63-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A443612","Flavobacterium resistens"]]},{"id":"NCBITaxon:444177","l":"","na":1,"nb":1,"a":[["Pfam%3APF06335","Domain of unknown function (DUF1054)"]],"b":[["NCBITaxon%3A444177","Lysinibacillus sphaericus C3-41"]]},{"id":"NCBITaxon:444450","l":"","na":1,"nb":1,"a":[["Pfam%3APF10781","Dextransucrase DSRB"]],"b":[["NCBITaxon%3A444450","Escherichia coli O157:H7 str. EC4115"]]},{"id":"NCBITaxon:445629","l":"Cereibacter johrii","na":1,"nb":1,"a":[["TED%3AAF-A0A330H429-F1-model_v4_TED01","TED novel fold AF-A0A330H429-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A445629","Cereibacter johrii"]]},{"id":"NCBITaxon:445960","l":"Chryseobacterium jejuense","na":1,"nb":1,"a":[["TED%3AAF-A0A2X2WXH5-F1-model_v4_TED01","TED novel fold AF-A0A2X2WXH5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A445960","Chryseobacterium jejuense"]]},{"id":"NCBITaxon:446043","l":"uncultured Lachnospira sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A1C6H212-F1-model_v4_TED01","TED novel fold AF-A0A1C6H212-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A446043","uncultured Lachnospira sp."]]},{"id":"NCBITaxon:447217","l":"Anaeromyxobacter sp. K","na":1,"nb":1,"a":[["TED%3AAF-B4UAH6-F1-model_v4_TED03","TED highly-symmetric fold AF-B4UAH6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A447217","Anaeromyxobacter sp. K"]]},{"id":"NCBITaxon:447422","l":"Salegentibacter salinarum","na":1,"nb":1,"a":[["TED%3AAF-A0A2N0TVJ7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N0TVJ7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A447422","Salegentibacter salinarum"]]},{"id":"NCBITaxon:447425","l":"Halomonas nitroreducens","na":1,"nb":1,"a":[["TED%3AAF-A0A431V088-F1-model_v4_TED01","TED novel fold AF-A0A431V088-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A447425","Halomonas nitroreducens"]]},{"id":"NCBITaxon:447679","l":"Ekhidna lutea","na":1,"nb":1,"a":[["TED%3AAF-A0A239JFH6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A239JFH6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A447679","Ekhidna lutea"]]},{"id":"NCBITaxon:448386","l":"Gracilariopsis chorda","na":1,"nb":1,"a":[["TED%3AAF-A0A2V3IF53-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V3IF53-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A448386","Gracilariopsis chorda"]]},{"id":"NCBITaxon:450362","l":"Paenibacillus contaminans","na":1,"nb":1,"a":[["TED%3AAF-A0A329MCX9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A329MCX9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A450362","Paenibacillus contaminans"]]},{"id":"NCBITaxon:45066","l":"Legionella gratiana","na":1,"nb":1,"a":[["TED%3AAF-A0A378JE27-F1-model_v4_TED01","TED novel fold AF-A0A378JE27-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A45066","Legionella gratiana"]]},{"id":"NCBITaxon:451","l":"Legionella micdadei","na":1,"nb":1,"a":[["TED%3AAF-A0A098GE29-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A098GE29-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A451","Legionella micdadei"]]},{"id":"NCBITaxon:451672","l":"Fusarium oxysporum f. sp. narcissi","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q2UZ81-F1-model_v4_TED01","TED novel fold AF-A0A4Q2UZ81-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A451672","Fusarium oxysporum f. sp. narcissi"]]},{"id":"NCBITaxon:452471","l":"","na":1,"nb":1,"a":[["TED%3AAF-B3ERP3-F1-model_v4_TED02","TED novel fold AF-B3ERP3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A452471","Candidatus Amoebophilus asiaticus 5a2"]]},{"id":"NCBITaxon:453960","l":"Sulfobacillus benefaciens","na":1,"nb":1,"a":[["TED%3AAF-A0A2T2WWZ6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2T2WWZ6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A453960","Sulfobacillus benefaciens"]]},{"id":"NCBITaxon:454006","l":"Epilithonimonas hungarica","na":1,"nb":1,"a":[["TED%3AAF-A0A1G7J6K0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1G7J6K0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A454006","Epilithonimonas hungarica"]]},{"id":"NCBITaxon:454166","l":"","na":1,"nb":1,"a":[["Pfam%3APF18390","Glycogen debranching enzyme C-terminal domain"]],"b":[["NCBITaxon%3A454166","Salmonella enterica subsp. enterica serovar Agona str. SL483"]]},{"id":"NCBITaxon:454169","l":"","na":1,"nb":1,"a":[["Pfam%3APF04077","DsrH like protein"]],"b":[["NCBITaxon%3A454169","Salmonella enterica subsp. enterica serovar Heidelberg str. SL476"]]},{"id":"NCBITaxon:454194","l":"Pyrinomonas methylaliphatogenes","na":1,"nb":1,"a":[["TED%3AAF-A0A0B6X3G1-F1-model_v4_TED02","TED novel fold AF-A0A0B6X3G1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A454194","Pyrinomonas methylaliphatogenes"]]},{"id":"NCBITaxon:45496","l":"Methylophaga sulfidovorans","na":1,"nb":1,"a":[["TED%3AAF-A0A1I3YMM1-F1-model_v4_TED02","TED novel fold AF-A0A1I3YMM1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A45496","Methylophaga sulfidovorans"]]},{"id":"NCBITaxon:45657","l":"Desulfonema ishimotonii","na":1,"nb":1,"a":[["TED%3AAF-A0A401FRY7-F1-model_v4_TED01","TED novel fold AF-A0A401FRY7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A45657","Desulfonema ishimotonii"]]},{"id":"NCBITaxon:457389","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0J9FCL2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0J9FCL2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A457389","Bacteroides sp. 3_1_13"]]},{"id":"NCBITaxon:457404","l":"Fusobacterium ulcerans 12-1B","na":1,"nb":1,"a":[["TED%3AAF-H1PQJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-H1PQJ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A457404","Fusobacterium ulcerans 12-1B"]]},{"id":"NCBITaxon:457421","l":"","na":1,"nb":1,"a":[["TED%3AAF-C5EFI9-F1-model_v4_TED04","TED highly-symmetric fold AF-C5EFI9-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A457421","Clostridiales bacterium 1_7_47FAA"]]},{"id":"NCBITaxon:457944","l":"Nostoc sp. KVJ20","na":1,"nb":1,"a":[["TED%3AAF-A0A1E2WX87-F1-model_v4_TED01","TED novel fold AF-A0A1E2WX87-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A457944","Nostoc sp. KVJ20"]]},{"id":"NCBITaxon:458","l":"Legionella rubrilucens","na":1,"nb":1,"a":[["TED%3AAF-A0A0W0XMT7-F1-model_v4_TED01","TED novel fold AF-A0A0W0XMT7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A458","Legionella rubrilucens"]]},{"id":"NCBITaxon:458253","l":"uncultured Coprococcus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A1C5UAN5-F1-model_v4_TED01","TED novel fold AF-A0A1C5UAN5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A458253","uncultured Coprococcus sp."]]},{"id":"NCBITaxon:458836","l":"Paraburkholderia sediminicola","na":1,"nb":1,"a":[["TED%3AAF-A0A495FRK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A495FRK2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A458836","Paraburkholderia sediminicola"]]},{"id":"NCBITaxon:459349","l":"","na":1,"nb":1,"a":[["Pfam%3APF05853","beta-keto acid cleavage enzyme"]],"b":[["NCBITaxon%3A459349","Candidatus Cloacimonas acidaminivorans str. Evry"]]},{"id":"NCBITaxon:460384","l":"Enterocloster lavalensis","na":1,"nb":1,"a":[["TED%3AAF-A0A2T3FE96-F1-model_v4_TED03","TED novel fold AF-A0A2T3FE96-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A460384","Enterocloster lavalensis"]]},{"id":"NCBITaxon:460523","l":"Ogataea polymorpha","na":1,"nb":1,"a":[["TED%3AAF-A0A1B7SIZ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B7SIZ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A460523","Ogataea polymorpha"]]},{"id":"NCBITaxon:46177","l":"Nonomuraea pusilla","na":1,"nb":1,"a":[["TED%3AAF-A0A1H8E5B9-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1H8E5B9-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A46177","Nonomuraea pusilla"]]},{"id":"NCBITaxon:46224","l":"Heyndrickxia sporothermodurans","na":1,"nb":1,"a":[["TED%3AAF-A0A2T6EYG9-F1-model_v4_TED03","TED novel fold AF-A0A2T6EYG9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A46224","Heyndrickxia sporothermodurans"]]},{"id":"NCBITaxon:462991","l":"Vibrio hangzhouensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1H5YXU5-F1-model_v4_TED03","TED novel fold AF-A0A1H5YXU5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A462991","Vibrio hangzhouensis"]]},{"id":"NCBITaxon:463025","l":"Bordetella bronchialis","na":1,"nb":1,"a":[["TED%3AAF-A0A193FYS1-F1-model_v4_TED02","TED novel fold AF-A0A193FYS1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A463025","Bordetella bronchialis"]]},{"id":"NCBITaxon:463301","l":"Halomonas korlensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1I7FWW8-F1-model_v4_TED01","TED novel fold AF-A0A1I7FWW8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A463301","Halomonas korlensis"]]},{"id":"NCBITaxon:46472","l":"Aspergillus versicolor","na":1,"nb":1,"a":[["Pfam%3APF13810","Domain of unknown function (DUF4185)"]],"b":[["NCBITaxon%3A46472","Aspergillus versicolor"]]},{"id":"NCBITaxon:46540","l":"Thermococcus fumicolans","na":1,"nb":1,"a":[["Pfam%3APF14890","Intein splicing domain"]],"b":[["NCBITaxon%3A46540","Thermococcus fumicolans"]]},{"id":"NCBITaxon:466","l":"Legionella maceachernii","na":1,"nb":1,"a":[["TED%3AAF-A0A0W0WDW3-F1-model_v4_TED01","TED novel fold AF-A0A0W0WDW3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A466","Legionella maceachernii"]]},{"id":"NCBITaxon:466044","l":"Pannonibacter indicus","na":1,"nb":1,"a":[["TED%3AAF-A0A0K6HVN5-F1-model_v4_TED01","TED novel fold AF-A0A0K6HVN5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A466044","Pannonibacter indicus"]]},{"id":"NCBITaxon:469589","l":"","na":1,"nb":1,"a":[["TED%3AAF-D0TG01-F1-model_v4_TED05","TED novel fold AF-D0TG01-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A469589","Bacteroides sp. 2_1_33B"]]},{"id":"NCBITaxon:469590","l":"","na":1,"nb":1,"a":[["TED%3AAF-C3QRB2-F1-model_v4_TED04","TED novel fold AF-C3QRB2-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A469590","Bacteroides sp. 2_2_4"]]},{"id":"NCBITaxon:469610","l":"","na":1,"nb":1,"a":[["TED%3AAF-D9Y337-F1-model_v4_TED01","TED highly-symmetric fold AF-D9Y337-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A469610","Burkholderiales bacterium 1_1_47"]]},{"id":"NCBITaxon:469613","l":"","na":1,"nb":1,"a":[["TED%3AAF-S2LLY4-F1-model_v4_TED01","TED highly-symmetric fold AF-S2LLY4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A469613","Enterobacteriaceae bacterium 9_2_54FAA"]]},{"id":"NCBITaxon:469616","l":"Fusobacterium mortiferum ATCC 9817","na":1,"nb":1,"a":[["TED%3AAF-C3WAL7-F1-model_v4_TED02","TED novel fold AF-C3WAL7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A469616","Fusobacterium mortiferum ATCC 9817"]]},{"id":"NCBITaxon:469618","l":"Fusobacterium varium ATCC 27725","na":1,"nb":1,"a":[["TED%3AAF-C6JLM9-F1-model_v4_TED02","TED highly-symmetric fold AF-C6JLM9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A469618","Fusobacterium varium ATCC 27725"]]},{"id":"NCBITaxon:471514","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0N8PN50-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0N8PN50-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A471514","Paenalicyclobacillus ferrooxydans"]]},{"id":"NCBITaxon:471874","l":"Providencia stuartii ATCC 25827","na":1,"nb":1,"a":[["TED%3AAF-B2PZ49-F1-model_v4_TED02","TED novel fold AF-B2PZ49-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A471874","Providencia stuartii ATCC 25827"]]},{"id":"NCBITaxon:47429","l":"Armillaria mellea","na":1,"nb":1,"a":[["Pfam%3APF14521","Lysine-specific metallo-endopeptidase"]],"b":[["NCBITaxon%3A47429","Armillaria mellea"]]},{"id":"NCBITaxon:47492","l":"Xanthobacter agilis","na":1,"nb":1,"a":[["Pfam%3APF19878","Tannase-like family of unknown function (DUF6351)"]],"b":[["NCBITaxon%3A47492","Xanthobacter agilis"]]},{"id":"NCBITaxon:474949","l":"Granulicella aggregans","na":1,"nb":1,"a":[["TED%3AAF-A0A7W7ZBP1-F1-model_v4_TED02","TED novel fold AF-A0A7W7ZBP1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A474949","Granulicella aggregans"]]},{"id":"NCBITaxon:474950","l":"Granulicella pectinivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A1I6LYB5-F1-model_v4_TED03","TED novel fold AF-A0A1I6LYB5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A474950","Granulicella pectinivorans"]]},{"id":"NCBITaxon:475075","l":"Chryseobacterium phosphatilyticum","na":1,"nb":1,"a":[["TED%3AAF-A0A316XDC1-F1-model_v4_TED01","TED novel fold AF-A0A316XDC1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A475075","Chryseobacterium phosphatilyticum"]]},{"id":"NCBITaxon:475081","l":"Jannaschia seohaensis","na":1,"nb":1,"a":[["TED%3AAF-A0A2Y9C328-F1-model_v4_TED01","TED novel fold AF-A0A2Y9C328-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A475081","Jannaschia seohaensis"]]},{"id":"NCBITaxon:475083","l":"Roseovarius aestuarii","na":1,"nb":1,"a":[["TED%3AAF-A0A1X7BVA9-F1-model_v4_TED01","TED novel fold AF-A0A1X7BVA9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A475083","Roseovarius aestuarii"]]},{"id":"NCBITaxon:476282","l":"Bradyrhizobium japonicum SEMIA 5079","na":1,"nb":1,"a":[["TED%3AAF-A0A023XH60-F1-model_v4_TED01","TED novel fold AF-A0A023XH60-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A476282","Bradyrhizobium japonicum SEMIA 5079"]]},{"id":"NCBITaxon:47759","l":"Streptomyces tubercidicus","na":1,"nb":1,"a":[["TED%3AAF-A0A640UN74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A640UN74-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A47759","Streptomyces tubercidicus"]]},{"id":"NCBITaxon:477680","l":"Filimonas lacunae","na":1,"nb":1,"a":[["TED%3AAF-A0A173MBE7-F1-model_v4_TED01","TED novel fold AF-A0A173MBE7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A477680","Filimonas lacunae"]]},{"id":"NCBITaxon:4781","l":"Plasmopara halstedii","na":1,"nb":1,"a":[["TED%3AAF-A0A0P1AW30-F1-model_v4_TED01","TED novel fold AF-A0A0P1AW30-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A4781","Plasmopara halstedii"]]},{"id":"NCBITaxon:4784","l":"Phytophthora capsici","na":1,"nb":1,"a":[["Pfam%3APF00964","Elicitin"]],"b":[["NCBITaxon%3A4784","Phytophthora capsici"]]},{"id":"NCBITaxon:47864","l":"Micromonospora halophytica","na":1,"nb":1,"a":[["TED%3AAF-A0A1C5IAX2-F1-model_v4_TED03","TED novel fold AF-A0A1C5IAX2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A47864","Micromonospora halophytica"]]},{"id":"NCBITaxon:478820","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A196S5V8-F1-model_v4_TED01","TED novel fold AF-A0A196S5V8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A478820","Blastocystis sp. ATCC 50177/Nand II"]]},{"id":"NCBITaxon:479","l":"","na":1,"nb":1,"a":[["Pfam%3APF09208","Restriction endonuclease MspI"]],"b":[["NCBITaxon%3A479","Moraxella sp."]]},{"id":"NCBITaxon:47913","l":"Vibrio sp. (strain JT0107)","na":1,"nb":1,"a":[["Pfam%3APF17992","Agarase CBM like domain"]],"b":[["NCBITaxon%3A47913","Vibrio sp. JT0107"]]},{"id":"NCBITaxon:47915","l":"","na":1,"nb":1,"a":[["Pfam%3APF21994","AGAO-like N2 domain"]],"b":[["NCBITaxon%3A47915","Arthrobacter sp. P1"]]},{"id":"NCBITaxon:4795","l":"Phytophthora megakarya","na":1,"nb":1,"a":[["TED%3AAF-A0A225WIC4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A225WIC4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A4795","Phytophthora megakarya"]]},{"id":"NCBITaxon:479978","l":"Micromonospora tulbaghiae","na":1,"nb":1,"a":[["TED%3AAF-A0A1C4V387-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C4V387-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A479978","Micromonospora tulbaghiae"]]},{"id":"NCBITaxon:480284","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q9Y7Y8-F1-model_v4_TED04","TED novel fold AF-A0A0Q9Y7Y8-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A480284","Paracerasibacillus soli"]]},{"id":"NCBITaxon:482300","l":"Microcystis aeruginosa SPC777","na":1,"nb":1,"a":[["TED%3AAF-S3K851-F1-model_v4_TED01","TED novel fold AF-S3K851-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A482300","Microcystis aeruginosa SPC777"]]},{"id":"NCBITaxon:48254","l":"Torulaspora globosa","na":1,"nb":1,"a":[["TED%3AAF-A0A7G3ZGG5-F1-model_v4_TED01","TED novel fold AF-A0A7G3ZGG5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A48254","Torulaspora globosa"]]},{"id":"NCBITaxon:48256","l":"Ruminiclostridium hungatei","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4ST60-F1-model_v4_TED01","TED novel fold AF-A0A1V4ST60-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A48256","Ruminiclostridium hungatei"]]},{"id":"NCBITaxon:483139","l":"Cystoisospora suis","na":1,"nb":1,"a":[["TED%3AAF-A0A2C6K7H9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2C6K7H9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A483139","Cystoisospora suis"]]},{"id":"NCBITaxon:483218","l":"[Bacteroides] pectinophilus ATCC 43243","na":1,"nb":1,"a":[["TED%3AAF-B7ASX3-F1-model_v4_TED02","TED novel fold AF-B7ASX3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A483218","[Bacteroides] pectinophilus ATCC 43243"]]},{"id":"NCBITaxon:483219","l":"Myxococcus fulvus HW-1","na":1,"nb":1,"a":[["TED%3AAF-F8C8K4-F1-model_v4_TED01","TED highly-symmetric fold AF-F8C8K4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A483219","Myxococcus fulvus HW-1"]]},{"id":"NCBITaxon:483423","l":"Estrella lausannensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0H5DSD7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0H5DSD7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A483423","Estrella lausannensis"]]},{"id":"NCBITaxon:4839","l":"Rhizomucor miehei","na":1,"nb":1,"a":[["Pfam%3APF03639","Glycosyl hydrolase family 81 N-terminal domain"]],"b":[["NCBITaxon%3A4839","Rhizomucor miehei"]]},{"id":"NCBITaxon:4847","l":"Rhizopus oligosporus","na":1,"nb":1,"a":[["Pfam%3APF03427","Carbohydrate binding domain (family 19)"]],"b":[["NCBITaxon%3A4847","Rhizopus microsporus var. oligosporus"]]},{"id":"NCBITaxon:485447","l":"Thalassomonas actiniarum","na":1,"nb":1,"a":[["TED%3AAF-A0A0D8CU42-F1-model_v4_TED02","TED novel fold AF-A0A0D8CU42-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A485447","Thalassomonas actiniarum"]]},{"id":"NCBITaxon:485751","l":"Pseudomonas sp. LD120","na":1,"nb":1,"a":[["TED%3AAF-A0A7V8JCN8-F1-model_v4_TED01","TED novel fold AF-A0A7V8JCN8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A485751","Pseudomonas sp. LD120"]]},{"id":"NCBITaxon:486398","l":"Bacillus sp. S3","na":1,"nb":1,"a":[["TED%3AAF-A0A513RDB0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A513RDB0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A486398","Bacillus sp. S3"]]},{"id":"NCBITaxon:487214","l":"","na":1,"nb":1,"a":[["PROSITE%3APS01163","Galactose-1-phosphate uridyl transferase family 2 signature"]],"b":[["NCBITaxon%3A487214","Streptococcus pneumoniae Hungary19A-6"]]},{"id":"NCBITaxon:487796","l":"Flavobacteria bacterium MS024-2A","na":1,"nb":1,"a":[["TED%3AAF-C0BK38-F1-model_v4_TED02","TED novel fold AF-C0BK38-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A487796","Flavobacteria bacterium MS024-2A"]]},{"id":"NCBITaxon:487822","l":"Xanthomonas arboricola pv. fragariae","na":1,"nb":1,"a":[["TED%3AAF-A0A2N9D9Q3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N9D9Q3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A487822","Xanthomonas arboricola pv. fragariae"]]},{"id":"NCBITaxon:487851","l":"Xanthomonas arboricola pv. arracaciae","na":1,"nb":1,"a":[["TED%3AAF-A0A2S6ZHA0-F1-model_v4_TED01","TED novel fold AF-A0A2S6ZHA0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A487851","Xanthomonas arboricola pv. arracaciae"]]},{"id":"NCBITaxon:488223","l":"","na":1,"nb":1,"a":[["PROSITE%3APS01163","Galactose-1-phosphate uridyl transferase family 2 signature"]],"b":[["NCBITaxon%3A488223","Streptococcus pneumoniae P1031"]]},{"id":"NCBITaxon:488535","l":"Marinobacter zhejiangensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1I4LWZ8-F1-model_v4_TED01","TED novel fold AF-A0A1I4LWZ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A488535","Marinobacter zhejiangensis"]]},{"id":"NCBITaxon:488538","l":"","na":1,"nb":1,"a":[["TED%3AAF-D5BSL3-F1-model_v4_TED01","TED novel fold AF-D5BSL3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A488538","Candidatus Puniceispirillum marinum IMCC1322"]]},{"id":"NCBITaxon:489911","l":"Halarchaeum rubridurum","na":1,"nb":1,"a":[["TED%3AAF-A0A830G3U2-F1-model_v4_TED03","TED novel fold AF-A0A830G3U2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A489911","Halarchaeum rubridurum"]]},{"id":"NCBITaxon:489913","l":"Halarchaeum nitratireducens","na":1,"nb":1,"a":[["TED%3AAF-A0A830GC83-F1-model_v4_TED01","TED novel fold AF-A0A830GC83-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A489913","Halarchaeum nitratireducens"]]},{"id":"NCBITaxon:49012","l":"Sporisorium scitamineum","na":1,"nb":1,"a":[["TED%3AAF-A0A140KLW0-F1-model_v4_TED03","TED novel fold AF-A0A140KLW0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A49012","Sporisorium scitamineum"]]},{"id":"NCBITaxon:490622","l":"Trichoderma arundinaceum","na":1,"nb":1,"a":[["Pfam%3APF22701","Mal s 1 allergenic protein-like"]],"b":[["NCBITaxon%3A490622","Trichoderma arundinaceum"]]},{"id":"NCBITaxon:491207","l":"Chryseobacterium oleae","na":1,"nb":1,"a":[["TED%3AAF-A0A1I5BFN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5BFN6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A491207","Chryseobacterium oleae"]]},{"id":"NCBITaxon:4926","l":"Pichia membranifaciens","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q2YIR9-F1-model_v4_TED01","TED novel fold AF-A0A1Q2YIR9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A4926","Pichia membranifaciens"]]},{"id":"NCBITaxon:493375","l":"Halpernia humi","na":1,"nb":1,"a":[["TED%3AAF-A0A1H5T9H3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H5T9H3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A493375","Halpernia humi"]]},{"id":"NCBITaxon:4957","l":"Zygosaccharomyces bisporus","na":1,"nb":1,"a":[["Pfam%3APF05202","Recombinase Flp protein"]],"b":[["NCBITaxon%3A4957","Zygosaccharomyces bisporus"]]},{"id":"NCBITaxon:498718","l":"Slackia equolifaciens","na":1,"nb":1,"a":[["TED%3AAF-A0A3N0AU33-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3N0AU33-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A498718","Slackia equolifaciens"]]},{"id":"NCBITaxon:49899","l":"Thermococcus profundus","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z2MDJ6-F1-model_v4_TED01","TED novel fold AF-A0A2Z2MDJ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A49899","Thermococcus profundus"]]},{"id":"NCBITaxon:499207","l":"Syntrophaceticus schinkii","na":1,"nb":1,"a":[["TED%3AAF-A0A0B7MFK5-F1-model_v4_TED02","TED novel fold AF-A0A0B7MFK5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A499207","Syntrophaceticus schinkii"]]},{"id":"NCBITaxon:4999","l":"Kockovaella imperatae","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y1UDV0-F1-model_v4_TED02","TED novel fold AF-A0A1Y1UDV0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A4999","Kockovaella imperatae"]]},{"id":"NCBITaxon:500148","l":"Metarhizium brunneum","na":1,"nb":1,"a":[["TED%3AAF-A0A7D5YSS6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7D5YSS6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A500148","Metarhizium brunneum"]]},{"id":"NCBITaxon:5007","l":"Brettanomyces bruxellensis","na":1,"nb":1,"a":[["TED%3AAF-A0A7D9CWH5-F1-model_v4_TED01","TED novel fold AF-A0A7D9CWH5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5007","Brettanomyces bruxellensis"]]},{"id":"NCBITaxon:501024","l":"Rhizobium tibeticum","na":1,"nb":1,"a":[["TED%3AAF-A0A1H8TQT1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H8TQT1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A501024","Rhizobium tibeticum"]]},{"id":"NCBITaxon:501834","l":"Thalassospira sp. MCCC 1A01148","na":1,"nb":1,"a":[["TED%3AAF-A0A154LM58-F1-model_v4_TED01","TED novel fold AF-A0A154LM58-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A501834","Thalassospira sp. MCCC 1A01148"]]},{"id":"NCBITaxon:50340","l":"Pseudomonas fuscovaginae","na":1,"nb":1,"a":[["TED%3AAF-A0A0N0E536-F1-model_v4_TED03","TED novel fold AF-A0A0N0E536-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A53407","Pseudomonas asplenii"]]},{"id":"NCBITaxon:50376","l":"Venturia effusa","na":1,"nb":1,"a":[["TED%3AAF-A0A517L490-F1-model_v4_TED02","TED novel fold AF-A0A517L490-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A50376","Venturia effusa"]]},{"id":"NCBITaxon:504468","l":"Rhodovastum atsumiense","na":1,"nb":1,"a":[["TED%3AAF-A0A5M6IJ90-F1-model_v4_TED03","TED novel fold AF-A0A5M6IJ90-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A504468","Rhodovastum atsumiense"]]},{"id":"NCBITaxon:504487","l":"Jejuia pallidilutea","na":1,"nb":1,"a":[["TED%3AAF-A0A090W053-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A090W053-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A504487","Jejuia pallidilutea"]]},{"id":"NCBITaxon:505389","l":"Mesorhizobium sangaii","na":1,"nb":1,"a":[["TED%3AAF-A0A841PLH7-F1-model_v4_TED01","TED novel fold AF-A0A841PLH7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A505389","Mesorhizobium sangaii"]]},{"id":"NCBITaxon:5060","l":"Aspergillus giganteus","na":1,"nb":1,"a":[["Pfam%3APF11402","Antifungal protein"]],"b":[["NCBITaxon%3A5060","Aspergillus giganteus"]]},{"id":"NCBITaxon:50718","l":"Vibrio mytili","na":1,"nb":1,"a":[["TED%3AAF-A0A0C3DIF7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0C3DIF7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A50718","Vibrio mytili"]]},{"id":"NCBITaxon:5077","l":"Penicillium citrinum","na":1,"nb":1,"a":[["PROSITE%3APS00876","Indoleamine 2,3-dioxygenase signature 1"]],"b":[["NCBITaxon%3A5077","Penicillium citrinum"]]},{"id":"NCBITaxon:5082","l":"Penicillium roqueforti","na":1,"nb":1,"a":[["Pfam%3APF07573","Nitrogen regulatory protein AreA N terminus"]],"b":[["NCBITaxon%3A5082","Penicillium roqueforti"]]},{"id":"NCBITaxon:5083","l":"Penicillium canescens","na":1,"nb":1,"a":[["Pfam%3APF09206","Alpha-L-arabinofuranosidase B, catalytic"]],"b":[["NCBITaxon%3A5083","Penicillium canescens"]]},{"id":"NCBITaxon:508767","l":"Clostridium botulinum E3 str. Alaska E43","na":1,"nb":1,"a":[["Pfam%3APF04029","2-phosphosulpholactate phosphatase"]],"b":[["NCBITaxon%3A508767","Clostridium botulinum E3 str. Alaska E43"]]},{"id":"NCBITaxon:509200","l":"Sphaerisporangium album","na":1,"nb":1,"a":[["TED%3AAF-A0A367FKB5-F1-model_v4_TED01","TED novel fold AF-A0A367FKB5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A509200","Sphaerisporangium album"]]},{"id":"NCBITaxon:510947","l":"Lacibacter cauensis","na":1,"nb":1,"a":[["TED%3AAF-A0A562S975-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A562S975-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A510947","Lacibacter cauensis"]]},{"id":"NCBITaxon:5127","l":"Fusarium fujikuroi","na":1,"nb":1,"a":[["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"]],"b":[["NCBITaxon%3A5127","Fusarium fujikuroi"]]},{"id":"NCBITaxon:515350","l":"Micromonospora endophytica","na":1,"nb":1,"a":[["TED%3AAF-A0A2W2D5L3-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2W2D5L3-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A515350","Micromonospora endophytica"]]},{"id":"NCBITaxon:515499","l":"Bradyrhizobium rifense","na":1,"nb":1,"a":[["TED%3AAF-A0A5D3KCZ7-F1-model_v4_TED03","TED novel fold AF-A0A5D3KCZ7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A515499","Bradyrhizobium rifense"]]},{"id":"NCBITaxon:515897","l":"Pontibaca methylaminivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A1R3WBU9-F1-model_v4_TED02","TED novel fold AF-A0A1R3WBU9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A515897","Pontibaca methylaminivorans"]]},{"id":"NCBITaxon:517720","l":"Stakelama pacifica","na":1,"nb":1,"a":[["TED%3AAF-A0A4R6FNF8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4R6FNF8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A517720","Stakelama pacifica"]]},{"id":"NCBITaxon:518882","l":"","na":1,"nb":1,"a":[["Pfam%3APF14031","Putative serine dehydratase domain"]],"b":[["NCBITaxon%3A518882","Delftia sp. HT23"]]},{"id":"NCBITaxon:519450","l":"Mycoplasma anserisalpingitidis","na":1,"nb":1,"a":[["TED%3AAF-A0A5B8J7N5-F1-model_v4_TED01","TED novel fold AF-A0A5B8J7N5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A519450","Mycoplasma anserisalpingitidis"]]},{"id":"NCBITaxon:525244","l":"","na":1,"nb":1,"a":[["Pfam%3APF14130","Cap4, dsDNA endonuclease domain"]],"b":[["NCBITaxon%3A525244","Acinetobacter sp. ATCC 27244"]]},{"id":"NCBITaxon:525283","l":"","na":1,"nb":1,"a":[["Pfam%3APF26317","Histidine racemase CntK N-terminal domain"]],"b":[["NCBITaxon%3A525283","Fusobacterium nucleatum subsp. nucleatum ATCC 23726"]]},{"id":"NCBITaxon:52560","l":"Desulfomicrobium apsheronum","na":1,"nb":1,"a":[["TED%3AAF-A0A1I3Z6Q6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1I3Z6Q6-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A52560","Desulfomicrobium apsheronum"]]},{"id":"NCBITaxon:52697","l":"Actinoplanes regularis","na":1,"nb":1,"a":[["TED%3AAF-A0A238WLZ3-F1-model_v4_TED01","TED novel fold AF-A0A238WLZ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A52697","Actinoplanes regularis"]]},{"id":"NCBITaxon:52771","l":"Actinomyces howellii","na":1,"nb":1,"a":[["TED%3AAF-A0A3S4R0T4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S4R0T4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A52771","Actinomyces howellii"]]},{"id":"NCBITaxon:528191","l":"Paenibacillus xylanexedens","na":1,"nb":1,"a":[["TED%3AAF-A0A3N6BL17-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N6BL17-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A528191","Paenibacillus xylanexedens"]]},{"id":"NCBITaxon:5288","l":"Rhodotorula diobovata","na":1,"nb":1,"a":[["TED%3AAF-A0A5C5FQ86-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A5C5FQ86-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A5288","Rhodotorula diobovata"]]},{"id":"NCBITaxon:5315","l":"Ganoderma lucidum","na":1,"nb":1,"a":[["Pfam%3APF09259","Fungal immunomodulatory protein Fve"]],"b":[["NCBITaxon%3A5315","Ganoderma lucidum"]]},{"id":"NCBITaxon:53367","l":"Asanoa ferruginea","na":1,"nb":1,"a":[["TED%3AAF-A0A3D9ZYT7-F1-model_v4_TED02","TED novel fold AF-A0A3D9ZYT7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A53367","Asanoa ferruginea"]]},{"id":"NCBITaxon:53463","l":"Paracoccus solventivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A1M7DMW2-F1-model_v4_TED03","TED novel fold AF-A0A1M7DMW2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A53463","Paracoccus solventivorans"]]},{"id":"NCBITaxon:537601","l":"Mesorhizobium intechi","na":1,"nb":1,"a":[["TED%3AAF-A0A2N7S8D1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N7S8D1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A537601","Mesorhizobium intechi"]]},{"id":"NCBITaxon:54262","l":"Thermococcus chitonophagus","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z2NBK5-F1-model_v4_TED02","TED novel fold AF-A0A2Z2NBK5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A54262","Thermococcus chitonophagus"]]},{"id":"NCBITaxon:542832","l":"Peronospora effusa","na":1,"nb":1,"a":[["TED%3AAF-A0A3M6VIX8-F1-model_v4_TED01","TED novel fold AF-A0A3M6VIX8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A542832","Peronospora effusa"]]},{"id":"NCBITaxon:543527","l":"Saccharothrix variisporea","na":1,"nb":1,"a":[["TED%3AAF-A0A495X541-F1-model_v4_TED02","TED novel fold AF-A0A495X541-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A543527","Saccharothrix variisporea"]]},{"id":"NCBITaxon:543913","l":"beta proteobacterium CB","na":1,"nb":1,"a":[["TED%3AAF-M1T4B9-F1-model_v4_TED01","TED novel fold AF-M1T4B9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A543913","beta proteobacterium CB"]]},{"id":"NCBITaxon:54398","l":"endosymbiont of Ridgeia piscesae","na":1,"nb":1,"a":[["TED%3AAF-A0A0T5YXI7-F1-model_v4_TED03","TED novel fold AF-A0A0T5YXI7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A54398","endosymbiont of Ridgeia piscesae"]]},{"id":"NCBITaxon:544404","l":"","na":1,"nb":1,"a":[["Pfam%3APF04806","EspF protein repeat"]],"b":[["NCBITaxon%3A544404","Escherichia coli O157:H7 str. TW14359"]]},{"id":"NCBITaxon:544406","l":"Helicobacter pylori B128","na":1,"nb":1,"a":[["PROSITE%3APS01292","Uncharacterized protein family UPF0036 signature"]],"b":[["NCBITaxon%3A544406","Helicobacter pylori B128"]]},{"id":"NCBITaxon:544938","l":"Methylocystis sp. B8","na":1,"nb":1,"a":[["TED%3AAF-A0A5R8QP52-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5R8QP52-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A544938","Methylocystis sp. B8"]]},{"id":"NCBITaxon:547162","l":"Micromonospora sediminimaris","na":1,"nb":1,"a":[["TED%3AAF-A0A1I1G4E3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I1G4E3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A547162","Micromonospora sediminimaris"]]},{"id":"NCBITaxon:547163","l":"Mycolicibacterium vulneris","na":1,"nb":1,"a":[["TED%3AAF-A0A853MGU5-F1-model_v4_TED01","TED novel fold AF-A0A853MGU5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A547163","Mycolicibacterium vulneris"]]},{"id":"NCBITaxon:5486","l":"Candida viswanathii","na":1,"nb":1,"a":[["TED%3AAF-A0A367YI34-F1-model_v4_TED02","TED novel fold AF-A0A367YI34-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A5486","Candida viswanathii"]]},{"id":"NCBITaxon:54915","l":"Brevibacillus reuszeri","na":1,"nb":1,"a":[["TED%3AAF-A0A0K9Z0U4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0K9Z0U4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A54915","Brevibacillus reuszeri"]]},{"id":"NCBITaxon:550537","l":"","na":1,"nb":1,"a":[["Pfam%3APF04077","DsrH like protein"]],"b":[["NCBITaxon%3A550537","Salmonella enterica subsp. enterica serovar Enteritidis str. P125109"]]},{"id":"NCBITaxon:550538","l":"","na":1,"nb":1,"a":[["Pfam%3APF08254","Threonine leader peptide"]],"b":[["NCBITaxon%3A550538","Salmonella enterica subsp. enterica serovar Gallinarum str. 287/91"]]},{"id":"NCBITaxon:5516","l":"Fusarium culmorum","na":1,"nb":1,"a":[["TED%3AAF-A0A2T4GUL3-F1-model_v4_TED01","TED novel fold AF-A0A2T4GUL3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5516","Fusarium culmorum"]]},{"id":"NCBITaxon:55194","l":"Malassezia furfur","na":1,"nb":1,"a":[["Pfam%3APF22701","Mal s 1 allergenic protein-like"]],"b":[["NCBITaxon%3A55194","Malassezia furfur"]]},{"id":"NCBITaxon:551947","l":"Bradyrhizobium sp. STM 3843","na":1,"nb":1,"a":[["TED%3AAF-H0TVQ1-F1-model_v4_TED01","TED novel fold AF-H0TVQ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A551947","Bradyrhizobium sp. STM 3843"]]},{"id":"NCBITaxon:551991","l":"Arachidicoccus rhizosphaerae","na":1,"nb":1,"a":[["TED%3AAF-A0A1H4B9Q5-F1-model_v4_TED02","TED novel fold AF-A0A1H4B9Q5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A551991","Arachidicoccus rhizosphaerae"]]},{"id":"NCBITaxon:551995","l":"Mucilaginibacter gossypiicola","na":1,"nb":1,"a":[["TED%3AAF-A0A1H8PN00-F1-model_v4_TED02","TED novel fold AF-A0A1H8PN00-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A551995","Mucilaginibacter gossypiicola"]]},{"id":"NCBITaxon:552546","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A6I1E2H7-F1-model_v4_TED01","TED novel fold AF-A0A6I1E2H7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A552546","Flagellimonas olearia"]]},{"id":"NCBITaxon:553427","l":"Heliorestis acidaminivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A6I0F388-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6I0F388-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A553427","Heliorestis acidaminivorans"]]},{"id":"NCBITaxon:553480","l":"Photorhabdus asymbiotica subsp. asymbiotica ATCC 43949","na":1,"nb":1,"a":[["Pfam%3APF06804","Outer membrane protein assembly factor BamC-like C-terminal domain"]],"b":[["NCBITaxon%3A553480","Photorhabdus asymbiotica subsp. asymbiotica ATCC 43949"]]},{"id":"NCBITaxon:553483","l":"","na":1,"nb":1,"a":[["Pfam%3APF04260","Protein of unknown function (DUF436)"]],"b":[["NCBITaxon%3A553483","Streptococcus equi subsp. zooepidemicus H70"]]},{"id":"NCBITaxon:554290","l":"Salmonella enterica subsp. enterica serovar Paratyphi A str. AKU_12601","na":1,"nb":1,"a":[["Pfam%3APF08254","Threonine leader peptide"]],"b":[["NCBITaxon%3A554290","Salmonella enterica subsp. enterica serovar Paratyphi A str. AKU_12601"]]},{"id":"NCBITaxon:5547","l":"Trichoderma viride","na":1,"nb":1,"a":[["Pfam%3APF14587","O-Glycosyl hydrolase family 30"]],"b":[["NCBITaxon%3A5547","Trichoderma viride"]]},{"id":"NCBITaxon:555059","l":"Streptomyces sedi","na":1,"nb":1,"a":[["TED%3AAF-A0A5C4V2V8-F1-model_v4_TED04","TED novel fold AF-A0A5C4V2V8-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A555059","Streptomyces sedi"]]},{"id":"NCBITaxon:55603","l":"Mycoplasmopsis caviae","na":1,"nb":1,"a":[["TED%3AAF-A0A3P8KC62-F1-model_v4_TED02","TED novel fold AF-A0A3P8KC62-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A55603","Mycoplasmopsis caviae"]]},{"id":"NCBITaxon:557598","l":"","na":1,"nb":1,"a":[["Pfam%3APF06299","Protein of unknown function (DUF1045)"]],"b":[["NCBITaxon%3A557598","Laribacter hongkongensis HLHK9"]]},{"id":"NCBITaxon:559304","l":"","na":1,"nb":1,"a":[["TED%3AAF-G8Y330-F1-model_v4_TED01","TED novel fold AF-G8Y330-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A559304","Millerozyma farinosa CBS 7064"]]},{"id":"NCBITaxon:5599","l":"Alternaria alternata","na":1,"nb":1,"a":[["Pfam%3APF16541","Alternaria alternata allergen 1"]],"b":[["NCBITaxon%3A5599","Alternaria alternata"]]},{"id":"NCBITaxon:561061","l":"Sphingobacterium psychroaquaticum","na":1,"nb":1,"a":[["TED%3AAF-A0A1X7IBM3-F1-model_v4_TED01","TED novel fold AF-A0A1X7IBM3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A561061","Sphingobacterium psychroaquaticum"]]},{"id":"NCBITaxon:56110","l":"","na":1,"nb":1,"a":[["TED%3AAF-K9TG07-F1-model_v4_TED01","TED highly-symmetric fold AF-K9TG07-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A56110","Oxynema acuminatum PCC 6304"]]},{"id":"NCBITaxon:561176","l":"Jiangella alba","na":1,"nb":1,"a":[["TED%3AAF-A0A1H5PL15-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H5PL15-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A561176","Jiangella alba"]]},{"id":"NCBITaxon:56187","l":"Coprinus comatus","na":1,"nb":1,"a":[["Pfam%3APF22803","Glycan binding domain Y3"]],"b":[["NCBITaxon%3A56187","Coprinus comatus"]]},{"id":"NCBITaxon:563008","l":"Segatella oris C735","na":1,"nb":1,"a":[["TED%3AAF-D7NFV4-F1-model_v4_TED01","TED novel fold AF-D7NFV4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A563008","Segatella oris C735"]]},{"id":"NCBITaxon:563041","l":"","na":1,"nb":1,"a":[["PROSITE%3APS01321","Crossover junction endodeoxyribonuclease ruvC signature"]],"b":[["NCBITaxon%3A563041","Helicobacter pylori G27"]]},{"id":"NCBITaxon:563466","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A084GCE4-F1-model_v4_TED01","TED novel fold AF-A0A084GCE4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A563466","Scedosporium apiospermum"]]},{"id":"NCBITaxon:563735","l":"Gracilibacillus thailandensis","na":1,"nb":1,"a":[["TED%3AAF-A0A6N7QZ32-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N7QZ32-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A563735","Gracilibacillus thailandensis"]]},{"id":"NCBITaxon:5643","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A060SBT3-F1-model_v4_TED01","TED novel fold AF-A0A060SBT3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5643","Trametes cinnabarina"]]},{"id":"NCBITaxon:564710","l":"Vagococcus acidifermentans","na":1,"nb":1,"a":[["TED%3AAF-A0A430ARH8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A430ARH8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A564710","Vagococcus acidifermentans"]]},{"id":"NCBITaxon:565034","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A3B6VDR6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B6VDR6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A565034","Brachyspira hyodysenteriae WA1"]]},{"id":"NCBITaxon:565419","l":"Coleophoma crateriformis","na":1,"nb":1,"a":[["TED%3AAF-A0A3D8RJP7-F1-model_v4_TED02","TED novel fold AF-A0A3D8RJP7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A565419","Coleophoma crateriformis"]]},{"id":"NCBITaxon:565575","l":"","na":1,"nb":1,"a":[["Pfam%3APF28494","Glycyl-tRNA synthetase insertion domain 1"]],"b":[["NCBITaxon%3A565575","Ureaplasma urealyticum serovar 10 str. ATCC 33699"]]},{"id":"NCBITaxon:565655","l":"Enterococcus casseliflavus EC20","na":1,"nb":1,"a":[["TED%3AAF-C9A7V8-F1-model_v4_TED02","TED highly-symmetric fold AF-C9A7V8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A565655","Enterococcus casseliflavus EC20"]]},{"id":"NCBITaxon:566037","l":"","na":1,"nb":1,"a":[["TED%3AAF-R9XFX7-F1-model_v4_TED02","TED highly-symmetric fold AF-R9XFX7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A566037","[Ashbya] aceris (nom. inval.)"]]},{"id":"NCBITaxon:568783","l":"Herbaspirillum aquaticum","na":1,"nb":1,"a":[["TED%3AAF-A0A225SUW3-F1-model_v4_TED01","TED novel fold AF-A0A225SUW3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A568783","Herbaspirillum aquaticum"]]},{"id":"NCBITaxon:568872","l":"Micromonospora rhizosphaerae","na":1,"nb":1,"a":[["TED%3AAF-A0A1C6SY29-F1-model_v4_TED01","TED novel fold AF-A0A1C6SY29-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A568872","Micromonospora rhizosphaerae"]]},{"id":"NCBITaxon:569860","l":"Methylovirgula ligni","na":1,"nb":1,"a":[["TED%3AAF-A0A3D9Z4S9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D9Z4S9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A569860","Methylovirgula ligni"]]},{"id":"NCBITaxon:57028","l":"Algoriphagus ratkowskyi","na":1,"nb":1,"a":[["TED%3AAF-A0A2W7R4D4-F1-model_v4_TED01","TED novel fold AF-A0A2W7R4D4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A57028","Algoriphagus ratkowskyi"]]},{"id":"NCBITaxon:57032","l":"Polaribacter sp. IC066","na":1,"nb":1,"a":[["TED%3AAF-A0A5C6YBD0-F1-model_v4_TED03","TED novel fold AF-A0A5C6YBD0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A57032","Polaribacter sp. IC066"]]},{"id":"NCBITaxon:570508","l":"","na":1,"nb":1,"a":[["Pfam%3APF10788","Protein of unknown function (DUF2603)"]],"b":[["NCBITaxon%3A570508","Helicobacter pylori P12"]]},{"id":"NCBITaxon:570521","l":"Aquimarina spongiae","na":1,"nb":1,"a":[["TED%3AAF-A0A1M6JPL6-F1-model_v4_TED01","TED novel fold AF-A0A1M6JPL6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A570521","Aquimarina spongiae"]]},{"id":"NCBITaxon:571913","l":"Luteipulveratus mongoliensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0K1JRD2-F1-model_v4_TED02","TED novel fold AF-A0A0K1JRD2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A571913","Luteipulveratus mongoliensis"]]},{"id":"NCBITaxon:571915","l":"Corynebacterium mustelae","na":1,"nb":1,"a":[["TED%3AAF-A0A0G3GWZ2-F1-model_v4_TED02","TED novel fold AF-A0A0G3GWZ2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A571915","Corynebacterium mustelae"]]},{"id":"NCBITaxon:573321","l":"Chitinophaga rupis","na":1,"nb":1,"a":[["TED%3AAF-A0A1H7XSZ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H7XSZ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A573321","Chitinophaga rupis"]]},{"id":"NCBITaxon:573497","l":"Parafrankia colletiae","na":1,"nb":1,"a":[["TED%3AAF-A0A1S1QVH9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S1QVH9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A573497","Parafrankia colletiae"]]},{"id":"NCBITaxon:573737","l":"Pandoraea oxalativorans","na":1,"nb":1,"a":[["TED%3AAF-A0A0G3IC85-F1-model_v4_TED03","TED novel fold AF-A0A0G3IC85-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A573737","Pandoraea oxalativorans"]]},{"id":"NCBITaxon:573841","l":"Sordaria araneosa","na":1,"nb":1,"a":[["Pfam%3APF26335","Beta-lactamase-like ARB_00930-like, C-terminal domain"]],"b":[["NCBITaxon%3A573841","Sordaria araneosa"]]},{"id":"NCBITaxon:574093","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A806DTH4-F1-model_v4_TED01","TED novel fold AF-A0A806DTH4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A574093","Streptococcus pneumoniae AP200"]]},{"id":"NCBITaxon:574651","l":"Nocardioides terrae","na":1,"nb":1,"a":[["TED%3AAF-A0A1I1JAV8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I1JAV8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A574651","Nocardioides terrae"]]},{"id":"NCBITaxon:575615","l":"Prevotella sp. oral taxon 317 str. F0108","na":1,"nb":1,"a":[["TED%3AAF-D3IIH2-F1-model_v4_TED02","TED highly-symmetric fold AF-D3IIH2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A575615","Prevotella sp. oral taxon 317 str. F0108"]]},{"id":"NCBITaxon:576137","l":"Phialocephala subalpina","na":1,"nb":1,"a":[["TED%3AAF-A0A1L7XVQ2-F1-model_v4_TED02","TED novel fold AF-A0A1L7XVQ2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A576137","Phialocephala subalpina"]]},{"id":"NCBITaxon:577680","l":"Prauserella sediminis","na":1,"nb":1,"a":[["TED%3AAF-A0A839XRH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A839XRH3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A577680","Prauserella sediminis"]]},{"id":"NCBITaxon:578113","l":"Cytospora mali","na":1,"nb":1,"a":[["Pfam%3APF20684","Fungal rhodopsin domain"]],"b":[["NCBITaxon%3A578113","Cytospora mali"]]},{"id":"NCBITaxon:578454","l":"","na":1,"nb":1,"a":[["TED%3AAF-G8BAN6-F1-model_v4_TED01","TED novel fold AF-G8BAN6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A578454","Lodderomyces parapsilosis CDC317"]]},{"id":"NCBITaxon:578942","l":"Dokdonella immobilis","na":1,"nb":1,"a":[["TED%3AAF-A0A1I5BC07-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5BC07-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A578942","Dokdonella immobilis"]]},{"id":"NCBITaxon:5804","l":"Eimeria maxima","na":1,"nb":1,"a":[["TED%3AAF-U6M890-F1-model_v4_TED01","TED novel fold AF-U6M890-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5804","Eimeria maxima"]]},{"id":"NCBITaxon:5807","l":"Cryptosporidium parvum","na":1,"nb":1,"a":[["TED%3AAF-P90625-F1-model_v4_TED02","TED highly-symmetric fold AF-P90625-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A5807","Cryptosporidium parvum"]]},{"id":"NCBITaxon:581036","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A327Y0R2-F1-model_v4_TED01","TED novel fold AF-A0A327Y0R2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A581036","Paranoxybacillus vitaminiphilus"]]},{"id":"NCBITaxon:582672","l":"Methylobacterium phyllostachyos","na":1,"nb":1,"a":[["TED%3AAF-A0A1H0LP97-F1-model_v4_TED01","TED novel fold AF-A0A1H0LP97-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A582672","Methylobacterium phyllostachyos"]]},{"id":"NCBITaxon:582686","l":"Paenibacillus methanolicus","na":1,"nb":1,"a":[["TED%3AAF-A0A5S5C8J4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5S5C8J4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A582686","Paenibacillus methanolicus"]]},{"id":"NCBITaxon:5843","l":"","na":1,"nb":1,"a":[["Pfam%3APF09716","Malarial early transcribed membrane protein (ETRAMP)"]],"b":[["NCBITaxon%3A5843","Plasmodium falciparum NF54"]]},{"id":"NCBITaxon:585055","l":"","na":1,"nb":1,"a":[["Pfam%3APF08364","Bacterial translation initiation factor IF-2 associated region"]],"b":[["NCBITaxon%3A585055","Escherichia coli 55989"]]},{"id":"NCBITaxon:5851","l":"Plasmodium knowlesi strain H","na":1,"nb":1,"a":[["TED%3AAF-A0A6H5FUY2-F1-model_v4_TED01","TED novel fold AF-A0A6H5FUY2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5851","Plasmodium knowlesi strain H"]]},{"id":"NCBITaxon:585425","l":"Synechococcus sp. KORDI-52","na":1,"nb":1,"a":[["TED%3AAF-A0A076HJJ9-F1-model_v4_TED03","TED novel fold AF-A0A076HJJ9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A585425","Synechococcus sp. KORDI-52"]]},{"id":"NCBITaxon:585455","l":"Thiohalobacter thiocyanaticus","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z4VP45-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z4VP45-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A585455","Thiohalobacter thiocyanaticus"]]},{"id":"NCBITaxon:5858","l":"Plasmodium malariae","na":1,"nb":1,"a":[["TED%3AAF-A0A1C3L2T8-F1-model_v4_TED01","TED novel fold AF-A0A1C3L2T8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5858","Plasmodium malariae"]]},{"id":"NCBITaxon:5865","l":"Babesia bovis","na":1,"nb":1,"a":[["TED%3AAF-A7AUJ7-F1-model_v4_TED01","TED novel fold AF-A7AUJ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5865","Babesia bovis"]]},{"id":"NCBITaxon:5866","l":"Babesia bigemina","na":1,"nb":1,"a":[["TED%3AAF-A0A061D3T3-F1-model_v4_TED01","TED novel fold AF-A0A061D3T3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5866","Babesia bigemina"]]},{"id":"NCBITaxon:5874","l":"Theileria annulata","na":1,"nb":1,"a":[["Pfam%3APF04385","Domain of unknown function, DUF529"]],"b":[["NCBITaxon%3A353154","Theileria annulata strain Ankara"]]},{"id":"NCBITaxon:5875","l":"Theileria parva","na":1,"nb":1,"a":[["TED%3AAF-Q4N7W8-F1-model_v4_TED01","TED novel fold AF-Q4N7W8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A333668","Theileria parva strain Muguga"]]},{"id":"NCBITaxon:587635","l":"Pseudoclavibacter chungangensis","na":1,"nb":1,"a":[["TED%3AAF-A0A7J5BNR9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7J5BNR9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A587635","Pseudoclavibacter chungangensis"]]},{"id":"NCBITaxon:587909","l":"Amycolatopsis arida","na":1,"nb":1,"a":[["TED%3AAF-A0A1I5ZJ74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5ZJ74-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A587909","Amycolatopsis arida"]]},{"id":"NCBITaxon:5885","l":"Paramecium caudatum","na":1,"nb":1,"a":[["PROSITE%3APS01213","Protozoan/cyanobacterial globins signature"]],"b":[["NCBITaxon%3A5885","Paramecium caudatum"]]},{"id":"NCBITaxon:58853","l":"Trichoderma citrinoviride","na":1,"nb":1,"a":[["TED%3AAF-A0A2T4BGG3-F1-model_v4_TED03","TED novel fold AF-A0A2T4BGG3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A58853","Trichoderma citrinoviride"]]},{"id":"NCBITaxon:588602","l":"Celeribacter neptunius","na":1,"nb":1,"a":[["TED%3AAF-A0A1I3LCJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I3LCJ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A588602","Celeribacter neptunius"]]},{"id":"NCBITaxon:589162","l":"Gordonia crocea","na":1,"nb":1,"a":[["TED%3AAF-A0A7M3SUN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7M3SUN3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A589162","Gordonia crocea"]]},{"id":"NCBITaxon:591153","l":"","na":1,"nb":1,"a":[["Pfam%3APF26324","Type III secretion system effector HopBF1 kinase domain"]],"b":[["NCBITaxon%3A591153","Pseudomonas syringae pv. syringae FF5"]]},{"id":"NCBITaxon:592021","l":"","na":1,"nb":1,"a":[["Pfam%3APF10087","Uncharacterized protein conserved in bacteria (DUF2325)"]],"b":[["NCBITaxon%3A592021","Bacillus anthracis str. A0248"]]},{"id":"NCBITaxon:595453","l":"Rhodopirellula sp. SM50","na":1,"nb":1,"a":[["TED%3AAF-A0A2A2WGR6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A2WGR6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A595453","Rhodopirellula sp. SM50"]]},{"id":"NCBITaxon:595496","l":"","na":1,"nb":1,"a":[["PROSITE%3APS01277","Ribonuclease PH signature"]],"b":[["NCBITaxon%3A595496","Escherichia coli BW2952"]]},{"id":"NCBITaxon:595589","l":"Hasllibacter halocynthiae","na":1,"nb":1,"a":[["TED%3AAF-A0A2T0X9U6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T0X9U6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A595589","Hasllibacter halocynthiae"]]},{"id":"NCBITaxon:595692","l":"Haloferula luteola","na":1,"nb":1,"a":[["TED%3AAF-A0A840V5I4-F1-model_v4_TED01","TED novel fold AF-A0A840V5I4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A595692","Haloferula luteola"]]},{"id":"NCBITaxon:59602","l":"Gelidibacter gilvus","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q0XFJ8-F1-model_v4_TED02","TED novel fold AF-A0A4Q0XFJ8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A59602","Gelidibacter gilvus"]]},{"id":"NCBITaxon:596324","l":"Treponema vincentii ATCC 35580","na":1,"nb":1,"a":[["TED%3AAF-C8PMR0-F1-model_v4_TED02","TED novel fold AF-C8PMR0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A596324","Treponema vincentii ATCC 35580"]]},{"id":"NCBITaxon:596328","l":"Mobiluncus mulieris 28-1","na":1,"nb":1,"a":[["TED%3AAF-D0YQ80-F1-model_v4_TED02","TED novel fold AF-D0YQ80-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A596328","Mobiluncus mulieris 28-1"]]},{"id":"NCBITaxon:597","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A736ZWD6-F1-model_v4_TED02","TED novel fold AF-A0A736ZWD6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A597","Salmonella enterica subsp. enterica serovar Potsdam"]]},{"id":"NCBITaxon:59813","l":"Mycolicibacterium novocastrense","na":1,"nb":1,"a":[["TED%3AAF-A0A100X5D1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A100X5D1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A59813","Mycolicibacterium novocastrense"]]},{"id":"NCBITaxon:598644","l":"Labedaea rhizosphaerae","na":1,"nb":1,"a":[["TED%3AAF-A0A4R6SQG8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4R6SQG8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A598644","Labedaea rhizosphaerae"]]},{"id":"NCBITaxon:599","l":"","na":1,"nb":1,"a":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"]],"b":[["NCBITaxon%3A599","Salmonella sp."]]},{"id":"NCBITaxon:59918","l":"","na":1,"nb":1,"a":[["Pfam%3APF10778","Halocarboxylic acid dehydrogenase DehI"]],"b":[["NCBITaxon%3A59918","Pseudomonas sp. 113"]]},{"id":"NCBITaxon:60172","l":"Penicillium solitum","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6R6Y6-F1-model_v4_TED01","TED novel fold AF-A0A1V6R6Y6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A60172","Penicillium solitum"]]},{"id":"NCBITaxon:604330","l":"Parafannyhessea umbonata","na":1,"nb":1,"a":[["TED%3AAF-A0A6N7XAR1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N7XAR1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A604330","Parafannyhessea umbonata"]]},{"id":"NCBITaxon:60450","l":"Kribbella sandramycini","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y4L2B6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4L2B6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A60450","Kribbella sandramycini"]]},{"id":"NCBITaxon:607","l":"","na":1,"nb":1,"a":[["Pfam%3APF03614","Repressor of phase-1 flagellin"]],"b":[["NCBITaxon%3A607","Salmonella enterica subsp. enterica serovar Abortusequi"]]},{"id":"NCBITaxon:61186","l":"Monilinia laxa","na":1,"nb":1,"a":[["TED%3AAF-A0A5N6KDD7-F1-model_v4_TED01","TED novel fold AF-A0A5N6KDD7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A61186","Monilinia laxa"]]},{"id":"NCBITaxon:61366","l":"Fusarium oxysporum f. sp. cubense","na":1,"nb":1,"a":[["TED%3AAF-A0A559L4F8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A559L4F8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A61366","Fusarium oxysporum f. sp. cubense"]]},{"id":"NCBITaxon:61395","l":"Linderina pennispora","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y1WKF5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y1WKF5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A61395","Linderina pennispora"]]},{"id":"NCBITaxon:61420","l":"Aspergillus caelatus","na":1,"nb":1,"a":[["TED%3AAF-A0A5N7ABH8-F1-model_v4_TED01","TED novel fold AF-A0A5N7ABH8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A61420","Aspergillus caelatus"]]},{"id":"NCBITaxon:616997","l":"Hoyosella altamirensis","na":1,"nb":1,"a":[["TED%3AAF-A0A839RM00-F1-model_v4_TED02","TED novel fold AF-A0A839RM00-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A616997","Hoyosella altamirensis"]]},{"id":"NCBITaxon:617123","l":"Lachnoanaerobaculum umeaense","na":1,"nb":1,"a":[["TED%3AAF-A0A385PY42-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A385PY42-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A617123","Lachnoanaerobaculum umeaense"]]},{"id":"NCBITaxon:619518","l":"Periwinkle leaf yellowing phytoplasma","na":1,"nb":1,"a":[["TED%3AAF-A0A531Y170-F1-model_v4_TED01","TED novel fold AF-A0A531Y170-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A619518","Periwinkle leaf yellowing phytoplasma"]]},{"id":"NCBITaxon:62101","l":"Candidatus Endobugula sertula","na":1,"nb":1,"a":[["TED%3AAF-A0A1D2QPY2-F1-model_v4_TED01","TED novel fold AF-A0A1D2QPY2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A62101","Candidatus Endobugula sertula"]]},{"id":"NCBITaxon:623280","l":"Parapedobacter luteus","na":1,"nb":1,"a":[["TED%3AAF-A0A1T5FI29-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1T5FI29-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A623280","Parapedobacter luteus"]]},{"id":"NCBITaxon:624147","l":"Paenibacillus tianmuensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1G4P9F5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G4P9F5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A624147","Paenibacillus tianmuensis"]]},{"id":"NCBITaxon:62626","l":"","na":1,"nb":1,"a":[["Pfam%3APF06439","3-keto-alpha-glucoside-1,2-lyase-like domain"]],"b":[["NCBITaxon%3A62626","Bacillus sp. L7"]]},{"id":"NCBITaxon:62708","l":"Golovinomyces cichoracearum","na":1,"nb":1,"a":[["TED%3AAF-A0A420ILE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A420ILE6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A62708","Golovinomyces cichoracearum"]]},{"id":"NCBITaxon:627669","l":"Paraburkholderia humisilvae","na":1,"nb":1,"a":[["TED%3AAF-A0A6J5DRH8-F1-model_v4_TED06","TED novel fold AF-A0A6J5DRH8-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A627669","Paraburkholderia humisilvae"]]},{"id":"NCBITaxon:630390","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A180G462-F1-model_v4_TED01","TED novel fold AF-A0A180G462-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A630390","Puccinia triticina 1-1 BBBD Race 1"]]},{"id":"NCBITaxon:631362","l":"","na":1,"nb":1,"a":[["TED%3AAF-H8Z8I7-F1-model_v4_TED02","TED highly-symmetric fold AF-H8Z8I7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A631362","Thiorhodovibrio frisius"]]},{"id":"NCBITaxon:63186","l":"","na":1,"nb":1,"a":[["Pfam%3APF21254","Beta-agarase/YXIM esterase-like, galactose-binding domain-like"]],"b":[["NCBITaxon%3A63186","Zobellia galactanivorans"]]},{"id":"NCBITaxon:634155","l":"Pseudofulvimonas gallinarii","na":1,"nb":1,"a":[["TED%3AAF-A0A4R3L239-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R3L239-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A634155","Pseudofulvimonas gallinarii"]]},{"id":"NCBITaxon:634430","l":"Sphingomonas rubra","na":1,"nb":1,"a":[["TED%3AAF-A0A1I5S136-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5S136-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A634430","Sphingomonas rubra"]]},{"id":"NCBITaxon:634436","l":"Marisediminitalea aggregata","na":1,"nb":1,"a":[["TED%3AAF-A0A1M5JV92-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M5JV92-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A634436","Marisediminitalea aggregata"]]},{"id":"NCBITaxon:634500","l":"Erwinia billingiae Eb661","na":1,"nb":1,"a":[["PROSITE%3APS01090","TatD deoxyribonuclease family signature 2"]],"b":[["NCBITaxon%3A634500","Erwinia billingiae Eb661"]]},{"id":"NCBITaxon:634503","l":"","na":1,"nb":1,"a":[["Pfam%3APF13436","Glycine-zipper domain"]],"b":[["NCBITaxon%3A634503","Edwardsiella ictaluri 93-146"]]},{"id":"NCBITaxon:634765","l":"Cocleimonas flava","na":1,"nb":1,"a":[["TED%3AAF-A0A4R1EZF7-F1-model_v4_TED02","TED novel fold AF-A0A4R1EZF7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A634765","Cocleimonas flava"]]},{"id":"NCBITaxon:634771","l":"Chitinophaga eiseniae","na":1,"nb":1,"a":[["TED%3AAF-A0A847SE20-F1-model_v4_TED01","TED novel fold AF-A0A847SE20-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A634771","Chitinophaga eiseniae"]]},{"id":"NCBITaxon:634994","l":"Leptotrichia hofstadii F0254","na":1,"nb":1,"a":[["TED%3AAF-C9MWZ9-F1-model_v4_TED01","TED novel fold AF-C9MWZ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A634994","Leptotrichia hofstadii F0254"]]},{"id":"NCBITaxon:63605","l":"Percolomonas cosmopolitus","na":1,"nb":1,"a":[["TED%3AAF-A0A7S1KQY9-F1-model_v4_TED03","TED novel fold AF-A0A7S1KQY9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A63605","Percolomonas cosmopolitus"]]},{"id":"NCBITaxon:638953","l":"Georgenia soli","na":1,"nb":1,"a":[["TED%3AAF-A0A2A9EKA8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A9EKA8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A638953","Georgenia soli"]]},{"id":"NCBITaxon:640635","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A1H4KEB2-F1-model_v4_TED01","TED novel fold AF-A0A1H4KEB2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A640635","Paramicrobacterium humi"]]},{"id":"NCBITaxon:641309","l":"Lotharella oceanica","na":1,"nb":1,"a":[["TED%3AAF-A0A7S2TV18-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2TV18-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A641309","Lotharella oceanica"]]},{"id":"NCBITaxon:641491","l":"Pseudodesulfovibrio mercurii","na":1,"nb":1,"a":[["Pfam%3APF03599","CO dehydrogenase/acetyl-CoA synthase delta subunit"]],"b":[["NCBITaxon%3A641491","Pseudodesulfovibrio mercurii"]]},{"id":"NCBITaxon:641702","l":"Zhongshania antarctica","na":1,"nb":1,"a":[["TED%3AAF-A0A840R1B7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A840R1B7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A641702","Zhongshania antarctica"]]},{"id":"NCBITaxon:642776","l":"Pedococcus badiiscoriae","na":1,"nb":1,"a":[["TED%3AAF-A0A852WAS0-F1-model_v4_TED01","TED novel fold AF-A0A852WAS0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A642776","Pedococcus badiiscoriae"]]},{"id":"NCBITaxon:643052","l":"Allocatelliglobosispora scoriae","na":1,"nb":1,"a":[["TED%3AAF-A0A841BPG9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841BPG9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A643052","Allocatelliglobosispora scoriae"]]},{"id":"NCBITaxon:643403","l":"Streptomyces sp. MK730-62F2","na":1,"nb":1,"a":[["Pfam%3APF14269","Arylsulfotransferase (ASST)"]],"b":[["NCBITaxon%3A643403","Streptomyces sp. MK730-62F2"]]},{"id":"NCBITaxon:644221","l":"Arenicella xantha","na":1,"nb":1,"a":[["TED%3AAF-A0A395JN40-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A395JN40-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A644221","Arenicella xantha"]]},{"id":"NCBITaxon:644281","l":"Methanocaldococcus sp. FS406-22","na":1,"nb":1,"a":[["TED%3AAF-D3S6J5-F1-model_v4_TED01","TED highly-symmetric fold AF-D3S6J5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A644281","Methanocaldococcus sp. FS406-22"]]},{"id":"NCBITaxon:64660","l":"Lyophyllum decastes","na":1,"nb":1,"a":[["Pfam%3APF21691","Alpha-galactosyl binding lectin"]],"b":[["NCBITaxon%3A64660","Lyophyllum decastes"]]},{"id":"NCBITaxon:648782","l":"Ruania alba","na":1,"nb":1,"a":[["TED%3AAF-A0A1H5MJT8-F1-model_v4_TED01","TED novel fold AF-A0A1H5MJT8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A648782","Ruania alba"]]},{"id":"NCBITaxon:64969","l":"Oceanospirillum multiglobuliferum","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4T0G8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V4T0G8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A64969","Oceanospirillum multiglobuliferum"]]},{"id":"NCBITaxon:649760","l":"Segatella oris F0302","na":1,"nb":1,"a":[["TED%3AAF-D1QV56-F1-model_v4_TED02","TED novel fold AF-D1QV56-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A649760","Segatella oris F0302"]]},{"id":"NCBITaxon:649831","l":"","na":1,"nb":1,"a":[["TED%3AAF-R4L963-F1-model_v4_TED01","TED highly-symmetric fold AF-R4L963-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A649831","Actinoplanes sp. N902-109"]]},{"id":"NCBITaxon:65067","l":"","na":1,"nb":1,"a":[["Pfam%3APF01738","Dienelactone hydrolase family"]],"b":[["NCBITaxon%3A65067","Pseudomonas sp. P51"]]},{"id":"NCBITaxon:651869","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A317EPM9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A317EPM9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A651869","Pedobacter yonginensis"]]},{"id":"NCBITaxon:652103","l":"Rhodopseudomonas palustris DX-1","na":1,"nb":1,"a":[["TED%3AAF-E6VQ23-F1-model_v4_TED02","TED novel fold AF-E6VQ23-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A652103","Rhodopseudomonas palustris DX-1"]]},{"id":"NCBITaxon:652616","l":"","na":1,"nb":1,"a":[["Pfam%3APF03990","G5-linked-Ubiquitin-like domain"]],"b":[["NCBITaxon%3A652616","Mycobacterium tuberculosis str. Erdman = ATCC 35801"]]},{"id":"NCBITaxon:652834","l":"Palpitomonas bilix","na":1,"nb":1,"a":[["TED%3AAF-A0A7S3DJ10-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S3DJ10-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A652834","Palpitomonas bilix"]]},{"id":"NCBITaxon:655353","l":"Cohaesibacter marisflavi","na":1,"nb":1,"a":[["TED%3AAF-A0A1I5AHY1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5AHY1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A655353","Cohaesibacter marisflavi"]]},{"id":"NCBITaxon:656178","l":"Pandoraea vervacti","na":1,"nb":1,"a":[["TED%3AAF-A0A0C5JU44-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0C5JU44-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A656178","Pandoraea vervacti"]]},{"id":"NCBITaxon:657324","l":"Butyrivibrio fibrisolvens 16/4","na":1,"nb":1,"a":[["TED%3AAF-D4IWJ1-F1-model_v4_TED01","TED novel fold AF-D4IWJ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A657324","Butyrivibrio fibrisolvens 16/4"]]},{"id":"NCBITaxon:658081","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A828T3B1-F1-model_v4_TED01","TED novel fold AF-A0A828T3B1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A658081","Lachnospiraceae bacterium 1_1_57FAA"]]},{"id":"NCBITaxon:658082","l":"","na":1,"nb":1,"a":[["TED%3AAF-F7K152-F1-model_v4_TED01","TED highly-symmetric fold AF-F7K152-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A658082","Lachnospiraceae bacterium 2_1_58FAA"]]},{"id":"NCBITaxon:658083","l":"","na":1,"nb":1,"a":[["TED%3AAF-F3AG07-F1-model_v4_TED01","TED novel fold AF-F3AG07-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A658083","Lachnospiraceae bacterium 6_1_63FAA"]]},{"id":"NCBITaxon:658087","l":"","na":1,"nb":1,"a":[["TED%3AAF-H1CD99-F1-model_v4_TED01","TED novel fold AF-H1CD99-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A658087","Lachnospiraceae bacterium 7_1_58FAA"]]},{"id":"NCBITaxon:658457","l":"Ectopseudomonas composti","na":1,"nb":1,"a":[["TED%3AAF-A0A1I5P4N2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5P4N2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A658457","Ectopseudomonas composti"]]},{"id":"NCBITaxon:658473","l":"Mycena chlorophos","na":1,"nb":1,"a":[["TED%3AAF-A0A146IIG4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A146IIG4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A658473","Mycena chlorophos"]]},{"id":"NCBITaxon:658656","l":"","na":1,"nb":1,"a":[["TED%3AAF-E9RXV7-F1-model_v4_TED02","TED novel fold AF-E9RXV7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A658656","Lachnospiraceae bacterium 6_1_37FAA"]]},{"id":"NCBITaxon:659014","l":"Dyadobacter soli","na":1,"nb":1,"a":[["TED%3AAF-A0A1G7LMR8-F1-model_v4_TED01","TED novel fold AF-A0A1G7LMR8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A659014","Dyadobacter soli"]]},{"id":"NCBITaxon:659352","l":"Streptomyces sp. SN-593","na":1,"nb":1,"a":[["TED%3AAF-A0A7U3V0R8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7U3V0R8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A659352","Actinacidiphila reveromycinica"]]},{"id":"NCBITaxon:660518","l":"Halorientalis regularis","na":1,"nb":1,"a":[["TED%3AAF-A0A1G7SGU8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G7SGU8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A660518","Halorientalis regularis"]]},{"id":"NCBITaxon:660521","l":"Halogranum gelatinilyticum","na":1,"nb":1,"a":[["TED%3AAF-A0A1G9YFY0-F1-model_v4_TED01","TED novel fold AF-A0A1G9YFY0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A660521","Halogranum gelatinilyticum"]]},{"id":"NCBITaxon:661087","l":"Olsenella sp. oral taxon 809 str. F0356","na":1,"nb":1,"a":[["TED%3AAF-G5F4Y6-F1-model_v4_TED01","TED novel fold AF-G5F4Y6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A661087","Olsenella sp. oral taxon 809 str. F0356"]]},{"id":"NCBITaxon:661481","l":"Flavisolibacter ginsenosidimutans","na":1,"nb":1,"a":[["TED%3AAF-A0A5B8ULK9-F1-model_v4_TED01","TED novel fold AF-A0A5B8ULK9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A661481","Flavisolibacter ginsenosidimutans"]]},{"id":"NCBITaxon:661485","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A3N0GF74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N0GF74-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A661485","Nocardioides pocheonensis"]]},{"id":"NCBITaxon:662880","l":"Deinococcus humi","na":1,"nb":1,"a":[["TED%3AAF-A0A7W8NGF0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W8NGF0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A662880","Deinococcus humi"]]},{"id":"NCBITaxon:66374","l":"Streptomyces nojiriensis","na":1,"nb":1,"a":[["TED%3AAF-A0A8A6HBY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8A6HBY6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A66374","Streptomyces nojiriensis"]]},{"id":"NCBITaxon:663917","l":"Geobacter sulfurreducens KN400","na":1,"nb":1,"a":[["Pfam%3APF13435","Cytochrome c554 and c-prime"]],"b":[["NCBITaxon%3A663917","Geobacter sulfurreducens KN400"]]},{"id":"NCBITaxon:66425","l":"Streptomyces luteoverticillatus","na":1,"nb":1,"a":[["TED%3AAF-A0A3S9PBS5-F1-model_v4_TED01","TED novel fold AF-A0A3S9PBS5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A66425","Streptomyces luteoverticillatus"]]},{"id":"NCBITaxon:66431","l":"Streptomyces thioluteus","na":1,"nb":1,"a":[["Pfam%3APF11583","P-aminobenzoate N-oxygenase AurF"]],"b":[["NCBITaxon%3A66431","Streptomyces thioluteus"]]},{"id":"NCBITaxon:664642","l":"Winogradskyella pacifica","na":1,"nb":1,"a":[["TED%3AAF-A0A3D9LNT4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D9LNT4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A664642","Winogradskyella pacifica"]]},{"id":"NCBITaxon:664692","l":"Amycolatopsis pithecellobii","na":1,"nb":1,"a":[["TED%3AAF-A0A6N7YX54-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N7YX54-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A664692","Amycolatopsis pithecellobii"]]},{"id":"NCBITaxon:665952","l":"","na":1,"nb":1,"a":[["TED%3AAF-G9QHT9-F1-model_v4_TED01","TED novel fold AF-G9QHT9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A665952","Bacillus smithii 7_3_47FAA"]]},{"id":"NCBITaxon:670079","l":"Paeniglutamicibacter cryotolerans","na":1,"nb":1,"a":[["TED%3AAF-A0A839QL01-F1-model_v4_TED02","TED novel fold AF-A0A839QL01-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A670079","Paeniglutamicibacter cryotolerans"]]},{"id":"NCBITaxon:670154","l":"Litoreibacter janthinus","na":1,"nb":1,"a":[["TED%3AAF-A0A1I6H8Z4-F1-model_v4_TED01","TED novel fold AF-A0A1I6H8Z4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A670154","Litoreibacter janthinus"]]},{"id":"NCBITaxon:670155","l":"Litoreibacter albidus","na":1,"nb":1,"a":[["TED%3AAF-A0A1H3D3B7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1H3D3B7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A670155","Litoreibacter albidus"]]},{"id":"NCBITaxon:670289","l":"Adhaeribacter aerolatus","na":1,"nb":1,"a":[["TED%3AAF-A0A512ASX5-F1-model_v4_TED02","TED novel fold AF-A0A512ASX5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A670289","Adhaeribacter aerolatus"]]},{"id":"NCBITaxon:670307","l":"Hyphomicrobium denitrificans 1NES1","na":1,"nb":1,"a":[["TED%3AAF-N0B293-F1-model_v4_TED01","TED novel fold AF-N0B293-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A670307","Hyphomicrobium denitrificans 1NES1"]]},{"id":"NCBITaxon:67081","l":"Mycolicibacterium alvei","na":1,"nb":1,"a":[["TED%3AAF-A0A6N4UYN8-F1-model_v4_TED01","TED novel fold AF-A0A6N4UYN8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A67081","Mycolicibacterium alvei"]]},{"id":"NCBITaxon:671072","l":"Planktothrix tepida PCC 9214","na":1,"nb":1,"a":[["TED%3AAF-A0A1J1LHF8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1J1LHF8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A671072","Planktothrix tepida PCC 9214"]]},{"id":"NCBITaxon:671144","l":"","na":1,"nb":1,"a":[["TED%3AAF-I4Y6Q3-F1-model_v4_TED01","TED novel fold AF-I4Y6Q3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A671144","Wallemia mellicola CBS 633.66"]]},{"id":"NCBITaxon:67339","l":"Streptomyces orinoci","na":1,"nb":1,"a":[["Pfam%3APF09277","Erythronolide synthase, docking"]],"b":[["NCBITaxon%3A67339","Streptomyces orinoci"]]},{"id":"NCBITaxon:674703","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A127EZQ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A127EZQ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A674703","Rugositalea oryzae"]]},{"id":"NCBITaxon:676965","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2T0AME3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2T0AME3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A676965","Neomoorella humiferrea"]]},{"id":"NCBITaxon:67723","l":"Amanita phalloides","na":1,"nb":1,"a":[["Pfam%3APF24112","Amanitin toxin"]],"b":[["NCBITaxon%3A67723","Amanita phalloides"]]},{"id":"NCBITaxon:678601","l":"Staphylococcus sp. CDC3","na":1,"nb":1,"a":[["TED%3AAF-D2J704-F1-model_v4_TED01","TED novel fold AF-D2J704-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A678601","Staphylococcus sp. CDC3"]]},{"id":"NCBITaxon:679191","l":"Prevotella amnii CRIS 21A-A","na":1,"nb":1,"a":[["TED%3AAF-E1GW40-F1-model_v4_TED02","TED highly-symmetric fold AF-E1GW40-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A679191","Prevotella amnii CRIS 21A-A"]]},{"id":"NCBITaxon:679199","l":"Alloprevotella rava F0323","na":1,"nb":1,"a":[["TED%3AAF-G5GDR7-F1-model_v4_TED02","TED novel fold AF-G5GDR7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A679199","Alloprevotella rava F0323"]]},{"id":"NCBITaxon:68044","l":"Streptomyces libani subsp. libani","na":1,"nb":1,"a":[["TED%3AAF-A0A640TLY2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A640TLY2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1920","Streptomyces nigrescens"]]},{"id":"NCBITaxon:681627","l":"Micrococcus sp. TA1","na":1,"nb":1,"a":[["TED%3AAF-A0A7W9CR57-F1-model_v4_TED01","TED novel fold AF-A0A7W9CR57-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A681627","Micrococcus sp. TA1"]]},{"id":"NCBITaxon:68223","l":"Streptomyces katrae","na":1,"nb":1,"a":[["TED%3AAF-A0A0F4IUW3-F1-model_v4_TED02","TED novel fold AF-A0A0F4IUW3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A68223","Streptomyces katrae"]]},{"id":"NCBITaxon:68231","l":"Streptomyces longwoodensis","na":1,"nb":1,"a":[["TED%3AAF-A0A117QN81-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A117QN81-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A68231","Streptomyces longwoodensis"]]},{"id":"NCBITaxon:686389","l":"Ruegeria faecimaris","na":1,"nb":1,"a":[["TED%3AAF-A0A521DJY9-F1-model_v4_TED01","TED novel fold AF-A0A521DJY9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A686389","Ruegeria faecimaris"]]},{"id":"NCBITaxon:686666","l":"Bombiscardovia coagulans","na":1,"nb":1,"a":[["TED%3AAF-A0A261EVD5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A261EVD5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A686666","Bombiscardovia coagulans"]]},{"id":"NCBITaxon:686796","l":"Algoriphagus faecimaris","na":1,"nb":1,"a":[["TED%3AAF-A0A1G6UW39-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G6UW39-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A686796","Algoriphagus faecimaris"]]},{"id":"NCBITaxon:687207","l":"Spinactinospora alkalitolerans","na":1,"nb":1,"a":[["TED%3AAF-A0A852U571-F1-model_v4_TED01","TED novel fold AF-A0A852U571-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A687207","Spinactinospora alkalitolerans"]]},{"id":"NCBITaxon:688245","l":"","na":1,"nb":1,"a":[["TED%3AAF-D0IY66-F1-model_v4_TED01","TED novel fold AF-D0IY66-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A688245","Comamonas testosteroni CNB-2"]]},{"id":"NCBITaxon:688867","l":"Ohtaekwangia koreensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1T5MFB7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1T5MFB7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A688867","Ohtaekwangia koreensis"]]},{"id":"NCBITaxon:69011","l":"","na":1,"nb":1,"a":[["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"]],"b":[["NCBITaxon%3A69011","Pseudomonas sp. C18"]]},{"id":"NCBITaxon:69222","l":"Erwinia mallotivora","na":1,"nb":1,"a":[["TED%3AAF-A0A014LYI4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A014LYI4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A69222","Erwinia mallotivora"]]},{"id":"NCBITaxon:692370","l":"Tsuneonella dongtanensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1B2A8X4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B2A8X4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A692370","Tsuneonella dongtanensis"]]},{"id":"NCBITaxon:692418","l":"Reichenbachiella faecimaris","na":1,"nb":1,"a":[["TED%3AAF-A0A1W2GN32-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W2GN32-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A692418","Reichenbachiella faecimaris"]]},{"id":"NCBITaxon:69362","l":"Microbacterium schleiferi","na":1,"nb":1,"a":[["TED%3AAF-A0A7S8RHS8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S8RHS8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A69362","Microbacterium schleiferi"]]},{"id":"NCBITaxon:69392","l":"Stenotrophomonas sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A6N8APF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8APF4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A69392","Stenotrophomonas sp."]]},{"id":"NCBITaxon:69656","l":"Sulfurisphaera ohwakuensis","na":1,"nb":1,"a":[["TED%3AAF-A0A650CK52-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A650CK52-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A69656","Sulfurisphaera ohwakuensis"]]},{"id":"NCBITaxon:696762","l":"Planktotalea frisia","na":1,"nb":1,"a":[["TED%3AAF-A0A1L9NVP8-F1-model_v4_TED01","TED novel fold AF-A0A1L9NVP8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A696762","Planktotalea frisia"]]},{"id":"NCBITaxon:69771","l":"Penicillium decumbens","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6PJ92-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V6PJ92-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A69771","Penicillium decumbens"]]},{"id":"NCBITaxon:69774","l":"Penicillium herquei","na":1,"nb":1,"a":[["Pfam%3APF11578","Protein of unknown function (DUF3237)"]],"b":[["NCBITaxon%3A69774","Penicillium herquei"]]},{"id":"NCBITaxon:698760","l":"Streptomyces turgidiscabies Car8","na":1,"nb":1,"a":[["TED%3AAF-L7F7V3-F1-model_v4_TED02","TED highly-symmetric fold AF-L7F7V3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A698760","Streptomyces turgidiscabies Car8"]]},{"id":"NCBITaxon:698960","l":"","na":1,"nb":1,"a":[["TED%3AAF-I4M7N5-F1-model_v4_TED02","TED novel fold AF-I4M7N5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A698960","Gardnerella greenwoodii 00703Dmash"]]},{"id":"NCBITaxon:698964","l":"","na":1,"nb":1,"a":[["Pfam%3APF18357","Diphteria toxin repressor SH3 domain"]],"b":[["NCBITaxon%3A698964","Corynebacterium diphtheriae PW8"]]},{"id":"NCBITaxon:699433","l":"Halobellus limi","na":1,"nb":1,"a":[["TED%3AAF-A0A1H6AHR3-F1-model_v4_TED03","TED novel fold AF-A0A1H6AHR3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A699433","Halobellus limi"]]},{"id":"NCBITaxon:69964","l":"Azotobacter salinestris","na":1,"nb":1,"a":[["Pfam%3APF03139","Vanadium/alternative nitrogenase delta subunit"]],"b":[["NCBITaxon%3A69964","Azotobacter salinestris"]]},{"id":"NCBITaxon:69969","l":"Macrococcus carouselicus","na":1,"nb":1,"a":[["TED%3AAF-A0A4R6BCC8-F1-model_v4_TED01","TED novel fold AF-A0A4R6BCC8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A69969","Macrococcus carouselicus"]]},{"id":"NCBITaxon:700599","l":"Streptomyces lonarensis","na":1,"nb":1,"a":[["TED%3AAF-A0A7X6I180-F1-model_v4_TED02","TED novel fold AF-A0A7X6I180-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A700599","Streptomyces lonarensis"]]},{"id":"NCBITaxon:702459","l":"Bifidobacterium bifidum PRL2010","na":1,"nb":1,"a":[["TED%3AAF-A0A0H3E8C8-F1-model_v4_TED01","TED novel fold AF-A0A0H3E8C8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A702459","Bifidobacterium bifidum PRL2010"]]},{"id":"NCBITaxon:703756","l":"Colletotrichum simmondsii","na":1,"nb":1,"a":[["TED%3AAF-A0A135SIS0-F1-model_v4_TED01","TED novel fold AF-A0A135SIS0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A703756","Colletotrichum simmondsii"]]},{"id":"NCBITaxon:708113","l":"Terrihabitans soli","na":1,"nb":1,"a":[["TED%3AAF-A0A6S6QVM7-F1-model_v4_TED02","TED novel fold AF-A0A6S6QVM7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A708113","Terrihabitans soli"]]},{"id":"NCBITaxon:708197","l":"Colletotrichum tofieldiae","na":1,"nb":1,"a":[["TED%3AAF-A0A166YTK0-F1-model_v4_TED01","TED novel fold AF-A0A166YTK0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A708197","Colletotrichum tofieldiae"]]},{"id":"NCBITaxon:708627","l":"Timspurckia oligopyrenoides","na":1,"nb":1,"a":[["TED%3AAF-A0A6T6NS67-F1-model_v4_TED01","TED novel fold AF-A0A6T6NS67-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A708627","Timspurckia oligopyrenoides"]]},{"id":"NCBITaxon:709839","l":"Noviherbaspirillum autotrophicum","na":1,"nb":1,"a":[["TED%3AAF-A0A0C2BU50-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0C2BU50-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A709839","Noviherbaspirillum autotrophicum"]]},{"id":"NCBITaxon:709868","l":"Micromonospora ureilytica","na":1,"nb":1,"a":[["TED%3AAF-A0A3N9Y1R3-F1-model_v4_TED01","TED novel fold AF-A0A3N9Y1R3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A709868","Micromonospora ureilytica"]]},{"id":"NCBITaxon:712528","l":"Selenomonas sp. oral taxon 126","na":1,"nb":1,"a":[["TED%3AAF-A0A1B1I4K0-F1-model_v4_TED02","TED novel fold AF-A0A1B1I4K0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A712528","Selenomonas sp. oral taxon 126"]]},{"id":"NCBITaxon:713054","l":"TM7 phylum sp. oral taxon 352","na":1,"nb":1,"a":[["TED%3AAF-A0A563CU50-F1-model_v4_TED02","TED novel fold AF-A0A563CU50-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A713054","TM7 phylum sp. oral taxon 352"]]},{"id":"NCBITaxon:713588","l":"Kaistella chaponensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1N7M6E6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1N7M6E6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A713588","Kaistella chaponensis"]]},{"id":"NCBITaxon:714109","l":"Phytomonospora endophytica","na":1,"nb":1,"a":[["TED%3AAF-A0A841FHS0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841FHS0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A714109","Phytomonospora endophytica"]]},{"id":"NCBITaxon:714307","l":"Salinicoccus kekensis","na":1,"nb":1,"a":[["TED%3AAF-A0A285UCB1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A285UCB1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A714307","Salinicoccus kekensis"]]},{"id":"NCBITaxon:714359","l":"","na":1,"nb":1,"a":[["Pfam%3APF10372","Diadenylate cyclase CdaS, N-terminal"]],"b":[["NCBITaxon%3A714359","Bacillus thuringiensis BMB171"]]},{"id":"NCBITaxon:71517","l":"","na":1,"nb":1,"a":[["Pfam%3APF22370","Flagellin, beta sheet domain"]],"b":[["NCBITaxon%3A71517","Salmonella enterica subsp. enterica serovar Naestved"]]},{"id":"NCBITaxon:716813","l":"Psychrosphaera saromensis","na":1,"nb":1,"a":[["TED%3AAF-A0A2S7UY79-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S7UY79-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A716813","Psychrosphaera saromensis"]]},{"id":"NCBITaxon:716816","l":"Oceanicoccus sagamiensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1X9ND04-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X9ND04-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A716816","Oceanicoccus sagamiensis"]]},{"id":"NCBITaxon:71717","l":"Coprinellus micaceus","na":1,"nb":1,"a":[["TED%3AAF-A0A4Y7TIK8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y7TIK8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A71717","Coprinellus micaceus"]]},{"id":"NCBITaxon:71784","l":"Naematelia encephala","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y2BG45-F1-model_v4_TED01","TED novel fold AF-A0A1Y2BG45-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A71784","Naematelia encephala"]]},{"id":"NCBITaxon:717961","l":"[Eubacterium] siraeum V10Sc8a","na":1,"nb":1,"a":[["TED%3AAF-D4MLV9-F1-model_v4_TED02","TED novel fold AF-D4MLV9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A717961","[Eubacterium] siraeum V10Sc8a"]]},{"id":"NCBITaxon:718192","l":"Litorilituus sediminis","na":1,"nb":1,"a":[["TED%3AAF-A0A4P6P0V5-F1-model_v4_TED02","TED novel fold AF-A0A4P6P0V5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A718192","Litorilituus sediminis"]]},{"id":"NCBITaxon:718252","l":"Faecalibacterium prausnitzii L2-6","na":1,"nb":1,"a":[["TED%3AAF-D4JYM3-F1-model_v4_TED01","TED novel fold AF-D4JYM3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A718252","Faecalibacterium prausnitzii L2-6"]]},{"id":"NCBITaxon:722","l":"Actinobacillus seminis","na":1,"nb":1,"a":[["TED%3AAF-A0A263HFT1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A263HFT1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A722","Actinobacillus seminis"]]},{"id":"NCBITaxon:722472","l":"Bradyrhizobium lablabi","na":1,"nb":1,"a":[["TED%3AAF-A0A2H9VHY8-F1-model_v4_TED01","TED novel fold AF-A0A2H9VHY8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A722472","Bradyrhizobium lablabi"]]},{"id":"NCBITaxon:72559","l":"Sporisorium reilianum f. sp. reilianum","na":1,"nb":1,"a":[["TED%3AAF-A0A2N8U7J1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N8U7J1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A72559","Sporisorium reilianum f. sp. reilianum"]]},{"id":"NCBITaxon:72582","l":"","na":1,"nb":1,"a":[["Pfam%3APF09137","Glucodextranase, domain N"]],"b":[["NCBITaxon%3A72582","Clostridium sp. G0005"]]},{"id":"NCBITaxon:72588","l":"","na":1,"nb":1,"a":[["Pfam%3APF21331","Isoamylase, C-terminal"]],"b":[["NCBITaxon%3A72588","Pseudomonas sp. SMP1"]]},{"id":"NCBITaxon:72803","l":"Thermococcus siculi","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z2MNQ0-F1-model_v4_TED02","TED novel fold AF-A0A2Z2MNQ0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A72803","Thermococcus siculi"]]},{"id":"NCBITaxon:732238","l":"Povalibacter uvarum","na":1,"nb":1,"a":[["TED%3AAF-A0A841HPM8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841HPM8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A732238","Povalibacter uvarum"]]},{"id":"NCBITaxon:742013","l":"Delftia sp. Cs1-4","na":1,"nb":1,"a":[["TED%3AAF-F6AQI2-F1-model_v4_TED01","TED highly-symmetric fold AF-F6AQI2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A742013","Delftia sp. Cs1-4"]]},{"id":"NCBITaxon:742159","l":"Achromobacter piechaudii ATCC 43553","na":1,"nb":1,"a":[["TED%3AAF-D4X3P5-F1-model_v4_TED01","TED highly-symmetric fold AF-D4X3P5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A742159","Achromobacter piechaudii ATCC 43553"]]},{"id":"NCBITaxon:742722","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A096LKL7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A096LKL7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A742722","Collinsella sp. 4_8_47FAA"]]},{"id":"NCBITaxon:742740","l":"","na":1,"nb":1,"a":[["Pfam%3APF12641","Flavodoxin domain"]],"b":[["NCBITaxon%3A742740","[Clostridium] symbiosum WAL-14163"]]},{"id":"NCBITaxon:742823","l":"","na":1,"nb":1,"a":[["TED%3AAF-K1JL38-F1-model_v4_TED02","TED highly-symmetric fold AF-K1JL38-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A742823","Sutterella wadsworthensis 2_1_59BFAA"]]},{"id":"NCBITaxon:74316","l":"Brevundimonas aurantiaca","na":1,"nb":1,"a":[["TED%3AAF-A0A7W9C3G8-F1-model_v4_TED03","TED novel fold AF-A0A7W9C3G8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A74316","Brevundimonas aurantiaca"]]},{"id":"NCBITaxon:74329","l":"Brevundimonas mediterranea","na":1,"nb":1,"a":[["TED%3AAF-A0A7Z8Y2I5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Z8Y2I5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A74329","Brevundimonas mediterranea"]]},{"id":"NCBITaxon:743525","l":"","na":1,"nb":1,"a":[["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"]],"b":[["NCBITaxon%3A743525","Thermus scotoductus SA-01"]]},{"id":"NCBITaxon:744515","l":"Treponema ruminis","na":1,"nb":1,"a":[["TED%3AAF-A0A7W8LMF9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W8LMF9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A744515","Treponema ruminis"]]},{"id":"NCBITaxon:745369","l":"Acetoanaerobium noterae","na":1,"nb":1,"a":[["TED%3AAF-A0A1T5D7K1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1T5D7K1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A745369","Acetoanaerobium noterae"]]},{"id":"NCBITaxon:745408","l":"Rhodococcus sp. JVH1","na":1,"nb":1,"a":[["TED%3AAF-J1R3G3-F1-model_v4_TED01","TED novel fold AF-J1R3G3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A745408","Rhodococcus sp. JVH1"]]},{"id":"NCBITaxon:74547","l":"Prochlorococcus marinus str. MIT 9313","na":1,"nb":1,"a":[["Pfam%3APF11266","Long-chain fatty aldehyde decarbonylase"]],"b":[["NCBITaxon%3A74547","Prochlorococcus marinus str. MIT 9313"]]},{"id":"NCBITaxon:74576","l":"","na":1,"nb":1,"a":[["Pfam%3APF22500","GMC oxidoreductase, C-terminal"]],"b":[["NCBITaxon%3A74576","Streptomyces sp. SA-COO"]]},{"id":"NCBITaxon:746361","l":"","na":1,"nb":1,"a":[["Pfam%3APF12822","ECF transporter, substrate-specific component"]],"b":[["NCBITaxon%3A746361","Lactococcus cremoris subsp. cremoris NZ9000"]]},{"id":"NCBITaxon:74722","l":"Stachybotrys chartarum","na":1,"nb":1,"a":[["Pfam%3APF25484","Domain of unknown function (DUF7907)"]],"b":[["NCBITaxon%3A74722","Stachybotrys chartarum"]]},{"id":"NCBITaxon:747457","l":"Pseudoalteromonas sp. SANK 73390","na":1,"nb":1,"a":[["Pfam%3APF18014","Acetyltransferase (GNAT) domain"]],"b":[["NCBITaxon%3A747457","Pseudoalteromonas sp. SANK 73390"]]},{"id":"NCBITaxon:749508","l":"Enterococcus faecalis TX0630","na":1,"nb":1,"a":[["TED%3AAF-E6ETC9-F1-model_v4_TED01","TED novel fold AF-E6ETC9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A749508","Enterococcus faecalis TX0630"]]},{"id":"NCBITaxon:749593","l":"Epicoccum sorghinum","na":1,"nb":1,"a":[["Pfam%3APF17660","Polyglycine hydrolase-like, structural repeat"]],"b":[["NCBITaxon%3A749593","Epicoccum sorghinum"]]},{"id":"NCBITaxon:74969","l":"Ferroplasma acidiphilum","na":1,"nb":1,"a":[["TED%3AAF-A0A7K4FNL3-F1-model_v4_TED01","TED novel fold AF-A0A7K4FNL3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A74969","Ferroplasma acidiphilum"]]},{"id":"NCBITaxon:755","l":"Avibacterium gallinarum","na":1,"nb":1,"a":[["TED%3AAF-A0A379AXK5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A379AXK5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A755","Avibacterium gallinarum"]]},{"id":"NCBITaxon:755731","l":"Clostridium sp. BNL1100","na":1,"nb":1,"a":[["TED%3AAF-H2JEL4-F1-model_v4_TED02","TED highly-symmetric fold AF-H2JEL4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A755731","Clostridium sp. BNL1100"]]},{"id":"NCBITaxon:756067","l":"Microcoleus vaginatus FGP-2","na":1,"nb":1,"a":[["TED%3AAF-F5UCE7-F1-model_v4_TED03","TED highly-symmetric fold AF-F5UCE7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A756067","Microcoleus vaginatus FGP-2"]]},{"id":"NCBITaxon:75736","l":"Starmerella bombicola","na":1,"nb":1,"a":[["Pfam%3APF12464","Maltose acetyltransferase hexapeptide capping motif"]],"b":[["NCBITaxon%3A75736","Starmerella bombicola"]]},{"id":"NCBITaxon:758802","l":"Mycolicibacterium litorale","na":1,"nb":1,"a":[["TED%3AAF-A0A6S6P2X7-F1-model_v4_TED01","TED novel fold AF-A0A6S6P2X7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A758802","Mycolicibacterium litorale"]]},{"id":"NCBITaxon:758825","l":"Rugamonas rubra","na":1,"nb":1,"a":[["TED%3AAF-A0A1I4M4R3-F1-model_v4_TED02","TED novel fold AF-A0A1I4M4R3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A758825","Rugamonas rubra"]]},{"id":"NCBITaxon:761204","l":"","na":1,"nb":1,"a":[["TED%3AAF-W2Q6Q6-F1-model_v4_TED02","TED novel fold AF-W2Q6Q6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A761204","Phytophthora nicotianae INRA-310"]]},{"id":"NCBITaxon:761659","l":"Salinibacter ruber M8","na":1,"nb":1,"a":[["TED%3AAF-D5H5E0-F1-model_v4_TED03","TED novel fold AF-D5H5E0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A761659","Salinibacter ruber M8"]]},{"id":"NCBITaxon:762211","l":"Bifidobacterium stellenboschense","na":1,"nb":1,"a":[["TED%3AAF-A0A087DBT3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A087DBT3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A762211","Bifidobacterium stellenboschense"]]},{"id":"NCBITaxon:762486","l":"Lutibacter oricola","na":1,"nb":1,"a":[["TED%3AAF-A0A1H2TDM1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H2TDM1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A762486","Lutibacter oricola"]]},{"id":"NCBITaxon:763407","l":"","na":1,"nb":1,"a":[["Pfam%3APF27434","3-isopropylmalate dehydratase small subunit C-terminal domain"]],"b":[["NCBITaxon%3A763407","Phycomyces blakesleeanus NRRL 1555(-)"]]},{"id":"NCBITaxon:765888","l":"Nitrospirillum iridis","na":1,"nb":1,"a":[["TED%3AAF-A0A7X0AVV1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X0AVV1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A765888","Nitrospirillum iridis"]]},{"id":"NCBITaxon:766136","l":"Desulfuribacillus alkaliarsenatis","na":1,"nb":1,"a":[["TED%3AAF-A0A1E5G4X4-F1-model_v4_TED01","TED novel fold AF-A0A1E5G4X4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A766136","Desulfuribacillus alkaliarsenatis"]]},{"id":"NCBITaxon:766140","l":"Shigella boydii 4444-74","na":1,"nb":1,"a":[["TED%3AAF-I6EFI0-F1-model_v4_TED02","TED highly-symmetric fold AF-I6EFI0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A766140","Shigella boydii 4444-74"]]},{"id":"NCBITaxon:766760","l":"Bacillus paralicheniformis ATCC 9945a","na":1,"nb":1,"a":[["Pfam%3APF24957","DISARM protein DrmE, C-terminal domain"]],"b":[["NCBITaxon%3A766760","Bacillus paralicheniformis ATCC 9945a"]]},{"id":"NCBITaxon:76731","l":"Roseateles depolymerans","na":1,"nb":1,"a":[["TED%3AAF-A0A0U3N3L4-F1-model_v4_TED02","TED novel fold AF-A0A0U3N3L4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A76731","Roseateles depolymerans"]]},{"id":"NCBITaxon:768556","l":"uncultured Solirubrobacterales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A6J4SFU3-F1-model_v4_TED01","TED novel fold AF-A0A6J4SFU3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A768556","uncultured Solirubrobacterales bacterium"]]},{"id":"NCBITaxon:76869","l":"","na":1,"nb":1,"a":[["Pfam%3APF21724","Family of unknown function (DUF6861)"]],"b":[["NCBITaxon%3A76869","Pseudomonas putida GB-1"]]},{"id":"NCBITaxon:78410","l":"Neonectria ditissima","na":1,"nb":1,"a":[["TED%3AAF-A0A0P7AKS8-F1-model_v4_TED02","TED novel fold AF-A0A0P7AKS8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A78410","Neonectria ditissima"]]},{"id":"NCBITaxon:78915","l":"Thamnocephalis sphaerospora","na":1,"nb":1,"a":[["TED%3AAF-A0A4V1IVX3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4V1IVX3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A78915","Thamnocephalis sphaerospora"]]},{"id":"NCBITaxon:794903","l":"Opitutaceae bacterium TAV5","na":1,"nb":1,"a":[["TED%3AAF-W0J1Y7-F1-model_v4_TED01","TED highly-symmetric fold AF-W0J1Y7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A794903","Opitutaceae bacterium TAV5"]]},{"id":"NCBITaxon:795812","l":"Parerythrobacter jejuensis","na":1,"nb":1,"a":[["TED%3AAF-A0A845AW31-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A845AW31-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A795812","Parerythrobacter jejuensis"]]},{"id":"NCBITaxon:79671","l":"","na":1,"nb":1,"a":[["Pfam%3APF16483","Beta-1,3-glucanase"]],"b":[["NCBITaxon%3A79671","Arthrobacter sp. YCWD3"]]},{"id":"NCBITaxon:79676","l":"","na":1,"nb":1,"a":[["Pfam%3APF09290","Prokaryotic acetaldehyde dehydrogenase, dimerisation"]],"b":[["NCBITaxon%3A79676","Pseudomonas sp. CF600"]]},{"id":"NCBITaxon:796937","l":"Peptoanaerobacter stomatis","na":1,"nb":1,"a":[["TED%3AAF-G9XC71-F1-model_v4_TED01","TED novel fold AF-G9XC71-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A796937","Peptoanaerobacter stomatis"]]},{"id":"NCBITaxon:797292","l":"Sphingobacterium alimentarium","na":1,"nb":1,"a":[["TED%3AAF-A0A4R3VZ52-F1-model_v4_TED08","TED novel fold AF-A0A4R3VZ52-F1-model_v4_TED08"]],"b":[["NCBITaxon%3A797292","Sphingobacterium alimentarium"]]},{"id":"NCBITaxon:82801","l":"Desemzia incerta","na":1,"nb":1,"a":[["TED%3AAF-A0A1I5VU87-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I5VU87-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A82801","Desemzia incerta"]]},{"id":"NCBITaxon:83462","l":"Corallococcus exiguus","na":1,"nb":1,"a":[["TED%3AAF-A0A7X4Y983-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X4Y983-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A83462","Corallococcus exiguus"]]},{"id":"NCBITaxon:83637","l":"Bradyrhizobium genosp. L","na":1,"nb":1,"a":[["TED%3AAF-A0A7S9CP95-F1-model_v4_TED02","TED novel fold AF-A0A7S9CP95-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A83637","Bradyrhizobium genosp. L"]]},{"id":"NCBITaxon:84029","l":"-","na":1,"nb":1,"a":[["TED%3AAF-A0A1S8KXX0-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A1S8KXX0-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A36839","Clostridium felsineum"]]},{"id":"NCBITaxon:84139","l":"Gordonia sp. (in: high G+C Gram-positive bacteria)","na":1,"nb":1,"a":[["TED%3AAF-A0A2E1G3V1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E1G3V1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A84139","Gordonia sp. (in: high G+C Gram-positive bacteria)"]]},{"id":"NCBITaxon:84724","l":"Lentzea waywayandensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1I6FJL8-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1I6FJL8-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A84724","Lentzea waywayandensis"]]},{"id":"NCBITaxon:84725","l":"Umezawaea tangerina","na":1,"nb":1,"a":[["TED%3AAF-A0A2T0SS74-F1-model_v4_TED01","TED novel fold AF-A0A2T0SS74-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A84725","Umezawaea tangerina"]]},{"id":"NCBITaxon:856736","l":"Deinococcus reticulitermitis","na":1,"nb":1,"a":[["TED%3AAF-A0A1H7CAH4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H7CAH4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A856736","Deinococcus reticulitermitis"]]},{"id":"NCBITaxon:856793","l":"","na":1,"nb":1,"a":[["TED%3AAF-G2KLZ0-F1-model_v4_TED01","TED novel fold AF-G2KLZ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A856793","Micavibrio aeruginosavorus ARL-13"]]},{"id":"NCBITaxon:856822","l":"Fonsecaea nubica","na":1,"nb":1,"a":[["TED%3AAF-A0A178C6J8-F1-model_v4_TED01","TED novel fold AF-A0A178C6J8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A856822","Fonsecaea nubica"]]},{"id":"NCBITaxon:858221","l":"Trichoderma parareesei","na":1,"nb":1,"a":[["TED%3AAF-A0A2H2ZVN3-F1-model_v4_TED01","TED novel fold AF-A0A2H2ZVN3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A858221","Trichoderma parareesei"]]},{"id":"NCBITaxon:858422","l":"Bradyrhizobium sp. CCBAU 051011","na":1,"nb":1,"a":[["TED%3AAF-A0A7Z2SPQ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Z2SPQ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A858422","Bradyrhizobium sp. CCBAU 051011"]]},{"id":"NCBITaxon:858640","l":"Photobacterium jeanii","na":1,"nb":1,"a":[["TED%3AAF-A0A178KKM2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A178KKM2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A858640","Photobacterium jeanii"]]},{"id":"NCBITaxon:859653","l":"alpha proteobacterium HIMB5","na":1,"nb":1,"a":[["TED%3AAF-J9YWK1-F1-model_v4_TED01","TED highly-symmetric fold AF-J9YWK1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A859653","alpha proteobacterium HIMB5"]]},{"id":"NCBITaxon:860243","l":"Nocardioides panzhihuensis","na":1,"nb":1,"a":[["TED%3AAF-A0A7Z0DQT6-F1-model_v4_TED02","TED novel fold AF-A0A7Z0DQT6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A860243","Nocardioides panzhihuensis"]]},{"id":"NCBITaxon:86035","l":"","na":1,"nb":1,"a":[["Pfam%3APF02333","Phytase"]],"b":[["NCBITaxon%3A86035","Bacillus sp. DS11"]]},{"id":"NCBITaxon:86038","l":"","na":1,"nb":1,"a":[["Pfam%3APF14592","Chondroitinase B"]],"b":[["NCBITaxon%3A86038","Pseudomonas sp. OS-ALG-9"]]},{"id":"NCBITaxon:861266","l":"Pseudarthrobacter siccitolerans","na":1,"nb":1,"a":[["TED%3AAF-A0A024H200-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A024H200-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A861266","Pseudarthrobacter siccitolerans"]]},{"id":"NCBITaxon:861865","l":"Edaphosphingomonas laterariae","na":1,"nb":1,"a":[["TED%3AAF-A0A239BGP1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A239BGP1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A861865","Edaphosphingomonas laterariae"]]},{"id":"NCBITaxon:862126","l":"Mucilaginibacter ginsenosidivorax","na":1,"nb":1,"a":[["TED%3AAF-A0A5B8W6T2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B8W6T2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A862126","Mucilaginibacter ginsenosidivorax"]]},{"id":"NCBITaxon:862751","l":"","na":1,"nb":1,"a":[["Pfam%3APF27525","LAM55 pectate lyase-like domain"]],"b":[["NCBITaxon%3A862751","Streptomyces sp. SirexAA-E"]]},{"id":"NCBITaxon:863522","l":"Bryocella elongata","na":1,"nb":1,"a":[["TED%3AAF-A0A1H5ZBZ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H5ZBZ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A863522","Bryocella elongata"]]},{"id":"NCBITaxon:864828","l":"Pseudoduganella umbonata","na":1,"nb":1,"a":[["TED%3AAF-A0A4P8HHX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P8HHX4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A864828","Pseudoduganella umbonata"]]},{"id":"NCBITaxon:86630","l":"Rhizopus azygosporus","na":1,"nb":1,"a":[["TED%3AAF-A0A367INI1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A367INI1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A86630","Rhizopus azygosporus"]]},{"id":"NCBITaxon:868131","l":"","na":1,"nb":1,"a":[["TED%3AAF-F6D859-F1-model_v4_TED01","TED highly-symmetric fold AF-F6D859-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A868131","Methanobacterium paludis"]]},{"id":"NCBITaxon:869675","l":"Escherichia coli 1.2264","na":1,"nb":1,"a":[["TED%3AAF-I2SNR3-F1-model_v4_TED01","TED highly-symmetric fold AF-I2SNR3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A869675","Escherichia coli 1.2264"]]},{"id":"NCBITaxon:869754","l":"Metschnikowia bicuspidata var. bicuspidata NRRL YB-4993","na":1,"nb":1,"a":[["TED%3AAF-A0A1A0HIK0-F1-model_v4_TED01","TED novel fold AF-A0A1A0HIK0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A869754","Metschnikowia bicuspidata var. bicuspidata NRRL YB-4993"]]},{"id":"NCBITaxon:871585","l":"","na":1,"nb":1,"a":[["Pfam%3APF22290","Dimethylamine monooxygenase subunit DmmA-like, N-terminal domain"]],"b":[["NCBITaxon%3A871585","Acinetobacter pittii PHEA-2"]]},{"id":"NCBITaxon:871741","l":"Brevundimonas viscosa","na":1,"nb":1,"a":[["TED%3AAF-A0A1I6NPZ5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I6NPZ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A871741","Brevundimonas viscosa"]]},{"id":"NCBITaxon:872965","l":"Ardenticatena maritima","na":1,"nb":1,"a":[["TED%3AAF-A0A0M9UCT0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0M9UCT0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A872965","Ardenticatena maritima"]]},{"id":"NCBITaxon:872970","l":"Amphibacillus marinus","na":1,"nb":1,"a":[["TED%3AAF-A0A1H8TVF9-F1-model_v4_TED02","TED novel fold AF-A0A1H8TVF9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A872970","Amphibacillus marinus"]]},{"id":"NCBITaxon:872983","l":"Metamycoplasma neophronis","na":1,"nb":1,"a":[["TED%3AAF-A0A505IVY3-F1-model_v4_TED03","TED novel fold AF-A0A505IVY3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A872983","Metamycoplasma neophronis"]]},{"id":"NCBITaxon:873128","l":"Meiothermus sp. Pnk-1","na":1,"nb":1,"a":[["TED%3AAF-A0A323U337-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A323U337-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A873128","Meiothermus sp. Pnk-1"]]},{"id":"NCBITaxon:875330","l":"Pseudomonas savastanoi pv. glycinea str. race 4","na":1,"nb":1,"a":[["TED%3AAF-F3CC35-F1-model_v4_TED01","TED highly-symmetric fold AF-F3CC35-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A875330","Pseudomonas savastanoi pv. glycinea str. race 4"]]},{"id":"NCBITaxon:875932","l":"Photobacterium sanguinicancri","na":1,"nb":1,"a":[["TED%3AAF-A0A264TE15-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A264TE15-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A875932","Photobacterium sanguinicancri"]]},{"id":"NCBITaxon:876091","l":"uncultured Oscillibacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A1C5WBD3-F1-model_v4_TED01","TED novel fold AF-A0A1C5WBD3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A876091","uncultured Oscillibacter sp."]]},{"id":"NCBITaxon:878220","l":"Chryseobacterium sp. StRB126","na":1,"nb":1,"a":[["TED%3AAF-A0A077KU37-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A077KU37-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A878220","Chryseobacterium sp. StRB126"]]},{"id":"NCBITaxon:880534","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2P9BKD8-F1-model_v4_TED02","TED novel fold AF-A0A2P9BKD8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A880534","Plasmodium praefalciparum (nom. ined.)"]]},{"id":"NCBITaxon:882626","l":"Pseudoalteromonas xiamenensis","na":1,"nb":1,"a":[["TED%3AAF-A0A8A6BGH7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8A6BGH7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A882626","Pseudoalteromonas xiamenensis"]]},{"id":"NCBITaxon:883812","l":"Parageobacillus galactosidasius","na":1,"nb":1,"a":[["TED%3AAF-A0A226QSZ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A226QSZ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A883812","Parageobacillus galactosidasius"]]},{"id":"NCBITaxon:885475","l":"Salipaludibacillus neizhouensis","na":1,"nb":1,"a":[["TED%3AAF-A0A3A9K827-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3A9K827-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A885475","Salipaludibacillus neizhouensis"]]},{"id":"NCBITaxon:88771","l":"","na":1,"nb":1,"a":[["Pfam%3APF07249","Cerato-platanin"]],"b":[["NCBITaxon%3A88771","Ceratocystis platani"]]},{"id":"NCBITaxon:88773","l":"","na":1,"nb":1,"a":[["Pfam%3APF07232","Putative rep protein (DUF1424)"]],"b":[["NCBITaxon%3A88773","Halobacterium sp. GN101"]]},{"id":"NCBITaxon:888050","l":"Schaalia cardiffensis F0333","na":1,"nb":1,"a":[["TED%3AAF-N6W7R5-F1-model_v4_TED03","TED novel fold AF-N6W7R5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A888050","Schaalia cardiffensis F0333"]]},{"id":"NCBITaxon:888059","l":"Capnocytophaga sp. oral taxon 338 str. F0234","na":1,"nb":1,"a":[["TED%3AAF-F0IGW8-F1-model_v4_TED02","TED highly-symmetric fold AF-F0IGW8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A888059","Capnocytophaga sp. oral taxon 338 str. F0234"]]},{"id":"NCBITaxon:89489","l":"Monascus ruber","na":1,"nb":1,"a":[["Pfam%3APF17828","N-terminal domain in fatty acid synthase subunit beta"]],"b":[["NCBITaxon%3A89489","Monascus ruber"]]},{"id":"NCBITaxon:895","l":"Desulfobulbus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A432QRX5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A432QRX5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A895","Desulfobulbus sp."]]},{"id":"NCBITaxon:903503","l":"","na":1,"nb":1,"a":[["Pfam%3APF04999","Cell division protein FtsL"]],"b":[["NCBITaxon%3A903503","Candidatus Moranella endobia PCIT"]]},{"id":"NCBITaxon:903983","l":"Enterococcus quebecensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1E5GSS5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1E5GSS5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A903983","Enterococcus quebecensis"]]},{"id":"NCBITaxon:90427","l":"Methanoculleus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7C1DX95-F1-model_v4_TED01","TED novel fold AF-A0A7C1DX95-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A90427","Methanoculleus sp."]]},{"id":"NCBITaxon:905079","l":"","na":1,"nb":1,"a":[["TED%3AAF-L1IJ61-F1-model_v4_TED01","TED highly-symmetric fold AF-L1IJ61-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A905079","Guillardia theta CCMP2712"]]},{"id":"NCBITaxon:906888","l":"Nonlabens ulvanivorans","na":1,"nb":1,"a":[["Pfam%3APF24208","Endo-acting ulvan lyase beta-trefoil domain"]],"b":[["NCBITaxon%3A906888","Nonlabens ulvanivorans"]]},{"id":"NCBITaxon:909943","l":"SAR116 cluster alpha proteobacterium HIMB100","na":1,"nb":1,"a":[["TED%3AAF-G5ZX74-F1-model_v4_TED02","TED novel fold AF-G5ZX74-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A909943","SAR116 cluster alpha proteobacterium HIMB100"]]},{"id":"NCBITaxon:911045","l":"","na":1,"nb":1,"a":[["TED%3AAF-G8PRS6-F1-model_v4_TED01","TED highly-symmetric fold AF-G8PRS6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A911045","Pseudovibrio sp. FO-BEG1"]]},{"id":"NCBITaxon:911242","l":"Pseudomonas sp. CFII64","na":1,"nb":1,"a":[["TED%3AAF-S6GRU4-F1-model_v4_TED01","TED highly-symmetric fold AF-S6GRU4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A911242","Pseudomonas sp. CFII64"]]},{"id":"NCBITaxon:912552","l":"Conexibacter arvalis","na":1,"nb":1,"a":[["TED%3AAF-A0A840I9W8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A840I9W8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A912552","Conexibacter arvalis"]]},{"id":"NCBITaxon:913252","l":"Paracoccus limosus","na":1,"nb":1,"a":[["TED%3AAF-A0A844H437-F1-model_v4_TED02","TED novel fold AF-A0A844H437-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A913252","Paracoccus limosus"]]},{"id":"NCBITaxon:914150","l":"Kangiella geojedonensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0F6TP00-F1-model_v4_TED03","TED novel fold AF-A0A0F6TP00-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A914150","Kangiella geojedonensis"]]},{"id":"NCBITaxon:914238","l":"Rhynchosporium agropyri","na":1,"nb":1,"a":[["TED%3AAF-A0A1E1JTN7-F1-model_v4_TED02","TED novel fold AF-A0A1E1JTN7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A914238","Rhynchosporium agropyri"]]},{"id":"NCBITaxon:91464","l":"","na":1,"nb":1,"a":[["TED%3AAF-B4WV80-F1-model_v4_TED01","TED highly-symmetric fold AF-B4WV80-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A91464","Synechococcus sp. PCC 7335"]]},{"id":"NCBITaxon:915472","l":"Pseudomonas nitritireducens","na":1,"nb":1,"a":[["TED%3AAF-A0A7W7KS29-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W7KS29-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A46680","Pseudomonas nitroreducens"]]},{"id":"NCBITaxon:91928","l":"Exophiala spinifera","na":1,"nb":1,"a":[["TED%3AAF-A0A0D1ZM77-F1-model_v4_TED02","TED novel fold AF-A0A0D1ZM77-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A91928","Exophiala spinifera"]]},{"id":"NCBITaxon:91992","l":"Triparma pacifica","na":1,"nb":1,"a":[["TED%3AAF-A0A7S2VVQ4-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7S2VVQ4-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A91992","Triparma pacifica"]]},{"id":"NCBITaxon:924","l":"Thiobacillus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7L5YHX1-F1-model_v4_TED02","TED novel fold AF-A0A7L5YHX1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A924","Thiobacillus sp."]]},{"id":"NCBITaxon:92402","l":"Metamycoplasma equirhinis","na":1,"nb":1,"a":[["TED%3AAF-A0A501SHD3-F1-model_v4_TED03","TED novel fold AF-A0A501SHD3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A92402","Metamycoplasma equirhinis"]]},{"id":"NCBITaxon:92696","l":"Steccherinum ochraceum","na":1,"nb":1,"a":[["TED%3AAF-A0A4R0RWY1-F1-model_v4_TED01","TED novel fold AF-A0A4R0RWY1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A92696","Steccherinum ochraceum"]]},{"id":"NCBITaxon:92742","l":"","na":1,"nb":1,"a":[["Pfam%3APF26358","EcdD/BsdD phenolic detoxification"]],"b":[["NCBITaxon%3A92742","Streptomyces sp. D7"]]},{"id":"NCBITaxon:927704","l":"","na":1,"nb":1,"a":[["TED%3AAF-I0GUW5-F1-model_v4_TED01","TED highly-symmetric fold AF-I0GUW5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A927704","Selenomonas ruminantium subsp. lactilytica TAM6421"]]},{"id":"NCBITaxon:930805","l":"Halioglobus japonicus","na":1,"nb":1,"a":[["TED%3AAF-A0A2N5YIE4-F1-model_v4_TED03","TED novel fold AF-A0A2N5YIE4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A930805","Halioglobus japonicus"]]},{"id":"NCBITaxon:930943","l":"","na":1,"nb":1,"a":[["TED%3AAF-F0NJI0-F1-model_v4_TED01","TED novel fold AF-F0NJI0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A930943","Saccharolobus islandicus HVE10/4"]]},{"id":"NCBITaxon:930945","l":"","na":1,"nb":1,"a":[["Pfam%3APF01918","Alba"]],"b":[["NCBITaxon%3A930945","Saccharolobus islandicus REY15A"]]},{"id":"NCBITaxon:93221","l":"Pandoraea pulmonicola","na":1,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_TBH_Asp","T-E-associated metallophore aspartate beta-hydroxylase family"]],"b":[["NCBITaxon%3A93221","Pandoraea pulmonicola"]]},{"id":"NCBITaxon:932213","l":"Serratia sp. M24T3","na":1,"nb":1,"a":[["TED%3AAF-I0QTC8-F1-model_v4_TED01","TED highly-symmetric fold AF-I0QTC8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A932213","Serratia sp. M24T3"]]},{"id":"NCBITaxon:93222","l":"Pandoraea sputorum","na":1,"nb":1,"a":[["TED%3AAF-A0A5E5BHU5-F1-model_v4_TED02","TED novel fold AF-A0A5E5BHU5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A93222","Pandoraea sputorum"]]},{"id":"NCBITaxon:932660","l":"Haloarcula sebkhae","na":1,"nb":1,"a":[["TED%3AAF-A0A830EH45-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A830EH45-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A932660","Haloarcula sebkhae"]]},{"id":"NCBITaxon:932677","l":"","na":1,"nb":1,"a":[["Pfam%3APF10014","2OG-Fe dioxygenase"]],"b":[["NCBITaxon%3A932677","Pantoea ananatis AJ13355"]]},{"id":"NCBITaxon:933852","l":"Serendipita vermifera MAFF 305830","na":1,"nb":1,"a":[["TED%3AAF-A0A0C3B4B7-F1-model_v4_TED02","TED novel fold AF-A0A0C3B4B7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A933852","Serendipita vermifera MAFF 305830"]]},{"id":"NCBITaxon:933926","l":"Sinobacterium caligoides","na":1,"nb":1,"a":[["TED%3AAF-A0A3N2D566-F1-model_v4_TED03","TED novel fold AF-A0A3N2D566-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A933926","Sinobacterium caligoides"]]},{"id":"NCBITaxon:935","l":"Thiomicrospira sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A356VSR5-F1-model_v4_TED01","TED novel fold AF-A0A356VSR5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A935","Thiomicrospira sp."]]},{"id":"NCBITaxon:935222","l":"Flavobacterium sp. Sr18","na":1,"nb":1,"a":[["TED%3AAF-A0A6G7CDS6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6G7CDS6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A935222","Flavobacterium sp. Sr18"]]},{"id":"NCBITaxon:935700","l":"Jannaschia aquimarina","na":1,"nb":1,"a":[["TED%3AAF-A0A0D1CPL0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D1CPL0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A935700","Jannaschia aquimarina"]]},{"id":"NCBITaxon:936138","l":"Phorcysia thermohydrogeniphila","na":1,"nb":1,"a":[["TED%3AAF-A0A4V2PDB0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A4V2PDB0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A936138","Phorcysia thermohydrogeniphila"]]},{"id":"NCBITaxon:936381","l":"Selenomonas sp. CM52","na":1,"nb":1,"a":[["TED%3AAF-J4WN32-F1-model_v4_TED01","TED highly-symmetric fold AF-J4WN32-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A936381","Selenomonas sp. CM52"]]},{"id":"NCBITaxon:936549","l":"Actinomyces sp. ICM54","na":1,"nb":1,"a":[["TED%3AAF-Z4X213-F1-model_v4_TED02","TED novel fold AF-Z4X213-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A936549","Actinomyces sp. ICM54"]]},{"id":"NCBITaxon:936556","l":"Peptostreptococcaceae bacterium AS15","na":1,"nb":1,"a":[["TED%3AAF-J4ULD9-F1-model_v4_TED01","TED highly-symmetric fold AF-J4ULD9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A936556","Peptostreptococcaceae bacterium AS15"]]},{"id":"NCBITaxon:936563","l":"Fusobacterium sp. CM22","na":1,"nb":1,"a":[["TED%3AAF-X8HCV0-F1-model_v4_TED03","TED highly-symmetric fold AF-X8HCV0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A936563","Fusobacterium sp. CM22"]]},{"id":"NCBITaxon:936565","l":"Klebsiella sp. OBRC7","na":1,"nb":1,"a":[["TED%3AAF-J4WXU7-F1-model_v4_TED01","TED novel fold AF-J4WXU7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A936565","Klebsiella sp. OBRC7"]]},{"id":"NCBITaxon:936574","l":"","na":1,"nb":1,"a":[["TED%3AAF-X8GZH1-F1-model_v4_TED04","TED novel fold AF-X8GZH1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A936574","Shuttleworthella sp. MSX8B"]]},{"id":"NCBITaxon:936591","l":"Veillonella sp. ICM51a","na":1,"nb":1,"a":[["TED%3AAF-X8HDK6-F1-model_v4_TED01","TED highly-symmetric fold AF-X8HDK6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A936591","Veillonella sp. ICM51a"]]},{"id":"NCBITaxon:938405","l":"Belnapia rosea","na":1,"nb":1,"a":[["TED%3AAF-A0A1G6YYP0-F1-model_v4_TED01","TED novel fold AF-A0A1G6YYP0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A938405","Belnapia rosea"]]},{"id":"NCBITaxon:93944","l":"Nonomuraea gerenzanensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1M4EK07-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M4EK07-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A93944","Nonomuraea gerenzanensis"]]},{"id":"NCBITaxon:94001","l":"","na":1,"nb":1,"a":[["Pfam%3APF09721","Transmembrane exosortase (Exosortase_EpsH)"]],"b":[["NCBITaxon%3A94001","Methylobacillus sp. 12S"]]},{"id":"NCBITaxon:941280","l":"Escherichia coli O25b:H4","na":1,"nb":1,"a":[["PROSITE%3APS00146","Beta-lactamase class-A active site"]],"b":[["NCBITaxon%3A941280","Escherichia coli O25b:H4"]]},{"id":"NCBITaxon:94208","l":"Tolypocladium paradoxum","na":1,"nb":1,"a":[["TED%3AAF-A0A2S4KXL0-F1-model_v4_TED01","TED novel fold AF-A0A2S4KXL0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A94208","Tolypocladium paradoxum"]]},{"id":"NCBITaxon:943346","l":"Sporomusa sp. KB1","na":1,"nb":1,"a":[["TED%3AAF-A0A562GGV9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A562GGV9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A943346","Sporomusa sp. KB1"]]},{"id":"NCBITaxon:944288","l":"Plicaturopsis crispa FD-325 SS-3","na":1,"nb":1,"a":[["TED%3AAF-A0A0C9SUT9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0C9SUT9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A944288","Plicaturopsis crispa FD-325 SS-3"]]},{"id":"NCBITaxon:945681","l":"Acetobacter pomorum DM001","na":1,"nb":1,"a":[["TED%3AAF-F1YV49-F1-model_v4_TED01","TED highly-symmetric fold AF-F1YV49-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A945681","Acetobacter pomorum DM001"]]},{"id":"NCBITaxon:947515","l":"Ectothiorhodospiraceae bacterium BW-2","na":1,"nb":1,"a":[["TED%3AAF-A0A5C2HRK8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C2HRK8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A947515","Ectothiorhodospiraceae bacterium BW-2"]]},{"id":"NCBITaxon:94868","l":"Lacrimispora algidixylanolytica","na":1,"nb":1,"a":[["TED%3AAF-A0A419SY83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A419SY83-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A94868","Lacrimispora algidixylanolytica"]]},{"id":"NCBITaxon:95161","l":"Saccharopolyspora flava","na":1,"nb":1,"a":[["TED%3AAF-A0A1I6QMW8-F1-model_v4_TED03","TED novel fold AF-A0A1I6QMW8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A95161","Saccharopolyspora flava"]]},{"id":"NCBITaxon:96901","l":"Pseudomonas synxantha BG33R","na":1,"nb":1,"a":[["TED%3AAF-I4L8E7-F1-model_v4_TED04","TED highly-symmetric fold AF-I4L8E7-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A96901","Pseudomonas synxantha BG33R"]]},{"id":"NCBITaxon:97479","l":"Pyrenophora teres f. teres","na":1,"nb":1,"a":[["TED%3AAF-A0A6S6VY77-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6S6VY77-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A97479","Pyrenophora teres f. teres"]]},{"id":"NCBITaxon:97480","l":"Pyrenophora teres f. maculata","na":1,"nb":1,"a":[["TED%3AAF-A0A6S6UPH8-F1-model_v4_TED03","TED novel fold AF-A0A6S6UPH8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A97480","Pyrenophora teres f. maculata"]]},{"id":"NCBITaxon:979970","l":"Acetobacteroides hydrogenigenes","na":1,"nb":1,"a":[["TED%3AAF-A0A4R2EML9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4R2EML9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A979970","Acetobacteroides hydrogenigenes"]]},{"id":"NCBITaxon:979981","l":"Fonsecaea multimorphosa","na":1,"nb":1,"a":[["TED%3AAF-A0A178CG13-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A178CG13-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A979981","Fonsecaea multimorphosa"]]},{"id":"NCBITaxon:980252","l":"Bremerella alba","na":1,"nb":1,"a":[["TED%3AAF-A0A7V9A964-F1-model_v4_TED01","TED novel fold AF-A0A7V9A964-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A980252","Bremerella alba"]]},{"id":"NCBITaxon:980271","l":"Aporhodopirellula rubra","na":1,"nb":1,"a":[["TED%3AAF-A0A7W5H7H8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7W5H7H8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A980271","Aporhodopirellula rubra"]]},{"id":"NCBITaxon:981385","l":"Thermotomaculum hydrothermale","na":1,"nb":1,"a":[["TED%3AAF-A0A7R6PZT0-F1-model_v4_TED01","TED novel fold AF-A0A7R6PZT0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A981385","Thermotomaculum hydrothermale"]]},{"id":"NCBITaxon:983544","l":"","na":1,"nb":1,"a":[["TED%3AAF-F6GEK2-F1-model_v4_TED03","TED highly-symmetric fold AF-F6GEK2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A983544","Lacinutrix sp. 5H-3-7-4"]]},{"id":"NCBITaxon:983917","l":"","na":1,"nb":1,"a":[["TED%3AAF-I0HSL7-F1-model_v4_TED04","TED novel fold AF-I0HSL7-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A983917","Rubrivivax gelatinosus IL144"]]},{"id":"NCBITaxon:98403","l":"Drechmeria coniospora","na":1,"nb":1,"a":[["TED%3AAF-A0A151GP24-F1-model_v4_TED02","TED novel fold AF-A0A151GP24-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A98403","Drechmeria coniospora"]]},{"id":"NCBITaxon:985053","l":"","na":1,"nb":1,"a":[["TED%3AAF-F0QT87-F1-model_v4_TED01","TED novel fold AF-F0QT87-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A985053","Vulcanisaeta moutnovskia 768-28"]]},{"id":"NCBITaxon:985250","l":"Sinimarinibacterium flocculans","na":1,"nb":1,"a":[["TED%3AAF-A0A318EDW9-F1-model_v4_TED01","TED novel fold AF-A0A318EDW9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A985250","Sinimarinibacterium flocculans"]]},{"id":"NCBITaxon:986946","l":"Aspergillus novoparasiticus","na":1,"nb":1,"a":[["TED%3AAF-A0A5N6FAW7-F1-model_v4_TED02","TED novel fold AF-A0A5N6FAW7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A986946","Aspergillus novoparasiticus"]]},{"id":"NCBITaxon:987040","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A2A2TND5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A2TND5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A987040","Brunnivagina elsteri CCALA 953"]]},{"id":"NCBITaxon:990078","l":"Bradyrhizobium huanghuaihaiense","na":1,"nb":1,"a":[["TED%3AAF-A0A562QY54-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A562QY54-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A990078","Bradyrhizobium huanghuaihaiense"]]},{"id":"NCBITaxon:992286","l":"Rhodovulum bhavnagarense","na":1,"nb":1,"a":[["TED%3AAF-A0A4V2SWD3-F1-model_v4_TED02","TED novel fold AF-A0A4V2SWD3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A992286","Rhodovulum bhavnagarense"]]},{"id":"NCBITaxon:993414","l":"Naumannella halotolerans","na":1,"nb":1,"a":[["TED%3AAF-A0A4R7J3W9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R7J3W9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A993414","Naumannella halotolerans"]]},{"id":"NCBITaxon:993689","l":"Metallibacterium scheffleri","na":1,"nb":1,"a":[["TED%3AAF-A0A4S3KQL1-F1-model_v4_TED02","TED novel fold AF-A0A4S3KQL1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A993689","Metallibacterium scheffleri"]]},{"id":"NCBITaxon:993692","l":"Companilactobacillus kimchiensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0R2L4Q0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0R2L4Q0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A993692","Companilactobacillus kimchiensis"]]},{"id":"NCBITaxon:994086","l":"Hydnomerulius pinastri MD-312","na":1,"nb":1,"a":[["TED%3AAF-A0A0C9W3H2-F1-model_v4_TED01","TED novel fold AF-A0A0C9W3H2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A994086","Hydnomerulius pinastri MD-312"]]},{"id":"NCBITaxon:994334","l":"Jimgerdemannia flammicorona","na":1,"nb":1,"a":[["TED%3AAF-A0A433D364-F1-model_v4_TED02","TED novel fold AF-A0A433D364-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A994334","Jimgerdemannia flammicorona"]]},{"id":"NCBITaxon:996115","l":"Ruegeria intermedia","na":1,"nb":1,"a":[["TED%3AAF-A0A1M4ZXW0-F1-model_v4_TED03","TED novel fold AF-A0A1M4ZXW0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A996115","Ruegeria intermedia"]]},{"id":"NCBITaxon:996342","l":"Marivita hallyeonensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1M5S2D4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M5S2D4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A996342","Marivita hallyeonensis"]]},{"id":"NCBITaxon:997874","l":"Bacteroides cellulosilyticus CL02T12C19","na":1,"nb":1,"a":[["TED%3AAF-I9R2V8-F1-model_v4_TED01","TED highly-symmetric fold AF-I9R2V8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A997874","Bacteroides cellulosilyticus CL02T12C19"]]},{"id":"NCBITaxon:997887","l":"Bacteroides salyersiae CL02T12C01","na":1,"nb":1,"a":[["TED%3AAF-I9TGQ7-F1-model_v4_TED01","TED highly-symmetric fold AF-I9TGQ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A997887","Bacteroides salyersiae CL02T12C01"]]},{"id":"NCBITaxon:999419","l":"Parabacteroides johnsonii CL02T12C29","na":1,"nb":1,"a":[["TED%3AAF-K6AIB7-F1-model_v4_TED03","TED novel fold AF-K6AIB7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A999419","Parabacteroides johnsonii CL02T12C29"]]},{"id":"NCBITaxon:999422","l":"","na":1,"nb":1,"a":[["TED%3AAF-H1HK05-F1-model_v4_TED03","TED highly-symmetric fold AF-H1HK05-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A999422","Segatella maculosa OT 289"]]},{"id":"NCBITaxon:999898","l":"Peptococcaceae bacterium CEB3","na":1,"nb":1,"a":[["TED%3AAF-A0A0J1F8G9-F1-model_v4_TED02","TED novel fold AF-A0A0J1F8G9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A999898","Peptococcaceae bacterium CEB3"]]}]} \ No newline at end of file +{"a":"ProteinTraitsMech","b":"TaxonMech","base":{"ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record=","TaxonMech":"https://culturebotai.github.io/TaxonMech/pages/taxon.html?id="},"n":7444,"by":{"NCBITaxon":7444},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":145,"nb":3868,"a":[["IDPO%3A0000033","flexible linker"],["IDPO%3A0000014","order to disorder"],["IDPO%3A0000004","pre-molten globule"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A196023","Aeromonas hydrophila subsp. hydrophila"],["NCBITaxon%3A380703","Aeromonas hydrophila subsp. hydrophila ATCC 7966"],["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A35703","Citrobacter amalonaticus"],["NCBITaxon%3A163202","Corynebacterium appendicis"]]},{"id":"NCBITaxon:83334","l":"Escherichia coli O157:H7","na":130,"nb":140,"a":[["IDPO%3A0000011","disorder to order"],["IDPO%3A0000014","order to disorder"],["Pfam%3APF12343","DeaD helicase C-terminal disordered region"],["Pfam%3APF26539","YhiD C-terminal ACT domain"],["Pfam%3APF01081","KDPG and KHG aldolase"],["Pfam%3APF10423","Bacterial AMP nucleoside phosphorylase N-terminus"]],"b":[["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1389955","Escherichia coli ATCC 35150"],["NCBITaxon%3A83334","Escherichia coli O157:H7"],["NCBITaxon%3A1446609","Escherichia coli O157:H7 str. 06-3745"],["NCBITaxon%3A1446610","Escherichia coli O157:H7 str. 06-4039"],["NCBITaxon%3A1446611","Escherichia coli O157:H7 str. 07-3091"]]},{"id":"NCBITaxon:623","l":"Shigella flexneri","na":94,"nb":120,"a":[["Pfam%3APF13710","ACT domain"],["Pfam%3APF12633","Adenylate cyclase NT domain"],["Pfam%3APF26690","Adenylate cyclase, class-I, third domain"],["Pfam%3APF26691","Adenylate cyclase, class-I, fourth domain"],["Pfam%3APF26693","Adenylate cyclase, class-I, C-terminal"],["Pfam%3APF01295","Adenylate cyclase, class-I, second domain"]],"b":[["NCBITaxon%3A236","Brucella ovis"],["NCBITaxon%3A444178","Brucella ovis ATCC 25840"],["NCBITaxon%3A623","Shigella flexneri"],["NCBITaxon%3A766154","Shigella flexneri 1235-66"],["NCBITaxon%3A766155","Shigella flexneri 1485-80"],["NCBITaxon%3A766156","Shigella flexneri 1676-NY"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":46,"nb":4740,"a":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF13166","AAA domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF27533","CapK C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"]],"b":[["NCBITaxon%3A475088","Methanosphaerula palustris"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1389955","Escherichia coli ATCC 35150"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A574","Klebsiella pneumoniae subsp. ozaenae"],["NCBITaxon%3A1218098","Klebsiella pneumoniae subsp. ozaenae NBRC 105683"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli K-12","na":17470,"nb":39,"a":[["EC%3A1.1.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.16.-.-","Oxidizing metal ions"],["EC%3A1.18.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.7.-","With an iron-sulfur protein as acceptor"]],"b":[["NCBITaxon%3A679895","Escherichia coli BW25113"],["NCBITaxon%3A595496","Escherichia coli BW2952"],["NCBITaxon%3A1318715","Escherichia coli BW38028"],["NCBITaxon%3A1245474","Escherichia coli ER2796"],["NCBITaxon%3A83333","Escherichia coli K-12"],["NCBITaxon%3A527799","Escherichia coli LW1655F+"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":30,"nb":422,"a":[["Pfam%3APF08787","Alginate lyase"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF08218","Citrate lyase ligase C-terminal domain"],["Pfam%3APF13727","CoA-binding domain"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["Pfam%3APF20714","DpiA-like helix-turn-helix domain"]],"b":[["NCBITaxon%3A1653844","Erwinia carnegieana"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A2058152","Klebsiella grimontii"],["NCBITaxon%3A54291","Klebsiella ornithinolytica"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A1443592","Klebsiella pneumoniae 07A044"]]},{"id":"NCBITaxon:1392","l":"Bacillus anthracis","na":29,"nb":51,"a":[["Pfam%3APF09156","Anthrax toxin lethal factor, middle domain"],["Pfam%3APF08401","N-terminal domain of anti-restriction factor ArdC"],["Pfam%3APF07737","Anthrax toxin lethal factor, N- and C-terminal domain"],["Pfam%3APF27053","Bacillus anthracis plasmid pXO2 protein 26"],["Pfam%3APF13205","Bacterial Ig-like domain"],["Pfam%3APF17475","Clostridial binary toxin B/anthrax toxin PA domain 2"]],"b":[["NCBITaxon%3A1392","Bacillus anthracis"],["NCBITaxon%3A1412844","Bacillus anthracis 52-G"],["NCBITaxon%3A1412843","Bacillus anthracis 8903-G"],["NCBITaxon%3A1412842","Bacillus anthracis 9080-G"],["NCBITaxon%3A1420588","Bacillus anthracis CVCC 40048"],["NCBITaxon%3A1439874","Bacillus anthracis CZC5"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":23,"nb":287,"a":[["Pfam%3APF09255","Caf1 Capsule antigen"],["Pfam%3APF02611","CDP-diacylglycerol pyrophosphatase"],["Pfam%3APF07411","Domain of unknown function (DUF1508)"],["Pfam%3APF05171","Haemin-degrading HemS.ChuX domain"],["Pfam%3APF21500","DNA polymerase III subunit delta', AAA+ ATPase lid domain"],["Pfam%3APF11004","3-deoxy-D-manno-oct-2-ulosonic acid (Kdo) hydroxylase"]],"b":[["NCBITaxon%3A632","Yersinia pestis"],["NCBITaxon%3A1345710","Yersinia pestis 1045"],["NCBITaxon%3A1330535","Yersinia pestis 113"],["NCBITaxon%3A755859","Yersinia pestis 12"],["NCBITaxon%3A1345703","Yersinia pestis 1412"],["NCBITaxon%3A1345704","Yersinia pestis 1413"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":23,"nb":168,"a":[["Pfam%3APF08878","HamA"],["Pfam%3APF05791","Bacillus haemolytic enterotoxin (HBL)"],["Pfam%3APF10803","Spore germination GerPB"],["Pfam%3APF10737","Spore germination protein GerPC"],["Pfam%3APF10970","Spore germination protein GerPE"],["Pfam%3APF07486","Cell Wall Hydrolase"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A572264","Bacillus cereus 03BB102"],["NCBITaxon%3A451709","Bacillus cereus 03BB108"],["NCBITaxon%3A526967","Bacillus cereus 172560W"],["NCBITaxon%3A363751","Bacillus cereus 31673"],["NCBITaxon%3A526979","Bacillus cereus 95/8201"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa PAO1","na":162,"nb":23,"a":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF06750","Bacterial Peptidase A24 N-terminal domain"],["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF28403","Aconitase X second domain"],["Pfam%3APF28406","Aconitase X third domain"],["Pfam%3APF04412","Aconitase X first domain"]],"b":[["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1453991","Pseudomonas aeruginosa BK1"],["NCBITaxon%3A1236530","Pseudomonas aeruginosa JCM 14847"],["NCBITaxon%3A1131757","Pseudomonas aeruginosa MPAO1/P1"],["NCBITaxon%3A1131758","Pseudomonas aeruginosa MPAO1/P2"],["NCBITaxon%3A208964","Pseudomonas aeruginosa PAO1"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":20,"nb":53,"a":[["Pfam%3APF14535","AMP-binding enzyme C-terminal domain"],["Pfam%3APF13442","Cytochrome C oxidase, cbb3-type, subunit III"],["Pfam%3APF22247","Catechol 2,3-dioxygenase-like N-terminal domain"],["Pfam%3APF25371","Domain of unknown function (DUF7884)"],["Pfam%3APF19301","LigXa C-terminal domain like"],["Pfam%3APF12729","Four helix bundle sensory module for signal transduction"]],"b":[["NCBITaxon%3A47920","Acidovorax delafieldii"],["NCBITaxon%3A301","Ectopseudomonas oleovorans"],["NCBITaxon%3A29581","Janthinobacterium lividum"],["NCBITaxon%3A294","Pseudomonas fluorescens"],["NCBITaxon%3A77298","Pseudomonas jessenii"],["NCBITaxon%3A1968891","Pseudomonas jessenii subsp. pseudoputida"]]},{"id":"NCBITaxon:90370","l":"Salmonella enterica subsp. enterica serovar Typhi","na":20,"nb":27,"a":[["Pfam%3APF09317","Acyl-CoA dehydrogenase, C-terminal, bacterial type"],["Pfam%3APF04958","Arginine N-succinyltransferase beta subunit"],["Pfam%3APF06564","Cellulose biosynthesis protein BcsQ"],["Pfam%3APF21157","DnaK suppressor protein DksA, N-terminal domain"],["Pfam%3APF22102","ElaD/SseL-like C-terminal"],["Pfam%3APF13861","FlgD Tudor-like domain"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A90370","Salmonella enterica subsp. enterica serovar Typhi"],["NCBITaxon%3A497977","Salmonella enterica subsp. enterica serovar Typhi str. 404ty"],["NCBITaxon%3A496065","Salmonella enterica subsp. enterica serovar Typhi str. AG3"],["NCBITaxon%3A1156917","Salmonella enterica subsp. enterica serovar Typhi str. BL196"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":19,"nb":557,"a":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"],["Pfam%3APF18173","Bacterial HORMA domain 2"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["Pfam%3APF27322","Cap8 HORMA domain"],["Pfam%3APF01526","Tn3 transposase DDE domain"]],"b":[["NCBITaxon%3A2073169","Chromobacterium alticapitis"],["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1454219","Pseudomonas aeruginosa 059A"],["NCBITaxon%3A1421538","Pseudomonas aeruginosa 0812"],["NCBITaxon%3A1421545","Pseudomonas aeruginosa 0822"],["NCBITaxon%3A1421531","Pseudomonas aeruginosa 0C2E"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":19,"nb":25,"a":[["Pfam%3APF03306","Alpha-acetolactate decarboxylase"],["Pfam%3APF22208","Cas_Csm6 CARF domain"],["Pfam%3APF09659","Cas_Csm6 HEPN domain"],["Pfam%3APF22335","Cas10/Cmr2, second palm domain"],["Pfam%3APF18395","Cas3 C-terminal domain"],["Pfam%3APF18019","Cas3, HD domain"]],"b":[["NCBITaxon%3A35783","Enterococcus sp."],["NCBITaxon%3A1308","Streptococcus thermophilus"],["NCBITaxon%3A1435981","Streptococcus thermophilus 1F8CT"],["NCBITaxon%3A1408178","Streptococcus thermophilus ASCC 1275"],["NCBITaxon%3A1263110","Streptococcus thermophilus CAG:236"],["NCBITaxon%3A1042404","Streptococcus thermophilus CNCM I-1630"]]},{"id":"NCBITaxon:1428","l":"Bacillus thuringiensis","na":16,"nb":156,"a":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF28265","Lipoprotein N-acylation protein LnsA-like"],["Pfam%3APF16403","Bacterial surface protein, Ig-like domain"],["Pfam%3APF03944","delta endotoxin"],["Pfam%3APF03945","delta endotoxin, N-terminal domain"],["Pfam%3APF06355","Aegerolysin"]],"b":[["NCBITaxon%3A1428","Bacillus thuringiensis"],["NCBITaxon%3A1340496","Bacillus thuringiensis AKS-7"],["NCBITaxon%3A714359","Bacillus thuringiensis BMB171"],["NCBITaxon%3A1423143","Bacillus thuringiensis Bt18247"],["NCBITaxon%3A1423142","Bacillus thuringiensis Bt18679"],["NCBITaxon%3A527021","Bacillus thuringiensis Bt407"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":16,"nb":79,"a":[["Pfam%3APF16822","SGNH hydrolase-like domain, acetyltransferase AlgX"],["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"],["Pfam%3APF11182","Alginate O-acetyl transferase AlgF"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF27129","Functional amyloid protein FapB/FapC family"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]],"b":[["NCBITaxon%3A1931223","Caballeronia sp."],["NCBITaxon%3A89065","Pseudomonas abietaniphila"],["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1123912","Pseudomonas auricularis"],["NCBITaxon%3A930166","Pseudomonas brassicacearum"],["NCBITaxon%3A129817","Pseudomonas brenneri"]]},{"id":"NCBITaxon:630","l":"Yersinia enterocolitica","na":16,"nb":47,"a":[["Pfam%3APF05932","Tir chaperone protein (CesT) family"],["Pfam%3APF17656","FlgA N-terminal domain"],["Pfam%3APF22200","ExsA N-terminal regulatory domain"],["Pfam%3APF05171","Haemin-degrading HemS.ChuX domain"],["Pfam%3APF07201","HrpJ-like domain"],["Pfam%3APF04391","Protein of unknown function (DUF533)"]],"b":[["NCBITaxon%3A630","Yersinia enterocolitica"],["NCBITaxon%3A947561","Yersinia enterocolitica IP2222"],["NCBITaxon%3A1243181","Yersinia enterocolitica IP 10393"],["NCBITaxon%3A1443113","Yersinia enterocolitica LC20"],["NCBITaxon%3A947557","Yersinia enterocolitica NFO"],["NCBITaxon%3A150052","Yersinia enterocolitica subsp. enterocolitica"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":15,"nb":82,"a":[["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["Pfam%3APF14562","Restriction endonuclease BglI"],["Pfam%3APF09195","Restriction endonuclease BglII/BglIII"],["Pfam%3APF09208","Restriction endonuclease MspI"]],"b":[["NCBITaxon%3A1390","Bacillus amyloliquefaciens"],["NCBITaxon%3A1452","Bacillus atrophaeus"],["NCBITaxon%3A640707","Bacillus atrophaeus ATCC 9372"],["NCBITaxon%3A483913","Bacillus inaquosorum"],["NCBITaxon%3A1236548","Bacillus inaquosorum KCTC 13429"],["NCBITaxon%3A1402","Bacillus licheniformis"]]},{"id":"NCBITaxon:1360","l":"Lactococcus lactis subsp. lactis","na":14,"nb":25,"a":[["Pfam%3APF08951","Bacteriocin immunity protein family"],["Pfam%3APF08998","Bacterial epsilon antitoxin"],["Pfam%3APF25887","LcnD-like, long helical bundle domain"],["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF25940","LcnD-like, C-terminal domain"],["Pfam%3APF08129","Alpha/beta enterocin family"]],"b":[["NCBITaxon%3A1358","Lactococcus lactis"],["NCBITaxon%3A203404","Lactococcus lactis subsp. hordniae"],["NCBITaxon%3A1348656","Lactococcus lactis subsp. hordniae NBRC 100931"],["NCBITaxon%3A1360","Lactococcus lactis subsp. lactis"],["NCBITaxon%3A1379274","Lactococcus lactis subsp. lactis 1AA59"],["NCBITaxon%3A1137134","Lactococcus lactis subsp. lactis A12"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis H37Rv","na":297,"nb":13,"a":[["IDPO%3A0000002","disorder"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000045","phosphorylation display site"],["IDPO%3A0000059","self-inhibition"],["Pfam%3APF17837","4'-phosphopantetheinyl transferase N-terminal domain"]],"b":[["NCBITaxon%3A1773","Mycobacterium tuberculosis"],["NCBITaxon%3A83332","Mycobacterium tuberculosis H37Rv"],["NCBITaxon%3A747078","Mycobacterium tuberculosis H37Rv_2009"],["NCBITaxon%3A928249","Mycobacterium tuberculosis H37Rv_ideR_mutant_ST22"],["NCBITaxon%3A757417","Mycobacterium tuberculosis H37RvAE"],["NCBITaxon%3A757419","Mycobacterium tuberculosis H37RvCO"]]},{"id":"NCBITaxon:644","l":"Aeromonas hydrophila","na":13,"nb":44,"a":[["Pfam%3APF01117","Aerolysin toxin"],["Pfam%3APF03440","Aerolysin/Pertussis toxin (APT) domain"],["Pfam%3APF21327","GspA, peptidase C39-like domain"],["Pfam%3APF04231","Endonuclease I"],["PROSITE%3APS01092","Adenylate cyclase class-I signature 1"],["PROSITE%3APS01093","Adenylate cyclase class-I signature 2"]],"b":[["NCBITaxon%3A105751","Aeromonas bestiarum"],["NCBITaxon%3A648","Aeromonas caviae"],["NCBITaxon%3A196024","Aeromonas dhakensis"],["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A1073378","Aeromonas hydrophila 07-345-3437"],["NCBITaxon%3A1268075","Aeromonas hydrophila 116"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":13,"nb":32,"a":[["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF03173","Putative carbohydrate binding domain"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"],["Pfam%3APF06438","Heme-binding protein A (HasA)"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF05247","Flagellar transcriptional activator (FlhD)"]],"b":[["NCBITaxon%3A2703793","Serratia bockelmannii"],["NCBITaxon%3A615","Serratia marcescens"],["NCBITaxon%3A1257036","Serratia marcescens 12"],["NCBITaxon%3A1255611","Serratia marcescens 448"],["NCBITaxon%3A1333586","Serratia marcescens AB42556419-isolate1"],["NCBITaxon%3A1400186","Serratia marcescens BIDMC 44"]]},{"id":"NCBITaxon:546","l":"Citrobacter freundii","na":13,"nb":27,"a":[["Pfam%3APF07832","Cfr10I/Bse634I restriction endonuclease"],["Pfam%3APF22348","Colicin-A N-terminal domain"],["Pfam%3APF01024","Colicin pore forming domain"],["Pfam%3APF18427","DD-reactivating factor swiveling domain"],["Pfam%3APF02286","Dehydratase large subunit"],["Pfam%3APF02288","Dehydratase medium subunit"]],"b":[["NCBITaxon%3A57706","Citrobacter braakii"],["NCBITaxon%3A1914243","Citrobacter europaeus"],["NCBITaxon%3A546","Citrobacter freundii"],["NCBITaxon%3A1173724","Citrobacter freundii 47N"],["NCBITaxon%3A742730","Citrobacter freundii 4_7_47CFAA"],["NCBITaxon%3A1444046","Citrobacter freundii 5-172-05_S1_C1"]]},{"id":"NCBITaxon:485","l":"Neisseria gonorrhoeae","na":12,"nb":90,"a":[["Pfam%3APF25860","Cryptic plasmid protein A"],["Pfam%3APF12852","Cupin"],["Pfam%3APF17845","FbpC C-terminal regulatory nucleotide binding domain"],["Pfam%3APF22443","FbpC-like, regulatory domain"],["Pfam%3APF18053","DNA gyrase B subunit insert domain"],["Pfam%3APF25885","EMRA, alpha-helical hairpin domain"]],"b":[["NCBITaxon%3A485","Neisseria gonorrhoeae"],["NCBITaxon%3A528345","Neisseria gonorrhoeae 1291"],["NCBITaxon%3A1193404","Neisseria gonorrhoeae 3502"],["NCBITaxon%3A528346","Neisseria gonorrhoeae 35/02"],["NCBITaxon%3A1352347","Neisseria gonorrhoeae ALB_2011_01-02"],["NCBITaxon%3A1351778","Neisseria gonorrhoeae ALB_2011_03_03"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":11,"nb":1075,"a":[["Pfam%3APF22829","HphA C-terminal domain"],["Pfam%3APF22828","HphA N-terminal heme-binding domain"],["Pfam%3APF28205","Ciprofloxacin tolerance protein"],["Pfam%3APF19582","Solute-binding protein AdeT 1/2"],["PROSITE%3APS00337","Beta-lactamase class-D active site"],["Pfam%3APF24575","Surface lipoprotein assembly modifier, N-terminal TPR repeats"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A1311139","Acinetobacter baumannii 016901DP_1"],["NCBITaxon%3A1311140","Acinetobacter baumannii 016901DP_2"],["NCBITaxon%3A1310784","Acinetobacter baumannii 1007214"],["NCBITaxon%3A1310751","Acinetobacter baumannii 1022959"],["NCBITaxon%3A1310586","Acinetobacter baumannii 1031433"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":10,"nb":5776,"a":[["TED%3AAF-A0A5T2E4X7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5T2E4X7-F1-model_v4_TED01"],["TED%3AAF-A0A5Y4BP44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Y4BP44-F1-model_v4_TED01"],["TED%3AAF-A0A623P6F3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A623P6F3-F1-model_v4_TED02"],["TED%3AAF-A0A721BDS7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A721BDS7-F1-model_v4_TED02"],["TED%3AAF-A0A743P324-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A743P324-F1-model_v4_TED01"],["TED%3AAF-A0A757VWR3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A757VWR3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A54736","Salmonella bongori"],["NCBITaxon%3A218493","Salmonella bongori NCTC 12419"],["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59203","Salmonella enterica subsp. arizonae"],["NCBITaxon%3A2577126","Salmonella enterica subsp. arizonae serovar 11:z4,z23:-"],["NCBITaxon%3A2577127","Salmonella enterica subsp. arizonae serovar 13,22:z4,z23:-"]]},{"id":"NCBITaxon:1496","l":"Clostridioides difficile","na":10,"nb":296,"a":[["Pfam%3APF18671","4-Hydroxyphenylacetate decarboxylase subunit gamma N-terminal"],["Pfam%3APF00302","Chloramphenicol acetyltransferase"],["Pfam%3APF18524","High potential iron-sulfur protein like"],["Pfam%3APF06050","2-hydroxyglutaryl-CoA dehydratase, D-component"],["PROSITE%3APS00100","Chloramphenicol acetyltransferase active site"],["Pfam%3APF01473","Putative cell wall binding repeat"]],"b":[["NCBITaxon%3A1496","Clostridioides difficile"],["NCBITaxon%3A997827","Clostridioides difficile 002-P50-2011"],["NCBITaxon%3A997828","Clostridioides difficile 050-P50-2011"],["NCBITaxon%3A699033","Clostridioides difficile 2007855"],["NCBITaxon%3A1151306","Clostridioides difficile 342"],["NCBITaxon%3A1151307","Clostridioides difficile 360"]]},{"id":"NCBITaxon:316","l":"Stutzerimonas stutzeri","na":10,"nb":28,"a":[["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF09081","Glucan 1,4-alpha-maltotetraohydrolase, domain C"],["Pfam%3APF09459","Ethylbenzene dehydrogenase"],["Pfam%3APF08406","CbbQ/NirQ/NorQ C-terminal"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"],["Pfam%3APF18793","Nitrous oxide reductase propeller repeat 2"]],"b":[["NCBITaxon%3A729","Haemophilus parainfluenzae"],["NCBITaxon%3A43306","Pseudomonas denitrificans (nom. rej.)"],["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A203192","Stutzerimonas chloritidismutans"],["NCBITaxon%3A3022791","Stutzerimonas decontaminans"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":20,"nb":10,"a":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF27529","AMPT"],["Pfam%3APF24856","L-arabinose isomerase central domain"],["Pfam%3APF02610","L-arabinose isomerase N-terminal domain"],["Pfam%3APF11762","L-arabinose isomerase C-terminal domain"],["Pfam%3APF17727","CtsR C-terminal dimerization domain"]],"b":[["NCBITaxon%3A1891658","Geobacillus sp."],["NCBITaxon%3A1422","Geobacillus stearothermophilus"],["NCBITaxon%3A272567","Geobacillus stearothermophilus 10"],["NCBITaxon%3A1366047","Geobacillus stearothermophilus ATCC 12980"],["NCBITaxon%3A937593","Geobacillus stearothermophilus ATCC 7953"],["NCBITaxon%3A664733","Geobacillus stearothermophilus C56-N21"]]},{"id":"NCBITaxon:387","l":"Rhizobium leguminosarum bv. viciae","na":10,"nb":15,"a":[["Pfam%3APF27444","Uridylyltransferase GlnD third domain"],["Pfam%3APF08335","GlnD PII-uridylyltransferase"],["Pfam%3APF19335","Heavy metal binding domain"],["Pfam%3APF22521","Carbamoyltransferase, Kae1-like Domain, second subdomain"],["Pfam%3APF17788","HypF Kae1-like domain"],["Pfam%3APF04955","HupE / UreJ protein"]],"b":[["NCBITaxon%3A387","Rhizobium leguminosarum bv. viciae"],["NCBITaxon%3A1041141","Rhizobium leguminosarum bv. viciae 128C53"],["NCBITaxon%3A936136","Rhizobium leguminosarum bv. viciae 248"],["NCBITaxon%3A1041142","Rhizobium leguminosarum bv. viciae GB30"],["NCBITaxon%3A1079454","Rhizobium leguminosarum bv. viciae Ps8"],["NCBITaxon%3A935553","Rhizobium leguminosarum bv. viciae TOM"]]},{"id":"NCBITaxon:210","l":"Helicobacter pylori","na":9,"nb":631,"a":[["Pfam%3APF18025","Alpha-(1,3)-fucosyltransferase FucT N-terminal domain"],["Pfam%3APF18971","CagA protein"],["Pfam%3APF03507","CagA exotoxin phosphopeptide substrate mimic region"],["Pfam%3APF02691","Vacuolating cyotoxin beta-helical domain"],["TED%3AAF-A0A2T6UWI4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T6UWI4-F1-model_v4_TED01"],["TED%3AAF-A0A1Q9JB12-F1-model_v4_TED01","TED novel fold AF-A0A1Q9JB12-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A210","Helicobacter pylori"],["NCBITaxon%3A1028810","Helicobacter pylori 10700"],["NCBITaxon%3A585532","Helicobacter pylori 118"],["NCBITaxon%3A102610","Helicobacter pylori #12"],["NCBITaxon%3A585533","Helicobacter pylori 120"],["NCBITaxon%3A103187","Helicobacter pylori 15818"]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":9,"nb":389,"a":[["Pfam%3APF19567","Capsular polysaccharide synthesis, CpsB/CapC"],["Pfam%3APF07501","G5 domain"],["Pfam%3APF13551","Winged helix-turn helix"],["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF03047","COMC family"],["Pfam%3APF04556","DpnII restriction endonuclease"]],"b":[["NCBITaxon%3A1503055","Burkholderia territorii"],["NCBITaxon%3A1270","Micrococcus luteus"],["NCBITaxon%3A465515","Micrococcus luteus NCTC 2665"],["NCBITaxon%3A33051","Sphingomonas sanguinis"],["NCBITaxon%3A1219054","Sphingomonas sanguinis NBRC 13937"],["NCBITaxon%3A1313","Streptococcus pneumoniae"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":9,"nb":176,"a":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF25954","CusB-like, beta-barrel domain"],["Pfam%3APF13438","Domain of unknown function (DUF4113)"],["Pfam%3APF03767","HAD superfamily, subfamily IIIB (Acid phosphatase)"],["Pfam%3APF03496","ADP-ribosyltransferase exoenzyme"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A90371","Salmonella enterica subsp. enterica serovar Typhimurium"],["NCBITaxon%3A1173928","Salmonella enterica subsp. enterica serovar Typhimurium str. 0052"],["NCBITaxon%3A1114946","Salmonella enterica subsp. enterica serovar Typhimurium str. 00-01036"],["NCBITaxon%3A1173930","Salmonella enterica subsp. enterica serovar Typhimurium str. 0364"]]},{"id":"NCBITaxon:1898207","l":"Clostridiales bacterium","na":63,"nb":9,"a":[["TED%3AAF-A0A239QGX8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A239QGX8-F1-model_v4_TED02"],["TED%3AAF-A0A2V2DI93-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V2DI93-F1-model_v4_TED02"],["TED%3AAF-A0A2V2EHK5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V2EHK5-F1-model_v4_TED02"],["TED%3AAF-A0A2V2G296-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2V2G296-F1-model_v4_TED03"],["TED%3AAF-A0A316P962-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A316P962-F1-model_v4_TED03"],["TED%3AAF-A0A316PDC9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A316PDC9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1898207","Clostridiales bacterium"],["NCBITaxon%3A3070003","Clostridiales bacterium T6-6.105"],["NCBITaxon%3A3070004","Clostridiales bacterium T6-6.35"],["NCBITaxon%3A3070005","Clostridiales bacterium T6-6.39"],["NCBITaxon%3A3070006","Clostridiales bacterium T6-7.35"],["NCBITaxon%3A3070007","Clostridiales bacterium T6-7.60"]]},{"id":"NCBITaxon:818","l":"Bacteroides thetaiotaomicron","na":9,"nb":32,"a":[["Pfam%3APF09093","Lyase, catalytic"],["TED%3AAF-A0A174W9M0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A174W9M0-F1-model_v4_TED01"],["TED%3AAF-A0A679HCU6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A679HCU6-F1-model_v4_TED01"],["TED%3AAF-A0A139L295-F1-model_v4_TED04","TED novel fold AF-A0A139L295-F1-model_v4_TED04"],["TED%3AAF-A0A174QBB7-F1-model_v4_TED02","TED novel fold AF-A0A174QBB7-F1-model_v4_TED02"],["TED%3AAF-A0A679H9T4-F1-model_v4_TED03","TED novel fold AF-A0A679H9T4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A47678","Bacteroides caccae"],["NCBITaxon%3A411901","Bacteroides caccae ATCC 43185"],["NCBITaxon%3A29523","Bacteroides sp."],["NCBITaxon%3A818","Bacteroides thetaiotaomicron"],["NCBITaxon%3A1263054","Bacteroides thetaiotaomicron CAG:40"],["NCBITaxon%3A1235785","Bacteroides thetaiotaomicron dnLKV9"]]},{"id":"NCBITaxon:192222","l":"Campylobacter jejuni subsp. jejuni NCTC 11168 = ATCC 700819","na":10,"nb":9,"a":[["Pfam%3APF26365","Apolipoprotein N-acyltransferase integral membrane domain"],["Pfam%3APF22131","CRISPR-associated endonuclease CjCas9 PI-CTD domain"],["Pfam%3APF22129","CRISPR-associated endonuclease CjCas9 wedge domain"],["Pfam%3APF02554","Carbon starvation protein CstA"],["Pfam%3APF27310","HrcA C-terminal domain"],["Pfam%3APF05538","Campylobacter major outer membrane protein"]],"b":[["NCBITaxon%3A197","Campylobacter jejuni"],["NCBITaxon%3A192222","Campylobacter jejuni subsp. jejuni NCTC 11168 = ATCC 700819"],["NCBITaxon%3A1211776","Campylobacter jejuni subsp. jejuni NCTC 11168-BN148"],["NCBITaxon%3A1385724","Campylobacter jejuni subsp. jejuni NCTC 11168-GSv"],["NCBITaxon%3A1385720","Campylobacter jejuni subsp. jejuni NCTC 11168-K12E5"],["NCBITaxon%3A1385723","Campylobacter jejuni subsp. jejuni NCTC 11168-Kf1"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":8,"nb":375,"a":[["Pfam%3APF01721","Class II bacteriocin"],["Pfam%3APF13700","Domain of unknown function (DUF4158)"],["Pfam%3APF07478","D-ala D-ala ligase C-terminus"],["Pfam%3APF01820","D-ala D-ala ligase N-terminus"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"],["PROSITE%3APS00843","D-alanine--D-alanine ligase signature 1"]],"b":[["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A1352","Enterococcus faecium"],["NCBITaxon%3A1391465","Enterococcus faecium 10/96A"],["NCBITaxon%3A1259824","Enterococcus faecium 13.SD.W.09"],["NCBITaxon%3A1429401","Enterococcus faecium 17282"],["NCBITaxon%3A565659","Enterococcus faecium 1,141,733"]]},{"id":"NCBITaxon:99287","l":"Salmonella enterica subsp. enterica serovar Typhimurium str. LT2","na":167,"nb":8,"a":[["Pfam%3APF16031","TonB polyproline region"],["Pfam%3APF13521","AAA domain"],["Pfam%3APF26341","tRNA 2-selenouridine synthase AAA domain"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"],["Pfam%3APF09317","Acyl-CoA dehydrogenase, C-terminal, bacterial type"],["Pfam%3APF06315","Isocitrate dehydrogenase kinase/phosphatase (AceK) kinase domain"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A588858","Salmonella enterica subsp. enterica serovar Typhimurium str. 14028S"],["NCBITaxon%3A1094461","Salmonella enterica subsp. enterica serovar Typhimurium str. G455"],["NCBITaxon%3A99287","Salmonella enterica subsp. enterica serovar Typhimurium str. LT2"],["NCBITaxon%3A1159899","Salmonella enterica subsp. enterica serovar Typhimurium str. LT2-4"]]},{"id":"NCBITaxon:1359","l":"Lactococcus cremoris","na":8,"nb":24,"a":[["Pfam%3APF16873","Putative abortive phage resistance protein AbiGii toxin"],["Pfam%3APF21368","AI2M/AI1M-like, HNH endonuclease"],["Pfam%3APF09136","Glucodextranase, domain B"],["Pfam%3APF10899","Putative abortive phage resistance protein AbiGi, antitoxin"],["Pfam%3APF04556","DpnII restriction endonuclease"],["Pfam%3APF04369","Lactococcin-like family"]],"b":[["NCBITaxon%3A1359","Lactococcus cremoris"],["NCBITaxon%3A1286879","Lactococcus cremoris HB61"],["NCBITaxon%3A1286880","Lactococcus cremoris HB63"],["NCBITaxon%3A2816960","Lactococcus cremoris subsp. cremoris"],["NCBITaxon%3A1104322","Lactococcus cremoris subsp. cremoris A76"],["NCBITaxon%3A1415168","Lactococcus cremoris subsp. cremoris GE214"]]},{"id":"NCBITaxon:1061","l":"Rhodobacter capsulatus","na":14,"nb":8,"a":[["Pfam%3APF03703","Bacterial PH domain"],["Pfam%3APF01322","Cytochrome C'"],["Pfam%3APF03139","Vanadium/alternative nitrogenase delta subunit"],["Pfam%3APF09527","Putative F0F1-ATPase subunit Ca2+/Mg2+ transporter"],["Pfam%3APF03270","Protein of unknown function, DUF269"],["Pfam%3APF11953","Domain of unknown function (DUF3470)"]],"b":[["NCBITaxon%3A1061","Rhodobacter capsulatus"],["NCBITaxon%3A1415162","Rhodobacter capsulatus B6"],["NCBITaxon%3A1415160","Rhodobacter capsulatus DE442"],["NCBITaxon%3A1415163","Rhodobacter capsulatus R121"],["NCBITaxon%3A272942","Rhodobacter capsulatus SB 1003"],["NCBITaxon%3A1415161","Rhodobacter capsulatus Y262"]]},{"id":"NCBITaxon:1404","l":"Priestia megaterium","na":8,"nb":14,"a":[["Pfam%3APF01890","Cobalamin synthesis G C-terminus"],["Pfam%3APF11761","Cobalamin biosynthesis central region"],["Pfam%3APF11760","Cobalamin synthesis G N-terminal"],["Pfam%3APF02570","Precorrin-8X methylmutase"],["PROSITE%3APS00304","Small, acid-soluble spore proteins, alpha/beta type, signature 1"],["PROSITE%3APS00684","Small, acid-soluble spore proteins, alpha/beta type, signature 2"]],"b":[["NCBITaxon%3A72360","Bacillus mojavensis"],["NCBITaxon%3A1051501","Bacillus mojavensis RO-H-1 = KCTC 3706"],["NCBITaxon%3A1478","Peribacillus simplex"],["NCBITaxon%3A86664","Priestia flexa"],["NCBITaxon%3A1404","Priestia megaterium"],["NCBITaxon%3A592022","Priestia megaterium DSM 319"]]},{"id":"NCBITaxon:555","l":"Pectobacterium carotovorum subsp. carotovorum","na":8,"nb":12,"a":[["Pfam%3APF09147","Carbapenam-3-carboxylate synthase, N-terminal"],["Pfam%3APF00942","Cellulose binding domain"],["Pfam%3APF04287","tRNA pseudouridine synthase C"],["Pfam%3APF04347","Flagellar biosynthesis protein, FliO"],["PROSITE%3APS01061","Flagella transport protein fliP family signature 2"],["PROSITE%3APS00874","Bacterial type II secretion system protein F signature"]],"b":[["NCBITaxon%3A46161","Actinomadura kijaniata"],["NCBITaxon%3A1220561","Actinomadura kijaniata NBRC 14229"],["NCBITaxon%3A1201031","Pectobacterium aroidearum"],["NCBITaxon%3A554","Pectobacterium carotovorum"],["NCBITaxon%3A555","Pectobacterium carotovorum subsp. carotovorum"],["NCBITaxon%3A1267545","Pectobacterium carotovorum subsp. carotovorum ICMP 5702"]]},{"id":"NCBITaxon:1265","l":"Ruminococcus flavefaciens","na":8,"nb":9,"a":[["TED%3AAF-A0A1H6I5C3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1H6I5C3-F1-model_v4_TED03"],["TED%3AAF-A0A1K2AQV3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1K2AQV3-F1-model_v4_TED01"],["TED%3AAF-A0A1M7IZN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M7IZN6-F1-model_v4_TED01"],["TED%3AAF-A0A1H6IY18-F1-model_v4_TED01","TED novel fold AF-A0A1H6IY18-F1-model_v4_TED01"],["TED%3AAF-A0A1K1WYY5-F1-model_v4_TED01","TED novel fold AF-A0A1K1WYY5-F1-model_v4_TED01"],["TED%3AAF-A0A1K2C3A7-F1-model_v4_TED01","TED novel fold AF-A0A1K2C3A7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1265","Ruminococcus flavefaciens"],["NCBITaxon%3A1341157","Ruminococcus flavefaciens 007c"],["NCBITaxon%3A1030842","Ruminococcus flavefaciens 17"],["NCBITaxon%3A1384066","Ruminococcus flavefaciens AE3010"],["NCBITaxon%3A1336236","Ruminococcus flavefaciens ATCC 19208"],["NCBITaxon%3A1313302","Ruminococcus flavefaciens B34b"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":8,"nb":8,"a":[["Pfam%3APF02927","Cellulase N-terminal ig-like domain"],["Pfam%3APF00404","Dockerin type I domain"],["PROSITE%3APS00448","Clostridium cellulosome enzymes repeated domain signature"],["PROSITE%3APS60032","Glycosyl hydrolases family 9 (GH9) active site signature 1"],["PROSITE%3APS00592","Glycosyl hydrolases family 9 (GH9) active site signature 2"],["PROSITE%3APS00698","Glycosyl hydrolases family 9 (GH9) active site signature 3"]],"b":[["NCBITaxon%3A1515","Acetivibrio thermocellus"],["NCBITaxon%3A1138384","Acetivibrio thermocellus AD2"],["NCBITaxon%3A203119","Acetivibrio thermocellus ATCC 27405"],["NCBITaxon%3A1349417","Acetivibrio thermocellus BC1"],["NCBITaxon%3A637887","Acetivibrio thermocellus DSM 1313"],["NCBITaxon%3A572545","Acetivibrio thermocellus DSM 2360"]]},{"id":"NCBITaxon:1314","l":"Streptococcus pyogenes","na":7,"nb":839,"a":[["Pfam%3APF13585","CHU_C Type IX secretion signal domain"],["Pfam%3APF24547","Domain of unknown function (DUF7601)"],["Pfam%3APF08998","Bacterial epsilon antitoxin"],["Pfam%3APF06280","Fn3-like domain"],["Pfam%3APF02274","Arginine deiminase"],["Pfam%3APF13734","Spi protease inhibitor"]],"b":[["NCBITaxon%3A45634","Streptococcus cristatus"],["NCBITaxon%3A1314","Streptococcus pyogenes"],["NCBITaxon%3A1050217","Streptococcus pyogenes 005-D5"],["NCBITaxon%3A1210041","Streptococcus pyogenes 06BA18369"],["NCBITaxon%3A1235829","Streptococcus pyogenes A20"],["NCBITaxon%3A562016","Streptococcus pyogenes AA216"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":7,"nb":216,"a":[["Pfam%3APF04439","Streptomycin adenylyltransferase"],["TED%3AAF-A0A696J2C3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A696J2C3-F1-model_v4_TED01"],["TED%3AAF-A0A825M6H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A825M6H4-F1-model_v4_TED01"],["TED%3AAF-A0A5T0SBG5-F1-model_v4_TED01","TED novel fold AF-A0A5T0SBG5-F1-model_v4_TED01"],["TED%3AAF-A0A698JVM3-F1-model_v4_TED03","TED novel fold AF-A0A698JVM3-F1-model_v4_TED03"],["TED%3AAF-A0A824N1N8-F1-model_v4_TED01","TED novel fold AF-A0A824N1N8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A863522","Bryocella elongata"],["NCBITaxon%3A195","Campylobacter coli"],["NCBITaxon%3A197","Campylobacter jejuni"],["NCBITaxon%3A1365653","Campylobacter jejuni 10186"],["NCBITaxon%3A1365189","Campylobacter jejuni 10187"],["NCBITaxon%3A1327986","Campylobacter jejuni 10227"]]},{"id":"NCBITaxon:358","l":"Agrobacterium tumefaciens","na":7,"nb":35,"a":[["Pfam%3APF19443","DAHL domain"],["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"],["Pfam%3APF03524","Conjugal transfer protein"],["Pfam%3APF27439","Chaperone protein DnaJ C-terminal region"],["Pfam%3APF10907","Protein of unknown function (DUF2749)"],["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]],"b":[["NCBITaxon%3A1183421","Agrobacterium fabacearum CFBP 5771"],["NCBITaxon%3A1300224","Agrobacterium fabacearum P4"],["NCBITaxon%3A1183429","Agrobacterium fabacearum S56"],["NCBITaxon%3A1368455","Agrobacterium fabacearum str. Foundi"],["NCBITaxon%3A1183430","Agrobacterium fabacearum TT111"],["NCBITaxon%3A1176649","Agrobacterium fabrum"]]},{"id":"NCBITaxon:28116","l":"Bacteroides ovatus","na":7,"nb":33,"a":[["TED%3AAF-A0A515J030-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A515J030-F1-model_v4_TED01"],["TED%3AAF-A0A5M5C3M7-F1-model_v4_TED01","TED novel fold AF-A0A5M5C3M7-F1-model_v4_TED01"],["TED%3AAF-A0A641PL20-F1-model_v4_TED01","TED novel fold AF-A0A641PL20-F1-model_v4_TED01"],["TED%3AAF-A0A641V3P9-F1-model_v4_TED03","TED novel fold AF-A0A641V3P9-F1-model_v4_TED03"],["TED%3AAF-A0A641VT79-F1-model_v4_TED01","TED novel fold AF-A0A641VT79-F1-model_v4_TED01"],["TED%3AAF-A0A642C648-F1-model_v4_TED01","TED novel fold AF-A0A642C648-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28116","Bacteroides ovatus"],["NCBITaxon%3A665954","Bacteroides ovatus 3_8_47FAA"],["NCBITaxon%3A411476","Bacteroides ovatus ATCC 8483"],["NCBITaxon%3A1263050","Bacteroides ovatus CAG:22"],["NCBITaxon%3A997885","Bacteroides ovatus CL02T12C04"],["NCBITaxon%3A997886","Bacteroides ovatus CL03T12C18"]]},{"id":"NCBITaxon:1305","l":"Streptococcus sanguinis","na":7,"nb":27,"a":[["Pfam%3APF09254","FokI, cleavage domain"],["Pfam%3APF02981","FokI, recognition domain, subdomain 1"],["Pfam%3APF02980","FokI, recognition domain, subdomain 2"],["Pfam%3APF07501","G5 domain"],["Pfam%3APF07581","The GLUG motif"],["TED%3AAF-A0A7H8V358-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H8V358-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1302","Streptococcus gordonii"],["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1305","Streptococcus sanguinis"],["NCBITaxon%3A1247655","Streptococcus sanguinis ATCC 15914"],["NCBITaxon%3A997356","Streptococcus sanguinis ATCC 29667"],["NCBITaxon%3A1073373","Streptococcus sanguinis CC94A"]]},{"id":"NCBITaxon:83558","l":"Chlamydia pneumoniae","na":22,"nb":7,"a":[["Pfam%3APF01308","Chlamydia major outer membrane protein"],["Pfam%3APF27167","GRAD helix-turn-helix domain"],["Pfam%3APF03503","Chlamydia cysteine-rich outer membrane protein 3"],["Pfam%3APF03504","Chlamydia cysteine-rich outer membrane protein 6"],["Pfam%3APF07548","Chlamydia polymorphic membrane protein middle domain"],["Pfam%3APF28261","Uncharacterized protein CT_504-like"]],"b":[["NCBITaxon%3A83558","Chlamydia pneumoniae"],["NCBITaxon%3A115711","Chlamydia pneumoniae AR39"],["NCBITaxon%3A1430897","Chlamydia pneumoniae B21"],["NCBITaxon%3A115713","Chlamydia pneumoniae CWL029"],["NCBITaxon%3A138677","Chlamydia pneumoniae J138"],["NCBITaxon%3A406984","Chlamydia pneumoniae LPCoLN"]]},{"id":"NCBITaxon:837","l":"Porphyromonas gingivalis","na":7,"nb":22,"a":[["Pfam%3APF07675","Cleaved Adhesin Domain"],["Pfam%3APF22492","FimA4 pilin C-terminal domain"],["Pfam%3APF15495","Major fimbrial subunit protein type IV, Fimbrillin, C-terminal"],["Pfam%3APF26306","FimD protein third domain"],["Pfam%3APF27397","FimE C-terminal domain"],["Pfam%3APF10365","Domain of unknown function (DUF2436)"]],"b":[["NCBITaxon%3A837","Porphyromonas gingivalis"],["NCBITaxon%3A1403335","Porphyromonas gingivalis 381"],["NCBITaxon%3A1403337","Porphyromonas gingivalis A7436"],["NCBITaxon%3A1403338","Porphyromonas gingivalis A7A1-28"],["NCBITaxon%3A1403336","Porphyromonas gingivalis AJW4"],["NCBITaxon%3A431947","Porphyromonas gingivalis ATCC 33277"]]},{"id":"NCBITaxon:1911","l":"Streptomyces griseus","na":7,"nb":20,"a":[["Pfam%3APF13207","AAA domain"],["Pfam%3APF27054","Beta-methylindole-3-pyruvate reductase C-terminal domain"],["Pfam%3APF26558","3-dehydroquinate synthase II C-terminal domain"],["Pfam%3APF01959","3-dehydroquinate synthase II N-terminal domain"],["Pfam%3APF13459","4Fe-4S single cluster domain"],["Pfam%3APF04655","Aminoglycoside/hydroxyurea antibiotic resistance kinase"]],"b":[["NCBITaxon%3A1884","Streptomyces acrimycini"],["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A67274","Streptomyces argenteolus"],["NCBITaxon%3A1896","Streptomyces bikiniensis"],["NCBITaxon%3A90079","Streptomyces caviscabies"],["NCBITaxon%3A66883","Streptomyces cyaneofuscatus"]]},{"id":"NCBITaxon:672","l":"Vibrio vulnificus","na":7,"nb":19,"a":[["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF08021","Siderophore-interacting FAD-binding domain"],["Pfam%3APF11575","FhuF 2Fe-2S C-terminal domain"],["Pfam%3APF27349","IcsB middle domain"],["Pfam%3APF21735","C-terminal repeat from RTX toxins"],["Pfam%3APF07634","RtxA repeat"]],"b":[["NCBITaxon%3A678","Vibrio sp."],["NCBITaxon%3A672","Vibrio vulnificus"],["NCBITaxon%3A701179","Vibrio vulnificus 06-2450"],["NCBITaxon%3A1246308","Vibrio vulnificus 96-11-17M"],["NCBITaxon%3A1246309","Vibrio vulnificus A1402"],["NCBITaxon%3A1229202","Vibrio vulnificus B2"]]},{"id":"NCBITaxon:624","l":"Shigella sonnei","na":7,"nb":15,"a":[["Pfam%3APF01024","Colicin pore forming domain"],["Pfam%3APF09019","EcoRII C terminal"],["Pfam%3APF26304","FliM/N C-terminal related"],["Pfam%3APF13384","Homeodomain-like domain"],["Pfam%3APF02090","Salmonella surface presentation of antigen gene type M protein"],["Pfam%3APF03519","Invasion protein B family"]],"b":[["NCBITaxon%3A624","Shigella sonnei"],["NCBITaxon%3A1212580","Shigella sonnei 08-7761"],["NCBITaxon%3A1212581","Shigella sonnei 08-7765"],["NCBITaxon%3A1212582","Shigella sonnei 09-1032"],["NCBITaxon%3A1212583","Shigella sonnei 09-2245"],["NCBITaxon%3A1212584","Shigella sonnei 09-4962"]]},{"id":"NCBITaxon:1510","l":"Thermoclostridium stercorarium","na":7,"nb":8,"a":[["Pfam%3APF07523","Bacterial Ig-like domain (group 3)"],["Pfam%3APF03442","Carbohydrate binding domain X2"],["Pfam%3APF00457","Glycosyl hydrolases family 11"],["Pfam%3APF03422","Carbohydrate binding module (family 6)"],["PROSITE%3APS00776","Glycosyl hydrolases family 11 (GH11) active site signature 1"],["PROSITE%3APS00777","Glycosyl hydrolases family 11 (GH11) active site signature 2"]],"b":[["NCBITaxon%3A1510","Thermoclostridium stercorarium"],["NCBITaxon%3A160385","Thermoclostridium stercorarium subsp. leptospartum"],["NCBITaxon%3A1346611","Thermoclostridium stercorarium subsp. leptospartum DSM 9219"],["NCBITaxon%3A160845","Thermoclostridium stercorarium subsp. stercorarium"],["NCBITaxon%3A1121335","Thermoclostridium stercorarium subsp. stercorarium DSM 8532"],["NCBITaxon%3A29351","Thermoclostridium stercorarium subsp. thermolacticum"]]},{"id":"NCBITaxon:37734","l":"Enterococcus casseliflavus","na":7,"nb":8,"a":[["PROSITE%3APS00843","D-alanine--D-alanine ligase signature 1"],["PROSITE%3APS00844","D-alanine--D-alanine ligase signature 2"],["TED%3AAF-A0A1V3NEA6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1V3NEA6-F1-model_v4_TED03"],["TED%3AAF-A0A377MP00-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A377MP00-F1-model_v4_TED01"],["TED%3AAF-A0A377KTN3-F1-model_v4_TED02","TED novel fold AF-A0A377KTN3-F1-model_v4_TED02"],["TED%3AAF-A0A377MJ12-F1-model_v4_TED01","TED novel fold AF-A0A377MJ12-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A37734","Enterococcus casseliflavus"],["NCBITaxon%3A1259825","Enterococcus casseliflavus 14-MB-W-14"],["NCBITaxon%3A888066","Enterococcus casseliflavus ATCC 12755"],["NCBITaxon%3A1158603","Enterococcus casseliflavus ATCC 49996"],["NCBITaxon%3A565654","Enterococcus casseliflavus EC10"],["NCBITaxon%3A565655","Enterococcus casseliflavus EC20"]]},{"id":"NCBITaxon:1307","l":"Streptococcus suis","na":6,"nb":145,"a":[["TED%3AAF-A0A0Z8XA17-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0Z8XA17-F1-model_v4_TED02"],["TED%3AAF-A0A116R309-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A116R309-F1-model_v4_TED02"],["TED%3AAF-A0A3R8SIF2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R8SIF2-F1-model_v4_TED01"],["TED%3AAF-A0A0Z8H9E5-F1-model_v4_TED02","TED novel fold AF-A0A0Z8H9E5-F1-model_v4_TED02"],["TED%3AAF-A0A4T2GPV6-F1-model_v4_TED02","TED novel fold AF-A0A4T2GPV6-F1-model_v4_TED02"],["TED%3AAF-A0A7G1JVZ6-F1-model_v4_TED02","TED novel fold AF-A0A7G1JVZ6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A229549","Streptococcus minor"],["NCBITaxon%3A82806","Streptococcus ovis"],["NCBITaxon%3A1307","Streptococcus suis"],["NCBITaxon%3A672190","Streptococcus suis 05HAS68"],["NCBITaxon%3A391295","Streptococcus suis 05ZYH33"],["NCBITaxon%3A1214149","Streptococcus suis 07SC3"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":6,"nb":101,"a":[["Pfam%3APF16376","N-terminal domain of fragilysin"],["TED%3AAF-A0A412XR06-F1-model_v4_TED03","TED novel fold AF-A0A412XR06-F1-model_v4_TED03"],["TED%3AAF-A0A4V1EUI2-F1-model_v4_TED02","TED novel fold AF-A0A4V1EUI2-F1-model_v4_TED02"],["TED%3AAF-A0A5C6IXH5-F1-model_v4_TED01","TED novel fold AF-A0A5C6IXH5-F1-model_v4_TED01"],["TED%3AAF-A0A5C6L6G9-F1-model_v4_TED02","TED novel fold AF-A0A5C6L6G9-F1-model_v4_TED02"],["TED%3AAF-A0A642KY52-F1-model_v4_TED01","TED novel fold AF-A0A642KY52-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A817","Bacteroides fragilis"],["NCBITaxon%3A457424","Bacteroides fragilis 3_1_12"],["NCBITaxon%3A862962","Bacteroides fragilis 638R"],["NCBITaxon%3A1308728","Bacteroides fragilis ADL-402"],["NCBITaxon%3A1263046","Bacteroides fragilis CAG:47"],["NCBITaxon%3A1263047","Bacteroides fragilis CAG:558"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":6,"nb":66,"a":[["Pfam%3APF01177","Asp/Glu/Hydantoin racemase"],["Pfam%3APF11339","Protein of unknown function (DUF3141)"],["PROSITE%3APS01303","BCCT family of transporters signature"],["PROSITE%3APS00665","Dihydrodipicolinate synthase signature 1"],["TED%3AAF-A0A2J0YSD4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J0YSD4-F1-model_v4_TED01"],["TED%3AAF-A0A843ZNG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843ZNG8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A382","Sinorhizobium meliloti"],["NCBITaxon%3A266834","Sinorhizobium meliloti 1021"],["NCBITaxon%3A1194706","Sinorhizobium meliloti 1A42"],["NCBITaxon%3A1286640","Sinorhizobium meliloti 2011"],["NCBITaxon%3A1041151","Sinorhizobium meliloti 4H41"],["NCBITaxon%3A1194707","Sinorhizobium meliloti 5A14"]]},{"id":"NCBITaxon:40324","l":"Stenotrophomonas maltophilia","na":6,"nb":44,"a":[["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["TED%3AAF-A0A2U4H7T5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2U4H7T5-F1-model_v4_TED02"],["TED%3AAF-A0A2W6G5X3-F1-model_v4_TED01","TED novel fold AF-A0A2W6G5X3-F1-model_v4_TED01"],["TED%3AAF-A0A2W6IKS3-F1-model_v4_TED02","TED novel fold AF-A0A2W6IKS3-F1-model_v4_TED02"],["TED%3AAF-A0A7D0KRT5-F1-model_v4_TED03","TED novel fold AF-A0A7D0KRT5-F1-model_v4_TED03"],["TED%3AAF-A0A7T8PWR1-F1-model_v4_TED05","TED novel fold AF-A0A7T8PWR1-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A13689","Sphingomonas paucimobilis"],["NCBITaxon%3A1292134","Stenotrophomonas africana"],["NCBITaxon%3A3384461","Stenotrophomonas beteli"],["NCBITaxon%3A86189","Stenotrophomonas hibiscicola"],["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A1288954","Stenotrophomonas maltophilia 503"]]},{"id":"NCBITaxon:727","l":"Haemophilus influenzae","na":6,"nb":43,"a":[["Pfam%3APF06808","Tripartite ATP-independent periplasmic transporter, DctM component"],["Pfam%3APF04290","Tripartite ATP-independent periplasmic transporters, DctQ component"],["Pfam%3APF09226","Restriction endonuclease HincII"],["Pfam%3APF09520","Type II restriction endonuclease, HinfI"],["Pfam%3APF24077","Immunoglobulin A1 protease autotransporter domain 2"],["PROSITE%3APS01068","OmpA-like domain"]],"b":[["NCBITaxon%3A727","Haemophilus influenzae"],["NCBITaxon%3A862964","Haemophilus influenzae 10810"],["NCBITaxon%3A1232659","Haemophilus influenzae 2019"],["NCBITaxon%3A374927","Haemophilus influenzae 22.1-21"],["NCBITaxon%3A520729","Haemophilus influenzae 22.1-24"],["NCBITaxon%3A375063","Haemophilus influenzae 22.4-21"]]},{"id":"NCBITaxon:292","l":"Burkholderia cepacia","na":6,"nb":33,"a":[["Pfam%3APF14525","AraC-binding-like domain"],["Pfam%3APF06139","BphX-like"],["Pfam%3APF13340","Putative transposase of IS4/5 family (DUF4096)"],["Pfam%3APF11794","4-hydroxyphenylacetate 3-hydroxylase N terminal"],["Pfam%3APF03241","4-hydroxyphenylacetate 3-hydroxylase C terminal"],["TED%3AAF-A0A4S3H3T1-F1-model_v4_TED02","TED novel fold AF-A0A4S3H3T1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A85698","Achromobacter xylosoxidans"],["NCBITaxon%3A152480","Burkholderia ambifaria"],["NCBITaxon%3A179879","Burkholderia anthina"],["NCBITaxon%3A488730","Burkholderia arboris"],["NCBITaxon%3A95486","Burkholderia cenocepacia"],["NCBITaxon%3A292","Burkholderia cepacia"]]},{"id":"NCBITaxon:1390","l":"Bacillus amyloliquefaciens","na":6,"nb":29,"a":[["Pfam%3APF02923","Restriction endonuclease BamHI"],["Pfam%3APF01337","Barstar (barnase inhibitor)"],["Pfam%3APF22148","Fervidolysin N-terminal prodomain"],["PROSITE%3APS00093","N-4 cytosine-specific DNA methylases signature"],["PROSITE%3APS01334","Pyrrolidone-carboxylate peptidase cysteine active site"],["PROSITE%3APS01333","Pyrrolidone-carboxylate peptidase glutamic acid active site"]],"b":[["NCBITaxon%3A1390","Bacillus amyloliquefaciens"],["NCBITaxon%3A1421566","Bacillus amyloliquefaciens AB01"],["NCBITaxon%3A1421569","Bacillus amyloliquefaciens AP143"],["NCBITaxon%3A1421570","Bacillus amyloliquefaciens AP193"],["NCBITaxon%3A1421567","Bacillus amyloliquefaciens AP71"],["NCBITaxon%3A1421568","Bacillus amyloliquefaciens AP79"]]},{"id":"NCBITaxon:1502","l":"Clostridium perfringens","na":6,"nb":24,"a":[["Pfam%3APF08307","Glycosyl hydrolase family 98 C-terminal domain"],["Pfam%3APF08306","Glycosyl hydrolase family 98"],["Pfam%3APF12645","Helix-turn-helix domain"],["Pfam%3APF03505","Clostridium enterotoxin"],["Pfam%3APF10960","BhlA holin family"],["TED%3AAF-A0A140GRT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A140GRT8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1502","Clostridium perfringens"],["NCBITaxon%3A753641","Clostridium perfringens 310"],["NCBITaxon%3A753640","Clostridium perfringens 3100"],["NCBITaxon%3A37763","Clostridium perfringens A"],["NCBITaxon%3A195103","Clostridium perfringens ATCC 13124"],["NCBITaxon%3A451751","Clostridium perfringens B"]]},{"id":"NCBITaxon:549","l":"Pantoea agglomerans","na":6,"nb":22,"a":[["Pfam%3APF02929","Beta galactosidase small chain"],["Pfam%3APF27279","Fumarate--diaminopropanoate ligase C-terminal domain"],["Pfam%3APF18024","Helix-turn-helix domain"],["Pfam%3APF16353","Beta-galactosidase, domain 4"],["PROSITE%3APS00594","Aromatic amino acids permeases signature"],["PROSITE%3APS00853","Beta-eliminating lyases pyridoxal-phosphate attachment site"]],"b":[["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A221276","[Curtobacterium] plantarum"],["NCBITaxon%3A558","Erwinia sp."],["NCBITaxon%3A83655","Leclercia adecarboxylata"],["NCBITaxon%3A549","Pantoea agglomerans"],["NCBITaxon%3A1261128","Pantoea agglomerans 299R"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":6,"nb":19,"a":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF10779","Haemolysin XhlA"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF08181","DegQ (SacQ) family"],["Pfam%3APF08057","Erythromycin resistance leader peptide"],["Pfam%3APF14867","Lantibiotic alpha"]],"b":[["NCBITaxon%3A1402","Bacillus licheniformis"],["NCBITaxon%3A1169411","Bacillus licheniformis 10-1-A"],["NCBITaxon%3A44097","Bacillus licheniformis 2709"],["NCBITaxon%3A1169412","Bacillus licheniformis 5-2-D"],["NCBITaxon%3A1368424","Bacillus licheniformis CG-B52"],["NCBITaxon%3A1232672","Bacillus licheniformis CGMCC 3963"]]},{"id":"NCBITaxon:321","l":"Pseudomonas syringae pv. syringae","na":6,"nb":18,"a":[["Pfam%3APF03421","YopJ Serine/Threonine acetyltransferase"],["Pfam%3APF17914","HopA1 effector protein family"],["Pfam%3APF27361","HrcQa N-terminal domain"],["Pfam%3APF04877","HrpZ"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]],"b":[["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A1449349","Pseudomonas syringae DSM 10604"],["NCBITaxon%3A1154761","Pseudomonas syringae pv. avellanae str. ISPaVe013"],["NCBITaxon%3A1154762","Pseudomonas syringae pv. avellanae str. ISPaVe037"],["NCBITaxon%3A321","Pseudomonas syringae pv. syringae"],["NCBITaxon%3A1357293","Pseudomonas syringae pv. syringae 1212"]]},{"id":"NCBITaxon:1349","l":"Streptococcus uberis","na":6,"nb":14,"a":[["Pfam%3APF01721","Class II bacteriocin"],["Pfam%3APF09221","Bacteriocin class IId cyclical uberolysin-like"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"],["TED%3AAF-A0A7X2UJT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X2UJT8-F1-model_v4_TED01"],["TED%3AAF-A0A7X2UQ98-F1-model_v4_TED02","TED novel fold AF-A0A7X2UQ98-F1-model_v4_TED02"],["TED%3AAF-A0A8B4IQV9-F1-model_v4_TED03","TED novel fold AF-A0A8B4IQV9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1349","Streptococcus uberis"],["NCBITaxon%3A218495","Streptococcus uberis 0140J"],["NCBITaxon%3A1450192","Streptococcus uberis 6736"],["NCBITaxon%3A1450190","Streptococcus uberis 6780"],["NCBITaxon%3A1450186","Streptococcus uberis Ab71"],["NCBITaxon%3A1450189","Streptococcus uberis B190"]]},{"id":"NCBITaxon:56","l":"Sorangium cellulosum","na":13,"nb":6,"a":[["TED%3AAF-A0A150SQB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A150SQB4-F1-model_v4_TED01"],["TED%3AAF-A0A2L0EP96-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0EP96-F1-model_v4_TED01"],["TED%3AAF-A0A2L0F1G5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0F1G5-F1-model_v4_TED01"],["TED%3AAF-A0A2L0F230-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L0F230-F1-model_v4_TED01"],["TED%3AAF-A0A4P2R1W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P2R1W3-F1-model_v4_TED01"],["TED%3AAF-A0A150P579-F1-model_v4_TED02","TED novel fold AF-A0A150P579-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2093422","Sorangium ambruticinum"],["NCBITaxon%3A2093423","Sorangium bulgaricum"],["NCBITaxon%3A56","Sorangium cellulosum"],["NCBITaxon%3A1254432","Sorangium cellulosum So0157-2"],["NCBITaxon%3A448385","Sorangium cellulosum So ce56"],["NCBITaxon%3A2093377","Sorangium sp."]]},{"id":"NCBITaxon:669","l":"Vibrio harveyi","na":6,"nb":13,"a":[["Pfam%3APF02273","Acyl transferase"],["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF03173","Putative carbohydrate binding domain"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"],["TED%3AAF-A0A454D440-F1-model_v4_TED02","TED novel fold AF-A0A454D440-F1-model_v4_TED02"],["TED%3AAF-A0A8B3DE42-F1-model_v4_TED03","TED novel fold AF-A0A8B3DE42-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A342113","Burkholderia oklahomensis"],["NCBITaxon%3A669","Vibrio harveyi"],["NCBITaxon%3A673519","Vibrio harveyi 1DA3"],["NCBITaxon%3A1287887","Vibrio harveyi AOD131"],["NCBITaxon%3A1125980","Vibrio harveyi CAIM 1792"],["NCBITaxon%3A1352943","Vibrio harveyi E385"]]},{"id":"NCBITaxon:1397","l":"Niallia circulans","na":6,"nb":10,"a":[["Pfam%3APF03423","Carbohydrate binding domain (family 25)"],["Pfam%3APF13199","Glycosyl hydrolase family 66"],["Pfam%3APF14399","Butirosin biosynthesis protein H, N-terminal"],["Pfam%3APF19634","Family of unknown function (DUF6137)"],["PROSITE%3APS60000","Chitosanases families 46 and 80 active sites signature"],["TED%3AAF-A0A0J1IR10-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0J1IR10-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1393","Brevibacillus brevis"],["NCBITaxon%3A1397","Niallia circulans"],["NCBITaxon%3A1348626","Niallia circulans NBRC 13626"],["NCBITaxon%3A44160","Niallia circulans subsp. alkalophilus"],["NCBITaxon%3A74308","Niallia circulans subsp. circulans"],["NCBITaxon%3A59846","Paenibacillus chibensis"]]},{"id":"NCBITaxon:5061","l":"Aspergillus niger","na":10,"nb":6,"a":[["Pfam%3APF17433","Glycosyl hydrolase family 49 N-terminal Ig-like domain"],["PROSITE%3APS00820","Glucoamylase active site region signature"],["PROSITE%3APS00920","Nitrilases / cyanide hydratase signature 1"],["PROSITE%3APS00502","Polygalacturonase active site"],["Pfam%3APF18841","Beta solenoid repeat from Dextranase"],["Pfam%3APF03718","Glycosyl hydrolase family 49"]],"b":[["NCBITaxon%3A547018","Zhihengliuella alba"],["NCBITaxon%3A5061","Aspergillus niger"],["NCBITaxon%3A380704","Aspergillus niger ATCC 1015"],["NCBITaxon%3A1353008","Aspergillus niger ATCC 13496"],["NCBITaxon%3A1450533","Aspergillus niger CBS 101883"],["NCBITaxon%3A425011","Aspergillus niger CBS 513.88"]]},{"id":"NCBITaxon:853","l":"Faecalibacterium prausnitzii","na":10,"nb":6,"a":[["TED%3AAF-A0A2A7AJ69-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A7AJ69-F1-model_v4_TED01"],["TED%3AAF-A0A329UNG0-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A329UNG0-F1-model_v4_TED05"],["TED%3AAF-A0A3F3JVN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3F3JVN3-F1-model_v4_TED01"],["TED%3AAF-A0A564SWB8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A564SWB8-F1-model_v4_TED02"],["TED%3AAF-A0A173SIF7-F1-model_v4_TED01","TED novel fold AF-A0A173SIF7-F1-model_v4_TED01"],["TED%3AAF-A0A173WYP6-F1-model_v4_TED01","TED novel fold AF-A0A173WYP6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A748224","Faecalibacterium cf. prausnitzii KLE1255"],["NCBITaxon%3A411483","Faecalibacterium duncaniae"],["NCBITaxon%3A853","Faecalibacterium prausnitzii"],["NCBITaxon%3A718252","Faecalibacterium prausnitzii L2-6"],["NCBITaxon%3A411485","Faecalibacterium prausnitzii M21/2"],["NCBITaxon%3A657322","Faecalibacterium prausnitzii SL3/3"]]},{"id":"NCBITaxon:1421","l":"Lysinibacillus sphaericus","na":6,"nb":9,"a":[["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF03744","6-carboxyhexanoate--CoA ligase"],["PROSITE%3APS00836","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 1"],["PROSITE%3APS00837","Alanine dehydrogenase & pyridine nucleotide transhydrogenase signature 2"],["TED%3AAF-A0A2S5D092-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5D092-F1-model_v4_TED01"],["TED%3AAF-A0A2S0JW09-F1-model_v4_TED01","TED novel fold AF-A0A2S0JW09-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28031","Lysinibacillus fusiformis"],["NCBITaxon%3A1130819","Lysinibacillus mangiferihumi"],["NCBITaxon%3A1421","Lysinibacillus sphaericus"],["NCBITaxon%3A444177","Lysinibacillus sphaericus C3-41"],["NCBITaxon%3A1400869","Lysinibacillus sphaericus CBAM5"],["NCBITaxon%3A1354027","Lysinibacillus sphaericus KCTC 3346"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":9,"nb":6,"a":[["Pfam%3APF07835","Bacterial aa3 type cytochrome c oxidase subunit IV"],["Pfam%3APF04828","Glutathione-dependent formaldehyde-activating enzyme"],["Pfam%3APF16448","LapD/MoxY periplasmic domain"],["Pfam%3APF17267","Family of unknown function (DUF5333)"],["Pfam%3APF17272","Family of unknown function (DUF5337)"],["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"]],"b":[["NCBITaxon%3A266","Paracoccus denitrificans"],["NCBITaxon%3A1302247","Paracoccus denitrificans JCM 21484"],["NCBITaxon%3A318586","Paracoccus denitrificans PD1222"],["NCBITaxon%3A1051075","Paracoccus denitrificans SD1"],["NCBITaxon%3A82367","Paracoccus pantotrophus"],["NCBITaxon%3A189685","uncultured Paracoccus sp."]]},{"id":"NCBITaxon:323","l":"Pseudomonas syringae pv. tomato","na":6,"nb":8,"a":[["Pfam%3APF16847","Avirulence AvrPtoB, BAK1-binding domain"],["Pfam%3APF09046","AvrPtoB E3 ubiquitin ligase"],["Pfam%3APF04234","CopC domain"],["Pfam%3APF21085","CusS sensor domain"],["Pfam%3APF05275","Copper resistance protein B precursor (CopB)"],["TED%3AAF-A0A5E9N4C0-F1-model_v4_TED01","TED novel fold AF-A0A5E9N4C0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A323","Pseudomonas syringae pv. tomato"],["NCBITaxon%3A1324324","Pseudomonas syringae pv. tomato C3"],["NCBITaxon%3A673189","Pseudomonas syringae pv. tomato K40"],["NCBITaxon%3A673198","Pseudomonas syringae pv. tomato Max13"],["NCBITaxon%3A673265","Pseudomonas syringae pv. tomato NCPPB 1108"],["NCBITaxon%3A223283","Pseudomonas syringae pv. tomato str. DC3000"]]},{"id":"NCBITaxon:101571","l":"Burkholderia ubonensis","na":6,"nb":6,"a":[["TED%3AAF-A0A118H7W5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A118H7W5-F1-model_v4_TED01"],["TED%3AAF-A0A853WTK8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A853WTK8-F1-model_v4_TED01"],["TED%3AAF-A0A104J6D5-F1-model_v4_TED03","TED novel fold AF-A0A104J6D5-F1-model_v4_TED03"],["TED%3AAF-A0A104Z719-F1-model_v4_TED01","TED novel fold AF-A0A104Z719-F1-model_v4_TED01"],["TED%3AAF-A0A106QCV3-F1-model_v4_TED01","TED novel fold AF-A0A106QCV3-F1-model_v4_TED01"],["TED%3AAF-A0A124U5S7-F1-model_v4_TED02","TED novel fold AF-A0A124U5S7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A101571","Burkholderia ubonensis"],["NCBITaxon%3A441166","Burkholderia ubonensis Bu"],["NCBITaxon%3A1436049","Burkholderia ubonensis MSMB153"],["NCBITaxon%3A1249668","Burkholderia ubonensis MSMB22"],["NCBITaxon%3A1436063","Burkholderia ubonensis MSMB57"],["NCBITaxon%3A265293","Burkholderia ubonensis subsp. mesacidophila"]]},{"id":"NCBITaxon:224308","l":"Bacillus subtilis subsp. subtilis str. 168","na":11310,"nb":5,"a":[["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.10.3.-","With oxygen as acceptor"],["EC%3A1.13.12.-","With incorporation of one atom of oxygen (internal monooxygenases or internal mixed function oxidases)"],["EC%3A1.14.19.-","With oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water"],["EC%3A1.17.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.21.98.-","With other, known acceptors"]],"b":[["NCBITaxon%3A1423","Bacillus subtilis"],["NCBITaxon%3A135461","Bacillus subtilis subsp. subtilis"],["NCBITaxon%3A224308","Bacillus subtilis subsp. subtilis str. 168"],["NCBITaxon%3A536088","Bacillus subtilis subsp. subtilis str. L170"],["NCBITaxon%3A536089","Bacillus subtilis subsp. subtilis str. N170"]]},{"id":"NCBITaxon:1491","l":"Clostridium botulinum","na":5,"nb":284,"a":[["Pfam%3APF24729","Acb2/Tad1, hairpin domain"],["TED%3AAF-A0A2I4NFI4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2I4NFI4-F1-model_v4_TED02"],["TED%3AAF-A0A6B4TC92-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6B4TC92-F1-model_v4_TED01"],["TED%3AAF-A0A6B4E2T6-F1-model_v4_TED01","TED novel fold AF-A0A6B4E2T6-F1-model_v4_TED01"],["TED%3AAF-A0A6G4HNV8-F1-model_v4_TED01","TED novel fold AF-A0A6G4HNV8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1491","Clostridium botulinum"],["NCBITaxon%3A696040","Clostridium botulinum 14860"],["NCBITaxon%3A1415774","Clostridium botulinum 202F"],["NCBITaxon%3A696053","Clostridium botulinum 213B"],["NCBITaxon%3A696051","Clostridium botulinum 32B"],["NCBITaxon%3A696049","Clostridium botulinum 399A"]]},{"id":"NCBITaxon:195","l":"Campylobacter coli","na":5,"nb":122,"a":[["PROSITE%3APS00100","Chloramphenicol acetyltransferase active site"],["TED%3AAF-A0A697DVN1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A697DVN1-F1-model_v4_TED01"],["TED%3AAF-A0A5T0YXG5-F1-model_v4_TED02","TED novel fold AF-A0A5T0YXG5-F1-model_v4_TED02"],["TED%3AAF-A0A825MHY8-F1-model_v4_TED03","TED novel fold AF-A0A825MHY8-F1-model_v4_TED03"],["TED%3AAF-A0A828DMV9-F1-model_v4_TED01","TED novel fold AF-A0A828DMV9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A195","Campylobacter coli"],["NCBITaxon%3A887290","Campylobacter coli 1091"],["NCBITaxon%3A887291","Campylobacter coli 1098"],["NCBITaxon%3A887280","Campylobacter coli 111-3"],["NCBITaxon%3A887292","Campylobacter coli 1148"],["NCBITaxon%3A887282","Campylobacter coli 132-6"]]},{"id":"NCBITaxon:813","l":"Chlamydia trachomatis","na":5,"nb":100,"a":[["Pfam%3APF07382","Histone H1-like nucleoprotein HC2"],["Pfam%3APF01308","Chlamydia major outer membrane protein"],["Pfam%3APF05475","Pgp3 C-terminal domain"],["Pfam%3APF03504","Chlamydia cysteine-rich outer membrane protein 6"],["TED%3AAF-C7DZ76-F1-model_v4_TED01","TED novel fold AF-C7DZ76-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A813","Chlamydia trachomatis"],["NCBITaxon%3A564416","Chlamydia trachomatis 6276"],["NCBITaxon%3A564417","Chlamydia trachomatis 6276s"],["NCBITaxon%3A564418","Chlamydia trachomatis 70"],["NCBITaxon%3A564419","Chlamydia trachomatis 70s"],["NCBITaxon%3A580047","Chlamydia trachomatis A2497"]]},{"id":"NCBITaxon:384","l":"Rhizobium leguminosarum","na":5,"nb":39,"a":[["Pfam%3APF10931","Protein of unknown function (DUF2735)"],["TED%3AAF-A0A1B1C3F3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1B1C3F3-F1-model_v4_TED02"],["TED%3AAF-A0A4Q8XNE1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q8XNE1-F1-model_v4_TED01"],["TED%3AAF-A0A6P0B3F8-F1-model_v4_TED02","TED novel fold AF-A0A6P0B3F8-F1-model_v4_TED02"],["TED%3AAF-A0A6P0DM15-F1-model_v4_TED01","TED novel fold AF-A0A6P0DM15-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A3019932","Rhizobium brockwellii"],["NCBITaxon%3A384","Rhizobium leguminosarum"],["NCBITaxon%3A385","Rhizobium leguminosarum bv. phaseoli"],["NCBITaxon%3A936350","Rhizobium leguminosarum bv. phaseoli 4292"],["NCBITaxon%3A1408223","Rhizobium leguminosarum bv. phaseoli CCGM1"],["NCBITaxon%3A1041140","Rhizobium leguminosarum bv. phaseoli FA23"]]},{"id":"NCBITaxon:5507","l":"Fusarium oxysporum","na":5,"nb":27,"a":[["Pfam%3APF02015","Glycosyl hydrolase family 45"],["PROSITE%3APS01140","Glycosyl hydrolases family 45 active site"],["TED%3AAF-A0A2H3TJY2-F1-model_v4_TED01","TED novel fold AF-A0A2H3TJY2-F1-model_v4_TED01"],["TED%3AAF-A0A420N954-F1-model_v4_TED01","TED novel fold AF-A0A420N954-F1-model_v4_TED01"],["TED%3AAF-A0A420P6J4-F1-model_v4_TED01","TED novel fold AF-A0A420P6J4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5507","Fusarium oxysporum"],["NCBITaxon%3A72712","Fusarium oxysporum f. sp. albedinis"],["NCBITaxon%3A396571","Fusarium oxysporum f. sp. cepae"],["NCBITaxon%3A62683","Fusarium oxysporum f. sp. ciceris"],["NCBITaxon%3A100902","Fusarium oxysporum f. sp. conglutinans"],["NCBITaxon%3A660025","Fusarium oxysporum f. sp. conglutinans Fo5176"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":25,"nb":5,"a":[["Pfam%3APF13372","Alginate export"],["Pfam%3APF25965","ALG44 beta-barrel domain"],["Pfam%3APF25964","ALG44, barrel-sandwich hybrid domain"],["Pfam%3APF16844","Dinitrogenase iron-molybdenum cofactor, N-terminal"],["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"]],"b":[["NCBITaxon%3A354","Azotobacter vinelandii"],["NCBITaxon%3A1283330","Azotobacter vinelandii CA"],["NCBITaxon%3A1283331","Azotobacter vinelandii CA6"],["NCBITaxon%3A322710","Azotobacter vinelandii DJ"],["NCBITaxon%3A1314750","Azotobacter vinelandii NBRC 13581"]]},{"id":"NCBITaxon:1598","l":"Limosilactobacillus reuteri","na":5,"nb":23,"a":[["TED%3AAF-A0A6N1EMN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N1EMN7-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2V3C3-F1-model_v4_TED01","TED novel fold AF-A0A1Y2V3C3-F1-model_v4_TED01"],["TED%3AAF-A0A848BUA9-F1-model_v4_TED01","TED novel fold AF-A0A848BUA9-F1-model_v4_TED01"],["TED%3AAF-A0A855XJ18-F1-model_v4_TED01","TED novel fold AF-A0A855XJ18-F1-model_v4_TED01"],["TED%3AAF-Q6WUB1-F1-model_v4_TED03","TED novel fold AF-Q6WUB1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1581","Lentilactobacillus buchneri"],["NCBITaxon%3A2767931","Lentilactobacillus sp."],["NCBITaxon%3A1613","Limosilactobacillus fermentum"],["NCBITaxon%3A1598","Limosilactobacillus reuteri"],["NCBITaxon%3A1273150","Limosilactobacillus reuteri 1063"],["NCBITaxon%3A525341","Limosilactobacillus reuteri CF48-3A"]]},{"id":"NCBITaxon:1833","l":"Rhodococcus erythropolis","na":5,"nb":19,"a":[["Pfam%3APF08028","Acyl-CoA dehydrogenase, C-terminal domain"],["Pfam%3APF13816","Haem-containing dehydratase"],["Pfam%3APF07858","Limonene-1,2-epoxide hydrolase catalytic domain"],["Pfam%3APF09663","Amidohydrolase ring-opening protein (Amido_AtzD_TrzD)"],["TED%3AAF-A0A401N7F7-F1-model_v4_TED02","TED novel fold AF-A0A401N7F7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1818","Nocardia globerula"],["NCBITaxon%3A1821","Nocardia sp."],["NCBITaxon%3A53432","Nocardia uniformis"],["NCBITaxon%3A1210100","Nocardia uniformis NBRC 13702"],["NCBITaxon%3A1833","Rhodococcus erythropolis"],["NCBITaxon%3A1136179","Rhodococcus erythropolis CCM2595"]]},{"id":"NCBITaxon:305","l":"Ralstonia solanacearum","na":5,"nb":19,"a":[["Pfam%3APF14897","EpsG family"],["TED%3AAF-A0A7I8FQZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7I8FQZ6-F1-model_v4_TED01"],["TED%3AAF-A0A7H1MI34-F1-model_v4_TED01","TED novel fold AF-A0A7H1MI34-F1-model_v4_TED01"],["TED%3AAF-A0A7I8FKL4-F1-model_v4_TED01","TED novel fold AF-A0A7I8FKL4-F1-model_v4_TED01"],["TED%3AAF-A0A850FKB0-F1-model_v4_TED01","TED novel fold AF-A0A850FKB0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1310165","Ralstonia pseudosolanacearum"],["NCBITaxon%3A305","Ralstonia solanacearum"],["NCBITaxon%3A859656","Ralstonia solanacearum CFBP2957"],["NCBITaxon%3A859655","Ralstonia solanacearum CMR15"],["NCBITaxon%3A1130828","Ralstonia solanacearum FJAT-1458"],["NCBITaxon%3A1130829","Ralstonia solanacearum FJAT-91"]]},{"id":"NCBITaxon:552","l":"Erwinia amylovora","na":5,"nb":17,"a":[["Pfam%3APF09008","Head binding"],["Pfam%3APF11725","AvrE-family Type-III effector proteins (T3Es)"],["Pfam%3APF03608","PTS system enzyme II sorbitol-specific factor"],["Pfam%3APF07663","Sorbitol phosphotransferase enzyme II C-terminus"],["Pfam%3APF03612","Sorbitol phosphotransferase enzyme II N-terminus"]],"b":[["NCBITaxon%3A552","Erwinia amylovora"],["NCBITaxon%3A1255306","Erwinia amylovora 01SFR-BO"],["NCBITaxon%3A1427519","Erwinia amylovora 692"],["NCBITaxon%3A1027397","Erwinia amylovora ACW56400"],["NCBITaxon%3A716540","Erwinia amylovora ATCC 49946"],["NCBITaxon%3A889211","Erwinia amylovora ATCC BAA-2158"]]},{"id":"NCBITaxon:511","l":"Alcaligenes faecalis","na":5,"nb":14,"a":[["Pfam%3APF16867","Dimethlysulfonioproprionate lyase"],["Pfam%3APF17645","Arylmalonate decarboxylase"],["Pfam%3APF06433","Methylamine dehydrogenase heavy chain (MADH)"],["TED%3AAF-A0A1Z3MKY1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z3MKY1-F1-model_v4_TED01"],["TED%3AAF-A0A2U2BPX7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2U2BPX7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A134375","Achromobacter sp."],["NCBITaxon%3A511","Alcaligenes faecalis"],["NCBITaxon%3A1255592","Alcaligenes faecalis 2L10"],["NCBITaxon%3A32001","Alcaligenes faecalis subsp. faecalis"],["NCBITaxon%3A1218102","Alcaligenes faecalis subsp. faecalis NBRC 13111"],["NCBITaxon%3A1156918","Alcaligenes faecalis subsp. faecalis NCIB 8687"]]},{"id":"NCBITaxon:1302","l":"Streptococcus gordonii","na":13,"nb":5,"a":[["Pfam%3APF18652","Adhesin P1 N-terminal domain"],["Pfam%3APF17998","Cell surface antigen I/II C2 terminal domain"],["Pfam%3APF16364","Cell surface antigen C-terminus"],["Pfam%3APF18938","Atypical Rib domain"],["Pfam%3APF08759","Glycosyltransferase GT-D fold"],["Pfam%3APF22145","GtfA extended beta-sheet domain"]],"b":[["NCBITaxon%3A1302","Streptococcus gordonii"],["NCBITaxon%3A1308737","Streptococcus gordonii ADL-228"],["NCBITaxon%3A29390","Streptococcus gordonii str. Challis"],["NCBITaxon%3A467705","Streptococcus gordonii str. Challis substr. CH1"],["NCBITaxon%3A1339616","Streptococcus gordonii TSDC19.2-1.1"]]},{"id":"NCBITaxon:31958","l":"Amycolatopsis orientalis","na":5,"nb":13,"a":[["Pfam%3APF16990","Carbohydrate binding module (family 35)"],["Pfam%3APF14696","Hydroxyphenylpyruvate dioxygenase, HPPD, N-terminal"],["Pfam%3APF03559","NDP-hexose 2,3-dehydratase"],["Pfam%3APF18368","Exo-beta-D-glucosaminidase Ig-fold domain"],["TED%3AAF-K4FDK5-F1-model_v4_TED01","TED highly-symmetric fold AF-K4FDK5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A346045","Amycolatopsis benzoatilytica"],["NCBITaxon%3A1089544","Amycolatopsis benzoatilytica AK 16/65"],["NCBITaxon%3A31959","Amycolatopsis lurida"],["NCBITaxon%3A1460371","Amycolatopsis lurida NRRL 2430"],["NCBITaxon%3A31958","Amycolatopsis orientalis"],["NCBITaxon%3A1125971","Amycolatopsis orientalis DSM 40040 = KCTC 9412"]]},{"id":"NCBITaxon:367830","l":"Staphylococcus aureus subsp. aureus USA300","na":13,"nb":5,"a":[["Pfam%3APF13930","DNA/RNA non-specific endonuclease"],["Pfam%3APF27280","EsaA helical domain"],["Pfam%3APF26323","Staphylococcus aureus type VII secretion system substrate EsxC"],["Pfam%3APF27443","Immunodominant staphylococcal antigen B"],["Pfam%3APF20861","Iron-regulated surface determinant protein H/B, linker domain"],["Pfam%3APF11434","Chemotaxis-inhibiting protein CHIPS"]],"b":[["NCBITaxon%3A367830","Staphylococcus aureus subsp. aureus USA300"],["NCBITaxon%3A451515","Staphylococcus aureus subsp. aureus USA300_FPR3757"],["NCBITaxon%3A451516","Staphylococcus aureus subsp. aureus USA300_TCH1516"],["NCBITaxon%3A566454","Staphylococcus aureus subsp. aureus USA300_TCH1959"],["NCBITaxon%3A450394","Staphylococcus aureus subsp. aureus USA300_TCH959"]]},{"id":"NCBITaxon:1318","l":"Streptococcus parasanguinis","na":5,"nb":12,"a":[["Pfam%3APF26337","Glucosyltransferase 3-like, C-terminal domain"],["Pfam%3APF26334","Glucosyltransferase 3-like, N-terminal domain"],["Pfam%3APF22145","GtfA extended beta-sheet domain"],["Pfam%3APF27244","GtfB middle domain"],["Pfam%3APF04286","Protein of unknown function (DUF445)"]],"b":[["NCBITaxon%3A45634","Streptococcus cristatus"],["NCBITaxon%3A1318","Streptococcus parasanguinis"],["NCBITaxon%3A760570","Streptococcus parasanguinis ATCC 15912"],["NCBITaxon%3A888048","Streptococcus parasanguinis ATCC 903"],["NCBITaxon%3A1073372","Streptococcus parasanguinis CC87K"],["NCBITaxon%3A1403947","Streptococcus parasanguinis DORA_23_24"]]},{"id":"NCBITaxon:1393","l":"Brevibacillus brevis","na":5,"nb":12,"a":[["Pfam%3APF03306","Alpha-acetolactate decarboxylase"],["Pfam%3APF05384","Sensor protein DegS"],["TED%3AAF-A0A2Z4MK38-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z4MK38-F1-model_v4_TED01"],["TED%3AAF-A0A2Z4MPQ6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2Z4MPQ6-F1-model_v4_TED02"],["TED%3AAF-A0A517IGN3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A517IGN3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1391","Aneurinibacillus aneurinilyticus"],["NCBITaxon%3A267746","Aneurinibacillus danicus"],["NCBITaxon%3A47500","Aneurinibacillus migulanus"],["NCBITaxon%3A45462","Brevibacillus borstelensis"],["NCBITaxon%3A1393","Brevibacillus brevis"],["NCBITaxon%3A1129895","Brevibacillus brevis FJAT-0809-GLX"]]},{"id":"NCBITaxon:435","l":"Acetobacter aceti","na":5,"nb":12,"a":[["Pfam%3APF13336","Acetyl-CoA hydrolase/transferase C-terminal domain"],["Pfam%3APF02550","Acetyl-CoA hydrolase/transferase N-terminal domain"],["Pfam%3APF13442","Cytochrome C oxidase, cbb3-type, subunit III"],["Pfam%3APF06481","COX Aromatic Rich Motif"],["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"]],"b":[["NCBITaxon%3A435","Acetobacter aceti"],["NCBITaxon%3A1457393","Acetobacter aceti 1023"],["NCBITaxon%3A663932","Acetobacter aceti ATCC 23746"],["NCBITaxon%3A887700","Acetobacter aceti NBRC 14818"],["NCBITaxon%3A1206747","Acetobacter aceti NRIC 0242"],["NCBITaxon%3A178900","Acetobacter cerevisiae"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":5,"nb":11,"a":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF02963","Restriction endonuclease EcoRI"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["PROSITE%3APS00974","Mannitol dehydrogenases signature"],["PROSITE%3APS00567","Phosphoribulokinase signature"]],"b":[["NCBITaxon%3A1063","Cereibacter sphaeroides"],["NCBITaxon%3A272943","Cereibacter sphaeroides 2.4.1"],["NCBITaxon%3A349102","Cereibacter sphaeroides ATCC 17025"],["NCBITaxon%3A349101","Cereibacter sphaeroides ATCC 17029"],["NCBITaxon%3A39723","Cereibacter sphaeroides f. sp. denitrificans"],["NCBITaxon%3A633146","Cereibacter sphaeroides GA"]]},{"id":"NCBITaxon:556","l":"Dickeya chrysanthemi","na":5,"nb":9,"a":[["Pfam%3APF18390","Glycogen debranching enzyme C-terminal domain"],["Pfam%3APF25994","AprE, long alpha-helical hairpin"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF03812","2-keto-3-deoxygluconate permease"],["Pfam%3APF09589","HrpA pilus formation protein"]],"b":[["NCBITaxon%3A556","Dickeya chrysanthemi"],["NCBITaxon%3A561229","Dickeya chrysanthemi Ech1591"],["NCBITaxon%3A1224148","Dickeya chrysanthemi NCPPB 3533"],["NCBITaxon%3A1223569","Dickeya chrysanthemi NCPPB 402"],["NCBITaxon%3A3474837","Dickeya chrysanthemi pv. chrysanthemi"],["NCBITaxon%3A3474953","Dickeya chrysanthemi pv. parthenii"]]},{"id":"NCBITaxon:292800","l":"Flavonifractor plautii","na":8,"nb":5,"a":[["TED%3AAF-A0A6I2QXD7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I2QXD7-F1-model_v4_TED01"],["TED%3AAF-A0A6I2R9U0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I2R9U0-F1-model_v4_TED01"],["TED%3AAF-A0A6I7GJ83-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6I7GJ83-F1-model_v4_TED02"],["TED%3AAF-A0A174L5D2-F1-model_v4_TED02","TED novel fold AF-A0A174L5D2-F1-model_v4_TED02"],["TED%3AAF-A0A6I2R566-F1-model_v4_TED01","TED novel fold AF-A0A6I2R566-F1-model_v4_TED01"],["TED%3AAF-A0A6I2R5K9-F1-model_v4_TED01","TED novel fold AF-A0A6I2R5K9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A292800","Flavonifractor plautii"],["NCBITaxon%3A742738","Flavonifractor plautii 1_3_50AFAA"],["NCBITaxon%3A411475","Flavonifractor plautii ATCC 29863"],["NCBITaxon%3A1073358","Flavonifractor plautii CC43_001K"],["NCBITaxon%3A649753","Flavonifractor plautii DSM 6740"]]},{"id":"NCBITaxon:28448","l":"Komagataeibacter xylinus","na":5,"nb":7,"a":[["Pfam%3APF03170","Cellulose synthase BcsB, first CBM domain"],["Pfam%3APF03500","Cellulose synthase subunit D"],["Pfam%3APF05420","Cellulose synthase operon protein C C-terminus (BCSC_C)"],["Pfam%3APF17040","Cellulose-complementing protein A"],["Pfam%3APF07721","Tetratricopeptide repeat"]],"b":[["NCBITaxon%3A435","Acetobacter aceti"],["NCBITaxon%3A1053551","Komagataeibacter sucrofermentans"],["NCBITaxon%3A1307942","Komagataeibacter sucrofermentans DSM 15973"],["NCBITaxon%3A28448","Komagataeibacter xylinus"],["NCBITaxon%3A1296990","Komagataeibacter xylinus E25"],["NCBITaxon%3A1234668","Komagataeibacter xylinus NBRC 13693"]]},{"id":"NCBITaxon:1916","l":"Streptomyces lividans","na":6,"nb":5,"a":[["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["Pfam%3APF27079","SpdB plasmid transfer protein, C-terminal HTH domain"],["Pfam%3APF27072","KilB plasmid transfer protein"],["Pfam%3APF08386","TAP-like protein"],["PROSITE%3APS00999","Streptomyces subtilisin-type inhibitors signature"],["Pfam%3APF03664","Glycosyl hydrolase family 62"]],"b":[["NCBITaxon%3A1894","Kitasatospora aureofaciens"],["NCBITaxon%3A1916","Streptomyces lividans"],["NCBITaxon%3A1200984","Streptomyces lividans 1326"],["NCBITaxon%3A457428","Streptomyces lividans TK24"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:2210","l":"Methanosarcina thermophila","na":6,"nb":5,"a":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF19436","ACS/CODH beta subunit C-terminal"],["Pfam%3APF03598","CO dehydrogenase/acetyl-CoA synthase complex beta subunit"],["Pfam%3APF00871","Acetokinase family"],["PROSITE%3APS01075","Acetate and butyrate kinases family signature 1"],["PROSITE%3APS01076","Acetate and butyrate kinases family signature 2"]],"b":[["NCBITaxon%3A1520800","Methanosarcina sp. DSM 11855"],["NCBITaxon%3A2210","Methanosarcina thermophila"],["NCBITaxon%3A1434121","Methanosarcina thermophila CHTI-55"],["NCBITaxon%3A1434122","Methanosarcina thermophila MST-A1"],["NCBITaxon%3A523844","Methanosarcina thermophila TM-1"]]},{"id":"NCBITaxon:1197","l":"Microchaete diplosiphon","na":5,"nb":5,"a":[["Pfam%3APF13546","DDE superfamily endonuclease"],["Pfam%3APF05996","Ferredoxin-dependent bilin reductase"],["Pfam%3APF13613","Helix-turn-helix of DDE superfamily endonuclease"],["PROSITE%3APS00235","Gas vesicles protein GVPc repeated domain signature"],["Pfam%3APF01304","Gas vesicles protein GVPc repeated domain"]],"b":[["NCBITaxon%3A1197","Microchaete diplosiphon"],["NCBITaxon%3A571433","Microchaete diplosiphon B590"],["NCBITaxon%3A1168853","Microchaete diplosiphon CCALA 811"],["NCBITaxon%3A1776041","Microchaete diplosiphon KSU-AQIQ-10"],["NCBITaxon%3A1973485","Microchaete diplosiphon NIES-3275"]]},{"id":"NCBITaxon:319","l":"Pseudomonas savastanoi pv. phaseolicola","na":5,"nb":5,"a":[["Pfam%3APF16847","Avirulence AvrPtoB, BAK1-binding domain"],["Pfam%3APF09046","AvrPtoB E3 ubiquitin ligase"],["Pfam%3APF01052","Type III flagellar switch regulator (C-ring) FliN C-term"],["Pfam%3APF27361","HrcQa N-terminal domain"],["Pfam%3APF04877","HrpZ"]],"b":[["NCBITaxon%3A29438","Pseudomonas savastanoi"],["NCBITaxon%3A319","Pseudomonas savastanoi pv. phaseolicola"],["NCBITaxon%3A264730","Pseudomonas savastanoi pv. phaseolicola 1448A"],["NCBITaxon%3A1079060","Pseudomonas savastanoi pv. phaseolicola 1644R"],["NCBITaxon%3A317","Pseudomonas syringae"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":5,"nb":5,"a":[["TED%3AAF-A0A4Y6CF56-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y6CF56-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6CNZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Y6CNZ1-F1-model_v4_TED02"],["TED%3AAF-A0A7Y4IIX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4IIX4-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6B7F9-F1-model_v4_TED01","TED novel fold AF-A0A4Y6B7F9-F1-model_v4_TED01"],["TED%3AAF-A0A7Y4IR70-F1-model_v4_TED01","TED novel fold AF-A0A7Y4IR70-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A34","Myxococcus xanthus"],["NCBITaxon%3A246197","Myxococcus xanthus DK 1622"],["NCBITaxon%3A1198133","Myxococcus xanthus DZ2"],["NCBITaxon%3A1198538","Myxococcus xanthus DZF1"],["NCBITaxon%3A675543","Myxococcus xanthus NewJersey2"]]},{"id":"NCBITaxon:93466","l":"Fervidobacterium pennivorans","na":5,"nb":5,"a":[["Pfam%3APF22148","Fervidolysin N-terminal prodomain"],["Pfam%3APF22349","Fervidolysin, second beta-sandwich domain"],["Pfam%3APF24025","DR_A0283-like, Ig-like domain"],["TED%3AAF-A0A7V4NEA3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7V4NEA3-F1-model_v4_TED03"],["TED%3AAF-A0A7V4KDB4-F1-model_v4_TED01","TED novel fold AF-A0A7V4KDB4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A93466","Fervidobacterium pennivorans"],["NCBITaxon%3A771875","Fervidobacterium pennivorans DSM 9078"],["NCBITaxon%3A3389976","Fervidobacterium pennivorans subsp. carthaginiensis"],["NCBITaxon%3A3022686","Fervidobacterium pennivorans subsp. keratinolyticus"],["NCBITaxon%3A3389975","Fervidobacterium pennivorans subsp. shakshaketiis"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":4,"nb":391,"a":[["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF09711","CRISPR-associated protein (Cas_Csn2)"],["Pfam%3APF06308","23S rRNA methylastransferase leader peptide (ErmCL)"]],"b":[["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A1260363","Enterococcus faecalis 02-MB-BW-10"],["NCBITaxon%3A1260365","Enterococcus faecalis 02-MB-P-10"],["NCBITaxon%3A1260358","Enterococcus faecalis 06-MB-DW-09"],["NCBITaxon%3A1260359","Enterococcus faecalis 06-MB-S-04"],["NCBITaxon%3A1260360","Enterococcus faecalis 06-MB-S-10"]]},{"id":"NCBITaxon:1311","l":"Streptococcus agalactiae","na":4,"nb":332,"a":[["Pfam%3APF19567","Capsular polysaccharide synthesis, CpsB/CapC"],["Pfam%3APF16828","GAG-binding domain on surface antigen"],["Pfam%3APF27244","GtfB middle domain"],["Pfam%3APF07373","CAMP factor (Cfa)"]],"b":[["NCBITaxon%3A536","Chromobacterium violaceum"],["NCBITaxon%3A2896850","Phocaeicola oris"],["NCBITaxon%3A1311","Streptococcus agalactiae"],["NCBITaxon%3A997295","Streptococcus agalactiae 072.21"],["NCBITaxon%3A1309806","Streptococcus agalactiae 09mas018883"],["NCBITaxon%3A1333579","Streptococcus agalactiae 112469214-isolate1"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":4,"nb":287,"a":[["Pfam%3APF01375","Heat-labile enterotoxin alpha chain"],["Pfam%3APF09101","Exotoxin A binding"],["Pfam%3APF09009","Exotoxin A catalytic"],["Pfam%3APF09102","Exotoxin A, targeting"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A666","Vibrio cholerae"],["NCBITaxon%3A693741","Vibrio cholerae 0139-ARG"],["NCBITaxon%3A1294144","Vibrio cholerae 01-1751"],["NCBITaxon%3A592313","Vibrio cholerae 12129(1)"],["NCBITaxon%3A412966","Vibrio cholerae 1587"]]},{"id":"NCBITaxon:28450","l":"Burkholderia pseudomallei","na":4,"nb":214,"a":[["Pfam%3APF18664","CdiA C-terminal tRNase domain"],["Pfam%3APF12106","Colicin E5 ribonuclease domain"],["Pfam%3APF11480","Colicin-E5 Imm protein"],["Pfam%3APF13332","Hemagglutinin repeat"]],"b":[["NCBITaxon%3A28450","Burkholderia pseudomallei"],["NCBITaxon%3A1085027","Burkholderia pseudomallei 1026a"],["NCBITaxon%3A884204","Burkholderia pseudomallei 1026b"],["NCBITaxon%3A1310219","Burkholderia pseudomallei 104(1990)"],["NCBITaxon%3A357348","Burkholderia pseudomallei 1106a"],["NCBITaxon%3A357347","Burkholderia pseudomallei 1106b"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":4,"nb":183,"a":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"],["TED%3AAF-A0A085UKV7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085UKV7-F1-model_v4_TED01"],["TED%3AAF-A0A4R6IU28-F1-model_v4_TED02","TED novel fold AF-A0A4R6IU28-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A86840","Pseudomonas cannabina"],["NCBITaxon%3A53409","Pseudomonas coronafaciens"],["NCBITaxon%3A29438","Pseudomonas savastanoi"],["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A1204471","Pseudomonas syringae BRIP34876"]]},{"id":"NCBITaxon:28037","l":"Streptococcus mitis","na":4,"nb":38,"a":[["Pfam%3APF03047","COMC family"],["TED%3AAF-A0A1X1L9U5-F1-model_v4_TED02","TED novel fold AF-A0A1X1L9U5-F1-model_v4_TED02"],["TED%3AAF-A0A428B8X0-F1-model_v4_TED01","TED novel fold AF-A0A428B8X0-F1-model_v4_TED01"],["TED%3AAF-A0A6L5H4V3-F1-model_v4_TED03","TED novel fold AF-A0A6L5H4V3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1660","Schaalia odontolytica"],["NCBITaxon%3A45634","Streptococcus cristatus"],["NCBITaxon%3A1302863","Streptococcus cristatus AS 1.3089"],["NCBITaxon%3A1302","Streptococcus gordonii"],["NCBITaxon%3A28037","Streptococcus mitis"],["NCBITaxon%3A1239792","Streptococcus mitis 11/5"]]},{"id":"NCBITaxon:85698","l":"Achromobacter xylosoxidans","na":4,"nb":21,"a":[["Pfam%3APF25975","CzcB C-terminal circularly permuted SH3-like domain"],["Pfam%3APF17524","Anti-sigma factor CnrY"],["Pfam%3APF10778","Halocarboxylic acid dehydrogenase DehI"],["TED%3AAF-A0A1R1JVF9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1R1JVF9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1389935","Achromobacter animicus"],["NCBITaxon%3A1353891","Achromobacter deleyi"],["NCBITaxon%3A32002","Achromobacter denitrificans"],["NCBITaxon%3A217204","Achromobacter insolitus"],["NCBITaxon%3A1287735","Achromobacter insuavis"],["NCBITaxon%3A470868","Achromobacter marplatensis"]]},{"id":"NCBITaxon:1914","l":"Streptomyces lavendulae","na":4,"nb":17,"a":[["Pfam%3APF01678","Diaminopimelate epimerase"],["Pfam%3APF27100","D-cycloserine synthetase DcsG, N-terminal domain"],["Pfam%3APF20240","Domain of unknown function (DUF6597)"],["Pfam%3APF11731","Pathogenicity locus"]],"b":[["NCBITaxon%3A1914","Streptomyces lavendulae"],["NCBITaxon%3A1522107","Streptomyces lavendulae subsp. avirens"],["NCBITaxon%3A1522108","Streptomyces lavendulae subsp. brasilicus"],["NCBITaxon%3A68190","Streptomyces lavendulae subsp. colombiensis"],["NCBITaxon%3A516458","Streptomyces lavendulae subsp. fuscus"],["NCBITaxon%3A66421","Streptomyces lavendulae subsp. grasserius"]]},{"id":"NCBITaxon:285","l":"Comamonas testosteroni","na":4,"nb":16,"a":[["Pfam%3APF02900","Catalytic LigB subunit of aromatic ring-opening dioxygenase"],["Pfam%3APF19301","LigXa C-terminal domain like"],["TED%3AAF-A0A096HND0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A096HND0-F1-model_v4_TED01"],["TED%3AAF-A0A1Y1JCM1-F1-model_v4_TED01","TED novel fold AF-A0A1Y1JCM1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1775535","Acidovorax sp. JCM 10065"],["NCBITaxon%3A285","Comamonas testosteroni"],["NCBITaxon%3A1009852","Comamonas testosteroni ATCC 11996"],["NCBITaxon%3A543891","Comamonas testosteroni CNB-1"],["NCBITaxon%3A688245","Comamonas testosteroni CNB-2"],["NCBITaxon%3A1440775","Comamonas testosteroni I2"]]},{"id":"NCBITaxon:301","l":"Ectopseudomonas oleovorans","na":4,"nb":15,"a":[["PROSITE%3APS00202","Rubredoxin signature"],["TED%3AAF-A0A2W5VSG0-F1-model_v4_TED02","TED novel fold AF-A0A2W5VSG0-F1-model_v4_TED02"],["TED%3AAF-A0A379JMN0-F1-model_v4_TED01","TED novel fold AF-A0A379JMN0-F1-model_v4_TED01"],["TED%3AAF-A0A379PLI0-F1-model_v4_TED03","TED novel fold AF-A0A379PLI0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A43263","Aquipseudomonas alcaligenes"],["NCBITaxon%3A301","Ectopseudomonas oleovorans"],["NCBITaxon%3A1453503","Ectopseudomonas oleovorans AD6"],["NCBITaxon%3A1182590","Ectopseudomonas oleovorans CECT 5344"],["NCBITaxon%3A1033992","Ectopseudomonas oleovorans MOIL14HWK12"],["NCBITaxon%3A468557","Ectopseudomonas oleovorans MTCC 5210"]]},{"id":"NCBITaxon:55601","l":"Vibrio anguillarum","na":4,"nb":15,"a":[["Pfam%3APF17327","Acyl homoserine lactone synthase"],["PROSITE%3APS00949","Autoinducer synthase family signature"],["TED%3AAF-A0A241NLV5-F1-model_v4_TED03","TED novel fold AF-A0A241NLV5-F1-model_v4_TED03"],["TED%3AAF-A0A290PUC4-F1-model_v4_TED02","TED novel fold AF-A0A290PUC4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1056982","Gordonia phosphorivorans"],["NCBITaxon%3A55601","Vibrio anguillarum"],["NCBITaxon%3A1161910","Vibrio anguillarum 13YK-003"],["NCBITaxon%3A882102","Vibrio anguillarum 775"],["NCBITaxon%3A990314","Vibrio anguillarum 96F"],["NCBITaxon%3A882846","Vibrio anguillarum ATCC 43308"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":4,"nb":15,"a":[["PROSITE%3APS00949","Autoinducer synthase family signature"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"],["PROSITE%3APS00607","cAMP phosphodiesterases class-II signature"],["TED%3AAF-A0A844NWZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A844NWZ1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A668","Aliivibrio fischeri"],["NCBITaxon%3A617136","Aliivibrio fischeri 1-C10"],["NCBITaxon%3A617138","Aliivibrio fischeri 9ZB36"],["NCBITaxon%3A1298605","Aliivibrio fischeri ATCC 7744 = JCM 18803 = DSM 507"],["NCBITaxon%3A1367486","Aliivibrio fischeri CB37"],["NCBITaxon%3A1367487","Aliivibrio fischeri EM17"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":4,"nb":14,"a":[["TED%3AAF-A0A7W3UB61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W3UB61-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F4B3-F1-model_v4_TED01","TED novel fold AF-A0A0D7F4B3-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F6R4-F1-model_v4_TED01","TED novel fold AF-A0A0D7F6R4-F1-model_v4_TED01"],["TED%3AAF-A0A7W3YI15-F1-model_v4_TED02","TED novel fold AF-A0A7W3YI15-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1076","Rhodopseudomonas palustris"],["NCBITaxon%3A74570","Rhodopseudomonas palustris ATCC 17001"],["NCBITaxon%3A74573","Rhodopseudomonas palustris ATCC 17007"],["NCBITaxon%3A316055","Rhodopseudomonas palustris BisA53"],["NCBITaxon%3A316056","Rhodopseudomonas palustris BisB18"],["NCBITaxon%3A316057","Rhodopseudomonas palustris BisB5"]]},{"id":"NCBITaxon:56615","l":"Puccinia graminis f. sp. tritici","na":4,"nb":13,"a":[["TED%3AAF-A0A5B0PWH9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B0PWH9-F1-model_v4_TED01"],["TED%3AAF-A0A5B0SKS6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5B0SKS6-F1-model_v4_TED02"],["TED%3AAF-A0A5B0NZU9-F1-model_v4_TED01","TED novel fold AF-A0A5B0NZU9-F1-model_v4_TED01"],["TED%3AAF-A0A5B0QTE7-F1-model_v4_TED03","TED novel fold AF-A0A5B0QTE7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A56615","Puccinia graminis f. sp. tritici"],["NCBITaxon%3A626359","Puccinia graminis f. sp. tritici 05KEN156/04"],["NCBITaxon%3A626360","Puccinia graminis f. sp. tritici 06KEN-19-V-3"],["NCBITaxon%3A626362","Puccinia graminis f. sp. tritici 06YEM 34-1"],["NCBITaxon%3A626361","Puccinia graminis f. sp. tritici 07KEN 24-4"],["NCBITaxon%3A645092","Puccinia graminis f. sp. tritici 126-6711"]]},{"id":"NCBITaxon:28447","l":"Clavibacter michiganensis","na":4,"nb":12,"a":[["TED%3AAF-A0A251YC11-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A251YC11-F1-model_v4_TED02"],["TED%3AAF-A0A2S5VA57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5VA57-F1-model_v4_TED01"],["TED%3AAF-A0A2S5VJK2-F1-model_v4_TED01","TED novel fold AF-A0A2S5VJK2-F1-model_v4_TED01"],["TED%3AAF-A0A399NHQ8-F1-model_v4_TED01","TED novel fold AF-A0A399NHQ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1874630","Clavibacter capsici"],["NCBITaxon%3A2301718","Clavibacter lycopersici"],["NCBITaxon%3A28447","Clavibacter michiganensis"],["NCBITaxon%3A33014","Clavibacter michiganensis subsp. insidiosus"],["NCBITaxon%3A33013","Clavibacter michiganensis subsp. michiganensis"],["NCBITaxon%3A443906","Clavibacter michiganensis subsp. michiganensis NCPPB 382"]]},{"id":"NCBITaxon:301447","l":"Streptococcus pyogenes serotype M1","na":12,"nb":4,"a":[["Pfam%3APF16595","PAM-interacting domain of CRISPR-associated endonuclease Cas9"],["Pfam%3APF22702","Cas9 RuvC domain"],["Pfam%3APF24547","Domain of unknown function (DUF7601)"],["Pfam%3APF22382","Endo-beta-N-acetylglucosaminidase, helical bundle"],["Pfam%3APF20746","Endo-beta-N-acetylglucosaminidase F2, Ig-like domain"],["Pfam%3APF12892","Spy0128-like isopeptide containing domain"]],"b":[["NCBITaxon%3A1207470","Streptococcus pyogenes M1 476"],["NCBITaxon%3A160490","Streptococcus pyogenes M1 GAS"],["NCBITaxon%3A293653","Streptococcus pyogenes MGAS5005"],["NCBITaxon%3A301447","Streptococcus pyogenes serotype M1"]]},{"id":"NCBITaxon:272624","l":"Legionella pneumophila subsp. pneumophila str. Philadelphia 1","na":9,"nb":4,"a":[["Pfam%3APF22170","Phosphocholine transferase AnkX insertion domain"],["Pfam%3APF23127","DotM, C-terminal cytoplasmic domain"],["Pfam%3APF14860","DrrA phosphatidylinositol 4-phosphate binding domain"],["Pfam%3APF01346","Domain amino terminal to FKBP-type peptidyl-prolyl isomerase"],["Pfam%3APF19335","Heavy metal binding domain"],["Pfam%3APF26393","Lart1 ADP-ribosyltransferase family"]],"b":[["NCBITaxon%3A446","Legionella pneumophila"],["NCBITaxon%3A91891","Legionella pneumophila subsp. pneumophila"],["NCBITaxon%3A1236535","Legionella pneumophila subsp. pneumophila JCM 7571"],["NCBITaxon%3A272624","Legionella pneumophila subsp. pneumophila str. Philadelphia 1"]]},{"id":"NCBITaxon:40520","l":"Blautia obeum","na":4,"nb":7,"a":[["TED%3AAF-A0A174PFW9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A174PFW9-F1-model_v4_TED01"],["TED%3AAF-A0A174PHS9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A174PHS9-F1-model_v4_TED02"],["TED%3AAF-A0A415LGR0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A415LGR0-F1-model_v4_TED01"],["TED%3AAF-A0A414KHY7-F1-model_v4_TED02","TED novel fold AF-A0A414KHY7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A40520","Blautia obeum"],["NCBITaxon%3A657314","Blautia obeum A2-162"],["NCBITaxon%3A411459","Blautia obeum ATCC 29174"],["NCBITaxon%3A1263107","Blautia obeum CAG:39"],["NCBITaxon%3A1339609","Blautia obeum TS7.1-1.1"],["NCBITaxon%3A1339610","Blautia obeum TS7.3-1.1"]]},{"id":"NCBITaxon:238","l":"Elizabethkingia meningoseptica","na":4,"nb":6,"a":[["Pfam%3APF21252","Glycosyl hydrolase 109, C-terminal domain"],["Pfam%3APF26305","cGAS/DncV-like nucleotidyltransferase C-terminal helical domain"],["PROSITE%3APS00743","Beta-lactamases class B signature 1"],["PROSITE%3APS00744","Beta-lactamases class B signature 2"]],"b":[["NCBITaxon%3A1453492","Chryseobacterium hispalense"],["NCBITaxon%3A238","Elizabethkingia meningoseptica"],["NCBITaxon%3A1216967","Elizabethkingia meningoseptica ATCC 13253 = NBRC 12535"],["NCBITaxon%3A1379264","Elizabethkingia meningoseptica KuYH"],["NCBITaxon%3A247","Empedobacter brevis"],["NCBITaxon%3A343874","Empedobacter falsenii"]]},{"id":"NCBITaxon:5693","l":"Trypanosoma cruzi","na":6,"nb":4,"a":[["Pfam%3APF22592","FCaBP EF-hand domain"],["Pfam%3APF09394","Chagasin family peptidase inhibitor I42"],["Pfam%3APF12131","Protein of unknown function (DUF3586)"],["Pfam%3APF11052","Trans-sialidase of Trypanosoma hydrophobic C-terminal"],["Pfam%3APF13859","BNR repeat-like domain"],["TED%3AAF-A0A2V2XJY2-F1-model_v4_TED02","TED novel fold AF-A0A2V2XJY2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A5693","Trypanosoma cruzi"],["NCBITaxon%3A85057","Trypanosoma cruzi cruzi"],["NCBITaxon%3A353153","Trypanosoma cruzi strain CL Brener"],["NCBITaxon%3A366581","Trypanosoma cruzi strain Esmeraldo"]]},{"id":"NCBITaxon:585","l":"Proteus vulgaris","na":4,"nb":6,"a":[["Pfam%3APF05015","RelE-like toxin of type II toxin-antitoxin system HigB"],["PROSITE%3APS00594","Aromatic amino acids permeases signature"],["PROSITE%3APS00853","Beta-eliminating lyases pyridoxal-phosphate attachment site"],["Pfam%3APF09093","Lyase, catalytic"]],"b":[["NCBITaxon%3A183417","Proteus hauseri"],["NCBITaxon%3A585","Proteus vulgaris"],["NCBITaxon%3A1255590","Proteus vulgaris 1M25"],["NCBITaxon%3A1173773","Proteus vulgaris 66N"],["NCBITaxon%3A1403541","Proteus vulgaris AI05"],["NCBITaxon%3A368002","uncultured Proteus sp."]]},{"id":"NCBITaxon:1366","l":"Pseudolactococcus raffinolactis","na":5,"nb":4,"a":[["TED%3AAF-A0A5R9CHM3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5R9CHM3-F1-model_v4_TED02"],["TED%3AAF-A0A6H0UIE5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6H0UIE5-F1-model_v4_TED01"],["TED%3AAF-A0A6H0UK30-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6H0UK30-F1-model_v4_TED01"],["TED%3AAF-A0A6H0URM1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6H0URM1-F1-model_v4_TED02"],["TED%3AAF-A0A6H0UGG1-F1-model_v4_TED06","TED novel fold AF-A0A6H0UGG1-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A1366","Pseudolactococcus raffinolactis"],["NCBITaxon%3A1215915","Pseudolactococcus raffinolactis 4877"],["NCBITaxon%3A1255675","Pseudolactococcus raffinolactis JIM2957"],["NCBITaxon%3A1348633","Pseudolactococcus raffinolactis NBRC 100932"]]},{"id":"NCBITaxon:1501","l":"Clostridium pasteurianum","na":4,"nb":5,"a":[["Pfam%3APF22609","Iron hydrogenase 1-like, iron-sulfur centre-binding domain"],["Pfam%3APF09582","Iron only nitrogenase protein AnfO (AnfO_nitrog)"],["PROSITE%3APS00746","NifH/frxC family signature 1"],["PROSITE%3APS00699","Nitrogenases component 1 alpha and beta subunits signature 1"]],"b":[["NCBITaxon%3A1501","Clostridium pasteurianum"],["NCBITaxon%3A86416","Clostridium pasteurianum BC1"],["NCBITaxon%3A1262449","Clostridium pasteurianum DSM 525 = ATCC 6013"],["NCBITaxon%3A1341159","Clostridium pasteurianum TK"],["NCBITaxon%3A1506","Clostridium sp."]]},{"id":"NCBITaxon:1505","l":"Paraclostridium sordellii","na":4,"nb":5,"a":[["Pfam%3APF13859","BNR repeat-like domain"],["Pfam%3APF01473","Putative cell wall binding repeat"],["Pfam%3APF19127","Choline-binding repeat"],["TED%3AAF-A0A822PVZ2-F1-model_v4_TED01","TED novel fold AF-A0A822PVZ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1490","Paraclostridium bifermentans"],["NCBITaxon%3A1505","Paraclostridium sordellii"],["NCBITaxon%3A1172204","Paraclostridium sordellii 8483"],["NCBITaxon%3A1292036","Paraclostridium sordellii ATCC 9714"],["NCBITaxon%3A1292035","Paraclostridium sordellii VPI 9048"]]},{"id":"NCBITaxon:1525","l":"Neomoorella thermoacetica","na":4,"nb":5,"a":[["Pfam%3APF25461","Selenocysteine-specific elongation factor, beta-barrel domain"],["Pfam%3APF18537","Carbon monoxide dehydrogenase subunit alpha N-terminal domain"],["Pfam%3APF04060","Putative Fe-S cluster"],["Pfam%3APF03599","CO dehydrogenase/acetyl-CoA synthase delta subunit"]],"b":[["NCBITaxon%3A264732","Moorella thermoacetica ATCC 39073"],["NCBITaxon%3A1122242","Moorella thermoacetica DSM 1974"],["NCBITaxon%3A1325331","Moorella thermoacetica Y72"],["NCBITaxon%3A3051332","Neomoorella caeni"],["NCBITaxon%3A1525","Neomoorella thermoacetica"]]},{"id":"NCBITaxon:2021","l":"Thermobifida fusca","na":5,"nb":4,"a":[["Pfam%3APF00553","Cellulose binding domain"],["Pfam%3APF01341","Glycosyl hydrolases family 6"],["PROSITE%3APS00561","CBM2a (carbohydrate-binding type-2) domain signature"],["PROSITE%3APS00655","Glycosyl hydrolases family 6 signature 1"],["PROSITE%3APS00656","Glycosyl hydrolases family 6 signature 2"]],"b":[["NCBITaxon%3A2021","Thermobifida fusca"],["NCBITaxon%3A1223522","Thermobifida fusca NBRC 14071 = JCM 3263"],["NCBITaxon%3A1169414","Thermobifida fusca TM51"],["NCBITaxon%3A269800","Thermobifida fusca YX"]]},{"id":"NCBITaxon:224914","l":"Brucella melitensis bv. 1 str. 16M","na":4,"nb":5,"a":[["Pfam%3APF03625","Domain of unknown function DUF302"],["Pfam%3APF07559","Flagellar basal body protein FlaE D2 domain"],["Pfam%3APF07536","HWE histidine kinase"],["Pfam%3APF06776","Invasion associated locus B (IalB) protein"]],"b":[["NCBITaxon%3A29459","Brucella melitensis"],["NCBITaxon%3A1143191","Brucella melitensis 16M13W"],["NCBITaxon%3A1143190","Brucella melitensis 16M1W"],["NCBITaxon%3A644337","Brucella melitensis bv. 1"],["NCBITaxon%3A224914","Brucella melitensis bv. 1 str. 16M"]]},{"id":"NCBITaxon:28068","l":"Rubrivivax gelatinosus","na":5,"nb":4,"a":[["Pfam%3APF27123","Carotenoid hydratase CrtC"],["Pfam%3APF01355","High potential iron-sulfur protein"],["Pfam%3APF00556","Antenna complex alpha/beta subunit"],["PROSITE%3APS00969","Antenna complexes beta subunits signature"],["TED%3AAF-A0A4R2M4B0-F1-model_v4_TED02","TED novel fold AF-A0A4R2M4B0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A28068","Rubrivivax gelatinosus"],["NCBITaxon%3A1154769","Rubrivivax gelatinosus CBS"],["NCBITaxon%3A983917","Rubrivivax gelatinosus IL144"],["NCBITaxon%3A1138313","Rubrivivax gelatinosus S1"]]},{"id":"NCBITaxon:29494","l":"Vibrio furnissii","na":4,"nb":5,"a":[["Pfam%3APF17957","Bacterial Ig domain"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"],["Pfam%3APF02839","Carbohydrate-binding module family 5/12"],["Pfam%3APF06483","Chitinase C"]],"b":[["NCBITaxon%3A676","Vibrio fluvialis"],["NCBITaxon%3A29494","Vibrio furnissii"],["NCBITaxon%3A675811","Vibrio furnissii CIP 102972"],["NCBITaxon%3A903510","Vibrio furnissii NCTC 11218"],["NCBITaxon%3A1339240","Vibrio furnissii ZOR0035"]]},{"id":"NCBITaxon:32053","l":"Thermostichus vulcanus","na":4,"nb":5,"a":[["Pfam%3APF14495","Cytochrome c-550 domain"],["Pfam%3APF00283","Cytochrome b559, alpha (gene psbE) and beta (gene psbF)subunits"],["Pfam%3APF00284","Lumenal portion of Cytochrome b559, alpha (gene psbE) subunit"],["PROSITE%3APS00537","Cytochrome b559 subunits heme-binding site signature"]],"b":[["NCBITaxon%3A32053","Thermostichus vulcanus"],["NCBITaxon%3A2005468","Thermostichus vulcanus NIES-2134"],["NCBITaxon%3A1048443","Thermostichus vulcanus RKN"],["NCBITaxon%3A455064","Thermostichus vulcanus str. Copeland"],["NCBITaxon%3A2813851","Thermostichus vulcanus str. 'Rupite'"]]},{"id":"NCBITaxon:4792","l":"Phytophthora nicotianae","na":4,"nb":5,"a":[["TED%3AAF-W2KKX9-F1-model_v4_TED01","TED highly-symmetric fold AF-W2KKX9-F1-model_v4_TED01"],["TED%3AAF-W2KMG1-F1-model_v4_TED01","TED novel fold AF-W2KMG1-F1-model_v4_TED01"],["TED%3AAF-W2LDM9-F1-model_v4_TED01","TED novel fold AF-W2LDM9-F1-model_v4_TED01"],["TED%3AAF-W2MCU3-F1-model_v4_TED03","TED novel fold AF-W2MCU3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A4792","Phytophthora nicotianae"],["NCBITaxon%3A761204","Phytophthora nicotianae INRA-310"],["NCBITaxon%3A1317064","Phytophthora nicotianae P10297"],["NCBITaxon%3A1317065","Phytophthora nicotianae P1569"],["NCBITaxon%3A1317066","Phytophthora nicotianae P1976"]]},{"id":"NCBITaxon:5811","l":"Toxoplasma gondii","na":5,"nb":4,"a":[["Pfam%3APF24633","Domain of unknown function (DUF7630)"],["Pfam%3APF24634","Domain of unknown function (DUF7631)"],["Pfam%3APF05084","Granule antigen protein (GRA6)"],["Pfam%3APF14531","Kinase-like"],["Pfam%3APF10564","Sialic-acid binding micronemal adhesive repeat"]],"b":[["NCBITaxon%3A5811","Toxoplasma gondii"],["NCBITaxon%3A1073826","Toxoplasma gondii GUY-DOS"],["NCBITaxon%3A1073827","Toxoplasma gondii GUY-MAT"],["NCBITaxon%3A1073830","Toxoplasma gondii TgCkGy2"]]},{"id":"NCBITaxon:959","l":"Bdellovibrio bacteriovorus","na":5,"nb":4,"a":[["TED%3AAF-A0A150WJL7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A150WJL7-F1-model_v4_TED01"],["TED%3AAF-A0A150WK21-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A150WK21-F1-model_v4_TED01"],["TED%3AAF-A0A1Z3N7G2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Z3N7G2-F1-model_v4_TED02"],["TED%3AAF-A0A150WR18-F1-model_v4_TED04","TED novel fold AF-A0A150WR18-F1-model_v4_TED04"],["TED%3AAF-A0A162GEG0-F1-model_v4_TED02","TED novel fold AF-A0A162GEG0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A959","Bdellovibrio bacteriovorus"],["NCBITaxon%3A264462","Bdellovibrio bacteriovorus HD100"],["NCBITaxon%3A1069642","Bdellovibrio bacteriovorus str. Tiberius"],["NCBITaxon%3A765869","Bdellovibrio bacteriovorus W"]]},{"id":"NCBITaxon:33","l":"Myxococcus fulvus","na":4,"nb":4,"a":[["TED%3AAF-A0A511SVC1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A511SVC1-F1-model_v4_TED01"],["TED%3AAF-A0A511SU64-F1-model_v4_TED01","TED novel fold AF-A0A511SU64-F1-model_v4_TED01"],["TED%3AAF-A0A511T2U3-F1-model_v4_TED02","TED novel fold AF-A0A511T2U3-F1-model_v4_TED02"],["TED%3AAF-A0A511T9F8-F1-model_v4_TED05","TED novel fold AF-A0A511T9F8-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A33","Myxococcus fulvus"],["NCBITaxon%3A1334629","Myxococcus fulvus 124B02"],["NCBITaxon%3A483219","Myxococcus fulvus HW-1"],["NCBITaxon%3A675525","Myxococcus fulvus Mx f65"]]},{"id":"NCBITaxon:689","l":"Vibrio mediterranei","na":4,"nb":4,"a":[["TED%3AAF-A0A3G4VCH4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3G4VCH4-F1-model_v4_TED01"],["TED%3AAF-A0A7Y3YAY8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y3YAY8-F1-model_v4_TED01"],["TED%3AAF-A0A855TK19-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A855TK19-F1-model_v4_TED01"],["TED%3AAF-A0A3G4V5D8-F1-model_v4_TED03","TED novel fold AF-A0A3G4V5D8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A689","Vibrio mediterranei"],["NCBITaxon%3A1224139","Vibrio mediterranei A203"],["NCBITaxon%3A391591","Vibrio mediterranei AK1"],["NCBITaxon%3A1219069","Vibrio mediterranei NBRC 15635"]]},{"id":"NCBITaxon:149539","l":"Salmonella enterica subsp. enterica serovar Enteritidis","na":3,"nb":619,"a":[["Pfam%3APF13508","Acetyltransferase (GNAT) domain"],["Pfam%3APF26304","FliM/N C-terminal related"],["Pfam%3APF07012","Curlin associated repeat"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A149539","Salmonella enterica subsp. enterica serovar Enteritidis"],["NCBITaxon%3A1192642","Salmonella enterica subsp. enterica serovar Enteritidis str. 02-2966"],["NCBITaxon%3A1192608","Salmonella enterica subsp. enterica serovar Enteritidis str. 04-0307"],["NCBITaxon%3A1192643","Salmonella enterica subsp. enterica serovar Enteritidis str. 0502571"]]},{"id":"NCBITaxon:1639","l":"Listeria monocytogenes","na":3,"nb":478,"a":[["TED%3AAF-A0A6Z1JB74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6Z1JB74-F1-model_v4_TED01"],["TED%3AAF-A0A5Z1VYX2-F1-model_v4_TED01","TED novel fold AF-A0A5Z1VYX2-F1-model_v4_TED01"],["TED%3AAF-A0A823IT06-F1-model_v4_TED02","TED novel fold AF-A0A823IT06-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1639","Listeria monocytogenes"],["NCBITaxon%3A1126011","Listeria monocytogenes 07PF0776"],["NCBITaxon%3A653938","Listeria monocytogenes 08-5578"],["NCBITaxon%3A637381","Listeria monocytogenes 08-5923"],["NCBITaxon%3A393133","Listeria monocytogenes 10403S"],["NCBITaxon%3A1380708","Listeria monocytogenes 36-25-1"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":3,"nb":118,"a":[["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF08130","Type A lantibiotic family"],["Pfam%3APF04738","Lantibiotic dehydratase, N terminus"]],"b":[["NCBITaxon%3A69966","Macrococcoides caseolyticum"],["NCBITaxon%3A1822","Nocardia vaccinii"],["NCBITaxon%3A1210098","Nocardia vaccinii NBRC 15922"],["NCBITaxon%3A1282","Staphylococcus epidermidis"],["NCBITaxon%3A1235440","Staphylococcus epidermidis 12142587"],["NCBITaxon%3A1000590","Staphylococcus epidermidis 14.1.R1.SE"]]},{"id":"NCBITaxon:1166","l":"Dolichospermum flos-aquae","na":3,"nb":107,"a":[["PROSITE%3APS00669","Gas vesicles protein GVPa signature 2"],["PROSITE%3APS00235","Gas vesicles protein GVPc repeated domain signature"],["Pfam%3APF01304","Gas vesicles protein GVPc repeated domain"]],"b":[["NCBITaxon%3A1166","Dolichospermum flos-aquae"],["NCBITaxon%3A749200","Dolichospermum flos-aquae 04-10"],["NCBITaxon%3A1335026","Dolichospermum flos-aquae 04-37"],["NCBITaxon%3A575786","Dolichospermum flos-aquae 04-40"],["NCBITaxon%3A575787","Dolichospermum flos-aquae 04-53"],["NCBITaxon%3A749201","Dolichospermum flos-aquae 04-57"]]},{"id":"NCBITaxon:103796","l":"Pseudomonas syringae pv. actinidiae","na":3,"nb":65,"a":[["Pfam%3APF05425","Copper resistance protein D"],["TED%3AAF-J7I956-F1-model_v4_TED01","TED highly-symmetric fold AF-J7I956-F1-model_v4_TED01"],["TED%3AAF-J7IG33-F1-model_v4_TED01","TED highly-symmetric fold AF-J7IG33-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A103796","Pseudomonas syringae pv. actinidiae"],["NCBITaxon%3A1094176","Pseudomonas syringae pv. actinidiae CFBP 7286"],["NCBITaxon%3A1108967","Pseudomonas syringae pv. actinidiae CH2010-5"],["NCBITaxon%3A1108968","Pseudomonas syringae pv. actinidiae CH2010-6"],["NCBITaxon%3A1343752","Pseudomonas syringae pv. actinidiae CH2010-7"],["NCBITaxon%3A1343741","Pseudomonas syringae pv. actinidiae Haxa4"]]},{"id":"NCBITaxon:93061","l":"Staphylococcus aureus subsp. aureus NCTC 8325","na":47,"nb":3,"a":[["IDPO%3A0000033","flexible linker"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF07694","5TMR of 5TMR-LYT"],["Pfam%3APF01757","Acyltransferase domain"],["Pfam%3APF18719","ArlS sensor domain"],["Pfam%3APF02216","B domain"]],"b":[["NCBITaxon%3A1280","Staphylococcus aureus"],["NCBITaxon%3A93061","Staphylococcus aureus subsp. aureus NCTC 8325"],["NCBITaxon%3A561307","Staphylococcus aureus subsp. aureus RN4220"]]},{"id":"NCBITaxon:823","l":"Parabacteroides distasonis","na":3,"nb":45,"a":[["TED%3AAF-A0A412R0B2-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A412R0B2-F1-model_v4_TED05"],["TED%3AAF-A0A4S2EEJ9-F1-model_v4_TED01","TED novel fold AF-A0A4S2EEJ9-F1-model_v4_TED01"],["TED%3AAF-A0A5C6KM13-F1-model_v4_TED03","TED novel fold AF-A0A5C6KM13-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A823","Parabacteroides distasonis"],["NCBITaxon%3A435591","Parabacteroides distasonis ATCC 8503"],["NCBITaxon%3A999416","Parabacteroides distasonis CL03T12C09"],["NCBITaxon%3A999417","Parabacteroides distasonis CL09T03C24"],["NCBITaxon%3A1339342","Parabacteroides distasonis str. 3776 D15 i"],["NCBITaxon%3A1339343","Parabacteroides distasonis str. 3776 D15 iv"]]},{"id":"NCBITaxon:714","l":"Aggregatibacter actinomycetemcomitans","na":3,"nb":35,"a":[["Pfam%3APF10137","CAP12/Pycsar effector protein, TIR domain"],["Pfam%3APF25988","CyaD, alpha-helical hairpin domain"],["PROSITE%3APS00543","HlyD family secretion proteins signature"]],"b":[["NCBITaxon%3A714","Aggregatibacter actinomycetemcomitans"],["NCBITaxon%3A754507","Aggregatibacter actinomycetemcomitans ANH9381"],["NCBITaxon%3A668336","Aggregatibacter actinomycetemcomitans D11S-1"],["NCBITaxon%3A754505","Aggregatibacter actinomycetemcomitans D17P-3"],["NCBITaxon%3A694569","Aggregatibacter actinomycetemcomitans D7S-1"],["NCBITaxon%3A1120957","Aggregatibacter actinomycetemcomitans DSM 8324"]]},{"id":"NCBITaxon:715","l":"Actinobacillus pleuropneumoniae","na":3,"nb":35,"a":[["Pfam%3APF26002","AprE-like, beta-barrel domain"],["Pfam%3APF02794","RTX toxin acyltransferase family"],["PROSITE%3APS00543","HlyD family secretion proteins signature"]],"b":[["NCBITaxon%3A44930","Natronobacterium gregoryi"],["NCBITaxon%3A797304","Natronobacterium gregoryi SP2"],["NCBITaxon%3A715","Actinobacillus pleuropneumoniae"],["NCBITaxon%3A1224142","Actinobacillus pleuropneumoniae S8"],["NCBITaxon%3A40325","Actinobacillus pleuropneumoniae serovar 1"],["NCBITaxon%3A754347","Actinobacillus pleuropneumoniae serovar 10"]]},{"id":"NCBITaxon:820","l":"Bacteroides uniformis","na":3,"nb":34,"a":[["TED%3AAF-A0A412XCH6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A412XCH6-F1-model_v4_TED03"],["TED%3AAF-A0A1Q6HVQ2-F1-model_v4_TED02","TED novel fold AF-A0A1Q6HVQ2-F1-model_v4_TED02"],["TED%3AAF-A0A6N2VYJ0-F1-model_v4_TED03","TED novel fold AF-A0A6N2VYJ0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A28116","Bacteroides ovatus"],["NCBITaxon%3A820","Bacteroides uniformis"],["NCBITaxon%3A411479","Bacteroides uniformis ATCC 8492"],["NCBITaxon%3A1263055","Bacteroides uniformis CAG:3"],["NCBITaxon%3A997889","Bacteroides uniformis CL03T00C23"],["NCBITaxon%3A997890","Bacteroides uniformis CL03T12C37"]]},{"id":"NCBITaxon:75985","l":"Mannheimia haemolytica","na":3,"nb":32,"a":[["Pfam%3APF04224","Protein of unknown function, DUF417"],["Pfam%3APF04393","Protein of unknown function (DUF535)"],["TED%3AAF-A0A378MS69-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A378MS69-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A47735","Bibersteinia trehalosi"],["NCBITaxon%3A85401","Mannheimia glucosida"],["NCBITaxon%3A75985","Mannheimia haemolytica"],["NCBITaxon%3A1261126","Mannheimia haemolytica D153"],["NCBITaxon%3A1311759","Mannheimia haemolytica D171"],["NCBITaxon%3A1311760","Mannheimia haemolytica D174"]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":3,"nb":31,"a":[["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"],["PROSITE%3APS00896","LacY family proton/sugar symporters signature 1"],["PROSITE%3APS00897","LacY family proton/sugar symporters signature 2"]],"b":[["NCBITaxon%3A571","Klebsiella oxytoca"],["NCBITaxon%3A883116","Klebsiella oxytoca 09-7231"],["NCBITaxon%3A883117","Klebsiella oxytoca 10-5242"],["NCBITaxon%3A883118","Klebsiella oxytoca 10-5243"],["NCBITaxon%3A883119","Klebsiella oxytoca 10-5244"],["NCBITaxon%3A883120","Klebsiella oxytoca 10-5245"]]},{"id":"NCBITaxon:1717","l":"Corynebacterium diphtheriae","na":3,"nb":28,"a":[["Pfam%3APF08051","Erythromycin resistance leader peptide"],["PROSITE%3APS01007","Transposases, Mutator family, signature"],["TED%3AAF-A0A811G0F8-F1-model_v4_TED05","TED novel fold AF-A0A811G0F8-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1717","Corynebacterium diphtheriae"],["NCBITaxon%3A698966","Corynebacterium diphtheriae 241"],["NCBITaxon%3A698962","Corynebacterium diphtheriae 31A"],["NCBITaxon%3A698973","Corynebacterium diphtheriae BH8"],["NCBITaxon%3A1720349","Corynebacterium diphtheriae bv. gravis"],["NCBITaxon%3A1450521","Corynebacterium diphtheriae bv. gravis str. ISS 4060"]]},{"id":"NCBITaxon:1680","l":"Bifidobacterium adolescentis","na":3,"nb":27,"a":[["TED%3AAF-A0A1X2Z2R7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1X2Z2R7-F1-model_v4_TED02"],["TED%3AAF-A0A1X2Z7X6-F1-model_v4_TED02","TED novel fold AF-A0A1X2Z7X6-F1-model_v4_TED02"],["TED%3AAF-A0A1X2ZNR8-F1-model_v4_TED04","TED novel fold AF-A0A1X2ZNR8-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1680","Bifidobacterium adolescentis"],["NCBITaxon%3A367928","Bifidobacterium adolescentis ATCC 15703"],["NCBITaxon%3A1263057","Bifidobacterium adolescentis CAG:119"],["NCBITaxon%3A1410644","Bifidobacterium adolescentis DSM 20087"],["NCBITaxon%3A1437612","Bifidobacterium adolescentis JCM 15918"],["NCBITaxon%3A411481","Bifidobacterium adolescentis L2-32"]]},{"id":"NCBITaxon:329854","l":"Bacteroides intestinalis","na":3,"nb":20,"a":[["TED%3AAF-A0A414LEH4-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A414LEH4-F1-model_v4_TED06"],["TED%3AAF-A0A415N9R3-F1-model_v4_TED02","TED novel fold AF-A0A415N9R3-F1-model_v4_TED02"],["TED%3AAF-A0A4Q5H9L0-F1-model_v4_TED03","TED novel fold AF-A0A4Q5H9L0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A329854","Bacteroides intestinalis"],["NCBITaxon%3A1263048","Bacteroides intestinalis CAG:315"],["NCBITaxon%3A1263049","Bacteroides intestinalis CAG:564"],["NCBITaxon%3A471870","Bacteroides intestinalis DSM 17393"],["NCBITaxon%3A702442","Bacteroides intestinalis EK2"],["NCBITaxon%3A1338866","Bacteroides intestinalis TSDA1.8-1.1"]]},{"id":"NCBITaxon:98360","l":"Salmonella enterica subsp. enterica serovar Dublin","na":3,"nb":20,"a":[["Pfam%3APF07824","Type III secretion chaperone domain"],["Pfam%3APF22370","Flagellin, beta sheet domain"],["Pfam%3APF05925","Enterobacterial virulence protein IpgD"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A98360","Salmonella enterica subsp. enterica serovar Dublin"],["NCBITaxon%3A1173809","Salmonella enterica subsp. enterica serovar Dublin str. 0432"],["NCBITaxon%3A1173810","Salmonella enterica subsp. enterica serovar Dublin str. 0637"],["NCBITaxon%3A1173811","Salmonella enterica subsp. enterica serovar Dublin str. 0773"]]},{"id":"NCBITaxon:85963","l":"Helicobacter pylori J99","na":18,"nb":3,"a":[["Pfam%3APF15437","Plasminogen-binding protein pgbA C-terminal"],["Pfam%3APF02293","AmiS/UreI family transporter"],["Pfam%3APF26365","Apolipoprotein N-acyltransferase integral membrane domain"],["Pfam%3APF16730","DnaG-primase C-terminal, helicase-binding domain"],["Pfam%3APF10398","Protein of unknown function (DUF2443)"],["Pfam%3APF13099","Domain of unknown function (DUF3944)"]],"b":[["NCBITaxon%3A141390","Chromohalobacter israelensis"],["NCBITaxon%3A210","Helicobacter pylori"],["NCBITaxon%3A85963","Helicobacter pylori J99"]]},{"id":"NCBITaxon:95486","l":"Burkholderia cenocepacia","na":3,"nb":18,"a":[["TED%3AAF-A0A109EHZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A109EHZ6-F1-model_v4_TED01"],["TED%3AAF-A0A071M3L2-F1-model_v4_TED01","TED novel fold AF-A0A071M3L2-F1-model_v4_TED01"],["TED%3AAF-A0A088UYL8-F1-model_v4_TED01","TED novel fold AF-A0A088UYL8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A95486","Burkholderia cenocepacia"],["NCBITaxon%3A1110700","Burkholderia cenocepacia AU16956"],["NCBITaxon%3A1110701","Burkholderia cenocepacia AU16958"],["NCBITaxon%3A985077","Burkholderia cenocepacia BC7"],["NCBITaxon%3A1165869","Burkholderia cenocepacia D2AES"],["NCBITaxon%3A1055524","Burkholderia cenocepacia H111"]]},{"id":"NCBITaxon:176299","l":"Agrobacterium fabrum str. C58","na":17,"nb":3,"a":[["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF28403","Aconitase X second domain"],["Pfam%3APF28406","Aconitase X third domain"],["Pfam%3APF04412","Aconitase X first domain"],["Pfam%3APF01989","Aconitase X swivel domain"]],"b":[["NCBITaxon%3A1176649","Agrobacterium fabrum"],["NCBITaxon%3A176299","Agrobacterium fabrum str. C58"],["NCBITaxon%3A362","Agrobacterium radiobacter"]]},{"id":"NCBITaxon:5888","l":"Paramecium tetraurelia","na":17,"nb":3,"a":[["Pfam%3APF14926","Cilia- and flagella-associated protein 300"],["TED%3AAF-A0C038-F1-model_v4_TED07","TED highly-symmetric fold AF-A0C038-F1-model_v4_TED07"],["TED%3AAF-A0CFS1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0CFS1-F1-model_v4_TED02"],["TED%3AAF-A0CHQ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0CHQ8-F1-model_v4_TED01"],["TED%3AAF-A0CHQ8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0CHQ8-F1-model_v4_TED02"],["TED%3AAF-A0CHR9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0CHR9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A28907","Caedibacter taeniospiralis"],["NCBITaxon%3A5888","Paramecium tetraurelia"],["NCBITaxon%3A412030","Paramecium tetraurelia strain d4-2"]]},{"id":"NCBITaxon:1406","l":"Paenibacillus polymyxa","na":3,"nb":16,"a":[["Pfam%3APF03423","Carbohydrate binding domain (family 25)"],["Pfam%3APF03422","Carbohydrate binding module (family 6)"],["TED%3AAF-A0A7X5SGP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X5SGP7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A114136","Paenibacillus jamilae"],["NCBITaxon%3A225917","Paenibacillus massiliensis"],["NCBITaxon%3A1406","Paenibacillus polymyxa"],["NCBITaxon%3A1333863","Paenibacillus polymyxa 1-43"],["NCBITaxon%3A1414587","Paenibacillus polymyxa A18"],["NCBITaxon%3A1206104","Paenibacillus polymyxa ATCC 12321"]]},{"id":"NCBITaxon:553","l":"Pantoea ananatis","na":3,"nb":16,"a":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"],["TED%3AAF-A0A7H8I034-F1-model_v4_TED01","TED novel fold AF-A0A7H8I034-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1114880","Aeromonas australiensis"],["NCBITaxon%3A1264931","Flavobacterium acidificum"],["NCBITaxon%3A553","Pantoea ananatis"],["NCBITaxon%3A1419326","Pantoea ananatis 15320"],["NCBITaxon%3A932677","Pantoea ananatis AJ13355"],["NCBITaxon%3A1048262","Pantoea ananatis B1-9"]]},{"id":"NCBITaxon:1492","l":"Clostridium butyricum","na":3,"nb":15,"a":[["Pfam%3APF00302","Chloramphenicol acetyltransferase"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["PROSITE%3APS00100","Chloramphenicol acetyltransferase active site"]],"b":[["NCBITaxon%3A1520","Clostridium beijerinckii"],["NCBITaxon%3A1492","Clostridium butyricum"],["NCBITaxon%3A634501","Clostridium butyricum 2CR37"],["NCBITaxon%3A447214","Clostridium butyricum 5521"],["NCBITaxon%3A997898","Clostridium butyricum 60E.3"],["NCBITaxon%3A1280693","Clostridium butyricum AGR2140"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":3,"nb":15,"a":[["TED%3AAF-A0A142EAM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142EAM9-F1-model_v4_TED03"],["TED%3AAF-A0A1Q3DTY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3DTY6-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3DNE3-F1-model_v4_TED01","TED novel fold AF-A0A1Q3DNE3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A38285","Corynebacterium acetoacidophilum"],["NCBITaxon%3A1718","Corynebacterium glutamicum"],["NCBITaxon%3A196627","Corynebacterium glutamicum ATCC 13032"],["NCBITaxon%3A1079988","Corynebacterium glutamicum ATCC 14067"],["NCBITaxon%3A1204414","Corynebacterium glutamicum K051"],["NCBITaxon%3A1310161","Corynebacterium glutamicum MB001"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":3,"nb":15,"a":[["Pfam%3APF03069","Acetamidase/Formamidase family"],["PROSITE%3APS00818","Dps protein family signature 1"],["Pfam%3APF13810","Domain of unknown function (DUF4185)"]],"b":[["NCBITaxon%3A175628","Gordonia paraffinivorans"],["NCBITaxon%3A1785","Mycobacterium sp."],["NCBITaxon%3A1772","Mycolicibacterium smegmatis"],["NCBITaxon%3A1455235","Mycolicibacterium smegmatis 30-MsmegS_ND_60_A"],["NCBITaxon%3A1455243","Mycolicibacterium smegmatis 31-MsmegS_CIP_60_A"],["NCBITaxon%3A1455251","Mycolicibacterium smegmatis 32-MsmegS_CIP_30_A"]]},{"id":"NCBITaxon:272943","l":"Cereibacter sphaeroides 2.4.1","na":15,"nb":3,"a":[["IDPO%3A0000059","self-inhibition"],["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF12973","ChrR Cupin-like domain"],["Pfam%3APF07930","D-aminopeptidase, domain B"],["Pfam%3APF09086","Domain of unknown function (DUF1924)"],["Pfam%3APF13746","4Fe-4S dicluster domain"]],"b":[["NCBITaxon%3A1063","Cereibacter sphaeroides"],["NCBITaxon%3A272943","Cereibacter sphaeroides 2.4.1"],["NCBITaxon%3A2813818","[Luteovulum] sphaeroides subsp. sphaeroides"]]},{"id":"NCBITaxon:39486","l":"Dorea formicigenerans","na":3,"nb":15,"a":[["TED%3AAF-A0A3E5ESC3-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A3E5ESC3-F1-model_v4_TED05"],["TED%3AAF-A0A412MBB7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A412MBB7-F1-model_v4_TED01"],["TED%3AAF-A0A412MF47-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A412MF47-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A39486","Dorea formicigenerans"],["NCBITaxon%3A742765","Dorea formicigenerans 4_6_53AFAA"],["NCBITaxon%3A411461","Dorea formicigenerans ATCC 27755"],["NCBITaxon%3A1263073","Dorea formicigenerans CAG:28"],["NCBITaxon%3A1339457","Dorea formicigenerans TSDA1.2-1.1"],["NCBITaxon%3A1339458","Dorea formicigenerans TSDA1.2-1.2"]]},{"id":"NCBITaxon:645","l":"Aeromonas salmonicida","na":3,"nb":15,"a":[["Pfam%3APF28601","Heat shock protein 15, C-terminal region"],["Pfam%3APF12563","Hemolytic toxin N terminal"],["Pfam%3APF01203","Type II secretion system (T2SS), protein N"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A645","Aeromonas salmonicida"],["NCBITaxon%3A113288","Aeromonas salmonicida subsp. achromogenes"],["NCBITaxon%3A1233098","Aeromonas salmonicida subsp. achromogenes AS03"],["NCBITaxon%3A316054","Aeromonas salmonicida subsp. flounderacida"],["NCBITaxon%3A197700","Aeromonas salmonicida subsp. masoucida"]]},{"id":"NCBITaxon:1587","l":"Lactobacillus helveticus","na":3,"nb":14,"a":[["Pfam%3APF18008","Replication initiator protein A C-terminal domain"],["Pfam%3APF20956","Domain of unknown function (DUF4931) C-terminal domain"],["Pfam%3APF17312","Bacteriocin helveticin-J"]],"b":[["NCBITaxon%3A1587","Lactobacillus helveticus"],["NCBITaxon%3A1226336","Lactobacillus helveticus CIRM-BIA 101"],["NCBITaxon%3A1226332","Lactobacillus helveticus CIRM-BIA 103"],["NCBITaxon%3A1226333","Lactobacillus helveticus CIRM-BIA 104"],["NCBITaxon%3A1226334","Lactobacillus helveticus CIRM-BIA 951"],["NCBITaxon%3A1226335","Lactobacillus helveticus CIRM-BIA 953"]]},{"id":"NCBITaxon:582","l":"Morganella morganii","na":3,"nb":14,"a":[["PROSITE%3APS01157","Class A bacterial acid phosphatases signature"],["TED%3AAF-A0A2C5TPE5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2C5TPE5-F1-model_v4_TED01"],["TED%3AAF-A0A0A2RJY1-F1-model_v4_TED02","TED novel fold AF-A0A0A2RJY1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A582","Morganella morganii"],["NCBITaxon%3A1365974","Morganella morganii AC2_8_11_AN_D6_FAA_4"],["NCBITaxon%3A1428452","Morganella morganii F675"],["NCBITaxon%3A1416758","Morganella morganii H1r"],["NCBITaxon%3A1411647","Morganella morganii IS15"],["NCBITaxon%3A1239989","Morganella morganii SC01"]]},{"id":"NCBITaxon:1624","l":"Ligilactobacillus salivarius","na":3,"nb":13,"a":[["TED%3AAF-A0A7X2SS58-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X2SS58-F1-model_v4_TED01"],["TED%3AAF-A0A089QBS8-F1-model_v4_TED02","TED novel fold AF-A0A089QBS8-F1-model_v4_TED02"],["TED%3AAF-A0A2A2XCA8-F1-model_v4_TED01","TED novel fold AF-A0A2A2XCA8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1624","Ligilactobacillus salivarius"],["NCBITaxon%3A768728","Ligilactobacillus salivarius ACS-116-V-Col5a"],["NCBITaxon%3A1195377","Ligilactobacillus salivarius B-30514"],["NCBITaxon%3A712961","Ligilactobacillus salivarius CECT 5713"],["NCBITaxon%3A1036738","Ligilactobacillus salivarius CELA2"],["NCBITaxon%3A1273133","Ligilactobacillus salivarius cp400"]]},{"id":"NCBITaxon:165179","l":"Segatella copri","na":13,"nb":3,"a":[["TED%3AAF-A0A3R6DW71-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3R6DW71-F1-model_v4_TED02"],["TED%3AAF-A0A3R6EGS2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R6EGS2-F1-model_v4_TED01"],["TED%3AAF-A0A5Q5FTM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Q5FTM4-F1-model_v4_TED01"],["TED%3AAF-A0A3R5WNG5-F1-model_v4_TED02","TED novel fold AF-A0A3R5WNG5-F1-model_v4_TED02"],["TED%3AAF-A0A3R5YKW9-F1-model_v4_TED01","TED novel fold AF-A0A3R5YKW9-F1-model_v4_TED01"],["TED%3AAF-A0A3R6FRY2-F1-model_v4_TED01","TED novel fold AF-A0A3R6FRY2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A165179","Segatella copri"],["NCBITaxon%3A1263102","Segatella copri CAG:164"],["NCBITaxon%3A537011","Segatella copri DSM 18205"]]},{"id":"NCBITaxon:33038","l":"Mediterraneibacter gnavus","na":3,"nb":13,"a":[["Pfam%3APF16874","Glycosyl hydrolase family 36 C-terminal domain"],["Pfam%3APF16875","Glycosyl hydrolase family 36 N-terminal domain"],["Pfam%3APF04604","Type-A lantibiotic"]],"b":[["NCBITaxon%3A33038","Mediterraneibacter gnavus"],["NCBITaxon%3A1384063","Mediterraneibacter gnavus AGR2154"],["NCBITaxon%3A411470","Mediterraneibacter gnavus ATCC 29149"],["NCBITaxon%3A1263106","Mediterraneibacter gnavus CAG:126"],["NCBITaxon%3A1073375","Mediterraneibacter gnavus CC55_001C"],["NCBITaxon%3A935582","Mediterraneibacter gnavus E1"]]},{"id":"NCBITaxon:574521","l":"Escherichia coli O127:H6 str. E2348/69","na":13,"nb":3,"a":[["IDPO%3A0000006","order"],["IDPO%3A0000045","phosphorylation display site"],["Pfam%3APF02369","Bacterial Ig-like domain (group 1)"],["Pfam%3APF05307","Bundlin"],["Pfam%3APF27328","EcpD C-terminal domain"],["Pfam%3APF11924","Inverse autotransporter, beta-domain"]],"b":[["NCBITaxon%3A574521","Escherichia coli O127:H6 str. E2348/69"],["NCBITaxon%3A1336205","Escherichia coli O127:H6 str. E2348/69 substr. CVDNalr"],["NCBITaxon%3A1336206","Escherichia coli O127:H6 str. E2348/69 substr. UMD753"]]},{"id":"NCBITaxon:471472","l":"Chlamydia trachomatis L2/434/Bu","na":12,"nb":3,"a":[["Pfam%3APF07382","Histone H1-like nucleoprotein HC2"],["Pfam%3APF05475","Pgp3 C-terminal domain"],["Pfam%3APF22368","Response regulator protein ChxR, N-terminal domain"],["Pfam%3APF01345","CLIPPER domain"],["Pfam%3APF07577","Domain of Unknown Function (DUF1547)"],["Pfam%3APF03503","Chlamydia cysteine-rich outer membrane protein 3"]],"b":[["NCBITaxon%3A471472","Chlamydia trachomatis L2/434/Bu"],["NCBITaxon%3A1262673","Chlamydia trachomatis L2/434/Bu(f)"],["NCBITaxon%3A1263406","Chlamydia trachomatis L2/434/Bu(i)"]]},{"id":"NCBITaxon:584","l":"Proteus mirabilis","na":3,"nb":12,"a":[["Pfam%3APF05280","Flagellar transcriptional activator (FlhC)"],["TED%3AAF-A0A1Z1SXV6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z1SXV6-F1-model_v4_TED01"],["TED%3AAF-A0A7U1CMJ9-F1-model_v4_TED01","TED novel fold AF-A0A7U1CMJ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A584","Proteus mirabilis"],["NCBITaxon%3A1285374","Proteus mirabilis 1014"],["NCBITaxon%3A1308721","Proteus mirabilis ADL-319"],["NCBITaxon%3A1308722","Proteus mirabilis ADL-321"],["NCBITaxon%3A1308723","Proteus mirabilis ADL-401"],["NCBITaxon%3A525369","Proteus mirabilis ATCC 29906"]]},{"id":"NCBITaxon:831","l":"Butyrivibrio fibrisolvens","na":3,"nb":12,"a":[["Pfam%3APF16738","Starch-binding module 26"],["Pfam%3APF18318","Glutamine synthetase C-terminal domain"],["Pfam%3APF12437","Glutamine synthetase type III N terminal"]],"b":[["NCBITaxon%3A831","Butyrivibrio fibrisolvens"],["NCBITaxon%3A657324","Butyrivibrio fibrisolvens 16/4"],["NCBITaxon%3A1280697","Butyrivibrio fibrisolvens AB2020"],["NCBITaxon%3A1121131","Butyrivibrio fibrisolvens DSM 3071"],["NCBITaxon%3A1280700","Butyrivibrio fibrisolvens FE2007"],["NCBITaxon%3A1280703","Butyrivibrio fibrisolvens MD2001"]]},{"id":"NCBITaxon:565042","l":"Bifidobacterium longum subsp. longum JCM 1217","na":11,"nb":3,"a":[["Pfam%3APF20578","Atrophied bacterial Ig domain"],["Pfam%3APF07523","Bacterial Ig-like domain (group 3)"],["Pfam%3APF07532","Bacterial Ig-like domain (group 4)"],["Pfam%3APF12733","Cadherin-like beta sandwich domain"],["Pfam%3APF07554","FIVAR domain"],["Pfam%3APF20737","Glycoside hydrolase family 127 C-terminal domain"]],"b":[["NCBITaxon%3A216816","Bifidobacterium longum"],["NCBITaxon%3A1679","Bifidobacterium longum subsp. longum"],["NCBITaxon%3A565042","Bifidobacterium longum subsp. longum JCM 1217"]]},{"id":"NCBITaxon:1260","l":"Finegoldia magna","na":3,"nb":10,"a":[["Pfam%3APF17573","GA-like domain"],["Pfam%3APF18656","Family of unknown function (DUF5633)"],["TED%3AAF-A0A233W4R0-F1-model_v4_TED01","TED novel fold AF-A0A233W4R0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1260","Finegoldia magna"],["NCBITaxon%3A768713","Finegoldia magna ACS-171-V-Col3"],["NCBITaxon%3A1459804","Finegoldia magna ALB8"],["NCBITaxon%3A334413","Finegoldia magna ATCC 29328"],["NCBITaxon%3A525282","Finegoldia magna ATCC 53516"],["NCBITaxon%3A866773","Finegoldia magna BVS033A4"]]},{"id":"NCBITaxon:314275","l":"Alteromonas mediterranea","na":3,"nb":10,"a":[["TED%3AAF-A0A1J0SAZ8-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1J0SAZ8-F1-model_v4_TED04"],["TED%3AAF-A0A1J0SA48-F1-model_v4_TED01","TED novel fold AF-A0A1J0SA48-F1-model_v4_TED01"],["TED%3AAF-A0A1J0SX60-F1-model_v4_TED02","TED novel fold AF-A0A1J0SX60-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A314275","Alteromonas mediterranea"],["NCBITaxon%3A1300253","Alteromonas mediterranea 615"],["NCBITaxon%3A1774373","Alteromonas mediterranea DE"],["NCBITaxon%3A1004786","Alteromonas mediterranea DE1"],["NCBITaxon%3A1300254","Alteromonas mediterranea MED64"],["NCBITaxon%3A1300255","Alteromonas mediterranea U4"]]},{"id":"NCBITaxon:561879","l":"Bacillus safensis","na":3,"nb":10,"a":[["Pfam%3APF09221","Bacteriocin class IId cyclical uberolysin-like"],["TED%3AAF-A0A1L6ZPA6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6ZPA6-F1-model_v4_TED01"],["TED%3AAF-A0A1L6ZPC9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6ZPC9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1408","Bacillus pumilus"],["NCBITaxon%3A561879","Bacillus safensis"],["NCBITaxon%3A1326975","Bacillus safensis B204-B1-5"],["NCBITaxon%3A1326976","Bacillus safensis D95"],["NCBITaxon%3A1178541","Bacillus safensis FO-36b"],["NCBITaxon%3A1326974","Bacillus safensis NH21E_2"]]},{"id":"NCBITaxon:199","l":"Campylobacter concisus","na":3,"nb":9,"a":[["TED%3AAF-A0A7S9RBE4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S9RBE4-F1-model_v4_TED03"],["TED%3AAF-A0A1Y5MKZ8-F1-model_v4_TED01","TED novel fold AF-A0A1Y5MKZ8-F1-model_v4_TED01"],["TED%3AAF-A0A7S9X6B9-F1-model_v4_TED01","TED novel fold AF-A0A7S9X6B9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A199","Campylobacter concisus"],["NCBITaxon%3A360104","Campylobacter concisus 13826"],["NCBITaxon%3A1243032","Campylobacter concisus ATCC 51561"],["NCBITaxon%3A1242969","Campylobacter concisus ATCC 51562"],["NCBITaxon%3A1242967","Campylobacter concisus UNSW1"],["NCBITaxon%3A1242965","Campylobacter concisus UNSW2"]]},{"id":"NCBITaxon:274","l":"Thermus thermophilus","na":3,"nb":8,"a":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF01861","Branched-chain polyamine synthase A C-terminal domain"],["Pfam%3APF07736","Chorismate mutase type I"]],"b":[["NCBITaxon%3A274","Thermus thermophilus"],["NCBITaxon%3A1316935","Thermus thermophilus ATCC 33923"],["NCBITaxon%3A262724","Thermus thermophilus HB27"],["NCBITaxon%3A300852","Thermus thermophilus HB8"],["NCBITaxon%3A798128","Thermus thermophilus JL-18"],["NCBITaxon%3A762633","Thermus thermophilus SG0.5JP17-16"]]},{"id":"NCBITaxon:380703","l":"Aeromonas hydrophila subsp. hydrophila ATCC 7966","na":8,"nb":3,"a":[["Pfam%3APF26341","tRNA 2-selenouridine synthase AAA domain"],["Pfam%3APF11890","Domain of unknown function (DUF3410)"],["Pfam%3APF11944","Protein of unknown function (DUF3461)"],["Pfam%3APF04356","Protein of unknown function (DUF489)"],["Pfam%3APF12563","Hemolytic toxin N terminal"],["Pfam%3APF04362","Bacterial Fe(2+) trafficking"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A196023","Aeromonas hydrophila subsp. hydrophila"],["NCBITaxon%3A380703","Aeromonas hydrophila subsp. hydrophila ATCC 7966"]]},{"id":"NCBITaxon:159","l":"Brachyspira hyodysenteriae","na":3,"nb":7,"a":[["Pfam%3APF04620","Flagellar filament outer layer protein Flaa"],["TED%3AAF-A0A8A7L2A3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8A7L2A3-F1-model_v4_TED01"],["TED%3AAF-A0A8A7LC03-F1-model_v4_TED02","TED novel fold AF-A0A8A7LC03-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A159","Brachyspira hyodysenteriae"],["NCBITaxon%3A1266923","Brachyspira hyodysenteriae ATCC 27164"],["NCBITaxon%3A398523","Brachyspira hyodysenteriae ATCC 31212"],["NCBITaxon%3A398522","Brachyspira hyodysenteriae ATCC 49887"],["NCBITaxon%3A1232412","Brachyspira hyodysenteriae P7455"],["NCBITaxon%3A1232411","Brachyspira hyodysenteriae P8544"]]},{"id":"NCBITaxon:28108","l":"Alteromonas macleodii","na":3,"nb":7,"a":[["TED%3AAF-A0A6C5N007-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6C5N007-F1-model_v4_TED01"],["TED%3AAF-A0A126Q0V0-F1-model_v4_TED01","TED novel fold AF-A0A126Q0V0-F1-model_v4_TED01"],["TED%3AAF-A0A6T9Y0H6-F1-model_v4_TED01","TED novel fold AF-A0A6T9Y0H6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28108","Alteromonas macleodii"],["NCBITaxon%3A529120","Alteromonas macleodii ATCC 27126"],["NCBITaxon%3A1004787","Alteromonas macleodii str. 'Balearic Sea AD45'"],["NCBITaxon%3A1004785","Alteromonas macleodii str. 'Black Sea 11'"],["NCBITaxon%3A1004788","Alteromonas macleodii str. 'English Channel 673'"],["NCBITaxon%3A160763","Alteromonas macleodii subsp. abyssi"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":3,"nb":7,"a":[["Pfam%3APF04205","FMN-binding domain"],["Pfam%3APF10795","Protein of unknown function (DUF2607)"],["TED%3AAF-A0A1W6U0N2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W6U0N2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A663","Vibrio alginolyticus"],["NCBITaxon%3A314288","Vibrio alginolyticus 12G01"],["NCBITaxon%3A674977","Vibrio alginolyticus 40B"],["NCBITaxon%3A664","Vibrio alginolyticus chemovar iophagus"],["NCBITaxon%3A1219076","Vibrio alginolyticus NBRC 15630 = ATCC 17749"],["NCBITaxon%3A669","Vibrio harveyi"]]},{"id":"NCBITaxon:1971","l":"Streptomyces noursei","na":3,"nb":6,"a":[["Pfam%3APF16715","Cyclodipeptide synthase"],["Pfam%3APF19585","Family of unknown function (DUF6092)"],["TED%3AAF-A0A2N8PAT0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N8PAT0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1971","Streptomyces noursei"],["NCBITaxon%3A316284","Streptomyces noursei ATCC 11455"],["NCBITaxon%3A1316445","Streptomyces noursei CCRC 11814"],["NCBITaxon%3A1395573","Streptomyces noursei KC-01"],["NCBITaxon%3A1395572","Streptomyces noursei PD-1"],["NCBITaxon%3A1434306","Streptomyces noursei ZPM"]]},{"id":"NCBITaxon:290402","l":"Clostridium beijerinckii NCIMB 8052","na":6,"nb":3,"a":[["Pfam%3APF28550","Domain of unknown function (DUF8436)"],["Pfam%3APF21688","FAD-dependent protein, C-terminal domain-like"],["Pfam%3APF02001","Protein of unknown function DUF134"],["Pfam%3APF03608","PTS system enzyme II sorbitol-specific factor"],["Pfam%3APF07663","Sorbitol phosphotransferase enzyme II C-terminus"],["Pfam%3APF03612","Sorbitol phosphotransferase enzyme II N-terminus"]],"b":[["NCBITaxon%3A1488","Clostridium acetobutylicum"],["NCBITaxon%3A272562","Clostridium acetobutylicum ATCC 824"],["NCBITaxon%3A290402","Clostridium beijerinckii NCIMB 8052"]]},{"id":"NCBITaxon:316401","l":"Escherichia coli ETEC H10407","na":6,"nb":3,"a":[["Pfam%3APF26759","AcfD helical domain"],["Pfam%3APF04449","CS1 type fimbrial major subunit"],["Pfam%3APF13322","Domain of unknown function (DUF4092)"],["PROSITE%3APS01141","Bacterial type II secretion system protein C signature"],["Pfam%3APF16168","Adhesin of bacterial autotransporter system, probable stalk"],["Pfam%3APF24078","PIC/HAP1/IgA0 second beta-solenoid repeat region"]],"b":[["NCBITaxon%3A316401","Escherichia coli ETEC H10407"],["NCBITaxon%3A1213735","Escherichia coli H10407_1968"],["NCBITaxon%3A1213736","Escherichia coli H10407_1970"]]},{"id":"NCBITaxon:33039","l":"Mediterraneibacter torques","na":3,"nb":6,"a":[["TED%3AAF-A0A174ZX33-F1-model_v4_TED01","TED novel fold AF-A0A174ZX33-F1-model_v4_TED01"],["TED%3AAF-A0A6N3EHF6-F1-model_v4_TED02","TED novel fold AF-A0A6N3EHF6-F1-model_v4_TED02"],["TED%3AAF-A0A6N3EHH7-F1-model_v4_TED01","TED novel fold AF-A0A6N3EHH7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A33039","Mediterraneibacter torques"],["NCBITaxon%3A411460","[Ruminococcus] torques ATCC 27756"],["NCBITaxon%3A1263108","[Ruminococcus] torques CAG:61"],["NCBITaxon%3A1422833","[Ruminococcus] torques IX-70"],["NCBITaxon%3A657313","[Ruminococcus] torques L2-14"],["NCBITaxon%3A1422834","[Ruminococcus] torques VIII-239"]]},{"id":"NCBITaxon:44250","l":"Paenibacillus alvei","na":3,"nb":6,"a":[["PROSITE%3APS00481","Thiol-activated cytolysins signature"],["TED%3AAF-A0A383R9F4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A383R9F4-F1-model_v4_TED01"],["TED%3AAF-A0A7Y4MLP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4MLP7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A44250","Paenibacillus alvei"],["NCBITaxon%3A1117109","Paenibacillus alvei A6-6i-x"],["NCBITaxon%3A1206781","Paenibacillus alvei DSM 29"],["NCBITaxon%3A707255","Paenibacillus alvei NAS6G-6"],["NCBITaxon%3A1117108","Paenibacillus alvei TS-15"],["NCBITaxon%3A49283","Paenibacillus thiaminolyticus"]]},{"id":"NCBITaxon:5664","l":"Leishmania major","na":6,"nb":3,"a":[["Pfam%3APF12724","Flavodoxin domain"],["Pfam%3APF05683","Fumarase C-terminus"],["Pfam%3APF05681","Fumarate hydratase (Fumerase)"],["PROSITE%3APS01247","Inosine-uridine preferring nucleoside hydrolase family signature"],["TED%3AAF-Q4Q3E3-F1-model_v4_TED01","TED novel fold AF-Q4Q3E3-F1-model_v4_TED01"],["TED%3AAF-Q4Q6G3-F1-model_v4_TED01","TED novel fold AF-Q4Q6G3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A347515","Leishmania major strain Friedlin"],["NCBITaxon%3A860569","Leishmania major strain LV39c5"],["NCBITaxon%3A860570","Leishmania major strain SD 75.1"]]},{"id":"NCBITaxon:106648","l":"Acinetobacter bereziniae","na":3,"nb":5,"a":[["TED%3AAF-A0A833PGQ7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A833PGQ7-F1-model_v4_TED03"],["TED%3AAF-A0A3S0AB11-F1-model_v4_TED01","TED novel fold AF-A0A3S0AB11-F1-model_v4_TED01"],["TED%3AAF-A0A833UDR7-F1-model_v4_TED01","TED novel fold AF-A0A833UDR7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A106648","Acinetobacter bereziniae"],["NCBITaxon%3A981324","Acinetobacter bereziniae LMG 1003 = CIP 70.12"],["NCBITaxon%3A1217651","Acinetobacter bereziniae NIPH 3"],["NCBITaxon%3A1311817","Acinetobacter genomosp. 10 str. ATCC 51550"],["NCBITaxon%3A106649","Acinetobacter guillouiae"]]},{"id":"NCBITaxon:1589","l":"Lactiplantibacillus pentosus","na":3,"nb":5,"a":[["PROSITE%3APS60002","Phosphoketolase signature 1"],["PROSITE%3APS60003","Phosphoketolase signature 2"],["TED%3AAF-A0A2K9I3V8-F1-model_v4_TED01","TED novel fold AF-A0A2K9I3V8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1589","Lactiplantibacillus pentosus"],["NCBITaxon%3A1423791","Lactiplantibacillus pentosus DSM 20314"],["NCBITaxon%3A1042160","Lactiplantibacillus pentosus IG1"],["NCBITaxon%3A1136177","Lactiplantibacillus pentosus KCA1"],["NCBITaxon%3A1028490","Lactiplantibacillus pentosus MP-10"]]},{"id":"NCBITaxon:1665","l":"Arthrobacter globiformis","na":3,"nb":5,"a":[["Pfam%3APF21994","AGAO-like N2 domain"],["Pfam%3APF18835","Beta helix repeat of Inulin fructotransferase"],["TED%3AAF-A0A328HCX7-F1-model_v4_TED02","TED novel fold AF-A0A328HCX7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1665","Arthrobacter globiformis"],["NCBITaxon%3A1077972","Arthrobacter globiformis NBRC 12137"],["NCBITaxon%3A1667","Arthrobacter sp."],["NCBITaxon%3A169875","Arthrobacter sp. JCM 1339"],["NCBITaxon%3A1701","Brevibacterium sp."]]},{"id":"NCBITaxon:183","l":"Leptonema illini","na":5,"nb":3,"a":[["TED%3AAF-A0A833GYM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A833GYM6-F1-model_v4_TED01"],["TED%3AAF-A0A833GZG7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A833GZG7-F1-model_v4_TED01"],["TED%3AAF-A0A833H0U1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A833H0U1-F1-model_v4_TED01"],["TED%3AAF-A0A833H0U1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A833H0U1-F1-model_v4_TED02"],["TED%3AAF-A0A833LYP2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A833LYP2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A183","Leptonema illini"],["NCBITaxon%3A929563","Leptonema illini DSM 21528"],["NCBITaxon%3A330706","Leptonema illini serovar Habaki"]]},{"id":"NCBITaxon:216597","l":"Salmonella enterica subsp. enterica serovar Typhimurium str. SL1344","na":5,"nb":3,"a":[["Pfam%3APF08943","CsiD"],["Pfam%3APF07095","Intracellular growth attenuator protein IgaA"],["Pfam%3APF04741","InvH outer membrane lipoprotein"],["Pfam%3APF09599","Salmonella-Shigella invasin protein C (IpaC_SipC)"],["Pfam%3APF27051","TamB, N-terminal domain"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A216597","Salmonella enterica subsp. enterica serovar Typhimurium str. SL1344"]]},{"id":"NCBITaxon:2902295","l":"Vibrio campbellii ATCC BAA-1116","na":5,"nb":3,"a":[["Pfam%3APF02300","Fumarate reductase subunit C"],["Pfam%3APF18416","N-acetylglucosamine binding protein domain 2"],["Pfam%3APF21868","GlcNAc-binding protein A, third domain"],["Pfam%3APF17327","Acyl homoserine lactone synthase"],["Pfam%3APF06339","Ectoine synthase"]],"b":[["NCBITaxon%3A680","Vibrio campbellii"],["NCBITaxon%3A2902295","Vibrio campbellii ATCC BAA-1116"],["NCBITaxon%3A1224742","Vibrio campbellii CAIM 519 = NBRC 15631 = ATCC 25920"]]},{"id":"NCBITaxon:310297","l":"Phocaeicola plebeius","na":5,"nb":3,"a":[["TED%3AAF-A0A3E4Z795-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3E4Z795-F1-model_v4_TED01"],["TED%3AAF-A0A3E4Z7C6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3E4Z7C6-F1-model_v4_TED02"],["TED%3AAF-A0A3E4Z740-F1-model_v4_TED02","TED novel fold AF-A0A3E4Z740-F1-model_v4_TED02"],["TED%3AAF-A0A3E4Z9K1-F1-model_v4_TED01","TED novel fold AF-A0A3E4Z9K1-F1-model_v4_TED01"],["TED%3AAF-A0A415T3X6-F1-model_v4_TED01","TED novel fold AF-A0A415T3X6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A310297","Phocaeicola plebeius"],["NCBITaxon%3A1263052","Phocaeicola plebeius CAG:211"],["NCBITaxon%3A484018","Phocaeicola plebeius DSM 17135"]]},{"id":"NCBITaxon:33965","l":"Leuconostoc mesenteroides subsp. cremoris","na":3,"nb":5,"a":[["Pfam%3APF08218","Citrate lyase ligase C-terminal domain"],["Pfam%3APF04223","Citrate lyase, alpha subunit (CitF)"],["Pfam%3APF03802","Apo-citrate lyase phosphoribosyl-dephospho-CoA transferase"]],"b":[["NCBITaxon%3A1245","Leuconostoc mesenteroides"],["NCBITaxon%3A33965","Leuconostoc mesenteroides subsp. cremoris"],["NCBITaxon%3A586220","Leuconostoc mesenteroides subsp. cremoris ATCC 19254"],["NCBITaxon%3A1339224","Leuconostoc mesenteroides subsp. cremoris T26"],["NCBITaxon%3A1234889","Leuconostoc mesenteroides subsp. cremoris TIFN8"]]},{"id":"NCBITaxon:39491","l":"Agathobacter rectalis","na":3,"nb":5,"a":[["TED%3AAF-A0A395UXQ4-F1-model_v4_TED01","TED novel fold AF-A0A395UXQ4-F1-model_v4_TED01"],["TED%3AAF-A0A3E4Y626-F1-model_v4_TED03","TED novel fold AF-A0A3E4Y626-F1-model_v4_TED03"],["TED%3AAF-A0A413Q2Y5-F1-model_v4_TED01","TED novel fold AF-A0A413Q2Y5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39491","Agathobacter rectalis"],["NCBITaxon%3A515619","Agathobacter rectalis ATCC 33656"],["NCBITaxon%3A1263079","Agathobacter rectalis CAG:36"],["NCBITaxon%3A657318","Agathobacter rectalis DSM 17629"],["NCBITaxon%3A657317","Agathobacter rectalis M104/1"]]},{"id":"NCBITaxon:477","l":"Moraxella lacunata","na":3,"nb":5,"a":[["Pfam%3APF01548","Transposase"],["TED%3AAF-A0A1B8Q7V0-F1-model_v4_TED03","TED novel fold AF-A0A1B8Q7V0-F1-model_v4_TED03"],["TED%3AAF-A0A378QLT3-F1-model_v4_TED02","TED novel fold AF-A0A378QLT3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A34059","Faucicola atlantae"],["NCBITaxon%3A477","Moraxella lacunata"],["NCBITaxon%3A1223506","Moraxella lacunata NBRC 102154"],["NCBITaxon%3A184756","Nocardia caishijiensis"],["NCBITaxon%3A1210070","Nocardia caishijiensis NBRC 108228"]]},{"id":"NCBITaxon:674529","l":"Bacteroides faecis","na":5,"nb":3,"a":[["TED%3AAF-A0A174UNF9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A174UNF9-F1-model_v4_TED01"],["TED%3AAF-A0A6N2V213-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A6N2V213-F1-model_v4_TED04"],["TED%3AAF-A0A642MMT0-F1-model_v4_TED02","TED novel fold AF-A0A642MMT0-F1-model_v4_TED02"],["TED%3AAF-A0A642MUV2-F1-model_v4_TED02","TED novel fold AF-A0A642MUV2-F1-model_v4_TED02"],["TED%3AAF-A0A6N2V5R3-F1-model_v4_TED01","TED novel fold AF-A0A6N2V5R3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A674529","Bacteroides faecis"],["NCBITaxon%3A1263044","Bacteroides faecis CAG:32"],["NCBITaxon%3A1077285","Bacteroides faecis MAJ27"]]},{"id":"NCBITaxon:716541","l":"Enterobacter cloacae subsp. cloacae ATCC 13047","na":5,"nb":3,"a":[["Pfam%3APF18228","CdiI N-terminal domain"],["PROSITE%3APS00896","LacY family proton/sugar symporters signature 1"],["PROSITE%3APS00897","LacY family proton/sugar symporters signature 2"],["Pfam%3APF13332","Hemagglutinin repeat"],["Pfam%3APF05860","TPS secretion domain"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A336306","Enterobacter cloacae subsp. cloacae"],["NCBITaxon%3A716541","Enterobacter cloacae subsp. cloacae ATCC 13047"]]},{"id":"NCBITaxon:1085","l":"Rhodospirillum rubrum","na":4,"nb":3,"a":[["Pfam%3APF00556","Antenna complex alpha/beta subunit"],["Pfam%3APF09527","Putative F0F1-ATPase subunit Ca2+/Mg2+ transporter"],["Pfam%3APF07357","Dinitrogenase reductase ADP-ribosyltransferase (DRAT)"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"]],"b":[["NCBITaxon%3A1085","Rhodospirillum rubrum"],["NCBITaxon%3A269796","Rhodospirillum rubrum ATCC 11170"],["NCBITaxon%3A1036743","Rhodospirillum rubrum F11"]]},{"id":"NCBITaxon:1355477","l":"Bradyrhizobium diazoefficiens","na":3,"nb":4,"a":[["TED%3AAF-A0A0E4FY11-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0E4FY11-F1-model_v4_TED02"],["TED%3AAF-A0A7T8A127-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7T8A127-F1-model_v4_TED04"],["TED%3AAF-A0A7T7V5A8-F1-model_v4_TED04","TED novel fold AF-A0A7T7V5A8-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1355477","Bradyrhizobium diazoefficiens"],["NCBITaxon%3A754504","Bradyrhizobium diazoefficiens SEMIA 5080"],["NCBITaxon%3A224911","Bradyrhizobium diazoefficiens USDA 110"],["NCBITaxon%3A375","Bradyrhizobium japonicum"]]},{"id":"NCBITaxon:1433","l":"Bacillus thuringiensis serovar aizawai","na":4,"nb":3,"a":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF17997","Insecticidal delta-endotoxin CryIA(c) domain 5"],["Pfam%3APF21463","Cry1Ac, domain VII"],["Pfam%3APF18449","Pesticidal crystal protein Cry1Aa, domain IV"]],"b":[["NCBITaxon%3A1433","Bacillus thuringiensis serovar aizawai"],["NCBITaxon%3A1238885","Bacillus thuringiensis serovar aizawai str. Hu4-2"],["NCBITaxon%3A1232203","Bacillus thuringiensis serovar aizawai str. Leapi01"]]},{"id":"NCBITaxon:162","l":"Treponema phagedenis","na":3,"nb":4,"a":[["PROSITE%3APS01307","Flagellar motor protein motA family signature"],["TED%3AAF-A0A0B7GT70-F1-model_v4_TED01","TED novel fold AF-A0A0B7GT70-F1-model_v4_TED01"],["TED%3AAF-A0A0B7GWA6-F1-model_v4_TED04","TED novel fold AF-A0A0B7GWA6-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A162","Treponema phagedenis"],["NCBITaxon%3A1306407","Treponema phagedenis 4A"],["NCBITaxon%3A754027","Treponema phagedenis F0421"],["NCBITaxon%3A409321","Treponema phagedenis subsp. vaccae"]]},{"id":"NCBITaxon:17","l":"Methylophilus methylotrophus","na":3,"nb":4,"a":[["Pfam%3APF09086","Domain of unknown function (DUF1924)"],["Pfam%3APF03069","Acetamidase/Formamidase family"],["PROSITE%3APS00696","Electron transfer flavoprotein alpha-subunit signature"]],"b":[["NCBITaxon%3A406","Methylobacillus glycogenes"],["NCBITaxon%3A17","Methylophilus methylotrophus"],["NCBITaxon%3A1122236","Methylophilus methylotrophus DSM 46235 = ATCC 53528"],["NCBITaxon%3A2327","Methylophilus methylotrophus W3A1"]]},{"id":"NCBITaxon:174633","l":"Candidatus Kuenenia stuttgartensis","na":3,"nb":4,"a":[["Pfam%3APF22142","Hydroxylamine oxidoreductase, C-terminal domain"],["Pfam%3APF18582","Hydrazine synthase alpha subunit middle domain"],["Pfam%3APF21783","YNCE-like beta-propeller"]],"b":[["NCBITaxon%3A174633","Candidatus Kuenenia stuttgartensis"],["NCBITaxon%3A1230344","Candidatus Kuenenia stuttgartiensis enrichment culture clone CH1"],["NCBITaxon%3A1230345","Candidatus Kuenenia stuttgartiensis enrichment culture clone RU1"],["NCBITaxon%3A1230346","environmental samples"]]},{"id":"NCBITaxon:1836","l":"Saccharopolyspora erythraea","na":4,"nb":3,"a":[["Pfam%3APF08990","Erythronolide synthase docking domain"],["Pfam%3APF09277","Erythronolide synthase, docking"],["Pfam%3APF12728","Helix-turn-helix domain"],["Pfam%3APF12307","Protein of unknown function (DUF3631)"]],"b":[["NCBITaxon%3A1836","Saccharopolyspora erythraea"],["NCBITaxon%3A1382595","Saccharopolyspora erythraea D"],["NCBITaxon%3A405948","Saccharopolyspora erythraea NRRL 2338"]]},{"id":"NCBITaxon:192","l":"Azospirillum brasilense","na":3,"nb":4,"a":[["Pfam%3APF24931","ACR9-like, ACT-like domain"],["Pfam%3APF27444","Uridylyltransferase GlnD third domain"],["TED%3AAF-A0A235H319-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A235H319-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1064539","Azospirillum baldaniorum"],["NCBITaxon%3A192","Azospirillum brasilense"],["NCBITaxon%3A1117321","Azospirillum brasilense CBG497"],["NCBITaxon%3A1262469","Azospirillum brasilense FP2"]]},{"id":"NCBITaxon:1961","l":"Streptomyces virginiae","na":3,"nb":4,"a":[["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF19328","2,4-diaminopentanoate dehydrogenase C-terminal domain"],["PROSITE%3APS01014","Transcription termination factor nusG signature"]],"b":[["NCBITaxon%3A1535204","Metabacillus endolithicus"],["NCBITaxon%3A67381","Streptomyces violascens"],["NCBITaxon%3A1961","Streptomyces virginiae"],["NCBITaxon%3A3478784","Streptomyces virginiae subsp. lipoxae (nom. nud.)"]]},{"id":"NCBITaxon:227","l":"Pseudoalteromonas carrageenovora","na":3,"nb":4,"a":[["Pfam%3APF25291","Lambda-carrageenase C-terminal domain"],["Pfam%3APF25290","Lambda-carrageenase middle domain"],["Pfam%3APF25292","Lambda-carrageenase beta-propeller domain"]],"b":[["NCBITaxon%3A1511","Acetoanaerobium sticklandii"],["NCBITaxon%3A499177","Acetoanaerobium sticklandii DSM 519"],["NCBITaxon%3A227","Pseudoalteromonas carrageenovora"],["NCBITaxon%3A1314868","Pseudoalteromonas carrageenovora IAM 12662"]]},{"id":"NCBITaxon:253","l":"Chryseobacterium indologenes","na":3,"nb":4,"a":[["PROSITE%3APS00744","Beta-lactamases class B signature 2"],["TED%3AAF-A0A7T8U7T3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T8U7T3-F1-model_v4_TED01"],["TED%3AAF-A0A0N0ZUI2-F1-model_v4_TED01","TED novel fold AF-A0A0N0ZUI2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A246","Chryseobacterium balustinum"],["NCBITaxon%3A253","Chryseobacterium indologenes"],["NCBITaxon%3A1218103","Chryseobacterium indologenes NBRC 14944"],["NCBITaxon%3A239","Flavobacterium sp."]]},{"id":"NCBITaxon:28111","l":"Bacteroides eggerthii","na":3,"nb":4,"a":[["TED%3AAF-A0A380YHG6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A380YHG6-F1-model_v4_TED01"],["TED%3AAF-A0A380YP67-F1-model_v4_TED01","TED novel fold AF-A0A380YP67-F1-model_v4_TED01"],["TED%3AAF-A0A414M8K0-F1-model_v4_TED04","TED novel fold AF-A0A414M8K0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A28111","Bacteroides eggerthii"],["NCBITaxon%3A665953","Bacteroides eggerthii 1_2_48FAA"],["NCBITaxon%3A1263043","Bacteroides eggerthii CAG:109"],["NCBITaxon%3A483216","Bacteroides eggerthii DSM 20697"]]},{"id":"NCBITaxon:28896","l":"Thermoanaerobacterium saccharolyticum","na":3,"nb":4,"a":[["Pfam%3APF06452","Carbohydrate family 9 binding domain-like"],["PROSITE%3APS01027","Glycosyl hydrolases family 39 active site"],["Pfam%3APF00395","S-layer homology domain"]],"b":[["NCBITaxon%3A28896","Thermoanaerobacterium saccharolyticum"],["NCBITaxon%3A1313300","Thermoanaerobacterium saccharolyticum B6A"],["NCBITaxon%3A1123370","Thermoanaerobacterium saccharolyticum DSM 7060"],["NCBITaxon%3A1094508","Thermoanaerobacterium saccharolyticum JW/SL-YS485"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans PD1222","na":4,"nb":3,"a":[["Pfam%3APF27518","Heme exporter protein C"],["Pfam%3APF22039","Imidazolonepropionase-like composite domain, bacteria"],["PROSITE%3APS01181","Ribosomal protein S21 signature"],["Pfam%3APF02239","Cytochrome D1 heme domain"]],"b":[["NCBITaxon%3A266","Paracoccus denitrificans"],["NCBITaxon%3A1302247","Paracoccus denitrificans JCM 21484"],["NCBITaxon%3A318586","Paracoccus denitrificans PD1222"]]},{"id":"NCBITaxon:37636","l":"Thermus scotoductus","na":3,"nb":4,"a":[["TED%3AAF-A0A430RNB2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A430RNB2-F1-model_v4_TED02"],["TED%3AAF-A0A430UKG8-F1-model_v4_TED01","TED novel fold AF-A0A430UKG8-F1-model_v4_TED01"],["TED%3AAF-A0A430VPL1-F1-model_v4_TED01","TED novel fold AF-A0A430VPL1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A37636","Thermus scotoductus"],["NCBITaxon%3A1123391","Thermus scotoductus DSM 8553"],["NCBITaxon%3A1382313","Thermus scotoductus KI2"],["NCBITaxon%3A743525","Thermus scotoductus SA-01"]]},{"id":"NCBITaxon:45634","l":"Streptococcus cristatus","na":3,"nb":4,"a":[["Pfam%3APF03486","HI0933-like protein Rossmann domain"],["Pfam%3APF22780","HI0933-like protein barrel and H2TH domain"],["TED%3AAF-A0A139N090-F1-model_v4_TED01","TED novel fold AF-A0A139N090-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A45634","Streptococcus cristatus"],["NCBITaxon%3A1302863","Streptococcus cristatus AS 1.3089"],["NCBITaxon%3A889201","Streptococcus cristatus ATCC 51100"],["NCBITaxon%3A1305","Streptococcus sanguinis"]]},{"id":"NCBITaxon:46506","l":"Bacteroides stercoris","na":3,"nb":4,"a":[["Pfam%3APF16889","Heparinase II/III N-terminus"],["TED%3AAF-A0A3E4UKZ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3E4UKZ4-F1-model_v4_TED01"],["TED%3AAF-A0A413B3W6-F1-model_v4_TED03","TED novel fold AF-A0A413B3W6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A46506","Bacteroides stercoris"],["NCBITaxon%3A449673","Bacteroides stercoris ATCC 43183"],["NCBITaxon%3A1263053","Bacteroides stercoris CAG:120"],["NCBITaxon%3A1073351","Bacteroides stercoris CC31F"]]},{"id":"NCBITaxon:51201","l":"Streptomyces griseocarneus","na":3,"nb":4,"a":[["TED%3AAF-A0A3L8IG13-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3L8IG13-F1-model_v4_TED01"],["TED%3AAF-A0A3L8KW22-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3L8KW22-F1-model_v4_TED02"],["TED%3AAF-A0A8A3HJQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8A3HJQ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A173770","Streptomyces alboverticillatus"],["NCBITaxon%3A51201","Streptomyces griseocarneus"],["NCBITaxon%3A156648","Streptomyces septatus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:83552","l":"Parachlamydia acanthamoebae","na":4,"nb":3,"a":[["TED%3AAF-A0A0C1C0X3-F1-model_v4_TED01","TED novel fold AF-A0A0C1C0X3-F1-model_v4_TED01"],["TED%3AAF-A0A0C1C9D0-F1-model_v4_TED03","TED novel fold AF-A0A0C1C9D0-F1-model_v4_TED03"],["TED%3AAF-A0A0C1CAV8-F1-model_v4_TED03","TED novel fold AF-A0A0C1CAV8-F1-model_v4_TED03"],["TED%3AAF-A0A0C1ECC2-F1-model_v4_TED03","TED novel fold AF-A0A0C1ECC2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A83552","Parachlamydia acanthamoebae"],["NCBITaxon%3A159254","Parachlamydia acanthamoebae str. Hall's coccus"],["NCBITaxon%3A765952","Parachlamydia acanthamoebae UV-7"]]},{"id":"NCBITaxon:135487","l":"Nocardia cyriacigeorgica","na":3,"nb":3,"a":[["TED%3AAF-A0A5R8NG95-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5R8NG95-F1-model_v4_TED01"],["TED%3AAF-A0A5R8PHP8-F1-model_v4_TED01","TED novel fold AF-A0A5R8PHP8-F1-model_v4_TED01"],["TED%3AAF-A0A6P1CWQ9-F1-model_v4_TED01","TED novel fold AF-A0A6P1CWQ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A135487","Nocardia cyriacigeorgica"],["NCBITaxon%3A1127134","Nocardia cyriacigeorgica GUH-2"],["NCBITaxon%3A1206728","Nocardia cyriacigeorgica NBRC 100375"]]},{"id":"NCBITaxon:190304","l":"Fusobacterium nucleatum subsp. nucleatum ATCC 25586","na":3,"nb":3,"a":[["Pfam%3APF05853","beta-keto acid cleavage enzyme"],["Pfam%3APF26317","Histidine racemase CntK N-terminal domain"],["Pfam%3APF26370","L-erythro-3,5-diaminohexanoate dehydrogenase N-terminal domain"]],"b":[["NCBITaxon%3A851","Fusobacterium nucleatum"],["NCBITaxon%3A76856","Fusobacterium nucleatum subsp. nucleatum"],["NCBITaxon%3A190304","Fusobacterium nucleatum subsp. nucleatum ATCC 25586"]]},{"id":"NCBITaxon:2188","l":"Methanococcus voltae","na":3,"nb":3,"a":[["Pfam%3APF05377","Flagella accessory protein C (FlaC)"],["Pfam%3APF04659","Archaeal flagella protein"],["Pfam%3APF01917","Archaeal-type flagellin"]],"b":[["NCBITaxon%3A2188","Methanococcus voltae"],["NCBITaxon%3A456320","Methanococcus voltae A3"],["NCBITaxon%3A523842","Methanococcus voltae PS"]]},{"id":"NCBITaxon:301452","l":"Streptococcus pyogenes serotype M49","na":3,"nb":3,"a":[["Pfam%3APF20746","Endo-beta-N-acetylglucosaminidase F2, Ig-like domain"],["Pfam%3APF23952","Endo-beta-N-acetylglucosaminidase EndoS LRR domain"],["Pfam%3APF02370","M protein repeat"]],"b":[["NCBITaxon%3A294934","Streptococcus pyogenes M49 591"],["NCBITaxon%3A471876","Streptococcus pyogenes NZ131"],["NCBITaxon%3A301452","Streptococcus pyogenes serotype M49"]]},{"id":"NCBITaxon:306","l":"Pseudomonas sp.","na":3,"nb":3,"a":[["Pfam%3APF14864","Alkyl sulfatase C-terminal"],["Pfam%3APF13816","Haem-containing dehydratase"],["Pfam%3APF14863","Alkyl sulfatase dimerisation"]],"b":[["NCBITaxon%3A2219225","Pseudomonas asiatica"],["NCBITaxon%3A1628086","Pseudomonas kribbensis"],["NCBITaxon%3A306","Pseudomonas sp."]]},{"id":"NCBITaxon:349221","l":"Micavibrio aeruginosavorus","na":3,"nb":3,"a":[["TED%3AAF-A0A2W5N6B0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W5N6B0-F1-model_v4_TED01"],["TED%3AAF-A0A2W5FID9-F1-model_v4_TED01","TED novel fold AF-A0A2W5FID9-F1-model_v4_TED01"],["TED%3AAF-A0A7T5R250-F1-model_v4_TED01","TED novel fold AF-A0A7T5R250-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A349221","Micavibrio aeruginosavorus"],["NCBITaxon%3A856793","Micavibrio aeruginosavorus ARL-13"],["NCBITaxon%3A349215","Micavibrio aeruginosavorus EPB"]]},{"id":"NCBITaxon:358742","l":"Enterocloster aldenensis","na":3,"nb":3,"a":[["TED%3AAF-A0A413W8D2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A413W8D2-F1-model_v4_TED02"],["TED%3AAF-A0A413W7F7-F1-model_v4_TED01","TED novel fold AF-A0A413W7F7-F1-model_v4_TED01"],["TED%3AAF-A0A413WID6-F1-model_v4_TED03","TED novel fold AF-A0A413WID6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1121294","[Clostridium] aldenense DSM 19262"],["NCBITaxon%3A742731","[Clostridium] aldenense WAL-18727"],["NCBITaxon%3A358742","Enterocloster aldenensis"]]},{"id":"NCBITaxon:39485","l":"Lachnospira eligens","na":3,"nb":3,"a":[["TED%3AAF-A0A413Z2M9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A413Z2M9-F1-model_v4_TED01"],["TED%3AAF-A0A414DG84-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A414DG84-F1-model_v4_TED02"],["TED%3AAF-A0A415MEX8-F1-model_v4_TED01","TED novel fold AF-A0A415MEX8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39485","Lachnospira eligens"],["NCBITaxon%3A515620","Lachnospira eligens ATCC 27750"],["NCBITaxon%3A1263077","Lachnospira eligens CAG:72"]]},{"id":"NCBITaxon:431944","l":"Magnetospirillum gryphiswaldense MSR-1","na":3,"nb":3,"a":[["Pfam%3APF12728","Helix-turn-helix domain"],["Pfam%3APF04011","LemA family"],["Pfam%3APF07219","HemY protein N-terminus"]],"b":[["NCBITaxon%3A55518","Magnetospirillum gryphiswaldense"],["NCBITaxon%3A431944","Magnetospirillum gryphiswaldense MSR-1"],["NCBITaxon%3A1430440","Magnetospirillum gryphiswaldense MSR-1 v2"]]},{"id":"NCBITaxon:53462","l":"Mycolicibacterium mageritense","na":3,"nb":3,"a":[["TED%3AAF-A0A5C7XVY5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7XVY5-F1-model_v4_TED01"],["TED%3AAF-A0A5C7XY26-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7XY26-F1-model_v4_TED01"],["TED%3AAF-A0A5C7XYF8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7XYF8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A53462","Mycolicibacterium mageritense"],["NCBITaxon%3A1209984","Mycolicibacterium mageritense DSM 44476 = CIP 104973"],["NCBITaxon%3A1087053","Mycolicibacterium mageritense JR2009"]]},{"id":"NCBITaxon:54571","l":"Streptomyces venezuelae","na":3,"nb":3,"a":[["Pfam%3APF08990","Erythronolide synthase docking domain"],["TED%3AAF-A0A5P2CQV7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5P2CQV7-F1-model_v4_TED02"],["TED%3AAF-A0A5P2C5X4-F1-model_v4_TED01","TED novel fold AF-A0A5P2C5X4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A54571","Streptomyces venezuelae"],["NCBITaxon%3A953739","Streptomyces venezuelae ATCC 10712"]]},{"id":"NCBITaxon:588","l":"Providencia stuartii","na":3,"nb":3,"a":[["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["PROSITE%3APS01157","Class A bacterial acid phosphatases signature"]],"b":[["NCBITaxon%3A588","Providencia stuartii"],["NCBITaxon%3A471874","Providencia stuartii ATCC 25827"],["NCBITaxon%3A1157951","Providencia stuartii MRSN 2154"]]},{"id":"NCBITaxon:73230","l":"[Emmonsia] crescens","na":3,"nb":3,"a":[["TED%3AAF-A0A2B7ZD89-F1-model_v4_TED01","TED novel fold AF-A0A2B7ZD89-F1-model_v4_TED01"],["TED%3AAF-A0A2B7ZII7-F1-model_v4_TED01","TED novel fold AF-A0A2B7ZII7-F1-model_v4_TED01"],["TED%3AAF-A0A2B7ZNT7-F1-model_v4_TED02","TED novel fold AF-A0A2B7ZNT7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A68989","Acinetobacter sp. ATCC 17979"],["NCBITaxon%3A40373","Acinetobacter sp. CIP-A165"],["NCBITaxon%3A73230","[Emmonsia] crescens"]]},{"id":"NCBITaxon:76857","l":"Fusobacterium polymorphum","na":3,"nb":3,"a":[["TED%3AAF-A0A2C6BKL5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2C6BKL5-F1-model_v4_TED01"],["TED%3AAF-A0A0S2ZS50-F1-model_v4_TED01","TED novel fold AF-A0A0S2ZS50-F1-model_v4_TED01"],["TED%3AAF-A0A2B7YED0-F1-model_v4_TED02","TED novel fold AF-A0A2B7YED0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A76857","Fusobacterium polymorphum"],["NCBITaxon%3A393480","Fusobacterium polymorphum ATCC 10953"],["NCBITaxon%3A693991","Fusobacterium polymorphum F0401"]]},{"id":"NCBITaxon:79880","l":"Shouchella clausii","na":3,"nb":3,"a":[["Pfam%3APF13536","Putative multidrug resistance efflux transporter"],["Pfam%3APF10776","Protein of unknown function (DUF2600)"],["TED%3AAF-A0A268NXB1-F1-model_v4_TED01","TED novel fold AF-A0A268NXB1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A79880","Shouchella clausii"],["NCBITaxon%3A66692","Shouchella clausii KSM-K16"],["NCBITaxon%3A83428","uncultured Bacillus sp."]]},{"id":"NCBITaxon:996","l":"Flavobacterium columnare","na":3,"nb":3,"a":[["TED%3AAF-A0A4Z0FEB3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Z0FEB3-F1-model_v4_TED02"],["TED%3AAF-A0A2N9P872-F1-model_v4_TED02","TED novel fold AF-A0A2N9P872-F1-model_v4_TED02"],["TED%3AAF-A0A2T4HIF9-F1-model_v4_TED03","TED novel fold AF-A0A2T4HIF9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A996","Flavobacterium columnare"],["NCBITaxon%3A1041826","Flavobacterium columnare ATCC 49512"],["NCBITaxon%3A1218111","Flavobacterium columnare NBRC 100251 = ATCC 23463"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii DSM 2661","na":5181,"nb":2,"a":[["EC%3A1.12.99.-","With other acceptors"],["EC%3A1.3.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.3.-.-","Acting on the CH-CH group of donors"],["EC%3A1.8.98.-","With other, known, acceptors"],["EC%3A1.97.1.-","Other oxidoreductases"],["EC%3A2.1.2.-","Hydroxymethyl-, formyl- and related transferases"]],"b":[["NCBITaxon%3A2190","Methanocaldococcus jannaschii"],["NCBITaxon%3A243232","Methanocaldococcus jannaschii DSM 2661"]]},{"id":"NCBITaxon:59201","l":"Salmonella enterica subsp. enterica","na":2,"nb":4549,"a":[["TED%3AAF-A0A711ED47-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A711ED47-F1-model_v4_TED01"],["TED%3AAF-A0A5U3EZQ4-F1-model_v4_TED01","TED novel fold AF-A0A5U3EZQ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A486987","Salmonella enterica subsp. enterica serovar '02-6026 18:1 v-z-Arizona'"],["NCBITaxon%3A2978376","Salmonella enterica subsp. enterica serovar 11:b:1,7"],["NCBITaxon%3A2808980","Salmonella enterica subsp. enterica serovar 11:r:-"],["NCBITaxon%3A3367019","Salmonella enterica subsp. enterica serovar 13,22:y:-"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":2,"nb":264,"a":[["TED%3AAF-B5UAE0-F1-model_v4_TED01","TED highly-symmetric fold AF-B5UAE0-F1-model_v4_TED01"],["TED%3AAF-A0A3E1IF45-F1-model_v4_TED01","TED novel fold AF-A0A3E1IF45-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A663","Vibrio alginolyticus"],["NCBITaxon%3A29494","Vibrio furnissii"],["NCBITaxon%3A675811","Vibrio furnissii CIP 102972"],["NCBITaxon%3A670","Vibrio parahaemolyticus"],["NCBITaxon%3A1238231","Vibrio parahaemolyticus 10290"],["NCBITaxon%3A1238195","Vibrio parahaemolyticus 10296"]]},{"id":"NCBITaxon:1309","l":"Streptococcus mutans","na":2,"nb":178,"a":[["Pfam%3APF02052","Gallidermin"],["Pfam%3APF04604","Type-A lantibiotic"]],"b":[["NCBITaxon%3A150055","Streptococcus lutetiensis"],["NCBITaxon%3A1309","Streptococcus mutans"],["NCBITaxon%3A857155","Streptococcus mutans 11A1"],["NCBITaxon%3A857147","Streptococcus mutans 11SSST2"],["NCBITaxon%3A857143","Streptococcus mutans 11VS1"],["NCBITaxon%3A857113","Streptococcus mutans 14D"]]},{"id":"NCBITaxon:224325","l":"Archaeoglobus fulgidus DSM 4304","na":102,"nb":2,"a":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF19436","ACS/CODH beta subunit C-terminal"],["Pfam%3APF27352","AF_0059 family"],["Pfam%3APF27313","AF_0136 family C-terminal domain"],["Pfam%3APF27315","AF_0136 family N-terminal domain"],["Pfam%3APF27217","AF_0155 Rossmann-like domain"]],"b":[["NCBITaxon%3A2234","Archaeoglobus fulgidus"],["NCBITaxon%3A224325","Archaeoglobus fulgidus DSM 4304"]]},{"id":"NCBITaxon:199310","l":"Escherichia coli CFT073","na":89,"nb":2,"a":[["Pfam%3APF12343","DeaD helicase C-terminal disordered region"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF08298","PrkA AAA domain"],["Pfam%3APF17425","Arylsulfotransferase Ig-like domain"],["Pfam%3APF02611","CDP-diacylglycerol pyrophosphatase"],["Pfam%3APF10729","Cell division activator CedA"]],"b":[["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A199310","Escherichia coli CFT073"]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":2,"nb":88,"a":[["TED%3AAF-A0A6N3WS12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N3WS12-F1-model_v4_TED01"],["TED%3AAF-A0A3R7GIU2-F1-model_v4_TED02","TED novel fold AF-A0A3R7GIU2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A298","Pseudomonas marginalis"],["NCBITaxon%3A56448","Xanthomonas arboricola"],["NCBITaxon%3A339","Xanthomonas campestris"],["NCBITaxon%3A1281290","Xanthomonas campestris CFBP 5824"],["NCBITaxon%3A1281289","Xanthomonas campestris CFBP 5825"],["NCBITaxon%3A1182783","Xanthomonas campestris JX"]]},{"id":"NCBITaxon:1597","l":"Lacticaseibacillus paracasei","na":2,"nb":56,"a":[["Pfam%3APF09136","Glucodextranase, domain B"],["Pfam%3APF08109","Lactocin 705 family"]],"b":[["NCBITaxon%3A1582","Lacticaseibacillus casei"],["NCBITaxon%3A1597","Lacticaseibacillus paracasei"],["NCBITaxon%3A321967","Lacticaseibacillus paracasei ATCC 334"],["NCBITaxon%3A1226299","Lacticaseibacillus paracasei COM0101"],["NCBITaxon%3A1446494","Lacticaseibacillus paracasei N1115"],["NCBITaxon%3A1435038","Lacticaseibacillus paracasei NRIC 0644"]]},{"id":"NCBITaxon:550","l":"Enterobacter cloacae","na":2,"nb":56,"a":[["PROSITE%3APS00336","Beta-lactamase class-C active site"],["TED%3AAF-A0A155XQ59-F1-model_v4_TED02","TED novel fold AF-A0A155XQ59-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A61645","Enterobacter asburiae"],["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A1328422","Enterobacter cloacae BIDMC 33A"],["NCBITaxon%3A1439324","Enterobacter cloacae BIDMC 66"],["NCBITaxon%3A1439325","Enterobacter cloacae BIDMC 67"],["NCBITaxon%3A1329846","Enterobacter cloacae BIDMC 8"]]},{"id":"NCBITaxon:446","l":"Legionella pneumophila","na":2,"nb":47,"a":[["Pfam%3APF14860","DrrA phosphatidylinositol 4-phosphate binding domain"],["TED%3AAF-A0A822WCM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A822WCM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A446","Legionella pneumophila"],["NCBITaxon%3A866628","Legionella pneumophila 130b"],["NCBITaxon%3A423212","Legionella pneumophila 2300/99 Alcoy"],["NCBITaxon%3A1370127","Legionella pneumophila Leg01/16"],["NCBITaxon%3A66976","Legionella pneumophila serogroup 1"],["NCBITaxon%3A66985","Legionella pneumophila serogroup 10"]]},{"id":"NCBITaxon:85962","l":"Helicobacter pylori 26695","na":45,"nb":2,"a":[["IDPO%3A0000002","disorder"],["IDPO%3A0000006","order"],["IDPO%3A0000014","order to disorder"],["Pfam%3APF15437","Plasminogen-binding protein pgbA C-terminal"],["Pfam%3APF02293","AmiS/UreI family transporter"],["Pfam%3APF00772","DnaB-like helicase N terminal domain"]],"b":[["NCBITaxon%3A210","Helicobacter pylori"],["NCBITaxon%3A85962","Helicobacter pylori 26695"]]},{"id":"NCBITaxon:243277","l":"Vibrio cholerae O1 biovar El Tor str. N16961","na":44,"nb":2,"a":[["IDPO%3A0000011","disorder to order"],["IDPO%3A0000014","order to disorder"],["Pfam%3APF16671","Actin cross-linking domain"],["Pfam%3APF00842","Alanine racemase, C-terminal domain"],["Pfam%3APF06228","Haem utilisation ChuX/HutX"],["Pfam%3APF19425","Csd3 second domain"]],"b":[["NCBITaxon%3A666","Vibrio cholerae"],["NCBITaxon%3A243277","Vibrio cholerae O1 biovar El Tor str. N16961"]]},{"id":"NCBITaxon:186497","l":"Pyrococcus furiosus DSM 3638","na":41,"nb":2,"a":[["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF01314","Aldehyde ferredoxin oxidoreductase, domains 2 & 3"],["Pfam%3APF02730","Aldehyde ferredoxin oxidoreductase, N-terminal domain"],["Pfam%3APF22476","Argonaute, N-terminal domain"],["Pfam%3APF09094","Alpha-amylase/4-alpha-glucanotransferase, middle domain"],["Pfam%3APF09095","Alpha-amylase/4-alpha-glucanotransferase, C-terminal"]],"b":[["NCBITaxon%3A2261","Pyrococcus furiosus"],["NCBITaxon%3A186497","Pyrococcus furiosus DSM 3638"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima MSB8","na":39,"nb":2,"a":[["Pfam%3APF02829","3H domain"],["Pfam%3APF13175","AAA ATPase domain"],["Pfam%3APF01958","Aspartate dehydrogenase, C-terminal"],["Pfam%3APF05448","Acetyl xylan esterase (AXE1)"],["Pfam%3APF04509","CheC-like family"],["Pfam%3APF13690","Chemotaxis phosphatase CheX"]],"b":[["NCBITaxon%3A2336","Thermotoga maritima"],["NCBITaxon%3A243274","Thermotoga maritima MSB8"]]},{"id":"NCBITaxon:187420","l":"Methanothermobacter thermautotrophicus str. Delta H","na":38,"nb":2,"a":[["Pfam%3APF23902","PRS2 AAA+ lid C-terminal domain"],["Pfam%3APF06819","Archaeal Peptidase A24 C-terminal Domain"],["Pfam%3APF01903","CbiX"],["Pfam%3APF17244","Cell division control protein 24, OB domain 3"],["Pfam%3APF22703","Cdc6 AAA+ ATPase-type lid domain"],["Pfam%3APF27272","Cyclic 2,3-diphosphoglycerate synthetase, N-terminal domain"]],"b":[["NCBITaxon%3A145262","Methanothermobacter thermautotrophicus"],["NCBITaxon%3A187420","Methanothermobacter thermautotrophicus str. Delta H"]]},{"id":"NCBITaxon:272634","l":"Mycoplasmoides pneumoniae M129","na":38,"nb":2,"a":[["Pfam%3APF01812","5-formyltetrahydrofolate cyclo-ligase family"],["Pfam%3APF03257","Mycoplasma adhesin P1, C-terminal"],["Pfam%3APF22509","CARDS D2, beta trefoil domain"],["Pfam%3APF22346","ADP-ribosylating toxin CARDS, C-terminal beta-trefoil domain"],["Pfam%3APF21694","DNA polymerase III delta subunit, C-terminal domain"],["Pfam%3APF01519","Protein of unknown function DUF16"]],"b":[["NCBITaxon%3A2104","Mycoplasmoides pneumoniae"],["NCBITaxon%3A272634","Mycoplasmoides pneumoniae M129"]]},{"id":"NCBITaxon:273057","l":"Saccharolobus solfataricus P2","na":37,"nb":2,"a":[["Pfam%3APF02294","7kD DNA-binding domain"],["Pfam%3APF02675","S-adenosylmethionine decarboxylase"],["Pfam%3APF09071","Alpha-amylase, C terminal"],["Pfam%3APF17952","Cas6 N-terminal domain"],["Pfam%3APF27338","Cytochrome b558/566 subunit B"],["Pfam%3APF22703","Cdc6 AAA+ ATPase-type lid domain"]],"b":[["NCBITaxon%3A2287","Saccharolobus solfataricus"],["NCBITaxon%3A273057","Saccharolobus solfataricus P2"]]},{"id":"NCBITaxon:410072","l":"Allocoprococcus comes","na":2,"nb":36,"a":[["TED%3AAF-A0A3R6EK28-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R6EK28-F1-model_v4_TED01"],["TED%3AAF-A0A173UHG4-F1-model_v4_TED01","TED novel fold AF-A0A173UHG4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A410072","Allocoprococcus comes"],["NCBITaxon%3A470146","Coprococcus comes ATCC 27758"],["NCBITaxon%3A1263070","Coprococcus comes CAG:19"],["NCBITaxon%3A717958","Coprococcus comes SL7/1"],["NCBITaxon%3A1339425","Coprococcus comes TS7.1-1.1"],["NCBITaxon%3A1339426","Coprococcus comes TS7.1-1.2"]]},{"id":"NCBITaxon:1303","l":"Streptococcus oralis","na":2,"nb":35,"a":[["Pfam%3APF03047","COMC family"],["TED%3AAF-A0A139PPG4-F1-model_v4_TED02","TED novel fold AF-A0A139PPG4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A68892","Streptococcus infantis"],["NCBITaxon%3A768726","Streptococcus mitis bv. 2 str. F0392"],["NCBITaxon%3A1000588","Streptococcus mitis bv. 2 str. SK95"],["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A655813","Streptococcus oralis ATCC 35037"],["NCBITaxon%3A888049","Streptococcus oralis ATCC 49296"]]},{"id":"NCBITaxon:1912","l":"Streptomyces hygroscopicus","na":2,"nb":35,"a":[["Pfam%3APF21168","Chorismatase FkbO/Hyg5-like, N-terminal"],["TED%3AAF-A0A1S6RUT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S6RUT8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A285578","Streptomyces angustmyceticus"],["NCBITaxon%3A68175","Streptomyces antimycoticus"],["NCBITaxon%3A1226758","Streptomyces antimycoticus subsp. mordarskii"],["NCBITaxon%3A476551","Streptomyces ascomycinicus"],["NCBITaxon%3A114699","Streptomyces asiaticus"],["NCBITaxon%3A3098222","Streptomyces asiaticus subsp. ignotus"]]},{"id":"NCBITaxon:2702","l":"Gardnerella vaginalis","na":2,"nb":35,"a":[["TED%3AAF-A0A133NUL7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A133NUL7-F1-model_v4_TED01"],["TED%3AAF-A0A3E2C3X9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3E2C3X9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2702","Gardnerella vaginalis"],["NCBITaxon%3A698952","Gardnerella vaginalis 0288E"],["NCBITaxon%3A698957","Gardnerella vaginalis 1500E"],["NCBITaxon%3A698950","Gardnerella vaginalis 284V"],["NCBITaxon%3A879307","Gardnerella vaginalis 315-A"],["NCBITaxon%3A553190","Gardnerella vaginalis 409-05"]]},{"id":"NCBITaxon:1582","l":"Lacticaseibacillus casei","na":2,"nb":32,"a":[["Pfam%3APF07475","HPr Serine kinase C-terminal domain"],["PROSITE%3APS01163","Galactose-1-phosphate uridyl transferase family 2 signature"]],"b":[["NCBITaxon%3A1582","Lacticaseibacillus casei"],["NCBITaxon%3A1051650","Lacticaseibacillus casei 12A"],["NCBITaxon%3A1051651","Lacticaseibacillus casei 21/1"],["NCBITaxon%3A1051652","Lacticaseibacillus casei 32G"],["NCBITaxon%3A1378069","Lacticaseibacillus casei 5b"],["NCBITaxon%3A1051653","Lacticaseibacillus casei A2-362"]]},{"id":"NCBITaxon:300852","l":"Thermus thermophilus HB8","na":32,"nb":2,"a":[["Pfam%3APF17864","RuvB AAA lid domain"],["Pfam%3APF09210","1,4-alpha-glucan branching enzyme, C-terminal"],["Pfam%3APF09670","Csm6 HEPN domain"],["Pfam%3APF18395","Cas3 C-terminal domain"],["Pfam%3APF18019","Cas3, HD domain"],["Pfam%3APF22590","CRISPR-associated nuclease/helicase Cas3, C-terminal"]],"b":[["NCBITaxon%3A274","Thermus thermophilus"],["NCBITaxon%3A300852","Thermus thermophilus HB8"]]},{"id":"NCBITaxon:171101","l":"Streptococcus pneumoniae R6","na":31,"nb":2,"a":[["Pfam%3APF03590","Aspartate-ammonia ligase"],["Pfam%3APF25935","LcnD-like, barrel-sandwich hybrid domain"],["Pfam%3APF24568","Peptidoglycan hydrolase PcsB, coiled-coil domain"],["Pfam%3APF05257","CHAP domain"],["Pfam%3APF27342","ComB N-terminal domain"],["Pfam%3APF26697","Competence protein ComGC, C-terminal domain"]],"b":[["NCBITaxon%3A1165093","Streptococcus pneumoniae CCCB"],["NCBITaxon%3A171101","Streptococcus pneumoniae R6"]]},{"id":"NCBITaxon:243273","l":"Mycoplasmoides genitalium G37","na":31,"nb":2,"a":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF03257","Mycoplasma adhesin P1, C-terminal"],["Pfam%3APF09185","Domain of unknown function (DUF1948)"],["Pfam%3APF09188","Domain of unknown function (DUF1951)"],["Pfam%3APF03072","Domain of unknown function (DUF237)"],["Pfam%3APF03086","Domain of unknown function (DUF240)"]],"b":[["NCBITaxon%3A2097","Mycoplasmoides genitalium"],["NCBITaxon%3A243273","Mycoplasmoides genitalium G37"]]},{"id":"NCBITaxon:28141","l":"Cronobacter sakazakii","na":2,"nb":28,"a":[["TED%3AAF-A0A855WTZ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A855WTZ2-F1-model_v4_TED01"],["TED%3AAF-A0A855WPZ3-F1-model_v4_TED01","TED novel fold AF-A0A855WPZ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A413497","Cronobacter dublinensis"],["NCBITaxon%3A413501","Cronobacter muytjensii"],["NCBITaxon%3A1159613","Cronobacter muytjensii ATCC 51329"],["NCBITaxon%3A28141","Cronobacter sakazakii"],["NCBITaxon%3A1159489","Cronobacter sakazakii 2151"],["NCBITaxon%3A1208592","Cronobacter sakazakii 680"]]},{"id":"NCBITaxon:226186","l":"Bacteroides thetaiotaomicron VPI-5482","na":25,"nb":2,"a":[["Pfam%3APF06439","3-keto-alpha-glucoside-1,2-lyase-like domain"],["Pfam%3APF13444","Acetyltransferase (GNAT) domain"],["Pfam%3APF19576","Acyltransferase"],["Pfam%3APF23764","GLAA-B beta-barrel domain II"],["Pfam%3APF13715","CarboxypepD_reg-like domain"],["Pfam%3APF26120","SusF, first starch specific CBM"]],"b":[["NCBITaxon%3A818","Bacteroides thetaiotaomicron"],["NCBITaxon%3A226186","Bacteroides thetaiotaomicron VPI-5482"]]},{"id":"NCBITaxon:309800","l":"Haloferax volcanii DS2","na":25,"nb":2,"a":[["Pfam%3APF18079","Archaeal glycosylation protein B long peripheral domain"],["Pfam%3APF15915","GAF and HTH_10 associated domain"],["Pfam%3APF01881","CRISPR associated protein Cas6, C-terminal"],["Pfam%3APF09484","CRISPR-associated protein TM1802 (cas_TM1802) N-terminal domain"],["Pfam%3APF21011","Tubulin-like CetZ, C-terminal domain"],["Pfam%3APF19294","Diadenylate cyclase, N-terminal"]],"b":[["NCBITaxon%3A2246","Haloferax volcanii"],["NCBITaxon%3A309800","Haloferax volcanii DS2"]]},{"id":"NCBITaxon:160488","l":"Pseudomonas putida KT2440","na":24,"nb":2,"a":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF00842","Alanine racemase, C-terminal domain"],["Pfam%3APF01168","Alanine racemase, N-terminal domain"],["Pfam%3APF13372","Alginate export"],["Pfam%3APF03705","CheR methyltransferase, all-alpha domain"],["Pfam%3APF01739","CheR methyltransferase, SAM binding domain"]],"b":[["NCBITaxon%3A303","Pseudomonas putida"],["NCBITaxon%3A160488","Pseudomonas putida KT2440"]]},{"id":"NCBITaxon:596","l":"Salmonella enterica subsp. enterica serovar Muenchen","na":2,"nb":24,"a":[["Pfam%3APF27117","FliB lysine N-methylase C-terminal domain"],["TED%3AAF-A0A5U8XTE1-F1-model_v4_TED01","TED novel fold AF-A0A5U8XTE1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A596","Salmonella enterica subsp. enterica serovar Muenchen"],["NCBITaxon%3A1173881","Salmonella enterica subsp. enterica serovar Muenchen str. 0424"],["NCBITaxon%3A1328334","Salmonella enterica subsp. enterica serovar Muenchen str. 08-1125"],["NCBITaxon%3A1328333","Salmonella enterica subsp. enterica serovar Muenchen str. 2009K-0951"],["NCBITaxon%3A1192571","Salmonella enterica subsp. enterica serovar Muenchen str. 97016"],["NCBITaxon%3A930770","Salmonella enterica subsp. enterica serovar Muenchen str. ATCC 8388"]]},{"id":"NCBITaxon:157687","l":"Leptotrichia wadei","na":2,"nb":23,"a":[["TED%3AAF-A0A510KFE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A510KFE6-F1-model_v4_TED01"],["TED%3AAF-A0A510KJX4-F1-model_v4_TED02","TED novel fold AF-A0A510KJX4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A157687","Leptotrichia wadei"],["NCBITaxon%3A1122174","Leptotrichia wadei DSM 19758"],["NCBITaxon%3A888055","Leptotrichia wadei F0279"],["NCBITaxon%3A1409967","Leptotrichia wadei HMP_JCVI_SC0129"],["NCBITaxon%3A1409968","Leptotrichia wadei HMP_JCVI_SC0130"],["NCBITaxon%3A1409969","Leptotrichia wadei HMP_JCVI_SC0192"]]},{"id":"NCBITaxon:159749","l":"Thalassiosira oceanica","na":21,"nb":2,"a":[["TED%3AAF-K0QYM2-F1-model_v4_TED01","TED highly-symmetric fold AF-K0QYM2-F1-model_v4_TED01"],["TED%3AAF-K0R5V5-F1-model_v4_TED01","TED highly-symmetric fold AF-K0R5V5-F1-model_v4_TED01"],["TED%3AAF-K0R8R9-F1-model_v4_TED01","TED highly-symmetric fold AF-K0R8R9-F1-model_v4_TED01"],["TED%3AAF-K0R935-F1-model_v4_TED01","TED highly-symmetric fold AF-K0R935-F1-model_v4_TED01"],["TED%3AAF-K0RLI6-F1-model_v4_TED02","TED highly-symmetric fold AF-K0RLI6-F1-model_v4_TED02"],["TED%3AAF-K0SQP1-F1-model_v4_TED01","TED highly-symmetric fold AF-K0SQP1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A159749","Thalassiosira oceanica"],["NCBITaxon%3A637379","Thalassiosira oceanica CCMP1005"]]},{"id":"NCBITaxon:243230","l":"Deinococcus radiodurans R1 = ATCC 13939 = DSM 20539","na":21,"nb":2,"a":[["Pfam%3APF07282","Cas12f1-like, TNB domain"],["Pfam%3APF26517","DNA damage response protein D family"],["Pfam%3APF07733","Bacterial DNA polymerase III alpha NTPase domain"],["Pfam%3APF17657","Bacterial DNA polymerase III alpha subunit finger domain"],["Pfam%3APF11638","DnaA N-terminal domain"],["Pfam%3APF09348","Domain of unknown function (DUF1990)"]],"b":[["NCBITaxon%3A1299","Deinococcus radiodurans"],["NCBITaxon%3A243230","Deinococcus radiodurans R1 = ATCC 13939 = DSM 20539"]]},{"id":"NCBITaxon:64091","l":"Halobacterium salinarum NRC-1","na":21,"nb":2,"a":[["Pfam%3APF06953","Arsenical resistance operon protein ArsD"],["Pfam%3APF01036","Bacteriorhodopsin-like protein"],["Pfam%3APF15915","GAF and HTH_10 associated domain"],["Pfam%3APF01955","Adenosylcobinamide amidohydrolase"],["Pfam%3APF12762","ISXO2-like transposase domain"],["Pfam%3APF24277","DmsR, N-terminal domain-like"]],"b":[["NCBITaxon%3A64091","Halobacterium salinarum NRC-1"],["NCBITaxon%3A2243","Halobacterium sp."]]},{"id":"NCBITaxon:1245","l":"Leuconostoc mesenteroides","na":2,"nb":20,"a":[["Pfam%3APF08951","Bacteriocin immunity protein family"],["TED%3AAF-A0A8B5R1X5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B5R1X5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A33964","Leuconostoc citreum"],["NCBITaxon%3A1245","Leuconostoc mesenteroides"],["NCBITaxon%3A1357402","Leuconostoc mesenteroides A16_17"],["NCBITaxon%3A427140","Leuconostoc mesenteroides KFRI-MG"],["NCBITaxon%3A1429888","Leuconostoc mesenteroides P45"],["NCBITaxon%3A33965","Leuconostoc mesenteroides subsp. cremoris"]]},{"id":"NCBITaxon:1871037","l":"Flavobacteriaceae bacterium","na":20,"nb":2,"a":[["TED%3AAF-A0A2D8LJQ5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D8LJQ5-F1-model_v4_TED01"],["TED%3AAF-A0A2E2EWF0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E2EWF0-F1-model_v4_TED01"],["TED%3AAF-A0A2E2IY52-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E2IY52-F1-model_v4_TED01"],["TED%3AAF-A0A2E2WBT5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2E2WBT5-F1-model_v4_TED03"],["TED%3AAF-A0A2E3BY40-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E3BY40-F1-model_v4_TED01"],["TED%3AAF-A0A2E8VF02-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E8VF02-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1871037","Flavobacteriaceae bacterium"],["NCBITaxon%3A2687242","Mesonia oceanica"]]},{"id":"NCBITaxon:29488","l":"Photorhabdus luminescens","na":2,"nb":20,"a":[["Pfam%3APF02273","Acyl transferase"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"]],"b":[["NCBITaxon%3A171438","Photorhabdus akhurstii"],["NCBITaxon%3A2934395","Photorhabdus akhurstii subsp. akhurstii"],["NCBITaxon%3A1004165","Photorhabdus caribbeanensis"],["NCBITaxon%3A1004166","Photorhabdus hainanensis"],["NCBITaxon%3A230088","Photorhabdus kayaii"],["NCBITaxon%3A768034","Photorhabdus kleinii"]]},{"id":"NCBITaxon:548","l":"Klebsiella aerogenes","na":2,"nb":20,"a":[["Pfam%3APF07833","Copper amine oxidase N-terminal domain"],["TED%3AAF-A0A447L715-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A447L715-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A548","Klebsiella aerogenes"],["NCBITaxon%3A1308731","Klebsiella aerogenes ADL-323"],["NCBITaxon%3A935296","Klebsiella aerogenes EA1509E"],["NCBITaxon%3A685445","Klebsiella aerogenes FGI35"],["NCBITaxon%3A1028307","Klebsiella aerogenes KCTC 2190"],["NCBITaxon%3A1439320","Klebsiella aerogenes MGH 61"]]},{"id":"NCBITaxon:633","l":"Yersinia pseudotuberculosis","na":2,"nb":20,"a":[["Pfam%3APF03421","YopJ Serine/Threonine acetyltransferase"],["Pfam%3APF01041","DegT/DnrJ/EryC1/StrS aminotransferase family"]],"b":[["NCBITaxon%3A633","Yersinia pseudotuberculosis"],["NCBITaxon%3A1286084","Yersinia pseudotuberculosis B-6796"],["NCBITaxon%3A1286085","Yersinia pseudotuberculosis B-6862"],["NCBITaxon%3A1286086","Yersinia pseudotuberculosis B-6863"],["NCBITaxon%3A1286087","Yersinia pseudotuberculosis B-6864"],["NCBITaxon%3A1286088","Yersinia pseudotuberculosis B-6865"]]},{"id":"NCBITaxon:2026760","l":"Fidelibacterota bacterium","na":19,"nb":2,"a":[["TED%3AAF-A0A2D7MEH7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2D7MEH7-F1-model_v4_TED03"],["TED%3AAF-A0A2E7MXE5-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2E7MXE5-F1-model_v4_TED04"],["TED%3AAF-A0A3D2FQ14-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D2FQ14-F1-model_v4_TED01"],["TED%3AAF-A0A660XAY5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A660XAY5-F1-model_v4_TED01"],["TED%3AAF-A0A7C7JC12-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C7JC12-F1-model_v4_TED02"],["TED%3AAF-A0A7C7MW15-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C7MW15-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A3377529","Fidelibacter multiformis"],["NCBITaxon%3A2026760","Fidelibacterota bacterium"]]},{"id":"NCBITaxon:330779","l":"Sulfolobus acidocaldarius DSM 639","na":19,"nb":2,"a":[["Pfam%3APF12846","AAA-like domain"],["Pfam%3APF27338","Cytochrome b558/566 subunit B"],["Pfam%3APF18822","CdvA-like coiled-coil domain"],["Pfam%3APF27303","Cell division protein CdvB, C-terminal HTH domain"],["Pfam%3APF27251","DNA import protein CedA1"],["Pfam%3APF18533","Domain of unknown function (DUF5622)"]],"b":[["NCBITaxon%3A2285","Sulfolobus acidocaldarius"],["NCBITaxon%3A330779","Sulfolobus acidocaldarius DSM 639"]]},{"id":"NCBITaxon:375","l":"Bradyrhizobium japonicum","na":2,"nb":19,"a":[["TED%3AAF-A0A1L3FD53-F1-model_v4_TED02","TED novel fold AF-A0A1L3FD53-F1-model_v4_TED02"],["TED%3AAF-A0A1L3FDV4-F1-model_v4_TED02","TED novel fold AF-A0A1L3FDV4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1355477","Bradyrhizobium diazoefficiens"],["NCBITaxon%3A224911","Bradyrhizobium diazoefficiens USDA 110"],["NCBITaxon%3A375","Bradyrhizobium japonicum"],["NCBITaxon%3A306164","Bradyrhizobium japonicum bv. genistearum"],["NCBITaxon%3A305581","Bradyrhizobium japonicum bv. glycinearum"],["NCBITaxon%3A1128253","Bradyrhizobium japonicum CCBAU 15354"]]},{"id":"NCBITaxon:48296","l":"Acinetobacter pittii","na":2,"nb":19,"a":[["TED%3AAF-A0A3R9S6D0-F1-model_v4_TED03","TED novel fold AF-A0A3R9S6D0-F1-model_v4_TED03"],["TED%3AAF-A0A6P1SKX2-F1-model_v4_TED04","TED novel fold AF-A0A6P1SKX2-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A106654","Acinetobacter nosocomialis"],["NCBITaxon%3A1217670","Acinetobacter nosocomialis NIPH 2119"],["NCBITaxon%3A48296","Acinetobacter pittii"],["NCBITaxon%3A1147132","Acinetobacter pittii 42F"],["NCBITaxon%3A1217673","Acinetobacter pittii ANC 3678"]]},{"id":"NCBITaxon:158836","l":"Enterobacter hormaechei","na":2,"nb":18,"a":[["TED%3AAF-A0A431SE22-F1-model_v4_TED01","TED novel fold AF-A0A431SE22-F1-model_v4_TED01"],["TED%3AAF-A0A8B5ZRS3-F1-model_v4_TED01","TED novel fold AF-A0A8B5ZRS3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A3461408","Enterobacter hoffmannii subsp. nototheniae"],["NCBITaxon%3A158836","Enterobacter hormaechei"],["NCBITaxon%3A888063","Enterobacter hormaechei ATCC 49162"],["NCBITaxon%3A1812934","Enterobacter hormaechei subsp. hoffmannii"],["NCBITaxon%3A1333851","Enterobacter hormaechei subsp. hoffmannii ECNIH3"]]},{"id":"NCBITaxon:1580","l":"Levilactobacillus brevis","na":2,"nb":17,"a":[["TED%3AAF-A0A2A3TVW3-F1-model_v4_TED01","TED novel fold AF-A0A2A3TVW3-F1-model_v4_TED01"],["TED%3AAF-A0A7Z6MPZ0-F1-model_v4_TED02","TED novel fold AF-A0A7Z6MPZ0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1590","Lactiplantibacillus plantarum"],["NCBITaxon%3A2767846","Lactiplantibacillus sp."],["NCBITaxon%3A1591","Lactobacillus sp."],["NCBITaxon%3A1581","Lentilactobacillus buchneri"],["NCBITaxon%3A1580","Levilactobacillus brevis"],["NCBITaxon%3A1384064","Levilactobacillus brevis AG48"]]},{"id":"NCBITaxon:57975","l":"Burkholderia thailandensis","na":2,"nb":17,"a":[["TED%3AAF-A0A7Z8HH79-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Z8HH79-F1-model_v4_TED01"],["TED%3AAF-A0A7Z8HK43-F1-model_v4_TED01","TED novel fold AF-A0A7Z8HK43-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A57975","Burkholderia thailandensis"],["NCBITaxon%3A1249660","Burkholderia thailandensis 2002721643"],["NCBITaxon%3A1241582","Burkholderia thailandensis 2002721723"],["NCBITaxon%3A1249664","Burkholderia thailandensis 34"],["NCBITaxon%3A441164","Burkholderia thailandensis Bt4"],["NCBITaxon%3A1436064","Burkholderia thailandensis E0444"]]},{"id":"NCBITaxon:621","l":"Shigella boydii","na":2,"nb":17,"a":[["Pfam%3APF03808","Glycosyl transferase WecG/TagA/CpsF family"],["TED%3AAF-A0A1S9JL82-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S9JL82-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A621","Shigella boydii"],["NCBITaxon%3A1118236","Shigella boydii 08-0009"],["NCBITaxon%3A1212573","Shigella boydii 08-0280"],["NCBITaxon%3A1212574","Shigella boydii 08-2671"],["NCBITaxon%3A1212575","Shigella boydii 08-2675"]]},{"id":"NCBITaxon:69014","l":"Thermococcus kodakarensis KOD1","na":17,"nb":2,"a":[["Pfam%3APF08546","Ketopantoate reductase PanE/ApbA C terminal"],["Pfam%3APF02558","Ketopantoate reductase PanE/ApbA"],["Pfam%3APF09210","1,4-alpha-glucan branching enzyme, C-terminal"],["Pfam%3APF01861","Branched-chain polyamine synthase A C-terminal domain"],["Pfam%3APF27272","Cyclic 2,3-diphosphoglycerate synthetase, N-terminal domain"],["Pfam%3APF17884","Domain of unknown function (DUF5591)"]],"b":[["NCBITaxon%3A311400","Thermococcus kodakarensis"],["NCBITaxon%3A69014","Thermococcus kodakarensis KOD1"]]},{"id":"NCBITaxon:243161","l":"Chlamydia muridarum str. Nigg","na":16,"nb":2,"a":[["Pfam%3APF07382","Histone H1-like nucleoprotein HC2"],["Pfam%3APF05475","Pgp3 C-terminal domain"],["Pfam%3APF07577","Domain of Unknown Function (DUF1547)"],["Pfam%3APF05745","Chlamydia 15 kDa cysteine-rich outer membrane protein (CRPA)"],["Pfam%3APF28261","Uncharacterized protein CT_504-like"],["Pfam%3APF17435","CT_584-like"]],"b":[["NCBITaxon%3A243161","Chlamydia muridarum str. Nigg"],["NCBITaxon%3A1434773","Chlamydia muridarum str. Nigg CM972"]]},{"id":"NCBITaxon:587753","l":"Pseudomonas chlororaphis","na":2,"nb":16,"a":[["TED%3AAF-A0A8A9Z2C4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A8A9Z2C4-F1-model_v4_TED03"],["TED%3AAF-A0A0A6DEM6-F1-model_v4_TED01","TED novel fold AF-A0A0A6DEM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A587753","Pseudomonas chlororaphis"],["NCBITaxon%3A1343078","Pseudomonas chlororaphis HT66"],["NCBITaxon%3A1037915","Pseudomonas chlororaphis O6"],["NCBITaxon%3A1400530","Pseudomonas chlororaphis PCYL_1"],["NCBITaxon%3A86192","Pseudomonas chlororaphis subsp. aurantiaca"],["NCBITaxon%3A1415170","Pseudomonas chlororaphis subsp. aurantiaca PB-St2"]]},{"id":"NCBITaxon:622","l":"Shigella dysenteriae","na":2,"nb":16,"a":[["Pfam%3APF03278","IpaB/EvcA family"],["PROSITE%3APS00275","Shiga/ricin ribosomal inactivating toxins active site signature"]],"b":[["NCBITaxon%3A622","Shigella dysenteriae"],["NCBITaxon%3A984897","Shigella dysenteriae 1"],["NCBITaxon%3A766142","Shigella dysenteriae 155-74"],["NCBITaxon%3A754093","Shigella dysenteriae 1617"],["NCBITaxon%3A766143","Shigella dysenteriae 225-75"],["NCBITaxon%3A984895","Shigella dysenteriae 2a"]]},{"id":"NCBITaxon:1334","l":"Streptococcus dysgalactiae","na":2,"nb":15,"a":[["Pfam%3APF20746","Endo-beta-N-acetylglucosaminidase F2, Ig-like domain"],["Pfam%3APF23952","Endo-beta-N-acetylglucosaminidase EndoS LRR domain"]],"b":[["NCBITaxon%3A1334","Streptococcus dysgalactiae"],["NCBITaxon%3A99822","Streptococcus dysgalactiae subsp. dysgalactiae"],["NCBITaxon%3A663952","Streptococcus dysgalactiae subsp. dysgalactiae ATCC 27957"],["NCBITaxon%3A119602","Streptococcus dysgalactiae subsp. equisimilis"],["NCBITaxon%3A1247189","Streptococcus dysgalactiae subsp. equisimilis 167"],["NCBITaxon%3A759913","Streptococcus dysgalactiae subsp. equisimilis AC-2713"]]},{"id":"NCBITaxon:654","l":"Aeromonas veronii","na":2,"nb":15,"a":[["TED%3AAF-A0A2S3XR57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S3XR57-F1-model_v4_TED01"],["TED%3AAF-A0A1Q8F226-F1-model_v4_TED01","TED novel fold AF-A0A1Q8F226-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A646","Aeromonas sobria"],["NCBITaxon%3A647","Aeromonas sp."],["NCBITaxon%3A654","Aeromonas veronii"],["NCBITaxon%3A1073382","Aeromonas veronii AER39"],["NCBITaxon%3A1073384","Aeromonas veronii AER397"],["NCBITaxon%3A1125687","Aeromonas veronii AMC24"]]},{"id":"NCBITaxon:1347342","l":"Formosa agariphila KMM 3901","na":14,"nb":2,"a":[["Pfam%3APF17390","Bacterial alpha-L-rhamnosidase C-terminal domain"],["Pfam%3APF08531","Alpha-L-rhamnosidase N-terminal domain"],["Pfam%3APF05592","Bacterial alpha-L-rhamnosidase concanavalin-like domain"],["Pfam%3APF24208","Endo-acting ulvan lyase beta-trefoil domain"],["Pfam%3APF16355","Domain of unknown function (DUF4982)"],["Pfam%3APF18565","Glycoside hydrolase family 2 C-terminal domain 5"]],"b":[["NCBITaxon%3A320324","Formosa agariphila"],["NCBITaxon%3A1347342","Formosa agariphila KMM 3901"]]},{"id":"NCBITaxon:196627","l":"Corynebacterium glutamicum ATCC 13032","na":14,"nb":2,"a":[["Pfam%3APF26371","AftB family C-terminal domain"],["Pfam%3APF12897","Aspartate amino-transferase"],["Pfam%3APF02028","BCCT, betaine/carnitine/choline family transporter"],["Pfam%3APF27333","Cgl2226"],["Pfam%3APF13631","Cytochrome b(N-terminal)/b6/petB"],["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"]],"b":[["NCBITaxon%3A1718","Corynebacterium glutamicum"],["NCBITaxon%3A196627","Corynebacterium glutamicum ATCC 13032"]]},{"id":"NCBITaxon:28132","l":"Prevotella melaninogenica","na":2,"nb":14,"a":[["TED%3AAF-A0A8B2A6Y8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B2A6Y8-F1-model_v4_TED01"],["TED%3AAF-A0A250KF16-F1-model_v4_TED03","TED novel fold AF-A0A250KF16-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A840","Hoylesella loescheii"],["NCBITaxon%3A1122985","Hoylesella loescheii DSM 19665 = JCM 12249 = ATCC 15930"],["NCBITaxon%3A28123","Porphyromonas asaccharolytica"],["NCBITaxon%3A837","Porphyromonas gingivalis"],["NCBITaxon%3A28114","Porphyromonas levii"],["NCBITaxon%3A1122973","Porphyromonas levii DSM 23370"]]},{"id":"NCBITaxon:267377","l":"Methanococcus maripaludis S2","na":13,"nb":2,"a":[["Pfam%3APF09171","N-glycosylase/DNA lyase"],["Pfam%3APF06847","Archaeal Peptidase A24 C-terminus Type II"],["Pfam%3APF06819","Archaeal Peptidase A24 C-terminal Domain"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF26558","3-dehydroquinate synthase II C-terminal domain"],["Pfam%3APF01959","3-dehydroquinate synthase II N-terminal domain"]],"b":[["NCBITaxon%3A39152","Methanococcus maripaludis"],["NCBITaxon%3A267377","Methanococcus maripaludis S2"]]},{"id":"NCBITaxon:272562","l":"Clostridium acetobutylicum ATCC 824","na":13,"nb":2,"a":[["Pfam%3APF10882","Bacterial PH domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["Pfam%3APF09940","Domain of unknown function (DUF2172)"],["Pfam%3APF16254","Domain of unknown function (DUF4910)"],["Pfam%3APF01183","Glycosyl hydrolases family 25"],["Pfam%3APF16221","winged helix-turn-helix"]],"b":[["NCBITaxon%3A1488","Clostridium acetobutylicum"],["NCBITaxon%3A272562","Clostridium acetobutylicum ATCC 824"]]},{"id":"NCBITaxon:272844","l":"Pyrococcus abyssi GE5","na":13,"nb":2,"a":[["Pfam%3APF27302","AF_2407 family"],["Pfam%3APF22482","PF0864 C-terminal dimeric alpha+beta barrel domain"],["Pfam%3APF21133","CCA-adding enzyme, C-terminal domain"],["Pfam%3APF02641","Uncharacterized ACR, COG1993"],["Pfam%3APF02643","Uncharacterized ACR, COG1430"],["Pfam%3APF24034","Domain of unknown function (DUF7343)"]],"b":[["NCBITaxon%3A29292","Pyrococcus abyssi"],["NCBITaxon%3A272844","Pyrococcus abyssi GE5"]]},{"id":"NCBITaxon:529","l":"Brucella anthropi","na":2,"nb":13,"a":[["Pfam%3APF07930","D-aminopeptidase, domain B"],["TED%3AAF-A0A7T4IBJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T4IBJ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1775538","Acidovorax sp. JCM 10070"],["NCBITaxon%3A1775539","Acidovorax sp. JCM 10072"],["NCBITaxon%3A529","Brucella anthropi"],["NCBITaxon%3A1201037","Brucella anthropi 60a"],["NCBITaxon%3A439375","Brucella anthropi ATCC 49188"],["NCBITaxon%3A1151114","Brucella anthropi CTS-325"]]},{"id":"NCBITaxon:54","l":"Nannocystis exedens","na":13,"nb":2,"a":[["TED%3AAF-A0A1I2A5Z6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2A5Z6-F1-model_v4_TED01"],["TED%3AAF-A0A1I2FM38-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I2FM38-F1-model_v4_TED02"],["TED%3AAF-A0A1I2H0F9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2H0F9-F1-model_v4_TED01"],["TED%3AAF-A0A831ZMD9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A831ZMD9-F1-model_v4_TED01"],["TED%3AAF-A0A1I1T6U3-F1-model_v4_TED01","TED novel fold AF-A0A1I1T6U3-F1-model_v4_TED01"],["TED%3AAF-A0A1I1XLT5-F1-model_v4_TED02","TED novel fold AF-A0A1I1XLT5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A54","Nannocystis exedens"],["NCBITaxon%3A1366054","Nannocystis exedens subsp. cinnabaria"]]},{"id":"NCBITaxon:70601","l":"Pyrococcus horikoshii OT3","na":13,"nb":2,"a":[["Pfam%3APF22482","PF0864 C-terminal dimeric alpha+beta barrel domain"],["Pfam%3APF21350","CRISPR-associated protein Cas6, N-terminal"],["Pfam%3APF04122","Cell wall binding domain 2 (CWB2)"],["Pfam%3APF13660","Domain of unknown function (DUF4147)"],["Pfam%3APF04473","Transglutaminase-like domain"],["Pfam%3APF24034","Domain of unknown function (DUF7343)"]],"b":[["NCBITaxon%3A53953","Pyrococcus horikoshii"],["NCBITaxon%3A70601","Pyrococcus horikoshii OT3"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":2,"nb":12,"a":[["Pfam%3APF22538","Hexaprenyl diphosphate synthase, small subunit"],["PROSITE%3APS01066","Undecaprenyl pyrophosphate synthase family signature"]],"b":[["NCBITaxon%3A72000","Kocuria rhizophila"],["NCBITaxon%3A378753","Kocuria rhizophila DC2201"],["NCBITaxon%3A1272","Kocuria varians"],["NCBITaxon%3A1270","Micrococcus luteus"],["NCBITaxon%3A1357403","Micrococcus luteus CD1_FAA_NB_1"],["NCBITaxon%3A935864","Micrococcus luteus J28"]]},{"id":"NCBITaxon:203119","l":"Acetivibrio thermocellus ATCC 27405","na":12,"nb":2,"a":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["Pfam%3APF00942","Cellulose binding domain"],["Pfam%3APF17996","Carbohydrate esterase 2 N-terminal"],["Pfam%3APF00963","Cohesin domain"],["Pfam%3APF16654","Diaminopimelic acid dehydrogenase C-terminal domain"],["Pfam%3APF00404","Dockerin type I domain"]],"b":[["NCBITaxon%3A1515","Acetivibrio thermocellus"],["NCBITaxon%3A203119","Acetivibrio thermocellus ATCC 27405"]]},{"id":"NCBITaxon:224326","l":"Borreliella burgdorferi B31","na":12,"nb":2,"a":[["Pfam%3APF09822","ABC-type uncharacterized transport system"],["Pfam%3APF02352","Decorin binding protein"],["Pfam%3APF23357","Domain of unknown function (DUF7088)"],["Pfam%3APF27167","GRAD helix-turn-helix domain"],["Pfam%3APF28090","BB0208-like"],["Pfam%3APF02999","Borrelia orf-D family"]],"b":[["NCBITaxon%3A139","Borreliella burgdorferi"],["NCBITaxon%3A224326","Borreliella burgdorferi B31"]]},{"id":"NCBITaxon:273123","l":"Yersinia pseudotuberculosis IP 32953","na":12,"nb":2,"a":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF07201","HrpJ-like domain"],["Pfam%3APF09134","Invasin, domain 3"],["Pfam%3APF21764","Invasin, domain 4"],["Pfam%3APF07321","Type III secretion protein YscO"],["Pfam%3APF06932","Protein of unknown function (DUF1283)"]],"b":[["NCBITaxon%3A633","Yersinia pseudotuberculosis"],["NCBITaxon%3A273123","Yersinia pseudotuberculosis IP 32953"]]},{"id":"NCBITaxon:373153","l":"Streptococcus pneumoniae D39","na":12,"nb":2,"a":[["Pfam%3APF24568","Peptidoglycan hydrolase PcsB, coiled-coil domain"],["Pfam%3APF05257","CHAP domain"],["Pfam%3APF22610","Histidine kinase, HAMP domain"],["Pfam%3APF18075","FtsX extracellular domain"],["Pfam%3APF02687","FtsX-like permease C-terminal"],["Pfam%3APF14804","Jag N-terminus"]],"b":[["NCBITaxon%3A1313","Streptococcus pneumoniae"],["NCBITaxon%3A373153","Streptococcus pneumoniae D39"]]},{"id":"NCBITaxon:431947","l":"Porphyromonas gingivalis ATCC 33277","na":12,"nb":2,"a":[["Pfam%3APF07675","Cleaved Adhesin Domain"],["Pfam%3APF19755","Domain of unknown function (DUF6242) N-terminal domain"],["Pfam%3APF22492","FimA4 pilin C-terminal domain"],["Pfam%3APF15495","Major fimbrial subunit protein type IV, Fimbrillin, C-terminal"],["Pfam%3APF26306","FimD protein third domain"],["Pfam%3APF27397","FimE C-terminal domain"]],"b":[["NCBITaxon%3A837","Porphyromonas gingivalis"],["NCBITaxon%3A431947","Porphyromonas gingivalis ATCC 33277"]]},{"id":"NCBITaxon:523841","l":"Haloferax mediterranei ATCC 33500","na":12,"nb":2,"a":[["Pfam%3APF01881","CRISPR associated protein Cas6, C-terminal"],["Pfam%3APF16952","Glutamine synthetase N-terminal domain"],["Pfam%3APF20440","GvpD basic region 2"],["Pfam%3APF07088","GvpD gas vesicle protein, P-loop domain"],["Pfam%3APF05120","Gas vesicle protein G"],["Pfam%3APF16912","Glucose dehydrogenase C-terminus"]],"b":[["NCBITaxon%3A2252","Haloferax mediterranei"],["NCBITaxon%3A523841","Haloferax mediterranei ATCC 33500"]]},{"id":"NCBITaxon:5702","l":"Trypanosoma brucei brucei","na":12,"nb":2,"a":[["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF05887","Procyclic acidic repetitive protein (PARP)"],["Pfam%3APF18526","Thymine dioxygenase JBP1 DNA-binding domain"],["Pfam%3APF22592","FCaBP EF-hand domain"],["Pfam%3APF12131","Protein of unknown function (DUF3586)"]],"b":[["NCBITaxon%3A5702","Trypanosoma brucei brucei"],["NCBITaxon%3A185431","Trypanosoma brucei brucei TREU927"]]},{"id":"NCBITaxon:1254","l":"Pediococcus acidilactici","na":2,"nb":11,"a":[["Pfam%3APF01721","Class II bacteriocin"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"]],"b":[["NCBITaxon%3A1245","Leuconostoc mesenteroides"],["NCBITaxon%3A1254","Pediococcus acidilactici"],["NCBITaxon%3A563194","Pediococcus acidilactici 7_4"],["NCBITaxon%3A1384067","Pediococcus acidilactici AGR20"],["NCBITaxon%3A1306952","Pediococcus acidilactici D3"],["NCBITaxon%3A862514","Pediococcus acidilactici DSM 20284"]]},{"id":"NCBITaxon:192952","l":"Methanosarcina mazei Go1","na":11,"nb":2,"a":[["Pfam%3APF01955","Adenosylcobinamide amidohydrolase"],["Pfam%3APF13189","Cytidylate kinase-like family"],["Pfam%3APF04432","Coenzyme F420 hydrogenase/dehydrogenase, beta subunit C terminus"],["Pfam%3APF13528","Glycosyl transferase family 1"],["Pfam%3APF19769","CPxCG-related zinc finger"],["Pfam%3APF10049","Protein of unknown function (DUF2283)"]],"b":[["NCBITaxon%3A2209","Methanosarcina mazei"],["NCBITaxon%3A192952","Methanosarcina mazei Go1"]]},{"id":"NCBITaxon:208962","l":"Escherichia albertii","na":2,"nb":11,"a":[["Pfam%3APF18134","Adenylyl/Guanylyl and SMODS C-terminal sensor domain"],["Pfam%3APF18153","Cap15, cyclic dinucleotide receptor domain"]],"b":[["NCBITaxon%3A208962","Escherichia albertii"],["NCBITaxon%3A550692","Escherichia albertii B090"],["NCBITaxon%3A550693","Escherichia albertii B156"],["NCBITaxon%3A1440052","Escherichia albertii KF1"],["NCBITaxon%3A1115511","Escherichia albertii NBRC 107761 = DSM 17582"],["NCBITaxon%3A502347","Escherichia albertii TW07627"]]},{"id":"NCBITaxon:46503","l":"Parabacteroides merdae","na":2,"nb":11,"a":[["TED%3AAF-A0A3R6EXH1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R6EXH1-F1-model_v4_TED01"],["TED%3AAF-A0A7K1HWR2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K1HWR2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A46503","Parabacteroides merdae"],["NCBITaxon%3A411477","Parabacteroides merdae ATCC 43184"],["NCBITaxon%3A1263094","Parabacteroides merdae CAG:48"],["NCBITaxon%3A999420","Parabacteroides merdae CL03T12C32"],["NCBITaxon%3A999421","Parabacteroides merdae CL09T00C40"],["NCBITaxon%3A1339583","Parabacteroides merdae TSDC10.1-1.1"]]},{"id":"NCBITaxon:498211","l":"Cellvibrio japonicus Ueda107","na":11,"nb":2,"a":[["Pfam%3APF17996","Carbohydrate esterase 2 N-terminal"],["Pfam%3APF02156","Glycosyl hydrolase family 26"],["Pfam%3APF02015","Glycosyl hydrolase family 45"],["Pfam%3APF07477","Glycosyl hydrolase family 67 C-terminus"],["Pfam%3APF07488","Glycosyl hydrolase family 67 middle domain"],["Pfam%3APF03648","Glycosyl hydrolase family 67 N-terminus"]],"b":[["NCBITaxon%3A155077","Cellvibrio japonicus"],["NCBITaxon%3A498211","Cellvibrio japonicus Ueda107"]]},{"id":"NCBITaxon:588596","l":"Rhizophagus irregularis","na":11,"nb":2,"a":[["TED%3AAF-A0A2I1G4L7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I1G4L7-F1-model_v4_TED01"],["TED%3AAF-A0A2N0R6X3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N0R6X3-F1-model_v4_TED01"],["TED%3AAF-A0A2N0RUV7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N0RUV7-F1-model_v4_TED01"],["TED%3AAF-A0A2I1FP07-F1-model_v4_TED02","TED novel fold AF-A0A2I1FP07-F1-model_v4_TED02"],["TED%3AAF-A0A2I1G2C0-F1-model_v4_TED01","TED novel fold AF-A0A2I1G2C0-F1-model_v4_TED01"],["TED%3AAF-A0A2I1GB98-F1-model_v4_TED02","TED novel fold AF-A0A2I1GB98-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A588596","Rhizophagus irregularis"],["NCBITaxon%3A747089","Rhizophagus irregularis DAOM 181602=DAOM 197198"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":11,"nb":2,"a":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF02085","Class III cytochrome C family"],["Pfam%3APF06397","Desulfoferrodoxin, N-terminal domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["Pfam%3APF12797","4Fe-4S binding domain"],["Pfam%3APF06180","Cobalt chelatase (CbiK)"]],"b":[["NCBITaxon%3A881","Nitratidesulfovibrio vulgaris"],["NCBITaxon%3A882","Nitratidesulfovibrio vulgaris str. Hildenborough"]]},{"id":"NCBITaxon:190192","l":"Methanopyrus kandleri AV19","na":10,"nb":2,"a":[["Pfam%3APF26548","Putative peptidyl-prolyl cis-trans isomerase domain"],["Pfam%3APF02741","FTR, proximal lobe"],["Pfam%3APF01913","Formylmethanofuran-tetrahydromethanopterin formyltransferase"],["Pfam%3APF22616","HMD N-terminal domain"],["Pfam%3APF04038","Dihydroneopterin aldolase"],["Pfam%3APF07318","Protein of unknown function (DUF1464)"]],"b":[["NCBITaxon%3A2320","Methanopyrus kandleri"],["NCBITaxon%3A190192","Methanopyrus kandleri AV19"]]},{"id":"NCBITaxon:190650","l":"Caulobacter vibrioides CB15","na":10,"nb":2,"a":[["IDPO%3A0000060","self-assembly"],["Pfam%3APF27198","FlaEY third domain"],["Pfam%3APF22367","Flagellar hook protein FlgE, third domain"],["Pfam%3APF03799","Cell division protein FtsQ/DivIB, C-terminal"],["Pfam%3APF27294","HfaA"],["Pfam%3APF27277","Holdfast attachment protein D"]],"b":[["NCBITaxon%3A155892","Caulobacter vibrioides"],["NCBITaxon%3A190650","Caulobacter vibrioides CB15"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":10,"nb":2,"a":[["Pfam%3APF27445","Adaptation to cold protein A"],["Pfam%3APF27450","AtcB C-terminal domain"],["Pfam%3APF27486","AtcB N-terminal domain"],["Pfam%3APF02464","CinA C-terminal domain"],["Pfam%3APF13657","HipA N-terminal domain"],["Pfam%3APF01934","Ribonuclease HepT-like"]],"b":[["NCBITaxon%3A70863","Shewanella oneidensis"],["NCBITaxon%3A211586","Shewanella oneidensis MR-1"]]},{"id":"NCBITaxon:224911","l":"Bradyrhizobium diazoefficiens USDA 110","na":10,"nb":2,"a":[["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["Pfam%3APF14715","N-terminal domain of cytochrome oxidase-cbb3, FixP"],["Pfam%3APF03886","ABC-type transport auxiliary lipoprotein component"],["Pfam%3APF10649","Protein of unknown function (DUF2478)"],["Pfam%3APF01924","Hydrogenase formation hypA family"],["PROSITE%3APS00882","Nickel-dependent hydrogenases b-type cytochrome subunit signature 1"]],"b":[["NCBITaxon%3A1355477","Bradyrhizobium diazoefficiens"],["NCBITaxon%3A224911","Bradyrhizobium diazoefficiens USDA 110"]]},{"id":"NCBITaxon:266264","l":"Cupriavidus metallidurans CH34","na":10,"nb":2,"a":[["Pfam%3APF25973","CzcB-like, barrel-sandwich hybrid domain"],["Pfam%3APF09828","ChrB, C-terminal domain"],["Pfam%3APF20229","Protein ChrB, N-terminal"],["Pfam%3APF01923","Cobalamin adenosyltransferase"],["Pfam%3APF25975","CzcB C-terminal circularly permuted SH3-like domain"],["Pfam%3APF25971","CzcB, N-terminal domain"]],"b":[["NCBITaxon%3A119219","Cupriavidus metallidurans"],["NCBITaxon%3A266264","Cupriavidus metallidurans CH34"]]},{"id":"NCBITaxon:279010","l":"Bacillus licheniformis DSM 13 = ATCC 14580","na":10,"nb":2,"a":[["Pfam%3APF02863","Arginine repressor, C-terminal domain"],["Pfam%3APF01316","Arginine repressor, DNA binding domain"],["Pfam%3APF16715","Cyclodipeptide synthase"],["Pfam%3APF27491","GerT N-terminal domain"],["Pfam%3APF07745","Glycosyl hydrolase family 53"],["Pfam%3APF21996","Histidyl-tRNA synthetase HisZ, C-terminal domain"]],"b":[["NCBITaxon%3A1402","Bacillus licheniformis"],["NCBITaxon%3A279010","Bacillus licheniformis DSM 13 = ATCC 14580"]]},{"id":"NCBITaxon:40214","l":"Acinetobacter johnsonii","na":2,"nb":10,"a":[["Pfam%3APF12973","ChrR Cupin-like domain"],["Pfam%3APF13807","G-rich domain on putative tyrosine kinase"]],"b":[["NCBITaxon%3A40214","Acinetobacter johnsonii"],["NCBITaxon%3A1255605","Acinetobacter johnsonii 3M05"],["NCBITaxon%3A1217662","Acinetobacter johnsonii ANC 3681"],["NCBITaxon%3A1217663","Acinetobacter johnsonii CIP 64.6"],["NCBITaxon%3A1160709","Acinetobacter johnsonii L18"],["NCBITaxon%3A701047","Acinetobacter johnsonii SE1"]]},{"id":"NCBITaxon:920","l":"Acidithiobacillus ferrooxidans","na":2,"nb":10,"a":[["Pfam%3APF20538","Family of unknown function (DUF6753)"],["PROSITE%3APS01007","Transposases, Mutator family, signature"]],"b":[["NCBITaxon%3A163359","Acidiferrobacter thiooxydans"],["NCBITaxon%3A1232575","Acidithiobacillus ferridurans"],["NCBITaxon%3A920","Acidithiobacillus ferrooxidans"],["NCBITaxon%3A243159","Acidithiobacillus ferrooxidans ATCC 23270"],["NCBITaxon%3A380394","Acidithiobacillus ferrooxidans ATCC 53993"],["NCBITaxon%3A1433292","Acidithiobacillus ferrooxidans BY-3"]]},{"id":"NCBITaxon:1238","l":"Piscirickettsia salmonis","na":2,"nb":9,"a":[["TED%3AAF-A0A0K2DZD9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0K2DZD9-F1-model_v4_TED01"],["TED%3AAF-A0A1L6TBT4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6TBT4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1238","Piscirickettsia salmonis"],["NCBITaxon%3A1269812","Piscirickettsia salmonis Al10015"],["NCBITaxon%3A1398558","Piscirickettsia salmonis AUSTRAL-005"],["NCBITaxon%3A1441380","Piscirickettsia salmonis CGA/3731"],["NCBITaxon%3A1435375","Piscirickettsia salmonis EM-90"],["NCBITaxon%3A1435376","Piscirickettsia salmonis ES-3"]]},{"id":"NCBITaxon:158878","l":"Staphylococcus aureus subsp. aureus Mu50","na":9,"nb":2,"a":[["Pfam%3APF26317","Histidine racemase CntK N-terminal domain"],["Pfam%3APF13610","DDE domain"],["Pfam%3APF12199","Extracellular fibrinogen binding protein C terminal"],["Pfam%3APF26323","Staphylococcus aureus type VII secretion system substrate EsxC"],["Pfam%3APF19776","Family of unknown function (DUF6262)"],["Pfam%3APF27790","Poly-beta-1,6-N-acetyl-D-glucosamine synthesis protein IcaD"]],"b":[["NCBITaxon%3A1280","Staphylococcus aureus"],["NCBITaxon%3A158878","Staphylococcus aureus subsp. aureus Mu50"]]},{"id":"NCBITaxon:188937","l":"Methanosarcina acetivorans C2A","na":9,"nb":2,"a":[["Pfam%3APF01903","CbiX"],["Pfam%3APF27274","Coenzyme F430 synthetase CfbE, C-terminal domain"],["Pfam%3APF04060","Putative Fe-S cluster"],["Pfam%3APF13528","Glycosyl transferase family 1"],["Pfam%3APF01837","Homocysteine biosynthesis enzyme, sulfur-incorporation"],["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"]],"b":[["NCBITaxon%3A2214","Methanosarcina acetivorans"],["NCBITaxon%3A188937","Methanosarcina acetivorans C2A"]]},{"id":"NCBITaxon:1904441","l":"Paracoccaceae bacterium","na":9,"nb":2,"a":[["TED%3AAF-A0A2E3PFF7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E3PFF7-F1-model_v4_TED02"],["TED%3AAF-A0A357LNH5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A357LNH5-F1-model_v4_TED01"],["TED%3AAF-A0A3D4DSL4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D4DSL4-F1-model_v4_TED01"],["TED%3AAF-A0A6L8C0Y8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L8C0Y8-F1-model_v4_TED01"],["TED%3AAF-A0A7Y2J0I6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y2J0I6-F1-model_v4_TED01"],["TED%3AAF-A0A2E0BJC7-F1-model_v4_TED02","TED novel fold AF-A0A2E0BJC7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2301217","Marinibacterium anthonyi"],["NCBITaxon%3A1904441","Paracoccaceae bacterium"]]},{"id":"NCBITaxon:190485","l":"Xanthomonas campestris pv. campestris str. ATCC 33913","na":9,"nb":2,"a":[["Pfam%3APF28546","TonB transmembrane helix"],["Pfam%3APF00325","Bacterial regulatory proteins, crp family"],["Pfam%3APF06165","Glycosyl hydrolase 94, supersandwich domain"],["Pfam%3APF12019","Type II transport protein GspH"],["Pfam%3APF22059","Glucuronosyltransferase GumK, N-terminal domain"],["Pfam%3APF14307","Glycosyltransferase WbsX"]],"b":[["NCBITaxon%3A339","Xanthomonas campestris"],["NCBITaxon%3A190485","Xanthomonas campestris pv. campestris str. ATCC 33913"]]},{"id":"NCBITaxon:226185","l":"Enterococcus faecalis V583","na":9,"nb":2,"a":[["Pfam%3APF13523","Acetyltransferase (GNAT) domain"],["Pfam%3APF17255","EbsA-like protein"],["Pfam%3APF22647","Deacetylase EF_0837-like composite domain"],["Pfam%3APF08858","IDEAL domain"],["Pfam%3APF02655","ATP-grasp domain"],["Pfam%3APF17400","Family of unknown function (DUF5406)"]],"b":[["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A226185","Enterococcus faecalis V583"]]},{"id":"NCBITaxon:29430","l":"Acinetobacter haemolyticus","na":2,"nb":9,"a":[["TED%3AAF-A0A845PGH5-F1-model_v4_TED01","TED novel fold AF-A0A845PGH5-F1-model_v4_TED01"],["TED%3AAF-A0A857IU13-F1-model_v4_TED06","TED novel fold AF-A0A857IU13-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A29430","Acinetobacter haemolyticus"],["NCBITaxon%3A707232","Acinetobacter haemolyticus ATCC 19194"],["NCBITaxon%3A1217659","Acinetobacter haemolyticus CIP 64.3 = MTCC 9819"],["NCBITaxon%3A1217986","Acinetobacter haemolyticus NIPH 261"],["NCBITaxon%3A1221297","Acinetobacter haemolyticus TG19599"],["NCBITaxon%3A1221298","Acinetobacter haemolyticus TG19602"]]},{"id":"NCBITaxon:37919","l":"Rhodococcus opacus","na":2,"nb":9,"a":[["Pfam%3APF11794","4-hydroxyphenylacetate 3-hydroxylase N terminal"],["Pfam%3APF03241","4-hydroxyphenylacetate 3-hydroxylase C terminal"]],"b":[["NCBITaxon%3A1833","Rhodococcus erythropolis"],["NCBITaxon%3A37919","Rhodococcus opacus"],["NCBITaxon%3A632772","Rhodococcus opacus B4"],["NCBITaxon%3A1129896","Rhodococcus opacus M213"],["NCBITaxon%3A1219021","Rhodococcus opacus NBRC 100626"],["NCBITaxon%3A543736","Rhodococcus opacus PD630"]]},{"id":"NCBITaxon:38323","l":"Bartonella henselae","na":2,"nb":9,"a":[["Pfam%3APF05662","Coiled stalk of trimeric autotransporter adhesin"],["Pfam%3APF05658","YadA head domain repeat (2 copies)"]],"b":[["NCBITaxon%3A38323","Bartonella henselae"],["NCBITaxon%3A1402979","Bartonella henselae JK 41"],["NCBITaxon%3A1402980","Bartonella henselae JK 42"],["NCBITaxon%3A1402981","Bartonella henselae JK 50"],["NCBITaxon%3A1402982","Bartonella henselae JK 51"],["NCBITaxon%3A1134508","Bartonella henselae JK 53"]]},{"id":"NCBITaxon:39152","l":"Methanococcus maripaludis","na":2,"nb":9,"a":[["Pfam%3APF02571","Precorrin-6x reductase CbiJ/CobK"],["TED%3AAF-A0A7J9PSA9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J9PSA9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39152","Methanococcus maripaludis"],["NCBITaxon%3A402880","Methanococcus maripaludis C5"],["NCBITaxon%3A444158","Methanococcus maripaludis C6"],["NCBITaxon%3A426368","Methanococcus maripaludis C7"],["NCBITaxon%3A637914","Methanococcus maripaludis KA1"],["NCBITaxon%3A637915","Methanococcus maripaludis OS7"]]},{"id":"NCBITaxon:411476","l":"Bacteroides ovatus ATCC 8483","na":9,"nb":2,"a":[["Pfam%3APF13004","Putative binding domain, N-terminal"],["Pfam%3APF02927","Cellulase N-terminal ig-like domain"],["Pfam%3APF16355","Domain of unknown function (DUF4982)"],["Pfam%3APF17851","Beta xylosidase C-terminal Concanavalin A-like domain"],["Pfam%3APF18565","Glycoside hydrolase family 2 C-terminal domain 5"],["Pfam%3APF17137","Domain of unknown function (DUF5110)"]],"b":[["NCBITaxon%3A28116","Bacteroides ovatus"],["NCBITaxon%3A411476","Bacteroides ovatus ATCC 8483"]]},{"id":"NCBITaxon:79929","l":"Methanothermobacter marburgensis str. Marburg","na":9,"nb":2,"a":[["Pfam%3APF23902","PRS2 AAA+ lid C-terminal domain"],["Pfam%3APF02754","Cysteine-rich domain"],["Pfam%3APF12798","4Fe-4S binding domain"],["Pfam%3APF13183","4Fe-4S dicluster domain"],["Pfam%3APF22616","HMD N-terminal domain"],["Pfam%3APF03201","H2-forming N5,N10-methylene-tetrahydromethanopterin dehydrogenase"]],"b":[["NCBITaxon%3A145263","Methanothermobacter marburgensis"],["NCBITaxon%3A79929","Methanothermobacter marburgensis str. Marburg"]]},{"id":"NCBITaxon:1655","l":"Actinomyces naeslundii","na":2,"nb":8,"a":[["Pfam%3APF16555","Gram-positive pilin subunit D1, N-terminal domain"],["TED%3AAF-A0A2Z5QNH6-F1-model_v4_TED02","TED novel fold AF-A0A2Z5QNH6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A3050225","Actinomyces acetigenes"],["NCBITaxon%3A544581","Actinomyces johnsonii"],["NCBITaxon%3A1655","Actinomyces naeslundii"],["NCBITaxon%3A240017","Actinomyces naeslundii MG1"],["NCBITaxon%3A1115803","Actinomyces naeslundii str. Howell 279"],["NCBITaxon%3A544580","Actinomyces oris"]]},{"id":"NCBITaxon:1909294","l":"Hyphomicrobiales bacterium","na":8,"nb":2,"a":[["TED%3AAF-A0A2D8YNS6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D8YNS6-F1-model_v4_TED01"],["TED%3AAF-A0A2N6AYA1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N6AYA1-F1-model_v4_TED01"],["TED%3AAF-A0A3C1NDV6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C1NDV6-F1-model_v4_TED01"],["TED%3AAF-A0A431NIF5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A431NIF5-F1-model_v4_TED01"],["TED%3AAF-A0A4Q3HF49-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q3HF49-F1-model_v4_TED01"],["TED%3AAF-A0A2W6AY92-F1-model_v4_TED01","TED novel fold AF-A0A2W6AY92-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1909294","Hyphomicrobiales bacterium"],["NCBITaxon%3A3349849","Hyphomicrobiales bacterium G4i25"]]},{"id":"NCBITaxon:227882","l":"Streptomyces avermitilis MA-4680 = NBRC 14893","na":8,"nb":2,"a":[["Pfam%3APF17390","Bacterial alpha-L-rhamnosidase C-terminal domain"],["Pfam%3APF08531","Alpha-L-rhamnosidase N-terminal domain"],["Pfam%3APF05592","Bacterial alpha-L-rhamnosidase concanavalin-like domain"],["Pfam%3APF26366","Domain of unknown function (DUF8094)"],["Pfam%3APF25788","Rha78A-like, N-terminal immunoglobulin domain"],["Pfam%3APF06781","Cell division protein CrgA"]],"b":[["NCBITaxon%3A33903","Streptomyces avermitilis"],["NCBITaxon%3A227882","Streptomyces avermitilis MA-4680 = NBRC 14893"]]},{"id":"NCBITaxon:272557","l":"Aeropyrum pernix K1","na":8,"nb":2,"a":[["Pfam%3APF28403","Aconitase X second domain"],["Pfam%3APF28406","Aconitase X third domain"],["Pfam%3APF04412","Aconitase X first domain"],["Pfam%3APF09171","N-glycosylase/DNA lyase"],["Pfam%3APF10432","Bacterial phospho-glucose isomerase C-terminal SIS domain"],["Pfam%3APF09895","RecB-family nuclease (DUF2122)"]],"b":[["NCBITaxon%3A56636","Aeropyrum pernix"],["NCBITaxon%3A272557","Aeropyrum pernix K1"]]},{"id":"NCBITaxon:481805","l":"Escherichia coli ATCC 8739","na":8,"nb":2,"a":[["Pfam%3APF06392","Acid shock protein"],["Pfam%3APF10807","Domain of unknown function (DUF2541)"],["Pfam%3APF26739","Domain of unknown function (DUF8245)"],["Pfam%3APF18649","EcpB C-terminal domain"],["Pfam%3APF25878","pHBA AAEA subunit, alpha-helical hairpin domain"],["Pfam%3APF02685","Glucokinase"]],"b":[["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A481805","Escherichia coli ATCC 8739"]]},{"id":"NCBITaxon:4932","l":"Saccharomyces cerevisiae","na":2,"nb":8,"a":[["PROSITE%3APS00820","Glucoamylase active site region signature"],["TED%3AAF-A0A7I9G6Y3-F1-model_v4_TED02","TED novel fold AF-A0A7I9G6Y3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A4932","Saccharomyces cerevisiae"],["NCBITaxon%3A1266529","Saccharomyces cerevisiae BY4743"],["NCBITaxon%3A1218710","Saccharomyces cerevisiae CBS 1585"],["NCBITaxon%3A764102","Saccharomyces cerevisiae FostersB"],["NCBITaxon%3A764101","Saccharomyces cerevisiae FostersO"],["NCBITaxon%3A1220494","Saccharomyces cerevisiae PE-2"]]},{"id":"NCBITaxon:572477","l":"Allochromatium vinosum DSM 180","na":8,"nb":2,"a":[["Pfam%3APF01322","Cytochrome C'"],["Pfam%3APF02635","DsrE/DsrF-like family"],["Pfam%3APF21706","Sulfide dehydrogenase [flavocytochrome c] flavoprotein chain, central"],["Pfam%3APF09242","Flavocytochrome c sulphide dehydrogenase, flavin-binding"],["Pfam%3APF01355","High potential iron-sulfur protein"],["Pfam%3APF13686","DsrE/DsrF/DrsH-like family"]],"b":[["NCBITaxon%3A1049","Allochromatium vinosum"],["NCBITaxon%3A572477","Allochromatium vinosum DSM 180"]]},{"id":"NCBITaxon:154046","l":"Hungatella hathewayi","na":2,"nb":7,"a":[["TED%3AAF-A0A3E3DRT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3E3DRT8-F1-model_v4_TED01"],["TED%3AAF-A0A174BLS4-F1-model_v4_TED01","TED novel fold AF-A0A174BLS4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A154046","Hungatella hathewayi"],["NCBITaxon%3A999412","Hungatella hathewayi 12489931"],["NCBITaxon%3A1263067","Hungatella hathewayi CAG:224"],["NCBITaxon%3A566550","Hungatella hathewayi DSM 13479"],["NCBITaxon%3A1232440","Hungatella hathewayi VE202-04"],["NCBITaxon%3A1232451","Hungatella hathewayi VE202-11"]]},{"id":"NCBITaxon:1871047","l":"Chryseobacterium sp.","na":7,"nb":2,"a":[["TED%3AAF-A0A2W6XQ62-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W6XQ62-F1-model_v4_TED01"],["TED%3AAF-A0A2W6YLD3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2W6YLD3-F1-model_v4_TED02"],["TED%3AAF-A0A5N7U1L3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5N7U1L3-F1-model_v4_TED01"],["TED%3AAF-A0A3D4JZX5-F1-model_v4_TED04","TED novel fold AF-A0A3D4JZX5-F1-model_v4_TED04"],["TED%3AAF-A0A3N7GZ20-F1-model_v4_TED01","TED novel fold AF-A0A3N7GZ20-F1-model_v4_TED01"],["TED%3AAF-A0A5N7YYR2-F1-model_v4_TED01","TED novel fold AF-A0A5N7YYR2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A651561","Chryseobacterium arthrosphaerae"],["NCBITaxon%3A1871047","Chryseobacterium sp."]]},{"id":"NCBITaxon:262724","l":"Thermus thermophilus HB27","na":7,"nb":2,"a":[["Pfam%3APF22474","Argonaute, middle domain"],["Pfam%3APF22472","Argonaute, N-terminal domain"],["Pfam%3APF03449","Transcription elongation factor, N-terminal"],["Pfam%3APF01272","Transcription elongation factor, GreA/GreB, C-term"],["Pfam%3APF09704","CRISPR-associated protein (Cas_Cas5)"],["PROSITE%3APS01224","N-acetyl-gamma-glutamyl-phosphate reductase active site"]],"b":[["NCBITaxon%3A274","Thermus thermophilus"],["NCBITaxon%3A262724","Thermus thermophilus HB27"]]},{"id":"NCBITaxon:273075","l":"Thermoplasma acidophilum DSM 1728","na":7,"nb":2,"a":[["Pfam%3APF17989","Actin like proteins N terminal domain"],["Pfam%3APF10432","Bacterial phospho-glucose isomerase C-terminal SIS domain"],["Pfam%3APF22490","tRNA-splicing endonuclease, linker domain"],["Pfam%3APF22578","Geranylgeranyl reductase catalytic domain"],["Pfam%3APF12831","FAD dependent oxidoreductase"],["Pfam%3APF26550","Tricorn protease second beta propeller domain"]],"b":[["NCBITaxon%3A2303","Thermoplasma acidophilum"],["NCBITaxon%3A273075","Thermoplasma acidophilum DSM 1728"]]},{"id":"NCBITaxon:27334","l":"Penicillium expansum","na":7,"nb":2,"a":[["Pfam%3APF11786","Aft1 HRA domain"],["Pfam%3APF11787","Aft1 HRR domain"],["Pfam%3APF11785","Aft1 osmotic stress response (OSM) domain"],["Pfam%3APF14856","Pathogen effector; putative necrosis-inducing factor"],["PROSITE%3APS00624","GMC oxidoreductases signature 2"],["TED%3AAF-A0A0A2ILJ4-F1-model_v4_TED03","TED novel fold AF-A0A0A2ILJ4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A27334","Penicillium expansum"],["NCBITaxon%3A1208580","Penicillium expansum NRRL 62431"]]},{"id":"NCBITaxon:291644","l":"Bacteroides salyersiae","na":2,"nb":7,"a":[["TED%3AAF-A0A641MFK5-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A641MFK5-F1-model_v4_TED04"],["TED%3AAF-A0A7J4XH39-F1-model_v4_TED02","TED novel fold AF-A0A7J4XH39-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A291644","Bacteroides salyersiae"],["NCBITaxon%3A997887","Bacteroides salyersiae CL02T12C01"],["NCBITaxon%3A1338913","Bacteroides salyersiae TS7.3-1.1"],["NCBITaxon%3A1338914","Bacteroides salyersiae TSDA1.8-1.1"],["NCBITaxon%3A1338915","Bacteroides salyersiae TSDA1.8-1.2"],["NCBITaxon%3A1338916","Bacteroides salyersiae TSDA1.8-1.3"]]},{"id":"NCBITaxon:334771","l":"Ignisphaera aggregans","na":7,"nb":2,"a":[["TED%3AAF-A0A7J2U2H6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J2U2H6-F1-model_v4_TED01"],["TED%3AAF-A0A7J3JN22-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7J3JN22-F1-model_v4_TED02"],["TED%3AAF-A0A7C4D126-F1-model_v4_TED02","TED novel fold AF-A0A7C4D126-F1-model_v4_TED02"],["TED%3AAF-A0A7C4FEF1-F1-model_v4_TED01","TED novel fold AF-A0A7C4FEF1-F1-model_v4_TED01"],["TED%3AAF-A0A7C4JKV5-F1-model_v4_TED02","TED novel fold AF-A0A7C4JKV5-F1-model_v4_TED02"],["TED%3AAF-A0A7J3Z8K0-F1-model_v4_TED01","TED novel fold AF-A0A7J3Z8K0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A334771","Ignisphaera aggregans"],["NCBITaxon%3A583356","Ignisphaera aggregans DSM 17230"]]},{"id":"NCBITaxon:41514","l":"Salmonella enterica subsp. arizonae serovar 62:z4,z23:-","na":7,"nb":2,"a":[["Pfam%3APF22102","ElaD/SseL-like C-terminal"],["Pfam%3APF02952","L-fucose isomerase, C-terminal domain"],["Pfam%3APF07881","L-fucose isomerase, first N-terminal domain"],["Pfam%3APF07882","L-fucose isomerase, second N-terminal domain"],["Pfam%3APF25881","YBHG alpha-helical hairpin domain"],["Pfam%3APF10781","Dextransucrase DSRB"]],"b":[["NCBITaxon%3A41514","Salmonella enterica subsp. arizonae serovar 62:z4,z23:-"],["NCBITaxon%3A882884","Salmonella enterica subsp. arizonae serovar 62:z4,z23:- str. RSK2980"]]},{"id":"NCBITaxon:478009","l":"Halobacterium salinarum R1","na":7,"nb":2,"a":[["Pfam%3APF01036","Bacteriorhodopsin-like protein"],["Pfam%3APF02895","Signal transducing histidine kinase, homodimeric domain"],["Pfam%3APF04283","Archaeal Chemotaxis signal transduction system protein F"],["Pfam%3APF07311","Dodecin"],["Pfam%3APF03814","Potassium-transporting ATPase A subunit"],["Pfam%3APF18204","PGF-CTERM motif"]],"b":[["NCBITaxon%3A2242","Halobacterium salinarum"],["NCBITaxon%3A478009","Halobacterium salinarum R1"]]},{"id":"NCBITaxon:49338","l":"Desulfitobacterium hafniense","na":2,"nb":7,"a":[["Pfam%3APF13484","4Fe-4S double cluster binding domain"],["Pfam%3APF10518","TAT (twin-arginine translocation) pathway signal sequence"]],"b":[["NCBITaxon%3A49338","Desulfitobacterium hafniense"],["NCBITaxon%3A272564","Desulfitobacterium hafniense DCB-2"],["NCBITaxon%3A537010","Desulfitobacterium hafniense DP7"],["NCBITaxon%3A1090321","Desulfitobacterium hafniense PCP-1"],["NCBITaxon%3A884048","Desulfitobacterium hafniense TCE1"],["NCBITaxon%3A872024","Desulfitobacterium hafniense TCP-A"]]},{"id":"NCBITaxon:5476","l":"Candida albicans","na":7,"nb":2,"a":[["Pfam%3APF11766","Agglutinin-like protein, N-terminal domain"],["Pfam%3APF16856","Cell division control protein 4 dimerisation domain"],["Pfam%3APF18325","Fatty acid synthase subunit alpha Acyl carrier domain"],["Pfam%3APF18314","Fatty acid synthase type I helical domain"],["Pfam%3APF17828","N-terminal domain in fatty acid synthase subunit beta"],["Pfam%3APF05388","Carboxypeptidase Y pro-peptide"]],"b":[["NCBITaxon%3A5476","Candida albicans"],["NCBITaxon%3A1182531","Candida albicans 3153A"]]},{"id":"NCBITaxon:555778","l":"Halothiobacillus neapolitanus c2","na":7,"nb":2,"a":[["Pfam%3APF08936","Carboxysome Shell Carbonic Anhydrase, C-terminal"],["Pfam%3APF20686","Carboxysome Shell Carbonic Anhydrase, catalytic domain"],["Pfam%3APF20687","Carboxysome Shell Carbonic Anhydrase, N-terminal"],["Pfam%3APF12288","Carboxysome shell peptide mid-region"],["Pfam%3APF10070","Probable inorganic carbon transporter subunit DabA"],["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]],"b":[["NCBITaxon%3A927","Halothiobacillus neapolitanus"],["NCBITaxon%3A555778","Halothiobacillus neapolitanus c2"]]},{"id":"NCBITaxon:5580","l":"Aureobasidium pullulans","na":7,"nb":2,"a":[["TED%3AAF-A0A4S8XR15-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S8XR15-F1-model_v4_TED01"],["TED%3AAF-A0A4S8YVB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S8YVB9-F1-model_v4_TED01"],["TED%3AAF-A0A4S9KUA9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S9KUA9-F1-model_v4_TED01"],["TED%3AAF-A0A4T0BHY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4T0BHY6-F1-model_v4_TED01"],["TED%3AAF-A0A4S9MB45-F1-model_v4_TED01","TED novel fold AF-A0A4S9MB45-F1-model_v4_TED01"],["TED%3AAF-A0A4S9RE93-F1-model_v4_TED01","TED novel fold AF-A0A4S9RE93-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5580","Aureobasidium pullulans"],["NCBITaxon%3A1043002","Aureobasidium pullulans EXF-150"]]},{"id":"NCBITaxon:60552","l":"Burkholderia vietnamiensis","na":2,"nb":7,"a":[["TED%3AAF-A0A1G5M5D3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G5M5D3-F1-model_v4_TED02"],["TED%3AAF-A0A2Z6TW79-F1-model_v4_TED01","TED novel fold AF-A0A2Z6TW79-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A292","Burkholderia cepacia"],["NCBITaxon%3A36773","Burkholderia sp."],["NCBITaxon%3A60552","Burkholderia vietnamiensis"],["NCBITaxon%3A269482","Burkholderia vietnamiensis G4"],["NCBITaxon%3A1449978","Burkholderia vietnamiensis LMG 10929"],["NCBITaxon%3A1254","Pediococcus acidilactici"]]},{"id":"NCBITaxon:768679","l":"Thermoproteus tenax Kra 1","na":7,"nb":2,"a":[["Pfam%3APF22662","Csa3 CRISPR-associated Rossmann-like domain"],["Pfam%3APF25212","HVO_A0114"],["Pfam%3APF01867","CRISPR associated protein Cas1"],["Pfam%3APF09703","CRISPR-associated protein (Cas_Csa4)"],["Pfam%3APF09827","CRISPR associated protein Cas2"],["Pfam%3APF06023","CRISPR-associated exonuclease Csa1"]],"b":[["NCBITaxon%3A2271","Thermoproteus tenax"],["NCBITaxon%3A768679","Thermoproteus tenax Kra 1"]]},{"id":"NCBITaxon:124","l":"Blastopirellula marina","na":6,"nb":2,"a":[["TED%3AAF-A0A2S8GNX8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S8GNX8-F1-model_v4_TED01"],["TED%3AAF-A0A2S8F9J3-F1-model_v4_TED04","TED novel fold AF-A0A2S8F9J3-F1-model_v4_TED04"],["TED%3AAF-A0A2S8FMN6-F1-model_v4_TED01","TED novel fold AF-A0A2S8FMN6-F1-model_v4_TED01"],["TED%3AAF-A0A2S8GCT5-F1-model_v4_TED02","TED novel fold AF-A0A2S8GCT5-F1-model_v4_TED02"],["TED%3AAF-A0A2S8GL91-F1-model_v4_TED01","TED novel fold AF-A0A2S8GL91-F1-model_v4_TED01"],["TED%3AAF-A0A2S8GLG3-F1-model_v4_TED01","TED novel fold AF-A0A2S8GLG3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A124","Blastopirellula marina"],["NCBITaxon%3A314230","Blastopirellula marina DSM 3645"]]},{"id":"NCBITaxon:1306","l":"Streptococcus sp.","na":6,"nb":2,"a":[["TED%3AAF-A0A496KVG3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A496KVG3-F1-model_v4_TED02"],["TED%3AAF-A0A496KCG7-F1-model_v4_TED01","TED novel fold AF-A0A496KCG7-F1-model_v4_TED01"],["TED%3AAF-A0A496L3I5-F1-model_v4_TED01","TED novel fold AF-A0A496L3I5-F1-model_v4_TED01"],["TED%3AAF-A0A496LB14-F1-model_v4_TED02","TED novel fold AF-A0A496LB14-F1-model_v4_TED02"],["TED%3AAF-A0A496M1E6-F1-model_v4_TED02","TED novel fold AF-A0A496M1E6-F1-model_v4_TED02"],["TED%3AAF-A0A496M2R1-F1-model_v4_TED06","TED novel fold AF-A0A496M2R1-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A1303","Streptococcus oralis"],["NCBITaxon%3A1306","Streptococcus sp."]]},{"id":"NCBITaxon:135720","l":"Neisseria meningitidis serogroup C","na":2,"nb":6,"a":[["IDPO%3A0000048","limited proteolysis display site"],["Pfam%3APF04480","Protein of unknown function (DUF559)"]],"b":[["NCBITaxon%3A374833","Neisseria meningitidis 053442"],["NCBITaxon%3A604162","Neisseria meningitidis 8013"],["NCBITaxon%3A272831","Neisseria meningitidis FAM18"],["NCBITaxon%3A768485","Neisseria meningitidis K1207"],["NCBITaxon%3A768484","Neisseria meningitidis S0108"],["NCBITaxon%3A135720","Neisseria meningitidis serogroup C"]]},{"id":"NCBITaxon:1430","l":"Bacillus thuringiensis serovar israelensis","na":6,"nb":2,"a":[["Pfam%3APF01338","Bacillus thuringiensis toxin"],["Pfam%3APF17997","Insecticidal delta-endotoxin CryIA(c) domain 5"],["Pfam%3APF21463","Cry1Ac, domain VII"],["Pfam%3APF03944","delta endotoxin"],["Pfam%3APF03945","delta endotoxin, N-terminal domain"],["Pfam%3APF00555","delta endotoxin"]],"b":[["NCBITaxon%3A1430","Bacillus thuringiensis serovar israelensis"],["NCBITaxon%3A339854","Bacillus thuringiensis serovar israelensis ATCC 35646"]]},{"id":"NCBITaxon:166486","l":"Roseburia intestinalis","na":2,"nb":6,"a":[["TED%3AAF-A0A3R6HE72-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R6HE72-F1-model_v4_TED01"],["TED%3AAF-A0A6L6XJA4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L6XJA4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A166486","Roseburia intestinalis"],["NCBITaxon%3A1263104","Roseburia intestinalis CAG:13"],["NCBITaxon%3A536231","Roseburia intestinalis L1-82"],["NCBITaxon%3A657315","Roseburia intestinalis M50/1"],["NCBITaxon%3A1339593","Roseburia intestinalis TSDC19.2-1.1"],["NCBITaxon%3A718255","Roseburia intestinalis XB6B4"]]},{"id":"NCBITaxon:194439","l":"Chlorobaculum tepidum TLS","na":6,"nb":2,"a":[["Pfam%3APF02327","Bacteriochlorophyll A protein"],["Pfam%3APF27499","CsmB chlorosome envelope protein"],["Pfam%3APF28537","Probable trigger factor, FKBP-like domain"],["Pfam%3APF02043","Bacteriochlorophyll C binding protein"],["Pfam%3APF11098","Chlorosome envelope protein C"],["Pfam%3APF10643","Photosystem P840 reaction-centre cytochrome c-551"]],"b":[["NCBITaxon%3A1097","Chlorobaculum tepidum"],["NCBITaxon%3A194439","Chlorobaculum tepidum TLS"]]},{"id":"NCBITaxon:246787","l":"Bacteroides cellulosilyticus","na":2,"nb":6,"a":[["TED%3AAF-A0A6H9Q0G2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A6H9Q0G2-F1-model_v4_TED03"],["TED%3AAF-A0A642PT16-F1-model_v4_TED01","TED novel fold AF-A0A642PT16-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A246787","Bacteroides cellulosilyticus"],["NCBITaxon%3A1263038","Bacteroides cellulosilyticus CAG:158"],["NCBITaxon%3A997874","Bacteroides cellulosilyticus CL02T12C19"],["NCBITaxon%3A537012","Bacteroides cellulosilyticus DSM 14838"],["NCBITaxon%3A1357381","Bacteroides cellulosilyticus UC1_FAA_J"],["NCBITaxon%3A1268240","Bacteroides cellulosilyticus WH2"]]},{"id":"NCBITaxon:272569","l":"Haloarcula marismortui ATCC 43049","na":6,"nb":2,"a":[["Pfam%3APF06847","Archaeal Peptidase A24 C-terminus Type II"],["Pfam%3APF12840","Helix-turn-helix domain"],["PROSITE%3APS01171","Ribosomal protein L21e signature"],["PROSITE%3APS01144","Ribosomal protein L31e signature"],["PROSITE%3APS00580","Ribosomal protein L32e signature"],["PROSITE%3APS01172","Ribosomal protein L44e signature"]],"b":[["NCBITaxon%3A2238","Haloarcula marismortui"],["NCBITaxon%3A272569","Haloarcula marismortui ATCC 43049"]]},{"id":"NCBITaxon:272630","l":"Methylorubrum extorquens AM1","na":6,"nb":2,"a":[["Pfam%3APF07726","ATPase family associated with various cellular activities (AAA)"],["Pfam%3APF02741","FTR, proximal lobe"],["Pfam%3APF01913","Formylmethanofuran-tetrahydromethanopterin formyltransferase"],["Pfam%3APF10677","Protein of unknown function (DUF2490)"],["Pfam%3APF08714","Formaldehyde-activating enzyme (Fae)"],["PROSITE%3APS00363","Bacterial quinoprotein dehydrogenases signature 1"]],"b":[["NCBITaxon%3A408","Methylorubrum extorquens"],["NCBITaxon%3A272630","Methylorubrum extorquens AM1"]]},{"id":"NCBITaxon:273063","l":"Sulfurisphaera tokodaii str. 7","na":6,"nb":2,"a":[["Pfam%3APF01935","Helicase HerA, central domain"],["Pfam%3APF09378","HAS barrel domain"],["Pfam%3APF05872","Helicase HerA-like C-terminal"],["Pfam%3APF08112","ATP synthase epsilon subunit"],["Pfam%3APF05626","Protein of unknown function (DUF790)"],["Pfam%3APF01950","Fructose-1,6-bisphosphatase"]],"b":[["NCBITaxon%3A111955","Sulfurisphaera tokodaii"],["NCBITaxon%3A273063","Sulfurisphaera tokodaii str. 7"]]},{"id":"NCBITaxon:371601","l":"Bacteroides xylanisolvens","na":2,"nb":6,"a":[["TED%3AAF-A0A1H4FUH8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H4FUH8-F1-model_v4_TED02"],["TED%3AAF-A0A415K7P7-F1-model_v4_TED02","TED novel fold AF-A0A415K7P7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A371601","Bacteroides xylanisolvens"],["NCBITaxon%3A997892","Bacteroides xylanisolvens CL03T12C04"],["NCBITaxon%3A702447","Bacteroides xylanisolvens SD CC 1b"],["NCBITaxon%3A702444","Bacteroides xylanisolvens SD CC 2a"],["NCBITaxon%3A1422842","Bacteroides xylanisolvens VIII-271A"],["NCBITaxon%3A657309","Bacteroides xylanisolvens XB1A"]]},{"id":"NCBITaxon:391625","l":"Plesiocystis pacifica SIR-1","na":6,"nb":2,"a":[["TED%3AAF-A6FXI2-F1-model_v4_TED01","TED highly-symmetric fold AF-A6FXI2-F1-model_v4_TED01"],["TED%3AAF-A6G0J0-F1-model_v4_TED01","TED highly-symmetric fold AF-A6G0J0-F1-model_v4_TED01"],["TED%3AAF-A6G9Q2-F1-model_v4_TED01","TED highly-symmetric fold AF-A6G9Q2-F1-model_v4_TED01"],["TED%3AAF-A6G861-F1-model_v4_TED02","TED novel fold AF-A6G861-F1-model_v4_TED02"],["TED%3AAF-A6GGD7-F1-model_v4_TED01","TED novel fold AF-A6GGD7-F1-model_v4_TED01"],["TED%3AAF-A6GI73-F1-model_v4_TED02","TED novel fold AF-A6GI73-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A191768","Plesiocystis pacifica"],["NCBITaxon%3A391625","Plesiocystis pacifica SIR-1"]]},{"id":"NCBITaxon:407148","l":"Campylobacter jejuni subsp. jejuni 81116","na":6,"nb":2,"a":[["Pfam%3APF00700","Bacterial flagellin C-terminal helical region"],["Pfam%3APF02561","Flagellar protein FliS"],["Pfam%3APF02623","FliW protein"],["Pfam%3APF00669","Bacterial flagellin N-terminal helical region"],["Pfam%3APF07196","Flagellin hook IN motif"],["PROSITE%3APS00550","Hemerythrin family signature"]],"b":[["NCBITaxon%3A197","Campylobacter jejuni"],["NCBITaxon%3A407148","Campylobacter jejuni subsp. jejuni 81116"]]},{"id":"NCBITaxon:523849","l":"Thermococcus litoralis DSM 5473","na":6,"nb":2,"a":[["Pfam%3APF09094","Alpha-amylase/4-alpha-glucanotransferase, middle domain"],["Pfam%3APF09095","Alpha-amylase/4-alpha-glucanotransferase, C-terminal"],["Pfam%3APF28476","Glycogen phosphorylase C-terminal domain"],["Pfam%3APF11897","Protein of unknown function (DUF3417)"],["PROSITE%3APS01334","Pyrrolidone-carboxylate peptidase cysteine active site"],["PROSITE%3APS01333","Pyrrolidone-carboxylate peptidase glutamic acid active site"]],"b":[["NCBITaxon%3A2265","Thermococcus litoralis"],["NCBITaxon%3A523849","Thermococcus litoralis DSM 5473"]]},{"id":"NCBITaxon:5833","l":"Plasmodium falciparum","na":6,"nb":2,"a":[["IDPO%3A0000037","molecular recognition display site"],["Pfam%3APF05403","Plasmodium histidine-rich protein (HRPII/III)"],["Pfam%3APF17986","EMP3-KAHRP-like N-terminal domain"],["Pfam%3APF03805","Cytoadherence-linked asexual protein"],["Pfam%3APF06589","Circumsporozoite-related antigen (CRA)"],["TED%3AAF-Q9U431-F1-model_v4_TED01","TED novel fold AF-Q9U431-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5833","Plasmodium falciparum"],["NCBITaxon%3A5843","Plasmodium falciparum NF54"]]},{"id":"NCBITaxon:62977","l":"Acinetobacter baylyi ADP1","na":6,"nb":2,"a":[["Pfam%3APF03594","Benzoate membrane transport protein"],["Pfam%3APF27541","Citrate utilization protein B"],["Pfam%3APF05232","Chlorhexidine efflux transporter"],["PROSITE%3APS00083","Intradiol ring-cleavage dioxygenases signature"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"],["Pfam%3APF11846","Virulence factor membrane-bound polymerase, C-terminal"]],"b":[["NCBITaxon%3A202950","Acinetobacter baylyi"],["NCBITaxon%3A62977","Acinetobacter baylyi ADP1"]]},{"id":"NCBITaxon:873","l":"Desulfocurvibacter africanus","na":2,"nb":6,"a":[["Pfam%3APF02085","Class III cytochrome C family"],["Pfam%3APF10371","Domain of unknown function"]],"b":[["NCBITaxon%3A873","Desulfocurvibacter africanus"],["NCBITaxon%3A1262666","Desulfocurvibacter africanus PCS"],["NCBITaxon%3A1511600","Desulfocurvibacter africanus subsp. africanus"],["NCBITaxon%3A1121435","Desulfocurvibacter africanus subsp. africanus DSM 2603"],["NCBITaxon%3A690850","Desulfocurvibacter africanus subsp. africanus str. Walvis Bay"],["NCBITaxon%3A1511599","Desulfocurvibacter africanus subsp. uniflagellum"]]},{"id":"NCBITaxon:888064","l":"Enterococcus italicus DSM 15952","na":6,"nb":2,"a":[["Pfam%3APF22206","CRISPR-associated protein Csm6 6H domain"],["Pfam%3APF22208","Cas_Csm6 CARF domain"],["Pfam%3APF09659","Cas_Csm6 HEPN domain"],["Pfam%3APF18211","Csm1 subunit domain B"],["Pfam%3APF17953","CRISPR Csm4 C-terminal domain"],["Pfam%3APF03750","Csm2 Type III-A"]],"b":[["NCBITaxon%3A246144","Enterococcus italicus"],["NCBITaxon%3A888064","Enterococcus italicus DSM 15952"]]},{"id":"NCBITaxon:1356854","l":"Alicyclobacillus acidoterrestris ATCC 49025","na":5,"nb":2,"a":[["Pfam%3APF22202","CRISPR-associated endonuclease C2c1 first helical domain"],["Pfam%3APF22172","CRISPR-associated endonuclease C2c1 second helical domain"],["Pfam%3APF22077","CRISPR-associated endonuclease C2c1 Nuc-II domain"],["Pfam%3APF22126","C2c1 CRISPR-Cas endonuclease, RuvC-like domain"],["Pfam%3APF22204","CRISPR-associated endonuclease C2c1, wedge domain, second region"]],"b":[["NCBITaxon%3A1450","Alicyclobacillus acidoterrestris"],["NCBITaxon%3A1356854","Alicyclobacillus acidoterrestris ATCC 49025"]]},{"id":"NCBITaxon:155077","l":"Cellvibrio japonicus","na":5,"nb":2,"a":[["Pfam%3APF02013","Cellulose or protein binding domain"],["Pfam%3APF03426","Carbohydrate binding domain (family 15)"],["Pfam%3APF16841","Ca-dependent carbohydrate-binding module xylan-binding"],["Pfam%3APF00331","Glycosyl hydrolase family 10"],["PROSITE%3APS00591","Glycosyl hydrolases family 10 (GH10) active site"]],"b":[["NCBITaxon%3A155077","Cellvibrio japonicus"],["NCBITaxon%3A498211","Cellvibrio japonicus Ueda107"]]},{"id":"NCBITaxon:169435","l":"Anaerotruncus colihominis","na":5,"nb":2,"a":[["TED%3AAF-A0A174TWH9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A174TWH9-F1-model_v4_TED03"],["TED%3AAF-A0A174V310-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A174V310-F1-model_v4_TED01"],["TED%3AAF-A0A174PYH3-F1-model_v4_TED02","TED novel fold AF-A0A174PYH3-F1-model_v4_TED02"],["TED%3AAF-A0A845QNC0-F1-model_v4_TED01","TED novel fold AF-A0A845QNC0-F1-model_v4_TED01"],["TED%3AAF-A0A845SWY0-F1-model_v4_TED01","TED novel fold AF-A0A845SWY0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A169435","Anaerotruncus colihominis"],["NCBITaxon%3A445972","Anaerotruncus colihominis DSM 17241"]]},{"id":"NCBITaxon:1731","l":"Peptoclostridium acidaminophilum","na":5,"nb":2,"a":[["Pfam%3APF07355","Glycine/sarcosine/betaine reductase selenoprotein B (GRDB)"],["Pfam%3APF19364","Family of unknown function (DUF5940)"],["Pfam%3APF02504","Fatty acid synthesis protein"],["Pfam%3APF09338","Glycine/sarcosine/betaine reductase component B subunits"],["Pfam%3APF04723","Glycine reductase complex selenoprotein A"]],"b":[["NCBITaxon%3A1731","Peptoclostridium acidaminophilum"],["NCBITaxon%3A1286171","Peptoclostridium acidaminophilum DSM 3953"]]},{"id":"NCBITaxon:1736314","l":"Leifsonia sp. Leaf264","na":5,"nb":2,"a":[["TED%3AAF-A0A0S9KEE9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S9KEE9-F1-model_v4_TED01"],["TED%3AAF-A0A0S9KEK1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S9KEK1-F1-model_v4_TED01"],["TED%3AAF-A0A0S9KEW3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S9KEW3-F1-model_v4_TED01"],["TED%3AAF-A0A0S9KDG5-F1-model_v4_TED01","TED novel fold AF-A0A0S9KDG5-F1-model_v4_TED01"],["TED%3AAF-A0A0S9KNQ4-F1-model_v4_TED01","TED novel fold AF-A0A0S9KNQ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1870902","Leifsonia sp."],["NCBITaxon%3A1736314","Leifsonia sp. Leaf264"]]},{"id":"NCBITaxon:176279","l":"Staphylococcus epidermidis RP62A","na":5,"nb":2,"a":[["Pfam%3APF07564","Domain of Unknown Function (DUF1542)"],["Pfam%3APF12008","Type I restriction and modification enzyme - subunit R C terminal"],["Pfam%3APF28494","Glycyl-tRNA synthetase insertion domain 1"],["Pfam%3APF04464","CDP-Glycerol:Poly(glycerophosphate) glycerophosphotransferase"],["Pfam%3APF27790","Poly-beta-1,6-N-acetyl-D-glucosamine synthesis protein IcaD"]],"b":[["NCBITaxon%3A1282","Staphylococcus epidermidis"],["NCBITaxon%3A176279","Staphylococcus epidermidis RP62A"]]},{"id":"NCBITaxon:2026792","l":"Spirochaetales bacterium","na":5,"nb":2,"a":[["TED%3AAF-A0A7X6TBI9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X6TBI9-F1-model_v4_TED01"],["TED%3AAF-A0A7X8XJX1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X8XJX1-F1-model_v4_TED01"],["TED%3AAF-A0A7Y3J1T5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y3J1T5-F1-model_v4_TED01"],["TED%3AAF-A0A7C1T0J9-F1-model_v4_TED03","TED novel fold AF-A0A7C1T0J9-F1-model_v4_TED03"],["TED%3AAF-A0A7V5DXE1-F1-model_v4_TED01","TED novel fold AF-A0A7V5DXE1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026792","Spirochaetales bacterium"],["NCBITaxon%3A2828656","Thermospira aquatica"]]},{"id":"NCBITaxon:2718","l":"Cardiobacterium hominis","na":2,"nb":5,"a":[["TED%3AAF-A0A1C3H4F2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C3H4F2-F1-model_v4_TED01"],["TED%3AAF-A0A1C3H5Q4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C3H5Q4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A35814","Bordetella holmesii"],["NCBITaxon%3A1247649","Bordetella holmesii ATCC 51541"],["NCBITaxon%3A2718","Cardiobacterium hominis"],["NCBITaxon%3A638300","Cardiobacterium hominis ATCC 15826"],["NCBITaxon%3A194702","Cardiobacterium valvarum"]]},{"id":"NCBITaxon:272558","l":"Halalkalibacterium halodurans C-125","na":5,"nb":2,"a":[["Pfam%3APF22184","Carbohydrate binding module family 56"],["Pfam%3APF22769","dCTP deaminase-like"],["Pfam%3APF18438","Glycosyl hydrolases family 38 C-terminal domain 1"],["Pfam%3APF09827","CRISPR associated protein Cas2"],["Pfam%3APF01270","Glycosyl hydrolases family 8"]],"b":[["NCBITaxon%3A86665","Halalkalibacterium halodurans"],["NCBITaxon%3A272558","Halalkalibacterium halodurans C-125"]]},{"id":"NCBITaxon:2751","l":"Carnobacterium maltaromaticum","na":2,"nb":5,"a":[["Pfam%3APF09221","Bacteriocin class IId cyclical uberolysin-like"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"]],"b":[["NCBITaxon%3A2751","Carnobacterium maltaromaticum"],["NCBITaxon%3A1255596","Carnobacterium maltaromaticum 38b"],["NCBITaxon%3A1087479","Carnobacterium maltaromaticum ATCC 35586"],["NCBITaxon%3A1449341","Carnobacterium maltaromaticum DSM 20342"],["NCBITaxon%3A1234679","Carnobacterium maltaromaticum LMA28"]]},{"id":"NCBITaxon:288705","l":"Renibacterium salmoninarum ATCC 33209","na":5,"nb":2,"a":[["Pfam%3APF18080","Galactose mutarotase-like fold domain"],["Pfam%3APF17974","Galactose-binding domain-like"],["Pfam%3APF21466","Endo-alpha-N-acetylgalactosaminidase, domain 5"],["Pfam%3APF17451","Glycosyl hydrolase 101 beta sandwich domain"],["Pfam%3APF12905","Endo-alpha-N-acetylgalactosaminidase"]],"b":[["NCBITaxon%3A1646","Renibacterium salmoninarum"],["NCBITaxon%3A288705","Renibacterium salmoninarum ATCC 33209"]]},{"id":"NCBITaxon:3039","l":"Euglena gracilis","na":5,"nb":2,"a":[["Pfam%3APF01333","Apocytochrome F, C-terminal"],["Pfam%3APF16639","Apocytochrome F, N-terminal"],["Pfam%3APF04940","Sensors of blue-light using FAD"],["Pfam%3APF10371","Domain of unknown function"],["PROSITE%3APS00938","Initiation factor 3 signature"]],"b":[["NCBITaxon%3A3039","Euglena gracilis"],["NCBITaxon%3A158060","Euglena gracilis var. bacillaris"]]},{"id":"NCBITaxon:317025","l":"Hydrogenovibrio crunogenus XCL-2","na":5,"nb":2,"a":[["Pfam%3APF08936","Carboxysome Shell Carbonic Anhydrase, C-terminal"],["Pfam%3APF20686","Carboxysome Shell Carbonic Anhydrase, catalytic domain"],["Pfam%3APF20687","Carboxysome Shell Carbonic Anhydrase, N-terminal"],["Pfam%3APF12288","Carboxysome shell peptide mid-region"],["Pfam%3APF10070","Probable inorganic carbon transporter subunit DabA"]],"b":[["NCBITaxon%3A39765","Hydrogenovibrio crunogenus"],["NCBITaxon%3A317025","Hydrogenovibrio crunogenus XCL-2"]]},{"id":"NCBITaxon:318","l":"Pseudomonas savastanoi pv. glycinea","na":2,"nb":5,"a":[["Pfam%3APF05394","Avirulence protein"],["TED%3AAF-A0A3M5VJX5-F1-model_v4_TED01","TED novel fold AF-A0A3M5VJX5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29438","Pseudomonas savastanoi"],["NCBITaxon%3A318","Pseudomonas savastanoi pv. glycinea"],["NCBITaxon%3A875329","Pseudomonas savastanoi pv. glycinea str. B076"],["NCBITaxon%3A875330","Pseudomonas savastanoi pv. glycinea str. race 4"],["NCBITaxon%3A317","Pseudomonas syringae"]]},{"id":"NCBITaxon:324602","l":"Chloroflexus aurantiacus J-10-fl","na":5,"nb":2,"a":[["Pfam%3APF00127","Copper binding proteins, plastocyanin/azurin family"],["Pfam%3APF02276","Photosynthetic reaction centre cytochrome C subunit"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["PROSITE%3APS00196","Type-1 copper (blue) proteins signature"],["PROSITE%3APS00648","Bacterial ribonuclease P protein component signature"]],"b":[["NCBITaxon%3A1108","Chloroflexus aurantiacus"],["NCBITaxon%3A324602","Chloroflexus aurantiacus J-10-fl"]]},{"id":"NCBITaxon:349747","l":"Yersinia pseudotuberculosis IP 31758","na":5,"nb":2,"a":[["Pfam%3APF09012","FeoC like transcriptional regulator"],["Pfam%3APF13413","Helix-turn-helix domain"],["Pfam%3APF07429","4-alpha-L-fucosyltransferase glycosyl transferase group 56"],["Pfam%3APF24996","N-acetylneuraminate epimerase"],["Pfam%3APF17874","MalT-like TPR region"]],"b":[["NCBITaxon%3A633","Yersinia pseudotuberculosis"],["NCBITaxon%3A349747","Yersinia pseudotuberculosis IP 31758"]]},{"id":"NCBITaxon:38313","l":"Shewanella algae","na":2,"nb":5,"a":[["TED%3AAF-A0A1S2T8W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S2T8W3-F1-model_v4_TED01"],["TED%3AAF-A0A8A5EFG1-F1-model_v4_TED02","TED novel fold AF-A0A8A5EFG1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A38313","Shewanella algae"],["NCBITaxon%3A1331670","Shewanella algae ACDC"],["NCBITaxon%3A1236541","Shewanella algae JCM 14758"],["NCBITaxon%3A1236544","Shewanella algae JCM 21037 = NBRC 103173"],["NCBITaxon%3A24","Shewanella putrefaciens"]]},{"id":"NCBITaxon:410359","l":"Pyrobaculum calidifontis JCM 11548","na":5,"nb":2,"a":[["Pfam%3APF18653","Arcadin 1"],["Pfam%3APF01930","Domain of unknown function DUF83"],["PROSITE%3APS00895","3-hydroxyisobutyrate dehydrogenase signature"],["TED%3AAF-A3MU28-F1-model_v4_TED02","TED highly-symmetric fold AF-A3MU28-F1-model_v4_TED02"],["TED%3AAF-A3MXY3-F1-model_v4_TED01","TED highly-symmetric fold AF-A3MXY3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A181486","Pyrobaculum calidifontis"],["NCBITaxon%3A410359","Pyrobaculum calidifontis JCM 11548"]]},{"id":"NCBITaxon:436","l":"Novacetimonas hansenii","na":2,"nb":5,"a":[["Pfam%3APF03170","Cellulose synthase BcsB, first CBM domain"],["Pfam%3APF17040","Cellulose-complementing protein A"]],"b":[["NCBITaxon%3A28448","Komagataeibacter xylinus"],["NCBITaxon%3A436","Novacetimonas hansenii"],["NCBITaxon%3A714995","Novacetimonas hansenii ATCC 23769"],["NCBITaxon%3A1231352","Novacetimonas hansenii JCM 7643"],["NCBITaxon%3A1307933","Novacetimonas hansenii NRIC 0243"]]},{"id":"NCBITaxon:43658","l":"Pseudoalteromonas rubra","na":5,"nb":2,"a":[["proteintraitsmech%3AELIFE109154_Orn_monoox","Metallophore-associated ornithine N5-monooxygenase family"],["TED%3AAF-A0A0F4QZE1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0F4QZE1-F1-model_v4_TED02"],["TED%3AAF-A0A0U3GWJ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0U3GWJ2-F1-model_v4_TED01"],["TED%3AAF-A0A0F4QSG0-F1-model_v4_TED02","TED novel fold AF-A0A0F4QSG0-F1-model_v4_TED02"],["TED%3AAF-A0A0L0EPH9-F1-model_v4_TED03","TED novel fold AF-A0A0L0EPH9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A43658","Pseudoalteromonas rubra"],["NCBITaxon%3A1117318","Pseudoalteromonas rubra DSM 6842"]]},{"id":"NCBITaxon:439481","l":"Aciduliprofundum boonei T469","na":5,"nb":2,"a":[["Pfam%3APF12671","Putative amidase domain"],["PROSITE%3APS00953","Glycosyl hydrolases family 25 active site signature"],["TED%3AAF-D3TBP7-F1-model_v4_TED01","TED highly-symmetric fold AF-D3TBP7-F1-model_v4_TED01"],["TED%3AAF-B5IH98-F1-model_v4_TED01","TED novel fold AF-B5IH98-F1-model_v4_TED01"],["TED%3AAF-B5IHB9-F1-model_v4_TED01","TED novel fold AF-B5IHB9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A439481","Aciduliprofundum boonei T469"],["NCBITaxon%3A379547","Candidatus Aciduliprofundum boonei"]]},{"id":"NCBITaxon:525146","l":"Desulfovibrio desulfuricans ATCC 27774","na":5,"nb":2,"a":[["Pfam%3APF06397","Desulfoferrodoxin, N-terminal domain"],["Pfam%3APF09719","Putative redox-active protein (C_GCAxxG_C_C)"],["PROSITE%3APS00202","Rubredoxin signature"],["TED%3AAF-B8J1U9-F1-model_v4_TED02","TED highly-symmetric fold AF-B8J1U9-F1-model_v4_TED02"],["TED%3AAF-B8J2X7-F1-model_v4_TED01","TED novel fold AF-B8J2X7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A876","Desulfovibrio desulfuricans"],["NCBITaxon%3A525146","Desulfovibrio desulfuricans ATCC 27774"]]},{"id":"NCBITaxon:536","l":"Chromobacterium violaceum","na":2,"nb":5,"a":[["TED%3AAF-A0A381EUD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A381EUD6-F1-model_v4_TED01"],["TED%3AAF-A0A447THJ9-F1-model_v4_TED01","TED novel fold AF-A0A447THJ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1382803","Chromobacterium amazonense"],["NCBITaxon%3A686831","Chromobacterium piscinae"],["NCBITaxon%3A3055134","Chromobacterium sp. CCUG 30098"],["NCBITaxon%3A536","Chromobacterium violaceum"],["NCBITaxon%3A243365","Chromobacterium violaceum ATCC 12472"]]},{"id":"NCBITaxon:5478","l":"Nakaseomyces glabratus","na":2,"nb":5,"a":[["TED%3AAF-A0A0W0D8W7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0W0D8W7-F1-model_v4_TED02"],["TED%3AAF-A0A0W0D4K9-F1-model_v4_TED02","TED novel fold AF-A0A0W0D4K9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A5478","Nakaseomyces glabratus"],["NCBITaxon%3A1231519","Nakaseomyces glabratus CAB52-4041"],["NCBITaxon%3A1406948","Nakaseomyces glabratus CCTCC M202019"],["NCBITaxon%3A1398155","Nakaseomyces glabratus M202019"],["NCBITaxon%3A1403403","Nakaseomyces glabratus UOB301"]]},{"id":"NCBITaxon:553611","l":"Photobacterium leiognathi","na":2,"nb":5,"a":[["TED%3AAF-A0A2G4WQ25-F1-model_v4_TED01","TED novel fold AF-A0A2G4WQ25-F1-model_v4_TED01"],["TED%3AAF-A0A2G4WRI7-F1-model_v4_TED01","TED novel fold AF-A0A2G4WRI7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A553611","Photobacterium leiognathi"],["NCBITaxon%3A1248232","Photobacterium leiognathi lrivu.4.1"],["NCBITaxon%3A658","Photobacterium leiognathi subsp. leiognathi"],["NCBITaxon%3A48408","Photobacterium leiognathi subsp. mandapamensis"],["NCBITaxon%3A1001530","Photobacterium leiognathi subsp. mandapamensis svers.1.1."]]},{"id":"NCBITaxon:627192","l":"Sphingobium sp. SYK-6","na":5,"nb":2,"a":[["Pfam%3APF04909","Amidohydrolase"],["Pfam%3APF22041","Glutathione S-transferase, C-terminal domain"],["Pfam%3APF19301","LigXa C-terminal domain like"],["Pfam%3APF07746","Aromatic-ring-opening dioxygenase LigAB, LigA subunit"],["TED%3AAF-G2IS43-F1-model_v4_TED01","TED highly-symmetric fold AF-G2IS43-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1113922","Sphingobium sp. NBRC 103272"],["NCBITaxon%3A627192","Sphingobium sp. SYK-6"]]},{"id":"NCBITaxon:76114","l":"Aromatoleum aromaticum EbN1","na":5,"nb":2,"a":[["Pfam%3APF08882","Acetone carboxylase gamma subunit"],["Pfam%3APF19278","Hydantoinase/oxoprolinase C-terminal domain"],["Pfam%3APF05378","Hydantoinase/oxoprolinase N-terminal region"],["Pfam%3APF01968","Hydantoinase/oxoprolinase"],["Pfam%3APF02538","Hydantoinase B/oxoprolinase"]],"b":[["NCBITaxon%3A551760","Aromatoleum aromaticum"],["NCBITaxon%3A76114","Aromatoleum aromaticum EbN1"]]},{"id":"NCBITaxon:953739","l":"Streptomyces venezuelae ATCC 10712","na":5,"nb":2,"a":[["Pfam%3APF11583","P-aminobenzoate N-oxygenase AurF"],["Pfam%3APF18456","Diiron non-heme beta-hydroxylase N-terminal domain"],["Pfam%3APF07931","Chloramphenicol phosphotransferase-like protein"],["Pfam%3APF02650","WhiA C-terminal HTH domain"],["Pfam%3APF14527","WhiA LAGLIDADG-like domain"]],"b":[["NCBITaxon%3A54571","Streptomyces venezuelae"],["NCBITaxon%3A953739","Streptomyces venezuelae ATCC 10712"]]},{"id":"NCBITaxon:1079","l":"Blastochloris viridis","na":4,"nb":2,"a":[["Pfam%3APF00556","Antenna complex alpha/beta subunit"],["Pfam%3APF02276","Photosynthetic reaction centre cytochrome C subunit"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["TED%3AAF-A0A0H5BDG4-F1-model_v4_TED01","TED novel fold AF-A0A0H5BDG4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A50712","Blastochloris sulfoviridis"],["NCBITaxon%3A1079","Blastochloris viridis"]]},{"id":"NCBITaxon:1098","l":"Prosthecochloris vibrioformis","na":4,"nb":2,"a":[["Pfam%3APF17886","HSP20-like domain found in ArsA"],["Pfam%3APF27499","CsmB chlorosome envelope protein"],["Pfam%3APF11098","Chlorosome envelope protein C"],["Pfam%3APF10643","Photosystem P840 reaction-centre cytochrome c-551"]],"b":[["NCBITaxon%3A1098","Prosthecochloris vibrioformis"],["NCBITaxon%3A115853","Prosthecochloris vibrioformis f. thiosulfatophilum"]]},{"id":"NCBITaxon:1115803","l":"Actinomyces naeslundii str. Howell 279","na":4,"nb":2,"a":[["Pfam%3APF18470","Cas9 alpha-helical lobe domain"],["Pfam%3APF17893","CRISPR-associated endonuclease Cas9 beta-hairpin domain"],["Pfam%3APF18525","Cas9 C-terminal domain"],["Pfam%3APF17894","Topo homolgy domain in CRISPR-associated endonuclease Cas9"]],"b":[["NCBITaxon%3A1655","Actinomyces naeslundii"],["NCBITaxon%3A1115803","Actinomyces naeslundii str. Howell 279"]]},{"id":"NCBITaxon:122587","l":"Neisseria meningitidis Z2491","na":4,"nb":2,"a":[["Pfam%3APF17850","CysA C-terminal regulatory domain"],["Pfam%3APF22443","FbpC-like, regulatory domain"],["Pfam%3APF05159","Capsule polysaccharide biosynthesis protein"],["Pfam%3APF10077","Uncharacterized protein conserved in bacteria (DUF2314)"]],"b":[["NCBITaxon%3A487","Neisseria meningitidis"],["NCBITaxon%3A122587","Neisseria meningitidis Z2491"]]},{"id":"NCBITaxon:1249","l":"Weissella paramesenteroides","na":2,"nb":4,"a":[["Pfam%3APF01874","ATP:dephospho-CoA triphosphoribosyl transferase"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"]],"b":[["NCBITaxon%3A1930076","Leuconostoc sp."],["NCBITaxon%3A46256","Weissella hellenica"],["NCBITaxon%3A1249","Weissella paramesenteroides"],["NCBITaxon%3A585506","Weissella paramesenteroides ATCC 33313"]]},{"id":"NCBITaxon:1343","l":"Streptococcus vestibularis","na":2,"nb":4,"a":[["TED%3AAF-A0A448A888-F1-model_v4_TED01","TED novel fold AF-A0A448A888-F1-model_v4_TED01"],["TED%3AAF-A0A564T3Y1-F1-model_v4_TED01","TED novel fold AF-A0A564T3Y1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1304","Streptococcus salivarius"],["NCBITaxon%3A1343","Streptococcus vestibularis"],["NCBITaxon%3A889206","Streptococcus vestibularis ATCC 49124"],["NCBITaxon%3A904306","Streptococcus vestibularis F0396"]]},{"id":"NCBITaxon:1401","l":"Paenibacillus lautus","na":4,"nb":2,"a":[["Pfam%3APF18448","Carbohydrate binding domain"],["Pfam%3APF12891","Glycoside hydrolase family 44"],["TED%3AAF-A0A328VZ83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A328VZ83-F1-model_v4_TED01"],["TED%3AAF-A0A385TU82-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A385TU82-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1401","Paenibacillus lautus"],["NCBITaxon%3A1349780","Paenibacillus lautus NBRC 15380"]]},{"id":"NCBITaxon:1451","l":"Paenibacillus amylolyticus","na":4,"nb":2,"a":[["Pfam%3APF03211","Pectate lyase"],["TED%3AAF-A0A117I1X0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A117I1X0-F1-model_v4_TED01"],["TED%3AAF-A0A1R1DDF3-F1-model_v4_TED01","TED novel fold AF-A0A1R1DDF3-F1-model_v4_TED01"],["TED%3AAF-A0A4V3B7H8-F1-model_v4_TED01","TED novel fold AF-A0A4V3B7H8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1451","Paenibacillus amylolyticus"],["NCBITaxon%3A59846","Paenibacillus chibensis"]]},{"id":"NCBITaxon:164546","l":"Cupriavidus taiwanensis","na":2,"nb":4,"a":[["TED%3AAF-A0A375CFL3-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A375CFL3-F1-model_v4_TED04"],["TED%3AAF-A0A375EJW3-F1-model_v4_TED03","TED novel fold AF-A0A375EJW3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A164546","Cupriavidus taiwanensis"],["NCBITaxon%3A977880","Cupriavidus taiwanensis LMG 19424"],["NCBITaxon%3A1040978","Cupriavidus taiwanensis STM 6018"],["NCBITaxon%3A129578","Oceanimonas baumannii"]]},{"id":"NCBITaxon:183417","l":"Proteus hauseri","na":2,"nb":4,"a":[["Pfam%3APF09225","Restriction endonuclease PvuII"],["PROSITE%3APS00093","N-4 cytosine-specific DNA methylases signature"]],"b":[["NCBITaxon%3A183417","Proteus hauseri"],["NCBITaxon%3A1255589","Proteus hauseri 1M10"],["NCBITaxon%3A1354271","Proteus hauseri ATCC 700826"],["NCBITaxon%3A1312367","Proteus hauseri ZMd44"]]},{"id":"NCBITaxon:187145","l":"Caldithrix abyssi","na":4,"nb":2,"a":[["TED%3AAF-A0A7V4WUZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V4WUZ6-F1-model_v4_TED01"],["TED%3AAF-A0A7V5UE99-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V5UE99-F1-model_v4_TED01"],["TED%3AAF-A0A7V5PPC6-F1-model_v4_TED04","TED novel fold AF-A0A7V5PPC6-F1-model_v4_TED04"],["TED%3AAF-A0A7V5RQL1-F1-model_v4_TED02","TED novel fold AF-A0A7V5RQL1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A187145","Caldithrix abyssi"],["NCBITaxon%3A880073","Caldithrix abyssi DSM 13497"]]},{"id":"NCBITaxon:207559","l":"Oleidesulfovibrio alaskensis G20","na":4,"nb":2,"a":[["Pfam%3APF13353","4Fe-4S single cluster domain"],["Pfam%3APF01228","Glycine radical"],["PROSITE%3APS00850","Glycine radical domain signature"],["PROSITE%3APS01087","Radical activating enzymes signature"]],"b":[["NCBITaxon%3A58180","Oleidesulfovibrio alaskensis"],["NCBITaxon%3A207559","Oleidesulfovibrio alaskensis G20"]]},{"id":"NCBITaxon:2094","l":"Mycoplasmopsis arginini","na":2,"nb":4,"a":[["TED%3AAF-A0A0C6G6F9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0C6G6F9-F1-model_v4_TED01"],["TED%3AAF-A0A449BG36-F1-model_v4_TED02","TED novel fold AF-A0A449BG36-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2094","Mycoplasmopsis arginini"],["NCBITaxon%3A1188236","Mycoplasmopsis arginini 7264"],["NCBITaxon%3A1266999","Mycoplasmopsis arginini ATCC 23838"],["NCBITaxon%3A2899417","Mycoplasmopsis arginini QMP CG1-2758"]]},{"id":"NCBITaxon:2186","l":"Methanothermococcus thermolithotrophicus","na":2,"nb":4,"a":[["Pfam%3APF22616","HMD N-terminal domain"],["Pfam%3APF03201","H2-forming N5,N10-methylene-tetrahydromethanopterin dehydrogenase"]],"b":[["NCBITaxon%3A2186","Methanothermococcus thermolithotrophicus"],["NCBITaxon%3A523845","Methanothermococcus thermolithotrophicus DSM 2095"],["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A316","Stutzerimonas stutzeri"]]},{"id":"NCBITaxon:223926","l":"Vibrio parahaemolyticus RIMD 2210633","na":4,"nb":2,"a":[["Pfam%3APF05232","Chlorhexidine efflux transporter"],["Pfam%3APF12221","Bacterial membrane protein N terminal"],["PROSITE%3APS01307","Flagellar motor protein motA family signature"],["Pfam%3APF10952","Protein of unknown function (DUF2753)"]],"b":[["NCBITaxon%3A670","Vibrio parahaemolyticus"],["NCBITaxon%3A223926","Vibrio parahaemolyticus RIMD 2210633"]]},{"id":"NCBITaxon:226900","l":"Bacillus cereus ATCC 14579","na":4,"nb":2,"a":[["IDPO%3A0000060","self-assembly"],["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF14436","Bacterial EndoU nuclease"],["Pfam%3APF10803","Spore germination GerPB"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A226900","Bacillus cereus ATCC 14579"]]},{"id":"NCBITaxon:252970","l":"Paraburkholderia phenoliruptrix","na":2,"nb":4,"a":[["TED%3AAF-A0A6J5BF93-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6J5BF93-F1-model_v4_TED01"],["TED%3AAF-A0A6J5BWX8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6J5BWX8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A252970","Paraburkholderia phenoliruptrix"],["NCBITaxon%3A1337996","Paraburkholderia phenoliruptrix AC1100"],["NCBITaxon%3A1229205","Paraburkholderia phenoliruptrix BR3459a"],["NCBITaxon%3A1926495","Paraburkholderia sp."]]},{"id":"NCBITaxon:266265","l":"Paraburkholderia xenovorans LB400","na":4,"nb":2,"a":[["Pfam%3APF09290","Prokaryotic acetaldehyde dehydrogenase, dimerisation"],["Pfam%3APF04345","Chorismate lyase"],["Pfam%3APF07836","DmpG-like communication domain"],["Pfam%3APF06139","BphX-like"]],"b":[["NCBITaxon%3A36873","Paraburkholderia xenovorans"],["NCBITaxon%3A266265","Paraburkholderia xenovorans LB400"]]},{"id":"NCBITaxon:269796","l":"Rhodospirillum rubrum ATCC 11170","na":4,"nb":2,"a":[["Pfam%3APF24931","ACR9-like, ACT-like domain"],["Pfam%3APF20543","N2-fixation sustaining protein CowN"],["Pfam%3APF22277","EncFtn-like"],["TED%3AAF-Q2RML2-F1-model_v4_TED01","TED highly-symmetric fold AF-Q2RML2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1085","Rhodospirillum rubrum"],["NCBITaxon%3A269796","Rhodospirillum rubrum ATCC 11170"]]},{"id":"NCBITaxon:272563","l":"Clostridioides difficile 630","na":4,"nb":2,"a":[["Pfam%3APF07737","Anthrax toxin lethal factor, N- and C-terminal domain"],["Pfam%3APF11155","Domain of unknown function (DUF2935)"],["Pfam%3APF06249","Ethanolamine utilisation protein EutQ"],["Pfam%3APF12544","Lysine-2,3-aminomutase"]],"b":[["NCBITaxon%3A1496","Clostridioides difficile"],["NCBITaxon%3A272563","Clostridioides difficile 630"]]},{"id":"NCBITaxon:2748","l":"Carnobacterium divergens","na":2,"nb":4,"a":[["TED%3AAF-A0A7Z8CZ16-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Z8CZ16-F1-model_v4_TED02"],["TED%3AAF-A0A5F0MGI8-F1-model_v4_TED01","TED novel fold AF-A0A5F0MGI8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2748","Carnobacterium divergens"],["NCBITaxon%3A1449336","Carnobacterium divergens DSM 20623"],["NCBITaxon%3A2751","Carnobacterium maltaromaticum"],["NCBITaxon%3A1579","Lactobacillus acidophilus"]]},{"id":"NCBITaxon:28087","l":"Legionella sainthelensi","na":2,"nb":4,"a":[["TED%3AAF-A0A3S4I5M7-F1-model_v4_TED01","TED novel fold AF-A0A3S4I5M7-F1-model_v4_TED01"],["TED%3AAF-A0A447STS7-F1-model_v4_TED04","TED novel fold AF-A0A447STS7-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A28087","Legionella sainthelensi"],["NCBITaxon%3A1408445","Legionella sainthelensi ATCC 35248 = DSM 19231"],["NCBITaxon%3A3413801","Legionella sainthelensi serogroup 1"],["NCBITaxon%3A66962","Legionella sainthelensi serogroup 2"]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":2,"nb":4,"a":[["Pfam%3APF21252","Glycosyl hydrolase 109, C-terminal domain"],["TED%3AAF-A0A3P1YJQ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3P1YJQ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28112","Tannerella forsythia"],["NCBITaxon%3A1307832","Tannerella forsythia 3313"],["NCBITaxon%3A203275","Tannerella forsythia 92A2"],["NCBITaxon%3A1307833","Tannerella forsythia KS16"]]},{"id":"NCBITaxon:28130","l":"Prevotella disiens","na":2,"nb":4,"a":[["TED%3AAF-A0A379E001-F1-model_v4_TED01","TED novel fold AF-A0A379E001-F1-model_v4_TED01"],["TED%3AAF-A0A3E4QAE1-F1-model_v4_TED01","TED novel fold AF-A0A3E4QAE1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28130","Prevotella disiens"],["NCBITaxon%3A1401075","Prevotella disiens DNF00882"],["NCBITaxon%3A866771","Prevotella disiens FB035-09AN"],["NCBITaxon%3A1235811","Prevotella disiens JCM 6334 = ATCC 29426"]]},{"id":"NCBITaxon:28214","l":"Sphingomonas sp.","na":4,"nb":2,"a":[["Pfam%3APF11723","Homotrimeric ring hydroxylase"],["Pfam%3APF07364","Metallopeptidase family M81"],["TED%3AAF-A0A525HJK0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A525HJK0-F1-model_v4_TED02"],["TED%3AAF-A0A520ITV0-F1-model_v4_TED02","TED novel fold AF-A0A520ITV0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A28214","Sphingomonas sp."],["NCBITaxon%3A1888892","Sphingomonas turrisvirgatae"]]},{"id":"NCBITaxon:290398","l":"Chromohalobacter israelensis DSM 3043","na":4,"nb":2,"a":[["Pfam%3APF20629","D-galactarate/Altronate dehydratase, C-terminal"],["Pfam%3APF04295","D-galactarate dehydratase/Altronate hydrolase, second domain"],["Pfam%3APF11982","Domain of unknown function (DUF3483)"],["PROSITE%3APS00908","Mandelate racemase / muconate lactonizing enzyme family signature 1"]],"b":[["NCBITaxon%3A141390","Chromohalobacter israelensis"],["NCBITaxon%3A290398","Chromohalobacter israelensis DSM 3043"]]},{"id":"NCBITaxon:29491","l":"Aeromonas salmonicida subsp. salmonicida","na":2,"nb":4,"a":[["TED%3AAF-A0A189PGR3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A189PGR3-F1-model_v4_TED01"],["TED%3AAF-A0A0F6QDS7-F1-model_v4_TED02","TED novel fold AF-A0A0F6QDS7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A645","Aeromonas salmonicida"],["NCBITaxon%3A29491","Aeromonas salmonicida subsp. salmonicida"],["NCBITaxon%3A1076135","Aeromonas salmonicida subsp. salmonicida 01-B526"],["NCBITaxon%3A382245","Aeromonas salmonicida subsp. salmonicida A449"]]},{"id":"NCBITaxon:326423","l":"Bacillus velezensis FZB42","na":4,"nb":2,"a":[["Pfam%3APF21607","[Acyl-carrier-protein] S-malonyltransferase, inserted helical domain"],["Pfam%3APF21996","Histidyl-tRNA synthetase HisZ, C-terminal domain"],["Pfam%3APF07293","Protein of unknown function (DUF1450)"],["Pfam%3APF12227","Protein of unknown function (DUF3603)"]],"b":[["NCBITaxon%3A492670","Bacillus velezensis"],["NCBITaxon%3A326423","Bacillus velezensis FZB42"]]},{"id":"NCBITaxon:33025","l":"Phascolarctobacterium faecium","na":2,"nb":4,"a":[["TED%3AAF-A0A7X2XEV4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X2XEV4-F1-model_v4_TED01"],["TED%3AAF-A0A7X2XFG3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7X2XFG3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A33025","Phascolarctobacterium faecium"],["NCBITaxon%3A1357408","Phascolarctobacterium faecium 4_1_13G"],["NCBITaxon%3A1122957","Phascolarctobacterium faecium DSM 14760"],["NCBITaxon%3A1357409","Phascolarctobacterium faecium UC1_BHI_D"]]},{"id":"NCBITaxon:334542","l":"Rhodococcus qingshengii","na":2,"nb":4,"a":[["Pfam%3APF08028","Acyl-CoA dehydrogenase, C-terminal domain"],["TED%3AAF-A0A069J8A7-F1-model_v4_TED01","TED novel fold AF-A0A069J8A7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1833","Rhodococcus erythropolis"],["NCBITaxon%3A334542","Rhodococcus qingshengii"],["NCBITaxon%3A1278077","Rhodococcus qingshengii BKS 20-40"],["NCBITaxon%3A1303681","Rhodococcus qingshengii JCM 15477"]]},{"id":"NCBITaxon:342451","l":"Staphylococcus saprophyticus subsp. saprophyticus ATCC 15305 = NCTC 7292","na":4,"nb":2,"a":[["Pfam%3APF18719","ArlS sensor domain"],["Pfam%3APF08406","CbbQ/NirQ/NorQ C-terminal"],["Pfam%3APF06103","Bacterial protein of unknown function (DUF948)"],["Pfam%3APF04313","Type I restriction enzyme R protein N terminus (HSDR_N)"]],"b":[["NCBITaxon%3A29385","Staphylococcus saprophyticus"],["NCBITaxon%3A342451","Staphylococcus saprophyticus subsp. saprophyticus ATCC 15305 = NCTC 7292"]]},{"id":"NCBITaxon:349307","l":"Methanothrix thermoacetophila PT","na":4,"nb":2,"a":[["Pfam%3APF06973","Domain of unknown function (DUF1297)"],["Pfam%3APF07826","IMP cyclohydrolase-like protein"],["Pfam%3APF06849","Protein of unknown function (DUF1246)"],["Pfam%3APF08714","Formaldehyde-activating enzyme (Fae)"]],"b":[["NCBITaxon%3A2224","Methanothrix thermoacetophila"],["NCBITaxon%3A349307","Methanothrix thermoacetophila PT"]]},{"id":"NCBITaxon:351160","l":"Methanocella arvoryzae MRE50","na":4,"nb":2,"a":[["Pfam%3APF11842","Domain of unknown function (DUF3362)"],["Pfam%3APF04475","Protein of unknown function (DUF555)"],["Pfam%3APF08714","Formaldehyde-activating enzyme (Fae)"],["TED%3AAF-Q0W3F7-F1-model_v4_TED01","TED highly-symmetric fold AF-Q0W3F7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1175445","Methanocella arvoryzae"],["NCBITaxon%3A351160","Methanocella arvoryzae MRE50"]]},{"id":"NCBITaxon:386043","l":"Listeria welshimeri serovar 6b str. SLCC5334","na":4,"nb":2,"a":[["Pfam%3APF27467","ATP-dependent helicase/deoxyribonuclease AddB fifth domain"],["Pfam%3APF06569","Protein of unknown function (DUF1128)"],["Pfam%3APF05636","HIGH Nucleotidyl Transferase"],["Pfam%3APF01430","Hsp33 protein"]],"b":[["NCBITaxon%3A1643","Listeria welshimeri"],["NCBITaxon%3A386043","Listeria welshimeri serovar 6b str. SLCC5334"]]},{"id":"NCBITaxon:398","l":"Martinezella tropici","na":2,"nb":4,"a":[["Pfam%3APF26956","ACR family N-terminal ACT domain"],["TED%3AAF-A0A329Y2T7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A329Y2T7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29450","Martinezella leucaenae"],["NCBITaxon%3A398","Martinezella tropici"],["NCBITaxon%3A1041147","Rhizobium leucaenae USDA 9039"],["NCBITaxon%3A698761","Rhizobium tropici CIAT 899"]]},{"id":"NCBITaxon:398512","l":"Pseudobacteroides cellulosolvens ATCC 35603 = DSM 2933","na":4,"nb":2,"a":[["TED%3AAF-A0A0L6JH99-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0L6JH99-F1-model_v4_TED01"],["TED%3AAF-A0A0L6JIG6-F1-model_v4_TED01","TED novel fold AF-A0A0L6JIG6-F1-model_v4_TED01"],["TED%3AAF-A0A0L6JK72-F1-model_v4_TED01","TED novel fold AF-A0A0L6JK72-F1-model_v4_TED01"],["TED%3AAF-A0A0L6JU00-F1-model_v4_TED01","TED novel fold AF-A0A0L6JU00-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A35825","Pseudobacteroides cellulosolvens"],["NCBITaxon%3A398512","Pseudobacteroides cellulosolvens ATCC 35603 = DSM 2933"]]},{"id":"NCBITaxon:400946","l":"Wohlfahrtiimonas chitiniclastica","na":2,"nb":4,"a":[["TED%3AAF-A0A256BUL6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A256BUL6-F1-model_v4_TED01"],["TED%3AAF-A0A256BUL6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A256BUL6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A472","Acinetobacter sp."],["NCBITaxon%3A400946","Wohlfahrtiimonas chitiniclastica"],["NCBITaxon%3A1123502","Wohlfahrtiimonas chitiniclastica DSM 18708"],["NCBITaxon%3A1261130","Wohlfahrtiimonas chitiniclastica SH04"]]},{"id":"NCBITaxon:406327","l":"Methanococcus vannielii SB","na":4,"nb":2,"a":[["Pfam%3APF06787","FeGP cofactor biosynthesis protein HcgF"],["Pfam%3APF04476","4-HFC-P synthase"],["Pfam%3APF27030","AbpE bacteria"],["Pfam%3APF09840","Uncharacterized protein conserved in archaea (DUF2067)"]],"b":[["NCBITaxon%3A2187","Methanococcus vannielii"],["NCBITaxon%3A406327","Methanococcus vannielii SB"]]},{"id":"NCBITaxon:410358","l":"Methanocorpusculum labreanum Z","na":4,"nb":2,"a":[["Pfam%3APF27030","AbpE bacteria"],["Pfam%3APF01864","CDP-archaeol synthase"],["Pfam%3APF01891","Cobalt uptake substrate-specific transmembrane region"],["TED%3AAF-A2SPH3-F1-model_v4_TED02","TED highly-symmetric fold AF-A2SPH3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A83984","Methanocorpusculum labreanum"],["NCBITaxon%3A410358","Methanocorpusculum labreanum Z"]]},{"id":"NCBITaxon:418127","l":"Staphylococcus aureus subsp. aureus Mu3","na":4,"nb":2,"a":[["Pfam%3APF07564","Domain of Unknown Function (DUF1542)"],["Pfam%3APF01468","GA module"],["Pfam%3APF04647","Accessory gene regulator B"],["Pfam%3APF11858","Domain of unknown function (DUF3378)"]],"b":[["NCBITaxon%3A1280","Staphylococcus aureus"],["NCBITaxon%3A418127","Staphylococcus aureus subsp. aureus Mu3"]]},{"id":"NCBITaxon:43","l":"Cystobacter fuscus","na":4,"nb":2,"a":[["TED%3AAF-A0A250J1A4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J1A4-F1-model_v4_TED01"],["TED%3AAF-A0A250J4G5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J4G5-F1-model_v4_TED01"],["TED%3AAF-A0A250J8W0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250J8W0-F1-model_v4_TED01"],["TED%3AAF-A0A250J3K5-F1-model_v4_TED03","TED novel fold AF-A0A250J3K5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A43","Cystobacter fuscus"],["NCBITaxon%3A1242864","Cystobacter fuscus DSM 2262"]]},{"id":"NCBITaxon:435591","l":"Parabacteroides distasonis ATCC 8503","na":4,"nb":2,"a":[["Pfam%3APF21489","Fimbrium tip subunit Fim1C-like, C-terminal domain"],["Pfam%3APF22449","Fim1F, C-terminal domain"],["Pfam%3APF14229","Domain of unknown function (DUF4332)"],["Pfam%3APF10091","Putative glucoamylase"]],"b":[["NCBITaxon%3A823","Parabacteroides distasonis"],["NCBITaxon%3A435591","Parabacteroides distasonis ATCC 8503"]]},{"id":"NCBITaxon:438753","l":"Azorhizobium caulinodans ORS 571","na":4,"nb":2,"a":[["Pfam%3APF27389","AZC_3924"],["Pfam%3APF09663","Amidohydrolase ring-opening protein (Amido_AtzD_TrzD)"],["PROSITE%3APS01349","Nodulation protein nodA signature"],["PROSITE%3APS00647","Thymidine and pyrimidine-nucleoside phosphorylases signature"]],"b":[["NCBITaxon%3A7","Azorhizobium caulinodans"],["NCBITaxon%3A438753","Azorhizobium caulinodans ORS 571"]]},{"id":"NCBITaxon:439375","l":"Brucella anthropi ATCC 49188","na":4,"nb":2,"a":[["Pfam%3APF25839","D-apionate lactonase, C-terminal immunoglobulin-like domain"],["Pfam%3APF25838","D-apionate lactonase, TIM barrel domain"],["Pfam%3APF25837","D-apionate lactonase, N-terminal domain"],["Pfam%3APF10073","GapR-like, DNA-binding domain"]],"b":[["NCBITaxon%3A529","Brucella anthropi"],["NCBITaxon%3A439375","Brucella anthropi ATCC 49188"]]},{"id":"NCBITaxon:452863","l":"Pseudarthrobacter chlorophenolicus A6","na":4,"nb":2,"a":[["TED%3AAF-B8HI43-F1-model_v4_TED02","TED highly-symmetric fold AF-B8HI43-F1-model_v4_TED02"],["TED%3AAF-B8HIA6-F1-model_v4_TED01","TED highly-symmetric fold AF-B8HIA6-F1-model_v4_TED01"],["TED%3AAF-B8HIQ6-F1-model_v4_TED02","TED highly-symmetric fold AF-B8HIQ6-F1-model_v4_TED02"],["TED%3AAF-B8HHK3-F1-model_v4_TED01","TED novel fold AF-B8HHK3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A85085","Pseudarthrobacter chlorophenolicus"],["NCBITaxon%3A452863","Pseudarthrobacter chlorophenolicus A6"]]},{"id":"NCBITaxon:476","l":"Moraxella bovis","na":2,"nb":4,"a":[["Pfam%3APF04556","DpnII restriction endonuclease"],["TED%3AAF-A0A1S9ZVN5-F1-model_v4_TED01","TED novel fold AF-A0A1S9ZVN5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A476","Moraxella bovis"],["NCBITaxon%3A387425","Moraxella bovis Epp63"],["NCBITaxon%3A386891","Moraxella bovoculi"],["NCBITaxon%3A60442","Moraxella equi"]]},{"id":"NCBITaxon:485913","l":"Ktedonobacter racemifer DSM 44963","na":4,"nb":2,"a":[["TED%3AAF-D6U145-F1-model_v4_TED01","TED highly-symmetric fold AF-D6U145-F1-model_v4_TED01"],["TED%3AAF-D6U380-F1-model_v4_TED01","TED highly-symmetric fold AF-D6U380-F1-model_v4_TED01"],["TED%3AAF-D6TNQ7-F1-model_v4_TED02","TED novel fold AF-D6TNQ7-F1-model_v4_TED02"],["TED%3AAF-D6U8N4-F1-model_v4_TED02","TED novel fold AF-D6U8N4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A363277","Ktedonobacter racemifer"],["NCBITaxon%3A485913","Ktedonobacter racemifer DSM 44963"]]},{"id":"NCBITaxon:485917","l":"Pedobacter heparinus DSM 2366","na":4,"nb":2,"a":[["Pfam%3APF07940","Heparinase II/III-like, C-terminal"],["Pfam%3APF18675","Heparinase II C-terminal domain"],["Pfam%3APF14592","Chondroitinase B"],["Pfam%3APF16889","Heparinase II/III N-terminus"]],"b":[["NCBITaxon%3A984","Pedobacter heparinus"],["NCBITaxon%3A485917","Pedobacter heparinus DSM 2366"]]},{"id":"NCBITaxon:499177","l":"Acetoanaerobium sticklandii DSM 519","na":4,"nb":2,"a":[["Pfam%3APF26370","L-erythro-3,5-diaminohexanoate dehydrogenase N-terminal domain"],["Pfam%3APF09338","Glycine/sarcosine/betaine reductase component B subunits"],["Pfam%3APF04723","Glycine reductase complex selenoprotein A"],["TED%3AAF-E3PW30-F1-model_v4_TED02","TED highly-symmetric fold AF-E3PW30-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1511","Acetoanaerobium sticklandii"],["NCBITaxon%3A499177","Acetoanaerobium sticklandii DSM 519"]]},{"id":"NCBITaxon:5059","l":"Aspergillus flavus","na":4,"nb":2,"a":[["Pfam%3APF11720","Peptidase inhibitor I78 family"],["Pfam%3APF12296","Hydrophobic surface binding protein A"],["TED%3AAF-A0A3M7JGA1-F1-model_v4_TED02","TED novel fold AF-A0A3M7JGA1-F1-model_v4_TED02"],["TED%3AAF-A0A7G5JNS3-F1-model_v4_TED03","TED novel fold AF-A0A7G5JNS3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A5059","Aspergillus flavus"],["NCBITaxon%3A332952","Aspergillus flavus NRRL3357"]]},{"id":"NCBITaxon:523848","l":"Saccharolobus shibatae B12","na":4,"nb":2,"a":[["IDPO%3A0000003","molten globule"],["Pfam%3APF02294","7kD DNA-binding domain"],["Pfam%3APF21133","CCA-adding enzyme, C-terminal domain"],["Pfam%3APF11520","Chromatin protein Cren7"]],"b":[["NCBITaxon%3A2286","Saccharolobus shibatae"],["NCBITaxon%3A523848","Saccharolobus shibatae B12"]]},{"id":"NCBITaxon:5671","l":"Leishmania infantum","na":4,"nb":2,"a":[["Pfam%3APF03037","Kinetoplastid membrane protein 11"],["TED%3AAF-A0A6L0XLP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L0XLP7-F1-model_v4_TED01"],["TED%3AAF-A4HWI8-F1-model_v4_TED01","TED novel fold AF-A4HWI8-F1-model_v4_TED01"],["TED%3AAF-A4HWZ8-F1-model_v4_TED01","TED novel fold AF-A4HWZ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5671","Leishmania infantum"],["NCBITaxon%3A435258","Leishmania infantum JPCM5"]]},{"id":"NCBITaxon:5741","l":"Giardia duodenalis","na":4,"nb":2,"a":[["Pfam%3APF22293","Annexin E1, fourth repeat"],["Pfam%3APF17529","Family of unknown function (DUF5450)"],["TED%3AAF-V6TFM4-F1-model_v4_TED01","TED novel fold AF-V6TFM4-F1-model_v4_TED01"],["TED%3AAF-V6TNW5-F1-model_v4_TED02","TED novel fold AF-V6TNW5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A5741","Giardia duodenalis"],["NCBITaxon%3A598745","Giardia duodenalis ATCC 50581"]]},{"id":"NCBITaxon:577","l":"Klebsiella terrigena","na":2,"nb":4,"a":[["TED%3AAF-A0A485AWY7-F1-model_v4_TED01","TED novel fold AF-A0A485AWY7-F1-model_v4_TED01"],["TED%3AAF-A0A4U9DC68-F1-model_v4_TED02","TED novel fold AF-A0A4U9DC68-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A577","Klebsiella terrigena"],["NCBITaxon%3A1354274","Klebsiella terrigena ATCC 33257"],["NCBITaxon%3A1255696","Klebsiella terrigena Pi19"]]},{"id":"NCBITaxon:5802","l":"Eimeria tenella","na":4,"nb":2,"a":[["TED%3AAF-U6KRF5-F1-model_v4_TED01","TED highly-symmetric fold AF-U6KRF5-F1-model_v4_TED01"],["TED%3AAF-H9BA61-F1-model_v4_TED01","TED novel fold AF-H9BA61-F1-model_v4_TED01"],["TED%3AAF-H9BA71-F1-model_v4_TED01","TED novel fold AF-H9BA71-F1-model_v4_TED01"],["TED%3AAF-U6KGN9-F1-model_v4_TED03","TED novel fold AF-U6KGN9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A5802","Eimeria tenella"],["NCBITaxon%3A413949","Eimeria tenella strain Houghton"]]},{"id":"NCBITaxon:58291","l":"Rhizopus microsporus","na":2,"nb":4,"a":[["TED%3AAF-A0A1X0RNA5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1X0RNA5-F1-model_v4_TED03"],["TED%3AAF-A0A1X0S5N4-F1-model_v4_TED01","TED novel fold AF-A0A1X0S5N4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A58291","Rhizopus microsporus"],["NCBITaxon%3A4843","Rhizopus microsporus var. chinensis"],["NCBITaxon%3A86635","Rhizopus microsporus var. microsporus"],["NCBITaxon%3A4847","Rhizopus microsporus var. oligosporus"]]},{"id":"NCBITaxon:5850","l":"Plasmodium knowlesi","na":4,"nb":2,"a":[["Pfam%3APF12361","Duffy-antigen binding protein"],["Pfam%3APF05424","Duffy binding domain"],["Pfam%3APF12377","Duffy binding protein N terminal"],["Pfam%3APF11556","Erythrocyte binding antigen 175"]],"b":[["NCBITaxon%3A5850","Plasmodium knowlesi"],["NCBITaxon%3A5851","Plasmodium knowlesi strain H"]]},{"id":"NCBITaxon:61646","l":"Lelliottia amnigena","na":2,"nb":4,"a":[["Pfam%3APF17425","Arylsulfotransferase Ig-like domain"],["Pfam%3APF05935","Arylsulfotransferase (ASST)"]],"b":[["NCBITaxon%3A61646","Lelliottia amnigena"],["NCBITaxon%3A1439331","Lelliottia amnigena CHS 78"],["NCBITaxon%3A1255644","Lelliottia amnigena CV9"],["NCBITaxon%3A1219085","Lelliottia amnigena NBRC 105700"]]},{"id":"NCBITaxon:66219","l":"Lachnoclostridium phytofermentans","na":2,"nb":4,"a":[["TED%3AAF-A0A3D2X3U8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D2X3U8-F1-model_v4_TED01"],["TED%3AAF-A0A3D2X6Y1-F1-model_v4_TED04","TED novel fold AF-A0A3D2X6Y1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A66219","Lachnoclostridium phytofermentans"],["NCBITaxon%3A357809","Lachnoclostridium phytofermentans ISDg"],["NCBITaxon%3A1458471","Lachnoclostridium phytofermentans KNHs212"],["NCBITaxon%3A1458468","Lachnoclostridium phytofermentans KNHs2132"]]},{"id":"NCBITaxon:702114","l":"Methylomonas koyamae","na":4,"nb":2,"a":[["TED%3AAF-A0A291IJ28-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A291IJ28-F1-model_v4_TED01"],["TED%3AAF-A0A177N3K8-F1-model_v4_TED02","TED novel fold AF-A0A177N3K8-F1-model_v4_TED02"],["TED%3AAF-A0A177N3P2-F1-model_v4_TED04","TED novel fold AF-A0A177N3P2-F1-model_v4_TED04"],["TED%3AAF-A0A177NN90-F1-model_v4_TED01","TED novel fold AF-A0A177NN90-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A702114","Methylomonas koyamae"],["NCBITaxon%3A1294261","Methylomonas koyamae JCM 16701"]]},{"id":"NCBITaxon:80876","l":"Insolitispirillum peregrinum","na":2,"nb":4,"a":[["TED%3AAF-A0A1N7NQ08-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1N7NQ08-F1-model_v4_TED01"],["TED%3AAF-A0A1N7PDB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1N7PDB9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A80876","Insolitispirillum peregrinum"],["NCBITaxon%3A180200","Insolitispirillum peregrinum subsp. integrum"],["NCBITaxon%3A1122127","Insolitispirillum peregrinum subsp. integrum DSM 11589"],["NCBITaxon%3A180201","Insolitispirillum peregrinum subsp. peregrinum"]]},{"id":"NCBITaxon:971","l":"Pseudoselenomonas ruminantium","na":2,"nb":4,"a":[["TED%3AAF-A0A1H0QI16-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H0QI16-F1-model_v4_TED02"],["TED%3AAF-A0A1I6XHL5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I6XHL5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A971","Pseudoselenomonas ruminantium"],["NCBITaxon%3A1392501","Selenomonas ruminantium AC2024"],["NCBITaxon%3A114196","Selenomonas ruminantium subsp. ruminantium"],["NCBITaxon%3A1280706","Selenomonas ruminantium subsp. ruminantium ATCC 12561"]]},{"id":"NCBITaxon:1003195","l":"Streptantibioticus cattleyicolor NRRL 8057 = DSM 46488","na":3,"nb":2,"a":[["Pfam%3APF23169","Halogenase D"],["Pfam%3APF02655","ATP-grasp domain"],["Pfam%3APF14518","Iron-containing redox enzyme"]],"b":[["NCBITaxon%3A29303","Streptantibioticus cattleyicolor"],["NCBITaxon%3A1003195","Streptantibioticus cattleyicolor NRRL 8057 = DSM 46488"]]},{"id":"NCBITaxon:1019","l":"Capnocytophaga sputigena","na":2,"nb":3,"a":[["TED%3AAF-A0A3S4WAY3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S4WAY3-F1-model_v4_TED01"],["TED%3AAF-A0A2A3N675-F1-model_v4_TED02","TED novel fold AF-A0A2A3N675-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1019","Capnocytophaga sputigena"],["NCBITaxon%3A553177","Capnocytophaga sputigena ATCC 33612"],["NCBITaxon%3A1073354","Capnocytophaga sputigena CC21_001D"]]},{"id":"NCBITaxon:1069201","l":"Aspergillus luchuensis","na":2,"nb":3,"a":[["PROSITE%3APS00820","Glucoamylase active site region signature"],["TED%3AAF-A0A7R7WRP2-F1-model_v4_TED01","TED novel fold AF-A0A7R7WRP2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1069201","Aspergillus luchuensis"],["NCBITaxon%3A1137211","Aspergillus luchuensis CBS 106.47"],["NCBITaxon%3A1033177","Aspergillus luchuensis IFO 4308"]]},{"id":"NCBITaxon:1078020","l":"Mycolicibacterium thermoresistibile ATCC 19527","na":3,"nb":2,"a":[["Pfam%3APF12867","DinB superfamily"],["TED%3AAF-G7CBF7-F1-model_v4_TED02","TED novel fold AF-G7CBF7-F1-model_v4_TED02"],["TED%3AAF-G7CLC7-F1-model_v4_TED01","TED novel fold AF-G7CLC7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797","Mycolicibacterium thermoresistibile"],["NCBITaxon%3A1078020","Mycolicibacterium thermoresistibile ATCC 19527"]]},{"id":"NCBITaxon:1090322","l":"Methanolobus tindarius DSM 2278","na":3,"nb":2,"a":[["TED%3AAF-W9DQM0-F1-model_v4_TED03","TED highly-symmetric fold AF-W9DQM0-F1-model_v4_TED03"],["TED%3AAF-W9DMY0-F1-model_v4_TED01","TED novel fold AF-W9DMY0-F1-model_v4_TED01"],["TED%3AAF-W9DNB8-F1-model_v4_TED01","TED novel fold AF-W9DNB8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2221","Methanolobus tindarius"],["NCBITaxon%3A1090322","Methanolobus tindarius DSM 2278"]]},{"id":"NCBITaxon:1121335","l":"Thermoclostridium stercorarium subsp. stercorarium DSM 8532","na":2,"nb":3,"a":[["Pfam%3APF03442","Carbohydrate binding domain X2"],["TED%3AAF-L7VJJ5-F1-model_v4_TED02","TED highly-symmetric fold AF-L7VJJ5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1510","Thermoclostridium stercorarium"],["NCBITaxon%3A160845","Thermoclostridium stercorarium subsp. stercorarium"],["NCBITaxon%3A1121335","Thermoclostridium stercorarium subsp. stercorarium DSM 8532"]]},{"id":"NCBITaxon:1122961","l":"Picrophilus oshimae DSM 9789","na":3,"nb":2,"a":[["Pfam%3APF22578","Geranylgeranyl reductase catalytic domain"],["Pfam%3APF04038","Dihydroneopterin aldolase"],["Pfam%3APF16912","Glucose dehydrogenase C-terminus"]],"b":[["NCBITaxon%3A46632","Picrophilus oshimae"],["NCBITaxon%3A1122961","Picrophilus oshimae DSM 9789"]]},{"id":"NCBITaxon:1125972","l":"Amycolatopsis alba DSM 44262","na":3,"nb":2,"a":[["TED%3AAF-A0A229R958-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A229R958-F1-model_v4_TED01"],["TED%3AAF-A0A229REG9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A229REG9-F1-model_v4_TED01"],["TED%3AAF-A0A229RFD1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A229RFD1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A76020","Amycolatopsis alba"],["NCBITaxon%3A1125972","Amycolatopsis alba DSM 44262"]]},{"id":"NCBITaxon:114","l":"Gemmata obscuriglobus","na":3,"nb":2,"a":[["TED%3AAF-A0A2Z3H719-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z3H719-F1-model_v4_TED01"],["TED%3AAF-A0A2Z3H7W0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z3H7W0-F1-model_v4_TED01"],["TED%3AAF-A0A2Z3GTM0-F1-model_v4_TED04","TED novel fold AF-A0A2Z3GTM0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A114","Gemmata obscuriglobus"],["NCBITaxon%3A214688","Gemmata obscuriglobus UQM 2246"]]},{"id":"NCBITaxon:1166950","l":"Candidatus Thiodictyon syntrophicum","na":3,"nb":2,"a":[["TED%3AAF-A0A2K8UAD6-F1-model_v4_TED03","TED novel fold AF-A0A2K8UAD6-F1-model_v4_TED03"],["TED%3AAF-A0A2K8UBL3-F1-model_v4_TED02","TED novel fold AF-A0A2K8UBL3-F1-model_v4_TED02"],["TED%3AAF-A0A2K8UHY2-F1-model_v4_TED01","TED novel fold AF-A0A2K8UHY2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1166950","Candidatus Thiodictyon syntrophicum"],["NCBITaxon%3A572262","Candidatus Thiodictyon syntrophicum str. Cad16"]]},{"id":"NCBITaxon:1192034","l":"Chondromyces apiculatus DSM 436","na":3,"nb":2,"a":[["TED%3AAF-A0A017T755-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A017T755-F1-model_v4_TED01"],["TED%3AAF-A0A017SVV4-F1-model_v4_TED01","TED novel fold AF-A0A017SVV4-F1-model_v4_TED01"],["TED%3AAF-A0A017T5R3-F1-model_v4_TED03","TED novel fold AF-A0A017T5R3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A51","Chondromyces apiculatus"],["NCBITaxon%3A1192034","Chondromyces apiculatus DSM 436"]]},{"id":"NCBITaxon:1203610","l":"Parabacteroides gordonii MS-1 = DSM 23371","na":3,"nb":2,"a":[["TED%3AAF-A0A0F5JCJ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F5JCJ0-F1-model_v4_TED01"],["TED%3AAF-A0A0F5JIU1-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A0F5JIU1-F1-model_v4_TED05"],["TED%3AAF-A0A0F5JIU1-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A0F5JIU1-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A574930","Parabacteroides gordonii"],["NCBITaxon%3A1203610","Parabacteroides gordonii MS-1 = DSM 23371"]]},{"id":"NCBITaxon:1219077","l":"Vibrio azureus NBRC 104587","na":3,"nb":2,"a":[["TED%3AAF-U3ANH8-F1-model_v4_TED01","TED highly-symmetric fold AF-U3ANH8-F1-model_v4_TED01"],["TED%3AAF-U3CG72-F1-model_v4_TED04","TED highly-symmetric fold AF-U3CG72-F1-model_v4_TED04"],["TED%3AAF-U3AN91-F1-model_v4_TED01","TED novel fold AF-U3AN91-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A512649","Vibrio azureus"],["NCBITaxon%3A1219077","Vibrio azureus NBRC 104587"]]},{"id":"NCBITaxon:1265738","l":"Rhodopirellula maiorica SM1","na":2,"nb":3,"a":[["TED%3AAF-M5RME8-F1-model_v4_TED01","TED novel fold AF-M5RME8-F1-model_v4_TED01"],["TED%3AAF-M5RML1-F1-model_v4_TED01","TED novel fold AF-M5RML1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1265734","Novipirellula maiorica"],["NCBITaxon%3A1265738","Rhodopirellula maiorica SM1"],["NCBITaxon%3A2024855","Rhodopirellula sp."]]},{"id":"NCBITaxon:129394","l":"Xanthomonas oryzae pv. oryzicola","na":2,"nb":3,"a":[["Pfam%3APF27358","Type III secretion system regulatory protein HrpD6"],["TED%3AAF-A0A5C2EW55-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C2EW55-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A129394","Xanthomonas oryzae pv. oryzicola"],["NCBITaxon%3A383407","Xanthomonas oryzae pv. oryzicola BLS256"],["NCBITaxon%3A1423890","Xanthomonas oryzae pv. oryzicola MAI10"]]},{"id":"NCBITaxon:1295","l":"Staphylococcus schleiferi","na":2,"nb":3,"a":[["Pfam%3APF18153","Cap15, cyclic dinucleotide receptor domain"],["Pfam%3APF26305","cGAS/DncV-like nucleotidyltransferase C-terminal helical domain"]],"b":[["NCBITaxon%3A74706","Staphylococcus coagulans"],["NCBITaxon%3A1295","Staphylococcus schleiferi"],["NCBITaxon%3A74707","Staphylococcus schleiferi subsp. schleiferi"]]},{"id":"NCBITaxon:134537","l":"Paraburkholderia fungorum","na":2,"nb":3,"a":[["TED%3AAF-A0A1H1IH55-F1-model_v4_TED01","TED novel fold AF-A0A1H1IH55-F1-model_v4_TED01"],["TED%3AAF-A0A2N8QLD6-F1-model_v4_TED03","TED novel fold AF-A0A2N8QLD6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A36773","Burkholderia sp."],["NCBITaxon%3A134537","Paraburkholderia fungorum"],["NCBITaxon%3A1218077","Paraburkholderia fungorum NBRC 102489"]]},{"id":"NCBITaxon:135735","l":"Priestia endophytica","na":2,"nb":3,"a":[["TED%3AAF-A0A3N6AMS3-F1-model_v4_TED04","TED novel fold AF-A0A3N6AMS3-F1-model_v4_TED04"],["TED%3AAF-A0A6I0BVE8-F1-model_v4_TED01","TED novel fold AF-A0A6I0BVE8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A135735","Priestia endophytica"],["NCBITaxon%3A1196029","Priestia endophytica 2102"],["NCBITaxon%3A1121089","Priestia endophytica DSM 13796"]]},{"id":"NCBITaxon:1406225","l":"Archangium violaceum Cb vi76","na":3,"nb":2,"a":[["TED%3AAF-A0A084STC5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A084STC5-F1-model_v4_TED01"],["TED%3AAF-A0A084SQF5-F1-model_v4_TED01","TED novel fold AF-A0A084SQF5-F1-model_v4_TED01"],["TED%3AAF-A0A084SQH8-F1-model_v4_TED01","TED novel fold AF-A0A084SQH8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A83451","Archangium violaceum"],["NCBITaxon%3A1406225","Archangium violaceum Cb vi76"]]},{"id":"NCBITaxon:145262","l":"Methanothermobacter thermautotrophicus","na":2,"nb":3,"a":[["Pfam%3APF12686","Protein of unknown function (DUF3800)"],["PROSITE%3APS00093","N-4 cytosine-specific DNA methylases signature"]],"b":[["NCBITaxon%3A145262","Methanothermobacter thermautotrophicus"],["NCBITaxon%3A187420","Methanothermobacter thermautotrophicus str. Delta H"],["NCBITaxon%3A79930","Methanothermobacter thermautotrophicus str. Winter"]]},{"id":"NCBITaxon:149386","l":"Salmonella enterica subsp. enterica serovar Chester","na":3,"nb":2,"a":[["TED%3AAF-A0A3Z4X662-F1-model_v4_TED02","TED novel fold AF-A0A3Z4X662-F1-model_v4_TED02"],["TED%3AAF-A0A635R8B2-F1-model_v4_TED01","TED novel fold AF-A0A635R8B2-F1-model_v4_TED01"],["TED%3AAF-A0A635RC84-F1-model_v4_TED01","TED novel fold AF-A0A635RC84-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A149386","Salmonella enterica subsp. enterica serovar Chester"],["NCBITaxon%3A941190","Salmonella enterica subsp. enterica serovar Chester str. ATCC 11997"]]},{"id":"NCBITaxon:158500","l":"Novosphingobium resinovorum","na":2,"nb":3,"a":[["TED%3AAF-A0A031JQ90-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A031JQ90-F1-model_v4_TED01"],["TED%3AAF-A0A031JQV5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A031JQV5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1495645","Xanthomarina arctica"],["NCBITaxon%3A158500","Novosphingobium resinovorum"],["NCBITaxon%3A284035","Streptomyces lienomycini"]]},{"id":"NCBITaxon:168927","l":"Escherichia coli O111:H-","na":3,"nb":2,"a":[["Pfam%3APF05307","Bundlin"],["Pfam%3APF26918","Intimin, immunoglobulin-like domain"],["Pfam%3APF07979","Intimin C-type lectin domain"]],"b":[["NCBITaxon%3A168927","Escherichia coli O111:H-"],["NCBITaxon%3A585396","Escherichia coli O111:H- str. 11128"]]},{"id":"NCBITaxon:1708","l":"Cellulomonas fimi","na":3,"nb":2,"a":[["Pfam%3APF00553","Cellulose binding domain"],["PROSITE%3APS00561","CBM2a (carbohydrate-binding type-2) domain signature"],["PROSITE%3APS00591","Glycosyl hydrolases family 10 (GH10) active site"]],"b":[["NCBITaxon%3A1708","Cellulomonas fimi"],["NCBITaxon%3A590998","Cellulomonas fimi ATCC 484"]]},{"id":"NCBITaxon:1736552","l":"Paenibacillus sp. Root52","na":3,"nb":2,"a":[["TED%3AAF-A0A0Q7SKA9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0Q7SKA9-F1-model_v4_TED03"],["TED%3AAF-A0A0Q7T2A7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q7T2A7-F1-model_v4_TED01"],["TED%3AAF-A0A0Q7STD2-F1-model_v4_TED01","TED novel fold AF-A0A0Q7STD2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A58172","Paenibacillus sp."],["NCBITaxon%3A1736552","Paenibacillus sp. Root52"]]},{"id":"NCBITaxon:178306","l":"Pyrobaculum aerophilum str. IM2","na":3,"nb":2,"a":[["Pfam%3APF09171","N-glycosylase/DNA lyase"],["Pfam%3APF10432","Bacterial phospho-glucose isomerase C-terminal SIS domain"],["TED%3AAF-Q8ZWY1-F1-model_v4_TED04","TED novel fold AF-Q8ZWY1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A13773","Pyrobaculum aerophilum"],["NCBITaxon%3A178306","Pyrobaculum aerophilum str. IM2"]]},{"id":"NCBITaxon:178900","l":"Acetobacter cerevisiae","na":2,"nb":3,"a":[["TED%3AAF-A0A149VCN2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A149VCN2-F1-model_v4_TED01"],["TED%3AAF-A0A149VES1-F1-model_v4_TED01","TED novel fold AF-A0A149VES1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A178900","Acetobacter cerevisiae"],["NCBITaxon%3A1307903","Acetobacter cerevisiae DSM 14362"],["NCBITaxon%3A438","Acetobacter pasteurianus"]]},{"id":"NCBITaxon:180282","l":"Delftia tsuruhatensis","na":2,"nb":3,"a":[["TED%3AAF-A0A1D8JBF2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1D8JBF2-F1-model_v4_TED01"],["TED%3AAF-A0A5P8XEZ5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5P8XEZ5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A180282","Delftia tsuruhatensis"],["NCBITaxon%3A1280939","Delftia tsuruhatensis ARB"],["NCBITaxon%3A1220577","Delftia tsuruhatensis NBRC 16741"]]},{"id":"NCBITaxon:1871071","l":"Comamonadaceae bacterium","na":3,"nb":2,"a":[["TED%3AAF-A0A4Q3MGW3-F1-model_v4_TED02","TED novel fold AF-A0A4Q3MGW3-F1-model_v4_TED02"],["TED%3AAF-A0A4Q3MH32-F1-model_v4_TED02","TED novel fold AF-A0A4Q3MH32-F1-model_v4_TED02"],["TED%3AAF-A0A4Q5ULA3-F1-model_v4_TED01","TED novel fold AF-A0A4Q5ULA3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1871071","Comamonadaceae bacterium"],["NCBITaxon%3A3043857","Comamonadaceae bacterium OTU2469"]]},{"id":"NCBITaxon:1890302","l":"Bacillus wiedmannii","na":3,"nb":2,"a":[["TED%3AAF-A0A2B5XSY7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2B5XSY7-F1-model_v4_TED01"],["TED%3AAF-A0A4U3BAX3-F1-model_v4_TED01","TED novel fold AF-A0A4U3BAX3-F1-model_v4_TED01"],["TED%3AAF-A0A4V5TSE9-F1-model_v4_TED01","TED novel fold AF-A0A4V5TSE9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1890302","Bacillus wiedmannii"],["NCBITaxon%3A2494319","Bacillus wiedmannii bv. thuringiensis"]]},{"id":"NCBITaxon:1909293","l":"Acetobacteraceae bacterium","na":3,"nb":2,"a":[["TED%3AAF-A0A4P7WA61-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A4P7WA61-F1-model_v4_TED03"],["TED%3AAF-A0A4Q4CZF9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q4CZF9-F1-model_v4_TED01"],["TED%3AAF-A0A354V6Y2-F1-model_v4_TED01","TED novel fold AF-A0A354V6Y2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1909293","Acetobacteraceae bacterium"],["NCBITaxon%3A1484109","Lichenicola cladoniae"]]},{"id":"NCBITaxon:203122","l":"Saccharophagus degradans 2-40","na":3,"nb":2,"a":[["Pfam%3APF22686","Exo-oligoalginate lyase-like, C-terminal domain"],["Pfam%3APF07940","Heparinase II/III-like, C-terminal"],["Pfam%3APF05426","Alginate lyase"]],"b":[["NCBITaxon%3A86304","Saccharophagus degradans"],["NCBITaxon%3A203122","Saccharophagus degradans 2-40"]]},{"id":"NCBITaxon:208435","l":"Streptococcus agalactiae 2603V/R","na":3,"nb":2,"a":[["Pfam%3APF18419","ATP-grasp-like domain"],["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF04262","Glutamate-cysteine ligase"]],"b":[["NCBITaxon%3A1311","Streptococcus agalactiae"],["NCBITaxon%3A208435","Streptococcus agalactiae 2603V/R"]]},{"id":"NCBITaxon:2151","l":"Mesoplasma florum","na":2,"nb":3,"a":[["TED%3AAF-A0A2R3NYP5-F1-model_v4_TED02","TED novel fold AF-A0A2R3NYP5-F1-model_v4_TED02"],["TED%3AAF-A0A2R3P753-F1-model_v4_TED02","TED novel fold AF-A0A2R3P753-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2151","Mesoplasma florum"],["NCBITaxon%3A265311","Mesoplasma florum L1"],["NCBITaxon%3A1406864","Mesoplasma florum W37"]]},{"id":"NCBITaxon:2162","l":"Methanobacterium formicicum","na":2,"nb":3,"a":[["Pfam%3APF04432","Coenzyme F420 hydrogenase/dehydrogenase, beta subunit C terminus"],["Pfam%3APF04422","Coenzyme F420 hydrogenase/dehydrogenase, beta subunit N-term"]],"b":[["NCBITaxon%3A2162","Methanobacterium formicicum"],["NCBITaxon%3A1204725","Methanobacterium formicicum DSM 3637"],["NCBITaxon%3A1300163","Methanobacterium formicicum JCM 10132"]]},{"id":"NCBITaxon:2257","l":"Natronomonas pharaonis","na":3,"nb":2,"a":[["Pfam%3APF17909","Htr2 transmembrane domain"],["PROSITE%3APS00950","Bacterial rhodopsins signature 1"],["PROSITE%3APS00327","Bacterial rhodopsins retinal binding site"]],"b":[["NCBITaxon%3A2257","Natronomonas pharaonis"],["NCBITaxon%3A348780","Natronomonas pharaonis DSM 2160"]]},{"id":"NCBITaxon:235279","l":"Helicobacter hepaticus ATCC 51449","na":3,"nb":2,"a":[["Pfam%3APF13673","Acetyltransferase (GNAT) domain"],["Pfam%3APF03498","Cytolethal distending toxin A/C domain"],["Pfam%3APF03352","Methyladenine glycosylase"]],"b":[["NCBITaxon%3A32025","Helicobacter hepaticus"],["NCBITaxon%3A235279","Helicobacter hepaticus ATCC 51449"]]},{"id":"NCBITaxon:239935","l":"Akkermansia muciniphila","na":2,"nb":3,"a":[["TED%3AAF-A0A2N8IJN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N8IJN7-F1-model_v4_TED01"],["TED%3AAF-A0A6N2UM07-F1-model_v4_TED01","TED novel fold AF-A0A6N2UM07-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A239935","Akkermansia muciniphila"],["NCBITaxon%3A349741","Akkermansia muciniphila ATCC BAA-835"],["NCBITaxon%3A1263034","Akkermansia muciniphila CAG:154"]]},{"id":"NCBITaxon:243090","l":"Rhodopirellula baltica SH 1","na":3,"nb":2,"a":[["Pfam%3APF02601","Exonuclease VII, large subunit"],["TED%3AAF-Q7UU79-F1-model_v4_TED04","TED highly-symmetric fold AF-Q7UU79-F1-model_v4_TED04"],["TED%3AAF-Q7USE8-F1-model_v4_TED02","TED novel fold AF-Q7USE8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A265606","Rhodopirellula baltica"],["NCBITaxon%3A243090","Rhodopirellula baltica SH 1"]]},{"id":"NCBITaxon:243231","l":"Geobacter sulfurreducens PCA","na":2,"nb":3,"a":[["Pfam%3APF01930","Domain of unknown function DUF83"],["Pfam%3APF13435","Cytochrome c554 and c-prime"]],"b":[["NCBITaxon%3A35554","Geobacter sulfurreducens"],["NCBITaxon%3A243231","Geobacter sulfurreducens PCA"],["NCBITaxon%3A1649546","Geobacter sulfurreducens subsp. sulfurreducens"]]},{"id":"NCBITaxon:243365","l":"Chromobacterium violaceum ATCC 12472","na":3,"nb":2,"a":[["Pfam%3APF17074","Darcynin, domain of unknown function"],["Pfam%3APF12902","Ferritin-like"],["Pfam%3APF06314","Acetoacetate decarboxylase (ADC)"]],"b":[["NCBITaxon%3A536","Chromobacterium violaceum"],["NCBITaxon%3A243365","Chromobacterium violaceum ATCC 12472"]]},{"id":"NCBITaxon:246","l":"Chryseobacterium balustinum","na":2,"nb":3,"a":[["TED%3AAF-A0A3G6TGN0-F1-model_v4_TED05","TED novel fold AF-A0A3G6TGN0-F1-model_v4_TED05"],["TED%3AAF-A0A3G6TJP7-F1-model_v4_TED01","TED novel fold AF-A0A3G6TJP7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A246","Chryseobacterium balustinum"],["NCBITaxon%3A1349755","Chryseobacterium balustinum NBRC 15053"],["NCBITaxon%3A1241981","Chryseobacterium lactis"]]},{"id":"NCBITaxon:2600065","l":"Pseudomonas haemolytica","na":2,"nb":3,"a":[["TED%3AAF-A0A5P1D772-F1-model_v4_TED02","TED novel fold AF-A0A5P1D772-F1-model_v4_TED02"],["TED%3AAF-A0A646P5P3-F1-model_v4_TED01","TED novel fold AF-A0A646P5P3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2219658","Promicromonospora panici"],["NCBITaxon%3A2600065","Pseudomonas haemolytica"],["NCBITaxon%3A306","Pseudomonas sp."]]},{"id":"NCBITaxon:269084","l":"Synechococcus elongatus PCC 6301","na":3,"nb":2,"a":[["Pfam%3APF24763","CGL160, C-terminal"],["Pfam%3APF11805","Protein of unknown function (DUF3326)"],["PROSITE%3APS00157","Ribulose bisphosphate carboxylase large chain active site"]],"b":[["NCBITaxon%3A269084","Synechococcus elongatus PCC 6301"],["NCBITaxon%3A1350461","Synechococcus elongatus UTEX 2973"]]},{"id":"NCBITaxon:272564","l":"Desulfitobacterium hafniense DCB-2","na":3,"nb":2,"a":[["Pfam%3APF17425","Arylsulfotransferase Ig-like domain"],["Pfam%3APF10087","Uncharacterized protein conserved in bacteria (DUF2325)"],["Pfam%3APF05935","Arylsulfotransferase (ASST)"]],"b":[["NCBITaxon%3A49338","Desulfitobacterium hafniense"],["NCBITaxon%3A272564","Desulfitobacterium hafniense DCB-2"]]},{"id":"NCBITaxon:273121","l":"Wolinella succinogenes DSM 1740","na":3,"nb":2,"a":[["Pfam%3APF26365","Apolipoprotein N-acyltransferase integral membrane domain"],["Pfam%3APF02335","Cytochrome c552"],["PROSITE%3APS00883","Nickel-dependent hydrogenases b-type cytochrome subunit signature 2"]],"b":[["NCBITaxon%3A844","Wolinella succinogenes"],["NCBITaxon%3A273121","Wolinella succinogenes DSM 1740"]]},{"id":"NCBITaxon:2747968","l":"Fusarium vanettenii","na":3,"nb":2,"a":[["Pfam%3APF01083","Cutinase"],["PROSITE%3APS00155","Cutinase, serine active site"],["PROSITE%3APS00931","Cutinase, aspartate and histidine active sites"]],"b":[["NCBITaxon%3A2747968","Fusarium vanettenii"],["NCBITaxon%3A660122","Fusarium vanettenii 77-13-4"]]},{"id":"NCBITaxon:2765360","l":"Massilia antarctica","na":3,"nb":2,"a":[["TED%3AAF-A0A7S9UFA6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S9UFA6-F1-model_v4_TED01"],["TED%3AAF-A0A7S9UI56-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S9UI56-F1-model_v4_TED01"],["TED%3AAF-A0A7S9Y9R6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7S9Y9R6-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2765360","Massilia antarctica"],["NCBITaxon%3A2996459","Massilia antarctica subsp. insulae"]]},{"id":"NCBITaxon:28077","l":"Nitrospirillum amazonense","na":3,"nb":2,"a":[["TED%3AAF-A0A560EXE1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A560EXE1-F1-model_v4_TED01"],["TED%3AAF-A0A560KI49-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A560KI49-F1-model_v4_TED01"],["TED%3AAF-A0A560FRY1-F1-model_v4_TED02","TED novel fold AF-A0A560FRY1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A28077","Nitrospirillum amazonense"],["NCBITaxon%3A3144925","Nitrospirillum viridazoti"]]},{"id":"NCBITaxon:28115","l":"Porphyromonas macacae","na":2,"nb":3,"a":[["TED%3AAF-A0A379E7L0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A379E7L0-F1-model_v4_TED01"],["TED%3AAF-A0A379E9C9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A379E9C9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28115","Porphyromonas macacae"],["NCBITaxon%3A1122974","Porphyromonas macacae DSM 20710 = JCM 13914"],["NCBITaxon%3A1236521","Porphyromonas macacae JCM 15984"]]},{"id":"NCBITaxon:284016","l":"Phenylobacterium zucineum","na":3,"nb":2,"a":[["TED%3AAF-A0A2W5PXN0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2W5PXN0-F1-model_v4_TED03"],["TED%3AAF-A0A227JQY1-F1-model_v4_TED01","TED novel fold AF-A0A227JQY1-F1-model_v4_TED01"],["TED%3AAF-A0A2W5RE76-F1-model_v4_TED01","TED novel fold AF-A0A2W5RE76-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A284016","Phenylobacterium zucineum"],["NCBITaxon%3A450851","Phenylobacterium zucineum HLK1"]]},{"id":"NCBITaxon:29320","l":"Paenarthrobacter nicotinovorans","na":2,"nb":3,"a":[["Pfam%3APF22607","FAD binding domain-like"],["Pfam%3APF06500","Esterase FrsA-like"]],"b":[["NCBITaxon%3A29320","Paenarthrobacter nicotinovorans"],["NCBITaxon%3A1304876","Paenarthrobacter nicotinovorans 231Sha2.1M6"],["NCBITaxon%3A1292042","Paenarthrobacter nicotinovorans 26Cvi1.1E"]]},{"id":"NCBITaxon:29361","l":"Faecalimonas nexilis","na":2,"nb":3,"a":[["TED%3AAF-A0A6N2UJS6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N2UJS6-F1-model_v4_TED01"],["TED%3AAF-A0A413JDE0-F1-model_v4_TED02","TED novel fold AF-A0A413JDE0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1263069","[Clostridium] nexile CAG:348"],["NCBITaxon%3A500632","[Clostridium] nexile DSM 1787"],["NCBITaxon%3A29361","Faecalimonas nexilis"]]},{"id":"NCBITaxon:305900","l":"Endozoicomonas elysicola","na":2,"nb":3,"a":[["TED%3AAF-A0A081K9I3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A081K9I3-F1-model_v4_TED01"],["TED%3AAF-A0A081KBA1-F1-model_v4_TED01","TED novel fold AF-A0A081KBA1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A305900","Endozoicomonas elysicola"],["NCBITaxon%3A1121862","Endozoicomonas elysicola DSM 22380"],["NCBITaxon%3A1091502","Endozoicomonas elysicola MKT110"]]},{"id":"NCBITaxon:309799","l":"Dictyoglomus thermophilum H-6-12","na":3,"nb":2,"a":[["Pfam%3APF09094","Alpha-amylase/4-alpha-glucanotransferase, middle domain"],["Pfam%3APF09095","Alpha-amylase/4-alpha-glucanotransferase, C-terminal"],["TED%3AAF-B5YB33-F1-model_v4_TED01","TED highly-symmetric fold AF-B5YB33-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A14","Dictyoglomus thermophilum"],["NCBITaxon%3A309799","Dictyoglomus thermophilum H-6-12"]]},{"id":"NCBITaxon:321967","l":"Lacticaseibacillus paracasei ATCC 334","na":3,"nb":2,"a":[["Pfam%3APF11975","Family 4 glycosyl hydrolase C-terminal domain"],["Pfam%3APF02056","Family 4 glycosyl hydrolase"],["PROSITE%3APS01324","Glycosyl hydrolases family 4 signature"]],"b":[["NCBITaxon%3A1597","Lacticaseibacillus paracasei"],["NCBITaxon%3A321967","Lacticaseibacillus paracasei ATCC 334"]]},{"id":"NCBITaxon:331636","l":"Chlamydia psittaci 6BC","na":3,"nb":2,"a":[["Pfam%3APF01345","CLIPPER domain"],["Pfam%3APF04413","3-Deoxy-D-manno-octulosonic-acid transferase (kdotransferase)"],["Pfam%3APF03503","Chlamydia cysteine-rich outer membrane protein 3"]],"b":[["NCBITaxon%3A83554","Chlamydia psittaci"],["NCBITaxon%3A331636","Chlamydia psittaci 6BC"]]},{"id":"NCBITaxon:335543","l":"Syntrophobacter fumaroxidans MPOB","na":3,"nb":2,"a":[["Pfam%3APF03746","LamB/YcsF family"],["Pfam%3APF03588","Leucyl/phenylalanyl-tRNA protein transferase"],["Pfam%3APF05167","Uncharacterised ACR (DUF711)"]],"b":[["NCBITaxon%3A119484","Syntrophobacter fumaroxidans"],["NCBITaxon%3A335543","Syntrophobacter fumaroxidans MPOB"]]},{"id":"NCBITaxon:340102","l":"Pyrobaculum arsenaticum DSM 13514","na":3,"nb":2,"a":[["Pfam%3APF22039","Imidazolonepropionase-like composite domain, bacteria"],["Pfam%3APF01949","Endonuclease dU"],["TED%3AAF-A4WK08-F1-model_v4_TED01","TED novel fold AF-A4WK08-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A121277","Pyrobaculum arsenaticum"],["NCBITaxon%3A340102","Pyrobaculum arsenaticum DSM 13514"]]},{"id":"NCBITaxon:347834","l":"Rhizobium etli CFN 42","na":3,"nb":2,"a":[["Pfam%3APF02632","BioY family"],["proteintraitsmech%3AELIFE109154_VbsL","Vicibactin acyl-hydroxyornithine epimerase family"],["PROSITE%3APS01349","Nodulation protein nodA signature"]],"b":[["NCBITaxon%3A29449","Rhizobium etli"],["NCBITaxon%3A347834","Rhizobium etli CFN 42"]]},{"id":"NCBITaxon:349124","l":"Halorhodospira halophila SL1","na":3,"nb":2,"a":[["Pfam%3APF02639","Uncharacterized BCR, YaiI/YqxD family COG1671"],["Pfam%3APF20543","N2-fixation sustaining protein CowN"],["Pfam%3APF07311","Dodecin"]],"b":[["NCBITaxon%3A1053","Halorhodospira halophila"],["NCBITaxon%3A349124","Halorhodospira halophila SL1"]]},{"id":"NCBITaxon:349741","l":"Akkermansia muciniphila ATCC BAA-835","na":3,"nb":2,"a":[["Pfam%3APF23763","GLAA-B beta-barrel domain I"],["Pfam%3APF23764","GLAA-B beta-barrel domain II"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"]],"b":[["NCBITaxon%3A239935","Akkermansia muciniphila"],["NCBITaxon%3A349741","Akkermansia muciniphila ATCC BAA-835"]]},{"id":"NCBITaxon:357804","l":"Psychromonas ingrahamii 37","na":3,"nb":2,"a":[["Pfam%3APF27465","DNA-binding protein Fis N-terminal domain"],["Pfam%3APF04363","Protein of unknown function (DUF496)"],["Pfam%3APF18955","Domain of unknown function (DUF5698)"]],"b":[["NCBITaxon%3A357794","Psychromonas ingrahamii"],["NCBITaxon%3A357804","Psychromonas ingrahamii 37"]]},{"id":"NCBITaxon:357809","l":"Lachnoclostridium phytofermentans ISDg","na":3,"nb":2,"a":[["Pfam%3APF09508","Lacto-N-biose phosphorylase N-terminal TIM barrel domain"],["Pfam%3APF17386","Lacto-N-biose phosphorylase C-terminal domain"],["Pfam%3APF17385","Lacto-N-biose phosphorylase central domain"]],"b":[["NCBITaxon%3A66219","Lachnoclostridium phytofermentans"],["NCBITaxon%3A357809","Lachnoclostridium phytofermentans ISDg"]]},{"id":"NCBITaxon:362976","l":"Haloquadratum walsbyi DSM 16790","na":3,"nb":2,"a":[["Pfam%3APF01986","Domain of unknown function DUF123"],["PROSITE%3APS00950","Bacterial rhodopsins signature 1"],["PROSITE%3APS00327","Bacterial rhodopsins retinal binding site"]],"b":[["NCBITaxon%3A293091","Haloquadratum walsbyi"],["NCBITaxon%3A362976","Haloquadratum walsbyi DSM 16790"]]},{"id":"NCBITaxon:363265","l":"Leyella stercorea","na":2,"nb":3,"a":[["TED%3AAF-A0A415GCN6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A415GCN6-F1-model_v4_TED04"],["TED%3AAF-A0A3R6FHW9-F1-model_v4_TED01","TED novel fold AF-A0A3R6FHW9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A363265","Leyella stercorea"],["NCBITaxon%3A1263103","Leyella stercorea CAG:629"],["NCBITaxon%3A1002367","Leyella stercorea DSM 18206"]]},{"id":"NCBITaxon:367928","l":"Bifidobacterium adolescentis ATCC 15703","na":3,"nb":2,"a":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["Pfam%3APF02156","Glycosyl hydrolase family 26"],["Pfam%3APF27512","LeuD_N"]],"b":[["NCBITaxon%3A1680","Bifidobacterium adolescentis"],["NCBITaxon%3A367928","Bifidobacterium adolescentis ATCC 15703"]]},{"id":"NCBITaxon:376686","l":"Flavobacterium johnsoniae UW101","na":3,"nb":2,"a":[["Pfam%3APF17957","Bacterial Ig domain"],["Pfam%3APF24850","Bacillithiol biosynthesis BshC, C-terminal coiled-coil domain"],["Pfam%3APF14109","GldH lipoprotein"]],"b":[["NCBITaxon%3A986","Flavobacterium johnsoniae"],["NCBITaxon%3A376686","Flavobacterium johnsoniae UW101"]]},{"id":"NCBITaxon:381666","l":"Cupriavidus necator H16","na":3,"nb":2,"a":[["Pfam%3APF13473","Cupredoxin-like domain"],["Pfam%3APF10605","3HB-oligomer hydrolase (3HBOH)"],["Pfam%3APF21783","YNCE-like beta-propeller"]],"b":[["NCBITaxon%3A106590","Cupriavidus necator"],["NCBITaxon%3A381666","Cupriavidus necator H16"]]},{"id":"NCBITaxon:384616","l":"Pyrobaculum islandicum DSM 4184","na":3,"nb":2,"a":[["Pfam%3APF01941","S-adenosylmethionine synthetase (AdoMet synthetase)"],["Pfam%3APF11520","Chromatin protein Cren7"],["Pfam%3APF05167","Uncharacterised ACR (DUF711)"]],"b":[["NCBITaxon%3A2277","Pyrobaculum islandicum"],["NCBITaxon%3A384616","Pyrobaculum islandicum DSM 4184"]]},{"id":"NCBITaxon:384676","l":"Pseudomonas entomophila L48","na":3,"nb":2,"a":[["Pfam%3APF18063","Beta barrel Pore-forming domain"],["Pfam%3APF08548","Peptidase M10 serralysin C terminal"],["TED%3AAF-Q1I2P2-F1-model_v4_TED01","TED novel fold AF-Q1I2P2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A312306","Pseudomonas entomophila"],["NCBITaxon%3A384676","Pseudomonas entomophila L48"]]},{"id":"NCBITaxon:391587","l":"Kordia algicida OT-1","na":3,"nb":2,"a":[["TED%3AAF-A9DJI5-F1-model_v4_TED02","TED highly-symmetric fold AF-A9DJI5-F1-model_v4_TED02"],["TED%3AAF-A9E7Y3-F1-model_v4_TED02","TED highly-symmetric fold AF-A9E7Y3-F1-model_v4_TED02"],["TED%3AAF-A9E6S0-F1-model_v4_TED02","TED novel fold AF-A9E6S0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A221066","Kordia algicida"],["NCBITaxon%3A391587","Kordia algicida OT-1"]]},{"id":"NCBITaxon:392500","l":"Shewanella woodyi ATCC 51908","na":3,"nb":2,"a":[["Pfam%3APF23763","GLAA-B beta-barrel domain I"],["TED%3AAF-B1KH33-F1-model_v4_TED01","TED novel fold AF-B1KH33-F1-model_v4_TED01"],["TED%3AAF-B1KQT1-F1-model_v4_TED01","TED novel fold AF-B1KQT1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A60961","Shewanella woodyi"],["NCBITaxon%3A392500","Shewanella woodyi ATCC 51908"]]},{"id":"NCBITaxon:394503","l":"Ruminiclostridium cellulolyticum H10","na":3,"nb":2,"a":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["PROSITE%3APS00812","Glycosyl hydrolases family 8 signature"],["Pfam%3APF01270","Glycosyl hydrolases family 8"]],"b":[["NCBITaxon%3A1521","Ruminiclostridium cellulolyticum"],["NCBITaxon%3A394503","Ruminiclostridium cellulolyticum H10"]]},{"id":"NCBITaxon:39488","l":"Anaerobutyricum hallii","na":2,"nb":3,"a":[["TED%3AAF-A0A414B1Y3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A414B1Y3-F1-model_v4_TED01"],["TED%3AAF-A0A415G3S7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A415G3S7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A39488","Anaerobutyricum hallii"],["NCBITaxon%3A1263078","Anaerobutyricum hallii CAG:12"],["NCBITaxon%3A411469","Anaerobutyricum hallii DSM 3353"]]},{"id":"NCBITaxon:400667","l":"Acinetobacter baumannii ATCC 17978","na":3,"nb":2,"a":[["Pfam%3APF17074","Darcynin, domain of unknown function"],["Pfam%3APF05232","Chlorhexidine efflux transporter"],["Pfam%3APF05662","Coiled stalk of trimeric autotransporter adhesin"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A400667","Acinetobacter baumannii ATCC 17978"]]},{"id":"NCBITaxon:418240","l":"Blautia wexlerae","na":2,"nb":3,"a":[["TED%3AAF-A0A174M0A4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A174M0A4-F1-model_v4_TED02"],["TED%3AAF-A0A6L8T7F6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L8T7F6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A418240","Blautia wexlerae"],["NCBITaxon%3A1280691","Blautia wexlerae AGR2146"],["NCBITaxon%3A1121115","Blautia wexlerae DSM 19850"]]},{"id":"NCBITaxon:418699","l":"Azoarcus olearius","na":3,"nb":2,"a":[["Pfam%3APF27460","ATP phosphoribosyltransferase subunit HisZ C-terminal domain"],["Pfam%3APF20543","N2-fixation sustaining protein CowN"],["PROSITE%3APS00855","Signal peptidases II signature"]],"b":[["NCBITaxon%3A418699","Azoarcus olearius"],["NCBITaxon%3A29544","Azoarcus sp."]]},{"id":"NCBITaxon:41899","l":"Burkholderia plantarii","na":3,"nb":2,"a":[["proteintraitsmech%3AELIFE109154_GrbD","GrbD-type graminine biosynthesis protein family"],["proteintraitsmech%3AELIFE109154_GrbE","GrbE-type graminine biosynthesis protein family"],["TED%3AAF-A0A0B6RMB1-F1-model_v4_TED01","TED novel fold AF-A0A0B6RMB1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A41899","Burkholderia plantarii"],["NCBITaxon%3A796107","Burkholderia plantarii MAFF 301723"]]},{"id":"NCBITaxon:419665","l":"Methanococcus aeolicus Nankai-3","na":3,"nb":2,"a":[["Pfam%3APF26548","Putative peptidyl-prolyl cis-trans isomerase domain"],["Pfam%3APF06787","FeGP cofactor biosynthesis protein HcgF"],["Pfam%3APF01941","S-adenosylmethionine synthetase (AdoMet synthetase)"]],"b":[["NCBITaxon%3A42879","Methanococcus aeolicus"],["NCBITaxon%3A419665","Methanococcus aeolicus Nankai-3"]]},{"id":"NCBITaxon:439292","l":"[Bacillus] selenitireducens MLS10","na":3,"nb":2,"a":[["Pfam%3APF03633","Glycosyl hydrolase family 65, C-terminal domain"],["Pfam%3APF03636","Glycosyl hydrolase family 65, N-terminal domain"],["Pfam%3APF03632","Glycosyl hydrolase family 65 central catalytic domain"]],"b":[["NCBITaxon%3A439292","[Bacillus] selenitireducens MLS10"],["NCBITaxon%3A85683","Salisediminibacterium selenitireducens"]]},{"id":"NCBITaxon:44001","l":"Caldicellulosiruptor saccharolyticus","na":3,"nb":2,"a":[["Pfam%3APF12891","Glycoside hydrolase family 44"],["PROSITE%3APS01027","Glycosyl hydrolases family 39 active site"],["Pfam%3APF02011","Glycosyl hydrolase family 48"]],"b":[["NCBITaxon%3A44001","Caldicellulosiruptor saccharolyticus"],["NCBITaxon%3A351627","Caldicellulosiruptor saccharolyticus DSM 8903"]]},{"id":"NCBITaxon:444178","l":"Brucella ovis ATCC 25840","na":3,"nb":2,"a":[["Pfam%3APF05128","Domain of unknown function (DUF697)"],["Pfam%3APF06411","HdeA/HdeB family"],["Pfam%3APF07886","BA14K-like protein"]],"b":[["NCBITaxon%3A236","Brucella ovis"],["NCBITaxon%3A444178","Brucella ovis ATCC 25840"]]},{"id":"NCBITaxon:447","l":"Legionella bozemanae","na":2,"nb":3,"a":[["TED%3AAF-A0A0W0RGI2-F1-model_v4_TED01","TED novel fold AF-A0A0W0RGI2-F1-model_v4_TED01"],["TED%3AAF-A0A0W0RQT5-F1-model_v4_TED01","TED novel fold AF-A0A0W0RQT5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A447","Legionella bozemanae"],["NCBITaxon%3A66973","Legionella bozemanae serogroup 1"],["NCBITaxon%3A66974","Legionella bozemanae serogroup 2"]]},{"id":"NCBITaxon:448385","l":"Sorangium cellulosum So ce56","na":3,"nb":2,"a":[["TED%3AAF-A9FYP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A9FYP8-F1-model_v4_TED01"],["TED%3AAF-A9G932-F1-model_v4_TED01","TED highly-symmetric fold AF-A9G932-F1-model_v4_TED01"],["TED%3AAF-A9F9E5-F1-model_v4_TED01","TED novel fold AF-A9F9E5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A56","Sorangium cellulosum"],["NCBITaxon%3A448385","Sorangium cellulosum So ce56"]]},{"id":"NCBITaxon:45658","l":"Vibrio scophthalmi","na":2,"nb":3,"a":[["TED%3AAF-A0A1B1NNY0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B1NNY0-F1-model_v4_TED01"],["TED%3AAF-A0A1C7FC26-F1-model_v4_TED03","TED novel fold AF-A0A1C7FC26-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2946866","Vibrio methylphosphonaticus"],["NCBITaxon%3A45658","Vibrio scophthalmi"],["NCBITaxon%3A870967","Vibrio scophthalmi LMG 19158"]]},{"id":"NCBITaxon:456999","l":"Rhizoctonia solani","na":2,"nb":3,"a":[["TED%3AAF-A0A0K6FTW9-F1-model_v4_TED04","TED novel fold AF-A0A0K6FTW9-F1-model_v4_TED04"],["TED%3AAF-A0A0K6GEX0-F1-model_v4_TED01","TED novel fold AF-A0A0K6GEX0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A456999","Rhizoctonia solani"],["NCBITaxon%3A983506","Rhizoctonia solani AG-1 IA"],["NCBITaxon%3A1086053","Rhizoctonia solani AG-3"]]},{"id":"NCBITaxon:4922","l":"Komagataella pastoris","na":3,"nb":2,"a":[["Pfam%3APF26001","Peroxin 8 protein-like, N-terminal domain"],["Pfam%3APF27812","PEX8 central TPR-like domain"],["TED%3AAF-A0A1B2J8F2-F1-model_v4_TED02","TED novel fold AF-A0A1B2J8F2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A4922","Komagataella pastoris"],["NCBITaxon%3A638632","Komagataella pastoris DSMZ 70382"]]},{"id":"NCBITaxon:502025","l":"Haliangium ochraceum DSM 14365","na":3,"nb":2,"a":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF22277","EncFtn-like"],["TED%3AAF-D0LJ11-F1-model_v4_TED04","TED highly-symmetric fold AF-D0LJ11-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A80816","Haliangium ochraceum"],["NCBITaxon%3A502025","Haliangium ochraceum DSM 14365"]]},{"id":"NCBITaxon:5334","l":"Schizophyllum commune","na":3,"nb":2,"a":[["Pfam%3APF04611","Mating type protein A alpha Y mating type dependent binding region"],["Pfam%3APF01185","Fungal hydrophobin"],["PROSITE%3APS00956","Fungal hydrophobins signature"]],"b":[["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A5334","Schizophyllum commune"]]},{"id":"NCBITaxon:555970","l":"Bifidobacterium animalis subsp. lactis DSM 10140","na":2,"nb":3,"a":[["PROSITE%3APS60002","Phosphoketolase signature 1"],["PROSITE%3APS60003","Phosphoketolase signature 2"]],"b":[["NCBITaxon%3A28025","Bifidobacterium animalis"],["NCBITaxon%3A302911","Bifidobacterium animalis subsp. lactis"],["NCBITaxon%3A555970","Bifidobacterium animalis subsp. lactis DSM 10140"]]},{"id":"NCBITaxon:561007","l":"Mycobacteroides abscessus ATCC 19977","na":2,"nb":3,"a":[["Pfam%3APF18089","DAPG hydrolase PhiG domain"],["Pfam%3APF13492","GAF domain"]],"b":[["NCBITaxon%3A36809","Mycobacteroides abscessus"],["NCBITaxon%3A561007","Mycobacteroides abscessus ATCC 19977"],["NCBITaxon%3A1185650","Mycobacteroides abscessus subsp. abscessus"]]},{"id":"NCBITaxon:568706","l":"Bordetella pertussis 18323","na":3,"nb":2,"a":[["IDPO%3A0000011","disorder to order"],["PROSITE%3APS00330","Hemolysin-type calcium-binding region signature"],["Pfam%3APF06594","Haemolysin-type calcium binding protein related domain"]],"b":[["NCBITaxon%3A520","Bordetella pertussis"],["NCBITaxon%3A568706","Bordetella pertussis 18323"]]},{"id":"NCBITaxon:585503","l":"Centipeda noxia ATCC 43541","na":3,"nb":2,"a":[["TED%3AAF-D4S4I0-F1-model_v4_TED02","TED highly-symmetric fold AF-D4S4I0-F1-model_v4_TED02"],["TED%3AAF-D4S4I0-F1-model_v4_TED03","TED highly-symmetric fold AF-D4S4I0-F1-model_v4_TED03"],["TED%3AAF-D4S5Z2-F1-model_v4_TED05","TED novel fold AF-D4S5Z2-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A135083","Centipeda noxia"],["NCBITaxon%3A585503","Centipeda noxia ATCC 43541"]]},{"id":"NCBITaxon:59405","l":"Thauera aromatica","na":2,"nb":3,"a":[["Pfam%3APF18512","Benzylsuccinate synthase beta subunit"],["Pfam%3APF08201","BssC/TutF protein"]],"b":[["NCBITaxon%3A59405","Thauera aromatica"],["NCBITaxon%3A859322","Thauera aromatica 3CB2"],["NCBITaxon%3A44139","Thauera aromatica K172"]]},{"id":"NCBITaxon:634497","l":"Haloarcula hispanica ATCC 33960","na":3,"nb":2,"a":[["Pfam%3APF23951","Domain of unknown function (DUF7282)"],["Pfam%3APF25162","Domain of unknown function (DUF7827)"],["Pfam%3APF18204","PGF-CTERM motif"]],"b":[["NCBITaxon%3A51589","Haloarcula hispanica"],["NCBITaxon%3A634497","Haloarcula hispanica ATCC 33960"]]},{"id":"NCBITaxon:644282","l":"Desulfarculus baarsii DSM 2075","na":3,"nb":2,"a":[["Pfam%3APF06397","Desulfoferrodoxin, N-terminal domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["TED%3AAF-E1QLH8-F1-model_v4_TED02","TED novel fold AF-E1QLH8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A453230","Desulfarculus baarsii"],["NCBITaxon%3A644282","Desulfarculus baarsii DSM 2075"]]},{"id":"NCBITaxon:645462","l":"Clostridioides difficile CD196","na":2,"nb":3,"a":[["Pfam%3APF18671","4-Hydroxyphenylacetate decarboxylase subunit gamma N-terminal"],["Pfam%3APF18524","High potential iron-sulfur protein like"]],"b":[["NCBITaxon%3A1496","Clostridioides difficile"],["NCBITaxon%3A645462","Clostridioides difficile CD196"],["NCBITaxon%3A499176","Clostridioides difficile CIP 107932"]]},{"id":"NCBITaxon:646","l":"Aeromonas sobria","na":3,"nb":2,"a":[["Pfam%3APF01117","Aerolysin toxin"],["Pfam%3APF03440","Aerolysin/Pertussis toxin (APT) domain"],["PROSITE%3APS00274","Aerolysin type toxins signature"]],"b":[["NCBITaxon%3A646","Aeromonas sobria"],["NCBITaxon%3A654","Aeromonas veronii"]]},{"id":"NCBITaxon:647720","l":"Shimia isoporae","na":2,"nb":3,"a":[["TED%3AAF-A0A4R1NAD6-F1-model_v4_TED01","TED novel fold AF-A0A4R1NAD6-F1-model_v4_TED01"],["TED%3AAF-A0A4R1NBY7-F1-model_v4_TED03","TED novel fold AF-A0A4R1NBY7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A487319","Shewanella marina"],["NCBITaxon%3A1236542","Shewanella marina JCM 15074"],["NCBITaxon%3A647720","Shimia isoporae"]]},{"id":"NCBITaxon:661478","l":"Fimbriimonas ginsengisoli Gsoil 348","na":3,"nb":2,"a":[["TED%3AAF-A0A068NS74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A068NS74-F1-model_v4_TED01"],["TED%3AAF-A0A068NSB0-F1-model_v4_TED02","TED novel fold AF-A0A068NSB0-F1-model_v4_TED02"],["TED%3AAF-A0A068NX35-F1-model_v4_TED03","TED novel fold AF-A0A068NX35-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1005039","Fimbriimonas ginsengisoli"],["NCBITaxon%3A661478","Fimbriimonas ginsengisoli Gsoil 348"]]},{"id":"NCBITaxon:678","l":"Vibrio sp.","na":2,"nb":3,"a":[["Pfam%3APF17851","Beta xylosidase C-terminal Concanavalin A-like domain"],["Pfam%3APF11606","Family 31 carbohydrate binding protein"]],"b":[["NCBITaxon%3A2077090","Vibrio gangliei"],["NCBITaxon%3A678","Vibrio sp."],["NCBITaxon%3A1046128","Vibrio zhanjiangensis"]]},{"id":"NCBITaxon:688270","l":"Cellulophaga algicola DSM 14237","na":3,"nb":2,"a":[["TED%3AAF-E6XBJ1-F1-model_v4_TED01","TED highly-symmetric fold AF-E6XBJ1-F1-model_v4_TED01"],["TED%3AAF-E6X960-F1-model_v4_TED02","TED novel fold AF-E6X960-F1-model_v4_TED02"],["TED%3AAF-E6XEV2-F1-model_v4_TED02","TED novel fold AF-E6XEV2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A59600","Cellulophaga algicola"],["NCBITaxon%3A688270","Cellulophaga algicola DSM 14237"]]},{"id":"NCBITaxon:746128","l":"Aspergillus fumigatus","na":2,"nb":3,"a":[["Pfam%3APF07335","Fungal chitosanase of glycosyl hydrolase group 75"],["Pfam%3APF12296","Hydrophobic surface binding protein A"]],"b":[["NCBITaxon%3A746128","Aspergillus fumigatus"],["NCBITaxon%3A451804","Aspergillus fumigatus A1163"],["NCBITaxon%3A41122","Aspergillus fumigatus var. fumigatus"]]},{"id":"NCBITaxon:82979","l":"Budvicia aquatica","na":2,"nb":3,"a":[["TED%3AAF-A0A2C6DMW2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2C6DMW2-F1-model_v4_TED01"],["TED%3AAF-A0A484ZI63-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A484ZI63-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A82979","Budvicia aquatica"],["NCBITaxon%3A1111728","Budvicia aquatica DSM 5075 = ATCC 35567"],["NCBITaxon%3A2304490","Pragia sp."]]},{"id":"NCBITaxon:83167","l":"Pseudomonas syringae pv. aptata","na":2,"nb":3,"a":[["Pfam%3APF22079","Type III effector protein HopBA1"],["Pfam%3APF04877","HrpZ"]],"b":[["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A83167","Pseudomonas syringae pv. aptata"],["NCBITaxon%3A629268","Pseudomonas syringae pv. aptata str. DSM 50252"]]},{"id":"NCBITaxon:83771","l":"Succinivibrio dextrinosolvens","na":2,"nb":3,"a":[["TED%3AAF-A0A662ZAL8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A662ZAL8-F1-model_v4_TED01"],["TED%3AAF-A0A662ZAR2-F1-model_v4_TED01","TED novel fold AF-A0A662ZAR2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A83771","Succinivibrio dextrinosolvens"],["NCBITaxon%3A1123324","Succinivibrio dextrinosolvens DSM 3072"],["NCBITaxon%3A1410676","Succinivibrio dextrinosolvens H5"]]},{"id":"NCBITaxon:85995","l":"Mycothermus thermophilus","na":3,"nb":2,"a":[["Pfam%3APF17851","Beta xylosidase C-terminal Concanavalin A-like domain"],["PROSITE%3APS00655","Glycosyl hydrolases family 6 signature 1"],["PROSITE%3APS00656","Glycosyl hydrolases family 6 signature 2"]],"b":[["NCBITaxon%3A85995","Mycothermus thermophilus"],["NCBITaxon%3A686564","Mycothermus thermophilus ATCC 16453"]]},{"id":"NCBITaxon:878","l":"Solidesulfovibrio fructosivorans","na":3,"nb":2,"a":[["Pfam%3APF27537","HoxL-like"],["PROSITE%3APS00507","Nickel-dependent hydrogenases large subunit signature 1"],["PROSITE%3APS00508","Nickel-dependent hydrogenases large subunit signature 2"]],"b":[["NCBITaxon%3A878","Solidesulfovibrio fructosivorans"],["NCBITaxon%3A596151","Solidesulfovibrio fructosivorans JJ]"]]},{"id":"NCBITaxon:879","l":"Megalodesulfovibrio gigas","na":2,"nb":3,"a":[["Pfam%3APF13370","4Fe-4S single cluster domain of Ferredoxin I"],["PROSITE%3APS00202","Rubredoxin signature"]],"b":[["NCBITaxon%3A885","Desulfovibrio sp."],["NCBITaxon%3A879","Megalodesulfovibrio gigas"],["NCBITaxon%3A1121448","Megalodesulfovibrio gigas DSM 1382 = ATCC 19364"]]},{"id":"NCBITaxon:88274","l":"delta proteobacterium NaphS2","na":3,"nb":2,"a":[["TED%3AAF-D8EY11-F1-model_v4_TED01","TED highly-symmetric fold AF-D8EY11-F1-model_v4_TED01"],["TED%3AAF-D8F978-F1-model_v4_TED02","TED highly-symmetric fold AF-D8F978-F1-model_v4_TED02"],["TED%3AAF-D8F8A3-F1-model_v4_TED01","TED novel fold AF-D8F8A3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1869227","bacterium"],["NCBITaxon%3A88274","delta proteobacterium NaphS2"]]},{"id":"NCBITaxon:885957","l":"Desulfosarcina ovata subsp. sediminis","na":3,"nb":2,"a":[["TED%3AAF-A0A5K7ZII7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5K7ZII7-F1-model_v4_TED01"],["TED%3AAF-A0A5K7ZKN4-F1-model_v4_TED02","TED novel fold AF-A0A5K7ZKN4-F1-model_v4_TED02"],["TED%3AAF-A0A5K8A0E3-F1-model_v4_TED03","TED novel fold AF-A0A5K8A0E3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A83564","Desulfosarcina ovata"],["NCBITaxon%3A885957","Desulfosarcina ovata subsp. sediminis"]]},{"id":"NCBITaxon:886293","l":"Singulisphaera acidiphila DSM 18658","na":3,"nb":2,"a":[["TED%3AAF-L0DF60-F1-model_v4_TED01","TED highly-symmetric fold AF-L0DF60-F1-model_v4_TED01"],["TED%3AAF-L0DFV3-F1-model_v4_TED01","TED highly-symmetric fold AF-L0DFV3-F1-model_v4_TED01"],["TED%3AAF-L0DBJ5-F1-model_v4_TED02","TED novel fold AF-L0DBJ5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A466153","Singulisphaera acidiphila"],["NCBITaxon%3A886293","Singulisphaera acidiphila DSM 18658"]]},{"id":"NCBITaxon:97084","l":"Halobacteriovorax marinus","na":3,"nb":2,"a":[["TED%3AAF-A0A1Y5FAL2-F1-model_v4_TED01","TED novel fold AF-A0A1Y5FAL2-F1-model_v4_TED01"],["TED%3AAF-A0A1Y5FC91-F1-model_v4_TED01","TED novel fold AF-A0A1Y5FC91-F1-model_v4_TED01"],["TED%3AAF-A0A1Y5FCF4-F1-model_v4_TED02","TED novel fold AF-A0A1Y5FCF4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A97084","Halobacteriovorax marinus"],["NCBITaxon%3A862908","Halobacteriovorax marinus SJ"]]},{"id":"NCBITaxon:100884","l":"Coprobacillus cateniformis","na":2,"nb":2,"a":[["TED%3AAF-E7G7Y6-F1-model_v4_TED01","TED highly-symmetric fold AF-E7G7Y6-F1-model_v4_TED01"],["TED%3AAF-E7G976-F1-model_v4_TED02","TED highly-symmetric fold AF-E7G976-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A100884","Coprobacillus cateniformis"],["NCBITaxon%3A1297794","Coprobacillus cateniformis JCM 10604"]]},{"id":"NCBITaxon:1028307","l":"Klebsiella aerogenes KCTC 2190","na":2,"nb":2,"a":[["Pfam%3APF16031","TonB polyproline region"],["Pfam%3APF09078","CheY binding"]],"b":[["NCBITaxon%3A548","Klebsiella aerogenes"],["NCBITaxon%3A1028307","Klebsiella aerogenes KCTC 2190"]]},{"id":"NCBITaxon:1032480","l":"Microlunatus phosphovorus NM-1","na":2,"nb":2,"a":[["TED%3AAF-F5XIG6-F1-model_v4_TED02","TED novel fold AF-F5XIG6-F1-model_v4_TED02"],["TED%3AAF-F5XQ24-F1-model_v4_TED04","TED novel fold AF-F5XQ24-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A29405","Microlunatus phosphovorus"],["NCBITaxon%3A1032480","Microlunatus phosphovorus NM-1"]]},{"id":"NCBITaxon:1033810","l":"Haloplasma contractile SSD-17B","na":2,"nb":2,"a":[["TED%3AAF-F7PZK9-F1-model_v4_TED01","TED highly-symmetric fold AF-F7PZK9-F1-model_v4_TED01"],["TED%3AAF-U2EDU2-F1-model_v4_TED03","TED novel fold AF-U2EDU2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A471825","Haloplasma contractile"],["NCBITaxon%3A1033810","Haloplasma contractile SSD-17B"]]},{"id":"NCBITaxon:1051646","l":"Vibrio tubiashii ATCC 19109","na":2,"nb":2,"a":[["TED%3AAF-F9T5D9-F1-model_v4_TED01","TED highly-symmetric fold AF-F9T5D9-F1-model_v4_TED01"],["TED%3AAF-F9T6Q9-F1-model_v4_TED01","TED highly-symmetric fold AF-F9T6Q9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29498","Vibrio tubiashii"],["NCBITaxon%3A1051646","Vibrio tubiashii ATCC 19109"]]},{"id":"NCBITaxon:105351","l":"Aspergillus awamori","na":2,"nb":2,"a":[["PROSITE%3APS00820","Glucoamylase active site region signature"],["TED%3AAF-A0A401KM36-F1-model_v4_TED03","TED novel fold AF-A0A401KM36-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A105351","Aspergillus awamori"],["NCBITaxon%3A309746","Aspergillus awamori var. piceus"]]},{"id":"NCBITaxon:1071","l":"Rhodopila globiformis","na":2,"nb":2,"a":[["TED%3AAF-A0A2S6NEC8-F1-model_v4_TED01","TED novel fold AF-A0A2S6NEC8-F1-model_v4_TED01"],["TED%3AAF-A0A2S6NJW5-F1-model_v4_TED01","TED novel fold AF-A0A2S6NJW5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A563170","Ferruginibacter alkalilentus"],["NCBITaxon%3A1071","Rhodopila globiformis"]]},{"id":"NCBITaxon:1073999","l":"Cronobacter condimenti 1330","na":2,"nb":2,"a":[["TED%3AAF-K8A163-F1-model_v4_TED01","TED highly-symmetric fold AF-K8A163-F1-model_v4_TED01"],["TED%3AAF-K8A2Z7-F1-model_v4_TED01","TED highly-symmetric fold AF-K8A2Z7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1163710","Cronobacter condimenti"],["NCBITaxon%3A1073999","Cronobacter condimenti 1330"]]},{"id":"NCBITaxon:1108045","l":"Gordonia rhizosphera NBRC 16068","na":2,"nb":2,"a":[["TED%3AAF-K6W7E5-F1-model_v4_TED03","TED highly-symmetric fold AF-K6W7E5-F1-model_v4_TED03"],["TED%3AAF-K6V733-F1-model_v4_TED02","TED novel fold AF-K6V733-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A83341","Gordonia rhizosphera"],["NCBITaxon%3A1108045","Gordonia rhizosphera NBRC 16068"]]},{"id":"NCBITaxon:1115515","l":"Pseudescherichia vulneris NBRC 102420","na":2,"nb":2,"a":[["TED%3AAF-A0A090UX33-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A090UX33-F1-model_v4_TED05"],["TED%3AAF-A0A090V6A2-F1-model_v4_TED01","TED novel fold AF-A0A090V6A2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A566","Pseudescherichia vulneris"],["NCBITaxon%3A1115515","Pseudescherichia vulneris NBRC 102420"]]},{"id":"NCBITaxon:1116389","l":"Devosia insulae DS-56","na":2,"nb":2,"a":[["TED%3AAF-A0A1E5XN43-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1E5XN43-F1-model_v4_TED02"],["TED%3AAF-A0A1E5XX71-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1E5XX71-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A408174","Devosia insulae"],["NCBITaxon%3A1116389","Devosia insulae DS-56"]]},{"id":"NCBITaxon:1120925","l":"Acinetobacter bouvetii DSM 14964 = CIP 107468","na":2,"nb":2,"a":[["proteintraitsmech%3AELIFE109154_VibH_like","VibH-like metallophore standalone condensation enzyme family"],["TED%3AAF-N9C7M4-F1-model_v4_TED02","TED novel fold AF-N9C7M4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A202951","Acinetobacter bouvetii"],["NCBITaxon%3A1120925","Acinetobacter bouvetii DSM 14964 = CIP 107468"]]},{"id":"NCBITaxon:1121264","l":"Caloranaerobacter azorensis DSM 13643","na":2,"nb":2,"a":[["TED%3AAF-A0A1M5V0T2-F1-model_v4_TED02","TED novel fold AF-A0A1M5V0T2-F1-model_v4_TED02"],["TED%3AAF-A0A1M5V0T2-F1-model_v4_TED03","TED novel fold AF-A0A1M5V0T2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A116090","Caloranaerobacter azorensis"],["NCBITaxon%3A1121264","Caloranaerobacter azorensis DSM 13643"]]},{"id":"NCBITaxon:1121279","l":"Chitinimonas taiwanensis DSM 18899","na":2,"nb":2,"a":[["TED%3AAF-A0A1K2HNH6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1K2HNH6-F1-model_v4_TED02"],["TED%3AAF-A0A1K2HS13-F1-model_v4_TED04","TED novel fold AF-A0A1K2HS13-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A240412","Chitinimonas taiwanensis"],["NCBITaxon%3A1121279","Chitinimonas taiwanensis DSM 18899"]]},{"id":"NCBITaxon:1121395","l":"Desulfitobacterium chlororespirans DSM 11544","na":2,"nb":2,"a":[["TED%3AAF-A0A1M7UUA6-F1-model_v4_TED02","TED novel fold AF-A0A1M7UUA6-F1-model_v4_TED02"],["TED%3AAF-A0A1M7UUA6-F1-model_v4_TED03","TED novel fold AF-A0A1M7UUA6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A51616","Desulfitobacterium chlororespirans"],["NCBITaxon%3A1121395","Desulfitobacterium chlororespirans DSM 11544"]]},{"id":"NCBITaxon:1121419","l":"Desulfosporosinus hippei DSM 8344","na":2,"nb":2,"a":[["TED%3AAF-A0A1G8D348-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G8D348-F1-model_v4_TED01"],["TED%3AAF-A0A1G8CVS7-F1-model_v4_TED01","TED novel fold AF-A0A1G8CVS7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A569859","Desulfosporosinus hippei"],["NCBITaxon%3A1121419","Desulfosporosinus hippei DSM 8344"]]},{"id":"NCBITaxon:1121868","l":"Enterovibrio nigricans DSM 22720","na":2,"nb":2,"a":[["TED%3AAF-A0A1T4UXP3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1T4UXP3-F1-model_v4_TED01"],["TED%3AAF-A0A1T4VT23-F1-model_v4_TED01","TED novel fold AF-A0A1T4VT23-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A504469","Enterovibrio nigricans"],["NCBITaxon%3A1121868","Enterovibrio nigricans DSM 22720"]]},{"id":"NCBITaxon:1121886","l":"Flavobacterium croceum DSM 17960","na":2,"nb":2,"a":[["TED%3AAF-A0A2S4N5H0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2S4N5H0-F1-model_v4_TED03"],["TED%3AAF-A0A2S4N9Y2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2S4N9Y2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A370975","Flavobacterium croceum"],["NCBITaxon%3A1121886","Flavobacterium croceum DSM 17960"]]},{"id":"NCBITaxon:1121955","l":"Hymenobacter daecheongensis DSM 21074","na":2,"nb":2,"a":[["TED%3AAF-A0A1M6EGP6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M6EGP6-F1-model_v4_TED02"],["TED%3AAF-A0A1M6M5E1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M6M5E1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A496053","Hymenobacter daecheongensis"],["NCBITaxon%3A1121955","Hymenobacter daecheongensis DSM 21074"]]},{"id":"NCBITaxon:1122192","l":"Marinactinospora thermotolerans DSM 45154","na":2,"nb":2,"a":[["TED%3AAF-A0A1T4KF05-F1-model_v4_TED04","TED novel fold AF-A0A1T4KF05-F1-model_v4_TED04"],["TED%3AAF-A0A1T4TG93-F1-model_v4_TED01","TED novel fold AF-A0A1T4TG93-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A531310","Marinactinospora thermotolerans"],["NCBITaxon%3A1122192","Marinactinospora thermotolerans DSM 45154"]]},{"id":"NCBITaxon:1123404","l":"Tissierella praeacuta DSM 18095","na":2,"nb":2,"a":[["TED%3AAF-A0A1M4YWW1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M4YWW1-F1-model_v4_TED01"],["TED%3AAF-A0A1M4X8A7-F1-model_v4_TED01","TED novel fold AF-A0A1M4X8A7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A43131","Tissierella praeacuta"],["NCBITaxon%3A1123404","Tissierella praeacuta DSM 18095"]]},{"id":"NCBITaxon:11247","l":"Bovine respiratory syncytial virus (strain A51908)","na":2,"nb":2,"a":[["Pfam%3APF00523","Fusion glycoprotein F0"],["Pfam%3APF00802","Pneumovirus attachment glycoprotein G"]],"b":[["NCBITaxon%3A60961","Shewanella woodyi"],["NCBITaxon%3A392500","Shewanella woodyi ATCC 51908"]]},{"id":"NCBITaxon:1177179","l":"Alcanivorax hongdengensis A-11-3","na":2,"nb":2,"a":[["TED%3AAF-L0WEI9-F1-model_v4_TED02","TED highly-symmetric fold AF-L0WEI9-F1-model_v4_TED02"],["TED%3AAF-L0WAP4-F1-model_v4_TED02","TED novel fold AF-L0WAP4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A519051","Alcanivorax hongdengensis"],["NCBITaxon%3A1177179","Alcanivorax hongdengensis A-11-3"]]},{"id":"NCBITaxon:1184267","l":"Pseudobdellovibrio exovorus JSS","na":2,"nb":2,"a":[["TED%3AAF-M4VA20-F1-model_v4_TED02","TED highly-symmetric fold AF-M4VA20-F1-model_v4_TED02"],["TED%3AAF-M4VEE5-F1-model_v4_TED01","TED highly-symmetric fold AF-M4VEE5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A453816","Pseudobdellovibrio exovorus"],["NCBITaxon%3A1184267","Pseudobdellovibrio exovorus JSS"]]},{"id":"NCBITaxon:1185650","l":"Mycobacteroides abscessus subsp. abscessus","na":2,"nb":2,"a":[["TED%3AAF-A0A8B4EU15-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B4EU15-F1-model_v4_TED01"],["TED%3AAF-A0A8B4ERD5-F1-model_v4_TED01","TED novel fold AF-A0A8B4ERD5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A36809","Mycobacteroides abscessus"],["NCBITaxon%3A1185650","Mycobacteroides abscessus subsp. abscessus"]]},{"id":"NCBITaxon:1189310","l":"Corallococcus macrosporus DSM 14697","na":2,"nb":2,"a":[["TED%3AAF-A0A250JQZ3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A250JQZ3-F1-model_v4_TED02"],["TED%3AAF-A0A250K364-F1-model_v4_TED01","TED novel fold AF-A0A250K364-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A35","Corallococcus macrosporus"],["NCBITaxon%3A1189310","Corallococcus macrosporus DSM 14697"]]},{"id":"NCBITaxon:1192854","l":"Granulosicoccus antarcticus IMCC3135","na":2,"nb":2,"a":[["TED%3AAF-A0A2Z2NPF3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2Z2NPF3-F1-model_v4_TED03"],["TED%3AAF-A0A2Z2P0Z5-F1-model_v4_TED01","TED novel fold AF-A0A2Z2P0Z5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A437505","Granulosicoccus antarcticus"],["NCBITaxon%3A1192854","Granulosicoccus antarcticus IMCC3135"]]},{"id":"NCBITaxon:119641","l":"Clostridium uliginosum","na":2,"nb":2,"a":[["TED%3AAF-A0A1I1R8X9-F1-model_v4_TED03","TED novel fold AF-A0A1I1R8X9-F1-model_v4_TED03"],["TED%3AAF-A0A1I1S8C7-F1-model_v4_TED03","TED novel fold AF-A0A1I1S8C7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A119641","Clostridium uliginosum"],["NCBITaxon%3A1121343","Clostridium uliginosum DSM 12992"]]},{"id":"NCBITaxon:1223802","l":"Sulfuritalea hydrogenivorans sk43H","na":2,"nb":2,"a":[["TED%3AAF-W0SFR7-F1-model_v4_TED01","TED highly-symmetric fold AF-W0SFR7-F1-model_v4_TED01"],["TED%3AAF-W0SGJ9-F1-model_v4_TED03","TED novel fold AF-W0SGJ9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A748811","Sulfuritalea hydrogenivorans"],["NCBITaxon%3A1223802","Sulfuritalea hydrogenivorans sk43H"]]},{"id":"NCBITaxon:1227453","l":"Haloarcula japonica DSM 6131","na":2,"nb":2,"a":[["Pfam%3APF04240","Carotenoid biosynthesis protein"],["TED%3AAF-M0LHX3-F1-model_v4_TED01","TED highly-symmetric fold AF-M0LHX3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29282","Haloarcula japonica"],["NCBITaxon%3A1227453","Haloarcula japonica DSM 6131"]]},{"id":"NCBITaxon:1227494","l":"Natrinema altunense JCM 12890","na":2,"nb":2,"a":[["Pfam%3APF28161","Fusexin 1"],["TED%3AAF-L9ZJ05-F1-model_v4_TED02","TED highly-symmetric fold AF-L9ZJ05-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A222984","Natrinema altunense"],["NCBITaxon%3A1227494","Natrinema altunense JCM 12890"]]},{"id":"NCBITaxon:1231","l":"Nitrosospira multiformis","na":2,"nb":2,"a":[["TED%3AAF-A0A1I0DRD9-F1-model_v4_TED01","TED novel fold AF-A0A1I0DRD9-F1-model_v4_TED01"],["TED%3AAF-A0A2T5IBV5-F1-model_v4_TED01","TED novel fold AF-A0A2T5IBV5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1231","Nitrosospira multiformis"],["NCBITaxon%3A323848","Nitrosospira multiformis ATCC 25196"]]},{"id":"NCBITaxon:123214","l":"Persephonella marina EX-H1","na":2,"nb":2,"a":[["PROSITE%3APS01228","Hypothetical cof family signature 1"],["TED%3AAF-C0QUQ0-F1-model_v4_TED01","TED highly-symmetric fold AF-C0QUQ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A309805","Persephonella marina"],["NCBITaxon%3A123214","Persephonella marina EX-H1"]]},{"id":"NCBITaxon:1236504","l":"Prevotella histicola JCM 15637 = DNF00424","na":2,"nb":2,"a":[["TED%3AAF-A0A095Z5H5-F1-model_v4_TED02","TED novel fold AF-A0A095Z5H5-F1-model_v4_TED02"],["TED%3AAF-A0A096B9P0-F1-model_v4_TED01","TED novel fold AF-A0A096B9P0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A470565","Prevotella histicola"],["NCBITaxon%3A1236504","Prevotella histicola JCM 15637 = DNF00424"]]},{"id":"NCBITaxon:1278073","l":"Myxococcus stipitatus DSM 14675","na":2,"nb":2,"a":[["TED%3AAF-L7U5Z3-F1-model_v4_TED02","TED novel fold AF-L7U5Z3-F1-model_v4_TED02"],["TED%3AAF-L7UEI7-F1-model_v4_TED03","TED novel fold AF-L7UEI7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A83455","Myxococcus stipitatus"],["NCBITaxon%3A1278073","Myxococcus stipitatus DSM 14675"]]},{"id":"NCBITaxon:1283301","l":"Streptomyces afghaniensis 772","na":2,"nb":2,"a":[["TED%3AAF-S4MYJ0-F1-model_v4_TED01","TED highly-symmetric fold AF-S4MYJ0-F1-model_v4_TED01"],["TED%3AAF-S4N3X6-F1-model_v4_TED01","TED novel fold AF-S4N3X6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A66865","Streptomyces afghaniensis"],["NCBITaxon%3A1283301","Streptomyces afghaniensis 772"]]},{"id":"NCBITaxon:1284","l":"Staphylococcus hyicus","na":2,"nb":2,"a":[["Pfam%3APF04650","YSIRK type signal peptide"],["PROSITE%3APS01123","Thermonuclease family signature 1"]],"b":[["NCBITaxon%3A1284","Staphylococcus hyicus"],["NCBITaxon%3A29387","Staphylococcus sp."]]},{"id":"NCBITaxon:1286635","l":"Desulfotignum phosphitoxidans DSM 13687","na":2,"nb":2,"a":[["TED%3AAF-S0G346-F1-model_v4_TED01","TED highly-symmetric fold AF-S0G346-F1-model_v4_TED01"],["TED%3AAF-S0G0I7-F1-model_v4_TED02","TED novel fold AF-S0G0I7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A190898","Desulfotignum phosphitoxidans"],["NCBITaxon%3A1286635","Desulfotignum phosphitoxidans DSM 13687"]]},{"id":"NCBITaxon:1293036","l":"Metallosphaera hakonensis JCM 8857 = DSM 7519","na":2,"nb":2,"a":[["TED%3AAF-A0A2U9IR82-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2U9IR82-F1-model_v4_TED02"],["TED%3AAF-A0A2U9IUQ0-F1-model_v4_TED02","TED novel fold AF-A0A2U9IUQ0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A79601","Metallosphaera hakonensis"],["NCBITaxon%3A1293036","Metallosphaera hakonensis JCM 8857 = DSM 7519"]]},{"id":"NCBITaxon:1293045","l":"Limnohabitans planktonicus II-D5","na":2,"nb":2,"a":[["TED%3AAF-A0A2T7UA66-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2T7UA66-F1-model_v4_TED04"],["TED%3AAF-A0A2T7ST92-F1-model_v4_TED03","TED novel fold AF-A0A2T7ST92-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A540060","Limnohabitans planktonicus"],["NCBITaxon%3A1293045","Limnohabitans planktonicus II-D5"]]},{"id":"NCBITaxon:1294264","l":"Lysinibacillus boronitolerans JCM 21713 = 10a = NBRC 103108","na":2,"nb":2,"a":[["TED%3AAF-A0A0A3ILB0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A3ILB0-F1-model_v4_TED01"],["TED%3AAF-A0A0A3IJV1-F1-model_v4_TED01","TED novel fold AF-A0A0A3IJV1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A309788","Lysinibacillus boronitolerans"],["NCBITaxon%3A1294264","Lysinibacillus boronitolerans JCM 21713 = 10a = NBRC 103108"]]},{"id":"NCBITaxon:1294270","l":"Melittangium boletus DSM 14713","na":2,"nb":2,"a":[["TED%3AAF-A0A250IC43-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A250IC43-F1-model_v4_TED02"],["TED%3AAF-A0A250IHT1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A250IHT1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A83453","Melittangium boletus"],["NCBITaxon%3A1294270","Melittangium boletus DSM 14713"]]},{"id":"NCBITaxon:1303518","l":"Chthonomonas calidirosea T49","na":2,"nb":2,"a":[["TED%3AAF-S0EWH8-F1-model_v4_TED01","TED highly-symmetric fold AF-S0EWH8-F1-model_v4_TED01"],["TED%3AAF-S0EW19-F1-model_v4_TED01","TED novel fold AF-S0EW19-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A454171","Chthonomonas calidirosea"],["NCBITaxon%3A1303518","Chthonomonas calidirosea T49"]]},{"id":"NCBITaxon:1305617","l":"Porphyromonas crevioricanis JCM 15906","na":2,"nb":2,"a":[["TED%3AAF-T1DS86-F1-model_v4_TED01","TED highly-symmetric fold AF-T1DS86-F1-model_v4_TED01"],["TED%3AAF-T1DTH4-F1-model_v4_TED03","TED highly-symmetric fold AF-T1DTH4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A393921","Porphyromonas crevioricanis"],["NCBITaxon%3A1305617","Porphyromonas crevioricanis JCM 15906"]]},{"id":"NCBITaxon:1341154","l":"Flavobacterium cauense R2A-7","na":2,"nb":2,"a":[["TED%3AAF-V6RYF5-F1-model_v4_TED01","TED novel fold AF-V6RYF5-F1-model_v4_TED01"],["TED%3AAF-V6S0E8-F1-model_v4_TED02","TED novel fold AF-V6S0E8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A510946","Flavobacterium cauense"],["NCBITaxon%3A1341154","Flavobacterium cauense R2A-7"]]},{"id":"NCBITaxon:1344584","l":"Archaeoglobus fulgidus DSM 8774","na":2,"nb":2,"a":[["TED%3AAF-A0A075WBT5-F1-model_v4_TED01","TED novel fold AF-A0A075WBT5-F1-model_v4_TED01"],["TED%3AAF-A0A075WIA8-F1-model_v4_TED01","TED novel fold AF-A0A075WIA8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2234","Archaeoglobus fulgidus"],["NCBITaxon%3A1344584","Archaeoglobus fulgidus DSM 8774"]]},{"id":"NCBITaxon:135947","l":"Actinoplanes awajinensis subsp. mycoplanecinus","na":2,"nb":2,"a":[["TED%3AAF-A0A101JCS8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A101JCS8-F1-model_v4_TED01"],["TED%3AAF-A0A101JE48-F1-model_v4_TED01","TED novel fold AF-A0A101JE48-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A135946","Actinoplanes awajinensis"],["NCBITaxon%3A135947","Actinoplanes awajinensis subsp. mycoplanecinus"]]},{"id":"NCBITaxon:1365250","l":"Pseudoalteromonas luteoviolacea DSM 6061","na":2,"nb":2,"a":[["TED%3AAF-A0A166UDI2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A166UDI2-F1-model_v4_TED01"],["TED%3AAF-A0A166WU22-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A166WU22-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A43657","Pseudoalteromonas luteoviolacea"],["NCBITaxon%3A1365250","Pseudoalteromonas luteoviolacea DSM 6061"]]},{"id":"NCBITaxon:1386089","l":"Intrasporangium oryzae NRRL B-24470","na":2,"nb":2,"a":[["TED%3AAF-W9G9T8-F1-model_v4_TED01","TED highly-symmetric fold AF-W9G9T8-F1-model_v4_TED01"],["TED%3AAF-W9GBB2-F1-model_v4_TED02","TED novel fold AF-W9GBB2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A412687","Intrasporangium oryzae"],["NCBITaxon%3A1386089","Intrasporangium oryzae NRRL B-24470"]]},{"id":"NCBITaxon:1420917","l":"Marinobacter salarius","na":2,"nb":2,"a":[["TED%3AAF-W5YQE2-F1-model_v4_TED01","TED highly-symmetric fold AF-W5YQE2-F1-model_v4_TED01"],["TED%3AAF-A0A1W6KFK7-F1-model_v4_TED01","TED novel fold AF-A0A1W6KFK7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1420917","Marinobacter salarius"],["NCBITaxon%3A1761792","Marinobacter sp. DSM 26291"]]},{"id":"NCBITaxon:1434","l":"Bacillus thuringiensis serovar berliner","na":2,"nb":2,"a":[["Pfam%3APF17997","Insecticidal delta-endotoxin CryIA(c) domain 5"],["Pfam%3APF21463","Cry1Ac, domain VII"]],"b":[["NCBITaxon%3A1434","Bacillus thuringiensis serovar berliner"],["NCBITaxon%3A527031","Bacillus thuringiensis serovar berliner ATCC 10792"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":2,"nb":2,"a":[["PROSITE%3APS01120","Urease nickel ligands signature"],["PROSITE%3APS00145","Urease active site"]],"b":[["NCBITaxon%3A1474","Sporosarcina pasteurii"],["NCBITaxon%3A1415631","Sporosarcina pasteurii NCIM 2477"]]},{"id":"NCBITaxon:151781","l":"Lactobacillus intestinalis","na":2,"nb":2,"a":[["TED%3AAF-A0A4S2BPB9-F1-model_v4_TED01","TED novel fold AF-A0A4S2BPB9-F1-model_v4_TED01"],["TED%3AAF-A0A4S2BRX7-F1-model_v4_TED01","TED novel fold AF-A0A4S2BRX7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A151781","Lactobacillus intestinalis"],["NCBITaxon%3A1423761","Lactobacillus intestinalis DSM 6629"]]},{"id":"NCBITaxon:1527","l":"Anaerocolumna aminovalerica","na":2,"nb":2,"a":[["TED%3AAF-A0A1I5I955-F1-model_v4_TED02","TED novel fold AF-A0A1I5I955-F1-model_v4_TED02"],["TED%3AAF-A0A1I5ILH1-F1-model_v4_TED04","TED novel fold AF-A0A1I5ILH1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1527","Anaerocolumna aminovalerica"],["NCBITaxon%3A1121297","Anaerocolumna aminovalerica DSM 1283"]]},{"id":"NCBITaxon:1532905","l":"Paenibacillus sp. CAA11","na":2,"nb":2,"a":[["TED%3AAF-A0A2S0U7C4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S0U7C4-F1-model_v4_TED01"],["TED%3AAF-A0A2S0U9Q8-F1-model_v4_TED03","TED novel fold AF-A0A2S0U9Q8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A58172","Paenibacillus sp."],["NCBITaxon%3A1532905","Paenibacillus sp. CAA11"]]},{"id":"NCBITaxon:1533","l":"Clostridium fallax","na":2,"nb":2,"a":[["TED%3AAF-A0A1M4V1D2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M4V1D2-F1-model_v4_TED02"],["TED%3AAF-A0A1M4U9I6-F1-model_v4_TED01","TED novel fold AF-A0A1M4U9I6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1533","Clostridium fallax"],["NCBITaxon%3A1121309","Clostridium fallax DSM 2631"]]},{"id":"NCBITaxon:1557","l":"Peptoclostridium litorale","na":2,"nb":2,"a":[["Pfam%3APF07355","Glycine/sarcosine/betaine reductase selenoprotein B (GRDB)"],["Pfam%3APF04723","Glycine reductase complex selenoprotein A"]],"b":[["NCBITaxon%3A1557","Peptoclostridium litorale"],["NCBITaxon%3A1121324","Peptoclostridium litorale DSM 5388"]]},{"id":"NCBITaxon:155863","l":"Methanothermococcus okinawensis","na":2,"nb":2,"a":[["TED%3AAF-A0A832YR66-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A832YR66-F1-model_v4_TED02"],["TED%3AAF-A0A832ZXX8-F1-model_v4_TED01","TED novel fold AF-A0A832ZXX8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A155863","Methanothermococcus okinawensis"],["NCBITaxon%3A647113","Methanothermococcus okinawensis IH1"]]},{"id":"NCBITaxon:156889","l":"Magnetococcus marinus MC-1","na":2,"nb":2,"a":[["Pfam%3APF02622","AlgH-like"],["Pfam%3APF04279","Intracellular septation protein A"]],"b":[["NCBITaxon%3A1124597","Magnetococcus marinus"],["NCBITaxon%3A156889","Magnetococcus marinus MC-1"]]},{"id":"NCBITaxon:1608996","l":"Pseudomonas helleri","na":2,"nb":2,"a":[["TED%3AAF-A0A7X1XEY7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X1XEY7-F1-model_v4_TED01"],["TED%3AAF-A0A7X1WZY1-F1-model_v4_TED01","TED novel fold AF-A0A7X1WZY1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1460875","Bisgaardia miroungae"],["NCBITaxon%3A1608996","Pseudomonas helleri"]]},{"id":"NCBITaxon:161398","l":"Pseudoalteromonas phenolica","na":2,"nb":2,"a":[["TED%3AAF-A0A4Q7IPD1-F1-model_v4_TED01","TED novel fold AF-A0A4Q7IPD1-F1-model_v4_TED01"],["TED%3AAF-A0A4Q7IRU1-F1-model_v4_TED01","TED novel fold AF-A0A4Q7IRU1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A161398","Pseudoalteromonas phenolica"],["NCBITaxon%3A1315281","Pseudoalteromonas phenolica O-BC30"]]},{"id":"NCBITaxon:1629","l":"Weissella viridescens","na":2,"nb":2,"a":[["Pfam%3APF02388","FemAB family"],["TED%3AAF-A0A3P2RFX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3P2RFX7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1896315","Weissella sp."],["NCBITaxon%3A1629","Weissella viridescens"]]},{"id":"NCBITaxon:173480","l":"Gemmatimonas aurantiaca","na":2,"nb":2,"a":[["TED%3AAF-A0A3D4VAD6-F1-model_v4_TED03","TED novel fold AF-A0A3D4VAD6-F1-model_v4_TED03"],["TED%3AAF-A0A3D4VE85-F1-model_v4_TED02","TED novel fold AF-A0A3D4VE85-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A173480","Gemmatimonas aurantiaca"],["NCBITaxon%3A379066","Gemmatimonas aurantiaca T-27"]]},{"id":"NCBITaxon:1736367","l":"Chryseobacterium sp. Leaf405","na":2,"nb":2,"a":[["TED%3AAF-A0A0Q6A750-F1-model_v4_TED01","TED novel fold AF-A0A0Q6A750-F1-model_v4_TED01"],["TED%3AAF-A0A0Q6AVC3-F1-model_v4_TED02","TED novel fold AF-A0A0Q6AVC3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1871047","Chryseobacterium sp."],["NCBITaxon%3A1736367","Chryseobacterium sp. Leaf405"]]},{"id":"NCBITaxon:176280","l":"Staphylococcus epidermidis ATCC 12228","na":2,"nb":2,"a":[["Pfam%3APF23846","WalK sensor protein kinase Chache domain"],["Pfam%3APF21650","DNA primase DnaG, catalytic core, helical bundle"]],"b":[["NCBITaxon%3A1282","Staphylococcus epidermidis"],["NCBITaxon%3A176280","Staphylococcus epidermidis ATCC 12228"]]},{"id":"NCBITaxon:177439","l":"Desulfotalea psychrophila LSv54","na":2,"nb":2,"a":[["Pfam%3APF18419","ATP-grasp-like domain"],["Pfam%3APF04262","Glutamate-cysteine ligase"]],"b":[["NCBITaxon%3A84980","Desulfotalea psychrophila"],["NCBITaxon%3A177439","Desulfotalea psychrophila LSv54"]]},{"id":"NCBITaxon:182270","l":"Aurantimonas coralicida","na":2,"nb":2,"a":[["TED%3AAF-A0A7C1MD78-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C1MD78-F1-model_v4_TED01"],["TED%3AAF-A0A7C1RGX2-F1-model_v4_TED02","TED novel fold AF-A0A7C1RGX2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A182270","Aurantimonas coralicida"],["NCBITaxon%3A1121027","Aurantimonas coralicida DSM 14790"]]},{"id":"NCBITaxon:186479","l":"Kouleothrix aurantiaca","na":2,"nb":2,"a":[["TED%3AAF-A0A0N8PR83-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0N8PR83-F1-model_v4_TED02"],["TED%3AAF-A0A0P9DLJ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0P9DLJ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A181207","Eikelboom Type 1851 Ben52"],["NCBITaxon%3A186479","Kouleothrix aurantiaca"]]},{"id":"NCBITaxon:190974","l":"Methanobrevibacter gottschalkii","na":2,"nb":2,"a":[["TED%3AAF-A0A1H7GZV1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1H7GZV1-F1-model_v4_TED03"],["TED%3AAF-A0A1H7PF58-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H7PF58-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A190974","Methanobrevibacter gottschalkii"],["NCBITaxon%3A1122229","Methanobrevibacter gottschalkii DSM 11977"]]},{"id":"NCBITaxon:193462","l":"Streptomyces niveus","na":2,"nb":2,"a":[["Pfam%3APF16861","Carbamoyltransferase C-terminus"],["Pfam%3APF02543","Carbamoyltransferase N-terminus"]],"b":[["NCBITaxon%3A193462","Streptomyces niveus"],["NCBITaxon%3A1352941","Streptomyces niveus NCIMB 11891"]]},{"id":"NCBITaxon:194963","l":"Sinorhizobium americanum","na":2,"nb":2,"a":[["TED%3AAF-A0A2S3YNG1-F1-model_v4_TED01","TED novel fold AF-A0A2S3YNG1-F1-model_v4_TED01"],["TED%3AAF-A0A4R2AWY1-F1-model_v4_TED01","TED novel fold AF-A0A4R2AWY1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A194963","Sinorhizobium americanum"],["NCBITaxon%3A1408224","Sinorhizobium americanum CCGM7"]]},{"id":"NCBITaxon:195103","l":"Clostridium perfringens ATCC 13124","na":2,"nb":2,"a":[["Pfam%3APF00963","Cohesin domain"],["PROSITE%3APS00384","Prokaryotic zinc-dependent phospholipase C signature"]],"b":[["NCBITaxon%3A1502","Clostridium perfringens"],["NCBITaxon%3A195103","Clostridium perfringens ATCC 13124"]]},{"id":"NCBITaxon:196164","l":"Corynebacterium efficiens YS-314","na":2,"nb":2,"a":[["Pfam%3APF13631","Cytochrome b(N-terminal)/b6/petB"],["Pfam%3APF12270","Cytochrome c oxidase subunit IV"]],"b":[["NCBITaxon%3A152794","Corynebacterium efficiens"],["NCBITaxon%3A196164","Corynebacterium efficiens YS-314"]]},{"id":"NCBITaxon:2024855","l":"Rhodopirellula sp.","na":2,"nb":2,"a":[["TED%3AAF-A0A2E0S8K6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0S8K6-F1-model_v4_TED01"],["TED%3AAF-A0A358MZ88-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A358MZ88-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1263866","Rhodopirellula europaea"],["NCBITaxon%3A2024855","Rhodopirellula sp."]]},{"id":"NCBITaxon:202772","l":"Zooshikella ganghwensis","na":2,"nb":2,"a":[["TED%3AAF-A0A4P9VE42-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P9VE42-F1-model_v4_TED01"],["TED%3AAF-A0A4P9VMX2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4P9VMX2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A202772","Zooshikella ganghwensis"],["NCBITaxon%3A1123509","Zooshikella ganghwensis DSM 15267"]]},{"id":"NCBITaxon:2053594","l":"Prolixibacteraceae bacterium","na":2,"nb":2,"a":[["TED%3AAF-A0A350Z0D2-F1-model_v4_TED02","TED novel fold AF-A0A350Z0D2-F1-model_v4_TED02"],["TED%3AAF-A0A3D5Z2L5-F1-model_v4_TED01","TED novel fold AF-A0A3D5Z2L5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A3374600","Halosquirtibacter laminarini"],["NCBITaxon%3A2053594","Prolixibacteraceae bacterium"]]},{"id":"NCBITaxon:213810","l":"Ruminococcus champanellensis 18P13 = JCM 17042","na":2,"nb":2,"a":[["TED%3AAF-D4LAY2-F1-model_v4_TED01","TED novel fold AF-D4LAY2-F1-model_v4_TED01"],["TED%3AAF-D4LBV4-F1-model_v4_TED01","TED novel fold AF-D4LBV4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1161942","Ruminococcus champanellensis"],["NCBITaxon%3A213810","Ruminococcus champanellensis 18P13 = JCM 17042"]]},{"id":"NCBITaxon:215578","l":"Williamsoniiplasma somnilux","na":2,"nb":2,"a":[["TED%3AAF-A0A2K8NY68-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2K8NY68-F1-model_v4_TED01"],["TED%3AAF-A0A2K8P0R0-F1-model_v4_TED01","TED novel fold AF-A0A2K8P0R0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A215578","Williamsoniiplasma somnilux"],["NCBITaxon%3A1399795","Williamsoniiplasma somnilux ATCC 49194"]]},{"id":"NCBITaxon:2223","l":"Methanothrix soehngenii","na":2,"nb":2,"a":[["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"],["TED%3AAF-A0A7K4AJW5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K4AJW5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2223","Methanothrix soehngenii"],["NCBITaxon%3A990316","Methanothrix soehngenii GP6"]]},{"id":"NCBITaxon:225999","l":"Mesoplasma syrphidae","na":2,"nb":2,"a":[["TED%3AAF-A0A2K9BQL1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2K9BQL1-F1-model_v4_TED01"],["TED%3AAF-A0A2K9BRS8-F1-model_v4_TED02","TED novel fold AF-A0A2K9BRS8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A225999","Mesoplasma syrphidae"],["NCBITaxon%3A1408449","Mesoplasma syrphidae ATCC 51578"]]},{"id":"NCBITaxon:2265","l":"Thermococcus litoralis","na":2,"nb":2,"a":[["Pfam%3APF13459","4Fe-4S single cluster domain"],["Pfam%3APF06560","Glucose-6-phosphate isomerase (GPI)"]],"b":[["NCBITaxon%3A2265","Thermococcus litoralis"],["NCBITaxon%3A523849","Thermococcus litoralis DSM 5473"]]},{"id":"NCBITaxon:227941","l":"Chlamydia caviae GPIC","na":2,"nb":2,"a":[["Pfam%3APF06188","HrpE/YscL/FliH and V-type ATPase subunit E"],["Pfam%3APF07578","Lipid A Biosynthesis N-terminal domain"]],"b":[["NCBITaxon%3A83557","Chlamydia caviae"],["NCBITaxon%3A227941","Chlamydia caviae GPIC"]]},{"id":"NCBITaxon:246200","l":"Ruegeria pomeroyi DSS-3","na":2,"nb":2,"a":[["Pfam%3APF16867","Dimethlysulfonioproprionate lyase"],["Pfam%3APF09347","Domain of unknown function (DUF1989)"]],"b":[["NCBITaxon%3A89184","Ruegeria pomeroyi"],["NCBITaxon%3A246200","Ruegeria pomeroyi DSS-3"]]},{"id":"NCBITaxon:2564099","l":"Ruminococcus bovis","na":2,"nb":2,"a":[["TED%3AAF-A0A4P8XXI7-F1-model_v4_TED01","TED novel fold AF-A0A4P8XXI7-F1-model_v4_TED01"],["TED%3AAF-A0A4P8XXY0-F1-model_v4_TED02","TED novel fold AF-A0A4P8XXY0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2564099","Ruminococcus bovis"],["NCBITaxon%3A2486417","Streptomyces botrytidirepellens"]]},{"id":"NCBITaxon:2585117","l":"Alistipes onderdonkii subsp. vulgaris","na":2,"nb":2,"a":[["TED%3AAF-A0A4Y1WGW4-F1-model_v4_TED01","TED novel fold AF-A0A4Y1WGW4-F1-model_v4_TED01"],["TED%3AAF-A0A4Y1X8F5-F1-model_v4_TED01","TED novel fold AF-A0A4Y1X8F5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A328813","Alistipes onderdonkii"],["NCBITaxon%3A2585117","Alistipes onderdonkii subsp. vulgaris"]]},{"id":"NCBITaxon:2606634","l":"Velocimicrobium porci","na":2,"nb":2,"a":[["TED%3AAF-A0A6L5XWX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L5XWX7-F1-model_v4_TED01"],["TED%3AAF-A0A6L5XZP1-F1-model_v4_TED05","TED novel fold AF-A0A6L5XZP1-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2049040","Roseburia sp."],["NCBITaxon%3A2606634","Velocimicrobium porci"]]},{"id":"NCBITaxon:262543","l":"Exiguobacterium artemiae 255-15","na":2,"nb":2,"a":[["Pfam%3APF06335","Domain of unknown function (DUF1054)"],["Pfam%3APF11023","Zinc-ribbon containing domain"]],"b":[["NCBITaxon%3A340145","Exiguobacterium artemiae"],["NCBITaxon%3A262543","Exiguobacterium artemiae 255-15"]]},{"id":"NCBITaxon:264462","l":"Bdellovibrio bacteriovorus HD100","na":2,"nb":2,"a":[["TED%3AAF-Q6MMM6-F1-model_v4_TED01","TED novel fold AF-Q6MMM6-F1-model_v4_TED01"],["TED%3AAF-Q6MPT8-F1-model_v4_TED01","TED novel fold AF-Q6MPT8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A959","Bdellovibrio bacteriovorus"],["NCBITaxon%3A264462","Bdellovibrio bacteriovorus HD100"]]},{"id":"NCBITaxon:264732","l":"Moorella thermoacetica ATCC 39073","na":2,"nb":2,"a":[["Pfam%3APF10371","Domain of unknown function"],["PROSITE%3APS00202","Rubredoxin signature"]],"b":[["NCBITaxon%3A264732","Moorella thermoacetica ATCC 39073"],["NCBITaxon%3A1525","Neomoorella thermoacetica"]]},{"id":"NCBITaxon:2664442","l":"Fundicoccus ignavus","na":2,"nb":2,"a":[["TED%3AAF-A0A6I2GCU7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I2GCU7-F1-model_v4_TED01"],["TED%3AAF-A0A844CGI6-F1-model_v4_TED01","TED novel fold AF-A0A844CGI6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2664442","Fundicoccus ignavus"],["NCBITaxon%3A1907779","Pediococcus sp."]]},{"id":"NCBITaxon:266940","l":"Kineococcus radiotolerans SRS30216 = ATCC BAA-149","na":2,"nb":2,"a":[["Pfam%3APF01083","Cutinase"],["TED%3AAF-A6WE06-F1-model_v4_TED06","TED novel fold AF-A6WE06-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A131568","Kineococcus radiotolerans"],["NCBITaxon%3A266940","Kineococcus radiotolerans SRS30216 = ATCC BAA-149"]]},{"id":"NCBITaxon:271848","l":"Burkholderia thailandensis E264","na":2,"nb":2,"a":[["Pfam%3APF12091","Protein of unknown function (DUF3567)"],["Pfam%3APF01075","Glycosyltransferase family 9 (heptosyltransferase)"]],"b":[["NCBITaxon%3A57975","Burkholderia thailandensis"],["NCBITaxon%3A271848","Burkholderia thailandensis E264"]]},{"id":"NCBITaxon:2721544","l":"Actinoplanes sp. NBRC 14428","na":2,"nb":2,"a":[["TED%3AAF-A0A810M2Y5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A810M2Y5-F1-model_v4_TED02"],["TED%3AAF-A0A810MBC3-F1-model_v4_TED01","TED novel fold AF-A0A810MBC3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A136271","Actinoplanes sp. IFO 14428"],["NCBITaxon%3A2721544","Actinoplanes sp. NBRC 14428"]]},{"id":"NCBITaxon:272559","l":"Bacteroides fragilis NCTC 9343","na":2,"nb":2,"a":[["Pfam%3APF16355","Domain of unknown function (DUF4982)"],["Pfam%3APF14229","Domain of unknown function (DUF4332)"]],"b":[["NCBITaxon%3A817","Bacteroides fragilis"],["NCBITaxon%3A272559","Bacteroides fragilis NCTC 9343"]]},{"id":"NCBITaxon:27291","l":"Saccharomyces paradoxus","na":2,"nb":2,"a":[["Pfam%3APF27692","Cytochrome B pre-mRNA-processing protein 2"],["Pfam%3APF08643","Fungal family of unknown function (DUF1776)"]],"b":[["NCBITaxon%3A27291","Saccharomyces paradoxus"],["NCBITaxon%3A226125","Saccharomyces paradoxus NRRL Y-17217"]]},{"id":"NCBITaxon:273116","l":"Thermoplasma volcanium GSS1","na":2,"nb":2,"a":[["Pfam%3APF17989","Actin like proteins N terminal domain"],["Pfam%3APF26550","Tricorn protease second beta propeller domain"]],"b":[["NCBITaxon%3A50339","Thermoplasma volcanium"],["NCBITaxon%3A273116","Thermoplasma volcanium GSS1"]]},{"id":"NCBITaxon:2752305","l":"Desulfosarcina ovata subsp. ovata","na":2,"nb":2,"a":[["TED%3AAF-A0A5K8AAG7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A5K8AAG7-F1-model_v4_TED03"],["TED%3AAF-A0A5K8AJH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5K8AJH3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A83564","Desulfosarcina ovata"],["NCBITaxon%3A2752305","Desulfosarcina ovata subsp. ovata"]]},{"id":"NCBITaxon:283166","l":"Bartonella henselae str. Houston-1","na":2,"nb":2,"a":[["Pfam%3APF18543","Intracellular delivery domain"],["Pfam%3APF03524","Conjugal transfer protein"]],"b":[["NCBITaxon%3A38323","Bartonella henselae"],["NCBITaxon%3A283166","Bartonella henselae str. Houston-1"]]},{"id":"NCBITaxon:28454","l":"Sphingobacterium multivorum","na":2,"nb":2,"a":[["TED%3AAF-A0A7T9NU88-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T9NU88-F1-model_v4_TED01"],["TED%3AAF-A0A7T9PGY4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T9PGY4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28454","Sphingobacterium multivorum"],["NCBITaxon%3A1123264","Sphingobacterium multivorum DSM 11691"]]},{"id":"NCBITaxon:285532","l":"Streptomyces achromogenes subsp. streptozoticus","na":2,"nb":2,"a":[["Pfam%3APF07883","Cupin domain"],["Pfam%3APF14518","Iron-containing redox enzyme"]],"b":[["NCBITaxon%3A67255","Streptomyces achromogenes"],["NCBITaxon%3A285532","Streptomyces achromogenes subsp. streptozoticus"]]},{"id":"NCBITaxon:290633","l":"Gluconobacter oxydans 621H","na":2,"nb":2,"a":[["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"],["Pfam%3APF01011","Glucose/ethanol/alcohol dehydrogenase, beta-propeller domain"]],"b":[["NCBITaxon%3A442","Gluconobacter oxydans"],["NCBITaxon%3A290633","Gluconobacter oxydans 621H"]]},{"id":"NCBITaxon:292459","l":"Symbiobacterium thermophilum IAM 14863","na":2,"nb":2,"a":[["PROSITE%3APS00853","Beta-eliminating lyases pyridoxal-phosphate attachment site"],["TED%3AAF-Q67TA8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q67TA8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2734","Symbiobacterium thermophilum"],["NCBITaxon%3A292459","Symbiobacterium thermophilum IAM 14863"]]},{"id":"NCBITaxon:29495","l":"Vibrio navarrensis","na":2,"nb":2,"a":[["TED%3AAF-A0A099LRS8-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A099LRS8-F1-model_v4_TED05"],["TED%3AAF-A0A7T0RRB9-F1-model_v4_TED02","TED novel fold AF-A0A7T0RRB9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29495","Vibrio navarrensis"],["NCBITaxon%3A706139","Vibrio navarrensis 08-2462"]]},{"id":"NCBITaxon:307480","l":"Chryseobacterium vrystaatense","na":2,"nb":2,"a":[["TED%3AAF-A0A1M5B1Q6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1M5B1Q6-F1-model_v4_TED03"],["TED%3AAF-A0A1M5MNX0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M5MNX0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A307480","Chryseobacterium vrystaatense"],["NCBITaxon%3A1256510","Chryseobacterium vrystaatense PCAI F2.7"]]},{"id":"NCBITaxon:313606","l":"Microscilla marina ATCC 23134","na":2,"nb":2,"a":[["TED%3AAF-A1ZH11-F1-model_v4_TED02","TED novel fold AF-A1ZH11-F1-model_v4_TED02"],["TED%3AAF-A1ZSU9-F1-model_v4_TED01","TED novel fold AF-A1ZSU9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1027","Microscilla marina"],["NCBITaxon%3A313606","Microscilla marina ATCC 23134"]]},{"id":"NCBITaxon:313612","l":"Lyngbya sp. PCC 8106","na":2,"nb":2,"a":[["TED%3AAF-A0YRM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0YRM4-F1-model_v4_TED01"],["TED%3AAF-A0Z017-F1-model_v4_TED04","TED highly-symmetric fold AF-A0Z017-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A118322","Lyngbya aestuarii"],["NCBITaxon%3A313612","Lyngbya sp. PCC 8106"]]},{"id":"NCBITaxon:33035","l":"Blautia producta","na":2,"nb":2,"a":[["TED%3AAF-A0A2S4GEH6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S4GEH6-F1-model_v4_TED01"],["TED%3AAF-A0A7G5MNY0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G5MNY0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A33035","Blautia producta"],["NCBITaxon%3A1121114","Blautia producta ATCC 27340 = DSM 2950"]]},{"id":"NCBITaxon:33058","l":"Thauera selenatis","na":2,"nb":2,"a":[["Pfam%3APF09459","Ethylbenzene dehydrogenase"],["Pfam%3APF12797","4Fe-4S binding domain"]],"b":[["NCBITaxon%3A33058","Thauera selenatis"],["NCBITaxon%3A905052","Thauera selenatis AX"]]},{"id":"NCBITaxon:34003","l":"Paracoccus aminophilus","na":2,"nb":2,"a":[["Pfam%3APF26354","N,N-dimethylformamidase alpha subunit"],["Pfam%3APF20254","N,N-dimethylformamidase beta subunit-like, C-terminal"]],"b":[["NCBITaxon%3A34003","Paracoccus aminophilus"],["NCBITaxon%3A1367847","Paracoccus aminophilus JCM 7686"]]},{"id":"NCBITaxon:348780","l":"Natronomonas pharaonis DSM 2160","na":2,"nb":2,"a":[["Pfam%3APF12840","Helix-turn-helix domain"],["Pfam%3APF26067","Family of unknown function (DUF8024)"]],"b":[["NCBITaxon%3A2257","Natronomonas pharaonis"],["NCBITaxon%3A348780","Natronomonas pharaonis DSM 2160"]]},{"id":"NCBITaxon:349521","l":"Hahella chejuensis KCTC 2396","na":2,"nb":2,"a":[["TED%3AAF-Q2SFS2-F1-model_v4_TED01","TED novel fold AF-Q2SFS2-F1-model_v4_TED01"],["TED%3AAF-Q2SI43-F1-model_v4_TED03","TED novel fold AF-Q2SI43-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A158327","Hahella chejuensis"],["NCBITaxon%3A349521","Hahella chejuensis KCTC 2396"]]},{"id":"NCBITaxon:349967","l":"Yersinia mollaretii ATCC 43969","na":2,"nb":2,"a":[["Pfam%3APF18624","CDI immunity protein"],["Pfam%3APF14436","Bacterial EndoU nuclease"]],"b":[["NCBITaxon%3A33060","Yersinia mollaretii"],["NCBITaxon%3A349967","Yersinia mollaretii ATCC 43969"]]},{"id":"NCBITaxon:35746","l":"Haloferax gibbonsii","na":2,"nb":2,"a":[["Pfam%3APF25162","Domain of unknown function (DUF7827)"],["Pfam%3APF20009","GEVED domain"]],"b":[["NCBITaxon%3A35746","Haloferax gibbonsii"],["NCBITaxon%3A1227459","Haloferax gibbonsii ATCC 33959"]]},{"id":"NCBITaxon:365044","l":"Polaromonas naphthalenivorans CJ2","na":2,"nb":2,"a":[["Pfam%3APF01888","CbiD"],["Pfam%3APF02609","Exonuclease VII small subunit"]],"b":[["NCBITaxon%3A216465","Polaromonas naphthalenivorans"],["NCBITaxon%3A365044","Polaromonas naphthalenivorans CJ2"]]},{"id":"NCBITaxon:368407","l":"Methanoculleus marisnigri JR1","na":2,"nb":2,"a":[["Pfam%3APF27030","AbpE bacteria"],["Pfam%3APF04019","Protein of unknown function (DUF359)"]],"b":[["NCBITaxon%3A2198","Methanoculleus marisnigri"],["NCBITaxon%3A368407","Methanoculleus marisnigri JR1"]]},{"id":"NCBITaxon:379547","l":"Candidatus Aciduliprofundum boonei","na":2,"nb":2,"a":[["TED%3AAF-A0A7J3T8Z3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7J3T8Z3-F1-model_v4_TED02"],["TED%3AAF-A0A7J3T9E7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J3T9E7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A439481","Aciduliprofundum boonei T469"],["NCBITaxon%3A379547","Candidatus Aciduliprofundum boonei"]]},{"id":"NCBITaxon:381306","l":"Thiohalorhabdus denitrificans","na":2,"nb":2,"a":[["TED%3AAF-A0A1G5AS59-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G5AS59-F1-model_v4_TED01"],["TED%3AAF-A0A1G5CMD7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G5CMD7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A381306","Thiohalorhabdus denitrificans"],["NCBITaxon%3A1123396","Thiohalorhabdus denitrificans DSM 15699"]]},{"id":"NCBITaxon:391592","l":"Caminibacter mediatlanticus TB-2","na":2,"nb":2,"a":[["TED%3AAF-A0A4P9DRC2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A4P9DRC2-F1-model_v4_TED03"],["TED%3AAF-A0A4P9DXX3-F1-model_v4_TED03","TED novel fold AF-A0A4P9DXX3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A291048","Caminibacter mediatlanticus"],["NCBITaxon%3A391592","Caminibacter mediatlanticus TB-2"]]},{"id":"NCBITaxon:393310","l":"Skermanella aerolata","na":2,"nb":2,"a":[["TED%3AAF-A0A512DYI2-F1-model_v4_TED01","TED novel fold AF-A0A512DYI2-F1-model_v4_TED01"],["TED%3AAF-A0A512E076-F1-model_v4_TED01","TED novel fold AF-A0A512E076-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A393310","Skermanella aerolata"],["NCBITaxon%3A1385368","Skermanella aerolata KACC 11604"]]},{"id":"NCBITaxon:393664","l":"Aliirhizobium cellulosilyticum","na":2,"nb":2,"a":[["TED%3AAF-A0A7W4XHJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W4XHJ9-F1-model_v4_TED01"],["TED%3AAF-A0A7W4SSW3-F1-model_v4_TED01","TED novel fold AF-A0A7W4SSW3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A393664","Aliirhizobium cellulosilyticum"],["NCBITaxon%3A1368426","Aliirhizobium cellulosilyticum ALA10B2"]]},{"id":"NCBITaxon:39490","l":"Eubacterium ramulus","na":2,"nb":2,"a":[["TED%3AAF-A0A173V5Z6-F1-model_v4_TED02","TED novel fold AF-A0A173V5Z6-F1-model_v4_TED02"],["TED%3AAF-A0A2V1JWA1-F1-model_v4_TED05","TED novel fold AF-A0A2V1JWA1-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A39490","Eubacterium ramulus"],["NCBITaxon%3A1256908","Eubacterium ramulus ATCC 29099"]]},{"id":"NCBITaxon:398511","l":"Alkalihalophilus pseudofirmus OF4","na":2,"nb":2,"a":[["Pfam%3APF25991","K(+)/H(+) antiporter subunit KhtT, N-terminal domain"],["Pfam%3APF04238","Protein of unknown function (DUF420)"]],"b":[["NCBITaxon%3A79885","Alkalihalophilus pseudofirmus"],["NCBITaxon%3A398511","Alkalihalophilus pseudofirmus OF4"]]},{"id":"NCBITaxon:411468","l":"[Clostridium] scindens ATCC 35704","na":2,"nb":2,"a":[["Pfam%3APF03486","HI0933-like protein Rossmann domain"],["Pfam%3APF22780","HI0933-like protein barrel and H2TH domain"]],"b":[["NCBITaxon%3A29347","[Clostridium] scindens"],["NCBITaxon%3A411468","[Clostridium] scindens ATCC 35704"]]},{"id":"NCBITaxon:411473","l":"Ruminococcus callidus ATCC 27760","na":2,"nb":2,"a":[["TED%3AAF-U2KYE7-F1-model_v4_TED02","TED novel fold AF-U2KYE7-F1-model_v4_TED02"],["TED%3AAF-U2KYU1-F1-model_v4_TED02","TED novel fold AF-U2KYU1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A40519","Ruminococcus callidus"],["NCBITaxon%3A411473","Ruminococcus callidus ATCC 27760"]]},{"id":"NCBITaxon:418719","l":"Marinobacter salsuginis","na":2,"nb":2,"a":[["TED%3AAF-A0A5M3Q1Q7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5M3Q1Q7-F1-model_v4_TED01"],["TED%3AAF-A0A5M3Q638-F1-model_v4_TED02","TED novel fold AF-A0A5M3Q638-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A418719","Marinobacter salsuginis"],["NCBITaxon%3A1260625","Marinobacter salsuginis SD-14B"]]},{"id":"NCBITaxon:420247","l":"Methanobrevibacter smithii ATCC 35061","na":2,"nb":2,"a":[["Pfam%3APF17884","Domain of unknown function (DUF5591)"],["Pfam%3APF18195","GatD N-terminal domain"]],"b":[["NCBITaxon%3A2173","Methanobrevibacter smithii"],["NCBITaxon%3A420247","Methanobrevibacter smithii ATCC 35061"]]},{"id":"NCBITaxon:42236","l":"Streptomyces diastatochromogenes","na":2,"nb":2,"a":[["TED%3AAF-A0A233S9R2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A233S9R2-F1-model_v4_TED01"],["TED%3AAF-A0A233SM76-F1-model_v4_TED01","TED novel fold AF-A0A233SM76-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A42236","Streptomyces diastatochromogenes"],["NCBITaxon%3A285494","Streptomyces diastatochromogenes subsp. luteus"]]},{"id":"NCBITaxon:425104","l":"Shewanella sediminis HAW-EB3","na":2,"nb":2,"a":[["Pfam%3APF13286","Phosphohydrolase-associated domain"],["TED%3AAF-A8FZD8-F1-model_v4_TED01","TED novel fold AF-A8FZD8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A271097","Shewanella sediminis"],["NCBITaxon%3A425104","Shewanella sediminis HAW-EB3"]]},{"id":"NCBITaxon:426128","l":"Natronincola peptidivorans","na":2,"nb":2,"a":[["TED%3AAF-A0A1I0EK12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I0EK12-F1-model_v4_TED01"],["TED%3AAF-A0A1I0H2J6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I0H2J6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A426128","Natronincola peptidivorans"],["NCBITaxon%3A1122597","Natronincola peptidivorans DSM 18979"]]},{"id":"NCBITaxon:435590","l":"Phocaeicola vulgatus ATCC 8482","na":2,"nb":2,"a":[["Pfam%3APF13444","Acetyltransferase (GNAT) domain"],["Pfam%3APF19576","Acyltransferase"]],"b":[["NCBITaxon%3A821","Phocaeicola vulgatus"],["NCBITaxon%3A435590","Phocaeicola vulgatus ATCC 8482"]]},{"id":"NCBITaxon:452637","l":"Opitutus terrae PB90-1","na":2,"nb":2,"a":[["TED%3AAF-B1ZX41-F1-model_v4_TED02","TED novel fold AF-B1ZX41-F1-model_v4_TED02"],["TED%3AAF-B1ZYN8-F1-model_v4_TED02","TED novel fold AF-B1ZYN8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A107709","Opitutus terrae"],["NCBITaxon%3A452637","Opitutus terrae PB90-1"]]},{"id":"NCBITaxon:45361","l":"Mesomycoplasma conjunctivae","na":2,"nb":2,"a":[["TED%3AAF-A0A449AKT0-F1-model_v4_TED02","TED novel fold AF-A0A449AKT0-F1-model_v4_TED02"],["TED%3AAF-A0A449AL49-F1-model_v4_TED04","TED novel fold AF-A0A449AL49-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A45361","Mesomycoplasma conjunctivae"],["NCBITaxon%3A572263","Mesomycoplasma conjunctivae HRC/581"]]},{"id":"NCBITaxon:455432","l":"Nocardia terpenica","na":2,"nb":2,"a":[["TED%3AAF-A0A6G9ZDY9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6G9ZDY9-F1-model_v4_TED01"],["TED%3AAF-A0A164L9V7-F1-model_v4_TED03","TED novel fold AF-A0A164L9V7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A455432","Nocardia terpenica"],["NCBITaxon%3A1206738","Nocardia terpenica NBRC 100888"]]},{"id":"NCBITaxon:455632","l":"Streptomyces griseus subsp. griseus NBRC 13350","na":2,"nb":2,"a":[["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["PROSITE%3APS01311","Prolipoprotein diacylglyceryl transferase signature"]],"b":[["NCBITaxon%3A1896","Streptomyces bikiniensis"],["NCBITaxon%3A455632","Streptomyces griseus subsp. griseus NBRC 13350"]]},{"id":"NCBITaxon:467091","l":"Ilumatobacter fluminis","na":2,"nb":2,"a":[["TED%3AAF-A0A4R7I1A9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A4R7I1A9-F1-model_v4_TED03"],["TED%3AAF-A0A4R7HV94-F1-model_v4_TED01","TED novel fold AF-A0A4R7HV94-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A467091","Ilumatobacter fluminis"],["NCBITaxon%3A1331058","Ilumatobacter fluminis YM22-133"]]},{"id":"NCBITaxon:47884","l":"Pseudomonas taetrolens","na":2,"nb":2,"a":[["PROSITE%3APS00395","Alanine racemase pyridoxal-phosphate attachment site"],["PROSITE%3APS00182","Glutamine synthetase class-I adenylation site"]],"b":[["NCBITaxon%3A1128622","Pseudomonas sp. JCM 5493"],["NCBITaxon%3A47884","Pseudomonas taetrolens"]]},{"id":"NCBITaxon:479434","l":"Sphaerobacter thermophilus DSM 20745","na":2,"nb":2,"a":[["TED%3AAF-D1C926-F1-model_v4_TED01","TED highly-symmetric fold AF-D1C926-F1-model_v4_TED01"],["TED%3AAF-D1C9G8-F1-model_v4_TED01","TED highly-symmetric fold AF-D1C9G8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2057","Sphaerobacter thermophilus"],["NCBITaxon%3A479434","Sphaerobacter thermophilus DSM 20745"]]},{"id":"NCBITaxon:484019","l":"Thermosipho africanus TCF52B","na":2,"nb":2,"a":[["TED%3AAF-B7IGW9-F1-model_v4_TED05","TED highly-symmetric fold AF-B7IGW9-F1-model_v4_TED05"],["TED%3AAF-B7IEF5-F1-model_v4_TED01","TED novel fold AF-B7IEF5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2421","Thermosipho africanus"],["NCBITaxon%3A484019","Thermosipho africanus TCF52B"]]},{"id":"NCBITaxon:49283","l":"Paenibacillus thiaminolyticus","na":2,"nb":2,"a":[["TED%3AAF-A0A378XAJ0-F1-model_v4_TED02","TED novel fold AF-A0A378XAJ0-F1-model_v4_TED02"],["TED%3AAF-A0A7G3DXQ4-F1-model_v4_TED01","TED novel fold AF-A0A7G3DXQ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A49283","Paenibacillus thiaminolyticus"],["NCBITaxon%3A1349794","Paenibacillus thiaminolyticus NBRC 15656 = DSM 7262"]]},{"id":"NCBITaxon:497964","l":"Chthoniobacter flavus Ellin428","na":2,"nb":2,"a":[["TED%3AAF-B4CWB8-F1-model_v4_TED01","TED highly-symmetric fold AF-B4CWB8-F1-model_v4_TED01"],["TED%3AAF-B4D4Q6-F1-model_v4_TED01","TED highly-symmetric fold AF-B4D4Q6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A191863","Chthoniobacter flavus"],["NCBITaxon%3A497964","Chthoniobacter flavus Ellin428"]]},{"id":"NCBITaxon:505345","l":"Gallibacterium genomosp. 3","na":2,"nb":2,"a":[["TED%3AAF-A0A1A7NMW7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1A7NMW7-F1-model_v4_TED01"],["TED%3AAF-A0A1A7PT98-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1A7PT98-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A505345","Gallibacterium genomosp. 3"],["NCBITaxon%3A2517781","Gallibacterium sp."]]},{"id":"NCBITaxon:5074","l":"Penicillium brevicompactum","na":2,"nb":2,"a":[["Pfam%3APF09227","Bubble protein"],["Pfam%3APF18558","Methyltransferase, Helix-turn-helix domain"]],"b":[["NCBITaxon%3A1337893","Streptomyces bernensis"],["NCBITaxon%3A5074","Penicillium brevicompactum"]]},{"id":"NCBITaxon:508451","l":"Lactobacillus taiwanensis","na":2,"nb":2,"a":[["TED%3AAF-A0A256LG95-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A256LG95-F1-model_v4_TED04"],["TED%3AAF-A0A8A8VQ16-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8A8VQ16-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A508451","Lactobacillus taiwanensis"],["NCBITaxon%3A1423809","Lactobacillus taiwanensis DSM 21401"]]},{"id":"NCBITaxon:517417","l":"Chlorobaculum parvum NCIB 8327","na":2,"nb":2,"a":[["Pfam%3APF28537","Probable trigger factor, FKBP-like domain"],["Pfam%3APF10643","Photosystem P840 reaction-centre cytochrome c-551"]],"b":[["NCBITaxon%3A274539","Chlorobaculum parvum"],["NCBITaxon%3A517417","Chlorobaculum parvum NCIB 8327"]]},{"id":"NCBITaxon:523794","l":"Leptotrichia buccalis C-1013-b","na":2,"nb":2,"a":[["Pfam%3APF28350","Cas13a C-terminal HEPN-like domain"],["Pfam%3APF28192","CRISPR-associated endoribonuclease Cas13a"]],"b":[["NCBITaxon%3A40542","Leptotrichia buccalis"],["NCBITaxon%3A523794","Leptotrichia buccalis C-1013-b"]]},{"id":"NCBITaxon:523846","l":"Methanothermus fervidus DSM 2088","na":2,"nb":2,"a":[["Pfam%3APF02829","3H domain"],["Pfam%3APF27272","Cyclic 2,3-diphosphoglycerate synthetase, N-terminal domain"]],"b":[["NCBITaxon%3A2180","Methanothermus fervidus"],["NCBITaxon%3A523846","Methanothermus fervidus DSM 2088"]]},{"id":"NCBITaxon:5322","l":"Pleurotus ostreatus","na":2,"nb":2,"a":[["Pfam%3APF14521","Lysine-specific metallo-endopeptidase"],["Pfam%3APF06355","Aegerolysin"]],"b":[["NCBITaxon%3A5322","Pleurotus ostreatus"],["NCBITaxon%3A1137138","Pleurotus ostreatus PC15"]]},{"id":"NCBITaxon:53429","l":"Nocardia flavorosea","na":2,"nb":2,"a":[["TED%3AAF-A0A846YCZ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A846YCZ8-F1-model_v4_TED01"],["TED%3AAF-A0A846YMF9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A846YMF9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A53429","Nocardia flavorosea"],["NCBITaxon%3A1220553","Nocardia flavorosea NBRC 108225"]]},{"id":"NCBITaxon:5482","l":"Candida tropicalis","na":2,"nb":2,"a":[["Pfam%3APF05203","Hom_end-associated Hint"],["Pfam%3APF05204","Homing endonuclease"]],"b":[["NCBITaxon%3A5482","Candida tropicalis"],["NCBITaxon%3A1312901","Candida tropicalis ATCC 200956"]]},{"id":"NCBITaxon:560819","l":"Tistlia consotensis USBA 355","na":2,"nb":2,"a":[["TED%3AAF-A0A1Y6BHA7-F1-model_v4_TED02","TED novel fold AF-A0A1Y6BHA7-F1-model_v4_TED02"],["TED%3AAF-A0A1Y6CS94-F1-model_v4_TED02","TED novel fold AF-A0A1Y6CS94-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1321365","Tistlia consotensis"],["NCBITaxon%3A560819","Tistlia consotensis USBA 355"]]},{"id":"NCBITaxon:5684","l":"Leptomonas seymouri","na":2,"nb":2,"a":[["TED%3AAF-A0A0N0P8Q7-F1-model_v4_TED02","TED novel fold AF-A0A0N0P8Q7-F1-model_v4_TED02"],["TED%3AAF-A0A0N1I6S9-F1-model_v4_TED03","TED novel fold AF-A0A0N1I6S9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A5684","Leptomonas seymouri"],["NCBITaxon%3A1263718","Leptomonas seymouri BHU1095"]]},{"id":"NCBITaxon:572546","l":"Archaeoglobus profundus DSM 5631","na":2,"nb":2,"a":[["TED%3AAF-D2RFB5-F1-model_v4_TED02","TED highly-symmetric fold AF-D2RFB5-F1-model_v4_TED02"],["TED%3AAF-D2RE38-F1-model_v4_TED02","TED novel fold AF-D2RE38-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A84156","Archaeoglobus profundus"],["NCBITaxon%3A572546","Archaeoglobus profundus DSM 5631"]]},{"id":"NCBITaxon:575788","l":"Vibrio atlanticus LGP32","na":2,"nb":2,"a":[["Pfam%3APF17327","Acyl homoserine lactone synthase"],["Pfam%3APF09829","Uncharacterized protein conserved in bacteria (DUF2057)"]],"b":[["NCBITaxon%3A575788","Vibrio atlanticus LGP32"],["NCBITaxon%3A29497","Vibrio splendidus"]]},{"id":"NCBITaxon:580327","l":"Thermoanaerobacterium thermosaccharolyticum DSM 571","na":2,"nb":2,"a":[["Pfam%3APF09861","Lactate racemase N-terminal domain"],["Pfam%3APF21113","Lactate racemase C-terminal domain"]],"b":[["NCBITaxon%3A1517","Thermoanaerobacterium thermosaccharolyticum"],["NCBITaxon%3A580327","Thermoanaerobacterium thermosaccharolyticum DSM 571"]]},{"id":"NCBITaxon:585394","l":"Roseburia hominis A2-183","na":2,"nb":2,"a":[["Pfam%3APF13336","Acetyl-CoA hydrolase/transferase C-terminal domain"],["Pfam%3APF02550","Acetyl-CoA hydrolase/transferase N-terminal domain"]],"b":[["NCBITaxon%3A301301","Roseburia hominis"],["NCBITaxon%3A585394","Roseburia hominis A2-183"]]},{"id":"NCBITaxon:591197","l":"Ignavibacterium album","na":2,"nb":2,"a":[["TED%3AAF-A0A7V3E6U4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7V3E6U4-F1-model_v4_TED03"],["TED%3AAF-A0A7V2ZKR1-F1-model_v4_TED02","TED novel fold AF-A0A7V2ZKR1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A591197","Ignavibacterium album"],["NCBITaxon%3A945713","Ignavibacterium album JCM 16511"]]},{"id":"NCBITaxon:59893","l":"Paenibacillus peoriae","na":2,"nb":2,"a":[["TED%3AAF-A0A0S3KGK3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S3KGK3-F1-model_v4_TED01"],["TED%3AAF-A0A7H0Y2B5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H0Y2B5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A59893","Paenibacillus peoriae"],["NCBITaxon%3A1087481","Paenibacillus peoriae KCTC 3763"]]},{"id":"NCBITaxon:61647","l":"Pluralibacter gergoviae","na":2,"nb":2,"a":[["TED%3AAF-A0A379CWN8-F1-model_v4_TED02","TED novel fold AF-A0A379CWN8-F1-model_v4_TED02"],["TED%3AAF-A0A806NV12-F1-model_v4_TED02","TED novel fold AF-A0A806NV12-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A61647","Pluralibacter gergoviae"],["NCBITaxon%3A1354260","Pluralibacter gergoviae ATCC 33028 = NBRC 105706"]]},{"id":"NCBITaxon:63363","l":"Aquifex aeolicus","na":2,"nb":2,"a":[["TED%3AAF-A0A7C5L434-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C5L434-F1-model_v4_TED01"],["TED%3AAF-A0A7C5L9T1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C5L9T1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A63363","Aquifex aeolicus"],["NCBITaxon%3A224324","Aquifex aeolicus VF5"]]},{"id":"NCBITaxon:64104","l":"Bacillus pseudomycoides","na":2,"nb":2,"a":[["TED%3AAF-A0A1Y3MB62-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y3MB62-F1-model_v4_TED01"],["TED%3AAF-A0A2C4USY5-F1-model_v4_TED01","TED novel fold AF-A0A2C4USY5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A64104","Bacillus pseudomycoides"],["NCBITaxon%3A527000","Bacillus pseudomycoides DSM 12442"]]},{"id":"NCBITaxon:642492","l":"Cellulosilyticum lentocellum DSM 5427","na":2,"nb":2,"a":[["TED%3AAF-F2JHU0-F1-model_v4_TED01","TED highly-symmetric fold AF-F2JHU0-F1-model_v4_TED01"],["TED%3AAF-F2JQ83-F1-model_v4_TED01","TED highly-symmetric fold AF-F2JQ83-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29360","Cellulosilyticum lentocellum"],["NCBITaxon%3A642492","Cellulosilyticum lentocellum DSM 5427"]]},{"id":"NCBITaxon:644107","l":"Ruegeria lacuscaerulensis ITI-1157","na":2,"nb":2,"a":[["Pfam%3APF16867","Dimethlysulfonioproprionate lyase"],["TED%3AAF-D0CYX0-F1-model_v4_TED01","TED novel fold AF-D0CYX0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A55218","Ruegeria lacuscaerulensis"],["NCBITaxon%3A644107","Ruegeria lacuscaerulensis ITI-1157"]]},{"id":"NCBITaxon:647113","l":"Methanothermococcus okinawensis IH1","na":2,"nb":2,"a":[["TED%3AAF-F8ANV0-F1-model_v4_TED01","TED highly-symmetric fold AF-F8ANV0-F1-model_v4_TED01"],["TED%3AAF-F8AK92-F1-model_v4_TED02","TED novel fold AF-F8AK92-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A155863","Methanothermococcus okinawensis"],["NCBITaxon%3A647113","Methanothermococcus okinawensis IH1"]]},{"id":"NCBITaxon:658187","l":"Legionella drancourtii LLAP12","na":2,"nb":2,"a":[["TED%3AAF-G9EK81-F1-model_v4_TED02","TED highly-symmetric fold AF-G9EK81-F1-model_v4_TED02"],["TED%3AAF-G9ERF4-F1-model_v4_TED01","TED novel fold AF-G9ERF4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A168933","Legionella drancourtii"],["NCBITaxon%3A658187","Legionella drancourtii LLAP12"]]},{"id":"NCBITaxon:661367","l":"Legionella longbeachae NSW150","na":2,"nb":2,"a":[["TED%3AAF-D3HM90-F1-model_v4_TED01","TED novel fold AF-D3HM90-F1-model_v4_TED01"],["TED%3AAF-D3HMM1-F1-model_v4_TED01","TED novel fold AF-D3HMM1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A450","Legionella longbeachae"],["NCBITaxon%3A661367","Legionella longbeachae NSW150"]]},{"id":"NCBITaxon:665126","l":"Prosthecodimorpha hirschii","na":2,"nb":2,"a":[["TED%3AAF-A0A0P6VIT9-F1-model_v4_TED02","TED novel fold AF-A0A0P6VIT9-F1-model_v4_TED02"],["TED%3AAF-A0A0P6WHU2-F1-model_v4_TED01","TED novel fold AF-A0A0P6WHU2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A665126","Prosthecodimorpha hirschii"],["NCBITaxon%3A2212461","Prosthecomicrobium sp."]]},{"id":"NCBITaxon:671","l":"Vibrio proteolyticus","na":2,"nb":2,"a":[["Pfam%3APF06165","Glycosyl hydrolase 94, supersandwich domain"],["Pfam%3APF17167","Glycosyl hydrolase 94 superfamily, catalytic domain"]],"b":[["NCBITaxon%3A671","Vibrio proteolyticus"],["NCBITaxon%3A1219065","Vibrio proteolyticus NBRC 13287"]]},{"id":"NCBITaxon:683837","l":"Listeria seeligeri serovar 1/2b str. SLCC3954","na":2,"nb":2,"a":[["Pfam%3APF28350","Cas13a C-terminal HEPN-like domain"],["Pfam%3APF28192","CRISPR-associated endoribonuclease Cas13a"]],"b":[["NCBITaxon%3A1640","Listeria seeligeri"],["NCBITaxon%3A683837","Listeria seeligeri serovar 1/2b str. SLCC3954"]]},{"id":"NCBITaxon:685727","l":"Prescottella equi 103S","na":2,"nb":2,"a":[["Pfam%3APF00150","Cellulase (glycosyl hydrolase family 5)"],["Pfam%3APF18564","Glycoside hydrolase family 5 C-terminal domain"]],"b":[["NCBITaxon%3A43767","Prescottella equi"],["NCBITaxon%3A685727","Prescottella equi 103S"]]},{"id":"NCBITaxon:688246","l":"Hallella multisaccharivorax DSM 17128","na":2,"nb":2,"a":[["TED%3AAF-F8N9C0-F1-model_v4_TED03","TED novel fold AF-F8N9C0-F1-model_v4_TED03"],["TED%3AAF-F8N9F2-F1-model_v4_TED01","TED novel fold AF-F8N9F2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A310514","Hallella multisaccharivorax"],["NCBITaxon%3A688246","Hallella multisaccharivorax DSM 17128"]]},{"id":"NCBITaxon:69","l":"Lysobacter enzymogenes","na":2,"nb":2,"a":[["TED%3AAF-A0A1J1E6A8-F1-model_v4_TED02","TED novel fold AF-A0A1J1E6A8-F1-model_v4_TED02"],["TED%3AAF-A0A7T8MLU2-F1-model_v4_TED03","TED novel fold AF-A0A7T8MLU2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A69","Lysobacter enzymogenes"],["NCBITaxon%3A262324","Lysobacter gummosus"]]},{"id":"NCBITaxon:693979","l":"Bacteroides helcogenes P 36-108","na":2,"nb":2,"a":[["TED%3AAF-E6SVP5-F1-model_v4_TED02","TED highly-symmetric fold AF-E6SVP5-F1-model_v4_TED02"],["TED%3AAF-E6SMX4-F1-model_v4_TED02","TED novel fold AF-E6SMX4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A290053","Bacteroides helcogenes"],["NCBITaxon%3A693979","Bacteroides helcogenes P 36-108"]]},{"id":"NCBITaxon:697329","l":"Hominimerdicola alba 7 = DSM 20455","na":2,"nb":2,"a":[["Pfam%3APF04041","beta-1,4-mannooligosaccharide phosphorylase"],["TED%3AAF-E6UGN9-F1-model_v4_TED01","TED highly-symmetric fold AF-E6UGN9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1264","Hominimerdicola alba"],["NCBITaxon%3A697329","Hominimerdicola alba 7 = DSM 20455"]]},{"id":"NCBITaxon:700598","l":"Niastella koreensis GR20-10","na":2,"nb":2,"a":[["TED%3AAF-G8T8R6-F1-model_v4_TED01","TED highly-symmetric fold AF-G8T8R6-F1-model_v4_TED01"],["TED%3AAF-G8TCY2-F1-model_v4_TED03","TED novel fold AF-G8TCY2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A354356","Niastella koreensis"],["NCBITaxon%3A700598","Niastella koreensis GR20-10"]]},{"id":"NCBITaxon:709032","l":"Sulfuricurvum kujiense DSM 16994","na":2,"nb":2,"a":[["TED%3AAF-E4TWD5-F1-model_v4_TED02","TED highly-symmetric fold AF-E4TWD5-F1-model_v4_TED02"],["TED%3AAF-E4TYW6-F1-model_v4_TED01","TED highly-symmetric fold AF-E4TYW6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A148813","Sulfuricurvum kujiense"],["NCBITaxon%3A709032","Sulfuricurvum kujiense DSM 16994"]]},{"id":"NCBITaxon:74318","l":"Maricaulis maris","na":2,"nb":2,"a":[["TED%3AAF-A0A495D3Q7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A495D3Q7-F1-model_v4_TED02"],["TED%3AAF-A0A495DKG6-F1-model_v4_TED01","TED novel fold AF-A0A495DKG6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A74318","Maricaulis maris"],["NCBITaxon%3A394221","Maricaulis maris MCS10"]]},{"id":"NCBITaxon:746697","l":"Aequorivita sublithincola DSM 14238","na":2,"nb":2,"a":[["TED%3AAF-I3YW66-F1-model_v4_TED01","TED highly-symmetric fold AF-I3YW66-F1-model_v4_TED01"],["TED%3AAF-I3YWC3-F1-model_v4_TED01","TED highly-symmetric fold AF-I3YWC3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A101385","Aequorivita sublithincola"],["NCBITaxon%3A746697","Aequorivita sublithincola DSM 14238"]]},{"id":"NCBITaxon:755732","l":"Fluviicola taffensis DSM 16823","na":2,"nb":2,"a":[["TED%3AAF-F2IER5-F1-model_v4_TED02","TED highly-symmetric fold AF-F2IER5-F1-model_v4_TED02"],["TED%3AAF-F2IDG5-F1-model_v4_TED01","TED novel fold AF-F2IDG5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A191579","Fluviicola taffensis"],["NCBITaxon%3A755732","Fluviicola taffensis DSM 16823"]]},{"id":"NCBITaxon:765913","l":"Thiorhodococcus drewsii AZ1","na":2,"nb":2,"a":[["TED%3AAF-G2E6U1-F1-model_v4_TED01","TED highly-symmetric fold AF-G2E6U1-F1-model_v4_TED01"],["TED%3AAF-G2E738-F1-model_v4_TED01","TED novel fold AF-G2E738-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A210408","Thiorhodococcus drewsii"],["NCBITaxon%3A765913","Thiorhodococcus drewsii AZ1"]]},{"id":"NCBITaxon:79329","l":"Chitinophaga pinensis","na":2,"nb":2,"a":[["TED%3AAF-A0A5C6LK20-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C6LK20-F1-model_v4_TED01"],["TED%3AAF-A0A5C6LKB6-F1-model_v4_TED01","TED novel fold AF-A0A5C6LKB6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A79329","Chitinophaga pinensis"],["NCBITaxon%3A485918","Chitinophaga pinensis DSM 2588"]]},{"id":"NCBITaxon:86049","l":"Cladophialophora carrionii","na":2,"nb":2,"a":[["TED%3AAF-A0A1C1CA15-F1-model_v4_TED03","TED novel fold AF-A0A1C1CA15-F1-model_v4_TED03"],["TED%3AAF-A0A1C1CZQ0-F1-model_v4_TED04","TED novel fold AF-A0A1C1CZQ0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A67367","Streptomyces tanashiensis"],["NCBITaxon%3A86049","Cladophialophora carrionii"]]},{"id":"NCBITaxon:869209","l":"Treponema succinifaciens DSM 2489","na":2,"nb":2,"a":[["TED%3AAF-F2NRP2-F1-model_v4_TED01","TED highly-symmetric fold AF-F2NRP2-F1-model_v4_TED01"],["TED%3AAF-F2NT59-F1-model_v4_TED02","TED highly-symmetric fold AF-F2NT59-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A167","Treponema succinifaciens"],["NCBITaxon%3A869209","Treponema succinifaciens DSM 2489"]]},{"id":"NCBITaxon:869212","l":"Turneriella parva DSM 21527","na":2,"nb":2,"a":[["TED%3AAF-I4B6F4-F1-model_v4_TED01","TED highly-symmetric fold AF-I4B6F4-F1-model_v4_TED01"],["TED%3AAF-I4B9D1-F1-model_v4_TED01","TED highly-symmetric fold AF-I4B9D1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29510","Turneriella parva"],["NCBITaxon%3A869212","Turneriella parva DSM 21527"]]},{"id":"NCBITaxon:876364","l":"Cupriavidus sp. USMAA2-4","na":2,"nb":2,"a":[["TED%3AAF-A0A1D9GSB5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1D9GSB5-F1-model_v4_TED01"],["TED%3AAF-A0A1D9H8X5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1D9H8X5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1873897","Cupriavidus sp."],["NCBITaxon%3A876364","Cupriavidus sp. USMAA2-4"]]},{"id":"NCBITaxon:88382","l":"Promicromonospora sukumoe","na":2,"nb":2,"a":[["TED%3AAF-A0A7W3J7T7-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7W3J7T7-F1-model_v4_TED04"],["TED%3AAF-A0A7W3JDT4-F1-model_v4_TED01","TED novel fold AF-A0A7W3JDT4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A88382","Promicromonospora sukumoe"],["NCBITaxon%3A1172178","Promicromonospora sukumoe 327MFSha3.1"]]},{"id":"NCBITaxon:888832","l":"Segatella salivae DSM 15606","na":2,"nb":2,"a":[["TED%3AAF-E6MT40-F1-model_v4_TED02","TED highly-symmetric fold AF-E6MT40-F1-model_v4_TED02"],["TED%3AAF-E6MS53-F1-model_v4_TED02","TED novel fold AF-E6MS53-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A228604","Segatella salivae"],["NCBITaxon%3A888832","Segatella salivae DSM 15606"]]},{"id":"NCBITaxon:889378","l":"Spirochaeta africana DSM 8902","na":2,"nb":2,"a":[["TED%3AAF-H9UHS0-F1-model_v4_TED01","TED highly-symmetric fold AF-H9UHS0-F1-model_v4_TED01"],["TED%3AAF-H9UIK6-F1-model_v4_TED01","TED novel fold AF-H9UIK6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A46355","Spirochaeta africana"],["NCBITaxon%3A889378","Spirochaeta africana DSM 8902"]]},{"id":"NCBITaxon:912594","l":"Mycolicibacterium iranicum","na":2,"nb":2,"a":[["TED%3AAF-A0A178LVR2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A178LVR2-F1-model_v4_TED02"],["TED%3AAF-A0A178M0U6-F1-model_v4_TED01","TED novel fold AF-A0A178M0U6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A912594","Mycolicibacterium iranicum"],["NCBITaxon%3A1370125","Mycolicibacterium iranicum UM_TJL"]]},{"id":"NCBITaxon:95641","l":"Methylotuvimicrobium buryatense","na":2,"nb":2,"a":[["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"],["Pfam%3APF01011","Glucose/ethanol/alcohol dehydrogenase, beta-propeller domain"]],"b":[["NCBITaxon%3A95641","Methylotuvimicrobium buryatense"],["NCBITaxon%3A675511","Methylotuvimicrobium buryatense 5G"]]},{"id":"NCBITaxon:981334","l":"Acinetobacter radioresistens DSM 6976 = NBRC 102413 = CIP 103788","na":2,"nb":2,"a":[["TED%3AAF-A0A7U9KBJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7U9KBJ8-F1-model_v4_TED01"],["TED%3AAF-A0A7U9KCJ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7U9KCJ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A40216","Acinetobacter radioresistens"],["NCBITaxon%3A981334","Acinetobacter radioresistens DSM 6976 = NBRC 102413 = CIP 103788"]]},{"id":"NCBITaxon:99656","l":"[Clostridium] fimetarium","na":2,"nb":2,"a":[["TED%3AAF-A0A1I0N088-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I0N088-F1-model_v4_TED02"],["TED%3AAF-A0A1I0QS44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I0QS44-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A99656","[Clostridium] fimetarium"],["NCBITaxon%3A1121311","[Clostridium] fimetarium DSM 9179"]]},{"id":"NCBITaxon:997347","l":"Fusobacterium animalis ATCC 51191","na":2,"nb":2,"a":[["TED%3AAF-F9ENM2-F1-model_v4_TED01","TED highly-symmetric fold AF-F9ENM2-F1-model_v4_TED01"],["TED%3AAF-F9ERA5-F1-model_v4_TED03","TED highly-symmetric fold AF-F9ERA5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A76859","Fusobacterium animalis"],["NCBITaxon%3A997347","Fusobacterium animalis ATCC 51191"]]},{"id":"NCBITaxon:2","l":"Bacteria","na":1,"nb":605695,"a":[["proteintraitsmech%3AORTHODB_LEVEL_2","Bacteria orthologous groups (OrthoDB)"]],"b":[["NCBITaxon%3A119160","2,3-D degrading bacterium NHC2"],["NCBITaxon%3A119159","2,3-D degrading bacterium NHG3"],["NCBITaxon%3A103498","2,4-D-degrading bacterium 001"],["NCBITaxon%3A103499","2,4-D-degrading bacterium 007"],["NCBITaxon%3A103492","2,4-D-degrading bacterium 010"],["NCBITaxon%3A103495","2,4-D-degrading bacterium 012"]]},{"id":"NCBITaxon:2157","l":"Archaea","na":1,"nb":14013,"a":[["proteintraitsmech%3AORTHODB_LEVEL_2157","Archaea orthologous groups (OrthoDB)"]],"b":[["NCBITaxon%3A3879924","Abyssiniarchaeum dallolvicinus (SeqCode)"],["NCBITaxon%3A3693715","Acidarchaeum fankouense (SeqCode)"],["NCBITaxon%3A2283","Acidianus ambivalens"],["NCBITaxon%3A41673","Acidianus brierleyi"],["NCBITaxon%3A269667","Acidianus convivator"],["NCBITaxon%3A563177","Acidianus hospitalis"]]},{"id":"NCBITaxon:2759","l":"Eukaryota","na":1,"nb":6243,"a":[["proteintraitsmech%3AORTHODB_LEVEL_2759","Eukaryota orthologous groups (OrthoDB)"]],"b":[["NCBITaxon%3A1450171","Aaosphaeria arxii"],["NCBITaxon%3A749232","Abeoforma whisleri"],["NCBITaxon%3A137743","Abortiporus biennis"],["NCBITaxon%3A420591","Absidia anomala"],["NCBITaxon%3A90261","Absidia caerulea"],["NCBITaxon%3A327741","Absidia californica"]]},{"id":"NCBITaxon:487","l":"Neisseria meningitidis","na":1,"nb":232,"a":[["Pfam%3APF22582","Amylosucrase, C-terminal domain"]],"b":[["NCBITaxon%3A487","Neisseria meningitidis"],["NCBITaxon%3A374833","Neisseria meningitidis 053442"],["NCBITaxon%3A926508","Neisseria meningitidis 1076"],["NCBITaxon%3A926533","Neisseria meningitidis 1101"],["NCBITaxon%3A926506","Neisseria meningitidis 1102"],["NCBITaxon%3A926507","Neisseria meningitidis 115 CB V1"]]},{"id":"NCBITaxon:1978231","l":"Acidobacteriota bacterium","na":186,"nb":1,"a":[["TED%3AAF-A0A2E4W649-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4W649-F1-model_v4_TED01"],["TED%3AAF-A0A2P6WIX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P6WIX4-F1-model_v4_TED01"],["TED%3AAF-A0A2V2RP64-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V2RP64-F1-model_v4_TED01"],["TED%3AAF-A0A2V7TZP2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V7TZP2-F1-model_v4_TED01"],["TED%3AAF-A0A2V7USQ3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V7USQ3-F1-model_v4_TED02"],["TED%3AAF-A0A2V7V8X8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V7V8X8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1978231","Acidobacteriota bacterium"]]},{"id":"NCBITaxon:44689","l":"Dictyostelium discoideum","na":151,"nb":1,"a":[["IDPO%3A0000002","disorder"],["IDPO%3A0000030","entropic chain"],["IDPO%3A0000006","order"],["IDPO%3A0000058","self-activation"],["Pfam%3APF23297","Highly reducing polyketide synthase sdgA, C-terminal ACP domain"],["Pfam%3APF09192","Actin-fragmin kinase, catalytic"]],"b":[["NCBITaxon%3A44689","Dictyostelium discoideum"]]},{"id":"NCBITaxon:59203","l":"Salmonella enterica subsp. arizonae","na":1,"nb":151,"a":[["TED%3AAF-A0A3S4K1T2-F1-model_v4_TED01","TED novel fold AF-A0A3S4K1T2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59203","Salmonella enterica subsp. arizonae"],["NCBITaxon%3A2577126","Salmonella enterica subsp. arizonae serovar 11:z4,z23:-"],["NCBITaxon%3A2577127","Salmonella enterica subsp. arizonae serovar 13,22:z4,z23:-"],["NCBITaxon%3A2691147","Salmonella enterica subsp. arizonae serovar 13,23:g,z51:-"],["NCBITaxon%3A2577128","Salmonella enterica subsp. arizonae serovar 13,23:z4,z23,[z32]:-"]]},{"id":"NCBITaxon:58095","l":"Salmonella enterica subsp. enterica serovar Agona","na":1,"nb":145,"a":[["TED%3AAF-A0A752MZK0-F1-model_v4_TED01","TED novel fold AF-A0A752MZK0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A58095","Salmonella enterica subsp. enterica serovar Agona"],["NCBITaxon%3A1265673","Salmonella enterica subsp. enterica serovar Agona str. 01.O.05"],["NCBITaxon%3A1029989","Salmonella enterica subsp. enterica serovar Agona str. 0292"],["NCBITaxon%3A1265665","Salmonella enterica subsp. enterica serovar Agona str. 02.O.05"],["NCBITaxon%3A1029990","Salmonella enterica subsp. enterica serovar Agona str. 0322"],["NCBITaxon%3A1265636","Salmonella enterica subsp. enterica serovar Agona str. 03.O.05"]]},{"id":"NCBITaxon:2026735","l":"Deltaproteobacteria bacterium","na":134,"nb":1,"a":[["TED%3AAF-A0A2D5SEF5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D5SEF5-F1-model_v4_TED01"],["TED%3AAF-A0A2D5ST50-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D5ST50-F1-model_v4_TED01"],["TED%3AAF-A0A2D7NP73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D7NP73-F1-model_v4_TED01"],["TED%3AAF-A0A2E7MB46-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2E7MB46-F1-model_v4_TED03"],["TED%3AAF-A0A2E9GNR1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E9GNR1-F1-model_v4_TED02"],["TED%3AAF-A0A2E9GV09-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E9GV09-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026735","Deltaproteobacteria bacterium"]]},{"id":"NCBITaxon:71421","l":"Haemophilus influenzae Rd KW20","na":133,"nb":1,"a":[["Pfam%3APF13521","AAA domain"],["Pfam%3APF13654","LonB-like, AAA domain"],["Pfam%3APF16326","ABC transporter C-terminal domain"],["Pfam%3APF13710","ACT domain"],["Pfam%3APF12633","Adenylate cyclase NT domain"],["Pfam%3APF26690","Adenylate cyclase, class-I, third domain"]],"b":[["NCBITaxon%3A71421","Haemophilus influenzae Rd KW20"]]},{"id":"NCBITaxon:1747","l":"Cutibacterium acnes","na":1,"nb":124,"a":[["Pfam%3APF08124","Polysaccharide lyase family 8, N terminal alpha-helical domain"]],"b":[["NCBITaxon%3A1748","Acidipropionibacterium acidipropionici"],["NCBITaxon%3A1171373","Acidipropionibacterium acidipropionici ATCC 4875"],["NCBITaxon%3A1750","Arachnia propionica"],["NCBITaxon%3A38288","Corynebacterium genitalium"],["NCBITaxon%3A585529","Corynebacterium genitalium ATCC 33030"],["NCBITaxon%3A1747","Cutibacterium acnes"]]},{"id":"NCBITaxon:264691","l":"Trichormus variabilis","na":1,"nb":120,"a":[["Pfam%3APF09194","Restriction endonuclease BsobI"]],"b":[["NCBITaxon%3A264691","Trichormus variabilis"],["NCBITaxon%3A375899","Trichormus variabilis 0441"],["NCBITaxon%3A358556","Trichormus variabilis 9CH37S2"],["NCBITaxon%3A2681313","Trichormus variabilis 9RC"],["NCBITaxon%3A1392459","Trichormus variabilis A1"],["NCBITaxon%3A2799915","Trichormus variabilis A2"]]},{"id":"NCBITaxon:2026780","l":"Planctomycetota bacterium","na":119,"nb":1,"a":[["TED%3AAF-A0A2A5DKK7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A5DKK7-F1-model_v4_TED01"],["TED%3AAF-A0A2A5DYX6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A5DYX6-F1-model_v4_TED01"],["TED%3AAF-A0A2D5ATW0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D5ATW0-F1-model_v4_TED01"],["TED%3AAF-A0A2D5AYR3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D5AYR3-F1-model_v4_TED01"],["TED%3AAF-A0A2D5NH55-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D5NH55-F1-model_v4_TED01"],["TED%3AAF-A0A2D5NKW7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D5NKW7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026780","Planctomycetota bacterium"]]},{"id":"NCBITaxon:263","l":"Francisella tularensis","na":1,"nb":117,"a":[["TED%3AAF-A0A6I4RUC7-F1-model_v4_TED02","TED novel fold AF-A0A6I4RUC7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A984129","Francisella cf. novicida Fx1"],["NCBITaxon%3A676032","Francisella cf. tularensis subsp. novicida 3523"],["NCBITaxon%3A263","Francisella tularensis"],["NCBITaxon%3A1367846","Francisella tularensis 99A-2628"],["NCBITaxon%3A545771","Francisella tularensis B-SA"],["NCBITaxon%3A1410527","Francisella tularensis FSC069"]]},{"id":"NCBITaxon:2026724","l":"Chloroflexota bacterium","na":108,"nb":1,"a":[["TED%3AAF-A0A2D9WK23-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9WK23-F1-model_v4_TED01"],["TED%3AAF-A0A2E4F1D3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4F1D3-F1-model_v4_TED01"],["TED%3AAF-A0A2E5E7P4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E5E7P4-F1-model_v4_TED02"],["TED%3AAF-A0A2E5F270-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E5F270-F1-model_v4_TED02"],["TED%3AAF-A0A2E5NZE5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E5NZE5-F1-model_v4_TED01"],["TED%3AAF-A0A2E6WIS4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E6WIS4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026724","Chloroflexota bacterium"]]},{"id":"NCBITaxon:83331","l":"Mycobacterium tuberculosis CDC1551","na":99,"nb":1,"a":[["Pfam%3APF09407","AbiEi antitoxin C-terminal domain"],["Pfam%3APF17668","Acetyltransferase (GNAT) domain"],["Pfam%3APF13480","Acetyltransferase (GNAT) domain"],["Pfam%3APF13527","Acetyltransferase (GNAT) domain"],["Pfam%3APF16701","Adenylate cyclase regulatory domain"],["Pfam%3APF06029","AlkA N-terminal domain"]],"b":[["NCBITaxon%3A83331","Mycobacterium tuberculosis CDC1551"]]},{"id":"NCBITaxon:1883427","l":"Actinomycetes bacterium","na":78,"nb":1,"a":[["TED%3AAF-A0A2E4AXX0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2E4AXX0-F1-model_v4_TED04"],["TED%3AAF-A0A2W4J8T7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W4J8T7-F1-model_v4_TED01"],["TED%3AAF-A0A350SGF5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A350SGF5-F1-model_v4_TED03"],["TED%3AAF-A0A350XSJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A350XSJ9-F1-model_v4_TED01"],["TED%3AAF-A0A3A4PC78-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A4PC78-F1-model_v4_TED01"],["TED%3AAF-A0A3A4PG42-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A4PG42-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1883427","Actinomycetes bacterium"]]},{"id":"NCBITaxon:1764","l":"Mycobacterium avium","na":1,"nb":76,"a":[["Pfam%3APF01882","Protein of unknown function DUF58"]],"b":[["NCBITaxon%3A1764","Mycobacterium avium"],["NCBITaxon%3A1392002","Mycobacterium avium 05-4293"],["NCBITaxon%3A1392001","Mycobacterium avium 09-5983"],["NCBITaxon%3A1235987","Mycobacterium avium 100"],["NCBITaxon%3A1235988","Mycobacterium avium 101"],["NCBITaxon%3A243243","Mycobacterium avium 104"]]},{"id":"NCBITaxon:1898104","l":"Bacteroidota bacterium","na":72,"nb":1,"a":[["TED%3AAF-A0A2A4Q994-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2A4Q994-F1-model_v4_TED03"],["TED%3AAF-A0A2G6GVF6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2G6GVF6-F1-model_v4_TED03"],["TED%3AAF-A0A2T4XGN9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T4XGN9-F1-model_v4_TED01"],["TED%3AAF-A0A317HCP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A317HCP7-F1-model_v4_TED01"],["TED%3AAF-A0A350BLG6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A350BLG6-F1-model_v4_TED01"],["TED%3AAF-A0A350IIQ5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A350IIQ5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1898104","Bacteroidota bacterium"]]},{"id":"NCBITaxon:28183","l":"Leptospira santarosai","na":1,"nb":72,"a":[["TED%3AAF-A0A2P1QYQ7-F1-model_v4_TED01","TED novel fold AF-A0A2P1QYQ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28183","Leptospira santarosai"],["NCBITaxon%3A312171","Leptospira santarosai serovar Alexi"],["NCBITaxon%3A407851","Leptospira santarosai serovar Alice"],["NCBITaxon%3A1049975","Leptospira santarosai serovar Arenal"],["NCBITaxon%3A1085549","Leptospira santarosai serovar Arenal str. 11"],["NCBITaxon%3A1085550","Leptospira santarosai serovar Arenal str. 7"]]},{"id":"NCBITaxon:216816","l":"Bifidobacterium longum","na":1,"nb":69,"a":[["TED%3AAF-A0A413ACI9-F1-model_v4_TED01","TED novel fold AF-A0A413ACI9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1680","Bifidobacterium adolescentis"],["NCBITaxon%3A216816","Bifidobacterium longum"],["NCBITaxon%3A1000567","Bifidobacterium longum 3_1_37DFAAB"],["NCBITaxon%3A1280702","Bifidobacterium longum AGR2137"],["NCBITaxon%3A478445","Bifidobacterium longum BORI"],["NCBITaxon%3A1263059","Bifidobacterium longum CAG:69"]]},{"id":"NCBITaxon:83554","l":"Chlamydia psittaci","na":1,"nb":69,"a":[["Pfam%3APF01345","CLIPPER domain"]],"b":[["NCBITaxon%3A83554","Chlamydia psittaci"],["NCBITaxon%3A1112252","Chlamydia psittaci 01DC11"],["NCBITaxon%3A1221877","Chlamydia psittaci 01DC12"],["NCBITaxon%3A1112253","Chlamydia psittaci 02DC14"],["NCBITaxon%3A1112254","Chlamydia psittaci 02DC15"],["NCBITaxon%3A1112255","Chlamydia psittaci 02DC16"]]},{"id":"NCBITaxon:1913989","l":"Gammaproteobacteria bacterium","na":68,"nb":1,"a":[["TED%3AAF-A0A2D7BTI7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2D7BTI7-F1-model_v4_TED03"],["TED%3AAF-A0A2E0GQK5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E0GQK5-F1-model_v4_TED02"],["TED%3AAF-A0A2E1MNN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E1MNN3-F1-model_v4_TED01"],["TED%3AAF-A0A2E4G9I4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E4G9I4-F1-model_v4_TED02"],["TED%3AAF-A0A2E9KQ70-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E9KQ70-F1-model_v4_TED02"],["TED%3AAF-A0A2G6L7M2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2G6L7M2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1913989","Gammaproteobacteria bacterium"]]},{"id":"NCBITaxon:2026779","l":"Planctomycetaceae bacterium","na":66,"nb":1,"a":[["TED%3AAF-A0A2D4WNH1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D4WNH1-F1-model_v4_TED01"],["TED%3AAF-A0A2D4WRD3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D4WRD3-F1-model_v4_TED01"],["TED%3AAF-A0A2D5S4B7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2D5S4B7-F1-model_v4_TED03"],["TED%3AAF-A0A2D5S7C0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D5S7C0-F1-model_v4_TED01"],["TED%3AAF-A0A2D5YVT9-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A2D5YVT9-F1-model_v4_TED05"],["TED%3AAF-A0A2E0X0G9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E0X0G9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026779","Planctomycetaceae bacterium"]]},{"id":"NCBITaxon:246196","l":"Mycolicibacterium smegmatis MC2 155","na":66,"nb":1,"a":[["Pfam%3APF12806","Acetyl-CoA dehydrogenase C-terminal like"],["Pfam%3APF12897","Aspartate amino-transferase"],["Pfam%3APF05088","Bacterial NAD-glutamate dehydrogenase, catalytic domain"],["Pfam%3APF26519","Biotin synthase auxiliary protein family"],["Pfam%3APF21095","CarD, C-terminal domain"],["Pfam%3APF24607","Arabinofuranosyltransferase D, third carbohydrate binding module"]],"b":[["NCBITaxon%3A246196","Mycolicibacterium smegmatis MC2 155"]]},{"id":"NCBITaxon:1111708","l":"Synechocystis sp. PCC 6803 substr. Kazusa","na":61,"nb":1,"a":[["Pfam%3APF07698","7TM receptor with intracellular HD hydrolase"],["Pfam%3APF07697","7TM-HD extracellular"],["Pfam%3APF11266","Long-chain fatty aldehyde decarbonylase"],["Pfam%3APF21571","Arginine dihydrolase ArgZ-like, C-terminal, first region"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF17886","HSP20-like domain found in ArsA"]],"b":[["NCBITaxon%3A1111708","Synechocystis sp. PCC 6803 substr. Kazusa"]]},{"id":"NCBITaxon:174","l":"Leptospira borgpetersenii","na":1,"nb":61,"a":[["Pfam%3APF01548","Transposase"]],"b":[["NCBITaxon%3A174","Leptospira borgpetersenii"],["NCBITaxon%3A652580","Leptospira borgpetersenii serovar Arborea"],["NCBITaxon%3A1218566","Leptospira borgpetersenii serovar Arborea str. LT2208"],["NCBITaxon%3A508535","Leptospira borgpetersenii serovar Balcanica"],["NCBITaxon%3A280505","Leptospira borgpetersenii serovar Ballum"],["NCBITaxon%3A376921","Leptospira borgpetersenii serovar Castellonis"]]},{"id":"NCBITaxon:2026799","l":"Verrucomicrobiota bacterium","na":59,"nb":1,"a":[["TED%3AAF-A0A2E4G0Z6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E4G0Z6-F1-model_v4_TED02"],["TED%3AAF-A0A2N9NMU0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N9NMU0-F1-model_v4_TED01"],["TED%3AAF-A0A2N9NPU2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N9NPU2-F1-model_v4_TED01"],["TED%3AAF-A0A2V2BWA1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V2BWA1-F1-model_v4_TED02"],["TED%3AAF-A0A2V2C310-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V2C310-F1-model_v4_TED01"],["TED%3AAF-A0A2V2DHS2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V2DHS2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026799","Verrucomicrobiota bacterium"]]},{"id":"NCBITaxon:1869227","l":"bacterium","na":57,"nb":1,"a":[["TED%3AAF-A0A2D6E3L3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D6E3L3-F1-model_v4_TED02"],["TED%3AAF-A0A2D6IMF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D6IMF4-F1-model_v4_TED01"],["TED%3AAF-A0A3N5GA95-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3N5GA95-F1-model_v4_TED02"],["TED%3AAF-A0A3N5I065-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N5I065-F1-model_v4_TED01"],["TED%3AAF-A0A496UYV5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A496UYV5-F1-model_v4_TED02"],["TED%3AAF-A0A4Q3U385-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q3U385-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1869227","bacterium"]]},{"id":"NCBITaxon:233413","l":"Mycobacterium tuberculosis variant bovis AF2122/97","na":52,"nb":1,"a":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF12625","Arabinose-binding domain of AraC transcription regulator, N-term"],["Pfam%3APF21139","Methylcrotonyl-CoA carboxylase, alpha-subunit, BT domain"],["Pfam%3APF09167","Domain of unknown function (DUF1942)"],["Pfam%3APF09438","Domain of unknown function (DUF2017)"],["Pfam%3APF12823","Domain of unknown function (DUF3817)"]],"b":[["NCBITaxon%3A233413","Mycobacterium tuberculosis variant bovis AF2122/97"]]},{"id":"NCBITaxon:1165","l":"Anabaena cylindrica","na":1,"nb":51,"a":[["Pfam%3APF17275","Family of unknown function (DUF5340)"]],"b":[["NCBITaxon%3A136078","Anabaena cf. cylindrica 133"],["NCBITaxon%3A2716356","Anabaena cf. cylindrica BACA0067"],["NCBITaxon%3A136079","Anabaena cf. cylindrica PMC9705"],["NCBITaxon%3A264675","Anabaena cf. cylindrica XP6B"],["NCBITaxon%3A1165","Anabaena cylindrica"],["NCBITaxon%3A425377","Anabaena cylindrica A621"]]},{"id":"NCBITaxon:1184","l":"Leptolyngbya boryana","na":1,"nb":51,"a":[["Pfam%3APF17265","Family of unknown function (DUF5331)"]],"b":[["NCBITaxon%3A1184","Leptolyngbya boryana"],["NCBITaxon%3A2745129","Leptolyngbya boryana ampf9"],["NCBITaxon%3A2048973","Leptolyngbya boryana AV12"],["NCBITaxon%3A3013905","Leptolyngbya boryana BACA0330"],["NCBITaxon%3A3384761","Leptolyngbya boryana BEA 1476B"],["NCBITaxon%3A3024996","Leptolyngbya boryana C132"]]},{"id":"NCBITaxon:2026763","l":"Myxococcales bacterium","na":51,"nb":1,"a":[["TED%3AAF-A0A2E5HQQ8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E5HQQ8-F1-model_v4_TED02"],["TED%3AAF-A0A2E6VRH0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E6VRH0-F1-model_v4_TED01"],["TED%3AAF-A0A2E6VU88-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E6VU88-F1-model_v4_TED01"],["TED%3AAF-A0A2F0AQB0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2F0AQB0-F1-model_v4_TED03"],["TED%3AAF-A0A2F0AS25-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2F0AS25-F1-model_v4_TED01"],["TED%3AAF-A0A356T3G6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A356T3G6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026763","Myxococcales bacterium"]]},{"id":"NCBITaxon:2026742","l":"Gemmatimonadota bacterium","na":49,"nb":1,"a":[["TED%3AAF-A0A2D8UDK3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D8UDK3-F1-model_v4_TED02"],["TED%3AAF-A0A2E8HI53-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E8HI53-F1-model_v4_TED02"],["TED%3AAF-A0A2V7GTY6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2V7GTY6-F1-model_v4_TED03"],["TED%3AAF-A0A2V7KRA4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V7KRA4-F1-model_v4_TED01"],["TED%3AAF-A0A2V7S355-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V7S355-F1-model_v4_TED01"],["TED%3AAF-A0A3M2BQU6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M2BQU6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026742","Gemmatimonadota bacterium"]]},{"id":"NCBITaxon:2026714","l":"Candidatus Bathyarchaeota archaeon","na":48,"nb":1,"a":[["TED%3AAF-A0A2U0S3C7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U0S3C7-F1-model_v4_TED01"],["TED%3AAF-A0A3R7FRL7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R7FRL7-F1-model_v4_TED01"],["TED%3AAF-A0A419JY39-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A419JY39-F1-model_v4_TED02"],["TED%3AAF-A0A497K2R1-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A497K2R1-F1-model_v4_TED04"],["TED%3AAF-A0A497M2J4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A497M2J4-F1-model_v4_TED02"],["TED%3AAF-A0A537DTR3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A537DTR3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026714","Candidatus Bathyarchaeota archaeon"]]},{"id":"NCBITaxon:75695","l":"Umezakia ovalisporum","na":1,"nb":48,"a":[["TED%3AAF-A0A654SF36-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A654SF36-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A75695","Umezakia ovalisporum"],["NCBITaxon%3A543814","Umezakia ovalisporum 1LT27S04"],["NCBITaxon%3A543812","Umezakia ovalisporum 2LT27S02"],["NCBITaxon%3A543813","Umezakia ovalisporum 2LT27S12"],["NCBITaxon%3A2290998","Umezakia ovalisporum A1"],["NCBITaxon%3A985844","Umezakia ovalisporum AB2010/05"]]},{"id":"NCBITaxon:1977087","l":"Pseudomonadota bacterium","na":46,"nb":1,"a":[["TED%3AAF-A0A2E7CHS1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E7CHS1-F1-model_v4_TED02"],["TED%3AAF-A0A2E7CJB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E7CJB9-F1-model_v4_TED01"],["TED%3AAF-A0A2E7CKH3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E7CKH3-F1-model_v4_TED02"],["TED%3AAF-A0A2E7CLD6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2E7CLD6-F1-model_v4_TED04"],["TED%3AAF-A0A2G6CNE9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G6CNE9-F1-model_v4_TED01"],["TED%3AAF-A0A2W4LDI3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W4LDI3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1977087","Pseudomonadota bacterium"]]},{"id":"NCBITaxon:224324","l":"Aquifex aeolicus VF5","na":46,"nb":1,"a":[["IDPO%3A0000018","disorder to molten globule"],["IDPO%3A0000003","molten globule"],["IDPO%3A0000014","order to disorder"],["Pfam%3APF22430","Ago, N-terminal domain"],["Pfam%3APF08843","Nucleotidyl transferase AbiEii toxin, Type IV TA system"],["Pfam%3APF27187","aq_097 APC superfamily transporter"]],"b":[["NCBITaxon%3A224324","Aquifex aeolicus VF5"]]},{"id":"NCBITaxon:2026739","l":"Methanobacteriota archaeon","na":44,"nb":1,"a":[["TED%3AAF-A0A2D6U3C6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D6U3C6-F1-model_v4_TED01"],["TED%3AAF-A0A2D6UU17-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D6UU17-F1-model_v4_TED02"],["TED%3AAF-A0A2E1YFF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E1YFF4-F1-model_v4_TED01"],["TED%3AAF-A0A2E2S7P6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E2S7P6-F1-model_v4_TED02"],["TED%3AAF-A0A2E2TTK1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E2TTK1-F1-model_v4_TED02"],["TED%3AAF-A0A2E3C8C1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2E3C8C1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2026739","Methanobacteriota archaeon"]]},{"id":"NCBITaxon:149391","l":"Salmonella enterica subsp. enterica serovar Braenderup","na":1,"nb":43,"a":[["TED%3AAF-A0A5X8MTY2-F1-model_v4_TED01","TED novel fold AF-A0A5X8MTY2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A149391","Salmonella enterica subsp. enterica serovar Braenderup"],["NCBITaxon%3A1173803","Salmonella enterica subsp. enterica serovar Braenderup str. 0823"],["NCBITaxon%3A1124927","Salmonella enterica subsp. enterica serovar Braenderup str. 700136"],["NCBITaxon%3A1192707","Salmonella enterica subsp. enterica serovar Braenderup str. 85239"]]},{"id":"NCBITaxon:268141","l":"Phormidesmis priestleyi","na":1,"nb":43,"a":[["TED%3AAF-A0A2W4ZQA1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W4ZQA1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A268141","Phormidesmis priestleyi"],["NCBITaxon%3A3051850","Phormidesmis priestleyi 101"],["NCBITaxon%3A3051851","Phormidesmis priestleyi 102"],["NCBITaxon%3A3051852","Phormidesmis priestleyi 103"],["NCBITaxon%3A3438410","Phormidesmis priestleyi 3-1-A_LPP2"],["NCBITaxon%3A1844210","Phormidesmis priestleyi AB 10-10"]]},{"id":"NCBITaxon:456327","l":"Xanthomonas euvesicatoria","na":1,"nb":42,"a":[["Pfam%3APF03377","TAL effector repeat"]],"b":[["NCBITaxon%3A487855","Xanthomonas campestris pv. blepharidis"],["NCBITaxon%3A487857","Xanthomonas campestris pv. carissae"],["NCBITaxon%3A487859","Xanthomonas campestris pv. clerodendri"],["NCBITaxon%3A487860","Xanthomonas campestris pv. convolvuli"],["NCBITaxon%3A279089","Xanthomonas campestris pv. coriandri"],["NCBITaxon%3A487861","Xanthomonas campestris pv. daturae"]]},{"id":"NCBITaxon:340","l":"Xanthomonas campestris pv. campestris","na":1,"nb":41,"a":[["Pfam%3APF22059","Glucuronosyltransferase GumK, N-terminal domain"]],"b":[["NCBITaxon%3A339","Xanthomonas campestris"],["NCBITaxon%3A340","Xanthomonas campestris pv. campestris"],["NCBITaxon%3A1357995","Xanthomonas campestris pv. campestris str. 147"],["NCBITaxon%3A314565","Xanthomonas campestris pv. campestris str. 8004"],["NCBITaxon%3A190485","Xanthomonas campestris pv. campestris str. ATCC 33913"],["NCBITaxon%3A509169","Xanthomonas campestris pv. campestris str. B100"]]},{"id":"NCBITaxon:2052180","l":"Phycisphaerales bacterium","na":40,"nb":1,"a":[["TED%3AAF-A0A349UME3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A349UME3-F1-model_v4_TED02"],["TED%3AAF-A0A349UPM2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A349UPM2-F1-model_v4_TED02"],["TED%3AAF-A0A349UQM8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A349UQM8-F1-model_v4_TED02"],["TED%3AAF-A0A357C0B5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A357C0B5-F1-model_v4_TED01"],["TED%3AAF-A0A3D0JYL5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D0JYL5-F1-model_v4_TED01"],["TED%3AAF-A0A6P2AJ98-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6P2AJ98-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052180","Phycisphaerales bacterium"]]},{"id":"NCBITaxon:367110","l":"Neurospora crassa OR74A","na":40,"nb":1,"a":[["Pfam%3APF08509","Adenylate cyclase G-alpha binding domain"],["Pfam%3APF25026","Asd-4-like domain"],["Pfam%3APF21334","Fungal epsilon subunit of F1F0-ATP synthase C-terminal domain"],["Pfam%3APF20238","Copper acquisition factor BIM1-like"],["Pfam%3APF21492","Ribosomal protein L31p, N-terminal"],["Pfam%3APF00734","Fungal cellulose binding domain"]],"b":[["NCBITaxon%3A367110","Neurospora crassa OR74A"]]},{"id":"NCBITaxon:595","l":"Salmonella enterica subsp. enterica serovar Infantis","na":1,"nb":40,"a":[["Pfam%3APF12728","Helix-turn-helix domain"]],"b":[["NCBITaxon%3A595","Salmonella enterica subsp. enterica serovar Infantis"],["NCBITaxon%3A1173851","Salmonella enterica subsp. enterica serovar Infantis str. 0662"],["NCBITaxon%3A1329901","Salmonella enterica subsp. enterica serovar Infantis str. 119944"],["NCBITaxon%3A1347789","Salmonella enterica subsp. enterica serovar Infantis str. 335-3"],["NCBITaxon%3A1192724","Salmonella enterica subsp. enterica serovar Infantis str. 79108"],["NCBITaxon%3A1192725","Salmonella enterica subsp. enterica serovar Infantis str. 81164"]]},{"id":"NCBITaxon:1879010","l":"Bacillota bacterium","na":39,"nb":1,"a":[["TED%3AAF-A0A2V2EW79-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V2EW79-F1-model_v4_TED02"],["TED%3AAF-A0A2V2GI07-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V2GI07-F1-model_v4_TED01"],["TED%3AAF-A0A316N6L2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A316N6L2-F1-model_v4_TED01"],["TED%3AAF-A0A348VYN1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A348VYN1-F1-model_v4_TED01"],["TED%3AAF-A0A350BI57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A350BI57-F1-model_v4_TED01"],["TED%3AAF-A0A351SP42-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A351SP42-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1879010","Bacillota bacterium"]]},{"id":"NCBITaxon:1913988","l":"Alphaproteobacteria bacterium","na":38,"nb":1,"a":[["TED%3AAF-A0A2A4UMX6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A4UMX6-F1-model_v4_TED01"],["TED%3AAF-A0A2A4YY25-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2A4YY25-F1-model_v4_TED02"],["TED%3AAF-A0A2D6WF12-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D6WF12-F1-model_v4_TED02"],["TED%3AAF-A0A349MJ15-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349MJ15-F1-model_v4_TED01"],["TED%3AAF-A0A349MKS3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349MKS3-F1-model_v4_TED01"],["TED%3AAF-A0A356FV58-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A356FV58-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1913988","Alphaproteobacteria bacterium"]]},{"id":"NCBITaxon:47715","l":"Lacticaseibacillus rhamnosus","na":1,"nb":38,"a":[["Pfam%3APF04914","DltD protein"]],"b":[["NCBITaxon%3A1597","Lacticaseibacillus paracasei"],["NCBITaxon%3A47715","Lacticaseibacillus rhamnosus"],["NCBITaxon%3A1381116","Lacticaseibacillus rhamnosus 2166"],["NCBITaxon%3A1408180","Lacticaseibacillus rhamnosus 51B"],["NCBITaxon%3A1002365","Lacticaseibacillus rhamnosus ATCC 21052"],["NCBITaxon%3A1088720","Lacticaseibacillus rhamnosus ATCC 8530"]]},{"id":"NCBITaxon:747","l":"Pasteurella multocida","na":1,"nb":38,"a":[["TED%3AAF-A0A8A8HHD5-F1-model_v4_TED02","TED novel fold AF-A0A8A8HHD5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A714","Aggregatibacter actinomycetemcomitans"],["NCBITaxon%3A747","Pasteurella multocida"],["NCBITaxon%3A1298929","Pasteurella multocida 1500C"],["NCBITaxon%3A1298924","Pasteurella multocida 1500E"],["NCBITaxon%3A1298925","Pasteurella multocida 2000"],["NCBITaxon%3A1075089","Pasteurella multocida 36950"]]},{"id":"NCBITaxon:1590","l":"Lactiplantibacillus plantarum","na":1,"nb":36,"a":[["Pfam%3APF06314","Acetoacetate decarboxylase (ADC)"]],"b":[["NCBITaxon%3A271881","Lactiplantibacillus argentoratensis"],["NCBITaxon%3A1423831","Lactiplantibacillus argentoratensis DSM 16365"],["NCBITaxon%3A60520","Lactiplantibacillus paraplantarum"],["NCBITaxon%3A1590","Lactiplantibacillus plantarum"],["NCBITaxon%3A1327988","Lactiplantibacillus plantarum 16"],["NCBITaxon%3A1399793","Lactiplantibacillus plantarum 19L3"]]},{"id":"NCBITaxon:54736","l":"Salmonella bongori","na":1,"nb":36,"a":[["TED%3AAF-A0A698W123-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A698W123-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A54736","Salmonella bongori"],["NCBITaxon%3A1299281","Salmonella bongori CFSAN000509"],["NCBITaxon%3A1299282","Salmonella bongori CFSAN000510"],["NCBITaxon%3A1197719","Salmonella bongori N268-08"],["NCBITaxon%3A218493","Salmonella bongori NCTC 12419"],["NCBITaxon%3A2577113","Salmonella bongori serovar 13,22:r:-"]]},{"id":"NCBITaxon:1898203","l":"Lachnospiraceae bacterium","na":35,"nb":1,"a":[["TED%3AAF-A0A2G3Q064-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G3Q064-F1-model_v4_TED01"],["TED%3AAF-A0A316PVU3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A316PVU3-F1-model_v4_TED02"],["TED%3AAF-A0A349YHB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349YHB4-F1-model_v4_TED01"],["TED%3AAF-A0A349ZVK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349ZVK2-F1-model_v4_TED01"],["TED%3AAF-A0A354ID29-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A354ID29-F1-model_v4_TED04"],["TED%3AAF-A0A355NJL5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A355NJL5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1898203","Lachnospiraceae bacterium"]]},{"id":"NCBITaxon:268115","l":"Shackletoniella antarctica","na":1,"nb":34,"a":[["TED%3AAF-A0A2W4VQ15-F1-model_v4_TED03","TED novel fold AF-A0A2W4VQ15-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2153382","Leptolyngbya cf. antarctica ULC090"],["NCBITaxon%3A268115","Shackletoniella antarctica"],["NCBITaxon%3A3065884","Shackletoniella antarctica ACKU671"],["NCBITaxon%3A3065885","Shackletoniella antarctica ACKU672"],["NCBITaxon%3A268119","Shackletoniella antarctica ANT.BFI.1"],["NCBITaxon%3A268126","Shackletoniella antarctica ANT.L18.1"]]},{"id":"NCBITaxon:438","l":"Acetobacter pasteurianus","na":1,"nb":34,"a":[["TED%3AAF-A0A1A0CE09-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1A0CE09-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A435","Acetobacter aceti"],["NCBITaxon%3A178900","Acetobacter cerevisiae"],["NCBITaxon%3A1307903","Acetobacter cerevisiae DSM 14362"],["NCBITaxon%3A1737472","Acetobacter conturbans"],["NCBITaxon%3A104097","Acetobacter estunensis"],["NCBITaxon%3A104101","Acetobacter indonesiensis"]]},{"id":"NCBITaxon:2026778","l":"Phycisphaerae bacterium","na":33,"nb":1,"a":[["TED%3AAF-A0A2D6LLD2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D6LLD2-F1-model_v4_TED01"],["TED%3AAF-A0A2D9C3W2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2D9C3W2-F1-model_v4_TED03"],["TED%3AAF-A0A2D9CC21-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9CC21-F1-model_v4_TED01"],["TED%3AAF-A0A2D9CGW5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9CGW5-F1-model_v4_TED01"],["TED%3AAF-A0A2E0XWN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0XWN7-F1-model_v4_TED01"],["TED%3AAF-A0A2E3Q3Y9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2E3Q3Y9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2026778","Phycisphaerae bacterium"]]},{"id":"NCBITaxon:2026801","l":"Verrucomicrobiales bacterium","na":33,"nb":1,"a":[["TED%3AAF-A0A2D5AKS0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D5AKS0-F1-model_v4_TED01"],["TED%3AAF-A0A2D9K0M4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9K0M4-F1-model_v4_TED01"],["TED%3AAF-A0A2E0QW10-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0QW10-F1-model_v4_TED01"],["TED%3AAF-A0A2E5EQN4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E5EQN4-F1-model_v4_TED02"],["TED%3AAF-A0A2E5WTV4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E5WTV4-F1-model_v4_TED01"],["TED%3AAF-A0A350EXF0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A350EXF0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026801","Verrucomicrobiales bacterium"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":32,"nb":1,"a":[["Pfam%3APF25848","Rodlin protein"],["Pfam%3APF13420","Acetyltransferase (GNAT) domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF26381","BREX System ATPase PglY protein 5th domain"],["Pfam%3APF26382","BREX System ATPase PglY protein 6th domain"]],"b":[["NCBITaxon%3A100226","Streptomyces coelicolor A3(2)"]]},{"id":"NCBITaxon:170187","l":"Streptococcus pneumoniae TIGR4","na":32,"nb":1,"a":[["Pfam%3APF25935","LcnD-like, barrel-sandwich hybrid domain"],["Pfam%3APF22637","BppA domain 1"],["Pfam%3APF18146","Damage-inducible protein CinA KH domain"],["Pfam%3APF27342","ComB N-terminal domain"],["Pfam%3APF26697","Competence protein ComGC, C-terminal domain"],["Pfam%3APF23117","DpnD N-terminal domain"]],"b":[["NCBITaxon%3A170187","Streptococcus pneumoniae TIGR4"]]},{"id":"NCBITaxon:196","l":"Campylobacter fetus","na":1,"nb":32,"a":[["TED%3AAF-A0A7D7Q980-F1-model_v4_TED02","TED novel fold AF-A0A7D7Q980-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A196","Campylobacter fetus"],["NCBITaxon%3A32019","Campylobacter fetus subsp. fetus"],["NCBITaxon%3A1240980","Campylobacter fetus subsp. fetus 04/554"],["NCBITaxon%3A360106","Campylobacter fetus subsp. fetus 82-40"],["NCBITaxon%3A1273268","Campylobacter fetus subsp. fetus BT 10/98"],["NCBITaxon%3A1273130","Campylobacter fetus subsp. fetus cff110800-21-2"]]},{"id":"NCBITaxon:89957","l":"Polarella glacialis","na":31,"nb":1,"a":[["TED%3AAF-A0A813DR61-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A813DR61-F1-model_v4_TED02"],["TED%3AAF-A0A813EZ41-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A813EZ41-F1-model_v4_TED01"],["TED%3AAF-A0A813F2F6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A813F2F6-F1-model_v4_TED02"],["TED%3AAF-A0A813FUK9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A813FUK9-F1-model_v4_TED01"],["TED%3AAF-A0A813FWP3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A813FWP3-F1-model_v4_TED03"],["TED%3AAF-A0A813FX44-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A813FX44-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A89957","Polarella glacialis"]]},{"id":"NCBITaxon:2021391","l":"Flavobacteriales bacterium","na":30,"nb":1,"a":[["TED%3AAF-A0A2A4YEP9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A4YEP9-F1-model_v4_TED01"],["TED%3AAF-A0A2A5AVN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A5AVN3-F1-model_v4_TED01"],["TED%3AAF-A0A2A5G2T9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2A5G2T9-F1-model_v4_TED02"],["TED%3AAF-A0A2D8WDN1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D8WDN1-F1-model_v4_TED02"],["TED%3AAF-A0A2E6QTX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E6QTX7-F1-model_v4_TED01"],["TED%3AAF-A0A2E6SXH5-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2E6SXH5-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2021391","Flavobacteriales bacterium"]]},{"id":"NCBITaxon:2030927","l":"Bacteroidales bacterium","na":30,"nb":1,"a":[["TED%3AAF-A0A352Z0C5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A352Z0C5-F1-model_v4_TED01"],["TED%3AAF-A0A353YZA1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A353YZA1-F1-model_v4_TED02"],["TED%3AAF-A0A3D2HK01-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3D2HK01-F1-model_v4_TED03"],["TED%3AAF-A0A3N5EPM0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3N5EPM0-F1-model_v4_TED03"],["TED%3AAF-A0A4U1GQT3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U1GQT3-F1-model_v4_TED01"],["TED%3AAF-A0A6I0E1S9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I0E1S9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2030927","Bacteroidales bacterium"]]},{"id":"NCBITaxon:2052143","l":"Anaerolineae bacterium","na":30,"nb":1,"a":[["TED%3AAF-A0A521T0W4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A521T0W4-F1-model_v4_TED02"],["TED%3AAF-A0A7C3CL15-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C3CL15-F1-model_v4_TED02"],["TED%3AAF-A0A7C3W5I8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C3W5I8-F1-model_v4_TED01"],["TED%3AAF-A0A7C3YC23-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C3YC23-F1-model_v4_TED01"],["TED%3AAF-A0A7C5UU49-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A7C5UU49-F1-model_v4_TED05"],["TED%3AAF-A0A7C5YS47-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C5YS47-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2052143","Anaerolineae bacterium"]]},{"id":"NCBITaxon:272947","l":"Rickettsia prowazekii str. Madrid E","na":30,"nb":1,"a":[["Pfam%3APF16998","17 kDa outer membrane surface antigen"],["Pfam%3APF11020","Domain of unknown function (DUF2610)"],["Pfam%3APF13441","YMGG-like Gly-zipper"],["Pfam%3APF18324","Bacterial isocitrate dehydrogenase, C-terminal domain"],["Pfam%3APF18640","LepB N-terminal domain"],["Pfam%3APF04392","ABC transporter substrate binding protein"]],"b":[["NCBITaxon%3A272947","Rickettsia prowazekii str. Madrid E"]]},{"id":"NCBITaxon:129910","l":"Limnospira maxima","na":1,"nb":29,"a":[["Pfam%3APF09150","Orange carotenoid protein, N-terminal"]],"b":[["NCBITaxon%3A129910","Limnospira maxima"],["NCBITaxon%3A652024","Limnospira maxima BJ 2000"],["NCBITaxon%3A1193116","Limnospira maxima CCC481"],["NCBITaxon%3A293862","Limnospira maxima CONC-040"],["NCBITaxon%3A513049","Limnospira maxima CS-328"],["NCBITaxon%3A1346522","Limnospira maxima CY-023"]]},{"id":"NCBITaxon:1596","l":"Lactobacillus gasseri","na":1,"nb":29,"a":[["TED%3AAF-A0A845FIT3-F1-model_v4_TED02","TED novel fold AF-A0A845FIT3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A305793","Companilactobacillus nantensis"],["NCBITaxon%3A1596","Lactobacillus gasseri"],["NCBITaxon%3A440498","Lactobacillus gasseri 1151"],["NCBITaxon%3A1403312","Lactobacillus gasseri 130918"],["NCBITaxon%3A1346615","Lactobacillus gasseri 2016"],["NCBITaxon%3A630527","Lactobacillus gasseri 202-4"]]},{"id":"NCBITaxon:1898204","l":"Clostridiaceae bacterium","na":29,"nb":1,"a":[["TED%3AAF-A0A7C6HD61-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C6HD61-F1-model_v4_TED02"],["TED%3AAF-A0A7C6HNV7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C6HNV7-F1-model_v4_TED01"],["TED%3AAF-A0A7V6L6S6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7V6L6S6-F1-model_v4_TED02"],["TED%3AAF-A0A7V6W7J0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7V6W7J0-F1-model_v4_TED03"],["TED%3AAF-A0A7X4ZH89-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X4ZH89-F1-model_v4_TED01"],["TED%3AAF-A0A7X6VJ94-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7X6VJ94-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1898204","Clostridiaceae bacterium"]]},{"id":"NCBITaxon:1932692","l":"Lentisphaerota bacterium","na":29,"nb":1,"a":[["TED%3AAF-A0A2V2GUJ0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2V2GUJ0-F1-model_v4_TED03"],["TED%3AAF-A0A7C5AIX1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C5AIX1-F1-model_v4_TED02"],["TED%3AAF-A0A7C5EJG1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C5EJG1-F1-model_v4_TED01"],["TED%3AAF-A0A7V6HEL0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7V6HEL0-F1-model_v4_TED02"],["TED%3AAF-A0A7V6HGC0-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A7V6HGC0-F1-model_v4_TED06"],["TED%3AAF-A0A7V6LFG8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7V6LFG8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1932692","Lentisphaerota bacterium"]]},{"id":"NCBITaxon:47770","l":"Lactobacillus crispatus","na":1,"nb":29,"a":[["TED%3AAF-A0A4R6CRR7-F1-model_v4_TED01","TED novel fold AF-A0A4R6CRR7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1579","Lactobacillus acidophilus"],["NCBITaxon%3A47770","Lactobacillus crispatus"],["NCBITaxon%3A575595","Lactobacillus crispatus 125-2-CHN"],["NCBITaxon%3A1381118","Lactobacillus crispatus 2029"],["NCBITaxon%3A679188","Lactobacillus crispatus 214-1"],["NCBITaxon%3A440496","Lactobacillus crispatus CTV-05"]]},{"id":"NCBITaxon:1335","l":"Streptococcus equinus","na":1,"nb":27,"a":[["TED%3AAF-A0A1V0GLT7-F1-model_v4_TED01","TED novel fold AF-A0A1V0GLT7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1335","Streptococcus equinus"],["NCBITaxon%3A1410675","Streptococcus equinus 2B"],["NCBITaxon%3A1210006","Streptococcus equinus ATCC 33317"],["NCBITaxon%3A864569","Streptococcus equinus ATCC 700338"],["NCBITaxon%3A525379","Streptococcus equinus ATCC 9812"],["NCBITaxon%3A1280690","Streptococcus equinus B315"]]},{"id":"NCBITaxon:319705","l":"Mycobacteroides abscessus subsp. bolletii","na":1,"nb":27,"a":[["TED%3AAF-A0A8B4E570-F1-model_v4_TED01","TED novel fold AF-A0A8B4E570-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A36809","Mycobacteroides abscessus"],["NCBITaxon%3A1185650","Mycobacteroides abscessus subsp. abscessus"],["NCBITaxon%3A319705","Mycobacteroides abscessus subsp. bolletii"],["NCBITaxon%3A1299325","Mycobacteroides abscessus subsp. bolletii 103"],["NCBITaxon%3A1299321","Mycobacteroides abscessus subsp. bolletii 1513"],["NCBITaxon%3A1001704","Mycobacteroides abscessus subsp. bolletii 1S-151-0930"]]},{"id":"NCBITaxon:510516","l":"Aspergillus oryzae RIB40","na":27,"nb":1,"a":[["Pfam%3APF09260","Alpha-amylase, domain C"],["Pfam%3APF28338","AclK C-terminal domain"],["Pfam%3APF09206","Alpha-L-arabinofuranosidase B, catalytic"],["Pfam%3APF28380","Sesquiterpene cyclase astC-like C-terminal domain"],["Pfam%3APF13364","Beta-galactosidase second all-beta domain"],["Pfam%3APF10435","Beta-galactosidase, domain 2"]],"b":[["NCBITaxon%3A510516","Aspergillus oryzae RIB40"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. PCC 7120 = FACHB-418","na":26,"nb":1,"a":[["Pfam%3APF27270","Alr1449"],["Pfam%3APF27301","Alr2735 N-terminal domain"],["Pfam%3APF27288","Alr2735"],["Pfam%3APF21571","Arginine dihydrolase ArgZ-like, C-terminal, first region"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF13205","Bacterial Ig-like domain"]],"b":[["NCBITaxon%3A103690","Nostoc sp. PCC 7120 = FACHB-418"]]},{"id":"NCBITaxon:2026800","l":"Verrucomicrobiaceae bacterium","na":26,"nb":1,"a":[["TED%3AAF-A0A2E4GNC6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4GNC6-F1-model_v4_TED01"],["TED%3AAF-A0A2E5XI32-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E5XI32-F1-model_v4_TED01"],["TED%3AAF-A0A4Q2XDM6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Q2XDM6-F1-model_v4_TED02"],["TED%3AAF-A0A4Q2YNJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q2YNJ9-F1-model_v4_TED01"],["TED%3AAF-A0A4Q2Z5Y8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Q2Z5Y8-F1-model_v4_TED02"],["TED%3AAF-A0A4Q2ZFM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q2ZFM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026800","Verrucomicrobiaceae bacterium"]]},{"id":"NCBITaxon:2371","l":"Xylella fastidiosa","na":1,"nb":26,"a":[["TED%3AAF-A0A1L2B4G6-F1-model_v4_TED02","TED novel fold AF-A0A1L2B4G6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A329529","environmental samples"],["NCBITaxon%3A329530","uncultured Xylella fastidiosa"],["NCBITaxon%3A2371","Xylella fastidiosa"],["NCBITaxon%3A1214121","Xylella fastidiosa 32"],["NCBITaxon%3A1211847","Xylella fastidiosa 6c"],["NCBITaxon%3A160492","Xylella fastidiosa 9a5c"]]},{"id":"NCBITaxon:272561","l":"Chlamydia trachomatis D/UW-3/CX","na":26,"nb":1,"a":[["Pfam%3APF09825","Biotin-protein ligase, N terminal"],["Pfam%3APF01308","Chlamydia major outer membrane protein"],["Pfam%3APF07577","Domain of Unknown Function (DUF1547)"],["Pfam%3APF27167","GRAD helix-turn-helix domain"],["Pfam%3APF00950","ABC 3 transport family"],["Pfam%3APF07548","Chlamydia polymorphic membrane protein middle domain"]],"b":[["NCBITaxon%3A272561","Chlamydia trachomatis D/UW-3/CX"]]},{"id":"NCBITaxon:28182","l":"Leptospira noguchii","na":1,"nb":26,"a":[["TED%3AAF-A0A540THB7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A540THB7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28182","Leptospira noguchii"],["NCBITaxon%3A508575","Leptospira noguchii serovar Argentiniensis"],["NCBITaxon%3A2608988","Leptospira noguchii serovar Australis"],["NCBITaxon%3A1085539","Leptospira noguchii serovar Autumnalis"],["NCBITaxon%3A1085540","Leptospira noguchii serovar Autumnalis str. ZUN142"],["NCBITaxon%3A508576","Leptospira noguchii serovar Carimagua"]]},{"id":"NCBITaxon:45916","l":"Nostoc ellipsosporum","na":1,"nb":25,"a":[["Pfam%3APF08881","CVNH domain"]],"b":[["NCBITaxon%3A45916","Nostoc ellipsosporum"],["NCBITaxon%3A1565566","Nostoc ellipsosporum AUS-JR/BS/MS/NT-049"],["NCBITaxon%3A1565585","Nostoc ellipsosporum AUS-JR/MT/NT-043"],["NCBITaxon%3A1887373","Nostoc ellipsosporum AUS-JR/MT/NT-102"],["NCBITaxon%3A1887374","Nostoc ellipsosporum AUS-JR/MT/NT-129"],["NCBITaxon%3A1510454","Nostoc ellipsosporum BTA 1075"]]},{"id":"NCBITaxon:2033014","l":"Armatimonadota bacterium","na":24,"nb":1,"a":[["TED%3AAF-A0A351MPS6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A351MPS6-F1-model_v4_TED01"],["TED%3AAF-A0A3D4ZVL2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D4ZVL2-F1-model_v4_TED02"],["TED%3AAF-A0A3D5A2W0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D5A2W0-F1-model_v4_TED01"],["TED%3AAF-A0A5M4DGB7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5M4DGB7-F1-model_v4_TED01"],["TED%3AAF-A0A7C2QLV6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7C2QLV6-F1-model_v4_TED03"],["TED%3AAF-A0A7C2VIR9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C2VIR9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2033014","Armatimonadota bacterium"]]},{"id":"NCBITaxon:2053489","l":"Promethearchaeota archaeon","na":24,"nb":1,"a":[["TED%3AAF-A0A497QJ17-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A497QJ17-F1-model_v4_TED02"],["TED%3AAF-A0A523RAE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A523RAE6-F1-model_v4_TED01"],["TED%3AAF-A0A524CXP6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A524CXP6-F1-model_v4_TED02"],["TED%3AAF-A0A524DLR2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A524DLR2-F1-model_v4_TED01"],["TED%3AAF-A0A524EDL8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A524EDL8-F1-model_v4_TED01"],["TED%3AAF-A0A524EZ17-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A524EZ17-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053489","Promethearchaeota archaeon"]]},{"id":"NCBITaxon:2925","l":"Alexandrium catenella","na":24,"nb":1,"a":[["TED%3AAF-A0A7S1KY03-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1KY03-F1-model_v4_TED01"],["TED%3AAF-A0A7S1L1S9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S1L1S9-F1-model_v4_TED02"],["TED%3AAF-A0A7S1ML43-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1ML43-F1-model_v4_TED01"],["TED%3AAF-A0A7S1PQ85-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1PQ85-F1-model_v4_TED01"],["TED%3AAF-A0A7S1QA17-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A7S1QA17-F1-model_v4_TED05"],["TED%3AAF-A0A7S1QL55-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S1QL55-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2925","Alexandrium catenella"]]},{"id":"NCBITaxon:2951","l":"Symbiodinium microadriaticum","na":24,"nb":1,"a":[["TED%3AAF-A0A1Q9CNX9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1Q9CNX9-F1-model_v4_TED03"],["TED%3AAF-A0A1Q9CU81-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q9CU81-F1-model_v4_TED01"],["TED%3AAF-A0A1Q9D1A1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q9D1A1-F1-model_v4_TED01"],["TED%3AAF-A0A1Q9DLT2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q9DLT2-F1-model_v4_TED01"],["TED%3AAF-A0A812J082-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A812J082-F1-model_v4_TED04"],["TED%3AAF-A0A812LXI9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812LXI9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2951","Symbiodinium microadriaticum"]]},{"id":"NCBITaxon:471","l":"Acinetobacter calcoaceticus","na":1,"nb":24,"a":[["TED%3AAF-A0A1A0GJD3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1A0GJD3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A471","Acinetobacter calcoaceticus"],["NCBITaxon%3A1295710","Acinetobacter calcoaceticus 639"],["NCBITaxon%3A1295711","Acinetobacter calcoaceticus 642"],["NCBITaxon%3A1295712","Acinetobacter calcoaceticus 648"],["NCBITaxon%3A1295713","Acinetobacter calcoaceticus 665"]]},{"id":"NCBITaxon:73915","l":"Pyrodinium bahamense","na":24,"nb":1,"a":[["TED%3AAF-A0A7S0A4R5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0A4R5-F1-model_v4_TED01"],["TED%3AAF-A0A7S0AC67-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0AC67-F1-model_v4_TED01"],["TED%3AAF-A0A7S0APM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0APM3-F1-model_v4_TED01"],["TED%3AAF-A0A7S0AQ53-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0AQ53-F1-model_v4_TED01"],["TED%3AAF-A0A7S0AX35-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0AX35-F1-model_v4_TED01"],["TED%3AAF-A0A7S0B705-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S0B705-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A73915","Pyrodinium bahamense"]]},{"id":"NCBITaxon:243276","l":"Treponema pallidum subsp. pallidum str. Nichols","na":23,"nb":1,"a":[["Pfam%3APF02424","ApbE family"],["Pfam%3APF27473","Cytoplasmic filament protein A C-terminal domain"],["Pfam%3APF13189","Cytidylate kinase-like family"],["Pfam%3APF10895","Domain of unknown function (DUF2715)"],["Pfam%3APF25843","Domain of unknown function (DUF7954)"],["Pfam%3APF25844","Domain of unknown function (DUF7955)"]],"b":[["NCBITaxon%3A243276","Treponema pallidum subsp. pallidum str. Nichols"]]},{"id":"NCBITaxon:266834","l":"Sinorhizobium meliloti 1021","na":23,"nb":1,"a":[["Pfam%3APF13279","Thioesterase-like superfamily"],["Pfam%3APF26956","ACR family N-terminal ACT domain"],["Pfam%3APF27143","Atu0565 family"],["Pfam%3APF27488","BioS helical-like domain"],["Pfam%3APF05853","beta-keto acid cleavage enzyme"],["Pfam%3APF13746","4Fe-4S dicluster domain"]],"b":[["NCBITaxon%3A266834","Sinorhizobium meliloti 1021"]]},{"id":"NCBITaxon:29497","l":"Vibrio splendidus","na":1,"nb":23,"a":[["TED%3AAF-A0A2N7ELI8-F1-model_v4_TED01","TED novel fold AF-A0A2N7ELI8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A693153","Vibrio atlanticus"],["NCBITaxon%3A29497","Vibrio splendidus"],["NCBITaxon%3A1191312","Vibrio splendidus 0407ZC148"],["NCBITaxon%3A314291","Vibrio splendidus 12B01"],["NCBITaxon%3A1191305","Vibrio splendidus 12E03"],["NCBITaxon%3A530557","Vibrio splendidus 12F01"]]},{"id":"NCBITaxon:59207","l":"Salmonella enterica subsp. indica","na":1,"nb":23,"a":[["TED%3AAF-A0A379YMR2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A379YMR2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59207","Salmonella enterica subsp. indica"],["NCBITaxon%3A3462441","Salmonella enterica subsp. indica 6,14:a:e,n,x"],["NCBITaxon%3A2577555","Salmonella enterica subsp. indica serovar 11:a:1,5"],["NCBITaxon%3A1160774","Salmonella enterica subsp. indica serovar 11:b:1,7"],["NCBITaxon%3A1307499","Salmonella enterica subsp. indica serovar 11:b:e,n,x"]]},{"id":"NCBITaxon:948","l":"Anaplasma phagocytophilum","na":1,"nb":23,"a":[["TED%3AAF-A0A181ZJH2-F1-model_v4_TED02","TED novel fold AF-A0A181ZJH2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A948","Anaplasma phagocytophilum"],["NCBITaxon%3A1359151","Anaplasma phagocytophilum str. Annie"],["NCBITaxon%3A1359152","Anaplasma phagocytophilum str. ApMUC09"],["NCBITaxon%3A1359153","Anaplasma phagocytophilum str. ApNP"],["NCBITaxon%3A1359154","Anaplasma phagocytophilum str. ApNYW"],["NCBITaxon%3A1359155","Anaplasma phagocytophilum str. ApWI1"]]},{"id":"NCBITaxon:119857","l":"Francisella tularensis subsp. holarctica","na":1,"nb":22,"a":[["TED%3AAF-A0A0B3VVZ9-F1-model_v4_TED01","TED novel fold AF-A0A0B3VVZ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A263","Francisella tularensis"],["NCBITaxon%3A119857","Francisella tularensis subsp. holarctica"],["NCBITaxon%3A412422","Francisella tularensis subsp. holarctica 257"],["NCBITaxon%3A1244086","Francisella tularensis subsp. holarctica BD11-00177"],["NCBITaxon%3A1232394","Francisella tularensis subsp. holarctica F92"],["NCBITaxon%3A1088870","Francisella tularensis subsp. holarctica FSC021"]]},{"id":"NCBITaxon:1869212","l":"Chitinophagaceae bacterium","na":22,"nb":1,"a":[["TED%3AAF-A0A357ZBL9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A357ZBL9-F1-model_v4_TED01"],["TED%3AAF-A0A3C1LFZ1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C1LFZ1-F1-model_v4_TED01"],["TED%3AAF-A0A3D2XD43-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D2XD43-F1-model_v4_TED02"],["TED%3AAF-A0A4Q3VIN8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q3VIN8-F1-model_v4_TED01"],["TED%3AAF-A0A4Q5SZ31-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q5SZ31-F1-model_v4_TED01"],["TED%3AAF-A0A4Q5TQZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q5TQZ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1869212","Chitinophagaceae bacterium"]]},{"id":"NCBITaxon:2026803","l":"Candidatus Woesearchaeota archaeon","na":22,"nb":1,"a":[["TED%3AAF-A0A2D6KW09-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D6KW09-F1-model_v4_TED01"],["TED%3AAF-A0A2D6P7P8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D6P7P8-F1-model_v4_TED01"],["TED%3AAF-A0A3M1JJU7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M1JJU7-F1-model_v4_TED01"],["TED%3AAF-A0A662EYR7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A662EYR7-F1-model_v4_TED01"],["TED%3AAF-A0A662F004-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A662F004-F1-model_v4_TED02"],["TED%3AAF-A0A662F4Y7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A662F4Y7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026803","Candidatus Woesearchaeota archaeon"]]},{"id":"NCBITaxon:2250277","l":"Thermoprotei archaeon","na":22,"nb":1,"a":[["TED%3AAF-A0A497FVH5-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A497FVH5-F1-model_v4_TED04"],["TED%3AAF-A0A497FWJ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A497FWJ0-F1-model_v4_TED01"],["TED%3AAF-A0A662GB86-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A662GB86-F1-model_v4_TED01"],["TED%3AAF-A0A662GMH9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A662GMH9-F1-model_v4_TED03"],["TED%3AAF-A0A662HGF0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A662HGF0-F1-model_v4_TED02"],["TED%3AAF-A0A662HZW1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A662HZW1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2250277","Thermoprotei archaeon"]]},{"id":"NCBITaxon:2952","l":"Symbiodinium pilosum","na":22,"nb":1,"a":[["TED%3AAF-A0A812IPQ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812IPQ7-F1-model_v4_TED01"],["TED%3AAF-A0A812IT96-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A812IT96-F1-model_v4_TED02"],["TED%3AAF-A0A812SR62-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812SR62-F1-model_v4_TED01"],["TED%3AAF-A0A812VKC8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812VKC8-F1-model_v4_TED01"],["TED%3AAF-A0A812XN12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812XN12-F1-model_v4_TED01"],["TED%3AAF-A0A812Y1P6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812Y1P6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2952","Symbiodinium pilosum"]]},{"id":"NCBITaxon:394","l":"Sinorhizobium fredii NGR234","na":22,"nb":1,"a":[["Pfam%3APF17841","BID domain of Bartonella effector protein (Bep)"],["Pfam%3APF04255","Protein of unknown function (DUF433)"],["Pfam%3APF18480","Domain of unknown function (DUF5615)"],["Pfam%3APF20008","Domain of unknown function (DUF6429)"],["Pfam%3APF24134","Domain of unknown function (DUF7401)"],["Pfam%3APF18728","AbiV"]],"b":[["NCBITaxon%3A394","Sinorhizobium fredii NGR234"]]},{"id":"NCBITaxon:77133","l":"uncultured bacterium","na":22,"nb":1,"a":[["TED%3AAF-A0A059X489-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A059X489-F1-model_v4_TED02"],["TED%3AAF-A0A059X769-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A059X769-F1-model_v4_TED01"],["TED%3AAF-K1YCK5-F1-model_v4_TED02","TED highly-symmetric fold AF-K1YCK5-F1-model_v4_TED02"],["TED%3AAF-K1Z363-F1-model_v4_TED05","TED highly-symmetric fold AF-K1Z363-F1-model_v4_TED05"],["TED%3AAF-K1ZVQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-K1ZVQ3-F1-model_v4_TED01"],["TED%3AAF-K2AKZ9-F1-model_v4_TED01","TED highly-symmetric fold AF-K2AKZ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A77133","uncultured bacterium"]]},{"id":"NCBITaxon:784","l":"Orientia tsutsugamushi","na":1,"nb":22,"a":[["TED%3AAF-A0A2U3QXG5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U3QXG5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A784","Orientia tsutsugamushi"],["NCBITaxon%3A1359169","Orientia tsutsugamushi str. AFSC7"],["NCBITaxon%3A357244","Orientia tsutsugamushi str. Boryong"],["NCBITaxon%3A1359170","Orientia tsutsugamushi str. Darnley"],["NCBITaxon%3A1359184","Orientia tsutsugamushi str. Gilliam"],["NCBITaxon%3A334380","Orientia tsutsugamushi str. Ikeda"]]},{"id":"NCBITaxon:2053491","l":"Candidatus Thorarchaeota archaeon","na":21,"nb":1,"a":[["TED%3AAF-A0A3L6JIS9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3L6JIS9-F1-model_v4_TED02"],["TED%3AAF-A0A497PT19-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A497PT19-F1-model_v4_TED01"],["TED%3AAF-A0A497Q075-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A497Q075-F1-model_v4_TED01"],["TED%3AAF-A0A497QEX2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A497QEX2-F1-model_v4_TED02"],["TED%3AAF-A0A523S0A4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A523S0A4-F1-model_v4_TED02"],["TED%3AAF-A0A524DRR9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A524DRR9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2053491","Candidatus Thorarchaeota archaeon"]]},{"id":"NCBITaxon:49249","l":"Ditylum brightwellii","na":21,"nb":1,"a":[["TED%3AAF-A0A7S1ZRE5-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7S1ZRE5-F1-model_v4_TED04"],["TED%3AAF-A0A7S4QX91-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S4QX91-F1-model_v4_TED02"],["TED%3AAF-A0A7S4RZD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4RZD6-F1-model_v4_TED01"],["TED%3AAF-A0A6U3S3W6-F1-model_v4_TED02","TED novel fold AF-A0A6U3S3W6-F1-model_v4_TED02"],["TED%3AAF-A0A6U3SMK8-F1-model_v4_TED01","TED novel fold AF-A0A6U3SMK8-F1-model_v4_TED01"],["TED%3AAF-A0A6V2HP17-F1-model_v4_TED02","TED novel fold AF-A0A6V2HP17-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A49249","Ditylum brightwellii"]]},{"id":"NCBITaxon:1333877","l":"Zooxanthella nutricula","na":20,"nb":1,"a":[["TED%3AAF-A0A7S2I7M8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2I7M8-F1-model_v4_TED01"],["TED%3AAF-A0A7S2KGI9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2KGI9-F1-model_v4_TED01"],["TED%3AAF-A0A7S2QN22-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2QN22-F1-model_v4_TED01"],["TED%3AAF-A0A6U6QYV6-F1-model_v4_TED02","TED novel fold AF-A0A6U6QYV6-F1-model_v4_TED02"],["TED%3AAF-A0A6U8X411-F1-model_v4_TED02","TED novel fold AF-A0A6U8X411-F1-model_v4_TED02"],["TED%3AAF-A0A7S2J1W7-F1-model_v4_TED01","TED novel fold AF-A0A7S2J1W7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1333877","Zooxanthella nutricula"]]},{"id":"NCBITaxon:2026773","l":"Candidatus Pacearchaeota archaeon","na":20,"nb":1,"a":[["TED%3AAF-A0A2D6L4C8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D6L4C8-F1-model_v4_TED01"],["TED%3AAF-A0A2D6MBC0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D6MBC0-F1-model_v4_TED01"],["TED%3AAF-A0A2D6NGF5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D6NGF5-F1-model_v4_TED01"],["TED%3AAF-A0A2D6X056-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D6X056-F1-model_v4_TED01"],["TED%3AAF-A0A2D6X943-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D6X943-F1-model_v4_TED01"],["TED%3AAF-A0A7J2RVY7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7J2RVY7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026773","Candidatus Pacearchaeota archaeon"]]},{"id":"NCBITaxon:2202144","l":"Spirochaetota bacterium","na":20,"nb":1,"a":[["TED%3AAF-A0A496RBW7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A496RBW7-F1-model_v4_TED01"],["TED%3AAF-A0A5C7LFX3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7LFX3-F1-model_v4_TED01"],["TED%3AAF-A0A660U2K3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A660U2K3-F1-model_v4_TED01"],["TED%3AAF-A0A7C2KGS7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C2KGS7-F1-model_v4_TED01"],["TED%3AAF-A0A496REE7-F1-model_v4_TED03","TED novel fold AF-A0A496REE7-F1-model_v4_TED03"],["TED%3AAF-A0A5C7JKW4-F1-model_v4_TED01","TED novel fold AF-A0A5C7JKW4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2202144","Spirochaetota bacterium"]]},{"id":"NCBITaxon:158","l":"Treponema denticola","na":1,"nb":19,"a":[["TED%3AAF-A0A125RME2-F1-model_v4_TED02","TED novel fold AF-A0A125RME2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A158","Treponema denticola"],["NCBITaxon%3A999426","Treponema denticola AL-2"],["NCBITaxon%3A999427","Treponema denticola ASLM"],["NCBITaxon%3A999428","Treponema denticola ATCC 33520"],["NCBITaxon%3A999429","Treponema denticola ATCC 33521"],["NCBITaxon%3A999430","Treponema denticola ATCC 35404"]]},{"id":"NCBITaxon:40041","l":"Streptococcus equi subsp. zooepidemicus","na":1,"nb":19,"a":[["Pfam%3APF02388","FemAB family"]],"b":[["NCBITaxon%3A1336","Streptococcus equi"],["NCBITaxon%3A40041","Streptococcus equi subsp. zooepidemicus"],["NCBITaxon%3A1051072","Streptococcus equi subsp. zooepidemicus ATCC 35246"],["NCBITaxon%3A681573","Streptococcus equi subsp. zooepidemicus BHS5"],["NCBITaxon%3A1403449","Streptococcus equi subsp. zooepidemicus CY"],["NCBITaxon%3A553483","Streptococcus equi subsp. zooepidemicus H70"]]},{"id":"NCBITaxon:122586","l":"Neisseria meningitidis MC58","na":18,"nb":1,"a":[["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000057","self-regulatory activity"],["Pfam%3APF03797","Autotransporter beta-domain"],["Pfam%3APF16779","DNA-mimic protein"],["Pfam%3APF14300","DMP19-like protein"],["Pfam%3APF17845","FbpC C-terminal regulatory nucleotide binding domain"]],"b":[["NCBITaxon%3A122586","Neisseria meningitidis MC58"]]},{"id":"NCBITaxon:169963","l":"Listeria monocytogenes EGD-e","na":18,"nb":1,"a":[["Pfam%3APF17936","Bacterial Ig domain"],["Pfam%3APF06778","Chlorite dismutase"],["Pfam%3APF05737","Collagen binding domain"],["Pfam%3APF09479","Listeria-Bacteroides repeat domain (List_Bact_rpt)"],["Pfam%3APF13457","GW (Gly-Tryp) dipeptide domain"],["Pfam%3APF08858","IDEAL domain"]],"b":[["NCBITaxon%3A169963","Listeria monocytogenes EGD-e"]]},{"id":"NCBITaxon:1871066","l":"Mesorhizobium sp.","na":18,"nb":1,"a":[["TED%3AAF-A0A3S3GQ11-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S3GQ11-F1-model_v4_TED01"],["TED%3AAF-A0A439J515-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A439J515-F1-model_v4_TED03"],["TED%3AAF-A0A439JC49-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A439JC49-F1-model_v4_TED01"],["TED%3AAF-A0A439N076-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A439N076-F1-model_v4_TED01"],["TED%3AAF-A0A442WFH9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A442WFH9-F1-model_v4_TED03"],["TED%3AAF-A0A529PFR3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A529PFR3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1871066","Mesorhizobium sp."]]},{"id":"NCBITaxon:2026728","l":"Crocinitomicaceae bacterium","na":18,"nb":1,"a":[["TED%3AAF-A0A2D7DFU8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D7DFU8-F1-model_v4_TED02"],["TED%3AAF-A0A2D7KAN1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D7KAN1-F1-model_v4_TED01"],["TED%3AAF-A0A2E3XYM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E3XYM3-F1-model_v4_TED01"],["TED%3AAF-A0A2E4EBK4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4EBK4-F1-model_v4_TED01"],["TED%3AAF-A0A2E4EDE8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4EDE8-F1-model_v4_TED01"],["TED%3AAF-A0A2E4EDG6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4EDG6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026728","Crocinitomicaceae bacterium"]]},{"id":"NCBITaxon:2052186","l":"Limisphaerales bacterium","na":18,"nb":1,"a":[["TED%3AAF-A0A520QMV5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A520QMV5-F1-model_v4_TED01"],["TED%3AAF-A0A6I1K0E9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I1K0E9-F1-model_v4_TED01"],["TED%3AAF-A0A6I1KAG9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I1KAG9-F1-model_v4_TED01"],["TED%3AAF-A0A7C3MCF9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C3MCF9-F1-model_v4_TED02"],["TED%3AAF-A0A7C4QME7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C4QME7-F1-model_v4_TED01"],["TED%3AAF-A0A7V3QEN6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7V3QEN6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2052186","Limisphaerales bacterium"]]},{"id":"NCBITaxon:272843","l":"Pasteurella multocida subsp. multocida str. Pm70","na":18,"nb":1,"a":[["Pfam%3APF18419","ATP-grasp-like domain"],["Pfam%3APF11974","Bacterial alpha-2-macroglobulin MG3 domain"],["Pfam%3APF17972","Bacterial Alpha-2-macroglobulin MG5 domain"],["Pfam%3APF17962","Bacterial macroglobulin domain 6"],["Pfam%3APF18470","Cas9 alpha-helical lobe domain"],["Pfam%3APF12441","CopG antitoxin of type II toxin-antitoxin system"]],"b":[["NCBITaxon%3A272843","Pasteurella multocida subsp. multocida str. Pm70"]]},{"id":"NCBITaxon:492670","l":"Bacillus velezensis","na":1,"nb":18,"a":[["TED%3AAF-A0A7S9EWF1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S9EWF1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A492670","Bacillus velezensis"],["NCBITaxon%3A2517241","Bacillus velezensis A3"],["NCBITaxon%3A1225788","Bacillus velezensis AS43.3"],["NCBITaxon%3A1239834","Bacillus velezensis At1"],["NCBITaxon%3A1114958","Bacillus velezensis CAU B946"],["NCBITaxon%3A2853458","Bacillus velezensis EYE_388"]]},{"id":"NCBITaxon:759272","l":"Thermochaetoides thermophila DSM 1495","na":18,"nb":1,"a":[["Pfam%3APF21509","Fungal polycomb repressive complex 2, Ezh2-like, preSET CXC domain"],["Pfam%3APF18600","Fungal MCSS domain"],["Pfam%3APF18601","EZH2 N-terminal domain"],["Pfam%3APF24519","Nucleoporin pom152-like, first immunoglobulin-like domain"],["Pfam%3APF24527","Nucleoporin pom152-like, ninth immunoglobulin-like domain"],["Pfam%3APF24312","Nucleoporin POM152, Ig-like domain"]],"b":[["NCBITaxon%3A759272","Thermochaetoides thermophila DSM 1495"]]},{"id":"NCBITaxon:1767","l":"Mycobacterium intracellulare","na":1,"nb":17,"a":[["Pfam%3APF18914","Domain of unknown function (DUF5666)"]],"b":[["NCBITaxon%3A1764","Mycobacterium avium"],["NCBITaxon%3A1767","Mycobacterium intracellulare"],["NCBITaxon%3A1299331","Mycobacterium intracellulare 1956"],["NCBITaxon%3A1160713","Mycobacterium intracellulare 3387"],["NCBITaxon%3A487521","Mycobacterium intracellulare ATCC 13950"],["NCBITaxon%3A1134473","Mycobacterium intracellulare H2"]]},{"id":"NCBITaxon:1829","l":"Rhodococcus rhodochrous","na":1,"nb":17,"a":[["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"]],"b":[["NCBITaxon%3A1872672","Azotobacter sp."],["NCBITaxon%3A36822","Gordonia rubripertincta"],["NCBITaxon%3A1824","Nocardia asteroides"],["NCBITaxon%3A37329","Nocardia farcinica"],["NCBITaxon%3A1833","Rhodococcus erythropolis"],["NCBITaxon%3A33008","Rhodococcus globerulus"]]},{"id":"NCBITaxon:2052166","l":"Candidatus Melainabacteria bacterium","na":17,"nb":1,"a":[["TED%3AAF-A0A2W4I3U7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W4I3U7-F1-model_v4_TED01"],["TED%3AAF-A0A2W4IPF7-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2W4IPF7-F1-model_v4_TED04"],["TED%3AAF-A0A2W4KA26-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W4KA26-F1-model_v4_TED01"],["TED%3AAF-A0A317ILL7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A317ILL7-F1-model_v4_TED01"],["TED%3AAF-A0A431KZA4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A431KZA4-F1-model_v4_TED01"],["TED%3AAF-A0A7T9H5Y2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T9H5Y2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052166","Candidatus Melainabacteria bacterium"]]},{"id":"NCBITaxon:208963","l":"Pseudomonas aeruginosa UCBPP-PA14","na":17,"nb":1,"a":[["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF21384","CRISPR-associated nuclease/helicase Cas3, I-F/YPEST, Cas2 domain"],["Pfam%3APF21802","CRISPR-associated Cas3 subtype I-F/YPEST-like, C-terminal domain"],["Pfam%3APF20975","DGC-associated coil"],["Pfam%3APF19502","Nucleotidyltransferase of unknown function (DUF6036)"]],"b":[["NCBITaxon%3A208963","Pseudomonas aeruginosa UCBPP-PA14"]]},{"id":"NCBITaxon:210007","l":"Streptococcus mutans UA159","na":17,"nb":1,"a":[["Pfam%3APF18652","Adhesin P1 N-terminal domain"],["Pfam%3APF17998","Cell surface antigen I/II C2 terminal domain"],["Pfam%3APF16364","Cell surface antigen C-terminus"],["Pfam%3APF12733","Cadherin-like beta sandwich domain"],["Pfam%3APF05737","Collagen binding domain"],["Pfam%3APF21537","DUF1980 C-terminal domain"]],"b":[["NCBITaxon%3A210007","Streptococcus mutans UA159"]]},{"id":"NCBITaxon:2268199","l":"Polyangiaceae bacterium","na":17,"nb":1,"a":[["TED%3AAF-A0A7C5J3Y7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C5J3Y7-F1-model_v4_TED01"],["TED%3AAF-A0A7Y5E0R3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y5E0R3-F1-model_v4_TED01"],["TED%3AAF-A0A7Y5L0J9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y5L0J9-F1-model_v4_TED01"],["TED%3AAF-A0A7Y5NNJ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y5NNJ7-F1-model_v4_TED01"],["TED%3AAF-A0A849Z2I2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A849Z2I2-F1-model_v4_TED01"],["TED%3AAF-A0A849ZAK7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A849ZAK7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2268199","Polyangiaceae bacterium"]]},{"id":"NCBITaxon:311494","l":"Alexandrium monilatum","na":17,"nb":1,"a":[["TED%3AAF-A0A7S4Q8A6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4Q8A6-F1-model_v4_TED01"],["TED%3AAF-A0A7S4QTT6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S4QTT6-F1-model_v4_TED02"],["TED%3AAF-A0A7S4QWV2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4QWV2-F1-model_v4_TED01"],["TED%3AAF-A0A7S4RKI0-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A7S4RKI0-F1-model_v4_TED05"],["TED%3AAF-A0A7S4SUG3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S4SUG3-F1-model_v4_TED02"],["TED%3AAF-A0A7S4VCD8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S4VCD8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A311494","Alexandrium monilatum"]]},{"id":"NCBITaxon:1363","l":"Lactococcus garvieae","na":1,"nb":16,"a":[["TED%3AAF-A0A6L2ZWS4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L2ZWS4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1363","Lactococcus garvieae"],["NCBITaxon%3A998087","Lactococcus garvieae 21881"],["NCBITaxon%3A913847","Lactococcus garvieae 8831"],["NCBITaxon%3A420889","Lactococcus garvieae ATCC 49156"],["NCBITaxon%3A1231377","Lactococcus garvieae DCC43"],["NCBITaxon%3A1229517","Lactococcus garvieae I113"]]},{"id":"NCBITaxon:2026734","l":"Dehalococcoidia bacterium","na":16,"nb":1,"a":[["TED%3AAF-A0A521XC61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521XC61-F1-model_v4_TED01"],["TED%3AAF-A0A523UGM8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A523UGM8-F1-model_v4_TED01"],["TED%3AAF-A0A7C5HK83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C5HK83-F1-model_v4_TED01"],["TED%3AAF-A0A7C7CQR7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C7CQR7-F1-model_v4_TED01"],["TED%3AAF-A0A7C7TSB3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C7TSB3-F1-model_v4_TED01"],["TED%3AAF-A0A7V1QTX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V1QTX7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026734","Dehalococcoidia bacterium"]]},{"id":"NCBITaxon:2026745","l":"Halobacteriovoraceae bacterium","na":16,"nb":1,"a":[["TED%3AAF-A0A2E1RGY7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E1RGY7-F1-model_v4_TED01"],["TED%3AAF-A0A2E3XRC3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E3XRC3-F1-model_v4_TED01"],["TED%3AAF-A0A2E4D7J8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E4D7J8-F1-model_v4_TED02"],["TED%3AAF-A0A2E4DD71-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4DD71-F1-model_v4_TED01"],["TED%3AAF-A0A2E1REY1-F1-model_v4_TED01","TED novel fold AF-A0A2E1REY1-F1-model_v4_TED01"],["TED%3AAF-A0A2E2EEJ1-F1-model_v4_TED04","TED novel fold AF-A0A2E2EEJ1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2026745","Halobacteriovoraceae bacterium"]]},{"id":"NCBITaxon:244366","l":"Klebsiella variicola","na":1,"nb":16,"a":[["TED%3AAF-A0A2N4Z4E2-F1-model_v4_TED01","TED novel fold AF-A0A2N4Z4E2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A576","Klebsiella sp."],["NCBITaxon%3A244366","Klebsiella variicola"],["NCBITaxon%3A507522","Klebsiella variicola 342"],["NCBITaxon%3A640131","Klebsiella variicola At-22"],["NCBITaxon%3A1438700","Klebsiella variicola BIDMC 61"]]},{"id":"NCBITaxon:272631","l":"Mycobacterium leprae TN","na":16,"nb":1,"a":[["Pfam%3APF26519","Biotin synthase auxiliary protein family"],["Pfam%3APF24481","CT398-like coiled coil hairpin domain"],["Pfam%3APF09438","Domain of unknown function (DUF2017)"],["Pfam%3APF12089","Transmembrane domain of unknown function (DUF3566)"],["Pfam%3APF12823","Domain of unknown function (DUF3817)"],["Pfam%3APF19187","PafC helix-turn-helix domain"]],"b":[["NCBITaxon%3A272631","Mycobacterium leprae TN"]]},{"id":"NCBITaxon:380","l":"Sinorhizobium fredii","na":1,"nb":16,"a":[["TED%3AAF-A0A2A6LXQ6-F1-model_v4_TED04","TED novel fold AF-A0A2A6LXQ6-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A380","Sinorhizobium fredii"],["NCBITaxon%3A418669","Sinorhizobium fredii bv. mediterranense"],["NCBITaxon%3A1128329","Sinorhizobium fredii CCBAU 05557"],["NCBITaxon%3A1128330","Sinorhizobium fredii CCBAU 25509"],["NCBITaxon%3A1128331","Sinorhizobium fredii CCBAU 45436"],["NCBITaxon%3A1128332","Sinorhizobium fredii CCBAU 83622"]]},{"id":"NCBITaxon:636","l":"Edwardsiella tarda","na":1,"nb":16,"a":[["Pfam%3APF05791","Bacillus haemolytic enterotoxin (HBL)"]],"b":[["NCBITaxon%3A1896336","Citrobacter sp."],["NCBITaxon%3A636","Edwardsiella tarda"],["NCBITaxon%3A1418112","Edwardsiella tarda 3-novo"],["NCBITaxon%3A1418111","Edwardsiella tarda 3P"],["NCBITaxon%3A667121","Edwardsiella tarda ATCC 15947 = NBRC 105688"],["NCBITaxon%3A500638","Edwardsiella tarda ATCC 23685"]]},{"id":"NCBITaxon:1304","l":"Streptococcus salivarius","na":1,"nb":15,"a":[["PROSITE%3APS01043","Transposases, IS30 family, signature"]],"b":[["NCBITaxon%3A1304","Streptococcus salivarius"],["NCBITaxon%3A1046629","Streptococcus salivarius 57.I"],["NCBITaxon%3A1420586","Streptococcus salivarius ATCC 25975"],["NCBITaxon%3A1263109","Streptococcus salivarius CAG:79"],["NCBITaxon%3A1048332","Streptococcus salivarius CCHSS3"],["NCBITaxon%3A1255635","Streptococcus salivarius CJ181"]]},{"id":"NCBITaxon:1585","l":"Lactobacillus delbrueckii subsp. bulgaricus","na":1,"nb":15,"a":[["TED%3AAF-A0A809EIY6-F1-model_v4_TED02","TED novel fold AF-A0A809EIY6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2775876","Lacticaseibacillus sp."],["NCBITaxon%3A1584","Lactobacillus delbrueckii"],["NCBITaxon%3A1585","Lactobacillus delbrueckii subsp. bulgaricus"],["NCBITaxon%3A353496","Lactobacillus delbrueckii subsp. bulgaricus 2038"],["NCBITaxon%3A390333","Lactobacillus delbrueckii subsp. bulgaricus ATCC 11842 = JCM 1002"],["NCBITaxon%3A321956","Lactobacillus delbrueckii subsp. bulgaricus ATCC BAA-365"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":1,"nb":15,"a":[["TED%3AAF-A0A415C3I8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A415C3I8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1681","Bifidobacterium bifidum"],["NCBITaxon%3A500634","Bifidobacterium bifidum ATCC 29521 = JCM 1255 = DSM 20456"],["NCBITaxon%3A484020","Bifidobacterium bifidum BGN4"],["NCBITaxon%3A1263058","Bifidobacterium bifidum CAG:234"],["NCBITaxon%3A1173065","Bifidobacterium bifidum CECT 7366"],["NCBITaxon%3A398515","Bifidobacterium bifidum DSM 20215"]]},{"id":"NCBITaxon:2052146","l":"Blastocatellia bacterium","na":15,"nb":1,"a":[["TED%3AAF-A0A352EXE7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A352EXE7-F1-model_v4_TED01"],["TED%3AAF-A0A357F5W7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A357F5W7-F1-model_v4_TED01"],["TED%3AAF-A0A3B9MP35-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B9MP35-F1-model_v4_TED01"],["TED%3AAF-A0A3D0P0V8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3D0P0V8-F1-model_v4_TED03"],["TED%3AAF-A0A7C5ZUX8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C5ZUX8-F1-model_v4_TED01"],["TED%3AAF-A0A7V9ZCI5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V9ZCI5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052146","Blastocatellia bacterium"]]},{"id":"NCBITaxon:2096","l":"Mycoplasmoides gallisepticum","na":1,"nb":15,"a":[["TED%3AAF-A0A5P3I5B9-F1-model_v4_TED02","TED novel fold AF-A0A5P3I5B9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2096","Mycoplasmoides gallisepticum"],["NCBITaxon%3A1267002","Mycoplasmoides gallisepticum ATCC 19610"],["NCBITaxon%3A1159203","Mycoplasmoides gallisepticum CA06_2006.052-5-2P"],["NCBITaxon%3A1159202","Mycoplasmoides gallisepticum NC06_2006.080-5-2P"],["NCBITaxon%3A1159204","Mycoplasmoides gallisepticum NC08_2008.031-4-3P"],["NCBITaxon%3A1159198","Mycoplasmoides gallisepticum NC95_13295-2-2P"]]},{"id":"NCBITaxon:2507553","l":"Aphanocapsa feldmannii 277cV","na":1,"nb":15,"a":[["TED%3AAF-A0A524RKM2-F1-model_v4_TED01","TED novel fold AF-A0A524RKM2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2507553","Aphanocapsa feldmannii 277cV"],["NCBITaxon%3A2569818","Aphanocapsa feldmannii 277cV_00123"],["NCBITaxon%3A2569819","Aphanocapsa feldmannii 277cV_00124"],["NCBITaxon%3A2569824","Aphanocapsa feldmannii 277cV_00125"],["NCBITaxon%3A2569820","Aphanocapsa feldmannii 277cV_00126"],["NCBITaxon%3A2569825","Aphanocapsa feldmannii 277cV_00403"]]},{"id":"NCBITaxon:312017","l":"Tetrahymena thermophila SB210","na":15,"nb":1,"a":[["Pfam%3APF23448","CFAP184 CAP-like domain"],["Pfam%3APF23449","CFAP184 CBM-like domain"],["Pfam%3APF13870","CCDC113/CCDC96, coiled-coil"],["Pfam%3APF23150","CFAP61 dimerisation domain"],["Pfam%3APF16092","Cilia- and flagella-associated protein 61, N-terminal domain"],["Pfam%3APF23119","Telomerase reverse transcriptase, CTE domain"]],"b":[["NCBITaxon%3A312017","Tetrahymena thermophila SB210"]]},{"id":"NCBITaxon:347","l":"Xanthomonas oryzae","na":1,"nb":15,"a":[["TED%3AAF-A0A856CQL9-F1-model_v4_TED01","TED novel fold AF-A0A856CQL9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A134375","Achromobacter sp."],["NCBITaxon%3A347","Xanthomonas oryzae"],["NCBITaxon%3A1313303","Xanthomonas oryzae ATCC 35933"],["NCBITaxon%3A3112258","Xanthomonas oryzae pv. leersiae"],["NCBITaxon%3A64187","Xanthomonas oryzae pv. oryzae"],["NCBITaxon%3A291331","Xanthomonas oryzae pv. oryzae KACC 10331"]]},{"id":"NCBITaxon:425011","l":"Aspergillus niger CBS 513.88","na":15,"nb":1,"a":[["Pfam%3APF09260","Alpha-amylase, domain C"],["Pfam%3APF13364","Beta-galactosidase second all-beta domain"],["Pfam%3APF10435","Beta-galactosidase, domain 2"],["Pfam%3APF13363","Beta-galactosidase, domain 3"],["Pfam%3APF28386","BfoA family C-terminal domain"],["Pfam%3APF28387","BfoA N-terminal domain"]],"b":[["NCBITaxon%3A425011","Aspergillus niger CBS 513.88"]]},{"id":"NCBITaxon:43657","l":"Pseudoalteromonas luteoviolacea","na":1,"nb":15,"a":[["TED%3AAF-A0A1C0TIS0-F1-model_v4_TED02","TED novel fold AF-A0A1C0TIS0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A43657","Pseudoalteromonas luteoviolacea"],["NCBITaxon%3A1353533","Pseudoalteromonas luteoviolacea 2ta16"],["NCBITaxon%3A1268239","Pseudoalteromonas luteoviolacea B = ATCC 29581"],["NCBITaxon%3A1365248","Pseudoalteromonas luteoviolacea CPMOR-1"],["NCBITaxon%3A1365249","Pseudoalteromonas luteoviolacea CPMOR-2"],["NCBITaxon%3A1365250","Pseudoalteromonas luteoviolacea DSM 6061"]]},{"id":"NCBITaxon:61435","l":"Dehalococcoides mccartyi","na":1,"nb":15,"a":[["TED%3AAF-A0A2J1E0L6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J1E0L6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A61435","Dehalococcoides mccartyi"],["NCBITaxon%3A243164","Dehalococcoides mccartyi 195"],["NCBITaxon%3A216389","Dehalococcoides mccartyi BAV1"],["NCBITaxon%3A1193806","Dehalococcoides mccartyi BTF08"],["NCBITaxon%3A255470","Dehalococcoides mccartyi CBDB1"],["NCBITaxon%3A1432059","Dehalococcoides mccartyi CG1"]]},{"id":"NCBITaxon:878477","l":"Symbiodinium natans","na":15,"nb":1,"a":[["TED%3AAF-A0A812I205-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812I205-F1-model_v4_TED01"],["TED%3AAF-A0A812J3S0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A812J3S0-F1-model_v4_TED02"],["TED%3AAF-A0A812JCI6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A812JCI6-F1-model_v4_TED02"],["TED%3AAF-A0A812LE22-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812LE22-F1-model_v4_TED01"],["TED%3AAF-A0A812MQ26-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812MQ26-F1-model_v4_TED01"],["TED%3AAF-A0A812QZV2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812QZV2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A878477","Symbiodinium natans"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":14,"nb":1,"a":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF02224","Cytidylate kinase"],["Pfam%3APF03319","Ethanolamine utilisation protein EutN/carboxysome"],["Pfam%3APF22019","alpha-1,4-glucan branching enzyme GlgB, N-terminal domain"],["Pfam%3APF21714","Circadian clock protein KaiA, N-terminal domain"],["Pfam%3APF07688","KaiA C-terminal domain"]],"b":[["NCBITaxon%3A1140","Synechococcus elongatus PCC 7942 = FACHB-805"]]},{"id":"NCBITaxon:138074","l":"Serratia symbiotica","na":1,"nb":14,"a":[["TED%3AAF-A0A068YYP3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A068YYP3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A655401","Serratia symbiont of Stomaphis sp."],["NCBITaxon%3A138074","Serratia symbiotica"],["NCBITaxon%3A1592400","Serratia symbiotica AfA2.1"],["NCBITaxon%3A1592401","Serratia symbiotica AfA3.1"],["NCBITaxon%3A2856988","Serratia symbiotica (Cacopsylla coccinea)"],["NCBITaxon%3A1339251","Serratia symbiotica CWBI2.3"]]},{"id":"NCBITaxon:2049433","l":"Desulfobacteraceae bacterium","na":14,"nb":1,"a":[["TED%3AAF-A0A2N6CCF5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N6CCF5-F1-model_v4_TED01"],["TED%3AAF-A0A355W8I2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A355W8I2-F1-model_v4_TED02"],["TED%3AAF-A0A3A4S7V6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A4S7V6-F1-model_v4_TED01"],["TED%3AAF-A0A3D6C2L3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D6C2L3-F1-model_v4_TED01"],["TED%3AAF-A0A3N5ZFV9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N5ZFV9-F1-model_v4_TED01"],["TED%3AAF-A0A3N6A7C3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3N6A7C3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2049433","Desulfobacteraceae bacterium"]]},{"id":"NCBITaxon:2163009","l":"Candidatus Poseidoniales archaeon","na":14,"nb":1,"a":[["TED%3AAF-A0A3A5VXE3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A5VXE3-F1-model_v4_TED01"],["TED%3AAF-A0A6V8CWM4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6V8CWM4-F1-model_v4_TED02"],["TED%3AAF-A0A6V8DK59-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6V8DK59-F1-model_v4_TED02"],["TED%3AAF-A0A7J4DCA9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7J4DCA9-F1-model_v4_TED02"],["TED%3AAF-A0A7M3SGG1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7M3SGG1-F1-model_v4_TED01"],["TED%3AAF-A0A7M3ZNW9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7M3ZNW9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2163009","Candidatus Poseidoniales archaeon"]]},{"id":"NCBITaxon:223283","l":"Pseudomonas syringae pv. tomato str. DC3000","na":14,"nb":1,"a":[["IDPO%3A0000030","entropic chain"],["IDPO%3A0000037","molecular recognition display site"],["Pfam%3APF16847","Avirulence AvrPtoB, BAK1-binding domain"],["Pfam%3APF09046","AvrPtoB E3 ubiquitin ligase"],["Pfam%3APF25965","ALG44 beta-barrel domain"],["Pfam%3APF25964","ALG44, barrel-sandwich hybrid domain"]],"b":[["NCBITaxon%3A223283","Pseudomonas syringae pv. tomato str. DC3000"]]},{"id":"NCBITaxon:2242","l":"Halobacterium salinarum","na":1,"nb":14,"a":[["Pfam%3APF07232","Putative rep protein (DUF1424)"]],"b":[["NCBITaxon%3A2242","Halobacterium salinarum"],["NCBITaxon%3A2597657","Halobacterium salinarum DSM 3754"],["NCBITaxon%3A64091","Halobacterium salinarum NRC-1"],["NCBITaxon%3A2886895","Halobacterium salinarum NRC-34001"],["NCBITaxon%3A478009","Halobacterium salinarum R1"],["NCBITaxon%3A2109941","Halobacterium salinarum str. WSR1 (ex H. Halobium)"]]},{"id":"NCBITaxon:29466","l":"Veillonella parvula","na":1,"nb":14,"a":[["TED%3AAF-A0A134BYG5-F1-model_v4_TED01","TED novel fold AF-A0A134BYG5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39777","Veillonella atypica"],["NCBITaxon%3A29466","Veillonella parvula"],["NCBITaxon%3A1357417","Veillonella parvula AC2_8_11_AN_NA_2"],["NCBITaxon%3A768727","Veillonella parvula ACS-068-V-Sch12"],["NCBITaxon%3A686660","Veillonella parvula ATCC 17745"],["NCBITaxon%3A479436","Veillonella parvula DSM 2008"]]},{"id":"NCBITaxon:329","l":"Ralstonia pickettii","na":1,"nb":14,"a":[["Pfam%3APF10605","3HB-oligomer hydrolase (3HBOH)"]],"b":[["NCBITaxon%3A80878","Acidovorax temperans"],["NCBITaxon%3A3058600","Ralstonia condita"],["NCBITaxon%3A3058599","Ralstonia edaphi"],["NCBITaxon%3A190721","Ralstonia insidiosa"],["NCBITaxon%3A105219","Ralstonia mannitolilytica"],["NCBITaxon%3A329","Ralstonia pickettii"]]},{"id":"NCBITaxon:42445","l":"Sinorhizobium sp.","na":14,"nb":1,"a":[["Pfam%3APF01656","CobQ/CobB/MinD/ParA nucleotide binding domain"],["Pfam%3APF02572","ATP:corrinoid adenosyltransferase BtuR/CobO/CobP"],["Pfam%3APF02654","Cobalamin-5-phosphate synthase"],["Pfam%3APF11775","Cobalamin biosynthesis protein CobT VWA domain"],["Pfam%3APF02283","Cobinamide kinase / cobinamide phosphate guanyltransferase"],["Pfam%3APF02277","Phosphoribosyltransferase"]],"b":[["NCBITaxon%3A42445","Sinorhizobium sp."]]},{"id":"NCBITaxon:426430","l":"Staphylococcus aureus subsp. aureus str. Newman","na":14,"nb":1,"a":[["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF18938","Atypical Rib domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF17961","Bacterial Ig domain"],["Pfam%3APF06778","Chlorite dismutase"],["Pfam%3APF12199","Extracellular fibrinogen binding protein C terminal"]],"b":[["NCBITaxon%3A426430","Staphylococcus aureus subsp. aureus str. Newman"]]},{"id":"NCBITaxon:93062","l":"Staphylococcus aureus subsp. aureus COL","na":14,"nb":1,"a":[["Pfam%3APF18927","Glycosyl-4,4'-diaponeurosporenoate acyltransferase"],["Pfam%3APF13684","Fatty acid kinase subunit A-like, C-terminal"],["Pfam%3APF21645","Fatty acid kinase subunit A-like, middle domain"],["Pfam%3APF07685","CobB/CobQ-like glutamine amidotransferase domain"],["Pfam%3APF28494","Glycyl-tRNA synthetase insertion domain 1"],["Pfam%3APF18698","Histidine kinase sensor domain"]],"b":[["NCBITaxon%3A93062","Staphylococcus aureus subsp. aureus COL"]]},{"id":"NCBITaxon:1144522","l":"Tritrichomonas foetus","na":13,"nb":1,"a":[["TED%3AAF-A0A1J4JPA9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1J4JPA9-F1-model_v4_TED02"],["TED%3AAF-A0A1J4K6U7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1J4K6U7-F1-model_v4_TED02"],["TED%3AAF-A0A1J4KYY8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1J4KYY8-F1-model_v4_TED03"],["TED%3AAF-A0A1J4KZM1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1J4KZM1-F1-model_v4_TED02"],["TED%3AAF-A0A1J4KZM1-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1J4KZM1-F1-model_v4_TED04"],["TED%3AAF-A0A1J4L5V9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1J4L5V9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1144522","Tritrichomonas foetus"]]},{"id":"NCBITaxon:115547","l":"uncultured archaeon","na":13,"nb":1,"a":[["Pfam%3APF07282","Cas12f1-like, TNB domain"],["Pfam%3APF28161","Fusexin 1"],["TED%3AAF-A0A5E4HKS5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5E4HKS5-F1-model_v4_TED01"],["TED%3AAF-A0A5E4HZH8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5E4HZH8-F1-model_v4_TED01"],["TED%3AAF-A0A5E4J2V3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5E4J2V3-F1-model_v4_TED01"],["TED%3AAF-A0A5E4JWA9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5E4JWA9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A115547","uncultured archaeon"]]},{"id":"NCBITaxon:150053","l":"Yersinia enterocolitica subsp. palearctica","na":1,"nb":13,"a":[["TED%3AAF-A0A6M1Q6Y0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6M1Q6Y0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A630","Yersinia enterocolitica"],["NCBITaxon%3A150052","Yersinia enterocolitica subsp. enterocolitica"],["NCBITaxon%3A150053","Yersinia enterocolitica subsp. palearctica"],["NCBITaxon%3A994476","Yersinia enterocolitica subsp. palearctica 105.5R(r)"],["NCBITaxon%3A940287","Yersinia enterocolitica subsp. palearctica 556/8265"],["NCBITaxon%3A940288","Yersinia enterocolitica subsp. palearctica 647/5307"]]},{"id":"NCBITaxon:1520","l":"Clostridium beijerinckii","na":1,"nb":13,"a":[["TED%3AAF-A0A0B5QQV4-F1-model_v4_TED02","TED novel fold AF-A0A0B5QQV4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1488","Clostridium acetobutylicum"],["NCBITaxon%3A272562","Clostridium acetobutylicum ATCC 824"],["NCBITaxon%3A1520","Clostridium beijerinckii"],["NCBITaxon%3A1202535","Clostridium beijerinckii AAU1"],["NCBITaxon%3A864803","Clostridium beijerinckii ATCC 35702"],["NCBITaxon%3A1200349","Clostridium beijerinckii G117"]]},{"id":"NCBITaxon:1542","l":"Clostridium novyi","na":1,"nb":13,"a":[["PROSITE%3APS00384","Prokaryotic zinc-dependent phospholipase C signature"]],"b":[["NCBITaxon%3A84025","Clostridium haemolyticum"],["NCBITaxon%3A1542","Clostridium novyi"],["NCBITaxon%3A1809276","Clostridium novyi A"],["NCBITaxon%3A1443121","Clostridium novyi A str. 4540"],["NCBITaxon%3A1444289","Clostridium novyi A str. 4552"],["NCBITaxon%3A1444290","Clostridium novyi A str. 4570"]]},{"id":"NCBITaxon:1754190","l":"Neocallimastix californiae","na":13,"nb":1,"a":[["TED%3AAF-A0A1Y1XC87-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y1XC87-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2ADM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y2ADM3-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2AH60-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y2AH60-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2BB05-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Y2BB05-F1-model_v4_TED02"],["TED%3AAF-A0A1Y2CV21-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1Y2CV21-F1-model_v4_TED04"],["TED%3AAF-A0A1Y2ECT1-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1Y2ECT1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1754190","Neocallimastix californiae"]]},{"id":"NCBITaxon:1906665","l":"archaeon","na":13,"nb":1,"a":[["TED%3AAF-A0A2D6R7R0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D6R7R0-F1-model_v4_TED02"],["TED%3AAF-A0A2D6RMA6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D6RMA6-F1-model_v4_TED02"],["TED%3AAF-A0A482UEK7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A482UEK7-F1-model_v4_TED01"],["TED%3AAF-A0A7T5UTQ0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7T5UTQ0-F1-model_v4_TED02"],["TED%3AAF-A0A482RZA5-F1-model_v4_TED01","TED novel fold AF-A0A482RZA5-F1-model_v4_TED01"],["TED%3AAF-A0A482SIC6-F1-model_v4_TED03","TED novel fold AF-A0A482SIC6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1906665","archaeon"]]},{"id":"NCBITaxon:2024894","l":"Acidimicrobiaceae bacterium","na":13,"nb":1,"a":[["TED%3AAF-A0A2D8LQD2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D8LQD2-F1-model_v4_TED01"],["TED%3AAF-A0A2E0RXG4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0RXG4-F1-model_v4_TED01"],["TED%3AAF-A0A2E4RLD1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4RLD1-F1-model_v4_TED01"],["TED%3AAF-A0A351EQ15-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A351EQ15-F1-model_v4_TED01"],["TED%3AAF-A0A3B8M7L9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B8M7L9-F1-model_v4_TED01"],["TED%3AAF-A0A3C2B035-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3C2B035-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2024894","Acidimicrobiaceae bacterium"]]},{"id":"NCBITaxon:2026781","l":"Candidatus Poribacteria bacterium","na":13,"nb":1,"a":[["TED%3AAF-A0A2D5VJS7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D5VJS7-F1-model_v4_TED02"],["TED%3AAF-A0A2E4DW61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4DW61-F1-model_v4_TED01"],["TED%3AAF-A0A496B2L5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A496B2L5-F1-model_v4_TED02"],["TED%3AAF-A0A7V0YVG4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V0YVG4-F1-model_v4_TED01"],["TED%3AAF-A0A7X3T5F6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7X3T5F6-F1-model_v4_TED02"],["TED%3AAF-A0A800AEN1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A800AEN1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026781","Candidatus Poribacteria bacterium"]]},{"id":"NCBITaxon:239","l":"Flavobacterium sp.","na":13,"nb":1,"a":[["Pfam%3APF21331","Isoamylase, C-terminal"],["TED%3AAF-A0A2E4PC55-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E4PC55-F1-model_v4_TED02"],["TED%3AAF-A0A2E4PGC5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4PGC5-F1-model_v4_TED01"],["TED%3AAF-A0A2E4PMB7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E4PMB7-F1-model_v4_TED02"],["TED%3AAF-A0A355BEV2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A355BEV2-F1-model_v4_TED02"],["TED%3AAF-A0A519QLA6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A519QLA6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A239","Flavobacterium sp."]]},{"id":"NCBITaxon:2485925","l":"Oscillospiraceae bacterium","na":13,"nb":1,"a":[["TED%3AAF-A0A2V2FDS6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V2FDS6-F1-model_v4_TED01"],["TED%3AAF-A0A354HDZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A354HDZ1-F1-model_v4_TED02"],["TED%3AAF-A0A358X4Y1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A358X4Y1-F1-model_v4_TED03"],["TED%3AAF-A0A3D2AE20-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D2AE20-F1-model_v4_TED02"],["TED%3AAF-A0A3D4T7L7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D4T7L7-F1-model_v4_TED02"],["TED%3AAF-A0A847PNE5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A847PNE5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2485925","Oscillospiraceae bacterium"]]},{"id":"NCBITaxon:28090","l":"Acinetobacter lwoffii","na":1,"nb":13,"a":[["TED%3AAF-A0A7S9AAV2-F1-model_v4_TED01","TED novel fold AF-A0A7S9AAV2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1311822","Acinetobacter genomosp. 9 str. ATCC 17910"],["NCBITaxon%3A40215","Acinetobacter junii"],["NCBITaxon%3A28090","Acinetobacter lwoffii"],["NCBITaxon%3A1311804","Acinetobacter lwoffii ATCC 9957 = CIP 70.31"],["NCBITaxon%3A54394","Acinetobacter lwoffii K24"],["NCBITaxon%3A981327","Acinetobacter lwoffii NCTC 5866 = CIP 64.10 = NIPH 512"]]},{"id":"NCBITaxon:327968","l":"Alexandrium andersonii","na":13,"nb":1,"a":[["TED%3AAF-A0A7S2AKY4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2AKY4-F1-model_v4_TED01"],["TED%3AAF-A0A7S2AN30-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2AN30-F1-model_v4_TED01"],["TED%3AAF-A0A7S2DXA2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S2DXA2-F1-model_v4_TED03"],["TED%3AAF-A0A7S2FIF3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2FIF3-F1-model_v4_TED01"],["TED%3AAF-A0A7S2FTB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2FTB9-F1-model_v4_TED01"],["TED%3AAF-A0A7S2J1J3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2J1J3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A327968","Alexandrium andersonii"]]},{"id":"NCBITaxon:66852","l":"Methanobrevibacter sp.","na":13,"nb":1,"a":[["TED%3AAF-A0A843EVZ3-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A843EVZ3-F1-model_v4_TED04"],["TED%3AAF-A0A843FCF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843FCF4-F1-model_v4_TED01"],["TED%3AAF-A0A843FFG9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A843FFG9-F1-model_v4_TED03"],["TED%3AAF-A0A843G9S4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843G9S4-F1-model_v4_TED01"],["TED%3AAF-A0A843GSU1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843GSU1-F1-model_v4_TED01"],["TED%3AAF-A0A843HRZ5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A843HRZ5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A66852","Methanobrevibacter sp."]]},{"id":"NCBITaxon:750","l":"Gallibacterium anatis","na":1,"nb":13,"a":[["TED%3AAF-A0A0A2XNX9-F1-model_v4_TED01","TED novel fold AF-A0A0A2XNX9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A750","Gallibacterium anatis"],["NCBITaxon%3A1396515","Gallibacterium anatis 10672-6"],["NCBITaxon%3A1195244","Gallibacterium anatis 12656/12"],["NCBITaxon%3A1396510","Gallibacterium anatis 4895"],["NCBITaxon%3A1396511","Gallibacterium anatis 7990"],["NCBITaxon%3A1380411","Gallibacterium anatis biovar haemolytica"]]},{"id":"NCBITaxon:119602","l":"Streptococcus dysgalactiae subsp. equisimilis","na":1,"nb":12,"a":[["TED%3AAF-A0A5M4CWR2-F1-model_v4_TED02","TED novel fold AF-A0A5M4CWR2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1334","Streptococcus dysgalactiae"],["NCBITaxon%3A119602","Streptococcus dysgalactiae subsp. equisimilis"],["NCBITaxon%3A1247189","Streptococcus dysgalactiae subsp. equisimilis 167"],["NCBITaxon%3A759913","Streptococcus dysgalactiae subsp. equisimilis AC-2713"],["NCBITaxon%3A452436","Streptococcus dysgalactiae subsp. equisimilis AKSDE4288"],["NCBITaxon%3A663954","Streptococcus dysgalactiae subsp. equisimilis ATCC 12394"]]},{"id":"NCBITaxon:1897614","l":"Maribacter sp.","na":12,"nb":1,"a":[["TED%3AAF-A0A3C0GJN2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C0GJN2-F1-model_v4_TED01"],["TED%3AAF-A0A3B9R709-F1-model_v4_TED02","TED novel fold AF-A0A3B9R709-F1-model_v4_TED02"],["TED%3AAF-A0A3B9R7Z4-F1-model_v4_TED01","TED novel fold AF-A0A3B9R7Z4-F1-model_v4_TED01"],["TED%3AAF-A0A3B9RA49-F1-model_v4_TED02","TED novel fold AF-A0A3B9RA49-F1-model_v4_TED02"],["TED%3AAF-A0A3C0FZ60-F1-model_v4_TED02","TED novel fold AF-A0A3C0FZ60-F1-model_v4_TED02"],["TED%3AAF-A0A3C0G1Z3-F1-model_v4_TED03","TED novel fold AF-A0A3C0G1Z3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1897614","Maribacter sp."]]},{"id":"NCBITaxon:201","l":"Campylobacter lari","na":1,"nb":12,"a":[["TED%3AAF-A0A5M0YYW6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5M0YYW6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A198","Campylobacter hyointestinalis"],["NCBITaxon%3A201","Campylobacter lari"],["NCBITaxon%3A1388750","Campylobacter lari CCUG 22395"],["NCBITaxon%3A1388749","Campylobacter lari NCTC 11845"],["NCBITaxon%3A1453989","Campylobacter lari RM16701"],["NCBITaxon%3A1453988","Campylobacter lari RM16712"]]},{"id":"NCBITaxon:2024896","l":"Anaerolineaceae bacterium","na":12,"nb":1,"a":[["TED%3AAF-A0A2E0L407-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2E0L407-F1-model_v4_TED03"],["TED%3AAF-A0A2E0V255-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0V255-F1-model_v4_TED01"],["TED%3AAF-A0A2E1AAR7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E1AAR7-F1-model_v4_TED01"],["TED%3AAF-A0A3A4VPM9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3A4VPM9-F1-model_v4_TED02"],["TED%3AAF-A0A3B9A2N8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B9A2N8-F1-model_v4_TED01"],["TED%3AAF-A0A7X9PDU0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X9PDU0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024896","Anaerolineaceae bacterium"]]},{"id":"NCBITaxon:2049431","l":"Tissierellia bacterium","na":12,"nb":1,"a":[["TED%3AAF-A0A7C7AGH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C7AGH3-F1-model_v4_TED01"],["TED%3AAF-A0A7X8D040-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A7X8D040-F1-model_v4_TED05"],["TED%3AAF-A0A7X8FRG7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X8FRG7-F1-model_v4_TED01"],["TED%3AAF-A0A7X8G0K6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X8G0K6-F1-model_v4_TED01"],["TED%3AAF-A0A847AW67-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A847AW67-F1-model_v4_TED01"],["TED%3AAF-A0A847NG83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A847NG83-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2049431","Tissierellia bacterium"]]},{"id":"NCBITaxon:2052164","l":"Gemmataceae bacterium","na":12,"nb":1,"a":[["TED%3AAF-A0A4V0I0C1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4V0I0C1-F1-model_v4_TED02"],["TED%3AAF-A0A7C4UC94-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7C4UC94-F1-model_v4_TED03"],["TED%3AAF-A0A7C4UDY7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C4UDY7-F1-model_v4_TED01"],["TED%3AAF-A0A7V3VYA3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7V3VYA3-F1-model_v4_TED03"],["TED%3AAF-A0A4V0I7D3-F1-model_v4_TED01","TED novel fold AF-A0A4V0I7D3-F1-model_v4_TED01"],["TED%3AAF-A0A7C4UB88-F1-model_v4_TED04","TED novel fold AF-A0A7C4UB88-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2052164","Gemmataceae bacterium"]]},{"id":"NCBITaxon:2053306","l":"Ignavibacteria bacterium","na":12,"nb":1,"a":[["TED%3AAF-A0A533YHW3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A533YHW3-F1-model_v4_TED02"],["TED%3AAF-A0A7C2AFB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C2AFB4-F1-model_v4_TED01"],["TED%3AAF-A0A7S6MWR5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S6MWR5-F1-model_v4_TED01"],["TED%3AAF-A0A7V4LVX5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V4LVX5-F1-model_v4_TED01"],["TED%3AAF-A0A2N6A028-F1-model_v4_TED01","TED novel fold AF-A0A2N6A028-F1-model_v4_TED01"],["TED%3AAF-A0A7C3EXK1-F1-model_v4_TED03","TED novel fold AF-A0A7C3EXK1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2053306","Ignavibacteria bacterium"]]},{"id":"NCBITaxon:231916","l":"Gymnopilus dilepis","na":12,"nb":1,"a":[["TED%3AAF-A0A409W679-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A409W679-F1-model_v4_TED01"],["TED%3AAF-A0A409XZH6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A409XZH6-F1-model_v4_TED02"],["TED%3AAF-A0A409Y3U6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A409Y3U6-F1-model_v4_TED01"],["TED%3AAF-A0A409Y4E4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A409Y4E4-F1-model_v4_TED01"],["TED%3AAF-A0A409VY99-F1-model_v4_TED01","TED novel fold AF-A0A409VY99-F1-model_v4_TED01"],["TED%3AAF-A0A409W9H6-F1-model_v4_TED01","TED novel fold AF-A0A409W9H6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A231916","Gymnopilus dilepis"]]},{"id":"NCBITaxon:267567","l":"Skeletonema marinoi","na":12,"nb":1,"a":[["TED%3AAF-A0A7S2L0Q3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2L0Q3-F1-model_v4_TED01"],["TED%3AAF-A0A7S2L7Y0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2L7Y0-F1-model_v4_TED01"],["TED%3AAF-A0A7S2LFD5-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7S2LFD5-F1-model_v4_TED04"],["TED%3AAF-A0A7S2M7J6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2M7J6-F1-model_v4_TED01"],["TED%3AAF-A0A7S2PGZ4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S2PGZ4-F1-model_v4_TED02"],["TED%3AAF-A0A7S2Q0A5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2Q0A5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A267567","Skeletonema marinoi"]]},{"id":"NCBITaxon:272942","l":"Rhodobacter capsulatus SB 1003","na":12,"nb":1,"a":[["Pfam%3APF02553","Cobalt transport protein component CbiN"],["Pfam%3APF03379","CcmB protein"],["Pfam%3APF27123","Carotenoid hydratase CrtC"],["Pfam%3APF14715","N-terminal domain of cytochrome oxidase-cbb3, FixP"],["Pfam%3APF07284","2-vinyl bacteriochlorophyllide hydratase (BCHF)"],["Pfam%3APF02571","Precorrin-6x reductase CbiJ/CobK"]],"b":[["NCBITaxon%3A272942","Rhodobacter capsulatus SB 1003"]]},{"id":"NCBITaxon:51453","l":"Trichoderma reesei","na":12,"nb":1,"a":[["Pfam%3APF28347","ACE1 small beta sheet domain"],["Pfam%3APF28329","Zinc finger transcription factor ace1 N-terminal domain"],["Pfam%3APF00150","Cellulase (glycosyl hydrolase family 5)"],["Pfam%3APF22514","EXPB1-like domain 1"],["Pfam%3APF01341","Glycosyl hydrolases family 6"],["Pfam%3APF00840","Glycosyl hydrolase family 7"]],"b":[["NCBITaxon%3A51453","Trichoderma reesei"]]},{"id":"NCBITaxon:544645","l":"Butyricimonas virosa","na":1,"nb":12,"a":[["TED%3AAF-A0A413ITS3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A413ITS3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A544645","Butyricimonas virosa"],["NCBITaxon%3A1121130","Butyricimonas virosa DSM 23226"],["NCBITaxon%3A1339048","Butyricimonas virosa TS7.1-1.1"],["NCBITaxon%3A1339049","Butyricimonas virosa TS7.1-1.2"],["NCBITaxon%3A1339050","Butyricimonas virosa TS7.1-2.1"],["NCBITaxon%3A1339051","Butyricimonas virosa TSDA1.2-1.1"]]},{"id":"NCBITaxon:61645","l":"Enterobacter asburiae","na":1,"nb":12,"a":[["TED%3AAF-A0A8B3U934-F1-model_v4_TED02","TED novel fold AF-A0A8B3U934-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A61645","Enterobacter asburiae"],["NCBITaxon%3A1330532","Enterobacter asburiae B1-3"],["NCBITaxon%3A1330533","Enterobacter asburiae B5-60"],["NCBITaxon%3A1442602","Enterobacter asburiae C1"],["NCBITaxon%3A1298604","Enterobacter asburiae JCM 6051"],["NCBITaxon%3A1421338","Enterobacter asburiae L1"]]},{"id":"NCBITaxon:945775","l":"Pseudanabaena frigida","na":1,"nb":12,"a":[["TED%3AAF-A0A2W4Y9W9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2W4Y9W9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A945776","Pseudanabaena cf. frigida LEGE 06144"],["NCBITaxon%3A945775","Pseudanabaena frigida"],["NCBITaxon%3A3711284","Pseudanabaena frigida D12_PA_1"],["NCBITaxon%3A2037890","Pseudanabaena frigida ISB82"],["NCBITaxon%3A1719111","Pseudanabaena frigida O-302"],["NCBITaxon%3A2739198","Pseudanabaena frigida PUPCCC 106.7/1"]]},{"id":"NCBITaxon:106654","l":"Acinetobacter nosocomialis","na":1,"nb":11,"a":[["TED%3AAF-A0A5Q0RRM8-F1-model_v4_TED01","TED novel fold AF-A0A5Q0RRM8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A981325","Acinetobacter genomosp. 13TU str. NCTC 8102"],["NCBITaxon%3A106654","Acinetobacter nosocomialis"],["NCBITaxon%3A1147131","Acinetobacter nosocomialis 28F"],["NCBITaxon%3A1183155","Acinetobacter nosocomialis Ab22222"],["NCBITaxon%3A1343071","Acinetobacter nosocomialis M2"],["NCBITaxon%3A1217670","Acinetobacter nosocomialis NIPH 2119"]]},{"id":"NCBITaxon:1214915","l":"Mycolicibacterium smegmatis MKD8","na":11,"nb":1,"a":[["Pfam%3APF18625","ESX-1 secreted protein B PE domain"],["Pfam%3APF21856","ESX-1 secretion-associated protein EspB, PPE domain"],["Pfam%3APF27215","EspK C-terminal domain"],["Pfam%3APF25832","Fibronectin type III domain SaeA second domain"],["Pfam%3APF25833","Fibronectin type III domain SaeA third domain"],["Pfam%3APF25834","Fibronectin type III domain SaeA fourth domain"]],"b":[["NCBITaxon%3A1214915","Mycolicibacterium smegmatis MKD8"]]},{"id":"NCBITaxon:1354","l":"Enterococcus hirae","na":1,"nb":11,"a":[["Pfam%3APF11983","Cell division protein FtsA, C-terminal"]],"b":[["NCBITaxon%3A1352","Enterococcus faecium"],["NCBITaxon%3A1354","Enterococcus hirae"],["NCBITaxon%3A1232728","Enterococcus hirae 57-03-H11"],["NCBITaxon%3A1232727","Enterococcus hirae 57-09-G6"],["NCBITaxon%3A1262665","Enterococcus hirae 67-03-C5"],["NCBITaxon%3A1262668","Enterococcus hirae 78-09-C1"]]},{"id":"NCBITaxon:1898209","l":"Acholeplasmataceae bacterium","na":11,"nb":1,"a":[["TED%3AAF-A0A353PIL2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A353PIL2-F1-model_v4_TED01"],["TED%3AAF-A0A7C6K3C3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C6K3C3-F1-model_v4_TED02"],["TED%3AAF-A0A7C6SBZ4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7C6SBZ4-F1-model_v4_TED03"],["TED%3AAF-A0A7V6IUB6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V6IUB6-F1-model_v4_TED01"],["TED%3AAF-A0A7X7C6M0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7X7C6M0-F1-model_v4_TED03"],["TED%3AAF-A0A7X7C6M0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7X7C6M0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1898209","Acholeplasmataceae bacterium"]]},{"id":"NCBITaxon:198628","l":"Dickeya dadantii 3937","na":11,"nb":1,"a":[["Pfam%3APF14600","Cellulose-binding domain"],["Pfam%3APF08946","Osmosensory transporter coiled coil"],["Pfam%3APF19929","Immunity protein CdiI"],["Pfam%3APF15655","NTF2 fold immunity protein"],["Pfam%3APF06178","Oligogalacturonate-specific porin protein (KdgM)"],["PROSITE%3APS00659","Glycosyl hydrolases family 5 signature"]],"b":[["NCBITaxon%3A198628","Dickeya dadantii 3937"]]},{"id":"NCBITaxon:2026741","l":"Gemmatimonadaceae bacterium","na":11,"nb":1,"a":[["TED%3AAF-A0A7W1C216-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7W1C216-F1-model_v4_TED03"],["TED%3AAF-A0A7W1E6J1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W1E6J1-F1-model_v4_TED02"],["TED%3AAF-A0A7W1E8S4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W1E8S4-F1-model_v4_TED01"],["TED%3AAF-A0A7W1EK17-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W1EK17-F1-model_v4_TED02"],["TED%3AAF-A0A2E8H9Y1-F1-model_v4_TED02","TED novel fold AF-A0A2E8H9Y1-F1-model_v4_TED02"],["TED%3AAF-A0A7V9QMW2-F1-model_v4_TED01","TED novel fold AF-A0A7V9QMW2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026741","Gemmatimonadaceae bacterium"]]},{"id":"NCBITaxon:2026887","l":"Nitrospirota bacterium","na":11,"nb":1,"a":[["TED%3AAF-A0A521SRV9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A521SRV9-F1-model_v4_TED02"],["TED%3AAF-A0A533XE66-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A533XE66-F1-model_v4_TED01"],["TED%3AAF-A0A6N7AVM2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N7AVM2-F1-model_v4_TED01"],["TED%3AAF-A0A7C0ZXT1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C0ZXT1-F1-model_v4_TED01"],["TED%3AAF-A0A7C1KT15-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C1KT15-F1-model_v4_TED02"],["TED%3AAF-A0A7C8EC21-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C8EC21-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026887","Nitrospirota bacterium"]]},{"id":"NCBITaxon:2030800","l":"Elusimicrobiota bacterium","na":11,"nb":1,"a":[["TED%3AAF-A0A3B9YFR8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B9YFR8-F1-model_v4_TED01"],["TED%3AAF-A0A3C1EKU1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C1EKU1-F1-model_v4_TED01"],["TED%3AAF-A0A3C1ENG3-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A3C1ENG3-F1-model_v4_TED04"],["TED%3AAF-A0A7C3VF23-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C3VF23-F1-model_v4_TED01"],["TED%3AAF-A0A7V3ERG8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7V3ERG8-F1-model_v4_TED02"],["TED%3AAF-A0A7X7TVI3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X7TVI3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2030800","Elusimicrobiota bacterium"]]},{"id":"NCBITaxon:2053607","l":"Candidatus Rokuibacteriota bacterium","na":11,"nb":1,"a":[["TED%3AAF-A0A2V2SFB4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2V2SFB4-F1-model_v4_TED03"],["TED%3AAF-A0A2V6PUY9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V6PUY9-F1-model_v4_TED01"],["TED%3AAF-A0A2V6PVL1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V6PVL1-F1-model_v4_TED01"],["TED%3AAF-A0A2V6QHW3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V6QHW3-F1-model_v4_TED01"],["TED%3AAF-A0A2V6QT53-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V6QT53-F1-model_v4_TED02"],["TED%3AAF-A0A2V6YUV3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V6YUV3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053607","Candidatus Rokuibacteriota bacterium"]]},{"id":"NCBITaxon:222440","l":"Streblomastix strix","na":11,"nb":1,"a":[["TED%3AAF-A0A5J4TUQ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5J4TUQ0-F1-model_v4_TED01"],["TED%3AAF-A0A5J4UW04-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A5J4UW04-F1-model_v4_TED04"],["TED%3AAF-A0A5J4V2A5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5J4V2A5-F1-model_v4_TED01"],["TED%3AAF-A0A5J4V9N0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A5J4V9N0-F1-model_v4_TED04"],["TED%3AAF-A0A5J4VP50-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5J4VP50-F1-model_v4_TED01"],["TED%3AAF-A0A5J4VPU9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5J4VPU9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A222440","Streblomastix strix"]]},{"id":"NCBITaxon:2250274","l":"Microcaldota archaeon","na":11,"nb":1,"a":[["TED%3AAF-A0A7J2Z0S6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J2Z0S6-F1-model_v4_TED01"],["TED%3AAF-A0A7J3CTW2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7J3CTW2-F1-model_v4_TED02"],["TED%3AAF-A0A7J3DKL9-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A7J3DKL9-F1-model_v4_TED05"],["TED%3AAF-A0A7L4RA83-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7L4RA83-F1-model_v4_TED03"],["TED%3AAF-A0A7L4RFJ7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7L4RFJ7-F1-model_v4_TED02"],["TED%3AAF-A0A497IDY3-F1-model_v4_TED01","TED novel fold AF-A0A497IDY3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2250274","Microcaldota archaeon"]]},{"id":"NCBITaxon:2448054","l":"Gemmatimonadales bacterium","na":11,"nb":1,"a":[["TED%3AAF-A0A524KSK4-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A524KSK4-F1-model_v4_TED04"],["TED%3AAF-A0A6L7ULV7-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A6L7ULV7-F1-model_v4_TED05"],["TED%3AAF-A0A7V8X8E7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V8X8E7-F1-model_v4_TED01"],["TED%3AAF-A0A7W1BDN8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W1BDN8-F1-model_v4_TED01"],["TED%3AAF-A0A7W1KM63-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W1KM63-F1-model_v4_TED01"],["TED%3AAF-A0A7Y2NWI3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y2NWI3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2448054","Gemmatimonadales bacterium"]]},{"id":"NCBITaxon:272626","l":"Listeria innocua Clip11262","na":11,"nb":1,"a":[["Pfam%3APF16595","PAM-interacting domain of CRISPR-associated endonuclease Cas9"],["Pfam%3APF21846","Domain of unknown function (DUF6905)"],["Pfam%3APF27405","Lin0124 C-terminal coiled-coil domain"],["Pfam%3APF14297","Lin1244/Lin1753-like, N-terminal"],["Pfam%3APF16593","Bridge helix of CRISPR-associated endonuclease Cas9"],["Pfam%3APF16592","REC lobe of CRISPR-associated endonuclease Cas9"]],"b":[["NCBITaxon%3A272626","Listeria innocua Clip11262"]]},{"id":"NCBITaxon:2762014","l":"Candidatus Parcubacteria bacterium","na":11,"nb":1,"a":[["TED%3AAF-A0A2N6A8U3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N6A8U3-F1-model_v4_TED01"],["TED%3AAF-A0A3A4VEN4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A4VEN4-F1-model_v4_TED01"],["TED%3AAF-A0A3A4ZRB7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A4ZRB7-F1-model_v4_TED01"],["TED%3AAF-A0A3M1FNI3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M1FNI3-F1-model_v4_TED01"],["TED%3AAF-A0A7C5A8P4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C5A8P4-F1-model_v4_TED01"],["TED%3AAF-A0A7V3PB42-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V3PB42-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2762014","Candidatus Parcubacteria bacterium"]]},{"id":"NCBITaxon:331112","l":"Escherichia coli HS","na":11,"nb":1,"a":[["Pfam%3APF25796","BREX ATP-binding protein BrxC 4th domain with six-stranded beta sheet"],["Pfam%3APF25792","BREX ATP-binding protein BrxC alpha helical domain"],["Pfam%3APF08747","BREX protein BrxB"],["Pfam%3APF19557","BrxC/PglY, N-terminal domain"],["Pfam%3APF13337","Lon-like protease BrxL-like, ATPase domain"],["Pfam%3APF20442","BREX system Lon protease-like protein BrxL N-terminal"]],"b":[["NCBITaxon%3A331112","Escherichia coli HS"]]},{"id":"NCBITaxon:451804","l":"Aspergillus fumigatus A1163","na":11,"nb":1,"a":[["Pfam%3APF28347","ACE1 small beta sheet domain"],["Pfam%3APF28329","Zinc finger transcription factor ace1 N-terminal domain"],["Pfam%3APF11001","YDR124W-like, helical bundle domain"],["Pfam%3APF28457","Probable beta-glucosidase btgE N-terminal domain"],["Pfam%3APF13373","DSC E3 ubiquitin ligase complex subunit 3, C-terminal domain"],["Pfam%3APF10302","DSC E3 ubiquitin ligase complex subunit 3, ubiquitin-like domain"]],"b":[["NCBITaxon%3A451804","Aspergillus fumigatus A1163"]]},{"id":"NCBITaxon:53446","l":"Streptomyces cinnamoneus","na":1,"nb":11,"a":[["TED%3AAF-A0A2S6XSK0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S6XSK0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A53446","Streptomyces cinnamoneus"],["NCBITaxon%3A173776","Streptomyces cinnamoneus subsp. albosporus"],["NCBITaxon%3A173777","Streptomyces cinnamoneus subsp. azacoluta"],["NCBITaxon%3A173778","Streptomyces cinnamoneus subsp. lanosus"],["NCBITaxon%3A1521191","Streptomyces cinnamoneus subsp. monicae"],["NCBITaxon%3A173779","Streptomyces cinnamoneus subsp. sparsus"]]},{"id":"NCBITaxon:574560","l":"Photorhabdus temperata","na":1,"nb":11,"a":[["TED%3AAF-A0A4R7P891-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R7P891-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A471575","Photorhabdus cinerea"],["NCBITaxon%3A1004150","Photorhabdus khanii"],["NCBITaxon%3A2675885","Photorhabdus khanii subsp. khanii"],["NCBITaxon%3A1004159","Photorhabdus tasmaniensis"],["NCBITaxon%3A574560","Photorhabdus temperata"],["NCBITaxon%3A1389415","Photorhabdus temperata J3"]]},{"id":"NCBITaxon:59620","l":"uncultured Clostridium sp.","na":11,"nb":1,"a":[["TED%3AAF-A0A1C5QU37-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C5QU37-F1-model_v4_TED01"],["TED%3AAF-A0A1C5UPV7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1C5UPV7-F1-model_v4_TED02"],["TED%3AAF-A0A1C5W2V9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1C5W2V9-F1-model_v4_TED02"],["TED%3AAF-A0A1C5XLL0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C5XLL0-F1-model_v4_TED01"],["TED%3AAF-A0A1C5Z394-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C5Z394-F1-model_v4_TED01"],["TED%3AAF-A0A1C5ZSK7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1C5ZSK7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A59620","uncultured Clostridium sp."]]},{"id":"NCBITaxon:76860","l":"Streptococcus constellatus","na":1,"nb":11,"a":[["TED%3AAF-A0A380JGS6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A380JGS6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1328","Streptococcus anginosus"],["NCBITaxon%3A76860","Streptococcus constellatus"],["NCBITaxon%3A184246","Streptococcus constellatus subsp. constellatus"],["NCBITaxon%3A1095730","Streptococcus constellatus subsp. constellatus SK53"],["NCBITaxon%3A184250","Streptococcus constellatus subsp. pharyngis"],["NCBITaxon%3A862969","Streptococcus constellatus subsp. pharyngis C1050"]]},{"id":"NCBITaxon:889272","l":"Polyangium fumosum","na":11,"nb":1,"a":[["TED%3AAF-A0A4U1IM92-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4U1IM92-F1-model_v4_TED02"],["TED%3AAF-A0A4U1IPC0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A4U1IPC0-F1-model_v4_TED03"],["TED%3AAF-A0A4U1IXQ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U1IXQ7-F1-model_v4_TED01"],["TED%3AAF-A0A4U1J2I8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U1J2I8-F1-model_v4_TED01"],["TED%3AAF-A0A4U1J3Y1-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A4U1J3Y1-F1-model_v4_TED04"],["TED%3AAF-A0A4U1JFX6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4U1JFX6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A889272","Polyangium fumosum"]]},{"id":"NCBITaxon:1581","l":"Lentilactobacillus buchneri","na":1,"nb":10,"a":[["Pfam%3APF02329","Histidine carboxylase PI chain"]],"b":[["NCBITaxon%3A1581","Lentilactobacillus buchneri"],["NCBITaxon%3A525318","Lentilactobacillus buchneri ATCC 11577"],["NCBITaxon%3A1423728","Lentilactobacillus buchneri DSM 20057"],["NCBITaxon%3A511437","Lentilactobacillus buchneri NRRL B-30929"],["NCBITaxon%3A2737513","Lentilactobacillus buchneri subsp. buchneri"],["NCBITaxon%3A2737512","Lentilactobacillus buchneri subsp. silagei"]]},{"id":"NCBITaxon:158879","l":"Staphylococcus aureus subsp. aureus N315","na":10,"nb":1,"a":[["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"],["Pfam%3APF03780","Asp23 family, cell envelope-related function"],["Pfam%3APF12199","Extracellular fibrinogen binding protein C terminal"],["Pfam%3APF07685","CobB/CobQ-like glutamine amidotransferase domain"],["Pfam%3APF20861","Iron-regulated surface determinant protein H/B, linker domain"],["Pfam%3APF10804","Protein of unknown function (DUF2538)"]],"b":[["NCBITaxon%3A158879","Staphylococcus aureus subsp. aureus N315"]]},{"id":"NCBITaxon:1628268","l":"Symbiodinium necroappetens","na":10,"nb":1,"a":[["TED%3AAF-A0A812MKM8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812MKM8-F1-model_v4_TED01"],["TED%3AAF-A0A812Y428-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812Y428-F1-model_v4_TED01"],["TED%3AAF-A0A812YG85-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A812YG85-F1-model_v4_TED02"],["TED%3AAF-A0A813A6P0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A813A6P0-F1-model_v4_TED02"],["TED%3AAF-A0A813BN35-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A813BN35-F1-model_v4_TED03"],["TED%3AAF-A0A812LYB9-F1-model_v4_TED01","TED novel fold AF-A0A812LYB9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1628268","Symbiodinium necroappetens"]]},{"id":"NCBITaxon:1781","l":"Mycobacterium marinum","na":1,"nb":10,"a":[["TED%3AAF-A0A2Z5YKC9-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2Z5YKC9-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1781","Mycobacterium marinum"],["NCBITaxon%3A1348799","Mycobacterium marinum ATCC BAA-535"],["NCBITaxon%3A459420","Mycobacterium marinum DL240490"],["NCBITaxon%3A1131442","Mycobacterium marinum E11"],["NCBITaxon%3A216594","Mycobacterium marinum M"],["NCBITaxon%3A1288036","Mycobacterium marinum MB2"]]},{"id":"NCBITaxon:185431","l":"Trypanosoma brucei brucei TREU927","na":10,"nb":1,"a":[["Pfam%3APF25828","Cfap43 coiled coil"],["Pfam%3APF18526","Thymine dioxygenase JBP1 DNA-binding domain"],["Pfam%3APF01916","Deoxyhypusine synthase"],["Pfam%3APF26536","REH2 DRSM domain"],["Pfam%3APF23398","FAZ1, conserved domain"],["Pfam%3APF02689","Helicase"]],"b":[["NCBITaxon%3A185431","Trypanosoma brucei brucei TREU927"]]},{"id":"NCBITaxon:196620","l":"Staphylococcus aureus subsp. aureus MW2","na":10,"nb":1,"a":[["Pfam%3APF03780","Asp23 family, cell envelope-related function"],["Pfam%3APF13610","DDE domain"],["Pfam%3APF21650","DNA primase DnaG, catalytic core, helical bundle"],["Pfam%3APF18698","Histidine kinase sensor domain"],["Pfam%3APF18483","Legume lectin beta-barrel domain"],["Pfam%3APF11546","Staphylococcal complement inhibitor SCIN"]],"b":[["NCBITaxon%3A196620","Staphylococcus aureus subsp. aureus MW2"]]},{"id":"NCBITaxon:197221","l":"Thermosynechococcus vestitus BP-1","na":10,"nb":1,"a":[["Pfam%3APF00430","ATP synthase B/B' CF(0)"],["Pfam%3APF14495","Cytochrome c-550 domain"],["Pfam%3APF21714","Circadian clock protein KaiA, N-terminal domain"],["Pfam%3APF07688","KaiA C-terminal domain"],["Pfam%3APF07689","KaiB domain"],["Pfam%3APF00283","Cytochrome b559, alpha (gene psbE) and beta (gene psbF)subunits"]],"b":[["NCBITaxon%3A197221","Thermosynechococcus vestitus BP-1"]]},{"id":"NCBITaxon:2026720","l":"Candidatus Saccharimonadota bacterium","na":10,"nb":1,"a":[["TED%3AAF-A0A521GQH8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521GQH8-F1-model_v4_TED01"],["TED%3AAF-A0A7T9BG81-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7T9BG81-F1-model_v4_TED04"],["TED%3AAF-A0A2G6C427-F1-model_v4_TED01","TED novel fold AF-A0A2G6C427-F1-model_v4_TED01"],["TED%3AAF-A0A3B8XDR1-F1-model_v4_TED01","TED novel fold AF-A0A3B8XDR1-F1-model_v4_TED01"],["TED%3AAF-A0A7T9EYG0-F1-model_v4_TED02","TED novel fold AF-A0A7T9EYG0-F1-model_v4_TED02"],["TED%3AAF-A0A7T9QFY5-F1-model_v4_TED01","TED novel fold AF-A0A7T9QFY5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026720","Candidatus Saccharimonadota bacterium"]]},{"id":"NCBITaxon:2026795","l":"Nitrososphaerota archaeon","na":10,"nb":1,"a":[["TED%3AAF-A0A2E0QIG3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E0QIG3-F1-model_v4_TED02"],["TED%3AAF-A0A519CY76-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A519CY76-F1-model_v4_TED02"],["TED%3AAF-A0A533VPG5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A533VPG5-F1-model_v4_TED01"],["TED%3AAF-A0A533VS28-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A533VS28-F1-model_v4_TED01"],["TED%3AAF-A0A538P7I2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A538P7I2-F1-model_v4_TED02"],["TED%3AAF-A0A662PPJ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A662PPJ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026795","Nitrososphaerota archaeon"]]},{"id":"NCBITaxon:2030809","l":"Candidatus Hydrogenedentota bacterium","na":10,"nb":1,"a":[["TED%3AAF-A0A3M1IHM8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M1IHM8-F1-model_v4_TED01"],["TED%3AAF-A0A7C3ASP1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C3ASP1-F1-model_v4_TED01"],["TED%3AAF-A0A7C3SSL5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C3SSL5-F1-model_v4_TED01"],["TED%3AAF-A0A7Y5CAQ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y5CAQ0-F1-model_v4_TED01"],["TED%3AAF-A0A831UKD5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A831UKD5-F1-model_v4_TED02"],["TED%3AAF-A0A831XK46-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A831XK46-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2030809","Candidatus Hydrogenedentota bacterium"]]},{"id":"NCBITaxon:2049046","l":"Porphyromonadaceae bacterium","na":10,"nb":1,"a":[["TED%3AAF-A0A352HPZ5-F1-model_v4_TED02","TED novel fold AF-A0A352HPZ5-F1-model_v4_TED02"],["TED%3AAF-A0A352HSX3-F1-model_v4_TED01","TED novel fold AF-A0A352HSX3-F1-model_v4_TED01"],["TED%3AAF-A0A353Q9U7-F1-model_v4_TED05","TED novel fold AF-A0A353Q9U7-F1-model_v4_TED05"],["TED%3AAF-A0A353RIS8-F1-model_v4_TED01","TED novel fold AF-A0A353RIS8-F1-model_v4_TED01"],["TED%3AAF-A0A355FFT1-F1-model_v4_TED02","TED novel fold AF-A0A355FFT1-F1-model_v4_TED02"],["TED%3AAF-A0A355ZAD8-F1-model_v4_TED03","TED novel fold AF-A0A355ZAD8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2049046","Porphyromonadaceae bacterium"]]},{"id":"NCBITaxon:2080302","l":"Acidimicrobiia bacterium","na":10,"nb":1,"a":[["TED%3AAF-A0A7K2CSN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K2CSN7-F1-model_v4_TED01"],["TED%3AAF-A0A7K2EB93-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K2EB93-F1-model_v4_TED01"],["TED%3AAF-A0A7V8Z207-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7V8Z207-F1-model_v4_TED02"],["TED%3AAF-A0A7V9IJW2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V9IJW2-F1-model_v4_TED01"],["TED%3AAF-A0A7W0HBJ6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W0HBJ6-F1-model_v4_TED02"],["TED%3AAF-A0A7Y1XA56-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y1XA56-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2080302","Acidimicrobiia bacterium"]]},{"id":"NCBITaxon:215803","l":"Enhygromyxa salina","na":10,"nb":1,"a":[["TED%3AAF-A0A0C1ZPD8-F1-model_v4_TED02","TED novel fold AF-A0A0C1ZPD8-F1-model_v4_TED02"],["TED%3AAF-A0A0C2CKS6-F1-model_v4_TED03","TED novel fold AF-A0A0C2CKS6-F1-model_v4_TED03"],["TED%3AAF-A0A0C2D012-F1-model_v4_TED02","TED novel fold AF-A0A0C2D012-F1-model_v4_TED02"],["TED%3AAF-A0A2S9XAM6-F1-model_v4_TED01","TED novel fold AF-A0A2S9XAM6-F1-model_v4_TED01"],["TED%3AAF-A0A2S9XEU4-F1-model_v4_TED01","TED novel fold AF-A0A2S9XEU4-F1-model_v4_TED01"],["TED%3AAF-A0A2S9XNB5-F1-model_v4_TED01","TED novel fold AF-A0A2S9XNB5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A215803","Enhygromyxa salina"]]},{"id":"NCBITaxon:2202734","l":"Saprospiraceae bacterium","na":10,"nb":1,"a":[["TED%3AAF-A0A521UI51-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A521UI51-F1-model_v4_TED06"],["TED%3AAF-A0A7Y2BYI8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y2BYI8-F1-model_v4_TED01"],["TED%3AAF-A0A7Y3A5A8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7Y3A5A8-F1-model_v4_TED03"],["TED%3AAF-A0A7Y4T0B6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y4T0B6-F1-model_v4_TED02"],["TED%3AAF-A0A7Y5MTU2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y5MTU2-F1-model_v4_TED01"],["TED%3AAF-A0A7D5MI03-F1-model_v4_TED01","TED novel fold AF-A0A7D5MI03-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2202734","Saprospiraceae bacterium"]]},{"id":"NCBITaxon:2209","l":"Methanosarcina mazei","na":1,"nb":10,"a":[["TED%3AAF-A0A0F8CQX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F8CQX7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2209","Methanosarcina mazei"],["NCBITaxon%3A1434113","Methanosarcina mazei C16"],["NCBITaxon%3A192952","Methanosarcina mazei Go1"],["NCBITaxon%3A1293038","Methanosarcina mazei JCM 9314"],["NCBITaxon%3A1434114","Methanosarcina mazei LYC"],["NCBITaxon%3A213585","Methanosarcina mazei S-6"]]},{"id":"NCBITaxon:228","l":"Pseudoalteromonas haloplanktis","na":1,"nb":10,"a":[["Pfam%3APF07023","Protein of unknown function (DUF1315)"]],"b":[["NCBITaxon%3A228","Pseudoalteromonas haloplanktis"],["NCBITaxon%3A722419","Pseudoalteromonas haloplanktis ANT/505"],["NCBITaxon%3A1117315","Pseudoalteromonas haloplanktis ATCC 14393"],["NCBITaxon%3A540541","Pseudoalteromonas haloplanktis subsp. haloplanktis"],["NCBITaxon%3A1333511","Pseudoalteromonas haloplanktis TAB23"],["NCBITaxon%3A1333513","Pseudoalteromonas haloplanktis TAE56"]]},{"id":"NCBITaxon:257313","l":"Bordetella pertussis Tohama I","na":10,"nb":1,"a":[["Pfam%3APF03440","Aerolysin/Pertussis toxin (APT) domain"],["Pfam%3APF07411","Domain of unknown function (DUF1508)"],["Pfam%3APF25988","CyaD, alpha-helical hairpin domain"],["Pfam%3APF03497","Anthrax toxin LF subunit"],["Pfam%3APF02537","CrcB-like protein, Camphor Resistance (CrcB)"],["Pfam%3APF16970","Type-1 fimbrial protein, A"]],"b":[["NCBITaxon%3A257313","Bordetella pertussis Tohama I"]]},{"id":"NCBITaxon:33959","l":"Lactobacillus johnsonii","na":1,"nb":10,"a":[["Pfam%3APF13518","Helix-turn-helix domain"]],"b":[["NCBITaxon%3A1596","Lactobacillus gasseri"],["NCBITaxon%3A33959","Lactobacillus johnsonii"],["NCBITaxon%3A572503","Lactobacillus johnsonii 135-1-CHN"],["NCBITaxon%3A1033983","Lactobacillus johnsonii 16"],["NCBITaxon%3A525330","Lactobacillus johnsonii ATCC 33200"],["NCBITaxon%3A909954","Lactobacillus johnsonii DPC 6026"]]},{"id":"NCBITaxon:345073","l":"Vibrio cholerae O395","na":10,"nb":1,"a":[["IDPO%3A0000048","limited proteolysis display site"],["Pfam%3APF16671","Actin cross-linking domain"],["Pfam%3APF26759","AcfD helical domain"],["Pfam%3APF00165","Bacterial regulatory helix-turn-helix proteins, AraC family"],["Pfam%3APF08328","Adenylosuccinate lyase C-terminal"],["Pfam%3APF07208","Protein of unknown function (DUF1414)"]],"b":[["NCBITaxon%3A345073","Vibrio cholerae O395"]]},{"id":"NCBITaxon:38304","l":"Corynebacterium tuberculostearicum","na":1,"nb":10,"a":[["TED%3AAF-A0A7U0H937-F1-model_v4_TED01","TED novel fold AF-A0A7U0H937-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A38284","Corynebacterium accolens"],["NCBITaxon%3A1736004","Corynebacterium cf. tuberculostearicum 1237_CAUR"],["NCBITaxon%3A1736005","Corynebacterium cf. tuberculostearicum 620_CAUR"],["NCBITaxon%3A1736006","Corynebacterium cf. tuberculostearicum 911_CAUR"],["NCBITaxon%3A38287","Corynebacterium fastidiosum"],["NCBITaxon%3A1720","Corynebacterium sp."]]},{"id":"NCBITaxon:393305","l":"Yersinia enterocolitica subsp. enterocolitica 8081","na":10,"nb":1,"a":[["Pfam%3APF22200","ExsA N-terminal regulatory domain"],["Pfam%3APF06826","Predicted Permease Membrane Region"],["Pfam%3APF03186","CobD/Cbib protein"],["Pfam%3APF11944","Protein of unknown function (DUF3461)"],["Pfam%3APF04363","Protein of unknown function (DUF496)"],["Pfam%3APF17551","Family of unknown function (DUF5463)"]],"b":[["NCBITaxon%3A393305","Yersinia enterocolitica subsp. enterocolitica 8081"]]},{"id":"NCBITaxon:955","l":"Wolbachia pipientis","na":1,"nb":10,"a":[["TED%3AAF-A0A6I5SYC0-F1-model_v4_TED01","TED novel fold AF-A0A6I5SYC0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A955","Wolbachia pipientis"],["NCBITaxon%3A1116230","Wolbachia pipientis wAlbB"],["NCBITaxon%3A2049495","Wolbachia pipientis wAus"],["NCBITaxon%3A1238452","Wolbachia pipientis wBol1-b"],["NCBITaxon%3A1379791","Wolbachia pipientis wMelCS"],["NCBITaxon%3A1317678","Wolbachia pipientis wMelPop"]]},{"id":"NCBITaxon:107806","l":"Buchnera aphidicola str. APS (Acyrthosiphon pisum)","na":9,"nb":1,"a":[["Pfam%3APF21157","DnaK suppressor protein DksA, N-terminal domain"],["Pfam%3APF21158","Flagellar hook-associated protein 1, D2-like domain"],["Pfam%3APF02955","Prokaryotic glutathione synthetase, ATP-grasp domain"],["Pfam%3APF02951","Prokaryotic glutathione synthetase, N-terminal domain"],["Pfam%3APF21500","DNA polymerase III subunit delta', AAA+ ATPase lid domain"],["Pfam%3APF14840","Processivity clamp loader gamma complex DNA pol III C-term"]],"b":[["NCBITaxon%3A107806","Buchnera aphidicola str. APS (Acyrthosiphon pisum)"]]},{"id":"NCBITaxon:1134687","l":"Klebsiella michiganensis","na":1,"nb":9,"a":[["TED%3AAF-A0A443W129-F1-model_v4_TED01","TED novel fold AF-A0A443W129-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1134687","Klebsiella michiganensis"],["NCBITaxon%3A1191061","Klebsiella michiganensis E718"],["NCBITaxon%3A1416754","Klebsiella michiganensis H1g"],["NCBITaxon%3A1308980","Klebsiella michiganensis HKOPL1"],["NCBITaxon%3A1006551","Klebsiella michiganensis KCTC 1686"],["NCBITaxon%3A290336","Klebsiella michiganensis M5al"]]},{"id":"NCBITaxon:1290","l":"Staphylococcus hominis","na":1,"nb":9,"a":[["TED%3AAF-A0A6N0I1N0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N0I1N0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1290","Staphylococcus hominis"],["NCBITaxon%3A629742","Staphylococcus hominis SK119"],["NCBITaxon%3A145391","Staphylococcus hominis subsp. hominis"],["NCBITaxon%3A435837","Staphylococcus hominis subsp. hominis C80"],["NCBITaxon%3A1185421","Staphylococcus hominis subsp. hominis ZBW5"],["NCBITaxon%3A145393","Staphylococcus hominis subsp. novobiosepticus"]]},{"id":"NCBITaxon:1604","l":"Lactobacillus amylovorus","na":1,"nb":9,"a":[["Pfam%3APF10439","Bacteriocin class II with double-glycine leader peptide"]],"b":[["NCBITaxon%3A1604","Lactobacillus amylovorus"],["NCBITaxon%3A1263084","Lactobacillus amylovorus CAG:719"],["NCBITaxon%3A1423723","Lactobacillus amylovorus DSM 20531"],["NCBITaxon%3A695562","Lactobacillus amylovorus GRL1118"],["NCBITaxon%3A695560","Lactobacillus amylovorus GRL 1112"],["NCBITaxon%3A695561","Lactobacillus amylovorus GRL 1115"]]},{"id":"NCBITaxon:1656","l":"Actinomyces viscosus","na":1,"nb":9,"a":[["Pfam%3APF16555","Gram-positive pilin subunit D1, N-terminal domain"]],"b":[["NCBITaxon%3A1655","Actinomyces naeslundii"],["NCBITaxon%3A544580","Actinomyces oris"],["NCBITaxon%3A29317","Actinomyces sp."],["NCBITaxon%3A3050227","Actinomyces stomatis"],["NCBITaxon%3A1656","Actinomyces viscosus"],["NCBITaxon%3A562973","Actinomyces viscosus C505"]]},{"id":"NCBITaxon:166","l":"Treponema sp.","na":9,"nb":1,"a":[["TED%3AAF-A0A351Z2H3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A351Z2H3-F1-model_v4_TED01"],["TED%3AAF-A0A356K0W2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A356K0W2-F1-model_v4_TED02"],["TED%3AAF-A0A3B8WTM6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3B8WTM6-F1-model_v4_TED02"],["TED%3AAF-A0A3C1HX51-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3C1HX51-F1-model_v4_TED03"],["TED%3AAF-A0A521IH80-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521IH80-F1-model_v4_TED01"],["TED%3AAF-A0A7X8IF67-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X8IF67-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A166","Treponema sp."]]},{"id":"NCBITaxon:1812935","l":"Enterobacter roggenkampii","na":1,"nb":9,"a":[["TED%3AAF-A0A7D6U4G9-F1-model_v4_TED01","TED novel fold AF-A0A7D6U4G9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A299767","Enterobacter ludwigii"],["NCBITaxon%3A1812935","Enterobacter roggenkampii"],["NCBITaxon%3A1439326","Enterobacter roggenkampii CHS 79"],["NCBITaxon%3A1334630","Enterobacter roggenkampii EC_38VIM1"],["NCBITaxon%3A1329832","Enterobacter roggenkampii MGH 34"]]},{"id":"NCBITaxon:1891238","l":"Burkholderiales bacterium","na":9,"nb":1,"a":[["TED%3AAF-A0A4Q3VEM9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q3VEM9-F1-model_v4_TED01"],["TED%3AAF-A0A4V1UPL0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4V1UPL0-F1-model_v4_TED01"],["TED%3AAF-A0A7X8XQ74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X8XQ74-F1-model_v4_TED01"],["TED%3AAF-A0A7X9AEE9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X9AEE9-F1-model_v4_TED01"],["TED%3AAF-A0A3N5GYF7-F1-model_v4_TED02","TED novel fold AF-A0A3N5GYF7-F1-model_v4_TED02"],["TED%3AAF-A0A417N833-F1-model_v4_TED02","TED novel fold AF-A0A417N833-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1891238","Burkholderiales bacterium"]]},{"id":"NCBITaxon:1891241","l":"Betaproteobacteria bacterium","na":9,"nb":1,"a":[["TED%3AAF-A0A2U1RVU7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U1RVU7-F1-model_v4_TED01"],["TED%3AAF-A0A536T3L4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A536T3L4-F1-model_v4_TED01"],["TED%3AAF-A0A537ATD3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A537ATD3-F1-model_v4_TED01"],["TED%3AAF-A0A3D0EVD4-F1-model_v4_TED01","TED novel fold AF-A0A3D0EVD4-F1-model_v4_TED01"],["TED%3AAF-A0A521VEK6-F1-model_v4_TED02","TED novel fold AF-A0A521VEK6-F1-model_v4_TED02"],["TED%3AAF-A0A536S5A6-F1-model_v4_TED01","TED novel fold AF-A0A536S5A6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1891241","Betaproteobacteria bacterium"]]},{"id":"NCBITaxon:1930","l":"Streptomyces scabiei","na":1,"nb":9,"a":[["TED%3AAF-A0A086GLG9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A086GLG9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2993540","Streptomyces griseiscabiei"],["NCBITaxon%3A1930","Streptomyces scabiei"],["NCBITaxon%3A680198","Streptomyces scabiei 87.22"],["NCBITaxon%3A175280","Streptomyces scabiei subsp. chosun"],["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A74595","Streptomyces sp. ATCC 10246"]]},{"id":"NCBITaxon:195102","l":"Clostridium perfringens str. 13","na":9,"nb":1,"a":[["Pfam%3APF00963","Cohesin domain"],["Pfam%3APF07085","DRTGG domain"],["Pfam%3APF07554","FIVAR domain"],["Pfam%3APF02329","Histidine carboxylase PI chain"],["PROSITE%3APS00384","Prokaryotic zinc-dependent phospholipase C signature"],["PROSITE%3APS00397","Site-specific recombinases active site"]],"b":[["NCBITaxon%3A195102","Clostridium perfringens str. 13"]]},{"id":"NCBITaxon:2026771","l":"Opitutia bacterium","na":9,"nb":1,"a":[["TED%3AAF-A0A351FCU9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A351FCU9-F1-model_v4_TED02"],["TED%3AAF-A0A3B9FK87-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B9FK87-F1-model_v4_TED01"],["TED%3AAF-A0A3B9FQG1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B9FQG1-F1-model_v4_TED01"],["TED%3AAF-A0A2E7HLG5-F1-model_v4_TED01","TED novel fold AF-A0A2E7HLG5-F1-model_v4_TED01"],["TED%3AAF-A0A2E8A986-F1-model_v4_TED03","TED novel fold AF-A0A2E8A986-F1-model_v4_TED03"],["TED%3AAF-A0A388PNP3-F1-model_v4_TED01","TED novel fold AF-A0A388PNP3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026771","Opitutia bacterium"]]},{"id":"NCBITaxon:2026790","l":"Saprospirales bacterium","na":9,"nb":1,"a":[["TED%3AAF-A0A2E0VPV1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0VPV1-F1-model_v4_TED01"],["TED%3AAF-A0A350C3R5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A350C3R5-F1-model_v4_TED02"],["TED%3AAF-A0A3B9AIU7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B9AIU7-F1-model_v4_TED01"],["TED%3AAF-A0A3B9AQT4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B9AQT4-F1-model_v4_TED01"],["TED%3AAF-A0A3C2EH16-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A3C2EH16-F1-model_v4_TED06"],["TED%3AAF-A0A350I6X8-F1-model_v4_TED05","TED novel fold AF-A0A350I6X8-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2026790","Saprospirales bacterium"]]},{"id":"NCBITaxon:2035772","l":"Candidatus Omnitrophota bacterium","na":9,"nb":1,"a":[["TED%3AAF-A0A357BHW2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A357BHW2-F1-model_v4_TED03"],["TED%3AAF-A0A3A4NVP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A4NVP7-F1-model_v4_TED01"],["TED%3AAF-A0A3C0MWJ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C0MWJ7-F1-model_v4_TED01"],["TED%3AAF-A0A496RGI7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A496RGI7-F1-model_v4_TED01"],["TED%3AAF-A0A496RSP3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A496RSP3-F1-model_v4_TED01"],["TED%3AAF-A0A496RUZ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A496RUZ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2035772","Candidatus Omnitrophota bacterium"]]},{"id":"NCBITaxon:2044944","l":"Sphingobacteriales bacterium","na":9,"nb":1,"a":[["TED%3AAF-A0A4Q3BJJ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q3BJJ3-F1-model_v4_TED01"],["TED%3AAF-A0A4Q3CF66-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A4Q3CF66-F1-model_v4_TED03"],["TED%3AAF-A0A4Q3D751-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Q3D751-F1-model_v4_TED02"],["TED%3AAF-A0A4Q5Y1T8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Q5Y1T8-F1-model_v4_TED02"],["TED%3AAF-A0A431MVU6-F1-model_v4_TED01","TED novel fold AF-A0A431MVU6-F1-model_v4_TED01"],["TED%3AAF-A0A4Q3CE48-F1-model_v4_TED01","TED novel fold AF-A0A4Q3CE48-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2044944","Sphingobacteriales bacterium"]]},{"id":"NCBITaxon:2052149","l":"Candidatus Aminicenantota bacterium","na":9,"nb":1,"a":[["TED%3AAF-A0A2N7QEI2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N7QEI2-F1-model_v4_TED02"],["TED%3AAF-A0A524GLZ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A524GLZ8-F1-model_v4_TED01"],["TED%3AAF-A0A7C3RQU7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C3RQU7-F1-model_v4_TED01"],["TED%3AAF-A0A7V3A5N9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V3A5N9-F1-model_v4_TED01"],["TED%3AAF-A0A523X3I9-F1-model_v4_TED02","TED novel fold AF-A0A523X3I9-F1-model_v4_TED02"],["TED%3AAF-A0A7C1LTD6-F1-model_v4_TED01","TED novel fold AF-A0A7C1LTD6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052149","Candidatus Aminicenantota bacterium"]]},{"id":"NCBITaxon:2053527","l":"Candidatus Zixiibacteriota bacterium","na":9,"nb":1,"a":[["TED%3AAF-A0A523YRI5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A523YRI5-F1-model_v4_TED01"],["TED%3AAF-A0A660PDK1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A660PDK1-F1-model_v4_TED01"],["TED%3AAF-A0A660PEZ7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A660PEZ7-F1-model_v4_TED02"],["TED%3AAF-A0A7V2EMC0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7V2EMC0-F1-model_v4_TED02"],["TED%3AAF-A0A7X9FDL7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X9FDL7-F1-model_v4_TED01"],["TED%3AAF-A0A7C1EL72-F1-model_v4_TED01","TED novel fold AF-A0A7C1EL72-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053527","Candidatus Zixiibacteriota bacterium"]]},{"id":"NCBITaxon:2053541","l":"Cytophagales bacterium","na":9,"nb":1,"a":[["TED%3AAF-A0A3B8I2I4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B8I2I4-F1-model_v4_TED01"],["TED%3AAF-A0A3B8IB95-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B8IB95-F1-model_v4_TED01"],["TED%3AAF-A0A3D4IR98-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3D4IR98-F1-model_v4_TED03"],["TED%3AAF-A0A3D5KMW2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D5KMW2-F1-model_v4_TED01"],["TED%3AAF-A0A3B8HZ12-F1-model_v4_TED05","TED novel fold AF-A0A3B8HZ12-F1-model_v4_TED05"],["TED%3AAF-A0A3B8IGB2-F1-model_v4_TED01","TED novel fold AF-A0A3B8IGB2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053541","Cytophagales bacterium"]]},{"id":"NCBITaxon:214853","l":"Anaerofustis stercorihominis","na":1,"nb":9,"a":[["TED%3AAF-A0A3E3E141-F1-model_v4_TED03","TED novel fold AF-A0A3E3E141-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A214853","Anaerofustis stercorihominis"],["NCBITaxon%3A445971","Anaerofustis stercorihominis DSM 17244"],["NCBITaxon%3A1338830","Anaerofustis stercorihominis TSDC10.1-1.1"],["NCBITaxon%3A1338831","Anaerofustis stercorihominis TSDC19.1-1.1"],["NCBITaxon%3A1338832","Anaerofustis stercorihominis TSDC20.1-1.1"],["NCBITaxon%3A1338833","Anaerofustis stercorihominis TSDC20.2-1.1"]]},{"id":"NCBITaxon:2172550","l":"Candidatus Zhuqueibacterota bacterium","na":9,"nb":1,"a":[["TED%3AAF-A0A3N5JNL5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N5JNL5-F1-model_v4_TED01"],["TED%3AAF-A0A496T630-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A496T630-F1-model_v4_TED04"],["TED%3AAF-A0A496TFB5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A496TFB5-F1-model_v4_TED02"],["TED%3AAF-A0A660YQ78-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A660YQ78-F1-model_v4_TED01"],["TED%3AAF-A0A660YNR3-F1-model_v4_TED01","TED novel fold AF-A0A660YNR3-F1-model_v4_TED01"],["TED%3AAF-A0A7Y5G412-F1-model_v4_TED01","TED novel fold AF-A0A7Y5G412-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2172550","Candidatus Zhuqueibacterota bacterium"]]},{"id":"NCBITaxon:2208","l":"Methanosarcina barkeri","na":1,"nb":9,"a":[["Pfam%3APF09505","Dimethylamine methyltransferase (Dimeth_PyL)"]],"b":[["NCBITaxon%3A2208","Methanosarcina barkeri"],["NCBITaxon%3A1434106","Methanosarcina barkeri 227"],["NCBITaxon%3A1434107","Methanosarcina barkeri 3"],["NCBITaxon%3A796385","Methanosarcina barkeri CM1"],["NCBITaxon%3A1298606","Methanosarcina barkeri JCM 10043"],["NCBITaxon%3A1434108","Methanosarcina barkeri MS"]]},{"id":"NCBITaxon:235443","l":"Cryptococcus neoformans H99","na":9,"nb":1,"a":[["Pfam%3APF20238","Copper acquisition factor BIM1-like"],["Pfam%3APF27979","CON7 transcription factor helical domain"],["Pfam%3APF21671","Protein CPL1-like"],["Pfam%3APF06280","Fn3-like domain"],["Pfam%3APF14613","HAM1-like, C-terminal domain"],["Pfam%3APF19343","HAM1-like, N-terminal domain"]],"b":[["NCBITaxon%3A235443","Cryptococcus neoformans H99"]]},{"id":"NCBITaxon:272944","l":"Rickettsia conorii str. Malish 7","na":9,"nb":1,"a":[["Pfam%3APF11020","Domain of unknown function (DUF2610)"],["Pfam%3APF18640","LepB N-terminal domain"],["Pfam%3APF10878","Protein of unknown function (DUF2672)"],["Pfam%3APF10871","Protein of unknown function (DUF2748)"],["Pfam%3APF17372","Family of unknown function (DUF5394)"],["Pfam%3APF17462","Family of unknown function (DUF5424)"]],"b":[["NCBITaxon%3A272944","Rickettsia conorii str. Malish 7"]]},{"id":"NCBITaxon:282458","l":"Staphylococcus aureus subsp. aureus MRSA252","na":9,"nb":1,"a":[["Pfam%3APF13166","AAA domain"],["Pfam%3APF18927","Glycosyl-4,4'-diaponeurosporenoate acyltransferase"],["Pfam%3APF22694","Activating protease CtpB N-terminal domain"],["Pfam%3APF04507","Csa1 family"],["Pfam%3APF12008","Type I restriction and modification enzyme - subunit R C terminal"],["Pfam%3APF05372","Delta lysin family"]],"b":[["NCBITaxon%3A282458","Staphylococcus aureus subsp. aureus MRSA252"]]},{"id":"NCBITaxon:2903","l":"Emiliania huxleyi","na":9,"nb":1,"a":[["TED%3AAF-A0A7S3RZJ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3RZJ4-F1-model_v4_TED01"],["TED%3AAF-A0A7S3W933-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3W933-F1-model_v4_TED01"],["TED%3AAF-A0A7S3W9Q3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3W9Q3-F1-model_v4_TED01"],["TED%3AAF-R1DPG1-F1-model_v4_TED01","TED highly-symmetric fold AF-R1DPG1-F1-model_v4_TED01"],["TED%3AAF-A0A7S3TQB6-F1-model_v4_TED02","TED novel fold AF-A0A7S3TQB6-F1-model_v4_TED02"],["TED%3AAF-R1BEB4-F1-model_v4_TED01","TED novel fold AF-R1BEB4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2903","Emiliania huxleyi"]]},{"id":"NCBITaxon:298","l":"Pseudomonas marginalis","na":1,"nb":9,"a":[["PROSITE%3APS00330","Hemolysin-type calcium-binding region signature"]],"b":[["NCBITaxon%3A129847","Pseudomonas grimontii"],["NCBITaxon%3A298","Pseudomonas marginalis"],["NCBITaxon%3A1198318","Pseudomonas marginalis ICMP 11289"],["NCBITaxon%3A1198317","Pseudomonas marginalis ICMP 9505"],["NCBITaxon%3A69646","Pseudomonas marginalis pv. alfalfae"],["NCBITaxon%3A97473","Pseudomonas marginalis pv. marginalis"]]},{"id":"NCBITaxon:32019","l":"Campylobacter fetus subsp. fetus","na":1,"nb":9,"a":[["TED%3AAF-A0A0S4SB94-F1-model_v4_TED05","TED novel fold AF-A0A0S4SB94-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A196","Campylobacter fetus"],["NCBITaxon%3A32019","Campylobacter fetus subsp. fetus"],["NCBITaxon%3A1240980","Campylobacter fetus subsp. fetus 04/554"],["NCBITaxon%3A360106","Campylobacter fetus subsp. fetus 82-40"],["NCBITaxon%3A1273268","Campylobacter fetus subsp. fetus BT 10/98"],["NCBITaxon%3A1273130","Campylobacter fetus subsp. fetus cff110800-21-2"]]},{"id":"NCBITaxon:354242","l":"Campylobacter jejuni subsp. jejuni 81-176","na":1,"nb":9,"a":[["PROSITE%3APS01300","RecR protein signature"]],"b":[["NCBITaxon%3A354242","Campylobacter jejuni subsp. jejuni 81-176"],["NCBITaxon%3A1368608","Campylobacter jejuni subsp. jejuni 81-176-55"],["NCBITaxon%3A1368609","Campylobacter jejuni subsp. jejuni 81-176-55-O1"],["NCBITaxon%3A1368610","Campylobacter jejuni subsp. jejuni 81-176-55-O3"],["NCBITaxon%3A1368611","Campylobacter jejuni subsp. jejuni 81-176-55-T1"],["NCBITaxon%3A1368612","Campylobacter jejuni subsp. jejuni 81-176-55-T3"]]},{"id":"NCBITaxon:359391","l":"Brucella abortus 2308","na":9,"nb":1,"a":[["Pfam%3APF13444","Acetyltransferase (GNAT) domain"],["Pfam%3APF10090","Histidine phosphotransferase C-terminal domain"],["Pfam%3APF07536","HWE histidine kinase"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF07886","BA14K-like protein"],["Pfam%3APF03135","CagE, TrbE, VirB family, component of type IV transporter system"]],"b":[["NCBITaxon%3A359391","Brucella abortus 2308"]]},{"id":"NCBITaxon:40215","l":"Acinetobacter junii","na":1,"nb":9,"a":[["TED%3AAF-A0A8B4RWB2-F1-model_v4_TED01","TED novel fold AF-A0A8B4RWB2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A471","Acinetobacter calcoaceticus"],["NCBITaxon%3A40215","Acinetobacter junii"],["NCBITaxon%3A1217666","Acinetobacter junii CIP 107470 = MTCC 11364"],["NCBITaxon%3A1217664","Acinetobacter junii CIP 64.5"],["NCBITaxon%3A1217665","Acinetobacter junii NIPH 182"],["NCBITaxon%3A575587","Acinetobacter junii SH205"]]},{"id":"NCBITaxon:405955","l":"Escherichia coli APEC O1","na":9,"nb":1,"a":[["Pfam%3APF07417","Sigma factor-binding transcriptional regulator Crl"],["Pfam%3APF10807","Domain of unknown function (DUF2541)"],["Pfam%3APF25878","pHBA AAEA subunit, alpha-helical hairpin domain"],["Pfam%3APF10796","Sigma-S stabilisation anti-adaptor protein"],["Pfam%3APF06693","Protein of unknown function (DUF1190)"],["Pfam%3APF06932","Protein of unknown function (DUF1283)"]],"b":[["NCBITaxon%3A405955","Escherichia coli APEC O1"]]},{"id":"NCBITaxon:451708","l":"Bacillus cereus H3081.97","na":9,"nb":1,"a":[["Pfam%3APF25796","BREX ATP-binding protein BrxC 4th domain with six-stranded beta sheet"],["Pfam%3APF25792","BREX ATP-binding protein BrxC alpha helical domain"],["Pfam%3APF08747","BREX protein BrxB"],["Pfam%3APF27212","BrxC seventh domain"],["Pfam%3APF27153","BrxC C-terminal alpha-beta domain"],["Pfam%3APF19557","BrxC/PglY, N-terminal domain"]],"b":[["NCBITaxon%3A451708","Bacillus cereus H3081.97"]]},{"id":"NCBITaxon:5963","l":"Stentor coeruleus","na":9,"nb":1,"a":[["TED%3AAF-A0A1R2B826-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1R2B826-F1-model_v4_TED03"],["TED%3AAF-A0A1R2BGQ2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1R2BGQ2-F1-model_v4_TED02"],["TED%3AAF-A0A1R2CI53-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1R2CI53-F1-model_v4_TED01"],["TED%3AAF-A0A1R2CKY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1R2CKY6-F1-model_v4_TED01"],["TED%3AAF-A0A1R2BD98-F1-model_v4_TED03","TED novel fold AF-A0A1R2BD98-F1-model_v4_TED03"],["TED%3AAF-A0A1R2BHU7-F1-model_v4_TED01","TED novel fold AF-A0A1R2BHU7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5963","Stentor coeruleus"]]},{"id":"NCBITaxon:729","l":"Haemophilus parainfluenzae","na":1,"nb":9,"a":[["Pfam%3APF04480","Protein of unknown function (DUF559)"]],"b":[["NCBITaxon%3A732","Aggregatibacter aphrophilus"],["NCBITaxon%3A726","Haemophilus haemolyticus"],["NCBITaxon%3A729","Haemophilus parainfluenzae"],["NCBITaxon%3A888828","Haemophilus parainfluenzae ATCC 33392"],["NCBITaxon%3A1095746","Haemophilus parainfluenzae HK2019"],["NCBITaxon%3A1095745","Haemophilus parainfluenzae HK262"]]},{"id":"NCBITaxon:96241","l":"Bacillus spizizenii","na":1,"nb":9,"a":[["Pfam%3APF05952","Bacillus competence pheromone ComX"]],"b":[["NCBITaxon%3A96241","Bacillus spizizenii"],["NCBITaxon%3A703612","Bacillus spizizenii ATCC 6633 = JCM 2499"],["NCBITaxon%3A1051503","Bacillus spizizenii DV1-B-1"],["NCBITaxon%3A932006","Bacillus spizizenii RFWG1A3"],["NCBITaxon%3A932005","Bacillus spizizenii RFWG1A4"],["NCBITaxon%3A932007","Bacillus spizizenii RFWG4C10"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":1,"nb":8,"a":[["TED%3AAF-A0A367PA30-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A367PA30-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A119219","Cupriavidus metallidurans"],["NCBITaxon%3A106590","Cupriavidus necator"],["NCBITaxon%3A1304882","Cupriavidus necator A5-1"],["NCBITaxon%3A381666","Cupriavidus necator H16"],["NCBITaxon%3A53482","Cupriavidus necator H850"],["NCBITaxon%3A1042878","Cupriavidus necator N-1"]]},{"id":"NCBITaxon:1261","l":"Peptostreptococcus anaerobius","na":1,"nb":8,"a":[["TED%3AAF-A0A379CE26-F1-model_v4_TED01","TED novel fold AF-A0A379CE26-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1944660","Parvimonas sp."],["NCBITaxon%3A1261","Peptostreptococcus anaerobius"],["NCBITaxon%3A596329","Peptostreptococcus anaerobius 653-L"],["NCBITaxon%3A1263100","Peptostreptococcus anaerobius CAG:621"],["NCBITaxon%3A1073365","Peptostreptococcus anaerobius CC14N"],["NCBITaxon%3A1035196","Peptostreptococcus anaerobius VPI 4330 = DSM 2949"]]},{"id":"NCBITaxon:127549","l":"Calcidiscus leptoporus","na":8,"nb":1,"a":[["TED%3AAF-A0A7S0INC1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S0INC1-F1-model_v4_TED02"],["TED%3AAF-A0A7S0IYC3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0IYC3-F1-model_v4_TED01"],["TED%3AAF-A0A7S0JEV1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0JEV1-F1-model_v4_TED01"],["TED%3AAF-A0A7S0NTQ4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S0NTQ4-F1-model_v4_TED03"],["TED%3AAF-A0A7S0ITZ3-F1-model_v4_TED01","TED novel fold AF-A0A7S0ITZ3-F1-model_v4_TED01"],["TED%3AAF-A0A7S0IVK3-F1-model_v4_TED02","TED novel fold AF-A0A7S0IVK3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A127549","Calcidiscus leptoporus"]]},{"id":"NCBITaxon:13689","l":"Sphingomonas paucimobilis","na":1,"nb":8,"a":[["PROSITE%3APS00082","Extradiol ring-cleavage dioxygenases signature"]],"b":[["NCBITaxon%3A178355","Flavobacterium omnivorum"],["NCBITaxon%3A1404341","Sphingobium scionense"],["NCBITaxon%3A13689","Sphingomonas paucimobilis"],["NCBITaxon%3A1219050","Sphingomonas paucimobilis NBRC 13935"],["NCBITaxon%3A33051","Sphingomonas sanguinis"],["NCBITaxon%3A1219054","Sphingomonas sanguinis NBRC 13937"]]},{"id":"NCBITaxon:1487602","l":"Vannella robusta","na":8,"nb":1,"a":[["TED%3AAF-A0A7S4HGW0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4HGW0-F1-model_v4_TED01"],["TED%3AAF-A0A7S4I8J6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4I8J6-F1-model_v4_TED01"],["TED%3AAF-A0A7S4M3M8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S4M3M8-F1-model_v4_TED03"],["TED%3AAF-A0A7S4MDY9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S4MDY9-F1-model_v4_TED02"],["TED%3AAF-A0A7S4HLW6-F1-model_v4_TED01","TED novel fold AF-A0A7S4HLW6-F1-model_v4_TED01"],["TED%3AAF-A0A7S4IBF0-F1-model_v4_TED02","TED novel fold AF-A0A7S4IBF0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1487602","Vannella robusta"]]},{"id":"NCBITaxon:1490","l":"Paraclostridium bifermentans","na":1,"nb":8,"a":[["TED%3AAF-A0A5P3XDT9-F1-model_v4_TED01","TED novel fold AF-A0A5P3XDT9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1490","Paraclostridium bifermentans"],["NCBITaxon%3A1233170","Paraclostridium bifermentans ATCC 19299"],["NCBITaxon%3A1233171","Paraclostridium bifermentans ATCC 638 = DSM 14991"],["NCBITaxon%3A1357385","Paraclostridium bifermentans NI48_6"],["NCBITaxon%3A2663174","Paraclostridium bifermentans subsp. bifermentans"],["NCBITaxon%3A2663173","Paraclostridium bifermentans subsp. muricolitidis"]]},{"id":"NCBITaxon:1519565","l":"Fistulifera solaris","na":8,"nb":1,"a":[["TED%3AAF-A0A1Z5KJL4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z5KJL4-F1-model_v4_TED01"],["TED%3AAF-A0A1Z5JER3-F1-model_v4_TED01","TED novel fold AF-A0A1Z5JER3-F1-model_v4_TED01"],["TED%3AAF-A0A1Z5JX70-F1-model_v4_TED01","TED novel fold AF-A0A1Z5JX70-F1-model_v4_TED01"],["TED%3AAF-A0A1Z5K129-F1-model_v4_TED03","TED novel fold AF-A0A1Z5K129-F1-model_v4_TED03"],["TED%3AAF-A0A1Z5K6R2-F1-model_v4_TED02","TED novel fold AF-A0A1Z5K6R2-F1-model_v4_TED02"],["TED%3AAF-A0A1Z5KAG5-F1-model_v4_TED02","TED novel fold AF-A0A1Z5KAG5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1519565","Fistulifera solaris"]]},{"id":"NCBITaxon:155615","l":"Fusobacterium vincentii","na":1,"nb":8,"a":[["TED%3AAF-A0A2D3JJJ5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D3JJJ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A851","Fusobacterium nucleatum"],["NCBITaxon%3A155615","Fusobacterium vincentii"],["NCBITaxon%3A469602","Fusobacterium vincentii 3_1_27"],["NCBITaxon%3A469604","Fusobacterium vincentii 3_1_36A2"],["NCBITaxon%3A469606","Fusobacterium vincentii 4_1_13"],["NCBITaxon%3A209882","Fusobacterium vincentii ATCC 49256"]]},{"id":"NCBITaxon:156174","l":"Haptolina ericina","na":8,"nb":1,"a":[["TED%3AAF-A0A6T9BHX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6T9BHX2-F1-model_v4_TED01"],["TED%3AAF-A0A7S3AM90-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S3AM90-F1-model_v4_TED02"],["TED%3AAF-A0A7S3BLC7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3BLC7-F1-model_v4_TED01"],["TED%3AAF-A0A7S3FK24-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3FK24-F1-model_v4_TED01"],["TED%3AAF-A0A7S3FK24-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S3FK24-F1-model_v4_TED02"],["TED%3AAF-A0A7S3AD30-F1-model_v4_TED01","TED novel fold AF-A0A7S3AD30-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A156174","Haptolina ericina"]]},{"id":"NCBITaxon:163516","l":"Leptocylindrus danicus","na":8,"nb":1,"a":[["TED%3AAF-A0A7S2K456-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2K456-F1-model_v4_TED01"],["TED%3AAF-A0A7S2K4C3-F1-model_v4_TED03","TED novel fold AF-A0A7S2K4C3-F1-model_v4_TED03"],["TED%3AAF-A0A7S2K9T3-F1-model_v4_TED02","TED novel fold AF-A0A7S2K9T3-F1-model_v4_TED02"],["TED%3AAF-A0A7S2KEQ3-F1-model_v4_TED02","TED novel fold AF-A0A7S2KEQ3-F1-model_v4_TED02"],["TED%3AAF-A0A7S2LA27-F1-model_v4_TED01","TED novel fold AF-A0A7S2LA27-F1-model_v4_TED01"],["TED%3AAF-A0A7S2NST6-F1-model_v4_TED02","TED novel fold AF-A0A7S2NST6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A163516","Leptocylindrus danicus"]]},{"id":"NCBITaxon:183190","l":"Xylella fastidiosa Temecula1","na":8,"nb":1,"a":[["Pfam%3APF21142","Bacterial alpha-2 macroglobulin MG2 domain"],["Pfam%3APF04273","Beta-lactamase hydrolase-like protein, phosphatase-like domain"],["Pfam%3APF17970","Bacterial Alpha-2-macroglobulin MG1 domain"],["Pfam%3APF17973","Bacterial Alpha-2-macroglobulin MG10 domain"],["Pfam%3APF11974","Bacterial alpha-2-macroglobulin MG3 domain"],["Pfam%3APF17972","Bacterial Alpha-2-macroglobulin MG5 domain"]],"b":[["NCBITaxon%3A183190","Xylella fastidiosa Temecula1"]]},{"id":"NCBITaxon:1898112","l":"Rhodospirillaceae bacterium","na":8,"nb":1,"a":[["TED%3AAF-A0A2E2MMI2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E2MMI2-F1-model_v4_TED01"],["TED%3AAF-A0A2E7PH74-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E7PH74-F1-model_v4_TED02"],["TED%3AAF-A0A2G4IIC6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G4IIC6-F1-model_v4_TED01"],["TED%3AAF-A0A2G4IN46-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G4IN46-F1-model_v4_TED01"],["TED%3AAF-A0A353X848-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A353X848-F1-model_v4_TED03"],["TED%3AAF-A0A3D3V9F8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D3V9F8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1898112","Rhodospirillaceae bacterium"]]},{"id":"NCBITaxon:1898206","l":"Spirochaetaceae bacterium","na":8,"nb":1,"a":[["TED%3AAF-A0A2E8PS22-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E8PS22-F1-model_v4_TED01"],["TED%3AAF-A0A2E9Q6U7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2E9Q6U7-F1-model_v4_TED03"],["TED%3AAF-A0A3B9GEQ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B9GEQ8-F1-model_v4_TED01"],["TED%3AAF-A0A3B9GF21-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3B9GF21-F1-model_v4_TED02"],["TED%3AAF-A0A3N5U8M9-F1-model_v4_TED01","TED novel fold AF-A0A3N5U8M9-F1-model_v4_TED01"],["TED%3AAF-A0A525BZN2-F1-model_v4_TED01","TED novel fold AF-A0A525BZN2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1898206","Spirochaetaceae bacterium"]]},{"id":"NCBITaxon:1899355","l":"Oceanospirillaceae bacterium","na":8,"nb":1,"a":[["TED%3AAF-A0A2E2IFM2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E2IFM2-F1-model_v4_TED01"],["TED%3AAF-A0A2E7EAQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E7EAQ3-F1-model_v4_TED01"],["TED%3AAF-A0A2E7JE34-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E7JE34-F1-model_v4_TED01"],["TED%3AAF-A0A352R0R2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A352R0R2-F1-model_v4_TED01"],["TED%3AAF-A0A2D5PA45-F1-model_v4_TED01","TED novel fold AF-A0A2D5PA45-F1-model_v4_TED01"],["TED%3AAF-A0A2D5PBR3-F1-model_v4_TED05","TED novel fold AF-A0A2D5PBR3-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1899355","Oceanospirillaceae bacterium"]]},{"id":"NCBITaxon:2026777","l":"Phycisphaeraceae bacterium","na":8,"nb":1,"a":[["TED%3AAF-A0A2D5ZBA1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D5ZBA1-F1-model_v4_TED01"],["TED%3AAF-A0A2D5Z3V1-F1-model_v4_TED01","TED novel fold AF-A0A2D5Z3V1-F1-model_v4_TED01"],["TED%3AAF-A0A2E2B811-F1-model_v4_TED01","TED novel fold AF-A0A2E2B811-F1-model_v4_TED01"],["TED%3AAF-A0A2E5G3N3-F1-model_v4_TED01","TED novel fold AF-A0A2E5G3N3-F1-model_v4_TED01"],["TED%3AAF-A0A2E5G721-F1-model_v4_TED01","TED novel fold AF-A0A2E5G721-F1-model_v4_TED01"],["TED%3AAF-A0A5Q4ENV4-F1-model_v4_TED01","TED novel fold AF-A0A5Q4ENV4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026777","Phycisphaeraceae bacterium"]]},{"id":"NCBITaxon:2212470","l":"Candidatus Eiseniibacteriota bacterium","na":8,"nb":1,"a":[["TED%3AAF-A0A538TQM9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A538TQM9-F1-model_v4_TED02"],["TED%3AAF-A0A538TUC4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A538TUC4-F1-model_v4_TED02"],["TED%3AAF-A0A538U1H5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A538U1H5-F1-model_v4_TED03"],["TED%3AAF-A0A7Y2E941-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y2E941-F1-model_v4_TED01"],["TED%3AAF-A0A7Y2EA43-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y2EA43-F1-model_v4_TED01"],["TED%3AAF-A0A7Y2EAQ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y2EAQ1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2212470","Candidatus Eiseniibacteriota bacterium"]]},{"id":"NCBITaxon:2250255","l":"Methanosarcinales archaeon","na":8,"nb":1,"a":[["TED%3AAF-A0A662QZ99-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A662QZ99-F1-model_v4_TED02"],["TED%3AAF-A0A7C0VQZ1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7C0VQZ1-F1-model_v4_TED03"],["TED%3AAF-A0A822JF34-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A822JF34-F1-model_v4_TED01"],["TED%3AAF-A0A843CE04-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843CE04-F1-model_v4_TED01"],["TED%3AAF-A0A849PQJ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A849PQJ3-F1-model_v4_TED01"],["TED%3AAF-A0A497ITN9-F1-model_v4_TED01","TED novel fold AF-A0A497ITN9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2250255","Methanosarcinales archaeon"]]},{"id":"NCBITaxon:230985","l":"Symbiodinium sp. KB8","na":8,"nb":1,"a":[["TED%3AAF-A0A812NTD9-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A812NTD9-F1-model_v4_TED04"],["TED%3AAF-A0A812VMU1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812VMU1-F1-model_v4_TED01"],["TED%3AAF-A0A813BWY4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A813BWY4-F1-model_v4_TED02"],["TED%3AAF-A0A813CFP1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A813CFP1-F1-model_v4_TED01"],["TED%3AAF-A0A813CJY8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A813CJY8-F1-model_v4_TED02"],["TED%3AAF-A0A812LNA9-F1-model_v4_TED01","TED novel fold AF-A0A812LNA9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A230985","Symbiodinium sp. KB8"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK 1622","na":8,"nb":1,"a":[["Pfam%3APF27281","DevT C-terminal domain"],["Pfam%3APF27372","DevT N-terminal domain"],["Pfam%3APF17762","ParB HTH domain"],["Pfam%3APF01930","Domain of unknown function DUF83"],["Pfam%3APF09559","Cas6 Crispr"],["Pfam%3APF01905","CRISPR-associated negative auto-regulator DevR/Csa2"]],"b":[["NCBITaxon%3A246197","Myxococcus xanthus DK 1622"]]},{"id":"NCBITaxon:2482794","l":"Desulfurellales bacterium","na":8,"nb":1,"a":[["TED%3AAF-A0A5C7P4X7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7P4X7-F1-model_v4_TED01"],["TED%3AAF-A0A5C7P5L0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7P5L0-F1-model_v4_TED01"],["TED%3AAF-A0A5C7P6G5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5C7P6G5-F1-model_v4_TED02"],["TED%3AAF-A0A5C7PE00-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7PE00-F1-model_v4_TED01"],["TED%3AAF-A0A5C7PN44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7PN44-F1-model_v4_TED01"],["TED%3AAF-A0A5C7Q1Z9-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A5C7Q1Z9-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2482794","Desulfurellales bacterium"]]},{"id":"NCBITaxon:265563","l":"Odontella aurita","na":8,"nb":1,"a":[["TED%3AAF-A0A7S4IRF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4IRF4-F1-model_v4_TED01"],["TED%3AAF-A0A7S4J6G7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4J6G7-F1-model_v4_TED01"],["TED%3AAF-A0A7S4JEH1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4JEH1-F1-model_v4_TED01"],["TED%3AAF-A0A7S4K4L9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4K4L9-F1-model_v4_TED01"],["TED%3AAF-A0A7S4IH07-F1-model_v4_TED01","TED novel fold AF-A0A7S4IH07-F1-model_v4_TED01"],["TED%3AAF-A0A7S4JR13-F1-model_v4_TED02","TED novel fold AF-A0A7S4JR13-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A265563","Odontella aurita"]]},{"id":"NCBITaxon:28038","l":"Latilactobacillus curvatus","na":1,"nb":8,"a":[["TED%3AAF-A0A3R5XZN9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3R5XZN9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A418199","Lactobacillus sp. JCM 7527"],["NCBITaxon%3A28038","Latilactobacillus curvatus"],["NCBITaxon%3A1074451","Latilactobacillus curvatus CRL 705"],["NCBITaxon%3A1357401","Latilactobacillus curvatus F16_9"],["NCBITaxon%3A1293592","Latilactobacillus curvatus JCM 1096 = DSM 20019"],["NCBITaxon%3A1318630","Latilactobacillus curvatus WSU1"]]},{"id":"NCBITaxon:29508","l":"Leptospira meyeri","na":1,"nb":8,"a":[["TED%3AAF-A0A5F2D179-F1-model_v4_TED01","TED novel fold AF-A0A5F2D179-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29508","Leptospira meyeri"],["NCBITaxon%3A293077","Leptospira meyeri serovar Hardjo"],["NCBITaxon%3A1193051","Leptospira meyeri serovar Hardjo str. Went 5"],["NCBITaxon%3A293064","Leptospira meyeri serovar Ranarum"],["NCBITaxon%3A293080","Leptospira meyeri serovar Semaranga"],["NCBITaxon%3A1218585","Leptospira meyeri serovar Semaranga str. Veldrot Semarang 173"]]},{"id":"NCBITaxon:300","l":"Ectopseudomonas mendocina","na":1,"nb":8,"a":[["TED%3AAF-A0A550EU84-F1-model_v4_TED01","TED novel fold AF-A0A550EU84-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A300","Ectopseudomonas mendocina"],["NCBITaxon%3A1197721","Ectopseudomonas mendocina DLHK"],["NCBITaxon%3A1390370","Ectopseudomonas mendocina EGD-AQ5"],["NCBITaxon%3A1215108","Ectopseudomonas mendocina NBRC 14162"],["NCBITaxon%3A1001585","Ectopseudomonas mendocina NK-01"],["NCBITaxon%3A1225174","Ectopseudomonas mendocina S5.2"]]},{"id":"NCBITaxon:32597","l":"Perkinsus olseni","na":8,"nb":1,"a":[["TED%3AAF-A0A7J6LEI3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J6LEI3-F1-model_v4_TED01"],["TED%3AAF-A0A7J6P2W0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J6P2W0-F1-model_v4_TED01"],["TED%3AAF-A0A7J6L1P5-F1-model_v4_TED03","TED novel fold AF-A0A7J6L1P5-F1-model_v4_TED03"],["TED%3AAF-A0A7J6L6E8-F1-model_v4_TED01","TED novel fold AF-A0A7J6L6E8-F1-model_v4_TED01"],["TED%3AAF-A0A7J6MV19-F1-model_v4_TED02","TED novel fold AF-A0A7J6MV19-F1-model_v4_TED02"],["TED%3AAF-A0A7J6RMU5-F1-model_v4_TED03","TED novel fold AF-A0A7J6RMU5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A32597","Perkinsus olseni"]]},{"id":"NCBITaxon:33070","l":"Parathermosynechococcus lividus","na":1,"nb":8,"a":[["Pfam%3APF06745","KaiC"]],"b":[["NCBITaxon%3A33070","Parathermosynechococcus lividus"],["NCBITaxon%3A2991904","Parathermosynechococcus lividus BC1607"],["NCBITaxon%3A102118","Parathermosynechococcus lividus C1"],["NCBITaxon%3A459417","Parathermosynechococcus lividus CR_36M"],["NCBITaxon%3A459418","Parathermosynechococcus lividus CR_9M"],["NCBITaxon%3A1897098","Parathermosynechococcus lividus M6"]]},{"id":"NCBITaxon:33967","l":"Leuconostoc mesenteroides subsp. mesenteroides","na":1,"nb":8,"a":[["Pfam%3APF03390","2-hydroxycarboxylate transporter family"]],"b":[["NCBITaxon%3A33964","Leuconostoc citreum"],["NCBITaxon%3A1245","Leuconostoc mesenteroides"],["NCBITaxon%3A33967","Leuconostoc mesenteroides subsp. mesenteroides"],["NCBITaxon%3A203120","Leuconostoc mesenteroides subsp. mesenteroides ATCC 8293"],["NCBITaxon%3A1107880","Leuconostoc mesenteroides subsp. mesenteroides J18"],["NCBITaxon%3A889970","Leuconostoc mesenteroides subsp. mesenteroides Y110"]]},{"id":"NCBITaxon:35128","l":"Thalassiosira pseudonana","na":8,"nb":1,"a":[["TED%3AAF-B5YN71-F1-model_v4_TED01","TED highly-symmetric fold AF-B5YN71-F1-model_v4_TED01"],["TED%3AAF-B8C4R6-F1-model_v4_TED02","TED highly-symmetric fold AF-B8C4R6-F1-model_v4_TED02"],["TED%3AAF-B8C9A8-F1-model_v4_TED01","TED highly-symmetric fold AF-B8C9A8-F1-model_v4_TED01"],["TED%3AAF-B8BWF8-F1-model_v4_TED05","TED novel fold AF-B8BWF8-F1-model_v4_TED05"],["TED%3AAF-B8C2H1-F1-model_v4_TED03","TED novel fold AF-B8C2H1-F1-model_v4_TED03"],["TED%3AAF-B8C8D0-F1-model_v4_TED01","TED novel fold AF-B8C8D0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A35128","Thalassiosira pseudonana"]]},{"id":"NCBITaxon:39966","l":"Hypsizygus marmoreus","na":8,"nb":1,"a":[["TED%3AAF-A0A369J6K5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A369J6K5-F1-model_v4_TED01"],["TED%3AAF-A0A369JBT3-F1-model_v4_TED02","TED novel fold AF-A0A369JBT3-F1-model_v4_TED02"],["TED%3AAF-A0A369JEI9-F1-model_v4_TED02","TED novel fold AF-A0A369JEI9-F1-model_v4_TED02"],["TED%3AAF-A0A369JTQ8-F1-model_v4_TED01","TED novel fold AF-A0A369JTQ8-F1-model_v4_TED01"],["TED%3AAF-A0A369JZM3-F1-model_v4_TED01","TED novel fold AF-A0A369JZM3-F1-model_v4_TED01"],["TED%3AAF-A0A369K0Y7-F1-model_v4_TED02","TED novel fold AF-A0A369K0Y7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A39966","Hypsizygus marmoreus"]]},{"id":"NCBITaxon:40216","l":"Acinetobacter radioresistens","na":1,"nb":8,"a":[["TED%3AAF-A0A7D7YF26-F1-model_v4_TED02","TED novel fold AF-A0A7D7YF26-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A40216","Acinetobacter radioresistens"],["NCBITaxon%3A981334","Acinetobacter radioresistens DSM 6976 = NBRC 102413 = CIP 103788"],["NCBITaxon%3A1217674","Acinetobacter radioresistens NIPH 2130"],["NCBITaxon%3A575589","Acinetobacter radioresistens SH164"],["NCBITaxon%3A596318","Acinetobacter radioresistens SK82"],["NCBITaxon%3A1221310","Acinetobacter radioresistens TG02010"]]},{"id":"NCBITaxon:41978","l":"Ruminococcus sp.","na":8,"nb":1,"a":[["TED%3AAF-A0A354K7U3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A354K7U3-F1-model_v4_TED01"],["TED%3AAF-A0A354PWT2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A354PWT2-F1-model_v4_TED01"],["TED%3AAF-A0A3B9SYL6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B9SYL6-F1-model_v4_TED01"],["TED%3AAF-A0A3C0QNU7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C0QNU7-F1-model_v4_TED01"],["TED%3AAF-A0A3C0QSS9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3C0QSS9-F1-model_v4_TED02"],["TED%3AAF-A0A354PX54-F1-model_v4_TED01","TED novel fold AF-A0A354PX54-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A41978","Ruminococcus sp."]]},{"id":"NCBITaxon:419947","l":"Mycobacterium tuberculosis H37Ra","na":8,"nb":1,"a":[["Pfam%3APF17668","Acetyltransferase (GNAT) domain"],["Pfam%3APF13527","Acetyltransferase (GNAT) domain"],["Pfam%3APF02261","Aspartate decarboxylase"],["Pfam%3APF07584","Aerotolerance regulator N-terminal"],["Pfam%3APF03993","Domain of Unknown Function (DUF349)"],["Pfam%3APF02313","Fumarate reductase subunit D"]],"b":[["NCBITaxon%3A419947","Mycobacterium tuberculosis H37Ra"]]},{"id":"NCBITaxon:467705","l":"Streptococcus gordonii str. Challis substr. CH1","na":8,"nb":1,"a":[["Pfam%3APF18652","Adhesin P1 N-terminal domain"],["Pfam%3APF17998","Cell surface antigen I/II C2 terminal domain"],["Pfam%3APF16364","Cell surface antigen C-terminus"],["Pfam%3APF18938","Atypical Rib domain"],["Pfam%3APF20164","GspA/SrpA SigLec-like domain"],["Pfam%3APF08363","Glucan-binding protein C"]],"b":[["NCBITaxon%3A467705","Streptococcus gordonii str. Challis substr. CH1"]]},{"id":"NCBITaxon:565050","l":"Caulobacter vibrioides NA1000","na":8,"nb":1,"a":[["Pfam%3APF02767","DNA polymerase III beta subunit, central domain"],["Pfam%3APF02768","DNA polymerase III beta subunit, C-terminal domain"],["Pfam%3APF00712","DNA polymerase III beta subunit, N-terminal domain"],["Pfam%3APF21249","GyrB, hook"],["Pfam%3APF07378","Flagellar protein FlbT"],["Pfam%3APF03748","Flagellar basal body-associated protein FliL"]],"b":[["NCBITaxon%3A565050","Caulobacter vibrioides NA1000"]]},{"id":"NCBITaxon:58346","l":"Streptomyces platensis","na":1,"nb":8,"a":[["PROSITE%3APS00999","Streptomyces subtilisin-type inhibitors signature"]],"b":[["NCBITaxon%3A249580","Streptomyces glebosus"],["NCBITaxon%3A249582","Streptomyces libani subsp. rufus"],["NCBITaxon%3A1920","Streptomyces nigrescens"],["NCBITaxon%3A58346","Streptomyces platensis"],["NCBITaxon%3A1649334","Streptomyces platensis subsp. clarensis"],["NCBITaxon%3A285579","Streptomyces platensis subsp. malvinus"]]},{"id":"NCBITaxon:605","l":"Salmonella enterica subsp. enterica serovar Pullorum","na":1,"nb":8,"a":[["Pfam%3APF25855","Invasion plasmid antigen J, cysteine protease"]],"b":[["NCBITaxon%3A605","Salmonella enterica subsp. enterica serovar Pullorum"],["NCBITaxon%3A1079472","Salmonella enterica subsp. enterica serovar Pullorum str. 10398"],["NCBITaxon%3A1079471","Salmonella enterica subsp. enterica serovar Pullorum str. 13036"],["NCBITaxon%3A1079470","Salmonella enterica subsp. enterica serovar Pullorum str. 19945"],["NCBITaxon%3A1029979","Salmonella enterica subsp. enterica serovar Pullorum str. ATCC 9120"],["NCBITaxon%3A1299269","Salmonella enterica subsp. enterica serovar Pullorum str. CFSAN000606"]]},{"id":"NCBITaxon:726","l":"Haemophilus haemolyticus","na":1,"nb":8,"a":[["TED%3AAF-A0A1B8PEV3-F1-model_v4_TED01","TED novel fold AF-A0A1B8PEV3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A726","Haemophilus haemolyticus"],["NCBITaxon%3A1095742","Haemophilus haemolyticus HK386"],["NCBITaxon%3A1028802","Haemophilus haemolyticus M19107"],["NCBITaxon%3A1028803","Haemophilus haemolyticus M19501"],["NCBITaxon%3A1028804","Haemophilus haemolyticus M21127"],["NCBITaxon%3A1028805","Haemophilus haemolyticus M21621"]]},{"id":"NCBITaxon:86840","l":"Pseudomonas cannabina","na":1,"nb":8,"a":[["TED%3AAF-A0A3M3K1Y4-F1-model_v4_TED03","TED novel fold AF-A0A3M3K1Y4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A86840","Pseudomonas cannabina"],["NCBITaxon%3A757414","Pseudomonas cannabina pv. alisalensis"],["NCBITaxon%3A1292044","Pseudomonas cannabina pv. alisalensis str. BS91"],["NCBITaxon%3A1292357","Pseudomonas cannabina pv. alisalensis str. PSa1-3"],["NCBITaxon%3A1290997","Pseudomonas cannabina pv. alisalensis str. PSa866"],["NCBITaxon%3A1292045","Pseudomonas cannabina pv. alisalensis str. T3C"]]},{"id":"NCBITaxon:89044","l":"Spumella elongata","na":8,"nb":1,"a":[["TED%3AAF-A0A7S3GNY1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3GNY1-F1-model_v4_TED01"],["TED%3AAF-A0A7S3GPM1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3GPM1-F1-model_v4_TED01"],["TED%3AAF-A0A7S3H3K0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S3H3K0-F1-model_v4_TED02"],["TED%3AAF-A0A7S3M258-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3M258-F1-model_v4_TED01"],["TED%3AAF-A0A7S3H7J2-F1-model_v4_TED01","TED novel fold AF-A0A7S3H7J2-F1-model_v4_TED01"],["TED%3AAF-A0A7S3LZW7-F1-model_v4_TED01","TED novel fold AF-A0A7S3LZW7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A89044","Spumella elongata"]]},{"id":"NCBITaxon:927083","l":"Sandaracinus amylolyticus","na":8,"nb":1,"a":[["TED%3AAF-A0A0F6VZG6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F6VZG6-F1-model_v4_TED01"],["TED%3AAF-A0A0F6W2H9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F6W2H9-F1-model_v4_TED01"],["TED%3AAF-A0A0F6W521-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0F6W521-F1-model_v4_TED02"],["TED%3AAF-A0A0F6W9I9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F6W9I9-F1-model_v4_TED01"],["TED%3AAF-A0A0F6YGP9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F6YGP9-F1-model_v4_TED01"],["TED%3AAF-A0A0F6SDQ8-F1-model_v4_TED01","TED novel fold AF-A0A0F6SDQ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A927083","Sandaracinus amylolyticus"]]},{"id":"NCBITaxon:119927","l":"Alternaria tenuissima","na":7,"nb":1,"a":[["TED%3AAF-A0A4Q4MR18-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q4MR18-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4M1N1-F1-model_v4_TED01","TED novel fold AF-A0A4Q4M1N1-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4M2G6-F1-model_v4_TED01","TED novel fold AF-A0A4Q4M2G6-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4MJL0-F1-model_v4_TED01","TED novel fold AF-A0A4Q4MJL0-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4PGY1-F1-model_v4_TED01","TED novel fold AF-A0A4Q4PGY1-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4RTT0-F1-model_v4_TED01","TED novel fold AF-A0A4Q4RTT0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A119927","Alternaria tenuissima"]]},{"id":"NCBITaxon:1202772","l":"Achlya hypogyna","na":7,"nb":1,"a":[["TED%3AAF-A0A0A7CNN0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A7CNN0-F1-model_v4_TED01"],["TED%3AAF-A0A1V9YXU6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V9YXU6-F1-model_v4_TED01"],["TED%3AAF-A0A1V9ZTZ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V9ZTZ4-F1-model_v4_TED01"],["TED%3AAF-A0A1V9YDY2-F1-model_v4_TED01","TED novel fold AF-A0A1V9YDY2-F1-model_v4_TED01"],["TED%3AAF-A0A1V9YYN3-F1-model_v4_TED01","TED novel fold AF-A0A1V9YYN3-F1-model_v4_TED01"],["TED%3AAF-A0A1V9Z3L8-F1-model_v4_TED05","TED novel fold AF-A0A1V9Z3L8-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1202772","Achlya hypogyna"]]},{"id":"NCBITaxon:122233","l":"Chaetoceros debilis","na":7,"nb":1,"a":[["TED%3AAF-A0A7S3PXS8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3PXS8-F1-model_v4_TED01"],["TED%3AAF-A0A7S3Q425-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S3Q425-F1-model_v4_TED03"],["TED%3AAF-A0A7S3V5P7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3V5P7-F1-model_v4_TED01"],["TED%3AAF-A0A6S8XPX8-F1-model_v4_TED01","TED novel fold AF-A0A6S8XPX8-F1-model_v4_TED01"],["TED%3AAF-A0A7S3PYF0-F1-model_v4_TED01","TED novel fold AF-A0A7S3PYF0-F1-model_v4_TED01"],["TED%3AAF-A0A7S3PZM3-F1-model_v4_TED01","TED novel fold AF-A0A7S3PZM3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A122233","Chaetoceros debilis"]]},{"id":"NCBITaxon:141414","l":"Strombidinopsis acuminata","na":7,"nb":1,"a":[["TED%3AAF-A0A7S3SGM9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3SGM9-F1-model_v4_TED01"],["TED%3AAF-A0A7S3TCM1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3TCM1-F1-model_v4_TED01"],["TED%3AAF-A0A7S3TSP0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S3TSP0-F1-model_v4_TED02"],["TED%3AAF-A0A7S3RMS0-F1-model_v4_TED01","TED novel fold AF-A0A7S3RMS0-F1-model_v4_TED01"],["TED%3AAF-A0A7S3RXR2-F1-model_v4_TED01","TED novel fold AF-A0A7S3RXR2-F1-model_v4_TED01"],["TED%3AAF-A0A7S3T6A7-F1-model_v4_TED01","TED novel fold AF-A0A7S3T6A7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A141414","Strombidinopsis acuminata"]]},{"id":"NCBITaxon:1463165","l":"Klebsiella quasipneumoniae","na":1,"nb":7,"a":[["TED%3AAF-A0A6H3DTS3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A6H3DTS3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A1463165","Klebsiella quasipneumoniae"],["NCBITaxon%3A1667327","Klebsiella quasipneumoniae subsp. quasipneumoniae"],["NCBITaxon%3A1443591","Klebsiella quasipneumoniae subsp. quasipneumoniae 18A069"],["NCBITaxon%3A1328397","Klebsiella quasipneumoniae subsp. quasipneumoniae UCICRE 14"],["NCBITaxon%3A1463164","Klebsiella quasipneumoniae subsp. similipneumoniae"]]},{"id":"NCBITaxon:156173","l":"Haptolina brevifila","na":7,"nb":1,"a":[["TED%3AAF-A0A7S2IEX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2IEX7-F1-model_v4_TED01"],["TED%3AAF-A0A7S2D8H5-F1-model_v4_TED01","TED novel fold AF-A0A7S2D8H5-F1-model_v4_TED01"],["TED%3AAF-A0A7S2D8Z9-F1-model_v4_TED01","TED novel fold AF-A0A7S2D8Z9-F1-model_v4_TED01"],["TED%3AAF-A0A7S2G649-F1-model_v4_TED02","TED novel fold AF-A0A7S2G649-F1-model_v4_TED02"],["TED%3AAF-A0A7S2H406-F1-model_v4_TED01","TED novel fold AF-A0A7S2H406-F1-model_v4_TED01"],["TED%3AAF-A0A7S2ITJ3-F1-model_v4_TED02","TED novel fold AF-A0A7S2ITJ3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A156173","Haptolina brevifila"]]},{"id":"NCBITaxon:1735","l":"Holdemanella biformis","na":1,"nb":7,"a":[["TED%3AAF-A0A395W7I9-F1-model_v4_TED01","TED novel fold AF-A0A395W7I9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1735","Holdemanella biformis"],["NCBITaxon%3A518637","Holdemanella biformis DSM 3989"],["NCBITaxon%3A1339517","Holdemanella biformis TSDC10.1-1.1"],["NCBITaxon%3A1339518","Holdemanella biformis TSDC10.1-1.2"],["NCBITaxon%3A1339519","Holdemanella biformis TSDC10.1-2.1"],["NCBITaxon%3A1339520","Holdemanella biformis TSDC10.1-3.1"]]},{"id":"NCBITaxon:1774","l":"Mycobacteroides chelonae","na":1,"nb":7,"a":[["TED%3AAF-A0A4Y6IJG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y6IJG8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2038731","[Mycobacterium] chelonae subsp. bovistauri"],["NCBITaxon%3A2099321","[Mycobacterium] chelonae subsp. chelonae"],["NCBITaxon%3A2480908","[Mycobacterium] chelonae subsp. gwanakae"],["NCBITaxon%3A1785","Mycobacterium sp."],["NCBITaxon%3A1774","Mycobacteroides chelonae"],["NCBITaxon%3A1299322","Mycobacteroides chelonae 1518"]]},{"id":"NCBITaxon:1906666","l":"Thermoplasmata archaeon","na":7,"nb":1,"a":[["TED%3AAF-A0A497HVI4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A497HVI4-F1-model_v4_TED01"],["TED%3AAF-A0A497HX78-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A497HX78-F1-model_v4_TED01"],["TED%3AAF-A0A662M489-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A662M489-F1-model_v4_TED03"],["TED%3AAF-A0A662MMC3-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A662MMC3-F1-model_v4_TED06"],["TED%3AAF-A0A7J4F045-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J4F045-F1-model_v4_TED01"],["TED%3AAF-A0A5A7S0Y2-F1-model_v4_TED02","TED novel fold AF-A0A5A7S0Y2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1906666","Thermoplasmata archaeon"]]},{"id":"NCBITaxon:1908","l":"Streptomyces globisporus","na":1,"nb":7,"a":[["PROSITE%3APS00953","Glycosyl hydrolases family 25 active site signature"]],"b":[["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A332582","Streptomyces flavofuscus"],["NCBITaxon%3A1908","Streptomyces globisporus"],["NCBITaxon%3A1172567","Streptomyces globisporus C-1027"],["NCBITaxon%3A66858","Streptomyces globisporus subsp. globisporus"],["NCBITaxon%3A1522106","Streptomyces globisporus subsp. griseus"]]},{"id":"NCBITaxon:1935","l":"Streptomyces violaceoruber","na":1,"nb":7,"a":[["Pfam%3APF03559","NDP-hexose 2,3-dehydratase"]],"b":[["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A67291","Streptomyces cyanocolor"],["NCBITaxon%3A80860","Streptomyces cyanogenus"],["NCBITaxon%3A1916","Streptomyces lividans"],["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A68277","Streptomyces tricolor"]]},{"id":"NCBITaxon:1938","l":"Streptomyces viridochromogenes","na":1,"nb":7,"a":[["Pfam%3APF11599","RRNA methyltransferase AviRa"]],"b":[["NCBITaxon%3A1969","Streptomyces chartreusis"],["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A1938","Streptomyces viridochromogenes"],["NCBITaxon%3A591159","Streptomyces viridochromogenes DSM 40736"],["NCBITaxon%3A285521","Streptomyces viridochromogenes subsp. komabensis"],["NCBITaxon%3A285503","Streptomyces viridochromogenes subsp. sulfomycini"]]},{"id":"NCBITaxon:1945593","l":"Oscillibacter sp.","na":7,"nb":1,"a":[["TED%3AAF-A0A316SYU4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A316SYU4-F1-model_v4_TED02"],["TED%3AAF-A0A350TIA9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A350TIA9-F1-model_v4_TED02"],["TED%3AAF-A0A3D1X7I7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D1X7I7-F1-model_v4_TED01"],["TED%3AAF-A0A3D5TDY6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D5TDY6-F1-model_v4_TED02"],["TED%3AAF-A0A3D2IC70-F1-model_v4_TED03","TED novel fold AF-A0A3D2IC70-F1-model_v4_TED03"],["TED%3AAF-A0A3D4G4P2-F1-model_v4_TED04","TED novel fold AF-A0A3D4G4P2-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1945593","Oscillibacter sp."]]},{"id":"NCBITaxon:2006849","l":"Lysobacterales bacterium","na":7,"nb":1,"a":[["TED%3AAF-A0A2E6REI1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E6REI1-F1-model_v4_TED01"],["TED%3AAF-A0A2E6RHE7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E6RHE7-F1-model_v4_TED02"],["TED%3AAF-A0A354Z1F6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A354Z1F6-F1-model_v4_TED01"],["TED%3AAF-A0A3S0DIN1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S0DIN1-F1-model_v4_TED01"],["TED%3AAF-A0A431HZV9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A431HZV9-F1-model_v4_TED02"],["TED%3AAF-A0A3S0DMM0-F1-model_v4_TED01","TED novel fold AF-A0A3S0DMM0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2006849","Lysobacterales bacterium"]]},{"id":"NCBITaxon:2024858","l":"Sandaracinus sp.","na":7,"nb":1,"a":[["TED%3AAF-A0A2D9T9L6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9T9L6-F1-model_v4_TED01"],["TED%3AAF-A0A2E0T9R7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0T9R7-F1-model_v4_TED01"],["TED%3AAF-A0A891ZV95-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A891ZV95-F1-model_v4_TED01"],["TED%3AAF-A0A2D9SYS7-F1-model_v4_TED02","TED novel fold AF-A0A2D9SYS7-F1-model_v4_TED02"],["TED%3AAF-A0A2D9TFN8-F1-model_v4_TED02","TED novel fold AF-A0A2D9TFN8-F1-model_v4_TED02"],["TED%3AAF-A0A2E0TMV1-F1-model_v4_TED03","TED novel fold AF-A0A2E0TMV1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2024858","Sandaracinus sp."]]},{"id":"NCBITaxon:2026743","l":"Halieaceae bacterium","na":7,"nb":1,"a":[["TED%3AAF-A0A7V0ZK52-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7V0ZK52-F1-model_v4_TED04"],["TED%3AAF-A0A2E6YTW5-F1-model_v4_TED04","TED novel fold AF-A0A2E6YTW5-F1-model_v4_TED04"],["TED%3AAF-A0A356SGU4-F1-model_v4_TED01","TED novel fold AF-A0A356SGU4-F1-model_v4_TED01"],["TED%3AAF-A0A356VJ87-F1-model_v4_TED01","TED novel fold AF-A0A356VJ87-F1-model_v4_TED01"],["TED%3AAF-A0A3C7W294-F1-model_v4_TED01","TED novel fold AF-A0A3C7W294-F1-model_v4_TED01"],["TED%3AAF-A0A3D1YQW8-F1-model_v4_TED02","TED novel fold AF-A0A3D1YQW8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026743","Halieaceae bacterium"]]},{"id":"NCBITaxon:2026784","l":"Puniceicoccaceae bacterium","na":7,"nb":1,"a":[["TED%3AAF-A0A2E9IMP1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E9IMP1-F1-model_v4_TED02"],["TED%3AAF-A0A6N2CS77-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N2CS77-F1-model_v4_TED02"],["TED%3AAF-A0A2E9IV22-F1-model_v4_TED01","TED novel fold AF-A0A2E9IV22-F1-model_v4_TED01"],["TED%3AAF-A0A2E9IVC4-F1-model_v4_TED02","TED novel fold AF-A0A2E9IVC4-F1-model_v4_TED02"],["TED%3AAF-A0A6N2CJU8-F1-model_v4_TED01","TED novel fold AF-A0A6N2CJU8-F1-model_v4_TED01"],["TED%3AAF-A0A6N2CN60-F1-model_v4_TED02","TED novel fold AF-A0A6N2CN60-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026784","Puniceicoccaceae bacterium"]]},{"id":"NCBITaxon:2030806","l":"Burkholderiaceae bacterium","na":7,"nb":1,"a":[["TED%3AAF-A0A5C7NHS1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7NHS1-F1-model_v4_TED01"],["TED%3AAF-A0A5C7Q2S0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A5C7Q2S0-F1-model_v4_TED04"],["TED%3AAF-A0A7L5Y4H7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7L5Y4H7-F1-model_v4_TED02"],["TED%3AAF-A0A520VNE1-F1-model_v4_TED02","TED novel fold AF-A0A520VNE1-F1-model_v4_TED02"],["TED%3AAF-A0A522SAF0-F1-model_v4_TED01","TED novel fold AF-A0A522SAF0-F1-model_v4_TED01"],["TED%3AAF-A0A5C7NTX8-F1-model_v4_TED02","TED novel fold AF-A0A5C7NTX8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2030806","Burkholderiaceae bacterium"]]},{"id":"NCBITaxon:2030827","l":"Candidatus Babelota bacterium","na":7,"nb":1,"a":[["TED%3AAF-A0A355KRB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A355KRB9-F1-model_v4_TED01"],["TED%3AAF-A0A3S0ECE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S0ECE6-F1-model_v4_TED01"],["TED%3AAF-A0A523RJZ0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A523RJZ0-F1-model_v4_TED02"],["TED%3AAF-A0A523RL65-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A523RL65-F1-model_v4_TED01"],["TED%3AAF-A0A355KSL6-F1-model_v4_TED02","TED novel fold AF-A0A355KSL6-F1-model_v4_TED02"],["TED%3AAF-A0A3S0BNC5-F1-model_v4_TED04","TED novel fold AF-A0A3S0BNC5-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2030827","Candidatus Babelota bacterium"]]},{"id":"NCBITaxon:2044939","l":"Clostridia bacterium","na":7,"nb":1,"a":[["TED%3AAF-A0A2V2CAW9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V2CAW9-F1-model_v4_TED01"],["TED%3AAF-A0A2V2CJ24-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V2CJ24-F1-model_v4_TED02"],["TED%3AAF-A0A2V2CKI1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V2CKI1-F1-model_v4_TED01"],["TED%3AAF-A0A2V2EGZ8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V2EGZ8-F1-model_v4_TED02"],["TED%3AAF-A0A6N7M119-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N7M119-F1-model_v4_TED01"],["TED%3AAF-A0A2V2CXP7-F1-model_v4_TED01","TED novel fold AF-A0A2V2CXP7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2044939","Clostridia bacterium"]]},{"id":"NCBITaxon:2044940","l":"Desulfobacterales bacterium","na":7,"nb":1,"a":[["TED%3AAF-A0A7C0YF25-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C0YF25-F1-model_v4_TED02"],["TED%3AAF-A0A7Y3ABX0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y3ABX0-F1-model_v4_TED01"],["TED%3AAF-A0A7Y3EMB5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y3EMB5-F1-model_v4_TED01"],["TED%3AAF-A0A7Y3EVT1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y3EVT1-F1-model_v4_TED01"],["TED%3AAF-A0A7Y3GG06-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y3GG06-F1-model_v4_TED01"],["TED%3AAF-A0A7V4T5K6-F1-model_v4_TED01","TED novel fold AF-A0A7V4T5K6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2044940","Desulfobacterales bacterium"]]},{"id":"NCBITaxon:2051","l":"Mobiluncus curtisii","na":1,"nb":7,"a":[["TED%3AAF-A0A7Y0UGC2-F1-model_v4_TED01","TED novel fold AF-A0A7Y0UGC2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2051","Mobiluncus curtisii"],["NCBITaxon%3A548479","Mobiluncus curtisii ATCC 43063"],["NCBITaxon%3A887326","Mobiluncus curtisii ATCC 51333"],["NCBITaxon%3A144177","Mobiluncus curtisii subsp. curtisii"],["NCBITaxon%3A585198","Mobiluncus curtisii subsp. curtisii ATCC 35241"],["NCBITaxon%3A144178","Mobiluncus holmesii"]]},{"id":"NCBITaxon:2052176","l":"Parachlamydiaceae bacterium","na":7,"nb":1,"a":[["TED%3AAF-A0A7W0FUG8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7W0FUG8-F1-model_v4_TED03"],["TED%3AAF-A0A7W1RG26-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W1RG26-F1-model_v4_TED01"],["TED%3AAF-A0A7D5MPV0-F1-model_v4_TED01","TED novel fold AF-A0A7D5MPV0-F1-model_v4_TED01"],["TED%3AAF-A0A7V9ZKP2-F1-model_v4_TED03","TED novel fold AF-A0A7V9ZKP2-F1-model_v4_TED03"],["TED%3AAF-A0A7V9ZN19-F1-model_v4_TED01","TED novel fold AF-A0A7V9ZN19-F1-model_v4_TED01"],["TED%3AAF-A0A7W0FW10-F1-model_v4_TED01","TED novel fold AF-A0A7W0FW10-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052176","Parachlamydiaceae bacterium"]]},{"id":"NCBITaxon:2053307","l":"Desulfobulbaceae bacterium","na":7,"nb":1,"a":[["TED%3AAF-A0A353NBC5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A353NBC5-F1-model_v4_TED01"],["TED%3AAF-A0A7V5R4I6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V5R4I6-F1-model_v4_TED01"],["TED%3AAF-A0A7W0ISJ1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W0ISJ1-F1-model_v4_TED01"],["TED%3AAF-A0A7X6YUV4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X6YUV4-F1-model_v4_TED01"],["TED%3AAF-A0A6L4ARB4-F1-model_v4_TED01","TED novel fold AF-A0A6L4ARB4-F1-model_v4_TED01"],["TED%3AAF-A0A7J5VQT5-F1-model_v4_TED01","TED novel fold AF-A0A7J5VQT5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053307","Desulfobulbaceae bacterium"]]},{"id":"NCBITaxon:2053570","l":"Candidatus Latescibacterota bacterium","na":7,"nb":1,"a":[["TED%3AAF-A0A3B8MFX1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B8MFX1-F1-model_v4_TED01"],["TED%3AAF-A0A3D4B8J6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D4B8J6-F1-model_v4_TED01"],["TED%3AAF-A0A7C7R9T5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C7R9T5-F1-model_v4_TED01"],["TED%3AAF-A0A846P6H1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A846P6H1-F1-model_v4_TED03"],["TED%3AAF-A0A846P818-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A846P818-F1-model_v4_TED01"],["TED%3AAF-A0A836QNS3-F1-model_v4_TED03","TED novel fold AF-A0A836QNS3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2053570","Candidatus Latescibacterota bacterium"]]},{"id":"NCBITaxon:2053581","l":"Microscillaceae bacterium","na":7,"nb":1,"a":[["TED%3AAF-A0A349E0D3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A349E0D3-F1-model_v4_TED02"],["TED%3AAF-A0A349E0M1-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A349E0M1-F1-model_v4_TED04"],["TED%3AAF-A0A349E3R7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349E3R7-F1-model_v4_TED01"],["TED%3AAF-A0A349E508-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A349E508-F1-model_v4_TED02"],["TED%3AAF-A0A349DIC5-F1-model_v4_TED02","TED novel fold AF-A0A349DIC5-F1-model_v4_TED02"],["TED%3AAF-A0A349DXN9-F1-model_v4_TED02","TED novel fold AF-A0A349DXN9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053581","Microscillaceae bacterium"]]},{"id":"NCBITaxon:2100","l":"Mesomycoplasma hyorhinis","na":1,"nb":7,"a":[["Pfam%3APF06646","Extracytoplasmic thiamine-binding lipoprotein"]],"b":[["NCBITaxon%3A2100","Mesomycoplasma hyorhinis"],["NCBITaxon%3A634996","Mesomycoplasma hyorhinis ATCC 17981"],["NCBITaxon%3A634997","Mesomycoplasma hyorhinis DBS 1050"],["NCBITaxon%3A1129369","Mesomycoplasma hyorhinis GDL-1"],["NCBITaxon%3A872331","Mesomycoplasma hyorhinis HUB-1"],["NCBITaxon%3A936139","Mesomycoplasma hyorhinis MCLD"]]},{"id":"NCBITaxon:216773","l":"Corethron hystrix","na":7,"nb":1,"a":[["TED%3AAF-A0A7S1B7I7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1B7I7-F1-model_v4_TED01"],["TED%3AAF-A0A7S1BDF8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1BDF8-F1-model_v4_TED01"],["TED%3AAF-A0A7S1BL96-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1BL96-F1-model_v4_TED01"],["TED%3AAF-A0A7S1FKX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1FKX2-F1-model_v4_TED01"],["TED%3AAF-A0A7S1BFC1-F1-model_v4_TED01","TED novel fold AF-A0A7S1BFC1-F1-model_v4_TED01"],["TED%3AAF-A0A7S1BX15-F1-model_v4_TED02","TED novel fold AF-A0A7S1BX15-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A216773","Corethron hystrix"]]},{"id":"NCBITaxon:2184738","l":"Desulfurococcaceae archaeon","na":7,"nb":1,"a":[["TED%3AAF-A0A2V2XT73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V2XT73-F1-model_v4_TED01"],["TED%3AAF-A0A7J2VAN9-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7J2VAN9-F1-model_v4_TED04"],["TED%3AAF-A0A7J3QAX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J3QAX7-F1-model_v4_TED01"],["TED%3AAF-A0A832JV08-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A832JV08-F1-model_v4_TED02"],["TED%3AAF-A0A832NJC3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A832NJC3-F1-model_v4_TED01"],["TED%3AAF-A0A7J3EMI2-F1-model_v4_TED01","TED novel fold AF-A0A7J3EMI2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2184738","Desulfurococcaceae archaeon"]]},{"id":"NCBITaxon:218491","l":"Pectobacterium atrosepticum SCRI1043","na":7,"nb":1,"a":[["Pfam%3APF21384","CRISPR-associated nuclease/helicase Cas3, I-F/YPEST, Cas2 domain"],["Pfam%3APF21802","CRISPR-associated Cas3 subtype I-F/YPEST-like, C-terminal domain"],["Pfam%3APF09611","CRISPR-associated protein (Cas_Csy1)"],["Pfam%3APF09614","CRISPR-associated protein (Cas_Csy2)"],["Pfam%3APF09615","CRISPR-associated protein (Cas_Csy3)"],["Pfam%3APF09618","CRISPR-associated protein (Cas_Csy4)"]],"b":[["NCBITaxon%3A218491","Pectobacterium atrosepticum SCRI1043"]]},{"id":"NCBITaxon:2212474","l":"Kofleriaceae bacterium","na":7,"nb":1,"a":[["TED%3AAF-A0A7J5EWQ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J5EWQ9-F1-model_v4_TED01"],["TED%3AAF-A0A7Y6UC87-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y6UC87-F1-model_v4_TED01"],["TED%3AAF-A0A7Y6UCE7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y6UCE7-F1-model_v4_TED01"],["TED%3AAF-A0A7J5EW94-F1-model_v4_TED01","TED novel fold AF-A0A7J5EW94-F1-model_v4_TED01"],["TED%3AAF-A0A7J5EZ53-F1-model_v4_TED03","TED novel fold AF-A0A7J5EZ53-F1-model_v4_TED03"],["TED%3AAF-A0A7J5EZ80-F1-model_v4_TED01","TED novel fold AF-A0A7J5EZ80-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2212474","Kofleriaceae bacterium"]]},{"id":"NCBITaxon:242619","l":"Porphyromonas gingivalis W83","na":7,"nb":1,"a":[["Pfam%3APF13290","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF04023","FeoA domain"],["Pfam%3APF17910","FeoB cytosolic helical domain"],["Pfam%3APF02421","Ferrous iron transport protein B"],["Pfam%3APF22492","FimA4 pilin C-terminal domain"],["Pfam%3APF07664","Ferrous iron transport protein B C terminus"]],"b":[["NCBITaxon%3A242619","Porphyromonas gingivalis W83"]]},{"id":"NCBITaxon:246432","l":"Staphylococcus equorum","na":1,"nb":7,"a":[["TED%3AAF-A0A1B1GAW5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1B1GAW5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A246432","Staphylococcus equorum"],["NCBITaxon%3A29383","Staphylococcus equorum subsp. equorum"],["NCBITaxon%3A1159488","Staphylococcus equorum subsp. equorum Mu2"],["NCBITaxon%3A201829","Staphylococcus equorum subsp. linens"],["NCBITaxon%3A1357294","Staphylococcus equorum UMC-CNS-924"],["NCBITaxon%3A214473","Staphylococcus nepalensis"]]},{"id":"NCBITaxon:2567896","l":"Polyangium aurulentum","na":7,"nb":1,"a":[["TED%3AAF-A0A4U1GYF2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U1GYF2-F1-model_v4_TED01"],["TED%3AAF-A0A4U1H499-F1-model_v4_TED01","TED novel fold AF-A0A4U1H499-F1-model_v4_TED01"],["TED%3AAF-A0A4U1H9S4-F1-model_v4_TED01","TED novel fold AF-A0A4U1H9S4-F1-model_v4_TED01"],["TED%3AAF-A0A4U1HCT2-F1-model_v4_TED02","TED novel fold AF-A0A4U1HCT2-F1-model_v4_TED02"],["TED%3AAF-A0A4U1HEA5-F1-model_v4_TED03","TED novel fold AF-A0A4U1HEA5-F1-model_v4_TED03"],["TED%3AAF-A0A4U1HVC8-F1-model_v4_TED01","TED novel fold AF-A0A4U1HVC8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2567896","Polyangium aurulentum"]]},{"id":"NCBITaxon:264203","l":"Zymomonas mobilis subsp. mobilis ZM4 = ATCC 31821","na":7,"nb":1,"a":[["Pfam%3APF13590","Domain of unknown function (DUF4136)"],["Pfam%3APF08436","1-deoxy-D-xylulose 5-phosphate reductoisomerase C-terminal domain"],["Pfam%3APF13288","DXP reductoisomerase C-terminal domain"],["Pfam%3APF02670","1-deoxy-D-xylulose 5-phosphate reductoisomerase"],["PROSITE%3APS01157","Class A bacterial acid phosphatases signature"],["PROSITE%3APS01320","Uncharacterized protein family UPF0067 signature"]],"b":[["NCBITaxon%3A264203","Zymomonas mobilis subsp. mobilis ZM4 = ATCC 31821"]]},{"id":"NCBITaxon:2719382","l":"Candidatus Helarchaeota archaeon","na":7,"nb":1,"a":[["TED%3AAF-A0A850LTW9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A850LTW9-F1-model_v4_TED01"],["TED%3AAF-A0A850M489-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A850M489-F1-model_v4_TED01"],["TED%3AAF-A0A850ML52-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A850ML52-F1-model_v4_TED03"],["TED%3AAF-A0A850MRJ8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A850MRJ8-F1-model_v4_TED02"],["TED%3AAF-A0A850MAC1-F1-model_v4_TED02","TED novel fold AF-A0A850MAC1-F1-model_v4_TED02"],["TED%3AAF-A0A850MD70-F1-model_v4_TED02","TED novel fold AF-A0A850MD70-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2719382","Candidatus Helarchaeota archaeon"]]},{"id":"NCBITaxon:272623","l":"Lactococcus lactis subsp. lactis Il1403","na":7,"nb":1,"a":[["Pfam%3APF25935","LcnD-like, barrel-sandwich hybrid domain"],["Pfam%3APF27342","ComB N-terminal domain"],["Pfam%3APF06993","Protein of unknown function (DUF1304)"],["Pfam%3APF25887","LcnD-like, long helical bundle domain"],["Pfam%3APF13276","HTH-like domain"],["Pfam%3APF25940","LcnD-like, C-terminal domain"]],"b":[["NCBITaxon%3A272623","Lactococcus lactis subsp. lactis Il1403"]]},{"id":"NCBITaxon:2740538","l":"Ktedonobacteraceae bacterium","na":7,"nb":1,"a":[["TED%3AAF-A0A838DTJ1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A838DTJ1-F1-model_v4_TED01"],["TED%3AAF-A0A838J990-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A838J990-F1-model_v4_TED01"],["TED%3AAF-A0A838EHB8-F1-model_v4_TED01","TED novel fold AF-A0A838EHB8-F1-model_v4_TED01"],["TED%3AAF-A0A838EI64-F1-model_v4_TED02","TED novel fold AF-A0A838EI64-F1-model_v4_TED02"],["TED%3AAF-A0A838EV93-F1-model_v4_TED03","TED novel fold AF-A0A838EV93-F1-model_v4_TED03"],["TED%3AAF-A0A838J9Z7-F1-model_v4_TED01","TED novel fold AF-A0A838J9Z7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2740538","Ktedonobacteraceae bacterium"]]},{"id":"NCBITaxon:28147","l":"Salmonella enterica subsp. enterica serovar Oranienburg","na":1,"nb":7,"a":[["TED%3AAF-A0A5W8G185-F1-model_v4_TED01","TED novel fold AF-A0A5W8G185-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28147","Salmonella enterica subsp. enterica serovar Oranienburg"],["NCBITaxon%3A997333","Salmonella enterica subsp. enterica serovar Oranienburg str. 0250"],["NCBITaxon%3A997334","Salmonella enterica subsp. enterica serovar Oranienburg str. 701"],["NCBITaxon%3A1192574","Salmonella enterica subsp. enterica serovar Oranienburg str. 91006"],["NCBITaxon%3A1124960","Salmonella enterica subsp. enterica serovar Oranienburg str. 9239"],["NCBITaxon%3A1173918","Salmonella enterica subsp. enterica serovar Oranienburg str. CC250"]]},{"id":"NCBITaxon:28198","l":"Aliarcobacter cryaerophilus","na":1,"nb":7,"a":[["TED%3AAF-A0A2S9SPY1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S9SPY1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28197","Aliarcobacter butzleri"],["NCBITaxon%3A28198","Aliarcobacter cryaerophilus"],["NCBITaxon%3A1032070","Aliarcobacter cryaerophilus ATCC 43158"],["NCBITaxon%3A1032071","Aliarcobacter cryaerophilus D2610"],["NCBITaxon%3A2933790","Arcobacter cryaerophilus gv. crypticus"],["NCBITaxon%3A2027466","Arcobacter cryaerophilus gv. occultus"]]},{"id":"NCBITaxon:284592","l":"Debaryomyces hansenii CBS767","na":7,"nb":1,"a":[["Pfam%3APF25459","AIM3/BBC1 Cysteine proteinase-fold domain"],["Pfam%3APF12015","Bud3, N-terminal"],["Pfam%3APF12709","Fungal Transforming acidic coiled-coil (TACC) proteins"],["Pfam%3APF27585","HIR3 second domain"],["Pfam%3APF24438","IML1, N-terminal, fungi"],["Pfam%3APF08738","Gon7 family"]],"b":[["NCBITaxon%3A284592","Debaryomyces hansenii CBS767"]]},{"id":"NCBITaxon:293","l":"Brevundimonas diminuta","na":1,"nb":7,"a":[["PROSITE%3APS01322","Phosphotriesterase family signature 1"]],"b":[["NCBITaxon%3A293","Brevundimonas diminuta"],["NCBITaxon%3A1255603","Brevundimonas diminuta 3F5N"],["NCBITaxon%3A1035191","Brevundimonas diminuta 470-4"],["NCBITaxon%3A751586","Brevundimonas diminuta ATCC 11568"],["NCBITaxon%3A588932","Brevundimonas naejangsanensis"],["NCBITaxon%3A1325724","Brevundimonas vancanneytii"]]},{"id":"NCBITaxon:295405","l":"Bacteroides fragilis YCH46","na":7,"nb":1,"a":[["Pfam%3APF23763","GLAA-B beta-barrel domain I"],["Pfam%3APF23764","GLAA-B beta-barrel domain II"],["Pfam%3APF14873","N-terminal domain of BNR-repeat neuraminidase"],["Pfam%3APF18318","Glutamine synthetase C-terminal domain"],["Pfam%3APF12437","Glutamine synthetase type III N terminal"],["Pfam%3APF04301","Pimeloyl-ACP methyl esterase BioG"]],"b":[["NCBITaxon%3A295405","Bacteroides fragilis YCH46"]]},{"id":"NCBITaxon:299583","l":"Francisella orientalis","na":1,"nb":7,"a":[["TED%3AAF-A0A5C1SE57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C1SE57-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A299583","Francisella orientalis"],["NCBITaxon%3A1390363","Francisella orientalis FNO12"],["NCBITaxon%3A1449091","Francisella orientalis FNO24"],["NCBITaxon%3A1088881","Francisella orientalis FSC770"],["NCBITaxon%3A1089432","Francisella orientalis FSC771"],["NCBITaxon%3A1356861","Francisella orientalis LADL 07-285A"]]},{"id":"NCBITaxon:34073","l":"Variovorax paradoxus","na":1,"nb":7,"a":[["TED%3AAF-A0A679J1E9-F1-model_v4_TED01","TED novel fold AF-A0A679J1E9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A34073","Variovorax paradoxus"],["NCBITaxon%3A1150395","Variovorax paradoxus 4MFCol3.1"],["NCBITaxon%3A1246301","Variovorax paradoxus B4"],["NCBITaxon%3A595537","Variovorax paradoxus EPS"],["NCBITaxon%3A1321610","Variovorax paradoxus NBRC 15149"],["NCBITaxon%3A543728","Variovorax paradoxus S110"]]},{"id":"NCBITaxon:357276","l":"Phocaeicola dorei","na":1,"nb":7,"a":[["TED%3AAF-A0A5M5ZM66-F1-model_v4_TED01","TED novel fold AF-A0A5M5ZM66-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A357276","Phocaeicola dorei"],["NCBITaxon%3A556260","Phocaeicola dorei 5_1_36/D4"],["NCBITaxon%3A1263042","Phocaeicola dorei CAG:222"],["NCBITaxon%3A997875","Phocaeicola dorei CL02T00C15"],["NCBITaxon%3A997876","Phocaeicola dorei CL02T12C06"],["NCBITaxon%3A997877","Phocaeicola dorei CL03T12C01"]]},{"id":"NCBITaxon:362","l":"Agrobacterium radiobacter","na":1,"nb":7,"a":[["Pfam%3APF04909","Amidohydrolase"]],"b":[["NCBITaxon%3A362","Agrobacterium radiobacter"],["NCBITaxon%3A1336745","Agrobacterium radiobacter DSM 30147"],["NCBITaxon%3A361","Agrobacterium sp."],["NCBITaxon%3A358","Agrobacterium tumefaciens"],["NCBITaxon%3A359","Martinezella rhizogenes"],["NCBITaxon%3A204072","Ramlibacter henchirensis"]]},{"id":"NCBITaxon:38293","l":"Photobacterium damselae","na":1,"nb":7,"a":[["TED%3AAF-A0A2T3QCV4-F1-model_v4_TED01","TED novel fold AF-A0A2T3QCV4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A38293","Photobacterium damselae"],["NCBITaxon%3A85581","Photobacterium damselae subsp. damselae"],["NCBITaxon%3A675817","Photobacterium damselae subsp. damselae CIP 102761"],["NCBITaxon%3A38294","Photobacterium damselae subsp. piscicida"],["NCBITaxon%3A1200302","Photobacterium damselae subsp. piscicida DI21"],["NCBITaxon%3A406525","Photobacterium damselae subsp. piscicida PT99-018"]]},{"id":"NCBITaxon:40518","l":"Ruminococcus bromii","na":1,"nb":7,"a":[["TED%3AAF-A0A412UMQ9-F1-model_v4_TED02","TED novel fold AF-A0A412UMQ9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A40518","Ruminococcus bromii"],["NCBITaxon%3A657321","Ruminococcus bromii L2-63"],["NCBITaxon%3A1339598","Ruminococcus bromii TSDC10.1-1.1"],["NCBITaxon%3A1339599","Ruminococcus bromii TSDC10.2-1.1"],["NCBITaxon%3A1339600","Ruminococcus bromii TSDC17.2-1.1"],["NCBITaxon%3A1339601","Ruminococcus bromii TSDC17.2-1.2"]]},{"id":"NCBITaxon:408","l":"Methylorubrum extorquens","na":1,"nb":7,"a":[["Pfam%3APF04476","4-HFC-P synthase"]],"b":[["NCBITaxon%3A408","Methylorubrum extorquens"],["NCBITaxon%3A272630","Methylorubrum extorquens AM1"],["NCBITaxon%3A440085","Methylorubrum extorquens CM4"],["NCBITaxon%3A661410","Methylorubrum extorquens DM4"],["NCBITaxon%3A882800","Methylorubrum extorquens DSM 13060"],["NCBITaxon%3A419610","Methylorubrum extorquens PA1"]]},{"id":"NCBITaxon:410289","l":"Mycobacterium tuberculosis variant bovis BCG str. Pasteur 1173P2","na":7,"nb":1,"a":[["Pfam%3APF27542","ArfC"],["Pfam%3APF21923","BON-like domain"],["Pfam%3APF18374","Enolase N-terminal domain-like"],["Pfam%3APF07174","Fibronectin-attachment protein (FAP) domain"],["Pfam%3APF15598","Immunity protein 61"],["Pfam%3APF01790","Prolipoprotein diacylglyceryl transferase"]],"b":[["NCBITaxon%3A410289","Mycobacterium tuberculosis variant bovis BCG str. Pasteur 1173P2"]]},{"id":"NCBITaxon:416870","l":"Lactococcus cremoris subsp. cremoris MG1363","na":7,"nb":1,"a":[["Pfam%3APF21445","ADDB, N-terminal"],["Pfam%3APF02632","BioY family"],["Pfam%3APF06018","CodY GAF-like domain"],["Pfam%3APF27471","Energy-coupling factor transporter EcfA1 C-terminal domain"],["Pfam%3APF08222","CodY helix-turn-helix domain"],["Pfam%3APF11858","Domain of unknown function (DUF3378)"]],"b":[["NCBITaxon%3A416870","Lactococcus cremoris subsp. cremoris MG1363"]]},{"id":"NCBITaxon:486","l":"Neisseria lactamica","na":1,"nb":7,"a":[["Pfam%3APF05315","ICEA Protein"]],"b":[["NCBITaxon%3A486","Neisseria lactamica"],["NCBITaxon%3A489653","Neisseria lactamica 020-06"],["NCBITaxon%3A546265","Neisseria lactamica ATCC 23970"],["NCBITaxon%3A933280","Neisseria lactamica NS19"],["NCBITaxon%3A869214","Neisseria lactamica Y92-1009"],["NCBITaxon%3A28449","Neisseria subflava"]]},{"id":"NCBITaxon:53249","l":"Pseudoalteromonas sp.","na":7,"nb":1,"a":[["Pfam%3APF25291","Lambda-carrageenase C-terminal domain"],["Pfam%3APF25290","Lambda-carrageenase middle domain"],["Pfam%3APF17396","Domain of unknown function (DUF1611_N) Rossmann-like domain"],["Pfam%3APF07755","Domain of unknown function (DUF1611_C) P-loop domain"],["Pfam%3APF25292","Lambda-carrageenase beta-propeller domain"],["TED%3AAF-A0A2D5T282-F1-model_v4_TED01","TED novel fold AF-A0A2D5T282-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A53249","Pseudoalteromonas sp."]]},{"id":"NCBITaxon:53985","l":"Phytophthora fragariae","na":7,"nb":1,"a":[["TED%3AAF-A0A6A3HTP9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A3HTP9-F1-model_v4_TED01"],["TED%3AAF-A0A6A3VAY2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A3VAY2-F1-model_v4_TED01"],["TED%3AAF-A0A6A3ZRY1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A3ZRY1-F1-model_v4_TED01"],["TED%3AAF-A0A6A3VYK4-F1-model_v4_TED02","TED novel fold AF-A0A6A3VYK4-F1-model_v4_TED02"],["TED%3AAF-A0A6A3XBI8-F1-model_v4_TED02","TED novel fold AF-A0A6A3XBI8-F1-model_v4_TED02"],["TED%3AAF-A0A6G0PL32-F1-model_v4_TED01","TED novel fold AF-A0A6G0PL32-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A53985","Phytophthora fragariae"]]},{"id":"NCBITaxon:68892","l":"Streptococcus infantis","na":1,"nb":7,"a":[["TED%3AAF-A0A0F2E1C7-F1-model_v4_TED04","TED novel fold AF-A0A0F2E1C7-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A68892","Streptococcus infantis"],["NCBITaxon%3A889204","Streptococcus infantis ATCC 700779"],["NCBITaxon%3A1005705","Streptococcus infantis SK1076"],["NCBITaxon%3A871237","Streptococcus infantis SK1302"],["NCBITaxon%3A1035189","Streptococcus infantis SK970"],["NCBITaxon%3A1159208","Streptococcus infantis SPAR10"]]},{"id":"NCBITaxon:884204","l":"Burkholderia pseudomallei 1026b","na":7,"nb":1,"a":[["Pfam%3APF18451","Contact-dependent growth inhibition CdiA C-terminal domain"],["Pfam%3APF07077","Virulence factor BPSS1818"],["Pfam%3APF11958","Surface attachment protein BPSS1860"],["Pfam%3APF28203","CDI System Immunity Component"],["Pfam%3APF13018","Extended Signal Peptide of Type V secretion system"],["Pfam%3APF05594","Haemagglutinin repeat"]],"b":[["NCBITaxon%3A884204","Burkholderia pseudomallei 1026b"]]},{"id":"NCBITaxon:892","l":"Desulfuromonas sp.","na":7,"nb":1,"a":[["TED%3AAF-A0A2J6J079-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J6J079-F1-model_v4_TED01"],["TED%3AAF-A0A2N6EEP5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2N6EEP5-F1-model_v4_TED03"],["TED%3AAF-A0A2N6F027-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N6F027-F1-model_v4_TED02"],["TED%3AAF-A0A2N6FEU0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N6FEU0-F1-model_v4_TED01"],["TED%3AAF-A0A2N6FKI0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N6FKI0-F1-model_v4_TED01"],["TED%3AAF-A0A2N6DYD3-F1-model_v4_TED01","TED novel fold AF-A0A2N6DYD3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A892","Desulfuromonas sp."]]},{"id":"NCBITaxon:1018","l":"Capnocytophaga ochracea","na":1,"nb":6,"a":[["TED%3AAF-A0A2X2T3Z4-F1-model_v4_TED01","TED novel fold AF-A0A2X2T3Z4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1018","Capnocytophaga ochracea"],["NCBITaxon%3A521097","Capnocytophaga ochracea DSM 7271"],["NCBITaxon%3A873517","Capnocytophaga ochracea F0287"],["NCBITaxon%3A1410029","Capnocytophaga ochracea HMP_JCVI_SC0240"],["NCBITaxon%3A1125719","Capnocytophaga ochracea str. Holt 25"],["NCBITaxon%3A1019","Capnocytophaga sputigena"]]},{"id":"NCBITaxon:103816","l":"Rhodococcus pyridinivorans","na":1,"nb":6,"a":[["TED%3AAF-A0A419ZLU8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A419ZLU8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A103816","Rhodococcus pyridinivorans"],["NCBITaxon%3A1114960","Rhodococcus pyridinivorans AK37"],["NCBITaxon%3A1303690","Rhodococcus pyridinivorans JCM 10940 = NBRC 100608"],["NCBITaxon%3A1441730","Rhodococcus pyridinivorans KG-16"],["NCBITaxon%3A1041510","Rhodococcus pyridinivorans NAM81"],["NCBITaxon%3A1435356","Rhodococcus pyridinivorans SB3094"]]},{"id":"NCBITaxon:112090","l":"Aphanomyces astaci","na":6,"nb":1,"a":[["TED%3AAF-A0A396ZSI1-F1-model_v4_TED01","TED novel fold AF-A0A396ZSI1-F1-model_v4_TED01"],["TED%3AAF-A0A397AN04-F1-model_v4_TED03","TED novel fold AF-A0A397AN04-F1-model_v4_TED03"],["TED%3AAF-A0A3R7E1X6-F1-model_v4_TED02","TED novel fold AF-A0A3R7E1X6-F1-model_v4_TED02"],["TED%3AAF-A0A418C3Y3-F1-model_v4_TED01","TED novel fold AF-A0A418C3Y3-F1-model_v4_TED01"],["TED%3AAF-A0A6A5AJC4-F1-model_v4_TED01","TED novel fold AF-A0A6A5AJC4-F1-model_v4_TED01"],["TED%3AAF-W4FQR6-F1-model_v4_TED01","TED novel fold AF-W4FQR6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A112090","Aphanomyces astaci"]]},{"id":"NCBITaxon:1193534","l":"uncultured Flavonifractor sp.","na":6,"nb":1,"a":[["TED%3AAF-A0A1C6GG29-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C6GG29-F1-model_v4_TED01"],["TED%3AAF-A0A1C6HJ74-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A1C6HJ74-F1-model_v4_TED05"],["TED%3AAF-A0A1C6DL99-F1-model_v4_TED01","TED novel fold AF-A0A1C6DL99-F1-model_v4_TED01"],["TED%3AAF-A0A1C6GAL2-F1-model_v4_TED02","TED novel fold AF-A0A1C6GAL2-F1-model_v4_TED02"],["TED%3AAF-A0A1C6GZ65-F1-model_v4_TED01","TED novel fold AF-A0A1C6GZ65-F1-model_v4_TED01"],["TED%3AAF-A0A1C6HXH7-F1-model_v4_TED02","TED novel fold AF-A0A1C6HXH7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1193534","uncultured Flavonifractor sp."]]},{"id":"NCBITaxon:1286","l":"Staphylococcus simulans","na":1,"nb":6,"a":[["Pfam%3APF25533","Lysostaphin, N-terminal domain"]],"b":[["NCBITaxon%3A1285","Staphylococcus intermedius"],["NCBITaxon%3A1286","Staphylococcus simulans"],["NCBITaxon%3A883166","Staphylococcus simulans ACS-120-V-Sch1"],["NCBITaxon%3A1287","Staphylococcus simulans bv. staphylolyticus"],["NCBITaxon%3A1405498","Staphylococcus simulans UMC-CNS-990"],["NCBITaxon%3A29387","Staphylococcus sp."]]},{"id":"NCBITaxon:1288","l":"Staphylococcus xylosus","na":1,"nb":6,"a":[["Pfam%3APF02603","HPr Serine kinase N terminus"]],"b":[["NCBITaxon%3A246432","Staphylococcus equorum"],["NCBITaxon%3A1293","Staphylococcus gallinarum"],["NCBITaxon%3A29387","Staphylococcus sp."],["NCBITaxon%3A1288","Staphylococcus xylosus"],["NCBITaxon%3A1353979","Staphylococcus xylosus DMB3-Bh1"],["NCBITaxon%3A1262650","Staphylococcus xylosus NJ"]]},{"id":"NCBITaxon:137591","l":"Weissella cibaria","na":1,"nb":6,"a":[["TED%3AAF-A0A0D1LFQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D1LFQ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A137591","Weissella cibaria"],["NCBITaxon%3A1255594","Weissella cibaria 3385"],["NCBITaxon%3A1255595","Weissella cibaria 3386"],["NCBITaxon%3A1357418","Weissella cibaria F16_1"],["NCBITaxon%3A911104","Weissella cibaria KACC 11862"],["NCBITaxon%3A1583","Weissella confusa"]]},{"id":"NCBITaxon:1409","l":"Bacillus sp. (in: firmicutes)","na":6,"nb":1,"a":[["Pfam%3APF02903","Alpha amylase, N-terminal ig-like domain"],["Pfam%3APF12123","PlyG Cell wall binding domain"],["Pfam%3APF24517","Carbohydrate-binding module family 96"],["Pfam%3APF07827","KNTase C-terminal domain"],["TED%3AAF-A0A3D0E1V5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D0E1V5-F1-model_v4_TED01"],["TED%3AAF-A0A3D5U4K3-F1-model_v4_TED01","TED novel fold AF-A0A3D5U4K3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1409","Bacillus sp. (in: firmicutes)"]]},{"id":"NCBITaxon:1509","l":"Clostridium sporogenes","na":1,"nb":6,"a":[["Pfam%3APF06050","2-hydroxyglutaryl-CoA dehydratase, D-component"]],"b":[["NCBITaxon%3A1491","Clostridium botulinum"],["NCBITaxon%3A1506","Clostridium sp."],["NCBITaxon%3A1509","Clostridium sporogenes"],["NCBITaxon%3A471871","Clostridium sporogenes ATCC 15579"],["NCBITaxon%3A1075091","Clostridium sporogenes PA 3679"],["NCBITaxon%3A378516","Clostridium sporogenes subsp. tusciae"]]},{"id":"NCBITaxon:1710","l":"Cellulosimicrobium cellulans","na":1,"nb":6,"a":[["Pfam%3APF16483","Beta-1,3-glucanase"]],"b":[["NCBITaxon%3A1710","Cellulosimicrobium cellulans"],["NCBITaxon%3A1350482","Cellulosimicrobium cellulans F16"],["NCBITaxon%3A903523","Cellulosimicrobium cellulans J1"],["NCBITaxon%3A935838","Cellulosimicrobium cellulans J34"],["NCBITaxon%3A935839","Cellulosimicrobium cellulans J36"],["NCBITaxon%3A1242247","Cellulosimicrobium cellulans LMG 16121"]]},{"id":"NCBITaxon:1754192","l":"Anaeromyces robustus","na":6,"nb":1,"a":[["TED%3AAF-A0A1Y1WPZ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y1WPZ9-F1-model_v4_TED01"],["TED%3AAF-A0A1Y1X1Y7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Y1X1Y7-F1-model_v4_TED02"],["TED%3AAF-A0A1Y1XPC1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Y1XPC1-F1-model_v4_TED02"],["TED%3AAF-A0A1Y1VRN1-F1-model_v4_TED04","TED novel fold AF-A0A1Y1VRN1-F1-model_v4_TED04"],["TED%3AAF-A0A1Y1XNI2-F1-model_v4_TED01","TED novel fold AF-A0A1Y1XNI2-F1-model_v4_TED01"],["TED%3AAF-A0A1Y1XR04-F1-model_v4_TED01","TED novel fold AF-A0A1Y1XR04-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1754192","Anaeromyces robustus"]]},{"id":"NCBITaxon:1861","l":"Geodermatophilus obscurus","na":1,"nb":6,"a":[["TED%3AAF-A0A1M7SWB5-F1-model_v4_TED02","TED novel fold AF-A0A1M7SWB5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1296565","Geodermatophilus amargosae"],["NCBITaxon%3A1523247","Geodermatophilus dictyosporus"],["NCBITaxon%3A1861","Geodermatophilus obscurus"],["NCBITaxon%3A526225","Geodermatophilus obscurus DSM 43160"],["NCBITaxon%3A1523248","Geodermatophilus obscurus subsp. utahensis"],["NCBITaxon%3A97398","Streptomyces abikoensis"]]},{"id":"NCBITaxon:1906","l":"Streptomyces fradiae","na":1,"nb":6,"a":[["Pfam%3APF26312","Domain of unknown function (DUF8083)"]],"b":[["NCBITaxon%3A1906","Streptomyces fradiae"],["NCBITaxon%3A1319510","Streptomyces fradiae ATCC 10745 = DSM 40063"],["NCBITaxon%3A285449","Streptomyces fradiae subsp. acinicolor"],["NCBITaxon%3A2871172","Streptomyces fradiae V-1-3"],["NCBITaxon%3A66894","Streptomyces griseobrunneus"],["NCBITaxon%3A1909","Streptomyces griseolus"]]},{"id":"NCBITaxon:1908690","l":"Fimbriiglobus ruber","na":6,"nb":1,"a":[["TED%3AAF-A0A225DH96-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A225DH96-F1-model_v4_TED01"],["TED%3AAF-A0A225DLF8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A225DLF8-F1-model_v4_TED03"],["TED%3AAF-A0A225E5P1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A225E5P1-F1-model_v4_TED01"],["TED%3AAF-A0A225CYI1-F1-model_v4_TED02","TED novel fold AF-A0A225CYI1-F1-model_v4_TED02"],["TED%3AAF-A0A225CZP0-F1-model_v4_TED02","TED novel fold AF-A0A225CZP0-F1-model_v4_TED02"],["TED%3AAF-A0A225DEG1-F1-model_v4_TED02","TED novel fold AF-A0A225DEG1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1908690","Fimbriiglobus ruber"]]},{"id":"NCBITaxon:2026754","l":"Legionellales bacterium","na":6,"nb":1,"a":[["TED%3AAF-A0A2E6W6A1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E6W6A1-F1-model_v4_TED01"],["TED%3AAF-A0A2E0PUP6-F1-model_v4_TED01","TED novel fold AF-A0A2E0PUP6-F1-model_v4_TED01"],["TED%3AAF-A0A2E3MFC7-F1-model_v4_TED01","TED novel fold AF-A0A2E3MFC7-F1-model_v4_TED01"],["TED%3AAF-A0A2E6W7Z1-F1-model_v4_TED01","TED novel fold AF-A0A2E6W7Z1-F1-model_v4_TED01"],["TED%3AAF-A0A2E6W9H5-F1-model_v4_TED02","TED novel fold AF-A0A2E6W9H5-F1-model_v4_TED02"],["TED%3AAF-A0A2E6W9H5-F1-model_v4_TED03","TED novel fold AF-A0A2E6W9H5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2026754","Legionellales bacterium"]]},{"id":"NCBITaxon:2026788","l":"Rickettsiales bacterium","na":6,"nb":1,"a":[["TED%3AAF-A0A2D6ZXG0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D6ZXG0-F1-model_v4_TED01"],["TED%3AAF-A0A2D9KP70-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9KP70-F1-model_v4_TED01"],["TED%3AAF-A0A2E9XWG5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E9XWG5-F1-model_v4_TED01"],["TED%3AAF-A0A2E0EMB5-F1-model_v4_TED01","TED novel fold AF-A0A2E0EMB5-F1-model_v4_TED01"],["TED%3AAF-A0A2F0A232-F1-model_v4_TED02","TED novel fold AF-A0A2F0A232-F1-model_v4_TED02"],["TED%3AAF-A0A4V1SXV8-F1-model_v4_TED01","TED novel fold AF-A0A4V1SXV8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026788","Rickettsiales bacterium"]]},{"id":"NCBITaxon:204039","l":"Dickeya dianthicola","na":1,"nb":6,"a":[["TED%3AAF-A0A385Y0K7-F1-model_v4_TED02","TED novel fold AF-A0A385Y0K7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A204039","Dickeya dianthicola"],["NCBITaxon%3A1226343","Dickeya dianthicola GBBC 2039"],["NCBITaxon%3A1225780","Dickeya dianthicola IPO 980"],["NCBITaxon%3A1223570","Dickeya dianthicola NCPPB 3534"],["NCBITaxon%3A1223568","Dickeya dianthicola NCPPB 453"],["NCBITaxon%3A1306405","Dickeya dianthicola RNS04.9"]]},{"id":"NCBITaxon:2044936","l":"Bacteroidia bacterium","na":6,"nb":1,"a":[["TED%3AAF-A0A2G6GSB3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G6GSB3-F1-model_v4_TED01"],["TED%3AAF-A0A524QHG3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A524QHG3-F1-model_v4_TED03"],["TED%3AAF-A0A7C4Y6F0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C4Y6F0-F1-model_v4_TED02"],["TED%3AAF-A0A7Y1UBX9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y1UBX9-F1-model_v4_TED01"],["TED%3AAF-A0A7V3UD23-F1-model_v4_TED02","TED novel fold AF-A0A7V3UD23-F1-model_v4_TED02"],["TED%3AAF-A0A7Y3MKL4-F1-model_v4_TED05","TED novel fold AF-A0A7Y3MKL4-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2044936","Bacteroidia bacterium"]]},{"id":"NCBITaxon:2049044","l":"Erysipelotrichaceae bacterium","na":6,"nb":1,"a":[["TED%3AAF-A0A7C6CWM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C6CWM3-F1-model_v4_TED01"],["TED%3AAF-A0A7X8CHC5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X8CHC5-F1-model_v4_TED01"],["TED%3AAF-A0A3B9FXN9-F1-model_v4_TED02","TED novel fold AF-A0A3B9FXN9-F1-model_v4_TED02"],["TED%3AAF-A0A3C1EA06-F1-model_v4_TED03","TED novel fold AF-A0A3C1EA06-F1-model_v4_TED03"],["TED%3AAF-A0A7X8CHE4-F1-model_v4_TED02","TED novel fold AF-A0A7X8CHE4-F1-model_v4_TED02"],["TED%3AAF-A0A847LM69-F1-model_v4_TED02","TED novel fold AF-A0A847LM69-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2049044","Erysipelotrichaceae bacterium"]]},{"id":"NCBITaxon:2053569","l":"Lentisphaeria bacterium","na":6,"nb":1,"a":[["TED%3AAF-A0A348XF45-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A348XF45-F1-model_v4_TED02"],["TED%3AAF-A0A3D1V0D5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D1V0D5-F1-model_v4_TED02"],["TED%3AAF-A0A3D3JJQ2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D3JJQ2-F1-model_v4_TED02"],["TED%3AAF-A0A348XHN0-F1-model_v4_TED04","TED novel fold AF-A0A348XHN0-F1-model_v4_TED04"],["TED%3AAF-A0A348XHP1-F1-model_v4_TED01","TED novel fold AF-A0A348XHP1-F1-model_v4_TED01"],["TED%3AAF-A0A3D1UX69-F1-model_v4_TED04","TED novel fold AF-A0A3D1UX69-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2053569","Lentisphaeria bacterium"]]},{"id":"NCBITaxon:2053586","l":"Candidatus Rifleibacteriota bacterium","na":6,"nb":1,"a":[["TED%3AAF-A0A847HK49-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A847HK49-F1-model_v4_TED02"],["TED%3AAF-A0A3B9HQS8-F1-model_v4_TED01","TED novel fold AF-A0A3B9HQS8-F1-model_v4_TED01"],["TED%3AAF-A0A3B9HWC3-F1-model_v4_TED02","TED novel fold AF-A0A3B9HWC3-F1-model_v4_TED02"],["TED%3AAF-A0A847LET6-F1-model_v4_TED03","TED novel fold AF-A0A847LET6-F1-model_v4_TED03"],["TED%3AAF-A0A847LK56-F1-model_v4_TED03","TED novel fold AF-A0A847LK56-F1-model_v4_TED03"],["TED%3AAF-A0A847LN44-F1-model_v4_TED02","TED novel fold AF-A0A847LN44-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053586","Candidatus Rifleibacteriota bacterium"]]},{"id":"NCBITaxon:2073117","l":"Anaerolineales bacterium","na":6,"nb":1,"a":[["TED%3AAF-A0A523TYN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A523TYN6-F1-model_v4_TED01"],["TED%3AAF-A0A524J9D6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A524J9D6-F1-model_v4_TED01"],["TED%3AAF-A0A7Y5BY07-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7Y5BY07-F1-model_v4_TED03"],["TED%3AAF-A0A7Y5BZ94-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y5BZ94-F1-model_v4_TED01"],["TED%3AAF-A0A363U7G5-F1-model_v4_TED06","TED novel fold AF-A0A363U7G5-F1-model_v4_TED06"],["TED%3AAF-A0A524PQP3-F1-model_v4_TED01","TED novel fold AF-A0A524PQP3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2073117","Anaerolineales bacterium"]]},{"id":"NCBITaxon:216594","l":"Mycobacterium marinum M","na":6,"nb":1,"a":[["Pfam%3APF18625","ESX-1 secreted protein B PE domain"],["Pfam%3APF21856","ESX-1 secretion-associated protein EspB, PPE domain"],["Pfam%3APF10862","FcoT-like thioesterase domain"],["Pfam%3APF19053","EccD-like transmembrane domain"],["Pfam%3APF11203","Putative type VII ESX secretion system translocon, EccE"],["Pfam%3APF21545","T7SS, ESX-1 secretion system protein EccA1, N-terminal domain"]],"b":[["NCBITaxon%3A216594","Mycobacterium marinum M"]]},{"id":"NCBITaxon:2201154","l":"Chthoniobacterales bacterium","na":6,"nb":1,"a":[["TED%3AAF-A0A7V2CW09-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V2CW09-F1-model_v4_TED01"],["TED%3AAF-A0A7W1BCB1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W1BCB1-F1-model_v4_TED01"],["TED%3AAF-A0A7V9EQG7-F1-model_v4_TED02","TED novel fold AF-A0A7V9EQG7-F1-model_v4_TED02"],["TED%3AAF-A0A7W1CSQ9-F1-model_v4_TED01","TED novel fold AF-A0A7W1CSQ9-F1-model_v4_TED01"],["TED%3AAF-A0A7W1RNV9-F1-model_v4_TED02","TED novel fold AF-A0A7W1RNV9-F1-model_v4_TED02"],["TED%3AAF-A0A838DC49-F1-model_v4_TED01","TED novel fold AF-A0A838DC49-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2201154","Chthoniobacterales bacterium"]]},{"id":"NCBITaxon:2212468","l":"Bryobacteraceae bacterium","na":6,"nb":1,"a":[["TED%3AAF-A0A7C2E9E6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C2E9E6-F1-model_v4_TED02"],["TED%3AAF-A0A7Y5GEH2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y5GEH2-F1-model_v4_TED01"],["TED%3AAF-A0A7C2J7J0-F1-model_v4_TED01","TED novel fold AF-A0A7C2J7J0-F1-model_v4_TED01"],["TED%3AAF-A0A7C4FZF5-F1-model_v4_TED01","TED novel fold AF-A0A7C4FZF5-F1-model_v4_TED01"],["TED%3AAF-A0A7Y5LER7-F1-model_v4_TED01","TED novel fold AF-A0A7Y5LER7-F1-model_v4_TED01"],["TED%3AAF-A0A7Y8LIJ6-F1-model_v4_TED02","TED novel fold AF-A0A7Y8LIJ6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2212468","Bryobacteraceae bacterium"]]},{"id":"NCBITaxon:225991","l":"Comamonas aquatica","na":1,"nb":6,"a":[["TED%3AAF-A0A8B0TG78-F1-model_v4_TED02","TED novel fold AF-A0A8B0TG78-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A225991","Comamonas aquatica"],["NCBITaxon%3A1457173","Comamonas aquatica DA1877"],["NCBITaxon%3A1219031","Comamonas aquatica NBRC 14918"],["NCBITaxon%3A2708318","Comamonas aquatica subsp. aquatica"],["NCBITaxon%3A2708319","Comamonas aquatica subsp. rana"],["NCBITaxon%3A32013","Comamonas terrigena"]]},{"id":"NCBITaxon:2268204","l":"Thermoplasmatales archaeon","na":6,"nb":1,"a":[["TED%3AAF-A0A7C2AKF2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7C2AKF2-F1-model_v4_TED03"],["TED%3AAF-A0A7J2S4D8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7J2S4D8-F1-model_v4_TED03"],["TED%3AAF-A0A7J3TK18-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7J3TK18-F1-model_v4_TED02"],["TED%3AAF-A0A7C1E5G8-F1-model_v4_TED01","TED novel fold AF-A0A7C1E5G8-F1-model_v4_TED01"],["TED%3AAF-A0A842X889-F1-model_v4_TED01","TED novel fold AF-A0A842X889-F1-model_v4_TED01"],["TED%3AAF-A0A842X9F6-F1-model_v4_TED01","TED novel fold AF-A0A842X9F6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2268204","Thermoplasmatales archaeon"]]},{"id":"NCBITaxon:2484252","l":"Myxococcaceae bacterium","na":6,"nb":1,"a":[["TED%3AAF-A0A3N5HXW8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N5HXW8-F1-model_v4_TED01"],["TED%3AAF-A0A4Q5Y5E2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q5Y5E2-F1-model_v4_TED01"],["TED%3AAF-A0A4V2ATR8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4V2ATR8-F1-model_v4_TED01"],["TED%3AAF-A0A521TJ55-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521TJ55-F1-model_v4_TED01"],["TED%3AAF-A0A4Q6A6H4-F1-model_v4_TED01","TED novel fold AF-A0A4Q6A6H4-F1-model_v4_TED01"],["TED%3AAF-A0A521UGL1-F1-model_v4_TED01","TED novel fold AF-A0A521UGL1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2484252","Myxococcaceae bacterium"]]},{"id":"NCBITaxon:249188","l":"Haemophilus pittmaniae","na":1,"nb":6,"a":[["TED%3AAF-A0A377IVF0-F1-model_v4_TED01","TED novel fold AF-A0A377IVF0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A249188","Haemophilus pittmaniae"],["NCBITaxon%3A1035188","Haemophilus pittmaniae HK 85"],["NCBITaxon%3A1409957","Haemophilus pittmaniae HMP_JCVI_SC0163"],["NCBITaxon%3A1409958","Haemophilus pittmaniae HMP_JCVI_SC0173"],["NCBITaxon%3A1409959","Haemophilus pittmaniae HMP_JCVI_SC0183"],["NCBITaxon%3A1409960","Haemophilus pittmaniae HMP_JCVI_SC0190"]]},{"id":"NCBITaxon:2562705","l":"Akkermansiaceae bacterium","na":6,"nb":1,"a":[["TED%3AAF-A0A7Y1UEU6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7Y1UEU6-F1-model_v4_TED04"],["TED%3AAF-A0A7Y2U929-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y2U929-F1-model_v4_TED01"],["TED%3AAF-A0A7Y1UGE4-F1-model_v4_TED03","TED novel fold AF-A0A7Y1UGE4-F1-model_v4_TED03"],["TED%3AAF-A0A7Y1Y0C9-F1-model_v4_TED01","TED novel fold AF-A0A7Y1Y0C9-F1-model_v4_TED01"],["TED%3AAF-A0A7Y2U769-F1-model_v4_TED04","TED novel fold AF-A0A7Y2U769-F1-model_v4_TED04"],["TED%3AAF-A0A8A7W8C6-F1-model_v4_TED02","TED novel fold AF-A0A8A7W8C6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2562705","Akkermansiaceae bacterium"]]},{"id":"NCBITaxon:257309","l":"Corynebacterium diphtheriae NCTC 13129","na":6,"nb":1,"a":[["Pfam%3APF17893","CRISPR-associated endonuclease Cas9 beta-hairpin domain"],["Pfam%3APF18525","Cas9 C-terminal domain"],["Pfam%3APF17894","Topo homolgy domain in CRISPR-associated endonuclease Cas9"],["Pfam%3APF18357","Diphteria toxin repressor SH3 domain"],["Pfam%3APF02742","Iron dependent repressor, metal binding and dimerisation domain"],["Pfam%3APF01325","Iron dependent repressor, N-terminal DNA binding domain"]],"b":[["NCBITaxon%3A257309","Corynebacterium diphtheriae NCTC 13129"]]},{"id":"NCBITaxon:2712867","l":"Pseudenhygromyxa sp. WMMC2535","na":6,"nb":1,"a":[["TED%3AAF-A0A850GFL1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A850GFL1-F1-model_v4_TED02"],["TED%3AAF-A0A850G649-F1-model_v4_TED01","TED novel fold AF-A0A850G649-F1-model_v4_TED01"],["TED%3AAF-A0A850GCH1-F1-model_v4_TED03","TED novel fold AF-A0A850GCH1-F1-model_v4_TED03"],["TED%3AAF-A0A850GIF6-F1-model_v4_TED02","TED novel fold AF-A0A850GIF6-F1-model_v4_TED02"],["TED%3AAF-A0A850GMI1-F1-model_v4_TED01","TED novel fold AF-A0A850GMI1-F1-model_v4_TED01"],["TED%3AAF-A0A850GPM5-F1-model_v4_TED02","TED novel fold AF-A0A850GPM5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2712867","Pseudenhygromyxa sp. WMMC2535"]]},{"id":"NCBITaxon:2762","l":"Cyanophora paradoxa","na":6,"nb":1,"a":[["Pfam%3APF06799","Conserved in the green lineage and diatoms 27"],["Pfam%3APF06868","Protein of unknown function (DUF1257)"],["Pfam%3APF10693","Protein of unknown function (DUF2499)"],["Pfam%3APF10726","Protein of function (DUF2518)"],["Pfam%3APF04481","Protein of unknown function (DUF561)"],["Pfam%3APF05421","Protein of unknown function (DUF751)"]],"b":[["NCBITaxon%3A2762","Cyanophora paradoxa"]]},{"id":"NCBITaxon:284813","l":"Encephalitozoon cuniculi GB-M1","na":6,"nb":1,"a":[["Pfam%3APF17027","Histone-fold protein"],["Pfam%3APF10455","Bin/amphiphysin/Rvs domain for vesicular trafficking"],["Pfam%3APF07753","Protein of unknown function (DUF1609)"],["Pfam%3APF09591","Protein of unknown function (DUF2463)"],["Pfam%3APF12376","Protein of unknown function (DUF3654)"],["TED%3AAF-Q8SVN2-F1-model_v4_TED01","TED novel fold AF-Q8SVN2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A284813","Encephalitozoon cuniculi GB-M1"]]},{"id":"NCBITaxon:2880","l":"Ectocarpus siliculosus","na":6,"nb":1,"a":[["TED%3AAF-D7G442-F1-model_v4_TED01","TED highly-symmetric fold AF-D7G442-F1-model_v4_TED01"],["TED%3AAF-D8LQ32-F1-model_v4_TED02","TED highly-symmetric fold AF-D8LQ32-F1-model_v4_TED02"],["TED%3AAF-D7G8D2-F1-model_v4_TED01","TED novel fold AF-D7G8D2-F1-model_v4_TED01"],["TED%3AAF-D7G8R3-F1-model_v4_TED02","TED novel fold AF-D7G8R3-F1-model_v4_TED02"],["TED%3AAF-D8LC48-F1-model_v4_TED02","TED novel fold AF-D8LC48-F1-model_v4_TED02"],["TED%3AAF-D8LTU7-F1-model_v4_TED03","TED novel fold AF-D8LTU7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2880","Ectocarpus siliculosus"]]},{"id":"NCBITaxon:29339","l":"Bacillus thuringiensis serovar kurstaki","na":1,"nb":6,"a":[["Pfam%3APF07029","CryBP1 protein"]],"b":[["NCBITaxon%3A714359","Bacillus thuringiensis BMB171"],["NCBITaxon%3A29339","Bacillus thuringiensis serovar kurstaki"],["NCBITaxon%3A1279365","Bacillus thuringiensis serovar kurstaki str. HD73"],["NCBITaxon%3A1261129","Bacillus thuringiensis serovar kurstaki str. HD-1"],["NCBITaxon%3A527023","Bacillus thuringiensis serovar kurstaki str. T03a001"],["NCBITaxon%3A570416","Bacillus thuringiensis serovar kurstaki str. YBT-1520"]]},{"id":"NCBITaxon:300269","l":"Shigella sonnei Ss046","na":6,"nb":1,"a":[["Pfam%3APF17868","AAA lid domain"],["Pfam%3APF12592","ATPase, RavA, C-terminal"],["Pfam%3APF20030","MoxR domain in the MoxR-vWA-beta-propeller ternary systems"],["Pfam%3APF10729","Cell division activator CedA"],["Pfam%3APF20265","ATPase, RavA, LARA domain"],["Pfam%3APF06872","EspG protein"]],"b":[["NCBITaxon%3A300269","Shigella sonnei Ss046"]]},{"id":"NCBITaxon:32049","l":"Picosynechococcus sp. PCC 7002","na":6,"nb":1,"a":[["Pfam%3APF09367","CpeS-like protein"],["Pfam%3APF06206","CpeT/CpcT family (DUF1001)"],["Pfam%3APF12965","Domain of unknown function (DUF3854)"],["Pfam%3APF19928","Domain of unknown function (DUF6391)"],["Pfam%3APF09366","Protein of unknown function (DUF1997)"],["Pfam%3APF14870","Photosynthesis system II assembly factor YCF48"]],"b":[["NCBITaxon%3A32049","Picosynechococcus sp. PCC 7002"]]},{"id":"NCBITaxon:331111","l":"Escherichia coli O139:H28 str. E24377A","na":6,"nb":1,"a":[["Pfam%3APF04336","Acyl carrier protein phosphodiesterase"],["Pfam%3APF15611","EH_Signature domain"],["Pfam%3APF24860","FdhE, C-terminal domain"],["Pfam%3APF24859","FdhE, central domain"],["Pfam%3APF04216","FdhE, N-terminal"],["Pfam%3APF03974","Ecotin"]],"b":[["NCBITaxon%3A331111","Escherichia coli O139:H28 str. E24377A"]]},{"id":"NCBITaxon:337","l":"Burkholderia glumae","na":1,"nb":6,"a":[["TED%3AAF-A0A8A8MA15-F1-model_v4_TED01","TED novel fold AF-A0A8A8MA15-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A337","Burkholderia glumae"],["NCBITaxon%3A1248414","Burkholderia glumae 3252-8"],["NCBITaxon%3A1417989","Burkholderia glumae 336gr-1"],["NCBITaxon%3A1176514","Burkholderia glumae AU6208"],["NCBITaxon%3A626418","Burkholderia glumae BGR1"],["NCBITaxon%3A1176492","Burkholderia glumae LMG 2196 = ATCC 33617"]]},{"id":"NCBITaxon:33905","l":"Bifidobacterium thermophilum","na":1,"nb":6,"a":[["TED%3AAF-A0A2N3QE79-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3QE79-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A650367","Bifidobacterium sp. JCM 7027"],["NCBITaxon%3A650368","Bifidobacterium sp. JCM 7028"],["NCBITaxon%3A33905","Bifidobacterium thermophilum"],["NCBITaxon%3A1437596","Bifidobacterium thermophilum DSM 20210"],["NCBITaxon%3A1410648","Bifidobacterium thermophilum DSM 20212"],["NCBITaxon%3A1254439","Bifidobacterium thermophilum RBL67"]]},{"id":"NCBITaxon:34062","l":"Faucicola osloensis","na":1,"nb":6,"a":[["Pfam%3APF14130","Cap4, dsDNA endonuclease domain"]],"b":[["NCBITaxon%3A34062","Faucicola osloensis"],["NCBITaxon%3A478","Moraxella nonliquefaciens"],["NCBITaxon%3A1138309","Moraxella osloensis ARD 1"],["NCBITaxon%3A1138312","Moraxella osloensis ARD 11"],["NCBITaxon%3A1138310","Moraxella osloensis ARD 2"],["NCBITaxon%3A1138311","Moraxella osloensis ARD 3"]]},{"id":"NCBITaxon:353153","l":"Trypanosoma cruzi strain CL Brener","na":6,"nb":1,"a":[["Pfam%3APF03738","Glutathionylspermidine synthase preATP-grasp"],["TED%3AAF-Q4D5Q0-F1-model_v4_TED01","TED highly-symmetric fold AF-Q4D5Q0-F1-model_v4_TED01"],["TED%3AAF-Q4CQE1-F1-model_v4_TED01","TED novel fold AF-Q4CQE1-F1-model_v4_TED01"],["TED%3AAF-Q4DRS0-F1-model_v4_TED01","TED novel fold AF-Q4DRS0-F1-model_v4_TED01"],["TED%3AAF-Q4DY69-F1-model_v4_TED01","TED novel fold AF-Q4DY69-F1-model_v4_TED01"],["TED%3AAF-Q4E0W9-F1-model_v4_TED01","TED novel fold AF-Q4E0W9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A353153","Trypanosoma cruzi strain CL Brener"]]},{"id":"NCBITaxon:361100","l":"Bacillus cereus Q1","na":6,"nb":1,"a":[["Pfam%3APF13555","P-loop containing region of AAA domain"],["Pfam%3APF18496","Collagenase G catalytic helper subdomain"],["Pfam%3APF09983","Wadjet protein JetD, C-terminal"],["Pfam%3APF18982","Wadjet protein JetA"],["Pfam%3APF13835","Wadjet protein JetB"],["Pfam%3APF08453","Peptidase family M9 N-terminal"]],"b":[["NCBITaxon%3A361100","Bacillus cereus Q1"]]},{"id":"NCBITaxon:364106","l":"Escherichia coli UTI89","na":6,"nb":1,"a":[["Pfam%3APF26516","Inner membrane protein CbrB"],["Pfam%3APF17151","Periplasmic sensor domain"],["Pfam%3APF08971","Glycogen synthesis protein"],["Pfam%3APF06005","ZapB family"],["Pfam%3APF09618","CRISPR-associated protein (Cas_Csy4)"],["Pfam%3APF28061","Type I toxin DinQ-like"]],"b":[["NCBITaxon%3A364106","Escherichia coli UTI89"]]},{"id":"NCBITaxon:373","l":"Gillisella vitis","na":1,"nb":6,"a":[["TED%3AAF-A0A368P0R2-F1-model_v4_TED01","TED novel fold AF-A0A368P0R2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A361","Agrobacterium sp."],["NCBITaxon%3A1265506","Agrobacterium vitis ATCC 49767"],["NCBITaxon%3A1385422","Agrobacterium vitis pv. musae"],["NCBITaxon%3A1384504","Agrobacterium vitis pv. vitis"],["NCBITaxon%3A373","Gillisella vitis"],["NCBITaxon%3A204072","Ramlibacter henchirensis"]]},{"id":"NCBITaxon:37372","l":"Helicobacter bilis","na":1,"nb":6,"a":[["TED%3AAF-A0A4U8UA27-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8UA27-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28447","Clavibacter michiganensis"],["NCBITaxon%3A33014","Clavibacter michiganensis subsp. insidiosus"],["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A613026","Helicobacter bilis ATCC 43879"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"],["NCBITaxon%3A1235804","Helicobacter bilis WiWa"]]},{"id":"NCBITaxon:374930","l":"Haemophilus influenzae PittEE","na":6,"nb":1,"a":[["Pfam%3APF02952","L-fucose isomerase, C-terminal domain"],["Pfam%3APF07881","L-fucose isomerase, first N-terminal domain"],["Pfam%3APF07882","L-fucose isomerase, second N-terminal domain"],["Pfam%3APF02313","Fumarate reductase subunit D"],["Pfam%3APF13286","Phosphohydrolase-associated domain"],["Pfam%3APF04751","Dual-action ribosomal maturation protein DarP"]],"b":[["NCBITaxon%3A374930","Haemophilus influenzae PittEE"]]},{"id":"NCBITaxon:388919","l":"Streptococcus sanguinis SK36","na":6,"nb":1,"a":[["Pfam%3APF20921","Domain of unknown function DUF1846, C-terminal"],["Pfam%3APF08903","Domain of unknown function DUF1846, N-terminal"],["Pfam%3APF03186","CobD/Cbib protein"],["Pfam%3APF08503","Tetrahydrodipicolinate succinyltransferase N-terminal"],["Pfam%3APF06949","Protein of unknown function (DUF1292)"],["Pfam%3APF06160","Septation ring formation regulator, EzrA"]],"b":[["NCBITaxon%3A388919","Streptococcus sanguinis SK36"]]},{"id":"NCBITaxon:399742","l":"Enterobacter sp. 638","na":6,"nb":1,"a":[["Pfam%3APF12404","Peptidase"],["Pfam%3APF27465","DNA-binding protein Fis N-terminal domain"],["Pfam%3APF02300","Fumarate reductase subunit C"],["Pfam%3APF04102","SlyX"],["Pfam%3APF06005","ZapB family"],["Pfam%3APF07208","Protein of unknown function (DUF1414)"]],"b":[["NCBITaxon%3A399742","Enterobacter sp. 638"]]},{"id":"NCBITaxon:401614","l":"Francisella tularensis subsp. novicida U112","na":6,"nb":1,"a":[["Pfam%3APF21918","CRISPR-associated endonuclease Cpf1 REC2 domain"],["Pfam%3APF22385","CRISPR-associated endonuclease Cas9, C-terminal domain"],["Pfam%3APF22222","CRISPR-associated endonuclease Cpf1 PI domain"],["Pfam%3APF21069","CRISPR-associated endonuclease Cas9 alpha-helical lobe"],["Pfam%3APF11685","Protein of unknown function (DUF3281)"],["PROSITE%3APS01300","RecR protein signature"]],"b":[["NCBITaxon%3A401614","Francisella tularensis subsp. novicida U112"]]},{"id":"NCBITaxon:420246","l":"Geobacillus thermodenitrificans NG80-2","na":6,"nb":1,"a":[["Pfam%3APF21445","ADDB, N-terminal"],["Pfam%3APF02623","FliW protein"],["Pfam%3APF24898","Cyclic-di-AMP phosphodiesterase GdpP-like, GGDEF domain"],["Pfam%3APF07457","Protein of unknown function (DUF1516)"],["Pfam%3APF12227","Protein of unknown function (DUF3603)"],["Pfam%3APF12538","DNA transporter"]],"b":[["NCBITaxon%3A420246","Geobacillus thermodenitrificans NG80-2"]]},{"id":"NCBITaxon:43675","l":"Rothia mucilaginosa","na":1,"nb":6,"a":[["TED%3AAF-A0A291DCT6-F1-model_v4_TED03","TED novel fold AF-A0A291DCT6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A43675","Rothia mucilaginosa"],["NCBITaxon%3A553201","Rothia mucilaginosa ATCC 25296"],["NCBITaxon%3A1073369","Rothia mucilaginosa CC87LB"],["NCBITaxon%3A680646","Rothia mucilaginosa DY-18"],["NCBITaxon%3A1255664","Rothia mucilaginosa M1710"],["NCBITaxon%3A563033","Rothia mucilaginosa M508"]]},{"id":"NCBITaxon:44445","l":"Pseudo-nitzschia australis","na":6,"nb":1,"a":[["TED%3AAF-A0A6V0BU40-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6V0BU40-F1-model_v4_TED02"],["TED%3AAF-A0A7S4AM56-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4AM56-F1-model_v4_TED01"],["TED%3AAF-A0A7S4EET1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4EET1-F1-model_v4_TED01"],["TED%3AAF-A0A6V0CM61-F1-model_v4_TED02","TED novel fold AF-A0A6V0CM61-F1-model_v4_TED02"],["TED%3AAF-A0A7S4ABE6-F1-model_v4_TED01","TED novel fold AF-A0A7S4ABE6-F1-model_v4_TED01"],["TED%3AAF-A0A7S4EFE9-F1-model_v4_TED01","TED novel fold AF-A0A7S4EFE9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A44445","Pseudo-nitzschia australis"]]},{"id":"NCBITaxon:464988","l":"Hemiselmis andersenii","na":6,"nb":1,"a":[["TED%3AAF-A0A7S0TL45-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0TL45-F1-model_v4_TED01"],["TED%3AAF-A0A7S1GUI2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1GUI2-F1-model_v4_TED01"],["TED%3AAF-A0A7S1DED9-F1-model_v4_TED01","TED novel fold AF-A0A7S1DED9-F1-model_v4_TED01"],["TED%3AAF-A0A7S1DF29-F1-model_v4_TED01","TED novel fold AF-A0A7S1DF29-F1-model_v4_TED01"],["TED%3AAF-A0A7S1DXR5-F1-model_v4_TED01","TED novel fold AF-A0A7S1DXR5-F1-model_v4_TED01"],["TED%3AAF-A0A7S1MTU0-F1-model_v4_TED01","TED novel fold AF-A0A7S1MTU0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A464988","Hemiselmis andersenii"]]},{"id":"NCBITaxon:489","l":"Neisseria polysaccharea","na":1,"nb":6,"a":[["Pfam%3APF22582","Amylosucrase, C-terminal domain"]],"b":[["NCBITaxon%3A483","Neisseria cinerea"],["NCBITaxon%3A489","Neisseria polysaccharea"],["NCBITaxon%3A546267","Neisseria polysaccharea ATCC 43768"],["NCBITaxon%3A933269","Neisseria polysaccharea NS342"],["NCBITaxon%3A490","Neisseria sicca"],["NCBITaxon%3A192066","Neisseria sp."]]},{"id":"NCBITaxon:4934","l":"Lachancea kluyveri","na":6,"nb":1,"a":[["Pfam%3APF21986","Allophanate hydrolase C-terminal domain"],["Pfam%3APF21187","Yeast adenylate cyclase, C-terminal"],["Pfam%3APF02626","Carboxyltransferase domain, subdomain A and B"],["Pfam%3APF02682","Carboxyltransferase domain, subdomain C and D"],["Pfam%3APF07958","Protein of unknown function (DUF1688)"],["Pfam%3APF12471","GTP cyclohydrolase N terminal"]],"b":[["NCBITaxon%3A4934","Lachancea kluyveri"]]},{"id":"NCBITaxon:544580","l":"Actinomyces oris","na":1,"nb":6,"a":[["TED%3AAF-A0A1Q8WF60-F1-model_v4_TED01","TED novel fold AF-A0A1Q8WF60-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A3050225","Actinomyces acetigenes"],["NCBITaxon%3A1655","Actinomyces naeslundii"],["NCBITaxon%3A544580","Actinomyces oris"],["NCBITaxon%3A871541","Actinomyces oris K20"],["NCBITaxon%3A29317","Actinomyces sp."],["NCBITaxon%3A1656","Actinomyces viscosus"]]},{"id":"NCBITaxon:59511","l":"Pseudomonas syringae pv. maculicola","na":1,"nb":6,"a":[["Pfam%3APF15457","Type III T3SS secreted effector HopW1-1/HopPmaA"]],"b":[["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A59511","Pseudomonas syringae pv. maculicola"],["NCBITaxon%3A629265","Pseudomonas syringae pv. maculicola str. ES4326"],["NCBITaxon%3A698748","Pseudomonas syringae pv. maculicola str. F1"],["NCBITaxon%3A698749","Pseudomonas syringae pv. maculicola str. M3"],["NCBITaxon%3A698750","Pseudomonas syringae pv. maculicola str. M6"]]},{"id":"NCBITaxon:59799","l":"Angomonas deanei","na":6,"nb":1,"a":[["TED%3AAF-A0A7G2CPC7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7G2CPC7-F1-model_v4_TED03"],["TED%3AAF-A0A7G2BZJ1-F1-model_v4_TED02","TED novel fold AF-A0A7G2BZJ1-F1-model_v4_TED02"],["TED%3AAF-A0A7G2C3S7-F1-model_v4_TED02","TED novel fold AF-A0A7G2C3S7-F1-model_v4_TED02"],["TED%3AAF-A0A7G2CRL5-F1-model_v4_TED01","TED novel fold AF-A0A7G2CRL5-F1-model_v4_TED01"],["TED%3AAF-S9VAC3-F1-model_v4_TED02","TED novel fold AF-S9VAC3-F1-model_v4_TED02"],["TED%3AAF-S9VIQ1-F1-model_v4_TED01","TED novel fold AF-S9VIQ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A59799","Angomonas deanei"]]},{"id":"NCBITaxon:59823","l":"Prevotella sp.","na":6,"nb":1,"a":[["TED%3AAF-A0A350PQL3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A350PQL3-F1-model_v4_TED03"],["TED%3AAF-A0A353E5D4-F1-model_v4_TED01","TED novel fold AF-A0A353E5D4-F1-model_v4_TED01"],["TED%3AAF-A0A353E6B1-F1-model_v4_TED02","TED novel fold AF-A0A353E6B1-F1-model_v4_TED02"],["TED%3AAF-A0A3C1E689-F1-model_v4_TED01","TED novel fold AF-A0A3C1E689-F1-model_v4_TED01"],["TED%3AAF-A0A3D1CZM6-F1-model_v4_TED01","TED novel fold AF-A0A3D1CZM6-F1-model_v4_TED01"],["TED%3AAF-A0A3D1GWB4-F1-model_v4_TED03","TED novel fold AF-A0A3D1GWB4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A59823","Prevotella sp."]]},{"id":"NCBITaxon:68280","l":"Streptomyces violaceusniger","na":1,"nb":6,"a":[["TED%3AAF-A0A0X3VKA0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0X3VKA0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1912","Streptomyces hygroscopicus"],["NCBITaxon%3A68042","Streptomyces hygroscopicus subsp. hygroscopicus"],["NCBITaxon%3A33900","Streptomyces murinus"],["NCBITaxon%3A114686","Streptomyces phaeoluteigriseus"],["NCBITaxon%3A68280","Streptomyces violaceusniger"],["NCBITaxon%3A653045","Streptomyces violaceusniger Tu 4113"]]},{"id":"NCBITaxon:690887","l":"Lophiotrema nucula","na":6,"nb":1,"a":[["TED%3AAF-A0A6A5YKY9-F1-model_v4_TED01","TED novel fold AF-A0A6A5YKY9-F1-model_v4_TED01"],["TED%3AAF-A0A6A5YT26-F1-model_v4_TED01","TED novel fold AF-A0A6A5YT26-F1-model_v4_TED01"],["TED%3AAF-A0A6A5YZE9-F1-model_v4_TED01","TED novel fold AF-A0A6A5YZE9-F1-model_v4_TED01"],["TED%3AAF-A0A6A5Z722-F1-model_v4_TED01","TED novel fold AF-A0A6A5Z722-F1-model_v4_TED01"],["TED%3AAF-A0A6A5ZAN3-F1-model_v4_TED02","TED novel fold AF-A0A6A5ZAN3-F1-model_v4_TED02"],["TED%3AAF-A0A6A5ZR44-F1-model_v4_TED01","TED novel fold AF-A0A6A5ZR44-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A690887","Lophiotrema nucula"]]},{"id":"NCBITaxon:70125","l":"Nitrospira sp.","na":6,"nb":1,"a":[["TED%3AAF-A0A3C1YZ39-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3C1YZ39-F1-model_v4_TED02"],["TED%3AAF-A0A532C4P6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A532C4P6-F1-model_v4_TED01"],["TED%3AAF-A0A532D6L6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A532D6L6-F1-model_v4_TED01"],["TED%3AAF-A0A532DGQ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A532DGQ7-F1-model_v4_TED01"],["TED%3AAF-A0A7C7WA77-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C7WA77-F1-model_v4_TED01"],["TED%3AAF-A0A533BBR6-F1-model_v4_TED01","TED novel fold AF-A0A533BBR6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A70125","Nitrospira sp."]]},{"id":"NCBITaxon:747089","l":"Rhizophagus irregularis DAOM 181602=DAOM 197198","na":6,"nb":1,"a":[["Pfam%3APF20147","Crinkler effector protein N-terminal domain"],["TED%3AAF-A0A2H5REZ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H5REZ7-F1-model_v4_TED01"],["TED%3AAF-A0A2P4PHF1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2P4PHF1-F1-model_v4_TED02"],["TED%3AAF-U9TZ49-F1-model_v4_TED02","TED highly-symmetric fold AF-U9TZ49-F1-model_v4_TED02"],["TED%3AAF-A0A2H5SCM8-F1-model_v4_TED02","TED novel fold AF-A0A2H5SCM8-F1-model_v4_TED02"],["TED%3AAF-A0A2H5SIW6-F1-model_v4_TED01","TED novel fold AF-A0A2H5SIW6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A747089","Rhizophagus irregularis DAOM 181602=DAOM 197198"]]},{"id":"NCBITaxon:75058","l":"Bodo saltans","na":6,"nb":1,"a":[["TED%3AAF-A0A0S4IKA4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S4IKA4-F1-model_v4_TED01"],["TED%3AAF-A0A0S4IKA4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0S4IKA4-F1-model_v4_TED02"],["TED%3AAF-A0A0S4IN57-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A0S4IN57-F1-model_v4_TED04"],["TED%3AAF-A0A0S4JT99-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S4JT99-F1-model_v4_TED01"],["TED%3AAF-A0A0S4JE73-F1-model_v4_TED02","TED novel fold AF-A0A0S4JE73-F1-model_v4_TED02"],["TED%3AAF-A0A0S4JGE0-F1-model_v4_TED01","TED novel fold AF-A0A0S4JGE0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A75058","Bodo saltans"]]},{"id":"NCBITaxon:78245","l":"Xanthobacter versatilis","na":6,"nb":1,"a":[["Pfam%3APF08882","Acetone carboxylase gamma subunit"],["Pfam%3APF19278","Hydantoinase/oxoprolinase C-terminal domain"],["Pfam%3APF05378","Hydantoinase/oxoprolinase N-terminal region"],["Pfam%3APF01968","Hydantoinase/oxoprolinase"],["Pfam%3APF02538","Hydantoinase B/oxoprolinase"],["TED%3AAF-A7IL68-F1-model_v4_TED01","TED highly-symmetric fold AF-A7IL68-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A78245","Xanthobacter versatilis"]]},{"id":"NCBITaxon:863372","l":"Herbaspirillum huttiense","na":1,"nb":6,"a":[["TED%3AAF-A0A4P7ADR5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P7ADR5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A863372","Herbaspirillum huttiense"],["NCBITaxon%3A86172","Herbaspirillum huttiense subsp. huttiense"],["NCBITaxon%3A3074428","Herbaspirillum huttiense subsp. lycopersici"],["NCBITaxon%3A3075126","Herbaspirillum huttiense subsp. nephrolepidis"],["NCBITaxon%3A230311","Herbaspirillum huttiense subsp. putei"],["NCBITaxon%3A1235558","Herbaspirillum huttiense subsp. putei IAM 15032"]]},{"id":"NCBITaxon:1006551","l":"Klebsiella michiganensis KCTC 1686","na":5,"nb":1,"a":[["Pfam%3APF07833","Copper amine oxidase N-terminal domain"],["Pfam%3APF18427","DD-reactivating factor swiveling domain"],["Pfam%3APF02288","Dehydratase medium subunit"],["Pfam%3APF08841","Diol dehydratase reactivase ATPase-like domain"],["TED%3AAF-A0A0H3H2M0-F1-model_v4_TED01","TED novel fold AF-A0A0H3H2M0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1006551","Klebsiella michiganensis KCTC 1686"]]},{"id":"NCBITaxon:100861","l":"Aphanomyces euteiches","na":5,"nb":1,"a":[["TED%3AAF-A0A6G0WQE8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6G0WQE8-F1-model_v4_TED02"],["TED%3AAF-A0A6G0WJG0-F1-model_v4_TED02","TED novel fold AF-A0A6G0WJG0-F1-model_v4_TED02"],["TED%3AAF-A0A6G0WL59-F1-model_v4_TED01","TED novel fold AF-A0A6G0WL59-F1-model_v4_TED01"],["TED%3AAF-A0A6G0WMX7-F1-model_v4_TED01","TED novel fold AF-A0A6G0WMX7-F1-model_v4_TED01"],["TED%3AAF-A0A6G0WTB7-F1-model_v4_TED02","TED novel fold AF-A0A6G0WTB7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A100861","Aphanomyces euteiches"]]},{"id":"NCBITaxon:1055524","l":"Burkholderia cenocepacia H111","na":5,"nb":1,"a":[["Pfam%3APF20148","Domain of unknown function (DUF6531)"],["Pfam%3APF14430","Immunity protein Imm1"],["Pfam%3APF05488","PAAR motif"],["Pfam%3APF03527","RHS protein"],["Pfam%3APF05593","RHS Repeat"]],"b":[["NCBITaxon%3A1055524","Burkholderia cenocepacia H111"]]},{"id":"NCBITaxon:1137281","l":"Xanthomarina gelatinilytica","na":5,"nb":1,"a":[["TED%3AAF-A0A3C0F097-F1-model_v4_TED01","TED novel fold AF-A0A3C0F097-F1-model_v4_TED01"],["TED%3AAF-A0A3C0F157-F1-model_v4_TED01","TED novel fold AF-A0A3C0F157-F1-model_v4_TED01"],["TED%3AAF-A0A3C0F5W9-F1-model_v4_TED01","TED novel fold AF-A0A3C0F5W9-F1-model_v4_TED01"],["TED%3AAF-A0A3C0F8S8-F1-model_v4_TED01","TED novel fold AF-A0A3C0F8S8-F1-model_v4_TED01"],["TED%3AAF-A0A3D6BP25-F1-model_v4_TED02","TED novel fold AF-A0A3D6BP25-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1137281","Xanthomarina gelatinilytica"]]},{"id":"NCBITaxon:1172189","l":"Oxytricha trifallax","na":5,"nb":1,"a":[["TED%3AAF-J9EH04-F1-model_v4_TED01","TED highly-symmetric fold AF-J9EH04-F1-model_v4_TED01"],["TED%3AAF-J9IW26-F1-model_v4_TED03","TED highly-symmetric fold AF-J9IW26-F1-model_v4_TED03"],["TED%3AAF-J9HM40-F1-model_v4_TED01","TED novel fold AF-J9HM40-F1-model_v4_TED01"],["TED%3AAF-J9IHP4-F1-model_v4_TED01","TED novel fold AF-J9IHP4-F1-model_v4_TED01"],["TED%3AAF-J9IUB6-F1-model_v4_TED02","TED novel fold AF-J9IUB6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1172189","Oxytricha trifallax"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":1,"nb":5,"a":[["TED%3AAF-A0A132HLN2-F1-model_v4_TED01","TED novel fold AF-A0A132HLN2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A119219","Cupriavidus metallidurans"],["NCBITaxon%3A266264","Cupriavidus metallidurans CH34"],["NCBITaxon%3A1395123","Cupriavidus metallidurans H1130"],["NCBITaxon%3A1218106","Cupriavidus metallidurans NBRC 101272"],["NCBITaxon%3A1873897","Cupriavidus sp."]]},{"id":"NCBITaxon:120398","l":"Aphanomyces stellatus","na":5,"nb":1,"a":[["TED%3AAF-A0A6A4YU89-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A4YU89-F1-model_v4_TED01"],["TED%3AAF-A0A485K586-F1-model_v4_TED02","TED novel fold AF-A0A485K586-F1-model_v4_TED02"],["TED%3AAF-A0A485L7W5-F1-model_v4_TED01","TED novel fold AF-A0A485L7W5-F1-model_v4_TED01"],["TED%3AAF-A0A485LNP0-F1-model_v4_TED01","TED novel fold AF-A0A485LNP0-F1-model_v4_TED01"],["TED%3AAF-A0A6A4ZLE5-F1-model_v4_TED01","TED novel fold AF-A0A6A4ZLE5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A120398","Aphanomyces stellatus"]]},{"id":"NCBITaxon:1244","l":"Leuconostoc gelidum","na":1,"nb":5,"a":[["Pfam%3APF08951","Bacteriocin immunity protein family"]],"b":[["NCBITaxon%3A1244","Leuconostoc gelidum"],["NCBITaxon%3A1229756","Leuconostoc gelidum JB7"],["NCBITaxon%3A1607837","Leuconostoc gelidum subsp. aenigmaticum"],["NCBITaxon%3A1607839","Leuconostoc gelidum subsp. gelidum"],["NCBITaxon%3A927691","Leuconostoc gelidum subsp. gelidum KCTC 3527"]]},{"id":"NCBITaxon:126793","l":"Plasmodium vivax Sal-1","na":5,"nb":1,"a":[["Pfam%3APF08627","CRT-like, chloroquine-resistance transporter-like"],["Pfam%3APF12361","Duffy-antigen binding protein"],["Pfam%3APF05424","Duffy binding domain"],["Pfam%3APF12377","Duffy binding protein N terminal"],["Pfam%3APF11556","Erythrocyte binding antigen 175"]],"b":[["NCBITaxon%3A126793","Plasmodium vivax Sal-1"]]},{"id":"NCBITaxon:1391654","l":"Labilithrix luteola","na":5,"nb":1,"a":[["TED%3AAF-A0A0K1PPH0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0K1PPH0-F1-model_v4_TED01"],["TED%3AAF-A0A0K1PQV0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0K1PQV0-F1-model_v4_TED01"],["TED%3AAF-A0A0K1PKQ0-F1-model_v4_TED02","TED novel fold AF-A0A0K1PKQ0-F1-model_v4_TED02"],["TED%3AAF-A0A0K1QB04-F1-model_v4_TED01","TED novel fold AF-A0A0K1QB04-F1-model_v4_TED01"],["TED%3AAF-A0A0K1QB59-F1-model_v4_TED04","TED novel fold AF-A0A0K1QB59-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1391654","Labilithrix luteola"]]},{"id":"NCBITaxon:1399860","l":"Ophiocordyceps australis","na":5,"nb":1,"a":[["TED%3AAF-A0A2C5XYE3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2C5XYE3-F1-model_v4_TED02"],["TED%3AAF-A0A2C5XXI9-F1-model_v4_TED01","TED novel fold AF-A0A2C5XXI9-F1-model_v4_TED01"],["TED%3AAF-A0A2C5Y9G2-F1-model_v4_TED01","TED novel fold AF-A0A2C5Y9G2-F1-model_v4_TED01"],["TED%3AAF-A0A2C5YDN9-F1-model_v4_TED01","TED novel fold AF-A0A2C5YDN9-F1-model_v4_TED01"],["TED%3AAF-A0A2C5Z5D6-F1-model_v4_TED02","TED novel fold AF-A0A2C5Z5D6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1399860","Ophiocordyceps australis"]]},{"id":"NCBITaxon:1460663","l":"Paraphaeosphaeria sporulosa","na":5,"nb":1,"a":[["TED%3AAF-A0A177BYU6-F1-model_v4_TED01","TED novel fold AF-A0A177BYU6-F1-model_v4_TED01"],["TED%3AAF-A0A177C1V7-F1-model_v4_TED01","TED novel fold AF-A0A177C1V7-F1-model_v4_TED01"],["TED%3AAF-A0A177C423-F1-model_v4_TED02","TED novel fold AF-A0A177C423-F1-model_v4_TED02"],["TED%3AAF-A0A177CFU8-F1-model_v4_TED03","TED novel fold AF-A0A177CFU8-F1-model_v4_TED03"],["TED%3AAF-A0A177CTN1-F1-model_v4_TED01","TED novel fold AF-A0A177CTN1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1460663","Paraphaeosphaeria sporulosa"]]},{"id":"NCBITaxon:1465","l":"Brevibacillus laterosporus","na":1,"nb":5,"a":[["TED%3AAF-A0A0F7BZ24-F1-model_v4_TED01","TED novel fold AF-A0A0F7BZ24-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1465","Brevibacillus laterosporus"],["NCBITaxon%3A1121121","Brevibacillus laterosporus DSM 25"],["NCBITaxon%3A1118154","Brevibacillus laterosporus GI-9"],["NCBITaxon%3A1042163","Brevibacillus laterosporus LMG 15441"],["NCBITaxon%3A1399144","Brevibacillus laterosporus PE36"]]},{"id":"NCBITaxon:1473586","l":"Roseiarcus fermentans","na":5,"nb":1,"a":[["TED%3AAF-A0A366EFE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A366EFE6-F1-model_v4_TED01"],["TED%3AAF-A0A366FNN9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A366FNN9-F1-model_v4_TED01"],["TED%3AAF-A0A366FT73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A366FT73-F1-model_v4_TED01"],["TED%3AAF-A0A366EUJ4-F1-model_v4_TED01","TED novel fold AF-A0A366EUJ4-F1-model_v4_TED01"],["TED%3AAF-A0A366FSX2-F1-model_v4_TED01","TED novel fold AF-A0A366FSX2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1473586","Roseiarcus fermentans"]]},{"id":"NCBITaxon:147558","l":"Byssothecium circinans","na":5,"nb":1,"a":[["TED%3AAF-A0A6A5TH04-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A5TH04-F1-model_v4_TED01"],["TED%3AAF-A0A6A5TN25-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A5TN25-F1-model_v4_TED01"],["TED%3AAF-A0A6A5T6G0-F1-model_v4_TED01","TED novel fold AF-A0A6A5T6G0-F1-model_v4_TED01"],["TED%3AAF-A0A6A5U5A4-F1-model_v4_TED02","TED novel fold AF-A0A6A5U5A4-F1-model_v4_TED02"],["TED%3AAF-A0A6A5UDD3-F1-model_v4_TED01","TED novel fold AF-A0A6A5UDD3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A147558","Byssothecium circinans"]]},{"id":"NCBITaxon:1514140","l":"Trieres chinensis","na":5,"nb":1,"a":[["TED%3AAF-A0A7S1YW68-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1YW68-F1-model_v4_TED01"],["TED%3AAF-A0A7S1Z4Z7-F1-model_v4_TED01","TED novel fold AF-A0A7S1Z4Z7-F1-model_v4_TED01"],["TED%3AAF-A0A7S1ZAT3-F1-model_v4_TED03","TED novel fold AF-A0A7S1ZAT3-F1-model_v4_TED03"],["TED%3AAF-A0A7S2A6A9-F1-model_v4_TED02","TED novel fold AF-A0A7S2A6A9-F1-model_v4_TED02"],["TED%3AAF-A0A7S2A7V0-F1-model_v4_TED02","TED novel fold AF-A0A7S2A7V0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1514140","Trieres chinensis"]]},{"id":"NCBITaxon:1630","l":"Kandleria vitulina","na":1,"nb":5,"a":[["TED%3AAF-A0A1H2RJ13-F1-model_v4_TED02","TED novel fold AF-A0A1H2RJ13-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1630","Kandleria vitulina"],["NCBITaxon%3A1410657","Kandleria vitulina DSM 20405"],["NCBITaxon%3A1410658","Kandleria vitulina MC3001"],["NCBITaxon%3A1410659","Kandleria vitulina WCE2011"],["NCBITaxon%3A322505","Sharpea azabuensis"]]},{"id":"NCBITaxon:1667","l":"Arthrobacter sp.","na":5,"nb":1,"a":[["Pfam%3APF14031","Putative serine dehydratase domain"],["Pfam%3APF02449","Beta-galactosidase"],["Pfam%3APF08533","Beta-galactosidase C-terminal domain"],["Pfam%3APF08532","Beta-galactosidase trimerisation domain"],["TED%3AAF-A0A3C2BWN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C2BWN3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1667","Arthrobacter sp."]]},{"id":"NCBITaxon:166793","l":"Solirubrobacter pauli","na":5,"nb":1,"a":[["TED%3AAF-A0A660KVC2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A660KVC2-F1-model_v4_TED01"],["TED%3AAF-A0A660L8K6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A660L8K6-F1-model_v4_TED03"],["TED%3AAF-A0A660L9Y2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A660L9Y2-F1-model_v4_TED02"],["TED%3AAF-A0A660L5E2-F1-model_v4_TED01","TED novel fold AF-A0A660L5E2-F1-model_v4_TED01"],["TED%3AAF-A0A660LBC0-F1-model_v4_TED02","TED novel fold AF-A0A660LBC0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A166793","Solirubrobacter pauli"]]},{"id":"NCBITaxon:1752","l":"Propionibacterium freudenreichii subsp. shermanii","na":1,"nb":5,"a":[["PROSITE%3APS00544","Methylmalonyl-CoA mutase signature"]],"b":[["NCBITaxon%3A1591","Lactobacillus sp."],["NCBITaxon%3A1744","Propionibacterium freudenreichii"],["NCBITaxon%3A1752","Propionibacterium freudenreichii subsp. shermanii"],["NCBITaxon%3A754252","Propionibacterium freudenreichii subsp. shermanii CIRM-BIA1"],["NCBITaxon%3A1445610","Propionibacterium freudenreichii subsp. shermanii SANPR8"]]},{"id":"NCBITaxon:1798206","l":"Thioclava sp. ES.032","na":5,"nb":1,"a":[["TED%3AAF-A0A4R7KQ83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R7KQ83-F1-model_v4_TED01"],["TED%3AAF-A0A4R7KH50-F1-model_v4_TED01","TED novel fold AF-A0A4R7KH50-F1-model_v4_TED01"],["TED%3AAF-A0A4R7KMZ7-F1-model_v4_TED01","TED novel fold AF-A0A4R7KMZ7-F1-model_v4_TED01"],["TED%3AAF-A0A4R7KP85-F1-model_v4_TED01","TED novel fold AF-A0A4R7KP85-F1-model_v4_TED01"],["TED%3AAF-A0A4R7KRD5-F1-model_v4_TED01","TED novel fold AF-A0A4R7KRD5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798206","Thioclava sp. ES.032"]]},{"id":"NCBITaxon:1856293","l":"Gammaproteobacteria bacterium 42_54_T18","na":5,"nb":1,"a":[["TED%3AAF-A0A1Z7YLF6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z7YLF6-F1-model_v4_TED01"],["TED%3AAF-A0A1Z7ZRW5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z7ZRW5-F1-model_v4_TED01"],["TED%3AAF-A0A1Z8A185-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z8A185-F1-model_v4_TED01"],["TED%3AAF-A0A1Z7YM22-F1-model_v4_TED01","TED novel fold AF-A0A1Z7YM22-F1-model_v4_TED01"],["TED%3AAF-A0A1Z7ZZU7-F1-model_v4_TED01","TED novel fold AF-A0A1Z7ZZU7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1856293","Gammaproteobacteria bacterium 42_54_T18"]]},{"id":"NCBITaxon:1871070","l":"Oxalobacteraceae bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A4Q3LAA3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q3LAA3-F1-model_v4_TED01"],["TED%3AAF-A0A4Q3HLQ7-F1-model_v4_TED02","TED novel fold AF-A0A4Q3HLQ7-F1-model_v4_TED02"],["TED%3AAF-A0A4Q3KLL6-F1-model_v4_TED03","TED novel fold AF-A0A4Q3KLL6-F1-model_v4_TED03"],["TED%3AAF-A0A4Q3LPB8-F1-model_v4_TED01","TED novel fold AF-A0A4Q3LPB8-F1-model_v4_TED01"],["TED%3AAF-A0A4V1TM44-F1-model_v4_TED01","TED novel fold AF-A0A4V1TM44-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1871070","Oxalobacteraceae bacterium"]]},{"id":"NCBITaxon:1872427","l":"Alcanivorax sp.","na":5,"nb":1,"a":[["TED%3AAF-A0A3C1HS87-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A3C1HS87-F1-model_v4_TED05"],["TED%3AAF-A0A2E8G0K2-F1-model_v4_TED02","TED novel fold AF-A0A2E8G0K2-F1-model_v4_TED02"],["TED%3AAF-A0A2E8G2P9-F1-model_v4_TED01","TED novel fold AF-A0A2E8G2P9-F1-model_v4_TED01"],["TED%3AAF-A0A3B8PCI6-F1-model_v4_TED01","TED novel fold AF-A0A3B8PCI6-F1-model_v4_TED01"],["TED%3AAF-A0A3C0M083-F1-model_v4_TED02","TED novel fold AF-A0A3C0M083-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1872427","Alcanivorax sp."]]},{"id":"NCBITaxon:1872629","l":"Arcobacter sp.","na":5,"nb":1,"a":[["TED%3AAF-A0A2D5P801-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D5P801-F1-model_v4_TED02"],["TED%3AAF-A0A2G6R5Z0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G6R5Z0-F1-model_v4_TED01"],["TED%3AAF-A0A7C3M446-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C3M446-F1-model_v4_TED01"],["TED%3AAF-A0A2D5P5I8-F1-model_v4_TED01","TED novel fold AF-A0A2D5P5I8-F1-model_v4_TED01"],["TED%3AAF-A0A7C3R557-F1-model_v4_TED02","TED novel fold AF-A0A7C3R557-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1872629","Arcobacter sp."]]},{"id":"NCBITaxon:1898103","l":"Rhodocyclaceae bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A5C9BV10-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C9BV10-F1-model_v4_TED01"],["TED%3AAF-A0A7C6KDT6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C6KDT6-F1-model_v4_TED01"],["TED%3AAF-A0A3S0EHT2-F1-model_v4_TED01","TED novel fold AF-A0A3S0EHT2-F1-model_v4_TED01"],["TED%3AAF-A0A431JPK4-F1-model_v4_TED02","TED novel fold AF-A0A431JPK4-F1-model_v4_TED02"],["TED%3AAF-A0A5C9BLM6-F1-model_v4_TED01","TED novel fold AF-A0A5C9BLM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1898103","Rhodocyclaceae bacterium"]]},{"id":"NCBITaxon:190893","l":"Vibrio coralliilyticus","na":1,"nb":5,"a":[["TED%3AAF-A0A7Y4BNK4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4BNK4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A190893","Vibrio coralliilyticus"],["NCBITaxon%3A675814","Vibrio coralliilyticus ATCC BAA-450"],["NCBITaxon%3A1353535","Vibrio coralliilyticus NA0301"],["NCBITaxon%3A1384040","Vibrio coralliilyticus OCN008"],["NCBITaxon%3A909421","Vibrio coralliilyticus P1"]]},{"id":"NCBITaxon:1911520","l":"Actinomycetales bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A7X7DA60-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X7DA60-F1-model_v4_TED01"],["TED%3AAF-A0A7X7NMJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X7NMJ9-F1-model_v4_TED01"],["TED%3AAF-A0A847CNG4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A847CNG4-F1-model_v4_TED01"],["TED%3AAF-A0A847KL95-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A847KL95-F1-model_v4_TED02"],["TED%3AAF-A0A847KJV2-F1-model_v4_TED01","TED novel fold AF-A0A847KJV2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1911520","Actinomycetales bacterium"]]},{"id":"NCBITaxon:1926873","l":"Lysobacteraceae bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A3C0JAH5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C0JAH5-F1-model_v4_TED01"],["TED%3AAF-A0A7C6VXP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C6VXP7-F1-model_v4_TED01"],["TED%3AAF-A0A7X7SSY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X7SSY6-F1-model_v4_TED01"],["TED%3AAF-A0A5C7RAV8-F1-model_v4_TED01","TED novel fold AF-A0A5C7RAV8-F1-model_v4_TED01"],["TED%3AAF-A0A7C6VXF5-F1-model_v4_TED01","TED novel fold AF-A0A7C6VXF5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1926873","Lysobacteraceae bacterium"]]},{"id":"NCBITaxon:193","l":"Azospirillum lipoferum","na":1,"nb":5,"a":[["TED%3AAF-A0A1X7MZF1-F1-model_v4_TED02","TED novel fold AF-A0A1X7MZF1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A442870","Acanthopleuribacter pedis"],["NCBITaxon%3A52761","Azospirillum largimobile"],["NCBITaxon%3A193","Azospirillum lipoferum"],["NCBITaxon%3A862719","Azospirillum lipoferum 4B"],["NCBITaxon%3A34012","Azospirillum sp."]]},{"id":"NCBITaxon:1978525","l":"Sphingomonadales bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A4Q3A6F4-F1-model_v4_TED01","TED novel fold AF-A0A4Q3A6F4-F1-model_v4_TED01"],["TED%3AAF-A0A4Q3AFM2-F1-model_v4_TED02","TED novel fold AF-A0A4Q3AFM2-F1-model_v4_TED02"],["TED%3AAF-A0A4Q3AGI7-F1-model_v4_TED03","TED novel fold AF-A0A4Q3AGI7-F1-model_v4_TED03"],["TED%3AAF-A0A4Q3AGZ4-F1-model_v4_TED01","TED novel fold AF-A0A4Q3AGZ4-F1-model_v4_TED01"],["TED%3AAF-A0A4Q3ARA3-F1-model_v4_TED01","TED novel fold AF-A0A4Q3ARA3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1978525","Sphingomonadales bacterium"]]},{"id":"NCBITaxon:200324","l":"Puccinia coronata f. sp. avenae","na":5,"nb":1,"a":[["TED%3AAF-A0A2N5UHE5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N5UHE5-F1-model_v4_TED02"],["TED%3AAF-A0A2N5UTY3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N5UTY3-F1-model_v4_TED02"],["TED%3AAF-A0A2N5SHP2-F1-model_v4_TED01","TED novel fold AF-A0A2N5SHP2-F1-model_v4_TED01"],["TED%3AAF-A0A2N5TCK3-F1-model_v4_TED02","TED novel fold AF-A0A2N5TCK3-F1-model_v4_TED02"],["TED%3AAF-A0A2N5UYI1-F1-model_v4_TED01","TED novel fold AF-A0A2N5UYI1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A200324","Puccinia coronata f. sp. avenae"]]},{"id":"NCBITaxon:2024841","l":"Micavibrio sp.","na":5,"nb":1,"a":[["TED%3AAF-A0A2D8LYK6-F1-model_v4_TED01","TED novel fold AF-A0A2D8LYK6-F1-model_v4_TED01"],["TED%3AAF-A0A2D8M0X9-F1-model_v4_TED01","TED novel fold AF-A0A2D8M0X9-F1-model_v4_TED01"],["TED%3AAF-A0A651F7P0-F1-model_v4_TED01","TED novel fold AF-A0A651F7P0-F1-model_v4_TED01"],["TED%3AAF-A0A651FN22-F1-model_v4_TED01","TED novel fold AF-A0A651FN22-F1-model_v4_TED01"],["TED%3AAF-A0A7C7SSI7-F1-model_v4_TED01","TED novel fold AF-A0A7C7SSI7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024841","Micavibrio sp."]]},{"id":"NCBITaxon:2026715","l":"Pseudobdellovibrionaceae bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A2E8I2Q3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E8I2Q3-F1-model_v4_TED02"],["TED%3AAF-A0A2E8I7A7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E8I7A7-F1-model_v4_TED02"],["TED%3AAF-A0A2E1Q4H5-F1-model_v4_TED06","TED novel fold AF-A0A2E1Q4H5-F1-model_v4_TED06"],["TED%3AAF-A0A2E7GIF0-F1-model_v4_TED01","TED novel fold AF-A0A2E7GIF0-F1-model_v4_TED01"],["TED%3AAF-A0A849WIZ5-F1-model_v4_TED01","TED novel fold AF-A0A849WIZ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026715","Pseudobdellovibrionaceae bacterium"]]},{"id":"NCBITaxon:2026759","l":"Magnetococcales bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A2D7C635-F1-model_v4_TED01","TED novel fold AF-A0A2D7C635-F1-model_v4_TED01"],["TED%3AAF-A0A2D7C9W2-F1-model_v4_TED01","TED novel fold AF-A0A2D7C9W2-F1-model_v4_TED01"],["TED%3AAF-A0A2E3BZA0-F1-model_v4_TED01","TED novel fold AF-A0A2E3BZA0-F1-model_v4_TED01"],["TED%3AAF-A0A2E3BZF8-F1-model_v4_TED01","TED novel fold AF-A0A2E3BZF8-F1-model_v4_TED01"],["TED%3AAF-A0A2E3BZZ3-F1-model_v4_TED03","TED novel fold AF-A0A2E3BZZ3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2026759","Magnetococcales bacterium"]]},{"id":"NCBITaxon:2026770","l":"Nitrospiraceae bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A354A1E5-F1-model_v4_TED01","TED novel fold AF-A0A354A1E5-F1-model_v4_TED01"],["TED%3AAF-A0A3C0TQL9-F1-model_v4_TED01","TED novel fold AF-A0A3C0TQL9-F1-model_v4_TED01"],["TED%3AAF-A0A3C1FTK4-F1-model_v4_TED01","TED novel fold AF-A0A3C1FTK4-F1-model_v4_TED01"],["TED%3AAF-A0A3C1G5D1-F1-model_v4_TED02","TED novel fold AF-A0A3C1G5D1-F1-model_v4_TED02"],["TED%3AAF-A0A3N5HM95-F1-model_v4_TED03","TED novel fold AF-A0A3N5HM95-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2026770","Nitrospiraceae bacterium"]]},{"id":"NCBITaxon:2026791","l":"Bryobacterales bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A350UR89-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A350UR89-F1-model_v4_TED01"],["TED%3AAF-A0A7C3C4M2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C3C4M2-F1-model_v4_TED01"],["TED%3AAF-A0A7C3E5H8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C3E5H8-F1-model_v4_TED01"],["TED%3AAF-A0A7C3DZN5-F1-model_v4_TED02","TED novel fold AF-A0A7C3DZN5-F1-model_v4_TED02"],["TED%3AAF-A0A7X2PP26-F1-model_v4_TED01","TED novel fold AF-A0A7X2PP26-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026791","Bryobacterales bacterium"]]},{"id":"NCBITaxon:2026809","l":"Campylobacterota bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A661IE68-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A661IE68-F1-model_v4_TED02"],["TED%3AAF-A0A661ISK7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A661ISK7-F1-model_v4_TED01"],["TED%3AAF-A0A496XQ20-F1-model_v4_TED01","TED novel fold AF-A0A496XQ20-F1-model_v4_TED01"],["TED%3AAF-A0A496XVW7-F1-model_v4_TED01","TED novel fold AF-A0A496XVW7-F1-model_v4_TED01"],["TED%3AAF-A0A7C5JB24-F1-model_v4_TED01","TED novel fold AF-A0A7C5JB24-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026809","Campylobacterota bacterium"]]},{"id":"NCBITaxon:2030808","l":"Candidatus Cloacimonadota bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A2A5AQC3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A5AQC3-F1-model_v4_TED01"],["TED%3AAF-A0A7C5HX70-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7C5HX70-F1-model_v4_TED03"],["TED%3AAF-A0A7X8IKA9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X8IKA9-F1-model_v4_TED01"],["TED%3AAF-A0A2A5AJ12-F1-model_v4_TED01","TED novel fold AF-A0A2A5AJ12-F1-model_v4_TED01"],["TED%3AAF-A0A7X8IJH3-F1-model_v4_TED02","TED novel fold AF-A0A7X8IJH3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2030808","Candidatus Cloacimonadota bacterium"]]},{"id":"NCBITaxon:2030829","l":"SAR202 cluster bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A5N9CY77-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5N9CY77-F1-model_v4_TED01"],["TED%3AAF-A0A5N9C391-F1-model_v4_TED01","TED novel fold AF-A0A5N9C391-F1-model_v4_TED01"],["TED%3AAF-A0A5N9CEW4-F1-model_v4_TED02","TED novel fold AF-A0A5N9CEW4-F1-model_v4_TED02"],["TED%3AAF-A0A5N9HQ74-F1-model_v4_TED01","TED novel fold AF-A0A5N9HQ74-F1-model_v4_TED01"],["TED%3AAF-A0A6L3C6H7-F1-model_v4_TED01","TED novel fold AF-A0A6L3C6H7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2030829","SAR202 cluster bacterium"]]},{"id":"NCBITaxon:2044938","l":"candidate division SR1 bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A7W4E492-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W4E492-F1-model_v4_TED01"],["TED%3AAF-A0A2W4IPX7-F1-model_v4_TED01","TED novel fold AF-A0A2W4IPX7-F1-model_v4_TED01"],["TED%3AAF-A0A7W4E3C7-F1-model_v4_TED01","TED novel fold AF-A0A7W4E3C7-F1-model_v4_TED01"],["TED%3AAF-A0A7W4HH77-F1-model_v4_TED02","TED novel fold AF-A0A7W4HH77-F1-model_v4_TED02"],["TED%3AAF-A0A7W4HH77-F1-model_v4_TED03","TED novel fold AF-A0A7W4HH77-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2044938","candidate division SR1 bacterium"]]},{"id":"NCBITaxon:2045217","l":"Candidatus Moraniibacteriota bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A5C7KV64-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A5C7KV64-F1-model_v4_TED05"],["TED%3AAF-A0A7T9K0N2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7T9K0N2-F1-model_v4_TED02"],["TED%3AAF-A0A7V6WJZ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V6WJZ0-F1-model_v4_TED01"],["TED%3AAF-A0A7X6WRF8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7X6WRF8-F1-model_v4_TED03"],["TED%3AAF-A0A7C0UIF6-F1-model_v4_TED01","TED novel fold AF-A0A7C0UIF6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2045217","Candidatus Moraniibacteriota bacterium"]]},{"id":"NCBITaxon:2052148","l":"Caldifarciminota bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A7C0VCF3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C0VCF3-F1-model_v4_TED01"],["TED%3AAF-A0A7V0XFP2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7V0XFP2-F1-model_v4_TED02"],["TED%3AAF-A0A7C4YHW3-F1-model_v4_TED02","TED novel fold AF-A0A7C4YHW3-F1-model_v4_TED02"],["TED%3AAF-A0A7V3KPS3-F1-model_v4_TED01","TED novel fold AF-A0A7V3KPS3-F1-model_v4_TED01"],["TED%3AAF-A0A7V3RFT1-F1-model_v4_TED02","TED novel fold AF-A0A7V3RFT1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2052148","Caldifarciminota bacterium"]]},{"id":"NCBITaxon:2052181","l":"Planctomycetia bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A3D3KNQ9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D3KNQ9-F1-model_v4_TED02"],["TED%3AAF-A0A7L9BX08-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7L9BX08-F1-model_v4_TED01"],["TED%3AAF-A0A7S6M8R0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S6M8R0-F1-model_v4_TED01"],["TED%3AAF-A0A4P5WR48-F1-model_v4_TED01","TED novel fold AF-A0A4P5WR48-F1-model_v4_TED01"],["TED%3AAF-A0A7L9C6V5-F1-model_v4_TED01","TED novel fold AF-A0A7L9C6V5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052181","Planctomycetia bacterium"]]},{"id":"NCBITaxon:2053627","l":"Syntrophomonas sp.","na":5,"nb":1,"a":[["TED%3AAF-A0A356U822-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A356U822-F1-model_v4_TED01"],["TED%3AAF-A0A356ZAA2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A356ZAA2-F1-model_v4_TED01"],["TED%3AAF-A0A3B8HTV0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3B8HTV0-F1-model_v4_TED02"],["TED%3AAF-A0A356UEY7-F1-model_v4_TED01","TED novel fold AF-A0A356UEY7-F1-model_v4_TED01"],["TED%3AAF-A0A356Z3H4-F1-model_v4_TED02","TED novel fold AF-A0A356Z3H4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053627","Syntrophomonas sp."]]},{"id":"NCBITaxon:2080303","l":"Candidatus Dadabacteria bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A3M1VQ27-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M1VQ27-F1-model_v4_TED01"],["TED%3AAF-A0A3M1VUL2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M1VUL2-F1-model_v4_TED01"],["TED%3AAF-A0A7V1ZJV8-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A7V1ZJV8-F1-model_v4_TED05"],["TED%3AAF-A0A3M1FT61-F1-model_v4_TED01","TED novel fold AF-A0A3M1FT61-F1-model_v4_TED01"],["TED%3AAF-A0A3M1VQ71-F1-model_v4_TED01","TED novel fold AF-A0A3M1VQ71-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2080303","Candidatus Dadabacteria bacterium"]]},{"id":"NCBITaxon:2081524","l":"Chlamydiota bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A6M1ZCM9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6M1ZCM9-F1-model_v4_TED02"],["TED%3AAF-A0A7X5TAS2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7X5TAS2-F1-model_v4_TED02"],["TED%3AAF-A0A7X5TCW0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7X5TCW0-F1-model_v4_TED02"],["TED%3AAF-A0A6M1ZLH8-F1-model_v4_TED01","TED novel fold AF-A0A6M1ZLH8-F1-model_v4_TED01"],["TED%3AAF-A0A6M1ZSE1-F1-model_v4_TED02","TED novel fold AF-A0A6M1ZSE1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2081524","Chlamydiota bacterium"]]},{"id":"NCBITaxon:2110","l":"Mycoplasmopsis agalactiae","na":1,"nb":5,"a":[["TED%3AAF-D3VRI4-F1-model_v4_TED01","TED novel fold AF-D3VRI4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2110","Mycoplasmopsis agalactiae"],["NCBITaxon%3A1110504","Mycoplasmopsis agalactiae 14628"],["NCBITaxon%3A347258","Mycoplasmopsis agalactiae 5632"],["NCBITaxon%3A347257","Mycoplasmopsis agalactiae PG2"],["NCBITaxon%3A452658","Mycoplasmopsis agalactiae VP20-L15/02"]]},{"id":"NCBITaxon:2138576","l":"Vitiosangium sp. GDMCC 1.1324","na":5,"nb":1,"a":[["Pfam%3APF12770","CHAT domain"],["Pfam%3APF26164","Bacterial Gasdermin Family"],["TED%3AAF-A0A2T4VC24-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T4VC24-F1-model_v4_TED01"],["TED%3AAF-A0A2T4VJ48-F1-model_v4_TED02","TED novel fold AF-A0A2T4VJ48-F1-model_v4_TED02"],["TED%3AAF-A0A2T4VKG0-F1-model_v4_TED01","TED novel fold AF-A0A2T4VKG0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2138576","Vitiosangium sp. GDMCC 1.1324"]]},{"id":"NCBITaxon:214684","l":"Cryptococcus deneoformans JEC21","na":5,"nb":1,"a":[["Pfam%3APF28371","Clampless protein 1 N-terminal domain"],["Pfam%3APF28353","Clampless protein 1 C-terminal domain"],["Pfam%3APF11735","Cryptococcal mannosyltransferase 1"],["PROSITE%3APS01103","Aspartate-semialdehyde dehydrogenase signature"],["PROSITE%3APS00614","Indole-3-glycerol phosphate synthase signature"]],"b":[["NCBITaxon%3A214684","Cryptococcus deneoformans JEC21"]]},{"id":"NCBITaxon:2201156","l":"Acidimicrobiales bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A6B1B579-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6B1B579-F1-model_v4_TED02"],["TED%3AAF-A0A7Y3LKE7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y3LKE7-F1-model_v4_TED01"],["TED%3AAF-A0A7X7D9X0-F1-model_v4_TED02","TED novel fold AF-A0A7X7D9X0-F1-model_v4_TED02"],["TED%3AAF-A0A7Y2GLL1-F1-model_v4_TED01","TED novel fold AF-A0A7Y2GLL1-F1-model_v4_TED01"],["TED%3AAF-A0A7Y3LL73-F1-model_v4_TED02","TED novel fold AF-A0A7Y3LL73-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2201156","Acidimicrobiales bacterium"]]},{"id":"NCBITaxon:220668","l":"Lactiplantibacillus plantarum WCFS1","na":5,"nb":1,"a":[["Pfam%3APF17727","CtsR C-terminal dimerization domain"],["Pfam%3APF05848","CtsR N-terminal HTH domain"],["Pfam%3APF14804","Jag N-terminus"],["Pfam%3APF09861","Lactate racemase N-terminal domain"],["Pfam%3APF21113","Lactate racemase C-terminal domain"]],"b":[["NCBITaxon%3A220668","Lactiplantibacillus plantarum WCFS1"]]},{"id":"NCBITaxon:2212469","l":"Calditrichota bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A3M1X9B8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M1X9B8-F1-model_v4_TED01"],["TED%3AAF-A0A3M1AWL8-F1-model_v4_TED02","TED novel fold AF-A0A3M1AWL8-F1-model_v4_TED02"],["TED%3AAF-A0A6H9L0R7-F1-model_v4_TED01","TED novel fold AF-A0A6H9L0R7-F1-model_v4_TED01"],["TED%3AAF-A0A6H9L8S3-F1-model_v4_TED01","TED novel fold AF-A0A6H9L8S3-F1-model_v4_TED01"],["TED%3AAF-A0A6H9LBC1-F1-model_v4_TED02","TED novel fold AF-A0A6H9LBC1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2212469","Calditrichota bacterium"]]},{"id":"NCBITaxon:221442","l":"Coccolithus braarudii","na":5,"nb":1,"a":[["TED%3AAF-A0A7S0L0L4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0L0L4-F1-model_v4_TED01"],["TED%3AAF-A0A7S0LI79-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0LI79-F1-model_v4_TED01"],["TED%3AAF-A0A7S0Q856-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0Q856-F1-model_v4_TED01"],["TED%3AAF-A0A7S0QA11-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0QA11-F1-model_v4_TED01"],["TED%3AAF-A0A7S0Q0N5-F1-model_v4_TED02","TED novel fold AF-A0A7S0Q0N5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A221442","Coccolithus braarudii"]]},{"id":"NCBITaxon:2420332","l":"Caldilineae bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A3M1EY42-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M1EY42-F1-model_v4_TED01"],["TED%3AAF-A0A3M1G2A4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M1G2A4-F1-model_v4_TED01"],["TED%3AAF-A0A3M1E9U3-F1-model_v4_TED03","TED novel fold AF-A0A3M1E9U3-F1-model_v4_TED03"],["TED%3AAF-A0A3M1F5B3-F1-model_v4_TED02","TED novel fold AF-A0A3M1F5B3-F1-model_v4_TED02"],["TED%3AAF-A0A7V2LNF5-F1-model_v4_TED02","TED novel fold AF-A0A7V2LNF5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2420332","Caldilineae bacterium"]]},{"id":"NCBITaxon:2448782","l":"Chloroflexia bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A7V9F8Q8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V9F8Q8-F1-model_v4_TED01"],["TED%3AAF-A0A7V9SE74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V9SE74-F1-model_v4_TED01"],["TED%3AAF-A0A7W0TW73-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A7W0TW73-F1-model_v4_TED06"],["TED%3AAF-A0A7V9KJ87-F1-model_v4_TED01","TED novel fold AF-A0A7V9KJ87-F1-model_v4_TED01"],["TED%3AAF-A0A7W0QRA7-F1-model_v4_TED03","TED novel fold AF-A0A7W0QRA7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2448782","Chloroflexia bacterium"]]},{"id":"NCBITaxon:2498093","l":"Muribaculaceae bacterium","na":5,"nb":1,"a":[["TED%3AAF-A0A4S4G8A7-F1-model_v4_TED01","TED novel fold AF-A0A4S4G8A7-F1-model_v4_TED01"],["TED%3AAF-A0A7J0A8S6-F1-model_v4_TED01","TED novel fold AF-A0A7J0A8S6-F1-model_v4_TED01"],["TED%3AAF-A0A7J0AHV0-F1-model_v4_TED04","TED novel fold AF-A0A7J0AHV0-F1-model_v4_TED04"],["TED%3AAF-A0A7J0AJE8-F1-model_v4_TED01","TED novel fold AF-A0A7J0AJE8-F1-model_v4_TED01"],["TED%3AAF-A0A7J0AX19-F1-model_v4_TED02","TED novel fold AF-A0A7J0AX19-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2498093","Muribaculaceae bacterium"]]},{"id":"NCBITaxon:256","l":"Myroides odoratus","na":1,"nb":5,"a":[["TED%3AAF-A0A378RV66-F1-model_v4_TED01","TED novel fold AF-A0A378RV66-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1820002","Bartonella mastomydis"],["NCBITaxon%3A76832","Myroides odoratimimus"],["NCBITaxon%3A256","Myroides odoratus"],["NCBITaxon%3A883155","Myroides odoratus CIP 103059"],["NCBITaxon%3A929704","Myroides odoratus DSM 2801"]]},{"id":"NCBITaxon:271","l":"Thermus aquaticus","na":1,"nb":5,"a":[["Pfam%3APF07669","Eco57I restriction-modification methylase"]],"b":[["NCBITaxon%3A271","Thermus aquaticus"],["NCBITaxon%3A1123387","Thermus aquaticus DSM 625"],["NCBITaxon%3A498848","Thermus aquaticus Y51MC23"],["NCBITaxon%3A274","Thermus thermophilus"],["NCBITaxon%3A300852","Thermus thermophilus HB8"]]},{"id":"NCBITaxon:278944","l":"Botryotinia narcissicola","na":5,"nb":1,"a":[["TED%3AAF-A0A4Z1HD61-F1-model_v4_TED02","TED novel fold AF-A0A4Z1HD61-F1-model_v4_TED02"],["TED%3AAF-A0A4Z1HKJ8-F1-model_v4_TED01","TED novel fold AF-A0A4Z1HKJ8-F1-model_v4_TED01"],["TED%3AAF-A0A4Z1HSA7-F1-model_v4_TED01","TED novel fold AF-A0A4Z1HSA7-F1-model_v4_TED01"],["TED%3AAF-A0A4Z1J0L2-F1-model_v4_TED01","TED novel fold AF-A0A4Z1J0L2-F1-model_v4_TED01"],["TED%3AAF-A0A4Z1JE74-F1-model_v4_TED01","TED novel fold AF-A0A4Z1JE74-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A278944","Botryotinia narcissicola"]]},{"id":"NCBITaxon:278959","l":"Opitutaceae bacterium TAV4","na":5,"nb":1,"a":[["TED%3AAF-A0A3R8KKA4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R8KKA4-F1-model_v4_TED01"],["TED%3AAF-A0A3R8QGI6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A3R8QGI6-F1-model_v4_TED04"],["TED%3AAF-A0A426CFE3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A426CFE3-F1-model_v4_TED01"],["TED%3AAF-A0A426CJA7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A426CJA7-F1-model_v4_TED01"],["TED%3AAF-A0A426CQ29-F1-model_v4_TED01","TED novel fold AF-A0A426CQ29-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A278959","Opitutaceae bacterium TAV4"]]},{"id":"NCBITaxon:2813651","l":"Orbilia oligospora","na":5,"nb":1,"a":[["TED%3AAF-A0A7C8QX08-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C8QX08-F1-model_v4_TED01"],["TED%3AAF-A0A6G1LQE8-F1-model_v4_TED01","TED novel fold AF-A0A6G1LQE8-F1-model_v4_TED01"],["TED%3AAF-A0A7C8K8Y3-F1-model_v4_TED01","TED novel fold AF-A0A7C8K8Y3-F1-model_v4_TED01"],["TED%3AAF-A0A7C8PM63-F1-model_v4_TED01","TED novel fold AF-A0A7C8PM63-F1-model_v4_TED01"],["TED%3AAF-A0A7C8QEL3-F1-model_v4_TED01","TED novel fold AF-A0A7C8QEL3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2813651","Orbilia oligospora"]]},{"id":"NCBITaxon:28151","l":"Serratia proteamaculans","na":1,"nb":5,"a":[["TED%3AAF-A0A4Z0DTE8-F1-model_v4_TED01","TED novel fold AF-A0A4Z0DTE8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A614","Serratia liquefaciens"],["NCBITaxon%3A28151","Serratia proteamaculans"],["NCBITaxon%3A1255585","Serratia proteamaculans 1C2F"],["NCBITaxon%3A399741","Serratia proteamaculans 568"],["NCBITaxon%3A137545","Serratia quinivorans"]]},{"id":"NCBITaxon:282459","l":"Staphylococcus aureus subsp. aureus MSSA476","na":5,"nb":1,"a":[["Pfam%3APF21650","DNA primase DnaG, catalytic core, helical bundle"],["Pfam%3APF04507","Csa1 family"],["Pfam%3APF27280","EsaA helical domain"],["Pfam%3APF10661","WXG100 protein secretion system (Wss), protein EssA"],["PROSITE%3APS01327","Large-conductance mechanosensitive channels mscL family signature"]],"b":[["NCBITaxon%3A282459","Staphylococcus aureus subsp. aureus MSSA476"]]},{"id":"NCBITaxon:29363","l":"Clostridium paraputrificum","na":1,"nb":5,"a":[["TED%3AAF-A0A6N3ESK2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N3ESK2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29363","Clostridium paraputrificum"],["NCBITaxon%3A1280689","Clostridium paraputrificum AGR2156"],["NCBITaxon%3A1357390","Clostridium paraputrificum ETR2_15"],["NCBITaxon%3A1725","Corynebacterium xerosis"],["NCBITaxon%3A1223513","Corynebacterium xerosis NBRC 16721 = ATCC 373"]]},{"id":"NCBITaxon:296","l":"Pseudomonas fragi","na":1,"nb":5,"a":[["TED%3AAF-A0A449IS41-F1-model_v4_TED01","TED novel fold AF-A0A449IS41-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A296","Pseudomonas fragi"],["NCBITaxon%3A1255586","Pseudomonas fragi 1E26"],["NCBITaxon%3A1134475","Pseudomonas fragi A22"],["NCBITaxon%3A1136138","Pseudomonas fragi B25"],["NCBITaxon%3A1215101","Pseudomonas fragi NBRC 3458"]]},{"id":"NCBITaxon:32021","l":"Campylobacter jejuni subsp. doylei","na":1,"nb":5,"a":[["TED%3AAF-A0A381D4M6-F1-model_v4_TED01","TED novel fold AF-A0A381D4M6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A197","Campylobacter jejuni"],["NCBITaxon%3A32021","Campylobacter jejuni subsp. doylei"],["NCBITaxon%3A360109","Campylobacter jejuni subsp. doylei 269.97"],["NCBITaxon%3A1408360","Campylobacter jejuni subsp. doylei ATCC 49349"],["NCBITaxon%3A1070741","Campylobacter jejuni subsp. doylei str. RM3440"]]},{"id":"NCBITaxon:321314","l":"Salmonella enterica subsp. enterica serovar Choleraesuis str. SC-B67","na":5,"nb":1,"a":[["Pfam%3APF03100","CcmE domain"],["Pfam%3APF08884","Flagellin D3 domain"],["Pfam%3APF27117","FliB lysine N-methylase C-terminal domain"],["Pfam%3APF04741","InvH outer membrane lipoprotein"],["PROSITE%3APS01148","Uncharacterized protein family UPF0033 signature"]],"b":[["NCBITaxon%3A321314","Salmonella enterica subsp. enterica serovar Choleraesuis str. SC-B67"]]},{"id":"NCBITaxon:35818","l":"Helicobacter pullorum","na":1,"nb":5,"a":[["TED%3AAF-A0A1C0W344-F1-model_v4_TED01","TED novel fold AF-A0A1C0W344-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A35818","Helicobacter pullorum"],["NCBITaxon%3A585526","Helicobacter pullorum C1a"],["NCBITaxon%3A585527","Helicobacter pullorum C2a"],["NCBITaxon%3A537972","Helicobacter pullorum MIT 98-5489"],["NCBITaxon%3A552535","Helicobacter pullorum NCTC 12824"]]},{"id":"NCBITaxon:35828","l":"Fibrobacter sp.","na":5,"nb":1,"a":[["TED%3AAF-A0A7X7E2C0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X7E2C0-F1-model_v4_TED01"],["TED%3AAF-A0A7X7NJQ3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7X7NJQ3-F1-model_v4_TED03"],["TED%3AAF-A0A7X7P5S3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7X7P5S3-F1-model_v4_TED03"],["TED%3AAF-A0A847P247-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A847P247-F1-model_v4_TED01"],["TED%3AAF-A0A847NVS0-F1-model_v4_TED03","TED novel fold AF-A0A847NVS0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A35828","Fibrobacter sp."]]},{"id":"NCBITaxon:359786","l":"Staphylococcus aureus subsp. aureus JH9","na":5,"nb":1,"a":[["Pfam%3APF04647","Accessory gene regulator B"],["Pfam%3APF07285","Protein of unknown function (DUF1444)"],["Pfam%3APF09902","Uncharacterized protein conserved in bacteria (DUF2129)"],["Pfam%3APF06874","Firmicute fructose-1,6-bisphosphatase"],["Pfam%3APF12127","Flotillin-like protein FloA"]],"b":[["NCBITaxon%3A359786","Staphylococcus aureus subsp. aureus JH9"]]},{"id":"NCBITaxon:361077","l":"Tieghemostelium lacteum","na":5,"nb":1,"a":[["TED%3AAF-A0A151Z3L8-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A151Z3L8-F1-model_v4_TED04"],["TED%3AAF-A0A151Z3Z9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A151Z3Z9-F1-model_v4_TED01"],["TED%3AAF-A0A151Z594-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A151Z594-F1-model_v4_TED02"],["TED%3AAF-A0A152A8X6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A152A8X6-F1-model_v4_TED01"],["TED%3AAF-A0A152A6H9-F1-model_v4_TED01","TED novel fold AF-A0A152A6H9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A361077","Tieghemostelium lacteum"]]},{"id":"NCBITaxon:376620","l":"Gluconobacter japonicus","na":1,"nb":5,"a":[["Pfam%3APF12318","Membrane bound FAD containing D-sorbitol dehydrogenase"]],"b":[["NCBITaxon%3A38307","Gluconobacter cerinus"],["NCBITaxon%3A38308","Gluconobacter frateurii"],["NCBITaxon%3A376620","Gluconobacter japonicus"],["NCBITaxon%3A1307947","Gluconobacter japonicus NBRC 3271"],["NCBITaxon%3A442","Gluconobacter oxydans"]]},{"id":"NCBITaxon:38294","l":"Photobacterium damselae subsp. piscicida","na":1,"nb":5,"a":[["TED%3AAF-A0A1V1VGA1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V1VGA1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A38293","Photobacterium damselae"],["NCBITaxon%3A38294","Photobacterium damselae subsp. piscicida"],["NCBITaxon%3A1200302","Photobacterium damselae subsp. piscicida DI21"],["NCBITaxon%3A406525","Photobacterium damselae subsp. piscicida PT99-018"],["NCBITaxon%3A406524","Photobacterium damselae subsp. piscicida USA91278"]]},{"id":"NCBITaxon:38301","l":"Corynebacterium minutissimum","na":1,"nb":5,"a":[["TED%3AAF-A0A376D050-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A376D050-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A43765","Corynebacterium amycolatum"],["NCBITaxon%3A169292","Corynebacterium aurimucosum"],["NCBITaxon%3A156978","Corynebacterium imitans"],["NCBITaxon%3A38301","Corynebacterium minutissimum"],["NCBITaxon%3A1223512","Corynebacterium minutissimum NBRC 15361"]]},{"id":"NCBITaxon:393133","l":"Listeria monocytogenes 10403S","na":5,"nb":1,"a":[["Pfam%3APF07698","7TM receptor with intracellular HD hydrolase"],["Pfam%3APF07697","7TM-HD extracellular"],["Pfam%3APF24898","Cyclic-di-AMP phosphodiesterase GdpP-like, GGDEF domain"],["Pfam%3APF19293","CdaA N-terminal transmembrane domain"],["Pfam%3APF04346","Ethanolamine utilisation protein, EutH"]],"b":[["NCBITaxon%3A393133","Listeria monocytogenes 10403S"]]},{"id":"NCBITaxon:394096","l":"Hyalangium minutum","na":5,"nb":1,"a":[["TED%3AAF-A0A085W4M3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085W4M3-F1-model_v4_TED01"],["TED%3AAF-A0A085WRA7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085WRA7-F1-model_v4_TED01"],["TED%3AAF-A0A085WWM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085WWM4-F1-model_v4_TED01"],["TED%3AAF-A0A085W7S5-F1-model_v4_TED03","TED novel fold AF-A0A085W7S5-F1-model_v4_TED03"],["TED%3AAF-A0A085WH04-F1-model_v4_TED01","TED novel fold AF-A0A085WH04-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A394096","Hyalangium minutum"]]},{"id":"NCBITaxon:39492","l":"[Eubacterium] siraeum","na":1,"nb":5,"a":[["TED%3AAF-A0A175A0B4-F1-model_v4_TED03","TED novel fold AF-A0A175A0B4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A39492","[Eubacterium] siraeum"],["NCBITaxon%3A657319","[Eubacterium] siraeum 70/3"],["NCBITaxon%3A1263080","[Eubacterium] siraeum CAG:80"],["NCBITaxon%3A428128","[Eubacterium] siraeum DSM 15702"],["NCBITaxon%3A717961","[Eubacterium] siraeum V10Sc8a"]]},{"id":"NCBITaxon:39650","l":"Cellvibrio mixtus","na":1,"nb":5,"a":[["TED%3AAF-A0A266QDL6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A266QDL6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A39650","Cellvibrio mixtus"],["NCBITaxon%3A180904","Cellvibrio mixtus subsp. dextranolyticus"],["NCBITaxon%3A126346","Cellvibrio mixtus subsp. mixtus"],["NCBITaxon%3A1209072","Cellvibrio mixtus subsp. mixtus J3-8"],["NCBITaxon%3A180915","Cellvibrio vulgaris"]]},{"id":"NCBITaxon:397291","l":"Lachnospiraceae bacterium A4","na":5,"nb":1,"a":[["TED%3AAF-R9IPI4-F1-model_v4_TED03","TED highly-symmetric fold AF-R9IPI4-F1-model_v4_TED03"],["TED%3AAF-R9JGJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-R9JGJ9-F1-model_v4_TED01"],["TED%3AAF-R9J569-F1-model_v4_TED03","TED novel fold AF-R9J569-F1-model_v4_TED03"],["TED%3AAF-R9JGL1-F1-model_v4_TED01","TED novel fold AF-R9JGL1-F1-model_v4_TED01"],["TED%3AAF-R9JR00-F1-model_v4_TED01","TED novel fold AF-R9JR00-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A397291","Lachnospiraceae bacterium A4"]]},{"id":"NCBITaxon:406548","l":"Aquisphaera giovannonii","na":5,"nb":1,"a":[["TED%3AAF-A0A5B9VUK0-F1-model_v4_TED01","TED novel fold AF-A0A5B9VUK0-F1-model_v4_TED01"],["TED%3AAF-A0A5B9VZ73-F1-model_v4_TED01","TED novel fold AF-A0A5B9VZ73-F1-model_v4_TED01"],["TED%3AAF-A0A5B9VZ88-F1-model_v4_TED02","TED novel fold AF-A0A5B9VZ88-F1-model_v4_TED02"],["TED%3AAF-A0A5B9W7W9-F1-model_v4_TED01","TED novel fold AF-A0A5B9W7W9-F1-model_v4_TED01"],["TED%3AAF-A0A5B9WD91-F1-model_v4_TED02","TED novel fold AF-A0A5B9WD91-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A406548","Aquisphaera giovannonii"]]},{"id":"NCBITaxon:408170","l":"human gut metagenome","na":5,"nb":1,"a":[["TED%3AAF-K1SHE9-F1-model_v4_TED01","TED highly-symmetric fold AF-K1SHE9-F1-model_v4_TED01"],["TED%3AAF-K1U1H4-F1-model_v4_TED01","TED highly-symmetric fold AF-K1U1H4-F1-model_v4_TED01"],["TED%3AAF-K1RVA2-F1-model_v4_TED01","TED novel fold AF-K1RVA2-F1-model_v4_TED01"],["TED%3AAF-K1TLH8-F1-model_v4_TED01","TED novel fold AF-K1TLH8-F1-model_v4_TED01"],["TED%3AAF-K1TUJ9-F1-model_v4_TED01","TED novel fold AF-K1TUJ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A408170","human gut metagenome"]]},{"id":"NCBITaxon:43263","l":"Aquipseudomonas alcaligenes","na":1,"nb":5,"a":[["TED%3AAF-A0A7W7JBX8-F1-model_v4_TED01","TED novel fold AF-A0A7W7JBX8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A43263","Aquipseudomonas alcaligenes"],["NCBITaxon%3A1405803","Aquipseudomonas alcaligenes MRY13-0052"],["NCBITaxon%3A1215092","Aquipseudomonas alcaligenes NBRC 14159"],["NCBITaxon%3A1333854","Aquipseudomonas alcaligenes OT 69"],["NCBITaxon%3A28094","Trinickia caryophylli"]]},{"id":"NCBITaxon:44252","l":"Paenibacillus macerans","na":1,"nb":5,"a":[["TED%3AAF-A0A6N8EWI4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A6N8EWI4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A266009","Methylovorus glucosotrophus"],["NCBITaxon%3A343517","Paenibacillus barengoltzii"],["NCBITaxon%3A44252","Paenibacillus macerans"],["NCBITaxon%3A1349781","Paenibacillus macerans NBRC 15307"],["NCBITaxon%3A58172","Paenibacillus sp."]]},{"id":"NCBITaxon:44941","l":"Gigaspora rosea","na":5,"nb":1,"a":[["TED%3AAF-A0A397UBJ2-F1-model_v4_TED02","TED novel fold AF-A0A397UBJ2-F1-model_v4_TED02"],["TED%3AAF-A0A397UPX2-F1-model_v4_TED01","TED novel fold AF-A0A397UPX2-F1-model_v4_TED01"],["TED%3AAF-A0A397V7N4-F1-model_v4_TED01","TED novel fold AF-A0A397V7N4-F1-model_v4_TED01"],["TED%3AAF-A0A397VB64-F1-model_v4_TED01","TED novel fold AF-A0A397VB64-F1-model_v4_TED01"],["TED%3AAF-A0A397VR16-F1-model_v4_TED01","TED novel fold AF-A0A397VR16-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A44941","Gigaspora rosea"]]},{"id":"NCBITaxon:473421","l":"Xanthomonas citri pv. glycines","na":1,"nb":5,"a":[["PROSITE%3APS01060","Flagella transport protein fliP family signature 1"]],"b":[["NCBITaxon%3A473421","Xanthomonas citri pv. glycines"],["NCBITaxon%3A1365648","Xanthomonas citri pv. glycines CFBP 2526"],["NCBITaxon%3A1365649","Xanthomonas citri pv. glycines CFBP 7119"],["NCBITaxon%3A1150615","Xanthomonas citri pv. glycines str. 12-2"],["NCBITaxon%3A1401257","Xanthomonas citri pv. glycines str. 8ra"]]},{"id":"NCBITaxon:47427","l":"Armillaria gallica","na":5,"nb":1,"a":[["TED%3AAF-A0A2H3CFH3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H3CFH3-F1-model_v4_TED02"],["TED%3AAF-A0A2H3DFZ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H3DFZ3-F1-model_v4_TED01"],["TED%3AAF-A0A2H3DTE1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H3DTE1-F1-model_v4_TED02"],["TED%3AAF-A0A2H3E1R0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H3E1R0-F1-model_v4_TED02"],["TED%3AAF-A0A2H3CX67-F1-model_v4_TED02","TED novel fold AF-A0A2H3CX67-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A47427","Armillaria gallica"]]},{"id":"NCBITaxon:4846","l":"Rhizopus stolonifer","na":5,"nb":1,"a":[["TED%3AAF-A0A367KJ25-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A367KJ25-F1-model_v4_TED02"],["TED%3AAF-A0A367KTA1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A367KTA1-F1-model_v4_TED01"],["TED%3AAF-A0A367J2U8-F1-model_v4_TED03","TED novel fold AF-A0A367J2U8-F1-model_v4_TED03"],["TED%3AAF-A0A367J367-F1-model_v4_TED01","TED novel fold AF-A0A367J367-F1-model_v4_TED01"],["TED%3AAF-A0A367JRQ7-F1-model_v4_TED01","TED novel fold AF-A0A367JRQ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A4846","Rhizopus stolonifer"]]},{"id":"NCBITaxon:488447","l":"Burkholderia contaminans","na":1,"nb":5,"a":[["TED%3AAF-A0A3N8RI51-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N8RI51-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A488447","Burkholderia contaminans"],["NCBITaxon%3A1423418","Burkholderia contaminans FFH2050"],["NCBITaxon%3A1423419","Burkholderia contaminans FFH2055"],["NCBITaxon%3A1334628","Burkholderia contaminans LMG 23361"],["NCBITaxon%3A36773","Burkholderia sp."]]},{"id":"NCBITaxon:498019","l":"Candidozyma auris","na":5,"nb":1,"a":[["Pfam%3APF10182","Flo11 domain"],["Pfam%3APF15789","Hyphally regulated cell wall GPI-anchored protein 1"],["TED%3AAF-A0A0L0NR05-F1-model_v4_TED02","TED novel fold AF-A0A0L0NR05-F1-model_v4_TED02"],["TED%3AAF-A0A510NYC2-F1-model_v4_TED01","TED novel fold AF-A0A510NYC2-F1-model_v4_TED01"],["TED%3AAF-A0A5Q7YF59-F1-model_v4_TED03","TED novel fold AF-A0A5Q7YF59-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A498019","Candidozyma auris"]]},{"id":"NCBITaxon:502800","l":"Yersinia pseudotuberculosis YPIII","na":5,"nb":1,"a":[["Pfam%3APF03421","YopJ Serine/Threonine acetyltransferase"],["Pfam%3APF21111","CDI toxin restriction endonuclease-like domain"],["Pfam%3APF21483","Toxin CdiA-like, helical domain"],["Pfam%3APF07262","CDI immunity protein"],["Pfam%3APF16374","Cycle inhibiting factor (CIF)"]],"b":[["NCBITaxon%3A502800","Yersinia pseudotuberculosis YPIII"]]},{"id":"NCBITaxon:5081","l":"Penicillium sp.","na":5,"nb":1,"a":[["Pfam%3APF13364","Beta-galactosidase second all-beta domain"],["Pfam%3APF10435","Beta-galactosidase, domain 2"],["Pfam%3APF13363","Beta-galactosidase, domain 3"],["Pfam%3APF01301","Glycosyl hydrolases family 35"],["PROSITE%3APS01182","Glycosyl hydrolases family 35 putative active site"]],"b":[["NCBITaxon%3A5081","Penicillium sp."]]},{"id":"NCBITaxon:5454","l":"Ascochyta rabiei","na":5,"nb":1,"a":[["TED%3AAF-A0A162YC52-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A162YC52-F1-model_v4_TED01"],["TED%3AAF-A0A163JCD7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A163JCD7-F1-model_v4_TED01"],["TED%3AAF-A0A163LJZ7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A163LJZ7-F1-model_v4_TED02"],["TED%3AAF-A0A163LQ36-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A163LQ36-F1-model_v4_TED01"],["TED%3AAF-A0A163M9G4-F1-model_v4_TED01","TED novel fold AF-A0A163M9G4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5454","Ascochyta rabiei"]]},{"id":"NCBITaxon:5762","l":"Naegleria gruberi","na":5,"nb":1,"a":[["TED%3AAF-D2VJ76-F1-model_v4_TED03","TED highly-symmetric fold AF-D2VJ76-F1-model_v4_TED03"],["TED%3AAF-D2VTQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-D2VTQ3-F1-model_v4_TED01"],["TED%3AAF-D2VYX3-F1-model_v4_TED01","TED highly-symmetric fold AF-D2VYX3-F1-model_v4_TED01"],["TED%3AAF-D2VGJ9-F1-model_v4_TED02","TED novel fold AF-D2VGJ9-F1-model_v4_TED02"],["TED%3AAF-D2VJ05-F1-model_v4_TED02","TED novel fold AF-D2VJ05-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A5762","Naegleria gruberi"]]},{"id":"NCBITaxon:588858","l":"Salmonella enterica subsp. enterica serovar Typhimurium str. 14028S","na":5,"nb":1,"a":[["Pfam%3APF13508","Acetyltransferase (GNAT) domain"],["Pfam%3APF10995","Cellulose biosynthesis protein BcsE, N-terminal domain"],["Pfam%3APF26769","Sensor protein PhoQ-like, HAMP domain"],["Pfam%3APF07071","KDGP aldolase"],["PROSITE%3APS01195","Peptidyl-tRNA hydrolase signature 1"]],"b":[["NCBITaxon%3A588858","Salmonella enterica subsp. enterica serovar Typhimurium str. 14028S"]]},{"id":"NCBITaxon:63737","l":"Nostoc punctiforme PCC 73102","na":5,"nb":1,"a":[["Pfam%3APF11266","Long-chain fatty aldehyde decarbonylase"],["Pfam%3APF21808","Bacterial dynamin-like protein, helical domain"],["Pfam%3APF18460","Heterocyst differentiation regulator C-terminal Hood domain"],["Pfam%3APF13619","KTSC domain"],["PROSITE%3APS01026","Photosystem I psaG and psaK proteins signature"]],"b":[["NCBITaxon%3A63737","Nostoc punctiforme PCC 73102"]]},{"id":"NCBITaxon:73025","l":"Eutreptiella gymnastica","na":5,"nb":1,"a":[["TED%3AAF-A0A7S1IWD8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S1IWD8-F1-model_v4_TED03"],["TED%3AAF-A0A7S4GLI6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S4GLI6-F1-model_v4_TED02"],["TED%3AAF-A0A7S1J4P7-F1-model_v4_TED01","TED novel fold AF-A0A7S1J4P7-F1-model_v4_TED01"],["TED%3AAF-A0A7S1NTX7-F1-model_v4_TED01","TED novel fold AF-A0A7S1NTX7-F1-model_v4_TED01"],["TED%3AAF-A0A7S4GF48-F1-model_v4_TED02","TED novel fold AF-A0A7S4GF48-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A73025","Eutreptiella gymnastica"]]},{"id":"NCBITaxon:735","l":"Haemophilus parahaemolyticus","na":1,"nb":5,"a":[["Pfam%3APF13391","HNH endonuclease"]],"b":[["NCBITaxon%3A735","Haemophilus parahaemolyticus"],["NCBITaxon%3A1430896","Haemophilus parahaemolyticus G321"],["NCBITaxon%3A1095744","Haemophilus parahaemolyticus HK385"],["NCBITaxon%3A736","Haemophilus paraphrohaemolyticus"],["NCBITaxon%3A1078480","Haemophilus sputorum"]]},{"id":"NCBITaxon:758","l":"Rodentibacter pneumotropicus","na":1,"nb":5,"a":[["TED%3AAF-A0A6L9GQA8-F1-model_v4_TED01","TED novel fold AF-A0A6L9GQA8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A301","Ectopseudomonas oleovorans"],["NCBITaxon%3A1215116","Ectopseudomonas oleovorans NBRC 14167"],["NCBITaxon%3A1796644","Rodentibacter caecimuris"],["NCBITaxon%3A758","Rodentibacter pneumotropicus"],["NCBITaxon%3A1122936","Rodentibacter pneumotropicus DSM 21403"]]},{"id":"NCBITaxon:76594","l":"Cellulophaga baltica","na":1,"nb":5,"a":[["TED%3AAF-A0A1G7LG86-F1-model_v4_TED01","TED novel fold AF-A0A1G7LG86-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A76594","Cellulophaga baltica"],["NCBITaxon%3A1348583","Cellulophaga baltica 13"],["NCBITaxon%3A1348584","Cellulophaga baltica 18"],["NCBITaxon%3A1348582","Cellulophaga baltica 4"],["NCBITaxon%3A1348585","Cellulophaga baltica NN016038"]]},{"id":"NCBITaxon:76856","l":"Fusobacterium nucleatum subsp. nucleatum","na":1,"nb":5,"a":[["TED%3AAF-A0A101K510-F1-model_v4_TED01","TED novel fold AF-A0A101K510-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A851","Fusobacterium nucleatum"],["NCBITaxon%3A76856","Fusobacterium nucleatum subsp. nucleatum"],["NCBITaxon%3A525283","Fusobacterium nucleatum subsp. nucleatum ATCC 23726"],["NCBITaxon%3A190304","Fusobacterium nucleatum subsp. nucleatum ATCC 25586"],["NCBITaxon%3A1307428","Fusobacterium nucleatum subsp. nucleatum ChDC F316"]]},{"id":"NCBITaxon:786","l":"Rickettsia akari","na":1,"nb":5,"a":[["Pfam%3APF12574","120 KDa Rickettsia surface antigen"]],"b":[["NCBITaxon%3A786","Rickettsia akari"],["NCBITaxon%3A1359190","Rickettsia akari str. AS4-1"],["NCBITaxon%3A1359191","Rickettsia akari str. Croatia"],["NCBITaxon%3A293614","Rickettsia akari str. Hartford"],["NCBITaxon%3A1359192","Rickettsia akari str. Toger"]]},{"id":"NCBITaxon:82367","l":"Paracoccus pantotrophus","na":1,"nb":5,"a":[["Pfam%3APF17805","AsnC-like ligand binding domain"]],"b":[["NCBITaxon%3A266","Paracoccus denitrificans"],["NCBITaxon%3A1302247","Paracoccus denitrificans JCM 21484"],["NCBITaxon%3A82367","Paracoccus pantotrophus"],["NCBITaxon%3A936051","Paracoccus pantotrophus J40"],["NCBITaxon%3A935565","Paracoccus pantotrophus J46"]]},{"id":"NCBITaxon:863","l":"Syntrophomonas wolfei","na":1,"nb":5,"a":[["TED%3AAF-A0A354YY78-F1-model_v4_TED03","TED novel fold AF-A0A354YY78-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A863","Syntrophomonas wolfei"],["NCBITaxon%3A378794","Syntrophomonas wolfei subsp. methylbutyratica"],["NCBITaxon%3A373074","Syntrophomonas wolfei subsp. saponavida"],["NCBITaxon%3A370885","Syntrophomonas wolfei subsp. wolfei"],["NCBITaxon%3A335541","Syntrophomonas wolfei subsp. wolfei str. Goettingen G311"]]},{"id":"NCBITaxon:97359","l":"Schizophyllum amplum","na":5,"nb":1,"a":[["TED%3AAF-A0A550BT88-F1-model_v4_TED02","TED novel fold AF-A0A550BT88-F1-model_v4_TED02"],["TED%3AAF-A0A550C1Q6-F1-model_v4_TED01","TED novel fold AF-A0A550C1Q6-F1-model_v4_TED01"],["TED%3AAF-A0A550C8V2-F1-model_v4_TED01","TED novel fold AF-A0A550C8V2-F1-model_v4_TED01"],["TED%3AAF-A0A550CST1-F1-model_v4_TED02","TED novel fold AF-A0A550CST1-F1-model_v4_TED02"],["TED%3AAF-A0A550CVG0-F1-model_v4_TED01","TED novel fold AF-A0A550CVG0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A97359","Schizophyllum amplum"]]},{"id":"NCBITaxon:97972","l":"Periconia macrospinosa","na":5,"nb":1,"a":[["TED%3AAF-A0A2V1CWF6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V1CWF6-F1-model_v4_TED01"],["TED%3AAF-A0A2V1CWR1-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A2V1CWR1-F1-model_v4_TED05"],["TED%3AAF-A0A2V1D579-F1-model_v4_TED02","TED novel fold AF-A0A2V1D579-F1-model_v4_TED02"],["TED%3AAF-A0A2V1D6F3-F1-model_v4_TED01","TED novel fold AF-A0A2V1D6F3-F1-model_v4_TED01"],["TED%3AAF-A0A2V1DKR2-F1-model_v4_TED02","TED novel fold AF-A0A2V1DKR2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A97972","Periconia macrospinosa"]]},{"id":"NCBITaxon:986","l":"Flavobacterium johnsoniae","na":1,"nb":5,"a":[["TED%3AAF-A0A1J7BWE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1J7BWE6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2704140","Flavobacterium bizetiae"],["NCBITaxon%3A986","Flavobacterium johnsoniae"],["NCBITaxon%3A994","Flavobacterium johnsoniae subsp. aurantiacum"],["NCBITaxon%3A376686","Flavobacterium johnsoniae UW101"],["NCBITaxon%3A1337839","Flavobacterium sp. DSM 425"]]},{"id":"NCBITaxon:100816","l":"Madurella mycetomatis","na":4,"nb":1,"a":[["IDPO%3A0000033","flexible linker"],["TED%3AAF-A0A175WFF5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A175WFF5-F1-model_v4_TED02"],["TED%3AAF-A0A175VN21-F1-model_v4_TED04","TED novel fold AF-A0A175VN21-F1-model_v4_TED04"],["TED%3AAF-A0A175VW88-F1-model_v4_TED02","TED novel fold AF-A0A175VW88-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A100816","Madurella mycetomatis"]]},{"id":"NCBITaxon:108980","l":"Acinetobacter ursingii","na":1,"nb":4,"a":[["TED%3AAF-A0A3F3LBR7-F1-model_v4_TED01","TED novel fold AF-A0A3F3LBR7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A108980","Acinetobacter ursingii"],["NCBITaxon%3A1257043","Acinetobacter ursingii ANC 3649"],["NCBITaxon%3A981336","Acinetobacter ursingii DSM 16037 = CIP 107286"],["NCBITaxon%3A1217716","Acinetobacter ursingii NIPH 706"]]},{"id":"NCBITaxon:108981","l":"Acinetobacter schindleri","na":1,"nb":4,"a":[["TED%3AAF-A0A855WCB4-F1-model_v4_TED02","TED novel fold AF-A0A855WCB4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A108981","Acinetobacter schindleri"],["NCBITaxon%3A1217988","Acinetobacter schindleri CIP 107287"],["NCBITaxon%3A1217675","Acinetobacter schindleri NIPH 900"],["NCBITaxon%3A1221311","Acinetobacter schindleri TG19614"]]},{"id":"NCBITaxon:1095630","l":"Hyaloscypha bicolor E","na":4,"nb":1,"a":[["TED%3AAF-A0A2J6SZK6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2J6SZK6-F1-model_v4_TED02"],["TED%3AAF-A0A2J6TXE7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J6TXE7-F1-model_v4_TED01"],["TED%3AAF-A0A2J6TLU9-F1-model_v4_TED03","TED novel fold AF-A0A2J6TLU9-F1-model_v4_TED03"],["TED%3AAF-A0A2J6TUE6-F1-model_v4_TED02","TED novel fold AF-A0A2J6TUE6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1095630","Hyaloscypha bicolor E"]]},{"id":"NCBITaxon:1148157","l":"Acinetobacter oleivorans","na":1,"nb":4,"a":[["TED%3AAF-A0A0B2UAV2-F1-model_v4_TED02","TED novel fold AF-A0A0B2UAV2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1148157","Acinetobacter oleivorans"],["NCBITaxon%3A1391912","Acinetobacter oleivorans CIP 110421"],["NCBITaxon%3A436717","Acinetobacter oleivorans DR1"],["NCBITaxon%3A472","Acinetobacter sp."]]},{"id":"NCBITaxon:1214573","l":"Diaporthe ampelina","na":4,"nb":1,"a":[["TED%3AAF-A0A0G2HYY7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G2HYY7-F1-model_v4_TED01"],["TED%3AAF-A0A0G2FLY8-F1-model_v4_TED02","TED novel fold AF-A0A0G2FLY8-F1-model_v4_TED02"],["TED%3AAF-A0A0G2FPQ9-F1-model_v4_TED02","TED novel fold AF-A0A0G2FPQ9-F1-model_v4_TED02"],["TED%3AAF-A0A0G2HNR1-F1-model_v4_TED01","TED novel fold AF-A0A0G2HNR1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1214573","Diaporthe ampelina"]]},{"id":"NCBITaxon:121719","l":"Pannonibacter phragmitetus","na":1,"nb":4,"a":[["TED%3AAF-A0A0U3EPB7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0U3EPB7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A134375","Achromobacter sp."],["NCBITaxon%3A121719","Pannonibacter phragmitetus"],["NCBITaxon%3A1402210","Pannonibacter phragmitetus BB"],["NCBITaxon%3A1122929","Pannonibacter phragmitetus DSM 14782"]]},{"id":"NCBITaxon:1231657","l":"Clohesyomyces aquaticus","na":4,"nb":1,"a":[["TED%3AAF-A0A1Y1ZK11-F1-model_v4_TED01","TED novel fold AF-A0A1Y1ZK11-F1-model_v4_TED01"],["TED%3AAF-A0A1Y1ZYS0-F1-model_v4_TED01","TED novel fold AF-A0A1Y1ZYS0-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2A1E6-F1-model_v4_TED03","TED novel fold AF-A0A1Y2A1E6-F1-model_v4_TED03"],["TED%3AAF-A0A1Y2A232-F1-model_v4_TED01","TED novel fold AF-A0A1Y2A232-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1231657","Clohesyomyces aquaticus"]]},{"id":"NCBITaxon:1235793","l":"Lachnospiraceae bacterium MD335","na":4,"nb":1,"a":[["TED%3AAF-A0A7X5RDY3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X5RDY3-F1-model_v4_TED01"],["TED%3AAF-R9K9C1-F1-model_v4_TED01","TED highly-symmetric fold AF-R9K9C1-F1-model_v4_TED01"],["TED%3AAF-R9K5A2-F1-model_v4_TED02","TED novel fold AF-R9K5A2-F1-model_v4_TED02"],["TED%3AAF-R9KI55-F1-model_v4_TED01","TED novel fold AF-R9KI55-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1235793","Lachnospiraceae bacterium MD335"]]},{"id":"NCBITaxon:1294122","l":"Candidatus Nanobsidianus stetteri","na":4,"nb":1,"a":[["TED%3AAF-R1E4D6-F1-model_v4_TED02","TED highly-symmetric fold AF-R1E4D6-F1-model_v4_TED02"],["TED%3AAF-R1GAD9-F1-model_v4_TED01","TED highly-symmetric fold AF-R1GAD9-F1-model_v4_TED01"],["TED%3AAF-A0A2T9WKI4-F1-model_v4_TED01","TED novel fold AF-A0A2T9WKI4-F1-model_v4_TED01"],["TED%3AAF-A0A2T9WL51-F1-model_v4_TED01","TED novel fold AF-A0A2T9WL51-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1294122","Candidatus Nanobsidianus stetteri"]]},{"id":"NCBITaxon:13221","l":"Chrysotila carterae","na":4,"nb":1,"a":[["TED%3AAF-A0A7S4BGL5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4BGL5-F1-model_v4_TED01"],["TED%3AAF-A0A7S4FAB1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4FAB1-F1-model_v4_TED01"],["TED%3AAF-A0A7S4BZI9-F1-model_v4_TED01","TED novel fold AF-A0A7S4BZI9-F1-model_v4_TED01"],["TED%3AAF-A0A7S4C065-F1-model_v4_TED02","TED novel fold AF-A0A7S4C065-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A13221","Chrysotila carterae"]]},{"id":"NCBITaxon:1353","l":"Enterococcus gallinarum","na":1,"nb":4,"a":[["Pfam%3APF01757","Acyltransferase domain"]],"b":[["NCBITaxon%3A1353","Enterococcus gallinarum"],["NCBITaxon%3A565653","Enterococcus gallinarum EG2"],["NCBITaxon%3A1357296","Enterococcus gallinarum EGD-AAK12"],["NCBITaxon%3A1218091","Enterococcus gallinarum NBRC 100675"]]},{"id":"NCBITaxon:1353891","l":"Achromobacter deleyi","na":1,"nb":4,"a":[["TED%3AAF-A0A7Y4KA77-F1-model_v4_TED01","TED novel fold AF-A0A7Y4KA77-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1353891","Achromobacter deleyi"],["NCBITaxon%3A32002","Achromobacter denitrificans"],["NCBITaxon%3A72556","Achromobacter piechaudii"],["NCBITaxon%3A85698","Achromobacter xylosoxidans"]]},{"id":"NCBITaxon:137584","l":"Thalassomonas viridans","na":4,"nb":1,"a":[["TED%3AAF-A0A0D8CPR2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D8CPR2-F1-model_v4_TED01"],["TED%3AAF-A0A0D8CLZ9-F1-model_v4_TED01","TED novel fold AF-A0A0D8CLZ9-F1-model_v4_TED01"],["TED%3AAF-A0A0D8D8E8-F1-model_v4_TED02","TED novel fold AF-A0A0D8D8E8-F1-model_v4_TED02"],["TED%3AAF-A0A0D8DAF2-F1-model_v4_TED01","TED novel fold AF-A0A0D8DAF2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A137584","Thalassomonas viridans"]]},{"id":"NCBITaxon:1411316","l":"Pedobacter sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A520IH20-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A520IH20-F1-model_v4_TED02"],["TED%3AAF-A0A519VYD0-F1-model_v4_TED02","TED novel fold AF-A0A519VYD0-F1-model_v4_TED02"],["TED%3AAF-A0A520CAS2-F1-model_v4_TED01","TED novel fold AF-A0A520CAS2-F1-model_v4_TED01"],["TED%3AAF-A0A520GU64-F1-model_v4_TED01","TED novel fold AF-A0A520GU64-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1411316","Pedobacter sp."]]},{"id":"NCBITaxon:1469910","l":"Ophiobolus disseminans","na":4,"nb":1,"a":[["TED%3AAF-A0A6A6ZF39-F1-model_v4_TED01","TED novel fold AF-A0A6A6ZF39-F1-model_v4_TED01"],["TED%3AAF-A0A6A6ZQ10-F1-model_v4_TED01","TED novel fold AF-A0A6A6ZQ10-F1-model_v4_TED01"],["TED%3AAF-A0A6A7A7Q3-F1-model_v4_TED02","TED novel fold AF-A0A6A7A7Q3-F1-model_v4_TED02"],["TED%3AAF-A0A6A7AM34-F1-model_v4_TED01","TED novel fold AF-A0A6A7AM34-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1469910","Ophiobolus disseminans"]]},{"id":"NCBITaxon:147","l":"Spirochaeta aurantia","na":1,"nb":4,"a":[["Pfam%3APF06226","Protein of unknown function (DUF1007)"]],"b":[["NCBITaxon%3A147","Spirochaeta aurantia"],["NCBITaxon%3A143778","Spirochaeta aurantia subsp. aurantia"],["NCBITaxon%3A555314","Spirochaeta aurantia subsp. aurantia M1"],["NCBITaxon%3A143779","Spirochaeta aurantia subsp. stricta"]]},{"id":"NCBITaxon:1486930","l":"Bicosoecida sp. CB-2014","na":4,"nb":1,"a":[["TED%3AAF-A0A7S1C883-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1C883-F1-model_v4_TED01"],["TED%3AAF-A0A7S1CQ98-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1CQ98-F1-model_v4_TED01"],["TED%3AAF-A0A7S1C3X4-F1-model_v4_TED02","TED novel fold AF-A0A7S1C3X4-F1-model_v4_TED02"],["TED%3AAF-A0A7S1CFB4-F1-model_v4_TED01","TED novel fold AF-A0A7S1CFB4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1486930","Bicosoecida sp. CB-2014"]]},{"id":"NCBITaxon:1507806","l":"Campylobacter fetus subsp. testudinum","na":1,"nb":4,"a":[["TED%3AAF-A0A2S0JEW5-F1-model_v4_TED02","TED novel fold AF-A0A2S0JEW5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A196","Campylobacter fetus"],["NCBITaxon%3A1507806","Campylobacter fetus subsp. testudinum"],["NCBITaxon%3A1244528","Campylobacter fetus subsp. testudinum 03-427"],["NCBITaxon%3A1244529","Campylobacter fetus subsp. testudinum Sp3"]]},{"id":"NCBITaxon:157692","l":"Pseudoleptotrichia goodfellowii","na":1,"nb":4,"a":[["TED%3AAF-A0A510JCV0-F1-model_v4_TED01","TED novel fold AF-A0A510JCV0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A157692","Pseudoleptotrichia goodfellowii"],["NCBITaxon%3A564663","Pseudoleptotrichia goodfellowii D28"],["NCBITaxon%3A714315","Pseudoleptotrichia goodfellowii DSM 19756"],["NCBITaxon%3A596323","Pseudoleptotrichia goodfellowii F0264"]]},{"id":"NCBITaxon:1588","l":"Lentilactobacillus hilgardii","na":1,"nb":4,"a":[["TED%3AAF-A0A6G9Q2H1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6G9Q2H1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1588","Lentilactobacillus hilgardii"],["NCBITaxon%3A525310","Lentilactobacillus hilgardii ATCC 27305"],["NCBITaxon%3A1423757","Lentilactobacillus hilgardii DSM 20176 = ATCC 8290"],["NCBITaxon%3A1580","Levilactobacillus brevis"]]},{"id":"NCBITaxon:160491","l":"Streptococcus pyogenes str. Manfredo","na":4,"nb":1,"a":[["Pfam%3APF20921","Domain of unknown function DUF1846, C-terminal"],["Pfam%3APF08903","Domain of unknown function DUF1846, N-terminal"],["Pfam%3APF05979","Bacterial protein of unknown function (DUF896)"],["Pfam%3APF02274","Arginine deiminase"]],"b":[["NCBITaxon%3A160491","Streptococcus pyogenes str. Manfredo"]]},{"id":"NCBITaxon:160492","l":"Xylella fastidiosa 9a5c","na":4,"nb":1,"a":[["Pfam%3APF21142","Bacterial alpha-2 macroglobulin MG2 domain"],["Pfam%3APF04273","Beta-lactamase hydrolase-like protein, phosphatase-like domain"],["Pfam%3APF17970","Bacterial Alpha-2-macroglobulin MG1 domain"],["Pfam%3APF20398","Family of unknown function (DUF6691)"]],"b":[["NCBITaxon%3A160492","Xylella fastidiosa 9a5c"]]},{"id":"NCBITaxon:161662","l":"Teratosphaeria nubilosa","na":4,"nb":1,"a":[["TED%3AAF-A0A6G1L6X0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6G1L6X0-F1-model_v4_TED01"],["TED%3AAF-A0A6G1L7T9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6G1L7T9-F1-model_v4_TED01"],["TED%3AAF-A0A6G1KZ67-F1-model_v4_TED02","TED novel fold AF-A0A6G1KZ67-F1-model_v4_TED02"],["TED%3AAF-A0A6G1LI25-F1-model_v4_TED04","TED novel fold AF-A0A6G1LI25-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A161662","Teratosphaeria nubilosa"]]},{"id":"NCBITaxon:1632865","l":"Pirellula sp. SH-Sr6A","na":4,"nb":1,"a":[["TED%3AAF-A0A142XYB0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A142XYB0-F1-model_v4_TED01"],["TED%3AAF-A0A142Y0N9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A142Y0N9-F1-model_v4_TED01"],["TED%3AAF-A0A142Y915-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A142Y915-F1-model_v4_TED01"],["TED%3AAF-A0A142Y424-F1-model_v4_TED02","TED novel fold AF-A0A142Y424-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1632865","Pirellula sp. SH-Sr6A"]]},{"id":"NCBITaxon:165186","l":"uncultured Ruminococcus sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A1C6BFR9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C6BFR9-F1-model_v4_TED01"],["TED%3AAF-A0A1C6EIV9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1C6EIV9-F1-model_v4_TED02"],["TED%3AAF-A0A1C6EIR5-F1-model_v4_TED03","TED novel fold AF-A0A1C6EIR5-F1-model_v4_TED03"],["TED%3AAF-A0A1C6F3V5-F1-model_v4_TED02","TED novel fold AF-A0A1C6F3V5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A165186","uncultured Ruminococcus sp."]]},{"id":"NCBITaxon:1667327","l":"Klebsiella quasipneumoniae subsp. quasipneumoniae","na":1,"nb":4,"a":[["TED%3AAF-A0A208M152-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A208M152-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1463165","Klebsiella quasipneumoniae"],["NCBITaxon%3A1667327","Klebsiella quasipneumoniae subsp. quasipneumoniae"],["NCBITaxon%3A1443591","Klebsiella quasipneumoniae subsp. quasipneumoniae 18A069"],["NCBITaxon%3A1328397","Klebsiella quasipneumoniae subsp. quasipneumoniae UCICRE 14"]]},{"id":"NCBITaxon:173365","l":"Methylobacter tundripaludum","na":1,"nb":4,"a":[["TED%3AAF-A0A2S6HGL6-F1-model_v4_TED02","TED novel fold AF-A0A2S6HGL6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A173365","Methylobacter tundripaludum"],["NCBITaxon%3A1408450","Methylobacter tundripaludum 21/22"],["NCBITaxon%3A1408451","Methylobacter tundripaludum 31/32"],["NCBITaxon%3A697282","Methylobacter tundripaludum SV96"]]},{"id":"NCBITaxon:1813822","l":"Xylariales sp. No.14919","na":4,"nb":1,"a":[["TED%3AAF-A0A1V1SW90-F1-model_v4_TED01","TED novel fold AF-A0A1V1SW90-F1-model_v4_TED01"],["TED%3AAF-A0A1V1T5K0-F1-model_v4_TED01","TED novel fold AF-A0A1V1T5K0-F1-model_v4_TED01"],["TED%3AAF-A0A1V1TFW0-F1-model_v4_TED03","TED novel fold AF-A0A1V1TFW0-F1-model_v4_TED03"],["TED%3AAF-A0A1V1THH5-F1-model_v4_TED03","TED novel fold AF-A0A1V1THH5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1813822","Xylariales sp. No.14919"]]},{"id":"NCBITaxon:1852869","l":"Deltaproteobacteria bacterium ADurb.Bin207","na":4,"nb":1,"a":[["TED%3AAF-A0A1V5X5S0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5X5S0-F1-model_v4_TED01"],["TED%3AAF-A0A1V5XCK9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5XCK9-F1-model_v4_TED01"],["TED%3AAF-A0A1V5WYL9-F1-model_v4_TED01","TED novel fold AF-A0A1V5WYL9-F1-model_v4_TED01"],["TED%3AAF-A0A1V5XM89-F1-model_v4_TED02","TED novel fold AF-A0A1V5XM89-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1852869","Deltaproteobacteria bacterium ADurb.Bin207"]]},{"id":"NCBITaxon:1871086","l":"Brevundimonas sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A2W6RYY6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2W6RYY6-F1-model_v4_TED03"],["TED%3AAF-A0A326KNM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A326KNM4-F1-model_v4_TED01"],["TED%3AAF-A0A521NPA0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521NPA0-F1-model_v4_TED01"],["TED%3AAF-A0A519PPD7-F1-model_v4_TED01","TED novel fold AF-A0A519PPD7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1871086","Brevundimonas sp."]]},{"id":"NCBITaxon:187327","l":"Acidaminococcus intestini","na":1,"nb":4,"a":[["TED%3AAF-C0WBZ8-F1-model_v4_TED01","TED highly-symmetric fold AF-C0WBZ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A187327","Acidaminococcus intestini"],["NCBITaxon%3A1263033","Acidaminococcus intestini CAG:325"],["NCBITaxon%3A1120921","Acidaminococcus intestini DSM 21505"],["NCBITaxon%3A568816","Acidaminococcus intestini RyC-MR95"]]},{"id":"NCBITaxon:1882271","l":"Geodermatophilaceae bacterium","na":4,"nb":1,"a":[["TED%3AAF-A0A7V9LZB8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V9LZB8-F1-model_v4_TED01"],["TED%3AAF-A0A7W0GCM7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W0GCM7-F1-model_v4_TED01"],["TED%3AAF-A0A7W0JMU1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W0JMU1-F1-model_v4_TED01"],["TED%3AAF-A0A7W0L938-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W0L938-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1882271","Geodermatophilaceae bacterium"]]},{"id":"NCBITaxon:1887","l":"Streptomyces albogriseolus","na":1,"nb":4,"a":[["PROSITE%3APS00999","Streptomyces subtilisin-type inhibitors signature"]],"b":[["NCBITaxon%3A1887","Streptomyces albogriseolus"],["NCBITaxon%3A1093098","Streptomyces albogriseolus 1-36"],["NCBITaxon%3A1608467","Streptomyces albogriseolus subsp. cellulolyticus"],["NCBITaxon%3A3075520","Streptomyces lancefieldiae"]]},{"id":"NCBITaxon:1891926","l":"Fuerstiella marisgermanici","na":4,"nb":1,"a":[["TED%3AAF-A0A1P8WC41-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1P8WC41-F1-model_v4_TED01"],["TED%3AAF-A0A1P8WR00-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1P8WR00-F1-model_v4_TED02"],["TED%3AAF-A0A1P8WFX6-F1-model_v4_TED01","TED novel fold AF-A0A1P8WFX6-F1-model_v4_TED01"],["TED%3AAF-A0A1P8WQN4-F1-model_v4_TED02","TED novel fold AF-A0A1P8WQN4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1891926","Fuerstiella marisgermanici"]]},{"id":"NCBITaxon:1901","l":"Streptomyces clavuligerus","na":4,"nb":1,"a":[["Pfam%3APF16861","Carbamoyltransferase C-terminus"],["Pfam%3APF02543","Carbamoyltransferase N-terminus"],["Pfam%3APF01960","ArgJ family"],["Pfam%3APF07467","Beta-lactamase inhibitor (BLIP)"]],"b":[["NCBITaxon%3A1901","Streptomyces clavuligerus"]]},{"id":"NCBITaxon:1906242","l":"Tenacibaculum sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A3C1S134-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3C1S134-F1-model_v4_TED03"],["TED%3AAF-A0A354GFG9-F1-model_v4_TED02","TED novel fold AF-A0A354GFG9-F1-model_v4_TED02"],["TED%3AAF-A0A354GH92-F1-model_v4_TED03","TED novel fold AF-A0A354GH92-F1-model_v4_TED03"],["TED%3AAF-A0A3C1RZP3-F1-model_v4_TED01","TED novel fold AF-A0A3C1RZP3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1906242","Tenacibaculum sp."]]},{"id":"NCBITaxon:1909295","l":"Solirubrobacterales bacterium","na":4,"nb":1,"a":[["TED%3AAF-A0A2W5YWX4-F1-model_v4_TED01","TED novel fold AF-A0A2W5YWX4-F1-model_v4_TED01"],["TED%3AAF-A0A7V9Q330-F1-model_v4_TED01","TED novel fold AF-A0A7V9Q330-F1-model_v4_TED01"],["TED%3AAF-A0A7W0TI55-F1-model_v4_TED01","TED novel fold AF-A0A7W0TI55-F1-model_v4_TED01"],["TED%3AAF-A0A7W1S1I9-F1-model_v4_TED02","TED novel fold AF-A0A7W1S1I9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1909295","Solirubrobacterales bacterium"]]},{"id":"NCBITaxon:1944","l":"Streptomyces halstedii","na":1,"nb":4,"a":[["Pfam%3APF09277","Erythronolide synthase, docking"]],"b":[["NCBITaxon%3A68212","Streptomyces graminofaciens"],["NCBITaxon%3A1909","Streptomyces griseolus"],["NCBITaxon%3A1944","Streptomyces halstedii"],["NCBITaxon%3A178788","Streptomyces halstedii subsp. scabies"]]},{"id":"NCBITaxon:1961369","l":"Thermofilum sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A7C2LAY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C2LAY6-F1-model_v4_TED01"],["TED%3AAF-A0A831U077-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A831U077-F1-model_v4_TED01"],["TED%3AAF-A0A832LZK9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A832LZK9-F1-model_v4_TED01"],["TED%3AAF-A0A832DVC5-F1-model_v4_TED02","TED novel fold AF-A0A832DVC5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1961369","Thermofilum sp."]]},{"id":"NCBITaxon:1970323","l":"Bdellovibrio sp. 28-41-41","na":4,"nb":1,"a":[["TED%3AAF-A0A258VH67-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A258VH67-F1-model_v4_TED01"],["TED%3AAF-A0A258VZ35-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A258VZ35-F1-model_v4_TED01"],["TED%3AAF-A0A258W5J6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A258W5J6-F1-model_v4_TED01"],["TED%3AAF-A0A258W0Q9-F1-model_v4_TED01","TED novel fold AF-A0A258W0Q9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970323","Bdellovibrio sp. 28-41-41"]]},{"id":"NCBITaxon:2020412","l":"Allobosea sp. ANAM02","na":4,"nb":1,"a":[["TED%3AAF-A0A6F8UU50-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6F8UU50-F1-model_v4_TED01"],["TED%3AAF-A0A6F8UZT3-F1-model_v4_TED01","TED novel fold AF-A0A6F8UZT3-F1-model_v4_TED01"],["TED%3AAF-A0A6F8V204-F1-model_v4_TED02","TED novel fold AF-A0A6F8V204-F1-model_v4_TED02"],["TED%3AAF-A0A6F8V2X3-F1-model_v4_TED02","TED novel fold AF-A0A6F8V2X3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2020412","Allobosea sp. ANAM02"]]},{"id":"NCBITaxon:2020862","l":"Halobacteriovorax sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A2E6H9I1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E6H9I1-F1-model_v4_TED01"],["TED%3AAF-A0A2D5YKQ7-F1-model_v4_TED01","TED novel fold AF-A0A2D5YKQ7-F1-model_v4_TED01"],["TED%3AAF-A0A2E6H4R2-F1-model_v4_TED01","TED novel fold AF-A0A2E6H4R2-F1-model_v4_TED01"],["TED%3AAF-A0A2E6H7Z0-F1-model_v4_TED01","TED novel fold AF-A0A2E6H7Z0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2020862","Halobacteriovorax sp."]]},{"id":"NCBITaxon:2024824","l":"Balneola sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A3D4V172-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D4V172-F1-model_v4_TED01"],["TED%3AAF-A0A2E6N6U3-F1-model_v4_TED03","TED novel fold AF-A0A2E6N6U3-F1-model_v4_TED03"],["TED%3AAF-A0A3D4V1W0-F1-model_v4_TED04","TED novel fold AF-A0A3D4V1W0-F1-model_v4_TED04"],["TED%3AAF-A0A3M8G8Y9-F1-model_v4_TED02","TED novel fold AF-A0A3M8G8Y9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2024824","Balneola sp."]]},{"id":"NCBITaxon:2024843","l":"Candidatus Nitrosopumilus sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A7K4F371-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K4F371-F1-model_v4_TED01"],["TED%3AAF-A0A838N9C6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A838N9C6-F1-model_v4_TED01"],["TED%3AAF-A0A836SSE3-F1-model_v4_TED01","TED novel fold AF-A0A836SSE3-F1-model_v4_TED01"],["TED%3AAF-A0A843BS33-F1-model_v4_TED01","TED novel fold AF-A0A843BS33-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024843","Candidatus Nitrosopumilus sp."]]},{"id":"NCBITaxon:2024848","l":"Parvibaculum sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A2D4VKC7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D4VKC7-F1-model_v4_TED01"],["TED%3AAF-A0A2D8XBJ5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2D8XBJ5-F1-model_v4_TED02"],["TED%3AAF-A0A2D4VKJ3-F1-model_v4_TED01","TED novel fold AF-A0A2D4VKJ3-F1-model_v4_TED01"],["TED%3AAF-A0A2D8XB08-F1-model_v4_TED01","TED novel fold AF-A0A2D8XB08-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024848","Parvibaculum sp."]]},{"id":"NCBITaxon:2024849","l":"Candidatus Pelagibacter sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A2D7PDP1-F1-model_v4_TED01","TED novel fold AF-A0A2D7PDP1-F1-model_v4_TED01"],["TED%3AAF-A0A2D7PF68-F1-model_v4_TED01","TED novel fold AF-A0A2D7PF68-F1-model_v4_TED01"],["TED%3AAF-A0A2E6T7S4-F1-model_v4_TED01","TED novel fold AF-A0A2E6T7S4-F1-model_v4_TED01"],["TED%3AAF-A0A2E6TB82-F1-model_v4_TED01","TED novel fold AF-A0A2E6TB82-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024849","Candidatus Pelagibacter sp."]]},{"id":"NCBITaxon:2026740","l":"Flammeovirgaceae bacterium","na":4,"nb":1,"a":[["TED%3AAF-A0A7L9BKK8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7L9BKK8-F1-model_v4_TED02"],["TED%3AAF-A0A2D6AK53-F1-model_v4_TED03","TED novel fold AF-A0A2D6AK53-F1-model_v4_TED03"],["TED%3AAF-A0A2D6AK65-F1-model_v4_TED01","TED novel fold AF-A0A2D6AK65-F1-model_v4_TED01"],["TED%3AAF-A0A2D6B1Q0-F1-model_v4_TED03","TED novel fold AF-A0A2D6B1Q0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2026740","Flammeovirgaceae bacterium"]]},{"id":"NCBITaxon:2026764","l":"Nanobdellota archaeon","na":4,"nb":1,"a":[["TED%3AAF-A0A522EUE5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A522EUE5-F1-model_v4_TED02"],["TED%3AAF-A0A6B2CCZ1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6B2CCZ1-F1-model_v4_TED01"],["TED%3AAF-A0A833A267-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A833A267-F1-model_v4_TED01"],["TED%3AAF-A0A7J4KXA8-F1-model_v4_TED02","TED novel fold AF-A0A7J4KXA8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026764","Nanobdellota archaeon"]]},{"id":"NCBITaxon:2044941","l":"Flavobacteriia bacterium","na":4,"nb":1,"a":[["TED%3AAF-A0A7Y7CXE7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y7CXE7-F1-model_v4_TED01"],["TED%3AAF-A0A432IP99-F1-model_v4_TED01","TED novel fold AF-A0A432IP99-F1-model_v4_TED01"],["TED%3AAF-A0A432IYJ1-F1-model_v4_TED01","TED novel fold AF-A0A432IYJ1-F1-model_v4_TED01"],["TED%3AAF-A0A7Y6YH70-F1-model_v4_TED01","TED novel fold AF-A0A7Y6YH70-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2044941","Flavobacteriia bacterium"]]},{"id":"NCBITaxon:2045","l":"Pimelobacter simplex","na":4,"nb":1,"a":[["Pfam%3APF00775","Dioxygenase"],["Pfam%3APF04444","Catechol dioxygenase N terminus"],["PROSITE%3APS00083","Intradiol ring-cleavage dioxygenases signature"],["TED%3AAF-A0A4Y3NBY1-F1-model_v4_TED01","TED novel fold AF-A0A4Y3NBY1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2045","Pimelobacter simplex"]]},{"id":"NCBITaxon:2049040","l":"Roseburia sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A351R2S0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A351R2S0-F1-model_v4_TED01"],["TED%3AAF-A0A3D2PUE7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D2PUE7-F1-model_v4_TED02"],["TED%3AAF-A0A3D5LE36-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D5LE36-F1-model_v4_TED01"],["TED%3AAF-A0A3B9D3T9-F1-model_v4_TED02","TED novel fold AF-A0A3B9D3T9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2049040","Roseburia sp."]]},{"id":"NCBITaxon:2049048","l":"Rikenellaceae bacterium","na":4,"nb":1,"a":[["TED%3AAF-A0A3D6B1M6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D6B1M6-F1-model_v4_TED02"],["TED%3AAF-A0A351AT40-F1-model_v4_TED03","TED novel fold AF-A0A351AT40-F1-model_v4_TED03"],["TED%3AAF-A0A355U3N1-F1-model_v4_TED01","TED novel fold AF-A0A355U3N1-F1-model_v4_TED01"],["TED%3AAF-A0A3D0F348-F1-model_v4_TED02","TED novel fold AF-A0A3D0F348-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2049048","Rikenellaceae bacterium"]]},{"id":"NCBITaxon:2051955","l":"Methylobacter sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A2P5LKB3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2P5LKB3-F1-model_v4_TED02"],["TED%3AAF-A0A522WVN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A522WVN3-F1-model_v4_TED01"],["TED%3AAF-A0A2P5M384-F1-model_v4_TED01","TED novel fold AF-A0A2P5M384-F1-model_v4_TED01"],["TED%3AAF-A0A2S5Q8H2-F1-model_v4_TED02","TED novel fold AF-A0A2S5Q8H2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2051955","Methylobacter sp."]]},{"id":"NCBITaxon:2051956","l":"Methylotenera sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A849UFG5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A849UFG5-F1-model_v4_TED01"],["TED%3AAF-A0A2P5LDN0-F1-model_v4_TED01","TED novel fold AF-A0A2P5LDN0-F1-model_v4_TED01"],["TED%3AAF-A0A2S5L9P9-F1-model_v4_TED02","TED novel fold AF-A0A2S5L9P9-F1-model_v4_TED02"],["TED%3AAF-A0A7Y4ZX98-F1-model_v4_TED02","TED novel fold AF-A0A7Y4ZX98-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2051956","Methylotenera sp."]]},{"id":"NCBITaxon:2052139","l":"Patescibacteria group bacterium","na":4,"nb":1,"a":[["TED%3AAF-A0A522U5G3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A522U5G3-F1-model_v4_TED02"],["TED%3AAF-A0A522W7N7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A522W7N7-F1-model_v4_TED02"],["TED%3AAF-A0A521ZPU3-F1-model_v4_TED02","TED novel fold AF-A0A521ZPU3-F1-model_v4_TED02"],["TED%3AAF-A0A522E927-F1-model_v4_TED04","TED novel fold AF-A0A522E927-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2052139","Patescibacteria group bacterium"]]},{"id":"NCBITaxon:2052159","l":"Coriobacteriia bacterium","na":4,"nb":1,"a":[["TED%3AAF-A0A2V2EFX1-F1-model_v4_TED01","TED novel fold AF-A0A2V2EFX1-F1-model_v4_TED01"],["TED%3AAF-A0A316P0Z8-F1-model_v4_TED01","TED novel fold AF-A0A316P0Z8-F1-model_v4_TED01"],["TED%3AAF-A0A316RTQ8-F1-model_v4_TED02","TED novel fold AF-A0A316RTQ8-F1-model_v4_TED02"],["TED%3AAF-A0A316RU81-F1-model_v4_TED01","TED novel fold AF-A0A316RU81-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052159","Coriobacteriia bacterium"]]},{"id":"NCBITaxon:2052160","l":"Fibrobacterota bacterium","na":4,"nb":1,"a":[["TED%3AAF-A0A3C0PGL2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3C0PGL2-F1-model_v4_TED03"],["TED%3AAF-A0A7T9E906-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T9E906-F1-model_v4_TED01"],["TED%3AAF-A0A3C1WKF1-F1-model_v4_TED02","TED novel fold AF-A0A3C1WKF1-F1-model_v4_TED02"],["TED%3AAF-A0A7T9E9C4-F1-model_v4_TED01","TED novel fold AF-A0A7T9E9C4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052160","Fibrobacterota bacterium"]]},{"id":"NCBITaxon:2053493","l":"Candidatus Acetothermia bacterium","na":4,"nb":1,"a":[["TED%3AAF-A0A662EH56-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A662EH56-F1-model_v4_TED03"],["TED%3AAF-A0A662F5F1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A662F5F1-F1-model_v4_TED02"],["TED%3AAF-A0A7C5LAP1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C5LAP1-F1-model_v4_TED02"],["TED%3AAF-A0A7V5YI91-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V5YI91-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053493","Candidatus Acetothermia bacterium"]]},{"id":"NCBITaxon:2073116","l":"Holophagae bacterium","na":4,"nb":1,"a":[["TED%3AAF-A0A7Z1R0H2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Z1R0H2-F1-model_v4_TED01"],["TED%3AAF-A0A7X7YF04-F1-model_v4_TED01","TED novel fold AF-A0A7X7YF04-F1-model_v4_TED01"],["TED%3AAF-A0A7Z1R2K0-F1-model_v4_TED02","TED novel fold AF-A0A7Z1R2K0-F1-model_v4_TED02"],["TED%3AAF-A0A7Z1TS59-F1-model_v4_TED04","TED novel fold AF-A0A7Z1TS59-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2073116","Holophagae bacterium"]]},{"id":"NCBITaxon:2081706","l":"Bacteriovoracaceae bacterium","na":4,"nb":1,"a":[["TED%3AAF-A0A849T5B5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A849T5B5-F1-model_v4_TED01"],["TED%3AAF-A0A849TDV2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A849TDV2-F1-model_v4_TED01"],["TED%3AAF-A0A849SZI0-F1-model_v4_TED02","TED novel fold AF-A0A849SZI0-F1-model_v4_TED02"],["TED%3AAF-A0A849T2V8-F1-model_v4_TED01","TED novel fold AF-A0A849T2V8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2081706","Bacteriovoracaceae bacterium"]]},{"id":"NCBITaxon:2082293","l":"Hyaloscypha hepaticicola","na":4,"nb":1,"a":[["TED%3AAF-A0A2J6PIA1-F1-model_v4_TED01","TED novel fold AF-A0A2J6PIA1-F1-model_v4_TED01"],["TED%3AAF-A0A2J6PLY5-F1-model_v4_TED01","TED novel fold AF-A0A2J6PLY5-F1-model_v4_TED01"],["TED%3AAF-A0A2J6PXD2-F1-model_v4_TED02","TED novel fold AF-A0A2J6PXD2-F1-model_v4_TED02"],["TED%3AAF-A0A2J6Q0I5-F1-model_v4_TED04","TED novel fold AF-A0A2J6Q0I5-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2082293","Hyaloscypha hepaticicola"]]},{"id":"NCBITaxon:2098","l":"Metamycoplasma hominis","na":1,"nb":4,"a":[["TED%3AAF-A0A6A8Q3G2-F1-model_v4_TED02","TED novel fold AF-A0A6A8Q3G2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2098","Metamycoplasma hominis"],["NCBITaxon%3A347256","Metamycoplasma hominis ATCC 23114"],["NCBITaxon%3A1267000","Metamycoplasma hominis ATCC 27545"],["NCBITaxon%3A287","Pseudomonas aeruginosa"]]},{"id":"NCBITaxon:210454","l":"Grammatophora oceanica","na":4,"nb":1,"a":[["TED%3AAF-A0A7S1UN71-F1-model_v4_TED01","TED novel fold AF-A0A7S1UN71-F1-model_v4_TED01"],["TED%3AAF-A0A7S1UXS3-F1-model_v4_TED01","TED novel fold AF-A0A7S1UXS3-F1-model_v4_TED01"],["TED%3AAF-A0A7S1YCZ6-F1-model_v4_TED02","TED novel fold AF-A0A7S1YCZ6-F1-model_v4_TED02"],["TED%3AAF-A0A7S1YLG8-F1-model_v4_TED02","TED novel fold AF-A0A7S1YLG8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A210454","Grammatophora oceanica"]]},{"id":"NCBITaxon:2108360","l":"Microvirga tunisiensis","na":4,"nb":1,"a":[["TED%3AAF-A0A5N7MHB4-F1-model_v4_TED01","TED novel fold AF-A0A5N7MHB4-F1-model_v4_TED01"],["TED%3AAF-A0A5N7MK37-F1-model_v4_TED03","TED novel fold AF-A0A5N7MK37-F1-model_v4_TED03"],["TED%3AAF-A0A5N7MK85-F1-model_v4_TED03","TED novel fold AF-A0A5N7MK85-F1-model_v4_TED03"],["TED%3AAF-A0A5N7MTB9-F1-model_v4_TED01","TED novel fold AF-A0A5N7MTB9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2108360","Microvirga tunisiensis"]]},{"id":"NCBITaxon:2109","l":"Mycoplasmopsis synoviae","na":1,"nb":4,"a":[["TED%3AAF-A0A3B0PIE0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3B0PIE0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2109","Mycoplasmopsis synoviae"],["NCBITaxon%3A262723","Mycoplasmopsis synoviae 53"],["NCBITaxon%3A1267001","Mycoplasmopsis synoviae ATCC 25204"],["NCBITaxon%3A1148512","Mycoplasmopsis synoviae GX11-T"]]},{"id":"NCBITaxon:211110","l":"Streptococcus agalactiae NEM316","na":4,"nb":1,"a":[["Pfam%3APF22637","BppA domain 1"],["Pfam%3APF21461","Hyaluronate lyase, N-terminal beta-sheet domain"],["Pfam%3APF12558","ATP-binding cassette cobalt transporter"],["Pfam%3APF07470","Glycosyl Hydrolase Family 88"]],"b":[["NCBITaxon%3A211110","Streptococcus agalactiae NEM316"]]},{"id":"NCBITaxon:215","l":"Helicobacter fennelliae","na":1,"nb":4,"a":[["TED%3AAF-A0A2X3EJ56-F1-model_v4_TED01","TED novel fold AF-A0A2X3EJ56-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A213","Helicobacter cinaedi"],["NCBITaxon%3A537971","Helicobacter cinaedi CCUG 18818 = ATCC BAA-847"],["NCBITaxon%3A215","Helicobacter fennelliae"],["NCBITaxon%3A1325130","Helicobacter fennelliae MRY12-0050"]]},{"id":"NCBITaxon:216820","l":"Cyclophora tenuis","na":4,"nb":1,"a":[["TED%3AAF-A0A7S1GP11-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1GP11-F1-model_v4_TED01"],["TED%3AAF-A0A6U1R8I6-F1-model_v4_TED01","TED novel fold AF-A0A6U1R8I6-F1-model_v4_TED01"],["TED%3AAF-A0A7S1GLN4-F1-model_v4_TED01","TED novel fold AF-A0A7S1GLN4-F1-model_v4_TED01"],["TED%3AAF-A0A7S1GMK2-F1-model_v4_TED01","TED novel fold AF-A0A7S1GMK2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A216820","Cyclophora tenuis"]]},{"id":"NCBITaxon:218490","l":"Polaribacter butkevichii","na":4,"nb":1,"a":[["TED%3AAF-A0A2P6C707-F1-model_v4_TED02","TED novel fold AF-A0A2P6C707-F1-model_v4_TED02"],["TED%3AAF-A0A2P6CAG7-F1-model_v4_TED01","TED novel fold AF-A0A2P6CAG7-F1-model_v4_TED01"],["TED%3AAF-A0A2P6CCV8-F1-model_v4_TED01","TED novel fold AF-A0A2P6CCV8-F1-model_v4_TED01"],["TED%3AAF-A0A2P6CFF0-F1-model_v4_TED01","TED novel fold AF-A0A2P6CFF0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A218490","Polaribacter butkevichii"]]},{"id":"NCBITaxon:221103","l":"Moniliophthora roreri","na":4,"nb":1,"a":[["TED%3AAF-A0A0W0EY20-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0W0EY20-F1-model_v4_TED01"],["TED%3AAF-A0A0W0GBN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0W0GBN7-F1-model_v4_TED01"],["TED%3AAF-A0A0W0FN93-F1-model_v4_TED01","TED novel fold AF-A0A0W0FN93-F1-model_v4_TED01"],["TED%3AAF-A0A0W0G2E5-F1-model_v4_TED02","TED novel fold AF-A0A0W0G2E5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A221103","Moniliophthora roreri"]]},{"id":"NCBITaxon:224915","l":"Buchnera aphidicola str. Bp (Baizongia pistaciae)","na":4,"nb":1,"a":[["Pfam%3APF26016","Exonuclease I C-terminal domain"],["Pfam%3APF08411","Exonuclease I SH3-like domain"],["Pfam%3APF09849","Uncharacterized protein conserved in bacteria (DUF2076)"],["Pfam%3APF06481","COX Aromatic Rich Motif"]],"b":[["NCBITaxon%3A224915","Buchnera aphidicola str. Bp (Baizongia pistaciae)"]]},{"id":"NCBITaxon:2250254","l":"Thermococci archaeon","na":4,"nb":1,"a":[["TED%3AAF-A0A497HYZ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A497HYZ8-F1-model_v4_TED01"],["TED%3AAF-A0A662PGI5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A662PGI5-F1-model_v4_TED03"],["TED%3AAF-A0A662PJ18-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A662PJ18-F1-model_v4_TED01"],["TED%3AAF-A0A662P955-F1-model_v4_TED01","TED novel fold AF-A0A662P955-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2250254","Thermococci archaeon"]]},{"id":"NCBITaxon:2250256","l":"Candidatus Altarchaeales archaeon","na":4,"nb":1,"a":[["TED%3AAF-A0A497RVP9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A497RVP9-F1-model_v4_TED01"],["TED%3AAF-A0A497S7B6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A497S7B6-F1-model_v4_TED02"],["TED%3AAF-A0A7C0XRN1-F1-model_v4_TED02","TED novel fold AF-A0A7C0XRN1-F1-model_v4_TED02"],["TED%3AAF-A0A842UHS2-F1-model_v4_TED05","TED novel fold AF-A0A842UHS2-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2250256","Candidatus Altarchaeales archaeon"]]},{"id":"NCBITaxon:2250258","l":"Archaeoglobales archaeon","na":4,"nb":1,"a":[["TED%3AAF-A0A662W9Y5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A662W9Y5-F1-model_v4_TED01"],["TED%3AAF-A0A662VTF3-F1-model_v4_TED01","TED novel fold AF-A0A662VTF3-F1-model_v4_TED01"],["TED%3AAF-A0A662VW03-F1-model_v4_TED01","TED novel fold AF-A0A662VW03-F1-model_v4_TED01"],["TED%3AAF-A0A662W350-F1-model_v4_TED01","TED novel fold AF-A0A662W350-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2250258","Archaeoglobales archaeon"]]},{"id":"NCBITaxon:2250276","l":"Hadesarchaea archaeon","na":4,"nb":1,"a":[["TED%3AAF-A0A523AS63-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A523AS63-F1-model_v4_TED01"],["TED%3AAF-A0A523AZE0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A523AZE0-F1-model_v4_TED02"],["TED%3AAF-A0A7C3Y088-F1-model_v4_TED04","TED novel fold AF-A0A7C3Y088-F1-model_v4_TED04"],["TED%3AAF-A0A7J2J8X3-F1-model_v4_TED01","TED novel fold AF-A0A7J2J8X3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2250276","Hadesarchaea archaeon"]]},{"id":"NCBITaxon:2262","l":"Pyrococcus woesei","na":4,"nb":1,"a":[["Pfam%3APF01113","Dihydrodipicolinate reductase, N-terminus"],["Pfam%3APF08967","Putative type 4B encapsulin shell protein"],["Pfam%3APF01889","Archaeal lipoprotein biogenesis component AliA/AliB-like"],["Pfam%3APF11667","Putative zincin peptidase"]],"b":[["NCBITaxon%3A2262","Pyrococcus woesei"]]},{"id":"NCBITaxon:2283092","l":"Pyrinomonadaceae bacterium","na":4,"nb":1,"a":[["TED%3AAF-A0A7W0ZNM8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W0ZNM8-F1-model_v4_TED01"],["TED%3AAF-A0A838MX18-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A838MX18-F1-model_v4_TED01"],["TED%3AAF-A0A7W1JDR7-F1-model_v4_TED02","TED novel fold AF-A0A7W1JDR7-F1-model_v4_TED02"],["TED%3AAF-A0A838GSN0-F1-model_v4_TED01","TED novel fold AF-A0A838GSN0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2283092","Pyrinomonadaceae bacterium"]]},{"id":"NCBITaxon:230819","l":"Coprinopsis marcescibilis","na":4,"nb":1,"a":[["TED%3AAF-A0A5C3KJQ3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5C3KJQ3-F1-model_v4_TED02"],["TED%3AAF-A0A5C3KKH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C3KKH3-F1-model_v4_TED01"],["TED%3AAF-A0A5C3K9L8-F1-model_v4_TED01","TED novel fold AF-A0A5C3K9L8-F1-model_v4_TED01"],["TED%3AAF-A0A5C3KRI0-F1-model_v4_TED01","TED novel fold AF-A0A5C3KRI0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A230819","Coprinopsis marcescibilis"]]},{"id":"NCBITaxon:242231","l":"Neisseria gonorrhoeae FA 1090","na":4,"nb":1,"a":[["Pfam%3APF17845","FbpC C-terminal regulatory nucleotide binding domain"],["Pfam%3APF22443","FbpC-like, regulatory domain"],["Pfam%3APF22513","Antitoxin FitA-like, ribbon-helix-helix"],["Pfam%3APF08750","CNP1-like family"]],"b":[["NCBITaxon%3A242231","Neisseria gonorrhoeae FA 1090"]]},{"id":"NCBITaxon:244","l":"Planomicrobium okeanokoites","na":4,"nb":1,"a":[["Pfam%3APF09254","FokI, cleavage domain"],["Pfam%3APF02981","FokI, recognition domain, subdomain 1"],["Pfam%3APF16902","FokI, D3 domain"],["Pfam%3APF02980","FokI, recognition domain, subdomain 2"]],"b":[["NCBITaxon%3A244","Planomicrobium okeanokoites"]]},{"id":"NCBITaxon:2510337","l":"Sandaracinaceae bacterium","na":4,"nb":1,"a":[["TED%3AAF-A0A520PSZ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A520PSZ8-F1-model_v4_TED01"],["TED%3AAF-A0A520QL44-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A520QL44-F1-model_v4_TED03"],["TED%3AAF-A0A520QBZ2-F1-model_v4_TED03","TED novel fold AF-A0A520QBZ2-F1-model_v4_TED03"],["TED%3AAF-A0A847F4I9-F1-model_v4_TED01","TED novel fold AF-A0A847F4I9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2510337","Sandaracinaceae bacterium"]]},{"id":"NCBITaxon:2527983","l":"Caulifigura coniformis","na":4,"nb":1,"a":[["TED%3AAF-A0A517S890-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A517S890-F1-model_v4_TED01"],["TED%3AAF-A0A517SC12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A517SC12-F1-model_v4_TED01"],["TED%3AAF-A0A517SC47-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A517SC47-F1-model_v4_TED02"],["TED%3AAF-A0A517SDF0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A517SDF0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2527983","Caulifigura coniformis"]]},{"id":"NCBITaxon:2529384","l":"Roseibium sp. RKSG952","na":4,"nb":1,"a":[["TED%3AAF-A0A6N7ZP27-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N7ZP27-F1-model_v4_TED01"],["TED%3AAF-A0A6N7ZQ59-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N7ZQ59-F1-model_v4_TED01"],["TED%3AAF-A0A6N7ZR90-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N7ZR90-F1-model_v4_TED01"],["TED%3AAF-A0A6N7ZZ23-F1-model_v4_TED01","TED novel fold AF-A0A6N7ZZ23-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2529384","Roseibium sp. RKSG952"]]},{"id":"NCBITaxon:258","l":"Sphingobacterium spiritivorum","na":1,"nb":4,"a":[["TED%3AAF-A0A380CHI8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A380CHI8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A649196","Sphingobacterium hotanense"],["NCBITaxon%3A258","Sphingobacterium spiritivorum"],["NCBITaxon%3A525372","Sphingobacterium spiritivorum ATCC 33300"],["NCBITaxon%3A525373","Sphingobacterium spiritivorum ATCC 33861"]]},{"id":"NCBITaxon:258594","l":"Rhodopseudomonas palustris CGA009","na":4,"nb":1,"a":[["Pfam%3APF01322","Cytochrome C'"],["PROSITE%3APS00969","Antenna complexes beta subunits signature"],["PROSITE%3APS00936","Ribosomal protein L35 signature"],["PROSITE%3APS01181","Ribosomal protein S21 signature"]],"b":[["NCBITaxon%3A258594","Rhodopseudomonas palustris CGA009"]]},{"id":"NCBITaxon:2587412","l":"Podospora anserina","na":4,"nb":1,"a":[["Pfam%3APF08509","Adenylate cyclase G-alpha binding domain"],["Pfam%3APF14479","Prion-inhibition and propagation"],["Pfam%3APF06985","Heterokaryon incompatibility protein (HET)"],["Pfam%3APF11558","Het-s 218-289"]],"b":[["NCBITaxon%3A2587412","Podospora anserina"]]},{"id":"NCBITaxon:2594798","l":"Candidatus Nanohaloarchaea archaeon","na":4,"nb":1,"a":[["TED%3AAF-A0A848EKT4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A848EKT4-F1-model_v4_TED01"],["TED%3AAF-A0A849QF42-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A849QF42-F1-model_v4_TED01"],["TED%3AAF-A0A842K9G1-F1-model_v4_TED04","TED novel fold AF-A0A842K9G1-F1-model_v4_TED04"],["TED%3AAF-A0A849QBL9-F1-model_v4_TED02","TED novel fold AF-A0A849QBL9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2594798","Candidatus Nanohaloarchaea archaeon"]]},{"id":"NCBITaxon:2607767","l":"Oscillatoria sp. SIO1A7","na":4,"nb":1,"a":[["TED%3AAF-A0A7C9PR93-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C9PR93-F1-model_v4_TED01"],["TED%3AAF-A0A7C9PUP6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C9PUP6-F1-model_v4_TED02"],["TED%3AAF-A0A7C9TUK3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C9TUK3-F1-model_v4_TED01"],["TED%3AAF-A0A7C9PXN7-F1-model_v4_TED01","TED novel fold AF-A0A7C9PXN7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607767","Oscillatoria sp. SIO1A7"]]},{"id":"NCBITaxon:262316","l":"Mycobacterium avium subsp. paratuberculosis K-10","na":4,"nb":1,"a":[["Pfam%3APF19288","CofH/MqnC C-terminal region"],["Pfam%3APF03601","Conserved hypothetical protein 698"],["PROSITE%3APS60002","Phosphoketolase signature 1"],["PROSITE%3APS60003","Phosphoketolase signature 2"]],"b":[["NCBITaxon%3A262316","Mycobacterium avium subsp. paratuberculosis K-10"]]},{"id":"NCBITaxon:265554","l":"Amphora coffeiformis","na":4,"nb":1,"a":[["TED%3AAF-A0A7S3L6U4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3L6U4-F1-model_v4_TED01"],["TED%3AAF-A0A7S3L8J1-F1-model_v4_TED01","TED novel fold AF-A0A7S3L8J1-F1-model_v4_TED01"],["TED%3AAF-A0A7S3LC07-F1-model_v4_TED02","TED novel fold AF-A0A7S3LC07-F1-model_v4_TED02"],["TED%3AAF-A0A7S3P7C7-F1-model_v4_TED01","TED novel fold AF-A0A7S3P7C7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A265554","Amphora coffeiformis"]]},{"id":"NCBITaxon:266149","l":"Pseudocohnilembus persalinus","na":4,"nb":1,"a":[["TED%3AAF-A0A0V0Q971-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0V0Q971-F1-model_v4_TED01"],["TED%3AAF-A0A0V0QFC0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0V0QFC0-F1-model_v4_TED02"],["TED%3AAF-A0A0V0QUL9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0V0QUL9-F1-model_v4_TED02"],["TED%3AAF-A0A0V0QLH5-F1-model_v4_TED02","TED novel fold AF-A0A0V0QLH5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A266149","Pseudocohnilembus persalinus"]]},{"id":"NCBITaxon:2666346","l":"Candidatus Poseidoniaceae archaeon","na":4,"nb":1,"a":[["TED%3AAF-A0A7J4QR94-F1-model_v4_TED01","TED novel fold AF-A0A7J4QR94-F1-model_v4_TED01"],["TED%3AAF-A0A7J4SJK8-F1-model_v4_TED06","TED novel fold AF-A0A7J4SJK8-F1-model_v4_TED06"],["TED%3AAF-A0A7J4T2G3-F1-model_v4_TED01","TED novel fold AF-A0A7J4T2G3-F1-model_v4_TED01"],["TED%3AAF-A0A7J4T4C8-F1-model_v4_TED01","TED novel fold AF-A0A7J4T4C8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2666346","Candidatus Poseidoniaceae archaeon"]]},{"id":"NCBITaxon:267608","l":"Ralstonia pseudosolanacearum GMI1000","na":4,"nb":1,"a":[["Pfam%3APF13473","Cupredoxin-like domain"],["Pfam%3APF09483","Type III secretion protein (HpaP)"],["Pfam%3APF14897","EpsG family"],["Pfam%3APF03377","TAL effector repeat"]],"b":[["NCBITaxon%3A267608","Ralstonia pseudosolanacearum GMI1000"]]},{"id":"NCBITaxon:2691037","l":"Candidatus Methanoperedentaceae archaeon GB37","na":4,"nb":1,"a":[["TED%3AAF-A0A812A6G3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812A6G3-F1-model_v4_TED01"],["TED%3AAF-A0A7R9N5L5-F1-model_v4_TED02","TED novel fold AF-A0A7R9N5L5-F1-model_v4_TED02"],["TED%3AAF-A0A7R9N8X7-F1-model_v4_TED02","TED novel fold AF-A0A7R9N8X7-F1-model_v4_TED02"],["TED%3AAF-A0A7R9NFN0-F1-model_v4_TED03","TED novel fold AF-A0A7R9NFN0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2691037","Candidatus Methanoperedentaceae archaeon GB37"]]},{"id":"NCBITaxon:269237","l":"uncultured Sulfurovum sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A6S6S605-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6S6S605-F1-model_v4_TED02"],["TED%3AAF-A0A6S6SGE5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6S6SGE5-F1-model_v4_TED01"],["TED%3AAF-A0A6S6TSW6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6S6TSW6-F1-model_v4_TED02"],["TED%3AAF-A0A6S6RYD3-F1-model_v4_TED01","TED novel fold AF-A0A6S6RYD3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A269237","uncultured Sulfurovum sp."]]},{"id":"NCBITaxon:269797","l":"Methanosarcina barkeri str. Fusaro","na":4,"nb":1,"a":[["Pfam%3APF27274","Coenzyme F430 synthetase CfbE, C-terminal domain"],["Pfam%3APF02552","CO dehydrogenase beta subunit/acetyl-CoA synthase epsilon subunit"],["Pfam%3APF09505","Dimethylamine methyltransferase (Dimeth_PyL)"],["PROSITE%3APS00507","Nickel-dependent hydrogenases large subunit signature 1"]],"b":[["NCBITaxon%3A269797","Methanosarcina barkeri str. Fusaro"]]},{"id":"NCBITaxon:269800","l":"Thermobifida fusca YX","na":4,"nb":1,"a":[["Pfam%3APF20628","Dyp-type peroxidase, C-terminal"],["Pfam%3APF04261","Dyp-type peroxidase, N-terminal"],["Pfam%3APF18374","Enolase N-terminal domain-like"],["PROSITE%3APS00909","Mandelate racemase / muconate lactonizing enzyme family signature 2"]],"b":[["NCBITaxon%3A269800","Thermobifida fusca YX"]]},{"id":"NCBITaxon:2711231","l":"Roseimicrobium sp. ORNL1","na":4,"nb":1,"a":[["TED%3AAF-A0A6G6K4X0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A6G6K4X0-F1-model_v4_TED03"],["TED%3AAF-A0A6G6KCX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6G6KCX2-F1-model_v4_TED01"],["TED%3AAF-A0A6G6KEM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6G6KEM3-F1-model_v4_TED01"],["TED%3AAF-A0A6G6K9L4-F1-model_v4_TED01","TED novel fold AF-A0A6G6K9L4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2711231","Roseimicrobium sp. ORNL1"]]},{"id":"NCBITaxon:2725","l":"unidentified prokaryotic organism","na":4,"nb":1,"a":[["Pfam%3APF01036","Bacteriorhodopsin-like protein"],["Pfam%3APF19328","2,4-diaminopentanoate dehydrogenase C-terminal domain"],["PROSITE%3APS00950","Bacterial rhodopsins signature 1"],["Pfam%3APF19964","Effector-associated domain 11"]],"b":[["NCBITaxon%3A2725","unidentified prokaryotic organism"]]},{"id":"NCBITaxon:272620","l":"Klebsiella pneumoniae subsp. pneumoniae MGH 78578","na":4,"nb":1,"a":[["Pfam%3APF04336","Acyl carrier protein phosphodiesterase"],["Pfam%3APF17948","DnaT DNA-binding domain"],["PROSITE%3APS00839","Uroporphyrin-III C-methyltransferase signature 1"],["PROSITE%3APS00840","Uroporphyrin-III C-methyltransferase signature 2"]],"b":[["NCBITaxon%3A272620","Klebsiella pneumoniae subsp. pneumoniae MGH 78578"]]},{"id":"NCBITaxon:27292","l":"Saccharomyces pastorianus","na":1,"nb":4,"a":[["TED%3AAF-A0A6C1DP73-F1-model_v4_TED02","TED novel fold AF-A0A6C1DP73-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A27292","Saccharomyces pastorianus"],["NCBITaxon%3A1429090","Saccharomyces pastorianus CBS 1503"],["NCBITaxon%3A1073566","Saccharomyces pastorianus CBS 1513"],["NCBITaxon%3A1337639","Saccharomyces pastorianus CBS 6283"]]},{"id":"NCBITaxon:27322","l":"Metschnikowia bicuspidata","na":1,"nb":4,"a":[["TED%3AAF-A0A4P9Z9E9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4P9Z9E9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A27322","Metschnikowia bicuspidata"],["NCBITaxon%3A869754","Metschnikowia bicuspidata var. bicuspidata NRRL YB-4993"],["NCBITaxon%3A278769","Metschnikowia bicuspidata var. californica"],["NCBITaxon%3A278771","Metschnikowia bicuspidata var. chathamia"]]},{"id":"NCBITaxon:27342","l":"Schizopora paradoxa","na":4,"nb":1,"a":[["TED%3AAF-A0A0H2R7N1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0H2R7N1-F1-model_v4_TED01"],["TED%3AAF-A0A0H2S876-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0H2S876-F1-model_v4_TED02"],["TED%3AAF-A0A0H2RAH4-F1-model_v4_TED03","TED novel fold AF-A0A0H2RAH4-F1-model_v4_TED03"],["TED%3AAF-A0A0H2S445-F1-model_v4_TED01","TED novel fold AF-A0A0H2S445-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A27342","Schizopora paradoxa"]]},{"id":"NCBITaxon:2743","l":"Marinobacter nauticus","na":1,"nb":4,"a":[["TED%3AAF-A0A368Y858-F1-model_v4_TED02","TED novel fold AF-A0A368Y858-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2743","Marinobacter nauticus"],["NCBITaxon%3A1163748","Marinobacter nauticus ATCC 49840"],["NCBITaxon%3A1238884","Marinobacter nauticus ES-69"],["NCBITaxon%3A351348","Marinobacter nauticus VT8"]]},{"id":"NCBITaxon:276","l":"Thermus filiformis","na":4,"nb":1,"a":[["Pfam%3APF03119","NAD-dependent DNA ligase C4 zinc finger domain"],["PROSITE%3APS01055","NAD-dependent DNA ligase signature 1"],["PROSITE%3APS01056","NAD-dependent DNA ligase signature 2"],["TED%3AAF-A0A0A2WQ65-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0A2WQ65-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A276","Thermus filiformis"]]},{"id":"NCBITaxon:28031","l":"Lysinibacillus fusiformis","na":1,"nb":4,"a":[["TED%3AAF-A0A1E4QZZ2-F1-model_v4_TED04","TED novel fold AF-A0A1E4QZZ2-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A28031","Lysinibacillus fusiformis"],["NCBITaxon%3A1416755","Lysinibacillus fusiformis H1k"],["NCBITaxon%3A1231627","Lysinibacillus fusiformis ZB2"],["NCBITaxon%3A714961","Lysinibacillus fusiformis ZC1"]]},{"id":"NCBITaxon:28201","l":"Bdellovibrio sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A3M1C7V0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3M1C7V0-F1-model_v4_TED02"],["TED%3AAF-A0A3M1CAH8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M1CAH8-F1-model_v4_TED01"],["TED%3AAF-A0A317JLD2-F1-model_v4_TED01","TED novel fold AF-A0A317JLD2-F1-model_v4_TED01"],["TED%3AAF-A0A3M1C1J4-F1-model_v4_TED01","TED novel fold AF-A0A3M1C1J4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28201","Bdellovibrio sp."]]},{"id":"NCBITaxon:2822231","l":"Phanerodontia chrysosporium","na":4,"nb":1,"a":[["Pfam%3APF18637","Aldos-2-ulose dehydratase/isomerase (AUDH) Cupin domain"],["Pfam%3APF16010","Cytochrome domain of cellobiose dehydrogenase"],["PROSITE%3APS00623","GMC oxidoreductases signature 1"],["Pfam%3APF22301","Aldos-2-ulose dehydratase, beta-propeller domain"]],"b":[["NCBITaxon%3A2822231","Phanerodontia chrysosporium"]]},{"id":"NCBITaxon:29391","l":"Gemella morbillorum","na":1,"nb":4,"a":[["TED%3AAF-A0A2X4RFS7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2X4RFS7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A59505","Actinotignum schaalii"],["NCBITaxon%3A29391","Gemella morbillorum"],["NCBITaxon%3A1073360","Gemella morbillorum CC57F"],["NCBITaxon%3A562982","Gemella morbillorum M424"]]},{"id":"NCBITaxon:293958","l":"Martinezella lusitana","na":4,"nb":1,"a":[["TED%3AAF-A0A1C3VR22-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C3VR22-F1-model_v4_TED01"],["TED%3AAF-A0A7G6RR69-F1-model_v4_TED01","TED novel fold AF-A0A7G6RR69-F1-model_v4_TED01"],["TED%3AAF-A0A7X0IU19-F1-model_v4_TED02","TED novel fold AF-A0A7X0IU19-F1-model_v4_TED02"],["TED%3AAF-A0A7X0MEH1-F1-model_v4_TED01","TED novel fold AF-A0A7X0MEH1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A293958","Martinezella lusitana"]]},{"id":"NCBITaxon:29581","l":"Janthinobacterium lividum","na":1,"nb":4,"a":[["TED%3AAF-A0A853SDQ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A853SDQ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29581","Janthinobacterium lividum"],["NCBITaxon%3A1112211","Janthinobacterium lividum PAMC 25724"],["NCBITaxon%3A303","Pseudomonas putida"],["NCBITaxon%3A13690","Sphingobium yanoikuyae"]]},{"id":"NCBITaxon:312471","l":"Neobodo designis","na":4,"nb":1,"a":[["TED%3AAF-A0A7S1PR96-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1PR96-F1-model_v4_TED01"],["TED%3AAF-A0A7S1QZ59-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S1QZ59-F1-model_v4_TED01"],["TED%3AAF-A0A7S1MNS8-F1-model_v4_TED02","TED novel fold AF-A0A7S1MNS8-F1-model_v4_TED02"],["TED%3AAF-A0A7S1QYM9-F1-model_v4_TED02","TED novel fold AF-A0A7S1QYM9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A312471","Neobodo designis"]]},{"id":"NCBITaxon:317577","l":"Deinococcus ficus","na":1,"nb":4,"a":[["TED%3AAF-A0A221T2Q9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A221T2Q9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A317577","Deinococcus ficus"],["NCBITaxon%3A1054569","Deinococcus ficus cp02"],["NCBITaxon%3A1054570","Deinococcus ficus cp4502"],["NCBITaxon%3A1121379","Deinococcus ficus DSM 19119"]]},{"id":"NCBITaxon:322","l":"Pseudomonas amygdali pv. tabaci","na":1,"nb":4,"a":[["TED%3AAF-A0A3M6HY89-F1-model_v4_TED01","TED novel fold AF-A0A3M6HY89-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A322","Pseudomonas amygdali pv. tabaci"],["NCBITaxon%3A1189622","Pseudomonas amygdali pv. tabaci str. 6605"],["NCBITaxon%3A573066","Pseudomonas amygdali pv. tabaci str. ATCC 11528"],["NCBITaxon%3A317","Pseudomonas syringae"]]},{"id":"NCBITaxon:328517","l":"Dokdonella fugitiva","na":4,"nb":1,"a":[["TED%3AAF-A0A4R2IAV8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4R2IAV8-F1-model_v4_TED02"],["TED%3AAF-A0A839F433-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A839F433-F1-model_v4_TED01"],["TED%3AAF-A0A839FCZ1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A839FCZ1-F1-model_v4_TED01"],["TED%3AAF-A0A839F660-F1-model_v4_TED03","TED novel fold AF-A0A839F660-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A328517","Dokdonella fugitiva"]]},{"id":"NCBITaxon:329046","l":"Rhizoclosmatium globosum","na":4,"nb":1,"a":[["TED%3AAF-A0A1Y2B3S8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y2B3S8-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2BAH9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y2BAH9-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2C6M9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1Y2C6M9-F1-model_v4_TED03"],["TED%3AAF-A0A1Y2C669-F1-model_v4_TED02","TED novel fold AF-A0A1Y2C669-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A329046","Rhizoclosmatium globosum"]]},{"id":"NCBITaxon:33008","l":"Rhodococcus globerulus","na":1,"nb":4,"a":[["Pfam%3APF13816","Haem-containing dehydratase"]],"b":[["NCBITaxon%3A84096","Gordonia alkanivorans"],["NCBITaxon%3A1818","Nocardia globerula"],["NCBITaxon%3A33008","Rhodococcus globerulus"],["NCBITaxon%3A1219016","Rhodococcus globerulus NBRC 14531"]]},{"id":"NCBITaxon:33043","l":"Coprococcus eutactus","na":1,"nb":4,"a":[["TED%3AAF-A0A3R5WIV7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3R5WIV7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2981786","Coprococcus aceti"],["NCBITaxon%3A33043","Coprococcus eutactus"],["NCBITaxon%3A411474","Coprococcus eutactus ATCC 27759"],["NCBITaxon%3A1263071","Coprococcus eutactus CAG:665"]]},{"id":"NCBITaxon:33657","l":"Phaeocystis antarctica","na":4,"nb":1,"a":[["TED%3AAF-A0A7S0ERP1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0ERP1-F1-model_v4_TED01"],["TED%3AAF-A0A7S0HHT1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0HHT1-F1-model_v4_TED01"],["TED%3AAF-A0A7S0E8J9-F1-model_v4_TED01","TED novel fold AF-A0A7S0E8J9-F1-model_v4_TED01"],["TED%3AAF-A0A7S0EGP5-F1-model_v4_TED01","TED novel fold AF-A0A7S0EGP5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A33657","Phaeocystis antarctica"]]},{"id":"NCBITaxon:337243","l":"Halorubrum ezzemoulense","na":1,"nb":4,"a":[["TED%3AAF-A0A256K5A6-F1-model_v4_TED01","TED novel fold AF-A0A256K5A6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A337243","Halorubrum ezzemoulense"],["NCBITaxon%3A1121945","Halorubrum ezzemoulense DSM 17463"],["NCBITaxon%3A44930","Natronobacterium gregoryi"],["NCBITaxon%3A797304","Natronobacterium gregoryi SP2"]]},{"id":"NCBITaxon:33938","l":"Geobacillus thermocatenulatus","na":1,"nb":4,"a":[["TED%3AAF-A0A226Q9L4-F1-model_v4_TED01","TED novel fold AF-A0A226Q9L4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A33938","Geobacillus thermocatenulatus"],["NCBITaxon%3A1366049","Geobacillus thermocatenulatus BGSC 93A1"],["NCBITaxon%3A626521","Geobacillus thermocatenulatus C56 T9"],["NCBITaxon%3A1444308","Geobacillus thermocatenulatus GS-1"]]},{"id":"NCBITaxon:34059","l":"Faucicola atlantae","na":1,"nb":4,"a":[["TED%3AAF-A0A1B8QAE0-F1-model_v4_TED02","TED novel fold AF-A0A1B8QAE0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A34059","Faucicola atlantae"],["NCBITaxon%3A1223508","Moraxella atlantae NBRC 14588"],["NCBITaxon%3A495","Neisseria elongata"],["NCBITaxon%3A294","Pseudomonas fluorescens"]]},{"id":"NCBITaxon:348802","l":"Exophiala xenobiotica","na":4,"nb":1,"a":[["TED%3AAF-A0A0D2F362-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D2F362-F1-model_v4_TED01"],["TED%3AAF-A0A0D2C843-F1-model_v4_TED02","TED novel fold AF-A0A0D2C843-F1-model_v4_TED02"],["TED%3AAF-A0A0D2ESI4-F1-model_v4_TED01","TED novel fold AF-A0A0D2ESI4-F1-model_v4_TED01"],["TED%3AAF-A0A0D2EUF9-F1-model_v4_TED01","TED novel fold AF-A0A0D2EUF9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A348802","Exophiala xenobiotica"]]},{"id":"NCBITaxon:355","l":"Azotobacter chroococcum (strain mcd 1)","na":4,"nb":1,"a":[["Pfam%3APF22521","Carbamoyltransferase, Kae1-like Domain, second subdomain"],["Pfam%3APF17788","HypF Kae1-like domain"],["Pfam%3APF09820","Predicted AAA-ATPase"],["PROSITE%3APS00692","NifH/frxC family signature 2"]],"b":[["NCBITaxon%3A355","Azotobacter chroococcum (strain mcd 1)"]]},{"id":"NCBITaxon:35677","l":"Pelagomonas calceolata","na":4,"nb":1,"a":[["TED%3AAF-A0A7S4EBC1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4EBC1-F1-model_v4_TED01"],["TED%3AAF-A0A7S4E2J9-F1-model_v4_TED01","TED novel fold AF-A0A7S4E2J9-F1-model_v4_TED01"],["TED%3AAF-A0A7S4E700-F1-model_v4_TED01","TED novel fold AF-A0A7S4E700-F1-model_v4_TED01"],["TED%3AAF-A0A7S4ECA1-F1-model_v4_TED01","TED novel fold AF-A0A7S4ECA1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A35677","Pelagomonas calceolata"]]},{"id":"NCBITaxon:35703","l":"Citrobacter amalonaticus","na":1,"nb":4,"a":[["TED%3AAF-A0A376C300-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A376C300-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A35703","Citrobacter amalonaticus"],["NCBITaxon%3A1261127","Citrobacter amalonaticus Y19"],["NCBITaxon%3A67824","Citrobacter farmeri"],["NCBITaxon%3A546","Citrobacter freundii"]]},{"id":"NCBITaxon:360316","l":"Crenothrix polyspora","na":4,"nb":1,"a":[["TED%3AAF-A0A1R4HFB5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1R4HFB5-F1-model_v4_TED02"],["TED%3AAF-A0A1R4GYY9-F1-model_v4_TED02","TED novel fold AF-A0A1R4GYY9-F1-model_v4_TED02"],["TED%3AAF-A0A1R4H4I0-F1-model_v4_TED01","TED novel fold AF-A0A1R4H4I0-F1-model_v4_TED01"],["TED%3AAF-A0A1R4HE31-F1-model_v4_TED02","TED novel fold AF-A0A1R4HE31-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A360316","Crenothrix polyspora"]]},{"id":"NCBITaxon:370355","l":"Entamoeba invadens IP1","na":4,"nb":1,"a":[["TED%3AAF-A0A0A1TVI8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A1TVI8-F1-model_v4_TED01"],["TED%3AAF-A0A0A1TVN8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A1TVN8-F1-model_v4_TED01"],["TED%3AAF-A0A0A1UGU1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A1UGU1-F1-model_v4_TED01"],["TED%3AAF-L7FNI6-F1-model_v4_TED01","TED highly-symmetric fold AF-L7FNI6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A370355","Entamoeba invadens IP1"]]},{"id":"NCBITaxon:378806","l":"Allostigmatella aurantiaca DW4/3-1","na":4,"nb":1,"a":[["TED%3AAF-Q098I8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q098I8-F1-model_v4_TED01"],["TED%3AAF-E3FRW3-F1-model_v4_TED01","TED novel fold AF-E3FRW3-F1-model_v4_TED01"],["TED%3AAF-E3G0M4-F1-model_v4_TED01","TED novel fold AF-E3G0M4-F1-model_v4_TED01"],["TED%3AAF-Q08VS7-F1-model_v4_TED01","TED novel fold AF-Q08VS7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A378806","Allostigmatella aurantiaca DW4/3-1"]]},{"id":"NCBITaxon:390894","l":"Lophium mytilinum","na":4,"nb":1,"a":[["TED%3AAF-A0A6A6QJJ8-F1-model_v4_TED01","TED novel fold AF-A0A6A6QJJ8-F1-model_v4_TED01"],["TED%3AAF-A0A6A6QKI0-F1-model_v4_TED02","TED novel fold AF-A0A6A6QKI0-F1-model_v4_TED02"],["TED%3AAF-A0A6A6QNR0-F1-model_v4_TED02","TED novel fold AF-A0A6A6QNR0-F1-model_v4_TED02"],["TED%3AAF-A0A6A6QWC0-F1-model_v4_TED01","TED novel fold AF-A0A6A6QWC0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A390894","Lophium mytilinum"]]},{"id":"NCBITaxon:394095","l":"Pyxidicoccus fallax","na":4,"nb":1,"a":[["TED%3AAF-A0A848LUK3-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A848LUK3-F1-model_v4_TED04"],["TED%3AAF-A0A848LF16-F1-model_v4_TED01","TED novel fold AF-A0A848LF16-F1-model_v4_TED01"],["TED%3AAF-A0A848LFV1-F1-model_v4_TED03","TED novel fold AF-A0A848LFV1-F1-model_v4_TED03"],["TED%3AAF-A0A848LG55-F1-model_v4_TED01","TED novel fold AF-A0A848LG55-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A394095","Pyxidicoccus fallax"]]},{"id":"NCBITaxon:39441","l":"Methanobrevibacter arboriphilus","na":1,"nb":4,"a":[["TED%3AAF-A0A843AID3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843AID3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39441","Methanobrevibacter arboriphilus"],["NCBITaxon%3A1401244","Methanobrevibacter arboriphilus ANOR1"],["NCBITaxon%3A1300164","Methanobrevibacter arboriphilus JCM 13429 = DSM 1125"],["NCBITaxon%3A1293039","Methanobrevibacter arboriphilus JCM 9315"]]},{"id":"NCBITaxon:39791","l":"Corynebacterium glucuronolyticum","na":1,"nb":4,"a":[["TED%3AAF-A0A1W1U9X0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W1U9X0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39791","Corynebacterium glucuronolyticum"],["NCBITaxon%3A548478","Corynebacterium glucuronolyticum ATCC 51866"],["NCBITaxon%3A548477","Corynebacterium glucuronolyticum ATCC 51867"],["NCBITaxon%3A1121361","Corynebacterium glucuronolyticum DSM 44120"]]},{"id":"NCBITaxon:404589","l":"Anaeromyxobacter sp. Fw109-5","na":4,"nb":1,"a":[["TED%3AAF-A7H7H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A7H7H4-F1-model_v4_TED01"],["TED%3AAF-A7H7U8-F1-model_v4_TED01","TED highly-symmetric fold AF-A7H7U8-F1-model_v4_TED01"],["TED%3AAF-A7HAV5-F1-model_v4_TED01","TED novel fold AF-A7HAV5-F1-model_v4_TED01"],["TED%3AAF-A7HE89-F1-model_v4_TED01","TED novel fold AF-A7HE89-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A404589","Anaeromyxobacter sp. Fw109-5"]]},{"id":"NCBITaxon:420281","l":"Proboscia inermis","na":4,"nb":1,"a":[["TED%3AAF-A0A7S0C146-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S0C146-F1-model_v4_TED03"],["TED%3AAF-A0A7S0CII7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S0CII7-F1-model_v4_TED02"],["TED%3AAF-A0A7S0CMH6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0CMH6-F1-model_v4_TED01"],["TED%3AAF-A0A7S0C3Z8-F1-model_v4_TED01","TED novel fold AF-A0A7S0C3Z8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A420281","Proboscia inermis"]]},{"id":"NCBITaxon:43305","l":"Butyrivibrio proteoclasticus","na":1,"nb":4,"a":[["TED%3AAF-A0A1I5WKT8-F1-model_v4_TED03","TED novel fold AF-A0A1I5WKT8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A43305","Butyrivibrio proteoclasticus"],["NCBITaxon%3A515622","Butyrivibrio proteoclasticus B316"],["NCBITaxon%3A1408431","Butyrivibrio proteoclasticus FD2007"],["NCBITaxon%3A1410650","Butyrivibrio proteoclasticus P6B7"]]},{"id":"NCBITaxon:43992","l":"Bradyrhizobium liaoningense","na":1,"nb":4,"a":[["TED%3AAF-A0A151FZT9-F1-model_v4_TED04","TED novel fold AF-A0A151FZT9-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A43992","Bradyrhizobium liaoningense"],["NCBITaxon%3A306163","Bradyrhizobium liaoningense bv. glycinearum"],["NCBITaxon%3A1128287","Bradyrhizobium liaoningense CCBAU 05525"],["NCBITaxon%3A1128288","Bradyrhizobium liaoningense CCBAU 83689"]]},{"id":"NCBITaxon:44447","l":"Pseudo-nitzschia delicatissima","na":4,"nb":1,"a":[["TED%3AAF-A0A7S0UI31-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0UI31-F1-model_v4_TED01"],["TED%3AAF-A0A7S0UJS7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0UJS7-F1-model_v4_TED01"],["TED%3AAF-A0A7S0ULC9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0ULC9-F1-model_v4_TED01"],["TED%3AAF-A0A7S0Y5Z9-F1-model_v4_TED01","TED novel fold AF-A0A7S0Y5Z9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A44447","Pseudo-nitzschia delicatissima"]]},{"id":"NCBITaxon:45243","l":"Capnocytophaga haemolytica","na":1,"nb":4,"a":[["TED%3AAF-A0A0X8JC19-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0X8JC19-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A45243","Capnocytophaga haemolytica"],["NCBITaxon%3A1410026","Capnocytophaga haemolytica HMP_JCVI_SC0216"],["NCBITaxon%3A1410027","Capnocytophaga haemolytica HMP_JCVI_SC0218"],["NCBITaxon%3A1827100","Capnocytophaga sp. JCM 8568"]]},{"id":"NCBITaxon:46180","l":"Nonomuraea rubra","na":1,"nb":4,"a":[["TED%3AAF-A0A7X0TYV7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X0TYV7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1193278","Corallincola platygyrae"],["NCBITaxon%3A1505037","Emcibacter nanhaiensis"],["NCBITaxon%3A46180","Nonomuraea rubra"],["NCBITaxon%3A1141892","Sphingomonas gimensis"]]},{"id":"NCBITaxon:464990","l":"Hemiselmis tepida","na":4,"nb":1,"a":[["TED%3AAF-A0A7S0W066-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S0W066-F1-model_v4_TED03"],["TED%3AAF-A0A7S0W722-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S0W722-F1-model_v4_TED02"],["TED%3AAF-A0A7S0V8V7-F1-model_v4_TED01","TED novel fold AF-A0A7S0V8V7-F1-model_v4_TED01"],["TED%3AAF-A0A7S0W156-F1-model_v4_TED01","TED novel fold AF-A0A7S0W156-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A464990","Hemiselmis tepida"]]},{"id":"NCBITaxon:470868","l":"Achromobacter marplatensis","na":1,"nb":4,"a":[["TED%3AAF-J4YJG0-F1-model_v4_TED03","TED highly-symmetric fold AF-J4YJG0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A217204","Achromobacter insolitus"],["NCBITaxon%3A470868","Achromobacter marplatensis"],["NCBITaxon%3A72556","Achromobacter piechaudii"],["NCBITaxon%3A85698","Achromobacter xylosoxidans"]]},{"id":"NCBITaxon:4787","l":"Phytophthora infestans","na":4,"nb":1,"a":[["Pfam%3APF27643","BZIP transcription factor 1 C-terminal domain"],["Pfam%3APF20147","Crinkler effector protein N-terminal domain"],["TED%3AAF-A0A833SU74-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A833SU74-F1-model_v4_TED02"],["TED%3AAF-A0A833S5L0-F1-model_v4_TED01","TED novel fold AF-A0A833S5L0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A4787","Phytophthora infestans"]]},{"id":"NCBITaxon:48","l":"Archangium gephyra","na":4,"nb":1,"a":[["TED%3AAF-A0A0G2ZQX3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G2ZQX3-F1-model_v4_TED01"],["TED%3AAF-A0A0G3A8M9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G3A8M9-F1-model_v4_TED01"],["TED%3AAF-A0A2W5T6H4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2W5T6H4-F1-model_v4_TED03"],["TED%3AAF-A0A0G2ZR59-F1-model_v4_TED01","TED novel fold AF-A0A0G2ZR59-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A48","Archangium gephyra"]]},{"id":"NCBITaxon:48465","l":"Prosthecobacter dejongeii","na":4,"nb":1,"a":[["TED%3AAF-A0A7W7YJS7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W7YJS7-F1-model_v4_TED01"],["TED%3AAF-A0A7W7YL82-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W7YL82-F1-model_v4_TED01"],["TED%3AAF-A0A7W8DRC9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W8DRC9-F1-model_v4_TED01"],["TED%3AAF-A0A7W8DRQ8-F1-model_v4_TED01","TED novel fold AF-A0A7W8DRQ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A48465","Prosthecobacter dejongeii"]]},{"id":"NCBITaxon:487316","l":"Acinetobacter soli","na":1,"nb":4,"a":[["TED%3AAF-A0A427LG51-F1-model_v4_TED01","TED novel fold AF-A0A427LG51-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A487316","Acinetobacter soli"],["NCBITaxon%3A1217676","Acinetobacter soli CIP 110264"],["NCBITaxon%3A1217677","Acinetobacter soli NIPH 2899"],["NCBITaxon%3A1451233","Acinetobacter soli TCM341"]]},{"id":"NCBITaxon:4955","l":"Lachancea fermentati","na":4,"nb":1,"a":[["Pfam%3APF03930","Recombinase Flp protein N-terminus"],["Pfam%3APF05202","Recombinase Flp protein"],["TED%3AAF-A0A1G4MCS2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G4MCS2-F1-model_v4_TED01"],["TED%3AAF-A0A1G4MJ93-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G4MJ93-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A4955","Lachancea fermentati"]]},{"id":"NCBITaxon:497965","l":"Gloeothece verrucosa PCC 7822","na":4,"nb":1,"a":[["TED%3AAF-E0UJA0-F1-model_v4_TED01","TED highly-symmetric fold AF-E0UJA0-F1-model_v4_TED01"],["TED%3AAF-E0U6M3-F1-model_v4_TED03","TED novel fold AF-E0U6M3-F1-model_v4_TED03"],["TED%3AAF-E0UE39-F1-model_v4_TED02","TED novel fold AF-E0UE39-F1-model_v4_TED02"],["TED%3AAF-E0UM93-F1-model_v4_TED01","TED novel fold AF-E0UM93-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A497965","Gloeothece verrucosa PCC 7822"]]},{"id":"NCBITaxon:500485","l":"Penicillium rubens Wisconsin 54-1255","na":4,"nb":1,"a":[["Pfam%3APF03417","Acyl-coenzyme A:6-aminopenicillanic acid acyl-transferase"],["Pfam%3APF03659","Glycosyl hydrolase family 71"],["PROSITE%3APS00185","Isopenicillin N synthase signature 1"],["PROSITE%3APS00186","Isopenicillin N synthase signature 2"]],"b":[["NCBITaxon%3A500485","Penicillium rubens Wisconsin 54-1255"]]},{"id":"NCBITaxon:50741","l":"Marinobacter sp.","na":4,"nb":1,"a":[["TED%3AAF-A0A2D9LBV8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9LBV8-F1-model_v4_TED01"],["TED%3AAF-A0A2D7X1D2-F1-model_v4_TED01","TED novel fold AF-A0A2D7X1D2-F1-model_v4_TED01"],["TED%3AAF-A0A2E8AEX3-F1-model_v4_TED02","TED novel fold AF-A0A2E8AEX3-F1-model_v4_TED02"],["TED%3AAF-A0A3D5Q8H2-F1-model_v4_TED01","TED novel fold AF-A0A3D5Q8H2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A50741","Marinobacter sp."]]},{"id":"NCBITaxon:5076","l":"Penicillium chrysogenum","na":4,"nb":1,"a":[["Pfam%3APF03417","Acyl-coenzyme A:6-aminopenicillanic acid acyl-transferase"],["Pfam%3APF11402","Antifungal protein"],["PROSITE%3APS00185","Isopenicillin N synthase signature 1"],["PROSITE%3APS00186","Isopenicillin N synthase signature 2"]],"b":[["NCBITaxon%3A5076","Penicillium chrysogenum"]]},{"id":"NCBITaxon:50990","l":"Rickenella mellea","na":4,"nb":1,"a":[["TED%3AAF-A0A4Y7PJF9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y7PJF9-F1-model_v4_TED01"],["TED%3AAF-A0A4Y7PDJ0-F1-model_v4_TED03","TED novel fold AF-A0A4Y7PDJ0-F1-model_v4_TED03"],["TED%3AAF-A0A4Y7PG65-F1-model_v4_TED01","TED novel fold AF-A0A4Y7PG65-F1-model_v4_TED01"],["TED%3AAF-A0A4Y7PGV9-F1-model_v4_TED02","TED novel fold AF-A0A4Y7PGV9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A50990","Rickenella mellea"]]},{"id":"NCBITaxon:512","l":"Alcaligenes sp.","na":4,"nb":1,"a":[["Pfam%3APF26354","N,N-dimethylformamidase alpha subunit"],["Pfam%3APF20254","N,N-dimethylformamidase beta subunit-like, C-terminal"],["Pfam%3APF11606","Family 31 carbohydrate binding protein"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"]],"b":[["NCBITaxon%3A512","Alcaligenes sp."]]},{"id":"NCBITaxon:51671","l":"Microbacterium sp.","na":4,"nb":1,"a":[["Pfam%3APF19906","C-glycoside deglycosidase beta subunit"],["TED%3AAF-A0A349CW39-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A349CW39-F1-model_v4_TED01"],["TED%3AAF-A0A2W6V981-F1-model_v4_TED01","TED novel fold AF-A0A2W6V981-F1-model_v4_TED01"],["TED%3AAF-A0A3D4PQL1-F1-model_v4_TED01","TED novel fold AF-A0A3D4PQL1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A51671","Microbacterium sp."]]},{"id":"NCBITaxon:519","l":"Bordetella parapertussis","na":1,"nb":4,"a":[["Pfam%3APF13542","Helix-turn-helix domain of transposase family ISL3"]],"b":[["NCBITaxon%3A519","Bordetella parapertussis"],["NCBITaxon%3A257311","Bordetella parapertussis 12822"],["NCBITaxon%3A1208717","Bordetella parapertussis 18323"],["NCBITaxon%3A1208660","Bordetella parapertussis Bpp5"]]},{"id":"NCBITaxon:522373","l":"Stenotrophomonas maltophilia K279a","na":4,"nb":1,"a":[["Pfam%3APF07940","Heparinase II/III-like, C-terminal"],["Pfam%3APF16970","Type-1 fimbrial protein, A"],["PROSITE%3APS00550","Hemerythrin family signature"],["Pfam%3APF05426","Alginate lyase"]],"b":[["NCBITaxon%3A522373","Stenotrophomonas maltophilia K279a"]]},{"id":"NCBITaxon:5270","l":"Mycosarcoma maydis","na":4,"nb":1,"a":[["Pfam%3APF17445","Mating factor A1"],["Pfam%3APF24563","Mug60/KHD4 KH type I domain"],["Pfam%3APF01185","Fungal hydrophobin"],["Pfam%3APF07460","NUMOD3 motif"]],"b":[["NCBITaxon%3A5270","Mycosarcoma maydis"]]},{"id":"NCBITaxon:529507","l":"Proteus mirabilis HI4320","na":4,"nb":1,"a":[["Pfam%3APF02028","BCCT, betaine/carnitine/choline family transporter"],["PROSITE%3APS01303","BCCT family of transporters signature"],["PROSITE%3APS01120","Urease nickel ligands signature"],["PROSITE%3APS00145","Urease active site"]],"b":[["NCBITaxon%3A529507","Proteus mirabilis HI4320"]]},{"id":"NCBITaxon:5341","l":"Agaricus bisporus","na":1,"nb":4,"a":[["Pfam%3APF07367","Fungal fruit body lectin"]],"b":[["NCBITaxon%3A5341","Agaricus bisporus"],["NCBITaxon%3A936046","Agaricus bisporus var. bisporus H97"],["NCBITaxon%3A192524","Agaricus bisporus var. burnettii"],["NCBITaxon%3A597362","Agaricus bisporus var. burnettii JB137-S8"]]},{"id":"NCBITaxon:53432","l":"Nocardia uniformis","na":1,"nb":4,"a":[["TED%3AAF-A0A849C8L0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A849C8L0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1872144","Actinosynnema sp."],["NCBITaxon%3A53432","Nocardia uniformis"],["NCBITaxon%3A1210100","Nocardia uniformis NBRC 13702"],["NCBITaxon%3A96045","Nocardia uniformis subsp. tsuyamanensis"]]},{"id":"NCBITaxon:5353","l":"Lentinula edodes","na":4,"nb":1,"a":[["Pfam%3APF21671","Protein CPL1-like"],["Pfam%3APF16850","Peptidase inhibitor I66"],["TED%3AAF-A0A1Q3EBL0-F1-model_v4_TED01","TED novel fold AF-A0A1Q3EBL0-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3ENK4-F1-model_v4_TED01","TED novel fold AF-A0A1Q3ENK4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5353","Lentinula edodes"]]},{"id":"NCBITaxon:53707","l":"Pseudomonas amygdali pv. lachrymans","na":1,"nb":4,"a":[["TED%3AAF-A0A3M5I528-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M5I528-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A53707","Pseudomonas amygdali pv. lachrymans"],["NCBITaxon%3A629260","Pseudomonas amygdali pv. lachrymans str. M301315"],["NCBITaxon%3A629267","Pseudomonas amygdali pv. lachrymans str. M302278"],["NCBITaxon%3A317","Pseudomonas syringae"]]},{"id":"NCBITaxon:5481","l":"Diutina rugosa","na":4,"nb":1,"a":[["TED%3AAF-A0A642UM15-F1-model_v4_TED02","TED novel fold AF-A0A642UM15-F1-model_v4_TED02"],["TED%3AAF-A0A642UMZ0-F1-model_v4_TED01","TED novel fold AF-A0A642UMZ0-F1-model_v4_TED01"],["TED%3AAF-A0A642UNT8-F1-model_v4_TED02","TED novel fold AF-A0A642UNT8-F1-model_v4_TED02"],["TED%3AAF-A0A642UTN5-F1-model_v4_TED01","TED novel fold AF-A0A642UTN5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5481","Diutina rugosa"]]},{"id":"NCBITaxon:5518","l":"Fusarium graminearum","na":4,"nb":1,"a":[["Pfam%3APF09118","Galactose oxidase-like, Early set domain"],["Pfam%3APF07250","Glyoxal oxidase N-terminus"],["TED%3AAF-A0A2H3FY84-F1-model_v4_TED03","TED novel fold AF-A0A2H3FY84-F1-model_v4_TED03"],["TED%3AAF-A0A2H3G191-F1-model_v4_TED01","TED novel fold AF-A0A2H3G191-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5518","Fusarium graminearum"]]},{"id":"NCBITaxon:553239","l":"Vibrio breoganii","na":1,"nb":4,"a":[["TED%3AAF-A0A193KJE7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A193KJE7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A553239","Vibrio breoganii"],["NCBITaxon%3A1205908","Vibrio breoganii 1C10"],["NCBITaxon%3A1188257","Vibrio breoganii ZF-29"],["NCBITaxon%3A1188253","Vibrio breoganii ZF-55"]]},{"id":"NCBITaxon:5544","l":"Trichoderma harzianum","na":4,"nb":1,"a":[["Pfam%3APF00840","Glycosyl hydrolase family 7"],["Pfam%3APF12708","Rhamnogalacturonase A/epimerase, pectate lyase-like"],["TED%3AAF-A0A0F9XDU3-F1-model_v4_TED01","TED novel fold AF-A0A0F9XDU3-F1-model_v4_TED01"],["TED%3AAF-A0A0G0ASL4-F1-model_v4_TED01","TED novel fold AF-A0A0G0ASL4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5544","Trichoderma harzianum"]]},{"id":"NCBITaxon:556484","l":"Phaeodactylum tricornutum CCAP 1055/1","na":4,"nb":1,"a":[["TED%3AAF-B7GAJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-B7GAJ8-F1-model_v4_TED01"],["TED%3AAF-B7G520-F1-model_v4_TED02","TED novel fold AF-B7G520-F1-model_v4_TED02"],["TED%3AAF-B7G8V4-F1-model_v4_TED02","TED novel fold AF-B7G8V4-F1-model_v4_TED02"],["TED%3AAF-B7GB31-F1-model_v4_TED01","TED novel fold AF-B7GB31-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A556484","Phaeodactylum tricornutum CCAP 1055/1"]]},{"id":"NCBITaxon:561230","l":"Pectobacterium carotovorum subsp. carotovorum PC1","na":4,"nb":1,"a":[["Pfam%3APF17868","AAA lid domain"],["Pfam%3APF12592","ATPase, RavA, C-terminal"],["Pfam%3APF20030","MoxR domain in the MoxR-vWA-beta-propeller ternary systems"],["Pfam%3APF20265","ATPase, RavA, LARA domain"]],"b":[["NCBITaxon%3A561230","Pectobacterium carotovorum subsp. carotovorum PC1"]]},{"id":"NCBITaxon:564","l":"Escherichia fergusonii","na":1,"nb":4,"a":[["TED%3AAF-A0A4Y5RSR2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y5RSR2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A564","Escherichia fergusonii"],["NCBITaxon%3A585054","Escherichia fergusonii ATCC 35469"],["NCBITaxon%3A550694","Escherichia fergusonii B253"],["NCBITaxon%3A981367","Escherichia fergusonii ECD227"]]},{"id":"NCBITaxon:56646","l":"Fusarium venenatum","na":4,"nb":1,"a":[["TED%3AAF-A0A2L2T3T0-F1-model_v4_TED01","TED novel fold AF-A0A2L2T3T0-F1-model_v4_TED01"],["TED%3AAF-A0A2L2T6Y7-F1-model_v4_TED02","TED novel fold AF-A0A2L2T6Y7-F1-model_v4_TED02"],["TED%3AAF-A0A2L2TYS2-F1-model_v4_TED01","TED novel fold AF-A0A2L2TYS2-F1-model_v4_TED01"],["TED%3AAF-A0A2L2U1R1-F1-model_v4_TED03","TED novel fold AF-A0A2L2U1R1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A56646","Fusarium venenatum"]]},{"id":"NCBITaxon:5691","l":"Trypanosoma brucei","na":1,"nb":4,"a":[["TED%3AAF-A0A1J0R543-F1-model_v4_TED02","TED novel fold AF-A0A1J0R543-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A5702","Trypanosoma brucei brucei"],["NCBITaxon%3A185431","Trypanosoma brucei brucei TREU927"],["NCBITaxon%3A630700","Trypanosoma brucei equiperdum"],["NCBITaxon%3A31286","Trypanosoma brucei rhodesiense"]]},{"id":"NCBITaxon:5759","l":"Entamoeba histolytica","na":4,"nb":1,"a":[["IDPO%3A0000012","molten globule to order"],["TED%3AAF-C4LXE1-F1-model_v4_TED01","TED highly-symmetric fold AF-C4LXE1-F1-model_v4_TED01"],["TED%3AAF-C4LXH3-F1-model_v4_TED02","TED novel fold AF-C4LXH3-F1-model_v4_TED02"],["TED%3AAF-C4MBN2-F1-model_v4_TED03","TED novel fold AF-C4MBN2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A5759","Entamoeba histolytica"]]},{"id":"NCBITaxon:599839","l":"Fibroporia radiculosa","na":4,"nb":1,"a":[["TED%3AAF-J4G061-F1-model_v4_TED01","TED highly-symmetric fold AF-J4G061-F1-model_v4_TED01"],["TED%3AAF-J4HTT0-F1-model_v4_TED01","TED highly-symmetric fold AF-J4HTT0-F1-model_v4_TED01"],["TED%3AAF-J4GNK0-F1-model_v4_TED01","TED novel fold AF-J4GNK0-F1-model_v4_TED01"],["TED%3AAF-J4H469-F1-model_v4_TED01","TED novel fold AF-J4H469-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A599839","Fibroporia radiculosa"]]},{"id":"NCBITaxon:620833","l":"Fusobacterium periodonticum D10","na":4,"nb":1,"a":[["TED%3AAF-K1GSN7-F1-model_v4_TED02","TED highly-symmetric fold AF-K1GSN7-F1-model_v4_TED02"],["TED%3AAF-K1GK28-F1-model_v4_TED01","TED novel fold AF-K1GK28-F1-model_v4_TED01"],["TED%3AAF-K1GT63-F1-model_v4_TED01","TED novel fold AF-K1GT63-F1-model_v4_TED01"],["TED%3AAF-K1HFK3-F1-model_v4_TED01","TED novel fold AF-K1HFK3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A620833","Fusobacterium periodonticum D10"]]},{"id":"NCBITaxon:644352","l":"Gaeumannomyces tritici R3-111a-1","na":4,"nb":1,"a":[["TED%3AAF-J8U2T4-F1-model_v4_TED01","TED highly-symmetric fold AF-J8U2T4-F1-model_v4_TED01"],["TED%3AAF-J3NLU7-F1-model_v4_TED02","TED novel fold AF-J3NLU7-F1-model_v4_TED02"],["TED%3AAF-J3NQT0-F1-model_v4_TED01","TED novel fold AF-J3NQT0-F1-model_v4_TED01"],["TED%3AAF-J3PFR6-F1-model_v4_TED02","TED novel fold AF-J3PFR6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A644352","Gaeumannomyces tritici R3-111a-1"]]},{"id":"NCBITaxon:658196","l":"Glomus cerebriforme","na":4,"nb":1,"a":[["TED%3AAF-A0A397SM59-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A397SM59-F1-model_v4_TED01"],["TED%3AAF-A0A397T6M2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A397T6M2-F1-model_v4_TED02"],["TED%3AAF-A0A397S7Z6-F1-model_v4_TED02","TED novel fold AF-A0A397S7Z6-F1-model_v4_TED02"],["TED%3AAF-A0A397SLL5-F1-model_v4_TED02","TED novel fold AF-A0A397SLL5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A658196","Glomus cerebriforme"]]},{"id":"NCBITaxon:671267","l":"Phocaeicola sartorii","na":1,"nb":4,"a":[["TED%3AAF-A0A4S2FG02-F1-model_v4_TED02","TED novel fold AF-A0A4S2FG02-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A671267","Phocaeicola sartorii"],["NCBITaxon%3A1235788","Phocaeicola sartorii dnLKV3"],["NCBITaxon%3A1236538","Phocaeicola sartorii JCM 16497"],["NCBITaxon%3A1236515","Phocaeicola sartorii JCM 17136 = DSM 21941"]]},{"id":"NCBITaxon:68998","l":"Alcaligenes sp. CT14","na":4,"nb":1,"a":[["Pfam%3APF25973","CzcB-like, barrel-sandwich hybrid domain"],["Pfam%3APF25975","CzcB C-terminal circularly permuted SH3-like domain"],["Pfam%3APF25971","CzcB, N-terminal domain"],["Pfam%3APF25893","CzcB-like, alpha-helical hairpin domain"]],"b":[["NCBITaxon%3A68998","Alcaligenes sp. CT14"]]},{"id":"NCBITaxon:710127","l":"Mycoplasmoides gallisepticum str. R(low)","na":4,"nb":1,"a":[["Pfam%3APF27734","Cytadherence high molecular weight protein 2"],["Pfam%3APF07271","Cytadhesin P30/P32"],["Pfam%3APF06574","FAD synthetase"],["Pfam%3APF12378","Mycoplasma adhesin P1, N-terminal"]],"b":[["NCBITaxon%3A710127","Mycoplasmoides gallisepticum str. R(low)"]]},{"id":"NCBITaxon:72360","l":"Bacillus mojavensis","na":1,"nb":4,"a":[["Pfam%3APF05952","Bacillus competence pheromone ComX"]],"b":[["NCBITaxon%3A260554","Bacillus halotolerans"],["NCBITaxon%3A72360","Bacillus mojavensis"],["NCBITaxon%3A1051501","Bacillus mojavensis RO-H-1 = KCTC 3706"],["NCBITaxon%3A1329377","Bacillus mojavensis RRC 101"]]},{"id":"NCBITaxon:72548","l":"Prymnesium polylepis","na":4,"nb":1,"a":[["TED%3AAF-A0A7S4MJG5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4MJG5-F1-model_v4_TED01"],["TED%3AAF-A0A7S4HUL0-F1-model_v4_TED03","TED novel fold AF-A0A7S4HUL0-F1-model_v4_TED03"],["TED%3AAF-A0A7S4MHM1-F1-model_v4_TED01","TED novel fold AF-A0A7S4MHM1-F1-model_v4_TED01"],["TED%3AAF-A0A7S4N3G6-F1-model_v4_TED01","TED novel fold AF-A0A7S4N3G6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A72548","Prymnesium polylepis"]]},{"id":"NCBITaxon:744512","l":"Treponema rectale","na":4,"nb":1,"a":[["TED%3AAF-A0A7M1XL74-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7M1XL74-F1-model_v4_TED02"],["TED%3AAF-A0A7M1XI10-F1-model_v4_TED02","TED novel fold AF-A0A7M1XI10-F1-model_v4_TED02"],["TED%3AAF-A0A7M1XIN4-F1-model_v4_TED02","TED novel fold AF-A0A7M1XIN4-F1-model_v4_TED02"],["TED%3AAF-A0A7M1XJH8-F1-model_v4_TED03","TED novel fold AF-A0A7M1XJH8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A744512","Treponema rectale"]]},{"id":"NCBITaxon:74565","l":"Arthrobacter sp. CB-8","na":4,"nb":1,"a":[["Pfam%3APF17433","Glycosyl hydrolase family 49 N-terminal Ig-like domain"],["Pfam%3APF18841","Beta solenoid repeat from Dextranase"],["Pfam%3APF03718","Glycosyl hydrolase family 49"],["Pfam%3APF18783","Isopullulanase beta-solenoid repeat"]],"b":[["NCBITaxon%3A74565","Arthrobacter sp. CB-8"]]},{"id":"NCBITaxon:747676","l":"Melampsora larici-populina 98AG31","na":4,"nb":1,"a":[["TED%3AAF-F4R5F1-F1-model_v4_TED01","TED highly-symmetric fold AF-F4R5F1-F1-model_v4_TED01"],["TED%3AAF-F4RCW9-F1-model_v4_TED01","TED highly-symmetric fold AF-F4RCW9-F1-model_v4_TED01"],["TED%3AAF-F4RU47-F1-model_v4_TED01","TED highly-symmetric fold AF-F4RU47-F1-model_v4_TED01"],["TED%3AAF-F4SD93-F1-model_v4_TED01","TED highly-symmetric fold AF-F4SD93-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A747676","Melampsora larici-populina 98AG31"]]},{"id":"NCBITaxon:787","l":"Rickettsia australis","na":1,"nb":4,"a":[["Pfam%3APF16998","17 kDa outer membrane surface antigen"]],"b":[["NCBITaxon%3A787","Rickettsia australis"],["NCBITaxon%3A1105110","Rickettsia australis str. Cutlack"],["NCBITaxon%3A1359150","Rickettsia australis str. H2292"],["NCBITaxon%3A1196662","Rickettsia australis str. Phillips"]]},{"id":"NCBITaxon:83449","l":"Cystobacter ferrugineus","na":4,"nb":1,"a":[["TED%3AAF-A0A1L9B4M1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L9B4M1-F1-model_v4_TED01"],["TED%3AAF-A0A1L9B5W1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L9B5W1-F1-model_v4_TED01"],["TED%3AAF-A0A1L9BCS8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L9BCS8-F1-model_v4_TED01"],["TED%3AAF-A0A1L9BDA4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1L9BDA4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A83449","Cystobacter ferrugineus"]]},{"id":"NCBITaxon:839","l":"Xylanibacter ruminicola","na":1,"nb":4,"a":[["TED%3AAF-A0A1M7DCP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M7DCP8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1531","Enterocloster clostridioformis"],["NCBITaxon%3A839","Xylanibacter ruminicola"],["NCBITaxon%3A264731","Xylanibacter ruminicola 23"],["NCBITaxon%3A1410667","Xylanibacter ruminicola Ga6B6"]]},{"id":"NCBITaxon:84025","l":"Clostridium haemolyticum","na":1,"nb":4,"a":[["TED%3AAF-A0A1V2Y674-F1-model_v4_TED01","TED novel fold AF-A0A1V2Y674-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1491","Clostridium botulinum"],["NCBITaxon%3A84025","Clostridium haemolyticum"],["NCBITaxon%3A1443115","Clostridium haemolyticum NCTC 8350"],["NCBITaxon%3A1443114","Clostridium haemolyticum NCTC 9693"]]},{"id":"NCBITaxon:870","l":"Dichelobacter nodosus","na":1,"nb":4,"a":[["Pfam%3APF27166","Fimbrial assembly protein FimB"]],"b":[["NCBITaxon%3A870","Dichelobacter nodosus"],["NCBITaxon%3A35819","Dichelobacter nodosus A198"],["NCBITaxon%3A46911","Dichelobacter nodosus H1"],["NCBITaxon%3A246195","Dichelobacter nodosus VCS1703A"]]},{"id":"NCBITaxon:888845","l":"Minicystis rosea","na":4,"nb":1,"a":[["TED%3AAF-A0A1L6LHU6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6LHU6-F1-model_v4_TED01"],["TED%3AAF-A0A1L6LWQ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L6LWQ0-F1-model_v4_TED01"],["TED%3AAF-A0A1L6L181-F1-model_v4_TED02","TED novel fold AF-A0A1L6L181-F1-model_v4_TED02"],["TED%3AAF-A0A1L6LWI8-F1-model_v4_TED02","TED novel fold AF-A0A1L6LWI8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A888845","Minicystis rosea"]]},{"id":"NCBITaxon:909420","l":"Neisseria meningitidis H44/76","na":4,"nb":1,"a":[["Pfam%3APF08794","Factor H binding protein, C-terminal"],["Pfam%3APF20937","Factor H binding protein, N-terminal"],["Pfam%3APF10093","Elongation-Factor P (EF-P) rhamnosyltransferase EarP"],["Pfam%3APF12951","Passenger-associated-transport-repeat"]],"b":[["NCBITaxon%3A909420","Neisseria meningitidis H44/76"]]},{"id":"NCBITaxon:914234","l":"Gelatoporia subvermispora B","na":4,"nb":1,"a":[["TED%3AAF-M2PE00-F1-model_v4_TED02","TED novel fold AF-M2PE00-F1-model_v4_TED02"],["TED%3AAF-M2R4A1-F1-model_v4_TED01","TED novel fold AF-M2R4A1-F1-model_v4_TED01"],["TED%3AAF-M2RBL3-F1-model_v4_TED01","TED novel fold AF-M2RBL3-F1-model_v4_TED01"],["TED%3AAF-M2RKN7-F1-model_v4_TED01","TED novel fold AF-M2RKN7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A914234","Gelatoporia subvermispora B"]]},{"id":"NCBITaxon:91943","l":"Hortaea werneckii","na":4,"nb":1,"a":[["TED%3AAF-A0A3M7FF58-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M7FF58-F1-model_v4_TED01"],["TED%3AAF-A0A3M7A540-F1-model_v4_TED02","TED novel fold AF-A0A3M7A540-F1-model_v4_TED02"],["TED%3AAF-A0A3M7EWD3-F1-model_v4_TED02","TED novel fold AF-A0A3M7EWD3-F1-model_v4_TED02"],["TED%3AAF-A0A3M7F0J9-F1-model_v4_TED01","TED novel fold AF-A0A3M7F0J9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A91943","Hortaea werneckii"]]},{"id":"NCBITaxon:933388","l":"Penicillium oxalicum 114-2","na":4,"nb":1,"a":[["Pfam%3APF27751","ATEG_07667 C-terminal domain"],["Pfam%3APF11402","Antifungal protein"],["Pfam%3APF12311","Protein of unknown function (DUF3632)"],["TED%3AAF-S8ATN5-F1-model_v4_TED01","TED highly-symmetric fold AF-S8ATN5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A933388","Penicillium oxalicum 114-2"]]},{"id":"NCBITaxon:935293","l":"Yersinia entomophaga","na":4,"nb":1,"a":[["Pfam%3APF05785","Rho-activating domain of cytotoxic necrotizing factor"],["Pfam%3APF20220","ABC toxin N-terminal region"],["Pfam%3APF18413","Neuraminidase-like domain"],["Pfam%3APF12256","Insecticide toxin TcdB middle/N-terminal region"]],"b":[["NCBITaxon%3A935293","Yersinia entomophaga"]]},{"id":"NCBITaxon:93625","l":"Psilocybe cyanescens","na":4,"nb":1,"a":[["Pfam%3APF02958","Ecdysteroid kinase-like family"],["TED%3AAF-A0A409XLW7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A409XLW7-F1-model_v4_TED01"],["TED%3AAF-A0A409XPY8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A409XPY8-F1-model_v4_TED01"],["TED%3AAF-A0A409XED8-F1-model_v4_TED01","TED novel fold AF-A0A409XED8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A93625","Psilocybe cyanescens"]]},{"id":"NCBITaxon:940295","l":"Ignicoccus islandicus DSM 13165","na":1,"nb":4,"a":[["TED%3AAF-A0A0U3FPM2-F1-model_v4_TED03","TED novel fold AF-A0A0U3FPM2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A54259","Ignicoccus islandicus"],["NCBITaxon%3A940295","Ignicoccus islandicus DSM 13165"],["NCBITaxon%3A114376","Ignicoccus pacificus"],["NCBITaxon%3A940294","Ignicoccus pacificus DSM 13166"]]},{"id":"NCBITaxon:960","l":"Bacteriovorax stolpii","na":4,"nb":1,"a":[["TED%3AAF-A0A2K9NQE9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2K9NQE9-F1-model_v4_TED01"],["TED%3AAF-A0A2K9NU38-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2K9NU38-F1-model_v4_TED03"],["TED%3AAF-A0A2K9NN30-F1-model_v4_TED02","TED novel fold AF-A0A2K9NN30-F1-model_v4_TED02"],["TED%3AAF-A0A2K9NUC6-F1-model_v4_TED01","TED novel fold AF-A0A2K9NUC6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A960","Bacteriovorax stolpii"]]},{"id":"NCBITaxon:1003181","l":"Candidatus Thiomargarita nelsonii","na":3,"nb":1,"a":[["TED%3AAF-A0A0A6P559-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A6P559-F1-model_v4_TED01"],["TED%3AAF-A0A176S227-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A176S227-F1-model_v4_TED01"],["TED%3AAF-A0A4E0QWU3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4E0QWU3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1003181","Candidatus Thiomargarita nelsonii"]]},{"id":"NCBITaxon:1003237","l":"Nitrospirillum viridazoti Y2","na":1,"nb":3,"a":[["TED%3AAF-G1Y2J3-F1-model_v4_TED02","TED novel fold AF-G1Y2J3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A28077","Nitrospirillum amazonense"],["NCBITaxon%3A3144925","Nitrospirillum viridazoti"],["NCBITaxon%3A1003237","Nitrospirillum viridazoti Y2"]]},{"id":"NCBITaxon:101127","l":"Hesseltinella vesiculosa","na":3,"nb":1,"a":[["TED%3AAF-A0A1X2GTE9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X2GTE9-F1-model_v4_TED01"],["TED%3AAF-A0A1X2GVH9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X2GVH9-F1-model_v4_TED01"],["TED%3AAF-A0A1X2GHF0-F1-model_v4_TED03","TED novel fold AF-A0A1X2GHF0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A101127","Hesseltinella vesiculosa"]]},{"id":"NCBITaxon:101510","l":"Rhodococcus jostii RHA1","na":3,"nb":1,"a":[["Pfam%3APF05258","Dna[CI] antecedent, DciA"],["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"],["TED%3AAF-Q0RZW9-F1-model_v4_TED03","TED highly-symmetric fold AF-Q0RZW9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A101510","Rhodococcus jostii RHA1"]]},{"id":"NCBITaxon:1017","l":"Capnocytophaga gingivalis","na":1,"nb":3,"a":[["TED%3AAF-A0A250FUG5-F1-model_v4_TED01","TED novel fold AF-A0A250FUG5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1017","Capnocytophaga gingivalis"],["NCBITaxon%3A553178","Capnocytophaga gingivalis ATCC 33624"],["NCBITaxon%3A45242","Capnocytophaga granulosa"]]},{"id":"NCBITaxon:102129","l":"Leptolyngbya sp. PCC 7375","na":3,"nb":1,"a":[["TED%3AAF-K9ELM8-F1-model_v4_TED01","TED highly-symmetric fold AF-K9ELM8-F1-model_v4_TED01"],["TED%3AAF-K9F3N8-F1-model_v4_TED02","TED highly-symmetric fold AF-K9F3N8-F1-model_v4_TED02"],["TED%3AAF-K9FA28-F1-model_v4_TED01","TED novel fold AF-K9FA28-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A102129","Leptolyngbya sp. PCC 7375"]]},{"id":"NCBITaxon:1035193","l":"Capnocytophaga sp. oral taxon 326 str. F0382","na":3,"nb":1,"a":[["TED%3AAF-L1Q2A5-F1-model_v4_TED01","TED highly-symmetric fold AF-L1Q2A5-F1-model_v4_TED01"],["TED%3AAF-L1PA32-F1-model_v4_TED01","TED novel fold AF-L1PA32-F1-model_v4_TED01"],["TED%3AAF-L1PEF0-F1-model_v4_TED01","TED novel fold AF-L1PEF0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1035193","Capnocytophaga sp. oral taxon 326 str. F0382"]]},{"id":"NCBITaxon:1038928","l":"Streptomyces xinghaiensis","na":1,"nb":3,"a":[["TED%3AAF-A0A3R7FP99-F1-model_v4_TED01","TED novel fold AF-A0A3R7FP99-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1906","Streptomyces fradiae"],["NCBITaxon%3A1038928","Streptomyces xinghaiensis"],["NCBITaxon%3A1038929","Streptomyces xinghaiensis S187"]]},{"id":"NCBITaxon:106004","l":"Leucosporidium creatinivorum","na":3,"nb":1,"a":[["TED%3AAF-A0A1Y2CPR7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y2CPR7-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2EW19-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Y2EW19-F1-model_v4_TED02"],["TED%3AAF-A0A1Y2G0B4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y2G0B4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A106004","Leucosporidium creatinivorum"]]},{"id":"NCBITaxon:1076126","l":"Phytohabitans houttuyneae","na":3,"nb":1,"a":[["TED%3AAF-A0A6V8KGS6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6V8KGS6-F1-model_v4_TED01"],["TED%3AAF-A0A6V8KHM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6V8KHM3-F1-model_v4_TED01"],["TED%3AAF-A0A6V8K7N7-F1-model_v4_TED01","TED novel fold AF-A0A6V8K7N7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1076126","Phytohabitans houttuyneae"]]},{"id":"NCBITaxon:1076256","l":"Armillaria solidipes","na":3,"nb":1,"a":[["TED%3AAF-A0A2H3BR39-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H3BR39-F1-model_v4_TED02"],["TED%3AAF-A0A2H3B8U4-F1-model_v4_TED01","TED novel fold AF-A0A2H3B8U4-F1-model_v4_TED01"],["TED%3AAF-A0A2H3BBY0-F1-model_v4_TED02","TED novel fold AF-A0A2H3BBY0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1076256","Armillaria solidipes"]]},{"id":"NCBITaxon:1121336","l":"Thermoclostridium stercorarium subsp. thermolacticum DSM 2910","na":1,"nb":3,"a":[["TED%3AAF-A0A1B1YDV6-F1-model_v4_TED02","TED novel fold AF-A0A1B1YDV6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1510","Thermoclostridium stercorarium"],["NCBITaxon%3A29351","Thermoclostridium stercorarium subsp. thermolacticum"],["NCBITaxon%3A1121336","Thermoclostridium stercorarium subsp. thermolacticum DSM 2910"]]},{"id":"NCBITaxon:1125630","l":"Klebsiella pneumoniae subsp. pneumoniae HS11286","na":3,"nb":1,"a":[["Pfam%3APF16527","Two-component sensor protein CpxA, periplasmic domain"],["Pfam%3APF03883","Peroxide stress protein YaaA"],["PROSITE%3APS01081","TetR-type HTH domain signature"]],"b":[["NCBITaxon%3A1125630","Klebsiella pneumoniae subsp. pneumoniae HS11286"]]},{"id":"NCBITaxon:114699","l":"Streptomyces asiaticus","na":1,"nb":3,"a":[["TED%3AAF-A0A6G4A920-F1-model_v4_TED03","TED novel fold AF-A0A6G4A920-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A114699","Streptomyces asiaticus"],["NCBITaxon%3A3098222","Streptomyces asiaticus subsp. ignotus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:1147111","l":"Fusarium euwallaceae","na":3,"nb":1,"a":[["TED%3AAF-A0A430KYR9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A430KYR9-F1-model_v4_TED01"],["TED%3AAF-A0A430LI96-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A430LI96-F1-model_v4_TED01"],["TED%3AAF-A0A430LBG1-F1-model_v4_TED03","TED novel fold AF-A0A430LBG1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1147111","Fusarium euwallaceae"]]},{"id":"NCBITaxon:1149755","l":"Hyaloscypha variabilis F","na":3,"nb":1,"a":[["TED%3AAF-A0A2J6S371-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2J6S371-F1-model_v4_TED03"],["TED%3AAF-A0A2J6QYZ0-F1-model_v4_TED03","TED novel fold AF-A0A2J6QYZ0-F1-model_v4_TED03"],["TED%3AAF-A0A2J6RQN3-F1-model_v4_TED02","TED novel fold AF-A0A2J6RQN3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1149755","Hyaloscypha variabilis F"]]},{"id":"NCBITaxon:115778","l":"Leuconostoc gasicomitatum","na":1,"nb":3,"a":[["TED%3AAF-A0A7H9BD19-F1-model_v4_TED01","TED novel fold AF-A0A7H9BD19-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A115778","Leuconostoc gasicomitatum"],["NCBITaxon%3A1165892","Leuconostoc gasicomitatum KG16-1"],["NCBITaxon%3A762550","Leuconostoc gasicomitatum LMG 18811"]]},{"id":"NCBITaxon:116188","l":"Streptomyces coeruleorubidus","na":1,"nb":3,"a":[["Pfam%3APF13732","ATP-binding protein DrrA1-3-like, C-terminal domain"]],"b":[["NCBITaxon%3A1521190","Streptomyces bellus subsp. cirolerosus"],["NCBITaxon%3A116188","Streptomyces coeruleorubidus"],["NCBITaxon%3A146536","Streptomyces curacoi"]]},{"id":"NCBITaxon:1169539","l":"Vitrella brassicaformis","na":3,"nb":1,"a":[["TED%3AAF-A0A7S1JS09-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S1JS09-F1-model_v4_TED02"],["TED%3AAF-A0A7S1P3H9-F1-model_v4_TED02","TED novel fold AF-A0A7S1P3H9-F1-model_v4_TED02"],["TED%3AAF-A0A7S1P6L5-F1-model_v4_TED02","TED novel fold AF-A0A7S1P6L5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1169539","Vitrella brassicaformis"]]},{"id":"NCBITaxon:1195236","l":"Ruminiclostridium cellobioparum subsp. termitidis CT1112","na":1,"nb":3,"a":[["TED%3AAF-S0FP91-F1-model_v4_TED01","TED highly-symmetric fold AF-S0FP91-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29355","Ruminiclostridium cellobioparum"],["NCBITaxon%3A29371","Ruminiclostridium cellobioparum subsp. termitidis"],["NCBITaxon%3A1195236","Ruminiclostridium cellobioparum subsp. termitidis CT1112"]]},{"id":"NCBITaxon:1196095","l":"Gilliamella apicola","na":1,"nb":3,"a":[["TED%3AAF-A0A1B9LJZ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B9LJZ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1196095","Gilliamella apicola"],["NCBITaxon%3A1445513","Gilliamella apicola SCGC AB-598-B02"],["NCBITaxon%3A1445514","Gilliamella apicola SCGC AB-598-I20"]]},{"id":"NCBITaxon:1227467","l":"Halorubrum distributum JCM 9100","na":1,"nb":3,"a":[["TED%3AAF-M0EUZ2-F1-model_v4_TED02","TED novel fold AF-M0EUZ2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29283","Halorubrum distributum"],["NCBITaxon%3A1227468","Halorubrum distributum JCM 10118"],["NCBITaxon%3A1227467","Halorubrum distributum JCM 9100"]]},{"id":"NCBITaxon:1230097","l":"Cytospora leucostoma","na":3,"nb":1,"a":[["TED%3AAF-A0A423XFD9-F1-model_v4_TED03","TED novel fold AF-A0A423XFD9-F1-model_v4_TED03"],["TED%3AAF-A0A423XFH9-F1-model_v4_TED02","TED novel fold AF-A0A423XFH9-F1-model_v4_TED02"],["TED%3AAF-A0A423XKU4-F1-model_v4_TED02","TED novel fold AF-A0A423XKU4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1230097","Cytospora leucostoma"]]},{"id":"NCBITaxon:1233171","l":"Paraclostridium bifermentans ATCC 638 = DSM 14991","na":1,"nb":3,"a":[["TED%3AAF-T4VPR8-F1-model_v4_TED01","TED novel fold AF-T4VPR8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1490","Paraclostridium bifermentans"],["NCBITaxon%3A1233171","Paraclostridium bifermentans ATCC 638 = DSM 14991"],["NCBITaxon%3A2663174","Paraclostridium bifermentans subsp. bifermentans"]]},{"id":"NCBITaxon:1235835","l":"Anaerotruncus sp. G3(2012)","na":3,"nb":1,"a":[["TED%3AAF-R9L8U2-F1-model_v4_TED01","TED novel fold AF-R9L8U2-F1-model_v4_TED01"],["TED%3AAF-R9LRP4-F1-model_v4_TED03","TED novel fold AF-R9LRP4-F1-model_v4_TED03"],["TED%3AAF-R9LW99-F1-model_v4_TED01","TED novel fold AF-R9LW99-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1235835","Anaerotruncus sp. G3(2012)"]]},{"id":"NCBITaxon:1243014","l":"Vibrio thalassae","na":1,"nb":3,"a":[["TED%3AAF-A0A240ENP9-F1-model_v4_TED01","TED novel fold AF-A0A240ENP9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1387297","Falsiporphyromonas endometrii"],["NCBITaxon%3A1268269","Geojedonia litorea"],["NCBITaxon%3A1243014","Vibrio thalassae"]]},{"id":"NCBITaxon:1252","l":"Leuconostoc carnosum","na":1,"nb":3,"a":[["TED%3AAF-A0A2U3PKG3-F1-model_v4_TED01","TED novel fold AF-A0A2U3PKG3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1252","Leuconostoc carnosum"],["NCBITaxon%3A1229758","Leuconostoc carnosum JB16"],["NCBITaxon%3A1046593","Leuconostoc carnosum KCTC 3525"]]},{"id":"NCBITaxon:1257118","l":"Acanthamoeba castellanii str. Neff","na":3,"nb":1,"a":[["TED%3AAF-L8GX64-F1-model_v4_TED01","TED highly-symmetric fold AF-L8GX64-F1-model_v4_TED01"],["TED%3AAF-L8GQY5-F1-model_v4_TED03","TED novel fold AF-L8GQY5-F1-model_v4_TED03"],["TED%3AAF-L8H6A2-F1-model_v4_TED01","TED novel fold AF-L8H6A2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1257118","Acanthamoeba castellanii str. Neff"]]},{"id":"NCBITaxon:1262753","l":"Bacteroides sp. CAG:927","na":3,"nb":1,"a":[["TED%3AAF-R5B046-F1-model_v4_TED02","TED highly-symmetric fold AF-R5B046-F1-model_v4_TED02"],["TED%3AAF-R5AYB1-F1-model_v4_TED04","TED novel fold AF-R5AYB1-F1-model_v4_TED04"],["TED%3AAF-R5B5Z5-F1-model_v4_TED01","TED novel fold AF-R5B5Z5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262753","Bacteroides sp. CAG:927"]]},{"id":"NCBITaxon:1262795","l":"Clostridium sp. CAG:307","na":3,"nb":1,"a":[["TED%3AAF-R7GGA9-F1-model_v4_TED02","TED highly-symmetric fold AF-R7GGA9-F1-model_v4_TED02"],["TED%3AAF-R7GHK2-F1-model_v4_TED02","TED highly-symmetric fold AF-R7GHK2-F1-model_v4_TED02"],["TED%3AAF-R7GB72-F1-model_v4_TED04","TED novel fold AF-R7GB72-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1262795","Clostridium sp. CAG:307"]]},{"id":"NCBITaxon:1262821","l":"Clostridium sp. CAG:568","na":3,"nb":1,"a":[["TED%3AAF-R5ZMH9-F1-model_v4_TED01","TED highly-symmetric fold AF-R5ZMH9-F1-model_v4_TED01"],["TED%3AAF-R5ZCU7-F1-model_v4_TED01","TED novel fold AF-R5ZCU7-F1-model_v4_TED01"],["TED%3AAF-R5ZER1-F1-model_v4_TED03","TED novel fold AF-R5ZER1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1262821","Clostridium sp. CAG:568"]]},{"id":"NCBITaxon:1262831","l":"Clostridium sp. CAG:678","na":3,"nb":1,"a":[["TED%3AAF-R5KLS5-F1-model_v4_TED02","TED highly-symmetric fold AF-R5KLS5-F1-model_v4_TED02"],["TED%3AAF-R5KP39-F1-model_v4_TED03","TED highly-symmetric fold AF-R5KP39-F1-model_v4_TED03"],["TED%3AAF-R5KNL4-F1-model_v4_TED01","TED novel fold AF-R5KNL4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262831","Clostridium sp. CAG:678"]]},{"id":"NCBITaxon:1263023","l":"Firmicutes bacterium CAG:449","na":3,"nb":1,"a":[["TED%3AAF-R6QYP7-F1-model_v4_TED01","TED highly-symmetric fold AF-R6QYP7-F1-model_v4_TED01"],["TED%3AAF-R6R7G3-F1-model_v4_TED01","TED highly-symmetric fold AF-R6R7G3-F1-model_v4_TED01"],["TED%3AAF-R6RCJ9-F1-model_v4_TED03","TED novel fold AF-R6RCJ9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1263023","Firmicutes bacterium CAG:449"]]},{"id":"NCBITaxon:1263870","l":"Aporhodopirellula sallentina SM41","na":1,"nb":3,"a":[["TED%3AAF-M5TT15-F1-model_v4_TED02","TED novel fold AF-M5TT15-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1263869","Aporhodopirellula sallentina"],["NCBITaxon%3A1263870","Aporhodopirellula sallentina SM41"],["NCBITaxon%3A2024855","Rhodopirellula sp."]]},{"id":"NCBITaxon:1265868","l":"Streptomyces rimosus subsp. rimosus ATCC 10970","na":1,"nb":3,"a":[["TED%3AAF-L8EUT2-F1-model_v4_TED01","TED highly-symmetric fold AF-L8EUT2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1927","Streptomyces rimosus"],["NCBITaxon%3A132474","Streptomyces rimosus subsp. rimosus"],["NCBITaxon%3A1265868","Streptomyces rimosus subsp. rimosus ATCC 10970"]]},{"id":"NCBITaxon:1267423","l":"Roseivirga pacifica","na":3,"nb":1,"a":[["TED%3AAF-A0A1I0MEP5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I0MEP5-F1-model_v4_TED02"],["TED%3AAF-A0A1I0RG98-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I0RG98-F1-model_v4_TED01"],["TED%3AAF-A0A4D7JNA0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4D7JNA0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1267423","Roseivirga pacifica"]]},{"id":"NCBITaxon:129364","l":"Phytophthora rubi","na":3,"nb":1,"a":[["TED%3AAF-A0A6A3GAK5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A3GAK5-F1-model_v4_TED01"],["TED%3AAF-A0A6A3IQC8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A3IQC8-F1-model_v4_TED01"],["TED%3AAF-A0A6A3K0A8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A3K0A8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A129364","Phytophthora rubi"]]},{"id":"NCBITaxon:1295009","l":"Candidatus Methanomassiliicoccus intestinalis Issoire-Mx1","na":3,"nb":1,"a":[["TED%3AAF-R9T6Q3-F1-model_v4_TED04","TED highly-symmetric fold AF-R9T6Q3-F1-model_v4_TED04"],["TED%3AAF-R9TAZ5-F1-model_v4_TED01","TED highly-symmetric fold AF-R9TAZ5-F1-model_v4_TED01"],["TED%3AAF-R9T6T6-F1-model_v4_TED01","TED novel fold AF-R9T6T6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1295009","Candidatus Methanomassiliicoccus intestinalis Issoire-Mx1"]]},{"id":"NCBITaxon:1297742","l":"Pseudomyxococcus hansupus","na":1,"nb":3,"a":[["TED%3AAF-A0A0H4X3W5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0H4X3W5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A51","Chondromyces apiculatus"],["NCBITaxon%3A1192034","Chondromyces apiculatus DSM 436"],["NCBITaxon%3A1297742","Pseudomyxococcus hansupus"]]},{"id":"NCBITaxon:130081","l":"Galdieria sulphuraria","na":3,"nb":1,"a":[["Pfam%3APF04483","Protein of unknown function (DUF565)"],["TED%3AAF-M2VTL8-F1-model_v4_TED02","TED highly-symmetric fold AF-M2VTL8-F1-model_v4_TED02"],["TED%3AAF-M2XJR4-F1-model_v4_TED04","TED highly-symmetric fold AF-M2XJR4-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A130081","Galdieria sulphuraria"]]},{"id":"NCBITaxon:131363","l":"Fusarium ambrosium","na":3,"nb":1,"a":[["TED%3AAF-A0A428RPT4-F1-model_v4_TED01","TED novel fold AF-A0A428RPT4-F1-model_v4_TED01"],["TED%3AAF-A0A428V172-F1-model_v4_TED03","TED novel fold AF-A0A428V172-F1-model_v4_TED03"],["TED%3AAF-A0A428V1N4-F1-model_v4_TED01","TED novel fold AF-A0A428V1N4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A131363","Fusarium ambrosium"]]},{"id":"NCBITaxon:1317","l":"Streptococcus downei","na":1,"nb":3,"a":[["Pfam%3APF13199","Glycosyl hydrolase family 66"]],"b":[["NCBITaxon%3A1317","Streptococcus downei"],["NCBITaxon%3A904293","Streptococcus downei F0415"],["NCBITaxon%3A764290","Streptococcus downei MFe28"]]},{"id":"NCBITaxon:1321773","l":"Atopobium sp. oral taxon 810 str. F0209","na":3,"nb":1,"a":[["TED%3AAF-U1WDF8-F1-model_v4_TED01","TED novel fold AF-U1WDF8-F1-model_v4_TED01"],["TED%3AAF-U1WME7-F1-model_v4_TED02","TED novel fold AF-U1WME7-F1-model_v4_TED02"],["TED%3AAF-U1WWD2-F1-model_v4_TED03","TED novel fold AF-U1WWD2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1321773","Atopobium sp. oral taxon 810 str. F0209"]]},{"id":"NCBITaxon:1329250","l":"Weissella oryzae SG25","na":3,"nb":1,"a":[["Pfam%3APF26322","Botulinum-like neurotoxin Wo, C-terminal beta-trefoil domain"],["Pfam%3APF26321","Botulinum-like neurotoxin Wo, concanavalin A-like domain"],["TED%3AAF-A0A069CU70-F1-model_v4_TED02","TED novel fold AF-A0A069CU70-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1329250","Weissella oryzae SG25"]]},{"id":"NCBITaxon:1331910","l":"Thermogutta terrifontis","na":3,"nb":1,"a":[["TED%3AAF-A0A286RGV2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A286RGV2-F1-model_v4_TED01"],["TED%3AAF-A0A286RH16-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A286RH16-F1-model_v4_TED02"],["TED%3AAF-A0A286RL45-F1-model_v4_TED03","TED novel fold AF-A0A286RL45-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1331910","Thermogutta terrifontis"]]},{"id":"NCBITaxon:1334565","l":"Listeria monocytogenes EGD","na":3,"nb":1,"a":[["Pfam%3APF09479","Listeria-Bacteroides repeat domain (List_Bact_rpt)"],["Pfam%3APF13457","GW (Gly-Tryp) dipeptide domain"],["Pfam%3APF12354","Bacterial adhesion/invasion protein N terminal"]],"b":[["NCBITaxon%3A1334565","Listeria monocytogenes EGD"]]},{"id":"NCBITaxon:135569","l":"Helicobacter apodemus","na":1,"nb":3,"a":[["TED%3AAF-A0A4U8UFG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8UFG8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A135569","Helicobacter apodemus"],["NCBITaxon%3A37372","Helicobacter bilis"],["NCBITaxon%3A1408441","Helicobacter bilis ATCC 51630"]]},{"id":"NCBITaxon:1399","l":"Cytobacillus firmus","na":1,"nb":3,"a":[["TED%3AAF-A0A800NFK9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A800NFK9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1399","Cytobacillus firmus"],["NCBITaxon%3A1307436","Cytobacillus firmus DS1"],["NCBITaxon%3A1314753","Cytobacillus firmus NBRC 15306"]]},{"id":"NCBITaxon:1400387","l":"Bythopirellula goksoeyrii","na":3,"nb":1,"a":[["TED%3AAF-A0A5B9Q7V0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B9Q7V0-F1-model_v4_TED01"],["TED%3AAF-A0A5B9QF75-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A5B9QF75-F1-model_v4_TED06"],["TED%3AAF-A0A5B9QUN1-F1-model_v4_TED01","TED novel fold AF-A0A5B9QUN1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1400387","Bythopirellula goksoeyrii"]]},{"id":"NCBITaxon:1423728","l":"Lentilactobacillus buchneri DSM 20057","na":1,"nb":3,"a":[["TED%3AAF-A0A4V3A4G3-F1-model_v4_TED01","TED novel fold AF-A0A4V3A4G3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1581","Lentilactobacillus buchneri"],["NCBITaxon%3A1423728","Lentilactobacillus buchneri DSM 20057"],["NCBITaxon%3A2737513","Lentilactobacillus buchneri subsp. buchneri"]]},{"id":"NCBITaxon:1434108","l":"Methanosarcina barkeri MS","na":1,"nb":3,"a":[["TED%3AAF-A0A0E3QTL0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0E3QTL0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2208","Methanosarcina barkeri"],["NCBITaxon%3A1298606","Methanosarcina barkeri JCM 10043"],["NCBITaxon%3A1434108","Methanosarcina barkeri MS"]]},{"id":"NCBITaxon:1437360","l":"Bradyrhizobium erythrophlei","na":3,"nb":1,"a":[["TED%3AAF-A0A1H4W4K7-F1-model_v4_TED01","TED novel fold AF-A0A1H4W4K7-F1-model_v4_TED01"],["TED%3AAF-A0A1M5NBM0-F1-model_v4_TED01","TED novel fold AF-A0A1M5NBM0-F1-model_v4_TED01"],["TED%3AAF-A0A1N6HZW8-F1-model_v4_TED02","TED novel fold AF-A0A1N6HZW8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1437360","Bradyrhizobium erythrophlei"]]},{"id":"NCBITaxon:146919","l":"Salinibacter ruber","na":1,"nb":3,"a":[["TED%3AAF-A0A840D6P8-F1-model_v4_TED02","TED novel fold AF-A0A840D6P8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A146919","Salinibacter ruber"],["NCBITaxon%3A309807","Salinibacter ruber DSM 13855"],["NCBITaxon%3A761659","Salinibacter ruber M8"]]},{"id":"NCBITaxon:1485010","l":"[Pythium] brassicae (nom. inval.)","na":3,"nb":1,"a":[["TED%3AAF-A0A5D6XQI2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5D6XQI2-F1-model_v4_TED01"],["TED%3AAF-A0A5D6Y5L6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5D6Y5L6-F1-model_v4_TED01"],["TED%3AAF-A0A5D6Y7V7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5D6Y7V7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1485010","[Pythium] brassicae (nom. inval.)"]]},{"id":"NCBITaxon:148604","l":"Limosilactobacillus ingluviei","na":1,"nb":3,"a":[["TED%3AAF-A0A0R2GUF0-F1-model_v4_TED01","TED novel fold AF-A0A0R2GUF0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A148604","Limosilactobacillus ingluviei"],["NCBITaxon%3A1423760","Limosilactobacillus ingluviei DSM 15946"],["NCBITaxon%3A1203076","Limosilactobacillus ingluviei str. Autruche 4"]]},{"id":"NCBITaxon:1506","l":"Clostridium sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A3D5KI35-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D5KI35-F1-model_v4_TED01"],["TED%3AAF-A0A316SA98-F1-model_v4_TED01","TED novel fold AF-A0A316SA98-F1-model_v4_TED01"],["TED%3AAF-A0A3B9UYE3-F1-model_v4_TED01","TED novel fold AF-A0A3B9UYE3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1506","Clostridium sp."]]},{"id":"NCBITaxon:1509431","l":"Candidatus Magnetomorum sp. HK-1","na":3,"nb":1,"a":[["TED%3AAF-A0A0M9EAF7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0M9EAF7-F1-model_v4_TED02"],["TED%3AAF-A0A0M9E7D0-F1-model_v4_TED02","TED novel fold AF-A0A0M9E7D0-F1-model_v4_TED02"],["TED%3AAF-A0A0M9E7N0-F1-model_v4_TED02","TED novel fold AF-A0A0M9E7N0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1509431","Candidatus Magnetomorum sp. HK-1"]]},{"id":"NCBITaxon:1520823","l":"Lachnospiraceae bacterium NE2001","na":3,"nb":1,"a":[["TED%3AAF-A0A1H9FYV6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H9FYV6-F1-model_v4_TED02"],["TED%3AAF-A0A1H9F501-F1-model_v4_TED02","TED novel fold AF-A0A1H9F501-F1-model_v4_TED02"],["TED%3AAF-A0A1H9LDC3-F1-model_v4_TED01","TED novel fold AF-A0A1H9LDC3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1520823","Lachnospiraceae bacterium NE2001"]]},{"id":"NCBITaxon:1534","l":"Clostridium kluyveri","na":1,"nb":3,"a":[["TED%3AAF-A0A1L5FEG9-F1-model_v4_TED01","TED novel fold AF-A0A1L5FEG9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1534","Clostridium kluyveri"],["NCBITaxon%3A431943","Clostridium kluyveri DSM 555"],["NCBITaxon%3A583346","Clostridium kluyveri NBRC 12016"]]},{"id":"NCBITaxon:1537994","l":"Alteromonas sp. LOR","na":3,"nb":1,"a":[["Pfam%3APF08531","Alpha-L-rhamnosidase N-terminal domain"],["Pfam%3APF05592","Bacterial alpha-L-rhamnosidase concanavalin-like domain"],["Pfam%3APF15892","BNR repeat-containing family member"]],"b":[["NCBITaxon%3A1537994","Alteromonas sp. LOR"]]},{"id":"NCBITaxon:1552123","l":"Listeria booriae","na":3,"nb":1,"a":[["TED%3AAF-A0A7X0TLR3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X0TLR3-F1-model_v4_TED01"],["TED%3AAF-A0A841XX79-F1-model_v4_TED03","TED novel fold AF-A0A841XX79-F1-model_v4_TED03"],["TED%3AAF-A0A842AXH7-F1-model_v4_TED01","TED novel fold AF-A0A842AXH7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1552123","Listeria booriae"]]},{"id":"NCBITaxon:1560006","l":"Silvibacterium dinghuense","na":3,"nb":1,"a":[["TED%3AAF-A0A4Q1SDA6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A4Q1SDA6-F1-model_v4_TED04"],["TED%3AAF-A0A4Q1SDV9-F1-model_v4_TED03","TED novel fold AF-A0A4Q1SDV9-F1-model_v4_TED03"],["TED%3AAF-A0A4Q1SJV1-F1-model_v4_TED02","TED novel fold AF-A0A4Q1SJV1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1560006","Silvibacterium dinghuense"]]},{"id":"NCBITaxon:157072","l":"Aphanomyces invadans","na":3,"nb":1,"a":[["TED%3AAF-A0A3R6WHR1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R6WHR1-F1-model_v4_TED01"],["TED%3AAF-A0A024TYB0-F1-model_v4_TED03","TED novel fold AF-A0A024TYB0-F1-model_v4_TED03"],["TED%3AAF-A0A024U7U8-F1-model_v4_TED02","TED novel fold AF-A0A024U7U8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A157072","Aphanomyces invadans"]]},{"id":"NCBITaxon:1617433","l":"Candidatus Hinthialibacteria bacterium OLB16","na":3,"nb":1,"a":[["TED%3AAF-A0A136MB65-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A136MB65-F1-model_v4_TED01"],["TED%3AAF-A0A136MHY2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A136MHY2-F1-model_v4_TED01"],["TED%3AAF-A0A136MTX9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A136MTX9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1617433","Candidatus Hinthialibacteria bacterium OLB16"]]},{"id":"NCBITaxon:161879","l":"Corynebacterium kroppenstedtii","na":1,"nb":3,"a":[["TED%3AAF-A0A2N6TDE9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N6TDE9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A161879","Corynebacterium kroppenstedtii"],["NCBITaxon%3A645127","Corynebacterium kroppenstedtii DSM 44385"],["NCBITaxon%3A2736648","Corynebacterium kroppenstedtii subsp. demodicis"]]},{"id":"NCBITaxon:1618960","l":"Parcubacteria group bacterium GW2011_GWF2_38_76","na":3,"nb":1,"a":[["TED%3AAF-A0A0G0NWX6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G0NWX6-F1-model_v4_TED01"],["TED%3AAF-A0A0G0N710-F1-model_v4_TED01","TED novel fold AF-A0A0G0N710-F1-model_v4_TED01"],["TED%3AAF-A0A0G0NYU7-F1-model_v4_TED03","TED novel fold AF-A0A0G0NYU7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1618960","Parcubacteria group bacterium GW2011_GWF2_38_76"]]},{"id":"NCBITaxon:1622","l":"Ligilactobacillus murinus","na":1,"nb":3,"a":[["TED%3AAF-A0A4S2E8S9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4S2E8S9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1622","Ligilactobacillus murinus"],["NCBITaxon%3A1235801","Ligilactobacillus murinus ASF361"],["NCBITaxon%3A1423772","Ligilactobacillus murinus DSM 20452 = NBRC 14221"]]},{"id":"NCBITaxon:164328","l":"Phytophthora ramorum","na":3,"nb":1,"a":[["TED%3AAF-H3GJD6-F1-model_v4_TED01","TED novel fold AF-H3GJD6-F1-model_v4_TED01"],["TED%3AAF-H3GUW9-F1-model_v4_TED01","TED novel fold AF-H3GUW9-F1-model_v4_TED01"],["TED%3AAF-H3GWV4-F1-model_v4_TED01","TED novel fold AF-H3GWV4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A164328","Phytophthora ramorum"]]},{"id":"NCBITaxon:1660156","l":"bacterium SCN 62-11","na":3,"nb":1,"a":[["TED%3AAF-A0A1E4EMS3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1E4EMS3-F1-model_v4_TED03"],["TED%3AAF-A0A1E4FA37-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E4FA37-F1-model_v4_TED01"],["TED%3AAF-A0A1E4FS61-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1E4FS61-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1660156","bacterium SCN 62-11"]]},{"id":"NCBITaxon:167371","l":"Phellinidium pouzarii","na":3,"nb":1,"a":[["TED%3AAF-A0A4S4L103-F1-model_v4_TED02","TED novel fold AF-A0A4S4L103-F1-model_v4_TED02"],["TED%3AAF-A0A4S4L7F3-F1-model_v4_TED01","TED novel fold AF-A0A4S4L7F3-F1-model_v4_TED01"],["TED%3AAF-A0A4S4LHK8-F1-model_v4_TED01","TED novel fold AF-A0A4S4LHK8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A167371","Phellinidium pouzarii"]]},{"id":"NCBITaxon:168471","l":"Laribacter hongkongensis","na":1,"nb":3,"a":[["TED%3AAF-A0A248LK09-F1-model_v4_TED01","TED novel fold AF-A0A248LK09-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A168471","Laribacter hongkongensis"],["NCBITaxon%3A1122157","Laribacter hongkongensis DSM 14985"],["NCBITaxon%3A557598","Laribacter hongkongensis HLHK9"]]},{"id":"NCBITaxon:1690","l":"Bifidobacterium pseudolongum subsp. globosum","na":1,"nb":3,"a":[["TED%3AAF-A0A4Q5B3M5-F1-model_v4_TED01","TED novel fold AF-A0A4Q5B3M5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1694","Bifidobacterium pseudolongum"],["NCBITaxon%3A1690","Bifidobacterium pseudolongum subsp. globosum"],["NCBITaxon%3A1410605","Bifidobacterium pseudolongum subsp. globosum DSM 20092"]]},{"id":"NCBITaxon:169430","l":"Paraburkholderia hospita","na":1,"nb":3,"a":[["TED%3AAF-A0A244DYB0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A244DYB0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A292","Burkholderia cepacia"],["NCBITaxon%3A169430","Paraburkholderia hospita"],["NCBITaxon%3A1171375","Paraburkholderia hospita BS001"]]},{"id":"NCBITaxon:1703410","l":"Phycisphaerae bacterium SM1_79","na":3,"nb":1,"a":[["TED%3AAF-A0A0S8KRY8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S8KRY8-F1-model_v4_TED01"],["TED%3AAF-A0A0S8KIV3-F1-model_v4_TED04","TED novel fold AF-A0A0S8KIV3-F1-model_v4_TED04"],["TED%3AAF-A0A0S8KNG4-F1-model_v4_TED04","TED novel fold AF-A0A0S8KNG4-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1703410","Phycisphaerae bacterium SM1_79"]]},{"id":"NCBITaxon:1712","l":"Cellulomonas gelida","na":1,"nb":3,"a":[["TED%3AAF-A0A4Y3KKM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y3KKM3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1712","Cellulomonas gelida"],["NCBITaxon%3A475662","Halomonas beimenensis"],["NCBITaxon%3A454151","Luteolibacter algae"]]},{"id":"NCBITaxon:171674","l":"Inquilinus limosus","na":1,"nb":3,"a":[["TED%3AAF-A0A211ZKE4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A211ZKE4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A171674","Inquilinus limosus"],["NCBITaxon%3A1122125","Inquilinus limosus DSM 16000"],["NCBITaxon%3A1398085","Inquilinus limosus MP06"]]},{"id":"NCBITaxon:172671","l":"Pinguiococcus pyrenoidosus","na":3,"nb":1,"a":[["TED%3AAF-A0A7R9U927-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7R9U927-F1-model_v4_TED01"],["TED%3AAF-A0A7R9U4U2-F1-model_v4_TED01","TED novel fold AF-A0A7R9U4U2-F1-model_v4_TED01"],["TED%3AAF-A0A7R9YBD8-F1-model_v4_TED01","TED novel fold AF-A0A7R9YBD8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A172671","Pinguiococcus pyrenoidosus"]]},{"id":"NCBITaxon:1727","l":"Corynebacterium variabile","na":1,"nb":3,"a":[["TED%3AAF-A0A120N518-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A120N518-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1665","Arthrobacter globiformis"],["NCBITaxon%3A1727","Corynebacterium variabile"],["NCBITaxon%3A858619","Corynebacterium variabile DSM 44702"]]},{"id":"NCBITaxon:179636","l":"Alicycliphilus denitrificans","na":1,"nb":3,"a":[["TED%3AAF-A0A858ZP78-F1-model_v4_TED01","TED novel fold AF-A0A858ZP78-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A179636","Alicycliphilus denitrificans"],["NCBITaxon%3A596153","Alicycliphilus denitrificans BC"],["NCBITaxon%3A596154","Alicycliphilus denitrificans K601"]]},{"id":"NCBITaxon:1797346","l":"Bacteroidetes bacterium GWF2_40_13","na":3,"nb":1,"a":[["TED%3AAF-A0A1F3JPW9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F3JPW9-F1-model_v4_TED01"],["TED%3AAF-A0A1F3JPR4-F1-model_v4_TED02","TED novel fold AF-A0A1F3JPR4-F1-model_v4_TED02"],["TED%3AAF-A0A1F3JRR7-F1-model_v4_TED02","TED novel fold AF-A0A1F3JRR7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797346","Bacteroidetes bacterium GWF2_40_13"]]},{"id":"NCBITaxon:1797395","l":"Bdellovibrionales bacterium RIFOXYC1_FULL_37_79","na":3,"nb":1,"a":[["TED%3AAF-A0A1F3VGU5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F3VGU5-F1-model_v4_TED01"],["TED%3AAF-A0A1F3VHT0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1F3VHT0-F1-model_v4_TED03"],["TED%3AAF-A0A1F3VD82-F1-model_v4_TED01","TED novel fold AF-A0A1F3VD82-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797395","Bdellovibrionales bacterium RIFOXYC1_FULL_37_79"]]},{"id":"NCBITaxon:179993","l":"Fusarium langsethiae","na":3,"nb":1,"a":[["TED%3AAF-A0A0N0DC99-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0N0DC99-F1-model_v4_TED01"],["TED%3AAF-A0A0N0DHX6-F1-model_v4_TED03","TED novel fold AF-A0A0N0DHX6-F1-model_v4_TED03"],["TED%3AAF-A0A0N1J303-F1-model_v4_TED02","TED novel fold AF-A0A0N1J303-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A179993","Fusarium langsethiae"]]},{"id":"NCBITaxon:1801619","l":"Collimonas sp. OK412","na":3,"nb":1,"a":[["Pfam%3APF27055","BilA ubiquitin-like domain 2"],["Pfam%3APF24702","Bacterial E2-like ubiquitin protein BilB"],["Pfam%3APF27312","BilD N-terminal domain"]],"b":[["NCBITaxon%3A1801619","Collimonas sp. OK412"]]},{"id":"NCBITaxon:1801952","l":"Planctomycetes bacterium GWC2_45_44","na":3,"nb":1,"a":[["TED%3AAF-A0A1G2X9S1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G2X9S1-F1-model_v4_TED01"],["TED%3AAF-A0A1G2XHM0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1G2XHM0-F1-model_v4_TED03"],["TED%3AAF-A0A1G2X9X7-F1-model_v4_TED02","TED novel fold AF-A0A1G2X9X7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1801952","Planctomycetes bacterium GWC2_45_44"]]},{"id":"NCBITaxon:1801971","l":"Planctomycetes bacterium RBG_16_64_12","na":3,"nb":1,"a":[["TED%3AAF-A0A1G3AF33-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1G3AF33-F1-model_v4_TED03"],["TED%3AAF-A0A1G3AK99-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G3AK99-F1-model_v4_TED02"],["TED%3AAF-A0A1G3AR13-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G3AR13-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801971","Planctomycetes bacterium RBG_16_64_12"]]},{"id":"NCBITaxon:180227","l":"Paramoeba aestuarina","na":3,"nb":1,"a":[["TED%3AAF-A0A7S4NTH0-F1-model_v4_TED01","TED novel fold AF-A0A7S4NTH0-F1-model_v4_TED01"],["TED%3AAF-A0A7S4P3P8-F1-model_v4_TED01","TED novel fold AF-A0A7S4P3P8-F1-model_v4_TED01"],["TED%3AAF-A0A7S4PJF2-F1-model_v4_TED02","TED novel fold AF-A0A7S4PJF2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A180227","Paramoeba aestuarina"]]},{"id":"NCBITaxon:1803814","l":"Theionarchaea archaeon DG-70-1","na":3,"nb":1,"a":[["TED%3AAF-A0A151ERH4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A151ERH4-F1-model_v4_TED01"],["TED%3AAF-A0A151EY16-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A151EY16-F1-model_v4_TED01"],["TED%3AAF-A0A151F5B7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A151F5B7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1803814","Theionarchaea archaeon DG-70-1"]]},{"id":"NCBITaxon:1831","l":"Rhodococcus sp. (in: high G+C Gram-positive bacteria)","na":3,"nb":1,"a":[["Pfam%3APF14525","AraC-binding-like domain"],["Pfam%3APF01613","Flavin reductase like domain"],["TED%3AAF-A0A7X7SF64-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X7SF64-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1831","Rhodococcus sp. (in: high G+C Gram-positive bacteria)"]]},{"id":"NCBITaxon:1834193","l":"Candidatus Enterococcus clewellii","na":3,"nb":1,"a":[["TED%3AAF-A0A242JUV6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A242JUV6-F1-model_v4_TED01"],["TED%3AAF-A0A242K8V1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A242K8V1-F1-model_v4_TED01"],["TED%3AAF-A0A242KEE4-F1-model_v4_TED04","TED novel fold AF-A0A242KEE4-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1834193","Candidatus Enterococcus clewellii"]]},{"id":"NCBITaxon:183478","l":"Stemphylium lycopersici","na":3,"nb":1,"a":[["TED%3AAF-A0A364MT81-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A364MT81-F1-model_v4_TED02"],["TED%3AAF-A0A364N992-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A364N992-F1-model_v4_TED01"],["TED%3AAF-A0A364N922-F1-model_v4_TED04","TED novel fold AF-A0A364N922-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A183478","Stemphylium lycopersici"]]},{"id":"NCBITaxon:1852","l":"Saccharomonospora viridis","na":1,"nb":3,"a":[["TED%3AAF-A0A837DC99-F1-model_v4_TED01","TED novel fold AF-A0A837DC99-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A40988","Saccharomonospora azurea"],["NCBITaxon%3A1852","Saccharomonospora viridis"],["NCBITaxon%3A471857","Saccharomonospora viridis DSM 43017"]]},{"id":"NCBITaxon:1856405","l":"Marisediminitalea lipolytica","na":3,"nb":1,"a":[["TED%3AAF-A0A1E8FFS9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E8FFS9-F1-model_v4_TED01"],["TED%3AAF-A0A1E8FJE8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E8FJE8-F1-model_v4_TED01"],["TED%3AAF-A0A1E8FD90-F1-model_v4_TED01","TED novel fold AF-A0A1E8FD90-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1856405","Marisediminitalea lipolytica"]]},{"id":"NCBITaxon:1866936","l":"bacterium ADurb.Bin243","na":3,"nb":1,"a":[["TED%3AAF-A0A1V5UDM0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5UDM0-F1-model_v4_TED01"],["TED%3AAF-A0A1V5UJ50-F1-model_v4_TED01","TED novel fold AF-A0A1V5UJ50-F1-model_v4_TED01"],["TED%3AAF-A0A1V5UQT9-F1-model_v4_TED02","TED novel fold AF-A0A1V5UQT9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1866936","bacterium ADurb.Bin243"]]},{"id":"NCBITaxon:1869","l":"Actinoplanes utahensis","na":1,"nb":3,"a":[["TED%3AAF-A0A0A6U9K1-F1-model_v4_TED02","TED novel fold AF-A0A0A6U9K1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1871","Actinoplanes sp."],["NCBITaxon%3A1869","Actinoplanes utahensis"],["NCBITaxon%3A768533","Chelativorans composti"]]},{"id":"NCBITaxon:1872578","l":"Aquabacterium sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A521ZRM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521ZRM4-F1-model_v4_TED01"],["TED%3AAF-A0A521ZL87-F1-model_v4_TED04","TED novel fold AF-A0A521ZL87-F1-model_v4_TED04"],["TED%3AAF-A0A5C8BIL8-F1-model_v4_TED02","TED novel fold AF-A0A5C8BIL8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1872578","Aquabacterium sp."]]},{"id":"NCBITaxon:1874","l":"Micromonospora chalcea","na":1,"nb":3,"a":[["TED%3AAF-A0A365UW89-F1-model_v4_TED01","TED novel fold AF-A0A365UW89-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1874","Micromonospora chalcea"],["NCBITaxon%3A2008351","Micromonospora chalcea subsp. izumensis"],["NCBITaxon%3A1876","Micromonospora sp."]]},{"id":"NCBITaxon:1877","l":"Micromonospora echinospora","na":1,"nb":3,"a":[["Pfam%3APF07091","Ribosomal RNA methyltransferase (FmrO)"]],"b":[["NCBITaxon%3A1877","Micromonospora echinospora"],["NCBITaxon%3A704114","Micromonospora echinospora subsp. challisensis"],["NCBITaxon%3A145854","Micromonospora pallida"]]},{"id":"NCBITaxon:1882831","l":"Verrucomicrobium sp. GAS474","na":3,"nb":1,"a":[["TED%3AAF-A0A1H2GE34-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H2GE34-F1-model_v4_TED01"],["TED%3AAF-A0A1H2GVJ7-F1-model_v4_TED04","TED novel fold AF-A0A1H2GVJ7-F1-model_v4_TED04"],["TED%3AAF-A0A1H2HH15-F1-model_v4_TED02","TED novel fold AF-A0A1H2HH15-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1882831","Verrucomicrobium sp. GAS474"]]},{"id":"NCBITaxon:1885","l":"Streptomyces actuosus","na":1,"nb":3,"a":[["Pfam%3APF17258","Family of unknown function (DUF5324)"]],"b":[["NCBITaxon%3A1280","Staphylococcus aureus"],["NCBITaxon%3A1885","Streptomyces actuosus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:188932","l":"Pedobacter cryoconitis","na":3,"nb":1,"a":[["TED%3AAF-A0A127VAP9-F1-model_v4_TED01","TED novel fold AF-A0A127VAP9-F1-model_v4_TED01"],["TED%3AAF-A0A127VGI1-F1-model_v4_TED01","TED novel fold AF-A0A127VGI1-F1-model_v4_TED01"],["TED%3AAF-A0A7W8YYF4-F1-model_v4_TED01","TED novel fold AF-A0A7W8YYF4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A188932","Pedobacter cryoconitis"]]},{"id":"NCBITaxon:1889775","l":"Moraxellaceae bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A3D4UCB7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D4UCB7-F1-model_v4_TED02"],["TED%3AAF-A0A3D4UDA0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D4UDA0-F1-model_v4_TED02"],["TED%3AAF-A0A4Q6EH99-F1-model_v4_TED01","TED novel fold AF-A0A4Q6EH99-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1889775","Moraxellaceae bacterium"]]},{"id":"NCBITaxon:1890364","l":"Planoprotostelium fungivorum","na":3,"nb":1,"a":[["TED%3AAF-A0A2P6MM50-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P6MM50-F1-model_v4_TED01"],["TED%3AAF-A0A2P6NL93-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P6NL93-F1-model_v4_TED01"],["TED%3AAF-A0A2P6NDP0-F1-model_v4_TED01","TED novel fold AF-A0A2P6NDP0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1890364","Planoprotostelium fungivorum"]]},{"id":"NCBITaxon:1891229","l":"Pseudomonadales bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A2D9TPX5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9TPX5-F1-model_v4_TED01"],["TED%3AAF-A0A2E3CXD3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E3CXD3-F1-model_v4_TED01"],["TED%3AAF-A0A7Y3G4Q2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y3G4Q2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1891229","Pseudomonadales bacterium"]]},{"id":"NCBITaxon:1895795","l":"Myxococcales bacterium 68-20","na":3,"nb":1,"a":[["TED%3AAF-A0A1M3N7A3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M3N7A3-F1-model_v4_TED01"],["TED%3AAF-A0A1M3NGT7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M3NGT7-F1-model_v4_TED01"],["TED%3AAF-A0A1M3NC51-F1-model_v4_TED01","TED novel fold AF-A0A1M3NC51-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895795","Myxococcales bacterium 68-20"]]},{"id":"NCBITaxon:1898111","l":"Cryomorphaceae bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A353FDE2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A353FDE2-F1-model_v4_TED02"],["TED%3AAF-A0A3B9P638-F1-model_v4_TED01","TED novel fold AF-A0A3B9P638-F1-model_v4_TED01"],["TED%3AAF-A0A8A7WP39-F1-model_v4_TED02","TED novel fold AF-A0A8A7WP39-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1898111","Cryomorphaceae bacterium"]]},{"id":"NCBITaxon:190655","l":"Legionella busanensis","na":3,"nb":1,"a":[["TED%3AAF-A0A378JRR1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A378JRR1-F1-model_v4_TED01"],["TED%3AAF-A0A378JH21-F1-model_v4_TED02","TED novel fold AF-A0A378JH21-F1-model_v4_TED02"],["TED%3AAF-A0A378JIY5-F1-model_v4_TED01","TED novel fold AF-A0A378JIY5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A190655","Legionella busanensis"]]},{"id":"NCBITaxon:191292","l":"Rhodococcus aetherivorans","na":1,"nb":3,"a":[["TED%3AAF-N1LZY7-F1-model_v4_TED01","TED highly-symmetric fold AF-N1LZY7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A191292","Rhodococcus aetherivorans"],["NCBITaxon%3A1036179","Rhodococcus aetherivorans I24"],["NCBITaxon%3A194249","uncultured Rhodococcus sp."]]},{"id":"NCBITaxon:1916082","l":"Alteromonadaceae bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A2E5MKL5-F1-model_v4_TED03","TED novel fold AF-A0A2E5MKL5-F1-model_v4_TED03"],["TED%3AAF-A0A7Y6ZTD4-F1-model_v4_TED02","TED novel fold AF-A0A7Y6ZTD4-F1-model_v4_TED02"],["TED%3AAF-A0A7Y6ZTV9-F1-model_v4_TED01","TED novel fold AF-A0A7Y6ZTV9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1916082","Alteromonadaceae bacterium"]]},{"id":"NCBITaxon:1917697","l":"Saccharimonas sp. (SeqCode)","na":3,"nb":1,"a":[["TED%3AAF-A0A660M0I9-F1-model_v4_TED02","TED novel fold AF-A0A660M0I9-F1-model_v4_TED02"],["TED%3AAF-A0A660M4I9-F1-model_v4_TED01","TED novel fold AF-A0A660M4I9-F1-model_v4_TED01"],["TED%3AAF-A0A660M7X9-F1-model_v4_TED01","TED novel fold AF-A0A660M7X9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1917697","Saccharimonas sp. (SeqCode)"]]},{"id":"NCBITaxon:1920","l":"Streptomyces nigrescens","na":1,"nb":3,"a":[["Pfam%3APF03995","Peptidase inhibitor family I36"]],"b":[["NCBITaxon%3A1128671","Microvirga arabica"],["NCBITaxon%3A249582","Streptomyces libani subsp. rufus"],["NCBITaxon%3A1920","Streptomyces nigrescens"]]},{"id":"NCBITaxon:192066","l":"Neisseria sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A496JVX2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A496JVX2-F1-model_v4_TED03"],["TED%3AAF-A0A496L0X3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A496L0X3-F1-model_v4_TED01"],["TED%3AAF-A0A496JRN7-F1-model_v4_TED02","TED novel fold AF-A0A496JRN7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A192066","Neisseria sp."]]},{"id":"NCBITaxon:192149","l":"Allomuricauda sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A2E1AQS9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E1AQS9-F1-model_v4_TED02"],["TED%3AAF-A0A358G5R9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A358G5R9-F1-model_v4_TED01"],["TED%3AAF-A0A2E1AXQ4-F1-model_v4_TED02","TED novel fold AF-A0A2E1AXQ4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A192149","Allomuricauda sp."]]},{"id":"NCBITaxon:1927959","l":"Dyella choica","na":3,"nb":1,"a":[["TED%3AAF-A0A3S0Q5X2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S0Q5X2-F1-model_v4_TED01"],["TED%3AAF-A0A432LZT3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A432LZT3-F1-model_v4_TED01"],["TED%3AAF-A0A432MAV7-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A432MAV7-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A1927959","Dyella choica"]]},{"id":"NCBITaxon:1934244","l":"Thiotrichaceae bacterium IS1","na":3,"nb":1,"a":[["TED%3AAF-A0A1Y1Q2V2-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1Y1Q2V2-F1-model_v4_TED04"],["TED%3AAF-A0A1Y1Q4L0-F1-model_v4_TED01","TED novel fold AF-A0A1Y1Q4L0-F1-model_v4_TED01"],["TED%3AAF-A0A1Y1Q4Z4-F1-model_v4_TED01","TED novel fold AF-A0A1Y1Q4Z4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1934244","Thiotrichaceae bacterium IS1"]]},{"id":"NCBITaxon:1934248","l":"Desulfobacteraceae bacterium IS3","na":3,"nb":1,"a":[["TED%3AAF-A0A1W9MUI9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W9MUI9-F1-model_v4_TED01"],["TED%3AAF-A0A1W9MY42-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1W9MY42-F1-model_v4_TED02"],["TED%3AAF-A0A1W9LQ90-F1-model_v4_TED03","TED novel fold AF-A0A1W9LQ90-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1934248","Desulfobacteraceae bacterium IS3"]]},{"id":"NCBITaxon:193567","l":"Streptococcus pyogenes SSI-1","na":3,"nb":1,"a":[["Pfam%3APF13585","CHU_C Type IX secretion signal domain"],["Pfam%3APF06280","Fn3-like domain"],["PROSITE%3APS00481","Thiol-activated cytolysins signature"]],"b":[["NCBITaxon%3A193567","Streptococcus pyogenes SSI-1"]]},{"id":"NCBITaxon:1940289","l":"Phaeodactylibacter sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A7C3CFH9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C3CFH9-F1-model_v4_TED01"],["TED%3AAF-A0A7C3G5E4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C3G5E4-F1-model_v4_TED01"],["TED%3AAF-A0A7C3G5R3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C3G5R3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1940289","Phaeodactylibacter sp."]]},{"id":"NCBITaxon:1945521","l":"Psychrobacter piechaudii","na":1,"nb":3,"a":[["TED%3AAF-A0A1R4GEU4-F1-model_v4_TED01","TED novel fold AF-A0A1R4GEU4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A90241","Lwoffella lincolnii"],["NCBITaxon%3A1945521","Psychrobacter piechaudii"],["NCBITaxon%3A56811","Psychrobacter sp."]]},{"id":"NCBITaxon:1950","l":"Streptomyces peucetius","na":1,"nb":3,"a":[["Pfam%3APF13732","ATP-binding protein DrrA1-3-like, C-terminal domain"]],"b":[["NCBITaxon%3A1950","Streptomyces peucetius"],["NCBITaxon%3A55158","Streptomyces peucetius subsp. caesius"],["NCBITaxon%3A316280","Streptomyces peucetius subsp. caesius ATCC 27952"]]},{"id":"NCBITaxon:1956","l":"Streptomyces diastaticus","na":1,"nb":3,"a":[["TED%3AAF-A0A7K3Q596-F1-model_v4_TED01","TED novel fold AF-A0A7K3Q596-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A285564","Streptomyces ardesiacus"],["NCBITaxon%3A1956","Streptomyces diastaticus"],["NCBITaxon%3A68040","Streptomyces diastaticus subsp. diastaticus"]]},{"id":"NCBITaxon:1965588","l":"Anaerofilum sp. An201","na":3,"nb":1,"a":[["TED%3AAF-A0A1Y4H1V6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y4H1V6-F1-model_v4_TED01"],["TED%3AAF-A0A1Y4H5V0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y4H5V0-F1-model_v4_TED01"],["TED%3AAF-A0A1Y4H6S0-F1-model_v4_TED02","TED novel fold AF-A0A1Y4H6S0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1965588","Anaerofilum sp. An201"]]},{"id":"NCBITaxon:1970199","l":"Sorangiineae bacterium NIC37A_2","na":3,"nb":1,"a":[["TED%3AAF-A0A1W9QHW9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W9QHW9-F1-model_v4_TED01"],["TED%3AAF-A0A1W9Q7E2-F1-model_v4_TED02","TED novel fold AF-A0A1W9Q7E2-F1-model_v4_TED02"],["TED%3AAF-A0A1W9QHC1-F1-model_v4_TED04","TED novel fold AF-A0A1W9QHC1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1970199","Sorangiineae bacterium NIC37A_2"]]},{"id":"NCBITaxon:1973475","l":"Nostoc sp. NIES-2111","na":3,"nb":1,"a":[["TED%3AAF-A0A1Z4IJ26-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z4IJ26-F1-model_v4_TED01"],["TED%3AAF-A0A1Z4I7D1-F1-model_v4_TED01","TED novel fold AF-A0A1Z4I7D1-F1-model_v4_TED01"],["TED%3AAF-A0A1Z4IJI1-F1-model_v4_TED01","TED novel fold AF-A0A1Z4IJI1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973475","Nostoc sp. NIES-2111"]]},{"id":"NCBITaxon:1975527","l":"Bdellovibrio sp. CG11_big_fil_rev_8_21_14_0_20_39_38","na":3,"nb":1,"a":[["TED%3AAF-A0A2H0QEJ6-F1-model_v4_TED02","TED novel fold AF-A0A2H0QEJ6-F1-model_v4_TED02"],["TED%3AAF-A0A2H0QG06-F1-model_v4_TED02","TED novel fold AF-A0A2H0QG06-F1-model_v4_TED02"],["TED%3AAF-A0A2H0QP34-F1-model_v4_TED02","TED novel fold AF-A0A2H0QP34-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1975527","Bdellovibrio sp. CG11_big_fil_rev_8_21_14_0_20_39_38"]]},{"id":"NCBITaxon:1977054","l":"Leeuwenhoekiella sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A2E5GSB9-F1-model_v4_TED01","TED novel fold AF-A0A2E5GSB9-F1-model_v4_TED01"],["TED%3AAF-A0A3D4EPK5-F1-model_v4_TED01","TED novel fold AF-A0A3D4EPK5-F1-model_v4_TED01"],["TED%3AAF-A0A3D4EPM4-F1-model_v4_TED02","TED novel fold AF-A0A3D4EPM4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1977054","Leeuwenhoekiella sp."]]},{"id":"NCBITaxon:1977903","l":"Propionibacterium sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A7X9L725-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X9L725-F1-model_v4_TED01"],["TED%3AAF-A0A7X6NWY2-F1-model_v4_TED01","TED novel fold AF-A0A7X6NWY2-F1-model_v4_TED01"],["TED%3AAF-A0A7X9QD40-F1-model_v4_TED01","TED novel fold AF-A0A7X9QD40-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1977903","Propionibacterium sp."]]},{"id":"NCBITaxon:198804","l":"Buchnera aphidicola str. Sg (Schizaphis graminum)","na":3,"nb":1,"a":[["Pfam%3APF09849","Uncharacterized protein conserved in bacteria (DUF2076)"],["Pfam%3APF09976","Tetratricopeptide repeat-like domain"],["Pfam%3APF13371","Tetratricopeptide repeat"]],"b":[["NCBITaxon%3A198804","Buchnera aphidicola str. Sg (Schizaphis graminum)"]]},{"id":"NCBITaxon:2004705","l":"Pyrobaculum sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A6B2CYC8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6B2CYC8-F1-model_v4_TED01"],["TED%3AAF-A0A831PF94-F1-model_v4_TED01","TED novel fold AF-A0A831PF94-F1-model_v4_TED01"],["TED%3AAF-A0A831YHZ8-F1-model_v4_TED03","TED novel fold AF-A0A831YHZ8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2004705","Pyrobaculum sp."]]},{"id":"NCBITaxon:2013741","l":"Deltaproteobacteria bacterium HGW-Deltaproteobacteria-14","na":3,"nb":1,"a":[["TED%3AAF-A0A2N2JHU5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N2JHU5-F1-model_v4_TED02"],["TED%3AAF-A0A2N2JK01-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N2JK01-F1-model_v4_TED02"],["TED%3AAF-A0A2N2JJI3-F1-model_v4_TED01","TED novel fold AF-A0A2N2JJI3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013741","Deltaproteobacteria bacterium HGW-Deltaproteobacteria-14"]]},{"id":"NCBITaxon:2013837","l":"Spirochaetae bacterium HGW-Spirochaetae-5","na":3,"nb":1,"a":[["TED%3AAF-A0A2N1RMK9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N1RMK9-F1-model_v4_TED02"],["TED%3AAF-A0A2N1RRW6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N1RRW6-F1-model_v4_TED01"],["TED%3AAF-A0A2N1RNH6-F1-model_v4_TED01","TED novel fold AF-A0A2N1RNH6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013837","Spirochaetae bacterium HGW-Spirochaetae-5"]]},{"id":"NCBITaxon:2015799","l":"Hyphomicrobiaceae bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A5C7LPC7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7LPC7-F1-model_v4_TED01"],["TED%3AAF-A0A5C7MAH8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5C7MAH8-F1-model_v4_TED02"],["TED%3AAF-A0A849TN71-F1-model_v4_TED01","TED novel fold AF-A0A849TN71-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2015799","Hyphomicrobiaceae bacterium"]]},{"id":"NCBITaxon:2020871","l":"Vulcanisaeta sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A7C5TCI3-F1-model_v4_TED04","TED novel fold AF-A0A7C5TCI3-F1-model_v4_TED04"],["TED%3AAF-A0A7C5TGH3-F1-model_v4_TED03","TED novel fold AF-A0A7C5TGH3-F1-model_v4_TED03"],["TED%3AAF-A0A7C5XM43-F1-model_v4_TED01","TED novel fold AF-A0A7C5XM43-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2020871","Vulcanisaeta sp."]]},{"id":"NCBITaxon:2021370","l":"Sphingobacteriaceae bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A4Q5SP92-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Q5SP92-F1-model_v4_TED02"],["TED%3AAF-A0A2A3U6E1-F1-model_v4_TED02","TED novel fold AF-A0A2A3U6E1-F1-model_v4_TED02"],["TED%3AAF-A0A4V1SZT0-F1-model_v4_TED01","TED novel fold AF-A0A4V1SZT0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2021370","Sphingobacteriaceae bacterium"]]},{"id":"NCBITaxon:2021405","l":"Variovorax sp. B4","na":3,"nb":1,"a":[["TED%3AAF-A0A2J7VAY3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J7VAY3-F1-model_v4_TED01"],["TED%3AAF-A0A2J7VHP9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J7VHP9-F1-model_v4_TED01"],["TED%3AAF-A0A2J7VJ59-F1-model_v4_TED01","TED novel fold AF-A0A2J7VJ59-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2021405","Variovorax sp. B4"]]},{"id":"NCBITaxon:2026762","l":"Micrococcales bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A2E0W944-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0W944-F1-model_v4_TED01"],["TED%3AAF-A0A2G6JW52-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G6JW52-F1-model_v4_TED01"],["TED%3AAF-A0A2E0WDK7-F1-model_v4_TED01","TED novel fold AF-A0A2E0WDK7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026762","Micrococcales bacterium"]]},{"id":"NCBITaxon:2026769","l":"Nitrospinota bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A351RUP4-F1-model_v4_TED01","TED novel fold AF-A0A351RUP4-F1-model_v4_TED01"],["TED%3AAF-A0A832U9I9-F1-model_v4_TED01","TED novel fold AF-A0A832U9I9-F1-model_v4_TED01"],["TED%3AAF-A0A845JWL7-F1-model_v4_TED03","TED novel fold AF-A0A845JWL7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2026769","Nitrospinota bacterium"]]},{"id":"NCBITaxon:2026774","l":"Parcubacteria group bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A315X0E2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A315X0E2-F1-model_v4_TED01"],["TED%3AAF-A0A2D6DPG4-F1-model_v4_TED02","TED novel fold AF-A0A2D6DPG4-F1-model_v4_TED02"],["TED%3AAF-A0A2D6FK48-F1-model_v4_TED02","TED novel fold AF-A0A2D6FK48-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026774","Parcubacteria group bacterium"]]},{"id":"NCBITaxon:2026776","l":"Candidatus Pelagibacterales bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A2E6DWY1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E6DWY1-F1-model_v4_TED01"],["TED%3AAF-A0A2F0AIM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2F0AIM3-F1-model_v4_TED01"],["TED%3AAF-A0A2E4WGY3-F1-model_v4_TED01","TED novel fold AF-A0A2E4WGY3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026776","Candidatus Pelagibacterales bacterium"]]},{"id":"NCBITaxon:2026888","l":"Thermoleophilia bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A7Y5WZR7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y5WZR7-F1-model_v4_TED01"],["TED%3AAF-A0A7Y6CVK3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y6CVK3-F1-model_v4_TED01"],["TED%3AAF-A0A7Y5WWI2-F1-model_v4_TED03","TED novel fold AF-A0A7Y5WWI2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2026888","Thermoleophilia bacterium"]]},{"id":"NCBITaxon:2030","l":"Kibdelosporangium aridum","na":1,"nb":3,"a":[["TED%3AAF-A0A1W1ZQL0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W1ZQL0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2030","Kibdelosporangium aridum"],["NCBITaxon%3A145995","Kibdelosporangium aridum subsp. aridum"],["NCBITaxon%3A145996","Kibdelosporangium aridum subsp. largum"]]},{"id":"NCBITaxon:203124","l":"Trichodesmium erythraeum IMS101","na":3,"nb":1,"a":[["Pfam%3APF06206","CpeT/CpcT family (DUF1001)"],["Pfam%3APF18460","Heterocyst differentiation regulator C-terminal Hood domain"],["TED%3AAF-Q10WG6-F1-model_v4_TED05","TED highly-symmetric fold AF-Q10WG6-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A203124","Trichodesmium erythraeum IMS101"]]},{"id":"NCBITaxon:2034841","l":"Lentimicrobium sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A847IVW1-F1-model_v4_TED08","TED highly-symmetric fold AF-A0A847IVW1-F1-model_v4_TED08"],["TED%3AAF-A0A847IXU2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A847IXU2-F1-model_v4_TED01"],["TED%3AAF-A0A847IZV2-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A847IZV2-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2034841","Lentimicrobium sp."]]},{"id":"NCBITaxon:2049428","l":"Ignavibacteriales bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A3N5QV19-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N5QV19-F1-model_v4_TED01"],["TED%3AAF-A0A7T9FZU1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7T9FZU1-F1-model_v4_TED02"],["TED%3AAF-A0A3D6BA26-F1-model_v4_TED01","TED novel fold AF-A0A3D6BA26-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2049428","Ignavibacteriales bacterium"]]},{"id":"NCBITaxon:2052147","l":"Caldisericota bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A661X368-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A661X368-F1-model_v4_TED02"],["TED%3AAF-A0A661XDC9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A661XDC9-F1-model_v4_TED02"],["TED%3AAF-A0A661X1M7-F1-model_v4_TED01","TED novel fold AF-A0A661X1M7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052147","Caldisericota bacterium"]]},{"id":"NCBITaxon:2053303","l":"Marinilabiliales bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A2J6HCK7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J6HCK7-F1-model_v4_TED01"],["TED%3AAF-A0A2N5YXJ7-F1-model_v4_TED01","TED novel fold AF-A0A2N5YXJ7-F1-model_v4_TED01"],["TED%3AAF-A0A2N5ZWL4-F1-model_v4_TED03","TED novel fold AF-A0A2N5ZWL4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2053303","Marinilabiliales bacterium"]]},{"id":"NCBITaxon:2053538","l":"Candidatus Competibacteraceae bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A3D2VN95-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D2VN95-F1-model_v4_TED01"],["TED%3AAF-A0A433ID10-F1-model_v4_TED02","TED novel fold AF-A0A433ID10-F1-model_v4_TED02"],["TED%3AAF-A0A433IIV2-F1-model_v4_TED01","TED novel fold AF-A0A433IIV2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053538","Candidatus Competibacteraceae bacterium"]]},{"id":"NCBITaxon:2053582","l":"Neisseriales bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A3D5YR85-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D5YR85-F1-model_v4_TED01"],["TED%3AAF-A0A5C8BT50-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C8BT50-F1-model_v4_TED01"],["TED%3AAF-A0A5C8BPV5-F1-model_v4_TED03","TED novel fold AF-A0A5C8BPV5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2053582","Neisseriales bacterium"]]},{"id":"NCBITaxon:2053624","l":"Synergistaceae bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A3C0QE43-F1-model_v4_TED02","TED novel fold AF-A0A3C0QE43-F1-model_v4_TED02"],["TED%3AAF-A0A7X7DUQ2-F1-model_v4_TED02","TED novel fold AF-A0A7X7DUQ2-F1-model_v4_TED02"],["TED%3AAF-A0A847AA05-F1-model_v4_TED02","TED novel fold AF-A0A847AA05-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053624","Synergistaceae bacterium"]]},{"id":"NCBITaxon:2055766","l":"Cyanobacteria bacterium UBA8543","na":3,"nb":1,"a":[["TED%3AAF-A0A3C0NE74-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3C0NE74-F1-model_v4_TED02"],["TED%3AAF-A0A3C0N4S6-F1-model_v4_TED01","TED novel fold AF-A0A3C0N4S6-F1-model_v4_TED01"],["TED%3AAF-A0A3C0NB52-F1-model_v4_TED01","TED novel fold AF-A0A3C0NB52-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2055766","Cyanobacteria bacterium UBA8543"]]},{"id":"NCBITaxon:2056631","l":"Thermoproteota archaeon","na":3,"nb":1,"a":[["TED%3AAF-A0A370LUU6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A370LUU6-F1-model_v4_TED02"],["TED%3AAF-A0A370LQW0-F1-model_v4_TED01","TED novel fold AF-A0A370LQW0-F1-model_v4_TED01"],["TED%3AAF-A0A7K3ZAV1-F1-model_v4_TED01","TED novel fold AF-A0A7K3ZAV1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2056631","Thermoproteota archaeon"]]},{"id":"NCBITaxon:205917","l":"Dentipellis fragilis","na":3,"nb":1,"a":[["TED%3AAF-A0A4Y9YCY1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y9YCY1-F1-model_v4_TED01"],["TED%3AAF-A0A4Y9YWP5-F1-model_v4_TED02","TED novel fold AF-A0A4Y9YWP5-F1-model_v4_TED02"],["TED%3AAF-A0A4Y9YY98-F1-model_v4_TED02","TED novel fold AF-A0A4Y9YY98-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A205917","Dentipellis fragilis"]]},{"id":"NCBITaxon:2093811","l":"Syntrophomonadaceae bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A7X7A0H8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7X7A0H8-F1-model_v4_TED02"],["TED%3AAF-A0A7X8IKT1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7X8IKT1-F1-model_v4_TED03"],["TED%3AAF-A0A7X8LLW0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X8LLW0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2093811","Syntrophomonadaceae bacterium"]]},{"id":"NCBITaxon:2099670","l":"Candidatus Dojkabacteria bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A832QDE0-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A832QDE0-F1-model_v4_TED05"],["TED%3AAF-A0A5C7JBY6-F1-model_v4_TED04","TED novel fold AF-A0A5C7JBY6-F1-model_v4_TED04"],["TED%3AAF-A0A847ES74-F1-model_v4_TED01","TED novel fold AF-A0A847ES74-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2099670","Candidatus Dojkabacteria bacterium"]]},{"id":"NCBITaxon:2135684","l":"Niastella sp. CF465","na":3,"nb":1,"a":[["TED%3AAF-A0A4R2W5I4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R2W5I4-F1-model_v4_TED01"],["TED%3AAF-A0A4V2TB43-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4V2TB43-F1-model_v4_TED01"],["TED%3AAF-A0A4R2WDU4-F1-model_v4_TED01","TED novel fold AF-A0A4R2WDU4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2135684","Niastella sp. CF465"]]},{"id":"NCBITaxon:215587","l":"Aplanochytrium stocchinoi","na":3,"nb":1,"a":[["TED%3AAF-A0A7S3LQ34-F1-model_v4_TED01","TED novel fold AF-A0A7S3LQ34-F1-model_v4_TED01"],["TED%3AAF-A0A7S3PJ73-F1-model_v4_TED01","TED novel fold AF-A0A7S3PJ73-F1-model_v4_TED01"],["TED%3AAF-A0A7S3V330-F1-model_v4_TED01","TED novel fold AF-A0A7S3V330-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A215587","Aplanochytrium stocchinoi"]]},{"id":"NCBITaxon:216596","l":"Rhizobium johnstonii 3841","na":3,"nb":1,"a":[["Pfam%3APF17803","Bacterial cadherin-like domain"],["Pfam%3APF07536","HWE histidine kinase"],["PROSITE%3APS01039","Bacterial extracellular solute-binding proteins, family 3 signature"]],"b":[["NCBITaxon%3A216596","Rhizobium johnstonii 3841"]]},{"id":"NCBITaxon:216778","l":"Stenotrophomonas rhizophila","na":1,"nb":3,"a":[["TED%3AAF-A0A023XYG6-F1-model_v4_TED02","TED novel fold AF-A0A023XYG6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A40324","Stenotrophomonas maltophilia"],["NCBITaxon%3A216778","Stenotrophomonas rhizophila"],["NCBITaxon%3A1255680","Stenotrophomonas rhizophila PCA13"]]},{"id":"NCBITaxon:2169412","l":"Candidatus Angelobacter sp. Gp1-AA117","na":3,"nb":1,"a":[["TED%3AAF-A0A321L6V4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A321L6V4-F1-model_v4_TED01"],["TED%3AAF-A0A321LSL1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A321LSL1-F1-model_v4_TED01"],["TED%3AAF-A0A321LKA5-F1-model_v4_TED01","TED novel fold AF-A0A321LKA5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2169412","Candidatus Angelobacter sp. Gp1-AA117"]]},{"id":"NCBITaxon:2183553","l":"Spirosoma telluris","na":3,"nb":1,"a":[["TED%3AAF-A0A327NEY5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A327NEY5-F1-model_v4_TED01"],["TED%3AAF-A0A327NHH0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A327NHH0-F1-model_v4_TED02"],["TED%3AAF-A0A327NDZ9-F1-model_v4_TED01","TED novel fold AF-A0A327NDZ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2183553","Spirosoma telluris"]]},{"id":"NCBITaxon:2184014","l":"Erysipelotrichia bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A847B4H6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A847B4H6-F1-model_v4_TED01"],["TED%3AAF-A0A847B5R0-F1-model_v4_TED02","TED novel fold AF-A0A847B5R0-F1-model_v4_TED02"],["TED%3AAF-A0A847VSU0-F1-model_v4_TED03","TED novel fold AF-A0A847VSU0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2184014","Erysipelotrichia bacterium"]]},{"id":"NCBITaxon:2201155","l":"Pseudonocardiales bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A7V9BPH1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V9BPH1-F1-model_v4_TED01"],["TED%3AAF-A0A838S3W0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A838S3W0-F1-model_v4_TED01"],["TED%3AAF-A0A2W6C903-F1-model_v4_TED01","TED novel fold AF-A0A2W6C903-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2201155","Pseudonocardiales bacterium"]]},{"id":"NCBITaxon:220378","l":"Nocardiopsis aegyptia","na":1,"nb":3,"a":[["TED%3AAF-A0A7Z0EIT8-F1-model_v4_TED01","TED novel fold AF-A0A7Z0EIT8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A187102","Mycolicibacterium pyrenivorans"],["NCBITaxon%3A1305860","Mycolicibacterium pyrenivorans JCM 15927"],["NCBITaxon%3A220378","Nocardiopsis aegyptia"]]},{"id":"NCBITaxon:2220073","l":"Bdellovibrio sp. NC01","na":3,"nb":1,"a":[["TED%3AAF-A0A514WYU5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A514WYU5-F1-model_v4_TED01"],["TED%3AAF-A0A514WSL4-F1-model_v4_TED01","TED novel fold AF-A0A514WSL4-F1-model_v4_TED01"],["TED%3AAF-A0A514X124-F1-model_v4_TED01","TED novel fold AF-A0A514X124-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2220073","Bdellovibrio sp. NC01"]]},{"id":"NCBITaxon:222523","l":"Bacillus cereus ATCC 10987","na":3,"nb":1,"a":[["Pfam%3APF17850","CysA C-terminal regulatory domain"],["Pfam%3APF04204","Homoserine O-succinyltransferase"],["Pfam%3APF09021","HutP"]],"b":[["NCBITaxon%3A222523","Bacillus cereus ATCC 10987"]]},{"id":"NCBITaxon:2231053","l":"Bdellovibrio sp. ZAP7","na":3,"nb":1,"a":[["TED%3AAF-A0A514XHL1-F1-model_v4_TED01","TED novel fold AF-A0A514XHL1-F1-model_v4_TED01"],["TED%3AAF-A0A514XIN8-F1-model_v4_TED01","TED novel fold AF-A0A514XIN8-F1-model_v4_TED01"],["TED%3AAF-A0A514XJC4-F1-model_v4_TED02","TED novel fold AF-A0A514XJC4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2231053","Bdellovibrio sp. ZAP7"]]},{"id":"NCBITaxon:2268124","l":"Candidatus Ozemibacter sibiricus","na":3,"nb":1,"a":[["TED%3AAF-A0A367ZJG5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A367ZJG5-F1-model_v4_TED01"],["TED%3AAF-A0A367ZQB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A367ZQB4-F1-model_v4_TED01"],["TED%3AAF-A0A367ZP10-F1-model_v4_TED01","TED novel fold AF-A0A367ZP10-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2268124","Candidatus Ozemibacter sibiricus"]]},{"id":"NCBITaxon:2268184","l":"Candidatus Fraserbacteria bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A7V5S831-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7V5S831-F1-model_v4_TED02"],["TED%3AAF-A0A7V5VMX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V5VMX4-F1-model_v4_TED01"],["TED%3AAF-A0A7V5S7E4-F1-model_v4_TED02","TED novel fold AF-A0A7V5S7E4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2268184","Candidatus Fraserbacteria bacterium"]]},{"id":"NCBITaxon:2268197","l":"Nitrososphaerales archaeon","na":3,"nb":1,"a":[["TED%3AAF-A0A7J2YER0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J2YER0-F1-model_v4_TED01"],["TED%3AAF-A0A7J3A8U8-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A7J3A8U8-F1-model_v4_TED05"],["TED%3AAF-A0A7C3TK66-F1-model_v4_TED02","TED novel fold AF-A0A7C3TK66-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2268197","Nitrososphaerales archaeon"]]},{"id":"NCBITaxon:2282151","l":"Chthonomonadales bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A847JW98-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A847JW98-F1-model_v4_TED01"],["TED%3AAF-A0A850B7H6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A850B7H6-F1-model_v4_TED01"],["TED%3AAF-A0A850B0F9-F1-model_v4_TED02","TED novel fold AF-A0A850B0F9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2282151","Chthonomonadales bacterium"]]},{"id":"NCBITaxon:228229","l":"Ligilactobacillus saerimneri","na":1,"nb":3,"a":[["TED%3AAF-A0A7H9EIW4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H9EIW4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A228229","Ligilactobacillus saerimneri"],["NCBITaxon%3A1227363","Ligilactobacillus saerimneri 30a"],["NCBITaxon%3A1122153","Ligilactobacillus saerimneri DSM 16049"]]},{"id":"NCBITaxon:2283","l":"Acidianus ambivalens","na":3,"nb":1,"a":[["Pfam%3APF07680","TQO small subunit DoxA"],["Pfam%3APF04173","TQO small subunit DoxD"],["TED%3AAF-O57695-F1-model_v4_TED01","TED highly-symmetric fold AF-O57695-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2283","Acidianus ambivalens"]]},{"id":"NCBITaxon:228410","l":"Nitrosomonas europaea ATCC 19718","na":3,"nb":1,"a":[["Pfam%3APF02461","Ammonia monooxygenase"],["Pfam%3APF13435","Cytochrome c554 and c-prime"],["TED%3AAF-Q82SR8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q82SR8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A228410","Nitrosomonas europaea ATCC 19718"]]},{"id":"NCBITaxon:2287","l":"Saccharolobus solfataricus","na":1,"nb":3,"a":[["Pfam%3APF09071","Alpha-amylase, C terminal"]],"b":[["NCBITaxon%3A2287","Saccharolobus solfataricus"],["NCBITaxon%3A555311","Saccharolobus solfataricus 98/2"],["NCBITaxon%3A273057","Saccharolobus solfataricus P2"]]},{"id":"NCBITaxon:2292257","l":"Sphingorhabdus pulchriflava","na":3,"nb":1,"a":[["TED%3AAF-A0A371BI53-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A371BI53-F1-model_v4_TED02"],["TED%3AAF-A0A371BEJ6-F1-model_v4_TED02","TED novel fold AF-A0A371BEJ6-F1-model_v4_TED02"],["TED%3AAF-A0A371BFK0-F1-model_v4_TED03","TED novel fold AF-A0A371BFK0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2292257","Sphingorhabdus pulchriflava"]]},{"id":"NCBITaxon:2292376","l":"Ruminococcus sp. OM08-7","na":3,"nb":1,"a":[["TED%3AAF-A0A417P6U8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A417P6U8-F1-model_v4_TED03"],["TED%3AAF-A0A417PKJ3-F1-model_v4_TED02","TED novel fold AF-A0A417PKJ3-F1-model_v4_TED02"],["TED%3AAF-A0A417PUT6-F1-model_v4_TED02","TED novel fold AF-A0A417PUT6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2292376","Ruminococcus sp. OM08-7"]]},{"id":"NCBITaxon:2292771","l":"Parvularcula marina","na":3,"nb":1,"a":[["TED%3AAF-A0A371R7U4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A371R7U4-F1-model_v4_TED01"],["TED%3AAF-A0A371R8E8-F1-model_v4_TED01","TED novel fold AF-A0A371R8E8-F1-model_v4_TED01"],["TED%3AAF-A0A371RGQ8-F1-model_v4_TED01","TED novel fold AF-A0A371RGQ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292771","Parvularcula marina"]]},{"id":"NCBITaxon:2315210","l":"Hondaea fermentalgiana","na":3,"nb":1,"a":[["TED%3AAF-A0A2R5GT68-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2R5GT68-F1-model_v4_TED01"],["TED%3AAF-A0A2R5GAK9-F1-model_v4_TED01","TED novel fold AF-A0A2R5GAK9-F1-model_v4_TED01"],["TED%3AAF-A0A2R5GSA5-F1-model_v4_TED01","TED novel fold AF-A0A2R5GSA5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2315210","Hondaea fermentalgiana"]]},{"id":"NCBITaxon:233186","l":"Cryptomonas curvata","na":3,"nb":1,"a":[["TED%3AAF-A0A7S0MXC9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0MXC9-F1-model_v4_TED01"],["TED%3AAF-A0A7S0NBD3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0NBD3-F1-model_v4_TED01"],["TED%3AAF-A0A7S0MVA1-F1-model_v4_TED02","TED novel fold AF-A0A7S0MVA1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A233186","Cryptomonas curvata"]]},{"id":"NCBITaxon:2364211","l":"Phototrophicales bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A2M8NRF1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M8NRF1-F1-model_v4_TED01"],["TED%3AAF-A0A2M8NRW1-F1-model_v4_TED02","TED novel fold AF-A0A2M8NRW1-F1-model_v4_TED02"],["TED%3AAF-A0A2M8NV39-F1-model_v4_TED01","TED novel fold AF-A0A2M8NV39-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2364211","Phototrophicales bacterium"]]},{"id":"NCBITaxon:236787","l":"Florenciella parvula","na":3,"nb":1,"a":[["TED%3AAF-A0A7S2AZ98-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S2AZ98-F1-model_v4_TED02"],["TED%3AAF-A0A7S2C9R3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2C9R3-F1-model_v4_TED01"],["TED%3AAF-A0A7S2GC10-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2GC10-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A236787","Florenciella parvula"]]},{"id":"NCBITaxon:243233","l":"Methylococcus capsulatus str. Bath","na":3,"nb":1,"a":[["Pfam%3APF17850","CysA C-terminal regulatory domain"],["Pfam%3APF02461","Ammonia monooxygenase"],["TED%3AAF-Q604F4-F1-model_v4_TED02","TED novel fold AF-Q604F4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A243233","Methylococcus capsulatus str. Bath"]]},{"id":"NCBITaxon:243243","l":"Mycobacterium avium 104","na":3,"nb":1,"a":[["Pfam%3APF13740","ACT domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03710","Glutamate-ammonia ligase adenylyltransferase"]],"b":[["NCBITaxon%3A243243","Mycobacterium avium 104"]]},{"id":"NCBITaxon:243265","l":"Photorhabdus laumondii subsp. laumondii TTO1","na":1,"nb":3,"a":[["Pfam%3APF07927","HicA toxin of bacterial toxin-antitoxin,"]],"b":[["NCBITaxon%3A2218628","Photorhabdus laumondii"],["NCBITaxon%3A141679","Photorhabdus laumondii subsp. laumondii"],["NCBITaxon%3A243265","Photorhabdus laumondii subsp. laumondii TTO1"]]},{"id":"NCBITaxon:245188","l":"Yoonia vestfoldensis","na":1,"nb":3,"a":[["TED%3AAF-A0A1Y0EB74-F1-model_v4_TED01","TED novel fold AF-A0A1Y0EB74-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A245188","Yoonia vestfoldensis"],["NCBITaxon%3A1122181","Yoonia vestfoldensis DSM 16212"],["NCBITaxon%3A314232","Yoonia vestfoldensis SKA53"]]},{"id":"NCBITaxon:2478486","l":"Holophagales bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A6B0W773-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6B0W773-F1-model_v4_TED01"],["TED%3AAF-A0A6N8VG55-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N8VG55-F1-model_v4_TED02"],["TED%3AAF-A0A6B1GTV8-F1-model_v4_TED02","TED novel fold AF-A0A6B1GTV8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2478486","Holophagales bacterium"]]},{"id":"NCBITaxon:2483351","l":"Actinomadura harenae","na":1,"nb":3,"a":[["TED%3AAF-A0A3M2LMA6-F1-model_v4_TED01","TED novel fold AF-A0A3M2LMA6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2483351","Actinomadura harenae"],["NCBITaxon%3A531813","Pelagibacterium halotolerans"],["NCBITaxon%3A1082931","Pelagibacterium halotolerans B2"]]},{"id":"NCBITaxon:250","l":"Chryseobacterium gleum","na":1,"nb":3,"a":[["TED%3AAF-A0A448B167-F1-model_v4_TED02","TED novel fold AF-A0A448B167-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A250","Chryseobacterium gleum"],["NCBITaxon%3A525257","Chryseobacterium gleum ATCC 35910"],["NCBITaxon%3A1871047","Chryseobacterium sp."]]},{"id":"NCBITaxon:251702","l":"Pseudomonas syringae pv. antirrhini","na":1,"nb":3,"a":[["TED%3AAF-A0A0P9JLN7-F1-model_v4_TED01","TED novel fold AF-A0A0P9JLN7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A251702","Pseudomonas syringae pv. antirrhini"],["NCBITaxon%3A698755","Pseudomonas syringae pv. antirrhini str. 126"]]},{"id":"NCBITaxon:252740","l":"Cytospora chrysosperma","na":3,"nb":1,"a":[["Pfam%3APF03443","Auxiliary Activity family 9 (formerly GH61)"],["TED%3AAF-A0A423W5C7-F1-model_v4_TED02","TED novel fold AF-A0A423W5C7-F1-model_v4_TED02"],["TED%3AAF-A0A423WC61-F1-model_v4_TED03","TED novel fold AF-A0A423WC61-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A252740","Cytospora chrysosperma"]]},{"id":"NCBITaxon:2527978","l":"Gimesia panareensis","na":3,"nb":1,"a":[["TED%3AAF-A0A517Q1W7-F1-model_v4_TED01","TED novel fold AF-A0A517Q1W7-F1-model_v4_TED01"],["TED%3AAF-A0A517Q3S7-F1-model_v4_TED02","TED novel fold AF-A0A517Q3S7-F1-model_v4_TED02"],["TED%3AAF-A0A518FYP2-F1-model_v4_TED01","TED novel fold AF-A0A518FYP2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2527978","Gimesia panareensis"]]},{"id":"NCBITaxon:2528011","l":"Engelhardtia mirabilis","na":3,"nb":1,"a":[["TED%3AAF-A0A518BEQ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A518BEQ2-F1-model_v4_TED01"],["TED%3AAF-A0A518BSG9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A518BSG9-F1-model_v4_TED02"],["TED%3AAF-A0A518BLD8-F1-model_v4_TED01","TED novel fold AF-A0A518BLD8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528011","Engelhardtia mirabilis"]]},{"id":"NCBITaxon:2528021","l":"Anatilimnocola aggregata","na":3,"nb":1,"a":[["TED%3AAF-A0A517YG31-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A517YG31-F1-model_v4_TED01"],["TED%3AAF-A0A517YEC3-F1-model_v4_TED01","TED novel fold AF-A0A517YEC3-F1-model_v4_TED01"],["TED%3AAF-A0A517YG72-F1-model_v4_TED01","TED novel fold AF-A0A517YG72-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528021","Anatilimnocola aggregata"]]},{"id":"NCBITaxon:2528023","l":"Urbifossiella limnaea","na":3,"nb":1,"a":[["TED%3AAF-A0A517Y227-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A517Y227-F1-model_v4_TED01"],["TED%3AAF-A0A517XL09-F1-model_v4_TED02","TED novel fold AF-A0A517XL09-F1-model_v4_TED02"],["TED%3AAF-A0A517XT91-F1-model_v4_TED01","TED novel fold AF-A0A517XT91-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528023","Urbifossiella limnaea"]]},{"id":"NCBITaxon:2528828","l":"Candidatus Stahliibacteriota bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A523W416-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A523W416-F1-model_v4_TED01"],["TED%3AAF-A0A523Z1T4-F1-model_v4_TED01","TED novel fold AF-A0A523Z1T4-F1-model_v4_TED01"],["TED%3AAF-A0A7C7VB62-F1-model_v4_TED01","TED novel fold AF-A0A7C7VB62-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528828","Candidatus Stahliibacteriota bacterium"]]},{"id":"NCBITaxon:257310","l":"Bordetella bronchiseptica RB50","na":3,"nb":1,"a":[["Pfam%3APF03497","Anthrax toxin LF subunit"],["Pfam%3APF06594","Haemolysin-type calcium binding protein related domain"],["Pfam%3APF03212","Pertactin"]],"b":[["NCBITaxon%3A257310","Bordetella bronchiseptica RB50"]]},{"id":"NCBITaxon:2576071","l":"Phragmitibacter flavus","na":3,"nb":1,"a":[["TED%3AAF-A0A5R8KF89-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5R8KF89-F1-model_v4_TED02"],["TED%3AAF-A0A5R8KII2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5R8KII2-F1-model_v4_TED01"],["TED%3AAF-A0A5R8KJY9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5R8KJY9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2576071","Phragmitibacter flavus"]]},{"id":"NCBITaxon:2587852","l":"Roseivivax sp. THAF30","na":3,"nb":1,"a":[["TED%3AAF-A0A5P9FGS6-F1-model_v4_TED02","TED novel fold AF-A0A5P9FGS6-F1-model_v4_TED02"],["TED%3AAF-A0A5P9FI68-F1-model_v4_TED01","TED novel fold AF-A0A5P9FI68-F1-model_v4_TED01"],["TED%3AAF-A0A5P9FM36-F1-model_v4_TED01","TED novel fold AF-A0A5P9FM36-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2587852","Roseivivax sp. THAF30"]]},{"id":"NCBITaxon:2591470","l":"Lentzea tibetensis","na":3,"nb":1,"a":[["TED%3AAF-A0A563EGR8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A563EGR8-F1-model_v4_TED01"],["TED%3AAF-A0A563EKL5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A563EKL5-F1-model_v4_TED01"],["TED%3AAF-A0A563EEJ6-F1-model_v4_TED01","TED novel fold AF-A0A563EEJ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2591470","Lentzea tibetensis"]]},{"id":"NCBITaxon:2598579","l":"Limnoglobus roseus","na":3,"nb":1,"a":[["TED%3AAF-A0A5C1A5Q5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C1A5Q5-F1-model_v4_TED01"],["TED%3AAF-A0A5C1ACX4-F1-model_v4_TED01","TED novel fold AF-A0A5C1ACX4-F1-model_v4_TED01"],["TED%3AAF-A0A5C1ATB5-F1-model_v4_TED02","TED novel fold AF-A0A5C1ATB5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2598579","Limnoglobus roseus"]]},{"id":"NCBITaxon:2607790","l":"Okeania sp. SIO2F4","na":3,"nb":1,"a":[["TED%3AAF-A0A846C618-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A846C618-F1-model_v4_TED01"],["TED%3AAF-A0A846CIW5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A846CIW5-F1-model_v4_TED01"],["TED%3AAF-A0A846CB44-F1-model_v4_TED03","TED novel fold AF-A0A846CB44-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2607790","Okeania sp. SIO2F4"]]},{"id":"NCBITaxon:2607809","l":"Symploca sp. SIO2E6","na":3,"nb":1,"a":[["TED%3AAF-A0A6M0GAF0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6M0GAF0-F1-model_v4_TED01"],["TED%3AAF-A0A6M0GFI8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6M0GFI8-F1-model_v4_TED02"],["TED%3AAF-A0A6M0GG53-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6M0GG53-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607809","Symploca sp. SIO2E6"]]},{"id":"NCBITaxon:264731","l":"Xylanibacter ruminicola 23","na":3,"nb":1,"a":[["Pfam%3APF05448","Acetyl xylan esterase (AXE1)"],["Pfam%3APF00331","Glycosyl hydrolase family 10"],["TED%3AAF-D5EXZ1-F1-model_v4_TED03","TED novel fold AF-D5EXZ1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A264731","Xylanibacter ruminicola 23"]]},{"id":"NCBITaxon:2651163","l":"Ignavibacteriaceae bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A7Y8JA55-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y8JA55-F1-model_v4_TED01"],["TED%3AAF-A0A7Y2K4Z6-F1-model_v4_TED01","TED novel fold AF-A0A7Y2K4Z6-F1-model_v4_TED01"],["TED%3AAF-A0A7Y5L2T1-F1-model_v4_TED01","TED novel fold AF-A0A7Y5L2T1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2651163","Ignavibacteriaceae bacterium"]]},{"id":"NCBITaxon:265669","l":"Listeria monocytogenes serotype 4b str. F2365","na":3,"nb":1,"a":[["Pfam%3APF22508","Internalin J, Immunoglobulin-like domain"],["Pfam%3APF18981","Internalin K domain (D3/D4)"],["Pfam%3APF22350","Internalin, EF-hand domain"]],"b":[["NCBITaxon%3A265669","Listeria monocytogenes serotype 4b str. F2365"]]},{"id":"NCBITaxon:2697043","l":"Tichowtungia aerotolerans","na":3,"nb":1,"a":[["TED%3AAF-A0A6P1M8R0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6P1M8R0-F1-model_v4_TED02"],["TED%3AAF-A0A6P1M9Q5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A6P1M9Q5-F1-model_v4_TED03"],["TED%3AAF-A0A6P1M733-F1-model_v4_TED02","TED novel fold AF-A0A6P1M733-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2697043","Tichowtungia aerotolerans"]]},{"id":"NCBITaxon:2699742","l":"Candidatus Anammoximicrobium sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A847GXB5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A847GXB5-F1-model_v4_TED02"],["TED%3AAF-A0A847GSA2-F1-model_v4_TED01","TED novel fold AF-A0A847GSA2-F1-model_v4_TED01"],["TED%3AAF-A0A847H196-F1-model_v4_TED03","TED novel fold AF-A0A847H196-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2699742","Candidatus Anammoximicrobium sp."]]},{"id":"NCBITaxon:2699754","l":"Pirellulaceae bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A7X7KCT3-F1-model_v4_TED02","TED novel fold AF-A0A7X7KCT3-F1-model_v4_TED02"],["TED%3AAF-A0A7X7QG98-F1-model_v4_TED02","TED novel fold AF-A0A7X7QG98-F1-model_v4_TED02"],["TED%3AAF-A0A7Y2AM27-F1-model_v4_TED01","TED novel fold AF-A0A7Y2AM27-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2699754","Pirellulaceae bacterium"]]},{"id":"NCBITaxon:2715253","l":"Pirellulales bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A7Y5SNH7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y5SNH7-F1-model_v4_TED01"],["TED%3AAF-A0A838QX04-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A838QX04-F1-model_v4_TED02"],["TED%3AAF-A0A838RD69-F1-model_v4_TED01","TED novel fold AF-A0A838RD69-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2715253","Pirellulales bacterium"]]},{"id":"NCBITaxon:2720503","l":"Herpetosiphonaceae bacterium","na":3,"nb":1,"a":[["TED%3AAF-A0A7W1A9W6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W1A9W6-F1-model_v4_TED01"],["TED%3AAF-A0A7W1YPE0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W1YPE0-F1-model_v4_TED02"],["TED%3AAF-A0A7W1TNI0-F1-model_v4_TED01","TED novel fold AF-A0A7W1TNI0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2720503","Herpetosiphonaceae bacterium"]]},{"id":"NCBITaxon:2723095","l":"Paraburkholderia sp. HC6.4b","na":3,"nb":1,"a":[["TED%3AAF-A0A7W8PCC7-F1-model_v4_TED03","TED novel fold AF-A0A7W8PCC7-F1-model_v4_TED03"],["TED%3AAF-A0A7W8PCI5-F1-model_v4_TED02","TED novel fold AF-A0A7W8PCI5-F1-model_v4_TED02"],["TED%3AAF-A0A7W8URT5-F1-model_v4_TED01","TED novel fold AF-A0A7W8URT5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2723095","Paraburkholderia sp. HC6.4b"]]},{"id":"NCBITaxon:272560","l":"Burkholderia pseudomallei K96243","na":3,"nb":1,"a":[["Pfam%3APF07077","Virulence factor BPSS1818"],["Pfam%3APF11958","Surface attachment protein BPSS1860"],["Pfam%3APF16374","Cycle inhibiting factor (CIF)"]],"b":[["NCBITaxon%3A272560","Burkholderia pseudomallei K96243"]]},{"id":"NCBITaxon:272632","l":"Mycoplasma mycoides subsp. mycoides SC str. PG1","na":1,"nb":3,"a":[["TED%3AAF-Q6MU57-F1-model_v4_TED01","TED novel fold AF-Q6MU57-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2102","Mycoplasma mycoides"],["NCBITaxon%3A2103","Mycoplasma mycoides subsp. mycoides"],["NCBITaxon%3A272632","Mycoplasma mycoides subsp. mycoides SC str. PG1"]]},{"id":"NCBITaxon:272951","l":"Rickettsia sibirica 246","na":1,"nb":3,"a":[["Pfam%3APF22203","Surface cell antigen Sca2 helical repeat"]],"b":[["NCBITaxon%3A35793","Rickettsia sibirica"],["NCBITaxon%3A272951","Rickettsia sibirica 246"],["NCBITaxon%3A1144281","Rickettsia sibirica subsp. sibirica"]]},{"id":"NCBITaxon:273036","l":"Staphylococcus aureus RF122","na":3,"nb":1,"a":[["Pfam%3APF03780","Asp23 family, cell envelope-related function"],["Pfam%3APF18927","Glycosyl-4,4'-diaponeurosporenoate acyltransferase"],["Pfam%3APF04507","Csa1 family"]],"b":[["NCBITaxon%3A273036","Staphylococcus aureus RF122"]]},{"id":"NCBITaxon:273068","l":"Caldanaerobacter subterraneus subsp. tengcongensis MB4","na":1,"nb":3,"a":[["Pfam%3APF24894","GlmU-like, C-terminal hexapeptide"]],"b":[["NCBITaxon%3A911092","Caldanaerobacter subterraneus"],["NCBITaxon%3A119072","Caldanaerobacter subterraneus subsp. tengcongensis"],["NCBITaxon%3A273068","Caldanaerobacter subterraneus subsp. tengcongensis MB4"]]},{"id":"NCBITaxon:27350","l":"Puccinia striiformis","na":1,"nb":3,"a":[["TED%3AAF-A0A2S4U9T6-F1-model_v4_TED01","TED novel fold AF-A0A2S4U9T6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A27350","Puccinia striiformis"],["NCBITaxon%3A168172","Puccinia striiformis f. sp. tritici"],["NCBITaxon%3A1165861","Puccinia striiformis f. sp. tritici PST-78"]]},{"id":"NCBITaxon:2749911","l":"Pseudictyota dubia","na":3,"nb":1,"a":[["TED%3AAF-A0A7R9W8L7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7R9W8L7-F1-model_v4_TED01"],["TED%3AAF-A0A7R9VQK5-F1-model_v4_TED01","TED novel fold AF-A0A7R9VQK5-F1-model_v4_TED01"],["TED%3AAF-A0A7R9Z4N2-F1-model_v4_TED03","TED novel fold AF-A0A7R9Z4N2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2749911","Pseudictyota dubia"]]},{"id":"NCBITaxon:2761452","l":"Mitsuaria sp. WAJ17","na":3,"nb":1,"a":[["TED%3AAF-A0A839LEQ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A839LEQ7-F1-model_v4_TED01"],["TED%3AAF-A0A839LJ22-F1-model_v4_TED01","TED novel fold AF-A0A839LJ22-F1-model_v4_TED01"],["TED%3AAF-A0A839LJB2-F1-model_v4_TED01","TED novel fold AF-A0A839LJB2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2761452","Mitsuaria sp. WAJ17"]]},{"id":"NCBITaxon:277","l":"Meiothermus ruber","na":1,"nb":3,"a":[["TED%3AAF-A0A7C3DF06-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C3DF06-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A277","Meiothermus ruber"],["NCBITaxon%3A504728","Meiothermus ruber DSM 1279"],["NCBITaxon%3A1297799","Meiothermus ruber H328"]]},{"id":"NCBITaxon:279808","l":"Staphylococcus haemolyticus JCSC1435","na":3,"nb":1,"a":[["Pfam%3APF18719","ArlS sensor domain"],["Pfam%3APF21191","CvfB first S1-like domain"],["Pfam%3APF21543","Virulence regulatory factor CvfB, second domain"]],"b":[["NCBITaxon%3A279808","Staphylococcus haemolyticus JCSC1435"]]},{"id":"NCBITaxon:2829","l":"Heterosigma akashiwo","na":3,"nb":1,"a":[["TED%3AAF-A0A7S4DBT0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S4DBT0-F1-model_v4_TED02"],["TED%3AAF-A0A6S9LBI5-F1-model_v4_TED01","TED novel fold AF-A0A6S9LBI5-F1-model_v4_TED01"],["TED%3AAF-A0A7S3XMU2-F1-model_v4_TED01","TED novel fold AF-A0A7S3XMU2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2829","Heterosigma akashiwo"]]},{"id":"NCBITaxon:283643","l":"Cryptococcus deneoformans B-3501A","na":3,"nb":1,"a":[["Pfam%3APF28371","Clampless protein 1 N-terminal domain"],["Pfam%3APF28353","Clampless protein 1 C-terminal domain"],["TED%3AAF-Q55JJ5-F1-model_v4_TED02","TED novel fold AF-Q55JJ5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A283643","Cryptococcus deneoformans B-3501A"]]},{"id":"NCBITaxon:288000","l":"Bradyrhizobium sp. BTAi1","na":3,"nb":1,"a":[["Pfam%3APF10073","GapR-like, DNA-binding domain"],["Pfam%3APF10755","Protein of unknown function (DUF2585)"],["TED%3AAF-A5EG84-F1-model_v4_TED02","TED highly-symmetric fold AF-A5EG84-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A288000","Bradyrhizobium sp. BTAi1"]]},{"id":"NCBITaxon:290338","l":"Citrobacter koseri ATCC BAA-895","na":3,"nb":1,"a":[["Pfam%3APF03783","Curli production assembly/transport component CsgG"],["Pfam%3APF04269","Protein of unknown function, DUF440"],["Pfam%3APF17874","MalT-like TPR region"]],"b":[["NCBITaxon%3A290338","Citrobacter koseri ATCC BAA-895"]]},{"id":"NCBITaxon:291645","l":"Bacteroides nordii","na":1,"nb":3,"a":[["TED%3AAF-A0A413VD19-F1-model_v4_TED01","TED novel fold AF-A0A413VD19-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A291645","Bacteroides nordii"],["NCBITaxon%3A997884","Bacteroides nordii CL02T12C05"],["NCBITaxon%3A1203608","Bacteroides nordii WAL 11050 = JCM 12987"]]},{"id":"NCBITaxon:293939","l":"Aspergillus lentulus","na":3,"nb":1,"a":[["TED%3AAF-A0A0S7DQ50-F1-model_v4_TED03","TED novel fold AF-A0A0S7DQ50-F1-model_v4_TED03"],["TED%3AAF-A0A0S7DZR8-F1-model_v4_TED04","TED novel fold AF-A0A0S7DZR8-F1-model_v4_TED04"],["TED%3AAF-A0A0S7E8Y7-F1-model_v4_TED02","TED novel fold AF-A0A0S7E8Y7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A293939","Aspergillus lentulus"]]},{"id":"NCBITaxon:29523","l":"Bacteroides sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A351YFX8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A351YFX8-F1-model_v4_TED01"],["TED%3AAF-A0A7C1V1S3-F1-model_v4_TED01","TED novel fold AF-A0A7C1V1S3-F1-model_v4_TED01"],["TED%3AAF-A0A7C2R702-F1-model_v4_TED01","TED novel fold AF-A0A7C2R702-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29523","Bacteroides sp."]]},{"id":"NCBITaxon:295319","l":"Salmonella enterica subsp. enterica serovar Paratyphi A str. ATCC 9150","na":3,"nb":1,"a":[["Pfam%3APF07824","Type III secretion chaperone domain"],["Pfam%3APF04217","Protein of unknown function, DUF412"],["Pfam%3APF06109","Haemolysin E (HlyE)"]],"b":[["NCBITaxon%3A295319","Salmonella enterica subsp. enterica serovar Paratyphi A str. ATCC 9150"]]},{"id":"NCBITaxon:300268","l":"Shigella boydii Sb227","na":3,"nb":1,"a":[["Pfam%3APF21118","DosC CZB-like middle domain"],["Pfam%3APF07869","Protein of unknown function (DUF1656)"],["Pfam%3APF06977","SdiA-regulated"]],"b":[["NCBITaxon%3A300268","Shigella boydii Sb227"]]},{"id":"NCBITaxon:303371","l":"Tribonema minus","na":3,"nb":1,"a":[["TED%3AAF-A0A836CJF8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A836CJF8-F1-model_v4_TED01"],["TED%3AAF-A0A835YUR5-F1-model_v4_TED01","TED novel fold AF-A0A835YUR5-F1-model_v4_TED01"],["TED%3AAF-A0A835Z887-F1-model_v4_TED02","TED novel fold AF-A0A835Z887-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A303371","Tribonema minus"]]},{"id":"NCBITaxon:312309","l":"Aliivibrio fischeri ES114","na":3,"nb":1,"a":[["Pfam%3APF06610","L-alanine exporter"],["Pfam%3APF00765","Autoinducer synthase"],["PROSITE%3APS00949","Autoinducer synthase family signature"]],"b":[["NCBITaxon%3A312309","Aliivibrio fischeri ES114"]]},{"id":"NCBITaxon:313628","l":"Lentisphaera araneosa HTCC2155","na":3,"nb":1,"a":[["TED%3AAF-A6DHC8-F1-model_v4_TED01","TED novel fold AF-A6DHC8-F1-model_v4_TED01"],["TED%3AAF-A6DNV7-F1-model_v4_TED01","TED novel fold AF-A6DNV7-F1-model_v4_TED01"],["TED%3AAF-A6DRD8-F1-model_v4_TED03","TED novel fold AF-A6DRD8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A313628","Lentisphaera araneosa HTCC2155"]]},{"id":"NCBITaxon:314565","l":"Xanthomonas campestris pv. campestris str. 8004","na":3,"nb":1,"a":[["Pfam%3APF00325","Bacterial regulatory proteins, crp family"],["Pfam%3APF13487","HD domain"],["PROSITE%3APS00042","Crp-type HTH domain signature"]],"b":[["NCBITaxon%3A314565","Xanthomonas campestris pv. campestris str. 8004"]]},{"id":"NCBITaxon:315456","l":"Rickettsia felis Marseille-URRWFXCal2","na":3,"nb":1,"a":[["Pfam%3APF18324","Bacterial isocitrate dehydrogenase, C-terminal domain"],["Pfam%3APF11019","Protein of unknown function (DUF2608)"],["Pfam%3APF22203","Surface cell antigen Sca2 helical repeat"]],"b":[["NCBITaxon%3A315456","Rickettsia felis Marseille-URRWFXCal2"]]},{"id":"NCBITaxon:320389","l":"Burkholderia mallei NCTC 10247","na":3,"nb":1,"a":[["Pfam%3APF06315","Isocitrate dehydrogenase kinase/phosphatase (AceK) kinase domain"],["Pfam%3APF20423","Isocitrate dehydrogenase kinase/phosphatase (AceK), regulatory domain"],["Pfam%3APF22688","Hda, lid domain"]],"b":[["NCBITaxon%3A320389","Burkholderia mallei NCTC 10247"]]},{"id":"NCBITaxon:320662","l":"Rhodovulum marinum","na":1,"nb":3,"a":[["TED%3AAF-A0A4R2PU14-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4R2PU14-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A364296","Rhodobium gokarnense"],["NCBITaxon%3A320662","Rhodovulum marinum"],["NCBITaxon%3A1188260","Rhodovulum marinum JA128"]]},{"id":"NCBITaxon:322159","l":"Streptococcus thermophilus LMD-9","na":3,"nb":1,"a":[["Pfam%3APF18470","Cas9 alpha-helical lobe domain"],["Pfam%3APF18070","CRISPR-Cas9 PI domain"],["Pfam%3APF18061","CRISPR-Cas9 WED domain"]],"b":[["NCBITaxon%3A322159","Streptococcus thermophilus LMD-9"]]},{"id":"NCBITaxon:322505","l":"Sharpea azabuensis","na":1,"nb":3,"a":[["TED%3AAF-A0A1H6US53-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H6US53-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A322505","Sharpea azabuensis"],["NCBITaxon%3A1410674","Sharpea azabuensis DSM 18934"],["NCBITaxon%3A2652286","Sharpea porci"]]},{"id":"NCBITaxon:322866","l":"Leptolyngbya valderiana BDU 20041","na":3,"nb":1,"a":[["TED%3AAF-A0A166VCM9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A166VCM9-F1-model_v4_TED02"],["TED%3AAF-A0A168TVG0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A168TVG0-F1-model_v4_TED01"],["TED%3AAF-A0A166TA39-F1-model_v4_TED03","TED novel fold AF-A0A166TA39-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A322866","Leptolyngbya valderiana BDU 20041"]]},{"id":"NCBITaxon:323656","l":"Neorhizobium galegae bv. officinalis","na":1,"nb":3,"a":[["TED%3AAF-A0A0T7GYR3-F1-model_v4_TED01","TED novel fold AF-A0A0T7GYR3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A399","Neorhizobium galegae"],["NCBITaxon%3A323656","Neorhizobium galegae bv. officinalis"],["NCBITaxon%3A1028801","Neorhizobium galegae bv. officinalis bv. officinalis str. HAMBI 1141"]]},{"id":"NCBITaxon:325452","l":"Phytophthora kernoviae","na":3,"nb":1,"a":[["TED%3AAF-A0A3F2RWY7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3F2RWY7-F1-model_v4_TED01"],["TED%3AAF-A0A3F2RX54-F1-model_v4_TED01","TED novel fold AF-A0A3F2RX54-F1-model_v4_TED01"],["TED%3AAF-A0A421EY51-F1-model_v4_TED03","TED novel fold AF-A0A421EY51-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A325452","Phytophthora kernoviae"]]},{"id":"NCBITaxon:328814","l":"Alistipes shahii","na":1,"nb":3,"a":[["TED%3AAF-A0A5B3G0H9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A5B3G0H9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A328814","Alistipes shahii"],["NCBITaxon%3A1357378","Alistipes shahii ETR2_14"],["NCBITaxon%3A717959","Alistipes shahii WAL 8301"]]},{"id":"NCBITaxon:329726","l":"Acaryochloris marina MBIC11017","na":3,"nb":1,"a":[["TED%3AAF-B0C760-F1-model_v4_TED01","TED highly-symmetric fold AF-B0C760-F1-model_v4_TED01"],["TED%3AAF-A8ZPU7-F1-model_v4_TED01","TED novel fold AF-A8ZPU7-F1-model_v4_TED01"],["TED%3AAF-B0C5H8-F1-model_v4_TED01","TED novel fold AF-B0C5H8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A329726","Acaryochloris marina MBIC11017"]]},{"id":"NCBITaxon:33178","l":"Aspergillus terreus","na":3,"nb":1,"a":[["Pfam%3APF28386","BfoA family C-terminal domain"],["Pfam%3APF28387","BfoA N-terminal domain"],["Pfam%3APF12351","Ca2+ regulator and membrane fusion protein Fig1"]],"b":[["NCBITaxon%3A33178","Aspergillus terreus"]]},{"id":"NCBITaxon:332952","l":"Aspergillus flavus NRRL3357","na":3,"nb":1,"a":[["Pfam%3APF10014","2OG-Fe dioxygenase"],["Pfam%3APF22041","Glutathione S-transferase, C-terminal domain"],["Pfam%3APF08493","Aflatoxin regulatory protein"]],"b":[["NCBITaxon%3A332952","Aspergillus flavus NRRL3357"]]},{"id":"NCBITaxon:333962","l":"Providencia heimbachae","na":1,"nb":3,"a":[["TED%3AAF-A0A4D7JDZ4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4D7JDZ4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A333962","Providencia heimbachae"],["NCBITaxon%3A1354272","Providencia heimbachae ATCC 35613"],["NCBITaxon%3A1255655","Providencia heimbachae GR4"]]},{"id":"NCBITaxon:336407","l":"Rickettsia bellii RML369-C","na":3,"nb":1,"a":[["Pfam%3APF16998","17 kDa outer membrane surface antigen"],["Pfam%3APF11019","Protein of unknown function (DUF2608)"],["Pfam%3APF10399","Ubiquitinol-cytochrome C reductase Fe-S subunit TAT signal"]],"b":[["NCBITaxon%3A336407","Rickettsia bellii RML369-C"]]},{"id":"NCBITaxon:33889","l":"Brevibacterium casei","na":1,"nb":3,"a":[["TED%3AAF-A0A7T2TGM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T2TGM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A33889","Brevibacterium casei"],["NCBITaxon%3A1255625","Brevibacterium casei CIP 102111"],["NCBITaxon%3A1229781","Brevibacterium casei S18"]]},{"id":"NCBITaxon:340047","l":"Mycoplasma capricolum subsp. capricolum ATCC 27343","na":1,"nb":3,"a":[["Pfam%3APF27879","Helix-rich protein"]],"b":[["NCBITaxon%3A2095","Mycoplasma capricolum"],["NCBITaxon%3A40479","Mycoplasma capricolum subsp. capricolum"],["NCBITaxon%3A340047","Mycoplasma capricolum subsp. capricolum ATCC 27343"]]},{"id":"NCBITaxon:34068","l":"Cycloclasticus pugetii","na":1,"nb":3,"a":[["TED%3AAF-A0A1M6DAX1-F1-model_v4_TED03","TED novel fold AF-A0A1M6DAX1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A34068","Cycloclasticus pugetii"],["NCBITaxon%3A655438","Cycloclasticus pugetii PS-1"],["NCBITaxon%3A1884353","Cycloclasticus sp. DSM 27168"]]},{"id":"NCBITaxon:34087","l":"Sphingobacterium faecium","na":1,"nb":3,"a":[["TED%3AAF-A0A7K0B7N5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K0B7N5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A34087","Sphingobacterium faecium"],["NCBITaxon%3A1220575","Sphingobacterium faecium NBRC 15299"],["NCBITaxon%3A1255690","Sphingobacterium faecium PCAi_F2.5"]]},{"id":"NCBITaxon:342108","l":"Paramagnetospirillum magneticum AMB-1","na":3,"nb":1,"a":[["Pfam%3APF08269","Cache domain"],["Pfam%3APF08849","BrxA"],["Pfam%3APF04011","LemA family"]],"b":[["NCBITaxon%3A342108","Paramagnetospirillum magneticum AMB-1"]]},{"id":"NCBITaxon:343874","l":"Empedobacter falsenii","na":1,"nb":3,"a":[["TED%3AAF-A0A376G7G3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A376G7G3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A343874","Empedobacter falsenii"],["NCBITaxon%3A343876","Empedobacter falsenii genomovar 1"],["NCBITaxon%3A343875","Empedobacter falsenii genomovar 2"]]},{"id":"NCBITaxon:351656","l":"Xenorhabdus vietnamensis","na":3,"nb":1,"a":[["TED%3AAF-A0A1Y2S714-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y2S714-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2S9F2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y2S9F2-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2S6H8-F1-model_v4_TED02","TED novel fold AF-A0A1Y2S6H8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A351656","Xenorhabdus vietnamensis"]]},{"id":"NCBITaxon:351745","l":"Shewanella sp. W3-18-1","na":3,"nb":1,"a":[["Pfam%3APF17810","Arginine decarboxylase helical bundle domain"],["Pfam%3APF17944","Arginine decarboxylase C-terminal helical extension"],["Pfam%3APF02001","Protein of unknown function DUF134"]],"b":[["NCBITaxon%3A351745","Shewanella sp. W3-18-1"]]},{"id":"NCBITaxon:35688","l":"Porphyridium purpureum","na":3,"nb":1,"a":[["TED%3AAF-A0A5J4YJT2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5J4YJT2-F1-model_v4_TED01"],["TED%3AAF-A0A5J4Z0Q3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5J4Z0Q3-F1-model_v4_TED01"],["TED%3AAF-A0A5J4YHT1-F1-model_v4_TED03","TED novel fold AF-A0A5J4YHT1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A35688","Porphyridium purpureum"]]},{"id":"NCBITaxon:35722","l":"Parasitella parasitica","na":1,"nb":3,"a":[["TED%3AAF-A0A0B7NWV4-F1-model_v4_TED02","TED novel fold AF-A0A0B7NWV4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A54571","Streptomyces venezuelae"],["NCBITaxon%3A953739","Streptomyces venezuelae ATCC 10712"],["NCBITaxon%3A35722","Parasitella parasitica"]]},{"id":"NCBITaxon:35787","l":"Limosilactobacillus pontis","na":1,"nb":3,"a":[["TED%3AAF-A0A2J6NPS8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2J6NPS8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1591","Lactobacillus sp."],["NCBITaxon%3A35787","Limosilactobacillus pontis"],["NCBITaxon%3A1423794","Limosilactobacillus pontis DSM 8475"]]},{"id":"NCBITaxon:360807","l":"Roseburia inulinivorans","na":1,"nb":3,"a":[["TED%3AAF-A0A173VWR5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A173VWR5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A360807","Roseburia inulinivorans"],["NCBITaxon%3A1263105","Roseburia inulinivorans CAG:15"],["NCBITaxon%3A622312","Roseburia inulinivorans DSM 16841"]]},{"id":"NCBITaxon:362242","l":"Mycobacterium ulcerans Agy99","na":3,"nb":1,"a":[["Pfam%3APF02654","Cobalamin-5-phosphate synthase"],["Pfam%3APF02622","AlgH-like"],["Pfam%3APF01628","HrcA protein C terminal domain"]],"b":[["NCBITaxon%3A362242","Mycobacterium ulcerans Agy99"]]},{"id":"NCBITaxon:362663","l":"Escherichia coli 536","na":3,"nb":1,"a":[["Pfam%3APF18616","CDI immunity proteins"],["Pfam%3APF09160","FimH, mannose binding"],["Pfam%3APF05860","TPS secretion domain"]],"b":[["NCBITaxon%3A362663","Escherichia coli 536"]]},{"id":"NCBITaxon:36330","l":"Plasmodium ovale","na":1,"nb":3,"a":[["Pfam%3APF05424","Duffy binding domain"]],"b":[["NCBITaxon%3A36330","Plasmodium ovale"],["NCBITaxon%3A864141","Plasmodium ovale curtisi"],["NCBITaxon%3A864142","Plasmodium ovale wallikeri"]]},{"id":"NCBITaxon:36746","l":"Pseudomonas cichorii","na":1,"nb":3,"a":[["TED%3AAF-A0A3M4VH83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M4VH83-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2488639","Pectobacterium versatile"],["NCBITaxon%3A36746","Pseudomonas cichorii"],["NCBITaxon%3A1441629","Pseudomonas cichorii JBC1"]]},{"id":"NCBITaxon:36841","l":"Terrisporobacter glycolicus","na":1,"nb":3,"a":[["TED%3AAF-A0A1I3PG81-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I3PG81-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A36841","Terrisporobacter glycolicus"],["NCBITaxon%3A1121315","Terrisporobacter glycolicus ATCC 14880 = DSM 1288"],["NCBITaxon%3A1125703","Terrisporobacter glycolicus CC88H"]]},{"id":"NCBITaxon:36911","l":"Clavispora lusitaniae","na":3,"nb":1,"a":[["TED%3AAF-A0A5Q0ICH9-F1-model_v4_TED01","TED novel fold AF-A0A5Q0ICH9-F1-model_v4_TED01"],["TED%3AAF-A0A5Q0ITE0-F1-model_v4_TED01","TED novel fold AF-A0A5Q0ITE0-F1-model_v4_TED01"],["TED%3AAF-A0A5Q0JDK0-F1-model_v4_TED01","TED novel fold AF-A0A5Q0JDK0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A36911","Clavispora lusitaniae"]]},{"id":"NCBITaxon:37329","l":"Nocardia farcinica","na":1,"nb":3,"a":[["TED%3AAF-A0A449G5H5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A449G5H5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A37329","Nocardia farcinica"],["NCBITaxon%3A247156","Nocardia farcinica IFM 10152"],["NCBITaxon%3A1210076","Nocardia farcinica NBRC 15532"]]},{"id":"NCBITaxon:37332","l":"Nocardia seriolae","na":1,"nb":3,"a":[["TED%3AAF-A0A0B8NE12-F1-model_v4_TED02","TED novel fold AF-A0A0B8NE12-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A37332","Nocardia seriolae"],["NCBITaxon%3A1454200","Nocardia seriolae N-2927"],["NCBITaxon%3A1210095","Nocardia seriolae NBRC 15557"]]},{"id":"NCBITaxon:38300","l":"Streptomyces pristinaespiralis","na":1,"nb":3,"a":[["Pfam%3APF12323","Helix-turn-helix domain"]],"b":[["NCBITaxon%3A38300","Streptomyces pristinaespiralis"],["NCBITaxon%3A457429","Streptomyces pristinaespiralis ATCC 25486"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:386415","l":"Clostridium novyi NT","na":3,"nb":1,"a":[["Pfam%3APF27467","ATP-dependent helicase/deoxyribonuclease AddB fifth domain"],["Pfam%3APF01888","CbiD"],["Pfam%3APF18146","Damage-inducible protein CinA KH domain"]],"b":[["NCBITaxon%3A386415","Clostridium novyi NT"]]},{"id":"NCBITaxon:386656","l":"Yersinia pestis Pestoides F","na":3,"nb":1,"a":[["Pfam%3APF13413","Helix-turn-helix domain"],["Pfam%3APF04361","Protein of unknown function (DUF494)"],["Pfam%3APF04792","V antigen (LcrV) protein"]],"b":[["NCBITaxon%3A386656","Yersinia pestis Pestoides F"]]},{"id":"NCBITaxon:390896","l":"Trematosphaeria pertusa","na":3,"nb":1,"a":[["TED%3AAF-A0A6A6I275-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A6I275-F1-model_v4_TED01"],["TED%3AAF-A0A6A6HUS3-F1-model_v4_TED03","TED novel fold AF-A0A6A6HUS3-F1-model_v4_TED03"],["TED%3AAF-A0A6A6J005-F1-model_v4_TED03","TED novel fold AF-A0A6A6J005-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A390896","Trematosphaeria pertusa"]]},{"id":"NCBITaxon:391904","l":"Bifidobacterium longum subsp. infantis ATCC 15697 = JCM 1222 = DSM 20088","na":1,"nb":3,"a":[["Pfam%3APF25528","Domain of unknown function (DUF7917)"]],"b":[["NCBITaxon%3A216816","Bifidobacterium longum"],["NCBITaxon%3A1682","Bifidobacterium longum subsp. infantis"],["NCBITaxon%3A391904","Bifidobacterium longum subsp. infantis ATCC 15697 = JCM 1222 = DSM 20088"]]},{"id":"NCBITaxon:393921","l":"Porphyromonas crevioricanis","na":1,"nb":3,"a":[["TED%3AAF-A0A2X4PLZ5-F1-model_v4_TED01","TED novel fold AF-A0A2X4PLZ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A393921","Porphyromonas crevioricanis"],["NCBITaxon%3A1305618","Porphyromonas crevioricanis JCM 13913"],["NCBITaxon%3A1305617","Porphyromonas crevioricanis JCM 15906"]]},{"id":"NCBITaxon:39496","l":"Eubacterium ventriosum","na":1,"nb":3,"a":[["TED%3AAF-A0A414RCC0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A414RCC0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A39496","Eubacterium ventriosum"],["NCBITaxon%3A411463","Eubacterium ventriosum ATCC 27560"],["NCBITaxon%3A1263081","Eubacterium ventriosum MGS:89"]]},{"id":"NCBITaxon:395963","l":"Beijerinckia indica subsp. indica ATCC 9039","na":1,"nb":3,"a":[["TED%3AAF-B2IFK3-F1-model_v4_TED03","TED novel fold AF-B2IFK3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A533","Beijerinckia indica"],["NCBITaxon%3A31994","Beijerinckia indica subsp. indica"],["NCBITaxon%3A395963","Beijerinckia indica subsp. indica ATCC 9039"]]},{"id":"NCBITaxon:397290","l":"Lachnospiraceae bacterium A2","na":3,"nb":1,"a":[["TED%3AAF-R9K6E4-F1-model_v4_TED02","TED highly-symmetric fold AF-R9K6E4-F1-model_v4_TED02"],["TED%3AAF-R9KN16-F1-model_v4_TED02","TED highly-symmetric fold AF-R9KN16-F1-model_v4_TED02"],["TED%3AAF-R9KRD0-F1-model_v4_TED01","TED novel fold AF-R9KRD0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A397290","Lachnospiraceae bacterium A2"]]},{"id":"NCBITaxon:399599","l":"Shewanella baltica OS195","na":3,"nb":1,"a":[["Pfam%3APF24860","FdhE, C-terminal domain"],["Pfam%3APF24859","FdhE, central domain"],["Pfam%3APF04216","FdhE, N-terminal"]],"b":[["NCBITaxon%3A399599","Shewanella baltica OS195"]]},{"id":"NCBITaxon:399739","l":"Ectopseudomonas mendocina ymp","na":3,"nb":1,"a":[["Pfam%3APF22289","Dimethylamine monooxygenase subunit DmmA-like, C-terminal domain"],["Pfam%3APF04359","Protein of unknown function (DUF493)"],["Pfam%3APF11927","Haem-dependent oxidative N-demethylase, alpha subunit-like"]],"b":[["NCBITaxon%3A399739","Ectopseudomonas mendocina ymp"]]},{"id":"NCBITaxon:401625","l":"Ceraceosorus bombacis","na":3,"nb":1,"a":[["TED%3AAF-A0A0P1B815-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0P1B815-F1-model_v4_TED02"],["TED%3AAF-A0A0N7LAT1-F1-model_v4_TED01","TED novel fold AF-A0A0N7LAT1-F1-model_v4_TED01"],["TED%3AAF-A0A0P1BJI8-F1-model_v4_TED01","TED novel fold AF-A0A0P1BJI8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A401625","Ceraceosorus bombacis"]]},{"id":"NCBITaxon:402880","l":"Methanococcus maripaludis C5","na":3,"nb":1,"a":[["Pfam%3APF02553","Cobalt transport protein component CbiN"],["Pfam%3APF18195","GatD N-terminal domain"],["Pfam%3APF01941","S-adenosylmethionine synthetase (AdoMet synthetase)"]],"b":[["NCBITaxon%3A402880","Methanococcus maripaludis C5"]]},{"id":"NCBITaxon:406547","l":"Rubripirellula obstinata","na":3,"nb":1,"a":[["TED%3AAF-A0A5B1CJC2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B1CJC2-F1-model_v4_TED01"],["TED%3AAF-A0A5B1CQ78-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B1CQ78-F1-model_v4_TED01"],["TED%3AAF-A0A5B1CIN8-F1-model_v4_TED02","TED novel fold AF-A0A5B1CIN8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A406547","Rubripirellula obstinata"]]},{"id":"NCBITaxon:408139","l":"Leptospira kmetyi","na":1,"nb":3,"a":[["TED%3AAF-A0A7I0IE69-F1-model_v4_TED02","TED novel fold AF-A0A7I0IE69-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A408139","Leptospira kmetyi"],["NCBITaxon%3A408140","Leptospira kmetyi serovar Malaysia"],["NCBITaxon%3A1049970","Leptospira kmetyi serovar Malaysia str. Bejo-Iso9"]]},{"id":"NCBITaxon:40841","l":"Succiniclasticum ruminis","na":1,"nb":3,"a":[["TED%3AAF-A0A1G6L1P5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G6L1P5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A40841","Succiniclasticum ruminis"],["NCBITaxon%3A1123323","Succiniclasticum ruminis DSM 9236"],["NCBITaxon%3A2775030","Succiniclasticum sp."]]},{"id":"NCBITaxon:40998","l":"Elsinoe australis","na":3,"nb":1,"a":[["TED%3AAF-A0A2P7YCG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P7YCG8-F1-model_v4_TED01"],["TED%3AAF-A0A4U7AWE5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4U7AWE5-F1-model_v4_TED02"],["TED%3AAF-A0A4U7AZW9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U7AZW9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A40998","Elsinoe australis"]]},{"id":"NCBITaxon:414004","l":"Cenarchaeum symbiosum A","na":3,"nb":1,"a":[["Pfam%3APF06973","Domain of unknown function (DUF1297)"],["Pfam%3APF06849","Protein of unknown function (DUF1246)"],["Pfam%3APF01950","Fructose-1,6-bisphosphatase"]],"b":[["NCBITaxon%3A414004","Cenarchaeum symbiosum A"]]},{"id":"NCBITaxon:416269","l":"Actinobacillus pleuropneumoniae serovar 5b str. L20","na":3,"nb":1,"a":[["Pfam%3APF11412","Thiol:disulfide interchange protein DsbD, N-terminal"],["Pfam%3APF18254","HMW1 domain 2"],["Pfam%3APF18071","HMW1C N-terminal"]],"b":[["NCBITaxon%3A416269","Actinobacillus pleuropneumoniae serovar 5b str. L20"]]},{"id":"NCBITaxon:41673","l":"Acidianus brierleyi","na":3,"nb":1,"a":[["TED%3AAF-A0A2U9IEJ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U9IEJ0-F1-model_v4_TED01"],["TED%3AAF-A0A2U9IC53-F1-model_v4_TED01","TED novel fold AF-A0A2U9IC53-F1-model_v4_TED01"],["TED%3AAF-A0A2U9ICQ8-F1-model_v4_TED02","TED novel fold AF-A0A2U9ICQ8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A41673","Acidianus brierleyi"]]},{"id":"NCBITaxon:420275","l":"Attheya septentrionalis","na":3,"nb":1,"a":[["TED%3AAF-A0A6T7ICE9-F1-model_v4_TED01","TED novel fold AF-A0A6T7ICE9-F1-model_v4_TED01"],["TED%3AAF-A0A7S2UDP5-F1-model_v4_TED02","TED novel fold AF-A0A7S2UDP5-F1-model_v4_TED02"],["TED%3AAF-A0A7S2XPC0-F1-model_v4_TED01","TED novel fold AF-A0A7S2XPC0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A420275","Attheya septentrionalis"]]},{"id":"NCBITaxon:426428","l":"Fusarium oxysporum f. sp. lycopersici 4287","na":3,"nb":1,"a":[["Pfam%3APF27599","CcsR C-terminal domain"],["Pfam%3APF09421","Frequency clock protein"],["Pfam%3APF09729","Gti1/Pac2 family"]],"b":[["NCBITaxon%3A426428","Fusarium oxysporum f. sp. lycopersici 4287"]]},{"id":"NCBITaxon:43049","l":"Tilletia indica","na":3,"nb":1,"a":[["TED%3AAF-A0A177T6N8-F1-model_v4_TED02","TED novel fold AF-A0A177T6N8-F1-model_v4_TED02"],["TED%3AAF-A0A177T862-F1-model_v4_TED02","TED novel fold AF-A0A177T862-F1-model_v4_TED02"],["TED%3AAF-A0A177TT98-F1-model_v4_TED04","TED novel fold AF-A0A177TT98-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A43049","Tilletia indica"]]},{"id":"NCBITaxon:436515","l":"Variovorax boronicumulans","na":1,"nb":3,"a":[["TED%3AAF-A0A250DMB0-F1-model_v4_TED01","TED novel fold AF-A0A250DMB0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A436515","Variovorax boronicumulans"],["NCBITaxon%3A1321609","Variovorax boronicumulans NBRC 103145"],["NCBITaxon%3A34073","Variovorax paradoxus"]]},{"id":"NCBITaxon:43662","l":"Pseudoalteromonas piscicida","na":1,"nb":3,"a":[["Pfam%3APF08329","Chitinase A, N-terminal domain"]],"b":[["NCBITaxon%3A43662","Pseudoalteromonas piscicida"],["NCBITaxon%3A1279016","Pseudoalteromonas piscicida ATCC 15057"],["NCBITaxon%3A53249","Pseudoalteromonas sp."]]},{"id":"NCBITaxon:43768","l":"Corynebacterium matruchotii","na":1,"nb":3,"a":[["TED%3AAF-A0A6H9XP04-F1-model_v4_TED01","TED novel fold AF-A0A6H9XP04-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A43768","Corynebacterium matruchotii"],["NCBITaxon%3A553207","Corynebacterium matruchotii ATCC 14266"],["NCBITaxon%3A566549","Corynebacterium matruchotii ATCC 33806"]]},{"id":"NCBITaxon:44008","l":"Enterococcus cecorum","na":1,"nb":3,"a":[["TED%3AAF-A0A200I1A2-F1-model_v4_TED01","TED novel fold AF-A0A200I1A2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A44008","Enterococcus cecorum"],["NCBITaxon%3A1121864","Enterococcus cecorum DSM 20682 = ATCC 43198"],["NCBITaxon%3A1352","Enterococcus faecium"]]},{"id":"NCBITaxon:444158","l":"Methanococcus maripaludis C6","na":3,"nb":1,"a":[["Pfam%3APF06847","Archaeal Peptidase A24 C-terminus Type II"],["Pfam%3APF09888","Uncharacterized protein conserved in archaea (DUF2115)"],["Pfam%3APF05165","GTP cyclohydrolase III"]],"b":[["NCBITaxon%3A444158","Methanococcus maripaludis C6"]]},{"id":"NCBITaxon:45133","l":"Lasiodiplodia theobromae","na":3,"nb":1,"a":[["TED%3AAF-A0A5N5DCC3-F1-model_v4_TED01","TED novel fold AF-A0A5N5DCC3-F1-model_v4_TED01"],["TED%3AAF-A0A5N5DDT9-F1-model_v4_TED01","TED novel fold AF-A0A5N5DDT9-F1-model_v4_TED01"],["TED%3AAF-A0A5N5DLG2-F1-model_v4_TED02","TED novel fold AF-A0A5N5DLG2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A45133","Lasiodiplodia theobromae"]]},{"id":"NCBITaxon:454130","l":"Aspergillus calidoustus","na":3,"nb":1,"a":[["Pfam%3APF28380","Sesquiterpene cyclase astC-like C-terminal domain"],["TED%3AAF-A0A0U5FXA2-F1-model_v4_TED01","TED novel fold AF-A0A0U5FXA2-F1-model_v4_TED01"],["TED%3AAF-A0A0U5GJ59-F1-model_v4_TED01","TED novel fold AF-A0A0U5GJ59-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A454130","Aspergillus calidoustus"]]},{"id":"NCBITaxon:46158","l":"Actinomadura citrea","na":1,"nb":3,"a":[["TED%3AAF-A0A7Y9GGR5-F1-model_v4_TED05","TED novel fold AF-A0A7Y9GGR5-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A46158","Actinomadura citrea"],["NCBITaxon%3A46161","Actinomadura kijaniata"],["NCBITaxon%3A1220561","Actinomadura kijaniata NBRC 14229"]]},{"id":"NCBITaxon:463","l":"Fluoribacter dumoffii","na":1,"nb":3,"a":[["TED%3AAF-A0A377G6U6-F1-model_v4_TED01","TED novel fold AF-A0A377G6U6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A463","Fluoribacter dumoffii"],["NCBITaxon%3A1094715","Fluoribacter dumoffii NY 23"],["NCBITaxon%3A1094714","Fluoribacter dumoffii Tex-KL"]]},{"id":"NCBITaxon:46610","l":"Geobacter sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A399I484-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A399I484-F1-model_v4_TED02"],["TED%3AAF-A0A3N9VD38-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3N9VD38-F1-model_v4_TED02"],["TED%3AAF-A0A3N9V9F3-F1-model_v4_TED01","TED novel fold AF-A0A3N9V9F3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A46610","Geobacter sp."]]},{"id":"NCBITaxon:470137","l":"Brucella suis ATCC 23445","na":3,"nb":1,"a":[["Pfam%3APF07930","D-aminopeptidase, domain B"],["Pfam%3APF07378","Flagellar protein FlbT"],["PROSITE%3APS00648","Bacterial ribonuclease P protein component signature"]],"b":[["NCBITaxon%3A470137","Brucella suis ATCC 23445"]]},{"id":"NCBITaxon:471871","l":"Clostridium sporogenes ATCC 15579","na":3,"nb":1,"a":[["Pfam%3APF27077","Exosporium protein A"],["Pfam%3APF27268","Exosporium protein B"],["Pfam%3APF25250","Domain of unknown function (DUF7852)"]],"b":[["NCBITaxon%3A471871","Clostridium sporogenes ATCC 15579"]]},{"id":"NCBITaxon:47660","l":"Pseudomonas sp. ADP","na":3,"nb":1,"a":[["Pfam%3APF21986","Allophanate hydrolase C-terminal domain"],["Pfam%3APF09663","Amidohydrolase ring-opening protein (Amido_AtzD_TrzD)"],["Pfam%3APF13318","1-carboxybiuret hydrolase subunit AtzG-like"]],"b":[["NCBITaxon%3A47660","Pseudomonas sp. ADP"]]},{"id":"NCBITaxon:477690","l":"Lishizhenia tianjinensis","na":3,"nb":1,"a":[["TED%3AAF-A0A1I6Y9W8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I6Y9W8-F1-model_v4_TED01"],["TED%3AAF-A0A1I6YTM9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I6YTM9-F1-model_v4_TED02"],["TED%3AAF-A0A1I6XV16-F1-model_v4_TED01","TED novel fold AF-A0A1I6XV16-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A477690","Lishizhenia tianjinensis"]]},{"id":"NCBITaxon:478008","l":"Escherichia coli O157:H7 str. EC869","na":3,"nb":1,"a":[["Pfam%3APF21111","CDI toxin restriction endonuclease-like domain"],["Pfam%3APF21483","Toxin CdiA-like, helical domain"],["Pfam%3APF07262","CDI immunity protein"]],"b":[["NCBITaxon%3A478008","Escherichia coli O157:H7 str. EC869"]]},{"id":"NCBITaxon:47885","l":"Pseudomonas oryzihabitans","na":1,"nb":3,"a":[["TED%3AAF-A0A7X3T0R5-F1-model_v4_TED02","TED novel fold AF-A0A7X3T0R5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A47885","Pseudomonas oryzihabitans"],["NCBITaxon%3A1215113","Pseudomonas oryzihabitans NBRC 102199"],["NCBITaxon%3A1112217","Pseudomonas psychrotolerans L19"]]},{"id":"NCBITaxon:47886","l":"Pseudomonas luteola","na":1,"nb":3,"a":[["TED%3AAF-A0A2X2CC74-F1-model_v4_TED02","TED novel fold AF-A0A2X2CC74-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A47886","Pseudomonas luteola"],["NCBITaxon%3A1215106","Pseudomonas luteola NBRC 103146"],["NCBITaxon%3A1207076","Pseudomonas luteola XLDN4-9"]]},{"id":"NCBITaxon:482957","l":"Burkholderia lata","na":1,"nb":3,"a":[["TED%3AAF-A0A6P2XDC0-F1-model_v4_TED01","TED novel fold AF-A0A6P2XDC0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2015348","Burkholderia aenigmatica"],["NCBITaxon%3A292","Burkholderia cepacia"],["NCBITaxon%3A482957","Burkholderia lata"]]},{"id":"NCBITaxon:487821","l":"Xanthomonas arboricola pv. corylina","na":1,"nb":3,"a":[["TED%3AAF-A0A2S7CES6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S7CES6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A56448","Xanthomonas arboricola"],["NCBITaxon%3A487821","Xanthomonas arboricola pv. corylina"],["NCBITaxon%3A1306948","Xanthomonas arboricola pv. corylina str. NCCB 100457"]]},{"id":"NCBITaxon:491915","l":"Anoxybacillus flavithermus WK1","na":1,"nb":3,"a":[["TED%3AAF-B7GL61-F1-model_v4_TED01","TED highly-symmetric fold AF-B7GL61-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A33934","Anoxybacillus flavithermus"],["NCBITaxon%3A1185649","Anoxybacillus flavithermus subsp. flavithermus"],["NCBITaxon%3A491915","Anoxybacillus flavithermus WK1"]]},{"id":"NCBITaxon:5116","l":"Cryphonectria parasitica","na":1,"nb":3,"a":[["Pfam%3APF26980","Dicer-like protein 2, dsRNA binding domain"]],"b":[["NCBITaxon%3A331526","Kribbia dieselivorans"],["NCBITaxon%3A1223526","Kribbia dieselivorans NBRC 106261"],["NCBITaxon%3A5116","Cryphonectria parasitica"]]},{"id":"NCBITaxon:51663","l":"Pediococcus damnosus","na":1,"nb":3,"a":[["TED%3AAF-A0A0R2HKY5-F1-model_v4_TED01","TED novel fold AF-A0A0R2HKY5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A51663","Pediococcus damnosus"],["NCBITaxon%3A1089442","Pediococcus damnosus 9-6b"],["NCBITaxon%3A1448143","Pediococcus damnosus LMG 28219"]]},{"id":"NCBITaxon:520092","l":"Tahibacter aquaticus","na":3,"nb":1,"a":[["TED%3AAF-A0A4R6YT45-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R6YT45-F1-model_v4_TED01"],["TED%3AAF-A0A4R6Z707-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R6Z707-F1-model_v4_TED01"],["TED%3AAF-A0A4V3DLG3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A4V3DLG3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A520092","Tahibacter aquaticus"]]},{"id":"NCBITaxon:5286","l":"Rhodotorula toruloides","na":3,"nb":1,"a":[["PROSITE%3APS00488","Phenylalanine and histidine ammonia-lyases signature"],["TED%3AAF-A0A0K3C4G3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0K3C4G3-F1-model_v4_TED02"],["TED%3AAF-A0A0K3CJQ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0K3CJQ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5286","Rhodotorula toruloides"]]},{"id":"NCBITaxon:53412","l":"Metapseudomonas resinovorans","na":1,"nb":3,"a":[["Pfam%3APF11723","Homotrimeric ring hydroxylase"]],"b":[["NCBITaxon%3A53412","Metapseudomonas resinovorans"],["NCBITaxon%3A1123020","Metapseudomonas resinovorans DSM 21078"],["NCBITaxon%3A1245471","Metapseudomonas resinovorans NBRC 106553"]]},{"id":"NCBITaxon:5346","l":"Coprinopsis cinerea","na":3,"nb":1,"a":[["Pfam%3APF18251","Fungal defensin Copsin"],["Pfam%3APF16010","Cytochrome domain of cellobiose dehydrogenase"],["Pfam%3APF22807","TrAA12-like"]],"b":[["NCBITaxon%3A5346","Coprinopsis cinerea"]]},{"id":"NCBITaxon:537457","l":"Actinobacillus pleuropneumoniae serovar 7 str. AP76","na":3,"nb":1,"a":[["Pfam%3APF18254","HMW1 domain 2"],["Pfam%3APF18071","HMW1C N-terminal"],["TED%3AAF-B3H2V6-F1-model_v4_TED02","TED novel fold AF-B3H2V6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A537457","Actinobacillus pleuropneumoniae serovar 7 str. AP76"]]},{"id":"NCBITaxon:555217","l":"Zymomonas mobilis subsp. mobilis ATCC 10988","na":1,"nb":3,"a":[["Pfam%3APF13154","Protein of unknown function (DUF3991)"]],"b":[["NCBITaxon%3A542","Zymomonas mobilis"],["NCBITaxon%3A120045","Zymomonas mobilis subsp. mobilis"],["NCBITaxon%3A555217","Zymomonas mobilis subsp. mobilis ATCC 10988"]]},{"id":"NCBITaxon:55529","l":"Guillardia theta","na":3,"nb":1,"a":[["Pfam%3APF06868","Protein of unknown function (DUF1257)"],["Pfam%3APF05421","Protein of unknown function (DUF751)"],["TED%3AAF-A0A7S4PQE0-F1-model_v4_TED01","TED novel fold AF-A0A7S4PQE0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A905079","Guillardia theta CCMP2712"]]},{"id":"NCBITaxon:559515","l":"Hyaloperonospora arabidopsidis Emoy2","na":3,"nb":1,"a":[["Pfam%3APF22223","ATR1 N-terminal domain"],["Pfam%3APF21421","Avirulence protein ATR1, WY-domain"],["Pfam%3APF16829","Avirulence protein ATR13, RxLR effector"]],"b":[["NCBITaxon%3A559515","Hyaloperonospora arabidopsidis Emoy2"]]},{"id":"NCBITaxon:5627","l":"Grifola frondosa","na":3,"nb":1,"a":[["Pfam%3APF14521","Lysine-specific metallo-endopeptidase"],["TED%3AAF-A0A1C7MDV5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1C7MDV5-F1-model_v4_TED02"],["TED%3AAF-A0A1C7MM25-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C7MM25-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5627","Grifola frondosa"]]},{"id":"NCBITaxon:56438","l":"Couchioplanes caeruleus","na":1,"nb":3,"a":[["TED%3AAF-A0A3N1FTH6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N1FTH6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A56428","Couchioplanes azureus"],["NCBITaxon%3A56438","Couchioplanes caeruleus"],["NCBITaxon%3A56427","Couchioplanes caeruleus subsp. caeruleus"]]},{"id":"NCBITaxon:5689","l":"Leishmania tarentolae","na":3,"nb":1,"a":[["Pfam%3APF18526","Thymine dioxygenase JBP1 DNA-binding domain"],["TED%3AAF-A0A640KN43-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A640KN43-F1-model_v4_TED01"],["TED%3AAF-A0A640KQE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A640KQE6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5689","Leishmania tarentolae"]]},{"id":"NCBITaxon:569365","l":"Cladophialophora immunda","na":3,"nb":1,"a":[["TED%3AAF-A0A0D2AQD9-F1-model_v4_TED02","TED novel fold AF-A0A0D2AQD9-F1-model_v4_TED02"],["TED%3AAF-A0A0D2BBC7-F1-model_v4_TED02","TED novel fold AF-A0A0D2BBC7-F1-model_v4_TED02"],["TED%3AAF-A0A0D2DH84-F1-model_v4_TED02","TED novel fold AF-A0A0D2DH84-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A569365","Cladophialophora immunda"]]},{"id":"NCBITaxon:569862","l":"Streptosporangium minutum","na":3,"nb":1,"a":[["TED%3AAF-A0A243RGM5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A243RGM5-F1-model_v4_TED01"],["TED%3AAF-A0A243RM70-F1-model_v4_TED01","TED novel fold AF-A0A243RM70-F1-model_v4_TED01"],["TED%3AAF-A0A243RXS2-F1-model_v4_TED01","TED novel fold AF-A0A243RXS2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A569862","Streptosporangium minutum"]]},{"id":"NCBITaxon:570156","l":"Pseudoalteromonas lipolytica","na":1,"nb":3,"a":[["TED%3AAF-A0A1I7CGN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I7CGN6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A570156","Pseudoalteromonas lipolytica"],["NCBITaxon%3A1315275","Pseudoalteromonas lipolytica LMEB 39"],["NCBITaxon%3A1452721","Pseudoalteromonas lipolytica SCSIO 04301"]]},{"id":"NCBITaxon:5791","l":"Badhamia polycephala","na":3,"nb":1,"a":[["Pfam%3APF09192","Actin-fragmin kinase, catalytic"],["Pfam%3APF08964","Beta/Gamma crystallin"],["Pfam%3APF03866","Hydrophobic abundant protein (HAP)"]],"b":[["NCBITaxon%3A5791","Badhamia polycephala"]]},{"id":"NCBITaxon:579112","l":"Vibrio cholerae M66-2","na":3,"nb":1,"a":[["Pfam%3APF21868","GlcNAc-binding protein A, third domain"],["Pfam%3APF20773","Immune inhibitor A-like, MAM domain"],["Pfam%3APF20774","Immune inhibitor A-like metallopeptidase, VEG domain"]],"b":[["NCBITaxon%3A579112","Vibrio cholerae M66-2"]]},{"id":"NCBITaxon:585056","l":"Escherichia coli UMN026","na":3,"nb":1,"a":[["Pfam%3APF27070","Rpn/YhgA-like nuclease family, C-terminal HTH domain"],["Pfam%3APF09134","Invasin, domain 3"],["Pfam%3APF21764","Invasin, domain 4"]],"b":[["NCBITaxon%3A585056","Escherichia coli UMN026"]]},{"id":"NCBITaxon:5861","l":"Plasmodium yoelii","na":1,"nb":3,"a":[["TED%3AAF-A0A078KHH8-F1-model_v4_TED01","TED novel fold AF-A0A078KHH8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5861","Plasmodium yoelii"],["NCBITaxon%3A283801","Plasmodium yoelii killicki"],["NCBITaxon%3A31274","Plasmodium yoelii nigeriensis"]]},{"id":"NCBITaxon:59374","l":"Fibrobacter succinogenes subsp. succinogenes S85","na":1,"nb":3,"a":[["TED%3AAF-C9RP25-F1-model_v4_TED01","TED novel fold AF-C9RP25-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A833","Fibrobacter succinogenes"],["NCBITaxon%3A834","Fibrobacter succinogenes subsp. succinogenes"],["NCBITaxon%3A59374","Fibrobacter succinogenes subsp. succinogenes S85"]]},{"id":"NCBITaxon:5949","l":"Stylonychia lemnae","na":3,"nb":1,"a":[["TED%3AAF-A0A078AJL2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A078AJL2-F1-model_v4_TED01"],["TED%3AAF-A0A078B2T0-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A078B2T0-F1-model_v4_TED05"],["TED%3AAF-A0A078B0V0-F1-model_v4_TED02","TED novel fold AF-A0A078B0V0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A5949","Stylonychia lemnae"]]},{"id":"NCBITaxon:61652","l":"Serratia rubidaea","na":1,"nb":3,"a":[["TED%3AAF-A0A3S5F1U8-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A3S5F1U8-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A61652","Serratia rubidaea"],["NCBITaxon%3A1218096","Serratia rubidaea NBRC 103169"],["NCBITaxon%3A1255701","Serratia rubidaea TA_26"]]},{"id":"NCBITaxon:644223","l":"Komagataella phaffii GS115","na":3,"nb":1,"a":[["Pfam%3APF05388","Carboxypeptidase Y pro-peptide"],["Pfam%3APF26001","Peroxin 8 protein-like, N-terminal domain"],["Pfam%3APF27812","PEX8 central TPR-like domain"]],"b":[["NCBITaxon%3A644223","Komagataella phaffii GS115"]]},{"id":"NCBITaxon:645657","l":"Bacillus subtilis subsp. natto BEST195","na":3,"nb":1,"a":[["Pfam%3APF24517","Carbohydrate-binding module family 96"],["Pfam%3APF20148","Domain of unknown function (DUF6531)"],["Pfam%3APF05593","RHS Repeat"]],"b":[["NCBITaxon%3A645657","Bacillus subtilis subsp. natto BEST195"]]},{"id":"NCBITaxon:648716","l":"Cohnella sp. AR92","na":3,"nb":1,"a":[["TED%3AAF-A0A3S0Z044-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S0Z044-F1-model_v4_TED01"],["TED%3AAF-A0A433RAW9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A433RAW9-F1-model_v4_TED01"],["TED%3AAF-A0A433RDT1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A433RDT1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A648716","Cohnella sp. AR92"]]},{"id":"NCBITaxon:65357","l":"Albugo candida","na":3,"nb":1,"a":[["TED%3AAF-A0A024G112-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A024G112-F1-model_v4_TED03"],["TED%3AAF-A0A024FUD4-F1-model_v4_TED02","TED novel fold AF-A0A024FUD4-F1-model_v4_TED02"],["TED%3AAF-A0A024GNU1-F1-model_v4_TED01","TED novel fold AF-A0A024GNU1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A65357","Albugo candida"]]},{"id":"NCBITaxon:65393","l":"Gloeothece citriformis PCC 7424","na":3,"nb":1,"a":[["Pfam%3APF13720","Udp N-acetylglucosamine O-acyltransferase; Domain 2"],["TED%3AAF-B7K6Y8-F1-model_v4_TED03","TED novel fold AF-B7K6Y8-F1-model_v4_TED03"],["TED%3AAF-B7KGW4-F1-model_v4_TED01","TED novel fold AF-B7KGW4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A65393","Gloeothece citriformis PCC 7424"]]},{"id":"NCBITaxon:65515","l":"Nonomuraea dietziae","na":1,"nb":3,"a":[["TED%3AAF-A0A7W5Y4U9-F1-model_v4_TED02","TED novel fold AF-A0A7W5Y4U9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A504797","Actinopolymorpha cephalotaxi"],["NCBITaxon%3A65515","Nonomuraea dietziae"],["NCBITaxon%3A1494959","Pseudogracilibacillus auburnensis"]]},{"id":"NCBITaxon:655844","l":"Metarhizium robertsii ARSEF 23","na":3,"nb":1,"a":[["Pfam%3APF07110","EthD domain"],["Pfam%3APF09421","Frequency clock protein"],["TED%3AAF-A0A0B2XHY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0B2XHY6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A655844","Metarhizium robertsii ARSEF 23"]]},{"id":"NCBITaxon:659","l":"Photobacterium phosphoreum","na":1,"nb":3,"a":[["Pfam%3APF02273","Acyl transferase"]],"b":[["NCBITaxon%3A318456","Photobacterium kishitanii"],["NCBITaxon%3A659","Photobacterium phosphoreum"],["NCBITaxon%3A1454202","Photobacterium phosphoreum ANT-2200"]]},{"id":"NCBITaxon:65959","l":"Acetobacter pomorum","na":1,"nb":3,"a":[["TED%3AAF-A0A2G4RD85-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G4RD85-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A65959","Acetobacter pomorum"],["NCBITaxon%3A945681","Acetobacter pomorum DM001"],["NCBITaxon%3A1307917","Acetobacter pomorum DSM 11825"]]},{"id":"NCBITaxon:660122","l":"Fusarium vanettenii 77-13-4","na":3,"nb":1,"a":[["Pfam%3APF17660","Polyglycine hydrolase-like, structural repeat"],["Pfam%3APF26719","ATPase synthesis protein 25, C-terminal TPR repeats"],["TED%3AAF-C7YNY6-F1-model_v4_TED02","TED highly-symmetric fold AF-C7YNY6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A660122","Fusarium vanettenii 77-13-4"]]},{"id":"NCBITaxon:660520","l":"Halogranum amylolyticum","na":3,"nb":1,"a":[["TED%3AAF-A0A1H8WPE4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H8WPE4-F1-model_v4_TED01"],["TED%3AAF-A0A1H8R6W4-F1-model_v4_TED02","TED novel fold AF-A0A1H8R6W4-F1-model_v4_TED02"],["TED%3AAF-A0A1H8T5Q7-F1-model_v4_TED02","TED novel fold AF-A0A1H8T5Q7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A660520","Halogranum amylolyticum"]]},{"id":"NCBITaxon:66271","l":"Pantoea stewartii subsp. stewartii","na":1,"nb":3,"a":[["Pfam%3APF11725","AvrE-family Type-III effector proteins (T3Es)"]],"b":[["NCBITaxon%3A66269","Pantoea stewartii"],["NCBITaxon%3A66271","Pantoea stewartii subsp. stewartii"],["NCBITaxon%3A660596","Pantoea stewartii subsp. stewartii DC283"]]},{"id":"NCBITaxon:664683","l":"Vreelandella titanicae","na":1,"nb":3,"a":[["TED%3AAF-A0A7Y6R1H5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y6R1H5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1761787","Halomonas sp. DSM 26667"],["NCBITaxon%3A664683","Vreelandella titanicae"],["NCBITaxon%3A1204738","Vreelandella titanicae BH1"]]},{"id":"NCBITaxon:67267","l":"Streptomyces alboflavus","na":3,"nb":1,"a":[["TED%3AAF-A0A1Z1WH37-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z1WH37-F1-model_v4_TED01"],["TED%3AAF-A0A291W4F3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A291W4F3-F1-model_v4_TED01"],["TED%3AAF-A0A291W5G3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A291W5G3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A67267","Streptomyces alboflavus"]]},{"id":"NCBITaxon:68040","l":"Streptomyces diastaticus subsp. diastaticus","na":1,"nb":3,"a":[["TED%3AAF-A0A6A0C936-F1-model_v4_TED02","TED novel fold AF-A0A6A0C936-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1956","Streptomyces diastaticus"],["NCBITaxon%3A68040","Streptomyces diastaticus subsp. diastaticus"],["NCBITaxon%3A53448","Streptomyces gougerotii"]]},{"id":"NCBITaxon:68197","l":"Streptomyces fimbriatus","na":1,"nb":3,"a":[["PROSITE%3APS00093","N-4 cytosine-specific DNA methylases signature"]],"b":[["NCBITaxon%3A1398493","Pseudocitrobacter faecalis"],["NCBITaxon%3A68197","Streptomyces fimbriatus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:685828","l":"Armatimonas rosea","na":3,"nb":1,"a":[["TED%3AAF-A0A7W9SS11-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7W9SS11-F1-model_v4_TED04"],["TED%3AAF-A0A7W9W617-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7W9W617-F1-model_v4_TED03"],["TED%3AAF-A0A7W9WAF2-F1-model_v4_TED04","TED novel fold AF-A0A7W9WAF2-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A685828","Armatimonas rosea"]]},{"id":"NCBITaxon:68886","l":"Theileria orientalis","na":3,"nb":1,"a":[["TED%3AAF-A0A2T7I0Y7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2T7I0Y7-F1-model_v4_TED02"],["TED%3AAF-A0A2T7ITL4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T7ITL4-F1-model_v4_TED01"],["TED%3AAF-A0A2T7IKV1-F1-model_v4_TED01","TED novel fold AF-A0A2T7IKV1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A68886","Theileria orientalis"]]},{"id":"NCBITaxon:690879","l":"Terrimicrobium sacchariphilum","na":3,"nb":1,"a":[["TED%3AAF-A0A146G6C7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A146G6C7-F1-model_v4_TED02"],["TED%3AAF-A0A146G3H0-F1-model_v4_TED03","TED novel fold AF-A0A146G3H0-F1-model_v4_TED03"],["TED%3AAF-A0A146GFR8-F1-model_v4_TED02","TED novel fold AF-A0A146GFR8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A690879","Terrimicrobium sacchariphilum"]]},{"id":"NCBITaxon:698986","l":"Olavius sp. associated proteobacterium Delta 1","na":3,"nb":1,"a":[["TED%3AAF-A0A6J4WR07-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6J4WR07-F1-model_v4_TED01"],["TED%3AAF-A0A6J4X3E0-F1-model_v4_TED01","TED novel fold AF-A0A6J4X3E0-F1-model_v4_TED01"],["TED%3AAF-A0A6J4XQQ0-F1-model_v4_TED01","TED novel fold AF-A0A6J4XQQ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A698986","Olavius sp. associated proteobacterium Delta 1"]]},{"id":"NCBITaxon:69974","l":"Mesorhizobium plurifarium","na":1,"nb":3,"a":[["PROSITE%3APS01349","Nodulation protein nodA signature"]],"b":[["NCBITaxon%3A69974","Mesorhizobium plurifarium"],["NCBITaxon%3A198626","Mesorhizobium plurifarium subsp. americum"],["NCBITaxon%3A391","Rhizobium sp."]]},{"id":"NCBITaxon:703342","l":"Myroides marinus","na":3,"nb":1,"a":[["TED%3AAF-A0A163X950-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A163X950-F1-model_v4_TED01"],["TED%3AAF-A0A1H6XJL5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1H6XJL5-F1-model_v4_TED03"],["TED%3AAF-A0A164A2Y1-F1-model_v4_TED02","TED novel fold AF-A0A164A2Y1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A703342","Myroides marinus"]]},{"id":"NCBITaxon:70996","l":"Herpetosiphon geysericola","na":3,"nb":1,"a":[["TED%3AAF-A0A0P6YGG3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0P6YGG3-F1-model_v4_TED01"],["TED%3AAF-A0A0P6XCC2-F1-model_v4_TED01","TED novel fold AF-A0A0P6XCC2-F1-model_v4_TED01"],["TED%3AAF-A0A0P6XIM9-F1-model_v4_TED03","TED novel fold AF-A0A0P6XIM9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A70996","Herpetosiphon geysericola"]]},{"id":"NCBITaxon:713059","l":"Candidatus Saccharibacteria bacterium oral taxon 488","na":3,"nb":1,"a":[["TED%3AAF-A0A6M5F8X7-F1-model_v4_TED02","TED novel fold AF-A0A6M5F8X7-F1-model_v4_TED02"],["TED%3AAF-A0A857VBF2-F1-model_v4_TED02","TED novel fold AF-A0A857VBF2-F1-model_v4_TED02"],["TED%3AAF-A0A857VF06-F1-model_v4_TED01","TED novel fold AF-A0A857VF06-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A713059","Candidatus Saccharibacteria bacterium oral taxon 488"]]},{"id":"NCBITaxon:71433","l":"Mesorhizobium amorphae","na":1,"nb":3,"a":[["TED%3AAF-A0A7Z1UR79-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Z1UR79-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A71433","Mesorhizobium amorphae"],["NCBITaxon%3A1449348","Mesorhizobium amorphae CCBAU 01583"],["NCBITaxon%3A1082933","Mesorhizobium amorphae CCNWGS0123"]]},{"id":"NCBITaxon:748857","l":"Roseimicrobium gellanilyticum","na":3,"nb":1,"a":[["TED%3AAF-A0A366H6K4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A366H6K4-F1-model_v4_TED02"],["TED%3AAF-A0A366HAW4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A366HAW4-F1-model_v4_TED02"],["TED%3AAF-A0A366HBA0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A366HBA0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A748857","Roseimicrobium gellanilyticum"]]},{"id":"NCBITaxon:749414","l":"Streptomyces bingchenggensis BCW-1","na":3,"nb":1,"a":[["Pfam%3APF14509","Glycosyl-hydrolase 97 C-terminal, oligomerisation"],["Pfam%3APF14508","Glycosyl-hydrolase 97 N-terminal"],["Pfam%3APF10566","Glycoside hydrolase 97"]],"b":[["NCBITaxon%3A749414","Streptomyces bingchenggensis BCW-1"]]},{"id":"NCBITaxon:754081","l":"Escherichia coli STEC_O31","na":3,"nb":1,"a":[["Pfam%3APF18624","CDI immunity protein"],["Pfam%3APF21726","Family of unknown function (DUF6862)"],["Pfam%3APF13332","Hemagglutinin repeat"]],"b":[["NCBITaxon%3A754081","Escherichia coli STEC_O31"]]},{"id":"NCBITaxon:758826","l":"Acidovorax radicis","na":1,"nb":3,"a":[["TED%3AAF-A0A561C4M3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A561C4M3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A758826","Acidovorax radicis"],["NCBITaxon%3A999386","Acidovorax radicis N35"],["NCBITaxon%3A999394","Acidovorax radicis N35v"]]},{"id":"NCBITaxon:765821","l":"uncultured Blautia sp.","na":3,"nb":1,"a":[["TED%3AAF-A0A6N2W179-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A6N2W179-F1-model_v4_TED04"],["TED%3AAF-A0A1C5PFZ2-F1-model_v4_TED01","TED novel fold AF-A0A1C5PFZ2-F1-model_v4_TED01"],["TED%3AAF-A0A1C5UUR5-F1-model_v4_TED01","TED novel fold AF-A0A1C5UUR5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A765821","uncultured Blautia sp."]]},{"id":"NCBITaxon:78327","l":"Pseudomonas mosselii","na":1,"nb":3,"a":[["TED%3AAF-A0A2V4KNJ1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V4KNJ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A78327","Pseudomonas mosselii"],["NCBITaxon%3A1403339","Pseudomonas mosselii DSM 17497"],["NCBITaxon%3A1388763","Pseudomonas mosselii SJ10"]]},{"id":"NCBITaxon:79885","l":"Alkalihalophilus pseudofirmus","na":1,"nb":3,"a":[["TED%3AAF-A0A1Q8TV17-F1-model_v4_TED02","TED novel fold AF-A0A1Q8TV17-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A79885","Alkalihalophilus pseudofirmus"],["NCBITaxon%3A398511","Alkalihalophilus pseudofirmus OF4"],["NCBITaxon%3A83428","uncultured Bacillus sp."]]},{"id":"NCBITaxon:79967","l":"Erwinia pyrifoliae","na":1,"nb":3,"a":[["Pfam%3APF09589","HrpA pilus formation protein"]],"b":[["NCBITaxon%3A79967","Erwinia pyrifoliae"],["NCBITaxon%3A644651","Erwinia pyrifoliae DSM 12163"],["NCBITaxon%3A634499","Erwinia pyrifoliae Ep1/96"]]},{"id":"NCBITaxon:83555","l":"Chlamydia abortus","na":1,"nb":3,"a":[["TED%3AAF-A0A5C1D8N1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C1D8N1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A83555","Chlamydia abortus"],["NCBITaxon%3A1003238","Chlamydia abortus LLG"],["NCBITaxon%3A218497","Chlamydia abortus S26/3"]]},{"id":"NCBITaxon:83655","l":"Leclercia adecarboxylata","na":1,"nb":3,"a":[["TED%3AAF-A0A5B7XGB6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A5B7XGB6-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A42895","Enterobacter sp."],["NCBITaxon%3A83655","Leclercia adecarboxylata"],["NCBITaxon%3A911008","Leclercia adecarboxylata ATCC 23216 = NBRC 102595"]]},{"id":"NCBITaxon:84588","l":"Parasynechococcus marenigrum WH 8102","na":3,"nb":1,"a":[["Pfam%3APF08936","Carboxysome Shell Carbonic Anhydrase, C-terminal"],["Pfam%3APF20686","Carboxysome Shell Carbonic Anhydrase, catalytic domain"],["Pfam%3APF20687","Carboxysome Shell Carbonic Anhydrase, N-terminal"]],"b":[["NCBITaxon%3A84588","Parasynechococcus marenigrum WH 8102"]]},{"id":"NCBITaxon:84635","l":"Bacillus sp. GL1","na":3,"nb":1,"a":[["Pfam%3APF25275","Golvesin C-terminal domain"],["Pfam%3APF07470","Glycosyl Hydrolase Family 88"],["Pfam%3APF08124","Polysaccharide lyase family 8, N terminal alpha-helical domain"]],"b":[["NCBITaxon%3A84635","Bacillus sp. GL1"]]},{"id":"NCBITaxon:85581","l":"Photobacterium damselae subsp. damselae","na":1,"nb":3,"a":[["TED%3AAF-A0A850QXP5-F1-model_v4_TED01","TED novel fold AF-A0A850QXP5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A38293","Photobacterium damselae"],["NCBITaxon%3A85581","Photobacterium damselae subsp. damselae"],["NCBITaxon%3A675817","Photobacterium damselae subsp. damselae CIP 102761"]]},{"id":"NCBITaxon:86029","l":"Bacillus subtilis subsp. natto","na":1,"nb":3,"a":[["Pfam%3APF13040","Fur-regulated basic protein B"]],"b":[["NCBITaxon%3A86029","Bacillus subtilis subsp. natto"],["NCBITaxon%3A645657","Bacillus subtilis subsp. natto BEST195"],["NCBITaxon%3A1248410","Bacillus subtilis subsp. natto HSF 1410"]]},{"id":"NCBITaxon:888027","l":"Lactobacillus delbrueckii subsp. lactis DSM 20072","na":1,"nb":3,"a":[["TED%3AAF-A0A0R1JCR6-F1-model_v4_TED01","TED novel fold AF-A0A0R1JCR6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1584","Lactobacillus delbrueckii"],["NCBITaxon%3A29397","Lactobacillus delbrueckii subsp. lactis"],["NCBITaxon%3A888027","Lactobacillus delbrueckii subsp. lactis DSM 20072"]]},{"id":"NCBITaxon:889282","l":"Polyangium spumosum","na":3,"nb":1,"a":[["TED%3AAF-A0A6N7PQI9-F1-model_v4_TED01","TED novel fold AF-A0A6N7PQI9-F1-model_v4_TED01"],["TED%3AAF-A0A6N7PTT9-F1-model_v4_TED02","TED novel fold AF-A0A6N7PTT9-F1-model_v4_TED02"],["TED%3AAF-A0A6N7Q2E0-F1-model_v4_TED01","TED novel fold AF-A0A6N7Q2E0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A889282","Polyangium spumosum"]]},{"id":"NCBITaxon:901","l":"Desulfovibrio piger","na":1,"nb":3,"a":[["TED%3AAF-A0A848CHH4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A848CHH4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A901","Desulfovibrio piger"],["NCBITaxon%3A411464","Desulfovibrio piger ATCC 29098"],["NCBITaxon%3A613189","Desulfovibrio piger GOR1"]]},{"id":"NCBITaxon:90262","l":"Absidia repens","na":3,"nb":1,"a":[["TED%3AAF-A0A1X2HE06-F1-model_v4_TED02","TED novel fold AF-A0A1X2HE06-F1-model_v4_TED02"],["TED%3AAF-A0A1X2I011-F1-model_v4_TED02","TED novel fold AF-A0A1X2I011-F1-model_v4_TED02"],["TED%3AAF-A0A1X2I4A9-F1-model_v4_TED01","TED novel fold AF-A0A1X2I4A9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A90262","Absidia repens"]]},{"id":"NCBITaxon:913107","l":"Pelolinea submarina","na":3,"nb":1,"a":[["TED%3AAF-A0A347ZP40-F1-model_v4_TED01","TED novel fold AF-A0A347ZP40-F1-model_v4_TED01"],["TED%3AAF-A0A347ZW01-F1-model_v4_TED02","TED novel fold AF-A0A347ZW01-F1-model_v4_TED02"],["TED%3AAF-A0A3E0AIB0-F1-model_v4_TED01","TED novel fold AF-A0A3E0AIB0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A913107","Pelolinea submarina"]]},{"id":"NCBITaxon:91324","l":"Lotharella globosa","na":3,"nb":1,"a":[["TED%3AAF-A0A7S4DGV9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S4DGV9-F1-model_v4_TED02"],["TED%3AAF-A0A7S4DM08-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4DM08-F1-model_v4_TED01"],["TED%3AAF-A0A7S4DYU3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4DYU3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A91324","Lotharella globosa"]]},{"id":"NCBITaxon:93064","l":"Sphingomonas koreensis","na":1,"nb":3,"a":[["TED%3AAF-A0A2M8WIB0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M8WIB0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A93064","Sphingomonas koreensis"],["NCBITaxon%3A1219046","Sphingomonas koreensis NBRC 16723"],["NCBITaxon%3A28214","Sphingomonas sp."]]},{"id":"NCBITaxon:94122","l":"Shewanella sp. ANA-3","na":3,"nb":1,"a":[["Pfam%3APF03883","Peroxide stress protein YaaA"],["Pfam%3APF04751","Dual-action ribosomal maturation protein DarP"],["Pfam%3APF04356","Protein of unknown function (DUF489)"]],"b":[["NCBITaxon%3A94122","Shewanella sp. ANA-3"]]},{"id":"NCBITaxon:94130","l":"Rhizophagus clarus","na":3,"nb":1,"a":[["TED%3AAF-A0A2Z6R1J4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z6R1J4-F1-model_v4_TED01"],["TED%3AAF-A0A2Z6SKM0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z6SKM0-F1-model_v4_TED01"],["TED%3AAF-A0A2Z6S4T9-F1-model_v4_TED04","TED novel fold AF-A0A2Z6S4T9-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A94130","Rhizophagus clarus"]]},{"id":"NCBITaxon:94132","l":"Ramlibacter tataouinensis","na":1,"nb":3,"a":[["TED%3AAF-A0A127JUU0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A127JUU0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1349425","Ramlibacter solisilvae"],["NCBITaxon%3A94132","Ramlibacter tataouinensis"],["NCBITaxon%3A365046","Ramlibacter tataouinensis TTB310"]]},{"id":"NCBITaxon:944289","l":"Collybiopsis luxurians FD-317 M1","na":3,"nb":1,"a":[["TED%3AAF-A0A0D0C9Q9-F1-model_v4_TED03","TED novel fold AF-A0A0D0C9Q9-F1-model_v4_TED03"],["TED%3AAF-A0A0D0CDF9-F1-model_v4_TED02","TED novel fold AF-A0A0D0CDF9-F1-model_v4_TED02"],["TED%3AAF-A0A0D0CH84-F1-model_v4_TED02","TED novel fold AF-A0A0D0CH84-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A944289","Collybiopsis luxurians FD-317 M1"]]},{"id":"NCBITaxon:946362","l":"Salpingoeca rosetta","na":3,"nb":1,"a":[["TED%3AAF-F2UQV7-F1-model_v4_TED02","TED highly-symmetric fold AF-F2UQV7-F1-model_v4_TED02"],["TED%3AAF-F2UA55-F1-model_v4_TED01","TED novel fold AF-F2UA55-F1-model_v4_TED01"],["TED%3AAF-F2UT64-F1-model_v4_TED02","TED novel fold AF-F2UT64-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A946362","Salpingoeca rosetta"]]},{"id":"NCBITaxon:948756","l":"Paenibacillus macquariensis","na":1,"nb":3,"a":[["TED%3AAF-A0A1N7D9D7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1N7D9D7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A948756","Paenibacillus macquariensis"],["NCBITaxon%3A467974","Paenibacillus macquariensis subsp. defensor"],["NCBITaxon%3A1468","Paenibacillus macquariensis subsp. macquariensis"]]},{"id":"NCBITaxon:97331","l":"Arthrobotrys flagrans","na":3,"nb":1,"a":[["Pfam%3APF11710","G protein-coupled glucose receptor regulating Gpa2"],["Pfam%3APF11327","Egh16-like virulence factor"],["TED%3AAF-A0A436ZMZ5-F1-model_v4_TED02","TED novel fold AF-A0A436ZMZ5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A97331","Arthrobotrys flagrans"]]},{"id":"NCBITaxon:983506","l":"Rhizoctonia solani AG-1 IA","na":3,"nb":1,"a":[["TED%3AAF-L8WQG2-F1-model_v4_TED01","TED novel fold AF-L8WQG2-F1-model_v4_TED01"],["TED%3AAF-L8WS62-F1-model_v4_TED02","TED novel fold AF-L8WS62-F1-model_v4_TED02"],["TED%3AAF-L8WX42-F1-model_v4_TED01","TED novel fold AF-L8WX42-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A983506","Rhizoctonia solani AG-1 IA"]]},{"id":"NCBITaxon:99822","l":"Streptococcus dysgalactiae subsp. dysgalactiae","na":1,"nb":3,"a":[["TED%3AAF-A0A380JYN4-F1-model_v4_TED01","TED novel fold AF-A0A380JYN4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1334","Streptococcus dysgalactiae"],["NCBITaxon%3A99822","Streptococcus dysgalactiae subsp. dysgalactiae"],["NCBITaxon%3A663952","Streptococcus dysgalactiae subsp. dysgalactiae ATCC 27957"]]},{"id":"NCBITaxon:1004901","l":"Gordonia iterans","na":1,"nb":2,"a":[["TED%3AAF-A0A2S0KFK9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S0KFK9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1004901","Gordonia iterans"],["NCBITaxon%3A198437","uncultured Gordonia sp."]]},{"id":"NCBITaxon:1005043","l":"Candidatus Regiella insecticola 5.15","na":2,"nb":1,"a":[["TED%3AAF-G2H098-F1-model_v4_TED01","TED highly-symmetric fold AF-G2H098-F1-model_v4_TED01"],["TED%3AAF-G2H102-F1-model_v4_TED04","TED novel fold AF-G2H102-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1005043","Candidatus Regiella insecticola 5.15"]]},{"id":"NCBITaxon:1005994","l":"Trabulsiella guamensis ATCC 49490","na":1,"nb":2,"a":[["TED%3AAF-A0A084ZLG9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A084ZLG9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A158852","Trabulsiella guamensis"],["NCBITaxon%3A1005994","Trabulsiella guamensis ATCC 49490"]]},{"id":"NCBITaxon:1006155","l":"Paenilisteria weihenstephanensis","na":1,"nb":2,"a":[["TED%3AAF-A0A1S7FXD4-F1-model_v4_TED02","TED novel fold AF-A0A1S7FXD4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1006155","Paenilisteria weihenstephanensis"],["NCBITaxon%3A1265845","Paenilisteria weihenstephanensis FSL R9-0317"]]},{"id":"NCBITaxon:1007099","l":"Pseudomonas kuykendallii","na":1,"nb":2,"a":[["TED%3AAF-A0A2W5F5H8-F1-model_v4_TED05","TED novel fold AF-A0A2W5F5H8-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1007099","Pseudomonas kuykendallii"],["NCBITaxon%3A306","Pseudomonas sp."]]},{"id":"NCBITaxon:100787","l":"Verticillium longisporum","na":2,"nb":1,"a":[["TED%3AAF-A0A0G4L720-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G4L720-F1-model_v4_TED01"],["TED%3AAF-A0A0G4KSC1-F1-model_v4_TED01","TED novel fold AF-A0A0G4KSC1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A100787","Verticillium longisporum"]]},{"id":"NCBITaxon:102862","l":"Proteus penneri","na":1,"nb":2,"a":[["TED%3AAF-A0A0G4Q3D2-F1-model_v4_TED01","TED novel fold AF-A0A0G4Q3D2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A102862","Proteus penneri"],["NCBITaxon%3A471881","Proteus penneri ATCC 35198"]]},{"id":"NCBITaxon:1032476","l":"Nonomuraea soli","na":2,"nb":1,"a":[["TED%3AAF-A0A7W0HQS4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7W0HQS4-F1-model_v4_TED03"],["TED%3AAF-A0A7W0CFM2-F1-model_v4_TED01","TED novel fold AF-A0A7W0CFM2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1032476","Nonomuraea soli"]]},{"id":"NCBITaxon:1034831","l":"Rhizochromulina marina","na":2,"nb":1,"a":[["TED%3AAF-A0A7S2SVZ9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S2SVZ9-F1-model_v4_TED02"],["TED%3AAF-A0A7S2WVI7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2WVI7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1034831","Rhizochromulina marina"]]},{"id":"NCBITaxon:1034943","l":"Legionella massiliensis","na":2,"nb":1,"a":[["TED%3AAF-A0A078KZR2-F1-model_v4_TED02","TED novel fold AF-A0A078KZR2-F1-model_v4_TED02"],["TED%3AAF-A0A078L1Y9-F1-model_v4_TED02","TED novel fold AF-A0A078L1Y9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1034943","Legionella massiliensis"]]},{"id":"NCBITaxon:1036020","l":"Nocardioides soli","na":2,"nb":1,"a":[["TED%3AAF-A0A7W4VSZ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W4VSZ4-F1-model_v4_TED01"],["TED%3AAF-A0A7W4Z0C7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W4Z0C7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1036020","Nocardioides soli"]]},{"id":"NCBITaxon:1043004","l":"Aureobasidium namibiae CBS 147.97","na":2,"nb":1,"a":[["TED%3AAF-A0A074X7C9-F1-model_v4_TED05","TED novel fold AF-A0A074X7C9-F1-model_v4_TED05"],["TED%3AAF-A0A074XB98-F1-model_v4_TED02","TED novel fold AF-A0A074XB98-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1043004","Aureobasidium namibiae CBS 147.97"]]},{"id":"NCBITaxon:1045004","l":"Oenococcus kitaharae DSM 17330","na":1,"nb":2,"a":[["TED%3AAF-G9WIN5-F1-model_v4_TED02","TED highly-symmetric fold AF-G9WIN5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A336988","Oenococcus kitaharae"],["NCBITaxon%3A1045004","Oenococcus kitaharae DSM 17330"]]},{"id":"NCBITaxon:1045775","l":"Paenibacillus catalpae","na":2,"nb":1,"a":[["TED%3AAF-A0A1I2B153-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2B153-F1-model_v4_TED01"],["TED%3AAF-A0A1I2FU75-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1I2FU75-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1045775","Paenibacillus catalpae"]]},{"id":"NCBITaxon:1045858","l":"Brachyspira intermedia PWS/A","na":1,"nb":2,"a":[["TED%3AAF-G0EQD8-F1-model_v4_TED02","TED novel fold AF-G0EQD8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A84377","Brachyspira intermedia"],["NCBITaxon%3A1045858","Brachyspira intermedia PWS/A"]]},{"id":"NCBITaxon:104623","l":"Prodigiosinella confusarubida","na":2,"nb":1,"a":[["Pfam%3APF07254","Membrane-bound toxin component of toxin-antitoxin system"],["Pfam%3APF19507","Family of unknown function (DUF6041)"]],"b":[["NCBITaxon%3A104623","Prodigiosinella confusarubida"]]},{"id":"NCBITaxon:1047168","l":"Zymoseptoria brevis","na":2,"nb":1,"a":[["TED%3AAF-A0A0F4G6M4-F1-model_v4_TED01","TED novel fold AF-A0A0F4G6M4-F1-model_v4_TED01"],["TED%3AAF-A0A0F4GF48-F1-model_v4_TED01","TED novel fold AF-A0A0F4GF48-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1047168","Zymoseptoria brevis"]]},{"id":"NCBITaxon:1048689","l":"Escherichia coli O55:H7 str. RM12579","na":2,"nb":1,"a":[["Pfam%3APF28043","Anti-phage protein KwaA"],["Pfam%3APF16162","Kiwa protein KwaB-like"]],"b":[["NCBITaxon%3A1048689","Escherichia coli O55:H7 str. RM12579"]]},{"id":"NCBITaxon:1048830","l":"Malacoplasma iowae 695","na":1,"nb":2,"a":[["TED%3AAF-A0A6P1LDJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6P1LDJ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2116","Malacoplasma iowae"],["NCBITaxon%3A1048830","Malacoplasma iowae 695"]]},{"id":"NCBITaxon:1049789","l":"Leptospira broomii serovar Hurstbridge str. 5399","na":1,"nb":2,"a":[["TED%3AAF-T0F5H5-F1-model_v4_TED02","TED novel fold AF-T0F5H5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A301541","Leptospira broomii"],["NCBITaxon%3A1049789","Leptospira broomii serovar Hurstbridge str. 5399"]]},{"id":"NCBITaxon:1050","l":"Thermochromatium tepidum","na":1,"nb":2,"a":[["Pfam%3APF02276","Photosynthetic reaction centre cytochrome C subunit"]],"b":[["NCBITaxon%3A1050","Thermochromatium tepidum"],["NCBITaxon%3A316276","Thermochromatium tepidum ATCC 43061"]]},{"id":"NCBITaxon:1052585","l":"Bacillus spizizenii TU-B-10","na":1,"nb":2,"a":[["TED%3AAF-G4P1P4-F1-model_v4_TED01","TED highly-symmetric fold AF-G4P1P4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A96241","Bacillus spizizenii"],["NCBITaxon%3A1052585","Bacillus spizizenii TU-B-10"]]},{"id":"NCBITaxon:105612","l":"Dellaglioa algida","na":1,"nb":2,"a":[["TED%3AAF-A0A5C6M980-F1-model_v4_TED02","TED novel fold AF-A0A5C6M980-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A105612","Dellaglioa algida"],["NCBITaxon%3A1423719","Dellaglioa algida DSM 15638"]]},{"id":"NCBITaxon:105841","l":"Anaerostipes caccae","na":1,"nb":2,"a":[["TED%3AAF-A0A6N2WKG2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N2WKG2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A105841","Anaerostipes caccae"],["NCBITaxon%3A411490","Anaerostipes caccae L1-92"]]},{"id":"NCBITaxon:105984","l":"Apiotrichum porosum","na":2,"nb":1,"a":[["TED%3AAF-A0A427XIN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A427XIN3-F1-model_v4_TED01"],["TED%3AAF-A0A427XP81-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A427XP81-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A105984","Apiotrichum porosum"]]},{"id":"NCBITaxon:1070861","l":"Bailinhaonella thermotolerans","na":2,"nb":1,"a":[["TED%3AAF-A0A3A4APG1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A4APG1-F1-model_v4_TED01"],["TED%3AAF-A0A3A4AX42-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A4AX42-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1070861","Bailinhaonella thermotolerans"]]},{"id":"NCBITaxon:1072389","l":"Drepanopeziza brunnea f. sp. 'multigermtubi' MB_m1","na":2,"nb":1,"a":[["Pfam%3APF05730","CFEM domain"],["TED%3AAF-K1WGS2-F1-model_v4_TED01","TED highly-symmetric fold AF-K1WGS2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1072389","Drepanopeziza brunnea f. sp. 'multigermtubi' MB_m1"]]},{"id":"NCBITaxon:1072583","l":"Vreelandella boliviensis LC1","na":1,"nb":2,"a":[["TED%3AAF-A0A265DTH2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A265DTH2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A223527","Vreelandella boliviensis"],["NCBITaxon%3A1072583","Vreelandella boliviensis LC1"]]},{"id":"NCBITaxon:1073090","l":"Penicilliopsis zonata CBS 506.65","na":2,"nb":1,"a":[["TED%3AAF-A0A1L9S4H1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L9S4H1-F1-model_v4_TED01"],["TED%3AAF-A0A1L9SL11-F1-model_v4_TED01","TED novel fold AF-A0A1L9SL11-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1073090","Penicilliopsis zonata CBS 506.65"]]},{"id":"NCBITaxon:107327","l":"Pseudoalteromonas ulvae","na":1,"nb":2,"a":[["TED%3AAF-A0A244CSP0-F1-model_v4_TED01","TED novel fold AF-A0A244CSP0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A107327","Pseudoalteromonas ulvae"],["NCBITaxon%3A1315306","Pseudoalteromonas ulvae UL12"]]},{"id":"NCBITaxon:1074","l":"Rhodoblastus acidophilus","na":2,"nb":1,"a":[["PROSITE%3APS00969","Antenna complexes beta subunits signature"],["TED%3AAF-A0A6N8DR15-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8DR15-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1074","Rhodoblastus acidophilus"]]},{"id":"NCBITaxon:107401","l":"Tenacibaculum maritimum","na":1,"nb":2,"a":[["TED%3AAF-A0A5S9T7W6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5S9T7W6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A107401","Tenacibaculum maritimum"],["NCBITaxon%3A1349785","Tenacibaculum maritimum NCIMB 2154"]]},{"id":"NCBITaxon:1075417","l":"Catalinimonas alkaloidigena","na":1,"nb":2,"a":[["TED%3AAF-A0A1G9GY81-F1-model_v4_TED01","TED novel fold AF-A0A1G9GY81-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1075417","Catalinimonas alkaloidigena"],["NCBITaxon%3A1075416","Mooreia alkaloidigena"]]},{"id":"NCBITaxon:1076935","l":"Pyronema omphalodes CBS 100304","na":2,"nb":1,"a":[["TED%3AAF-U4KXW2-F1-model_v4_TED01","TED highly-symmetric fold AF-U4KXW2-F1-model_v4_TED01"],["TED%3AAF-U4LQ68-F1-model_v4_TED01","TED highly-symmetric fold AF-U4LQ68-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1076935","Pyronema omphalodes CBS 100304"]]},{"id":"NCBITaxon:1077972","l":"Arthrobacter globiformis NBRC 12137","na":1,"nb":2,"a":[["Pfam%3APF19906","C-glycoside deglycosidase beta subunit"]],"b":[["NCBITaxon%3A1665","Arthrobacter globiformis"],["NCBITaxon%3A1077972","Arthrobacter globiformis NBRC 12137"]]},{"id":"NCBITaxon:1077974","l":"Gordonia effusa NBRC 100432","na":1,"nb":2,"a":[["TED%3AAF-H0R5B3-F1-model_v4_TED01","TED highly-symmetric fold AF-H0R5B3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A263908","Gordonia effusa"],["NCBITaxon%3A1077974","Gordonia effusa NBRC 100432"]]},{"id":"NCBITaxon:1078773","l":"Herbaspirillum rubrisubalbicans M1","na":1,"nb":2,"a":[["TED%3AAF-A0A0U3LK61-F1-model_v4_TED02","TED novel fold AF-A0A0U3LK61-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A80842","Herbaspirillum rubrisubalbicans"],["NCBITaxon%3A1078773","Herbaspirillum rubrisubalbicans M1"]]},{"id":"NCBITaxon:1079859","l":"Pseudarcicella hirudinis","na":1,"nb":2,"a":[["TED%3AAF-A0A1I5W7M0-F1-model_v4_TED03","TED novel fold AF-A0A1I5W7M0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1434730","Dactylosporangium cerinum"],["NCBITaxon%3A1079859","Pseudarcicella hirudinis"]]},{"id":"NCBITaxon:1082188","l":"Strombidium rassoulzadegani","na":2,"nb":1,"a":[["TED%3AAF-A0A7S3CNG5-F1-model_v4_TED01","TED novel fold AF-A0A7S3CNG5-F1-model_v4_TED01"],["TED%3AAF-A0A7S3FZU1-F1-model_v4_TED01","TED novel fold AF-A0A7S3FZU1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1082188","Strombidium rassoulzadegani"]]},{"id":"NCBITaxon:1083","l":"Magnetospirillum molischianum","na":1,"nb":2,"a":[["PROSITE%3APS00969","Antenna complexes beta subunits signature"]],"b":[["NCBITaxon%3A1083","Magnetospirillum molischianum"],["NCBITaxon%3A1150626","Magnetospirillum molischianum DSM 120"]]},{"id":"NCBITaxon:1084421","l":"Sinomicrobium pectinilyticum","na":2,"nb":1,"a":[["TED%3AAF-A0A3N0EA19-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N0EA19-F1-model_v4_TED01"],["TED%3AAF-A0A3N0F5C6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3N0F5C6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1084421","Sinomicrobium pectinilyticum"]]},{"id":"NCBITaxon:1085623","l":"Brumicola nitratireducens FR1064","na":1,"nb":2,"a":[["TED%3AAF-G4QL11-F1-model_v4_TED01","TED novel fold AF-G4QL11-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A300231","Brumicola nitratireducens"],["NCBITaxon%3A1085623","Brumicola nitratireducens FR1064"]]},{"id":"NCBITaxon:1088540","l":"Leptospira weilii serovar Topaz str. LT2116","na":2,"nb":1,"a":[["TED%3AAF-M3GVT4-F1-model_v4_TED02","TED highly-symmetric fold AF-M3GVT4-F1-model_v4_TED02"],["TED%3AAF-M3FSY3-F1-model_v4_TED01","TED novel fold AF-M3FSY3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1088540","Leptospira weilii serovar Topaz str. LT2116"]]},{"id":"NCBITaxon:1088868","l":"Commensalibacter intestini A911","na":1,"nb":2,"a":[["TED%3AAF-G6EZZ4-F1-model_v4_TED03","TED highly-symmetric fold AF-G6EZZ4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A479936","Commensalibacter intestini"],["NCBITaxon%3A1088868","Commensalibacter intestini A911"]]},{"id":"NCBITaxon:1089457","l":"Fusarium oxysporum f. sp. conglutinans race 2 54008","na":2,"nb":1,"a":[["TED%3AAF-X0H3K0-F1-model_v4_TED02","TED novel fold AF-X0H3K0-F1-model_v4_TED02"],["TED%3AAF-X0I8I2-F1-model_v4_TED02","TED novel fold AF-X0I8I2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1089457","Fusarium oxysporum f. sp. conglutinans race 2 54008"]]},{"id":"NCBITaxon:1094555","l":"Bartonella elizabethae F9251 = ATCC 49927","na":1,"nb":2,"a":[["TED%3AAF-J1K501-F1-model_v4_TED02","TED highly-symmetric fold AF-J1K501-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A807","Bartonella elizabethae"],["NCBITaxon%3A1094555","Bartonella elizabethae F9251 = ATCC 49927"]]},{"id":"NCBITaxon:1100720","l":"Limnohabitans sp. Rim28","na":1,"nb":2,"a":[["TED%3AAF-A0A2T7SZL1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T7SZL1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1907725","Limnohabitans sp."],["NCBITaxon%3A1100720","Limnohabitans sp. Rim28"]]},{"id":"NCBITaxon:1100822","l":"Streptomyces sp. AmelKG-E11A","na":2,"nb":1,"a":[["TED%3AAF-A0A1C6R3A1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C6R3A1-F1-model_v4_TED01"],["TED%3AAF-A0A1C6R678-F1-model_v4_TED01","TED novel fold AF-A0A1C6R678-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1100822","Streptomyces sp. AmelKG-E11A"]]},{"id":"NCBITaxon:1102","l":"Prosthecochloris aestuarii","na":1,"nb":2,"a":[["Pfam%3APF02327","Bacteriochlorophyll A protein"]],"b":[["NCBITaxon%3A1102","Prosthecochloris aestuarii"],["NCBITaxon%3A290512","Prosthecochloris aestuarii DSM 271"]]},{"id":"NCBITaxon:110365","l":"Gregarina niphandrodes","na":2,"nb":1,"a":[["TED%3AAF-A0A023AX34-F1-model_v4_TED01","TED novel fold AF-A0A023AX34-F1-model_v4_TED01"],["TED%3AAF-A0A023AXI4-F1-model_v4_TED03","TED novel fold AF-A0A023AXI4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A110365","Gregarina niphandrodes"]]},{"id":"NCBITaxon:1107882","l":"Mesorhizobium alhagi CCNWXJ12-2","na":1,"nb":2,"a":[["TED%3AAF-H0I1K0-F1-model_v4_TED01","TED novel fold AF-H0I1K0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A475067","Allomesorhizobium alhagi"],["NCBITaxon%3A1107882","Mesorhizobium alhagi CCNWXJ12-2"]]},{"id":"NCBITaxon:1110509","l":"Methanothrix harundinacea 6Ac","na":2,"nb":1,"a":[["Pfam%3APF05228","CHASE4 domain"],["Pfam%3APF08350","Methanogenesis regulatory protein FilR1, middle domain"]],"b":[["NCBITaxon%3A1110509","Methanothrix harundinacea 6Ac"]]},{"id":"NCBITaxon:1112204","l":"Gordonia polyisoprenivorans VH2","na":1,"nb":2,"a":[["TED%3AAF-H6N0Q7-F1-model_v4_TED01","TED novel fold AF-H6N0Q7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A84595","Gordonia polyisoprenivorans"],["NCBITaxon%3A1112204","Gordonia polyisoprenivorans VH2"]]},{"id":"NCBITaxon:1114856","l":"Natronorubrum tibetense GA33","na":1,"nb":2,"a":[["TED%3AAF-L9VUV1-F1-model_v4_TED01","TED novel fold AF-L9VUV1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A63128","Natronorubrum tibetense"],["NCBITaxon%3A1114856","Natronorubrum tibetense GA33"]]},{"id":"NCBITaxon:1116472","l":"Methyloglobulus morosus KoM1","na":1,"nb":2,"a":[["TED%3AAF-V5BKR0-F1-model_v4_TED01","TED highly-symmetric fold AF-V5BKR0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1410681","Methyloglobulus morosus"],["NCBITaxon%3A1116472","Methyloglobulus morosus KoM1"]]},{"id":"NCBITaxon:1117313","l":"Pseudoalteromonas arctica A 37-1-2","na":1,"nb":2,"a":[["TED%3AAF-A0A290S486-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A290S486-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A394751","Pseudoalteromonas arctica"],["NCBITaxon%3A1117313","Pseudoalteromonas arctica A 37-1-2"]]},{"id":"NCBITaxon:1120918","l":"Acetitomaculum ruminis DSM 5522","na":1,"nb":2,"a":[["TED%3AAF-A0A1I1ATM7-F1-model_v4_TED01","TED novel fold AF-A0A1I1ATM7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2382","Acetitomaculum ruminis"],["NCBITaxon%3A1120918","Acetitomaculum ruminis DSM 5522"]]},{"id":"NCBITaxon:1120923","l":"Acidocella aminolytica 101 = DSM 11237","na":1,"nb":2,"a":[["TED%3AAF-A0A0D6PBP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D6PBP8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A33998","Acidocella aminolytica"],["NCBITaxon%3A1120923","Acidocella aminolytica 101 = DSM 11237"]]},{"id":"NCBITaxon:1120926","l":"Acinetobacter gerneri DSM 14967 = CIP 107464 = MTCC 9824","na":1,"nb":2,"a":[["TED%3AAF-N8ZKV3-F1-model_v4_TED01","TED highly-symmetric fold AF-N8ZKV3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A202952","Acinetobacter gerneri"],["NCBITaxon%3A1120926","Acinetobacter gerneri DSM 14967 = CIP 107464 = MTCC 9824"]]},{"id":"NCBITaxon:1120927","l":"Acinetobacter tandoii DSM 14970 = CIP 107469","na":1,"nb":2,"a":[["TED%3AAF-R9BEH0-F1-model_v4_TED04","TED highly-symmetric fold AF-R9BEH0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A202954","Acinetobacter tandoii"],["NCBITaxon%3A1120927","Acinetobacter tandoii DSM 14970 = CIP 107469"]]},{"id":"NCBITaxon:1120928","l":"Acinetobacter tjernbergiae DSM 14971 = CIP 107465","na":1,"nb":2,"a":[["TED%3AAF-V2W927-F1-model_v4_TED01","TED highly-symmetric fold AF-V2W927-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A202955","Acinetobacter tjernbergiae"],["NCBITaxon%3A1120928","Acinetobacter tjernbergiae DSM 14971 = CIP 107465"]]},{"id":"NCBITaxon:1120940","l":"Actinomadura pelletieri DSM 43383","na":1,"nb":2,"a":[["TED%3AAF-A0A495QU85-F1-model_v4_TED02","TED novel fold AF-A0A495QU85-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A111805","Actinomadura pelletieri"],["NCBITaxon%3A1120940","Actinomadura pelletieri DSM 43383"]]},{"id":"NCBITaxon:1120964","l":"Algoriphagus boritolerans DSM 17298 = JCM 18970","na":1,"nb":2,"a":[["TED%3AAF-A0A1H5ZF82-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H5ZF82-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A308111","Algoriphagus boritolerans"],["NCBITaxon%3A1120964","Algoriphagus boritolerans DSM 17298 = JCM 18970"]]},{"id":"NCBITaxon:1120981","l":"Alysiella filiformis DSM 16848","na":1,"nb":2,"a":[["TED%3AAF-A0A286E5W8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A286E5W8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A194196","Alysiella filiformis"],["NCBITaxon%3A1120981","Alysiella filiformis DSM 16848"]]},{"id":"NCBITaxon:1120996","l":"Anaerosporobacter mobilis DSM 15930","na":1,"nb":2,"a":[["TED%3AAF-A0A1M7NGC0-F1-model_v4_TED01","TED novel fold AF-A0A1M7NGC0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A264463","Anaerosporobacter mobilis"],["NCBITaxon%3A1120996","Anaerosporobacter mobilis DSM 15930"]]},{"id":"NCBITaxon:1121022","l":"Asticcacaulis benevestitus DSM 16100 = ATCC BAA-896","na":1,"nb":2,"a":[["TED%3AAF-V4PT21-F1-model_v4_TED01","TED highly-symmetric fold AF-V4PT21-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A347481","Asticcacaulis benevestitus"],["NCBITaxon%3A1121022","Asticcacaulis benevestitus DSM 16100 = ATCC BAA-896"]]},{"id":"NCBITaxon:1121098","l":"Phocaeicola massiliensis B84634 = Timone 84634 = DSM 17679 = JCM 13223","na":1,"nb":2,"a":[["TED%3AAF-U6RRG8-F1-model_v4_TED01","TED highly-symmetric fold AF-U6RRG8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A204516","Phocaeicola massiliensis"],["NCBITaxon%3A1121098","Phocaeicola massiliensis B84634 = Timone 84634 = DSM 17679 = JCM 13223"]]},{"id":"NCBITaxon:1121132","l":"Butyrivibrio hungatei DSM 14810","na":1,"nb":2,"a":[["TED%3AAF-A0A1M7SJD3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M7SJD3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A185008","Butyrivibrio hungatei"],["NCBITaxon%3A1121132","Butyrivibrio hungatei DSM 14810"]]},{"id":"NCBITaxon:1121270","l":"Carboxydocella thermautotrophica DSM 16521","na":1,"nb":2,"a":[["TED%3AAF-A0A1T4LMW3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1T4LMW3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A178899","Carboxydocella thermautotrophica"],["NCBITaxon%3A1121270","Carboxydocella thermautotrophica DSM 16521"]]},{"id":"NCBITaxon:1121284","l":"Epilithonimonas bovis DSM 19482","na":1,"nb":2,"a":[["TED%3AAF-A0A1U7PTX5-F1-model_v4_TED01","TED novel fold AF-A0A1U7PTX5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A421530","Epilithonimonas bovis"],["NCBITaxon%3A1121284","Epilithonimonas bovis DSM 19482"]]},{"id":"NCBITaxon:1121301","l":"Paramaledivibacter caminithermalis DSM 15212","na":1,"nb":2,"a":[["TED%3AAF-A0A1M6LSW1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M6LSW1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A191027","Paramaledivibacter caminithermalis"],["NCBITaxon%3A1121301","Paramaledivibacter caminithermalis DSM 15212"]]},{"id":"NCBITaxon:1121324","l":"Peptoclostridium litorale DSM 5388","na":1,"nb":2,"a":[["TED%3AAF-A0A069RDW3-F1-model_v4_TED01","TED novel fold AF-A0A069RDW3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1557","Peptoclostridium litorale"],["NCBITaxon%3A1121324","Peptoclostridium litorale DSM 5388"]]},{"id":"NCBITaxon:1121325","l":"Romboutsia lituseburensis DSM 797","na":1,"nb":2,"a":[["TED%3AAF-A0A1G9LA77-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G9LA77-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1537","Romboutsia lituseburensis"],["NCBITaxon%3A1121325","Romboutsia lituseburensis DSM 797"]]},{"id":"NCBITaxon:1121326","l":"Clostridium magnum DSM 2767","na":1,"nb":2,"a":[["TED%3AAF-A0A162T1A8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A162T1A8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A33954","Clostridium magnum"],["NCBITaxon%3A1121326","Clostridium magnum DSM 2767"]]},{"id":"NCBITaxon:1121331","l":"Hathewaya proteolytica DSM 3090","na":1,"nb":2,"a":[["TED%3AAF-A0A1M6KJK5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M6KJK5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29365","Hathewaya proteolytica"],["NCBITaxon%3A1121331","Hathewaya proteolytica DSM 3090"]]},{"id":"NCBITaxon:1121391","l":"Desulfacinum infernum DSM 9756","na":1,"nb":2,"a":[["TED%3AAF-A0A1M5CF65-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M5CF65-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A35837","Desulfacinum infernum"],["NCBITaxon%3A1121391","Desulfacinum infernum DSM 9756"]]},{"id":"NCBITaxon:1121393","l":"Desulfatibacillum alkenivorans DSM 16219","na":1,"nb":2,"a":[["TED%3AAF-A0A1M6GB75-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M6GB75-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A259354","Desulfatibacillum alkenivorans"],["NCBITaxon%3A1121393","Desulfatibacillum alkenivorans DSM 16219"]]},{"id":"NCBITaxon:1121405","l":"Desulfococcus multivorans DSM 2059","na":1,"nb":2,"a":[["TED%3AAF-S7VDW8-F1-model_v4_TED02","TED highly-symmetric fold AF-S7VDW8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A897","Desulfococcus multivorans"],["NCBITaxon%3A1121405","Desulfococcus multivorans DSM 2059"]]},{"id":"NCBITaxon:1121421","l":"Desulforamulus aeronauticus DSM 10349","na":1,"nb":2,"a":[["TED%3AAF-A0A1M6XE41-F1-model_v4_TED01","TED novel fold AF-A0A1M6XE41-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A53343","Desulforamulus aeronauticus"],["NCBITaxon%3A1121421","Desulforamulus aeronauticus DSM 10349"]]},{"id":"NCBITaxon:1121424","l":"Desulfotruncus arcticus DSM 17038","na":1,"nb":2,"a":[["TED%3AAF-A0A1I2Z3E3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I2Z3E3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A341036","Desulfotruncus arcticus"],["NCBITaxon%3A1121424","Desulfotruncus arcticus DSM 17038"]]},{"id":"NCBITaxon:1121426","l":"Desulfoscipio geothermicus DSM 3669","na":1,"nb":2,"a":[["TED%3AAF-A0A1I6DXW2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I6DXW2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39060","Desulfoscipio geothermicus"],["NCBITaxon%3A1121426","Desulfoscipio geothermicus DSM 3669"]]},{"id":"NCBITaxon:1121448","l":"Megalodesulfovibrio gigas DSM 1382 = ATCC 19364","na":1,"nb":2,"a":[["Pfam%3APF12139","Adenosine-5'-phosphosulfate reductase beta subunit"]],"b":[["NCBITaxon%3A879","Megalodesulfovibrio gigas"],["NCBITaxon%3A1121448","Megalodesulfovibrio gigas DSM 1382 = ATCC 19364"]]},{"id":"NCBITaxon:1121449","l":"Paucidesulfovibrio gracilis DSM 16080","na":1,"nb":2,"a":[["TED%3AAF-A0A1T4W1V7-F1-model_v4_TED03","TED novel fold AF-A0A1T4W1V7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A47158","Paucidesulfovibrio gracilis"],["NCBITaxon%3A1121449","Paucidesulfovibrio gracilis DSM 16080"]]},{"id":"NCBITaxon:1121451","l":"Maridesulfovibrio hydrothermalis AM13 = DSM 14728","na":1,"nb":2,"a":[["TED%3AAF-L0RH10-F1-model_v4_TED01","TED novel fold AF-L0RH10-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A191026","Maridesulfovibrio hydrothermalis"],["NCBITaxon%3A1121451","Maridesulfovibrio hydrothermalis AM13 = DSM 14728"]]},{"id":"NCBITaxon:1121898","l":"Flavobacterium subsaxonicum WB 4.1-42 = DSM 21790","na":1,"nb":2,"a":[["TED%3AAF-A0A0A2M8C2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A2M8C2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A426226","Flavobacterium subsaxonicum"],["NCBITaxon%3A1121898","Flavobacterium subsaxonicum WB 4.1-42 = DSM 21790"]]},{"id":"NCBITaxon:1121915","l":"Geoalkalibacter ferrihydriticus DSM 17813","na":1,"nb":2,"a":[["TED%3AAF-A0A0C2HTA4-F1-model_v4_TED03","TED novel fold AF-A0A0C2HTA4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A392333","Geoalkalibacter ferrihydriticus"],["NCBITaxon%3A1121915","Geoalkalibacter ferrihydriticus DSM 17813"]]},{"id":"NCBITaxon:1121923","l":"Glaciecola punicea ACAM 611","na":1,"nb":2,"a":[["TED%3AAF-H5T7Y4-F1-model_v4_TED01","TED novel fold AF-H5T7Y4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A56804","Glaciecola punicea"],["NCBITaxon%3A1121923","Glaciecola punicea ACAM 611"]]},{"id":"NCBITaxon:1121927","l":"Gordonia hirsuta DSM 44140 = NBRC 16056","na":1,"nb":2,"a":[["TED%3AAF-L7L8J6-F1-model_v4_TED01","TED highly-symmetric fold AF-L7L8J6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A53427","Gordonia hirsuta"],["NCBITaxon%3A1121927","Gordonia hirsuta DSM 44140 = NBRC 16056"]]},{"id":"NCBITaxon:1121950","l":"Hespellia stercorisuis DSM 15480","na":1,"nb":2,"a":[["TED%3AAF-A0A1M6UMY1-F1-model_v4_TED01","TED novel fold AF-A0A1M6UMY1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A180311","Hespellia stercorisuis"],["NCBITaxon%3A1121950","Hespellia stercorisuis DSM 15480"]]},{"id":"NCBITaxon:1122133","l":"Kaistia soli DSM 19436","na":1,"nb":2,"a":[["TED%3AAF-A0A1M5DFE2-F1-model_v4_TED01","TED novel fold AF-A0A1M5DFE2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A446684","Kaistia soli"],["NCBITaxon%3A1122133","Kaistia soli DSM 19436"]]},{"id":"NCBITaxon:1122169","l":"Legionella shakespearei DSM 23087","na":1,"nb":2,"a":[["TED%3AAF-A0A0W0YL59-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0W0YL59-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A45075","Legionella shakespearei"],["NCBITaxon%3A1122169","Legionella shakespearei DSM 23087"]]},{"id":"NCBITaxon:1122172","l":"Leptotrichia shahii DSM 19757","na":1,"nb":2,"a":[["Pfam%3APF28192","CRISPR-associated endoribonuclease Cas13a"]],"b":[["NCBITaxon%3A157691","Leptotrichia shahii"],["NCBITaxon%3A1122172","Leptotrichia shahii DSM 19757"]]},{"id":"NCBITaxon:1122177","l":"Flavilitoribacter nigricans DSM 23189 = NBRC 102662","na":1,"nb":2,"a":[["TED%3AAF-A0A2D0NEP3-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A2D0NEP3-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A70997","Flavilitoribacter nigricans"],["NCBITaxon%3A1122177","Flavilitoribacter nigricans DSM 23189 = NBRC 102662"]]},{"id":"NCBITaxon:1122189","l":"Malonomonas rubra DSM 5091","na":1,"nb":2,"a":[["TED%3AAF-A0A1M6IYP5-F1-model_v4_TED01","TED novel fold AF-A0A1M6IYP5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A57040","Malonomonas rubra"],["NCBITaxon%3A1122189","Malonomonas rubra DSM 5091"]]},{"id":"NCBITaxon:1122195","l":"Marinitoga hydrogenitolerans DSM 16785","na":1,"nb":2,"a":[["Pfam%3APF22362","Argonaute, middle domain, bacteria"]],"b":[["NCBITaxon%3A287990","Marinitoga hydrogenitolerans"],["NCBITaxon%3A1122195","Marinitoga hydrogenitolerans DSM 16785"]]},{"id":"NCBITaxon:1122247","l":"Mycolicibacterium hassiacum DSM 44199","na":1,"nb":2,"a":[["Pfam%3APF22422","Mannosylglycerate hydrolase MGH1-like glycoside hydrolase domain"]],"b":[["NCBITaxon%3A46351","Mycolicibacterium hassiacum"],["NCBITaxon%3A1122247","Mycolicibacterium hassiacum DSM 44199"]]},{"id":"NCBITaxon:1122252","l":"Marinospirillum celere","na":1,"nb":2,"a":[["TED%3AAF-A0A1I1DUZ3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1I1DUZ3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1122252","Marinospirillum celere"],["NCBITaxon%3A497722","Marinospirillum celere DSM 18438"]]},{"id":"NCBITaxon:1122941","l":"Pedobacter glucosidilyticus","na":1,"nb":2,"a":[["TED%3AAF-A0A0B8XLS8-F1-model_v4_TED02","TED novel fold AF-A0A0B8XLS8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1122941","Pedobacter glucosidilyticus"],["NCBITaxon%3A540906","Pedobacter glucosidilyticus DSM 23534"]]},{"id":"NCBITaxon:1122991","l":"Hoylesella shahii DSM 15611 = JCM 12083","na":1,"nb":2,"a":[["TED%3AAF-A0A318IBD7-F1-model_v4_TED01","TED novel fold AF-A0A318IBD7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A228603","Hoylesella shahii"],["NCBITaxon%3A1122991","Hoylesella shahii DSM 15611 = JCM 12083"]]},{"id":"NCBITaxon:1123010","l":"Pseudoalteromonas denitrificans DSM 6059","na":1,"nb":2,"a":[["TED%3AAF-A0A1I1HP94-F1-model_v4_TED01","TED novel fold AF-A0A1I1HP94-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A43656","Pseudoalteromonas denitrificans"],["NCBITaxon%3A1123010","Pseudoalteromonas denitrificans DSM 6059"]]},{"id":"NCBITaxon:1123012","l":"Pseudobutyrivibrio xylanivorans DSM 14809","na":1,"nb":2,"a":[["TED%3AAF-A0A1M6KN30-F1-model_v4_TED01","TED novel fold AF-A0A1M6KN30-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A185007","Pseudobutyrivibrio xylanivorans"],["NCBITaxon%3A1123012","Pseudobutyrivibrio xylanivorans DSM 14809"]]},{"id":"NCBITaxon:1123071","l":"Rubritalea squalenifaciens DSM 18772","na":1,"nb":2,"a":[["TED%3AAF-A0A1M6J7A4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M6J7A4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A407226","Rubritalea squalenifaciens"],["NCBITaxon%3A1123071","Rubritalea squalenifaciens DSM 18772"]]},{"id":"NCBITaxon:1123078","l":"Runella zeae DSM 19591","na":1,"nb":2,"a":[["Pfam%3APF26164","Bacterial Gasdermin Family"]],"b":[["NCBITaxon%3A94255","Runella zeae"],["NCBITaxon%3A1123078","Runella zeae DSM 19591"]]},{"id":"NCBITaxon:1123272","l":"Parasphingorhabdus marina DSM 22363","na":1,"nb":2,"a":[["TED%3AAF-A0A1N6G6L0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1N6G6L0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A394732","Parasphingorhabdus marina"],["NCBITaxon%3A1123272","Parasphingorhabdus marina DSM 22363"]]},{"id":"NCBITaxon:1123282","l":"Sporobacter termitidis DSM 10068","na":1,"nb":2,"a":[["TED%3AAF-A0A1M5VTW1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M5VTW1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A44749","Sporobacter termitidis"],["NCBITaxon%3A1123282","Sporobacter termitidis DSM 10068"]]},{"id":"NCBITaxon:1123291","l":"Pelosinus propionicus DSM 13327","na":1,"nb":2,"a":[["TED%3AAF-A0A1I4HT33-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I4HT33-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A380084","Pelosinus propionicus"],["NCBITaxon%3A1123291","Pelosinus propionicus DSM 13327"]]},{"id":"NCBITaxon:1123352","l":"Tepidimicrobium xylanilyticum","na":1,"nb":2,"a":[["TED%3AAF-A0A1H3C0I4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H3C0I4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1123352","Tepidimicrobium xylanilyticum"],["NCBITaxon%3A437529","Tepidimicrobium xylanilyticum DSM 23310"]]},{"id":"NCBITaxon:1123367","l":"Thauera linaloolentis 47Lol = DSM 12138","na":1,"nb":2,"a":[["Pfam%3APF18566","Linalool dehydratase/isomerase"]],"b":[["NCBITaxon%3A76112","Thauera linaloolentis"],["NCBITaxon%3A1123367","Thauera linaloolentis 47Lol = DSM 12138"]]},{"id":"NCBITaxon:1123397","l":"Thiohalospira halophila DSM 15071","na":1,"nb":2,"a":[["TED%3AAF-A0A1I1UA86-F1-model_v4_TED02","TED novel fold AF-A0A1I1UA86-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A381300","Thiohalospira halophila"],["NCBITaxon%3A1123397","Thiohalospira halophila DSM 15071"]]},{"id":"NCBITaxon:1123498","l":"Vibrio ruber DSM 16370","na":1,"nb":2,"a":[["Pfam%3APF04205","FMN-binding domain"]],"b":[["NCBITaxon%3A184755","Vibrio ruber"],["NCBITaxon%3A1123498","Vibrio ruber DSM 16370"]]},{"id":"NCBITaxon:1124983","l":"Pseudomonas protegens CHA0","na":1,"nb":2,"a":[["Pfam%3APF18089","DAPG hydrolase PhiG domain"]],"b":[["NCBITaxon%3A380021","Pseudomonas protegens"],["NCBITaxon%3A1124983","Pseudomonas protegens CHA0"]]},{"id":"NCBITaxon:1124992","l":"Mycoplasma capricolum subsp. capripneumoniae 87001","na":2,"nb":1,"a":[["TED%3AAF-A0A1D5B5D7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1D5B5D7-F1-model_v4_TED02"],["TED%3AAF-A0A1D5B5J2-F1-model_v4_TED01","TED novel fold AF-A0A1D5B5J2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1124992","Mycoplasma capricolum subsp. capripneumoniae 87001"]]},{"id":"NCBITaxon:1125699","l":"Treponema maltophilum ATCC 51939","na":1,"nb":2,"a":[["TED%3AAF-S3JYS9-F1-model_v4_TED02","TED novel fold AF-S3JYS9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A51160","Treponema maltophilum"],["NCBITaxon%3A1125699","Treponema maltophilum ATCC 51939"]]},{"id":"NCBITaxon:1128398","l":"Gottschalkia acidurici 9a","na":1,"nb":2,"a":[["TED%3AAF-K0AXG8-F1-model_v4_TED02","TED highly-symmetric fold AF-K0AXG8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1556","Gottschalkia acidurici"],["NCBITaxon%3A1128398","Gottschalkia acidurici 9a"]]},{"id":"NCBITaxon:112903","l":"Propionispora vibrioides","na":1,"nb":2,"a":[["TED%3AAF-A0A1H8XC57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H8XC57-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A112903","Propionispora vibrioides"],["NCBITaxon%3A1123004","Propionispora vibrioides DSM 13305"]]},{"id":"NCBITaxon:1129374","l":"Alishewanella jeotgali KCTC 22429","na":1,"nb":2,"a":[["TED%3AAF-H3ZBB0-F1-model_v4_TED01","TED highly-symmetric fold AF-H3ZBB0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A545533","Alishewanella jeotgali"],["NCBITaxon%3A1129374","Alishewanella jeotgali KCTC 22429"]]},{"id":"NCBITaxon:1129793","l":"Paraglaciecola polaris LMG 21857","na":1,"nb":2,"a":[["TED%3AAF-K7ACJ4-F1-model_v4_TED01","TED novel fold AF-K7ACJ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A222814","Paraglaciecola polaris"],["NCBITaxon%3A1129793","Paraglaciecola polaris LMG 21857"]]},{"id":"NCBITaxon:1129897","l":"Nitrolancea hollandica Lb","na":1,"nb":2,"a":[["TED%3AAF-I4EL36-F1-model_v4_TED01","TED highly-symmetric fold AF-I4EL36-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1206749","Nitrolancea hollandica"],["NCBITaxon%3A1129897","Nitrolancea hollandica Lb"]]},{"id":"NCBITaxon:113107","l":"Streptococcus australis","na":1,"nb":2,"a":[["TED%3AAF-A0A4Q1ZLA9-F1-model_v4_TED02","TED novel fold AF-A0A4Q1ZLA9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A113107","Streptococcus australis"],["NCBITaxon%3A888833","Streptococcus australis ATCC 700641"]]},{"id":"NCBITaxon:1131730","l":"Neobacillus vireti LMG 21834","na":1,"nb":2,"a":[["TED%3AAF-W1SLV2-F1-model_v4_TED01","TED highly-symmetric fold AF-W1SLV2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A220686","Neobacillus vireti"],["NCBITaxon%3A1131730","Neobacillus vireti LMG 21834"]]},{"id":"NCBITaxon:113226","l":"Pseudocercospora musae","na":2,"nb":1,"a":[["TED%3AAF-A0A139I2J8-F1-model_v4_TED01","TED novel fold AF-A0A139I2J8-F1-model_v4_TED01"],["TED%3AAF-A0A139ICL8-F1-model_v4_TED01","TED novel fold AF-A0A139ICL8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A113226","Pseudocercospora musae"]]},{"id":"NCBITaxon:1133319","l":"Bacteroides reticulotermitis","na":1,"nb":2,"a":[["TED%3AAF-A0A840CY44-F1-model_v4_TED01","TED novel fold AF-A0A840CY44-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1133319","Bacteroides reticulotermitis"],["NCBITaxon%3A1445607","Bacteroides reticulotermitis JCM 10512"]]},{"id":"NCBITaxon:113653","l":"Geoglobus ahangari","na":2,"nb":1,"a":[["TED%3AAF-A0A7J3TIF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J3TIF4-F1-model_v4_TED01"],["TED%3AAF-A0A0F7ID24-F1-model_v4_TED02","TED novel fold AF-A0A0F7ID24-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A113653","Geoglobus ahangari"]]},{"id":"NCBITaxon:1137138","l":"Pleurotus ostreatus PC15","na":2,"nb":1,"a":[["PROSITE%3APS00956","Fungal hydrophobins signature"],["TED%3AAF-A0A067NEF3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A067NEF3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1137138","Pleurotus ostreatus PC15"]]},{"id":"NCBITaxon:1140002","l":"Enterococcus avium ATCC 14025","na":1,"nb":2,"a":[["TED%3AAF-S0RUC2-F1-model_v4_TED01","TED highly-symmetric fold AF-S0RUC2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A33945","Enterococcus avium"],["NCBITaxon%3A1140002","Enterococcus avium ATCC 14025"]]},{"id":"NCBITaxon:1141098","l":"Pseudomassariella vexata","na":2,"nb":1,"a":[["TED%3AAF-A0A1Y2E1L6-F1-model_v4_TED04","TED novel fold AF-A0A1Y2E1L6-F1-model_v4_TED04"],["TED%3AAF-A0A1Y2E2L4-F1-model_v4_TED01","TED novel fold AF-A0A1Y2E2L4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1141098","Pseudomassariella vexata"]]},{"id":"NCBITaxon:1141221","l":"Chryseobacterium taihuense","na":1,"nb":2,"a":[["TED%3AAF-A0A4U8WD57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8WD57-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1871047","Chryseobacterium sp."],["NCBITaxon%3A1141221","Chryseobacterium taihuense"]]},{"id":"NCBITaxon:114155","l":"Dichomitus squalens","na":2,"nb":1,"a":[["TED%3AAF-A0A4Q9MKV3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Q9MKV3-F1-model_v4_TED02"],["TED%3AAF-A0A4Q9PEE3-F1-model_v4_TED02","TED novel fold AF-A0A4Q9PEE3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A114155","Dichomitus squalens"]]},{"id":"NCBITaxon:114885","l":"Mycoplasmopsis maculosa","na":2,"nb":1,"a":[["TED%3AAF-A0A449B3M2-F1-model_v4_TED04","TED novel fold AF-A0A449B3M2-F1-model_v4_TED04"],["TED%3AAF-A0A449B4G6-F1-model_v4_TED03","TED novel fold AF-A0A449B4G6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A114885","Mycoplasmopsis maculosa"]]},{"id":"NCBITaxon:1149133","l":"Metapseudomonas furukawaii","na":2,"nb":1,"a":[["Pfam%3APF22632","Dihydroxybiphenyl dioxygenase BphC D1"],["PROSITE%3APS00082","Extradiol ring-cleavage dioxygenases signature"]],"b":[["NCBITaxon%3A1149133","Metapseudomonas furukawaii"]]},{"id":"NCBITaxon:1150298","l":"Fusicatenibacter saccharivorans","na":2,"nb":1,"a":[["TED%3AAF-A0A174K1Z5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A174K1Z5-F1-model_v4_TED01"],["TED%3AAF-A0A174J3Q6-F1-model_v4_TED01","TED novel fold AF-A0A174J3Q6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1150298","Fusicatenibacter saccharivorans"]]},{"id":"NCBITaxon:1153","l":"Pseudanabaena sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2W6YPX5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W6YPX5-F1-model_v4_TED01"],["TED%3AAF-A0A2W7B262-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W7B262-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1153","Pseudanabaena sp."]]},{"id":"NCBITaxon:115852","l":"Chlorobaculum thiosulfatiphilum","na":2,"nb":1,"a":[["Pfam%3APF02327","Bacteriochlorophyll A protein"],["Pfam%3APF27499","CsmB chlorosome envelope protein"]],"b":[["NCBITaxon%3A115852","Chlorobaculum thiosulfatiphilum"]]},{"id":"NCBITaxon:1158602","l":"Enterococcus raffinosus ATCC 49464","na":1,"nb":2,"a":[["TED%3AAF-R2R3Z5-F1-model_v4_TED02","TED highly-symmetric fold AF-R2R3Z5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A33945","Enterococcus avium"],["NCBITaxon%3A1158602","Enterococcus raffinosus ATCC 49464"]]},{"id":"NCBITaxon:1158610","l":"Enterococcus phoeniculicola ATCC BAA-412","na":1,"nb":2,"a":[["TED%3AAF-R3WN72-F1-model_v4_TED03","TED novel fold AF-R3WN72-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A154621","Enterococcus phoeniculicola"],["NCBITaxon%3A1158610","Enterococcus phoeniculicola ATCC BAA-412"]]},{"id":"NCBITaxon:1159556","l":"Ustilaginoidea virens","na":2,"nb":1,"a":[["Pfam%3APF06966","Protein of unknown function (DUF1295)"],["TED%3AAF-A0A1B5L5W2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1B5L5W2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1159556","Ustilaginoidea virens"]]},{"id":"NCBITaxon:115979","l":"Niallia nealsonii","na":1,"nb":2,"a":[["TED%3AAF-A0A2N0Z186-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N0Z186-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A115979","Niallia nealsonii"],["NCBITaxon%3A1202533","Niallia nealsonii AAU1"]]},{"id":"NCBITaxon:1161412","l":"Prevotella sp. ICM33","na":2,"nb":1,"a":[["TED%3AAF-X6PST8-F1-model_v4_TED01","TED novel fold AF-X6PST8-F1-model_v4_TED01"],["TED%3AAF-X6Q0D4-F1-model_v4_TED01","TED novel fold AF-X6Q0D4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1161412","Prevotella sp. ICM33"]]},{"id":"NCBITaxon:1161912","l":"Thermosipho africanus H17ap60334","na":2,"nb":1,"a":[["Pfam%3APF14487","ssDNA thymidine ADP-ribosyltransferase, DarT"],["TED%3AAF-K2PFI9-F1-model_v4_TED01","TED highly-symmetric fold AF-K2PFI9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1161912","Thermosipho africanus H17ap60334"]]},{"id":"NCBITaxon:1161919","l":"Erwinia piriflorinigrans CFBP 5888","na":1,"nb":2,"a":[["TED%3AAF-V5Z5E5-F1-model_v4_TED01","TED novel fold AF-V5Z5E5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A665097","Erwinia piriflorinigrans"],["NCBITaxon%3A1161919","Erwinia piriflorinigrans CFBP 5888"]]},{"id":"NCBITaxon:1163617","l":"Sulfuricella denitrificans skB26","na":1,"nb":2,"a":[["TED%3AAF-S6ABZ5-F1-model_v4_TED01","TED highly-symmetric fold AF-S6ABZ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A649841","Sulfuricella denitrificans"],["NCBITaxon%3A1163617","Sulfuricella denitrificans skB26"]]},{"id":"NCBITaxon:1163748","l":"Marinobacter nauticus ATCC 49840","na":1,"nb":2,"a":[["Pfam%3APF13205","Bacterial Ig-like domain"]],"b":[["NCBITaxon%3A2743","Marinobacter nauticus"],["NCBITaxon%3A1163748","Marinobacter nauticus ATCC 49840"]]},{"id":"NCBITaxon:1165092","l":"Lachnospiraceae bacterium JC7","na":2,"nb":1,"a":[["TED%3AAF-W3AP45-F1-model_v4_TED03","TED highly-symmetric fold AF-W3AP45-F1-model_v4_TED03"],["TED%3AAF-W3ATW4-F1-model_v4_TED02","TED highly-symmetric fold AF-W3ATW4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1165092","Lachnospiraceae bacterium JC7"]]},{"id":"NCBITaxon:1165861","l":"Puccinia striiformis f. sp. tritici PST-78","na":2,"nb":1,"a":[["TED%3AAF-A0A0L0VM11-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0L0VM11-F1-model_v4_TED01"],["TED%3AAF-A0A0L0VHH9-F1-model_v4_TED01","TED novel fold AF-A0A0L0VHH9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1165861","Puccinia striiformis f. sp. tritici PST-78"]]},{"id":"NCBITaxon:1166018","l":"Fibrella aestuarina BUZ 2","na":1,"nb":2,"a":[["TED%3AAF-I0K3W3-F1-model_v4_TED02","TED highly-symmetric fold AF-I0K3W3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A651143","Fibrella aestuarina"],["NCBITaxon%3A1166018","Fibrella aestuarina BUZ 2"]]},{"id":"NCBITaxon:1168035","l":"Tangfeifania diversioriginum","na":2,"nb":1,"a":[["TED%3AAF-A0A1M6L916-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M6L916-F1-model_v4_TED01"],["TED%3AAF-A0A1M6CKI2-F1-model_v4_TED02","TED novel fold AF-A0A1M6CKI2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1168035","Tangfeifania diversioriginum"]]},{"id":"NCBITaxon:1172204","l":"Paraclostridium sordellii 8483","na":2,"nb":1,"a":[["TED%3AAF-A0A446IBF2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A446IBF2-F1-model_v4_TED01"],["TED%3AAF-A0A446ICV2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A446ICV2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1172204","Paraclostridium sordellii 8483"]]},{"id":"NCBITaxon:1176240","l":"Vreelandella zhaodongensis","na":1,"nb":2,"a":[["Pfam%3APF07556","Protein of unknown function (DUF1538)"]],"b":[["NCBITaxon%3A3042314","Sphingomonas oryzagri"],["NCBITaxon%3A1176240","Vreelandella zhaodongensis"]]},{"id":"NCBITaxon:117681","l":"Pseudomonas gingeri","na":1,"nb":2,"a":[["TED%3AAF-A0A7Y7X9U2-F1-model_v4_TED01","TED novel fold AF-A0A7Y7X9U2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A117681","Pseudomonas gingeri"],["NCBITaxon%3A707248","Pseudomonas gingeri NCPPB 3146 = LMG 5327"]]},{"id":"NCBITaxon:1181734","l":"Escherichia coli KTE188","na":2,"nb":1,"a":[["Pfam%3APF18138","Bacterial HORMA domain family 1"],["Pfam%3APF18178","ATP nucleosidase Cap17-like, N-terminal"]],"b":[["NCBITaxon%3A1181734","Escherichia coli KTE188"]]},{"id":"NCBITaxon:1184387","l":"Mesotoga prima","na":1,"nb":2,"a":[["TED%3AAF-A0A101HJI5-F1-model_v4_TED01","TED novel fold AF-A0A101HJI5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1184387","Mesotoga prima"],["NCBITaxon%3A660470","Mesotoga prima MesG1.Ag.4.2"]]},{"id":"NCBITaxon:1185767","l":"Zunongwangia atlantica 22II14-10F7","na":1,"nb":2,"a":[["TED%3AAF-A0A1Y1SXH8-F1-model_v4_TED02","TED novel fold AF-A0A1Y1SXH8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1502297","Zunongwangia atlantica"],["NCBITaxon%3A1185767","Zunongwangia atlantica 22II14-10F7"]]},{"id":"NCBITaxon:1194083","l":"Nostocoides japonicum T1-X7","na":1,"nb":2,"a":[["TED%3AAF-A0A077LU77-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A077LU77-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A99481","Nostocoides japonicum"],["NCBITaxon%3A1194083","Nostocoides japonicum T1-X7"]]},{"id":"NCBITaxon:1194405","l":"Pseudomonas syringae pv. actinidiae ICMP 19096","na":2,"nb":1,"a":[["TED%3AAF-A0A656JJL9-F1-model_v4_TED01","TED novel fold AF-A0A656JJL9-F1-model_v4_TED01"],["TED%3AAF-A0A656JZI9-F1-model_v4_TED01","TED novel fold AF-A0A656JZI9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1194405","Pseudomonas syringae pv. actinidiae ICMP 19096"]]},{"id":"NCBITaxon:1197174","l":"Alishewanella aestuarii B11","na":1,"nb":2,"a":[["TED%3AAF-J1Q2H4-F1-model_v4_TED02","TED novel fold AF-J1Q2H4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A453835","Alishewanella aestuarii"],["NCBITaxon%3A1197174","Alishewanella aestuarii B11"]]},{"id":"NCBITaxon:1198114","l":"Granulicella tundricola MP5ACTX9","na":1,"nb":2,"a":[["TED%3AAF-E8X149-F1-model_v4_TED01","TED highly-symmetric fold AF-E8X149-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A940615","Granulicella tundricola"],["NCBITaxon%3A1198114","Granulicella tundricola MP5ACTX9"]]},{"id":"NCBITaxon:1206781","l":"Paenibacillus alvei DSM 29","na":1,"nb":2,"a":[["Pfam%3APF07737","Anthrax toxin lethal factor, N- and C-terminal domain"]],"b":[["NCBITaxon%3A44250","Paenibacillus alvei"],["NCBITaxon%3A1206781","Paenibacillus alvei DSM 29"]]},{"id":"NCBITaxon:1209778","l":"Salinisphaera japonica YTM-1","na":1,"nb":2,"a":[["TED%3AAF-A0A423PPR3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A423PPR3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1304270","Salinisphaera japonica"],["NCBITaxon%3A1209778","Salinisphaera japonica YTM-1"]]},{"id":"NCBITaxon:1209984","l":"Mycolicibacterium mageritense DSM 44476 = CIP 104973","na":1,"nb":2,"a":[["TED%3AAF-X5KX85-F1-model_v4_TED01","TED highly-symmetric fold AF-X5KX85-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A53462","Mycolicibacterium mageritense"],["NCBITaxon%3A1209984","Mycolicibacterium mageritense DSM 44476 = CIP 104973"]]},{"id":"NCBITaxon:1210091","l":"Nocardia ninae NBRC 108245","na":1,"nb":2,"a":[["TED%3AAF-A0A511MS59-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A511MS59-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A356145","Nocardia ninae"],["NCBITaxon%3A1210091","Nocardia ninae NBRC 108245"]]},{"id":"NCBITaxon:1210884","l":"Gemmata massiliana","na":2,"nb":1,"a":[["TED%3AAF-A0A6P2D5S8-F1-model_v4_TED01","TED novel fold AF-A0A6P2D5S8-F1-model_v4_TED01"],["TED%3AAF-A0A6P2D8H0-F1-model_v4_TED01","TED novel fold AF-A0A6P2D8H0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1210884","Gemmata massiliana"]]},{"id":"NCBITaxon:1214242","l":"Streptomyces collinus Tu 365","na":1,"nb":2,"a":[["TED%3AAF-S5VBX8-F1-model_v4_TED03","TED novel fold AF-S5VBX8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1214242","Streptomyces collinus Tu 365"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:1214928","l":"Thermus tengchongensis","na":1,"nb":2,"a":[["TED%3AAF-A0A7V4ANW9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V4ANW9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1214928","Thermus tengchongensis"],["NCBITaxon%3A1449357","Thermus tengchongensis YIM 77401"]]},{"id":"NCBITaxon:1215089","l":"Planococcus halocryophilus","na":1,"nb":2,"a":[["TED%3AAF-A0A1C7DVM0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C7DVM0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1215089","Planococcus halocryophilus"],["NCBITaxon%3A1005941","Planococcus halocryophilus Or1"]]},{"id":"NCBITaxon:1216006","l":"Vibrio aerogenes CECT 7868","na":1,"nb":2,"a":[["TED%3AAF-A0A1M5VN06-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M5VN06-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A92172","Vibrio aerogenes"],["NCBITaxon%3A1216006","Vibrio aerogenes CECT 7868"]]},{"id":"NCBITaxon:121759","l":"Paracoccidioides brasiliensis","na":2,"nb":1,"a":[["TED%3AAF-A0A1D2JC16-F1-model_v4_TED01","TED novel fold AF-A0A1D2JC16-F1-model_v4_TED01"],["TED%3AAF-A0A1E2XTS3-F1-model_v4_TED02","TED novel fold AF-A0A1E2XTS3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A121759","Paracoccidioides brasiliensis"]]},{"id":"NCBITaxon:1217641","l":"Acinetobacter baumannii NIPH 615","na":1,"nb":2,"a":[["TED%3AAF-A0A5K1MMB0-F1-model_v4_TED01","TED novel fold AF-A0A5K1MMB0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A1217641","Acinetobacter baumannii NIPH 615"]]},{"id":"NCBITaxon:1218108","l":"Empedobacter brevis NBRC 14943 = ATCC 43319","na":1,"nb":2,"a":[["TED%3AAF-A0A511NGL9-F1-model_v4_TED02","TED novel fold AF-A0A511NGL9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A247","Empedobacter brevis"],["NCBITaxon%3A1218108","Empedobacter brevis NBRC 14943 = ATCC 43319"]]},{"id":"NCBITaxon:1218591","l":"Leptospira vanthielii serovar Holland str. Waz Holland = ATCC 700522","na":1,"nb":2,"a":[["TED%3AAF-N1W7L1-F1-model_v4_TED01","TED highly-symmetric fold AF-N1W7L1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A293085","Leptospira vanthielii"],["NCBITaxon%3A1218591","Leptospira vanthielii serovar Holland str. Waz Holland = ATCC 700522"]]},{"id":"NCBITaxon:1219035","l":"Caenibius tardaugens NBRC 16725","na":1,"nb":2,"a":[["TED%3AAF-U3A023-F1-model_v4_TED01","TED highly-symmetric fold AF-U3A023-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A169176","Caenibius tardaugens"],["NCBITaxon%3A1219035","Caenibius tardaugens NBRC 16725"]]},{"id":"NCBITaxon:1219043","l":"Sphingomonas changbaiensis NBRC 104936","na":1,"nb":2,"a":[["TED%3AAF-A0A0E9MQ39-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0E9MQ39-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A529705","Sphingomonas changbaiensis"],["NCBITaxon%3A1219043","Sphingomonas changbaiensis NBRC 104936"]]},{"id":"NCBITaxon:122","l":"Gimesia maris","na":1,"nb":2,"a":[["TED%3AAF-A0A3D3R686-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D3R686-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A122","Gimesia maris"],["NCBITaxon%3A344747","Gimesia maris DSM 8797"]]},{"id":"NCBITaxon:1220207","l":"Aspergillus puulaauensis","na":2,"nb":1,"a":[["TED%3AAF-A0A7R7XXX1-F1-model_v4_TED02","TED novel fold AF-A0A7R7XXX1-F1-model_v4_TED02"],["TED%3AAF-A0A7R8AJP7-F1-model_v4_TED02","TED novel fold AF-A0A7R8AJP7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1220207","Aspergillus puulaauensis"]]},{"id":"NCBITaxon:1220575","l":"Sphingobacterium faecium NBRC 15299","na":1,"nb":2,"a":[["Pfam%3APF10137","CAP12/Pycsar effector protein, TIR domain"]],"b":[["NCBITaxon%3A34087","Sphingobacterium faecium"],["NCBITaxon%3A1220575","Sphingobacterium faecium NBRC 15299"]]},{"id":"NCBITaxon:1220589","l":"Lysinibacillus odysseyi 34hs-1 = NBRC 100172","na":1,"nb":2,"a":[["TED%3AAF-A0A0A3J3B5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A3J3B5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A202611","Lysinibacillus odysseyi"],["NCBITaxon%3A1220589","Lysinibacillus odysseyi 34hs-1 = NBRC 100172"]]},{"id":"NCBITaxon:1221996","l":"Bacillus thermotolerans","na":2,"nb":1,"a":[["Pfam%3APF24309","IMEF cargo Flp protein"],["Pfam%3APF04454","Encapsulating protein for peroxidase"]],"b":[["NCBITaxon%3A1221996","Bacillus thermotolerans"]]},{"id":"NCBITaxon:1223518","l":"Deinococcus cellulosilyticus NBRC 106333 = KACC 11606","na":1,"nb":2,"a":[["TED%3AAF-A0A511MXV2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A511MXV2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A401558","Deinococcus cellulosilyticus"],["NCBITaxon%3A1223518","Deinococcus cellulosilyticus NBRC 106333 = KACC 11606"]]},{"id":"NCBITaxon:1227452","l":"Haloarcula amylolytica JCM 13557","na":1,"nb":2,"a":[["TED%3AAF-M0KRK7-F1-model_v4_TED01","TED highly-symmetric fold AF-M0KRK7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A396317","Haloarcula amylolytica"],["NCBITaxon%3A1227452","Haloarcula amylolytica JCM 13557"]]},{"id":"NCBITaxon:1227455","l":"Halococcus saccharolyticus DSM 5350","na":1,"nb":2,"a":[["TED%3AAF-M0MGR3-F1-model_v4_TED01","TED highly-symmetric fold AF-M0MGR3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A62319","Halococcus saccharolyticus"],["NCBITaxon%3A1227455","Halococcus saccharolyticus DSM 5350"]]},{"id":"NCBITaxon:1227466","l":"Halorubrum coriense DSM 10284","na":1,"nb":2,"a":[["TED%3AAF-M0ENX3-F1-model_v4_TED01","TED highly-symmetric fold AF-M0ENX3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A64713","Halorubrum coriense"],["NCBITaxon%3A1227466","Halorubrum coriense DSM 10284"]]},{"id":"NCBITaxon:1227485","l":"Halorubrum tebenquichense DSM 14210","na":1,"nb":2,"a":[["TED%3AAF-M0DXR8-F1-model_v4_TED01","TED highly-symmetric fold AF-M0DXR8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A119434","Halorubrum tebenquichense"],["NCBITaxon%3A1227485","Halorubrum tebenquichense DSM 14210"]]},{"id":"NCBITaxon:1227489","l":"Natrinema thermotolerans DSM 11552","na":1,"nb":2,"a":[["TED%3AAF-M0BXN9-F1-model_v4_TED01","TED highly-symmetric fold AF-M0BXN9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A121872","Natrinema thermotolerans"],["NCBITaxon%3A1227489","Natrinema thermotolerans DSM 11552"]]},{"id":"NCBITaxon:1227495","l":"Natrinema pallidum DSM 3751","na":1,"nb":2,"a":[["TED%3AAF-L9ZA08-F1-model_v4_TED01","TED highly-symmetric fold AF-L9ZA08-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A69527","Natrinema pallidum"],["NCBITaxon%3A1227495","Natrinema pallidum DSM 3751"]]},{"id":"NCBITaxon:1227498","l":"Natronococcus jeotgali DSM 18795","na":1,"nb":2,"a":[["TED%3AAF-L9WM09-F1-model_v4_TED01","TED novel fold AF-L9WM09-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A413812","Natronococcus jeotgali"],["NCBITaxon%3A1227498","Natronococcus jeotgali DSM 18795"]]},{"id":"NCBITaxon:1229493","l":"Vibrio owensii CAIM 1854 = LMG 25443","na":1,"nb":2,"a":[["TED%3AAF-A0A0C1Z7S3-F1-model_v4_TED01","TED novel fold AF-A0A0C1Z7S3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A696485","Vibrio owensii"],["NCBITaxon%3A1229493","Vibrio owensii CAIM 1854 = LMG 25443"]]},{"id":"NCBITaxon:1230456","l":"Halorubrum kocurii JCM 14978","na":1,"nb":2,"a":[["TED%3AAF-M0PB06-F1-model_v4_TED02","TED highly-symmetric fold AF-M0PB06-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A478441","Halorubrum kocurii"],["NCBITaxon%3A1230456","Halorubrum kocurii JCM 14978"]]},{"id":"NCBITaxon:1231350","l":"Acidisphaera rubrifaciens HS-AP3","na":1,"nb":2,"a":[["TED%3AAF-A0A0D6PBJ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D6PBJ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A50715","Acidisphaera rubrifaciens"],["NCBITaxon%3A1231350","Acidisphaera rubrifaciens HS-AP3"]]},{"id":"NCBITaxon:1232683","l":"Marinobacterium lacunae","na":2,"nb":1,"a":[["TED%3AAF-A0A081FTJ9-F1-model_v4_TED01","TED novel fold AF-A0A081FTJ9-F1-model_v4_TED01"],["TED%3AAF-A0A081FX50-F1-model_v4_TED01","TED novel fold AF-A0A081FX50-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1232683","Marinobacterium lacunae"]]},{"id":"NCBITaxon:1233170","l":"Paraclostridium bifermentans ATCC 19299","na":1,"nb":2,"a":[["TED%3AAF-T4VCS4-F1-model_v4_TED02","TED novel fold AF-T4VCS4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1490","Paraclostridium bifermentans"],["NCBITaxon%3A1233170","Paraclostridium bifermentans ATCC 19299"]]},{"id":"NCBITaxon:1234023","l":"uncultured bacterium (gcode 4)","na":2,"nb":1,"a":[["TED%3AAF-K1XI48-F1-model_v4_TED04","TED highly-symmetric fold AF-K1XI48-F1-model_v4_TED04"],["TED%3AAF-K2BC65-F1-model_v4_TED02","TED novel fold AF-K2BC65-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1234023","uncultured bacterium (gcode 4)"]]},{"id":"NCBITaxon:1235794","l":"Adlercreutzia caecimuris B7","na":1,"nb":2,"a":[["TED%3AAF-R9KXL3-F1-model_v4_TED01","TED highly-symmetric fold AF-R9KXL3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A671266","Adlercreutzia caecimuris"],["NCBITaxon%3A1235794","Adlercreutzia caecimuris B7"]]},{"id":"NCBITaxon:1235802","l":"Eubacterium plexicaudatum ASF492","na":2,"nb":1,"a":[["TED%3AAF-N1ZVY8-F1-model_v4_TED04","TED novel fold AF-N1ZVY8-F1-model_v4_TED04"],["TED%3AAF-N2B622-F1-model_v4_TED04","TED novel fold AF-N2B622-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1235802","Eubacterium plexicaudatum ASF492"]]},{"id":"NCBITaxon:1236960","l":"Stenotrophomonas pictorum JCM 9942","na":1,"nb":2,"a":[["TED%3AAF-A0A0R0AT88-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0R0AT88-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A86184","Stenotrophomonas pictorum"],["NCBITaxon%3A1236960","Stenotrophomonas pictorum JCM 9942"]]},{"id":"NCBITaxon:1236973","l":"Halalkalibacter akibai JCM 9157","na":1,"nb":2,"a":[["Pfam%3APF03424","Carbohydrate binding domain (family 17/28)"]],"b":[["NCBITaxon%3A1411","Halalkalibacter akibai"],["NCBITaxon%3A1236973","Halalkalibacter akibai JCM 9157"]]},{"id":"NCBITaxon:1236976","l":"Paenibacillus pini JCM 16418","na":1,"nb":2,"a":[["TED%3AAF-W7YJV9-F1-model_v4_TED01","TED novel fold AF-W7YJV9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A669461","Paenibacillus pini"],["NCBITaxon%3A1236976","Paenibacillus pini JCM 16418"]]},{"id":"NCBITaxon:1237149","l":"Fulvivirga imtechensis AK7","na":1,"nb":2,"a":[["TED%3AAF-L8JJE1-F1-model_v4_TED01","TED highly-symmetric fold AF-L8JJE1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A881893","Fulvivirga imtechensis"],["NCBITaxon%3A1237149","Fulvivirga imtechensis AK7"]]},{"id":"NCBITaxon:1241978","l":"Chryseobacterium bernardetii","na":1,"nb":2,"a":[["TED%3AAF-A0A3G6T371-F1-model_v4_TED04","TED novel fold AF-A0A3G6T371-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1241978","Chryseobacterium bernardetii"],["NCBITaxon%3A1137990","Geodermatophilus arenarius"]]},{"id":"NCBITaxon:1242864","l":"Cystobacter fuscus DSM 2262","na":1,"nb":2,"a":[["TED%3AAF-S9R041-F1-model_v4_TED01","TED novel fold AF-S9R041-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A43","Cystobacter fuscus"],["NCBITaxon%3A1242864","Cystobacter fuscus DSM 2262"]]},{"id":"NCBITaxon:1245469","l":"Bradyrhizobium oligotrophicum S58","na":1,"nb":2,"a":[["TED%3AAF-M4ZLP8-F1-model_v4_TED01","TED highly-symmetric fold AF-M4ZLP8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A44255","Bradyrhizobium oligotrophicum"],["NCBITaxon%3A1245469","Bradyrhizobium oligotrophicum S58"]]},{"id":"NCBITaxon:1255043","l":"Thioalkalivibrio nitratireducens DSM 14787","na":1,"nb":2,"a":[["Pfam%3APF02335","Cytochrome c552"]],"b":[["NCBITaxon%3A186931","Thioalkalivibrio nitratireducens"],["NCBITaxon%3A1255043","Thioalkalivibrio nitratireducens DSM 14787"]]},{"id":"NCBITaxon:1259217","l":"Cryobacterium zongtaii","na":2,"nb":1,"a":[["TED%3AAF-A0A2S3ZK52-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S3ZK52-F1-model_v4_TED01"],["TED%3AAF-A0A2S3Z5E3-F1-model_v4_TED01","TED novel fold AF-A0A2S3Z5E3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1259217","Cryobacterium zongtaii"]]},{"id":"NCBITaxon:1261634","l":"Roseburia sp. 499","na":2,"nb":1,"a":[["TED%3AAF-A0A1Q9JP08-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q9JP08-F1-model_v4_TED02"],["TED%3AAF-A0A1Q9JYK0-F1-model_v4_TED03","TED novel fold AF-A0A1Q9JYK0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1261634","Roseburia sp. 499"]]},{"id":"NCBITaxon:1262691","l":"Akkermansia sp. CAG:344","na":2,"nb":1,"a":[["TED%3AAF-R7DY31-F1-model_v4_TED02","TED highly-symmetric fold AF-R7DY31-F1-model_v4_TED02"],["TED%3AAF-R7E0J5-F1-model_v4_TED04","TED highly-symmetric fold AF-R7E0J5-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1262691","Akkermansia sp. CAG:344"]]},{"id":"NCBITaxon:1262700","l":"Anaerotruncus sp. CAG:528","na":2,"nb":1,"a":[["TED%3AAF-R5XBN3-F1-model_v4_TED03","TED highly-symmetric fold AF-R5XBN3-F1-model_v4_TED03"],["TED%3AAF-R5XDH2-F1-model_v4_TED02","TED highly-symmetric fold AF-R5XDH2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262700","Anaerotruncus sp. CAG:528"]]},{"id":"NCBITaxon:1262703","l":"Anaerotruncus sp. CAG:390","na":2,"nb":1,"a":[["TED%3AAF-R7ESX1-F1-model_v4_TED02","TED highly-symmetric fold AF-R7ESX1-F1-model_v4_TED02"],["TED%3AAF-R7EJR4-F1-model_v4_TED02","TED novel fold AF-R7EJR4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262703","Anaerotruncus sp. CAG:390"]]},{"id":"NCBITaxon:1262744","l":"Bacteroides sp. CAG:633","na":2,"nb":1,"a":[["TED%3AAF-R6FBQ9-F1-model_v4_TED02","TED novel fold AF-R6FBQ9-F1-model_v4_TED02"],["TED%3AAF-R6FFZ7-F1-model_v4_TED05","TED novel fold AF-R6FFZ7-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1262744","Bacteroides sp. CAG:633"]]},{"id":"NCBITaxon:1262751","l":"Bacteroides sp. CAG:770","na":2,"nb":1,"a":[["TED%3AAF-R6STY7-F1-model_v4_TED01","TED highly-symmetric fold AF-R6STY7-F1-model_v4_TED01"],["TED%3AAF-R6SUE1-F1-model_v4_TED03","TED novel fold AF-R6SUE1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1262751","Bacteroides sp. CAG:770"]]},{"id":"NCBITaxon:1262771","l":"Clostridium sp. CAG:1193","na":2,"nb":1,"a":[["TED%3AAF-R5ISV7-F1-model_v4_TED01","TED novel fold AF-R5ISV7-F1-model_v4_TED01"],["TED%3AAF-R5J8V2-F1-model_v4_TED01","TED novel fold AF-R5J8V2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262771","Clostridium sp. CAG:1193"]]},{"id":"NCBITaxon:1262800","l":"Clostridium sp. CAG:356","na":2,"nb":1,"a":[["TED%3AAF-R6Z6X7-F1-model_v4_TED02","TED novel fold AF-R6Z6X7-F1-model_v4_TED02"],["TED%3AAF-R7A358-F1-model_v4_TED03","TED novel fold AF-R7A358-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1262800","Clostridium sp. CAG:356"]]},{"id":"NCBITaxon:1262802","l":"Clostridium sp. CAG:411","na":2,"nb":1,"a":[["TED%3AAF-R7HU34-F1-model_v4_TED02","TED highly-symmetric fold AF-R7HU34-F1-model_v4_TED02"],["TED%3AAF-R7HXD9-F1-model_v4_TED02","TED novel fold AF-R7HXD9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262802","Clostridium sp. CAG:411"]]},{"id":"NCBITaxon:1262808","l":"Clostridium sp. CAG:448","na":2,"nb":1,"a":[["TED%3AAF-R6SK23-F1-model_v4_TED02","TED highly-symmetric fold AF-R6SK23-F1-model_v4_TED02"],["TED%3AAF-R6T3L5-F1-model_v4_TED01","TED highly-symmetric fold AF-R6T3L5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262808","Clostridium sp. CAG:448"]]},{"id":"NCBITaxon:1262812","l":"Clostridium sp. CAG:470","na":2,"nb":1,"a":[["TED%3AAF-R7FGB6-F1-model_v4_TED01","TED novel fold AF-R7FGB6-F1-model_v4_TED01"],["TED%3AAF-R7FJT9-F1-model_v4_TED02","TED novel fold AF-R7FJT9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262812","Clostridium sp. CAG:470"]]},{"id":"NCBITaxon:1262827","l":"Clostridium sp. CAG:609","na":2,"nb":1,"a":[["TED%3AAF-R7P5H2-F1-model_v4_TED01","TED highly-symmetric fold AF-R7P5H2-F1-model_v4_TED01"],["TED%3AAF-R7P882-F1-model_v4_TED02","TED highly-symmetric fold AF-R7P882-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262827","Clostridium sp. CAG:609"]]},{"id":"NCBITaxon:1262830","l":"Clostridium sp. CAG:632","na":2,"nb":1,"a":[["TED%3AAF-R5KA46-F1-model_v4_TED01","TED highly-symmetric fold AF-R5KA46-F1-model_v4_TED01"],["TED%3AAF-R5K3X5-F1-model_v4_TED02","TED novel fold AF-R5K3X5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262830","Clostridium sp. CAG:632"]]},{"id":"NCBITaxon:1262838","l":"Clostridium sp. CAG:768","na":2,"nb":1,"a":[["TED%3AAF-R7HV93-F1-model_v4_TED02","TED novel fold AF-R7HV93-F1-model_v4_TED02"],["TED%3AAF-R7HX21-F1-model_v4_TED03","TED novel fold AF-R7HX21-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1262838","Clostridium sp. CAG:768"]]},{"id":"NCBITaxon:1262845","l":"Clostridium sp. CAG:91","na":2,"nb":1,"a":[["TED%3AAF-R6W1R6-F1-model_v4_TED02","TED highly-symmetric fold AF-R6W1R6-F1-model_v4_TED02"],["TED%3AAF-R6W8U4-F1-model_v4_TED03","TED novel fold AF-R6W8U4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1262845","Clostridium sp. CAG:91"]]},{"id":"NCBITaxon:1262865","l":"Coraliomargarita sp. CAG:312","na":2,"nb":1,"a":[["TED%3AAF-R7L8G0-F1-model_v4_TED02","TED highly-symmetric fold AF-R7L8G0-F1-model_v4_TED02"],["TED%3AAF-R7LBH8-F1-model_v4_TED01","TED highly-symmetric fold AF-R7LBH8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262865","Coraliomargarita sp. CAG:312"]]},{"id":"NCBITaxon:1262867","l":"Corallococcus sp. CAG:1435","na":2,"nb":1,"a":[["TED%3AAF-R5W403-F1-model_v4_TED07","TED highly-symmetric fold AF-R5W403-F1-model_v4_TED07"],["TED%3AAF-R5W403-F1-model_v4_TED08","TED highly-symmetric fold AF-R5W403-F1-model_v4_TED08"]],"b":[["NCBITaxon%3A1262867","Corallococcus sp. CAG:1435"]]},{"id":"NCBITaxon:1262893","l":"Eubacterium sp. CAG:786","na":2,"nb":1,"a":[["TED%3AAF-R5GYM3-F1-model_v4_TED01","TED highly-symmetric fold AF-R5GYM3-F1-model_v4_TED01"],["TED%3AAF-R5GHZ1-F1-model_v4_TED01","TED novel fold AF-R5GHZ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262893","Eubacterium sp. CAG:786"]]},{"id":"NCBITaxon:1262899","l":"Fusobacterium sp. CAG:439","na":2,"nb":1,"a":[["TED%3AAF-R7J972-F1-model_v4_TED02","TED novel fold AF-R7J972-F1-model_v4_TED02"],["TED%3AAF-R7JDH5-F1-model_v4_TED01","TED novel fold AF-R7JDH5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262899","Fusobacterium sp. CAG:439"]]},{"id":"NCBITaxon:1262901","l":"Fusobacterium sp. CAG:815","na":2,"nb":1,"a":[["TED%3AAF-R7LTJ5-F1-model_v4_TED01","TED novel fold AF-R7LTJ5-F1-model_v4_TED01"],["TED%3AAF-R7M016-F1-model_v4_TED03","TED novel fold AF-R7M016-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1262901","Fusobacterium sp. CAG:815"]]},{"id":"NCBITaxon:1262906","l":"Mycoplasma sp. CAG:776","na":2,"nb":1,"a":[["TED%3AAF-R7NIP8-F1-model_v4_TED02","TED highly-symmetric fold AF-R7NIP8-F1-model_v4_TED02"],["TED%3AAF-R7NIJ0-F1-model_v4_TED01","TED novel fold AF-R7NIJ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262906","Mycoplasma sp. CAG:776"]]},{"id":"NCBITaxon:1262908","l":"Mycoplasma sp. CAG:956","na":2,"nb":1,"a":[["TED%3AAF-R5MTW9-F1-model_v4_TED02","TED novel fold AF-R5MTW9-F1-model_v4_TED02"],["TED%3AAF-R5MUD8-F1-model_v4_TED02","TED novel fold AF-R5MUD8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262908","Mycoplasma sp. CAG:956"]]},{"id":"NCBITaxon:1262913","l":"Parabacteroides sp. CAG:409","na":2,"nb":1,"a":[["TED%3AAF-R7J556-F1-model_v4_TED01","TED highly-symmetric fold AF-R7J556-F1-model_v4_TED01"],["TED%3AAF-R7JFU8-F1-model_v4_TED01","TED highly-symmetric fold AF-R7JFU8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262913","Parabacteroides sp. CAG:409"]]},{"id":"NCBITaxon:1262918","l":"Prevotella sp. CAG:1058","na":2,"nb":1,"a":[["TED%3AAF-R5CHC2-F1-model_v4_TED02","TED highly-symmetric fold AF-R5CHC2-F1-model_v4_TED02"],["TED%3AAF-R5CMC1-F1-model_v4_TED02","TED highly-symmetric fold AF-R5CMC1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262918","Prevotella sp. CAG:1058"]]},{"id":"NCBITaxon:1262919","l":"Prevotella sp. CAG:1092","na":2,"nb":1,"a":[["TED%3AAF-R5P475-F1-model_v4_TED02","TED novel fold AF-R5P475-F1-model_v4_TED02"],["TED%3AAF-R5P942-F1-model_v4_TED02","TED novel fold AF-R5P942-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262919","Prevotella sp. CAG:1092"]]},{"id":"NCBITaxon:1262955","l":"Ruminococcus sp. CAG:353","na":2,"nb":1,"a":[["TED%3AAF-R7KSA2-F1-model_v4_TED02","TED highly-symmetric fold AF-R7KSA2-F1-model_v4_TED02"],["TED%3AAF-R7L073-F1-model_v4_TED01","TED novel fold AF-R7L073-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262955","Ruminococcus sp. CAG:353"]]},{"id":"NCBITaxon:1262987","l":"Proteobacteria bacterium CAG:495","na":2,"nb":1,"a":[["TED%3AAF-R5R8H4-F1-model_v4_TED01","TED highly-symmetric fold AF-R5R8H4-F1-model_v4_TED01"],["TED%3AAF-R5QQZ0-F1-model_v4_TED02","TED novel fold AF-R5QQZ0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262987","Proteobacteria bacterium CAG:495"]]},{"id":"NCBITaxon:1262996","l":"Firmicutes bacterium CAG:631","na":2,"nb":1,"a":[["TED%3AAF-R5V429-F1-model_v4_TED01","TED highly-symmetric fold AF-R5V429-F1-model_v4_TED01"],["TED%3AAF-R5VP30-F1-model_v4_TED02","TED novel fold AF-R5VP30-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262996","Firmicutes bacterium CAG:631"]]},{"id":"NCBITaxon:1263072","l":"Dialister invisus CAG:218","na":2,"nb":1,"a":[["TED%3AAF-R5SLC0-F1-model_v4_TED01","TED highly-symmetric fold AF-R5SLC0-F1-model_v4_TED01"],["TED%3AAF-R5SJI2-F1-model_v4_TED01","TED novel fold AF-R5SJI2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1263072","Dialister invisus CAG:218"]]},{"id":"NCBITaxon:1264554","l":"Mycoplasmopsis meleagridis ATCC 25294","na":1,"nb":2,"a":[["TED%3AAF-A0A0F5H293-F1-model_v4_TED02","TED novel fold AF-A0A0F5H293-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29561","Mycoplasmopsis meleagridis"],["NCBITaxon%3A1264554","Mycoplasmopsis meleagridis ATCC 25294"]]},{"id":"NCBITaxon:1266829","l":"Kribbella albertanoniae","na":2,"nb":1,"a":[["TED%3AAF-A0A4R4Q3H2-F1-model_v4_TED01","TED novel fold AF-A0A4R4Q3H2-F1-model_v4_TED01"],["TED%3AAF-A0A4V2XRY1-F1-model_v4_TED01","TED novel fold AF-A0A4V2XRY1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1266829","Kribbella albertanoniae"]]},{"id":"NCBITaxon:1268635","l":"Legionella oakridgensis ATCC 33761 = DSM 21215","na":1,"nb":2,"a":[["TED%3AAF-W0BCQ3-F1-model_v4_TED02","TED highly-symmetric fold AF-W0BCQ3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29423","Legionella oakridgensis"],["NCBITaxon%3A1268635","Legionella oakridgensis ATCC 33761 = DSM 21215"]]},{"id":"NCBITaxon:1276218","l":"Spiroplasma platyhelix PALS-1","na":1,"nb":2,"a":[["TED%3AAF-A0A846U5R9-F1-model_v4_TED04","TED novel fold AF-A0A846U5R9-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A301585","Spiroplasma platyhelix"],["NCBITaxon%3A1276218","Spiroplasma platyhelix PALS-1"]]},{"id":"NCBITaxon:1276220","l":"Spiroplasma taiwanense CT-1","na":1,"nb":2,"a":[["TED%3AAF-S5LY17-F1-model_v4_TED02","TED novel fold AF-S5LY17-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2145","Spiroplasma taiwanense"],["NCBITaxon%3A1276220","Spiroplasma taiwanense CT-1"]]},{"id":"NCBITaxon:1276221","l":"Spiroplasma diminutum CUAS-1","na":1,"nb":2,"a":[["TED%3AAF-S5M2Q1-F1-model_v4_TED01","TED novel fold AF-S5M2Q1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A216936","Spiroplasma diminutum"],["NCBITaxon%3A1276221","Spiroplasma diminutum CUAS-1"]]},{"id":"NCBITaxon:1276257","l":"Spiroplasma sabaudiense Ar-1343","na":1,"nb":2,"a":[["TED%3AAF-W6A9B9-F1-model_v4_TED02","TED novel fold AF-W6A9B9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A216944","Spiroplasma sabaudiense"],["NCBITaxon%3A1276257","Spiroplasma sabaudiense Ar-1343"]]},{"id":"NCBITaxon:1276258","l":"Spiroplasma apis B31","na":1,"nb":2,"a":[["TED%3AAF-V5RIT7-F1-model_v4_TED01","TED novel fold AF-V5RIT7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2137","Spiroplasma apis"],["NCBITaxon%3A1276258","Spiroplasma apis B31"]]},{"id":"NCBITaxon:1280954","l":"Hyphomonas polymorpha PS728","na":1,"nb":2,"a":[["TED%3AAF-A0A062VEK9-F1-model_v4_TED02","TED novel fold AF-A0A062VEK9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A74319","Hyphomonas polymorpha"],["NCBITaxon%3A1280954","Hyphomonas polymorpha PS728"]]},{"id":"NCBITaxon:1281278","l":"Escherichia coli UMEA 4076-1","na":2,"nb":1,"a":[["Pfam%3APF25164","Competence protein CoiA, N-terminal domain"],["Pfam%3APF14236","Druantia protein DruA"]],"b":[["NCBITaxon%3A1281278","Escherichia coli UMEA 4076-1"]]},{"id":"NCBITaxon:1284222","l":"Candidatus Scalindua japonica","na":2,"nb":1,"a":[["TED%3AAF-A0A286TW35-F1-model_v4_TED01","TED novel fold AF-A0A286TW35-F1-model_v4_TED01"],["TED%3AAF-A0A286U3P4-F1-model_v4_TED02","TED novel fold AF-A0A286U3P4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1284222","Candidatus Scalindua japonica"]]},{"id":"NCBITaxon:1286171","l":"Peptoclostridium acidaminophilum DSM 3953","na":1,"nb":2,"a":[["TED%3AAF-W8TCY3-F1-model_v4_TED02","TED highly-symmetric fold AF-W8TCY3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1731","Peptoclostridium acidaminophilum"],["NCBITaxon%3A1286171","Peptoclostridium acidaminophilum DSM 3953"]]},{"id":"NCBITaxon:1287","l":"Staphylococcus simulans bv. staphylolyticus","na":1,"nb":2,"a":[["Pfam%3APF25533","Lysostaphin, N-terminal domain"]],"b":[["NCBITaxon%3A1286","Staphylococcus simulans"],["NCBITaxon%3A1287","Staphylococcus simulans bv. staphylolyticus"]]},{"id":"NCBITaxon:1287120","l":"Mesorhizobium sp. L2C089B000","na":2,"nb":1,"a":[["TED%3AAF-V7GX33-F1-model_v4_TED03","TED highly-symmetric fold AF-V7GX33-F1-model_v4_TED03"],["TED%3AAF-V7GS75-F1-model_v4_TED02","TED novel fold AF-V7GS75-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1287120","Mesorhizobium sp. L2C089B000"]]},{"id":"NCBITaxon:128803","l":"Planococcus sp. 'SOS Orange'","na":2,"nb":1,"a":[["Pfam%3APF02449","Beta-galactosidase"],["Pfam%3APF08532","Beta-galactosidase trimerisation domain"]],"b":[["NCBITaxon%3A128803","Planococcus sp. 'SOS Orange'"]]},{"id":"NCBITaxon:1288313","l":"Gluconobacter oxydans DSM 3504","na":1,"nb":2,"a":[["TED%3AAF-A0A067Z3R2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A067Z3R2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1288313","Gluconobacter oxydans DSM 3504"],["NCBITaxon%3A1876758","Gluconobacter sp."]]},{"id":"NCBITaxon:1288362","l":"Actinoplanes sp. ATCC 53533","na":2,"nb":1,"a":[["TED%3AAF-A0A428XH31-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A428XH31-F1-model_v4_TED01"],["TED%3AAF-A0A428XQY1-F1-model_v4_TED01","TED novel fold AF-A0A428XQY1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1288362","Actinoplanes sp. ATCC 53533"]]},{"id":"NCBITaxon:1288385","l":"Yersinia pekkanenii","na":1,"nb":2,"a":[["TED%3AAF-A0A0T9R6K6-F1-model_v4_TED01","TED novel fold AF-A0A0T9R6K6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1288385","Yersinia pekkanenii"],["NCBITaxon%3A687899","Yersinia pekkanenii DSM 22769"]]},{"id":"NCBITaxon:1291052","l":"Lacticaseibacillus sharpeae JCM 1186 = DSM 20505","na":1,"nb":2,"a":[["TED%3AAF-A0A0R1ZZL8-F1-model_v4_TED01","TED novel fold AF-A0A0R1ZZL8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1626","Lacticaseibacillus sharpeae"],["NCBITaxon%3A1291052","Lacticaseibacillus sharpeae JCM 1186 = DSM 20505"]]},{"id":"NCBITaxon:1291742","l":"Paucilactobacillus hokkaidonensis JCM 18461","na":1,"nb":2,"a":[["TED%3AAF-A0A0A1GYI0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A1GYI0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1193095","Paucilactobacillus hokkaidonensis"],["NCBITaxon%3A1291742","Paucilactobacillus hokkaidonensis JCM 18461"]]},{"id":"NCBITaxon:1292036","l":"Paraclostridium sordellii ATCC 9714","na":1,"nb":2,"a":[["TED%3AAF-T0CWZ2-F1-model_v4_TED01","TED highly-symmetric fold AF-T0CWZ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1505","Paraclostridium sordellii"],["NCBITaxon%3A1292036","Paraclostridium sordellii ATCC 9714"]]},{"id":"NCBITaxon:1292037","l":"Amycolatopsis vancoresmycina DSM 44592","na":1,"nb":2,"a":[["TED%3AAF-R1ICU3-F1-model_v4_TED01","TED highly-symmetric fold AF-R1ICU3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A208444","Amycolatopsis vancoresmycina"],["NCBITaxon%3A1292037","Amycolatopsis vancoresmycina DSM 44592"]]},{"id":"NCBITaxon:1293890","l":"Thalassospira alkalitolerans","na":2,"nb":1,"a":[["TED%3AAF-A0A1Y2L7Y4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y2L7Y4-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2LDQ3-F1-model_v4_TED01","TED novel fold AF-A0A1Y2LDQ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1293890","Thalassospira alkalitolerans"]]},{"id":"NCBITaxon:1295609","l":"Thermodesulfobacterium geofontis","na":1,"nb":2,"a":[["TED%3AAF-A0A2N7PMV0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2N7PMV0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1295609","Thermodesulfobacterium geofontis"],["NCBITaxon%3A795359","Thermodesulfobacterium geofontis OPF15"]]},{"id":"NCBITaxon:1296109","l":"Cryptococcus bacillisporus CA1280","na":2,"nb":1,"a":[["TED%3AAF-A0A0D0TFT0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D0TFT0-F1-model_v4_TED01"],["TED%3AAF-A0A0D0VLQ5-F1-model_v4_TED01","TED novel fold AF-A0A0D0VLQ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1296109","Cryptococcus bacillisporus CA1280"]]},{"id":"NCBITaxon:12968","l":"Blastocystis hominis","na":1,"nb":2,"a":[["TED%3AAF-D8LUQ2-F1-model_v4_TED02","TED novel fold AF-D8LUQ2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A12968","Blastocystis hominis"],["NCBITaxon%3A478820","Blastocystis sp. ATCC 50177/Nand II"]]},{"id":"NCBITaxon:1298595","l":"Veillonella rogosae JCM 15642","na":1,"nb":2,"a":[["TED%3AAF-A0A2S7YXG0-F1-model_v4_TED02","TED novel fold AF-A0A2S7YXG0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A423477","Veillonella rogosae"],["NCBITaxon%3A1298595","Veillonella rogosae JCM 15642"]]},{"id":"NCBITaxon:1298609","l":"Psychrobacter sp. JCM 18901","na":2,"nb":1,"a":[["TED%3AAF-X0QEB9-F1-model_v4_TED01","TED novel fold AF-X0QEB9-F1-model_v4_TED01"],["TED%3AAF-X0RVB5-F1-model_v4_TED02","TED novel fold AF-X0RVB5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1298609","Psychrobacter sp. JCM 18901"]]},{"id":"NCBITaxon:1300164","l":"Methanobrevibacter arboriphilus JCM 13429 = DSM 1125","na":1,"nb":2,"a":[["TED%3AAF-A0A1V6N2T2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V6N2T2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39441","Methanobrevibacter arboriphilus"],["NCBITaxon%3A1300164","Methanobrevibacter arboriphilus JCM 13429 = DSM 1125"]]},{"id":"NCBITaxon:1300341","l":"Croceitalea dokdonensis DOKDO 023","na":1,"nb":2,"a":[["TED%3AAF-A0A0P7AXM5-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A0P7AXM5-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A346188","Croceitalea dokdonensis"],["NCBITaxon%3A1300341","Croceitalea dokdonensis DOKDO 023"]]},{"id":"NCBITaxon:1300345","l":"Lysobacter dokdonensis DS-58","na":1,"nb":2,"a":[["TED%3AAF-A0A0A2WHH1-F1-model_v4_TED02","TED novel fold AF-A0A0A2WHH1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1300345","Lysobacter dokdonensis DS-58"],["NCBITaxon%3A414050","Noviluteimonas dokdonensis"]]},{"id":"NCBITaxon:1300350","l":"Sulfitobacter donghicola DSW-25 = KCTC 12864 = JCM 14565","na":1,"nb":2,"a":[["TED%3AAF-A0A073IE13-F1-model_v4_TED01","TED novel fold AF-A0A073IE13-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A421000","Sulfitobacter donghicola"],["NCBITaxon%3A1300350","Sulfitobacter donghicola DSW-25 = KCTC 12864 = JCM 14565"]]},{"id":"NCBITaxon:1302250","l":"Secundilactobacillus silagei JCM 19001","na":1,"nb":2,"a":[["TED%3AAF-A0A1Z5IHU1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z5IHU1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1293415","Secundilactobacillus silagei"],["NCBITaxon%3A1302250","Secundilactobacillus silagei JCM 19001"]]},{"id":"NCBITaxon:1302730","l":"Gracilimonas mengyeensis","na":2,"nb":1,"a":[["TED%3AAF-A0A521AK96-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A521AK96-F1-model_v4_TED03"],["TED%3AAF-A0A521C5Z7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521C5Z7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1302730","Gracilimonas mengyeensis"]]},{"id":"NCBITaxon:1305827","l":"Streptomyces sp. KhCrAH-43","na":2,"nb":1,"a":[["TED%3AAF-A0A327TZE8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A327TZE8-F1-model_v4_TED03"],["TED%3AAF-A0A327TZL0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A327TZL0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1305827","Streptomyces sp. KhCrAH-43"]]},{"id":"NCBITaxon:1307442","l":"Fusobacterium hwasookii ChDC F174","na":1,"nb":2,"a":[["TED%3AAF-A0A0S2ZR09-F1-model_v4_TED04","TED novel fold AF-A0A0S2ZR09-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1583098","Fusobacterium hwasookii"],["NCBITaxon%3A1307442","Fusobacterium hwasookii ChDC F174"]]},{"id":"NCBITaxon:1307942","l":"Komagataeibacter sucrofermentans DSM 15973","na":1,"nb":2,"a":[["Pfam%3APF03500","Cellulose synthase subunit D"]],"b":[["NCBITaxon%3A1053551","Komagataeibacter sucrofermentans"],["NCBITaxon%3A1307942","Komagataeibacter sucrofermentans DSM 15973"]]},{"id":"NCBITaxon:1313172","l":"Ilumatobacter coccineus YM16-304","na":1,"nb":2,"a":[["TED%3AAF-A0A6C7EH59-F1-model_v4_TED02","TED novel fold AF-A0A6C7EH59-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A467094","Ilumatobacter coccineus"],["NCBITaxon%3A1313172","Ilumatobacter coccineus YM16-304"]]},{"id":"NCBITaxon:1313304","l":"Chitinivibrio alkaliphilus ACht1","na":1,"nb":2,"a":[["TED%3AAF-U7D985-F1-model_v4_TED02","TED highly-symmetric fold AF-U7D985-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1505232","Chitinivibrio alkaliphilus"],["NCBITaxon%3A1313304","Chitinivibrio alkaliphilus ACht1"]]},{"id":"NCBITaxon:1320","l":"Streptococcus sp. 'group G'","na":2,"nb":1,"a":[["Pfam%3APF17573","GA-like domain"],["Pfam%3APF01378","B domain"]],"b":[["NCBITaxon%3A1320","Streptococcus sp. 'group G'"]]},{"id":"NCBITaxon:1321815","l":"Treponema lecithinolyticum ATCC 700332","na":1,"nb":2,"a":[["TED%3AAF-U2LXC9-F1-model_v4_TED01","TED highly-symmetric fold AF-U2LXC9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A53418","Treponema lecithinolyticum"],["NCBITaxon%3A1321815","Treponema lecithinolyticum ATCC 700332"]]},{"id":"NCBITaxon:1323","l":"Faecalicoccus pleomorphus","na":1,"nb":2,"a":[["TED%3AAF-A0A3E3DXS9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3E3DXS9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1323","Faecalicoccus pleomorphus"],["NCBITaxon%3A1123313","Faecalicoccus pleomorphus DSM 20574"]]},{"id":"NCBITaxon:132476","l":"Pseudomonas kilonensis","na":1,"nb":2,"a":[["TED%3AAF-A0A1H5FUT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H5FUT8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A132476","Pseudomonas kilonensis"],["NCBITaxon%3A1173480","Pseudomonas kilonensis CBLA-66"]]},{"id":"NCBITaxon:1324956","l":"Melghiribacillus thermohalophilus","na":2,"nb":1,"a":[["TED%3AAF-A0A4R3NCD2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4R3NCD2-F1-model_v4_TED02"],["TED%3AAF-A0A4V2V194-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4V2V194-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1324956","Melghiribacillus thermohalophilus"]]},{"id":"NCBITaxon:1329909","l":"Sphingobium quisquiliarum P25","na":1,"nb":2,"a":[["TED%3AAF-T0H4F7-F1-model_v4_TED01","TED highly-symmetric fold AF-T0H4F7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A538379","Sphingobium quisquiliarum"],["NCBITaxon%3A1329909","Sphingobium quisquiliarum P25"]]},{"id":"NCBITaxon:1331007","l":"Agarivorans albus MKT 106","na":1,"nb":2,"a":[["TED%3AAF-R9PH52-F1-model_v4_TED02","TED highly-symmetric fold AF-R9PH52-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A182262","Agarivorans albus"],["NCBITaxon%3A1331007","Agarivorans albus MKT 106"]]},{"id":"NCBITaxon:1331668","l":"Streptomyces sparsogenes DSM 40356","na":1,"nb":2,"a":[["TED%3AAF-A0A1R1SPZ2-F1-model_v4_TED01","TED novel fold AF-A0A1R1SPZ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A67365","Streptomyces sparsogenes"],["NCBITaxon%3A1331668","Streptomyces sparsogenes DSM 40356"]]},{"id":"NCBITaxon:1331704","l":"uncultured Aureispira sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A6S6SCG7-F1-model_v4_TED01","TED novel fold AF-A0A6S6SCG7-F1-model_v4_TED01"],["TED%3AAF-A0A6S6THH5-F1-model_v4_TED01","TED novel fold AF-A0A6S6THH5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1331704","uncultured Aureispira sp."]]},{"id":"NCBITaxon:133190","l":"Sphingomonas sp. SRS2","na":2,"nb":1,"a":[["TED%3AAF-A0A0F5PEN9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F5PEN9-F1-model_v4_TED01"],["TED%3AAF-A0A0F5PFK4-F1-model_v4_TED02","TED novel fold AF-A0A0F5PFK4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A133190","Sphingomonas sp. SRS2"]]},{"id":"NCBITaxon:13335","l":"Anaerobiospirillum succiniciproducens","na":1,"nb":2,"a":[["PROSITE%3APS00532","Phosphoenolpyruvate carboxykinase (ATP) signature"]],"b":[["NCBITaxon%3A13335","Anaerobiospirillum succiniciproducens"],["NCBITaxon%3A1120988","Anaerobiospirillum succiniciproducens DSM 6400"]]},{"id":"NCBITaxon:1333996","l":"Variibacter gotjawalensis","na":2,"nb":1,"a":[["TED%3AAF-A0A0S3PVZ4-F1-model_v4_TED01","TED novel fold AF-A0A0S3PVZ4-F1-model_v4_TED01"],["TED%3AAF-A0A0S3PYV0-F1-model_v4_TED02","TED novel fold AF-A0A0S3PYV0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1333996","Variibacter gotjawalensis"]]},{"id":"NCBITaxon:1335613","l":"Gordonibacter urolithinfaciens","na":2,"nb":1,"a":[["TED%3AAF-A0A6N8II72-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8II72-F1-model_v4_TED01"],["TED%3AAF-A0A423UK16-F1-model_v4_TED02","TED novel fold AF-A0A423UK16-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1335613","Gordonibacter urolithinfaciens"]]},{"id":"NCBITaxon:1336748","l":"Spiroplasma monobiae MQ-1","na":1,"nb":2,"a":[["TED%3AAF-A0A2K9LUI3-F1-model_v4_TED04","TED novel fold AF-A0A2K9LUI3-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2136","Spiroplasma monobiae"],["NCBITaxon%3A1336748","Spiroplasma monobiae MQ-1"]]},{"id":"NCBITaxon:1336749","l":"Spiroplasma floricola 23-6","na":1,"nb":2,"a":[["TED%3AAF-A0A2K8SEV4-F1-model_v4_TED03","TED novel fold AF-A0A2K8SEV4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A216937","Spiroplasma floricola"],["NCBITaxon%3A1336749","Spiroplasma floricola 23-6"]]},{"id":"NCBITaxon:1337886","l":"Sporomusa sphaeroides DSM 2875","na":1,"nb":2,"a":[["TED%3AAF-A0A1U7MJ00-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1U7MJ00-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A47679","Sporomusa sphaeroides"],["NCBITaxon%3A1337886","Sporomusa sphaeroides DSM 2875"]]},{"id":"NCBITaxon:134","l":"Methylocystis parvus","na":1,"nb":2,"a":[["TED%3AAF-A0A6B8M6B0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6B8M6B0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A134","Methylocystis parvus"],["NCBITaxon%3A1134912","Methylocystis parvus OBBP"]]},{"id":"NCBITaxon:1341156","l":"Hominimerdicola alba SY3","na":2,"nb":1,"a":[["TED%3AAF-A0A011VVU4-F1-model_v4_TED01","TED novel fold AF-A0A011VVU4-F1-model_v4_TED01"],["TED%3AAF-A0A011WN20-F1-model_v4_TED01","TED novel fold AF-A0A011WN20-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1341156","Hominimerdicola alba SY3"]]},{"id":"NCBITaxon:1343740","l":"Streptomyces rapamycinicus NRRL 5491","na":1,"nb":2,"a":[["Pfam%3APF21168","Chorismatase FkbO/Hyg5-like, N-terminal"]],"b":[["NCBITaxon%3A1226757","Streptomyces rapamycinicus"],["NCBITaxon%3A1343740","Streptomyces rapamycinicus NRRL 5491"]]},{"id":"NCBITaxon:1344003","l":"Williamsia sterculiae","na":2,"nb":1,"a":[["TED%3AAF-A0A1N7FTP5-F1-model_v4_TED01","TED novel fold AF-A0A1N7FTP5-F1-model_v4_TED01"],["TED%3AAF-A0A1N7H905-F1-model_v4_TED01","TED novel fold AF-A0A1N7H905-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1344003","Williamsia sterculiae"]]},{"id":"NCBITaxon:1345695","l":"Clostridium saccharobutylicum DSM 13864","na":1,"nb":2,"a":[["TED%3AAF-U5ML78-F1-model_v4_TED01","TED highly-symmetric fold AF-U5ML78-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A169679","Clostridium saccharobutylicum"],["NCBITaxon%3A1345695","Clostridium saccharobutylicum DSM 13864"]]},{"id":"NCBITaxon:1346790","l":"Sphingobium indicum IP26","na":1,"nb":2,"a":[["TED%3AAF-W1KN37-F1-model_v4_TED01","TED highly-symmetric fold AF-W1KN37-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A332055","Sphingobium indicum"],["NCBITaxon%3A1346790","Sphingobium indicum IP26"]]},{"id":"NCBITaxon:1348163","l":"Desulfocarbo indianensis","na":2,"nb":1,"a":[["TED%3AAF-A0A0K9IA67-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0K9IA67-F1-model_v4_TED01"],["TED%3AAF-A0A0K9I238-F1-model_v4_TED01","TED novel fold AF-A0A0K9I238-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1348163","Desulfocarbo indianensis"]]},{"id":"NCBITaxon:1348623","l":"Priestia megaterium NBRC 15308 = ATCC 14581","na":1,"nb":2,"a":[["TED%3AAF-A0A846AWI2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A846AWI2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1404","Priestia megaterium"],["NCBITaxon%3A1348623","Priestia megaterium NBRC 15308 = ATCC 14581"]]},{"id":"NCBITaxon:1348657","l":"Thauera terpenica 58Eu","na":1,"nb":2,"a":[["TED%3AAF-S9Z9C4-F1-model_v4_TED01","TED novel fold AF-S9Z9C4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A76113","Thauera terpenica"],["NCBITaxon%3A1348657","Thauera terpenica 58Eu"]]},{"id":"NCBITaxon:1350429","l":"Cyclobacterium qasimii","na":1,"nb":2,"a":[["TED%3AAF-A0A512CD48-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A512CD48-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1350429","Cyclobacterium qasimii"],["NCBITaxon%3A641524","Cyclobacterium qasimii M12-11B"]]},{"id":"NCBITaxon:1353533","l":"Pseudoalteromonas luteoviolacea 2ta16","na":2,"nb":1,"a":[["TED%3AAF-V4HNX8-F1-model_v4_TED01","TED novel fold AF-V4HNX8-F1-model_v4_TED01"],["TED%3AAF-V4JDU9-F1-model_v4_TED01","TED novel fold AF-V4JDU9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1353533","Pseudoalteromonas luteoviolacea 2ta16"]]},{"id":"NCBITaxon:1353889","l":"Achromobacter pestifer","na":1,"nb":2,"a":[["TED%3AAF-A0A6S6YSL4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6S6YSL4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1353889","Achromobacter pestifer"],["NCBITaxon%3A85698","Achromobacter xylosoxidans"]]},{"id":"NCBITaxon:1353890","l":"Achromobacter kerstersii","na":2,"nb":1,"a":[["TED%3AAF-A0A6S7AQP5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6S7AQP5-F1-model_v4_TED01"],["TED%3AAF-A0A6S7AZ74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6S7AZ74-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1353890","Achromobacter kerstersii"]]},{"id":"NCBITaxon:136273","l":"Kocuria rosea subsp. polaris","na":1,"nb":2,"a":[["TED%3AAF-A0A0A6VR62-F1-model_v4_TED02","TED novel fold AF-A0A0A6VR62-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1275","Kocuria rosea"],["NCBITaxon%3A136273","Kocuria rosea subsp. polaris"]]},{"id":"NCBITaxon:136370","l":"Lasallia pustulata","na":2,"nb":1,"a":[["TED%3AAF-A0A1W5CUI7-F1-model_v4_TED02","TED novel fold AF-A0A1W5CUI7-F1-model_v4_TED02"],["TED%3AAF-A0A5M8PR11-F1-model_v4_TED02","TED novel fold AF-A0A5M8PR11-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A136370","Lasallia pustulata"]]},{"id":"NCBITaxon:1365176","l":"Thermofilum adornatum","na":1,"nb":2,"a":[["TED%3AAF-A0A7C1CCT4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C1CCT4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1365176","Thermofilum adornatum"],["NCBITaxon%3A697581","Thermofilum adornatum 1505"]]},{"id":"NCBITaxon:1365257","l":"Pseudoalteromonas luteoviolacea S4060-1","na":2,"nb":1,"a":[["TED%3AAF-A0A161YZI7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A161YZI7-F1-model_v4_TED01"],["TED%3AAF-A0A167KUY8-F1-model_v4_TED01","TED novel fold AF-A0A167KUY8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1365257","Pseudoalteromonas luteoviolacea S4060-1"]]},{"id":"NCBITaxon:137658","l":"Pseudomonas indica","na":1,"nb":2,"a":[["proteintraitsmech%3AELIFE109154_IBH_His","Interface-associated metallophore histidine beta-hydroxylase family"]],"b":[["NCBITaxon%3A137658","Pseudomonas indica"],["NCBITaxon%3A1215103","Pseudomonas indica NBRC 103045"]]},{"id":"NCBITaxon:137722","l":"Azospirillum sp. B510","na":1,"nb":2,"a":[["TED%3AAF-D3P3H1-F1-model_v4_TED02","TED highly-symmetric fold AF-D3P3H1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A34012","Azospirillum sp."],["NCBITaxon%3A137722","Azospirillum sp. B510"]]},{"id":"NCBITaxon:13773","l":"Pyrobaculum aerophilum","na":1,"nb":2,"a":[["TED%3AAF-A0A832SQL0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A832SQL0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A13773","Pyrobaculum aerophilum"],["NCBITaxon%3A178306","Pyrobaculum aerophilum str. IM2"]]},{"id":"NCBITaxon:137730","l":"Falseniella ignava","na":1,"nb":2,"a":[["TED%3AAF-A0A2I1K1R7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I1K1R7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A137730","Falseniella ignava"],["NCBITaxon%3A883112","Falseniella ignava CCUG 37419"]]},{"id":"NCBITaxon:137779","l":"Pseudoalteromonas flavipulchra","na":1,"nb":2,"a":[["TED%3AAF-A0A5S3S9K7-F1-model_v4_TED01","TED novel fold AF-A0A5S3S9K7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1315273","Pseudoalteromonas flavipulchra NCIMB 2033 = ATCC BAA-314"],["NCBITaxon%3A184924","Pseudoalteromonas maricaloris"]]},{"id":"NCBITaxon:1380357","l":"Rhodospirillales bacterium URHD0017","na":2,"nb":1,"a":[["TED%3AAF-A0A1H8SNT0-F1-model_v4_TED02","TED novel fold AF-A0A1H8SNT0-F1-model_v4_TED02"],["TED%3AAF-A0A1H8Y0S7-F1-model_v4_TED02","TED novel fold AF-A0A1H8Y0S7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1380357","Rhodospirillales bacterium URHD0017"]]},{"id":"NCBITaxon:138300","l":"Kytococcus schroeteri","na":1,"nb":2,"a":[["TED%3AAF-A0A2I1PDY3-F1-model_v4_TED01","TED novel fold AF-A0A2I1PDY3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A138300","Kytococcus schroeteri"],["NCBITaxon%3A1122141","Kytococcus schroeteri DSM 13884"]]},{"id":"NCBITaxon:1383851","l":"Halorubrum halodurans","na":2,"nb":1,"a":[["TED%3AAF-A0A256INQ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A256INQ8-F1-model_v4_TED01"],["TED%3AAF-A0A256IED1-F1-model_v4_TED04","TED novel fold AF-A0A256IED1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1383851","Halorubrum halodurans"]]},{"id":"NCBITaxon:1384057","l":"Ureibacillus sinduriensis BLB-1 = JCM 15800","na":1,"nb":2,"a":[["TED%3AAF-A0A0A3HYH1-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A0A3HYH1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A561440","Ureibacillus sinduriensis"],["NCBITaxon%3A1384057","Ureibacillus sinduriensis BLB-1 = JCM 15800"]]},{"id":"NCBITaxon:1385511","l":"Pontibacillus marinus BH030004 = DSM 16465","na":1,"nb":2,"a":[["TED%3AAF-A0A0A5GIK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A5GIK2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A273164","Pontibacillus marinus"],["NCBITaxon%3A1385511","Pontibacillus marinus BH030004 = DSM 16465"]]},{"id":"NCBITaxon:1385625","l":"Thiohalocapsa sp. PB-PSB1","na":2,"nb":1,"a":[["TED%3AAF-V4ITH6-F1-model_v4_TED04","TED novel fold AF-V4ITH6-F1-model_v4_TED04"],["TED%3AAF-V4IUM5-F1-model_v4_TED02","TED novel fold AF-V4IUM5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1385625","Thiohalocapsa sp. PB-PSB1"]]},{"id":"NCBITaxon:1385663","l":"Hymenobacter erythromyxa","na":1,"nb":2,"a":[["TED%3AAF-A0A0M5K0Y8-F1-model_v4_TED01","TED novel fold AF-A0A0M5K0Y8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1385663","Hymenobacter erythromyxa"],["NCBITaxon%3A1924939","Nibribacter sp."]]},{"id":"NCBITaxon:1385935","l":"Leptolyngbya sp. Heron Island J","na":2,"nb":1,"a":[["TED%3AAF-U9VLH2-F1-model_v4_TED04","TED highly-symmetric fold AF-U9VLH2-F1-model_v4_TED04"],["TED%3AAF-U9W7G7-F1-model_v4_TED03","TED highly-symmetric fold AF-U9W7G7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1385935","Leptolyngbya sp. Heron Island J"]]},{"id":"NCBITaxon:1387353","l":"Paludisphaera borealis","na":2,"nb":1,"a":[["TED%3AAF-A0A1U7CK02-F1-model_v4_TED02","TED novel fold AF-A0A1U7CK02-F1-model_v4_TED02"],["TED%3AAF-A0A1U7CMS9-F1-model_v4_TED03","TED novel fold AF-A0A1U7CMS9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1387353","Paludisphaera borealis"]]},{"id":"NCBITaxon:1387883","l":"Halomonas heilongjiangensis","na":2,"nb":1,"a":[["TED%3AAF-A0A2N7TG04-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N7TG04-F1-model_v4_TED02"],["TED%3AAF-A0A2N7TQ20-F1-model_v4_TED01","TED novel fold AF-A0A2N7TQ20-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1387883","Halomonas heilongjiangensis"]]},{"id":"NCBITaxon:1388749","l":"Campylobacter lari NCTC 11845","na":1,"nb":2,"a":[["TED%3AAF-A0A0A8HSL3-F1-model_v4_TED03","TED novel fold AF-A0A0A8HSL3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A201","Campylobacter lari"],["NCBITaxon%3A1388749","Campylobacter lari NCTC 11845"]]},{"id":"NCBITaxon:1395125","l":"Segatella salivae F0493","na":2,"nb":1,"a":[["TED%3AAF-U2L8Q3-F1-model_v4_TED01","TED novel fold AF-U2L8Q3-F1-model_v4_TED01"],["TED%3AAF-U2MGD9-F1-model_v4_TED01","TED novel fold AF-U2MGD9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1395125","Segatella salivae F0493"]]},{"id":"NCBITaxon:1395513","l":"Sporolactobacillus laevolacticus DSM 442","na":1,"nb":2,"a":[["TED%3AAF-V6IW76-F1-model_v4_TED02","TED highly-symmetric fold AF-V6IW76-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A33018","Sporolactobacillus laevolacticus"],["NCBITaxon%3A1395513","Sporolactobacillus laevolacticus DSM 442"]]},{"id":"NCBITaxon:1400861","l":"Candidatus Contendobacter odensis Run_B_J11","na":2,"nb":1,"a":[["TED%3AAF-A0A7U7GDL9-F1-model_v4_TED01","TED novel fold AF-A0A7U7GDL9-F1-model_v4_TED01"],["TED%3AAF-A0A7U7GE39-F1-model_v4_TED02","TED novel fold AF-A0A7U7GE39-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1400861","Candidatus Contendobacter odensis Run_B_J11"]]},{"id":"NCBITaxon:1402511","l":"Pseudomonas aeruginosa BWHPSA011","na":2,"nb":1,"a":[["Pfam%3APF21713","Cyclic GMP-AMP synthase, C-terminal domain"],["Pfam%3APF21654","Cyclic GMP-AMP synthase DncV-like, nucleotidyltransferase domain"]],"b":[["NCBITaxon%3A1402511","Pseudomonas aeruginosa BWHPSA011"]]},{"id":"NCBITaxon:1407071","l":"Acinetobacter sp. TGL-Y2","na":2,"nb":1,"a":[["TED%3AAF-A0A143G679-F1-model_v4_TED02","TED novel fold AF-A0A143G679-F1-model_v4_TED02"],["TED%3AAF-A0A145WVV8-F1-model_v4_TED01","TED novel fold AF-A0A145WVV8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1407071","Acinetobacter sp. TGL-Y2"]]},{"id":"NCBITaxon:1408250","l":"Cellulomonas cellasea DSM 20118","na":1,"nb":2,"a":[["TED%3AAF-A0A0A0BCT5-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A0A0BCT5-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A43670","Cellulomonas cellasea"],["NCBITaxon%3A1408250","Cellulomonas cellasea DSM 20118"]]},{"id":"NCBITaxon:1412874","l":"uncultured archaeon A07HR60","na":2,"nb":1,"a":[["TED%3AAF-V4XTB4-F1-model_v4_TED02","TED novel fold AF-V4XTB4-F1-model_v4_TED02"],["TED%3AAF-V4YHV6-F1-model_v4_TED01","TED novel fold AF-V4YHV6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1412874","uncultured archaeon A07HR60"]]},{"id":"NCBITaxon:1415166","l":"Nocardia nova SH22a","na":2,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_Lys_monoox","Mycobactin-type lysine N6-monooxygenase family"],["TED%3AAF-W5TML8-F1-model_v4_TED02","TED novel fold AF-W5TML8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1415166","Nocardia nova SH22a"]]},{"id":"NCBITaxon:1420591","l":"Novosphingobium barchaimii","na":1,"nb":2,"a":[["TED%3AAF-A0A561HW41-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A561HW41-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1420591","Novosphingobium barchaimii"],["NCBITaxon%3A1114963","Novosphingobium barchaimii LL02"]]},{"id":"NCBITaxon:1423734","l":"Agrilactobacillus composti DSM 18527 = JCM 14202","na":1,"nb":2,"a":[["TED%3AAF-X0PQH2-F1-model_v4_TED01","TED highly-symmetric fold AF-X0PQH2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A398555","Agrilactobacillus composti"],["NCBITaxon%3A1423734","Agrilactobacillus composti DSM 18527 = JCM 14202"]]},{"id":"NCBITaxon:1423735","l":"Lapidilactobacillus concavus DSM 17758","na":1,"nb":2,"a":[["TED%3AAF-A0A0R1VYU6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0R1VYU6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A287844","Lapidilactobacillus concavus"],["NCBITaxon%3A1423735","Lapidilactobacillus concavus DSM 17758"]]},{"id":"NCBITaxon:1423737","l":"Companilactobacillus crustorum JCM 15951","na":1,"nb":2,"a":[["TED%3AAF-A0A837RKZ0-F1-model_v4_TED01","TED novel fold AF-A0A837RKZ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A392416","Companilactobacillus crustorum"],["NCBITaxon%3A1423737","Companilactobacillus crustorum JCM 15951"]]},{"id":"NCBITaxon:1423743","l":"Lentilactobacillus farraginis DSM 18382 = JCM 14108","na":1,"nb":2,"a":[["TED%3AAF-X0PMJ3-F1-model_v4_TED01","TED highly-symmetric fold AF-X0PMJ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A390841","Lentilactobacillus farraginis"],["NCBITaxon%3A1423743","Lentilactobacillus farraginis DSM 18382 = JCM 14108"]]},{"id":"NCBITaxon:1423765","l":"Companilactobacillus kimchii DSM 13961 = JCM 10707","na":1,"nb":2,"a":[["TED%3AAF-A0A0R1I3Z1-F1-model_v4_TED01","TED novel fold AF-A0A0R1I3Z1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2801452","Companilactobacillus kimchii"],["NCBITaxon%3A1423765","Companilactobacillus kimchii DSM 13961 = JCM 10707"]]},{"id":"NCBITaxon:1423774","l":"Companilactobacillus nantensis DSM 16982","na":1,"nb":2,"a":[["TED%3AAF-A0A0R1WL06-F1-model_v4_TED01","TED novel fold AF-A0A0R1WL06-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A305793","Companilactobacillus nantensis"],["NCBITaxon%3A1423774","Companilactobacillus nantensis DSM 16982"]]},{"id":"NCBITaxon:1423792","l":"Schleiferilactobacillus perolens DSM 12744","na":1,"nb":2,"a":[["TED%3AAF-A0A0R1MPN9-F1-model_v4_TED03","TED novel fold AF-A0A0R1MPN9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A100468","Schleiferilactobacillus perolens"],["NCBITaxon%3A1423792","Schleiferilactobacillus perolens DSM 12744"]]},{"id":"NCBITaxon:1423806","l":"Liquorilactobacillus sucicola DSM 21376 = JCM 15457","na":1,"nb":2,"a":[["TED%3AAF-A0A023CYF4-F1-model_v4_TED02","TED novel fold AF-A0A023CYF4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A519050","Liquorilactobacillus sucicola"],["NCBITaxon%3A1423806","Liquorilactobacillus sucicola DSM 21376 = JCM 15457"]]},{"id":"NCBITaxon:1423810","l":"Lacticaseibacillus thailandensis DSM 22698 = JCM 13996","na":1,"nb":2,"a":[["TED%3AAF-A0A0R2C6X6-F1-model_v4_TED01","TED novel fold AF-A0A0R2C6X6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A381741","Lacticaseibacillus thailandensis"],["NCBITaxon%3A1423810","Lacticaseibacillus thailandensis DSM 22698 = JCM 13996"]]},{"id":"NCBITaxon:1431546","l":"Corynebacterium aquilae DSM 44791","na":1,"nb":2,"a":[["TED%3AAF-A0A1L7CFU4-F1-model_v4_TED03","TED novel fold AF-A0A1L7CFU4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A203263","Corynebacterium aquilae"],["NCBITaxon%3A1431546","Corynebacterium aquilae DSM 44791"]]},{"id":"NCBITaxon:1432052","l":"Eisenbergiella tayi","na":1,"nb":2,"a":[["TED%3AAF-A0A1E3UPB3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1E3UPB3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2652274","Eisenbergiella porci"],["NCBITaxon%3A1432052","Eisenbergiella tayi"]]},{"id":"NCBITaxon:1434842","l":"Sphingobacterium sp. JB170","na":2,"nb":1,"a":[["TED%3AAF-A0A1R4J3P6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1R4J3P6-F1-model_v4_TED01"],["TED%3AAF-A0A1R4KF03-F1-model_v4_TED01","TED novel fold AF-A0A1R4KF03-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1434842","Sphingobacterium sp. JB170"]]},{"id":"NCBITaxon:143495","l":"Aneurinibacillus thermoaerophilus","na":2,"nb":1,"a":[["Pfam%3APF05523","WxcM-like, C-terminal"],["TED%3AAF-A0A1G8FMF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G8FMF4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A143495","Aneurinibacillus thermoaerophilus"]]},{"id":"NCBITaxon:1435","l":"Bacillus thuringiensis serovar san diego","na":2,"nb":1,"a":[["Pfam%3APF03944","delta endotoxin"],["Pfam%3APF00555","delta endotoxin"]],"b":[["NCBITaxon%3A1435","Bacillus thuringiensis serovar san diego"]]},{"id":"NCBITaxon:1435051","l":"Bifidobacterium moukalabense DSM 27321","na":1,"nb":2,"a":[["TED%3AAF-W4N9D3-F1-model_v4_TED03","TED novel fold AF-W4N9D3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1333651","Bifidobacterium moukalabense"],["NCBITaxon%3A1435051","Bifidobacterium moukalabense DSM 27321"]]},{"id":"NCBITaxon:1437280","l":"Sphingobacterium yanglingense","na":2,"nb":1,"a":[["TED%3AAF-A0A4R6WGK7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4R6WGK7-F1-model_v4_TED02"],["TED%3AAF-A0A4R6WPH5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R6WPH5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1437280","Sphingobacterium yanglingense"]]},{"id":"NCBITaxon:1437824","l":"Castellaniella defragrans 65Phen","na":1,"nb":2,"a":[["Pfam%3APF18566","Linalool dehydratase/isomerase"]],"b":[["NCBITaxon%3A75697","Castellaniella defragrans"],["NCBITaxon%3A1437824","Castellaniella defragrans 65Phen"]]},{"id":"NCBITaxon:1440","l":"Bacillus thuringiensis serovar alesti","na":2,"nb":1,"a":[["Pfam%3APF20773","Immune inhibitor A-like, MAM domain"],["Pfam%3APF20774","Immune inhibitor A-like metallopeptidase, VEG domain"]],"b":[["NCBITaxon%3A1440","Bacillus thuringiensis serovar alesti"]]},{"id":"NCBITaxon:1441714","l":"-","na":2,"nb":1,"a":[["TED%3AAF-A0A2T1AGR1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2T1AGR1-F1-model_v4_TED02"],["TED%3AAF-A0A2T1AKH5-F1-model_v4_TED03","TED novel fold AF-A0A2T1AKH5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A134537","Paraburkholderia fungorum"]]},{"id":"NCBITaxon:1441930","l":"Chania multitudinisentens RB-25","na":1,"nb":2,"a":[["TED%3AAF-W0LKM6-F1-model_v4_TED03","TED highly-symmetric fold AF-W0LKM6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1639108","Chania multitudinisentens"],["NCBITaxon%3A1441930","Chania multitudinisentens RB-25"]]},{"id":"NCBITaxon:1444","l":"Bacillus thuringiensis serovar tenebrionis","na":1,"nb":2,"a":[["Pfam%3APF03945","delta endotoxin, N-terminal domain"]],"b":[["NCBITaxon%3A1444","Bacillus thuringiensis serovar tenebrionis"],["NCBITaxon%3A529121","Bacillus thuringiensis serovar tenebrionis str. YBT-1765"]]},{"id":"NCBITaxon:1447872","l":"Emergomyces pasteurianus Ep9510","na":2,"nb":1,"a":[["TED%3AAF-A0A1J9P8J4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1J9P8J4-F1-model_v4_TED01"],["TED%3AAF-A0A1J9PF03-F1-model_v4_TED01","TED novel fold AF-A0A1J9PF03-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1447872","Emergomyces pasteurianus Ep9510"]]},{"id":"NCBITaxon:1447875","l":"Helicocarpus griseus UAMH5409","na":2,"nb":1,"a":[["TED%3AAF-A0A2B7WG23-F1-model_v4_TED02","TED novel fold AF-A0A2B7WG23-F1-model_v4_TED02"],["TED%3AAF-A0A2B7XGI3-F1-model_v4_TED02","TED novel fold AF-A0A2B7XGI3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1447875","Helicocarpus griseus UAMH5409"]]},{"id":"NCBITaxon:1447883","l":"Polytolypa hystricis UAMH7299","na":2,"nb":1,"a":[["TED%3AAF-A0A2B7XF76-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2B7XF76-F1-model_v4_TED02"],["TED%3AAF-A0A2B7XVY8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2B7XVY8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1447883","Polytolypa hystricis UAMH7299"]]},{"id":"NCBITaxon:1448857","l":"Campylobacter corcagiensis","na":2,"nb":1,"a":[["TED%3AAF-A0A7M1LDD3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7M1LDD3-F1-model_v4_TED01"],["TED%3AAF-A0A7M1LDP4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7M1LDP4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1448857","Campylobacter corcagiensis"]]},{"id":"NCBITaxon:1449976","l":"Kutzneria viridogrisea DSM 43870","na":1,"nb":2,"a":[["TED%3AAF-W5WK35-F1-model_v4_TED01","TED novel fold AF-W5WK35-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A47990","Kutzneria viridogrisea"],["NCBITaxon%3A1449976","Kutzneria viridogrisea DSM 43870"]]},{"id":"NCBITaxon:1453500","l":"Schleiferia thermophila str. Yellowstone","na":2,"nb":1,"a":[["TED%3AAF-A0A085KZN4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085KZN4-F1-model_v4_TED01"],["TED%3AAF-A0A085L5S3-F1-model_v4_TED01","TED novel fold AF-A0A085L5S3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1453500","Schleiferia thermophila str. Yellowstone"]]},{"id":"NCBITaxon:1454006","l":"Siansivirga zeaxanthinifaciens CC-SAMT-1","na":1,"nb":2,"a":[["TED%3AAF-A0A0C5WPT2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0C5WPT2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A762954","Siansivirga zeaxanthinifaciens"],["NCBITaxon%3A1454006","Siansivirga zeaxanthinifaciens CC-SAMT-1"]]},{"id":"NCBITaxon:1459","l":"Sporosarcina globispora","na":1,"nb":2,"a":[["Pfam%3APF16990","Carbohydrate binding module (family 35)"]],"b":[["NCBITaxon%3A1459","Sporosarcina globispora"],["NCBITaxon%3A83428","uncultured Bacillus sp."]]},{"id":"NCBITaxon:146475","l":"Acetobacter cibinongensis","na":1,"nb":2,"a":[["TED%3AAF-A0A0D6N7J0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D6N7J0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A146475","Acetobacter cibinongensis"],["NCBITaxon%3A1307904","Acetobacter cibinongensis NRIC 0482"]]},{"id":"NCBITaxon:147645","l":"Paracoccus yeei","na":1,"nb":2,"a":[["TED%3AAF-A0A5P2QVK1-F1-model_v4_TED01","TED novel fold AF-A0A5P2QVK1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A147645","Paracoccus yeei"],["NCBITaxon%3A1446473","Paracoccus yeei ATCC BAA-599"]]},{"id":"NCBITaxon:1478131","l":"Streptomyces sp. L-9-10","na":2,"nb":1,"a":[["TED%3AAF-A0A4Q4DC23-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A4Q4DC23-F1-model_v4_TED03"],["TED%3AAF-A0A4Q4DRF2-F1-model_v4_TED03","TED novel fold AF-A0A4Q4DRF2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1478131","Streptomyces sp. L-9-10"]]},{"id":"NCBITaxon:1478174","l":"Neochlamydia sp. TUME1","na":1,"nb":2,"a":[["TED%3AAF-A0A0C1JMX6-F1-model_v4_TED04","TED novel fold AF-A0A0C1JMX6-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A3100387","Neochlamydia sp."],["NCBITaxon%3A1478174","Neochlamydia sp. TUME1"]]},{"id":"NCBITaxon:1486917","l":"Craspedostauros australis","na":2,"nb":1,"a":[["TED%3AAF-A0A7R9WX70-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7R9WX70-F1-model_v4_TED01"],["TED%3AAF-A0A7R9WUI6-F1-model_v4_TED01","TED novel fold AF-A0A7R9WUI6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1486917","Craspedostauros australis"]]},{"id":"NCBITaxon:149040","l":"Mollisia scopiformis","na":2,"nb":1,"a":[["TED%3AAF-A0A132B1T2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A132B1T2-F1-model_v4_TED01"],["TED%3AAF-A0A132B5X2-F1-model_v4_TED02","TED novel fold AF-A0A132B5X2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A149040","Mollisia scopiformis"]]},{"id":"NCBITaxon:1498","l":"Hathewaya histolytica","na":2,"nb":1,"a":[["Pfam%3APF18496","Collagenase G catalytic helper subdomain"],["Pfam%3APF08453","Peptidase family M9 N-terminal"]],"b":[["NCBITaxon%3A1498","Hathewaya histolytica"]]},{"id":"NCBITaxon:1499","l":"Ruminiclostridium josui","na":1,"nb":2,"a":[["PROSITE%3APS00747","Glutamyl-tRNA reductase signature"]],"b":[["NCBITaxon%3A1499","Ruminiclostridium josui"],["NCBITaxon%3A1291050","Ruminiclostridium josui JCM 17888"]]},{"id":"NCBITaxon:1502850","l":"Sphingopyxis sp. LC81","na":2,"nb":1,"a":[["TED%3AAF-A0A095BVH7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A095BVH7-F1-model_v4_TED01"],["TED%3AAF-A0A095D0J2-F1-model_v4_TED01","TED novel fold AF-A0A095D0J2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1502850","Sphingopyxis sp. LC81"]]},{"id":"NCBITaxon:1505037","l":"Emcibacter nanhaiensis","na":1,"nb":2,"a":[["TED%3AAF-A0A501PJX8-F1-model_v4_TED02","TED novel fold AF-A0A501PJX8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1505037","Emcibacter nanhaiensis"],["NCBITaxon%3A630535","Gracilibacillus marinus"]]},{"id":"NCBITaxon:1510197","l":"Streptomyces sp. PT12","na":1,"nb":2,"a":[["TED%3AAF-A0A365YRR4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A365YRR4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A1510197","Streptomyces sp. PT12"]]},{"id":"NCBITaxon:151035","l":"Euplotes harpa","na":2,"nb":1,"a":[["TED%3AAF-A0A7S3J944-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3J944-F1-model_v4_TED01"],["TED%3AAF-A0A7S3J5Z8-F1-model_v4_TED01","TED novel fold AF-A0A7S3J5Z8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A151035","Euplotes harpa"]]},{"id":"NCBITaxon:1510460","l":"Ascidiaceihabitans donghaensis","na":2,"nb":1,"a":[["TED%3AAF-A0A2R8BG13-F1-model_v4_TED01","TED novel fold AF-A0A2R8BG13-F1-model_v4_TED01"],["TED%3AAF-A0A2R8BGW8-F1-model_v4_TED02","TED novel fold AF-A0A2R8BGW8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1510460","Ascidiaceihabitans donghaensis"]]},{"id":"NCBITaxon:1510841","l":"Parasaccharibacter apium","na":1,"nb":2,"a":[["TED%3AAF-A0A2C6HKU2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2C6HKU2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1785988","Bombella apis"],["NCBITaxon%3A1510841","Parasaccharibacter apium"]]},{"id":"NCBITaxon:151783","l":"Cupriavidus campinensis","na":1,"nb":2,"a":[["TED%3AAF-A0A556UPV6-F1-model_v4_TED01","TED novel fold AF-A0A556UPV6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A151783","Cupriavidus campinensis"],["NCBITaxon%3A1706855","Deinococcus malanensis"]]},{"id":"NCBITaxon:1520810","l":"Butyrivibrio sp. Su6","na":2,"nb":1,"a":[["TED%3AAF-A0A1H5SCF6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H5SCF6-F1-model_v4_TED02"],["TED%3AAF-A0A1H5RWX6-F1-model_v4_TED02","TED novel fold AF-A0A1H5RWX6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1520810","Butyrivibrio sp. Su6"]]},{"id":"NCBITaxon:152142","l":"Mycolicibacterium holsaticum","na":1,"nb":2,"a":[["TED%3AAF-A0A1E3RVW1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E3RVW1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A152142","Mycolicibacterium holsaticum"],["NCBITaxon%3A1226752","Mycolicibacterium holsaticum DSM 44478 = JCM 12374"]]},{"id":"NCBITaxon:152263","l":"Xanthomonas cerealis pv. cerealis","na":1,"nb":2,"a":[["TED%3AAF-A0A514EFL3-F1-model_v4_TED01","TED novel fold AF-A0A514EFL3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A3390025","Xanthomonas cerealis"],["NCBITaxon%3A152263","Xanthomonas cerealis pv. cerealis"]]},{"id":"NCBITaxon:1524254","l":"Pseudohongiella acticola","na":2,"nb":1,"a":[["TED%3AAF-A0A1E8CF60-F1-model_v4_TED04","TED novel fold AF-A0A1E8CF60-F1-model_v4_TED04"],["TED%3AAF-A0A1E8CLK0-F1-model_v4_TED02","TED novel fold AF-A0A1E8CLK0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1524254","Pseudohongiella acticola"]]},{"id":"NCBITaxon:1525360","l":"Hymenobacter wooponensis","na":2,"nb":1,"a":[["TED%3AAF-A0A4Z0MMW4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Z0MMW4-F1-model_v4_TED02"],["TED%3AAF-A0A4Z0MGV5-F1-model_v4_TED01","TED novel fold AF-A0A4Z0MGV5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1525360","Hymenobacter wooponensis"]]},{"id":"NCBITaxon:1538158","l":"Rhizobium acidisoli","na":2,"nb":1,"a":[["TED%3AAF-A0A0N1DKC6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0N1DKC6-F1-model_v4_TED01"],["TED%3AAF-A0A0N1MDV0-F1-model_v4_TED01","TED novel fold AF-A0A0N1MDV0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1538158","Rhizobium acidisoli"]]},{"id":"NCBITaxon:1540082","l":"Acidianus sp. RZ1","na":1,"nb":2,"a":[["TED%3AAF-A0A7K4FX46-F1-model_v4_TED02","TED novel fold AF-A0A7K4FX46-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1540082","Acidianus sp. RZ1"],["NCBITaxon%3A1160895","Candidatus Acidianus copahuensis"]]},{"id":"NCBITaxon:1540520","l":"Kribbella italica","na":2,"nb":1,"a":[["TED%3AAF-A0A7W9J4H4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W9J4H4-F1-model_v4_TED02"],["TED%3AAF-A0A7W9JER4-F1-model_v4_TED01","TED novel fold AF-A0A7W9JER4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1540520","Kribbella italica"]]},{"id":"NCBITaxon:1541063","l":"Prolixibacter denitrificans","na":2,"nb":1,"a":[["TED%3AAF-A0A2P8CHN5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P8CHN5-F1-model_v4_TED01"],["TED%3AAF-A0A2P8CKY9-F1-model_v4_TED01","TED novel fold AF-A0A2P8CKY9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1541063","Prolixibacter denitrificans"]]},{"id":"NCBITaxon:1541960","l":"Candidatus Izimoplasma sp. HR2","na":2,"nb":1,"a":[["TED%3AAF-A0A094KWA0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A094KWA0-F1-model_v4_TED02"],["TED%3AAF-A0A094J3E5-F1-model_v4_TED01","TED novel fold AF-A0A094J3E5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1541960","Candidatus Izimoplasma sp. HR2"]]},{"id":"NCBITaxon:1547","l":"Thomasclavelia ramosa","na":1,"nb":2,"a":[["TED%3AAF-A0A3E3E4C4-F1-model_v4_TED02","TED novel fold AF-A0A3E3E4C4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1547","Thomasclavelia ramosa"],["NCBITaxon%3A445974","Thomasclavelia ramosa DSM 1402"]]},{"id":"NCBITaxon:1547597","l":"Sanguibacteroides justesenii","na":2,"nb":1,"a":[["TED%3AAF-A0A318NC13-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A318NC13-F1-model_v4_TED05"],["TED%3AAF-A0A318N2U5-F1-model_v4_TED04","TED novel fold AF-A0A318N2U5-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1547597","Sanguibacteroides justesenii"]]},{"id":"NCBITaxon:1548","l":"Clostridium scatologenes","na":2,"nb":1,"a":[["Pfam%3APF18671","4-Hydroxyphenylacetate decarboxylase subunit gamma N-terminal"],["Pfam%3APF18524","High potential iron-sulfur protein like"]],"b":[["NCBITaxon%3A1548","Clostridium scatologenes"]]},{"id":"NCBITaxon:1549748","l":"Kiloniella litopenaei","na":2,"nb":1,"a":[["TED%3AAF-A0A0M2R8I7-F1-model_v4_TED02","TED novel fold AF-A0A0M2R8I7-F1-model_v4_TED02"],["TED%3AAF-A0A0M2RGD3-F1-model_v4_TED01","TED novel fold AF-A0A0M2RGD3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1549748","Kiloniella litopenaei"]]},{"id":"NCBITaxon:1550024","l":"Ruthenibacterium lactatiformans","na":2,"nb":1,"a":[["TED%3AAF-A0A0D8IWE3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0D8IWE3-F1-model_v4_TED03"],["TED%3AAF-A0A0W7TUX1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0W7TUX1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1550024","Ruthenibacterium lactatiformans"]]},{"id":"NCBITaxon:1553448","l":"Falsigemmobacter intermedius","na":2,"nb":1,"a":[["TED%3AAF-A0A444M931-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A444M931-F1-model_v4_TED02"],["TED%3AAF-A0A444ME17-F1-model_v4_TED01","TED novel fold AF-A0A444ME17-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1553448","Falsigemmobacter intermedius"]]},{"id":"NCBITaxon:1561963","l":"Amorphochlora amoebiformis","na":2,"nb":1,"a":[["TED%3AAF-A0A7S0DJ05-F1-model_v4_TED02","TED novel fold AF-A0A7S0DJ05-F1-model_v4_TED02"],["TED%3AAF-A0A7S0DP28-F1-model_v4_TED01","TED novel fold AF-A0A7S0DP28-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1561963","Amorphochlora amoebiformis"]]},{"id":"NCBITaxon:1564487","l":"Herbinix hemicellulosilytica","na":2,"nb":1,"a":[["Pfam%3APF28350","Cas13a C-terminal HEPN-like domain"],["TED%3AAF-A0A3R9QDU8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3R9QDU8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1564487","Herbinix hemicellulosilytica"]]},{"id":"NCBITaxon:1566026","l":"Roseivirga seohaensis subsp. aquiponti","na":1,"nb":2,"a":[["TED%3AAF-A0A0L8AL15-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0L8AL15-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1914963","Roseivirga seohaensis"],["NCBITaxon%3A1566026","Roseivirga seohaensis subsp. aquiponti"]]},{"id":"NCBITaxon:1566287","l":"Dokdonia sp. Hel_I_53","na":1,"nb":2,"a":[["TED%3AAF-A0A559RRF6-F1-model_v4_TED01","TED novel fold AF-A0A559RRF6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024995","Dokdonia sp."],["NCBITaxon%3A1566287","Dokdonia sp. Hel_I_53"]]},{"id":"NCBITaxon:1569284","l":"Bdellovibrio sp. ArHS","na":2,"nb":1,"a":[["TED%3AAF-A0A0B8WL91-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0B8WL91-F1-model_v4_TED01"],["TED%3AAF-A0A0B8WXD6-F1-model_v4_TED01","TED novel fold AF-A0A0B8WXD6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1569284","Bdellovibrio sp. ArHS"]]},{"id":"NCBITaxon:156981","l":"Cellulomonas hominis","na":1,"nb":2,"a":[["TED%3AAF-A0A7Y9R8H3-F1-model_v4_TED06","TED novel fold AF-A0A7Y9R8H3-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A156981","Cellulomonas hominis"],["NCBITaxon%3A1305868","Cellulomonas hominis JCM 12133"]]},{"id":"NCBITaxon:1571199","l":"Bradyrhizobium sp. Leo170","na":2,"nb":1,"a":[["TED%3AAF-A0A4Q8QKG2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A4Q8QKG2-F1-model_v4_TED03"],["TED%3AAF-A0A4Q8R934-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q8R934-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1571199","Bradyrhizobium sp. Leo170"]]},{"id":"NCBITaxon:157538","l":"Leptomonas pyrrhocoris","na":2,"nb":1,"a":[["TED%3AAF-A0A0M9G8S4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0M9G8S4-F1-model_v4_TED01"],["TED%3AAF-A0A0M9G713-F1-model_v4_TED03","TED novel fold AF-A0A0M9G713-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A157538","Leptomonas pyrrhocoris"]]},{"id":"NCBITaxon:1576369","l":"Planctomicrobium piriforme","na":2,"nb":1,"a":[["TED%3AAF-A0A1I3L149-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I3L149-F1-model_v4_TED01"],["TED%3AAF-A0A1I3P1K5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1I3P1K5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1576369","Planctomicrobium piriforme"]]},{"id":"NCBITaxon:157782","l":"Pseudomonas parafulva","na":1,"nb":2,"a":[["TED%3AAF-A0A147GAW8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A147GAW8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A157782","Pseudomonas parafulva"],["NCBITaxon%3A1215114","Pseudomonas parafulva NBRC 16636 = DSM 17004"]]},{"id":"NCBITaxon:1581095","l":"Sphingobacterium sp. HMSC13C05","na":2,"nb":1,"a":[["TED%3AAF-A0A1F2K807-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F2K807-F1-model_v4_TED02"],["TED%3AAF-A0A1F2KFK1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F2KFK1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1581095","Sphingobacterium sp. HMSC13C05"]]},{"id":"NCBITaxon:158189","l":"Sphaerochaeta globosa str. Buddy","na":1,"nb":2,"a":[["TED%3AAF-F0RW27-F1-model_v4_TED03","TED novel fold AF-F0RW27-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1131703","Sphaerochaeta globosa"],["NCBITaxon%3A158189","Sphaerochaeta globosa str. Buddy"]]},{"id":"NCBITaxon:158190","l":"Sphaerochaeta pleomorpha str. Grapes","na":1,"nb":2,"a":[["TED%3AAF-G8QR79-F1-model_v4_TED02","TED novel fold AF-G8QR79-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1131707","Sphaerochaeta pleomorpha"],["NCBITaxon%3A158190","Sphaerochaeta pleomorpha str. Grapes"]]},{"id":"NCBITaxon:158607","l":"Diaporthe helianthi","na":2,"nb":1,"a":[["TED%3AAF-A0A2P5HTH0-F1-model_v4_TED03","TED novel fold AF-A0A2P5HTH0-F1-model_v4_TED03"],["TED%3AAF-A0A2P5I5U4-F1-model_v4_TED02","TED novel fold AF-A0A2P5I5U4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A158607","Diaporthe helianthi"]]},{"id":"NCBITaxon:158755","l":"uncultured Cytophagales bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A6J4ITQ0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6J4ITQ0-F1-model_v4_TED02"],["TED%3AAF-A0A6J4JM73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6J4JM73-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A158755","uncultured Cytophagales bacterium"]]},{"id":"NCBITaxon:158822","l":"Cedecea neteri","na":1,"nb":2,"a":[["TED%3AAF-A0A2X3IYC7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2X3IYC7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A158822","Cedecea neteri"],["NCBITaxon%3A1216978","Cedecea neteri NBRC 105707 = ATCC 33855"]]},{"id":"NCBITaxon:158841","l":"Leminorella richardii","na":1,"nb":2,"a":[["TED%3AAF-A0A2X4XJ45-F1-model_v4_TED01","TED novel fold AF-A0A2X4XJ45-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A158841","Leminorella richardii"],["NCBITaxon%3A1354266","Leminorella richardii ATCC 33998"]]},{"id":"NCBITaxon:1592327","l":"Actinobacteria bacterium OK074","na":2,"nb":1,"a":[["TED%3AAF-A0A0N0MT24-F1-model_v4_TED01","TED novel fold AF-A0A0N0MT24-F1-model_v4_TED01"],["TED%3AAF-A0A0N1FVZ1-F1-model_v4_TED01","TED novel fold AF-A0A0N1FVZ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1592327","Actinobacteria bacterium OK074"]]},{"id":"NCBITaxon:159449","l":"Embleya scabrispora","na":1,"nb":2,"a":[["TED%3AAF-A0A1T3P567-F1-model_v4_TED01","TED novel fold AF-A0A1T3P567-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A159449","Embleya scabrispora"],["NCBITaxon%3A1123320","Embleya scabrispora DSM 41855"]]},{"id":"NCBITaxon:159743","l":"Paenibacillus terrae","na":1,"nb":2,"a":[["TED%3AAF-A0A0D7WXS4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D7WXS4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A159743","Paenibacillus terrae"],["NCBITaxon%3A985665","Paenibacillus terrae HPL-003"]]},{"id":"NCBITaxon:1597977","l":"Spirosoma fluviale","na":2,"nb":1,"a":[["TED%3AAF-A0A286FEP1-F1-model_v4_TED03","TED novel fold AF-A0A286FEP1-F1-model_v4_TED03"],["TED%3AAF-A0A286GW32-F1-model_v4_TED01","TED novel fold AF-A0A286GW32-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1597977","Spirosoma fluviale"]]},{"id":"NCBITaxon:1603295","l":"Dothideomycetidae sp. 11243","na":2,"nb":1,"a":[["TED%3AAF-A0A0S6XE84-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S6XE84-F1-model_v4_TED01"],["TED%3AAF-A0A0S6XNK0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S6XNK0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1603295","Dothideomycetidae sp. 11243"]]},{"id":"NCBITaxon:160396","l":"Chryseobacterium defluvii","na":2,"nb":1,"a":[["TED%3AAF-A0A495S9U1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A495S9U1-F1-model_v4_TED01"],["TED%3AAF-A0A840KF89-F1-model_v4_TED02","TED novel fold AF-A0A840KF89-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A160396","Chryseobacterium defluvii"]]},{"id":"NCBITaxon:160799","l":"Paenibacillus borealis","na":2,"nb":1,"a":[["Pfam%3APF06165","Glycosyl hydrolase 94, supersandwich domain"],["Pfam%3APF17167","Glycosyl hydrolase 94 superfamily, catalytic domain"]],"b":[["NCBITaxon%3A160799","Paenibacillus borealis"]]},{"id":"NCBITaxon:160808","l":"Acidithiobacillus ferrivorans","na":1,"nb":2,"a":[["TED%3AAF-A0A060UTX4-F1-model_v4_TED01","TED novel fold AF-A0A060UTX4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A160808","Acidithiobacillus ferrivorans"],["NCBITaxon%3A743299","Acidithiobacillus ferrivorans SS3"]]},{"id":"NCBITaxon:1608400","l":"Algibacter amylolyticus","na":2,"nb":1,"a":[["TED%3AAF-A0A5M7BIX9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5M7BIX9-F1-model_v4_TED02"],["TED%3AAF-A0A5M7B9R4-F1-model_v4_TED01","TED novel fold AF-A0A5M7B9R4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1608400","Algibacter amylolyticus"]]},{"id":"NCBITaxon:1608957","l":"Euzebya pacifica","na":2,"nb":1,"a":[["TED%3AAF-A0A346Y3M1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A346Y3M1-F1-model_v4_TED02"],["TED%3AAF-A0A346Y0S8-F1-model_v4_TED01","TED novel fold AF-A0A346Y0S8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1608957","Euzebya pacifica"]]},{"id":"NCBITaxon:1612308","l":"Methylocapsa palsarum","na":2,"nb":1,"a":[["TED%3AAF-A0A1I4BSR3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I4BSR3-F1-model_v4_TED02"],["TED%3AAF-A0A1I3X4Y4-F1-model_v4_TED01","TED novel fold AF-A0A1I3X4Y4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1612308","Methylocapsa palsarum"]]},{"id":"NCBITaxon:161355","l":"Planomonospora parontospora subsp. sphaerica","na":1,"nb":2,"a":[["TED%3AAF-A0A161LJ98-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A161LJ98-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A58119","Planomonospora parontospora"],["NCBITaxon%3A161355","Planomonospora parontospora subsp. sphaerica"]]},{"id":"NCBITaxon:1617416","l":"Chloroflexi bacterium OLB15","na":2,"nb":1,"a":[["TED%3AAF-A0A136KZS9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A136KZS9-F1-model_v4_TED02"],["TED%3AAF-A0A136KZS9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A136KZS9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1617416","Chloroflexi bacterium OLB15"]]},{"id":"NCBITaxon:1618392","l":"Candidatus Collierbacteria bacterium GW2011_GWC2_44_18","na":2,"nb":1,"a":[["TED%3AAF-A0A0G1HR75-F1-model_v4_TED02","TED novel fold AF-A0A0G1HR75-F1-model_v4_TED02"],["TED%3AAF-A0A0G1HRP8-F1-model_v4_TED02","TED novel fold AF-A0A0G1HRP8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1618392","Candidatus Collierbacteria bacterium GW2011_GWC2_44_18"]]},{"id":"NCBITaxon:1618979","l":"Candidatus Uhrbacteria bacterium GW2011_GWA2_52_8d","na":2,"nb":1,"a":[["TED%3AAF-A0A0G1XJV8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G1XJV8-F1-model_v4_TED01"],["TED%3AAF-A0A0G1XPW5-F1-model_v4_TED01","TED novel fold AF-A0A0G1XPW5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618979","Candidatus Uhrbacteria bacterium GW2011_GWA2_52_8d"]]},{"id":"NCBITaxon:1619898","l":"Chlorobi bacterium OLB7","na":2,"nb":1,"a":[["TED%3AAF-A0A136PB26-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A136PB26-F1-model_v4_TED05"],["TED%3AAF-A0A136PC65-F1-model_v4_TED03","TED novel fold AF-A0A136PC65-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1619898","Chlorobi bacterium OLB7"]]},{"id":"NCBITaxon:1621989","l":"Candidatus Desulfofervidus auxilii","na":2,"nb":1,"a":[["TED%3AAF-A0A7C2A368-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C2A368-F1-model_v4_TED01"],["TED%3AAF-A0A7C0Y6H1-F1-model_v4_TED02","TED novel fold AF-A0A7C0Y6H1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1621989","Candidatus Desulfofervidus auxilii"]]},{"id":"NCBITaxon:162496","l":"Glutamicibacter creatinolyticus","na":1,"nb":2,"a":[["TED%3AAF-A0A5B7WZ71-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B7WZ71-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1701","Brevibacterium sp."],["NCBITaxon%3A162496","Glutamicibacter creatinolyticus"]]},{"id":"NCBITaxon:1628085","l":"Agathobaculum butyriciproducens","na":2,"nb":1,"a":[["TED%3AAF-A0A3E2Y033-F1-model_v4_TED01","TED novel fold AF-A0A3E2Y033-F1-model_v4_TED01"],["TED%3AAF-A0A3E2Y3F1-F1-model_v4_TED01","TED novel fold AF-A0A3E2Y3F1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1628085","Agathobaculum butyriciproducens"]]},{"id":"NCBITaxon:163","l":"Treponema bryantii","na":1,"nb":2,"a":[["TED%3AAF-A0A1I3JLL1-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A1I3JLL1-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A163","Treponema bryantii"],["NCBITaxon%3A877418","Treponema bryantii NK4A124"]]},{"id":"NCBITaxon:1630693","l":"Gemmata sp. SH-PL17","na":2,"nb":1,"a":[["TED%3AAF-A0A142XKF3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A142XKF3-F1-model_v4_TED01"],["TED%3AAF-A0A142XIQ8-F1-model_v4_TED02","TED novel fold AF-A0A142XIQ8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1630693","Gemmata sp. SH-PL17"]]},{"id":"NCBITaxon:1632859","l":"Arsukibacterium sp. MJ3","na":2,"nb":1,"a":[["TED%3AAF-A0A0M2VH42-F1-model_v4_TED02","TED novel fold AF-A0A0M2VH42-F1-model_v4_TED02"],["TED%3AAF-A0A0M2VJ55-F1-model_v4_TED01","TED novel fold AF-A0A0M2VJ55-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1632859","Arsukibacterium sp. MJ3"]]},{"id":"NCBITaxon:1632867","l":"Methylocucumis oryzae","na":2,"nb":1,"a":[["TED%3AAF-A0A0F3IKK7-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A0F3IKK7-F1-model_v4_TED04"],["TED%3AAF-A0A0F3IKK2-F1-model_v4_TED01","TED novel fold AF-A0A0F3IKK2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1632867","Methylocucumis oryzae"]]},{"id":"NCBITaxon:1639882","l":"Longimicrobium terrae","na":2,"nb":1,"a":[["TED%3AAF-A0A841GZH2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841GZH2-F1-model_v4_TED01"],["TED%3AAF-A0A841H2X8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841H2X8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1639882","Longimicrobium terrae"]]},{"id":"NCBITaxon:1640509","l":"Candidatus Rokubacteria bacterium CSP1-6","na":2,"nb":1,"a":[["TED%3AAF-A0A0T6A749-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0T6A749-F1-model_v4_TED01"],["TED%3AAF-A0A0T6AIY2-F1-model_v4_TED02","TED novel fold AF-A0A0T6AIY2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1640509","Candidatus Rokubacteria bacterium CSP1-6"]]},{"id":"NCBITaxon:1641165","l":"Halomicronema hongdechloris C2206","na":2,"nb":1,"a":[["TED%3AAF-A0A1Z3HJ02-F1-model_v4_TED01","TED novel fold AF-A0A1Z3HJ02-F1-model_v4_TED01"],["TED%3AAF-A0A1Z3HJU6-F1-model_v4_TED05","TED novel fold AF-A0A1Z3HJU6-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1641165","Halomicronema hongdechloris C2206"]]},{"id":"NCBITaxon:1654360","l":"Photobacterium galatheae","na":2,"nb":1,"a":[["TED%3AAF-A0A066RSN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A066RSN6-F1-model_v4_TED01"],["TED%3AAF-A0A066RLQ8-F1-model_v4_TED01","TED novel fold AF-A0A066RLQ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1654360","Photobacterium galatheae"]]},{"id":"NCBITaxon:1655638","l":"Peptococcaceae bacterium 1109","na":2,"nb":1,"a":[["TED%3AAF-A0A0J1DN64-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0J1DN64-F1-model_v4_TED02"],["TED%3AAF-A0A0J1DP87-F1-model_v4_TED01","TED novel fold AF-A0A0J1DP87-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1655638","Peptococcaceae bacterium 1109"]]},{"id":"NCBITaxon:1658618","l":"Rubritalea profundi","na":2,"nb":1,"a":[["TED%3AAF-A0A2S7TYC2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S7TYC2-F1-model_v4_TED01"],["TED%3AAF-A0A2S7TX30-F1-model_v4_TED01","TED novel fold AF-A0A2S7TX30-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1658618","Rubritalea profundi"]]},{"id":"NCBITaxon:1658672","l":"Ottowia sp. oral taxon 894","na":2,"nb":1,"a":[["TED%3AAF-A0A0K1NEW5-F1-model_v4_TED02","TED novel fold AF-A0A0K1NEW5-F1-model_v4_TED02"],["TED%3AAF-A0A0K1NFW6-F1-model_v4_TED03","TED novel fold AF-A0A0K1NFW6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1658672","Ottowia sp. oral taxon 894"]]},{"id":"NCBITaxon:1660102","l":"Hyphomicrobium sp. SCN 65-11","na":2,"nb":1,"a":[["TED%3AAF-A0A1E4CJA3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1E4CJA3-F1-model_v4_TED02"],["TED%3AAF-A0A1E4CUN4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1E4CUN4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1660102","Hyphomicrobium sp. SCN 65-11"]]},{"id":"NCBITaxon:1664694","l":"Cyphellophora attinorum","na":2,"nb":1,"a":[["TED%3AAF-A0A0N1H3E1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0N1H3E1-F1-model_v4_TED01"],["TED%3AAF-A0A0N1NVY1-F1-model_v4_TED01","TED novel fold AF-A0A0N1NVY1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1664694","Cyphellophora attinorum"]]},{"id":"NCBITaxon:1672391","l":"uncultured Chloroflexia bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A6J4I1X6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6J4I1X6-F1-model_v4_TED01"],["TED%3AAF-A0A6J4K868-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6J4K868-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1672391","uncultured Chloroflexia bacterium"]]},{"id":"NCBITaxon:1672749","l":"Xaviernesmea rhizosphaerae","na":2,"nb":1,"a":[["TED%3AAF-A0A1Q9AN22-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q9AN22-F1-model_v4_TED01"],["TED%3AAF-A0A1Q9AMN0-F1-model_v4_TED01","TED novel fold AF-A0A1Q9AMN0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1672749","Xaviernesmea rhizosphaerae"]]},{"id":"NCBITaxon:1678012","l":"Streptomyces monashensis","na":2,"nb":1,"a":[["TED%3AAF-A0A1S2QRY7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S2QRY7-F1-model_v4_TED01"],["TED%3AAF-A0A1S2PJL5-F1-model_v4_TED02","TED novel fold AF-A0A1S2PJL5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1678012","Streptomyces monashensis"]]},{"id":"NCBITaxon:167968","l":"uncultured Desulfovibrio sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A212J776-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A212J776-F1-model_v4_TED02"],["TED%3AAF-A0A212L6P7-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A212L6P7-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A167968","uncultured Desulfovibrio sp."]]},{"id":"NCBITaxon:1691940","l":"Clostridium luticellarii","na":2,"nb":1,"a":[["TED%3AAF-A0A2T0BQR6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T0BQR6-F1-model_v4_TED01"],["TED%3AAF-A0A2T0BNQ9-F1-model_v4_TED01","TED novel fold AF-A0A2T0BNQ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1691940","Clostridium luticellarii"]]},{"id":"NCBITaxon:1693","l":"Bifidobacterium minimum","na":1,"nb":2,"a":[["TED%3AAF-A0A087BMT5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A087BMT5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1693","Bifidobacterium minimum"],["NCBITaxon%3A1121109","Bifidobacterium minimum DSM 20102"]]},{"id":"NCBITaxon:169480","l":"Rothia amarae","na":1,"nb":2,"a":[["TED%3AAF-A0A7H2BI57-F1-model_v4_TED03","TED novel fold AF-A0A7H2BI57-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1207057","Ottowia beijingensis"],["NCBITaxon%3A169480","Rothia amarae"]]},{"id":"NCBITaxon:169679","l":"Clostridium saccharobutylicum","na":1,"nb":2,"a":[["Pfam%3APF13290","Chitobiase/beta-hexosaminidase C-terminal domain"]],"b":[["NCBITaxon%3A169679","Clostridium saccharobutylicum"],["NCBITaxon%3A1345695","Clostridium saccharobutylicum DSM 13864"]]},{"id":"NCBITaxon:1698277","l":"candidate division MSBL1 archaeon SCGC-AAA261O19","na":2,"nb":1,"a":[["TED%3AAF-A0A133VCK7-F1-model_v4_TED01","TED novel fold AF-A0A133VCK7-F1-model_v4_TED01"],["TED%3AAF-A0A133VCN5-F1-model_v4_TED01","TED novel fold AF-A0A133VCN5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1698277","candidate division MSBL1 archaeon SCGC-AAA261O19"]]},{"id":"NCBITaxon:1703345","l":"Niastella vici","na":2,"nb":1,"a":[["TED%3AAF-A0A1V9FWX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V9FWX7-F1-model_v4_TED01"],["TED%3AAF-A0A1V9G1L1-F1-model_v4_TED02","TED novel fold AF-A0A1V9G1L1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1703345","Niastella vici"]]},{"id":"NCBITaxon:1703397","l":"Deltaproteobacteria bacterium DG_8","na":2,"nb":1,"a":[["TED%3AAF-A0A0S7X9Q5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0S7X9Q5-F1-model_v4_TED02"],["TED%3AAF-A0A0S7X820-F1-model_v4_TED01","TED novel fold AF-A0A0S7X820-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1703397","Deltaproteobacteria bacterium DG_8"]]},{"id":"NCBITaxon:1703413","l":"Planctomycetes bacterium DG_20","na":2,"nb":1,"a":[["TED%3AAF-A0A0S7YKG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S7YKG8-F1-model_v4_TED01"],["TED%3AAF-A0A0S7YRG6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S7YRG6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1703413","Planctomycetes bacterium DG_20"]]},{"id":"NCBITaxon:1703781","l":"Latescibacteria bacterium DG_63","na":2,"nb":1,"a":[["TED%3AAF-A0A0S7XAJ5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0S7XAJ5-F1-model_v4_TED03"],["TED%3AAF-A0A0S7X9E4-F1-model_v4_TED01","TED novel fold AF-A0A0S7X9E4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1703781","Latescibacteria bacterium DG_63"]]},{"id":"NCBITaxon:1704028","l":"Planctomycetes bacterium SM23_25","na":2,"nb":1,"a":[["TED%3AAF-A0A0S8E147-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S8E147-F1-model_v4_TED01"],["TED%3AAF-A0A0S8EDG7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S8EDG7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1704028","Planctomycetes bacterium SM23_25"]]},{"id":"NCBITaxon:1704499","l":"Methylovulum psychrotolerans","na":2,"nb":1,"a":[["TED%3AAF-A0A2S5CPZ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5CPZ3-F1-model_v4_TED01"],["TED%3AAF-A0A1Z4BUX9-F1-model_v4_TED02","TED novel fold AF-A0A1Z4BUX9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1704499","Methylovulum psychrotolerans"]]},{"id":"NCBITaxon:170673","l":"Vibrio kanaloae","na":1,"nb":2,"a":[["TED%3AAF-A0A4U1Z3U9-F1-model_v4_TED01","TED novel fold AF-A0A4U1Z3U9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A170673","Vibrio kanaloae"],["NCBITaxon%3A1191299","Vibrio kanaloae 5S-149"]]},{"id":"NCBITaxon:1707093","l":"Heyndrickxia camelliae","na":2,"nb":1,"a":[["TED%3AAF-A0A2N3LKI2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3LKI2-F1-model_v4_TED01"],["TED%3AAF-A0A2N3LJD8-F1-model_v4_TED01","TED novel fold AF-A0A2N3LJD8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1707093","Heyndrickxia camelliae"]]},{"id":"NCBITaxon:171282","l":"Mycoplasmopsis columboralis","na":1,"nb":2,"a":[["TED%3AAF-A0A449B6Z6-F1-model_v4_TED01","TED novel fold AF-A0A449B6Z6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A171282","Mycoplasmopsis columboralis"],["NCBITaxon%3A1408458","Mycoplasmopsis columboralis ATCC 29258"]]},{"id":"NCBITaxon:1714254","l":"Caldivirga sp. JCHS_4","na":2,"nb":1,"a":[["TED%3AAF-A0A101XLH7-F1-model_v4_TED01","TED novel fold AF-A0A101XLH7-F1-model_v4_TED01"],["TED%3AAF-A0A124IVB1-F1-model_v4_TED02","TED novel fold AF-A0A124IVB1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1714254","Caldivirga sp. JCHS_4"]]},{"id":"NCBITaxon:1718998","l":"Streptomyces sp. TSRI0281","na":2,"nb":1,"a":[["TED%3AAF-A0A1Q4ZJ45-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q4ZJ45-F1-model_v4_TED01"],["TED%3AAF-A0A1Q4Z284-F1-model_v4_TED01","TED novel fold AF-A0A1Q4Z284-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1718998","Streptomyces sp. TSRI0281"]]},{"id":"NCBITaxon:172044","l":"Sphingomonas yabuuchiae","na":1,"nb":2,"a":[["TED%3AAF-A0A147IMF7-F1-model_v4_TED02","TED novel fold AF-A0A147IMF7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A172044","Sphingomonas yabuuchiae"],["NCBITaxon%3A1508805","Sphingorhabdus buctiana"]]},{"id":"NCBITaxon:172045","l":"Elizabethkingia miricola","na":1,"nb":2,"a":[["TED%3AAF-A0A0D5BKG2-F1-model_v4_TED01","TED novel fold AF-A0A0D5BKG2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A238","Elizabethkingia meningoseptica"],["NCBITaxon%3A172045","Elizabethkingia miricola"]]},{"id":"NCBITaxon:173366","l":"Methylocystis rosea","na":1,"nb":2,"a":[["TED%3AAF-A0A6B8LTI5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6B8LTI5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A173366","Methylocystis rosea"],["NCBITaxon%3A1132444","Methylocystis rosea SV97"]]},{"id":"NCBITaxon:1734395","l":"Desulfitibacter sp. BRH_c19","na":2,"nb":1,"a":[["TED%3AAF-A0A124IG40-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A124IG40-F1-model_v4_TED01"],["TED%3AAF-A0A124IHE3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A124IHE3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1734395","Desulfitibacter sp. BRH_c19"]]},{"id":"NCBITaxon:1734398","l":"Gracilibacter sp. BRH_c7a","na":2,"nb":1,"a":[["TED%3AAF-A0A101VP94-F1-model_v4_TED01","TED novel fold AF-A0A101VP94-F1-model_v4_TED01"],["TED%3AAF-A0A117SDZ2-F1-model_v4_TED01","TED novel fold AF-A0A117SDZ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1734398","Gracilibacter sp. BRH_c7a"]]},{"id":"NCBITaxon:1735676","l":"Sphingomonas sp. Leaf10","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q4DHC6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0Q4DHC6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A28214","Sphingomonas sp."],["NCBITaxon%3A1735676","Sphingomonas sp. Leaf10"]]},{"id":"NCBITaxon:1735677","l":"Microbacterium sp. Leaf203","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q4DGD5-F1-model_v4_TED02","TED novel fold AF-A0A0Q4DGD5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A51671","Microbacterium sp."],["NCBITaxon%3A1735677","Microbacterium sp. Leaf203"]]},{"id":"NCBITaxon:1735692","l":"Sphingomonas sp. Leaf25","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q4IJQ9-F1-model_v4_TED03","TED novel fold AF-A0A0Q4IJQ9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A28214","Sphingomonas sp."],["NCBITaxon%3A1735692","Sphingomonas sp. Leaf25"]]},{"id":"NCBITaxon:1736139","l":"Kocuria subflava","na":1,"nb":2,"a":[["TED%3AAF-A0A846U4G8-F1-model_v4_TED01","TED novel fold AF-A0A846U4G8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1871328","Kocuria sp."],["NCBITaxon%3A1736139","Kocuria subflava"]]},{"id":"NCBITaxon:1736213","l":"Sphingomonas sp. Leaf30","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q4JRM2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0Q4JRM2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A28214","Sphingomonas sp."],["NCBITaxon%3A1736213","Sphingomonas sp. Leaf30"]]},{"id":"NCBITaxon:1736230","l":"Sphingomonas sp. Leaf67","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q4PM00-F1-model_v4_TED01","TED novel fold AF-A0A0Q4PM00-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28214","Sphingomonas sp."],["NCBITaxon%3A1736230","Sphingomonas sp. Leaf67"]]},{"id":"NCBITaxon:1736232","l":"Arthrobacter sp. Leaf69","na":1,"nb":2,"a":[["TED%3AAF-A0A0S9BSZ3-F1-model_v4_TED01","TED novel fold AF-A0A0S9BSZ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1667","Arthrobacter sp."],["NCBITaxon%3A1736232","Arthrobacter sp. Leaf69"]]},{"id":"NCBITaxon:1736241","l":"Methylobacterium sp. Leaf85","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q4UFR1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q4UFR1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A409","Methylobacterium sp."],["NCBITaxon%3A1736241","Methylobacterium sp. Leaf85"]]},{"id":"NCBITaxon:1736267","l":"Pseudomonas sp. Leaf127","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q5FPX8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0Q5FPX8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A1736267","Pseudomonas sp. Leaf127"]]},{"id":"NCBITaxon:1736286","l":"Pedobacter sp. Leaf176","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q5NJJ8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0Q5NJJ8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1411316","Pedobacter sp."],["NCBITaxon%3A1736286","Pedobacter sp. Leaf176"]]},{"id":"NCBITaxon:1736339","l":"Cellulomonas sp. Leaf334","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q5J3M3-F1-model_v4_TED02","TED novel fold AF-A0A0Q5J3M3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A40001","Cellulomonas sp."],["NCBITaxon%3A1736339","Cellulomonas sp. Leaf334"]]},{"id":"NCBITaxon:1736351","l":"Flavobacterium sp. Leaf359","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q5UMD8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q5UMD8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A239","Flavobacterium sp."],["NCBITaxon%3A1736351","Flavobacterium sp. Leaf359"]]},{"id":"NCBITaxon:1736353","l":"Brevundimonas sp. Leaf363","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q5VGL5-F1-model_v4_TED01","TED novel fold AF-A0A0Q5VGL5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1871086","Brevundimonas sp."],["NCBITaxon%3A1736353","Brevundimonas sp. Leaf363"]]},{"id":"NCBITaxon:1736361","l":"Chryseobacterium sp. Leaf394","na":1,"nb":2,"a":[["TED%3AAF-A0A0T0M6Q0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0T0M6Q0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1871047","Chryseobacterium sp."],["NCBITaxon%3A1736361","Chryseobacterium sp. Leaf394"]]},{"id":"NCBITaxon:1736362","l":"Cellulomonas sp. Leaf395","na":1,"nb":2,"a":[["TED%3AAF-A0A0T0MKR8-F1-model_v4_TED01","TED novel fold AF-A0A0T0MKR8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A40001","Cellulomonas sp."],["NCBITaxon%3A1736362","Cellulomonas sp. Leaf395"]]},{"id":"NCBITaxon:1736378","l":"Aurantimonas sp. Leaf443","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q6EX14-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A0Q6EX14-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1872654","Aurantimonas sp."],["NCBITaxon%3A1736378","Aurantimonas sp. Leaf443"]]},{"id":"NCBITaxon:1736380","l":"Rhizobium sp. Leaf453","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q6GSI8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q6GSI8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A391","Rhizobium sp."],["NCBITaxon%3A1736380","Rhizobium sp. Leaf453"]]},{"id":"NCBITaxon:1736423","l":"Devosia sp. Root105","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q6NWX9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q6NWX9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1871048","Devosia sp."],["NCBITaxon%3A1736423","Devosia sp. Root105"]]},{"id":"NCBITaxon:1736431","l":"Nocardioides sp. Root122","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q6VQ53-F1-model_v4_TED01","TED novel fold AF-A0A0Q6VQ53-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A35761","Nocardioides sp."],["NCBITaxon%3A1736431","Nocardioides sp. Root122"]]},{"id":"NCBITaxon:1736436","l":"Afipia sp. Root123D2","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q6Z3G8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q6Z3G8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1871052","Afipia sp."],["NCBITaxon%3A1736436","Afipia sp. Root123D2"]]},{"id":"NCBITaxon:1736471","l":"Duganella sp. Root1480D1","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q7XEM4-F1-model_v4_TED01","TED novel fold AF-A0A0Q7XEM4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1904440","Duganella sp."],["NCBITaxon%3A1736471","Duganella sp. Root1480D1"]]},{"id":"NCBITaxon:1736482","l":"Rhodanobacter sp. Root179","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q8MB65-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0Q8MB65-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1883446","Rhodanobacter sp."],["NCBITaxon%3A1736482","Rhodanobacter sp. Root179"]]},{"id":"NCBITaxon:1736491","l":"Sphingopyxis sp. Root214","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q8S0P9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q8S0P9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1908224","Sphingopyxis sp."],["NCBITaxon%3A1736491","Sphingopyxis sp. Root214"]]},{"id":"NCBITaxon:1736501","l":"Sphingomonas sp. Root241","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q8XHQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q8XHQ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28214","Sphingomonas sp."],["NCBITaxon%3A1736501","Sphingomonas sp. Root241"]]},{"id":"NCBITaxon:1736511","l":"Rhizobacter sp. Root29","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q6MMM8-F1-model_v4_TED02","TED novel fold AF-A0A0Q6MMM8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1909292","Rhizobacter sp."],["NCBITaxon%3A1736511","Rhizobacter sp. Root29"]]},{"id":"NCBITaxon:1736517","l":"Massilia sp. Root335","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q6SWW0-F1-model_v4_TED03","TED novel fold AF-A0A0Q6SWW0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1882437","Massilia sp."],["NCBITaxon%3A1736517","Massilia sp. Root335"]]},{"id":"NCBITaxon:1736532","l":"Massilia sp. Root418","na":2,"nb":1,"a":[["TED%3AAF-A0A0Q7EKH3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0Q7EKH3-F1-model_v4_TED02"],["TED%3AAF-A0A0Q7ERD3-F1-model_v4_TED02","TED novel fold AF-A0A0Q7ERD3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1736532","Massilia sp. Root418"]]},{"id":"NCBITaxon:1736533","l":"Flavobacterium sp. Root420","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q7FJW1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q7FJW1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A239","Flavobacterium sp."],["NCBITaxon%3A1736533","Flavobacterium sp. Root420"]]},{"id":"NCBITaxon:1736539","l":"Angustibacter sp. Root456","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q7JT80-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q7JT80-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1871064","Angustibacter sp."],["NCBITaxon%3A1736539","Angustibacter sp. Root456"]]},{"id":"NCBITaxon:1736546","l":"Cellulomonas sp. Root485","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q7MAF1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q7MAF1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A40001","Cellulomonas sp."],["NCBITaxon%3A1736546","Cellulomonas sp. Root485"]]},{"id":"NCBITaxon:1736550","l":"Aeromicrobium sp. Root495","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q7QLK8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0Q7QLK8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1871063","Aeromicrobium sp."],["NCBITaxon%3A1736550","Aeromicrobium sp. Root495"]]},{"id":"NCBITaxon:1736604","l":"Pseudomonas sp. Root9","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q8ZAK6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A0Q8ZAK6-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A1736604","Pseudomonas sp. Root9"]]},{"id":"NCBITaxon:1736605","l":"Flavobacterium sp. Root901","na":1,"nb":2,"a":[["TED%3AAF-A0A0Q8ZZQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q8ZZQ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A239","Flavobacterium sp."],["NCBITaxon%3A1736605","Flavobacterium sp. Root901"]]},{"id":"NCBITaxon:1742858","l":"Chryseobacterium sp. JAH","na":2,"nb":1,"a":[["TED%3AAF-A0A101C883-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A101C883-F1-model_v4_TED02"],["TED%3AAF-A0A117K7K3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A117K7K3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1742858","Chryseobacterium sp. JAH"]]},{"id":"NCBITaxon:1743174","l":"Polynucleobacter tropicus","na":1,"nb":2,"a":[["TED%3AAF-A0A6M9Q7P4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6M9Q7P4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1743163","Polynucleobacter campilacus"],["NCBITaxon%3A1743174","Polynucleobacter tropicus"]]},{"id":"NCBITaxon:1754191","l":"Piromyces finnis","na":2,"nb":1,"a":[["TED%3AAF-A0A1Y1UXN1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1Y1UXN1-F1-model_v4_TED03"],["TED%3AAF-A0A1Y1VE46-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y1VE46-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1754191","Piromyces finnis"]]},{"id":"NCBITaxon:1755241","l":"Anaerococcus nagyae","na":1,"nb":2,"a":[["TED%3AAF-A0A3E2TFG5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3E2TFG5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1755241","Anaerococcus nagyae"],["NCBITaxon%3A1872515","Anaerococcus sp."]]},{"id":"NCBITaxon:1758642","l":"Bacillus sp. V59.32b","na":2,"nb":1,"a":[["TED%3AAF-A0A3E2JA02-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3E2JA02-F1-model_v4_TED01"],["TED%3AAF-A0A3E2JWN3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3E2JWN3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1758642","Bacillus sp. V59.32b"]]},{"id":"NCBITaxon:1761874","l":"Paenibacillus sp. 453mf","na":2,"nb":1,"a":[["TED%3AAF-A0A1I6QRZ1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I6QRZ1-F1-model_v4_TED01"],["TED%3AAF-A0A1I6TGS5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I6TGS5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1761874","Paenibacillus sp. 453mf"]]},{"id":"NCBITaxon:1764569","l":"Acaryochloris thomasi RCC1774","na":2,"nb":1,"a":[["TED%3AAF-A0A2W1JLP0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2W1JLP0-F1-model_v4_TED02"],["TED%3AAF-A0A2W1K3W8-F1-model_v4_TED01","TED novel fold AF-A0A2W1K3W8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1764569","Acaryochloris thomasi RCC1774"]]},{"id":"NCBITaxon:1765049","l":"Azospira sp. I09","na":2,"nb":1,"a":[["TED%3AAF-A0A5H2YUS6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5H2YUS6-F1-model_v4_TED01"],["TED%3AAF-A0A5H2YE29-F1-model_v4_TED02","TED novel fold AF-A0A5H2YE29-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1765049","Azospira sp. I09"]]},{"id":"NCBITaxon:1768114","l":"Candidatus Hemicellulosilyticus sp. F083","na":2,"nb":1,"a":[["TED%3AAF-A0A132HC91-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A132HC91-F1-model_v4_TED01"],["TED%3AAF-A0A132I168-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A132I168-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1768114","Candidatus Hemicellulosilyticus sp. F083"]]},{"id":"NCBITaxon:1769296","l":"Candidatus Methanomethylophilus sp. 1R26","na":2,"nb":1,"a":[["TED%3AAF-A0A0W7TGP4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0W7TGP4-F1-model_v4_TED01"],["TED%3AAF-A0A0W7TK49-F1-model_v4_TED01","TED novel fold AF-A0A0W7TK49-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1769296","Candidatus Methanomethylophilus sp. 1R26"]]},{"id":"NCBITaxon:177437","l":"Desulforapulum autotrophicum HRM2","na":1,"nb":2,"a":[["TED%3AAF-C0QA36-F1-model_v4_TED03","TED novel fold AF-C0QA36-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2296","Desulforapulum autotrophicum"],["NCBITaxon%3A177437","Desulforapulum autotrophicum HRM2"]]},{"id":"NCBITaxon:1775674","l":"Candidatus Aegiribacteria sp. MLS_C","na":2,"nb":1,"a":[["TED%3AAF-A0A1V4MWG7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V4MWG7-F1-model_v4_TED02"],["TED%3AAF-A0A1V4MY69-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V4MY69-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1775674","Candidatus Aegiribacteria sp. MLS_C"]]},{"id":"NCBITaxon:1775675","l":"Firmicutes bacterium ML8_F2","na":2,"nb":1,"a":[["TED%3AAF-A0A1V4M7X3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1V4M7X3-F1-model_v4_TED03"],["TED%3AAF-A0A1V4M534-F1-model_v4_TED01","TED novel fold AF-A0A1V4M534-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1775675","Firmicutes bacterium ML8_F2"]]},{"id":"NCBITaxon:1775910","l":"Methylobacterium indicum","na":2,"nb":1,"a":[["TED%3AAF-A0A0J6R755-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0J6R755-F1-model_v4_TED02"],["TED%3AAF-A0A0J6RUM1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0J6RUM1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1775910","Methylobacterium indicum"]]},{"id":"NCBITaxon:1778672","l":"Novosphingobium flavum","na":2,"nb":1,"a":[["TED%3AAF-A0A7X1FQ38-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X1FQ38-F1-model_v4_TED01"],["TED%3AAF-A0A7X1KN98-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X1KN98-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1778672","Novosphingobium flavum"]]},{"id":"NCBITaxon:178399","l":"Marinomonas primoryensis","na":2,"nb":1,"a":[["TED%3AAF-A0A2Z4PVF9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z4PVF9-F1-model_v4_TED01"],["TED%3AAF-A0A2Z4PW34-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2Z4PW34-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A178399","Marinomonas primoryensis"]]},{"id":"NCBITaxon:179408","l":"Phormidium nigroviride PCC 7112","na":2,"nb":1,"a":[["TED%3AAF-K9VAQ4-F1-model_v4_TED02","TED highly-symmetric fold AF-K9VAQ4-F1-model_v4_TED02"],["TED%3AAF-K9VBA8-F1-model_v4_TED02","TED novel fold AF-K9VBA8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A179408","Phormidium nigroviride PCC 7112"]]},{"id":"NCBITaxon:1797182","l":"Acidobacteria bacterium RIFCSPLOWO2_02_FULL_65_29","na":2,"nb":1,"a":[["TED%3AAF-A0A1F2U0F4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F2U0F4-F1-model_v4_TED01"],["TED%3AAF-A0A1F2UBX0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F2UBX0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797182","Acidobacteria bacterium RIFCSPLOWO2_02_FULL_65_29"]]},{"id":"NCBITaxon:1797191","l":"Acidobacteria bacterium RIFCSPLOWO2_12_FULL_66_21","na":2,"nb":1,"a":[["TED%3AAF-A0A1F2TD39-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F2TD39-F1-model_v4_TED01"],["TED%3AAF-A0A1F2TJD6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F2TJD6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797191","Acidobacteria bacterium RIFCSPLOWO2_12_FULL_66_21"]]},{"id":"NCBITaxon:1797313","l":"Bacteroidetes bacterium GWA2_30_7","na":2,"nb":1,"a":[["TED%3AAF-A0A1F3DGK7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F3DGK7-F1-model_v4_TED01"],["TED%3AAF-A0A1F3E425-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F3E425-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797313","Bacteroidetes bacterium GWA2_30_7"]]},{"id":"NCBITaxon:1797364","l":"Bacteroidetes bacterium RIFCSPLOWO2_12_FULL_35_15","na":2,"nb":1,"a":[["TED%3AAF-A0A1F3PYF3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F3PYF3-F1-model_v4_TED01"],["TED%3AAF-A0A1F3Q4V2-F1-model_v4_TED03","TED novel fold AF-A0A1F3Q4V2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1797364","Bacteroidetes bacterium RIFCSPLOWO2_12_FULL_35_15"]]},{"id":"NCBITaxon:1797384","l":"Bdellovibrionales bacterium GWA2_49_15","na":2,"nb":1,"a":[["TED%3AAF-A0A1F3SPP1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F3SPP1-F1-model_v4_TED02"],["TED%3AAF-A0A1F3SSW7-F1-model_v4_TED03","TED novel fold AF-A0A1F3SSW7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1797384","Bdellovibrionales bacterium GWA2_49_15"]]},{"id":"NCBITaxon:1797396","l":"Bdellovibrionales bacterium RIFOXYC1_FULL_39_130","na":2,"nb":1,"a":[["TED%3AAF-A0A1F3V2D7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1F3V2D7-F1-model_v4_TED03"],["TED%3AAF-A0A1F3VI80-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F3VI80-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797396","Bdellovibrionales bacterium RIFOXYC1_FULL_39_130"]]},{"id":"NCBITaxon:1797403","l":"Bdellovibrionales bacterium RIFOXYD1_FULL_53_11","na":2,"nb":1,"a":[["TED%3AAF-A0A1F3XT58-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1F3XT58-F1-model_v4_TED03"],["TED%3AAF-A0A1F3Y1B7-F1-model_v4_TED01","TED novel fold AF-A0A1F3Y1B7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797403","Bdellovibrionales bacterium RIFOXYD1_FULL_53_11"]]},{"id":"NCBITaxon:1797675","l":"Chloroflexi bacterium RIFOXYD12_FULL_57_15","na":2,"nb":1,"a":[["TED%3AAF-A0A1F8TTA5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F8TTA5-F1-model_v4_TED02"],["TED%3AAF-A0A1F8U4I7-F1-model_v4_TED01","TED novel fold AF-A0A1F8U4I7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797675","Chloroflexi bacterium RIFOXYD12_FULL_57_15"]]},{"id":"NCBITaxon:1797922","l":"Elusimicrobia bacterium GWA2_56_46","na":2,"nb":1,"a":[["TED%3AAF-A0A1F9QR23-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F9QR23-F1-model_v4_TED01"],["TED%3AAF-A0A1F9QR31-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F9QR31-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797922","Elusimicrobia bacterium GWA2_56_46"]]},{"id":"NCBITaxon:1797927","l":"Elusimicrobia bacterium GWA2_69_24","na":2,"nb":1,"a":[["TED%3AAF-A0A1F9RRG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F9RRG8-F1-model_v4_TED01"],["TED%3AAF-A0A1F9S3D2-F1-model_v4_TED01","TED novel fold AF-A0A1F9S3D2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797927","Elusimicrobia bacterium GWA2_69_24"]]},{"id":"NCBITaxon:1797973","l":"Elusimicrobia bacterium RIFOXYD2_FULL_34_15","na":2,"nb":1,"a":[["TED%3AAF-A0A1F9YV72-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F9YV72-F1-model_v4_TED01"],["TED%3AAF-A0A1F9Z4J2-F1-model_v4_TED03","TED novel fold AF-A0A1F9Z4J2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1797973","Elusimicrobia bacterium RIFOXYD2_FULL_34_15"]]},{"id":"NCBITaxon:1798278","l":"Gammaproteobacteria bacterium RIFCSPHIGHO2_12_FULL_38_11","na":2,"nb":1,"a":[["TED%3AAF-A0A1G0HEL0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G0HEL0-F1-model_v4_TED01"],["TED%3AAF-A0A1G0HH18-F1-model_v4_TED01","TED novel fold AF-A0A1G0HH18-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798278","Gammaproteobacteria bacterium RIFCSPHIGHO2_12_FULL_38_11"]]},{"id":"NCBITaxon:1798415","l":"Hydrogenophilales bacterium RIFOXYD1_FULL_62_11","na":2,"nb":1,"a":[["TED%3AAF-A0A1G0NAM6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G0NAM6-F1-model_v4_TED02"],["TED%3AAF-A0A1G0NGR4-F1-model_v4_TED02","TED novel fold AF-A0A1G0NGR4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798415","Hydrogenophilales bacterium RIFOXYD1_FULL_62_11"]]},{"id":"NCBITaxon:1798571","l":"Lentisphaerae bacterium GWF2_44_16","na":2,"nb":1,"a":[["TED%3AAF-A0A1G0YJM0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1G0YJM0-F1-model_v4_TED03"],["TED%3AAF-A0A1G0Z6T1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G0Z6T1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798571","Lentisphaerae bacterium GWF2_44_16"]]},{"id":"NCBITaxon:1798574","l":"Lentisphaerae bacterium GWF2_50_93","na":2,"nb":1,"a":[["TED%3AAF-A0A1G0ZAS7-F1-model_v4_TED09","TED novel fold AF-A0A1G0ZAS7-F1-model_v4_TED09"],["TED%3AAF-A0A1G0ZHW3-F1-model_v4_TED02","TED novel fold AF-A0A1G0ZHW3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798574","Lentisphaerae bacterium GWF2_50_93"]]},{"id":"NCBITaxon:1798575","l":"Lentisphaerae bacterium GWF2_52_8","na":2,"nb":1,"a":[["TED%3AAF-A0A1G0YT11-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G0YT11-F1-model_v4_TED02"],["TED%3AAF-A0A1G0ZBK9-F1-model_v4_TED03","TED novel fold AF-A0A1G0ZBK9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1798575","Lentisphaerae bacterium GWF2_52_8"]]},{"id":"NCBITaxon:1798582","l":"Lentisphaerae bacterium RIFOXYC12_FULL_60_16","na":2,"nb":1,"a":[["TED%3AAF-A0A1G0ZUV5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1G0ZUV5-F1-model_v4_TED03"],["TED%3AAF-A0A1G0ZSX7-F1-model_v4_TED01","TED novel fold AF-A0A1G0ZSX7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798582","Lentisphaerae bacterium RIFOXYC12_FULL_60_16"]]},{"id":"NCBITaxon:1799370","l":"bacterium SCGC AG-212-C10","na":2,"nb":1,"a":[["TED%3AAF-A0A177PWS0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A177PWS0-F1-model_v4_TED01"],["TED%3AAF-A0A177Q9Q9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A177Q9Q9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1799370","bacterium SCGC AG-212-C10"]]},{"id":"NCBITaxon:1799657","l":"Planctomyces sp. SCGC AG-212-M04","na":2,"nb":1,"a":[["TED%3AAF-A0A177R1F8-F1-model_v4_TED04","TED novel fold AF-A0A177R1F8-F1-model_v4_TED04"],["TED%3AAF-A0A177R2Y2-F1-model_v4_TED02","TED novel fold AF-A0A177R2Y2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1799657","Planctomyces sp. SCGC AG-212-M04"]]},{"id":"NCBITaxon:1801658","l":"candidate division NC10 bacterium RIFCSPLOWO2_02_FULL_66_22","na":2,"nb":1,"a":[["TED%3AAF-A0A1F4QAX7-F1-model_v4_TED01","TED novel fold AF-A0A1F4QAX7-F1-model_v4_TED01"],["TED%3AAF-A0A1F4QCV8-F1-model_v4_TED01","TED novel fold AF-A0A1F4QCV8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801658","candidate division NC10 bacterium RIFCSPLOWO2_02_FULL_66_22"]]},{"id":"NCBITaxon:1801957","l":"Planctomycetes bacterium GWF2_41_51","na":2,"nb":1,"a":[["TED%3AAF-A0A1G2XX38-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G2XX38-F1-model_v4_TED01"],["TED%3AAF-A0A1G2XVX2-F1-model_v4_TED01","TED novel fold AF-A0A1G2XVX2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801957","Planctomycetes bacterium GWF2_41_51"]]},{"id":"NCBITaxon:1801968","l":"Planctomycetes bacterium RBG_16_55_9","na":2,"nb":1,"a":[["TED%3AAF-A0A1G2ZS35-F1-model_v4_TED02","TED novel fold AF-A0A1G2ZS35-F1-model_v4_TED02"],["TED%3AAF-A0A1G3A0U8-F1-model_v4_TED01","TED novel fold AF-A0A1G3A0U8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801968","Planctomycetes bacterium RBG_16_55_9"]]},{"id":"NCBITaxon:1802176","l":"Spirochaetes bacterium GWB1_59_5","na":2,"nb":1,"a":[["TED%3AAF-A0A1G3LC70-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1G3LC70-F1-model_v4_TED03"],["TED%3AAF-A0A1G3M4D2-F1-model_v4_TED01","TED novel fold AF-A0A1G3M4D2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802176","Spirochaetes bacterium GWB1_59_5"]]},{"id":"NCBITaxon:1802205","l":"Candidatus Staskawiczbacteria bacterium RIFCSPHIGHO2_02_FULL_34_10","na":2,"nb":1,"a":[["TED%3AAF-A0A1G2HYQ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G2HYQ2-F1-model_v4_TED01"],["TED%3AAF-A0A1G2HVZ8-F1-model_v4_TED01","TED novel fold AF-A0A1G2HVZ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802205","Candidatus Staskawiczbacteria bacterium RIFCSPHIGHO2_02_FULL_34_10"]]},{"id":"NCBITaxon:180344","l":"Vagococcus elongatus","na":2,"nb":1,"a":[["TED%3AAF-A0A430AW26-F1-model_v4_TED02","TED novel fold AF-A0A430AW26-F1-model_v4_TED02"],["TED%3AAF-A0A430AZH1-F1-model_v4_TED01","TED novel fold AF-A0A430AZH1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A180344","Vagococcus elongatus"]]},{"id":"NCBITaxon:1803813","l":"Theionarchaea archaeon DG-70","na":2,"nb":1,"a":[["TED%3AAF-A0A151F6X2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A151F6X2-F1-model_v4_TED02"],["TED%3AAF-A0A151FCD0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A151FCD0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1803813","Theionarchaea archaeon DG-70"]]},{"id":"NCBITaxon:1803817","l":"Thermoplasmatales archaeon SG8-52-2","na":2,"nb":1,"a":[["TED%3AAF-A0A151E1N5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A151E1N5-F1-model_v4_TED01"],["TED%3AAF-A0A151DZ19-F1-model_v4_TED01","TED novel fold AF-A0A151DZ19-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1803817","Thermoplasmatales archaeon SG8-52-2"]]},{"id":"NCBITaxon:1805055","l":"Catenulispora sp. 13_1_20CM_3_70_7","na":2,"nb":1,"a":[["TED%3AAF-A0A1Q7W9R9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q7W9R9-F1-model_v4_TED01"],["TED%3AAF-A0A1Q7WCM7-F1-model_v4_TED02","TED novel fold AF-A0A1Q7WCM7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1805055","Catenulispora sp. 13_1_20CM_3_70_7"]]},{"id":"NCBITaxon:1805249","l":"Candidatus Micrarchaeota archaeon CG1_02_51_15","na":2,"nb":1,"a":[["TED%3AAF-A0A1J4UL61-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1J4UL61-F1-model_v4_TED03"],["TED%3AAF-A0A1J4ULJ0-F1-model_v4_TED07","TED highly-symmetric fold AF-A0A1J4ULJ0-F1-model_v4_TED07"]],"b":[["NCBITaxon%3A1805249","Candidatus Micrarchaeota archaeon CG1_02_51_15"]]},{"id":"NCBITaxon:1805288","l":"Candidatus Omnitrophica bacterium CG1_02_46_14","na":2,"nb":1,"a":[["TED%3AAF-A0A1J4VL74-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1J4VL74-F1-model_v4_TED02"],["TED%3AAF-A0A1J4VTR0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1J4VTR0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1805288","Candidatus Omnitrophica bacterium CG1_02_46_14"]]},{"id":"NCBITaxon:1810840","l":"Piscirickettsiaceae bacterium NZ-RLO1","na":2,"nb":1,"a":[["TED%3AAF-A0A177W3E9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A177W3E9-F1-model_v4_TED03"],["TED%3AAF-A0A177W3K1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A177W3K1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1810840","Piscirickettsiaceae bacterium NZ-RLO1"]]},{"id":"NCBITaxon:1811677","l":"Methanocella sp. PtaU1.Bin125","na":2,"nb":1,"a":[["TED%3AAF-A0A1V4Z2A5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V4Z2A5-F1-model_v4_TED01"],["TED%3AAF-A0A1V4Z301-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V4Z301-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1811677","Methanocella sp. PtaU1.Bin125"]]},{"id":"NCBITaxon:1811688","l":"Methanosaeta sp. PtaU1.Bin060","na":2,"nb":1,"a":[["TED%3AAF-A0A1V5B5P4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5B5P4-F1-model_v4_TED01"],["TED%3AAF-A0A1V5BAI8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5BAI8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1811688","Methanosaeta sp. PtaU1.Bin060"]]},{"id":"NCBITaxon:1811693","l":"Pelotomaculum sp. PtaB.Bin104","na":2,"nb":1,"a":[["TED%3AAF-A0A1V4VN91-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V4VN91-F1-model_v4_TED02"],["TED%3AAF-A0A1V4VWP3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V4VWP3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1811693","Pelotomaculum sp. PtaB.Bin104"]]},{"id":"NCBITaxon:1811718","l":"Syntrophaceae bacterium PtaU1.Bin231","na":2,"nb":1,"a":[["TED%3AAF-A0A1V5EC01-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1V5EC01-F1-model_v4_TED03"],["TED%3AAF-A0A1V5DZZ4-F1-model_v4_TED02","TED novel fold AF-A0A1V5DZZ4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1811718","Syntrophaceae bacterium PtaU1.Bin231"]]},{"id":"NCBITaxon:1817773","l":"Candidatus Lambdaproteobacteria bacterium RIFOXYD2_FULL_56_26","na":2,"nb":1,"a":[["TED%3AAF-A0A1F6GPL7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1F6GPL7-F1-model_v4_TED03"],["TED%3AAF-A0A1F6GPV0-F1-model_v4_TED03","TED novel fold AF-A0A1F6GPV0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1817773","Candidatus Lambdaproteobacteria bacterium RIFOXYD2_FULL_56_26"]]},{"id":"NCBITaxon:1817813","l":"Candidatus Wallbacteria bacterium GWC2_49_35","na":2,"nb":1,"a":[["TED%3AAF-A0A1F7WM48-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F7WM48-F1-model_v4_TED01"],["TED%3AAF-A0A1F7X005-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F7X005-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1817813","Candidatus Wallbacteria bacterium GWC2_49_35"]]},{"id":"NCBITaxon:1817868","l":"Candidatus Handelsmanbacteria bacterium RIFCSPLOWO2_12_FULL_64_10","na":2,"nb":1,"a":[["TED%3AAF-A0A1F6C736-F1-model_v4_TED04","TED novel fold AF-A0A1F6C736-F1-model_v4_TED04"],["TED%3AAF-A0A1F6CTD9-F1-model_v4_TED04","TED novel fold AF-A0A1F6CTD9-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1817868","Candidatus Handelsmanbacteria bacterium RIFCSPLOWO2_12_FULL_64_10"]]},{"id":"NCBITaxon:1817874","l":"Candidatus Riflebacteria bacterium GWC2_50_8","na":2,"nb":1,"a":[["TED%3AAF-A0A1F7FYI5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F7FYI5-F1-model_v4_TED02"],["TED%3AAF-A0A1F7FJC4-F1-model_v4_TED02","TED novel fold AF-A0A1F7FJC4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1817874","Candidatus Riflebacteria bacterium GWC2_50_8"]]},{"id":"NCBITaxon:1817963","l":"Teichococcus deserti","na":1,"nb":2,"a":[["TED%3AAF-A0A1V2GU95-F1-model_v4_TED02","TED novel fold AF-A0A1V2GU95-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2692566","Muricoccus harenae"],["NCBITaxon%3A1817963","Teichococcus deserti"]]},{"id":"NCBITaxon:181874","l":"Panaeolus cyanescens","na":2,"nb":1,"a":[["TED%3AAF-A0A409Y7D6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A409Y7D6-F1-model_v4_TED01"],["TED%3AAF-A0A409X270-F1-model_v4_TED01","TED novel fold AF-A0A409X270-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A181874","Panaeolus cyanescens"]]},{"id":"NCBITaxon:182087","l":"Favella ehrenbergii","na":2,"nb":1,"a":[["TED%3AAF-A0A7S3HZS1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S3HZS1-F1-model_v4_TED01"],["TED%3AAF-A0A7S3MNX9-F1-model_v4_TED02","TED novel fold AF-A0A7S3MNX9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A182087","Favella ehrenbergii"]]},{"id":"NCBITaxon:1825094","l":"Amycolatopsis sp. M39","na":2,"nb":1,"a":[["TED%3AAF-A0A178XBM7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A178XBM7-F1-model_v4_TED02"],["TED%3AAF-A0A178WVL3-F1-model_v4_TED01","TED novel fold AF-A0A178WVL3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1825094","Amycolatopsis sp. M39"]]},{"id":"NCBITaxon:1825523","l":"Novimethylophilus kurashikiensis","na":2,"nb":1,"a":[["TED%3AAF-A0A2R5F8H7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2R5F8H7-F1-model_v4_TED01"],["TED%3AAF-A0A2R5FEB3-F1-model_v4_TED01","TED novel fold AF-A0A2R5FEB3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1825523","Novimethylophilus kurashikiensis"]]},{"id":"NCBITaxon:1827384","l":"Proteobacteria bacterium SG_bin7","na":2,"nb":1,"a":[["TED%3AAF-A0A1W9HU97-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W9HU97-F1-model_v4_TED01"],["TED%3AAF-A0A1W9HM99-F1-model_v4_TED01","TED novel fold AF-A0A1W9HM99-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1827384","Proteobacteria bacterium SG_bin7"]]},{"id":"NCBITaxon:183589","l":"Pseudo-nitzschia multistriata","na":2,"nb":1,"a":[["TED%3AAF-A0A448Z036-F1-model_v4_TED02","TED novel fold AF-A0A448Z036-F1-model_v4_TED02"],["TED%3AAF-A0A448Z5N8-F1-model_v4_TED01","TED novel fold AF-A0A448Z5N8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A183589","Pseudo-nitzschia multistriata"]]},{"id":"NCBITaxon:1841598","l":"Candidatus Heimdallarchaeota archaeon LC_3","na":2,"nb":1,"a":[["TED%3AAF-A0A1Q9NQM7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q9NQM7-F1-model_v4_TED01"],["TED%3AAF-A0A1Q9N383-F1-model_v4_TED02","TED novel fold AF-A0A1Q9N383-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1841598","Candidatus Heimdallarchaeota archaeon LC_3"]]},{"id":"NCBITaxon:1842532","l":"Syntrophotalea acetylenivorans","na":1,"nb":2,"a":[["TED%3AAF-A0A1L3GKY2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1L3GKY2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29542","Syntrophotalea acetylenica"],["NCBITaxon%3A1842532","Syntrophotalea acetylenivorans"]]},{"id":"NCBITaxon:1849047","l":"Coleophoma cylindrospora","na":2,"nb":1,"a":[["TED%3AAF-A0A3D8QNW7-F1-model_v4_TED07","TED novel fold AF-A0A3D8QNW7-F1-model_v4_TED07"],["TED%3AAF-A0A3D8RHS1-F1-model_v4_TED01","TED novel fold AF-A0A3D8RHS1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1849047","Coleophoma cylindrospora"]]},{"id":"NCBITaxon:1849840","l":"Methylosinus sp. 3S-1","na":2,"nb":1,"a":[["TED%3AAF-A0A1A6FKT5-F1-model_v4_TED01","TED novel fold AF-A0A1A6FKT5-F1-model_v4_TED01"],["TED%3AAF-A0A1A6FNE4-F1-model_v4_TED01","TED novel fold AF-A0A1A6FNE4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1849840","Methylosinus sp. 3S-1"]]},{"id":"NCBITaxon:1850348","l":"Longibacter salinarum","na":2,"nb":1,"a":[["TED%3AAF-A0A2A8CV41-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2A8CV41-F1-model_v4_TED02"],["TED%3AAF-A0A2A8CZN2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A8CZN2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1850348","Longibacter salinarum"]]},{"id":"NCBITaxon:1852872","l":"Deltaproteobacteria bacterium ADurb.BinA179","na":2,"nb":1,"a":[["TED%3AAF-A0A1V5H945-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5H945-F1-model_v4_TED01"],["TED%3AAF-A0A1V5H9P7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5H9P7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852872","Deltaproteobacteria bacterium ADurb.BinA179"]]},{"id":"NCBITaxon:1852885","l":"Firmicutes bacterium ADurb.Bin193","na":2,"nb":1,"a":[["TED%3AAF-A0A1V5X829-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5X829-F1-model_v4_TED01"],["TED%3AAF-A0A1V5X8X8-F1-model_v4_TED02","TED novel fold AF-A0A1V5X8X8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1852885","Firmicutes bacterium ADurb.Bin193"]]},{"id":"NCBITaxon:1852892","l":"Firmicutes bacterium ADurb.Bin419","na":2,"nb":1,"a":[["TED%3AAF-A0A1V5M7Y9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V5M7Y9-F1-model_v4_TED02"],["TED%3AAF-A0A1V5MP57-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V5MP57-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1852892","Firmicutes bacterium ADurb.Bin419"]]},{"id":"NCBITaxon:1852897","l":"Firmicutes bacterium ADurb.BinA205","na":2,"nb":1,"a":[["TED%3AAF-A0A1V5GD15-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V5GD15-F1-model_v4_TED02"],["TED%3AAF-A0A1V5GPI2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5GPI2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852897","Firmicutes bacterium ADurb.BinA205"]]},{"id":"NCBITaxon:1852900","l":"Lentisphaerae bacterium ADurb.Bin242","na":2,"nb":1,"a":[["TED%3AAF-A0A1V5UT20-F1-model_v4_TED01","TED novel fold AF-A0A1V5UT20-F1-model_v4_TED01"],["TED%3AAF-A0A1V5V7R0-F1-model_v4_TED04","TED novel fold AF-A0A1V5V7R0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1852900","Lentisphaerae bacterium ADurb.Bin242"]]},{"id":"NCBITaxon:1852903","l":"Planctomycetes bacterium ADurb.Bin126","na":2,"nb":1,"a":[["TED%3AAF-A0A1V6D5B8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1V6D5B8-F1-model_v4_TED03"],["TED%3AAF-A0A1V6D343-F1-model_v4_TED04","TED novel fold AF-A0A1V6D343-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1852903","Planctomycetes bacterium ADurb.Bin126"]]},{"id":"NCBITaxon:1852908","l":"Spirochaetes bacterium ADurb.Bin110","na":2,"nb":1,"a":[["TED%3AAF-A0A1V6E1F0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V6E1F0-F1-model_v4_TED01"],["TED%3AAF-A0A1V6E573-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V6E573-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852908","Spirochaetes bacterium ADurb.Bin110"]]},{"id":"NCBITaxon:1852939","l":"Parcubacteria group bacterium ADurb.Bin216","na":2,"nb":1,"a":[["TED%3AAF-A0A1V5WXV8-F1-model_v4_TED01","TED novel fold AF-A0A1V5WXV8-F1-model_v4_TED01"],["TED%3AAF-A0A1V5X3E8-F1-model_v4_TED01","TED novel fold AF-A0A1V5X3E8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852939","Parcubacteria group bacterium ADurb.Bin216"]]},{"id":"NCBITaxon:1852943","l":"Parcubacteria group bacterium ADurb.Bin326","na":2,"nb":1,"a":[["TED%3AAF-A0A1V5R4C7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5R4C7-F1-model_v4_TED01"],["TED%3AAF-A0A1V5R4R5-F1-model_v4_TED01","TED novel fold AF-A0A1V5R4R5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852943","Parcubacteria group bacterium ADurb.Bin326"]]},{"id":"NCBITaxon:1854588","l":"Pseudonocardia sp. MH-G8","na":2,"nb":1,"a":[["TED%3AAF-A0A263DNN9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A263DNN9-F1-model_v4_TED01"],["TED%3AAF-A0A263DLQ4-F1-model_v4_TED01","TED novel fold AF-A0A263DLQ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1854588","Pseudonocardia sp. MH-G8"]]},{"id":"NCBITaxon:1855298","l":"Mucilaginibacter sp. YR332","na":2,"nb":1,"a":[["TED%3AAF-A0A497ZA77-F1-model_v4_TED02","TED novel fold AF-A0A497ZA77-F1-model_v4_TED02"],["TED%3AAF-A0A497ZHE4-F1-model_v4_TED02","TED novel fold AF-A0A497ZHE4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1855298","Mucilaginibacter sp. YR332"]]},{"id":"NCBITaxon:1855304","l":"Rhizobium sp. AN5","na":2,"nb":1,"a":[["TED%3AAF-A0A285XY16-F1-model_v4_TED02","TED novel fold AF-A0A285XY16-F1-model_v4_TED02"],["TED%3AAF-A0A285XY16-F1-model_v4_TED04","TED novel fold AF-A0A285XY16-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1855304","Rhizobium sp. AN5"]]},{"id":"NCBITaxon:1855374","l":"Lachnospiraceae bacterium KH1T2","na":2,"nb":1,"a":[["TED%3AAF-A0A1I4C1K4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I4C1K4-F1-model_v4_TED02"],["TED%3AAF-A0A1I4DRK9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I4DRK9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1855374","Lachnospiraceae bacterium KH1T2"]]},{"id":"NCBITaxon:1857892","l":"Streptomyces sp. MP131-18","na":1,"nb":2,"a":[["TED%3AAF-A0A1V2RLA5-F1-model_v4_TED02","TED novel fold AF-A0A1V2RLA5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1931","Streptomyces sp."],["NCBITaxon%3A1857892","Streptomyces sp. MP131-18"]]},{"id":"NCBITaxon:1862385","l":"Rubrivivax rivuli","na":2,"nb":1,"a":[["TED%3AAF-A0A437R9J1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A437R9J1-F1-model_v4_TED01"],["TED%3AAF-A0A437RCC8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A437RCC8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1862385","Rubrivivax rivuli"]]},{"id":"NCBITaxon:1864825","l":"Siphonobacter sp. BAB-5405","na":2,"nb":1,"a":[["TED%3AAF-A0A2N7BBA0-F1-model_v4_TED02","TED novel fold AF-A0A2N7BBA0-F1-model_v4_TED02"],["TED%3AAF-A0A2N7BBU2-F1-model_v4_TED02","TED novel fold AF-A0A2N7BBU2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1864825","Siphonobacter sp. BAB-5405"]]},{"id":"NCBITaxon:1871053","l":"Phenylobacterium sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A525JER3-F1-model_v4_TED03","TED novel fold AF-A0A525JER3-F1-model_v4_TED03"],["TED%3AAF-A0A525JM96-F1-model_v4_TED02","TED novel fold AF-A0A525JM96-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1871053","Phenylobacterium sp."]]},{"id":"NCBITaxon:1872493","l":"Ammonifex sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A3A6N187-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A6N187-F1-model_v4_TED01"],["TED%3AAF-A0A3A6N562-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3A6N562-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1872493","Ammonifex sp."]]},{"id":"NCBITaxon:1872586","l":"Aquimarina sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2D9XY70-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9XY70-F1-model_v4_TED01"],["TED%3AAF-A0A2D9XYI3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D9XYI3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1872586","Aquimarina sp."]]},{"id":"NCBITaxon:1878","l":"Micromonospora rosea","na":1,"nb":2,"a":[["Pfam%3APF07091","Ribosomal RNA methyltransferase (FmrO)"]],"b":[["NCBITaxon%3A1878","Micromonospora rosea"],["NCBITaxon%3A31942","Micromonospora rosea MNG00182"]]},{"id":"NCBITaxon:187868","l":"Paracidovorax valerianellae","na":2,"nb":1,"a":[["TED%3AAF-A0A1G6MUY9-F1-model_v4_TED01","TED novel fold AF-A0A1G6MUY9-F1-model_v4_TED01"],["TED%3AAF-A0A1G6R6F0-F1-model_v4_TED01","TED novel fold AF-A0A1G6R6F0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A187868","Paracidovorax valerianellae"]]},{"id":"NCBITaxon:1880","l":"Micromonospora olivasterospora","na":2,"nb":1,"a":[["Pfam%3APF07091","Ribosomal RNA methyltransferase (FmrO)"],["TED%3AAF-A0A562IGP2-F1-model_v4_TED01","TED novel fold AF-A0A562IGP2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1880","Micromonospora olivasterospora"]]},{"id":"NCBITaxon:1880848","l":"Vibrio sp. 10N.261.49.E11","na":1,"nb":2,"a":[["TED%3AAF-A0A2N7J4P0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N7J4P0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A678","Vibrio sp."],["NCBITaxon%3A1880848","Vibrio sp. 10N.261.49.E11"]]},{"id":"NCBITaxon:1881048","l":"Mucilaginibacter sp. OK268","na":2,"nb":1,"a":[["TED%3AAF-A0A1H0QSC9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H0QSC9-F1-model_v4_TED02"],["TED%3AAF-A0A1H0VSK4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H0VSK4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1881048","Mucilaginibacter sp. OK268"]]},{"id":"NCBITaxon:1882483","l":"Testicularia cyperi","na":2,"nb":1,"a":[["TED%3AAF-A0A317XPK1-F1-model_v4_TED01","TED novel fold AF-A0A317XPK1-F1-model_v4_TED01"],["TED%3AAF-A0A317XPQ7-F1-model_v4_TED01","TED novel fold AF-A0A317XPQ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1882483","Testicularia cyperi"]]},{"id":"NCBITaxon:1882763","l":"Bacillus sp. OV166","na":2,"nb":1,"a":[["TED%3AAF-A0A1Y6FXP3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y6FXP3-F1-model_v4_TED01"],["TED%3AAF-A0A1Y6G3A8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y6G3A8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1882763","Bacillus sp. OV166"]]},{"id":"NCBITaxon:1884367","l":"Chitinophaga sp. CF118","na":2,"nb":1,"a":[["TED%3AAF-A0A1I1X7T5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I1X7T5-F1-model_v4_TED02"],["TED%3AAF-A0A1I2BGU5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2BGU5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1884367","Chitinophaga sp. CF118"]]},{"id":"NCBITaxon:188908","l":"Oleispira antarctica","na":1,"nb":2,"a":[["TED%3AAF-A0A1Y5HYG0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y5HYG0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A188908","Oleispira antarctica"],["NCBITaxon%3A698738","Oleispira antarctica RB-8"]]},{"id":"NCBITaxon:1894","l":"Kitasatospora aureofaciens","na":2,"nb":1,"a":[["Pfam%3APF01933","2-phospho-L-lactate transferase CofD"],["TED%3AAF-A0A1E7NF13-F1-model_v4_TED01","TED novel fold AF-A0A1E7NF13-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1894","Kitasatospora aureofaciens"]]},{"id":"NCBITaxon:1895664","l":"Halanaerobium sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A315QT49-F1-model_v4_TED03","TED novel fold AF-A0A315QT49-F1-model_v4_TED03"],["TED%3AAF-A0A315R434-F1-model_v4_TED03","TED novel fold AF-A0A315R434-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1895664","Halanaerobium sp."]]},{"id":"NCBITaxon:1895743","l":"Chlamydiales bacterium 38-26","na":2,"nb":1,"a":[["TED%3AAF-A0A1M3CS01-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M3CS01-F1-model_v4_TED02"],["TED%3AAF-A0A1M3CPU2-F1-model_v4_TED05","TED novel fold AF-A0A1M3CPU2-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1895743","Chlamydiales bacterium 38-26"]]},{"id":"NCBITaxon:1895788","l":"Microbacterium sp. 71-36","na":2,"nb":1,"a":[["TED%3AAF-A0A2R9U991-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2R9U991-F1-model_v4_TED01"],["TED%3AAF-A0A2R9UFZ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2R9UFZ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895788","Microbacterium sp. 71-36"]]},{"id":"NCBITaxon:1895833","l":"Solirubrobacterales bacterium 70-9","na":2,"nb":1,"a":[["TED%3AAF-A0A1M3BJ71-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M3BJ71-F1-model_v4_TED01"],["TED%3AAF-A0A1M3BK47-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M3BK47-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1895833","Solirubrobacterales bacterium 70-9"]]},{"id":"NCBITaxon:1895923","l":"Bacteroidetes bacterium 43-16","na":2,"nb":1,"a":[["TED%3AAF-A0A1M3E771-F1-model_v4_TED01","TED novel fold AF-A0A1M3E771-F1-model_v4_TED01"],["TED%3AAF-A0A1M3EBH9-F1-model_v4_TED01","TED novel fold AF-A0A1M3EBH9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895923","Bacteroidetes bacterium 43-16"]]},{"id":"NCBITaxon:1895926","l":"Bacteroidetes bacterium 47-18","na":2,"nb":1,"a":[["TED%3AAF-A0A1Q3MYV5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3MYV5-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3N0P4-F1-model_v4_TED02","TED novel fold AF-A0A1Q3N0P4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1895926","Bacteroidetes bacterium 47-18"]]},{"id":"NCBITaxon:1896","l":"Streptomyces bikiniensis","na":1,"nb":2,"a":[["Pfam%3APF00908","dTDP-4-dehydrorhamnose 3,5-epimerase"]],"b":[["NCBITaxon%3A1896","Streptomyces bikiniensis"],["NCBITaxon%3A44286","Streptomyces bikiniensis subsp. zorbonensis"]]},{"id":"NCBITaxon:1896170","l":"Burkholderiales bacterium 68-12","na":2,"nb":1,"a":[["TED%3AAF-A0A1M3JRK7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M3JRK7-F1-model_v4_TED01"],["TED%3AAF-A0A1M3JPD9-F1-model_v4_TED02","TED novel fold AF-A0A1M3JPD9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1896170","Burkholderiales bacterium 68-12"]]},{"id":"NCBITaxon:1896208","l":"Fibrobacter sp. UWCM","na":2,"nb":1,"a":[["TED%3AAF-A0A1M5T024-F1-model_v4_TED02","TED novel fold AF-A0A1M5T024-F1-model_v4_TED02"],["TED%3AAF-A0A1M5WWA9-F1-model_v4_TED02","TED novel fold AF-A0A1M5WWA9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1896208","Fibrobacter sp. UWCM"]]},{"id":"NCBITaxon:1896971","l":"Azospirillum sp. 47_25","na":2,"nb":1,"a":[["TED%3AAF-A0A1Q6U8E0-F1-model_v4_TED01","TED novel fold AF-A0A1Q6U8E0-F1-model_v4_TED01"],["TED%3AAF-A0A1Q6UG74-F1-model_v4_TED02","TED novel fold AF-A0A1Q6UG74-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1896971","Azospirillum sp. 47_25"]]},{"id":"NCBITaxon:1896979","l":"Clostridium sp. 27_14","na":2,"nb":1,"a":[["TED%3AAF-A0A1Q6LHD7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q6LHD7-F1-model_v4_TED01"],["TED%3AAF-A0A1Q6LHD7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q6LHD7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1896979","Clostridium sp. 27_14"]]},{"id":"NCBITaxon:1896985","l":"Clostridium sp. CAG:12237_41","na":2,"nb":1,"a":[["TED%3AAF-A0A1Q6LMW0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1Q6LMW0-F1-model_v4_TED03"],["TED%3AAF-A0A1Q6LRH0-F1-model_v4_TED01","TED novel fold AF-A0A1Q6LRH0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1896985","Clostridium sp. CAG:12237_41"]]},{"id":"NCBITaxon:1897025","l":"Verrucomicrobia bacterium CAG:312_58_20","na":2,"nb":1,"a":[["TED%3AAF-A0A1Q6UH36-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q6UH36-F1-model_v4_TED01"],["TED%3AAF-A0A1Q6UM84-F1-model_v4_TED01","TED novel fold AF-A0A1Q6UM84-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1897025","Verrucomicrobia bacterium CAG:312_58_20"]]},{"id":"NCBITaxon:1903056","l":"Macrococcoides bohemicum","na":1,"nb":2,"a":[["TED%3AAF-A0A4R5YA11-F1-model_v4_TED01","TED novel fold AF-A0A4R5YA11-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1903056","Macrococcoides bohemicum"],["NCBITaxon%3A1871621","Macrococcus sp."]]},{"id":"NCBITaxon:1903704","l":"Tumebacillus avium","na":2,"nb":1,"a":[["TED%3AAF-A0A1Y0IJW7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Y0IJW7-F1-model_v4_TED02"],["TED%3AAF-A0A1Y0IMH8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y0IMH8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1903704","Tumebacillus avium"]]},{"id":"NCBITaxon:1903720","l":"Bacilli bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A7V6XP83-F1-model_v4_TED01","TED novel fold AF-A0A7V6XP83-F1-model_v4_TED01"],["TED%3AAF-A0A7X7Q2X1-F1-model_v4_TED02","TED novel fold AF-A0A7X7Q2X1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1903720","Bacilli bacterium"]]},{"id":"NCBITaxon:1904","l":"Streptomyces cyaneus","na":1,"nb":2,"a":[["Pfam%3APF04673","Polyketide synthesis cyclase"]],"b":[["NCBITaxon%3A146537","Streptomyces azureus"],["NCBITaxon%3A1904","Streptomyces cyaneus"]]},{"id":"NCBITaxon:1907","l":"Streptomyces glaucescens","na":2,"nb":1,"a":[["Pfam%3APF04673","Polyketide synthesis cyclase"],["Pfam%3APF04655","Aminoglycoside/hydroxyurea antibiotic resistance kinase"]],"b":[["NCBITaxon%3A1907","Streptomyces glaucescens"]]},{"id":"NCBITaxon:1907941","l":"Alkanindiges hydrocarboniclasticus","na":2,"nb":1,"a":[["TED%3AAF-A0A1S8CSP8-F1-model_v4_TED02","TED novel fold AF-A0A1S8CSP8-F1-model_v4_TED02"],["TED%3AAF-A0A1S8D0J5-F1-model_v4_TED02","TED novel fold AF-A0A1S8D0J5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1907941","Alkanindiges hydrocarboniclasticus"]]},{"id":"NCBITaxon:1909","l":"Streptomyces griseolus","na":1,"nb":2,"a":[["Pfam%3APF06902","Divergent 4Fe-4S mono-cluster"]],"b":[["NCBITaxon%3A1909","Streptomyces griseolus"],["NCBITaxon%3A1944","Streptomyces halstedii"]]},{"id":"NCBITaxon:190975","l":"Methanobrevibacter thaueri","na":2,"nb":1,"a":[["TED%3AAF-A0A315XL87-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A315XL87-F1-model_v4_TED02"],["TED%3AAF-A0A315XLC9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A315XLC9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A190975","Methanobrevibacter thaueri"]]},{"id":"NCBITaxon:1912856","l":"Peptoniphilus sp. ING2-D1G","na":1,"nb":2,"a":[["TED%3AAF-A0A090HYP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A090HYP8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1971214","Peptoniphilus sp."],["NCBITaxon%3A1912856","Peptoniphilus sp. ING2-D1G"]]},{"id":"NCBITaxon:1912928","l":"Candidatus Gracilibacteria bacterium GN02-872","na":2,"nb":1,"a":[["TED%3AAF-A0A328EDA4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A328EDA4-F1-model_v4_TED01"],["TED%3AAF-A0A328EJ66-F1-model_v4_TED03","TED novel fold AF-A0A328EJ66-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1912928","Candidatus Gracilibacteria bacterium GN02-872"]]},{"id":"NCBITaxon:1914410","l":"Spiroplasma sp. NBRC 100390","na":1,"nb":2,"a":[["TED%3AAF-A0A1J0U0D3-F1-model_v4_TED02","TED novel fold AF-A0A1J0U0D3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2144","Spiroplasma mirum"],["NCBITaxon%3A1914410","Spiroplasma sp. NBRC 100390"]]},{"id":"NCBITaxon:1915388","l":"Achromobacter sp. KAs 3-5","na":1,"nb":2,"a":[["TED%3AAF-A0A854PQ59-F1-model_v4_TED01","TED novel fold AF-A0A854PQ59-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A134375","Achromobacter sp."],["NCBITaxon%3A1915388","Achromobacter sp. KAs 3-5"]]},{"id":"NCBITaxon:1916222","l":"Candidatus Gastranaerophilales bacterium HUM_23","na":2,"nb":1,"a":[["TED%3AAF-A0A292SUD0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A292SUD0-F1-model_v4_TED01"],["TED%3AAF-A0A292SQQ3-F1-model_v4_TED02","TED novel fold AF-A0A292SQQ3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1916222","Candidatus Gastranaerophilales bacterium HUM_23"]]},{"id":"NCBITaxon:1916232","l":"Candidatus Gastranaerophilales bacterium HUM_20","na":2,"nb":1,"a":[["TED%3AAF-A0A292SIX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A292SIX7-F1-model_v4_TED01"],["TED%3AAF-A0A292SNW9-F1-model_v4_TED01","TED novel fold AF-A0A292SNW9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1916232","Candidatus Gastranaerophilales bacterium HUM_20"]]},{"id":"NCBITaxon:1917219","l":"Fluviicola sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2G2DNA9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2G2DNA9-F1-model_v4_TED02"],["TED%3AAF-A0A2G2E9M7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2G2E9M7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1917219","Fluviicola sp."]]},{"id":"NCBITaxon:1919113","l":"Bacteroidetes bacterium SW_11_45_7","na":2,"nb":1,"a":[["TED%3AAF-A0A2T2VEL8-F1-model_v4_TED01","TED novel fold AF-A0A2T2VEL8-F1-model_v4_TED01"],["TED%3AAF-A0A2T2VII4-F1-model_v4_TED01","TED novel fold AF-A0A2T2VII4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1919113","Bacteroidetes bacterium SW_11_45_7"]]},{"id":"NCBITaxon:1919187","l":"Halobacteriales archaeon QS_8_69_26","na":2,"nb":1,"a":[["TED%3AAF-A0A2R6JKB9-F1-model_v4_TED07","TED highly-symmetric fold AF-A0A2R6JKB9-F1-model_v4_TED07"],["TED%3AAF-A0A2R6JTS9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2R6JTS9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1919187","Halobacteriales archaeon QS_8_69_26"]]},{"id":"NCBITaxon:191960","l":"Sedimenticola selenatireducens","na":1,"nb":2,"a":[["TED%3AAF-A0A2N6CT86-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N6CT86-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A191960","Sedimenticola selenatireducens"],["NCBITaxon%3A1111735","Sedimenticola selenatireducens DSM 17993"]]},{"id":"NCBITaxon:1920190","l":"Archangium sp. Cb G35","na":1,"nb":2,"a":[["TED%3AAF-A0A1Q3HAE1-F1-model_v4_TED02","TED novel fold AF-A0A1Q3HAE1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1872627","Archangium sp."],["NCBITaxon%3A1920190","Archangium sp. Cb G35"]]},{"id":"NCBITaxon:1920419","l":"Desulfobulbaceae bacterium DB1","na":2,"nb":1,"a":[["TED%3AAF-A0A1Q6DKC7-F1-model_v4_TED02","TED novel fold AF-A0A1Q6DKC7-F1-model_v4_TED02"],["TED%3AAF-A0A1Q6DKM1-F1-model_v4_TED02","TED novel fold AF-A0A1Q6DKM1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1920419","Desulfobulbaceae bacterium DB1"]]},{"id":"NCBITaxon:1921421","l":"Geobacillus genomosp. 3","na":1,"nb":2,"a":[["Pfam%3APF22247","Catechol 2,3-dioxygenase-like N-terminal domain"]],"b":[["NCBITaxon%3A1921421","Geobacillus genomosp. 3"],["NCBITaxon%3A1891658","Geobacillus sp."]]},{"id":"NCBITaxon:1926491","l":"Hahella sp. CCB-MM4","na":2,"nb":1,"a":[["Pfam%3APF25271","Domain of unknown function (DUF7868)"],["TED%3AAF-A0A261GH03-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A261GH03-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1926491","Hahella sp. CCB-MM4"]]},{"id":"NCBITaxon:1927124","l":"Mycobacterium aquaticum","na":2,"nb":1,"a":[["TED%3AAF-A0A1X0A4W7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X0A4W7-F1-model_v4_TED01"],["TED%3AAF-A0A1X0B8H0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X0B8H0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1927124","Mycobacterium aquaticum"]]},{"id":"NCBITaxon:192904","l":"Kriegella aquimaris","na":2,"nb":1,"a":[["TED%3AAF-A0A1G9QMB2-F1-model_v4_TED01","TED novel fold AF-A0A1G9QMB2-F1-model_v4_TED01"],["TED%3AAF-A0A1G9TPJ1-F1-model_v4_TED01","TED novel fold AF-A0A1G9TPJ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A192904","Kriegella aquimaris"]]},{"id":"NCBITaxon:1929291","l":"Reyranella sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A521MAL3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521MAL3-F1-model_v4_TED01"],["TED%3AAF-A0A522ZGQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A522ZGQ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1929291","Reyranella sp."]]},{"id":"NCBITaxon:1931","l":"Streptomyces sp.","na":1,"nb":2,"a":[["Pfam%3APF03437","BtpA family"]],"b":[["NCBITaxon%3A324833","Streptomyces lasalocidi"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:1932693","l":"bacterium E08(2017)","na":2,"nb":1,"a":[["TED%3AAF-A0A202DFY8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A202DFY8-F1-model_v4_TED01"],["TED%3AAF-A0A202DGR6-F1-model_v4_TED01","TED novel fold AF-A0A202DGR6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1932693","bacterium E08(2017)"]]},{"id":"NCBITaxon:1932716","l":"Ktedonobacter sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A3B9Y8D4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B9Y8D4-F1-model_v4_TED01"],["TED%3AAF-A0A3B9KCL3-F1-model_v4_TED03","TED novel fold AF-A0A3B9KCL3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1932716","Ktedonobacter sp."]]},{"id":"NCBITaxon:1933","l":"Streptoalloteichus tenebrarius","na":2,"nb":1,"a":[["Pfam%3APF16861","Carbamoyltransferase C-terminus"],["Pfam%3APF02543","Carbamoyltransferase N-terminus"]],"b":[["NCBITaxon%3A1933","Streptoalloteichus tenebrarius"]]},{"id":"NCBITaxon:1933220","l":"Sphingobacterium sp. B29","na":2,"nb":1,"a":[["TED%3AAF-A0A1P8E3E2-F1-model_v4_TED02","TED novel fold AF-A0A1P8E3E2-F1-model_v4_TED02"],["TED%3AAF-A0A1P8E830-F1-model_v4_TED01","TED novel fold AF-A0A1P8E830-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1933220","Sphingobacterium sp. B29"]]},{"id":"NCBITaxon:1936077","l":"Caldifarciminota bacterium 4484_100","na":2,"nb":1,"a":[["TED%3AAF-A0A1V4QGD8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V4QGD8-F1-model_v4_TED02"],["TED%3AAF-A0A1V4QI01-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V4QI01-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1936077","Caldifarciminota bacterium 4484_100"]]},{"id":"NCBITaxon:1938851","l":"Streptomyces sp. Ag109_O5-1","na":2,"nb":1,"a":[["TED%3AAF-A0A3N4S2G1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N4S2G1-F1-model_v4_TED01"],["TED%3AAF-A0A3N4SIH2-F1-model_v4_TED02","TED novel fold AF-A0A3N4SIH2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1938851","Streptomyces sp. Ag109_O5-1"]]},{"id":"NCBITaxon:1940","l":"Streptomyces albireticuli","na":2,"nb":1,"a":[["TED%3AAF-A0A1Z2LD39-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z2LD39-F1-model_v4_TED01"],["TED%3AAF-A0A1Z2LBV3-F1-model_v4_TED01","TED novel fold AF-A0A1Z2LBV3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1940","Streptomyces albireticuli"]]},{"id":"NCBITaxon:1940610","l":"Phreatobacter stygius","na":2,"nb":1,"a":[["TED%3AAF-A0A4D7AVB2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4D7AVB2-F1-model_v4_TED01"],["TED%3AAF-A0A4D7B3N4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4D7B3N4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1940610","Phreatobacter stygius"]]},{"id":"NCBITaxon:1944635","l":"Sutterella seckii","na":2,"nb":1,"a":[["TED%3AAF-A0A6I1E9Q4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I1E9Q4-F1-model_v4_TED01"],["TED%3AAF-A0A6I1ED05-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I1ED05-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1944635","Sutterella seckii"]]},{"id":"NCBITaxon:1945579","l":"Methanosphaera sp. rholeuAM74","na":2,"nb":1,"a":[["TED%3AAF-A0A328RYM3-F1-model_v4_TED02","TED novel fold AF-A0A328RYM3-F1-model_v4_TED02"],["TED%3AAF-A0A328SFK5-F1-model_v4_TED02","TED novel fold AF-A0A328SFK5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1945579","Methanosphaera sp. rholeuAM74"]]},{"id":"NCBITaxon:1945872","l":"Fibrobacter sp. UWRM","na":2,"nb":1,"a":[["TED%3AAF-A0A2P6URS1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P6URS1-F1-model_v4_TED01"],["TED%3AAF-A0A2P6UTR6-F1-model_v4_TED02","TED novel fold AF-A0A2P6UTR6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1945872","Fibrobacter sp. UWRM"]]},{"id":"NCBITaxon:194702","l":"Cardiobacterium valvarum","na":1,"nb":2,"a":[["TED%3AAF-A0A381EEF6-F1-model_v4_TED02","TED novel fold AF-A0A381EEF6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A194702","Cardiobacterium valvarum"],["NCBITaxon%3A797473","Cardiobacterium valvarum F0432"]]},{"id":"NCBITaxon:1948","l":"Streptomyces longisporus","na":1,"nb":2,"a":[["PROSITE%3APS00999","Streptomyces subtilisin-type inhibitors signature"]],"b":[["NCBITaxon%3A1948","Streptomyces longisporus"],["NCBITaxon%3A1931","Streptomyces sp."]]},{"id":"NCBITaxon:1954253","l":"Filimonas sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A388Q2C7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A388Q2C7-F1-model_v4_TED01"],["TED%3AAF-A0A388Q7L9-F1-model_v4_TED02","TED novel fold AF-A0A388Q7L9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1954253","Filimonas sp."]]},{"id":"NCBITaxon:1956162","l":"Planctomycetales bacterium 4484_123","na":2,"nb":1,"a":[["TED%3AAF-A0A1V4QVM4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V4QVM4-F1-model_v4_TED02"],["TED%3AAF-A0A1V4QRZ0-F1-model_v4_TED01","TED novel fold AF-A0A1V4QRZ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1956162","Planctomycetales bacterium 4484_123"]]},{"id":"NCBITaxon:196024","l":"Aeromonas dhakensis","na":1,"nb":2,"a":[["TED%3AAF-K1KBM8-F1-model_v4_TED01","TED novel fold AF-K1KBM8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A196024","Aeromonas dhakensis"],["NCBITaxon%3A1156800","Aeromonas dhakensis AAK1"]]},{"id":"NCBITaxon:196308","l":"Nostoc sp. HK-01","na":2,"nb":1,"a":[["TED%3AAF-A0A2Z6D4J6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z6D4J6-F1-model_v4_TED01"],["TED%3AAF-A0A2Z6CXK5-F1-model_v4_TED02","TED novel fold AF-A0A2Z6CXK5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A196308","Nostoc sp. HK-01"]]},{"id":"NCBITaxon:1964352","l":"Fibrobacter sp. UWR2","na":2,"nb":1,"a":[["TED%3AAF-A0A254REI0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A254REI0-F1-model_v4_TED01"],["TED%3AAF-A0A254RLR2-F1-model_v4_TED01","TED novel fold AF-A0A254RLR2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1964352","Fibrobacter sp. UWR2"]]},{"id":"NCBITaxon:1965555","l":"Lachnoclostridium sp. An131","na":2,"nb":1,"a":[["TED%3AAF-A0A1Y4S1T7-F1-model_v4_TED05","TED novel fold AF-A0A1Y4S1T7-F1-model_v4_TED05"],["TED%3AAF-A0A1Y4SAW0-F1-model_v4_TED01","TED novel fold AF-A0A1Y4SAW0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965555","Lachnoclostridium sp. An131"]]},{"id":"NCBITaxon:1965557","l":"Massilimicrobiota sp. An134","na":2,"nb":1,"a":[["TED%3AAF-A0A1Y4SF01-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Y4SF01-F1-model_v4_TED02"],["TED%3AAF-A0A1Y4SKF5-F1-model_v4_TED02","TED novel fold AF-A0A1Y4SKF5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1965557","Massilimicrobiota sp. An134"]]},{"id":"NCBITaxon:1965580","l":"Bacteroides sp. An19","na":2,"nb":1,"a":[["TED%3AAF-A0A1Y4JFG1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y4JFG1-F1-model_v4_TED01"],["TED%3AAF-A0A1Y4K1E2-F1-model_v4_TED02","TED novel fold AF-A0A1Y4K1E2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1965580","Bacteroides sp. An19"]]},{"id":"NCBITaxon:1965622","l":"Megasphaera sp. An286","na":2,"nb":1,"a":[["TED%3AAF-A0A1Y4CN46-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Y4CN46-F1-model_v4_TED02"],["TED%3AAF-A0A1Y4CHV3-F1-model_v4_TED01","TED novel fold AF-A0A1Y4CHV3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965622","Megasphaera sp. An286"]]},{"id":"NCBITaxon:1967782","l":"Chlamydia serpentis","na":1,"nb":2,"a":[["TED%3AAF-A0A2R8FBB5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2R8FBB5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1967782","Chlamydia serpentis"],["NCBITaxon%3A35827","Chlamydia sp."]]},{"id":"NCBITaxon:1969813","l":"Nevskiaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A522J9Y5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A522J9Y5-F1-model_v4_TED01"],["TED%3AAF-A0A5C7L3T6-F1-model_v4_TED02","TED novel fold AF-A0A5C7L3T6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1969813","Nevskiaceae bacterium"]]},{"id":"NCBITaxon:1970","l":"Streptomyces morookaense","na":1,"nb":2,"a":[["TED%3AAF-A0A7Y7E7U7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y7E7U7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A68176","Streptomyces aspergilloides"],["NCBITaxon%3A1970","Streptomyces morookaense"]]},{"id":"NCBITaxon:1970302","l":"Acidocella sp. 20-58-15","na":2,"nb":1,"a":[["TED%3AAF-A0A257QXJ2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A257QXJ2-F1-model_v4_TED03"],["TED%3AAF-A0A257QPV7-F1-model_v4_TED01","TED novel fold AF-A0A257QPV7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970302","Acidocella sp. 20-58-15"]]},{"id":"NCBITaxon:1970480","l":"Candidatus Saccharibacteria bacterium 32-50-10","na":2,"nb":1,"a":[["TED%3AAF-A0A258FYM3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A258FYM3-F1-model_v4_TED02"],["TED%3AAF-A0A258FVM1-F1-model_v4_TED01","TED novel fold AF-A0A258FVM1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970480","Candidatus Saccharibacteria bacterium 32-50-10"]]},{"id":"NCBITaxon:1970772","l":"Candidatus Zhuqueibacterota bacterium 4484_87","na":2,"nb":1,"a":[["TED%3AAF-A0A1W9RH52-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W9RH52-F1-model_v4_TED01"],["TED%3AAF-A0A1W9RSU5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W9RSU5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970772","Candidatus Zhuqueibacterota bacterium 4484_87"]]},{"id":"NCBITaxon:1972642","l":"Sphaerochaeta sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A3C1LQH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C1LQH3-F1-model_v4_TED01"],["TED%3AAF-A0A3C1LQH3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3C1LQH3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1972642","Sphaerochaeta sp."]]},{"id":"NCBITaxon:1973478","l":"Calothrix brevissima NIES-22","na":2,"nb":1,"a":[["TED%3AAF-A0A1Z4JTJ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z4JTJ2-F1-model_v4_TED01"],["TED%3AAF-A0A1Z4K5N3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z4K5N3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973478","Calothrix brevissima NIES-22"]]},{"id":"NCBITaxon:1973928","l":"Bdellovibrionales bacterium CG11_big_fil_rev_8_21_14_0_20_38_13","na":2,"nb":1,"a":[["TED%3AAF-A0A2H0Q7W6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H0Q7W6-F1-model_v4_TED01"],["TED%3AAF-A0A2H0Q805-F1-model_v4_TED01","TED novel fold AF-A0A2H0Q805-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973928","Bdellovibrionales bacterium CG11_big_fil_rev_8_21_14_0_20_38_13"]]},{"id":"NCBITaxon:1974064","l":"Nitrospirae bacterium CG01_land_8_20_14_3_00_44_22","na":2,"nb":1,"a":[["TED%3AAF-A0A2M7EE09-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M7EE09-F1-model_v4_TED01"],["TED%3AAF-A0A2M7EHQ1-F1-model_v4_TED01","TED novel fold AF-A0A2M7EHQ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1974064","Nitrospirae bacterium CG01_land_8_20_14_3_00_44_22"]]},{"id":"NCBITaxon:1974645","l":"Candidatus Magasanikbacteria bacterium CG10_big_fil_rev_8_21_14_0_10_36_16","na":2,"nb":1,"a":[["TED%3AAF-A0A2H0TXT1-F1-model_v4_TED01","TED novel fold AF-A0A2H0TXT1-F1-model_v4_TED01"],["TED%3AAF-A0A2H0TXT1-F1-model_v4_TED06","TED novel fold AF-A0A2H0TXT1-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A1974645","Candidatus Magasanikbacteria bacterium CG10_big_fil_rev_8_21_14_0_10_36_16"]]},{"id":"NCBITaxon:1974700","l":"Candidatus Nealsonbacteria bacterium CG02_land_8_20_14_3_00_40_11","na":2,"nb":1,"a":[["TED%3AAF-A0A2M7D756-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2M7D756-F1-model_v4_TED03"],["TED%3AAF-A0A2M7D8U7-F1-model_v4_TED01","TED novel fold AF-A0A2M7D8U7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1974700","Candidatus Nealsonbacteria bacterium CG02_land_8_20_14_3_00_40_11"]]},{"id":"NCBITaxon:1974834","l":"Candidatus Roizmanbacteria bacterium CG_4_8_14_3_um_filter_36_10","na":2,"nb":1,"a":[["TED%3AAF-A0A2M8GLJ4-F1-model_v4_TED01","TED novel fold AF-A0A2M8GLJ4-F1-model_v4_TED01"],["TED%3AAF-A0A2M8GNB7-F1-model_v4_TED01","TED novel fold AF-A0A2M8GNB7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1974834","Candidatus Roizmanbacteria bacterium CG_4_8_14_3_um_filter_36_10"]]},{"id":"NCBITaxon:197538","l":"Strombidium inclinatum","na":2,"nb":1,"a":[["TED%3AAF-A0A7S3IUV5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S3IUV5-F1-model_v4_TED02"],["TED%3AAF-A0A7S3N2I4-F1-model_v4_TED01","TED novel fold AF-A0A7S3N2I4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A197538","Strombidium inclinatum"]]},{"id":"NCBITaxon:1975567","l":"bacterium CG_4_9_14_3_um_filter_65_15","na":2,"nb":1,"a":[["TED%3AAF-A0A2M7YT17-F1-model_v4_TED04","TED novel fold AF-A0A2M7YT17-F1-model_v4_TED04"],["TED%3AAF-A0A2M7YWK0-F1-model_v4_TED01","TED novel fold AF-A0A2M7YWK0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1975567","bacterium CG_4_9_14_3_um_filter_65_15"]]},{"id":"NCBITaxon:1977876","l":"Acinetobacter sp. ANC 4558","na":2,"nb":1,"a":[["TED%3AAF-A0A241W1C8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A241W1C8-F1-model_v4_TED01"],["TED%3AAF-A0A2C9WTH4-F1-model_v4_TED01","TED novel fold AF-A0A2C9WTH4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1977876","Acinetobacter sp. ANC 4558"]]},{"id":"NCBITaxon:1977908","l":"Limnohabitans sp. JirII-31","na":1,"nb":2,"a":[["TED%3AAF-A0A2M6VQB3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2M6VQB3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1907725","Limnohabitans sp."],["NCBITaxon%3A1977908","Limnohabitans sp. JirII-31"]]},{"id":"NCBITaxon:1980636","l":"Woeseia sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2E6ZKI2-F1-model_v4_TED01","TED novel fold AF-A0A2E6ZKI2-F1-model_v4_TED01"],["TED%3AAF-A0A848VGI5-F1-model_v4_TED02","TED novel fold AF-A0A848VGI5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1980636","Woeseia sp."]]},{"id":"NCBITaxon:1982319","l":"Opitutia bacterium Tous-C1TDCM","na":2,"nb":1,"a":[["TED%3AAF-A0A2A2PZ60-F1-model_v4_TED02","TED novel fold AF-A0A2A2PZ60-F1-model_v4_TED02"],["TED%3AAF-A0A2A2QAY9-F1-model_v4_TED03","TED novel fold AF-A0A2A2QAY9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1982319","Opitutia bacterium Tous-C1TDCM"]]},{"id":"NCBITaxon:1982332","l":"Verrucomicrobiia bacterium Tous-C4TDCM","na":2,"nb":1,"a":[["TED%3AAF-A0A2A2Q6M6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A2Q6M6-F1-model_v4_TED01"],["TED%3AAF-A0A2A2QMI7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A2QMI7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1982332","Verrucomicrobiia bacterium Tous-C4TDCM"]]},{"id":"NCBITaxon:198466","l":"Streptococcus pyogenes MGAS315","na":2,"nb":1,"a":[["IDPO%3A0000006","order"],["Pfam%3APF05532","CsbD-like"]],"b":[["NCBITaxon%3A198466","Streptococcus pyogenes MGAS315"]]},{"id":"NCBITaxon:1986668","l":"Betaproteobacteria bacterium TMED41","na":2,"nb":1,"a":[["TED%3AAF-A0A1Z8QIS2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z8QIS2-F1-model_v4_TED01"],["TED%3AAF-A0A1Z8QC02-F1-model_v4_TED05","TED novel fold AF-A0A1Z8QC02-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1986668","Betaproteobacteria bacterium TMED41"]]},{"id":"NCBITaxon:1993866","l":"Lactobacillales bacterium","na":1,"nb":2,"a":[["TED%3AAF-A0A847B9V9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A847B9V9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1993866","Lactobacillales bacterium"],["NCBITaxon%3A2269374","Lactobacillus terrae"]]},{"id":"NCBITaxon:199441","l":"Halalkalibacter krulwichiae","na":1,"nb":2,"a":[["TED%3AAF-A0A1X9MDU1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X9MDU1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A199441","Halalkalibacter krulwichiae"],["NCBITaxon%3A1220588","Halalkalibacter krulwichiae NBRC 102362"]]},{"id":"NCBITaxon:200475","l":"Brumimicrobium glaciale","na":2,"nb":1,"a":[["TED%3AAF-A0A4Q4KLV2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q4KLV2-F1-model_v4_TED01"],["TED%3AAF-A0A4Q4KNV1-F1-model_v4_TED02","TED novel fold AF-A0A4Q4KNV1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A200475","Brumimicrobium glaciale"]]},{"id":"NCBITaxon:2004951","l":"Cordyceps sp. RAO-2017","na":2,"nb":1,"a":[["TED%3AAF-A0A2C5ZMY6-F1-model_v4_TED02","TED novel fold AF-A0A2C5ZMY6-F1-model_v4_TED02"],["TED%3AAF-A0A2C6AB72-F1-model_v4_TED02","TED novel fold AF-A0A2C6AB72-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2004951","Cordyceps sp. RAO-2017"]]},{"id":"NCBITaxon:2004952","l":"Ophiocordyceps camponoti-rufipedis","na":2,"nb":1,"a":[["TED%3AAF-A0A2C5ZA05-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2C5ZA05-F1-model_v4_TED03"],["TED%3AAF-A0A2C5YKA6-F1-model_v4_TED01","TED novel fold AF-A0A2C5YKA6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2004952","Ophiocordyceps camponoti-rufipedis"]]},{"id":"NCBITaxon:2006848","l":"Opitutaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A2E4J3I4-F1-model_v4_TED02","TED novel fold AF-A0A2E4J3I4-F1-model_v4_TED02"],["TED%3AAF-A0A2E4J5P7-F1-model_v4_TED04","TED novel fold AF-A0A2E4J5P7-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2006848","Opitutaceae bacterium"]]},{"id":"NCBITaxon:2007294","l":"Marine Group II euryarchaeote MED-G33","na":2,"nb":1,"a":[["TED%3AAF-A0A2A5VK90-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A5VK90-F1-model_v4_TED01"],["TED%3AAF-A0A2A5VQT0-F1-model_v4_TED05","TED novel fold AF-A0A2A5VQT0-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2007294","Marine Group II euryarchaeote MED-G33"]]},{"id":"NCBITaxon:2011094","l":"Coriobacteriaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A425WIX8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A425WIX8-F1-model_v4_TED02"],["TED%3AAF-A0A4S2F318-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S2F318-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2011094","Coriobacteriaceae bacterium"]]},{"id":"NCBITaxon:2012506","l":"Candidatus Altarchaeales archaeon ex4484_2","na":2,"nb":1,"a":[["TED%3AAF-A0A256ZLI0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A256ZLI0-F1-model_v4_TED01"],["TED%3AAF-A0A256ZNF3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A256ZNF3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2012506","Candidatus Altarchaeales archaeon ex4484_2"]]},{"id":"NCBITaxon:2012998","l":"candidate division LCP-89 bacterium B3_LCP","na":2,"nb":1,"a":[["TED%3AAF-A0A532UU55-F1-model_v4_TED01","TED novel fold AF-A0A532UU55-F1-model_v4_TED01"],["TED%3AAF-A0A532V3E1-F1-model_v4_TED01","TED novel fold AF-A0A532V3E1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2012998","candidate division LCP-89 bacterium B3_LCP"]]},{"id":"NCBITaxon:2013680","l":"Bacteroidetes bacterium HGW-Bacteroidetes-12","na":2,"nb":1,"a":[["TED%3AAF-A0A2N2ZU31-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2N2ZU31-F1-model_v4_TED04"],["TED%3AAF-A0A2N2ZU60-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N2ZU60-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013680","Bacteroidetes bacterium HGW-Bacteroidetes-12"]]},{"id":"NCBITaxon:2013720","l":"Betaproteobacteria bacterium HGW-Betaproteobacteria-8","na":2,"nb":1,"a":[["TED%3AAF-A0A2N2Q6B9-F1-model_v4_TED02","TED novel fold AF-A0A2N2Q6B9-F1-model_v4_TED02"],["TED%3AAF-A0A2N2Q6M1-F1-model_v4_TED01","TED novel fold AF-A0A2N2Q6M1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013720","Betaproteobacteria bacterium HGW-Betaproteobacteria-8"]]},{"id":"NCBITaxon:2013760","l":"Candidatus Dependentiae bacterium HGW-Dependentiae-1","na":2,"nb":1,"a":[["TED%3AAF-A0A2N2F5N0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N2F5N0-F1-model_v4_TED01"],["TED%3AAF-A0A2N2F5N0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N2F5N0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2013760","Candidatus Dependentiae bacterium HGW-Dependentiae-1"]]},{"id":"NCBITaxon:2013761","l":"Candidatus Dojkabacteria bacterium HGW-Dojkabacteria-1","na":2,"nb":1,"a":[["TED%3AAF-A0A2N2F3B3-F1-model_v4_TED01","TED novel fold AF-A0A2N2F3B3-F1-model_v4_TED01"],["TED%3AAF-A0A2N2F3N0-F1-model_v4_TED01","TED novel fold AF-A0A2N2F3N0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013761","Candidatus Dojkabacteria bacterium HGW-Dojkabacteria-1"]]},{"id":"NCBITaxon:2013820","l":"Methanomicrobiales archaeon HGW-Methanomicrobiales-4","na":2,"nb":1,"a":[["TED%3AAF-A0A2I0P3V8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I0P3V8-F1-model_v4_TED01"],["TED%3AAF-A0A2I0P3U6-F1-model_v4_TED02","TED novel fold AF-A0A2I0P3U6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2013820","Methanomicrobiales archaeon HGW-Methanomicrobiales-4"]]},{"id":"NCBITaxon:2013838","l":"Spirochaetae bacterium HGW-Spirochaetae-6","na":2,"nb":1,"a":[["TED%3AAF-A0A2I0NEL2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I0NEL2-F1-model_v4_TED01"],["TED%3AAF-A0A2I0NEM3-F1-model_v4_TED01","TED novel fold AF-A0A2I0NEM3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013838","Spirochaetae bacterium HGW-Spirochaetae-6"]]},{"id":"NCBITaxon:2014248","l":"Candidatus Kerfeldbacteria bacterium CG_4_10_14_0_8_um_filter_42_10","na":2,"nb":1,"a":[["TED%3AAF-A0A2M7RGB2-F1-model_v4_TED01","TED novel fold AF-A0A2M7RGB2-F1-model_v4_TED01"],["TED%3AAF-A0A2M7RH96-F1-model_v4_TED01","TED novel fold AF-A0A2M7RH96-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2014248","Candidatus Kerfeldbacteria bacterium CG_4_10_14_0_8_um_filter_42_10"]]},{"id":"NCBITaxon:2014261","l":"bacterium (Candidatus Blackallbacteria) CG17_big_fil_post_rev_8_21_14_2_50_48_46","na":2,"nb":1,"a":[["TED%3AAF-A0A2M7G1V9-F1-model_v4_TED02","TED novel fold AF-A0A2M7G1V9-F1-model_v4_TED02"],["TED%3AAF-A0A2M7G4F1-F1-model_v4_TED01","TED novel fold AF-A0A2M7G4F1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2014261","bacterium (Candidatus Blackallbacteria) CG17_big_fil_post_rev_8_21_14_2_50_48_46"]]},{"id":"NCBITaxon:2014529","l":"Nostoc sp. 'Peltigera membranacea cyanobiont' 210A","na":2,"nb":1,"a":[["TED%3AAF-A0A235I2L5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A235I2L5-F1-model_v4_TED01"],["TED%3AAF-A0A235HVT9-F1-model_v4_TED06","TED novel fold AF-A0A235HVT9-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A2014529","Nostoc sp. 'Peltigera membranacea cyanobiont' 210A"]]},{"id":"NCBITaxon:2014784","l":"Neisseriaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A431J1D1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A431J1D1-F1-model_v4_TED01"],["TED%3AAF-A0A431HS40-F1-model_v4_TED01","TED novel fold AF-A0A431HS40-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2014784","Neisseriaceae bacterium"]]},{"id":"NCBITaxon:2018025","l":"Kitasatospora sp. MMS16-BH015","na":2,"nb":1,"a":[["TED%3AAF-A0A2H5B0Y4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H5B0Y4-F1-model_v4_TED02"],["TED%3AAF-A0A2H5B820-F1-model_v4_TED02","TED novel fold AF-A0A2H5B820-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2018025","Kitasatospora sp. MMS16-BH015"]]},{"id":"NCBITaxon:2022749","l":"Sulfurimonas sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2G1XYB8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G1XYB8-F1-model_v4_TED01"],["TED%3AAF-A0A2G2CS60-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2G2CS60-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2022749","Sulfurimonas sp."]]},{"id":"NCBITaxon:2023178","l":"Leptospira levettii","na":2,"nb":1,"a":[["TED%3AAF-A0A2N0AQT8-F1-model_v4_TED01","TED novel fold AF-A0A2N0AQT8-F1-model_v4_TED01"],["TED%3AAF-A0A5F2DAR0-F1-model_v4_TED02","TED novel fold AF-A0A5F2DAR0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2023178","Leptospira levettii"]]},{"id":"NCBITaxon:2023182","l":"Leptospira brenneri","na":2,"nb":1,"a":[["TED%3AAF-A0A5F1Z3S3-F1-model_v4_TED02","TED novel fold AF-A0A5F1Z3S3-F1-model_v4_TED02"],["TED%3AAF-A0A5F1Z7W0-F1-model_v4_TED08","TED novel fold AF-A0A5F1Z7W0-F1-model_v4_TED08"]],"b":[["NCBITaxon%3A2023182","Leptospira brenneri"]]},{"id":"NCBITaxon:2024553","l":"Candidatus Viridilinea mediisalina","na":2,"nb":1,"a":[["TED%3AAF-A0A2A6RFR8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A6RFR8-F1-model_v4_TED01"],["TED%3AAF-A0A2A6RK58-F1-model_v4_TED02","TED novel fold AF-A0A2A6RK58-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2024553","Candidatus Viridilinea mediisalina"]]},{"id":"NCBITaxon:2024826","l":"Blastopirellula sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2E0B0H3-F1-model_v4_TED02","TED novel fold AF-A0A2E0B0H3-F1-model_v4_TED02"],["TED%3AAF-A0A2G2IUT2-F1-model_v4_TED02","TED novel fold AF-A0A2G2IUT2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2024826","Blastopirellula sp."]]},{"id":"NCBITaxon:2024833","l":"Gimesia sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2E2C1V0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E2C1V0-F1-model_v4_TED01"],["TED%3AAF-A0A2E7KM43-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2E7KM43-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2024833","Gimesia sp."]]},{"id":"NCBITaxon:2024839","l":"Marinovum sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2D7D514-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D7D514-F1-model_v4_TED01"],["TED%3AAF-A0A2D7JZ21-F1-model_v4_TED01","TED novel fold AF-A0A2D7JZ21-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024839","Marinovum sp."]]},{"id":"NCBITaxon:2024840","l":"Methylophaga sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2G2HZW2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G2HZW2-F1-model_v4_TED01"],["TED%3AAF-A0A2E2D735-F1-model_v4_TED01","TED novel fold AF-A0A2E2D735-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024840","Methylophaga sp."]]},{"id":"NCBITaxon:2024844","l":"Nitrospina sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A3C8C9N2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3C8C9N2-F1-model_v4_TED02"],["TED%3AAF-A0A3C8C840-F1-model_v4_TED03","TED novel fold AF-A0A3C8C840-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2024844","Nitrospina sp."]]},{"id":"NCBITaxon:2024850","l":"Peredibacter sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2E5C9S7-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A2E5C9S7-F1-model_v4_TED05"],["TED%3AAF-A0A2E5C9V8-F1-model_v4_TED02","TED novel fold AF-A0A2E5C9V8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2024850","Peredibacter sp."]]},{"id":"NCBITaxon:2024853","l":"Porticoccus sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2G2QMR8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G2QMR8-F1-model_v4_TED01"],["TED%3AAF-A0A2G2QS79-F1-model_v4_TED03","TED novel fold AF-A0A2G2QS79-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2024853","Porticoccus sp."]]},{"id":"NCBITaxon:2024889","l":"SAR324 cluster bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A432GFQ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A432GFQ8-F1-model_v4_TED01"],["TED%3AAF-A0A7X9ILB3-F1-model_v4_TED02","TED novel fold AF-A0A7X9ILB3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2024889","SAR324 cluster bacterium"]]},{"id":"NCBITaxon:2024893","l":"Acidiferrobacteraceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A2E6P5K1-F1-model_v4_TED03","TED novel fold AF-A0A2E6P5K1-F1-model_v4_TED03"],["TED%3AAF-A0A2E9IGP7-F1-model_v4_TED03","TED novel fold AF-A0A2E9IGP7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2024893","Acidiferrobacteraceae bacterium"]]},{"id":"NCBITaxon:2026304","l":"Flavobacterium sp. IR1","na":2,"nb":1,"a":[["TED%3AAF-A0A7L4TGE7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7L4TGE7-F1-model_v4_TED01"],["TED%3AAF-A0A7L4TGQ6-F1-model_v4_TED01","TED novel fold AF-A0A7L4TGQ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026304","Flavobacterium sp. IR1"]]},{"id":"NCBITaxon:2026717","l":"Candidatus Magasanikiibacteriota bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A349IPD9-F1-model_v4_TED04","TED novel fold AF-A0A349IPD9-F1-model_v4_TED04"],["TED%3AAF-A0A847VXL4-F1-model_v4_TED02","TED novel fold AF-A0A847VXL4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026717","Candidatus Magasanikiibacteriota bacterium"]]},{"id":"NCBITaxon:2026722","l":"Cellvibrionales bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A350J1R3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A350J1R3-F1-model_v4_TED01"],["TED%3AAF-A0A3D5SD53-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D5SD53-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026722","Cellvibrionales bacterium"]]},{"id":"NCBITaxon:2026725","l":"Chromatiales bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A520X6H8-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A520X6H8-F1-model_v4_TED05"],["TED%3AAF-A0A7C2AIC9-F1-model_v4_TED02","TED novel fold AF-A0A7C2AIC9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026725","Chromatiales bacterium"]]},{"id":"NCBITaxon:2026747","l":"Candidatus Heimdallarchaeota archaeon","na":2,"nb":1,"a":[["TED%3AAF-A0A842R7J3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A842R7J3-F1-model_v4_TED01"],["TED%3AAF-A0A497R3Q0-F1-model_v4_TED01","TED novel fold AF-A0A497R3Q0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026747","Candidatus Heimdallarchaeota archaeon"]]},{"id":"NCBITaxon:2026768","l":"Nitrosopumilales archaeon","na":2,"nb":1,"a":[["TED%3AAF-A0A835XA14-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A835XA14-F1-model_v4_TED02"],["TED%3AAF-A0A6G1YPX0-F1-model_v4_TED02","TED novel fold AF-A0A6G1YPX0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026768","Nitrosopumilales archaeon"]]},{"id":"NCBITaxon:2026775","l":"Candidatus Pelagibacteraceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A2D5WYN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D5WYN7-F1-model_v4_TED01"],["TED%3AAF-A0A2E5R6E3-F1-model_v4_TED02","TED novel fold AF-A0A2E5R6E3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026775","Candidatus Pelagibacteraceae bacterium"]]},{"id":"NCBITaxon:2026782","l":"Porticoccaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A2E0VJ56-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0VJ56-F1-model_v4_TED01"],["TED%3AAF-A0A351Q4J1-F1-model_v4_TED01","TED novel fold AF-A0A351Q4J1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026782","Porticoccaceae bacterium"]]},{"id":"NCBITaxon:2026785","l":"Rhodobiaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A2E5BQH7-F1-model_v4_TED01","TED novel fold AF-A0A2E5BQH7-F1-model_v4_TED01"],["TED%3AAF-A0A2E6NZZ9-F1-model_v4_TED01","TED novel fold AF-A0A2E6NZZ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026785","Rhodobiaceae bacterium"]]},{"id":"NCBITaxon:2026794","l":"Sutterellaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A3D4GBS5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3D4GBS5-F1-model_v4_TED03"],["TED%3AAF-A0A2E2R281-F1-model_v4_TED02","TED novel fold AF-A0A2E2R281-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026794","Sutterellaceae bacterium"]]},{"id":"NCBITaxon:2026798","l":"Trueperaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A5Q4G3Q5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5Q4G3Q5-F1-model_v4_TED02"],["TED%3AAF-A0A838IUG2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A838IUG2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026798","Trueperaceae bacterium"]]},{"id":"NCBITaxon:2026804","l":"Candidatus Woesebacteria bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A7T5RDP6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7T5RDP6-F1-model_v4_TED02"],["TED%3AAF-A0A3D4HBR5-F1-model_v4_TED01","TED novel fold AF-A0A3D4HBR5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026804","Candidatus Woesebacteria bacterium"]]},{"id":"NCBITaxon:2026806","l":"Woeseiaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A2D9M3K6-F1-model_v4_TED02","TED novel fold AF-A0A2D9M3K6-F1-model_v4_TED02"],["TED%3AAF-A0A7Y1TVN7-F1-model_v4_TED03","TED novel fold AF-A0A7Y1TVN7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2026806","Woeseiaceae bacterium"]]},{"id":"NCBITaxon:2026807","l":"Zetaproteobacteria bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A3M1HFQ6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A3M1HFQ6-F1-model_v4_TED04"],["TED%3AAF-A0A2A5ERT7-F1-model_v4_TED05","TED novel fold AF-A0A2A5ERT7-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2026807","Zetaproteobacteria bacterium"]]},{"id":"NCBITaxon:2026886","l":"Nitrosarchaeum sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A843CKT6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843CKT6-F1-model_v4_TED01"],["TED%3AAF-A0A846T5S4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A846T5S4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026886","Nitrosarchaeum sp."]]},{"id":"NCBITaxon:2028574","l":"Psittacicella gerlachiana","na":2,"nb":1,"a":[["TED%3AAF-A0A3A1YL73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A1YL73-F1-model_v4_TED01"],["TED%3AAF-A0A3A1Y8T7-F1-model_v4_TED01","TED novel fold AF-A0A3A1Y8T7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2028574","Psittacicella gerlachiana"]]},{"id":"NCBITaxon:2028575","l":"Psittacicella hinzii","na":2,"nb":1,"a":[["TED%3AAF-A0A3A1YFW7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A1YFW7-F1-model_v4_TED01"],["TED%3AAF-A0A3A1YMH4-F1-model_v4_TED01","TED novel fold AF-A0A3A1YMH4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2028575","Psittacicella hinzii"]]},{"id":"NCBITaxon:203","l":"Campylobacter rectus","na":1,"nb":2,"a":[["TED%3AAF-A0A6G5QQ81-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A6G5QQ81-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A203","Campylobacter rectus"],["NCBITaxon%3A553218","Campylobacter rectus RM3267"]]},{"id":"NCBITaxon:2030823","l":"Robiginitomaculum sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2G2G860-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2G2G860-F1-model_v4_TED02"],["TED%3AAF-A0A2G2LLT5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G2LLT5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2030823","Robiginitomaculum sp."]]},{"id":"NCBITaxon:2030880","l":"SAR86 cluster bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A2A4MT12-F1-model_v4_TED01","TED novel fold AF-A0A2A4MT12-F1-model_v4_TED01"],["TED%3AAF-A0A520N024-F1-model_v4_TED02","TED novel fold AF-A0A520N024-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2030880","SAR86 cluster bacterium"]]},{"id":"NCBITaxon:2033499","l":"Bacillus sp. AFS037270","na":2,"nb":1,"a":[["TED%3AAF-A0A2C1YQ20-F1-model_v4_TED01","TED novel fold AF-A0A2C1YQ20-F1-model_v4_TED01"],["TED%3AAF-A0A2C1ZAQ5-F1-model_v4_TED01","TED novel fold AF-A0A2C1ZAQ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2033499","Bacillus sp. AFS037270"]]},{"id":"NCBITaxon:2035407","l":"bacterium HR12","na":2,"nb":1,"a":[["TED%3AAF-A0A2H5WBP2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H5WBP2-F1-model_v4_TED01"],["TED%3AAF-A0A2H5WDV7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2H5WDV7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2035407","bacterium HR12"]]},{"id":"NCBITaxon:2043165","l":"Candidatus Sulfopaludibacter sp. SbA4","na":2,"nb":1,"a":[["TED%3AAF-A0A2U3JYH5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2U3JYH5-F1-model_v4_TED03"],["TED%3AAF-A0A2U3LY46-F1-model_v4_TED01","TED novel fold AF-A0A2U3LY46-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2043165","Candidatus Sulfopaludibacter sp. SbA4"]]},{"id":"NCBITaxon:2044595","l":"Candidatus Altimarinota bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A3D0UUF8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D0UUF8-F1-model_v4_TED02"],["TED%3AAF-A0A660MQW4-F1-model_v4_TED03","TED novel fold AF-A0A660MQW4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2044595","Candidatus Altimarinota bacterium"]]},{"id":"NCBITaxon:2044937","l":"candidate division KSB3 bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A2G6K8E3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G6K8E3-F1-model_v4_TED01"],["TED%3AAF-A0A2G6KFX6-F1-model_v4_TED01","TED novel fold AF-A0A2G6KFX6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2044937","candidate division KSB3 bacterium"]]},{"id":"NCBITaxon:2045445","l":"Rhodobacteraceae bacterium 4F10","na":2,"nb":1,"a":[["TED%3AAF-A0A2G1C1G8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2G1C1G8-F1-model_v4_TED03"],["TED%3AAF-A0A2G1BZQ5-F1-model_v4_TED02","TED novel fold AF-A0A2G1BZQ5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2045445","Rhodobacteraceae bacterium 4F10"]]},{"id":"NCBITaxon:204722","l":"Brucella suis 1330","na":2,"nb":1,"a":[["Pfam%3APF03625","Domain of unknown function DUF302"],["Pfam%3APF10634","Fe2+ transport protein"]],"b":[["NCBITaxon%3A204722","Brucella suis 1330"]]},{"id":"NCBITaxon:2051959","l":"Tunturiibacter lichenicola","na":2,"nb":1,"a":[["TED%3AAF-A0A7W8J8A0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W8J8A0-F1-model_v4_TED01"],["TED%3AAF-A0A7W8MT28-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W8MT28-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2051959","Tunturiibacter lichenicola"]]},{"id":"NCBITaxon:2052142","l":"Acidobacteriaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A7Y5RFN7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y5RFN7-F1-model_v4_TED02"],["TED%3AAF-A0A7Y5VIS3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y5VIS3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052142","Acidobacteriaceae bacterium"]]},{"id":"NCBITaxon:2052152","l":"Candidatus Nomurabacteria bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A354G2P8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A354G2P8-F1-model_v4_TED03"],["TED%3AAF-A0A7T9BFK0-F1-model_v4_TED01","TED novel fold AF-A0A7T9BFK0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052152","Candidatus Nomurabacteria bacterium"]]},{"id":"NCBITaxon:2052182","l":"Rhodanobacteraceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A522RM40-F1-model_v4_TED01","TED novel fold AF-A0A522RM40-F1-model_v4_TED01"],["TED%3AAF-A0A522RTT8-F1-model_v4_TED01","TED novel fold AF-A0A522RTT8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052182","Rhodanobacteraceae bacterium"]]},{"id":"NCBITaxon:2052185","l":"Syntrophobacteraceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A352PU63-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A352PU63-F1-model_v4_TED01"],["TED%3AAF-A0A3B8HTL6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3B8HTL6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2052185","Syntrophobacteraceae bacterium"]]},{"id":"NCBITaxon:2053187","l":"Rhodohalobacter barkolensis","na":2,"nb":1,"a":[["TED%3AAF-A0A2N0VHX0-F1-model_v4_TED02","TED novel fold AF-A0A2N0VHX0-F1-model_v4_TED02"],["TED%3AAF-A0A2N0VJJ6-F1-model_v4_TED02","TED novel fold AF-A0A2N0VJJ6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053187","Rhodohalobacter barkolensis"]]},{"id":"NCBITaxon:2053308","l":"Denitrovibrio sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2N6D8B9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N6D8B9-F1-model_v4_TED02"],["TED%3AAF-A0A2N6D5R6-F1-model_v4_TED02","TED novel fold AF-A0A2N6D5R6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053308","Denitrovibrio sp."]]},{"id":"NCBITaxon:2053494","l":"Acholeplasmatales bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A348WSM8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A348WSM8-F1-model_v4_TED03"],["TED%3AAF-A0A3D5RJM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3D5RJM9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2053494","Acholeplasmatales bacterium"]]},{"id":"NCBITaxon:2053516","l":"Balneolaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A356X2A1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A356X2A1-F1-model_v4_TED01"],["TED%3AAF-A0A356X8T9-F1-model_v4_TED01","TED novel fold AF-A0A356X8T9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053516","Balneolaceae bacterium"]]},{"id":"NCBITaxon:2053517","l":"Bdellovibrionales bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A838F4M8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A838F4M8-F1-model_v4_TED02"],["TED%3AAF-A0A838F0T0-F1-model_v4_TED04","TED novel fold AF-A0A838F0T0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2053517","Bdellovibrionales bacterium"]]},{"id":"NCBITaxon:2053554","l":"Candidatus Falkowiibacteriota bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A661TPV6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A661TPV6-F1-model_v4_TED02"],["TED%3AAF-A0A351SM32-F1-model_v4_TED02","TED novel fold AF-A0A351SM32-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053554","Candidatus Falkowiibacteriota bacterium"]]},{"id":"NCBITaxon:2053591","l":"Planctomycetales bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A354GQH8-F1-model_v4_TED02","TED novel fold AF-A0A354GQH8-F1-model_v4_TED02"],["TED%3AAF-A0A354GRH7-F1-model_v4_TED01","TED novel fold AF-A0A354GRH7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053591","Planctomycetales bacterium"]]},{"id":"NCBITaxon:2053620","l":"Succinivibrionaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A3C0CAV6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3C0CAV6-F1-model_v4_TED01"],["TED%3AAF-A0A3C0CA37-F1-model_v4_TED01","TED novel fold AF-A0A3C0CA37-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053620","Succinivibrionaceae bacterium"]]},{"id":"NCBITaxon:2054177","l":"Christensenellaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A7X9L123-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X9L123-F1-model_v4_TED01"],["TED%3AAF-A0A7X8HJN5-F1-model_v4_TED01","TED novel fold AF-A0A7X8HJN5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2054177","Christensenellaceae bacterium"]]},{"id":"NCBITaxon:2055768","l":"Cyanobacteria bacterium UBA11372","na":2,"nb":1,"a":[["TED%3AAF-A0A350XA13-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A350XA13-F1-model_v4_TED02"],["TED%3AAF-A0A350XDK6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A350XDK6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2055768","Cyanobacteria bacterium UBA11372"]]},{"id":"NCBITaxon:2055771","l":"Cyanobacteria bacterium UBA8553","na":2,"nb":1,"a":[["TED%3AAF-A0A3B8JEH6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B8JEH6-F1-model_v4_TED01"],["TED%3AAF-A0A3B8JT93-F1-model_v4_TED01","TED novel fold AF-A0A3B8JT93-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2055771","Cyanobacteria bacterium UBA8553"]]},{"id":"NCBITaxon:2055774","l":"Cyanobacteria bacterium UBA11367","na":2,"nb":1,"a":[["TED%3AAF-A0A352XGH6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A352XGH6-F1-model_v4_TED02"],["TED%3AAF-A0A352XHH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A352XHH3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2055774","Cyanobacteria bacterium UBA11367"]]},{"id":"NCBITaxon:2056316","l":"Candidatus Methanophagales archaeon","na":2,"nb":1,"a":[["TED%3AAF-A0A368TL25-F1-model_v4_TED01","TED novel fold AF-A0A368TL25-F1-model_v4_TED01"],["TED%3AAF-A0A849QVV8-F1-model_v4_TED01","TED novel fold AF-A0A849QVV8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2056316","Candidatus Methanophagales archaeon"]]},{"id":"NCBITaxon:2056317","l":"ANME-2 cluster archaeon","na":2,"nb":1,"a":[["TED%3AAF-A0A524PZU0-F1-model_v4_TED02","TED novel fold AF-A0A524PZU0-F1-model_v4_TED02"],["TED%3AAF-A0A7J9T369-F1-model_v4_TED01","TED novel fold AF-A0A7J9T369-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2056317","ANME-2 cluster archaeon"]]},{"id":"NCBITaxon:2056859","l":"Stenotrophomonas sp. HMWF023","na":2,"nb":1,"a":[["TED%3AAF-A0A2R7IPA4-F1-model_v4_TED09","TED novel fold AF-A0A2R7IPA4-F1-model_v4_TED09"],["TED%3AAF-A0A2R7IPB5-F1-model_v4_TED02","TED novel fold AF-A0A2R7IPB5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2056859","Stenotrophomonas sp. HMWF023"]]},{"id":"NCBITaxon:205921","l":"Streptococcus agalactiae A909","na":2,"nb":1,"a":[["Pfam%3APF08829","Alpha C protein N terminal"],["Pfam%3APF17480","AlphaC N-terminal domain 2"]],"b":[["NCBITaxon%3A205921","Streptococcus agalactiae A909"]]},{"id":"NCBITaxon:2065379","l":"Paracoccus jeotgali","na":2,"nb":1,"a":[["TED%3AAF-A0A2K9MH88-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2K9MH88-F1-model_v4_TED01"],["TED%3AAF-A0A2K9MJ90-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2K9MJ90-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2065379","Paracoccus jeotgali"]]},{"id":"NCBITaxon:2066021","l":"Desulfocapsa sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A432R1K4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A432R1K4-F1-model_v4_TED02"],["TED%3AAF-A0A432QNQ2-F1-model_v4_TED01","TED novel fold AF-A0A432QNQ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2066021","Desulfocapsa sp."]]},{"id":"NCBITaxon:2066053","l":"Bacillus sp. UMB0893","na":2,"nb":1,"a":[["TED%3AAF-A0A2N5FCU2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N5FCU2-F1-model_v4_TED02"],["TED%3AAF-A0A2N5FKU1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N5FKU1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2066053","Bacillus sp. UMB0893"]]},{"id":"NCBITaxon:2072417","l":"Candidatus Methylomirabilota bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A2U1S0N1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U1S0N1-F1-model_v4_TED01"],["TED%3AAF-A0A2U1S545-F1-model_v4_TED03","TED novel fold AF-A0A2U1S545-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2072417","Candidatus Methylomirabilota bacterium"]]},{"id":"NCBITaxon:2079197","l":"Telmatospirillum sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A6A8QF94-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A8QF94-F1-model_v4_TED01"],["TED%3AAF-A0A6A8QJ93-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A8QJ93-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2079197","Telmatospirillum sp."]]},{"id":"NCBITaxon:2080573","l":"Pseudoclavibacter sp. RFBA6","na":2,"nb":1,"a":[["TED%3AAF-A0A2S5X1W1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2S5X1W1-F1-model_v4_TED02"],["TED%3AAF-A0A2S5X6A4-F1-model_v4_TED02","TED novel fold AF-A0A2S5X6A4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2080573","Pseudoclavibacter sp. RFBA6"]]},{"id":"NCBITaxon:2081964","l":"Lysinibacillus sp. B2A1","na":2,"nb":1,"a":[["TED%3AAF-A0A2S0JJX6-F1-model_v4_TED01","TED novel fold AF-A0A2S0JJX6-F1-model_v4_TED01"],["TED%3AAF-A0A2S0JLZ8-F1-model_v4_TED01","TED novel fold AF-A0A2S0JLZ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2081964","Lysinibacillus sp. B2A1"]]},{"id":"NCBITaxon:2082308","l":"Sphaceloma murrayae","na":2,"nb":1,"a":[["TED%3AAF-A0A2K1QZX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2K1QZX4-F1-model_v4_TED01"],["TED%3AAF-A0A2K1R1V3-F1-model_v4_TED01","TED novel fold AF-A0A2K1R1V3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2082308","Sphaceloma murrayae"]]},{"id":"NCBITaxon:2083279","l":"Kaistia algarum","na":2,"nb":1,"a":[["TED%3AAF-A0A2S5U2U1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2S5U2U1-F1-model_v4_TED03"],["TED%3AAF-A0A2S5U3K4-F1-model_v4_TED01","TED novel fold AF-A0A2S5U3K4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2083279","Kaistia algarum"]]},{"id":"NCBITaxon:2099677","l":"Desulfuromonadaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A847C200-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A847C200-F1-model_v4_TED01"],["TED%3AAF-A0A847C290-F1-model_v4_TED02","TED novel fold AF-A0A847C290-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2099677","Desulfuromonadaceae bacterium"]]},{"id":"NCBITaxon:2099678","l":"Desulfuromonadales bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A7Y7NCW4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y7NCW4-F1-model_v4_TED01"],["TED%3AAF-A0A7Y7NAA7-F1-model_v4_TED01","TED novel fold AF-A0A7Y7NAA7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2099678","Desulfuromonadales bacterium"]]},{"id":"NCBITaxon:2099680","l":"Methanobacteriaceae archaeon","na":2,"nb":1,"a":[["TED%3AAF-A0A7L4NXH5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7L4NXH5-F1-model_v4_TED01"],["TED%3AAF-A0A842M5K6-F1-model_v4_TED01","TED novel fold AF-A0A842M5K6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2099680","Methanobacteriaceae archaeon"]]},{"id":"NCBITaxon:2099795","l":"Candidatus Rhabdochlamydia sp. T3358","na":2,"nb":1,"a":[["TED%3AAF-A0A486XQX9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A486XQX9-F1-model_v4_TED01"],["TED%3AAF-A0A486XN84-F1-model_v4_TED02","TED novel fold AF-A0A486XN84-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2099795","Candidatus Rhabdochlamydia sp. T3358"]]},{"id":"NCBITaxon:2100167","l":"Photorhabdus luminescens subsp. mexicana","na":1,"nb":2,"a":[["TED%3AAF-A0A4R4IMQ6-F1-model_v4_TED01","TED novel fold AF-A0A4R4IMQ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29488","Photorhabdus luminescens"],["NCBITaxon%3A2100167","Photorhabdus luminescens subsp. mexicana"]]},{"id":"NCBITaxon:2100533","l":"Sphingobacterium haloxyli","na":2,"nb":1,"a":[["TED%3AAF-A0A2S9J8F0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S9J8F0-F1-model_v4_TED01"],["TED%3AAF-A0A2S9J915-F1-model_v4_TED02","TED novel fold AF-A0A2S9J915-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2100533","Sphingobacterium haloxyli"]]},{"id":"NCBITaxon:2107694","l":"Aphanothece hegewaldii CCALA 016","na":2,"nb":1,"a":[["TED%3AAF-A0A2T1LQB3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T1LQB3-F1-model_v4_TED01"],["TED%3AAF-A0A2T1LZQ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T1LZQ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2107694","Aphanothece hegewaldii CCALA 016"]]},{"id":"NCBITaxon:2107698","l":"Stenomitos frigidus ULC18","na":2,"nb":1,"a":[["TED%3AAF-A0A2T1DVW2-F1-model_v4_TED01","TED novel fold AF-A0A2T1DVW2-F1-model_v4_TED01"],["TED%3AAF-A0A2T1DXN5-F1-model_v4_TED01","TED novel fold AF-A0A2T1DXN5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2107698","Stenomitos frigidus ULC18"]]},{"id":"NCBITaxon:2107700","l":"filamentous cyanobacterium CCP2","na":2,"nb":1,"a":[["TED%3AAF-A0A2T1CHV0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T1CHV0-F1-model_v4_TED01"],["TED%3AAF-A0A2T1CQA7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2T1CQA7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2107700","filamentous cyanobacterium CCP2"]]},{"id":"NCBITaxon:2107701","l":"filamentous cyanobacterium CCP5","na":2,"nb":1,"a":[["TED%3AAF-A0A2P8VY56-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2P8VY56-F1-model_v4_TED02"],["TED%3AAF-A0A2P8WFD1-F1-model_v4_TED02","TED novel fold AF-A0A2P8WFD1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2107701","filamentous cyanobacterium CCP5"]]},{"id":"NCBITaxon:2107705","l":"filamentous cyanobacterium Phorm 46","na":2,"nb":1,"a":[["TED%3AAF-A0A2T1DSP8-F1-model_v4_TED02","TED novel fold AF-A0A2T1DSP8-F1-model_v4_TED02"],["TED%3AAF-A0A2T1EEX4-F1-model_v4_TED01","TED novel fold AF-A0A2T1EEX4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2107705","filamentous cyanobacterium Phorm 46"]]},{"id":"NCBITaxon:2112","l":"Mycoplasmopsis bovigenitalium","na":1,"nb":2,"a":[["TED%3AAF-A0A449A8A6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A449A8A6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2112","Mycoplasmopsis bovigenitalium"],["NCBITaxon%3A1188235","Mycoplasmopsis bovigenitalium 51080"]]},{"id":"NCBITaxon:2113","l":"Mycoplasmopsis californica","na":1,"nb":2,"a":[["TED%3AAF-A0A059XW28-F1-model_v4_TED04","TED novel fold AF-A0A059XW28-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2113","Mycoplasmopsis californica"],["NCBITaxon%3A1397850","Mycoplasmopsis californica HAZ160_1"]]},{"id":"NCBITaxon:2116516","l":"Sphingobacteriales bacterium UPWRP_1","na":2,"nb":1,"a":[["TED%3AAF-A0A2P7TMB8-F1-model_v4_TED01","TED novel fold AF-A0A2P7TMB8-F1-model_v4_TED01"],["TED%3AAF-A0A2P7TQ92-F1-model_v4_TED02","TED novel fold AF-A0A2P7TQ92-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2116516","Sphingobacteriales bacterium UPWRP_1"]]},{"id":"NCBITaxon:2126342","l":"Candidatus Kentrum sp. LFY","na":2,"nb":1,"a":[["TED%3AAF-A0A450V704-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A450V704-F1-model_v4_TED01"],["TED%3AAF-A0A450W6Z3-F1-model_v4_TED02","TED novel fold AF-A0A450W6Z3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2126342","Candidatus Kentrum sp. LFY"]]},{"id":"NCBITaxon:2135466","l":"Leifsonia sp. OV430","na":2,"nb":1,"a":[["TED%3AAF-A0A420X9C0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A420X9C0-F1-model_v4_TED01"],["TED%3AAF-A0A420X9H3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A420X9H3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2135466","Leifsonia sp. OV430"]]},{"id":"NCBITaxon:2135469","l":"Filimonas sp. YR581","na":2,"nb":1,"a":[["TED%3AAF-A0A2U0ZFR8-F1-model_v4_TED02","TED novel fold AF-A0A2U0ZFR8-F1-model_v4_TED02"],["TED%3AAF-A0A2U0ZFX6-F1-model_v4_TED01","TED novel fold AF-A0A2U0ZFX6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2135469","Filimonas sp. YR581"]]},{"id":"NCBITaxon:2135615","l":"Stappia sp. ARW1T","na":2,"nb":1,"a":[["TED%3AAF-A0A419YX15-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A419YX15-F1-model_v4_TED01"],["TED%3AAF-A0A419YYJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A419YYJ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2135615","Stappia sp. ARW1T"]]},{"id":"NCBITaxon:2135741","l":"Bacillus sp. OV186","na":2,"nb":1,"a":[["TED%3AAF-A0A2T5S6C1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T5S6C1-F1-model_v4_TED01"],["TED%3AAF-A0A2T5SBX6-F1-model_v4_TED01","TED novel fold AF-A0A2T5SBX6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2135741","Bacillus sp. OV186"]]},{"id":"NCBITaxon:2136176","l":"Deinococcus arcticus","na":2,"nb":1,"a":[["TED%3AAF-A0A2T3W9E4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T3W9E4-F1-model_v4_TED01"],["TED%3AAF-A0A2T3W7H7-F1-model_v4_TED03","TED novel fold AF-A0A2T3W7H7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2136176","Deinococcus arcticus"]]},{"id":"NCBITaxon:2148","l":"Acholeplasma laidlawii","na":1,"nb":2,"a":[["TED%3AAF-A0A553IH20-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A553IH20-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2148","Acholeplasma laidlawii"],["NCBITaxon%3A441768","Acholeplasma laidlawii PG-8A"]]},{"id":"NCBITaxon:215243","l":"Exophiala oligosperma","na":2,"nb":1,"a":[["TED%3AAF-A0A0D2AWG1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0D2AWG1-F1-model_v4_TED02"],["TED%3AAF-A0A0D2DVN6-F1-model_v4_TED02","TED novel fold AF-A0A0D2DVN6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A215243","Exophiala oligosperma"]]},{"id":"NCBITaxon:215250","l":"Acaromyces ingoldii","na":2,"nb":1,"a":[["TED%3AAF-A0A316YKZ9-F1-model_v4_TED01","TED novel fold AF-A0A316YKZ9-F1-model_v4_TED01"],["TED%3AAF-A0A316Z0J2-F1-model_v4_TED02","TED novel fold AF-A0A316Z0J2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A215250","Acaromyces ingoldii"]]},{"id":"NCBITaxon:2161865","l":"Opitutaceae bacterium EW11","na":2,"nb":1,"a":[["TED%3AAF-A0A2T6DTI1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2T6DTI1-F1-model_v4_TED03"],["TED%3AAF-A0A2T6E1F8-F1-model_v4_TED03","TED novel fold AF-A0A2T6E1F8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2161865","Opitutaceae bacterium EW11"]]},{"id":"NCBITaxon:2163","l":"Methanobacterium ivanovii","na":2,"nb":1,"a":[["PROSITE%3APS00839","Uroporphyrin-III C-methyltransferase signature 1"],["PROSITE%3APS00840","Uroporphyrin-III C-methyltransferase signature 2"]],"b":[["NCBITaxon%3A2163","Methanobacterium ivanovii"]]},{"id":"NCBITaxon:2164130","l":"Cyanobium sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2W6ZT90-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2W6ZT90-F1-model_v4_TED02"],["TED%3AAF-A0A4P5VPF8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4P5VPF8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2164130","Cyanobium sp."]]},{"id":"NCBITaxon:2164131","l":"Snowella sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A2W7BHM9-F1-model_v4_TED01","TED novel fold AF-A0A2W7BHM9-F1-model_v4_TED01"],["TED%3AAF-A0A2W7BNF2-F1-model_v4_TED02","TED novel fold AF-A0A2W7BNF2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2164131","Snowella sp."]]},{"id":"NCBITaxon:216427","l":"Mesoplasma chauliocola","na":1,"nb":2,"a":[["TED%3AAF-A0A249SN95-F1-model_v4_TED02","TED novel fold AF-A0A249SN95-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A216427","Mesoplasma chauliocola"],["NCBITaxon%3A1336232","Mesoplasma chauliocola ATCC 49578"]]},{"id":"NCBITaxon:216591","l":"Burkholderia cenocepacia J2315","na":1,"nb":2,"a":[["Pfam%3APF04199","Putative cyclase"]],"b":[["NCBITaxon%3A95486","Burkholderia cenocepacia"],["NCBITaxon%3A216591","Burkholderia cenocepacia J2315"]]},{"id":"NCBITaxon:216595","l":"Pseudomonas [fluorescens] SBW25","na":2,"nb":1,"a":[["Pfam%3APF04996","Succinylarginine dihydrolase"],["TED%3AAF-A0A0G4E5V4-F1-model_v4_TED01","TED novel fold AF-A0A0G4E5V4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A216595","Pseudomonas [fluorescens] SBW25"]]},{"id":"NCBITaxon:216931","l":"Spiroplasma alleghenense","na":1,"nb":2,"a":[["TED%3AAF-A0A345Z4J0-F1-model_v4_TED03","TED novel fold AF-A0A345Z4J0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A216931","Spiroplasma alleghenense"],["NCBITaxon%3A1336750","Spiroplasma alleghenense PLHS-1"]]},{"id":"NCBITaxon:216942","l":"Spiroplasma litorale","na":2,"nb":1,"a":[["TED%3AAF-A0A0K1W1A0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0K1W1A0-F1-model_v4_TED02"],["TED%3AAF-A0A0K1W1A0-F1-model_v4_TED05","TED novel fold AF-A0A0K1W1A0-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A216942","Spiroplasma litorale"]]},{"id":"NCBITaxon:2169593","l":"Nitrososphaeraceae archaeon","na":2,"nb":1,"a":[["TED%3AAF-A0A6A7LBX9-F1-model_v4_TED01","TED novel fold AF-A0A6A7LBX9-F1-model_v4_TED01"],["TED%3AAF-A0A6A7LKX5-F1-model_v4_TED01","TED novel fold AF-A0A6A7LKX5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2169593","Nitrososphaeraceae archaeon"]]},{"id":"NCBITaxon:217090","l":"Paenibacillus pasadenensis","na":1,"nb":2,"a":[["TED%3AAF-A0A2N5N237-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N5N237-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A217090","Paenibacillus pasadenensis"],["NCBITaxon%3A1122923","Paenibacillus pasadenensis DSM 19293"]]},{"id":"NCBITaxon:2171976","l":"Agriterribacter soli","na":2,"nb":1,"a":[["TED%3AAF-A0A2T7QCA4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T7QCA4-F1-model_v4_TED01"],["TED%3AAF-A0A2T7QFL0-F1-model_v4_TED01","TED novel fold AF-A0A2T7QFL0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2171976","Agriterribacter soli"]]},{"id":"NCBITaxon:2175644","l":"Curtobacterium sp. MCSS17_016","na":2,"nb":1,"a":[["TED%3AAF-A0A2W1TJ21-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W1TJ21-F1-model_v4_TED01"],["TED%3AAF-A0A2W1TIH0-F1-model_v4_TED01","TED novel fold AF-A0A2W1TIH0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2175644","Curtobacterium sp. MCSS17_016"]]},{"id":"NCBITaxon:2180","l":"Methanothermus fervidus","na":1,"nb":2,"a":[["Pfam%3APF09130","Domain of unknown function (DUF1932)"]],"b":[["NCBITaxon%3A2180","Methanothermus fervidus"],["NCBITaxon%3A523846","Methanothermus fervidus DSM 2088"]]},{"id":"NCBITaxon:218208","l":"Desulfatibacillum aliphaticivorans","na":1,"nb":2,"a":[["TED%3AAF-B8FC96-F1-model_v4_TED02","TED highly-symmetric fold AF-B8FC96-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A218208","Desulfatibacillum aliphaticivorans"],["NCBITaxon%3A1121392","Desulfatibacillum aliphaticivorans DSM 15576"]]},{"id":"NCBITaxon:2183582","l":"Saliniradius amylolyticus","na":2,"nb":1,"a":[["TED%3AAF-A0A2S2E167-F1-model_v4_TED01","TED novel fold AF-A0A2S2E167-F1-model_v4_TED01"],["TED%3AAF-A0A2S2E2D0-F1-model_v4_TED01","TED novel fold AF-A0A2S2E2D0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2183582","Saliniradius amylolyticus"]]},{"id":"NCBITaxon:218497","l":"Chlamydia abortus S26/3","na":1,"nb":2,"a":[["Pfam%3APF07578","Lipid A Biosynthesis N-terminal domain"]],"b":[["NCBITaxon%3A83555","Chlamydia abortus"],["NCBITaxon%3A218497","Chlamydia abortus S26/3"]]},{"id":"NCBITaxon:218673","l":"Sulfitobacter dubius","na":1,"nb":2,"a":[["TED%3AAF-A0A1I2SP51-F1-model_v4_TED02","TED novel fold AF-A0A1I2SP51-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A218673","Sulfitobacter dubius"],["NCBITaxon%3A1903071","Sulfitobacter sp."]]},{"id":"NCBITaxon:218821","l":"Amycolatopsis pretoriensis","na":2,"nb":1,"a":[["TED%3AAF-A0A1H5RH46-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H5RH46-F1-model_v4_TED02"],["TED%3AAF-A0A1H5RIK5-F1-model_v4_TED01","TED novel fold AF-A0A1H5RIK5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A218821","Amycolatopsis pretoriensis"]]},{"id":"NCBITaxon:2189","l":"Methanotorris igneus","na":1,"nb":2,"a":[["Pfam%3APF13207","AAA domain"]],"b":[["NCBITaxon%3A2189","Methanotorris igneus"],["NCBITaxon%3A880724","Methanotorris igneus Kol 5"]]},{"id":"NCBITaxon:2190","l":"Methanocaldococcus jannaschii","na":1,"nb":2,"a":[["TED%3AAF-A0A832WL57-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A832WL57-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2190","Methanocaldococcus jannaschii"],["NCBITaxon%3A243232","Methanocaldococcus jannaschii DSM 2661"]]},{"id":"NCBITaxon:2200906","l":"endosymbiont of Galathealinum brachiosum","na":2,"nb":1,"a":[["TED%3AAF-A0A370D976-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A370D976-F1-model_v4_TED01"],["TED%3AAF-A0A370DP35-F1-model_v4_TED02","TED novel fold AF-A0A370DP35-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2200906","endosymbiont of Galathealinum brachiosum"]]},{"id":"NCBITaxon:2202203","l":"Leptospira stimsonii","na":2,"nb":1,"a":[["TED%3AAF-A0A396Z2C7-F1-model_v4_TED01","TED novel fold AF-A0A396Z2C7-F1-model_v4_TED01"],["TED%3AAF-A0A396Z7U2-F1-model_v4_TED02","TED novel fold AF-A0A396Z7U2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2202203","Leptospira stimsonii"]]},{"id":"NCBITaxon:2202894","l":"Pseudomonas sp. RW407","na":2,"nb":1,"a":[["TED%3AAF-A0A2V2T3H1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V2T3H1-F1-model_v4_TED01"],["TED%3AAF-A0A2V2SN48-F1-model_v4_TED01","TED novel fold AF-A0A2V2SN48-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2202894","Pseudomonas sp. RW407"]]},{"id":"NCBITaxon:2203195","l":"Amycolatopsis sp. WAC 01376","na":2,"nb":1,"a":[["TED%3AAF-A0A428XAC6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A428XAC6-F1-model_v4_TED02"],["TED%3AAF-A0A428Y6H5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A428Y6H5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2203195","Amycolatopsis sp. WAC 01376"]]},{"id":"NCBITaxon:2211140","l":"Acidisarcina polymorpha","na":2,"nb":1,"a":[["TED%3AAF-A0A2Z5FS30-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z5FS30-F1-model_v4_TED01"],["TED%3AAF-A0A2Z5G280-F1-model_v4_TED03","TED novel fold AF-A0A2Z5G280-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2211140","Acidisarcina polymorpha"]]},{"id":"NCBITaxon:2212850","l":"Halosegnis rubeus","na":2,"nb":1,"a":[["TED%3AAF-A0A5N5U3N4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5N5U3N4-F1-model_v4_TED02"],["TED%3AAF-A0A5N5U6C0-F1-model_v4_TED01","TED novel fold AF-A0A5N5U6C0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2212850","Halosegnis rubeus"]]},{"id":"NCBITaxon:2219043","l":"Capsulimonas corticalis","na":2,"nb":1,"a":[["TED%3AAF-A0A402D0M5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A402D0M5-F1-model_v4_TED02"],["TED%3AAF-A0A402D2D4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A402D2D4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2219043","Capsulimonas corticalis"]]},{"id":"NCBITaxon:2219161","l":"Putridiphycobacter roseus","na":1,"nb":2,"a":[["TED%3AAF-A0A2W1NR84-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W1NR84-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1198295","Halopenitus salinus"],["NCBITaxon%3A2219161","Putridiphycobacter roseus"]]},{"id":"NCBITaxon:221988","l":"[Mannheimia] succiniciproducens MBEL55E","na":2,"nb":1,"a":[["Pfam%3APF27507","Co-chaperone DjlA transmembrane domain"],["PROSITE%3APS01335","Methylglyoxal synthase active site"]],"b":[["NCBITaxon%3A221988","[Mannheimia] succiniciproducens MBEL55E"]]},{"id":"NCBITaxon:223967","l":"Methylorubrum populi","na":1,"nb":2,"a":[["TED%3AAF-A0A161JLG1-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A161JLG1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A223967","Methylorubrum populi"],["NCBITaxon%3A441620","Methylorubrum populi BJ001"]]},{"id":"NCBITaxon:2249217","l":"Corallococcus sp. H22C18031201","na":2,"nb":1,"a":[["TED%3AAF-A0A3A5FZT0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A5FZT0-F1-model_v4_TED01"],["TED%3AAF-A0A3A5GG84-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A5GG84-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2249217","Corallococcus sp. H22C18031201"]]},{"id":"NCBITaxon:2250580","l":"Blastococcus sp. TF02A-30","na":2,"nb":1,"a":[["TED%3AAF-A0A367AA69-F1-model_v4_TED01","TED novel fold AF-A0A367AA69-F1-model_v4_TED01"],["TED%3AAF-A0A367AG13-F1-model_v4_TED02","TED novel fold AF-A0A367AG13-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2250580","Blastococcus sp. TF02A-30"]]},{"id":"NCBITaxon:2250710","l":"candidate division TA06 bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A523URQ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A523URQ4-F1-model_v4_TED01"],["TED%3AAF-A0A660SDZ3-F1-model_v4_TED01","TED novel fold AF-A0A660SDZ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2250710","candidate division TA06 bacterium"]]},{"id":"NCBITaxon:225324","l":"Enhydrobacter aerosaccus","na":1,"nb":2,"a":[["TED%3AAF-A0A1T4TCH1-F1-model_v4_TED01","TED novel fold AF-A0A1T4TCH1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A225324","Enhydrobacter aerosaccus"],["NCBITaxon%3A553217","Enhydrobacter aerosaccus SK60"]]},{"id":"NCBITaxon:225849","l":"Shewanella piezotolerans WP3","na":1,"nb":2,"a":[["TED%3AAF-B8CPC1-F1-model_v4_TED01","TED novel fold AF-B8CPC1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A404011","Shewanella piezotolerans"],["NCBITaxon%3A225849","Shewanella piezotolerans WP3"]]},{"id":"NCBITaxon:2268139","l":"Thermoproteus sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A831UYY9-F1-model_v4_TED01","TED novel fold AF-A0A831UYY9-F1-model_v4_TED01"],["TED%3AAF-A0A831V605-F1-model_v4_TED02","TED novel fold AF-A0A831V605-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2268139","Thermoproteus sp."]]},{"id":"NCBITaxon:2268195","l":"Methanomicrobia archaeon","na":2,"nb":1,"a":[["TED%3AAF-A0A7J3WNF7-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7J3WNF7-F1-model_v4_TED04"],["TED%3AAF-A0A7J3WP17-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J3WP17-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2268195","Methanomicrobia archaeon"]]},{"id":"NCBITaxon:2268202","l":"Synergistota bacterium","na":1,"nb":2,"a":[["TED%3AAF-A0A7C1DQE8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C1DQE8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A3029084","Aminithiophilus ramosus"],["NCBITaxon%3A2268202","Synergistota bacterium"]]},{"id":"NCBITaxon:227377","l":"Coxiella burnetii RSA 493","na":2,"nb":1,"a":[["Pfam%3APF27266","CBUA0006 C-terminal domain"],["Pfam%3APF01548","Transposase"]],"b":[["NCBITaxon%3A227377","Coxiella burnetii RSA 493"]]},{"id":"NCBITaxon:2282215","l":"Corallincola holothuriorum","na":2,"nb":1,"a":[["TED%3AAF-A0A368NLP9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A368NLP9-F1-model_v4_TED02"],["TED%3AAF-A0A368NKW7-F1-model_v4_TED01","TED novel fold AF-A0A368NKW7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2282215","Corallincola holothuriorum"]]},{"id":"NCBITaxon:2282649","l":"Chitinophaga silvatica","na":2,"nb":1,"a":[["TED%3AAF-A0A3E1Y456-F1-model_v4_TED02","TED novel fold AF-A0A3E1Y456-F1-model_v4_TED02"],["TED%3AAF-A0A3E1YH46-F1-model_v4_TED02","TED novel fold AF-A0A3E1YH46-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2282649","Chitinophaga silvatica"]]},{"id":"NCBITaxon:2283384","l":"Psychrilyobacter sp. S5","na":2,"nb":1,"a":[["TED%3AAF-A0A369XVN8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A369XVN8-F1-model_v4_TED01"],["TED%3AAF-A0A369XXT0-F1-model_v4_TED01","TED novel fold AF-A0A369XXT0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2283384","Psychrilyobacter sp. S5"]]},{"id":"NCBITaxon:2283433","l":"Oceanispirochaeta sp. M1","na":2,"nb":1,"a":[["TED%3AAF-A0A370APH3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A370APH3-F1-model_v4_TED02"],["TED%3AAF-A0A370AU59-F1-model_v4_TED02","TED novel fold AF-A0A370AU59-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2283433","Oceanispirochaeta sp. M1"]]},{"id":"NCBITaxon:2291710","l":"Dokdonella sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A833GMB4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A833GMB4-F1-model_v4_TED02"],["TED%3AAF-A0A5C7ZRS8-F1-model_v4_TED01","TED novel fold AF-A0A5C7ZRS8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2291710","Dokdonella sp."]]},{"id":"NCBITaxon:2291814","l":"Chitinophaga silvisoli","na":2,"nb":1,"a":[["TED%3AAF-A0A3E1NS54-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3E1NS54-F1-model_v4_TED02"],["TED%3AAF-A0A3E1NMZ4-F1-model_v4_TED01","TED novel fold AF-A0A3E1NMZ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2291814","Chitinophaga silvisoli"]]},{"id":"NCBITaxon:229204","l":"Flavobacterium frigoris","na":1,"nb":2,"a":[["TED%3AAF-A0A1H9S675-F1-model_v4_TED01","TED novel fold AF-A0A1H9S675-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A229204","Flavobacterium frigoris"],["NCBITaxon%3A1086011","Flavobacterium frigoris PS1"]]},{"id":"NCBITaxon:2292277","l":"Absiella sp. AM27-20","na":2,"nb":1,"a":[["TED%3AAF-A0A417K626-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A417K626-F1-model_v4_TED02"],["TED%3AAF-A0A417K670-F1-model_v4_TED01","TED novel fold AF-A0A417K670-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292277","Absiella sp. AM27-20"]]},{"id":"NCBITaxon:2292372","l":"Ruminococcus sp. AM42-11","na":2,"nb":1,"a":[["TED%3AAF-A0A417C8A2-F1-model_v4_TED01","TED novel fold AF-A0A417C8A2-F1-model_v4_TED01"],["TED%3AAF-A0A417CUL9-F1-model_v4_TED02","TED novel fold AF-A0A417CUL9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2292372","Ruminococcus sp. AM42-11"]]},{"id":"NCBITaxon:2292702","l":"Adonisia turfae CCMR0081","na":2,"nb":1,"a":[["TED%3AAF-A0A6M0RXW6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A6M0RXW6-F1-model_v4_TED03"],["TED%3AAF-A0A6M0RJE0-F1-model_v4_TED03","TED novel fold AF-A0A6M0RJE0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2292702","Adonisia turfae CCMR0081"]]},{"id":"NCBITaxon:2292889","l":"Firmicutes bacterium AF36-3BH","na":2,"nb":1,"a":[["TED%3AAF-A0A416D5W5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A416D5W5-F1-model_v4_TED02"],["TED%3AAF-A0A416D6M6-F1-model_v4_TED01","TED novel fold AF-A0A416D6M6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292889","Firmicutes bacterium AF36-3BH"]]},{"id":"NCBITaxon:2292938","l":"Bacteroides sp. AM16-13","na":2,"nb":1,"a":[["TED%3AAF-A0A372Z677-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A372Z677-F1-model_v4_TED01"],["TED%3AAF-A0A372Z139-F1-model_v4_TED02","TED novel fold AF-A0A372Z139-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2292938","Bacteroides sp. AM16-13"]]},{"id":"NCBITaxon:2293039","l":"Clostridium sp. OF10-22XD","na":2,"nb":1,"a":[["TED%3AAF-A0A3R6XZD9-F1-model_v4_TED01","TED novel fold AF-A0A3R6XZD9-F1-model_v4_TED01"],["TED%3AAF-A0A3R6XZD9-F1-model_v4_TED02","TED novel fold AF-A0A3R6XZD9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2293039","Clostridium sp. OF10-22XD"]]},{"id":"NCBITaxon:2293112","l":"Odoribacter sp. OF09-27XD","na":2,"nb":1,"a":[["TED%3AAF-A0A7Z6S5M8-F1-model_v4_TED02","TED novel fold AF-A0A7Z6S5M8-F1-model_v4_TED02"],["TED%3AAF-A0A7Z6S656-F1-model_v4_TED01","TED novel fold AF-A0A7Z6S656-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293112","Odoribacter sp. OF09-27XD"]]},{"id":"NCBITaxon:2293138","l":"Roseburia sp. AM59-24XD","na":2,"nb":1,"a":[["TED%3AAF-A0A416HJU1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A416HJU1-F1-model_v4_TED02"],["TED%3AAF-A0A416HH95-F1-model_v4_TED01","TED novel fold AF-A0A416HH95-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293138","Roseburia sp. AM59-24XD"]]},{"id":"NCBITaxon:2293149","l":"Ruminococcus sp. AF16-50","na":2,"nb":1,"a":[["TED%3AAF-A0A373YE22-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A373YE22-F1-model_v4_TED02"],["TED%3AAF-A0A373XS09-F1-model_v4_TED01","TED novel fold AF-A0A373XS09-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293149","Ruminococcus sp. AF16-50"]]},{"id":"NCBITaxon:2293192","l":"Ruminococcus sp. AM27-16","na":2,"nb":1,"a":[["TED%3AAF-A0A417JFT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A417JFT8-F1-model_v4_TED01"],["TED%3AAF-A0A417JTB0-F1-model_v4_TED01","TED novel fold AF-A0A417JTB0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293192","Ruminococcus sp. AM27-16"]]},{"id":"NCBITaxon:2293212","l":"Ruminococcus sp. AM40-10AC","na":2,"nb":1,"a":[["TED%3AAF-A0A417DBZ7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A417DBZ7-F1-model_v4_TED02"],["TED%3AAF-A0A417DNP2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A417DNP2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2293212","Ruminococcus sp. AM40-10AC"]]},{"id":"NCBITaxon:2294117","l":"Hydrogenophaga borbori","na":2,"nb":1,"a":[["TED%3AAF-A0A372EI89-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A372EI89-F1-model_v4_TED01"],["TED%3AAF-A0A372EFE8-F1-model_v4_TED01","TED novel fold AF-A0A372EFE8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2294117","Hydrogenophaga borbori"]]},{"id":"NCBITaxon:229535","l":"Penicillium nordicum","na":2,"nb":1,"a":[["TED%3AAF-A0A0M8NW73-F1-model_v4_TED02","TED novel fold AF-A0A0M8NW73-F1-model_v4_TED02"],["TED%3AAF-A0A0N0RXF0-F1-model_v4_TED02","TED novel fold AF-A0A0N0RXF0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A229535","Penicillium nordicum"]]},{"id":"NCBITaxon:2302943","l":"Coprococcus sp. AF38-1","na":2,"nb":1,"a":[["TED%3AAF-A0A3A6JFT0-F1-model_v4_TED01","TED novel fold AF-A0A3A6JFT0-F1-model_v4_TED01"],["TED%3AAF-A0A3A6JT15-F1-model_v4_TED01","TED novel fold AF-A0A3A6JT15-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2302943","Coprococcus sp. AF38-1"]]},{"id":"NCBITaxon:2305244","l":"Lachnospiraceae bacterium OF11-28","na":2,"nb":1,"a":[["TED%3AAF-A0A373DGG0-F1-model_v4_TED04","TED novel fold AF-A0A373DGG0-F1-model_v4_TED04"],["TED%3AAF-A0A373DHI9-F1-model_v4_TED02","TED novel fold AF-A0A373DHI9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2305244","Lachnospiraceae bacterium OF11-28"]]},{"id":"NCBITaxon:230658","l":"Paraeggerthella hongkongensis","na":1,"nb":2,"a":[["TED%3AAF-A0A3N0B8S6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3N0B8S6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A230658","Paraeggerthella hongkongensis"],["NCBITaxon%3A883106","Paraeggerthella hongkongensis JCM 14552"]]},{"id":"NCBITaxon:231438","l":"Desulfoluna butyratoxydans","na":1,"nb":2,"a":[["TED%3AAF-A0A4U8YKH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8YKH3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A231438","Desulfoluna butyratoxydans"],["NCBITaxon%3A1121410","Desulfoluna butyratoxydans DSM 19427"]]},{"id":"NCBITaxon:2316717","l":"Corallococcus sp. AB032C","na":2,"nb":1,"a":[["TED%3AAF-A0A3A8RDS8-F1-model_v4_TED01","TED novel fold AF-A0A3A8RDS8-F1-model_v4_TED01"],["TED%3AAF-A0A3A8RT77-F1-model_v4_TED01","TED novel fold AF-A0A3A8RT77-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2316717","Corallococcus sp. AB032C"]]},{"id":"NCBITaxon:2316729","l":"Corallococcus sp. CA047B","na":2,"nb":1,"a":[["TED%3AAF-A0A3A8KNN0-F1-model_v4_TED01","TED novel fold AF-A0A3A8KNN0-F1-model_v4_TED01"],["TED%3AAF-A0A3A8LNW8-F1-model_v4_TED01","TED novel fold AF-A0A3A8LNW8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2316729","Corallococcus sp. CA047B"]]},{"id":"NCBITaxon:2316733","l":"Corallococcus terminator","na":2,"nb":1,"a":[["TED%3AAF-A0A3A8HRF7-F1-model_v4_TED01","TED novel fold AF-A0A3A8HRF7-F1-model_v4_TED01"],["TED%3AAF-A0A3A8IT11-F1-model_v4_TED02","TED novel fold AF-A0A3A8IT11-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2316733","Corallococcus terminator"]]},{"id":"NCBITaxon:2316736","l":"Corallococcus exercitus","na":2,"nb":1,"a":[["TED%3AAF-A0A3A8IA29-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3A8IA29-F1-model_v4_TED02"],["TED%3AAF-A0A7Y4KNC0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4KNC0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2316736","Corallococcus exercitus"]]},{"id":"NCBITaxon:2320","l":"Methanopyrus kandleri","na":1,"nb":2,"a":[["TED%3AAF-A0A832SV77-F1-model_v4_TED01","TED novel fold AF-A0A832SV77-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2320","Methanopyrus kandleri"],["NCBITaxon%3A190192","Methanopyrus kandleri AV19"]]},{"id":"NCBITaxon:2320082","l":"Anaerotruncus sp. 1XD22-93","na":2,"nb":1,"a":[["TED%3AAF-A0A3A9HP33-F1-model_v4_TED01","TED novel fold AF-A0A3A9HP33-F1-model_v4_TED01"],["TED%3AAF-A0A3A9IJ99-F1-model_v4_TED01","TED novel fold AF-A0A3A9IJ99-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2320082","Anaerotruncus sp. 1XD22-93"]]},{"id":"NCBITaxon:2320083","l":"Butyricicoccus sp. 1XD8-22","na":2,"nb":1,"a":[["TED%3AAF-A0A658JJ02-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A658JJ02-F1-model_v4_TED01"],["TED%3AAF-A0A658JQH2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A658JQH2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2320083","Butyricicoccus sp. 1XD8-22"]]},{"id":"NCBITaxon:2320098","l":"bacterium D16-59","na":2,"nb":1,"a":[["TED%3AAF-A0A3A8WF47-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A8WF47-F1-model_v4_TED01"],["TED%3AAF-A0A3A8W6I2-F1-model_v4_TED01","TED novel fold AF-A0A3A8W6I2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2320098","bacterium D16-59"]]},{"id":"NCBITaxon:2320104","l":"bacterium D16-54","na":2,"nb":1,"a":[["TED%3AAF-A0A3A9B720-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3A9B720-F1-model_v4_TED03"],["TED%3AAF-A0A3A9B8X8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3A9B8X8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2320104","bacterium D16-54"]]},{"id":"NCBITaxon:2320113","l":"bacterium 1xD42-87","na":2,"nb":1,"a":[["TED%3AAF-A0A3A8ZZW8-F1-model_v4_TED01","TED novel fold AF-A0A3A8ZZW8-F1-model_v4_TED01"],["TED%3AAF-A0A3A9AH75-F1-model_v4_TED01","TED novel fold AF-A0A3A9AH75-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2320113","bacterium 1xD42-87"]]},{"id":"NCBITaxon:2321229","l":"Salinisphaera sp. Q1T1-3","na":2,"nb":1,"a":[["TED%3AAF-A0A3A5J4I3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A5J4I3-F1-model_v4_TED01"],["TED%3AAF-A0A3A5J6V3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A5J6V3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2321229","Salinisphaera sp. Q1T1-3"]]},{"id":"NCBITaxon:232991","l":"Dulcicalothrix desertica PCC 7102","na":1,"nb":2,"a":[["TED%3AAF-A0A433V699-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A433V699-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A32056","Dulcicalothrix desertica"],["NCBITaxon%3A232991","Dulcicalothrix desertica PCC 7102"]]},{"id":"NCBITaxon:2340915","l":"Pseudonocardiaceae bacterium YIM PH 21723","na":2,"nb":1,"a":[["TED%3AAF-A0A419HNW7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A419HNW7-F1-model_v4_TED01"],["TED%3AAF-A0A419HTD5-F1-model_v4_TED01","TED novel fold AF-A0A419HTD5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2340915","Pseudonocardiaceae bacterium YIM PH 21723"]]},{"id":"NCBITaxon:2341083","l":"Mycobacterium innocens","na":2,"nb":1,"a":[["TED%3AAF-A0A498PW13-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A498PW13-F1-model_v4_TED02"],["TED%3AAF-A0A498QDL9-F1-model_v4_TED01","TED novel fold AF-A0A498QDL9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2341083","Mycobacterium innocens"]]},{"id":"NCBITaxon:234267","l":"Candidatus Solibacter usitatus Ellin6076","na":2,"nb":1,"a":[["TED%3AAF-Q01YB9-F1-model_v4_TED05","TED highly-symmetric fold AF-Q01YB9-F1-model_v4_TED05"],["TED%3AAF-Q02DA0-F1-model_v4_TED01","TED highly-symmetric fold AF-Q02DA0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A234267","Candidatus Solibacter usitatus Ellin6076"]]},{"id":"NCBITaxon:2358456","l":"Nitrospinaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A836WQD9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A836WQD9-F1-model_v4_TED03"],["TED%3AAF-A0A836X0F7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A836X0F7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2358456","Nitrospinaceae bacterium"]]},{"id":"NCBITaxon:2382230","l":"Bacteroidetes/Chlorobi group bacterium ChocPot_Mid","na":2,"nb":1,"a":[["TED%3AAF-A0A3N0ZFG1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3N0ZFG1-F1-model_v4_TED02"],["TED%3AAF-A0A3N0ZUN4-F1-model_v4_TED01","TED novel fold AF-A0A3N0ZUN4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2382230","Bacteroidetes/Chlorobi group bacterium ChocPot_Mid"]]},{"id":"NCBITaxon:240292","l":"Trichormus variabilis ATCC 29413","na":2,"nb":1,"a":[["Pfam%3APF18921","Cyanophycin synthase-like N-terminal domain"],["Pfam%3APF13619","KTSC domain"]],"b":[["NCBITaxon%3A240292","Trichormus variabilis ATCC 29413"]]},{"id":"NCBITaxon:240840","l":"Actinomadura meyerae","na":1,"nb":2,"a":[["TED%3AAF-A0A239ML85-F1-model_v4_TED01","TED novel fold AF-A0A239ML85-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A240840","Actinomadura meyerae"],["NCBITaxon%3A1989","Actinomadura sp."]]},{"id":"NCBITaxon:2419771","l":"Gryllotalpicola protaetiae","na":2,"nb":1,"a":[["TED%3AAF-A0A387BPP1-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A387BPP1-F1-model_v4_TED06"],["TED%3AAF-A0A387BR07-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A387BR07-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2419771","Gryllotalpicola protaetiae"]]},{"id":"NCBITaxon:2420334","l":"Thermoflexia bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A3M1DIA7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M1DIA7-F1-model_v4_TED01"],["TED%3AAF-A0A7C3BR60-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7C3BR60-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2420334","Thermoflexia bacterium"]]},{"id":"NCBITaxon:243160","l":"Burkholderia mallei ATCC 23344","na":1,"nb":2,"a":[["PROSITE%3APS01306","Uncharacterized protein family UPF0054 signature"]],"b":[["NCBITaxon%3A13373","Burkholderia mallei"],["NCBITaxon%3A243160","Burkholderia mallei ATCC 23344"]]},{"id":"NCBITaxon:243164","l":"Dehalococcoides mccartyi 195","na":1,"nb":2,"a":[["Pfam%3APF13486","Reductive dehalogenase subunit"]],"b":[["NCBITaxon%3A61435","Dehalococcoides mccartyi"],["NCBITaxon%3A243164","Dehalococcoides mccartyi 195"]]},{"id":"NCBITaxon:244734","l":"Bradyrhizobium betae","na":2,"nb":1,"a":[["TED%3AAF-A0A4Q1V2G1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q1V2G1-F1-model_v4_TED01"],["TED%3AAF-A0A5P6PEJ6-F1-model_v4_TED02","TED novel fold AF-A0A5P6PEJ6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A244734","Bradyrhizobium betae"]]},{"id":"NCBITaxon:247156","l":"Nocardia farcinica IFM 10152","na":2,"nb":1,"a":[["Pfam%3APF19288","CofH/MqnC C-terminal region"],["Pfam%3APF17645","Arylmalonate decarboxylase"]],"b":[["NCBITaxon%3A247156","Nocardia farcinica IFM 10152"]]},{"id":"NCBITaxon:247639","l":"marine gamma proteobacterium HTCC2080","na":2,"nb":1,"a":[["TED%3AAF-A0Z244-F1-model_v4_TED01","TED highly-symmetric fold AF-A0Z244-F1-model_v4_TED01"],["TED%3AAF-A0Z9H5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0Z9H5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A247639","marine gamma proteobacterium HTCC2080"]]},{"id":"NCBITaxon:2480821","l":"Desulfurococcales archaeon","na":2,"nb":1,"a":[["TED%3AAF-A0A6B2C9E3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6B2C9E3-F1-model_v4_TED01"],["TED%3AAF-A0A6B2C2J7-F1-model_v4_TED02","TED novel fold AF-A0A6B2C2J7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2480821","Desulfurococcales archaeon"]]},{"id":"NCBITaxon:2483361","l":"Nocardia stercoris","na":2,"nb":1,"a":[["TED%3AAF-A0A3M2L9W7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M2L9W7-F1-model_v4_TED01"],["TED%3AAF-A0A3M2LHY4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M2LHY4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2483361","Nocardia stercoris"]]},{"id":"NCBITaxon:2484932","l":"Leptospira congkakensis","na":2,"nb":1,"a":[["TED%3AAF-A0A4Z1A446-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Z1A446-F1-model_v4_TED01"],["TED%3AAF-A0A4Z1AB08-F1-model_v4_TED02","TED novel fold AF-A0A4Z1AB08-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2484932","Leptospira congkakensis"]]},{"id":"NCBITaxon:2484943","l":"Leptospira sarikeiensis","na":2,"nb":1,"a":[["TED%3AAF-A0A4R9K5P5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R9K5P5-F1-model_v4_TED01"],["TED%3AAF-A0A4R9K578-F1-model_v4_TED01","TED novel fold AF-A0A4R9K578-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2484943","Leptospira sarikeiensis"]]},{"id":"NCBITaxon:2485163","l":"Methylocaldum gracile subsp. desertum","na":2,"nb":1,"a":[["TED%3AAF-A0A4R7A0H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R7A0H4-F1-model_v4_TED01"],["TED%3AAF-A0A4R7AGM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R7AGM3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2485163","Methylocaldum gracile subsp. desertum"]]},{"id":"NCBITaxon:2486460","l":"Muribaculaceae bacterium Isolate-036 (Harlan)","na":2,"nb":1,"a":[["TED%3AAF-A0A3N2KHW4-F1-model_v4_TED02","TED novel fold AF-A0A3N2KHW4-F1-model_v4_TED02"],["TED%3AAF-A0A3N2KJH8-F1-model_v4_TED05","TED novel fold AF-A0A3N2KJH8-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2486460","Muribaculaceae bacterium Isolate-036 (Harlan)"]]},{"id":"NCBITaxon:2487118","l":"Intestinibaculum porci","na":2,"nb":1,"a":[["TED%3AAF-A0A3G9JNW8-F1-model_v4_TED02","TED novel fold AF-A0A3G9JNW8-F1-model_v4_TED02"],["TED%3AAF-A0A3G9JSX0-F1-model_v4_TED04","TED novel fold AF-A0A3G9JSX0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2487118","Intestinibaculum porci"]]},{"id":"NCBITaxon:2487930","l":"Aureibaculum marinum","na":2,"nb":1,"a":[["TED%3AAF-A0A3N4PIZ4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3N4PIZ4-F1-model_v4_TED02"],["TED%3AAF-A0A3N4NH22-F1-model_v4_TED01","TED novel fold AF-A0A3N4NH22-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2487930","Aureibaculum marinum"]]},{"id":"NCBITaxon:2493089","l":"Pseudoxanthomonas sp. SGD-10","na":2,"nb":1,"a":[["TED%3AAF-A0A3R8MHB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R8MHB9-F1-model_v4_TED01"],["TED%3AAF-A0A426H7W6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A426H7W6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2493089","Pseudoxanthomonas sp. SGD-10"]]},{"id":"NCBITaxon:2494234","l":"Sutterella megalosphaeroides","na":2,"nb":1,"a":[["TED%3AAF-A0A2Z6IAM8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z6IAM8-F1-model_v4_TED01"],["TED%3AAF-A0A2Z6ICR4-F1-model_v4_TED02","TED novel fold AF-A0A2Z6ICR4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2494234","Sutterella megalosphaeroides"]]},{"id":"NCBITaxon:2497860","l":"Cellulosilyticum sp. WCF-2","na":2,"nb":1,"a":[["TED%3AAF-A0A5B9YI52-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5B9YI52-F1-model_v4_TED02"],["TED%3AAF-A0A5B9YJ63-F1-model_v4_TED01","TED novel fold AF-A0A5B9YJ63-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2497860","Cellulosilyticum sp. WCF-2"]]},{"id":"NCBITaxon:2498109","l":"Legionella septentrionalis","na":2,"nb":1,"a":[["TED%3AAF-A0A433JGA1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A433JGA1-F1-model_v4_TED01"],["TED%3AAF-A0A433JI74-F1-model_v4_TED02","TED novel fold AF-A0A433JI74-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2498109","Legionella septentrionalis"]]},{"id":"NCBITaxon:2499851","l":"Inhella crocodyli","na":2,"nb":1,"a":[["TED%3AAF-A0A437LTL6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A437LTL6-F1-model_v4_TED03"],["TED%3AAF-A0A437LTG8-F1-model_v4_TED04","TED novel fold AF-A0A437LTG8-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2499851","Inhella crocodyli"]]},{"id":"NCBITaxon:2502994","l":"Fusarium odoratissimum","na":1,"nb":2,"a":[["TED%3AAF-N1SAH4-F1-model_v4_TED01","TED highly-symmetric fold AF-N1SAH4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2502994","Fusarium odoratissimum"],["NCBITaxon%3A1089451","Fusarium odoratissimum NRRL 54006"]]},{"id":"NCBITaxon:2507584","l":"Enterobacteriaceae bacterium ML5","na":2,"nb":1,"a":[["TED%3AAF-A0A4S3LMQ9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4S3LMQ9-F1-model_v4_TED02"],["TED%3AAF-A0A4S3LL88-F1-model_v4_TED01","TED novel fold AF-A0A4S3LL88-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2507584","Enterobacteriaceae bacterium ML5"]]},{"id":"NCBITaxon:2508720","l":"Oleiharenicola lentus","na":2,"nb":1,"a":[["TED%3AAF-A0A4Q1C7Q2-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A4Q1C7Q2-F1-model_v4_TED04"],["TED%3AAF-A0A4Q1C4T5-F1-model_v4_TED01","TED novel fold AF-A0A4Q1C4T5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2508720","Oleiharenicola lentus"]]},{"id":"NCBITaxon:2508868","l":"Puniceicoccaceae bacterium 5H","na":2,"nb":1,"a":[["TED%3AAF-A0A6N6Z537-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N6Z537-F1-model_v4_TED01"],["TED%3AAF-A0A6N6ZFX7-F1-model_v4_TED01","TED novel fold AF-A0A6N6ZFX7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2508868","Puniceicoccaceae bacterium 5H"]]},{"id":"NCBITaxon:2508949","l":"Candidatus Borkfalkia ceftriaxoniphila","na":2,"nb":1,"a":[["TED%3AAF-A0A4Q2KDG3-F1-model_v4_TED01","TED novel fold AF-A0A4Q2KDG3-F1-model_v4_TED01"],["TED%3AAF-A0A4Q2KFX3-F1-model_v4_TED02","TED novel fold AF-A0A4Q2KFX3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2508949","Candidatus Borkfalkia ceftriaxoniphila"]]},{"id":"NCBITaxon:2508984","l":"Candidatus Saccharicenans subterraneus","na":2,"nb":1,"a":[["TED%3AAF-A0A3E2BK72-F1-model_v4_TED02","TED novel fold AF-A0A3E2BK72-F1-model_v4_TED02"],["TED%3AAF-A0A3E2BKL4-F1-model_v4_TED03","TED novel fold AF-A0A3E2BKL4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2508984","Candidatus Saccharicenans subterraneus"]]},{"id":"NCBITaxon:2510335","l":"Parvularculaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A520R213-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A520R213-F1-model_v4_TED01"],["TED%3AAF-A0A850SW22-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A850SW22-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2510335","Parvularculaceae bacterium"]]},{"id":"NCBITaxon:2510978","l":"Amycolatopsis suaedae","na":2,"nb":1,"a":[["TED%3AAF-A0A4Q7J3A7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q7J3A7-F1-model_v4_TED01"],["TED%3AAF-A0A4Q7JEK5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q7JEK5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2510978","Amycolatopsis suaedae"]]},{"id":"NCBITaxon:2511932","l":"Marine Group I thaumarchaeote","na":2,"nb":1,"a":[["TED%3AAF-A0A7K4NKP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K4NKP7-F1-model_v4_TED01"],["TED%3AAF-A0A7K4MWS9-F1-model_v4_TED01","TED novel fold AF-A0A7K4MWS9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2511932","Marine Group I thaumarchaeote"]]},{"id":"NCBITaxon:2512159","l":"Streptomyces sp. BK447","na":2,"nb":1,"a":[["TED%3AAF-A0A4R7JEY7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R7JEY7-F1-model_v4_TED01"],["TED%3AAF-A0A4R7IPA9-F1-model_v4_TED02","TED novel fold AF-A0A4R7IPA9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2512159","Streptomyces sp. BK447"]]},{"id":"NCBITaxon:2512241","l":"Xylaria flabelliformis","na":2,"nb":1,"a":[["TED%3AAF-A0A553I0L4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A553I0L4-F1-model_v4_TED01"],["TED%3AAF-A0A553HY53-F1-model_v4_TED01","TED novel fold AF-A0A553HY53-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2512241","Xylaria flabelliformis"]]},{"id":"NCBITaxon:2517205","l":"Candidatus Methanomethylophilaceae archaeon","na":2,"nb":1,"a":[["TED%3AAF-A0A843E6Q0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843E6Q0-F1-model_v4_TED01"],["TED%3AAF-A0A843IVX5-F1-model_v4_TED02","TED novel fold AF-A0A843IVX5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2517205","Candidatus Methanomethylophilaceae archaeon"]]},{"id":"NCBITaxon:2517210","l":"Candidatus Brocadiia bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A849WI07-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A849WI07-F1-model_v4_TED01"],["TED%3AAF-A0A849WG49-F1-model_v4_TED01","TED novel fold AF-A0A849WG49-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2517210","Candidatus Brocadiia bacterium"]]},{"id":"NCBITaxon:2518612","l":"Candidatus Nanopelagicales bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A871YDM5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A871YDM5-F1-model_v4_TED01"],["TED%3AAF-A0A871YC05-F1-model_v4_TED03","TED novel fold AF-A0A871YC05-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2518612","Candidatus Nanopelagicales bacterium"]]},{"id":"NCBITaxon:2518622","l":"Methyloglobulus sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A849V6M6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A849V6M6-F1-model_v4_TED01"],["TED%3AAF-A0A849V4F6-F1-model_v4_TED01","TED novel fold AF-A0A849V4F6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2518622","Methyloglobulus sp."]]},{"id":"NCBITaxon:2518971","l":"Duncaniella dubosii","na":2,"nb":1,"a":[["TED%3AAF-A0A4P7W4N7-F1-model_v4_TED01","TED novel fold AF-A0A4P7W4N7-F1-model_v4_TED01"],["TED%3AAF-A0A4V1D356-F1-model_v4_TED01","TED novel fold AF-A0A4V1D356-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2518971","Duncaniella dubosii"]]},{"id":"NCBITaxon:2527974","l":"Tautonia plasticadhaerens","na":2,"nb":1,"a":[["TED%3AAF-A0A518HEF3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A518HEF3-F1-model_v4_TED01"],["TED%3AAF-A0A518H506-F1-model_v4_TED03","TED novel fold AF-A0A518H506-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2527974","Tautonia plasticadhaerens"]]},{"id":"NCBITaxon:2527994","l":"Thalassoglobus polymorphus","na":2,"nb":1,"a":[["TED%3AAF-A0A517QH44-F1-model_v4_TED08","TED highly-symmetric fold AF-A0A517QH44-F1-model_v4_TED08"],["TED%3AAF-A0A517QHS7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A517QHS7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2527994","Thalassoglobus polymorphus"]]},{"id":"NCBITaxon:2527995","l":"Symmachiella dynata","na":2,"nb":1,"a":[["TED%3AAF-A0A517ZUQ7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A517ZUQ7-F1-model_v4_TED02"],["TED%3AAF-A0A517ZU26-F1-model_v4_TED01","TED novel fold AF-A0A517ZU26-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2527995","Symmachiella dynata"]]},{"id":"NCBITaxon:2527996","l":"Crateriforma conspicua","na":2,"nb":1,"a":[["TED%3AAF-A0A5C6FJ16-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C6FJ16-F1-model_v4_TED01"],["TED%3AAF-A0A5C6FR39-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C6FR39-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2527996","Crateriforma conspicua"]]},{"id":"NCBITaxon:2528010","l":"Lignipirellula cremea","na":2,"nb":1,"a":[["TED%3AAF-A0A518DL57-F1-model_v4_TED03","TED novel fold AF-A0A518DL57-F1-model_v4_TED03"],["TED%3AAF-A0A518DQB4-F1-model_v4_TED02","TED novel fold AF-A0A518DQB4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2528010","Lignipirellula cremea"]]},{"id":"NCBITaxon:2528018","l":"Saltatorellus ferox","na":2,"nb":1,"a":[["TED%3AAF-A0A518EV70-F1-model_v4_TED02","TED novel fold AF-A0A518EV70-F1-model_v4_TED02"],["TED%3AAF-A0A518EWJ0-F1-model_v4_TED02","TED novel fold AF-A0A518EWJ0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2528018","Saltatorellus ferox"]]},{"id":"NCBITaxon:2528022","l":"Botrimarina mediterranea","na":2,"nb":1,"a":[["TED%3AAF-A0A518K7W0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A518K7W0-F1-model_v4_TED02"],["TED%3AAF-A0A518K645-F1-model_v4_TED02","TED novel fold AF-A0A518K645-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2528022","Botrimarina mediterranea"]]},{"id":"NCBITaxon:2528024","l":"Lacipirellula limnantheis","na":2,"nb":1,"a":[["TED%3AAF-A0A517TZ88-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A517TZ88-F1-model_v4_TED02"],["TED%3AAF-A0A517U4L3-F1-model_v4_TED01","TED novel fold AF-A0A517U4L3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528024","Lacipirellula limnantheis"]]},{"id":"NCBITaxon:2528026","l":"Maioricimonas rarisocia","na":2,"nb":1,"a":[["TED%3AAF-A0A517ZC53-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A517ZC53-F1-model_v4_TED03"],["TED%3AAF-A0A517Z0R0-F1-model_v4_TED01","TED novel fold AF-A0A517Z0R0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528026","Maioricimonas rarisocia"]]},{"id":"NCBITaxon:2528034","l":"Phycisphaerae bacterium RAS1","na":2,"nb":1,"a":[["TED%3AAF-A0A5C5VSG7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C5VSG7-F1-model_v4_TED01"],["TED%3AAF-A0A5C5W2Y3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C5W2Y3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528034","Phycisphaerae bacterium RAS1"]]},{"id":"NCBITaxon:2528041","l":"Methanomassiliicoccus sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A843AYI4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843AYI4-F1-model_v4_TED01"],["TED%3AAF-A0A524I1X9-F1-model_v4_TED01","TED novel fold AF-A0A524I1X9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528041","Methanomassiliicoccus sp."]]},{"id":"NCBITaxon:2528593","l":"Zhaonella formicivorans","na":2,"nb":1,"a":[["TED%3AAF-A0A4R5JND7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R5JND7-F1-model_v4_TED01"],["TED%3AAF-A0A4R5JLL6-F1-model_v4_TED02","TED novel fold AF-A0A4R5JLL6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2528593","Zhaonella formicivorans"]]},{"id":"NCBITaxon:2528971","l":"Azotobacter chroococcum subsp. isscasi","na":1,"nb":2,"a":[["TED%3AAF-A0A4Q9UQR6-F1-model_v4_TED01","TED novel fold AF-A0A4Q9UQR6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A353","Azotobacter chroococcum"],["NCBITaxon%3A2528971","Azotobacter chroococcum subsp. isscasi"]]},{"id":"NCBITaxon:2530339","l":"Tenacibaculum sp. M341","na":2,"nb":1,"a":[["TED%3AAF-A0A4R1AGJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R1AGJ9-F1-model_v4_TED01"],["TED%3AAF-A0A4R1AG26-F1-model_v4_TED01","TED novel fold AF-A0A4R1AG26-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2530339","Tenacibaculum sp. M341"]]},{"id":"NCBITaxon:2530368","l":"Actinomadura rubrisoli","na":2,"nb":1,"a":[["TED%3AAF-A0A4R5AC84-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R5AC84-F1-model_v4_TED01"],["TED%3AAF-A0A4R4ZYW4-F1-model_v4_TED02","TED novel fold AF-A0A4R4ZYW4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2530368","Actinomadura rubrisoli"]]},{"id":"NCBITaxon:2530391","l":"Duncaniella freteri","na":2,"nb":1,"a":[["TED%3AAF-A0A4Z0V1A0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Z0V1A0-F1-model_v4_TED01"],["TED%3AAF-A0A4Z0VA30-F1-model_v4_TED03","TED novel fold AF-A0A4Z0VA30-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2530391","Duncaniella freteri"]]},{"id":"NCBITaxon:253239","l":"Ethanoligenens harbinense","na":1,"nb":2,"a":[["TED%3AAF-A0A386XVY3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A386XVY3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A253239","Ethanoligenens harbinense"],["NCBITaxon%3A663278","Ethanoligenens harbinense YUAN-3"]]},{"id":"NCBITaxon:2547395","l":"Paenibacillus piri","na":2,"nb":1,"a":[["TED%3AAF-A0A4V2ZS36-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A4V2ZS36-F1-model_v4_TED03"],["TED%3AAF-A0A4R5KXP2-F1-model_v4_TED02","TED novel fold AF-A0A4R5KXP2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2547395","Paenibacillus piri"]]},{"id":"NCBITaxon:255616","l":"Haloferax sulfurifontis","na":1,"nb":2,"a":[["TED%3AAF-A0A830E6F0-F1-model_v4_TED02","TED novel fold AF-A0A830E6F0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A255616","Haloferax sulfurifontis"],["NCBITaxon%3A662480","Haloferax sulfurifontis ATCC BAA-897"]]},{"id":"NCBITaxon:2558278","l":"Barnesiella sp. WM24","na":2,"nb":1,"a":[["TED%3AAF-A0A4Y9IUV5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y9IUV5-F1-model_v4_TED01"],["TED%3AAF-A0A4Y9J2S8-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A4Y9J2S8-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2558278","Barnesiella sp. WM24"]]},{"id":"NCBITaxon:2565572","l":"Parasutterella muris","na":1,"nb":2,"a":[["TED%3AAF-A0A6L6YGF5-F1-model_v4_TED01","TED novel fold AF-A0A6L6YGF5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A487175","Parasutterella excrementihominis"],["NCBITaxon%3A2565572","Parasutterella muris"]]},{"id":"NCBITaxon:2571105","l":"Pseudomonas nicosulfuronedens","na":2,"nb":1,"a":[["TED%3AAF-A0A5R9RAI5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5R9RAI5-F1-model_v4_TED01"],["TED%3AAF-A0A5R9QPW4-F1-model_v4_TED02","TED novel fold AF-A0A5R9QPW4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2571105","Pseudomonas nicosulfuronedens"]]},{"id":"NCBITaxon:257314","l":"Lactobacillus johnsonii NCC 533","na":2,"nb":1,"a":[["Pfam%3APF10439","Bacteriocin class II with double-glycine leader peptide"],["Pfam%3APF02435","Levansucrase/Invertase"]],"b":[["NCBITaxon%3A257314","Lactobacillus johnsonii NCC 533"]]},{"id":"NCBITaxon:257363","l":"Rickettsia typhi str. Wilmington","na":1,"nb":2,"a":[["Pfam%3APF12334","Rickettsia outer membrane protein B, passenger domain"]],"b":[["NCBITaxon%3A785","Rickettsia typhi"],["NCBITaxon%3A257363","Rickettsia typhi str. Wilmington"]]},{"id":"NCBITaxon:2583808","l":"Aggregicoccus sp. 17bor-14","na":2,"nb":1,"a":[["TED%3AAF-A0A6I2GV38-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A6I2GV38-F1-model_v4_TED04"],["TED%3AAF-A0A6I2GU45-F1-model_v4_TED01","TED novel fold AF-A0A6I2GU45-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2583808","Aggregicoccus sp. 17bor-14"]]},{"id":"NCBITaxon:2585211","l":"Mumia zhuanghuii","na":1,"nb":2,"a":[["TED%3AAF-A0A5Q6S068-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Q6S068-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A706184","Flavobacterium anseonense"],["NCBITaxon%3A2585211","Mumia zhuanghuii"]]},{"id":"NCBITaxon:2589807","l":"Peteryoungia glycinendophytica","na":2,"nb":1,"a":[["TED%3AAF-A0A504UB93-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A504UB93-F1-model_v4_TED01"],["TED%3AAF-A0A504UAL4-F1-model_v4_TED01","TED novel fold AF-A0A504UAL4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2589807","Peteryoungia glycinendophytica"]]},{"id":"NCBITaxon:2590453","l":"Myxococcus llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogochensis","na":2,"nb":1,"a":[["TED%3AAF-A0A540WM48-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A540WM48-F1-model_v4_TED01"],["TED%3AAF-A0A540WRD7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A540WRD7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2590453","Myxococcus llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogochensis"]]},{"id":"NCBITaxon:2591008","l":"Exilibacterium tricleocarpae","na":2,"nb":1,"a":[["TED%3AAF-A0A545ST62-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A545ST62-F1-model_v4_TED01"],["TED%3AAF-A0A545TKA2-F1-model_v4_TED01","TED novel fold AF-A0A545TKA2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2591008","Exilibacterium tricleocarpae"]]},{"id":"NCBITaxon:2591009","l":"Denitrobaculum tricleocarpae","na":2,"nb":1,"a":[["TED%3AAF-A0A545T098-F1-model_v4_TED01","TED novel fold AF-A0A545T098-F1-model_v4_TED01"],["TED%3AAF-A0A545TF96-F1-model_v4_TED03","TED novel fold AF-A0A545TF96-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2591009","Denitrobaculum tricleocarpae"]]},{"id":"NCBITaxon:2591038","l":"Moraxellaceae bacterium AER2_44_116","na":2,"nb":1,"a":[["TED%3AAF-A0A507W977-F1-model_v4_TED02","TED novel fold AF-A0A507W977-F1-model_v4_TED02"],["TED%3AAF-A0A507WBL5-F1-model_v4_TED03","TED novel fold AF-A0A507WBL5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2591038","Moraxellaceae bacterium AER2_44_116"]]},{"id":"NCBITaxon:259564","l":"Methanococcoides burtonii DSM 6242","na":1,"nb":2,"a":[["TED%3AAF-Q12W09-F1-model_v4_TED02","TED novel fold AF-Q12W09-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29291","Methanococcoides burtonii"],["NCBITaxon%3A259564","Methanococcoides burtonii DSM 6242"]]},{"id":"NCBITaxon:2596890","l":"Candidatus Uabimicrobium amorphum","na":2,"nb":1,"a":[["TED%3AAF-A0A5S9IPI8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5S9IPI8-F1-model_v4_TED02"],["TED%3AAF-A0A5S9ISU6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A5S9ISU6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2596890","Candidatus Uabimicrobium amorphum"]]},{"id":"NCBITaxon:2597660","l":"Tomitella fengzijianii","na":2,"nb":1,"a":[["TED%3AAF-A0A516X5Q7-F1-model_v4_TED02","TED novel fold AF-A0A516X5Q7-F1-model_v4_TED02"],["TED%3AAF-A0A516X678-F1-model_v4_TED01","TED novel fold AF-A0A516X678-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2597660","Tomitella fengzijianii"]]},{"id":"NCBITaxon:2597822","l":"Rariglobus hedericola","na":2,"nb":1,"a":[["TED%3AAF-A0A556QRP6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A556QRP6-F1-model_v4_TED01"],["TED%3AAF-A0A556QSH2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A556QSH2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2597822","Rariglobus hedericola"]]},{"id":"NCBITaxon:2600176","l":"Lujinxingia vulgaris","na":2,"nb":1,"a":[["TED%3AAF-A0A5C6XAT5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5C6XAT5-F1-model_v4_TED02"],["TED%3AAF-A0A5C6XBF3-F1-model_v4_TED02","TED novel fold AF-A0A5C6XBF3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2600176","Lujinxingia vulgaris"]]},{"id":"NCBITaxon:2600580","l":"Hepatocystis sp. ex Piliocolobus tephrosceles","na":2,"nb":1,"a":[["TED%3AAF-A0A653H884-F1-model_v4_TED01","TED novel fold AF-A0A653H884-F1-model_v4_TED01"],["TED%3AAF-A0A653HMD1-F1-model_v4_TED01","TED novel fold AF-A0A653HMD1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2600580","Hepatocystis sp. ex Piliocolobus tephrosceles"]]},{"id":"NCBITaxon:2601267","l":"Flavisphingopyxis soli","na":2,"nb":1,"a":[["TED%3AAF-A0A5C6U8M3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C6U8M3-F1-model_v4_TED01"],["TED%3AAF-A0A5C6U7V0-F1-model_v4_TED03","TED novel fold AF-A0A5C6U7V0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2601267","Flavisphingopyxis soli"]]},{"id":"NCBITaxon:2601894","l":"Halioglobus maricola","na":2,"nb":1,"a":[["TED%3AAF-A0A5P9NEZ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5P9NEZ2-F1-model_v4_TED01"],["TED%3AAF-A0A5P9NHU7-F1-model_v4_TED02","TED novel fold AF-A0A5P9NHU7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2601894","Halioglobus maricola"]]},{"id":"NCBITaxon:2601898","l":"Noviherbaspirillum sp. UKPF54","na":2,"nb":1,"a":[["TED%3AAF-A0A5B8N2S3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B8N2S3-F1-model_v4_TED01"],["TED%3AAF-A0A5B8NAF3-F1-model_v4_TED01","TED novel fold AF-A0A5B8NAF3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2601898","Noviherbaspirillum sp. UKPF54"]]},{"id":"NCBITaxon:2604466","l":"Nonomuraea sp. PA05","na":2,"nb":1,"a":[["TED%3AAF-A0A5D0QGF6-F1-model_v4_TED01","TED novel fold AF-A0A5D0QGF6-F1-model_v4_TED01"],["TED%3AAF-A0A5D0QRZ7-F1-model_v4_TED02","TED novel fold AF-A0A5D0QRZ7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2604466","Nonomuraea sp. PA05"]]},{"id":"NCBITaxon:2605778","l":"Clostridium porci","na":2,"nb":1,"a":[["TED%3AAF-A0A7X2NKU0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7X2NKU0-F1-model_v4_TED04"],["TED%3AAF-A0A7X2NLE6-F1-model_v4_TED02","TED novel fold AF-A0A7X2NLE6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2605778","Clostridium porci"]]},{"id":"NCBITaxon:2605780","l":"Collinsella sp. WCA1-178-WT-3 (M2)","na":1,"nb":2,"a":[["TED%3AAF-A0A6A8M6A3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A8M6A3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A74426","Collinsella aerofaciens"],["NCBITaxon%3A2605780","Collinsella sp. WCA1-178-WT-3 (M2)"]]},{"id":"NCBITaxon:2605989","l":"Gimesia chilikensis","na":2,"nb":1,"a":[["TED%3AAF-A0A517WDA1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A517WDA1-F1-model_v4_TED01"],["TED%3AAF-A0A517WJP8-F1-model_v4_TED01","TED novel fold AF-A0A517WJP8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2605989","Gimesia chilikensis"]]},{"id":"NCBITaxon:2606626","l":"Sodaliphilus pleomorphus","na":2,"nb":1,"a":[["TED%3AAF-A0A6L5XH57-F1-model_v4_TED03","TED novel fold AF-A0A6L5XH57-F1-model_v4_TED03"],["TED%3AAF-A0A6L5XH76-F1-model_v4_TED01","TED novel fold AF-A0A6L5XH76-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2606626","Sodaliphilus pleomorphus"]]},{"id":"NCBITaxon:2607326","l":"Streptomonospora sp. PA3","na":2,"nb":1,"a":[["TED%3AAF-A0A6N8GAL7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8GAL7-F1-model_v4_TED01"],["TED%3AAF-A0A6N8GG78-F1-model_v4_TED01","TED novel fold AF-A0A6N8GG78-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607326","Streptomonospora sp. PA3"]]},{"id":"NCBITaxon:2607614","l":"Tissierella pigra","na":2,"nb":1,"a":[["TED%3AAF-A0A6N7XY67-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N7XY67-F1-model_v4_TED01"],["TED%3AAF-A0A6N7Y0X7-F1-model_v4_TED01","TED novel fold AF-A0A6N7Y0X7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607614","Tissierella pigra"]]},{"id":"NCBITaxon:2607730","l":"Aquimarina sp. RZ0","na":2,"nb":1,"a":[["TED%3AAF-A0A5B1B781-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5B1B781-F1-model_v4_TED02"],["TED%3AAF-A0A5B1B106-F1-model_v4_TED01","TED novel fold AF-A0A5B1B106-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607730","Aquimarina sp. RZ0"]]},{"id":"NCBITaxon:2607771","l":"Leptolyngbya sp. SIOISBB","na":2,"nb":1,"a":[["TED%3AAF-A0A6I5NY60-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I5NY60-F1-model_v4_TED01"],["TED%3AAF-A0A6I5PEJ2-F1-model_v4_TED01","TED novel fold AF-A0A6I5PEJ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607771","Leptolyngbya sp. SIOISBB"]]},{"id":"NCBITaxon:2607779","l":"Merismopedia sp. SIO2A8","na":2,"nb":1,"a":[["TED%3AAF-A0A6P0YS12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6P0YS12-F1-model_v4_TED01"],["TED%3AAF-A0A6P0Z729-F1-model_v4_TED02","TED novel fold AF-A0A6P0Z729-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2607779","Merismopedia sp. SIO2A8"]]},{"id":"NCBITaxon:2607780","l":"Leptolyngbya sp. SIO3F4","na":2,"nb":1,"a":[["TED%3AAF-A0A6I5PU43-F1-model_v4_TED02","TED novel fold AF-A0A6I5PU43-F1-model_v4_TED02"],["TED%3AAF-A0A6I5Q2F8-F1-model_v4_TED01","TED novel fold AF-A0A6I5Q2F8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607780","Leptolyngbya sp. SIO3F4"]]},{"id":"NCBITaxon:2607789","l":"Symploca sp. SIO2D2","na":2,"nb":1,"a":[["TED%3AAF-A0A6P0RPF6-F1-model_v4_TED04","TED novel fold AF-A0A6P0RPF6-F1-model_v4_TED04"],["TED%3AAF-A0A6P0S7W2-F1-model_v4_TED01","TED novel fold AF-A0A6P0S7W2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607789","Symploca sp. SIO2D2"]]},{"id":"NCBITaxon:2607798","l":"Symploca sp. SIO2G7","na":2,"nb":1,"a":[["TED%3AAF-A0A845Y6S6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A845Y6S6-F1-model_v4_TED01"],["TED%3AAF-A0A845Y7B4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A845Y7B4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607798","Symploca sp. SIO2G7"]]},{"id":"NCBITaxon:2608384","l":"Campylobacter portucalensis","na":2,"nb":1,"a":[["TED%3AAF-A0A6L5WM94-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6L5WM94-F1-model_v4_TED02"],["TED%3AAF-A0A6L5WIX2-F1-model_v4_TED02","TED novel fold AF-A0A6L5WIX2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2608384","Campylobacter portucalensis"]]},{"id":"NCBITaxon:2609281","l":"Massilia frigida","na":2,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_IBH_His","Interface-associated metallophore histidine beta-hydroxylase family"],["proteintraitsmech%3AELIFE109154_TBH_Asp","T-E-associated metallophore aspartate beta-hydroxylase family"]],"b":[["NCBITaxon%3A2609281","Massilia frigida"]]},{"id":"NCBITaxon:2614160","l":"Halospina sp. K52047b","na":1,"nb":2,"a":[["TED%3AAF-A0A5J5FLE6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5J5FLE6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2614160","Halospina sp. K52047b"],["NCBITaxon%3A1803916","Salibacter halophilus"]]},{"id":"NCBITaxon:2614252","l":"Calditrichaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A850AGU9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A850AGU9-F1-model_v4_TED01"],["TED%3AAF-A0A850AN03-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A850AN03-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2614252","Calditrichaceae bacterium"]]},{"id":"NCBITaxon:261474","l":"Pelotomaculum sp. FP","na":1,"nb":2,"a":[["TED%3AAF-A0A4Y7S625-F1-model_v4_TED02","TED novel fold AF-A0A4Y7S625-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053590","Pelotomaculum sp."],["NCBITaxon%3A261474","Pelotomaculum sp. FP"]]},{"id":"NCBITaxon:262698","l":"Brucella abortus bv. 1 str. 9-941","na":2,"nb":1,"a":[["Pfam%3APF03625","Domain of unknown function DUF302"],["Pfam%3APF06776","Invasion associated locus B (IalB) protein"]],"b":[["NCBITaxon%3A262698","Brucella abortus bv. 1 str. 9-941"]]},{"id":"NCBITaxon:263819","l":"Yersinia aleksiciae","na":2,"nb":1,"a":[["Pfam%3APF18153","Cap15, cyclic dinucleotide receptor domain"],["Pfam%3APF23471","Cap15, TM helices"]],"b":[["NCBITaxon%3A263819","Yersinia aleksiciae"]]},{"id":"NCBITaxon:264198","l":"Cupriavidus pinatubonensis JMP134","na":1,"nb":2,"a":[["TED%3AAF-Q476D1-F1-model_v4_TED02","TED highly-symmetric fold AF-Q476D1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A106590","Cupriavidus necator"],["NCBITaxon%3A264198","Cupriavidus pinatubonensis JMP134"]]},{"id":"NCBITaxon:264199","l":"Streptococcus thermophilus LMG 18311","na":2,"nb":1,"a":[["Pfam%3APF17864","RuvB AAA lid domain"],["Pfam%3APF27471","Energy-coupling factor transporter EcfA1 C-terminal domain"]],"b":[["NCBITaxon%3A264199","Streptococcus thermophilus LMG 18311"]]},{"id":"NCBITaxon:264297","l":"Cellulomonas denverensis","na":1,"nb":2,"a":[["TED%3AAF-A0A7X6QZH2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X6QZH2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A264297","Cellulomonas denverensis"],["NCBITaxon%3A1305869","Cellulomonas denverensis JCM 14733"]]},{"id":"NCBITaxon:264445","l":"Streptomyces hygroscopicus subsp. limoneus","na":1,"nb":2,"a":[["TED%3AAF-A0A0S2PAJ8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0S2PAJ8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1912","Streptomyces hygroscopicus"],["NCBITaxon%3A264445","Streptomyces hygroscopicus subsp. limoneus"]]},{"id":"NCBITaxon:264483","l":"Phaffia rhodozyma","na":2,"nb":1,"a":[["TED%3AAF-A0A0F7SE65-F1-model_v4_TED03","TED novel fold AF-A0A0F7SE65-F1-model_v4_TED03"],["TED%3AAF-A0A0F7SS48-F1-model_v4_TED01","TED novel fold AF-A0A0F7SS48-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A264483","Phaffia rhodozyma"]]},{"id":"NCBITaxon:264636","l":"Acholeplasma hippikon","na":1,"nb":2,"a":[["TED%3AAF-A0A449BIU6-F1-model_v4_TED01","TED novel fold AF-A0A449BIU6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A264636","Acholeplasma hippikon"],["NCBITaxon%3A1408416","Acholeplasma hippikon ATCC 29725"]]},{"id":"NCBITaxon:2650471","l":"Lacipirellula parvula","na":2,"nb":1,"a":[["TED%3AAF-A0A5K7X529-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5K7X529-F1-model_v4_TED01"],["TED%3AAF-A0A5K7XG93-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5K7XG93-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2650471","Lacipirellula parvula"]]},{"id":"NCBITaxon:265072","l":"Methylobacillus flagellatus KT","na":1,"nb":2,"a":[["Pfam%3APF10414","Sirohaem synthase dimerisation region"]],"b":[["NCBITaxon%3A405","Methylobacillus flagellatus"],["NCBITaxon%3A265072","Methylobacillus flagellatus KT"]]},{"id":"NCBITaxon:2651171","l":"Thermoanaerobaculia bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A6L4B118-F1-model_v4_TED01","TED novel fold AF-A0A6L4B118-F1-model_v4_TED01"],["TED%3AAF-A0A833H7H8-F1-model_v4_TED01","TED novel fold AF-A0A833H7H8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2651171","Thermoanaerobaculia bacterium"]]},{"id":"NCBITaxon:2654236","l":"Salmonirosea aquatica","na":2,"nb":1,"a":[["TED%3AAF-A0A7C9B999-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C9B999-F1-model_v4_TED02"],["TED%3AAF-A0A7C9BIZ3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C9BIZ3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2654236","Salmonirosea aquatica"]]},{"id":"NCBITaxon:265543","l":"Minutocellus polymorphus","na":2,"nb":1,"a":[["TED%3AAF-A0A7S0B109-F1-model_v4_TED01","TED novel fold AF-A0A7S0B109-F1-model_v4_TED01"],["TED%3AAF-A0A7S0FL87-F1-model_v4_TED01","TED novel fold AF-A0A7S0FL87-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A265543","Minutocellus polymorphus"]]},{"id":"NCBITaxon:265719","l":"Aquimonas voraii","na":1,"nb":2,"a":[["TED%3AAF-A0A1G6S3E9-F1-model_v4_TED02","TED novel fold AF-A0A1G6S3E9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A265719","Aquimonas voraii"],["NCBITaxon%3A1121008","Aquimonas voraii DSM 16957"]]},{"id":"NCBITaxon:266117","l":"Rubrobacter xylanophilus DSM 9941","na":1,"nb":2,"a":[["TED%3AAF-Q1AVL5-F1-model_v4_TED02","TED highly-symmetric fold AF-Q1AVL5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A49319","Rubrobacter xylanophilus"],["NCBITaxon%3A266117","Rubrobacter xylanophilus DSM 9941"]]},{"id":"NCBITaxon:2661913","l":"Actinomadura sp. J1-007","na":2,"nb":1,"a":[["TED%3AAF-A0A6I4PKW5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6I4PKW5-F1-model_v4_TED02"],["TED%3AAF-A0A6I4PYS5-F1-model_v4_TED03","TED novel fold AF-A0A6I4PYS5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2661913","Actinomadura sp. J1-007"]]},{"id":"NCBITaxon:2662194","l":"Pseudomonas sp. FSL R10-0399","na":2,"nb":1,"a":[["TED%3AAF-A0A7X1WIH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X1WIH3-F1-model_v4_TED01"],["TED%3AAF-A0A7X1WKI9-F1-model_v4_TED02","TED novel fold AF-A0A7X1WKI9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2662194","Pseudomonas sp. FSL R10-0399"]]},{"id":"NCBITaxon:2663009","l":"Fusobacterium pseudoperiodonticum","na":2,"nb":1,"a":[["TED%3AAF-A0A2D3NTS3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D3NTS3-F1-model_v4_TED01"],["TED%3AAF-A0A2D3LZB2-F1-model_v4_TED02","TED novel fold AF-A0A2D3LZB2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2663009","Fusobacterium pseudoperiodonticum"]]},{"id":"NCBITaxon:2666084","l":"Duganella guangzhouensis","na":2,"nb":1,"a":[["TED%3AAF-A0A6I2L2N4-F1-model_v4_TED03","TED novel fold AF-A0A6I2L2N4-F1-model_v4_TED03"],["TED%3AAF-A0A6I2LCD9-F1-model_v4_TED01","TED novel fold AF-A0A6I2LCD9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2666084","Duganella guangzhouensis"]]},{"id":"NCBITaxon:2670410","l":"Halobacteria archaeon","na":2,"nb":1,"a":[["TED%3AAF-A0A7K4ERY7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K4ERY7-F1-model_v4_TED01"],["TED%3AAF-A0A7K4E646-F1-model_v4_TED01","TED novel fold AF-A0A7K4E646-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2670410","Halobacteria archaeon"]]},{"id":"NCBITaxon:2672569","l":"Microlunatus sp. Gsoil 973","na":2,"nb":1,"a":[["TED%3AAF-A0A6I5VKN1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I5VKN1-F1-model_v4_TED01"],["TED%3AAF-A0A6I5VPG1-F1-model_v4_TED01","TED novel fold AF-A0A6I5VPG1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2672569","Microlunatus sp. Gsoil 973"]]},{"id":"NCBITaxon:267363","l":"Levilactobacillus zymae","na":1,"nb":2,"a":[["TED%3AAF-A0A5P8PYD2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5P8PYD2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A267363","Levilactobacillus zymae"],["NCBITaxon%3A1423817","Levilactobacillus zymae DSM 19395"]]},{"id":"NCBITaxon:267747","l":"Cutibacterium acnes KPA171202","na":1,"nb":2,"a":[["Pfam%3APF27542","ArfC"]],"b":[["NCBITaxon%3A1747","Cutibacterium acnes"],["NCBITaxon%3A267747","Cutibacterium acnes KPA171202"]]},{"id":"NCBITaxon:2678688","l":"Pseudodesulfovibrio cashew","na":2,"nb":1,"a":[["TED%3AAF-A0A6I6JE61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I6JE61-F1-model_v4_TED01"],["TED%3AAF-A0A6I6JD43-F1-model_v4_TED01","TED novel fold AF-A0A6I6JD43-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2678688","Pseudodesulfovibrio cashew"]]},{"id":"NCBITaxon:2682092","l":"Spirosoma arboris","na":2,"nb":1,"a":[["TED%3AAF-A0A7K1S3P3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7K1S3P3-F1-model_v4_TED02"],["TED%3AAF-A0A7K1S8E3-F1-model_v4_TED02","TED novel fold AF-A0A7K1S8E3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2682092","Spirosoma arboris"]]},{"id":"NCBITaxon:2682781","l":"Neoaquamicrobium microcysteis","na":2,"nb":1,"a":[["TED%3AAF-A0A5D4GRG3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A5D4GRG3-F1-model_v4_TED03"],["TED%3AAF-A0A5D4H5U8-F1-model_v4_TED01","TED novel fold AF-A0A5D4H5U8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2682781","Neoaquamicrobium microcysteis"]]},{"id":"NCBITaxon:2687297","l":"Oligoflexales bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A832PTV1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A832PTV1-F1-model_v4_TED02"],["TED%3AAF-A0A832QYV9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A832QYV9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2687297","Oligoflexales bacterium"]]},{"id":"NCBITaxon:268739","l":"Natronomonas moolapensis 8.8.11","na":1,"nb":2,"a":[["TED%3AAF-M1XRW3-F1-model_v4_TED01","TED highly-symmetric fold AF-M1XRW3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A416273","Natronomonas moolapensis"],["NCBITaxon%3A268739","Natronomonas moolapensis 8.8.11"]]},{"id":"NCBITaxon:2690782","l":"Halorubrum sp. JWXQ-INN 858","na":2,"nb":1,"a":[["TED%3AAF-A0A6G2HEJ4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6G2HEJ4-F1-model_v4_TED02"],["TED%3AAF-A0A6G2HCM7-F1-model_v4_TED05","TED novel fold AF-A0A6G2HCM7-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2690782","Halorubrum sp. JWXQ-INN 858"]]},{"id":"NCBITaxon:269482","l":"Burkholderia vietnamiensis G4","na":1,"nb":2,"a":[["TED%3AAF-A4JWD8-F1-model_v4_TED01","TED novel fold AF-A4JWD8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A60552","Burkholderia vietnamiensis"],["NCBITaxon%3A269482","Burkholderia vietnamiensis G4"]]},{"id":"NCBITaxon:269536","l":"Frankia sp. R43","na":2,"nb":1,"a":[["TED%3AAF-A0A0P7CJ03-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0P7CJ03-F1-model_v4_TED02"],["TED%3AAF-A0A0P7CJ87-F1-model_v4_TED02","TED novel fold AF-A0A0P7CJ87-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A269536","Frankia sp. R43"]]},{"id":"NCBITaxon:2695856","l":"Steroidobacter agaridevorans","na":2,"nb":1,"a":[["TED%3AAF-A0A829Y8E6-F1-model_v4_TED02","TED novel fold AF-A0A829Y8E6-F1-model_v4_TED02"],["TED%3AAF-A0A829YLU4-F1-model_v4_TED02","TED novel fold AF-A0A829YLU4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2695856","Steroidobacter agaridevorans"]]},{"id":"NCBITaxon:2699751","l":"Oligosphaeraceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A7X7MJU1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X7MJU1-F1-model_v4_TED01"],["TED%3AAF-A0A7X9G563-F1-model_v4_TED01","TED novel fold AF-A0A7X9G563-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2699751","Oligosphaeraceae bacterium"]]},{"id":"NCBITaxon:2703787","l":"Chitinophaga agri","na":2,"nb":1,"a":[["TED%3AAF-A0A6B9Z9L0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6B9Z9L0-F1-model_v4_TED01"],["TED%3AAF-A0A6B9ZJ42-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6B9ZJ42-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2703787","Chitinophaga agri"]]},{"id":"NCBITaxon:2705072","l":"Candidatus Anoxychlamydiales bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A846KQV6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A846KQV6-F1-model_v4_TED02"],["TED%3AAF-A0A6M1YSW0-F1-model_v4_TED01","TED novel fold AF-A0A6M1YSW0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2705072","Candidatus Anoxychlamydiales bacterium"]]},{"id":"NCBITaxon:2705533","l":"Candidatus Nitronauta litoralis","na":2,"nb":1,"a":[["TED%3AAF-A0A7T0BVA8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T0BVA8-F1-model_v4_TED01"],["TED%3AAF-A0A7T0BVL0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T0BVL0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2705533","Candidatus Nitronauta litoralis"]]},{"id":"NCBITaxon:2708063","l":"Pseudomonas brassicae","na":2,"nb":1,"a":[["TED%3AAF-A0A6B3NI41-F1-model_v4_TED01","TED novel fold AF-A0A6B3NI41-F1-model_v4_TED01"],["TED%3AAF-A0A6M0CT22-F1-model_v4_TED01","TED novel fold AF-A0A6M0CT22-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2708063","Pseudomonas brassicae"]]},{"id":"NCBITaxon:2708301","l":"Kineobactrum salinum","na":2,"nb":1,"a":[["TED%3AAF-A0A6C0TY05-F1-model_v4_TED01","TED novel fold AF-A0A6C0TY05-F1-model_v4_TED01"],["TED%3AAF-A0A6C0U6W3-F1-model_v4_TED01","TED novel fold AF-A0A6C0U6W3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2708301","Kineobactrum salinum"]]},{"id":"NCBITaxon:2709380","l":"Starkeya sp. ORNL1","na":2,"nb":1,"a":[["TED%3AAF-A0A858X0A3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A858X0A3-F1-model_v4_TED01"],["TED%3AAF-A0A858X2A2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A858X2A2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2709380","Starkeya sp. ORNL1"]]},{"id":"NCBITaxon:2709665","l":"Methylobacterium sp. DB0501","na":2,"nb":1,"a":[["TED%3AAF-A0A6M1MDN5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6M1MDN5-F1-model_v4_TED01"],["TED%3AAF-A0A6M1M195-F1-model_v4_TED04","TED novel fold AF-A0A6M1M195-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2709665","Methylobacterium sp. DB0501"]]},{"id":"NCBITaxon:2710756","l":"Streptomyces bathyalis","na":2,"nb":1,"a":[["TED%3AAF-A0A7T1T2F9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T1T2F9-F1-model_v4_TED01"],["TED%3AAF-A0A7T1T7I7-F1-model_v4_TED01","TED novel fold AF-A0A7T1T7I7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2710756","Streptomyces bathyalis"]]},{"id":"NCBITaxon:2714","l":"Aquifex pyrophilus","na":2,"nb":1,"a":[["PROSITE%3APS00923","Aspartate and glutamate racemases signature 1"],["PROSITE%3APS00924","Aspartate and glutamate racemases signature 2"]],"b":[["NCBITaxon%3A2714","Aquifex pyrophilus"]]},{"id":"NCBITaxon:271420","l":"Stutzerimonas xanthomarina","na":1,"nb":2,"a":[["TED%3AAF-A0A3R8TXN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R8TXN3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A271420","Stutzerimonas xanthomarina"],["NCBITaxon%3A1403346","Stutzerimonas xanthomarina DSM 18231"]]},{"id":"NCBITaxon:2721173","l":"Streptomyces sp. DSM 40868","na":1,"nb":2,"a":[["TED%3AAF-A0A6H0CQN2-F1-model_v4_TED02","TED novel fold AF-A0A6H0CQN2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A67315","Streptomyces lavenduligriseus"],["NCBITaxon%3A2721173","Streptomyces sp. DSM 40868"]]},{"id":"NCBITaxon:272123","l":"Anabaena cylindrica PCC 7122","na":2,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_FbnM","FbnM-type Dmaq biosynthesis peroxidase subunit family"],["TED%3AAF-K9ZFU9-F1-model_v4_TED01","TED highly-symmetric fold AF-K9ZFU9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A272123","Anabaena cylindrica PCC 7122"]]},{"id":"NCBITaxon:2721777","l":"Oscillospiraceae bacterium HV4-5-C5C","na":2,"nb":1,"a":[["TED%3AAF-A0A7X6CV36-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7X6CV36-F1-model_v4_TED02"],["TED%3AAF-A0A7X6CSM3-F1-model_v4_TED02","TED novel fold AF-A0A7X6CSM3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2721777","Oscillospiraceae bacterium HV4-5-C5C"]]},{"id":"NCBITaxon:2723666","l":"Planctomycetales bacterium ZRK34","na":2,"nb":1,"a":[["TED%3AAF-A0A7G9NYS9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7G9NYS9-F1-model_v4_TED02"],["TED%3AAF-A0A7G9P3Y2-F1-model_v4_TED01","TED novel fold AF-A0A7G9P3Y2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2723666","Planctomycetales bacterium ZRK34"]]},{"id":"NCBITaxon:2725303","l":"Clostridium sp. SM-530-WT-3G","na":1,"nb":2,"a":[["TED%3AAF-A0A7X9S550-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X9S550-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2675590","Clostridium sp. DSM 107452"],["NCBITaxon%3A2725303","Clostridium sp. SM-530-WT-3G"]]},{"id":"NCBITaxon:2725306","l":"Psychrobacillus sp. BL-248-WT-3","na":1,"nb":2,"a":[["TED%3AAF-A0A7X9MW50-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X9MW50-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1871623","Psychrobacillus sp."],["NCBITaxon%3A2725306","Psychrobacillus sp. BL-248-WT-3"]]},{"id":"NCBITaxon:2725996","l":"Lutibacter sp. B1","na":2,"nb":1,"a":[["TED%3AAF-A0A7X8NAT0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X8NAT0-F1-model_v4_TED01"],["TED%3AAF-A0A7X8NAM9-F1-model_v4_TED02","TED novel fold AF-A0A7X8NAM9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2725996","Lutibacter sp. B1"]]},{"id":"NCBITaxon:2726072","l":"Kribbellaceae bacterium","na":2,"nb":1,"a":[["TED%3AAF-A0A850DDQ1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A850DDQ1-F1-model_v4_TED01"],["TED%3AAF-A0A850D640-F1-model_v4_TED02","TED novel fold AF-A0A850D640-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2726072","Kribbellaceae bacterium"]]},{"id":"NCBITaxon:2726742","l":"Flammeovirga agarivorans","na":2,"nb":1,"a":[["TED%3AAF-A0A7X8XWP0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7X8XWP0-F1-model_v4_TED03"],["TED%3AAF-A0A7X8SPZ2-F1-model_v4_TED02","TED novel fold AF-A0A7X8SPZ2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2726742","Flammeovirga agarivorans"]]},{"id":"NCBITaxon:2728020","l":"Massilia forsythiae","na":2,"nb":1,"a":[["TED%3AAF-A0A7Z2VYU2-F1-model_v4_TED01","TED novel fold AF-A0A7Z2VYU2-F1-model_v4_TED01"],["TED%3AAF-A0A7Z2VZ79-F1-model_v4_TED03","TED novel fold AF-A0A7Z2VZ79-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2728020","Massilia forsythiae"]]},{"id":"NCBITaxon:2728024","l":"Spirosoma rhododendri","na":2,"nb":1,"a":[["TED%3AAF-A0A7L5DIZ5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7L5DIZ5-F1-model_v4_TED02"],["TED%3AAF-A0A7L5DPJ3-F1-model_v4_TED01","TED novel fold AF-A0A7L5DPJ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2728024","Spirosoma rhododendri"]]},{"id":"NCBITaxon:272831","l":"Neisseria meningitidis FAM18","na":1,"nb":2,"a":[["Pfam%3APF27460","ATP phosphoribosyltransferase subunit HisZ C-terminal domain"]],"b":[["NCBITaxon%3A487","Neisseria meningitidis"],["NCBITaxon%3A272831","Neisseria meningitidis FAM18"]]},{"id":"NCBITaxon:272952","l":"Hyaloperonospora arabidopsidis","na":1,"nb":2,"a":[["Pfam%3APF16829","Avirulence protein ATR13, RxLR effector"]],"b":[["NCBITaxon%3A272952","Hyaloperonospora arabidopsidis"],["NCBITaxon%3A559515","Hyaloperonospora arabidopsidis Emoy2"]]},{"id":"NCBITaxon:2729599","l":"Marinigracilibium pacificum","na":2,"nb":1,"a":[["TED%3AAF-A0A848IYL5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A848IYL5-F1-model_v4_TED02"],["TED%3AAF-A0A848JAJ2-F1-model_v4_TED04","TED novel fold AF-A0A848JAJ2-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2729599","Marinigracilibium pacificum"]]},{"id":"NCBITaxon:273119","l":"Ureaplasma parvum serovar 3 str. ATCC 700970","na":2,"nb":1,"a":[["Pfam%3APF11074","Domain of unknown function (DUF2779)"],["Pfam%3APF10896","Protein of unknown function (DUF2714)"]],"b":[["NCBITaxon%3A273119","Ureaplasma parvum serovar 3 str. ATCC 700970"]]},{"id":"NCBITaxon:273384","l":"Brevibacterium aurantiacum","na":1,"nb":2,"a":[["TED%3AAF-A0A556CK32-F1-model_v4_TED02","TED novel fold AF-A0A556CK32-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A273384","Brevibacterium aurantiacum"],["NCBITaxon%3A1703","Brevibacterium linens"]]},{"id":"NCBITaxon:2735135","l":"Azospirillum oleiclasticum","na":2,"nb":1,"a":[["TED%3AAF-A0A853HJJ8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A853HJJ8-F1-model_v4_TED02"],["TED%3AAF-A0A853HQV7-F1-model_v4_TED01","TED novel fold AF-A0A853HQV7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2735135","Azospirillum oleiclasticum"]]},{"id":"NCBITaxon:2735434","l":"Paraburkholderia sp. PGU19","na":2,"nb":1,"a":[["TED%3AAF-A0A7I8CJ86-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7I8CJ86-F1-model_v4_TED02"],["TED%3AAF-A0A7I8CQB6-F1-model_v4_TED02","TED novel fold AF-A0A7I8CQB6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2735434","Paraburkholderia sp. PGU19"]]},{"id":"NCBITaxon:2742195","l":"Mycoplasma sp. OR1901","na":2,"nb":1,"a":[["TED%3AAF-A0A6N1DW44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N1DW44-F1-model_v4_TED01"],["TED%3AAF-A0A6N1DTH0-F1-model_v4_TED06","TED novel fold AF-A0A6N1DTH0-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A2742195","Mycoplasma sp. OR1901"]]},{"id":"NCBITaxon:2745200","l":"Myxococcus sp. AM011","na":2,"nb":1,"a":[["TED%3AAF-A0A7Y6XIE4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y6XIE4-F1-model_v4_TED02"],["TED%3AAF-A0A7Y7CCJ7-F1-model_v4_TED02","TED novel fold AF-A0A7Y7CCJ7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2745200","Myxococcus sp. AM011"]]},{"id":"NCBITaxon:2754057","l":"Xanthomonas hortorum pv. cynarae","na":1,"nb":2,"a":[["TED%3AAF-A0A7Z1NH73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Z1NH73-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A56454","Xanthomonas hortorum"],["NCBITaxon%3A2754057","Xanthomonas hortorum pv. cynarae"]]},{"id":"NCBITaxon:2755382","l":"Nocardia huaxiensis","na":2,"nb":1,"a":[["TED%3AAF-A0A7D6YZX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7D6YZX7-F1-model_v4_TED01"],["TED%3AAF-A0A7D6ZHV2-F1-model_v4_TED02","TED novel fold AF-A0A7D6ZHV2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2755382","Nocardia huaxiensis"]]},{"id":"NCBITaxon:2761102","l":"Halobellus ruber","na":1,"nb":2,"a":[["TED%3AAF-A0A7J9SJC4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J9SJC4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2761102","Halobellus ruber"],["NCBITaxon%3A1979212","Halobellus sp."]]},{"id":"NCBITaxon:2762332","l":"Robiginitalea sp. SC105","na":2,"nb":1,"a":[["TED%3AAF-A0A842IMD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A842IMD6-F1-model_v4_TED01"],["TED%3AAF-A0A842IP13-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A842IP13-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2762332","Robiginitalea sp. SC105"]]},{"id":"NCBITaxon:2768438","l":"Microbacterium sp. SLBN-1","na":2,"nb":1,"a":[["TED%3AAF-A0A542GBV6-F1-model_v4_TED01","TED novel fold AF-A0A542GBV6-F1-model_v4_TED01"],["TED%3AAF-A0A542GBW6-F1-model_v4_TED01","TED novel fold AF-A0A542GBW6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2768438","Microbacterium sp. SLBN-1"]]},{"id":"NCBITaxon:2768448","l":"Promicromonospora sp. SLBN-65","na":2,"nb":1,"a":[["TED%3AAF-A0A542K652-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A542K652-F1-model_v4_TED01"],["TED%3AAF-A0A542JW13-F1-model_v4_TED03","TED novel fold AF-A0A542JW13-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2768448","Promicromonospora sp. SLBN-65"]]},{"id":"NCBITaxon:2774151","l":"Frigoriglobus tundricola","na":2,"nb":1,"a":[["TED%3AAF-A0A6M5Z446-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6M5Z446-F1-model_v4_TED02"],["TED%3AAF-A0A6M5YIB3-F1-model_v4_TED02","TED novel fold AF-A0A6M5YIB3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2774151","Frigoriglobus tundricola"]]},{"id":"NCBITaxon:2788","l":"Pyropia yezoensis","na":2,"nb":1,"a":[["Pfam%3APF06799","Conserved in the green lineage and diatoms 27"],["Pfam%3APF12452","Protein of unknown function (DUF3685)"]],"b":[["NCBITaxon%3A2788","Pyropia yezoensis"]]},{"id":"NCBITaxon:278992","l":"Streptomyces ambofaciens ATCC 23877","na":1,"nb":2,"a":[["Pfam%3APF00553","Cellulose binding domain"]],"b":[["NCBITaxon%3A1889","Streptomyces ambofaciens"],["NCBITaxon%3A278992","Streptomyces ambofaciens ATCC 23877"]]},{"id":"NCBITaxon:279262","l":"Nocardia mexicana","na":1,"nb":2,"a":[["TED%3AAF-A0A370GK18-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A370GK18-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A279262","Nocardia mexicana"],["NCBITaxon%3A1210089","Nocardia mexicana NBRC 108244"]]},{"id":"NCBITaxon:2795974","l":"Stieleria maiorica","na":2,"nb":1,"a":[["TED%3AAF-A0A5B9MHL4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5B9MHL4-F1-model_v4_TED02"],["TED%3AAF-A0A5B9MK37-F1-model_v4_TED03","TED novel fold AF-A0A5B9MK37-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2795974","Stieleria maiorica"]]},{"id":"NCBITaxon:2803864","l":"Shewanella sp. KX20019","na":2,"nb":1,"a":[["TED%3AAF-A0A7U0SGA6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7U0SGA6-F1-model_v4_TED01"],["TED%3AAF-A0A7U0XVY2-F1-model_v4_TED01","TED novel fold AF-A0A7U0XVY2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2803864","Shewanella sp. KX20019"]]},{"id":"NCBITaxon:28085","l":"Legionella cincinnatiensis","na":2,"nb":1,"a":[["TED%3AAF-A0A378ILG0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A378ILG0-F1-model_v4_TED01"],["TED%3AAF-A0A378IH57-F1-model_v4_TED01","TED novel fold AF-A0A378IH57-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28085","Legionella cincinnatiensis"]]},{"id":"NCBITaxon:28113","l":"Prevotella heparinolytica","na":1,"nb":2,"a":[["TED%3AAF-A0A449I749-F1-model_v4_TED01","TED novel fold AF-A0A449I749-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28113","Prevotella heparinolytica"],["NCBITaxon%3A888058","Prevotella heparinolytica ATCC 35895"]]},{"id":"NCBITaxon:28128","l":"Prevotella corporis","na":1,"nb":2,"a":[["TED%3AAF-A0A133Q582-F1-model_v4_TED02","TED novel fold AF-A0A133Q582-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A28128","Prevotella corporis"],["NCBITaxon%3A1122981","Prevotella corporis DSM 18810 = JCM 8529"]]},{"id":"NCBITaxon:281310","l":"Haemophilus influenzae 86-028NP","na":2,"nb":1,"a":[["Pfam%3APF22106","HvfC C-terminal domain"],["Pfam%3APF09836","HvfC C-terminal domain"]],"b":[["NCBITaxon%3A281310","Haemophilus influenzae 86-028NP"]]},{"id":"NCBITaxon:28185","l":"Spirochaeta sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A3C0SUV0-F1-model_v4_TED03","TED novel fold AF-A0A3C0SUV0-F1-model_v4_TED03"],["TED%3AAF-A0A6N7M3Q7-F1-model_v4_TED01","TED novel fold AF-A0A6N7M3Q7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28185","Spirochaeta sp."]]},{"id":"NCBITaxon:282199","l":"Nereida ignava","na":1,"nb":2,"a":[["TED%3AAF-A0A0U1NPS2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0U1NPS2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A282199","Nereida ignava"],["NCBITaxon%3A1122600","Nereida ignava DSM 16309"]]},{"id":"NCBITaxon:282217","l":"Variovorax sp. SRS16","na":2,"nb":1,"a":[["TED%3AAF-A0A8B6LM65-F1-model_v4_TED02","TED novel fold AF-A0A8B6LM65-F1-model_v4_TED02"],["TED%3AAF-A0A8B6LWN2-F1-model_v4_TED01","TED novel fold AF-A0A8B6LWN2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A282217","Variovorax sp. SRS16"]]},{"id":"NCBITaxon:282683","l":"Salipiger thiooxidans","na":1,"nb":2,"a":[["TED%3AAF-A0A1G7IRE3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G7IRE3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A282683","Salipiger thiooxidans"],["NCBITaxon%3A1207065","Salipiger thiooxidans DLFJ3-3"]]},{"id":"NCBITaxon:284577","l":"Onishia taeanensis","na":2,"nb":1,"a":[["TED%3AAF-A0A1G7R3Y1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G7R3Y1-F1-model_v4_TED01"],["TED%3AAF-A0A1G7PAN4-F1-model_v4_TED01","TED novel fold AF-A0A1G7PAN4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A284577","Onishia taeanensis"]]},{"id":"NCBITaxon:28572","l":"Talaromyces funiculosus","na":2,"nb":1,"a":[["Pfam%3APF10503","Esterase PHB depolymerase"],["PROSITE%3APS00562","CBM1 (carbohydrate binding type-1) domain signature"]],"b":[["NCBITaxon%3A28572","Talaromyces funiculosus"]]},{"id":"NCBITaxon:287478","l":"Hellea balneolensis","na":1,"nb":2,"a":[["TED%3AAF-A0A7C5QPM5-F1-model_v4_TED01","TED novel fold AF-A0A7C5QPM5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A287478","Hellea balneolensis"],["NCBITaxon%3A1121948","Hellea balneolensis DSM 19091"]]},{"id":"NCBITaxon:287487","l":"Haliea salexigens","na":1,"nb":2,"a":[["TED%3AAF-A0A3C1KKH1-F1-model_v4_TED03","TED novel fold AF-A0A3C1KKH1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A287487","Haliea salexigens"],["NCBITaxon%3A1121937","Haliea salexigens DSM 19537"]]},{"id":"NCBITaxon:28892","l":"Methanofollis liminatans DSM 4140","na":1,"nb":2,"a":[["TED%3AAF-J0S6K4-F1-model_v4_TED02","TED novel fold AF-J0S6K4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2201","Methanofollis liminatans"],["NCBITaxon%3A28892","Methanofollis liminatans DSM 4140"]]},{"id":"NCBITaxon:290318","l":"Chlorobium phaeovibrioides DSM 265","na":1,"nb":2,"a":[["Pfam%3APF24850","Bacillithiol biosynthesis BshC, C-terminal coiled-coil domain"]],"b":[["NCBITaxon%3A1094","Chlorobium phaeovibrioides"],["NCBITaxon%3A290318","Chlorobium phaeovibrioides DSM 265"]]},{"id":"NCBITaxon:290339","l":"Cronobacter sakazakii ATCC BAA-894","na":2,"nb":1,"a":[["Pfam%3APF06610","L-alanine exporter"],["Pfam%3APF10796","Sigma-S stabilisation anti-adaptor protein"]],"b":[["NCBITaxon%3A290339","Cronobacter sakazakii ATCC BAA-894"]]},{"id":"NCBITaxon:290397","l":"Anaeromyxobacter dehalogenans 2CP-C","na":1,"nb":2,"a":[["TED%3AAF-Q2IEQ0-F1-model_v4_TED01","TED highly-symmetric fold AF-Q2IEQ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A161493","Anaeromyxobacter dehalogenans"],["NCBITaxon%3A290397","Anaeromyxobacter dehalogenans 2CP-C"]]},{"id":"NCBITaxon:290399","l":"Arthrobacter sp. FB24","na":1,"nb":2,"a":[["Pfam%3APF01628","HrcA protein C terminal domain"]],"b":[["NCBITaxon%3A1667","Arthrobacter sp."],["NCBITaxon%3A290399","Arthrobacter sp. FB24"]]},{"id":"NCBITaxon:290512","l":"Prosthecochloris aestuarii DSM 271","na":1,"nb":2,"a":[["Pfam%3APF02043","Bacteriochlorophyll C binding protein"]],"b":[["NCBITaxon%3A1102","Prosthecochloris aestuarii"],["NCBITaxon%3A290512","Prosthecochloris aestuarii DSM 271"]]},{"id":"NCBITaxon:29295","l":"halophilic archaeon","na":1,"nb":2,"a":[["TED%3AAF-A0A365TD16-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A365TD16-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2304676","Halomicrococcus hydrotolerans"],["NCBITaxon%3A29295","halophilic archaeon"]]},{"id":"NCBITaxon:29303","l":"Streptantibioticus cattleyicolor","na":1,"nb":2,"a":[["Pfam%3APF22636","Fluoroacetyl-CoA-specific thioesterase"]],"b":[["NCBITaxon%3A29303","Streptantibioticus cattleyicolor"],["NCBITaxon%3A1003195","Streptantibioticus cattleyicolor NRRL 8057 = DSM 46488"]]},{"id":"NCBITaxon:29340","l":"Bacillus thuringiensis serovar sotto","na":1,"nb":2,"a":[["Pfam%3APF18449","Pesticidal crystal protein Cry1Aa, domain IV"]],"b":[["NCBITaxon%3A29340","Bacillus thuringiensis serovar sotto"],["NCBITaxon%3A527026","Bacillus thuringiensis serovar sotto str. T04001"]]},{"id":"NCBITaxon:29345","l":"Sedimentibacter hydroxybenzoicus","na":1,"nb":2,"a":[["Pfam%3APF26358","EcdD/BsdD phenolic detoxification"]],"b":[["NCBITaxon%3A29345","Sedimentibacter hydroxybenzoicus"],["NCBITaxon%3A1123245","Sedimentibacter hydroxybenzoicus DSM 7310"]]},{"id":"NCBITaxon:29367","l":"Clostridium puniceum","na":2,"nb":1,"a":[["TED%3AAF-A0A1S8T7W1-F1-model_v4_TED03","TED novel fold AF-A0A1S8T7W1-F1-model_v4_TED03"],["TED%3AAF-A0A1S8TA42-F1-model_v4_TED02","TED novel fold AF-A0A1S8TA42-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29367","Clostridium puniceum"]]},{"id":"NCBITaxon:29428","l":"Methylorubrum rhodinum","na":1,"nb":2,"a":[["TED%3AAF-A0A840ZF28-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A840ZF28-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29428","Methylorubrum rhodinum"],["NCBITaxon%3A1236969","Methylorubrum rhodinum JCM 2811"]]},{"id":"NCBITaxon:29447","l":"Xanthomonas albilineans","na":1,"nb":2,"a":[["TED%3AAF-A0A6P1SIK7-F1-model_v4_TED02","TED novel fold AF-A0A6P1SIK7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29447","Xanthomonas albilineans"],["NCBITaxon%3A380358","Xanthomonas albilineans GPE PC73"]]},{"id":"NCBITaxon:294710","l":"Proteiniphilum acetatigenes","na":1,"nb":2,"a":[["TED%3AAF-A0A101HH48-F1-model_v4_TED02","TED novel fold AF-A0A101HH48-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A294710","Proteiniphilum acetatigenes"],["NCBITaxon%3A1123008","Proteiniphilum acetatigenes DSM 18083"]]},{"id":"NCBITaxon:29482","l":"Salmonella enterica subsp. enterica serovar Abony","na":1,"nb":2,"a":[["Pfam%3APF03614","Repressor of phase-1 flagellin"]],"b":[["NCBITaxon%3A29482","Salmonella enterica subsp. enterica serovar Abony"],["NCBITaxon%3A1029983","Salmonella enterica subsp. enterica serovar Abony str. 0014"]]},{"id":"NCBITaxon:29522","l":"Brachyspira aalborgi","na":2,"nb":1,"a":[["TED%3AAF-A0A5C8E3N2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C8E3N2-F1-model_v4_TED01"],["TED%3AAF-A0A5C8E9C6-F1-model_v4_TED01","TED novel fold AF-A0A5C8E9C6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29522","Brachyspira aalborgi"]]},{"id":"NCBITaxon:29536","l":"Flavobacterium succinicans","na":1,"nb":2,"a":[["TED%3AAF-A0A1I4VV98-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I4VV98-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29536","Flavobacterium succinicans"],["NCBITaxon%3A1450525","Flavobacterium succinicans LMG 10402"]]},{"id":"NCBITaxon:29552","l":"Haploplasma axanthum","na":1,"nb":2,"a":[["TED%3AAF-A0A449BD20-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A449BD20-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29552","Haploplasma axanthum"],["NCBITaxon%3A1278311","Haploplasma axanthum ATCC 25176"]]},{"id":"NCBITaxon:29557","l":"Mycoplasmopsis gallinarum","na":1,"nb":2,"a":[["TED%3AAF-A0A168RG78-F1-model_v4_TED05","TED novel fold AF-A0A168RG78-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A29557","Mycoplasmopsis gallinarum"],["NCBITaxon%3A1122248","Mycoplasmopsis gallinarum DSM 19816"]]},{"id":"NCBITaxon:29559","l":"Metamycoplasma hyosynoviae","na":2,"nb":1,"a":[["TED%3AAF-A0A063YD07-F1-model_v4_TED02","TED novel fold AF-A0A063YD07-F1-model_v4_TED02"],["TED%3AAF-A0A4R7TZF5-F1-model_v4_TED02","TED novel fold AF-A0A4R7TZF5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29559","Metamycoplasma hyosynoviae"]]},{"id":"NCBITaxon:2969","l":"Oxyrrhis marina","na":2,"nb":1,"a":[["TED%3AAF-A0A7S4GPX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S4GPX7-F1-model_v4_TED01"],["TED%3AAF-A0A7S4GMJ0-F1-model_v4_TED01","TED novel fold AF-A0A7S4GMJ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2969","Oxyrrhis marina"]]},{"id":"NCBITaxon:297244","l":"Chryseobacterium shigense","na":1,"nb":2,"a":[["TED%3AAF-A0A1N7IFX1-F1-model_v4_TED03","TED novel fold AF-A0A1N7IFX1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A297244","Chryseobacterium shigense"],["NCBITaxon%3A1255686","Chryseobacterium shigense PCAi_B2.3"]]},{"id":"NCBITaxon:29829","l":"Lipomyces starkeyi","na":1,"nb":2,"a":[["Pfam%3APF03702","Anhydro-N-acetylmuramic acid kinase"]],"b":[["NCBITaxon%3A29829","Lipomyces starkeyi"],["NCBITaxon%3A675824","Lipomyces starkeyi NRRL Y-11557"]]},{"id":"NCBITaxon:298657","l":"Pseudoalteromonas spongiae","na":1,"nb":2,"a":[["TED%3AAF-A0A5S3VMG7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5S3VMG7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A298657","Pseudoalteromonas spongiae"],["NCBITaxon%3A1117319","Pseudoalteromonas spongiae UST010723-006"]]},{"id":"NCBITaxon:29920","l":"Phytophthora cactorum","na":2,"nb":1,"a":[["TED%3AAF-A0A329STP2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A329STP2-F1-model_v4_TED02"],["TED%3AAF-A0A329SP24-F1-model_v4_TED02","TED novel fold AF-A0A329SP24-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29920","Phytophthora cactorum"]]},{"id":"NCBITaxon:299255","l":"Ferrimonas marina","na":1,"nb":2,"a":[["TED%3AAF-A0A1M5RZT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M5RZT8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A299255","Ferrimonas marina"],["NCBITaxon%3A1349749","Ferrimonas marina NBRC 102583"]]},{"id":"NCBITaxon:299767","l":"Enterobacter ludwigii","na":1,"nb":2,"a":[["TED%3AAF-W0BYN9-F1-model_v4_TED01","TED highly-symmetric fold AF-W0BYN9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A550","Enterobacter cloacae"],["NCBITaxon%3A299767","Enterobacter ludwigii"]]},{"id":"NCBITaxon:300267","l":"Shigella dysenteriae Sd197","na":2,"nb":1,"a":[["Pfam%3APF07869","Protein of unknown function (DUF1656)"],["Pfam%3APF06872","EspG protein"]],"b":[["NCBITaxon%3A300267","Shigella dysenteriae Sd197"]]},{"id":"NCBITaxon:302484","l":"Haloferax larsenii","na":1,"nb":2,"a":[["TED%3AAF-A0A1H7N6T5-F1-model_v4_TED01","TED novel fold AF-A0A1H7N6T5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A302484","Haloferax larsenii"],["NCBITaxon%3A1227460","Haloferax larsenii JCM 13917"]]},{"id":"NCBITaxon:303698","l":"Penicillium steckii","na":2,"nb":1,"a":[["TED%3AAF-A0A1V6TCF9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1V6TCF9-F1-model_v4_TED03"],["TED%3AAF-A0A1V6U0I0-F1-model_v4_TED02","TED novel fold AF-A0A1V6U0I0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A303698","Penicillium steckii"]]},{"id":"NCBITaxon:304371","l":"Methanocella paludicola SANAE","na":1,"nb":2,"a":[["TED%3AAF-D1Z063-F1-model_v4_TED03","TED highly-symmetric fold AF-D1Z063-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A570267","Methanocella paludicola"],["NCBITaxon%3A304371","Methanocella paludicola SANAE"]]},{"id":"NCBITaxon:305507","l":"Algoriphagus locisalis","na":2,"nb":1,"a":[["TED%3AAF-A0A1I7E6M2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I7E6M2-F1-model_v4_TED02"],["TED%3AAF-A0A1I7CQ03-F1-model_v4_TED01","TED novel fold AF-A0A1I7CQ03-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A305507","Algoriphagus locisalis"]]},{"id":"NCBITaxon:306537","l":"Corynebacterium jeikeium K411","na":1,"nb":2,"a":[["TED%3AAF-Q4JSH9-F1-model_v4_TED02","TED novel fold AF-Q4JSH9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A38289","Corynebacterium jeikeium"],["NCBITaxon%3A306537","Corynebacterium jeikeium K411"]]},{"id":"NCBITaxon:307","l":"Pseudomonas sp. KKS102","na":2,"nb":1,"a":[["Pfam%3APF22632","Dihydroxybiphenyl dioxygenase BphC D1"],["PROSITE%3APS00082","Extradiol ring-cleavage dioxygenases signature"]],"b":[["NCBITaxon%3A307","Pseudomonas sp. KKS102"]]},{"id":"NCBITaxon:309798","l":"Coprothermobacter proteolyticus DSM 5265","na":1,"nb":2,"a":[["TED%3AAF-B5Y636-F1-model_v4_TED03","TED novel fold AF-B5Y636-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A35786","Coprothermobacter proteolyticus"],["NCBITaxon%3A309798","Coprothermobacter proteolyticus DSM 5265"]]},{"id":"NCBITaxon:309803","l":"Thermotoga neapolitana DSM 4359","na":1,"nb":2,"a":[["Pfam%3APF01960","ArgJ family"]],"b":[["NCBITaxon%3A2337","Thermotoga neapolitana"],["NCBITaxon%3A309803","Thermotoga neapolitana DSM 4359"]]},{"id":"NCBITaxon:309807","l":"Salinibacter ruber DSM 13855","na":1,"nb":2,"a":[["Pfam%3APF06491","Disulphide isomerase"]],"b":[["NCBITaxon%3A146919","Salinibacter ruber"],["NCBITaxon%3A309807","Salinibacter ruber DSM 13855"]]},{"id":"NCBITaxon:311234","l":"Cellulomonas terrae","na":1,"nb":2,"a":[["TED%3AAF-A0A511JIA8-F1-model_v4_TED02","TED novel fold AF-A0A511JIA8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A311234","Cellulomonas terrae"],["NCBITaxon%3A1305858","Cellulomonas terrae JCM 14899"]]},{"id":"NCBITaxon:311334","l":"Chryseobacterium taeanense","na":1,"nb":2,"a":[["TED%3AAF-A0A1G8PE03-F1-model_v4_TED03","TED novel fold AF-A0A1G8PE03-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A311334","Chryseobacterium taeanense"],["NCBITaxon%3A1227361","Chryseobacterium taeanense ARB2"]]},{"id":"NCBITaxon:311403","l":"Rhizobium rhizogenes K84","na":1,"nb":2,"a":[["Pfam%3APF07969","Amidohydrolase family"]],"b":[["NCBITaxon%3A3025782","Gillisella ampelina"],["NCBITaxon%3A311403","Rhizobium rhizogenes K84"]]},{"id":"NCBITaxon:313594","l":"Polaribacter irgensii 23-P","na":1,"nb":2,"a":[["TED%3AAF-A4BXQ4-F1-model_v4_TED01","TED novel fold AF-A4BXQ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A531","Polaribacter irgensii"],["NCBITaxon%3A313594","Polaribacter irgensii 23-P"]]},{"id":"NCBITaxon:313595","l":"Psychroflexus torquis ATCC 700755","na":1,"nb":2,"a":[["TED%3AAF-K4IBR2-F1-model_v4_TED01","TED novel fold AF-K4IBR2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A57029","Psychroflexus torquis"],["NCBITaxon%3A313595","Psychroflexus torquis ATCC 700755"]]},{"id":"NCBITaxon:313603","l":"Maribacter sp. HTCC2170","na":2,"nb":1,"a":[["TED%3AAF-A4ARA8-F1-model_v4_TED01","TED novel fold AF-A4ARA8-F1-model_v4_TED01"],["TED%3AAF-A4ARA8-F1-model_v4_TED02","TED novel fold AF-A4ARA8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A313603","Maribacter sp. HTCC2170"]]},{"id":"NCBITaxon:314230","l":"Blastopirellula marina DSM 3645","na":1,"nb":2,"a":[["TED%3AAF-A3ZZX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A3ZZX2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A124","Blastopirellula marina"],["NCBITaxon%3A314230","Blastopirellula marina DSM 3645"]]},{"id":"NCBITaxon:314280","l":"Photobacterium profundum 3TCK","na":2,"nb":1,"a":[["TED%3AAF-Q1Z3V5-F1-model_v4_TED02","TED highly-symmetric fold AF-Q1Z3V5-F1-model_v4_TED02"],["TED%3AAF-Q1YWT9-F1-model_v4_TED01","TED novel fold AF-Q1YWT9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A314280","Photobacterium profundum 3TCK"]]},{"id":"NCBITaxon:315277","l":"Chlamydia trachomatis A/HAR-13","na":1,"nb":2,"a":[["Pfam%3APF05745","Chlamydia 15 kDa cysteine-rich outer membrane protein (CRPA)"]],"b":[["NCBITaxon%3A813","Chlamydia trachomatis"],["NCBITaxon%3A315277","Chlamydia trachomatis A/HAR-13"]]},{"id":"NCBITaxon:315358","l":"Spiroplasma eriocheiris","na":1,"nb":2,"a":[["TED%3AAF-A0A0H3XHP2-F1-model_v4_TED01","TED novel fold AF-A0A0H3XHP2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A315358","Spiroplasma eriocheiris"],["NCBITaxon%3A743698","Spiroplasma eriocheiris CCTCC M 207170"]]},{"id":"NCBITaxon:315730","l":"Bacillus mycoides KBAB4","na":2,"nb":1,"a":[["Pfam%3APF11023","Zinc-ribbon containing domain"],["Pfam%3APF07155","ECF-type riboflavin transporter, S component"]],"b":[["NCBITaxon%3A315730","Bacillus mycoides KBAB4"]]},{"id":"NCBITaxon:316274","l":"Herpetosiphon aurantiacus DSM 785","na":1,"nb":2,"a":[["TED%3AAF-A9AZN6-F1-model_v4_TED02","TED highly-symmetric fold AF-A9AZN6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A65","Herpetosiphon aurantiacus"],["NCBITaxon%3A316274","Herpetosiphon aurantiacus DSM 785"]]},{"id":"NCBITaxon:317010","l":"Enterococcus canintestini","na":1,"nb":2,"a":[["TED%3AAF-A0A1L8R2Z2-F1-model_v4_TED01","TED novel fold AF-A0A1L8R2Z2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1448267","Corynebacterium nasicanis"],["NCBITaxon%3A317010","Enterococcus canintestini"]]},{"id":"NCBITaxon:317655","l":"Sphingopyxis alaskensis RB2256","na":1,"nb":2,"a":[["Pfam%3APF10755","Protein of unknown function (DUF2585)"]],"b":[["NCBITaxon%3A117207","Sphingopyxis alaskensis"],["NCBITaxon%3A317655","Sphingopyxis alaskensis RB2256"]]},{"id":"NCBITaxon:318167","l":"Shewanella frigidimarina NCIMB 400","na":2,"nb":1,"a":[["Pfam%3APF14537","Cytochrome c3"],["TED%3AAF-Q080H2-F1-model_v4_TED02","TED novel fold AF-Q080H2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A318167","Shewanella frigidimarina NCIMB 400"]]},{"id":"NCBITaxon:318683","l":"Gluconobacter albidus","na":1,"nb":2,"a":[["TED%3AAF-A0A149TK51-F1-model_v4_TED01","TED novel fold AF-A0A149TK51-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A318683","Gluconobacter albidus"],["NCBITaxon%3A1307944","Gluconobacter albidus NBRC 3250"]]},{"id":"NCBITaxon:318829","l":"Pyricularia oryzae","na":2,"nb":1,"a":[["TED%3AAF-A0A4P7NAU2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P7NAU2-F1-model_v4_TED01"],["TED%3AAF-A0A4P7MZB7-F1-model_v4_TED02","TED novel fold AF-A0A4P7MZB7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A318829","Pyricularia oryzae"]]},{"id":"NCBITaxon:319017","l":"Bradyrhizobium sp. WSM471","na":2,"nb":1,"a":[["TED%3AAF-H5YAF1-F1-model_v4_TED02","TED highly-symmetric fold AF-H5YAF1-F1-model_v4_TED02"],["TED%3AAF-H5Y776-F1-model_v4_TED02","TED novel fold AF-H5Y776-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A319017","Bradyrhizobium sp. WSM471"]]},{"id":"NCBITaxon:319224","l":"Shewanella putrefaciens CN-32","na":2,"nb":1,"a":[["Pfam%3APF17810","Arginine decarboxylase helical bundle domain"],["Pfam%3APF17944","Arginine decarboxylase C-terminal helical extension"]],"b":[["NCBITaxon%3A319224","Shewanella putrefaciens CN-32"]]},{"id":"NCBITaxon:319795","l":"Deinococcus geothermalis DSM 11300","na":1,"nb":2,"a":[["Pfam%3APF12747","DdrB-like protein"]],"b":[["NCBITaxon%3A68909","Deinococcus geothermalis"],["NCBITaxon%3A319795","Deinococcus geothermalis DSM 11300"]]},{"id":"NCBITaxon:32052","l":"Synechococcus sp. WH 8020","na":2,"nb":1,"a":[["Pfam%3APF10847","Protein of unknown function (DUF2656)"],["TED%3AAF-A0A0H4B904-F1-model_v4_TED02","TED novel fold AF-A0A0H4B904-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A32052","Synechococcus sp. WH 8020"]]},{"id":"NCBITaxon:320771","l":"Pedosphaera parvula Ellin514","na":2,"nb":1,"a":[["TED%3AAF-B9XAB4-F1-model_v4_TED02","TED highly-symmetric fold AF-B9XAB4-F1-model_v4_TED02"],["TED%3AAF-B9XFV1-F1-model_v4_TED01","TED highly-symmetric fold AF-B9XFV1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A320771","Pedosphaera parvula Ellin514"]]},{"id":"NCBITaxon:320912","l":"Maribacter dokdonensis","na":1,"nb":2,"a":[["TED%3AAF-A0A1H4M5S7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H4M5S7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A320912","Maribacter dokdonensis"],["NCBITaxon%3A1300346","Maribacter dokdonensis DSW-8"]]},{"id":"NCBITaxon:321317","l":"Sphaerisporangium rubeum","na":2,"nb":1,"a":[["TED%3AAF-A0A7X0IGY2-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A7X0IGY2-F1-model_v4_TED06"],["TED%3AAF-A0A7X0MAZ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X0MAZ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A321317","Sphaerisporangium rubeum"]]},{"id":"NCBITaxon:321662","l":"Pseudomonas moraviensis","na":1,"nb":2,"a":[["TED%3AAF-A0A423NRI6-F1-model_v4_TED06","TED novel fold AF-A0A423NRI6-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A321662","Pseudomonas moraviensis"],["NCBITaxon%3A1689450","Pseudomonas moraviensis subsp. stanleyae"]]},{"id":"NCBITaxon:322710","l":"Azotobacter vinelandii DJ","na":2,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_Orn_monoox","Metallophore-associated ornithine N5-monooxygenase family"],["proteintraitsmech%3AELIFE109154_PvdP","Pyoverdine chromophore maturation tyrosinase family"]],"b":[["NCBITaxon%3A322710","Azotobacter vinelandii DJ"]]},{"id":"NCBITaxon:323259","l":"Methanospirillum hungatei JF-1","na":1,"nb":2,"a":[["Pfam%3APF01864","CDP-archaeol synthase"]],"b":[["NCBITaxon%3A2203","Methanospirillum hungatei"],["NCBITaxon%3A323259","Methanospirillum hungatei JF-1"]]},{"id":"NCBITaxon:323426","l":"Jezberella montanilacus","na":2,"nb":1,"a":[["TED%3AAF-A0A2T0XBZ0-F1-model_v4_TED02","TED novel fold AF-A0A2T0XBZ0-F1-model_v4_TED02"],["TED%3AAF-A0A2T0XCA1-F1-model_v4_TED02","TED novel fold AF-A0A2T0XCA1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A323426","Jezberella montanilacus"]]},{"id":"NCBITaxon:323545","l":"Xylaria multiplex","na":2,"nb":1,"a":[["TED%3AAF-A0A7C8ILS5-F1-model_v4_TED01","TED novel fold AF-A0A7C8ILS5-F1-model_v4_TED01"],["TED%3AAF-A0A7C8MZ20-F1-model_v4_TED02","TED novel fold AF-A0A7C8MZ20-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A323545","Xylaria multiplex"]]},{"id":"NCBITaxon:325240","l":"Shewanella baltica OS155","na":1,"nb":2,"a":[["Pfam%3APF04337","Protein of unknown function, DUF480"]],"b":[["NCBITaxon%3A62322","Shewanella baltica"],["NCBITaxon%3A325240","Shewanella baltica OS155"]]},{"id":"NCBITaxon:326424","l":"Frankia alni ACN14a","na":1,"nb":2,"a":[["Pfam%3APF14403","Circularly permuted ATP-grasp type 2"]],"b":[["NCBITaxon%3A1859","Frankia alni"],["NCBITaxon%3A326424","Frankia alni ACN14a"]]},{"id":"NCBITaxon:326427","l":"Chloroflexus aggregans DSM 9485","na":1,"nb":2,"a":[["Pfam%3APF22039","Imidazolonepropionase-like composite domain, bacteria"]],"b":[["NCBITaxon%3A152260","Chloroflexus aggregans"],["NCBITaxon%3A326427","Chloroflexus aggregans DSM 9485"]]},{"id":"NCBITaxon:327575","l":"Capnocytophaga leadbetteri","na":1,"nb":2,"a":[["TED%3AAF-A0A250FA39-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A250FA39-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A327575","Capnocytophaga leadbetteri"],["NCBITaxon%3A1410028","Capnocytophaga leadbetteri HMP_JCVI_SC0215"]]},{"id":"NCBITaxon:331678","l":"Chlorobium phaeobacteroides BS1","na":2,"nb":1,"a":[["Pfam%3APF28537","Probable trigger factor, FKBP-like domain"],["TED%3AAF-B3ENX6-F1-model_v4_TED04","TED highly-symmetric fold AF-B3ENX6-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A331678","Chlorobium phaeobacteroides BS1"]]},{"id":"NCBITaxon:332186","l":"Shewanella xiamenensis","na":1,"nb":2,"a":[["TED%3AAF-A0A1E3UT11-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1E3UT11-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A24","Shewanella putrefaciens"],["NCBITaxon%3A332186","Shewanella xiamenensis"]]},{"id":"NCBITaxon:333367","l":"Enterocloster asparagiformis","na":1,"nb":2,"a":[["TED%3AAF-A0A413F8C9-F1-model_v4_TED04","TED novel fold AF-A0A413F8C9-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A518636","[Clostridium] asparagiforme DSM 15981"],["NCBITaxon%3A333367","Enterocloster asparagiformis"]]},{"id":"NCBITaxon:333849","l":"Enterococcus faecium DO","na":2,"nb":1,"a":[["Pfam%3APF08546","Ketopantoate reductase PanE/ApbA C terminal"],["Pfam%3APF02558","Ketopantoate reductase PanE/ApbA"]],"b":[["NCBITaxon%3A333849","Enterococcus faecium DO"]]},{"id":"NCBITaxon:334380","l":"Orientia tsutsugamushi str. Ikeda","na":2,"nb":1,"a":[["Pfam%3APF01745","Isopentenyl transferase"],["TED%3AAF-B3CRH9-F1-model_v4_TED02","TED highly-symmetric fold AF-B3CRH9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A334380","Orientia tsutsugamushi str. Ikeda"]]},{"id":"NCBITaxon:335020","l":"Neomesorhizobium albiziae","na":1,"nb":2,"a":[["TED%3AAF-A0A1I4BW12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I4BW12-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1122227","Mesorhizobium albiziae DSM 21822"],["NCBITaxon%3A335020","Neomesorhizobium albiziae"]]},{"id":"NCBITaxon:335284","l":"Psychrobacter cryohalolentis K5","na":1,"nb":2,"a":[["Pfam%3APF10414","Sirohaem synthase dimerisation region"]],"b":[["NCBITaxon%3A330922","Psychrobacter cryohalolentis"],["NCBITaxon%3A335284","Psychrobacter cryohalolentis K5"]]},{"id":"NCBITaxon:336203","l":"Sphingobium fuliginis","na":1,"nb":2,"a":[["TED%3AAF-A0A4Q4J272-F1-model_v4_TED01","TED novel fold AF-A0A4Q4J272-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A336203","Sphingobium fuliginis"],["NCBITaxon%3A1208342","Sphingobium fuliginis ATCC 27551"]]},{"id":"NCBITaxon:338584","l":"Polymorphospora rubra","na":2,"nb":1,"a":[["TED%3AAF-A0A810NDK9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A810NDK9-F1-model_v4_TED01"],["TED%3AAF-A0A810N2K6-F1-model_v4_TED01","TED novel fold AF-A0A810N2K6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A338584","Polymorphospora rubra"]]},{"id":"NCBITaxon:338969","l":"Rhodoferax ferrireducens T118","na":1,"nb":2,"a":[["Pfam%3APF11154","Protein of unknown function (DUF2934)"]],"b":[["NCBITaxon%3A192843","Rhodoferax ferrireducens"],["NCBITaxon%3A338969","Rhodoferax ferrireducens T118"]]},{"id":"NCBITaxon:33899","l":"Streptomyces galilaeus","na":1,"nb":2,"a":[["Pfam%3APF21036","Erythromycin biosynthesis protein CIII-like, N-terminal domain"]],"b":[["NCBITaxon%3A67280","Streptomyces bobili"],["NCBITaxon%3A33899","Streptomyces galilaeus"]]},{"id":"NCBITaxon:33922","l":"Mycoplasmopsis agassizii","na":2,"nb":1,"a":[["TED%3AAF-A0A1W1X4W5-F1-model_v4_TED01","TED novel fold AF-A0A1W1X4W5-F1-model_v4_TED01"],["TED%3AAF-A0A1W1XA50-F1-model_v4_TED02","TED novel fold AF-A0A1W1XA50-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A33922","Mycoplasmopsis agassizii"]]},{"id":"NCBITaxon:33950","l":"Thermoanaerobacterium thermosulfurigenes","na":2,"nb":1,"a":[["Pfam%3APF18565","Glycoside hydrolase family 2 C-terminal domain 5"],["Pfam%3APF00395","S-layer homology domain"]],"b":[["NCBITaxon%3A33950","Thermoanaerobacterium thermosulfurigenes"]]},{"id":"NCBITaxon:342616","l":"Streptococcus agalactiae COH1","na":2,"nb":1,"a":[["Pfam%3APF26337","Glucosyltransferase 3-like, C-terminal domain"],["Pfam%3APF26334","Glucosyltransferase 3-like, N-terminal domain"]],"b":[["NCBITaxon%3A342616","Streptococcus agalactiae COH1"]]},{"id":"NCBITaxon:34475","l":"Rhodofomes roseus","na":2,"nb":1,"a":[["TED%3AAF-A0A4Y9Y9S1-F1-model_v4_TED01","TED novel fold AF-A0A4Y9Y9S1-F1-model_v4_TED01"],["TED%3AAF-A0A4Y9YQ77-F1-model_v4_TED02","TED novel fold AF-A0A4Y9YQ77-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A34475","Rhodofomes roseus"]]},{"id":"NCBITaxon:348837","l":"Spironucleus salmonicida","na":2,"nb":1,"a":[["TED%3AAF-V6LUE2-F1-model_v4_TED01","TED highly-symmetric fold AF-V6LUE2-F1-model_v4_TED01"],["TED%3AAF-V6LDU7-F1-model_v4_TED02","TED novel fold AF-V6LDU7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A348837","Spironucleus salmonicida"]]},{"id":"NCBITaxon:348901","l":"Cercospora zeina","na":2,"nb":1,"a":[["TED%3AAF-A0A2I0RIM7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I0RIM7-F1-model_v4_TED01"],["TED%3AAF-A0A2I0RWG4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I0RWG4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A348901","Cercospora zeina"]]},{"id":"NCBITaxon:349102","l":"Cereibacter sphaeroides ATCC 17025","na":2,"nb":1,"a":[["Pfam%3APF13286","Phosphohydrolase-associated domain"],["Pfam%3APF04962","KduI/IolB family"]],"b":[["NCBITaxon%3A349102","Cereibacter sphaeroides ATCC 17025"]]},{"id":"NCBITaxon:349215","l":"Micavibrio aeruginosavorus EPB","na":2,"nb":1,"a":[["TED%3AAF-M4VW25-F1-model_v4_TED02","TED highly-symmetric fold AF-M4VW25-F1-model_v4_TED02"],["TED%3AAF-M4VIZ9-F1-model_v4_TED01","TED novel fold AF-M4VIZ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A349215","Micavibrio aeruginosavorus EPB"]]},{"id":"NCBITaxon:350688","l":"Alkaliphilus oremlandii OhILAs","na":1,"nb":2,"a":[["Pfam%3APF18955","Domain of unknown function (DUF5698)"]],"b":[["NCBITaxon%3A461876","Alkaliphilus oremlandii"],["NCBITaxon%3A350688","Alkaliphilus oremlandii OhILAs"]]},{"id":"NCBITaxon:350893","l":"Flavobacterium daejeonense","na":1,"nb":2,"a":[["Pfam%3APF10137","CAP12/Pycsar effector protein, TIR domain"]],"b":[["NCBITaxon%3A350893","Flavobacterium daejeonense"],["NCBITaxon%3A1121887","Flavobacterium daejeonense DSM 17708"]]},{"id":"NCBITaxon:351052","l":"Alkalilimnicola ehrlichii","na":1,"nb":2,"a":[["TED%3AAF-A0A3E0WF12-F1-model_v4_TED02","TED novel fold AF-A0A3E0WF12-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A351052","Alkalilimnicola ehrlichii"],["NCBITaxon%3A187272","Alkalilimnicola ehrlichii MLHE-1"]]},{"id":"NCBITaxon:351605","l":"Geotalea uraniireducens Rf4","na":1,"nb":2,"a":[["TED%3AAF-A5GE78-F1-model_v4_TED01","TED highly-symmetric fold AF-A5GE78-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A351604","Geotalea uraniireducens"],["NCBITaxon%3A351605","Geotalea uraniireducens Rf4"]]},{"id":"NCBITaxon:351607","l":"Acidothermus cellulolyticus 11B","na":1,"nb":2,"a":[["Pfam%3APF10647","Lipoprotein LpqB beta-propeller domain"]],"b":[["NCBITaxon%3A28049","Acidothermus cellulolyticus"],["NCBITaxon%3A351607","Acidothermus cellulolyticus 11B"]]},{"id":"NCBITaxon:353852","l":"Mycoplasma nasistruthionis","na":2,"nb":1,"a":[["TED%3AAF-A0A4Y6I7G8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y6I7G8-F1-model_v4_TED01"],["TED%3AAF-A0A5B7XW33-F1-model_v4_TED03","TED novel fold AF-A0A5B7XW33-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A353852","Mycoplasma nasistruthionis"]]},{"id":"NCBITaxon:356829","l":"Bifidobacterium tsurumiense","na":1,"nb":2,"a":[["TED%3AAF-A0A6L5X0P9-F1-model_v4_TED01","TED novel fold AF-A0A6L5X0P9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A356829","Bifidobacterium tsurumiense"],["NCBITaxon%3A1121112","Bifidobacterium tsurumiense DSM 17777"]]},{"id":"NCBITaxon:35761","l":"Nocardioides sp.","na":1,"nb":2,"a":[["TED%3AAF-A0A2E8Z449-F1-model_v4_TED01","TED novel fold AF-A0A2E8Z449-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A35761","Nocardioides sp."],["NCBITaxon%3A2568655","Nocardioides vastitatis"]]},{"id":"NCBITaxon:35788","l":"Rickettsia africae","na":1,"nb":2,"a":[["Pfam%3APF12574","120 KDa Rickettsia surface antigen"]],"b":[["NCBITaxon%3A35788","Rickettsia africae"],["NCBITaxon%3A347255","Rickettsia africae ESF-5"]]},{"id":"NCBITaxon:359131","l":"Streptomyces rubellomurinus","na":1,"nb":2,"a":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"]],"b":[["NCBITaxon%3A359131","Streptomyces rubellomurinus"],["NCBITaxon%3A1615590","Streptomyces rubellomurinus subsp. indigoferus"]]},{"id":"NCBITaxon:359787","l":"Staphylococcus aureus subsp. aureus JH1","na":2,"nb":1,"a":[["Pfam%3APF04647","Accessory gene regulator B"],["Pfam%3APF09902","Uncharacterized protein conserved in bacteria (DUF2129)"]],"b":[["NCBITaxon%3A359787","Staphylococcus aureus subsp. aureus JH1"]]},{"id":"NCBITaxon:360095","l":"Bartonella bacilliformis KC583","na":1,"nb":2,"a":[["Pfam%3APF06776","Invasion associated locus B (IalB) protein"]],"b":[["NCBITaxon%3A774","Bartonella bacilliformis"],["NCBITaxon%3A360095","Bartonella bacilliformis KC583"]]},{"id":"NCBITaxon:362787","l":"Candidatus Protochlamydia amoebophila","na":1,"nb":2,"a":[["TED%3AAF-A0A0C1H7Y9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0C1H7Y9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A362787","Candidatus Protochlamydia amoebophila"],["NCBITaxon%3A264201","Candidatus Protochlamydia amoebophila UWE25"]]},{"id":"NCBITaxon:366618","l":"Haematobacter genomosp. 1","na":1,"nb":2,"a":[["TED%3AAF-A0A212ACG5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A212ACG5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A366618","Haematobacter genomosp. 1"],["NCBITaxon%3A2953762","Haematobacter sp."]]},{"id":"NCBITaxon:36818","l":"Streptomyces subrutilus","na":2,"nb":1,"a":[["TED%3AAF-A0A1E5P0P4-F1-model_v4_TED03","TED novel fold AF-A0A1E5P0P4-F1-model_v4_TED03"],["TED%3AAF-A0A1E5PTA7-F1-model_v4_TED01","TED novel fold AF-A0A1E5PTA7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A36818","Streptomyces subrutilus"]]},{"id":"NCBITaxon:368408","l":"Thermofilum pendens Hrk 5","na":1,"nb":2,"a":[["Pfam%3APF04019","Protein of unknown function (DUF359)"]],"b":[["NCBITaxon%3A2269","Thermofilum pendens"],["NCBITaxon%3A368408","Thermofilum pendens Hrk 5"]]},{"id":"NCBITaxon:36849","l":"Oxobacter pfennigii","na":2,"nb":1,"a":[["TED%3AAF-A0A0P8WAY7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0P8WAY7-F1-model_v4_TED03"],["TED%3AAF-A0A0P8YVE3-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A0P8YVE3-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A36849","Oxobacter pfennigii"]]},{"id":"NCBITaxon:370038","l":"Oceanidesulfovibrio marinus","na":2,"nb":1,"a":[["TED%3AAF-A0A6P1Z9Y9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6P1Z9Y9-F1-model_v4_TED02"],["TED%3AAF-A0A6P1ZER6-F1-model_v4_TED01","TED novel fold AF-A0A6P1ZER6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A370038","Oceanidesulfovibrio marinus"]]},{"id":"NCBITaxon:370973","l":"Runella defluvii","na":1,"nb":2,"a":[["TED%3AAF-A0A7W5ZNZ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W5ZNZ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A370973","Runella defluvii"],["NCBITaxon%3A1123076","Runella defluvii DSM 17976"]]},{"id":"NCBITaxon:373668","l":"Chryseobacterium ureilyticum","na":1,"nb":2,"a":[["TED%3AAF-A0A1N7Q4L0-F1-model_v4_TED01","TED novel fold AF-A0A1N7Q4L0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A373668","Chryseobacterium ureilyticum"],["NCBITaxon%3A239","Flavobacterium sp."]]},{"id":"NCBITaxon:374047","l":"Helicotheca tamesis","na":2,"nb":1,"a":[["TED%3AAF-A0A7S2HHS1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S2HHS1-F1-model_v4_TED03"],["TED%3AAF-A0A7S2HE61-F1-model_v4_TED01","TED novel fold AF-A0A7S2HE61-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A374047","Helicotheca tamesis"]]},{"id":"NCBITaxon:37482","l":"Laceyella sacchari","na":1,"nb":2,"a":[["TED%3AAF-A0A4R4AMW2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R4AMW2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A37482","Laceyella sacchari"],["NCBITaxon%3A1341151","Laceyella sacchari 1-1"]]},{"id":"NCBITaxon:374981","l":"Picosynechococcus sp. PCC 7003","na":2,"nb":1,"a":[["TED%3AAF-A0A1B1TQ28-F1-model_v4_TED01","TED novel fold AF-A0A1B1TQ28-F1-model_v4_TED01"],["TED%3AAF-A0A1B1TRQ9-F1-model_v4_TED01","TED novel fold AF-A0A1B1TRQ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A374981","Picosynechococcus sp. PCC 7003"]]},{"id":"NCBITaxon:375286","l":"Janthinobacterium sp. Marseille","na":2,"nb":1,"a":[["Pfam%3APF06299","Protein of unknown function (DUF1045)"],["Pfam%3APF04361","Protein of unknown function (DUF494)"]],"b":[["NCBITaxon%3A375286","Janthinobacterium sp. Marseille"]]},{"id":"NCBITaxon:375451","l":"Roseobacter denitrificans OCh 114","na":1,"nb":2,"a":[["TED%3AAF-Q164W9-F1-model_v4_TED02","TED highly-symmetric fold AF-Q164W9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2434","Roseobacter denitrificans"],["NCBITaxon%3A375451","Roseobacter denitrificans OCh 114"]]},{"id":"NCBITaxon:376427","l":"Billgrantia gudaonensis","na":1,"nb":2,"a":[["TED%3AAF-A0A1G8XFR9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G8XFR9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A376427","Billgrantia gudaonensis"],["NCBITaxon%3A2697581","Halomonas sambharensis"]]},{"id":"NCBITaxon:377629","l":"Teredinibacter turnerae T7901","na":1,"nb":2,"a":[["TED%3AAF-C5BKS7-F1-model_v4_TED02","TED novel fold AF-C5BKS7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2426","Teredinibacter turnerae"],["NCBITaxon%3A377629","Teredinibacter turnerae T7901"]]},{"id":"NCBITaxon:379097","l":"Vibrio sinaloensis","na":1,"nb":2,"a":[["Pfam%3APF08787","Alginate lyase"]],"b":[["NCBITaxon%3A379097","Vibrio sinaloensis"],["NCBITaxon%3A945550","Vibrio sinaloensis DSM 21326"]]},{"id":"NCBITaxon:384602","l":"Micrococcus flavus","na":1,"nb":2,"a":[["TED%3AAF-A0A7W7PAI2-F1-model_v4_TED01","TED novel fold AF-A0A7W7PAI2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A384602","Micrococcus flavus"],["NCBITaxon%3A1271","Micrococcus sp."]]},{"id":"NCBITaxon:384765","l":"Roseibium aggregatum IAM 12614","na":1,"nb":2,"a":[["Pfam%3APF04199","Putative cyclase"]],"b":[["NCBITaxon%3A187304","Roseibium aggregatum"],["NCBITaxon%3A384765","Roseibium aggregatum IAM 12614"]]},{"id":"NCBITaxon:388399","l":"Sagittula stellata E-37","na":1,"nb":2,"a":[["TED%3AAF-A3JXK6-F1-model_v4_TED02","TED novel fold AF-A3JXK6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A52603","Sagittula stellata"],["NCBITaxon%3A388399","Sagittula stellata E-37"]]},{"id":"NCBITaxon:390874","l":"Thermotoga petrophila RKU-1","na":1,"nb":2,"a":[["Pfam%3APF16369","C-terminal lipocalin-like domain"]],"b":[["NCBITaxon%3A93929","Thermotoga petrophila"],["NCBITaxon%3A390874","Thermotoga petrophila RKU-1"]]},{"id":"NCBITaxon:391038","l":"Paraburkholderia phymatum STM815","na":1,"nb":2,"a":[["PROSITE%3APS00921","Nitrilases / cyanide hydratase active site signature"]],"b":[["NCBITaxon%3A148447","Paraburkholderia phymatum"],["NCBITaxon%3A391038","Paraburkholderia phymatum STM815"]]},{"id":"NCBITaxon:391623","l":"Thermococcus barophilus MP","na":1,"nb":2,"a":[["Pfam%3APF08494","DEAD/H associated"]],"b":[["NCBITaxon%3A55802","Thermococcus barophilus"],["NCBITaxon%3A391623","Thermococcus barophilus MP"]]},{"id":"NCBITaxon:391936","l":"Isoalcanivorax pacificus W11-5","na":1,"nb":2,"a":[["TED%3AAF-A0A0B4XPB7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0B4XPB7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1306787","Isoalcanivorax pacificus"],["NCBITaxon%3A391936","Isoalcanivorax pacificus W11-5"]]},{"id":"NCBITaxon:392015","l":"Paenalicyclobacillus macrosporangiidus","na":1,"nb":2,"a":[["TED%3AAF-A0A1I7LHN3-F1-model_v4_TED02","TED novel fold AF-A0A1I7LHN3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1382304","Alicyclobacillus macrosporangiidus CPP55"],["NCBITaxon%3A392015","Paenalicyclobacillus macrosporangiidus"]]},{"id":"NCBITaxon:392593","l":"Inhella inkyongensis","na":2,"nb":1,"a":[["TED%3AAF-A0A840S1N4-F1-model_v4_TED02","TED novel fold AF-A0A840S1N4-F1-model_v4_TED02"],["TED%3AAF-A0A840S2L1-F1-model_v4_TED01","TED novel fold AF-A0A840S2L1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A392593","Inhella inkyongensis"]]},{"id":"NCBITaxon:392828","l":"Actinomadura chibensis","na":1,"nb":2,"a":[["TED%3AAF-A0A5D0NHS4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5D0NHS4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A392828","Actinomadura chibensis"],["NCBITaxon%3A1220554","Actinomadura chibensis NBRC 106107"]]},{"id":"NCBITaxon:393003","l":"Chitinophaga ginsengisegetis","na":1,"nb":2,"a":[["TED%3AAF-A0A1T5N2Y5-F1-model_v4_TED01","TED novel fold AF-A0A1T5N2Y5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A393003","Chitinophaga ginsengisegetis"],["NCBITaxon%3A1133597","Chitinophaga ginsengisegetis KLC07"]]},{"id":"NCBITaxon:393480","l":"Fusobacterium polymorphum ATCC 10953","na":1,"nb":2,"a":[["TED%3AAF-A5TXK7-F1-model_v4_TED01","TED highly-symmetric fold AF-A5TXK7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A76857","Fusobacterium polymorphum"],["NCBITaxon%3A393480","Fusobacterium polymorphum ATCC 10953"]]},{"id":"NCBITaxon:393595","l":"Alcanivorax borkumensis SK2","na":1,"nb":2,"a":[["TED%3AAF-Q0VNH7-F1-model_v4_TED01","TED highly-symmetric fold AF-Q0VNH7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A59754","Alcanivorax borkumensis"],["NCBITaxon%3A393595","Alcanivorax borkumensis SK2"]]},{"id":"NCBITaxon:394098","l":"Bhargavaea cecembensis","na":1,"nb":2,"a":[["TED%3AAF-A0A165GX10-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A165GX10-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A394098","Bhargavaea cecembensis"],["NCBITaxon%3A1235279","Bhargavaea cecembensis DSE10"]]},{"id":"NCBITaxon:394751","l":"Pseudoalteromonas arctica","na":1,"nb":2,"a":[["TED%3AAF-A0A855H5N4-F1-model_v4_TED01","TED novel fold AF-A0A855H5N4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A394751","Pseudoalteromonas arctica"],["NCBITaxon%3A1117313","Pseudoalteromonas arctica A 37-1-2"]]},{"id":"NCBITaxon:394935","l":"Chromobacterium haemolyticum","na":1,"nb":2,"a":[["TED%3AAF-A0A1W0CCE1-F1-model_v4_TED01","TED novel fold AF-A0A1W0CCE1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A394935","Chromobacterium haemolyticum"],["NCBITaxon%3A1121283","Chromobacterium haemolyticum DSM 19808"]]},{"id":"NCBITaxon:395019","l":"Burkholderia multivorans ATCC 17616","na":1,"nb":2,"a":[["TED%3AAF-A0A0H3KMX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0H3KMX2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A87883","Burkholderia multivorans"],["NCBITaxon%3A395019","Burkholderia multivorans ATCC 17616"]]},{"id":"NCBITaxon:395494","l":"Gallionella capsiferriformans ES-2","na":2,"nb":1,"a":[["TED%3AAF-D9SCL7-F1-model_v4_TED01","TED highly-symmetric fold AF-D9SCL7-F1-model_v4_TED01"],["TED%3AAF-D9SFM7-F1-model_v4_TED01","TED highly-symmetric fold AF-D9SFM7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A395494","Gallionella capsiferriformans ES-2"]]},{"id":"NCBITaxon:396014","l":"Brachybacterium phenoliresistens","na":1,"nb":2,"a":[["TED%3AAF-Z9JSX2-F1-model_v4_TED01","TED highly-symmetric fold AF-Z9JSX2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A396014","Brachybacterium phenoliresistens"],["NCBITaxon%3A1460426","Brachybacterium phenoliresistens W13A50"]]},{"id":"NCBITaxon:396598","l":"Paraburkholderia graminis C4D1M","na":1,"nb":2,"a":[["proteintraitsmech%3AELIFE109154_GrbE","GrbE-type graminine biosynthesis protein family"]],"b":[["NCBITaxon%3A60548","Paraburkholderia graminis"],["NCBITaxon%3A396598","Paraburkholderia graminis C4D1M"]]},{"id":"NCBITaxon:39687","l":"Mycolicibacterium austroafricanum","na":1,"nb":2,"a":[["TED%3AAF-A0A2S8LBV1-F1-model_v4_TED02","TED novel fold AF-A0A2S8LBV1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A39687","Mycolicibacterium austroafricanum"],["NCBITaxon%3A350058","Mycolicibacterium vanbaalenii PYR-1"]]},{"id":"NCBITaxon:39691","l":"Mycolicibacterium moriokaense","na":2,"nb":1,"a":[["TED%3AAF-A0A370D086-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A370D086-F1-model_v4_TED01"],["TED%3AAF-A0A370D4B9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A370D4B9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39691","Mycolicibacterium moriokaense"]]},{"id":"NCBITaxon:39950","l":"Dialister pneumosintes","na":1,"nb":2,"a":[["TED%3AAF-A0A1B3WC02-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B3WC02-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39950","Dialister pneumosintes"],["NCBITaxon%3A1357393","Dialister pneumosintes CD1_D5_FAA_6"]]},{"id":"NCBITaxon:399549","l":"Metallosphaera sedula DSM 5348","na":1,"nb":2,"a":[["Pfam%3APF18195","GatD N-terminal domain"]],"b":[["NCBITaxon%3A43687","Metallosphaera sedula"],["NCBITaxon%3A399549","Metallosphaera sedula DSM 5348"]]},{"id":"NCBITaxon:399579","l":"Thermogymnomonas acidicola","na":1,"nb":2,"a":[["TED%3AAF-A0A830FZ95-F1-model_v4_TED01","TED novel fold AF-A0A830FZ95-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A399579","Thermogymnomonas acidicola"],["NCBITaxon%3A1295120","Thermogymnomonas acidicola JCM 13583"]]},{"id":"NCBITaxon:39962","l":"Legionella moravica","na":1,"nb":2,"a":[["TED%3AAF-A0A378JTS2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A378JTS2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39962","Legionella moravica"],["NCBITaxon%3A1122165","Legionella moravica DSM 19234"]]},{"id":"NCBITaxon:399741","l":"Serratia proteamaculans 568","na":2,"nb":1,"a":[["Pfam%3APF09012","FeoC like transcriptional regulator"],["Pfam%3APF05488","PAAR motif"]],"b":[["NCBITaxon%3A399741","Serratia proteamaculans 568"]]},{"id":"NCBITaxon:401053","l":"Terriglobus saanensis SP1PR4","na":1,"nb":2,"a":[["TED%3AAF-E8UZX5-F1-model_v4_TED02","TED novel fold AF-E8UZX5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A870903","Terriglobus saanensis"],["NCBITaxon%3A401053","Terriglobus saanensis SP1PR4"]]},{"id":"NCBITaxon:40318","l":"Streptomyces nodosus","na":1,"nb":2,"a":[["TED%3AAF-A0A0B5DA96-F1-model_v4_TED01","TED novel fold AF-A0A0B5DA96-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A40318","Streptomyces nodosus"],["NCBITaxon%3A222892","Streptomyces nodosus subsp. asukaensis"]]},{"id":"NCBITaxon:403833","l":"Petrotoga mobilis SJ95","na":1,"nb":2,"a":[["Pfam%3APF19328","2,4-diaminopentanoate dehydrogenase C-terminal domain"]],"b":[["NCBITaxon%3A69499","Petrotoga mobilis"],["NCBITaxon%3A403833","Petrotoga mobilis SJ95"]]},{"id":"NCBITaxon:404941","l":"Mycobacteroides salmoniphilum","na":2,"nb":1,"a":[["TED%3AAF-A0A4R8SEB1-F1-model_v4_TED02","TED novel fold AF-A0A4R8SEB1-F1-model_v4_TED02"],["TED%3AAF-A0A4R8SGK3-F1-model_v4_TED01","TED novel fold AF-A0A4R8SGK3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A404941","Mycobacteroides salmoniphilum"]]},{"id":"NCBITaxon:405564","l":"Actinopolyspora xinjiangensis","na":2,"nb":1,"a":[["TED%3AAF-A0A1H0Q6G4-F1-model_v4_TED02","TED novel fold AF-A0A1H0Q6G4-F1-model_v4_TED02"],["TED%3AAF-A0A1H0U3N3-F1-model_v4_TED01","TED novel fold AF-A0A1H0U3N3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A405564","Actinopolyspora xinjiangensis"]]},{"id":"NCBITaxon:40559","l":"Botrytis cinerea","na":1,"nb":2,"a":[["Pfam%3APF08883","Dopa 4,5-dioxygenase family"]],"b":[["NCBITaxon%3A40559","Botrytis cinerea"],["NCBITaxon%3A999810","Botrytis cinerea T4"]]},{"id":"NCBITaxon:405671","l":"Pedobacter terrae","na":2,"nb":1,"a":[["TED%3AAF-A0A561GCB8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A561GCB8-F1-model_v4_TED02"],["TED%3AAF-A0A1G7QBD5-F1-model_v4_TED01","TED novel fold AF-A0A1G7QBD5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A405671","Pedobacter terrae"]]},{"id":"NCBITaxon:405948","l":"Saccharopolyspora erythraea NRRL 2338","na":1,"nb":2,"a":[["Pfam%3APF21036","Erythromycin biosynthesis protein CIII-like, N-terminal domain"]],"b":[["NCBITaxon%3A1836","Saccharopolyspora erythraea"],["NCBITaxon%3A405948","Saccharopolyspora erythraea NRRL 2338"]]},{"id":"NCBITaxon:407234","l":"Phaeovulum vinaykumarii","na":2,"nb":1,"a":[["TED%3AAF-A0A1N7K680-F1-model_v4_TED01","TED novel fold AF-A0A1N7K680-F1-model_v4_TED01"],["TED%3AAF-A0A1N7LGQ6-F1-model_v4_TED03","TED novel fold AF-A0A1N7LGQ6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A407234","Phaeovulum vinaykumarii"]]},{"id":"NCBITaxon:408657","l":"Dyadobacter koreensis","na":2,"nb":1,"a":[["TED%3AAF-A0A1H6SH56-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H6SH56-F1-model_v4_TED02"],["TED%3AAF-A0A1H6QMB6-F1-model_v4_TED01","TED novel fold AF-A0A1H6QMB6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A408657","Dyadobacter koreensis"]]},{"id":"NCBITaxon:409438","l":"Escherichia coli SE11","na":1,"nb":2,"a":[["Pfam%3APF05962","HutD"]],"b":[["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A409438","Escherichia coli SE11"]]},{"id":"NCBITaxon:411154","l":"Christiangramia forsetii KT0803","na":1,"nb":2,"a":[["Pfam%3APF14109","GldH lipoprotein"]],"b":[["NCBITaxon%3A411153","Christiangramia forsetii"],["NCBITaxon%3A411154","Christiangramia forsetii KT0803"]]},{"id":"NCBITaxon:411461","l":"Dorea formicigenerans ATCC 27755","na":1,"nb":2,"a":[["TED%3AAF-B0G854-F1-model_v4_TED01","TED novel fold AF-B0G854-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39486","Dorea formicigenerans"],["NCBITaxon%3A411461","Dorea formicigenerans ATCC 27755"]]},{"id":"NCBITaxon:411463","l":"Eubacterium ventriosum ATCC 27560","na":1,"nb":2,"a":[["TED%3AAF-A5Z937-F1-model_v4_TED01","TED highly-symmetric fold AF-A5Z937-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39496","Eubacterium ventriosum"],["NCBITaxon%3A411463","Eubacterium ventriosum ATCC 27560"]]},{"id":"NCBITaxon:411471","l":"Subdoligranulum variabile DSM 15176","na":1,"nb":2,"a":[["TED%3AAF-D1PNK4-F1-model_v4_TED02","TED novel fold AF-D1PNK4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A214851","Subdoligranulum variabile"],["NCBITaxon%3A411471","Subdoligranulum variabile DSM 15176"]]},{"id":"NCBITaxon:411684","l":"Hoeflea phototrophica DFL-43","na":1,"nb":2,"a":[["TED%3AAF-A9D4N0-F1-model_v4_TED02","TED novel fold AF-A9D4N0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A411684","Hoeflea phototrophica DFL-43"],["NCBITaxon%3A244596","Parahoeflea phototrophica"]]},{"id":"NCBITaxon:412022","l":"Burkholderia mallei NCTC 10229","na":2,"nb":1,"a":[["Pfam%3APF22688","Hda, lid domain"],["Pfam%3APF03975","CheD chemotactic sensory transduction"]],"b":[["NCBITaxon%3A412022","Burkholderia mallei NCTC 10229"]]},{"id":"NCBITaxon:412694","l":"Bacillus thuringiensis str. Al Hakam","na":2,"nb":1,"a":[["Pfam%3APF03590","Aspartate-ammonia ligase"],["Pfam%3APF07408","Protein of unknown function (DUF1507)"]],"b":[["NCBITaxon%3A412694","Bacillus thuringiensis str. Al Hakam"]]},{"id":"NCBITaxon:415222","l":"Pelagicoccus albus","na":2,"nb":1,"a":[["TED%3AAF-A0A7X1B8W0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X1B8W0-F1-model_v4_TED01"],["TED%3AAF-A0A7X1E8K3-F1-model_v4_TED03","TED novel fold AF-A0A7X1E8K3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A415222","Pelagicoccus albus"]]},{"id":"NCBITaxon:415426","l":"Hyperthermus butylicus DSM 5456","na":1,"nb":2,"a":[["Pfam%3APF01982","Domain of unknown function DUF120"]],"b":[["NCBITaxon%3A54248","Hyperthermus butylicus"],["NCBITaxon%3A415426","Hyperthermus butylicus DSM 5456"]]},{"id":"NCBITaxon:41675","l":"Stygiolobus azoricus","na":1,"nb":2,"a":[["TED%3AAF-A0A650CQQ9-F1-model_v4_TED01","TED novel fold AF-A0A650CQQ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A41675","Stygiolobus azoricus"],["NCBITaxon%3A1313299","Stygiolobus azoricus DSM 6296"]]},{"id":"NCBITaxon:417745","l":"Shinella kummerowiae","na":2,"nb":1,"a":[["TED%3AAF-A0A6N8SE75-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8SE75-F1-model_v4_TED01"],["TED%3AAF-A0A6N8SAK3-F1-model_v4_TED01","TED novel fold AF-A0A6N8SAK3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A417745","Shinella kummerowiae"]]},{"id":"NCBITaxon:418459","l":"Puccinia graminis f. sp. tritici CRL 75-36-700-3","na":2,"nb":1,"a":[["TED%3AAF-E3KWP8-F1-model_v4_TED01","TED novel fold AF-E3KWP8-F1-model_v4_TED01"],["TED%3AAF-E3L0V6-F1-model_v4_TED01","TED novel fold AF-E3L0V6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A418459","Puccinia graminis f. sp. tritici CRL 75-36-700-3"]]},{"id":"NCBITaxon:418630","l":"[Luteovulum] sphaeroides subsp. megalophilum","na":1,"nb":2,"a":[["TED%3AAF-A0A239MB29-F1-model_v4_TED01","TED novel fold AF-A0A239MB29-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1063","Cereibacter sphaeroides"],["NCBITaxon%3A418630","[Luteovulum] sphaeroides subsp. megalophilum"]]},{"id":"NCBITaxon:420778","l":"Diplodia seriata","na":2,"nb":1,"a":[["TED%3AAF-A0A0G2DUU8-F1-model_v4_TED02","TED novel fold AF-A0A0G2DUU8-F1-model_v4_TED02"],["TED%3AAF-A0A0G2ERU8-F1-model_v4_TED01","TED novel fold AF-A0A0G2ERU8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A420778","Diplodia seriata"]]},{"id":"NCBITaxon:420952","l":"Paraburkholderia bryophila","na":1,"nb":2,"a":[["TED%3AAF-A0A7Y9WQV4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y9WQV4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A420952","Paraburkholderia bryophila"],["NCBITaxon%3A1169143","Paraburkholderia bryophila 376MFSha3.1"]]},{"id":"NCBITaxon:421052","l":"Acinetobacter rudis CIP 110305","na":1,"nb":2,"a":[["TED%3AAF-S3N7W1-F1-model_v4_TED04","TED novel fold AF-S3N7W1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A632955","Acinetobacter rudis"],["NCBITaxon%3A421052","Acinetobacter rudis CIP 110305"]]},{"id":"NCBITaxon:421058","l":"Chryseobacterium oranimense","na":1,"nb":2,"a":[["TED%3AAF-A0A1M5UIN4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M5UIN4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A421058","Chryseobacterium oranimense"],["NCBITaxon%3A1300143","Chryseobacterium oranimense G311"]]},{"id":"NCBITaxon:42251","l":"Tuber borchii","na":2,"nb":1,"a":[["TED%3AAF-A0A2T6ZEW2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T6ZEW2-F1-model_v4_TED01"],["TED%3AAF-A0A2T6ZK07-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2T6ZK07-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A42251","Tuber borchii"]]},{"id":"NCBITaxon:42256","l":"Rubrobacter radiotolerans","na":1,"nb":2,"a":[["TED%3AAF-A0A023X7L7-F1-model_v4_TED02","TED novel fold AF-A0A023X7L7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A42256","Rubrobacter radiotolerans"],["NCBITaxon%3A643560","Rubrobacter radiotolerans DSM 5868"]]},{"id":"NCBITaxon:42322","l":"Eubacterium ruminantium","na":2,"nb":1,"a":[["TED%3AAF-A0A1H6A208-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H6A208-F1-model_v4_TED01"],["TED%3AAF-A0A1T4Q7U0-F1-model_v4_TED01","TED novel fold AF-A0A1T4Q7U0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A42322","Eubacterium ruminantium"]]},{"id":"NCBITaxon:427683","l":"Methylobacterium platani","na":1,"nb":2,"a":[["TED%3AAF-A0A179RZM9-F1-model_v4_TED01","TED novel fold AF-A0A179RZM9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A427683","Methylobacterium platani"],["NCBITaxon%3A1295136","Methylobacterium platani JCM 14648"]]},{"id":"NCBITaxon:429133","l":"Modestobacter versicolor","na":2,"nb":1,"a":[["TED%3AAF-A0A323VFP8-F1-model_v4_TED01","TED novel fold AF-A0A323VFP8-F1-model_v4_TED01"],["TED%3AAF-A0A839XZ80-F1-model_v4_TED02","TED novel fold AF-A0A839XZ80-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A429133","Modestobacter versicolor"]]},{"id":"NCBITaxon:430522","l":"Pedobacter steynii","na":2,"nb":1,"a":[["TED%3AAF-A0A1G9K403-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G9K403-F1-model_v4_TED01"],["TED%3AAF-A0A1G9UZ90-F1-model_v4_TED01","TED novel fold AF-A0A1G9UZ90-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A430522","Pedobacter steynii"]]},{"id":"NCBITaxon:432331","l":"Sulfurihydrogenibium yellowstonense SS-5","na":1,"nb":2,"a":[["TED%3AAF-C4FIW6-F1-model_v4_TED01","TED novel fold AF-C4FIW6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A304736","Sulfurihydrogenibium yellowstonense"],["NCBITaxon%3A432331","Sulfurihydrogenibium yellowstonense SS-5"]]},{"id":"NCBITaxon:433924","l":"Pseudacidovorax intermedius","na":1,"nb":2,"a":[["TED%3AAF-A0A147GRQ0-F1-model_v4_TED01","TED novel fold AF-A0A147GRQ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A433924","Pseudacidovorax intermedius"],["NCBITaxon%3A1257078","Pseudacidovorax intermedius NH-1"]]},{"id":"NCBITaxon:436308","l":"Nitrosopumilus maritimus SCM1","na":1,"nb":2,"a":[["Pfam%3APF19045","Ligase-CoA domain"]],"b":[["NCBITaxon%3A338192","Nitrosopumilus maritimus"],["NCBITaxon%3A436308","Nitrosopumilus maritimus SCM1"]]},{"id":"NCBITaxon:43655","l":"Pseudoalteromonas citrea","na":1,"nb":2,"a":[["TED%3AAF-A0A5S3XJV9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5S3XJV9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A43655","Pseudoalteromonas citrea"],["NCBITaxon%3A1117314","Pseudoalteromonas citrea DSM 8771"]]},{"id":"NCBITaxon:43671","l":"Actinotalea fermentans","na":1,"nb":2,"a":[["TED%3AAF-A0A511YTN2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A511YTN2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A43671","Actinotalea fermentans"],["NCBITaxon%3A862422","Actinotalea fermentans ATCC 43279 = JCM 9966 = DSM 3133"]]},{"id":"NCBITaxon:436717","l":"Acinetobacter oleivorans DR1","na":1,"nb":2,"a":[["TED%3AAF-D8JEH7-F1-model_v4_TED03","TED novel fold AF-D8JEH7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1148157","Acinetobacter oleivorans"],["NCBITaxon%3A436717","Acinetobacter oleivorans DR1"]]},{"id":"NCBITaxon:43677","l":"Promicromonospora citrea","na":1,"nb":2,"a":[["TED%3AAF-A0A7Y2QR62-F1-model_v4_TED01","TED novel fold AF-A0A7Y2QR62-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2126556","Flavobacterium artemisiae"],["NCBITaxon%3A43677","Promicromonospora citrea"]]},{"id":"NCBITaxon:441770","l":"Clostridium botulinum A str. ATCC 19397","na":1,"nb":2,"a":[["Pfam%3APF11842","Domain of unknown function (DUF3362)"]],"b":[["NCBITaxon%3A1491","Clostridium botulinum"],["NCBITaxon%3A441770","Clostridium botulinum A str. ATCC 19397"]]},{"id":"NCBITaxon:441772","l":"Clostridium botulinum F str. Langeland","na":2,"nb":1,"a":[["Pfam%3APF02001","Protein of unknown function DUF134"],["Pfam%3APF06874","Firmicute fructose-1,6-bisphosphatase"]],"b":[["NCBITaxon%3A441772","Clostridium botulinum F str. Langeland"]]},{"id":"NCBITaxon:442341","l":"Modicisalibacter xianhensis","na":2,"nb":1,"a":[["TED%3AAF-A0A4R8FRP4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R8FRP4-F1-model_v4_TED01"],["TED%3AAF-A0A1I3EZC5-F1-model_v4_TED01","TED novel fold AF-A0A1I3EZC5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A442341","Modicisalibacter xianhensis"]]},{"id":"NCBITaxon:443152","l":"Marinobacter algicola DG893","na":1,"nb":2,"a":[["TED%3AAF-A6EY08-F1-model_v4_TED01","TED highly-symmetric fold AF-A6EY08-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A236100","Marinobacter algicola"],["NCBITaxon%3A443152","Marinobacter algicola DG893"]]},{"id":"NCBITaxon:443226","l":"Coccidioides posadasii str. Silveira","na":2,"nb":1,"a":[["TED%3AAF-E9D519-F1-model_v4_TED01","TED highly-symmetric fold AF-E9D519-F1-model_v4_TED01"],["TED%3AAF-E9D534-F1-model_v4_TED01","TED novel fold AF-E9D534-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A443226","Coccidioides posadasii str. Silveira"]]},{"id":"NCBITaxon:443254","l":"Marinitoga piezophila KA3","na":1,"nb":2,"a":[["Pfam%3APF22362","Argonaute, middle domain, bacteria"]],"b":[["NCBITaxon%3A149715","Marinitoga piezophila"],["NCBITaxon%3A443254","Marinitoga piezophila KA3"]]},{"id":"NCBITaxon:444157","l":"Pyrobaculum neutrophilum V24Sta","na":1,"nb":2,"a":[["Pfam%3APF01950","Fructose-1,6-bisphosphatase"]],"b":[["NCBITaxon%3A70771","Pyrobaculum neutrophilum"],["NCBITaxon%3A444157","Pyrobaculum neutrophilum V24Sta"]]},{"id":"NCBITaxon:445970","l":"Alistipes putredinis DSM 17216","na":1,"nb":2,"a":[["TED%3AAF-B0MZK9-F1-model_v4_TED03","TED highly-symmetric fold AF-B0MZK9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A28117","Alistipes putredinis"],["NCBITaxon%3A445970","Alistipes putredinis DSM 17216"]]},{"id":"NCBITaxon:445987","l":"Borreliella valaisiana VS116","na":1,"nb":2,"a":[["TED%3AAF-C0R8L4-F1-model_v4_TED01","TED novel fold AF-C0R8L4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A62088","Borreliella valaisiana"],["NCBITaxon%3A445987","Borreliella valaisiana VS116"]]},{"id":"NCBITaxon:446462","l":"Actinosynnema mirum DSM 43827","na":1,"nb":2,"a":[["TED%3AAF-C6WQL9-F1-model_v4_TED01","TED highly-symmetric fold AF-C6WQL9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A40567","Actinosynnema mirum"],["NCBITaxon%3A446462","Actinosynnema mirum DSM 43827"]]},{"id":"NCBITaxon:446465","l":"Brachybacterium faecium DSM 4810","na":1,"nb":2,"a":[["TED%3AAF-C7MEJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-C7MEJ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A43669","Brachybacterium faecium"],["NCBITaxon%3A446465","Brachybacterium faecium DSM 4810"]]},{"id":"NCBITaxon:446469","l":"Sanguibacter keddieii DSM 10542","na":1,"nb":2,"a":[["TED%3AAF-D1BCE8-F1-model_v4_TED01","TED highly-symmetric fold AF-D1BCE8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A60920","Sanguibacter keddieii"],["NCBITaxon%3A446469","Sanguibacter keddieii DSM 10542"]]},{"id":"NCBITaxon:44737","l":"Capnocytophaga sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A496MK20-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A496MK20-F1-model_v4_TED01"],["TED%3AAF-A0A496MK73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A496MK73-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A44737","Capnocytophaga sp."]]},{"id":"NCBITaxon:449","l":"Legionella hackeliae","na":2,"nb":1,"a":[["TED%3AAF-A0A0A8UQD0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A8UQD0-F1-model_v4_TED01"],["TED%3AAF-A0A0A8UPB0-F1-model_v4_TED01","TED novel fold AF-A0A0A8UPB0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A449","Legionella hackeliae"]]},{"id":"NCBITaxon:44930","l":"Natronobacterium gregoryi","na":1,"nb":2,"a":[["TED%3AAF-A0A1I3LHC3-F1-model_v4_TED01","TED novel fold AF-A0A1I3LHC3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A44930","Natronobacterium gregoryi"],["NCBITaxon%3A797304","Natronobacterium gregoryi SP2"]]},{"id":"NCBITaxon:44935","l":"Vreelandella venusta","na":1,"nb":2,"a":[["TED%3AAF-A0A7S9VEF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S9VEF4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A44935","Vreelandella venusta"],["NCBITaxon%3A1255601","Vreelandella venusta 3D7M"]]},{"id":"NCBITaxon:45073","l":"Legionella quinlivanii","na":1,"nb":2,"a":[["TED%3AAF-A0A364LK99-F1-model_v4_TED02","TED novel fold AF-A0A364LK99-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A45073","Legionella quinlivanii"],["NCBITaxon%3A1122167","Legionella quinlivanii DSM 21216"]]},{"id":"NCBITaxon:451457","l":"Pseudolactococcus chungangensis","na":1,"nb":2,"a":[["TED%3AAF-A0A847J563-F1-model_v4_TED01","TED novel fold AF-A0A847J563-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A451457","Pseudolactococcus chungangensis"],["NCBITaxon%3A1122154","Pseudolactococcus chungangensis CAU 28 = DSM 22330"]]},{"id":"NCBITaxon:45151","l":"Pyrenophora tritici-repentis","na":2,"nb":1,"a":[["TED%3AAF-A0A2W1ECP7-F1-model_v4_TED01","TED novel fold AF-A0A2W1ECP7-F1-model_v4_TED01"],["TED%3AAF-A0A834SF78-F1-model_v4_TED01","TED novel fold AF-A0A834SF78-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A45151","Pyrenophora tritici-repentis"]]},{"id":"NCBITaxon:451516","l":"Staphylococcus aureus subsp. aureus USA300_TCH1516","na":2,"nb":1,"a":[["Pfam%3APF07457","Protein of unknown function (DUF1516)"],["Pfam%3APF12127","Flotillin-like protein FloA"]],"b":[["NCBITaxon%3A451516","Staphylococcus aureus subsp. aureus USA300_TCH1516"]]},{"id":"NCBITaxon:45235","l":"Tolypocladium capitatum","na":2,"nb":1,"a":[["TED%3AAF-A0A2K3Q6C8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2K3Q6C8-F1-model_v4_TED01"],["TED%3AAF-A0A2K3QFT5-F1-model_v4_TED02","TED novel fold AF-A0A2K3QFT5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A45235","Tolypocladium capitatum"]]},{"id":"NCBITaxon:452629","l":"Amphritea balenae","na":1,"nb":2,"a":[["TED%3AAF-A0A3P1STJ2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3P1STJ2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A452629","Amphritea balenae"],["NCBITaxon%3A1278310","Amphritea balenae ATCC BAA-1529"]]},{"id":"NCBITaxon:453","l":"Legionella feeleii","na":1,"nb":2,"a":[["TED%3AAF-A0A378IZL6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A378IZL6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A453","Legionella feeleii"],["NCBITaxon%3A66975","Legionella feeleii serogroup 2"]]},{"id":"NCBITaxon:45357","l":"Candidozyma haemuli","na":1,"nb":2,"a":[["TED%3AAF-A0A2V1AT11-F1-model_v4_TED02","TED novel fold AF-A0A2V1AT11-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A45357","Candidozyma haemuli"],["NCBITaxon%3A1231523","Candidozyma haemuli var. vulneris"]]},{"id":"NCBITaxon:454","l":"Legionella israelensis","na":1,"nb":2,"a":[["TED%3AAF-A0A0W0WIG0-F1-model_v4_TED02","TED novel fold AF-A0A0W0WIG0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A454","Legionella israelensis"],["NCBITaxon%3A1122162","Legionella israelensis DSM 19235"]]},{"id":"NCBITaxon:455488","l":"Anaeromyxobacter dehalogenans 2CP-1","na":1,"nb":2,"a":[["TED%3AAF-B8J8V7-F1-model_v4_TED01","TED novel fold AF-B8J8V7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A161493","Anaeromyxobacter dehalogenans"],["NCBITaxon%3A455488","Anaeromyxobacter dehalogenans 2CP-1"]]},{"id":"NCBITaxon:457570","l":"Natranaerobius thermophilus JW/NM-WN-LF","na":1,"nb":2,"a":[["TED%3AAF-B2A1S1-F1-model_v4_TED02","TED highly-symmetric fold AF-B2A1S1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A375929","Natranaerobius thermophilus"],["NCBITaxon%3A457570","Natranaerobius thermophilus JW/NM-WN-LF"]]},{"id":"NCBITaxon:458817","l":"Shewanella halifaxensis HAW-EB4","na":1,"nb":2,"a":[["TED%3AAF-B0TIQ1-F1-model_v4_TED01","TED novel fold AF-B0TIQ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A271098","Shewanella halifaxensis"],["NCBITaxon%3A458817","Shewanella halifaxensis HAW-EB4"]]},{"id":"NCBITaxon:459529","l":"Sphingobacterium siyangense","na":1,"nb":2,"a":[["TED%3AAF-A0A420FHV4-F1-model_v4_TED01","TED novel fold AF-A0A420FHV4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A459529","Sphingobacterium siyangense"],["NCBITaxon%3A634159","Sphingobacterium siyangense subsp. cladoniae"]]},{"id":"NCBITaxon:46163","l":"Actinomadura luteofluorescens","na":1,"nb":2,"a":[["TED%3AAF-A0A7Y9EGM5-F1-model_v4_TED01","TED novel fold AF-A0A7Y9EGM5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A46163","Actinomadura luteofluorescens"],["NCBITaxon%3A1449332","Actinomadura luteofluorescens DSM 44770"]]},{"id":"NCBITaxon:462910","l":"Pontibacillus yanchengensis","na":1,"nb":2,"a":[["TED%3AAF-A0A6I5A559-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A6I5A559-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A462910","Pontibacillus yanchengensis"],["NCBITaxon%3A1385514","Pontibacillus yanchengensis Y32"]]},{"id":"NCBITaxon:46469","l":"Orenia marismortui","na":1,"nb":2,"a":[["TED%3AAF-A0A4R8H1H9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R8H1H9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A46469","Orenia marismortui"],["NCBITaxon%3A926561","Orenia marismortui DSM 5156"]]},{"id":"NCBITaxon:469371","l":"Thermobispora bispora DSM 43833","na":1,"nb":2,"a":[["TED%3AAF-D6Y8C2-F1-model_v4_TED02","TED novel fold AF-D6Y8C2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2006","Thermobispora bispora"],["NCBITaxon%3A469371","Thermobispora bispora DSM 43833"]]},{"id":"NCBITaxon:469383","l":"Conexibacter woesei DSM 14684","na":1,"nb":2,"a":[["TED%3AAF-D3FEY8-F1-model_v4_TED03","TED highly-symmetric fold AF-D3FEY8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A191495","Conexibacter woesei"],["NCBITaxon%3A469383","Conexibacter woesei DSM 14684"]]},{"id":"NCBITaxon:469591","l":"Parabacteroides sp. 20_3","na":1,"nb":2,"a":[["TED%3AAF-A0A3E4PGJ8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3E4PGJ8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A29523","Bacteroides sp."],["NCBITaxon%3A469591","Parabacteroides sp. 20_3"]]},{"id":"NCBITaxon:470096","l":"Pseudovirgaria hyperparasitica","na":2,"nb":1,"a":[["TED%3AAF-A0A6A6VSI4-F1-model_v4_TED01","TED novel fold AF-A0A6A6VSI4-F1-model_v4_TED01"],["TED%3AAF-A0A6A6WEH1-F1-model_v4_TED02","TED novel fold AF-A0A6A6WEH1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A470096","Pseudovirgaria hyperparasitica"]]},{"id":"NCBITaxon:470145","l":"Phocaeicola coprocola DSM 17136","na":1,"nb":2,"a":[["TED%3AAF-B3JL62-F1-model_v4_TED04","TED novel fold AF-B3JL62-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A310298","Phocaeicola coprocola"],["NCBITaxon%3A470145","Phocaeicola coprocola DSM 17136"]]},{"id":"NCBITaxon:470146","l":"Coprococcus comes ATCC 27758","na":1,"nb":2,"a":[["TED%3AAF-C0BDT1-F1-model_v4_TED01","TED highly-symmetric fold AF-C0BDT1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A410072","Allocoprococcus comes"],["NCBITaxon%3A470146","Coprococcus comes ATCC 27758"]]},{"id":"NCBITaxon:470453","l":"Moraxella pluranimalium","na":1,"nb":2,"a":[["TED%3AAF-A0A1T0CC81-F1-model_v4_TED02","TED novel fold AF-A0A1T0CC81-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A470453","Moraxella pluranimalium"],["NCBITaxon%3A1122246","Moraxella pluranimalium DSM 22804"]]},{"id":"NCBITaxon:47055","l":"Dethiosulfovibrio peptidovorans","na":1,"nb":2,"a":[["TED%3AAF-A0A2G6M2T0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2G6M2T0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A47055","Dethiosulfovibrio peptidovorans"],["NCBITaxon%3A469381","Dethiosulfovibrio peptidovorans DSM 11002"]]},{"id":"NCBITaxon:471852","l":"Thermomonospora curvata DSM 43183","na":1,"nb":2,"a":[["Pfam%3APF01580","FtsK/SpoIIIE family"]],"b":[["NCBITaxon%3A2020","Thermomonospora curvata"],["NCBITaxon%3A471852","Thermomonospora curvata DSM 43183"]]},{"id":"NCBITaxon:472","l":"Acinetobacter sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A433CUV6-F1-model_v4_TED01","TED novel fold AF-A0A433CUV6-F1-model_v4_TED01"],["TED%3AAF-A0A7G3BTL8-F1-model_v4_TED01","TED novel fold AF-A0A7G3BTL8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A472","Acinetobacter sp."]]},{"id":"NCBITaxon:472759","l":"Nitrosococcus halophilus Nc 4","na":1,"nb":2,"a":[["TED%3AAF-D5BWL1-F1-model_v4_TED01","TED highly-symmetric fold AF-D5BWL1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A133539","Nitrosococcus halophilus"],["NCBITaxon%3A472759","Nitrosococcus halophilus Nc 4"]]},{"id":"NCBITaxon:47428","l":"Armillaria ostoyae","na":2,"nb":1,"a":[["TED%3AAF-A0A284RWZ8-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A284RWZ8-F1-model_v4_TED04"],["TED%3AAF-A0A284RP12-F1-model_v4_TED01","TED novel fold AF-A0A284RP12-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A47428","Armillaria ostoyae"]]},{"id":"NCBITaxon:474922","l":"Colletotrichum gloeosporioides","na":2,"nb":1,"a":[["Pfam%3APF28223","CAP22"],["PROSITE%3APS00155","Cutinase, serine active site"]],"b":[["NCBITaxon%3A474922","Colletotrichum gloeosporioides"]]},{"id":"NCBITaxon:474952","l":"Granulicella rosea","na":2,"nb":1,"a":[["TED%3AAF-A0A239KLB2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A239KLB2-F1-model_v4_TED01"],["TED%3AAF-A0A239CX56-F1-model_v4_TED02","TED novel fold AF-A0A239CX56-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A474952","Granulicella rosea"]]},{"id":"NCBITaxon:4758","l":"Neocallimastix patriciarum","na":2,"nb":1,"a":[["Pfam%3APF02013","Cellulose or protein binding domain"],["PROSITE%3APS00776","Glycosyl hydrolases family 11 (GH11) active site signature 1"]],"b":[["NCBITaxon%3A4758","Neocallimastix patriciarum"]]},{"id":"NCBITaxon:4779","l":"Bremia lactucae","na":2,"nb":1,"a":[["TED%3AAF-A0A484E5D3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A484E5D3-F1-model_v4_TED01"],["TED%3AAF-A0A484EDT0-F1-model_v4_TED01","TED novel fold AF-A0A484EDT0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A4779","Bremia lactucae"]]},{"id":"NCBITaxon:478","l":"Moraxella nonliquefaciens","na":1,"nb":2,"a":[["TED%3AAF-A0A1B8PJM7-F1-model_v4_TED01","TED novel fold AF-A0A1B8PJM7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A478","Moraxella nonliquefaciens"],["NCBITaxon%3A1441929","Moraxella nonliquefaciens DSM 6327"]]},{"id":"NCBITaxon:4785","l":"Phytophthora cinnamomi","na":2,"nb":1,"a":[["Pfam%3APF00964","Elicitin"],["TED%3AAF-B8Y7U3-F1-model_v4_TED01","TED highly-symmetric fold AF-B8Y7U3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A4785","Phytophthora cinnamomi"]]},{"id":"NCBITaxon:47850","l":"Micromonospora aurantiaca (nom. illeg.)","na":1,"nb":2,"a":[["TED%3AAF-A0A1C6SK92-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C6SK92-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A644283","Micromonospora aurantiaca ATCC 27029"],["NCBITaxon%3A47850","Micromonospora aurantiaca (nom. illeg.)"]]},{"id":"NCBITaxon:47875","l":"Micromonospora sagamiensis","na":1,"nb":2,"a":[["TED%3AAF-A0A562WCI2-F1-model_v4_TED01","TED novel fold AF-A0A562WCI2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A47875","Micromonospora sagamiensis"],["NCBITaxon%3A675089","Micromonospora sagamiensis subsp. flava"]]},{"id":"NCBITaxon:47878","l":"Pseudomonas azotoformans","na":1,"nb":2,"a":[["TED%3AAF-A0A514BG00-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A514BG00-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A47878","Pseudomonas azotoformans"],["NCBITaxon%3A1215094","Pseudomonas azotoformans NBRC 12693"]]},{"id":"NCBITaxon:47919","l":"Nocardioides sp. N106","na":2,"nb":1,"a":[["Pfam%3APF01374","Glycosyl hydrolase family 46"],["PROSITE%3APS60000","Chitosanases families 46 and 80 active sites signature"]],"b":[["NCBITaxon%3A47919","Nocardioides sp. N106"]]},{"id":"NCBITaxon:479431","l":"Nakamurella multipartita DSM 44233","na":1,"nb":2,"a":[["TED%3AAF-C8XHD0-F1-model_v4_TED02","TED novel fold AF-C8XHD0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A53461","Nakamurella multipartita"],["NCBITaxon%3A479431","Nakamurella multipartita DSM 44233"]]},{"id":"NCBITaxon:479435","l":"Kribbella flavida DSM 17836","na":1,"nb":2,"a":[["Pfam%3APF21568","1,3-alpha-isomaltosidase-like, N-terminal domain"]],"b":[["NCBITaxon%3A182640","Kribbella flavida"],["NCBITaxon%3A479435","Kribbella flavida DSM 17836"]]},{"id":"NCBITaxon:481448","l":"Methylacidiphilum infernorum V4","na":2,"nb":1,"a":[["Pfam%3APF11004","3-deoxy-D-manno-oct-2-ulosonic acid (Kdo) hydroxylase"],["TED%3AAF-B3DX40-F1-model_v4_TED02","TED novel fold AF-B3DX40-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A481448","Methylacidiphilum infernorum V4"]]},{"id":"NCBITaxon:4829","l":"Absidia glauca","na":2,"nb":1,"a":[["TED%3AAF-A0A168R8W2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A168R8W2-F1-model_v4_TED01"],["TED%3AAF-A0A168SH55-F1-model_v4_TED01","TED novel fold AF-A0A168SH55-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A4829","Absidia glauca"]]},{"id":"NCBITaxon:483013","l":"Tritonibacter scottomollicae","na":2,"nb":1,"a":[["Pfam%3APF17396","Domain of unknown function (DUF1611_N) Rossmann-like domain"],["Pfam%3APF07755","Domain of unknown function (DUF1611_C) P-loop domain"]],"b":[["NCBITaxon%3A483013","Tritonibacter scottomollicae"]]},{"id":"NCBITaxon:484018","l":"Phocaeicola plebeius DSM 17135","na":1,"nb":2,"a":[["Pfam%3APF18040","beta porphyranase A C-terminal"]],"b":[["NCBITaxon%3A310297","Phocaeicola plebeius"],["NCBITaxon%3A484018","Phocaeicola plebeius DSM 17135"]]},{"id":"NCBITaxon:485915","l":"Desulfohalobium retbaense DSM 5692","na":1,"nb":2,"a":[["TED%3AAF-C8WYZ3-F1-model_v4_TED02","TED highly-symmetric fold AF-C8WYZ3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A45663","Desulfohalobium retbaense"],["NCBITaxon%3A485915","Desulfohalobium retbaense DSM 5692"]]},{"id":"NCBITaxon:485916","l":"Desulfofarcimen acetoxidans DSM 771","na":1,"nb":2,"a":[["TED%3AAF-C8W2Y9-F1-model_v4_TED01","TED highly-symmetric fold AF-C8W2Y9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A58138","Desulfofarcimen acetoxidans"],["NCBITaxon%3A485916","Desulfofarcimen acetoxidans DSM 771"]]},{"id":"NCBITaxon:48665","l":"Streptomyces viridifaciens","na":1,"nb":2,"a":[["TED%3AAF-A0A1L9E1F9-F1-model_v4_TED01","TED novel fold AF-A0A1L9E1F9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A642496","Streptomyces sp. DSM 40239"],["NCBITaxon%3A48665","Streptomyces viridifaciens"]]},{"id":"NCBITaxon:490899","l":"Desulfurococcus amylolyticus 1221n","na":1,"nb":2,"a":[["TED%3AAF-B8D4A7-F1-model_v4_TED01","TED novel fold AF-B8D4A7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A94694","Desulfurococcus amylolyticus"],["NCBITaxon%3A490899","Desulfurococcus amylolyticus 1221n"]]},{"id":"NCBITaxon:4909","l":"Pichia kudriavzevii","na":1,"nb":2,"a":[["TED%3AAF-A0A099P804-F1-model_v4_TED01","TED novel fold AF-A0A099P804-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A4909","Pichia kudriavzevii"],["NCBITaxon%3A1231518","Pichia kudriavzevii CAB39-6420"]]},{"id":"NCBITaxon:4911","l":"Kluyveromyces marxianus","na":1,"nb":2,"a":[["Pfam%3APF04684","BAF1 / ABF1 chromatin reorganising factor"]],"b":[["NCBITaxon%3A4911","Kluyveromyces marxianus"],["NCBITaxon%3A374272","Kluyveromyces marxianus var. marxianus"]]},{"id":"NCBITaxon:491952","l":"Marinomonas posidonica IVIA-Po-181","na":1,"nb":2,"a":[["proteintraitsmech%3AELIFE109154_SalSyn","Metallophore-associated bifunctional salicylate synthase family"]],"b":[["NCBITaxon%3A936476","Marinomonas posidonica"],["NCBITaxon%3A491952","Marinomonas posidonica IVIA-Po-181"]]},{"id":"NCBITaxon:49252","l":"Eucampia antarctica","na":2,"nb":1,"a":[["TED%3AAF-A0A7S2RNI9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S2RNI9-F1-model_v4_TED02"],["TED%3AAF-A0A7S2SD61-F1-model_v4_TED01","TED novel fold AF-A0A7S2SD61-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A49252","Eucampia antarctica"]]},{"id":"NCBITaxon:494026","l":"Paenibacillus glacialis","na":1,"nb":2,"a":[["TED%3AAF-A0A168H7S0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A168H7S0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A494026","Paenibacillus glacialis"],["NCBITaxon%3A58172","Paenibacillus sp."]]},{"id":"NCBITaxon:4952","l":"Yarrowia lipolytica","na":2,"nb":1,"a":[["TED%3AAF-A0A7H0KE04-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H0KE04-F1-model_v4_TED01"],["TED%3AAF-A0A371C7L0-F1-model_v4_TED02","TED novel fold AF-A0A371C7L0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A4952","Yarrowia lipolytica"]]},{"id":"NCBITaxon:4954","l":"Zygosaccharomyces bailii","na":1,"nb":2,"a":[["TED%3AAF-A0A212M6M2-F1-model_v4_TED03","TED novel fold AF-A0A212M6M2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1935","Streptomyces violaceoruber"],["NCBITaxon%3A4954","Zygosaccharomyces bailii"]]},{"id":"NCBITaxon:496014","l":"Baekduia soli","na":2,"nb":1,"a":[["TED%3AAF-A0A5B8U3Z1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B8U3Z1-F1-model_v4_TED01"],["TED%3AAF-A0A5B8U5U7-F1-model_v4_TED01","TED novel fold AF-A0A5B8U5U7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A496014","Baekduia soli"]]},{"id":"NCBITaxon:496833","l":"Mycoplasmopsis fermentans PG18","na":1,"nb":2,"a":[["TED%3AAF-C4XEY6-F1-model_v4_TED01","TED novel fold AF-C4XEY6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2115","Mycoplasmopsis fermentans"],["NCBITaxon%3A496833","Mycoplasmopsis fermentans PG18"]]},{"id":"NCBITaxon:497735","l":"Brevibacillus panacihumi","na":1,"nb":2,"a":[["TED%3AAF-A0A3M8CS74-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3M8CS74-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A497735","Brevibacillus panacihumi"],["NCBITaxon%3A1408254","Brevibacillus panacihumi W25"]]},{"id":"NCBITaxon:498214","l":"Clostridium botulinum A3 str. Loch Maree","na":2,"nb":1,"a":[["Pfam%3APF20921","Domain of unknown function DUF1846, C-terminal"],["Pfam%3APF08903","Domain of unknown function DUF1846, N-terminal"]],"b":[["NCBITaxon%3A498214","Clostridium botulinum A3 str. Loch Maree"]]},{"id":"NCBITaxon:498846","l":"Candidatus Korarchaeum cryptofilum","na":1,"nb":2,"a":[["TED%3AAF-A0A3R9WZD4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3R9WZD4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A498846","Candidatus Korarchaeum cryptofilum"],["NCBITaxon%3A374847","Candidatus Korarchaeum cryptofilum OPF8"]]},{"id":"NCBITaxon:498848","l":"Thermus aquaticus Y51MC23","na":2,"nb":1,"a":[["Pfam%3APF14487","ssDNA thymidine ADP-ribosyltransferase, DarT"],["TED%3AAF-B7A9A7-F1-model_v4_TED01","TED novel fold AF-B7A9A7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A498848","Thermus aquaticus Y51MC23"]]},{"id":"NCBITaxon:500633","l":"Peptacetobacter hiranonis DSM 13275","na":1,"nb":2,"a":[["TED%3AAF-B6G1L6-F1-model_v4_TED01","TED highly-symmetric fold AF-B6G1L6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A89152","Peptacetobacter hiranonis"],["NCBITaxon%3A500633","Peptacetobacter hiranonis DSM 13275"]]},{"id":"NCBITaxon:500637","l":"Providencia rustigianii DSM 4541","na":1,"nb":2,"a":[["TED%3AAF-D1NXZ5-F1-model_v4_TED01","TED highly-symmetric fold AF-D1NXZ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A158850","Providencia rustigianii"],["NCBITaxon%3A500637","Providencia rustigianii DSM 4541"]]},{"id":"NCBITaxon:50259","l":"Rubrivivax sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A519Z6H9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A519Z6H9-F1-model_v4_TED01"],["TED%3AAF-A0A519Z4I2-F1-model_v4_TED02","TED novel fold AF-A0A519Z4I2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A50259","Rubrivivax sp."]]},{"id":"NCBITaxon:50338","l":"Rhizobium sullae","na":1,"nb":2,"a":[["TED%3AAF-A0A4R3Q746-F1-model_v4_TED03","TED novel fold AF-A0A4R3Q746-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A50338","Rhizobium sullae"],["NCBITaxon%3A1041146","Rhizobium sullae WSM1592"]]},{"id":"NCBITaxon:5044","l":"Hapsidospora chrysogena","na":2,"nb":1,"a":[["PROSITE%3APS00185","Isopenicillin N synthase signature 1"],["PROSITE%3APS00186","Isopenicillin N synthase signature 2"]],"b":[["NCBITaxon%3A5044","Hapsidospora chrysogena"]]},{"id":"NCBITaxon:504472","l":"Spirosoma linguale DSM 74","na":1,"nb":2,"a":[["TED%3AAF-D2QHB9-F1-model_v4_TED01","TED highly-symmetric fold AF-D2QHB9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A108","Spirosoma linguale"],["NCBITaxon%3A504472","Spirosoma linguale DSM 74"]]},{"id":"NCBITaxon:504797","l":"Actinopolymorpha cephalotaxi","na":1,"nb":2,"a":[["TED%3AAF-A0A1I2Y0M5-F1-model_v4_TED01","TED novel fold AF-A0A1I2Y0M5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A504797","Actinopolymorpha cephalotaxi"],["NCBITaxon%3A418707","Methylobacterium iners"]]},{"id":"NCBITaxon:505341","l":"Gallibacterium salpingitidis","na":2,"nb":1,"a":[["TED%3AAF-A0A1A7NNL6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1A7NNL6-F1-model_v4_TED02"],["TED%3AAF-A0A1A7PX16-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1A7PX16-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A505341","Gallibacterium salpingitidis"]]},{"id":"NCBITaxon:5062","l":"Aspergillus oryzae","na":1,"nb":2,"a":[["Pfam%3APF07335","Fungal chitosanase of glycosyl hydrolase group 75"]],"b":[["NCBITaxon%3A5062","Aspergillus oryzae"],["NCBITaxon%3A510516","Aspergillus oryzae RIB40"]]},{"id":"NCBITaxon:506534","l":"Rheinheimera sp. A13L","na":2,"nb":1,"a":[["TED%3AAF-F7NRG2-F1-model_v4_TED05","TED highly-symmetric fold AF-F7NRG2-F1-model_v4_TED05"],["TED%3AAF-F7NT36-F1-model_v4_TED02","TED novel fold AF-F7NT36-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A506534","Rheinheimera sp. A13L"]]},{"id":"NCBITaxon:507522","l":"Klebsiella variicola 342","na":2,"nb":1,"a":[["Pfam%3APF18649","EcpB C-terminal domain"],["Pfam%3APF04205","FMN-binding domain"]],"b":[["NCBITaxon%3A507522","Klebsiella variicola 342"]]},{"id":"NCBITaxon:509169","l":"Xanthomonas campestris pv. campestris str. B100","na":2,"nb":1,"a":[["Pfam%3APF28546","TonB transmembrane helix"],["Pfam%3APF14307","Glycosyltransferase WbsX"]],"b":[["NCBITaxon%3A509169","Xanthomonas campestris pv. campestris str. B100"]]},{"id":"NCBITaxon:512564","l":"Mycoplasma crocodyli MP145","na":1,"nb":2,"a":[["TED%3AAF-D5E5R9-F1-model_v4_TED07","TED novel fold AF-D5E5R9-F1-model_v4_TED07"]],"b":[["NCBITaxon%3A50052","Mycoplasma crocodyli"],["NCBITaxon%3A512564","Mycoplasma crocodyli MP145"]]},{"id":"NCBITaxon:513050","l":"Dictyoglomus turgidum","na":1,"nb":2,"a":[["TED%3AAF-A0A7C3SR87-F1-model_v4_TED04","TED novel fold AF-A0A7C3SR87-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A513050","Dictyoglomus turgidum"],["NCBITaxon%3A515635","Dictyoglomus turgidum DSM 6724"]]},{"id":"NCBITaxon:51363","l":"Metamycoplasma auris","na":1,"nb":2,"a":[["TED%3AAF-A0A2W7G4E4-F1-model_v4_TED02","TED novel fold AF-A0A2W7G4E4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A51363","Metamycoplasma auris"],["NCBITaxon%3A1188233","Metamycoplasma auris 15026"]]},{"id":"NCBITaxon:5141","l":"Neurospora crassa","na":1,"nb":2,"a":[["TED%3AAF-A0A0B0E1R4-F1-model_v4_TED01","TED novel fold AF-A0A0B0E1R4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5141","Neurospora crassa"],["NCBITaxon%3A367110","Neurospora crassa OR74A"]]},{"id":"NCBITaxon:515393","l":"Pseudomonas yamanorum","na":2,"nb":1,"a":[["TED%3AAF-A0A143GFF9-F1-model_v4_TED03","TED novel fold AF-A0A143GFF9-F1-model_v4_TED03"],["TED%3AAF-A0A1H2I658-F1-model_v4_TED02","TED novel fold AF-A0A1H2I658-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A515393","Pseudomonas yamanorum"]]},{"id":"NCBITaxon:515622","l":"Butyrivibrio proteoclasticus B316","na":1,"nb":2,"a":[["TED%3AAF-E0S461-F1-model_v4_TED02","TED highly-symmetric fold AF-E0S461-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A43305","Butyrivibrio proteoclasticus"],["NCBITaxon%3A515622","Butyrivibrio proteoclasticus B316"]]},{"id":"NCBITaxon:52","l":"Chondromyces crocatus","na":2,"nb":1,"a":[["TED%3AAF-A0A0K1ER44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0K1ER44-F1-model_v4_TED01"],["TED%3AAF-A0A0K1E854-F1-model_v4_TED01","TED novel fold AF-A0A0K1E854-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A52","Chondromyces crocatus"]]},{"id":"NCBITaxon:521007","l":"Borreliella burgdorferi N40","na":2,"nb":1,"a":[["Pfam%3APF02352","Decorin binding protein"],["Pfam%3APF17044","Borrelial persistence in ticks protein A"]],"b":[["NCBITaxon%3A521007","Borreliella burgdorferi N40"]]},{"id":"NCBITaxon:521096","l":"Tsukamurella paurometabola DSM 20162","na":1,"nb":2,"a":[["proteintraitsmech%3AELIFE109154_Lys_monoox","Mycobactin-type lysine N6-monooxygenase family"]],"b":[["NCBITaxon%3A2061","Tsukamurella paurometabola"],["NCBITaxon%3A521096","Tsukamurella paurometabola DSM 20162"]]},{"id":"NCBITaxon:521674","l":"Planctopirus limnophila DSM 3776","na":1,"nb":2,"a":[["TED%3AAF-D5SQH0-F1-model_v4_TED01","TED novel fold AF-D5SQH0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A120","Planctopirus limnophila"],["NCBITaxon%3A521674","Planctopirus limnophila DSM 3776"]]},{"id":"NCBITaxon:52247","l":"Pichia inconspicua","na":2,"nb":1,"a":[["TED%3AAF-A0A4T0X0W3-F1-model_v4_TED01","TED novel fold AF-A0A4T0X0W3-F1-model_v4_TED01"],["TED%3AAF-A0A4V4NFB8-F1-model_v4_TED01","TED novel fold AF-A0A4V4NFB8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A52247","Pichia inconspicua"]]},{"id":"NCBITaxon:52442","l":"Nitrosomonas nitrosa","na":2,"nb":1,"a":[["TED%3AAF-A0A1I4KWB0-F1-model_v4_TED01","TED novel fold AF-A0A1I4KWB0-F1-model_v4_TED01"],["TED%3AAF-A0A1I4TNH7-F1-model_v4_TED01","TED novel fold AF-A0A1I4TNH7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A52442","Nitrosomonas nitrosa"]]},{"id":"NCBITaxon:526216","l":"Oceanibaculum indicum","na":1,"nb":2,"a":[["TED%3AAF-A0A420WQU0-F1-model_v4_TED01","TED novel fold AF-A0A420WQU0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A526216","Oceanibaculum indicum"],["NCBITaxon%3A1207063","Oceanibaculum indicum P24"]]},{"id":"NCBITaxon:527326","l":"Georgenia thermotolerans","na":2,"nb":1,"a":[["TED%3AAF-A0A7J5UNV2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J5UNV2-F1-model_v4_TED01"],["TED%3AAF-A0A7J5UIX3-F1-model_v4_TED04","TED novel fold AF-A0A7J5UIX3-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A527326","Georgenia thermotolerans"]]},{"id":"NCBITaxon:529505","l":"Belliella pelovolcani","na":2,"nb":1,"a":[["TED%3AAF-A0A1N7NE82-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A1N7NE82-F1-model_v4_TED05"],["TED%3AAF-A0A1N7Q4E5-F1-model_v4_TED03","TED novel fold AF-A0A1N7Q4E5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A529505","Belliella pelovolcani"]]},{"id":"NCBITaxon:530564","l":"Pirellula staleyi DSM 6068","na":1,"nb":2,"a":[["TED%3AAF-D2QXI3-F1-model_v4_TED05","TED novel fold AF-D2QXI3-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A125","Pirellula staleyi"],["NCBITaxon%3A530564","Pirellula staleyi DSM 6068"]]},{"id":"NCBITaxon:536044","l":"Methanolobus zinderi","na":2,"nb":1,"a":[["TED%3AAF-A0A7D5IAI6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7D5IAI6-F1-model_v4_TED01"],["TED%3AAF-A0A7D5E6R2-F1-model_v4_TED02","TED novel fold AF-A0A7D5E6R2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A536044","Methanolobus zinderi"]]},{"id":"NCBITaxon:5364","l":"Heliocybe sulcata","na":2,"nb":1,"a":[["TED%3AAF-A0A5C3NM97-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A5C3NM97-F1-model_v4_TED03"],["TED%3AAF-A0A5C3MY03-F1-model_v4_TED01","TED novel fold AF-A0A5C3MY03-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5364","Heliocybe sulcata"]]},{"id":"NCBITaxon:537006","l":"Parabacteroides johnsonii DSM 18315","na":1,"nb":2,"a":[["TED%3AAF-B7B7V2-F1-model_v4_TED03","TED novel fold AF-B7B7V2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A387661","Parabacteroides johnsonii"],["NCBITaxon%3A537006","Parabacteroides johnsonii DSM 18315"]]},{"id":"NCBITaxon:537011","l":"Segatella copri DSM 18205","na":1,"nb":2,"a":[["TED%3AAF-A0A6G1VST5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A6G1VST5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A165179","Segatella copri"],["NCBITaxon%3A537011","Segatella copri DSM 18205"]]},{"id":"NCBITaxon:53952","l":"Thermococcus peptonophilus","na":1,"nb":2,"a":[["TED%3AAF-A0A142CST1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A142CST1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A53952","Thermococcus peptonophilus"],["NCBITaxon%3A523851","Thermococcus peptonophilus OG-1 = JCM 9653"]]},{"id":"NCBITaxon:54062","l":"Pediococcus parvulus","na":1,"nb":2,"a":[["TED%3AAF-A0A511ITE1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A511ITE1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A54062","Pediococcus parvulus"],["NCBITaxon%3A1255634","Pediococcus parvulus CIRM 750"]]},{"id":"NCBITaxon:543526","l":"Haloterrigena turkmenica DSM 5511","na":1,"nb":2,"a":[["TED%3AAF-D2RXQ8-F1-model_v4_TED01","TED novel fold AF-D2RXQ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A62320","Haloterrigena turkmenica"],["NCBITaxon%3A543526","Haloterrigena turkmenica DSM 5511"]]},{"id":"NCBITaxon:545695","l":"Leadbettera azotonutricia ZAS-9","na":1,"nb":2,"a":[["TED%3AAF-F5Y7H9-F1-model_v4_TED01","TED highly-symmetric fold AF-F5Y7H9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A150829","Leadbettera azotonutricia"],["NCBITaxon%3A545695","Leadbettera azotonutricia ZAS-9"]]},{"id":"NCBITaxon:545697","l":"Clostridium celatum DSM 1785","na":1,"nb":2,"a":[["TED%3AAF-L1QP93-F1-model_v4_TED02","TED highly-symmetric fold AF-L1QP93-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A36834","Clostridium celatum"],["NCBITaxon%3A545697","Clostridium celatum DSM 1785"]]},{"id":"NCBITaxon:545864","l":"Pseudorhodoferax soli","na":2,"nb":1,"a":[["TED%3AAF-A0A368XMY9-F1-model_v4_TED04","TED novel fold AF-A0A368XMY9-F1-model_v4_TED04"],["TED%3AAF-A0A368Y0L3-F1-model_v4_TED04","TED novel fold AF-A0A368Y0L3-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A545864","Pseudorhodoferax soli"]]},{"id":"NCBITaxon:546265","l":"Neisseria lactamica ATCC 23970","na":1,"nb":2,"a":[["TED%3AAF-D0W7J3-F1-model_v4_TED01","TED highly-symmetric fold AF-D0W7J3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A486","Neisseria lactamica"],["NCBITaxon%3A546265","Neisseria lactamica ATCC 23970"]]},{"id":"NCBITaxon:546270","l":"Gemella haemolysans ATCC 10379","na":1,"nb":2,"a":[["TED%3AAF-C5NV13-F1-model_v4_TED02","TED novel fold AF-C5NV13-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1379","Gemella haemolysans"],["NCBITaxon%3A546270","Gemella haemolysans ATCC 10379"]]},{"id":"NCBITaxon:546271","l":"Selenomonas sputigena ATCC 35185","na":1,"nb":2,"a":[["TED%3AAF-C9LW72-F1-model_v4_TED01","TED novel fold AF-C9LW72-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A69823","Selenomonas sputigena"],["NCBITaxon%3A546271","Selenomonas sputigena ATCC 35185"]]},{"id":"NCBITaxon:546414","l":"Deinococcus deserti VCD115","na":1,"nb":2,"a":[["PROSITE%3APS00356","LacI-type HTH domain signature"]],"b":[["NCBITaxon%3A310783","Deinococcus deserti"],["NCBITaxon%3A546414","Deinococcus deserti VCD115"]]},{"id":"NCBITaxon:547559","l":"Natrialba magadii ATCC 43099","na":1,"nb":2,"a":[["TED%3AAF-D3SYF3-F1-model_v4_TED01","TED novel fold AF-D3SYF3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A13769","Natrialba magadii"],["NCBITaxon%3A547559","Natrialba magadii ATCC 43099"]]},{"id":"NCBITaxon:550540","l":"Ferrimonas balearica DSM 9799","na":1,"nb":2,"a":[["TED%3AAF-E1SQV4-F1-model_v4_TED01","TED highly-symmetric fold AF-E1SQV4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A44012","Ferrimonas balearica"],["NCBITaxon%3A550540","Ferrimonas balearica DSM 9799"]]},{"id":"NCBITaxon:5514","l":"Fusarium sporotrichioides","na":2,"nb":1,"a":[["Pfam%3APF22701","Mal s 1 allergenic protein-like"],["TED%3AAF-A0A395RG49-F1-model_v4_TED02","TED novel fold AF-A0A395RG49-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A5514","Fusarium sporotrichioides"]]},{"id":"NCBITaxon:55209","l":"Pantoea cypripedii","na":2,"nb":1,"a":[["Pfam%3APF13618","Gluconate 2-dehydrogenase subunit 3"],["TED%3AAF-A0A1X1EQM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1X1EQM9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A55209","Pantoea cypripedii"]]},{"id":"NCBITaxon:553151","l":"Halopseudomonas pelagia","na":1,"nb":2,"a":[["TED%3AAF-A0A2A4AUI1-F1-model_v4_TED01","TED novel fold AF-A0A2A4AUI1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A553151","Halopseudomonas pelagia"],["NCBITaxon%3A1323663","Halopseudomonas pelagia CL-AP6"]]},{"id":"NCBITaxon:553178","l":"Capnocytophaga gingivalis ATCC 33624","na":1,"nb":2,"a":[["TED%3AAF-C2M6B3-F1-model_v4_TED03","TED novel fold AF-C2M6B3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1017","Capnocytophaga gingivalis"],["NCBITaxon%3A553178","Capnocytophaga gingivalis ATCC 33624"]]},{"id":"NCBITaxon:553220","l":"Campylobacter gracilis RM3268","na":1,"nb":2,"a":[["TED%3AAF-C8PGW1-F1-model_v4_TED02","TED novel fold AF-C8PGW1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A824","Campylobacter gracilis"],["NCBITaxon%3A553220","Campylobacter gracilis RM3268"]]},{"id":"NCBITaxon:5539","l":"Scytalidium lignicola","na":2,"nb":1,"a":[["TED%3AAF-A0A3E2GX72-F1-model_v4_TED02","TED novel fold AF-A0A3E2GX72-F1-model_v4_TED02"],["TED%3AAF-A0A3E2H974-F1-model_v4_TED01","TED novel fold AF-A0A3E2H974-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5539","Scytalidium lignicola"]]},{"id":"NCBITaxon:555311","l":"Saccharolobus solfataricus 98/2","na":2,"nb":1,"a":[["Pfam%3APF18533","Domain of unknown function (DUF5622)"],["Pfam%3APF21280","Archaeal helicase, domain 4"]],"b":[["NCBITaxon%3A555311","Saccharolobus solfataricus 98/2"]]},{"id":"NCBITaxon:558173","l":"Corynebacterium doosanense CAU 212 = DSM 45436","na":1,"nb":2,"a":[["TED%3AAF-A0A097IJJ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A097IJJ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1121358","Corynebacterium doosanense"],["NCBITaxon%3A558173","Corynebacterium doosanense CAU 212 = DSM 45436"]]},{"id":"NCBITaxon:558537","l":"Delftia lacustris","na":1,"nb":2,"a":[["TED%3AAF-A0A7T3DHC3-F1-model_v4_TED02","TED novel fold AF-A0A7T3DHC3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A80866","Delftia acidovorans"],["NCBITaxon%3A558537","Delftia lacustris"]]},{"id":"NCBITaxon:56055","l":"Allobogoriella caseilytica","na":2,"nb":1,"a":[["TED%3AAF-A0A3N2B9M1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N2B9M1-F1-model_v4_TED01"],["TED%3AAF-A0A3N2B9S2-F1-model_v4_TED04","TED novel fold AF-A0A3N2B9S2-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A56055","Allobogoriella caseilytica"]]},{"id":"NCBITaxon:56458","l":"Xanthomonas sacchari","na":1,"nb":2,"a":[["TED%3AAF-A0A5D1AFE3-F1-model_v4_TED01","TED novel fold AF-A0A5D1AFE3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A56458","Xanthomonas sacchari"],["NCBITaxon%3A1084662","Xanthomonas sacchari NCPPB 4393"]]},{"id":"NCBITaxon:565072","l":"Streptomyces spongiae","na":2,"nb":1,"a":[["TED%3AAF-A0A5N8XGB6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5N8XGB6-F1-model_v4_TED01"],["TED%3AAF-A0A5N8XXA3-F1-model_v4_TED01","TED novel fold AF-A0A5N8XXA3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A565072","Streptomyces spongiae"]]},{"id":"NCBITaxon:5661","l":"Leishmania donovani","na":2,"nb":1,"a":[["Pfam%3APF03037","Kinetoplastid membrane protein 11"],["Pfam%3APF03130","PBS lyase HEAT-like repeat"]],"b":[["NCBITaxon%3A5661","Leishmania donovani"]]},{"id":"NCBITaxon:566549","l":"Corynebacterium matruchotii ATCC 33806","na":1,"nb":2,"a":[["TED%3AAF-C0E5R2-F1-model_v4_TED02","TED highly-symmetric fold AF-C0E5R2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A43768","Corynebacterium matruchotii"],["NCBITaxon%3A566549","Corynebacterium matruchotii ATCC 33806"]]},{"id":"NCBITaxon:566550","l":"Hungatella hathewayi DSM 13479","na":1,"nb":2,"a":[["TED%3AAF-D3AIU1-F1-model_v4_TED01","TED novel fold AF-D3AIU1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A154046","Hungatella hathewayi"],["NCBITaxon%3A566550","Hungatella hathewayi DSM 13479"]]},{"id":"NCBITaxon:56799","l":"Colwellia sp.","na":2,"nb":1,"a":[["Pfam%3APF11999","Ice-binding-like"],["TED%3AAF-A0A2G2IC50-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G2IC50-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A56799","Colwellia sp."]]},{"id":"NCBITaxon:568106","l":"Marinobacterium lutimaris","na":1,"nb":2,"a":[["TED%3AAF-A0A1H5Y6J0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1H5Y6J0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A568106","Marinobacterium lutimaris"],["NCBITaxon%3A657014","Thalassovita taeanensis"]]},{"id":"NCBITaxon:56811","l":"Psychrobacter sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A350DM46-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A350DM46-F1-model_v4_TED01"],["TED%3AAF-A0A353XTU7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A353XTU7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A56811","Psychrobacter sp."]]},{"id":"NCBITaxon:56812","l":"Shewanella frigidimarina","na":1,"nb":2,"a":[["Pfam%3APF14537","Cytochrome c3"]],"b":[["NCBITaxon%3A56812","Shewanella frigidimarina"],["NCBITaxon%3A318167","Shewanella frigidimarina NCIMB 400"]]},{"id":"NCBITaxon:568860","l":"Nonomuraea wenchangensis","na":2,"nb":1,"a":[["TED%3AAF-A0A1I0L6E6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I0L6E6-F1-model_v4_TED01"],["TED%3AAF-A0A1I0F204-F1-model_v4_TED01","TED novel fold AF-A0A1I0F204-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A568860","Nonomuraea wenchangensis"]]},{"id":"NCBITaxon:56946","l":"Afipia broomeae","na":1,"nb":2,"a":[["TED%3AAF-A0A2M8ZDY1-F1-model_v4_TED03","TED novel fold AF-A0A2M8ZDY1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A56946","Afipia broomeae"],["NCBITaxon%3A883078","Afipia broomeae ATCC 49717"]]},{"id":"NCBITaxon:5698","l":"Trypanosoma rangeli","na":2,"nb":1,"a":[["TED%3AAF-A0A3R7MRW3-F1-model_v4_TED01","TED novel fold AF-A0A3R7MRW3-F1-model_v4_TED01"],["TED%3AAF-A0A3R7RRC6-F1-model_v4_TED01","TED novel fold AF-A0A3R7RRC6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A429131","Trypanosoma rangeli SC58"]]},{"id":"NCBITaxon:57040","l":"Malonomonas rubra","na":1,"nb":2,"a":[["Pfam%3APF06857","Malonate decarboxylase delta subunit (MdcD)"]],"b":[["NCBITaxon%3A57040","Malonomonas rubra"],["NCBITaxon%3A1122189","Malonomonas rubra DSM 5091"]]},{"id":"NCBITaxon:570446","l":"Sphingobium faniae","na":2,"nb":1,"a":[["TED%3AAF-A0A1G4PQM2-F1-model_v4_TED01","TED novel fold AF-A0A1G4PQM2-F1-model_v4_TED01"],["TED%3AAF-A0A1G4TUU7-F1-model_v4_TED03","TED novel fold AF-A0A1G4TUU7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A570446","Sphingobium faniae"]]},{"id":"NCBITaxon:570835","l":"Edaphobacter aggregans","na":1,"nb":2,"a":[["TED%3AAF-A0A3R9QJI3-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A3R9QJI3-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A570835","Edaphobacter aggregans"],["NCBITaxon%3A1121860","Edaphobacter aggregans DSM 19364"]]},{"id":"NCBITaxon:572419","l":"Mycoplasma amphoriforme A39","na":1,"nb":2,"a":[["TED%3AAF-A0A292IJF8-F1-model_v4_TED03","TED novel fold AF-A0A292IJF8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A273136","Mycoplasma amphoriforme"],["NCBITaxon%3A572419","Mycoplasma amphoriforme A39"]]},{"id":"NCBITaxon:572479","l":"Halanaerobium praevalens DSM 2228","na":1,"nb":2,"a":[["TED%3AAF-E3DS46-F1-model_v4_TED02","TED novel fold AF-E3DS46-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2331","Halanaerobium praevalens"],["NCBITaxon%3A572479","Halanaerobium praevalens DSM 2228"]]},{"id":"NCBITaxon:573064","l":"Methanocaldococcus fervens AG86","na":1,"nb":2,"a":[["Pfam%3APF02655","ATP-grasp domain"]],"b":[["NCBITaxon%3A83171","Methanocaldococcus fervens"],["NCBITaxon%3A573064","Methanocaldococcus fervens AG86"]]},{"id":"NCBITaxon:573065","l":"Asticcacaulis excentricus CB 48","na":1,"nb":2,"a":[["TED%3AAF-E8RUW8-F1-model_v4_TED01","TED novel fold AF-E8RUW8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A78587","Asticcacaulis excentricus"],["NCBITaxon%3A573065","Asticcacaulis excentricus CB 48"]]},{"id":"NCBITaxon:575540","l":"Isosphaera pallida ATCC 43644","na":1,"nb":2,"a":[["TED%3AAF-E8R507-F1-model_v4_TED01","TED highly-symmetric fold AF-E8R507-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A128","Isosphaera pallida"],["NCBITaxon%3A575540","Isosphaera pallida ATCC 43644"]]},{"id":"NCBITaxon:575584","l":"Acinetobacter baumannii ATCC 19606 = CIP 70.34 = JCM 6841","na":1,"nb":2,"a":[["Pfam%3APF22290","Dimethylamine monooxygenase subunit DmmA-like, N-terminal domain"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A575584","Acinetobacter baumannii ATCC 19606 = CIP 70.34 = JCM 6841"]]},{"id":"NCBITaxon:5763","l":"Naegleria fowleri","na":2,"nb":1,"a":[["TED%3AAF-A0A6A5BVA1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A5BVA1-F1-model_v4_TED01"],["TED%3AAF-A0A6A5C079-F1-model_v4_TED01","TED novel fold AF-A0A6A5C079-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5763","Naegleria fowleri"]]},{"id":"NCBITaxon:57664","l":"Desulfuromonas thiophila","na":1,"nb":2,"a":[["TED%3AAF-A0A1G7DXZ5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G7DXZ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A57664","Desulfuromonas thiophila"],["NCBITaxon%3A1121475","Desulfuromonas thiophila DSM 8987"]]},{"id":"NCBITaxon:57732","l":"Enterococcus asini","na":1,"nb":2,"a":[["TED%3AAF-A0A413AL28-F1-model_v4_TED03","TED novel fold AF-A0A413AL28-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A57732","Enterococcus asini"],["NCBITaxon%3A1158606","Enterococcus asini ATCC 700915"]]},{"id":"NCBITaxon:578093","l":"Lineolata rhizophorae","na":2,"nb":1,"a":[["TED%3AAF-A0A6A6NRD4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A6NRD4-F1-model_v4_TED01"],["TED%3AAF-A0A6A6NL82-F1-model_v4_TED01","TED novel fold AF-A0A6A6NL82-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A578093","Lineolata rhizophorae"]]},{"id":"NCBITaxon:578457","l":"Serpula lacrymans var. lacrymans S7.9","na":2,"nb":1,"a":[["TED%3AAF-F8NT94-F1-model_v4_TED01","TED highly-symmetric fold AF-F8NT94-F1-model_v4_TED01"],["TED%3AAF-F8NMD8-F1-model_v4_TED01","TED novel fold AF-F8NMD8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A578457","Serpula lacrymans var. lacrymans S7.9"]]},{"id":"NCBITaxon:5786","l":"Dictyostelium purpureum","na":2,"nb":1,"a":[["TED%3AAF-F1A1P2-F1-model_v4_TED01","TED highly-symmetric fold AF-F1A1P2-F1-model_v4_TED01"],["TED%3AAF-F1A2N0-F1-model_v4_TED01","TED novel fold AF-F1A2N0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5786","Dictyostelium purpureum"]]},{"id":"NCBITaxon:579137","l":"Methanocaldococcus vulcanius M7","na":1,"nb":2,"a":[["TED%3AAF-C9RDN7-F1-model_v4_TED02","TED highly-symmetric fold AF-C9RDN7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A73913","Methanocaldococcus vulcanius"],["NCBITaxon%3A579137","Methanocaldococcus vulcanius M7"]]},{"id":"NCBITaxon:58172","l":"Paenibacillus sp.","na":2,"nb":1,"a":[["Pfam%3APF03442","Carbohydrate binding domain X2"],["TED%3AAF-A0A357M9E9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A357M9E9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A58172","Paenibacillus sp."]]},{"id":"NCBITaxon:582702","l":"Rhodanobacter glycinis","na":2,"nb":1,"a":[["TED%3AAF-A0A1I4G4N7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I4G4N7-F1-model_v4_TED02"],["TED%3AAF-A0A502CFB8-F1-model_v4_TED01","TED novel fold AF-A0A502CFB8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A582702","Rhodanobacter glycinis"]]},{"id":"NCBITaxon:582855","l":"Streptomyces haliclonae","na":1,"nb":2,"a":[["TED%3AAF-A0A7W7BYP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W7BYP7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A582855","Streptomyces haliclonae"],["NCBITaxon%3A582854","Streptomyces marinus"]]},{"id":"NCBITaxon:584657","l":"Intrasporangium chromatireducens Q5-1","na":1,"nb":2,"a":[["TED%3AAF-W9GQ20-F1-model_v4_TED01","TED highly-symmetric fold AF-W9GQ20-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1386088","Intrasporangium chromatireducens"],["NCBITaxon%3A584657","Intrasporangium chromatireducens Q5-1"]]},{"id":"NCBITaxon:585054","l":"Escherichia fergusonii ATCC 35469","na":1,"nb":2,"a":[["Pfam%3APF08364","Bacterial translation initiation factor IF-2 associated region"]],"b":[["NCBITaxon%3A564","Escherichia fergusonii"],["NCBITaxon%3A585054","Escherichia fergusonii ATCC 35469"]]},{"id":"NCBITaxon:5855","l":"Plasmodium vivax","na":1,"nb":2,"a":[["PROSITE%3APS01006","Formate and nitrite transporters signature 2"]],"b":[["NCBITaxon%3A5855","Plasmodium vivax"],["NCBITaxon%3A126793","Plasmodium vivax Sal-1"]]},{"id":"NCBITaxon:5857","l":"Plasmodium fragile","na":2,"nb":1,"a":[["Pfam%3APF02430","Apical membrane antigen 1"],["TED%3AAF-A0A0D9QCU0-F1-model_v4_TED03","TED novel fold AF-A0A0D9QCU0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A5857","Plasmodium fragile"]]},{"id":"NCBITaxon:588581","l":"Ruminiclostridium papyrosolvens DSM 2782","na":1,"nb":2,"a":[["TED%3AAF-F1TA67-F1-model_v4_TED05","TED highly-symmetric fold AF-F1TA67-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A29362","Ruminiclostridium papyrosolvens"],["NCBITaxon%3A588581","Ruminiclostridium papyrosolvens DSM 2782"]]},{"id":"NCBITaxon:589873","l":"Alteromonas australica","na":2,"nb":1,"a":[["TED%3AAF-A0A350P6M3-F1-model_v4_TED03","TED novel fold AF-A0A350P6M3-F1-model_v4_TED03"],["TED%3AAF-A0A358DY91-F1-model_v4_TED02","TED novel fold AF-A0A358DY91-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A589873","Alteromonas australica"]]},{"id":"NCBITaxon:589924","l":"Ferroglobus placidus DSM 10642","na":1,"nb":2,"a":[["TED%3AAF-D3S1W1-F1-model_v4_TED01","TED novel fold AF-D3S1W1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A54261","Ferroglobus placidus"],["NCBITaxon%3A589924","Ferroglobus placidus DSM 10642"]]},{"id":"NCBITaxon:590998","l":"Cellulomonas fimi ATCC 484","na":1,"nb":2,"a":[["Pfam%3APF02927","Cellulase N-terminal ig-like domain"]],"b":[["NCBITaxon%3A1708","Cellulomonas fimi"],["NCBITaxon%3A590998","Cellulomonas fimi ATCC 484"]]},{"id":"NCBITaxon:5911","l":"Tetrahymena thermophila","na":1,"nb":2,"a":[["Pfam%3APF10699","Male gamete fusion factor"]],"b":[["NCBITaxon%3A5911","Tetrahymena thermophila"],["NCBITaxon%3A312017","Tetrahymena thermophila SB210"]]},{"id":"NCBITaxon:592015","l":"Acetomicrobium hydrogeniformans ATCC BAA-1850","na":1,"nb":2,"a":[["TED%3AAF-A0A0T5X7S6-F1-model_v4_TED02","TED novel fold AF-A0A0T5X7S6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A649746","Acetomicrobium hydrogeniformans"],["NCBITaxon%3A592015","Acetomicrobium hydrogeniformans ATCC BAA-1850"]]},{"id":"NCBITaxon:592022","l":"Priestia megaterium DSM 319","na":1,"nb":2,"a":[["Pfam%3APF21715","CggR N-terminal DNA binding domain"]],"b":[["NCBITaxon%3A1404","Priestia megaterium"],["NCBITaxon%3A592022","Priestia megaterium DSM 319"]]},{"id":"NCBITaxon:593907","l":"Cellulomonas gilvus ATCC 13127","na":1,"nb":2,"a":[["TED%3AAF-F8A5U1-F1-model_v4_TED01","TED highly-symmetric fold AF-F8A5U1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A11","Cellulomonas gilvus"],["NCBITaxon%3A593907","Cellulomonas gilvus ATCC 13127"]]},{"id":"NCBITaxon:59406","l":"Aromatoleum evansii","na":2,"nb":1,"a":[["Pfam%3APF14535","AMP-binding enzyme C-terminal domain"],["Pfam%3APF12837","4Fe-4S binding domain"]],"b":[["NCBITaxon%3A59406","Aromatoleum evansii"]]},{"id":"NCBITaxon:595670","l":"Acinetobacter kyonggiensis","na":2,"nb":1,"a":[["TED%3AAF-A0A1H3M0H6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H3M0H6-F1-model_v4_TED01"],["TED%3AAF-A0A1H3HIF5-F1-model_v4_TED02","TED novel fold AF-A0A1H3HIF5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A595670","Acinetobacter kyonggiensis"]]},{"id":"NCBITaxon:596151","l":"Solidesulfovibrio fructosivorans JJ]","na":1,"nb":2,"a":[["TED%3AAF-E1JSF8-F1-model_v4_TED01","TED highly-symmetric fold AF-E1JSF8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A878","Solidesulfovibrio fructosivorans"],["NCBITaxon%3A596151","Solidesulfovibrio fructosivorans JJ]"]]},{"id":"NCBITaxon:5970","l":"Exophiala dermatitidis","na":1,"nb":2,"a":[["Pfam%3APF22997","Chitin synthase 4-like domain"]],"b":[["NCBITaxon%3A5970","Exophiala dermatitidis"],["NCBITaxon%3A858893","Exophiala dermatitidis NIH/UT8656"]]},{"id":"NCBITaxon:59845","l":"Paenibacillus illinoisensis","na":1,"nb":2,"a":[["TED%3AAF-A0A2W0C6X7-F1-model_v4_TED01","TED novel fold AF-A0A2W0C6X7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A59845","Paenibacillus illinoisensis"],["NCBITaxon%3A1349779","Paenibacillus illinoisensis NBRC 15959"]]},{"id":"NCBITaxon:598659","l":"Nautilia profundicola AmH","na":1,"nb":2,"a":[["TED%3AAF-B9L8X6-F1-model_v4_TED01","TED highly-symmetric fold AF-B9L8X6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A244787","Nautilia profundicola"],["NCBITaxon%3A598659","Nautilia profundicola AmH"]]},{"id":"NCBITaxon:59919","l":"Prochlorococcus marinus subsp. pastoris str. CCMP1986","na":2,"nb":1,"a":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF12288","Carboxysome shell peptide mid-region"]],"b":[["NCBITaxon%3A59919","Prochlorococcus marinus subsp. pastoris str. CCMP1986"]]},{"id":"NCBITaxon:604354","l":"Thermococcus sibiricus MM 739","na":1,"nb":2,"a":[["Pfam%3APF04475","Protein of unknown function (DUF555)"]],"b":[["NCBITaxon%3A172049","Thermococcus sibiricus"],["NCBITaxon%3A604354","Thermococcus sibiricus MM 739"]]},{"id":"NCBITaxon:60453","l":"Dactylosporangium sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A849DQQ6-F1-model_v4_TED02","TED novel fold AF-A0A849DQQ6-F1-model_v4_TED02"],["TED%3AAF-A0A849DTX5-F1-model_v4_TED03","TED novel fold AF-A0A849DTX5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A60453","Dactylosporangium sp."]]},{"id":"NCBITaxon:60480","l":"Shewanella sp. MR-4","na":2,"nb":1,"a":[["Pfam%3APF06276","Ferric iron reductase FhuF-like transporter"],["Pfam%3APF04183","IucA / IucC family"]],"b":[["NCBITaxon%3A60480","Shewanella sp. MR-4"]]},{"id":"NCBITaxon:60481","l":"Shewanella sp. MR-7","na":2,"nb":1,"a":[["Pfam%3APF04183","IucA / IucC family"],["TED%3AAF-Q0HVU8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q0HVU8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A60481","Shewanella sp. MR-7"]]},{"id":"NCBITaxon:60549","l":"Paraburkholderia phenazinium","na":2,"nb":1,"a":[["TED%3AAF-A0A1N6HFN5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1N6HFN5-F1-model_v4_TED01"],["TED%3AAF-A0A4R7QIB5-F1-model_v4_TED01","TED novel fold AF-A0A4R7QIB5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A60549","Paraburkholderia phenazinium"]]},{"id":"NCBITaxon:608538","l":"Hydrogenobacter thermophilus TK-6","na":1,"nb":2,"a":[["Pfam%3APF17805","AsnC-like ligand binding domain"]],"b":[["NCBITaxon%3A940","Hydrogenobacter thermophilus"],["NCBITaxon%3A608538","Hydrogenobacter thermophilus TK-6"]]},{"id":"NCBITaxon:60894","l":"Saccharopolyspora spinosa","na":1,"nb":2,"a":[["Pfam%3APF03559","NDP-hexose 2,3-dehydratase"]],"b":[["NCBITaxon%3A60894","Saccharopolyspora spinosa"],["NCBITaxon%3A994479","Saccharopolyspora spinosa NRRL 18395"]]},{"id":"NCBITaxon:610130","l":"[Clostridium] saccharolyticum WM1","na":1,"nb":2,"a":[["TED%3AAF-D9RA58-F1-model_v4_TED03","TED highly-symmetric fold AF-D9RA58-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A610130","[Clostridium] saccharolyticum WM1"],["NCBITaxon%3A84030","Lacrimispora saccharolytica"]]},{"id":"NCBITaxon:61644","l":"Chromatium okenii","na":1,"nb":2,"a":[["TED%3AAF-A0A2S7XR51-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S7XR51-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A61644","Chromatium okenii"],["NCBITaxon%3A1434305","Chromatium okenii LC"]]},{"id":"NCBITaxon:620903","l":"Negativicoccus succinicivorans","na":1,"nb":2,"a":[["TED%3AAF-A0A841R3K7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A841R3K7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A620903","Negativicoccus succinicivorans"],["NCBITaxon%3A1403945","Negativicoccus succinicivorans DORA_17_25"]]},{"id":"NCBITaxon:626931","l":"Bacteroides oleiciplenus","na":1,"nb":2,"a":[["TED%3AAF-A0A1Q6GFG4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q6GFG4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A626931","Bacteroides oleiciplenus"],["NCBITaxon%3A742727","Bacteroides oleiciplenus YIT 12058"]]},{"id":"NCBITaxon:626939","l":"Phascolarctobacterium succinatutens YIT 12067","na":1,"nb":2,"a":[["TED%3AAF-E8LCK5-F1-model_v4_TED01","TED novel fold AF-E8LCK5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A626940","Phascolarctobacterium succinatutens"],["NCBITaxon%3A626939","Phascolarctobacterium succinatutens YIT 12067"]]},{"id":"NCBITaxon:629741","l":"Kingella oralis ATCC 51147","na":1,"nb":2,"a":[["TED%3AAF-C4GEH4-F1-model_v4_TED01","TED highly-symmetric fold AF-C4GEH4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A505","Kingella oralis"],["NCBITaxon%3A629741","Kingella oralis ATCC 51147"]]},{"id":"NCBITaxon:633697","l":"[Eubacterium] cellulosolvens 6","na":1,"nb":2,"a":[["Pfam%3APF19906","C-glycoside deglycosidase beta subunit"]],"b":[["NCBITaxon%3A29322","[Eubacterium] cellulosolvens"],["NCBITaxon%3A633697","[Eubacterium] cellulosolvens 6"]]},{"id":"NCBITaxon:637390","l":"Acidithiobacillus thiooxidans ATCC 19377","na":1,"nb":2,"a":[["TED%3AAF-A0A5P9XT39-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5P9XT39-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A930","Acidithiobacillus thiooxidans"],["NCBITaxon%3A637390","Acidithiobacillus thiooxidans ATCC 19377"]]},{"id":"NCBITaxon:637886","l":"Dysgonomonas hofstadii","na":1,"nb":2,"a":[["TED%3AAF-A0A840CH36-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A840CH36-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A637886","Dysgonomonas hofstadii"],["NCBITaxon%3A1298597","Dysgonomonas hofstadii JCM 17038 = DSM 104969"]]},{"id":"NCBITaxon:638300","l":"Cardiobacterium hominis ATCC 15826","na":1,"nb":2,"a":[["TED%3AAF-C8NBX0-F1-model_v4_TED02","TED novel fold AF-C8NBX0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2718","Cardiobacterium hominis"],["NCBITaxon%3A638300","Cardiobacterium hominis ATCC 15826"]]},{"id":"NCBITaxon:638302","l":"Centipeda flueggei ATCC 43531","na":1,"nb":2,"a":[["TED%3AAF-C4V4M5-F1-model_v4_TED02","TED highly-symmetric fold AF-C4V4M5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A135080","Centipeda flueggei"],["NCBITaxon%3A638302","Centipeda flueggei ATCC 43531"]]},{"id":"NCBITaxon:638303","l":"Thermocrinis albus DSM 14484","na":1,"nb":2,"a":[["TED%3AAF-D3SLN6-F1-model_v4_TED03","TED highly-symmetric fold AF-D3SLN6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A136094","Thermocrinis albus"],["NCBITaxon%3A638303","Thermocrinis albus DSM 14484"]]},{"id":"NCBITaxon:639283","l":"Ancylobacter novellus DSM 506","na":1,"nb":2,"a":[["TED%3AAF-D6ZYI9-F1-model_v4_TED01","TED highly-symmetric fold AF-D6ZYI9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A921","Ancylobacter novellus"],["NCBITaxon%3A639283","Ancylobacter novellus DSM 506"]]},{"id":"NCBITaxon:644548","l":"Gordonia neofelifaecis NRRL B-59395","na":1,"nb":2,"a":[["TED%3AAF-F1YHR7-F1-model_v4_TED02","TED novel fold AF-F1YHR7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A945692","Gordonia neofelifaecis"],["NCBITaxon%3A644548","Gordonia neofelifaecis NRRL B-59395"]]},{"id":"NCBITaxon:645127","l":"Corynebacterium kroppenstedtii DSM 44385","na":1,"nb":2,"a":[["Pfam%3APF03744","6-carboxyhexanoate--CoA ligase"]],"b":[["NCBITaxon%3A161879","Corynebacterium kroppenstedtii"],["NCBITaxon%3A645127","Corynebacterium kroppenstedtii DSM 44385"]]},{"id":"NCBITaxon:645463","l":"Clostridioides difficile R20291","na":1,"nb":2,"a":[["Pfam%3APF04392","ABC transporter substrate binding protein"]],"b":[["NCBITaxon%3A1496","Clostridioides difficile"],["NCBITaxon%3A645463","Clostridioides difficile R20291"]]},{"id":"NCBITaxon:64571","l":"Lobosporangium transversale","na":2,"nb":1,"a":[["TED%3AAF-A0A1Y2G8M8-F1-model_v4_TED01","TED novel fold AF-A0A1Y2G8M8-F1-model_v4_TED01"],["TED%3AAF-A0A1Y2GK20-F1-model_v4_TED03","TED novel fold AF-A0A1Y2GK20-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A64571","Lobosporangium transversale"]]},{"id":"NCBITaxon:645991","l":"Syntrophobotulus glycolicus DSM 8271","na":1,"nb":2,"a":[["TED%3AAF-F0T282-F1-model_v4_TED01","TED highly-symmetric fold AF-F0T282-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A51197","Syntrophobotulus glycolicus"],["NCBITaxon%3A645991","Syntrophobotulus glycolicus DSM 8271"]]},{"id":"NCBITaxon:649349","l":"Leadbetterella byssophila DSM 17132","na":1,"nb":2,"a":[["TED%3AAF-E4RVH3-F1-model_v4_TED02","TED novel fold AF-E4RVH3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A316068","Leadbetterella byssophila"],["NCBITaxon%3A649349","Leadbetterella byssophila DSM 17132"]]},{"id":"NCBITaxon:649638","l":"Truepera radiovictrix DSM 17093","na":1,"nb":2,"a":[["TED%3AAF-D7CR89-F1-model_v4_TED01","TED highly-symmetric fold AF-D7CR89-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A332249","Truepera radiovictrix"],["NCBITaxon%3A649638","Truepera radiovictrix DSM 17093"]]},{"id":"NCBITaxon:649639","l":"Evansella cellulosilytica DSM 2522","na":1,"nb":2,"a":[["Pfam%3APF03424","Carbohydrate binding domain (family 17/28)"]],"b":[["NCBITaxon%3A1413","Evansella cellulosilytica"],["NCBITaxon%3A649639","Evansella cellulosilytica DSM 2522"]]},{"id":"NCBITaxon:64972","l":"Oceanobacter kriegii","na":1,"nb":2,"a":[["Pfam%3APF02923","Restriction endonuclease BamHI"]],"b":[["NCBITaxon%3A64972","Oceanobacter kriegii"],["NCBITaxon%3A1122615","Oceanobacter kriegii DSM 6294"]]},{"id":"NCBITaxon:649747","l":"Aneurinibacillus aneurinilyticus ATCC 12856","na":1,"nb":2,"a":[["TED%3AAF-U1WRS1-F1-model_v4_TED03","TED highly-symmetric fold AF-U1WRS1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1391","Aneurinibacillus aneurinilyticus"],["NCBITaxon%3A649747","Aneurinibacillus aneurinilyticus ATCC 12856"]]},{"id":"NCBITaxon:649755","l":"Faecalitalea cylindroides ATCC 27803","na":1,"nb":2,"a":[["TED%3AAF-U2P7A3-F1-model_v4_TED01","TED highly-symmetric fold AF-U2P7A3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39483","Faecalitalea cylindroides"],["NCBITaxon%3A649755","Faecalitalea cylindroides ATCC 27803"]]},{"id":"NCBITaxon:649756","l":"Anaerostipes hadrus","na":1,"nb":2,"a":[["TED%3AAF-A0A173SPJ6-F1-model_v4_TED03","TED novel fold AF-A0A173SPJ6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A649756","Anaerostipes hadrus"],["NCBITaxon%3A649757","Anaerostipes hadrus ATCC 29173 = JCM 17467"]]},{"id":"NCBITaxon:65","l":"Herpetosiphon aurantiacus","na":1,"nb":2,"a":[["Pfam%3APF09520","Type II restriction endonuclease, HinfI"]],"b":[["NCBITaxon%3A65","Herpetosiphon aurantiacus"],["NCBITaxon%3A316274","Herpetosiphon aurantiacus DSM 785"]]},{"id":"NCBITaxon:652620","l":"Rickettsia japonica YH","na":1,"nb":2,"a":[["Pfam%3APF12574","120 KDa Rickettsia surface antigen"]],"b":[["NCBITaxon%3A35790","Rickettsia japonica"],["NCBITaxon%3A652620","Rickettsia japonica YH"]]},{"id":"NCBITaxon:652722","l":"Prevotella sp. oral taxon 313","na":1,"nb":2,"a":[["TED%3AAF-A0A2T4TJT6-F1-model_v4_TED01","TED novel fold AF-A0A2T4TJT6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A652722","Prevotella sp. oral taxon 313"],["NCBITaxon%3A621373","Prevotella sp. oral taxon 313 str. D3"]]},{"id":"NCBITaxon:652764","l":"Azospirillum sp. TSH100","na":1,"nb":2,"a":[["TED%3AAF-A0A4P7YGG1-F1-model_v4_TED01","TED novel fold AF-A0A4P7YGG1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A192","Azospirillum brasilense"],["NCBITaxon%3A652764","Azospirillum sp. TSH100"]]},{"id":"NCBITaxon:653931","l":"Sphingomonas alpina","na":2,"nb":1,"a":[["TED%3AAF-A0A7G5YYV7-F1-model_v4_TED01","TED novel fold AF-A0A7G5YYV7-F1-model_v4_TED01"],["TED%3AAF-A0A7H0LPD7-F1-model_v4_TED01","TED novel fold AF-A0A7H0LPD7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A653931","Sphingomonas alpina"]]},{"id":"NCBITaxon:655816","l":"Bacillus spizizenii str. W23","na":2,"nb":1,"a":[["Pfam%3APF13930","DNA/RNA non-specific endonuclease"],["Pfam%3APF03626","Prokaryotic Cytochrome C oxidase subunit IV"]],"b":[["NCBITaxon%3A655816","Bacillus spizizenii str. W23"]]},{"id":"NCBITaxon:656914","l":"Desulfonispora thiosulfatigenes DSM 11270","na":1,"nb":2,"a":[["TED%3AAF-A0A1W1UJ66-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W1UJ66-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A83661","Desulfonispora thiosulfatigenes"],["NCBITaxon%3A656914","Desulfonispora thiosulfatigenes DSM 11270"]]},{"id":"NCBITaxon:657318","l":"Agathobacter rectalis DSM 17629","na":1,"nb":2,"a":[["TED%3AAF-D6E2S4-F1-model_v4_TED03","TED novel fold AF-D6E2S4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A39491","Agathobacter rectalis"],["NCBITaxon%3A657318","Agathobacter rectalis DSM 17629"]]},{"id":"NCBITaxon:659243","l":"Bacillus siamensis","na":1,"nb":2,"a":[["TED%3AAF-A0A853L550-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A853L550-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A659243","Bacillus siamensis"],["NCBITaxon%3A1177185","Bacillus siamensis KCTC 13613"]]},{"id":"NCBITaxon:659425","l":"Thermoclostridium caenicola","na":1,"nb":2,"a":[["TED%3AAF-A0A1M6H7B8-F1-model_v4_TED02","TED novel fold AF-A0A1M6H7B8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A659425","Thermoclostridium caenicola"],["NCBITaxon%3A1121300","Thermoclostridium caenicola DSM 19027"]]},{"id":"NCBITaxon:661","l":"Photobacterium angustum","na":1,"nb":2,"a":[["TED%3AAF-A0A2S7VJB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S7VJB4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A661","Photobacterium angustum"],["NCBITaxon%3A314292","Photobacterium angustum S14"]]},{"id":"NCBITaxon:663278","l":"Ethanoligenens harbinense YUAN-3","na":1,"nb":2,"a":[["TED%3AAF-E6U344-F1-model_v4_TED03","TED highly-symmetric fold AF-E6U344-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A253239","Ethanoligenens harbinense"],["NCBITaxon%3A663278","Ethanoligenens harbinense YUAN-3"]]},{"id":"NCBITaxon:665004","l":"Thermobifida cellulosilytica TB100","na":1,"nb":2,"a":[["TED%3AAF-A0A147KM88-F1-model_v4_TED01","TED novel fold AF-A0A147KM88-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A144786","Thermobifida cellulosilytica"],["NCBITaxon%3A665004","Thermobifida cellulosilytica TB100"]]},{"id":"NCBITaxon:666681","l":"Methylotenera versatilis 301","na":1,"nb":2,"a":[["TED%3AAF-D7DL14-F1-model_v4_TED01","TED novel fold AF-D7DL14-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1055487","Methylotenera versatilis"],["NCBITaxon%3A666681","Methylotenera versatilis 301"]]},{"id":"NCBITaxon:66821","l":"Sulfurospirillum multivorans","na":1,"nb":2,"a":[["Pfam%3APF13484","4Fe-4S double cluster binding domain"]],"b":[["NCBITaxon%3A66821","Sulfurospirillum multivorans"],["NCBITaxon%3A1150621","Sulfurospirillum multivorans DSM 12446"]]},{"id":"NCBITaxon:67003","l":"Trypanosoma theileri","na":2,"nb":1,"a":[["TED%3AAF-A0A1X0P2L0-F1-model_v4_TED01","TED novel fold AF-A0A1X0P2L0-F1-model_v4_TED01"],["TED%3AAF-A0A1X0P808-F1-model_v4_TED03","TED novel fold AF-A0A1X0P808-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A67003","Trypanosoma theileri"]]},{"id":"NCBITaxon:670483","l":"Gloeophyllum trabeum ATCC 11539","na":2,"nb":1,"a":[["TED%3AAF-S7PVB2-F1-model_v4_TED01","TED highly-symmetric fold AF-S7PVB2-F1-model_v4_TED01"],["TED%3AAF-S7PSV9-F1-model_v4_TED02","TED novel fold AF-S7PSV9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A670483","Gloeophyllum trabeum ATCC 11539"]]},{"id":"NCBITaxon:670487","l":"Oceanithermus profundus DSM 14977","na":1,"nb":2,"a":[["TED%3AAF-E4U714-F1-model_v4_TED01","TED highly-symmetric fold AF-E4U714-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A187137","Oceanithermus profundus"],["NCBITaxon%3A670487","Oceanithermus profundus DSM 14977"]]},{"id":"NCBITaxon:679189","l":"Hoylesella timonensis CRIS 5C-B1","na":2,"nb":1,"a":[["TED%3AAF-D1W1N1-F1-model_v4_TED01","TED highly-symmetric fold AF-D1W1N1-F1-model_v4_TED01"],["TED%3AAF-D1VYX6-F1-model_v4_TED04","TED novel fold AF-D1VYX6-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A679189","Hoylesella timonensis CRIS 5C-B1"]]},{"id":"NCBITaxon:679200","l":"Johnsonella ignava ATCC 51276","na":1,"nb":2,"a":[["TED%3AAF-G5GIZ0-F1-model_v4_TED01","TED highly-symmetric fold AF-G5GIZ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A43995","Johnsonella ignava"],["NCBITaxon%3A679200","Johnsonella ignava ATCC 51276"]]},{"id":"NCBITaxon:679201","l":"Centipeda infelix ATCC 43532","na":1,"nb":2,"a":[["TED%3AAF-G5GM54-F1-model_v4_TED01","TED novel fold AF-G5GM54-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A135082","Centipeda infelix"],["NCBITaxon%3A679201","Centipeda infelix ATCC 43532"]]},{"id":"NCBITaxon:679318","l":"Rhodococcus sp. WMMA185","na":2,"nb":1,"a":[["TED%3AAF-A0A1D8T5W2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1D8T5W2-F1-model_v4_TED02"],["TED%3AAF-A0A1D8T4K7-F1-model_v4_TED02","TED novel fold AF-A0A1D8T4K7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A679318","Rhodococcus sp. WMMA185"]]},{"id":"NCBITaxon:679926","l":"Methanolacinia petrolearia DSM 11571","na":1,"nb":2,"a":[["TED%3AAF-E1RJC3-F1-model_v4_TED02","TED novel fold AF-E1RJC3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A54120","Methanolacinia petrolearia"],["NCBITaxon%3A679926","Methanolacinia petrolearia DSM 11571"]]},{"id":"NCBITaxon:679937","l":"Bacteroides coprosuis DSM 18011","na":1,"nb":2,"a":[["TED%3AAF-F3ZUW4-F1-model_v4_TED02","TED novel fold AF-F3ZUW4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A151276","Bacteroides coprosuis"],["NCBITaxon%3A679937","Bacteroides coprosuis DSM 18011"]]},{"id":"NCBITaxon:68170","l":"Lentzea aerocolonigenes","na":2,"nb":1,"a":[["Pfam%3APF12902","Ferritin-like"],["TED%3AAF-A0A0F0GZM7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0F0GZM7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A68170","Lentzea aerocolonigenes"]]},{"id":"NCBITaxon:68215","l":"Streptomyces griseoverticillatus","na":1,"nb":2,"a":[["Pfam%3APF19398","Lantibiotic duramycin B-like"]],"b":[["NCBITaxon%3A53446","Streptomyces cinnamoneus"],["NCBITaxon%3A68215","Streptomyces griseoverticillatus"]]},{"id":"NCBITaxon:68239","l":"Streptomyces mirabilis","na":1,"nb":2,"a":[["TED%3AAF-A0A1I2Y4U7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2Y4U7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A68239","Streptomyces mirabilis"],["NCBITaxon%3A1169149","Streptomyces mirabilis 138MFCol5.1"]]},{"id":"NCBITaxon:682795","l":"Granulicella mallensis MP5ACTX8","na":1,"nb":2,"a":[["TED%3AAF-G8NRD9-F1-model_v4_TED01","TED highly-symmetric fold AF-G8NRD9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A940614","Granulicella mallensis"],["NCBITaxon%3A682795","Granulicella mallensis MP5ACTX8"]]},{"id":"NCBITaxon:683260","l":"Nonomuraea maritima","na":2,"nb":1,"a":[["TED%3AAF-A0A1G8Z2R0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G8Z2R0-F1-model_v4_TED02"],["TED%3AAF-A0A1G9GNN2-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A1G9GNN2-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A683260","Nonomuraea maritima"]]},{"id":"NCBITaxon:683846","l":"Fervidicoccus fontis","na":1,"nb":2,"a":[["TED%3AAF-A0A7C1E7K4-F1-model_v4_TED03","TED novel fold AF-A0A7C1E7K4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A683846","Fervidicoccus fontis"],["NCBITaxon%3A1163730","Fervidicoccus fontis Kam940"]]},{"id":"NCBITaxon:68775","l":"Crucibulum laeve","na":2,"nb":1,"a":[["TED%3AAF-A0A5C3M7N8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5C3M7N8-F1-model_v4_TED02"],["TED%3AAF-A0A5C3LPE8-F1-model_v4_TED02","TED novel fold AF-A0A5C3LPE8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A68775","Crucibulum laeve"]]},{"id":"NCBITaxon:687861","l":"Bartonella schoenbuchensis R1","na":1,"nb":2,"a":[["Pfam%3APF17841","BID domain of Bartonella effector protein (Bep)"]],"b":[["NCBITaxon%3A165694","Bartonella schoenbuchensis"],["NCBITaxon%3A687861","Bartonella schoenbuchensis R1"]]},{"id":"NCBITaxon:688269","l":"Pseudothermotoga thermarum DSM 5069","na":1,"nb":2,"a":[["TED%3AAF-F7YY41-F1-model_v4_TED02","TED highly-symmetric fold AF-F7YY41-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A119394","Pseudothermotoga thermarum"],["NCBITaxon%3A688269","Pseudothermotoga thermarum DSM 5069"]]},{"id":"NCBITaxon:69019","l":"Streptomyces sp. N174","na":2,"nb":1,"a":[["Pfam%3APF01374","Glycosyl hydrolase family 46"],["PROSITE%3APS60000","Chitosanases families 46 and 80 active sites signature"]],"b":[["NCBITaxon%3A69019","Streptomyces sp. N174"]]},{"id":"NCBITaxon:692036","l":"Tuwongella immobilis","na":2,"nb":1,"a":[["TED%3AAF-A0A6C2YKE9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6C2YKE9-F1-model_v4_TED01"],["TED%3AAF-A0A6C2YRP1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6C2YRP1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A692036","Tuwongella immobilis"]]},{"id":"NCBITaxon:693023","l":"Muricoccus pecuniae","na":2,"nb":1,"a":[["TED%3AAF-A0A840Y722-F1-model_v4_TED01","TED novel fold AF-A0A840Y722-F1-model_v4_TED01"],["TED%3AAF-A0A840Y8N1-F1-model_v4_TED02","TED novel fold AF-A0A840Y8N1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A693023","Muricoccus pecuniae"]]},{"id":"NCBITaxon:693216","l":"Cronobacter turicensis z3032","na":1,"nb":2,"a":[["TED%3AAF-C9Y1S3-F1-model_v4_TED01","TED novel fold AF-C9Y1S3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A413502","Cronobacter turicensis"],["NCBITaxon%3A693216","Cronobacter turicensis z3032"]]},{"id":"NCBITaxon:693661","l":"Archaeoglobus veneficus SNP6","na":1,"nb":2,"a":[["TED%3AAF-F2KRD1-F1-model_v4_TED02","TED highly-symmetric fold AF-F2KRD1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A58290","Archaeoglobus veneficus"],["NCBITaxon%3A693661","Archaeoglobus veneficus SNP6"]]},{"id":"NCBITaxon:69368","l":"Microbacterium saperdae","na":2,"nb":1,"a":[["TED%3AAF-A0A543BLE7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A543BLE7-F1-model_v4_TED01"],["TED%3AAF-A0A543BLF3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A543BLF3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A69368","Microbacterium saperdae"]]},{"id":"NCBITaxon:693988","l":"Bilophila sp. 4_1_30","na":2,"nb":1,"a":[["TED%3AAF-G1V4C5-F1-model_v4_TED01","TED highly-symmetric fold AF-G1V4C5-F1-model_v4_TED01"],["TED%3AAF-G1V6L8-F1-model_v4_TED01","TED highly-symmetric fold AF-G1V6L8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A693988","Bilophila sp. 4_1_30"]]},{"id":"NCBITaxon:694270","l":"Fusarium longipes","na":2,"nb":1,"a":[["TED%3AAF-A0A395SX93-F1-model_v4_TED01","TED novel fold AF-A0A395SX93-F1-model_v4_TED01"],["TED%3AAF-A0A395T148-F1-model_v4_TED01","TED novel fold AF-A0A395T148-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A694270","Fusarium longipes"]]},{"id":"NCBITaxon:694429","l":"Pyrolobus fumarii 1A","na":1,"nb":2,"a":[["TED%3AAF-G0EC50-F1-model_v4_TED01","TED highly-symmetric fold AF-G0EC50-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A54252","Pyrolobus fumarii"],["NCBITaxon%3A694429","Pyrolobus fumarii 1A"]]},{"id":"NCBITaxon:694433","l":"Saprospira grandis DSM 2844","na":1,"nb":2,"a":[["TED%3AAF-J0P380-F1-model_v4_TED01","TED highly-symmetric fold AF-J0P380-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1008","Saprospira grandis"],["NCBITaxon%3A694433","Saprospira grandis DSM 2844"]]},{"id":"NCBITaxon:694437","l":"Flammeovirga aprica JL-4","na":1,"nb":2,"a":[["TED%3AAF-A0A7X9P2C6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X9P2C6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29528","Flammeovirga aprica"],["NCBITaxon%3A694437","Flammeovirga aprica JL-4"]]},{"id":"NCBITaxon:696747","l":"Limnospira platensis NIES-39","na":2,"nb":1,"a":[["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"]],"b":[["NCBITaxon%3A696747","Limnospira platensis NIES-39"]]},{"id":"NCBITaxon:698738","l":"Oleispira antarctica RB-8","na":1,"nb":2,"a":[["TED%3AAF-R4YLW4-F1-model_v4_TED01","TED highly-symmetric fold AF-R4YLW4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A188908","Oleispira antarctica"],["NCBITaxon%3A698738","Oleispira antarctica RB-8"]]},{"id":"NCBITaxon:698757","l":"Pyrobaculum oguniense TE7","na":1,"nb":2,"a":[["TED%3AAF-H6QD06-F1-model_v4_TED01","TED novel fold AF-H6QD06-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A99007","Pyrobaculum oguniense"],["NCBITaxon%3A698757","Pyrobaculum oguniense TE7"]]},{"id":"NCBITaxon:698759","l":"Streptomyces ipomoeae 91-03","na":2,"nb":1,"a":[["TED%3AAF-L1KR24-F1-model_v4_TED01","TED highly-symmetric fold AF-L1KR24-F1-model_v4_TED01"],["TED%3AAF-L1L393-F1-model_v4_TED01","TED highly-symmetric fold AF-L1L393-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A698759","Streptomyces ipomoeae 91-03"]]},{"id":"NCBITaxon:703497","l":"Microthyrium microscopicum","na":2,"nb":1,"a":[["TED%3AAF-A0A6A6U421-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A6U421-F1-model_v4_TED01"],["TED%3AAF-A0A6A6U184-F1-model_v4_TED01","TED novel fold AF-A0A6A6U184-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A703497","Microthyrium microscopicum"]]},{"id":"NCBITaxon:703511","l":"Trichodelitschia bisporula","na":2,"nb":1,"a":[["TED%3AAF-A0A6G1HXI5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6G1HXI5-F1-model_v4_TED01"],["TED%3AAF-A0A6G1I3S2-F1-model_v4_TED01","TED novel fold AF-A0A6G1I3S2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A703511","Trichodelitschia bisporula"]]},{"id":"NCBITaxon:70611","l":"Legionella taurinensis","na":2,"nb":1,"a":[["TED%3AAF-A0A3A5L139-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3A5L139-F1-model_v4_TED02"],["TED%3AAF-A0A4T0Y3E4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4T0Y3E4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A70611","Legionella taurinensis"]]},{"id":"NCBITaxon:706587","l":"Desulfomonile tiedjei DSM 6799","na":1,"nb":2,"a":[["TED%3AAF-I4CB34-F1-model_v4_TED01","TED highly-symmetric fold AF-I4CB34-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2358","Desulfomonile tiedjei"],["NCBITaxon%3A706587","Desulfomonile tiedjei DSM 6799"]]},{"id":"NCBITaxon:706981","l":"Clathrospora elynae","na":2,"nb":1,"a":[["TED%3AAF-A0A6A5SIJ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A5SIJ0-F1-model_v4_TED01"],["TED%3AAF-A0A6A5SZD9-F1-model_v4_TED01","TED novel fold AF-A0A6A5SZD9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A706981","Clathrospora elynae"]]},{"id":"NCBITaxon:709813","l":"Azospirillum sp. TSA6c","na":1,"nb":2,"a":[["TED%3AAF-A0A2U1WGZ6-F1-model_v4_TED03","TED novel fold AF-A0A2U1WGZ6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A192","Azospirillum brasilense"],["NCBITaxon%3A709813","Azospirillum sp. TSA6c"]]},{"id":"NCBITaxon:710648","l":"Acinetobacter sp. Tol 5","na":2,"nb":1,"a":[["Pfam%3APF04355","Outer membrane protein assembly factor BamE domain"],["Pfam%3APF05662","Coiled stalk of trimeric autotransporter adhesin"]],"b":[["NCBITaxon%3A710648","Acinetobacter sp. Tol 5"]]},{"id":"NCBITaxon:712365","l":"Leptotrichia sp. oral taxon 417","na":2,"nb":1,"a":[["TED%3AAF-A0A851IVR6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A851IVR6-F1-model_v4_TED02"],["TED%3AAF-A0A851IRL6-F1-model_v4_TED02","TED novel fold AF-A0A851IRL6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A712365","Leptotrichia sp. oral taxon 417"]]},{"id":"NCBITaxon:712991","l":"Lachnospiraceae bacterium oral taxon 500","na":1,"nb":2,"a":[["TED%3AAF-A0A2R3N3Q0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2R3N3Q0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A712991","Lachnospiraceae bacterium oral taxon 500"],["NCBITaxon%3A575593","Lachnospiraceae oral taxon 107 str. F0167"]]},{"id":"NCBITaxon:713604","l":"Amycolatopsis mediterranei S699","na":1,"nb":2,"a":[["TED%3AAF-G0FSL6-F1-model_v4_TED01","TED novel fold AF-G0FSL6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A33910","Amycolatopsis mediterranei"],["NCBITaxon%3A713604","Amycolatopsis mediterranei S699"]]},{"id":"NCBITaxon:714962","l":"Escherichia coli IHE3034","na":2,"nb":1,"a":[["Pfam%3APF27348","EcpR N-terminal domain"],["Pfam%3APF15976","CS1-pili formation C-terminal"]],"b":[["NCBITaxon%3A714962","Escherichia coli IHE3034"]]},{"id":"NCBITaxon:716760","l":"Azospirillum sp. TSO5","na":1,"nb":2,"a":[["TED%3AAF-A0A2U1YMX5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2U1YMX5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A192","Azospirillum brasilense"],["NCBITaxon%3A716760","Azospirillum sp. TSO5"]]},{"id":"NCBITaxon:717646","l":"Baudoinia panamericana UAMH 10762","na":2,"nb":1,"a":[["TED%3AAF-M2N4I7-F1-model_v4_TED02","TED novel fold AF-M2N4I7-F1-model_v4_TED02"],["TED%3AAF-M2NGF0-F1-model_v4_TED01","TED novel fold AF-M2NGF0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A717646","Baudoinia panamericana UAMH 10762"]]},{"id":"NCBITaxon:717774","l":"Marinomonas mediterranea MMB-1","na":1,"nb":2,"a":[["TED%3AAF-F2K4E6-F1-model_v4_TED01","TED novel fold AF-F2K4E6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A119864","Marinomonas mediterranea"],["NCBITaxon%3A717774","Marinomonas mediterranea MMB-1"]]},{"id":"NCBITaxon:717836","l":"Cercospora zeae-maydis SCOH1-5","na":2,"nb":1,"a":[["TED%3AAF-A0A6A6F9L6-F1-model_v4_TED01","TED novel fold AF-A0A6A6F9L6-F1-model_v4_TED01"],["TED%3AAF-A0A6A6FG01-F1-model_v4_TED01","TED novel fold AF-A0A6A6FG01-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A717836","Cercospora zeae-maydis SCOH1-5"]]},{"id":"NCBITaxon:717959","l":"Alistipes shahii WAL 8301","na":1,"nb":2,"a":[["TED%3AAF-D4INA3-F1-model_v4_TED03","TED novel fold AF-D4INA3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A328814","Alistipes shahii"],["NCBITaxon%3A717959","Alistipes shahii WAL 8301"]]},{"id":"NCBITaxon:717962","l":"Pseudocoprococcus catus GD/7","na":2,"nb":1,"a":[["TED%3AAF-D4J8X9-F1-model_v4_TED02","TED novel fold AF-D4J8X9-F1-model_v4_TED02"],["TED%3AAF-D4J8Z5-F1-model_v4_TED01","TED novel fold AF-D4J8Z5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A717962","Pseudocoprococcus catus GD/7"]]},{"id":"NCBITaxon:717982","l":"Auricularia subglabra TFB-10046 SS5","na":2,"nb":1,"a":[["TED%3AAF-J0D7B6-F1-model_v4_TED01","TED highly-symmetric fold AF-J0D7B6-F1-model_v4_TED01"],["TED%3AAF-J0LD77-F1-model_v4_TED04","TED novel fold AF-J0LD77-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A717982","Auricularia subglabra TFB-10046 SS5"]]},{"id":"NCBITaxon:718193","l":"Ferrimonas sediminum","na":2,"nb":1,"a":[["TED%3AAF-A0A1G8RI63-F1-model_v4_TED01","TED novel fold AF-A0A1G8RI63-F1-model_v4_TED01"],["TED%3AAF-A0A1G8ZWE4-F1-model_v4_TED02","TED novel fold AF-A0A1G8ZWE4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A718193","Ferrimonas sediminum"]]},{"id":"NCBITaxon:720554","l":"Acetivibrio clariflavus DSM 19732","na":1,"nb":2,"a":[["TED%3AAF-G8LY27-F1-model_v4_TED01","TED highly-symmetric fold AF-G8LY27-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A288965","Acetivibrio clariflavus"],["NCBITaxon%3A720554","Acetivibrio clariflavus DSM 19732"]]},{"id":"NCBITaxon:72226","l":"Lysobacter sp.","na":1,"nb":2,"a":[["TED%3AAF-A0A5C7XIK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7XIK2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A72226","Lysobacter sp."],["NCBITaxon%3A1645665","Solilutibacter silvestris"]]},{"id":"NCBITaxon:72520","l":"Microchloropsis gaditana","na":1,"nb":2,"a":[["TED%3AAF-W7TG93-F1-model_v4_TED02","TED highly-symmetric fold AF-W7TG93-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A72520","Microchloropsis gaditana"],["NCBITaxon%3A1093141","Nannochloropsis gaditana CCMP526"]]},{"id":"NCBITaxon:72586","l":"Pseudomonas sp. CBS3","na":2,"nb":1,"a":[["Pfam%3APF13279","Thioesterase-like superfamily"],["PROSITE%3APS01328","4-hydroxybenzoyl-CoA thioesterase family active site"]],"b":[["NCBITaxon%3A72586","Pseudomonas sp. CBS3"]]},{"id":"NCBITaxon:74033","l":"Antarctobacter heliothermus","na":2,"nb":1,"a":[["TED%3AAF-A0A239BAJ3-F1-model_v4_TED01","TED novel fold AF-A0A239BAJ3-F1-model_v4_TED01"],["TED%3AAF-A0A239DKX9-F1-model_v4_TED02","TED novel fold AF-A0A239DKX9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A74033","Antarctobacter heliothermus"]]},{"id":"NCBITaxon:742152","l":"Wolfiporia cocos MD-104 SS10","na":2,"nb":1,"a":[["TED%3AAF-A0A2H3IX44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H3IX44-F1-model_v4_TED01"],["TED%3AAF-A0A2H3JM17-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H3JM17-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A742152","Wolfiporia cocos MD-104 SS10"]]},{"id":"NCBITaxon:742723","l":"Lachnospiraceae bacterium 2_1_46FAA","na":1,"nb":2,"a":[["TED%3AAF-F3BAA4-F1-model_v4_TED02","TED highly-symmetric fold AF-F3BAA4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1898203","Lachnospiraceae bacterium"],["NCBITaxon%3A742723","Lachnospiraceae bacterium 2_1_46FAA"]]},{"id":"NCBITaxon:742726","l":"Barnesiella intestinihominis YIT 11860","na":1,"nb":2,"a":[["TED%3AAF-K0XG25-F1-model_v4_TED01","TED highly-symmetric fold AF-K0XG25-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A487174","Barnesiella intestinihominis"],["NCBITaxon%3A742726","Barnesiella intestinihominis YIT 11860"]]},{"id":"NCBITaxon:742742","l":"Collinsella tanakaei YIT 12063","na":1,"nb":2,"a":[["TED%3AAF-G1WI80-F1-model_v4_TED02","TED highly-symmetric fold AF-G1WI80-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A626935","Collinsella tanakaei"],["NCBITaxon%3A742742","Collinsella tanakaei YIT 12063"]]},{"id":"NCBITaxon:742766","l":"Dysgonomonas gadei ATCC BAA-286","na":1,"nb":2,"a":[["TED%3AAF-F5IT17-F1-model_v4_TED02","TED novel fold AF-F5IT17-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A156974","Dysgonomonas gade"],["NCBITaxon%3A742766","Dysgonomonas gadei ATCC BAA-286"]]},{"id":"NCBITaxon:742821","l":"Sutterella wadsworthensis 3_1_45B","na":2,"nb":1,"a":[["TED%3AAF-E7H5T8-F1-model_v4_TED02","TED highly-symmetric fold AF-E7H5T8-F1-model_v4_TED02"],["TED%3AAF-E7H696-F1-model_v4_TED01","TED highly-symmetric fold AF-E7H696-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A742821","Sutterella wadsworthensis 3_1_45B"]]},{"id":"NCBITaxon:743974","l":"Moraxella bovoculi 237","na":1,"nb":2,"a":[["TED%3AAF-A0A066UIR0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A066UIR0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A386891","Moraxella bovoculi"],["NCBITaxon%3A743974","Moraxella bovoculi 237"]]},{"id":"NCBITaxon:745377","l":"Natrarchaeobaculum aegyptiacum","na":2,"nb":1,"a":[["TED%3AAF-A0A2Z2HS05-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2Z2HS05-F1-model_v4_TED03"],["TED%3AAF-A0A2Z2HUE3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2Z2HUE3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A745377","Natrarchaeobaculum aegyptiacum"]]},{"id":"NCBITaxon:74557","l":"Thraustotheca clavata","na":2,"nb":1,"a":[["TED%3AAF-A0A1V9ZWZ6-F1-model_v4_TED01","TED novel fold AF-A0A1V9ZWZ6-F1-model_v4_TED01"],["TED%3AAF-A0A1W0A288-F1-model_v4_TED01","TED novel fold AF-A0A1W0A288-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A74557","Thraustotheca clavata"]]},{"id":"NCBITaxon:747682","l":"Mycoplasmopsis alligatoris A21JP2","na":1,"nb":2,"a":[["TED%3AAF-D4XVY7-F1-model_v4_TED01","TED novel fold AF-D4XVY7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A47687","Mycoplasmopsis alligatoris"],["NCBITaxon%3A747682","Mycoplasmopsis alligatoris A21JP2"]]},{"id":"NCBITaxon:747725","l":"Mucor lusitanicus CBS 277.49","na":2,"nb":1,"a":[["TED%3AAF-A0A162R859-F1-model_v4_TED01","TED novel fold AF-A0A162R859-F1-model_v4_TED01"],["TED%3AAF-A0A168MB84-F1-model_v4_TED01","TED novel fold AF-A0A168MB84-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A747725","Mucor lusitanicus CBS 277.49"]]},{"id":"NCBITaxon:748831","l":"Prosthecobacter gellanilyticus","na":2,"nb":1,"a":[["TED%3AAF-A0A512MEJ3-F1-model_v4_TED01","TED novel fold AF-A0A512MEJ3-F1-model_v4_TED01"],["TED%3AAF-A0A512MF51-F1-model_v4_TED03","TED novel fold AF-A0A512MF51-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A748831","Prosthecobacter gellanilyticus"]]},{"id":"NCBITaxon:749537","l":"Escherichia coli MS 115-1","na":2,"nb":1,"a":[["Pfam%3APF18138","Bacterial HORMA domain family 1"],["Pfam%3APF20247","Domain of unknown function (DUF6602)"]],"b":[["NCBITaxon%3A749537","Escherichia coli MS 115-1"]]},{"id":"NCBITaxon:752555","l":"Segatella baroniae B14","na":1,"nb":2,"a":[["TED%3AAF-A0A1H9KJ19-F1-model_v4_TED01","TED novel fold AF-A0A1H9KJ19-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A752555","Segatella baroniae B14"],["NCBITaxon%3A77095","Segatella bryantii"]]},{"id":"NCBITaxon:753642","l":"Escherichia coli NC101","na":2,"nb":1,"a":[["Pfam%3APF28101","Immunity protein CdiI-like"],["Pfam%3APF21726","Family of unknown function (DUF6862)"]],"b":[["NCBITaxon%3A753642","Escherichia coli NC101"]]},{"id":"NCBITaxon:754426","l":"Tenacibaculum sp. SG-28","na":2,"nb":1,"a":[["TED%3AAF-A0A2S7TK03-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2S7TK03-F1-model_v4_TED02"],["TED%3AAF-A0A2S7TJV7-F1-model_v4_TED02","TED novel fold AF-A0A2S7TJV7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A754426","Tenacibaculum sp. SG-28"]]},{"id":"NCBITaxon:755307","l":"Salinigranum rubrum","na":2,"nb":1,"a":[["TED%3AAF-A0A2I8VHD1-F1-model_v4_TED02","TED novel fold AF-A0A2I8VHD1-F1-model_v4_TED02"],["TED%3AAF-A0A2I8VT61-F1-model_v4_TED02","TED novel fold AF-A0A2I8VT61-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A755307","Salinigranum rubrum"]]},{"id":"NCBITaxon:756272","l":"Rubinisphaera brasiliensis DSM 5305","na":1,"nb":2,"a":[["TED%3AAF-F0SH04-F1-model_v4_TED04","TED novel fold AF-F0SH04-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A119","Rubinisphaera brasiliensis"],["NCBITaxon%3A756272","Rubinisphaera brasiliensis DSM 5305"]]},{"id":"NCBITaxon:758847","l":"Leptospira santarosai serovar Shermani str. LT 821","na":1,"nb":2,"a":[["TED%3AAF-A0A097ES00-F1-model_v4_TED01","TED novel fold AF-A0A097ES00-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28183","Leptospira santarosai"],["NCBITaxon%3A758847","Leptospira santarosai serovar Shermani str. LT 821"]]},{"id":"NCBITaxon:760570","l":"Streptococcus parasanguinis ATCC 15912","na":1,"nb":2,"a":[["TED%3AAF-F8DHG8-F1-model_v4_TED02","TED novel fold AF-F8DHG8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1318","Streptococcus parasanguinis"],["NCBITaxon%3A760570","Streptococcus parasanguinis ATCC 15912"]]},{"id":"NCBITaxon:762968","l":"Paraprevotella clara YIT 11840","na":1,"nb":2,"a":[["TED%3AAF-G5SSZ7-F1-model_v4_TED02","TED novel fold AF-G5SSZ7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A454154","Paraprevotella clara"],["NCBITaxon%3A762968","Paraprevotella clara YIT 11840"]]},{"id":"NCBITaxon:763034","l":"Bacteroides fluxus YIT 12057","na":1,"nb":2,"a":[["TED%3AAF-F3PT75-F1-model_v4_TED01","TED novel fold AF-F3PT75-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A626930","Bacteroides fluxus"],["NCBITaxon%3A763034","Bacteroides fluxus YIT 12057"]]},{"id":"NCBITaxon:764102","l":"Saccharomyces cerevisiae FostersB","na":2,"nb":1,"a":[["Pfam%3APF15272","Spindle pole body component BBP1, C-terminal"],["Pfam%3APF11544","Spindle pole body component Spc42p"]],"b":[["NCBITaxon%3A764102","Saccharomyces cerevisiae FostersB"]]},{"id":"NCBITaxon:765868","l":"Phaeosphaeriaceae sp. SRC1lsM3a","na":2,"nb":1,"a":[["TED%3AAF-A0A178B1W7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A178B1W7-F1-model_v4_TED03"],["TED%3AAF-A0A178B9C7-F1-model_v4_TED01","TED novel fold AF-A0A178B9C7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A765868","Phaeosphaeriaceae sp. SRC1lsM3a"]]},{"id":"NCBITaxon:765953","l":"Waddlia chondrophila 2032/99","na":1,"nb":2,"a":[["TED%3AAF-F8LCI1-F1-model_v4_TED03","TED novel fold AF-F8LCI1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A71667","Waddlia chondrophila"],["NCBITaxon%3A765953","Waddlia chondrophila 2032/99"]]},{"id":"NCBITaxon:76728","l":"Wenjunlia vitaminophila","na":1,"nb":2,"a":[["TED%3AAF-A0A0T6LRN4-F1-model_v4_TED01","TED novel fold AF-A0A0T6LRN4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A76728","Wenjunlia vitaminophila"],["NCBITaxon%3A1123322","Wenjunlia vitaminophila DSM 41686"]]},{"id":"NCBITaxon:768066","l":"Halomonas elongata DSM 2581","na":1,"nb":2,"a":[["Pfam%3APF06339","Ectoine synthase"]],"b":[["NCBITaxon%3A2746","Halomonas elongata"],["NCBITaxon%3A768066","Halomonas elongata DSM 2581"]]},{"id":"NCBITaxon:768706","l":"Desulfosporosinus orientis DSM 765","na":1,"nb":2,"a":[["TED%3AAF-G7WI39-F1-model_v4_TED02","TED highly-symmetric fold AF-G7WI39-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1563","Desulfosporosinus orientis"],["NCBITaxon%3A768706","Desulfosporosinus orientis DSM 765"]]},{"id":"NCBITaxon:768710","l":"Desulfosporosinus youngiae DSM 17734","na":1,"nb":2,"a":[["TED%3AAF-H5Y0R4-F1-model_v4_TED01","TED highly-symmetric fold AF-H5Y0R4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A339862","Desulfosporosinus youngiae"],["NCBITaxon%3A768710","Desulfosporosinus youngiae DSM 17734"]]},{"id":"NCBITaxon:768727","l":"Veillonella parvula ACS-068-V-Sch12","na":1,"nb":2,"a":[["TED%3AAF-F5KZP8-F1-model_v4_TED01","TED novel fold AF-F5KZP8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29466","Veillonella parvula"],["NCBITaxon%3A768727","Veillonella parvula ACS-068-V-Sch12"]]},{"id":"NCBITaxon:771875","l":"Fervidobacterium pennivorans DSM 9078","na":1,"nb":2,"a":[["TED%3AAF-H9UA22-F1-model_v4_TED01","TED highly-symmetric fold AF-H9UA22-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A93466","Fervidobacterium pennivorans"],["NCBITaxon%3A771875","Fervidobacterium pennivorans DSM 9078"]]},{"id":"NCBITaxon:78057","l":"Paenibacillus popilliae","na":1,"nb":2,"a":[["Pfam%3APF09131","Bacillus thuringiensis delta-Endotoxin, middle domain"]],"b":[["NCBITaxon%3A78057","Paenibacillus popilliae"],["NCBITaxon%3A1212764","Paenibacillus popilliae ATCC 14706"]]},{"id":"NCBITaxon:78229","l":"Paracidovorax anthurii","na":2,"nb":1,"a":[["TED%3AAF-A0A328ZC73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A328ZC73-F1-model_v4_TED01"],["TED%3AAF-A0A328Z0A2-F1-model_v4_TED01","TED novel fold AF-A0A328Z0A2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A78229","Paracidovorax anthurii"]]},{"id":"NCBITaxon:79269","l":"Desulfurella multipotens","na":1,"nb":2,"a":[["TED%3AAF-A0A1G6RXM9-F1-model_v4_TED02","TED novel fold AF-A0A1G6RXM9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A79269","Desulfurella multipotens"],["NCBITaxon%3A1121470","Desulfurella multipotens DSM 8415"]]},{"id":"NCBITaxon:795797","l":"Halalkalicoccus jeotgali B3","na":1,"nb":2,"a":[["TED%3AAF-D8JCM3-F1-model_v4_TED01","TED highly-symmetric fold AF-D8JCM3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A413810","Halalkalicoccus jeotgali"],["NCBITaxon%3A795797","Halalkalicoccus jeotgali B3"]]},{"id":"NCBITaxon:796944","l":"Oribacterium asaccharolyticum ACB7","na":1,"nb":2,"a":[["TED%3AAF-G9WU86-F1-model_v4_TED05","TED novel fold AF-G9WU86-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1501332","Oribacterium asaccharolyticum"],["NCBITaxon%3A796944","Oribacterium asaccharolyticum ACB7"]]},{"id":"NCBITaxon:80852","l":"Aliivibrio wodanis","na":2,"nb":1,"a":[["TED%3AAF-A0A090IC05-F1-model_v4_TED01","TED novel fold AF-A0A090IC05-F1-model_v4_TED01"],["TED%3AAF-A0A5Q4ZIL3-F1-model_v4_TED01","TED novel fold AF-A0A5Q4ZIL3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A80852","Aliivibrio wodanis"]]},{"id":"NCBITaxon:80854","l":"Moritella viscosa","na":2,"nb":1,"a":[["TED%3AAF-A0A090IBQ5-F1-model_v4_TED01","TED novel fold AF-A0A090IBQ5-F1-model_v4_TED01"],["TED%3AAF-A0A090IF54-F1-model_v4_TED01","TED novel fold AF-A0A090IF54-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A80854","Moritella viscosa"]]},{"id":"NCBITaxon:82380","l":"Microbacterium oxydans","na":1,"nb":2,"a":[["TED%3AAF-A0A4Y4GD74-F1-model_v4_TED02","TED novel fold AF-A0A4Y4GD74-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A82380","Microbacterium oxydans"],["NCBITaxon%3A1255678","Microbacterium oxydans PCA1"]]},{"id":"NCBITaxon:84022","l":"Andreesenella acetica","na":2,"nb":1,"a":[["TED%3AAF-A0A0D8IAM1-F1-model_v4_TED01","TED novel fold AF-A0A0D8IAM1-F1-model_v4_TED01"],["TED%3AAF-A0A0D8IBN9-F1-model_v4_TED02","TED novel fold AF-A0A0D8IBN9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A84022","Andreesenella acetica"]]},{"id":"NCBITaxon:84035","l":"Propionispira arboris","na":1,"nb":2,"a":[["TED%3AAF-A0A1H6Y1Q4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H6Y1Q4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A84035","Propionispira arboris"],["NCBITaxon%3A1123002","Propionispira arboris DSM 2179"]]},{"id":"NCBITaxon:850","l":"Fusobacterium mortiferum","na":1,"nb":2,"a":[["TED%3AAF-A0A414PT75-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A414PT75-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A850","Fusobacterium mortiferum"],["NCBITaxon%3A469616","Fusobacterium mortiferum ATCC 9817"]]},{"id":"NCBITaxon:85336","l":"Rothia nasimurium","na":1,"nb":2,"a":[["proteintraitsmech%3AELIFE109154_EntC","EntC-type catechol biosynthesis isochorismate synthase family"]],"b":[["NCBITaxon%3A85336","Rothia nasimurium"],["NCBITaxon%3A553203","Rothia nasimurium JCVIHMP032"]]},{"id":"NCBITaxon:856","l":"Fusobacterium varium","na":1,"nb":2,"a":[["TED%3AAF-A0A250LZB9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A250LZB9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A856","Fusobacterium varium"],["NCBITaxon%3A469618","Fusobacterium varium ATCC 27725"]]},{"id":"NCBITaxon:85701","l":"Bartonella tribocorum","na":1,"nb":2,"a":[["TED%3AAF-A0A2M6URN9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M6URN9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A85701","Bartonella tribocorum"],["NCBITaxon%3A382640","Bartonella tribocorum CIP 105476"]]},{"id":"NCBITaxon:857087","l":"Methylomonas methanica MC09","na":1,"nb":2,"a":[["TED%3AAF-F9ZY30-F1-model_v4_TED01","TED novel fold AF-F9ZY30-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A421","Methylomonas methanica"],["NCBITaxon%3A857087","Methylomonas methanica MC09"]]},{"id":"NCBITaxon:858215","l":"Thermoanaerobacterium xylanolyticum LX-11","na":1,"nb":2,"a":[["TED%3AAF-F6BJ69-F1-model_v4_TED03","TED highly-symmetric fold AF-F6BJ69-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A29329","Thermoanaerobacterium xylanolyticum"],["NCBITaxon%3A858215","Thermoanaerobacterium xylanolyticum LX-11"]]},{"id":"NCBITaxon:85831","l":"Bacteroides acidifaciens","na":1,"nb":2,"a":[["TED%3AAF-A0A7K3MGB4-F1-model_v4_TED01","TED novel fold AF-A0A7K3MGB4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A85831","Bacteroides acidifaciens"],["NCBITaxon%3A1235814","Bacteroides acidifaciens JCM 10556"]]},{"id":"NCBITaxon:858455","l":"Rhodomicrobium udaipurense JA643","na":1,"nb":2,"a":[["TED%3AAF-A0A037UZG0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A037UZG0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1202716","Rhodomicrobium udaipurense"],["NCBITaxon%3A858455","Rhodomicrobium udaipurense JA643"]]},{"id":"NCBITaxon:858893","l":"Exophiala dermatitidis NIH/UT8656","na":2,"nb":1,"a":[["TED%3AAF-H6BSC2-F1-model_v4_TED01","TED novel fold AF-H6BSC2-F1-model_v4_TED01"],["TED%3AAF-H6BSC3-F1-model_v4_TED01","TED novel fold AF-H6BSC3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A858893","Exophiala dermatitidis NIH/UT8656"]]},{"id":"NCBITaxon:859350","l":"Candidatus Nitrosopumilus salarius BD31","na":2,"nb":1,"a":[["TED%3AAF-I3CZV0-F1-model_v4_TED01","TED novel fold AF-I3CZV0-F1-model_v4_TED01"],["TED%3AAF-I3D3A9-F1-model_v4_TED02","TED novel fold AF-I3D3A9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A859350","Candidatus Nitrosopumilus salarius BD31"]]},{"id":"NCBITaxon:861450","l":"Megasphaera geminata F0357","na":2,"nb":1,"a":[["TED%3AAF-G9YJV4-F1-model_v4_TED01","TED highly-symmetric fold AF-G9YJV4-F1-model_v4_TED01"],["TED%3AAF-G9YJG2-F1-model_v4_TED01","TED novel fold AF-G9YJG2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A861450","Megasphaera geminata F0357"]]},{"id":"NCBITaxon:862517","l":"Peptoniphilus duerdenii ATCC BAA-1640","na":1,"nb":2,"a":[["TED%3AAF-E0NJG4-F1-model_v4_TED01","TED highly-symmetric fold AF-E0NJG4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A507750","Peptoniphilus duerdenii"],["NCBITaxon%3A862517","Peptoniphilus duerdenii ATCC BAA-1640"]]},{"id":"NCBITaxon:86259","l":"Venturia nashicola","na":2,"nb":1,"a":[["TED%3AAF-A0A4Z1NYE5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Z1NYE5-F1-model_v4_TED01"],["TED%3AAF-A0A4Z1NNX9-F1-model_v4_TED02","TED novel fold AF-A0A4Z1NNX9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A86259","Venturia nashicola"]]},{"id":"NCBITaxon:862962","l":"Bacteroides fragilis 638R","na":1,"nb":2,"a":[["Pfam%3APF04301","Pimeloyl-ACP methyl esterase BioG"]],"b":[["NCBITaxon%3A817","Bacteroides fragilis"],["NCBITaxon%3A862962","Bacteroides fragilis 638R"]]},{"id":"NCBITaxon:865937","l":"Gillisia limnaea DSM 15749","na":1,"nb":2,"a":[["Pfam%3APF27061","Bacterial gasdermin-associated protease"]],"b":[["NCBITaxon%3A195907","Gillisia limnaea"],["NCBITaxon%3A865937","Gillisia limnaea DSM 15749"]]},{"id":"NCBITaxon:865938","l":"Weeksella virosa DSM 16922","na":1,"nb":2,"a":[["TED%3AAF-F0P1F3-F1-model_v4_TED01","TED novel fold AF-F0P1F3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1014","Weeksella virosa"],["NCBITaxon%3A865938","Weeksella virosa DSM 16922"]]},{"id":"NCBITaxon:866499","l":"Cloacibacillus evryensis DSM 19522","na":1,"nb":2,"a":[["TED%3AAF-A0A010YSJ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A010YSJ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A508460","Cloacibacillus evryensis"],["NCBITaxon%3A866499","Cloacibacillus evryensis DSM 19522"]]},{"id":"NCBITaxon:866895","l":"Halobacillus halophilus DSM 2266","na":1,"nb":2,"a":[["TED%3AAF-I0JI49-F1-model_v4_TED03","TED highly-symmetric fold AF-I0JI49-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1570","Halobacillus halophilus"],["NCBITaxon%3A866895","Halobacillus halophilus DSM 2266"]]},{"id":"NCBITaxon:867902","l":"Ornithobacterium rhinotracheale DSM 15997","na":1,"nb":2,"a":[["TED%3AAF-I3ZYX7-F1-model_v4_TED02","TED novel fold AF-I3ZYX7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A28251","Ornithobacterium rhinotracheale"],["NCBITaxon%3A867902","Ornithobacterium rhinotracheale DSM 15997"]]},{"id":"NCBITaxon:86804","l":"Ustilago trichophora","na":2,"nb":1,"a":[["TED%3AAF-A0A5C3DST0-F1-model_v4_TED02","TED novel fold AF-A0A5C3DST0-F1-model_v4_TED02"],["TED%3AAF-A0A5C3E4G9-F1-model_v4_TED01","TED novel fold AF-A0A5C3E4G9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A86804","Ustilago trichophora"]]},{"id":"NCBITaxon:86841","l":"Pseudomonas amygdali pv. sesami","na":1,"nb":2,"a":[["TED%3AAF-A0A3M6FLB5-F1-model_v4_TED03","TED novel fold AF-A0A3M6FLB5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A86841","Pseudomonas amygdali pv. sesami"],["NCBITaxon%3A317","Pseudomonas syringae"]]},{"id":"NCBITaxon:869210","l":"Marinithermus hydrothermalis DSM 14884","na":1,"nb":2,"a":[["TED%3AAF-F2NQ34-F1-model_v4_TED01","TED novel fold AF-F2NQ34-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A186192","Marinithermus hydrothermalis"],["NCBITaxon%3A869210","Marinithermus hydrothermalis DSM 14884"]]},{"id":"NCBITaxon:869213","l":"Saccharicrinis fermentans DSM 9555 = JCM 21142","na":1,"nb":2,"a":[["TED%3AAF-W7Y4M8-F1-model_v4_TED02","TED novel fold AF-W7Y4M8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A982","Saccharicrinis fermentans"],["NCBITaxon%3A869213","Saccharicrinis fermentans DSM 9555 = JCM 21142"]]},{"id":"NCBITaxon:870501","l":"Malaciobacter molluscorum LMG 25693","na":1,"nb":2,"a":[["TED%3AAF-A0A2G1DEC9-F1-model_v4_TED01","TED novel fold AF-A0A2G1DEC9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1032072","Malaciobacter molluscorum"],["NCBITaxon%3A870501","Malaciobacter molluscorum LMG 25693"]]},{"id":"NCBITaxon:870730","l":"Ogataea angusta","na":2,"nb":1,"a":[["Pfam%3APF10791","Mitochondrial F1-F0 ATP synthase subunit F of fungi"],["Pfam%3APF05933","Fungal ATP synthase protein 8 (A6L)"]],"b":[["NCBITaxon%3A870730","Ogataea angusta"]]},{"id":"NCBITaxon:871575","l":"Ogataea parapolymorpha DL-1","na":2,"nb":1,"a":[["IDPO%3A0000033","flexible linker"],["TED%3AAF-W1Q7V8-F1-model_v4_TED01","TED novel fold AF-W1Q7V8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A871575","Ogataea parapolymorpha DL-1"]]},{"id":"NCBITaxon:871738","l":"Dehalobacter restrictus DSM 9455","na":1,"nb":2,"a":[["Pfam%3APF10518","TAT (twin-arginine translocation) pathway signal sequence"]],"b":[["NCBITaxon%3A55583","Dehalobacter restrictus"],["NCBITaxon%3A871738","Dehalobacter restrictus DSM 9455"]]},{"id":"NCBITaxon:87229","l":"Botrytis porri","na":2,"nb":1,"a":[["TED%3AAF-A0A4Z1KLQ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Z1KLQ9-F1-model_v4_TED01"],["TED%3AAF-A0A4Z1L2R4-F1-model_v4_TED03","TED novel fold AF-A0A4Z1L2R4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A87229","Botrytis porri"]]},{"id":"NCBITaxon:873533","l":"Hoylesella oralis ATCC 33269","na":1,"nb":2,"a":[["TED%3AAF-E7RTH2-F1-model_v4_TED02","TED highly-symmetric fold AF-E7RTH2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A28134","Hoylesella oralis"],["NCBITaxon%3A873533","Hoylesella oralis ATCC 33269"]]},{"id":"NCBITaxon:875328","l":"Mycolicibacter sinensis","na":1,"nb":2,"a":[["TED%3AAF-A0A1A2EHJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1A2EHJ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1789","Mycobacterium xenopi"],["NCBITaxon%3A875328","Mycolicibacter sinensis"]]},{"id":"NCBITaxon:877406","l":"Lachnospiraceae bacterium NK3A20","na":2,"nb":1,"a":[["TED%3AAF-A0A1H3YE89-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H3YE89-F1-model_v4_TED01"],["TED%3AAF-A0A1H3YMS4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H3YMS4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A877406","Lachnospiraceae bacterium NK3A20"]]},{"id":"NCBITaxon:882378","l":"Mycetohabitans rhizoxinica HKI 454","na":1,"nb":2,"a":[["Pfam%3APF01983","Guanylyl transferase CofC like"]],"b":[["NCBITaxon%3A412963","Mycetohabitans rhizoxinica"],["NCBITaxon%3A882378","Mycetohabitans rhizoxinica HKI 454"]]},{"id":"NCBITaxon:882800","l":"Methylorubrum extorquens DSM 13060","na":1,"nb":2,"a":[["TED%3AAF-H1KCQ0-F1-model_v4_TED01","TED highly-symmetric fold AF-H1KCQ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A408","Methylorubrum extorquens"],["NCBITaxon%3A882800","Methylorubrum extorquens DSM 13060"]]},{"id":"NCBITaxon:883","l":"Nitratidesulfovibrio vulgaris str. 'Miyazaki F'","na":1,"nb":2,"a":[["TED%3AAF-B8DPA3-F1-model_v4_TED01","TED novel fold AF-B8DPA3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A881","Nitratidesulfovibrio vulgaris"],["NCBITaxon%3A883","Nitratidesulfovibrio vulgaris str. 'Miyazaki F'"]]},{"id":"NCBITaxon:883067","l":"Actinotignum schaalii FB123-CNA-2","na":1,"nb":2,"a":[["TED%3AAF-S2VKD3-F1-model_v4_TED01","TED highly-symmetric fold AF-S2VKD3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A59505","Actinotignum schaalii"],["NCBITaxon%3A883067","Actinotignum schaalii FB123-CNA-2"]]},{"id":"NCBITaxon:883069","l":"Gleimia europaea ACS-120-V-Col10b","na":1,"nb":2,"a":[["TED%3AAF-S2VXV4-F1-model_v4_TED01","TED novel fold AF-S2VXV4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A66228","Gleimia europaea"],["NCBITaxon%3A883069","Gleimia europaea ACS-120-V-Col10b"]]},{"id":"NCBITaxon:884107","l":"Schleiferia thermophila","na":1,"nb":2,"a":[["TED%3AAF-A0A368ZV81-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A368ZV81-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A884107","Schleiferia thermophila"],["NCBITaxon%3A1453500","Schleiferia thermophila str. Yellowstone"]]},{"id":"NCBITaxon:885","l":"Desulfovibrio sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A6N8BWZ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8BWZ8-F1-model_v4_TED01"],["TED%3AAF-A0A2E3RAH3-F1-model_v4_TED02","TED novel fold AF-A0A2E3RAH3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A885","Desulfovibrio sp."]]},{"id":"NCBITaxon:886882","l":"Paenibacillus polymyxa SC2","na":2,"nb":1,"a":[["TED%3AAF-E3EJR1-F1-model_v4_TED01","TED highly-symmetric fold AF-E3EJR1-F1-model_v4_TED01"],["TED%3AAF-E3EKS2-F1-model_v4_TED01","TED highly-symmetric fold AF-E3EKS2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A886882","Paenibacillus polymyxa SC2"]]},{"id":"NCBITaxon:88724","l":"Natrinema versiforme","na":1,"nb":2,"a":[["TED%3AAF-A0A4V1FYY6-F1-model_v4_TED02","TED novel fold AF-A0A4V1FYY6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A88724","Natrinema versiforme"],["NCBITaxon%3A1227496","Natrinema versiforme JCM 10478"]]},{"id":"NCBITaxon:888741","l":"Kingella denitrificans ATCC 33394","na":1,"nb":2,"a":[["TED%3AAF-F0F2L2-F1-model_v4_TED01","TED novel fold AF-F0F2L2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A502","Kingella denitrificans"],["NCBITaxon%3A888741","Kingella denitrificans ATCC 33394"]]},{"id":"NCBITaxon:888743","l":"Prevotella multiformis DSM 16608","na":1,"nb":2,"a":[["TED%3AAF-F0F5W8-F1-model_v4_TED02","TED novel fold AF-F0F5W8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A282402","Prevotella multiformis"],["NCBITaxon%3A888743","Prevotella multiformis DSM 16608"]]},{"id":"NCBITaxon:888745","l":"Streptococcus agalactiae ATCC 13813","na":1,"nb":2,"a":[["Pfam%3APF09711","CRISPR-associated protein (Cas_Csn2)"]],"b":[["NCBITaxon%3A1311","Streptococcus agalactiae"],["NCBITaxon%3A888745","Streptococcus agalactiae ATCC 13813"]]},{"id":"NCBITaxon:890399","l":"Candidatus Magnetoglobus multicellularis str. Araruama","na":2,"nb":1,"a":[["TED%3AAF-A0A1V1NSM7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V1NSM7-F1-model_v4_TED02"],["TED%3AAF-A0A1V1P8X9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V1P8X9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A890399","Candidatus Magnetoglobus multicellularis str. Araruama"]]},{"id":"NCBITaxon:89187","l":"Roseovarius nubinhibens ISM","na":1,"nb":2,"a":[["Pfam%3APF12806","Acetyl-CoA dehydrogenase C-terminal like"]],"b":[["NCBITaxon%3A314263","Roseovarius nubinhibens"],["NCBITaxon%3A89187","Roseovarius nubinhibens ISM"]]},{"id":"NCBITaxon:891974","l":"Plautia stali symbiont","na":2,"nb":1,"a":[["TED%3AAF-U3TSJ2-F1-model_v4_TED01","TED highly-symmetric fold AF-U3TSJ2-F1-model_v4_TED01"],["TED%3AAF-U3U2Z5-F1-model_v4_TED02","TED highly-symmetric fold AF-U3U2Z5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A891974","Plautia stali symbiont"]]},{"id":"NCBITaxon:90244","l":"Oligella ureolytica","na":1,"nb":2,"a":[["TED%3AAF-A0A378XF55-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A378XF55-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A90244","Oligella ureolytica"],["NCBITaxon%3A1122619","Oligella ureolytica DSM 18253"]]},{"id":"NCBITaxon:90426","l":"Methanothrix sp.","na":2,"nb":1,"a":[["TED%3AAF-A0A843KAS7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843KAS7-F1-model_v4_TED01"],["TED%3AAF-A0A3N9UN54-F1-model_v4_TED01","TED novel fold AF-A0A3N9UN54-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A90426","Methanothrix sp."]]},{"id":"NCBITaxon:907348","l":"Treponema saccharophilum DSM 2985","na":1,"nb":2,"a":[["TED%3AAF-H7EGY0-F1-model_v4_TED01","TED novel fold AF-H7EGY0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A165","Treponema saccharophilum"],["NCBITaxon%3A907348","Treponema saccharophilum DSM 2985"]]},{"id":"NCBITaxon:908338","l":"Peptoniphilus harei ACS-146-V-Sch2b","na":1,"nb":2,"a":[["TED%3AAF-E4KZA4-F1-model_v4_TED02","TED novel fold AF-E4KZA4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A908338","Peptoniphilus harei ACS-146-V-Sch2b"],["NCBITaxon%3A1971214","Peptoniphilus sp."]]},{"id":"NCBITaxon:910964","l":"Ewingella americana ATCC 33852","na":1,"nb":2,"a":[["Pfam%3APF26324","Type III secretion system effector HopBF1 kinase domain"]],"b":[["NCBITaxon%3A41202","Ewingella americana"],["NCBITaxon%3A910964","Ewingella americana ATCC 33852"]]},{"id":"NCBITaxon:913088","l":"Escherichia coli TW11681","na":2,"nb":1,"a":[["Pfam%3APF21713","Cyclic GMP-AMP synthase, C-terminal domain"],["Pfam%3APF21654","Cyclic GMP-AMP synthase DncV-like, nucleotidyltransferase domain"]],"b":[["NCBITaxon%3A913088","Escherichia coli TW11681"]]},{"id":"NCBITaxon:91360","l":"Desulforhopalus singaporensis","na":1,"nb":2,"a":[["TED%3AAF-A0A1H0QB18-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H0QB18-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A91360","Desulforhopalus singaporensis"],["NCBITaxon%3A1121418","Desulforhopalus singaporensis DSM 12130"]]},{"id":"NCBITaxon:91604","l":"Candidatus Odyssella acanthamoebae","na":2,"nb":1,"a":[["TED%3AAF-A0A077ASK7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A077ASK7-F1-model_v4_TED02"],["TED%3AAF-A0A077AYS2-F1-model_v4_TED01","TED novel fold AF-A0A077AYS2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A91604","Candidatus Odyssella acanthamoebae"]]},{"id":"NCBITaxon:92400","l":"[Mycoplasma] anseris","na":1,"nb":2,"a":[["TED%3AAF-A0A2Z4NCE3-F1-model_v4_TED01","TED novel fold AF-A0A2Z4NCE3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A92400","[Mycoplasma] anseris"],["NCBITaxon%3A1408454","Mycoplasma anseris ATCC 49234"]]},{"id":"NCBITaxon:926556","l":"Echinicola vietnamensis DSM 17526","na":1,"nb":2,"a":[["TED%3AAF-L0FWC9-F1-model_v4_TED01","TED novel fold AF-L0FWC9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A390884","Echinicola vietnamensis"],["NCBITaxon%3A926556","Echinicola vietnamensis DSM 17526"]]},{"id":"NCBITaxon:926562","l":"Owenweeksia hongkongensis DSM 17368","na":1,"nb":2,"a":[["TED%3AAF-G8R7M3-F1-model_v4_TED02","TED highly-symmetric fold AF-G8R7M3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A253245","Owenweeksia hongkongensis"],["NCBITaxon%3A926562","Owenweeksia hongkongensis DSM 17368"]]},{"id":"NCBITaxon:926566","l":"Terriglobus roseus DSM 18391","na":1,"nb":2,"a":[["TED%3AAF-I3ZI83-F1-model_v4_TED01","TED highly-symmetric fold AF-I3ZI83-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A392734","Terriglobus roseus"],["NCBITaxon%3A926566","Terriglobus roseus DSM 18391"]]},{"id":"NCBITaxon:926571","l":"Nitrososphaera viennensis EN76","na":1,"nb":2,"a":[["TED%3AAF-A0A060HRG3-F1-model_v4_TED01","TED novel fold AF-A0A060HRG3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1034015","Nitrososphaera viennensis"],["NCBITaxon%3A926571","Nitrososphaera viennensis EN76"]]},{"id":"NCBITaxon:926690","l":"Haloplanus natans DSM 17983","na":1,"nb":2,"a":[["Pfam%3APF28161","Fusexin 1"]],"b":[["NCBITaxon%3A376171","Haloplanus natans"],["NCBITaxon%3A926690","Haloplanus natans DSM 17983"]]},{"id":"NCBITaxon:930090","l":"Bipolaris oryzae ATCC 44560","na":2,"nb":1,"a":[["TED%3AAF-W6YQ25-F1-model_v4_TED01","TED novel fold AF-W6YQ25-F1-model_v4_TED01"],["TED%3AAF-W6YT83-F1-model_v4_TED01","TED novel fold AF-W6YT83-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A930090","Bipolaris oryzae ATCC 44560"]]},{"id":"NCBITaxon:931626","l":"Acetobacterium woodii DSM 1030","na":1,"nb":2,"a":[["Pfam%3APF00766","Electron transfer flavoprotein FAD-binding domain"]],"b":[["NCBITaxon%3A33952","Acetobacterium woodii"],["NCBITaxon%3A931626","Acetobacterium woodii DSM 1030"]]},{"id":"NCBITaxon:933063","l":"Dichotomicrobium thermohalophilum","na":2,"nb":1,"a":[["TED%3AAF-A0A397Q5H3-F1-model_v4_TED01","TED novel fold AF-A0A397Q5H3-F1-model_v4_TED01"],["TED%3AAF-A0A397Q636-F1-model_v4_TED02","TED novel fold AF-A0A397Q636-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A933063","Dichotomicrobium thermohalophilum"]]},{"id":"NCBITaxon:936594","l":"Lachnoanaerobaculum sp. ICM7","na":2,"nb":1,"a":[["TED%3AAF-J5GJZ1-F1-model_v4_TED01","TED highly-symmetric fold AF-J5GJZ1-F1-model_v4_TED01"],["TED%3AAF-J4TLJ1-F1-model_v4_TED02","TED novel fold AF-J4TLJ1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A936594","Lachnoanaerobaculum sp. ICM7"]]},{"id":"NCBITaxon:941824","l":"Thermobrachium celere DSM 8682","na":1,"nb":2,"a":[["TED%3AAF-R7RR46-F1-model_v4_TED02","TED highly-symmetric fold AF-R7RR46-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A53422","Thermobrachium celere"],["NCBITaxon%3A941824","Thermobrachium celere DSM 8682"]]},{"id":"NCBITaxon:943261","l":"Komagataeibacter kakiaceti","na":1,"nb":2,"a":[["TED%3AAF-A0A840XUK5-F1-model_v4_TED01","TED novel fold AF-A0A840XUK5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A943261","Komagataeibacter kakiaceti"],["NCBITaxon%3A1234672","Komagataeibacter kakiaceti JCM 25156"]]},{"id":"NCBITaxon:945553","l":"Hypholoma sublateritium FD-334 SS-4","na":2,"nb":1,"a":[["TED%3AAF-A0A0D2NQE0-F1-model_v4_TED01","TED novel fold AF-A0A0D2NQE0-F1-model_v4_TED01"],["TED%3AAF-A0A0D2PBZ7-F1-model_v4_TED01","TED novel fold AF-A0A0D2PBZ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A945553","Hypholoma sublateritium FD-334 SS-4"]]},{"id":"NCBITaxon:945713","l":"Ignavibacterium album JCM 16511","na":1,"nb":2,"a":[["Pfam%3APF22369","GLMA-like, second domain"]],"b":[["NCBITaxon%3A591197","Ignavibacterium album"],["NCBITaxon%3A945713","Ignavibacterium album JCM 16511"]]},{"id":"NCBITaxon:94617","l":"Fibrocapsa japonica","na":2,"nb":1,"a":[["TED%3AAF-A0A7S2V0T5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2V0T5-F1-model_v4_TED01"],["TED%3AAF-A0A7S2V6B1-F1-model_v4_TED01","TED novel fold AF-A0A7S2V6B1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A94617","Fibrocapsa japonica"]]},{"id":"NCBITaxon:94626","l":"Brucella tritici","na":2,"nb":1,"a":[["TED%3AAF-A0A7X6FRR6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X6FRR6-F1-model_v4_TED01"],["TED%3AAF-A0A7X6JC90-F1-model_v4_TED01","TED novel fold AF-A0A7X6JC90-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A94626","Brucella tritici"]]},{"id":"NCBITaxon:947919","l":"Desulfosarcina widdelii","na":2,"nb":1,"a":[["TED%3AAF-A0A5K7ZAU3-F1-model_v4_TED01","TED novel fold AF-A0A5K7ZAU3-F1-model_v4_TED01"],["TED%3AAF-A0A5K7ZAZ5-F1-model_v4_TED01","TED novel fold AF-A0A5K7ZAZ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A947919","Desulfosarcina widdelii"]]},{"id":"NCBITaxon:948311","l":"Fusarium proliferatum","na":1,"nb":2,"a":[["TED%3AAF-A0A420SS57-F1-model_v4_TED01","TED novel fold AF-A0A420SS57-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A948311","Fusarium proliferatum"],["NCBITaxon%3A1227346","Fusarium proliferatum ET1"]]},{"id":"NCBITaxon:95485","l":"Burkholderia stabilis","na":1,"nb":2,"a":[["TED%3AAF-A0A4V1PSL6-F1-model_v4_TED02","TED novel fold AF-A0A4V1PSL6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A292","Burkholderia cepacia"],["NCBITaxon%3A95485","Burkholderia stabilis"]]},{"id":"NCBITaxon:96639","l":"Mucochytrium quahogii","na":2,"nb":1,"a":[["TED%3AAF-A0A7S2SPI0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2SPI0-F1-model_v4_TED01"],["TED%3AAF-A0A7S2R8E2-F1-model_v4_TED02","TED novel fold AF-A0A7S2R8E2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A96639","Mucochytrium quahogii"]]},{"id":"NCBITaxon:97481","l":"Phocoenobacter skyensis","na":1,"nb":2,"a":[["TED%3AAF-A0A1H8AD66-F1-model_v4_TED03","TED novel fold AF-A0A1H8AD66-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A97481","Phocoenobacter skyensis"],["NCBITaxon%3A1122937","Phocoenobacter skyensis DSM 24204"]]},{"id":"NCBITaxon:980251","l":"Mariniblastus fucicola","na":2,"nb":1,"a":[["TED%3AAF-A0A5B9PAC4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B9PAC4-F1-model_v4_TED01"],["TED%3AAF-A0A5B9P6V1-F1-model_v4_TED02","TED novel fold AF-A0A5B9P6V1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A980251","Mariniblastus fucicola"]]},{"id":"NCBITaxon:981333","l":"Acinetobacter parvus DSM 16617 = CIP 108168","na":1,"nb":2,"a":[["TED%3AAF-N8Q927-F1-model_v4_TED02","TED novel fold AF-N8Q927-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A134533","Acinetobacter parvus"],["NCBITaxon%3A981333","Acinetobacter parvus DSM 16617 = CIP 108168"]]},{"id":"NCBITaxon:985895","l":"Plenodomus lingam JN3","na":2,"nb":1,"a":[["TED%3AAF-E5A7U7-F1-model_v4_TED01","TED novel fold AF-E5A7U7-F1-model_v4_TED01"],["TED%3AAF-E5A9E1-F1-model_v4_TED03","TED novel fold AF-E5A9E1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A985895","Plenodomus lingam JN3"]]},{"id":"NCBITaxon:989410","l":"Pseudovibrio sp. Ad26","na":2,"nb":1,"a":[["TED%3AAF-A0A165T205-F1-model_v4_TED02","TED novel fold AF-A0A165T205-F1-model_v4_TED02"],["TED%3AAF-A0A165VKR9-F1-model_v4_TED03","TED novel fold AF-A0A165VKR9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A989410","Pseudovibrio sp. Ad26"]]},{"id":"NCBITaxon:99675","l":"Clostridium putrefaciens","na":1,"nb":2,"a":[["TED%3AAF-A0A381J816-F1-model_v4_TED01","TED novel fold AF-A0A381J816-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A99675","Clostridium putrefaciens"],["NCBITaxon%3A1121332","Clostridium putrefaciens DSM 1291"]]},{"id":"NCBITaxon:999552","l":"Leisingera methylohalidivorans DSM 14336","na":1,"nb":2,"a":[["TED%3AAF-V9VZA3-F1-model_v4_TED02","TED novel fold AF-V9VZA3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A133924","Leisingera methylohalidivorans"],["NCBITaxon%3A999552","Leisingera methylohalidivorans DSM 14336"]]},{"id":"NCBITaxon:100","l":"Ancylobacter aquaticus","na":1,"nb":1,"a":[["TED%3AAF-A0A431PQS4-F1-model_v4_TED01","TED novel fold AF-A0A431PQS4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A100","Ancylobacter aquaticus"]]},{"id":"NCBITaxon:100035","l":"Massariosphaeria phaeospora","na":1,"nb":1,"a":[["TED%3AAF-A0A7C8I3N5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C8I3N5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A100035","Massariosphaeria phaeospora"]]},{"id":"NCBITaxon:1001240","l":"Cryobacterium roopkundense","na":1,"nb":1,"a":[["TED%3AAF-A0A099JLC4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A099JLC4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1001240","Cryobacterium roopkundense"]]},{"id":"NCBITaxon:1001590","l":"Leptospira interrogans str. 2006001854","na":1,"nb":1,"a":[["TED%3AAF-M6GW27-F1-model_v4_TED03","TED novel fold AF-M6GW27-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1001590","Leptospira interrogans str. 2006001854"]]},{"id":"NCBITaxon:1002340","l":"Leisingera sp. ANG1","na":1,"nb":1,"a":[["TED%3AAF-A0A0B4EI55-F1-model_v4_TED01","TED novel fold AF-A0A0B4EI55-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1002340","Leisingera sp. ANG1"]]},{"id":"NCBITaxon:1004304","l":"Hydrotalea sandarakina","na":1,"nb":1,"a":[["TED%3AAF-A0A2W7RGM4-F1-model_v4_TED03","TED novel fold AF-A0A2W7RGM4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1004304","Hydrotalea sandarakina"]]},{"id":"NCBITaxon:1007676","l":"Companilactobacillus ginsenosidimutans","na":1,"nb":1,"a":[["TED%3AAF-A0A0H4QHM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0H4QHM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1007676","Companilactobacillus ginsenosidimutans"]]},{"id":"NCBITaxon:1008305","l":"Fervidobacterium thailandense","na":1,"nb":1,"a":[["TED%3AAF-A0A1E3G5H1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E3G5H1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1008305","Fervidobacterium thailandense"]]},{"id":"NCBITaxon:1009714","l":"Pseudomonas aeruginosa PAK","na":1,"nb":1,"a":[["Pfam%3APF05567","PilY1 beta-propeller domain"]],"b":[["NCBITaxon%3A1009714","Pseudomonas aeruginosa PAK"]]},{"id":"NCBITaxon:101028","l":"Fusarium pseudograminearum","na":1,"nb":1,"a":[["TED%3AAF-A0A7S8DXW2-F1-model_v4_TED02","TED novel fold AF-A0A7S8DXW2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A101028","Fusarium pseudograminearum"]]},{"id":"NCBITaxon:1010611","l":"Thalassovita litoralis","na":1,"nb":1,"a":[["TED%3AAF-A0A521FVX5-F1-model_v4_TED02","TED novel fold AF-A0A521FVX5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1010611","Thalassovita litoralis"]]},{"id":"NCBITaxon:101383","l":"Cryomorpha ignava","na":1,"nb":1,"a":[["TED%3AAF-A0A7K3WMI9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7K3WMI9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A101383","Cryomorpha ignava"]]},{"id":"NCBITaxon:1017277","l":"","na":1,"nb":1,"a":[["TED%3AAF-A0A0V8GEY0-F1-model_v4_TED01","TED novel fold AF-A0A0V8GEY0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A296995","Exiguobacterium indicum"]]},{"id":"NCBITaxon:1017319","l":"Rhodococcus sp. Eu-32","na":1,"nb":1,"a":[["TED%3AAF-A0A426QT40-F1-model_v4_TED01","TED novel fold AF-A0A426QT40-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1017319","Rhodococcus sp. Eu-32"]]},{"id":"NCBITaxon:101924","l":"Rhodosorus marinus","na":1,"nb":1,"a":[["TED%3AAF-A0A7S3ENK5-F1-model_v4_TED04","TED novel fold AF-A0A7S3ENK5-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A101924","Rhodosorus marinus"]]},{"id":"NCBITaxon:102897","l":"Parafrankia sp. EUN1f","na":1,"nb":1,"a":[["TED%3AAF-D3D2N4-F1-model_v4_TED01","TED novel fold AF-D3D2N4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A102897","Parafrankia sp. EUN1f"]]},{"id":"NCBITaxon:1029718","l":"Candidatus Arthromitus sp. SFB-mouse-Japan","na":1,"nb":1,"a":[["TED%3AAF-F9VKB6-F1-model_v4_TED01","TED novel fold AF-F9VKB6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1029718","Candidatus Arthromitus sp. SFB-mouse-Japan"]]},{"id":"NCBITaxon:1031537","l":"Bremerella cremea","na":1,"nb":1,"a":[["TED%3AAF-A0A368KQM2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A368KQM2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1031537","Bremerella cremea"]]},{"id":"NCBITaxon:1032","l":"Thiothrix sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A432UXQ4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A432UXQ4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1032","Thiothrix sp."]]},{"id":"NCBITaxon:1032505","l":"Fusobacterium sp. OBRC1","na":1,"nb":1,"a":[["TED%3AAF-X8HXN3-F1-model_v4_TED01","TED highly-symmetric fold AF-X8HXN3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1032505","Fusobacterium sp. OBRC1"]]},{"id":"NCBITaxon:1035309","l":"Ceratocystis fimbriata CBS 114723","na":1,"nb":1,"a":[["TED%3AAF-A0A2C5WW72-F1-model_v4_TED01","TED novel fold AF-A0A2C5WW72-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1035309","Ceratocystis fimbriata CBS 114723"]]},{"id":"NCBITaxon:1035707","l":"Pseudoduganella namucuonensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1I7M3T5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I7M3T5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1035707","Pseudoduganella namucuonensis"]]},{"id":"NCBITaxon:103733","l":"Saccharothrix syringae","na":1,"nb":1,"a":[["TED%3AAF-A0A5Q0GZB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Q0GZB9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A103733","Saccharothrix syringae"]]},{"id":"NCBITaxon:1037377","l":"Chryseobacterium viscerum","na":1,"nb":1,"a":[["TED%3AAF-A0A316W9L1-F1-model_v4_TED02","TED novel fold AF-A0A316W9L1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1037377","Chryseobacterium viscerum"]]},{"id":"NCBITaxon:1038014","l":"Aquimarina amphilecti","na":1,"nb":1,"a":[["TED%3AAF-A0A1H7GXR7-F1-model_v4_TED01","TED novel fold AF-A0A1H7GXR7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1038014","Aquimarina amphilecti"]]},{"id":"NCBITaxon:103808","l":"Rhodococcus sp. AD45","na":1,"nb":1,"a":[["Pfam%3APF17172","Glutathione S-transferase N-terminal domain"]],"b":[["NCBITaxon%3A103808","Rhodococcus sp. AD45"]]},{"id":"NCBITaxon:103836","l":"Thermopolyspora flexuosa","na":1,"nb":1,"a":[["TED%3AAF-A0A543J0S6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A543J0S6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A103836","Thermopolyspora flexuosa"]]},{"id":"NCBITaxon:103838","l":"Nonomuraea turkmeniaca","na":1,"nb":1,"a":[["TED%3AAF-A0A5S4FRG4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5S4FRG4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A103838","Nonomuraea turkmeniaca"]]},{"id":"NCBITaxon:1038845","l":"Flavobacterium rakeshii","na":1,"nb":1,"a":[["TED%3AAF-A0A6N8H854-F1-model_v4_TED02","TED novel fold AF-A0A6N8H854-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1038845","Flavobacterium rakeshii"]]},{"id":"NCBITaxon:104027","l":"Arthrobacter sp. Q36","na":1,"nb":1,"a":[["Pfam%3APF11941","Domain of unknown function (DUF3459)"]],"b":[["NCBITaxon%3A104027","Arthrobacter sp. Q36"]]},{"id":"NCBITaxon:1042","l":"Erythrobacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A6G9N8S4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6G9N8S4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1042","Erythrobacter sp."]]},{"id":"NCBITaxon:104205","l":"Streptomonospora salina","na":1,"nb":1,"a":[["TED%3AAF-A0A841ECK8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841ECK8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A104205","Streptomonospora salina"]]},{"id":"NCBITaxon:1042156","l":"Clostridium sp. SY8519","na":1,"nb":1,"a":[["TED%3AAF-F7V550-F1-model_v4_TED06","TED highly-symmetric fold AF-F7V550-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A1042156","Clostridium sp. SY8519"]]},{"id":"NCBITaxon:104268","l":"Tenacibaculum mesophilum","na":1,"nb":1,"a":[["TED%3AAF-A0A1M5HMT5-F1-model_v4_TED01","TED novel fold AF-A0A1M5HMT5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A104268","Tenacibaculum mesophilum"]]},{"id":"NCBITaxon:1043002","l":"Aureobasidium pullulans EXF-150","na":1,"nb":1,"a":[["TED%3AAF-A0A074XMY3-F1-model_v4_TED02","TED novel fold AF-A0A074XMY3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1043002","Aureobasidium pullulans EXF-150"]]},{"id":"NCBITaxon:104605","l":"Sphingomonas sp. Ant20","na":1,"nb":1,"a":[["TED%3AAF-A0A0A6F241-F1-model_v4_TED03","TED novel fold AF-A0A0A6F241-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A104605","Sphingomonas sp. Ant20"]]},{"id":"NCBITaxon:104663","l":"Chitinophaga filiformis","na":1,"nb":1,"a":[["TED%3AAF-A0A1G7RSD9-F1-model_v4_TED01","TED novel fold AF-A0A1G7RSD9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A104663","Chitinophaga filiformis"]]},{"id":"NCBITaxon:1048394","l":"Compostimonas suwonensis","na":1,"nb":1,"a":[["TED%3AAF-A0A2M9BCH6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2M9BCH6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1048394","Compostimonas suwonensis"]]},{"id":"NCBITaxon:1048396","l":"Halopenitus persicus","na":1,"nb":1,"a":[["TED%3AAF-A0A1H3M4L7-F1-model_v4_TED01","TED novel fold AF-A0A1H3M4L7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1048396","Halopenitus persicus"]]},{"id":"NCBITaxon:1048519","l":"Viridothelium virens","na":1,"nb":1,"a":[["Pfam%3APF28380","Sesquiterpene cyclase astC-like C-terminal domain"]],"b":[["NCBITaxon%3A1048519","Viridothelium virens"]]},{"id":"NCBITaxon:1048834","l":"Alicyclobacillus acidocaldarius subsp. acidocaldarius Tc-4-1","na":1,"nb":1,"a":[["TED%3AAF-F8ICG4-F1-model_v4_TED01","TED novel fold AF-F8ICG4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1048834","Alicyclobacillus acidocaldarius subsp. acidocaldarius Tc-4-1"]]},{"id":"NCBITaxon:1049985","l":"Leptospira santarosai str. ZUN179","na":1,"nb":1,"a":[["TED%3AAF-M6UTI1-F1-model_v4_TED01","TED highly-symmetric fold AF-M6UTI1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1049985","Leptospira santarosai str. ZUN179"]]},{"id":"NCBITaxon:1050222","l":"Paenibacillus sp. Aloe-11","na":1,"nb":1,"a":[["TED%3AAF-H6CRM8-F1-model_v4_TED02","TED highly-symmetric fold AF-H6CRM8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1050222","Paenibacillus sp. Aloe-11"]]},{"id":"NCBITaxon:1050624","l":"Synechococcus sp. A15-127","na":1,"nb":1,"a":[["TED%3AAF-A0A7G8GN66-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G8GN66-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1050624","Synechococcus sp. A15-127"]]},{"id":"NCBITaxon:1051531","l":"Saccharothrix tamanrassetensis","na":1,"nb":1,"a":[["TED%3AAF-A0A841CPC6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841CPC6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1051531","Saccharothrix tamanrassetensis"]]},{"id":"NCBITaxon:1051890","l":"Terfezia boudieri ATCC MYA-4762","na":1,"nb":1,"a":[["TED%3AAF-A0A3N4M0H0-F1-model_v4_TED01","TED novel fold AF-A0A3N4M0H0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1051890","Terfezia boudieri ATCC MYA-4762"]]},{"id":"NCBITaxon:1052260","l":"Klenkia soli","na":1,"nb":1,"a":[["TED%3AAF-A0A1H0TFA4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H0TFA4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1052260","Klenkia soli"]]},{"id":"NCBITaxon:1053167","l":"Bacillus cereus BAG1O-1","na":1,"nb":1,"a":[["TED%3AAF-R8HSP0-F1-model_v4_TED01","TED highly-symmetric fold AF-R8HSP0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1053167","Bacillus cereus BAG1O-1"]]},{"id":"NCBITaxon:1053222","l":"Bacillus cereus MSX-D12","na":1,"nb":1,"a":[["TED%3AAF-J8G3X2-F1-model_v4_TED01","TED highly-symmetric fold AF-J8G3X2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1053222","Bacillus cereus MSX-D12"]]},{"id":"NCBITaxon:1053225","l":"Bacillus cereus VD045","na":1,"nb":1,"a":[["Pfam%3APF13175","AAA ATPase domain"]],"b":[["NCBITaxon%3A1053225","Bacillus cereus VD045"]]},{"id":"NCBITaxon:1054033","l":"Arcobacter venerupis","na":1,"nb":1,"a":[["TED%3AAF-A0A443TV84-F1-model_v4_TED01","TED novel fold AF-A0A443TV84-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1054033","Arcobacter venerupis"]]},{"id":"NCBITaxon:1054202","l":"Rhodobacter viridis","na":1,"nb":1,"a":[["TED%3AAF-A0A318TZ12-F1-model_v4_TED01","TED novel fold AF-A0A318TZ12-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1054202","Rhodobacter viridis"]]},{"id":"NCBITaxon:1054217","l":"Thermoplasmatales archaeon BRNA1","na":1,"nb":1,"a":[["TED%3AAF-M4YJR5-F1-model_v4_TED01","TED highly-symmetric fold AF-M4YJR5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1054217","Thermoplasmatales archaeon BRNA1"]]},{"id":"NCBITaxon:1054996","l":"Roseovarius marisflavi","na":1,"nb":1,"a":[["TED%3AAF-A0A1M7BRV4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M7BRV4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1054996","Roseovarius marisflavi"]]},{"id":"NCBITaxon:1055723","l":"Muricauda antarctica","na":1,"nb":1,"a":[["TED%3AAF-A0A1M6XG01-F1-model_v4_TED01","TED novel fold AF-A0A1M6XG01-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1005926","Flagellimonas taeanensis"]]},{"id":"NCBITaxon:1056511","l":"Photobacterium marinum","na":1,"nb":1,"a":[["TED%3AAF-L8JAE3-F1-model_v4_TED01","TED novel fold AF-L8JAE3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1056511","Photobacterium marinum"]]},{"id":"NCBITaxon:105696","l":"Epicoccum nigrum","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y2LQ80-F1-model_v4_TED02","TED novel fold AF-A0A1Y2LQ80-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A105696","Epicoccum nigrum"]]},{"id":"NCBITaxon:1058","l":"Thiocapsa roseopersicina","na":1,"nb":1,"a":[["Pfam%3APF27123","Carotenoid hydratase CrtC"]],"b":[["NCBITaxon%3A1058","Thiocapsa roseopersicina"]]},{"id":"NCBITaxon:106370","l":"Frankia casuarinae","na":1,"nb":1,"a":[["Pfam%3APF14403","Circularly permuted ATP-grasp type 2"]],"b":[["NCBITaxon%3A106370","Frankia casuarinae"]]},{"id":"NCBITaxon:1069642","l":"Bdellovibrio bacteriovorus str. Tiberius","na":1,"nb":1,"a":[["TED%3AAF-K7ZFZ4-F1-model_v4_TED02","TED highly-symmetric fold AF-K7ZFZ4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1069642","Bdellovibrio bacteriovorus str. Tiberius"]]},{"id":"NCBITaxon:1069985","l":"Pedobacter kyungheensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0C1FTG1-F1-model_v4_TED01","TED novel fold AF-A0A0C1FTG1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1069985","Pedobacter kyungheensis"]]},{"id":"NCBITaxon:1071072","l":"Bacillus sp. NSP2.1","na":1,"nb":1,"a":[["TED%3AAF-A0A6I7FTV0-F1-model_v4_TED01","TED novel fold AF-A0A6I7FTV0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1071072","Bacillus sp. NSP2.1"]]},{"id":"NCBITaxon:1071078","l":"Bacillus sp. NSP9.1","na":1,"nb":1,"a":[["TED%3AAF-A0A6I7F721-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I7F721-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1071078","Bacillus sp. NSP9.1"]]},{"id":"NCBITaxon:1071381","l":"Tetrapisispora phaffii CBS 4417","na":1,"nb":1,"a":[["TED%3AAF-G8C093-F1-model_v4_TED01","TED novel fold AF-G8C093-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1071381","Tetrapisispora phaffii CBS 4417"]]},{"id":"NCBITaxon:1075091","l":"Clostridium sporogenes PA 3679","na":1,"nb":1,"a":[["TED%3AAF-A0A7U9C9C0-F1-model_v4_TED01","TED novel fold AF-A0A7U9C9C0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1075091","Clostridium sporogenes PA 3679"]]},{"id":"NCBITaxon:1076124","l":"Phytohabitans flavus","na":1,"nb":1,"a":[["TED%3AAF-A0A6F8Y916-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A6F8Y916-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1076124","Phytohabitans flavus"]]},{"id":"NCBITaxon:1076397","l":"Streptomyces sp. CAI 127","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y6LSI4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y6LSI4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1076397","Streptomyces sp. CAI 127"]]},{"id":"NCBITaxon:1076937","l":"Fontimonas thermophila","na":1,"nb":1,"a":[["TED%3AAF-A0A1I2KE35-F1-model_v4_TED01","TED novel fold AF-A0A1I2KE35-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1076937","Fontimonas thermophila"]]},{"id":"NCBITaxon:1077255","l":"Agitococcus lubricus","na":1,"nb":1,"a":[["TED%3AAF-A0A2T5IPV5-F1-model_v4_TED01","TED novel fold AF-A0A2T5IPV5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1077255","Agitococcus lubricus"]]},{"id":"NCBITaxon:1078016","l":"Rhodococcus erythropolis XP","na":1,"nb":1,"a":[["Pfam%3APF08028","Acyl-CoA dehydrogenase, C-terminal domain"]],"b":[["NCBITaxon%3A1078016","Rhodococcus erythropolis XP"]]},{"id":"NCBITaxon:1078050","l":"Seleniivibrio woodruffii","na":1,"nb":1,"a":[["TED%3AAF-A0A4R1KEH0-F1-model_v4_TED02","TED novel fold AF-A0A4R1KEH0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1078050","Seleniivibrio woodruffii"]]},{"id":"NCBITaxon:1078087","l":"Parabacteroides sp. HGS0025","na":1,"nb":1,"a":[["TED%3AAF-A0A0F5J503-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F5J503-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1078087","Parabacteroides sp. HGS0025"]]},{"id":"NCBITaxon:1080225","l":"Flagellimonas meridianipacifica","na":1,"nb":1,"a":[["TED%3AAF-A0A2T0MH98-F1-model_v4_TED02","TED novel fold AF-A0A2T0MH98-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1080225","Flagellimonas meridianipacifica"]]},{"id":"NCBITaxon:1081091","l":"Amycolatopsis balhimycina DSM 5908","na":1,"nb":1,"a":[["TED%3AAF-A0A428WRS4-F1-model_v4_TED02","TED novel fold AF-A0A428WRS4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1081091","Amycolatopsis balhimycina DSM 5908"]]},{"id":"NCBITaxon:1081671","l":"Enterospora canceri","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y1S5B2-F1-model_v4_TED01","TED novel fold AF-A0A1Y1S5B2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1081671","Enterospora canceri"]]},{"id":"NCBITaxon:1081904","l":"Hoylesella pleuritidis F0068","na":1,"nb":1,"a":[["TED%3AAF-U2MVK7-F1-model_v4_TED02","TED novel fold AF-U2MVK7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1081904","Hoylesella pleuritidis F0068"]]},{"id":"NCBITaxon:1085538","l":"Leptospira interrogans serovar Bataviae str. HAI135","na":1,"nb":1,"a":[["TED%3AAF-M6TC60-F1-model_v4_TED05","TED novel fold AF-M6TC60-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1085538","Leptospira interrogans serovar Bataviae str. HAI135"]]},{"id":"NCBITaxon:1086011","l":"Flavobacterium frigoris PS1","na":1,"nb":1,"a":[["Pfam%3APF11999","Ice-binding-like"]],"b":[["NCBITaxon%3A1086011","Flavobacterium frigoris PS1"]]},{"id":"NCBITaxon:1093900","l":"Thyridium curvatum","na":1,"nb":1,"a":[["TED%3AAF-A0A507BNS0-F1-model_v4_TED02","TED novel fold AF-A0A507BNS0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1093900","Thyridium curvatum"]]},{"id":"NCBITaxon:1095","l":"Chlorobium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A533TQV7-F1-model_v4_TED01","TED novel fold AF-A0A533TQV7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1095","Chlorobium sp."]]},{"id":"NCBITaxon:1095465","l":"Bondarzewia mesenterica","na":1,"nb":1,"a":[["TED%3AAF-A0A4S4LKR0-F1-model_v4_TED01","TED novel fold AF-A0A4S4LKR0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1095465","Bondarzewia mesenterica"]]},{"id":"NCBITaxon:1096246","l":"Hungatella effluvii","na":1,"nb":1,"a":[["TED%3AAF-A0A2V3YBX4-F1-model_v4_TED02","TED novel fold AF-A0A2V3YBX4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1096246","Hungatella effluvii"]]},{"id":"NCBITaxon:1096341","l":"Fonticella tunisiensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4V3ETC5-F1-model_v4_TED01","TED novel fold AF-A0A4V3ETC5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1096341","Fonticella tunisiensis"]]},{"id":"NCBITaxon:1100824","l":"Streptomyces sp. SceaMP-e96","na":1,"nb":1,"a":[["TED%3AAF-A0A1C6PTM6-F1-model_v4_TED01","TED novel fold AF-A0A1C6PTM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1100824","Streptomyces sp. SceaMP-e96"]]},{"id":"NCBITaxon:1107881","l":"Sinorhizobium meliloti CCNWSX0020","na":1,"nb":1,"a":[["TED%3AAF-H0FZ04-F1-model_v4_TED02","TED highly-symmetric fold AF-H0FZ04-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1107881","Sinorhizobium meliloti CCNWSX0020"]]},{"id":"NCBITaxon:1108595","l":"Chromobacterium vaccinii","na":1,"nb":1,"a":[["TED%3AAF-A0A2L2B8V3-F1-model_v4_TED02","TED novel fold AF-A0A2L2B8V3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1108595","Chromobacterium vaccinii"]]},{"id":"NCBITaxon:1110502","l":"Tistrella mobilis KA081020-065","na":1,"nb":1,"a":[["TED%3AAF-I3TTD1-F1-model_v4_TED03","TED novel fold AF-I3TTD1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1110502","Tistrella mobilis KA081020-065"]]},{"id":"NCBITaxon:1111120","l":"Acidaminococcus sp. BV3L6","na":1,"nb":1,"a":[["Pfam%3APF21918","CRISPR-associated endonuclease Cpf1 REC2 domain"]],"b":[["NCBITaxon%3A1111120","Acidaminococcus sp. BV3L6"]]},{"id":"NCBITaxon:1111454","l":"Megasphaera vaginalis (ex Srinivasan et al. 2021)","na":1,"nb":1,"a":[["TED%3AAF-U7UHK7-F1-model_v4_TED01","TED novel fold AF-U7UHK7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1111454","Megasphaera vaginalis (ex Srinivasan et al. 2021)"]]},{"id":"NCBITaxon:1113587","l":"Enterococcus sp. NBRC 3427","na":1,"nb":1,"a":[["TED%3AAF-A0A4Y3JKX5-F1-model_v4_TED01","TED novel fold AF-A0A4Y3JKX5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1113587","Enterococcus sp. NBRC 3427"]]},{"id":"NCBITaxon:1113929","l":"Arenibacter sp. NBRC 103722","na":1,"nb":1,"a":[["TED%3AAF-A0A2I9DRB6-F1-model_v4_TED03","TED novel fold AF-A0A2I9DRB6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1113929","Arenibacter sp. NBRC 103722"]]},{"id":"NCBITaxon:1114970","l":"Pseudomonas ogarae","na":1,"nb":1,"a":[["Pfam%3APF03869","Arc-like DNA binding domain"]],"b":[["NCBITaxon%3A1114970","Pseudomonas ogarae"]]},{"id":"NCBITaxon:111770","l":"Thiothrix fructosivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A8B0SKG2-F1-model_v4_TED02","TED novel fold AF-A0A8B0SKG2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A111770","Thiothrix fructosivorans"]]},{"id":"NCBITaxon:1117987","l":"Paenibacillus sp. 598K","na":1,"nb":1,"a":[["TED%3AAF-A0A401HXD4-F1-model_v4_TED02","TED novel fold AF-A0A401HXD4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1117987","Paenibacillus sp. 598K"]]},{"id":"NCBITaxon:1118154","l":"Brevibacillus laterosporus GI-9","na":1,"nb":1,"a":[["TED%3AAF-H0U9B3-F1-model_v4_TED02","TED highly-symmetric fold AF-H0U9B3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1118154","Brevibacillus laterosporus GI-9"]]},{"id":"NCBITaxon:1118202","l":"Cruoricaptor ignavus","na":1,"nb":1,"a":[["TED%3AAF-A0A1M6G8N4-F1-model_v4_TED01","TED novel fold AF-A0A1M6G8N4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1118202","Cruoricaptor ignavus"]]},{"id":"NCBITaxon:1119533","l":"Marinobacter sp. P4B1","na":1,"nb":1,"a":[["TED%3AAF-A0A0T6W6C4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0T6W6C4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1119533","Marinobacter sp. P4B1"]]},{"id":"NCBITaxon:1120658","l":"Aquamicrobium sp. LC103","na":1,"nb":1,"a":[["TED%3AAF-A0A4U6CBC2-F1-model_v4_TED01","TED novel fold AF-A0A4U6CBC2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1120658","Aquamicrobium sp. LC103"]]},{"id":"NCBITaxon:1123867","l":"SAR86 cluster bacterium SAR86B","na":1,"nb":1,"a":[["TED%3AAF-J5KHP8-F1-model_v4_TED02","TED novel fold AF-J5KHP8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1123867","SAR86 cluster bacterium SAR86B"]]},{"id":"NCBITaxon:112413","l":"Amycolatopsis rubida","na":1,"nb":1,"a":[["TED%3AAF-A0A1I5EMX3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5EMX3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A112413","Amycolatopsis rubida"]]},{"id":"NCBITaxon:1124188","l":"Flavobacterium fontis","na":1,"nb":1,"a":[["TED%3AAF-A0A1M4WE81-F1-model_v4_TED01","TED novel fold AF-A0A1M4WE81-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1124188","Flavobacterium fontis"]]},{"id":"NCBITaxon:1124743","l":"Kribbella soli","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q7WU76-F1-model_v4_TED01","TED novel fold AF-A0A4Q7WU76-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1124743","Kribbella soli"]]},{"id":"NCBITaxon:1125712","l":"Olsenella profusa F0195","na":1,"nb":1,"a":[["TED%3AAF-U2TWC0-F1-model_v4_TED02","TED novel fold AF-U2TWC0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1125712","Olsenella profusa F0195"]]},{"id":"NCBITaxon:1125723","l":"Porphyromonas sp. oral taxon 279 str. F0450","na":1,"nb":1,"a":[["TED%3AAF-J5VS35-F1-model_v4_TED02","TED novel fold AF-J5VS35-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1125723","Porphyromonas sp. oral taxon 279 str. F0450"]]},{"id":"NCBITaxon:1125876","l":"Halpernia frigidisoli","na":1,"nb":1,"a":[["TED%3AAF-A0A1I3H4T1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I3H4T1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1125876","Halpernia frigidisoli"]]},{"id":"NCBITaxon:1127134","l":"Nocardia cyriacigeorgica GUH-2","na":1,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_SalSyn","Metallophore-associated bifunctional salicylate synthase family"]],"b":[["NCBITaxon%3A1127134","Nocardia cyriacigeorgica GUH-2"]]},{"id":"NCBITaxon:1127692","l":"Capnocytophaga sp. oral taxon 332 str. F0381","na":1,"nb":1,"a":[["TED%3AAF-L1P1Z3-F1-model_v4_TED01","TED highly-symmetric fold AF-L1P1Z3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1127692","Capnocytophaga sp. oral taxon 332 str. F0381"]]},{"id":"NCBITaxon:1128331","l":"Sinorhizobium fredii CCBAU 45436","na":1,"nb":1,"a":[["TED%3AAF-A0A2U8G1E2-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A2U8G1E2-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1128331","Sinorhizobium fredii CCBAU 45436"]]},{"id":"NCBITaxon:1128664","l":"Amycolatopsis cihanbeyliensis","na":1,"nb":1,"a":[["TED%3AAF-A0A542DPL2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A542DPL2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1128664","Amycolatopsis cihanbeyliensis"]]},{"id":"NCBITaxon:1128677","l":"Saccharomonospora amisosensis","na":1,"nb":1,"a":[["TED%3AAF-A0A7X5ULP8-F1-model_v4_TED04","TED novel fold AF-A0A7X5ULP8-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1128677","Saccharomonospora amisosensis"]]},{"id":"NCBITaxon:1128680","l":"Streptomyces coryli","na":1,"nb":1,"a":[["TED%3AAF-A0A6G4UEJ6-F1-model_v4_TED01","TED novel fold AF-A0A6G4UEJ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1128680","Streptomyces coryli"]]},{"id":"NCBITaxon:113355","l":"Geminocystis herdmanii PCC 6308","na":1,"nb":1,"a":[["Pfam%3APF18921","Cyanophycin synthase-like N-terminal domain"]],"b":[["NCBITaxon%3A113355","Geminocystis herdmanii PCC 6308"]]},{"id":"NCBITaxon:1133849","l":"Nocardia brasiliensis ATCC 700358","na":1,"nb":1,"a":[["TED%3AAF-K0ES07-F1-model_v4_TED01","TED novel fold AF-K0ES07-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1133849","Nocardia brasiliensis ATCC 700358"]]},{"id":"NCBITaxon:1134406","l":"Ornatilinea apprima","na":1,"nb":1,"a":[["TED%3AAF-A0A0P6XBK5-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A0P6XBK5-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1134406","Ornatilinea apprima"]]},{"id":"NCBITaxon:1134802","l":"Enterococcus faecium TX1337RF","na":1,"nb":1,"a":[["TED%3AAF-J8W7A1-F1-model_v4_TED01","TED highly-symmetric fold AF-J8W7A1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1134802","Enterococcus faecium TX1337RF"]]},{"id":"NCBITaxon:113574","l":"Hyphomicrobium sp. GJ21","na":1,"nb":1,"a":[["TED%3AAF-A0A218PUP1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A218PUP1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A113574","Hyphomicrobium sp. GJ21"]]},{"id":"NCBITaxon:1135998","l":"uncultured Craurococcus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A6J4HXK8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6J4HXK8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1135998","uncultured Craurococcus sp."]]},{"id":"NCBITaxon:1136231","l":"Lodderomyces orthopsilosis Co 90-125","na":1,"nb":1,"a":[["TED%3AAF-H8X3X7-F1-model_v4_TED02","TED novel fold AF-H8X3X7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1136231","Lodderomyces orthopsilosis Co 90-125"]]},{"id":"NCBITaxon:1137095","l":"Scytonema sp. HK-05","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z4IXU0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Z4IXU0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1137095","Scytonema sp. HK-05"]]},{"id":"NCBITaxon:1138189","l":"Rhizobium bangladeshense","na":1,"nb":1,"a":[["TED%3AAF-A0A8A3LGY7-F1-model_v4_TED01","TED novel fold AF-A0A8A3LGY7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1138189","Rhizobium bangladeshense"]]},{"id":"NCBITaxon:1138383","l":"Mycobacterium paraintracellulare","na":1,"nb":1,"a":[["TED%3AAF-A0A7I7TSN1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7I7TSN1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1138383","Mycobacterium paraintracellulare"]]},{"id":"NCBITaxon:1141878","l":"Deinococcus metalli","na":1,"nb":1,"a":[["TED%3AAF-A0A7W8KJA7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W8KJA7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1141878","Deinococcus metalli"]]},{"id":"NCBITaxon:1141890","l":"Sphingomonas guangdongensis","na":1,"nb":1,"a":[["TED%3AAF-A0A285R2C6-F1-model_v4_TED02","TED novel fold AF-A0A285R2C6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1141890","Sphingomonas guangdongensis"]]},{"id":"NCBITaxon:1144311","l":"Brevibacillus sp. CF112","na":1,"nb":1,"a":[["TED%3AAF-J2H7A9-F1-model_v4_TED02","TED highly-symmetric fold AF-J2H7A9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1144311","Brevibacillus sp. CF112"]]},{"id":"NCBITaxon:1144312","l":"Rhizobium sp. CF122","na":1,"nb":1,"a":[["TED%3AAF-J2IX71-F1-model_v4_TED01","TED novel fold AF-J2IX71-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1144312","Rhizobium sp. CF122"]]},{"id":"NCBITaxon:1144321","l":"Pseudomonas sp. GM102","na":1,"nb":1,"a":[["TED%3AAF-J3EAD0-F1-model_v4_TED02","TED novel fold AF-J3EAD0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1144321","Pseudomonas sp. GM102"]]},{"id":"NCBITaxon:1144338","l":"Pseudomonas sp. GM79","na":1,"nb":1,"a":[["TED%3AAF-J2WCT1-F1-model_v4_TED02","TED highly-symmetric fold AF-J2WCT1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1144338","Pseudomonas sp. GM79"]]},{"id":"NCBITaxon:1144618","l":"Allonocardiopsis opalescens","na":1,"nb":1,"a":[["TED%3AAF-A0A2T0QE02-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T0QE02-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1144618","Allonocardiopsis opalescens"]]},{"id":"NCBITaxon:1144672","l":"Acinetobacter sp. CIP 56.2","na":1,"nb":1,"a":[["TED%3AAF-N8WE79-F1-model_v4_TED01","TED novel fold AF-N8WE79-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A472","Acinetobacter sp."]]},{"id":"NCBITaxon:114527","l":"Mogibacterium diversum","na":1,"nb":1,"a":[["TED%3AAF-A0A2S0L5I6-F1-model_v4_TED02","TED novel fold AF-A0A2S0L5I6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A114527","Mogibacterium diversum"]]},{"id":"NCBITaxon:114615","l":"Bradyrhizobium sp. ORS 278","na":1,"nb":1,"a":[["Pfam%3APF10073","GapR-like, DNA-binding domain"]],"b":[["NCBITaxon%3A114615","Bradyrhizobium sp. ORS 278"]]},{"id":"NCBITaxon:114619","l":"Rickettsia sp. IRS3","na":1,"nb":1,"a":[["TED%3AAF-Q9LAF1-F1-model_v4_TED02","TED highly-symmetric fold AF-Q9LAF1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A114619","Rickettsia sp. IRS3"]]},{"id":"NCBITaxon:114630","l":"Bacillus sp. NEB-606","na":1,"nb":1,"a":[["PROSITE%3APS00093","N-4 cytosine-specific DNA methylases signature"]],"b":[["NCBITaxon%3A114630","Bacillus sp. NEB-606"]]},{"id":"NCBITaxon:114742","l":"Pythium insidiosum","na":1,"nb":1,"a":[["TED%3AAF-A0A2D4C934-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D4C934-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A114742","Pythium insidiosum"]]},{"id":"NCBITaxon:1150368","l":"Sinomicrobium oceani","na":1,"nb":1,"a":[["TED%3AAF-A0A1K1M5D1-F1-model_v4_TED01","TED novel fold AF-A0A1K1M5D1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1150368","Sinomicrobium oceani"]]},{"id":"NCBITaxon:1150389","l":"Flavobacteriaceae bacterium UJ101","na":1,"nb":1,"a":[["TED%3AAF-A0A1J0LPF8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1J0LPF8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1150389","Flavobacteriaceae bacterium UJ101"]]},{"id":"NCBITaxon:1151187","l":"Enterococcus faecalis EnGen0062","na":1,"nb":1,"a":[["Pfam%3APF26305","cGAS/DncV-like nucleotidyltransferase C-terminal helical domain"]],"b":[["NCBITaxon%3A1151187","Enterococcus faecalis EnGen0062"]]},{"id":"NCBITaxon:1151252","l":"Clostridioides difficile CD3","na":1,"nb":1,"a":[["Pfam%3APF12641","Flavodoxin domain"]],"b":[["NCBITaxon%3A1151252","Clostridioides difficile CD3"]]},{"id":"NCBITaxon:1151292","l":"Clostridioides difficile CD160","na":1,"nb":1,"a":[["TED%3AAF-T3DT05-F1-model_v4_TED01","TED highly-symmetric fold AF-T3DT05-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1151292","Clostridioides difficile CD160"]]},{"id":"NCBITaxon:1156417","l":"Caloranaerobacter azorensis H53214","na":1,"nb":1,"a":[["TED%3AAF-A0A096CTK5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A096CTK5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1156417","Caloranaerobacter azorensis H53214"]]},{"id":"NCBITaxon:115808","l":"Bradyrhizobium sp. ORS 285","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y6KEH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y6KEH3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A115808","Bradyrhizobium sp. ORS 285"]]},{"id":"NCBITaxon:1158606","l":"Enterococcus asini ATCC 700915","na":1,"nb":1,"a":[["TED%3AAF-R2PXZ3-F1-model_v4_TED01","TED novel fold AF-R2PXZ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1158606","Enterococcus asini ATCC 700915"]]},{"id":"NCBITaxon:1159017","l":"Pseudidiomarina indica","na":1,"nb":1,"a":[["TED%3AAF-A0A1G6BAB6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G6BAB6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1159017","Pseudidiomarina indica"]]},{"id":"NCBITaxon:1159327","l":"Pontimonas salivibrio","na":1,"nb":1,"a":[["TED%3AAF-A0A2L2BSE8-F1-model_v4_TED02","TED novel fold AF-A0A2L2BSE8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1159327","Pontimonas salivibrio"]]},{"id":"NCBITaxon:116092","l":"Pseudoalteromonas sp. A25","na":1,"nb":1,"a":[["TED%3AAF-A0A5H2Y3J0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5H2Y3J0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A116092","Pseudoalteromonas sp. A25"]]},{"id":"NCBITaxon:1162706","l":"uncultured Solirubrobacteraceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A6J4R7V0-F1-model_v4_TED01","TED novel fold AF-A0A6J4R7V0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1162706","uncultured Solirubrobacteraceae bacterium"]]},{"id":"NCBITaxon:1162967","l":"Diaminobutyricimonas aerilata","na":1,"nb":1,"a":[["TED%3AAF-A0A2M9CH35-F1-model_v4_TED01","TED novel fold AF-A0A2M9CH35-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1162967","Diaminobutyricimonas aerilata"]]},{"id":"NCBITaxon:1163745","l":"Helicobacter cetorum MIT 99-5656","na":1,"nb":1,"a":[["TED%3AAF-I0EUT8-F1-model_v4_TED01","TED novel fold AF-I0EUT8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1163745","Helicobacter cetorum MIT 99-5656"]]},{"id":"NCBITaxon:1164594","l":"Massilia yuzhufengensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1I1LD95-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I1LD95-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1164594","Massilia yuzhufengensis"]]},{"id":"NCBITaxon:1166078","l":"Aureimonas phyllosphaerae","na":1,"nb":1,"a":[["TED%3AAF-A0A7W6FW33-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W6FW33-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1166078","Aureimonas phyllosphaerae"]]},{"id":"NCBITaxon:1168","l":"Nostoc sp. PCC 7119","na":1,"nb":1,"a":[["Pfam%3APF01383","CpcD/allophycocyanin linker domain"]],"b":[["NCBITaxon%3A1168","Nostoc sp. PCC 7119"]]},{"id":"NCBITaxon:1168221","l":"Coniosporium apollinis CBS 100218","na":1,"nb":1,"a":[["TED%3AAF-R7YM74-F1-model_v4_TED01","TED novel fold AF-R7YM74-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1168221","Coniosporium apollinis CBS 100218"]]},{"id":"NCBITaxon:1168729","l":"Nocardioides zhouii","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q2T3K7-F1-model_v4_TED02","TED novel fold AF-A0A4Q2T3K7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1168729","Nocardioides zhouii"]]},{"id":"NCBITaxon:1172614","l":"Paenibacillus hemerocallicola","na":1,"nb":1,"a":[["TED%3AAF-A0A5C4TIE0-F1-model_v4_TED01","TED novel fold AF-A0A5C4TIE0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1172614","Paenibacillus hemerocallicola"]]},{"id":"NCBITaxon:1173064","l":"Anaplasma phagocytophilum str. JM","na":1,"nb":1,"a":[["TED%3AAF-S5Q3Y9-F1-model_v4_TED01","TED novel fold AF-S5Q3Y9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1173064","Anaplasma phagocytophilum str. JM"]]},{"id":"NCBITaxon:1173487","l":"Halorubrum sp. AJ67","na":1,"nb":1,"a":[["TED%3AAF-V6DTK2-F1-model_v4_TED02","TED highly-symmetric fold AF-V6DTK2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1173487","Halorubrum sp. AJ67"]]},{"id":"NCBITaxon:1173584","l":"Aliiroseovarius sediminilitoris","na":1,"nb":1,"a":[["TED%3AAF-A0A1I0PD53-F1-model_v4_TED03","TED novel fold AF-A0A1I0PD53-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1173584","Aliiroseovarius sediminilitoris"]]},{"id":"NCBITaxon:1173701","l":"Colletotrichum sublineola","na":1,"nb":1,"a":[["TED%3AAF-A0A066XA05-F1-model_v4_TED03","TED novel fold AF-A0A066XA05-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1173701","Colletotrichum sublineola"]]},{"id":"NCBITaxon:1173995","l":"Parvularcula dongshanensis","na":1,"nb":1,"a":[["TED%3AAF-A0A840I3S3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A840I3S3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1173995","Parvularcula dongshanensis"]]},{"id":"NCBITaxon:1174501","l":"Paenibacillus typhae","na":1,"nb":1,"a":[["TED%3AAF-A0A1G8GPR0-F1-model_v4_TED02","TED novel fold AF-A0A1G8GPR0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1174501","Paenibacillus typhae"]]},{"id":"NCBITaxon:1176176","l":"Methylobacterium haplocladii","na":1,"nb":1,"a":[["TED%3AAF-A0A512INB8-F1-model_v4_TED02","TED novel fold AF-A0A512INB8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1176176","Methylobacterium haplocladii"]]},{"id":"NCBITaxon:1176243","l":"Vreelandella songnenensis","na":1,"nb":1,"a":[["TED%3AAF-A0A2T0V4V7-F1-model_v4_TED03","TED novel fold AF-A0A2T0V4V7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1176243","Vreelandella songnenensis"]]},{"id":"NCBITaxon:1176533","l":"Luteimonas granuli","na":1,"nb":1,"a":[["TED%3AAF-A0A518N6X9-F1-model_v4_TED02","TED novel fold AF-A0A518N6X9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1176533","Luteimonas granuli"]]},{"id":"NCBITaxon:1177154","l":"Alcanivorax nanhaiticus","na":1,"nb":1,"a":[["TED%3AAF-A0A095SFN1-F1-model_v4_TED01","TED novel fold AF-A0A095SFN1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1177154","Alcanivorax nanhaiticus"]]},{"id":"NCBITaxon:1178516","l":"Spirosoma montaniterrae","na":1,"nb":1,"a":[["TED%3AAF-A0A1P9WRL0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1P9WRL0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1178516","Spirosoma montaniterrae"]]},{"id":"NCBITaxon:1179777","l":"Mycoplasma feriruminatoris","na":1,"nb":1,"a":[["TED%3AAF-A0A654IMN0-F1-model_v4_TED02","TED novel fold AF-A0A654IMN0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1179777","Mycoplasma feriruminatoris"]]},{"id":"NCBITaxon:118127","l":"Chryseobacterium proteolyticum","na":1,"nb":1,"a":[["Pfam%3APF18626","Glutaminase"]],"b":[["NCBITaxon%3A118127","Chryseobacterium proteolyticum"]]},{"id":"NCBITaxon:1183429","l":"Agrobacterium fabacearum S56","na":1,"nb":1,"a":[["TED%3AAF-A0A1S7NI73-F1-model_v4_TED02","TED novel fold AF-A0A1S7NI73-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1183429","Agrobacterium fabacearum S56"]]},{"id":"NCBITaxon:1184151","l":"Termitidicoccus mucosus","na":1,"nb":1,"a":[["TED%3AAF-A0A178IHD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A178IHD6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1184151","Termitidicoccus mucosus"]]},{"id":"NCBITaxon:1186196","l":"Natrinema salaciae","na":1,"nb":1,"a":[["TED%3AAF-A0A1H9QMZ8-F1-model_v4_TED01","TED novel fold AF-A0A1H9QMZ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1186196","Natrinema salaciae"]]},{"id":"NCBITaxon:118675","l":"[Chroococcidiopsis] sp. PCC 6712","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y0IP23-F1-model_v4_TED01","TED novel fold AF-A0A7Y0IP23-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A118675","[Chroococcidiopsis] sp. PCC 6712"]]},{"id":"NCBITaxon:1188229","l":"Gloeomargarita lithophora Alchichica-D10","na":1,"nb":1,"a":[["TED%3AAF-A0A1J0AGF7-F1-model_v4_TED01","TED novel fold AF-A0A1J0AGF7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1188229","Gloeomargarita lithophora Alchichica-D10"]]},{"id":"NCBITaxon:1188234","l":"Metamycoplasma alkalescens 14918","na":1,"nb":1,"a":[["TED%3AAF-N9UBA4-F1-model_v4_TED01","TED novel fold AF-N9UBA4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1188234","Metamycoplasma alkalescens 14918"]]},{"id":"NCBITaxon:1188242","l":"Mycoplasmopsis bovis 8790","na":1,"nb":1,"a":[["TED%3AAF-A0A4U0W9X5-F1-model_v4_TED01","TED novel fold AF-A0A4U0W9X5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1188242","Mycoplasmopsis bovis 8790"]]},{"id":"NCBITaxon:1190417","l":"Geodermatophilus telluris","na":1,"nb":1,"a":[["TED%3AAF-A0A1G6L8J2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G6L8J2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1190417","Geodermatophilus telluris"]]},{"id":"NCBITaxon:1191209","l":"Billgrantia desiderata SP1","na":1,"nb":1,"a":[["TED%3AAF-A0A243T1A0-F1-model_v4_TED02","TED novel fold AF-A0A243T1A0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1191209","Billgrantia desiderata SP1"]]},{"id":"NCBITaxon:1191298","l":"Vibrio genomosp. F6 str. FF-238","na":1,"nb":1,"a":[["TED%3AAF-A0A1E5D5V8-F1-model_v4_TED02","TED novel fold AF-A0A1E5D5V8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1191298","Vibrio genomosp. F6 str. FF-238"]]},{"id":"NCBITaxon:1191305","l":"Vibrio splendidus 12E03","na":1,"nb":1,"a":[["TED%3AAF-A0A1E5FC68-F1-model_v4_TED01","TED novel fold AF-A0A1E5FC68-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1191305","Vibrio splendidus 12E03"]]},{"id":"NCBITaxon:1191459","l":"Flammeovirga sp. MY04","na":1,"nb":1,"a":[["TED%3AAF-A0A1B1FZ46-F1-model_v4_TED02","TED novel fold AF-A0A1B1FZ46-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1191459","Flammeovirga sp. MY04"]]},{"id":"NCBITaxon:1192197","l":"Pelosinus fermentans JBW45","na":1,"nb":1,"a":[["TED%3AAF-I9DM65-F1-model_v4_TED01","TED novel fold AF-I9DM65-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1192197","Pelosinus fermentans JBW45"]]},{"id":"NCBITaxon:1192688","l":"Salmonella enterica subsp. enterica serovar Dublin str. UC16","na":1,"nb":1,"a":[["TED%3AAF-M7S6D1-F1-model_v4_TED01","TED novel fold AF-M7S6D1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1192688","Salmonella enterica subsp. enterica serovar Dublin str. UC16"]]},{"id":"NCBITaxon:1193500","l":"Leptospira idonii","na":1,"nb":1,"a":[["TED%3AAF-A0A4R9LX20-F1-model_v4_TED02","TED novel fold AF-A0A4R9LX20-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1193500","Leptospira idonii"]]},{"id":"NCBITaxon:1193682","l":"Actinokineospora bangkokensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q9LJW8-F1-model_v4_TED01","TED novel fold AF-A0A1Q9LJW8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1193682","Actinokineospora bangkokensis"]]},{"id":"NCBITaxon:1196322","l":"Clostridium sp. Maddingley MBC34-26","na":1,"nb":1,"a":[["TED%3AAF-K6TT75-F1-model_v4_TED01","TED highly-symmetric fold AF-K6TT75-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1196322","Clostridium sp. Maddingley MBC34-26"]]},{"id":"NCBITaxon:1198452","l":"Janthinobacterium sp. HH01","na":1,"nb":1,"a":[["TED%3AAF-L9PHA3-F1-model_v4_TED01","TED highly-symmetric fold AF-L9PHA3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1198452","Janthinobacterium sp. HH01"]]},{"id":"NCBITaxon:1200751","l":"Ruminococcaceae bacterium P7","na":1,"nb":1,"a":[["TED%3AAF-A0A1G4WUB4-F1-model_v4_TED01","TED novel fold AF-A0A1G4WUB4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1200751","Ruminococcaceae bacterium P7"]]},{"id":"NCBITaxon:1200792","l":"Brevibacillus brevis X23","na":1,"nb":1,"a":[["TED%3AAF-A0A291BDV3-F1-model_v4_TED01","TED novel fold AF-A0A291BDV3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1200792","Brevibacillus brevis X23"]]},{"id":"NCBITaxon:1201031","l":"Pectobacterium aroidearum","na":1,"nb":1,"a":[["TED%3AAF-A0A7S9Y306-F1-model_v4_TED01","TED novel fold AF-A0A7S9Y306-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1201031","Pectobacterium aroidearum"]]},{"id":"NCBITaxon:1201290","l":"Bacteriovorax sp. BAL6_X","na":1,"nb":1,"a":[["TED%3AAF-T0CEV1-F1-model_v4_TED02","TED novel fold AF-T0CEV1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1201290","Bacteriovorax sp. BAL6_X"]]},{"id":"NCBITaxon:1203556","l":"Actinomyces sp. HPA0247","na":1,"nb":1,"a":[["TED%3AAF-S2ZT21-F1-model_v4_TED02","TED novel fold AF-S2ZT21-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1203556","Actinomyces sp. HPA0247"]]},{"id":"NCBITaxon:1204385","l":"Litorilinea aerophila","na":1,"nb":1,"a":[["TED%3AAF-A0A540VHU2-F1-model_v4_TED01","TED novel fold AF-A0A540VHU2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1204385","Litorilinea aerophila"]]},{"id":"NCBITaxon:1205910","l":"Nocardiopsis alba ATCC BAA-2165","na":1,"nb":1,"a":[["TED%3AAF-J7L5Y1-F1-model_v4_TED01","TED novel fold AF-J7L5Y1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1205910","Nocardiopsis alba ATCC BAA-2165"]]},{"id":"NCBITaxon:120645","l":"Fusarium phaseoli","na":1,"nb":1,"a":[["Pfam%3APF07143","AttH-like"]],"b":[["NCBITaxon%3A120645","Fusarium phaseoli"]]},{"id":"NCBITaxon:1206767","l":"Solidesulfovibrio magneticus str. Maddingley MBC34","na":1,"nb":1,"a":[["TED%3AAF-K6HEH0-F1-model_v4_TED02","TED highly-symmetric fold AF-K6HEH0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1206767","Solidesulfovibrio magneticus str. Maddingley MBC34"]]},{"id":"NCBITaxon:1208320","l":"Thalassolituus oleivorans R6-15","na":1,"nb":1,"a":[["TED%3AAF-W8G4Y2-F1-model_v4_TED02","TED highly-symmetric fold AF-W8G4Y2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1208320","Thalassolituus oleivorans R6-15"]]},{"id":"NCBITaxon:1208365","l":"SAR86 cluster bacterium SAR86E","na":1,"nb":1,"a":[["TED%3AAF-K6GHH6-F1-model_v4_TED04","TED novel fold AF-K6GHH6-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1208365","SAR86 cluster bacterium SAR86E"]]},{"id":"NCBITaxon:1208583","l":"Commensalibacter papalotli (ex Servin-Garciduenas et al. 2014)","na":1,"nb":1,"a":[["TED%3AAF-W7DJT2-F1-model_v4_TED01","TED highly-symmetric fold AF-W7DJT2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1208583","Commensalibacter papalotli (ex Servin-Garciduenas et al. 2014)"]]},{"id":"NCBITaxon:1208661","l":"Cronobacter dublinensis 582","na":1,"nb":1,"a":[["TED%3AAF-K8B0L1-F1-model_v4_TED02","TED highly-symmetric fold AF-K8B0L1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1208661","Cronobacter dublinensis 582"]]},{"id":"NCBITaxon:120959","l":"Mycobacterium kubicae","na":1,"nb":1,"a":[["TED%3AAF-A0A7G8A8J2-F1-model_v4_TED02","TED novel fold AF-A0A7G8A8J2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A120959","Mycobacterium kubicae"]]},{"id":"NCBITaxon:1209926","l":"Colletotrichum orchidophilum","na":1,"nb":1,"a":[["TED%3AAF-A0A1G4BEU5-F1-model_v4_TED01","TED novel fold AF-A0A1G4BEU5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1209926","Colletotrichum orchidophilum"]]},{"id":"NCBITaxon:1210932","l":"Peteryoungia ipomoeae","na":1,"nb":1,"a":[["TED%3AAF-A0A4S8P7B5-F1-model_v4_TED01","TED novel fold AF-A0A4S8P7B5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1210932","Peteryoungia ipomoeae"]]},{"id":"NCBITaxon:1212765","l":"Candidatus Mycoplasma haematolamae str. Purdue","na":1,"nb":1,"a":[["TED%3AAF-I7CFH3-F1-model_v4_TED01","TED novel fold AF-I7CFH3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1212765","Candidatus Mycoplasma haematolamae str. Purdue"]]},{"id":"NCBITaxon:1213189","l":"Zancudomyces culisetae","na":1,"nb":1,"a":[["TED%3AAF-A0A1R1PVM1-F1-model_v4_TED01","TED novel fold AF-A0A1R1PVM1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1213189","Zancudomyces culisetae"]]},{"id":"NCBITaxon:1213861","l":"Actinocrispum wychmicini","na":1,"nb":1,"a":[["TED%3AAF-A0A4R2IZC5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R2IZC5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1213861","Actinocrispum wychmicini"]]},{"id":"NCBITaxon:1214604","l":"Tumebacillus algifaecis","na":1,"nb":1,"a":[["TED%3AAF-A0A223CZ66-F1-model_v4_TED03","TED novel fold AF-A0A223CZ66-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1214604","Tumebacillus algifaecis"]]},{"id":"NCBITaxon:1216886","l":"Nguyenibacter vanlangensis","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y7IW05-F1-model_v4_TED02","TED novel fold AF-A0A7Y7IW05-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1216886","Nguyenibacter vanlangensis"]]},{"id":"NCBITaxon:1217692","l":"Acinetobacter sp. NIPH 298","na":1,"nb":1,"a":[["TED%3AAF-N9MZT5-F1-model_v4_TED02","TED novel fold AF-N9MZT5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1217692","Acinetobacter sp. NIPH 298"]]},{"id":"NCBITaxon:1217707","l":"Acinetobacter sp. ANC 3929","na":1,"nb":1,"a":[["TED%3AAF-N9KJP3-F1-model_v4_TED02","TED highly-symmetric fold AF-N9KJP3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1217707","Acinetobacter sp. ANC 3929"]]},{"id":"NCBITaxon:1217737","l":"Bacillus thuringiensis HD-789","na":1,"nb":1,"a":[["TED%3AAF-A0A806HWA2-F1-model_v4_TED01","TED novel fold AF-A0A806HWA2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1217737","Bacillus thuringiensis HD-789"]]},{"id":"NCBITaxon:1217969","l":"Nonlabens arenilitoris","na":1,"nb":1,"a":[["TED%3AAF-A0A2S7U9M6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S7U9M6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1217969","Nonlabens arenilitoris"]]},{"id":"NCBITaxon:1218175","l":"Bacillus thuringiensis HD-771","na":1,"nb":1,"a":[["TED%3AAF-J3UA09-F1-model_v4_TED02","TED highly-symmetric fold AF-J3UA09-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1218175","Bacillus thuringiensis HD-771"]]},{"id":"NCBITaxon:1218494","l":"Lactobacillus helsingborgensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0F4LPM4-F1-model_v4_TED01","TED novel fold AF-A0A0F4LPM4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1218494","Lactobacillus helsingborgensis"]]},{"id":"NCBITaxon:1219491","l":"Actinomadura sp. WMMB 499","na":1,"nb":1,"a":[["TED%3AAF-A0A5J6UA85-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A5J6UA85-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1219491","Actinomadura sp. WMMB 499"]]},{"id":"NCBITaxon:1221500","l":"Fictibacillus phosphorivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A161TIQ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A161TIQ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1221500","Fictibacillus phosphorivorans"]]},{"id":"NCBITaxon:1222016","l":"Caldicellulosiruptor changbaiensis","na":1,"nb":1,"a":[["TED%3AAF-A0A3T0D3Q7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3T0D3Q7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1222016","Caldicellulosiruptor changbaiensis"]]},{"id":"NCBITaxon:122368","l":"Cercospora beticola","na":1,"nb":1,"a":[["TED%3AAF-A0A2G5HT37-F1-model_v4_TED02","TED novel fold AF-A0A2G5HT37-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A122368","Cercospora beticola"]]},{"id":"NCBITaxon:1225657","l":"Loktanella sp. 3ANDIMAR09","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q2YXZ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q2YXZ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1225657","Loktanella sp. 3ANDIMAR09"]]},{"id":"NCBITaxon:1226323","l":"Oscillibacter sp. KLE 1745","na":1,"nb":1,"a":[["TED%3AAF-U2QJK1-F1-model_v4_TED01","TED highly-symmetric fold AF-U2QJK1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1226323","Oscillibacter sp. KLE 1745"]]},{"id":"NCBITaxon:1226754","l":"Paenibacillus sp. FSL R5-192","na":1,"nb":1,"a":[["TED%3AAF-W4AKI2-F1-model_v4_TED03","TED novel fold AF-W4AKI2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1226754","Paenibacillus sp. FSL R5-192"]]},{"id":"NCBITaxon:1226755","l":"Paenibacillus sp. FSL R7-269","na":1,"nb":1,"a":[["TED%3AAF-W4CCP5-F1-model_v4_TED01","TED novel fold AF-W4CCP5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1226755","Paenibacillus sp. FSL R7-269"]]},{"id":"NCBITaxon:1227077","l":"Hymenobacter arizonensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1I5ZPQ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5ZPQ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1227077","Hymenobacter arizonensis"]]},{"id":"NCBITaxon:1227266","l":"Capnocytophaga sp. oral taxon 863 str. F0517","na":1,"nb":1,"a":[["TED%3AAF-U2ANL2-F1-model_v4_TED01","TED highly-symmetric fold AF-U2ANL2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1227266","Capnocytophaga sp. oral taxon 863 str. F0517"]]},{"id":"NCBITaxon:1227271","l":"Porphyromonas gingivalis F0570","na":1,"nb":1,"a":[["TED%3AAF-A0A0E2LSH2-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A0E2LSH2-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1227271","Porphyromonas gingivalis F0570"]]},{"id":"NCBITaxon:1227352","l":"Paenibacillus sp. FSL R7-277","na":1,"nb":1,"a":[["TED%3AAF-W4CZ93-F1-model_v4_TED01","TED highly-symmetric fold AF-W4CZ93-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1227352","Paenibacillus sp. FSL R7-277"]]},{"id":"NCBITaxon:1227551","l":"Meiothermus granaticius NBRC 107808","na":1,"nb":1,"a":[["TED%3AAF-A0A399FBI9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A399FBI9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1227551","Meiothermus granaticius NBRC 107808"]]},{"id":"NCBITaxon:1229521","l":"Nitrincola nitratireducens","na":1,"nb":1,"a":[["TED%3AAF-W9VFH2-F1-model_v4_TED01","TED highly-symmetric fold AF-W9VFH2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1229521","Nitrincola nitratireducens"]]},{"id":"NCBITaxon:1230730","l":"Tissierellia bacterium S5-A11","na":1,"nb":1,"a":[["TED%3AAF-A0A095XB89-F1-model_v4_TED02","TED novel fold AF-A0A095XB89-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1230730","Tissierellia bacterium S5-A11"]]},{"id":"NCBITaxon:1230846","l":"Acidobacteria bacterium AB60","na":1,"nb":1,"a":[["TED%3AAF-A0A5M8SNT8-F1-model_v4_TED01","TED novel fold AF-A0A5M8SNT8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1230846","Acidobacteria bacterium AB60"]]},{"id":"NCBITaxon:1232866","l":"Caballeronia udeis","na":1,"nb":1,"a":[["TED%3AAF-A0A158IK30-F1-model_v4_TED03","TED novel fold AF-A0A158IK30-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1232866","Caballeronia udeis"]]},{"id":"NCBITaxon:1233","l":"Nitrosovibrio tenuis","na":1,"nb":1,"a":[["TED%3AAF-A0A1H7P7C7-F1-model_v4_TED01","TED novel fold AF-A0A1H7P7C7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1233","Nitrosovibrio tenuis"]]},{"id":"NCBITaxon:1234841","l":"Mucilaginibacter xinganensis","na":1,"nb":1,"a":[["TED%3AAF-A0A223P1G7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A223P1G7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1234841","Mucilaginibacter xinganensis"]]},{"id":"NCBITaxon:1235795","l":"Paenibacillus barengoltzii G22","na":1,"nb":1,"a":[["TED%3AAF-R9L6P1-F1-model_v4_TED01","TED highly-symmetric fold AF-R9L6P1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1235795","Paenibacillus barengoltzii G22"]]},{"id":"NCBITaxon:1235796","l":"Firmicutes bacterium M10-2","na":1,"nb":1,"a":[["TED%3AAF-R9LTU1-F1-model_v4_TED02","TED novel fold AF-R9LTU1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1235796","Firmicutes bacterium M10-2"]]},{"id":"NCBITaxon:1235797","l":"Oscillibacter sp. 1-3","na":1,"nb":1,"a":[["TED%3AAF-R9M5Y4-F1-model_v4_TED01","TED novel fold AF-R9M5Y4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1235797","Oscillibacter sp. 1-3"]]},{"id":"NCBITaxon:1235800","l":"Lachnospiraceae bacterium 10-1","na":1,"nb":1,"a":[["TED%3AAF-R9N039-F1-model_v4_TED02","TED novel fold AF-R9N039-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1235800","Lachnospiraceae bacterium 10-1"]]},{"id":"NCBITaxon:1236046","l":"Mesotoga infera","na":1,"nb":1,"a":[["TED%3AAF-A0A7C1CX61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C1CX61-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1236046","Mesotoga infera"]]},{"id":"NCBITaxon:1236689","l":"Candidatus Methanomethylophilus alvi Mx1201","na":1,"nb":1,"a":[["TED%3AAF-M9SC19-F1-model_v4_TED01","TED highly-symmetric fold AF-M9SC19-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1236689","Candidatus Methanomethylophilus alvi Mx1201"]]},{"id":"NCBITaxon:1236968","l":"Iodidimonas nitroreducens","na":1,"nb":1,"a":[["TED%3AAF-A0A5A7NBS5-F1-model_v4_TED01","TED novel fold AF-A0A5A7NBS5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1236968","Iodidimonas nitroreducens"]]},{"id":"NCBITaxon:1236974","l":"Paenibacillus sp. JCM 10914","na":1,"nb":1,"a":[["TED%3AAF-V9GB85-F1-model_v4_TED03","TED highly-symmetric fold AF-V9GB85-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1236974","Paenibacillus sp. JCM 10914"]]},{"id":"NCBITaxon:1238424","l":"Haloquadratum walsbyi J07HQW1","na":1,"nb":1,"a":[["TED%3AAF-U1PDD5-F1-model_v4_TED01","TED highly-symmetric fold AF-U1PDD5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1238424","Haloquadratum walsbyi J07HQW1"]]},{"id":"NCBITaxon:1240085","l":"Anaerovibrio sp. JC8","na":1,"nb":1,"a":[["TED%3AAF-A0A1X1Q430-F1-model_v4_TED02","TED novel fold AF-A0A1X1Q430-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1240085","Anaerovibrio sp. JC8"]]},{"id":"NCBITaxon:1241337","l":"Pedobacter nutrimenti","na":1,"nb":1,"a":[["TED%3AAF-A0A318UDW2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A318UDW2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1241337","Pedobacter nutrimenti"]]},{"id":"NCBITaxon:1241761","l":"Sphingomonas yantingensis","na":1,"nb":1,"a":[["TED%3AAF-A0A7W9AM50-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W9AM50-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1241761","Sphingomonas yantingensis"]]},{"id":"NCBITaxon:1242107","l":"Salmonella enterica subsp. enterica serovar Macclesfield str. S-1643","na":1,"nb":1,"a":[["TED%3AAF-A0A2C9NXK1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2C9NXK1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1242107","Salmonella enterica subsp. enterica serovar Macclesfield str. S-1643"]]},{"id":"NCBITaxon:1244108","l":"Jannaschia faecimaris","na":1,"nb":1,"a":[["TED%3AAF-A0A1H3KAR9-F1-model_v4_TED02","TED novel fold AF-A0A1H3KAR9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1244108","Jannaschia faecimaris"]]},{"id":"NCBITaxon:1244155","l":"Enterococcus faecium SD3B-2","na":1,"nb":1,"a":[["TED%3AAF-S4EFH8-F1-model_v4_TED01","TED highly-symmetric fold AF-S4EFH8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1244155","Enterococcus faecium SD3B-2"]]},{"id":"NCBITaxon:124430","l":"Phaeomonas parva","na":1,"nb":1,"a":[["TED%3AAF-A0A7S1U9F8-F1-model_v4_TED01","TED novel fold AF-A0A7S1U9F8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A124430","Phaeomonas parva"]]},{"id":"NCBITaxon:1245471","l":"Metapseudomonas resinovorans NBRC 106553","na":1,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_PvdO","Pyoverdine chromophore maturation oxidoreductase family"]],"b":[["NCBITaxon%3A1245471","Metapseudomonas resinovorans NBRC 106553"]]},{"id":"NCBITaxon:1245769","l":"Lachancea lanzarotensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0C7NC52-F1-model_v4_TED02","TED novel fold AF-A0A0C7NC52-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1245769","Lachancea lanzarotensis"]]},{"id":"NCBITaxon:1247510","l":"Verticiella sediminum","na":1,"nb":1,"a":[["TED%3AAF-A0A556AER9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A556AER9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1247510","Verticiella sediminum"]]},{"id":"NCBITaxon:1247546","l":"Pseudomonas hunanensis","na":1,"nb":1,"a":[["TED%3AAF-A0A2I0C4S2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I0C4S2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1247546","Pseudomonas hunanensis"]]},{"id":"NCBITaxon:1249553","l":"Bacterioplanes sanyensis","na":1,"nb":1,"a":[["TED%3AAF-A0A222FKK1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A222FKK1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1249553","Bacterioplanes sanyensis"]]},{"id":"NCBITaxon:1249627","l":"Imhoffiella purpurea","na":1,"nb":1,"a":[["TED%3AAF-W9W3R8-F1-model_v4_TED01","TED novel fold AF-W9W3R8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1249627","Imhoffiella purpurea"]]},{"id":"NCBITaxon:1250001","l":"Olleya sp. Hel_I_94","na":1,"nb":1,"a":[["TED%3AAF-A0A559RBM7-F1-model_v4_TED01","TED novel fold AF-A0A559RBM7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1250001","Olleya sp. Hel_I_94"]]},{"id":"NCBITaxon:1250029","l":"Flavobacteriaceae bacterium MAR_2010_72","na":1,"nb":1,"a":[["TED%3AAF-A0A397L855-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A397L855-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1250029","Flavobacteriaceae bacterium MAR_2010_72"]]},{"id":"NCBITaxon:1250050","l":"Maribacter sp. MAR_2009_72","na":1,"nb":1,"a":[["TED%3AAF-A0A559NSX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A559NSX2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1250050","Maribacter sp. MAR_2009_72"]]},{"id":"NCBITaxon:1250059","l":"Tenacibaculum sp. MAR_2009_124","na":1,"nb":1,"a":[["TED%3AAF-A0A1H4J5U1-F1-model_v4_TED03","TED novel fold AF-A0A1H4J5U1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1250059","Tenacibaculum sp. MAR_2009_124"]]},{"id":"NCBITaxon:1250544","l":"Sphaerosporella brunnea","na":1,"nb":1,"a":[["TED%3AAF-A0A5J5EXM5-F1-model_v4_TED01","TED novel fold AF-A0A5J5EXM5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1250544","Sphaerosporella brunnea"]]},{"id":"NCBITaxon:1254432","l":"Sorangium cellulosum So0157-2","na":1,"nb":1,"a":[["TED%3AAF-S4XT05-F1-model_v4_TED01","TED novel fold AF-S4XT05-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1254432","Sorangium cellulosum So0157-2"]]},{"id":"NCBITaxon:1255570","l":"Gulosibacter sp. 10","na":1,"nb":1,"a":[["TED%3AAF-A0A1R4FN97-F1-model_v4_TED01","TED novel fold AF-A0A1R4FN97-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1255570","Gulosibacter sp. 10"]]},{"id":"NCBITaxon:1255669","l":"Brevibacterium sp. Mu109","na":1,"nb":1,"a":[["TED%3AAF-A0A2H1J0C3-F1-model_v4_TED02","TED novel fold AF-A0A2H1J0C3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1255669","Brevibacterium sp. Mu109"]]},{"id":"NCBITaxon:1259231","l":"Cryobacterium sp. TMT1-19","na":1,"nb":1,"a":[["TED%3AAF-A0A4R8ZNV8-F1-model_v4_TED01","TED novel fold AF-A0A4R8ZNV8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1259231","Cryobacterium sp. TMT1-19"]]},{"id":"NCBITaxon:1260356","l":"Enterococcus faecalis 13-SD-W-01","na":1,"nb":1,"a":[["TED%3AAF-S4DDC6-F1-model_v4_TED02","TED highly-symmetric fold AF-S4DDC6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1260356","Enterococcus faecalis 13-SD-W-01"]]},{"id":"NCBITaxon:1260363","l":"Enterococcus faecalis 02-MB-BW-10","na":1,"nb":1,"a":[["TED%3AAF-S4CDW6-F1-model_v4_TED01","TED novel fold AF-S4CDW6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1260363","Enterococcus faecalis 02-MB-BW-10"]]},{"id":"NCBITaxon:1261403","l":"Mangrovibacterium diazotrophicum","na":1,"nb":1,"a":[["TED%3AAF-A0A419W901-F1-model_v4_TED02","TED novel fold AF-A0A419W901-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1261403","Mangrovibacterium diazotrophicum"]]},{"id":"NCBITaxon:1261629","l":"Pseudomonas sp. URMO17WK12:I6","na":1,"nb":1,"a":[["TED%3AAF-A0A2W7IV95-F1-model_v4_TED01","TED novel fold AF-A0A2W7IV95-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1261629","Pseudomonas sp. URMO17WK12:I6"]]},{"id":"NCBITaxon:1261630","l":"Pseudomonas sp. URIL14HWK12:I5","na":1,"nb":1,"a":[["TED%3AAF-A0A1W1Z4F4-F1-model_v4_TED01","TED novel fold AF-A0A1W1Z4F4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1261630","Pseudomonas sp. URIL14HWK12:I5"]]},{"id":"NCBITaxon:1262452","l":"Streptomyces sp. 769","na":1,"nb":1,"a":[["TED%3AAF-A0A0A8EFP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A8EFP7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262452","Streptomyces sp. 769"]]},{"id":"NCBITaxon:1262550","l":"Brevibacterium jeotgali","na":1,"nb":1,"a":[["TED%3AAF-A0A2H1L8Q0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H1L8Q0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262550","Brevibacterium jeotgali"]]},{"id":"NCBITaxon:1262583","l":"Tamaricihabitans halophyticus","na":1,"nb":1,"a":[["TED%3AAF-A0A4R2RDI5-F1-model_v4_TED01","TED novel fold AF-A0A4R2RDI5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262583","Tamaricihabitans halophyticus"]]},{"id":"NCBITaxon:1262686","l":"Acholeplasma sp. CAG:878","na":1,"nb":1,"a":[["TED%3AAF-R5HWA5-F1-model_v4_TED01","TED novel fold AF-R5HWA5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262686","Acholeplasma sp. CAG:878"]]},{"id":"NCBITaxon:1262688","l":"Acidaminococcus sp. CAG:917","na":1,"nb":1,"a":[["TED%3AAF-R7K8M9-F1-model_v4_TED01","TED highly-symmetric fold AF-R7K8M9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262688","Acidaminococcus sp. CAG:917"]]},{"id":"NCBITaxon:1262690","l":"Acinetobacter sp. CAG:196","na":1,"nb":1,"a":[["TED%3AAF-R5SCI3-F1-model_v4_TED02","TED novel fold AF-R5SCI3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262690","Acinetobacter sp. CAG:196"]]},{"id":"NCBITaxon:1262737","l":"Bacteroides sp. CAG:189","na":1,"nb":1,"a":[["TED%3AAF-R5JN61-F1-model_v4_TED02","TED novel fold AF-R5JN61-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262737","Bacteroides sp. CAG:189"]]},{"id":"NCBITaxon:1262742","l":"Bacteroides sp. CAG:545","na":1,"nb":1,"a":[["TED%3AAF-R5RUB0-F1-model_v4_TED07","TED highly-symmetric fold AF-R5RUB0-F1-model_v4_TED07"]],"b":[["NCBITaxon%3A1262742","Bacteroides sp. CAG:545"]]},{"id":"NCBITaxon:1262752","l":"Bacteroides sp. CAG:875","na":1,"nb":1,"a":[["TED%3AAF-R6ZV18-F1-model_v4_TED02","TED novel fold AF-R6ZV18-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262752","Bacteroides sp. CAG:875"]]},{"id":"NCBITaxon:1262759","l":"Brachyspira sp. CAG:484","na":1,"nb":1,"a":[["TED%3AAF-R5HKW8-F1-model_v4_TED01","TED novel fold AF-R5HKW8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262759","Brachyspira sp. CAG:484"]]},{"id":"NCBITaxon:1262773","l":"Clostridium sp. CAG:122","na":1,"nb":1,"a":[["TED%3AAF-R5S4D8-F1-model_v4_TED01","TED novel fold AF-R5S4D8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262773","Clostridium sp. CAG:122"]]},{"id":"NCBITaxon:1262776","l":"Clostridium sp. CAG:149","na":1,"nb":1,"a":[["TED%3AAF-R5M503-F1-model_v4_TED01","TED novel fold AF-R5M503-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262776","Clostridium sp. CAG:149"]]},{"id":"NCBITaxon:1262778","l":"Clostridium sp. CAG:169","na":1,"nb":1,"a":[["TED%3AAF-R6BDP7-F1-model_v4_TED01","TED highly-symmetric fold AF-R6BDP7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262778","Clostridium sp. CAG:169"]]},{"id":"NCBITaxon:1262781","l":"Clostridium sp. CAG:226","na":1,"nb":1,"a":[["TED%3AAF-R5B4L0-F1-model_v4_TED01","TED novel fold AF-R5B4L0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262781","Clostridium sp. CAG:226"]]},{"id":"NCBITaxon:1262783","l":"Clostridium sp. CAG:242","na":1,"nb":1,"a":[["TED%3AAF-R6D4A2-F1-model_v4_TED01","TED highly-symmetric fold AF-R6D4A2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262783","Clostridium sp. CAG:242"]]},{"id":"NCBITaxon:1262788","l":"Clostridium sp. CAG:269","na":1,"nb":1,"a":[["TED%3AAF-R7IYD9-F1-model_v4_TED01","TED novel fold AF-R7IYD9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262788","Clostridium sp. CAG:269"]]},{"id":"NCBITaxon:1262789","l":"Clostridium sp. CAG:273","na":1,"nb":1,"a":[["TED%3AAF-R7L6S0-F1-model_v4_TED01","TED novel fold AF-R7L6S0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262789","Clostridium sp. CAG:273"]]},{"id":"NCBITaxon:1262798","l":"Clostridium sp. CAG:352","na":1,"nb":1,"a":[["TED%3AAF-R6R399-F1-model_v4_TED01","TED novel fold AF-R6R399-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262798","Clostridium sp. CAG:352"]]},{"id":"NCBITaxon:1262801","l":"Clostridium sp. CAG:389","na":1,"nb":1,"a":[["TED%3AAF-R7LQW5-F1-model_v4_TED01","TED novel fold AF-R7LQW5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262801","Clostridium sp. CAG:389"]]},{"id":"NCBITaxon:1262806","l":"Clostridium sp. CAG:433","na":1,"nb":1,"a":[["TED%3AAF-R6Y4R9-F1-model_v4_TED01","TED novel fold AF-R6Y4R9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262806","Clostridium sp. CAG:433"]]},{"id":"NCBITaxon:1262807","l":"Clostridium sp. CAG:440","na":1,"nb":1,"a":[["TED%3AAF-R7GD66-F1-model_v4_TED01","TED highly-symmetric fold AF-R7GD66-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262807","Clostridium sp. CAG:440"]]},{"id":"NCBITaxon:1262809","l":"Clostridium sp. CAG:451","na":1,"nb":1,"a":[["TED%3AAF-R7KDM6-F1-model_v4_TED01","TED highly-symmetric fold AF-R7KDM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262809","Clostridium sp. CAG:451"]]},{"id":"NCBITaxon:1262815","l":"Clostridium sp. CAG:508","na":1,"nb":1,"a":[["TED%3AAF-R6RBM2-F1-model_v4_TED01","TED highly-symmetric fold AF-R6RBM2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262815","Clostridium sp. CAG:508"]]},{"id":"NCBITaxon:1262820","l":"Clostridium sp. CAG:567","na":1,"nb":1,"a":[["TED%3AAF-R7M9L5-F1-model_v4_TED01","TED novel fold AF-R7M9L5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262820","Clostridium sp. CAG:567"]]},{"id":"NCBITaxon:1262824","l":"Clostridium sp. CAG:58","na":1,"nb":1,"a":[["TED%3AAF-R6SSL9-F1-model_v4_TED01","TED highly-symmetric fold AF-R6SSL9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262824","Clostridium sp. CAG:58"]]},{"id":"NCBITaxon:1262825","l":"Clostridium sp. CAG:590","na":1,"nb":1,"a":[["TED%3AAF-R5ELB2-F1-model_v4_TED02","TED novel fold AF-R5ELB2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262825","Clostridium sp. CAG:590"]]},{"id":"NCBITaxon:1262829","l":"Clostridium sp. CAG:628","na":1,"nb":1,"a":[["TED%3AAF-R7MCF7-F1-model_v4_TED01","TED novel fold AF-R7MCF7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262829","Clostridium sp. CAG:628"]]},{"id":"NCBITaxon:1262832","l":"Clostridium sp. CAG:7","na":1,"nb":1,"a":[["TED%3AAF-R5IHW6-F1-model_v4_TED01","TED novel fold AF-R5IHW6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262832","Clostridium sp. CAG:7"]]},{"id":"NCBITaxon:1262834","l":"Clostridium sp. CAG:715","na":1,"nb":1,"a":[["TED%3AAF-R5DMB4-F1-model_v4_TED01","TED novel fold AF-R5DMB4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262834","Clostridium sp. CAG:715"]]},{"id":"NCBITaxon:1262840","l":"Clostridium sp. CAG:793","na":1,"nb":1,"a":[["TED%3AAF-R5N623-F1-model_v4_TED02","TED novel fold AF-R5N623-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262840","Clostridium sp. CAG:793"]]},{"id":"NCBITaxon:1262843","l":"Clostridium sp. CAG:813","na":1,"nb":1,"a":[["TED%3AAF-R7MGZ7-F1-model_v4_TED01","TED highly-symmetric fold AF-R7MGZ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262843","Clostridium sp. CAG:813"]]},{"id":"NCBITaxon:1262869","l":"Dialister sp. CAG:357","na":1,"nb":1,"a":[["TED%3AAF-R7CTH2-F1-model_v4_TED01","TED highly-symmetric fold AF-R7CTH2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262869","Dialister sp. CAG:357"]]},{"id":"NCBITaxon:1262874","l":"Eggerthella sp. CAG:1427","na":1,"nb":1,"a":[["TED%3AAF-R5FMM4-F1-model_v4_TED02","TED highly-symmetric fold AF-R5FMM4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262874","Eggerthella sp. CAG:1427"]]},{"id":"NCBITaxon:1262877","l":"Eggerthella sp. CAG:368","na":1,"nb":1,"a":[["TED%3AAF-R7BR43-F1-model_v4_TED01","TED novel fold AF-R7BR43-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262877","Eggerthella sp. CAG:368"]]},{"id":"NCBITaxon:1262881","l":"Eubacterium sp. CAG:161","na":1,"nb":1,"a":[["TED%3AAF-R5LAA8-F1-model_v4_TED01","TED highly-symmetric fold AF-R5LAA8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262881","Eubacterium sp. CAG:161"]]},{"id":"NCBITaxon:1262887","l":"Eubacterium sp. CAG:252","na":1,"nb":1,"a":[["TED%3AAF-R6KC60-F1-model_v4_TED04","TED highly-symmetric fold AF-R6KC60-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1262887","Eubacterium sp. CAG:252"]]},{"id":"NCBITaxon:1262888","l":"Eubacterium sp. CAG:274","na":1,"nb":1,"a":[["TED%3AAF-R6PP10-F1-model_v4_TED01","TED highly-symmetric fold AF-R6PP10-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262888","Eubacterium sp. CAG:274"]]},{"id":"NCBITaxon:1262903","l":"Methanoculleus sp. CAG:1088","na":1,"nb":1,"a":[["TED%3AAF-R7Q245-F1-model_v4_TED02","TED novel fold AF-R7Q245-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262903","Methanoculleus sp. CAG:1088"]]},{"id":"NCBITaxon:1262904","l":"Mycoplasma sp. CAG:472","na":1,"nb":1,"a":[["TED%3AAF-R7HJ97-F1-model_v4_TED03","TED novel fold AF-R7HJ97-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1262904","Mycoplasma sp. CAG:472"]]},{"id":"NCBITaxon:1262907","l":"Mycoplasma sp. CAG:877","na":1,"nb":1,"a":[["TED%3AAF-R5LQW6-F1-model_v4_TED01","TED highly-symmetric fold AF-R5LQW6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262907","Mycoplasma sp. CAG:877"]]},{"id":"NCBITaxon:1262915","l":"Phascolarctobacterium sp. CAG:266","na":1,"nb":1,"a":[["TED%3AAF-R6IBR4-F1-model_v4_TED01","TED highly-symmetric fold AF-R6IBR4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262915","Phascolarctobacterium sp. CAG:266"]]},{"id":"NCBITaxon:1262917","l":"Prevotella sp. CAG:1031","na":1,"nb":1,"a":[["TED%3AAF-R5APF1-F1-model_v4_TED01","TED highly-symmetric fold AF-R5APF1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262917","Prevotella sp. CAG:1031"]]},{"id":"NCBITaxon:1262920","l":"Prevotella sp. CAG:1124","na":1,"nb":1,"a":[["TED%3AAF-R5KZ47-F1-model_v4_TED01","TED novel fold AF-R5KZ47-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262920","Prevotella sp. CAG:1124"]]},{"id":"NCBITaxon:1262923","l":"Prevotella sp. CAG:255","na":1,"nb":1,"a":[["TED%3AAF-R5CNK9-F1-model_v4_TED03","TED novel fold AF-R5CNK9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1262923","Prevotella sp. CAG:255"]]},{"id":"NCBITaxon:1262924","l":"Prevotella sp. CAG:279","na":1,"nb":1,"a":[["TED%3AAF-R7HNB1-F1-model_v4_TED02","TED novel fold AF-R7HNB1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262924","Prevotella sp. CAG:279"]]},{"id":"NCBITaxon:1262936","l":"Prevotella sp. CAG:873","na":1,"nb":1,"a":[["TED%3AAF-R7J213-F1-model_v4_TED02","TED highly-symmetric fold AF-R7J213-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262936","Prevotella sp. CAG:873"]]},{"id":"NCBITaxon:1262940","l":"Roseburia sp. CAG:100","na":1,"nb":1,"a":[["TED%3AAF-R7R539-F1-model_v4_TED03","TED highly-symmetric fold AF-R7R539-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1262940","Roseburia sp. CAG:100"]]},{"id":"NCBITaxon:1262944","l":"Roseburia sp. CAG:303","na":1,"nb":1,"a":[["TED%3AAF-R7IMP6-F1-model_v4_TED03","TED highly-symmetric fold AF-R7IMP6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1262944","Roseburia sp. CAG:303"]]},{"id":"NCBITaxon:1262945","l":"Roseburia sp. CAG:309","na":1,"nb":1,"a":[["TED%3AAF-R6YF90-F1-model_v4_TED02","TED highly-symmetric fold AF-R6YF90-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262945","Roseburia sp. CAG:309"]]},{"id":"NCBITaxon:1262946","l":"Roseburia sp. CAG:380","na":1,"nb":1,"a":[["TED%3AAF-R6VHC4-F1-model_v4_TED01","TED novel fold AF-R6VHC4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262946","Roseburia sp. CAG:380"]]},{"id":"NCBITaxon:1262954","l":"Ruminococcus sp. CAG:330","na":1,"nb":1,"a":[["TED%3AAF-R7F9L4-F1-model_v4_TED01","TED novel fold AF-R7F9L4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262954","Ruminococcus sp. CAG:330"]]},{"id":"NCBITaxon:1262957","l":"Ruminococcus sp. CAG:382","na":1,"nb":1,"a":[["TED%3AAF-R6W5D9-F1-model_v4_TED01","TED highly-symmetric fold AF-R6W5D9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262957","Ruminococcus sp. CAG:382"]]},{"id":"NCBITaxon:1262961","l":"Ruminococcus sp. CAG:563","na":1,"nb":1,"a":[["TED%3AAF-R6ELH5-F1-model_v4_TED01","TED highly-symmetric fold AF-R6ELH5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262961","Ruminococcus sp. CAG:563"]]},{"id":"NCBITaxon:1262969","l":"Staphylococcus sp. CAG:324","na":1,"nb":1,"a":[["TED%3AAF-R6TNJ6-F1-model_v4_TED01","TED novel fold AF-R6TNJ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262969","Staphylococcus sp. CAG:324"]]},{"id":"NCBITaxon:1262977","l":"Sutterella sp. CAG:521","na":1,"nb":1,"a":[["TED%3AAF-R7KI60-F1-model_v4_TED02","TED novel fold AF-R7KI60-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262977","Sutterella sp. CAG:521"]]},{"id":"NCBITaxon:1262981","l":"Erysipelotrichaceae bacterium CAG:64","na":1,"nb":1,"a":[["TED%3AAF-R6UR66-F1-model_v4_TED01","TED highly-symmetric fold AF-R6UR66-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262981","Erysipelotrichaceae bacterium CAG:64"]]},{"id":"NCBITaxon:1262988","l":"Firmicutes bacterium CAG:95","na":1,"nb":1,"a":[["TED%3AAF-R7N5E0-F1-model_v4_TED02","TED highly-symmetric fold AF-R7N5E0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1262988","Firmicutes bacterium CAG:95"]]},{"id":"NCBITaxon:1262991","l":"Firmicutes bacterium CAG:882","na":1,"nb":1,"a":[["TED%3AAF-R7BH83-F1-model_v4_TED01","TED novel fold AF-R7BH83-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262991","Firmicutes bacterium CAG:882"]]},{"id":"NCBITaxon:1262999","l":"Firmicutes bacterium CAG:103","na":1,"nb":1,"a":[["TED%3AAF-R5B7E2-F1-model_v4_TED01","TED novel fold AF-R5B7E2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1262999","Firmicutes bacterium CAG:103"]]},{"id":"NCBITaxon:1263000","l":"Firmicutes bacterium CAG:110","na":1,"nb":1,"a":[["TED%3AAF-R5EWT9-F1-model_v4_TED01","TED novel fold AF-R5EWT9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1263000","Firmicutes bacterium CAG:110"]]},{"id":"NCBITaxon:1263009","l":"Firmicutes bacterium CAG:212","na":1,"nb":1,"a":[["TED%3AAF-R5XXC1-F1-model_v4_TED01","TED novel fold AF-R5XXC1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1263009","Firmicutes bacterium CAG:212"]]},{"id":"NCBITaxon:1263018","l":"Firmicutes bacterium CAG:321","na":1,"nb":1,"a":[["TED%3AAF-R7HIA0-F1-model_v4_TED01","TED novel fold AF-R7HIA0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1263018","Firmicutes bacterium CAG:321"]]},{"id":"NCBITaxon:1263020","l":"Firmicutes bacterium CAG:345","na":1,"nb":1,"a":[["TED%3AAF-R6XWM6-F1-model_v4_TED01","TED highly-symmetric fold AF-R6XWM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1263020","Firmicutes bacterium CAG:345"]]},{"id":"NCBITaxon:1263022","l":"Firmicutes bacterium CAG:424","na":1,"nb":1,"a":[["TED%3AAF-R6RDG6-F1-model_v4_TED02","TED highly-symmetric fold AF-R6RDG6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1263022","Firmicutes bacterium CAG:424"]]},{"id":"NCBITaxon:1263025","l":"Firmicutes bacterium CAG:466","na":1,"nb":1,"a":[["TED%3AAF-R6PUK4-F1-model_v4_TED01","TED novel fold AF-R6PUK4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1263025","Firmicutes bacterium CAG:466"]]},{"id":"NCBITaxon:1263026","l":"Firmicutes bacterium CAG:475","na":1,"nb":1,"a":[["TED%3AAF-R7BUV3-F1-model_v4_TED02","TED novel fold AF-R7BUV3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1263026","Firmicutes bacterium CAG:475"]]},{"id":"NCBITaxon:1263044","l":"Bacteroides faecis CAG:32","na":1,"nb":1,"a":[["TED%3AAF-R6V0V1-F1-model_v4_TED04","TED highly-symmetric fold AF-R6V0V1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1263044","Bacteroides faecis CAG:32"]]},{"id":"NCBITaxon:1263052","l":"Phocaeicola plebeius CAG:211","na":1,"nb":1,"a":[["TED%3AAF-R5VT61-F1-model_v4_TED01","TED highly-symmetric fold AF-R5VT61-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1263052","Phocaeicola plebeius CAG:211"]]},{"id":"NCBITaxon:1263054","l":"Bacteroides thetaiotaomicron CAG:40","na":1,"nb":1,"a":[["TED%3AAF-R7KRD3-F1-model_v4_TED01","TED novel fold AF-R7KRD3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1263054","Bacteroides thetaiotaomicron CAG:40"]]},{"id":"NCBITaxon:1263055","l":"Bacteroides uniformis CAG:3","na":1,"nb":1,"a":[["TED%3AAF-R7ER82-F1-model_v4_TED04","TED novel fold AF-R7ER82-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1263055","Bacteroides uniformis CAG:3"]]},{"id":"NCBITaxon:1263071","l":"Coprococcus eutactus CAG:665","na":1,"nb":1,"a":[["TED%3AAF-R5VPN3-F1-model_v4_TED01","TED highly-symmetric fold AF-R5VPN3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1263071","Coprococcus eutactus CAG:665"]]},{"id":"NCBITaxon:1263088","l":"Methanobrevibacter smithii CAG:186","na":1,"nb":1,"a":[["TED%3AAF-R7PRU9-F1-model_v4_TED01","TED highly-symmetric fold AF-R7PRU9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1263088","Methanobrevibacter smithii CAG:186"]]},{"id":"NCBITaxon:1263095","l":"Paraprevotella clara CAG:116","na":1,"nb":1,"a":[["TED%3AAF-R5NYH7-F1-model_v4_TED01","TED novel fold AF-R5NYH7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1263095","Paraprevotella clara CAG:116"]]},{"id":"NCBITaxon:1263636","l":"Microbacterium kyungheense","na":1,"nb":1,"a":[["TED%3AAF-A0A543F149-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A543F149-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1263636","Microbacterium kyungheense"]]},{"id":"NCBITaxon:1263868","l":"Rhodopirellula europaea SH398","na":1,"nb":1,"a":[["TED%3AAF-M5SBP6-F1-model_v4_TED02","TED novel fold AF-M5SBP6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1263868","Rhodopirellula europaea SH398"]]},{"id":"NCBITaxon:1266600","l":"Glaciihabitans tibetensis","na":1,"nb":1,"a":[["TED%3AAF-A0A2T0VGK9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T0VGK9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1266600","Glaciihabitans tibetensis"]]},{"id":"NCBITaxon:1266744","l":"Talaromyces purpureogenus","na":1,"nb":1,"a":[["Pfam%3APF10503","Esterase PHB depolymerase"]],"b":[["NCBITaxon%3A1266744","Talaromyces purpureogenus"]]},{"id":"NCBITaxon:1267021","l":"Frischella perrara","na":1,"nb":1,"a":[["TED%3AAF-A0A0A7S1S1-F1-model_v4_TED05","TED novel fold AF-A0A0A7S1S1-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1267021","Frischella perrara"]]},{"id":"NCBITaxon:1267768","l":"Brevirhabdus pacifica","na":1,"nb":1,"a":[["TED%3AAF-A0A2M9DE94-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M9DE94-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1267768","Brevirhabdus pacifica"]]},{"id":"NCBITaxon:1273125","l":"Rhodococcus rhodnii LMG 5362","na":1,"nb":1,"a":[["TED%3AAF-R7WN57-F1-model_v4_TED01","TED highly-symmetric fold AF-R7WN57-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1273125","Rhodococcus rhodnii LMG 5362"]]},{"id":"NCBITaxon:1273541","l":"Pyrodictium delaneyi","na":1,"nb":1,"a":[["TED%3AAF-A0A211YRF7-F1-model_v4_TED01","TED novel fold AF-A0A211YRF7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1273541","Pyrodictium delaneyi"]]},{"id":"NCBITaxon:1274631","l":"Bradyrhizobium icense","na":1,"nb":1,"a":[["TED%3AAF-A0A533IQI7-F1-model_v4_TED02","TED novel fold AF-A0A533IQI7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1274631","Bradyrhizobium icense"]]},{"id":"NCBITaxon:1278078","l":"Rhodococcus triatomae BKS 15-14","na":1,"nb":1,"a":[["TED%3AAF-M2WTH6-F1-model_v4_TED01","TED highly-symmetric fold AF-M2WTH6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1278078","Rhodococcus triatomae BKS 15-14"]]},{"id":"NCBITaxon:1280637","l":"Saccharothrix carnea","na":1,"nb":1,"a":[["TED%3AAF-A0A2P8IFT9-F1-model_v4_TED01","TED novel fold AF-A0A2P8IFT9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1280637","Saccharothrix carnea"]]},{"id":"NCBITaxon:1280837","l":"Meira miltonrushii","na":1,"nb":1,"a":[["TED%3AAF-A0A316VB52-F1-model_v4_TED01","TED novel fold AF-A0A316VB52-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1280837","Meira miltonrushii"]]},{"id":"NCBITaxon:1280846","l":"Aliiruegeria haliotis","na":1,"nb":1,"a":[["TED%3AAF-A0A2T0RUV5-F1-model_v4_TED02","TED novel fold AF-A0A2T0RUV5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1280846","Aliiruegeria haliotis"]]},{"id":"NCBITaxon:1280944","l":"Hyphomonas sp. CY54-11-8","na":1,"nb":1,"a":[["TED%3AAF-A0A059DV47-F1-model_v4_TED03","TED novel fold AF-A0A059DV47-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1280944","Hyphomonas sp. CY54-11-8"]]},{"id":"NCBITaxon:1280946","l":"Hyphomonas beringensis","na":1,"nb":1,"a":[["TED%3AAF-A0A062TWQ9-F1-model_v4_TED01","TED novel fold AF-A0A062TWQ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1280946","Hyphomonas beringensis"]]},{"id":"NCBITaxon:1282361","l":"Asticcacaulis sp. AC402","na":1,"nb":1,"a":[["TED%3AAF-V4NKK3-F1-model_v4_TED01","TED highly-symmetric fold AF-V4NKK3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1282361","Asticcacaulis sp. AC402"]]},{"id":"NCBITaxon:1283331","l":"Azotobacter vinelandii CA6","na":1,"nb":1,"a":[["TED%3AAF-M9YNZ0-F1-model_v4_TED02","TED novel fold AF-M9YNZ0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1283331","Azotobacter vinelandii CA6"]]},{"id":"NCBITaxon:1283841","l":"Stachybotrys chlorohalonatus IBT 40285","na":1,"nb":1,"a":[["TED%3AAF-A0A084QGW0-F1-model_v4_TED01","TED novel fold AF-A0A084QGW0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1283841","Stachybotrys chlorohalonatus IBT 40285"]]},{"id":"NCBITaxon:128403","l":"Scytonema hofmannii PCC 7110","na":1,"nb":1,"a":[["TED%3AAF-A0A139X3P3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A139X3P3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A128403","Scytonema hofmannii PCC 7110"]]},{"id":"NCBITaxon:1284686","l":"Anaerococcus lactolyticus S7-1-13","na":1,"nb":1,"a":[["TED%3AAF-A0A095X2X0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A095X2X0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1284686","Anaerococcus lactolyticus S7-1-13"]]},{"id":"NCBITaxon:1284708","l":"Tissierellia bacterium S7-1-4","na":1,"nb":1,"a":[["TED%3AAF-A0A095XBA2-F1-model_v4_TED03","TED novel fold AF-A0A095XBA2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1284708","Tissierellia bacterium S7-1-4"]]},{"id":"NCBITaxon:1285901","l":"Tessaracoccus defluvii","na":1,"nb":1,"a":[["TED%3AAF-A0A7H0H364-F1-model_v4_TED01","TED novel fold AF-A0A7H0H364-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1285901","Tessaracoccus defluvii"]]},{"id":"NCBITaxon:1285928","l":"Niabella drilacis","na":1,"nb":1,"a":[["TED%3AAF-A0A1G6TFZ5-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1G6TFZ5-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1285928","Niabella drilacis"]]},{"id":"NCBITaxon:1286186","l":"Gluconacetobacter aggeris","na":1,"nb":1,"a":[["TED%3AAF-A0A7W4IWG2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W4IWG2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1286186","Gluconacetobacter aggeris"]]},{"id":"NCBITaxon:1287089","l":"Mesorhizobium sp. L103C131B0","na":1,"nb":1,"a":[["TED%3AAF-X6JGH5-F1-model_v4_TED02","TED novel fold AF-X6JGH5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1287089","Mesorhizobium sp. L103C131B0"]]},{"id":"NCBITaxon:1287105","l":"Mesorhizobium sp. L2C066B000","na":1,"nb":1,"a":[["TED%3AAF-X6I5M7-F1-model_v4_TED04","TED highly-symmetric fold AF-X6I5M7-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1287105","Mesorhizobium sp. L2C066B000"]]},{"id":"NCBITaxon:1287117","l":"Mesorhizobium sp. L2C085B000","na":1,"nb":1,"a":[["TED%3AAF-X6GE96-F1-model_v4_TED01","TED novel fold AF-X6GE96-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1287117","Mesorhizobium sp. L2C085B000"]]},{"id":"NCBITaxon:1287182","l":"Mesorhizobium sp. L48C026A00","na":1,"nb":1,"a":[["TED%3AAF-X6FXQ1-F1-model_v4_TED03","TED novel fold AF-X6FXQ1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1287182","Mesorhizobium sp. L48C026A00"]]},{"id":"NCBITaxon:1287240","l":"Mesorhizobium sp. LNHC229A00","na":1,"nb":1,"a":[["TED%3AAF-X6F6C2-F1-model_v4_TED01","TED highly-symmetric fold AF-X6F6C2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1287240","Mesorhizobium sp. LNHC229A00"]]},{"id":"NCBITaxon:1287285","l":"Mesorhizobium sp. LSHC412B00","na":1,"nb":1,"a":[["TED%3AAF-X5X577-F1-model_v4_TED01","TED highly-symmetric fold AF-X5X577-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1287285","Mesorhizobium sp. LSHC412B00"]]},{"id":"NCBITaxon:1287322","l":"Mesorhizobium sp. LSJC265A00","na":1,"nb":1,"a":[["TED%3AAF-X5RW13-F1-model_v4_TED01","TED novel fold AF-X5RW13-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1287322","Mesorhizobium sp. LSJC265A00"]]},{"id":"NCBITaxon:1288970","l":"Magnetospira sp. QH-2","na":1,"nb":1,"a":[["TED%3AAF-W6KH56-F1-model_v4_TED01","TED novel fold AF-W6KH56-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1288970","Magnetospira sp. QH-2"]]},{"id":"NCBITaxon:1294296","l":"Luteibaculum oceani","na":1,"nb":1,"a":[["TED%3AAF-A0A5C6V805-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A5C6V805-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1294296","Luteibaculum oceani"]]},{"id":"NCBITaxon:1296344","l":"Merismopedia glauca CCAP 1448/3","na":1,"nb":1,"a":[["TED%3AAF-A0A2T1C1C4-F1-model_v4_TED02","TED novel fold AF-A0A2T1C1C4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1296344","Merismopedia glauca CCAP 1448/3"]]},{"id":"NCBITaxon:1297424","l":"Anaerobacterium chartisolvens","na":1,"nb":1,"a":[["TED%3AAF-A0A369ARR1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A369ARR1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1297424","Anaerobacterium chartisolvens"]]},{"id":"NCBITaxon:1297570","l":"Mesorhizobium sp. STM 4661","na":1,"nb":1,"a":[["TED%3AAF-M5FA19-F1-model_v4_TED01","TED novel fold AF-M5FA19-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1297570","Mesorhizobium sp. STM 4661"]]},{"id":"NCBITaxon:1298608","l":"Psychrobacter sp. JCM 18900","na":1,"nb":1,"a":[["TED%3AAF-X0RKN6-F1-model_v4_TED01","TED highly-symmetric fold AF-X0RKN6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1298608","Psychrobacter sp. JCM 18900"]]},{"id":"NCBITaxon:1298856","l":"Sphingomonas sp. URHD0007","na":1,"nb":1,"a":[["TED%3AAF-A0A2U1FWJ9-F1-model_v4_TED03","TED novel fold AF-A0A2U1FWJ9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1298856","Sphingomonas sp. URHD0007"]]},{"id":"NCBITaxon:1299328","l":"Mycobacterium kansasii 824","na":1,"nb":1,"a":[["TED%3AAF-X7YBI6-F1-model_v4_TED04","TED novel fold AF-X7YBI6-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1299328","Mycobacterium kansasii 824"]]},{"id":"NCBITaxon:1299998","l":"Tractidigestivibacter scatoligenes","na":1,"nb":1,"a":[["TED%3AAF-A0A100YXB1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A100YXB1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1299998","Tractidigestivibacter scatoligenes"]]},{"id":"NCBITaxon:1300150","l":"Enterococcus mundtii QU 25","na":1,"nb":1,"a":[["TED%3AAF-V5XLP0-F1-model_v4_TED02","TED highly-symmetric fold AF-V5XLP0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1300150","Enterococcus mundtii QU 25"]]},{"id":"NCBITaxon:1300915","l":"Anaeromyxobacter sp. PSR-1","na":1,"nb":1,"a":[["TED%3AAF-A0A0D6QKZ5-F1-model_v4_TED01","TED novel fold AF-A0A0D6QKZ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1300915","Anaeromyxobacter sp. PSR-1"]]},{"id":"NCBITaxon:1301086","l":"Bacillus sp. GeD10","na":1,"nb":1,"a":[["TED%3AAF-N1LKH2-F1-model_v4_TED01","TED novel fold AF-N1LKH2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1301086","Bacillus sp. GeD10"]]},{"id":"NCBITaxon:1301915","l":"Methanocaldococcus bathoardescens","na":1,"nb":1,"a":[["TED%3AAF-A0A076LC90-F1-model_v4_TED01","TED novel fold AF-A0A076LC90-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1301915","Methanocaldococcus bathoardescens"]]},{"id":"NCBITaxon:1302151","l":"Caloranaerobacter sp. TR13","na":1,"nb":1,"a":[["TED%3AAF-A0A0P8UY73-F1-model_v4_TED01","TED novel fold AF-A0A0P8UY73-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1302151","Caloranaerobacter sp. TR13"]]},{"id":"NCBITaxon:1303590","l":"Bombilactobacillus bombi","na":1,"nb":1,"a":[["TED%3AAF-A0A417Z5N1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A417Z5N1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1303590","Bombilactobacillus bombi"]]},{"id":"NCBITaxon:1304833","l":"Hassallia byssoidea VB512170","na":1,"nb":1,"a":[["TED%3AAF-A0A846HDF7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A846HDF7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1304833","Hassallia byssoidea VB512170"]]},{"id":"NCBITaxon:1304866","l":"Clostridium sp. ASBs410","na":1,"nb":1,"a":[["TED%3AAF-A0A7U9JZL6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7U9JZL6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1304866","Clostridium sp. ASBs410"]]},{"id":"NCBITaxon:1304873","l":"Pasteurella multocida subsp. multocida OH4807","na":1,"nb":1,"a":[["TED%3AAF-A0A0E3ZRL7-F1-model_v4_TED01","TED novel fold AF-A0A0E3ZRL7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1304873","Pasteurella multocida subsp. multocida OH4807"]]},{"id":"NCBITaxon:1304900","l":"Alteromonadaceae bacterium 2052S.S.stab0a.01","na":1,"nb":1,"a":[["TED%3AAF-A0A495DIH9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A495DIH9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1304900","Alteromonadaceae bacterium 2052S.S.stab0a.01"]]},{"id":"NCBITaxon:1304903","l":"Alteromonadaceae bacterium Bs31","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y6C7G2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y6C7G2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1304903","Alteromonadaceae bacterium Bs31"]]},{"id":"NCBITaxon:1306401","l":"Mycobacteroides abscessus subsp. bolletii CRM-0020","na":1,"nb":1,"a":[["TED%3AAF-A0A829HQB8-F1-model_v4_TED02","TED novel fold AF-A0A829HQB8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1306401","Mycobacteroides abscessus subsp. bolletii CRM-0020"]]},{"id":"NCBITaxon:1306861","l":"Colletotrichum tanaceti","na":1,"nb":1,"a":[["TED%3AAF-A0A4U6X365-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4U6X365-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1306861","Colletotrichum tanaceti"]]},{"id":"NCBITaxon:1306947","l":"candidate division TM6 bacterium JCVI TM6SC1","na":1,"nb":1,"a":[["TED%3AAF-A0A0D2K579-F1-model_v4_TED02","TED novel fold AF-A0A0D2K579-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1306947","candidate division TM6 bacterium JCVI TM6SC1"]]},{"id":"NCBITaxon:1307761","l":"Salinispira pacifica","na":1,"nb":1,"a":[["TED%3AAF-V5WIK3-F1-model_v4_TED01","TED highly-symmetric fold AF-V5WIK3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1307761","Salinispira pacifica"]]},{"id":"NCBITaxon:1307853","l":"Mesorhizobium neociceri","na":1,"nb":1,"a":[["TED%3AAF-A0A838B3L0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A838B3L0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1307853","Mesorhizobium neociceri"]]},{"id":"NCBITaxon:1312072","l":"Polaribacter sp. SA4-12","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y0MTL7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Y0MTL7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1312072","Polaribacter sp. SA4-12"]]},{"id":"NCBITaxon:1312363","l":"Roseovarius litorisediminis","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y5S2P8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y5S2P8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1312363","Roseovarius litorisediminis"]]},{"id":"NCBITaxon:1315974","l":"Sphingobium sp. TKS","na":1,"nb":1,"a":[["TED%3AAF-A0A126RV65-F1-model_v4_TED02","TED novel fold AF-A0A126RV65-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1315974","Sphingobium sp. TKS"]]},{"id":"NCBITaxon:1316194","l":"Penicillium subrubescens","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q5U3E9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q5U3E9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1316194","Penicillium subrubescens"]]},{"id":"NCBITaxon:1316588","l":"Fusobacterium nucleatum CTI-7","na":1,"nb":1,"a":[["TED%3AAF-A0A829KSD3-F1-model_v4_TED03","TED novel fold AF-A0A829KSD3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1316588","Fusobacterium nucleatum CTI-7"]]},{"id":"NCBITaxon:1316803","l":"Micromonospora taraxaci","na":1,"nb":1,"a":[["TED%3AAF-A0A561W8A9-F1-model_v4_TED01","TED novel fold AF-A0A561W8A9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1316803","Micromonospora taraxaci"]]},{"id":"NCBITaxon:1317064","l":"Phytophthora nicotianae P10297","na":1,"nb":1,"a":[["TED%3AAF-W2ZIJ1-F1-model_v4_TED03","TED highly-symmetric fold AF-W2ZIJ1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1317064","Phytophthora nicotianae P10297"]]},{"id":"NCBITaxon:1317066","l":"Phytophthora nicotianae P1976","na":1,"nb":1,"a":[["TED%3AAF-A0A080ZSM0-F1-model_v4_TED01","TED novel fold AF-A0A080ZSM0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1317066","Phytophthora nicotianae P1976"]]},{"id":"NCBITaxon:1317111","l":"Phaeobacter sp. 22II1-1F12B","na":1,"nb":1,"a":[["TED%3AAF-A0A254QQW0-F1-model_v4_TED05","TED novel fold AF-A0A254QQW0-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1317111","Phaeobacter sp. 22II1-1F12B"]]},{"id":"NCBITaxon:1321778","l":"Clostridiales bacterium oral taxon 876 str. F0540","na":1,"nb":1,"a":[["TED%3AAF-U2DBJ5-F1-model_v4_TED02","TED highly-symmetric fold AF-U2DBJ5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1321778","Clostridiales bacterium oral taxon 876 str. F0540"]]},{"id":"NCBITaxon:1321786","l":"Selenomonas sp. oral taxon 892 str. F0426","na":1,"nb":1,"a":[["TED%3AAF-U2JV27-F1-model_v4_TED02","TED highly-symmetric fold AF-U2JV27-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1321786","Selenomonas sp. oral taxon 892 str. F0426"]]},{"id":"NCBITaxon:1321820","l":"Gemella bergeri ATCC 700627","na":1,"nb":1,"a":[["TED%3AAF-U2QQY0-F1-model_v4_TED02","TED highly-symmetric fold AF-U2QQY0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1321820","Gemella bergeri ATCC 700627"]]},{"id":"NCBITaxon:1323745","l":"Arsukibacterium tuosuense","na":1,"nb":1,"a":[["TED%3AAF-A0A285JDX1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A285JDX1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1323745","Arsukibacterium tuosuense"]]},{"id":"NCBITaxon:13243","l":"Rarobacter faecitabidus","na":1,"nb":1,"a":[["TED%3AAF-A0A542ZUH8-F1-model_v4_TED03","TED novel fold AF-A0A542ZUH8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A13243","Rarobacter faecitabidus"]]},{"id":"NCBITaxon:1324314","l":"Paenibacillus selenitireducens","na":1,"nb":1,"a":[["TED%3AAF-A0A1T2XFE4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1T2XFE4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1324314","Paenibacillus selenitireducens"]]},{"id":"NCBITaxon:1324350","l":"Acinetobacter equi","na":1,"nb":1,"a":[["TED%3AAF-A0A0N9WF70-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0N9WF70-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1324350","Acinetobacter equi"]]},{"id":"NCBITaxon:1324935","l":"Limisphaera ngatamarikiensis","na":1,"nb":1,"a":[["TED%3AAF-A0A6M1RI37-F1-model_v4_TED01","TED novel fold AF-A0A6M1RI37-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1324935","Limisphaera ngatamarikiensis"]]},{"id":"NCBITaxon:1325107","l":"Bradyrhizobium zhanjiangense","na":1,"nb":1,"a":[["TED%3AAF-A0A4V1KWK5-F1-model_v4_TED01","TED novel fold AF-A0A4V1KWK5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1325107","Bradyrhizobium zhanjiangense"]]},{"id":"NCBITaxon:1325120","l":"Bradyrhizobium sp. CCBAU 53421","na":1,"nb":1,"a":[["TED%3AAF-A0A7S7TT02-F1-model_v4_TED01","TED novel fold AF-A0A7S7TT02-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1325120","Bradyrhizobium sp. CCBAU 53421"]]},{"id":"NCBITaxon:1325130","l":"Helicobacter fennelliae MRY12-0050","na":1,"nb":1,"a":[["TED%3AAF-T1DVF5-F1-model_v4_TED01","TED highly-symmetric fold AF-T1DVF5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1325130","Helicobacter fennelliae MRY12-0050"]]},{"id":"NCBITaxon:1325733","l":"Fusarium floridanum","na":1,"nb":1,"a":[["TED%3AAF-A0A428P9I3-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A428P9I3-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1325733","Fusarium floridanum"]]},{"id":"NCBITaxon:1325734","l":"Fusarium duplospermum","na":1,"nb":1,"a":[["TED%3AAF-A0A428QAC0-F1-model_v4_TED01","TED novel fold AF-A0A428QAC0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1325734","Fusarium duplospermum"]]},{"id":"NCBITaxon:1326980","l":"Candidatus Aramenus sulfurataquae","na":1,"nb":1,"a":[["TED%3AAF-W7KV71-F1-model_v4_TED02","TED novel fold AF-W7KV71-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1326980","Candidatus Aramenus sulfurataquae"]]},{"id":"NCBITaxon:1327752","l":"Idiomarina aquatica","na":1,"nb":1,"a":[["TED%3AAF-A0A4R6P1E4-F1-model_v4_TED03","TED novel fold AF-A0A4R6P1E4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1327752","Idiomarina aquatica"]]},{"id":"NCBITaxon:13290","l":"Tilletia caries","na":1,"nb":1,"a":[["TED%3AAF-A0A177V7I0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A177V7I0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A13290","Tilletia caries"]]},{"id":"NCBITaxon:1329640","l":"Alkalispirochaeta odontotermitis","na":1,"nb":1,"a":[["TED%3AAF-A0A0A0DL64-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0A0DL64-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1329640","Alkalispirochaeta odontotermitis"]]},{"id":"NCBITaxon:1330035","l":"Osedax symbiont Rs2","na":1,"nb":1,"a":[["TED%3AAF-S6HJ22-F1-model_v4_TED01","TED novel fold AF-S6HJ22-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1330035","Osedax symbiont Rs2"]]},{"id":"NCBITaxon:1332069","l":"Pantoea sp. AS-PWVM4","na":1,"nb":1,"a":[["TED%3AAF-A0A7U9NU73-F1-model_v4_TED01","TED novel fold AF-A0A7U9NU73-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1332069","Pantoea sp. AS-PWVM4"]]},{"id":"NCBITaxon:1333523","l":"Salinarchaeum sp. Harcht-Bsk1","na":1,"nb":1,"a":[["TED%3AAF-R4VXQ2-F1-model_v4_TED01","TED highly-symmetric fold AF-R4VXQ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1333523","Salinarchaeum sp. Harcht-Bsk1"]]},{"id":"NCBITaxon:1333662","l":"Polaribacter atrinae","na":1,"nb":1,"a":[["TED%3AAF-A0A176TCF4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A176TCF4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1333662","Polaribacter atrinae"]]},{"id":"NCBITaxon:133412","l":"Smittium culicis","na":1,"nb":1,"a":[["TED%3AAF-A0A1R1XYA9-F1-model_v4_TED02","TED novel fold AF-A0A1R1XYA9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A133412","Smittium culicis"]]},{"id":"NCBITaxon:1335322","l":"Mycobacterium sp. MAC_080597_8934","na":1,"nb":1,"a":[["TED%3AAF-X7VB87-F1-model_v4_TED03","TED novel fold AF-X7VB87-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1335322","Mycobacterium sp. MAC_080597_8934"]]},{"id":"NCBITaxon:1336794","l":"Formosa sp. Hel1_33_131","na":1,"nb":1,"a":[["TED%3AAF-A0A1D7XZK9-F1-model_v4_TED01","TED novel fold AF-A0A1D7XZK9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1336794","Formosa sp. Hel1_33_131"]]},{"id":"NCBITaxon:1336795","l":"Formosa sp. Hel3_A1_48","na":1,"nb":1,"a":[["TED%3AAF-A0A1D7XRD8-F1-model_v4_TED03","TED novel fold AF-A0A1D7XRD8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1336795","Formosa sp. Hel3_A1_48"]]},{"id":"NCBITaxon:1338009","l":"Sphingobacterium sp. IITKGP-BTPF85","na":1,"nb":1,"a":[["TED%3AAF-A0A0M3C8D6-F1-model_v4_TED03","TED novel fold AF-A0A0M3C8D6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1338009","Sphingobacterium sp. IITKGP-BTPF85"]]},{"id":"NCBITaxon:133804","l":"uncultured marine gamma proteobacterium EBAC31A08","na":1,"nb":1,"a":[["PROSITE%3APS00950","Bacterial rhodopsins signature 1"]],"b":[["NCBITaxon%3A133804","uncultured marine gamma proteobacterium EBAC31A08"]]},{"id":"NCBITaxon:1338689","l":"Pseudomonas sp. JY-Q","na":1,"nb":1,"a":[["TED%3AAF-A0A173HBY6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A173HBY6-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1338689","Pseudomonas sp. JY-Q"]]},{"id":"NCBITaxon:1341132","l":"Aspergillus welwitschiae","na":1,"nb":1,"a":[["TED%3AAF-A0A3F3Q9J6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3F3Q9J6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1341132","Aspergillus welwitschiae"]]},{"id":"NCBITaxon:1341157","l":"Ruminococcus flavefaciens 007c","na":1,"nb":1,"a":[["TED%3AAF-W7UF30-F1-model_v4_TED01","TED novel fold AF-W7UF30-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1341157","Ruminococcus flavefaciens 007c"]]},{"id":"NCBITaxon:1342794","l":"Photobacterium sanctipauli","na":1,"nb":1,"a":[["TED%3AAF-A0A2T3P194-F1-model_v4_TED01","TED novel fold AF-A0A2T3P194-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1342794","Photobacterium sanctipauli"]]},{"id":"NCBITaxon:1345023","l":"Exiguobacterium chiriqhucha RW-2","na":1,"nb":1,"a":[["TED%3AAF-U1LVJ8-F1-model_v4_TED03","TED highly-symmetric fold AF-U1LVJ8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1345023","Exiguobacterium chiriqhucha RW-2"]]},{"id":"NCBITaxon:1346286","l":"Indolivaga macrotermitis","na":1,"nb":1,"a":[["TED%3AAF-A0A1M4VXX6-F1-model_v4_TED02","TED novel fold AF-A0A1M4VXX6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1346286","Indolivaga macrotermitis"]]},{"id":"NCBITaxon:134676","l":"Actinoplanes sp. SE50/110","na":1,"nb":1,"a":[["TED%3AAF-G8RZI7-F1-model_v4_TED02","TED novel fold AF-G8RZI7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A134676","Actinoplanes sp. SE50/110"]]},{"id":"NCBITaxon:1347341","l":"Serratia symbiotica SCt-VLC","na":1,"nb":1,"a":[["TED%3AAF-A0A068R9A3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A068R9A3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1347341","Serratia symbiotica SCt-VLC"]]},{"id":"NCBITaxon:1347389","l":"Colletotrichum sidae","na":1,"nb":1,"a":[["TED%3AAF-A0A4R8TJT3-F1-model_v4_TED01","TED novel fold AF-A0A4R8TJT3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1347389","Colletotrichum sidae"]]},{"id":"NCBITaxon:1347390","l":"Colletotrichum spinosum","na":1,"nb":1,"a":[["TED%3AAF-A0A4R8QPW4-F1-model_v4_TED02","TED novel fold AF-A0A4R8QPW4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1347390","Colletotrichum spinosum"]]},{"id":"NCBITaxon:1348114","l":"Pseudoalteromonas piratica","na":1,"nb":1,"a":[["TED%3AAF-A0A0A7EDY8-F1-model_v4_TED01","TED novel fold AF-A0A0A7EDY8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1348114","Pseudoalteromonas piratica"]]},{"id":"NCBITaxon:1348429","l":"Effusibacillus lacus","na":1,"nb":1,"a":[["TED%3AAF-A0A292YJ73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A292YJ73-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1348429","Effusibacillus lacus"]]},{"id":"NCBITaxon:1348612","l":"Diversispora epigaea","na":1,"nb":1,"a":[["TED%3AAF-A0A397JCT7-F1-model_v4_TED03","TED novel fold AF-A0A397JCT7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1348612","Diversispora epigaea"]]},{"id":"NCBITaxon:1349436","l":"Paenibacillus sp. P46E","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q5XU69-F1-model_v4_TED02","TED novel fold AF-A0A1Q5XU69-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1349436","Paenibacillus sp. P46E"]]},{"id":"NCBITaxon:135208","l":"Hericium alpestre","na":1,"nb":1,"a":[["TED%3AAF-A0A4Y9ZHN8-F1-model_v4_TED01","TED novel fold AF-A0A4Y9ZHN8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A135208","Hericium alpestre"]]},{"id":"NCBITaxon:1353009","l":"Trametes coccinea BRFM310","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y2I6T8-F1-model_v4_TED02","TED novel fold AF-A0A1Y2I6T8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1353009","Trametes coccinea BRFM310"]]},{"id":"NCBITaxon:1353138","l":"Synechococcus sp. CBW1006","na":1,"nb":1,"a":[["TED%3AAF-A0A7T1I3C1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T1I3C1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1353138","Synechococcus sp. CBW1006"]]},{"id":"NCBITaxon:1353529","l":"Bacteriovorax sp. BSW11_IV","na":1,"nb":1,"a":[["TED%3AAF-T0T117-F1-model_v4_TED02","TED highly-symmetric fold AF-T0T117-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1353529","Bacteriovorax sp. BSW11_IV"]]},{"id":"NCBITaxon:1353886","l":"Caballeronia cordobensis","na":1,"nb":1,"a":[["TED%3AAF-A0A158GFG3-F1-model_v4_TED02","TED novel fold AF-A0A158GFG3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1353886","Caballeronia cordobensis"]]},{"id":"NCBITaxon:1357508","l":"Nostoc calcicola FACHB-389","na":1,"nb":1,"a":[["TED%3AAF-A0A1U7I4W4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1U7I4W4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1357508","Nostoc calcicola FACHB-389"]]},{"id":"NCBITaxon:1357716","l":"Batrachochytrium salamandrivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A1S8W4I2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S8W4I2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1357716","Batrachochytrium salamandrivorans"]]},{"id":"NCBITaxon:1358027","l":"Limosilactobacillus reuteri TD1","na":1,"nb":1,"a":[["TED%3AAF-S5NS22-F1-model_v4_TED01","TED novel fold AF-S5NS22-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1358027","Limosilactobacillus reuteri TD1"]]},{"id":"NCBITaxon:1365251","l":"Pseudoalteromonas luteoviolacea H33","na":1,"nb":1,"a":[["TED%3AAF-A0A161Y3H3-F1-model_v4_TED01","TED novel fold AF-A0A161Y3H3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1365251","Pseudoalteromonas luteoviolacea H33"]]},{"id":"NCBITaxon:1365253","l":"Pseudoalteromonas luteoviolacea NCIMB 1942","na":1,"nb":1,"a":[["TED%3AAF-A0A167AQV7-F1-model_v4_TED02","TED novel fold AF-A0A167AQV7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1365253","Pseudoalteromonas luteoviolacea NCIMB 1942"]]},{"id":"NCBITaxon:1367881","l":"Halorientalis persicus","na":1,"nb":1,"a":[["TED%3AAF-A0A1H8S3D3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H8S3D3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1367881","Halorientalis persicus"]]},{"id":"NCBITaxon:13706","l":"Syncephalastrum racemosum","na":1,"nb":1,"a":[["TED%3AAF-A0A1X2HDD3-F1-model_v4_TED01","TED novel fold AF-A0A1X2HDD3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A13706","Syncephalastrum racemosum"]]},{"id":"NCBITaxon:1380412","l":"Devosia sp. DBB001","na":1,"nb":1,"a":[["TED%3AAF-A0A024KHJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A024KHJ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1380412","Devosia sp. DBB001"]]},{"id":"NCBITaxon:1382356","l":"Thermorudis peleae","na":1,"nb":1,"a":[["TED%3AAF-A0A831TAE2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A831TAE2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1382356","Thermorudis peleae"]]},{"id":"NCBITaxon:1382522","l":"Kuraishia capsulata CBS 1993","na":1,"nb":1,"a":[["TED%3AAF-W6MUB0-F1-model_v4_TED01","TED novel fold AF-W6MUB0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1382522","Kuraishia capsulata CBS 1993"]]},{"id":"NCBITaxon:1383067","l":"Desulforamulus profundi","na":1,"nb":1,"a":[["TED%3AAF-A0A2C6MBR6-F1-model_v4_TED01","TED novel fold AF-A0A2C6MBR6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1383067","Desulforamulus profundi"]]},{"id":"NCBITaxon:1383844","l":"Halorubrum persicum","na":1,"nb":1,"a":[["TED%3AAF-A0A2G1WLM2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2G1WLM2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1383844","Halorubrum persicum"]]},{"id":"NCBITaxon:1385367","l":"Snodgrassella alvi SCGC AB-598-J21","na":1,"nb":1,"a":[["TED%3AAF-A0A074VYV1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A074VYV1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1385367","Snodgrassella alvi SCGC AB-598-J21"]]},{"id":"NCBITaxon:1385624","l":"Desulfofustis sp. PB-SRB1","na":1,"nb":1,"a":[["TED%3AAF-V4J0S4-F1-model_v4_TED02","TED novel fold AF-V4J0S4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1385624","Desulfofustis sp. PB-SRB1"]]},{"id":"NCBITaxon:1385975","l":"Algisphaera agarilytica","na":1,"nb":1,"a":[["TED%3AAF-A0A7X0H9L7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X0H9L7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1385975","Algisphaera agarilytica"]]},{"id":"NCBITaxon:1386941","l":"Synechococcus sp. MVIR-18-1","na":1,"nb":1,"a":[["TED%3AAF-A0A7G8F7M3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7G8F7M3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1386941","Synechococcus sp. MVIR-18-1"]]},{"id":"NCBITaxon:1387779","l":"Cohnella nanjingensis","na":1,"nb":1,"a":[["TED%3AAF-A0A7X0RVC7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7X0RVC7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1387779","Cohnella nanjingensis"]]},{"id":"NCBITaxon:1389935","l":"Achromobacter animicus","na":1,"nb":1,"a":[["TED%3AAF-A0A6S6ZIK1-F1-model_v4_TED02","TED novel fold AF-A0A6S6ZIK1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1389935","Achromobacter animicus"]]},{"id":"NCBITaxon:1390185","l":"Pseudoalteromonas sp. DL-6","na":1,"nb":1,"a":[["TED%3AAF-A0A4P6T1Q8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P6T1Q8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1390185","Pseudoalteromonas sp. DL-6"]]},{"id":"NCBITaxon:1390249","l":"Desulfuribacillus stibiiarsenatis","na":1,"nb":1,"a":[["TED%3AAF-A0A1E5L3L8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E5L3L8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1390249","Desulfuribacillus stibiiarsenatis"]]},{"id":"NCBITaxon:1392877","l":"Pseudomonas oryzae","na":1,"nb":1,"a":[["TED%3AAF-A0A1H1M2A5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H1M2A5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1392877","Pseudomonas oryzae"]]},{"id":"NCBITaxon:1392998","l":"Candidatus Methanoperedens nitratireducens","na":1,"nb":1,"a":[["TED%3AAF-A0A062V4L1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A062V4L1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1392998","Candidatus Methanoperedens nitratireducens"]]},{"id":"NCBITaxon:1394711","l":"Candidatus Saccharibacteria bacterium RAAC3_TM7_1","na":1,"nb":1,"a":[["TED%3AAF-V5RW81-F1-model_v4_TED01","TED highly-symmetric fold AF-V5RW81-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1394711","Candidatus Saccharibacteria bacterium RAAC3_TM7_1"]]},{"id":"NCBITaxon:1394984","l":"Giardia duodenalis assemblage B","na":1,"nb":1,"a":[["TED%3AAF-A0A132NVQ6-F1-model_v4_TED03","TED novel fold AF-A0A132NVQ6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1394984","Giardia duodenalis assemblage B"]]},{"id":"NCBITaxon:1395119","l":"Salmonella enterica subsp. arizonae serovar 18:z4,z23:- str. CVM N26626","na":1,"nb":1,"a":[["TED%3AAF-A0A3S5YLL3-F1-model_v4_TED02","TED novel fold AF-A0A3S5YLL3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1395119","Salmonella enterica subsp. arizonae serovar 18:z4,z23:- str. CVM N26626"]]},{"id":"NCBITaxon:1395516","l":"Pseudomonas atacamensis R28-S","na":1,"nb":1,"a":[["TED%3AAF-V8R7U0-F1-model_v4_TED01","TED highly-symmetric fold AF-V8R7U0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1395516","Pseudomonas atacamensis R28-S"]]},{"id":"NCBITaxon:1395570","l":"Burkholderia cepacia JBK9","na":1,"nb":1,"a":[["TED%3AAF-A0A0U4DQI1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0U4DQI1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1395570","Burkholderia cepacia JBK9"]]},{"id":"NCBITaxon:1395587","l":"Paenibacillus sp. MAEPY2","na":1,"nb":1,"a":[["TED%3AAF-A0A0A2UF58-F1-model_v4_TED01","TED novel fold AF-A0A0A2UF58-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1395587","Paenibacillus sp. MAEPY2"]]},{"id":"NCBITaxon:1395589","l":"Leptospira interrogans serovar Linhai str. 56609","na":1,"nb":1,"a":[["TED%3AAF-A0A0C5WN51-F1-model_v4_TED01","TED novel fold AF-A0A0C5WN51-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1395589","Leptospira interrogans serovar Linhai str. 56609"]]},{"id":"NCBITaxon:1395624","l":"Francisella sp. LA112445","na":1,"nb":1,"a":[["TED%3AAF-A0A7M3TD02-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7M3TD02-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1395624","Francisella sp. LA112445"]]},{"id":"NCBITaxon:1396819","l":"Solimonas terrae","na":1,"nb":1,"a":[["TED%3AAF-A0A6M2BWP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6M2BWP8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1396819","Solimonas terrae"]]},{"id":"NCBITaxon:1397112","l":"Patiriisocius marinus","na":1,"nb":1,"a":[["TED%3AAF-A0A5J4J2Z6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5J4J2Z6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1397112","Patiriisocius marinus"]]},{"id":"NCBITaxon:1397368","l":"Pseudonocardia sediminis","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q7UUS6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q7UUS6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1397368","Pseudonocardia sediminis"]]},{"id":"NCBITaxon:1397476","l":"Martelella radicis","na":1,"nb":1,"a":[["TED%3AAF-A0A7W6KR34-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7W6KR34-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1397476","Martelella radicis"]]},{"id":"NCBITaxon:1398203","l":"Xenorhabdus bovienii str. kraussei Quebec","na":1,"nb":1,"a":[["TED%3AAF-A0A077PJZ1-F1-model_v4_TED02","TED novel fold AF-A0A077PJZ1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1398203","Xenorhabdus bovienii str. kraussei Quebec"]]},{"id":"NCBITaxon:1400155","l":"Enterobacter hormaechei subsp. hoffmannii UCI 50","na":1,"nb":1,"a":[["Pfam%3APF26398","Cap2 central linker domain"]],"b":[["NCBITaxon%3A1400155","Enterobacter hormaechei subsp. hoffmannii UCI 50"]]},{"id":"NCBITaxon:1400863","l":"Candidatus Competibacter denitrificans Run_A_D11","na":1,"nb":1,"a":[["TED%3AAF-W6MA62-F1-model_v4_TED02","TED novel fold AF-W6MA62-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1400863","Candidatus Competibacter denitrificans Run_A_D11"]]},{"id":"NCBITaxon:1400979","l":"Pontibacter diazotrophicus","na":1,"nb":1,"a":[["TED%3AAF-A0A3D8L6P6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D8L6P6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1400979","Pontibacter diazotrophicus"]]},{"id":"NCBITaxon:1401073","l":"Prevotella melaninogenica DNF00666","na":1,"nb":1,"a":[["TED%3AAF-A0A096AJX9-F1-model_v4_TED01","TED novel fold AF-A0A096AJX9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1401073","Prevotella melaninogenica DNF00666"]]},{"id":"NCBITaxon:1401087","l":"Dickeya aquatica","na":1,"nb":1,"a":[["TED%3AAF-A0A375A9L4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A375A9L4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1401087","Dickeya aquatica"]]},{"id":"NCBITaxon:1402860","l":"[Bacillus] enclensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0V8H3K4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0V8H3K4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1402860","[Bacillus] enclensis"]]},{"id":"NCBITaxon:1403564","l":"Salmonella enterica subsp. enterica serovar Hull","na":1,"nb":1,"a":[["TED%3AAF-A0A5X4PE40-F1-model_v4_TED01","TED novel fold AF-A0A5X4PE40-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1403564","Salmonella enterica subsp. enterica serovar Hull"]]},{"id":"NCBITaxon:1403937","l":"Streptococcus sp. DORA_10","na":1,"nb":1,"a":[["TED%3AAF-W1UTG4-F1-model_v4_TED01","TED novel fold AF-W1UTG4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1403937","Streptococcus sp. DORA_10"]]},{"id":"NCBITaxon:1403947","l":"Streptococcus parasanguinis DORA_23_24","na":1,"nb":1,"a":[["TED%3AAF-W1VBZ4-F1-model_v4_TED01","TED highly-symmetric fold AF-W1VBZ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1403947","Streptococcus parasanguinis DORA_23_24"]]},{"id":"NCBITaxon:1403949","l":"Veillonella dispar DORA_11","na":1,"nb":1,"a":[["TED%3AAF-W1UZK5-F1-model_v4_TED02","TED novel fold AF-W1UZK5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1403949","Veillonella dispar DORA_11"]]},{"id":"NCBITaxon:1404367","l":"Bradyrhizobium symbiodeficiens","na":1,"nb":1,"a":[["TED%3AAF-A0A6G9A9B1-F1-model_v4_TED01","TED novel fold AF-A0A6G9A9B1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1404367","Bradyrhizobium symbiodeficiens"]]},{"id":"NCBITaxon:1404429","l":"Bradyrhizobium sp. 2S1","na":1,"nb":1,"a":[["TED%3AAF-A0A850HYB4-F1-model_v4_TED01","TED novel fold AF-A0A850HYB4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1404429","Bradyrhizobium sp. 2S1"]]},{"id":"NCBITaxon:1404888","l":"Bradyrhizobium sp. 1(2017)","na":1,"nb":1,"a":[["TED%3AAF-A0A6G8U5S3-F1-model_v4_TED02","TED novel fold AF-A0A6G8U5S3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1404888","Bradyrhizobium sp. 1(2017)"]]},{"id":"NCBITaxon:1407017","l":"Clostridium botulinum B str. Osaka05","na":1,"nb":1,"a":[["TED%3AAF-A0A060N8U1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A060N8U1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1407017","Clostridium botulinum B str. Osaka05"]]},{"id":"NCBITaxon:1407055","l":"Candidatus Nitrosotenuis uzonensis","na":1,"nb":1,"a":[["TED%3AAF-A0A812F2F8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A812F2F8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1407055","Candidatus Nitrosotenuis uzonensis"]]},{"id":"NCBITaxon:1408161","l":"Plenodomus tracheiphilus IPT5","na":1,"nb":1,"a":[["TED%3AAF-A0A6A7APH0-F1-model_v4_TED02","TED novel fold AF-A0A6A7APH0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1408161","Plenodomus tracheiphilus IPT5"]]},{"id":"NCBITaxon:1408254","l":"Brevibacillus panacihumi W25","na":1,"nb":1,"a":[["TED%3AAF-V6MJN1-F1-model_v4_TED01","TED novel fold AF-V6MJN1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1408254","Brevibacillus panacihumi W25"]]},{"id":"NCBITaxon:1408281","l":"Endomicrobium proavitum","na":1,"nb":1,"a":[["TED%3AAF-A0A0G3WK72-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G3WK72-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1408281","Endomicrobium proavitum"]]},{"id":"NCBITaxon:1408282","l":"Geobacillus thermopakistaniensis","na":1,"nb":1,"a":[["Pfam%3APF02903","Alpha amylase, N-terminal ig-like domain"]],"b":[["NCBITaxon%3A1408282","Geobacillus thermopakistaniensis"]]},{"id":"NCBITaxon:1408889","l":"Clostridium tyrobutyricum DIVETGP","na":1,"nb":1,"a":[["TED%3AAF-W6NH89-F1-model_v4_TED02","TED novel fold AF-W6NH89-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1408889","Clostridium tyrobutyricum DIVETGP"]]},{"id":"NCBITaxon:1408890","l":"Rhodobacter sp. CACIA14H1","na":1,"nb":1,"a":[["TED%3AAF-V7EIX2-F1-model_v4_TED07","TED highly-symmetric fold AF-V7EIX2-F1-model_v4_TED07"]],"b":[["NCBITaxon%3A1408890","Rhodobacter sp. CACIA14H1"]]},{"id":"NCBITaxon:1410573","l":"uncultured Acidilobus sp. MG","na":1,"nb":1,"a":[["TED%3AAF-V4JVL8-F1-model_v4_TED01","TED highly-symmetric fold AF-V4JVL8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1410573","uncultured Acidilobus sp. MG"]]},{"id":"NCBITaxon:1410606","l":"Candidatus Nitrosopelagicus brevis","na":1,"nb":1,"a":[["TED%3AAF-A0A0A7V1V1-F1-model_v4_TED03","TED novel fold AF-A0A0A7V1V1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1410606","Candidatus Nitrosopelagicus brevis"]]},{"id":"NCBITaxon:1410619","l":"Serratia sp. DD3","na":1,"nb":1,"a":[["TED%3AAF-A0A084A1V1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A084A1V1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1410619","Serratia sp. DD3"]]},{"id":"NCBITaxon:1410655","l":"Enterococcus faecalis PF3","na":1,"nb":1,"a":[["TED%3AAF-V7ZKW3-F1-model_v4_TED02","TED highly-symmetric fold AF-V7ZKW3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1410655","Enterococcus faecalis PF3"]]},{"id":"NCBITaxon:1411118","l":"Thermomonospora cellulosilytica","na":1,"nb":1,"a":[["TED%3AAF-A0A7W3N3V2-F1-model_v4_TED01","TED novel fold AF-A0A7W3N3V2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1411118","Thermomonospora cellulosilytica"]]},{"id":"NCBITaxon:1411122","l":"Hymenobacter luteus","na":1,"nb":1,"a":[["TED%3AAF-A0A7W9SYW3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W9SYW3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1411122","Hymenobacter luteus"]]},{"id":"NCBITaxon:1411148","l":"Tannerella sp. oral taxon BU063 isolate Cell 2","na":1,"nb":1,"a":[["TED%3AAF-W2C603-F1-model_v4_TED04","TED novel fold AF-W2C603-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1411148","Tannerella sp. oral taxon BU063 isolate Cell 2"]]},{"id":"NCBITaxon:1415","l":"Bacillus sp. KSM-635","na":1,"nb":1,"a":[["Pfam%3APF03424","Carbohydrate binding domain (family 17/28)"]],"b":[["NCBITaxon%3A1415","Bacillus sp. KSM-635"]]},{"id":"NCBITaxon:1415168","l":"Lactococcus cremoris subsp. cremoris GE214","na":1,"nb":1,"a":[["TED%3AAF-A0A084AAH4-F1-model_v4_TED01","TED novel fold AF-A0A084AAH4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1415168","Lactococcus cremoris subsp. cremoris GE214"]]},{"id":"NCBITaxon:1415546","l":"Streptomyces sp. MMG1533","na":1,"nb":1,"a":[["TED%3AAF-A0A0M8TUR4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0M8TUR4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1415546","Streptomyces sp. MMG1533"]]},{"id":"NCBITaxon:1415551","l":"Streptomyces sp. WM4235","na":1,"nb":1,"a":[["TED%3AAF-A0A0M8SSR9-F1-model_v4_TED01","TED novel fold AF-A0A0M8SSR9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1415551","Streptomyces sp. WM4235"]]},{"id":"NCBITaxon:1415773","l":"Mycoplasma ovis str. Michigan","na":1,"nb":1,"a":[["TED%3AAF-V9R9K3-F1-model_v4_TED01","TED novel fold AF-V9R9K3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1415773","Mycoplasma ovis str. Michigan"]]},{"id":"NCBITaxon:1415782","l":"Mycolicibacterium mucogenicum 261Sha1.1M5","na":1,"nb":1,"a":[["TED%3AAF-A0A495CRS6-F1-model_v4_TED07","TED novel fold AF-A0A495CRS6-F1-model_v4_TED07"]],"b":[["NCBITaxon%3A1415782","Mycolicibacterium mucogenicum 261Sha1.1M5"]]},{"id":"NCBITaxon:1416","l":"Bacillus sp. 707","na":1,"nb":1,"a":[["Pfam%3APF09154","Alpha-amylase C-terminal"]],"b":[["NCBITaxon%3A1416","Bacillus sp. 707"]]},{"id":"NCBITaxon:1417629","l":"Anaerosolibacter carboniphilus","na":1,"nb":1,"a":[["TED%3AAF-A0A841KW00-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841KW00-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1417629","Anaerosolibacter carboniphilus"]]},{"id":"NCBITaxon:1418234","l":"Sneathiella chungangensis","na":1,"nb":1,"a":[["TED%3AAF-A0A845MJ63-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A845MJ63-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1418234","Sneathiella chungangensis"]]},{"id":"NCBITaxon:1420851","l":"Methyloprofundus sedimenti","na":1,"nb":1,"a":[["TED%3AAF-A0A1V8M3J1-F1-model_v4_TED01","TED novel fold AF-A0A1V8M3J1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1420851","Methyloprofundus sedimenti"]]},{"id":"NCBITaxon:1420899","l":"Streptomyces klenkii","na":1,"nb":1,"a":[["TED%3AAF-A0A3A9ZW83-F1-model_v4_TED01","TED novel fold AF-A0A3A9ZW83-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1420899","Streptomyces klenkii"]]},{"id":"NCBITaxon:1423959","l":"Chryseobacterium contaminans","na":1,"nb":1,"a":[["TED%3AAF-A0A1M7CGX0-F1-model_v4_TED01","TED novel fold AF-A0A1M7CGX0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1423959","Chryseobacterium contaminans"]]},{"id":"NCBITaxon:1424653","l":"Caminibacter pacificus","na":1,"nb":1,"a":[["TED%3AAF-A0A3N1YR43-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3N1YR43-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1424653","Caminibacter pacificus"]]},{"id":"NCBITaxon:142586","l":"Eubacterium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A3D0GVH0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D0GVH0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A142586","Eubacterium sp."]]},{"id":"NCBITaxon:142588","l":"Isobaculum melis","na":1,"nb":1,"a":[["TED%3AAF-A0A1H9QPQ1-F1-model_v4_TED07","TED highly-symmetric fold AF-A0A1H9QPQ1-F1-model_v4_TED07"]],"b":[["NCBITaxon%3A142588","Isobaculum melis"]]},{"id":"NCBITaxon:1427296","l":"Mycobacterium avium XTB13-223","na":1,"nb":1,"a":[["TED%3AAF-A0A049DXN9-F1-model_v4_TED01","TED novel fold AF-A0A049DXN9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1427296","Mycobacterium avium XTB13-223"]]},{"id":"NCBITaxon:1427370","l":"Chlamydia pecorum DBDeUG","na":1,"nb":1,"a":[["TED%3AAF-V8TRT3-F1-model_v4_TED01","TED highly-symmetric fold AF-V8TRT3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1427370","Chlamydia pecorum DBDeUG"]]},{"id":"NCBITaxon:1428644","l":"Mangrovactinospora gilvigrisea","na":1,"nb":1,"a":[["TED%3AAF-A0A1J7BG73-F1-model_v4_TED01","TED novel fold AF-A0A1J7BG73-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1428644","Mangrovactinospora gilvigrisea"]]},{"id":"NCBITaxon:1429438","l":"Candidatus Entotheonella factor","na":1,"nb":1,"a":[["TED%3AAF-W4LG66-F1-model_v4_TED01","TED highly-symmetric fold AF-W4LG66-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1429438","Candidatus Entotheonella factor"]]},{"id":"NCBITaxon:1432049","l":"Rhizobium etli bv. phaseoli str. IE4803","na":1,"nb":1,"a":[["TED%3AAF-A0A7U4IWE8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7U4IWE8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1432049","Rhizobium etli bv. phaseoli str. IE4803"]]},{"id":"NCBITaxon:1432564","l":"Brachybacterium aquaticum","na":1,"nb":1,"a":[["TED%3AAF-A0A841ADV7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A841ADV7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1432564","Brachybacterium aquaticum"]]},{"id":"NCBITaxon:143451","l":"Plasmopara viticola","na":1,"nb":1,"a":[["Pfam%3APF08315","cwf18 pre-mRNA splicing factor"]],"b":[["NCBITaxon%3A143451","Plasmopara viticola"]]},{"id":"NCBITaxon:1434707","l":"Taibaiella chishuiensis","na":1,"nb":1,"a":[["TED%3AAF-A0A2P8D5N9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2P8D5N9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1434707","Taibaiella chishuiensis"]]},{"id":"NCBITaxon:1435370","l":"Burkholderia pseudomallei MSHR4000","na":1,"nb":1,"a":[["TED%3AAF-A0A0F6L4H7-F1-model_v4_TED01","TED novel fold AF-A0A0F6L4H7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1435370","Burkholderia pseudomallei MSHR4000"]]},{"id":"NCBITaxon:1435465","l":"Fluviicoccus keumensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q7ZC11-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q7ZC11-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1435465","Fluviicoccus keumensis"]]},{"id":"NCBITaxon:1436","l":"Bacillus thuringiensis serovar entomocidus","na":1,"nb":1,"a":[["Pfam%3APF18449","Pesticidal crystal protein Cry1Aa, domain IV"]],"b":[["NCBITaxon%3A1436","Bacillus thuringiensis serovar entomocidus"]]},{"id":"NCBITaxon:1437059","l":"Magnetospirillum moscoviense","na":1,"nb":1,"a":[["TED%3AAF-A0A178MYG0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A178MYG0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1437059","Magnetospirillum moscoviense"]]},{"id":"NCBITaxon:1437444","l":"Hydrogenophaga sp. T4","na":1,"nb":1,"a":[["TED%3AAF-W7WNT5-F1-model_v4_TED01","TED highly-symmetric fold AF-W7WNT5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1437444","Hydrogenophaga sp. T4"]]},{"id":"NCBITaxon:1437446","l":"Mesotoga sp. BH458_6_3_2_1","na":1,"nb":1,"a":[["TED%3AAF-A0A421CAQ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A421CAQ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1437446","Mesotoga sp. BH458_6_3_2_1"]]},{"id":"NCBITaxon:1437453","l":"Streptomyces leeuwenhoekii","na":1,"nb":1,"a":[["TED%3AAF-A0A0F7VQ57-F1-model_v4_TED03","TED novel fold AF-A0A0F7VQ57-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1437453","Streptomyces leeuwenhoekii"]]},{"id":"NCBITaxon:1444258","l":"Escherichia coli 2-005-03_S4_C3","na":1,"nb":1,"a":[["TED%3AAF-A0A029H999-F1-model_v4_TED01","TED novel fold AF-A0A029H999-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1444258","Escherichia coli 2-005-03_S4_C3"]]},{"id":"NCBITaxon:1444289","l":"Clostridium novyi A str. 4552","na":1,"nb":1,"a":[["TED%3AAF-A0A0A0IBM0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0A0IBM0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1444289","Clostridium novyi A str. 4552"]]},{"id":"NCBITaxon:1444315","l":"Lysobacter capsici AZ78","na":1,"nb":1,"a":[["TED%3AAF-A0A108UBP0-F1-model_v4_TED01","TED novel fold AF-A0A108UBP0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1444315","Lysobacter capsici AZ78"]]},{"id":"NCBITaxon:1445661","l":"Aliigemmobacter aestuarii","na":1,"nb":1,"a":[["TED%3AAF-A0A4S3MRC1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S3MRC1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1445661","Aliigemmobacter aestuarii"]]},{"id":"NCBITaxon:1446494","l":"Lacticaseibacillus paracasei N1115","na":1,"nb":1,"a":[["TED%3AAF-A0A806L751-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A806L751-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1446494","Lacticaseibacillus paracasei N1115"]]},{"id":"NCBITaxon:1447260","l":"Aliarcobacter butzleri L352","na":1,"nb":1,"a":[["TED%3AAF-A0A837JE98-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A837JE98-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1447260","Aliarcobacter butzleri L352"]]},{"id":"NCBITaxon:1447781","l":"Maribacter caenipelagi","na":1,"nb":1,"a":[["TED%3AAF-A0A4R7D3Q6-F1-model_v4_TED03","TED novel fold AF-A0A4R7D3Q6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1447781","Maribacter caenipelagi"]]},{"id":"NCBITaxon:1448271","l":"Bacillus oleivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A285CJD4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A285CJD4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1448271","Bacillus oleivorans"]]},{"id":"NCBITaxon:1449167","l":"Epsilonproteobacteria bacterium SCGC AD-308-I21","na":1,"nb":1,"a":[["TED%3AAF-A0A318DDP5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A318DDP5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1449167","Epsilonproteobacteria bacterium SCGC AD-308-I21"]]},{"id":"NCBITaxon:1450156","l":"Defluviitalea raffinosedens","na":1,"nb":1,"a":[["TED%3AAF-A0A7C8LR52-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C8LR52-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1450156","Defluviitalea raffinosedens"]]},{"id":"NCBITaxon:1450533","l":"Aspergillus niger CBS 101883","na":1,"nb":1,"a":[["TED%3AAF-A0A319AKL5-F1-model_v4_TED01","TED novel fold AF-A0A319AKL5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1450533","Aspergillus niger CBS 101883"]]},{"id":"NCBITaxon:1450648","l":"Clostridium oryzae","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4IHY1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V4IHY1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1450648","Clostridium oryzae"]]},{"id":"NCBITaxon:1452364","l":"methanogenic archaeon mixed culture ISO4-G1","na":1,"nb":1,"a":[["TED%3AAF-A0A126QVC0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A126QVC0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1452364","methanogenic archaeon mixed culture ISO4-G1"]]},{"id":"NCBITaxon:1452450","l":"Neoroseomonas alkaliterrae","na":1,"nb":1,"a":[["TED%3AAF-A0A840YB57-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A840YB57-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1452450","Neoroseomonas alkaliterrae"]]},{"id":"NCBITaxon:1452508","l":"Caldimonas caldifontis","na":1,"nb":1,"a":[["TED%3AAF-A0A2S5SVM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S5SVM3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1452508","Caldimonas caldifontis"]]},{"id":"NCBITaxon:1453103","l":"Prauserella shujinwangii","na":1,"nb":1,"a":[["TED%3AAF-A0A2T0LNK4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2T0LNK4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1453103","Prauserella shujinwangii"]]},{"id":"NCBITaxon:1456162","l":"uncultured marine thaumarchaeote KM3_46_G12","na":1,"nb":1,"a":[["TED%3AAF-A0A075H869-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A075H869-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1456162","uncultured marine thaumarchaeote KM3_46_G12"]]},{"id":"NCBITaxon:1457234","l":"Nocardioides zeae","na":1,"nb":1,"a":[["TED%3AAF-A0A6P0HF47-F1-model_v4_TED01","TED novel fold AF-A0A6P0HF47-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1457234","Nocardioides zeae"]]},{"id":"NCBITaxon:1457822","l":"uncultured marine group II/III euryarchaeote AD1000_88_G11","na":1,"nb":1,"a":[["TED%3AAF-A0A075FYZ3-F1-model_v4_TED01","TED novel fold AF-A0A075FYZ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1457822","uncultured marine group II/III euryarchaeote AD1000_88_G11"]]},{"id":"NCBITaxon:1459636","l":"Candidatus Nitrososphaera evergladensis SR1","na":1,"nb":1,"a":[["TED%3AAF-A0A075MU04-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A075MU04-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1459636","Candidatus Nitrososphaera evergladensis SR1"]]},{"id":"NCBITaxon:1460083","l":"Serratia liquefaciens FK01","na":1,"nb":1,"a":[["TED%3AAF-A0A7U9PQR8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7U9PQR8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1460083","Serratia liquefaciens FK01"]]},{"id":"NCBITaxon:1460289","l":"Chrysochromulina tobinii","na":1,"nb":1,"a":[["TED%3AAF-A0A0M0JKQ0-F1-model_v4_TED02","TED novel fold AF-A0A0M0JKQ0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1460289","Chrysochromulina tobinii"]]},{"id":"NCBITaxon:1460647","l":"Vibrio sp. JCM 19052","na":1,"nb":1,"a":[["TED%3AAF-A0A061Q7K1-F1-model_v4_TED01","TED novel fold AF-A0A061Q7K1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1460647","Vibrio sp. JCM 19052"]]},{"id":"NCBITaxon:1461","l":"Psychrobacillus insolitus","na":1,"nb":1,"a":[["TED%3AAF-A0A2W7P9M5-F1-model_v4_TED02","TED novel fold AF-A0A2W7P9M5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1461","Psychrobacillus insolitus"]]},{"id":"NCBITaxon:1461337","l":"Aestuariispira insulae","na":1,"nb":1,"a":[["TED%3AAF-A0A3D9HK82-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D9HK82-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1461337","Aestuariispira insulae"]]},{"id":"NCBITaxon:1461581","l":"Pseudomonas saudimassiliensis","na":1,"nb":1,"a":[["TED%3AAF-A0A078MFS6-F1-model_v4_TED03","TED novel fold AF-A0A078MFS6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1461581","Pseudomonas saudimassiliensis"]]},{"id":"NCBITaxon:1461694","l":"Pseudooceanicola atlanticus","na":1,"nb":1,"a":[["TED%3AAF-A0A0A0E8I5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0A0E8I5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1461694","Pseudooceanicola atlanticus"]]},{"id":"NCBITaxon:1462440","l":"Pseudoduganella ginsengisoli","na":1,"nb":1,"a":[["TED%3AAF-A0A6L6PV27-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A6L6PV27-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1462440","Pseudoduganella ginsengisoli"]]},{"id":"NCBITaxon:1463597","l":"Qipengyuania oceanensis","na":1,"nb":1,"a":[["TED%3AAF-A0A844YBM6-F1-model_v4_TED01","TED novel fold AF-A0A844YBM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1463597","Qipengyuania oceanensis"]]},{"id":"NCBITaxon:1465486","l":"Frigidibacter albus","na":1,"nb":1,"a":[["TED%3AAF-A0A6L8VHY0-F1-model_v4_TED01","TED novel fold AF-A0A6L8VHY0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1465486","Frigidibacter albus"]]},{"id":"NCBITaxon:1469603","l":"Spirosoma oryzae","na":1,"nb":1,"a":[["TED%3AAF-A0A2T0S8I1-F1-model_v4_TED07","TED highly-symmetric fold AF-A0A2T0S8I1-F1-model_v4_TED07"]],"b":[["NCBITaxon%3A1469603","Spirosoma oryzae"]]},{"id":"NCBITaxon:1470066","l":"Nitrosopumilus cobalaminigenes","na":1,"nb":1,"a":[["TED%3AAF-A0A7D5LZ07-F1-model_v4_TED01","TED novel fold AF-A0A7D5LZ07-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1470066","Nitrosopumilus cobalaminigenes"]]},{"id":"NCBITaxon:1471381","l":"Pseudomonas helmanticensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4R7UU40-F1-model_v4_TED01","TED novel fold AF-A0A4R7UU40-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1471381","Pseudomonas helmanticensis"]]},{"id":"NCBITaxon:1472378","l":"Sinorhizobium glycinis","na":1,"nb":1,"a":[["TED%3AAF-A0A178XTK6-F1-model_v4_TED02","TED novel fold AF-A0A178XTK6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1472378","Sinorhizobium glycinis"]]},{"id":"NCBITaxon:1472416","l":"Butyricimonas faecihominis","na":1,"nb":1,"a":[["TED%3AAF-A0A7W6MZV9-F1-model_v4_TED04","TED novel fold AF-A0A7W6MZV9-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1472416","Butyricimonas faecihominis"]]},{"id":"NCBITaxon:1472767","l":"Lentibacillus amyloliquefaciens","na":1,"nb":1,"a":[["TED%3AAF-A0A0U4EI34-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0U4EI34-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1472767","Lentibacillus amyloliquefaciens"]]},{"id":"NCBITaxon:1473598","l":"Paludibaculum fermentans","na":1,"nb":1,"a":[["TED%3AAF-A0A7S7NND6-F1-model_v4_TED01","TED novel fold AF-A0A7S7NND6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1473598","Paludibaculum fermentans"]]},{"id":"NCBITaxon:1476194","l":"Helicobacter sp. 11S02596-1","na":1,"nb":1,"a":[["TED%3AAF-A0A268TH10-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A268TH10-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1476194","Helicobacter sp. 11S02596-1"]]},{"id":"NCBITaxon:1476195","l":"Helicobacter sp. 11S02629-2","na":1,"nb":1,"a":[["TED%3AAF-A0A268TL45-F1-model_v4_TED01","TED novel fold AF-A0A268TL45-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1476195","Helicobacter sp. 11S02629-2"]]},{"id":"NCBITaxon:1476464","l":"Pedobacter xixiisoli","na":1,"nb":1,"a":[["TED%3AAF-A0A285ZUL6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A285ZUL6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1476464","Pedobacter xixiisoli"]]},{"id":"NCBITaxon:1476959","l":"Marinobacterium mangrovicola","na":1,"nb":1,"a":[["TED%3AAF-A0A4R1G9Q6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R1G9Q6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1476959","Marinobacterium mangrovicola"]]},{"id":"NCBITaxon:1476999","l":"Olsenella sp. DNF00959","na":1,"nb":1,"a":[["TED%3AAF-A0A134A4J3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A134A4J3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1476999","Olsenella sp. DNF00959"]]},{"id":"NCBITaxon:1477506","l":"Prauserella flavalba","na":1,"nb":1,"a":[["TED%3AAF-A0A318M583-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A318M583-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1477506","Prauserella flavalba"]]},{"id":"NCBITaxon:1478134","l":"Novosphingobium sp. KN65.2","na":1,"nb":1,"a":[["TED%3AAF-A0A158S4C5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A158S4C5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1478134","Novosphingobium sp. KN65.2"]]},{"id":"NCBITaxon:1479485","l":"Tolypothrix bouteillei VB521301","na":1,"nb":1,"a":[["TED%3AAF-A0A0C1QRR2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0C1QRR2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1479485","Tolypothrix bouteillei VB521301"]]},{"id":"NCBITaxon:1481457","l":"Spongiivirga citrea","na":1,"nb":1,"a":[["TED%3AAF-A0A6M0CF90-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6M0CF90-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1481457","Spongiivirga citrea"]]},{"id":"NCBITaxon:1481663","l":"Vibrio metoecus","na":1,"nb":1,"a":[["Pfam%3APF20247","Domain of unknown function (DUF6602)"]],"b":[["NCBITaxon%3A1481663","Vibrio metoecus"]]},{"id":"NCBITaxon:1481926","l":"Vibrio sp. JCM 19236","na":1,"nb":1,"a":[["TED%3AAF-A0A0B8PST6-F1-model_v4_TED01","TED novel fold AF-A0A0B8PST6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1481926","Vibrio sp. JCM 19236"]]},{"id":"NCBITaxon:1482732","l":"Alkaliphilus pronyensis","na":1,"nb":1,"a":[["TED%3AAF-A0A6I0FE98-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I0FE98-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1482732","Alkaliphilus pronyensis"]]},{"id":"NCBITaxon:148305","l":"Pyricularia grisea","na":1,"nb":1,"a":[["TED%3AAF-A0A6P8AZV3-F1-model_v4_TED01","TED novel fold AF-A0A6P8AZV3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A148305","Pyricularia grisea"]]},{"id":"NCBITaxon:148448","l":"Natronobacterium haloterrestre","na":1,"nb":1,"a":[["TED%3AAF-A0A1I1K5F6-F1-model_v4_TED01","TED novel fold AF-A0A1I1K5F6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A148448","Natronobacterium haloterrestre"]]},{"id":"NCBITaxon:1485002","l":"Acinetobacter sp. ETR1","na":1,"nb":1,"a":[["TED%3AAF-A0A072CSU4-F1-model_v4_TED04","TED novel fold AF-A0A072CSU4-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1485002","Acinetobacter sp. ETR1"]]},{"id":"NCBITaxon:1486246","l":"Halomonas sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A355PHS8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A355PHS8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1486246","Halomonas sp."]]},{"id":"NCBITaxon:1486281","l":"Roseovarius sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A350LS23-F1-model_v4_TED01","TED novel fold AF-A0A350LS23-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1486281","Roseovarius sp."]]},{"id":"NCBITaxon:1487726","l":"Mycobacterium persicum","na":1,"nb":1,"a":[["TED%3AAF-A0A498PG61-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A498PG61-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1487726","Mycobacterium persicum"]]},{"id":"NCBITaxon:1487949","l":"Smithella sp. SC_K08D17","na":1,"nb":1,"a":[["TED%3AAF-A0A0C1NT92-F1-model_v4_TED02","TED novel fold AF-A0A0C1NT92-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1487949","Smithella sp. SC_K08D17"]]},{"id":"NCBITaxon:148818","l":"Hamiltosporidium magnivora","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q9LGG3-F1-model_v4_TED01","TED novel fold AF-A0A4Q9LGG3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A148818","Hamiltosporidium magnivora"]]},{"id":"NCBITaxon:1494","l":"Clostridium cochlearium","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y3V7F0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y3V7F0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1494","Clostridium cochlearium"]]},{"id":"NCBITaxon:1495144","l":"methanogenic archaeon ISO4-H5","na":1,"nb":1,"a":[["TED%3AAF-A0A110A2W2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A110A2W2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1495144","methanogenic archaeon ISO4-H5"]]},{"id":"NCBITaxon:1497020","l":"Neosynechococcus sphagnicola sy1","na":1,"nb":1,"a":[["TED%3AAF-A0A098TMI1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A098TMI1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1497020","Neosynechococcus sphagnicola sy1"]]},{"id":"NCBITaxon:1497337","l":"Acinetobacter sp. SM1B","na":1,"nb":1,"a":[["TED%3AAF-A0A330FBJ1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A330FBJ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1497337","Acinetobacter sp. SM1B"]]},{"id":"NCBITaxon:1497681","l":"Paenilisteria newyorkensis","na":1,"nb":1,"a":[["TED%3AAF-A0A841Z083-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A841Z083-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1497681","Paenilisteria newyorkensis"]]},{"id":"NCBITaxon:1499502","l":"Prochlorococcus sp. MIT 0701","na":1,"nb":1,"a":[["TED%3AAF-A0A0A2CX85-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A2CX85-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1499502","Prochlorococcus sp. MIT 0701"]]},{"id":"NCBITaxon:1499688","l":"Neobacillus massiliamazoniensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0U1NRJ1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0U1NRJ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1499688","Neobacillus massiliamazoniensis"]]},{"id":"NCBITaxon:150","l":"Spirochaeta isovalerica","na":1,"nb":1,"a":[["TED%3AAF-A0A841R6V2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841R6V2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A150","Spirochaeta isovalerica"]]},{"id":"NCBITaxon:1500264","l":"Rhizobacter sp. OV335","na":1,"nb":1,"a":[["TED%3AAF-A0A1M7I6F1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M7I6F1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1500264","Rhizobacter sp. OV335"]]},{"id":"NCBITaxon:1500506","l":"Halopolyspora algeriensis","na":1,"nb":1,"a":[["TED%3AAF-A0A368VEW2-F1-model_v4_TED01","TED novel fold AF-A0A368VEW2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1500506","Halopolyspora algeriensis"]]},{"id":"NCBITaxon:1501240","l":"Palleronia abyssalis","na":1,"nb":1,"a":[["TED%3AAF-A0A2R8BW46-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2R8BW46-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1501240","Palleronia abyssalis"]]},{"id":"NCBITaxon:1502292","l":"Marine Group I thaumarchaeote SCGC AAA799-E16","na":1,"nb":1,"a":[["TED%3AAF-A0A081S3X1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A081S3X1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1502292","Marine Group I thaumarchaeote SCGC AAA799-E16"]]},{"id":"NCBITaxon:1502726","l":"Microcystis sp. 0824","na":1,"nb":1,"a":[["TED%3AAF-A0A2L2XND4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2L2XND4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1502726","Microcystis sp. 0824"]]},{"id":"NCBITaxon:1502758","l":"Luteibacter sp. UNCMF366Tsu5.1","na":1,"nb":1,"a":[["TED%3AAF-A0A1K1RRU1-F1-model_v4_TED01","TED novel fold AF-A0A1K1RRU1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1502758","Luteibacter sp. UNCMF366Tsu5.1"]]},{"id":"NCBITaxon:1503","l":"Gottschalkia purinilytica","na":1,"nb":1,"a":[["Pfam%3APF07355","Glycine/sarcosine/betaine reductase selenoprotein B (GRDB)"]],"b":[["NCBITaxon%3A1503","Gottschalkia purinilytica"]]},{"id":"NCBITaxon:1503053","l":"Burkholderia singularis","na":1,"nb":1,"a":[["TED%3AAF-A0A238HAX7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A238HAX7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1503053","Burkholderia singularis"]]},{"id":"NCBITaxon:1503055","l":"Burkholderia territorii","na":1,"nb":1,"a":[["TED%3AAF-A0A6L3N8P5-F1-model_v4_TED01","TED novel fold AF-A0A6L3N8P5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1503055","Burkholderia territorii"]]},{"id":"NCBITaxon:150374","l":"Escovopsis weberi","na":1,"nb":1,"a":[["TED%3AAF-A0A0M8MSE0-F1-model_v4_TED01","TED novel fold AF-A0A0M8MSE0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A150374","Escovopsis weberi"]]},{"id":"NCBITaxon:1504536","l":"Robinsoniella sp. RHS","na":1,"nb":1,"a":[["TED%3AAF-A0A0J1FYX4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0J1FYX4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1504536","Robinsoniella sp. RHS"]]},{"id":"NCBITaxon:1506545","l":"Candidatus Chloroploca asiatica","na":1,"nb":1,"a":[["TED%3AAF-A0A2H3KI37-F1-model_v4_TED02","TED novel fold AF-A0A2H3KI37-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1506545","Candidatus Chloroploca asiatica"]]},{"id":"NCBITaxon:1507870","l":"Cryoendolithus antarcticus","na":1,"nb":1,"a":[["TED%3AAF-A0A1V8TAE1-F1-model_v4_TED02","TED novel fold AF-A0A1V8TAE1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1507870","Cryoendolithus antarcticus"]]},{"id":"NCBITaxon:150831","l":"Roseibium hamelinense","na":1,"nb":1,"a":[["TED%3AAF-A0A562T7P7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A562T7P7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A150831","Roseibium hamelinense"]]},{"id":"NCBITaxon:1508390","l":"Aureibacillus halotolerans","na":1,"nb":1,"a":[["TED%3AAF-A0A4R6U114-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R6U114-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1508390","Aureibacillus halotolerans"]]},{"id":"NCBITaxon:1508404","l":"Jeotgalibacillus malaysiensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0B5ASX9-F1-model_v4_TED01","TED novel fold AF-A0A0B5ASX9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1508404","Jeotgalibacillus malaysiensis"]]},{"id":"NCBITaxon:1509407","l":"Aspergillus nomiae NRRL 13137","na":1,"nb":1,"a":[["TED%3AAF-A0A0L1JHJ8-F1-model_v4_TED01","TED novel fold AF-A0A0L1JHJ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1509407","Aspergillus nomiae NRRL 13137"]]},{"id":"NCBITaxon:1513271","l":"Catenovulum maritimum","na":1,"nb":1,"a":[["TED%3AAF-A0A0J8GTT7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0J8GTT7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1513271","Catenovulum maritimum"]]},{"id":"NCBITaxon:1513793","l":"Pseudobacteriovorax antillogorgiicola","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y6CR30-F1-model_v4_TED01","TED novel fold AF-A0A1Y6CR30-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1513793","Pseudobacteriovorax antillogorgiicola"]]},{"id":"NCBITaxon:1514080","l":"Neolewinella xylanilytica","na":1,"nb":1,"a":[["TED%3AAF-A0A2S6I9U1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S6I9U1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1514080","Neolewinella xylanilytica"]]},{"id":"NCBITaxon:1514971","l":"Haloprofundus marisrubri","na":1,"nb":1,"a":[["TED%3AAF-A0A0W1R579-F1-model_v4_TED02","TED novel fold AF-A0A0W1R579-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1514971","Haloprofundus marisrubri"]]},{"id":"NCBITaxon:1516059","l":"Microbulbifer sp. ALW1","na":1,"nb":1,"a":[["Pfam%3APF02839","Carbohydrate-binding module family 5/12"]],"b":[["NCBITaxon%3A1516059","Microbulbifer sp. ALW1"]]},{"id":"NCBITaxon:1517416","l":"Pseudidiomarina atlantica","na":1,"nb":1,"a":[["TED%3AAF-A0A094IVS2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A094IVS2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1517416","Pseudidiomarina atlantica"]]},{"id":"NCBITaxon:1517681","l":"Vibrio sp. ER1A","na":1,"nb":1,"a":[["TED%3AAF-A0A084TB57-F1-model_v4_TED02","TED novel fold AF-A0A084TB57-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1517681","Vibrio sp. ER1A"]]},{"id":"NCBITaxon:1517683","l":"Chryseobacterium sp. P1-3","na":1,"nb":1,"a":[["TED%3AAF-A0A086FBC8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A086FBC8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1517683","Chryseobacterium sp. P1-3"]]},{"id":"NCBITaxon:1519471","l":"Streptomyces sp. NRRL S-4","na":1,"nb":1,"a":[["TED%3AAF-A0A0N0YGV9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0N0YGV9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1519471","Streptomyces sp. NRRL S-4"]]},{"id":"NCBITaxon:1519491","l":"Streptomyces sp. NRRL WC-3723","na":1,"nb":1,"a":[["TED%3AAF-A0A0M8X365-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0M8X365-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1519491","Streptomyces sp. NRRL WC-3723"]]},{"id":"NCBITaxon:1520803","l":"Pseudobutyrivibrio sp. C4","na":1,"nb":1,"a":[["TED%3AAF-A0A1I0ACI0-F1-model_v4_TED02","TED novel fold AF-A0A1I0ACI0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1520803","Pseudobutyrivibrio sp. C4"]]},{"id":"NCBITaxon:1520807","l":"Butyrivibrio sp. INlla16","na":1,"nb":1,"a":[["TED%3AAF-A0A1G6F9M5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G6F9M5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1520807","Butyrivibrio sp. INlla16"]]},{"id":"NCBITaxon:1520808","l":"Butyrivibrio sp. INlla14","na":1,"nb":1,"a":[["TED%3AAF-A0A1G5C891-F1-model_v4_TED01","TED novel fold AF-A0A1G5C891-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1520808","Butyrivibrio sp. INlla14"]]},{"id":"NCBITaxon:1520813","l":"Paracoccus sp. SM22M-07","na":1,"nb":1,"a":[["TED%3AAF-A0A1L9BU60-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L9BU60-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1520813","Paracoccus sp. SM22M-07"]]},{"id":"NCBITaxon:1520816","l":"Ruminococcaceae bacterium YAD3003","na":1,"nb":1,"a":[["TED%3AAF-A0A1H3HR91-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H3HR91-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1520816","Ruminococcaceae bacterium YAD3003"]]},{"id":"NCBITaxon:1520821","l":"Lachnospiraceae bacterium A10","na":1,"nb":1,"a":[["TED%3AAF-A0A1H6VE99-F1-model_v4_TED01","TED novel fold AF-A0A1H6VE99-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1520821","Lachnospiraceae bacterium A10"]]},{"id":"NCBITaxon:1520822","l":"Lachnospiraceae bacterium C10","na":1,"nb":1,"a":[["TED%3AAF-A0A1G4RBH0-F1-model_v4_TED01","TED novel fold AF-A0A1G4RBH0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1520822","Lachnospiraceae bacterium C10"]]},{"id":"NCBITaxon:1520826","l":"Lachnospiraceae bacterium XBB2008","na":1,"nb":1,"a":[["TED%3AAF-A0A1G5BX79-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G5BX79-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1520826","Lachnospiraceae bacterium XBB2008"]]},{"id":"NCBITaxon:1520828","l":"Lachnospiraceae bacterium YSD2013","na":1,"nb":1,"a":[["TED%3AAF-A0A1G4V7H1-F1-model_v4_TED01","TED novel fold AF-A0A1G4V7H1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1520828","Lachnospiraceae bacterium YSD2013"]]},{"id":"NCBITaxon:1520829","l":"Peptostreptococcaceae bacterium pGA-8","na":1,"nb":1,"a":[["TED%3AAF-A0A1I1YYQ5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1I1YYQ5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1520829","Peptostreptococcaceae bacterium pGA-8"]]},{"id":"NCBITaxon:1520830","l":"Prevotellaceae bacterium HUN156","na":1,"nb":1,"a":[["TED%3AAF-A0A1K1LQ12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1K1LQ12-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1520830","Prevotellaceae bacterium HUN156"]]},{"id":"NCBITaxon:1521402","l":"Mastigocladus laminosus WC112","na":1,"nb":1,"a":[["TED%3AAF-A0A370CKL0-F1-model_v4_TED01","TED novel fold AF-A0A370CKL0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1521402","Mastigocladus laminosus WC112"]]},{"id":"NCBITaxon:1522189","l":"Ceraceosorus guamensis","na":1,"nb":1,"a":[["TED%3AAF-A0A316VYV9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A316VYV9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1522189","Ceraceosorus guamensis"]]},{"id":"NCBITaxon:1522758","l":"Streptomyces sp. ADI95-16","na":1,"nb":1,"a":[["TED%3AAF-A0A3G4VPW2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3G4VPW2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1522758","Streptomyces sp. ADI95-16"]]},{"id":"NCBITaxon:1523415","l":"Sphingomonas sp. AAP5","na":1,"nb":1,"a":[["TED%3AAF-A0A4P6X9R5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P6X9R5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1523415","Sphingomonas sp. AAP5"]]},{"id":"NCBITaxon:1523418","l":"alpha proteobacterium AAP38","na":1,"nb":1,"a":[["TED%3AAF-A0A0N1BSA5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0N1BSA5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1523418","alpha proteobacterium AAP38"]]},{"id":"NCBITaxon:1524097","l":"Massilia glaciei","na":1,"nb":1,"a":[["TED%3AAF-A0A2U2HFI6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U2HFI6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1524097","Massilia glaciei"]]},{"id":"NCBITaxon:1525753","l":"Streptomyces sp. JS01","na":1,"nb":1,"a":[["TED%3AAF-A0A087K6S8-F1-model_v4_TED02","TED novel fold AF-A0A087K6S8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1525753","Streptomyces sp. JS01"]]},{"id":"NCBITaxon:1526762","l":"Vibrio sp. B183","na":1,"nb":1,"a":[["TED%3AAF-A0A086WSI7-F1-model_v4_TED02","TED novel fold AF-A0A086WSI7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1526762","Vibrio sp. B183"]]},{"id":"NCBITaxon:1527608","l":"Hydromonas duriensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4R6Y270-F1-model_v4_TED01","TED novel fold AF-A0A4R6Y270-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1527608","Hydromonas duriensis"]]},{"id":"NCBITaxon:1528101","l":"Vibrio sp. ES.044","na":1,"nb":1,"a":[["TED%3AAF-A0A559NC50-F1-model_v4_TED01","TED novel fold AF-A0A559NC50-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1528101","Vibrio sp. ES.044"]]},{"id":"NCBITaxon:1528773","l":"Janthinobacterium sp. AD80","na":1,"nb":1,"a":[["TED%3AAF-A0A2N7REY8-F1-model_v4_TED01","TED novel fold AF-A0A2N7REY8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1528773","Janthinobacterium sp. AD80"]]},{"id":"NCBITaxon:1529041","l":"Roseivivax jejudonensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1X6Y6C0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X6Y6C0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1529041","Roseivivax jejudonensis"]]},{"id":"NCBITaxon:1530123","l":"Acinetobacter seifertii","na":1,"nb":1,"a":[["TED%3AAF-A0A2M8MEQ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M8MEQ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1530123","Acinetobacter seifertii"]]},{"id":"NCBITaxon:1531429","l":"Berryella intestinalis","na":1,"nb":1,"a":[["TED%3AAF-A0A0A8B291-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A8B291-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1531429","Berryella intestinalis"]]},{"id":"NCBITaxon:1532350","l":"Metallosphaera tengchongensis","na":1,"nb":1,"a":[["TED%3AAF-A0A6N0NWZ4-F1-model_v4_TED02","TED novel fold AF-A0A6N0NWZ4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1532350","Metallosphaera tengchongensis"]]},{"id":"NCBITaxon:1532552","l":"Anaerobacillus isosaccharinicus","na":1,"nb":1,"a":[["TED%3AAF-A0A1S2M938-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1S2M938-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1532552","Anaerobacillus isosaccharinicus"]]},{"id":"NCBITaxon:1532906","l":"Aphanizomenon flos-aquae 2012/KM1/D3","na":1,"nb":1,"a":[["Pfam%3APF01934","Ribonuclease HepT-like"]],"b":[["NCBITaxon%3A1532906","Aphanizomenon flos-aquae 2012/KM1/D3"]]},{"id":"NCBITaxon:1535422","l":"Thalassotalea sp. ND16A","na":1,"nb":1,"a":[["TED%3AAF-A0A099KGF6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A099KGF6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1535422","Thalassotalea sp. ND16A"]]},{"id":"NCBITaxon:1536651","l":"Desulfosporosinus sp. Tol-M","na":1,"nb":1,"a":[["TED%3AAF-A0A0A2TS00-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0A2TS00-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1536651","Desulfosporosinus sp. Tol-M"]]},{"id":"NCBITaxon:1536775","l":"Paenibacillus sp. FSL H7-0737","na":1,"nb":1,"a":[["TED%3AAF-A0A089ITK5-F1-model_v4_TED02","TED novel fold AF-A0A089ITK5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1536775","Paenibacillus sp. FSL H7-0737"]]},{"id":"NCBITaxon:1537702","l":"Delftia sp. 670","na":1,"nb":1,"a":[["TED%3AAF-A0A081J8I6-F1-model_v4_TED01","TED novel fold AF-A0A081J8I6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1537702","Delftia sp. 670"]]},{"id":"NCBITaxon:1538146","l":"Alteriqipengyuania lutimaris","na":1,"nb":1,"a":[["TED%3AAF-A0A395LNL2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A395LNL2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1538146","Alteriqipengyuania lutimaris"]]},{"id":"NCBITaxon:1540922","l":"Wallemia hederae","na":1,"nb":1,"a":[["TED%3AAF-A0A4T0FD79-F1-model_v4_TED01","TED novel fold AF-A0A4T0FD79-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1540922","Wallemia hederae"]]},{"id":"NCBITaxon:1542390","l":"Francisella frigiditurris","na":1,"nb":1,"a":[["TED%3AAF-A0A1J0KT66-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1J0KT66-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1542390","Francisella frigiditurris"]]},{"id":"NCBITaxon:154538","l":"Trametes pubescens","na":1,"nb":1,"a":[["TED%3AAF-A0A1M2W3Q5-F1-model_v4_TED01","TED novel fold AF-A0A1M2W3Q5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A154538","Trametes pubescens"]]},{"id":"NCBITaxon:1547283","l":"Metabacillus harenarius","na":1,"nb":1,"a":[["TED%3AAF-A0A1L3MNT2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1L3MNT2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1547283","Metabacillus harenarius"]]},{"id":"NCBITaxon:1547444","l":"Pseudoalteromonas sp. PLSV","na":1,"nb":1,"a":[["Pfam%3APF15892","BNR repeat-containing family member"]],"b":[["NCBITaxon%3A1547444","Pseudoalteromonas sp. PLSV"]]},{"id":"NCBITaxon:1547922","l":"Pseudideonella sakaiensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0K8P774-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0K8P774-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1547922","Pseudideonella sakaiensis"]]},{"id":"NCBITaxon:1549638","l":"Quisquiliibacterium transsilvanicum","na":1,"nb":1,"a":[["TED%3AAF-A0A7W8HDM4-F1-model_v4_TED04","TED novel fold AF-A0A7W8HDM4-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1549638","Quisquiliibacterium transsilvanicum"]]},{"id":"NCBITaxon:1550","l":"Clostridium subterminale","na":1,"nb":1,"a":[["Pfam%3APF12544","Lysine-2,3-aminomutase"]],"b":[["NCBITaxon%3A1550","Clostridium subterminale"]]},{"id":"NCBITaxon:1550235","l":"Clostridium sp. KNHs216","na":1,"nb":1,"a":[["TED%3AAF-A0A542ALS0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A542ALS0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1550235","Clostridium sp. KNHs216"]]},{"id":"NCBITaxon:1550579","l":"Mucilaginibacter gotjawali","na":1,"nb":1,"a":[["TED%3AAF-A0A0X8X2M5-F1-model_v4_TED03","TED novel fold AF-A0A0X8X2M5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1550579","Mucilaginibacter gotjawali"]]},{"id":"NCBITaxon:1552121","l":"Leptolyngbya sp. NIES-2104","na":1,"nb":1,"a":[["TED%3AAF-A0A0P4V2F6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0P4V2F6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1552121","Leptolyngbya sp. NIES-2104"]]},{"id":"NCBITaxon:155417","l":"Monosporascus ibericus","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q4SZB0-F1-model_v4_TED01","TED novel fold AF-A0A4Q4SZB0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A155417","Monosporascus ibericus"]]},{"id":"NCBITaxon:1555241","l":"Caulochytrium protostelioides","na":1,"nb":1,"a":[["TED%3AAF-A0A4P9X4L6-F1-model_v4_TED01","TED novel fold AF-A0A4P9X4L6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1555241","Caulochytrium protostelioides"]]},{"id":"NCBITaxon:155925","l":"Nitrosospira sp. NRS527","na":1,"nb":1,"a":[["TED%3AAF-A0A811AEU4-F1-model_v4_TED01","TED novel fold AF-A0A811AEU4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A155925","Nitrosospira sp. NRS527"]]},{"id":"NCBITaxon:155974","l":"Actinokineospora terrae","na":1,"nb":1,"a":[["TED%3AAF-A0A1H9N3Z4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H9N3Z4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A155974","Actinokineospora terrae"]]},{"id":"NCBITaxon:155976","l":"Actinokineospora auranticolor","na":1,"nb":1,"a":[["TED%3AAF-A0A2S6GGX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S6GGX2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A155976","Actinokineospora auranticolor"]]},{"id":"NCBITaxon:1560234","l":"Halodesulfovibrio spirochaetisodalis","na":1,"nb":1,"a":[["TED%3AAF-A0A1B7XAE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B7XAE6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1560234","Halodesulfovibrio spirochaetisodalis"]]},{"id":"NCBITaxon:1561003","l":"Candidatus Ichthyocystis hellenicum","na":1,"nb":1,"a":[["TED%3AAF-A0A0S4M2T9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S4M2T9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1561003","Candidatus Ichthyocystis hellenicum"]]},{"id":"NCBITaxon:1561964","l":"Methanosphaera sp. WGK6","na":1,"nb":1,"a":[["TED%3AAF-A0A1D2X1R8-F1-model_v4_TED01","TED novel fold AF-A0A1D2X1R8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1561964","Methanosphaera sp. WGK6"]]},{"id":"NCBITaxon:1562603","l":"Microbulbifer rhizosphaerae","na":1,"nb":1,"a":[["TED%3AAF-A0A7W4Z867-F1-model_v4_TED06","TED novel fold AF-A0A7W4Z867-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A1562603","Microbulbifer rhizosphaerae"]]},{"id":"NCBITaxon:1563222","l":"Citrobacter pasteurii","na":1,"nb":1,"a":[["TED%3AAF-A0A6N6K4M5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N6K4M5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1563222","Citrobacter pasteurii"]]},{"id":"NCBITaxon:1563671","l":"Sulfitobacter undariae","na":1,"nb":1,"a":[["TED%3AAF-A0A7W6E4U0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W6E4U0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1563671","Sulfitobacter undariae"]]},{"id":"NCBITaxon:1564114","l":"Rhodococcus sp. B7740","na":1,"nb":1,"a":[["TED%3AAF-A0A0D5A6X9-F1-model_v4_TED03","TED novel fold AF-A0A0D5A6X9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1564114","Rhodococcus sp. B7740"]]},{"id":"NCBITaxon:1564164","l":"Blastococcus xanthinilyticus","na":1,"nb":1,"a":[["TED%3AAF-A0A5S5D581-F1-model_v4_TED03","TED novel fold AF-A0A5S5D581-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1564164","Blastococcus xanthinilyticus"]]},{"id":"NCBITaxon:1564506","l":"Rhodovulum sp. P5","na":1,"nb":1,"a":[["TED%3AAF-A0A1V0PUI0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V0PUI0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1564506","Rhodovulum sp. P5"]]},{"id":"NCBITaxon:1566283","l":"Sphingomonas sp. NFR04","na":1,"nb":1,"a":[["TED%3AAF-A0A1I3YWA6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1I3YWA6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1566283","Sphingomonas sp. NFR04"]]},{"id":"NCBITaxon:1569628","l":"Jaminaea rosea","na":1,"nb":1,"a":[["TED%3AAF-A0A316USJ9-F1-model_v4_TED03","TED novel fold AF-A0A316USJ9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1569628","Jaminaea rosea"]]},{"id":"NCBITaxon:1572656","l":"Ruminococcaceae bacterium CPB6","na":1,"nb":1,"a":[["TED%3AAF-A0A1W6WC59-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W6WC59-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1572656","Ruminococcaceae bacterium CPB6"]]},{"id":"NCBITaxon:1574262","l":"Sutterella sp. KLE1602","na":1,"nb":1,"a":[["TED%3AAF-A0A139JRX3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A139JRX3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1574262","Sutterella sp. KLE1602"]]},{"id":"NCBITaxon:1574623","l":"Lyngbya confervoides BDU141951","na":1,"nb":1,"a":[["TED%3AAF-A0A0C1V1F7-F1-model_v4_TED01","TED novel fold AF-A0A0C1V1F7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1574623","Lyngbya confervoides BDU141951"]]},{"id":"NCBITaxon:157733","l":"Alkalihalobacillus macyae","na":1,"nb":1,"a":[["TED%3AAF-A0A0J6FWV9-F1-model_v4_TED01","TED novel fold AF-A0A0J6FWV9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A208199","Guptibacillus hwajinpoensis"]]},{"id":"NCBITaxon:1577686","l":"Silvibacterium bohemicum","na":1,"nb":1,"a":[["TED%3AAF-A0A841JPR1-F1-model_v4_TED02","TED novel fold AF-A0A841JPR1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1577686","Silvibacterium bohemicum"]]},{"id":"NCBITaxon:1577780","l":"Phaeocystidibacter marisrubri","na":1,"nb":1,"a":[["TED%3AAF-A0A6L3ZHW6-F1-model_v4_TED03","TED novel fold AF-A0A6L3ZHW6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1577780","Phaeocystidibacter marisrubri"]]},{"id":"NCBITaxon:157779","l":"Kushneria marisflavi","na":1,"nb":1,"a":[["TED%3AAF-A0A240ULV8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A240ULV8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A157779","Kushneria marisflavi"]]},{"id":"NCBITaxon:1577791","l":"Candidatus Methanoplasma termitum","na":1,"nb":1,"a":[["TED%3AAF-A0A0A7LCU2-F1-model_v4_TED01","TED novel fold AF-A0A0A7LCU2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1577791","Candidatus Methanoplasma termitum"]]},{"id":"NCBITaxon:1577902","l":"Leisingera sp. ANG-M7","na":1,"nb":1,"a":[["TED%3AAF-A0A0C1IJ64-F1-model_v4_TED02","TED novel fold AF-A0A0C1IJ64-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1577902","Leisingera sp. ANG-M7"]]},{"id":"NCBITaxon:1577905","l":"Tateyamaria sp. ANG-S1","na":1,"nb":1,"a":[["TED%3AAF-A0A0B4CZX6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0B4CZX6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1577905","Tateyamaria sp. ANG-S1"]]},{"id":"NCBITaxon:1578720","l":"Helicobacter ailurogastricus","na":1,"nb":1,"a":[["TED%3AAF-A0A0K2X3G5-F1-model_v4_TED01","TED novel fold AF-A0A0K2X3G5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1578720","Helicobacter ailurogastricus"]]},{"id":"NCBITaxon:157907","l":"Desulfosporosinus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A358U7F5-F1-model_v4_TED02","TED novel fold AF-A0A358U7F5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A157907","Desulfosporosinus sp."]]},{"id":"NCBITaxon:1579333","l":"Limibacillus halophilus","na":1,"nb":1,"a":[["TED%3AAF-A0A839SUA2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A839SUA2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1579333","Limibacillus halophilus"]]},{"id":"NCBITaxon:1579370","l":"archaeon GW2011_AR10","na":1,"nb":1,"a":[["TED%3AAF-A0A0B5HG27-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0B5HG27-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1579370","archaeon GW2011_AR10"]]},{"id":"NCBITaxon:1579376","l":"archaeon GW2011_AR18","na":1,"nb":1,"a":[["TED%3AAF-A0A0B3ASZ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0B3ASZ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1579376","archaeon GW2011_AR18"]]},{"id":"NCBITaxon:158046","l":"Phaeomoniella chlamydospora","na":1,"nb":1,"a":[["TED%3AAF-A0A0G2HLS3-F1-model_v4_TED02","TED novel fold AF-A0A0G2HLS3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A158046","Phaeomoniella chlamydospora"]]},{"id":"NCBITaxon:1580596","l":"Phaeobacter piscinae","na":1,"nb":1,"a":[["TED%3AAF-A0A837DZ53-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A837DZ53-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1580596","Phaeobacter piscinae"]]},{"id":"NCBITaxon:1581124","l":"Neisseria sp. HMSC06F02","na":1,"nb":1,"a":[["TED%3AAF-A0A0D9LS50-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D9LS50-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1581124","Neisseria sp. HMSC06F02"]]},{"id":"NCBITaxon:1582974","l":"Ceratobasidium theobromae","na":1,"nb":1,"a":[["TED%3AAF-A0A5N5Q870-F1-model_v4_TED01","TED novel fold AF-A0A5N5Q870-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1582974","Ceratobasidium theobromae"]]},{"id":"NCBITaxon:1586287","l":"Lentzea guizhouensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1B2HN25-F1-model_v4_TED01","TED novel fold AF-A0A1B2HN25-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1586287","Lentzea guizhouensis"]]},{"id":"NCBITaxon:1586708","l":"Pandoraea sp. ISTKB","na":1,"nb":1,"a":[["TED%3AAF-A0A1E3LNT6-F1-model_v4_TED01","TED novel fold AF-A0A1E3LNT6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1586708","Pandoraea sp. ISTKB"]]},{"id":"NCBITaxon:1591054","l":"Thermococcus sp. EP1","na":1,"nb":1,"a":[["TED%3AAF-A0A0P8ZDE3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0P8ZDE3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1591054","Thermococcus sp. EP1"]]},{"id":"NCBITaxon:1592329","l":"Actinobacteria bacterium OV320","na":1,"nb":1,"a":[["TED%3AAF-A0A0N0N9B4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0N0N9B4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1592329","Actinobacteria bacterium OV320"]]},{"id":"NCBITaxon:1592727","l":"Streptomyces sp. MBRL 10","na":1,"nb":1,"a":[["TED%3AAF-A0A0D6WSL6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D6WSL6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1592727","Streptomyces sp. MBRL 10"]]},{"id":"NCBITaxon:1593482","l":"Massilia sp. YMA4","na":1,"nb":1,"a":[["TED%3AAF-A0A7U5XZA1-F1-model_v4_TED02","TED novel fold AF-A0A7U5XZA1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1593482","Massilia sp. YMA4"]]},{"id":"NCBITaxon:1603038","l":"Vibrio sp. qd031","na":1,"nb":1,"a":[["TED%3AAF-A0A1X1MV27-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1X1MV27-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1603038","Vibrio sp. qd031"]]},{"id":"NCBITaxon:1603293","l":"Flavobacterium sp. 316","na":1,"nb":1,"a":[["TED%3AAF-A0A0D6TP58-F1-model_v4_TED02","TED novel fold AF-A0A0D6TP58-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1603293","Flavobacterium sp. 316"]]},{"id":"NCBITaxon:1603886","l":"Bifidobacterium lemurum","na":1,"nb":1,"a":[["TED%3AAF-A0A261FPN5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A261FPN5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1603886","Bifidobacterium lemurum"]]},{"id":"NCBITaxon:1604835","l":"Achromatium sp. WMS2","na":1,"nb":1,"a":[["TED%3AAF-A0A0M1J9N5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0M1J9N5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1604835","Achromatium sp. WMS2"]]},{"id":"NCBITaxon:1605376","l":"Clostridiales bacterium PH28_bin88","na":1,"nb":1,"a":[["TED%3AAF-A0A0M2U440-F1-model_v4_TED01","TED novel fold AF-A0A0M2U440-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1605376","Clostridiales bacterium PH28_bin88"]]},{"id":"NCBITaxon:1605994","l":"Paenibacillus sp. NAIST15-1","na":1,"nb":1,"a":[["TED%3AAF-A0A1E1VIF5-F1-model_v4_TED01","TED novel fold AF-A0A1E1VIF5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1605994","Paenibacillus sp. NAIST15-1"]]},{"id":"NCBITaxon:1608422","l":"Henriciella algicola","na":1,"nb":1,"a":[["TED%3AAF-A0A399RH60-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A399RH60-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1608422","Henriciella algicola"]]},{"id":"NCBITaxon:1608465","l":"Natrinema thermophila","na":1,"nb":1,"a":[["TED%3AAF-A0A2B7GRS3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2B7GRS3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1608465","Natrinema thermophila"]]},{"id":"NCBITaxon:1609098","l":"Streptomyces sp. NRRL F-5122","na":1,"nb":1,"a":[["TED%3AAF-A0A0X3SCA4-F1-model_v4_TED02","TED novel fold AF-A0A0X3SCA4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1609098","Streptomyces sp. NRRL F-5122"]]},{"id":"NCBITaxon:1609133","l":"Streptomyces sp. NRRL S-495","na":1,"nb":1,"a":[["TED%3AAF-A0A0F4JA07-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0F4JA07-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1609133","Streptomyces sp. NRRL S-495"]]},{"id":"NCBITaxon:1609134","l":"Streptomyces sp. NRRL S-444","na":1,"nb":1,"a":[["TED%3AAF-A0A656TJD4-F1-model_v4_TED01","TED novel fold AF-A0A656TJD4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1609134","Streptomyces sp. NRRL S-444"]]},{"id":"NCBITaxon:1609272","l":"Streptomyces adustus","na":1,"nb":1,"a":[["TED%3AAF-A0A5N8V8R0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5N8V8R0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1609272","Streptomyces adustus"]]},{"id":"NCBITaxon:1609968","l":"Methanobrevibacter sp. YE315","na":1,"nb":1,"a":[["TED%3AAF-A0A125RB74-F1-model_v4_TED01","TED novel fold AF-A0A125RB74-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1609968","Methanobrevibacter sp. YE315"]]},{"id":"NCBITaxon:1609970","l":"Candidatus Magnetovum chiemense","na":1,"nb":1,"a":[["TED%3AAF-A0A0F2IXQ2-F1-model_v4_TED01","TED novel fold AF-A0A0F2IXQ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1609970","Candidatus Magnetovum chiemense"]]},{"id":"NCBITaxon:1611544","l":"Methylomonas sp. Kb3","na":1,"nb":1,"a":[["TED%3AAF-A0A2N0V705-F1-model_v4_TED01","TED novel fold AF-A0A2N0V705-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1611544","Methylomonas sp. Kb3"]]},{"id":"NCBITaxon:1612149","l":"Chryseobacterium limigenitum","na":1,"nb":1,"a":[["TED%3AAF-A0A1K2ISG6-F1-model_v4_TED01","TED novel fold AF-A0A1K2ISG6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1612149","Chryseobacterium limigenitum"]]},{"id":"NCBITaxon:1615909","l":"Geminocystis sp. NIES-3708","na":1,"nb":1,"a":[["TED%3AAF-A0A0D6AGM1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D6AGM1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1615909","Geminocystis sp. NIES-3708"]]},{"id":"NCBITaxon:1616","l":"Weissella kandleri","na":1,"nb":1,"a":[["TED%3AAF-A0A0R2JNV5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0R2JNV5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1616","Weissella kandleri"]]},{"id":"NCBITaxon:1616788","l":"Paenibacillus bovis","na":1,"nb":1,"a":[["TED%3AAF-A0A1X9T409-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X9T409-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1616788","Paenibacillus bovis"]]},{"id":"NCBITaxon:1617410","l":"Nitrospira sp. OLB3","na":1,"nb":1,"a":[["TED%3AAF-A0A136JXF7-F1-model_v4_TED03","TED novel fold AF-A0A136JXF7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1617410","Nitrospira sp. OLB3"]]},{"id":"NCBITaxon:1617415","l":"Chloroflexi bacterium OLB14","na":1,"nb":1,"a":[["TED%3AAF-A0A136L2M5-F1-model_v4_TED02","TED novel fold AF-A0A136L2M5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1617415","Chloroflexi bacterium OLB14"]]},{"id":"NCBITaxon:1617421","l":"Bacteroidetes bacterium OLB10","na":1,"nb":1,"a":[["TED%3AAF-A0A136NN96-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A136NN96-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1617421","Bacteroidetes bacterium OLB10"]]},{"id":"NCBITaxon:1617423","l":"Acidobacteria bacterium OLB17","na":1,"nb":1,"a":[["TED%3AAF-A0A136KB18-F1-model_v4_TED03","TED novel fold AF-A0A136KB18-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1617423","Acidobacteria bacterium OLB17"]]},{"id":"NCBITaxon:1617426","l":"candidate division WS6 bacterium OLB20","na":1,"nb":1,"a":[["TED%3AAF-A0A136LWE5-F1-model_v4_TED01","TED novel fold AF-A0A136LWE5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1617426","candidate division WS6 bacterium OLB20"]]},{"id":"NCBITaxon:1617967","l":"Granulicella sp. 5B5","na":1,"nb":1,"a":[["TED%3AAF-A0A7D8FKC4-F1-model_v4_TED02","TED novel fold AF-A0A7D8FKC4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1617967","Granulicella sp. 5B5"]]},{"id":"NCBITaxon:1618342","l":"candidate division CPR1 bacterium GW2011_GWC1_49_13","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1YIE7-F1-model_v4_TED02","TED novel fold AF-A0A0G1YIE7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1618342","candidate division CPR1 bacterium GW2011_GWC1_49_13"]]},{"id":"NCBITaxon:1618381","l":"Candidatus Collierbacteria bacterium GW2011_GWA2_46_26","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1PMB0-F1-model_v4_TED03","TED novel fold AF-A0A0G1PMB0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1618381","Candidatus Collierbacteria bacterium GW2011_GWA2_46_26"]]},{"id":"NCBITaxon:1618388","l":"Candidatus Collierbacteria bacterium GW2011_GWB2_45_17","na":1,"nb":1,"a":[["TED%3AAF-A0A837IEC1-F1-model_v4_TED01","TED novel fold AF-A0A837IEC1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618388","Candidatus Collierbacteria bacterium GW2011_GWB2_45_17"]]},{"id":"NCBITaxon:1618405","l":"Candidatus Curtissbacteria bacterium GW2011_GWA1_40_16","na":1,"nb":1,"a":[["TED%3AAF-A0A0G0RDL7-F1-model_v4_TED02","TED novel fold AF-A0A0G0RDL7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1618405","Candidatus Curtissbacteria bacterium GW2011_GWA1_40_16"]]},{"id":"NCBITaxon:1618497","l":"Microgenomates group bacterium GW2011_GWA2_37_6","na":1,"nb":1,"a":[["TED%3AAF-A0A0G0H9R1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G0H9R1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618497","Microgenomates group bacterium GW2011_GWA2_37_6"]]},{"id":"NCBITaxon:1618524","l":"Microgenomates group bacterium GW2011_GWC1_44_37","na":1,"nb":1,"a":[["TED%3AAF-A0A837IEJ1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A837IEJ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618524","Microgenomates group bacterium GW2011_GWC1_44_37"]]},{"id":"NCBITaxon:1618531","l":"Microgenomates group bacterium GW2011_GWC2_45_8","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1MYW8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G1MYW8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618531","Microgenomates group bacterium GW2011_GWC2_45_8"]]},{"id":"NCBITaxon:1618578","l":"Candidatus Woesebacteria bacterium GW2011_GWB1_43_14","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1DMI8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G1DMI8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618578","Candidatus Woesebacteria bacterium GW2011_GWB1_43_14"]]},{"id":"NCBITaxon:1618586","l":"Candidatus Woesebacteria bacterium GW2011_GWC2_31_9","na":1,"nb":1,"a":[["TED%3AAF-A0A0F9YKM8-F1-model_v4_TED01","TED novel fold AF-A0A0F9YKM8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618586","Candidatus Woesebacteria bacterium GW2011_GWC2_31_9"]]},{"id":"NCBITaxon:1618590","l":"Candidatus Woesebacteria bacterium GW2011_GWC2_47_16","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1V118-F1-model_v4_TED02","TED novel fold AF-A0A0G1V118-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1618590","Candidatus Woesebacteria bacterium GW2011_GWC2_47_16"]]},{"id":"NCBITaxon:1618665","l":"Candidatus Jorgensenbacteria bacterium GW2011_GWB1_50_10","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1W7L0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0G1W7L0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1618665","Candidatus Jorgensenbacteria bacterium GW2011_GWB1_50_10"]]},{"id":"NCBITaxon:1618666","l":"Candidatus Jorgensenbacteria bacterium GW2011_GWC1_48_8","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1XUZ7-F1-model_v4_TED02","TED novel fold AF-A0A0G1XUZ7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1618666","Candidatus Jorgensenbacteria bacterium GW2011_GWC1_48_8"]]},{"id":"NCBITaxon:1618668","l":"Candidatus Kaiserbacteria bacterium GW2011_GWA1_50_28","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1YS41-F1-model_v4_TED01","TED novel fold AF-A0A0G1YS41-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618668","Candidatus Kaiserbacteria bacterium GW2011_GWA1_50_28"]]},{"id":"NCBITaxon:1618695","l":"Candidatus Moranbacteria bacterium GW2011_GWA2_39_41","na":1,"nb":1,"a":[["TED%3AAF-A0A0G0S822-F1-model_v4_TED01","TED novel fold AF-A0A0G0S822-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618695","Candidatus Moranbacteria bacterium GW2011_GWA2_39_41"]]},{"id":"NCBITaxon:1618699","l":"Candidatus Moranbacteria bacterium GW2011_GWC2_40_12","na":1,"nb":1,"a":[["TED%3AAF-A0A0G0TCH8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G0TCH8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618699","Candidatus Moranbacteria bacterium GW2011_GWC2_40_12"]]},{"id":"NCBITaxon:1618715","l":"Candidatus Moranbacteria bacterium GW2011_GWF1_34_10","na":1,"nb":1,"a":[["TED%3AAF-A0A0G0D426-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0G0D426-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1618715","Candidatus Moranbacteria bacterium GW2011_GWF1_34_10"]]},{"id":"NCBITaxon:1618789","l":"Parcubacteria group bacterium GW2011_GWA1_Parcubacteria_45_10","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1N099-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0G1N099-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1618789","Parcubacteria group bacterium GW2011_GWA1_Parcubacteria_45_10"]]},{"id":"NCBITaxon:1618803","l":"Parcubacteria group bacterium GW2011_GWA1_56_13","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1YL44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G1YL44-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618803","Parcubacteria group bacterium GW2011_GWA1_56_13"]]},{"id":"NCBITaxon:1618827","l":"Parcubacteria group bacterium GW2011_GWA2_43_17","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1ED26-F1-model_v4_TED01","TED novel fold AF-A0A0G1ED26-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618827","Parcubacteria group bacterium GW2011_GWA2_43_17"]]},{"id":"NCBITaxon:1618845","l":"Parcubacteria group bacterium GW2011_GWA2_47_64","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1T721-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0G1T721-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1618845","Parcubacteria group bacterium GW2011_GWA2_47_64"]]},{"id":"NCBITaxon:1618850","l":"Parcubacteria group bacterium GW2011_GWA2_48_9","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1XAM6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0G1XAM6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1618850","Parcubacteria group bacterium GW2011_GWA2_48_9"]]},{"id":"NCBITaxon:1618852","l":"Parcubacteria group bacterium GW2011_GWA2_49_9","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1Y838-F1-model_v4_TED01","TED novel fold AF-A0A0G1Y838-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618852","Parcubacteria group bacterium GW2011_GWA2_49_9"]]},{"id":"NCBITaxon:1618864","l":"Parcubacteria group bacterium GW2011_GWB1_38_8","na":1,"nb":1,"a":[["TED%3AAF-A0A0G0NBQ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G0NBQ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618864","Parcubacteria group bacterium GW2011_GWB1_38_8"]]},{"id":"NCBITaxon:1618872","l":"Parcubacteria group bacterium GW2011_GWB1_43_6","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1F5H8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0G1F5H8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1618872","Parcubacteria group bacterium GW2011_GWB1_43_6"]]},{"id":"NCBITaxon:1618900","l":"Parcubacteria group bacterium GW2011_GWC1_39_29","na":1,"nb":1,"a":[["TED%3AAF-A0A0G0NFW5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G0NFW5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618900","Parcubacteria group bacterium GW2011_GWC1_39_29"]]},{"id":"NCBITaxon:1618918","l":"Parcubacteria group bacterium GW2011_GWC2_32_10","na":1,"nb":1,"a":[["TED%3AAF-A0A0F9YN28-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F9YN28-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618918","Parcubacteria group bacterium GW2011_GWC2_32_10"]]},{"id":"NCBITaxon:1618993","l":"Candidatus Uhrbacteria bacterium GW2011_GWE2_45_35","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1QJK0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0G1QJK0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1618993","Candidatus Uhrbacteria bacterium GW2011_GWE2_45_35"]]},{"id":"NCBITaxon:1618994","l":"Candidatus Uhrbacteria bacterium GW2011_GWE2_46_68","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1Q703-F1-model_v4_TED01","TED novel fold AF-A0A0G1Q703-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1618994","Candidatus Uhrbacteria bacterium GW2011_GWE2_46_68"]]},{"id":"NCBITaxon:1619010","l":"Candidatus Wolfebacteria bacterium GW2011_GWC1_37_10","na":1,"nb":1,"a":[["TED%3AAF-A0A0G0J416-F1-model_v4_TED02","TED novel fold AF-A0A0G0J416-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1619010","Candidatus Wolfebacteria bacterium GW2011_GWC1_37_10"]]},{"id":"NCBITaxon:1619039","l":"Candidatus Magasanikbacteria bacterium GW2011_GWA2_42_32","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1A845-F1-model_v4_TED02","TED novel fold AF-A0A0G1A845-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1619039","Candidatus Magasanikbacteria bacterium GW2011_GWA2_42_32"]]},{"id":"NCBITaxon:1619042","l":"Candidatus Magasanikbacteria bacterium GW2011_GWA2_46_17","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1NZM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G1NZM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1619042","Candidatus Magasanikbacteria bacterium GW2011_GWA2_46_17"]]},{"id":"NCBITaxon:1619044","l":"Candidatus Magasanikbacteria bacterium GW2011_GWA2_56_11","na":1,"nb":1,"a":[["TED%3AAF-A0A0G2AJX8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G2AJX8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1619044","Candidatus Magasanikbacteria bacterium GW2011_GWA2_56_11"]]},{"id":"NCBITaxon:1619057","l":"Candidatus Peregrinibacteria bacterium GW2011_GWA2_44_7","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1JX42-F1-model_v4_TED02","TED novel fold AF-A0A0G1JX42-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1619057","Candidatus Peregrinibacteria bacterium GW2011_GWA2_44_7"]]},{"id":"NCBITaxon:1619058","l":"Candidatus Peregrinibacteria bacterium GW2011_GWA2_47_7","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1TF34-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G1TF34-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1619058","Candidatus Peregrinibacteria bacterium GW2011_GWA2_47_7"]]},{"id":"NCBITaxon:1619059","l":"Candidatus Peregrinibacteria bacterium GW2011_GWA2_54_9","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1YBX6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G1YBX6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1619059","Candidatus Peregrinibacteria bacterium GW2011_GWA2_54_9"]]},{"id":"NCBITaxon:1619060","l":"Candidatus Peribacteria bacterium GW2011_GWB1_54_5","na":1,"nb":1,"a":[["TED%3AAF-A0A0G2A8E9-F1-model_v4_TED02","TED novel fold AF-A0A0G2A8E9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1619060","Candidatus Peribacteria bacterium GW2011_GWB1_54_5"]]},{"id":"NCBITaxon:1619076","l":"candidate division TM6 bacterium GW2011_GWE2_42_60","na":1,"nb":1,"a":[["TED%3AAF-A0A0G1DAV5-F1-model_v4_TED01","TED novel fold AF-A0A0G1DAV5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1619076","candidate division TM6 bacterium GW2011_GWE2_42_60"]]},{"id":"NCBITaxon:1619090","l":"candidate division WS6 bacterium GW2011_GWC1_36_11","na":1,"nb":1,"a":[["TED%3AAF-A0A0G0DMJ6-F1-model_v4_TED01","TED novel fold AF-A0A0G0DMJ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1619090","candidate division WS6 bacterium GW2011_GWC1_36_11"]]},{"id":"NCBITaxon:1619091","l":"candidate division WS6 bacterium GW2011_GWC2_36_7","na":1,"nb":1,"a":[["TED%3AAF-A0A0G0EVW7-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A0G0EVW7-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A1619091","candidate division WS6 bacterium GW2011_GWC2_36_7"]]},{"id":"NCBITaxon:1619097","l":"candidate division WS6 bacterium GW2011_GWF1_35_23","na":1,"nb":1,"a":[["TED%3AAF-A0A0G0EMC3-F1-model_v4_TED01","TED novel fold AF-A0A0G0EMC3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1619097","candidate division WS6 bacterium GW2011_GWF1_35_23"]]},{"id":"NCBITaxon:1619100","l":"candidate division WS6 bacterium GW2011_GWF2_39_15","na":1,"nb":1,"a":[["TED%3AAF-A0A0G0N089-F1-model_v4_TED01","TED novel fold AF-A0A0G0N089-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1619100","candidate division WS6 bacterium GW2011_GWF2_39_15"]]},{"id":"NCBITaxon:1619153","l":"Cohnella sp. LGH","na":1,"nb":1,"a":[["TED%3AAF-A0A8A5Z8C7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A8A5Z8C7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1619153","Cohnella sp. LGH"]]},{"id":"NCBITaxon:1619233","l":"Bradyrhizobium sp. LTSPM299","na":1,"nb":1,"a":[["TED%3AAF-A0A0D7Q9Z8-F1-model_v4_TED01","TED novel fold AF-A0A0D7Q9Z8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1619233","Bradyrhizobium sp. LTSPM299"]]},{"id":"NCBITaxon:1619234","l":"Anaerobium acetethylicum","na":1,"nb":1,"a":[["TED%3AAF-A0A1D3TWF5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1D3TWF5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1619234","Anaerobium acetethylicum"]]},{"id":"NCBITaxon:1620421","l":"Hoeflea sp. IMCC20628","na":1,"nb":1,"a":[["TED%3AAF-A0A0F7PLE4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0F7PLE4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1620421","Hoeflea sp. IMCC20628"]]},{"id":"NCBITaxon:162156","l":"uncultured Bacteroides sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A1C5XFB7-F1-model_v4_TED02","TED novel fold AF-A0A1C5XFB7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A162156","uncultured Bacteroides sp."]]},{"id":"NCBITaxon:1628158","l":"Mariniphaga sediminis","na":1,"nb":1,"a":[["TED%3AAF-A0A399CX27-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A399CX27-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1628158","Mariniphaga sediminis"]]},{"id":"NCBITaxon:1628193","l":"Chromobacterium sp. LK1","na":1,"nb":1,"a":[["TED%3AAF-A0A0J6KNS5-F1-model_v4_TED01","TED novel fold AF-A0A0J6KNS5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1628193","Chromobacterium sp. LK1"]]},{"id":"NCBITaxon:1628833","l":"Pseudomonas sp. ES3-33","na":1,"nb":1,"a":[["TED%3AAF-A0A0D8ZZX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D8ZZX7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1628833","Pseudomonas sp. ES3-33"]]},{"id":"NCBITaxon:1629717","l":"Peptococcaceae bacterium BRH_c4b","na":1,"nb":1,"a":[["TED%3AAF-A0A0F2PPN4-F1-model_v4_TED02","TED novel fold AF-A0A0F2PPN4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1629717","Peptococcaceae bacterium BRH_c4b"]]},{"id":"NCBITaxon:1629718","l":"Rhodospirillaceae bacterium BRH_c57","na":1,"nb":1,"a":[["TED%3AAF-A0A0F2RDH0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F2RDH0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1629718","Rhodospirillaceae bacterium BRH_c57"]]},{"id":"NCBITaxon:1629722","l":"Gammaproteobacteria bacterium BRH_c0","na":1,"nb":1,"a":[["TED%3AAF-A0A0F2P724-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F2P724-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1629722","Gammaproteobacteria bacterium BRH_c0"]]},{"id":"NCBITaxon:163003","l":"Thermococcus cleftensis","na":1,"nb":1,"a":[["Pfam%3APF01934","Ribonuclease HepT-like"]],"b":[["NCBITaxon%3A163003","Thermococcus cleftensis"]]},{"id":"NCBITaxon:1630141","l":"Candidatus Nitrosoglobus terrae","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q2SLZ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q2SLZ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1630141","Candidatus Nitrosoglobus terrae"]]},{"id":"NCBITaxon:1630166","l":"Bifidobacterium myosotis","na":1,"nb":1,"a":[["TED%3AAF-A0A5M9ZH21-F1-model_v4_TED01","TED novel fold AF-A0A5M9ZH21-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1630166","Bifidobacterium myosotis"]]},{"id":"NCBITaxon:1631356","l":"Luteipulveratus halotolerans","na":1,"nb":1,"a":[["TED%3AAF-A0A0L6CK14-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0L6CK14-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1631356","Luteipulveratus halotolerans"]]},{"id":"NCBITaxon:1632864","l":"Planctomyces sp. SH-PL14","na":1,"nb":1,"a":[["TED%3AAF-A0A142X1A9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A142X1A9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1632864","Planctomyces sp. SH-PL14"]]},{"id":"NCBITaxon:1633631","l":"Candidatus Kryptonium thompsonii","na":1,"nb":1,"a":[["TED%3AAF-A0A0P1MHJ7-F1-model_v4_TED01","TED novel fold AF-A0A0P1MHJ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1633631","Candidatus Kryptonium thompsonii"]]},{"id":"NCBITaxon:1635171","l":"Pokkaliibacter plantistimulans","na":1,"nb":1,"a":[["TED%3AAF-A0A318C1K6-F1-model_v4_TED02","TED novel fold AF-A0A318C1K6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1635171","Pokkaliibacter plantistimulans"]]},{"id":"NCBITaxon:1635258","l":"Desulfonauticus sp. 38_4375","na":1,"nb":1,"a":[["TED%3AAF-A0A101DGG6-F1-model_v4_TED02","TED novel fold AF-A0A101DGG6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1635258","Desulfonauticus sp. 38_4375"]]},{"id":"NCBITaxon:1635287","l":"Methanosarcinales archeaon 56_1174","na":1,"nb":1,"a":[["TED%3AAF-A0A101F534-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A101F534-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1635287","Methanosarcinales archeaon 56_1174"]]},{"id":"NCBITaxon:1636719","l":"Psychrobacillus lasiicapitis","na":1,"nb":1,"a":[["TED%3AAF-A0A544SVH9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A544SVH9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1636719","Psychrobacillus lasiicapitis"]]},{"id":"NCBITaxon:1637999","l":"Verrucomicrobia bacterium IMCC26134","na":1,"nb":1,"a":[["TED%3AAF-A0A0E3YY29-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A0E3YY29-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1637999","Verrucomicrobia bacterium IMCC26134"]]},{"id":"NCBITaxon:1638099","l":"Salinarimonas soli","na":1,"nb":1,"a":[["TED%3AAF-A0A5B2VF65-F1-model_v4_TED03","TED novel fold AF-A0A5B2VF65-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1638099","Salinarimonas soli"]]},{"id":"NCBITaxon:1638939","l":"Streptomyces sp. KE1","na":1,"nb":1,"a":[["TED%3AAF-A0A0H1ADU0-F1-model_v4_TED01","TED novel fold AF-A0A0H1ADU0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1638939","Streptomyces sp. KE1"]]},{"id":"NCBITaxon:1639035","l":"Ancylomarina subtilis","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q7VJ86-F1-model_v4_TED01","TED novel fold AF-A0A4Q7VJ86-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1639035","Ancylomarina subtilis"]]},{"id":"NCBITaxon:1639133","l":"Citrobacter portucalensis","na":1,"nb":1,"a":[["TED%3AAF-A0A7I7D4I9-F1-model_v4_TED01","TED novel fold AF-A0A7I7D4I9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1639133","Citrobacter portucalensis"]]},{"id":"NCBITaxon:1639348","l":"Magnetospirillum sp. ME-1","na":1,"nb":1,"a":[["TED%3AAF-A0A1W6CQ93-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1W6CQ93-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1639348","Magnetospirillum sp. ME-1"]]},{"id":"NCBITaxon:1639689","l":"Pontivivens insulae","na":1,"nb":1,"a":[["TED%3AAF-A0A2R8A870-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2R8A870-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1639689","Pontivivens insulae"]]},{"id":"NCBITaxon:1640508","l":"Candidatus Dadabacteria bacterium CSP1-2","na":1,"nb":1,"a":[["TED%3AAF-A0A0T5ZT54-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0T5ZT54-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1640508","Candidatus Dadabacteria bacterium CSP1-2"]]},{"id":"NCBITaxon:1640674","l":"Williamwhitmania taraxaci","na":1,"nb":1,"a":[["TED%3AAF-A0A1G6THB4-F1-model_v4_TED03","TED novel fold AF-A0A1G6THB4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1640674","Williamwhitmania taraxaci"]]},{"id":"NCBITaxon:1641389","l":"candidate division WS6 bacterium 34_10","na":1,"nb":1,"a":[["TED%3AAF-A0A101HI13-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A101HI13-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1641389","candidate division WS6 bacterium 34_10"]]},{"id":"NCBITaxon:1642299","l":"Streptomyces alfalfae","na":1,"nb":1,"a":[["TED%3AAF-A0A7T4PGJ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T4PGJ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1642299","Streptomyces alfalfae"]]},{"id":"NCBITaxon:1642303","l":"Nonomuraea zeae","na":1,"nb":1,"a":[["TED%3AAF-A0A5S4G4F8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5S4G4F8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1642303","Nonomuraea zeae"]]},{"id":"NCBITaxon:164332","l":"Roseicyclus mahoneyensis","na":1,"nb":1,"a":[["TED%3AAF-A0A316GQD4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A316GQD4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A164332","Roseicyclus mahoneyensis"]]},{"id":"NCBITaxon:1643451","l":"Sphingobacterium sp. Ag1","na":1,"nb":1,"a":[["TED%3AAF-A0A0M2XSW5-F1-model_v4_TED04","TED novel fold AF-A0A0M2XSW5-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1643451","Sphingobacterium sp. Ag1"]]},{"id":"NCBITaxon:1645681","l":"Nakamurella silvestris","na":1,"nb":1,"a":[["TED%3AAF-A0A399UJU9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A399UJU9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1645681","Nakamurella silvestris"]]},{"id":"NCBITaxon:164756","l":"Mycobacterium sp. MCS","na":1,"nb":1,"a":[["TED%3AAF-A0A5Q5BFH8-F1-model_v4_TED01","TED novel fold AF-A0A5Q5BFH8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A164756","Mycobacterium sp. MCS"]]},{"id":"NCBITaxon:1647582","l":"Wenyingzhuangia aestuarii","na":1,"nb":1,"a":[["Pfam%3APF18040","beta porphyranase A C-terminal"]],"b":[["NCBITaxon%3A1647582","Wenyingzhuangia aestuarii"]]},{"id":"NCBITaxon:1648404","l":"Aurantiacibacter atlanticus","na":1,"nb":1,"a":[["TED%3AAF-A0A0H4VAN8-F1-model_v4_TED01","TED novel fold AF-A0A0H4VAN8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1648404","Aurantiacibacter atlanticus"]]},{"id":"NCBITaxon:164851","l":"uncultured soil bacterium","na":1,"nb":1,"a":[["IDPO%3A0000033","flexible linker"]],"b":[["NCBITaxon%3A164851","uncultured soil bacterium"]]},{"id":"NCBITaxon:1649266","l":"Pontibacter mucosus","na":1,"nb":1,"a":[["TED%3AAF-A0A2T5YD72-F1-model_v4_TED02","TED novel fold AF-A0A2T5YD72-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1649266","Pontibacter mucosus"]]},{"id":"NCBITaxon:1649877","l":"Pseudomonas sp. CCOS 191","na":1,"nb":1,"a":[["TED%3AAF-A0A0F7Y2R1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0F7Y2R1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1649877","Pseudomonas sp. CCOS 191"]]},{"id":"NCBITaxon:1650663","l":"Allofournierella massiliensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4R1QMU8-F1-model_v4_TED06","TED novel fold AF-A0A4R1QMU8-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A1650663","Allofournierella massiliensis"]]},{"id":"NCBITaxon:165185","l":"uncultured Eubacterium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A1C6GM73-F1-model_v4_TED04","TED novel fold AF-A0A1C6GM73-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A165185","uncultured Eubacterium sp."]]},{"id":"NCBITaxon:1652831","l":"Vibrio sp. FF_286","na":1,"nb":1,"a":[["TED%3AAF-A0A0H3ZNT2-F1-model_v4_TED01","TED novel fold AF-A0A0H3ZNT2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1652831","Vibrio sp. FF_286"]]},{"id":"NCBITaxon:1653476","l":"Caldimicrobium thiodismutans","na":1,"nb":1,"a":[["TED%3AAF-A0A0U4W3M4-F1-model_v4_TED01","TED novel fold AF-A0A0U4W3M4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1653476","Caldimicrobium thiodismutans"]]},{"id":"NCBITaxon:1653850","l":"Planctomyces bekefii","na":1,"nb":1,"a":[["TED%3AAF-A0A5C6M4E2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5C6M4E2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1653850","Planctomyces bekefii"]]},{"id":"NCBITaxon:1655277","l":"Brevibacillus gelatini","na":1,"nb":1,"a":[["TED%3AAF-A0A3M8BF35-F1-model_v4_TED02","TED novel fold AF-A0A3M8BF35-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1655277","Brevibacillus gelatini"]]},{"id":"NCBITaxon:1655435","l":"Serinibacter arcticus","na":1,"nb":1,"a":[["TED%3AAF-A0A2U1ZSC6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U1ZSC6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1655435","Serinibacter arcticus"]]},{"id":"NCBITaxon:1655592","l":"Cryomorphaceae bacterium BACL21 MAG-121220-bin10","na":1,"nb":1,"a":[["TED%3AAF-A0A0R2RYD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0R2RYD6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1655592","Cryomorphaceae bacterium BACL21 MAG-121220-bin10"]]},{"id":"NCBITaxon:1655611","l":"SAR86 cluster bacterium BACL1 MAG-120619-bin26","na":1,"nb":1,"a":[["TED%3AAF-A0A0R2UVS8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0R2UVS8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1655611","SAR86 cluster bacterium BACL1 MAG-120619-bin26"]]},{"id":"NCBITaxon:1655633","l":"Actinobacteria bacterium BACL2 MAG-120507-bin38","na":1,"nb":1,"a":[["TED%3AAF-A0A0R2WX30-F1-model_v4_TED01","TED novel fold AF-A0A0R2WX30-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1655633","Actinobacteria bacterium BACL2 MAG-120507-bin38"]]},{"id":"NCBITaxon:165597","l":"Crocosphaera watsonii WH 8501","na":1,"nb":1,"a":[["TED%3AAF-Q4C993-F1-model_v4_TED03","TED novel fold AF-Q4C993-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A165597","Crocosphaera watsonii WH 8501"]]},{"id":"NCBITaxon:1658765","l":"Marinobacter subterrani","na":1,"nb":1,"a":[["TED%3AAF-A0A0J7J4S0-F1-model_v4_TED02","TED novel fold AF-A0A0J7J4S0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1658765","Marinobacter subterrani"]]},{"id":"NCBITaxon:1659195","l":"Parcubacteria bacterium C7867-001","na":1,"nb":1,"a":[["TED%3AAF-A0A0L0LMR2-F1-model_v4_TED01","TED novel fold AF-A0A0L0LMR2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1659195","Parcubacteria bacterium C7867-001"]]},{"id":"NCBITaxon:1659202","l":"Parcubacteria bacterium C7867-008","na":1,"nb":1,"a":[["TED%3AAF-A0A0L0LGW9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0L0LGW9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1659202","Parcubacteria bacterium C7867-008"]]},{"id":"NCBITaxon:1660097","l":"Devosia sp. SCN 66-27","na":1,"nb":1,"a":[["TED%3AAF-A0A1E4AWJ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E4AWJ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1660097","Devosia sp. SCN 66-27"]]},{"id":"NCBITaxon:1660099","l":"Erythrobacter sp. SCN 62-14","na":1,"nb":1,"a":[["TED%3AAF-A0A1E4B557-F1-model_v4_TED01","TED novel fold AF-A0A1E4B557-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1660099","Erythrobacter sp. SCN 62-14"]]},{"id":"NCBITaxon:1660104","l":"Lautropia sp. SCN 69-89","na":1,"nb":1,"a":[["TED%3AAF-A0A1D2SDE0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1D2SDE0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1660104","Lautropia sp. SCN 69-89"]]},{"id":"NCBITaxon:1660128","l":"Phenylobacterium sp. SCN 69-14","na":1,"nb":1,"a":[["TED%3AAF-A0A1D2TRD7-F1-model_v4_TED01","TED novel fold AF-A0A1D2TRD7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1660128","Phenylobacterium sp. SCN 69-14"]]},{"id":"NCBITaxon:1660129","l":"Phenylobacterium sp. SCN 70-31","na":1,"nb":1,"a":[["TED%3AAF-A0A1E4GQB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E4GQB9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1660129","Phenylobacterium sp. SCN 70-31"]]},{"id":"NCBITaxon:1660139","l":"Rubrivivax sp. SCN 70-15","na":1,"nb":1,"a":[["TED%3AAF-A0A1E4PV28-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E4PV28-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1660139","Rubrivivax sp. SCN 70-15"]]},{"id":"NCBITaxon:1660152","l":"Variovorax sp. SCN 67-85","na":1,"nb":1,"a":[["TED%3AAF-A0A1E4J2S9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E4J2S9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1660152","Variovorax sp. SCN 67-85"]]},{"id":"NCBITaxon:1660161","l":"Comamonadaceae bacterium SCN 68-20","na":1,"nb":1,"a":[["TED%3AAF-A0A1E4LPY3-F1-model_v4_TED01","TED novel fold AF-A0A1E4LPY3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1660161","Comamonadaceae bacterium SCN 68-20"]]},{"id":"NCBITaxon:1660164","l":"Nitrosomonadales bacterium SCN 54-20","na":1,"nb":1,"a":[["TED%3AAF-A0A1E4GKC2-F1-model_v4_TED01","TED novel fold AF-A0A1E4GKC2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1660164","Nitrosomonadales bacterium SCN 54-20"]]},{"id":"NCBITaxon:1662404","l":"Streptomyces sp. GKU 895","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4E5Y3-F1-model_v4_TED02","TED novel fold AF-A0A1V4E5Y3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1662404","Streptomyces sp. GKU 895"]]},{"id":"NCBITaxon:1663685","l":"Pedobacter sp. BMA","na":1,"nb":1,"a":[["TED%3AAF-A0A0J0Y946-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0J0Y946-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1663685","Pedobacter sp. BMA"]]},{"id":"NCBITaxon:1664068","l":"bacterium 336/3","na":1,"nb":1,"a":[["TED%3AAF-A0A0N0CYH9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0N0CYH9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1664068","bacterium 336/3"]]},{"id":"NCBITaxon:1666904","l":"Oceanicaulis sp. HLUCCA04","na":1,"nb":1,"a":[["TED%3AAF-A0A0P7VI28-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0P7VI28-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1666904","Oceanicaulis sp. HLUCCA04"]]},{"id":"NCBITaxon:1666913","l":"Rhodobacteraceae bacterium HLUCCA08","na":1,"nb":1,"a":[["TED%3AAF-A0A0P7VN22-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0P7VN22-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1666913","Rhodobacteraceae bacterium HLUCCA08"]]},{"id":"NCBITaxon:1667024","l":"Vibrio algivorus","na":1,"nb":1,"a":[["TED%3AAF-A0A557NSY4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A557NSY4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1667024","Vibrio algivorus"]]},{"id":"NCBITaxon:1670455","l":"Sulfodiicoccus acidiphilus","na":1,"nb":1,"a":[["TED%3AAF-A0A348B6D9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A348B6D9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1670455","Sulfodiicoccus acidiphilus"]]},{"id":"NCBITaxon:1670800","l":"Aquibium oceanicum","na":1,"nb":1,"a":[["TED%3AAF-A0A1L3SXT9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1L3SXT9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1670800","Aquibium oceanicum"]]},{"id":"NCBITaxon:1673428","l":"Cuniculiplasma divulgatum","na":1,"nb":1,"a":[["TED%3AAF-A0A1N5S5J2-F1-model_v4_TED02","TED novel fold AF-A0A1N5S5J2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1673428","Cuniculiplasma divulgatum"]]},{"id":"NCBITaxon:167539","l":"Prochlorococcus marinus subsp. marinus str. CCMP1375","na":1,"nb":1,"a":[["TED%3AAF-Q7VCX4-F1-model_v4_TED08","TED novel fold AF-Q7VCX4-F1-model_v4_TED08"]],"b":[["NCBITaxon%3A167539","Prochlorococcus marinus subsp. marinus str. CCMP1375"]]},{"id":"NCBITaxon:1675527","l":"Candidatus Rhodobacter oscarellae","na":1,"nb":1,"a":[["TED%3AAF-A0A0J9EEL6-F1-model_v4_TED01","TED novel fold AF-A0A0J9EEL6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1675527","Candidatus Rhodobacter oscarellae"]]},{"id":"NCBITaxon:1675530","l":"Acinetobacter genomosp. 33YU","na":1,"nb":1,"a":[["TED%3AAF-A0A1V2V0J6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V2V0J6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1675530","Acinetobacter genomosp. 33YU"]]},{"id":"NCBITaxon:1675788","l":"Paracoccus onubensis","na":1,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_IPL","Metallophore-associated isochorismate pyruvate-lyase family"]],"b":[["NCBITaxon%3A1675788","Paracoccus onubensis"]]},{"id":"NCBITaxon:1677857","l":"Acetivibrio saccincola","na":1,"nb":1,"a":[["TED%3AAF-A0A2S8RBD2-F1-model_v4_TED03","TED novel fold AF-A0A2S8RBD2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1677857","Acetivibrio saccincola"]]},{"id":"NCBITaxon:1678841","l":"Lentimicrobium saccharophilum","na":1,"nb":1,"a":[["TED%3AAF-A0A0S7BSF5-F1-model_v4_TED01","TED novel fold AF-A0A0S7BSF5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1678841","Lentimicrobium saccharophilum"]]},{"id":"NCBITaxon:1679083","l":"Natrarchaeobius chitinivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A3N6M7R2-F1-model_v4_TED01","TED novel fold AF-A0A3N6M7R2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1679083","Natrarchaeobius chitinivorans"]]},{"id":"NCBITaxon:1685010","l":"Chryseobacterium glaciei","na":1,"nb":1,"a":[["TED%3AAF-A0A172XRJ3-F1-model_v4_TED03","TED novel fold AF-A0A172XRJ3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1685010","Chryseobacterium glaciei"]]},{"id":"NCBITaxon:1685377","l":"Microbulbifer sp. ZGT114","na":1,"nb":1,"a":[["TED%3AAF-A0A0X3UAA2-F1-model_v4_TED02","TED novel fold AF-A0A0X3UAA2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1685377","Microbulbifer sp. ZGT114"]]},{"id":"NCBITaxon:1688639","l":"Noviherbaspirillum humi","na":1,"nb":1,"a":[["TED%3AAF-A0A239G4L3-F1-model_v4_TED01","TED novel fold AF-A0A239G4L3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1688639","Noviherbaspirillum humi"]]},{"id":"NCBITaxon:1688776","l":"Bacteroidales bacterium 6E","na":1,"nb":1,"a":[["TED%3AAF-A0A0K8QZY2-F1-model_v4_TED05","TED novel fold AF-A0A0K8QZY2-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1688776","Bacteroidales bacterium 6E"]]},{"id":"NCBITaxon:1690485","l":"Betaproteobacteria bacterium UKL13-2","na":1,"nb":1,"a":[["TED%3AAF-A0A142LLM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A142LLM3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1690485","Betaproteobacteria bacterium UKL13-2"]]},{"id":"NCBITaxon:1696036","l":"Candidatus Finniella inopinata","na":1,"nb":1,"a":[["TED%3AAF-A0A4V2DZL4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4V2DZL4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1696036","Candidatus Finniella inopinata"]]},{"id":"NCBITaxon:1697043","l":"Bordetella sp. H567","na":1,"nb":1,"a":[["TED%3AAF-A0A1B2RAG0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B2RAG0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1697043","Bordetella sp. H567"]]},{"id":"NCBITaxon:1697557","l":"Marinobacter confluentis","na":1,"nb":1,"a":[["TED%3AAF-A0A4Z1BTW9-F1-model_v4_TED01","TED novel fold AF-A0A4Z1BTW9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1697557","Marinobacter confluentis"]]},{"id":"NCBITaxon:169760","l":"Paenibacillus stellifer","na":1,"nb":1,"a":[["TED%3AAF-A0A089LNP8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A089LNP8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A169760","Paenibacillus stellifer"]]},{"id":"NCBITaxon:1698281","l":"candidate division MSBL1 archaeon SCGC-AAA382C18","na":1,"nb":1,"a":[["TED%3AAF-A0A133VH86-F1-model_v4_TED01","TED novel fold AF-A0A133VH86-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1698281","candidate division MSBL1 archaeon SCGC-AAA382C18"]]},{"id":"NCBITaxon:170000","l":"Phakopsora pachyrhizi","na":1,"nb":1,"a":[["TED%3AAF-A0A0S1MKM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S1MKM4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A170000","Phakopsora pachyrhizi"]]},{"id":"NCBITaxon:1700835","l":"Candidatus Bathyarchaeota archaeon BA1","na":1,"nb":1,"a":[["TED%3AAF-A0A0P9I0I1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0P9I0I1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1700835","Candidatus Bathyarchaeota archaeon BA1"]]},{"id":"NCBITaxon:1702","l":"Brevibacterium sterolicum","na":1,"nb":1,"a":[["Pfam%3APF22500","GMC oxidoreductase, C-terminal"]],"b":[["NCBITaxon%3A1702","Brevibacterium sterolicum"]]},{"id":"NCBITaxon:1703337","l":"Hallella colorans","na":1,"nb":1,"a":[["TED%3AAF-A0A2U0U072-F1-model_v4_TED04","TED novel fold AF-A0A2U0U072-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1703337","Hallella colorans"]]},{"id":"NCBITaxon:1703343","l":"Marinirhabdus gelatinilytica","na":1,"nb":1,"a":[["TED%3AAF-A0A370Q2G1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A370Q2G1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1703343","Marinirhabdus gelatinilytica"]]},{"id":"NCBITaxon:1703352","l":"Bacteroides sp. SM23_62","na":1,"nb":1,"a":[["TED%3AAF-A0A0S8JVR9-F1-model_v4_TED02","TED novel fold AF-A0A0S8JVR9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1703352","Bacteroides sp. SM23_62"]]},{"id":"NCBITaxon:1703357","l":"Gemmatimonas sp. SG8_28","na":1,"nb":1,"a":[["TED%3AAF-A0A0S8BD44-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0S8BD44-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1703357","Gemmatimonas sp. SG8_28"]]},{"id":"NCBITaxon:1703358","l":"Gemmatimonas sp. SG8_38_2","na":1,"nb":1,"a":[["TED%3AAF-A0A0S8FXC8-F1-model_v4_TED03","TED novel fold AF-A0A0S8FXC8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1703358","Gemmatimonas sp. SG8_38_2"]]},{"id":"NCBITaxon:1703359","l":"Gemmatimonas sp. SM23_52","na":1,"nb":1,"a":[["TED%3AAF-A0A0S8HDK6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0S8HDK6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1703359","Gemmatimonas sp. SM23_52"]]},{"id":"NCBITaxon:1703361","l":"Syntrophobacter sp. DG_60","na":1,"nb":1,"a":[["TED%3AAF-A0A0S7Y159-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0S7Y159-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1703361","Syntrophobacter sp. DG_60"]]},{"id":"NCBITaxon:1703385","l":"Acidithiobacillales bacterium SM23_46","na":1,"nb":1,"a":[["TED%3AAF-A0A0S8GK70-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S8GK70-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1703385","Acidithiobacillales bacterium SM23_46"]]},{"id":"NCBITaxon:1703388","l":"Anaerolineae bacterium SM23_84","na":1,"nb":1,"a":[["TED%3AAF-A0A0S8KE38-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S8KE38-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1703388","Anaerolineae bacterium SM23_84"]]},{"id":"NCBITaxon:1703395","l":"Dehalococcoidia bacterium SM23_28_1","na":1,"nb":1,"a":[["TED%3AAF-A0A0S8CBD1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0S8CBD1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1703395","Dehalococcoidia bacterium SM23_28_1"]]},{"id":"NCBITaxon:1703402","l":"Gammaproteobacteria bacterium SG8_11","na":1,"nb":1,"a":[["TED%3AAF-A0A0S7ZT21-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S7ZT21-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1703402","Gammaproteobacteria bacterium SG8_11"]]},{"id":"NCBITaxon:1703408","l":"Myxococcales bacterium SG8_38_1","na":1,"nb":1,"a":[["TED%3AAF-A0A0S8F4A3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0S8F4A3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1703408","Myxococcales bacterium SG8_38_1"]]},{"id":"NCBITaxon:1703411","l":"Phycisphaerae bacterium SM23_30","na":1,"nb":1,"a":[["TED%3AAF-A0A0S8GVF7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S8GVF7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1703411","Phycisphaerae bacterium SM23_30"]]},{"id":"NCBITaxon:1703415","l":"Planctomycetes bacterium DG_58","na":1,"nb":1,"a":[["TED%3AAF-A0A0S7WZC6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S7WZC6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1703415","Planctomycetes bacterium DG_58"]]},{"id":"NCBITaxon:1703416","l":"Thiotrichales bacterium SG8_50","na":1,"nb":1,"a":[["TED%3AAF-A0A0S8ESX3-F1-model_v4_TED01","TED novel fold AF-A0A0S8ESX3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1703416","Thiotrichales bacterium SG8_50"]]},{"id":"NCBITaxon:1703424","l":"candidate division Zixibacteria bacterium SM1_73","na":1,"nb":1,"a":[["TED%3AAF-A0A0S8IZM5-F1-model_v4_TED01","TED novel fold AF-A0A0S8IZM5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1703424","candidate division Zixibacteria bacterium SM1_73"]]},{"id":"NCBITaxon:1703427","l":"candidate division Zixibacteria bacterium SM23_73_3","na":1,"nb":1,"a":[["TED%3AAF-A0A0S8ISL4-F1-model_v4_TED01","TED novel fold AF-A0A0S8ISL4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1703427","candidate division Zixibacteria bacterium SM23_73_3"]]},{"id":"NCBITaxon:170367","l":"Paenibacillus anaericanus","na":1,"nb":1,"a":[["TED%3AAF-A0A433Y7J1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A433Y7J1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A170367","Paenibacillus anaericanus"]]},{"id":"NCBITaxon:1703764","l":"Parcubacteria bacterium DG_72","na":1,"nb":1,"a":[["TED%3AAF-A0A0S7WY80-F1-model_v4_TED01","TED novel fold AF-A0A0S7WY80-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1703764","Parcubacteria bacterium DG_72"]]},{"id":"NCBITaxon:1703937","l":"Streptomyces sp. CB03234","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q5LKM4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q5LKM4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1703937","Streptomyces sp. CB03234"]]},{"id":"NCBITaxon:1703940","l":"Streptomyces sp. CB02261","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q5I6L7-F1-model_v4_TED01","TED novel fold AF-A0A1Q5I6L7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1703940","Streptomyces sp. CB02261"]]},{"id":"NCBITaxon:1703960","l":"Rhizobium sp. N113","na":1,"nb":1,"a":[["TED%3AAF-A0A192M071-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A192M071-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1703960","Rhizobium sp. N113"]]},{"id":"NCBITaxon:1704024","l":"Nitrospira bacterium SG8_35_1","na":1,"nb":1,"a":[["TED%3AAF-A0A0S8D382-F1-model_v4_TED01","TED novel fold AF-A0A0S8D382-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1704024","Nitrospira bacterium SG8_35_1"]]},{"id":"NCBITaxon:1704025","l":"Nitrospira bacterium SG8_35_4","na":1,"nb":1,"a":[["TED%3AAF-A0A0S8AI38-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S8AI38-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1704025","Nitrospira bacterium SG8_35_4"]]},{"id":"NCBITaxon:1704590","l":"Brachybacterium sp. SW0106-09","na":1,"nb":1,"a":[["TED%3AAF-A0A0M9UKT3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0M9UKT3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1704590","Brachybacterium sp. SW0106-09"]]},{"id":"NCBITaxon:1705393","l":"Chryseobacterium sp. ERMR1:04","na":1,"nb":1,"a":[["TED%3AAF-A0A0N1MGT1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0N1MGT1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1705393","Chryseobacterium sp. ERMR1:04"]]},{"id":"NCBITaxon:1705562","l":"Haloarcula rubripromontorii","na":1,"nb":1,"a":[["TED%3AAF-A0A847TUX0-F1-model_v4_TED01","TED novel fold AF-A0A847TUX0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1705562","Haloarcula rubripromontorii"]]},{"id":"NCBITaxon:1705564","l":"Candidatus Methanofastidiosum methylothiophilum","na":1,"nb":1,"a":[["TED%3AAF-A0A150J0S6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A150J0S6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1705564","Candidatus Methanofastidiosum methylothiophilum"]]},{"id":"NCBITaxon:1706046","l":"Sulfurirhabdus autotrophica","na":1,"nb":1,"a":[["TED%3AAF-A0A4R3XTA7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4R3XTA7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1706046","Sulfurirhabdus autotrophica"]]},{"id":"NCBITaxon:1706443","l":"Candidatus Thorarchaeota archaeon SMTZ-45","na":1,"nb":1,"a":[["TED%3AAF-A0A135VJX9-F1-model_v4_TED01","TED novel fold AF-A0A135VJX9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1706443","Candidatus Thorarchaeota archaeon SMTZ-45"]]},{"id":"NCBITaxon:1706444","l":"Candidatus Thorarchaeota archaeon SMTZ1-45","na":1,"nb":1,"a":[["TED%3AAF-A0A135VDT4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A135VDT4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1706444","Candidatus Thorarchaeota archaeon SMTZ1-45"]]},{"id":"NCBITaxon:1706445","l":"Candidatus Thorarchaeota archaeon SMTZ1-83","na":1,"nb":1,"a":[["TED%3AAF-A0A135VYZ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A135VYZ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1706445","Candidatus Thorarchaeota archaeon SMTZ1-83"]]},{"id":"NCBITaxon:1706839","l":"Paracoccus gahaiensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4U0RMG3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U0RMG3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1706839","Paracoccus gahaiensis"]]},{"id":"NCBITaxon:1710888","l":"Anabaena sp. CRKS33","na":1,"nb":1,"a":[["TED%3AAF-A0A1B7WA14-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B7WA14-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1710888","Anabaena sp. CRKS33"]]},{"id":"NCBITaxon:1710892","l":"Anabaena sp. LE011-02","na":1,"nb":1,"a":[["TED%3AAF-A0A1B7VF61-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1B7VF61-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1710892","Anabaena sp. LE011-02"]]},{"id":"NCBITaxon:1710896","l":"Aphanizomenon flos-aquae WA102","na":1,"nb":1,"a":[["TED%3AAF-A0A1B7X855-F1-model_v4_TED01","TED novel fold AF-A0A1B7X855-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1710896","Aphanizomenon flos-aquae WA102"]]},{"id":"NCBITaxon:1712410","l":"Thermanaerosceptrum fracticalcis","na":1,"nb":1,"a":[["TED%3AAF-A0A7G6E021-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7G6E021-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1712410","Thermanaerosceptrum fracticalcis"]]},{"id":"NCBITaxon:171292","l":"uncultured Mycobacterium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y5PD85-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y5PD85-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A171292","uncultured Mycobacterium sp."]]},{"id":"NCBITaxon:171383","l":"Vibrio hepatarius","na":1,"nb":1,"a":[["TED%3AAF-A0A0M0HYY9-F1-model_v4_TED02","TED novel fold AF-A0A0M0HYY9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A171383","Vibrio hepatarius"]]},{"id":"NCBITaxon:1714253","l":"Vulcanisaeta sp. JCHS_4","na":1,"nb":1,"a":[["TED%3AAF-A0A101WZJ6-F1-model_v4_TED03","TED novel fold AF-A0A101WZJ6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1714253","Vulcanisaeta sp. JCHS_4"]]},{"id":"NCBITaxon:1714258","l":"Thermoproteus sp. JCHS_4","na":1,"nb":1,"a":[["TED%3AAF-A0A101X9V8-F1-model_v4_TED02","TED novel fold AF-A0A101X9V8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1714258","Thermoproteus sp. JCHS_4"]]},{"id":"NCBITaxon:1714260","l":"Pyrobaculum sp. JCHS_4","na":1,"nb":1,"a":[["TED%3AAF-A0A117SN63-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A117SN63-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1714260","Pyrobaculum sp. JCHS_4"]]},{"id":"NCBITaxon:1715006","l":"Corynebacterium sp. HMSC070E08","na":1,"nb":1,"a":[["TED%3AAF-A0A1E9ZFL8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1E9ZFL8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1715006","Corynebacterium sp. HMSC070E08"]]},{"id":"NCBITaxon:1715007","l":"Rothia sp. HMSC071B01","na":1,"nb":1,"a":[["TED%3AAF-A0A1E9ZM56-F1-model_v4_TED01","TED novel fold AF-A0A1E9ZM56-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1715007","Rothia sp. HMSC071B01"]]},{"id":"NCBITaxon:1715079","l":"Neisseria sp. HMSC077D05","na":1,"nb":1,"a":[["TED%3AAF-A0A1E9VTI2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E9VTI2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1715079","Neisseria sp. HMSC077D05"]]},{"id":"NCBITaxon:1715109","l":"Rothia sp. HMSC072B03","na":1,"nb":1,"a":[["TED%3AAF-A0A1E9T6W6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1E9T6W6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1715109","Rothia sp. HMSC072B03"]]},{"id":"NCBITaxon:1715720","l":"Diaphorobacter ruginosibacter","na":1,"nb":1,"a":[["TED%3AAF-A0A7G9RTU7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G9RTU7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1715720","Diaphorobacter ruginosibacter"]]},{"id":"NCBITaxon:1716141","l":"Streptomyces jeddahensis","na":1,"nb":1,"a":[["TED%3AAF-A0A177HQP2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A177HQP2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1716141","Streptomyces jeddahensis"]]},{"id":"NCBITaxon:1718918","l":"Pseudomonas sp. ICMP 561","na":1,"nb":1,"a":[["TED%3AAF-A0A2G0V9T3-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A2G0V9T3-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1718918","Pseudomonas sp. ICMP 561"]]},{"id":"NCBITaxon:1719036","l":"Seonamhaeicola algicola","na":1,"nb":1,"a":[["TED%3AAF-A0A5C7AM55-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7AM55-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1719036","Seonamhaeicola algicola"]]},{"id":"NCBITaxon:1720294","l":"Eisenbergiella massiliensis","na":1,"nb":1,"a":[["TED%3AAF-A0A3E3I720-F1-model_v4_TED01","TED novel fold AF-A0A3E3I720-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1720294","Eisenbergiella massiliensis"]]},{"id":"NCBITaxon:1720313","l":"Bittarella massiliensis (ex Durand et al. 2017)","na":1,"nb":1,"a":[["TED%3AAF-A0A6B1UFA0-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A6B1UFA0-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1720313","Bittarella massiliensis (ex Durand et al. 2017)"]]},{"id":"NCBITaxon:1720316","l":"Senegalia massiliensis","na":1,"nb":1,"a":[["TED%3AAF-A0A845QYK1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A845QYK1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1720316","Senegalia massiliensis"]]},{"id":"NCBITaxon:1724","l":"Corynebacterium renale","na":1,"nb":1,"a":[["TED%3AAF-A0A2A9DLH1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A9DLH1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1724","Corynebacterium renale"]]},{"id":"NCBITaxon:1727163","l":"Algoriphagus sanaruensis","na":1,"nb":1,"a":[["TED%3AAF-A0A142ENK3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142ENK3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1727163","Algoriphagus sanaruensis"]]},{"id":"NCBITaxon:1729581","l":"Flavobacterium sp. TAB 87","na":1,"nb":1,"a":[["TED%3AAF-A0A119A8W3-F1-model_v4_TED01","TED novel fold AF-A0A119A8W3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1729581","Flavobacterium sp. TAB 87"]]},{"id":"NCBITaxon:1729650","l":"Planktothrix sp. PCC 11201","na":1,"nb":1,"a":[["TED%3AAF-A0A1T4ZGB8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1T4ZGB8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1729650","Planktothrix sp. PCC 11201"]]},{"id":"NCBITaxon:1732569","l":"Bdellovibrio sp. SKB1291214","na":1,"nb":1,"a":[["TED%3AAF-A0A254QC67-F1-model_v4_TED03","TED novel fold AF-A0A254QC67-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1732569","Bdellovibrio sp. SKB1291214"]]},{"id":"NCBITaxon:1735162","l":"Candidatus Peribacter riflensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0S1SSH7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0S1SSH7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1735162","Candidatus Peribacter riflensis"]]},{"id":"NCBITaxon:1736316","l":"Pseudorhodoferax sp. Leaf267","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q4XVH2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q4XVH2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1736316","Pseudorhodoferax sp. Leaf267"]]},{"id":"NCBITaxon:1736375","l":"Aureimonas sp. Leaf427","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q6CCD2-F1-model_v4_TED01","TED novel fold AF-A0A0Q6CCD2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1736375","Aureimonas sp. Leaf427"]]},{"id":"NCBITaxon:1736404","l":"Paenibacillus sp. Soil766","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q9QY30-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0Q9QY30-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1736404","Paenibacillus sp. Soil766"]]},{"id":"NCBITaxon:1736415","l":"Phycicoccus sp. Soil803","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q9SAW4-F1-model_v4_TED03","TED novel fold AF-A0A0Q9SAW4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1736415","Phycicoccus sp. Soil803"]]},{"id":"NCBITaxon:1736416","l":"Nocardioides sp. Soil805","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q9TGD2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q9TGD2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1736416","Nocardioides sp. Soil805"]]},{"id":"NCBITaxon:1736419","l":"Terrabacter sp. Soil811","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q9U0N8-F1-model_v4_TED01","TED novel fold AF-A0A0Q9U0N8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1736419","Terrabacter sp. Soil811"]]},{"id":"NCBITaxon:1736430","l":"Pelomonas sp. Root1217","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q6TDV5-F1-model_v4_TED03","TED novel fold AF-A0A0Q6TDV5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1736430","Pelomonas sp. Root1217"]]},{"id":"NCBITaxon:1736464","l":"Pelomonas sp. Root1444","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q7SFG8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0Q7SFG8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1736464","Pelomonas sp. Root1444"]]},{"id":"NCBITaxon:1736470","l":"Caulobacter sp. Root1472","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q7V710-F1-model_v4_TED01","TED novel fold AF-A0A0Q7V710-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1736470","Caulobacter sp. Root1472"]]},{"id":"NCBITaxon:1736674","l":"Pseudalgibacter alginicilyticus","na":1,"nb":1,"a":[["TED%3AAF-A0A0P0DD24-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0P0DD24-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1736674","Pseudalgibacter alginicilyticus"]]},{"id":"NCBITaxon:1737063","l":"Brumimicrobium aurantiacum","na":1,"nb":1,"a":[["TED%3AAF-A0A3E1EWN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3E1EWN3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1737063","Brumimicrobium aurantiacum"]]},{"id":"NCBITaxon:1739113","l":"Novosphingobium sp. FSW06-99","na":1,"nb":1,"a":[["TED%3AAF-A0A124JZM1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A124JZM1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1739113","Novosphingobium sp. FSW06-99"]]},{"id":"NCBITaxon:1739251","l":"Fusobacterium sp. HMSC073F01","na":1,"nb":1,"a":[["TED%3AAF-A0A1E9J453-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E9J453-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1739251","Fusobacterium sp. HMSC073F01"]]},{"id":"NCBITaxon:1739367","l":"Micrococcus sp. HMSC067E09","na":1,"nb":1,"a":[["TED%3AAF-A0A1F1IAR3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F1IAR3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1739367","Micrococcus sp. HMSC067E09"]]},{"id":"NCBITaxon:1739423","l":"Rothia sp. HMSC068E02","na":1,"nb":1,"a":[["TED%3AAF-A0A1F0Z8K8-F1-model_v4_TED01","TED novel fold AF-A0A1F0Z8K8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1739423","Rothia sp. HMSC068E02"]]},{"id":"NCBITaxon:1739517","l":"Bacteroides sp. HMSC073E02","na":1,"nb":1,"a":[["TED%3AAF-A0A1F0J0B6-F1-model_v4_TED01","TED novel fold AF-A0A1F0J0B6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1739517","Bacteroides sp. HMSC073E02"]]},{"id":"NCBITaxon:173959","l":"Brevibacillus invocatus","na":1,"nb":1,"a":[["TED%3AAF-A0A3M8C5C7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M8C5C7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A173959","Brevibacillus invocatus"]]},{"id":"NCBITaxon:1740090","l":"Pedobacter sp. Hv1","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q0VF61-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0Q0VF61-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1740090","Pedobacter sp. Hv1"]]},{"id":"NCBITaxon:1743144","l":"Bacillus sp. FJAT-27225","na":1,"nb":1,"a":[["TED%3AAF-A0A1B9APH1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B9APH1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1743144","Bacillus sp. FJAT-27225"]]},{"id":"NCBITaxon:1743164","l":"Polynucleobacter aenigmaticus","na":1,"nb":1,"a":[["TED%3AAF-A0A254PW67-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A254PW67-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1743164","Polynucleobacter aenigmaticus"]]},{"id":"NCBITaxon:1745182","l":"Paracoccus sp. MKU1","na":1,"nb":1,"a":[["TED%3AAF-A0A0V0Q5K7-F1-model_v4_TED01","TED novel fold AF-A0A0V0Q5K7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1745182","Paracoccus sp. MKU1"]]},{"id":"NCBITaxon:1745382","l":"Frankia sp. CcI49","na":1,"nb":1,"a":[["TED%3AAF-A0A1V2KNB4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V2KNB4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1745382","Frankia sp. CcI49"]]},{"id":"NCBITaxon:1752064","l":"Leptolyngbya sp. NIES-3755","na":1,"nb":1,"a":[["TED%3AAF-A0A0S3U0Y9-F1-model_v4_TED02","TED novel fold AF-A0A0S3U0Y9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1752064","Leptolyngbya sp. NIES-3755"]]},{"id":"NCBITaxon:1753","l":"Propioniferax innocua","na":1,"nb":1,"a":[["TED%3AAF-A0A542ZCI2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A542ZCI2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1753","Propioniferax innocua"]]},{"id":"NCBITaxon:1759059","l":"Candidatus Viadribacter manganicus","na":1,"nb":1,"a":[["TED%3AAF-A0A1B1AI86-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B1AI86-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1759059","Candidatus Viadribacter manganicus"]]},{"id":"NCBITaxon:1761012","l":"Candidatus Formimonas warabiya","na":1,"nb":1,"a":[["TED%3AAF-A0A3G1KNS5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3G1KNS5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1761012","Candidatus Formimonas warabiya"]]},{"id":"NCBITaxon:1761761","l":"Bacillus sp. cl95","na":1,"nb":1,"a":[["TED%3AAF-A0A1I6CC48-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I6CC48-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1761761","Bacillus sp. cl95"]]},{"id":"NCBITaxon:1761772","l":"Bradyrhizobium shewense","na":1,"nb":1,"a":[["TED%3AAF-A0A1C3XS56-F1-model_v4_TED01","TED novel fold AF-A0A1C3XS56-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1761772","Bradyrhizobium shewense"]]},{"id":"NCBITaxon:1761780","l":"Butyrivibrio sp. ob235","na":1,"nb":1,"a":[["TED%3AAF-A0A1H7I3V4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H7I3V4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1761780","Butyrivibrio sp. ob235"]]},{"id":"NCBITaxon:1761781","l":"Clostridium sp. DSM 8431","na":1,"nb":1,"a":[["TED%3AAF-A0A1I7JB16-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I7JB16-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1761781","Clostridium sp. DSM 8431"]]},{"id":"NCBITaxon:1761786","l":"Gordonia sp. v-85","na":1,"nb":1,"a":[["TED%3AAF-A0A1C4F8L6-F1-model_v4_TED01","TED novel fold AF-A0A1C4F8L6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1761786","Gordonia sp. v-85"]]},{"id":"NCBITaxon:1761801","l":"Methylobacterium sp. yr668","na":1,"nb":1,"a":[["TED%3AAF-A0A1I6WHK9-F1-model_v4_TED01","TED novel fold AF-A0A1I6WHK9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1761801","Methylobacterium sp. yr668"]]},{"id":"NCBITaxon:1761884","l":"Prevotella sp. khp1","na":1,"nb":1,"a":[["TED%3AAF-A0A1H0Y2B2-F1-model_v4_TED01","TED novel fold AF-A0A1H0Y2B2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1761884","Prevotella sp. khp1"]]},{"id":"NCBITaxon:1761887","l":"Prevotella sp. ne3005","na":1,"nb":1,"a":[["TED%3AAF-A0A1H8F602-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1H8F602-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1761887","Prevotella sp. ne3005"]]},{"id":"NCBITaxon:1761889","l":"Prevotella sp. tf2-5","na":1,"nb":1,"a":[["TED%3AAF-A0A1I5M0X3-F1-model_v4_TED02","TED novel fold AF-A0A1I5M0X3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1761889","Prevotella sp. tf2-5"]]},{"id":"NCBITaxon:1761890","l":"Pseudoalteromonas sp. 10-33","na":1,"nb":1,"a":[["TED%3AAF-A0A0W1LFK1-F1-model_v4_TED01","TED novel fold AF-A0A0W1LFK1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1761890","Pseudoalteromonas sp. 10-33"]]},{"id":"NCBITaxon:176275","l":"Beauveria bassiana","na":1,"nb":1,"a":[["TED%3AAF-A0A2S7Y157-F1-model_v4_TED02","TED novel fold AF-A0A2S7Y157-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A176275","Beauveria bassiana"]]},{"id":"NCBITaxon:1763509","l":"Lachnotalea glycerini","na":1,"nb":1,"a":[["TED%3AAF-A0A371JF42-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A371JF42-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1763509","Lachnotalea glycerini"]]},{"id":"NCBITaxon:1763883","l":"Vibrio cidicii","na":1,"nb":1,"a":[["TED%3AAF-A0A151JGE3-F1-model_v4_TED01","TED novel fold AF-A0A151JGE3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1763883","Vibrio cidicii"]]},{"id":"NCBITaxon:1765050","l":"Azospira sp. I13","na":1,"nb":1,"a":[["TED%3AAF-A0A2R5EG35-F1-model_v4_TED01","TED novel fold AF-A0A2R5EG35-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1765050","Azospira sp. I13"]]},{"id":"NCBITaxon:1765683","l":"Ferroacidibacillus organovorans","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4ES42-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V4ES42-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1765683","Ferroacidibacillus organovorans"]]},{"id":"NCBITaxon:1765684","l":"Sulfoacidibacillus thermotolerans","na":1,"nb":1,"a":[["TED%3AAF-A0A2U3D5S8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U3D5S8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1765684","Sulfoacidibacillus thermotolerans"]]},{"id":"NCBITaxon:1765737","l":"Dissulfurirhabdus thermomarina","na":1,"nb":1,"a":[["TED%3AAF-A0A6N9TJJ0-F1-model_v4_TED01","TED novel fold AF-A0A6N9TJJ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1765737","Dissulfurirhabdus thermomarina"]]},{"id":"NCBITaxon:1768112","l":"Candidatus Alcium sp. P201","na":1,"nb":1,"a":[["TED%3AAF-A0A132H1S2-F1-model_v4_TED02","TED novel fold AF-A0A132H1S2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1768112","Candidatus Alcium sp. P201"]]},{"id":"NCBITaxon:1768242","l":"Paucibacter sp. KCTC 42545","na":1,"nb":1,"a":[["TED%3AAF-A0A0U3EZN4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0U3EZN4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1768242","Paucibacter sp. KCTC 42545"]]},{"id":"NCBITaxon:1769779","l":"Microbulbifer aggregans","na":1,"nb":1,"a":[["TED%3AAF-A0A1C9WAE5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C9WAE5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1769779","Microbulbifer aggregans"]]},{"id":"NCBITaxon:1770053","l":"Chitinasiproducens palmae","na":1,"nb":1,"a":[["TED%3AAF-A0A1H2PKT1-F1-model_v4_TED03","TED novel fold AF-A0A1H2PKT1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1770053","Chitinasiproducens palmae"]]},{"id":"NCBITaxon:1770526","l":"Hymenobacter crusticola","na":1,"nb":1,"a":[["TED%3AAF-A0A243WCG8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A243WCG8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1770526","Hymenobacter crusticola"]]},{"id":"NCBITaxon:177199","l":"Coniochaeta pulveracea","na":1,"nb":1,"a":[["TED%3AAF-A0A420Y9L7-F1-model_v4_TED01","TED novel fold AF-A0A420Y9L7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A177199","Coniochaeta pulveracea"]]},{"id":"NCBITaxon:1772283","l":"Mycobacterium sp. GA-2829","na":1,"nb":1,"a":[["TED%3AAF-A0A117JRD0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A117JRD0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1772283","Mycobacterium sp. GA-2829"]]},{"id":"NCBITaxon:1772288","l":"Marinobacter sp. C18","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q8G2Z9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q8G2Z9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1772288","Marinobacter sp. C18"]]},{"id":"NCBITaxon:177413","l":"Ancylobacter rudongensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1G4UQ36-F1-model_v4_TED01","TED novel fold AF-A0A1G4UQ36-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A177413","Ancylobacter rudongensis"]]},{"id":"NCBITaxon:1774745","l":"Cupriavidus sp. UYMMa02A","na":1,"nb":1,"a":[["TED%3AAF-A0A1E4QUI2-F1-model_v4_TED01","TED novel fold AF-A0A1E4QUI2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1774745","Cupriavidus sp. UYMMa02A"]]},{"id":"NCBITaxon:1774970","l":"Methyloceanibacter stevinii","na":1,"nb":1,"a":[["TED%3AAF-A0A1E3VQS9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E3VQS9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1774970","Methyloceanibacter stevinii"]]},{"id":"NCBITaxon:1775474","l":"Variovorax guangxiensis","na":1,"nb":1,"a":[["TED%3AAF-A0A840FS97-F1-model_v4_TED01","TED novel fold AF-A0A840FS97-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1775474","Variovorax guangxiensis"]]},{"id":"NCBITaxon:1776032","l":"Hymenobacter gummosus","na":1,"nb":1,"a":[["TED%3AAF-A0A431U235-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A431U235-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1776032","Hymenobacter gummosus"]]},{"id":"NCBITaxon:1776165","l":"Massilia eburnea","na":1,"nb":1,"a":[["TED%3AAF-A0A6L6QRZ1-F1-model_v4_TED02","TED novel fold AF-A0A6L6QRZ1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1776165","Massilia eburnea"]]},{"id":"NCBITaxon:1776384","l":"Emergencia timonensis","na":1,"nb":1,"a":[["TED%3AAF-A0A415E478-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A415E478-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1776384","Emergencia timonensis"]]},{"id":"NCBITaxon:1777136","l":"Caballeronia catudaia","na":1,"nb":1,"a":[["TED%3AAF-A0A158C321-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A158C321-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1777136","Caballeronia catudaia"]]},{"id":"NCBITaxon:1777139","l":"Caballeronia calidae","na":1,"nb":1,"a":[["TED%3AAF-A0A157ZK63-F1-model_v4_TED03","TED novel fold AF-A0A157ZK63-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1777139","Caballeronia calidae"]]},{"id":"NCBITaxon:1777237","l":"Pseudoalteromonas sp. CO133X","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q6YIM6-F1-model_v4_TED01","TED novel fold AF-A0A4Q6YIM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1777237","Pseudoalteromonas sp. CO133X"]]},{"id":"NCBITaxon:1778","l":"Mycobacterium gordonae","na":1,"nb":1,"a":[["TED%3AAF-A0A7D6E392-F1-model_v4_TED02","TED novel fold AF-A0A7D6E392-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1778","Mycobacterium gordonae"]]},{"id":"NCBITaxon:1778678","l":"Paenibacillus psychroresistens","na":1,"nb":1,"a":[["TED%3AAF-A0A6B8REU5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6B8REU5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1778678","Paenibacillus psychroresistens"]]},{"id":"NCBITaxon:1779329","l":"Alloyangia mangrovi","na":1,"nb":1,"a":[["TED%3AAF-A0A2A3JX46-F1-model_v4_TED02","TED novel fold AF-A0A2A3JX46-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1779329","Alloyangia mangrovi"]]},{"id":"NCBITaxon:178","l":"Leptospira sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2M8HMG8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2M8HMG8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A178","Leptospira sp."]]},{"id":"NCBITaxon:1780380","l":"Eubacteriaceae bacterium CHKCI004","na":1,"nb":1,"a":[["TED%3AAF-A0A143XSV8-F1-model_v4_TED03","TED novel fold AF-A0A143XSV8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1780380","Eubacteriaceae bacterium CHKCI004"]]},{"id":"NCBITaxon:1781067","l":"Duganella sp. HH105","na":1,"nb":1,"a":[["TED%3AAF-A0A1E7VAC3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E7VAC3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1781067","Duganella sp. HH105"]]},{"id":"NCBITaxon:178356","l":"Flavobacterium xinjiangense","na":1,"nb":1,"a":[["TED%3AAF-A0A1M7LQC4-F1-model_v4_TED02","TED novel fold AF-A0A1M7LQC4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A178356","Flavobacterium xinjiangense"]]},{"id":"NCBITaxon:1784713","l":"Flavobacterium arcticum","na":1,"nb":1,"a":[["TED%3AAF-A0A345HCH9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A345HCH9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1784713","Flavobacterium arcticum"]]},{"id":"NCBITaxon:1784714","l":"Arcticibacterium luteifluviistationis","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z4GGL1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2Z4GGL1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1784714","Arcticibacterium luteifluviistationis"]]},{"id":"NCBITaxon:1784719","l":"Leucobacter triazinivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A4P6KBD8-F1-model_v4_TED01","TED novel fold AF-A0A4P6KBD8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1784719","Leucobacter triazinivorans"]]},{"id":"NCBITaxon:1785949","l":"Candidatus Frackibacter sp. T328-2","na":1,"nb":1,"a":[["TED%3AAF-A0A139CQV0-F1-model_v4_TED01","TED novel fold AF-A0A139CQV0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1785949","Candidatus Frackibacter sp. T328-2"]]},{"id":"NCBITaxon:1785996","l":"Leptotrichia sp. oral taxon 847","na":1,"nb":1,"a":[["TED%3AAF-A0A0X8JUT6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0X8JUT6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1785996","Leptotrichia sp. oral taxon 847"]]},{"id":"NCBITaxon:1789224","l":"Acinetobacter larvae","na":1,"nb":1,"a":[["TED%3AAF-A0A1B2M311-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B2M311-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1789224","Acinetobacter larvae"]]},{"id":"NCBITaxon:1792508","l":"Salipiger sp. CCB-MM3","na":1,"nb":1,"a":[["TED%3AAF-A0A1B1PYX5-F1-model_v4_TED01","TED novel fold AF-A0A1B1PYX5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1792508","Salipiger sp. CCB-MM3"]]},{"id":"NCBITaxon:1792836","l":"Wenzhouxiangella sediminis","na":1,"nb":1,"a":[["TED%3AAF-A0A3E1K9F2-F1-model_v4_TED02","TED novel fold AF-A0A3E1K9F2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1792836","Wenzhouxiangella sediminis"]]},{"id":"NCBITaxon:1793","l":"Mycolicibacterium fallax","na":1,"nb":1,"a":[["TED%3AAF-A0A1X1R017-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X1R017-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1793","Mycolicibacterium fallax"]]},{"id":"NCBITaxon:1793722","l":"Curtobacterium sp. 9128","na":1,"nb":1,"a":[["TED%3AAF-A0A181ZA59-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A181ZA59-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1793722","Curtobacterium sp. 9128"]]},{"id":"NCBITaxon:1793724","l":"Dictyoglomus sp. ob1-4","na":1,"nb":1,"a":[["TED%3AAF-A0A5S5BH10-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A5S5BH10-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1793724","Dictyoglomus sp. ob1-4"]]},{"id":"NCBITaxon:1795630","l":"Frondihabitans sp. PAMC 28766","na":1,"nb":1,"a":[["TED%3AAF-A0A126Z0C8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A126Z0C8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1795630","Frondihabitans sp. PAMC 28766"]]},{"id":"NCBITaxon:1795830","l":"Eikenella sp. NML080894","na":1,"nb":1,"a":[["TED%3AAF-A0A1B6VST7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B6VST7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1795830","Eikenella sp. NML080894"]]},{"id":"NCBITaxon:1795832","l":"Eikenella halliae","na":1,"nb":1,"a":[["TED%3AAF-A0A1B6VZF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B6VZF4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1795832","Eikenella halliae"]]},{"id":"NCBITaxon:1796620","l":"Acutalibacter muris","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z2XSH3-F1-model_v4_TED01","TED novel fold AF-A0A1Z2XSH3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1796620","Acutalibacter muris"]]},{"id":"NCBITaxon:1796628","l":"Longibaculum muris","na":1,"nb":1,"a":[["TED%3AAF-A0A4R3Z5B6-F1-model_v4_TED01","TED novel fold AF-A0A4R3Z5B6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1796628","Longibaculum muris"]]},{"id":"NCBITaxon:1796652","l":"Turicimonas muris","na":1,"nb":1,"a":[["TED%3AAF-A0A227KL63-F1-model_v4_TED02","TED novel fold AF-A0A227KL63-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1796652","Turicimonas muris"]]},{"id":"NCBITaxon:1796921","l":"Ereboglobus luteus","na":1,"nb":1,"a":[["TED%3AAF-A0A2U8E3K8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2U8E3K8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1796921","Ereboglobus luteus"]]},{"id":"NCBITaxon:1797178","l":"Acidobacteria bacterium RIFCSPLOWO2_02_FULL_59_13","na":1,"nb":1,"a":[["TED%3AAF-A0A1F2T7L3-F1-model_v4_TED01","TED novel fold AF-A0A1F2T7L3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797178","Acidobacteria bacterium RIFCSPLOWO2_02_FULL_59_13"]]},{"id":"NCBITaxon:1797180","l":"Acidobacteria bacterium RIFCSPLOWO2_02_FULL_61_28","na":1,"nb":1,"a":[["TED%3AAF-A0A1F2RJX5-F1-model_v4_TED01","TED novel fold AF-A0A1F2RJX5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797180","Acidobacteria bacterium RIFCSPLOWO2_02_FULL_61_28"]]},{"id":"NCBITaxon:1797185","l":"Acidobacteria bacterium RIFCSPLOWO2_02_FULL_68_18","na":1,"nb":1,"a":[["TED%3AAF-A0A1F2S3C4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F2S3C4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797185","Acidobacteria bacterium RIFCSPLOWO2_02_FULL_68_18"]]},{"id":"NCBITaxon:1797198","l":"Actinobacteria bacterium RBG_13_63_9","na":1,"nb":1,"a":[["TED%3AAF-A0A1F2X5C9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1F2X5C9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1797198","Actinobacteria bacterium RBG_13_63_9"]]},{"id":"NCBITaxon:1797200","l":"Actinobacteria bacterium RBG_16_64_13","na":1,"nb":1,"a":[["TED%3AAF-A0A1F2WGA0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F2WGA0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797200","Actinobacteria bacterium RBG_16_64_13"]]},{"id":"NCBITaxon:1797203","l":"Actinobacteria bacterium RBG_16_68_12","na":1,"nb":1,"a":[["TED%3AAF-A0A1F2Y355-F1-model_v4_TED01","TED novel fold AF-A0A1F2Y355-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797203","Actinobacteria bacterium RBG_16_68_12"]]},{"id":"NCBITaxon:1797212","l":"Alphaproteobacteria bacterium GWC2_42_16","na":1,"nb":1,"a":[["TED%3AAF-A0A1F2XG95-F1-model_v4_TED01","TED novel fold AF-A0A1F2XG95-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797212","Alphaproteobacteria bacterium GWC2_42_16"]]},{"id":"NCBITaxon:1797213","l":"Alphaproteobacteria bacterium GWF2_58_20","na":1,"nb":1,"a":[["TED%3AAF-A0A1F2YPV8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F2YPV8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797213","Alphaproteobacteria bacterium GWF2_58_20"]]},{"id":"NCBITaxon:1797220","l":"Alphaproteobacteria bacterium RIFCSPHIGHO2_02_FULL_46_13","na":1,"nb":1,"a":[["TED%3AAF-A0A1F2Z3M8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F2Z3M8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797220","Alphaproteobacteria bacterium RIFCSPHIGHO2_02_FULL_46_13"]]},{"id":"NCBITaxon:1797226","l":"Alphaproteobacteria bacterium RIFCSPLOWO2_01_FULL_40_26","na":1,"nb":1,"a":[["TED%3AAF-A0A1F2ZIL3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F2ZIL3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797226","Alphaproteobacteria bacterium RIFCSPLOWO2_01_FULL_40_26"]]},{"id":"NCBITaxon:1797253","l":"Candidatus Amesbacteria bacterium RIFCSPHIGHO2_01_FULL_48_32b","na":1,"nb":1,"a":[["TED%3AAF-A0A1F4YFE9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F4YFE9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797253","Candidatus Amesbacteria bacterium RIFCSPHIGHO2_01_FULL_48_32b"]]},{"id":"NCBITaxon:1797273","l":"Candidatus Aminicenantes bacterium RBG_16_63_16","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5ASF2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F5ASF2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797273","Candidatus Aminicenantes bacterium RBG_16_63_16"]]},{"id":"NCBITaxon:1797277","l":"Candidatus Aminicenantes bacterium RBG_19FT_COMBO_65_30","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5B663-F1-model_v4_TED01","TED novel fold AF-A0A1F5B663-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797277","Candidatus Aminicenantes bacterium RBG_19FT_COMBO_65_30"]]},{"id":"NCBITaxon:1797319","l":"Bacteroidetes bacterium GWA2_40_15","na":1,"nb":1,"a":[["TED%3AAF-A0A1F3D2G1-F1-model_v4_TED02","TED novel fold AF-A0A1F3D2G1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797319","Bacteroidetes bacterium GWA2_40_15"]]},{"id":"NCBITaxon:1797342","l":"Bacteroidetes bacterium GWF2_33_38","na":1,"nb":1,"a":[["TED%3AAF-A0A1F3JV05-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F3JV05-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797342","Bacteroidetes bacterium GWF2_33_38"]]},{"id":"NCBITaxon:1797347","l":"Bacteroidetes bacterium GWF2_40_14","na":1,"nb":1,"a":[["TED%3AAF-A0A1F3LG22-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F3LG22-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797347","Bacteroidetes bacterium GWF2_40_14"]]},{"id":"NCBITaxon:1797386","l":"Bdellovibrionales bacterium GWB1_55_8","na":1,"nb":1,"a":[["TED%3AAF-A0A1F3SXD2-F1-model_v4_TED02","TED novel fold AF-A0A1F3SXD2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797386","Bdellovibrionales bacterium GWB1_55_8"]]},{"id":"NCBITaxon:1797388","l":"Bdellovibrionales bacterium RBG_16_40_8","na":1,"nb":1,"a":[["TED%3AAF-A0A1F3SF45-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F3SF45-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797388","Bdellovibrionales bacterium RBG_16_40_8"]]},{"id":"NCBITaxon:1797394","l":"Bdellovibrionales bacterium RIFOXYB2_FULL_36_6","na":1,"nb":1,"a":[["TED%3AAF-A0A1F3WP69-F1-model_v4_TED02","TED novel fold AF-A0A1F3WP69-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797394","Bdellovibrionales bacterium RIFOXYB2_FULL_36_6"]]},{"id":"NCBITaxon:1797404","l":"Bdellovibrionales bacterium RIFOXYD1_FULL_55_31","na":1,"nb":1,"a":[["TED%3AAF-A0A1F3XSU0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F3XSU0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797404","Bdellovibrionales bacterium RIFOXYD1_FULL_55_31"]]},{"id":"NCBITaxon:1797497","l":"Betaproteobacteria bacterium RIFCSPLOWO2_12_FULL_62_58","na":1,"nb":1,"a":[["TED%3AAF-A0A1F4E3P9-F1-model_v4_TED02","TED novel fold AF-A0A1F4E3P9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797497","Betaproteobacteria bacterium RIFCSPLOWO2_12_FULL_62_58"]]},{"id":"NCBITaxon:1797520","l":"Candidatus Blackburnbacteria bacterium RIFCSPLOWO2_01_FULL_41_27","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1VDM9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G1VDM9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797520","Candidatus Blackburnbacteria bacterium RIFCSPLOWO2_01_FULL_41_27"]]},{"id":"NCBITaxon:1797531","l":"Candidatus Buchananbacteria bacterium RBG_13_39_9","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1XSP2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1G1XSP2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1797531","Candidatus Buchananbacteria bacterium RBG_13_39_9"]]},{"id":"NCBITaxon:1797564","l":"Burkholderiales bacterium RIFCSPLOWO2_02_FULL_67_64","na":1,"nb":1,"a":[["TED%3AAF-A0A1F4IZ93-F1-model_v4_TED01","TED novel fold AF-A0A1F4IZ93-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797564","Burkholderiales bacterium RIFCSPLOWO2_02_FULL_67_64"]]},{"id":"NCBITaxon:1797568","l":"Burkholderiales bacterium RIFCSPLOWO2_12_FULL_64_99","na":1,"nb":1,"a":[["TED%3AAF-A0A1F4MTM4-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1F4MTM4-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1797568","Burkholderiales bacterium RIFCSPLOWO2_12_FULL_64_99"]]},{"id":"NCBITaxon:1797585","l":"Caulobacterales bacterium RIFCSPHIGHO2_01_FULL_70_19","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8I4Q2-F1-model_v4_TED01","TED novel fold AF-A0A1F8I4Q2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797585","Caulobacterales bacterium RIFCSPHIGHO2_01_FULL_70_19"]]},{"id":"NCBITaxon:1797591","l":"Candidatus Chisholmbacteria bacterium RIFCSPHIGHO2_01_FULL_52_32","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1VUB9-F1-model_v4_TED01","TED novel fold AF-A0A1G1VUB9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797591","Candidatus Chisholmbacteria bacterium RIFCSPHIGHO2_01_FULL_52_32"]]},{"id":"NCBITaxon:1797598","l":"Chlamydiae bacterium RIFCSPHIGHO2_01_FULL_44_39","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8J304-F1-model_v4_TED03","TED novel fold AF-A0A1F8J304-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1797598","Chlamydiae bacterium RIFCSPHIGHO2_01_FULL_44_39"]]},{"id":"NCBITaxon:1797603","l":"Chlamydiae bacterium RIFCSPHIGHO2_12_FULL_49_11","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8JJQ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F8JJQ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797603","Chlamydiae bacterium RIFCSPHIGHO2_12_FULL_49_11"]]},{"id":"NCBITaxon:1797613","l":"Chloroflexi bacterium GWB2_54_36","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8KML2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F8KML2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797613","Chloroflexi bacterium GWB2_54_36"]]},{"id":"NCBITaxon:1797620","l":"Chloroflexi bacterium RBG_13_48_10","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8LXZ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F8LXZ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797620","Chloroflexi bacterium RBG_13_48_10"]]},{"id":"NCBITaxon:1797640","l":"Chloroflexi bacterium RBG_16_48_7","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8P1I1-F1-model_v4_TED01","TED novel fold AF-A0A1F8P1I1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797640","Chloroflexi bacterium RBG_16_48_7"]]},{"id":"NCBITaxon:1797643","l":"Chloroflexi bacterium RBG_16_50_9","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8P8D9-F1-model_v4_TED02","TED novel fold AF-A0A1F8P8D9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797643","Chloroflexi bacterium RBG_16_50_9"]]},{"id":"NCBITaxon:1797658","l":"Chloroflexi bacterium RBG_16_64_32","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8RDU4-F1-model_v4_TED01","TED novel fold AF-A0A1F8RDU4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797658","Chloroflexi bacterium RBG_16_64_32"]]},{"id":"NCBITaxon:1797659","l":"Chloroflexi bacterium RBG_16_64_43","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8RQQ6-F1-model_v4_TED01","TED novel fold AF-A0A1F8RQQ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797659","Chloroflexi bacterium RBG_16_64_43"]]},{"id":"NCBITaxon:1797660","l":"Chloroflexi bacterium RBG_16_68_14","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8RWL3-F1-model_v4_TED01","TED novel fold AF-A0A1F8RWL3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797660","Chloroflexi bacterium RBG_16_68_14"]]},{"id":"NCBITaxon:1797663","l":"Chloroflexi bacterium RBG_16_72_14","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8SCL9-F1-model_v4_TED02","TED novel fold AF-A0A1F8SCL9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797663","Chloroflexi bacterium RBG_16_72_14"]]},{"id":"NCBITaxon:1797671","l":"Chloroflexi bacterium RBG_19FT_COMBO_62_14","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8TG41-F1-model_v4_TED02","TED novel fold AF-A0A1F8TG41-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797671","Chloroflexi bacterium RBG_19FT_COMBO_62_14"]]},{"id":"NCBITaxon:1797710","l":"Candidatus Curtissbacteria bacterium RIFCSPHIGHO2_01_FULL_40_12","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5GCG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F5GCG8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797710","Candidatus Curtissbacteria bacterium RIFCSPHIGHO2_01_FULL_40_12"]]},{"id":"NCBITaxon:1797718","l":"Candidatus Curtissbacteria bacterium RIFCSPHIGHO2_12_41_11","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5H1K0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F5H1K0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797718","Candidatus Curtissbacteria bacterium RIFCSPHIGHO2_12_41_11"]]},{"id":"NCBITaxon:1797729","l":"Candidatus Curtissbacteria bacterium RIFCSPLOWO2_01_FULL_42_26","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5I035-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F5I035-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797729","Candidatus Curtissbacteria bacterium RIFCSPLOWO2_01_FULL_42_26"]]},{"id":"NCBITaxon:1797756","l":"Candidatus Dadabacteria bacterium RIFCSPHIGHO2_12_FULL_53_21","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5IU88-F1-model_v4_TED01","TED novel fold AF-A0A1F5IU88-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797756","Candidatus Dadabacteria bacterium RIFCSPHIGHO2_12_FULL_53_21"]]},{"id":"NCBITaxon:1797808","l":"Deltaproteobacteria bacterium GWA2_54_12","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8WUM6-F1-model_v4_TED01","TED novel fold AF-A0A1F8WUM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797808","Deltaproteobacteria bacterium GWA2_54_12"]]},{"id":"NCBITaxon:1797809","l":"Deltaproteobacteria bacterium GWA2_55_10","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8X0V8-F1-model_v4_TED01","TED novel fold AF-A0A1F8X0V8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797809","Deltaproteobacteria bacterium GWA2_55_10"]]},{"id":"NCBITaxon:1797814","l":"Deltaproteobacteria bacterium GWB2_55_19","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8XUW8-F1-model_v4_TED03","TED novel fold AF-A0A1F8XUW8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1797814","Deltaproteobacteria bacterium GWB2_55_19"]]},{"id":"NCBITaxon:1797832","l":"Deltaproteobacteria bacterium RBG_13_58_19","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9BSC4-F1-model_v4_TED01","TED novel fold AF-A0A1F9BSC4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797832","Deltaproteobacteria bacterium RBG_13_58_19"]]},{"id":"NCBITaxon:1797839","l":"Deltaproteobacteria bacterium RBG_16_48_10","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9DCK0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F9DCK0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797839","Deltaproteobacteria bacterium RBG_16_48_10"]]},{"id":"NCBITaxon:1797841","l":"Deltaproteobacteria bacterium RBG_16_50_11","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9BRC7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F9BRC7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797841","Deltaproteobacteria bacterium RBG_16_50_11"]]},{"id":"NCBITaxon:1797848","l":"Deltaproteobacteria bacterium RBG_16_71_12","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9FDV0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F9FDV0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797848","Deltaproteobacteria bacterium RBG_16_71_12"]]},{"id":"NCBITaxon:1797858","l":"Deltaproteobacteria bacterium RIFCSPHIGHO2_02_FULL_40_11","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9FFN6-F1-model_v4_TED02","TED novel fold AF-A0A1F9FFN6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797858","Deltaproteobacteria bacterium RIFCSPHIGHO2_02_FULL_40_11"]]},{"id":"NCBITaxon:1797879","l":"Deltaproteobacteria bacterium RIFCSPLOWO2_02_FULL_46_8","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9HYQ5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F9HYQ5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797879","Deltaproteobacteria bacterium RIFCSPLOWO2_02_FULL_46_8"]]},{"id":"NCBITaxon:1797880","l":"Deltaproteobacteria bacterium RIFCSPLOWO2_02_FULL_47_10","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9HY74-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F9HY74-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797880","Deltaproteobacteria bacterium RIFCSPLOWO2_02_FULL_47_10"]]},{"id":"NCBITaxon:1797892","l":"Deltaproteobacteria bacterium RIFCSPLOWO2_12_FULL_57_22","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9KGF5-F1-model_v4_TED01","TED novel fold AF-A0A1F9KGF5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797892","Deltaproteobacteria bacterium RIFCSPLOWO2_12_FULL_57_22"]]},{"id":"NCBITaxon:1797895","l":"Deltaproteobacteria bacterium RIFOXYA12_FULL_58_15","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9LDQ7-F1-model_v4_TED01","TED novel fold AF-A0A1F9LDQ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797895","Deltaproteobacteria bacterium RIFOXYA12_FULL_58_15"]]},{"id":"NCBITaxon:1797896","l":"Deltaproteobacteria bacterium RIFOXYA12_FULL_61_11","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9LJG9-F1-model_v4_TED02","TED novel fold AF-A0A1F9LJG9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797896","Deltaproteobacteria bacterium RIFOXYA12_FULL_61_11"]]},{"id":"NCBITaxon:1797902","l":"Deltaproteobacteria bacterium RIFOXYD12_FULL_50_9","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9M592-F1-model_v4_TED01","TED novel fold AF-A0A1F9M592-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797902","Deltaproteobacteria bacterium RIFOXYD12_FULL_50_9"]]},{"id":"NCBITaxon:1797903","l":"Deltaproteobacteria bacterium RIFOXYD12_FULL_53_23","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9MBZ0-F1-model_v4_TED01","TED novel fold AF-A0A1F9MBZ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797903","Deltaproteobacteria bacterium RIFOXYD12_FULL_53_23"]]},{"id":"NCBITaxon:1797905","l":"Deltaproteobacteria bacterium RIFOXYD12_FULL_56_24","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9L3G5-F1-model_v4_TED01","TED novel fold AF-A0A1F9L3G5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797905","Deltaproteobacteria bacterium RIFOXYD12_FULL_56_24"]]},{"id":"NCBITaxon:1797913","l":"Desulfobacterales bacterium GWB2_56_26","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9NEE0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F9NEE0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797913","Desulfobacterales bacterium GWB2_56_26"]]},{"id":"NCBITaxon:1797923","l":"Elusimicrobia bacterium GWA2_61_42","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9QIG5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F9QIG5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797923","Elusimicrobia bacterium GWA2_61_42"]]},{"id":"NCBITaxon:1797952","l":"Elusimicrobia bacterium RIFCSPLOWO2_12_FULL_59_9","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9VS96-F1-model_v4_TED02","TED novel fold AF-A0A1F9VS96-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797952","Elusimicrobia bacterium RIFCSPLOWO2_12_FULL_59_9"]]},{"id":"NCBITaxon:1797958","l":"Elusimicrobia bacterium RIFOXYA2_FULL_40_6","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9WRJ5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F9WRJ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1797958","Elusimicrobia bacterium RIFOXYA2_FULL_40_6"]]},{"id":"NCBITaxon:1797968","l":"Elusimicrobia bacterium RIFOXYB2_FULL_49_7","na":1,"nb":1,"a":[["TED%3AAF-A0A1F9Y7R0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F9Y7R0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797968","Elusimicrobia bacterium RIFOXYB2_FULL_49_7"]]},{"id":"NCBITaxon:1797984","l":"Euryarchaeota archaeon RBG_19FT_COMBO_69_17","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0AC96-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1G0AC96-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1797984","Euryarchaeota archaeon RBG_19FT_COMBO_69_17"]]},{"id":"NCBITaxon:1797994","l":"Candidatus Falkowbacteria bacterium RIFOXYA2_FULL_47_19","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5SHV8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F5SHV8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1797994","Candidatus Falkowbacteria bacterium RIFOXYA2_FULL_47_19"]]},{"id":"NCBITaxon:1798015","l":"Flavobacteria bacterium RIFCSPLOWO2_12_FULL_31_7","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0AYZ0-F1-model_v4_TED02","TED novel fold AF-A0A1G0AYZ0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798015","Flavobacteria bacterium RIFCSPLOWO2_12_FULL_31_7"]]},{"id":"NCBITaxon:1798016","l":"Flavobacteria bacterium RIFCSPLOWO2_12_FULL_35_11","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0B2N9-F1-model_v4_TED03","TED novel fold AF-A0A1G0B2N9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1798016","Flavobacteria bacterium RIFCSPLOWO2_12_FULL_35_11"]]},{"id":"NCBITaxon:1798019","l":"Fluviicola sp. RIFCSPHIGHO2_12_FULL_43_24","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0CJM9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G0CJM9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798019","Fluviicola sp. RIFCSPHIGHO2_12_FULL_43_24"]]},{"id":"NCBITaxon:1798185","l":"Pseudobutyrivibrio sp. UC1225","na":1,"nb":1,"a":[["TED%3AAF-A0A1I5GI49-F1-model_v4_TED01","TED novel fold AF-A0A1I5GI49-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798185","Pseudobutyrivibrio sp. UC1225"]]},{"id":"NCBITaxon:1798213","l":"Pseudovibrio sp. Tun.PSC04-5.I4","na":1,"nb":1,"a":[["TED%3AAF-A0A1H1I1X9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H1I1X9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798213","Pseudovibrio sp. Tun.PSC04-5.I4"]]},{"id":"NCBITaxon:1798215","l":"Leifsonia sp. CL147","na":1,"nb":1,"a":[["TED%3AAF-A0A1I4MD37-F1-model_v4_TED01","TED novel fold AF-A0A1I4MD37-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798215","Leifsonia sp. CL147"]]},{"id":"NCBITaxon:1798224","l":"Jiangella sp. DSM 45060","na":1,"nb":1,"a":[["TED%3AAF-A0A1H2CE01-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H2CE01-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798224","Jiangella sp. DSM 45060"]]},{"id":"NCBITaxon:1798276","l":"Gammaproteobacteria bacterium RIFCSPHIGHO2_12_FULL_37_14","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0GM97-F1-model_v4_TED01","TED novel fold AF-A0A1G0GM97-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798276","Gammaproteobacteria bacterium RIFCSPHIGHO2_12_FULL_37_14"]]},{"id":"NCBITaxon:1798277","l":"Gammaproteobacteria bacterium RIFCSPHIGHO2_12_FULL_37_34","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0GZ96-F1-model_v4_TED02","TED novel fold AF-A0A1G0GZ96-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798277","Gammaproteobacteria bacterium RIFCSPHIGHO2_12_FULL_37_34"]]},{"id":"NCBITaxon:1798298","l":"Gammaproteobacteria bacterium RIFCSPLOWO2_02_FULL_56_15","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0JB92-F1-model_v4_TED02","TED novel fold AF-A0A1G0JB92-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798298","Gammaproteobacteria bacterium RIFCSPLOWO2_02_FULL_56_15"]]},{"id":"NCBITaxon:1798301","l":"Gammaproteobacteria bacterium RIFCSPLOWO2_12_47_11","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0JQ90-F1-model_v4_TED01","TED novel fold AF-A0A1G0JQ90-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798301","Gammaproteobacteria bacterium RIFCSPLOWO2_12_47_11"]]},{"id":"NCBITaxon:1798308","l":"Gammaproteobacteria bacterium RIFOXYD12_FULL_61_37","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0KTX5-F1-model_v4_TED02","TED novel fold AF-A0A1G0KTX5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798308","Gammaproteobacteria bacterium RIFOXYD12_FULL_61_37"]]},{"id":"NCBITaxon:1798311","l":"Gemmatimonadetes bacterium RBG_16_66_8","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0LSN7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G0LSN7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798311","Gemmatimonadetes bacterium RBG_16_66_8"]]},{"id":"NCBITaxon:1798312","l":"Gemmatimonadetes bacterium RIFCSPLOWO2_02_FULL_71_11","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0LC16-F1-model_v4_TED02","TED novel fold AF-A0A1G0LC16-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798312","Gemmatimonadetes bacterium RIFCSPLOWO2_02_FULL_71_11"]]},{"id":"NCBITaxon:1798315","l":"Geobacteraceae bacterium GWC2_48_7","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0LEM7-F1-model_v4_TED01","TED novel fold AF-A0A1G0LEM7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798315","Geobacteraceae bacterium GWC2_48_7"]]},{"id":"NCBITaxon:1798331","l":"Candidatus Giovannonibacteria bacterium RIFCSPHIGHO2_02_43_16","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5WFL9-F1-model_v4_TED02","TED novel fold AF-A0A1F5WFL9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798331","Candidatus Giovannonibacteria bacterium RIFCSPHIGHO2_02_43_16"]]},{"id":"NCBITaxon:1798391","l":"Candidatus Gottesmanbacteria bacterium RIFCSPLOWO2_01_FULL_42_22","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6BBG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F6BBG8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798391","Candidatus Gottesmanbacteria bacterium RIFCSPLOWO2_01_FULL_42_22"]]},{"id":"NCBITaxon:1798396","l":"Candidatus Gottesmanbacteria bacterium RIFCSPLOWO2_01_FULL_49_10","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6AX47-F1-model_v4_TED01","TED novel fold AF-A0A1F6AX47-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798396","Candidatus Gottesmanbacteria bacterium RIFCSPLOWO2_01_FULL_49_10"]]},{"id":"NCBITaxon:1798427","l":"Ignavibacteria bacterium GWC2_36_12","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0QPM9-F1-model_v4_TED01","TED novel fold AF-A0A1G0QPM9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798427","Ignavibacteria bacterium GWC2_36_12"]]},{"id":"NCBITaxon:1798432","l":"Ignavibacteria bacterium RBG_13_36_8","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0R270-F1-model_v4_TED01","TED novel fold AF-A0A1G0R270-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798432","Ignavibacteria bacterium RBG_13_36_8"]]},{"id":"NCBITaxon:1798448","l":"Stygiobacter sp. RIFOXYB2_FULL_37_11","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0VK37-F1-model_v4_TED03","TED novel fold AF-A0A1G0VK37-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1798448","Stygiobacter sp. RIFOXYB2_FULL_37_11"]]},{"id":"NCBITaxon:1798470","l":"Candidatus Jorgensenbacteria bacterium RIFCSPHIGHO2_02_FULL_45_20","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6BN75-F1-model_v4_TED01","TED novel fold AF-A0A1F6BN75-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798470","Candidatus Jorgensenbacteria bacterium RIFCSPHIGHO2_02_FULL_45_20"]]},{"id":"NCBITaxon:1798487","l":"Candidatus Kaiserbacteria bacterium RIFCSPHIGHO2_01_FULL_56_24","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6DFE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F6DFE6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798487","Candidatus Kaiserbacteria bacterium RIFCSPHIGHO2_01_FULL_56_24"]]},{"id":"NCBITaxon:1798507","l":"Candidatus Kaiserbacteria bacterium RIFCSPLOWO2_01_FULL_50_24","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6EIZ4-F1-model_v4_TED02","TED novel fold AF-A0A1F6EIZ4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798507","Candidatus Kaiserbacteria bacterium RIFCSPLOWO2_01_FULL_50_24"]]},{"id":"NCBITaxon:1798509","l":"Candidatus Kaiserbacteria bacterium RIFCSPLOWO2_01_FULL_52_12b","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6EX73-F1-model_v4_TED01","TED novel fold AF-A0A1F6EX73-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798509","Candidatus Kaiserbacteria bacterium RIFCSPLOWO2_01_FULL_52_12b"]]},{"id":"NCBITaxon:1798512","l":"Candidatus Kaiserbacteria bacterium RIFCSPLOWO2_01_FULL_54_13","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6F094-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F6F094-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798512","Candidatus Kaiserbacteria bacterium RIFCSPLOWO2_01_FULL_54_13"]]},{"id":"NCBITaxon:1798531","l":"Candidatus Kaiserbacteria bacterium RIFOXYB1_FULL_46_14","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6FIM7-F1-model_v4_TED01","TED novel fold AF-A0A1F6FIM7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798531","Candidatus Kaiserbacteria bacterium RIFOXYB1_FULL_46_14"]]},{"id":"NCBITaxon:1798540","l":"Candidatus Kerfeldbacteria bacterium RIFCSPHIGHO2_02_FULL_42_14","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2ARW6-F1-model_v4_TED02","TED novel fold AF-A0A1G2ARW6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798540","Candidatus Kerfeldbacteria bacterium RIFCSPHIGHO2_02_FULL_42_14"]]},{"id":"NCBITaxon:1798547","l":"Candidatus Kerfeldbacteria bacterium RIFOXYB2_FULL_38_14","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2BHU9-F1-model_v4_TED02","TED novel fold AF-A0A1G2BHU9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798547","Candidatus Kerfeldbacteria bacterium RIFOXYB2_FULL_38_14"]]},{"id":"NCBITaxon:1798552","l":"Candidatus Komeilibacteria bacterium RIFCSPLOWO2_01_FULL_53_11","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2BSU0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G2BSU0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798552","Candidatus Komeilibacteria bacterium RIFCSPLOWO2_01_FULL_53_11"]]},{"id":"NCBITaxon:1798567","l":"Legionellales bacterium RIFCSPHIGHO2_12_FULL_35_11","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0XC70-F1-model_v4_TED01","TED novel fold AF-A0A1G0XC70-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798567","Legionellales bacterium RIFCSPHIGHO2_12_FULL_35_11"]]},{"id":"NCBITaxon:1798572","l":"Lentisphaerae bacterium GWF2_45_14","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0XFY2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G0XFY2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798572","Lentisphaerae bacterium GWF2_45_14"]]},{"id":"NCBITaxon:1798573","l":"Lentisphaerae bacterium GWF2_49_21","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0YAC1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G0YAC1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798573","Lentisphaerae bacterium GWF2_49_21"]]},{"id":"NCBITaxon:1798576","l":"Lentisphaerae bacterium GWF2_57_35","na":1,"nb":1,"a":[["TED%3AAF-A0A1G0Y3T4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G0Y3T4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798576","Lentisphaerae bacterium GWF2_57_35"]]},{"id":"NCBITaxon:1798585","l":"Candidatus Levybacteria bacterium RBG_16_35_6","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6HEX7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F6HEX7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798585","Candidatus Levybacteria bacterium RBG_16_35_6"]]},{"id":"NCBITaxon:1798651","l":"Candidatus Liptonbacteria bacterium RIFCSPLOWO2_01_FULL_53_13","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2CH03-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1G2CH03-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1798651","Candidatus Liptonbacteria bacterium RIFCSPLOWO2_01_FULL_53_13"]]},{"id":"NCBITaxon:1798658","l":"Candidatus Lloydbacteria bacterium RIFCSPHIGHO2_01_FULL_49_22","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2CWC2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G2CWC2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798658","Candidatus Lloydbacteria bacterium RIFCSPHIGHO2_01_FULL_49_22"]]},{"id":"NCBITaxon:1798676","l":"Candidatus Magasanikbacteria bacterium RIFCSPHIGHO2_02_FULL_41_13","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6M667-F1-model_v4_TED02","TED novel fold AF-A0A1F6M667-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798676","Candidatus Magasanikbacteria bacterium RIFCSPHIGHO2_02_FULL_41_13"]]},{"id":"NCBITaxon:1798680","l":"Candidatus Magasanikbacteria bacterium RIFCSPHIGHO2_02_FULL_47_14","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6M8C9-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1F6M8C9-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1798680","Candidatus Magasanikbacteria bacterium RIFCSPHIGHO2_02_FULL_47_14"]]},{"id":"NCBITaxon:1798683","l":"Candidatus Magasanikbacteria bacterium RIFCSPHIGHO2_02_FULL_51_14","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6MPA6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F6MPA6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1798683","Candidatus Magasanikbacteria bacterium RIFCSPHIGHO2_02_FULL_51_14"]]},{"id":"NCBITaxon:1798704","l":"Candidatus Magasanikbacteria bacterium RIFOXYC2_FULL_42_28","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6NUX8-F1-model_v4_TED01","TED novel fold AF-A0A1F6NUX8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1798704","Candidatus Magasanikbacteria bacterium RIFOXYC2_FULL_42_28"]]},{"id":"NCBITaxon:1798804","l":"Rhizobium sp. 58","na":1,"nb":1,"a":[["TED%3AAF-A0A853YI55-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A853YI55-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1798804","Rhizobium sp. 58"]]},{"id":"NCBITaxon:1799658","l":"Planctomycetaceae bacterium SCGC AG-212-F19","na":1,"nb":1,"a":[["TED%3AAF-A0A177QIY2-F1-model_v4_TED01","TED novel fold AF-A0A177QIY2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1799658","Planctomycetaceae bacterium SCGC AG-212-F19"]]},{"id":"NCBITaxon:1799659","l":"Verrucomicrobiaceae bacterium SCGC AG-212-N21","na":1,"nb":1,"a":[["TED%3AAF-A0A177RCM1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A177RCM1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1799659","Verrucomicrobiaceae bacterium SCGC AG-212-N21"]]},{"id":"NCBITaxon:1799661","l":"Gammaproteobacteria bacterium SCGC AG-212-F23","na":1,"nb":1,"a":[["TED%3AAF-A0A177QS54-F1-model_v4_TED01","TED novel fold AF-A0A177QS54-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1799661","Gammaproteobacteria bacterium SCGC AG-212-F23"]]},{"id":"NCBITaxon:1799667","l":"Prochlorococcus sp. MIT 1306","na":1,"nb":1,"a":[["TED%3AAF-A0A163DPJ5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A163DPJ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1799667","Prochlorococcus sp. MIT 1306"]]},{"id":"NCBITaxon:1799789","l":"Paraglaciecola hydrolytica","na":1,"nb":1,"a":[["TED%3AAF-A0A135ZZ80-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A135ZZ80-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1799789","Paraglaciecola hydrolytica"]]},{"id":"NCBITaxon:179995","l":"Anaerobiospirillum thomasii","na":1,"nb":1,"a":[["TED%3AAF-A0A2X0VC15-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2X0VC15-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A179995","Anaerobiospirillum thomasii"]]},{"id":"NCBITaxon:180088","l":"Rhizopogon vesiculosus","na":1,"nb":1,"a":[["TED%3AAF-A0A1J8PQS8-F1-model_v4_TED02","TED novel fold AF-A0A1J8PQS8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A180088","Rhizopogon vesiculosus"]]},{"id":"NCBITaxon:1801604","l":"Candidatus Melainabacteria bacterium GWA2_34_9","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6PV27-F1-model_v4_TED02","TED novel fold AF-A0A1F6PV27-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1801604","Candidatus Melainabacteria bacterium GWA2_34_9"]]},{"id":"NCBITaxon:1801609","l":"Candidatus Melainabacteria bacterium RIFCSPLOWO2_12_FULL_35_11","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6QQC6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F6QQC6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801609","Candidatus Melainabacteria bacterium RIFCSPLOWO2_12_FULL_35_11"]]},{"id":"NCBITaxon:1801632","l":"Candidatus Micrarchaeota archaeon RBG_16_36_9","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6QWM3-F1-model_v4_TED01","TED novel fold AF-A0A1F6QWM3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801632","Candidatus Micrarchaeota archaeon RBG_16_36_9"]]},{"id":"NCBITaxon:1801637","l":"Candidatus Moranbacteria bacterium RIFCSPHIGHO2_01_FULL_54_31","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6R1N8-F1-model_v4_TED04","TED novel fold AF-A0A1F6R1N8-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1801637","Candidatus Moranbacteria bacterium RIFCSPHIGHO2_01_FULL_54_31"]]},{"id":"NCBITaxon:1801649","l":"Candidatus Moranbacteria bacterium RIFOXYB1_FULL_43_19","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6S1D9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F6S1D9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801649","Candidatus Moranbacteria bacterium RIFOXYB1_FULL_43_19"]]},{"id":"NCBITaxon:1801671","l":"Candidatus Nealsonbacteria bacterium RIFCSPLOWO2_01_FULL_41_9","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2EF91-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G2EF91-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801671","Candidatus Nealsonbacteria bacterium RIFCSPLOWO2_01_FULL_41_9"]]},{"id":"NCBITaxon:1801692","l":"Nitrospirae bacterium GWB2_47_37","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1F1X7-F1-model_v4_TED04","TED novel fold AF-A0A1G1F1X7-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1801692","Nitrospirae bacterium GWB2_47_37"]]},{"id":"NCBITaxon:1801697","l":"Nitrospirae bacterium GWC2_57_13","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1F4T5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G1F4T5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801697","Nitrospirae bacterium GWC2_57_13"]]},{"id":"NCBITaxon:1801701","l":"Nitrospirae bacterium GWD2_57_9","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1FR36-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1G1FR36-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1801701","Nitrospirae bacterium GWD2_57_9"]]},{"id":"NCBITaxon:1801704","l":"Nitrospirae bacterium RBG_13_41_22","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1GTR1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G1GTR1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801704","Nitrospirae bacterium RBG_13_41_22"]]},{"id":"NCBITaxon:1801711","l":"Nitrospirae bacterium RBG_19FT_COMBO_58_9","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1GVS2-F1-model_v4_TED01","TED novel fold AF-A0A1G1GVS2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801711","Nitrospirae bacterium RBG_19FT_COMBO_58_9"]]},{"id":"NCBITaxon:1801718","l":"Nitrospirae bacterium RIFCSPLOWO2_12_FULL_63_8","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1LDN9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G1LDN9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801718","Nitrospirae bacterium RIFCSPLOWO2_12_FULL_63_8"]]},{"id":"NCBITaxon:1801786","l":"Candidatus Nomurabacteria bacterium RIFCSPLOWO2_02_FULL_40_10","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6XZR0-F1-model_v4_TED01","TED novel fold AF-A0A1F6XZR0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801786","Candidatus Nomurabacteria bacterium RIFCSPLOWO2_02_FULL_40_10"]]},{"id":"NCBITaxon:1801814","l":"Omnitrophica bacterium GWA2_41_15","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1IS29-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G1IS29-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1801814","Omnitrophica bacterium GWA2_41_15"]]},{"id":"NCBITaxon:1801818","l":"Omnitrophica bacterium RBG_13_46_9","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1J283-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G1J283-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801818","Omnitrophica bacterium RBG_13_46_9"]]},{"id":"NCBITaxon:1801827","l":"Omnitrophica bacterium RIFCSPLOWO2_01_FULL_45_10b","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1JVJ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G1JVJ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801827","Omnitrophica bacterium RIFCSPLOWO2_01_FULL_45_10b"]]},{"id":"NCBITaxon:1801856","l":"Omnitrophica WOR_2 bacterium RIFCSPHIGHO2_02_FULL_48_11","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1NDQ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G1NDQ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801856","Omnitrophica WOR_2 bacterium RIFCSPHIGHO2_02_FULL_48_11"]]},{"id":"NCBITaxon:1801857","l":"Omnitrophica WOR_2 bacterium RIFCSPHIGHO2_02_FULL_50_17","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1PAC5-F1-model_v4_TED01","TED novel fold AF-A0A1G1PAC5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801857","Omnitrophica WOR_2 bacterium RIFCSPHIGHO2_02_FULL_50_17"]]},{"id":"NCBITaxon:1801858","l":"Omnitrophica WOR_2 bacterium RIFCSPHIGHO2_02_FULL_52_10","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1P862-F1-model_v4_TED04","TED novel fold AF-A0A1G1P862-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1801858","Omnitrophica WOR_2 bacterium RIFCSPHIGHO2_02_FULL_52_10"]]},{"id":"NCBITaxon:1801873","l":"Omnitrophica WOR_2 bacterium RIFOXYA2_FULL_38_17","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1Q8R5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1G1Q8R5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1801873","Omnitrophica WOR_2 bacterium RIFOXYA2_FULL_38_17"]]},{"id":"NCBITaxon:1801895","l":"Desulfuromonadaceae bacterium GWB2_53_15","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2WH70-F1-model_v4_TED03","TED novel fold AF-A0A1G2WH70-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1801895","Desulfuromonadaceae bacterium GWB2_53_15"]]},{"id":"NCBITaxon:1801905","l":"Candidatus Peregrinibacteria bacterium RIFOXYB12_FULL_41_12","na":1,"nb":1,"a":[["TED%3AAF-A0A1F7AUL0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F7AUL0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801905","Candidatus Peregrinibacteria bacterium RIFOXYB12_FULL_41_12"]]},{"id":"NCBITaxon:1801962","l":"Planctomycetes bacterium RBG_13_50_24","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2YV80-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G2YV80-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1801962","Planctomycetes bacterium RBG_13_50_24"]]},{"id":"NCBITaxon:1801977","l":"Planctomycetes bacterium RIFCSPHIGHO2_12_39_6","na":1,"nb":1,"a":[["TED%3AAF-A0A1G3BPH6-F1-model_v4_TED01","TED novel fold AF-A0A1G3BPH6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801977","Planctomycetes bacterium RIFCSPHIGHO2_12_39_6"]]},{"id":"NCBITaxon:1801983","l":"Planctomycetes bacterium RIFCSPLOWO2_12_FULL_40_19","na":1,"nb":1,"a":[["TED%3AAF-A0A1G3C8S1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G3C8S1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1801983","Planctomycetes bacterium RIFCSPLOWO2_12_FULL_40_19"]]},{"id":"NCBITaxon:1802043","l":"Candidatus Roizmanbacteria bacterium RIFCSPHIGHO2_02_FULL_43_11","na":1,"nb":1,"a":[["TED%3AAF-A0A1F7HGD6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F7HGD6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1802043","Candidatus Roizmanbacteria bacterium RIFCSPHIGHO2_02_FULL_43_11"]]},{"id":"NCBITaxon:1802053","l":"Candidatus Roizmanbacteria bacterium RIFCSPHIGHO2_12_FULL_42_10","na":1,"nb":1,"a":[["TED%3AAF-A0A1F7I5S8-F1-model_v4_TED01","TED novel fold AF-A0A1F7I5S8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802053","Candidatus Roizmanbacteria bacterium RIFCSPHIGHO2_12_FULL_42_10"]]},{"id":"NCBITaxon:1802082","l":"Candidatus Roizmanbacteria bacterium RIFOXYA1_FULL_41_12","na":1,"nb":1,"a":[["TED%3AAF-A0A1F7KFJ9-F1-model_v4_TED01","TED novel fold AF-A0A1F7KFJ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802082","Candidatus Roizmanbacteria bacterium RIFOXYA1_FULL_41_12"]]},{"id":"NCBITaxon:1802115","l":"Candidatus Ryanbacteria bacterium RIFCSPHIGHO2_01_FULL_48_27","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2G8E2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G2G8E2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802115","Candidatus Ryanbacteria bacterium RIFCSPHIGHO2_01_FULL_48_27"]]},{"id":"NCBITaxon:1802173","l":"Spirochaetes bacterium GWB1_27_13","na":1,"nb":1,"a":[["TED%3AAF-A0A1G3LNL6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G3LNL6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802173","Spirochaetes bacterium GWB1_27_13"]]},{"id":"NCBITaxon:1802187","l":"Spirochaetes bacterium GWF1_31_7","na":1,"nb":1,"a":[["TED%3AAF-A0A1G3P5W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G3P5W3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802187","Spirochaetes bacterium GWF1_31_7"]]},{"id":"NCBITaxon:1802188","l":"Spirochaetes bacterium GWF1_41_5","na":1,"nb":1,"a":[["TED%3AAF-A0A1G3PBZ0-F1-model_v4_TED01","TED novel fold AF-A0A1G3PBZ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802188","Spirochaetes bacterium GWF1_41_5"]]},{"id":"NCBITaxon:1802189","l":"Spirochaetes bacterium GWF1_49_6","na":1,"nb":1,"a":[["TED%3AAF-A0A1G3PH37-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G3PH37-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802189","Spirochaetes bacterium GWF1_49_6"]]},{"id":"NCBITaxon:1802253","l":"Sulfurimonas sp. RIFCSPLOWO2_12_36_12","na":1,"nb":1,"a":[["TED%3AAF-A0A1G3TCI5-F1-model_v4_TED01","TED novel fold AF-A0A1G3TCI5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802253","Sulfurimonas sp. RIFCSPLOWO2_12_36_12"]]},{"id":"NCBITaxon:1802272","l":"Candidatus Sungbacteria bacterium RIFCSPHIGHO2_02_FULL_49_20","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2KNY1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G2KNY1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1802272","Candidatus Sungbacteria bacterium RIFCSPHIGHO2_02_FULL_49_20"]]},{"id":"NCBITaxon:1802312","l":"Candidatus Taylorbacteria bacterium RIFCSPHIGHO2_02_FULL_46_13","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2MTD3-F1-model_v4_TED02","TED novel fold AF-A0A1G2MTD3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1802312","Candidatus Taylorbacteria bacterium RIFCSPHIGHO2_02_FULL_46_13"]]},{"id":"NCBITaxon:1802366","l":"Candidatus Terrybacteria bacterium RIFCSPLOWO2_01_FULL_40_23","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2PV61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G2PV61-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802366","Candidatus Terrybacteria bacterium RIFCSPLOWO2_01_FULL_40_23"]]},{"id":"NCBITaxon:1802375","l":"candidate division TM6 bacterium RIFCSPHIGHO2_12_FULL_32_22","na":1,"nb":1,"a":[["TED%3AAF-A0A1F4PM56-F1-model_v4_TED01","TED novel fold AF-A0A1F4PM56-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802375","candidate division TM6 bacterium RIFCSPHIGHO2_12_FULL_32_22"]]},{"id":"NCBITaxon:1802377","l":"candidate division TM6 bacterium RIFCSPHIGHO2_12_FULL_38_8","na":1,"nb":1,"a":[["TED%3AAF-A0A1F4PRB0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F4PRB0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1802377","candidate division TM6 bacterium RIFCSPHIGHO2_12_FULL_38_8"]]},{"id":"NCBITaxon:1802407","l":"Candidatus Uhrbacteria bacterium RIFCSPLOWO2_02_FULL_48_12","na":1,"nb":1,"a":[["TED%3AAF-A0A1F7V5J3-F1-model_v4_TED01","TED novel fold AF-A0A1F7V5J3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802407","Candidatus Uhrbacteria bacterium RIFCSPLOWO2_02_FULL_48_12"]]},{"id":"NCBITaxon:1802422","l":"Candidatus Uhrbacteria bacterium RIFOXYB2_FULL_57_15","na":1,"nb":1,"a":[["TED%3AAF-A0A1F7W566-F1-model_v4_TED02","TED novel fold AF-A0A1F7W566-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1802422","Candidatus Uhrbacteria bacterium RIFOXYB2_FULL_57_15"]]},{"id":"NCBITaxon:1802433","l":"Verrucomicrobia bacterium RIFCSPHIGHO2_12_FULL_41_10","na":1,"nb":1,"a":[["TED%3AAF-A0A1G3ZKE5-F1-model_v4_TED03","TED novel fold AF-A0A1G3ZKE5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1802433","Verrucomicrobia bacterium RIFCSPHIGHO2_12_FULL_41_10"]]},{"id":"NCBITaxon:1802478","l":"Candidatus Woesebacteria bacterium RBG_13_36_22","na":1,"nb":1,"a":[["TED%3AAF-A0A1F7X1A9-F1-model_v4_TED01","TED novel fold AF-A0A1F7X1A9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802478","Candidatus Woesebacteria bacterium RBG_13_36_22"]]},{"id":"NCBITaxon:1802492","l":"Candidatus Woesebacteria bacterium RIFCSPHIGHO2_01_FULL_38_9","na":1,"nb":1,"a":[["TED%3AAF-A0A1F7Y4F5-F1-model_v4_TED01","TED novel fold AF-A0A1F7Y4F5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802492","Candidatus Woesebacteria bacterium RIFCSPHIGHO2_01_FULL_38_9"]]},{"id":"NCBITaxon:1802496","l":"Candidatus Woesebacteria bacterium RIFCSPHIGHO2_01_FULL_39_28","na":1,"nb":1,"a":[["TED%3AAF-A0A1F7YA21-F1-model_v4_TED04","TED novel fold AF-A0A1F7YA21-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1802496","Candidatus Woesebacteria bacterium RIFCSPHIGHO2_01_FULL_39_28"]]},{"id":"NCBITaxon:1802518","l":"Candidatus Woesebacteria bacterium RIFCSPLOWO2_01_FULL_39_14","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8BLY7-F1-model_v4_TED02","TED novel fold AF-A0A1F8BLY7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1802518","Candidatus Woesebacteria bacterium RIFCSPLOWO2_01_FULL_39_14"]]},{"id":"NCBITaxon:1802592","l":"Candidatus Woykebacteria bacterium GWB1_45_5","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1W575-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G1W575-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802592","Candidatus Woykebacteria bacterium GWB1_45_5"]]},{"id":"NCBITaxon:1802598","l":"Candidatus Woykebacteria bacterium RBG_19FT_COMBO_43_10","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1WH97-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G1WH97-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802598","Candidatus Woykebacteria bacterium RBG_19FT_COMBO_43_10"]]},{"id":"NCBITaxon:1802618","l":"candidate division WWE3 bacterium RIFCSPHIGHO2_01_FULL_43_9","na":1,"nb":1,"a":[["TED%3AAF-A0A1F4V213-F1-model_v4_TED01","TED novel fold AF-A0A1F4V213-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802618","candidate division WWE3 bacterium RIFCSPHIGHO2_01_FULL_43_9"]]},{"id":"NCBITaxon:1802636","l":"candidate division WWE3 bacterium RIFOXYA2_FULL_46_9","na":1,"nb":1,"a":[["TED%3AAF-A0A1F4W281-F1-model_v4_TED01","TED novel fold AF-A0A1F4W281-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802636","candidate division WWE3 bacterium RIFOXYA2_FULL_46_9"]]},{"id":"NCBITaxon:1802661","l":"Candidatus Yanofskybacteria bacterium RIFCSPHIGHO2_01_FULL_41_26","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8EEG9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F8EEG9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802661","Candidatus Yanofskybacteria bacterium RIFCSPHIGHO2_01_FULL_41_26"]]},{"id":"NCBITaxon:1802669","l":"Candidatus Yanofskybacteria bacterium RIFCSPHIGHO2_01_FULL_44_22","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8EYA5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F8EYA5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802669","Candidatus Yanofskybacteria bacterium RIFCSPHIGHO2_01_FULL_44_22"]]},{"id":"NCBITaxon:1802671","l":"Candidatus Yanofskybacteria bacterium RIFCSPHIGHO2_01_FULL_45_42","na":1,"nb":1,"a":[["TED%3AAF-A0A1F8F4J4-F1-model_v4_TED01","TED novel fold AF-A0A1F8F4J4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802671","Candidatus Yanofskybacteria bacterium RIFCSPHIGHO2_01_FULL_45_42"]]},{"id":"NCBITaxon:1802730","l":"Candidatus Yonathbacteria bacterium RIFOXYD1_FULL_52_36","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2SL64-F1-model_v4_TED01","TED novel fold AF-A0A1G2SL64-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802730","Candidatus Yonathbacteria bacterium RIFOXYD1_FULL_52_36"]]},{"id":"NCBITaxon:1802748","l":"Candidatus Zambryskibacteria bacterium RIFCSPHIGHO2_02_FULL_43_14","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2THG6-F1-model_v4_TED02","TED novel fold AF-A0A1G2THG6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1802748","Candidatus Zambryskibacteria bacterium RIFCSPHIGHO2_02_FULL_43_14"]]},{"id":"NCBITaxon:1802749","l":"Candidatus Zambryskibacteria bacterium RIFCSPHIGHO2_02_FULL_43_37","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2TGH1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G2TGH1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1802749","Candidatus Zambryskibacteria bacterium RIFCSPHIGHO2_02_FULL_43_37"]]},{"id":"NCBITaxon:1802776","l":"Candidatus Zambryskibacteria bacterium RIFCSPLOWO2_12_FULL_39_23","na":1,"nb":1,"a":[["TED%3AAF-A0A1G2URS1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G2URS1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802776","Candidatus Zambryskibacteria bacterium RIFCSPLOWO2_12_FULL_39_23"]]},{"id":"NCBITaxon:1802984","l":"Candidatus Fokinia solitaria","na":1,"nb":1,"a":[["TED%3AAF-A0A2U8BT05-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U8BT05-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1802984","Candidatus Fokinia solitaria"]]},{"id":"NCBITaxon:1803424","l":"Acidobacteria bacterium 13_1_20CM_2_55_15","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q8BEA6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q8BEA6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1803424","Acidobacteria bacterium 13_1_20CM_2_55_15"]]},{"id":"NCBITaxon:1803428","l":"Acidobacteria bacterium 13_1_20CM_2_65_9","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q8ANT9-F1-model_v4_TED01","TED novel fold AF-A0A1Q8ANT9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1803428","Acidobacteria bacterium 13_1_20CM_2_65_9"]]},{"id":"NCBITaxon:1803450","l":"Acidobacteria bacterium 13_1_40CM_3_65_5","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q7MS00-F1-model_v4_TED03","TED novel fold AF-A0A1Q7MS00-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1803450","Acidobacteria bacterium 13_1_40CM_3_65_5"]]},{"id":"NCBITaxon:1803456","l":"Acidobacteria bacterium 13_1_40CM_4_65_8","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q7K8T4-F1-model_v4_TED01","TED novel fold AF-A0A1Q7K8T4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1803456","Acidobacteria bacterium 13_1_40CM_4_65_8"]]},{"id":"NCBITaxon:1803459","l":"Acidobacteria bacterium 13_1_40CM_65_14","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q7GVF6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1Q7GVF6-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1803459","Acidobacteria bacterium 13_1_40CM_65_14"]]},{"id":"NCBITaxon:1803465","l":"Acidobacteria bacterium 13_2_20CM_57_7","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6WU70-F1-model_v4_TED03","TED novel fold AF-A0A1Q6WU70-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1803465","Acidobacteria bacterium 13_2_20CM_57_7"]]},{"id":"NCBITaxon:1803492","l":"Actinobacteria bacterium 13_2_20CM_2_66_6","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q7C938-F1-model_v4_TED02","TED novel fold AF-A0A1Q7C938-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1803492","Actinobacteria bacterium 13_2_20CM_2_66_6"]]},{"id":"NCBITaxon:1803508","l":"Alphaproteobacteria bacterium CG1_02_46_17","na":1,"nb":1,"a":[["TED%3AAF-A0A1J4RGT0-F1-model_v4_TED01","TED novel fold AF-A0A1J4RGT0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1803508","Alphaproteobacteria bacterium CG1_02_46_17"]]},{"id":"NCBITaxon:1803514","l":"Candidatus Altarchaeum sp. CG2_30_32_3053","na":1,"nb":1,"a":[["TED%3AAF-A0A1J5J640-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1J5J640-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1803514","Candidatus Altarchaeum sp. CG2_30_32_3053"]]},{"id":"NCBITaxon:1803819","l":"Thermoplasmatales archaeon SG8-52-4","na":1,"nb":1,"a":[["TED%3AAF-A0A151DZ87-F1-model_v4_TED01","TED novel fold AF-A0A151DZ87-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1803819","Thermoplasmatales archaeon SG8-52-4"]]},{"id":"NCBITaxon:1803822","l":"Candidatus Proteinoplasmatales archaeon SG8-5","na":1,"nb":1,"a":[["TED%3AAF-A0A151ERD5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A151ERD5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1803822","Candidatus Proteinoplasmatales archaeon SG8-5"]]},{"id":"NCBITaxon:1803865","l":"Thiomicrospira sp. S5","na":1,"nb":1,"a":[["TED%3AAF-A0A3S9TMS1-F1-model_v4_TED02","TED novel fold AF-A0A3S9TMS1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1803865","Thiomicrospira sp. S5"]]},{"id":"NCBITaxon:1803903","l":"Actinomadura montaniterrae","na":1,"nb":1,"a":[["TED%3AAF-A0A6L3VXB5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L3VXB5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1803903","Actinomadura montaniterrae"]]},{"id":"NCBITaxon:1804625","l":"Ruficoccus amylovorans","na":1,"nb":1,"a":[["TED%3AAF-A0A842HAR4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A842HAR4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1804625","Ruficoccus amylovorans"]]},{"id":"NCBITaxon:1804986","l":"Amycolatopsis albispora","na":1,"nb":1,"a":[["TED%3AAF-A0A344L4Y7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A344L4Y7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1804986","Amycolatopsis albispora"]]},{"id":"NCBITaxon:1804988","l":"Nesterenkonia sphaerica","na":1,"nb":1,"a":[["TED%3AAF-A0A5R9AAV0-F1-model_v4_TED01","TED novel fold AF-A0A5R9AAV0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1804988","Nesterenkonia sphaerica"]]},{"id":"NCBITaxon:1805004","l":"Anaerolineae bacterium CG2_30_58_95","na":1,"nb":1,"a":[["TED%3AAF-A0A1J5A5D4-F1-model_v4_TED03","TED novel fold AF-A0A1J5A5D4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1805004","Anaerolineae bacterium CG2_30_58_95"]]},{"id":"NCBITaxon:1805008","l":"archaeon 13_1_20CM_2_54_9","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q8A3L0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q8A3L0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1805008","archaeon 13_1_20CM_2_54_9"]]},{"id":"NCBITaxon:1805026","l":"Armatimonadetes bacterium 13_1_40CM_64_14","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q7FX52-F1-model_v4_TED01","TED novel fold AF-A0A1Q7FX52-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1805026","Armatimonadetes bacterium 13_1_40CM_64_14"]]},{"id":"NCBITaxon:1805035","l":"Candidatus Beckwithbacteria bacterium CG2_30_44_31","na":1,"nb":1,"a":[["TED%3AAF-A0A1J5B876-F1-model_v4_TED01","TED novel fold AF-A0A1J5B876-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1805035","Candidatus Beckwithbacteria bacterium CG2_30_44_31"]]},{"id":"NCBITaxon:1805096","l":"Crenarchaeota archaeon 13_1_40CM_3_52_17","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q7MGL8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1Q7MGL8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1805096","Crenarchaeota archaeon 13_1_40CM_3_52_17"]]},{"id":"NCBITaxon:1805126","l":"Deltaproteobacteria bacterium CG2_30_63_29","na":1,"nb":1,"a":[["TED%3AAF-A0A1J5EMZ8-F1-model_v4_TED01","TED novel fold AF-A0A1J5EMZ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1805126","Deltaproteobacteria bacterium CG2_30_63_29"]]},{"id":"NCBITaxon:1805128","l":"Desulfobacteraceae bacterium CG2_30_51_40","na":1,"nb":1,"a":[["TED%3AAF-A0A1J5E7K9-F1-model_v4_TED01","TED novel fold AF-A0A1J5E7K9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1805128","Desulfobacteraceae bacterium CG2_30_51_40"]]},{"id":"NCBITaxon:1805130","l":"Desulfovibrionaceae bacterium CG1_02_65_16","na":1,"nb":1,"a":[["TED%3AAF-A0A1J4T3W5-F1-model_v4_TED02","TED novel fold AF-A0A1J4T3W5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1805130","Desulfovibrionaceae bacterium CG1_02_65_16"]]},{"id":"NCBITaxon:1805146","l":"Candidatus Falkowbacteria bacterium CG1_02_37_44","na":1,"nb":1,"a":[["TED%3AAF-A0A1J4T4S7-F1-model_v4_TED07","TED highly-symmetric fold AF-A0A1J4T4S7-F1-model_v4_TED07"]],"b":[["NCBITaxon%3A1805146","Candidatus Falkowbacteria bacterium CG1_02_37_44"]]},{"id":"NCBITaxon:1805220","l":"Ignavibacteria bacterium CG1_02_37_35","na":1,"nb":1,"a":[["TED%3AAF-A0A1J4U5E6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1J4U5E6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1805220","Ignavibacteria bacterium CG1_02_37_35"]]},{"id":"NCBITaxon:1805224","l":"Ktedonobacter sp. 13_1_20CM_3_54_15","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q7WUS9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q7WUS9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1805224","Ktedonobacter sp. 13_1_20CM_3_54_15"]]},{"id":"NCBITaxon:1805240","l":"Fidelibacterota bacterium CG1_02_48_14","na":1,"nb":1,"a":[["TED%3AAF-A0A1J4XBB4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1J4XBB4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1805240","Fidelibacterota bacterium CG1_02_48_14"]]},{"id":"NCBITaxon:1805263","l":"Nitrospirae bacterium 13_1_20CM_4_62_6","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q7SGL5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q7SGL5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1805263","Nitrospirae bacterium 13_1_20CM_4_62_6"]]},{"id":"NCBITaxon:1805284","l":"Candidatus Omnitrophica bacterium CG1_02_40_15","na":1,"nb":1,"a":[["TED%3AAF-A0A1J4VFU9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1J4VFU9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1805284","Candidatus Omnitrophica bacterium CG1_02_40_15"]]},{"id":"NCBITaxon:1805286","l":"Candidatus Omnitrophica bacterium CG1_02_43_210","na":1,"nb":1,"a":[["TED%3AAF-A0A1J4Z274-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1J4Z274-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1805286","Candidatus Omnitrophica bacterium CG1_02_43_210"]]},{"id":"NCBITaxon:1805297","l":"Candidatus Pacearchaeota archaeon CG1_02_35_32","na":1,"nb":1,"a":[["TED%3AAF-A0A1J4W239-F1-model_v4_TED01","TED novel fold AF-A0A1J4W239-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1805297","Candidatus Pacearchaeota archaeon CG1_02_35_32"]]},{"id":"NCBITaxon:1805302","l":"Parcubacteria group bacterium CG1_02_37_13","na":1,"nb":1,"a":[["TED%3AAF-A0A1J4WA19-F1-model_v4_TED01","TED novel fold AF-A0A1J4WA19-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1805302","Parcubacteria group bacterium CG1_02_37_13"]]},{"id":"NCBITaxon:1805308","l":"Parcubacteria group bacterium CG1_02_41_26","na":1,"nb":1,"a":[["TED%3AAF-A0A1J4WKZ9-F1-model_v4_TED01","TED novel fold AF-A0A1J4WKZ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1805308","Parcubacteria group bacterium CG1_02_41_26"]]},{"id":"NCBITaxon:1805317","l":"Parcubacteria group bacterium CG2_30_44_11","na":1,"nb":1,"a":[["TED%3AAF-A0A1J5H0E8-F1-model_v4_TED01","TED novel fold AF-A0A1J5H0E8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1805317","Parcubacteria group bacterium CG2_30_44_11"]]},{"id":"NCBITaxon:1805333","l":"Proteobacteria bacterium CG1_02_64_396","na":1,"nb":1,"a":[["TED%3AAF-A0A1J4X614-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1J4X614-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1805333","Proteobacteria bacterium CG1_02_64_396"]]},{"id":"NCBITaxon:1805366","l":"Candidatus Rokubacteria bacterium 13_1_40CM_68_15","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q7D5X9-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1Q7D5X9-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1805366","Candidatus Rokubacteria bacterium 13_1_40CM_68_15"]]},{"id":"NCBITaxon:1805371","l":"Candidatus Rokubacteria bacterium 13_2_20CM_69_10","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6WCT4-F1-model_v4_TED02","TED novel fold AF-A0A1Q6WCT4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1805371","Candidatus Rokubacteria bacterium 13_2_20CM_69_10"]]},{"id":"NCBITaxon:1805403","l":"bacterium CG2_30_54_10","na":1,"nb":1,"a":[["TED%3AAF-A0A1J5DNS0-F1-model_v4_TED02","TED novel fold AF-A0A1J5DNS0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1805403","bacterium CG2_30_54_10"]]},{"id":"NCBITaxon:1805422","l":"Candidatus Woesearchaeota archaeon CG1_02_33_12","na":1,"nb":1,"a":[["TED%3AAF-A0A1J4XLR5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1J4XLR5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1805422","Candidatus Woesearchaeota archaeon CG1_02_33_12"]]},{"id":"NCBITaxon:1805424","l":"Candidatus Woesearchaeota archaeon CG1_02_57_44","na":1,"nb":1,"a":[["TED%3AAF-A0A1J4XRK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1J4XRK2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1805424","Candidatus Woesearchaeota archaeon CG1_02_57_44"]]},{"id":"NCBITaxon:1805481","l":"Nematocida ironsii","na":1,"nb":1,"a":[["TED%3AAF-A0A177EK54-F1-model_v4_TED02","TED novel fold AF-A0A177EK54-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1805481","Nematocida ironsii"]]},{"id":"NCBITaxon:1806667","l":"Marinomonas gallaica","na":1,"nb":1,"a":[["TED%3AAF-A0A1C3JTC5-F1-model_v4_TED01","TED novel fold AF-A0A1C3JTC5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1806667","Marinomonas gallaica"]]},{"id":"NCBITaxon:1806885","l":"Sphingorhabdus sp. M41","na":1,"nb":1,"a":[["TED%3AAF-A0A127MDA6-F1-model_v4_TED01","TED novel fold AF-A0A127MDA6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1806885","Sphingorhabdus sp. M41"]]},{"id":"NCBITaxon:180862","l":"Bacillus thuringiensis serovar toumanoffi","na":1,"nb":1,"a":[["TED%3AAF-A0A243E870-F1-model_v4_TED01","TED novel fold AF-A0A243E870-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A180862","Bacillus thuringiensis serovar toumanoffi"]]},{"id":"NCBITaxon:180880","l":"Bacillus thuringiensis serovar argentinensis","na":1,"nb":1,"a":[["TED%3AAF-A0A243JUF1-F1-model_v4_TED01","TED novel fold AF-A0A243JUF1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A180880","Bacillus thuringiensis serovar argentinensis"]]},{"id":"NCBITaxon:1808955","l":"Bacillus mesophilus","na":1,"nb":1,"a":[["TED%3AAF-A0A6M0Q7E2-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A6M0Q7E2-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1808955","Bacillus mesophilus"]]},{"id":"NCBITaxon:1811674","l":"Methanobacterium sp. PtaB.Bin024","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4TH57-F1-model_v4_TED01","TED novel fold AF-A0A1V4TH57-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1811674","Methanobacterium sp. PtaB.Bin024"]]},{"id":"NCBITaxon:1811676","l":"Methanobacterium sp. PtaU1.Bin242","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4YTN8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1V4YTN8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1811676","Methanobacterium sp. PtaU1.Bin242"]]},{"id":"NCBITaxon:1811679","l":"Methanomethylovorans sp. PtaU1.Bin093","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4YFL3-F1-model_v4_TED01","TED novel fold AF-A0A1V4YFL3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1811679","Methanomethylovorans sp. PtaU1.Bin093"]]},{"id":"NCBITaxon:1811685","l":"Methanosaeta sp. PtaB.Bin039","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4UYT6-F1-model_v4_TED01","TED novel fold AF-A0A1V4UYT6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1811685","Methanosaeta sp. PtaB.Bin039"]]},{"id":"NCBITaxon:1811691","l":"Methanosaeta sp. PtaU1.Bin055","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5BF30-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5BF30-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1811691","Methanosaeta sp. PtaU1.Bin055"]]},{"id":"NCBITaxon:1811700","l":"Syntrophorhabdus sp. PtaB.Bin047","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4WYL1-F1-model_v4_TED08","TED novel fold AF-A0A1V4WYL1-F1-model_v4_TED08"]],"b":[["NCBITaxon%3A1811700","Syntrophorhabdus sp. PtaB.Bin047"]]},{"id":"NCBITaxon:1811710","l":"Syntrophus sp. PtaB.Bin001","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4X270-F1-model_v4_TED02","TED novel fold AF-A0A1V4X270-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1811710","Syntrophus sp. PtaB.Bin001"]]},{"id":"NCBITaxon:1811713","l":"Syntrophus sp. PtaU1.Bin208","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5DMC7-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1V5DMC7-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1811713","Syntrophus sp. PtaU1.Bin208"]]},{"id":"NCBITaxon:1811720","l":"Methanoregulaceae archaeon PtaB.Bin009","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4U8V2-F1-model_v4_TED01","TED novel fold AF-A0A1V4U8V2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1811720","Methanoregulaceae archaeon PtaB.Bin009"]]},{"id":"NCBITaxon:1811722","l":"Methanoregulaceae archaeon PtaB.Bin108","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4UG46-F1-model_v4_TED02","TED novel fold AF-A0A1V4UG46-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1811722","Methanoregulaceae archaeon PtaB.Bin108"]]},{"id":"NCBITaxon:1811725","l":"Methanoregulaceae archaeon PtaU1.Bin066","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5A3G5-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1V5A3G5-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1811725","Methanoregulaceae archaeon PtaU1.Bin066"]]},{"id":"NCBITaxon:1812858","l":"Anaerosacchariphilus polymeriproducens","na":1,"nb":1,"a":[["TED%3AAF-A0A371AZT7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A371AZT7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1812858","Anaerosacchariphilus polymeriproducens"]]},{"id":"NCBITaxon:1813876","l":"Phenylobacterium hankyongense","na":1,"nb":1,"a":[["TED%3AAF-A0A328B167-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A328B167-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1813876","Phenylobacterium hankyongense"]]},{"id":"NCBITaxon:1817495","l":"Agromyces binzhouensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q2K015-F1-model_v4_TED02","TED novel fold AF-A0A4Q2K015-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1817495","Agromyces binzhouensis"]]},{"id":"NCBITaxon:1817731","l":"Candidatus Collierbacteria bacterium RIFOXYD1_FULL_40_9","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5FX50-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F5FX50-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1817731","Candidatus Collierbacteria bacterium RIFOXYD1_FULL_40_9"]]},{"id":"NCBITaxon:1817748","l":"Microgenomates group bacterium RBG_19FT_COMBO_39_10","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1C2I3-F1-model_v4_TED01","TED novel fold AF-A0A1G1C2I3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1817748","Microgenomates group bacterium RBG_19FT_COMBO_39_10"]]},{"id":"NCBITaxon:1817750","l":"Microgenomates group bacterium RIFCSPLOWO2_01_FULL_46_13","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1CI75-F1-model_v4_TED01","TED novel fold AF-A0A1G1CI75-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1817750","Microgenomates group bacterium RIFCSPLOWO2_01_FULL_46_13"]]},{"id":"NCBITaxon:1817755","l":"Candidatus Muproteobacteria bacterium RBG_16_60_9","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6V2B3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F6V2B3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1817755","Candidatus Muproteobacteria bacterium RBG_16_60_9"]]},{"id":"NCBITaxon:1817757","l":"Candidatus Muproteobacteria bacterium RBG_16_64_10","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6T0C4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F6T0C4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1817757","Candidatus Muproteobacteria bacterium RBG_16_64_10"]]},{"id":"NCBITaxon:1817761","l":"Candidatus Muproteobacteria bacterium RBG_19FT_COMBO_61_10","na":1,"nb":1,"a":[["TED%3AAF-A0A1F6UEJ7-F1-model_v4_TED01","TED novel fold AF-A0A1F6UEJ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1817761","Candidatus Muproteobacteria bacterium RBG_19FT_COMBO_61_10"]]},{"id":"NCBITaxon:1817824","l":"Candidatus Doudnabacteria bacterium RIFCSPHIGHO2_01_FULL_46_14","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5NNY4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F5NNY4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1817824","Candidatus Doudnabacteria bacterium RIFCSPHIGHO2_01_FULL_46_14"]]},{"id":"NCBITaxon:1817828","l":"Candidatus Doudnabacteria bacterium RIFCSPHIGHO2_01_FULL_50_11","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5PET0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F5PET0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1817828","Candidatus Doudnabacteria bacterium RIFCSPHIGHO2_01_FULL_50_11"]]},{"id":"NCBITaxon:1817851","l":"Candidatus Edwardsbacteria bacterium GWF2_54_11","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5RHY4-F1-model_v4_TED04","TED novel fold AF-A0A1F5RHY4-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1817851","Candidatus Edwardsbacteria bacterium GWF2_54_11"]]},{"id":"NCBITaxon:1817863","l":"Candidatus Fischerbacteria bacterium RBG_13_37_8","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5VLS4-F1-model_v4_TED01","TED novel fold AF-A0A1F5VLS4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1817863","Candidatus Fischerbacteria bacterium RBG_13_37_8"]]},{"id":"NCBITaxon:1817864","l":"Candidatus Fraserbacteria bacterium RBG_16_55_9","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5URP5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F5URP5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1817864","Candidatus Fraserbacteria bacterium RBG_16_55_9"]]},{"id":"NCBITaxon:1817876","l":"Candidatus Schekmanbacteria bacterium GWA2_38_11","na":1,"nb":1,"a":[["TED%3AAF-A0A1F7RNQ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F7RNQ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1817876","Candidatus Schekmanbacteria bacterium GWA2_38_11"]]},{"id":"NCBITaxon:1817883","l":"Candidatus Schekmanbacteria bacterium RIFCSPLOWO2_12_FULL_38_15","na":1,"nb":1,"a":[["TED%3AAF-A0A1F7SL59-F1-model_v4_TED02","TED novel fold AF-A0A1F7SL59-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1817883","Candidatus Schekmanbacteria bacterium RIFCSPLOWO2_12_FULL_38_15"]]},{"id":"NCBITaxon:1817890","l":"Candidatus Raymondbacteria bacterium RIFOXYD12_FULL_49_13","na":1,"nb":1,"a":[["TED%3AAF-A0A1F7FCR9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1F7FCR9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1817890","Candidatus Raymondbacteria bacterium RIFOXYD12_FULL_49_13"]]},{"id":"NCBITaxon:1817892","l":"Candidatus Wirthbacteria bacterium CG2_30_54_11","na":1,"nb":1,"a":[["TED%3AAF-A0A1J5IM62-F1-model_v4_TED01","TED novel fold AF-A0A1J5IM62-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1817892","Candidatus Wirthbacteria bacterium CG2_30_54_11"]]},{"id":"NCBITaxon:1817896","l":"candidate division WS6 bacterium RIFOXYB1_FULL_33_14","na":1,"nb":1,"a":[["TED%3AAF-A0A1F4UJQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F4UJQ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1817896","candidate division WS6 bacterium RIFOXYB1_FULL_33_14"]]},{"id":"NCBITaxon:182096","l":"Aspergillus chevalieri","na":1,"nb":1,"a":[["TED%3AAF-A0A7R7VIB2-F1-model_v4_TED01","TED novel fold AF-A0A7R7VIB2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A182096","Aspergillus chevalieri"]]},{"id":"NCBITaxon:182220","l":"Mycolicibacterium murale","na":1,"nb":1,"a":[["TED%3AAF-A0A7I9WL32-F1-model_v4_TED01","TED novel fold AF-A0A7I9WL32-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39695","Mycolicibacterium tokaiense"]]},{"id":"NCBITaxon:1822235","l":"Roseovarius sp. HI0049","na":1,"nb":1,"a":[["TED%3AAF-A0A176FJ41-F1-model_v4_TED02","TED novel fold AF-A0A176FJ41-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1822235","Roseovarius sp. HI0049"]]},{"id":"NCBITaxon:1822240","l":"Erythrobacter sp. HI0063","na":1,"nb":1,"a":[["TED%3AAF-A0A167IPA1-F1-model_v4_TED01","TED novel fold AF-A0A167IPA1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1822240","Erythrobacter sp. HI0063"]]},{"id":"NCBITaxon:1822254","l":"Oleiphilus sp. HI0079","na":1,"nb":1,"a":[["TED%3AAF-A0A657BC38-F1-model_v4_TED02","TED novel fold AF-A0A657BC38-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1822254","Oleiphilus sp. HI0079"]]},{"id":"NCBITaxon:1827290","l":"Chryseobacterium sp. MYb7","na":1,"nb":1,"a":[["TED%3AAF-A0A2S8ZE56-F1-model_v4_TED03","TED novel fold AF-A0A2S8ZE56-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1827290","Chryseobacterium sp. MYb7"]]},{"id":"NCBITaxon:1827382","l":"Proteobacteria bacterium SG_bin5","na":1,"nb":1,"a":[["TED%3AAF-A0A1W9H4W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W9H4W3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1827382","Proteobacteria bacterium SG_bin5"]]},{"id":"NCBITaxon:1827383","l":"Proteobacteria bacterium SG_bin6","na":1,"nb":1,"a":[["TED%3AAF-A0A1W9HJL3-F1-model_v4_TED02","TED novel fold AF-A0A1W9HJL3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1827383","Proteobacteria bacterium SG_bin6"]]},{"id":"NCBITaxon:1827606","l":"Streptomyces sp. 70","na":1,"nb":1,"a":[["TED%3AAF-A0A2G7EW80-F1-model_v4_TED01","TED novel fold AF-A0A2G7EW80-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1827606","Streptomyces sp. 70"]]},{"id":"NCBITaxon:1827608","l":"Streptomyces sp. 74","na":1,"nb":1,"a":[["TED%3AAF-A0A497W5L2-F1-model_v4_TED01","TED novel fold AF-A0A497W5L2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1827608","Streptomyces sp. 74"]]},{"id":"NCBITaxon:1833852","l":"Desulforamulus ferrireducens","na":1,"nb":1,"a":[["TED%3AAF-A0A1S6IZY5-F1-model_v4_TED02","TED novel fold AF-A0A1S6IZY5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1833852","Desulforamulus ferrireducens"]]},{"id":"NCBITaxon:1834037","l":"Rheinheimera riviphila","na":1,"nb":1,"a":[["TED%3AAF-A0A437QT82-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A437QT82-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1834037","Rheinheimera riviphila"]]},{"id":"NCBITaxon:1834075","l":"Mycobacterium sp. 1245801.1","na":1,"nb":1,"a":[["TED%3AAF-A0A1A3FAD2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1A3FAD2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1834075","Mycobacterium sp. 1245801.1"]]},{"id":"NCBITaxon:1834077","l":"Mycobacterium sp. 1274761.0","na":1,"nb":1,"a":[["TED%3AAF-A0A1A3SSL2-F1-model_v4_TED01","TED novel fold AF-A0A1A3SSL2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1834077","Mycobacterium sp. 1274761.0"]]},{"id":"NCBITaxon:1834089","l":"Mycobacterium sp. 852002-40037_SCH5390672","na":1,"nb":1,"a":[["TED%3AAF-A0A1B7U477-F1-model_v4_TED01","TED novel fold AF-A0A1B7U477-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1834089","Mycobacterium sp. 852002-40037_SCH5390672"]]},{"id":"NCBITaxon:1834109","l":"Mycobacterium sp. 852013-50091_SCH5140682","na":1,"nb":1,"a":[["TED%3AAF-A0A1A0WQJ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1A0WQJ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1834109","Mycobacterium sp. 852013-50091_SCH5140682"]]},{"id":"NCBITaxon:1834154","l":"Mycobacterium sp. GA-1841","na":1,"nb":1,"a":[["TED%3AAF-A0A1R0V4H9-F1-model_v4_TED01","TED novel fold AF-A0A1R0V4H9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1834154","Mycobacterium sp. GA-1841"]]},{"id":"NCBITaxon:1834192","l":"Candidatus Enterococcus dunnyi","na":1,"nb":1,"a":[["TED%3AAF-A0A200JDJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A200JDJ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1834192","Candidatus Enterococcus dunnyi"]]},{"id":"NCBITaxon:1835702","l":"Penicillium arizonense","na":1,"nb":1,"a":[["TED%3AAF-A0A1F5L3E5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1F5L3E5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1835702","Penicillium arizonense"]]},{"id":"NCBITaxon:1835722","l":"Neolewinella aquimaris","na":1,"nb":1,"a":[["TED%3AAF-A0A840E6J2-F1-model_v4_TED03","TED novel fold AF-A0A840E6J2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1835722","Neolewinella aquimaris"]]},{"id":"NCBITaxon:1835767","l":"Limnohabitans sp. MMS-10A-178","na":1,"nb":1,"a":[["TED%3AAF-A0A315B4N1-F1-model_v4_TED02","TED novel fold AF-A0A315B4N1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1835767","Limnohabitans sp. MMS-10A-178"]]},{"id":"NCBITaxon:1839766","l":"Streptomyces sp. DconLS","na":1,"nb":1,"a":[["TED%3AAF-A0A1C5DNZ5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C5DNZ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1839766","Streptomyces sp. DconLS"]]},{"id":"NCBITaxon:1840705","l":"Nostoc sp. ATCC 43529","na":1,"nb":1,"a":[["TED%3AAF-A0A367QQT5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A367QQT5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1840705","Nostoc sp. ATCC 43529"]]},{"id":"NCBITaxon:1841597","l":"Candidatus Heimdallarchaeota archaeon LC_2","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q9NZD8-F1-model_v4_TED01","TED novel fold AF-A0A1Q9NZD8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1841597","Candidatus Heimdallarchaeota archaeon LC_2"]]},{"id":"NCBITaxon:1841599","l":"Candidatus Odinarchaeum yellowstonii","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q9N9F6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1Q9N9F6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1841599","Candidatus Odinarchaeum yellowstonii"]]},{"id":"NCBITaxon:1841610","l":"Planctopirus hydrillae","na":1,"nb":1,"a":[["TED%3AAF-A0A1C3EHJ6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1C3EHJ6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1841610","Planctopirus hydrillae"]]},{"id":"NCBITaxon:1842539","l":"Allobosea sp. RAC05","na":1,"nb":1,"a":[["TED%3AAF-A0A1B3NDG9-F1-model_v4_TED01","TED novel fold AF-A0A1B3NDG9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1842539","Allobosea sp. RAC05"]]},{"id":"NCBITaxon:1843184","l":"Pseudomonas sp. AU11447","na":1,"nb":1,"a":[["TED%3AAF-A0A1B8VEK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B8VEK2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1843184","Pseudomonas sp. AU11447"]]},{"id":"NCBITaxon:1843237","l":"Sphingomonas prati","na":1,"nb":1,"a":[["TED%3AAF-A0A7W9BV99-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W9BV99-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1843237","Sphingomonas prati"]]},{"id":"NCBITaxon:1844006","l":"Phaeobacter porticola","na":1,"nb":1,"a":[["TED%3AAF-A0A1L3I6U2-F1-model_v4_TED01","TED novel fold AF-A0A1L3I6U2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1844006","Phaeobacter porticola"]]},{"id":"NCBITaxon:1844972","l":"Paenibacillus oryzae","na":1,"nb":1,"a":[["TED%3AAF-A0A1A5YQ67-F1-model_v4_TED01","TED novel fold AF-A0A1A5YQ67-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1844972","Paenibacillus oryzae"]]},{"id":"NCBITaxon:1848329","l":"Nonomuraea diastatica","na":1,"nb":1,"a":[["TED%3AAF-A0A4R4WGH3-F1-model_v4_TED02","TED novel fold AF-A0A4R4WGH3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1848329","Nonomuraea diastatica"]]},{"id":"NCBITaxon:1848693","l":"Microbacterium sp. MYb72","na":1,"nb":1,"a":[["TED%3AAF-A0A2S8ZM11-F1-model_v4_TED01","TED novel fold AF-A0A2S8ZM11-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1848693","Microbacterium sp. MYb72"]]},{"id":"NCBITaxon:1848756","l":"Actinobacteria bacterium IMCC26103","na":1,"nb":1,"a":[["TED%3AAF-A0A7D6IK92-F1-model_v4_TED01","TED novel fold AF-A0A7D6IK92-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1848756","Actinobacteria bacterium IMCC26103"]]},{"id":"NCBITaxon:1848928","l":"Helicobacter sp. TUL","na":1,"nb":1,"a":[["TED%3AAF-A0A2A2GT12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A2GT12-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1848928","Helicobacter sp. TUL"]]},{"id":"NCBITaxon:1849261","l":"Candidatus Altarchaeales archaeon WOR_SM1_SCG","na":1,"nb":1,"a":[["TED%3AAF-A0A1D2RA25-F1-model_v4_TED02","TED novel fold AF-A0A1D2RA25-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1849261","Candidatus Altarchaeales archaeon WOR_SM1_SCG"]]},{"id":"NCBITaxon:1849359","l":"Jannaschia sp. EhC01","na":1,"nb":1,"a":[["TED%3AAF-A0A1B6YP83-F1-model_v4_TED06","TED novel fold AF-A0A1B6YP83-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A1849359","Jannaschia sp. EhC01"]]},{"id":"NCBITaxon:184978","l":"Decorospora gaudefroyi","na":1,"nb":1,"a":[["TED%3AAF-A0A6A5K2G3-F1-model_v4_TED01","TED novel fold AF-A0A6A5K2G3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A184978","Decorospora gaudefroyi"]]},{"id":"NCBITaxon:1850093","l":"Hymenobacter nivis","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z3GL83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z3GL83-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1850093","Hymenobacter nivis"]]},{"id":"NCBITaxon:1850238","l":"Rhizorhabdus dicambivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A2A4FP30-F1-model_v4_TED01","TED novel fold AF-A0A2A4FP30-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1850238","Rhizorhabdus dicambivorans"]]},{"id":"NCBITaxon:1850246","l":"Urechidicola croceus","na":1,"nb":1,"a":[["TED%3AAF-A0A1D8P9B6-F1-model_v4_TED01","TED novel fold AF-A0A1D8P9B6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1850246","Urechidicola croceus"]]},{"id":"NCBITaxon:1850252","l":"Tenacibaculum todarodis","na":1,"nb":1,"a":[["TED%3AAF-A0A1L3JJ42-F1-model_v4_TED01","TED novel fold AF-A0A1L3JJ42-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1850252","Tenacibaculum todarodis"]]},{"id":"NCBITaxon:1850347","l":"Novosphingobium guangzhouense","na":1,"nb":1,"a":[["TED%3AAF-A0A2K2G3N9-F1-model_v4_TED02","TED novel fold AF-A0A2K2G3N9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1850347","Novosphingobium guangzhouense"]]},{"id":"NCBITaxon:1850373","l":"Peteryoungia rhizophila","na":1,"nb":1,"a":[["TED%3AAF-A0A4S8N3I1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S8N3I1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1850373","Peteryoungia rhizophila"]]},{"id":"NCBITaxon:1850517","l":"Paenibacillus oryzisoli","na":1,"nb":1,"a":[["TED%3AAF-A0A197ZY80-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A197ZY80-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1850517","Paenibacillus oryzisoli"]]},{"id":"NCBITaxon:1851148","l":"Limihaloglobus sulfuriphilus","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q2MIY0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q2MIY0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1851148","Limihaloglobus sulfuriphilus"]]},{"id":"NCBITaxon:1851167","l":"Streptomyces sp. 11-1-2","na":1,"nb":1,"a":[["TED%3AAF-A0A222SLM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A222SLM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1851167","Streptomyces sp. 11-1-2"]]},{"id":"NCBITaxon:185139","l":"Rubrobacter taiwanensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4R1BQH8-F1-model_v4_TED01","TED novel fold AF-A0A4R1BQH8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A185139","Rubrobacter taiwanensis"]]},{"id":"NCBITaxon:1852029","l":"Aquicoccus porphyridii","na":1,"nb":1,"a":[["TED%3AAF-A0A5A9ZV31-F1-model_v4_TED02","TED novel fold AF-A0A5A9ZV31-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1852029","Aquicoccus porphyridii"]]},{"id":"NCBITaxon:185243","l":"Propionicimonas paludicola","na":1,"nb":1,"a":[["TED%3AAF-A0A2A9CU70-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A9CU70-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A185243","Propionicimonas paludicola"]]},{"id":"NCBITaxon:1852791","l":"Alphaproteobacteria bacterium ADurb.Bin100","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6FVU0-F1-model_v4_TED05","TED novel fold AF-A0A1V6FVU0-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1852791","Alphaproteobacteria bacterium ADurb.Bin100"]]},{"id":"NCBITaxon:1852795","l":"Bacteroidetes bacterium ADurb.Bin008","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6JEY9-F1-model_v4_TED09","TED highly-symmetric fold AF-A0A1V6JEY9-F1-model_v4_TED09"]],"b":[["NCBITaxon%3A1852795","Bacteroidetes bacterium ADurb.Bin008"]]},{"id":"NCBITaxon:1852798","l":"Bacteroidetes bacterium ADurb.Bin028","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6I663-F1-model_v4_TED01","TED novel fold AF-A0A1V6I663-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852798","Bacteroidetes bacterium ADurb.Bin028"]]},{"id":"NCBITaxon:1852799","l":"Bacteroidetes bacterium ADurb.Bin035","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6I9V5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V6I9V5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852799","Bacteroidetes bacterium ADurb.Bin035"]]},{"id":"NCBITaxon:1852803","l":"Bacteroidetes bacterium ADurb.Bin090","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6ELI2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V6ELI2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1852803","Bacteroidetes bacterium ADurb.Bin090"]]},{"id":"NCBITaxon:1852809","l":"Bacteroidetes bacterium ADurb.Bin217","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5VSW2-F1-model_v4_TED01","TED novel fold AF-A0A1V5VSW2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852809","Bacteroidetes bacterium ADurb.Bin217"]]},{"id":"NCBITaxon:1852813","l":"Bacteroidetes bacterium ADurb.Bin408","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5NBE7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5NBE7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852813","Bacteroidetes bacterium ADurb.Bin408"]]},{"id":"NCBITaxon:1852822","l":"candidate division Hyd24-12 bacterium ADurb.Bin004","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6K796-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1V6K796-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1852822","candidate division Hyd24-12 bacterium ADurb.Bin004"]]},{"id":"NCBITaxon:1852823","l":"candidate division BRC1 bacterium ADurb.Bin183","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5Y2G0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V5Y2G0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1852823","candidate division BRC1 bacterium ADurb.Bin183"]]},{"id":"NCBITaxon:1852826","l":"candidate division CPR1 bacterium ADurb.Bin160","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5ZNE9-F1-model_v4_TED01","TED novel fold AF-A0A1V5ZNE9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852826","candidate division CPR1 bacterium ADurb.Bin160"]]},{"id":"NCBITaxon:1852827","l":"candidate division TA06 bacterium ADurb.Bin131","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6C6G6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V6C6G6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1852827","candidate division TA06 bacterium ADurb.Bin131"]]},{"id":"NCBITaxon:1852835","l":"Candidatus Cloacimonetes bacterium ADurb.Bin088","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6F973-F1-model_v4_TED04","TED novel fold AF-A0A1V6F973-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1852835","Candidatus Cloacimonetes bacterium ADurb.Bin088"]]},{"id":"NCBITaxon:1852848","l":"Candidatus Hydrogenedentes bacterium ADurb.Bin170","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5YWP3-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A1V5YWP3-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1852848","Candidatus Hydrogenedentes bacterium ADurb.Bin170"]]},{"id":"NCBITaxon:1852857","l":"Chloroflexi bacterium ADurb.Bin180","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5YJB6-F1-model_v4_TED01","TED novel fold AF-A0A1V5YJB6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852857","Chloroflexi bacterium ADurb.Bin180"]]},{"id":"NCBITaxon:1852860","l":"Chloroflexi bacterium ADurb.Bin344","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5Q6M1-F1-model_v4_TED02","TED novel fold AF-A0A1V5Q6M1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1852860","Chloroflexi bacterium ADurb.Bin344"]]},{"id":"NCBITaxon:1852861","l":"Chloroflexi bacterium ADurb.Bin360","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5Q263-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V5Q263-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1852861","Chloroflexi bacterium ADurb.Bin360"]]},{"id":"NCBITaxon:1852862","l":"Deltaproteobacteria bacterium ADurb.Bin002","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6KE57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V6KE57-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852862","Deltaproteobacteria bacterium ADurb.Bin002"]]},{"id":"NCBITaxon:1852866","l":"Deltaproteobacteria bacterium ADurb.Bin072","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6GU64-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V6GU64-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852866","Deltaproteobacteria bacterium ADurb.Bin072"]]},{"id":"NCBITaxon:1852873","l":"Elusimicrobia bacterium ADurb.Bin231","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5VGG2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5VGG2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852873","Elusimicrobia bacterium ADurb.Bin231"]]},{"id":"NCBITaxon:1852878","l":"Euryarchaeota archaeon ADurb.Bin294","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5SHM9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5SHM9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852878","Euryarchaeota archaeon ADurb.Bin294"]]},{"id":"NCBITaxon:1852879","l":"Euryarchaeota archaeon ADurb.BinA087","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5ICC1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5ICC1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852879","Euryarchaeota archaeon ADurb.BinA087"]]},{"id":"NCBITaxon:1852884","l":"Firmicutes bacterium ADurb.Bin182","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5Y8P3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5Y8P3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852884","Firmicutes bacterium ADurb.Bin182"]]},{"id":"NCBITaxon:1852888","l":"Firmicutes bacterium ADurb.Bin300","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5S513-F1-model_v4_TED02","TED novel fold AF-A0A1V5S513-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1852888","Firmicutes bacterium ADurb.Bin300"]]},{"id":"NCBITaxon:1852890","l":"Firmicutes bacterium ADurb.Bin356","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5PAI7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5PAI7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852890","Firmicutes bacterium ADurb.Bin356"]]},{"id":"NCBITaxon:1852896","l":"Firmicutes bacterium ADurb.BinA052","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5IZN8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1V5IZN8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1852896","Firmicutes bacterium ADurb.BinA052"]]},{"id":"NCBITaxon:1852901","l":"Lentisphaerae bacterium ADurb.BinA184","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5H8X0-F1-model_v4_TED02","TED novel fold AF-A0A1V5H8X0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1852901","Lentisphaerae bacterium ADurb.BinA184"]]},{"id":"NCBITaxon:1852909","l":"Spirochaetes bacterium ADurb.Bin133","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6BUR7-F1-model_v4_TED01","TED novel fold AF-A0A1V6BUR7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852909","Spirochaetes bacterium ADurb.Bin133"]]},{"id":"NCBITaxon:1852919","l":"Tenericutes bacterium ADurb.Bin140","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6B748-F1-model_v4_TED03","TED novel fold AF-A0A1V6B748-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1852919","Tenericutes bacterium ADurb.Bin140"]]},{"id":"NCBITaxon:1852926","l":"Verrucomicrobia bacterium ADurb.Bin063","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6GJN9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V6GJN9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1852926","Verrucomicrobia bacterium ADurb.Bin063"]]},{"id":"NCBITaxon:1852927","l":"Verrucomicrobia bacterium ADurb.Bin070","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6G9P6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1V6G9P6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1852927","Verrucomicrobia bacterium ADurb.Bin070"]]},{"id":"NCBITaxon:1852938","l":"Parcubacteria group bacterium ADurb.Bin192","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5XPC1-F1-model_v4_TED02","TED novel fold AF-A0A1V5XPC1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1852938","Parcubacteria group bacterium ADurb.Bin192"]]},{"id":"NCBITaxon:1853257","l":"Vibrio sp. UCD-FRSSP16_10","na":1,"nb":1,"a":[["TED%3AAF-A0A1A6L771-F1-model_v4_TED02","TED novel fold AF-A0A1A6L771-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1853257","Vibrio sp. UCD-FRSSP16_10"]]},{"id":"NCBITaxon:1853682","l":"Halarchaeum sp. CBA1220","na":1,"nb":1,"a":[["TED%3AAF-A0A7D5DZJ3-F1-model_v4_TED01","TED novel fold AF-A0A7D5DZJ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1853682","Halarchaeum sp. CBA1220"]]},{"id":"NCBITaxon:1854586","l":"Amycolatopsis antarctica","na":1,"nb":1,"a":[["TED%3AAF-A0A263D954-F1-model_v4_TED01","TED novel fold AF-A0A263D954-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1854586","Amycolatopsis antarctica"]]},{"id":"NCBITaxon:1855285","l":"Rhodoferax sp. OV413","na":1,"nb":1,"a":[["TED%3AAF-A0A1H0QZU1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H0QZU1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1855285","Rhodoferax sp. OV413"]]},{"id":"NCBITaxon:1855288","l":"Cohnella sp. OV330","na":1,"nb":1,"a":[["TED%3AAF-A0A1I0ZWJ5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I0ZWJ5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1855288","Cohnella sp. OV330"]]},{"id":"NCBITaxon:1855302","l":"Pseudobutyrivibrio sp. JW11","na":1,"nb":1,"a":[["TED%3AAF-A0A1I5E7M3-F1-model_v4_TED01","TED novel fold AF-A0A1I5E7M3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1855302","Pseudobutyrivibrio sp. JW11"]]},{"id":"NCBITaxon:1855307","l":"Tardiphaga sp. OK246","na":1,"nb":1,"a":[["TED%3AAF-A0A239N8J6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A239N8J6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1855307","Tardiphaga sp. OK246"]]},{"id":"NCBITaxon:1855323","l":"Butyrivibrio sp. M55","na":1,"nb":1,"a":[["TED%3AAF-A0A1I7HAE2-F1-model_v4_TED02","TED novel fold AF-A0A1I7HAE2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1855323","Butyrivibrio sp. M55"]]},{"id":"NCBITaxon:1855338","l":"Nitrosospira sp. Nsp11","na":1,"nb":1,"a":[["TED%3AAF-A0A1M7G523-F1-model_v4_TED01","TED novel fold AF-A0A1M7G523-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1855338","Nitrosospira sp. Nsp11"]]},{"id":"NCBITaxon:1855343","l":"Oribacterium sp. WCC10","na":1,"nb":1,"a":[["TED%3AAF-A0A1I2RES7-F1-model_v4_TED02","TED novel fold AF-A0A1I2RES7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1855343","Oribacterium sp. WCC10"]]},{"id":"NCBITaxon:1855347","l":"Streptomyces sp. 2231.1","na":1,"nb":1,"a":[["TED%3AAF-A0A1H5I6Q3-F1-model_v4_TED04","TED novel fold AF-A0A1H5I6Q3-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1855347","Streptomyces sp. 2231.1"]]},{"id":"NCBITaxon:1855351","l":"Streptomyces sp. PAN_FS17","na":1,"nb":1,"a":[["TED%3AAF-A0A1H4X8M6-F1-model_v4_TED01","TED novel fold AF-A0A1H4X8M6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1855351","Streptomyces sp. PAN_FS17"]]},{"id":"NCBITaxon:1855375","l":"Lachnospiraceae bacterium KHCPX20","na":1,"nb":1,"a":[["TED%3AAF-A0A1H2TQE4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H2TQE4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1855375","Lachnospiraceae bacterium KHCPX20"]]},{"id":"NCBITaxon:1855726","l":"Burkholderia sp. KK1","na":1,"nb":1,"a":[["TED%3AAF-A0A1P9YEG3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1P9YEG3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1855726","Burkholderia sp. KK1"]]},{"id":"NCBITaxon:1855912","l":"Luteitalea pratensis","na":1,"nb":1,"a":[["TED%3AAF-A0A143PJX2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A143PJX2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1855912","Luteitalea pratensis"]]},{"id":"NCBITaxon:1856","l":"Frankia torreyi","na":1,"nb":1,"a":[["TED%3AAF-A0A0D8BA00-F1-model_v4_TED01","TED novel fold AF-A0A0D8BA00-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1856","Frankia torreyi"]]},{"id":"NCBITaxon:1856283","l":"Marinomonas sp. 42_23_T18","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y5DHG2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y5DHG2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1856283","Marinomonas sp. 42_23_T18"]]},{"id":"NCBITaxon:1856287","l":"Thalassotalea sp. 42_200_T64","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y5H823-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y5H823-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1856287","Thalassotalea sp. 42_200_T64"]]},{"id":"NCBITaxon:1856292","l":"Alphaproteobacteria bacterium 46_93_T64","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y5E3Q9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y5E3Q9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1856292","Alphaproteobacteria bacterium 46_93_T64"]]},{"id":"NCBITaxon:1856297","l":"Gammaproteobacteria bacterium 45_16_T64","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y5GP34-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y5GP34-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1856297","Gammaproteobacteria bacterium 45_16_T64"]]},{"id":"NCBITaxon:1856860","l":"Mycobacterium sp. 1245852.3","na":1,"nb":1,"a":[["TED%3AAF-A0A1A3L3W2-F1-model_v4_TED02","TED novel fold AF-A0A1A3L3W2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1856860","Mycobacterium sp. 1245852.3"]]},{"id":"NCBITaxon:1857568","l":"Macellibacteroides sp. HH-ZS","na":1,"nb":1,"a":[["TED%3AAF-A0A1C2BQK6-F1-model_v4_TED01","TED novel fold AF-A0A1C2BQK6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1857568","Macellibacteroides sp. HH-ZS"]]},{"id":"NCBITaxon:1857893","l":"Gordonia sp. UCD-TK1","na":1,"nb":1,"a":[["TED%3AAF-A0A1B9R9N9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1B9R9N9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1857893","Gordonia sp. UCD-TK1"]]},{"id":"NCBITaxon:1858805","l":"Dacryopinax primogenitus","na":1,"nb":1,"a":[["TED%3AAF-M5FWQ1-F1-model_v4_TED01","TED novel fold AF-M5FWQ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1858805","Dacryopinax primogenitus"]]},{"id":"NCBITaxon:1859475","l":"Floricoccus penangensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1E8GJL3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1E8GJL3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1859475","Floricoccus penangensis"]]},{"id":"NCBITaxon:1860085","l":"Bacteriovorax sp. MedPE-SWde","na":1,"nb":1,"a":[["TED%3AAF-A0A1J5KC37-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1J5KC37-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1860085","Bacteriovorax sp. MedPE-SWde"]]},{"id":"NCBITaxon:1860100","l":"Methanobacterium sp. A39","na":1,"nb":1,"a":[["TED%3AAF-A0A1D2WAA7-F1-model_v4_TED01","TED novel fold AF-A0A1D2WAA7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1860100","Methanobacterium sp. A39"]]},{"id":"NCBITaxon:1860123","l":"Pseudomonas sp. AU12215","na":1,"nb":1,"a":[["TED%3AAF-A0A1B8TCA3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B8TCA3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1860123","Pseudomonas sp. AU12215"]]},{"id":"NCBITaxon:186103","l":"Streptococcus pyogenes MGAS8232","na":1,"nb":1,"a":[["Pfam%3APF13585","CHU_C Type IX secretion signal domain"]],"b":[["NCBITaxon%3A186103","Streptococcus pyogenes MGAS8232"]]},{"id":"NCBITaxon:1861639","l":"Firmicutes bacterium ZCTH02-B6","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y3Q7C5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y3Q7C5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1861639","Firmicutes bacterium ZCTH02-B6"]]},{"id":"NCBITaxon:1862668","l":"Ileibacterium valens","na":1,"nb":1,"a":[["TED%3AAF-A0A1U7NHQ9-F1-model_v4_TED02","TED novel fold AF-A0A1U7NHQ9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1862668","Ileibacterium valens"]]},{"id":"NCBITaxon:1862950","l":"Rhizobiales bacterium NRL2","na":1,"nb":1,"a":[["TED%3AAF-A0A192IL09-F1-model_v4_TED01","TED novel fold AF-A0A192IL09-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1862950","Rhizobiales bacterium NRL2"]]},{"id":"NCBITaxon:1866913","l":"Desulfobacterales bacterium C00003104","na":1,"nb":1,"a":[["TED%3AAF-A0A1E7HCS4-F1-model_v4_TED01","TED novel fold AF-A0A1E7HCS4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1866913","Desulfobacterales bacterium C00003104"]]},{"id":"NCBITaxon:1866923","l":"bacterium ADurb.Bin132","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6C5W7-F1-model_v4_TED01","TED novel fold AF-A0A1V6C5W7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1866923","bacterium ADurb.Bin132"]]},{"id":"NCBITaxon:1866927","l":"bacterium ADurb.Bin363","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5PKI9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V5PKI9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1866927","bacterium ADurb.Bin363"]]},{"id":"NCBITaxon:1866930","l":"bacterium ADurb.Bin429","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5M3H3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V5M3H3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1866930","bacterium ADurb.Bin429"]]},{"id":"NCBITaxon:1866934","l":"bacterium ADurb.BinA186","na":1,"nb":1,"a":[["TED%3AAF-A0A1V5GXP0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1V5GXP0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1866934","bacterium ADurb.BinA186"]]},{"id":"NCBITaxon:1866939","l":"Synechococcus sp. A18-40","na":1,"nb":1,"a":[["TED%3AAF-A0A7G8ICB5-F1-model_v4_TED02","TED novel fold AF-A0A7G8ICB5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1866939","Synechococcus sp. A18-40"]]},{"id":"NCBITaxon:1867956","l":"Rhizobium oryziradicis","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q8ZRR4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q8ZRR4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1867956","Rhizobium oryziradicis"]]},{"id":"NCBITaxon:1868214","l":"Candidatus Korarchaeota archaeon NZ13-K","na":1,"nb":1,"a":[["TED%3AAF-A0A369T3A9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A369T3A9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1868214","Candidatus Korarchaeota archaeon NZ13-K"]]},{"id":"NCBITaxon:1868286","l":"Rhodobacteraceae bacterium (ex Bugula neritina AB1)","na":1,"nb":1,"a":[["TED%3AAF-A0A1E5AKC8-F1-model_v4_TED03","TED novel fold AF-A0A1E5AKC8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1868286","Rhodobacteraceae bacterium (ex Bugula neritina AB1)"]]},{"id":"NCBITaxon:1868324","l":"Candidatus Thermochlorobacter aerophilus","na":1,"nb":1,"a":[["TED%3AAF-A0A395LZ30-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A395LZ30-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1868324","Candidatus Thermochlorobacter aerophilus"]]},{"id":"NCBITaxon:186901","l":"Bradyrhizobium sp. ANU289","na":1,"nb":1,"a":[["PROSITE%3APS01349","Nodulation protein nodA signature"]],"b":[["NCBITaxon%3A186901","Bradyrhizobium sp. ANU289"]]},{"id":"NCBITaxon:1869214","l":"Rheinheimera sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2D5RQK8-F1-model_v4_TED01","TED novel fold AF-A0A2D5RQK8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1869214","Rheinheimera sp."]]},{"id":"NCBITaxon:1869241","l":"Nostoc sp. CENA543","na":1,"nb":1,"a":[["TED%3AAF-A0A2I8A446-F1-model_v4_TED01","TED novel fold AF-A0A2I8A446-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1869241","Nostoc sp. CENA543"]]},{"id":"NCBITaxon:1869300","l":"Desulfobacterales bacterium S5133MH16","na":1,"nb":1,"a":[["TED%3AAF-A0A1E7I4I1-F1-model_v4_TED01","TED novel fold AF-A0A1E7I4I1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1869300","Desulfobacterales bacterium S5133MH16"]]},{"id":"NCBITaxon:1869302","l":"Desulfobacterales bacterium S7086C20","na":1,"nb":1,"a":[["TED%3AAF-A0A1V1WVT0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V1WVT0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1869302","Desulfobacterales bacterium S7086C20"]]},{"id":"NCBITaxon:1869305","l":"Desulfobulbaceae bacterium S3730MH12","na":1,"nb":1,"a":[["TED%3AAF-A0A1E7H854-F1-model_v4_TED01","TED novel fold AF-A0A1E7H854-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1869305","Desulfobulbaceae bacterium S3730MH12"]]},{"id":"NCBITaxon:1869309","l":"Desulfuromonadales bacterium C00003107","na":1,"nb":1,"a":[["TED%3AAF-A0A1E7IH38-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E7IH38-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1869309","Desulfuromonadales bacterium C00003107"]]},{"id":"NCBITaxon:1869311","l":"Desulfuromonadales bacterium C00003096","na":1,"nb":1,"a":[["TED%3AAF-A0A1E7GST7-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A1E7GST7-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1869311","Desulfuromonadales bacterium C00003096"]]},{"id":"NCBITaxon:1869339","l":"Polaromonas sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y0C4X5-F1-model_v4_TED01","TED novel fold AF-A0A7Y0C4X5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1869339","Polaromonas sp."]]},{"id":"NCBITaxon:1870902","l":"Leifsonia sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2E0SSA9-F1-model_v4_TED02","TED novel fold AF-A0A2E0SSA9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1870902","Leifsonia sp."]]},{"id":"NCBITaxon:1871043","l":"Variovorax sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2E9BKC8-F1-model_v4_TED02","TED novel fold AF-A0A2E9BKC8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1871043","Variovorax sp."]]},{"id":"NCBITaxon:1871072","l":"Nocardioidaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7W0M449-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W0M449-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1871072","Nocardioidaceae bacterium"]]},{"id":"NCBITaxon:1872076","l":"Candidatus Scalindua rubra","na":1,"nb":1,"a":[["TED%3AAF-A0A1E3XEX8-F1-model_v4_TED01","TED novel fold AF-A0A1E3XEX8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1872076","Candidatus Scalindua rubra"]]},{"id":"NCBITaxon:1872109","l":"Acidilobus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A6B2CP94-F1-model_v4_TED01","TED novel fold AF-A0A6B2CP94-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1872109","Acidilobus sp."]]},{"id":"NCBITaxon:1872119","l":"Acidobacterium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2G4JIL1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2G4JIL1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1872119","Acidobacterium sp."]]},{"id":"NCBITaxon:1872399","l":"Aeropyrum sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A832FSN2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A832FSN2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1872399","Aeropyrum sp."]]},{"id":"NCBITaxon:1872437","l":"Alicycliphilus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A5C8C4W8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5C8C4W8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1872437","Alicycliphilus sp."]]},{"id":"NCBITaxon:1872442","l":"Aliiroseovarius sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7C5GKH2-F1-model_v4_TED01","TED novel fold AF-A0A7C5GKH2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1872442","Aliiroseovarius sp."]]},{"id":"NCBITaxon:1872444","l":"Alistipes sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A358LZJ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A358LZJ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1872444","Alistipes sp."]]},{"id":"NCBITaxon:1872532","l":"Anaerovibrio sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A3D4AM55-F1-model_v4_TED01","TED novel fold AF-A0A3D4AM55-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1872532","Anaerovibrio sp."]]},{"id":"NCBITaxon:187303","l":"Methylocystis hydrogenophila","na":1,"nb":1,"a":[["TED%3AAF-J7QPR6-F1-model_v4_TED01","TED novel fold AF-J7QPR6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A187303","Methylocystis hydrogenophila"]]},{"id":"NCBITaxon:1873464","l":"Micromonosporaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A3D5AGM4-F1-model_v4_TED01","TED novel fold AF-A0A3D5AGM4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1873464","Micromonosporaceae bacterium"]]},{"id":"NCBITaxon:1873524","l":"Halodesulfurarchaeum formicicum","na":1,"nb":1,"a":[["TED%3AAF-A0A1J1ABB1-F1-model_v4_TED01","TED novel fold AF-A0A1J1ABB1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1873524","Halodesulfurarchaeum formicicum"]]},{"id":"NCBITaxon:1873897","l":"Cupriavidus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A352SA47-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A352SA47-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1873897","Cupriavidus sp."]]},{"id":"NCBITaxon:1874317","l":"Marinobacter salinus","na":1,"nb":1,"a":[["TED%3AAF-A0A1D9GM66-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1D9GM66-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1874317","Marinobacter salinus"]]},{"id":"NCBITaxon:1874361","l":"Idiomarina sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2E9H521-F1-model_v4_TED01","TED novel fold AF-A0A2E9H521-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1874361","Idiomarina sp."]]},{"id":"NCBITaxon:1874629","l":"Thermodesulfatator sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7C3GMU6-F1-model_v4_TED02","TED novel fold AF-A0A7C3GMU6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1874629","Thermodesulfatator sp."]]},{"id":"NCBITaxon:1874826","l":"Novosphingobium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A3D1P3T8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D1P3T8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1874826","Novosphingobium sp."]]},{"id":"NCBITaxon:1879050","l":"Acinetobacter wuhouensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q7AIW8-F1-model_v4_TED01","TED novel fold AF-A0A4Q7AIW8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1879050","Acinetobacter wuhouensis"]]},{"id":"NCBITaxon:1880849","l":"Vibrio sp. 10N.261.52.A1","na":1,"nb":1,"a":[["TED%3AAF-A0A2N7IPL4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N7IPL4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1880849","Vibrio sp. 10N.261.52.A1"]]},{"id":"NCBITaxon:1881035","l":"Mitsuaria sp. PDC51","na":1,"nb":1,"a":[["TED%3AAF-A0A1I6JG99-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I6JG99-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1881035","Mitsuaria sp. PDC51"]]},{"id":"NCBITaxon:1881037","l":"Rhodanobacter sp. OK091","na":1,"nb":1,"a":[["TED%3AAF-A0A1M7GY95-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M7GY95-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1881037","Rhodanobacter sp. OK091"]]},{"id":"NCBITaxon:1881038","l":"Duganella sp. CF517","na":1,"nb":1,"a":[["TED%3AAF-A0A1H8H966-F1-model_v4_TED01","TED novel fold AF-A0A1H8H966-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1881038","Duganella sp. CF517"]]},{"id":"NCBITaxon:1881049","l":"Mucilaginibacter sp. OK283","na":1,"nb":1,"a":[["TED%3AAF-A0A1H8XZP9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H8XZP9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1881049","Mucilaginibacter sp. OK283"]]},{"id":"NCBITaxon:1881060","l":"Clostridium sp. USBA 49","na":1,"nb":1,"a":[["TED%3AAF-A0A1T4XFS6-F1-model_v4_TED02","TED novel fold AF-A0A1T4XFS6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1881060","Clostridium sp. USBA 49"]]},{"id":"NCBITaxon:1882438","l":"Mucilaginibacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2J6H382-F1-model_v4_TED01","TED novel fold AF-A0A2J6H382-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1882438","Mucilaginibacter sp."]]},{"id":"NCBITaxon:1882735","l":"Methanosarcina sp. Ant1","na":1,"nb":1,"a":[["TED%3AAF-A0A1E7G8V2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E7G8V2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1882735","Methanosarcina sp. Ant1"]]},{"id":"NCBITaxon:1882750","l":"Burkholderia sp. GAS332","na":1,"nb":1,"a":[["TED%3AAF-A0A1N6LVR0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1N6LVR0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1882750","Burkholderia sp. GAS332"]]},{"id":"NCBITaxon:1882752","l":"Singulisphaera sp. GP187","na":1,"nb":1,"a":[["TED%3AAF-A0A1N6KHP4-F1-model_v4_TED02","TED novel fold AF-A0A1N6KHP4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1882752","Singulisphaera sp. GP187"]]},{"id":"NCBITaxon:1882755","l":"Pseudomonas sp. BS3759","na":1,"nb":1,"a":[["TED%3AAF-A0A1H0LFG3-F1-model_v4_TED03","TED novel fold AF-A0A1H0LFG3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1882755","Pseudomonas sp. BS3759"]]},{"id":"NCBITaxon:1882770","l":"Streptomyces sp. OK885","na":1,"nb":1,"a":[["TED%3AAF-A0A2N3ZZI5-F1-model_v4_TED01","TED novel fold AF-A0A2N3ZZI5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1882770","Streptomyces sp. OK885"]]},{"id":"NCBITaxon:1882814","l":"Rhodococcus sp. OK270","na":1,"nb":1,"a":[["TED%3AAF-A0A285DXY5-F1-model_v4_TED01","TED novel fold AF-A0A285DXY5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1882814","Rhodococcus sp. OK270"]]},{"id":"NCBITaxon:1882832","l":"Paenibacillaceae bacterium GAS479","na":1,"nb":1,"a":[["TED%3AAF-A0A1H1ZWX8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H1ZWX8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1882832","Paenibacillaceae bacterium GAS479"]]},{"id":"NCBITaxon:1882918","l":"Pajaroellobacter abortibovis","na":1,"nb":1,"a":[["TED%3AAF-A0A1L6MVB8-F1-model_v4_TED03","TED novel fold AF-A0A1L6MVB8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1882918","Pajaroellobacter abortibovis"]]},{"id":"NCBITaxon:1883156","l":"Winogradskyella sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A848UQ47-F1-model_v4_TED01","TED novel fold AF-A0A848UQ47-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1883156","Winogradskyella sp."]]},{"id":"NCBITaxon:1883416","l":"Halomonas sp. 1513","na":1,"nb":1,"a":[["TED%3AAF-A0A1P8R790-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1P8R790-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1883416","Halomonas sp. 1513"]]},{"id":"NCBITaxon:1884311","l":"Variovorax sp. OK202","na":1,"nb":1,"a":[["TED%3AAF-A0A1H7ES98-F1-model_v4_TED01","TED novel fold AF-A0A1H7ES98-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1884311","Variovorax sp. OK202"]]},{"id":"NCBITaxon:1884368","l":"Duganella sp. CF458","na":1,"nb":1,"a":[["TED%3AAF-A0A1I2WJF2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I2WJF2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1884368","Duganella sp. CF458"]]},{"id":"NCBITaxon:1884369","l":"Sphingobium sp. AP50","na":1,"nb":1,"a":[["TED%3AAF-A0A1H7DSH5-F1-model_v4_TED02","TED novel fold AF-A0A1H7DSH5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1884369","Sphingobium sp. AP50"]]},{"id":"NCBITaxon:1884375","l":"Paenibacillus sp. PDC88","na":1,"nb":1,"a":[["TED%3AAF-A0A1H2UHZ1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H2UHZ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1884375","Paenibacillus sp. PDC88"]]},{"id":"NCBITaxon:1884377","l":"Paenibacillus sp. OV219","na":1,"nb":1,"a":[["TED%3AAF-A0A1H8HIB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H8HIB4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1884377","Paenibacillus sp. OV219"]]},{"id":"NCBITaxon:1884656","l":"Candidatus Parepulonipiscium sp. PG-Nuni2H_MBin01","na":1,"nb":1,"a":[["TED%3AAF-A0A1V2YJ98-F1-model_v4_TED02","TED novel fold AF-A0A1V2YJ98-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1884656","Candidatus Parepulonipiscium sp. PG-Nuni2H_MBin01"]]},{"id":"NCBITaxon:1884657","l":"Candidatus Parepulonipiscium sp. PG-Nun2H_MBin03","na":1,"nb":1,"a":[["TED%3AAF-A0A1V2YCI7-F1-model_v4_TED03","TED novel fold AF-A0A1V2YCI7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1884657","Candidatus Parepulonipiscium sp. PG-Nun2H_MBin03"]]},{"id":"NCBITaxon:1884791","l":"Euhalothece sp. KZN 001","na":1,"nb":1,"a":[["TED%3AAF-A0A2K3BS64-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2K3BS64-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1884791","Euhalothece sp. KZN 001"]]},{"id":"NCBITaxon:1884913","l":"Candidatus Planktophila lacus","na":1,"nb":1,"a":[["TED%3AAF-A0A249LJY0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A249LJY0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1884913","Candidatus Planktophila lacus"]]},{"id":"NCBITaxon:1885016","l":"Rothia sp. (in: high G+C Gram-positive bacteria)","na":1,"nb":1,"a":[["TED%3AAF-A0A3D3LXD1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D3LXD1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1885016","Rothia sp. (in: high G+C Gram-positive bacteria)"]]},{"id":"NCBITaxon:1888168","l":"Curvibacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A433BGD3-F1-model_v4_TED01","TED novel fold AF-A0A433BGD3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1888168","Curvibacter sp."]]},{"id":"NCBITaxon:188906","l":"Jannaschia helgolandensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1H7MIC2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H7MIC2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A188906","Jannaschia helgolandensis"]]},{"id":"NCBITaxon:1889770","l":"Thioclava sp. SK-1","na":1,"nb":1,"a":[["TED%3AAF-A0A1C2HJ00-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1C2HJ00-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1889770","Thioclava sp. SK-1"]]},{"id":"NCBITaxon:1889780","l":"Gaetbulibacter sp. 5U11","na":1,"nb":1,"a":[["TED%3AAF-A0A7Z1RBL4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Z1RBL4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1889780","Gaetbulibacter sp. 5U11"]]},{"id":"NCBITaxon:1890295","l":"Pseudoduganella danionis","na":1,"nb":1,"a":[["TED%3AAF-A0A6A8VX57-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6A8VX57-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1890295","Pseudoduganella danionis"]]},{"id":"NCBITaxon:1890675","l":"Herbaspirillum sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2E7PAN6-F1-model_v4_TED02","TED novel fold AF-A0A2E7PAN6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1890675","Herbaspirillum sp."]]},{"id":"NCBITaxon:1891280","l":"Saccharolobus sp. A20","na":1,"nb":1,"a":[["TED%3AAF-A0A1C8ZU42-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C8ZU42-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1891280","Saccharolobus sp. A20"]]},{"id":"NCBITaxon:1891921","l":"Piscirickettsia litoralis","na":1,"nb":1,"a":[["TED%3AAF-A0A1E3G997-F1-model_v4_TED01","TED novel fold AF-A0A1E3G997-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1891921","Piscirickettsia litoralis"]]},{"id":"NCBITaxon:1892852","l":"Solihabitans fulvus","na":1,"nb":1,"a":[["TED%3AAF-A0A5B2XST0-F1-model_v4_TED04","TED novel fold AF-A0A5B2XST0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1892852","Solihabitans fulvus"]]},{"id":"NCBITaxon:1894970","l":"Micromonospora musae","na":1,"nb":1,"a":[["TED%3AAF-A0A3A9Y0G1-F1-model_v4_TED03","TED novel fold AF-A0A3A9Y0G1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1894970","Micromonospora musae"]]},{"id":"NCBITaxon:189518","l":"Leptospira interrogans serovar Lai str. 56601","na":1,"nb":1,"a":[["Pfam%3APF27429","LB_356"]],"b":[["NCBITaxon%3A189518","Leptospira interrogans serovar Lai str. 56601"]]},{"id":"NCBITaxon:1895721","l":"Bacteroidia bacterium 44-10","na":1,"nb":1,"a":[["TED%3AAF-A0A1M3FSU7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M3FSU7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895721","Bacteroidia bacterium 44-10"]]},{"id":"NCBITaxon:1895735","l":"Caedibacter sp. 37-49","na":1,"nb":1,"a":[["TED%3AAF-A0A1M3J316-F1-model_v4_TED01","TED novel fold AF-A0A1M3J316-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895735","Caedibacter sp. 37-49"]]},{"id":"NCBITaxon:1895737","l":"Caulobacterales bacterium 68-7","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q3JHD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3JHD6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895737","Caulobacterales bacterium 68-7"]]},{"id":"NCBITaxon:1895742","l":"Chlamydia sp. 32-24","na":1,"nb":1,"a":[["TED%3AAF-A0A1M3B8J9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M3B8J9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895742","Chlamydia sp. 32-24"]]},{"id":"NCBITaxon:1895784","l":"Microbacterium sp. 69-7","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q3LD51-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3LD51-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895784","Microbacterium sp. 69-7"]]},{"id":"NCBITaxon:1895791","l":"Micrococcales bacterium 73-13","na":1,"nb":1,"a":[["TED%3AAF-A0A1M3LG94-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M3LG94-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895791","Micrococcales bacterium 73-13"]]},{"id":"NCBITaxon:1895807","l":"Planctomycetales bacterium 71-10","na":1,"nb":1,"a":[["TED%3AAF-A0A1U7GL33-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1U7GL33-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1895807","Planctomycetales bacterium 71-10"]]},{"id":"NCBITaxon:1895810","l":"Rhizobiales bacterium 62-17","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q4B9D3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q4B9D3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1895810","Rhizobiales bacterium 62-17"]]},{"id":"NCBITaxon:1895832","l":"Solirubrobacterales bacterium 67-14","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q3NGI6-F1-model_v4_TED01","TED novel fold AF-A0A1Q3NGI6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895832","Solirubrobacterales bacterium 67-14"]]},{"id":"NCBITaxon:1895841","l":"Sphingobacteriales bacterium 50-39","na":1,"nb":1,"a":[["TED%3AAF-A0A1M3HFF3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M3HFF3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895841","Sphingobacteriales bacterium 50-39"]]},{"id":"NCBITaxon:1895843","l":"Sphingobacterium sp. 40-24","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q4G9U7-F1-model_v4_TED01","TED novel fold AF-A0A1Q4G9U7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895843","Sphingobacterium sp. 40-24"]]},{"id":"NCBITaxon:1895845","l":"Sphingobium sp. 66-54","na":1,"nb":1,"a":[["TED%3AAF-A0A1M3PTQ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M3PTQ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895845","Sphingobium sp. 66-54"]]},{"id":"NCBITaxon:1895854","l":"Spirosoma sp. 48-14","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q3WWG0-F1-model_v4_TED01","TED novel fold AF-A0A1Q3WWG0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895854","Spirosoma sp. 48-14"]]},{"id":"NCBITaxon:1895866","l":"Verrucomicrobia bacterium 61-8","na":1,"nb":1,"a":[["TED%3AAF-A0A1M3CGR7-F1-model_v4_TED03","TED novel fold AF-A0A1M3CGR7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1895866","Verrucomicrobia bacterium 61-8"]]},{"id":"NCBITaxon:1895869","l":"Lysobacterales bacterium 69-70","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q4FQH4-F1-model_v4_TED01","TED novel fold AF-A0A1Q4FQH4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1895869","Lysobacterales bacterium 69-70"]]},{"id":"NCBITaxon:1895921","l":"Bacteroidetes bacterium 37-13","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q3Q800-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q3Q800-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1895921","Bacteroidetes bacterium 37-13"]]},{"id":"NCBITaxon:1895922","l":"Bacteroidetes bacterium 41-46","na":1,"nb":1,"a":[["TED%3AAF-A0A1M3CYM1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M3CYM1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1895922","Bacteroidetes bacterium 41-46"]]},{"id":"NCBITaxon:1895927","l":"Chloroflexi bacterium 44-23","na":1,"nb":1,"a":[["TED%3AAF-A0A1M3K0J8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1M3K0J8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1895927","Chloroflexi bacterium 44-23"]]},{"id":"NCBITaxon:1896175","l":"Polaribacter sp. KT 15","na":1,"nb":1,"a":[["TED%3AAF-A0A1M7MCC0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M7MCC0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1896175","Polaribacter sp. KT 15"]]},{"id":"NCBITaxon:1896196","l":"Porphyrobacter sp. LM 6","na":1,"nb":1,"a":[["TED%3AAF-A0A1D7NP70-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1D7NP70-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1896196","Porphyrobacter sp. LM 6"]]},{"id":"NCBITaxon:1896207","l":"Fibrobacter sp. UWB8","na":1,"nb":1,"a":[["TED%3AAF-A0A1M5KSJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M5KSJ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1896207","Fibrobacter sp. UWB8"]]},{"id":"NCBITaxon:1896217","l":"Fibrobacter sp. UWR3","na":1,"nb":1,"a":[["TED%3AAF-A0A1M7GJB3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M7GJB3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1896217","Fibrobacter sp. UWR3"]]},{"id":"NCBITaxon:1896224","l":"Fibrobacter sp. UWT2","na":1,"nb":1,"a":[["TED%3AAF-A0A1M6UY53-F1-model_v4_TED01","TED novel fold AF-A0A1M6UY53-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1896224","Fibrobacter sp. UWT2"]]},{"id":"NCBITaxon:1896225","l":"Fibrobacter sp. UWT3","na":1,"nb":1,"a":[["TED%3AAF-A0A2C8YRE3-F1-model_v4_TED04","TED novel fold AF-A0A2C8YRE3-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1896225","Fibrobacter sp. UWT3"]]},{"id":"NCBITaxon:1896965","l":"Acetobacter sp. 46_36","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6T0X6-F1-model_v4_TED01","TED novel fold AF-A0A1Q6T0X6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1896965","Acetobacter sp. 46_36"]]},{"id":"NCBITaxon:1896966","l":"Acinetobacter sp. CAG:196_36_41","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6TS89-F1-model_v4_TED01","TED novel fold AF-A0A1Q6TS89-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1896966","Acinetobacter sp. CAG:196_36_41"]]},{"id":"NCBITaxon:1896975","l":"Bacteroides sp. CAG:1060_57_27","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6FT72-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q6FT72-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1896975","Bacteroides sp. CAG:1060_57_27"]]},{"id":"NCBITaxon:1896977","l":"Clostridium sp. 26_21","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6JX10-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q6JX10-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1896977","Clostridium sp. 26_21"]]},{"id":"NCBITaxon:1896980","l":"Clostridium sp. 28_12","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6KK16-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q6KK16-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1896980","Clostridium sp. 28_12"]]},{"id":"NCBITaxon:1896986","l":"Clostridium sp. CAG:245_30_32","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6M2W2-F1-model_v4_TED01","TED novel fold AF-A0A1Q6M2W2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1896986","Clostridium sp. CAG:245_30_32"]]},{"id":"NCBITaxon:1896987","l":"Clostridium sp. CAG:307_30_263","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6M635-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q6M635-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1896987","Clostridium sp. CAG:307_30_263"]]},{"id":"NCBITaxon:1896990","l":"Clostridium sp. CAG:62_40_43","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6N734-F1-model_v4_TED01","TED novel fold AF-A0A1Q6N734-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1896990","Clostridium sp. CAG:62_40_43"]]},{"id":"NCBITaxon:1896994","l":"Coprobacillus sp. 28_7","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6NNT5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q6NNT5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1896994","Coprobacillus sp. 28_7"]]},{"id":"NCBITaxon:1896997","l":"Coprococcus sp. CAG:131_42_139","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6MJS1-F1-model_v4_TED02","TED novel fold AF-A0A1Q6MJS1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1896997","Coprococcus sp. CAG:131_42_139"]]},{"id":"NCBITaxon:1897001","l":"Eubacterium sp. 36_13","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6MB21-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q6MB21-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1897001","Eubacterium sp. 36_13"]]},{"id":"NCBITaxon:1897015","l":"Roseburia sp. 40_7","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6UNK1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q6UNK1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1897015","Roseburia sp. 40_7"]]},{"id":"NCBITaxon:1897019","l":"Ruminococcus sp. 37_24","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6TD62-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q6TD62-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1897019","Ruminococcus sp. 37_24"]]},{"id":"NCBITaxon:1897034","l":"Firmicutes bacterium CAG:321_26_22","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6QXA8-F1-model_v4_TED01","TED novel fold AF-A0A1Q6QXA8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1897034","Firmicutes bacterium CAG:321_26_22"]]},{"id":"NCBITaxon:1897036","l":"Firmicutes bacterium CAG:65_45_313","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6SHB6-F1-model_v4_TED02","TED novel fold AF-A0A1Q6SHB6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1897036","Firmicutes bacterium CAG:65_45_313"]]},{"id":"NCBITaxon:1897037","l":"Firmicutes bacterium CAG_194_44_15","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6QLJ3-F1-model_v4_TED01","TED novel fold AF-A0A1Q6QLJ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1897037","Firmicutes bacterium CAG_194_44_15"]]},{"id":"NCBITaxon:1897038","l":"Bacteroidales bacterium 43_36","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6F6W6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q6F6W6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1897038","Bacteroidales bacterium 43_36"]]},{"id":"NCBITaxon:1897040","l":"Bacteroidales bacterium 52_46","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6ECH6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q6ECH6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1897040","Bacteroidales bacterium 52_46"]]},{"id":"NCBITaxon:1897041","l":"Bacteroidales bacterium 55_9","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6ER29-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Q6ER29-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1897041","Bacteroidales bacterium 55_9"]]},{"id":"NCBITaxon:1897620","l":"Marinobacter sp. X15-166B","na":1,"nb":1,"a":[["TED%3AAF-A0A1E7PXU9-F1-model_v4_TED02","TED novel fold AF-A0A1E7PXU9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1897620","Marinobacter sp. X15-166B"]]},{"id":"NCBITaxon:1897630","l":"Motiliproteus sp. MSK22-1","na":1,"nb":1,"a":[["TED%3AAF-A0A1R1LDJ1-F1-model_v4_TED02","TED novel fold AF-A0A1R1LDJ1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1897630","Motiliproteus sp. MSK22-1"]]},{"id":"NCBITaxon:1898105","l":"Paludibacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A6I3N567-F1-model_v4_TED01","TED novel fold AF-A0A6I3N567-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1898105","Paludibacter sp."]]},{"id":"NCBITaxon:1898113","l":"Idiomarinaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A2E4ZCZ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4ZCZ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1898113","Idiomarinaceae bacterium"]]},{"id":"NCBITaxon:189873","l":"Bradyrhizobium sp. LMTR 3","na":1,"nb":1,"a":[["TED%3AAF-A0A1B9YKW8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B9YKW8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A189873","Bradyrhizobium sp. LMTR 3"]]},{"id":"NCBITaxon:1898978","l":"Hymenobacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A519UC12-F1-model_v4_TED02","TED novel fold AF-A0A519UC12-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1898978","Hymenobacter sp."]]},{"id":"NCBITaxon:189918","l":"Mycobacterium sp. KMS","na":1,"nb":1,"a":[["Pfam%3APF06339","Ectoine synthase"]],"b":[["NCBITaxon%3A189918","Mycobacterium sp. KMS"]]},{"id":"NCBITaxon:1899563","l":"Candidatus Venteria ishoeyi","na":1,"nb":1,"a":[["TED%3AAF-A0A1H6FHC1-F1-model_v4_TED02","TED novel fold AF-A0A1H6FHC1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1899563","Candidatus Venteria ishoeyi"]]},{"id":"NCBITaxon:190195","l":"Kribbella antibiotica","na":1,"nb":1,"a":[["TED%3AAF-A0A4R4YYU0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R4YYU0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A190195","Kribbella antibiotica"]]},{"id":"NCBITaxon:190386","l":"Agrobacterium tumefaciens (strain 15955)","na":1,"nb":1,"a":[["Pfam%3APF19443","DAHL domain"]],"b":[["NCBITaxon%3A190386","Agrobacterium tumefaciens (strain 15955)"]]},{"id":"NCBITaxon:1904462","l":"Stenotrophomonas sp. BIIR7","na":1,"nb":1,"a":[["TED%3AAF-A0A1E7RPY0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E7RPY0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1904462","Stenotrophomonas sp. BIIR7"]]},{"id":"NCBITaxon:1904757","l":"Burkholderia puraquae","na":1,"nb":1,"a":[["TED%3AAF-A0A1X1PMY2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X1PMY2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1904757","Burkholderia puraquae"]]},{"id":"NCBITaxon:1904863","l":"Micrococcaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A851HKR4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A851HKR4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1904863","Micrococcaceae bacterium"]]},{"id":"NCBITaxon:1904962","l":"Corynebacterium sp. CNJ-954","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q9VKJ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q9VKJ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1904962","Corynebacterium sp. CNJ-954"]]},{"id":"NCBITaxon:1904966","l":"Ornithinimicrobium sp. CNJ-824","na":1,"nb":1,"a":[["TED%3AAF-A0A1U7MPL4-F1-model_v4_TED02","TED novel fold AF-A0A1U7MPL4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1904966","Ornithinimicrobium sp. CNJ-824"]]},{"id":"NCBITaxon:1904967","l":"Pseudonocardia sp. CNS-004","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q9RYV1-F1-model_v4_TED01","TED novel fold AF-A0A1Q9RYV1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1904967","Pseudonocardia sp. CNS-004"]]},{"id":"NCBITaxon:1905142","l":"Amycolatopsis vastitatis","na":1,"nb":1,"a":[["TED%3AAF-A0A229SUX4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A229SUX4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1905142","Amycolatopsis vastitatis"]]},{"id":"NCBITaxon:1905289","l":"Rhodococcus sp. 1163","na":1,"nb":1,"a":[["TED%3AAF-A0A1X0U5H7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X0U5H7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1905289","Rhodococcus sp. 1163"]]},{"id":"NCBITaxon:1905359","l":"marine bacterium AO1-C","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q3GHF7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3GHF7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1905359","marine bacterium AO1-C"]]},{"id":"NCBITaxon:1905676","l":"Glaciecola sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A348MZQ3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A348MZQ3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1905676","Glaciecola sp."]]},{"id":"NCBITaxon:1906667","l":"Methanomassiliicoccales archaeon","na":1,"nb":1,"a":[["TED%3AAF-A0A523YEA2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A523YEA2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1906667","Methanomassiliicoccales archaeon"]]},{"id":"NCBITaxon:1906740","l":"Streptomyces sp. CC53","na":1,"nb":1,"a":[["TED%3AAF-A0A1S2K907-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S2K907-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1906740","Streptomyces sp. CC53"]]},{"id":"NCBITaxon:1907121","l":"Candidatus Rickettsia muridii","na":1,"nb":1,"a":[["TED%3AAF-A0A2H4FH04-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H4FH04-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1907121","Candidatus Rickettsia muridii"]]},{"id":"NCBITaxon:1907202","l":"Roseobacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2E9YXC7-F1-model_v4_TED01","TED novel fold AF-A0A2E9YXC7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1907202","Roseobacter sp."]]},{"id":"NCBITaxon:1907219","l":"Piptocephalis cylindrospora","na":1,"nb":1,"a":[["TED%3AAF-A0A4P9Y4Y0-F1-model_v4_TED02","TED novel fold AF-A0A4P9Y4Y0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1907219","Piptocephalis cylindrospora"]]},{"id":"NCBITaxon:1907403","l":"Pseudacidovorax sp. RU35E","na":1,"nb":1,"a":[["TED%3AAF-A0A1N6WQ52-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1N6WQ52-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1907403","Pseudacidovorax sp. RU35E"]]},{"id":"NCBITaxon:1907408","l":"Allobosea sp. TND4EK4","na":1,"nb":1,"a":[["TED%3AAF-A0A1N6S5V1-F1-model_v4_TED01","TED novel fold AF-A0A1N6S5V1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1907408","Allobosea sp. TND4EK4"]]},{"id":"NCBITaxon:1907413","l":"Rhizobium sp. RU33A","na":1,"nb":1,"a":[["TED%3AAF-A0A1N6PUX0-F1-model_v4_TED01","TED novel fold AF-A0A1N6PUX0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1907413","Rhizobium sp. RU33A"]]},{"id":"NCBITaxon:1907575","l":"Jatrophihabitans sp. GAS493","na":1,"nb":1,"a":[["TED%3AAF-A0A286EQ27-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A286EQ27-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1907575","Jatrophihabitans sp. GAS493"]]},{"id":"NCBITaxon:1908224","l":"Sphingopyxis sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2G2D229-F1-model_v4_TED01","TED novel fold AF-A0A2G2D229-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1908224","Sphingopyxis sp."]]},{"id":"NCBITaxon:1908236","l":"Hymenobacter glacialis","na":1,"nb":1,"a":[["TED%3AAF-A0A1G1T1A8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G1T1A8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1908236","Hymenobacter glacialis"]]},{"id":"NCBITaxon:1908241","l":"Pedobacter petrophilus","na":1,"nb":1,"a":[["TED%3AAF-A0A7K0G656-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K0G656-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1908241","Pedobacter petrophilus"]]},{"id":"NCBITaxon:1909299","l":"Blastomonas sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2D6H5R0-F1-model_v4_TED03","TED novel fold AF-A0A2D6H5R0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1909299","Blastomonas sp."]]},{"id":"NCBITaxon:1910","l":"Streptomyces griseosporeus","na":1,"nb":1,"a":[["Pfam%3APF01356","Alpha amylase inhibitor"]],"b":[["NCBITaxon%3A1910","Streptomyces griseosporeus"]]},{"id":"NCBITaxon:1910957","l":"Synechococcus sp. Lanier","na":1,"nb":1,"a":[["TED%3AAF-A0A251Z8Q7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A251Z8Q7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1910957","Synechococcus sp. Lanier"]]},{"id":"NCBITaxon:1911175","l":"Amycolatopsis sp. BJA-103","na":1,"nb":1,"a":[["TED%3AAF-A0A2N8MN42-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2N8MN42-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1911175","Amycolatopsis sp. BJA-103"]]},{"id":"NCBITaxon:1911683","l":"Tenericutes bacterium MZ-XQ","na":1,"nb":1,"a":[["TED%3AAF-A0A2K9AA77-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2K9AA77-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1911683","Tenericutes bacterium MZ-XQ"]]},{"id":"NCBITaxon:1911685","l":"Methanobacterium sp. MZ-A1","na":1,"nb":1,"a":[["TED%3AAF-A0A2H4VJL3-F1-model_v4_TED01","TED novel fold AF-A0A2H4VJL3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1911685","Methanobacterium sp. MZ-A1"]]},{"id":"NCBITaxon:1912246","l":"Seonamhaeicola marinus","na":1,"nb":1,"a":[["TED%3AAF-A0A5D0HN32-F1-model_v4_TED02","TED novel fold AF-A0A5D0HN32-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1912246","Seonamhaeicola marinus"]]},{"id":"NCBITaxon:1913460","l":"Candidatus Melainabacteria bacterium LEY3_CP_29_8","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q6V040-F1-model_v4_TED01","TED novel fold AF-A0A1Q6V040-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1913460","Candidatus Melainabacteria bacterium LEY3_CP_29_8"]]},{"id":"NCBITaxon:191390","l":"Pseudomonas palleroniana","na":1,"nb":1,"a":[["TED%3AAF-A0A1H5NR40-F1-model_v4_TED01","TED novel fold AF-A0A1H5NR40-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A191390","Pseudomonas palleroniana"]]},{"id":"NCBITaxon:191391","l":"Pseudomonas salomonii","na":1,"nb":1,"a":[["TED%3AAF-A0A3M4QF91-F1-model_v4_TED04","TED novel fold AF-A0A3M4QF91-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A191391","Pseudomonas salomonii"]]},{"id":"NCBITaxon:1914242","l":"Gemmata sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7C1PH33-F1-model_v4_TED03","TED novel fold AF-A0A7C1PH33-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1914242","Gemmata sp."]]},{"id":"NCBITaxon:1914243","l":"Citrobacter europaeus","na":1,"nb":1,"a":[["TED%3AAF-A0A811XLH7-F1-model_v4_TED03","TED novel fold AF-A0A811XLH7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1914243","Citrobacter europaeus"]]},{"id":"NCBITaxon:1914409","l":"Salibaculum griseiflavum","na":1,"nb":1,"a":[["TED%3AAF-A0A2V1P9V2-F1-model_v4_TED01","TED novel fold AF-A0A2V1P9V2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1914409","Salibaculum griseiflavum"]]},{"id":"NCBITaxon:1914755","l":"Nocardioides thalensis","na":1,"nb":1,"a":[["TED%3AAF-A0A853C687-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A853C687-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1914755","Nocardioides thalensis"]]},{"id":"NCBITaxon:1914933","l":"Siminovitchia terrae","na":1,"nb":1,"a":[["TED%3AAF-A0A429X9P4-F1-model_v4_TED03","TED novel fold AF-A0A429X9P4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1914933","Siminovitchia terrae"]]},{"id":"NCBITaxon:1915004","l":"Streptococcus sp. 'caviae'","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q8RKH2-F1-model_v4_TED01","TED novel fold AF-A0A1Q8RKH2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1915004","Streptococcus sp. 'caviae'"]]},{"id":"NCBITaxon:1916068","l":"Methylococcaceae bacterium CS3","na":1,"nb":1,"a":[["TED%3AAF-A0A6I7WL18-F1-model_v4_TED01","TED novel fold AF-A0A6I7WL18-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1916068","Methylococcaceae bacterium CS3"]]},{"id":"NCBITaxon:1916216","l":"Candidatus Gastranaerophilales bacterium HUM_11","na":1,"nb":1,"a":[["TED%3AAF-A0A292RNI7-F1-model_v4_TED01","TED novel fold AF-A0A292RNI7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1916216","Candidatus Gastranaerophilales bacterium HUM_11"]]},{"id":"NCBITaxon:1916217","l":"Candidatus Gastranaerophilales bacterium HUM_3","na":1,"nb":1,"a":[["TED%3AAF-A0A292QPX9-F1-model_v4_TED02","TED novel fold AF-A0A292QPX9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1916217","Candidatus Gastranaerophilales bacterium HUM_3"]]},{"id":"NCBITaxon:1916231","l":"Candidatus Gastranaerophilales bacterium HUM_18","na":1,"nb":1,"a":[["TED%3AAF-A0A292S444-F1-model_v4_TED02","TED novel fold AF-A0A292S444-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1916231","Candidatus Gastranaerophilales bacterium HUM_18"]]},{"id":"NCBITaxon:1917166","l":"Parathermosynechococcus lividus PCC 6715","na":1,"nb":1,"a":[["TED%3AAF-A0A2D2Q459-F1-model_v4_TED01","TED novel fold AF-A0A2D2Q459-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1917166","Parathermosynechococcus lividus PCC 6715"]]},{"id":"NCBITaxon:1917525","l":"Sporomusaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A402BN05-F1-model_v4_TED01","TED novel fold AF-A0A402BN05-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1917525","Sporomusaceae bacterium"]]},{"id":"NCBITaxon:1917820","l":"Leptospira johnsonii","na":1,"nb":1,"a":[["TED%3AAF-A0A2P2D2G2-F1-model_v4_TED02","TED novel fold AF-A0A2P2D2G2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1917820","Leptospira johnsonii"]]},{"id":"NCBITaxon:1918945","l":"Vibrio spartinae","na":1,"nb":1,"a":[["TED%3AAF-A0A7D8BB99-F1-model_v4_TED01","TED novel fold AF-A0A7D8BB99-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1918945","Vibrio spartinae"]]},{"id":"NCBITaxon:1919086","l":"Actinobacteria bacterium QS_8_72_14","na":1,"nb":1,"a":[["TED%3AAF-A0A2T2RB21-F1-model_v4_TED01","TED novel fold AF-A0A2T2RB21-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1919086","Actinobacteria bacterium QS_8_72_14"]]},{"id":"NCBITaxon:1919126","l":"Cyanobacteria bacterium QH_9_48_43","na":1,"nb":1,"a":[["TED%3AAF-A0A2T2RLN8-F1-model_v4_TED03","TED novel fold AF-A0A2T2RLN8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1919126","Cyanobacteria bacterium QH_9_48_43"]]},{"id":"NCBITaxon:1919144","l":"Cyanobacteria bacterium SW_9_44_58","na":1,"nb":1,"a":[["TED%3AAF-A0A2T2R716-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2T2R716-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1919144","Cyanobacteria bacterium SW_9_44_58"]]},{"id":"NCBITaxon:1919156","l":"Halobacteriales archaeon QH_6_68_27","na":1,"nb":1,"a":[["TED%3AAF-A0A2R6G3A4-F1-model_v4_TED01","TED novel fold AF-A0A2R6G3A4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1919156","Halobacteriales archaeon QH_6_68_27"]]},{"id":"NCBITaxon:1919158","l":"Halobacteriales archaeon QH_7_66_36","na":1,"nb":1,"a":[["TED%3AAF-A0A2R6ESL1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2R6ESL1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1919158","Halobacteriales archaeon QH_7_66_36"]]},{"id":"NCBITaxon:1919161","l":"Halobacteriales archaeon QH_7_69_31","na":1,"nb":1,"a":[["TED%3AAF-A0A2R6E5N7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2R6E5N7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1919161","Halobacteriales archaeon QH_7_69_31"]]},{"id":"NCBITaxon:1919167","l":"Halobacteriales archaeon QS_1_67_19","na":1,"nb":1,"a":[["TED%3AAF-A0A2R6EJB1-F1-model_v4_TED01","TED novel fold AF-A0A2R6EJB1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1919167","Halobacteriales archaeon QS_1_67_19"]]},{"id":"NCBITaxon:1919169","l":"Halobacteriales archaeon QS_1_68_20","na":1,"nb":1,"a":[["TED%3AAF-A0A2R6G619-F1-model_v4_TED01","TED novel fold AF-A0A2R6G619-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1919169","Halobacteriales archaeon QS_1_68_20"]]},{"id":"NCBITaxon:1919175","l":"Halobacteriales archaeon QS_4_69_225","na":1,"nb":1,"a":[["TED%3AAF-A0A2R6GE67-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2R6GE67-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1919175","Halobacteriales archaeon QS_4_69_225"]]},{"id":"NCBITaxon:1919177","l":"Halobacteriales archaeon QS_4_69_34","na":1,"nb":1,"a":[["TED%3AAF-A0A2R6HEC8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2R6HEC8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1919177","Halobacteriales archaeon QS_4_69_34"]]},{"id":"NCBITaxon:1919188","l":"Halobacteriales archaeon QS_8_69_73","na":1,"nb":1,"a":[["TED%3AAF-A0A2R6JPZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2R6JPZ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1919188","Halobacteriales archaeon QS_8_69_73"]]},{"id":"NCBITaxon:1919189","l":"Halobacteriales archaeon QS_9_67_15","na":1,"nb":1,"a":[["TED%3AAF-A0A2R6KHY7-F1-model_v4_TED02","TED novel fold AF-A0A2R6KHY7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1919189","Halobacteriales archaeon QS_9_67_15"]]},{"id":"NCBITaxon:1919201","l":"Halobacteriales archaeon SW_6_65_15","na":1,"nb":1,"a":[["TED%3AAF-A0A2R6M034-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2R6M034-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1919201","Halobacteriales archaeon SW_6_65_15"]]},{"id":"NCBITaxon:1919204","l":"Halobacteriales archaeon SW_7_68_16","na":1,"nb":1,"a":[["TED%3AAF-A0A2R6LXX7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2R6LXX7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1919204","Halobacteriales archaeon SW_7_68_16"]]},{"id":"NCBITaxon:1919224","l":"Parcubacteria group bacterium SW_4_46_8","na":1,"nb":1,"a":[["TED%3AAF-A0A2T2R4Y8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T2R4Y8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1919224","Parcubacteria group bacterium SW_4_46_8"]]},{"id":"NCBITaxon:1919232","l":"Thermoplasmatales archaeon SW_10_69_26","na":1,"nb":1,"a":[["TED%3AAF-A0A2P6VVV1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2P6VVV1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1919232","Thermoplasmatales archaeon SW_10_69_26"]]},{"id":"NCBITaxon:1920245","l":"Kangiella sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2G2KWK6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G2KWK6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1920245","Kangiella sp."]]},{"id":"NCBITaxon:1920421","l":"Paenibacillus sp. FSL H7-0331","na":1,"nb":1,"a":[["TED%3AAF-A0A1R1CAA1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1R1CAA1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1920421","Paenibacillus sp. FSL H7-0331"]]},{"id":"NCBITaxon:1920490","l":"Phormidesmis priestleyi ULC007","na":1,"nb":1,"a":[["TED%3AAF-A0A2T1DEI0-F1-model_v4_TED01","TED novel fold AF-A0A2T1DEI0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1920490","Phormidesmis priestleyi ULC007"]]},{"id":"NCBITaxon:1920889","l":"Arthrobacter sp. SW1","na":1,"nb":1,"a":[["TED%3AAF-A0A1E8FS11-F1-model_v4_TED01","TED novel fold AF-A0A1E8FS11-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1920889","Arthrobacter sp. SW1"]]},{"id":"NCBITaxon:1921","l":"Streptomyces olivaceoviridis","na":1,"nb":1,"a":[["Pfam%3APF01356","Alpha amylase inhibitor"]],"b":[["NCBITaxon%3A1921","Streptomyces olivaceoviridis"]]},{"id":"NCBITaxon:1923971","l":"Salinibacter sp. 10B","na":1,"nb":1,"a":[["TED%3AAF-A0A2P6C0S6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2P6C0S6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1923971","Salinibacter sp. 10B"]]},{"id":"NCBITaxon:1925020","l":"Bacillus swezeyi","na":1,"nb":1,"a":[["TED%3AAF-A0A1R1S0T5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1R1S0T5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1925020","Bacillus swezeyi"]]},{"id":"NCBITaxon:1925021","l":"Bacillus haynesii","na":1,"nb":1,"a":[["TED%3AAF-A0A1R1RXP1-F1-model_v4_TED01","TED novel fold AF-A0A1R1RXP1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1925021","Bacillus haynesii"]]},{"id":"NCBITaxon:1925591","l":"Roseofilum reptotaenium AO1-A","na":1,"nb":1,"a":[["TED%3AAF-A0A1L9QV17-F1-model_v4_TED03","TED novel fold AF-A0A1L9QV17-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1925591","Roseofilum reptotaenium AO1-A"]]},{"id":"NCBITaxon:1926630","l":"Pseudoblastomonas halimionae","na":1,"nb":1,"a":[["TED%3AAF-A0A6I4U4Z5-F1-model_v4_TED03","TED novel fold AF-A0A6I4U4Z5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1926630","Pseudoblastomonas halimionae"]]},{"id":"NCBITaxon:1927958","l":"Dyella monticola","na":1,"nb":1,"a":[["TED%3AAF-A0A370WRE3-F1-model_v4_TED03","TED novel fold AF-A0A370WRE3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1927958","Dyella monticola"]]},{"id":"NCBITaxon:1928574","l":"Aliidiomarina soli","na":1,"nb":1,"a":[["TED%3AAF-A0A432WGJ7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A432WGJ7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1928574","Aliidiomarina soli"]]},{"id":"NCBITaxon:1930276","l":"Adhaeretor mobilis","na":1,"nb":1,"a":[["TED%3AAF-A0A517MS66-F1-model_v4_TED02","TED novel fold AF-A0A517MS66-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1930276","Adhaeretor mobilis"]]},{"id":"NCBITaxon:1930277","l":"Rosistilla ulvae","na":1,"nb":1,"a":[["TED%3AAF-A0A517M701-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A517M701-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1930277","Rosistilla ulvae"]]},{"id":"NCBITaxon:1930536","l":"Sphingomonadaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A520X4L1-F1-model_v4_TED02","TED novel fold AF-A0A520X4L1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1930536","Sphingomonadaceae bacterium"]]},{"id":"NCBITaxon:1931228","l":"Christiangramia sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2D8KSS7-F1-model_v4_TED03","TED novel fold AF-A0A2D8KSS7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1931228","Christiangramia sp."]]},{"id":"NCBITaxon:1932","l":"Streptomyces tendae","na":1,"nb":1,"a":[["Pfam%3APF01356","Alpha amylase inhibitor"]],"b":[["NCBITaxon%3A1932","Streptomyces tendae"]]},{"id":"NCBITaxon:1932694","l":"bacterium F16","na":1,"nb":1,"a":[["TED%3AAF-A0A202DPI2-F1-model_v4_TED03","TED novel fold AF-A0A202DPI2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1932694","bacterium F16"]]},{"id":"NCBITaxon:1932698","l":"bacterium F11","na":1,"nb":1,"a":[["TED%3AAF-A0A202DHL9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A202DHL9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1932698","bacterium F11"]]},{"id":"NCBITaxon:1932703","l":"bacterium I07","na":1,"nb":1,"a":[["TED%3AAF-A0A202DS02-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A202DS02-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1932703","bacterium I07"]]},{"id":"NCBITaxon:1932778","l":"Mucilaginibacter limnophilus","na":1,"nb":1,"a":[["TED%3AAF-A0A3S2Y3R2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S2Y3R2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1932778","Mucilaginibacter limnophilus"]]},{"id":"NCBITaxon:1933219","l":"Diaphorobacter sp. LR2014-1","na":1,"nb":1,"a":[["TED%3AAF-A0A2S4KFX0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S4KFX0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1933219","Diaphorobacter sp. LR2014-1"]]},{"id":"NCBITaxon:1933880","l":"Glutamicibacter halophytocola","na":1,"nb":1,"a":[["TED%3AAF-A0A5B8IKN3-F1-model_v4_TED01","TED novel fold AF-A0A5B8IKN3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1933880","Glutamicibacter halophytocola"]]},{"id":"NCBITaxon:1933926","l":"Methylococcaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y4XTX6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y4XTX6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1933926","Methylococcaceae bacterium"]]},{"id":"NCBITaxon:1933929","l":"Synechocystis sp. CACIAM 05","na":1,"nb":1,"a":[["TED%3AAF-A0A6P1VJ80-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6P1VJ80-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1933929","Synechocystis sp. CACIAM 05"]]},{"id":"NCBITaxon:1934250","l":"Desulfobulbaceae bacterium A2","na":1,"nb":1,"a":[["TED%3AAF-A0A1W9M0B5-F1-model_v4_TED01","TED novel fold AF-A0A1W9M0B5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1934250","Desulfobulbaceae bacterium A2"]]},{"id":"NCBITaxon:1934251","l":"Verrucomicrobia bacterium A1","na":1,"nb":1,"a":[["TED%3AAF-A0A1W9LED0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W9LED0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1934251","Verrucomicrobia bacterium A1"]]},{"id":"NCBITaxon:1934309","l":"Alkalinema sp. CACIAM 70d","na":1,"nb":1,"a":[["TED%3AAF-A0A251W9I5-F1-model_v4_TED01","TED novel fold AF-A0A251W9I5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1934309","Alkalinema sp. CACIAM 70d"]]},{"id":"NCBITaxon:1934400","l":"Pseudorhodobacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A5C7U5I6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C7U5I6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1934400","Pseudorhodobacter sp."]]},{"id":"NCBITaxon:1936029","l":"Mycobacterium sp. MS1601","na":1,"nb":1,"a":[["TED%3AAF-A0A1P8XC76-F1-model_v4_TED01","TED novel fold AF-A0A1P8XC76-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1936029","Mycobacterium sp. MS1601"]]},{"id":"NCBITaxon:1936990","l":"Nitrospira sp. KM1","na":1,"nb":1,"a":[["TED%3AAF-A0A679I6E2-F1-model_v4_TED01","TED novel fold AF-A0A679I6E2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1936990","Nitrospira sp. KM1"]]},{"id":"NCBITaxon:1938607","l":"Sphingomonas sp. LM7","na":1,"nb":1,"a":[["TED%3AAF-A0A1S6FPE2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S6FPE2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1938607","Sphingomonas sp. LM7"]]},{"id":"NCBITaxon:1938609","l":"Flavobacterium sp. LM4","na":1,"nb":1,"a":[["TED%3AAF-A0A1T1BT57-F1-model_v4_TED01","TED novel fold AF-A0A1T1BT57-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1938609","Flavobacterium sp. LM4"]]},{"id":"NCBITaxon:1938619","l":"Thalassoglobus neptunius","na":1,"nb":1,"a":[["TED%3AAF-A0A5C5WLP6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C5WLP6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1938619","Thalassoglobus neptunius"]]},{"id":"NCBITaxon:1938744","l":"Bacillus sp. V-88","na":1,"nb":1,"a":[["TED%3AAF-A0A1U6JWX2-F1-model_v4_TED01","TED novel fold AF-A0A1U6JWX2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1938744","Bacillus sp. V-88"]]},{"id":"NCBITaxon:1938745","l":"Blastococcus haudaquaticus","na":1,"nb":1,"a":[["TED%3AAF-A0A286GU62-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A286GU62-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1938745","Blastococcus haudaquaticus"]]},{"id":"NCBITaxon:1938796","l":"Paraburkholderia sp. BL10I2N1","na":1,"nb":1,"a":[["TED%3AAF-A0A4R6F5Z7-F1-model_v4_TED01","TED novel fold AF-A0A4R6F5Z7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1938796","Paraburkholderia sp. BL10I2N1"]]},{"id":"NCBITaxon:1938801","l":"Paraburkholderia sp. BL21I4N1","na":1,"nb":1,"a":[["TED%3AAF-A0A2S8RQH9-F1-model_v4_TED02","TED novel fold AF-A0A2S8RQH9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1938801","Paraburkholderia sp. BL21I4N1"]]},{"id":"NCBITaxon:1938807","l":"Paraburkholderia sp. BL6669N2","na":1,"nb":1,"a":[["TED%3AAF-A0A3E0CAW2-F1-model_v4_TED02","TED novel fold AF-A0A3E0CAW2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1938807","Paraburkholderia sp. BL6669N2"]]},{"id":"NCBITaxon:1938830","l":"Streptomyces sp. 1114.5","na":1,"nb":1,"a":[["TED%3AAF-A0A495SRF0-F1-model_v4_TED01","TED novel fold AF-A0A495SRF0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1938830","Streptomyces sp. 1114.5"]]},{"id":"NCBITaxon:1938836","l":"Streptomyces sp. 2114.4","na":1,"nb":1,"a":[["TED%3AAF-A0A212U7M9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A212U7M9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1938836","Streptomyces sp. 2114.4"]]},{"id":"NCBITaxon:1938846","l":"Streptomyces sp. 3212.3","na":1,"nb":1,"a":[["TED%3AAF-A0A3D9QET1-F1-model_v4_TED03","TED novel fold AF-A0A3D9QET1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1938846","Streptomyces sp. 3212.3"]]},{"id":"NCBITaxon:1938847","l":"Streptomyces sp. 4121.5","na":1,"nb":1,"a":[["TED%3AAF-A0A2N0FC69-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N0FC69-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1938847","Streptomyces sp. 4121.5"]]},{"id":"NCBITaxon:1938870","l":"Candidatus Pantoea floridensis","na":1,"nb":1,"a":[["TED%3AAF-A0A286BLC6-F1-model_v4_TED02","TED novel fold AF-A0A286BLC6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1938870","Candidatus Pantoea floridensis"]]},{"id":"NCBITaxon:1938886","l":"Fastidiosipila sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A847BPI8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A847BPI8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1938886","Fastidiosipila sp."]]},{"id":"NCBITaxon:1940525","l":"Labilibaculum manganireducens","na":1,"nb":1,"a":[["TED%3AAF-A0A2N3IGB8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3IGB8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1940525","Labilibaculum manganireducens"]]},{"id":"NCBITaxon:1940526","l":"Labilibaculum filiforme","na":1,"nb":1,"a":[["TED%3AAF-A0A2N3HUZ8-F1-model_v4_TED05","TED novel fold AF-A0A2N3HUZ8-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1940526","Labilibaculum filiforme"]]},{"id":"NCBITaxon:1940690","l":"Pseudidiomarina andamanensis","na":1,"nb":1,"a":[["TED%3AAF-A0A6I6DCU6-F1-model_v4_TED01","TED novel fold AF-A0A6I6DCU6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1940690","Pseudidiomarina andamanensis"]]},{"id":"NCBITaxon:1941349","l":"Sedimentisphaera salicampi","na":1,"nb":1,"a":[["TED%3AAF-A0A1W6LIY2-F1-model_v4_TED02","TED novel fold AF-A0A1W6LIY2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1941349","Sedimentisphaera salicampi"]]},{"id":"NCBITaxon:1943579","l":"Oribacterium sp. C9","na":1,"nb":1,"a":[["TED%3AAF-A0A1S9BTM3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1S9BTM3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1943579","Oribacterium sp. C9"]]},{"id":"NCBITaxon:1943583","l":"Candidatus Synechococcus spongiarum LMB bulk15N","na":1,"nb":1,"a":[["TED%3AAF-A0A1T1D6G1-F1-model_v4_TED01","TED novel fold AF-A0A1T1D6G1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1943583","Candidatus Synechococcus spongiarum LMB bulk15N"]]},{"id":"NCBITaxon:1945577","l":"Methanosphaera sp. rholeuAM270","na":1,"nb":1,"a":[["TED%3AAF-A0A328SCG4-F1-model_v4_TED01","TED novel fold AF-A0A328SCG4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1945577","Methanosphaera sp. rholeuAM270"]]},{"id":"NCBITaxon:1945581","l":"Chryseobacterium mucoviscidosis","na":1,"nb":1,"a":[["TED%3AAF-A0A202BWT4-F1-model_v4_TED01","TED novel fold AF-A0A202BWT4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1945581","Chryseobacterium mucoviscidosis"]]},{"id":"NCBITaxon:1945595","l":"Methanosarcinaceae archaeon","na":1,"nb":1,"a":[["TED%3AAF-A0A7J4PFN5-F1-model_v4_TED02","TED novel fold AF-A0A7J4PFN5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1945595","Methanosarcinaceae archaeon"]]},{"id":"NCBITaxon:1945887","l":"Prevotellaceae bacterium MN60","na":1,"nb":1,"a":[["TED%3AAF-A0A239QYE6-F1-model_v4_TED02","TED novel fold AF-A0A239QYE6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1945887","Prevotellaceae bacterium MN60"]]},{"id":"NCBITaxon:1945892","l":"Spirosomataceae bacterium TFI 002","na":1,"nb":1,"a":[["TED%3AAF-A0A286IKU0-F1-model_v4_TED03","TED novel fold AF-A0A286IKU0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1945892","Spirosomataceae bacterium TFI 002"]]},{"id":"NCBITaxon:1949069","l":"Pseudoduganella buxea","na":1,"nb":1,"a":[["TED%3AAF-A0A6I3T0T8-F1-model_v4_TED01","TED novel fold AF-A0A6I3T0T8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1949069","Pseudoduganella buxea"]]},{"id":"NCBITaxon:1953771","l":"Chelatococcus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2W7APJ3-F1-model_v4_TED01","TED novel fold AF-A0A2W7APJ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1953771","Chelatococcus sp."]]},{"id":"NCBITaxon:1954172","l":"Calothrix sp. NIES-2100","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z4GTF8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z4GTF8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1954172","Calothrix sp. NIES-2100"]]},{"id":"NCBITaxon:1955620","l":"Hymenobacter sp. CRA2","na":1,"nb":1,"a":[["TED%3AAF-A0A1S9AVK6-F1-model_v4_TED01","TED novel fold AF-A0A1S9AVK6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1955620","Hymenobacter sp. CRA2"]]},{"id":"NCBITaxon:1955714","l":"Cohnella sp. CIP 111063","na":1,"nb":1,"a":[["TED%3AAF-A0A231RF01-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A231RF01-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1955714","Cohnella sp. CIP 111063"]]},{"id":"NCBITaxon:1955775","l":"Emergomyces africanus","na":1,"nb":1,"a":[["TED%3AAF-A0A1B7P984-F1-model_v4_TED01","TED novel fold AF-A0A1B7P984-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1955775","Emergomyces africanus"]]},{"id":"NCBITaxon:1956161","l":"Planctomycetales bacterium 4484_113","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4QRE7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V4QRE7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1956161","Planctomycetales bacterium 4484_113"]]},{"id":"NCBITaxon:1958773","l":"Pseudomonas sp. PIC25","na":1,"nb":1,"a":[["TED%3AAF-A0A2A2E902-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A2E902-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1958773","Pseudomonas sp. PIC25"]]},{"id":"NCBITaxon:1958945","l":"Aurantiacibacter aquimixticola","na":1,"nb":1,"a":[["TED%3AAF-A0A419RSL8-F1-model_v4_TED02","TED novel fold AF-A0A419RSL8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1958945","Aurantiacibacter aquimixticola"]]},{"id":"NCBITaxon:195913","l":"Loktanella salsilacus","na":1,"nb":1,"a":[["TED%3AAF-A0A1I4CVX6-F1-model_v4_TED03","TED novel fold AF-A0A1I4CVX6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A195913","Loktanella salsilacus"]]},{"id":"NCBITaxon:1960125","l":"Parendozoicomonas haliclonae","na":1,"nb":1,"a":[["TED%3AAF-A0A1X7ARE0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X7ARE0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1960125","Parendozoicomonas haliclonae"]]},{"id":"NCBITaxon:1960126","l":"Salmonella enterica subsp. enterica serovar Wilhelmsburg","na":1,"nb":1,"a":[["TED%3AAF-A0A659QGA1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A659QGA1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1960126","Salmonella enterica subsp. enterica serovar Wilhelmsburg"]]},{"id":"NCBITaxon:1960156","l":"Abditibacterium utsteinense","na":1,"nb":1,"a":[["TED%3AAF-A0A2S8SU22-F1-model_v4_TED02","TED novel fold AF-A0A2S8SU22-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1960156","Abditibacterium utsteinense"]]},{"id":"NCBITaxon:1960825","l":"Acinetobacter sp. MF4642","na":1,"nb":1,"a":[["TED%3AAF-A0A1T1JB81-F1-model_v4_TED01","TED novel fold AF-A0A1T1JB81-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1960825","Acinetobacter sp. MF4642"]]},{"id":"NCBITaxon:1960827","l":"Pseudomonas sp. MF4836","na":1,"nb":1,"a":[["TED%3AAF-A0A1T1IBN9-F1-model_v4_TED01","TED novel fold AF-A0A1T1IBN9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1960827","Pseudomonas sp. MF4836"]]},{"id":"NCBITaxon:1960830","l":"Mesonia sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2D8UMY7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D8UMY7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1960830","Mesonia sp."]]},{"id":"NCBITaxon:1960881","l":"Runella sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A3C0UPU2-F1-model_v4_TED01","TED novel fold AF-A0A3C0UPU2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1960881","Runella sp."]]},{"id":"NCBITaxon:196109","l":"Microdochium bolleyi","na":1,"nb":1,"a":[["TED%3AAF-A0A136IX34-F1-model_v4_TED02","TED novel fold AF-A0A136IX34-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A196109","Microdochium bolleyi"]]},{"id":"NCBITaxon:196162","l":"Nocardioides sp. JS614","na":1,"nb":1,"a":[["TED%3AAF-A1SFH1-F1-model_v4_TED04","TED highly-symmetric fold AF-A1SFH1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A196162","Nocardioides sp. JS614"]]},{"id":"NCBITaxon:1961706","l":"Mycobacterium sp. AT1","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4Q3C2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1V4Q3C2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1961706","Mycobacterium sp. AT1"]]},{"id":"NCBITaxon:1962","l":"Streptomyces albus G","na":1,"nb":1,"a":[["Pfam%3APF13613","Helix-turn-helix of DDE superfamily endonuclease"]],"b":[["NCBITaxon%3A1962","Streptomyces albus G"]]},{"id":"NCBITaxon:196367","l":"Caballeronia sordidicola","na":1,"nb":1,"a":[["TED%3AAF-A0A7H9UPF1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H9UPF1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A196367","Caballeronia sordidicola"]]},{"id":"NCBITaxon:1964356","l":"Fibrobacter sp. UWB4","na":1,"nb":1,"a":[["TED%3AAF-A0A254S640-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A254S640-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1964356","Fibrobacter sp. UWB4"]]},{"id":"NCBITaxon:1965294","l":"Collinsella sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A3D1WST0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D1WST0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1965294","Collinsella sp."]]},{"id":"NCBITaxon:1965537","l":"Flavonifractor sp. An10","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4WLE4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1Y4WLE4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1965537","Flavonifractor sp. An10"]]},{"id":"NCBITaxon:1965547","l":"Lachnoclostridium sp. An118","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4TVU4-F1-model_v4_TED03","TED novel fold AF-A0A1Y4TVU4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1965547","Lachnoclostridium sp. An118"]]},{"id":"NCBITaxon:1965550","l":"Faecalibacterium sp. An121","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4TDE2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Y4TDE2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1965550","Faecalibacterium sp. An121"]]},{"id":"NCBITaxon:1965558","l":"Flavonifractor sp. An135","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4S482-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y4S482-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965558","Flavonifractor sp. An135"]]},{"id":"NCBITaxon:1965564","l":"Massilimicrobiota sp. An142","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4RBI2-F1-model_v4_TED01","TED novel fold AF-A0A1Y4RBI2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965564","Massilimicrobiota sp. An142"]]},{"id":"NCBITaxon:1965566","l":"Erysipelatoclostridium sp. An15","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4QS30-F1-model_v4_TED01","TED novel fold AF-A0A1Y4QS30-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965566","Erysipelatoclostridium sp. An15"]]},{"id":"NCBITaxon:1965575","l":"Lachnoclostridium sp. An181","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4LAC0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Y4LAC0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1965575","Lachnoclostridium sp. An181"]]},{"id":"NCBITaxon:1965579","l":"Olsenella sp. An188","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4K124-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y4K124-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965579","Olsenella sp. An188"]]},{"id":"NCBITaxon:1965583","l":"Lachnoclostridium sp. An196","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4ISD7-F1-model_v4_TED02","TED novel fold AF-A0A1Y4ISD7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1965583","Lachnoclostridium sp. An196"]]},{"id":"NCBITaxon:1965590","l":"Barnesiella sp. An22","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4GUZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y4GUZ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965590","Barnesiella sp. An22"]]},{"id":"NCBITaxon:1965591","l":"Cloacibacillus sp. An23","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4GGY1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Y4GGY1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1965591","Cloacibacillus sp. An23"]]},{"id":"NCBITaxon:1965603","l":"Blautia sp. An249","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4F359-F1-model_v4_TED01","TED novel fold AF-A0A1Y4F359-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965603","Blautia sp. An249"]]},{"id":"NCBITaxon:1965613","l":"Bacteroides sp. An269","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4EW98-F1-model_v4_TED02","TED novel fold AF-A0A1Y4EW98-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1965613","Bacteroides sp. An269"]]},{"id":"NCBITaxon:1965616","l":"Collinsella sp. An271","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4DSD0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y4DSD0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965616","Collinsella sp. An271"]]},{"id":"NCBITaxon:1965629","l":"Flavonifractor sp. An306","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y4CFF8-F1-model_v4_TED01","TED novel fold AF-A0A1Y4CFF8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965629","Flavonifractor sp. An306"]]},{"id":"NCBITaxon:1965634","l":"Flavonifractor sp. An4","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y3Z369-F1-model_v4_TED01","TED novel fold AF-A0A1Y3Z369-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965634","Flavonifractor sp. An4"]]},{"id":"NCBITaxon:1965640","l":"Bacteroides sp. An51A","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y3X5P3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y3X5P3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965640","Bacteroides sp. An51A"]]},{"id":"NCBITaxon:1965646","l":"Barnesiella sp. An55","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y3W911-F1-model_v4_TED01","TED novel fold AF-A0A1Y3W911-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965646","Barnesiella sp. An55"]]},{"id":"NCBITaxon:1965654","l":"Lachnoclostridium sp. An76","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y3TDU7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y3TDU7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965654","Lachnoclostridium sp. An76"]]},{"id":"NCBITaxon:1965664","l":"Flavonifractor sp. An9","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y3RAD2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y3RAD2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965664","Flavonifractor sp. An9"]]},{"id":"NCBITaxon:1965665","l":"Flavonifractor sp. An91","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y3RCN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y3RCN7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1965665","Flavonifractor sp. An91"]]},{"id":"NCBITaxon:1966350","l":"Methanococcoides sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A849PVH1-F1-model_v4_TED01","TED novel fold AF-A0A849PVH1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1966350","Methanococcoides sp."]]},{"id":"NCBITaxon:1967","l":"Streptomyces kanamyceticus","na":1,"nb":1,"a":[["Pfam%3APF13579","Glycosyl transferase 4-like domain"]],"b":[["NCBITaxon%3A1967","Streptomyces kanamyceticus"]]},{"id":"NCBITaxon:1967498","l":"Ilumatobacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2E3TVT0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E3TVT0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1967498","Ilumatobacter sp."]]},{"id":"NCBITaxon:1967781","l":"Rhizobium esperanzae","na":1,"nb":1,"a":[["TED%3AAF-A0A7W6W3W3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W6W3W3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1967781","Rhizobium esperanzae"]]},{"id":"NCBITaxon:1967839","l":"Pseudoalteromonas sp. A601","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y5KD00-F1-model_v4_TED04","TED novel fold AF-A0A1Y5KD00-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1967839","Pseudoalteromonas sp. A601"]]},{"id":"NCBITaxon:1969380","l":"Bacillus sp. SRB_336","na":1,"nb":1,"a":[["TED%3AAF-A0A328M7C9-F1-model_v4_TED02","TED novel fold AF-A0A328M7C9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1969380","Bacillus sp. SRB_336"]]},{"id":"NCBITaxon:1969733","l":"Geothermobacter hydrogeniphilus","na":1,"nb":1,"a":[["TED%3AAF-A0A1X0Y030-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X0Y030-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1969733","Geothermobacter hydrogeniphilus"]]},{"id":"NCBITaxon:1969738","l":"Butyricimonas sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7G2MLY6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7G2MLY6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1969738","Butyricimonas sp."]]},{"id":"NCBITaxon:1970082","l":"Pyrodictium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A833DYK4-F1-model_v4_TED01","TED novel fold AF-A0A833DYK4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970082","Pyrodictium sp."]]},{"id":"NCBITaxon:1970083","l":"Hyperthermus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A432R784-F1-model_v4_TED01","TED novel fold AF-A0A432R784-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970083","Hyperthermus sp."]]},{"id":"NCBITaxon:1970291","l":"Acidiphilium sp. 20-67-58","na":1,"nb":1,"a":[["TED%3AAF-A0A257R2U2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A257R2U2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970291","Acidiphilium sp. 20-67-58"]]},{"id":"NCBITaxon:1970331","l":"Caulobacter sp. 35-67-4","na":1,"nb":1,"a":[["TED%3AAF-A0A258KAX8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A258KAX8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970331","Caulobacter sp. 35-67-4"]]},{"id":"NCBITaxon:1970334","l":"Chthoniobacter sp. 12-60-6","na":1,"nb":1,"a":[["TED%3AAF-A0A257XBV1-F1-model_v4_TED01","TED novel fold AF-A0A257XBV1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970334","Chthoniobacter sp. 12-60-6"]]},{"id":"NCBITaxon:1970383","l":"Halothiobacillus sp. 20-53-49","na":1,"nb":1,"a":[["TED%3AAF-A0A257QD04-F1-model_v4_TED01","TED novel fold AF-A0A257QD04-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970383","Halothiobacillus sp. 20-53-49"]]},{"id":"NCBITaxon:1970386","l":"Halothiobacillus sp. 28-55-5","na":1,"nb":1,"a":[["TED%3AAF-A0A258QIP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A258QIP8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970386","Halothiobacillus sp. 28-55-5"]]},{"id":"NCBITaxon:1970390","l":"Hyphomicrobium sp. 32-62-53","na":1,"nb":1,"a":[["TED%3AAF-A0A258L5X3-F1-model_v4_TED01","TED novel fold AF-A0A258L5X3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970390","Hyphomicrobium sp. 32-62-53"]]},{"id":"NCBITaxon:1970400","l":"Microbacterium sp. 14-71-5","na":1,"nb":1,"a":[["TED%3AAF-A0A259SVI0-F1-model_v4_TED02","TED novel fold AF-A0A259SVI0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1970400","Microbacterium sp. 14-71-5"]]},{"id":"NCBITaxon:1970406","l":"Novosphingobium sp. 17-62-19","na":1,"nb":1,"a":[["TED%3AAF-A0A259E3M0-F1-model_v4_TED01","TED novel fold AF-A0A259E3M0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970406","Novosphingobium sp. 17-62-19"]]},{"id":"NCBITaxon:1970407","l":"Novosphingobium sp. 17-62-8","na":1,"nb":1,"a":[["TED%3AAF-A0A259C6J9-F1-model_v4_TED01","TED novel fold AF-A0A259C6J9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970407","Novosphingobium sp. 17-62-8"]]},{"id":"NCBITaxon:1970418","l":"Polaromonas sp. 35-63-35","na":1,"nb":1,"a":[["TED%3AAF-A0A258NST0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A258NST0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970418","Polaromonas sp. 35-63-35"]]},{"id":"NCBITaxon:1970432","l":"Sphingomonas sp. 28-62-11","na":1,"nb":1,"a":[["TED%3AAF-A0A258R9E4-F1-model_v4_TED01","TED novel fold AF-A0A258R9E4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970432","Sphingomonas sp. 28-62-11"]]},{"id":"NCBITaxon:1970433","l":"Sphingomonas sp. 28-62-20","na":1,"nb":1,"a":[["TED%3AAF-A0A258SDY8-F1-model_v4_TED01","TED novel fold AF-A0A258SDY8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970433","Sphingomonas sp. 28-62-20"]]},{"id":"NCBITaxon:1970434","l":"Sphingomonas sp. 28-63-12","na":1,"nb":1,"a":[["TED%3AAF-A0A258RQ90-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A258RQ90-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970434","Sphingomonas sp. 28-63-12"]]},{"id":"NCBITaxon:1970486","l":"Acidobacteria bacterium 37-65-4","na":1,"nb":1,"a":[["TED%3AAF-A0A257V9L0-F1-model_v4_TED04","TED novel fold AF-A0A257V9L0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1970486","Acidobacteria bacterium 37-65-4"]]},{"id":"NCBITaxon:1970489","l":"Actinobacteria bacterium 21-73-9","na":1,"nb":1,"a":[["TED%3AAF-A0A257RE24-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A257RE24-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970489","Actinobacteria bacterium 21-73-9"]]},{"id":"NCBITaxon:1970490","l":"Alphaproteobacteria bacterium 16-39-46","na":1,"nb":1,"a":[["TED%3AAF-A0A258XBG1-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A258XBG1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1970490","Alphaproteobacteria bacterium 16-39-46"]]},{"id":"NCBITaxon:1970510","l":"Gallionellales bacterium 24-53-125","na":1,"nb":1,"a":[["TED%3AAF-A0A258ZAY9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A258ZAY9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1970510","Gallionellales bacterium 24-53-125"]]},{"id":"NCBITaxon:1970514","l":"Gemmatimonadetes bacterium 21-71-4","na":1,"nb":1,"a":[["TED%3AAF-A0A257RPC9-F1-model_v4_TED01","TED novel fold AF-A0A257RPC9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970514","Gemmatimonadetes bacterium 21-71-4"]]},{"id":"NCBITaxon:1970532","l":"Ignavibacteriae bacterium 37-53-5","na":1,"nb":1,"a":[["TED%3AAF-A0A257TMI8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A257TMI8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1970532","Ignavibacteriae bacterium 37-53-5"]]},{"id":"NCBITaxon:1970533","l":"Methylophilaceae bacterium 17-43-7","na":1,"nb":1,"a":[["TED%3AAF-A0A258ZSQ9-F1-model_v4_TED01","TED novel fold AF-A0A258ZSQ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970533","Methylophilaceae bacterium 17-43-7"]]},{"id":"NCBITaxon:1970538","l":"Methylophilales bacterium 28-44-11","na":1,"nb":1,"a":[["TED%3AAF-A0A258Q043-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A258Q043-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1970538","Methylophilales bacterium 28-44-11"]]},{"id":"NCBITaxon:1970542","l":"Planctomycetia bacterium 21-64-5","na":1,"nb":1,"a":[["TED%3AAF-A0A257TP90-F1-model_v4_TED02","TED novel fold AF-A0A257TP90-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1970542","Planctomycetia bacterium 21-64-5"]]},{"id":"NCBITaxon:1970549","l":"Rhizobiales bacterium 32-66-11","na":1,"nb":1,"a":[["TED%3AAF-A0A258IJC2-F1-model_v4_TED01","TED novel fold AF-A0A258IJC2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970549","Rhizobiales bacterium 32-66-11"]]},{"id":"NCBITaxon:1970550","l":"Rhizobiales bacterium 32-66-8","na":1,"nb":1,"a":[["TED%3AAF-A0A258DUN5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A258DUN5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970550","Rhizobiales bacterium 32-66-8"]]},{"id":"NCBITaxon:1970552","l":"Rhizobiales bacterium 35-68-8","na":1,"nb":1,"a":[["TED%3AAF-A0A258LT13-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A258LT13-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970552","Rhizobiales bacterium 35-68-8"]]},{"id":"NCBITaxon:1970573","l":"Sphingobacteriia bacterium 28-36-52","na":1,"nb":1,"a":[["TED%3AAF-A0A258U799-F1-model_v4_TED02","TED novel fold AF-A0A258U799-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1970573","Sphingobacteriia bacterium 28-36-52"]]},{"id":"NCBITaxon:1970586","l":"Sphingomonadales bacterium 12-68-11","na":1,"nb":1,"a":[["TED%3AAF-A0A257YE58-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A257YE58-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970586","Sphingomonadales bacterium 12-68-11"]]},{"id":"NCBITaxon:1970589","l":"Sphingomonadales bacterium 28-55-16","na":1,"nb":1,"a":[["TED%3AAF-A0A258RRI2-F1-model_v4_TED02","TED novel fold AF-A0A258RRI2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1970589","Sphingomonadales bacterium 28-55-16"]]},{"id":"NCBITaxon:1970591","l":"Sphingomonadales bacterium 28-64-96","na":1,"nb":1,"a":[["TED%3AAF-A0A258VAH0-F1-model_v4_TED01","TED novel fold AF-A0A258VAH0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1970591","Sphingomonadales bacterium 28-64-96"]]},{"id":"NCBITaxon:1971619","l":"Marinitoga sp. 4572_148","na":1,"nb":1,"a":[["TED%3AAF-A0A1W9TIB3-F1-model_v4_TED02","TED novel fold AF-A0A1W9TIB3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1971619","Marinitoga sp. 4572_148"]]},{"id":"NCBITaxon:1971625","l":"Desulfobacteraceae bacterium 4572_130","na":1,"nb":1,"a":[["TED%3AAF-A0A1W9SU75-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W9SU75-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1971625","Desulfobacteraceae bacterium 4572_130"]]},{"id":"NCBITaxon:1971630","l":"Bacteroidetes bacterium 4572_112","na":1,"nb":1,"a":[["TED%3AAF-A0A256W873-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A256W873-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1971630","Bacteroidetes bacterium 4572_112"]]},{"id":"NCBITaxon:1971631","l":"Bacteroidetes bacterium 4572_114","na":1,"nb":1,"a":[["TED%3AAF-A0A256WD82-F1-model_v4_TED02","TED novel fold AF-A0A256WD82-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1971631","Bacteroidetes bacterium 4572_114"]]},{"id":"NCBITaxon:1971632","l":"Bacteroidetes bacterium 4572_117","na":1,"nb":1,"a":[["TED%3AAF-A0A1W9SY04-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W9SY04-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1971632","Bacteroidetes bacterium 4572_117"]]},{"id":"NCBITaxon:1971633","l":"Bacteroidetes bacterium 4572_128","na":1,"nb":1,"a":[["TED%3AAF-A0A1W9ST60-F1-model_v4_TED03","TED novel fold AF-A0A1W9ST60-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1971633","Bacteroidetes bacterium 4572_128"]]},{"id":"NCBITaxon:1971727","l":"Spirochaetaceae bacterium 4572_59","na":1,"nb":1,"a":[["TED%3AAF-A0A1W9VFK2-F1-model_v4_TED01","TED novel fold AF-A0A1W9VFK2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1971727","Spirochaetaceae bacterium 4572_59"]]},{"id":"NCBITaxon:1972456","l":"Spirochaetaceae bacterium 4572_7","na":1,"nb":1,"a":[["TED%3AAF-A0A1W9VXE4-F1-model_v4_TED01","TED novel fold AF-A0A1W9VXE4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1972456","Spirochaetaceae bacterium 4572_7"]]},{"id":"NCBITaxon:1972846","l":"Streptomyces sp. Sge12","na":1,"nb":1,"a":[["TED%3AAF-A0A1V0QT96-F1-model_v4_TED01","TED novel fold AF-A0A1V0QT96-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1972846","Streptomyces sp. Sge12"]]},{"id":"NCBITaxon:1973142","l":"Thermoplasma sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A5J5FF33-F1-model_v4_TED01","TED novel fold AF-A0A5J5FF33-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973142","Thermoplasma sp."]]},{"id":"NCBITaxon:1973259","l":"Zestosphaera tikiterensis","na":1,"nb":1,"a":[["TED%3AAF-A0A2R7Y2H4-F1-model_v4_TED01","TED novel fold AF-A0A2R7Y2H4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973259","Zestosphaera tikiterensis"]]},{"id":"NCBITaxon:1973477","l":"Nodularia sp. NIES-3585","na":1,"nb":1,"a":[["TED%3AAF-A0A218PYE4-F1-model_v4_TED01","TED novel fold AF-A0A218PYE4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973477","Nodularia sp. NIES-3585"]]},{"id":"NCBITaxon:1973484","l":"Leptolyngbya boryana NIES-2135","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z4JRH1-F1-model_v4_TED01","TED novel fold AF-A0A1Z4JRH1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973484","Leptolyngbya boryana NIES-2135"]]},{"id":"NCBITaxon:1973748","l":"Caldifarciminota bacterium JGI_Cruoil_03_44_89","na":1,"nb":1,"a":[["TED%3AAF-A0A235BZX3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A235BZX3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973748","Caldifarciminota bacterium JGI_Cruoil_03_44_89"]]},{"id":"NCBITaxon:1973888","l":"Acidobacteria bacterium CG_4_9_14_3_um_filter_49_7","na":1,"nb":1,"a":[["TED%3AAF-A0A2M8D5F1-F1-model_v4_TED03","TED novel fold AF-A0A2M8D5F1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1973888","Acidobacteria bacterium CG_4_9_14_3_um_filter_49_7"]]},{"id":"NCBITaxon:1973916","l":"Armatimonadetes bacterium CG07_land_8_20_14_0_80_40_9","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7A827-F1-model_v4_TED02","TED novel fold AF-A0A2M7A827-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1973916","Armatimonadetes bacterium CG07_land_8_20_14_0_80_40_9"]]},{"id":"NCBITaxon:1973917","l":"Armatimonadetes bacterium CG07_land_8_20_14_0_80_59_28","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7AGG3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2M7AGG3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1973917","Armatimonadetes bacterium CG07_land_8_20_14_0_80_59_28"]]},{"id":"NCBITaxon:1973919","l":"Bacteroidetes bacterium CG_4_10_14_3_um_filter_31_20","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7N334-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M7N334-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973919","Bacteroidetes bacterium CG_4_10_14_3_um_filter_31_20"]]},{"id":"NCBITaxon:1973920","l":"Bacteroidetes bacterium CG_4_10_14_3_um_filter_42_6","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7PJ97-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2M7PJ97-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1973920","Bacteroidetes bacterium CG_4_10_14_3_um_filter_42_6"]]},{"id":"NCBITaxon:1973925","l":"Bacteroidetes bacterium CG18_big_fil_WC_8_21_14_2_50_41_14","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0HDX3-F1-model_v4_TED01","TED novel fold AF-A0A2H0HDX3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973925","Bacteroidetes bacterium CG18_big_fil_WC_8_21_14_2_50_41_14"]]},{"id":"NCBITaxon:1973926","l":"Bacteroidetes bacterium CG23_combo_of_CG06-09_8_20_14_all_32_9","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0BCP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H0BCP8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973926","Bacteroidetes bacterium CG23_combo_of_CG06-09_8_20_14_all_32_9"]]},{"id":"NCBITaxon:1973927","l":"Bdellovibrionales bacterium CG10_big_fil_rev_8_21_14_0_10_45_34","na":1,"nb":1,"a":[["TED%3AAF-A0A2M6X4S8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M6X4S8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973927","Bdellovibrionales bacterium CG10_big_fil_rev_8_21_14_0_10_45_34"]]},{"id":"NCBITaxon:1973935","l":"Chlamydiae bacterium CG10_big_fil_rev_8_21_14_0_10_35_9","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0VNB5-F1-model_v4_TED01","TED novel fold AF-A0A2H0VNB5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973935","Chlamydiae bacterium CG10_big_fil_rev_8_21_14_0_10_35_9"]]},{"id":"NCBITaxon:1973962","l":"Deltaproteobacteria bacterium CG_4_8_14_3_um_filter_45_9","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7JSH6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2M7JSH6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1973962","Deltaproteobacteria bacterium CG_4_8_14_3_um_filter_45_9"]]},{"id":"NCBITaxon:1973963","l":"Deltaproteobacteria bacterium CG_4_8_14_3_um_filter_51_11","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7JGF0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2M7JGF0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1973963","Deltaproteobacteria bacterium CG_4_8_14_3_um_filter_51_11"]]},{"id":"NCBITaxon:1973967","l":"Deltaproteobacteria bacterium CG_4_9_14_3_um_filter_63_12","na":1,"nb":1,"a":[["TED%3AAF-A0A2M8B4E2-F1-model_v4_TED02","TED novel fold AF-A0A2M8B4E2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1973967","Deltaproteobacteria bacterium CG_4_9_14_3_um_filter_63_12"]]},{"id":"NCBITaxon:1973971","l":"Deltaproteobacteria bacterium CG07_land_8_20_14_0_80_38_7","na":1,"nb":1,"a":[["TED%3AAF-A0A2M6ZXW2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M6ZXW2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973971","Deltaproteobacteria bacterium CG07_land_8_20_14_0_80_38_7"]]},{"id":"NCBITaxon:1973983","l":"Desulfobacterales bacterium CG23_combo_of_CG06-09_8_20_14_all_51_8","na":1,"nb":1,"a":[["TED%3AAF-A0A2G9ZZZ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G9ZZZ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973983","Desulfobacterales bacterium CG23_combo_of_CG06-09_8_20_14_all_51_8"]]},{"id":"NCBITaxon:1973994","l":"Flavobacteriaceae bacterium CG02_land_8_20_14_3_00_34_13","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7DL13-F1-model_v4_TED01","TED novel fold AF-A0A2M7DL13-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1973994","Flavobacteriaceae bacterium CG02_land_8_20_14_3_00_34_13"]]},{"id":"NCBITaxon:1974127","l":"Zetaproteobacteria bacterium CG12_big_fil_rev_8_21_14_0_65_55_1124","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7HCL7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2M7HCL7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1974127","Zetaproteobacteria bacterium CG12_big_fil_rev_8_21_14_0_65_55_1124"]]},{"id":"NCBITaxon:1974426","l":"Candidatus Pacearchaeota archaeon CG_4_10_14_0_2_um_filter_31_10","na":1,"nb":1,"a":[["TED%3AAF-A0A2H9PX84-F1-model_v4_TED03","TED novel fold AF-A0A2H9PX84-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1974426","Candidatus Pacearchaeota archaeon CG_4_10_14_0_2_um_filter_31_10"]]},{"id":"NCBITaxon:1974445","l":"Candidatus Pacearchaeota archaeon CG10_big_fil_rev_8_21_14_0_10_35_13","na":1,"nb":1,"a":[["TED%3AAF-A0A2G9NCG0-F1-model_v4_TED01","TED novel fold AF-A0A2G9NCG0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1974445","Candidatus Pacearchaeota archaeon CG10_big_fil_rev_8_21_14_0_10_35_13"]]},{"id":"NCBITaxon:1974463","l":"Candidatus Woesearchaeota archaeon CG10_big_fil_rev_8_21_14_0_10_37_12","na":1,"nb":1,"a":[["TED%3AAF-A0A2G9MA02-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2G9MA02-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1974463","Candidatus Woesearchaeota archaeon CG10_big_fil_rev_8_21_14_0_10_37_12"]]},{"id":"NCBITaxon:1974464","l":"Candidatus Woesearchaeota archaeon CG10_big_fil_rev_8_21_14_0_10_44_13","na":1,"nb":1,"a":[["TED%3AAF-A0A2G9N4U0-F1-model_v4_TED02","TED novel fold AF-A0A2G9N4U0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1974464","Candidatus Woesearchaeota archaeon CG10_big_fil_rev_8_21_14_0_10_44_13"]]},{"id":"NCBITaxon:1974478","l":"Candidatus Shapirobacteria bacterium CG_4_9_14_0_2_um_filter_39_11","na":1,"nb":1,"a":[["TED%3AAF-A0A2M8ESB9-F1-model_v4_TED02","TED novel fold AF-A0A2M8ESB9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1974478","Candidatus Shapirobacteria bacterium CG_4_9_14_0_2_um_filter_39_11"]]},{"id":"NCBITaxon:1974485","l":"Candidatus Andersenbacteria bacterium CG10_big_fil_rev_8_21_14_0_10_54_11","na":1,"nb":1,"a":[["TED%3AAF-A0A2M6WZU0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2M6WZU0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1974485","Candidatus Andersenbacteria bacterium CG10_big_fil_rev_8_21_14_0_10_54_11"]]},{"id":"NCBITaxon:1974497","l":"Candidatus Beckwithbacteria bacterium CG23_combo_of_CG06-09_8_20_14_all_34_8","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0B6L5-F1-model_v4_TED01","TED novel fold AF-A0A2H0B6L5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1974497","Candidatus Beckwithbacteria bacterium CG23_combo_of_CG06-09_8_20_14_all_34_8"]]},{"id":"NCBITaxon:1974550","l":"Candidatus Desantisbacteria bacterium CG23_combo_of_CG06-09_8_20_14_all_40_23","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0A4B0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H0A4B0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1974550","Candidatus Desantisbacteria bacterium CG23_combo_of_CG06-09_8_20_14_all_40_23"]]},{"id":"NCBITaxon:1974551","l":"Candidatus Doudnabacteria bacterium CG10_big_fil_rev_8_21_14_0_10_41_10","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0VDX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H0VDX2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1974551","Candidatus Doudnabacteria bacterium CG10_big_fil_rev_8_21_14_0_10_41_10"]]},{"id":"NCBITaxon:1974559","l":"Candidatus Falkowbacteria bacterium CG_4_9_14_3_um_filter_38_19","na":1,"nb":1,"a":[["TED%3AAF-A0A2M8ADX0-F1-model_v4_TED03","TED novel fold AF-A0A2M8ADX0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1974559","Candidatus Falkowbacteria bacterium CG_4_9_14_3_um_filter_38_19"]]},{"id":"NCBITaxon:1974585","l":"Candidatus Harrisonbacteria bacterium CG10_big_fil_rev_8_21_14_0_10_44_23","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0UQ17-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H0UQ17-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1974585","Candidatus Harrisonbacteria bacterium CG10_big_fil_rev_8_21_14_0_10_44_23"]]},{"id":"NCBITaxon:1974647","l":"Candidatus Magasanikbacteria bacterium CG10_big_fil_rev_8_21_14_0_10_38_6","na":1,"nb":1,"a":[["TED%3AAF-A0A2M6NZZ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M6NZZ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1974647","Candidatus Magasanikbacteria bacterium CG10_big_fil_rev_8_21_14_0_10_38_6"]]},{"id":"NCBITaxon:1974650","l":"Candidatus Magasanikbacteria bacterium CG10_big_fil_rev_8_21_14_0_10_43_6","na":1,"nb":1,"a":[["TED%3AAF-A0A2M6W203-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2M6W203-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1974650","Candidatus Magasanikbacteria bacterium CG10_big_fil_rev_8_21_14_0_10_43_6"]]},{"id":"NCBITaxon:1974725","l":"Candidatus Niyogibacteria bacterium CG10_big_fil_rev_8_21_14_0_10_42_19","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0TG47-F1-model_v4_TED02","TED novel fold AF-A0A2H0TG47-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1974725","Candidatus Niyogibacteria bacterium CG10_big_fil_rev_8_21_14_0_10_42_19"]]},{"id":"NCBITaxon:1974748","l":"Candidatus Abzuiibacterium crystallinum","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0LSV6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H0LSV6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1974748","Candidatus Abzuiibacterium crystallinum"]]},{"id":"NCBITaxon:1974757","l":"Candidatus Sherwoodlollariibacterium unditelluris","na":1,"nb":1,"a":[["TED%3AAF-A0A2G9YJU5-F1-model_v4_TED01","TED novel fold AF-A0A2G9YJU5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1974757","Candidatus Sherwoodlollariibacterium unditelluris"]]},{"id":"NCBITaxon:1974784","l":"Candidatus Peregrinibacteria bacterium CG10_big_fil_rev_8_21_14_0_10_36_19","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0S8P7-F1-model_v4_TED03","TED novel fold AF-A0A2H0S8P7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1974784","Candidatus Peregrinibacteria bacterium CG10_big_fil_rev_8_21_14_0_10_36_19"]]},{"id":"NCBITaxon:1974791","l":"Candidatus Peregrinibacteria bacterium CG10_big_fil_rev_8_21_14_0_10_55_24","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0RQ70-F1-model_v4_TED02","TED novel fold AF-A0A2H0RQ70-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1974791","Candidatus Peregrinibacteria bacterium CG10_big_fil_rev_8_21_14_0_10_55_24"]]},{"id":"NCBITaxon:1974814","l":"Candidatus Portnoybacteria bacterium CG10_big_fil_rev_8_21_14_0_10_40_22","na":1,"nb":1,"a":[["TED%3AAF-A0A2M8KFY5-F1-model_v4_TED01","TED novel fold AF-A0A2M8KFY5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1974814","Candidatus Portnoybacteria bacterium CG10_big_fil_rev_8_21_14_0_10_40_22"]]},{"id":"NCBITaxon:197482","l":"Malaciobacter halophilus","na":1,"nb":1,"a":[["TED%3AAF-A0A8B3RF77-F1-model_v4_TED01","TED novel fold AF-A0A8B3RF77-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A197482","Malaciobacter halophilus"]]},{"id":"NCBITaxon:1974837","l":"Candidatus Roizmanbacteria bacterium CG_4_9_14_0_2_um_filter_36_12","na":1,"nb":1,"a":[["TED%3AAF-A0A2M8F0D2-F1-model_v4_TED04","TED novel fold AF-A0A2M8F0D2-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A1974837","Candidatus Roizmanbacteria bacterium CG_4_9_14_0_2_um_filter_36_12"]]},{"id":"NCBITaxon:1974841","l":"Candidatus Roizmanbacteria bacterium CG_4_9_14_3_um_filter_33_18","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7XWN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M7XWN7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1974841","Candidatus Roizmanbacteria bacterium CG_4_9_14_3_um_filter_33_18"]]},{"id":"NCBITaxon:1974843","l":"Candidatus Roizmanbacteria bacterium CG01_land_8_20_14_3_00_33_9","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7E5D6-F1-model_v4_TED02","TED novel fold AF-A0A2M7E5D6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1974843","Candidatus Roizmanbacteria bacterium CG01_land_8_20_14_3_00_33_9"]]},{"id":"NCBITaxon:1975025","l":"Candidatus Taylorbacteria bacterium CG11_big_fil_rev_8_21_14_0_20_46_11","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0KBG4-F1-model_v4_TED01","TED novel fold AF-A0A2H0KBG4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1975025","Candidatus Taylorbacteria bacterium CG11_big_fil_rev_8_21_14_0_20_46_11"]]},{"id":"NCBITaxon:1975035","l":"Candidatus Uhrbacteria bacterium CG_4_9_14_3_um_filter_50_9","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7XD98-F1-model_v4_TED01","TED novel fold AF-A0A2M7XD98-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1975035","Candidatus Uhrbacteria bacterium CG_4_9_14_3_um_filter_50_9"]]},{"id":"NCBITaxon:1975062","l":"Candidatus Wolfebacteria bacterium CG_4_10_14_0_8_um_filter_37_11","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7Q8B6-F1-model_v4_TED02","TED novel fold AF-A0A2M7Q8B6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1975062","Candidatus Wolfebacteria bacterium CG_4_10_14_0_8_um_filter_37_11"]]},{"id":"NCBITaxon:1975071","l":"Candidatus Wolfebacteria bacterium CG18_big_fil_WC_8_21_14_2_50_39_7","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0ECG7-F1-model_v4_TED01","TED novel fold AF-A0A2H0ECG7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1975071","Candidatus Wolfebacteria bacterium CG18_big_fil_WC_8_21_14_2_50_39_7"]]},{"id":"NCBITaxon:1975072","l":"candidate division WWE3 bacterium CG_4_10_14_0_2_um_filter_41_14","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7TGC4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2M7TGC4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1975072","candidate division WWE3 bacterium CG_4_10_14_0_2_um_filter_41_14"]]},{"id":"NCBITaxon:1975078","l":"candidate division WWE3 bacterium CG_4_9_14_0_2_um_filter_48_10","na":1,"nb":1,"a":[["TED%3AAF-A0A2M8EJT3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M8EJT3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1975078","candidate division WWE3 bacterium CG_4_9_14_0_2_um_filter_48_10"]]},{"id":"NCBITaxon:1975099","l":"Candidatus Yonathbacteria bacterium CG_4_10_14_0_8_um_filter_43_17","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7Q5K1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2M7Q5K1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1975099","Candidatus Yonathbacteria bacterium CG_4_10_14_0_8_um_filter_43_17"]]},{"id":"NCBITaxon:1975523","l":"Fidelibacterota bacterium CG_4_9_14_3_um_filter_48_9","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7XWD0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2M7XWD0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1975523","Fidelibacterota bacterium CG_4_9_14_3_um_filter_48_9"]]},{"id":"NCBITaxon:1975526","l":"Bdellovibrio sp. CG10_big_fil_rev_8_21_14_0_10_47_8","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0WBQ6-F1-model_v4_TED01","TED novel fold AF-A0A2H0WBQ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1975526","Bdellovibrio sp. CG10_big_fil_rev_8_21_14_0_10_47_8"]]},{"id":"NCBITaxon:1975530","l":"Flexibacter sp. CG_4_10_14_3_um_filter_32_15","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7NIZ0-F1-model_v4_TED01","TED novel fold AF-A0A2M7NIZ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1975530","Flexibacter sp. CG_4_10_14_3_um_filter_32_15"]]},{"id":"NCBITaxon:1975555","l":"archaeon CG06_land_8_20_14_3_00_37_11","na":1,"nb":1,"a":[["TED%3AAF-A0A2H9M1U6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H9M1U6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1975555","archaeon CG06_land_8_20_14_3_00_37_11"]]},{"id":"NCBITaxon:1975559","l":"Euryarchaeota archaeon CG_4_9_14_3_um_filter_38_12","na":1,"nb":1,"a":[["TED%3AAF-A0A2H9QXA8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H9QXA8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1975559","Euryarchaeota archaeon CG_4_9_14_3_um_filter_38_12"]]},{"id":"NCBITaxon:1977873","l":"Acinetobacter sp. ANC 3813","na":1,"nb":1,"a":[["TED%3AAF-A0A241W2X8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A241W2X8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1977873","Acinetobacter sp. ANC 3813"]]},{"id":"NCBITaxon:1977879","l":"Acinetobacter sp. ANC 4169","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y3CTW4-F1-model_v4_TED01","TED novel fold AF-A0A1Y3CTW4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1977879","Acinetobacter sp. ANC 4169"]]},{"id":"NCBITaxon:1978124","l":"Methanosarcinales archaeon ex4572_44","na":1,"nb":1,"a":[["TED%3AAF-A0A2G1NW85-F1-model_v4_TED01","TED novel fold AF-A0A2G1NW85-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1978124","Methanosarcinales archaeon ex4572_44"]]},{"id":"NCBITaxon:1978230","l":"Caulobacteraceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q3SVZ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q3SVZ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1978230","Caulobacteraceae bacterium"]]},{"id":"NCBITaxon:1979207","l":"Parvularcula sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A357LEX5-F1-model_v4_TED01","TED novel fold AF-A0A357LEX5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1979207","Parvularcula sp."]]},{"id":"NCBITaxon:1979269","l":"Rhodovarius crocodyli","na":1,"nb":1,"a":[["TED%3AAF-A0A437M387-F1-model_v4_TED02","TED novel fold AF-A0A437M387-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1979269","Rhodovarius crocodyli"]]},{"id":"NCBITaxon:1979401","l":"Thalassovita sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2E9FXM2-F1-model_v4_TED01","TED novel fold AF-A0A2E9FXM2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1979401","Thalassovita sp."]]},{"id":"NCBITaxon:1979955","l":"Eudoraea sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y1VLE0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y1VLE0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1979955","Eudoraea sp."]]},{"id":"NCBITaxon:1979961","l":"Wenzhouxiangella sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A5Q4GWL5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Q4GWL5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1979961","Wenzhouxiangella sp."]]},{"id":"NCBITaxon:1979962","l":"Pusillimonas sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2D7XCF2-F1-model_v4_TED02","TED novel fold AF-A0A2D7XCF2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1979962","Pusillimonas sp."]]},{"id":"NCBITaxon:1980981","l":"Thermofilum sp. NZ13","na":1,"nb":1,"a":[["TED%3AAF-A0A2J4G700-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J4G700-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1980981","Thermofilum sp. NZ13"]]},{"id":"NCBITaxon:198107","l":"Azoarcus sp. CIB","na":1,"nb":1,"a":[["TED%3AAF-A0A0K1J426-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0K1J426-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A198107","Azoarcus sp. CIB"]]},{"id":"NCBITaxon:1981099","l":"Niveispirillum lacus","na":1,"nb":1,"a":[["TED%3AAF-A0A255YSY8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A255YSY8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1981099","Niveispirillum lacus"]]},{"id":"NCBITaxon:1981173","l":"Rhizobium sp. NXC14","na":1,"nb":1,"a":[["TED%3AAF-A0A1W6PXC9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W6PXC9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1981173","Rhizobium sp. NXC14"]]},{"id":"NCBITaxon:198119","l":"Paenibacillus barcinonensis","na":1,"nb":1,"a":[["Pfam%3APF06452","Carbohydrate family 9 binding domain-like"]],"b":[["NCBITaxon%3A198119","Paenibacillus barcinonensis"]]},{"id":"NCBITaxon:1982044","l":"Zhengella mangrovi","na":1,"nb":1,"a":[["TED%3AAF-A0A2G1QL83-F1-model_v4_TED03","TED novel fold AF-A0A2G1QL83-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1982044","Zhengella mangrovi"]]},{"id":"NCBITaxon:1982322","l":"Opitutia bacterium Tous-C5TDCM","na":1,"nb":1,"a":[["TED%3AAF-A0A2A2QPA7-F1-model_v4_TED01","TED novel fold AF-A0A2A2QPA7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1982322","Opitutia bacterium Tous-C5TDCM"]]},{"id":"NCBITaxon:1982323","l":"Opitutia bacterium Tous-C8FEB","na":1,"nb":1,"a":[["TED%3AAF-A0A2A2RC65-F1-model_v4_TED03","TED novel fold AF-A0A2A2RC65-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1982323","Opitutia bacterium Tous-C8FEB"]]},{"id":"NCBITaxon:1982326","l":"Spartobacteria bacterium AMD-G5","na":1,"nb":1,"a":[["TED%3AAF-A0A2A2XYR8-F1-model_v4_TED02","TED novel fold AF-A0A2A2XYR8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1982326","Spartobacteria bacterium AMD-G5"]]},{"id":"NCBITaxon:1982328","l":"Verrucomicrobiia bacterium AMD-G2","na":1,"nb":1,"a":[["TED%3AAF-A0A2A2Y7L6-F1-model_v4_TED01","TED novel fold AF-A0A2A2Y7L6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1982328","Verrucomicrobiia bacterium AMD-G2"]]},{"id":"NCBITaxon:1982333","l":"Verrucomicrobia bacterium Tous-C9LFEB","na":1,"nb":1,"a":[["TED%3AAF-A0A2A2R1H1-F1-model_v4_TED02","TED novel fold AF-A0A2A2R1H1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1982333","Verrucomicrobia bacterium Tous-C9LFEB"]]},{"id":"NCBITaxon:1982626","l":"Faecalibacillus intestinalis","na":1,"nb":1,"a":[["TED%3AAF-A0A7I8DY50-F1-model_v4_TED01","TED novel fold AF-A0A7I8DY50-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1982626","Faecalibacillus intestinalis"]]},{"id":"NCBITaxon:1983721","l":"Metabacillus lacus","na":1,"nb":1,"a":[["TED%3AAF-A0A7X2IYG1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7X2IYG1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1983721","Metabacillus lacus"]]},{"id":"NCBITaxon:198480","l":"Psychrobacter fozii","na":1,"nb":1,"a":[["TED%3AAF-A0A2V4UPN2-F1-model_v4_TED02","TED novel fold AF-A0A2V4UPN2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A198480","Psychrobacter fozii"]]},{"id":"NCBITaxon:1985169","l":"Hydrogenophaga sp. IBVHS1","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y2QT13-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y2QT13-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1985169","Hydrogenophaga sp. IBVHS1"]]},{"id":"NCBITaxon:198620","l":"Pseudomonas koreensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1G7ALV2-F1-model_v4_TED02","TED novel fold AF-A0A1G7ALV2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A198620","Pseudomonas koreensis"]]},{"id":"NCBITaxon:1986256","l":"OM182 bacterium MED-G28","na":1,"nb":1,"a":[["TED%3AAF-A0A2A5WFQ8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2A5WFQ8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1986256","OM182 bacterium MED-G28"]]},{"id":"NCBITaxon:1986264","l":"Bacteroidetes bacterium MED-G13","na":1,"nb":1,"a":[["TED%3AAF-A0A2A5XDS1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A5XDS1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986264","Bacteroidetes bacterium MED-G13"]]},{"id":"NCBITaxon:1986603","l":"Alteromonas sp. TMED35","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z9X2W2-F1-model_v4_TED01","TED novel fold AF-A0A1Z9X2W2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986603","Alteromonas sp. TMED35"]]},{"id":"NCBITaxon:1986614","l":"Rhodopirellula sp. TMED11","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z8MMH4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1Z8MMH4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1986614","Rhodopirellula sp. TMED11"]]},{"id":"NCBITaxon:1986638","l":"Candidatus Endolissoclinum sp. TMED37","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z8T4S0-F1-model_v4_TED02","TED novel fold AF-A0A1Z8T4S0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1986638","Candidatus Endolissoclinum sp. TMED37"]]},{"id":"NCBITaxon:1986639","l":"Candidatus Puniceispirillum sp. TMED52","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z8UUH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z8UUH3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986639","Candidatus Puniceispirillum sp. TMED52"]]},{"id":"NCBITaxon:1986642","l":"Alphaproteobacteria bacterium TMED62","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z8VSQ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z8VSQ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986642","Alphaproteobacteria bacterium TMED62"]]},{"id":"NCBITaxon:1986654","l":"bacterium TMED181","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z9KS85-F1-model_v4_TED02","TED novel fold AF-A0A1Z9KS85-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1986654","bacterium TMED181"]]},{"id":"NCBITaxon:1986665","l":"Rhodothermaceae bacterium TMED105","na":1,"nb":1,"a":[["TED%3AAF-A0A424HU99-F1-model_v4_TED01","TED novel fold AF-A0A424HU99-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986665","Rhodothermaceae bacterium TMED105"]]},{"id":"NCBITaxon:1986690","l":"Euryarchaeota archaeon TMED215","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z9NHI6-F1-model_v4_TED01","TED novel fold AF-A0A1Z9NHI6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986690","Euryarchaeota archaeon TMED215"]]},{"id":"NCBITaxon:1986720","l":"Crocinitomicaceae bacterium TMED114","na":1,"nb":1,"a":[["TED%3AAF-A0A3R7U5F4-F1-model_v4_TED02","TED novel fold AF-A0A3R7U5F4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1986720","Crocinitomicaceae bacterium TMED114"]]},{"id":"NCBITaxon:1986728","l":"Crocinitomicaceae bacterium TMED45","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z8S7L6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z8S7L6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986728","Crocinitomicaceae bacterium TMED45"]]},{"id":"NCBITaxon:1986732","l":"Gammaproteobacteria bacterium TMED104","na":1,"nb":1,"a":[["TED%3AAF-A0A3R7SUP8-F1-model_v4_TED05","TED novel fold AF-A0A3R7SUP8-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A1986732","Gammaproteobacteria bacterium TMED104"]]},{"id":"NCBITaxon:1986741","l":"Gammaproteobacteria bacterium TMED182","na":1,"nb":1,"a":[["TED%3AAF-A0A424NLN9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A424NLN9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986741","Gammaproteobacteria bacterium TMED182"]]},{"id":"NCBITaxon:1986754","l":"Gammaproteobacteria bacterium TMED257","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z9RPQ5-F1-model_v4_TED01","TED novel fold AF-A0A1Z9RPQ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986754","Gammaproteobacteria bacterium TMED257"]]},{"id":"NCBITaxon:1986763","l":"Gammaproteobacteria bacterium TMED50","na":1,"nb":1,"a":[["TED%3AAF-A0A424LB35-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A424LB35-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986763","Gammaproteobacteria bacterium TMED50"]]},{"id":"NCBITaxon:1986767","l":"Gammaproteobacteria bacterium TMED78","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z8X4N1-F1-model_v4_TED02","TED novel fold AF-A0A1Z8X4N1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1986767","Gammaproteobacteria bacterium TMED78"]]},{"id":"NCBITaxon:1986771","l":"Gammaproteobacteria bacterium TMED95","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z9AQ58-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1Z9AQ58-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1986771","Gammaproteobacteria bacterium TMED95"]]},{"id":"NCBITaxon:1986772","l":"Cellvibrionales bacterium TMED122","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z9DQ10-F1-model_v4_TED01","TED novel fold AF-A0A1Z9DQ10-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986772","Cellvibrionales bacterium TMED122"]]},{"id":"NCBITaxon:1986779","l":"bacterium TMED198","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z9M4M7-F1-model_v4_TED02","TED novel fold AF-A0A1Z9M4M7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1986779","bacterium TMED198"]]},{"id":"NCBITaxon:1986791","l":"Verrucomicrobia bacterium TMED44","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z8SMK6-F1-model_v4_TED02","TED novel fold AF-A0A1Z8SMK6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1986791","Verrucomicrobia bacterium TMED44"]]},{"id":"NCBITaxon:1986792","l":"Verrucomicrobia bacterium TMED56","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z8U0I2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1Z8U0I2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A1986792","Verrucomicrobia bacterium TMED56"]]},{"id":"NCBITaxon:1986793","l":"Verrucomicrobia bacterium TMED60","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z8VC00-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z8VC00-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986793","Verrucomicrobia bacterium TMED60"]]},{"id":"NCBITaxon:1986810","l":"Candidatus Pelagibacter sp. TMED202","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z9MMV8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z9MMV8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986810","Candidatus Pelagibacter sp. TMED202"]]},{"id":"NCBITaxon:1986818","l":"Pelagibacteraceae bacterium TMED247","na":1,"nb":1,"a":[["TED%3AAF-A0A424JIC6-F1-model_v4_TED02","TED novel fold AF-A0A424JIC6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1986818","Pelagibacteraceae bacterium TMED247"]]},{"id":"NCBITaxon:1986831","l":"Phycisphaeraceae bacterium TMED231","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z9QAB1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Z9QAB1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1986831","Phycisphaeraceae bacterium TMED231"]]},{"id":"NCBITaxon:1986836","l":"Planctomycetaceae bacterium TMED241","na":1,"nb":1,"a":[["TED%3AAF-A0A3R7R3C3-F1-model_v4_TED01","TED novel fold AF-A0A3R7R3C3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986836","Planctomycetaceae bacterium TMED241"]]},{"id":"NCBITaxon:1986837","l":"Planctomycetes bacterium TMED75","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z8YM18-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Z8YM18-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1986837","Planctomycetes bacterium TMED75"]]},{"id":"NCBITaxon:1986838","l":"Flavobacteriaceae bacterium TMED184","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z9K5V7-F1-model_v4_TED02","TED novel fold AF-A0A1Z9K5V7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1986838","Flavobacteriaceae bacterium TMED184"]]},{"id":"NCBITaxon:1986839","l":"Planctomycetia bacterium TMED53","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z8SV58-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Z8SV58-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A1986839","Planctomycetia bacterium TMED53"]]},{"id":"NCBITaxon:1986867","l":"Rickettsiales bacterium TMED131","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z9F225-F1-model_v4_TED01","TED novel fold AF-A0A1Z9F225-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1986867","Rickettsiales bacterium TMED131"]]},{"id":"NCBITaxon:1987493","l":"Vulcanisaeta sp. SCGC AB-777_J10","na":1,"nb":1,"a":[["TED%3AAF-A0A2T9WY00-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T9WY00-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1987493","Vulcanisaeta sp. SCGC AB-777_J10"]]},{"id":"NCBITaxon:1987723","l":"Cellvibrio sp. PSBB006","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y0FT02-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y0FT02-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1987723","Cellvibrio sp. PSBB006"]]},{"id":"NCBITaxon:2003551","l":"Cellulomonas sp. PSBB021","na":1,"nb":1,"a":[["TED%3AAF-A0A222XC97-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A222XC97-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2003551","Cellulomonas sp. PSBB021"]]},{"id":"NCBITaxon:200379","l":"Lentzea flaviverrucosa","na":1,"nb":1,"a":[["TED%3AAF-A0A1H9XTL0-F1-model_v4_TED01","TED novel fold AF-A0A1H9XTL0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A200379","Lentzea flaviverrucosa"]]},{"id":"NCBITaxon:2004468","l":"Armatimonadetes bacterium Uphvl-Ar2","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y0H937-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y0H937-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2004468","Armatimonadetes bacterium Uphvl-Ar2"]]},{"id":"NCBITaxon:2004800","l":"Luteitalea sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A843SUD8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843SUD8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2004800","Luteitalea sp."]]},{"id":"NCBITaxon:2004993","l":"Nitrospira sp. UW-LDO-01","na":1,"nb":1,"a":[["TED%3AAF-A0A256WTA4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A256WTA4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2004993","Nitrospira sp. UW-LDO-01"]]},{"id":"NCBITaxon:2005462","l":"Calothrix sp. NIES-3974","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z4NQR0-F1-model_v4_TED01","TED novel fold AF-A0A1Z4NQR0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2005462","Calothrix sp. NIES-3974"]]},{"id":"NCBITaxon:2005464","l":"Kalymmatonema gypsitolerans NIES-4073","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z4PR78-F1-model_v4_TED01","TED novel fold AF-A0A1Z4PR78-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2005464","Kalymmatonema gypsitolerans NIES-4073"]]},{"id":"NCBITaxon:2005467","l":"Nostoc commune NIES-4072","na":1,"nb":1,"a":[["TED%3AAF-A0A2R5G6A0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2R5G6A0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2005467","Nostoc commune NIES-4072"]]},{"id":"NCBITaxon:2005469","l":"Calothrix sp. NIES-4071","na":1,"nb":1,"a":[["TED%3AAF-A0A2H2XIK6-F1-model_v4_TED02","TED novel fold AF-A0A2H2XIK6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2005469","Calothrix sp. NIES-4071"]]},{"id":"NCBITaxon:2005713","l":"bacterium BMS3Abin05","na":1,"nb":1,"a":[["TED%3AAF-A0A2H6ETN6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H6ETN6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2005713","bacterium BMS3Abin05"]]},{"id":"NCBITaxon:2005716","l":"bacterium BMS3Abin08","na":1,"nb":1,"a":[["TED%3AAF-A0A2H6FHE4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H6FHE4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2005716","bacterium BMS3Abin08"]]},{"id":"NCBITaxon:2007299","l":"Marine Group II euryarchaeote MED-G38","na":1,"nb":1,"a":[["TED%3AAF-A0A2A5VGT3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A5VGT3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2007299","Marine Group II euryarchaeote MED-G38"]]},{"id":"NCBITaxon:2009329","l":"Sagittula sp. P11","na":1,"nb":1,"a":[["TED%3AAF-A0A2K8W7C5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2K8W7C5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2009329","Sagittula sp. P11"]]},{"id":"NCBITaxon:200989","l":"Alkalicoccus saliphilus","na":1,"nb":1,"a":[["TED%3AAF-A0A2T4U9U6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2T4U9U6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A200989","Alkalicoccus saliphilus"]]},{"id":"NCBITaxon:2010949","l":"Dictyoglomus sp. NZ13-RE01","na":1,"nb":1,"a":[["TED%3AAF-A0A2J6XSY7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J6XSY7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2010949","Dictyoglomus sp. NZ13-RE01"]]},{"id":"NCBITaxon:2010972","l":"Caulobacter rhizosphaerae","na":1,"nb":1,"a":[["TED%3AAF-A0A561NW71-F1-model_v4_TED02","TED novel fold AF-A0A561NW71-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2010972","Caulobacter rhizosphaerae"]]},{"id":"NCBITaxon:2011159","l":"Erythrobacter sp. KY5","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z4K0Q8-F1-model_v4_TED01","TED novel fold AF-A0A2Z4K0Q8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2011159","Erythrobacter sp. KY5"]]},{"id":"NCBITaxon:2012491","l":"Promethearchaeota archaeon Loki_b32","na":1,"nb":1,"a":[["TED%3AAF-A0A532TNF4-F1-model_v4_TED01","TED novel fold AF-A0A532TNF4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2012491","Promethearchaeota archaeon Loki_b32"]]},{"id":"NCBITaxon:2012493","l":"Candidatus Heimdallarchaeota archaeon B3_Heim","na":1,"nb":1,"a":[["TED%3AAF-A0A2U3CFI5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U3CFI5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2012493","Candidatus Heimdallarchaeota archaeon B3_Heim"]]},{"id":"NCBITaxon:2012521","l":"Desulfurococcales archaeon ex4484_58","na":1,"nb":1,"a":[["TED%3AAF-A0A256YJU3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A256YJU3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2012521","Desulfurococcales archaeon ex4484_58"]]},{"id":"NCBITaxon:2012528","l":"Thermofilum sp. ex4484_82","na":1,"nb":1,"a":[["TED%3AAF-A0A256XI72-F1-model_v4_TED01","TED novel fold AF-A0A256XI72-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2012528","Thermofilum sp. ex4484_82"]]},{"id":"NCBITaxon:2012679","l":"Janthinobacterium sp. PC23-8","na":1,"nb":1,"a":[["TED%3AAF-A0A255HGE6-F1-model_v4_TED02","TED novel fold AF-A0A255HGE6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2012679","Janthinobacterium sp. PC23-8"]]},{"id":"NCBITaxon:2013086","l":"Alphaproteobacteria bacterium MarineAlpha5_Bin11","na":1,"nb":1,"a":[["TED%3AAF-A0A2S6SGC9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S6SGC9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013086","Alphaproteobacteria bacterium MarineAlpha5_Bin11"]]},{"id":"NCBITaxon:2013106","l":"Alphaproteobacteria bacterium MarineAlpha11_Bin1","na":1,"nb":1,"a":[["TED%3AAF-A0A2S6QD62-F1-model_v4_TED01","TED novel fold AF-A0A2S6QD62-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013106","Alphaproteobacteria bacterium MarineAlpha11_Bin1"]]},{"id":"NCBITaxon:2013647","l":"Actinobacteria bacterium HGW-Actinobacteria-2","na":1,"nb":1,"a":[["TED%3AAF-A0A2N3GG04-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3GG04-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013647","Actinobacteria bacterium HGW-Actinobacteria-2"]]},{"id":"NCBITaxon:2013648","l":"Candidatus Anoxymicrobium japonicum","na":1,"nb":1,"a":[["TED%3AAF-A0A2N3G2B2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N3G2B2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2013648","Candidatus Anoxymicrobium japonicum"]]},{"id":"NCBITaxon:2013651","l":"Actinobacteria bacterium HGW-Actinobacteria-6","na":1,"nb":1,"a":[["TED%3AAF-A0A2N3FKV3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3FKV3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013651","Actinobacteria bacterium HGW-Actinobacteria-6"]]},{"id":"NCBITaxon:2013652","l":"Actinobacteria bacterium HGW-Actinobacteria-7","na":1,"nb":1,"a":[["TED%3AAF-A0A2N3F6T3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N3F6T3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2013652","Actinobacteria bacterium HGW-Actinobacteria-7"]]},{"id":"NCBITaxon:2013661","l":"Alphaproteobacteria bacterium HGW-Alphaproteobacteria-15","na":1,"nb":1,"a":[["TED%3AAF-A0A2N3DK73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3DK73-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013661","Alphaproteobacteria bacterium HGW-Alphaproteobacteria-15"]]},{"id":"NCBITaxon:2013679","l":"Bacteroidetes bacterium HGW-Bacteroidetes-11","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2ZXZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N2ZXZ1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2013679","Bacteroidetes bacterium HGW-Bacteroidetes-11"]]},{"id":"NCBITaxon:2013681","l":"Bacteroidetes bacterium HGW-Bacteroidetes-13","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2ZMI9-F1-model_v4_TED02","TED novel fold AF-A0A2N2ZMI9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2013681","Bacteroidetes bacterium HGW-Bacteroidetes-13"]]},{"id":"NCBITaxon:2013695","l":"Bacteroidetes bacterium HGW-Bacteroidetes-5","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2WTH8-F1-model_v4_TED04","TED novel fold AF-A0A2N2WTH8-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2013695","Bacteroidetes bacterium HGW-Bacteroidetes-5"]]},{"id":"NCBITaxon:2013696","l":"Bacteroidetes bacterium HGW-Bacteroidetes-6","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2WEP0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N2WEP0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013696","Bacteroidetes bacterium HGW-Bacteroidetes-6"]]},{"id":"NCBITaxon:2013698","l":"Bacteroidetes bacterium HGW-Bacteroidetes-8","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2W6N7-F1-model_v4_TED02","TED novel fold AF-A0A2N2W6N7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2013698","Bacteroidetes bacterium HGW-Bacteroidetes-8"]]},{"id":"NCBITaxon:2013699","l":"Bacteroidetes bacterium HGW-Bacteroidetes-9","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2VUD7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N2VUD7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013699","Bacteroidetes bacterium HGW-Bacteroidetes-9"]]},{"id":"NCBITaxon:2013718","l":"Betaproteobacteria bacterium HGW-Betaproteobacteria-6","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2RFL1-F1-model_v4_TED03","TED novel fold AF-A0A2N2RFL1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2013718","Betaproteobacteria bacterium HGW-Betaproteobacteria-6"]]},{"id":"NCBITaxon:2013722","l":"candidate division BRC1 bacterium HGW-BRC1-1","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2PKH8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N2PKH8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013722","candidate division BRC1 bacterium HGW-BRC1-1"]]},{"id":"NCBITaxon:2013724","l":"Chloroflexi bacterium HGW-Chloroflexi-10","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2NZX0-F1-model_v4_TED01","TED novel fold AF-A0A2N2NZX0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013724","Chloroflexi bacterium HGW-Chloroflexi-10"]]},{"id":"NCBITaxon:2013726","l":"Chloroflexi bacterium HGW-Chloroflexi-3","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2NIQ4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N2NIQ4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2013726","Chloroflexi bacterium HGW-Chloroflexi-3"]]},{"id":"NCBITaxon:2013727","l":"Chloroflexi bacterium HGW-Chloroflexi-4","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2N060-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N2N060-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013727","Chloroflexi bacterium HGW-Chloroflexi-4"]]},{"id":"NCBITaxon:2013728","l":"Chloroflexi bacterium HGW-Chloroflexi-5","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2N7D4-F1-model_v4_TED01","TED novel fold AF-A0A2N2N7D4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013728","Chloroflexi bacterium HGW-Chloroflexi-5"]]},{"id":"NCBITaxon:2013731","l":"Chloroflexi bacterium HGW-Chloroflexi-8","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2LRF1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N2LRF1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2013731","Chloroflexi bacterium HGW-Chloroflexi-8"]]},{"id":"NCBITaxon:2013732","l":"Chloroflexi bacterium HGW-Chloroflexi-9","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2LH68-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N2LH68-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013732","Chloroflexi bacterium HGW-Chloroflexi-9"]]},{"id":"NCBITaxon:2013735","l":"Candidatus Cloacimonetes bacterium HGW-Cloacimonetes-3","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2KN82-F1-model_v4_TED03","TED novel fold AF-A0A2N2KN82-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2013735","Candidatus Cloacimonetes bacterium HGW-Cloacimonetes-3"]]},{"id":"NCBITaxon:2013739","l":"Deltaproteobacteria bacterium HGW-Deltaproteobacteria-12","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2KHT3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N2KHT3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013739","Deltaproteobacteria bacterium HGW-Deltaproteobacteria-12"]]},{"id":"NCBITaxon:2013740","l":"Deltaproteobacteria bacterium HGW-Deltaproteobacteria-13","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2J520-F1-model_v4_TED01","TED novel fold AF-A0A2N2J520-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013740","Deltaproteobacteria bacterium HGW-Deltaproteobacteria-13"]]},{"id":"NCBITaxon:2013742","l":"Deltaproteobacteria bacterium HGW-Deltaproteobacteria-15","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2K2M3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2N2K2M3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2013742","Deltaproteobacteria bacterium HGW-Deltaproteobacteria-15"]]},{"id":"NCBITaxon:2013744","l":"Deltaproteobacteria bacterium HGW-Deltaproteobacteria-17","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2IIR5-F1-model_v4_TED01","TED novel fold AF-A0A2N2IIR5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013744","Deltaproteobacteria bacterium HGW-Deltaproteobacteria-17"]]},{"id":"NCBITaxon:2013753","l":"Deltaproteobacteria bacterium HGW-Deltaproteobacteria-3","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2GNY6-F1-model_v4_TED01","TED novel fold AF-A0A2N2GNY6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013753","Deltaproteobacteria bacterium HGW-Deltaproteobacteria-3"]]},{"id":"NCBITaxon:2013771","l":"Firmicutes bacterium HGW-Firmicutes-10","na":1,"nb":1,"a":[["TED%3AAF-A0A2N2DWX9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N2DWX9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013771","Firmicutes bacterium HGW-Firmicutes-10"]]},{"id":"NCBITaxon:2013795","l":"Gammaproteobacteria bacterium HGW-Gammaproteobacteria-13","na":1,"nb":1,"a":[["TED%3AAF-A0A2N1YQ90-F1-model_v4_TED01","TED novel fold AF-A0A2N1YQ90-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013795","Gammaproteobacteria bacterium HGW-Gammaproteobacteria-13"]]},{"id":"NCBITaxon:2013796","l":"Gammaproteobacteria bacterium HGW-Gammaproteobacteria-14","na":1,"nb":1,"a":[["TED%3AAF-A0A2N1YMF6-F1-model_v4_TED01","TED novel fold AF-A0A2N1YMF6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013796","Gammaproteobacteria bacterium HGW-Gammaproteobacteria-14"]]},{"id":"NCBITaxon:2013803","l":"Gammaproteobacteria bacterium HGW-Gammaproteobacteria-7","na":1,"nb":1,"a":[["TED%3AAF-A0A2N1XKF4-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2N1XKF4-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2013803","Gammaproteobacteria bacterium HGW-Gammaproteobacteria-7"]]},{"id":"NCBITaxon:2013807","l":"Candidatus Goldiibacteriota bacterium HGW-Goldbacteria-1","na":1,"nb":1,"a":[["TED%3AAF-A0A2N1W5L2-F1-model_v4_TED02","TED novel fold AF-A0A2N1W5L2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2013807","Candidatus Goldiibacteriota bacterium HGW-Goldbacteria-1"]]},{"id":"NCBITaxon:2013809","l":"Ignavibacteriae bacterium HGW-Ignavibacteriae-2","na":1,"nb":1,"a":[["TED%3AAF-A0A2N1VYC8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N1VYC8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2013809","Ignavibacteriae bacterium HGW-Ignavibacteriae-2"]]},{"id":"NCBITaxon:2013810","l":"Ignavibacteriae bacterium HGW-Ignavibacteriae-3","na":1,"nb":1,"a":[["TED%3AAF-A0A2N1VGV0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N1VGV0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2013810","Ignavibacteriae bacterium HGW-Ignavibacteriae-3"]]},{"id":"NCBITaxon:2013827","l":"Planctomycetes bacterium HGW-Planctomycetes-1","na":1,"nb":1,"a":[["TED%3AAF-A0A2N1UBU3-F1-model_v4_TED03","TED novel fold AF-A0A2N1UBU3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2013827","Planctomycetes bacterium HGW-Planctomycetes-1"]]},{"id":"NCBITaxon:2013832","l":"Spirochaetae bacterium HGW-Spirochaetae-1","na":1,"nb":1,"a":[["TED%3AAF-A0A2N1TKF0-F1-model_v4_TED01","TED novel fold AF-A0A2N1TKF0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013832","Spirochaetae bacterium HGW-Spirochaetae-1"]]},{"id":"NCBITaxon:2013840","l":"Spirochaetae bacterium HGW-Spirochaetae-8","na":1,"nb":1,"a":[["TED%3AAF-A0A2N1RH66-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N1RH66-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013840","Spirochaetae bacterium HGW-Spirochaetae-8"]]},{"id":"NCBITaxon:2013852","l":"Thermoplasmata archaeon HGW-Thermoplasmata-1","na":1,"nb":1,"a":[["TED%3AAF-A0A2I0N8I4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I0N8I4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2013852","Thermoplasmata archaeon HGW-Thermoplasmata-1"]]},{"id":"NCBITaxon:2014292","l":"bacterium (Candidatus Ratteibacteria) CG23_combo_of_CG06-09_8_20_14_all_48_7","na":1,"nb":1,"a":[["TED%3AAF-A0A2G9YDK1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G9YDK1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2014292","bacterium (Candidatus Ratteibacteria) CG23_combo_of_CG06-09_8_20_14_all_48_7"]]},{"id":"NCBITaxon:2014297","l":"bacterium (Candidatus Torokbacteria) CG_4_10_14_0_2_um_filter_35_8","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7TQL4-F1-model_v4_TED01","TED novel fold AF-A0A2M7TQL4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2014297","bacterium (Candidatus Torokbacteria) CG_4_10_14_0_2_um_filter_35_8"]]},{"id":"NCBITaxon:2014305","l":"Elusimicrobia bacterium CG02_land_8_20_14_3_00_37_13","na":1,"nb":1,"a":[["TED%3AAF-A0A2M7DT76-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M7DT76-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2014305","Elusimicrobia bacterium CG02_land_8_20_14_3_00_37_13"]]},{"id":"NCBITaxon:2014309","l":"Elusimicrobia bacterium CG08_land_8_20_14_0_20_51_18","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0ZAE8-F1-model_v4_TED02","TED novel fold AF-A0A2H0ZAE8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2014309","Elusimicrobia bacterium CG08_land_8_20_14_0_20_51_18"]]},{"id":"NCBITaxon:2014312","l":"Elusimicrobia bacterium CG22_combo_CG10-13_8_21_14_all_63_91","na":1,"nb":1,"a":[["TED%3AAF-A0A2H0DIE1-F1-model_v4_TED01","TED novel fold AF-A0A2H0DIE1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2014312","Elusimicrobia bacterium CG22_combo_CG10-13_8_21_14_all_63_91"]]},{"id":"NCBITaxon:2014530","l":"Nostoc sp. 'Peltigera membranacea cyanobiont' 213","na":1,"nb":1,"a":[["TED%3AAF-A0A235IN49-F1-model_v4_TED01","TED novel fold AF-A0A235IN49-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2014530","Nostoc sp. 'Peltigera membranacea cyanobiont' 213"]]},{"id":"NCBITaxon:2014542","l":"Alcanivorax sp. N3-2A","na":1,"nb":1,"a":[["TED%3AAF-A0A220SU57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A220SU57-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2014542","Alcanivorax sp. N3-2A"]]},{"id":"NCBITaxon:2014804","l":"Lewinellaceae bacterium SD302","na":1,"nb":1,"a":[["TED%3AAF-A0A2C6CIY4-F1-model_v4_TED03","TED novel fold AF-A0A2C6CIY4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2014804","Lewinellaceae bacterium SD302"]]},{"id":"NCBITaxon:2014871","l":"Tengunoibacter tsumagoiensis","na":1,"nb":1,"a":[["TED%3AAF-A0A402A5G4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A402A5G4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2014871","Tengunoibacter tsumagoiensis"]]},{"id":"NCBITaxon:2014873","l":"Dictyobacter alpinus","na":1,"nb":1,"a":[["TED%3AAF-A0A402B519-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A402B519-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2014873","Dictyobacter alpinus"]]},{"id":"NCBITaxon:2015348","l":"Burkholderia aenigmatica","na":1,"nb":1,"a":[["TED%3AAF-A0A6J5JM31-F1-model_v4_TED01","TED novel fold AF-A0A6J5JM31-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2015348","Burkholderia aenigmatica"]]},{"id":"NCBITaxon:2015567","l":"Burkholderiales bacterium PBB5","na":1,"nb":1,"a":[["TED%3AAF-A0A257JDH8-F1-model_v4_TED01","TED novel fold AF-A0A257JDH8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2015567","Burkholderiales bacterium PBB5"]]},{"id":"NCBITaxon:2015568","l":"Burkholderiales bacterium PBB6","na":1,"nb":1,"a":[["TED%3AAF-A0A257CAT0-F1-model_v4_TED01","TED novel fold AF-A0A257CAT0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2015568","Burkholderiales bacterium PBB6"]]},{"id":"NCBITaxon:2015569","l":"Alphaproteobacteria bacterium PA1","na":1,"nb":1,"a":[["TED%3AAF-A0A257HS32-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A257HS32-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2015569","Alphaproteobacteria bacterium PA1"]]},{"id":"NCBITaxon:2015574","l":"Chitinophagaceae bacterium BSSC1","na":1,"nb":1,"a":[["TED%3AAF-A0A257HZ02-F1-model_v4_TED02","TED novel fold AF-A0A257HZ02-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2015574","Chitinophagaceae bacterium BSSC1"]]},{"id":"NCBITaxon:2015575","l":"Verrucomicrobiales bacterium VVV1","na":1,"nb":1,"a":[["TED%3AAF-A0A257LZM7-F1-model_v4_TED01","TED novel fold AF-A0A257LZM7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2015575","Verrucomicrobiales bacterium VVV1"]]},{"id":"NCBITaxon:2015578","l":"Rhodobacteraceae bacterium PARR1","na":1,"nb":1,"a":[["TED%3AAF-A0A257EYZ9-F1-model_v4_TED01","TED novel fold AF-A0A257EYZ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2015578","Rhodobacteraceae bacterium PARR1"]]},{"id":"NCBITaxon:2015582","l":"Bacteroidetes bacterium B1(2017)","na":1,"nb":1,"a":[["TED%3AAF-A0A257LBM7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A257LBM7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2015582","Bacteroidetes bacterium B1(2017)"]]},{"id":"NCBITaxon:2015906","l":"Sulfurovum sp. UBA12169","na":1,"nb":1,"a":[["TED%3AAF-A0A2D3WJY5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D3WJY5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2015906","Sulfurovum sp. UBA12169"]]},{"id":"NCBITaxon:2017","l":"Streptoalloteichus hindustanus","na":1,"nb":1,"a":[["Pfam%3APF19581","Glyoxalase superfamily protein"]],"b":[["NCBITaxon%3A2017","Streptoalloteichus hindustanus"]]},{"id":"NCBITaxon:2017133","l":"Candidatus Doudnabacteria bacterium Gr01-1014_77","na":1,"nb":1,"a":[["TED%3AAF-A0A554JA82-F1-model_v4_TED01","TED novel fold AF-A0A554JA82-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2017133","Candidatus Doudnabacteria bacterium Gr01-1014_77"]]},{"id":"NCBITaxon:2017175","l":"Parcubacteria group bacterium Gr01-1014_13","na":1,"nb":1,"a":[["TED%3AAF-A0A554KWI0-F1-model_v4_TED01","TED novel fold AF-A0A554KWI0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2017175","Parcubacteria group bacterium Gr01-1014_13"]]},{"id":"NCBITaxon:2017176","l":"Parcubacteria group bacterium Gr01-1014_17","na":1,"nb":1,"a":[["TED%3AAF-A0A554KV16-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A554KV16-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2017176","Parcubacteria group bacterium Gr01-1014_17"]]},{"id":"NCBITaxon:2017178","l":"Parcubacteria group bacterium Gr01-1014_19","na":1,"nb":1,"a":[["TED%3AAF-A0A554KRN6-F1-model_v4_TED01","TED novel fold AF-A0A554KRN6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2017178","Parcubacteria group bacterium Gr01-1014_19"]]},{"id":"NCBITaxon:2017179","l":"Parcubacteria group bacterium Gr01-1014_20","na":1,"nb":1,"a":[["TED%3AAF-A0A554KPX1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A554KPX1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2017179","Parcubacteria group bacterium Gr01-1014_20"]]},{"id":"NCBITaxon:2017193","l":"Parcubacteria group bacterium Gr01-1014_72","na":1,"nb":1,"a":[["TED%3AAF-A0A554JJ04-F1-model_v4_TED01","TED novel fold AF-A0A554JJ04-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2017193","Parcubacteria group bacterium Gr01-1014_72"]]},{"id":"NCBITaxon:2017194","l":"Parcubacteria group bacterium Gr01-1014_73","na":1,"nb":1,"a":[["TED%3AAF-A0A554JF58-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A554JF58-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2017194","Parcubacteria group bacterium Gr01-1014_73"]]},{"id":"NCBITaxon:2017210","l":"Microgenomates group bacterium Gr01-1014_16","na":1,"nb":1,"a":[["TED%3AAF-A0A554KXD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A554KXD6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2017210","Microgenomates group bacterium Gr01-1014_16"]]},{"id":"NCBITaxon:2017595","l":"Sphingobium sp. D43FB","na":1,"nb":1,"a":[["TED%3AAF-A0A2A3MTG8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2A3MTG8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2017595","Sphingobium sp. D43FB"]]},{"id":"NCBITaxon:2017977","l":"Candidatus Frackibacter sp. WG12","na":1,"nb":1,"a":[["TED%3AAF-A0A1H7Z976-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1H7Z976-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2017977","Candidatus Frackibacter sp. WG12"]]},{"id":"NCBITaxon:2018066","l":"Nocardia sp. FDAARGOS_372","na":1,"nb":1,"a":[["TED%3AAF-A0A2A7UMH0-F1-model_v4_TED01","TED novel fold AF-A0A2A7UMH0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2018066","Nocardia sp. FDAARGOS_372"]]},{"id":"NCBITaxon:2018083","l":"Gelidibacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A6P1DFQ6-F1-model_v4_TED02","TED novel fold AF-A0A6P1DFQ6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2018083","Gelidibacter sp."]]},{"id":"NCBITaxon:201975","l":"Planifilum fimeticola","na":1,"nb":1,"a":[["TED%3AAF-A0A2T0LA62-F1-model_v4_TED02","TED novel fold AF-A0A2T0LA62-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A201975","Planifilum fimeticola"]]},{"id":"NCBITaxon:2020130","l":"Arthrobacter sp. 7749","na":1,"nb":1,"a":[["TED%3AAF-A0A221Q5E5-F1-model_v4_TED01","TED novel fold AF-A0A221Q5E5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2020130","Arthrobacter sp. 7749"]]},{"id":"NCBITaxon:2020875","l":"Methyloprofundus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7R6W8I7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7R6W8I7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2020875","Methyloprofundus sp."]]},{"id":"NCBITaxon:2020902","l":"Ponticaulis sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2D7KCV6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D7KCV6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2020902","Ponticaulis sp."]]},{"id":"NCBITaxon:2020965","l":"Bifidobacterium imperatoris","na":1,"nb":1,"a":[["TED%3AAF-A0A2N5IT75-F1-model_v4_TED01","TED novel fold AF-A0A2N5IT75-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2020965","Bifidobacterium imperatoris"]]},{"id":"NCBITaxon:2021359","l":"Bifidobacteriaceae bacterium NR020","na":1,"nb":1,"a":[["TED%3AAF-A0A3E2CM29-F1-model_v4_TED02","TED novel fold AF-A0A3E2CM29-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2021359","Bifidobacteriaceae bacterium NR020"]]},{"id":"NCBITaxon:2021368","l":"Alcaligenaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7Z0N1X4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Z0N1X4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2021368","Alcaligenaceae bacterium"]]},{"id":"NCBITaxon:2021369","l":"Streptomycetaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y6E5G3-F1-model_v4_TED02","TED novel fold AF-A0A7Y6E5G3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2021369","Streptomycetaceae bacterium"]]},{"id":"NCBITaxon:2021379","l":"Xanthobacteraceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A6I1JZP1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I1JZP1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2021379","Xanthobacteraceae bacterium"]]},{"id":"NCBITaxon:2021380","l":"Propionibacteriaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7W0Y047-F1-model_v4_TED01","TED novel fold AF-A0A7W0Y047-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2021380","Propionibacteriaceae bacterium"]]},{"id":"NCBITaxon:2021862","l":"Labrenzia sp. VG12","na":1,"nb":1,"a":[["TED%3AAF-A0A222F3S5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A222F3S5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2021862","Labrenzia sp. VG12"]]},{"id":"NCBITaxon:2022438","l":"Mongoliibacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A6I7MVY3-F1-model_v4_TED03","TED novel fold AF-A0A6I7MVY3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2022438","Mongoliibacter sp."]]},{"id":"NCBITaxon:2022503","l":"Rhodococcus sp. 02-925g","na":1,"nb":1,"a":[["TED%3AAF-A0A260PY08-F1-model_v4_TED01","TED novel fold AF-A0A260PY08-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2022503","Rhodococcus sp. 02-925g"]]},{"id":"NCBITaxon:2022508","l":"Rhodococcus sp. 06-235-1A","na":1,"nb":1,"a":[["TED%3AAF-A0A260BTG1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A260BTG1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2022508","Rhodococcus sp. 06-235-1A"]]},{"id":"NCBITaxon:2022510","l":"Rhodococcus sp. 06-469-3-2","na":1,"nb":1,"a":[["TED%3AAF-A0A259YZX4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A259YZX4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2022510","Rhodococcus sp. 06-469-3-2"]]},{"id":"NCBITaxon:2022549","l":"Paenibacillus sp. 7516","na":1,"nb":1,"a":[["TED%3AAF-A0A268SAJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A268SAJ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2022549","Paenibacillus sp. 7516"]]},{"id":"NCBITaxon:2023130","l":"Rhodopirellula sp. MGV","na":1,"nb":1,"a":[["TED%3AAF-A0A255R619-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A255R619-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2023130","Rhodopirellula sp. MGV"]]},{"id":"NCBITaxon:2023140","l":"Rhodococcus sp. 15-649-2-2","na":1,"nb":1,"a":[["TED%3AAF-A0A260QPE4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A260QPE4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2023140","Rhodococcus sp. 15-649-2-2"]]},{"id":"NCBITaxon:2023142","l":"Rhodococcus sp. 15-2388-1-1a","na":1,"nb":1,"a":[["TED%3AAF-A0A260RNP9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A260RNP9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2023142","Rhodococcus sp. 15-2388-1-1a"]]},{"id":"NCBITaxon:2023177","l":"Leptospira hartskeerlii","na":1,"nb":1,"a":[["TED%3AAF-A0A2M9XDB6-F1-model_v4_TED05","TED novel fold AF-A0A2M9XDB6-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2023177","Leptospira hartskeerlii"]]},{"id":"NCBITaxon:2023184","l":"Leptospira barantonii","na":1,"nb":1,"a":[["TED%3AAF-A0A2M9Z0J0-F1-model_v4_TED01","TED novel fold AF-A0A2M9Z0J0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2023184","Leptospira barantonii"]]},{"id":"NCBITaxon:2023191","l":"Leptospira perolatii","na":1,"nb":1,"a":[["TED%3AAF-A0A2M9ZJK9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M9ZJK9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2023191","Leptospira perolatii"]]},{"id":"NCBITaxon:2023261","l":"Paracoccus hibiscisoli","na":1,"nb":1,"a":[["TED%3AAF-A0A4U0QR11-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U0QR11-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2023261","Paracoccus hibiscisoli"]]},{"id":"NCBITaxon:2024223","l":"Prevotella sp. P3-122","na":1,"nb":1,"a":[["TED%3AAF-A0A255T1P7-F1-model_v4_TED02","TED novel fold AF-A0A255T1P7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2024223","Prevotella sp. P3-122"]]},{"id":"NCBITaxon:2024228","l":"Prevotella sp. P4-51","na":1,"nb":1,"a":[["TED%3AAF-A0A255UBE8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A255UBE8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024228","Prevotella sp. P4-51"]]},{"id":"NCBITaxon:2024580","l":"Plantactinospora sp. KBS50","na":1,"nb":1,"a":[["TED%3AAF-A0A248YTM1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A248YTM1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024580","Plantactinospora sp. KBS50"]]},{"id":"NCBITaxon:2024823","l":"Altibacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2D9N3K7-F1-model_v4_TED02","TED novel fold AF-A0A2D9N3K7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2024823","Altibacter sp."]]},{"id":"NCBITaxon:2024825","l":"Bermanella sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2D4S3X4-F1-model_v4_TED01","TED novel fold AF-A0A2D4S3X4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024825","Bermanella sp."]]},{"id":"NCBITaxon:2024832","l":"Geminicoccus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2E1V8X3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E1V8X3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2024832","Geminicoccus sp."]]},{"id":"NCBITaxon:2024834","l":"Halioglobus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2E0YYR1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E0YYR1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024834","Halioglobus sp."]]},{"id":"NCBITaxon:2024835","l":"Hirschia sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2E4QUE4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2E4QUE4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024835","Hirschia sp."]]},{"id":"NCBITaxon:2024856","l":"Roseibacillus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2E3N9V4-F1-model_v4_TED01","TED novel fold AF-A0A2E3N9V4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024856","Roseibacillus sp."]]},{"id":"NCBITaxon:2024857","l":"Rubinisphaera sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2E9VTV9-F1-model_v4_TED02","TED novel fold AF-A0A2E9VTV9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2024857","Rubinisphaera sp."]]},{"id":"NCBITaxon:2024860","l":"Spongiibacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2D7WH13-F1-model_v4_TED03","TED novel fold AF-A0A2D7WH13-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2024860","Spongiibacter sp."]]},{"id":"NCBITaxon:2024869","l":"Cyanobium sp. ARS6","na":1,"nb":1,"a":[["TED%3AAF-A0A2D6FHG9-F1-model_v4_TED01","TED novel fold AF-A0A2D6FHG9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024869","Cyanobium sp. ARS6"]]},{"id":"NCBITaxon:2024871","l":"Cyanobium sp. MED843","na":1,"nb":1,"a":[["TED%3AAF-A0A2E1IRI3-F1-model_v4_TED01","TED novel fold AF-A0A2E1IRI3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024871","Cyanobium sp. MED843"]]},{"id":"NCBITaxon:2024963","l":"Caldimicrobium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7C2K5W8-F1-model_v4_TED01","TED novel fold AF-A0A7C2K5W8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2024963","Caldimicrobium sp."]]},{"id":"NCBITaxon:2025307","l":"Sulfuriferula sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y4S8R3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4S8R3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2025307","Sulfuriferula sp."]]},{"id":"NCBITaxon:2025310","l":"Larkinella knui","na":1,"nb":1,"a":[["TED%3AAF-A0A3P1CJC3-F1-model_v4_TED02","TED novel fold AF-A0A3P1CJC3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2025310","Larkinella knui"]]},{"id":"NCBITaxon:2025312","l":"Larkinella rosea","na":1,"nb":1,"a":[["TED%3AAF-A0A3P1BTP9-F1-model_v4_TED04","TED novel fold AF-A0A3P1BTP9-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2025312","Larkinella rosea"]]},{"id":"NCBITaxon:2025808","l":"Vibrio qinghaiensis","na":1,"nb":1,"a":[["TED%3AAF-A0A223N3A8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A223N3A8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2025808","Vibrio qinghaiensis"]]},{"id":"NCBITaxon:2025950","l":"Pseudoalteromonas sp. NBT06-2","na":1,"nb":1,"a":[["TED%3AAF-A0A269PHA2-F1-model_v4_TED01","TED novel fold AF-A0A269PHA2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2025950","Pseudoalteromonas sp. NBT06-2"]]},{"id":"NCBITaxon:2025994","l":"Coniella lustricola","na":1,"nb":1,"a":[["TED%3AAF-A0A2T3AMG3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2T3AMG3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2025994","Coniella lustricola"]]},{"id":"NCBITaxon:2026089","l":"Paenibacillus sp. XY044","na":1,"nb":1,"a":[["TED%3AAF-A0A259TJY4-F1-model_v4_TED01","TED novel fold AF-A0A259TJY4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026089","Paenibacillus sp. XY044"]]},{"id":"NCBITaxon:2026093","l":"Bifidobacteriaceae bacterium NR016","na":1,"nb":1,"a":[["TED%3AAF-A0A3A1XZ64-F1-model_v4_TED03","TED novel fold AF-A0A3A1XZ64-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2026093","Bifidobacteriaceae bacterium NR016"]]},{"id":"NCBITaxon:2026099","l":"Bifidobacteriaceae bacterium WP012","na":1,"nb":1,"a":[["TED%3AAF-A0A3A1X063-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A1X063-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026099","Bifidobacteriaceae bacterium WP012"]]},{"id":"NCBITaxon:2026721","l":"Candidatus Thioglobus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A368C7V5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A368C7V5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026721","Candidatus Thioglobus sp."]]},{"id":"NCBITaxon:2026727","l":"Coxiellaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7D5S2U3-F1-model_v4_TED01","TED novel fold AF-A0A7D5S2U3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026727","Coxiellaceae bacterium"]]},{"id":"NCBITaxon:2026729","l":"Cytophagaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q3NU34-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q3NU34-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026729","Cytophagaceae bacterium"]]},{"id":"NCBITaxon:2026730","l":"Cytophagia bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y6XPG9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y6XPG9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026730","Cytophagia bacterium"]]},{"id":"NCBITaxon:2026737","l":"Ectothiorhodospiraceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7V1D5I9-F1-model_v4_TED02","TED novel fold AF-A0A7V1D5I9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026737","Ectothiorhodospiraceae bacterium"]]},{"id":"NCBITaxon:2026751","l":"Kangiellaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A850KZ63-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A850KZ63-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2026751","Kangiellaceae bacterium"]]},{"id":"NCBITaxon:2026766","l":"Nevskiales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A2E9ZTD0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E9ZTD0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026766","Nevskiales bacterium"]]},{"id":"NCBITaxon:2026793","l":"Spongiibacteraceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A2E7ITB8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E7ITB8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2026793","Spongiibacteraceae bacterium"]]},{"id":"NCBITaxon:2027857","l":"Mariniflexile rhizosphaerae","na":1,"nb":1,"a":[["TED%3AAF-A0A385BUD3-F1-model_v4_TED01","TED novel fold AF-A0A385BUD3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2027857","Mariniflexile rhizosphaerae"]]},{"id":"NCBITaxon:2027860","l":"Mucilaginibacter rubeus","na":1,"nb":1,"a":[["TED%3AAF-A0A364WTV7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A364WTV7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2027860","Mucilaginibacter rubeus"]]},{"id":"NCBITaxon:2028282","l":"Lachnoclostridium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A352NZQ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A352NZQ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2028282","Lachnoclostridium sp."]]},{"id":"NCBITaxon:2029110","l":"Staphylococcus sp. UMB0328","na":1,"nb":1,"a":[["TED%3AAF-A0A2J6P1M1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2J6P1M1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2029110","Staphylococcus sp. UMB0328"]]},{"id":"NCBITaxon:2029166","l":"Stenotrophobium rhamnosiphilum","na":1,"nb":1,"a":[["TED%3AAF-A0A2T5MBE1-F1-model_v4_TED02","TED novel fold AF-A0A2T5MBE1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2029166","Stenotrophobium rhamnosiphilum"]]},{"id":"NCBITaxon:2029678","l":"Pseudoalteromonas sp. HM-SA03","na":1,"nb":1,"a":[["TED%3AAF-A0A2A2UTB2-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A2A2UTB2-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A2029678","Pseudoalteromonas sp. HM-SA03"]]},{"id":"NCBITaxon:2029980","l":"Candidatus Gastranaerophilus sp. (ex Termes propinquus)","na":1,"nb":1,"a":[["TED%3AAF-A0A2L2X4Y5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2L2X4Y5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2029980","Candidatus Gastranaerophilus sp. (ex Termes propinquus)"]]},{"id":"NCBITaxon:2029982","l":"BD1-7 clade bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A5S9PLP5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5S9PLP5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2029982","BD1-7 clade bacterium"]]},{"id":"NCBITaxon:2030815","l":"Marinosulfonomonas sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2G2B7K9-F1-model_v4_TED01","TED novel fold AF-A0A2G2B7K9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2030815","Marinosulfonomonas sp."]]},{"id":"NCBITaxon:2030816","l":"Methylophilaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A3B9L643-F1-model_v4_TED02","TED novel fold AF-A0A3B9L643-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2030816","Methylophilaceae bacterium"]]},{"id":"NCBITaxon:2030825","l":"Thalassobium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2G2Q3F1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G2Q3F1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2030825","Thalassobium sp."]]},{"id":"NCBITaxon:2030882","l":"Thiotrichaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A836TYR7-F1-model_v4_TED01","TED novel fold AF-A0A836TYR7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2030882","Thiotrichaceae bacterium"]]},{"id":"NCBITaxon:2030921","l":"OCS116 cluster bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A2A4YV15-F1-model_v4_TED01","TED novel fold AF-A0A2A4YV15-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2030921","OCS116 cluster bacterium"]]},{"id":"NCBITaxon:2032627","l":"Fodinibius salipaludis","na":1,"nb":1,"a":[["TED%3AAF-A0A2A2G842-F1-model_v4_TED02","TED novel fold AF-A0A2A2G842-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2032627","Fodinibius salipaludis"]]},{"id":"NCBITaxon:203267","l":"Tropheryma whipplei str. Twist","na":1,"nb":1,"a":[["TED%3AAF-Q83GV8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q83GV8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A203267","Tropheryma whipplei str. Twist"]]},{"id":"NCBITaxon:2032688","l":"Candidatus Methanoperedens sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A6A2G2H6-F1-model_v4_TED02","TED novel fold AF-A0A6A2G2H6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2032688","Candidatus Methanoperedens sp."]]},{"id":"NCBITaxon:2033405","l":"Prevotella sp. MGM1","na":1,"nb":1,"a":[["TED%3AAF-A0A2L2WSX7-F1-model_v4_TED01","TED novel fold AF-A0A2L2WSX7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2033405","Prevotella sp. MGM1"]]},{"id":"NCBITaxon:2033491","l":"Bacillus sp. AFS018417","na":1,"nb":1,"a":[["TED%3AAF-A0A2A8SBU7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A8SBU7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2033491","Bacillus sp. AFS018417"]]},{"id":"NCBITaxon:2033507","l":"Bacillus sp. AFS055030","na":1,"nb":1,"a":[["TED%3AAF-A0A2B8TU32-F1-model_v4_TED02","TED novel fold AF-A0A2B8TU32-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2033507","Bacillus sp. AFS055030"]]},{"id":"NCBITaxon:2033588","l":"[Chlorobium] sp. 445","na":1,"nb":1,"a":[["TED%3AAF-A0A2G9SVA7-F1-model_v4_TED01","TED novel fold AF-A0A2G9SVA7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2033588","[Chlorobium] sp. 445"]]},{"id":"NCBITaxon:2035204","l":"Acidovorax sp. 59","na":1,"nb":1,"a":[["TED%3AAF-A0A2G6S5C0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G6S5C0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2035204","Acidovorax sp. 59"]]},{"id":"NCBITaxon:2035214","l":"Chryseobacterium sp. 7","na":1,"nb":1,"a":[["TED%3AAF-A0A497V379-F1-model_v4_TED03","TED novel fold AF-A0A497V379-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2035214","Chryseobacterium sp. 7"]]},{"id":"NCBITaxon:2035247","l":"Micromonospora sp. CNZ309","na":1,"nb":1,"a":[["TED%3AAF-A0A2N3YXM7-F1-model_v4_TED01","TED novel fold AF-A0A2N3YXM7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2035247","Micromonospora sp. CNZ309"]]},{"id":"NCBITaxon:2035402","l":"bacterium HR07","na":1,"nb":1,"a":[["TED%3AAF-A0A2H5VJ00-F1-model_v4_TED01","TED novel fold AF-A0A2H5VJ00-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2035402","bacterium HR07"]]},{"id":"NCBITaxon:2035406","l":"bacterium HR11","na":1,"nb":1,"a":[["TED%3AAF-A0A2H5W7K3-F1-model_v4_TED01","TED novel fold AF-A0A2H5W7K3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2035406","bacterium HR11"]]},{"id":"NCBITaxon:2035410","l":"bacterium HR15","na":1,"nb":1,"a":[["TED%3AAF-A0A2H5WW51-F1-model_v4_TED02","TED novel fold AF-A0A2H5WW51-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2035410","bacterium HR15"]]},{"id":"NCBITaxon:2035411","l":"bacterium HR16","na":1,"nb":1,"a":[["TED%3AAF-A0A2H5X254-F1-model_v4_TED02","TED novel fold AF-A0A2H5X254-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2035411","bacterium HR16"]]},{"id":"NCBITaxon:2035414","l":"bacterium HR19","na":1,"nb":1,"a":[["TED%3AAF-A0A2H5XRY4-F1-model_v4_TED01","TED novel fold AF-A0A2H5XRY4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2035414","bacterium HR19"]]},{"id":"NCBITaxon:2035420","l":"bacterium HR25","na":1,"nb":1,"a":[["TED%3AAF-A0A2H5YNM3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H5YNM3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2035420","bacterium HR25"]]},{"id":"NCBITaxon:2035423","l":"bacterium HR28","na":1,"nb":1,"a":[["TED%3AAF-A0A2H5Z688-F1-model_v4_TED01","TED novel fold AF-A0A2H5Z688-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2035423","bacterium HR28"]]},{"id":"NCBITaxon:2035424","l":"bacterium HR29","na":1,"nb":1,"a":[["TED%3AAF-A0A2H5ZFH6-F1-model_v4_TED01","TED novel fold AF-A0A2H5ZFH6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2035424","bacterium HR29"]]},{"id":"NCBITaxon:2035425","l":"bacterium HR30","na":1,"nb":1,"a":[["TED%3AAF-A0A2H5ZKE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H5ZKE6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2035425","bacterium HR30"]]},{"id":"NCBITaxon:2035428","l":"bacterium HR33","na":1,"nb":1,"a":[["TED%3AAF-A0A2H6A5T7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2H6A5T7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2035428","bacterium HR33"]]},{"id":"NCBITaxon:2035431","l":"bacterium HR36","na":1,"nb":1,"a":[["TED%3AAF-A0A2H6AAW5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2H6AAW5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2035431","bacterium HR36"]]},{"id":"NCBITaxon:2035432","l":"bacterium HR37","na":1,"nb":1,"a":[["TED%3AAF-A0A2H6AM83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2H6AM83-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2035432","bacterium HR37"]]},{"id":"NCBITaxon:2037900","l":"Mesorhizobium sanjuanii","na":1,"nb":1,"a":[["TED%3AAF-A0A2A6FDQ4-F1-model_v4_TED01","TED novel fold AF-A0A2A6FDQ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2037900","Mesorhizobium sanjuanii"]]},{"id":"NCBITaxon:2038111","l":"Ochrobactrum sp. 30A/1000/2015","na":1,"nb":1,"a":[["TED%3AAF-A0A855GK25-F1-model_v4_TED02","TED novel fold AF-A0A855GK25-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2038111","Ochrobactrum sp. 30A/1000/2015"]]},{"id":"NCBITaxon:2038116","l":"Nostoc flagelliforme CCNUN1","na":1,"nb":1,"a":[["TED%3AAF-A0A2K8SJD5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2K8SJD5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2038116","Nostoc flagelliforme CCNUN1"]]},{"id":"NCBITaxon:2038371","l":"Imperialibacter sp. EC-SDR9","na":1,"nb":1,"a":[["TED%3AAF-A0A5E7YW92-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5E7YW92-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2038371","Imperialibacter sp. EC-SDR9"]]},{"id":"NCBITaxon:2038396","l":"Erythrobacter sp. EC-HK427","na":1,"nb":1,"a":[["TED%3AAF-A0A5E7Z5E0-F1-model_v4_TED02","TED novel fold AF-A0A5E7Z5E0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2038396","Erythrobacter sp. EC-HK427"]]},{"id":"NCBITaxon:2039167","l":"Sulfobacillus sp. hq2","na":1,"nb":1,"a":[["TED%3AAF-A0A2S3QD68-F1-model_v4_TED01","TED novel fold AF-A0A2S3QD68-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2039167","Sulfobacillus sp. hq2"]]},{"id":"NCBITaxon:2039283","l":"endosymbiont GvMRE of Glomus versiforme","na":1,"nb":1,"a":[["TED%3AAF-A0A397FSL0-F1-model_v4_TED01","TED novel fold AF-A0A397FSL0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2039283","endosymbiont GvMRE of Glomus versiforme"]]},{"id":"NCBITaxon:2039284","l":"Bacillus fungorum","na":1,"nb":1,"a":[["TED%3AAF-A0A2G6QK95-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G6QK95-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2039284","Bacillus fungorum"]]},{"id":"NCBITaxon:2039337","l":"Campylobacter sp. 113","na":1,"nb":1,"a":[["TED%3AAF-A0A2A4L7S7-F1-model_v4_TED02","TED novel fold AF-A0A2A4L7S7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2039337","Campylobacter sp. 113"]]},{"id":"NCBITaxon:2039874","l":"Ophiocordyceps camponoti-saundersi (nom. inval.)","na":1,"nb":1,"a":[["TED%3AAF-A0A369H6B4-F1-model_v4_TED01","TED novel fold AF-A0A369H6B4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2039874","Ophiocordyceps camponoti-saundersi (nom. inval.)"]]},{"id":"NCBITaxon:2039875","l":"Ophiocordyceps camponoti-leonardi (nom. inval.)","na":1,"nb":1,"a":[["TED%3AAF-A0A369GP28-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A369GP28-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2039875","Ophiocordyceps camponoti-leonardi (nom. inval.)"]]},{"id":"NCBITaxon:2040649","l":"Helicobacter sp. MIT 14-3879","na":1,"nb":1,"a":[["TED%3AAF-A0A3D8IJY0-F1-model_v4_TED01","TED novel fold AF-A0A3D8IJY0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2040649","Helicobacter sp. MIT 14-3879"]]},{"id":"NCBITaxon:2040653","l":"Campylobacter sp. BCW_8712","na":1,"nb":1,"a":[["TED%3AAF-A0A2A5MAG2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A5MAG2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2040653","Campylobacter sp. BCW_8712"]]},{"id":"NCBITaxon:2041346","l":"Chryseomicrobium excrementi","na":1,"nb":1,"a":[["TED%3AAF-A0A2M9EYZ0-F1-model_v4_TED02","TED novel fold AF-A0A2M9EYZ0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2041346","Chryseomicrobium excrementi"]]},{"id":"NCBITaxon:2041385","l":"Arminella tumorigenes","na":1,"nb":1,"a":[["TED%3AAF-A0A2W4B1G5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W4B1G5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2041385","Arminella tumorigenes"]]},{"id":"NCBITaxon:2042683","l":"Olsenella sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A356G3I0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A356G3I0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2042683","Olsenella sp."]]},{"id":"NCBITaxon:2043161","l":"Candidatus Sulfuritelmatomonas gaucii","na":1,"nb":1,"a":[["TED%3AAF-A0A2N9L7E4-F1-model_v4_TED02","TED novel fold AF-A0A2N9L7E4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2043161","Candidatus Sulfuritelmatomonas gaucii"]]},{"id":"NCBITaxon:2043162","l":"Acidobacteriia bacterium SbA2","na":1,"nb":1,"a":[["TED%3AAF-A0A2N9MFY0-F1-model_v4_TED03","TED novel fold AF-A0A2N9MFY0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2043162","Acidobacteriia bacterium SbA2"]]},{"id":"NCBITaxon:2043164","l":"Candidatus Sulfopaludibacter sp. SbA3","na":1,"nb":1,"a":[["TED%3AAF-A0A2N9MMJ4-F1-model_v4_TED02","TED novel fold AF-A0A2N9MMJ4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2043164","Candidatus Sulfopaludibacter sp. SbA3"]]},{"id":"NCBITaxon:2043170","l":"Paremcibacter congregatus","na":1,"nb":1,"a":[["TED%3AAF-A0A2G4YR47-F1-model_v4_TED04","TED novel fold AF-A0A2G4YR47-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2043170","Paremcibacter congregatus"]]},{"id":"NCBITaxon:2044587","l":"Schaedlerella arabinosiphila","na":1,"nb":1,"a":[["TED%3AAF-A0A3R8L015-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R8L015-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2044587","Schaedlerella arabinosiphila"]]},{"id":"NCBITaxon:2044591","l":"Candidatus Fermentibacterota bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A2G6LTX2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2G6LTX2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2044591","Candidatus Fermentibacterota bacterium"]]},{"id":"NCBITaxon:2044729","l":"Candidatus Nephrothrix sp. EaCA","na":1,"nb":1,"a":[["TED%3AAF-A0A2B8A3B7-F1-model_v4_TED02","TED novel fold AF-A0A2B8A3B7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2044729","Candidatus Nephrothrix sp. EaCA"]]},{"id":"NCBITaxon:2045207","l":"Salipaludibacillus keqinensis","na":1,"nb":1,"a":[["TED%3AAF-A0A323TPP0-F1-model_v4_TED01","TED novel fold AF-A0A323TPP0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2045207","Salipaludibacillus keqinensis"]]},{"id":"NCBITaxon:2045210","l":"Pollutimonas subterranea","na":1,"nb":1,"a":[["TED%3AAF-A0A2N4U398-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2N4U398-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2045210","Pollutimonas subterranea"]]},{"id":"NCBITaxon:2045244","l":"Alteribacter lacisalsi","na":1,"nb":1,"a":[["TED%3AAF-A0A2W0H3Z1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W0H3Z1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2045244","Alteribacter lacisalsi"]]},{"id":"NCBITaxon:2045279","l":"Thermogemmatispora aurantia","na":1,"nb":1,"a":[["TED%3AAF-A0A5J4K5T4-F1-model_v4_TED01","TED novel fold AF-A0A5J4K5T4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2045279","Thermogemmatispora aurantia"]]},{"id":"NCBITaxon:2045280","l":"Thermogemmatispora argillosa","na":1,"nb":1,"a":[["TED%3AAF-A0A455T6B0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A455T6B0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2045280","Thermogemmatispora argillosa"]]},{"id":"NCBITaxon:2045438","l":"Bifidobacterium primatium","na":1,"nb":1,"a":[["TED%3AAF-A0A2M9H9T9-F1-model_v4_TED01","TED novel fold AF-A0A2M9H9T9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2045438","Bifidobacterium primatium"]]},{"id":"NCBITaxon:2047982","l":"Aquimarina algiphila","na":1,"nb":1,"a":[["TED%3AAF-A0A554VHH6-F1-model_v4_TED01","TED novel fold AF-A0A554VHH6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2047982","Aquimarina algiphila"]]},{"id":"NCBITaxon:2048264","l":"Sporosarcina sp. P10","na":1,"nb":1,"a":[["TED%3AAF-A0A2G5VZ33-F1-model_v4_TED02","TED novel fold AF-A0A2G5VZ33-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2048264","Sporosarcina sp. P10"]]},{"id":"NCBITaxon:2048283","l":"Thalassospira marina","na":1,"nb":1,"a":[["TED%3AAF-A0A2N3KSX3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3KSX3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2048283","Thalassospira marina"]]},{"id":"NCBITaxon:2048897","l":"Rhizobium sp. NXC24","na":1,"nb":1,"a":[["TED%3AAF-A0A2L0WEX0-F1-model_v4_TED02","TED novel fold AF-A0A2L0WEX0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2048897","Rhizobium sp. NXC24"]]},{"id":"NCBITaxon:204891","l":"Nocardia iowensis","na":1,"nb":1,"a":[["Pfam%3APF17837","4'-phosphopantetheinyl transferase N-terminal domain"]],"b":[["NCBITaxon%3A204891","Nocardia iowensis"]]},{"id":"NCBITaxon:2048971","l":"Hahellaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A2D8RI32-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2D8RI32-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2048971","Hahellaceae bacterium"]]},{"id":"NCBITaxon:2049028","l":"Granulicatella sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A420YQP7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A420YQP7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2049028","Granulicatella sp."]]},{"id":"NCBITaxon:2049043","l":"Desulfovibrionaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A2V2FVR0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2V2FVR0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2049043","Desulfovibrionaceae bacterium"]]},{"id":"NCBITaxon:2049047","l":"Prevotellaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A3D1KHR1-F1-model_v4_TED02","TED novel fold AF-A0A3D1KHR1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2049047","Prevotellaceae bacterium"]]},{"id":"NCBITaxon:2049432","l":"Chromatiaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7C7GTU1-F1-model_v4_TED02","TED novel fold AF-A0A7C7GTU1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2049432","Chromatiaceae bacterium"]]},{"id":"NCBITaxon:2052161","l":"Gallionella sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A849TGY6-F1-model_v4_TED01","TED novel fold AF-A0A849TGY6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052161","Gallionella sp."]]},{"id":"NCBITaxon:2052162","l":"Gallionellaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A5C9BKD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C9BKD6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052162","Gallionellaceae bacterium"]]},{"id":"NCBITaxon:2052183","l":"Spartobacteria bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A3B9LF62-F1-model_v4_TED02","TED novel fold AF-A0A3B9LF62-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2052183","Spartobacteria bacterium"]]},{"id":"NCBITaxon:2052315","l":"Candidatus Dormiibacterota bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A849IWX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A849IWX4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052315","Candidatus Dormiibacterota bacterium"]]},{"id":"NCBITaxon:2052574","l":"Clostridium sp. CT7","na":1,"nb":1,"a":[["TED%3AAF-A0A2M8T781-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M8T781-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052574","Clostridium sp. CT7"]]},{"id":"NCBITaxon:2052832","l":"Methanofollis fontis","na":1,"nb":1,"a":[["TED%3AAF-A0A483CTM5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A483CTM5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2052832","Methanofollis fontis"]]},{"id":"NCBITaxon:205332","l":"Agromyces albus","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q2L130-F1-model_v4_TED02","TED novel fold AF-A0A4Q2L130-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A205332","Agromyces albus"]]},{"id":"NCBITaxon:2053492","l":"Accumulibacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A3D6DR04-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D6DR04-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053492","Accumulibacter sp."]]},{"id":"NCBITaxon:2053503","l":"Aquificaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7C7UV79-F1-model_v4_TED02","TED novel fold AF-A0A7C7UV79-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053503","Aquificaceae bacterium"]]},{"id":"NCBITaxon:2053509","l":"Candidatus Atribacteria bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7T1AN42-F1-model_v4_TED02","TED novel fold AF-A0A7T1AN42-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053509","Candidatus Atribacteria bacterium"]]},{"id":"NCBITaxon:2053519","l":"Candidatus Beckwithbacteria bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7X9DC36-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7X9DC36-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053519","Candidatus Beckwithbacteria bacterium"]]},{"id":"NCBITaxon:2053526","l":"candidate division WWE3 bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7X9HHD0-F1-model_v4_TED02","TED novel fold AF-A0A7X9HHD0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053526","candidate division WWE3 bacterium"]]},{"id":"NCBITaxon:2053534","l":"Cloacimonas sp. (SeqCode)","na":1,"nb":1,"a":[["TED%3AAF-A0A3D3F014-F1-model_v4_TED01","TED novel fold AF-A0A3D3F014-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053534","Cloacimonas sp. (SeqCode)"]]},{"id":"NCBITaxon:2053540","l":"Candidatus Collierbacteria bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A352JLT2-F1-model_v4_TED02","TED novel fold AF-A0A352JLT2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053540","Candidatus Collierbacteria bacterium"]]},{"id":"NCBITaxon:2053559","l":"Holosporales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A3D4YDA4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D4YDA4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053559","Holosporales bacterium"]]},{"id":"NCBITaxon:2053568","l":"Lautropia sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A660NSB6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A660NSB6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053568","Lautropia sp."]]},{"id":"NCBITaxon:2053573","l":"Candidatus Margulisiibacteriota bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A2W4I621-F1-model_v4_TED02","TED novel fold AF-A0A2W4I621-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053573","Candidatus Margulisiibacteriota bacterium"]]},{"id":"NCBITaxon:2053589","l":"Minisyncoccota bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A847W871-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A847W871-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053589","Minisyncoccota bacterium"]]},{"id":"NCBITaxon:2053605","l":"Richelia sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A3B9F8L2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B9F8L2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053605","Richelia sp."]]},{"id":"NCBITaxon:2053608","l":"Ruminiclostridium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A357AL72-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A357AL72-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2053608","Ruminiclostridium sp."]]},{"id":"NCBITaxon:2053613","l":"Candidatus Shapirobacteria bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A420ZAT9-F1-model_v4_TED01","TED novel fold AF-A0A420ZAT9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053613","Candidatus Shapirobacteria bacterium"]]},{"id":"NCBITaxon:2053614","l":"Smithella sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A847ZAC5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A847ZAC5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2053614","Smithella sp."]]},{"id":"NCBITaxon:2053618","l":"Subdoligranulum sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A316SM40-F1-model_v4_TED01","TED novel fold AF-A0A316SM40-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053618","Subdoligranulum sp."]]},{"id":"NCBITaxon:2053622","l":"Sulfurospirillum sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A432SPG8-F1-model_v4_TED01","TED novel fold AF-A0A432SPG8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053622","Sulfurospirillum sp."]]},{"id":"NCBITaxon:2053632","l":"Tyzzerella sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A352UU01-F1-model_v4_TED01","TED novel fold AF-A0A352UU01-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053632","Tyzzerella sp."]]},{"id":"NCBITaxon:2053634","l":"Candidatus Uhrbacteria bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7C2PD08-F1-model_v4_TED01","TED novel fold AF-A0A7C2PD08-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053634","Candidatus Uhrbacteria bacterium"]]},{"id":"NCBITaxon:2053636","l":"Candidatus Veblenbacteria bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A353WER2-F1-model_v4_TED01","TED novel fold AF-A0A353WER2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053636","Candidatus Veblenbacteria bacterium"]]},{"id":"NCBITaxon:2053688","l":"Candidatus Peribacteria bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A847HPS2-F1-model_v4_TED01","TED novel fold AF-A0A847HPS2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053688","Candidatus Peribacteria bacterium"]]},{"id":"NCBITaxon:2053689","l":"Thermotogota bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A3D6DD65-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D6DD65-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2053689","Thermotogota bacterium"]]},{"id":"NCBITaxon:2055137","l":"Caulobacter zeae","na":1,"nb":1,"a":[["TED%3AAF-A0A2N5DL77-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A2N5DL77-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2055137","Caulobacter zeae"]]},{"id":"NCBITaxon:2055770","l":"Cyanobacteria bacterium UBA11371","na":1,"nb":1,"a":[["TED%3AAF-A0A351LC38-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A351LC38-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2055770","Cyanobacteria bacterium UBA11371"]]},{"id":"NCBITaxon:2055781","l":"Cyanobacteria bacterium UBA11162","na":1,"nb":1,"a":[["TED%3AAF-A0A355DKP6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A355DKP6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2055781","Cyanobacteria bacterium UBA11162"]]},{"id":"NCBITaxon:2055789","l":"Cyanobacteria bacterium UBA11991","na":1,"nb":1,"a":[["TED%3AAF-A0A3D0SIN7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3D0SIN7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2055789","Cyanobacteria bacterium UBA11991"]]},{"id":"NCBITaxon:2055790","l":"Cyanobacteria bacterium UBA8530","na":1,"nb":1,"a":[["TED%3AAF-A0A355UMI2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A355UMI2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2055790","Cyanobacteria bacterium UBA8530"]]},{"id":"NCBITaxon:2055793","l":"Microcoleaceae cyanobacterium UBA10368","na":1,"nb":1,"a":[["TED%3AAF-A0A355CGN5-F1-model_v4_TED01","TED novel fold AF-A0A355CGN5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2055793","Microcoleaceae cyanobacterium UBA10368"]]},{"id":"NCBITaxon:2055798","l":"Synechococcales bacterium UBA12195","na":1,"nb":1,"a":[["TED%3AAF-A0A3D5HXG3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D5HXG3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2055798","Synechococcales bacterium UBA12195"]]},{"id":"NCBITaxon:2055944","l":"Synechococcus sp. BS56D","na":1,"nb":1,"a":[["TED%3AAF-A0A4R0QZ59-F1-model_v4_TED06","TED novel fold AF-A0A4R0QZ59-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A2055944","Synechococcus sp. BS56D"]]},{"id":"NCBITaxon:2055947","l":"Corynebacterium heidelbergense","na":1,"nb":1,"a":[["TED%3AAF-A0A364V5T8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A364V5T8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2055947","Corynebacterium heidelbergense"]]},{"id":"NCBITaxon:2056840","l":"Stenotrophomonas sp. HMWF003","na":1,"nb":1,"a":[["TED%3AAF-A0A2R7QKN8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2R7QKN8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2056840","Stenotrophomonas sp. HMWF003"]]},{"id":"NCBITaxon:2056843","l":"Pseudomonas sp. HMWF006","na":1,"nb":1,"a":[["TED%3AAF-A0A2R7KA25-F1-model_v4_TED01","TED novel fold AF-A0A2R7KA25-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2056843","Pseudomonas sp. HMWF006"]]},{"id":"NCBITaxon:2056855","l":"Acidovorax sp. HMWF018","na":1,"nb":1,"a":[["TED%3AAF-A0A2R7NJV7-F1-model_v4_TED01","TED novel fold AF-A0A2R7NJV7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2056855","Acidovorax sp. HMWF018"]]},{"id":"NCBITaxon:2057025","l":"Spirosoma pollinicola","na":1,"nb":1,"a":[["TED%3AAF-A0A2K8YWY0-F1-model_v4_TED02","TED novel fold AF-A0A2K8YWY0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2057025","Spirosoma pollinicola"]]},{"id":"NCBITaxon:2057180","l":"Rahnella sp. AA","na":1,"nb":1,"a":[["TED%3AAF-A0A2N0VY06-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N0VY06-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2057180","Rahnella sp. AA"]]},{"id":"NCBITaxon:2058089","l":"Psychromonas sp. psych-6C06","na":1,"nb":1,"a":[["TED%3AAF-A0A2N0X161-F1-model_v4_TED03","TED novel fold AF-A0A2N0X161-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2058089","Psychromonas sp. psych-6C06"]]},{"id":"NCBITaxon:2058095","l":"Meiothermus sp. QL-1","na":1,"nb":1,"a":[["TED%3AAF-A0A370JWS2-F1-model_v4_TED02","TED novel fold AF-A0A370JWS2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2058095","Meiothermus sp. QL-1"]]},{"id":"NCBITaxon:2058213","l":"Hyphococcus luteus","na":1,"nb":1,"a":[["TED%3AAF-A0A2S7K4V3-F1-model_v4_TED03","TED novel fold AF-A0A2S7K4V3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2058213","Hyphococcus luteus"]]},{"id":"NCBITaxon:2058214","l":"Rummeliibacillus sp. TYF005","na":1,"nb":1,"a":[["TED%3AAF-A0A3N5ZX25-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N5ZX25-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2058214","Rummeliibacillus sp. TYF005"]]},{"id":"NCBITaxon:2058325","l":"Psychrobacter sp. Sarcosine-3u-12","na":1,"nb":1,"a":[["TED%3AAF-A0A2N0ZU59-F1-model_v4_TED01","TED novel fold AF-A0A2N0ZU59-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2058325","Psychrobacter sp. Sarcosine-3u-12"]]},{"id":"NCBITaxon:2058390","l":"Silicimonas sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A849G7Z3-F1-model_v4_TED01","TED novel fold AF-A0A849G7Z3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2058390","Silicimonas sp."]]},{"id":"NCBITaxon:2058625","l":"Undibacterium sp. YM2","na":1,"nb":1,"a":[["TED%3AAF-A0A809QK39-F1-model_v4_TED02","TED novel fold AF-A0A809QK39-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2058625","Undibacterium sp. YM2"]]},{"id":"NCBITaxon:205918","l":"Pseudomonas syringae pv. syringae B728a","na":1,"nb":1,"a":[["Pfam%3APF15457","Type III T3SS secreted effector HopW1-1/HopPmaA"]],"b":[["NCBITaxon%3A205918","Pseudomonas syringae pv. syringae B728a"]]},{"id":"NCBITaxon:205922","l":"Pseudomonas fluorescens Pf0-1","na":1,"nb":1,"a":[["Pfam%3APF07927","HicA toxin of bacterial toxin-antitoxin,"]],"b":[["NCBITaxon%3A205922","Pseudomonas fluorescens Pf0-1"]]},{"id":"NCBITaxon:2059268","l":"Paenibacillus sp. GM2FR","na":1,"nb":1,"a":[["TED%3AAF-A0A2M9MKD6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2M9MKD6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2059268","Paenibacillus sp. GM2FR"]]},{"id":"NCBITaxon:2059302","l":"Pseudochryseolinea flava","na":1,"nb":1,"a":[["TED%3AAF-A0A364XWK5-F1-model_v4_TED01","TED novel fold AF-A0A364XWK5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2059302","Pseudochryseolinea flava"]]},{"id":"NCBITaxon:2059318","l":"Histoplasma mississippiense","na":1,"nb":1,"a":[["Pfam%3APF10153","rRNA-processing protein Efg1"]],"b":[["NCBITaxon%3A2059318","Histoplasma mississippiense"]]},{"id":"NCBITaxon:2059726","l":"Maribacter litoralis","na":1,"nb":1,"a":[["TED%3AAF-A0A653TP48-F1-model_v4_TED01","TED novel fold AF-A0A653TP48-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2059726","Maribacter litoralis"]]},{"id":"NCBITaxon:2060068","l":"Chimaeribacter coloradensis","na":1,"nb":1,"a":[["TED%3AAF-A0A2N5EBC2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N5EBC2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2060068","Chimaeribacter coloradensis"]]},{"id":"NCBITaxon:2060919","l":"Cyanobacteria bacterium UBA10660","na":1,"nb":1,"a":[["TED%3AAF-A0A349HXT9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A349HXT9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2060919","Cyanobacteria bacterium UBA10660"]]},{"id":"NCBITaxon:2060922","l":"Persephonella sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A432RZ01-F1-model_v4_TED01","TED novel fold AF-A0A432RZ01-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2060922","Persephonella sp."]]},{"id":"NCBITaxon:2064643","l":"Oxynema aestuarii AP17","na":1,"nb":1,"a":[["TED%3AAF-A0A6H1U0N3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6H1U0N3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2064643","Oxynema aestuarii AP17"]]},{"id":"NCBITaxon:206506","l":"Kerstersia gyiorum","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q7MWT5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Q7MWT5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A206506","Kerstersia gyiorum"]]},{"id":"NCBITaxon:2065820","l":"Hydrogenovibrio sp. SC-1","na":1,"nb":1,"a":[["TED%3AAF-A0A2I2A6S0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2I2A6S0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2065820","Hydrogenovibrio sp. SC-1"]]},{"id":"NCBITaxon:2066022","l":"Burkholderia sp. WAC0059","na":1,"nb":1,"a":[["TED%3AAF-A0A2J6MTA7-F1-model_v4_TED02","TED novel fold AF-A0A2J6MTA7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2066022","Burkholderia sp. WAC0059"]]},{"id":"NCBITaxon:2066514","l":"Pseudoalteromonas sp. S1727","na":1,"nb":1,"a":[["TED%3AAF-A0A5S3RMS3-F1-model_v4_TED01","TED novel fold AF-A0A5S3RMS3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2066514","Pseudoalteromonas sp. S1727"]]},{"id":"NCBITaxon:206672","l":"Bifidobacterium longum NCC2705","na":1,"nb":1,"a":[["Pfam%3APF05258","Dna[CI] antecedent, DciA"]],"b":[["NCBITaxon%3A206672","Bifidobacterium longum NCC2705"]]},{"id":"NCBITaxon:2067415","l":"Altererythrobacter sp. TH136","na":1,"nb":1,"a":[["TED%3AAF-A0A515LBQ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A515LBQ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2067415","Altererythrobacter sp. TH136"]]},{"id":"NCBITaxon:2067454","l":"Emticicia sp. TH156","na":1,"nb":1,"a":[["TED%3AAF-A0A2N4X6Y8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N4X6Y8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2067454","Emticicia sp. TH156"]]},{"id":"NCBITaxon:2067553","l":"Halobacteriovorax sp. DA5","na":1,"nb":1,"a":[["TED%3AAF-A0A2S3QQ47-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S3QQ47-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2067553","Halobacteriovorax sp. DA5"]]},{"id":"NCBITaxon:2068624","l":"Zymomonas sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A519E950-F1-model_v4_TED02","TED novel fold AF-A0A519E950-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2068624","Zymomonas sp."]]},{"id":"NCBITaxon:2068625","l":"Candidatus Solibacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7C5AV84-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7C5AV84-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2068625","Candidatus Solibacter sp."]]},{"id":"NCBITaxon:2070510","l":"Arundinibacter roseus","na":1,"nb":1,"a":[["TED%3AAF-A0A4R4KBS1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R4KBS1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2070510","Arundinibacter roseus"]]},{"id":"NCBITaxon:2070537","l":"Commensalibacter melissae","na":1,"nb":1,"a":[["TED%3AAF-A0A318MV83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A318MV83-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2070537","Commensalibacter melissae"]]},{"id":"NCBITaxon:2070539","l":"Gammaproteobacteria bacterium ESL0073","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z3I9A8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2Z3I9A8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2070539","Gammaproteobacteria bacterium ESL0073"]]},{"id":"NCBITaxon:2070776","l":"Vibrio sp. F12","na":1,"nb":1,"a":[["TED%3AAF-A0A4U1WMF5-F1-model_v4_TED04","TED novel fold AF-A0A4U1WMF5-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2070776","Vibrio sp. F12"]]},{"id":"NCBITaxon:2072414","l":"Stenotrophomonas sp. ESTM1D_MKCIP4_1","na":1,"nb":1,"a":[["TED%3AAF-A0A3S7KS92-F1-model_v4_TED01","TED novel fold AF-A0A3S7KS92-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2072414","Stenotrophomonas sp. ESTM1D_MKCIP4_1"]]},{"id":"NCBITaxon:2072847","l":"Adhaeribacter pallidiroseus","na":1,"nb":1,"a":[["TED%3AAF-A0A369QQQ0-F1-model_v4_TED01","TED novel fold AF-A0A369QQQ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2072847","Adhaeribacter pallidiroseus"]]},{"id":"NCBITaxon:2073169","l":"Chromobacterium alticapitis","na":1,"nb":1,"a":[["TED%3AAF-A0A2S5DB94-F1-model_v4_TED01","TED novel fold AF-A0A2S5DB94-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2073169","Chromobacterium alticapitis"]]},{"id":"NCBITaxon:2077091","l":"Flavipsychrobacter stenotrophus","na":1,"nb":1,"a":[["TED%3AAF-A0A2S7T2Z8-F1-model_v4_TED01","TED novel fold AF-A0A2S7T2Z8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2077091","Flavipsychrobacter stenotrophus"]]},{"id":"NCBITaxon:2077204","l":"Haloferax sp. Atlit-10N","na":1,"nb":1,"a":[["TED%3AAF-A0A371M5H9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A371M5H9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2077204","Haloferax sp. Atlit-10N"]]},{"id":"NCBITaxon:2077205","l":"Haloferax sp. Atlit-6N","na":1,"nb":1,"a":[["TED%3AAF-A0A371MXI1-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A371MXI1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2077205","Haloferax sp. Atlit-6N"]]},{"id":"NCBITaxon:2078593","l":"Colletotrichum shisoi","na":1,"nb":1,"a":[["TED%3AAF-A0A5Q4BJG2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5Q4BJG2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2078593","Colletotrichum shisoi"]]},{"id":"NCBITaxon:2079792","l":"Mycetocola zhujimingii","na":1,"nb":1,"a":[["TED%3AAF-A0A2U1TCR4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2U1TCR4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2079792","Mycetocola zhujimingii"]]},{"id":"NCBITaxon:2080243","l":"Caldivirga sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7C2YMM7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C2YMM7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2080243","Caldivirga sp."]]},{"id":"NCBITaxon:2080452","l":"bacterium MnTg02","na":1,"nb":1,"a":[["TED%3AAF-A0A5J4E0H8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5J4E0H8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2080452","bacterium MnTg02"]]},{"id":"NCBITaxon:2080664","l":"Enterobacter cloacae complex sp. ECNIH14","na":1,"nb":1,"a":[["TED%3AAF-A0A855LWE8-F1-model_v4_TED01","TED novel fold AF-A0A855LWE8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2080664","Enterobacter cloacae complex sp. ECNIH14"]]},{"id":"NCBITaxon:2080747","l":"Streptomyces sp. Ru72","na":1,"nb":1,"a":[["TED%3AAF-A0A2S4XT49-F1-model_v4_TED02","TED novel fold AF-A0A2S4XT49-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2080747","Streptomyces sp. Ru72"]]},{"id":"NCBITaxon:2080755","l":"Tautonia sociabilis","na":1,"nb":1,"a":[["TED%3AAF-A0A432MKP2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A432MKP2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2080755","Tautonia sociabilis"]]},{"id":"NCBITaxon:2082193","l":"Clostridiaceae bacterium 14S0207","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z4W8W5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z4W8W5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2082193","Clostridiaceae bacterium 14S0207"]]},{"id":"NCBITaxon:2082949","l":"Microvirga sp. 17 mud 1-3","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z3IA84-F1-model_v4_TED02","TED novel fold AF-A0A2Z3IA84-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2082949","Microvirga sp. 17 mud 1-3"]]},{"id":"NCBITaxon:2083052","l":"Pseudomonas sp. SWI36","na":1,"nb":1,"a":[["TED%3AAF-A0A2L1ID03-F1-model_v4_TED04","TED novel fold AF-A0A2L1ID03-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2083052","Pseudomonas sp. SWI36"]]},{"id":"NCBITaxon:2086263","l":"Rhodobacteraceae bacterium WD3A24","na":1,"nb":1,"a":[["TED%3AAF-A0A2S8EVX9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S8EVX9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2086263","Rhodobacteraceae bacterium WD3A24"]]},{"id":"NCBITaxon:2088","l":"Anaeroplasma bactoclasticum","na":1,"nb":1,"a":[["TED%3AAF-A0A397QUQ0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A397QUQ0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2088","Anaeroplasma bactoclasticum"]]},{"id":"NCBITaxon:2093369","l":"Desulfurivibrio sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A3A6NT79-F1-model_v4_TED01","TED novel fold AF-A0A3A6NT79-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2093369","Desulfurivibrio sp."]]},{"id":"NCBITaxon:2093373","l":"Candidatus Microgenomates bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7X9EJ53-F1-model_v4_TED01","TED novel fold AF-A0A7X9EJ53-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2093373","Candidatus Microgenomates bacterium"]]},{"id":"NCBITaxon:2093793","l":"Candidatus Nealsoniibacteriota bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7V1FQP9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7V1FQP9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2093793","Candidatus Nealsoniibacteriota bacterium"]]},{"id":"NCBITaxon:2093857","l":"Dysosmobacter welbionis","na":1,"nb":1,"a":[["TED%3AAF-A0A4D7ANP7-F1-model_v4_TED01","TED novel fold AF-A0A4D7ANP7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2093857","Dysosmobacter welbionis"]]},{"id":"NCBITaxon:2094022","l":"Micromonospora sp. MW-13","na":1,"nb":1,"a":[["TED%3AAF-A0A3E2YV82-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3E2YV82-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2094022","Micromonospora sp. MW-13"]]},{"id":"NCBITaxon:2094024","l":"Glaesserella australis","na":1,"nb":1,"a":[["TED%3AAF-A0A328C018-F1-model_v4_TED01","TED novel fold AF-A0A328C018-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2094024","Glaesserella australis"]]},{"id":"NCBITaxon:2094191","l":"Burkholderia sp. SRS-46","na":1,"nb":1,"a":[["TED%3AAF-A0A4V2WIF6-F1-model_v4_TED02","TED novel fold AF-A0A4V2WIF6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2094191","Burkholderia sp. SRS-46"]]},{"id":"NCBITaxon:2094193","l":"Limnohabitans sp. TS-CS-82","na":1,"nb":1,"a":[["TED%3AAF-A0A2S7JK38-F1-model_v4_TED01","TED novel fold AF-A0A2S7JK38-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2094193","Limnohabitans sp. TS-CS-82"]]},{"id":"NCBITaxon:2099400","l":"Solimicrobium silvestre","na":1,"nb":1,"a":[["TED%3AAF-A0A2S9H335-F1-model_v4_TED04","TED novel fold AF-A0A2S9H335-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2099400","Solimicrobium silvestre"]]},{"id":"NCBITaxon:2099583","l":"Streptomyces sp. ICC1","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z4VBQ9-F1-model_v4_TED02","TED novel fold AF-A0A2Z4VBQ9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2099583","Streptomyces sp. ICC1"]]},{"id":"NCBITaxon:2099665","l":"Ardenticatenia bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A3M1BQY4-F1-model_v4_TED02","TED novel fold AF-A0A3M1BQY4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2099665","Ardenticatenia bacterium"]]},{"id":"NCBITaxon:2099667","l":"Bradymonadales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A6I7PZX4-F1-model_v4_TED01","TED novel fold AF-A0A6I7PZX4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2099667","Bradymonadales bacterium"]]},{"id":"NCBITaxon:2099669","l":"candidate division WS1 bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A847M743-F1-model_v4_TED01","TED novel fold AF-A0A847M743-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2099669","candidate division WS1 bacterium"]]},{"id":"NCBITaxon:2099671","l":"Candidatus Handelsmanbacteria bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A836XCN0-F1-model_v4_TED02","TED novel fold AF-A0A836XCN0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2099671","Candidatus Handelsmanbacteria bacterium"]]},{"id":"NCBITaxon:2099675","l":"Cyclobacteriaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7D5RNH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7D5RNH3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2099675","Cyclobacteriaceae bacterium"]]},{"id":"NCBITaxon:2099692","l":"Mycobacterium sp. ITM-2017-0098","na":1,"nb":1,"a":[["TED%3AAF-A0A2S9F609-F1-model_v4_TED01","TED novel fold AF-A0A2S9F609-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2099692","Mycobacterium sp. ITM-2017-0098"]]},{"id":"NCBITaxon:2099694","l":"Mycobacterium sp. ITM-2016-00317","na":1,"nb":1,"a":[["TED%3AAF-A0A2S8N1M8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S8N1M8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2099694","Mycobacterium sp. ITM-2016-00317"]]},{"id":"NCBITaxon:2099695","l":"Mycobacterium sp. ITM-2016-00316","na":1,"nb":1,"a":[["TED%3AAF-A0A2S8LFS5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S8LFS5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2099695","Mycobacterium sp. ITM-2016-00316"]]},{"id":"NCBITaxon:2100161","l":"Desulfobacteraceae bacterium SEEP-SAG9","na":1,"nb":1,"a":[["TED%3AAF-A0A2S8K7A3-F1-model_v4_TED04","TED novel fold AF-A0A2S8K7A3-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2100161","Desulfobacteraceae bacterium SEEP-SAG9"]]},{"id":"NCBITaxon:2100725","l":"Brumimicrobium oceani","na":1,"nb":1,"a":[["TED%3AAF-A0A2U2XAU4-F1-model_v4_TED01","TED novel fold AF-A0A2U2XAU4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2100725","Brumimicrobium oceani"]]},{"id":"NCBITaxon:2107693","l":"Chlorogloea sp. CCALA 695","na":1,"nb":1,"a":[["TED%3AAF-A0A2T1EQ25-F1-model_v4_TED01","TED novel fold AF-A0A2T1EQ25-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2107693","Chlorogloea sp. CCALA 695"]]},{"id":"NCBITaxon:2108467","l":"Thermobacillus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A3E0R231-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3E0R231-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2108467","Thermobacillus sp."]]},{"id":"NCBITaxon:2109333","l":"Streptomyces dioscori","na":1,"nb":1,"a":[["TED%3AAF-A0A2P8PXQ3-F1-model_v4_TED01","TED novel fold AF-A0A2P8PXQ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2109333","Streptomyces dioscori"]]},{"id":"NCBITaxon:211165","l":"Chlorogloeopsis fritschii PCC 6912","na":1,"nb":1,"a":[["TED%3AAF-A0A433N4H9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A433N4H9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A211165","Chlorogloeopsis fritschii PCC 6912"]]},{"id":"NCBITaxon:2125990","l":"Pseudodesulfovibrio hydrargyri","na":1,"nb":1,"a":[["TED%3AAF-A0A1J5N6X0-F1-model_v4_TED02","TED novel fold AF-A0A1J5N6X0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2125990","Pseudodesulfovibrio hydrargyri"]]},{"id":"NCBITaxon:212602","l":"Erysiphe neolycopersici","na":1,"nb":1,"a":[["TED%3AAF-A0A420I879-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A420I879-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A212602","Erysiphe neolycopersici"]]},{"id":"NCBITaxon:2126343","l":"Candidatus Kentrum sp. TUN","na":1,"nb":1,"a":[["TED%3AAF-A0A451ACY0-F1-model_v4_TED01","TED novel fold AF-A0A451ACY0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2126343","Candidatus Kentrum sp. TUN"]]},{"id":"NCBITaxon:2126353","l":"Pedobacter yulinensis","na":1,"nb":1,"a":[["TED%3AAF-A0A2T3HK13-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T3HK13-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2126353","Pedobacter yulinensis"]]},{"id":"NCBITaxon:2126553","l":"Christiangramia fulva","na":1,"nb":1,"a":[["TED%3AAF-A0A2R3Z8P3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2R3Z8P3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2126553","Christiangramia fulva"]]},{"id":"NCBITaxon:212717","l":"Clostridium tetani E88","na":1,"nb":1,"a":[["Pfam%3APF08453","Peptidase family M9 N-terminal"]],"b":[["NCBITaxon%3A212717","Clostridium tetani E88"]]},{"id":"NCBITaxon:212767","l":"Mycobacterium sp. JS623","na":1,"nb":1,"a":[["TED%3AAF-L0J9K3-F1-model_v4_TED01","TED novel fold AF-L0J9K3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A212767","Mycobacterium sp. JS623"]]},{"id":"NCBITaxon:213224","l":"Geothermobacter ehrlichii","na":1,"nb":1,"a":[["TED%3AAF-A0A5D3WPY1-F1-model_v4_TED02","TED novel fold AF-A0A5D3WPY1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A213224","Geothermobacter ehrlichii"]]},{"id":"NCBITaxon:213248","l":"Mesonia algae","na":1,"nb":1,"a":[["TED%3AAF-A0A2W7IWM5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W7IWM5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A213248","Mesonia algae"]]},{"id":"NCBITaxon:2133","l":"Spiroplasma citri","na":1,"nb":1,"a":[["TED%3AAF-A0A6I7GSK0-F1-model_v4_TED04","TED novel fold AF-A0A6I7GSK0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2133","Spiroplasma citri"]]},{"id":"NCBITaxon:2133765","l":"Flavobacterium circumlabens","na":1,"nb":1,"a":[["TED%3AAF-A0A8B4Y0F6-F1-model_v4_TED01","TED novel fold AF-A0A8B4Y0F6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2133765","Flavobacterium circumlabens"]]},{"id":"NCBITaxon:2133947","l":"Bradyrhizobium sp. MOS002","na":1,"nb":1,"a":[["TED%3AAF-A0A2T2QB40-F1-model_v4_TED02","TED novel fold AF-A0A2T2QB40-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2133947","Bradyrhizobium sp. MOS002"]]},{"id":"NCBITaxon:2133950","l":"Fluviicola sp. XM-24bin1","na":1,"nb":1,"a":[["TED%3AAF-A0A316K2S0-F1-model_v4_TED01","TED novel fold AF-A0A316K2S0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2133950","Fluviicola sp. XM-24bin1"]]},{"id":"NCBITaxon:2133960","l":"Paraconexibacter algicola","na":1,"nb":1,"a":[["TED%3AAF-A0A2T4UGZ7-F1-model_v4_TED03","TED novel fold AF-A0A2T4UGZ7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2133960","Paraconexibacter algicola"]]},{"id":"NCBITaxon:2135462","l":"Chitinophaga sp. S165","na":1,"nb":1,"a":[["TED%3AAF-A0A317MMT4-F1-model_v4_TED02","TED novel fold AF-A0A317MMT4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2135462","Chitinophaga sp. S165"]]},{"id":"NCBITaxon:2135470","l":"Mucilaginibacter sp. OV119","na":1,"nb":1,"a":[["TED%3AAF-A0A318VA29-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A318VA29-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2135470","Mucilaginibacter sp. OV119"]]},{"id":"NCBITaxon:2135475","l":"Ensifer sp. AP48","na":1,"nb":1,"a":[["TED%3AAF-A0A2V4Z2D5-F1-model_v4_TED01","TED novel fold AF-A0A2V4Z2D5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2135475","Ensifer sp. AP48"]]},{"id":"NCBITaxon:2135584","l":"Pseudomonas sp. OV081","na":1,"nb":1,"a":[["TED%3AAF-A0A3D9WYP5-F1-model_v4_TED02","TED novel fold AF-A0A3D9WYP5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2135584","Pseudomonas sp. OV081"]]},{"id":"NCBITaxon:2135619","l":"Arenibacter sp. ARW7G5Y1","na":1,"nb":1,"a":[["TED%3AAF-A0A318IYY3-F1-model_v4_TED02","TED novel fold AF-A0A318IYY3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2135619","Arenibacter sp. ARW7G5Y1"]]},{"id":"NCBITaxon:2135627","l":"Flavobacterium sp. 123","na":1,"nb":1,"a":[["TED%3AAF-A0A495SFE8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A495SFE8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2135627","Flavobacterium sp. 123"]]},{"id":"NCBITaxon:2135631","l":"Janthinobacterium sp. 78","na":1,"nb":1,"a":[["TED%3AAF-A0A2U0T4V2-F1-model_v4_TED02","TED novel fold AF-A0A2U0T4V2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2135631","Janthinobacterium sp. 78"]]},{"id":"NCBITaxon:2135643","l":"Simplicispira sp. 125","na":1,"nb":1,"a":[["TED%3AAF-A0A2U1CAF0-F1-model_v4_TED01","TED novel fold AF-A0A2U1CAF0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2135643","Simplicispira sp. 125"]]},{"id":"NCBITaxon:2135677","l":"Nocardioides sp. CF204","na":1,"nb":1,"a":[["TED%3AAF-A0A2T5WBB4-F1-model_v4_TED02","TED novel fold AF-A0A2T5WBB4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2135677","Nocardioides sp. CF204"]]},{"id":"NCBITaxon:2135688","l":"Novosphingobium sp. GV013","na":1,"nb":1,"a":[["TED%3AAF-A0A4V3E3S6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4V3E3S6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2135688","Novosphingobium sp. GV013"]]},{"id":"NCBITaxon:2135721","l":"Pelomonas sp. BT06","na":1,"nb":1,"a":[["TED%3AAF-A0A397S1Z7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A397S1Z7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2135721","Pelomonas sp. BT06"]]},{"id":"NCBITaxon:2135723","l":"Promicromonospora sp. AC04","na":1,"nb":1,"a":[["TED%3AAF-A0A2T6LHY3-F1-model_v4_TED02","TED novel fold AF-A0A2T6LHY3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2135723","Promicromonospora sp. AC04"]]},{"id":"NCBITaxon:2135724","l":"Promicromonospora sp. CF082","na":1,"nb":1,"a":[["TED%3AAF-A0A4V2R0G5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4V2R0G5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2135724","Promicromonospora sp. CF082"]]},{"id":"NCBITaxon:2135746","l":"Mycobacterium sp. YR708","na":1,"nb":1,"a":[["TED%3AAF-A0A4R2UA23-F1-model_v4_TED01","TED novel fold AF-A0A4R2UA23-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2135746","Mycobacterium sp. YR708"]]},{"id":"NCBITaxon:2135765","l":"Cellvibrio sp. YR554","na":1,"nb":1,"a":[["TED%3AAF-A0A4R7BLG2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4R7BLG2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2135765","Cellvibrio sp. YR554"]]},{"id":"NCBITaxon:2135812","l":"Rhodobacteraceae bacterium PT6CLA","na":1,"nb":1,"a":[["TED%3AAF-A0A559Q8H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A559Q8H4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2135812","Rhodobacteraceae bacterium PT6CLA"]]},{"id":"NCBITaxon:2136401","l":"Streptomyces sp. YIM 121038","na":1,"nb":1,"a":[["TED%3AAF-A0A5B7V919-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B7V919-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2136401","Streptomyces sp. YIM 121038"]]},{"id":"NCBITaxon:2137198","l":"Marinobacter sp. B9-2","na":1,"nb":1,"a":[["TED%3AAF-A0A2T4DFM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T4DFM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2137198","Marinobacter sp. B9-2"]]},{"id":"NCBITaxon:2138300","l":"Nocardioides gansuensis","na":1,"nb":1,"a":[["TED%3AAF-A0A2T8F569-F1-model_v4_TED01","TED novel fold AF-A0A2T8F569-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2138300","Nocardioides gansuensis"]]},{"id":"NCBITaxon:2139","l":"Spiroplasma clarkii","na":1,"nb":1,"a":[["TED%3AAF-A0A2K8KLS2-F1-model_v4_TED02","TED novel fold AF-A0A2K8KLS2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2139","Spiroplasma clarkii"]]},{"id":"NCBITaxon:2153358","l":"Variovorax sp. KBW07","na":1,"nb":1,"a":[["TED%3AAF-A0A3N7D3F2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N7D3F2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2153358","Variovorax sp. KBW07"]]},{"id":"NCBITaxon:2153361","l":"Paucibacter sp. KBW04","na":1,"nb":1,"a":[["TED%3AAF-A0A3N7C9I4-F1-model_v4_TED02","TED novel fold AF-A0A3N7C9I4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2153361","Paucibacter sp. KBW04"]]},{"id":"NCBITaxon:2153364","l":"Pedobacter sp. KBW01","na":1,"nb":1,"a":[["TED%3AAF-A0A3N7CIX9-F1-model_v4_TED01","TED novel fold AF-A0A3N7CIX9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2153364","Pedobacter sp. KBW01"]]},{"id":"NCBITaxon:215590","l":"Brucella gallinifaecis","na":1,"nb":1,"a":[["TED%3AAF-A0A502BMS9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A502BMS9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A215590","Brucella gallinifaecis"]]},{"id":"NCBITaxon:215637","l":"Dimargaris cristalligena","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q0A1Q7-F1-model_v4_TED02","TED novel fold AF-A0A4Q0A1Q7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A215637","Dimargaris cristalligena"]]},{"id":"NCBITaxon:2161813","l":"Glaciecola sp. KUL10","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z6UKL2-F1-model_v4_TED02","TED novel fold AF-A0A2Z6UKL2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2161813","Glaciecola sp. KUL10"]]},{"id":"NCBITaxon:2161826","l":"Chromobacterium sp. Panama","na":1,"nb":1,"a":[["TED%3AAF-A0A2T5NEF8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T5NEF8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2161826","Chromobacterium sp. Panama"]]},{"id":"NCBITaxon:2161864","l":"Opitutus sp. ER46","na":1,"nb":1,"a":[["TED%3AAF-A0A2T6CMU6-F1-model_v4_TED02","TED novel fold AF-A0A2T6CMU6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2161864","Opitutus sp. ER46"]]},{"id":"NCBITaxon:2161866","l":"Spartobacteria bacterium LR76","na":1,"nb":1,"a":[["TED%3AAF-A0A2T6D158-F1-model_v4_TED02","TED novel fold AF-A0A2T6D158-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2161866","Spartobacteria bacterium LR76"]]},{"id":"NCBITaxon:2161867","l":"Verrucomicrobia bacterium LW23","na":1,"nb":1,"a":[["TED%3AAF-A0A2T6DMB5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T6DMB5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2161867","Verrucomicrobia bacterium LW23"]]},{"id":"NCBITaxon:2162637","l":"Bacteroides sp. PHL 2737","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q0U345-F1-model_v4_TED02","TED novel fold AF-A0A4Q0U345-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2162637","Bacteroides sp. PHL 2737"]]},{"id":"NCBITaxon:2162893","l":"Marinilabilia rubra","na":1,"nb":1,"a":[["TED%3AAF-A0A2U2B527-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U2B527-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2162893","Marinilabilia rubra"]]},{"id":"NCBITaxon:2163881","l":"Paenibacillus cremeus","na":1,"nb":1,"a":[["TED%3AAF-A0A559KAQ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A559KAQ1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2163881","Paenibacillus cremeus"]]},{"id":"NCBITaxon:2164","l":"Methanobacterium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A6A8RVR7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6A8RVR7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2164","Methanobacterium sp."]]},{"id":"NCBITaxon:2164062","l":"Xanthomonas vasicola pv. zeae","na":1,"nb":1,"a":[["TED%3AAF-A0A7C7FQW4-F1-model_v4_TED02","TED novel fold AF-A0A7C7FQW4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2164062","Xanthomonas vasicola pv. zeae"]]},{"id":"NCBITaxon:216895","l":"Vibrio vulnificus CMCP6","na":1,"nb":1,"a":[["Pfam%3APF18416","N-acetylglucosamine binding protein domain 2"]],"b":[["NCBITaxon%3A216895","Vibrio vulnificus CMCP6"]]},{"id":"NCBITaxon:216932","l":"Spiroplasma chinense","na":1,"nb":1,"a":[["TED%3AAF-A0A5B9Y534-F1-model_v4_TED01","TED novel fold AF-A0A5B9Y534-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A216932","Spiroplasma chinense"]]},{"id":"NCBITaxon:216934","l":"Spiroplasma corruscae","na":1,"nb":1,"a":[["TED%3AAF-A0A222ENS0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A222ENS0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A216934","Spiroplasma corruscae"]]},{"id":"NCBITaxon:216938","l":"Spiroplasma helicoides","na":1,"nb":1,"a":[["TED%3AAF-A0A1B3SKL9-F1-model_v4_TED02","TED novel fold AF-A0A1B3SKL9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A216938","Spiroplasma helicoides"]]},{"id":"NCBITaxon:2169413","l":"Blastocatellia bacterium AA13","na":1,"nb":1,"a":[["TED%3AAF-A0A321L7A5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A321L7A5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2169413","Blastocatellia bacterium AA13"]]},{"id":"NCBITaxon:2169414","l":"Chitinophaga parva","na":1,"nb":1,"a":[["TED%3AAF-A0A2T7BEI4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T7BEI4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2169414","Chitinophaga parva"]]},{"id":"NCBITaxon:2170265","l":"Candidatus Similichlamydia laticola","na":1,"nb":1,"a":[["TED%3AAF-A0A369KIK0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A369KIK0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2170265","Candidatus Similichlamydia laticola"]]},{"id":"NCBITaxon:2170730","l":"Acinetobacter sp. AM","na":1,"nb":1,"a":[["TED%3AAF-A0A315WJ61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A315WJ61-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2170730","Acinetobacter sp. AM"]]},{"id":"NCBITaxon:2170733","l":"Pseudomonas sp. NDM","na":1,"nb":1,"a":[["TED%3AAF-A0A2U1QT22-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U1QT22-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2170733","Pseudomonas sp. NDM"]]},{"id":"NCBITaxon:2171751","l":"Pueribacillus theae","na":1,"nb":1,"a":[["TED%3AAF-A0A2U1K335-F1-model_v4_TED02","TED novel fold AF-A0A2U1K335-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2171751","Pueribacillus theae"]]},{"id":"NCBITaxon:2172121","l":"Pararhodobacter oceanensis","na":1,"nb":1,"a":[["TED%3AAF-A0A2T8HZ71-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T8HZ71-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2172121","Pararhodobacter oceanensis"]]},{"id":"NCBITaxon:2173149","l":"Marine Group III euryarchaeote","na":1,"nb":1,"a":[["TED%3AAF-A0A7C7PQZ2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7C7PQZ2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2173149","Marine Group III euryarchaeote"]]},{"id":"NCBITaxon:2174845","l":"Marixanthomonas spongiae","na":1,"nb":1,"a":[["TED%3AAF-A0A2U0HZF1-F1-model_v4_TED02","TED novel fold AF-A0A2U0HZF1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2174845","Marixanthomonas spongiae"]]},{"id":"NCBITaxon:2175091","l":"Flavobacterium album","na":1,"nb":1,"a":[["TED%3AAF-A0A2S1QWV5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S1QWV5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2175091","Flavobacterium album"]]},{"id":"NCBITaxon:2175229","l":"Corticimicrobacter populi","na":1,"nb":1,"a":[["TED%3AAF-A0A2V1K5S0-F1-model_v4_TED01","TED novel fold AF-A0A2V1K5S0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2175229","Corticimicrobacter populi"]]},{"id":"NCBITaxon:2175648","l":"Curtobacterium sp. MCLR17_007","na":1,"nb":1,"a":[["TED%3AAF-A0A2W1US76-F1-model_v4_TED03","TED novel fold AF-A0A2W1US76-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2175648","Curtobacterium sp. MCLR17_007"]]},{"id":"NCBITaxon:2175659","l":"Curtobacterium sp. MCBD17_032","na":1,"nb":1,"a":[["TED%3AAF-A0A2W1TXH0-F1-model_v4_TED01","TED novel fold AF-A0A2W1TXH0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2175659","Curtobacterium sp. MCBD17_032"]]},{"id":"NCBITaxon:2175674","l":"Curtobacterium sp. MCBD17_040","na":1,"nb":1,"a":[["TED%3AAF-A0A2W1ZB63-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W1ZB63-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2175674","Curtobacterium sp. MCBD17_040"]]},{"id":"NCBITaxon:2175803","l":"Bacteroidetes bacterium SCGC AAA795-G10","na":1,"nb":1,"a":[["TED%3AAF-A0A2U2RZ29-F1-model_v4_TED03","TED novel fold AF-A0A2U2RZ29-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2175803","Bacteroidetes bacterium SCGC AAA795-G10"]]},{"id":"NCBITaxon:2175864","l":"Streptomyces sp. NHF165","na":1,"nb":1,"a":[["TED%3AAF-A0A6I6WF12-F1-model_v4_TED04","TED novel fold AF-A0A6I6WF12-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2175864","Streptomyces sp. NHF165"]]},{"id":"NCBITaxon:2182384","l":"Erythrobacter aureus","na":1,"nb":1,"a":[["TED%3AAF-A0A345YJI9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A345YJI9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2182384","Erythrobacter aureus"]]},{"id":"NCBITaxon:2182432","l":"Sediminicurvatus halobius","na":1,"nb":1,"a":[["TED%3AAF-A0A2U2N383-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2U2N383-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2182432","Sediminicurvatus halobius"]]},{"id":"NCBITaxon:2183922","l":"Mucilaginibacter sp. 94","na":1,"nb":1,"a":[["TED%3AAF-A0A495T2W7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A495T2W7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2183922","Mucilaginibacter sp. 94"]]},{"id":"NCBITaxon:2183984","l":"Alcanivorax sp. EA2","na":1,"nb":1,"a":[["TED%3AAF-A0A3D9IAU4-F1-model_v4_TED02","TED novel fold AF-A0A3D9IAU4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2183984","Alcanivorax sp. EA2"]]},{"id":"NCBITaxon:2183985","l":"Halomonas sp. A11-A","na":1,"nb":1,"a":[["TED%3AAF-A0A317P655-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A317P655-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2183985","Halomonas sp. A11-A"]]},{"id":"NCBITaxon:2183989","l":"Brachybacterium sp. AG952","na":1,"nb":1,"a":[["TED%3AAF-A0A4R6R2W4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R6R2W4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2183989","Brachybacterium sp. AG952"]]},{"id":"NCBITaxon:2183996","l":"Rhodococcus sp. AG1013","na":1,"nb":1,"a":[["TED%3AAF-A0A370FT27-F1-model_v4_TED02","TED novel fold AF-A0A370FT27-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2183996","Rhodococcus sp. AG1013"]]},{"id":"NCBITaxon:2184052","l":"Methanomicrobiales archaeon","na":1,"nb":1,"a":[["TED%3AAF-A0A7K4CCY7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K4CCY7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2184052","Methanomicrobiales archaeon"]]},{"id":"NCBITaxon:2184311","l":"Candidatus Nitrotoga sp. MKT","na":1,"nb":1,"a":[["TED%3AAF-A0A3E1D1N1-F1-model_v4_TED01","TED novel fold AF-A0A3E1D1N1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2184311","Candidatus Nitrotoga sp. MKT"]]},{"id":"NCBITaxon:2184346","l":"Candidatus Marinamargulisbacteria bacterium SCGC AG-439-L15","na":1,"nb":1,"a":[["TED%3AAF-A0A328RKB5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A328RKB5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2184346","Candidatus Marinamargulisbacteria bacterium SCGC AG-439-L15"]]},{"id":"NCBITaxon:2184347","l":"Candidatus Marinamargulisbacteria bacterium SCGC AAA071-K20","na":1,"nb":1,"a":[["TED%3AAF-A0A328RMQ6-F1-model_v4_TED01","TED novel fold AF-A0A328RMQ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2184347","Candidatus Marinamargulisbacteria bacterium SCGC AAA071-K20"]]},{"id":"NCBITaxon:2184554","l":"Burkholderia sp. Bp8992","na":1,"nb":1,"a":[["TED%3AAF-A0A3N8HMV5-F1-model_v4_TED02","TED novel fold AF-A0A3N8HMV5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2184554","Burkholderia sp. Bp8992"]]},{"id":"NCBITaxon:2184569","l":"Burkholderia sp. Bp9125","na":1,"nb":1,"a":[["TED%3AAF-A0A3N8D7F1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3N8D7F1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2184569","Burkholderia sp. Bp9125"]]},{"id":"NCBITaxon:2184757","l":"Legionella qingyii","na":1,"nb":1,"a":[["TED%3AAF-A0A317TZ28-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A317TZ28-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2184757","Legionella qingyii"]]},{"id":"NCBITaxon:218936","l":"Aeromonas simiae","na":1,"nb":1,"a":[["TED%3AAF-A0A5J6WY36-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5J6WY36-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A218936","Aeromonas simiae"]]},{"id":"NCBITaxon:2200760","l":"Streptomyces sp. Act143","na":1,"nb":1,"a":[["TED%3AAF-A0A2U2ZUU3-F1-model_v4_TED01","TED novel fold AF-A0A2U2ZUU3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2200760","Streptomyces sp. Act143"]]},{"id":"NCBITaxon:2200886","l":"Sulfolobus sp. F3","na":1,"nb":1,"a":[["TED%3AAF-A0A550D1T9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A550D1T9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2200886","Sulfolobus sp. F3"]]},{"id":"NCBITaxon:2201350","l":"Phenylobacterium parvum","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z3HP51-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2Z3HP51-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2201350","Phenylobacterium parvum"]]},{"id":"NCBITaxon:2202136","l":"Ruminococcaceae bacterium R-25","na":1,"nb":1,"a":[["TED%3AAF-A0A316BET6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A316BET6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2202136","Ruminococcaceae bacterium R-25"]]},{"id":"NCBITaxon:2202143","l":"candidate division Kazan bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A420ZCG7-F1-model_v4_TED06","TED novel fold AF-A0A420ZCG7-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A2202143","candidate division Kazan bacterium"]]},{"id":"NCBITaxon:2202149","l":"Thermomonas aquatica","na":1,"nb":1,"a":[["TED%3AAF-A0A5B7ZSQ5-F1-model_v4_TED02","TED novel fold AF-A0A5B7ZSQ5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2202149","Thermomonas aquatica"]]},{"id":"NCBITaxon:2202151","l":"Aquificota bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A3M2ANL4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3M2ANL4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2202151","Aquificota bacterium"]]},{"id":"NCBITaxon:2202153","l":"Thermodesulfobacteriota bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A660S9H5-F1-model_v4_TED01","TED novel fold AF-A0A660S9H5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2202153","Thermodesulfobacteriota bacterium"]]},{"id":"NCBITaxon:2202161","l":"Pseudomonas sp. RIT412","na":1,"nb":1,"a":[["TED%3AAF-A0A329J8I8-F1-model_v4_TED01","TED novel fold AF-A0A329J8I8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2202161","Pseudomonas sp. RIT412"]]},{"id":"NCBITaxon:2202197","l":"Candidatus Methylumidiphilus alinenensis","na":1,"nb":1,"a":[["TED%3AAF-A0A2W4RIR3-F1-model_v4_TED02","TED novel fold AF-A0A2W4RIR3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2202197","Candidatus Methylumidiphilus alinenensis"]]},{"id":"NCBITaxon:2202201","l":"Leptospira yasudae","na":1,"nb":1,"a":[["TED%3AAF-A0A5F2BAE7-F1-model_v4_TED01","TED novel fold AF-A0A5F2BAE7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2202201","Leptospira yasudae"]]},{"id":"NCBITaxon:2202249","l":"Streptosporangium sp. 'caverna'","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z3USU0-F1-model_v4_TED03","TED novel fold AF-A0A2Z3USU0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2202249","Streptosporangium sp. 'caverna'"]]},{"id":"NCBITaxon:2202516","l":"Streptomyces sp. ZEA17I","na":1,"nb":1,"a":[["TED%3AAF-A0A2V2Q3I4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V2Q3I4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2202516","Streptomyces sp. ZEA17I"]]},{"id":"NCBITaxon:2202652","l":"Pseudomonas sp. RW405","na":1,"nb":1,"a":[["TED%3AAF-A0A2V3CQ14-F1-model_v4_TED01","TED novel fold AF-A0A2V3CQ14-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2202652","Pseudomonas sp. RW405"]]},{"id":"NCBITaxon:2202825","l":"Methylobacterium durans","na":1,"nb":1,"a":[["TED%3AAF-A0A2U8W1A2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2U8W1A2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2202825","Methylobacterium durans"]]},{"id":"NCBITaxon:2203209","l":"Streptomyces sp. WAC 06725","na":1,"nb":1,"a":[["TED%3AAF-A0A429JII5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A429JII5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2203209","Streptomyces sp. WAC 06725"]]},{"id":"NCBITaxon:2203212","l":"Pedobacter paludis","na":1,"nb":1,"a":[["TED%3AAF-A0A317EV51-F1-model_v4_TED02","TED novel fold AF-A0A317EV51-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2203212","Pedobacter paludis"]]},{"id":"NCBITaxon:2203419","l":"Ochrobactrum sp. POC9","na":1,"nb":1,"a":[["TED%3AAF-A0A317LGQ4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A317LGQ4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2203419","Ochrobactrum sp. POC9"]]},{"id":"NCBITaxon:2203782","l":"Ensifer sp. M14","na":1,"nb":1,"a":[["TED%3AAF-A0A395L633-F1-model_v4_TED03","TED novel fold AF-A0A395L633-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2203782","Ensifer sp. M14"]]},{"id":"NCBITaxon:2204294","l":"Photobacterium malacitanum","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y6MEK4-F1-model_v4_TED01","TED novel fold AF-A0A1Y6MEK4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2204294","Photobacterium malacitanum"]]},{"id":"NCBITaxon:220664","l":"Pseudomonas protegens Pf-5","na":1,"nb":1,"a":[["Pfam%3APF18089","DAPG hydrolase PhiG domain"]],"b":[["NCBITaxon%3A220664","Pseudomonas protegens Pf-5"]]},{"id":"NCBITaxon:220927","l":"Mycobacterium saskatchewanense","na":1,"nb":1,"a":[["TED%3AAF-A0A1X2C961-F1-model_v4_TED02","TED novel fold AF-A0A1X2C961-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A220927","Mycobacterium saskatchewanense"]]},{"id":"NCBITaxon:2211119","l":"Lujinxingia litoralis","na":1,"nb":1,"a":[["TED%3AAF-A0A328C1B2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A328C1B2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2211119","Lujinxingia litoralis"]]},{"id":"NCBITaxon:2211139","l":"Paenibacillus flagellatus","na":1,"nb":1,"a":[["TED%3AAF-A0A2V5JTW1-F1-model_v4_TED01","TED novel fold AF-A0A2V5JTW1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2211139","Paenibacillus flagellatus"]]},{"id":"NCBITaxon:2211445","l":"Flavobacterium hydrophilum","na":1,"nb":1,"a":[["TED%3AAF-A0A2V4C030-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A2V4C030-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2211445","Flavobacterium hydrophilum"]]},{"id":"NCBITaxon:2212467","l":"Bacteroidaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A6F9ZK93-F1-model_v4_TED05","TED novel fold AF-A0A6F9ZK93-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2212467","Bacteroidaceae bacterium"]]},{"id":"NCBITaxon:221359","l":"Synechococcus sp. RS9916","na":1,"nb":1,"a":[["TED%3AAF-Q05VF6-F1-model_v4_TED02","TED highly-symmetric fold AF-Q05VF6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A221359","Synechococcus sp. RS9916"]]},{"id":"NCBITaxon:2217664","l":"Croceicoccus ponticola","na":1,"nb":1,"a":[["TED%3AAF-A0A437GZM5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A437GZM5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2217664","Croceicoccus ponticola"]]},{"id":"NCBITaxon:2219224","l":"Nonomuraea phyllanthi","na":1,"nb":1,"a":[["TED%3AAF-A0A5C4WBR4-F1-model_v4_TED03","TED novel fold AF-A0A5C4WBR4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2219224","Nonomuraea phyllanthi"]]},{"id":"NCBITaxon:2231116","l":"Mycoplasmatota bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7C6RQP9-F1-model_v4_TED01","TED novel fold AF-A0A7C6RQP9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2231116","Mycoplasmatota bacterium"]]},{"id":"NCBITaxon:2234116","l":"Marinilabiliaceae bacterium JC017","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q8RYP7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q8RYP7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2234116","Marinilabiliaceae bacterium JC017"]]},{"id":"NCBITaxon:223788","l":"Balnearium lithotrophicum","na":1,"nb":1,"a":[["TED%3AAF-A0A521D8E7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A521D8E7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A223788","Balnearium lithotrophicum"]]},{"id":"NCBITaxon:2249476","l":"Leishmania orientalis","na":1,"nb":1,"a":[["TED%3AAF-A0A836HGD2-F1-model_v4_TED02","TED novel fold AF-A0A836HGD2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2249476","Leishmania orientalis"]]},{"id":"NCBITaxon:2249761","l":"Halorubrum sp. 48-1-W","na":1,"nb":1,"a":[["TED%3AAF-A0A329T5Y7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A329T5Y7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2249761","Halorubrum sp. 48-1-W"]]},{"id":"NCBITaxon:2250252","l":"Candidatus Sumerlaea chitinivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z4Y898-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z4Y898-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2250252","Candidatus Sumerlaea chitinivorans"]]},{"id":"NCBITaxon:225848","l":"Shewanella psychrophila","na":1,"nb":1,"a":[["TED%3AAF-A0A1S6HJS1-F1-model_v4_TED02","TED novel fold AF-A0A1S6HJS1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A225848","Shewanella psychrophila"]]},{"id":"NCBITaxon:2258964","l":"Chryseobacterium sp. 5_R23647","na":1,"nb":1,"a":[["TED%3AAF-A0A3D9AIB1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D9AIB1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2258964","Chryseobacterium sp. 5_R23647"]]},{"id":"NCBITaxon:2259036","l":"Chitinophaga flava","na":1,"nb":1,"a":[["TED%3AAF-A0A365XWH2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A365XWH2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2259036","Chitinophaga flava"]]},{"id":"NCBITaxon:2259342","l":"Paralteromonas sediminis","na":1,"nb":1,"a":[["TED%3AAF-A0A3N5YBN8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N5YBN8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2259342","Paralteromonas sediminis"]]},{"id":"NCBITaxon:2259644","l":"Streptomyces sp. YIM 130001","na":1,"nb":1,"a":[["TED%3AAF-A0A399HGF2-F1-model_v4_TED02","TED novel fold AF-A0A399HGF2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2259644","Streptomyces sp. YIM 130001"]]},{"id":"NCBITaxon:226506","l":"Algoriphagus ornithinivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A1I5CGG6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5CGG6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A226506","Algoriphagus ornithinivorans"]]},{"id":"NCBITaxon:2267264","l":"Alteromonas sp. RKMC-009","na":1,"nb":1,"a":[["TED%3AAF-A0A385MUJ3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A385MUJ3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2267264","Alteromonas sp. RKMC-009"]]},{"id":"NCBITaxon:2268024","l":"Ephemeroptericola cinctiostellae","na":1,"nb":1,"a":[["TED%3AAF-A0A345DDH0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A345DDH0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2268024","Ephemeroptericola cinctiostellae"]]},{"id":"NCBITaxon:2268140","l":"Thioploca sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7C2AVM7-F1-model_v4_TED09","TED highly-symmetric fold AF-A0A7C2AVM7-F1-model_v4_TED09"]],"b":[["NCBITaxon%3A2268140","Thioploca sp."]]},{"id":"NCBITaxon:2268141","l":"Thermopetrobacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7C5SDZ9-F1-model_v4_TED01","TED novel fold AF-A0A7C5SDZ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2268141","Thermopetrobacter sp."]]},{"id":"NCBITaxon:2268177","l":"Aeromonadales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7V2S520-F1-model_v4_TED02","TED novel fold AF-A0A7V2S520-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2268177","Aeromonadales bacterium"]]},{"id":"NCBITaxon:2268179","l":"Campylobacteraceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A850JRK3-F1-model_v4_TED02","TED novel fold AF-A0A850JRK3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2268179","Campylobacteraceae bacterium"]]},{"id":"NCBITaxon:2268180","l":"Campylobacterales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7V4QCR0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7V4QCR0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2268180","Campylobacterales bacterium"]]},{"id":"NCBITaxon:2268181","l":"candidate division CPR3 bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7V3J9M4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V3J9M4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2268181","candidate division CPR3 bacterium"]]},{"id":"NCBITaxon:2268182","l":"Candidatus Buchananbacteria bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A849W7Y3-F1-model_v4_TED02","TED novel fold AF-A0A849W7Y3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2268182","Candidatus Buchananbacteria bacterium"]]},{"id":"NCBITaxon:2268192","l":"Chlorobiota bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7J4V7N2-F1-model_v4_TED01","TED novel fold AF-A0A7J4V7N2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2268192","Chlorobiota bacterium"]]},{"id":"NCBITaxon:2268198","l":"Nitrososphaeria archaeon","na":1,"nb":1,"a":[["TED%3AAF-A0A7J3PL42-F1-model_v4_TED02","TED novel fold AF-A0A7J3PL42-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2268198","Nitrososphaeria archaeon"]]},{"id":"NCBITaxon:2268200","l":"Sulfolobales archaeon","na":1,"nb":1,"a":[["TED%3AAF-A0A7C5XR34-F1-model_v4_TED01","TED novel fold AF-A0A7C5XR34-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2268200","Sulfolobales archaeon"]]},{"id":"NCBITaxon:2268201","l":"Synergistales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A832JNQ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A832JNQ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2268201","Synergistales bacterium"]]},{"id":"NCBITaxon:227605","l":"Methylocella tundrae","na":1,"nb":1,"a":[["TED%3AAF-A0A4U8Z7R3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U8Z7R3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A227605","Methylocella tundrae"]]},{"id":"NCBITaxon:2282125","l":"Haloarcula sp. Atlit-7R","na":1,"nb":1,"a":[["TED%3AAF-A0A498GGU0-F1-model_v4_TED01","TED novel fold AF-A0A498GGU0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2282125","Haloarcula sp. Atlit-7R"]]},{"id":"NCBITaxon:2282131","l":"Halobellus sp. Atlit-38R","na":1,"nb":1,"a":[["TED%3AAF-A0A498GBB9-F1-model_v4_TED01","TED novel fold AF-A0A498GBB9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2282131","Halobellus sp. Atlit-38R"]]},{"id":"NCBITaxon:2282132","l":"Haloarcula sp. Atlit-47R","na":1,"nb":1,"a":[["TED%3AAF-A0A3R7FKY9-F1-model_v4_TED01","TED novel fold AF-A0A3R7FKY9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2282132","Haloarcula sp. Atlit-47R"]]},{"id":"NCBITaxon:2282142","l":"Terriglobales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7W1T1G5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W1T1G5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2282142","Terriglobales bacterium"]]},{"id":"NCBITaxon:2282152","l":"Chthonomonadia bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A832B9Y3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A832B9Y3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2282152","Chthonomonadia bacterium"]]},{"id":"NCBITaxon:2282154","l":"Geobacteraceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7V4UXK5-F1-model_v4_TED02","TED novel fold AF-A0A7V4UXK5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2282154","Geobacteraceae bacterium"]]},{"id":"NCBITaxon:2282167","l":"Planktothricoides sp. SpSt-374","na":1,"nb":1,"a":[["TED%3AAF-A0A7C3VEW8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C3VEW8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2282167","Planktothricoides sp. SpSt-374"]]},{"id":"NCBITaxon:2282170","l":"Kordia sp. SMS9","na":1,"nb":1,"a":[["TED%3AAF-A0A345H488-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A345H488-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2282170","Kordia sp. SMS9"]]},{"id":"NCBITaxon:2282420","l":"Streptococcus hillyeri","na":1,"nb":1,"a":[["TED%3AAF-A0A3L9DJK9-F1-model_v4_TED03","TED novel fold AF-A0A3L9DJK9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2282420","Streptococcus hillyeri"]]},{"id":"NCBITaxon:2282449","l":"Exiguobacterium sp. RIT594","na":1,"nb":1,"a":[["TED%3AAF-A0A369KPC7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A369KPC7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2282449","Exiguobacterium sp. RIT594"]]},{"id":"NCBITaxon:2282866","l":"Sporosarcina sp. BI001-red","na":1,"nb":1,"a":[["TED%3AAF-A0A3D8YT39-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D8YT39-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2282866","Sporosarcina sp. BI001-red"]]},{"id":"NCBITaxon:2283194","l":"Sporosarcina sp. PTS2304","na":1,"nb":1,"a":[["TED%3AAF-A0A345P1P1-F1-model_v4_TED02","TED novel fold AF-A0A345P1P1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2283194","Sporosarcina sp. PTS2304"]]},{"id":"NCBITaxon:2283627","l":"Ancylomarina euxina","na":1,"nb":1,"a":[["TED%3AAF-A0A425XWD0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A425XWD0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2283627","Ancylomarina euxina"]]},{"id":"NCBITaxon:228908","l":"Nanoarchaeum equitans Kin4-M","na":1,"nb":1,"a":[["Pfam%3APF01949","Endonuclease dU"]],"b":[["NCBITaxon%3A228908","Nanoarchaeum equitans Kin4-M"]]},{"id":"NCBITaxon:229037","l":"Proteus sp. (in: enterobacteria)","na":1,"nb":1,"a":[["TED%3AAF-A0A3D2BNA0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D2BNA0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A229037","Proteus sp. (in: enterobacteria)"]]},{"id":"NCBITaxon:2290913","l":"Candidatus Cryosericum septentrionale","na":1,"nb":1,"a":[["TED%3AAF-A0A398DLC0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A398DLC0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2290913","Candidatus Cryosericum septentrionale"]]},{"id":"NCBITaxon:2290923","l":"Crenobacter cavernae","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q2JGP7-F1-model_v4_TED01","TED novel fold AF-A0A4Q2JGP7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2290923","Crenobacter cavernae"]]},{"id":"NCBITaxon:2290935","l":"Parabacteroides acidifaciens","na":1,"nb":1,"a":[["TED%3AAF-A0A3D8H9Y5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D8H9Y5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2290935","Parabacteroides acidifaciens"]]},{"id":"NCBITaxon:2291815","l":"Deminuibacter soli","na":1,"nb":1,"a":[["TED%3AAF-A0A3E1NDY4-F1-model_v4_TED02","TED novel fold AF-A0A3E1NDY4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2291815","Deminuibacter soli"]]},{"id":"NCBITaxon:2291993","l":"Absiella sp. AM09-45","na":1,"nb":1,"a":[["TED%3AAF-A0A372SWN5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A372SWN5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2291993","Absiella sp. AM09-45"]]},{"id":"NCBITaxon:2292003","l":"Butyricicoccus sp. AF35-5AC","na":1,"nb":1,"a":[["TED%3AAF-A0A416DBL2-F1-model_v4_TED01","TED novel fold AF-A0A416DBL2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292003","Butyricicoccus sp. AF35-5AC"]]},{"id":"NCBITaxon:2292025","l":"Collinsella sp. AM15-2","na":1,"nb":1,"a":[["TED%3AAF-A0A414ZX86-F1-model_v4_TED01","TED novel fold AF-A0A414ZX86-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292025","Collinsella sp. AM15-2"]]},{"id":"NCBITaxon:2292028","l":"Collinsella sp. AM18-10","na":1,"nb":1,"a":[["TED%3AAF-A0A414WNE9-F1-model_v4_TED02","TED novel fold AF-A0A414WNE9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2292028","Collinsella sp. AM18-10"]]},{"id":"NCBITaxon:2292066","l":"Roseburia sp. AM23-20","na":1,"nb":1,"a":[["TED%3AAF-A0A3R6FRW6-F1-model_v4_TED01","TED novel fold AF-A0A3R6FRW6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292066","Roseburia sp. AM23-20"]]},{"id":"NCBITaxon:2292075","l":"Sutterella sp. AM11-39","na":1,"nb":1,"a":[["TED%3AAF-A0A415CE65-F1-model_v4_TED01","TED novel fold AF-A0A415CE65-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292075","Sutterella sp. AM11-39"]]},{"id":"NCBITaxon:2292179","l":"Clostridiaceae bacterium AF29-16BH","na":1,"nb":1,"a":[["TED%3AAF-A0A3R6TSB6-F1-model_v4_TED05","TED novel fold AF-A0A3R6TSB6-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2292179","Clostridiaceae bacterium AF29-16BH"]]},{"id":"NCBITaxon:2292223","l":"Collinsella sp. AF23-3LB","na":1,"nb":1,"a":[["TED%3AAF-A0A412HUW7-F1-model_v4_TED02","TED novel fold AF-A0A412HUW7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2292223","Collinsella sp. AF23-3LB"]]},{"id":"NCBITaxon:2292251","l":"Ruminococcus sp. AF21-42","na":1,"nb":1,"a":[["TED%3AAF-A0A416PML0-F1-model_v4_TED01","TED novel fold AF-A0A416PML0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292251","Ruminococcus sp. AF21-42"]]},{"id":"NCBITaxon:2292270","l":"Ruminococcaceae bacterium TF06-43","na":1,"nb":1,"a":[["TED%3AAF-A0A417NAR0-F1-model_v4_TED01","TED novel fold AF-A0A417NAR0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292270","Ruminococcaceae bacterium TF06-43"]]},{"id":"NCBITaxon:2292274","l":"Clostridiaceae bacterium OM08-6BH","na":1,"nb":1,"a":[["TED%3AAF-A0A3R6SCX2-F1-model_v4_TED01","TED novel fold AF-A0A3R6SCX2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292274","Clostridiaceae bacterium OM08-6BH"]]},{"id":"NCBITaxon:2292281","l":"Bacteroides sp. OF04-15BH","na":1,"nb":1,"a":[["TED%3AAF-A0A416GBK9-F1-model_v4_TED03","TED novel fold AF-A0A416GBK9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2292281","Bacteroides sp. OF04-15BH"]]},{"id":"NCBITaxon:2292287","l":"Blautia sp. OF03-15BH","na":1,"nb":1,"a":[["TED%3AAF-A0A413HUN0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A413HUN0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2292287","Blautia sp. OF03-15BH"]]},{"id":"NCBITaxon:2292288","l":"Clostridiaceae bacterium AM27-36LB","na":1,"nb":1,"a":[["TED%3AAF-A0A417I018-F1-model_v4_TED02","TED novel fold AF-A0A417I018-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2292288","Clostridiaceae bacterium AM27-36LB"]]},{"id":"NCBITaxon:2292298","l":"Butyricicoccus sp. OF10-2","na":1,"nb":1,"a":[["TED%3AAF-A0A396Q9G3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A396Q9G3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292298","Butyricicoccus sp. OF10-2"]]},{"id":"NCBITaxon:2292305","l":"Clostridium sp. AM42-4","na":1,"nb":1,"a":[["TED%3AAF-A0A417BW51-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A417BW51-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292305","Clostridium sp. AM42-4"]]},{"id":"NCBITaxon:2292320","l":"Collinsella sp. AM41-2BH","na":1,"nb":1,"a":[["TED%3AAF-A0A413UK93-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A413UK93-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292320","Collinsella sp. AM41-2BH"]]},{"id":"NCBITaxon:2292329","l":"Collinsella sp. OM08-14AT","na":1,"nb":1,"a":[["TED%3AAF-A0A374V4M3-F1-model_v4_TED01","TED novel fold AF-A0A374V4M3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292329","Collinsella sp. OM08-14AT"]]},{"id":"NCBITaxon:2292347","l":"Dorea sp. OM02-2LB","na":1,"nb":1,"a":[["TED%3AAF-A0A374X375-F1-model_v4_TED01","TED novel fold AF-A0A374X375-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292347","Dorea sp. OM02-2LB"]]},{"id":"NCBITaxon:2292358","l":"Megasphaera sp. AM44-1BH","na":1,"nb":1,"a":[["TED%3AAF-A0A413QQL4-F1-model_v4_TED01","TED novel fold AF-A0A413QQL4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292358","Megasphaera sp. AM44-1BH"]]},{"id":"NCBITaxon:2292363","l":"Parabacteroides sp. TM07-1AC","na":1,"nb":1,"a":[["TED%3AAF-A0A3R6RVC2-F1-model_v4_TED02","TED novel fold AF-A0A3R6RVC2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2292363","Parabacteroides sp. TM07-1AC"]]},{"id":"NCBITaxon:2292364","l":"Prevotella sp. AM34-19LB","na":1,"nb":1,"a":[["TED%3AAF-A0A3R6B020-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3R6B020-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2292364","Prevotella sp. AM34-19LB"]]},{"id":"NCBITaxon:2292365","l":"Prevotella sp. TF12-30","na":1,"nb":1,"a":[["TED%3AAF-A0A374TE07-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A374TE07-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292365","Prevotella sp. TF12-30"]]},{"id":"NCBITaxon:2292705","l":"Paenibacillus paeoniae","na":1,"nb":1,"a":[["TED%3AAF-A0A371PIW4-F1-model_v4_TED01","TED novel fold AF-A0A371PIW4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292705","Paenibacillus paeoniae"]]},{"id":"NCBITaxon:2292766","l":"Persicimonas caeni","na":1,"nb":1,"a":[["TED%3AAF-A0A4Y6Q2C3-F1-model_v4_TED01","TED novel fold AF-A0A4Y6Q2C3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292766","Persicimonas caeni"]]},{"id":"NCBITaxon:2292910","l":"Alistipes sp. AF14-19","na":1,"nb":1,"a":[["TED%3AAF-A0A374A2V7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A374A2V7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2292910","Alistipes sp. AF14-19"]]},{"id":"NCBITaxon:2292911","l":"Alistipes sp. AM16-43","na":1,"nb":1,"a":[["TED%3AAF-A0A6N4H138-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N4H138-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292911","Alistipes sp. AM16-43"]]},{"id":"NCBITaxon:2292923","l":"Bacteroides sp. AF25-18","na":1,"nb":1,"a":[["TED%3AAF-A0A3A5ZVW8-F1-model_v4_TED02","TED novel fold AF-A0A3A5ZVW8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2292923","Bacteroides sp. AF25-18"]]},{"id":"NCBITaxon:2292942","l":"Bacteroides sp. AM23-12","na":1,"nb":1,"a":[["TED%3AAF-A0A372UNQ0-F1-model_v4_TED05","TED novel fold AF-A0A372UNQ0-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2292942","Bacteroides sp. AM23-12"]]},{"id":"NCBITaxon:2292962","l":"Blautia sp. AF19-13LB","na":1,"nb":1,"a":[["TED%3AAF-A0A416S5R5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A416S5R5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292962","Blautia sp. AF19-13LB"]]},{"id":"NCBITaxon:2292968","l":"Blautia sp. AF34-10","na":1,"nb":1,"a":[["TED%3AAF-A0A416EA07-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A416EA07-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2292968","Blautia sp. AF34-10"]]},{"id":"NCBITaxon:2292971","l":"Blautia sp. AM23-13AC","na":1,"nb":1,"a":[["TED%3AAF-A0A373GU64-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A373GU64-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2292971","Blautia sp. AM23-13AC"]]},{"id":"NCBITaxon:2292979","l":"Blautia sp. AM47-4","na":1,"nb":1,"a":[["TED%3AAF-A0A416ZLU8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A416ZLU8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2292979","Blautia sp. AM47-4"]]},{"id":"NCBITaxon:2293015","l":"Clostridium sp. AF36-4","na":1,"nb":1,"a":[["TED%3AAF-A0A373LW89-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A373LW89-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293015","Clostridium sp. AF36-4"]]},{"id":"NCBITaxon:2293021","l":"Clostridium sp. AF50-3","na":1,"nb":1,"a":[["TED%3AAF-A0A3R6MB85-F1-model_v4_TED01","TED novel fold AF-A0A3R6MB85-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293021","Clostridium sp. AF50-3"]]},{"id":"NCBITaxon:2293025","l":"Clostridium sp. AM27-28","na":1,"nb":1,"a":[["TED%3AAF-A0A3R6RLH9-F1-model_v4_TED03","TED novel fold AF-A0A3R6RLH9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2293025","Clostridium sp. AM27-28"]]},{"id":"NCBITaxon:2293041","l":"Clostridium sp. OM04-12AA","na":1,"nb":1,"a":[["TED%3AAF-A0A417U5V0-F1-model_v4_TED04","TED novel fold AF-A0A417U5V0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2293041","Clostridium sp. OM04-12AA"]]},{"id":"NCBITaxon:2293049","l":"Clostridium sp. OM08-29","na":1,"nb":1,"a":[["TED%3AAF-A0A417PJ91-F1-model_v4_TED01","TED novel fold AF-A0A417PJ91-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293049","Clostridium sp. OM08-29"]]},{"id":"NCBITaxon:2293054","l":"Clostridium sp. TM06-18","na":1,"nb":1,"a":[["TED%3AAF-A0A3R6SPQ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R6SPQ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293054","Clostridium sp. TM06-18"]]},{"id":"NCBITaxon:2293083","l":"Coprobacillus sp. OF03-2AA","na":1,"nb":1,"a":[["TED%3AAF-A0A416GDF1-F1-model_v4_TED01","TED novel fold AF-A0A416GDF1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293083","Coprobacillus sp. OF03-2AA"]]},{"id":"NCBITaxon:2293088","l":"Coprococcus sp. AF16-5","na":1,"nb":1,"a":[["TED%3AAF-A0A3R6T6B7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R6T6B7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293088","Coprococcus sp. AF16-5"]]},{"id":"NCBITaxon:2293113","l":"Parabacteroides sp. AF17-3","na":1,"nb":1,"a":[["TED%3AAF-A0A496D3Q5-F1-model_v4_TED02","TED novel fold AF-A0A496D3Q5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2293113","Parabacteroides sp. AF17-3"]]},{"id":"NCBITaxon:2293124","l":"Parabacteroides sp. OF04-13BH","na":1,"nb":1,"a":[["TED%3AAF-A0A496CTK2-F1-model_v4_TED07","TED novel fold AF-A0A496CTK2-F1-model_v4_TED07"]],"b":[["NCBITaxon%3A2293124","Parabacteroides sp. OF04-13BH"]]},{"id":"NCBITaxon:2293125","l":"Prevotella sp. AM42-24","na":1,"nb":1,"a":[["TED%3AAF-A0A374BKF8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A374BKF8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2293125","Prevotella sp. AM42-24"]]},{"id":"NCBITaxon:2293128","l":"Roseburia sp. AF15-21","na":1,"nb":1,"a":[["TED%3AAF-A0A3R6RT74-F1-model_v4_TED01","TED novel fold AF-A0A3R6RT74-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293128","Roseburia sp. AF15-21"]]},{"id":"NCBITaxon:2293129","l":"Roseburia sp. AF20-18LB","na":1,"nb":1,"a":[["TED%3AAF-A0A373UUB6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A373UUB6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293129","Roseburia sp. AF20-18LB"]]},{"id":"NCBITaxon:2293144","l":"Roseburia sp. TF10-5","na":1,"nb":1,"a":[["TED%3AAF-A0A374IBS0-F1-model_v4_TED03","TED novel fold AF-A0A374IBS0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2293144","Roseburia sp. TF10-5"]]},{"id":"NCBITaxon:2293146","l":"Ruminococcus sp. AF12-5","na":1,"nb":1,"a":[["TED%3AAF-A0A374A227-F1-model_v4_TED02","TED novel fold AF-A0A374A227-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2293146","Ruminococcus sp. AF12-5"]]},{"id":"NCBITaxon:2293150","l":"Ruminococcus sp. AF17-11","na":1,"nb":1,"a":[["TED%3AAF-A0A373XMI7-F1-model_v4_TED01","TED novel fold AF-A0A373XMI7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293150","Ruminococcus sp. AF17-11"]]},{"id":"NCBITaxon:2293154","l":"Ruminococcus sp. AF17-6","na":1,"nb":1,"a":[["TED%3AAF-A0A373WJM5-F1-model_v4_TED03","TED novel fold AF-A0A373WJM5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2293154","Ruminococcus sp. AF17-6"]]},{"id":"NCBITaxon:2293158","l":"Ruminococcus sp. AF19-29","na":1,"nb":1,"a":[["TED%3AAF-A0A416RYY3-F1-model_v4_TED02","TED novel fold AF-A0A416RYY3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2293158","Ruminococcus sp. AF19-29"]]},{"id":"NCBITaxon:2293178","l":"Ruminococcus sp. AF37-20","na":1,"nb":1,"a":[["TED%3AAF-A0A373LCT7-F1-model_v4_TED01","TED novel fold AF-A0A373LCT7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293178","Ruminococcus sp. AF37-20"]]},{"id":"NCBITaxon:2293195","l":"Ruminococcus sp. AM28-29LB","na":1,"nb":1,"a":[["TED%3AAF-A0A374G5B5-F1-model_v4_TED01","TED novel fold AF-A0A374G5B5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293195","Ruminococcus sp. AM28-29LB"]]},{"id":"NCBITaxon:2293202","l":"Ruminococcus sp. AM31-15AC","na":1,"nb":1,"a":[["TED%3AAF-A0A374EXV0-F1-model_v4_TED01","TED novel fold AF-A0A374EXV0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293202","Ruminococcus sp. AM31-15AC"]]},{"id":"NCBITaxon:2293208","l":"Ruminococcus sp. AM36-17","na":1,"nb":1,"a":[["TED%3AAF-A0A417DI12-F1-model_v4_TED01","TED novel fold AF-A0A417DI12-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293208","Ruminococcus sp. AM36-17"]]},{"id":"NCBITaxon:2293215","l":"Ruminococcus sp. AM42-10AC","na":1,"nb":1,"a":[["TED%3AAF-A0A417CN21-F1-model_v4_TED01","TED novel fold AF-A0A417CN21-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293215","Ruminococcus sp. AM42-10AC"]]},{"id":"NCBITaxon:2293228","l":"Ruminococcus sp. OF02-6","na":1,"nb":1,"a":[["TED%3AAF-A0A416GZV7-F1-model_v4_TED02","TED novel fold AF-A0A416GZV7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2293228","Ruminococcus sp. OF02-6"]]},{"id":"NCBITaxon:2293230","l":"Ruminococcus sp. OF05-2BH","na":1,"nb":1,"a":[["TED%3AAF-A0A374LM13-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A374LM13-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293230","Ruminococcus sp. OF05-2BH"]]},{"id":"NCBITaxon:2293859","l":"Halanaerobium sp. MSAO_Bac5","na":1,"nb":1,"a":[["TED%3AAF-A0A424YC22-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A424YC22-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2293859","Halanaerobium sp. MSAO_Bac5"]]},{"id":"NCBITaxon:229919","l":"Anaerolinea thermolimosa","na":1,"nb":1,"a":[["TED%3AAF-A0A3D1JEJ6-F1-model_v4_TED03","TED novel fold AF-A0A3D1JEJ6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A229919","Anaerolinea thermolimosa"]]},{"id":"NCBITaxon:230089","l":"Photorhabdus thracensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0F7LMP9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F7LMP9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A230089","Photorhabdus thracensis"]]},{"id":"NCBITaxon:230091","l":"Micromonospora endolithica","na":1,"nb":1,"a":[["TED%3AAF-A0A3A9ZCA3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3A9ZCA3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A230091","Micromonospora endolithica"]]},{"id":"NCBITaxon:2302364","l":"Acinetobacter sp. JW","na":1,"nb":1,"a":[["TED%3AAF-A0A372BGZ3-F1-model_v4_TED01","TED novel fold AF-A0A372BGZ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2302364","Acinetobacter sp. JW"]]},{"id":"NCBITaxon:2302989","l":"Clostridiales bacterium TF09-2AC","na":1,"nb":1,"a":[["TED%3AAF-A0A3A6IFD3-F1-model_v4_TED03","TED novel fold AF-A0A3A6IFD3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2302989","Clostridiales bacterium TF09-2AC"]]},{"id":"NCBITaxon:2303331","l":"Solimonas sp. K1W22B-7","na":1,"nb":1,"a":[["TED%3AAF-A0A346N7K7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A346N7K7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2303331","Solimonas sp. K1W22B-7"]]},{"id":"NCBITaxon:2303332","l":"Cellvibrio sp. KY-GH-1","na":1,"nb":1,"a":[["TED%3AAF-A0A5J6P7W3-F1-model_v4_TED01","TED novel fold AF-A0A5J6P7W3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2303332","Cellvibrio sp. KY-GH-1"]]},{"id":"NCBITaxon:2303333","l":"Mucilaginibacter conchicola","na":1,"nb":1,"a":[["TED%3AAF-A0A372NTR5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A372NTR5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2303333","Mucilaginibacter conchicola"]]},{"id":"NCBITaxon:230361","l":"Methanobrevibacter millerae","na":1,"nb":1,"a":[["TED%3AAF-A0A0U3DSU9-F1-model_v4_TED04","TED novel fold AF-A0A0U3DSU9-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A230361","Methanobrevibacter millerae"]]},{"id":"NCBITaxon:2303987","l":"Motilimonas pumila","na":1,"nb":1,"a":[["TED%3AAF-A0A418YIK5-F1-model_v4_TED02","TED novel fold AF-A0A418YIK5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2303987","Motilimonas pumila"]]},{"id":"NCBITaxon:2304039","l":"Thermoanaerobacterales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7V6UE01-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7V6UE01-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2304039","Thermoanaerobacterales bacterium"]]},{"id":"NCBITaxon:2304571","l":"Enterorhabdus sp. P55","na":1,"nb":1,"a":[["TED%3AAF-A0A7K3KZ32-F1-model_v4_TED01","TED novel fold AF-A0A7K3KZ32-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2304571","Enterorhabdus sp. P55"]]},{"id":"NCBITaxon:2304576","l":"Pseudoflavonifractor sp. 60","na":1,"nb":1,"a":[["TED%3AAF-A0A6G3LXM3-F1-model_v4_TED02","TED novel fold AF-A0A6G3LXM3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2304576","Pseudoflavonifractor sp. 60"]]},{"id":"NCBITaxon:2304594","l":"Marinobacter sp. Arc7-DN-1","na":1,"nb":1,"a":[["TED%3AAF-A0A346S279-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A346S279-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2304594","Marinobacter sp. Arc7-DN-1"]]},{"id":"NCBITaxon:2304604","l":"Adonisia turfae CCMR0082","na":1,"nb":1,"a":[["TED%3AAF-A0A6M0SB69-F1-model_v4_TED01","TED novel fold AF-A0A6M0SB69-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2304604","Adonisia turfae CCMR0082"]]},{"id":"NCBITaxon:230495","l":"Reinekea marinisedimentorum","na":1,"nb":1,"a":[["TED%3AAF-A0A4R3I585-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R3I585-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A230495","Reinekea marinisedimentorum"]]},{"id":"NCBITaxon:2305219","l":"Paracoccus sp. BP8","na":1,"nb":1,"a":[["TED%3AAF-A0A3N7GAZ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N7GAZ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2305219","Paracoccus sp. BP8"]]},{"id":"NCBITaxon:2305242","l":"Clostridium sp. AM34-11AC","na":1,"nb":1,"a":[["TED%3AAF-A0A373C7X0-F1-model_v4_TED02","TED novel fold AF-A0A373C7X0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2305242","Clostridium sp. AM34-11AC"]]},{"id":"NCBITaxon:2305243","l":"Desulfotomaculum sp. OF05-3","na":1,"nb":1,"a":[["TED%3AAF-A0A373DCU4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A373DCU4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2305243","Desulfotomaculum sp. OF05-3"]]},{"id":"NCBITaxon:2305245","l":"Clostridiaceae bacterium TF01-6","na":1,"nb":1,"a":[["TED%3AAF-A0A373CRX3-F1-model_v4_TED02","TED novel fold AF-A0A373CRX3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2305245","Clostridiaceae bacterium TF01-6"]]},{"id":"NCBITaxon:2305463","l":"Maribellus luteus","na":1,"nb":1,"a":[["TED%3AAF-A0A399SUN2-F1-model_v4_TED01","TED novel fold AF-A0A399SUN2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2305463","Maribellus luteus"]]},{"id":"NCBITaxon:2305508","l":"Mucilaginibacter celer","na":1,"nb":1,"a":[["TED%3AAF-A0A494VUG1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A494VUG1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2305508","Mucilaginibacter celer"]]},{"id":"NCBITaxon:2305907","l":"Sphingomonas gilva","na":1,"nb":1,"a":[["TED%3AAF-A0A396RP53-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A396RP53-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2305907","Sphingomonas gilva"]]},{"id":"NCBITaxon:2305909","l":"Mucilaginibacter gilvus","na":1,"nb":1,"a":[["TED%3AAF-A0A3S3VHX5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3S3VHX5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2305909","Mucilaginibacter gilvus"]]},{"id":"NCBITaxon:2306023","l":"Gemmobacter lutimaris","na":1,"nb":1,"a":[["TED%3AAF-A0A398BQ53-F1-model_v4_TED04","TED novel fold AF-A0A398BQ53-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2306023","Gemmobacter lutimaris"]]},{"id":"NCBITaxon:2306054","l":"Rhodothermales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y2CAE0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y2CAE0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2306054","Rhodothermales bacterium"]]},{"id":"NCBITaxon:2306975","l":"Bifidobacterium goeldii","na":1,"nb":1,"a":[["TED%3AAF-A0A430FLK0-F1-model_v4_TED03","TED novel fold AF-A0A430FLK0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2306975","Bifidobacterium goeldii"]]},{"id":"NCBITaxon:2306998","l":"Flagellimonas pelagia","na":1,"nb":1,"a":[["TED%3AAF-A0A3A1NM92-F1-model_v4_TED01","TED novel fold AF-A0A3A1NM92-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2306998","Flagellimonas pelagia"]]},{"id":"NCBITaxon:2307003","l":"Aurantiacibacter zhengii","na":1,"nb":1,"a":[["TED%3AAF-A0A418NVT8-F1-model_v4_TED01","TED novel fold AF-A0A418NVT8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2307003","Aurantiacibacter zhengii"]]},{"id":"NCBITaxon:2307007","l":"Aromatoleum sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A6N9R918-F1-model_v4_TED06","TED novel fold AF-A0A6N9R918-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A2307007","Aromatoleum sp."]]},{"id":"NCBITaxon:2315236","l":"Pseudaquabacterium pictum","na":1,"nb":1,"a":[["TED%3AAF-A0A480AP83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A480AP83-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2315236","Pseudaquabacterium pictum"]]},{"id":"NCBITaxon:2315329","l":"Streptomyces sporangiiformans","na":1,"nb":1,"a":[["TED%3AAF-A0A505DC79-F1-model_v4_TED01","TED novel fold AF-A0A505DC79-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2315329","Streptomyces sporangiiformans"]]},{"id":"NCBITaxon:2316362","l":"Candolleomyces aberdarensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q2D4N0-F1-model_v4_TED01","TED novel fold AF-A0A4Q2D4N0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2316362","Candolleomyces aberdarensis"]]},{"id":"NCBITaxon:2316716","l":"Corallococcus sp. AB030","na":1,"nb":1,"a":[["TED%3AAF-A0A3A8ULP0-F1-model_v4_TED01","TED novel fold AF-A0A3A8ULP0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2316716","Corallococcus sp. AB030"]]},{"id":"NCBITaxon:2316718","l":"Corallococcus sp. AB038B","na":1,"nb":1,"a":[["TED%3AAF-A0A3A8TYU4-F1-model_v4_TED01","TED novel fold AF-A0A3A8TYU4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2316718","Corallococcus sp. AB038B"]]},{"id":"NCBITaxon:2316720","l":"Corallococcus interemptor","na":1,"nb":1,"a":[["TED%3AAF-A0A3A8Q6H5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3A8Q6H5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2316720","Corallococcus interemptor"]]},{"id":"NCBITaxon:2316722","l":"Corallococcus aberystwythensis","na":1,"nb":1,"a":[["TED%3AAF-A0A3A8P7F2-F1-model_v4_TED01","TED novel fold AF-A0A3A8P7F2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2316722","Corallococcus aberystwythensis"]]},{"id":"NCBITaxon:2316726","l":"Corallococcus sicarius","na":1,"nb":1,"a":[["TED%3AAF-A0A3A8MYI2-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A3A8MYI2-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2316726","Corallococcus sicarius"]]},{"id":"NCBITaxon:2316728","l":"Corallococcus carmarthensis","na":1,"nb":1,"a":[["TED%3AAF-A0A3A8K3V0-F1-model_v4_TED03","TED novel fold AF-A0A3A8K3V0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2316728","Corallococcus carmarthensis"]]},{"id":"NCBITaxon:2316731","l":"Corallococcus llansteffanensis","na":1,"nb":1,"a":[["TED%3AAF-A0A3A8PPT6-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3A8PPT6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2316731","Corallococcus llansteffanensis"]]},{"id":"NCBITaxon:2316732","l":"Corallococcus sp. CA053C","na":1,"nb":1,"a":[["TED%3AAF-A0A3A8J8M5-F1-model_v4_TED02","TED novel fold AF-A0A3A8J8M5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2316732","Corallococcus sp. CA053C"]]},{"id":"NCBITaxon:2316734","l":"Corallococcus sp. CA054B","na":1,"nb":1,"a":[["TED%3AAF-A0A3A8H705-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A8H705-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2316734","Corallococcus sp. CA054B"]]},{"id":"NCBITaxon:2316735","l":"Corallococcus sp. AB011P","na":1,"nb":1,"a":[["TED%3AAF-A0A3A8GFM2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3A8GFM2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2316735","Corallococcus sp. AB011P"]]},{"id":"NCBITaxon:2319844","l":"Sphingomonas paeninsulae","na":1,"nb":1,"a":[["TED%3AAF-A0A494T9D4-F1-model_v4_TED01","TED novel fold AF-A0A494T9D4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2319844","Sphingomonas paeninsulae"]]},{"id":"NCBITaxon:232","l":"Alteromonas sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2D9B6J8-F1-model_v4_TED01","TED novel fold AF-A0A2D9B6J8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A232","Alteromonas sp."]]},{"id":"NCBITaxon:2320099","l":"bacterium 0.1xD8-71","na":1,"nb":1,"a":[["TED%3AAF-A0A3A9AH35-F1-model_v4_TED03","TED novel fold AF-A0A3A9AH35-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2320099","bacterium 0.1xD8-71"]]},{"id":"NCBITaxon:2320102","l":"bacterium 1XD42-8","na":1,"nb":1,"a":[["TED%3AAF-A0A3A9FTI0-F1-model_v4_TED03","TED novel fold AF-A0A3A9FTI0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2320102","bacterium 1XD42-8"]]},{"id":"NCBITaxon:2320107","l":"bacterium 1xD42-67","na":1,"nb":1,"a":[["TED%3AAF-A0A3A8YJJ5-F1-model_v4_TED01","TED novel fold AF-A0A3A8YJJ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2320107","bacterium 1xD42-67"]]},{"id":"NCBITaxon:2320112","l":"bacterium D16-50","na":1,"nb":1,"a":[["TED%3AAF-A0A3A9DC66-F1-model_v4_TED02","TED novel fold AF-A0A3A9DC66-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2320112","bacterium D16-50"]]},{"id":"NCBITaxon:2320115","l":"bacterium 1XD8-76","na":1,"nb":1,"a":[["TED%3AAF-A0A3A9FA06-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3A9FA06-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2320115","bacterium 1XD8-76"]]},{"id":"NCBITaxon:2320122","l":"bacterium J10(2018)","na":1,"nb":1,"a":[["TED%3AAF-A0A3L8A0P8-F1-model_v4_TED01","TED novel fold AF-A0A3L8A0P8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2320122","bacterium J10(2018)"]]},{"id":"NCBITaxon:2320861","l":"Sphingomonas cavernae","na":1,"nb":1,"a":[["TED%3AAF-A0A418W7W4-F1-model_v4_TED01","TED novel fold AF-A0A418W7W4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2320861","Sphingomonas cavernae"]]},{"id":"NCBITaxon:2320862","l":"Noviherbaspirillum cavernae","na":1,"nb":1,"a":[["TED%3AAF-A0A418X340-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A418X340-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2320862","Noviherbaspirillum cavernae"]]},{"id":"NCBITaxon:2320867","l":"Pseudomonas cavernae","na":1,"nb":1,"a":[["TED%3AAF-A0A385Z222-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A385Z222-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2320867","Pseudomonas cavernae"]]},{"id":"NCBITaxon:2320884","l":"bacterium 1XD8-92","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q2BN90-F1-model_v4_TED03","TED novel fold AF-A0A4Q2BN90-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2320884","bacterium 1XD8-92"]]},{"id":"NCBITaxon:232346","l":"Halomonas alkaliantarctica","na":1,"nb":1,"a":[["TED%3AAF-A0A4R7Y984-F1-model_v4_TED01","TED novel fold AF-A0A4R7Y984-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A115551","Vreelandella neptunia"]]},{"id":"NCBITaxon:2340725","l":"Streptomyces bauhiniae","na":1,"nb":1,"a":[["TED%3AAF-A0A4Z1CTK4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Z1CTK4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2340725","Streptomyces bauhiniae"]]},{"id":"NCBITaxon:2340916","l":"Nocardia panacis","na":1,"nb":1,"a":[["TED%3AAF-A0A3A4KXJ6-F1-model_v4_TED02","TED novel fold AF-A0A3A4KXJ6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2340916","Nocardia panacis"]]},{"id":"NCBITaxon:2341115","l":"Bradyrhizobium sp. LVM 105","na":1,"nb":1,"a":[["TED%3AAF-A0A5E8V541-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5E8V541-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2341115","Bradyrhizobium sp. LVM 105"]]},{"id":"NCBITaxon:234621","l":"Rhodococcus erythropolis PR4","na":1,"nb":1,"a":[["TED%3AAF-C0ZLI2-F1-model_v4_TED01","TED novel fold AF-C0ZLI2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A234621","Rhodococcus erythropolis PR4"]]},{"id":"NCBITaxon:2358142","l":"Microcystis aeruginosa 11-30S32","na":1,"nb":1,"a":[["TED%3AAF-A0A510PNA6-F1-model_v4_TED02","TED novel fold AF-A0A510PNA6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2358142","Microcystis aeruginosa 11-30S32"]]},{"id":"NCBITaxon:2358460","l":"Nitrospirales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7W1Z1J8-F1-model_v4_TED02","TED novel fold AF-A0A7W1Z1J8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2358460","Nitrospirales bacterium"]]},{"id":"NCBITaxon:2364879","l":"Butyrivibrio sp. CB08","na":1,"nb":1,"a":[["TED%3AAF-A0A3A9TL31-F1-model_v4_TED01","TED novel fold AF-A0A3A9TL31-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2364879","Butyrivibrio sp. CB08"]]},{"id":"NCBITaxon:237018","l":"Algoriphagus aquimarinus","na":1,"nb":1,"a":[["TED%3AAF-A0A5C7AAU4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5C7AAU4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A237018","Algoriphagus aquimarinus"]]},{"id":"NCBITaxon:237610","l":"Pseudomonas psychrotolerans","na":1,"nb":1,"a":[["TED%3AAF-A0A1G5PDN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G5PDN6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A47885","Pseudomonas oryzihabitans"]]},{"id":"NCBITaxon:237656","l":"Pseudonocardia antarctica","na":1,"nb":1,"a":[["TED%3AAF-A0A852WGN1-F1-model_v4_TED01","TED novel fold AF-A0A852WGN1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A33907","Pseudonocardia alni"]]},{"id":"NCBITaxon:2377","l":"Sporomusa termitida","na":1,"nb":1,"a":[["TED%3AAF-A0A517DX57-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A517DX57-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2377","Sporomusa termitida"]]},{"id":"NCBITaxon:2382124","l":"Cardiobacterium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A660MDG5-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A660MDG5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2382124","Cardiobacterium sp."]]},{"id":"NCBITaxon:2382229","l":"Bacteroidetes/Chlorobi group bacterium Naka2016","na":1,"nb":1,"a":[["TED%3AAF-A0A3N0ZIA2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N0ZIA2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2382229","Bacteroidetes/Chlorobi group bacterium Naka2016"]]},{"id":"NCBITaxon:238540","l":"Algoriphagus antarcticus","na":1,"nb":1,"a":[["TED%3AAF-A0A3E0D6W3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3E0D6W3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A238540","Algoriphagus antarcticus"]]},{"id":"NCBITaxon:238800","l":"Rickettsia asiatica","na":1,"nb":1,"a":[["TED%3AAF-A0A510G767-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A510G767-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A238800","Rickettsia asiatica"]]},{"id":"NCBITaxon:240499","l":"Calcarisporium arbuscula","na":1,"nb":1,"a":[["Pfam%3APF28402","Pneumocandin biosynthesis cluster protein B C-terminal domain"]],"b":[["NCBITaxon%3A240499","Calcarisporium arbuscula"]]},{"id":"NCBITaxon:241244","l":"Rummeliibacillus stabekisii","na":1,"nb":1,"a":[["TED%3AAF-A0A511BZV1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A511BZV1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A241244","Rummeliibacillus stabekisii"]]},{"id":"NCBITaxon:2419777","l":"Trinickia fusca","na":1,"nb":1,"a":[["TED%3AAF-A0A494XH39-F1-model_v4_TED01","TED novel fold AF-A0A494XH39-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2419777","Trinickia fusca"]]},{"id":"NCBITaxon:2419984","l":"Candidatus Schekmanbacteria bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A3M1RQX1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3M1RQX1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2419984","Candidatus Schekmanbacteria bacterium"]]},{"id":"NCBITaxon:244362","l":"Ruminococcus sp. YE71","na":1,"nb":1,"a":[["TED%3AAF-A0A1K1MJM1-F1-model_v4_TED01","TED novel fold AF-A0A1K1MJM1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A244362","Ruminococcus sp. YE71"]]},{"id":"NCBITaxon:2447956","l":"Antrodiella citrinella","na":1,"nb":1,"a":[["TED%3AAF-A0A4S4N318-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4S4N318-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2447956","Antrodiella citrinella"]]},{"id":"NCBITaxon:2448056","l":"Nitriliruptor sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A651GEH8-F1-model_v4_TED01","TED novel fold AF-A0A651GEH8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2448056","Nitriliruptor sp."]]},{"id":"NCBITaxon:244830","l":"Anaerospora hongkongensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4R1PSF8-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A4R1PSF8-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A244830","Anaerospora hongkongensis"]]},{"id":"NCBITaxon:245014","l":"butyrate-producing bacterium SS3/4","na":1,"nb":1,"a":[["TED%3AAF-D7GQM5-F1-model_v4_TED01","TED novel fold AF-D7GQM5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A245014","butyrate-producing bacterium SS3/4"]]},{"id":"NCBITaxon:245739","l":"Halobacterium sp. AS7092","na":1,"nb":1,"a":[["Pfam%3APF22862","Halocin C8-like N-terminal domain"]],"b":[["NCBITaxon%3A245739","Halobacterium sp. AS7092"]]},{"id":"NCBITaxon:246264","l":"Hydrogenivirga caldilitoris","na":1,"nb":1,"a":[["TED%3AAF-A0A497XPR0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A497XPR0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A246264","Hydrogenivirga caldilitoris"]]},{"id":"NCBITaxon:247633","l":"marine gamma proteobacterium HTCC2143","na":1,"nb":1,"a":[["TED%3AAF-A0YB29-F1-model_v4_TED02","TED novel fold AF-A0YB29-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A247633","marine gamma proteobacterium HTCC2143"]]},{"id":"NCBITaxon:2478479","l":"Deinococcales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A847HTL5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A847HTL5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2478479","Deinococcales bacterium"]]},{"id":"NCBITaxon:2478537","l":"Spiroplasma endosymbiont of Megaselia nigra","na":1,"nb":1,"a":[["TED%3AAF-A0A3S0YN18-F1-model_v4_TED01","TED novel fold AF-A0A3S0YN18-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2478537","Spiroplasma endosymbiont of Megaselia nigra"]]},{"id":"NCBITaxon:2478552","l":"Flavobacterium sp. 140616W15","na":1,"nb":1,"a":[["TED%3AAF-A0A3G2GIX5-F1-model_v4_TED01","TED novel fold AF-A0A3G2GIX5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2478552","Flavobacterium sp. 140616W15"]]},{"id":"NCBITaxon:2478556","l":"Nitrosopumilus sp. H13","na":1,"nb":1,"a":[["TED%3AAF-A0A3M9ZZR2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3M9ZZR2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2478556","Nitrosopumilus sp. H13"]]},{"id":"NCBITaxon:2478558","l":"Thaumarchaeota archaeon S14","na":1,"nb":1,"a":[["TED%3AAF-A0A3M9ZMB6-F1-model_v4_TED01","TED novel fold AF-A0A3M9ZMB6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2478558","Thaumarchaeota archaeon S14"]]},{"id":"NCBITaxon:2478957","l":"Streptomyces sp. OR43","na":1,"nb":1,"a":[["TED%3AAF-A0A652M130-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A652M130-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2478957","Streptomyces sp. OR43"]]},{"id":"NCBITaxon:2478958","l":"Streptomyces sp. col6","na":1,"nb":1,"a":[["TED%3AAF-A0A6I7Y0W7-F1-model_v4_TED02","TED novel fold AF-A0A6I7Y0W7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2478958","Streptomyces sp. col6"]]},{"id":"NCBITaxon:2479048","l":"Granulicella sibirica","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q0SZE6-F1-model_v4_TED01","TED novel fold AF-A0A4Q0SZE6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2479048","Granulicella sibirica"]]},{"id":"NCBITaxon:2480211","l":"Leptolyngbya sp. LCM1.Bin17","na":1,"nb":1,"a":[["TED%3AAF-A0A6H2NM33-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6H2NM33-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2480211","Leptolyngbya sp. LCM1.Bin17"]]},{"id":"NCBITaxon:2480805","l":"Alteromonas sp. KUL150","na":1,"nb":1,"a":[["TED%3AAF-A0A640QLQ6-F1-model_v4_TED01","TED novel fold AF-A0A640QLQ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2480805","Alteromonas sp. KUL150"]]},{"id":"NCBITaxon:2480908","l":"[Mycobacterium] chelonae subsp. gwanakae","na":1,"nb":1,"a":[["TED%3AAF-A0A809GZX1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A809GZX1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2480908","[Mycobacterium] chelonae subsp. gwanakae"]]},{"id":"NCBITaxon:2482727","l":"Mucilaginibacter terrenus","na":1,"nb":1,"a":[["TED%3AAF-A0A3E2NY53-F1-model_v4_TED04","TED novel fold AF-A0A3E2NY53-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2482727","Mucilaginibacter terrenus"]]},{"id":"NCBITaxon:2483403","l":"Mesorhizobium sp. NZP2298","na":1,"nb":1,"a":[["TED%3AAF-A0A6M7W8G8-F1-model_v4_TED05","TED novel fold AF-A0A6M7W8G8-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2483403","Mesorhizobium sp. NZP2298"]]},{"id":"NCBITaxon:2483812","l":"Pseudogemmobacter humi","na":1,"nb":1,"a":[["TED%3AAF-A0A3P5WW18-F1-model_v4_TED01","TED novel fold AF-A0A3P5WW18-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2483812","Pseudogemmobacter humi"]]},{"id":"NCBITaxon:2484950","l":"Leptospira koniambonensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4R9JDH9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R9JDH9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2484950","Leptospira koniambonensis"]]},{"id":"NCBITaxon:2484976","l":"Leptospira andrefontaineae","na":1,"nb":1,"a":[["TED%3AAF-A0A4R9H1E3-F1-model_v4_TED01","TED novel fold AF-A0A4R9H1E3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2484976","Leptospira andrefontaineae"]]},{"id":"NCBITaxon:2485118","l":"Enterobacter sp. BIGb0383","na":1,"nb":1,"a":[["TED%3AAF-A0A3N1IS18-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N1IS18-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2485118","Enterobacter sp. BIGb0383"]]},{"id":"NCBITaxon:2485123","l":"Photobacterium chitinilyticum","na":1,"nb":1,"a":[["TED%3AAF-A0A3S3SZC5-F1-model_v4_TED01","TED novel fold AF-A0A3S3SZC5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2485123","Photobacterium chitinilyticum"]]},{"id":"NCBITaxon:2485153","l":"Streptomyces sp. CEV 2-1","na":1,"nb":1,"a":[["TED%3AAF-A0A3N1SQW1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N1SQW1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2485153","Streptomyces sp. CEV 2-1"]]},{"id":"NCBITaxon:2485167","l":"Bradyrhizobium sp. Y-H1","na":1,"nb":1,"a":[["TED%3AAF-A0A4R3TUN0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R3TUN0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2485167","Bradyrhizobium sp. Y-H1"]]},{"id":"NCBITaxon:2485168","l":"Methylosinus sp. sav-2","na":1,"nb":1,"a":[["TED%3AAF-A0A4R8HS43-F1-model_v4_TED01","TED novel fold AF-A0A4R8HS43-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2485168","Methylosinus sp. sav-2"]]},{"id":"NCBITaxon:2485180","l":"Curtobacterium sp. PhB134","na":1,"nb":1,"a":[["TED%3AAF-A0A4R1TTQ2-F1-model_v4_TED02","TED novel fold AF-A0A4R1TTQ2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2485180","Curtobacterium sp. PhB134"]]},{"id":"NCBITaxon:2485187","l":"Curtobacterium sp. PhB146","na":1,"nb":1,"a":[["TED%3AAF-A0A4R3SK95-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R3SK95-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2485187","Curtobacterium sp. PhB146"]]},{"id":"NCBITaxon:2485484","l":"Nostoc sp. 2RC","na":1,"nb":1,"a":[["TED%3AAF-A0A841WKU9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841WKU9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2485484","Nostoc sp. 2RC"]]},{"id":"NCBITaxon:2486251","l":"Microcystis aeruginosa Ma_QC_Ca_00000000_S207","na":1,"nb":1,"a":[["TED%3AAF-A0A552FML4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A552FML4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2486251","Microcystis aeruginosa Ma_QC_Ca_00000000_S207"]]},{"id":"NCBITaxon:2486264","l":"Microcystis aeruginosa Ma_AC_P_19900807_S299","na":1,"nb":1,"a":[["TED%3AAF-A0A551ZTV0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A551ZTV0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2486264","Microcystis aeruginosa Ma_AC_P_19900807_S299"]]},{"id":"NCBITaxon:2486266","l":"Microcystis novacekii Mn_MB_F_20050700_S1D","na":1,"nb":1,"a":[["TED%3AAF-A0A552IW16-F1-model_v4_TED01","TED novel fold AF-A0A552IW16-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2486266","Microcystis novacekii Mn_MB_F_20050700_S1D"]]},{"id":"NCBITaxon:2486270","l":"Microcystis viridis Mv_BB_P_19951000_S68D","na":1,"nb":1,"a":[["TED%3AAF-A0A552H5C1-F1-model_v4_TED02","TED novel fold AF-A0A552H5C1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2486270","Microcystis viridis Mv_BB_P_19951000_S68D"]]},{"id":"NCBITaxon:2486462","l":"Muribaculaceae bacterium Isolate-042 (Harlan)","na":1,"nb":1,"a":[["TED%3AAF-A0A3N2KBF0-F1-model_v4_TED02","TED novel fold AF-A0A3N2KBF0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2486462","Muribaculaceae bacterium Isolate-042 (Harlan)"]]},{"id":"NCBITaxon:2486466","l":"Muribaculaceae bacterium Isolate-039 (Harlan)","na":1,"nb":1,"a":[["TED%3AAF-A0A3N2K9Y4-F1-model_v4_TED04","TED novel fold AF-A0A3N2K9Y4-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2486466","Muribaculaceae bacterium Isolate-039 (Harlan)"]]},{"id":"NCBITaxon:2486467","l":"Muribaculaceae bacterium Isolate-077 (Janvier)","na":1,"nb":1,"a":[["TED%3AAF-A0A3N2LBZ0-F1-model_v4_TED06","TED novel fold AF-A0A3N2LBZ0-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A2486467","Muribaculaceae bacterium Isolate-077 (Janvier)"]]},{"id":"NCBITaxon:2486468","l":"Muribaculaceae bacterium Isolate-080 (Janvier)","na":1,"nb":1,"a":[["TED%3AAF-A0A3N2KRD5-F1-model_v4_TED01","TED novel fold AF-A0A3N2KRD5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2486468","Muribaculaceae bacterium Isolate-080 (Janvier)"]]},{"id":"NCBITaxon:2487017","l":"Ancylomarina longa","na":1,"nb":1,"a":[["TED%3AAF-A0A434AXK3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A434AXK3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2487017","Ancylomarina longa"]]},{"id":"NCBITaxon:2487066","l":"Chryseobacterium sp. G0240","na":1,"nb":1,"a":[["TED%3AAF-A0A3N0WP96-F1-model_v4_TED01","TED novel fold AF-A0A3N0WP96-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2487066","Chryseobacterium sp. G0240"]]},{"id":"NCBITaxon:2487137","l":"Halostreptopolyspora alba","na":1,"nb":1,"a":[["TED%3AAF-A0A3N0EGX0-F1-model_v4_TED01","TED novel fold AF-A0A3N0EGX0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2487137","Halostreptopolyspora alba"]]},{"id":"NCBITaxon:2487322","l":"Vibrio viridaestus","na":1,"nb":1,"a":[["TED%3AAF-A0A3N9TGN7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3N9TGN7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2487322","Vibrio viridaestus"]]},{"id":"NCBITaxon:2487337","l":"Pseudanabaena sp. UWO311","na":1,"nb":1,"a":[["TED%3AAF-A0A6N2K1G6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N2K1G6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2487337","Pseudanabaena sp. UWO311"]]},{"id":"NCBITaxon:2487352","l":"Rhodococcus spongiicola","na":1,"nb":1,"a":[["TED%3AAF-A0A438APS3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A438APS3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2487352","Rhodococcus spongiicola"]]},{"id":"NCBITaxon:2487416","l":"Streptomyces sp. WAC06614","na":1,"nb":1,"a":[["TED%3AAF-A0A3R9VE74-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A3R9VE74-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2487416","Streptomyces sp. WAC06614"]]},{"id":"NCBITaxon:2487722","l":"Levilactobacillus suantsaiihabitans","na":1,"nb":1,"a":[["TED%3AAF-A0A4Z0J8A0-F1-model_v4_TED01","TED novel fold AF-A0A4Z0J8A0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2487722","Levilactobacillus suantsaiihabitans"]]},{"id":"NCBITaxon:2487897","l":"Cyclobacteriaceae bacterium YHN15","na":1,"nb":1,"a":[["TED%3AAF-A0A3N4H952-F1-model_v4_TED02","TED novel fold AF-A0A3N4H952-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2487897","Cyclobacteriaceae bacterium YHN15"]]},{"id":"NCBITaxon:2487931","l":"Pseudorhodobacter sp. E13","na":1,"nb":1,"a":[["TED%3AAF-A0A3S0Z2P2-F1-model_v4_TED02","TED novel fold AF-A0A3S0Z2P2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2487931","Pseudorhodobacter sp. E13"]]},{"id":"NCBITaxon:2488728","l":"Paenimyroides tangerinum","na":1,"nb":1,"a":[["TED%3AAF-A0A3P3W2W0-F1-model_v4_TED03","TED novel fold AF-A0A3P3W2W0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2488728","Paenimyroides tangerinum"]]},{"id":"NCBITaxon:2488730","l":"Falsigemmobacter faecalis","na":1,"nb":1,"a":[["TED%3AAF-A0A3P3DJT5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3P3DJT5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2488730","Falsigemmobacter faecalis"]]},{"id":"NCBITaxon:2488809","l":"Verrucomicrobia bacterium S94","na":1,"nb":1,"a":[["TED%3AAF-A0A4P6PDV8-F1-model_v4_TED01","TED novel fold AF-A0A4P6PDV8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2488809","Verrucomicrobia bacterium S94"]]},{"id":"NCBITaxon:248906","l":"Zobellia laminariae","na":1,"nb":1,"a":[["TED%3AAF-A0A844N883-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A844N883-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A248906","Zobellia laminariae"]]},{"id":"NCBITaxon:2489215","l":"Muribaculaceae bacterium Isolate-002 (NCI)","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q0IZI5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q0IZI5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2489215","Muribaculaceae bacterium Isolate-002 (NCI)"]]},{"id":"NCBITaxon:2490491","l":"Salinivibrio sp. VYel4","na":1,"nb":1,"a":[["TED%3AAF-A0A5N8T8K3-F1-model_v4_TED01","TED novel fold AF-A0A5N8T8K3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2490491","Salinivibrio sp. VYel4"]]},{"id":"NCBITaxon:2490543","l":"Rapeseed phyllody phytoplasma","na":1,"nb":1,"a":[["TED%3AAF-A0A859I9R5-F1-model_v4_TED01","TED novel fold AF-A0A859I9R5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2490543","Rapeseed phyllody phytoplasma"]]},{"id":"NCBITaxon:2490544","l":"Amphritea opalescens","na":1,"nb":1,"a":[["TED%3AAF-A0A430KT01-F1-model_v4_TED01","TED novel fold AF-A0A430KT01-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2490544","Amphritea opalescens"]]},{"id":"NCBITaxon:2490633","l":"Streptococcus periodonticum","na":1,"nb":1,"a":[["TED%3AAF-A0A3S9MQ51-F1-model_v4_TED01","TED novel fold AF-A0A3S9MQ51-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2490633","Streptococcus periodonticum"]]},{"id":"NCBITaxon:2490854","l":"Prevotella koreensis","na":1,"nb":1,"a":[["TED%3AAF-A0A3S0RAS3-F1-model_v4_TED01","TED novel fold AF-A0A3S0RAS3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2490854","Prevotella koreensis"]]},{"id":"NCBITaxon:2490863","l":"Thermosporothrix sp. COM3","na":1,"nb":1,"a":[["TED%3AAF-A0A455SY61-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A455SY61-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2490863","Thermosporothrix sp. COM3"]]},{"id":"NCBITaxon:2491050","l":"Leucobacter sp. OH2974_COT-288","na":1,"nb":1,"a":[["TED%3AAF-A0A3P1VN80-F1-model_v4_TED01","TED novel fold AF-A0A3P1VN80-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2491050","Leucobacter sp. OH2974_COT-288"]]},{"id":"NCBITaxon:2491057","l":"Comamonadaceae bacterium OH2545_COT-014","na":1,"nb":1,"a":[["TED%3AAF-A0A3P1XLP3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3P1XLP3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2491057","Comamonadaceae bacterium OH2545_COT-014"]]},{"id":"NCBITaxon:2491082","l":"Candidatus Methanophagales archaeon ANME-1-THS","na":1,"nb":1,"a":[["TED%3AAF-A0A520JYC5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A520JYC5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2491082","Candidatus Methanophagales archaeon ANME-1-THS"]]},{"id":"NCBITaxon:2492393","l":"Emticicia agri","na":1,"nb":1,"a":[["TED%3AAF-A0A4V1ZCT7-F1-model_v4_TED01","TED novel fold AF-A0A4V1ZCT7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2492393","Emticicia agri"]]},{"id":"NCBITaxon:2493092","l":"Aquabacterium soli","na":1,"nb":1,"a":[["TED%3AAF-A0A3R8T4B2-F1-model_v4_TED02","TED novel fold AF-A0A3R8T4B2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2493092","Aquabacterium soli"]]},{"id":"NCBITaxon:2493553","l":"Glycomyces terrestris","na":1,"nb":1,"a":[["TED%3AAF-A0A426UYJ2-F1-model_v4_TED03","TED novel fold AF-A0A426UYJ2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2493553","Glycomyces terrestris"]]},{"id":"NCBITaxon:2493665","l":"Ammoniphilus sp. CFH 90114","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q1SS73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q1SS73-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2493665","Ammoniphilus sp. CFH 90114"]]},{"id":"NCBITaxon:2494326","l":"Candidatus Jettenia ecosi","na":1,"nb":1,"a":[["TED%3AAF-A0A533QC19-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A533QC19-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2494326","Candidatus Jettenia ecosi"]]},{"id":"NCBITaxon:2494375","l":"Aequorivita ciconiae","na":1,"nb":1,"a":[["TED%3AAF-A0A410G7M8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A410G7M8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2494375","Aequorivita ciconiae"]]},{"id":"NCBITaxon:2495421","l":"Bacillus salinus","na":1,"nb":1,"a":[["TED%3AAF-A0A428J8G1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A428J8G1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2495421","Bacillus salinus"]]},{"id":"NCBITaxon:249581","l":"Streptomyces ossamyceticus","na":1,"nb":1,"a":[["TED%3AAF-A0A3N1M1Z0-F1-model_v4_TED02","TED novel fold AF-A0A3N1M1Z0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A249581","Streptomyces ossamyceticus"]]},{"id":"NCBITaxon:2496694","l":"Mesorhizobium sp. M7A.F.Ca.CA.004.05.1.1","na":1,"nb":1,"a":[["TED%3AAF-A0A436EZH3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A436EZH3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2496694","Mesorhizobium sp. M7A.F.Ca.CA.004.05.1.1"]]},{"id":"NCBITaxon:2496729","l":"Mesorhizobium sp. M7A.F.Ca.CA.001.13.2.1","na":1,"nb":1,"a":[["TED%3AAF-A0A435IV59-F1-model_v4_TED02","TED novel fold AF-A0A435IV59-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2496729","Mesorhizobium sp. M7A.F.Ca.CA.001.13.2.1"]]},{"id":"NCBITaxon:2496739","l":"Mesorhizobium sp. M7A.F.Ca.CA.002.09.1.1","na":1,"nb":1,"a":[["TED%3AAF-A0A435B3N0-F1-model_v4_TED03","TED novel fold AF-A0A435B3N0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2496739","Mesorhizobium sp. M7A.F.Ca.CA.002.09.1.1"]]},{"id":"NCBITaxon:2496741","l":"Mesorhizobium sp. M7A.F.Ca.US.011.01.1.1","na":1,"nb":1,"a":[["TED%3AAF-A0A434ZTM9-F1-model_v4_TED02","TED novel fold AF-A0A434ZTM9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2496741","Mesorhizobium sp. M7A.F.Ca.US.011.01.1.1"]]},{"id":"NCBITaxon:2496836","l":"Streptomyces cyaneochromogenes","na":1,"nb":1,"a":[["TED%3AAF-A0A3S9M1D4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S9M1D4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2496836","Streptomyces cyaneochromogenes"]]},{"id":"NCBITaxon:2497483","l":"Flavobacterium bomense","na":1,"nb":1,"a":[["TED%3AAF-A0A3S0MKL8-F1-model_v4_TED02","TED novel fold AF-A0A3S0MKL8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2497483","Flavobacterium bomense"]]},{"id":"NCBITaxon:2498111","l":"Legionella sp. km772","na":1,"nb":1,"a":[["TED%3AAF-A0A433JX48-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A433JX48-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2498111","Legionella sp. km772"]]},{"id":"NCBITaxon:2498135","l":"Streptomonospora litoralis","na":1,"nb":1,"a":[["TED%3AAF-A0A4V0ZJD0-F1-model_v4_TED03","TED novel fold AF-A0A4V0ZJD0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2498135","Streptomonospora litoralis"]]},{"id":"NCBITaxon:2498892","l":"Maribacter algicola","na":1,"nb":1,"a":[["TED%3AAF-A0A426RLJ0-F1-model_v4_TED01","TED novel fold AF-A0A426RLJ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2498892","Maribacter algicola"]]},{"id":"NCBITaxon:2499078","l":"Vibrio ouci","na":1,"nb":1,"a":[["TED%3AAF-A0A4Y8WAE7-F1-model_v4_TED01","TED novel fold AF-A0A4Y8WAE7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2499078","Vibrio ouci"]]},{"id":"NCBITaxon:2499833","l":"Aliishimia ponticola","na":1,"nb":1,"a":[["TED%3AAF-A0A4S4NE60-F1-model_v4_TED02","TED novel fold AF-A0A4S4NE60-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2499833","Aliishimia ponticola"]]},{"id":"NCBITaxon:2500177","l":"Streptomyces sp. Z26","na":1,"nb":1,"a":[["TED%3AAF-A0A498DJ61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A498DJ61-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2500177","Streptomyces sp. Z26"]]},{"id":"NCBITaxon:2501297","l":"Hydrotalea sp. AMD","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q0AVN0-F1-model_v4_TED05","TED novel fold AF-A0A4Q0AVN0-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2501297","Hydrotalea sp. AMD"]]},{"id":"NCBITaxon:2501298","l":"Citrobacter sp. AAK_AS5","na":1,"nb":1,"a":[["TED%3AAF-A0A658NLS6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A658NLS6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2501298","Citrobacter sp. AAK_AS5"]]},{"id":"NCBITaxon:2501609","l":"Candidatus Bipolaricaulis sibiricus","na":1,"nb":1,"a":[["TED%3AAF-A0A410FT40-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A410FT40-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2501609","Candidatus Bipolaricaulis sibiricus"]]},{"id":"NCBITaxon:2502781","l":"Hymenobacter jejuensis","na":1,"nb":1,"a":[["TED%3AAF-A0A5B8A5F0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B8A5F0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2502781","Hymenobacter jejuensis"]]},{"id":"NCBITaxon:2502782","l":"Nocardioides jejuensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4R1CJ34-F1-model_v4_TED01","TED novel fold AF-A0A4R1CJ34-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2502782","Nocardioides jejuensis"]]},{"id":"NCBITaxon:2502893","l":"Spirosoma sordidisoli","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q2UM74-F1-model_v4_TED02","TED novel fold AF-A0A4Q2UM74-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2502893","Spirosoma sordidisoli"]]},{"id":"NCBITaxon:2506149","l":"Endozoicomonadaceae bacterium GTF-13","na":1,"nb":1,"a":[["TED%3AAF-A0A444GPN7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A444GPN7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2506149","Endozoicomonadaceae bacterium GTF-13"]]},{"id":"NCBITaxon:2506420","l":"Periweissella cryptocerci","na":1,"nb":1,"a":[["TED%3AAF-A0A4P6YRY8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P6YRY8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2506420","Periweissella cryptocerci"]]},{"id":"NCBITaxon:2506423","l":"Sphingobium fluviale","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q1KDC5-F1-model_v4_TED01","TED novel fold AF-A0A4Q1KDC5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2506423","Sphingobium fluviale"]]},{"id":"NCBITaxon:2506452","l":"Corynebacterium suranareeae","na":1,"nb":1,"a":[["TED%3AAF-A0A160PR52-F1-model_v4_TED02","TED novel fold AF-A0A160PR52-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2506452","Corynebacterium suranareeae"]]},{"id":"NCBITaxon:2506947","l":"Candidatus Chaera renei","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q0AG16-F1-model_v4_TED02","TED novel fold AF-A0A4Q0AG16-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2506947","Candidatus Chaera renei"]]},{"id":"NCBITaxon:2506948","l":"Candidatus Microsaccharimonas sossegonensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q0AGU7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A4Q0AGU7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2506948","Candidatus Microsaccharimonas sossegonensis"]]},{"id":"NCBITaxon:2507075","l":"Methanosarcina sp. MSH10X1","na":1,"nb":1,"a":[["TED%3AAF-A0A498GTE2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A498GTE2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2507075","Methanosarcina sp. MSH10X1"]]},{"id":"NCBITaxon:2507162","l":"Caproiciproducens sp. NJN-50","na":1,"nb":1,"a":[["TED%3AAF-A0A410Q502-F1-model_v4_TED01","TED novel fold AF-A0A410Q502-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2507162","Caproiciproducens sp. NJN-50"]]},{"id":"NCBITaxon:2507566","l":"Chengkuizengella marina","na":1,"nb":1,"a":[["TED%3AAF-A0A6N9Q6Q8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N9Q6Q8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2507566","Chengkuizengella marina"]]},{"id":"NCBITaxon:2508301","l":"Pandoraea anapnoica","na":1,"nb":1,"a":[["TED%3AAF-A0A5E5A4K9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5E5A4K9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2508301","Pandoraea anapnoica"]]},{"id":"NCBITaxon:2508721","l":"Filimonas effusa","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q1D7Q5-F1-model_v4_TED02","TED novel fold AF-A0A4Q1D7Q5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2508721","Filimonas effusa"]]},{"id":"NCBITaxon:2509004","l":"Apibacter muscae","na":1,"nb":1,"a":[["TED%3AAF-A0A563DC02-F1-model_v4_TED03","TED novel fold AF-A0A563DC02-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2509004","Apibacter muscae"]]},{"id":"NCBITaxon:2509241","l":"Aquirufa rosea","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q1C1H3-F1-model_v4_TED01","TED novel fold AF-A0A4Q1C1H3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2509241","Aquirufa rosea"]]},{"id":"NCBITaxon:2509434","l":"Verminephrobacter sp. Larva24","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q2L645-F1-model_v4_TED01","TED novel fold AF-A0A4Q2L645-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2509434","Verminephrobacter sp. Larva24"]]},{"id":"NCBITaxon:2509675","l":"Ktedonosporobacter rubrisoli","na":1,"nb":1,"a":[["TED%3AAF-A0A4V0Z027-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4V0Z027-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2509675","Ktedonosporobacter rubrisoli"]]},{"id":"NCBITaxon:2510334","l":"OM182 bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A520SEU8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A520SEU8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2510334","OM182 bacterium"]]},{"id":"NCBITaxon:2511025","l":"Glacieibacterium arshaanense","na":1,"nb":1,"a":[["TED%3AAF-A0A4Y9EPB5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Y9EPB5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2511025","Glacieibacterium arshaanense"]]},{"id":"NCBITaxon:2511130","l":"Paraburkholderia sp. UYCP14C","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q6X8N7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q6X8N7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2511130","Paraburkholderia sp. UYCP14C"]]},{"id":"NCBITaxon:2511821","l":"Archaeoglobaceae archaeon","na":1,"nb":1,"a":[["TED%3AAF-A0A7J4ET47-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J4ET47-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2511821","Archaeoglobaceae archaeon"]]},{"id":"NCBITaxon:2511985","l":"Enterobacter cloacae complex sp. 743-2DZ2F-22B","na":1,"nb":1,"a":[["TED%3AAF-A0A4V1RGZ1-F1-model_v4_TED01","TED novel fold AF-A0A4V1RGZ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2511985","Enterobacter cloacae complex sp. 743-2DZ2F-22B"]]},{"id":"NCBITaxon:2511995","l":"Pseudolysobacter antarcticus","na":1,"nb":1,"a":[["TED%3AAF-A0A411HM88-F1-model_v4_TED01","TED novel fold AF-A0A411HM88-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2511995","Pseudolysobacter antarcticus"]]},{"id":"NCBITaxon:2512117","l":"Caulobacter sp. BK020","na":1,"nb":1,"a":[["TED%3AAF-A0A4R3H3Q8-F1-model_v4_TED01","TED novel fold AF-A0A4R3H3Q8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2512117","Caulobacter sp. BK020"]]},{"id":"NCBITaxon:2512127","l":"Streptomyces sp. BK215","na":1,"nb":1,"a":[["TED%3AAF-A0A4R3RKI3-F1-model_v4_TED03","TED novel fold AF-A0A4R3RKI3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2512127","Streptomyces sp. BK215"]]},{"id":"NCBITaxon:2512128","l":"Streptomyces sp. BK387","na":1,"nb":1,"a":[["TED%3AAF-A0A4R2EJ27-F1-model_v4_TED01","TED novel fold AF-A0A4R2EJ27-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2512128","Streptomyces sp. BK387"]]},{"id":"NCBITaxon:2512134","l":"Paenibacillus sp. BK673","na":1,"nb":1,"a":[["TED%3AAF-A0A4V3CHK3-F1-model_v4_TED01","TED novel fold AF-A0A4V3CHK3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2512134","Paenibacillus sp. BK673"]]},{"id":"NCBITaxon:2512146","l":"Micromonospora sp. CNZ295","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q8A7W5-F1-model_v4_TED01","TED novel fold AF-A0A4Q8A7W5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2512146","Micromonospora sp. CNZ295"]]},{"id":"NCBITaxon:2512153","l":"Streptomyces sp. BK674","na":1,"nb":1,"a":[["TED%3AAF-A0A4V2U669-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4V2U669-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2512153","Streptomyces sp. BK674"]]},{"id":"NCBITaxon:2512154","l":"Paenibacillus sp. BK736","na":1,"nb":1,"a":[["TED%3AAF-A0A4R3CPT4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4R3CPT4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2512154","Paenibacillus sp. BK736"]]},{"id":"NCBITaxon:2512165","l":"Mycobacterium sp. BK086","na":1,"nb":1,"a":[["TED%3AAF-A0A4R6I244-F1-model_v4_TED01","TED novel fold AF-A0A4R6I244-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2512165","Mycobacterium sp. BK086"]]},{"id":"NCBITaxon:2512167","l":"Streptomyces sp. BK561","na":1,"nb":1,"a":[["TED%3AAF-A0A4R7ANN1-F1-model_v4_TED01","TED novel fold AF-A0A4R7ANN1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2512167","Streptomyces sp. BK561"]]},{"id":"NCBITaxon:2512181","l":"Bacillus sp. BK100","na":1,"nb":1,"a":[["TED%3AAF-A0A4R2A5C6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R2A5C6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2512181","Bacillus sp. BK100"]]},{"id":"NCBITaxon:251221","l":"Gloeobacter violaceus PCC 7421","na":1,"nb":1,"a":[["TED%3AAF-Q7NJ19-F1-model_v4_TED02","TED highly-symmetric fold AF-Q7NJ19-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A251221","Gloeobacter violaceus PCC 7421"]]},{"id":"NCBITaxon:2512217","l":"Kribbella antiqua","na":1,"nb":1,"a":[["TED%3AAF-A0A4R2IIL2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R2IIL2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2512217","Kribbella antiqua"]]},{"id":"NCBITaxon:2512218","l":"Kribbella sp. VKM Ac-2566","na":1,"nb":1,"a":[["TED%3AAF-A0A4R8DKU6-F1-model_v4_TED05","TED novel fold AF-A0A4R8DKU6-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2512218","Kribbella sp. VKM Ac-2566"]]},{"id":"NCBITaxon:2512221","l":"Kribbella kalugense","na":1,"nb":1,"a":[["TED%3AAF-A0A4R7ZLA8-F1-model_v4_TED01","TED novel fold AF-A0A4R7ZLA8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2512221","Kribbella kalugense"]]},{"id":"NCBITaxon:2512240","l":"Sulfolobus sp. S-194","na":1,"nb":1,"a":[["TED%3AAF-A0A6H0TUT9-F1-model_v4_TED02","TED novel fold AF-A0A6H0TUT9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2512240","Sulfolobus sp. S-194"]]},{"id":"NCBITaxon:2516328","l":"Methylolobus aquaticus","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q5L2J3-F1-model_v4_TED01","TED novel fold AF-A0A4Q5L2J3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2516328","Methylolobus aquaticus"]]},{"id":"NCBITaxon:2516559","l":"Aquirufa antheringensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q9BGF9-F1-model_v4_TED03","TED novel fold AF-A0A4Q9BGF9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2516559","Aquirufa antheringensis"]]},{"id":"NCBITaxon:2517818","l":"Streptomyces sp. IB2014 016-6","na":1,"nb":1,"a":[["TED%3AAF-A0A5C8QPQ9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5C8QPQ9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2517818","Streptomyces sp. IB2014 016-6"]]},{"id":"NCBITaxon:2518115","l":"Halorubrum sp. CGM5_25_10-8B","na":1,"nb":1,"a":[["TED%3AAF-A0A4U7C1B2-F1-model_v4_TED01","TED novel fold AF-A0A4U7C1B2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2518115","Halorubrum sp. CGM5_25_10-8B"]]},{"id":"NCBITaxon:2518119","l":"Halorubrum sp. SS7","na":1,"nb":1,"a":[["TED%3AAF-A0A4U7DQF0-F1-model_v4_TED02","TED novel fold AF-A0A4U7DQF0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2518119","Halorubrum sp. SS7"]]},{"id":"NCBITaxon:2518371","l":"Nocardioides seonyuensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4P7IFM0-F1-model_v4_TED01","TED novel fold AF-A0A4P7IFM0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2518371","Nocardioides seonyuensis"]]},{"id":"NCBITaxon:2518624","l":"Acinetobacter sp. WCHAc060033","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q7BQU1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q7BQU1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2518624","Acinetobacter sp. WCHAc060033"]]},{"id":"NCBITaxon:2520506","l":"Spirosoma sp. KCTC 42546","na":1,"nb":1,"a":[["TED%3AAF-A0A514ZXP1-F1-model_v4_TED01","TED novel fold AF-A0A514ZXP1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2520506","Spirosoma sp. KCTC 42546"]]},{"id":"NCBITaxon:252514","l":"Microbulbifer thermotolerans","na":1,"nb":1,"a":[["Pfam%3APF18040","beta porphyranase A C-terminal"]],"b":[["NCBITaxon%3A252514","Microbulbifer thermotolerans"]]},{"id":"NCBITaxon:2527963","l":"Stieleria magnilauensis","na":1,"nb":1,"a":[["TED%3AAF-A0A518L056-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A518L056-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2527963","Stieleria magnilauensis"]]},{"id":"NCBITaxon:2527964","l":"Gimesia aquarii","na":1,"nb":1,"a":[["TED%3AAF-A0A517VQM5-F1-model_v4_TED01","TED novel fold AF-A0A517VQM5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2527964","Gimesia aquarii"]]},{"id":"NCBITaxon:2527968","l":"Aureliella helgolandensis","na":1,"nb":1,"a":[["TED%3AAF-A0A518GGH1-F1-model_v4_TED01","TED novel fold AF-A0A518GGH1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2527968","Aureliella helgolandensis"]]},{"id":"NCBITaxon:2527971","l":"Gimesia algae","na":1,"nb":1,"a":[["TED%3AAF-A0A517V7F5-F1-model_v4_TED03","TED novel fold AF-A0A517V7F5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2527971","Gimesia algae"]]},{"id":"NCBITaxon:2527972","l":"Aeoliella mucimassa","na":1,"nb":1,"a":[["TED%3AAF-A0A518AV48-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A518AV48-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2527972","Aeoliella mucimassa"]]},{"id":"NCBITaxon:2527973","l":"Gimesia alba","na":1,"nb":1,"a":[["TED%3AAF-A0A517RIP9-F1-model_v4_TED01","TED novel fold AF-A0A517RIP9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2527973","Gimesia alba"]]},{"id":"NCBITaxon:2527975","l":"Kolteria novifilia","na":1,"nb":1,"a":[["TED%3AAF-A0A518B387-F1-model_v4_TED02","TED novel fold AF-A0A518B387-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2527975","Kolteria novifilia"]]},{"id":"NCBITaxon:2527976","l":"Gimesia fumaroli","na":1,"nb":1,"a":[["TED%3AAF-A0A518IB04-F1-model_v4_TED02","TED novel fold AF-A0A518IB04-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2527976","Gimesia fumaroli"]]},{"id":"NCBITaxon:2527979","l":"Stieleria neptunia","na":1,"nb":1,"a":[["TED%3AAF-A0A518HR59-F1-model_v4_TED01","TED novel fold AF-A0A518HR59-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2527979","Stieleria neptunia"]]},{"id":"NCBITaxon:2527982","l":"Mucisphaera calidilacus","na":1,"nb":1,"a":[["TED%3AAF-A0A518BTF4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A518BTF4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2527982","Mucisphaera calidilacus"]]},{"id":"NCBITaxon:2527986","l":"Novipirellula herctigrandis","na":1,"nb":1,"a":[["TED%3AAF-A0A5C5Z7B3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C5Z7B3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2527986","Novipirellula herctigrandis"]]},{"id":"NCBITaxon:2527998","l":"Planctomycetes bacterium MalM25","na":1,"nb":1,"a":[["TED%3AAF-A0A517TKN2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A517TKN2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2527998","Planctomycetes bacterium MalM25"]]},{"id":"NCBITaxon:2527999","l":"Rubripirellula amarantea","na":1,"nb":1,"a":[["TED%3AAF-A0A5C5WRB7-F1-model_v4_TED01","TED novel fold AF-A0A5C5WRB7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2527999","Rubripirellula amarantea"]]},{"id":"NCBITaxon:2528001","l":"Botrimarina colliarenosi","na":1,"nb":1,"a":[["TED%3AAF-A0A5C6A5M4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5C6A5M4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2528001","Botrimarina colliarenosi"]]},{"id":"NCBITaxon:2528002","l":"Posidoniimonas polymericola","na":1,"nb":1,"a":[["TED%3AAF-A0A5C5YI66-F1-model_v4_TED01","TED novel fold AF-A0A5C5YI66-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528002","Posidoniimonas polymericola"]]},{"id":"NCBITaxon:2528003","l":"Bythopirellula polymerisocia","na":1,"nb":1,"a":[["TED%3AAF-A0A5C6CR23-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5C6CR23-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2528003","Bythopirellula polymerisocia"]]},{"id":"NCBITaxon:2528005","l":"Stieleria varia","na":1,"nb":1,"a":[["TED%3AAF-A0A5C5ZQ23-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C5ZQ23-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528005","Stieleria varia"]]},{"id":"NCBITaxon:2528014","l":"Planctomycetes bacterium Poly21","na":1,"nb":1,"a":[["TED%3AAF-A0A5C6C474-F1-model_v4_TED01","TED novel fold AF-A0A5C6C474-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528014","Planctomycetes bacterium Poly21"]]},{"id":"NCBITaxon:2528016","l":"Novipirellula artificiosorum","na":1,"nb":1,"a":[["TED%3AAF-A0A5C6D7J4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C6D7J4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528016","Novipirellula artificiosorum"]]},{"id":"NCBITaxon:2528017","l":"Rosistilla carotiformis","na":1,"nb":1,"a":[["TED%3AAF-A0A518JWA2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A518JWA2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528017","Rosistilla carotiformis"]]},{"id":"NCBITaxon:2528025","l":"Stieleria bergensis","na":1,"nb":1,"a":[["TED%3AAF-A0A517SSY0-F1-model_v4_TED01","TED novel fold AF-A0A517SSY0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528025","Stieleria bergensis"]]},{"id":"NCBITaxon:2528035","l":"Phycisphaerae bacterium RAS2","na":1,"nb":1,"a":[["TED%3AAF-A0A518LKG1-F1-model_v4_TED05","TED novel fold AF-A0A518LKG1-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2528035","Phycisphaerae bacterium RAS2"]]},{"id":"NCBITaxon:2528038","l":"Calditrichales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A524LCS7-F1-model_v4_TED02","TED novel fold AF-A0A524LCS7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2528038","Calditrichales bacterium"]]},{"id":"NCBITaxon:2528039","l":"Chrysiogenales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A524Q1G9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A524Q1G9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2528039","Chrysiogenales bacterium"]]},{"id":"NCBITaxon:2528202","l":"Parasulfuritortus cantonensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4R1BGR8-F1-model_v4_TED02","TED novel fold AF-A0A4R1BGR8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2528202","Parasulfuritortus cantonensis"]]},{"id":"NCBITaxon:2528208","l":"Lewinella sp. W8","na":1,"nb":1,"a":[["TED%3AAF-A0A7H5EZD2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H5EZD2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528208","Lewinella sp. W8"]]},{"id":"NCBITaxon:2528251","l":"Sneathiellales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A836TT46-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A836TT46-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2528251","Sneathiellales bacterium"]]},{"id":"NCBITaxon:2529274","l":"Pedobacter changchengzhani","na":1,"nb":1,"a":[["TED%3AAF-A0A4R5MMP0-F1-model_v4_TED01","TED novel fold AF-A0A4R5MMP0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2529274","Pedobacter changchengzhani"]]},{"id":"NCBITaxon:2530203","l":"Kordia sp. TARA_039_SRF","na":1,"nb":1,"a":[["TED%3AAF-A0A5N5ZD46-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5N5ZD46-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2530203","Kordia sp. TARA_039_SRF"]]},{"id":"NCBITaxon:2530364","l":"Actinomadura sp. 6K520","na":1,"nb":1,"a":[["TED%3AAF-A0A4R5DXZ8-F1-model_v4_TED02","TED novel fold AF-A0A4R5DXZ8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2530364","Actinomadura sp. 6K520"]]},{"id":"NCBITaxon:2530371","l":"Actinomadura sp. KC345","na":1,"nb":1,"a":[["TED%3AAF-A0A4R4RBU8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R4RBU8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2530371","Actinomadura sp. KC345"]]},{"id":"NCBITaxon:2530373","l":"Jiangella aurantiaca","na":1,"nb":1,"a":[["TED%3AAF-A0A4R5AMS3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R5AMS3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2530373","Jiangella aurantiaca"]]},{"id":"NCBITaxon:2530377","l":"Micromonospora sp. KC207","na":1,"nb":1,"a":[["TED%3AAF-A0A4V2XZG7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4V2XZG7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2530377","Micromonospora sp. KC207"]]},{"id":"NCBITaxon:2530379","l":"Micromonospora sp. KC606","na":1,"nb":1,"a":[["TED%3AAF-A0A4R4UFL4-F1-model_v4_TED03","TED novel fold AF-A0A4R4UFL4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2530379","Micromonospora sp. KC606"]]},{"id":"NCBITaxon:2530453","l":"Pedobacter psychroterrae","na":1,"nb":1,"a":[["TED%3AAF-A0A4R0NWY1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R0NWY1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2530453","Pedobacter psychroterrae"]]},{"id":"NCBITaxon:2530455","l":"Pedobacter frigidisoli","na":1,"nb":1,"a":[["TED%3AAF-A0A4R0NZC0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R0NZC0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2530455","Pedobacter frigidisoli"]]},{"id":"NCBITaxon:253184","l":"Myceligenerans xiligouense","na":1,"nb":1,"a":[["TED%3AAF-A0A3N4Z286-F1-model_v4_TED02","TED novel fold AF-A0A3N4Z286-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A253184","Myceligenerans xiligouense"]]},{"id":"NCBITaxon:253628","l":"Verruconis gallopava","na":1,"nb":1,"a":[["TED%3AAF-A0A0D2ANI5-F1-model_v4_TED01","TED novel fold AF-A0A0D2ANI5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A253628","Verruconis gallopava"]]},{"id":"NCBITaxon:2540710","l":"Candidatus Ordinivivax streblomastigis","na":1,"nb":1,"a":[["TED%3AAF-A0A5M8P651-F1-model_v4_TED02","TED novel fold AF-A0A5M8P651-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2540710","Candidatus Ordinivivax streblomastigis"]]},{"id":"NCBITaxon:2541734","l":"Flavobacterium hiemivividum","na":1,"nb":1,"a":[["TED%3AAF-A0A4R5D2J8-F1-model_v4_TED01","TED novel fold AF-A0A4R5D2J8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2541734","Flavobacterium hiemivividum"]]},{"id":"NCBITaxon:2545265","l":"Streptomyces sp. AJS327","na":1,"nb":1,"a":[["TED%3AAF-A0A7V8NJX1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V8NJX1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2545265","Streptomyces sp. AJS327"]]},{"id":"NCBITaxon:2545455","l":"Rhizosphaericola mali","na":1,"nb":1,"a":[["TED%3AAF-A0A5P2G6M0-F1-model_v4_TED03","TED novel fold AF-A0A5P2G6M0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2545455","Rhizosphaericola mali"]]},{"id":"NCBITaxon:2545754","l":"Deinococcus sp. S9","na":1,"nb":1,"a":[["TED%3AAF-A0A4R5G9H4-F1-model_v4_TED02","TED novel fold AF-A0A4R5G9H4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2545754","Deinococcus sp. S9"]]},{"id":"NCBITaxon:2545760","l":"Paenibacillus albiflavus","na":1,"nb":1,"a":[["TED%3AAF-A0A4V2WNN0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4V2WNN0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2545760","Paenibacillus albiflavus"]]},{"id":"NCBITaxon:2547396","l":"Arthrobacter terricola","na":1,"nb":1,"a":[["TED%3AAF-A0A4R5KNZ8-F1-model_v4_TED02","TED novel fold AF-A0A4R5KNZ8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2547396","Arthrobacter terricola"]]},{"id":"NCBITaxon:254758","l":"Siminovitchia fortis","na":1,"nb":1,"a":[["TED%3AAF-A0A443IZJ3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A443IZJ3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A254758","Siminovitchia fortis"]]},{"id":"NCBITaxon:2547811","l":"Bacillus salipaludis","na":1,"nb":1,"a":[["TED%3AAF-A0A4R5VNI6-F1-model_v4_TED01","TED novel fold AF-A0A4R5VNI6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2547811","Bacillus salipaludis"]]},{"id":"NCBITaxon:2548426","l":"Candidatus Sedimenticola endophacoides","na":1,"nb":1,"a":[["TED%3AAF-A0A657PQA9-F1-model_v4_TED01","TED novel fold AF-A0A657PQA9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2548426","Candidatus Sedimenticola endophacoides"]]},{"id":"NCBITaxon:255723","l":"Slackia faecicanis","na":1,"nb":1,"a":[["TED%3AAF-A0A3N0ADX8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3N0ADX8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A255723","Slackia faecicanis"]]},{"id":"NCBITaxon:2558362","l":"Jiella endophytica","na":1,"nb":1,"a":[["TED%3AAF-A0A4Y8RES7-F1-model_v4_TED01","TED novel fold AF-A0A4Y8RES7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2558362","Jiella endophytica"]]},{"id":"NCBITaxon:2559236","l":"Streptomyces sp. MZ04","na":1,"nb":1,"a":[["TED%3AAF-A0A4R9EQ28-F1-model_v4_TED03","TED novel fold AF-A0A4R9EQ28-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2559236","Streptomyces sp. MZ04"]]},{"id":"NCBITaxon:2559571","l":"Flavivirga rizhaonensis","na":1,"nb":1,"a":[["TED%3AAF-A0A4S1DSR7-F1-model_v4_TED02","TED novel fold AF-A0A4S1DSR7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2559571","Flavivirga rizhaonensis"]]},{"id":"NCBITaxon:2561932","l":"Duganella callida","na":1,"nb":1,"a":[["TED%3AAF-A0A4Y9S820-F1-model_v4_TED01","TED novel fold AF-A0A4Y9S820-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2561932","Duganella callida"]]},{"id":"NCBITaxon:2562453","l":"Methylorubrum sp. Q1","na":1,"nb":1,"a":[["TED%3AAF-A0A4Z0EFB6-F1-model_v4_TED02","TED novel fold AF-A0A4Z0EFB6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2562453","Methylorubrum sp. Q1"]]},{"id":"NCBITaxon:2563114","l":"Hymenobacter metallicola","na":1,"nb":1,"a":[["TED%3AAF-A0A4Z0QB90-F1-model_v4_TED01","TED novel fold AF-A0A4Z0QB90-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2563114","Hymenobacter metallicola"]]},{"id":"NCBITaxon:256318","l":"metagenome","na":1,"nb":1,"a":[["TED%3AAF-A0A380TIV2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A380TIV2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A256318","metagenome"]]},{"id":"NCBITaxon:2563600","l":"Candidatus Nitrosocosmicus agrestis","na":1,"nb":1,"a":[["TED%3AAF-A0A5B2Z9H2-F1-model_v4_TED01","TED novel fold AF-A0A5B2Z9H2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2563600","Candidatus Nitrosocosmicus agrestis"]]},{"id":"NCBITaxon:2563896","l":"Candidatus Pelagibacter giovannonii","na":1,"nb":1,"a":[["TED%3AAF-A0A6H1Q3S8-F1-model_v4_TED01","TED novel fold AF-A0A6H1Q3S8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2563896","Candidatus Pelagibacter giovannonii"]]},{"id":"NCBITaxon:2565079","l":"Salmonella enterica subsp. enterica serovar Tamberma","na":1,"nb":1,"a":[["TED%3AAF-A0A5X9FFC1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5X9FFC1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2565079","Salmonella enterica subsp. enterica serovar Tamberma"]]},{"id":"NCBITaxon:2565549","l":"Alteromonas portus","na":1,"nb":1,"a":[["TED%3AAF-A0A4U0ZFG4-F1-model_v4_TED01","TED novel fold AF-A0A4U0ZFG4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2565549","Alteromonas portus"]]},{"id":"NCBITaxon:2565554","l":"Sphingobium sp. PAMC28499","na":1,"nb":1,"a":[["TED%3AAF-A0A4P7QJS9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P7QJS9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2565554","Sphingobium sp. PAMC28499"]]},{"id":"NCBITaxon:2565556","l":"Sphingopyxis sp. PAMC25046","na":1,"nb":1,"a":[["TED%3AAF-A0A4P7RZ57-F1-model_v4_TED04","TED novel fold AF-A0A4P7RZ57-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2565556","Sphingopyxis sp. PAMC25046"]]},{"id":"NCBITaxon:2565926","l":"Paenibacillus algicola","na":1,"nb":1,"a":[["TED%3AAF-A0A4V1G3T1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4V1G3T1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2565926","Paenibacillus algicola"]]},{"id":"NCBITaxon:2568653","l":"Deinococcus sp. Arct2-2","na":1,"nb":1,"a":[["TED%3AAF-A0A4S4B4G2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A4S4B4G2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2568653","Deinococcus sp. Arct2-2"]]},{"id":"NCBITaxon:2568654","l":"Deinococcus sp. KSM4-11","na":1,"nb":1,"a":[["TED%3AAF-A0A4S4CEL8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4S4CEL8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2568654","Deinococcus sp. KSM4-11"]]},{"id":"NCBITaxon:2569539","l":"Ferrimonas aestuarii","na":1,"nb":1,"a":[["TED%3AAF-A0A4U1BTI2-F1-model_v4_TED02","TED novel fold AF-A0A4U1BTI2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2569539","Ferrimonas aestuarii"]]},{"id":"NCBITaxon:2570357","l":"Halomonas sp. 15WGF","na":1,"nb":1,"a":[["TED%3AAF-A0A4V5TYW5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4V5TYW5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2570357","Halomonas sp. 15WGF"]]},{"id":"NCBITaxon:2570561","l":"Psychroserpens sp. NJDZ02","na":1,"nb":1,"a":[["TED%3AAF-A0A4P7WYH3-F1-model_v4_TED02","TED novel fold AF-A0A4P7WYH3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2570561","Psychroserpens sp. NJDZ02"]]},{"id":"NCBITaxon:2571141","l":"Actinacidiphila oryziradicis","na":1,"nb":1,"a":[["TED%3AAF-A0A4U0SPF5-F1-model_v4_TED01","TED novel fold AF-A0A4U0SPF5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2571141","Actinacidiphila oryziradicis"]]},{"id":"NCBITaxon:2571271","l":"Pedobacter cryophilus","na":1,"nb":1,"a":[["TED%3AAF-A0A4V5NYJ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4V5NYJ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2571271","Pedobacter cryophilus"]]},{"id":"NCBITaxon:2571747","l":"Paraburkholderia acidiphila","na":1,"nb":1,"a":[["TED%3AAF-A0A7Z2JC49-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Z2JC49-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2571747","Paraburkholderia acidiphila"]]},{"id":"NCBITaxon:2572577","l":"Salinimonas iocasae","na":1,"nb":1,"a":[["TED%3AAF-A0A5B7YIN9-F1-model_v4_TED01","TED novel fold AF-A0A5B7YIN9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2572577","Salinimonas iocasae"]]},{"id":"NCBITaxon:2572910","l":"Brevibacillus sp. AG162","na":1,"nb":1,"a":[["TED%3AAF-A0A542RIB6-F1-model_v4_TED01","TED novel fold AF-A0A542RIB6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2572910","Brevibacillus sp. AG162"]]},{"id":"NCBITaxon:257466","l":"uncultured marine euryarchaeote","na":1,"nb":1,"a":[["TED%3AAF-A0A1B0Z1W2-F1-model_v4_TED01","TED novel fold AF-A0A1B0Z1W2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A257466","uncultured marine euryarchaeote"]]},{"id":"NCBITaxon:2575442","l":"Herbidospora galbida","na":1,"nb":1,"a":[["TED%3AAF-A0A4U3MIS3-F1-model_v4_TED02","TED novel fold AF-A0A4U3MIS3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2575442","Herbidospora galbida"]]},{"id":"NCBITaxon:2575699","l":"Elizabethkingia sp. 2-6","na":1,"nb":1,"a":[["TED%3AAF-A0A4P8E4G0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4P8E4G0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2575699","Elizabethkingia sp. 2-6"]]},{"id":"NCBITaxon:2575867","l":"Ilyomonas limi","na":1,"nb":1,"a":[["TED%3AAF-A0A4U3KZT4-F1-model_v4_TED01","TED novel fold AF-A0A4U3KZT4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2575867","Ilyomonas limi"]]},{"id":"NCBITaxon:2576035","l":"Arthrobacter sp. NamB2","na":1,"nb":1,"a":[["TED%3AAF-A0A4U6NG55-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U6NG55-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2576035","Arthrobacter sp. NamB2"]]},{"id":"NCBITaxon:2576308","l":"Nakamurella flava","na":1,"nb":1,"a":[["TED%3AAF-A0A4V6CWB7-F1-model_v4_TED01","TED novel fold AF-A0A4V6CWB7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2576308","Nakamurella flava"]]},{"id":"NCBITaxon:2576891","l":"Nibricoccus aquaticus","na":1,"nb":1,"a":[["TED%3AAF-A0A290QJZ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A290QJZ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2576891","Nibricoccus aquaticus"]]},{"id":"NCBITaxon:257772","l":"Halomonas organivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A7W5C2T6-F1-model_v4_TED01","TED novel fold AF-A0A7W5C2T6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A257772","Halomonas organivorans"]]},{"id":"NCBITaxon:2578118","l":"Maribacter algarum (ex Zhang et al. 2020)","na":1,"nb":1,"a":[["TED%3AAF-A0A5S3PMY7-F1-model_v4_TED01","TED novel fold AF-A0A5S3PMY7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2578118","Maribacter algarum (ex Zhang et al. 2020)"]]},{"id":"NCBITaxon:2579248","l":"Agrobacterium sp. CGMCC 11546","na":1,"nb":1,"a":[["TED%3AAF-A0A7I0RQ36-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7I0RQ36-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2579248","Agrobacterium sp. CGMCC 11546"]]},{"id":"NCBITaxon:2579250","l":"Nautilia sp. PV-1","na":1,"nb":1,"a":[["TED%3AAF-A0A3T0L461-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3T0L461-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2579250","Nautilia sp. PV-1"]]},{"id":"NCBITaxon:2580422","l":"Paenibacillus sp. UASWS1643","na":1,"nb":1,"a":[["TED%3AAF-A0A5M9TVU1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5M9TVU1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2580422","Paenibacillus sp. UASWS1643"]]},{"id":"NCBITaxon:2580517","l":"Micromonospora sp. CP22","na":1,"nb":1,"a":[["TED%3AAF-A0A7K1H2F9-F1-model_v4_TED03","TED novel fold AF-A0A7K1H2F9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2580517","Micromonospora sp. CP22"]]},{"id":"NCBITaxon:2583219","l":"Lentibacillus cibarius","na":1,"nb":1,"a":[["TED%3AAF-A0A549YFU0-F1-model_v4_TED02","TED novel fold AF-A0A549YFU0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2583219","Lentibacillus cibarius"]]},{"id":"NCBITaxon:2583233","l":"Rhizobium sp. MHM7A","na":1,"nb":1,"a":[["TED%3AAF-A0A5R9NZ24-F1-model_v4_TED01","TED novel fold AF-A0A5R9NZ24-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2583233","Rhizobium sp. MHM7A"]]},{"id":"NCBITaxon:2583243","l":"Micromonospora sp. HM134","na":1,"nb":1,"a":[["TED%3AAF-A0A518WHF4-F1-model_v4_TED01","TED novel fold AF-A0A518WHF4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2583243","Micromonospora sp. HM134"]]},{"id":"NCBITaxon:2583452","l":"Amedibacterium intestinale","na":1,"nb":1,"a":[["TED%3AAF-A0A6N4THS5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N4THS5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2583452","Amedibacterium intestinale"]]},{"id":"NCBITaxon:2583530","l":"Thermosynechococcus sp. CL-1","na":1,"nb":1,"a":[["TED%3AAF-A0A5C2M810-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C2M810-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2583530","Thermosynechococcus sp. CL-1"]]},{"id":"NCBITaxon:2583809","l":"Phaeobacter sp. B1627","na":1,"nb":1,"a":[["TED%3AAF-A0A5C4S7H6-F1-model_v4_TED01","TED novel fold AF-A0A5C4S7H6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2583809","Phaeobacter sp. B1627"]]},{"id":"NCBITaxon:2584121","l":"Antrihabitans stalactiti","na":1,"nb":1,"a":[["TED%3AAF-A0A848K3F4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A848K3F4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2584121","Antrihabitans stalactiti"]]},{"id":"NCBITaxon:2584624","l":"Blautia sp. BIOML-A1","na":1,"nb":1,"a":[["TED%3AAF-A0A6N9LH19-F1-model_v4_TED04","TED novel fold AF-A0A6N9LH19-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2584624","Blautia sp. BIOML-A1"]]},{"id":"NCBITaxon:2584625","l":"Butyricicoccus sp. BIOML-A1","na":1,"nb":1,"a":[["TED%3AAF-A0A845N2K1-F1-model_v4_TED01","TED novel fold AF-A0A845N2K1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2584625","Butyricicoccus sp. BIOML-A1"]]},{"id":"NCBITaxon:2584680","l":"Pseudoflavonifractor sp. BIOML-A18","na":1,"nb":1,"a":[["TED%3AAF-A0A844K7V4-F1-model_v4_TED02","TED novel fold AF-A0A844K7V4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2584680","Pseudoflavonifractor sp. BIOML-A18"]]},{"id":"NCBITaxon:2584944","l":"Sutterella faecalis","na":1,"nb":1,"a":[["TED%3AAF-A0A5B7ZEU6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5B7ZEU6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2584944","Sutterella faecalis"]]},{"id":"NCBITaxon:2585118","l":"Alistipes communis","na":1,"nb":1,"a":[["TED%3AAF-A0A3D3YMR4-F1-model_v4_TED02","TED novel fold AF-A0A3D3YMR4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2585118","Alistipes communis"]]},{"id":"NCBITaxon:258515","l":"Acetanaerobacterium elongatum","na":1,"nb":1,"a":[["TED%3AAF-A0A1H0CHA1-F1-model_v4_TED01","TED novel fold AF-A0A1H0CHA1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A258515","Acetanaerobacterium elongatum"]]},{"id":"NCBITaxon:2585196","l":"Streptomyces smaragdinus","na":1,"nb":1,"a":[["TED%3AAF-A0A7K0CAT2-F1-model_v4_TED01","TED novel fold AF-A0A7K0CAT2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2585196","Streptomyces smaragdinus"]]},{"id":"NCBITaxon:2585199","l":"Nocardia aurantia","na":1,"nb":1,"a":[["TED%3AAF-A0A7K0DV44-F1-model_v4_TED01","TED novel fold AF-A0A7K0DV44-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2585199","Nocardia aurantia"]]},{"id":"NCBITaxon:2586978","l":"Rhizobium sp. BK700","na":1,"nb":1,"a":[["TED%3AAF-A0A7W5W0L3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W5W0L3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2586978","Rhizobium sp. BK700"]]},{"id":"NCBITaxon:2586981","l":"Sphingomonas sp. BK481","na":1,"nb":1,"a":[["TED%3AAF-A0A7W5X2V4-F1-model_v4_TED01","TED novel fold AF-A0A7W5X2V4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2586981","Sphingomonas sp. BK481"]]},{"id":"NCBITaxon:2586988","l":"Rhizobium sp. BK612","na":1,"nb":1,"a":[["TED%3AAF-A0A7W5UR77-F1-model_v4_TED05","TED novel fold AF-A0A7W5UR77-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2586988","Rhizobium sp. BK612"]]},{"id":"NCBITaxon:2586989","l":"Rhizobium sp. BK619","na":1,"nb":1,"a":[["TED%3AAF-A0A7W5XB29-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W5XB29-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2586989","Rhizobium sp. BK619"]]},{"id":"NCBITaxon:2587012","l":"Azospirillum sp. OGB3","na":1,"nb":1,"a":[["TED%3AAF-A0A839WB26-F1-model_v4_TED01","TED novel fold AF-A0A839WB26-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2587012","Azospirillum sp. OGB3"]]},{"id":"NCBITaxon:2587018","l":"Dyella sp. SG609","na":1,"nb":1,"a":[["TED%3AAF-A0A846VC72-F1-model_v4_TED01","TED novel fold AF-A0A846VC72-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2587018","Dyella sp. SG609"]]},{"id":"NCBITaxon:2587021","l":"Mucilaginibacter sp. SG538B","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y7L8T0-F1-model_v4_TED02","TED novel fold AF-A0A7Y7L8T0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2587021","Mucilaginibacter sp. SG538B"]]},{"id":"NCBITaxon:2587027","l":"Variovorax sp. Sphag1AA","na":1,"nb":1,"a":[["TED%3AAF-A0A7W5DBM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W5DBM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2587027","Variovorax sp. Sphag1AA"]]},{"id":"NCBITaxon:2587127","l":"Methylobacterium sp. RAS18","na":1,"nb":1,"a":[["TED%3AAF-A0A7W3SCX3-F1-model_v4_TED03","TED novel fold AF-A0A7W3SCX3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2587127","Methylobacterium sp. RAS18"]]},{"id":"NCBITaxon:2587129","l":"Rhizobium sp. RAS22","na":1,"nb":1,"a":[["TED%3AAF-A0A7W4U1B4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W4U1B4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2587129","Rhizobium sp. RAS22"]]},{"id":"NCBITaxon:2587140","l":"Rhizobacter sp. SG703","na":1,"nb":1,"a":[["TED%3AAF-A0A846UAF8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A846UAF8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2587140","Rhizobacter sp. SG703"]]},{"id":"NCBITaxon:2587145","l":"Sphingobacterium sp. JUb56","na":1,"nb":1,"a":[["TED%3AAF-A0A839NR61-F1-model_v4_TED02","TED novel fold AF-A0A839NR61-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2587145","Sphingobacterium sp. JUb56"]]},{"id":"NCBITaxon:2587808","l":"Cellulosimicrobium protaetiae","na":1,"nb":1,"a":[["TED%3AAF-A0A6M5UKT5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6M5UKT5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2587808","Cellulosimicrobium protaetiae"]]},{"id":"NCBITaxon:2587843","l":"Pseudoalteromonas sp. THAF3","na":1,"nb":1,"a":[["TED%3AAF-A0A5P9J546-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5P9J546-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2587843","Pseudoalteromonas sp. THAF3"]]},{"id":"NCBITaxon:2588693","l":"Candidatus Syntropharchaeum sp. GoM_oil","na":1,"nb":1,"a":[["TED%3AAF-A0A564QAZ0-F1-model_v4_TED01","TED novel fold AF-A0A564QAZ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2588693","Candidatus Syntropharchaeum sp. GoM_oil"]]},{"id":"NCBITaxon:2589790","l":"Shewanella sp. LC6","na":1,"nb":1,"a":[["TED%3AAF-A0A501XZA5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A501XZA5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2589790","Shewanella sp. LC6"]]},{"id":"NCBITaxon:2589817","l":"Maribrevibacterium harenarium","na":1,"nb":1,"a":[["TED%3AAF-A0A501X0P0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A501X0P0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2589817","Maribrevibacterium harenarium"]]},{"id":"NCBITaxon:2589961","l":"Mesorhizobium sp. B2-3-2","na":1,"nb":1,"a":[["TED%3AAF-A0A503X4P9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A503X4P9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2589961","Mesorhizobium sp. B2-3-2"]]},{"id":"NCBITaxon:2589995","l":"Aquimarina algicola","na":1,"nb":1,"a":[["TED%3AAF-A0A504J2V1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A504J2V1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2589995","Aquimarina algicola"]]},{"id":"NCBITaxon:2590025","l":"Dolichospermum sp. UHCC 0260","na":1,"nb":1,"a":[["TED%3AAF-A0A844IIA9-F1-model_v4_TED02","TED novel fold AF-A0A844IIA9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2590025","Dolichospermum sp. UHCC 0260"]]},{"id":"NCBITaxon:2590028","l":"Aphanizomenon sp. UHCC 0183","na":1,"nb":1,"a":[["TED%3AAF-A0A844IEK7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A844IEK7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2590028","Aphanizomenon sp. UHCC 0183"]]},{"id":"NCBITaxon:2590547","l":"Paenibacillus vietnamensis","na":1,"nb":1,"a":[["TED%3AAF-A0A559IZM6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A559IZM6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2590547","Paenibacillus vietnamensis"]]},{"id":"NCBITaxon:2590774","l":"Pseudarthrobacter sp. NIBRBAC000502771","na":1,"nb":1,"a":[["TED%3AAF-A0A4Y6QWB4-F1-model_v4_TED03","TED novel fold AF-A0A4Y6QWB4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2590774","Pseudarthrobacter sp. NIBRBAC000502771"]]},{"id":"NCBITaxon:2590869","l":"Janthinobacterium tructae","na":1,"nb":1,"a":[["TED%3AAF-A0A4Y6RAM4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Y6RAM4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2590869","Janthinobacterium tructae"]]},{"id":"NCBITaxon:2591463","l":"Brevundimonas sp. M20","na":1,"nb":1,"a":[["TED%3AAF-A0A514C1G8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A514C1G8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2591463","Brevundimonas sp. M20"]]},{"id":"NCBITaxon:2591634","l":"Echinicola soli","na":1,"nb":1,"a":[["TED%3AAF-A0A514CKC4-F1-model_v4_TED02","TED novel fold AF-A0A514CKC4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2591634","Echinicola soli"]]},{"id":"NCBITaxon:2592334","l":"Nocardioides sp. JQ2195","na":1,"nb":1,"a":[["TED%3AAF-A0A6H1A300-F1-model_v4_TED06","TED highly-symmetric fold AF-A0A6H1A300-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A2592334","Nocardioides sp. JQ2195"]]},{"id":"NCBITaxon:2592383","l":"Aliikangiella coralliicola","na":1,"nb":1,"a":[["TED%3AAF-A0A545UDA7-F1-model_v4_TED01","TED novel fold AF-A0A545UDA7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2592383","Aliikangiella coralliicola"]]},{"id":"NCBITaxon:2592816","l":"Tardiphaga sp. vice352","na":1,"nb":1,"a":[["TED%3AAF-A0A515KK81-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A515KK81-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2592816","Tardiphaga sp. vice352"]]},{"id":"NCBITaxon:259315","l":"uncultured Faecalibacterium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A1C5N185-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C5N185-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A259315","uncultured Faecalibacterium sp."]]},{"id":"NCBITaxon:2593659","l":"Nostoc sp. HG1","na":1,"nb":1,"a":[["Pfam%3APF07589","PEP-CTERM protein-sorting motif"]],"b":[["NCBITaxon%3A2593659","Nostoc sp. HG1"]]},{"id":"NCBITaxon:2593672","l":"Arcobacter sp. FWKO B","na":1,"nb":1,"a":[["TED%3AAF-A0A7L8V3P2-F1-model_v4_TED01","TED novel fold AF-A0A7L8V3P2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2593672","Arcobacter sp. FWKO B"]]},{"id":"NCBITaxon:2594005","l":"Thalassotalea sp. PS06","na":1,"nb":1,"a":[["TED%3AAF-A0A516HCM8-F1-model_v4_TED01","TED novel fold AF-A0A516HCM8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2594005","Thalassotalea sp. PS06"]]},{"id":"NCBITaxon:2594007","l":"Rhodococcus sp. WB9","na":1,"nb":1,"a":[["TED%3AAF-A0A516WPA8-F1-model_v4_TED01","TED novel fold AF-A0A516WPA8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2594007","Rhodococcus sp. WB9"]]},{"id":"NCBITaxon:2594042","l":"Promethearchaeum syntrophicum","na":1,"nb":1,"a":[["TED%3AAF-A0A5B9D689-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B9D689-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2594042","Promethearchaeum syntrophicum"]]},{"id":"NCBITaxon:2594460","l":"Streptomyces sp. S1A1-8","na":1,"nb":1,"a":[["TED%3AAF-A0A856N3J6-F1-model_v4_TED02","TED novel fold AF-A0A856N3J6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2594460","Streptomyces sp. S1A1-8"]]},{"id":"NCBITaxon:2594476","l":"Carboxylicivirga sp. M1479","na":1,"nb":1,"a":[["TED%3AAF-A0A553GLI2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A553GLI2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2594476","Carboxylicivirga sp. M1479"]]},{"id":"NCBITaxon:2594477","l":"Thalassomonas sp. M1454","na":1,"nb":1,"a":[["TED%3AAF-A0A553F670-F1-model_v4_TED04","TED novel fold AF-A0A553F670-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2594477","Thalassomonas sp. M1454"]]},{"id":"NCBITaxon:2594500","l":"Bacteroides sp. HF-5092","na":1,"nb":1,"a":[["TED%3AAF-A0A553ECR7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A553ECR7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2594500","Bacteroides sp. HF-5092"]]},{"id":"NCBITaxon:2596829","l":"Corallococcus sp. Z5C101001","na":1,"nb":1,"a":[["TED%3AAF-A0A554FXA3-F1-model_v4_TED02","TED novel fold AF-A0A554FXA3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2596829","Corallococcus sp. Z5C101001"]]},{"id":"NCBITaxon:2596893","l":"Amycolatopsis acidicola","na":1,"nb":1,"a":[["TED%3AAF-A0A5N0VHZ5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5N0VHZ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2596893","Amycolatopsis acidicola"]]},{"id":"NCBITaxon:2597223","l":"Candidatus Acidulidesulfobacterium ferriphilum","na":1,"nb":1,"a":[["TED%3AAF-A0A519BCI6-F1-model_v4_TED01","TED novel fold AF-A0A519BCI6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2597223","Candidatus Acidulidesulfobacterium ferriphilum"]]},{"id":"NCBITaxon:2597350","l":"Pseudomonas sp. ANT_H4","na":1,"nb":1,"a":[["TED%3AAF-A0A5B0BWV8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B0BWV8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2597350","Pseudomonas sp. ANT_H4"]]},{"id":"NCBITaxon:2597356","l":"Pusillimonas sp. ANT_WB101","na":1,"nb":1,"a":[["TED%3AAF-A0A5A9X8D3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5A9X8D3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2597356","Pusillimonas sp. ANT_WB101"]]},{"id":"NCBITaxon:2597670","l":"Mucilaginibacter corticis","na":1,"nb":1,"a":[["TED%3AAF-A0A556MKK0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A556MKK0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2597670","Mucilaginibacter corticis"]]},{"id":"NCBITaxon:2599390","l":"Flavobacterium sp. XN-5","na":1,"nb":1,"a":[["TED%3AAF-A0A6M2CB07-F1-model_v4_TED01","TED novel fold AF-A0A6M2CB07-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2599390","Flavobacterium sp. XN-5"]]},{"id":"NCBITaxon:2599596","l":"Parafrankia soli","na":1,"nb":1,"a":[["TED%3AAF-A0A1S1PC11-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S1PC11-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2599596","Parafrankia soli"]]},{"id":"NCBITaxon:2599616","l":"Reyranella sp. CPCC 100927","na":1,"nb":1,"a":[["TED%3AAF-A0A5C5TE83-F1-model_v4_TED02","TED novel fold AF-A0A5C5TE83-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2599616","Reyranella sp. CPCC 100927"]]},{"id":"NCBITaxon:2599694","l":"Terrilactibacillus tamarindi","na":1,"nb":1,"a":[["TED%3AAF-A0A6N8CTX1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8CTX1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2599694","Terrilactibacillus tamarindi"]]},{"id":"NCBITaxon:2600148","l":"Streptococcus sp. sy010","na":1,"nb":1,"a":[["TED%3AAF-A0A5C5TSN3-F1-model_v4_TED01","TED novel fold AF-A0A5C5TSN3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2600148","Streptococcus sp. sy010"]]},{"id":"NCBITaxon:260086","l":"Pseudonocardia ammonioxydans","na":1,"nb":1,"a":[["TED%3AAF-A0A1I5CIV7-F1-model_v4_TED01","TED novel fold AF-A0A1I5CIV7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A260086","Pseudonocardia ammonioxydans"]]},{"id":"NCBITaxon:2601122","l":"Acinetobacter sp. YH12138","na":1,"nb":1,"a":[["TED%3AAF-A0A7S6W0W4-F1-model_v4_TED02","TED novel fold AF-A0A7S6W0W4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2601122","Acinetobacter sp. YH12138"]]},{"id":"NCBITaxon:2601869","l":"Litoreibacter roseus","na":1,"nb":1,"a":[["TED%3AAF-A0A6N6JMU7-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A6N6JMU7-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2601869","Litoreibacter roseus"]]},{"id":"NCBITaxon:2602289","l":"Roseobacter cerasinus","na":1,"nb":1,"a":[["TED%3AAF-A0A640VSB4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A640VSB4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2602289","Roseobacter cerasinus"]]},{"id":"NCBITaxon:2602760","l":"Mesonia sp. K4-1","na":1,"nb":1,"a":[["TED%3AAF-A0A5C8LQA4-F1-model_v4_TED03","TED novel fold AF-A0A5C8LQA4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2602760","Mesonia sp. K4-1"]]},{"id":"NCBITaxon:2603628","l":"Flagellimonas hymeniacidonis","na":1,"nb":1,"a":[["TED%3AAF-A0A5C8V210-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A5C8V210-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2603628","Flagellimonas hymeniacidonis"]]},{"id":"NCBITaxon:2603858","l":"Oryzomonas japonica","na":1,"nb":1,"a":[["TED%3AAF-A0A7J4ZSR9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7J4ZSR9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2603858","Oryzomonas japonica"]]},{"id":"NCBITaxon:2603887","l":"Methylobacterium sp. WL120","na":1,"nb":1,"a":[["TED%3AAF-A0A5C8RZ22-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5C8RZ22-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2603887","Methylobacterium sp. WL120"]]},{"id":"NCBITaxon:2603888","l":"Methylobacterium sp. WL119","na":1,"nb":1,"a":[["TED%3AAF-A0A5C8VYH2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C8VYH2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2603888","Methylobacterium sp. WL119"]]},{"id":"NCBITaxon:2603898","l":"Methylobacterium sp. WL9","na":1,"nb":1,"a":[["TED%3AAF-A0A5C8U038-F1-model_v4_TED02","TED novel fold AF-A0A5C8U038-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2603898","Methylobacterium sp. WL9"]]},{"id":"NCBITaxon:2604423","l":"Agromyces mariniharenae","na":1,"nb":1,"a":[["TED%3AAF-A0A5S4UWB3-F1-model_v4_TED01","TED novel fold AF-A0A5S4UWB3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2604423","Agromyces mariniharenae"]]},{"id":"NCBITaxon:2604572","l":"Actinomadura decatromicini","na":1,"nb":1,"a":[["TED%3AAF-A0A5D3F885-F1-model_v4_TED02","TED novel fold AF-A0A5D3F885-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2604572","Actinomadura decatromicini"]]},{"id":"NCBITaxon:2604873","l":"Cenarchaeum sp. SB0662_bin_33","na":1,"nb":1,"a":[["TED%3AAF-A0A6G2K727-F1-model_v4_TED02","TED novel fold AF-A0A6G2K727-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2604873","Cenarchaeum sp. SB0662_bin_33"]]},{"id":"NCBITaxon:2605257","l":"Caldilineaceae bacterium SB0662_bin_25","na":1,"nb":1,"a":[["TED%3AAF-A0A845CY77-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A845CY77-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2605257","Caldilineaceae bacterium SB0662_bin_25"]]},{"id":"NCBITaxon:2605263","l":"Caldilineaceae bacterium SB0666_bin_21","na":1,"nb":1,"a":[["TED%3AAF-A0A845C865-F1-model_v4_TED01","TED novel fold AF-A0A845C865-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2605263","Caldilineaceae bacterium SB0666_bin_21"]]},{"id":"NCBITaxon:2605428","l":"Dyadobacter aurulentus","na":1,"nb":1,"a":[["TED%3AAF-A0A5B0FIC5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B0FIC5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2605428","Dyadobacter aurulentus"]]},{"id":"NCBITaxon:2605746","l":"Herbaspirillum sp. CAH-3","na":1,"nb":1,"a":[["TED%3AAF-A0A7X2IG44-F1-model_v4_TED01","TED novel fold AF-A0A7X2IG44-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2605746","Herbaspirillum sp. CAH-3"]]},{"id":"NCBITaxon:2605747","l":"Pedobacter aquae","na":1,"nb":1,"a":[["TED%3AAF-A0A5C0VI45-F1-model_v4_TED02","TED novel fold AF-A0A5C0VI45-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2605747","Pedobacter aquae"]]},{"id":"NCBITaxon:2605782","l":"Desulfovibrio porci","na":1,"nb":1,"a":[["TED%3AAF-A0A6L5XL46-F1-model_v4_TED01","TED novel fold AF-A0A6L5XL46-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2605782","Desulfovibrio porci"]]},{"id":"NCBITaxon:2606439","l":"Candidatus Manganitrophus noduliformans","na":1,"nb":1,"a":[["TED%3AAF-A0A7X6DR50-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X6DR50-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2606439","Candidatus Manganitrophus noduliformans"]]},{"id":"NCBITaxon:2606450","l":"Alicyclobacillus sp. TC","na":1,"nb":1,"a":[["TED%3AAF-A0A7U3FDC8-F1-model_v4_TED01","TED novel fold AF-A0A7U3FDC8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2606450","Alicyclobacillus sp. TC"]]},{"id":"NCBITaxon:2606614","l":"Mycolicibacterium sp. CBMA 360","na":1,"nb":1,"a":[["TED%3AAF-A0A7K1JND0-F1-model_v4_TED01","TED novel fold AF-A0A7K1JND0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2606614","Mycolicibacterium sp. CBMA 360"]]},{"id":"NCBITaxon:2606635","l":"Waltera intestinalis","na":1,"nb":1,"a":[["TED%3AAF-A0A6L5YKL2-F1-model_v4_TED02","TED novel fold AF-A0A6L5YKL2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2606635","Waltera intestinalis"]]},{"id":"NCBITaxon:2606638","l":"Bullifex porci","na":1,"nb":1,"a":[["TED%3AAF-A0A7X2TS46-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X2TS46-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2606638","Bullifex porci"]]},{"id":"NCBITaxon:2606681","l":"Ramlibacter lithotrophicus","na":1,"nb":1,"a":[["TED%3AAF-A0A7X6I5A9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7X6I5A9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2606681","Ramlibacter lithotrophicus"]]},{"id":"NCBITaxon:2606906","l":"Calorimonas adulescens","na":1,"nb":1,"a":[["TED%3AAF-A0A5D8QJA0-F1-model_v4_TED01","TED novel fold AF-A0A5D8QJA0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2606906","Calorimonas adulescens"]]},{"id":"NCBITaxon:2607496","l":"Azospirillum sp. B21","na":1,"nb":1,"a":[["TED%3AAF-A0A5A9EU56-F1-model_v4_TED02","TED novel fold AF-A0A5A9EU56-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2607496","Azospirillum sp. B21"]]},{"id":"NCBITaxon:2607602","l":"Vibrio sp. 99-8-1","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y4FIG3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y4FIG3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2607602","Vibrio sp. 99-8-1"]]},{"id":"NCBITaxon:2607607","l":"Vibrio sp. 03-59-1","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y4AGH1-F1-model_v4_TED02","TED novel fold AF-A0A7Y4AGH1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2607607","Vibrio sp. 03-59-1"]]},{"id":"NCBITaxon:2607653","l":"Chitinophaga agrisoli","na":1,"nb":1,"a":[["TED%3AAF-A0A5B2VM43-F1-model_v4_TED01","TED novel fold AF-A0A5B2VM43-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607653","Chitinophaga agrisoli"]]},{"id":"NCBITaxon:2607654","l":"Larkinella humicola","na":1,"nb":1,"a":[["TED%3AAF-A0A5N1JIW3-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A5N1JIW3-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2607654","Larkinella humicola"]]},{"id":"NCBITaxon:2607659","l":"Nocardioides antri","na":1,"nb":1,"a":[["TED%3AAF-A0A5B1M286-F1-model_v4_TED01","TED novel fold AF-A0A5B1M286-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607659","Nocardioides antri"]]},{"id":"NCBITaxon:2607660","l":"Nocardioides humilatus","na":1,"nb":1,"a":[["TED%3AAF-A0A5B1LLV6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B1LLV6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607660","Nocardioides humilatus"]]},{"id":"NCBITaxon:2607754","l":"Paenibacillus sp. B2(2019)","na":1,"nb":1,"a":[["TED%3AAF-A0A5B0W0T2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B0W0T2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607754","Paenibacillus sp. B2(2019)"]]},{"id":"NCBITaxon:2607763","l":"Symploca sp. SIO1B1","na":1,"nb":1,"a":[["TED%3AAF-A0A846BXF7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A846BXF7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607763","Symploca sp. SIO1B1"]]},{"id":"NCBITaxon:2607768","l":"Leptolyngbya sp. SIO1E4","na":1,"nb":1,"a":[["TED%3AAF-A0A6I5RHA9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I5RHA9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607768","Leptolyngbya sp. SIO1E4"]]},{"id":"NCBITaxon:2607769","l":"Symploca sp. SIO1C2","na":1,"nb":1,"a":[["TED%3AAF-A0A6P0VBZ9-F1-model_v4_TED02","TED novel fold AF-A0A6P0VBZ9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2607769","Symploca sp. SIO1C2"]]},{"id":"NCBITaxon:2607770","l":"Leptolyngbya sp. SIO4C1","na":1,"nb":1,"a":[["TED%3AAF-A0A6I5NA04-F1-model_v4_TED03","TED novel fold AF-A0A6I5NA04-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2607770","Leptolyngbya sp. SIO4C1"]]},{"id":"NCBITaxon:2607772","l":"Okeania sp. SIO1I7","na":1,"nb":1,"a":[["TED%3AAF-A0A6M0FNT0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6M0FNT0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2607772","Okeania sp. SIO1I7"]]},{"id":"NCBITaxon:2607785","l":"Symploca sp. SIO2B6","na":1,"nb":1,"a":[["TED%3AAF-A0A6M0EWE3-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A6M0EWE3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2607785","Symploca sp. SIO2B6"]]},{"id":"NCBITaxon:2607787","l":"Okeania sp. SIO2C2","na":1,"nb":1,"a":[["TED%3AAF-A0A6P0NL51-F1-model_v4_TED03","TED novel fold AF-A0A6P0NL51-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2607787","Okeania sp. SIO2C2"]]},{"id":"NCBITaxon:2607806","l":"Caldora sp. SIO3E6","na":1,"nb":1,"a":[["TED%3AAF-A0A6P0X4Z5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6P0X4Z5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607806","Caldora sp. SIO3E6"]]},{"id":"NCBITaxon:2607811","l":"Okeania sp. SIO3B5","na":1,"nb":1,"a":[["TED%3AAF-A0A6M0A5D0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6M0A5D0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607811","Okeania sp. SIO3B5"]]},{"id":"NCBITaxon:2607814","l":"Sphaerospermopsis sp. SIO1G1","na":1,"nb":1,"a":[["TED%3AAF-A0A846EMA3-F1-model_v4_TED01","TED novel fold AF-A0A846EMA3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607814","Sphaerospermopsis sp. SIO1G1"]]},{"id":"NCBITaxon:2607816","l":"Spirulina sp. SIO3F2","na":1,"nb":1,"a":[["TED%3AAF-A0A845X2H5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A845X2H5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607816","Spirulina sp. SIO3F2"]]},{"id":"NCBITaxon:2607823","l":"Moorena sp. SIO2B7","na":1,"nb":1,"a":[["TED%3AAF-A0A846DJN0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A846DJN0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607823","Moorena sp. SIO2B7"]]},{"id":"NCBITaxon:2607826","l":"Moorena sp. SIO4E2","na":1,"nb":1,"a":[["TED%3AAF-A0A6P0PUY1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6P0PUY1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2607826","Moorena sp. SIO4E2"]]},{"id":"NCBITaxon:2607832","l":"Moorena sp. SIO3I7","na":1,"nb":1,"a":[["TED%3AAF-A0A6P0J132-F1-model_v4_TED02","TED novel fold AF-A0A6P0J132-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2607832","Moorena sp. SIO3I7"]]},{"id":"NCBITaxon:2607840","l":"Moorena sp. SIO1G6","na":1,"nb":1,"a":[["TED%3AAF-A0A846H2X0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A846H2X0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2607840","Moorena sp. SIO1G6"]]},{"id":"NCBITaxon:2608255","l":"Arenimonas fontis","na":1,"nb":1,"a":[["TED%3AAF-A0A5B2Z8Y6-F1-model_v4_TED01","TED novel fold AF-A0A5B2Z8Y6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2608255","Arenimonas fontis"]]},{"id":"NCBITaxon:2608632","l":"Parvibaculum sedimenti","na":1,"nb":1,"a":[["TED%3AAF-A0A6N6VQ78-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N6VQ78-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2608632","Parvibaculum sedimenti"]]},{"id":"NCBITaxon:2608793","l":"Candidatus Argoarchaeum ethanivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A811T573-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A811T573-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2608793","Candidatus Argoarchaeum ethanivorans"]]},{"id":"NCBITaxon:261292","l":"Nitrosomonas sp. Is79A3","na":1,"nb":1,"a":[["TED%3AAF-F8GG60-F1-model_v4_TED02","TED novel fold AF-F8GG60-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A261292","Nitrosomonas sp. Is79A3"]]},{"id":"NCBITaxon:2613962","l":"Histidinibacterium aquaticum","na":1,"nb":1,"a":[["TED%3AAF-A0A5J5GJ54-F1-model_v4_TED01","TED novel fold AF-A0A5J5GJ54-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2613962","Histidinibacterium aquaticum"]]},{"id":"NCBITaxon:2613965","l":"Pseudooceanicola spongiae","na":1,"nb":1,"a":[["TED%3AAF-A0A7L9WRV4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7L9WRV4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2613965","Pseudooceanicola spongiae"]]},{"id":"NCBITaxon:2614251","l":"Caldisericales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7X9K8A2-F1-model_v4_TED03","TED novel fold AF-A0A7X9K8A2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2614251","Caldisericales bacterium"]]},{"id":"NCBITaxon:2614691","l":"Microbacterium sp. 3290","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y9ZTJ1-F1-model_v4_TED01","TED novel fold AF-A0A7Y9ZTJ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2614691","Microbacterium sp. 3290"]]},{"id":"NCBITaxon:2614804","l":"Pseudotamlana haliotis","na":1,"nb":1,"a":[["TED%3AAF-A0A6N6MAZ3-F1-model_v4_TED02","TED novel fold AF-A0A6N6MAZ3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2614804","Pseudotamlana haliotis"]]},{"id":"NCBITaxon:262667","l":"Sphingopyxis sp. C-1","na":1,"nb":1,"a":[["TED%3AAF-A0A0M8JF35-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0M8JF35-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A262667","Sphingopyxis sp. C-1"]]},{"id":"NCBITaxon:264730","l":"Pseudomonas savastanoi pv. phaseolicola 1448A","na":1,"nb":1,"a":[["Pfam%3APF15457","Type III T3SS secreted effector HopW1-1/HopPmaA"]],"b":[["NCBITaxon%3A264730","Pseudomonas savastanoi pv. phaseolicola 1448A"]]},{"id":"NCBITaxon:264736","l":"Photobacterium frigidiphilum","na":1,"nb":1,"a":[["TED%3AAF-A0A2T3JIJ5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T3JIJ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A264736","Photobacterium frigidiphilum"]]},{"id":"NCBITaxon:2650101","l":"Pseudomonas sp. R-28-1W-6","na":1,"nb":1,"a":[["TED%3AAF-A0A7X3L9Y6-F1-model_v4_TED01","TED novel fold AF-A0A7X3L9Y6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2650101","Pseudomonas sp. R-28-1W-6"]]},{"id":"NCBITaxon:2650565","l":"Micromonospora sp. AMSO1212t","na":1,"nb":1,"a":[["TED%3AAF-A0A6H9XF65-F1-model_v4_TED02","TED novel fold AF-A0A6H9XF65-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2650565","Micromonospora sp. AMSO1212t"]]},{"id":"NCBITaxon:2650748","l":"Actinomadura physcomitrii","na":1,"nb":1,"a":[["TED%3AAF-A0A6I4MMC2-F1-model_v4_TED01","TED novel fold AF-A0A6I4MMC2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2650748","Actinomadura physcomitrii"]]},{"id":"NCBITaxon:2650924","l":"Aestuariivirga litoralis","na":1,"nb":1,"a":[["TED%3AAF-A0A2W2AL08-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2W2AL08-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2650924","Aestuariivirga litoralis"]]},{"id":"NCBITaxon:2651167","l":"Ignavibacterium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A6L3ZVV5-F1-model_v4_TED02","TED novel fold AF-A0A6L3ZVV5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2651167","Ignavibacterium sp."]]},{"id":"NCBITaxon:2651169","l":"Caedimonadaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A833FVR8-F1-model_v4_TED02","TED novel fold AF-A0A833FVR8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2651169","Caedimonadaceae bacterium"]]},{"id":"NCBITaxon:2651839","l":"Chloroflexia bacterium SDU3-3","na":1,"nb":1,"a":[["TED%3AAF-A0A7V7ZND2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7V7ZND2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2651839","Chloroflexia bacterium SDU3-3"]]},{"id":"NCBITaxon:2651870","l":"Deinococcus terrestris","na":1,"nb":1,"a":[["TED%3AAF-A0A7X1NUD2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X1NUD2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2651870","Deinococcus terrestris"]]},{"id":"NCBITaxon:2652177","l":"Pelistega ratti","na":1,"nb":1,"a":[["TED%3AAF-A0A6L9Y6W6-F1-model_v4_TED01","TED novel fold AF-A0A6L9Y6W6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2652177","Pelistega ratti"]]},{"id":"NCBITaxon:2652251","l":"Corynebacterium sp. 366","na":1,"nb":1,"a":[["TED%3AAF-A0A6I0F7K5-F1-model_v4_TED01","TED novel fold AF-A0A6I0F7K5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2652251","Corynebacterium sp. 366"]]},{"id":"NCBITaxon:2652293","l":"Hornefia butyriciproducens","na":1,"nb":1,"a":[["TED%3AAF-A0A6L5Y848-F1-model_v4_TED02","TED novel fold AF-A0A6L5Y848-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2652293","Hornefia butyriciproducens"]]},{"id":"NCBITaxon:265311","l":"Mesoplasma florum L1","na":1,"nb":1,"a":[["TED%3AAF-Q6F294-F1-model_v4_TED03","TED novel fold AF-Q6F294-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A265311","Mesoplasma florum L1"]]},{"id":"NCBITaxon:2653135","l":"Citricoccus sp. K5","na":1,"nb":1,"a":[["TED%3AAF-A0A653NX81-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A653NX81-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2653135","Citricoccus sp. K5"]]},{"id":"NCBITaxon:2653142","l":"Flavobacterium sp. 9AF","na":1,"nb":1,"a":[["TED%3AAF-A0A653P3D5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A653P3D5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2653142","Flavobacterium sp. 9AF"]]},{"id":"NCBITaxon:2653161","l":"Plantibacter sp. T3","na":1,"nb":1,"a":[["TED%3AAF-A0A653X5F2-F1-model_v4_TED01","TED novel fold AF-A0A653X5F2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2653161","Plantibacter sp. T3"]]},{"id":"NCBITaxon:2653182","l":"Allobosea sp. 62","na":1,"nb":1,"a":[["TED%3AAF-A0A653ZLB2-F1-model_v4_TED01","TED novel fold AF-A0A653ZLB2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2653182","Allobosea sp. 62"]]},{"id":"NCBITaxon:2653201","l":"Bacillus sp. B1-b2","na":1,"nb":1,"a":[["TED%3AAF-A0A6I1F0Q0-F1-model_v4_TED01","TED novel fold AF-A0A6I1F0Q0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2653201","Bacillus sp. B1-b2"]]},{"id":"NCBITaxon:2653854","l":"Cupriavidus sp. SW-Y-13","na":1,"nb":1,"a":[["TED%3AAF-A0A7X3HGB1-F1-model_v4_TED01","TED novel fold AF-A0A7X3HGB1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2653854","Cupriavidus sp. SW-Y-13"]]},{"id":"NCBITaxon:2653856","l":"Rouxiella sp. S1S-2","na":1,"nb":1,"a":[["TED%3AAF-A0A7C8GNP7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C8GNP7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2653856","Rouxiella sp. S1S-2"]]},{"id":"NCBITaxon:2653936","l":"Nostocoides sp. F2B08","na":1,"nb":1,"a":[["TED%3AAF-A0A6I1GAW3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6I1GAW3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2653936","Nostocoides sp. F2B08"]]},{"id":"NCBITaxon:2654244","l":"Flavobacterium sp. LMO8","na":1,"nb":1,"a":[["TED%3AAF-A0A6A7WG51-F1-model_v4_TED01","TED novel fold AF-A0A6A7WG51-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2654244","Flavobacterium sp. LMO8"]]},{"id":"NCBITaxon:2654547","l":"Pseudactinotalea sp. HY158","na":1,"nb":1,"a":[["TED%3AAF-A0A5Q2VY63-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A5Q2VY63-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2654547","Pseudactinotalea sp. HY158"]]},{"id":"NCBITaxon:265668","l":"Vibrio ponticus","na":1,"nb":1,"a":[["TED%3AAF-A0A090P9C9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A090P9C9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A265668","Vibrio ponticus"]]},{"id":"NCBITaxon:2656763","l":"Apibacter sp. B2912","na":1,"nb":1,"a":[["TED%3AAF-A0A6N8TP71-F1-model_v4_TED02","TED novel fold AF-A0A6N8TP71-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2656763","Apibacter sp. B2912"]]},{"id":"NCBITaxon:2661628","l":"Bifidobacterium platyrrhinorum","na":1,"nb":1,"a":[["TED%3AAF-A0A6L9SQU0-F1-model_v4_TED04","TED novel fold AF-A0A6L9SQU0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2661628","Bifidobacterium platyrrhinorum"]]},{"id":"NCBITaxon:2662262","l":"Vibrio algicola","na":1,"nb":1,"a":[["TED%3AAF-A0A5Q0THS2-F1-model_v4_TED01","TED novel fold AF-A0A5Q0THS2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2662262","Vibrio algicola"]]},{"id":"NCBITaxon:2662454","l":"Gluconobacter aidae","na":1,"nb":1,"a":[["TED%3AAF-A0A7X1SQF4-F1-model_v4_TED02","TED novel fold AF-A0A7X1SQF4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2662454","Gluconobacter aidae"]]},{"id":"NCBITaxon:2663008","l":"Alcanivorax sediminis","na":1,"nb":1,"a":[["TED%3AAF-A0A6N7LY60-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N7LY60-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2663008","Alcanivorax sediminis"]]},{"id":"NCBITaxon:2663120","l":"Chitinophaga sp. SYP-B3965","na":1,"nb":1,"a":[["TED%3AAF-A0A6N7P8B2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N7P8B2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2663120","Chitinophaga sp. SYP-B3965"]]},{"id":"NCBITaxon:2663121","l":"Rhodococcus sp. WAY2","na":1,"nb":1,"a":[["TED%3AAF-A0A6P1HZM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6P1HZM4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2663121","Rhodococcus sp. WAY2"]]},{"id":"NCBITaxon:2663855","l":"Sphingomonas sp. R3G8C","na":1,"nb":1,"a":[["TED%3AAF-A0A852XTN1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A852XTN1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2663855","Sphingomonas sp. R3G8C"]]},{"id":"NCBITaxon:2663856","l":"Sphingomonas sp. R3G8D","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y9VPZ3-F1-model_v4_TED02","TED novel fold AF-A0A7Y9VPZ3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2663856","Sphingomonas sp. R3G8D"]]},{"id":"NCBITaxon:2663859","l":"Aeromicrobium senzhongii","na":1,"nb":1,"a":[["TED%3AAF-A0A7G9F4W0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G9F4W0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2663859","Aeromicrobium senzhongii"]]},{"id":"NCBITaxon:2664451","l":"Flavobacteriaceae bacterium EG-1","na":1,"nb":1,"a":[["TED%3AAF-A0A7K0E7U2-F1-model_v4_TED02","TED novel fold AF-A0A7K0E7U2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2664451","Flavobacteriaceae bacterium EG-1"]]},{"id":"NCBITaxon:2664453","l":"Shewanella sp. XMDDZSB0408","na":1,"nb":1,"a":[["TED%3AAF-A0A6L5P080-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6L5P080-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2017544","Shewanella intestini"]]},{"id":"NCBITaxon:2665158","l":"Nakamurella alba","na":1,"nb":1,"a":[["TED%3AAF-A0A7K1FLR7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K1FLR7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2665158","Nakamurella alba"]]},{"id":"NCBITaxon:2665159","l":"Hyphomicrobium album","na":1,"nb":1,"a":[["TED%3AAF-A0A6I3KJD5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6I3KJD5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2665159","Hyphomicrobium album"]]},{"id":"NCBITaxon:2665644","l":"Paracoccus lichenicola","na":1,"nb":1,"a":[["TED%3AAF-A0A6L6HU09-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6L6HU09-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2665644","Paracoccus lichenicola"]]},{"id":"NCBITaxon:2665645","l":"Flavobacterium sp. SLB02","na":1,"nb":1,"a":[["TED%3AAF-A0A5Q3R0U2-F1-model_v4_TED03","TED novel fold AF-A0A5Q3R0U2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2665645","Flavobacterium sp. SLB02"]]},{"id":"NCBITaxon:2665646","l":"Alicyclobacillus sp. SO9","na":1,"nb":1,"a":[["TED%3AAF-A0A7T5ETD7-F1-model_v4_TED01","TED novel fold AF-A0A7T5ETD7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2665646","Alicyclobacillus sp. SO9"]]},{"id":"NCBITaxon:2665648","l":"Paracoccus sp. S-4012","na":1,"nb":1,"a":[["TED%3AAF-A0A6I2M1I8-F1-model_v4_TED04","TED novel fold AF-A0A6I2M1I8-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2665648","Paracoccus sp. S-4012"]]},{"id":"NCBITaxon:2666136","l":"Pedobacter puniceum","na":1,"nb":1,"a":[["TED%3AAF-A0A7K0FJJ9-F1-model_v4_TED01","TED novel fold AF-A0A7K0FJJ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2666136","Pedobacter puniceum"]]},{"id":"NCBITaxon:2666183","l":"Pseudomonas juntendi","na":1,"nb":1,"a":[["TED%3AAF-A0A7W2M1L2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W2M1L2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2666183","Pseudomonas juntendi"]]},{"id":"NCBITaxon:2666192","l":"Acinetobacter sp. RIT698","na":1,"nb":1,"a":[["TED%3AAF-A0A6I2JJ96-F1-model_v4_TED02","TED novel fold AF-A0A6I2JJ96-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2666192","Acinetobacter sp. RIT698"]]},{"id":"NCBITaxon:2666330","l":"Flavobacterium sp. LC2016-23","na":1,"nb":1,"a":[["TED%3AAF-A0A7K0FDI7-F1-model_v4_TED01","TED novel fold AF-A0A7K0FDI7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2666330","Flavobacterium sp. LC2016-23"]]},{"id":"NCBITaxon:2668068","l":"Halapricum sp. CBA1109","na":1,"nb":1,"a":[["TED%3AAF-A0A6A9T3Q8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6A9T3Q8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2668068","Halapricum sp. CBA1109"]]},{"id":"NCBITaxon:2668070","l":"Natronomonas sp. CBA1123","na":1,"nb":1,"a":[["TED%3AAF-A0A6A9SQV1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6A9SQV1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2668070","Natronomonas sp. CBA1123"]]},{"id":"NCBITaxon:2668074","l":"Halobacterium sp. CBA1126","na":1,"nb":1,"a":[["TED%3AAF-A0A6A9SHM4-F1-model_v4_TED02","TED novel fold AF-A0A6A9SHM4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2668074","Halobacterium sp. CBA1126"]]},{"id":"NCBITaxon:2670411","l":"Candidatus Thalassarchaeaceae archaeon","na":1,"nb":1,"a":[["TED%3AAF-A0A7J4NTU9-F1-model_v4_TED03","TED novel fold AF-A0A7J4NTU9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2670411","Candidatus Thalassarchaeaceae archaeon"]]},{"id":"NCBITaxon:2672570","l":"Sulfurimonas aquatica","na":1,"nb":1,"a":[["TED%3AAF-A0A8A3Q0J9-F1-model_v4_TED01","TED novel fold AF-A0A8A3Q0J9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2672570","Sulfurimonas aquatica"]]},{"id":"NCBITaxon:2672572","l":"Cellulosimicrobium composti","na":1,"nb":1,"a":[["TED%3AAF-A0A6N7ZKP0-F1-model_v4_TED01","TED novel fold AF-A0A6N7ZKP0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2672572","Cellulosimicrobium composti"]]},{"id":"NCBITaxon:2675059","l":"Lysobacter helvus","na":1,"nb":1,"a":[["TED%3AAF-A0A811BHP5-F1-model_v4_TED01","TED novel fold AF-A0A811BHP5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2675059","Lysobacter helvus"]]},{"id":"NCBITaxon:2675219","l":"Corynebacterium occultum","na":1,"nb":1,"a":[["TED%3AAF-A0A6B8WQE4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6B8WQE4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2675219","Corynebacterium occultum"]]},{"id":"NCBITaxon:2675226","l":"Paludibacterium denitrificans","na":1,"nb":1,"a":[["TED%3AAF-A0A844G9G1-F1-model_v4_TED01","TED novel fold AF-A0A844G9G1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2675226","Paludibacterium denitrificans"]]},{"id":"NCBITaxon:2675227","l":"Conexibacter sp. W3-3-2","na":1,"nb":1,"a":[["TED%3AAF-A0A6N7YQS7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N7YQS7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2675227","Conexibacter sp. W3-3-2"]]},{"id":"NCBITaxon:2675457","l":"Deefgea sp. CFH1-16","na":1,"nb":1,"a":[["TED%3AAF-A0A838ZYX8-F1-model_v4_TED01","TED novel fold AF-A0A838ZYX8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2675457","Deefgea sp. CFH1-16"]]},{"id":"NCBITaxon:2675851","l":"Nocardia terrae","na":1,"nb":1,"a":[["TED%3AAF-A0A7K1VCA8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7K1VCA8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2675851","Nocardia terrae"]]},{"id":"NCBITaxon:2675875","l":"Flavobacterium sp. LC2016-13","na":1,"nb":1,"a":[["TED%3AAF-A0A7K1FUB6-F1-model_v4_TED01","TED novel fold AF-A0A7K1FUB6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2675875","Flavobacterium sp. LC2016-13"]]},{"id":"NCBITaxon:2675877","l":"Hymenobacter sp. BRD67","na":1,"nb":1,"a":[["TED%3AAF-A0A7D3X7L8-F1-model_v4_TED01","TED novel fold AF-A0A7D3X7L8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2675877","Hymenobacter sp. BRD67"]]},{"id":"NCBITaxon:2675880","l":"Fusarium flagelliforme","na":1,"nb":1,"a":[["TED%3AAF-A0A395MG19-F1-model_v4_TED01","TED novel fold AF-A0A395MG19-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2675880","Fusarium flagelliforme"]]},{"id":"NCBITaxon:2676308","l":"Flavobacterium sp. MC2016-06","na":1,"nb":1,"a":[["TED%3AAF-A0A6I3MC26-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I3MC26-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2676308","Flavobacterium sp. MC2016-06"]]},{"id":"NCBITaxon:267671","l":"Leptospira interrogans serovar Copenhageni str. Fiocruz L1-130","na":1,"nb":1,"a":[["Pfam%3APF05262","Borrelia P83/100 protein"]],"b":[["NCBITaxon%3A267671","Leptospira interrogans serovar Copenhageni str. Fiocruz L1-130"]]},{"id":"NCBITaxon:2676868","l":"Phnomibacter ginsenosidimutans","na":1,"nb":1,"a":[["TED%3AAF-A0A6I6G6I9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I6G6I9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2676868","Phnomibacter ginsenosidimutans"]]},{"id":"NCBITaxon:2678357","l":"Secundilactobacillus folii","na":1,"nb":1,"a":[["TED%3AAF-A0A7X3C277-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X3C277-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2678357","Secundilactobacillus folii"]]},{"id":"NCBITaxon:2681312","l":"Nostoc sp. UCD120","na":1,"nb":1,"a":[["TED%3AAF-A0A841VCF7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A841VCF7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2681312","Nostoc sp. UCD120"]]},{"id":"NCBITaxon:2681547","l":"Microbulbifer sp. SH-1","na":1,"nb":1,"a":[["TED%3AAF-A0A6G8DE42-F1-model_v4_TED03","TED novel fold AF-A0A6G8DE42-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2681547","Microbulbifer sp. SH-1"]]},{"id":"NCBITaxon:2681766","l":"Maribellus comscasis","na":1,"nb":1,"a":[["TED%3AAF-A0A6I6JQN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I6JQN6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2681766","Maribellus comscasis"]]},{"id":"NCBITaxon:2681861","l":"Sporofaciens musculi","na":1,"nb":1,"a":[["TED%3AAF-A0A7X3MN05-F1-model_v4_TED02","TED novel fold AF-A0A7X3MN05-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2681861","Sporofaciens musculi"]]},{"id":"NCBITaxon:2681972","l":"bacterium LRH843","na":1,"nb":1,"a":[["TED%3AAF-A0A6P1AW56-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6P1AW56-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2681972","bacterium LRH843"]]},{"id":"NCBITaxon:2682096","l":"Nitratireductor arenosus","na":1,"nb":1,"a":[["TED%3AAF-A0A844QGE3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A844QGE3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2682096","Nitratireductor arenosus"]]},{"id":"NCBITaxon:2682607","l":"Methanocorpusculaceae archaeon","na":1,"nb":1,"a":[["TED%3AAF-A0A843IML4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A843IML4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2682607","Methanocorpusculaceae archaeon"]]},{"id":"NCBITaxon:2682977","l":"Deinococcus arboris","na":1,"nb":1,"a":[["TED%3AAF-A0A7C9IAU3-F1-model_v4_TED01","TED novel fold AF-A0A7C9IAU3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2682977","Deinococcus arboris"]]},{"id":"NCBITaxon:2683200","l":"Allomuricauda sp. TY007","na":1,"nb":1,"a":[["TED%3AAF-A0A7K3NCN8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K3NCN8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2683200","Allomuricauda sp. TY007"]]},{"id":"NCBITaxon:2683649","l":"Lichenicoccus roseus","na":1,"nb":1,"a":[["TED%3AAF-A0A5R9J5L8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5R9J5L8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2683649","Lichenicoccus roseus"]]},{"id":"NCBITaxon:2684468","l":"Streptomyces sp. QHH-9511","na":1,"nb":1,"a":[["TED%3AAF-A0A7L4YA32-F1-model_v4_TED02","TED novel fold AF-A0A7L4YA32-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2684468","Streptomyces sp. QHH-9511"]]},{"id":"NCBITaxon:268505","l":"Ophiocordyceps unilateralis","na":1,"nb":1,"a":[["TED%3AAF-A0A2A9P7W5-F1-model_v4_TED02","TED novel fold AF-A0A2A9P7W5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A268505","Ophiocordyceps unilateralis"]]},{"id":"NCBITaxon:2686288","l":"Microcystis aeruginosa FD4","na":1,"nb":1,"a":[["TED%3AAF-A0A857CZK1-F1-model_v4_TED01","TED novel fold AF-A0A857CZK1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2686288","Microcystis aeruginosa FD4"]]},{"id":"NCBITaxon:2686357","l":"Labilibaculum euxinicum","na":1,"nb":1,"a":[["TED%3AAF-A0A7M4D2X2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7M4D2X2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2686357","Labilibaculum euxinicum"]]},{"id":"NCBITaxon:2687311","l":"Gilliamella sp. Pas-s27","na":1,"nb":1,"a":[["TED%3AAF-A0A844WTT8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A844WTT8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2687311","Gilliamella sp. Pas-s27"]]},{"id":"NCBITaxon:268807","l":"Bacillus sp. Ak1","na":1,"nb":1,"a":[["Pfam%3APF22148","Fervidolysin N-terminal prodomain"]],"b":[["NCBITaxon%3A268807","Bacillus sp. Ak1"]]},{"id":"NCBITaxon:2689987","l":"Stagnimonas aquatica","na":1,"nb":1,"a":[["TED%3AAF-A0A3N0VKC0-F1-model_v4_TED01","TED novel fold AF-A0A3N0VKC0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2689987","Stagnimonas aquatica"]]},{"id":"NCBITaxon:2690260","l":"Streptomyces sp. SID3343","na":1,"nb":1,"a":[["TED%3AAF-A0A7K2YVW5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K2YVW5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2690260","Streptomyces sp. SID3343"]]},{"id":"NCBITaxon:2690275","l":"Streptomyces sp. SID4926","na":1,"nb":1,"a":[["TED%3AAF-A0A6I5BJ78-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6I5BJ78-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2690275","Streptomyces sp. SID4926"]]},{"id":"NCBITaxon:2690277","l":"Streptomyces sp. SID4931","na":1,"nb":1,"a":[["TED%3AAF-A0A6G2UI30-F1-model_v4_TED01","TED novel fold AF-A0A6G2UI30-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2690277","Streptomyces sp. SID4931"]]},{"id":"NCBITaxon:2690317","l":"Streptomyces sp. SID6013","na":1,"nb":1,"a":[["TED%3AAF-A0A7K2ML90-F1-model_v4_TED03","TED novel fold AF-A0A7K2ML90-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2690317","Streptomyces sp. SID6013"]]},{"id":"NCBITaxon:2690322","l":"Streptomyces sp. SID685","na":1,"nb":1,"a":[["TED%3AAF-A0A6G2Q1R4-F1-model_v4_TED02","TED novel fold AF-A0A6G2Q1R4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2690322","Streptomyces sp. SID685"]]},{"id":"NCBITaxon:2690343","l":"Streptomyces sp. SID8359","na":1,"nb":1,"a":[["TED%3AAF-A0A6G2T6I5-F1-model_v4_TED01","TED novel fold AF-A0A6G2T6I5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2690343","Streptomyces sp. SID8359"]]},{"id":"NCBITaxon:2690360","l":"Streptomyces sp. SID8380","na":1,"nb":1,"a":[["TED%3AAF-A0A6I5GAL2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6I5GAL2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2690360","Streptomyces sp. SID8380"]]},{"id":"NCBITaxon:2691042","l":"Kangsaoukella pontilimi","na":1,"nb":1,"a":[["TED%3AAF-A0A7C9IET5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7C9IET5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2691042","Kangsaoukella pontilimi"]]},{"id":"NCBITaxon:2691084","l":"Paenibacillus dendrobii","na":1,"nb":1,"a":[["TED%3AAF-A0A7X3IQD1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X3IQD1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2691084","Paenibacillus dendrobii"]]},{"id":"NCBITaxon:2691582","l":"Aurantiacibacter rhizosphaerae","na":1,"nb":1,"a":[["TED%3AAF-A0A844XBH1-F1-model_v4_TED01","TED novel fold AF-A0A844XBH1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2691582","Aurantiacibacter rhizosphaerae"]]},{"id":"NCBITaxon:2691583","l":"Acerihabitans arboris","na":1,"nb":1,"a":[["TED%3AAF-A0A845SMM8-F1-model_v4_TED03","TED novel fold AF-A0A845SMM8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2691583","Acerihabitans arboris"]]},{"id":"NCBITaxon:2691605","l":"Paenibacillus sp. OT2-17","na":1,"nb":1,"a":[["TED%3AAF-A0A6B0PUZ6-F1-model_v4_TED02","TED novel fold AF-A0A6B0PUZ6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2691605","Paenibacillus sp. OT2-17"]]},{"id":"NCBITaxon:2692125","l":"Nanchangia anserum","na":1,"nb":1,"a":[["TED%3AAF-A0A7S7FJV4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S7FJV4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2692125","Nanchangia anserum"]]},{"id":"NCBITaxon:2692190","l":"Stappia sediminis","na":1,"nb":1,"a":[["TED%3AAF-A0A7X3S780-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X3S780-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2692190","Stappia sediminis"]]},{"id":"NCBITaxon:2692211","l":"Flavobacterium sp. Sd200","na":1,"nb":1,"a":[["TED%3AAF-A0A6B0PMG6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6B0PMG6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2692211","Flavobacterium sp. Sd200"]]},{"id":"NCBITaxon:2692629","l":"Copranaerobaculum intestinale","na":1,"nb":1,"a":[["TED%3AAF-A0A6N8U9L0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8U9L0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2692629","Copranaerobaculum intestinale"]]},{"id":"NCBITaxon:2696058","l":"Methylobacterium sp. NI91","na":1,"nb":1,"a":[["TED%3AAF-A0A6H2U3I7-F1-model_v4_TED01","TED novel fold AF-A0A6H2U3I7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2696058","Methylobacterium sp. NI91"]]},{"id":"NCBITaxon:2696062","l":"Alteromonas profundi","na":1,"nb":1,"a":[["TED%3AAF-A0A7X5RKT0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X5RKT0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2696062","Alteromonas profundi"]]},{"id":"NCBITaxon:2696063","l":"Anaerocolumna sedimenticola","na":1,"nb":1,"a":[["TED%3AAF-A0A6P1TLG6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6P1TLG6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2696063","Anaerocolumna sedimenticola"]]},{"id":"NCBITaxon:2696284","l":"Herbidospora solisilvae","na":1,"nb":1,"a":[["TED%3AAF-A0A7C9NGI7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7C9NGI7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2696284","Herbidospora solisilvae"]]},{"id":"NCBITaxon:269709","l":"Methylotuvimicrobium kenyense","na":1,"nb":1,"a":[["TED%3AAF-A0A543V9Z8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A543V9Z8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A269709","Methylotuvimicrobium kenyense"]]},{"id":"NCBITaxon:2699745","l":"Exilispira sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A847LY92-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A847LY92-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2699745","Exilispira sp."]]},{"id":"NCBITaxon:2700082","l":"Pontibacter fetidus","na":1,"nb":1,"a":[["TED%3AAF-A0A6B2H985-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6B2H985-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2700082","Pontibacter fetidus"]]},{"id":"NCBITaxon:270351","l":"Methylobacterium aquaticum","na":1,"nb":1,"a":[["TED%3AAF-A0A0J6S4M9-F1-model_v4_TED02","TED novel fold AF-A0A0J6S4M9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A270351","Methylobacterium aquaticum"]]},{"id":"NCBITaxon:270368","l":"Roseateles toxinivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A4R6QP76-F1-model_v4_TED01","TED novel fold AF-A0A4R6QP76-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A270368","Roseateles toxinivorans"]]},{"id":"NCBITaxon:2703815","l":"Candidatus Mcinerneyibacterium aminivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A5D0MDZ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5D0MDZ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2703815","Candidatus Mcinerneyibacterium aminivorans"]]},{"id":"NCBITaxon:2703884","l":"Rouxiella aceris","na":1,"nb":1,"a":[["TED%3AAF-A0A848MGE5-F1-model_v4_TED01","TED novel fold AF-A0A848MGE5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2703884","Rouxiella aceris"]]},{"id":"NCBITaxon:2704462","l":"Paenibacillus lycopersici","na":1,"nb":1,"a":[["TED%3AAF-A0A6C0FXC5-F1-model_v4_TED01","TED novel fold AF-A0A6C0FXC5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2704462","Paenibacillus lycopersici"]]},{"id":"NCBITaxon:2705014","l":"Shewanella sp. SE1","na":1,"nb":1,"a":[["TED%3AAF-A0A6B2ICQ7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6B2ICQ7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2705014","Shewanella sp. SE1"]]},{"id":"NCBITaxon:2705428","l":"Bifidobacterium sp. DSM 109963","na":1,"nb":1,"a":[["TED%3AAF-A0A848J8F0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A848J8F0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2675321","Bifidobacterium panos"]]},{"id":"NCBITaxon:2705429","l":"Bifidobacterium sp. DSM 109957","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y0EQ14-F1-model_v4_TED01","TED novel fold AF-A0A7Y0EQ14-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2675322","Bifidobacterium oedipodis"]]},{"id":"NCBITaxon:2705463","l":"Psychrobacter sp. BI730","na":1,"nb":1,"a":[["TED%3AAF-A0A7Z0HCN2-F1-model_v4_TED02","TED novel fold AF-A0A7Z0HCN2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2705463","Psychrobacter sp. BI730"]]},{"id":"NCBITaxon:2706027","l":"Streptomyces sp. SID10815","na":1,"nb":1,"a":[["TED%3AAF-A0A6B2V5P6-F1-model_v4_TED01","TED novel fold AF-A0A6B2V5P6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2706027","Streptomyces sp. SID10815"]]},{"id":"NCBITaxon:2706031","l":"Streptomyces sp. SID11385","na":1,"nb":1,"a":[["TED%3AAF-A0A6B2UCN6-F1-model_v4_TED01","TED novel fold AF-A0A6B2UCN6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2706031","Streptomyces sp. SID11385"]]},{"id":"NCBITaxon:2706086","l":"Streptomyces sp. SID7499","na":1,"nb":1,"a":[["TED%3AAF-A0A6G3XUN9-F1-model_v4_TED01","TED novel fold AF-A0A6G3XUN9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2706086","Streptomyces sp. SID7499"]]},{"id":"NCBITaxon:2706092","l":"Streptomyces sp. SID7909","na":1,"nb":1,"a":[["TED%3AAF-A0A6B2ZL91-F1-model_v4_TED03","TED novel fold AF-A0A6B2ZL91-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2706092","Streptomyces sp. SID7909"]]},{"id":"NCBITaxon:2706104","l":"Streptomyces sp. SID8455","na":1,"nb":1,"a":[["TED%3AAF-A0A6B3IGZ6-F1-model_v4_TED01","TED novel fold AF-A0A6B3IGZ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2706104","Streptomyces sp. SID8455"]]},{"id":"NCBITaxon:2706888","l":"Oceanipulchritudo coccoides","na":1,"nb":1,"a":[["TED%3AAF-A0A6B2M276-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A6B2M276-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2706888","Oceanipulchritudo coccoides"]]},{"id":"NCBITaxon:2707005","l":"Paenibacillus lutimineralis","na":1,"nb":1,"a":[["TED%3AAF-A0A3S9UWH3-F1-model_v4_TED03","TED novel fold AF-A0A3S9UWH3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2707005","Paenibacillus lutimineralis"]]},{"id":"NCBITaxon:2707176","l":"Ideonella livida","na":1,"nb":1,"a":[["TED%3AAF-A0A7C9TJE1-F1-model_v4_TED01","TED novel fold AF-A0A7C9TJE1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2707176","Ideonella livida"]]},{"id":"NCBITaxon:2707344","l":"Candidatus Hydrogenisulfobacillus filiaventi","na":1,"nb":1,"a":[["TED%3AAF-A0A6F8ZGP4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6F8ZGP4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2707344","Candidatus Hydrogenisulfobacillus filiaventi"]]},{"id":"NCBITaxon:2707525","l":"Sulfuriroseicoccus oceanibius","na":1,"nb":1,"a":[["TED%3AAF-A0A6B3LA18-F1-model_v4_TED02","TED novel fold AF-A0A6B3LA18-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2707525","Sulfuriroseicoccus oceanibius"]]},{"id":"NCBITaxon:2708082","l":"Mumia sp. ZJ1417","na":1,"nb":1,"a":[["TED%3AAF-A0A7G5LSA1-F1-model_v4_TED03","TED novel fold AF-A0A7G5LSA1-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2708082","Mumia sp. ZJ1417"]]},{"id":"NCBITaxon:2708117","l":"Capnocytophaga endodontalis","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z4BK40-F1-model_v4_TED02","TED novel fold AF-A0A1Z4BK40-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2708117","Capnocytophaga endodontalis"]]},{"id":"NCBITaxon:270918","l":"Salegentibacter mishustinae","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q9ZKQ5-F1-model_v4_TED01","TED novel fold AF-A0A0Q9ZKQ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A270918","Salegentibacter mishustinae"]]},{"id":"NCBITaxon:2709310","l":"Psychroflexus aurantiacus","na":1,"nb":1,"a":[["TED%3AAF-A0A6B3R6F6-F1-model_v4_TED01","TED novel fold AF-A0A6B3R6F6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2709310","Psychroflexus aurantiacus"]]},{"id":"NCBITaxon:2710650","l":"Tabrizicola oligotrophica","na":1,"nb":1,"a":[["TED%3AAF-A0A6M0QVQ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6M0QVQ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2710650","Tabrizicola oligotrophica"]]},{"id":"NCBITaxon:2710758","l":"Phototrophicus methaneseepsis","na":1,"nb":1,"a":[["TED%3AAF-A0A7S8EBR2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S8EBR2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2710758","Phototrophicus methaneseepsis"]]},{"id":"NCBITaxon:2710881","l":"Sphingobacterium sp. SGG-5","na":1,"nb":1,"a":[["TED%3AAF-A0A6M1N329-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6M1N329-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2710881","Sphingobacterium sp. SGG-5"]]},{"id":"NCBITaxon:2710883","l":"Sphingobacterium sp. SGL-16","na":1,"nb":1,"a":[["TED%3AAF-A0A6M1NSA2-F1-model_v4_TED02","TED novel fold AF-A0A6M1NSA2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2710883","Sphingobacterium sp. SGL-16"]]},{"id":"NCBITaxon:2713571","l":"Arthrobacter sp. SDTb3-6","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y7M4K4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y7M4K4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2713571","Arthrobacter sp. SDTb3-6"]]},{"id":"NCBITaxon:2714353","l":"Vescimonas fastidiosa","na":1,"nb":1,"a":[["TED%3AAF-A0A810PZE6-F1-model_v4_TED02","TED novel fold AF-A0A810PZE6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2714353","Vescimonas fastidiosa"]]},{"id":"NCBITaxon:2714763","l":"Akanthomyces lecanii","na":1,"nb":1,"a":[["TED%3AAF-A0A179HZU5-F1-model_v4_TED01","TED novel fold AF-A0A179HZU5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2714763","Akanthomyces lecanii"]]},{"id":"NCBITaxon:2714928","l":"Erysipelothrix sp. HDW6A","na":1,"nb":1,"a":[["TED%3AAF-A0A6G7WWW2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6G7WWW2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2714928","Erysipelothrix sp. HDW6A"]]},{"id":"NCBITaxon:2714945","l":"Thermomonas sp. HDW16","na":1,"nb":1,"a":[["TED%3AAF-A0A6G7ZWG8-F1-model_v4_TED02","TED novel fold AF-A0A6G7ZWG8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2714945","Thermomonas sp. HDW16"]]},{"id":"NCBITaxon:2715255","l":"Candidatus Sumerlaeia bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A849ZNH8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A849ZNH8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2715255","Candidatus Sumerlaeia bacterium"]]},{"id":"NCBITaxon:2715692","l":"Hellea sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A848V7Z8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A848V7Z8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2715692","Hellea sp."]]},{"id":"NCBITaxon:2716225","l":"Hydrogenophaga crocea","na":1,"nb":1,"a":[["TED%3AAF-A0A6G8IJ99-F1-model_v4_TED01","TED novel fold AF-A0A6G8IJ99-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2716225","Hydrogenophaga crocea"]]},{"id":"NCBITaxon:2716538","l":"Clostridium muellerianum","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y0HS39-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y0HS39-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2716538","Clostridium muellerianum"]]},{"id":"NCBITaxon:2717365","l":"Ktedonobacteria bacterium brp13","na":1,"nb":1,"a":[["TED%3AAF-A0A7I8EZU9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7I8EZU9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2717365","Ktedonobacteria bacterium brp13"]]},{"id":"NCBITaxon:2719008","l":"Rhodobacteraceae bacterium R_SAG6","na":1,"nb":1,"a":[["TED%3AAF-A0A7X6JJ83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X6JJ83-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2719008","Rhodobacteraceae bacterium R_SAG6"]]},{"id":"NCBITaxon:2719014","l":"Alteromonadaceae bacterium A_SAG2","na":1,"nb":1,"a":[["TED%3AAF-A0A7X6G3T4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7X6G3T4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2719014","Alteromonadaceae bacterium A_SAG2"]]},{"id":"NCBITaxon:2719023","l":"Saccharopolyspora sp. ASAGF58","na":1,"nb":1,"a":[["TED%3AAF-A0A6H1RDL1-F1-model_v4_TED01","TED novel fold AF-A0A6H1RDL1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2719023","Saccharopolyspora sp. ASAGF58"]]},{"id":"NCBITaxon:2719586","l":"Pseudomonas sp. CES","na":1,"nb":1,"a":[["TED%3AAF-A0A7V8GU83-F1-model_v4_TED03","TED novel fold AF-A0A7V8GU83-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2719586","Pseudomonas sp. CES"]]},{"id":"NCBITaxon:2720482","l":"Microcoleus sp. SU_5_3","na":1,"nb":1,"a":[["TED%3AAF-A0A7X6HKG9-F1-model_v4_TED01","TED novel fold AF-A0A7X6HKG9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2720482","Microcoleus sp. SU_5_3"]]},{"id":"NCBITaxon:2721242","l":"Streptomyces sp. RLA2-12","na":1,"nb":1,"a":[["TED%3AAF-A0A7X9VIM1-F1-model_v4_TED02","TED novel fold AF-A0A7X9VIM1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2721242","Streptomyces sp. RLA2-12"]]},{"id":"NCBITaxon:2722756","l":"Brenneria izadpanahii","na":1,"nb":1,"a":[["TED%3AAF-A0A8A5FYX8-F1-model_v4_TED03","TED novel fold AF-A0A8A5FYX8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2722756","Brenneria izadpanahii"]]},{"id":"NCBITaxon:2723028","l":"Nostocaceae cyanobacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A838VQ58-F1-model_v4_TED01","TED novel fold AF-A0A838VQ58-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2723028","Nostocaceae cyanobacterium"]]},{"id":"NCBITaxon:2723083","l":"Rhodanobacter sp. ANJX3","na":1,"nb":1,"a":[["TED%3AAF-A0A7W8JHU5-F1-model_v4_TED02","TED novel fold AF-A0A7W8JHU5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2723083","Rhodanobacter sp. ANJX3"]]},{"id":"NCBITaxon:2723091","l":"Mucilaginibacter saanensis","na":1,"nb":1,"a":[["TED%3AAF-A0A7W9XJ11-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W9XJ11-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2723091","Mucilaginibacter saanensis"]]},{"id":"NCBITaxon:2723094","l":"Paraburkholderia sp. Cpub6","na":1,"nb":1,"a":[["TED%3AAF-A0A7W8RVB6-F1-model_v4_TED03","TED novel fold AF-A0A7W8RVB6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2723094","Paraburkholderia sp. Cpub6"]]},{"id":"NCBITaxon:2724616","l":"Desulfatitalea sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A849ETY0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A849ETY0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2724616","Desulfatitalea sp."]]},{"id":"NCBITaxon:2724914","l":"Leifsonia sp. PS1209","na":1,"nb":1,"a":[["TED%3AAF-A0A6H1W4P6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6H1W4P6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2724914","Leifsonia sp. PS1209"]]},{"id":"NCBITaxon:2725268","l":"Hujiaoplasma nucleasis","na":1,"nb":1,"a":[["TED%3AAF-A0A7L6N6H3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7L6N6H3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2725268","Hujiaoplasma nucleasis"]]},{"id":"NCBITaxon:2725304","l":"Fusobacterium sp. FSA-380-WT-3A","na":1,"nb":1,"a":[["TED%3AAF-A0A848C134-F1-model_v4_TED01","TED novel fold AF-A0A848C134-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2725304","Fusobacterium sp. FSA-380-WT-3A"]]},{"id":"NCBITaxon:2726116","l":"Chitinophaga sp. Ak27","na":1,"nb":1,"a":[["TED%3AAF-A0A847T8E7-F1-model_v4_TED01","TED novel fold AF-A0A847T8E7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2726116","Chitinophaga sp. Ak27"]]},{"id":"NCBITaxon:2726117","l":"Mycoplasma phocoeninasale","na":1,"nb":1,"a":[["TED%3AAF-A0A858U3I0-F1-model_v4_TED03","TED novel fold AF-A0A858U3I0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2726117","Mycoplasma phocoeninasale"]]},{"id":"NCBITaxon:272622","l":"Lactococcus cremoris subsp. cremoris SK11","na":1,"nb":1,"a":[["Pfam%3APF09136","Glucodextranase, domain B"]],"b":[["NCBITaxon%3A272622","Lactococcus cremoris subsp. cremoris SK11"]]},{"id":"NCBITaxon:272635","l":"Mycoplasmopsis pulmonis UAB CTIP","na":1,"nb":1,"a":[["TED%3AAF-Q98QG8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q98QG8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A272635","Mycoplasmopsis pulmonis UAB CTIP"]]},{"id":"NCBITaxon:2726738","l":"Rhizobium sp. P32RR-XVIII","na":1,"nb":1,"a":[["TED%3AAF-A0A7X8Y8R6-F1-model_v4_TED01","TED novel fold AF-A0A7X8Y8R6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2726738","Rhizobium sp. P32RR-XVIII"]]},{"id":"NCBITaxon:2726956","l":"Pseudomonas berkeleyensis","na":1,"nb":1,"a":[["TED%3AAF-A0A7G5DIN6-F1-model_v4_TED02","TED novel fold AF-A0A7G5DIN6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2726956","Pseudomonas berkeleyensis"]]},{"id":"NCBITaxon:2728835","l":"Neoluteolibacter luteus","na":1,"nb":1,"a":[["TED%3AAF-A0A858RIN4-F1-model_v4_TED01","TED novel fold AF-A0A858RIN4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2728835","Neoluteolibacter luteus"]]},{"id":"NCBITaxon:2728836","l":"Azohydromonas caseinilytica","na":1,"nb":1,"a":[["TED%3AAF-A0A848F889-F1-model_v4_TED02","TED novel fold AF-A0A848F889-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2728836","Azohydromonas caseinilytica"]]},{"id":"NCBITaxon:2728838","l":"Sphingomonas sp. G-3-2-10","na":1,"nb":1,"a":[["TED%3AAF-A0A7X9WKK5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X9WKK5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2728838","Sphingomonas sp. G-3-2-10"]]},{"id":"NCBITaxon:2728839","l":"Paraburkholderia antibiotica","na":1,"nb":1,"a":[["TED%3AAF-A0A7X9ZW44-F1-model_v4_TED02","TED novel fold AF-A0A7X9ZW44-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2728839","Paraburkholderia antibiotica"]]},{"id":"NCBITaxon:2728841","l":"Pseudoflavitalea sp. G-6-1-2","na":1,"nb":1,"a":[["TED%3AAF-A0A848G2J7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A848G2J7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2728841","Pseudoflavitalea sp. G-6-1-2"]]},{"id":"NCBITaxon:2728842","l":"Chitinophaga fulva","na":1,"nb":1,"a":[["TED%3AAF-A0A848GKS7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A848GKS7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2728842","Chitinophaga fulva"]]},{"id":"NCBITaxon:2728847","l":"Chryseobacterium antibioticum","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y0AMI8-F1-model_v4_TED01","TED novel fold AF-A0A7Y0AMI8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2728847","Chryseobacterium antibioticum"]]},{"id":"NCBITaxon:2729613","l":"Thalassotalea sp. Y01","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y0KVJ5-F1-model_v4_TED01","TED novel fold AF-A0A7Y0KVJ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2729613","Thalassotalea sp. Y01"]]},{"id":"NCBITaxon:2729629","l":"Sulfobacillus harzensis","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y0Q4W7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Y0Q4W7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2729629","Sulfobacillus harzensis"]]},{"id":"NCBITaxon:2730080","l":"Fundidesulfovibrio magnetotacticus","na":1,"nb":1,"a":[["TED%3AAF-A0A6V8LL98-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6V8LL98-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2730080","Fundidesulfovibrio magnetotacticus"]]},{"id":"NCBITaxon:2732044","l":"Streptomyces sp. S3(2020)","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y3PWD0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y3PWD0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2732044","Streptomyces sp. S3(2020)"]]},{"id":"NCBITaxon:2733487","l":"Halomonas sp. MCCC 1A13316","na":1,"nb":1,"a":[["TED%3AAF-A0A7M1QAE4-F1-model_v4_TED01","TED novel fold AF-A0A7M1QAE4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2781855","Billgrantia diversa"]]},{"id":"NCBITaxon:2734618","l":"Microbacterium sp. NIBRBAC000506063","na":1,"nb":1,"a":[["TED%3AAF-A0A8B0KQM8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B0KQM8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2734618","Microbacterium sp. NIBRBAC000506063"]]},{"id":"NCBITaxon:2735878","l":"Novosphingobium sp. R1F6D","na":1,"nb":1,"a":[["TED%3AAF-A0A7Z0GFQ0-F1-model_v4_TED01","TED novel fold AF-A0A7Z0GFQ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2735878","Novosphingobium sp. R1F6D"]]},{"id":"NCBITaxon:2735882","l":"Mycobacterium sp. AZCC_0083","na":1,"nb":1,"a":[["TED%3AAF-A0A7W8CMF6-F1-model_v4_TED02","TED novel fold AF-A0A7W8CMF6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2735882","Mycobacterium sp. AZCC_0083"]]},{"id":"NCBITaxon:2735906","l":"Pseudomonas sp. B11D7D","na":1,"nb":1,"a":[["TED%3AAF-A0A7G7RYE9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G7RYE9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2735906","Pseudomonas sp. B11D7D"]]},{"id":"NCBITaxon:2735912","l":"Chryseobacterium sp. H1D6C","na":1,"nb":1,"a":[["TED%3AAF-A0A7Z0G7Z3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Z0G7Z3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2735912","Chryseobacterium sp. H1D6C"]]},{"id":"NCBITaxon:2736284","l":"Bacillus sp. Gen3","na":1,"nb":1,"a":[["TED%3AAF-A0A7Z0TDN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Z0TDN3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2736284","Bacillus sp. Gen3"]]},{"id":"NCBITaxon:2739","l":"Vagococcus salmoninarum","na":1,"nb":1,"a":[["TED%3AAF-A0A429ZRZ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A429ZRZ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2739","Vagococcus salmoninarum"]]},{"id":"NCBITaxon:2740537","l":"Rubrobacteraceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A838KWE1-F1-model_v4_TED01","TED novel fold AF-A0A838KWE1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2740537","Rubrobacteraceae bacterium"]]},{"id":"NCBITaxon:2740543","l":"Bradymonadaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A838IDP9-F1-model_v4_TED03","TED novel fold AF-A0A838IDP9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2740543","Bradymonadaceae bacterium"]]},{"id":"NCBITaxon:2740584","l":"Rheinheimera lutimaris","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y5EJE9-F1-model_v4_TED01","TED novel fold AF-A0A7Y5EJE9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2740584","Rheinheimera lutimaris"]]},{"id":"NCBITaxon:2741497","l":"Peptidiphaga gingivicola","na":1,"nb":1,"a":[["TED%3AAF-A0A179B1W0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A179B1W0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2741497","Peptidiphaga gingivicola"]]},{"id":"NCBITaxon:2741543","l":"Candidatus Acidiferrum panamense","na":1,"nb":1,"a":[["TED%3AAF-A0A7V8NL93-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V8NL93-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2741543","Candidatus Acidiferrum panamense"]]},{"id":"NCBITaxon:2742129","l":"Stenotrophomonas sp. NA06056","na":1,"nb":1,"a":[["TED%3AAF-A0A7H8NWE4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H8NWE4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2742129","Stenotrophomonas sp. NA06056"]]},{"id":"NCBITaxon:2742135","l":"Kitasatospora sp. NA04385","na":1,"nb":1,"a":[["TED%3AAF-A0A7H8L1A8-F1-model_v4_TED01","TED novel fold AF-A0A7H8L1A8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2742135","Kitasatospora sp. NA04385"]]},{"id":"NCBITaxon:2742136","l":"Streptomyces sp. NA04227","na":1,"nb":1,"a":[["TED%3AAF-A0A7H8JMX3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H8JMX3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2742136","Streptomyces sp. NA04227"]]},{"id":"NCBITaxon:2742137","l":"Streptomyces sp. NA02950","na":1,"nb":1,"a":[["TED%3AAF-A0A7H8IZV7-F1-model_v4_TED01","TED novel fold AF-A0A7H8IZV7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2742137","Streptomyces sp. NA02950"]]},{"id":"NCBITaxon:2744516","l":"Mesorhizobium sp. 113-3-3","na":1,"nb":1,"a":[["TED%3AAF-A0A7R7AVA7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7R7AVA7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2744516","Mesorhizobium sp. 113-3-3"]]},{"id":"NCBITaxon:2744520","l":"Mesorhizobium sp. 131-3-5","na":1,"nb":1,"a":[["TED%3AAF-A0A7R7BKF3-F1-model_v4_TED02","TED novel fold AF-A0A7R7BKF3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2744520","Mesorhizobium sp. 131-3-5"]]},{"id":"NCBITaxon:2744522","l":"Mesorhizobium sp. L-8-3","na":1,"nb":1,"a":[["TED%3AAF-A0A7R7BYU5-F1-model_v4_TED04","TED novel fold AF-A0A7R7BYU5-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2744522","Mesorhizobium sp. L-8-3"]]},{"id":"NCBITaxon:2744550","l":"Pseudomonas sp. GC01","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y2PJK7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y2PJK7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2744550","Pseudomonas sp. GC01"]]},{"id":"NCBITaxon:2745197","l":"Adhaeribacter radiodurans","na":1,"nb":1,"a":[["TED%3AAF-A0A7L7L7C4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7L7L7C4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2745197","Adhaeribacter radiodurans"]]},{"id":"NCBITaxon:2745508","l":"Pseudomonas khorasanensis","na":1,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_TBH_Asp","T-E-associated metallophore aspartate beta-hydroxylase family"]],"b":[["NCBITaxon%3A2745508","Pseudomonas khorasanensis"]]},{"id":"NCBITaxon:2745851","l":"Moheibacter lacus","na":1,"nb":1,"a":[["TED%3AAF-A0A838ZEU7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A838ZEU7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2745851","Moheibacter lacus"]]},{"id":"NCBITaxon:2748318","l":"Oceaniferula marina","na":1,"nb":1,"a":[["TED%3AAF-A0A851GBV4-F1-model_v4_TED02","TED novel fold AF-A0A851GBV4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2748318","Oceaniferula marina"]]},{"id":"NCBITaxon:2748865","l":"Bdellovibrio sp. KM01","na":1,"nb":1,"a":[["TED%3AAF-A0A7H9MJQ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H9MJQ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2748865","Bdellovibrio sp. KM01"]]},{"id":"NCBITaxon:2749086","l":"Hyphobacterium sp. CCMP332","na":1,"nb":1,"a":[["TED%3AAF-A0A7G8ZLM0-F1-model_v4_TED01","TED novel fold AF-A0A7G8ZLM0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2749086","Hyphobacterium sp. CCMP332"]]},{"id":"NCBITaxon:2749828","l":"Streptomyces sp. BR123","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y8X3R1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y8X3R1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2749828","Streptomyces sp. BR123"]]},{"id":"NCBITaxon:2750658","l":"Pontiella sulfatireligans","na":1,"nb":1,"a":[["TED%3AAF-A0A6C2UJ91-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6C2UJ91-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2750658","Pontiella sulfatireligans"]]},{"id":"NCBITaxon:2750659","l":"Pontiella desulfatans","na":1,"nb":1,"a":[["TED%3AAF-A0A6C2U8C2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6C2U8C2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2750659","Pontiella desulfatans"]]},{"id":"NCBITaxon:2751176","l":"Vibrio sp. B1ASS3","na":1,"nb":1,"a":[["TED%3AAF-A0A812GPM8-F1-model_v4_TED04","TED novel fold AF-A0A812GPM8-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2751176","Vibrio sp. B1ASS3"]]},{"id":"NCBITaxon:2751178","l":"Vibrio sp. B1FLJ16","na":1,"nb":1,"a":[["TED%3AAF-A0A812GLG0-F1-model_v4_TED01","TED novel fold AF-A0A812GLG0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2751178","Vibrio sp. B1FLJ16"]]},{"id":"NCBITaxon:2752311","l":"Haloechinothrix aidingensis","na":1,"nb":1,"a":[["TED%3AAF-A0A838A710-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A838A710-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2752311","Haloechinothrix aidingensis"]]},{"id":"NCBITaxon:2754530","l":"Protomyces lactucae-debilis","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y2EYD1-F1-model_v4_TED01","TED novel fold AF-A0A1Y2EYD1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2754530","Protomyces lactucae-debilis"]]},{"id":"NCBITaxon:2754717","l":"Candidatus Hakubella thermalkaliphila","na":1,"nb":1,"a":[["TED%3AAF-A0A6V8NQ24-F1-model_v4_TED01","TED novel fold AF-A0A6V8NQ24-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2754717","Candidatus Hakubella thermalkaliphila"]]},{"id":"NCBITaxon:2754723","l":"Cetobacterium sp. 2A","na":1,"nb":1,"a":[["TED%3AAF-A0A842J1M3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A842J1M3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2754723","Cetobacterium sp. 2A"]]},{"id":"NCBITaxon:2755323","l":"Thermogemmata fonticola","na":1,"nb":1,"a":[["TED%3AAF-A0A7V9ABT3-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7V9ABT3-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2755323","Thermogemmata fonticola"]]},{"id":"NCBITaxon:2755562","l":"Legionella sp. PC997","na":1,"nb":1,"a":[["TED%3AAF-A0A7G4RI73-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G4RI73-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2755562","Legionella sp. PC997"]]},{"id":"NCBITaxon:2758037","l":"Marnyiella aurantia","na":1,"nb":1,"a":[["TED%3AAF-A0A7D7LLD3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7D7LLD3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2758037","Marnyiella aurantia"]]},{"id":"NCBITaxon:2758439","l":"Rhizobium sp. G21","na":1,"nb":1,"a":[["TED%3AAF-A0A7W3WAF5-F1-model_v4_TED02","TED novel fold AF-A0A7W3WAF5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2758439","Rhizobium sp. G21"]]},{"id":"NCBITaxon:2758675","l":"Flavobacterium sp. xlx-221","na":1,"nb":1,"a":[["TED%3AAF-A0A7W2FYJ7-F1-model_v4_TED01","TED novel fold AF-A0A7W2FYJ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2758675","Flavobacterium sp. xlx-221"]]},{"id":"NCBITaxon:2759817","l":"Colwellia sp. Bg11-12","na":1,"nb":1,"a":[["TED%3AAF-A0A7W2ML90-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W2ML90-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2759817","Colwellia sp. Bg11-12"]]},{"id":"NCBITaxon:2759824","l":"Colwellia sp. MB02u-6","na":1,"nb":1,"a":[["TED%3AAF-A0A7W2SE70-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W2SE70-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2759824","Colwellia sp. MB02u-6"]]},{"id":"NCBITaxon:2759847","l":"Pseudoalteromonas sp. 5Ae-yellow","na":1,"nb":1,"a":[["TED%3AAF-A0A7W2TMF7-F1-model_v4_TED01","TED novel fold AF-A0A7W2TMF7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2759847","Pseudoalteromonas sp. 5Ae-yellow"]]},{"id":"NCBITaxon:2759911","l":"Candidatus Methanogaster sp. ANME-2c ERB4","na":1,"nb":1,"a":[["TED%3AAF-A0A7G9YNZ0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G9YNZ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2759911","Candidatus Methanogaster sp. ANME-2c ERB4"]]},{"id":"NCBITaxon:2759912","l":"Candidatus Methanophagaceae archaeon ANME-1 ERB6","na":1,"nb":1,"a":[["TED%3AAF-A0A7G9YX06-F1-model_v4_TED03","TED novel fold AF-A0A7G9YX06-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2759912","Candidatus Methanophagaceae archaeon ANME-1 ERB6"]]},{"id":"NCBITaxon:2760087","l":"Aequorivita sp. 609","na":1,"nb":1,"a":[["TED%3AAF-A0A841TPZ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841TPZ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2760087","Aequorivita sp. 609"]]},{"id":"NCBITaxon:2760088","l":"Oceanospirillum sediminis","na":1,"nb":1,"a":[["TED%3AAF-A0A839IN35-F1-model_v4_TED01","TED novel fold AF-A0A839IN35-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2760088","Oceanospirillum sediminis"]]},{"id":"NCBITaxon:2760438","l":"Limnospira indica BM01","na":1,"nb":1,"a":[["TED%3AAF-A0A7G7VWE4-F1-model_v4_TED01","TED novel fold AF-A0A7G7VWE4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2760438","Limnospira indica BM01"]]},{"id":"NCBITaxon:2760935","l":"Shewanella sp. SR44-4","na":1,"nb":1,"a":[["TED%3AAF-A0A7W4AR60-F1-model_v4_TED02","TED novel fold AF-A0A7W4AR60-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2760935","Shewanella sp. SR44-4"]]},{"id":"NCBITaxon:2760936","l":"Shewanella sp. SR44-3","na":1,"nb":1,"a":[["TED%3AAF-A0A7W3X3H7-F1-model_v4_TED02","TED novel fold AF-A0A7W3X3H7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2760936","Shewanella sp. SR44-3"]]},{"id":"NCBITaxon:2760976","l":"Shewanella sp. SG41-4","na":1,"nb":1,"a":[["TED%3AAF-A0A7W4C704-F1-model_v4_TED01","TED novel fold AF-A0A7W4C704-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2760976","Shewanella sp. SG41-4"]]},{"id":"NCBITaxon:2761500","l":"Porcisia hertigi","na":1,"nb":1,"a":[["TED%3AAF-A0A836ID28-F1-model_v4_TED01","TED novel fold AF-A0A836ID28-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2761500","Porcisia hertigi"]]},{"id":"NCBITaxon:2761579","l":"Hymenobacter sediminicola","na":1,"nb":1,"a":[["TED%3AAF-A0A7G7W366-F1-model_v4_TED02","TED novel fold AF-A0A7G7W366-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2761579","Hymenobacter sediminicola"]]},{"id":"NCBITaxon:2762576","l":"Pseudomonas baltica","na":1,"nb":1,"a":[["TED%3AAF-A0A7X1G7W6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X1G7W6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2762576","Pseudomonas baltica"]]},{"id":"NCBITaxon:2763107","l":"Alloacidobacterium dinghuense","na":1,"nb":1,"a":[["TED%3AAF-A0A7G8BDT6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G8BDT6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2763107","Alloacidobacterium dinghuense"]]},{"id":"NCBITaxon:2763672","l":"Simiaoa sunii","na":1,"nb":1,"a":[["TED%3AAF-A0A7G9FVC0-F1-model_v4_TED01","TED novel fold AF-A0A7G9FVC0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2763672","Simiaoa sunii"]]},{"id":"NCBITaxon:2764720","l":"Olivibacter sp. SDN3","na":1,"nb":1,"a":[["TED%3AAF-A0A7G9BDR3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G9BDR3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2764720","Olivibacter sp. SDN3"]]},{"id":"NCBITaxon:2766701","l":"Treponema sp. Marseille-Q4132","na":1,"nb":1,"a":[["TED%3AAF-A0A7G9FFA3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7G9FFA3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2766701","Treponema sp. Marseille-Q4132"]]},{"id":"NCBITaxon:2768445","l":"Nocardioides sp. SLBN-35","na":1,"nb":1,"a":[["TED%3AAF-A0A542SD74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A542SD74-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2768445","Nocardioides sp. SLBN-35"]]},{"id":"NCBITaxon:2768447","l":"Phycicoccus sp. SLBN-51","na":1,"nb":1,"a":[["TED%3AAF-A0A542HJ27-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A542HJ27-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2768447","Phycicoccus sp. SLBN-51"]]},{"id":"NCBITaxon:2768460","l":"Lysinimonas sp. SLBN-160","na":1,"nb":1,"a":[["TED%3AAF-A0A852YIC4-F1-model_v4_TED01","TED novel fold AF-A0A852YIC4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2768460","Lysinimonas sp. SLBN-160"]]},{"id":"NCBITaxon:2770322","l":"Stenotrophomonas sp. 169","na":1,"nb":1,"a":[["TED%3AAF-A0A7H1APN7-F1-model_v4_TED01","TED novel fold AF-A0A7H1APN7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2770322","Stenotrophomonas sp. 169"]]},{"id":"NCBITaxon:2770636","l":"Mannheimia bovis","na":1,"nb":1,"a":[["TED%3AAF-A0A7H1C138-F1-model_v4_TED01","TED novel fold AF-A0A7H1C138-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2770636","Mannheimia bovis"]]},{"id":"NCBITaxon:2771430","l":"Allosphingosinicella flava","na":1,"nb":1,"a":[["TED%3AAF-A0A7T2GHX0-F1-model_v4_TED01","TED novel fold AF-A0A7T2GHX0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2771430","Allosphingosinicella flava"]]},{"id":"NCBITaxon:2775420","l":"Skermanella cutis","na":1,"nb":1,"a":[["TED%3AAF-A0A7T8RW62-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7T8RW62-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2775420","Skermanella cutis"]]},{"id":"NCBITaxon:277988","l":"Thermococcus thioreducens","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q2S4S6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0Q2S4S6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A277988","Thermococcus thioreducens"]]},{"id":"NCBITaxon:2780922","l":"Solibaculum mannosilyticum","na":1,"nb":1,"a":[["TED%3AAF-A0A7M3W2R4-F1-model_v4_TED02","TED novel fold AF-A0A7M3W2R4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2780922","Solibaculum mannosilyticum"]]},{"id":"NCBITaxon:2784880","l":"Natranaeroarchaeum sulfidigenes","na":1,"nb":1,"a":[["TED%3AAF-A0A897ML23-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A897ML23-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2784880","Natranaeroarchaeum sulfidigenes"]]},{"id":"NCBITaxon:2785331","l":"Entomomonas asaccharolytica","na":1,"nb":1,"a":[["TED%3AAF-A0A7T8RLN2-F1-model_v4_TED05","TED novel fold AF-A0A7T8RLN2-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A2785331","Entomomonas asaccharolytica"]]},{"id":"NCBITaxon:2785785","l":"Methylomonas sp. LL1","na":1,"nb":1,"a":[["TED%3AAF-A0A7T0JPB0-F1-model_v4_TED01","TED novel fold AF-A0A7T0JPB0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2785785","Methylomonas sp. LL1"]]},{"id":"NCBITaxon:2787628","l":"Treponema peruense","na":1,"nb":1,"a":[["TED%3AAF-A0A7T3RE25-F1-model_v4_TED03","TED novel fold AF-A0A7T3RE25-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2787628","Treponema peruense"]]},{"id":"NCBITaxon:2789216","l":"Labrys sp. KNU-23","na":1,"nb":1,"a":[["TED%3AAF-A0A5C1WCX6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C1WCX6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2789216","Labrys sp. KNU-23"]]},{"id":"NCBITaxon:278940","l":"Botrytis galanthina","na":1,"nb":1,"a":[["TED%3AAF-A0A4S8QP05-F1-model_v4_TED01","TED novel fold AF-A0A4S8QP05-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A278940","Botrytis galanthina"]]},{"id":"NCBITaxon:279058","l":"Collimonas arenae","na":1,"nb":1,"a":[["TED%3AAF-A0A0A1FBZ5-F1-model_v4_TED02","TED novel fold AF-A0A0A1FBZ5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A279058","Collimonas arenae"]]},{"id":"NCBITaxon:279113","l":"Collimonas pratensis","na":1,"nb":1,"a":[["TED%3AAF-A0A127Q9K0-F1-model_v4_TED02","TED novel fold AF-A0A127Q9K0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A279113","Collimonas pratensis"]]},{"id":"NCBITaxon:2792603","l":"Acidihalobacter aeolianus","na":1,"nb":1,"a":[["TED%3AAF-A0A1D8KBM4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1D8KBM4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2792603","Acidihalobacter aeolianus"]]},{"id":"NCBITaxon:2795689","l":"Alteromonas sp. KC14","na":1,"nb":1,"a":[["TED%3AAF-A0A7R7GIT0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7R7GIT0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2795689","Alteromonas sp. KC14"]]},{"id":"NCBITaxon:2795690","l":"Kaistia sp. 32K","na":1,"nb":1,"a":[["TED%3AAF-A0A7R7T725-F1-model_v4_TED01","TED novel fold AF-A0A7R7T725-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2795690","Kaistia sp. 32K"]]},{"id":"NCBITaxon:2795738","l":"Sphingobacterium sp. UDSM-2020","na":1,"nb":1,"a":[["TED%3AAF-A0A7T4QWN9-F1-model_v4_TED02","TED novel fold AF-A0A7T4QWN9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2795738","Sphingobacterium sp. UDSM-2020"]]},{"id":"NCBITaxon:279714","l":"Pseudogulbenkiania ferrooxidans 2002","na":1,"nb":1,"a":[["TED%3AAF-B9Z3M4-F1-model_v4_TED02","TED novel fold AF-B9Z3M4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A279714","Pseudogulbenkiania ferrooxidans 2002"]]},{"id":"NCBITaxon:2798577","l":"Breznakiella homolactica","na":1,"nb":1,"a":[["TED%3AAF-A0A7T7XPH2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7T7XPH2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2798577","Breznakiella homolactica"]]},{"id":"NCBITaxon:280036","l":"Sporisorium graminicola","na":1,"nb":1,"a":[["TED%3AAF-A0A4U7KT65-F1-model_v4_TED02","TED novel fold AF-A0A4U7KT65-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A280036","Sporisorium graminicola"]]},{"id":"NCBITaxon:2802972","l":"Bryobacterales bacterium F-183","na":1,"nb":1,"a":[["TED%3AAF-A0A7R8BBA2-F1-model_v4_TED01","TED novel fold AF-A0A7R8BBA2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2802972","Bryobacterales bacterium F-183"]]},{"id":"NCBITaxon:2803181","l":"Leishmania sp. Ghana 2012 LV757","na":1,"nb":1,"a":[["TED%3AAF-A0A836HN95-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A836HN95-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2803181","Leishmania sp. Ghana 2012 LV757"]]},{"id":"NCBITaxon:2805098","l":"Photorhabdus aegyptia","na":1,"nb":1,"a":[["TED%3AAF-A0A022PGR1-F1-model_v4_TED04","TED novel fold AF-A0A022PGR1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A2805098","Photorhabdus aegyptia"]]},{"id":"NCBITaxon:2806336","l":"Clostridiales bacterium FE2010","na":1,"nb":1,"a":[["TED%3AAF-A0A8A5D479-F1-model_v4_TED03","TED novel fold AF-A0A8A5D479-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A2806336","Clostridiales bacterium FE2010"]]},{"id":"NCBITaxon:280699","l":"Cyanidioschyzon merolae strain 10D","na":1,"nb":1,"a":[["Pfam%3APF17866","AAA lid domain"]],"b":[["NCBITaxon%3A280699","Cyanidioschyzon merolae strain 10D"]]},{"id":"NCBITaxon:28083","l":"Legionella birminghamensis","na":1,"nb":1,"a":[["TED%3AAF-A0A378I8E9-F1-model_v4_TED02","TED novel fold AF-A0A378I8E9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A28083","Legionella birminghamensis"]]},{"id":"NCBITaxon:28101","l":"Phyllobacterium myrsinacearum","na":1,"nb":1,"a":[["TED%3AAF-A0A2S9JAN5-F1-model_v4_TED02","TED novel fold AF-A0A2S9JAN5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A28101","Phyllobacterium myrsinacearum"]]},{"id":"NCBITaxon:28119","l":"Bacteroides zoogleoformans","na":1,"nb":1,"a":[["TED%3AAF-A0A562V923-F1-model_v4_TED02","TED novel fold AF-A0A562V923-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A28119","Bacteroides zoogleoformans"]]},{"id":"NCBITaxon:2813780","l":"Alcaligenes sp. SORT26","na":1,"nb":1,"a":[["TED%3AAF-A0A8A4H621-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8A4H621-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2813780","Alcaligenes sp. SORT26"]]},{"id":"NCBITaxon:28149","l":"Salmonella enterica subsp. enterica serovar Rostock","na":1,"nb":1,"a":[["Pfam%3APF22370","Flagellin, beta sheet domain"]],"b":[["NCBITaxon%3A28149","Salmonella enterica subsp. enterica serovar Rostock"]]},{"id":"NCBITaxon:28177","l":"Kryptophanaron alfredi symbiont","na":1,"nb":1,"a":[["PROSITE%3APS00494","Bacterial luciferase subunits signature"]],"b":[["NCBITaxon%3A28177","Kryptophanaron alfredi symbiont"]]},{"id":"NCBITaxon:28181","l":"Magnetovibrio blakemorei","na":1,"nb":1,"a":[["TED%3AAF-A0A1E5Q9I9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1E5Q9I9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A28181","Magnetovibrio blakemorei"]]},{"id":"NCBITaxon:2819280","l":"Acidihalobacter yilgarnensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1D8IQR8-F1-model_v4_TED01","TED novel fold AF-A0A1D8IQR8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2819280","Acidihalobacter yilgarnensis"]]},{"id":"NCBITaxon:2820278","l":"Aquabacter sp. L1I39","na":1,"nb":1,"a":[["TED%3AAF-A0A8A7CUZ9-F1-model_v4_TED02","TED novel fold AF-A0A8A7CUZ9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2820278","Aquabacter sp. L1I39"]]},{"id":"NCBITaxon:282197","l":"Jannaschia rubra","na":1,"nb":1,"a":[["TED%3AAF-A0A0M6XN40-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0M6XN40-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A282197","Jannaschia rubra"]]},{"id":"NCBITaxon:2823317","l":"Phascolarctobacterium sp. Marseille-Q4147","na":1,"nb":1,"a":[["TED%3AAF-A0A8B0KIM4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A8B0KIM4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A2823317","Phascolarctobacterium sp. Marseille-Q4147"]]},{"id":"NCBITaxon:28234","l":"Geotoga petraea","na":1,"nb":1,"a":[["TED%3AAF-A0A1G6NUB4-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1G6NUB4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A28234","Geotoga petraea"]]},{"id":"NCBITaxon:28238","l":"Caldicellulosiruptor sp. Rt8B.4","na":1,"nb":1,"a":[["Pfam%3APF19538","Family of unknown function (DUF6062)"]],"b":[["NCBITaxon%3A28238","Caldicellulosiruptor sp. Rt8B.4"]]},{"id":"NCBITaxon:282423","l":"Planktothrix agardhii NIES-204","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z6CJC9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2Z6CJC9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A282423","Planktothrix agardhii NIES-204"]]},{"id":"NCBITaxon:284028","l":"Streptomyces fulvorobeus","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y9HHV1-F1-model_v4_TED01","TED novel fold AF-A0A7Y9HHV1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A284028","Streptomyces fulvorobeus"]]},{"id":"NCBITaxon:2843","l":"Skeletonema costatum","na":1,"nb":1,"a":[["Pfam%3APF06868","Protein of unknown function (DUF1257)"]],"b":[["NCBITaxon%3A2843","Skeletonema costatum"]]},{"id":"NCBITaxon:284579","l":"Salibacterium salarium","na":1,"nb":1,"a":[["TED%3AAF-A0A3R9PEH4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3R9PEH4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A284579","Salibacterium salarium"]]},{"id":"NCBITaxon:284581","l":"Priestia koreensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0M0L512-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0M0L512-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A284581","Priestia koreensis"]]},{"id":"NCBITaxon:285525","l":"Streptomyces sahachiroi","na":1,"nb":1,"a":[["Pfam%3APF06224","DNA glycosylase AlkZ-like"]],"b":[["NCBITaxon%3A285525","Streptomyces sahachiroi"]]},{"id":"NCBITaxon:285676","l":"Micromonospora saelicesensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1C4ZZA2-F1-model_v4_TED02","TED novel fold AF-A0A1C4ZZA2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A285676","Micromonospora saelicesensis"]]},{"id":"NCBITaxon:285729","l":"Fusobacterium canifelinum","na":1,"nb":1,"a":[["TED%3AAF-A0A3P1V048-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3P1V048-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A285729","Fusobacterium canifelinum"]]},{"id":"NCBITaxon:286115","l":"Synchytrium endobioticum","na":1,"nb":1,"a":[["TED%3AAF-A0A507DIM4-F1-model_v4_TED01","TED novel fold AF-A0A507DIM4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A286115","Synchytrium endobioticum"]]},{"id":"NCBITaxon:286636","l":"Streptococcus pyogenes MGAS10394","na":1,"nb":1,"a":[["PROSITE%3APS00829","Prokaryotic transcription elongation factors signature 1"]],"b":[["NCBITaxon%3A286636","Streptococcus pyogenes MGAS10394"]]},{"id":"NCBITaxon:286727","l":"Azospirillum oryzae","na":1,"nb":1,"a":[["TED%3AAF-A0A6N1AKY1-F1-model_v4_TED01","TED novel fold AF-A0A6N1AKY1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A286727","Azospirillum oryzae"]]},{"id":"NCBITaxon:288681","l":"Bacillus cereus E33L","na":1,"nb":1,"a":[["TED%3AAF-Q4V119-F1-model_v4_TED01","TED highly-symmetric fold AF-Q4V119-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A288681","Bacillus cereus E33L"]]},{"id":"NCBITaxon:288768","l":"Bordetella ansorpii","na":1,"nb":1,"a":[["TED%3AAF-A0A157MBV7-F1-model_v4_TED01","TED novel fold AF-A0A157MBV7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A288768","Bordetella ansorpii"]]},{"id":"NCBITaxon:288992","l":"Pedobacter caeni","na":1,"nb":1,"a":[["TED%3AAF-A0A1M4ZFL8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1M4ZFL8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A288992","Pedobacter caeni"]]},{"id":"NCBITaxon:28985","l":"Kluyveromyces lactis","na":1,"nb":1,"a":[["Pfam%3APF03930","Recombinase Flp protein N-terminus"]],"b":[["NCBITaxon%3A28985","Kluyveromyces lactis"]]},{"id":"NCBITaxon:290052","l":"Acetivibrio ethanolgignens","na":1,"nb":1,"a":[["TED%3AAF-A0A0V8QEW9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0V8QEW9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A290052","Acetivibrio ethanolgignens"]]},{"id":"NCBITaxon:290054","l":"Eubacterium coprostanoligenes","na":1,"nb":1,"a":[["TED%3AAF-A0A1T4NG17-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1T4NG17-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A290054","Eubacterium coprostanoligenes"]]},{"id":"NCBITaxon:290847","l":"Helicobacter pylori 51","na":1,"nb":1,"a":[["Pfam%3APF10788","Protein of unknown function (DUF2603)"]],"b":[["NCBITaxon%3A290847","Helicobacter pylori 51"]]},{"id":"NCBITaxon:291195","l":"Tubulinosema ratisbonensis","na":1,"nb":1,"a":[["TED%3AAF-A0A437AH37-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A437AH37-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A291195","Tubulinosema ratisbonensis"]]},{"id":"NCBITaxon:29176","l":"Neospora caninum","na":1,"nb":1,"a":[["Pfam%3APF05084","Granule antigen protein (GRA6)"]],"b":[["NCBITaxon%3A29176","Neospora caninum"]]},{"id":"NCBITaxon:292415","l":"Thiobacillus denitrificans ATCC 25259","na":1,"nb":1,"a":[["Pfam%3APF06804","Outer membrane protein assembly factor BamC-like C-terminal domain"]],"b":[["NCBITaxon%3A292415","Thiobacillus denitrificans ATCC 25259"]]},{"id":"NCBITaxon:29313","l":"Mycobacterium shimoidei","na":1,"nb":1,"a":[["TED%3AAF-A0A1E3TGG0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1E3TGG0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29313","Mycobacterium shimoidei"]]},{"id":"NCBITaxon:29408","l":"Rhodoplanes elegans","na":1,"nb":1,"a":[["TED%3AAF-A0A327KTJ5-F1-model_v4_TED01","TED novel fold AF-A0A327KTJ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29408","Rhodoplanes elegans"]]},{"id":"NCBITaxon:29422","l":"Legionella brunensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0W0RZW2-F1-model_v4_TED03","TED novel fold AF-A0A0W0RZW2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A29422","Legionella brunensis"]]},{"id":"NCBITaxon:29443","l":"Paucimonas lemoignei","na":1,"nb":1,"a":[["TED%3AAF-A0A4R3HQA7-F1-model_v4_TED02","TED novel fold AF-A0A4R3HQA7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29443","Paucimonas lemoignei"]]},{"id":"NCBITaxon:29456","l":"Alteromonas sp. B-10-31","na":1,"nb":1,"a":[["Pfam%3APF12559","Serine endopeptidase inhibitors"]],"b":[["NCBITaxon%3A29456","Alteromonas sp. B-10-31"]]},{"id":"NCBITaxon:295108","l":"Candidatus Berkiella aquae","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q9YS56-F1-model_v4_TED01","TED novel fold AF-A0A0Q9YS56-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A295108","Candidatus Berkiella aquae"]]},{"id":"NCBITaxon:29529","l":"Chitinophaga arvensicola","na":1,"nb":1,"a":[["TED%3AAF-A0A1I0RVZ5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I0RVZ5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29529","Chitinophaga arvensicola"]]},{"id":"NCBITaxon:29539","l":"Thermoleophilum album","na":1,"nb":1,"a":[["TED%3AAF-A0A1H6FIV6-F1-model_v4_TED01","TED novel fold AF-A0A1H6FIV6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A29539","Thermoleophilum album"]]},{"id":"NCBITaxon:29553","l":"Mycoplasmopsis bovirhinis","na":1,"nb":1,"a":[["TED%3AAF-A0A224AXF9-F1-model_v4_TED02","TED novel fold AF-A0A224AXF9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29553","Mycoplasmopsis bovirhinis"]]},{"id":"NCBITaxon:29554","l":"Metamycoplasma canadense","na":1,"nb":1,"a":[["TED%3AAF-A0A077LB01-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A077LB01-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29554","Metamycoplasma canadense"]]},{"id":"NCBITaxon:29556","l":"Mycoplasmopsis gallinacea","na":1,"nb":1,"a":[["TED%3AAF-A0A449A3R6-F1-model_v4_TED02","TED novel fold AF-A0A449A3R6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A29556","Mycoplasmopsis gallinacea"]]},{"id":"NCBITaxon:295838","l":"Streptomyces rugosporus","na":1,"nb":1,"a":[["Pfam%3APF18678","Allene oxide cyclase barrel like domain"]],"b":[["NCBITaxon%3A295838","Streptomyces rugosporus"]]},{"id":"NCBITaxon:297246","l":"Legionella pneumophila str. Paris","na":1,"nb":1,"a":[["Pfam%3APF03445","Putative nucleotidyltransferase DUF294"]],"b":[["NCBITaxon%3A297246","Legionella pneumophila str. Paris"]]},{"id":"NCBITaxon:298386","l":"Photobacterium profundum SS9","na":1,"nb":1,"a":[["Pfam%3APF12558","ATP-binding cassette cobalt transporter"]],"b":[["NCBITaxon%3A298386","Photobacterium profundum SS9"]]},{"id":"NCBITaxon:298394","l":"uncultured Thiotrichaceae bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A6S6S720-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A6S6S720-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A298394","uncultured Thiotrichaceae bacterium"]]},{"id":"NCBITaxon:29875","l":"Trichoderma virens","na":1,"nb":1,"a":[["Pfam%3APF07249","Cerato-platanin"]],"b":[["NCBITaxon%3A29875","Trichoderma virens"]]},{"id":"NCBITaxon:298908","l":"Pseudomonas segetis","na":1,"nb":1,"a":[["TED%3AAF-A0A239C9B0-F1-model_v4_TED01","TED novel fold AF-A0A239C9B0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A298908","Pseudomonas segetis"]]},{"id":"NCBITaxon:300193","l":"Phyllobacterium trifolii","na":1,"nb":1,"a":[["TED%3AAF-A0A839U734-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A839U734-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A300193","Phyllobacterium trifolii"]]},{"id":"NCBITaxon:3005","l":"Sundstroemia setigera","na":1,"nb":1,"a":[["TED%3AAF-A0A7S0A1R6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S0A1R6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A3005","Sundstroemia setigera"]]},{"id":"NCBITaxon:301154","l":"Sphingomonas oligophenolica","na":1,"nb":1,"a":[["TED%3AAF-A0A502CIK8-F1-model_v4_TED02","TED novel fold AF-A0A502CIK8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A301154","Sphingomonas oligophenolica"]]},{"id":"NCBITaxon:302913","l":"Elsinoe ampelina","na":1,"nb":1,"a":[["TED%3AAF-A0A6A6G1T3-F1-model_v4_TED01","TED novel fold AF-A0A6A6G1T3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A302913","Elsinoe ampelina"]]},{"id":"NCBITaxon:304","l":"Roseateles saccharophilus","na":1,"nb":1,"a":[["Pfam%3APF09081","Glucan 1,4-alpha-maltotetraohydrolase, domain C"]],"b":[["NCBITaxon%3A304","Roseateles saccharophilus"]]},{"id":"NCBITaxon:310782","l":"Actinacidiphila paucisporea","na":1,"nb":1,"a":[["TED%3AAF-A0A1M7P1B4-F1-model_v4_TED01","TED novel fold AF-A0A1M7P1B4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A310782","Actinacidiphila paucisporea"]]},{"id":"NCBITaxon:311180","l":"Alloyangia pacifica","na":1,"nb":1,"a":[["TED%3AAF-A0A1I6PGV3-F1-model_v4_TED01","TED novel fold AF-A0A1I6PGV3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A311180","Alloyangia pacifica"]]},{"id":"NCBITaxon:311410","l":"Roseibium album","na":1,"nb":1,"a":[["TED%3AAF-A0A0M6YT48-F1-model_v4_TED01","TED novel fold AF-A0A0M6YT48-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A311410","Roseibium album"]]},{"id":"NCBITaxon:311424","l":"Dehalococcoides mccartyi VS","na":1,"nb":1,"a":[["Pfam%3APF13486","Reductive dehalogenase subunit"]],"b":[["NCBITaxon%3A311424","Dehalococcoides mccartyi VS"]]},{"id":"NCBITaxon:312253","l":"Bradyrhizobium tropiciagri","na":1,"nb":1,"a":[["Pfam%3APF26164","Bacterial Gasdermin Family"]],"b":[["NCBITaxon%3A312253","Bradyrhizobium tropiciagri"]]},{"id":"NCBITaxon:31271","l":"Plasmodium chabaudi chabaudi","na":1,"nb":1,"a":[["TED%3AAF-A0A1C6YTY0-F1-model_v4_TED03","TED novel fold AF-A0A1C6YTY0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A31271","Plasmodium chabaudi chabaudi"]]},{"id":"NCBITaxon:313589","l":"Janibacter sp. HTCC2649","na":1,"nb":1,"a":[["TED%3AAF-A3TKC7-F1-model_v4_TED01","TED novel fold AF-A3TKC7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A313589","Janibacter sp. HTCC2649"]]},{"id":"NCBITaxon:314225","l":"Erythrobacter litoralis HTCC2594","na":1,"nb":1,"a":[["Pfam%3APF03445","Putative nucleotidyltransferase DUF294"]],"b":[["NCBITaxon%3A314225","Erythrobacter litoralis HTCC2594"]]},{"id":"NCBITaxon:314237","l":"Paramesorhizobium leguminum","na":1,"nb":1,"a":[["TED%3AAF-A0A318T1W1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A318T1W1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A314237","Paramesorhizobium leguminum"]]},{"id":"NCBITaxon:314279","l":"Nitrosococcus oceani C-27","na":1,"nb":1,"a":[["TED%3AAF-A0A0E2YXI3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0E2YXI3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A314279","Nitrosococcus oceani C-27"]]},{"id":"NCBITaxon:314283","l":"Reinekea blandensis MED297","na":1,"nb":1,"a":[["TED%3AAF-A4BH14-F1-model_v4_TED01","TED highly-symmetric fold AF-A4BH14-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A314283","Reinekea blandensis MED297"]]},{"id":"NCBITaxon:315750","l":"Bacillus pumilus SAFR-032","na":1,"nb":1,"a":[["Pfam%3APF06569","Protein of unknown function (DUF1128)"]],"b":[["NCBITaxon%3A315750","Bacillus pumilus SAFR-032"]]},{"id":"NCBITaxon:316058","l":"Rhodopseudomonas palustris HaA2","na":1,"nb":1,"a":[["TED%3AAF-Q2IYC7-F1-model_v4_TED03","TED novel fold AF-Q2IYC7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A316058","Rhodopseudomonas palustris HaA2"]]},{"id":"NCBITaxon:316278","l":"Synechococcus sp. RCC307","na":1,"nb":1,"a":[["TED%3AAF-A5GRF4-F1-model_v4_TED02","TED highly-symmetric fold AF-A5GRF4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A316278","Synechococcus sp. RCC307"]]},{"id":"NCBITaxon:316385","l":"Escherichia coli str. K-12 substr. DH10B","na":1,"nb":1,"a":[["Pfam%3APF06392","Acid shock protein"]],"b":[["NCBITaxon%3A316385","Escherichia coli str. K-12 substr. DH10B"]]},{"id":"NCBITaxon:318456","l":"Photobacterium kishitanii","na":1,"nb":1,"a":[["TED%3AAF-A0A2T3R1R5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T3R1R5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A318456","Photobacterium kishitanii"]]},{"id":"NCBITaxon:31872","l":"Magnetospirillum sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A522WHT1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A522WHT1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A31872","Magnetospirillum sp."]]},{"id":"NCBITaxon:318751","l":"Westerdykella ornata","na":1,"nb":1,"a":[["TED%3AAF-A0A6A6JM44-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6A6JM44-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A318751","Westerdykella ornata"]]},{"id":"NCBITaxon:31944","l":"Corynebacterium sp. U-96","na":1,"nb":1,"a":[["Pfam%3APF12831","FAD dependent oxidoreductase"]],"b":[["NCBITaxon%3A31944","Corynebacterium sp. U-96"]]},{"id":"NCBITaxon:319701","l":"Streptococcus pyogenes MGAS6180","na":1,"nb":1,"a":[["Pfam%3APF13734","Spi protease inhibitor"]],"b":[["NCBITaxon%3A319701","Streptococcus pyogenes MGAS6180"]]},{"id":"NCBITaxon:31991","l":"Halomonas halodenitrificans ATCC 12084","na":1,"nb":1,"a":[["Pfam%3APF01355","High potential iron-sulfur protein"]],"b":[["NCBITaxon%3A31991","Halomonas halodenitrificans ATCC 12084"]]},{"id":"NCBITaxon:319939","l":"Metapseudomonas otitidis","na":1,"nb":1,"a":[["TED%3AAF-A0A6S5RS37-F1-model_v4_TED02","TED novel fold AF-A0A6S5RS37-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A319939","Metapseudomonas otitidis"]]},{"id":"NCBITaxon:320373","l":"Burkholderia pseudomallei 668","na":1,"nb":1,"a":[["Pfam%3APF21291","Cyanate hydratase, N-terminal"]],"b":[["NCBITaxon%3A320373","Burkholderia pseudomallei 668"]]},{"id":"NCBITaxon:320388","l":"Burkholderia mallei SAVP1","na":1,"nb":1,"a":[["Pfam%3APF27460","ATP phosphoribosyltransferase subunit HisZ C-terminal domain"]],"b":[["NCBITaxon%3A320388","Burkholderia mallei SAVP1"]]},{"id":"NCBITaxon:32043","l":"Pseudomonas sp. 'amyloderamosa'","na":1,"nb":1,"a":[["Pfam%3APF21331","Isoamylase, C-terminal"]],"b":[["NCBITaxon%3A32043","Pseudomonas sp. 'amyloderamosa'"]]},{"id":"NCBITaxon:320787","l":"Cyclobacterium amurskyense","na":1,"nb":1,"a":[["TED%3AAF-A0A0H4PRD2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0H4PRD2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A320787","Cyclobacterium amurskyense"]]},{"id":"NCBITaxon:321146","l":"Pseudocercospora eumusae","na":1,"nb":1,"a":[["TED%3AAF-A0A139HNA6-F1-model_v4_TED02","TED novel fold AF-A0A139HNA6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A321146","Pseudocercospora eumusae"]]},{"id":"NCBITaxon:321267","l":"Shimia marina","na":1,"nb":1,"a":[["TED%3AAF-A0A0P1EQT4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0P1EQT4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A321267","Shimia marina"]]},{"id":"NCBITaxon:321332","l":"Synechococcus sp. JA-2-3B'a(2-13)","na":1,"nb":1,"a":[["TED%3AAF-Q2JL60-F1-model_v4_TED01","TED highly-symmetric fold AF-Q2JL60-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A321332","Synechococcus sp. JA-2-3B'a(2-13)"]]},{"id":"NCBITaxon:321339","l":"Citreimonas salinaria","na":1,"nb":1,"a":[["TED%3AAF-A0A1H3NJK8-F1-model_v4_TED01","TED novel fold AF-A0A1H3NJK8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A321339","Citreimonas salinaria"]]},{"id":"NCBITaxon:321846","l":"Pseudomonas simiae","na":1,"nb":1,"a":[["TED%3AAF-A0A1N7UJF9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1N7UJF9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A321846","Pseudomonas simiae"]]},{"id":"NCBITaxon:321983","l":"Pseudoduganella albidiflava","na":1,"nb":1,"a":[["TED%3AAF-A0A411X2J1-F1-model_v4_TED01","TED novel fold AF-A0A411X2J1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A321983","Pseudoduganella albidiflava"]]},{"id":"NCBITaxon:321985","l":"Pseudoduganella lutea","na":1,"nb":1,"a":[["TED%3AAF-A0A4V0Z4E3-F1-model_v4_TED01","TED novel fold AF-A0A4V0Z4E3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A321985","Pseudoduganella lutea"]]},{"id":"NCBITaxon:324057","l":"Paenibacillus sp. JDR-2","na":1,"nb":1,"a":[["Pfam%3APF06452","Carbohydrate family 9 binding domain-like"]],"b":[["NCBITaxon%3A324057","Paenibacillus sp. JDR-2"]]},{"id":"NCBITaxon:324768","l":"Metabacillus idriensis","na":1,"nb":1,"a":[["TED%3AAF-A0A6I2MBD5-F1-model_v4_TED02","TED novel fold AF-A0A6I2MBD5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A324768","Metabacillus idriensis"]]},{"id":"NCBITaxon:324833","l":"Streptomyces lasalocidi","na":1,"nb":1,"a":[["TED%3AAF-A0A4U5W597-F1-model_v4_TED01","TED novel fold AF-A0A4U5W597-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A324833","Streptomyces lasalocidi"]]},{"id":"NCBITaxon:32595","l":"Babesia divergens","na":1,"nb":1,"a":[["Pfam%3APF11641","Glycosylphosphatidylinositol-anchored merozoite surface protein"]],"b":[["NCBITaxon%3A32595","Babesia divergens"]]},{"id":"NCBITaxon:326454","l":"Burkholderia sp. M701","na":1,"nb":1,"a":[["TED%3AAF-V5YP78-F1-model_v4_TED02","TED highly-symmetric fold AF-V5YP78-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A326454","Burkholderia sp. M701"]]},{"id":"NCBITaxon:329885","l":"Friedmanniomyces endolithicus","na":1,"nb":1,"a":[["TED%3AAF-A0A4U0UK33-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U0UK33-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A329885","Friedmanniomyces endolithicus"]]},{"id":"NCBITaxon:33053","l":"Neisseria perflava","na":1,"nb":1,"a":[["TED%3AAF-A0A2I1Y2M3-F1-model_v4_TED02","TED novel fold AF-A0A2I1Y2M3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A33053","Neisseria perflava"]]},{"id":"NCBITaxon:331271","l":"Burkholderia orbicola AU 1054","na":1,"nb":1,"a":[["Pfam%3APF02685","Glucokinase"]],"b":[["NCBITaxon%3A331271","Burkholderia orbicola AU 1054"]]},{"id":"NCBITaxon:331272","l":"Burkholderia cenocepacia HI2424","na":1,"nb":1,"a":[["Pfam%3APF02673","Bacitracin resistance protein BacA"]],"b":[["NCBITaxon%3A331272","Burkholderia cenocepacia HI2424"]]},{"id":"NCBITaxon:331657","l":"Cryomyces minteri","na":1,"nb":1,"a":[["TED%3AAF-A0A4U0X6C2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4U0X6C2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A331657","Cryomyces minteri"]]},{"id":"NCBITaxon:331677","l":"uncultured marine bacterium 66A03","na":1,"nb":1,"a":[["Pfam%3APF15461","Beta-carotene 15,15'-dioxygenase"]],"b":[["NCBITaxon%3A331677","uncultured marine bacterium 66A03"]]},{"id":"NCBITaxon:33203","l":"Purpureocillium lilacinum","na":1,"nb":1,"a":[["TED%3AAF-A0A2U3ENJ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2U3ENJ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A33203","Purpureocillium lilacinum"]]},{"id":"NCBITaxon:332175","l":"Desulfosalsimonas propionicica","na":1,"nb":1,"a":[["TED%3AAF-A0A7W0HJC5-F1-model_v4_TED03","TED novel fold AF-A0A7W0HJC5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A332175","Desulfosalsimonas propionicica"]]},{"id":"NCBITaxon:332524","l":"Actinomyces ruminicola","na":1,"nb":1,"a":[["TED%3AAF-A0A1G9TMB9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G9TMB9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A332524","Actinomyces ruminicola"]]},{"id":"NCBITaxon:334747","l":"Olavius algarvensis Delta 1 endosymbiont","na":1,"nb":1,"a":[["TED%3AAF-A0A6J4YGJ7-F1-model_v4_TED02","TED novel fold AF-A0A6J4YGJ7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A334747","Olavius algarvensis Delta 1 endosymbiont"]]},{"id":"NCBITaxon:335431","l":"Tepidimonas thermarum","na":1,"nb":1,"a":[["TED%3AAF-A0A554X0R3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A554X0R3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A335431","Tepidimonas thermarum"]]},{"id":"NCBITaxon:335541","l":"Syntrophomonas wolfei subsp. wolfei str. Goettingen G311","na":1,"nb":1,"a":[["TED%3AAF-Q0AVF9-F1-model_v4_TED01","TED novel fold AF-Q0AVF9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A335541","Syntrophomonas wolfei subsp. wolfei str. Goettingen G311"]]},{"id":"NCBITaxon:335975","l":"Sulfitobacter litoralis","na":1,"nb":1,"a":[["TED%3AAF-A0A7V1BHU1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7V1BHU1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A335975","Sulfitobacter litoralis"]]},{"id":"NCBITaxon:339670","l":"Burkholderia ambifaria AMMD","na":1,"nb":1,"a":[["Pfam%3APF11004","3-deoxy-D-manno-oct-2-ulosonic acid (Kdo) hydroxylase"]],"b":[["NCBITaxon%3A339670","Burkholderia ambifaria AMMD"]]},{"id":"NCBITaxon:33977","l":"Caryophanon latum","na":1,"nb":1,"a":[["TED%3AAF-A0A1C0YYY7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1C0YYY7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A33977","Caryophanon latum"]]},{"id":"NCBITaxon:34002","l":"Paracoccus alcaliphilus","na":1,"nb":1,"a":[["TED%3AAF-A0A1H8HHY3-F1-model_v4_TED02","TED novel fold AF-A0A1H8HHY3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A34002","Paracoccus alcaliphilus"]]},{"id":"NCBITaxon:34007","l":"Paracoccus versutus","na":1,"nb":1,"a":[["Pfam%3APF06433","Methylamine dehydrogenase heavy chain (MADH)"]],"b":[["NCBITaxon%3A34007","Paracoccus versutus"]]},{"id":"NCBITaxon:34028","l":"Comamonas sp.","na":1,"nb":1,"a":[["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"]],"b":[["NCBITaxon%3A34028","Comamonas sp."]]},{"id":"NCBITaxon:340345","l":"Actinoalloteichus hymeniacidonis","na":1,"nb":1,"a":[["TED%3AAF-A0A7W9UEM7-F1-model_v4_TED01","TED novel fold AF-A0A7W9UEM7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A340345","Actinoalloteichus hymeniacidonis"]]},{"id":"NCBITaxon:34095","l":"Borreliella japonica","na":1,"nb":1,"a":[["Pfam%3APF17044","Borrelial persistence in ticks protein A"]],"b":[["NCBITaxon%3A34095","Borreliella japonica"]]},{"id":"NCBITaxon:34097","l":"Brevinema andersonii","na":1,"nb":1,"a":[["TED%3AAF-A0A1I1E5H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I1E5H4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A34097","Brevinema andersonii"]]},{"id":"NCBITaxon:341454","l":"Ascodesmis nigricans","na":1,"nb":1,"a":[["TED%3AAF-A0A4S2MVE6-F1-model_v4_TED02","TED novel fold AF-A0A4S2MVE6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A341454","Ascodesmis nigricans"]]},{"id":"NCBITaxon:342002","l":"Mycolicibacter arupensis","na":1,"nb":1,"a":[["TED%3AAF-A0A5C7Y8M2-F1-model_v4_TED01","TED novel fold AF-A0A5C7Y8M2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A342002","Mycolicibacter arupensis"]]},{"id":"NCBITaxon:342109","l":"Xanthomonas oryzae pv. oryzae MAFF 311018","na":1,"nb":1,"a":[["Pfam%3APF04977","Septum formation initiator"]],"b":[["NCBITaxon%3A342109","Xanthomonas oryzae pv. oryzae MAFF 311018"]]},{"id":"NCBITaxon:342668","l":"Pseudogymnoascus verrucosus","na":1,"nb":1,"a":[["TED%3AAF-A0A1B8GR16-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1B8GR16-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A342668","Pseudogymnoascus verrucosus"]]},{"id":"NCBITaxon:342949","l":"Pyrococcus sp. NA2","na":1,"nb":1,"a":[["TED%3AAF-F4HI69-F1-model_v4_TED02","TED highly-symmetric fold AF-F4HI69-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A342949","Pyrococcus sp. NA2"]]},{"id":"NCBITaxon:342955","l":"Lacinutrix mariniflava","na":1,"nb":1,"a":[["Pfam%3APF13189","Cytidylate kinase-like family"]],"b":[["NCBITaxon%3A342955","Lacinutrix mariniflava"]]},{"id":"NCBITaxon:343509","l":"Sodalis glossinidius str. 'morsitans'","na":1,"nb":1,"a":[["Pfam%3APF04345","Chorismate lyase"]],"b":[["NCBITaxon%3A343509","Sodalis glossinidius str. 'morsitans'"]]},{"id":"NCBITaxon:345309","l":"Luteibacter yeojuensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0F3L280-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0F3L280-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A345309","Luteibacter yeojuensis"]]},{"id":"NCBITaxon:345341","l":"Kutzneria sp. 744","na":1,"nb":1,"a":[["TED%3AAF-W7SU68-F1-model_v4_TED01","TED novel fold AF-W7SU68-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A345341","Kutzneria sp. 744"]]},{"id":"NCBITaxon:345631","l":"Geobacter argillaceus","na":1,"nb":1,"a":[["TED%3AAF-A0A562VM24-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A562VM24-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A345631","Geobacter argillaceus"]]},{"id":"NCBITaxon:346185","l":"Flagellimonas eckloniae","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q1BKA9-F1-model_v4_TED02","TED novel fold AF-A0A0Q1BKA9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A346185","Flagellimonas eckloniae"]]},{"id":"NCBITaxon:347209","l":"Arthrobacter sp. J3.40","na":1,"nb":1,"a":[["TED%3AAF-I3W1F3-F1-model_v4_TED01","TED novel fold AF-I3W1F3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A347209","Arthrobacter sp. J3.40"]]},{"id":"NCBITaxon:348151","l":"Furfurilactobacillus siliginis","na":1,"nb":1,"a":[["TED%3AAF-A0A0R2L6V8-F1-model_v4_TED02","TED novel fold AF-A0A0R2L6V8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A348151","Furfurilactobacillus siliginis"]]},{"id":"NCBITaxon:348826","l":"Natronorubrum aibiense","na":1,"nb":1,"a":[["TED%3AAF-A0A5P9P2A0-F1-model_v4_TED01","TED novel fold AF-A0A5P9P2A0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A348826","Natronorubrum aibiense"]]},{"id":"NCBITaxon:349746","l":"Yersinia pestis Angola","na":1,"nb":1,"a":[["Pfam%3APF03974","Ecotin"]],"b":[["NCBITaxon%3A349746","Yersinia pestis Angola"]]},{"id":"NCBITaxon:351659","l":"Xenorhabdus koppenhoeferi","na":1,"nb":1,"a":[["TED%3AAF-A0A1I7KAB7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1I7KAB7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A351659","Xenorhabdus koppenhoeferi"]]},{"id":"NCBITaxon:354243","l":"Mycolicibacter kumamotonensis","na":1,"nb":1,"a":[["TED%3AAF-A0A7K3LH87-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7K3LH87-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A354243","Mycolicibacter kumamotonensis"]]},{"id":"NCBITaxon:355243","l":"Amphritea atlantica","na":1,"nb":1,"a":[["TED%3AAF-A0A1H9MBM2-F1-model_v4_TED01","TED novel fold AF-A0A1H9MBM2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A355243","Amphritea atlantica"]]},{"id":"NCBITaxon:35623","l":"Acholeplasma oculi","na":1,"nb":1,"a":[["TED%3AAF-A0A061AIF7-F1-model_v4_TED03","TED novel fold AF-A0A061AIF7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A35623","Acholeplasma oculi"]]},{"id":"NCBITaxon:356305","l":"Chryseobacterium wanjuense","na":1,"nb":1,"a":[["TED%3AAF-A0A1I0RKT6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I0RKT6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A356305","Chryseobacterium wanjuense"]]},{"id":"NCBITaxon:357244","l":"Orientia tsutsugamushi str. Boryong","na":1,"nb":1,"a":[["Pfam%3APF01745","Isopentenyl transferase"]],"b":[["NCBITaxon%3A357244","Orientia tsutsugamushi str. Boryong"]]},{"id":"NCBITaxon:357348","l":"Burkholderia pseudomallei 1106a","na":1,"nb":1,"a":[["Pfam%3APF01958","Aspartate dehydrogenase, C-terminal"]],"b":[["NCBITaxon%3A357348","Burkholderia pseudomallei 1106a"]]},{"id":"NCBITaxon:357385","l":"Paenibacillus sp. F4","na":1,"nb":1,"a":[["TED%3AAF-A0A2K1ENT1-F1-model_v4_TED01","TED novel fold AF-A0A2K1ENT1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A357385","Paenibacillus sp. F4"]]},{"id":"NCBITaxon:35752","l":"Actinoplanes philippinensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1I2HI82-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I2HI82-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A35752","Actinoplanes philippinensis"]]},{"id":"NCBITaxon:35759","l":"Streptomyces sp. (strain R2075)","na":1,"nb":1,"a":[["Pfam%3APF19398","Lantibiotic duramycin B-like"]],"b":[["NCBITaxon%3A35759","Streptomyces sp. (strain R2075)"]]},{"id":"NCBITaxon:35764","l":"Streptosporangium nondiastaticum","na":1,"nb":1,"a":[["TED%3AAF-A0A2P7PWM4-F1-model_v4_TED01","TED novel fold AF-A0A2P7PWM4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A35764","Streptosporangium nondiastaticum"]]},{"id":"NCBITaxon:35816","l":"Pelobacter acidigallici","na":1,"nb":1,"a":[["Pfam%3APF21423","Pyrogallol hydroxytransferase large subunit-like, domain 1"]],"b":[["NCBITaxon%3A35816","Pelobacter acidigallici"]]},{"id":"NCBITaxon:360094","l":"Xanthomonas oryzae pv. oryzae PXO99A","na":1,"nb":1,"a":[["Pfam%3APF03377","TAL effector repeat"]],"b":[["NCBITaxon%3A360094","Xanthomonas oryzae pv. oryzae PXO99A"]]},{"id":"NCBITaxon:360106","l":"Campylobacter fetus subsp. fetus 82-40","na":1,"nb":1,"a":[["Pfam%3APF10788","Protein of unknown function (DUF2603)"]],"b":[["NCBITaxon%3A360106","Campylobacter fetus subsp. fetus 82-40"]]},{"id":"NCBITaxon:36022","l":"Petasospora fabianii","na":1,"nb":1,"a":[["TED%3AAF-A0A1V2L1Y2-F1-model_v4_TED02","TED novel fold AF-A0A1V2L1Y2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A36022","Petasospora fabianii"]]},{"id":"NCBITaxon:360412","l":"Longilinea arvoryzae","na":1,"nb":1,"a":[["TED%3AAF-A0A0S7BD54-F1-model_v4_TED02","TED novel fold AF-A0A0S7BD54-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A360412","Longilinea arvoryzae"]]},{"id":"NCBITaxon:36050","l":"Fusarium poae","na":1,"nb":1,"a":[["TED%3AAF-A0A1B8B0N0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1B8B0N0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A36050","Fusarium poae"]]},{"id":"NCBITaxon:36056","l":"Boletus edulis","na":1,"nb":1,"a":[["Pfam%3APF07367","Fungal fruit body lectin"]],"b":[["NCBITaxon%3A36056","Boletus edulis"]]},{"id":"NCBITaxon:360911","l":"Exiguobacterium sp. AT1b","na":1,"nb":1,"a":[["TED%3AAF-C4L6T8-F1-model_v4_TED04","TED highly-symmetric fold AF-C4L6T8-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A360911","Exiguobacterium sp. AT1b"]]},{"id":"NCBITaxon:360921","l":"Pseudomonas savastanoi pv. nerii","na":1,"nb":1,"a":[["TED%3AAF-A0A0N8SCT2-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A0N8SCT2-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A360921","Pseudomonas savastanoi pv. nerii"]]},{"id":"NCBITaxon:362257","l":"Streptomyces vietnamensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0B5IE19-F1-model_v4_TED01","TED novel fold AF-A0A0B5IE19-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A362257","Streptomyces vietnamensis"]]},{"id":"NCBITaxon:362649","l":"Microbacterium thalassium","na":1,"nb":1,"a":[["TED%3AAF-A0A7X0KUL1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X0KUL1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A362649","Microbacterium thalassium"]]},{"id":"NCBITaxon:362837","l":"Spiroplasma cantharicola","na":1,"nb":1,"a":[["TED%3AAF-A0A0M5KEJ6-F1-model_v4_TED03","TED novel fold AF-A0A0M5KEJ6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A362837","Spiroplasma cantharicola"]]},{"id":"NCBITaxon:363253","l":"Lawsonia intracellularis PHE/MN1-00","na":1,"nb":1,"a":[["TED%3AAF-Q1MSC4-F1-model_v4_TED02","TED highly-symmetric fold AF-Q1MSC4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A363253","Lawsonia intracellularis PHE/MN1-00"]]},{"id":"NCBITaxon:363837","l":"Chitinophaga ginsengisoli","na":1,"nb":1,"a":[["TED%3AAF-A0A2P8FDY3-F1-model_v4_TED01","TED novel fold AF-A0A2P8FDY3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A363837","Chitinophaga ginsengisoli"]]},{"id":"NCBITaxon:365340","l":"Rhodovulum imhoffii","na":1,"nb":1,"a":[["TED%3AAF-A0A2T5BVE1-F1-model_v4_TED01","TED novel fold AF-A0A2T5BVE1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A365340","Rhodovulum imhoffii"]]},{"id":"NCBITaxon:365591","l":"Shewanella morhuae","na":1,"nb":1,"a":[["TED%3AAF-A0A380A628-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A380A628-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A365591","Shewanella morhuae"]]},{"id":"NCBITaxon:366394","l":"Sinorhizobium medicae WSM419","na":1,"nb":1,"a":[["Pfam%3APF05128","Domain of unknown function (DUF697)"]],"b":[["NCBITaxon%3A366394","Sinorhizobium medicae WSM419"]]},{"id":"NCBITaxon:36824","l":"Bacillus sp. TB-90","na":1,"nb":1,"a":[["Pfam%3APF13386","Cytochrome C biogenesis protein transmembrane region"]],"b":[["NCBITaxon%3A36824","Bacillus sp. TB-90"]]},{"id":"NCBITaxon:368607","l":"Janthinobacterium svalbardense","na":1,"nb":1,"a":[["TED%3AAF-A0A290WWL9-F1-model_v4_TED02","TED novel fold AF-A0A290WWL9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A368607","Janthinobacterium svalbardense"]]},{"id":"NCBITaxon:369932","l":"Amycolatopsis niigatensis","na":1,"nb":1,"a":[["TED%3AAF-A0A2N3X0E8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3X0E8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A2576905","Amycolatopsis echigonensis"]]},{"id":"NCBITaxon:370554","l":"Streptococcus pyogenes MGAS10750","na":1,"nb":1,"a":[["Pfam%3APF04260","Protein of unknown function (DUF436)"]],"b":[["NCBITaxon%3A370554","Streptococcus pyogenes MGAS10750"]]},{"id":"NCBITaxon:370959","l":"Sphingomonas mucosissima","na":1,"nb":1,"a":[["TED%3AAF-A0A245ZPX4-F1-model_v4_TED03","TED novel fold AF-A0A245ZPX4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A370959","Sphingomonas mucosissima"]]},{"id":"NCBITaxon:372484","l":"Sanguibacter antarcticus","na":1,"nb":1,"a":[["TED%3AAF-A0A2A9E4K5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A9E4K5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A372484","Sanguibacter antarcticus"]]},{"id":"NCBITaxon:37360","l":"Plasmodiophora brassicae","na":1,"nb":1,"a":[["TED%3AAF-A0A0G4IW71-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0G4IW71-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A37360","Plasmodiophora brassicae"]]},{"id":"NCBITaxon:373672","l":"Chryseobacterium gambrini","na":1,"nb":1,"a":[["TED%3AAF-A0A1N7P9B3-F1-model_v4_TED02","TED novel fold AF-A0A1N7P9B3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A373672","Chryseobacterium gambrini"]]},{"id":"NCBITaxon:375063","l":"Haemophilus influenzae 22.4-21","na":1,"nb":1,"a":[["TED%3AAF-A4NYM7-F1-model_v4_TED02","TED novel fold AF-A4NYM7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A375063","Haemophilus influenzae 22.4-21"]]},{"id":"NCBITaxon:375177","l":"Haemophilus influenzae 3655","na":1,"nb":1,"a":[["Pfam%3APF16747","Surface-adhesin protein E"]],"b":[["NCBITaxon%3A375177","Haemophilus influenzae 3655"]]},{"id":"NCBITaxon:375926","l":"Helicobacter anseris","na":1,"nb":1,"a":[["TED%3AAF-A0A3D8J1W2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3D8J1W2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A375926","Helicobacter anseris"]]},{"id":"NCBITaxon:375927","l":"Helicobacter brantae","na":1,"nb":1,"a":[["TED%3AAF-A0A3D8J4Q3-F1-model_v4_TED02","TED novel fold AF-A0A3D8J4Q3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A375927","Helicobacter brantae"]]},{"id":"NCBITaxon:37628","l":"Mollicutes bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A7X6SHQ2-F1-model_v4_TED03","TED novel fold AF-A0A7X6SHQ2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A37628","Mollicutes bacterium"]]},{"id":"NCBITaxon:37727","l":"Talaromyces marneffei","na":1,"nb":1,"a":[["Pfam%3APF12296","Hydrophobic surface binding protein A"]],"b":[["NCBITaxon%3A37727","Talaromyces marneffei"]]},{"id":"NCBITaxon:377621","l":"Planococcus sp. L4","na":1,"nb":1,"a":[["Pfam%3APF08533","Beta-galactosidase C-terminal domain"]],"b":[["NCBITaxon%3A377621","Planococcus sp. L4"]]},{"id":"NCBITaxon:378543","l":"Tumebacillus permanentifrigoris","na":1,"nb":1,"a":[["TED%3AAF-A0A316DIT3-F1-model_v4_TED01","TED novel fold AF-A0A316DIT3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A378543","Tumebacillus permanentifrigoris"]]},{"id":"NCBITaxon:37929","l":"Glutamicibacter nicotianae","na":1,"nb":1,"a":[["Pfam%3APF16701","Adenylate cyclase regulatory domain"]],"b":[["NCBITaxon%3A37929","Glutamicibacter nicotianae"]]},{"id":"NCBITaxon:380244","l":"Glycomyces sambucus","na":1,"nb":1,"a":[["TED%3AAF-A0A1G9J2V2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G9J2V2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A380244","Glycomyces sambucus"]]},{"id":"NCBITaxon:380704","l":"Aspergillus niger ATCC 1015","na":1,"nb":1,"a":[["Pfam%3APF28387","BfoA N-terminal domain"]],"b":[["NCBITaxon%3A380704","Aspergillus niger ATCC 1015"]]},{"id":"NCBITaxon:381308","l":"Thiohalophilus thiocyanatoxydans","na":1,"nb":1,"a":[["TED%3AAF-A0A4R8ITD7-F1-model_v4_TED01","TED novel fold AF-A0A4R8ITD7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A381308","Thiohalophilus thiocyanatoxydans"]]},{"id":"NCBITaxon:381754","l":"Pseudomonas paraeruginosa PA7","na":1,"nb":1,"a":[["Pfam%3APF05985","Ethanolamine ammonia-lyase light chain (EutC)"]],"b":[["NCBITaxon%3A381754","Pseudomonas paraeruginosa PA7"]]},{"id":"NCBITaxon:381802","l":"Brachyspira suanatina","na":1,"nb":1,"a":[["TED%3AAF-A0A0G4K4I9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0G4K4I9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A381802","Brachyspira suanatina"]]},{"id":"NCBITaxon:382514","l":"Telmatospirillum siberiense","na":1,"nb":1,"a":[["TED%3AAF-A0A2N3PPB2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3PPB2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A382514","Telmatospirillum siberiense"]]},{"id":"NCBITaxon:383750","l":"Marinomonas arctica","na":1,"nb":1,"a":[["TED%3AAF-A0A7H1J8T9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7H1J8T9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A383750","Marinomonas arctica"]]},{"id":"NCBITaxon:383855","l":"Pseudocercospora fijiensis CIRAD86","na":1,"nb":1,"a":[["TED%3AAF-M3AXZ2-F1-model_v4_TED01","TED novel fold AF-M3AXZ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A383855","Pseudocercospora fijiensis CIRAD86"]]},{"id":"NCBITaxon:383911","l":"Pseudoalteromonas sp. BSi20311","na":1,"nb":1,"a":[["TED%3AAF-G7EV99-F1-model_v4_TED02","TED highly-symmetric fold AF-G7EV99-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A383911","Pseudoalteromonas sp. BSi20311"]]},{"id":"NCBITaxon:38457","l":"Monilinia fructigena","na":1,"nb":1,"a":[["TED%3AAF-A0A395IK50-F1-model_v4_TED01","TED novel fold AF-A0A395IK50-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A38457","Monilinia fructigena"]]},{"id":"NCBITaxon:385957","l":"Amycolatopsis sp. ATCC 39116","na":1,"nb":1,"a":[["Pfam%3APF21105","DyP dimeric alpha+beta barrel domain"]],"b":[["NCBITaxon%3A385957","Amycolatopsis sp. ATCC 39116"]]},{"id":"NCBITaxon:387957","l":"Methanobrevibacter sp. 87.7","na":1,"nb":1,"a":[["TED%3AAF-A0A219AM20-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A219AM20-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A387957","Methanobrevibacter sp. 87.7"]]},{"id":"NCBITaxon:388278","l":"Photobacterium lutimaris","na":1,"nb":1,"a":[["TED%3AAF-A0A2T3ITP8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T3ITP8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A388278","Photobacterium lutimaris"]]},{"id":"NCBITaxon:388280","l":"Cyclobacterium lianum","na":1,"nb":1,"a":[["TED%3AAF-A0A1M7NTJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M7NTJ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A388280","Cyclobacterium lianum"]]},{"id":"NCBITaxon:388396","l":"Aliivibrio fischeri MJ11","na":1,"nb":1,"a":[["Pfam%3APF21868","GlcNAc-binding protein A, third domain"]],"b":[["NCBITaxon%3A388396","Aliivibrio fischeri MJ11"]]},{"id":"NCBITaxon:389348","l":"Candidatus Protochlamydia naegleriophila","na":1,"nb":1,"a":[["TED%3AAF-A0A0U5J6J4-F1-model_v4_TED01","TED novel fold AF-A0A0U5J6J4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A389348","Candidatus Protochlamydia naegleriophila"]]},{"id":"NCBITaxon:38945","l":"Flammulina velutipes","na":1,"nb":1,"a":[["Pfam%3APF09259","Fungal immunomodulatory protein Fve"]],"b":[["NCBITaxon%3A38945","Flammulina velutipes"]]},{"id":"NCBITaxon:390640","l":"Salinimicrobium catena","na":1,"nb":1,"a":[["TED%3AAF-A0A1H5N3E6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H5N3E6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A390640","Salinimicrobium catena"]]},{"id":"NCBITaxon:390989","l":"Actinocatenispora sera","na":1,"nb":1,"a":[["TED%3AAF-A0A810L9K2-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A810L9K2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A390989","Actinocatenispora sera"]]},{"id":"NCBITaxon:391","l":"Rhizobium sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A353G134-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A353G134-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A391","Rhizobium sp."]]},{"id":"NCBITaxon:391037","l":"Salinispora arenicola CNS-205","na":1,"nb":1,"a":[["Pfam%3APF12072","RNase Y N-terminal region"]],"b":[["NCBITaxon%3A391037","Salinispora arenicola CNS-205"]]},{"id":"NCBITaxon:391295","l":"Streptococcus suis 05ZYH33","na":1,"nb":1,"a":[["Pfam%3APF06160","Septation ring formation regulator, EzrA"]],"b":[["NCBITaxon%3A391295","Streptococcus suis 05ZYH33"]]},{"id":"NCBITaxon:391296","l":"Streptococcus suis 98HAH33","na":1,"nb":1,"a":[["Pfam%3APF06949","Protein of unknown function (DUF1292)"]],"b":[["NCBITaxon%3A391296","Streptococcus suis 98HAH33"]]},{"id":"NCBITaxon:391598","l":"Flavobacteria bacterium BAL38","na":1,"nb":1,"a":[["TED%3AAF-A3J071-F1-model_v4_TED02","TED novel fold AF-A3J071-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A391598","Flavobacteria bacterium BAL38"]]},{"id":"NCBITaxon:391612","l":"Crocosphaera chwakensis CCY0110","na":1,"nb":1,"a":[["TED%3AAF-A3ILV2-F1-model_v4_TED01","TED highly-symmetric fold AF-A3ILV2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A391612","Crocosphaera chwakensis CCY0110"]]},{"id":"NCBITaxon:391905","l":"Methylocystis heyeri","na":1,"nb":1,"a":[["TED%3AAF-A0A6B8KKQ2-F1-model_v4_TED02","TED novel fold AF-A0A6B8KKQ2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A391905","Methylocystis heyeri"]]},{"id":"NCBITaxon:392421","l":"Natrinema hispanicum","na":1,"nb":1,"a":[["TED%3AAF-A0A482YFG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A482YFG8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A392421","Natrinema hispanicum"]]},{"id":"NCBITaxon:392547","l":"Candidatus Brocadia sapporoensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6M2Y0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1V6M2Y0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A392547","Candidatus Brocadia sapporoensis"]]},{"id":"NCBITaxon:393763","l":"Anaerobacillus alkalilacustris","na":1,"nb":1,"a":[["TED%3AAF-A0A1S2LYP0-F1-model_v4_TED02","TED novel fold AF-A0A1S2LYP0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A393763","Anaerobacillus alkalilacustris"]]},{"id":"NCBITaxon:39495","l":"Eubacterium uniforme","na":1,"nb":1,"a":[["TED%3AAF-A0A1T4W9S3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1T4W9S3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A39495","Eubacterium uniforme"]]},{"id":"NCBITaxon:395933","l":"Chryseobacterium lathyri","na":1,"nb":1,"a":[["TED%3AAF-A0A511Y8C1-F1-model_v4_TED04","TED novel fold AF-A0A511Y8C1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A395933","Chryseobacterium lathyri"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["Pfam%3APF13282","Domain of unknown function (DUF4070)"]],"b":[["NCBITaxon%3A395960","Rhodopseudomonas palustris TIE-1"]]},{"id":"NCBITaxon:395961","l":"Cyanothece sp. PCC 7425","na":1,"nb":1,"a":[["TED%3AAF-B8HKH7-F1-model_v4_TED01","TED highly-symmetric fold AF-B8HKH7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A395961","Cyanothece sp. PCC 7425"]]},{"id":"NCBITaxon:396013","l":"Pseudooceanicola marinus","na":1,"nb":1,"a":[["TED%3AAF-A0A1X6YM17-F1-model_v4_TED03","TED novel fold AF-A0A1X6YM17-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A396013","Pseudooceanicola marinus"]]},{"id":"NCBITaxon:396513","l":"Staphylococcus carnosus subsp. carnosus TM300","na":1,"nb":1,"a":[["Pfam%3APF03123","CAT RNA binding domain"]],"b":[["NCBITaxon%3A396513","Staphylococcus carnosus subsp. carnosus TM300"]]},{"id":"NCBITaxon:39769","l":"Methylococcus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A3N9V7U0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N9V7U0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A39769","Methylococcus sp."]]},{"id":"NCBITaxon:398673","l":"Trichoderma gamsii","na":1,"nb":1,"a":[["TED%3AAF-A0A2K0TA12-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2K0TA12-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A398673","Trichoderma gamsii"]]},{"id":"NCBITaxon:399497","l":"Tessaracoccus flavescens","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q2CX18-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q2CX18-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A399497","Tessaracoccus flavescens"]]},{"id":"NCBITaxon:40001","l":"Cellulomonas sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y0H2X6-F1-model_v4_TED01","TED novel fold AF-A0A7Y0H2X6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A40001","Cellulomonas sp."]]},{"id":"NCBITaxon:400673","l":"Legionella pneumophila str. Corby","na":1,"nb":1,"a":[["Pfam%3APF03445","Putative nucleotidyltransferase DUF294"]],"b":[["NCBITaxon%3A400673","Legionella pneumophila str. Corby"]]},{"id":"NCBITaxon:400777","l":"Paenibacillus ginsengarvi","na":1,"nb":1,"a":[["TED%3AAF-A0A3B0CDW4-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A3B0CDW4-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A400777","Paenibacillus ginsengarvi"]]},{"id":"NCBITaxon:401471","l":"Neoundibacterium parvum","na":1,"nb":1,"a":[["TED%3AAF-A0A3S9HIB2-F1-model_v4_TED01","TED novel fold AF-A0A3S9HIB2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A401471","Neoundibacterium parvum"]]},{"id":"NCBITaxon:402882","l":"Shewanella baltica OS185","na":1,"nb":1,"a":[["Pfam%3APF09829","Uncharacterized protein conserved in bacteria (DUF2057)"]],"b":[["NCBITaxon%3A402882","Shewanella baltica OS185"]]},{"id":"NCBITaxon:403776","l":"Sphingobacterium sp. PM2-P1-29","na":1,"nb":1,"a":[["TED%3AAF-A0A077XLJ2-F1-model_v4_TED04","TED novel fold AF-A0A077XLJ2-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A403776","Sphingobacterium sp. PM2-P1-29"]]},{"id":"NCBITaxon:404881","l":"Albidovulum denitrificans","na":1,"nb":1,"a":[["TED%3AAF-A0A2S8SDZ8-F1-model_v4_TED03","TED novel fold AF-A0A2S8SDZ8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A404881","Albidovulum denitrificans"]]},{"id":"NCBITaxon:405440","l":"Xylella fastidiosa M12","na":1,"nb":1,"a":[["Pfam%3APF04977","Septum formation initiator"]],"b":[["NCBITaxon%3A405440","Xylella fastidiosa M12"]]},{"id":"NCBITaxon:405532","l":"Bacillus cereus B4264","na":1,"nb":1,"a":[["Pfam%3APF09021","HutP"]],"b":[["NCBITaxon%3A405532","Bacillus cereus B4264"]]},{"id":"NCBITaxon:405535","l":"Bacillus cereus AH820","na":1,"nb":1,"a":[["Pfam%3APF10087","Uncharacterized protein conserved in bacteria (DUF2325)"]],"b":[["NCBITaxon%3A405535","Bacillus cereus AH820"]]},{"id":"NCBITaxon:405555","l":"Haloactinospora alba","na":1,"nb":1,"a":[["TED%3AAF-A0A543NJX9-F1-model_v4_TED03","TED novel fold AF-A0A543NJX9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A405555","Haloactinospora alba"]]},{"id":"NCBITaxon:41047","l":"Aspergillus thermomutatus","na":1,"nb":1,"a":[["Pfam%3APF28486","AnkG N-terminal domain"]],"b":[["NCBITaxon%3A41047","Aspergillus thermomutatus"]]},{"id":"NCBITaxon:41067","l":"Aspergillus candidus","na":1,"nb":1,"a":[["TED%3AAF-A0A2I2EZ62-F1-model_v4_TED02","TED novel fold AF-A0A2I2EZ62-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A41067","Aspergillus candidus"]]},{"id":"NCBITaxon:411486","l":"Clostridium sp. M62/1","na":1,"nb":1,"a":[["TED%3AAF-D4CA03-F1-model_v4_TED02","TED novel fold AF-D4CA03-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A411486","Clostridium sp. M62/1"]]},{"id":"NCBITaxon:41211","l":"Desulfotomaculum sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A356UJQ3-F1-model_v4_TED01","TED novel fold AF-A0A356UJQ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A41211","Desulfotomaculum sp."]]},{"id":"NCBITaxon:412955","l":"Pseudomonas sp. SCT","na":1,"nb":1,"a":[["Pfam%3APF03150","Di-haem cytochrome c peroxidase"]],"b":[["NCBITaxon%3A412955","Pseudomonas sp. SCT"]]},{"id":"NCBITaxon:413404","l":"Candidatus Ruthia magnifica str. Cm (Calyptogena magnifica)","na":1,"nb":1,"a":[["Pfam%3APF04359","Protein of unknown function (DUF493)"]],"b":[["NCBITaxon%3A413404","Candidatus Ruthia magnifica str. Cm (Calyptogena magnifica)"]]},{"id":"NCBITaxon:413434","l":"Sediminibacterium ginsengisoli","na":1,"nb":1,"a":[["TED%3AAF-A0A1T4NZ26-F1-model_v4_TED01","TED novel fold AF-A0A1T4NZ26-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A413434","Sediminibacterium ginsengisoli"]]},{"id":"NCBITaxon:413815","l":"Halorubrum cibi","na":1,"nb":1,"a":[["TED%3AAF-A0A521C3X2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A521C3X2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A413815","Halorubrum cibi"]]},{"id":"NCBITaxon:414684","l":"Rhodospirillum centenum SW","na":1,"nb":1,"a":[["Pfam%3APF27469","ATP synthase epsilon chain C-terminal domain"]],"b":[["NCBITaxon%3A414684","Rhodospirillum centenum SW"]]},{"id":"NCBITaxon:415851","l":"Chryseobacterium flavum","na":1,"nb":1,"a":[["TED%3AAF-A0A3D9CSI6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D9CSI6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A415851","Chryseobacterium flavum"]]},{"id":"NCBITaxon:415956","l":"Sphingobacterium allocomposti","na":1,"nb":1,"a":[["TED%3AAF-A0A5S5DER4-F1-model_v4_TED03","TED novel fold AF-A0A5S5DER4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A415956","Sphingobacterium allocomposti"]]},{"id":"NCBITaxon:41643","l":"Corynebacterium melassecola","na":1,"nb":1,"a":[["Pfam%3APF08310","LGFP repeat"]],"b":[["NCBITaxon%3A41643","Corynebacterium melassecola"]]},{"id":"NCBITaxon:416450","l":"Penicillium antarcticum","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6PWJ0-F1-model_v4_TED01","TED novel fold AF-A0A1V6PWJ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A416450","Penicillium antarcticum"]]},{"id":"NCBITaxon:41688","l":"Lomentospora prolificans","na":1,"nb":1,"a":[["TED%3AAF-A0A2N3N8C0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N3N8C0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A41688","Lomentospora prolificans"]]},{"id":"NCBITaxon:418","l":"Methylomonas sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A2P5N113-F1-model_v4_TED01","TED novel fold AF-A0A2P5N113-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A418","Methylomonas sp."]]},{"id":"NCBITaxon:418784","l":"Candidozyma pseudohaemuli","na":1,"nb":1,"a":[["TED%3AAF-A0A2P7YR10-F1-model_v4_TED02","TED novel fold AF-A0A2P7YR10-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A418784","Candidozyma pseudohaemuli"]]},{"id":"NCBITaxon:41956","l":"Amanita muscaria","na":1,"nb":1,"a":[["Pfam%3APF08883","Dopa 4,5-dioxygenase family"]],"b":[["NCBITaxon%3A41956","Amanita muscaria"]]},{"id":"NCBITaxon:420324","l":"Microvirga lupini","na":1,"nb":1,"a":[["TED%3AAF-A0A7W4VPM2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W4VPM2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A420324","Microvirga lupini"]]},{"id":"NCBITaxon:420953","l":"Paraburkholderia megapolitana","na":1,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_GrbD","GrbD-type graminine biosynthesis protein family"]],"b":[["NCBITaxon%3A420953","Paraburkholderia megapolitana"]]},{"id":"NCBITaxon:420998","l":"Jannaschia donghaensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0M6YL59-F1-model_v4_TED01","TED novel fold AF-A0A0M6YL59-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A420998","Jannaschia donghaensis"]]},{"id":"NCBITaxon:422288","l":"Beggiatoa sp. SS","na":1,"nb":1,"a":[["TED%3AAF-A7BLJ0-F1-model_v4_TED01","TED novel fold AF-A7BLJ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A422288","Beggiatoa sp. SS"]]},{"id":"NCBITaxon:422289","l":"Beggiatoa sp. PS","na":1,"nb":1,"a":[["TED%3AAF-A7BS81-F1-model_v4_TED01","TED highly-symmetric fold AF-A7BS81-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A422289","Beggiatoa sp. PS"]]},{"id":"NCBITaxon:42249","l":"Tuber magnatum","na":1,"nb":1,"a":[["TED%3AAF-A0A317SJ45-F1-model_v4_TED01","TED novel fold AF-A0A317SJ45-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A42249","Tuber magnatum"]]},{"id":"NCBITaxon:42260","l":"Zygotorulaspora mrakii","na":1,"nb":1,"a":[["TED%3AAF-A0A7H9B774-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7H9B774-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A42260","Zygotorulaspora mrakii"]]},{"id":"NCBITaxon:423474","l":"Crocosphaera watsonii WH 8502","na":1,"nb":1,"a":[["TED%3AAF-T2ICX6-F1-model_v4_TED01","TED highly-symmetric fold AF-T2ICX6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A423474","Crocosphaera watsonii WH 8502"]]},{"id":"NCBITaxon:423536","l":"Perkinsus marinus ATCC 50983","na":1,"nb":1,"a":[["TED%3AAF-C5L005-F1-model_v4_TED04","TED novel fold AF-C5L005-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A423536","Perkinsus marinus ATCC 50983"]]},{"id":"NCBITaxon:424796","l":"Brevundimonas lenta","na":1,"nb":1,"a":[["TED%3AAF-A0A7W6NPS7-F1-model_v4_TED01","TED novel fold AF-A0A7W6NPS7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A424796","Brevundimonas lenta"]]},{"id":"NCBITaxon:425511","l":"Pedobacter duraquae","na":1,"nb":1,"a":[["TED%3AAF-A0A4R6IHU7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R6IHU7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A425511","Pedobacter duraquae"]]},{"id":"NCBITaxon:426703","l":"Alkalibacterium putridalgicola","na":1,"nb":1,"a":[["TED%3AAF-A0A1H7XG09-F1-model_v4_TED03","TED novel fold AF-A0A1H7XG09-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A426703","Alkalibacterium putridalgicola"]]},{"id":"NCBITaxon:426756","l":"Bhargavaea beijingensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1G7A385-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G7A385-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A426756","Bhargavaea beijingensis"]]},{"id":"NCBITaxon:427317","l":"Saccharolobus islandicus M.14.25","na":1,"nb":1,"a":[["Pfam%3APF05165","GTP cyclohydrolase III"]],"b":[["NCBITaxon%3A427317","Saccharolobus islandicus M.14.25"]]},{"id":"NCBITaxon:42881","l":"Streptomyces chromofuscus","na":1,"nb":1,"a":[["TED%3AAF-A0A7M2T2Z7-F1-model_v4_TED01","TED novel fold AF-A0A7M2T2Z7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A42881","Streptomyces chromofuscus"]]},{"id":"NCBITaxon:429572","l":"Saccharolobus islandicus L.S.2.15","na":1,"nb":1,"a":[["TED%3AAF-C3MM69-F1-model_v4_TED02","TED novel fold AF-C3MM69-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A429572","Saccharolobus islandicus L.S.2.15"]]},{"id":"NCBITaxon:429728","l":"Devosia crocina","na":1,"nb":1,"a":[["TED%3AAF-A0A1I7NJ57-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I7NJ57-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A429728","Devosia crocina"]]},{"id":"NCBITaxon:430066","l":"Brucella abortus S19","na":1,"nb":1,"a":[["Pfam%3APF07886","BA14K-like protein"]],"b":[["NCBITaxon%3A430066","Brucella abortus S19"]]},{"id":"NCBITaxon:430453","l":"Marinobacter segnicrescens","na":1,"nb":1,"a":[["TED%3AAF-A0A1I0D7N2-F1-model_v4_TED03","TED novel fold AF-A0A1I0D7N2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A430453","Marinobacter segnicrescens"]]},{"id":"NCBITaxon:431061","l":"Roseateles aquatilis","na":1,"nb":1,"a":[["TED%3AAF-A0A246JM08-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A246JM08-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A431061","Roseateles aquatilis"]]},{"id":"NCBITaxon:43262","l":"Bacillus thuringiensis serovar neoleonensis","na":1,"nb":1,"a":[["Pfam%3APF01338","Bacillus thuringiensis toxin"]],"b":[["NCBITaxon%3A43262","Bacillus thuringiensis serovar neoleonensis"]]},{"id":"NCBITaxon:433330","l":"Propioniciclava tarda","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q9KJ61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Q9KJ61-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A433330","Propioniciclava tarda"]]},{"id":"NCBITaxon:434010","l":"Hydrogenophaga sp. PBL-H3","na":1,"nb":1,"a":[["TED%3AAF-A0A6P1IMA9-F1-model_v4_TED01","TED novel fold AF-A0A6P1IMA9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A434010","Hydrogenophaga sp. PBL-H3"]]},{"id":"NCBITaxon:43759","l":"Streptomyces wedmorensis","na":1,"nb":1,"a":[["Pfam%3APF04167","Protein of unknown function (DUF402)"]],"b":[["NCBITaxon%3A43759","Streptomyces wedmorensis"]]},{"id":"NCBITaxon:439495","l":"Pseudovibrio sp. JE062","na":1,"nb":1,"a":[["TED%3AAF-B6R9T4-F1-model_v4_TED01","TED highly-symmetric fold AF-B6R9T4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A439495","Pseudovibrio sp. JE062"]]},{"id":"NCBITaxon:439851","l":"Salmonella enterica subsp. enterica serovar Dublin str. CT_02021853","na":1,"nb":1,"a":[["Pfam%3APF25881","YBHG alpha-helical hairpin domain"]],"b":[["NCBITaxon%3A439851","Salmonella enterica subsp. enterica serovar Dublin str. CT_02021853"]]},{"id":"NCBITaxon:43989","l":"Crocosphaera subtropica ATCC 51142","na":1,"nb":1,"a":[["Pfam%3APF11844","Domain of unknown function (DUF3364)"]],"b":[["NCBITaxon%3A43989","Crocosphaera subtropica ATCC 51142"]]},{"id":"NCBITaxon:44056","l":"Aureococcus anophagefferens","na":1,"nb":1,"a":[["TED%3AAF-F0YA46-F1-model_v4_TED02","TED highly-symmetric fold AF-F0YA46-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A44056","Aureococcus anophagefferens"]]},{"id":"NCBITaxon:44058","l":"Aureoumbra lagunensis","na":1,"nb":1,"a":[["TED%3AAF-A0A7S3NFQ1-F1-model_v4_TED02","TED novel fold AF-A0A7S3NFQ1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A44058","Aureoumbra lagunensis"]]},{"id":"NCBITaxon:44093","l":"Blastobotrys ciferrii","na":1,"nb":1,"a":[["TED%3AAF-A0A642UWE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A642UWE6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A44093","Blastobotrys ciferrii"]]},{"id":"NCBITaxon:44161","l":"Bacillus thuringiensis serovar kyushuensis","na":1,"nb":1,"a":[["Pfam%3APF01338","Bacillus thuringiensis toxin"]],"b":[["NCBITaxon%3A44161","Bacillus thuringiensis serovar kyushuensis"]]},{"id":"NCBITaxon:441771","l":"Clostridium botulinum A str. Hall","na":1,"nb":1,"a":[["Pfam%3APF05636","HIGH Nucleotidyl Transferase"]],"b":[["NCBITaxon%3A441771","Clostridium botulinum A str. Hall"]]},{"id":"NCBITaxon:442563","l":"Bifidobacterium animalis subsp. lactis AD011","na":1,"nb":1,"a":[["Pfam%3APF27512","LeuD_N"]],"b":[["NCBITaxon%3A442563","Bifidobacterium animalis subsp. lactis AD011"]]},{"id":"NCBITaxon:443143","l":"Geobacter sp. M18","na":1,"nb":1,"a":[["TED%3AAF-E8WN43-F1-model_v4_TED01","TED novel fold AF-E8WN43-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A443143","Geobacter sp. M18"]]},{"id":"NCBITaxon:443612","l":"Flavobacterium resistens","na":1,"nb":1,"a":[["TED%3AAF-A0A521EE63-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A521EE63-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A443612","Flavobacterium resistens"]]},{"id":"NCBITaxon:444177","l":"Lysinibacillus sphaericus C3-41","na":1,"nb":1,"a":[["Pfam%3APF06335","Domain of unknown function (DUF1054)"]],"b":[["NCBITaxon%3A444177","Lysinibacillus sphaericus C3-41"]]},{"id":"NCBITaxon:444450","l":"Escherichia coli O157:H7 str. EC4115","na":1,"nb":1,"a":[["Pfam%3APF10781","Dextransucrase DSRB"]],"b":[["NCBITaxon%3A444450","Escherichia coli O157:H7 str. EC4115"]]},{"id":"NCBITaxon:445629","l":"Cereibacter johrii","na":1,"nb":1,"a":[["TED%3AAF-A0A330H429-F1-model_v4_TED01","TED novel fold AF-A0A330H429-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A445629","Cereibacter johrii"]]},{"id":"NCBITaxon:445960","l":"Chryseobacterium jejuense","na":1,"nb":1,"a":[["TED%3AAF-A0A2X2WXH5-F1-model_v4_TED01","TED novel fold AF-A0A2X2WXH5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A445960","Chryseobacterium jejuense"]]},{"id":"NCBITaxon:446043","l":"uncultured Lachnospira sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A1C6H212-F1-model_v4_TED01","TED novel fold AF-A0A1C6H212-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A446043","uncultured Lachnospira sp."]]},{"id":"NCBITaxon:447217","l":"Anaeromyxobacter sp. K","na":1,"nb":1,"a":[["TED%3AAF-B4UAH6-F1-model_v4_TED03","TED highly-symmetric fold AF-B4UAH6-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A447217","Anaeromyxobacter sp. K"]]},{"id":"NCBITaxon:447422","l":"Salegentibacter salinarum","na":1,"nb":1,"a":[["TED%3AAF-A0A2N0TVJ7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N0TVJ7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A447422","Salegentibacter salinarum"]]},{"id":"NCBITaxon:447425","l":"Halomonas nitroreducens","na":1,"nb":1,"a":[["TED%3AAF-A0A431V088-F1-model_v4_TED01","TED novel fold AF-A0A431V088-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A447425","Halomonas nitroreducens"]]},{"id":"NCBITaxon:447679","l":"Ekhidna lutea","na":1,"nb":1,"a":[["TED%3AAF-A0A239JFH6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A239JFH6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A447679","Ekhidna lutea"]]},{"id":"NCBITaxon:448386","l":"Gracilariopsis chorda","na":1,"nb":1,"a":[["TED%3AAF-A0A2V3IF53-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2V3IF53-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A448386","Gracilariopsis chorda"]]},{"id":"NCBITaxon:450362","l":"Paenibacillus contaminans","na":1,"nb":1,"a":[["TED%3AAF-A0A329MCX9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A329MCX9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A450362","Paenibacillus contaminans"]]},{"id":"NCBITaxon:45066","l":"Legionella gratiana","na":1,"nb":1,"a":[["TED%3AAF-A0A378JE27-F1-model_v4_TED01","TED novel fold AF-A0A378JE27-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A45066","Legionella gratiana"]]},{"id":"NCBITaxon:451","l":"Legionella micdadei","na":1,"nb":1,"a":[["TED%3AAF-A0A098GE29-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A098GE29-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A451","Legionella micdadei"]]},{"id":"NCBITaxon:451672","l":"Fusarium oxysporum f. sp. narcissi","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q2UZ81-F1-model_v4_TED01","TED novel fold AF-A0A4Q2UZ81-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A451672","Fusarium oxysporum f. sp. narcissi"]]},{"id":"NCBITaxon:452471","l":"Candidatus Amoebophilus asiaticus 5a2","na":1,"nb":1,"a":[["TED%3AAF-B3ERP3-F1-model_v4_TED02","TED novel fold AF-B3ERP3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A452471","Candidatus Amoebophilus asiaticus 5a2"]]},{"id":"NCBITaxon:453960","l":"Sulfobacillus benefaciens","na":1,"nb":1,"a":[["TED%3AAF-A0A2T2WWZ6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2T2WWZ6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A453960","Sulfobacillus benefaciens"]]},{"id":"NCBITaxon:454006","l":"Epilithonimonas hungarica","na":1,"nb":1,"a":[["TED%3AAF-A0A1G7J6K0-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1G7J6K0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A454006","Epilithonimonas hungarica"]]},{"id":"NCBITaxon:454166","l":"Salmonella enterica subsp. enterica serovar Agona str. SL483","na":1,"nb":1,"a":[["Pfam%3APF18390","Glycogen debranching enzyme C-terminal domain"]],"b":[["NCBITaxon%3A454166","Salmonella enterica subsp. enterica serovar Agona str. SL483"]]},{"id":"NCBITaxon:454169","l":"Salmonella enterica subsp. enterica serovar Heidelberg str. SL476","na":1,"nb":1,"a":[["Pfam%3APF04077","DsrH like protein"]],"b":[["NCBITaxon%3A454169","Salmonella enterica subsp. enterica serovar Heidelberg str. SL476"]]},{"id":"NCBITaxon:454194","l":"Pyrinomonas methylaliphatogenes","na":1,"nb":1,"a":[["TED%3AAF-A0A0B6X3G1-F1-model_v4_TED02","TED novel fold AF-A0A0B6X3G1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A454194","Pyrinomonas methylaliphatogenes"]]},{"id":"NCBITaxon:45496","l":"Methylophaga sulfidovorans","na":1,"nb":1,"a":[["TED%3AAF-A0A1I3YMM1-F1-model_v4_TED02","TED novel fold AF-A0A1I3YMM1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A45496","Methylophaga sulfidovorans"]]},{"id":"NCBITaxon:45657","l":"Desulfonema ishimotonii","na":1,"nb":1,"a":[["TED%3AAF-A0A401FRY7-F1-model_v4_TED01","TED novel fold AF-A0A401FRY7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A45657","Desulfonema ishimotonii"]]},{"id":"NCBITaxon:457389","l":"Bacteroides sp. 3_1_13","na":1,"nb":1,"a":[["TED%3AAF-A0A0J9FCL2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0J9FCL2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A457389","Bacteroides sp. 3_1_13"]]},{"id":"NCBITaxon:457404","l":"Fusobacterium ulcerans 12-1B","na":1,"nb":1,"a":[["TED%3AAF-H1PQJ9-F1-model_v4_TED01","TED highly-symmetric fold AF-H1PQJ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A457404","Fusobacterium ulcerans 12-1B"]]},{"id":"NCBITaxon:457421","l":"Clostridiales bacterium 1_7_47FAA","na":1,"nb":1,"a":[["TED%3AAF-C5EFI9-F1-model_v4_TED04","TED highly-symmetric fold AF-C5EFI9-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A457421","Clostridiales bacterium 1_7_47FAA"]]},{"id":"NCBITaxon:457944","l":"Nostoc sp. KVJ20","na":1,"nb":1,"a":[["TED%3AAF-A0A1E2WX87-F1-model_v4_TED01","TED novel fold AF-A0A1E2WX87-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A457944","Nostoc sp. KVJ20"]]},{"id":"NCBITaxon:458","l":"Legionella rubrilucens","na":1,"nb":1,"a":[["TED%3AAF-A0A0W0XMT7-F1-model_v4_TED01","TED novel fold AF-A0A0W0XMT7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A458","Legionella rubrilucens"]]},{"id":"NCBITaxon:458253","l":"uncultured Coprococcus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A1C5UAN5-F1-model_v4_TED01","TED novel fold AF-A0A1C5UAN5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A458253","uncultured Coprococcus sp."]]},{"id":"NCBITaxon:458836","l":"Paraburkholderia sediminicola","na":1,"nb":1,"a":[["TED%3AAF-A0A495FRK2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A495FRK2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A458836","Paraburkholderia sediminicola"]]},{"id":"NCBITaxon:459349","l":"Candidatus Cloacimonas acidaminivorans str. Evry","na":1,"nb":1,"a":[["Pfam%3APF05853","beta-keto acid cleavage enzyme"]],"b":[["NCBITaxon%3A459349","Candidatus Cloacimonas acidaminivorans str. Evry"]]},{"id":"NCBITaxon:460384","l":"Enterocloster lavalensis","na":1,"nb":1,"a":[["TED%3AAF-A0A2T3FE96-F1-model_v4_TED03","TED novel fold AF-A0A2T3FE96-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A460384","Enterocloster lavalensis"]]},{"id":"NCBITaxon:460523","l":"Ogataea polymorpha","na":1,"nb":1,"a":[["TED%3AAF-A0A1B7SIZ4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B7SIZ4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A460523","Ogataea polymorpha"]]},{"id":"NCBITaxon:46177","l":"Nonomuraea pusilla","na":1,"nb":1,"a":[["TED%3AAF-A0A1H8E5B9-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1H8E5B9-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A46177","Nonomuraea pusilla"]]},{"id":"NCBITaxon:46224","l":"Heyndrickxia sporothermodurans","na":1,"nb":1,"a":[["TED%3AAF-A0A2T6EYG9-F1-model_v4_TED03","TED novel fold AF-A0A2T6EYG9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A46224","Heyndrickxia sporothermodurans"]]},{"id":"NCBITaxon:462991","l":"Vibrio hangzhouensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1H5YXU5-F1-model_v4_TED03","TED novel fold AF-A0A1H5YXU5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A462991","Vibrio hangzhouensis"]]},{"id":"NCBITaxon:463025","l":"Bordetella bronchialis","na":1,"nb":1,"a":[["TED%3AAF-A0A193FYS1-F1-model_v4_TED02","TED novel fold AF-A0A193FYS1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A463025","Bordetella bronchialis"]]},{"id":"NCBITaxon:463301","l":"Halomonas korlensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1I7FWW8-F1-model_v4_TED01","TED novel fold AF-A0A1I7FWW8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A463301","Halomonas korlensis"]]},{"id":"NCBITaxon:46472","l":"Aspergillus versicolor","na":1,"nb":1,"a":[["Pfam%3APF13810","Domain of unknown function (DUF4185)"]],"b":[["NCBITaxon%3A46472","Aspergillus versicolor"]]},{"id":"NCBITaxon:46540","l":"Thermococcus fumicolans","na":1,"nb":1,"a":[["Pfam%3APF14890","Intein splicing domain"]],"b":[["NCBITaxon%3A46540","Thermococcus fumicolans"]]},{"id":"NCBITaxon:466","l":"Legionella maceachernii","na":1,"nb":1,"a":[["TED%3AAF-A0A0W0WDW3-F1-model_v4_TED01","TED novel fold AF-A0A0W0WDW3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A466","Legionella maceachernii"]]},{"id":"NCBITaxon:466044","l":"Pannonibacter indicus","na":1,"nb":1,"a":[["TED%3AAF-A0A0K6HVN5-F1-model_v4_TED01","TED novel fold AF-A0A0K6HVN5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A466044","Pannonibacter indicus"]]},{"id":"NCBITaxon:469589","l":"Bacteroides sp. 2_1_33B","na":1,"nb":1,"a":[["TED%3AAF-D0TG01-F1-model_v4_TED05","TED novel fold AF-D0TG01-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A469589","Bacteroides sp. 2_1_33B"]]},{"id":"NCBITaxon:469590","l":"Bacteroides sp. 2_2_4","na":1,"nb":1,"a":[["TED%3AAF-C3QRB2-F1-model_v4_TED04","TED novel fold AF-C3QRB2-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A469590","Bacteroides sp. 2_2_4"]]},{"id":"NCBITaxon:469610","l":"Burkholderiales bacterium 1_1_47","na":1,"nb":1,"a":[["TED%3AAF-D9Y337-F1-model_v4_TED01","TED highly-symmetric fold AF-D9Y337-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A469610","Burkholderiales bacterium 1_1_47"]]},{"id":"NCBITaxon:469613","l":"Enterobacteriaceae bacterium 9_2_54FAA","na":1,"nb":1,"a":[["TED%3AAF-S2LLY4-F1-model_v4_TED01","TED highly-symmetric fold AF-S2LLY4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A469613","Enterobacteriaceae bacterium 9_2_54FAA"]]},{"id":"NCBITaxon:469616","l":"Fusobacterium mortiferum ATCC 9817","na":1,"nb":1,"a":[["TED%3AAF-C3WAL7-F1-model_v4_TED02","TED novel fold AF-C3WAL7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A469616","Fusobacterium mortiferum ATCC 9817"]]},{"id":"NCBITaxon:469618","l":"Fusobacterium varium ATCC 27725","na":1,"nb":1,"a":[["TED%3AAF-C6JLM9-F1-model_v4_TED02","TED highly-symmetric fold AF-C6JLM9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A469618","Fusobacterium varium ATCC 27725"]]},{"id":"NCBITaxon:471514","l":"Paenalicyclobacillus ferrooxydans","na":1,"nb":1,"a":[["TED%3AAF-A0A0N8PN50-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0N8PN50-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A471514","Paenalicyclobacillus ferrooxydans"]]},{"id":"NCBITaxon:471874","l":"Providencia stuartii ATCC 25827","na":1,"nb":1,"a":[["TED%3AAF-B2PZ49-F1-model_v4_TED02","TED novel fold AF-B2PZ49-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A471874","Providencia stuartii ATCC 25827"]]},{"id":"NCBITaxon:47429","l":"Armillaria mellea","na":1,"nb":1,"a":[["Pfam%3APF14521","Lysine-specific metallo-endopeptidase"]],"b":[["NCBITaxon%3A47429","Armillaria mellea"]]},{"id":"NCBITaxon:47492","l":"Xanthobacter agilis","na":1,"nb":1,"a":[["Pfam%3APF19878","Tannase-like family of unknown function (DUF6351)"]],"b":[["NCBITaxon%3A47492","Xanthobacter agilis"]]},{"id":"NCBITaxon:474949","l":"Granulicella aggregans","na":1,"nb":1,"a":[["TED%3AAF-A0A7W7ZBP1-F1-model_v4_TED02","TED novel fold AF-A0A7W7ZBP1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A474949","Granulicella aggregans"]]},{"id":"NCBITaxon:474950","l":"Granulicella pectinivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A1I6LYB5-F1-model_v4_TED03","TED novel fold AF-A0A1I6LYB5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A474950","Granulicella pectinivorans"]]},{"id":"NCBITaxon:475075","l":"Chryseobacterium phosphatilyticum","na":1,"nb":1,"a":[["TED%3AAF-A0A316XDC1-F1-model_v4_TED01","TED novel fold AF-A0A316XDC1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A475075","Chryseobacterium phosphatilyticum"]]},{"id":"NCBITaxon:475081","l":"Jannaschia seohaensis","na":1,"nb":1,"a":[["TED%3AAF-A0A2Y9C328-F1-model_v4_TED01","TED novel fold AF-A0A2Y9C328-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A475081","Jannaschia seohaensis"]]},{"id":"NCBITaxon:475083","l":"Roseovarius aestuarii","na":1,"nb":1,"a":[["TED%3AAF-A0A1X7BVA9-F1-model_v4_TED01","TED novel fold AF-A0A1X7BVA9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A475083","Roseovarius aestuarii"]]},{"id":"NCBITaxon:476282","l":"Bradyrhizobium japonicum SEMIA 5079","na":1,"nb":1,"a":[["TED%3AAF-A0A023XH60-F1-model_v4_TED01","TED novel fold AF-A0A023XH60-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A476282","Bradyrhizobium japonicum SEMIA 5079"]]},{"id":"NCBITaxon:47759","l":"Streptomyces tubercidicus","na":1,"nb":1,"a":[["TED%3AAF-A0A640UN74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A640UN74-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A47759","Streptomyces tubercidicus"]]},{"id":"NCBITaxon:477680","l":"Filimonas lacunae","na":1,"nb":1,"a":[["TED%3AAF-A0A173MBE7-F1-model_v4_TED01","TED novel fold AF-A0A173MBE7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A477680","Filimonas lacunae"]]},{"id":"NCBITaxon:4781","l":"Plasmopara halstedii","na":1,"nb":1,"a":[["TED%3AAF-A0A0P1AW30-F1-model_v4_TED01","TED novel fold AF-A0A0P1AW30-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A4781","Plasmopara halstedii"]]},{"id":"NCBITaxon:4784","l":"Phytophthora capsici","na":1,"nb":1,"a":[["Pfam%3APF00964","Elicitin"]],"b":[["NCBITaxon%3A4784","Phytophthora capsici"]]},{"id":"NCBITaxon:47864","l":"Micromonospora halophytica","na":1,"nb":1,"a":[["TED%3AAF-A0A1C5IAX2-F1-model_v4_TED03","TED novel fold AF-A0A1C5IAX2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A47864","Micromonospora halophytica"]]},{"id":"NCBITaxon:478820","l":"Blastocystis sp. ATCC 50177/Nand II","na":1,"nb":1,"a":[["TED%3AAF-A0A196S5V8-F1-model_v4_TED01","TED novel fold AF-A0A196S5V8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A478820","Blastocystis sp. ATCC 50177/Nand II"]]},{"id":"NCBITaxon:479","l":"Moraxella sp.","na":1,"nb":1,"a":[["Pfam%3APF09208","Restriction endonuclease MspI"]],"b":[["NCBITaxon%3A479","Moraxella sp."]]},{"id":"NCBITaxon:47913","l":"Vibrio sp. JT0107","na":1,"nb":1,"a":[["Pfam%3APF17992","Agarase CBM like domain"]],"b":[["NCBITaxon%3A47913","Vibrio sp. JT0107"]]},{"id":"NCBITaxon:47915","l":"Arthrobacter sp. P1","na":1,"nb":1,"a":[["Pfam%3APF21994","AGAO-like N2 domain"]],"b":[["NCBITaxon%3A47915","Arthrobacter sp. P1"]]},{"id":"NCBITaxon:4795","l":"Phytophthora megakarya","na":1,"nb":1,"a":[["TED%3AAF-A0A225WIC4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A225WIC4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A4795","Phytophthora megakarya"]]},{"id":"NCBITaxon:479978","l":"Micromonospora tulbaghiae","na":1,"nb":1,"a":[["TED%3AAF-A0A1C4V387-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1C4V387-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A479978","Micromonospora tulbaghiae"]]},{"id":"NCBITaxon:480284","l":"Paracerasibacillus soli","na":1,"nb":1,"a":[["TED%3AAF-A0A0Q9Y7Y8-F1-model_v4_TED04","TED novel fold AF-A0A0Q9Y7Y8-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A480284","Paracerasibacillus soli"]]},{"id":"NCBITaxon:482300","l":"Microcystis aeruginosa SPC777","na":1,"nb":1,"a":[["TED%3AAF-S3K851-F1-model_v4_TED01","TED novel fold AF-S3K851-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A482300","Microcystis aeruginosa SPC777"]]},{"id":"NCBITaxon:48254","l":"Torulaspora globosa","na":1,"nb":1,"a":[["TED%3AAF-A0A7G3ZGG5-F1-model_v4_TED01","TED novel fold AF-A0A7G3ZGG5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A48254","Torulaspora globosa"]]},{"id":"NCBITaxon:48256","l":"Ruminiclostridium hungatei","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4ST60-F1-model_v4_TED01","TED novel fold AF-A0A1V4ST60-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A48256","Ruminiclostridium hungatei"]]},{"id":"NCBITaxon:483139","l":"Cystoisospora suis","na":1,"nb":1,"a":[["TED%3AAF-A0A2C6K7H9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2C6K7H9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A483139","Cystoisospora suis"]]},{"id":"NCBITaxon:483218","l":"[Bacteroides] pectinophilus ATCC 43243","na":1,"nb":1,"a":[["TED%3AAF-B7ASX3-F1-model_v4_TED02","TED novel fold AF-B7ASX3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A483218","[Bacteroides] pectinophilus ATCC 43243"]]},{"id":"NCBITaxon:483219","l":"Myxococcus fulvus HW-1","na":1,"nb":1,"a":[["TED%3AAF-F8C8K4-F1-model_v4_TED01","TED highly-symmetric fold AF-F8C8K4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A483219","Myxococcus fulvus HW-1"]]},{"id":"NCBITaxon:483423","l":"Estrella lausannensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0H5DSD7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0H5DSD7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A483423","Estrella lausannensis"]]},{"id":"NCBITaxon:4839","l":"Rhizomucor miehei","na":1,"nb":1,"a":[["Pfam%3APF03639","Glycosyl hydrolase family 81 N-terminal domain"]],"b":[["NCBITaxon%3A4839","Rhizomucor miehei"]]},{"id":"NCBITaxon:4847","l":"Rhizopus microsporus var. oligosporus","na":1,"nb":1,"a":[["Pfam%3APF03427","Carbohydrate binding domain (family 19)"]],"b":[["NCBITaxon%3A4847","Rhizopus microsporus var. oligosporus"]]},{"id":"NCBITaxon:485447","l":"Thalassomonas actiniarum","na":1,"nb":1,"a":[["TED%3AAF-A0A0D8CU42-F1-model_v4_TED02","TED novel fold AF-A0A0D8CU42-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A485447","Thalassomonas actiniarum"]]},{"id":"NCBITaxon:485751","l":"Pseudomonas sp. LD120","na":1,"nb":1,"a":[["TED%3AAF-A0A7V8JCN8-F1-model_v4_TED01","TED novel fold AF-A0A7V8JCN8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A485751","Pseudomonas sp. LD120"]]},{"id":"NCBITaxon:486398","l":"Bacillus sp. S3","na":1,"nb":1,"a":[["TED%3AAF-A0A513RDB0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A513RDB0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A486398","Bacillus sp. S3"]]},{"id":"NCBITaxon:487214","l":"Streptococcus pneumoniae Hungary19A-6","na":1,"nb":1,"a":[["PROSITE%3APS01163","Galactose-1-phosphate uridyl transferase family 2 signature"]],"b":[["NCBITaxon%3A487214","Streptococcus pneumoniae Hungary19A-6"]]},{"id":"NCBITaxon:487796","l":"Flavobacteria bacterium MS024-2A","na":1,"nb":1,"a":[["TED%3AAF-C0BK38-F1-model_v4_TED02","TED novel fold AF-C0BK38-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A487796","Flavobacteria bacterium MS024-2A"]]},{"id":"NCBITaxon:487822","l":"Xanthomonas arboricola pv. fragariae","na":1,"nb":1,"a":[["TED%3AAF-A0A2N9D9Q3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2N9D9Q3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A487822","Xanthomonas arboricola pv. fragariae"]]},{"id":"NCBITaxon:487851","l":"Xanthomonas arboricola pv. arracaciae","na":1,"nb":1,"a":[["TED%3AAF-A0A2S6ZHA0-F1-model_v4_TED01","TED novel fold AF-A0A2S6ZHA0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A487851","Xanthomonas arboricola pv. arracaciae"]]},{"id":"NCBITaxon:488223","l":"Streptococcus pneumoniae P1031","na":1,"nb":1,"a":[["PROSITE%3APS01163","Galactose-1-phosphate uridyl transferase family 2 signature"]],"b":[["NCBITaxon%3A488223","Streptococcus pneumoniae P1031"]]},{"id":"NCBITaxon:488535","l":"Marinobacter zhejiangensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1I4LWZ8-F1-model_v4_TED01","TED novel fold AF-A0A1I4LWZ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A488535","Marinobacter zhejiangensis"]]},{"id":"NCBITaxon:488538","l":"Candidatus Puniceispirillum marinum IMCC1322","na":1,"nb":1,"a":[["TED%3AAF-D5BSL3-F1-model_v4_TED01","TED novel fold AF-D5BSL3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A488538","Candidatus Puniceispirillum marinum IMCC1322"]]},{"id":"NCBITaxon:489911","l":"Halarchaeum rubridurum","na":1,"nb":1,"a":[["TED%3AAF-A0A830G3U2-F1-model_v4_TED03","TED novel fold AF-A0A830G3U2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A489911","Halarchaeum rubridurum"]]},{"id":"NCBITaxon:489913","l":"Halarchaeum nitratireducens","na":1,"nb":1,"a":[["TED%3AAF-A0A830GC83-F1-model_v4_TED01","TED novel fold AF-A0A830GC83-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A489913","Halarchaeum nitratireducens"]]},{"id":"NCBITaxon:49012","l":"Sporisorium scitamineum","na":1,"nb":1,"a":[["TED%3AAF-A0A140KLW0-F1-model_v4_TED03","TED novel fold AF-A0A140KLW0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A49012","Sporisorium scitamineum"]]},{"id":"NCBITaxon:490622","l":"Trichoderma arundinaceum","na":1,"nb":1,"a":[["Pfam%3APF22701","Mal s 1 allergenic protein-like"]],"b":[["NCBITaxon%3A490622","Trichoderma arundinaceum"]]},{"id":"NCBITaxon:491207","l":"Chryseobacterium oleae","na":1,"nb":1,"a":[["TED%3AAF-A0A1I5BFN6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5BFN6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A491207","Chryseobacterium oleae"]]},{"id":"NCBITaxon:4926","l":"Pichia membranifaciens","na":1,"nb":1,"a":[["TED%3AAF-A0A1Q2YIR9-F1-model_v4_TED01","TED novel fold AF-A0A1Q2YIR9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A4926","Pichia membranifaciens"]]},{"id":"NCBITaxon:493375","l":"Halpernia humi","na":1,"nb":1,"a":[["TED%3AAF-A0A1H5T9H3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H5T9H3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A493375","Halpernia humi"]]},{"id":"NCBITaxon:4957","l":"Zygosaccharomyces bisporus","na":1,"nb":1,"a":[["Pfam%3APF05202","Recombinase Flp protein"]],"b":[["NCBITaxon%3A4957","Zygosaccharomyces bisporus"]]},{"id":"NCBITaxon:498718","l":"Slackia equolifaciens","na":1,"nb":1,"a":[["TED%3AAF-A0A3N0AU33-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A3N0AU33-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A498718","Slackia equolifaciens"]]},{"id":"NCBITaxon:49899","l":"Thermococcus profundus","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z2MDJ6-F1-model_v4_TED01","TED novel fold AF-A0A2Z2MDJ6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A49899","Thermococcus profundus"]]},{"id":"NCBITaxon:499207","l":"Syntrophaceticus schinkii","na":1,"nb":1,"a":[["TED%3AAF-A0A0B7MFK5-F1-model_v4_TED02","TED novel fold AF-A0A0B7MFK5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A499207","Syntrophaceticus schinkii"]]},{"id":"NCBITaxon:4999","l":"Kockovaella imperatae","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y1UDV0-F1-model_v4_TED02","TED novel fold AF-A0A1Y1UDV0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A4999","Kockovaella imperatae"]]},{"id":"NCBITaxon:500148","l":"Metarhizium brunneum","na":1,"nb":1,"a":[["TED%3AAF-A0A7D5YSS6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7D5YSS6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A500148","Metarhizium brunneum"]]},{"id":"NCBITaxon:5007","l":"Brettanomyces bruxellensis","na":1,"nb":1,"a":[["TED%3AAF-A0A7D9CWH5-F1-model_v4_TED01","TED novel fold AF-A0A7D9CWH5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5007","Brettanomyces bruxellensis"]]},{"id":"NCBITaxon:501024","l":"Rhizobium tibeticum","na":1,"nb":1,"a":[["TED%3AAF-A0A1H8TQT1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H8TQT1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A501024","Rhizobium tibeticum"]]},{"id":"NCBITaxon:501834","l":"Thalassospira sp. MCCC 1A01148","na":1,"nb":1,"a":[["TED%3AAF-A0A154LM58-F1-model_v4_TED01","TED novel fold AF-A0A154LM58-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A501834","Thalassospira sp. MCCC 1A01148"]]},{"id":"NCBITaxon:50340","l":"Pseudomonas fuscovaginae","na":1,"nb":1,"a":[["TED%3AAF-A0A0N0E536-F1-model_v4_TED03","TED novel fold AF-A0A0N0E536-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A53407","Pseudomonas asplenii"]]},{"id":"NCBITaxon:50376","l":"Venturia effusa","na":1,"nb":1,"a":[["TED%3AAF-A0A517L490-F1-model_v4_TED02","TED novel fold AF-A0A517L490-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A50376","Venturia effusa"]]},{"id":"NCBITaxon:504468","l":"Rhodovastum atsumiense","na":1,"nb":1,"a":[["TED%3AAF-A0A5M6IJ90-F1-model_v4_TED03","TED novel fold AF-A0A5M6IJ90-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A504468","Rhodovastum atsumiense"]]},{"id":"NCBITaxon:504487","l":"Jejuia pallidilutea","na":1,"nb":1,"a":[["TED%3AAF-A0A090W053-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A090W053-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A504487","Jejuia pallidilutea"]]},{"id":"NCBITaxon:505389","l":"Mesorhizobium sangaii","na":1,"nb":1,"a":[["TED%3AAF-A0A841PLH7-F1-model_v4_TED01","TED novel fold AF-A0A841PLH7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A505389","Mesorhizobium sangaii"]]},{"id":"NCBITaxon:5060","l":"Aspergillus giganteus","na":1,"nb":1,"a":[["Pfam%3APF11402","Antifungal protein"]],"b":[["NCBITaxon%3A5060","Aspergillus giganteus"]]},{"id":"NCBITaxon:50718","l":"Vibrio mytili","na":1,"nb":1,"a":[["TED%3AAF-A0A0C3DIF7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0C3DIF7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A50718","Vibrio mytili"]]},{"id":"NCBITaxon:5077","l":"Penicillium citrinum","na":1,"nb":1,"a":[["PROSITE%3APS00876","Indoleamine 2,3-dioxygenase signature 1"]],"b":[["NCBITaxon%3A5077","Penicillium citrinum"]]},{"id":"NCBITaxon:5082","l":"Penicillium roqueforti","na":1,"nb":1,"a":[["Pfam%3APF07573","Nitrogen regulatory protein AreA N terminus"]],"b":[["NCBITaxon%3A5082","Penicillium roqueforti"]]},{"id":"NCBITaxon:5083","l":"Penicillium canescens","na":1,"nb":1,"a":[["Pfam%3APF09206","Alpha-L-arabinofuranosidase B, catalytic"]],"b":[["NCBITaxon%3A5083","Penicillium canescens"]]},{"id":"NCBITaxon:508767","l":"Clostridium botulinum E3 str. Alaska E43","na":1,"nb":1,"a":[["Pfam%3APF04029","2-phosphosulpholactate phosphatase"]],"b":[["NCBITaxon%3A508767","Clostridium botulinum E3 str. Alaska E43"]]},{"id":"NCBITaxon:509200","l":"Sphaerisporangium album","na":1,"nb":1,"a":[["TED%3AAF-A0A367FKB5-F1-model_v4_TED01","TED novel fold AF-A0A367FKB5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A509200","Sphaerisporangium album"]]},{"id":"NCBITaxon:510947","l":"Lacibacter cauensis","na":1,"nb":1,"a":[["TED%3AAF-A0A562S975-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A562S975-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A510947","Lacibacter cauensis"]]},{"id":"NCBITaxon:5127","l":"Fusarium fujikuroi","na":1,"nb":1,"a":[["PROSITE%3APS00982","Bacterial-type phytoene dehydrogenase signature"]],"b":[["NCBITaxon%3A5127","Fusarium fujikuroi"]]},{"id":"NCBITaxon:515350","l":"Micromonospora endophytica","na":1,"nb":1,"a":[["TED%3AAF-A0A2W2D5L3-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A2W2D5L3-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A515350","Micromonospora endophytica"]]},{"id":"NCBITaxon:515499","l":"Bradyrhizobium rifense","na":1,"nb":1,"a":[["TED%3AAF-A0A5D3KCZ7-F1-model_v4_TED03","TED novel fold AF-A0A5D3KCZ7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A515499","Bradyrhizobium rifense"]]},{"id":"NCBITaxon:515897","l":"Pontibaca methylaminivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A1R3WBU9-F1-model_v4_TED02","TED novel fold AF-A0A1R3WBU9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A515897","Pontibaca methylaminivorans"]]},{"id":"NCBITaxon:517720","l":"Stakelama pacifica","na":1,"nb":1,"a":[["TED%3AAF-A0A4R6FNF8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4R6FNF8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A517720","Stakelama pacifica"]]},{"id":"NCBITaxon:518882","l":"Delftia sp. HT23","na":1,"nb":1,"a":[["Pfam%3APF14031","Putative serine dehydratase domain"]],"b":[["NCBITaxon%3A518882","Delftia sp. HT23"]]},{"id":"NCBITaxon:519450","l":"Mycoplasma anserisalpingitidis","na":1,"nb":1,"a":[["TED%3AAF-A0A5B8J7N5-F1-model_v4_TED01","TED novel fold AF-A0A5B8J7N5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A519450","Mycoplasma anserisalpingitidis"]]},{"id":"NCBITaxon:525244","l":"Acinetobacter sp. ATCC 27244","na":1,"nb":1,"a":[["Pfam%3APF14130","Cap4, dsDNA endonuclease domain"]],"b":[["NCBITaxon%3A525244","Acinetobacter sp. ATCC 27244"]]},{"id":"NCBITaxon:525283","l":"Fusobacterium nucleatum subsp. nucleatum ATCC 23726","na":1,"nb":1,"a":[["Pfam%3APF26317","Histidine racemase CntK N-terminal domain"]],"b":[["NCBITaxon%3A525283","Fusobacterium nucleatum subsp. nucleatum ATCC 23726"]]},{"id":"NCBITaxon:52560","l":"Desulfomicrobium apsheronum","na":1,"nb":1,"a":[["TED%3AAF-A0A1I3Z6Q6-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1I3Z6Q6-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A52560","Desulfomicrobium apsheronum"]]},{"id":"NCBITaxon:52697","l":"Actinoplanes regularis","na":1,"nb":1,"a":[["TED%3AAF-A0A238WLZ3-F1-model_v4_TED01","TED novel fold AF-A0A238WLZ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A52697","Actinoplanes regularis"]]},{"id":"NCBITaxon:52771","l":"Actinomyces howellii","na":1,"nb":1,"a":[["TED%3AAF-A0A3S4R0T4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3S4R0T4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A52771","Actinomyces howellii"]]},{"id":"NCBITaxon:528191","l":"Paenibacillus xylanexedens","na":1,"nb":1,"a":[["TED%3AAF-A0A3N6BL17-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N6BL17-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A528191","Paenibacillus xylanexedens"]]},{"id":"NCBITaxon:5288","l":"Rhodotorula diobovata","na":1,"nb":1,"a":[["TED%3AAF-A0A5C5FQ86-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A5C5FQ86-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A5288","Rhodotorula diobovata"]]},{"id":"NCBITaxon:5315","l":"Ganoderma lucidum","na":1,"nb":1,"a":[["Pfam%3APF09259","Fungal immunomodulatory protein Fve"]],"b":[["NCBITaxon%3A5315","Ganoderma lucidum"]]},{"id":"NCBITaxon:53367","l":"Asanoa ferruginea","na":1,"nb":1,"a":[["TED%3AAF-A0A3D9ZYT7-F1-model_v4_TED02","TED novel fold AF-A0A3D9ZYT7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A53367","Asanoa ferruginea"]]},{"id":"NCBITaxon:53463","l":"Paracoccus solventivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A1M7DMW2-F1-model_v4_TED03","TED novel fold AF-A0A1M7DMW2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A53463","Paracoccus solventivorans"]]},{"id":"NCBITaxon:537601","l":"Mesorhizobium intechi","na":1,"nb":1,"a":[["TED%3AAF-A0A2N7S8D1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N7S8D1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A537601","Mesorhizobium intechi"]]},{"id":"NCBITaxon:54262","l":"Thermococcus chitonophagus","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z2NBK5-F1-model_v4_TED02","TED novel fold AF-A0A2Z2NBK5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A54262","Thermococcus chitonophagus"]]},{"id":"NCBITaxon:542832","l":"Peronospora effusa","na":1,"nb":1,"a":[["TED%3AAF-A0A3M6VIX8-F1-model_v4_TED01","TED novel fold AF-A0A3M6VIX8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A542832","Peronospora effusa"]]},{"id":"NCBITaxon:543527","l":"Saccharothrix variisporea","na":1,"nb":1,"a":[["TED%3AAF-A0A495X541-F1-model_v4_TED02","TED novel fold AF-A0A495X541-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A543527","Saccharothrix variisporea"]]},{"id":"NCBITaxon:543913","l":"beta proteobacterium CB","na":1,"nb":1,"a":[["TED%3AAF-M1T4B9-F1-model_v4_TED01","TED novel fold AF-M1T4B9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A543913","beta proteobacterium CB"]]},{"id":"NCBITaxon:54398","l":"endosymbiont of Ridgeia piscesae","na":1,"nb":1,"a":[["TED%3AAF-A0A0T5YXI7-F1-model_v4_TED03","TED novel fold AF-A0A0T5YXI7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A54398","endosymbiont of Ridgeia piscesae"]]},{"id":"NCBITaxon:544404","l":"Escherichia coli O157:H7 str. TW14359","na":1,"nb":1,"a":[["Pfam%3APF04806","EspF protein repeat"]],"b":[["NCBITaxon%3A544404","Escherichia coli O157:H7 str. TW14359"]]},{"id":"NCBITaxon:544406","l":"Helicobacter pylori B128","na":1,"nb":1,"a":[["PROSITE%3APS01292","Uncharacterized protein family UPF0036 signature"]],"b":[["NCBITaxon%3A544406","Helicobacter pylori B128"]]},{"id":"NCBITaxon:544938","l":"Methylocystis sp. B8","na":1,"nb":1,"a":[["TED%3AAF-A0A5R8QP52-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5R8QP52-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A544938","Methylocystis sp. B8"]]},{"id":"NCBITaxon:547162","l":"Micromonospora sediminimaris","na":1,"nb":1,"a":[["TED%3AAF-A0A1I1G4E3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I1G4E3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A547162","Micromonospora sediminimaris"]]},{"id":"NCBITaxon:547163","l":"Mycolicibacterium vulneris","na":1,"nb":1,"a":[["TED%3AAF-A0A853MGU5-F1-model_v4_TED01","TED novel fold AF-A0A853MGU5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A547163","Mycolicibacterium vulneris"]]},{"id":"NCBITaxon:5486","l":"Candida viswanathii","na":1,"nb":1,"a":[["TED%3AAF-A0A367YI34-F1-model_v4_TED02","TED novel fold AF-A0A367YI34-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A5486","Candida viswanathii"]]},{"id":"NCBITaxon:54915","l":"Brevibacillus reuszeri","na":1,"nb":1,"a":[["TED%3AAF-A0A0K9Z0U4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0K9Z0U4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A54915","Brevibacillus reuszeri"]]},{"id":"NCBITaxon:550537","l":"Salmonella enterica subsp. enterica serovar Enteritidis str. P125109","na":1,"nb":1,"a":[["Pfam%3APF04077","DsrH like protein"]],"b":[["NCBITaxon%3A550537","Salmonella enterica subsp. enterica serovar Enteritidis str. P125109"]]},{"id":"NCBITaxon:550538","l":"Salmonella enterica subsp. enterica serovar Gallinarum str. 287/91","na":1,"nb":1,"a":[["Pfam%3APF08254","Threonine leader peptide"]],"b":[["NCBITaxon%3A550538","Salmonella enterica subsp. enterica serovar Gallinarum str. 287/91"]]},{"id":"NCBITaxon:5516","l":"Fusarium culmorum","na":1,"nb":1,"a":[["TED%3AAF-A0A2T4GUL3-F1-model_v4_TED01","TED novel fold AF-A0A2T4GUL3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5516","Fusarium culmorum"]]},{"id":"NCBITaxon:55194","l":"Malassezia furfur","na":1,"nb":1,"a":[["Pfam%3APF22701","Mal s 1 allergenic protein-like"]],"b":[["NCBITaxon%3A55194","Malassezia furfur"]]},{"id":"NCBITaxon:551947","l":"Bradyrhizobium sp. STM 3843","na":1,"nb":1,"a":[["TED%3AAF-H0TVQ1-F1-model_v4_TED01","TED novel fold AF-H0TVQ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A551947","Bradyrhizobium sp. STM 3843"]]},{"id":"NCBITaxon:551991","l":"Arachidicoccus rhizosphaerae","na":1,"nb":1,"a":[["TED%3AAF-A0A1H4B9Q5-F1-model_v4_TED02","TED novel fold AF-A0A1H4B9Q5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A551991","Arachidicoccus rhizosphaerae"]]},{"id":"NCBITaxon:551995","l":"Mucilaginibacter gossypiicola","na":1,"nb":1,"a":[["TED%3AAF-A0A1H8PN00-F1-model_v4_TED02","TED novel fold AF-A0A1H8PN00-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A551995","Mucilaginibacter gossypiicola"]]},{"id":"NCBITaxon:552546","l":"Flagellimonas olearia","na":1,"nb":1,"a":[["TED%3AAF-A0A6I1E2H7-F1-model_v4_TED01","TED novel fold AF-A0A6I1E2H7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A552546","Flagellimonas olearia"]]},{"id":"NCBITaxon:553427","l":"Heliorestis acidaminivorans","na":1,"nb":1,"a":[["TED%3AAF-A0A6I0F388-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6I0F388-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A553427","Heliorestis acidaminivorans"]]},{"id":"NCBITaxon:553480","l":"Photorhabdus asymbiotica subsp. asymbiotica ATCC 43949","na":1,"nb":1,"a":[["Pfam%3APF06804","Outer membrane protein assembly factor BamC-like C-terminal domain"]],"b":[["NCBITaxon%3A553480","Photorhabdus asymbiotica subsp. asymbiotica ATCC 43949"]]},{"id":"NCBITaxon:553483","l":"Streptococcus equi subsp. zooepidemicus H70","na":1,"nb":1,"a":[["Pfam%3APF04260","Protein of unknown function (DUF436)"]],"b":[["NCBITaxon%3A553483","Streptococcus equi subsp. zooepidemicus H70"]]},{"id":"NCBITaxon:554290","l":"Salmonella enterica subsp. enterica serovar Paratyphi A str. AKU_12601","na":1,"nb":1,"a":[["Pfam%3APF08254","Threonine leader peptide"]],"b":[["NCBITaxon%3A554290","Salmonella enterica subsp. enterica serovar Paratyphi A str. AKU_12601"]]},{"id":"NCBITaxon:5547","l":"Trichoderma viride","na":1,"nb":1,"a":[["Pfam%3APF14587","O-Glycosyl hydrolase family 30"]],"b":[["NCBITaxon%3A5547","Trichoderma viride"]]},{"id":"NCBITaxon:555059","l":"Streptomyces sedi","na":1,"nb":1,"a":[["TED%3AAF-A0A5C4V2V8-F1-model_v4_TED04","TED novel fold AF-A0A5C4V2V8-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A555059","Streptomyces sedi"]]},{"id":"NCBITaxon:55603","l":"Mycoplasmopsis caviae","na":1,"nb":1,"a":[["TED%3AAF-A0A3P8KC62-F1-model_v4_TED02","TED novel fold AF-A0A3P8KC62-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A55603","Mycoplasmopsis caviae"]]},{"id":"NCBITaxon:557598","l":"Laribacter hongkongensis HLHK9","na":1,"nb":1,"a":[["Pfam%3APF06299","Protein of unknown function (DUF1045)"]],"b":[["NCBITaxon%3A557598","Laribacter hongkongensis HLHK9"]]},{"id":"NCBITaxon:559304","l":"Millerozyma farinosa CBS 7064","na":1,"nb":1,"a":[["TED%3AAF-G8Y330-F1-model_v4_TED01","TED novel fold AF-G8Y330-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A559304","Millerozyma farinosa CBS 7064"]]},{"id":"NCBITaxon:5599","l":"Alternaria alternata","na":1,"nb":1,"a":[["Pfam%3APF16541","Alternaria alternata allergen 1"]],"b":[["NCBITaxon%3A5599","Alternaria alternata"]]},{"id":"NCBITaxon:561061","l":"Sphingobacterium psychroaquaticum","na":1,"nb":1,"a":[["TED%3AAF-A0A1X7IBM3-F1-model_v4_TED01","TED novel fold AF-A0A1X7IBM3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A561061","Sphingobacterium psychroaquaticum"]]},{"id":"NCBITaxon:56110","l":"Oxynema acuminatum PCC 6304","na":1,"nb":1,"a":[["TED%3AAF-K9TG07-F1-model_v4_TED01","TED highly-symmetric fold AF-K9TG07-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A56110","Oxynema acuminatum PCC 6304"]]},{"id":"NCBITaxon:561176","l":"Jiangella alba","na":1,"nb":1,"a":[["TED%3AAF-A0A1H5PL15-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H5PL15-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A561176","Jiangella alba"]]},{"id":"NCBITaxon:56187","l":"Coprinus comatus","na":1,"nb":1,"a":[["Pfam%3APF22803","Glycan binding domain Y3"]],"b":[["NCBITaxon%3A56187","Coprinus comatus"]]},{"id":"NCBITaxon:563008","l":"Segatella oris C735","na":1,"nb":1,"a":[["TED%3AAF-D7NFV4-F1-model_v4_TED01","TED novel fold AF-D7NFV4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A563008","Segatella oris C735"]]},{"id":"NCBITaxon:563041","l":"Helicobacter pylori G27","na":1,"nb":1,"a":[["PROSITE%3APS01321","Crossover junction endodeoxyribonuclease ruvC signature"]],"b":[["NCBITaxon%3A563041","Helicobacter pylori G27"]]},{"id":"NCBITaxon:563466","l":"Scedosporium apiospermum","na":1,"nb":1,"a":[["TED%3AAF-A0A084GCE4-F1-model_v4_TED01","TED novel fold AF-A0A084GCE4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A563466","Scedosporium apiospermum"]]},{"id":"NCBITaxon:563735","l":"Gracilibacillus thailandensis","na":1,"nb":1,"a":[["TED%3AAF-A0A6N7QZ32-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N7QZ32-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A563735","Gracilibacillus thailandensis"]]},{"id":"NCBITaxon:5643","l":"Trametes cinnabarina","na":1,"nb":1,"a":[["TED%3AAF-A0A060SBT3-F1-model_v4_TED01","TED novel fold AF-A0A060SBT3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5643","Trametes cinnabarina"]]},{"id":"NCBITaxon:564710","l":"Vagococcus acidifermentans","na":1,"nb":1,"a":[["TED%3AAF-A0A430ARH8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A430ARH8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A564710","Vagococcus acidifermentans"]]},{"id":"NCBITaxon:565034","l":"Brachyspira hyodysenteriae WA1","na":1,"nb":1,"a":[["TED%3AAF-A0A3B6VDR6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3B6VDR6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A565034","Brachyspira hyodysenteriae WA1"]]},{"id":"NCBITaxon:565419","l":"Coleophoma crateriformis","na":1,"nb":1,"a":[["TED%3AAF-A0A3D8RJP7-F1-model_v4_TED02","TED novel fold AF-A0A3D8RJP7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A565419","Coleophoma crateriformis"]]},{"id":"NCBITaxon:565575","l":"Ureaplasma urealyticum serovar 10 str. ATCC 33699","na":1,"nb":1,"a":[["Pfam%3APF28494","Glycyl-tRNA synthetase insertion domain 1"]],"b":[["NCBITaxon%3A565575","Ureaplasma urealyticum serovar 10 str. ATCC 33699"]]},{"id":"NCBITaxon:565655","l":"Enterococcus casseliflavus EC20","na":1,"nb":1,"a":[["TED%3AAF-C9A7V8-F1-model_v4_TED02","TED highly-symmetric fold AF-C9A7V8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A565655","Enterococcus casseliflavus EC20"]]},{"id":"NCBITaxon:566037","l":"[Ashbya] aceris (nom. inval.)","na":1,"nb":1,"a":[["TED%3AAF-R9XFX7-F1-model_v4_TED02","TED highly-symmetric fold AF-R9XFX7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A566037","[Ashbya] aceris (nom. inval.)"]]},{"id":"NCBITaxon:568783","l":"Herbaspirillum aquaticum","na":1,"nb":1,"a":[["TED%3AAF-A0A225SUW3-F1-model_v4_TED01","TED novel fold AF-A0A225SUW3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A568783","Herbaspirillum aquaticum"]]},{"id":"NCBITaxon:568872","l":"Micromonospora rhizosphaerae","na":1,"nb":1,"a":[["TED%3AAF-A0A1C6SY29-F1-model_v4_TED01","TED novel fold AF-A0A1C6SY29-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A568872","Micromonospora rhizosphaerae"]]},{"id":"NCBITaxon:569860","l":"Methylovirgula ligni","na":1,"nb":1,"a":[["TED%3AAF-A0A3D9Z4S9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D9Z4S9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A569860","Methylovirgula ligni"]]},{"id":"NCBITaxon:57028","l":"Algoriphagus ratkowskyi","na":1,"nb":1,"a":[["TED%3AAF-A0A2W7R4D4-F1-model_v4_TED01","TED novel fold AF-A0A2W7R4D4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A57028","Algoriphagus ratkowskyi"]]},{"id":"NCBITaxon:57032","l":"Polaribacter sp. IC066","na":1,"nb":1,"a":[["TED%3AAF-A0A5C6YBD0-F1-model_v4_TED03","TED novel fold AF-A0A5C6YBD0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A57032","Polaribacter sp. IC066"]]},{"id":"NCBITaxon:570508","l":"Helicobacter pylori P12","na":1,"nb":1,"a":[["Pfam%3APF10788","Protein of unknown function (DUF2603)"]],"b":[["NCBITaxon%3A570508","Helicobacter pylori P12"]]},{"id":"NCBITaxon:570521","l":"Aquimarina spongiae","na":1,"nb":1,"a":[["TED%3AAF-A0A1M6JPL6-F1-model_v4_TED01","TED novel fold AF-A0A1M6JPL6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A570521","Aquimarina spongiae"]]},{"id":"NCBITaxon:571913","l":"Luteipulveratus mongoliensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0K1JRD2-F1-model_v4_TED02","TED novel fold AF-A0A0K1JRD2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A571913","Luteipulveratus mongoliensis"]]},{"id":"NCBITaxon:571915","l":"Corynebacterium mustelae","na":1,"nb":1,"a":[["TED%3AAF-A0A0G3GWZ2-F1-model_v4_TED02","TED novel fold AF-A0A0G3GWZ2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A571915","Corynebacterium mustelae"]]},{"id":"NCBITaxon:573321","l":"Chitinophaga rupis","na":1,"nb":1,"a":[["TED%3AAF-A0A1H7XSZ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H7XSZ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A573321","Chitinophaga rupis"]]},{"id":"NCBITaxon:573497","l":"Parafrankia colletiae","na":1,"nb":1,"a":[["TED%3AAF-A0A1S1QVH9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1S1QVH9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A573497","Parafrankia colletiae"]]},{"id":"NCBITaxon:573737","l":"Pandoraea oxalativorans","na":1,"nb":1,"a":[["TED%3AAF-A0A0G3IC85-F1-model_v4_TED03","TED novel fold AF-A0A0G3IC85-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A573737","Pandoraea oxalativorans"]]},{"id":"NCBITaxon:573841","l":"Sordaria araneosa","na":1,"nb":1,"a":[["Pfam%3APF26335","Beta-lactamase-like ARB_00930-like, C-terminal domain"]],"b":[["NCBITaxon%3A573841","Sordaria araneosa"]]},{"id":"NCBITaxon:574093","l":"Streptococcus pneumoniae AP200","na":1,"nb":1,"a":[["TED%3AAF-A0A806DTH4-F1-model_v4_TED01","TED novel fold AF-A0A806DTH4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A574093","Streptococcus pneumoniae AP200"]]},{"id":"NCBITaxon:574651","l":"Nocardioides terrae","na":1,"nb":1,"a":[["TED%3AAF-A0A1I1JAV8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I1JAV8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A574651","Nocardioides terrae"]]},{"id":"NCBITaxon:575615","l":"Prevotella sp. oral taxon 317 str. F0108","na":1,"nb":1,"a":[["TED%3AAF-D3IIH2-F1-model_v4_TED02","TED highly-symmetric fold AF-D3IIH2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A575615","Prevotella sp. oral taxon 317 str. F0108"]]},{"id":"NCBITaxon:576137","l":"Phialocephala subalpina","na":1,"nb":1,"a":[["TED%3AAF-A0A1L7XVQ2-F1-model_v4_TED02","TED novel fold AF-A0A1L7XVQ2-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A576137","Phialocephala subalpina"]]},{"id":"NCBITaxon:577680","l":"Prauserella sediminis","na":1,"nb":1,"a":[["TED%3AAF-A0A839XRH3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A839XRH3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A577680","Prauserella sediminis"]]},{"id":"NCBITaxon:578113","l":"Cytospora mali","na":1,"nb":1,"a":[["Pfam%3APF20684","Fungal rhodopsin domain"]],"b":[["NCBITaxon%3A578113","Cytospora mali"]]},{"id":"NCBITaxon:578454","l":"Lodderomyces parapsilosis CDC317","na":1,"nb":1,"a":[["TED%3AAF-G8BAN6-F1-model_v4_TED01","TED novel fold AF-G8BAN6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A578454","Lodderomyces parapsilosis CDC317"]]},{"id":"NCBITaxon:578942","l":"Dokdonella immobilis","na":1,"nb":1,"a":[["TED%3AAF-A0A1I5BC07-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5BC07-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A578942","Dokdonella immobilis"]]},{"id":"NCBITaxon:5804","l":"Eimeria maxima","na":1,"nb":1,"a":[["TED%3AAF-U6M890-F1-model_v4_TED01","TED novel fold AF-U6M890-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5804","Eimeria maxima"]]},{"id":"NCBITaxon:5807","l":"Cryptosporidium parvum","na":1,"nb":1,"a":[["TED%3AAF-P90625-F1-model_v4_TED02","TED highly-symmetric fold AF-P90625-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A5807","Cryptosporidium parvum"]]},{"id":"NCBITaxon:581036","l":"Paranoxybacillus vitaminiphilus","na":1,"nb":1,"a":[["TED%3AAF-A0A327Y0R2-F1-model_v4_TED01","TED novel fold AF-A0A327Y0R2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A581036","Paranoxybacillus vitaminiphilus"]]},{"id":"NCBITaxon:582672","l":"Methylobacterium phyllostachyos","na":1,"nb":1,"a":[["TED%3AAF-A0A1H0LP97-F1-model_v4_TED01","TED novel fold AF-A0A1H0LP97-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A582672","Methylobacterium phyllostachyos"]]},{"id":"NCBITaxon:582686","l":"Paenibacillus methanolicus","na":1,"nb":1,"a":[["TED%3AAF-A0A5S5C8J4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5S5C8J4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A582686","Paenibacillus methanolicus"]]},{"id":"NCBITaxon:5843","l":"Plasmodium falciparum NF54","na":1,"nb":1,"a":[["Pfam%3APF09716","Malarial early transcribed membrane protein (ETRAMP)"]],"b":[["NCBITaxon%3A5843","Plasmodium falciparum NF54"]]},{"id":"NCBITaxon:585055","l":"Escherichia coli 55989","na":1,"nb":1,"a":[["Pfam%3APF08364","Bacterial translation initiation factor IF-2 associated region"]],"b":[["NCBITaxon%3A585055","Escherichia coli 55989"]]},{"id":"NCBITaxon:5851","l":"Plasmodium knowlesi strain H","na":1,"nb":1,"a":[["TED%3AAF-A0A6H5FUY2-F1-model_v4_TED01","TED novel fold AF-A0A6H5FUY2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5851","Plasmodium knowlesi strain H"]]},{"id":"NCBITaxon:585425","l":"Synechococcus sp. KORDI-52","na":1,"nb":1,"a":[["TED%3AAF-A0A076HJJ9-F1-model_v4_TED03","TED novel fold AF-A0A076HJJ9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A585425","Synechococcus sp. KORDI-52"]]},{"id":"NCBITaxon:585455","l":"Thiohalobacter thiocyanaticus","na":1,"nb":1,"a":[["TED%3AAF-A0A1Z4VP45-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z4VP45-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A585455","Thiohalobacter thiocyanaticus"]]},{"id":"NCBITaxon:5858","l":"Plasmodium malariae","na":1,"nb":1,"a":[["TED%3AAF-A0A1C3L2T8-F1-model_v4_TED01","TED novel fold AF-A0A1C3L2T8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5858","Plasmodium malariae"]]},{"id":"NCBITaxon:5865","l":"Babesia bovis","na":1,"nb":1,"a":[["TED%3AAF-A7AUJ7-F1-model_v4_TED01","TED novel fold AF-A7AUJ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5865","Babesia bovis"]]},{"id":"NCBITaxon:5866","l":"Babesia bigemina","na":1,"nb":1,"a":[["TED%3AAF-A0A061D3T3-F1-model_v4_TED01","TED novel fold AF-A0A061D3T3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A5866","Babesia bigemina"]]},{"id":"NCBITaxon:5874","l":"Theileria annulata","na":1,"nb":1,"a":[["Pfam%3APF04385","Domain of unknown function, DUF529"]],"b":[["NCBITaxon%3A353154","Theileria annulata strain Ankara"]]},{"id":"NCBITaxon:5875","l":"Theileria parva","na":1,"nb":1,"a":[["TED%3AAF-Q4N7W8-F1-model_v4_TED01","TED novel fold AF-Q4N7W8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A333668","Theileria parva strain Muguga"]]},{"id":"NCBITaxon:587635","l":"Pseudoclavibacter chungangensis","na":1,"nb":1,"a":[["TED%3AAF-A0A7J5BNR9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7J5BNR9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A587635","Pseudoclavibacter chungangensis"]]},{"id":"NCBITaxon:587909","l":"Amycolatopsis arida","na":1,"nb":1,"a":[["TED%3AAF-A0A1I5ZJ74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5ZJ74-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A587909","Amycolatopsis arida"]]},{"id":"NCBITaxon:5885","l":"Paramecium caudatum","na":1,"nb":1,"a":[["PROSITE%3APS01213","Protozoan/cyanobacterial globins signature"]],"b":[["NCBITaxon%3A5885","Paramecium caudatum"]]},{"id":"NCBITaxon:58853","l":"Trichoderma citrinoviride","na":1,"nb":1,"a":[["TED%3AAF-A0A2T4BGG3-F1-model_v4_TED03","TED novel fold AF-A0A2T4BGG3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A58853","Trichoderma citrinoviride"]]},{"id":"NCBITaxon:588602","l":"Celeribacter neptunius","na":1,"nb":1,"a":[["TED%3AAF-A0A1I3LCJ8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I3LCJ8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A588602","Celeribacter neptunius"]]},{"id":"NCBITaxon:589162","l":"Gordonia crocea","na":1,"nb":1,"a":[["TED%3AAF-A0A7M3SUN3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7M3SUN3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A589162","Gordonia crocea"]]},{"id":"NCBITaxon:591153","l":"Pseudomonas syringae pv. syringae FF5","na":1,"nb":1,"a":[["Pfam%3APF26324","Type III secretion system effector HopBF1 kinase domain"]],"b":[["NCBITaxon%3A591153","Pseudomonas syringae pv. syringae FF5"]]},{"id":"NCBITaxon:592021","l":"Bacillus anthracis str. A0248","na":1,"nb":1,"a":[["Pfam%3APF10087","Uncharacterized protein conserved in bacteria (DUF2325)"]],"b":[["NCBITaxon%3A592021","Bacillus anthracis str. A0248"]]},{"id":"NCBITaxon:595453","l":"Rhodopirellula sp. SM50","na":1,"nb":1,"a":[["TED%3AAF-A0A2A2WGR6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A2WGR6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A595453","Rhodopirellula sp. SM50"]]},{"id":"NCBITaxon:595496","l":"Escherichia coli BW2952","na":1,"nb":1,"a":[["PROSITE%3APS01277","Ribonuclease PH signature"]],"b":[["NCBITaxon%3A595496","Escherichia coli BW2952"]]},{"id":"NCBITaxon:595589","l":"Hasllibacter halocynthiae","na":1,"nb":1,"a":[["TED%3AAF-A0A2T0X9U6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T0X9U6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A595589","Hasllibacter halocynthiae"]]},{"id":"NCBITaxon:595692","l":"Haloferula luteola","na":1,"nb":1,"a":[["TED%3AAF-A0A840V5I4-F1-model_v4_TED01","TED novel fold AF-A0A840V5I4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A595692","Haloferula luteola"]]},{"id":"NCBITaxon:59602","l":"Gelidibacter gilvus","na":1,"nb":1,"a":[["TED%3AAF-A0A4Q0XFJ8-F1-model_v4_TED02","TED novel fold AF-A0A4Q0XFJ8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A59602","Gelidibacter gilvus"]]},{"id":"NCBITaxon:596324","l":"Treponema vincentii ATCC 35580","na":1,"nb":1,"a":[["TED%3AAF-C8PMR0-F1-model_v4_TED02","TED novel fold AF-C8PMR0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A596324","Treponema vincentii ATCC 35580"]]},{"id":"NCBITaxon:596328","l":"Mobiluncus mulieris 28-1","na":1,"nb":1,"a":[["TED%3AAF-D0YQ80-F1-model_v4_TED02","TED novel fold AF-D0YQ80-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A596328","Mobiluncus mulieris 28-1"]]},{"id":"NCBITaxon:597","l":"Salmonella enterica subsp. enterica serovar Potsdam","na":1,"nb":1,"a":[["TED%3AAF-A0A736ZWD6-F1-model_v4_TED02","TED novel fold AF-A0A736ZWD6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A597","Salmonella enterica subsp. enterica serovar Potsdam"]]},{"id":"NCBITaxon:59813","l":"Mycolicibacterium novocastrense","na":1,"nb":1,"a":[["TED%3AAF-A0A100X5D1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A100X5D1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A59813","Mycolicibacterium novocastrense"]]},{"id":"NCBITaxon:598644","l":"Labedaea rhizosphaerae","na":1,"nb":1,"a":[["TED%3AAF-A0A4R6SQG8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4R6SQG8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A598644","Labedaea rhizosphaerae"]]},{"id":"NCBITaxon:599","l":"Salmonella sp.","na":1,"nb":1,"a":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"]],"b":[["NCBITaxon%3A599","Salmonella sp."]]},{"id":"NCBITaxon:59918","l":"Pseudomonas sp. 113","na":1,"nb":1,"a":[["Pfam%3APF10778","Halocarboxylic acid dehydrogenase DehI"]],"b":[["NCBITaxon%3A59918","Pseudomonas sp. 113"]]},{"id":"NCBITaxon:60172","l":"Penicillium solitum","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6R6Y6-F1-model_v4_TED01","TED novel fold AF-A0A1V6R6Y6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A60172","Penicillium solitum"]]},{"id":"NCBITaxon:604330","l":"Parafannyhessea umbonata","na":1,"nb":1,"a":[["TED%3AAF-A0A6N7XAR1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N7XAR1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A604330","Parafannyhessea umbonata"]]},{"id":"NCBITaxon:60450","l":"Kribbella sandramycini","na":1,"nb":1,"a":[["TED%3AAF-A0A7Y4L2B6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4L2B6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A60450","Kribbella sandramycini"]]},{"id":"NCBITaxon:607","l":"Salmonella enterica subsp. enterica serovar Abortusequi","na":1,"nb":1,"a":[["Pfam%3APF03614","Repressor of phase-1 flagellin"]],"b":[["NCBITaxon%3A607","Salmonella enterica subsp. enterica serovar Abortusequi"]]},{"id":"NCBITaxon:61186","l":"Monilinia laxa","na":1,"nb":1,"a":[["TED%3AAF-A0A5N6KDD7-F1-model_v4_TED01","TED novel fold AF-A0A5N6KDD7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A61186","Monilinia laxa"]]},{"id":"NCBITaxon:61366","l":"Fusarium oxysporum f. sp. cubense","na":1,"nb":1,"a":[["TED%3AAF-A0A559L4F8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A559L4F8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A61366","Fusarium oxysporum f. sp. cubense"]]},{"id":"NCBITaxon:61395","l":"Linderina pennispora","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y1WKF5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Y1WKF5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A61395","Linderina pennispora"]]},{"id":"NCBITaxon:61420","l":"Aspergillus caelatus","na":1,"nb":1,"a":[["TED%3AAF-A0A5N7ABH8-F1-model_v4_TED01","TED novel fold AF-A0A5N7ABH8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A61420","Aspergillus caelatus"]]},{"id":"NCBITaxon:616997","l":"Hoyosella altamirensis","na":1,"nb":1,"a":[["TED%3AAF-A0A839RM00-F1-model_v4_TED02","TED novel fold AF-A0A839RM00-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A616997","Hoyosella altamirensis"]]},{"id":"NCBITaxon:617123","l":"Lachnoanaerobaculum umeaense","na":1,"nb":1,"a":[["TED%3AAF-A0A385PY42-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A385PY42-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A617123","Lachnoanaerobaculum umeaense"]]},{"id":"NCBITaxon:619518","l":"Periwinkle leaf yellowing phytoplasma","na":1,"nb":1,"a":[["TED%3AAF-A0A531Y170-F1-model_v4_TED01","TED novel fold AF-A0A531Y170-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A619518","Periwinkle leaf yellowing phytoplasma"]]},{"id":"NCBITaxon:62101","l":"Candidatus Endobugula sertula","na":1,"nb":1,"a":[["TED%3AAF-A0A1D2QPY2-F1-model_v4_TED01","TED novel fold AF-A0A1D2QPY2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A62101","Candidatus Endobugula sertula"]]},{"id":"NCBITaxon:623280","l":"Parapedobacter luteus","na":1,"nb":1,"a":[["TED%3AAF-A0A1T5FI29-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1T5FI29-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A623280","Parapedobacter luteus"]]},{"id":"NCBITaxon:624147","l":"Paenibacillus tianmuensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1G4P9F5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G4P9F5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A624147","Paenibacillus tianmuensis"]]},{"id":"NCBITaxon:62626","l":"Bacillus sp. L7","na":1,"nb":1,"a":[["Pfam%3APF06439","3-keto-alpha-glucoside-1,2-lyase-like domain"]],"b":[["NCBITaxon%3A62626","Bacillus sp. L7"]]},{"id":"NCBITaxon:62708","l":"Golovinomyces cichoracearum","na":1,"nb":1,"a":[["TED%3AAF-A0A420ILE6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A420ILE6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A62708","Golovinomyces cichoracearum"]]},{"id":"NCBITaxon:627669","l":"Paraburkholderia humisilvae","na":1,"nb":1,"a":[["TED%3AAF-A0A6J5DRH8-F1-model_v4_TED06","TED novel fold AF-A0A6J5DRH8-F1-model_v4_TED06"]],"b":[["NCBITaxon%3A627669","Paraburkholderia humisilvae"]]},{"id":"NCBITaxon:630390","l":"Puccinia triticina 1-1 BBBD Race 1","na":1,"nb":1,"a":[["TED%3AAF-A0A180G462-F1-model_v4_TED01","TED novel fold AF-A0A180G462-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A630390","Puccinia triticina 1-1 BBBD Race 1"]]},{"id":"NCBITaxon:631362","l":"Thiorhodovibrio frisius","na":1,"nb":1,"a":[["TED%3AAF-H8Z8I7-F1-model_v4_TED02","TED highly-symmetric fold AF-H8Z8I7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A631362","Thiorhodovibrio frisius"]]},{"id":"NCBITaxon:63186","l":"Zobellia galactanivorans","na":1,"nb":1,"a":[["Pfam%3APF21254","Beta-agarase/YXIM esterase-like, galactose-binding domain-like"]],"b":[["NCBITaxon%3A63186","Zobellia galactanivorans"]]},{"id":"NCBITaxon:634155","l":"Pseudofulvimonas gallinarii","na":1,"nb":1,"a":[["TED%3AAF-A0A4R3L239-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R3L239-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A634155","Pseudofulvimonas gallinarii"]]},{"id":"NCBITaxon:634430","l":"Sphingomonas rubra","na":1,"nb":1,"a":[["TED%3AAF-A0A1I5S136-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5S136-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A634430","Sphingomonas rubra"]]},{"id":"NCBITaxon:634436","l":"Marisediminitalea aggregata","na":1,"nb":1,"a":[["TED%3AAF-A0A1M5JV92-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M5JV92-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A634436","Marisediminitalea aggregata"]]},{"id":"NCBITaxon:634500","l":"Erwinia billingiae Eb661","na":1,"nb":1,"a":[["PROSITE%3APS01090","TatD deoxyribonuclease family signature 2"]],"b":[["NCBITaxon%3A634500","Erwinia billingiae Eb661"]]},{"id":"NCBITaxon:634503","l":"Edwardsiella ictaluri 93-146","na":1,"nb":1,"a":[["Pfam%3APF13436","Glycine-zipper domain"]],"b":[["NCBITaxon%3A634503","Edwardsiella ictaluri 93-146"]]},{"id":"NCBITaxon:634765","l":"Cocleimonas flava","na":1,"nb":1,"a":[["TED%3AAF-A0A4R1EZF7-F1-model_v4_TED02","TED novel fold AF-A0A4R1EZF7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A634765","Cocleimonas flava"]]},{"id":"NCBITaxon:634771","l":"Chitinophaga eiseniae","na":1,"nb":1,"a":[["TED%3AAF-A0A847SE20-F1-model_v4_TED01","TED novel fold AF-A0A847SE20-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A634771","Chitinophaga eiseniae"]]},{"id":"NCBITaxon:634994","l":"Leptotrichia hofstadii F0254","na":1,"nb":1,"a":[["TED%3AAF-C9MWZ9-F1-model_v4_TED01","TED novel fold AF-C9MWZ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A634994","Leptotrichia hofstadii F0254"]]},{"id":"NCBITaxon:63605","l":"Percolomonas cosmopolitus","na":1,"nb":1,"a":[["TED%3AAF-A0A7S1KQY9-F1-model_v4_TED03","TED novel fold AF-A0A7S1KQY9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A63605","Percolomonas cosmopolitus"]]},{"id":"NCBITaxon:638953","l":"Georgenia soli","na":1,"nb":1,"a":[["TED%3AAF-A0A2A9EKA8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A9EKA8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A638953","Georgenia soli"]]},{"id":"NCBITaxon:640635","l":"Paramicrobacterium humi","na":1,"nb":1,"a":[["TED%3AAF-A0A1H4KEB2-F1-model_v4_TED01","TED novel fold AF-A0A1H4KEB2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A640635","Paramicrobacterium humi"]]},{"id":"NCBITaxon:641309","l":"Lotharella oceanica","na":1,"nb":1,"a":[["TED%3AAF-A0A7S2TV18-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7S2TV18-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A641309","Lotharella oceanica"]]},{"id":"NCBITaxon:641491","l":"Pseudodesulfovibrio mercurii","na":1,"nb":1,"a":[["Pfam%3APF03599","CO dehydrogenase/acetyl-CoA synthase delta subunit"]],"b":[["NCBITaxon%3A641491","Pseudodesulfovibrio mercurii"]]},{"id":"NCBITaxon:641702","l":"Zhongshania antarctica","na":1,"nb":1,"a":[["TED%3AAF-A0A840R1B7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A840R1B7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A641702","Zhongshania antarctica"]]},{"id":"NCBITaxon:642776","l":"Pedococcus badiiscoriae","na":1,"nb":1,"a":[["TED%3AAF-A0A852WAS0-F1-model_v4_TED01","TED novel fold AF-A0A852WAS0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A642776","Pedococcus badiiscoriae"]]},{"id":"NCBITaxon:643052","l":"Allocatelliglobosispora scoriae","na":1,"nb":1,"a":[["TED%3AAF-A0A841BPG9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841BPG9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A643052","Allocatelliglobosispora scoriae"]]},{"id":"NCBITaxon:643403","l":"Streptomyces sp. MK730-62F2","na":1,"nb":1,"a":[["Pfam%3APF14269","Arylsulfotransferase (ASST)"]],"b":[["NCBITaxon%3A643403","Streptomyces sp. MK730-62F2"]]},{"id":"NCBITaxon:644221","l":"Arenicella xantha","na":1,"nb":1,"a":[["TED%3AAF-A0A395JN40-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A395JN40-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A644221","Arenicella xantha"]]},{"id":"NCBITaxon:644281","l":"Methanocaldococcus sp. FS406-22","na":1,"nb":1,"a":[["TED%3AAF-D3S6J5-F1-model_v4_TED01","TED highly-symmetric fold AF-D3S6J5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A644281","Methanocaldococcus sp. FS406-22"]]},{"id":"NCBITaxon:64660","l":"Lyophyllum decastes","na":1,"nb":1,"a":[["Pfam%3APF21691","Alpha-galactosyl binding lectin"]],"b":[["NCBITaxon%3A64660","Lyophyllum decastes"]]},{"id":"NCBITaxon:648782","l":"Ruania alba","na":1,"nb":1,"a":[["TED%3AAF-A0A1H5MJT8-F1-model_v4_TED01","TED novel fold AF-A0A1H5MJT8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A648782","Ruania alba"]]},{"id":"NCBITaxon:64969","l":"Oceanospirillum multiglobuliferum","na":1,"nb":1,"a":[["TED%3AAF-A0A1V4T0G8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V4T0G8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A64969","Oceanospirillum multiglobuliferum"]]},{"id":"NCBITaxon:649760","l":"Segatella oris F0302","na":1,"nb":1,"a":[["TED%3AAF-D1QV56-F1-model_v4_TED02","TED novel fold AF-D1QV56-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A649760","Segatella oris F0302"]]},{"id":"NCBITaxon:649831","l":"Actinoplanes sp. N902-109","na":1,"nb":1,"a":[["TED%3AAF-R4L963-F1-model_v4_TED01","TED highly-symmetric fold AF-R4L963-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A649831","Actinoplanes sp. N902-109"]]},{"id":"NCBITaxon:65067","l":"Pseudomonas sp. P51","na":1,"nb":1,"a":[["Pfam%3APF01738","Dienelactone hydrolase family"]],"b":[["NCBITaxon%3A65067","Pseudomonas sp. P51"]]},{"id":"NCBITaxon:651869","l":"Pedobacter yonginensis","na":1,"nb":1,"a":[["TED%3AAF-A0A317EPM9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A317EPM9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A651869","Pedobacter yonginensis"]]},{"id":"NCBITaxon:652103","l":"Rhodopseudomonas palustris DX-1","na":1,"nb":1,"a":[["TED%3AAF-E6VQ23-F1-model_v4_TED02","TED novel fold AF-E6VQ23-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A652103","Rhodopseudomonas palustris DX-1"]]},{"id":"NCBITaxon:652616","l":"Mycobacterium tuberculosis str. Erdman = ATCC 35801","na":1,"nb":1,"a":[["Pfam%3APF03990","G5-linked-Ubiquitin-like domain"]],"b":[["NCBITaxon%3A652616","Mycobacterium tuberculosis str. Erdman = ATCC 35801"]]},{"id":"NCBITaxon:652834","l":"Palpitomonas bilix","na":1,"nb":1,"a":[["TED%3AAF-A0A7S3DJ10-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7S3DJ10-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A652834","Palpitomonas bilix"]]},{"id":"NCBITaxon:655353","l":"Cohaesibacter marisflavi","na":1,"nb":1,"a":[["TED%3AAF-A0A1I5AHY1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5AHY1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A655353","Cohaesibacter marisflavi"]]},{"id":"NCBITaxon:656178","l":"Pandoraea vervacti","na":1,"nb":1,"a":[["TED%3AAF-A0A0C5JU44-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0C5JU44-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A656178","Pandoraea vervacti"]]},{"id":"NCBITaxon:657324","l":"Butyrivibrio fibrisolvens 16/4","na":1,"nb":1,"a":[["TED%3AAF-D4IWJ1-F1-model_v4_TED01","TED novel fold AF-D4IWJ1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A657324","Butyrivibrio fibrisolvens 16/4"]]},{"id":"NCBITaxon:658081","l":"Lachnospiraceae bacterium 1_1_57FAA","na":1,"nb":1,"a":[["TED%3AAF-A0A828T3B1-F1-model_v4_TED01","TED novel fold AF-A0A828T3B1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A658081","Lachnospiraceae bacterium 1_1_57FAA"]]},{"id":"NCBITaxon:658082","l":"Lachnospiraceae bacterium 2_1_58FAA","na":1,"nb":1,"a":[["TED%3AAF-F7K152-F1-model_v4_TED01","TED highly-symmetric fold AF-F7K152-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A658082","Lachnospiraceae bacterium 2_1_58FAA"]]},{"id":"NCBITaxon:658083","l":"Lachnospiraceae bacterium 6_1_63FAA","na":1,"nb":1,"a":[["TED%3AAF-F3AG07-F1-model_v4_TED01","TED novel fold AF-F3AG07-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A658083","Lachnospiraceae bacterium 6_1_63FAA"]]},{"id":"NCBITaxon:658087","l":"Lachnospiraceae bacterium 7_1_58FAA","na":1,"nb":1,"a":[["TED%3AAF-H1CD99-F1-model_v4_TED01","TED novel fold AF-H1CD99-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A658087","Lachnospiraceae bacterium 7_1_58FAA"]]},{"id":"NCBITaxon:658457","l":"Ectopseudomonas composti","na":1,"nb":1,"a":[["TED%3AAF-A0A1I5P4N2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I5P4N2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A658457","Ectopseudomonas composti"]]},{"id":"NCBITaxon:658473","l":"Mycena chlorophos","na":1,"nb":1,"a":[["TED%3AAF-A0A146IIG4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A146IIG4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A658473","Mycena chlorophos"]]},{"id":"NCBITaxon:658656","l":"Lachnospiraceae bacterium 6_1_37FAA","na":1,"nb":1,"a":[["TED%3AAF-E9RXV7-F1-model_v4_TED02","TED novel fold AF-E9RXV7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A658656","Lachnospiraceae bacterium 6_1_37FAA"]]},{"id":"NCBITaxon:659014","l":"Dyadobacter soli","na":1,"nb":1,"a":[["TED%3AAF-A0A1G7LMR8-F1-model_v4_TED01","TED novel fold AF-A0A1G7LMR8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A659014","Dyadobacter soli"]]},{"id":"NCBITaxon:659352","l":"Actinacidiphila reveromycinica","na":1,"nb":1,"a":[["TED%3AAF-A0A7U3V0R8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7U3V0R8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A659352","Actinacidiphila reveromycinica"]]},{"id":"NCBITaxon:660518","l":"Halorientalis regularis","na":1,"nb":1,"a":[["TED%3AAF-A0A1G7SGU8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1G7SGU8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A660518","Halorientalis regularis"]]},{"id":"NCBITaxon:660521","l":"Halogranum gelatinilyticum","na":1,"nb":1,"a":[["TED%3AAF-A0A1G9YFY0-F1-model_v4_TED01","TED novel fold AF-A0A1G9YFY0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A660521","Halogranum gelatinilyticum"]]},{"id":"NCBITaxon:661087","l":"Olsenella sp. oral taxon 809 str. F0356","na":1,"nb":1,"a":[["TED%3AAF-G5F4Y6-F1-model_v4_TED01","TED novel fold AF-G5F4Y6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A661087","Olsenella sp. oral taxon 809 str. F0356"]]},{"id":"NCBITaxon:661481","l":"Flavisolibacter ginsenosidimutans","na":1,"nb":1,"a":[["TED%3AAF-A0A5B8ULK9-F1-model_v4_TED01","TED novel fold AF-A0A5B8ULK9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A661481","Flavisolibacter ginsenosidimutans"]]},{"id":"NCBITaxon:661485","l":"Nocardioides pocheonensis","na":1,"nb":1,"a":[["TED%3AAF-A0A3N0GF74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3N0GF74-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A661485","Nocardioides pocheonensis"]]},{"id":"NCBITaxon:662880","l":"Deinococcus humi","na":1,"nb":1,"a":[["TED%3AAF-A0A7W8NGF0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W8NGF0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A662880","Deinococcus humi"]]},{"id":"NCBITaxon:66374","l":"Streptomyces nojiriensis","na":1,"nb":1,"a":[["TED%3AAF-A0A8A6HBY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8A6HBY6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A66374","Streptomyces nojiriensis"]]},{"id":"NCBITaxon:663917","l":"Geobacter sulfurreducens KN400","na":1,"nb":1,"a":[["Pfam%3APF13435","Cytochrome c554 and c-prime"]],"b":[["NCBITaxon%3A663917","Geobacter sulfurreducens KN400"]]},{"id":"NCBITaxon:66425","l":"Streptomyces luteoverticillatus","na":1,"nb":1,"a":[["TED%3AAF-A0A3S9PBS5-F1-model_v4_TED01","TED novel fold AF-A0A3S9PBS5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A66425","Streptomyces luteoverticillatus"]]},{"id":"NCBITaxon:66431","l":"Streptomyces thioluteus","na":1,"nb":1,"a":[["Pfam%3APF11583","P-aminobenzoate N-oxygenase AurF"]],"b":[["NCBITaxon%3A66431","Streptomyces thioluteus"]]},{"id":"NCBITaxon:664642","l":"Winogradskyella pacifica","na":1,"nb":1,"a":[["TED%3AAF-A0A3D9LNT4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3D9LNT4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A664642","Winogradskyella pacifica"]]},{"id":"NCBITaxon:664692","l":"Amycolatopsis pithecellobii","na":1,"nb":1,"a":[["TED%3AAF-A0A6N7YX54-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A6N7YX54-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A664692","Amycolatopsis pithecellobii"]]},{"id":"NCBITaxon:665952","l":"Bacillus smithii 7_3_47FAA","na":1,"nb":1,"a":[["TED%3AAF-G9QHT9-F1-model_v4_TED01","TED novel fold AF-G9QHT9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A665952","Bacillus smithii 7_3_47FAA"]]},{"id":"NCBITaxon:670079","l":"Paeniglutamicibacter cryotolerans","na":1,"nb":1,"a":[["TED%3AAF-A0A839QL01-F1-model_v4_TED02","TED novel fold AF-A0A839QL01-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A670079","Paeniglutamicibacter cryotolerans"]]},{"id":"NCBITaxon:670154","l":"Litoreibacter janthinus","na":1,"nb":1,"a":[["TED%3AAF-A0A1I6H8Z4-F1-model_v4_TED01","TED novel fold AF-A0A1I6H8Z4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A670154","Litoreibacter janthinus"]]},{"id":"NCBITaxon:670155","l":"Litoreibacter albidus","na":1,"nb":1,"a":[["TED%3AAF-A0A1H3D3B7-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A1H3D3B7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A670155","Litoreibacter albidus"]]},{"id":"NCBITaxon:670289","l":"Adhaeribacter aerolatus","na":1,"nb":1,"a":[["TED%3AAF-A0A512ASX5-F1-model_v4_TED02","TED novel fold AF-A0A512ASX5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A670289","Adhaeribacter aerolatus"]]},{"id":"NCBITaxon:670307","l":"Hyphomicrobium denitrificans 1NES1","na":1,"nb":1,"a":[["TED%3AAF-N0B293-F1-model_v4_TED01","TED novel fold AF-N0B293-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A670307","Hyphomicrobium denitrificans 1NES1"]]},{"id":"NCBITaxon:67081","l":"Mycolicibacterium alvei","na":1,"nb":1,"a":[["TED%3AAF-A0A6N4UYN8-F1-model_v4_TED01","TED novel fold AF-A0A6N4UYN8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A67081","Mycolicibacterium alvei"]]},{"id":"NCBITaxon:671072","l":"Planktothrix tepida PCC 9214","na":1,"nb":1,"a":[["TED%3AAF-A0A1J1LHF8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1J1LHF8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A671072","Planktothrix tepida PCC 9214"]]},{"id":"NCBITaxon:671144","l":"Wallemia mellicola CBS 633.66","na":1,"nb":1,"a":[["TED%3AAF-I4Y6Q3-F1-model_v4_TED01","TED novel fold AF-I4Y6Q3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A671144","Wallemia mellicola CBS 633.66"]]},{"id":"NCBITaxon:67339","l":"Streptomyces orinoci","na":1,"nb":1,"a":[["Pfam%3APF09277","Erythronolide synthase, docking"]],"b":[["NCBITaxon%3A67339","Streptomyces orinoci"]]},{"id":"NCBITaxon:674703","l":"Rugositalea oryzae","na":1,"nb":1,"a":[["TED%3AAF-A0A127EZQ2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A127EZQ2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A674703","Rugositalea oryzae"]]},{"id":"NCBITaxon:676965","l":"Neomoorella humiferrea","na":1,"nb":1,"a":[["TED%3AAF-A0A2T0AME3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2T0AME3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A676965","Neomoorella humiferrea"]]},{"id":"NCBITaxon:67723","l":"Amanita phalloides","na":1,"nb":1,"a":[["Pfam%3APF24112","Amanitin toxin"]],"b":[["NCBITaxon%3A67723","Amanita phalloides"]]},{"id":"NCBITaxon:678601","l":"Staphylococcus sp. CDC3","na":1,"nb":1,"a":[["TED%3AAF-D2J704-F1-model_v4_TED01","TED novel fold AF-D2J704-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A678601","Staphylococcus sp. CDC3"]]},{"id":"NCBITaxon:679191","l":"Prevotella amnii CRIS 21A-A","na":1,"nb":1,"a":[["TED%3AAF-E1GW40-F1-model_v4_TED02","TED highly-symmetric fold AF-E1GW40-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A679191","Prevotella amnii CRIS 21A-A"]]},{"id":"NCBITaxon:679199","l":"Alloprevotella rava F0323","na":1,"nb":1,"a":[["TED%3AAF-G5GDR7-F1-model_v4_TED02","TED novel fold AF-G5GDR7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A679199","Alloprevotella rava F0323"]]},{"id":"NCBITaxon:68044","l":"Streptomyces libani subsp. libani","na":1,"nb":1,"a":[["TED%3AAF-A0A640TLY2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A640TLY2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A1920","Streptomyces nigrescens"]]},{"id":"NCBITaxon:681627","l":"Micrococcus sp. TA1","na":1,"nb":1,"a":[["TED%3AAF-A0A7W9CR57-F1-model_v4_TED01","TED novel fold AF-A0A7W9CR57-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A681627","Micrococcus sp. TA1"]]},{"id":"NCBITaxon:68223","l":"Streptomyces katrae","na":1,"nb":1,"a":[["TED%3AAF-A0A0F4IUW3-F1-model_v4_TED02","TED novel fold AF-A0A0F4IUW3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A68223","Streptomyces katrae"]]},{"id":"NCBITaxon:68231","l":"Streptomyces longwoodensis","na":1,"nb":1,"a":[["TED%3AAF-A0A117QN81-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A117QN81-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A68231","Streptomyces longwoodensis"]]},{"id":"NCBITaxon:686389","l":"Ruegeria faecimaris","na":1,"nb":1,"a":[["TED%3AAF-A0A521DJY9-F1-model_v4_TED01","TED novel fold AF-A0A521DJY9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A686389","Ruegeria faecimaris"]]},{"id":"NCBITaxon:686666","l":"Bombiscardovia coagulans","na":1,"nb":1,"a":[["TED%3AAF-A0A261EVD5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A261EVD5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A686666","Bombiscardovia coagulans"]]},{"id":"NCBITaxon:686796","l":"Algoriphagus faecimaris","na":1,"nb":1,"a":[["TED%3AAF-A0A1G6UW39-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1G6UW39-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A686796","Algoriphagus faecimaris"]]},{"id":"NCBITaxon:687207","l":"Spinactinospora alkalitolerans","na":1,"nb":1,"a":[["TED%3AAF-A0A852U571-F1-model_v4_TED01","TED novel fold AF-A0A852U571-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A687207","Spinactinospora alkalitolerans"]]},{"id":"NCBITaxon:688245","l":"Comamonas testosteroni CNB-2","na":1,"nb":1,"a":[["TED%3AAF-D0IY66-F1-model_v4_TED01","TED novel fold AF-D0IY66-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A688245","Comamonas testosteroni CNB-2"]]},{"id":"NCBITaxon:688867","l":"Ohtaekwangia koreensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1T5MFB7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1T5MFB7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A688867","Ohtaekwangia koreensis"]]},{"id":"NCBITaxon:69011","l":"Pseudomonas sp. C18","na":1,"nb":1,"a":[["PROSITE%3APS00570","Bacterial ring hydroxylating dioxygenases alpha-subunit signature"]],"b":[["NCBITaxon%3A69011","Pseudomonas sp. C18"]]},{"id":"NCBITaxon:69222","l":"Erwinia mallotivora","na":1,"nb":1,"a":[["TED%3AAF-A0A014LYI4-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A014LYI4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A69222","Erwinia mallotivora"]]},{"id":"NCBITaxon:692370","l":"Tsuneonella dongtanensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1B2A8X4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1B2A8X4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A692370","Tsuneonella dongtanensis"]]},{"id":"NCBITaxon:692418","l":"Reichenbachiella faecimaris","na":1,"nb":1,"a":[["TED%3AAF-A0A1W2GN32-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W2GN32-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A692418","Reichenbachiella faecimaris"]]},{"id":"NCBITaxon:69362","l":"Microbacterium schleiferi","na":1,"nb":1,"a":[["TED%3AAF-A0A7S8RHS8-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7S8RHS8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A69362","Microbacterium schleiferi"]]},{"id":"NCBITaxon:69392","l":"Stenotrophomonas sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A6N8APF4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N8APF4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A69392","Stenotrophomonas sp."]]},{"id":"NCBITaxon:69656","l":"Sulfurisphaera ohwakuensis","na":1,"nb":1,"a":[["TED%3AAF-A0A650CK52-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A650CK52-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A69656","Sulfurisphaera ohwakuensis"]]},{"id":"NCBITaxon:696762","l":"Planktotalea frisia","na":1,"nb":1,"a":[["TED%3AAF-A0A1L9NVP8-F1-model_v4_TED01","TED novel fold AF-A0A1L9NVP8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A696762","Planktotalea frisia"]]},{"id":"NCBITaxon:69771","l":"Penicillium decumbens","na":1,"nb":1,"a":[["TED%3AAF-A0A1V6PJ92-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1V6PJ92-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A69771","Penicillium decumbens"]]},{"id":"NCBITaxon:69774","l":"Penicillium herquei","na":1,"nb":1,"a":[["Pfam%3APF11578","Protein of unknown function (DUF3237)"]],"b":[["NCBITaxon%3A69774","Penicillium herquei"]]},{"id":"NCBITaxon:698760","l":"Streptomyces turgidiscabies Car8","na":1,"nb":1,"a":[["TED%3AAF-L7F7V3-F1-model_v4_TED02","TED highly-symmetric fold AF-L7F7V3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A698760","Streptomyces turgidiscabies Car8"]]},{"id":"NCBITaxon:698960","l":"Gardnerella greenwoodii 00703Dmash","na":1,"nb":1,"a":[["TED%3AAF-I4M7N5-F1-model_v4_TED02","TED novel fold AF-I4M7N5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A698960","Gardnerella greenwoodii 00703Dmash"]]},{"id":"NCBITaxon:698964","l":"Corynebacterium diphtheriae PW8","na":1,"nb":1,"a":[["Pfam%3APF18357","Diphteria toxin repressor SH3 domain"]],"b":[["NCBITaxon%3A698964","Corynebacterium diphtheriae PW8"]]},{"id":"NCBITaxon:699433","l":"Halobellus limi","na":1,"nb":1,"a":[["TED%3AAF-A0A1H6AHR3-F1-model_v4_TED03","TED novel fold AF-A0A1H6AHR3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A699433","Halobellus limi"]]},{"id":"NCBITaxon:69964","l":"Azotobacter salinestris","na":1,"nb":1,"a":[["Pfam%3APF03139","Vanadium/alternative nitrogenase delta subunit"]],"b":[["NCBITaxon%3A69964","Azotobacter salinestris"]]},{"id":"NCBITaxon:69969","l":"Macrococcus carouselicus","na":1,"nb":1,"a":[["TED%3AAF-A0A4R6BCC8-F1-model_v4_TED01","TED novel fold AF-A0A4R6BCC8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A69969","Macrococcus carouselicus"]]},{"id":"NCBITaxon:700599","l":"Streptomyces lonarensis","na":1,"nb":1,"a":[["TED%3AAF-A0A7X6I180-F1-model_v4_TED02","TED novel fold AF-A0A7X6I180-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A700599","Streptomyces lonarensis"]]},{"id":"NCBITaxon:702459","l":"Bifidobacterium bifidum PRL2010","na":1,"nb":1,"a":[["TED%3AAF-A0A0H3E8C8-F1-model_v4_TED01","TED novel fold AF-A0A0H3E8C8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A702459","Bifidobacterium bifidum PRL2010"]]},{"id":"NCBITaxon:703756","l":"Colletotrichum simmondsii","na":1,"nb":1,"a":[["TED%3AAF-A0A135SIS0-F1-model_v4_TED01","TED novel fold AF-A0A135SIS0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A703756","Colletotrichum simmondsii"]]},{"id":"NCBITaxon:708113","l":"Terrihabitans soli","na":1,"nb":1,"a":[["TED%3AAF-A0A6S6QVM7-F1-model_v4_TED02","TED novel fold AF-A0A6S6QVM7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A708113","Terrihabitans soli"]]},{"id":"NCBITaxon:708197","l":"Colletotrichum tofieldiae","na":1,"nb":1,"a":[["TED%3AAF-A0A166YTK0-F1-model_v4_TED01","TED novel fold AF-A0A166YTK0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A708197","Colletotrichum tofieldiae"]]},{"id":"NCBITaxon:708627","l":"Timspurckia oligopyrenoides","na":1,"nb":1,"a":[["TED%3AAF-A0A6T6NS67-F1-model_v4_TED01","TED novel fold AF-A0A6T6NS67-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A708627","Timspurckia oligopyrenoides"]]},{"id":"NCBITaxon:709839","l":"Noviherbaspirillum autotrophicum","na":1,"nb":1,"a":[["TED%3AAF-A0A0C2BU50-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0C2BU50-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A709839","Noviherbaspirillum autotrophicum"]]},{"id":"NCBITaxon:709868","l":"Micromonospora ureilytica","na":1,"nb":1,"a":[["TED%3AAF-A0A3N9Y1R3-F1-model_v4_TED01","TED novel fold AF-A0A3N9Y1R3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A709868","Micromonospora ureilytica"]]},{"id":"NCBITaxon:712528","l":"Selenomonas sp. oral taxon 126","na":1,"nb":1,"a":[["TED%3AAF-A0A1B1I4K0-F1-model_v4_TED02","TED novel fold AF-A0A1B1I4K0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A712528","Selenomonas sp. oral taxon 126"]]},{"id":"NCBITaxon:713054","l":"TM7 phylum sp. oral taxon 352","na":1,"nb":1,"a":[["TED%3AAF-A0A563CU50-F1-model_v4_TED02","TED novel fold AF-A0A563CU50-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A713054","TM7 phylum sp. oral taxon 352"]]},{"id":"NCBITaxon:713588","l":"Kaistella chaponensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1N7M6E6-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1N7M6E6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A713588","Kaistella chaponensis"]]},{"id":"NCBITaxon:714109","l":"Phytomonospora endophytica","na":1,"nb":1,"a":[["TED%3AAF-A0A841FHS0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841FHS0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A714109","Phytomonospora endophytica"]]},{"id":"NCBITaxon:714307","l":"Salinicoccus kekensis","na":1,"nb":1,"a":[["TED%3AAF-A0A285UCB1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A285UCB1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A714307","Salinicoccus kekensis"]]},{"id":"NCBITaxon:714359","l":"Bacillus thuringiensis BMB171","na":1,"nb":1,"a":[["Pfam%3APF10372","Diadenylate cyclase CdaS, N-terminal"]],"b":[["NCBITaxon%3A714359","Bacillus thuringiensis BMB171"]]},{"id":"NCBITaxon:71517","l":"Salmonella enterica subsp. enterica serovar Naestved","na":1,"nb":1,"a":[["Pfam%3APF22370","Flagellin, beta sheet domain"]],"b":[["NCBITaxon%3A71517","Salmonella enterica subsp. enterica serovar Naestved"]]},{"id":"NCBITaxon:716813","l":"Psychrosphaera saromensis","na":1,"nb":1,"a":[["TED%3AAF-A0A2S7UY79-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2S7UY79-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A716813","Psychrosphaera saromensis"]]},{"id":"NCBITaxon:716816","l":"Oceanicoccus sagamiensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1X9ND04-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1X9ND04-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A716816","Oceanicoccus sagamiensis"]]},{"id":"NCBITaxon:71717","l":"Coprinellus micaceus","na":1,"nb":1,"a":[["TED%3AAF-A0A4Y7TIK8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y7TIK8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A71717","Coprinellus micaceus"]]},{"id":"NCBITaxon:71784","l":"Naematelia encephala","na":1,"nb":1,"a":[["TED%3AAF-A0A1Y2BG45-F1-model_v4_TED01","TED novel fold AF-A0A1Y2BG45-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A71784","Naematelia encephala"]]},{"id":"NCBITaxon:717961","l":"[Eubacterium] siraeum V10Sc8a","na":1,"nb":1,"a":[["TED%3AAF-D4MLV9-F1-model_v4_TED02","TED novel fold AF-D4MLV9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A717961","[Eubacterium] siraeum V10Sc8a"]]},{"id":"NCBITaxon:718192","l":"Litorilituus sediminis","na":1,"nb":1,"a":[["TED%3AAF-A0A4P6P0V5-F1-model_v4_TED02","TED novel fold AF-A0A4P6P0V5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A718192","Litorilituus sediminis"]]},{"id":"NCBITaxon:718252","l":"Faecalibacterium prausnitzii L2-6","na":1,"nb":1,"a":[["TED%3AAF-D4JYM3-F1-model_v4_TED01","TED novel fold AF-D4JYM3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A718252","Faecalibacterium prausnitzii L2-6"]]},{"id":"NCBITaxon:722","l":"Actinobacillus seminis","na":1,"nb":1,"a":[["TED%3AAF-A0A263HFT1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A263HFT1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A722","Actinobacillus seminis"]]},{"id":"NCBITaxon:722472","l":"Bradyrhizobium lablabi","na":1,"nb":1,"a":[["TED%3AAF-A0A2H9VHY8-F1-model_v4_TED01","TED novel fold AF-A0A2H9VHY8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A722472","Bradyrhizobium lablabi"]]},{"id":"NCBITaxon:72559","l":"Sporisorium reilianum f. sp. reilianum","na":1,"nb":1,"a":[["TED%3AAF-A0A2N8U7J1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2N8U7J1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A72559","Sporisorium reilianum f. sp. reilianum"]]},{"id":"NCBITaxon:72582","l":"Clostridium sp. G0005","na":1,"nb":1,"a":[["Pfam%3APF09137","Glucodextranase, domain N"]],"b":[["NCBITaxon%3A72582","Clostridium sp. G0005"]]},{"id":"NCBITaxon:72588","l":"Pseudomonas sp. SMP1","na":1,"nb":1,"a":[["Pfam%3APF21331","Isoamylase, C-terminal"]],"b":[["NCBITaxon%3A72588","Pseudomonas sp. SMP1"]]},{"id":"NCBITaxon:72803","l":"Thermococcus siculi","na":1,"nb":1,"a":[["TED%3AAF-A0A2Z2MNQ0-F1-model_v4_TED02","TED novel fold AF-A0A2Z2MNQ0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A72803","Thermococcus siculi"]]},{"id":"NCBITaxon:732238","l":"Povalibacter uvarum","na":1,"nb":1,"a":[["TED%3AAF-A0A841HPM8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A841HPM8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A732238","Povalibacter uvarum"]]},{"id":"NCBITaxon:742013","l":"Delftia sp. Cs1-4","na":1,"nb":1,"a":[["TED%3AAF-F6AQI2-F1-model_v4_TED01","TED highly-symmetric fold AF-F6AQI2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A742013","Delftia sp. Cs1-4"]]},{"id":"NCBITaxon:742159","l":"Achromobacter piechaudii ATCC 43553","na":1,"nb":1,"a":[["TED%3AAF-D4X3P5-F1-model_v4_TED01","TED highly-symmetric fold AF-D4X3P5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A742159","Achromobacter piechaudii ATCC 43553"]]},{"id":"NCBITaxon:742722","l":"Collinsella sp. 4_8_47FAA","na":1,"nb":1,"a":[["TED%3AAF-A0A096LKL7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A096LKL7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A742722","Collinsella sp. 4_8_47FAA"]]},{"id":"NCBITaxon:742740","l":"[Clostridium] symbiosum WAL-14163","na":1,"nb":1,"a":[["Pfam%3APF12641","Flavodoxin domain"]],"b":[["NCBITaxon%3A742740","[Clostridium] symbiosum WAL-14163"]]},{"id":"NCBITaxon:742823","l":"Sutterella wadsworthensis 2_1_59BFAA","na":1,"nb":1,"a":[["TED%3AAF-K1JL38-F1-model_v4_TED02","TED highly-symmetric fold AF-K1JL38-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A742823","Sutterella wadsworthensis 2_1_59BFAA"]]},{"id":"NCBITaxon:74316","l":"Brevundimonas aurantiaca","na":1,"nb":1,"a":[["TED%3AAF-A0A7W9C3G8-F1-model_v4_TED03","TED novel fold AF-A0A7W9C3G8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A74316","Brevundimonas aurantiaca"]]},{"id":"NCBITaxon:74329","l":"Brevundimonas mediterranea","na":1,"nb":1,"a":[["TED%3AAF-A0A7Z8Y2I5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7Z8Y2I5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A74329","Brevundimonas mediterranea"]]},{"id":"NCBITaxon:743525","l":"Thermus scotoductus SA-01","na":1,"nb":1,"a":[["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"]],"b":[["NCBITaxon%3A743525","Thermus scotoductus SA-01"]]},{"id":"NCBITaxon:744515","l":"Treponema ruminis","na":1,"nb":1,"a":[["TED%3AAF-A0A7W8LMF9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A7W8LMF9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A744515","Treponema ruminis"]]},{"id":"NCBITaxon:745369","l":"Acetoanaerobium noterae","na":1,"nb":1,"a":[["TED%3AAF-A0A1T5D7K1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1T5D7K1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A745369","Acetoanaerobium noterae"]]},{"id":"NCBITaxon:745408","l":"Rhodococcus sp. JVH1","na":1,"nb":1,"a":[["TED%3AAF-J1R3G3-F1-model_v4_TED01","TED novel fold AF-J1R3G3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A745408","Rhodococcus sp. JVH1"]]},{"id":"NCBITaxon:74547","l":"Prochlorococcus marinus str. MIT 9313","na":1,"nb":1,"a":[["Pfam%3APF11266","Long-chain fatty aldehyde decarbonylase"]],"b":[["NCBITaxon%3A74547","Prochlorococcus marinus str. MIT 9313"]]},{"id":"NCBITaxon:74576","l":"Streptomyces sp. SA-COO","na":1,"nb":1,"a":[["Pfam%3APF22500","GMC oxidoreductase, C-terminal"]],"b":[["NCBITaxon%3A74576","Streptomyces sp. SA-COO"]]},{"id":"NCBITaxon:746361","l":"Lactococcus cremoris subsp. cremoris NZ9000","na":1,"nb":1,"a":[["Pfam%3APF12822","ECF transporter, substrate-specific component"]],"b":[["NCBITaxon%3A746361","Lactococcus cremoris subsp. cremoris NZ9000"]]},{"id":"NCBITaxon:74722","l":"Stachybotrys chartarum","na":1,"nb":1,"a":[["Pfam%3APF25484","Domain of unknown function (DUF7907)"]],"b":[["NCBITaxon%3A74722","Stachybotrys chartarum"]]},{"id":"NCBITaxon:747457","l":"Pseudoalteromonas sp. SANK 73390","na":1,"nb":1,"a":[["Pfam%3APF18014","Acetyltransferase (GNAT) domain"]],"b":[["NCBITaxon%3A747457","Pseudoalteromonas sp. SANK 73390"]]},{"id":"NCBITaxon:749508","l":"Enterococcus faecalis TX0630","na":1,"nb":1,"a":[["TED%3AAF-E6ETC9-F1-model_v4_TED01","TED novel fold AF-E6ETC9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A749508","Enterococcus faecalis TX0630"]]},{"id":"NCBITaxon:749593","l":"Epicoccum sorghinum","na":1,"nb":1,"a":[["Pfam%3APF17660","Polyglycine hydrolase-like, structural repeat"]],"b":[["NCBITaxon%3A749593","Epicoccum sorghinum"]]},{"id":"NCBITaxon:74969","l":"Ferroplasma acidiphilum","na":1,"nb":1,"a":[["TED%3AAF-A0A7K4FNL3-F1-model_v4_TED01","TED novel fold AF-A0A7K4FNL3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A74969","Ferroplasma acidiphilum"]]},{"id":"NCBITaxon:755","l":"Avibacterium gallinarum","na":1,"nb":1,"a":[["TED%3AAF-A0A379AXK5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A379AXK5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A755","Avibacterium gallinarum"]]},{"id":"NCBITaxon:755731","l":"Clostridium sp. BNL1100","na":1,"nb":1,"a":[["TED%3AAF-H2JEL4-F1-model_v4_TED02","TED highly-symmetric fold AF-H2JEL4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A755731","Clostridium sp. BNL1100"]]},{"id":"NCBITaxon:756067","l":"Microcoleus vaginatus FGP-2","na":1,"nb":1,"a":[["TED%3AAF-F5UCE7-F1-model_v4_TED03","TED highly-symmetric fold AF-F5UCE7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A756067","Microcoleus vaginatus FGP-2"]]},{"id":"NCBITaxon:75736","l":"Starmerella bombicola","na":1,"nb":1,"a":[["Pfam%3APF12464","Maltose acetyltransferase hexapeptide capping motif"]],"b":[["NCBITaxon%3A75736","Starmerella bombicola"]]},{"id":"NCBITaxon:758802","l":"Mycolicibacterium litorale","na":1,"nb":1,"a":[["TED%3AAF-A0A6S6P2X7-F1-model_v4_TED01","TED novel fold AF-A0A6S6P2X7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A758802","Mycolicibacterium litorale"]]},{"id":"NCBITaxon:758825","l":"Rugamonas rubra","na":1,"nb":1,"a":[["TED%3AAF-A0A1I4M4R3-F1-model_v4_TED02","TED novel fold AF-A0A1I4M4R3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A758825","Rugamonas rubra"]]},{"id":"NCBITaxon:761204","l":"Phytophthora nicotianae INRA-310","na":1,"nb":1,"a":[["TED%3AAF-W2Q6Q6-F1-model_v4_TED02","TED novel fold AF-W2Q6Q6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A761204","Phytophthora nicotianae INRA-310"]]},{"id":"NCBITaxon:761659","l":"Salinibacter ruber M8","na":1,"nb":1,"a":[["TED%3AAF-D5H5E0-F1-model_v4_TED03","TED novel fold AF-D5H5E0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A761659","Salinibacter ruber M8"]]},{"id":"NCBITaxon:762211","l":"Bifidobacterium stellenboschense","na":1,"nb":1,"a":[["TED%3AAF-A0A087DBT3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A087DBT3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A762211","Bifidobacterium stellenboschense"]]},{"id":"NCBITaxon:762486","l":"Lutibacter oricola","na":1,"nb":1,"a":[["TED%3AAF-A0A1H2TDM1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H2TDM1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A762486","Lutibacter oricola"]]},{"id":"NCBITaxon:763407","l":"Phycomyces blakesleeanus NRRL 1555(-)","na":1,"nb":1,"a":[["Pfam%3APF27434","3-isopropylmalate dehydratase small subunit C-terminal domain"]],"b":[["NCBITaxon%3A763407","Phycomyces blakesleeanus NRRL 1555(-)"]]},{"id":"NCBITaxon:765888","l":"Nitrospirillum iridis","na":1,"nb":1,"a":[["TED%3AAF-A0A7X0AVV1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X0AVV1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A765888","Nitrospirillum iridis"]]},{"id":"NCBITaxon:766136","l":"Desulfuribacillus alkaliarsenatis","na":1,"nb":1,"a":[["TED%3AAF-A0A1E5G4X4-F1-model_v4_TED01","TED novel fold AF-A0A1E5G4X4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A766136","Desulfuribacillus alkaliarsenatis"]]},{"id":"NCBITaxon:766140","l":"Shigella boydii 4444-74","na":1,"nb":1,"a":[["TED%3AAF-I6EFI0-F1-model_v4_TED02","TED highly-symmetric fold AF-I6EFI0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A766140","Shigella boydii 4444-74"]]},{"id":"NCBITaxon:766760","l":"Bacillus paralicheniformis ATCC 9945a","na":1,"nb":1,"a":[["Pfam%3APF24957","DISARM protein DrmE, C-terminal domain"]],"b":[["NCBITaxon%3A766760","Bacillus paralicheniformis ATCC 9945a"]]},{"id":"NCBITaxon:76731","l":"Roseateles depolymerans","na":1,"nb":1,"a":[["TED%3AAF-A0A0U3N3L4-F1-model_v4_TED02","TED novel fold AF-A0A0U3N3L4-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A76731","Roseateles depolymerans"]]},{"id":"NCBITaxon:768556","l":"uncultured Solirubrobacterales bacterium","na":1,"nb":1,"a":[["TED%3AAF-A0A6J4SFU3-F1-model_v4_TED01","TED novel fold AF-A0A6J4SFU3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A768556","uncultured Solirubrobacterales bacterium"]]},{"id":"NCBITaxon:76869","l":"Pseudomonas putida GB-1","na":1,"nb":1,"a":[["Pfam%3APF21724","Family of unknown function (DUF6861)"]],"b":[["NCBITaxon%3A76869","Pseudomonas putida GB-1"]]},{"id":"NCBITaxon:78410","l":"Neonectria ditissima","na":1,"nb":1,"a":[["TED%3AAF-A0A0P7AKS8-F1-model_v4_TED02","TED novel fold AF-A0A0P7AKS8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A78410","Neonectria ditissima"]]},{"id":"NCBITaxon:78915","l":"Thamnocephalis sphaerospora","na":1,"nb":1,"a":[["TED%3AAF-A0A4V1IVX3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4V1IVX3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A78915","Thamnocephalis sphaerospora"]]},{"id":"NCBITaxon:794903","l":"Opitutaceae bacterium TAV5","na":1,"nb":1,"a":[["TED%3AAF-W0J1Y7-F1-model_v4_TED01","TED highly-symmetric fold AF-W0J1Y7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A794903","Opitutaceae bacterium TAV5"]]},{"id":"NCBITaxon:795812","l":"Parerythrobacter jejuensis","na":1,"nb":1,"a":[["TED%3AAF-A0A845AW31-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A845AW31-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A795812","Parerythrobacter jejuensis"]]},{"id":"NCBITaxon:79671","l":"Arthrobacter sp. YCWD3","na":1,"nb":1,"a":[["Pfam%3APF16483","Beta-1,3-glucanase"]],"b":[["NCBITaxon%3A79671","Arthrobacter sp. YCWD3"]]},{"id":"NCBITaxon:79676","l":"Pseudomonas sp. CF600","na":1,"nb":1,"a":[["Pfam%3APF09290","Prokaryotic acetaldehyde dehydrogenase, dimerisation"]],"b":[["NCBITaxon%3A79676","Pseudomonas sp. CF600"]]},{"id":"NCBITaxon:796937","l":"Peptoanaerobacter stomatis","na":1,"nb":1,"a":[["TED%3AAF-G9XC71-F1-model_v4_TED01","TED novel fold AF-G9XC71-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A796937","Peptoanaerobacter stomatis"]]},{"id":"NCBITaxon:797292","l":"Sphingobacterium alimentarium","na":1,"nb":1,"a":[["TED%3AAF-A0A4R3VZ52-F1-model_v4_TED08","TED novel fold AF-A0A4R3VZ52-F1-model_v4_TED08"]],"b":[["NCBITaxon%3A797292","Sphingobacterium alimentarium"]]},{"id":"NCBITaxon:82801","l":"Desemzia incerta","na":1,"nb":1,"a":[["TED%3AAF-A0A1I5VU87-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1I5VU87-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A82801","Desemzia incerta"]]},{"id":"NCBITaxon:83462","l":"Corallococcus exiguus","na":1,"nb":1,"a":[["TED%3AAF-A0A7X4Y983-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7X4Y983-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A83462","Corallococcus exiguus"]]},{"id":"NCBITaxon:83637","l":"Bradyrhizobium genosp. L","na":1,"nb":1,"a":[["TED%3AAF-A0A7S9CP95-F1-model_v4_TED02","TED novel fold AF-A0A7S9CP95-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A83637","Bradyrhizobium genosp. L"]]},{"id":"NCBITaxon:84029","l":"-","na":1,"nb":1,"a":[["TED%3AAF-A0A1S8KXX0-F1-model_v4_TED05","TED highly-symmetric fold AF-A0A1S8KXX0-F1-model_v4_TED05"]],"b":[["NCBITaxon%3A36839","Clostridium felsineum"]]},{"id":"NCBITaxon:84139","l":"Gordonia sp. (in: high G+C Gram-positive bacteria)","na":1,"nb":1,"a":[["TED%3AAF-A0A2E1G3V1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A2E1G3V1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A84139","Gordonia sp. (in: high G+C Gram-positive bacteria)"]]},{"id":"NCBITaxon:84724","l":"Lentzea waywayandensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1I6FJL8-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A1I6FJL8-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A84724","Lentzea waywayandensis"]]},{"id":"NCBITaxon:84725","l":"Umezawaea tangerina","na":1,"nb":1,"a":[["TED%3AAF-A0A2T0SS74-F1-model_v4_TED01","TED novel fold AF-A0A2T0SS74-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A84725","Umezawaea tangerina"]]},{"id":"NCBITaxon:856736","l":"Deinococcus reticulitermitis","na":1,"nb":1,"a":[["TED%3AAF-A0A1H7CAH4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H7CAH4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A856736","Deinococcus reticulitermitis"]]},{"id":"NCBITaxon:856793","l":"Micavibrio aeruginosavorus ARL-13","na":1,"nb":1,"a":[["TED%3AAF-G2KLZ0-F1-model_v4_TED01","TED novel fold AF-G2KLZ0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A856793","Micavibrio aeruginosavorus ARL-13"]]},{"id":"NCBITaxon:856822","l":"Fonsecaea nubica","na":1,"nb":1,"a":[["TED%3AAF-A0A178C6J8-F1-model_v4_TED01","TED novel fold AF-A0A178C6J8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A856822","Fonsecaea nubica"]]},{"id":"NCBITaxon:858221","l":"Trichoderma parareesei","na":1,"nb":1,"a":[["TED%3AAF-A0A2H2ZVN3-F1-model_v4_TED01","TED novel fold AF-A0A2H2ZVN3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A858221","Trichoderma parareesei"]]},{"id":"NCBITaxon:858422","l":"Bradyrhizobium sp. CCBAU 051011","na":1,"nb":1,"a":[["TED%3AAF-A0A7Z2SPQ7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Z2SPQ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A858422","Bradyrhizobium sp. CCBAU 051011"]]},{"id":"NCBITaxon:858640","l":"Photobacterium jeanii","na":1,"nb":1,"a":[["TED%3AAF-A0A178KKM2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A178KKM2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A858640","Photobacterium jeanii"]]},{"id":"NCBITaxon:859653","l":"alpha proteobacterium HIMB5","na":1,"nb":1,"a":[["TED%3AAF-J9YWK1-F1-model_v4_TED01","TED highly-symmetric fold AF-J9YWK1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A859653","alpha proteobacterium HIMB5"]]},{"id":"NCBITaxon:860243","l":"Nocardioides panzhihuensis","na":1,"nb":1,"a":[["TED%3AAF-A0A7Z0DQT6-F1-model_v4_TED02","TED novel fold AF-A0A7Z0DQT6-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A860243","Nocardioides panzhihuensis"]]},{"id":"NCBITaxon:86035","l":"Bacillus sp. DS11","na":1,"nb":1,"a":[["Pfam%3APF02333","Phytase"]],"b":[["NCBITaxon%3A86035","Bacillus sp. DS11"]]},{"id":"NCBITaxon:86038","l":"Pseudomonas sp. OS-ALG-9","na":1,"nb":1,"a":[["Pfam%3APF14592","Chondroitinase B"]],"b":[["NCBITaxon%3A86038","Pseudomonas sp. OS-ALG-9"]]},{"id":"NCBITaxon:861266","l":"Pseudarthrobacter siccitolerans","na":1,"nb":1,"a":[["TED%3AAF-A0A024H200-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A024H200-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A861266","Pseudarthrobacter siccitolerans"]]},{"id":"NCBITaxon:861865","l":"Edaphosphingomonas laterariae","na":1,"nb":1,"a":[["TED%3AAF-A0A239BGP1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A239BGP1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A861865","Edaphosphingomonas laterariae"]]},{"id":"NCBITaxon:862126","l":"Mucilaginibacter ginsenosidivorax","na":1,"nb":1,"a":[["TED%3AAF-A0A5B8W6T2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5B8W6T2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A862126","Mucilaginibacter ginsenosidivorax"]]},{"id":"NCBITaxon:862751","l":"Streptomyces sp. SirexAA-E","na":1,"nb":1,"a":[["Pfam%3APF27525","LAM55 pectate lyase-like domain"]],"b":[["NCBITaxon%3A862751","Streptomyces sp. SirexAA-E"]]},{"id":"NCBITaxon:863522","l":"Bryocella elongata","na":1,"nb":1,"a":[["TED%3AAF-A0A1H5ZBZ9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1H5ZBZ9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A863522","Bryocella elongata"]]},{"id":"NCBITaxon:864828","l":"Pseudoduganella umbonata","na":1,"nb":1,"a":[["TED%3AAF-A0A4P8HHX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4P8HHX4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A864828","Pseudoduganella umbonata"]]},{"id":"NCBITaxon:86630","l":"Rhizopus azygosporus","na":1,"nb":1,"a":[["TED%3AAF-A0A367INI1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A367INI1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A86630","Rhizopus azygosporus"]]},{"id":"NCBITaxon:868131","l":"Methanobacterium paludis","na":1,"nb":1,"a":[["TED%3AAF-F6D859-F1-model_v4_TED01","TED highly-symmetric fold AF-F6D859-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A868131","Methanobacterium paludis"]]},{"id":"NCBITaxon:869675","l":"Escherichia coli 1.2264","na":1,"nb":1,"a":[["TED%3AAF-I2SNR3-F1-model_v4_TED01","TED highly-symmetric fold AF-I2SNR3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A869675","Escherichia coli 1.2264"]]},{"id":"NCBITaxon:869754","l":"Metschnikowia bicuspidata var. bicuspidata NRRL YB-4993","na":1,"nb":1,"a":[["TED%3AAF-A0A1A0HIK0-F1-model_v4_TED01","TED novel fold AF-A0A1A0HIK0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A869754","Metschnikowia bicuspidata var. bicuspidata NRRL YB-4993"]]},{"id":"NCBITaxon:871585","l":"Acinetobacter pittii PHEA-2","na":1,"nb":1,"a":[["Pfam%3APF22290","Dimethylamine monooxygenase subunit DmmA-like, N-terminal domain"]],"b":[["NCBITaxon%3A871585","Acinetobacter pittii PHEA-2"]]},{"id":"NCBITaxon:871741","l":"Brevundimonas viscosa","na":1,"nb":1,"a":[["TED%3AAF-A0A1I6NPZ5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1I6NPZ5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A871741","Brevundimonas viscosa"]]},{"id":"NCBITaxon:872965","l":"Ardenticatena maritima","na":1,"nb":1,"a":[["TED%3AAF-A0A0M9UCT0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0M9UCT0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A872965","Ardenticatena maritima"]]},{"id":"NCBITaxon:872970","l":"Amphibacillus marinus","na":1,"nb":1,"a":[["TED%3AAF-A0A1H8TVF9-F1-model_v4_TED02","TED novel fold AF-A0A1H8TVF9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A872970","Amphibacillus marinus"]]},{"id":"NCBITaxon:872983","l":"Metamycoplasma neophronis","na":1,"nb":1,"a":[["TED%3AAF-A0A505IVY3-F1-model_v4_TED03","TED novel fold AF-A0A505IVY3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A872983","Metamycoplasma neophronis"]]},{"id":"NCBITaxon:873128","l":"Meiothermus sp. Pnk-1","na":1,"nb":1,"a":[["TED%3AAF-A0A323U337-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A323U337-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A873128","Meiothermus sp. Pnk-1"]]},{"id":"NCBITaxon:875330","l":"Pseudomonas savastanoi pv. glycinea str. race 4","na":1,"nb":1,"a":[["TED%3AAF-F3CC35-F1-model_v4_TED01","TED highly-symmetric fold AF-F3CC35-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A875330","Pseudomonas savastanoi pv. glycinea str. race 4"]]},{"id":"NCBITaxon:875932","l":"Photobacterium sanguinicancri","na":1,"nb":1,"a":[["TED%3AAF-A0A264TE15-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A264TE15-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A875932","Photobacterium sanguinicancri"]]},{"id":"NCBITaxon:876091","l":"uncultured Oscillibacter sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A1C5WBD3-F1-model_v4_TED01","TED novel fold AF-A0A1C5WBD3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A876091","uncultured Oscillibacter sp."]]},{"id":"NCBITaxon:878220","l":"Chryseobacterium sp. StRB126","na":1,"nb":1,"a":[["TED%3AAF-A0A077KU37-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A077KU37-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A878220","Chryseobacterium sp. StRB126"]]},{"id":"NCBITaxon:880534","l":"Plasmodium praefalciparum (nom. ined.)","na":1,"nb":1,"a":[["TED%3AAF-A0A2P9BKD8-F1-model_v4_TED02","TED novel fold AF-A0A2P9BKD8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A880534","Plasmodium praefalciparum (nom. ined.)"]]},{"id":"NCBITaxon:882626","l":"Pseudoalteromonas xiamenensis","na":1,"nb":1,"a":[["TED%3AAF-A0A8A6BGH7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8A6BGH7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A882626","Pseudoalteromonas xiamenensis"]]},{"id":"NCBITaxon:883812","l":"Parageobacillus galactosidasius","na":1,"nb":1,"a":[["TED%3AAF-A0A226QSZ3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A226QSZ3-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A883812","Parageobacillus galactosidasius"]]},{"id":"NCBITaxon:885475","l":"Salipaludibacillus neizhouensis","na":1,"nb":1,"a":[["TED%3AAF-A0A3A9K827-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A3A9K827-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A885475","Salipaludibacillus neizhouensis"]]},{"id":"NCBITaxon:88771","l":"Ceratocystis platani","na":1,"nb":1,"a":[["Pfam%3APF07249","Cerato-platanin"]],"b":[["NCBITaxon%3A88771","Ceratocystis platani"]]},{"id":"NCBITaxon:88773","l":"Halobacterium sp. GN101","na":1,"nb":1,"a":[["Pfam%3APF07232","Putative rep protein (DUF1424)"]],"b":[["NCBITaxon%3A88773","Halobacterium sp. GN101"]]},{"id":"NCBITaxon:888050","l":"Schaalia cardiffensis F0333","na":1,"nb":1,"a":[["TED%3AAF-N6W7R5-F1-model_v4_TED03","TED novel fold AF-N6W7R5-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A888050","Schaalia cardiffensis F0333"]]},{"id":"NCBITaxon:888059","l":"Capnocytophaga sp. oral taxon 338 str. F0234","na":1,"nb":1,"a":[["TED%3AAF-F0IGW8-F1-model_v4_TED02","TED highly-symmetric fold AF-F0IGW8-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A888059","Capnocytophaga sp. oral taxon 338 str. F0234"]]},{"id":"NCBITaxon:89489","l":"Monascus ruber","na":1,"nb":1,"a":[["Pfam%3APF17828","N-terminal domain in fatty acid synthase subunit beta"]],"b":[["NCBITaxon%3A89489","Monascus ruber"]]},{"id":"NCBITaxon:895","l":"Desulfobulbus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A432QRX5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A432QRX5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A895","Desulfobulbus sp."]]},{"id":"NCBITaxon:903503","l":"Candidatus Moranella endobia PCIT","na":1,"nb":1,"a":[["Pfam%3APF04999","Cell division protein FtsL"]],"b":[["NCBITaxon%3A903503","Candidatus Moranella endobia PCIT"]]},{"id":"NCBITaxon:903983","l":"Enterococcus quebecensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1E5GSS5-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1E5GSS5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A903983","Enterococcus quebecensis"]]},{"id":"NCBITaxon:90427","l":"Methanoculleus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7C1DX95-F1-model_v4_TED01","TED novel fold AF-A0A7C1DX95-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A90427","Methanoculleus sp."]]},{"id":"NCBITaxon:905079","l":"Guillardia theta CCMP2712","na":1,"nb":1,"a":[["TED%3AAF-L1IJ61-F1-model_v4_TED01","TED highly-symmetric fold AF-L1IJ61-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A905079","Guillardia theta CCMP2712"]]},{"id":"NCBITaxon:906888","l":"Nonlabens ulvanivorans","na":1,"nb":1,"a":[["Pfam%3APF24208","Endo-acting ulvan lyase beta-trefoil domain"]],"b":[["NCBITaxon%3A906888","Nonlabens ulvanivorans"]]},{"id":"NCBITaxon:909943","l":"SAR116 cluster alpha proteobacterium HIMB100","na":1,"nb":1,"a":[["TED%3AAF-G5ZX74-F1-model_v4_TED02","TED novel fold AF-G5ZX74-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A909943","SAR116 cluster alpha proteobacterium HIMB100"]]},{"id":"NCBITaxon:911045","l":"Pseudovibrio sp. FO-BEG1","na":1,"nb":1,"a":[["TED%3AAF-G8PRS6-F1-model_v4_TED01","TED highly-symmetric fold AF-G8PRS6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A911045","Pseudovibrio sp. FO-BEG1"]]},{"id":"NCBITaxon:911242","l":"Pseudomonas sp. CFII64","na":1,"nb":1,"a":[["TED%3AAF-S6GRU4-F1-model_v4_TED01","TED highly-symmetric fold AF-S6GRU4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A911242","Pseudomonas sp. CFII64"]]},{"id":"NCBITaxon:912552","l":"Conexibacter arvalis","na":1,"nb":1,"a":[["TED%3AAF-A0A840I9W8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A840I9W8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A912552","Conexibacter arvalis"]]},{"id":"NCBITaxon:913252","l":"Paracoccus limosus","na":1,"nb":1,"a":[["TED%3AAF-A0A844H437-F1-model_v4_TED02","TED novel fold AF-A0A844H437-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A913252","Paracoccus limosus"]]},{"id":"NCBITaxon:914150","l":"Kangiella geojedonensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0F6TP00-F1-model_v4_TED03","TED novel fold AF-A0A0F6TP00-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A914150","Kangiella geojedonensis"]]},{"id":"NCBITaxon:914238","l":"Rhynchosporium agropyri","na":1,"nb":1,"a":[["TED%3AAF-A0A1E1JTN7-F1-model_v4_TED02","TED novel fold AF-A0A1E1JTN7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A914238","Rhynchosporium agropyri"]]},{"id":"NCBITaxon:91464","l":"Synechococcus sp. PCC 7335","na":1,"nb":1,"a":[["TED%3AAF-B4WV80-F1-model_v4_TED01","TED highly-symmetric fold AF-B4WV80-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A91464","Synechococcus sp. PCC 7335"]]},{"id":"NCBITaxon:915472","l":"Pseudomonas nitritireducens","na":1,"nb":1,"a":[["TED%3AAF-A0A7W7KS29-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W7KS29-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A46680","Pseudomonas nitroreducens"]]},{"id":"NCBITaxon:91928","l":"Exophiala spinifera","na":1,"nb":1,"a":[["TED%3AAF-A0A0D1ZM77-F1-model_v4_TED02","TED novel fold AF-A0A0D1ZM77-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A91928","Exophiala spinifera"]]},{"id":"NCBITaxon:91992","l":"Triparma pacifica","na":1,"nb":1,"a":[["TED%3AAF-A0A7S2VVQ4-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A7S2VVQ4-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A91992","Triparma pacifica"]]},{"id":"NCBITaxon:924","l":"Thiobacillus sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A7L5YHX1-F1-model_v4_TED02","TED novel fold AF-A0A7L5YHX1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A924","Thiobacillus sp."]]},{"id":"NCBITaxon:92402","l":"Metamycoplasma equirhinis","na":1,"nb":1,"a":[["TED%3AAF-A0A501SHD3-F1-model_v4_TED03","TED novel fold AF-A0A501SHD3-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A92402","Metamycoplasma equirhinis"]]},{"id":"NCBITaxon:92696","l":"Steccherinum ochraceum","na":1,"nb":1,"a":[["TED%3AAF-A0A4R0RWY1-F1-model_v4_TED01","TED novel fold AF-A0A4R0RWY1-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A92696","Steccherinum ochraceum"]]},{"id":"NCBITaxon:92742","l":"Streptomyces sp. D7","na":1,"nb":1,"a":[["Pfam%3APF26358","EcdD/BsdD phenolic detoxification"]],"b":[["NCBITaxon%3A92742","Streptomyces sp. D7"]]},{"id":"NCBITaxon:927704","l":"Selenomonas ruminantium subsp. lactilytica TAM6421","na":1,"nb":1,"a":[["TED%3AAF-I0GUW5-F1-model_v4_TED01","TED highly-symmetric fold AF-I0GUW5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A927704","Selenomonas ruminantium subsp. lactilytica TAM6421"]]},{"id":"NCBITaxon:930805","l":"Halioglobus japonicus","na":1,"nb":1,"a":[["TED%3AAF-A0A2N5YIE4-F1-model_v4_TED03","TED novel fold AF-A0A2N5YIE4-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A930805","Halioglobus japonicus"]]},{"id":"NCBITaxon:930943","l":"Saccharolobus islandicus HVE10/4","na":1,"nb":1,"a":[["TED%3AAF-F0NJI0-F1-model_v4_TED01","TED novel fold AF-F0NJI0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A930943","Saccharolobus islandicus HVE10/4"]]},{"id":"NCBITaxon:930945","l":"Saccharolobus islandicus REY15A","na":1,"nb":1,"a":[["Pfam%3APF01918","Alba"]],"b":[["NCBITaxon%3A930945","Saccharolobus islandicus REY15A"]]},{"id":"NCBITaxon:93221","l":"Pandoraea pulmonicola","na":1,"nb":1,"a":[["proteintraitsmech%3AELIFE109154_TBH_Asp","T-E-associated metallophore aspartate beta-hydroxylase family"]],"b":[["NCBITaxon%3A93221","Pandoraea pulmonicola"]]},{"id":"NCBITaxon:932213","l":"Serratia sp. M24T3","na":1,"nb":1,"a":[["TED%3AAF-I0QTC8-F1-model_v4_TED01","TED highly-symmetric fold AF-I0QTC8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A932213","Serratia sp. M24T3"]]},{"id":"NCBITaxon:93222","l":"Pandoraea sputorum","na":1,"nb":1,"a":[["TED%3AAF-A0A5E5BHU5-F1-model_v4_TED02","TED novel fold AF-A0A5E5BHU5-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A93222","Pandoraea sputorum"]]},{"id":"NCBITaxon:932660","l":"Haloarcula sebkhae","na":1,"nb":1,"a":[["TED%3AAF-A0A830EH45-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A830EH45-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A932660","Haloarcula sebkhae"]]},{"id":"NCBITaxon:932677","l":"Pantoea ananatis AJ13355","na":1,"nb":1,"a":[["Pfam%3APF10014","2OG-Fe dioxygenase"]],"b":[["NCBITaxon%3A932677","Pantoea ananatis AJ13355"]]},{"id":"NCBITaxon:933852","l":"Serendipita vermifera MAFF 305830","na":1,"nb":1,"a":[["TED%3AAF-A0A0C3B4B7-F1-model_v4_TED02","TED novel fold AF-A0A0C3B4B7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A933852","Serendipita vermifera MAFF 305830"]]},{"id":"NCBITaxon:933926","l":"Sinobacterium caligoides","na":1,"nb":1,"a":[["TED%3AAF-A0A3N2D566-F1-model_v4_TED03","TED novel fold AF-A0A3N2D566-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A933926","Sinobacterium caligoides"]]},{"id":"NCBITaxon:935","l":"Thiomicrospira sp.","na":1,"nb":1,"a":[["TED%3AAF-A0A356VSR5-F1-model_v4_TED01","TED novel fold AF-A0A356VSR5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A935","Thiomicrospira sp."]]},{"id":"NCBITaxon:935222","l":"Flavobacterium sp. Sr18","na":1,"nb":1,"a":[["TED%3AAF-A0A6G7CDS6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6G7CDS6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A935222","Flavobacterium sp. Sr18"]]},{"id":"NCBITaxon:935700","l":"Jannaschia aquimarina","na":1,"nb":1,"a":[["TED%3AAF-A0A0D1CPL0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A0D1CPL0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A935700","Jannaschia aquimarina"]]},{"id":"NCBITaxon:936138","l":"Phorcysia thermohydrogeniphila","na":1,"nb":1,"a":[["TED%3AAF-A0A4V2PDB0-F1-model_v4_TED04","TED highly-symmetric fold AF-A0A4V2PDB0-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A936138","Phorcysia thermohydrogeniphila"]]},{"id":"NCBITaxon:936381","l":"Selenomonas sp. CM52","na":1,"nb":1,"a":[["TED%3AAF-J4WN32-F1-model_v4_TED01","TED highly-symmetric fold AF-J4WN32-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A936381","Selenomonas sp. CM52"]]},{"id":"NCBITaxon:936549","l":"Actinomyces sp. ICM54","na":1,"nb":1,"a":[["TED%3AAF-Z4X213-F1-model_v4_TED02","TED novel fold AF-Z4X213-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A936549","Actinomyces sp. ICM54"]]},{"id":"NCBITaxon:936556","l":"Peptostreptococcaceae bacterium AS15","na":1,"nb":1,"a":[["TED%3AAF-J4ULD9-F1-model_v4_TED01","TED highly-symmetric fold AF-J4ULD9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A936556","Peptostreptococcaceae bacterium AS15"]]},{"id":"NCBITaxon:936563","l":"Fusobacterium sp. CM22","na":1,"nb":1,"a":[["TED%3AAF-X8HCV0-F1-model_v4_TED03","TED highly-symmetric fold AF-X8HCV0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A936563","Fusobacterium sp. CM22"]]},{"id":"NCBITaxon:936565","l":"Klebsiella sp. OBRC7","na":1,"nb":1,"a":[["TED%3AAF-J4WXU7-F1-model_v4_TED01","TED novel fold AF-J4WXU7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A936565","Klebsiella sp. OBRC7"]]},{"id":"NCBITaxon:936574","l":"Shuttleworthella sp. MSX8B","na":1,"nb":1,"a":[["TED%3AAF-X8GZH1-F1-model_v4_TED04","TED novel fold AF-X8GZH1-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A936574","Shuttleworthella sp. MSX8B"]]},{"id":"NCBITaxon:936591","l":"Veillonella sp. ICM51a","na":1,"nb":1,"a":[["TED%3AAF-X8HDK6-F1-model_v4_TED01","TED highly-symmetric fold AF-X8HDK6-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A936591","Veillonella sp. ICM51a"]]},{"id":"NCBITaxon:938405","l":"Belnapia rosea","na":1,"nb":1,"a":[["TED%3AAF-A0A1G6YYP0-F1-model_v4_TED01","TED novel fold AF-A0A1G6YYP0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A938405","Belnapia rosea"]]},{"id":"NCBITaxon:93944","l":"Nonomuraea gerenzanensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1M4EK07-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M4EK07-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A93944","Nonomuraea gerenzanensis"]]},{"id":"NCBITaxon:94001","l":"Methylobacillus sp. 12S","na":1,"nb":1,"a":[["Pfam%3APF09721","Transmembrane exosortase (Exosortase_EpsH)"]],"b":[["NCBITaxon%3A94001","Methylobacillus sp. 12S"]]},{"id":"NCBITaxon:941280","l":"Escherichia coli O25b:H4","na":1,"nb":1,"a":[["PROSITE%3APS00146","Beta-lactamase class-A active site"]],"b":[["NCBITaxon%3A941280","Escherichia coli O25b:H4"]]},{"id":"NCBITaxon:94208","l":"Tolypocladium paradoxum","na":1,"nb":1,"a":[["TED%3AAF-A0A2S4KXL0-F1-model_v4_TED01","TED novel fold AF-A0A2S4KXL0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A94208","Tolypocladium paradoxum"]]},{"id":"NCBITaxon:943346","l":"Sporomusa sp. KB1","na":1,"nb":1,"a":[["TED%3AAF-A0A562GGV9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A562GGV9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A943346","Sporomusa sp. KB1"]]},{"id":"NCBITaxon:944288","l":"Plicaturopsis crispa FD-325 SS-3","na":1,"nb":1,"a":[["TED%3AAF-A0A0C9SUT9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A0C9SUT9-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A944288","Plicaturopsis crispa FD-325 SS-3"]]},{"id":"NCBITaxon:945681","l":"Acetobacter pomorum DM001","na":1,"nb":1,"a":[["TED%3AAF-F1YV49-F1-model_v4_TED01","TED highly-symmetric fold AF-F1YV49-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A945681","Acetobacter pomorum DM001"]]},{"id":"NCBITaxon:947515","l":"Ectothiorhodospiraceae bacterium BW-2","na":1,"nb":1,"a":[["TED%3AAF-A0A5C2HRK8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5C2HRK8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A947515","Ectothiorhodospiraceae bacterium BW-2"]]},{"id":"NCBITaxon:94868","l":"Lacrimispora algidixylanolytica","na":1,"nb":1,"a":[["TED%3AAF-A0A419SY83-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A419SY83-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A94868","Lacrimispora algidixylanolytica"]]},{"id":"NCBITaxon:95161","l":"Saccharopolyspora flava","na":1,"nb":1,"a":[["TED%3AAF-A0A1I6QMW8-F1-model_v4_TED03","TED novel fold AF-A0A1I6QMW8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A95161","Saccharopolyspora flava"]]},{"id":"NCBITaxon:96901","l":"Pseudomonas synxantha BG33R","na":1,"nb":1,"a":[["TED%3AAF-I4L8E7-F1-model_v4_TED04","TED highly-symmetric fold AF-I4L8E7-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A96901","Pseudomonas synxantha BG33R"]]},{"id":"NCBITaxon:97479","l":"Pyrenophora teres f. teres","na":1,"nb":1,"a":[["TED%3AAF-A0A6S6VY77-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6S6VY77-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A97479","Pyrenophora teres f. teres"]]},{"id":"NCBITaxon:97480","l":"Pyrenophora teres f. maculata","na":1,"nb":1,"a":[["TED%3AAF-A0A6S6UPH8-F1-model_v4_TED03","TED novel fold AF-A0A6S6UPH8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A97480","Pyrenophora teres f. maculata"]]},{"id":"NCBITaxon:979970","l":"Acetobacteroides hydrogenigenes","na":1,"nb":1,"a":[["TED%3AAF-A0A4R2EML9-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4R2EML9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A979970","Acetobacteroides hydrogenigenes"]]},{"id":"NCBITaxon:979981","l":"Fonsecaea multimorphosa","na":1,"nb":1,"a":[["TED%3AAF-A0A178CG13-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A178CG13-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A979981","Fonsecaea multimorphosa"]]},{"id":"NCBITaxon:980252","l":"Bremerella alba","na":1,"nb":1,"a":[["TED%3AAF-A0A7V9A964-F1-model_v4_TED01","TED novel fold AF-A0A7V9A964-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A980252","Bremerella alba"]]},{"id":"NCBITaxon:980271","l":"Aporhodopirellula rubra","na":1,"nb":1,"a":[["TED%3AAF-A0A7W5H7H8-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A7W5H7H8-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A980271","Aporhodopirellula rubra"]]},{"id":"NCBITaxon:981385","l":"Thermotomaculum hydrothermale","na":1,"nb":1,"a":[["TED%3AAF-A0A7R6PZT0-F1-model_v4_TED01","TED novel fold AF-A0A7R6PZT0-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A981385","Thermotomaculum hydrothermale"]]},{"id":"NCBITaxon:983544","l":"Lacinutrix sp. 5H-3-7-4","na":1,"nb":1,"a":[["TED%3AAF-F6GEK2-F1-model_v4_TED03","TED highly-symmetric fold AF-F6GEK2-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A983544","Lacinutrix sp. 5H-3-7-4"]]},{"id":"NCBITaxon:983917","l":"Rubrivivax gelatinosus IL144","na":1,"nb":1,"a":[["TED%3AAF-I0HSL7-F1-model_v4_TED04","TED novel fold AF-I0HSL7-F1-model_v4_TED04"]],"b":[["NCBITaxon%3A983917","Rubrivivax gelatinosus IL144"]]},{"id":"NCBITaxon:98403","l":"Drechmeria coniospora","na":1,"nb":1,"a":[["TED%3AAF-A0A151GP24-F1-model_v4_TED02","TED novel fold AF-A0A151GP24-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A98403","Drechmeria coniospora"]]},{"id":"NCBITaxon:985053","l":"Vulcanisaeta moutnovskia 768-28","na":1,"nb":1,"a":[["TED%3AAF-F0QT87-F1-model_v4_TED01","TED novel fold AF-F0QT87-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A985053","Vulcanisaeta moutnovskia 768-28"]]},{"id":"NCBITaxon:985250","l":"Sinimarinibacterium flocculans","na":1,"nb":1,"a":[["TED%3AAF-A0A318EDW9-F1-model_v4_TED01","TED novel fold AF-A0A318EDW9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A985250","Sinimarinibacterium flocculans"]]},{"id":"NCBITaxon:986946","l":"Aspergillus novoparasiticus","na":1,"nb":1,"a":[["TED%3AAF-A0A5N6FAW7-F1-model_v4_TED02","TED novel fold AF-A0A5N6FAW7-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A986946","Aspergillus novoparasiticus"]]},{"id":"NCBITaxon:987040","l":"Brunnivagina elsteri CCALA 953","na":1,"nb":1,"a":[["TED%3AAF-A0A2A2TND5-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2A2TND5-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A987040","Brunnivagina elsteri CCALA 953"]]},{"id":"NCBITaxon:990078","l":"Bradyrhizobium huanghuaihaiense","na":1,"nb":1,"a":[["TED%3AAF-A0A562QY54-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A562QY54-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A990078","Bradyrhizobium huanghuaihaiense"]]},{"id":"NCBITaxon:992286","l":"Rhodovulum bhavnagarense","na":1,"nb":1,"a":[["TED%3AAF-A0A4V2SWD3-F1-model_v4_TED02","TED novel fold AF-A0A4V2SWD3-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A992286","Rhodovulum bhavnagarense"]]},{"id":"NCBITaxon:993414","l":"Naumannella halotolerans","na":1,"nb":1,"a":[["TED%3AAF-A0A4R7J3W9-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4R7J3W9-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A993414","Naumannella halotolerans"]]},{"id":"NCBITaxon:993689","l":"Metallibacterium scheffleri","na":1,"nb":1,"a":[["TED%3AAF-A0A4S3KQL1-F1-model_v4_TED02","TED novel fold AF-A0A4S3KQL1-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A993689","Metallibacterium scheffleri"]]},{"id":"NCBITaxon:993692","l":"Companilactobacillus kimchiensis","na":1,"nb":1,"a":[["TED%3AAF-A0A0R2L4Q0-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A0R2L4Q0-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A993692","Companilactobacillus kimchiensis"]]},{"id":"NCBITaxon:994086","l":"Hydnomerulius pinastri MD-312","na":1,"nb":1,"a":[["TED%3AAF-A0A0C9W3H2-F1-model_v4_TED01","TED novel fold AF-A0A0C9W3H2-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A994086","Hydnomerulius pinastri MD-312"]]},{"id":"NCBITaxon:994334","l":"Jimgerdemannia flammicorona","na":1,"nb":1,"a":[["TED%3AAF-A0A433D364-F1-model_v4_TED02","TED novel fold AF-A0A433D364-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A994334","Jimgerdemannia flammicorona"]]},{"id":"NCBITaxon:996115","l":"Ruegeria intermedia","na":1,"nb":1,"a":[["TED%3AAF-A0A1M4ZXW0-F1-model_v4_TED03","TED novel fold AF-A0A1M4ZXW0-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A996115","Ruegeria intermedia"]]},{"id":"NCBITaxon:996342","l":"Marivita hallyeonensis","na":1,"nb":1,"a":[["TED%3AAF-A0A1M5S2D4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1M5S2D4-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A996342","Marivita hallyeonensis"]]},{"id":"NCBITaxon:997874","l":"Bacteroides cellulosilyticus CL02T12C19","na":1,"nb":1,"a":[["TED%3AAF-I9R2V8-F1-model_v4_TED01","TED highly-symmetric fold AF-I9R2V8-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A997874","Bacteroides cellulosilyticus CL02T12C19"]]},{"id":"NCBITaxon:997887","l":"Bacteroides salyersiae CL02T12C01","na":1,"nb":1,"a":[["TED%3AAF-I9TGQ7-F1-model_v4_TED01","TED highly-symmetric fold AF-I9TGQ7-F1-model_v4_TED01"]],"b":[["NCBITaxon%3A997887","Bacteroides salyersiae CL02T12C01"]]},{"id":"NCBITaxon:999419","l":"Parabacteroides johnsonii CL02T12C29","na":1,"nb":1,"a":[["TED%3AAF-K6AIB7-F1-model_v4_TED03","TED novel fold AF-K6AIB7-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A999419","Parabacteroides johnsonii CL02T12C29"]]},{"id":"NCBITaxon:999422","l":"Segatella maculosa OT 289","na":1,"nb":1,"a":[["TED%3AAF-H1HK05-F1-model_v4_TED03","TED highly-symmetric fold AF-H1HK05-F1-model_v4_TED03"]],"b":[["NCBITaxon%3A999422","Segatella maculosa OT 289"]]},{"id":"NCBITaxon:999898","l":"Peptococcaceae bacterium CEB3","na":1,"nb":1,"a":[["TED%3AAF-A0A0J1F8G9-F1-model_v4_TED02","TED novel fold AF-A0A0J1F8G9-F1-model_v4_TED02"]],"b":[["NCBITaxon%3A999898","Peptococcaceae bacterium CEB3"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/TraitMech--AntibioticMech.json b/assets/fleet/edges/TraitMech--AntibioticMech.json index 634d96e..5b1364a 100644 --- a/assets/fleet/edges/TraitMech--AntibioticMech.json +++ b/assets/fleet/edges/TraitMech--AntibioticMech.json @@ -1 +1 @@ -{"a":"TraitMech","b":"AntibioticMech","base":{"TraitMech":"https://culturebotai.github.io/TraitMech/pages/traits/","AntibioticMech":"https://culturebotai.github.io/AntibioticMech/pages/"},"n":31,"by":{"NCBITaxon":21,"CHEBI":10},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":65,"nb":30,"a":[["ecology/biosafety_level.html","biosafety level"],["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/host_associated.html","host-associated"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/halophily_preference.html","halophily preference"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":15,"nb":13,"a":[["ecology/biosafety_level_2.html","biosafety level 2"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/coccus_shaped.html","coccus shaped"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/bromodeoxytopsentin.html","bromodeoxytopsentin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":11,"nb":12,"a":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/aerobic.html","aerobic"],["genomics/avast_system.html","AVAST system"],["genomics/jukab_system.html","JukAB system"],["morphology/motile.html","motile"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":6,"nb":22,"a":[["metabolism/butanediol_fermentation.html","2,3-butanediol fermentation"],["metabolism/citrate_fermentation.html","citrate fermentation"],["morphology/capsule.html","capsule"],["morphology/non_motile.html","non motile"],["other/indole_test_negative.html","indole test negative"],["other/methyl_red_test_negative.html","methyl red test negative"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":18,"nb":3,"a":[["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/neutrophilic.html","neutrophilic"],["environment/non_halophilic.html","non halophilic"],["genomics/spbk_system.html","SpbK system"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":3,"nb":4,"a":[["ecology/commensalism.html","commensalism"],["genomics/nhi_system.html","Nhi system"],["other/coagulase_negative.html","coagulase negative"]],"b":[["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/oxacillin.html","oxacillin"]]},{"id":"CHEBI:26523","l":"reactive oxygen species","na":9,"nb":2,"a":[["environment/aerobic.html","aerobic"],["environment/aerotolerant.html","aerotolerant"],["environment/anaerobic.html","anaerobic"],["environment/microaerophilic.html","microaerophilic"],["environment/microaerotolerant.html","microaerotolerant"],["environment/obligately_anaerobic.html","obligately anaerobic"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"],["biocide/ozone.html","ozone"]]},{"id":"NCBITaxon:1299","l":"Deinococcus radiodurans","na":6,"nb":2,"a":[["environment/ionizing_radiation_tolerant.html","ionizing radiation tolerant"],["environment/radiotolerant.html","radiotolerant"],["environment/uv_radiation_tolerant.html","UV radiation tolerant"],["environment/xerophilic.html","xerophilic"],["morphology/orange_pigmented.html","orange pigmented"],["physiology/stress_response.html","stress response"]],"b":[["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/linezolid.html","linezolid"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":2,"nb":6,"a":[["genomics/abialpha_system.html","AbiAlpha system"],["physiology/gelatinase_activity.html","gelatinase activity"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"NCBITaxon:1773","l":"Mycobacterium tuberculosis","na":5,"nb":2,"a":[["ecology/biosafety_level_3.html","biosafety level 3"],["ecology/human_pathogen.html","human pathogen"],["physiology/acid_phosphatase_activity.html","acid phosphatase activity"],["physiology/dormancy.html","dormancy"],["physiology/pyrazinamidase_activity.html","pyrazinamidase activity"]],"b":[["antibacterial/sulfanilamide.html","sulfanilamide"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:485","l":"Neisseria gonorrhoeae","na":2,"nb":5,"a":[["physiology/oxidase_activity.html","oxidase activity"],["physiology/prolyl_aminopeptidase_activity.html","prolyl aminopeptidase activity"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"NCBITaxon:274","l":"Thermus thermophilus","na":2,"nb":3,"a":[["environment/thermophilic.html","thermophilic"],["morphology/cell_width.html","cell width"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"],["antibacterial/streptomycin.html","streptomycin"],["unspecified/streptolydigin.html","streptolydigin"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":3,"nb":2,"a":[["ecology/rhizosphere_association.html","rhizosphere association"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/psychrotolerant.html","psychrotolerant"]],"b":[["antibacterial/mupirocin.html","mupirocin"],["antifungal/2-4-diacetylphloroglucinol.html","2,4-diacetylphloroglucinol"]]},{"id":"CHEBI:25105","l":"","na":1,"nb":58,"a":[["physiology/antibiotic_resistance.html","antibiotic resistance"]],"b":[["antibacterial/5-o-mycaminosyltylonolide.html","5-O-mycaminosyltylonolide"],["antibacterial/aplasmomycin.html","(+)-aplasmomycin"],["antibacterial/azithromycin.html","azithromycin"],["antibacterial/boromycin.html","boromycin"],["antibacterial/brefeldin-a.html","brefeldin A"],["antibacterial/cethromycin.html","cethromycin"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":1,"nb":15,"a":[["ecology/opportunistic_pathogen.html","opportunistic pathogen"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":8,"nb":1,"a":[["environment/aerotolerant.html","aerotolerant"],["environment/microaerophilic.html","microaerophilic"],["environment/microaerotolerant.html","microaerotolerant"],["environment/obligately_aerobic.html","obligately aerobic"],["environment/obligately_anaerobic.html","obligately anaerobic"],["environment/oxygen_preference.html","oxygen preference"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":1,"nb":7,"a":[["other/catalase_negative.html","catalase negative"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":7,"a":[["morphology/motility.html","motility"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":1,"a":[["metabolism/chitinolysis.html","chitinolysis"],["morphology/pigmentation.html","pigmentation"],["morphology/red_pigmented.html","red pigmented"],["morphology/white_pigmented.html","white pigmented"],["physiology/beta_n_acetylhexosaminidase_activity.html","beta-N-acetylhexosaminidase activity"]],"b":[["antibacterial/althiomycin.html","althiomycin"]]},{"id":"CHEBI:16236","l":"ethanol","na":2,"nb":1,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]],"b":[["biocide/ethanol.html","ethanol"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":2,"nb":1,"a":[["physiology/methanotrophic.html","methanotrophic"],["physiology/methylotrophic.html","methylotrophic"]],"b":[["biocide/formaldehyde.html","formaldehyde"]]},{"id":"CHEBI:27933","l":"","na":1,"nb":2,"a":[["physiology/antibiotic_resistance.html","antibiotic resistance"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["unspecified/sulbactam-sodium.html","sulbactam sodium"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":2,"nb":1,"a":[["genomics/gc_mid1.html","GC mid1"],["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["antibacterial/nocardamine.html","nocardamine"]]},{"id":"CHEBI:26666","l":"","na":1,"nb":1,"a":[["physiology/chemoheterotrophic.html","chemoheterotrophic"]],"b":[["antifungal/propionic-acid.html","propionic acid"]]},{"id":"CHEBI:28908","l":"bambermycin","na":1,"nb":1,"a":[["morphology/bacillus_shaped.html","bacillus shaped"]],"b":[["unspecified/bambermycin.html","bambermycin"]]},{"id":"CHEBI:41688","l":"crystal violet","na":1,"nb":1,"a":[["morphology/gram_stain.html","gram stain"]],"b":[["antibacterial/crystal-violet.html","crystal violet"]]},{"id":"CHEBI:82758","l":"prodigiosin","na":1,"nb":1,"a":[["morphology/red_pigmented.html","red pigmented"]],"b":[["unspecified/prodigiosin.html","prodigiosin"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":1,"nb":1,"a":[["ecology/plant_pathogen.html","plant pathogen"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":1,"nb":1,"a":[["morphology/gliding.html","gliding"]],"b":[["antibacterial/althiomycin.html","althiomycin"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":1,"nb":1,"a":[["ecology/biosafety_level_3.html","biosafety level 3"]],"b":[["unspecified/%CE%B1-mangostin.html","α-mangostin"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":1,"a":[["physiology/dormancy.html","dormancy"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]}]} \ No newline at end of file +{"a":"TraitMech","b":"AntibioticMech","base":{"TraitMech":"https://culturebotai.github.io/TraitMech/pages/traits/","AntibioticMech":"https://culturebotai.github.io/AntibioticMech/pages/"},"n":31,"by":{"NCBITaxon":21,"CHEBI":10},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":65,"nb":30,"a":[["ecology/biosafety_level.html","biosafety level"],["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/host_associated.html","host-associated"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/halophily_preference.html","halophily preference"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":15,"nb":13,"a":[["ecology/biosafety_level_2.html","biosafety level 2"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/coccus_shaped.html","coccus shaped"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/bromodeoxytopsentin.html","bromodeoxytopsentin"],["antibacterial/cefoxitin.html","cefoxitin"],["antibacterial/clindamycin.html","clindamycin"],["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":11,"nb":12,"a":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/aerobic.html","aerobic"],["genomics/avast_system.html","AVAST system"],["genomics/jukab_system.html","JukAB system"],["morphology/motile.html","motile"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ciprofloxacin.html","ciprofloxacin"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":6,"nb":22,"a":[["metabolism/butanediol_fermentation.html","2,3-butanediol fermentation"],["metabolism/citrate_fermentation.html","citrate fermentation"],["morphology/capsule.html","capsule"],["morphology/non_motile.html","non motile"],["other/indole_test_negative.html","indole test negative"],["other/methyl_red_test_negative.html","methyl red test negative"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefazolin.html","cefazolin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":18,"nb":3,"a":[["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/neutrophilic.html","neutrophilic"],["environment/non_halophilic.html","non halophilic"],["genomics/spbk_system.html","SpbK system"]],"b":[["antibacterial/althiomycin.html","althiomycin"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/nalidixic-acid.html","nalidixic acid"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":3,"nb":4,"a":[["ecology/commensalism.html","commensalism"],["genomics/nhi_system.html","Nhi system"],["other/coagulase_negative.html","coagulase negative"]],"b":[["antibacterial/gentamicin.html","gentamicin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/oxacillin.html","oxacillin"]]},{"id":"CHEBI:26523","l":"reactive oxygen species","na":9,"nb":2,"a":[["environment/aerobic.html","aerobic"],["environment/aerotolerant.html","aerotolerant"],["environment/anaerobic.html","anaerobic"],["environment/microaerophilic.html","microaerophilic"],["environment/microaerotolerant.html","microaerotolerant"],["environment/obligately_anaerobic.html","obligately anaerobic"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"],["biocide/ozone.html","ozone"]]},{"id":"NCBITaxon:1299","l":"Deinococcus radiodurans","na":6,"nb":2,"a":[["environment/ionizing_radiation_tolerant.html","ionizing radiation tolerant"],["environment/radiotolerant.html","radiotolerant"],["environment/uv_radiation_tolerant.html","UV radiation tolerant"],["environment/xerophilic.html","xerophilic"],["morphology/orange_pigmented.html","orange pigmented"],["physiology/stress_response.html","stress response"]],"b":[["antibacterial/dalfopristin.html","dalfopristin"],["antibacterial/linezolid.html","linezolid"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":2,"nb":6,"a":[["genomics/abialpha_system.html","AbiAlpha system"],["physiology/gelatinase_activity.html","gelatinase activity"]],"b":[["antibacterial/chloramphenicol.html","chloramphenicol"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/teicoplanin.html","teicoplanin"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"NCBITaxon:1773","l":"Mycobacterium tuberculosis","na":5,"nb":2,"a":[["ecology/biosafety_level_3.html","biosafety level 3"],["ecology/human_pathogen.html","human pathogen"],["physiology/acid_phosphatase_activity.html","acid phosphatase activity"],["physiology/dormancy.html","dormancy"],["physiology/pyrazinamidase_activity.html","pyrazinamidase activity"]],"b":[["antibacterial/sulfanilamide.html","sulfanilamide"],["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:485","l":"Neisseria gonorrhoeae","na":2,"nb":5,"a":[["physiology/oxidase_activity.html","oxidase activity"],["physiology/prolyl_aminopeptidase_activity.html","prolyl aminopeptidase activity"]],"b":[["antibacterial/azithromycin.html","azithromycin"],["antibacterial/cefixime.html","cefixime"],["antibacterial/ceftriaxone.html","ceftriaxone"],["antibacterial/ciprofloxacin.html","ciprofloxacin"],["antibacterial/tetracycline.html","tetracycline"]]},{"id":"NCBITaxon:274","l":"Thermus thermophilus","na":2,"nb":3,"a":[["environment/thermophilic.html","thermophilic"],["morphology/cell_width.html","cell width"]],"b":[["antibacterial/fusidic-acid.html","fusidic acid"],["antibacterial/streptomycin.html","streptomycin"],["unspecified/streptolydigin.html","streptolydigin"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":3,"nb":2,"a":[["ecology/rhizosphere_association.html","rhizosphere association"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/psychrotolerant.html","psychrotolerant"]],"b":[["antibacterial/mupirocin.html","mupirocin"],["antifungal/2-4-diacetylphloroglucinol.html","2,4-diacetylphloroglucinol"]]},{"id":"CHEBI:25105","l":"","na":1,"nb":58,"a":[["physiology/antibiotic_resistance.html","antibiotic resistance"]],"b":[["antibacterial/5-o-mycaminosyltylonolide.html","5-O-mycaminosyltylonolide"],["antibacterial/aplasmomycin.html","(+)-aplasmomycin"],["antibacterial/azithromycin.html","azithromycin"],["antibacterial/boromycin.html","boromycin"],["antibacterial/brefeldin-a.html","brefeldin A"],["antibacterial/cethromycin.html","cethromycin"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":1,"nb":15,"a":[["ecology/opportunistic_pathogen.html","opportunistic pathogen"]],"b":[["antibacterial/amikacin.html","amikacin"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefiderocol.html","cefiderocol"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":8,"nb":1,"a":[["environment/aerotolerant.html","aerotolerant"],["environment/microaerophilic.html","microaerophilic"],["environment/microaerotolerant.html","microaerotolerant"],["environment/obligately_aerobic.html","obligately aerobic"],["environment/obligately_anaerobic.html","obligately anaerobic"],["environment/oxygen_preference.html","oxygen preference"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":1,"nb":7,"a":[["other/catalase_negative.html","catalase negative"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/daptomycin.html","daptomycin"],["antibacterial/doxycycline.html","doxycycline"],["antibacterial/levofloxacin.html","levofloxacin"],["antibacterial/linezolid.html","linezolid"],["antibacterial/vancomycin.html","vancomycin"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":7,"a":[["morphology/motility.html","motility"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["antibacterial/aztreonam.html","aztreonam"],["antibacterial/cefepime.html","cefepime"],["antibacterial/cefotaxime.html","cefotaxime"],["antibacterial/ceftazidime.html","ceftazidime"],["antibacterial/ceftriaxone.html","ceftriaxone"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":1,"a":[["metabolism/chitinolysis.html","chitinolysis"],["morphology/pigmentation.html","pigmentation"],["morphology/red_pigmented.html","red pigmented"],["morphology/white_pigmented.html","white pigmented"],["physiology/beta_n_acetylhexosaminidase_activity.html","beta-N-acetylhexosaminidase activity"]],"b":[["antibacterial/althiomycin.html","althiomycin"]]},{"id":"CHEBI:16236","l":"ethanol","na":2,"nb":1,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]],"b":[["biocide/ethanol.html","ethanol"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":2,"nb":1,"a":[["physiology/methanotrophic.html","methanotrophic"],["physiology/methylotrophic.html","methylotrophic"]],"b":[["biocide/formaldehyde.html","formaldehyde"]]},{"id":"CHEBI:27933","l":"","na":1,"nb":2,"a":[["physiology/antibiotic_resistance.html","antibiotic resistance"]],"b":[["antibacterial/ampicillin.html","ampicillin"],["unspecified/sulbactam-sodium.html","sulbactam sodium"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":2,"nb":1,"a":[["genomics/gc_mid1.html","GC mid1"],["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["antibacterial/nocardamine.html","nocardamine"]]},{"id":"CHEBI:26666","l":"","na":1,"nb":1,"a":[["physiology/chemoheterotrophic.html","chemoheterotrophic"]],"b":[["antifungal/propionic-acid.html","propionic acid"]]},{"id":"CHEBI:28908","l":"bambermycin","na":1,"nb":1,"a":[["morphology/bacillus_shaped.html","bacillus shaped"]],"b":[["unspecified/bambermycin.html","bambermycin"]]},{"id":"CHEBI:41688","l":"crystal violet","na":1,"nb":1,"a":[["morphology/gram_stain.html","gram stain"]],"b":[["antibacterial/crystal-violet.html","crystal violet"]]},{"id":"CHEBI:82758","l":"prodigiosin","na":1,"nb":1,"a":[["morphology/red_pigmented.html","red pigmented"]],"b":[["unspecified/prodigiosin.html","prodigiosin"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":1,"nb":1,"a":[["ecology/plant_pathogen.html","plant pathogen"]],"b":[["antibacterial/fosfomycin.html","fosfomycin"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":1,"nb":1,"a":[["morphology/gliding.html","gliding"]],"b":[["antibacterial/althiomycin.html","althiomycin"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":1,"nb":1,"a":[["ecology/biosafety_level_3.html","biosafety level 3"]],"b":[["unspecified/%CE%B1-mangostin.html","α-mangostin"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis H37Rv","na":1,"nb":1,"a":[["physiology/dormancy.html","dormancy"]],"b":[["biocide/hydrogen-peroxide.html","hydrogen peroxide"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/TraitMech--CellStructureMech.json b/assets/fleet/edges/TraitMech--CellStructureMech.json index 23a49d7..df65417 100644 --- a/assets/fleet/edges/TraitMech--CellStructureMech.json +++ b/assets/fleet/edges/TraitMech--CellStructureMech.json @@ -1 +1 @@ -{"a":"TraitMech","b":"CellStructureMech","base":{"TraitMech":"https://culturebotai.github.io/TraitMech/pages/traits/","CellStructureMech":"https://culturebotai.github.io/CellStructureMech/pages/structures/"},"n":114,"by":{"GO":53,"NCBITaxon":40,"CHEBI":7,"UniProt":6,"METPO":5,"InterPro":3},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":65,"nb":31,"a":[["ecology/biosafety_level.html","biosafety level"],["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/host_associated.html","host-associated"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/halophily_preference.html","halophily preference"]],"b":[["appendage/curli.html","curli"],["appendage/p_pilus.html","P pilus"],["appendage/pilus.html","pilus"],["appendage/type_i_pilus.html","type I pilus"],["cytoskeleton/parm_filament.html","ParM filament"],["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":26,"nb":15,"a":[["environment/ph_phenotype_with_numerical_limits.html","pH phenotype with numerical limits"],["environment/temperature_optimum_mid4.html","temperature optimum mid4"],["genomics/rnlab_system.html","RnlAB system"],["metabolism/metabolism.html","metabolism"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/respiration.html","respiration"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":18,"nb":14,"a":[["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/neutrophilic.html","neutrophilic"],["environment/non_halophilic.html","non halophilic"],["genomics/spbk_system.html","SpbK system"]],"b":[["cytoskeleton/alfa_filament.html","AlfA filament"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]]},{"id":"GO:0009767","l":"photosynthetic electron transport chain","na":9,"nb":13,"a":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["metabolism/phototrophy.html","phototrophy"],["physiology/photoautotrophic.html","photoautotrophic"],["physiology/photoheterotrophic.html","photoheterotrophic"]],"b":[["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/photosystem_i.html","photosystem I"],["energy_complex/photosystem_ii.html","photosystem II"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]]},{"id":"NCBITaxon:155892","l":"Caulobacter vibrioides","na":7,"nb":9,"a":[["ecology/free_living.html","free-living"],["morphology/cell_width.html","cell width"],["morphology/crescent_shaped.html","crescent shaped"],["morphology/curved_shaped.html","curved shaped"],["morphology/holdfast.html","holdfast"],["morphology/monotrichous.html","monotrichous"]],"b":[["appendage/prostheca.html","prostheca"],["appendage/stalk_crossband.html","stalk crossband"],["appendage/tad_pilus.html","Tad pilus"],["cytoskeleton/bactofilin_filament.html","bactofilin filament"],["cytoskeleton/crescentin_filament.html","crescentin filament"],["cytoskeleton/cytoophidium.html","cytoophidium"]]},{"id":"GO:0009288","l":"bacterial-type flagellum","na":7,"nb":8,"a":[["morphology/amphitrichous.html","amphitrichous"],["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/lophotrichous.html","lophotrichous"],["morphology/monotrichous.html","monotrichous"],["morphology/non_motile.html","non motile"],["morphology/peritrichous.html","peritrichous"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":9,"nb":6,"a":[["environment/euryhaline.html","euryhaline"],["genomics/dartg_system.html","DarTG system"],["genomics/ddmde_system.html","DdmDE system"],["genomics/genomic_island.html","genomic island"],["genomics/lamassu_system.html","Lamassu system"],["genomics/nixi_system.html","NixI system"]],"b":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"],["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"],["secretion_system/type_vi_secretion_system_baseplate.html","type VI secretion system baseplate"],["secretion_system/type_vi_secretion_system_contractile_sheath.html","type VI secretion system contractile sheath"],["secretion_system/type_vi_secretion_system_hcp_tube.html","type VI secretion system Hcp tube"],["secretion_system/type_vi_secretion_system_vgrg_paar_spike_complex.html","type VI secretion system VgrG/PAAR spike complex"]]},{"id":"GO:0045259","l":"proton-transporting ATP synthase complex","na":13,"nb":5,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/fermentation.html","Fermentation"],["metabolism/metabolism.html","metabolism"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/carboxydotrophic.html","carboxydotrophic"]],"b":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]]},{"id":"GO:0009274","l":"peptidoglycan-based cell wall","na":5,"nb":7,"a":[["morphology/cell_shape.html","cell shape"],["morphology/cell_width.html","cell width"],["morphology/gram_stain.html","gram stain"],["morphology/pleomorphic_shaped.html","pleomorphic shaped"],["morphology/sphere_shaped.html","sphere shaped"]],"b":[["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"],["appendage/prostheca.html","prostheca"],["division_machinery/elongasome.html","elongasome"],["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]]},{"id":"NCBITaxon:1148","l":"Synechocystis sp. PCC 6803","na":4,"nb":11,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/trophic_type.html","trophic type"]],"b":[["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["inclusion/cyanophycin_granule.html","cyanophycin granule"],["inclusion/glycogen_granule.html","glycogen granule"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"]]},{"id":"GO:0006119","l":"oxidative phosphorylation","na":4,"nb":4,"a":[["environment/ph_delta.html","pH delta"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["physiology/organoheterotrophic.html","organoheterotrophic"],["physiology/persister_cell_formation.html","persister cell formation"]],"b":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":30,"nb":3,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"],["other/pyrenoid.html","pyrenoid"]]},{"id":"GO:0005737","l":"cytoplasm","na":3,"nb":13,"a":[["environment/ph_range_mid2.html","pH range mid2"],["environment/ph_range_very_low.html","pH range very low"],["morphology/spiral_shaped.html","spiral shaped"]],"b":[["envelope/plasma_membrane.html","plasma membrane"],["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"],["membrane_organelle/mitosome.html","mitosome"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":11,"nb":3,"a":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/aerobic.html","aerobic"],["genomics/avast_system.html","AVAST system"],["genomics/jukab_system.html","JukAB system"],["morphology/motile.html","motile"]],"b":[["appendage/type_iv_pilus.html","type IV pilus"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]]},{"id":"GO:0009523","l":"photosystem II","na":4,"nb":3,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["energy_complex/photosystem_ii.html","photosystem II"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]]},{"id":"NCBITaxon:224308","l":"Bacillus subtilis (strain 168)","na":4,"nb":3,"a":[["metabolism/proteolysis.html","proteolysis"],["morphology/spore_forming.html","spore forming"],["morphology/spore_shaped.html","spore shaped"],["morphology/sporulation.html","sporulation"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["division_machinery/divisome_complex.html","divisome complex"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]]},{"id":"NCBITaxon:431944","l":"Magnetospirillum gryphiswaldense MSR-1","na":3,"nb":4,"a":[["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/magnetosome.html","magnetosome"],["physiology/magnetotaxis.html","magnetotaxis"]],"b":[["cytoskeleton/mamk_filament.html","MamK filament"],["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]]},{"id":"GO:0015977","l":"carbon fixation","na":15,"nb":2,"a":[["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["other/pyrenoid.html","pyrenoid"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":15,"nb":2,"a":[["ecology/biosafety_level_2.html","biosafety level 2"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/coccus_shaped.html","coccus shaped"]],"b":[["envelope/periplasmic_space.html","periplasmic space"],["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":11,"nb":2,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"],["morphology/carboxysome.html","carboxysome"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":2,"nb":7,"a":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"]],"b":[["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/rc_lh1_pufx_core_complex.html","RC-LH1-PufX core complex"],["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"]]},{"id":"NCBITaxon:565050","l":"Caulobacter vibrioides NA1000","na":2,"nb":7,"a":[["morphology/crescent_shaped.html","crescent shaped"],["morphology/tailed_shaped.html","tailed shaped"]],"b":[["appendage/prostheca.html","prostheca"],["appendage/stalk_crossband.html","stalk crossband"],["appendage/tad_pilus.html","Tad pilus"],["cytoskeleton/bactofilin_filament.html","bactofilin filament"],["cytoskeleton/cytoophidium.html","cytoophidium"],["other/holdfast.html","holdfast"]]},{"id":"METPO:1000702","l":"motile","na":6,"nb":2,"a":[["morphology/axially_filamented.html","axially filamented"],["morphology/flagellated.html","flagellated"],["morphology/gliding.html","gliding"],["morphology/motile.html","motile"],["morphology/swarming_motility.html","swarming motility"],["morphology/twitching_motility.html","twitching motility"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":6,"nb":2,"a":[["ecology/animal_pathogen.html","animal pathogen"],["ecology/biosafety_level_2.html","biosafety level 2"],["genomics/genomic_island.html","genomic island"],["genomics/prophage.html","prophage"],["morphology/flagellated.html","flagellated"],["morphology/peritrichous.html","peritrichous"]],"b":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]]},{"id":"GO:0031470","l":"carboxysome","na":5,"nb":2,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["morphology/carboxysome.html","carboxysome"],["physiology/autotrophic.html","autotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]]},{"id":"GO:0044096","l":"type IV pilus","na":5,"nb":2,"a":[["ecology/predatory_bacterium.html","predatory bacterium"],["morphology/motile.html","motile"],["morphology/motility.html","motility"],["morphology/twitching_motility.html","twitching motility"],["morphology/type_iv_pilus.html","type IV pilus"]],"b":[["appendage/tad_pilus.html","Tad pilus"],["appendage/type_iv_pilus.html","type IV pilus"]]},{"id":"GO:0009252","l":"peptidoglycan biosynthetic process","na":4,"nb":2,"a":[["morphology/bacillus_shaped.html","bacillus shaped"],["morphology/cell_shape.html","cell shape"],["morphology/coccobacillus_shaped.html","coccobacillus shaped"],["morphology/rod_shaped.html","rod shaped"]],"b":[["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/elongasome.html","elongasome"]]},{"id":"GO:0031160","l":"spore wall","na":2,"nb":4,"a":[["morphology/spore_forming.html","spore forming"],["morphology/spore_shaped.html","spore shaped"]],"b":[["spore/microsporidian_type_endospore.html","microsporidian-type endospore"],["spore/microsporidian_type_exospore.html","microsporidian-type exospore"],["spore/polar_tube_anchoring_disc.html","polar tube anchoring disc"],["spore/spore_wall.html","spore wall"]]},{"id":"GO:0031469","l":"bacterial microcompartment","na":2,"nb":4,"a":[["morphology/carboxysome.html","carboxysome"],["morphology/intracellular_inclusion.html","intracellular inclusion"]],"b":[["microcompartment/bacterial_microcompartment.html","bacterial microcompartment"],["microcompartment/carboxysome.html","carboxysome"],["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"],["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]]},{"id":"GO:0042597","l":"periplasmic space","na":4,"nb":2,"a":[["morphology/axially_filamented.html","axially filamented"],["morphology/gram_negative.html","gram negative"],["physiology/methylotrophic.html","methylotrophic"],["physiology/natural_competence.html","natural competence"]],"b":[["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"],["envelope/periplasmic_space.html","periplasmic space"]]},{"id":"GO:0071973","l":"bacterial-type flagellum-dependent cell motility","na":2,"nb":4,"a":[["ecology/soil_dwelling.html","soil-dwelling"],["morphology/swarming_motility.html","swarming motility"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/periplasmic_flagellum.html","periplasmic flagellum"]]},{"id":"NCBITaxon:1097","l":"Chlorobaculum tepidum","na":2,"nb":4,"a":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"],["morphology/green_pigmented.html","green pigmented"]],"b":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":4,"nb":2,"a":[["morphology/diplococcus_shaped.html","diplococcus shaped"],["morphology/non_motile.html","non motile"],["morphology/sphere_shaped.html","sphere shaped"],["physiology/natural_competence.html","natural competence"]],"b":[["envelope/capsule.html","capsule"],["envelope/glycocalyx.html","glycocalyx"]]},{"id":"NCBITaxon:194439","l":"Chlorobaculum tepidum TLS","na":4,"nb":2,"a":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"],["physiology/photoautotrophic.html","photoautotrophic"],["physiology/photolithoautotrophic.html","photolithoautotrophic"],["physiology/photolithotrophic.html","photolithotrophic"]],"b":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["membrane_organelle/chlorosome.html","chlorosome"]]},{"id":"NCBITaxon:1108","l":"Chloroflexus aurantiacus","na":2,"nb":3,"a":[["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["morphology/green_pigmented.html","green pigmented"]],"b":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"]]},{"id":"NCBITaxon:274","l":"Thermus thermophilus","na":2,"nb":3,"a":[["environment/thermophilic.html","thermophilic"],["morphology/cell_width.html","cell width"]],"b":[["energy_complex/respiratory_chain_complex_i.html","respiratory chain complex I"],["ribonucleoprotein/ribosome.html","ribosome"],["ribonucleoprotein/small_ribosomal_subunit.html","small ribosomal subunit"]]},{"id":"GO:0031411","l":"gas vesicle","na":2,"nb":2,"a":[["morphology/gas_vesicle.html","gas vesicle"],["morphology/intracellular_inclusion.html","intracellular inclusion"]],"b":[["inclusion/gas_vesicle.html","gas vesicle"],["inclusion/gas_vesicle_shell.html","gas vesicle shell"]]},{"id":"GO:1990586","l":"divisome complex","na":2,"nb":2,"a":[["morphology/coccus_shaped.html","coccus shaped"],["morphology/ellipsoidal.html","ellipsoidal"]],"b":[["division_machinery/divisome_complex.html","divisome complex"],["envelope/division_septum.html","division septum"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":2,"nb":2,"a":[["morphology/carboxysome.html","carboxysome"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]]},{"id":"NCBITaxon:2261","l":"Pyrococcus furiosus","na":2,"nb":2,"a":[["environment/hyperthermophilic.html","hyperthermophilic"],["environment/temperature_range_high.html","temperature range high"]],"b":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"]]},{"id":"METPO:1000666","l":"cell shape","na":35,"nb":1,"a":[["morphology/bacillus_shaped.html","bacillus shaped"],["morphology/branched_shaped.html","branched shaped"],["morphology/cell_shape.html","cell shape"],["morphology/coccobacillus_shaped.html","coccobacillus shaped"],["morphology/coccus_shaped.html","coccus shaped"],["morphology/crescent_shaped.html","crescent shaped"]],"b":[["cytoskeleton/mreb_filament.html","MreB filament"]]},{"id":"GO:0016020","l":"membrane","na":1,"nb":23,"a":[["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"]],"b":[["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["envelope/cell_outer_membrane.html","cell outer membrane"],["envelope/cellular_bud_membrane.html","cellular bud membrane"],["envelope/plasma_membrane.html","plasma membrane"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"]]},{"id":"NCBITaxon:99287","l":"Salmonella typhimurium (strain LT2 / SGSC1412 / ATCC 700720)","na":1,"nb":16,"a":[["metabolism/tetrathionate_respiration.html","tetrathionate respiration"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"],["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":15,"a":[["morphology/motility.html","motility"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]]},{"id":"GO:0005886","l":"plasma membrane","na":1,"nb":10,"a":[["environment/desiccation_tolerant.html","desiccation tolerant"]],"b":[["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["appendage/prostheca.html","prostheca"],["envelope/cellular_bud_membrane.html","cellular bud membrane"],["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"],["envelope/plasma_membrane.html","plasma membrane"]]},{"id":"GO:0031090","l":"organelle membrane","na":1,"nb":8,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["membrane_organelle/apicomplexan_dense_granule_membrane.html","apicomplexan dense granule membrane"],["membrane_organelle/microneme_membrane.html","microneme membrane"],["membrane_organelle/mitosome_inner_membrane.html","mitosome inner membrane"],["membrane_organelle/mitosome_outer_membrane.html","mitosome outer membrane"],["membrane_organelle/nuclear_inner_membrane.html","nuclear inner membrane"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"]]},{"id":"UniProt:P0ABB4","l":"","na":8,"nb":1,"a":[["metabolism/metabolism.html","metabolism"],["metabolism/respiration.html","respiration"],["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"],["physiology/chemotrophic.html","chemotrophic"],["physiology/heterotrophic.html","heterotrophic"]],"b":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":7,"nb":1,"a":[["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/iron_oxidation.html","iron oxidation"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"]],"b":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]]},{"id":"NCBITaxon:1111708","l":"Synechocystis sp. (strain ATCC 27184 / PCC 6803 / Kazusa)","na":6,"nb":1,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/photoautotrophic.html","photoautotrophic"],["physiology/photolithotrophic.html","photolithotrophic"],["physiology/phototrophic.html","phototrophic"]],"b":[["energy_complex/phycobilisome.html","phycobilisome"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":6,"nb":1,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/oxidase_activity.html","oxidase activity"]],"b":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]]},{"id":"NCBITaxon:381666","l":"Cupriavidus necator H16","na":6,"nb":1,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"],["physiology/autotrophic.html","autotrophic"],["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["inclusion/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]]},{"id":"GO:0006935","l":"chemotaxis","na":5,"nb":1,"a":[["morphology/flagellated.html","flagellated"],["morphology/motile.html","motile"],["morphology/motility.html","motility"],["physiology/chemotaxis.html","chemotaxis"],["physiology/copiotrophic.html","copiotrophic"]],"b":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]]},{"id":"GO:0009420","l":"bacterial-type flagellum filament","na":1,"nb":5,"a":[["morphology/flagellated.html","flagellated"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]]},{"id":"GO:0009512","l":"cytochrome b6f complex","na":1,"nb":5,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"]],"b":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]]},{"id":"GO:0015979","l":"photosynthesis","na":1,"nb":5,"a":[["metabolism/photosynthesis.html","photosynthesis"]],"b":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"],["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"]]},{"id":"NCBITaxon:1773","l":"Mycobacterium tuberculosis","na":5,"nb":1,"a":[["ecology/biosafety_level_3.html","biosafety level 3"],["ecology/human_pathogen.html","human pathogen"],["physiology/acid_phosphatase_activity.html","acid phosphatase activity"],["physiology/dormancy.html","dormancy"],["physiology/pyrazinamidase_activity.html","pyrazinamidase activity"]],"b":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":5,"a":[["physiology/dormancy.html","dormancy"]],"b":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"],["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]]},{"id":"GO:0006412","l":"translation","na":4,"nb":1,"a":[["environment/mesophilic.html","mesophilic"],["genomics/codon_usage_bias.html","codon usage bias"],["physiology/cold_shock_response.html","cold shock response"],["physiology/dormancy.html","dormancy"]],"b":[["ribonucleoprotein/ribosome.html","ribosome"]]},{"id":"GO:0009424","l":"bacterial-type flagellum hook","na":1,"nb":4,"a":[["morphology/flagellated.html","flagellated"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]]},{"id":"GO:0009522","l":"photosystem I","na":1,"nb":4,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"]],"b":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/photosystem_i.html","photosystem I"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]]},{"id":"GO:0043684","l":"type IV secretion system complex","na":4,"nb":1,"a":[["ecology/animal_pathogen.html","animal pathogen"],["ecology/human_pathogen.html","human pathogen"],["genomics/genomic_island.html","genomic island"],["genomics/mobile_genetic_element.html","mobile genetic element"]],"b":[["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]]},{"id":"GO:0051301","l":"cell division","na":4,"nb":1,"a":[["morphology/sarcina_arrangement.html","sarcina arrangement"],["morphology/staphylococcus_arrangement.html","staphylococcus arrangement"],["morphology/streptococcus_arrangement.html","streptococcus arrangement"],["morphology/tetrad_arrangement.html","tetrad arrangement"]],"b":[["division_machinery/divisome_complex.html","divisome complex"]]},{"id":"GO:0110143","l":"magnetosome","na":1,"nb":4,"a":[["morphology/magnetosome.html","magnetosome"]],"b":[["cytoskeleton/mamk_filament.html","MamK filament"],["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]]},{"id":"InterPro:IPR001182","l":"","na":4,"nb":1,"a":[["morphology/fusiform_shaped.html","fusiform shaped"],["morphology/oval_shaped.html","oval shaped"],["morphology/prosthecate.html","prosthecate"],["morphology/tailed_shaped.html","tailed shaped"]],"b":[["envelope/peptidoglycan_based_cell_wall.html","peptidoglycan-based cell wall"]]},{"id":"InterPro:IPR001492","l":"","na":1,"nb":4,"a":[["morphology/spirochete_shaped.html","spirochete shaped"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]]},{"id":"CHEBI:17029","l":"chitin","na":1,"nb":3,"a":[["metabolism/chitinolysis.html","chitinolysis"]],"b":[["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["membrane_organelle/chitosome.html","chitosome"],["spore/microsporidian_type_endospore.html","microsporidian-type endospore"]]},{"id":"GO:0004129","l":"cytochrome-c oxidase activity","na":3,"nb":1,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["other/oxidase_negative.html","oxidase negative"],["physiology/oxidase_activity.html","oxidase activity"]],"b":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]]},{"id":"GO:0005840","l":"ribosome","na":1,"nb":3,"a":[["physiology/dormancy.html","dormancy"]],"b":[["ribonucleoprotein/large_ribosomal_subunit.html","large ribosomal subunit"],["ribonucleoprotein/ribosome.html","ribosome"],["ribonucleoprotein/small_ribosomal_subunit.html","small ribosomal subunit"]]},{"id":"GO:0042603","l":"capsule","na":1,"nb":3,"a":[["morphology/capsule.html","capsule"]],"b":[["envelope/capsule.html","capsule"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]]},{"id":"METPO:1000870","l":"sporulation","na":3,"nb":1,"a":[["morphology/non_spore_forming.html","non-spore forming"],["morphology/spore_forming.html","spore forming"],["morphology/sporulation.html","sporulation"]],"b":[["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":1,"nb":3,"a":[["morphology/heterocyst.html","heterocyst"]],"b":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":1,"nb":3,"a":[["environment/microaerophilic.html","microaerophilic"]],"b":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"]]},{"id":"CHEBI:16412","l":"","na":1,"nb":2,"a":[["morphology/gram_negative.html","gram negative"]],"b":[["envelope/cell_outer_membrane.html","cell outer membrane"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"]]},{"id":"CHEBI:27692","l":"","na":2,"nb":1,"a":[["morphology/cell_width_large.html","cell width large"],["morphology/sphere_shaped.html","sphere shaped"]],"b":[["envelope/peptidoglycan_based_cell_wall.html","peptidoglycan-based cell wall"]]},{"id":"GO:0000917","l":"division septum assembly","na":2,"nb":1,"a":[["morphology/sarcina_arrangement.html","sarcina arrangement"],["morphology/tetrad_arrangement.html","tetrad arrangement"]],"b":[["division_machinery/divisome_complex.html","divisome complex"]]},{"id":"GO:0006097","l":"glyoxylate cycle","na":1,"nb":2,"a":[["physiology/heterotrophic.html","heterotrophic"]],"b":[["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysome.html","glyoxysome"]]},{"id":"GO:0006260","l":"DNA replication","na":1,"nb":2,"a":[["genomics/gc_skew.html","GC skew"]],"b":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"],["other/single_stranded_dna_binding_protein_complex.html","single-stranded DNA-binding protein complex"]]},{"id":"GO:0016610","l":"nitrogenase complex","na":2,"nb":1,"a":[["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"]]},{"id":"GO:0030115","l":"S-layer","na":2,"nb":1,"a":[["morphology/square_shaped.html","square shaped"],["morphology/triangular_shaped.html","triangular shaped"]],"b":[["envelope/s_layer.html","S-layer"]]},{"id":"GO:0043107","l":"type IV pilus-dependent motility","na":2,"nb":1,"a":[["morphology/motile.html","motile"],["morphology/twitching_motility.html","twitching motility"]],"b":[["appendage/type_iv_pilus.html","type IV pilus"]]},{"id":"GO:0044674","l":"methyl coenzyme M reductase complex","na":2,"nb":1,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/methanogenesis.html","Methanogenesis"]],"b":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]]},{"id":"GO:0070088","l":"polyhydroxyalkanoate granule","na":2,"nb":1,"a":[["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]],"b":[["inclusion/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]]},{"id":"METPO:1000681","l":"rod shaped","na":1,"nb":2,"a":[["morphology/rod_shaped.html","rod shaped"]],"b":[["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/elongasome.html","elongasome"]]},{"id":"METPO:1000704","l":"flagellated","na":2,"nb":1,"a":[["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/flagellated.html","flagellated"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":2,"nb":1,"a":[["genomics/wadjet_system.html","Wadjet system"],["morphology/irregular_shaped.html","irregular shaped"]],"b":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]]},{"id":"NCBITaxon:2285","l":"Sulfolobus acidocaldarius","na":1,"nb":2,"a":[["environment/temperature_range_high.html","temperature range high"]],"b":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"]]},{"id":"NCBITaxon:32046","l":"Synechococcus elongatus","na":2,"nb":1,"a":[["morphology/carboxysome.html","carboxysome"],["physiology/autotrophic.html","autotrophic"]],"b":[["energy_complex/photosystem_i.html","photosystem I"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":2,"nb":1,"a":[["genomics/ploidy.html","ploidy"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"]]},{"id":"UniProt:Q03511","l":"","na":1,"nb":2,"a":[["morphology/carboxysome.html","carboxysome"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]]},{"id":"CHEBI:16838","l":"polyphosphate","na":1,"nb":1,"a":[["environment/zinc_tolerant.html","zinc tolerant"]],"b":[["membrane_organelle/acidocalcisome.html","acidocalcisome"]]},{"id":"GO:0006457","l":"protein folding","na":1,"nb":1,"a":[["environment/temperature_range_high.html","temperature range high"]],"b":[["other/chaperonin_containing_t_complex.html","chaperonin-containing T-complex"]]},{"id":"GO:0031012","l":"extracellular matrix","na":1,"nb":1,"a":[["ecology/biofilm_formation.html","biofilm formation"]],"b":[["other/holdfast.html","holdfast"]]},{"id":"GO:0031411.","l":"","na":1,"nb":1,"a":[["morphology/gas_vesicle.html","gas vesicle"]],"b":[["inclusion/gas_vesicle.html","gas vesicle"]]},{"id":"GO:0033172","l":"gas vesicle shell","na":1,"nb":1,"a":[["morphology/gas_vesicle.html","gas vesicle"]],"b":[["inclusion/gas_vesicle_shell.html","gas vesicle shell"]]},{"id":"GO:0042254","l":"ribosome biogenesis","na":1,"nb":1,"a":[["genomics/rrna_operon_copy_number.html","rRNA operon copy number"]],"b":[["other/nucleolus.html","nucleolus"]]},{"id":"GO:0042763","l":"intracellular immature spore","na":1,"nb":1,"a":[["morphology/spore_forming.html","spore forming"]],"b":[["spore/endospore_forming_forespore.html","endospore-forming forespore"]]},{"id":"GO:0043263","l":"cellulosome","na":1,"nb":1,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["other/cellulosome.html","cellulosome"]]},{"id":"GO:0045271","l":"respiratory chain complex I","na":1,"nb":1,"a":[["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"]],"b":[["energy_complex/respiratory_chain_complex_i.html","respiratory chain complex I"]]},{"id":"GO:0045273","l":"respiratory chain complex II (succinate dehydrogenase)","na":1,"nb":1,"a":[["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"]],"b":[["energy_complex/respiratory_chain_complex_ii_succinate_dehydrogenase.html","respiratory chain complex II (succinate dehydrogenase)"]]},{"id":"GO:0045275","l":"respiratory chain complex III","na":1,"nb":1,"a":[["physiology/organoheterotrophic.html","organoheterotrophic"]],"b":[["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"]]},{"id":"GO:0045277","l":"respiratory chain complex IV","na":1,"nb":1,"a":[["physiology/oxidase_activity.html","oxidase activity"]],"b":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]]},{"id":"GO:0071944","l":"cell periphery","na":1,"nb":1,"a":[["morphology/spiral_shaped.html","spiral shaped"]],"b":[["envelope/plasma_membrane.html","plasma membrane"]]},{"id":"InterPro:IPR000067","l":"","na":1,"nb":1,"a":[["morphology/lophotrichous.html","lophotrichous"]],"b":[["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"]]},{"id":"NCBITaxon:139","l":"Borreliella burgdorferi","na":1,"nb":1,"a":[["genomics/plasmid_carriage.html","plasmid carriage"]],"b":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":1,"nb":1,"a":[["morphology/s_layer.html","S-layer"]],"b":[["envelope/s_layer.html","S-layer"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":1,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["other/cellulosome.html","cellulosome"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":1,"nb":1,"a":[["physiology/alkaline_phosphatase_activity.html","alkaline phosphatase activity"]],"b":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]]},{"id":"NCBITaxon:2246","l":"Haloferax volcanii","na":1,"nb":1,"a":[["morphology/disc_shaped.html","disc shaped"]],"b":[["cytoskeleton/cetz_filament.html","CetZ filament"]]},{"id":"NCBITaxon:243233","l":"Methylococcus capsulatus Bath","na":1,"nb":1,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["membrane_organelle/methane_oxidizing_organelle.html","methane-oxidizing organelle"]]},{"id":"NCBITaxon:837","l":"Porphyromonas gingivalis","na":1,"nb":1,"a":[["morphology/black_pigmented.html","black pigmented"]],"b":[["secretion_system/type_ix_protein_secretion_system_complex.html","type IX protein secretion system complex"]]},{"id":"UniProt:P0C2S5","l":"","na":1,"nb":1,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["other/cellulosome.html","cellulosome"]]},{"id":"UniProt:P35149","l":"","na":1,"nb":1,"a":[["morphology/spore_shaped.html","spore shaped"]],"b":[["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]]},{"id":"UniProt:Q31NB3","l":"","na":1,"nb":1,"a":[["physiology/photolithoautotrophic.html","photolithoautotrophic"]],"b":[["microcompartment/carboxysome.html","carboxysome"]]},{"id":"UniProt:Q6NE59","l":"","na":1,"nb":1,"a":[["morphology/magnetosome.html","magnetosome"]],"b":[["cytoskeleton/mamk_filament.html","MamK filament"]]}]} \ No newline at end of file +{"a":"TraitMech","b":"CellStructureMech","base":{"TraitMech":"https://culturebotai.github.io/TraitMech/pages/traits/","CellStructureMech":"https://culturebotai.github.io/CellStructureMech/pages/structures/"},"n":114,"by":{"GO":53,"NCBITaxon":40,"CHEBI":7,"UniProt":6,"METPO":5,"InterPro":3},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":65,"nb":31,"a":[["ecology/biosafety_level.html","biosafety level"],["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/host_associated.html","host-associated"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/halophily_preference.html","halophily preference"]],"b":[["appendage/curli.html","curli"],["appendage/p_pilus.html","P pilus"],["appendage/pilus.html","pilus"],["appendage/type_i_pilus.html","type I pilus"],["cytoskeleton/parm_filament.html","ParM filament"],["energy_complex/cytochrome_bd_i_ubiquinol_oxidase_complex.html","cytochrome bd-I ubiquinol oxidase complex"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli K-12","na":26,"nb":15,"a":[["environment/ph_phenotype_with_numerical_limits.html","pH phenotype with numerical limits"],["environment/temperature_optimum_mid4.html","temperature optimum mid4"],["genomics/rnlab_system.html","RnlAB system"],["metabolism/metabolism.html","metabolism"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/respiration.html","respiration"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":18,"nb":14,"a":[["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/neutrophilic.html","neutrophilic"],["environment/non_halophilic.html","non halophilic"],["genomics/spbk_system.html","SpbK system"]],"b":[["cytoskeleton/alfa_filament.html","AlfA filament"],["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/divisome_complex.html","divisome complex"],["division_machinery/elongasome.html","elongasome"],["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["envelope/division_septum.html","division septum"]]},{"id":"GO:0009767","l":"photosynthetic electron transport chain","na":9,"nb":13,"a":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["metabolism/phototrophy.html","phototrophy"],["physiology/photoautotrophic.html","photoautotrophic"],["physiology/photoheterotrophic.html","photoheterotrophic"]],"b":[["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/photosystem_i.html","photosystem I"],["energy_complex/photosystem_ii.html","photosystem II"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]]},{"id":"NCBITaxon:155892","l":"Caulobacter vibrioides","na":7,"nb":9,"a":[["ecology/free_living.html","free-living"],["morphology/cell_width.html","cell width"],["morphology/crescent_shaped.html","crescent shaped"],["morphology/curved_shaped.html","curved shaped"],["morphology/holdfast.html","holdfast"],["morphology/monotrichous.html","monotrichous"]],"b":[["appendage/prostheca.html","prostheca"],["appendage/stalk_crossband.html","stalk crossband"],["appendage/tad_pilus.html","Tad pilus"],["cytoskeleton/bactofilin_filament.html","bactofilin filament"],["cytoskeleton/crescentin_filament.html","crescentin filament"],["cytoskeleton/cytoophidium.html","cytoophidium"]]},{"id":"GO:0009288","l":"bacterial-type flagellum","na":7,"nb":8,"a":[["morphology/amphitrichous.html","amphitrichous"],["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/lophotrichous.html","lophotrichous"],["morphology/monotrichous.html","monotrichous"],["morphology/non_motile.html","non motile"],["morphology/peritrichous.html","peritrichous"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":9,"nb":6,"a":[["environment/euryhaline.html","euryhaline"],["genomics/dartg_system.html","DarTG system"],["genomics/ddmde_system.html","DdmDE system"],["genomics/genomic_island.html","genomic island"],["genomics/lamassu_system.html","Lamassu system"],["genomics/nixi_system.html","NixI system"]],"b":[["secretion_system/type_ii_protein_secretion_system_complex.html","type II protein secretion system complex"],["secretion_system/type_vi_protein_secretion_system_complex.html","type VI protein secretion system complex"],["secretion_system/type_vi_secretion_system_baseplate.html","type VI secretion system baseplate"],["secretion_system/type_vi_secretion_system_contractile_sheath.html","type VI secretion system contractile sheath"],["secretion_system/type_vi_secretion_system_hcp_tube.html","type VI secretion system Hcp tube"],["secretion_system/type_vi_secretion_system_vgrg_paar_spike_complex.html","type VI secretion system VgrG/PAAR spike complex"]]},{"id":"GO:0045259","l":"proton-transporting ATP synthase complex","na":13,"nb":5,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/fermentation.html","Fermentation"],["metabolism/metabolism.html","metabolism"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/carboxydotrophic.html","carboxydotrophic"]],"b":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]]},{"id":"GO:0009274","l":"peptidoglycan-based cell wall","na":5,"nb":7,"a":[["morphology/cell_shape.html","cell shape"],["morphology/cell_width.html","cell width"],["morphology/gram_stain.html","gram stain"],["morphology/pleomorphic_shaped.html","pleomorphic shaped"],["morphology/sphere_shaped.html","sphere shaped"]],"b":[["appendage/bacterial_type_flagellum_motor.html","bacterial-type flagellum motor"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"],["appendage/prostheca.html","prostheca"],["division_machinery/elongasome.html","elongasome"],["envelope/gram_negative_bacterium_type_cell_wall.html","Gram-negative-bacterium-type cell wall"],["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]]},{"id":"NCBITaxon:1148","l":"Synechocystis sp. PCC 6803","na":4,"nb":11,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/trophic_type.html","trophic type"]],"b":[["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["inclusion/cyanophycin_granule.html","cyanophycin granule"],["inclusion/glycogen_granule.html","glycogen granule"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"]]},{"id":"GO:0006119","l":"oxidative phosphorylation","na":4,"nb":4,"a":[["environment/ph_delta.html","pH delta"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["physiology/organoheterotrophic.html","organoheterotrophic"],["physiology/persister_cell_formation.html","persister cell formation"]],"b":[["membrane_organelle/mitochondrial_crista.html","mitochondrial crista"],["membrane_organelle/mitochondrial_envelope.html","mitochondrial envelope"],["membrane_organelle/mitochondrial_inner_membrane.html","mitochondrial inner membrane"],["membrane_organelle/mitochondrion.html","mitochondrion"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":30,"nb":3,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"],["other/pyrenoid.html","pyrenoid"]]},{"id":"GO:0005737","l":"cytoplasm","na":3,"nb":13,"a":[["environment/ph_range_mid2.html","pH range mid2"],["environment/ph_range_very_low.html","pH range very low"],["morphology/spiral_shaped.html","spiral shaped"]],"b":[["envelope/plasma_membrane.html","plasma membrane"],["membrane_organelle/chloroplast_outer_membrane.html","chloroplast outer membrane"],["membrane_organelle/cyanelle_outer_membrane.html","cyanelle outer membrane"],["membrane_organelle/hydrogenosome.html","hydrogenosome"],["membrane_organelle/mitochondrial_outer_membrane.html","mitochondrial outer membrane"],["membrane_organelle/mitosome.html","mitosome"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":11,"nb":3,"a":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/aerobic.html","aerobic"],["genomics/avast_system.html","AVAST system"],["genomics/jukab_system.html","JukAB system"],["morphology/motile.html","motile"]],"b":[["appendage/type_iv_pilus.html","type IV pilus"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]]},{"id":"GO:0009523","l":"photosystem II","na":4,"nb":3,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["energy_complex/photosystem_ii.html","photosystem II"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]]},{"id":"NCBITaxon:224308","l":"Bacillus subtilis subsp. subtilis str. 168","na":4,"nb":3,"a":[["metabolism/proteolysis.html","proteolysis"],["morphology/spore_forming.html","spore forming"],["morphology/spore_shaped.html","spore shaped"],["morphology/sporulation.html","sporulation"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["division_machinery/divisome_complex.html","divisome complex"],["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]]},{"id":"NCBITaxon:431944","l":"Magnetospirillum gryphiswaldense MSR-1","na":3,"nb":4,"a":[["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/magnetosome.html","magnetosome"],["physiology/magnetotaxis.html","magnetotaxis"]],"b":[["cytoskeleton/mamk_filament.html","MamK filament"],["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]]},{"id":"GO:0015977","l":"carbon fixation","na":15,"nb":2,"a":[["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["other/pyrenoid.html","pyrenoid"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":15,"nb":2,"a":[["ecology/biosafety_level_2.html","biosafety level 2"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/coccus_shaped.html","coccus shaped"]],"b":[["envelope/periplasmic_space.html","periplasmic space"],["other/bacterial_extracellular_vesicle.html","bacterial extracellular vesicle"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":11,"nb":2,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"],["morphology/carboxysome.html","carboxysome"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":2,"nb":7,"a":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"]],"b":[["energy_complex/chromatophore_cytochrome_bc1_complex.html","chromatophore cytochrome bc1 complex"],["energy_complex/lh2_peripheral_light_harvesting_antenna_complex.html","LH2 peripheral light-harvesting antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["energy_complex/rc_lh1_pufx_core_complex.html","RC-LH1-PufX core complex"],["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"],["membrane_organelle/photosynthetic_membrane.html","photosynthetic membrane"]]},{"id":"NCBITaxon:565050","l":"Caulobacter vibrioides NA1000","na":2,"nb":7,"a":[["morphology/crescent_shaped.html","crescent shaped"],["morphology/tailed_shaped.html","tailed shaped"]],"b":[["appendage/prostheca.html","prostheca"],["appendage/stalk_crossband.html","stalk crossband"],["appendage/tad_pilus.html","Tad pilus"],["cytoskeleton/bactofilin_filament.html","bactofilin filament"],["cytoskeleton/cytoophidium.html","cytoophidium"],["other/holdfast.html","holdfast"]]},{"id":"METPO:1000702","l":"motile","na":6,"nb":2,"a":[["morphology/axially_filamented.html","axially filamented"],["morphology/flagellated.html","flagellated"],["morphology/gliding.html","gliding"],["morphology/motile.html","motile"],["morphology/swarming_motility.html","swarming motility"],["morphology/twitching_motility.html","twitching motility"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":6,"nb":2,"a":[["ecology/animal_pathogen.html","animal pathogen"],["ecology/biosafety_level_2.html","biosafety level 2"],["genomics/genomic_island.html","genomic island"],["genomics/prophage.html","prophage"],["morphology/flagellated.html","flagellated"],["morphology/peritrichous.html","peritrichous"]],"b":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]]},{"id":"GO:0031470","l":"carboxysome","na":5,"nb":2,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["morphology/carboxysome.html","carboxysome"],["physiology/autotrophic.html","autotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]]},{"id":"GO:0044096","l":"type IV pilus","na":5,"nb":2,"a":[["ecology/predatory_bacterium.html","predatory bacterium"],["morphology/motile.html","motile"],["morphology/motility.html","motility"],["morphology/twitching_motility.html","twitching motility"],["morphology/type_iv_pilus.html","type IV pilus"]],"b":[["appendage/tad_pilus.html","Tad pilus"],["appendage/type_iv_pilus.html","type IV pilus"]]},{"id":"GO:0009252","l":"peptidoglycan biosynthetic process","na":4,"nb":2,"a":[["morphology/bacillus_shaped.html","bacillus shaped"],["morphology/cell_shape.html","cell shape"],["morphology/coccobacillus_shaped.html","coccobacillus shaped"],["morphology/rod_shaped.html","rod shaped"]],"b":[["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/elongasome.html","elongasome"]]},{"id":"GO:0031160","l":"spore wall","na":2,"nb":4,"a":[["morphology/spore_forming.html","spore forming"],["morphology/spore_shaped.html","spore shaped"]],"b":[["spore/microsporidian_type_endospore.html","microsporidian-type endospore"],["spore/microsporidian_type_exospore.html","microsporidian-type exospore"],["spore/polar_tube_anchoring_disc.html","polar tube anchoring disc"],["spore/spore_wall.html","spore wall"]]},{"id":"GO:0031469","l":"bacterial microcompartment","na":2,"nb":4,"a":[["morphology/carboxysome.html","carboxysome"],["morphology/intracellular_inclusion.html","intracellular inclusion"]],"b":[["microcompartment/bacterial_microcompartment.html","bacterial microcompartment"],["microcompartment/carboxysome.html","carboxysome"],["microcompartment/ethanolamine_degradation_polyhedral_organelle.html","ethanolamine degradation polyhedral organelle"],["microcompartment/propanediol_degradation_polyhedral_organelle.html","propanediol degradation polyhedral organelle"]]},{"id":"GO:0042597","l":"periplasmic space","na":4,"nb":2,"a":[["morphology/axially_filamented.html","axially filamented"],["morphology/gram_negative.html","gram negative"],["physiology/methylotrophic.html","methylotrophic"],["physiology/natural_competence.html","natural competence"]],"b":[["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"],["envelope/periplasmic_space.html","periplasmic space"]]},{"id":"GO:0071973","l":"bacterial-type flagellum-dependent cell motility","na":2,"nb":4,"a":[["ecology/soil_dwelling.html","soil-dwelling"],["morphology/swarming_motility.html","swarming motility"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/periplasmic_flagellum.html","periplasmic flagellum"]]},{"id":"NCBITaxon:1097","l":"Chlorobaculum tepidum","na":2,"nb":4,"a":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"],["morphology/green_pigmented.html","green pigmented"]],"b":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["energy_complex/light_harvesting_complex.html","light-harvesting complex"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":4,"nb":2,"a":[["morphology/diplococcus_shaped.html","diplococcus shaped"],["morphology/non_motile.html","non motile"],["morphology/sphere_shaped.html","sphere shaped"],["physiology/natural_competence.html","natural competence"]],"b":[["envelope/capsule.html","capsule"],["envelope/glycocalyx.html","glycocalyx"]]},{"id":"NCBITaxon:194439","l":"Chlorobaculum tepidum TLS","na":4,"nb":2,"a":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"],["physiology/photoautotrophic.html","photoautotrophic"],["physiology/photolithoautotrophic.html","photolithoautotrophic"],["physiology/photolithotrophic.html","photolithotrophic"]],"b":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["membrane_organelle/chlorosome.html","chlorosome"]]},{"id":"NCBITaxon:1108","l":"Chloroflexus aurantiacus","na":2,"nb":3,"a":[["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["morphology/green_pigmented.html","green pigmented"]],"b":[["energy_complex/chlorosome_baseplate_antenna_complex.html","chlorosome baseplate antenna complex"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"]]},{"id":"NCBITaxon:274","l":"Thermus thermophilus","na":2,"nb":3,"a":[["environment/thermophilic.html","thermophilic"],["morphology/cell_width.html","cell width"]],"b":[["energy_complex/respiratory_chain_complex_i.html","respiratory chain complex I"],["ribonucleoprotein/ribosome.html","ribosome"],["ribonucleoprotein/small_ribosomal_subunit.html","small ribosomal subunit"]]},{"id":"GO:0031411","l":"gas vesicle","na":2,"nb":2,"a":[["morphology/gas_vesicle.html","gas vesicle"],["morphology/intracellular_inclusion.html","intracellular inclusion"]],"b":[["inclusion/gas_vesicle.html","gas vesicle"],["inclusion/gas_vesicle_shell.html","gas vesicle shell"]]},{"id":"GO:1990586","l":"divisome complex","na":2,"nb":2,"a":[["morphology/coccus_shaped.html","coccus shaped"],["morphology/ellipsoidal.html","ellipsoidal"]],"b":[["division_machinery/divisome_complex.html","divisome complex"],["envelope/division_septum.html","division septum"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":2,"nb":2,"a":[["morphology/carboxysome.html","carboxysome"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]]},{"id":"NCBITaxon:2261","l":"Pyrococcus furiosus","na":2,"nb":2,"a":[["environment/hyperthermophilic.html","hyperthermophilic"],["environment/temperature_range_high.html","temperature range high"]],"b":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"]]},{"id":"METPO:1000666","l":"cell shape","na":35,"nb":1,"a":[["morphology/bacillus_shaped.html","bacillus shaped"],["morphology/branched_shaped.html","branched shaped"],["morphology/cell_shape.html","cell shape"],["morphology/coccobacillus_shaped.html","coccobacillus shaped"],["morphology/coccus_shaped.html","coccus shaped"],["morphology/crescent_shaped.html","crescent shaped"]],"b":[["cytoskeleton/mreb_filament.html","MreB filament"]]},{"id":"GO:0016020","l":"membrane","na":1,"nb":23,"a":[["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"]],"b":[["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["envelope/cell_outer_membrane.html","cell outer membrane"],["envelope/cellular_bud_membrane.html","cellular bud membrane"],["envelope/plasma_membrane.html","plasma membrane"],["membrane_organelle/acidocalcisome_membrane.html","acidocalcisome membrane"],["membrane_organelle/anammoxosome_membrane.html","anammoxosome membrane"]]},{"id":"NCBITaxon:99287","l":"Salmonella enterica subsp. enterica serovar Typhimurium str. LT2","na":1,"nb":16,"a":[["metabolism/tetrathionate_respiration.html","tetrathionate respiration"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"],["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":15,"a":[["morphology/motility.html","motility"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body.html","bacterial-type flagellum basal body"],["appendage/bacterial_type_flagellum_basal_body_c_ring.html","bacterial-type flagellum basal body, C ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod.html","bacterial-type flagellum basal body, distal rod"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_l_ring.html","bacterial-type flagellum basal body, distal rod, L ring"],["appendage/bacterial_type_flagellum_basal_body_distal_rod_p_ring.html","bacterial-type flagellum basal body, distal rod, P ring"]]},{"id":"GO:0005886","l":"plasma membrane","na":1,"nb":10,"a":[["environment/desiccation_tolerant.html","desiccation tolerant"]],"b":[["appendage/attachment_organelle_membrane.html","attachment organelle membrane"],["appendage/prostheca.html","prostheca"],["envelope/cellular_bud_membrane.html","cellular bud membrane"],["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"],["envelope/plasma_membrane.html","plasma membrane"]]},{"id":"GO:0031090","l":"organelle membrane","na":1,"nb":8,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["membrane_organelle/apicomplexan_dense_granule_membrane.html","apicomplexan dense granule membrane"],["membrane_organelle/microneme_membrane.html","microneme membrane"],["membrane_organelle/mitosome_inner_membrane.html","mitosome inner membrane"],["membrane_organelle/mitosome_outer_membrane.html","mitosome outer membrane"],["membrane_organelle/nuclear_inner_membrane.html","nuclear inner membrane"],["membrane_organelle/nuclear_outer_membrane.html","nuclear outer membrane"]]},{"id":"UniProt:P0ABB4","l":"","na":8,"nb":1,"a":[["metabolism/metabolism.html","metabolism"],["metabolism/respiration.html","respiration"],["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"],["physiology/chemotrophic.html","chemotrophic"],["physiology/heterotrophic.html","heterotrophic"]],"b":[["energy_complex/proton_transporting_atp_synthase_complex.html","proton-transporting ATP synthase complex"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":7,"nb":1,"a":[["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/iron_oxidation.html","iron oxidation"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"]],"b":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]]},{"id":"NCBITaxon:1111708","l":"Synechocystis sp. PCC 6803 substr. Kazusa","na":6,"nb":1,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/photoautotrophic.html","photoautotrophic"],["physiology/photolithotrophic.html","photolithotrophic"],["physiology/phototrophic.html","phototrophic"]],"b":[["energy_complex/phycobilisome.html","phycobilisome"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":6,"nb":1,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/oxidase_activity.html","oxidase activity"]],"b":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]]},{"id":"NCBITaxon:381666","l":"Cupriavidus necator H16","na":6,"nb":1,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"],["physiology/autotrophic.html","autotrophic"],["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["inclusion/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]]},{"id":"GO:0006935","l":"chemotaxis","na":5,"nb":1,"a":[["morphology/flagellated.html","flagellated"],["morphology/motile.html","motile"],["morphology/motility.html","motility"],["physiology/chemotaxis.html","chemotaxis"],["physiology/copiotrophic.html","copiotrophic"]],"b":[["other/methyl_accepting_chemotaxis_protein_complex.html","methyl accepting chemotaxis protein complex"]]},{"id":"GO:0009420","l":"bacterial-type flagellum filament","na":1,"nb":5,"a":[["morphology/flagellated.html","flagellated"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]]},{"id":"GO:0009512","l":"cytochrome b6f complex","na":1,"nb":5,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"]],"b":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["membrane_organelle/bacterial_thylakoid.html","bacterial thylakoid"],["membrane_organelle/plasma_membrane_derived_thylakoid_membrane.html","plasma membrane-derived thylakoid membrane"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]]},{"id":"GO:0015979","l":"photosynthesis","na":1,"nb":5,"a":[["metabolism/photosynthesis.html","photosynthesis"]],"b":[["membrane_organelle/chloroplast.html","chloroplast"],["membrane_organelle/chlorosome.html","chlorosome"],["membrane_organelle/chlorosome_envelope.html","chlorosome envelope"],["membrane_organelle/cyanelle.html","cyanelle"],["membrane_organelle/organellar_chromatophore.html","organellar chromatophore"]]},{"id":"NCBITaxon:1773","l":"Mycobacterium tuberculosis","na":5,"nb":1,"a":[["ecology/biosafety_level_3.html","biosafety level 3"],["ecology/human_pathogen.html","human pathogen"],["physiology/acid_phosphatase_activity.html","acid phosphatase activity"],["physiology/dormancy.html","dormancy"],["physiology/pyrazinamidase_activity.html","pyrazinamidase activity"]],"b":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis H37Rv","na":1,"nb":5,"a":[["physiology/dormancy.html","dormancy"]],"b":[["microcompartment/encapsulin_nanocompartment.html","encapsulin nanocompartment"],["other/proteasome_accessory_complex.html","proteasome accessory complex"],["other/proteasome_complex.html","proteasome complex"],["other/proteasome_core_complex.html","proteasome core complex"],["secretion_system/esx_5_type_vii_secretion_system_membrane_complex.html","ESX-5 type VII secretion system membrane complex"]]},{"id":"GO:0006412","l":"translation","na":4,"nb":1,"a":[["environment/mesophilic.html","mesophilic"],["genomics/codon_usage_bias.html","codon usage bias"],["physiology/cold_shock_response.html","cold shock response"],["physiology/dormancy.html","dormancy"]],"b":[["ribonucleoprotein/ribosome.html","ribosome"]]},{"id":"GO:0009424","l":"bacterial-type flagellum hook","na":1,"nb":4,"a":[["morphology/flagellated.html","flagellated"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_basal_body_rod.html","bacterial-type flagellum basal body, rod"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]]},{"id":"GO:0009522","l":"photosystem I","na":1,"nb":4,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"]],"b":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/photosystem_i.html","photosystem I"],["energy_complex/plasma_membrane_derived_photosystem_i.html","plasma membrane-derived photosystem I"],["membrane_organelle/thylakoid_membrane.html","thylakoid membrane"]]},{"id":"GO:0043684","l":"type IV secretion system complex","na":4,"nb":1,"a":[["ecology/animal_pathogen.html","animal pathogen"],["ecology/human_pathogen.html","human pathogen"],["genomics/genomic_island.html","genomic island"],["genomics/mobile_genetic_element.html","mobile genetic element"]],"b":[["secretion_system/type_iv_secretion_system_complex.html","type IV secretion system complex"]]},{"id":"GO:0051301","l":"cell division","na":4,"nb":1,"a":[["morphology/sarcina_arrangement.html","sarcina arrangement"],["morphology/staphylococcus_arrangement.html","staphylococcus arrangement"],["morphology/streptococcus_arrangement.html","streptococcus arrangement"],["morphology/tetrad_arrangement.html","tetrad arrangement"]],"b":[["division_machinery/divisome_complex.html","divisome complex"]]},{"id":"GO:0110143","l":"magnetosome","na":1,"nb":4,"a":[["morphology/magnetosome.html","magnetosome"]],"b":[["cytoskeleton/mamk_filament.html","MamK filament"],["membrane_organelle/magnetosome.html","magnetosome"],["membrane_organelle/magnetosome_lumen.html","magnetosome lumen"],["membrane_organelle/magnetosome_membrane.html","magnetosome membrane"]]},{"id":"InterPro:IPR001182","l":"","na":4,"nb":1,"a":[["morphology/fusiform_shaped.html","fusiform shaped"],["morphology/oval_shaped.html","oval shaped"],["morphology/prosthecate.html","prosthecate"],["morphology/tailed_shaped.html","tailed shaped"]],"b":[["envelope/peptidoglycan_based_cell_wall.html","peptidoglycan-based cell wall"]]},{"id":"InterPro:IPR001492","l":"","na":1,"nb":4,"a":[["morphology/spirochete_shaped.html","spirochete shaped"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"],["appendage/bacterial_type_flagellum_filament.html","bacterial-type flagellum filament"],["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook_filament_junction.html","bacterial-type flagellum hook-filament junction"]]},{"id":"CHEBI:17029","l":"chitin","na":1,"nb":3,"a":[["metabolism/chitinolysis.html","chitinolysis"]],"b":[["envelope/fungal_type_cell_wall.html","fungal-type cell wall"],["membrane_organelle/chitosome.html","chitosome"],["spore/microsporidian_type_endospore.html","microsporidian-type endospore"]]},{"id":"GO:0004129","l":"cytochrome-c oxidase activity","na":3,"nb":1,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["other/oxidase_negative.html","oxidase negative"],["physiology/oxidase_activity.html","oxidase activity"]],"b":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]]},{"id":"GO:0005840","l":"ribosome","na":1,"nb":3,"a":[["physiology/dormancy.html","dormancy"]],"b":[["ribonucleoprotein/large_ribosomal_subunit.html","large ribosomal subunit"],["ribonucleoprotein/ribosome.html","ribosome"],["ribonucleoprotein/small_ribosomal_subunit.html","small ribosomal subunit"]]},{"id":"GO:0042603","l":"capsule","na":1,"nb":3,"a":[["morphology/capsule.html","capsule"]],"b":[["envelope/capsule.html","capsule"],["envelope/glycocalyx.html","glycocalyx"],["envelope/slime_layer.html","slime layer"]]},{"id":"METPO:1000870","l":"sporulation","na":3,"nb":1,"a":[["morphology/non_spore_forming.html","non-spore forming"],["morphology/spore_forming.html","spore forming"],["morphology/sporulation.html","sporulation"]],"b":[["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. PCC 7120 = FACHB-418","na":1,"nb":3,"a":[["morphology/heterocyst.html","heterocyst"]],"b":[["energy_complex/cytochrome_b6f_complex.html","cytochrome b6f complex"],["energy_complex/phycobilisome.html","phycobilisome"],["energy_complex/plasma_membrane_derived_thylakoid_photosystem_ii.html","plasma membrane-derived thylakoid photosystem II"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":1,"nb":3,"a":[["environment/microaerophilic.html","microaerophilic"]],"b":[["appendage/bacterial_type_flagellum_filament_cap.html","bacterial-type flagellum filament cap"],["appendage/bacterial_type_flagellum_hook.html","bacterial-type flagellum hook"],["appendage/bacterial_type_flagellum_stator_complex.html","bacterial-type flagellum stator complex"]]},{"id":"CHEBI:16412","l":"","na":1,"nb":2,"a":[["morphology/gram_negative.html","gram negative"]],"b":[["envelope/cell_outer_membrane.html","cell outer membrane"],["envelope/outer_membrane_bounded_periplasmic_space.html","outer membrane-bounded periplasmic space"]]},{"id":"CHEBI:27692","l":"","na":2,"nb":1,"a":[["morphology/cell_width_large.html","cell width large"],["morphology/sphere_shaped.html","sphere shaped"]],"b":[["envelope/peptidoglycan_based_cell_wall.html","peptidoglycan-based cell wall"]]},{"id":"GO:0000917","l":"division septum assembly","na":2,"nb":1,"a":[["morphology/sarcina_arrangement.html","sarcina arrangement"],["morphology/tetrad_arrangement.html","tetrad arrangement"]],"b":[["division_machinery/divisome_complex.html","divisome complex"]]},{"id":"GO:0006097","l":"glyoxylate cycle","na":1,"nb":2,"a":[["physiology/heterotrophic.html","heterotrophic"]],"b":[["membrane_organelle/glyoxysomal_lumen.html","glyoxysomal lumen"],["membrane_organelle/glyoxysome.html","glyoxysome"]]},{"id":"GO:0006260","l":"DNA replication","na":1,"nb":2,"a":[["genomics/gc_skew.html","GC skew"]],"b":[["other/dna_polymerase_iii_complex.html","DNA polymerase III complex"],["other/single_stranded_dna_binding_protein_complex.html","single-stranded DNA-binding protein complex"]]},{"id":"GO:0016610","l":"nitrogenase complex","na":2,"nb":1,"a":[["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"]]},{"id":"GO:0030115","l":"S-layer","na":2,"nb":1,"a":[["morphology/square_shaped.html","square shaped"],["morphology/triangular_shaped.html","triangular shaped"]],"b":[["envelope/s_layer.html","S-layer"]]},{"id":"GO:0043107","l":"type IV pilus-dependent motility","na":2,"nb":1,"a":[["morphology/motile.html","motile"],["morphology/twitching_motility.html","twitching motility"]],"b":[["appendage/type_iv_pilus.html","type IV pilus"]]},{"id":"GO:0044674","l":"methyl coenzyme M reductase complex","na":2,"nb":1,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/methanogenesis.html","Methanogenesis"]],"b":[["energy_complex/methyl_coenzyme_m_reductase_complex.html","methyl coenzyme M reductase complex"]]},{"id":"GO:0070088","l":"polyhydroxyalkanoate granule","na":2,"nb":1,"a":[["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]],"b":[["inclusion/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]]},{"id":"METPO:1000681","l":"rod shaped","na":1,"nb":2,"a":[["morphology/rod_shaped.html","rod shaped"]],"b":[["cytoskeleton/mreb_filament.html","MreB filament"],["division_machinery/elongasome.html","elongasome"]]},{"id":"METPO:1000704","l":"flagellated","na":2,"nb":1,"a":[["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/flagellated.html","flagellated"]],"b":[["appendage/bacterial_type_flagellum.html","bacterial-type flagellum"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":2,"nb":1,"a":[["genomics/wadjet_system.html","Wadjet system"],["morphology/irregular_shaped.html","irregular shaped"]],"b":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]]},{"id":"NCBITaxon:2285","l":"Sulfolobus acidocaldarius","na":1,"nb":2,"a":[["environment/temperature_range_high.html","temperature range high"]],"b":[["appendage/archaeal_type_flagellum.html","archaeal-type flagellum"],["appendage/archaeal_type_flagellum_motor.html","archaeal-type flagellum motor"]]},{"id":"NCBITaxon:32046","l":"Synechococcus elongatus","na":2,"nb":1,"a":[["morphology/carboxysome.html","carboxysome"],["physiology/autotrophic.html","autotrophic"]],"b":[["energy_complex/photosystem_i.html","photosystem I"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":2,"nb":1,"a":[["genomics/ploidy.html","ploidy"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["energy_complex/nitrogenase_complex.html","nitrogenase complex"]]},{"id":"UniProt:Q03511","l":"","na":1,"nb":2,"a":[["morphology/carboxysome.html","carboxysome"]],"b":[["microcompartment/carboxysome.html","carboxysome"],["microcompartment/carboxysome_shell.html","carboxysome shell"]]},{"id":"CHEBI:16838","l":"polyphosphate","na":1,"nb":1,"a":[["environment/zinc_tolerant.html","zinc tolerant"]],"b":[["membrane_organelle/acidocalcisome.html","acidocalcisome"]]},{"id":"GO:0006457","l":"protein folding","na":1,"nb":1,"a":[["environment/temperature_range_high.html","temperature range high"]],"b":[["other/chaperonin_containing_t_complex.html","chaperonin-containing T-complex"]]},{"id":"GO:0031012","l":"extracellular matrix","na":1,"nb":1,"a":[["ecology/biofilm_formation.html","biofilm formation"]],"b":[["other/holdfast.html","holdfast"]]},{"id":"GO:0031411.","l":"","na":1,"nb":1,"a":[["morphology/gas_vesicle.html","gas vesicle"]],"b":[["inclusion/gas_vesicle.html","gas vesicle"]]},{"id":"GO:0033172","l":"gas vesicle shell","na":1,"nb":1,"a":[["morphology/gas_vesicle.html","gas vesicle"]],"b":[["inclusion/gas_vesicle_shell.html","gas vesicle shell"]]},{"id":"GO:0042254","l":"ribosome biogenesis","na":1,"nb":1,"a":[["genomics/rrna_operon_copy_number.html","rRNA operon copy number"]],"b":[["other/nucleolus.html","nucleolus"]]},{"id":"GO:0042763","l":"intracellular immature spore","na":1,"nb":1,"a":[["morphology/spore_forming.html","spore forming"]],"b":[["spore/endospore_forming_forespore.html","endospore-forming forespore"]]},{"id":"GO:0043263","l":"cellulosome","na":1,"nb":1,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["other/cellulosome.html","cellulosome"]]},{"id":"GO:0045271","l":"respiratory chain complex I","na":1,"nb":1,"a":[["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"]],"b":[["energy_complex/respiratory_chain_complex_i.html","respiratory chain complex I"]]},{"id":"GO:0045273","l":"respiratory chain complex II (succinate dehydrogenase)","na":1,"nb":1,"a":[["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"]],"b":[["energy_complex/respiratory_chain_complex_ii_succinate_dehydrogenase.html","respiratory chain complex II (succinate dehydrogenase)"]]},{"id":"GO:0045275","l":"respiratory chain complex III","na":1,"nb":1,"a":[["physiology/organoheterotrophic.html","organoheterotrophic"]],"b":[["energy_complex/respiratory_chain_complex_iii.html","respiratory chain complex III"]]},{"id":"GO:0045277","l":"respiratory chain complex IV","na":1,"nb":1,"a":[["physiology/oxidase_activity.html","oxidase activity"]],"b":[["energy_complex/respiratory_chain_complex_iv.html","respiratory chain complex IV"]]},{"id":"GO:0071944","l":"cell periphery","na":1,"nb":1,"a":[["morphology/spiral_shaped.html","spiral shaped"]],"b":[["envelope/plasma_membrane.html","plasma membrane"]]},{"id":"InterPro:IPR000067","l":"","na":1,"nb":1,"a":[["morphology/lophotrichous.html","lophotrichous"]],"b":[["appendage/bacterial_type_flagellum_basal_body_ms_ring.html","bacterial-type flagellum basal body, MS ring"]]},{"id":"NCBITaxon:139","l":"Borreliella burgdorferi","na":1,"nb":1,"a":[["genomics/plasmid_carriage.html","plasmid carriage"]],"b":[["appendage/periplasmic_flagellum.html","periplasmic flagellum"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":1,"nb":1,"a":[["morphology/s_layer.html","S-layer"]],"b":[["envelope/s_layer.html","S-layer"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":1,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["other/cellulosome.html","cellulosome"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":1,"nb":1,"a":[["physiology/alkaline_phosphatase_activity.html","alkaline phosphatase activity"]],"b":[["envelope/mycolate_outer_membrane.html","mycolate outer membrane"]]},{"id":"NCBITaxon:2246","l":"Haloferax volcanii","na":1,"nb":1,"a":[["morphology/disc_shaped.html","disc shaped"]],"b":[["cytoskeleton/cetz_filament.html","CetZ filament"]]},{"id":"NCBITaxon:243233","l":"Methylococcus capsulatus str. Bath","na":1,"nb":1,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["membrane_organelle/methane_oxidizing_organelle.html","methane-oxidizing organelle"]]},{"id":"NCBITaxon:837","l":"Porphyromonas gingivalis","na":1,"nb":1,"a":[["morphology/black_pigmented.html","black pigmented"]],"b":[["secretion_system/type_ix_protein_secretion_system_complex.html","type IX protein secretion system complex"]]},{"id":"UniProt:P0C2S5","l":"","na":1,"nb":1,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["other/cellulosome.html","cellulosome"]]},{"id":"UniProt:P35149","l":"","na":1,"nb":1,"a":[["morphology/spore_shaped.html","spore shaped"]],"b":[["spore/endospore_external_encapsulating_structure.html","endospore external encapsulating structure"]]},{"id":"UniProt:Q31NB3","l":"","na":1,"nb":1,"a":[["physiology/photolithoautotrophic.html","photolithoautotrophic"]],"b":[["microcompartment/carboxysome.html","carboxysome"]]},{"id":"UniProt:Q6NE59","l":"","na":1,"nb":1,"a":[["morphology/magnetosome.html","magnetosome"]],"b":[["cytoskeleton/mamk_filament.html","MamK filament"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/TraitMech--NaturalProductMech.json b/assets/fleet/edges/TraitMech--NaturalProductMech.json index b8d54f9..58178fe 100644 --- a/assets/fleet/edges/TraitMech--NaturalProductMech.json +++ b/assets/fleet/edges/TraitMech--NaturalProductMech.json @@ -1 +1 @@ -{"a":"TraitMech","b":"NaturalProductMech","base":{"TraitMech":"https://culturebotai.github.io/TraitMech/pages/traits/","NaturalProductMech":"https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/natural_products/"},"n":57,"by":{"NCBITaxon":53,"CHEBI":4},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":65,"nb":24,"a":[["ecology/biosafety_level.html","biosafety level"],["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/host_associated.html","host-associated"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/halophily_preference.html","halophily preference"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":18,"nb":16,"a":[["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/neutrophilic.html","neutrophilic"],["environment/non_halophilic.html","non halophilic"],["genomics/spbk_system.html","SpbK system"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["amino_acids_and_peptides/ericin-s.yaml","ericin S"],["amino_acids_and_peptides/iturin.yaml","iturin"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":11,"nb":12,"a":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/aerobic.html","aerobic"],["genomics/avast_system.html","AVAST system"],["genomics/jukab_system.html","JukAB system"],["morphology/motile.html","motile"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":15,"nb":5,"a":[["ecology/biosafety_level_2.html","biosafety level 2"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/coccus_shaped.html","coccus shaped"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"],["unclassified/leuvalin.yaml","leuvalin"],["unclassified/phevalin.yaml","phevalin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":6,"nb":5,"a":[["ecology/free_living.html","free-living"],["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["genomics/transposable_element.html","transposable element"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"]],"b":[["alkaloids/promysalin.yaml","promysalin"],["polyketides/pseudopyronine-a.yaml","pseudopyronine A"],["polyketides/pseudopyronine-b.yaml","pseudopyronine B"],["unclassified/putisolvin-iii.yaml","putisolvin III"],["unclassified/putisolvin-v.yaml","putisolvin V"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":5,"a":[["metabolism/chitinolysis.html","chitinolysis"],["morphology/pigmentation.html","pigmentation"],["morphology/red_pigmented.html","red pigmented"],["morphology/white_pigmented.html","white pigmented"],["physiology/beta_n_acetylhexosaminidase_activity.html","beta-N-acetylhexosaminidase activity"]],"b":[["alkaloids/prodigiosin-2.yaml","prodigiosin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/serratiochelin-a.yaml","serratiochelin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["polyketides/oocydin-a.yaml","oocydin A"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":6,"nb":4,"a":[["metabolism/butanediol_fermentation.html","2,3-butanediol fermentation"],["metabolism/citrate_fermentation.html","citrate fermentation"],["morphology/capsule.html","capsule"],["morphology/non_motile.html","non motile"],["other/indole_test_negative.html","indole test negative"],["other/methyl_red_test_negative.html","methyl red test negative"]],"b":[["alkaloids/tilivalline.yaml","tilivalline"],["amino_acids_and_peptides/colibactin.yaml","colibactin"],["amino_acids_and_peptides/klebsidin.yaml","klebsidin"],["carbohydrates/capsular-polysaccharide-2.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":5,"nb":4,"a":[["genomics/gabija_system.html","Gabija system"],["genomics/shedu_system.html","Shedu system"],["genomics/thoeris_system.html","Thoeris system"],["physiology/caseinase_activity.html","caseinase activity"],["physiology/lecithinase_activity.html","lecithinase activity"]],"b":[["alkaloids/zwittermicin-a.yaml","zwittermicin A"],["amino_acids_and_peptides/livipeptin.yaml","Livipeptin"],["carbohydrates/tunicamycin.yaml","tunicamycin"],["unclassified/cereulide.yaml","cereulide"]]},{"id":"NCBITaxon:1902","l":"Streptomyces coelicolor","na":3,"nb":42,"a":[["ecology/saprotrophy.html","saprotrophy"],["ecology/soil_dwelling.html","soil-dwelling"],["morphology/mycelial_growth.html","mycelial growth"]],"b":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/anthramycin.yaml","anthramycin"],["alkaloids/holomycin.yaml","holomycin"],["alkaloids/melanin.yaml","melanin"],["alkaloids/prodigiosin-2.yaml","prodigiosin"],["alkaloids/undecylprodigiosin-2.yaml","undecylprodigiosin"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":3,"nb":27,"a":[["ecology/rhizosphere_association.html","rhizosphere association"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/psychrotolerant.html","psychrotolerant"]],"b":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["alkaloids/pseudomonine.yaml","pseudomonine"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyreudione-c.yaml","pyreudione C"],["alkaloids/quinolobactin.yaml","quinolobactin"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":26,"nb":3,"a":[["environment/ph_phenotype_with_numerical_limits.html","pH phenotype with numerical limits"],["environment/temperature_optimum_mid4.html","temperature optimum mid4"],["genomics/rnlab_system.html","RnlAB system"],["metabolism/metabolism.html","metabolism"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/respiration.html","respiration"]],"b":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"],["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"],["unclassified/telomestatin.yaml","telomestatin"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":19,"nb":3,"a":[["environment/aerotolerant.html","aerotolerant"],["genomics/abia_system.html","AbiA system"],["genomics/abib_system.html","AbiB system"],["genomics/abic_system.html","AbiC system"],["genomics/abid_system.html","AbiD system"],["genomics/abie_system.html","AbiE system"]],"b":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"],["amino_acids_and_peptides/lacticin-z.yaml","lacticin Z"],["amino_acids_and_peptides/nisin-a.yaml","nisin A"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa (strain ATCC 15692 / DSM 22644 / CIP 104116 / JCM 14847 / LMG 12228 / 1C / PRS 101 / PAO1)","na":3,"nb":10,"a":[["ecology/biofilm_formation.html","biofilm formation"],["morphology/twitching_motility.html","twitching motility"],["morphology/type_iv_pilus.html","type IV pilus"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":3,"nb":3,"a":[["ecology/commensalism.html","commensalism"],["genomics/nhi_system.html","Nhi system"],["other/coagulase_negative.html","coagulase negative"]],"b":[["amino_acids_and_peptides/epidermin.yaml","epidermin"],["amino_acids_and_peptides/epilancin-15x.yaml","epilancin 15x"],["amino_acids_and_peptides/pep5.yaml","pep5"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":2,"nb":23,"a":[["genomics/gc_mid1.html","GC mid1"],["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/melanin.yaml","melanin"],["alkaloids/undecylprodigiosin.yaml","undecylprodigiosin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/sapb.yaml","SapB"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":9,"nb":2,"a":[["environment/euryhaline.html","euryhaline"],["genomics/dartg_system.html","DarTG system"],["genomics/ddmde_system.html","DdmDE system"],["genomics/genomic_island.html","genomic island"],["genomics/lamassu_system.html","Lamassu system"],["genomics/nixi_system.html","NixI system"]],"b":[["alkaloids/vibriobactin-2.yaml","vibriobactin"],["alkaloids/vibriobactin.yaml","vibriobactin"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":5,"nb":2,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"],["physiology/hydrogenotrophic.html","hydrogenotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"]],"b":[["amino_acids_and_peptides/cupriachelin.yaml","cupriachelin"],["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":2,"nb":5,"a":[["genomics/ploidy.html","ploidy"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["alkaloids/aminochelin.yaml","aminochelin"],["alkaloids/azotochelin.yaml","azotochelin"],["alkaloids/protochelin.yaml","protochelin"],["amino_acids_and_peptides/azotobactin-d.yaml","azotobactin D"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:224308","l":"Bacillus subtilis (strain 168)","na":4,"nb":2,"a":[["metabolism/proteolysis.html","proteolysis"],["morphology/spore_forming.html","spore forming"],["morphology/spore_shaped.html","spore shaped"],["morphology/sporulation.html","sporulation"]],"b":[["unclassified/corynebactin.yaml","corynebactin"],["unclassified/pulcherriminic-acid.yaml","pulcherriminic acid"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":2,"nb":2,"a":[["genomics/wadjet_system.html","Wadjet system"],["morphology/irregular_shaped.html","irregular shaped"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:1126","l":"Microcystis aeruginosa","na":1,"nb":36,"a":[["morphology/gas_vesicle.html","gas vesicle"]],"b":[["alkaloids/anatoxin-a.yaml","anatoxin-a"],["amino_acids_and_peptides/aerucyclamide-a.yaml","aerucyclamide A"],["amino_acids_and_peptides/aerucyclamide-c.yaml","aerucyclamide C"],["amino_acids_and_peptides/aerucyclamide-d.yaml","aerucyclamide D"],["amino_acids_and_peptides/aeruginosamide-b.yaml","aeruginosamide B"],["amino_acids_and_peptides/aeruginosamide-c.yaml","aeruginosamide C"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":1,"nb":31,"a":[["morphology/gliding.html","gliding"]],"b":[["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["alkaloids/myxofacycline-e.yaml","myxofacycline E"],["alkaloids/myxofacycline-f.yaml","myxofacycline F"],["alkaloids/myxofacycline-g.yaml","myxofacycline G"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK1622","na":1,"nb":12,"a":[["morphology/gliding.html","gliding"]],"b":[["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"],["amino_acids_and_peptides/myxochromide-a.yaml","myxochromide A"],["amino_acids_and_peptides/myxoprincomide-c506.yaml","myxoprincomide-c506"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":1,"nb":10,"a":[["ecology/plant_pathogen.html","plant pathogen"]],"b":[["alkaloids/labradorin-1.yaml","labradorin 1"],["alkaloids/labradorin-2.yaml","labradorin 2"],["alkaloids/secimide.yaml","secimide"],["amino_acids_and_peptides/phaseolotoxin.yaml","phaseolotoxin"],["amino_acids_and_peptides/syringolin-a.yaml","syringolin A"],["amino_acids_and_peptides/tabtoxin.yaml","tabtoxin"]]},{"id":"CHEBI:27592","l":"ectoine","na":6,"nb":1,"a":[["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"],["environment/nacl_delta_mid1.html","NaCl delta mid1"],["environment/nacl_optimum_mid2.html","NaCl optimum mid2"],["environment/nacl_range_mid2.html","NaCl range mid2"],["environment/slightly_halophilic.html","slightly halophilic"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":6,"nb":1,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/oxidase_activity.html","oxidase activity"]],"b":[["alkaloids/parabactin.yaml","parabactin"]]},{"id":"NCBITaxon:381666","l":"Cupriavidus necator H16","na":6,"nb":1,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"],["physiology/autotrophic.html","autotrophic"],["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["amino_acids_and_peptides/cupriachelin.yaml","cupriachelin"]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":1,"nb":5,"a":[["other/voges_proskauer_test_positive.html","Voges-Proskauer test positive"]],"b":[["alkaloids/9-deoxy-tilivalline.yaml","9-deoxy tilivalline"],["alkaloids/dehydro-tilivalline.yaml","dehydro tilivalline"],["alkaloids/dihydroxy-dehydro-tilivalline.yaml","dihydroxy-dehydro tilivalline"],["alkaloids/dihydroxy-tilivalline.yaml","dihydroxy tilivalline"],["alkaloids/tilivalline.yaml","tilivalline"]]},{"id":"NCBITaxon:75750","l":"Aspergillus sydowii","na":1,"nb":4,"a":[["environment/nacl_delta_high.html","NaCl delta high"]],"b":[["alkaloids/fumigaclavine-c.yaml","fumigaclavine C"],["amino_acids_and_peptides/mulundocandin.yaml","mulundocandin"],["unclassified/orcinol.yaml","orcinol"],["unclassified/pyripyropene-a.yaml","pyripyropene A"]]},{"id":"CHEBI:17579","l":"β-carotene","na":3,"nb":1,"a":[["metabolism/proteorhodopsin_phototrophy.html","proteorhodopsin phototrophy"],["morphology/orange_pigmented.html","orange pigmented"],["morphology/yellow_pigmented.html","yellow pigmented"]],"b":[["terpenoids/carotene.yaml","β-carotene"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":3,"nb":1,"a":[["environment/aerobic.html","aerobic"],["environment/obligately_aerobic.html","obligately aerobic"],["morphology/tetrad_arrangement.html","tetrad arrangement"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:240292","l":"Trichormus variabilis ATCC 29413","na":1,"nb":3,"a":[["morphology/akinete.html","akinete"]],"b":[["unclassified/4-deoxygadusol.yaml","4-deoxygadusol"],["unclassified/mycosporine-glycine.yaml","mycosporine glycine"],["unclassified/shinorine.yaml","shinorine"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":3,"nb":1,"a":[["ecology/mutualism.html","mutualism"],["physiology/bioluminescence.html","bioluminescence"],["physiology/quorum_sensing.html","quorum sensing"]],"b":[["unclassified/ape-vf.yaml","APE Vf"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":3,"nb":1,"a":[["environment/anaerobic.html","anaerobic"],["environment/strictly_anaerobic.html","strictly anaerobic"],["metabolism/fumarate_respiration.html","fumarate respiration"]],"b":[["fatty_acids/galactosylceramide.yaml","α-galactosylceramide"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":2,"nb":1,"a":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:132919","l":"Rhodococcus jostii","na":1,"nb":2,"a":[["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["amino_acids_and_peptides/lariatin.yaml","lariatin"],["unclassified/rhodochelin.yaml","rhodochelin"]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":1,"nb":2,"a":[["physiology/alpha_fucosidase_activity.html","alpha-fucosidase activity"]],"b":[["carbohydrates/legionaminic-acid.yaml","legionaminic acid"],["carbohydrates/pseudaminate.yaml","pseudaminate"]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":1,"nb":2,"a":[["morphology/yellow_pigmented.html","yellow pigmented"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["terpenoids/xanthan.yaml","xanthan"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":1,"nb":2,"a":[["ecology/opportunistic_pathogen.html","opportunistic pathogen"]],"b":[["alkaloids/acinetobactin.yaml","acinetobactin"],["amino_acids_and_peptides/fimsbactin-a.yaml","fimsbactin A"]]},{"id":"NCBITaxon:55601","l":"Vibrio anguillarum","na":1,"nb":2,"a":[["genomics/sspabcd_sspfgh_system.html","SspABCD-SspFGH system"]],"b":[["alkaloids/anguibactin.yaml","anguibactin"],["amino_acids_and_peptides/vanchrobactin.yaml","vanchrobactin"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":1,"nb":2,"a":[["morphology/polar_flagellation.html","polar flagellation"]],"b":[["amino_acids_and_peptides/vibrioferrin-2.yaml","vibrioferrin"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":1,"nb":2,"a":[["morphology/lateral_flagellation.html","lateral flagellation"]],"b":[["amino_acids_and_peptides/vibrioferrin-2.yaml","vibrioferrin"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:69","l":"Lysobacter enzymogenes","na":1,"nb":2,"a":[["genomics/gasdermin_system.html","GasderMIN system"]],"b":[["unclassified/heat-stable-antifungal-factor.yaml","heat-stable antifungal factor"],["unclassified/wap-8294a2.yaml","WAP-8294A2"]]},{"id":"NCBITaxon:93061","l":"Staphylococcus aureus (strain NCTC 8325 / PS 47)","na":1,"nb":2,"a":[["physiology/catalase_activity.html","catalase activity"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["unclassified/staphyloferrin-a.yaml","staphyloferrin A"]]},{"id":"CHEBI:27547","l":"zeaxanthin","na":1,"nb":1,"a":[["morphology/orange_pigmented.html","orange pigmented"]],"b":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]]},{"id":"CHEBI:82758","l":"prodigiosin","na":1,"nb":1,"a":[["morphology/red_pigmented.html","red pigmented"]],"b":[["alkaloids/prodigiosin.yaml","prodigiosin"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":1,"nb":1,"a":[["morphology/heterocyst.html","heterocyst"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":1,"nb":1,"a":[["other/catalase_negative.html","catalase negative"]],"b":[["amino_acids_and_peptides/enterocin-a.yaml","enterocin A"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":1,"nb":1,"a":[["metabolism/starch_degradation.html","starch degradation"]],"b":[["amino_acids_and_peptides/bacitracin.yaml","bacitracin"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":1,"nb":1,"a":[["physiology/lipase_activity.html","lipase activity"]],"b":[["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":1,"nb":1,"a":[["physiology/urease_activity.html","urease activity"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:1570","l":"Halobacillus halophilus","na":1,"nb":1,"a":[["environment/halotolerant.html","halotolerant"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:1599","l":"Latilactobacillus sakei","na":1,"nb":1,"a":[["physiology/arginine_dihydrolase_activity.html","arginine dihydrolase activity"]],"b":[["unclassified/lactocin-s.yaml","lactocin S"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans Pd1222","na":1,"nb":1,"a":[["physiology/mixotrophic.html","mixotrophic"]],"b":[["alkaloids/parabactin.yaml","parabactin"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":1,"nb":1,"a":[["ecology/biosafety_level_3.html","biosafety level 3"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"NCBITaxon:672","l":"Vibrio vulnificus","na":1,"nb":1,"a":[["physiology/viable_but_nonculturable_state.html","viable but nonculturable state"]],"b":[["alkaloids/vulnibactin.yaml","vulnibactin"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":1,"a":[["physiology/dormancy.html","dormancy"]],"b":[["unclassified/mycobactin.yaml","mycobactin"]]}]} \ No newline at end of file +{"a":"TraitMech","b":"NaturalProductMech","base":{"TraitMech":"https://culturebotai.github.io/TraitMech/pages/traits/","NaturalProductMech":"https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/natural_products/"},"n":57,"by":{"NCBITaxon":53,"CHEBI":4},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":65,"nb":24,"a":[["ecology/biosafety_level.html","biosafety level"],["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/host_associated.html","host-associated"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/halophily_preference.html","halophily preference"]],"b":[["alkaloids/biotin.yaml","biotin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/violacein-2.yaml","violacein"],["alkaloids/violacein.yaml","violacein"],["alkaloids/yersiniabactin-2.yaml","yersiniabactin"],["amino_acids_and_peptides/aerobactin.yaml","aerobactin"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":18,"nb":16,"a":[["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/neutrophilic.html","neutrophilic"],["environment/non_halophilic.html","non halophilic"],["genomics/spbk_system.html","SpbK system"]],"b":[["amino_acids_and_peptides/bacillomycin-d.yaml","bacillomycin D"],["amino_acids_and_peptides/bacilysin-2.yaml","bacilysin"],["amino_acids_and_peptides/bacilysin.yaml","bacilysin"],["amino_acids_and_peptides/ericin-s.yaml","ericin S"],["amino_acids_and_peptides/iturin.yaml","iturin"],["amino_acids_and_peptides/mersacidin.yaml","mersacidin"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":11,"nb":12,"a":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/aerobic.html","aerobic"],["genomics/avast_system.html","AVAST system"],["genomics/jukab_system.html","JukAB system"],["morphology/motile.html","motile"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":15,"nb":5,"a":[["ecology/biosafety_level_2.html","biosafety level 2"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/coccus_shaped.html","coccus shaped"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["amino_acids_and_peptides/staphylopine.yaml","staphylopine"],["unclassified/leuvalin.yaml","leuvalin"],["unclassified/phevalin.yaml","phevalin"],["unclassified/tyrvalin.yaml","tyrvalin"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":6,"nb":5,"a":[["ecology/free_living.html","free-living"],["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["genomics/transposable_element.html","transposable element"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"]],"b":[["alkaloids/promysalin.yaml","promysalin"],["polyketides/pseudopyronine-a.yaml","pseudopyronine A"],["polyketides/pseudopyronine-b.yaml","pseudopyronine B"],["unclassified/putisolvin-iii.yaml","putisolvin III"],["unclassified/putisolvin-v.yaml","putisolvin V"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":5,"a":[["metabolism/chitinolysis.html","chitinolysis"],["morphology/pigmentation.html","pigmentation"],["morphology/red_pigmented.html","red pigmented"],["morphology/white_pigmented.html","white pigmented"],["physiology/beta_n_acetylhexosaminidase_activity.html","beta-N-acetylhexosaminidase activity"]],"b":[["alkaloids/prodigiosin-2.yaml","prodigiosin"],["alkaloids/prodigiosin.yaml","prodigiosin"],["alkaloids/serratiochelin-a.yaml","serratiochelin A"],["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["polyketides/oocydin-a.yaml","oocydin A"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":6,"nb":4,"a":[["metabolism/butanediol_fermentation.html","2,3-butanediol fermentation"],["metabolism/citrate_fermentation.html","citrate fermentation"],["morphology/capsule.html","capsule"],["morphology/non_motile.html","non motile"],["other/indole_test_negative.html","indole test negative"],["other/methyl_red_test_negative.html","methyl red test negative"]],"b":[["alkaloids/tilivalline.yaml","tilivalline"],["amino_acids_and_peptides/colibactin.yaml","colibactin"],["amino_acids_and_peptides/klebsidin.yaml","klebsidin"],["carbohydrates/capsular-polysaccharide-2.yaml","capsular polysaccharide"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":5,"nb":4,"a":[["genomics/gabija_system.html","Gabija system"],["genomics/shedu_system.html","Shedu system"],["genomics/thoeris_system.html","Thoeris system"],["physiology/caseinase_activity.html","caseinase activity"],["physiology/lecithinase_activity.html","lecithinase activity"]],"b":[["alkaloids/zwittermicin-a.yaml","zwittermicin A"],["amino_acids_and_peptides/livipeptin.yaml","Livipeptin"],["carbohydrates/tunicamycin.yaml","tunicamycin"],["unclassified/cereulide.yaml","cereulide"]]},{"id":"NCBITaxon:1902","l":"Streptomyces coelicolor","na":3,"nb":42,"a":[["ecology/saprotrophy.html","saprotrophy"],["ecology/soil_dwelling.html","soil-dwelling"],["morphology/mycelial_growth.html","mycelial growth"]],"b":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/anthramycin.yaml","anthramycin"],["alkaloids/holomycin.yaml","holomycin"],["alkaloids/melanin.yaml","melanin"],["alkaloids/prodigiosin-2.yaml","prodigiosin"],["alkaloids/undecylprodigiosin-2.yaml","undecylprodigiosin"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":3,"nb":27,"a":[["ecology/rhizosphere_association.html","rhizosphere association"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/psychrotolerant.html","psychrotolerant"]],"b":[["alkaloids/brabantamide-a.yaml","brabantamide A"],["alkaloids/enantio-pyochelin.yaml","enantio-pyochelin"],["alkaloids/pseudomonine.yaml","pseudomonine"],["alkaloids/pyoluteorin.yaml","pyoluteorin"],["alkaloids/pyreudione-c.yaml","pyreudione C"],["alkaloids/quinolobactin.yaml","quinolobactin"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli K-12","na":26,"nb":3,"a":[["environment/ph_phenotype_with_numerical_limits.html","pH phenotype with numerical limits"],["environment/temperature_optimum_mid4.html","temperature optimum mid4"],["genomics/rnlab_system.html","RnlAB system"],["metabolism/metabolism.html","metabolism"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/respiration.html","respiration"]],"b":[["amino_acids_and_peptides/feglymycin.yaml","feglymycin"],["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"],["unclassified/telomestatin.yaml","telomestatin"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":19,"nb":3,"a":[["environment/aerotolerant.html","aerotolerant"],["genomics/abia_system.html","AbiA system"],["genomics/abib_system.html","AbiB system"],["genomics/abic_system.html","AbiC system"],["genomics/abid_system.html","AbiD system"],["genomics/abie_system.html","AbiE system"]],"b":[["amino_acids_and_peptides/lacticin-481.yaml","lacticin 481"],["amino_acids_and_peptides/lacticin-z.yaml","lacticin Z"],["amino_acids_and_peptides/nisin-a.yaml","nisin A"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa PAO1","na":3,"nb":10,"a":[["ecology/biofilm_formation.html","biofilm formation"],["morphology/twitching_motility.html","twitching motility"],["morphology/type_iv_pilus.html","type IV pilus"]],"b":[["alkaloids/2-heptyl-3-hydroxy-4-quinolone.yaml","2-heptyl-3-hydroxy-4-quinolone"],["alkaloids/2-heptylquinolin-4-1h-one.yaml","2-heptylquinolin-4(1H)-one"],["alkaloids/4-hydroxy-2-quinolone.yaml","4-hydroxy-2-quinolone"],["alkaloids/azetidomonamide-a.yaml","azetidomonamide A"],["alkaloids/azetidomonamide-b.yaml","azetidomonamide B"],["alkaloids/pyochelin-i.yaml","pyochelin I"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":3,"nb":3,"a":[["ecology/commensalism.html","commensalism"],["genomics/nhi_system.html","Nhi system"],["other/coagulase_negative.html","coagulase negative"]],"b":[["amino_acids_and_peptides/epidermin.yaml","epidermin"],["amino_acids_and_peptides/epilancin-15x.yaml","epilancin 15x"],["amino_acids_and_peptides/pep5.yaml","pep5"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":2,"nb":23,"a":[["genomics/gc_mid1.html","GC mid1"],["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["alkaloids/5-dimethylallylindole-3-acetonitrile.yaml","5-dimethylallylindole-3-acetonitrile"],["alkaloids/melanin.yaml","melanin"],["alkaloids/undecylprodigiosin.yaml","undecylprodigiosin"],["amino_acids_and_peptides/coelichelin.yaml","coelichelin"],["amino_acids_and_peptides/desferrioxamine-e.yaml","desferrioxamine E"],["amino_acids_and_peptides/sapb.yaml","SapB"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":9,"nb":2,"a":[["environment/euryhaline.html","euryhaline"],["genomics/dartg_system.html","DarTG system"],["genomics/ddmde_system.html","DdmDE system"],["genomics/genomic_island.html","genomic island"],["genomics/lamassu_system.html","Lamassu system"],["genomics/nixi_system.html","NixI system"]],"b":[["alkaloids/vibriobactin-2.yaml","vibriobactin"],["alkaloids/vibriobactin.yaml","vibriobactin"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":5,"nb":2,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"],["physiology/hydrogenotrophic.html","hydrogenotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"]],"b":[["amino_acids_and_peptides/cupriachelin.yaml","cupriachelin"],["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":2,"nb":5,"a":[["genomics/ploidy.html","ploidy"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["alkaloids/aminochelin.yaml","aminochelin"],["alkaloids/azotochelin.yaml","azotochelin"],["alkaloids/protochelin.yaml","protochelin"],["amino_acids_and_peptides/azotobactin-d.yaml","azotobactin D"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:224308","l":"Bacillus subtilis subsp. subtilis str. 168","na":4,"nb":2,"a":[["metabolism/proteolysis.html","proteolysis"],["morphology/spore_forming.html","spore forming"],["morphology/spore_shaped.html","spore shaped"],["morphology/sporulation.html","sporulation"]],"b":[["unclassified/corynebactin.yaml","corynebactin"],["unclassified/pulcherriminic-acid.yaml","pulcherriminic acid"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":2,"nb":2,"a":[["genomics/wadjet_system.html","Wadjet system"],["morphology/irregular_shaped.html","irregular shaped"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"],["unclassified/corynebactin.yaml","corynebactin"]]},{"id":"NCBITaxon:1126","l":"Microcystis aeruginosa","na":1,"nb":36,"a":[["morphology/gas_vesicle.html","gas vesicle"]],"b":[["alkaloids/anatoxin-a.yaml","anatoxin-a"],["amino_acids_and_peptides/aerucyclamide-a.yaml","aerucyclamide A"],["amino_acids_and_peptides/aerucyclamide-c.yaml","aerucyclamide C"],["amino_acids_and_peptides/aerucyclamide-d.yaml","aerucyclamide D"],["amino_acids_and_peptides/aeruginosamide-b.yaml","aeruginosamide B"],["amino_acids_and_peptides/aeruginosamide-c.yaml","aeruginosamide C"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":1,"nb":31,"a":[["morphology/gliding.html","gliding"]],"b":[["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["alkaloids/myxofacycline-e.yaml","myxofacycline E"],["alkaloids/myxofacycline-f.yaml","myxofacycline F"],["alkaloids/myxofacycline-g.yaml","myxofacycline G"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK 1622","na":1,"nb":12,"a":[["morphology/gliding.html","gliding"]],"b":[["alkaloids/myxochelin-a.yaml","myxochelin A"],["alkaloids/myxochelin-b-2.yaml","myxochelin B"],["amino_acids_and_peptides/cittilin-a.yaml","cittilin A"],["amino_acids_and_peptides/cittilin-b.yaml","cittilin B"],["amino_acids_and_peptides/myxochromide-a.yaml","myxochromide A"],["amino_acids_and_peptides/myxoprincomide-c506.yaml","myxoprincomide-c506"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":1,"nb":10,"a":[["ecology/plant_pathogen.html","plant pathogen"]],"b":[["alkaloids/labradorin-1.yaml","labradorin 1"],["alkaloids/labradorin-2.yaml","labradorin 2"],["alkaloids/secimide.yaml","secimide"],["amino_acids_and_peptides/phaseolotoxin.yaml","phaseolotoxin"],["amino_acids_and_peptides/syringolin-a.yaml","syringolin A"],["amino_acids_and_peptides/tabtoxin.yaml","tabtoxin"]]},{"id":"CHEBI:27592","l":"ectoine","na":6,"nb":1,"a":[["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"],["environment/nacl_delta_mid1.html","NaCl delta mid1"],["environment/nacl_optimum_mid2.html","NaCl optimum mid2"],["environment/nacl_range_mid2.html","NaCl range mid2"],["environment/slightly_halophilic.html","slightly halophilic"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":6,"nb":1,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/oxidase_activity.html","oxidase activity"]],"b":[["alkaloids/parabactin.yaml","parabactin"]]},{"id":"NCBITaxon:381666","l":"Cupriavidus necator H16","na":6,"nb":1,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"],["physiology/autotrophic.html","autotrophic"],["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["amino_acids_and_peptides/cupriachelin.yaml","cupriachelin"]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":1,"nb":5,"a":[["other/voges_proskauer_test_positive.html","Voges-Proskauer test positive"]],"b":[["alkaloids/9-deoxy-tilivalline.yaml","9-deoxy tilivalline"],["alkaloids/dehydro-tilivalline.yaml","dehydro tilivalline"],["alkaloids/dihydroxy-dehydro-tilivalline.yaml","dihydroxy-dehydro tilivalline"],["alkaloids/dihydroxy-tilivalline.yaml","dihydroxy tilivalline"],["alkaloids/tilivalline.yaml","tilivalline"]]},{"id":"NCBITaxon:75750","l":"Aspergillus sydowii","na":1,"nb":4,"a":[["environment/nacl_delta_high.html","NaCl delta high"]],"b":[["alkaloids/fumigaclavine-c.yaml","fumigaclavine C"],["amino_acids_and_peptides/mulundocandin.yaml","mulundocandin"],["unclassified/orcinol.yaml","orcinol"],["unclassified/pyripyropene-a.yaml","pyripyropene A"]]},{"id":"CHEBI:17579","l":"β-carotene","na":3,"nb":1,"a":[["metabolism/proteorhodopsin_phototrophy.html","proteorhodopsin phototrophy"],["morphology/orange_pigmented.html","orange pigmented"],["morphology/yellow_pigmented.html","yellow pigmented"]],"b":[["terpenoids/carotene.yaml","β-carotene"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":3,"nb":1,"a":[["environment/aerobic.html","aerobic"],["environment/obligately_aerobic.html","obligately aerobic"],["morphology/tetrad_arrangement.html","tetrad arrangement"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"]]},{"id":"NCBITaxon:240292","l":"Trichormus variabilis ATCC 29413","na":1,"nb":3,"a":[["morphology/akinete.html","akinete"]],"b":[["unclassified/4-deoxygadusol.yaml","4-deoxygadusol"],["unclassified/mycosporine-glycine.yaml","mycosporine glycine"],["unclassified/shinorine.yaml","shinorine"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":3,"nb":1,"a":[["ecology/mutualism.html","mutualism"],["physiology/bioluminescence.html","bioluminescence"],["physiology/quorum_sensing.html","quorum sensing"]],"b":[["unclassified/ape-vf.yaml","APE Vf"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":3,"nb":1,"a":[["environment/anaerobic.html","anaerobic"],["environment/strictly_anaerobic.html","strictly anaerobic"],["metabolism/fumarate_respiration.html","fumarate respiration"]],"b":[["fatty_acids/galactosylceramide.yaml","α-galactosylceramide"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":2,"nb":1,"a":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:132919","l":"Rhodococcus jostii","na":1,"nb":2,"a":[["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["amino_acids_and_peptides/lariatin.yaml","lariatin"],["unclassified/rhodochelin.yaml","rhodochelin"]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":1,"nb":2,"a":[["physiology/alpha_fucosidase_activity.html","alpha-fucosidase activity"]],"b":[["carbohydrates/legionaminic-acid.yaml","legionaminic acid"],["carbohydrates/pseudaminate.yaml","pseudaminate"]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":1,"nb":2,"a":[["morphology/yellow_pigmented.html","yellow pigmented"]],"b":[["carbohydrates/2-amino-2-deoxyadenosine.yaml","2'-amino-2'-deoxyadenosine"],["terpenoids/xanthan.yaml","xanthan"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":1,"nb":2,"a":[["ecology/opportunistic_pathogen.html","opportunistic pathogen"]],"b":[["alkaloids/acinetobactin.yaml","acinetobactin"],["amino_acids_and_peptides/fimsbactin-a.yaml","fimsbactin A"]]},{"id":"NCBITaxon:55601","l":"Vibrio anguillarum","na":1,"nb":2,"a":[["genomics/sspabcd_sspfgh_system.html","SspABCD-SspFGH system"]],"b":[["alkaloids/anguibactin.yaml","anguibactin"],["amino_acids_and_peptides/vanchrobactin.yaml","vanchrobactin"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":1,"nb":2,"a":[["morphology/polar_flagellation.html","polar flagellation"]],"b":[["amino_acids_and_peptides/vibrioferrin-2.yaml","vibrioferrin"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":1,"nb":2,"a":[["morphology/lateral_flagellation.html","lateral flagellation"]],"b":[["amino_acids_and_peptides/vibrioferrin-2.yaml","vibrioferrin"],["amino_acids_and_peptides/vibrioferrin.yaml","vibrioferrin"]]},{"id":"NCBITaxon:69","l":"Lysobacter enzymogenes","na":1,"nb":2,"a":[["genomics/gasdermin_system.html","GasderMIN system"]],"b":[["unclassified/heat-stable-antifungal-factor.yaml","heat-stable antifungal factor"],["unclassified/wap-8294a2.yaml","WAP-8294A2"]]},{"id":"NCBITaxon:93061","l":"Staphylococcus aureus subsp. aureus NCTC 8325","na":1,"nb":2,"a":[["physiology/catalase_activity.html","catalase activity"]],"b":[["amino_acids_and_peptides/staphyloferrin-b.yaml","staphyloferrin B"],["unclassified/staphyloferrin-a.yaml","staphyloferrin A"]]},{"id":"CHEBI:27547","l":"zeaxanthin","na":1,"nb":1,"a":[["morphology/orange_pigmented.html","orange pigmented"]],"b":[["terpenoids/zeaxanthin.yaml","zeaxanthin"]]},{"id":"CHEBI:82758","l":"prodigiosin","na":1,"nb":1,"a":[["morphology/red_pigmented.html","red pigmented"]],"b":[["alkaloids/prodigiosin.yaml","prodigiosin"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. PCC 7120 = FACHB-418","na":1,"nb":1,"a":[["morphology/heterocyst.html","heterocyst"]],"b":[["alkaloids/schizokinen.yaml","schizokinen"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":1,"nb":1,"a":[["other/catalase_negative.html","catalase negative"]],"b":[["amino_acids_and_peptides/enterocin-a.yaml","enterocin A"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":1,"nb":1,"a":[["metabolism/starch_degradation.html","starch degradation"]],"b":[["amino_acids_and_peptides/bacitracin.yaml","bacitracin"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":1,"nb":1,"a":[["physiology/lipase_activity.html","lipase activity"]],"b":[["amino_acids_and_peptides/n-acetyltryptophan.yaml","N-acetyltryptophan"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":1,"nb":1,"a":[["physiology/urease_activity.html","urease activity"]],"b":[["amino_acids_and_peptides/ectoine.yaml","ectoine"]]},{"id":"NCBITaxon:1570","l":"Halobacillus halophilus","na":1,"nb":1,"a":[["environment/halotolerant.html","halotolerant"]],"b":[["terpenoids/carotenoid-2.yaml","carotenoid"]]},{"id":"NCBITaxon:1599","l":"Latilactobacillus sakei","na":1,"nb":1,"a":[["physiology/arginine_dihydrolase_activity.html","arginine dihydrolase activity"]],"b":[["unclassified/lactocin-s.yaml","lactocin S"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans PD1222","na":1,"nb":1,"a":[["physiology/mixotrophic.html","mixotrophic"]],"b":[["alkaloids/parabactin.yaml","parabactin"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":1,"nb":1,"a":[["ecology/biosafety_level_3.html","biosafety level 3"]],"b":[["polyketides/emodin.yaml","emodin"]]},{"id":"NCBITaxon:672","l":"Vibrio vulnificus","na":1,"nb":1,"a":[["physiology/viable_but_nonculturable_state.html","viable but nonculturable state"]],"b":[["alkaloids/vulnibactin.yaml","vulnibactin"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis H37Rv","na":1,"nb":1,"a":[["physiology/dormancy.html","dormancy"]],"b":[["unclassified/mycobactin.yaml","mycobactin"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/TraitMech--ProteinTraitsMech.json b/assets/fleet/edges/TraitMech--ProteinTraitsMech.json index 74afd6f..a8b0c48 100644 --- a/assets/fleet/edges/TraitMech--ProteinTraitsMech.json +++ b/assets/fleet/edges/TraitMech--ProteinTraitsMech.json @@ -1 +1 @@ -{"a":"TraitMech","b":"ProteinTraitsMech","base":{"TraitMech":"https://culturebotai.github.io/TraitMech/pages/traits/","ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record="},"n":707,"by":{"GO":248,"NCBITaxon":136,"METPO":111,"CHEBI":109,"UniProt":56,"InterPro":47},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":65,"nb":145,"a":[["ecology/biosafety_level.html","biosafety level"],["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/host_associated.html","host-associated"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/halophily_preference.html","halophily preference"]],"b":[["IDPO%3A0000033","flexible linker"],["IDPO%3A0000014","order to disorder"],["IDPO%3A0000004","pre-molten globule"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":30,"nb":1616,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"]],"b":[["EC%3A1.1.1.170","3beta-hydroxysteroid-4alpha-carboxylate 3-dehydrogenase (decarboxylating)"],["EC%3A1.1.1.262","4-hydroxythreonine-4-phosphate dehydrogenase"],["EC%3A1.1.1.276","serine 3-dehydrogenase (NADP(+))"],["EC%3A1.1.1.286","isocitrate--homoisocitrate dehydrogenase"],["EC%3A1.1.1.305","UDP-glucuronic acid oxidase (UDP-4-keto-hexauronic acid decarboxylating)"],["EC%3A1.1.1.343","phosphogluconate dehydrogenase (NAD(+)-dependent, decarboxylating)"]]},{"id":"METPO:1000631","l":"trophic type","na":30,"nb":29,"a":[["physiology/autotrophic.html","autotrophic"],["physiology/carboxydotrophic.html","carboxydotrophic"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"]],"b":[["METPO%3A1000632","autotrophic"],["METPO%3A1000633","carboxydotrophic"],["METPO%3A1000634","chemoautolithotrophic"],["METPO%3A1000635","chemoautotrophic"],["METPO%3A1000636","chemoheterotrophic"],["METPO%3A1000637","chemolithoautotrophic"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":26,"nb":17470,"a":[["environment/ph_phenotype_with_numerical_limits.html","pH phenotype with numerical limits"],["environment/temperature_optimum_mid4.html","temperature optimum mid4"],["genomics/rnlab_system.html","RnlAB system"],["metabolism/metabolism.html","metabolism"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/respiration.html","respiration"]],"b":[["EC%3A1.1.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.16.-.-","Oxidizing metal ions"],["EC%3A1.18.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.7.-","With an iron-sulfur protein as acceptor"]]},{"id":"CHEBI:15379","l":"dioxygen","na":25,"nb":3896,"a":[["environment/aerobic.html","aerobic"],["environment/aerotolerant.html","aerotolerant"],["environment/anaerobic.html","anaerobic"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_aerobic.html","facultatively aerobic"],["environment/facultatively_anaerobic.html","facultatively anaerobic"]],"b":[["EC%3A1.1.3.10","pyranose oxidase"],["EC%3A1.1.3.11","L-sorbose oxidase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.3.13","alcohol oxidase"],["EC%3A1.1.3.14","catechol oxidase (dimerizing)"],["EC%3A1.1.3.15","(S)-2-hydroxy-acid oxidase"]]},{"id":"CHEBI:30616","l":"","na":24,"nb":2111,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/fermentation.html","Fermentation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/nitrogen_fixation.html","nitrogen fixation"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_30616","requires ATP(4−)"],["EC%3A1.13.12.7","firefly luciferase"],["EC%3A1.16.99.1","[Co(II) methylated amine-specific corrinoid protein] reductase"],["EC%3A1.18.6.1","nitrogenase"],["EC%3A1.18.6.2","vanadium-dependent nitrogenase"],["EC%3A1.19.6.1","nitrogenase (flavodoxin)"]]},{"id":"METPO:1000059","l":"phenotype","na":117,"nb":18,"a":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/habitat_association.html","habitat association"],["ecology/pathogenic_to_host.html","pathogenic to host"],["ecology/predatory_bacterium.html","predatory bacterium"],["ecology/saprotrophy.html","saprotrophy"],["ecology/symbiosis.html","symbiosis"]],"b":[["METPO%3A1000629","halophily preference"],["METPO%3A1007074","metal tolerance"],["METPO%3A1007073","osmotic tolerance"],["METPO%3A1000601","oxygen preference"],["METPO%3A1003000","pH growth preference"],["METPO%3A1000059","phenotype"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":15,"nb":46,"a":[["ecology/biosafety_level_2.html","biosafety level 2"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/coccus_shaped.html","coccus shaped"]],"b":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF13166","AAA domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF27533","CapK C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"]]},{"id":"GO:0015977","l":"carbon fixation","na":15,"nb":30,"a":[["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]],"b":[["GO%3A0009760","C4 photosynthesis"],["GO%3A0009761","CAM photosynthesis"],["GO%3A0043427","carbon fixation by 3-hydroxypropionate cycle"],["GO%3A0030634","carbon fixation by acetyl-CoA pathway"],["GO%3A0015977","carbon fixation"],["GO%3A0019643","reductive tricarboxylic acid cycle"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":18,"nb":15,"a":[["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/neutrophilic.html","neutrophilic"],["environment/non_halophilic.html","non halophilic"],["genomics/spbk_system.html","SpbK system"]],"b":[["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["Pfam%3APF14562","Restriction endonuclease BglI"],["Pfam%3APF09195","Restriction endonuclease BglII/BglIII"],["Pfam%3APF09208","Restriction endonuclease MspI"]]},{"id":"GO:0051453","l":"regulation of intracellular pH","na":17,"nb":15,"a":[["environment/acidophilic.html","acidophilic"],["environment/acidotolerant.html","acidotolerant"],["environment/alkalotolerant.html","alkalotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"]],"b":[["ComplexPortal%3ACPX-3090","Glutathione-regulated potassium-efflux system KefB-KefG complex"],["ComplexPortal%3ACPX-2543","Glutathione-regulated potassium-efflux system KefC-KefF complex"],["ComplexPortal%3ACPX-26449","Sodium/proton exchanger complex, NHE1-CHP1 variant"],["ComplexPortal%3ACPX-26462","Sodium/proton exchanger complex, NHE1-CHP2 variant"],["ComplexPortal%3ACPX-26464","Sodium/proton exchanger complex, NHE1-CHP3 variant"],["ComplexPortal%3ACPX-26469","Sodium/proton exchanger complex, NHE2-CHP1 variant"]]},{"id":"GO:0045259","l":"proton-transporting ATP synthase complex","na":13,"nb":52,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/fermentation.html","Fermentation"],["metabolism/metabolism.html","metabolism"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/carboxydotrophic.html","carboxydotrophic"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["ComplexPortal%3ACPX-25764","Mitochondrial proton translocating ATP synthase complex"],["ComplexPortal%3ACPX-3281","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-6151","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-8618","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-8619","Mitochondrial proton-transporting ATP synthase complex, testis-specific variant"]]},{"id":"CHEBI:18276","l":"dihydrogen","na":13,"nb":42,"a":[["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/does_not_use_as_electron_donor.html","does not use as electron donor"],["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"]],"b":[["EC%3A1.12.1.2","hydrogen dehydrogenase"],["EC%3A1.12.1.3","hydrogen dehydrogenase (NADP(+))"],["EC%3A1.12.1.4","hydrogenase (NAD(+), ferredoxin)"],["EC%3A1.12.1.5","hydrogen dehydrogenase [NAD(P)(+)]"],["EC%3A1.12.2.1","cytochrome-c3 hydrogenase"],["EC%3A1.12.5.1","hydrogen:quinone oxidoreductase"]]},{"id":"METPO:1000060","l":"metabolism","na":26,"nb":12,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/aromatic_compound_degradation.html","aromatic compound degradation"],["metabolism/arsenite_oxidation.html","arsenite oxidation"],["metabolism/biopolymer_degradation.html","biopolymer degradation"],["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"],["metabolism/carbon_fixation.html","carbon fixation"]],"b":[["METPO%3A1000845","Acetogenesis"],["METPO%3A1002003","Cable bacteria metabolism"],["METPO%3A1000806","Disproportionation"],["METPO%3A1000805","Electron transfer"],["METPO%3A1002005","Fermentation"],["METPO%3A1000846","Homoacetogenesis"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":11,"nb":93,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"],["morphology/carboxysome.html","carboxysome"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17544","requires hydrogencarbonate"],["EC%3A1.13.11.73","methylphosphonate synthase"],["EC%3A1.2.1.27","methylmalonate-semialdehyde dehydrogenase (CoA acylating)"],["EC%3A2.5.1.120","aminodeoxyfutalosine synthase"],["EC%3A2.5.1.143","pyridinium-3,5-biscarboxylic acid mononucleotide synthase"],["EC%3A2.7.2.2","carbamate kinase"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":11,"nb":19,"a":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/aerobic.html","aerobic"],["genomics/avast_system.html","AVAST system"],["genomics/jukab_system.html","JukAB system"],["morphology/motile.html","motile"]],"b":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"],["Pfam%3APF18173","Bacterial HORMA domain 2"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["Pfam%3APF27322","Cap8 HORMA domain"],["Pfam%3APF01526","Tn3 transposase DDE domain"]]},{"id":"GO:0006113","l":"fermentation","na":11,"nb":14,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"],["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["ComplexPortal%3ACPX-281","Hydrogenase-1 complex"],["GO%3A0030645","acetyl-CoA fermentation to butanoate"],["GO%3A0019665","amino acid fermentation"],["GO%3A0019588","anaerobic glycerol catabolic process"],["GO%3A0019658","bifid shunt"],["GO%3A0044577","D-xylose fermentation"]]},{"id":"GO:0004177","l":"aminopeptidase activity","na":10,"nb":58,"a":[["physiology/arginine_arylamidase_activity.html","arginine arylamidase activity"],["physiology/cystine_arylamidase_activity.html","cystine arylamidase activity"],["physiology/glycine_arylamidase_activity.html","glycine arylamidase activity"],["physiology/histidine_arylamidase_activity.html","histidine arylamidase activity"],["physiology/leucine_arylamidase_activity.html","leucine arylamidase activity"],["physiology/phenylalanine_arylamidase_activity.html","phenylalanine arylamidase activity"]],"b":[["EC%3A3.4.11.1","leucyl aminopeptidase"],["EC%3A3.4.11.21","aspartyl aminopeptidase"],["EC%3A3.4.11.22","aminopeptidase I"],["EC%3A3.4.11.5","prolyl aminopeptidase"],["EC%3A3.4.11.6","aminopeptidase B"],["EC%3A3.4.11.9","Xaa-Pro aminopeptidase"]]},{"id":"GO:0022900","l":"electron transport chain","na":10,"nb":50,"a":[["environment/obligately_aerobic.html","obligately aerobic"],["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/electron_transfer.html","Electron transfer"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"]],"b":[["GO%3A0022900","electron transport chain"],["GO%3A0140647","P450-containing electron transport chain"],["GO%3A0009767","photosynthetic electron transport chain"],["GO%3A0022904","respiratory electron transport chain"],["NCBIfam%3ANF058577","4Fe-4S ferredoxin"],["NCBIfam%3ANF042982","8-methylmenaquinol:fumarate reductase flavoprotein subunit"]]},{"id":"GO:0022904","l":"respiratory electron transport chain","na":10,"nb":30,"a":[["metabolism/metabolism.html","metabolism"],["physiology/carboxydotrophic.html","carboxydotrophic"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"]],"b":[["ComplexPortal%3ACPX-865","Electron transfer flavoprotein complex"],["ComplexPortal%3ACPX-2731","Mitochondrial electron transfer flavoprotein complex"],["ComplexPortal%3ACPX-243","Respiratory chain complex I"],["GO%3A0019646","aerobic electron transport chain"],["GO%3A0019645","anaerobic electron transport chain"],["GO%3A0042773","ATP synthesis coupled electron transport"]]},{"id":"METPO:1000601","l":"oxygen preference","na":12,"nb":10,"a":[["environment/aerobic.html","aerobic"],["environment/aerotolerant.html","aerotolerant"],["environment/anaerobic.html","anaerobic"],["environment/capnophilic.html","capnophilic"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_aerobic.html","facultatively aerobic"]],"b":[["METPO%3A1000602","aerobic"],["METPO%3A1000609","aerotolerant"],["METPO%3A1000603","anaerobic"],["METPO%3A1005021","capnophilic"],["METPO%3A1000612","facultative oxygen preference"],["METPO%3A1000608","facultatively aerobic"]]},{"id":"CHEBI:17632","l":"nitrate","na":9,"nb":40,"a":[["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"],["metabolism/does_not_use_as_electron_acceptor.html","does not use as electron acceptor"]],"b":[["EC%3A1.14.12.17","nitric oxide dioxygenase"],["EC%3A1.7.1.1","nitrate reductase (NADH)"],["EC%3A1.7.1.2","nitrate reductase [NAD(P)H]"],["EC%3A1.7.1.3","nitrate reductase (NADPH)"],["EC%3A1.7.5.1","nitrate reductase (quinone)"],["EC%3A1.7.6.1","nitrite dismutase"]]},{"id":"GO:0006970","l":"response to osmotic stress","na":9,"nb":15,"a":[["environment/extremely_halophilic.html","extremely halophilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/halotolerant.html","halotolerant"],["environment/moderately_halophilic.html","moderately halophilic"],["environment/nacl_delta.html","NaCl delta"]],"b":[["GO%3A0071470","cellular response to osmotic stress"],["GO%3A0043575","detection of osmotic stimulus"],["GO%3A0006972","hyperosmotic response"],["GO%3A0006971","hypotonic response"],["GO%3A0010335","response to non-ionic osmotic stress"],["GO%3A0006970","response to osmotic stress"]]},{"id":"GO:0009767","l":"photosynthetic electron transport chain","na":9,"nb":13,"a":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["metabolism/phototrophy.html","phototrophy"],["physiology/photoautotrophic.html","photoautotrophic"],["physiology/photoheterotrophic.html","photoheterotrophic"]],"b":[["GO%3A0009767","photosynthetic electron transport chain"],["GO%3A0009773","photosynthetic electron transport in photosystem I"],["GO%3A0009772","photosynthetic electron transport in photosystem II"],["NCBIfam%3ATIGR01332","cytochrome b559 subunit alpha"],["NCBIfam%3ATIGR01333","cytochrome b559 subunit beta"],["NCBIfam%3ATIGR01156","cytochrome b6-f complex subunit IV"]]},{"id":"CHEBI:15378","l":"hydron","na":8,"nb":14383,"a":[["environment/acidophilic.html","acidophilic"],["environment/acidotolerant.html","acidotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"],["environment/obligately_acidophilic.html","obligately acidophilic"]],"b":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.1.10","L-xylulose reductase"],["EC%3A1.1.1.100","3-oxoacyl-[acyl-carrier-protein] reductase"],["EC%3A1.1.1.101","acylglycerone-phosphate reductase"],["EC%3A1.1.1.102","3-dehydrosphinganine reductase"],["EC%3A1.1.1.103","L-threonine 3-dehydrogenase"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":8,"nb":680,"a":[["environment/aerotolerant.html","aerotolerant"],["environment/microaerophilic.html","microaerophilic"],["environment/microaerotolerant.html","microaerotolerant"],["environment/obligately_aerobic.html","obligately aerobic"],["environment/obligately_anaerobic.html","obligately anaerobic"],["environment/oxygen_preference.html","oxygen preference"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16240","requires hydrogen peroxide"],["EC%3A1.1.3.10","pyranose oxidase"],["EC%3A1.1.3.11","L-sorbose oxidase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.3.13","alcohol oxidase"],["EC%3A1.1.3.15","(S)-2-hydroxy-acid oxidase"]]},{"id":"GO:0009061","l":"anaerobic respiration","na":8,"nb":36,"a":[["environment/anaerobic.html","anaerobic"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["ComplexPortal%3ACPX-4841","Anaerobic glycerol-3-phosphate dehydrogenase complex"],["ComplexPortal%3ACPX-317","Formate hydrogenlyase-H/Hydrogenase-3 complex"],["ComplexPortal%3ACPX-6028","Formate hydrogenlyase-H/Hydrogenase-4 complex"],["ComplexPortal%3ACPX-281","Hydrogenase-1 complex"],["ComplexPortal%3ACPX-282","Hydrogenase-2 complex"],["ComplexPortal%3ACPX-3447","NapAB nitrate reductase complex"]]},{"id":"CHEBI:17750","l":"glycine betaine","na":8,"nb":33,"a":[["environment/euryhaline.html","euryhaline"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/moderately_halophilic.html","moderately halophilic"],["environment/nacl_optimum_mid1.html","NaCl optimum mid1"],["environment/nacl_optimum_mid2.html","NaCl optimum mid2"],["environment/nacl_range_mid2.html","NaCl range mid2"]],"b":[["EC%3A1.1.3.17","choline oxidase"],["EC%3A1.13.11.90","[1-hydroxy-2-(trimethylamino)ethyl]phosphonate dioxygenase (glycine- betaine-forming)"],["EC%3A1.14.13.251","glycine betaine monooxygenase"],["EC%3A1.2.1.8","betaine-aldehyde dehydrogenase"],["EC%3A1.21.4.4","betaine reductase"],["EC%3A2.1.1.157","sarcosine/dimethylglycine N-methyltransferase"]]},{"id":"GO:0009060","l":"aerobic respiration","na":8,"nb":25,"a":[["environment/aerobic.html","aerobic"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_aerobic.html","facultatively aerobic"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/obligately_aerobic.html","obligately aerobic"],["metabolism/aerobic_respiration.html","Aerobic respiration"]],"b":[["ComplexPortal%3ACPX-266","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-577","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-319","Trimethylamine-N-oxide reductase TorAC complex"],["GO%3A0019646","aerobic electron transport chain"],["GO%3A0009060","aerobic respiration"],["GO%3A0019409","aerobic respiration, using ammonia as electron donor"]]},{"id":"METPO:1003000","l":"pH growth preference","na":10,"nb":8,"a":[["environment/acidophilic.html","acidophilic"],["environment/acidotolerant.html","acidotolerant"],["environment/alkalotolerant.html","alkalotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"]],"b":[["METPO%3A1003003","acidophilic"],["METPO%3A1003008","acidotolerant"],["METPO%3A1003002","alkaliphilic"],["METPO%3A1003009","alkalotolerant"],["METPO%3A1003007","facultatively acidophilic"],["METPO%3A1003005","facultatively alkaliphilic"]]},{"id":"METPO:1000613","l":"temperature preference","na":9,"nb":8,"a":[["environment/extreme_hyperthermophilic.html","extreme hyperthermophilic"],["environment/facultative_psychrophilic.html","facultative psychrophilic"],["environment/hyperthermophilic.html","hyperthermophilic"],["environment/mesophilic.html","mesophilic"],["environment/psychrophilic.html","psychrophilic"],["environment/psychrotolerant.html","psychrotolerant"]],"b":[["METPO%3A1000720","facultative psychrophilic"],["METPO%3A1000617","hyperthermophilic"],["METPO%3A1000615","mesophilic"],["METPO%3A1000614","psychrophilic"],["METPO%3A1000618","psychrotolerant"],["METPO%3A1000613","temperature preference"]]},{"id":"CHEBI:15361","l":"pyruvate","na":7,"nb":410,"a":[["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15361","requires pyruvate"],["EC%3A1.1.1.27","L-lactate dehydrogenase"],["EC%3A1.1.1.28","D-lactate dehydrogenase"],["EC%3A1.1.1.38","malate dehydrogenase (oxaloacetate-decarboxylating)"],["EC%3A1.1.1.39","malate dehydrogenase (decarboxylating)"],["EC%3A1.1.1.40","malate dehydrogenase (oxaloacetate-decarboxylating) (NADP(+))"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":7,"nb":396,"a":[["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/iron_oxidation.html","iron oxidation"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29033","requires iron(2+)"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.11","glucoside 3-dehydrogenase (cytochrome c)"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.2.3","L-lactate dehydrogenase (cytochrome)"],["EC%3A1.1.2.4","D-lactate dehydrogenase (cytochrome)"]]},{"id":"CHEBI:29101","l":"sodium(1+)","na":7,"nb":292,"a":[["environment/alkaphilic.html","alkaliphilic"],["environment/euryhaline.html","euryhaline"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/nacl_delta_mid2.html","NaCl delta mid2"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29101","requires sodium(1+)"],["EC%3A7.2.1.1","NADH:ubiquinone reductase (Na(+)-transporting)"],["EC%3A7.2.1.2","ferredoxin--NAD(+) oxidoreductase (Na(+)-transporting)"],["EC%3A7.2.1.4","tetrahydromethanopterin S-methyltransferase"],["EC%3A7.2.2.1","Na(+)-transporting two-sector ATPase"],["EC%3A7.2.2.13","Na(+)/K(+)-exchanging ATPase"]]},{"id":"CHEBI:16189","l":"sulfate","na":7,"nb":133,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"],["metabolism/disproportionation.html","Disproportionation"],["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"],["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16189","requires sulfate"],["EC%3A1.14.11.77","alkyl sulfatase"],["EC%3A1.8.2.1","sulfite dehydrogenase (cytochrome)"],["EC%3A1.8.3.1","sulfite oxidase"],["EC%3A1.8.5.6","sulfite dehydrogenase (quinone)"],["EC%3A2.7.7.4","sulfate adenylyltransferase"]]},{"id":"GO:0009288","l":"bacterial-type flagellum","na":7,"nb":31,"a":[["morphology/amphitrichous.html","amphitrichous"],["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/lophotrichous.html","lophotrichous"],["morphology/monotrichous.html","monotrichous"],["morphology/non_motile.html","non motile"],["morphology/peritrichous.html","peritrichous"]],"b":[["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009288","bacterial-type flagellum"]]},{"id":"GO:0004096","l":"catalase activity","na":7,"nb":20,"a":[["environment/aerotolerant.html","aerotolerant"],["environment/desiccation_tolerant.html","desiccation tolerant"],["environment/microaerophilic.html","microaerophilic"],["environment/oxygen_preference.html","oxygen preference"],["environment/uv_radiation_tolerant.html","UV radiation tolerant"],["other/catalase_negative.html","catalase negative"]],"b":[["EC%3A1.11.1.6","catalase"],["METPO%3A1007084","catalase negative"],["METPO%3A1007083","catalase positive"],["RHEA%3A20309","2 H2O2 = O2 + 2 H2O"],["ComplexPortal%3ACPX-4742","Catalase complex"],["ComplexPortal%3ACPX-4767","Catalase complex"]]},{"id":"METPO:1000629","l":"halophily preference","na":10,"nb":7,"a":[["environment/euryhaline.html","euryhaline"],["environment/extremely_halophilic.html","extremely halophilic"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/halotolerant.html","halotolerant"]],"b":[["METPO%3A1000627","euryhaline"],["METPO%3A1000621","haloalkaliphilic"],["METPO%3A1000620","halophilic"],["METPO%3A1000629","halophily preference"],["METPO%3A1000622","halotolerant"],["METPO%3A1000624","non halophilic"]]},{"id":"CHEBI:65015","l":"","na":7,"nb":7,"a":[["environment/euryhaline.html","euryhaline"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/halotolerant.html","halotolerant"],["environment/nacl_optimum.html","NaCl optimum"]],"b":[["EC%3A1.1.3.43","paromamine 6'-oxidase"],["EC%3A2.4.1.301","2'-deamino-2'-hydroxyneamine 1-alpha-D-kanosaminyltransferase"],["EC%3A3.5.1.112","2'-N-acetylparomamine deacetylase"],["RHEA%3A34031","2'-N-acetylparomamine + H2O = paromamine + acetate"],["RHEA%3A34035","paromamine + O2 = 6'-oxoparomamine + H2O2"],["RHEA%3A35927","paromamine + UDP-alpha-D-glucose = 3'-deamino-3'-hydroxykanamycin C + UDP + H(+)"]]},{"id":"GO:0042710","l":"biofilm formation","na":7,"nb":7,"a":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/host_associated.html","host-associated"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["ecology/plant_pathogen.html","plant pathogen"],["ecology/rhizosphere_association.html","rhizosphere association"]],"b":[["GO%3A0042710","biofilm formation"],["GO%3A0044399","multi-species biofilm formation"],["GO%3A0044010","single-species biofilm formation"],["GO%3A0090605","submerged biofilm formation"],["GO%3A0090604","surface biofilm formation"],["Reactome%3AR-HSA-9931953","Biofilm formation"]]},{"id":"NCBITaxon:1111708","l":"Synechocystis sp. (strain ATCC 27184 / PCC 6803 / Kazusa)","na":6,"nb":61,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/photoautotrophic.html","photoautotrophic"],["physiology/photolithotrophic.html","photolithotrophic"],["physiology/phototrophic.html","phototrophic"]],"b":[["Pfam%3APF07698","7TM receptor with intracellular HD hydrolase"],["Pfam%3APF07697","7TM-HD extracellular"],["Pfam%3APF11266","Long-chain fatty aldehyde decarbonylase"],["Pfam%3APF21571","Arginine dihydrolase ArgZ-like, C-terminal, first region"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF17886","HSP20-like domain found in ArsA"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":6,"nb":30,"a":[["metabolism/butanediol_fermentation.html","2,3-butanediol fermentation"],["metabolism/citrate_fermentation.html","citrate fermentation"],["morphology/capsule.html","capsule"],["morphology/non_motile.html","non motile"],["other/indole_test_negative.html","indole test negative"],["other/methyl_red_test_negative.html","methyl red test negative"]],"b":[["Pfam%3APF08787","Alginate lyase"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF08218","Citrate lyase ligase C-terminal domain"],["Pfam%3APF13727","CoA-binding domain"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["Pfam%3APF20714","DpiA-like helix-turn-helix domain"]]},{"id":"GO:0016117","l":"carotenoid biosynthetic process","na":6,"nb":26,"a":[["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/cream_pigmented.html","cream pigmented"],["morphology/orange_pigmented.html","orange pigmented"],["morphology/pigmentation.html","pigmentation"],["morphology/pink_pigmented.html","pink pigmented"],["morphology/yellow_pigmented.html","yellow pigmented"]],"b":[["GO%3A1901824","alpha-carotene biosynthetic process"],["GO%3A1901821","alpha-zeacarotene biosynthetic process"],["GO%3A1901812","beta-carotene biosynthetic process"],["GO%3A1901818","beta-zeacarotene biosynthetic process"],["GO%3A0016117","carotenoid biosynthetic process"],["GO%3A0016123","xanthophyll biosynthetic process"]]},{"id":"GO:0006754","l":"ATP biosynthetic process","na":6,"nb":22,"a":[["environment/aerobic.html","aerobic"],["environment/ph_range_mid2.html","pH range mid2"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/lithoautotrophic.html","lithoautotrophic"],["physiology/mixotrophic.html","mixotrophic"]],"b":[["GO%3A0006756","AMP phosphorylation"],["GO%3A0006754","ATP biosynthetic process"],["GO%3A0015986","proton motive force-driven ATP synthesis"],["NCBIfam%3ATIGR02546","type III secretion system ATPase SctN"],["InterPro%3AIPR020971","ATP synthase, F1 beta subunit"],["PANTHER%3APTHR11910","ATP SYNTHASE DELTA CHAIN"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":6,"nb":20,"a":[["ecology/free_living.html","free-living"],["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["genomics/transposable_element.html","transposable element"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"]],"b":[["Pfam%3APF14535","AMP-binding enzyme C-terminal domain"],["Pfam%3APF13442","Cytochrome C oxidase, cbb3-type, subunit III"],["Pfam%3APF22247","Catechol 2,3-dioxygenase-like N-terminal domain"],["Pfam%3APF25371","Domain of unknown function (DUF7884)"],["Pfam%3APF19301","LigXa C-terminal domain like"],["Pfam%3APF12729","Four helix bundle sensory module for signal transduction"]]},{"id":"CHEBI:16134","l":"ammonia","na":6,"nb":11,"a":[["environment/ph_delta_mid1.html","pH delta mid1"],["metabolism/nitrogen_fixation.html","nitrogen fixation"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"],["physiology/urease_activity.html","urease activity"]],"b":[["TCDB%3A1.A.11","The Ammonium Transporter Channel (Amt) Family"],["MCSA%3A376","adenosine deaminase"],["MCSA%3A75","aspartate-ammonia ligase"],["MCSA%3A449","cystathionine beta-lyase"],["MCSA%3A97","cytidine deaminase"],["MCSA%3A710","cytosine deaminase (bacterial)"]]},{"id":"NCBITaxon:266264","l":"Cupriavidus metallidurans CH34","na":6,"nb":10,"a":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/copper_tolerant.html","copper tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["environment/zinc_tolerant.html","zinc tolerant"]],"b":[["Pfam%3APF25973","CzcB-like, barrel-sandwich hybrid domain"],["Pfam%3APF09828","ChrB, C-terminal domain"],["Pfam%3APF20229","Protein ChrB, N-terminal"],["Pfam%3APF01923","Cobalamin adenosyltransferase"],["Pfam%3APF25975","CzcB C-terminal circularly permuted SH3-like domain"],["Pfam%3APF25971","CzcB, N-terminal domain"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":6,"nb":10,"a":[["ecology/animal_pathogen.html","animal pathogen"],["ecology/biosafety_level_2.html","biosafety level 2"],["genomics/genomic_island.html","genomic island"],["genomics/prophage.html","prophage"],["morphology/flagellated.html","flagellated"],["morphology/peritrichous.html","peritrichous"]],"b":[["TED%3AAF-A0A5T2E4X7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5T2E4X7-F1-model_v4_TED01"],["TED%3AAF-A0A5Y4BP44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Y4BP44-F1-model_v4_TED01"],["TED%3AAF-A0A623P6F3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A623P6F3-F1-model_v4_TED02"],["TED%3AAF-A0A721BDS7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A721BDS7-F1-model_v4_TED02"],["TED%3AAF-A0A743P324-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A743P324-F1-model_v4_TED01"],["TED%3AAF-A0A757VWR3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A757VWR3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":6,"nb":9,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/oxidase_activity.html","oxidase activity"]],"b":[["Pfam%3APF07835","Bacterial aa3 type cytochrome c oxidase subunit IV"],["Pfam%3APF04828","Glutathione-dependent formaldehyde-activating enzyme"],["Pfam%3APF16448","LapD/MoxY periplasmic domain"],["Pfam%3APF17267","Family of unknown function (DUF5333)"],["Pfam%3APF17272","Family of unknown function (DUF5337)"],["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"]]},{"id":"GO:0009292","l":"horizontal gene transfer","na":6,"nb":7,"a":[["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["genomics/genome_size.html","genome size"],["genomics/genomic_island.html","genomic island"],["genomics/mobile_genetic_element.html","mobile genetic element"],["genomics/pangenome_openness.html","pangenome openness"]],"b":[["GO%3A0009294","DNA-mediated transformation"],["GO%3A0009292","horizontal gene transfer"],["GO%3A0009293","transduction"],["GO%3A0009291","unidirectional conjugation"],["NCBIfam%3ATIGR04359","entry exclusion lipoprotein TrbK"],["NCBIfam%3ATIGR04361","entry exclusion protein TrbK"]]},{"id":"CHEBI:16474","l":"","na":6,"nb":6,"a":[["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16474","requires NADPH"],["MCSA%3A112","dihydrofolate reductase (bacterial)"],["MCSA%3A6","glutathione-disulfide reductase"],["MCSA%3A7","isocitrate dehydrogenase (NADP+)"],["MCSA%3A21","malate dehydrogenase (oxaloacetate-decarboxylating)"],["proteintraitsmech%3ABIOLIP_NDP","NDP-binding site"]]},{"id":"CHEBI:16301","l":"nitrite","na":5,"nb":116,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["EC%3A1.13.11.64","5-nitrosalicylate dioxygenase"],["EC%3A1.13.12.16","nitronate monooxygenase"],["EC%3A1.14.12.23","nitroarene dioxygenase"],["EC%3A1.14.12.24","2,4-dinitrotoluene dioxygenase"],["EC%3A1.14.13.166","4-nitrocatechol 4-monooxygenase"],["EC%3A1.14.13.167","4-nitrophenol 4-monooxygenase"]]},{"id":"GO:0009056","l":"catabolic process","na":5,"nb":109,"a":[["metabolism/metabolism.html","metabolism"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"],["physiology/heterotrophic.html","heterotrophic"],["physiology/organotrophic.html","organotrophic"]],"b":[["GO%3A0018911","1,2,4-trichlorobenzene catabolic process"],["GO%3A0019261","1,4-dichlorobenzene catabolic process"],["GO%3A0046302","2-chloro-N-isopropylacetanilide catabolic process"],["GO%3A1901851","7,8-didemethyl-8-hydroxy-5-deazariboflavin catabolic process"],["GO%3A0006581","acetylcholine catabolic process"],["GO%3A0046185","aldehyde catabolic process"]]},{"id":"GO:0006935","l":"chemotaxis","na":5,"nb":64,"a":[["morphology/flagellated.html","flagellated"],["morphology/motile.html","motile"],["morphology/motility.html","motility"],["physiology/chemotaxis.html","chemotaxis"],["physiology/copiotrophic.html","copiotrophic"]],"b":[["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009454","aerotaxis"]]},{"id":"CHEBI:29103","l":"potassium(1+)","na":5,"nb":32,"a":[["environment/extremely_halophilic.html","extremely halophilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/non_halophilic.html","non halophilic"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29103","requires potassium(1+)"],["EC%3A7.2.2.13","Na(+)/K(+)-exchanging ATPase"],["EC%3A7.2.2.19","H(+)/K(+)-exchanging ATPase"],["EC%3A7.2.2.6","P-type K(+) transporter"],["RHEA%3A18353","2 K(+)(out) + 3 Na(+)(in) + ATP + H2O = 2 K(+)(in) + 3 Na(+)(out) + ADP + phosphate + H(+)"],["RHEA%3A69967","Ca(2+)(out) + K(+)(out) + 4 Na(+)(in) = Ca(2+)(in) + K(+)(in) + 4 Na(+)(out)"]]},{"id":"GO:0004784","l":"superoxide dismutase activity","na":5,"nb":27,"a":[["environment/aerotolerant.html","aerotolerant"],["environment/desiccation_tolerant.html","desiccation tolerant"],["environment/microaerophilic.html","microaerophilic"],["environment/obligately_aerobic.html","obligately aerobic"],["environment/oxygen_preference.html","oxygen preference"]],"b":[["EC%3A1.15.1.1","superoxide dismutase"],["RHEA%3A20696","2 superoxide + 2 H(+) = H2O2 + O2"],["ComplexPortal%3ACPX-21824","CCS-SOD1, oxidative stress response complex"],["ComplexPortal%3ACPX-2896","[Cu-Zn] Superoxide dismutase complex"],["ComplexPortal%3ACPX-2897","[Cu-Zn] Superoxide dismutase complex"],["ComplexPortal%3ACPX-2898","[Cu-Zn] Superoxide dismutase complex"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":5,"nb":23,"a":[["genomics/gabija_system.html","Gabija system"],["genomics/shedu_system.html","Shedu system"],["genomics/thoeris_system.html","Thoeris system"],["physiology/caseinase_activity.html","caseinase activity"],["physiology/lecithinase_activity.html","lecithinase activity"]],"b":[["Pfam%3APF08878","HamA"],["Pfam%3APF05791","Bacillus haemolytic enterotoxin (HBL)"],["Pfam%3APF10803","Spore germination GerPB"],["Pfam%3APF10737","Spore germination protein GerPC"],["Pfam%3APF10970","Spore germination protein GerPE"],["Pfam%3APF07486","Cell Wall Hydrolase"]]},{"id":"CHEBI:15948","l":"","na":5,"nb":20,"a":[["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/orange_pigmented.html","orange pigmented"],["morphology/pink_pigmented.html","pink pigmented"],["morphology/red_pigmented.html","red pigmented"],["morphology/yellow_pigmented.html","yellow pigmented"]],"b":[["EC%3A1.3.99.26","all-trans-zeta-carotene desaturase"],["EC%3A1.3.99.31","phytoene desaturase (lycopene-forming)"],["EC%3A2.5.1.149","lycopene elongase/hydratase (flavuxanthin-forming)"],["EC%3A2.5.1.150","lycopene elongase/hydratase (dihydrobisanhydrobacterioruberin-forming)"],["EC%3A4.2.1.131","carotenoid 1,2-hydratase"],["EC%3A5.2.1.13","prolycopene isomerase"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":13,"a":[["metabolism/chitinolysis.html","chitinolysis"],["morphology/pigmentation.html","pigmentation"],["morphology/red_pigmented.html","red pigmented"],["morphology/white_pigmented.html","white pigmented"],["physiology/beta_n_acetylhexosaminidase_activity.html","beta-N-acetylhexosaminidase activity"]],"b":[["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF03173","Putative carbohydrate binding domain"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"],["Pfam%3APF06438","Heme-binding protein A (HasA)"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF05247","Flagellar transcriptional activator (FlhD)"]]},{"id":"GO:0031470","l":"carboxysome","na":5,"nb":10,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["morphology/carboxysome.html","carboxysome"],["physiology/autotrophic.html","autotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["GO%3A0031470","carboxysome"],["NCBIfam%3ANF053791","alpha-carboxysome major shell protein CsoS1"],["NCBIfam%3ANF049993","beta-carboxysome assembly chaperone CcmS"],["NCBIfam%3ANF053792","beta-carboxysome assembly protein CcmO"],["NCBIfam%3ANF053796","beta-carboxysome protein CcmP"],["NCBIfam%3ANF053793","beta-carboxysome scaffolding protein CcmN"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":5,"nb":10,"a":[["metabolism/dimethyl_sulfoxide_respiration.html","dimethyl sulfoxide respiration"],["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/electron_transfer.html","Electron transfer"]],"b":[["Pfam%3APF27445","Adaptation to cold protein A"],["Pfam%3APF27450","AtcB C-terminal domain"],["Pfam%3APF27486","AtcB N-terminal domain"],["Pfam%3APF02464","CinA C-terminal domain"],["Pfam%3APF13657","HipA N-terminal domain"],["Pfam%3APF01934","Ribonuclease HepT-like"]]},{"id":"GO:0009274","l":"peptidoglycan-based cell wall","na":5,"nb":8,"a":[["morphology/cell_shape.html","cell shape"],["morphology/cell_width.html","cell width"],["morphology/gram_stain.html","gram stain"],["morphology/pleomorphic_shaped.html","pleomorphic shaped"],["morphology/sphere_shaped.html","sphere shaped"]],"b":[["GO%3A0009276","Gram-negative-bacterium-type cell wall"],["GO%3A0009275","Gram-positive-bacterium-type cell wall"],["GO%3A0009274","peptidoglycan-based cell wall"],["NCBIfam%3ANF007061","bifunctional glycosyl transferase/transpeptidase"],["NCBIfam%3ATIGR03656","heme uptake protein IsdC"],["NCBIfam%3ATIGR02070","monofunctional biosynthetic peptidoglycan transglycosylase"]]},{"id":"InterPro:IPR001765","l":"","na":6,"nb":5,"a":[["metabolism/carbon_fixation.html","carbon fixation"],["morphology/carboxysome.html","carboxysome"],["physiology/autotrophic.html","autotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]],"b":[["Pfam%3APF00484","Carbonic anhydrase"],["PANTHER%3APTHR11002","CARBONIC ANHYDRASE"],["PANTHER%3APTHR43175","CARBONIC ANHYDRASE"],["PROSITE%3APS00704","Prokaryotic-type carbonic anhydrases signature 1"],["PROSITE%3APS00705","Prokaryotic-type carbonic anhydrases signature 2"]]},{"id":"NCBITaxon:224308","l":"Bacillus subtilis (strain 168)","na":4,"nb":11310,"a":[["metabolism/proteolysis.html","proteolysis"],["morphology/spore_forming.html","spore forming"],["morphology/spore_shaped.html","spore shaped"],["morphology/sporulation.html","sporulation"]],"b":[["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.10.3.-","With oxygen as acceptor"],["EC%3A1.13.12.-","With incorporation of one atom of oxygen (internal monooxygenases or internal mixed function oxidases)"],["EC%3A1.14.19.-","With oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water"],["EC%3A1.17.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.21.98.-","With other, known acceptors"]]},{"id":"CHEBI:15377","l":"water","na":4,"nb":9376,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["physiology/catalase_activity.html","catalase activity"],["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["EC%3A1.1.1.115","ribose 1-dehydrogenase (NADP(+))"],["EC%3A1.1.1.132","GDP-mannose 6-dehydrogenase"],["EC%3A1.1.1.136","UDP-N-acetylglucosamine 6-dehydrogenase"],["EC%3A1.1.1.186","dTDP-galactose 6-dehydrogenase"],["EC%3A1.1.1.192","long-chain-alcohol dehydrogenase"],["EC%3A1.1.1.205","IMP dehydrogenase"]]},{"id":"GO:0006412","l":"translation","na":4,"nb":455,"a":[["environment/mesophilic.html","mesophilic"],["genomics/codon_usage_bias.html","codon usage bias"],["physiology/cold_shock_response.html","cold shock response"],["physiology/dormancy.html","dormancy"]],"b":[["GO%3A0002181","cytoplasmic translation"],["GO%3A0032543","mitochondrial translation"],["GO%3A0032544","plastid translation"],["GO%3A0140241","translation at synapse"],["GO%3A0006412","translation"],["Reactome%3AR-HSA-72766","Translation"]]},{"id":"CHEBI:30089","l":"acetate","na":4,"nb":302,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["EC%3A1.1.1.318","eugenol synthase"],["EC%3A1.1.1.319","isoeugenol synthase"],["EC%3A1.13.11.50","acetylacetone-cleaving enzyme"],["EC%3A1.13.12.4","lactate 2-monooxygenase"],["EC%3A1.14.13.54","ketosteroid monooxygenase"],["EC%3A1.14.14.19","steroid 17alpha-monooxygenase"]]},{"id":"GO:0009252","l":"peptidoglycan biosynthetic process","na":4,"nb":90,"a":[["morphology/bacillus_shaped.html","bacillus shaped"],["morphology/cell_shape.html","cell shape"],["morphology/coccobacillus_shaped.html","coccobacillus shaped"],["morphology/rod_shaped.html","rod shaped"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["GO%3A0009252","peptidoglycan biosynthetic process"],["GO%3A0018104","peptidoglycan-protein cross-linking"],["NCBIfam%3ATIGR00492","alanine racemase"],["NCBIfam%3ANF007061","bifunctional glycosyl transferase/transpeptidase"],["NCBIfam%3ANF006986","bifunctional UDP-N-acetylglucosamine diphosphorylase/glucosamine-1-phosphate N-acetyltransferase GlmU"]]},{"id":"GO:0051301","l":"cell division","na":4,"nb":86,"a":[["morphology/sarcina_arrangement.html","sarcina arrangement"],["morphology/staphylococcus_arrangement.html","staphylococcus arrangement"],["morphology/streptococcus_arrangement.html","streptococcus arrangement"],["morphology/tetrad_arrangement.html","tetrad arrangement"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["ComplexPortal%3ACPX-5782","Tol-Pal cell envelope complex"],["GO%3A0090510","anticlinal cell division"],["GO%3A0008356","asymmetric cell division"],["GO%3A0007114","cell budding"],["GO%3A0051301","cell division"]]},{"id":"GO:0042597","l":"periplasmic space","na":4,"nb":76,"a":[["morphology/axially_filamented.html","axially filamented"],["morphology/gram_negative.html","gram negative"],["physiology/methylotrophic.html","methylotrophic"],["physiology/natural_competence.html","natural competence"]],"b":[["ComplexPortal%3ACPX-3447","NapAB nitrate reductase complex"],["ComplexPortal%3ACPX-4281","PaoABC periplasmic aldehyde oxidoreductase"],["GO%3A0030287","cell wall-bounded periplasmic space"],["GO%3A0030288","outer membrane-bounded periplasmic space"],["GO%3A0042597","periplasmic space"],["GO%3A0036240","septal periplasm"]]},{"id":"GO:0030001","l":"metal ion transport","na":4,"nb":66,"a":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/metal_tolerant.html","metal tolerant"]],"b":[["GO%3A0015690","aluminum cation transport"],["GO%3A0006816","calcium ion transport"],["GO%3A0015692","lead ion transport"],["GO%3A0010351","lithium ion transport"],["GO%3A0015693","magnesium ion transport"],["GO%3A0030001","metal ion transport"]]},{"id":"GO:0009523","l":"photosystem II","na":4,"nb":59,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["GO%3A0030095","chloroplast photosystem II"],["GO%3A0009523","photosystem II"],["GO%3A0030096","plasma membrane-derived thylakoid photosystem II"],["NCBIfam%3ATIGR01332","cytochrome b559 subunit alpha"],["NCBIfam%3ATIGR01333","cytochrome b559 subunit beta"],["NCBIfam%3ANF012505","Lumenal portion of Cytochrome b559, alpha (gene psbE) subunit"]]},{"id":"CHEBI:17245","l":"carbon monoxide","na":4,"nb":31,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["physiology/carboxydotrophic.html","carboxydotrophic"],["physiology/oxidase_activity.html","oxidase activity"]],"b":[["EC%3A1.13.11.24","quercetin 2,3-dioxygenase"],["EC%3A1.13.11.47","3-hydroxy-4-oxoquinoline 2,4-dioxygenase"],["EC%3A1.13.11.48","3-hydroxy-2-methylquinolin-4-one 2,4-dioxygenase"],["EC%3A1.13.11.53","acireductone dioxygenase (Ni(2+)-requiring)"],["EC%3A1.14.14.18","heme oxygenase (biliverdin-producing)"],["EC%3A1.14.15.20","heme oxygenase (biliverdin-producing, ferredoxin)"]]},{"id":"NCBITaxon:171101","l":"Streptococcus pneumoniae (strain ATCC BAA-255 / R6)","na":4,"nb":31,"a":[["morphology/ellipsoidal.html","ellipsoidal"],["morphology/oval_shaped.html","oval shaped"],["morphology/ovoid_shaped.html","ovoid shaped"],["physiology/natural_competence.html","natural competence"]],"b":[["Pfam%3APF03590","Aspartate-ammonia ligase"],["Pfam%3APF25935","LcnD-like, barrel-sandwich hybrid domain"],["Pfam%3APF24568","Peptidoglycan hydrolase PcsB, coiled-coil domain"],["Pfam%3APF05257","CHAP domain"],["Pfam%3APF27342","ComB N-terminal domain"],["Pfam%3APF26697","Competence protein ComGC, C-terminal domain"]]},{"id":"CHEBI:26833","l":"sulfur atom","na":4,"nb":24,"a":[["metabolism/disproportionation.html","Disproportionation"],["morphology/sulfur_globule.html","sulfur globule"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/photolithotrophic.html","photolithotrophic"]],"b":[["EC%3A1.12.98.4","sulfhydrogenase"],["EC%3A1.13.11.55","sulfur oxygenase/reductase"],["EC%3A1.8.1.18","NAD(P)H sulfur oxidoreductase (CoA-dependent)"],["EC%3A1.8.1.19","sulfide dehydrogenase"],["EC%3A1.8.2.3","sulfide-cytochrome-c reductase (flavocytochrome c)"],["EC%3A1.8.2.7","thiocyanate desulfurase"]]},{"id":"GO:0009372","l":"quorum sensing","na":4,"nb":21,"a":[["ecology/plant_pathogen.html","plant pathogen"],["morphology/green_pigmented.html","green pigmented"],["morphology/swarming_motility.html","swarming motility"],["physiology/quorum_sensing.html","quorum sensing"]],"b":[["ComplexPortal%3ACPX-4315","Autoinducer-2 ABC transporter complex"],["GO%3A0120218","host interaction involved in quorum sensing"],["GO%3A0009372","quorum sensing"],["NCBIfam%3ANF052393","acyl-homoserine-lactone synthase"],["NCBIfam%3ANF008187","autoinducer-2 kinase"],["NCBIfam%3ANF010444","autoinducer-binding transcriptional regulator TraR"]]},{"id":"GO:0009432","l":"SOS response","na":4,"nb":14,"a":[["genomics/prophage.html","prophage"],["morphology/cell_length_large.html","cell length large"],["morphology/filament_shaped.html","filament shaped"],["physiology/sos_response.html","SOS response"]],"b":[["ComplexPortal%3ACPX-5544","DNA polymerase V mutasome complex"],["ComplexPortal%3ACPX-6026","YafNO toxin-antitoxin complex"],["GO%3A0009432","SOS response"],["NCBIfam%3ATIGR01389","DNA helicase RecQ"],["NCBIfam%3ATIGR00611","DNA replication/repair protein RecF"],["NCBIfam%3ANF041583","SOS-induced cell division inhibitor SulA"]]},{"id":"CHEBI:25728","l":"","na":11,"nb":4,"a":[["environment/euryhaline.html","euryhaline"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/halotolerant.html","halotolerant"],["environment/nacl_optimum.html","NaCl optimum"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.A.22","The Large Conductance Mechanosensitive Ion Channel (MscL) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.A.23","The Small Conductance Mechanosensitive Ion Channel (MscS) Family"]]},{"id":"GO:0009326","l":"formate dehydrogenase complex","na":4,"nb":9,"a":[["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/syntrophy.html","Syntrophy"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"],["physiology/methylotrophic.html","methylotrophic"]],"b":[["ComplexPortal%3ACPX-1975","Formate dehydrogenase N complex"],["ComplexPortal%3ACPX-6029","Formate dehydrogenase Z complex"],["ComplexPortal%3ACPX-317","Formate hydrogenlyase-H/Hydrogenase-3 complex"],["ComplexPortal%3ACPX-6028","Formate hydrogenlyase-H/Hydrogenase-4 complex"],["GO%3A0009326","formate dehydrogenase complex"],["NCBIfam%3ATIGR00129","formate dehydrogenase accessory sulfurtransferase FdhD"]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":4,"nb":9,"a":[["morphology/diplococcus_shaped.html","diplococcus shaped"],["morphology/non_motile.html","non motile"],["morphology/sphere_shaped.html","sphere shaped"],["physiology/natural_competence.html","natural competence"]],"b":[["Pfam%3APF19567","Capsular polysaccharide synthesis, CpsB/CapC"],["Pfam%3APF07501","G5 domain"],["Pfam%3APF13551","Winged helix-turn helix"],["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF03047","COMC family"],["Pfam%3APF04556","DpnII restriction endonuclease"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":9,"nb":4,"a":[["environment/euryhaline.html","euryhaline"],["genomics/dartg_system.html","DarTG system"],["genomics/ddmde_system.html","DdmDE system"],["genomics/genomic_island.html","genomic island"],["genomics/lamassu_system.html","Lamassu system"],["genomics/nixi_system.html","NixI system"]],"b":[["Pfam%3APF01375","Heat-labile enterotoxin alpha chain"],["Pfam%3APF09101","Exotoxin A binding"],["Pfam%3APF09009","Exotoxin A catalytic"],["Pfam%3APF09102","Exotoxin A, targeting"]]},{"id":"GO:0006119","l":"oxidative phosphorylation","na":4,"nb":8,"a":[["environment/ph_delta.html","pH delta"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["physiology/organoheterotrophic.html","organoheterotrophic"],["physiology/persister_cell_formation.html","persister cell formation"]],"b":[["ComplexPortal%3ACPX-268","Cytochrome bd-I ubiquinol oxidase complex"],["ComplexPortal%3ACPX-269","Cytochrome bd-II ubiquinol oxidase complex"],["GO%3A0006119","oxidative phosphorylation"],["PANTHER%3APTHR12448","ATP SYNTHASE EPSILON CHAIN, MITOCHONDRIAL"],["PANTHER%3APTHR13080","ATP SYNTHASE F CHAIN, MITOCHONDRIAL-RELATED"],["PANTHER%3APTHR43141","CYTOCHROME BD2 SUBUNIT II"]]},{"id":"GO:0030964","l":"NADH dehydrogenase complex","na":4,"nb":8,"a":[["metabolism/electron_transfer.html","Electron transfer"],["metabolism/respiration.html","respiration"],["physiology/organoheterotrophic.html","organoheterotrophic"],["physiology/organotrophic.html","organotrophic"]],"b":[["GO%3A0030964","NADH dehydrogenase complex"],["GO%3A0071685","NADH dehydrogenase complex (plastoquinone)"],["GO%3A0045271","respiratory chain complex I"],["NCBIfam%3ATIGR00403","NAD(P)H-quinone oxidoreductase subunit I"],["NCBIfam%3ATIGR01957","NADH-quinone oxidoreductase subunit B"],["NCBIfam%3ANF008728","NADH-quinone oxidoreductase subunit C/D"]]},{"id":"InterPro:IPR000158","l":"","na":6,"nb":4,"a":[["morphology/bacillus_shaped.html","bacillus shaped"],["morphology/cell_length_large.html","cell length large"],["morphology/cell_shape.html","cell shape"],["morphology/rod_shaped.html","rod shaped"],["morphology/sarcina_arrangement.html","sarcina arrangement"],["morphology/staphylococcus_arrangement.html","staphylococcus arrangement"]],"b":[["Pfam%3APF12327","FtsZ family, C-terminal domain"],["HAMAP%3AMF_00909","Cell division protein FtsZ [ftsZ]"],["PROSITE%3APS01134","FtsZ protein signature 1"],["PROSITE%3APS01135","FtsZ protein signature 2"]]},{"id":"NCBITaxon:1085","l":"Rhodospirillum rubrum","na":6,"nb":4,"a":[["metabolism/phototrophy.html","phototrophy"],["morphology/spiral_shaped.html","spiral shaped"],["physiology/carboxydotrophic.html","carboxydotrophic"],["physiology/photoheterotrophic.html","photoheterotrophic"],["physiology/photoorganoheterotrophic.html","photoorganoheterotrophic"],["physiology/phototrophic.html","phototrophic"]],"b":[["Pfam%3APF00556","Antenna complex alpha/beta subunit"],["Pfam%3APF09527","Putative F0F1-ATPase subunit Ca2+/Mg2+ transporter"],["Pfam%3APF07357","Dinitrogenase reductase ADP-ribosyltransferase (DRAT)"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"]]},{"id":"NCBITaxon:194439","l":"Chlorobaculum tepidum TLS","na":4,"nb":6,"a":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"],["physiology/photoautotrophic.html","photoautotrophic"],["physiology/photolithoautotrophic.html","photolithoautotrophic"],["physiology/photolithotrophic.html","photolithotrophic"]],"b":[["Pfam%3APF02327","Bacteriochlorophyll A protein"],["Pfam%3APF27499","CsmB chlorosome envelope protein"],["Pfam%3APF28537","Probable trigger factor, FKBP-like domain"],["Pfam%3APF02043","Bacteriochlorophyll C binding protein"],["Pfam%3APF11098","Chlorosome envelope protein C"],["Pfam%3APF10643","Photosystem P840 reaction-centre cytochrome c-551"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":4,"nb":6,"a":[["ecology/mutualism.html","mutualism"],["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["ecology/symbiosis.html","symbiosis"],["genomics/hna_system.html","Hna system"]],"b":[["Pfam%3APF01177","Asp/Glu/Hydantoin racemase"],["Pfam%3APF11339","Protein of unknown function (DUF3141)"],["PROSITE%3APS01303","BCCT family of transporters signature"],["PROSITE%3APS00665","Dihydrodipicolinate synthase signature 1"],["TED%3AAF-A0A2J0YSD4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J0YSD4-F1-model_v4_TED01"],["TED%3AAF-A0A843ZNG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843ZNG8-F1-model_v4_TED01"]]},{"id":"CHEBI:24431","l":"","na":5,"nb":4,"a":[["metabolism/does_not_use_as_nitrogen_source.html","does not use as nitrogen source"],["metabolism/does_not_use_as_sulfur_source.html","does not use as sulfur source"],["metabolism/uses_as_nitrogen_source.html","uses as nitrogen source"],["metabolism/uses_as_sulfur_source.html","uses as sulfur source"],["upper/chemical_entity.html","chemical entity"]],"b":[["EC%3A1.13.12.16","nitronate monooxygenase"],["EC%3A1.17.3.1","pteridine oxidase"],["RHEA%3A12777","2-amino-4-hydroxypteridine + O2 = 2-amino-4,7-dihydroxypteridine + chemical entity"],["RHEA%3A28767","ethylnitronate + O2 = chemical entity + acetaldehyde + nitrite + H(+)"]]},{"id":"GO:0043684","l":"type IV secretion system complex","na":4,"nb":5,"a":[["ecology/animal_pathogen.html","animal pathogen"],["ecology/human_pathogen.html","human pathogen"],["genomics/genomic_island.html","genomic island"],["genomics/mobile_genetic_element.html","mobile genetic element"]],"b":[["GO%3A0043684","type IV secretion system complex"],["NCBIfam%3ANF049884","Dot/Icm T4SS effector Ceg23"],["NCBIfam%3ATIGR02788","P-type DNA transfer ATPase VirB11"],["NCBIfam%3ATIGR02791","P-type DNA transfer protein VirB5"],["NCBIfam%3ANF047983","T4SS effector phosphatidylinositol 3-Kinase RisK1"]]},{"id":"METPO:1000630","l":"biological process","na":4,"nb":5,"a":[["metabolism/metabolism.html","metabolism"],["metabolism/nitrification.html","nitrification"],["upper/biological_process.html","biological process"],["upper/material_entity.html","material entity"]],"b":[["METPO%3A1000630","biological process"],["METPO%3A1005038","denitrification"],["METPO%3A1000060","metabolism"],["METPO%3A1005001","nitrification"],["METPO%3A1005039","nitrogen fixation"]]},{"id":"METPO:2000303","l":"does not show activity of","na":5,"nb":4,"a":[["metabolism/does_not_show_activity_of.html","does not show activity of"],["other/catalase_negative.html","catalase negative"],["other/coagulase_negative.html","coagulase negative"],["other/oxidase_negative.html","oxidase negative"],["other/urease_negative.html","urease negative"]],"b":[["METPO%3A1007084","catalase negative"],["METPO%3A1007091","coagulase negative"],["METPO%3A1007086","oxidase negative"],["METPO%3A1007088","urease negative"]]},{"id":"InterPro:IPR033875","l":"Flagellum site-determining protein FlhG","na":4,"nb":4,"a":[["morphology/amphitrichous.html","amphitrichous"],["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/lophotrichous.html","lophotrichous"],["morphology/monotrichous.html","monotrichous"]],"b":[["GO%3A0044781","bacterial-type flagellum organization"],["CDD%3Acd02038","FlhG-like"],["InterPro%3AIPR033875","Flagellum site-determining protein FlhG"],["Pfam%3APF10609","NUBPL iron-transfer P-loop NTPase"]]},{"id":"GO:0005737","l":"cytoplasm","na":3,"nb":2018,"a":[["environment/ph_range_mid2.html","pH range mid2"],["environment/ph_range_very_low.html","pH range very low"],["morphology/spiral_shaped.html","spiral shaped"]],"b":[["ComplexPortal%3ACPX-3921","2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["ComplexPortal%3ACPX-1599","40S cytosolic small ribosomal subunit"],["ComplexPortal%3ACPX-5223","40S cytosolic small ribosomal subunit"],["ComplexPortal%3ACPX-5261","40S cytosolic small ribosomal subunit"],["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"]]},{"id":"CHEBI:29034","l":"iron(3+)","na":3,"nb":376,"a":[["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/iron_oxidation.html","iron oxidation"],["metabolism/photoferrotrophy.html","photoferrotrophy"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29034","requires iron(3+)"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.11","glucoside 3-dehydrogenase (cytochrome c)"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.2.3","L-lactate dehydrogenase (cytochrome)"],["EC%3A1.1.2.4","D-lactate dehydrogenase (cytochrome)"]]},{"id":"CHEBI:15351","l":"","na":3,"nb":169,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["physiology/autotrophic.html","autotrophic"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15351","requires acetyl-CoA"],["ARO%3A3000341","AAC(2')"],["ARO%3A3007393","AAC(2')-I"],["ARO%3A3002523","AAC(2')-Ia"],["ARO%3A3002524","AAC(2')-Ib"],["ARO%3A3002525","AAC(2')-Ic"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa (strain ATCC 15692 / DSM 22644 / CIP 104116 / JCM 14847 / LMG 12228 / 1C / PRS 101 / PAO1)","na":3,"nb":162,"a":[["ecology/biofilm_formation.html","biofilm formation"],["morphology/twitching_motility.html","twitching motility"],["morphology/type_iv_pilus.html","type IV pilus"]],"b":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF06750","Bacterial Peptidase A24 N-terminal domain"],["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF28403","Aconitase X second domain"],["Pfam%3APF28406","Aconitase X third domain"],["Pfam%3APF04412","Aconitase X first domain"]]},{"id":"GO:0019867","l":"outer membrane","na":3,"nb":143,"a":[["morphology/gram_negative.html","gram negative"],["morphology/gram_stain.html","gram stain"],["morphology/triangular_shaped.html","triangular shaped"]],"b":[["GO%3A0009279","cell outer membrane"],["GO%3A0031968","organelle outer membrane"],["GO%3A0043594","outer endospore membrane"],["GO%3A0019867","outer membrane"],["NCBIfam%3ANF047447","adhesin OmpL37 family surface protein"],["NCBIfam%3ANF007285","AIDA-I family autotransporter adhesin YfaL/EhaC"]]},{"id":"GO:0015948","l":"methanogenesis","na":3,"nb":82,"a":[["metabolism/acetoclastic_methanogenesis.html","acetoclastic methanogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/methyl_based_methanogenesis.html","methyl-based methanogenesis"]],"b":[["GO%3A0019385","methanogenesis, from acetate"],["GO%3A0019386","methanogenesis, from carbon dioxide"],["GO%3A0019387","methanogenesis, from methanol"],["GO%3A0015948","methanogenesis"],["proteintraitsmech%3ASEED_SUBSYSTEM_Methanogenesis","Methanogenesis"],["NCBIfam%3ATIGR03957","5,10-methenyltetrahydromethanopterin hydrogenase cofactor biosynthesis protein HmdB"]]},{"id":"CHEBI:29035","l":"manganese(2+)","na":3,"nb":44,"a":[["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/lignin_degradation.html","lignin degradation"],["metabolism/manganese_oxidation.html","manganese oxidation"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29035","requires manganese(2+)"],["EC%3A1.11.1.13","manganese peroxidase"],["EC%3A1.11.1.16","versatile peroxidase"],["EC%3A1.16.3.3","manganese oxidase"],["EC%3A7.2.2.22","P-type Mn(2+) transporter"],["EC%3A7.2.2.5","ABC-type Mn(2+) transporter"]]},{"id":"GO:0004129","l":"cytochrome-c oxidase activity","na":3,"nb":41,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["other/oxidase_negative.html","oxidase negative"],["physiology/oxidase_activity.html","oxidase activity"]],"b":[["EC%3A7.1.1.9","cytochrome-c oxidase"],["METPO%3A1007086","oxidase negative"],["METPO%3A1007085","oxidase positive"],["RHEA%3A11436","4 Fe(II)-[cytochrome c] + O2 + 8 H(+)(in) = 4 Fe(III)-[cytochrome c] + 2 H2O + 4 H(+)(out)"],["ComplexPortal%3ACPX-1721","Mitochondrial respiratory chain complex IV, COX5A variant"],["ComplexPortal%3ACPX-1722","Mitochondrial respiratory chain complex IV, COX5B variant"]]},{"id":"GO:0009399","l":"nitrogen fixation","na":3,"nb":36,"a":[["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["metabolism/nitrogen_fixation.html","nitrogen fixation"],["morphology/heterocyst.html","heterocyst"]],"b":[["GO%3A0009399","nitrogen fixation"],["proteintraitsmech%3ASEED_SUBSYSTEM_Nitrogen_fixation","Nitrogen fixation"],["NCBIfam%3ATIGR02662","ADP-ribosyl-[dinitrogen reductase] hydrolase"],["NCBIfam%3ATIGR02931","Fe-only nitrogenase subunit beta"],["NCBIfam%3ATIGR02929","Fe-only nitrogenase subunit delta"],["NCBIfam%3ATIGR02000","Fe-S cluster assembly protein NifU"]]},{"id":"GO:0008422","l":"beta-glucosidase activity","na":3,"nb":31,"a":[["metabolism/biopolymer_degradation.html","biopolymer degradation"],["metabolism/cellulolysis.html","cellulolysis"],["physiology/beta_glucosidase_activity.html","beta-glucosidase activity"]],"b":[["EC%3A3.2.1.21","beta-glucosidase"],["RHEA%3A69655","quercetin 3-O-beta-D-glucoside + H2O = quercetin + beta-D-glucose"],["RHEA%3A69647","quercetin 4'-O-beta-D-glucoside + H2O = quercetin + beta-D-glucose"],["GO%3A0080081","4-methylumbelliferyl-beta-D-glucopyranoside beta-glucosidase activity"],["GO%3A0008706","6-phospho-beta-glucosidase activity"],["GO%3A0051993","abscisic acid glucose ester beta-glucosidase activity"]]},{"id":"GO:0022611","l":"dormancy process","na":3,"nb":19,"a":[["physiology/dormancy.html","dormancy"],["physiology/persister_cell_formation.html","persister cell formation"],["physiology/viable_but_nonculturable_state.html","viable but nonculturable state"]],"b":[["GO%3A0097439","acquisition of desiccation tolerance"],["GO%3A0097207","bud dormancy process"],["GO%3A0085014","dormancy entry of symbiont in host"],["GO%3A0085016","dormancy exit of symbiont in host"],["GO%3A0085015","dormancy maintenance of symbiont in host"],["GO%3A0022611","dormancy process"]]},{"id":"CHEBI:17997","l":"dinitrogen","na":3,"nb":18,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["EC%3A1.18.6.1","nitrogenase"],["EC%3A1.18.6.2","vanadium-dependent nitrogenase"],["EC%3A1.19.6.1","nitrogenase (flavodoxin)"],["EC%3A1.7.2.4","nitrous-oxide reductase"],["EC%3A1.7.2.8","hydrazine dehydrogenase"],["RHEA%3A79967","3-diazoavenalumate + NADH + H(+) = avenalumate + N2 + NAD(+)"]]},{"id":"CHEBI:17579","l":"β-carotene","na":3,"nb":16,"a":[["metabolism/proteorhodopsin_phototrophy.html","proteorhodopsin phototrophy"],["morphology/orange_pigmented.html","orange pigmented"],["morphology/yellow_pigmented.html","yellow pigmented"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17579","requires β-carotene"],["EC%3A1.13.11.63","beta-carotene 15,15'-dioxygenase"],["EC%3A1.13.11.71","carotenoid-9',10'-cleaving dioxygenase"],["EC%3A1.14.15.24","beta-carotene 3-hydroxylase"],["EC%3A1.14.99.63","beta-carotene 4-ketolase"],["EC%3A5.2.1.14","beta-carotene isomerase"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":3,"nb":16,"a":[["ecology/rhizosphere_association.html","rhizosphere association"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/psychrotolerant.html","psychrotolerant"]],"b":[["Pfam%3APF16822","SGNH hydrolase-like domain, acetyltransferase AlgX"],["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"],["Pfam%3APF11182","Alginate O-acetyl transferase AlgF"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF27129","Functional amyloid protein FapB/FapC family"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]]},{"id":"CHEBI:16183","l":"methane","na":3,"nb":13,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/methanogenesis.html","Methanogenesis"],["physiology/methanotrophic.html","methanotrophic"]],"b":[["EC%3A1.14.13.25","methane monooxygenase (soluble)"],["EC%3A1.14.18.3","methane monooxygenase (particulate)"],["EC%3A2.8.4.1","coenzyme-B sulfoethylthiotransferase"],["EC%3A4.7.1.1","alpha-D-ribose 1-methylphosphonate 5-phosphate C-P-lyase"],["RHEA%3A34707","alpha-D-ribose 1-methylphosphonate 5-phosphate + AH2 + S-adenosyl-L-methionine = alpha-D-ribose 1,2-cyclic phosphate 5-phosphate + methane + 5'-deoxyadenosine + L-methionine + A + H(+)"],["RHEA%3A12532","coenzyme B + methyl-coenzyme M = methane + coenzyme M-coenzyme B heterodisulfide"]]},{"id":"GO:0060187","l":"cell pole","na":3,"nb":10,"a":[["morphology/amphitrichous.html","amphitrichous"],["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/lophotrichous.html","lophotrichous"]],"b":[["GO%3A0044225","apical pole of neuron"],["GO%3A0044226","basal pole of neuron"],["GO%3A0090712","basal pole of outer hair cell"],["GO%3A0060187","cell pole"],["GO%3A0051286","cell tip"],["GO%3A1990902","new cell pole"]]},{"id":"GO:0009325","l":"nitrate reductase complex","na":3,"nb":9,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]],"b":[["ComplexPortal%3ACPX-3447","NapAB nitrate reductase complex"],["ComplexPortal%3ACPX-5581","Nitrate reductase Z complex"],["GO%3A0044799","NarGHI complex"],["GO%3A0009325","nitrate reductase complex"],["NCBIfam%3ATIGR01580","nitrate reductase subunit alpha"],["NCBIfam%3ATIGR01660","nitrate reductase subunit beta"]]},{"id":"InterPro:IPR033966","l":"","na":9,"nb":3,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["physiology/autotrophic.html","autotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"]],"b":[["SFLD%3ASFLDS00014","RuBisCO"],["PANTHER%3APTHR42704","RIBULOSE BISPHOSPHATE CARBOXYLASE"],["PROSITE%3APS00157","Ribulose bisphosphate carboxylase large chain active site"]]},{"id":"NCBITaxon:210","l":"Helicobacter pylori","na":3,"nb":9,"a":[["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/helical_shaped.html","helical shaped"],["morphology/lophotrichous.html","lophotrichous"]],"b":[["Pfam%3APF18025","Alpha-(1,3)-fucosyltransferase FucT N-terminal domain"],["Pfam%3APF18971","CagA protein"],["Pfam%3APF03507","CagA exotoxin phosphopeptide substrate mimic region"],["Pfam%3APF02691","Vacuolating cyotoxin beta-helical domain"],["TED%3AAF-A0A2T6UWI4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T6UWI4-F1-model_v4_TED01"],["TED%3AAF-A0A1Q9JB12-F1-model_v4_TED01","TED novel fold AF-A0A1Q9JB12-F1-model_v4_TED01"]]},{"id":"GO:0019491","l":"ectoine biosynthetic process","na":3,"nb":8,"a":[["environment/euryhaline.html","euryhaline"],["environment/halotolerant.html","halotolerant"],["environment/slightly_halophilic.html","slightly halophilic"]],"b":[["GO%3A0019491","ectoine biosynthetic process"],["proteintraitsmech%3ASEED_SUBSYSTEM_Ectoine_synthesis","Ectoine synthesis"],["NCBIfam%3ATIGR00709","diaminobutyrate--2-oxoglutarate transaminase family protein"],["NCBIfam%3ATIGR02407","diaminobutyrate--2-oxoglutarate transaminase"],["NCBIfam%3ATIGR02406","diaminobutyrate acetyltransferase"],["NCBIfam%3ANF009806","ectoine synthase"]]},{"id":"GO:0031456","l":"glycine betaine biosynthetic process","na":3,"nb":8,"a":[["environment/euryhaline.html","euryhaline"],["environment/halotolerant.html","halotolerant"],["environment/nacl_range_low.html","NaCl range low"]],"b":[["GO%3A0031456","glycine betaine biosynthetic process"],["NCBIfam%3ANF009725","betaine-aldehyde dehydrogenase"],["NCBIfam%3ATIGR01804","betaine-aldehyde dehydrogenase"],["NCBIfam%3ATIGR03384","choline-binding transcriptional repressor BetI"],["NCBIfam%3ANF053866","choline dehydrogenase"],["NCBIfam%3ATIGR01810","choline dehydrogenase"]]},{"id":"GO:0006636","l":"unsaturated fatty acid biosynthetic process","na":3,"nb":7,"a":[["environment/pressure_range.html","pressure range"],["environment/temperature_delta_high.html","temperature delta high"],["environment/thermotolerant.html","thermotolerant"]],"b":[["GO%3A2001303","lipoxin A4 biosynthetic process"],["GO%3A2001306","lipoxin B4 biosynthetic process"],["GO%3A2001280","positive regulation of unsaturated fatty acid biosynthetic process"],["GO%3A0046457","prostanoid biosynthetic process"],["GO%3A1902609","(R)-2-hydroxy-alpha-linolenic acid biosynthetic process"],["GO%3A2001279","regulation of unsaturated fatty acid biosynthetic process"]]},{"id":"NCBITaxon:1314","l":"Streptococcus pyogenes","na":3,"nb":7,"a":[["environment/aerotolerant.html","aerotolerant"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"],["morphology/streptococcus_arrangement.html","streptococcus arrangement"]],"b":[["Pfam%3APF13585","CHU_C Type IX secretion signal domain"],["Pfam%3APF24547","Domain of unknown function (DUF7601)"],["Pfam%3APF08998","Bacterial epsilon antitoxin"],["Pfam%3APF06280","Fn3-like domain"],["Pfam%3APF02274","Arginine deiminase"],["Pfam%3APF13734","Spi protease inhibitor"]]},{"id":"GO:0070224","l":"sulfide:quinone oxidoreductase activity","na":3,"nb":6,"a":[["metabolism/sulfur_oxidation.html","sulfur oxidation"],["morphology/sulfur_globule.html","sulfur globule"],["physiology/lithoheterotrophic.html","lithoheterotrophic"]],"b":[["EC%3A1.8.5.4","bacterial sulfide:quinone reductase"],["RHEA%3A30239","n a quinone + n hydrogen sulfide + n H(+) = polysulfur(n-2) + n a quinol"],["GO%3A0070224","sulfide:quinone oxidoreductase activity"],["MCSA%3A320","sulfide:quinone oxidoreductase"],["proteintraitsmech%3ABIOLIP_PS9","PS9-binding site"],["proteintraitsmech%3ABIOLIP_S3H","S3H-binding site"]]},{"id":"METPO:1000800","l":"respiration","na":6,"nb":3,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/fermentation.html","Fermentation"],["metabolism/respiration.html","respiration"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"]],"b":[["METPO%3A1000801","Aerobic respiration"],["METPO%3A1000802","Anaerobic respiration"],["METPO%3A1000800","respiration"]]},{"id":"NCBITaxon:381666","l":"Cupriavidus necator H16","na":6,"nb":3,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"],["physiology/autotrophic.html","autotrophic"],["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["Pfam%3APF13473","Cupredoxin-like domain"],["Pfam%3APF10605","3HB-oligomer hydrolase (3HBOH)"],["Pfam%3APF21783","YNCE-like beta-propeller"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":3,"nb":6,"a":[["environment/anaerobic.html","anaerobic"],["environment/strictly_anaerobic.html","strictly anaerobic"],["metabolism/fumarate_respiration.html","fumarate respiration"]],"b":[["Pfam%3APF16376","N-terminal domain of fragilysin"],["TED%3AAF-A0A412XR06-F1-model_v4_TED03","TED novel fold AF-A0A412XR06-F1-model_v4_TED03"],["TED%3AAF-A0A4V1EUI2-F1-model_v4_TED02","TED novel fold AF-A0A4V1EUI2-F1-model_v4_TED02"],["TED%3AAF-A0A5C6IXH5-F1-model_v4_TED01","TED novel fold AF-A0A5C6IXH5-F1-model_v4_TED01"],["TED%3AAF-A0A5C6L6G9-F1-model_v4_TED02","TED novel fold AF-A0A5C6L6G9-F1-model_v4_TED02"],["TED%3AAF-A0A642KY52-F1-model_v4_TED01","TED novel fold AF-A0A642KY52-F1-model_v4_TED01"]]},{"id":"UniProt:P27988","l":"","na":3,"nb":6,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"]],"b":[["Pfam%3APF18537","Carbon monoxide dehydrogenase subunit alpha N-terminal domain"],["proteintraitsmech%3AMETALPDB_CU_HEXANUCLEAR","hexanuclear copper site"],["proteintraitsmech%3AMETALPDB_FE_HEXANUCLEAR","hexanuclear iron site"],["proteintraitsmech%3AMETALPDB_NI_HEXANUCLEAR","hexanuclear nickel site"],["proteintraitsmech%3AMETALPDB_ZN_HEXANUCLEAR","hexanuclear zinc site"],["proteintraitsmech%3AMETALPDB_ZN_PENTANUCLEAR","pentanuclear zinc site"]]},{"id":"NCBITaxon:228410","l":"Nitrosomonas europaea ATCC 19718","na":5,"nb":3,"a":[["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["Pfam%3APF02461","Ammonia monooxygenase"],["Pfam%3APF13435","Cytochrome c554 and c-prime"],["TED%3AAF-Q82SR8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q82SR8-F1-model_v4_TED01"]]},{"id":"GO:0008776","l":"acetate kinase activity","na":3,"nb":4,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["EC%3A2.7.2.1","acetate kinase"],["RHEA%3A11352","acetate + ATP = acetyl phosphate + ADP"],["GO%3A0008776","acetate kinase activity"],["MCSA%3A643","acetate kinase"]]},{"id":"GO:0018597","l":"ammonia monooxygenase activity","na":3,"nb":4,"a":[["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["EC%3A1.14.99.39","ammonia monooxygenase"],["RHEA%3A27341","AH2 + NH4(+) + O2 = hydroxylamine + A + H2O + H(+)"],["GO%3A0018597","ammonia monooxygenase activity"],["NCBIfam%3ANF041557","bacterial ammonia monooxygenase, subunit AmoA"]]},{"id":"InterPro:IPR001182","l":"","na":4,"nb":3,"a":[["morphology/fusiform_shaped.html","fusiform shaped"],["morphology/oval_shaped.html","oval shaped"],["morphology/prosthecate.html","prosthecate"],["morphology/tailed_shaped.html","tailed shaped"]],"b":[["PANTHER%3APTHR30474","CELL CYCLE PROTEIN"],["Pfam%3APF01098","Cell cycle protein"],["PROSITE%3APS00428","Cell cycle proteins ftsW / rodA / spoVE signature"]]},{"id":"NCBITaxon:1525","l":"Neomoorella thermoacetica","na":3,"nb":4,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"]],"b":[["Pfam%3APF25461","Selenocysteine-specific elongation factor, beta-barrel domain"],["Pfam%3APF18537","Carbon monoxide dehydrogenase subunit alpha N-terminal domain"],["Pfam%3APF04060","Putative Fe-S cluster"],["Pfam%3APF03599","CO dehydrogenase/acetyl-CoA synthase delta subunit"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":3,"nb":4,"a":[["ecology/mutualism.html","mutualism"],["physiology/bioluminescence.html","bioluminescence"],["physiology/quorum_sensing.html","quorum sensing"]],"b":[["PROSITE%3APS00949","Autoinducer synthase family signature"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"],["PROSITE%3APS00607","cAMP phosphodiesterases class-II signature"],["TED%3AAF-A0A844NWZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A844NWZ1-F1-model_v4_TED02"]]},{"id":"GO:0016689","l":"manganese peroxidase activity","na":3,"nb":3,"a":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/lignin_degradation.html","lignin degradation"],["metabolism/manganese_oxidation.html","manganese oxidation"]],"b":[["EC%3A1.11.1.13","manganese peroxidase"],["RHEA%3A22776","2 Mn(2+) + H2O2 + 2 H(+) = 2 Mn(3+) + 2 H2O"],["GO%3A0016689","manganese peroxidase activity"]]},{"id":"METPO:1000731","l":"nutrient adaptation","na":3,"nb":3,"a":[["physiology/copiotrophic.html","copiotrophic"],["physiology/nutrient_adaptation.html","nutrient adaptation"],["physiology/oligotrophic.html","oligotrophic"]],"b":[["METPO%3A1000642","copiotrophic"],["METPO%3A1000731","nutrient adaptation"],["METPO%3A1000654","oligotrophic"]]},{"id":"METPO:1005010","l":"indole test","na":3,"nb":3,"a":[["other/indole_test.html","indole test"],["other/indole_test_negative.html","indole test negative"],["other/indole_test_positive.html","indole test positive"]],"b":[["METPO%3A1005010","indole test"],["METPO%3A1005012","indole test negative"],["METPO%3A1005011","indole test positive"]]},{"id":"METPO:1005013","l":"methyl red test","na":3,"nb":3,"a":[["other/methyl_red_test.html","methyl red test"],["other/methyl_red_test_negative.html","methyl red test negative"],["other/methyl_red_test_positive.html","methyl red test positive"]],"b":[["METPO%3A1005013","methyl red test"],["METPO%3A1005015","methyl red test negative"],["METPO%3A1005014","methyl red test positive"]]},{"id":"METPO:1005016","l":"Voges-Proskauer test","na":3,"nb":3,"a":[["other/voges_proskauer_test.html","Voges-Proskauer test"],["other/voges_proskauer_test_negative.html","Voges-Proskauer test negative"],["other/voges_proskauer_test_positive.html","Voges-Proskauer test positive"]],"b":[["METPO%3A1005016","Voges-Proskauer test"],["METPO%3A1005018","Voges-Proskauer test negative"],["METPO%3A1005017","Voges-Proskauer test positive"]]},{"id":"METPO:1007089","l":"coagulase activity","na":3,"nb":3,"a":[["other/coagulase_negative.html","coagulase negative"],["other/coagulase_positive.html","coagulase positive"],["physiology/coagulase_activity.html","coagulase activity"]],"b":[["METPO%3A1007089","coagulase activity"],["METPO%3A1007091","coagulase negative"],["METPO%3A1007090","coagulase positive"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":3,"nb":3,"a":[["ecology/commensalism.html","commensalism"],["genomics/nhi_system.html","Nhi system"],["other/coagulase_negative.html","coagulase negative"]],"b":[["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF08130","Type A lantibiotic family"],["Pfam%3APF04738","Lantibiotic dehydratase, N terminus"]]},{"id":"NCBITaxon:2257","l":"Natronomonas pharaonis","na":3,"nb":3,"a":[["environment/alkaphilic.html","alkaliphilic"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/obligately_alkaphilic.html","obligately alkaliphilic"]],"b":[["Pfam%3APF17909","Htr2 transmembrane domain"],["PROSITE%3APS00950","Bacterial rhodopsins signature 1"],["PROSITE%3APS00327","Bacterial rhodopsins retinal binding site"]]},{"id":"NCBITaxon:431944","l":"Magnetospirillum gryphiswaldense MSR-1","na":3,"nb":3,"a":[["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/magnetosome.html","magnetosome"],["physiology/magnetotaxis.html","magnetotaxis"]],"b":[["Pfam%3APF12728","Helix-turn-helix domain"],["Pfam%3APF04011","LemA family"],["Pfam%3APF07219","HemY protein N-terminus"]]},{"id":"UniProt:P10717","l":"","na":3,"nb":3,"a":[["physiology/photoheterotrophic.html","photoheterotrophic"],["physiology/photoorganoheterotrophic.html","photoorganoheterotrophic"],["physiology/phototrophic.html","phototrophic"]],"b":[["proteintraitsmech%3ABIOLIP_07D","07D-binding site"],["proteintraitsmech%3ABIOLIP_08I","08I-binding site"],["proteintraitsmech%3ABIOLIP_RQ0","RQ0-binding site"]]},{"id":"UniProt:Q04507","l":"","na":3,"nb":3,"a":[["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["EC%3A1.14.99.39","ammonia monooxygenase"],["RHEA%3A27341","AH2 + NH4(+) + O2 = hydroxylamine + A + H2O + H(+)"],["Pfam%3APF02461","Ammonia monooxygenase"]]},{"id":"GO:0009058","l":"biosynthetic process","na":2,"nb":733,"a":[["metabolism/metabolism.html","metabolism"],["physiology/heterotrophic.html","heterotrophic"]],"b":[["GO%3A1901852","7,8-didemethyl-8-hydroxy-5-deazariboflavin biosynthetic process"],["GO%3A0008292","acetylcholine biosynthetic process"],["GO%3A0046184","aldehyde biosynthetic process"],["GO%3A0019428","allantoin biosynthetic process"],["GO%3A0009309","amine biosynthetic process"],["GO%3A0008652","amino acid biosynthetic process"]]},{"id":"CHEBI:17499","l":"","na":2,"nb":633,"a":[["metabolism/electron_transfer.html","Electron transfer"],["metabolism/respiration.html","respiration"]],"b":[["EC%3A1.1.99.1","choline dehydrogenase"],["EC%3A1.1.99.12","sorbose dehydrogenase"],["EC%3A1.1.99.13","glucoside 3-dehydrogenase (acceptor)"],["EC%3A1.1.99.14","glycolate dehydrogenase"],["EC%3A1.1.99.18","cellobiose dehydrogenase (acceptor)"],["EC%3A1.1.99.2","L-2-hydroxyglutarate dehydrogenase"]]},{"id":"GO:0004252","l":"serine-type endopeptidase activity","na":2,"nb":281,"a":[["physiology/alpha_chymotrypsin_activity.html","alpha-chymotrypsin activity"],["physiology/trypsin_activity.html","trypsin activity"]],"b":[["EC%3A3.4.21.1","chymotrypsin"],["EC%3A3.4.21.10","acrosin"],["EC%3A3.4.21.102","C-terminal processing peptidase"],["EC%3A3.4.21.20","cathepsin G"],["EC%3A3.4.21.21","coagulation factor VIIa"],["EC%3A3.4.21.22","coagulation factor IXa"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":2,"nb":212,"a":[["physiology/methanotrophic.html","methanotrophic"],["physiology/methylotrophic.html","methylotrophic"]],"b":[["EC%3A1.1.1.244","methanol dehydrogenase"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.99.37","methanol dehydrogenase (nicotinoprotein)"],["EC%3A1.13.11.94","4-vinylguaiacol dioxygenase"],["EC%3A1.14.11.27","[histone H3]-dimethyl-L-lysine(36) demethylase"]]},{"id":"GO:0008233","l":"peptidase activity","na":2,"nb":141,"a":[["physiology/caseinase_activity.html","caseinase activity"],["physiology/gelatinase_activity.html","gelatinase activity"]],"b":[["ComplexPortal%3ACPX-9002","PA28-alphabeta single-capped 20S proteasome complex"],["ComplexPortal%3ACPX-9022","PA28-gamma double-capped 20S proteasome complex"],["ComplexPortal%3ACPX-9001","PA28-gamma single-capped 20S proteasome complex"],["ComplexPortal%3ACPX-3785","Tryptase alpha/beta-1 complex"],["ComplexPortal%3ACPX-3804","Tryptase alpha/beta-1 complex"],["ComplexPortal%3ACPX-3805","Tryptase beta-2 complex"]]},{"id":"CHEBI:16452","l":"","na":2,"nb":117,"a":[["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["EC%3A1.1.1.299","malate dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.1.37","(S)-malate dehydrogenase (NAD(+), oxaloacetate-forming)"],["EC%3A1.1.1.38","malate dehydrogenase (oxaloacetate-decarboxylating)"],["EC%3A1.1.1.40","malate dehydrogenase (oxaloacetate-decarboxylating) (NADP(+))"],["EC%3A1.1.1.82","malate dehydrogenase (NADP(+))"],["EC%3A1.1.5.4","malate dehydrogenase (quinone)"]]},{"id":"GO:0006099","l":"tricarboxylic acid cycle","na":2,"nb":92,"a":[["physiology/heterotrophic.html","heterotrophic"],["physiology/organoheterotrophic.html","organoheterotrophic"]],"b":[["ComplexPortal%3ACPX-3921","2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-9044","Mitochondrial 2-oxoglutarate dehydrogenase complex,CG1544 variant"],["ComplexPortal%3ACPX-9043","Mitochondrial 2-oxoglutarate dehydrogenase complex, CG33791 variant"],["ComplexPortal%3ACPX-1293","Mitochondrial 2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-9061","Mitochondrial 2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-9042","Mitochondrial 2-oxoglutarate dehydrogenase complex, ODGH variant"]]},{"id":"CHEBI:17790","l":"methanol","na":2,"nb":86,"a":[["physiology/methanotrophic.html","methanotrophic"],["physiology/methylotrophic.html","methylotrophic"]],"b":[["EC%3A1.1.1.244","methanol dehydrogenase"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.99.37","methanol dehydrogenase (nicotinoprotein)"],["EC%3A1.14.13.25","methane monooxygenase (soluble)"],["EC%3A1.14.14.117","aflatoxin B synthase"]]},{"id":"GO:0006302","l":"double-strand break repair","na":2,"nb":85,"a":[["environment/desiccation_tolerant.html","desiccation tolerant"],["environment/ionizing_radiation_tolerant.html","ionizing radiation tolerant"]],"b":[["ComplexPortal%3ACPX-10302","MRN double-strand break repair complex"],["ComplexPortal%3ACPX-1872","MRX double-strand break repair complex"],["ComplexPortal%3ACPX-511","MUS81-EME1 structure-specific endonuclease complex"],["ComplexPortal%3ACPX-585","MUS81-EME1 structure-specific endonuclease complex"],["ComplexPortal%3ACPX-586","MUS81-EME2 structure-specific endonuclease complex"],["ComplexPortal%3ACPX-587","MUS81-EME2 structure-specific endonuclease complex"]]},{"id":"GO:0051607","l":"defense response to virus","na":2,"nb":80,"a":[["genomics/crispr_cas_system.html","CRISPR-Cas system"],["genomics/phage_defense_system.html","phage defense system"]],"b":[["UniProtKB-KW%3AKW-0051","Antiviral defense"],["ComplexPortal%3ACPX-4142","AIM2 inflammasome"],["ComplexPortal%3ACPX-4243","AIM2 inflammasome"],["ComplexPortal%3ACPX-6037","MAVS-TRAF3 E3 ubiquitin ligase complex"],["ComplexPortal%3ACPX-2128","Sting complex"],["ComplexPortal%3ACPX-6018","STING-TRAF3-TBK1 complex"]]},{"id":"GO:0071973","l":"bacterial-type flagellum-dependent cell motility","na":2,"nb":60,"a":[["ecology/soil_dwelling.html","soil-dwelling"],["morphology/swarming_motility.html","swarming motility"]],"b":[["ComplexPortal%3ACPX-4886","DNA-directed RNA polymerase holoenzyme complex, SigmaF variant"],["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["GO%3A0071973","bacterial-type flagellum-dependent cell motility"],["GO%3A0071978","bacterial-type flagellum-dependent swarming motility"]]},{"id":"CHEBI:33542","l":"","na":2,"nb":38,"a":[["metabolism/disproportionation.html","Disproportionation"],["physiology/chemolithotrophic.html","chemolithotrophic"]],"b":[["EC%3A1.8.2.2","thiosulfate dehydrogenase"],["EC%3A1.8.2.5","thiosulfate reductase (cytochrome)"],["EC%3A1.8.5.2","thiosulfate dehydrogenase (quinone)"],["EC%3A1.8.5.5","thiosulfate reductase (quinone)"],["EC%3A2.5.1.144","S-sulfo-L-cysteine synthase (O-acetyl-L-serine-dependent)"],["EC%3A2.8.1.1","thiosulfate sulfurtransferase"]]},{"id":"GO:0004022","l":"alcohol dehydrogenase (NAD+) activity","na":2,"nb":38,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["physiology/nad_dependent_alcohol_dehydrogenase_activity.html","NAD-dependent alcohol dehydrogenase activity"]],"b":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["RHEA%3A10736","a primary alcohol + NAD(+) = an aldehyde + NADH + H(+)"],["RHEA%3A10740","a secondary alcohol + NAD(+) = a ketone + NADH + H(+)"],["GO%3A0106429","11-cis-retinol dehydrogenase (NAD+) activity"],["GO%3A0052676","3-methylbutanal reductase (NADH) activity"],["GO%3A0004022","alcohol dehydrogenase (NAD+) activity"]]},{"id":"GO:0016805","l":"dipeptidase activity","na":2,"nb":36,"a":[["physiology/glutamyl_glutamic_acid_arylamidase_activity.html","glutamyl glutamic acid arylamidase activity"],["physiology/leucyl_glycine_arylamidase_activity.html","leucyl glycine arylamidase activity"]],"b":[["EC%3A3.4.13.18","cytosol non-specific dipeptidase"],["EC%3A3.4.13.19","membrane dipeptidase"],["EC%3A3.4.13.21","dipeptidase E"],["GO%3A0160237","D-Ala-D-Ala dipeptidase activity"],["GO%3A0016805","dipeptidase activity"],["GO%3A0070573","metallodipeptidase activity"]]},{"id":"GO:0016298","l":"lipase activity","na":2,"nb":33,"a":[["metabolism/lipolysis.html","lipolysis"],["physiology/lipase_activity.html","lipase activity"]],"b":[["GO%3A0120516","diacylglycerol lipase activity"],["GO%3A0047714","galactolipase activity"],["GO%3A0016298","lipase activity"],["GO%3A0047372","monoacylglycerol lipase activity"],["GO%3A0120569","phospholipase activity"],["GO%3A0004771","sterol ester esterase activity"]]},{"id":"CHEBI:36242","l":"","na":2,"nb":32,"a":[["morphology/black_pigmented.html","black pigmented"],["morphology/brown_pigmented.html","brown pigmented"]],"b":[["EC%3A1.1.1.110","aromatic 2-oxoacid reductase"],["EC%3A1.1.1.237","hydroxyphenylpyruvate reductase"],["EC%3A1.13.11.27","4-hydroxyphenylpyruvate dioxygenase"],["EC%3A1.13.11.46","4-hydroxymandelate synthase"],["EC%3A1.2.3.13","4-hydroxyphenylpyruvate oxidase"],["EC%3A1.3.1.12","prephenate dehydrogenase"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":2,"nb":32,"a":[["genomics/gc_mid1.html","GC mid1"],["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["Pfam%3APF25848","Rodlin protein"],["Pfam%3APF13420","Acetyltransferase (GNAT) domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF26381","BREX System ATPase PglY protein 5th domain"],["Pfam%3APF26382","BREX System ATPase PglY protein 6th domain"]]},{"id":"CHEBI:16236","l":"ethanol","na":2,"nb":31,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]],"b":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.5.5","alcohol dehydrogenase (quinone)"],["EC%3A1.1.99.36","alcohol dehydrogenase (nicotinoprotein)"],["EC%3A2.3.1.268","ethanol O-acetyltransferase"],["EC%3A3.1.1.113","ethyl acetate hydrolase"],["EC%3A3.1.1.67","fatty-acyl-ethyl-ester synthase"]]},{"id":"NCBITaxon:243273","l":"Mycoplasmoides genitalium (strain ATCC 33530 / DSM 19775 / NCTC 10195 / G37)","na":2,"nb":31,"a":[["genomics/gc_high.html","GC high"],["genomics/genome_size.html","genome size"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF03257","Mycoplasma adhesin P1, C-terminal"],["Pfam%3APF09185","Domain of unknown function (DUF1948)"],["Pfam%3APF09188","Domain of unknown function (DUF1951)"],["Pfam%3APF03072","Domain of unknown function (DUF237)"],["Pfam%3APF03086","Domain of unknown function (DUF240)"]]},{"id":"GO:0008810","l":"cellulase activity","na":2,"nb":28,"a":[["metabolism/biopolymer_degradation.html","biopolymer degradation"],["metabolism/cellulolysis.html","cellulolysis"]],"b":[["EC%3A3.2.1.4","cellulase"],["GO%3A0008810","cellulase activity"],["InterPro%3AIPR005087","Carbohydrate binding module family 11"],["InterPro%3AIPR005086","Carbohydrate binding module family 17/28"],["InterPro%3AIPR004197","Cellulase, Ig-like domain"],["InterPro%3AIPR000334","Glycoside hydrolase, family 45"]]},{"id":"GO:0051139","l":"metal cation:proton antiporter activity","na":2,"nb":26,"a":[["environment/alkalotolerant.html","alkalotolerant"],["environment/neutrophilic.html","neutrophilic"]],"b":[["GO%3A0015369","calcium:proton antiporter activity"],["GO%3A0010348","lithium:proton antiporter activity"],["GO%3A0010486","manganese:proton antiporter activity"],["GO%3A0051139","metal cation:proton antiporter activity"],["GO%3A0015386","potassium:proton antiporter activity"],["GO%3A0015385","sodium:proton antiporter activity"]]},{"id":"GO:1990573","l":"potassium ion import across plasma membrane","na":2,"nb":25,"a":[["environment/nacl_delta.html","NaCl delta"],["environment/nacl_delta_mid1.html","NaCl delta mid1"]],"b":[["ComplexPortal%3ACPX-260","HCN1 channel complex"],["ComplexPortal%3ACPX-142","HCN2 channel complex"],["ComplexPortal%3ACPX-270","HCN3 channel complex"],["ComplexPortal%3ACPX-139","HCN4 channel complex"],["ComplexPortal%3ACPX-186","Inward rectifying potassium channel complex, Kir6.2-SUR1"],["ComplexPortal%3ACPX-194","Inward rectifying potassium channel complex, Kir6.2-SUR1"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":2,"nb":25,"a":[["genomics/ploidy.html","ploidy"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["Pfam%3APF13372","Alginate export"],["Pfam%3APF25965","ALG44 beta-barrel domain"],["Pfam%3APF25964","ALG44, barrel-sandwich hybrid domain"],["Pfam%3APF16844","Dinitrogenase iron-molybdenum cofactor, N-terminal"],["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"]]},{"id":"GO:0004089","l":"carbonate dehydratase activity","na":2,"nb":24,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["physiology/urease_activity.html","urease activity"]],"b":[["EC%3A4.2.1.1","carbonic anhydrase"],["RHEA%3A10748","hydrogencarbonate + H(+) = CO2 + H2O"],["GO%3A0004089","carbonate dehydratase activity"],["NCBIfam%3ANF007756","carbonate dehydratase"],["NCBIfam%3ANF011765","carbonic anhydrase family protein"],["NCBIfam%3ANF040597","carbonic anhydrase"]]},{"id":"UniProt:P0AE67","l":"","na":2,"nb":24,"a":[["morphology/motile.html","motile"],["physiology/chemotaxis.html","chemotaxis"]],"b":[["ComplexPortal%3ACPX-1077","Chemotaxis phosphorelay complex CheA-CheY"],["ComplexPortal%3ACPX-1088","Chemotaxis phosphorelay complex CheY-CheZ"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009433","bacterial-type flagellum basal body, C ring"],["GO%3A0009288","bacterial-type flagellum"],["GO%3A0120107","bacterial-type flagellum rotor complex"]]},{"id":"CHEBI:15429","l":"","na":2,"nb":23,"a":[["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["EC%3A1.14.99.39","ammonia monooxygenase"],["EC%3A1.3.7.8","benzoyl-CoA reductase"],["EC%3A1.7.1.10","hydroxylamine reductase (NADH)"],["EC%3A1.7.1.5","hyponitrite reductase"],["EC%3A1.7.2.6","hydroxylamine dehydrogenase"],["EC%3A1.7.2.9","hydroxylamine oxidase"]]},{"id":"CHEBI:29105","l":"zinc(2+)","na":2,"nb":20,"a":[["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/zinc_tolerant.html","zinc tolerant"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29105","requires zinc(2+)"],["EC%3A7.2.2.12","P-type Zn(2+) transporter"],["EC%3A7.2.2.20","ABC-type Zn(2+) transporter"],["RHEA%3A62264","selenite(out) + Zn(2+)(out) + hydrogencarbonate(out) = selenite(in) + Zn(2+)(in) + hydrogencarbonate(in)"],["RHEA%3A72627","Zn(2+)(in) + 2 H(+)(out) = Zn(2+)(out) + 2 H(+)(in)"],["RHEA%3A20621","Zn(2+)(in) + ATP + H2O = Zn(2+)(out) + ADP + phosphate + H(+)"]]},{"id":"CHEBI:18421","l":"","na":2,"nb":19,"a":[["environment/microaerotolerant.html","microaerotolerant"],["environment/obligately_aerobic.html","obligately aerobic"]],"b":[["EC%3A1.10.3.17","superoxide oxidase"],["EC%3A1.15.1.1","superoxide dismutase"],["EC%3A1.15.1.2","superoxide reductase"],["RHEA%3A80515","2,4,6-trinitrotoluene radical + O2 = 2,4,6-trinitrotoluene + superoxide + H(+)"],["RHEA%3A20696","2 superoxide + 2 H(+) = H2O2 + O2"],["RHEA%3A29179","a menaquinol + 2 O2 = 2 superoxide + a menaquinone + 2 H(+)"]]},{"id":"GO:0009039","l":"urease activity","na":2,"nb":19,"a":[["other/urease_negative.html","urease negative"],["physiology/urease_activity.html","urease activity"]],"b":[["EC%3A3.5.1.5","urease"],["METPO%3A1007088","urease negative"],["METPO%3A1007087","urease positive"],["RHEA%3A20557","urea + 2 H2O + H(+) = hydrogencarbonate + 2 NH4(+)"],["GO%3A0009039","urease activity"],["NCBIfam%3ANF009685","urease subunit alpha"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":2,"nb":19,"a":[["genomics/crispr_cas_system.html","CRISPR-Cas system"],["genomics/phage_defense_system.html","phage defense system"]],"b":[["Pfam%3APF03306","Alpha-acetolactate decarboxylase"],["Pfam%3APF22208","Cas_Csm6 CARF domain"],["Pfam%3APF09659","Cas_Csm6 HEPN domain"],["Pfam%3APF22335","Cas10/Cmr2, second palm domain"],["Pfam%3APF18395","Cas3 C-terminal domain"],["Pfam%3APF18019","Cas3, HD domain"]]},{"id":"GO:0031411","l":"gas vesicle","na":2,"nb":18,"a":[["morphology/gas_vesicle.html","gas vesicle"],["morphology/intracellular_inclusion.html","intracellular inclusion"]],"b":[["GO%3A0031411","gas vesicle"],["NCBIfam%3ANF041667","gas vesicle accessory protein GvpU"],["NCBIfam%3ANF046092","gas vesicle protein GvpA"],["NCBIfam%3ANF045779","gas vesicle protein GvpG"],["NCBIfam%3ANF046090","gas vesicle protein GvpJ"],["NCBIfam%3ANF045778","gas vesicle protein GvpL"]]},{"id":"UniProt:P13445","l":"","na":2,"nb":15,"a":[["physiology/stress_response.html","stress response"],["physiology/viable_but_nonculturable_state.html","viable but nonculturable state"]],"b":[["ComplexPortal%3ACPX-4883","DNA-directed RNA polymerase holoenzyme complex, SigmaS variant"],["ComplexPortal%3ACPX-5024","rpoS-rssB sigma-antisigma complex"],["GO%3A1903865","sigma factor antagonist complex"],["GO%3A0001000","bacterial-type RNA polymerase core enzyme binding"],["GO%3A0016987","sigma factor activity"],["GO%3A0006352","DNA-templated transcription initiation"]]},{"id":"CHEBI:15846","l":"NAD(+)","na":2,"nb":14,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15846","requires NAD+"],["ARO%3A3002846","arr-1"],["ARO%3A3002847","arr-2"],["ARO%3A3002848","arr-3"],["ARO%3A3002849","arr-4"],["ARO%3A3002850","arr-5"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":2,"nb":14,"a":[["morphology/carboxysome.html","carboxysome"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF02224","Cytidylate kinase"],["Pfam%3APF03319","Ethanolamine utilisation protein EutN/carboxysome"],["Pfam%3APF22019","alpha-1,4-glucan branching enzyme GlgB, N-terminal domain"],["Pfam%3APF21714","Circadian clock protein KaiA, N-terminal domain"],["Pfam%3APF07688","KaiA C-terminal domain"]]},{"id":"CHEBI:17045","l":"dinitrogen oxide","na":2,"nb":13,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["physiology/chemolithotrophic.html","chemolithotrophic"]],"b":[["EC%3A1.7.1.14","nitric oxide reductase [NAD(P)(+), nitrous oxide-forming]"],["EC%3A1.7.2.4","nitrous-oxide reductase"],["EC%3A1.7.2.5","nitric-oxide reductase (cytochrome c)"],["EC%3A1.7.5.2","nitric oxide reductase (menaquinol)"],["RHEA%3A30215","a menaquinol + 2 nitric oxide = nitrous oxide + a menaquinone + H2O"],["RHEA%3A43108","N2 + 2 Fe(III)-[cytochrome c] + H2O = nitrous oxide + 2 Fe(II)-[cytochrome c] + 2 H(+)"]]},{"id":"NCBITaxon:272562","l":"Clostridium acetobutylicum (strain ATCC 824 / DSM 792 / JCM 1419 / IAM 19013 / LMG 5710 / NBRC 13948 / NRRL B-527 / VKM B-1787 / 2291 / W)","na":2,"nb":13,"a":[["metabolism/acetone_butanol_ethanol_fermentation.html","acetone-butanol-ethanol fermentation"],["metabolism/fermentation.html","Fermentation"]],"b":[["Pfam%3APF10882","Bacterial PH domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["Pfam%3APF09940","Domain of unknown function (DUF2172)"],["Pfam%3APF16254","Domain of unknown function (DUF4910)"],["Pfam%3APF01183","Glycosyl hydrolases family 25"],["Pfam%3APF16221","winged helix-turn-helix"]]},{"id":"GO:0031469","l":"bacterial microcompartment","na":2,"nb":12,"a":[["morphology/carboxysome.html","carboxysome"],["morphology/intracellular_inclusion.html","intracellular inclusion"]],"b":[["GO%3A0031469","bacterial microcompartment"],["GO%3A0031470","carboxysome"],["GO%3A0031471","ethanolamine degradation polyhedral organelle"],["GO%3A0031472","propanediol degradation polyhedral organelle"],["NCBIfam%3ATIGR02704","carboxysome peptide B"],["NCBIfam%3ANF011934","ethanolamine utilization microcompartment protein EutL"]]},{"id":"NCBITaxon:301447","l":"Streptococcus pyogenes serotype M1","na":2,"nb":12,"a":[["genomics/crispr_cas_system.html","CRISPR-Cas system"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["Pfam%3APF16595","PAM-interacting domain of CRISPR-associated endonuclease Cas9"],["Pfam%3APF22702","Cas9 RuvC domain"],["Pfam%3APF24547","Domain of unknown function (DUF7601)"],["Pfam%3APF22382","Endo-beta-N-acetylglucosaminidase, helical bundle"],["Pfam%3APF20746","Endo-beta-N-acetylglucosaminidase F2, Ig-like domain"],["Pfam%3APF12892","Spy0128-like isopeptide containing domain"]]},{"id":"NCBITaxon:485","l":"Neisseria gonorrhoeae","na":2,"nb":12,"a":[["physiology/oxidase_activity.html","oxidase activity"],["physiology/prolyl_aminopeptidase_activity.html","prolyl aminopeptidase activity"]],"b":[["Pfam%3APF25860","Cryptic plasmid protein A"],["Pfam%3APF12852","Cupin"],["Pfam%3APF17845","FbpC C-terminal regulatory nucleotide binding domain"],["Pfam%3APF22443","FbpC-like, regulatory domain"],["Pfam%3APF18053","DNA gyrase B subunit insert domain"],["Pfam%3APF25885","EMRA, alpha-helical hairpin domain"]]},{"id":"GO:0030641","l":"","na":11,"nb":2,"a":[["environment/acidophilic.html","acidophilic"],["environment/acidotolerant.html","acidotolerant"],["environment/alkalotolerant.html","alkalotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"]],"b":[["PANTHER%3APTHR10110","SODIUM/HYDROGEN EXCHANGER"],["PANTHER%3APTHR12471","VACUOLAR ATP SYNTHASE SUBUNIT S1"]]},{"id":"GO:0035825","l":"homologous recombination","na":2,"nb":11,"a":[["environment/radiotolerant.html","radiotolerant"],["genomics/gc_mid2.html","GC mid2"]],"b":[["ComplexPortal%3ACPX-4426","BRCA1-B complex"],["ComplexPortal%3ACPX-4721","BRCA1-B complex"],["ComplexPortal%3ACPX-4441","BRCA1-C complex"],["ComplexPortal%3ACPX-4722","BRCA1-C complex"],["ComplexPortal%3ACPX-9561","FLIP-FIGNL1 DNA interstrand crosslink repair complex"],["ComplexPortal%3ACPX-1386","Synapsis initiation complex"]]},{"id":"GO:0044403","l":"biological process involved in symbiotic interaction","na":2,"nb":11,"a":[["ecology/plant_pathogen.html","plant pathogen"],["ecology/symbiosis.html","symbiosis"]],"b":[["GO%3A0036377","arbuscular mycorrhizal association"],["GO%3A0051701","biological process involved in interaction with host"],["GO%3A0051702","biological process involved in interaction with symbiont"],["GO%3A0044403","biological process involved in symbiotic interaction"],["GO%3A0075733","intracellular transport of virus"],["GO%3A0044399","multi-species biofilm formation"]]},{"id":"GO:1990586","l":"divisome complex","na":2,"nb":11,"a":[["morphology/coccus_shaped.html","coccus shaped"],["morphology/ellipsoidal.html","ellipsoidal"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["ComplexPortal%3ACPX-3299","FtsBL complex"],["ComplexPortal%3ACPX-3099","FtsQBL complex"],["GO%3A1990586","divisome complex"],["GO%3A1990588","FtsBL complex"],["GO%3A1990587","FtsQBL complex"]]},{"id":"GO:0008976","l":"polyphosphate kinase activity","na":2,"nb":10,"a":[["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/polyphosphate_granule.html","polyphosphate granule"]],"b":[["EC%3A2.7.4.1","ATP-polyphosphate phosphotransferase"],["RHEA%3A19573","[phosphate](n) + ATP = [phosphate](n+1) + ADP"],["GO%3A0008976","polyphosphate kinase activity"],["NCBIfam%3ANF042973","ADP-polyphosphate phosphotransferase"],["NCBIfam%3ATIGR03705","polyphosphate kinase 1"],["NCBIfam%3ATIGR03707","polyphosphate kinase 2"]]},{"id":"GO:0004329","l":"formate-tetrahydrofolate ligase activity","na":2,"nb":9,"a":[["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"]],"b":[["EC%3A6.3.4.3","formate--tetrahydrofolate ligase"],["RHEA%3A20221","(6S)-5,6,7,8-tetrahydrofolate + formate + ATP = (6R)-10-formyltetrahydrofolate + ADP + phosphate"],["GO%3A0004329","formate-tetrahydrofolate ligase activity"],["NCBIfam%3ANF010030","formate--tetrahydrofolate ligase"],["NCBIfam%3ANF010031","formate--tetrahydrofolate ligase"],["NCBIfam%3ANF013436","formate--tetrahydrofolate ligase"]]},{"id":"GO:0019164","l":"pyruvate synthase activity","na":2,"nb":9,"a":[["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"]],"b":[["EC%3A1.2.7.1","pyruvate synthase"],["RHEA%3A12765","2 oxidized [2Fe-2S]-[ferredoxin] + pyruvate + CoA = 2 reduced [2Fe-2S]-[ferredoxin] + acetyl-CoA + CO2 + H(+)"],["GO%3A0019164","pyruvate synthase activity"],["NCBIfam%3ANF041170","2-oxoacid:ferredoxin oxidoreductase subunit alpha"],["NCBIfam%3ANF041171","2-oxoacid:ferredoxin oxidoreductase subunit beta"],["NCBIfam%3ANF040682","pyruvate synthase subunit PorA"]]},{"id":"GO:0031160","l":"spore wall","na":2,"nb":9,"a":[["morphology/spore_forming.html","spore forming"],["morphology/spore_shaped.html","spore shaped"]],"b":[["ComplexPortal%3ACPX-3028","1,3-beta-D-glucan synthase complex, FKS3-RHO1 variant"],["GO%3A0005619","ascospore wall"],["GO%3A0097515","asexual spore wall"],["GO%3A0043591","endospore external encapsulating structure"],["GO%3A0097514","sexual spore wall"],["GO%3A0031160","spore wall"]]},{"id":"NCBITaxon:818","l":"Bacteroides thetaiotaomicron","na":2,"nb":9,"a":[["ecology/gut_associated.html","gut-associated"],["ecology/host_associated.html","host-associated"]],"b":[["Pfam%3APF09093","Lyase, catalytic"],["TED%3AAF-A0A174W9M0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A174W9M0-F1-model_v4_TED01"],["TED%3AAF-A0A679HCU6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A679HCU6-F1-model_v4_TED01"],["TED%3AAF-A0A139L295-F1-model_v4_TED04","TED novel fold AF-A0A139L295-F1-model_v4_TED04"],["TED%3AAF-A0A174QBB7-F1-model_v4_TED02","TED novel fold AF-A0A174QBB7-F1-model_v4_TED02"],["TED%3AAF-A0A679H9T4-F1-model_v4_TED03","TED novel fold AF-A0A679H9T4-F1-model_v4_TED03"]]},{"id":"GO:0000917","l":"division septum assembly","na":2,"nb":8,"a":[["morphology/sarcina_arrangement.html","sarcina arrangement"],["morphology/tetrad_arrangement.html","tetrad arrangement"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["GO%3A0000917","division septum assembly"],["GO%3A0140278","mitotic division septum assembly"],["NCBIfam%3ATIGR02205","cell division protein ZipA"],["NCBIfam%3ATIGR00172","Maf family nucleotide pyrophosphatase"],["PANTHER%3APTHR36419","ARRESTIN FAMILY PROTEIN 1"]]},{"id":"GO:0061579","l":"N-acyl homoserine lactone synthase activity","na":2,"nb":8,"a":[["physiology/bioluminescence.html","bioluminescence"],["physiology/quorum_sensing.html","quorum sensing"]],"b":[["EC%3A2.3.1.184","acyl-homoserine-lactone synthase"],["RHEA%3A10096","a fatty acyl-[ACP] + S-adenosyl-L-methionine = an N-acyl-L-homoserine lactone + S-methyl-5'-thioadenosine + holo-[ACP] + H(+)"],["GO%3A0061579","N-acyl homoserine lactone synthase activity"],["NCBIfam%3ANF052393","acyl-homoserine-lactone synthase"],["NCBIfam%3ANF036435","acyl-homoserine-lactone synthase"],["Pfam%3APF17327","Acyl homoserine lactone synthase"]]},{"id":"NCBITaxon:565050","l":"Caulobacter vibrioides NA1000","na":2,"nb":8,"a":[["morphology/crescent_shaped.html","crescent shaped"],["morphology/tailed_shaped.html","tailed shaped"]],"b":[["Pfam%3APF02767","DNA polymerase III beta subunit, central domain"],["Pfam%3APF02768","DNA polymerase III beta subunit, C-terminal domain"],["Pfam%3APF00712","DNA polymerase III beta subunit, N-terminal domain"],["Pfam%3APF21249","GyrB, hook"],["Pfam%3APF07378","Flagellar protein FlbT"],["Pfam%3APF03748","Flagellar basal body-associated protein FliL"]]},{"id":"GO:0042438","l":"melanin biosynthetic process","na":2,"nb":7,"a":[["morphology/black_pigmented.html","black pigmented"],["morphology/white_pigmented.html","white pigmented"]],"b":[["GO%3A0140614","1,8-dihydroxynaphthalene-melanin biosynthetic process"],["GO%3A0006583","melanin biosynthetic process from tyrosine"],["GO%3A0042438","melanin biosynthetic process"],["Reactome%3AR-HSA-5662702","Melanin biosynthesis"],["NCBIfam%3ANF017995","tyrosinase family oxidase copper chaperone"],["NCBIfam%3ANF047834","tyrosinase MelC2"]]},{"id":"GO:0050304","l":"nitrous-oxide reductase activity","na":2,"nb":7,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"]],"b":[["EC%3A1.7.2.4","nitrous-oxide reductase"],["RHEA%3A43108","N2 + 2 Fe(III)-[cytochrome c] + H2O = nitrous oxide + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["GO%3A0050304","nitrous-oxide reductase activity"],["NCBIfam%3ANF052460","clade III lactonase-type nitrous-oxide reductase"],["NCBIfam%3ATIGR04244","TAT-dependent nitrous-oxide reductase"],["NCBIfam%3ATIGR04246","Sec-dependent nitrous-oxide reductase"]]},{"id":"NCBITaxon:28116","l":"Bacteroides ovatus","na":2,"nb":7,"a":[["metabolism/xylan_degradation.html","xylan degradation"],["physiology/amylase_activity.html","amylase activity"]],"b":[["TED%3AAF-A0A515J030-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A515J030-F1-model_v4_TED01"],["TED%3AAF-A0A5M5C3M7-F1-model_v4_TED01","TED novel fold AF-A0A5M5C3M7-F1-model_v4_TED01"],["TED%3AAF-A0A641PL20-F1-model_v4_TED01","TED novel fold AF-A0A641PL20-F1-model_v4_TED01"],["TED%3AAF-A0A641V3P9-F1-model_v4_TED03","TED novel fold AF-A0A641V3P9-F1-model_v4_TED03"],["TED%3AAF-A0A641VT79-F1-model_v4_TED01","TED novel fold AF-A0A641VT79-F1-model_v4_TED01"],["TED%3AAF-A0A642C648-F1-model_v4_TED01","TED novel fold AF-A0A642C648-F1-model_v4_TED01"]]},{"id":"CHEBI:18246","l":"(1->4)-beta-D-glucan","na":2,"nb":6,"a":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/cellulolysis.html","cellulolysis"]],"b":[["EC%3A2.4.1.12","cellulose synthase (UDP-forming)"],["EC%3A2.4.1.29","cellulose synthase (GDP-forming)"],["EC%3A2.4.1.49","cellodextrin phosphorylase"],["RHEA%3A17797","[(1->4)-beta-D-glucosyl](n) + GDP-alpha-D-glucose = [(1->4)-beta-D-glucosyl](n+1) + GDP + H(+)"],["RHEA%3A23024","[(1->4)-beta-D-glucosyl](n) + phosphate = [(1->4)-beta-D-glucosyl](n-1) + alpha-D-glucose 1-phosphate"],["RHEA%3A19929","[(1->4)-beta-D-glucosyl](n) + UDP-alpha-D-glucose = [(1->4)-beta-D-glucosyl](n+1) + UDP + H(+)"]]},{"id":"CHEBI:27208","l":"","na":6,"nb":2,"a":[["environment/mesophilic.html","mesophilic"],["environment/temperature_delta.html","temperature delta"],["environment/temperature_delta_mid2.html","temperature delta mid2"],["environment/temperature_optimum_mid1.html","temperature optimum mid1"],["environment/temperature_optimum_mid2.html","temperature optimum mid2"],["environment/temperature_optimum_very_low.html","temperature optimum very low"]],"b":[["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"],["TCDB%3A9.A.76","The Omega3 Fatty Acid Desaturase 3/Putative Transporter (FAD3) Family"]]},{"id":"InterPro:IPR012171","l":"","na":2,"nb":6,"a":[["environment/facultative_psychrophilic.html","facultative psychrophilic"],["environment/temperature_preference.html","temperature preference"]],"b":[["Pfam%3APF00173","Cytochrome b5-like Heme/Steroid binding domain"],["Pfam%3APF00487","Fatty acid desaturase"],["PANTHER%3APTHR19353","FATTY ACID DESATURASE 2"],["PANTHER%3APTHR32100","OMEGA-6 FATTY ACID DESATURASE, CHLOROPLASTIC"],["Pfam%3APF11960","Domain of unknown function (DUF3474)"],["PROSITE%3APS00574","Fatty acid desaturases family 2 signature"]]},{"id":"NCBITaxon:727","l":"Haemophilus influenzae","na":2,"nb":6,"a":[["genomics/restriction_modification_system.html","restriction-modification system"],["morphology/coccobacillus_shaped.html","coccobacillus shaped"]],"b":[["Pfam%3APF06808","Tripartite ATP-independent periplasmic transporter, DctM component"],["Pfam%3APF04290","Tripartite ATP-independent periplasmic transporters, DctQ component"],["Pfam%3APF09226","Restriction endonuclease HincII"],["Pfam%3APF09520","Type II restriction endonuclease, HinfI"],["Pfam%3APF24077","Immunoglobulin A1 protease autotransporter domain 2"],["PROSITE%3APS01068","OmpA-like domain"]]},{"id":"CHEBI:16094","l":"thiosulfate(2-)","na":5,"nb":2,"a":[["metabolism/disproportionation.html","Disproportionation"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["proteintraitsmech%3ABIOLIP_THJ","THJ-binding site"]]},{"id":"GO:0009291","l":"unidirectional conjugation","na":2,"nb":5,"a":[["genomics/genomic_island.html","genomic island"],["genomics/plasmid_carriage.html","plasmid carriage"]],"b":[["GO%3A0000762","pheromone-induced unidirectional conjugation"],["GO%3A0009291","unidirectional conjugation"],["NCBIfam%3ATIGR02775","P-type conjugative transfer protein TrbG"],["NCBIfam%3ATIGR02780","P-type conjugative transfer protein TrbJ"],["NCBIfam%3ATIGR02783","P-type conjugative transfer protein TrbL"]]},{"id":"GO:0016610","l":"nitrogenase complex","na":2,"nb":5,"a":[["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["GO%3A0016611","iron-iron nitrogenase complex"],["GO%3A0016612","molybdenum-iron nitrogenase complex"],["GO%3A0016610","nitrogenase complex"],["GO%3A0016613","vanadium-iron nitrogenase complex"],["NCBIfam%3ATIGR01287","nitrogenase iron protein"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":2,"nb":5,"a":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"]],"b":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF02963","Restriction endonuclease EcoRI"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["PROSITE%3APS00974","Mannitol dehydrogenases signature"],["PROSITE%3APS00567","Phosphoribulokinase signature"]]},{"id":"NCBITaxon:920","l":"Acidithiobacillus ferrooxidans","na":5,"nb":2,"a":[["environment/obligately_acidophilic.html","obligately acidophilic"],["environment/ph_range_low.html","pH range low"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["Pfam%3APF20538","Family of unknown function (DUF6753)"],["PROSITE%3APS01007","Transposases, Mutator family, signature"]]},{"id":"CHEBI:16234","l":"","na":2,"nb":4,"a":[["environment/alkalotolerant.html","alkalotolerant"],["physiology/urease_activity.html","urease activity"]],"b":[["TCDB%3A2.A.53","The Sulfate Permease (SulP) Family"],["MCSA%3A172","isoaspartyl dipeptidase"],["MCSA%3A989","Retroviral integrase"],["MCSA%3A965","Viperin"]]},{"id":"GO:0000920","l":"septum digestion after cytokinesis","na":2,"nb":4,"a":[["morphology/diplococcus_shaped.html","diplococcus shaped"],["morphology/dumbbell_shaped.html","dumbbell shaped"]],"b":[["ComplexPortal%3ACPX-1684","CBK1-MOB2 kinase complex"],["ComplexPortal%3ACPX-1712","Gin4 serine/threonine kinase complex"],["ComplexPortal%3ACPX-1426","Myosin class II complex"],["GO%3A0000920","septum digestion after cytokinesis"]]},{"id":"GO:0030115","l":"S-layer","na":2,"nb":4,"a":[["morphology/square_shaped.html","square shaped"],["morphology/triangular_shaped.html","triangular shaped"]],"b":[["GO%3A0030115","S-layer"],["NCBIfam%3ANF041335","ArtA-dependent S-layer glycoprotein"],["NCBIfam%3ANF053619","BT1927 family outer membrane S-layer protein"],["NCBIfam%3ANF041073","S-layer protein SlaA"]]},{"id":"GO:0043107","l":"type IV pilus-dependent motility","na":2,"nb":4,"a":[["morphology/motile.html","motile"],["morphology/twitching_motility.html","twitching motility"]],"b":[["GO%3A0043107","type IV pilus-dependent motility"],["NCBIfam%3ATIGR01420","PilT/PilU family type 4a pilus ATPase"],["NCBIfam%3ANF016253","type 4a pilus biogenesis protein PilO"],["Pfam%3APF04350","Type IVa pilus alignment subcomplex PilO C-terminal domain"]]},{"id":"GO:0043884","l":"CO-methylating acetyl-CoA synthase activity","na":2,"nb":4,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"]],"b":[["EC%3A2.3.1.169","CO-methylating acetyl-CoA synthase"],["RHEA%3A45212","Co(I)-[corrinoid Fe-S protein] + acetyl-CoA + H(+) = methyl-Co(III)-[corrinoid Fe-S protein] + CO + CoA"],["GO%3A0043884","CO-methylating acetyl-CoA synthase activity"],["NCBIfam%3ATIGR00316","CO dehydrogenase/CO-methylating acetyl-CoA synthase complex subunit beta"]]},{"id":"GO:0050338","l":"thiosulfate dehydrogenase activity","na":2,"nb":4,"a":[["metabolism/disproportionation.html","Disproportionation"],["metabolism/sulfur_oxidation.html","sulfur oxidation"]],"b":[["EC%3A1.8.2.2","thiosulfate dehydrogenase"],["RHEA%3A20549","2 thiosulfate + 2 Fe(III)-[cytochrome c] = tetrathionate + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["GO%3A0050338","thiosulfate dehydrogenase activity"],["MCSA%3A986","Thiosulfate dehydrogenase"]]},{"id":"METPO:2000302","l":"shows activity of","na":2,"nb":4,"a":[["metabolism/shows_activity_of.html","shows activity of"],["other/coagulase_positive.html","coagulase positive"]],"b":[["METPO%3A1007083","catalase positive"],["METPO%3A1007090","coagulase positive"],["METPO%3A1007085","oxidase positive"],["METPO%3A1007087","urease positive"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":2,"nb":4,"a":[["genomics/abialpha_system.html","AbiAlpha system"],["physiology/gelatinase_activity.html","gelatinase activity"]],"b":[["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF09711","CRISPR-associated protein (Cas_Csn2)"],["Pfam%3APF06308","23S rRNA methylastransferase leader peptide (ErmCL)"]]},{"id":"GO:0019329","l":"ammonia oxidation","na":2,"nb":3,"a":[["metabolism/complete_ammonia_oxidation.html","complete ammonia oxidation"],["metabolism/nitrification.html","nitrification"]],"b":[["GO%3A0019409","aerobic respiration, using ammonia as electron donor"],["GO%3A0019329","ammonia oxidation"],["GO%3A0019331","anaerobic respiration, using ammonium as electron donor"]]},{"id":"GO:0070088","l":"polyhydroxyalkanoate granule","na":2,"nb":3,"a":[["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]],"b":[["GO%3A0070088","polyhydroxyalkanoate granule"],["NCBIfam%3ANF045536","polyhydroxyalkanoate granule-associated phasin"],["NCBIfam%3ANF045537","polyhydroxyalkanoate granule-associated phasin"]]},{"id":"InterPro:IPR007793","l":"","na":3,"nb":2,"a":[["morphology/ellipsoidal.html","ellipsoidal"],["morphology/filament_shaped.html","filament shaped"],["morphology/ovoid_shaped.html","ovoid shaped"]],"b":[["PANTHER%3APTHR35794","CELL DIVISION PROTEIN DIVIVA"],["Pfam%3APF05103","DivIVA protein"]]},{"id":"InterPro:IPR012761","l":"","na":3,"nb":2,"a":[["physiology/oxidative_stress_response.html","oxidative stress response"],["physiology/stress_response.html","stress response"],["physiology/viable_but_nonculturable_state.html","viable but nonculturable state"]],"b":[["HAMAP%3AMF_00959","RNA polymerase sigma factor RpoS [rpoS]"],["PROSITE%3APS00716","Sigma-70 factors family signature 2"]]},{"id":"InterPro:IPR050077","l":"","na":2,"nb":3,"a":[["genomics/prophage.html","prophage"],["physiology/sos_response.html","SOS response"]],"b":[["Pfam%3APF12840","Helix-turn-helix domain"],["Pfam%3APF01726","LexA DNA binding domain"],["PANTHER%3APTHR33516","LEXA REPRESSOR"]]},{"id":"METPO:1000602","l":"aerobic","na":3,"nb":2,"a":[["environment/aerobic.html","aerobic"],["environment/oxygen_preference.html","oxygen preference"],["physiology/aerobic_anoxygenic_phototrophy.html","aerobic anoxygenic phototrophy"]],"b":[["METPO%3A1000602","aerobic"],["METPO%3A1000606","obligately aerobic"]]},{"id":"METPO:1007080","l":"catalase test","na":2,"nb":3,"a":[["other/catalase_negative.html","catalase negative"],["other/catalase_test.html","catalase test"]],"b":[["METPO%3A1007084","catalase negative"],["METPO%3A1007083","catalase positive"],["METPO%3A1007080","catalase test"]]},{"id":"METPO:1007081","l":"oxidase test","na":2,"nb":3,"a":[["other/oxidase_negative.html","oxidase negative"],["other/oxidase_test.html","oxidase test"]],"b":[["METPO%3A1007086","oxidase negative"],["METPO%3A1007085","oxidase positive"],["METPO%3A1007081","oxidase test"]]},{"id":"METPO:1007082","l":"urease test","na":2,"nb":3,"a":[["other/urease_negative.html","urease negative"],["other/urease_test.html","urease test"]],"b":[["METPO%3A1007088","urease negative"],["METPO%3A1007087","urease positive"],["METPO%3A1007082","urease test"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":3,"nb":2,"a":[["environment/aerobic.html","aerobic"],["environment/obligately_aerobic.html","obligately aerobic"],["morphology/tetrad_arrangement.html","tetrad arrangement"]],"b":[["Pfam%3APF22538","Hexaprenyl diphosphate synthase, small subunit"],["PROSITE%3APS01066","Undecaprenyl pyrophosphate synthase family signature"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":2,"nb":3,"a":[["genomics/wadjet_system.html","Wadjet system"],["morphology/irregular_shaped.html","irregular shaped"]],"b":[["TED%3AAF-A0A142EAM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142EAM9-F1-model_v4_TED03"],["TED%3AAF-A0A1Q3DTY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3DTY6-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3DNE3-F1-model_v4_TED01","TED novel fold AF-A0A1Q3DNE3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:274","l":"Thermus thermophilus","na":2,"nb":3,"a":[["environment/thermophilic.html","thermophilic"],["morphology/cell_width.html","cell width"]],"b":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF01861","Branched-chain polyamine synthase A C-terminal domain"],["Pfam%3APF07736","Chorismate mutase type I"]]},{"id":"UniProt:Q51705","l":"","na":2,"nb":3,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"]],"b":[["Pfam%3APF18793","Nitrous oxide reductase propeller repeat 2"],["Pfam%3APF18764","Nitrous oxide reductase propeller repeat"],["proteintraitsmech%3ABIOLIP_CUA","CUA-binding site"]]},{"id":"GO:0019417","l":"sulfur oxidation","na":2,"nb":2,"a":[["physiology/lithotrophic.html","lithotrophic"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]],"b":[["GO%3A0019417","sulfur oxidation"],["NCBIfam%3ATIGR04484","sulfur oxidation c-type cytochrome SoxA"]]},{"id":"GO:0019649","l":"formaldehyde assimilation","na":2,"nb":2,"a":[["physiology/methanotrophic.html","methanotrophic"],["physiology/methylotrophic.html","methylotrophic"]],"b":[["GO%3A0019649","formaldehyde assimilation"],["NCBIfam%3ATIGR03128","3-hexulose-6-phosphate synthase"]]},{"id":"InterPro:IPR017402","l":"","na":2,"nb":2,"a":[["metabolism/proteorhodopsin_phototrophy.html","proteorhodopsin phototrophy"],["physiology/photoheterotrophic.html","photoheterotrophic"]],"b":[["Pfam%3APF01036","Bacteriorhodopsin-like protein"],["PROSITE%3APS00950","Bacterial rhodopsins signature 1"]]},{"id":"InterPro:IPR017761","l":"","na":2,"nb":2,"a":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["Pfam%3APF00394","Multicopper oxidase"],["PROSITE%3APS00080","Multicopper oxidases signature 2"]]},{"id":"InterPro:IPR023690","l":"","na":2,"nb":2,"a":[["morphology/bacillus_shaped.html","bacillus shaped"],["morphology/fusiform_shaped.html","fusiform shaped"]],"b":[["Pfam%3APF13413","Helix-turn-helix domain"],["HAMAP%3AMF_02017","Cytoskeleton protein RodZ [rodZ]"]]},{"id":"METPO:1000603","l":"anaerobic","na":2,"nb":2,"a":[["environment/anaerobic.html","anaerobic"],["environment/oxygen_preference.html","oxygen preference"]],"b":[["METPO%3A1000603","anaerobic"],["METPO%3A1000607","obligately anaerobic"]]},{"id":"METPO:1000607","l":"obligately anaerobic","na":2,"nb":2,"a":[["environment/obligately_anaerobic.html","obligately anaerobic"],["environment/strictly_anaerobic.html","strictly anaerobic"]],"b":[["METPO%3A1000607","obligately anaerobic"],["METPO%3A1000611","strictly anaerobic"]]},{"id":"METPO:1003002","l":"alkaliphilic","na":2,"nb":2,"a":[["environment/alkaphilic.html","alkaliphilic"],["environment/obligately_alkaphilic.html","obligately alkaliphilic"]],"b":[["METPO%3A1003002","alkaliphilic"],["METPO%3A1003004","obligately alkaliphilic"]]},{"id":"NCBITaxon:1232683","l":"Marinobacterium lacunae","na":2,"nb":2,"a":[["morphology/cell_length_medium.html","cell length medium"],["morphology/cell_width_large.html","cell width large"]],"b":[["TED%3AAF-A0A081FTJ9-F1-model_v4_TED01","TED novel fold AF-A0A081FTJ9-F1-model_v4_TED01"],["TED%3AAF-A0A081FX50-F1-model_v4_TED01","TED novel fold AF-A0A081FX50-F1-model_v4_TED01"]]},{"id":"GO:0046677","l":"response to antibiotic","na":1,"nb":7410,"a":[["physiology/antibiotic_resistance.html","antibiotic resistance"]],"b":[["UniProtKB-KW%3AKW-0046","Antibiotic resistance"],["GO%3A0071236","cellular response to antibiotic"],["GO%3A0072716","response to actinomycin D"],["GO%3A0046677","response to antibiotic"],["GO%3A0046678","response to bacteriocin"],["GO%3A0031001","response to brefeldin A"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii (strain ATCC 43067 / DSM 2661 / JAL-1 / JCM 10045 / NBRC 100440)","na":1,"nb":5181,"a":[["metabolism/methanogenesis.html","Methanogenesis"]],"b":[["EC%3A1.12.99.-","With other acceptors"],["EC%3A1.3.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.3.-.-","Acting on the CH-CH group of donors"],["EC%3A1.8.98.-","With other, known, acceptors"],["EC%3A1.97.1.-","Other oxidoreductases"],["EC%3A2.1.2.-","Hydroxymethyl-, formyl- and related transferases"]]},{"id":"GO:0016020","l":"membrane","na":1,"nb":3003,"a":[["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"]],"b":[["ComplexPortal%3ACPX-1813","1,3-beta-D-glucan synthase complex, FKS2-RHO1 variant"],["ComplexPortal%3ACPX-4313","Aliphatic sulfonate ABC transporter complex"],["ComplexPortal%3ACPX-4314","Arabinose ABC transporter complex"],["ComplexPortal%3ACPX-4318","Arginine ABC transporter complex, artI variant"],["ComplexPortal%3ACPX-4319","Arginine ABC transporter complex, artJ variant"],["ComplexPortal%3ACPX-6308","ATP10B-CDC50A P4-ATPase complex"]]},{"id":"GO:0005886","l":"plasma membrane","na":1,"nb":861,"a":[["environment/desiccation_tolerant.html","desiccation tolerant"]],"b":[["ComplexPortal%3ACPX-2838","3M complex"],["ComplexPortal%3ACPX-850","AHNAK - Annexin A2 - S100-A10 complex"],["ComplexPortal%3ACPX-6581","Alpha-beta T cell receptor complex, TRBC1 variant"],["ComplexPortal%3ACPX-6482","Alpha-beta T cell receptor complex, TRBC2 variant"],["ComplexPortal%3ACPX-2188","Amiloride-sensitive sodium channel complex, alpha-beta-gamma"],["ComplexPortal%3ACPX-3582","AMT1-1 - AMT1-3 heterotrimer, variant 1"]]},{"id":"CHEBI:28938","l":"ammonium","na":1,"nb":837,"a":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_28938","requires ammonium"],["EC%3A1.13.12.15","3,4-dihydroxyphenylalanine oxidative deaminase"],["EC%3A1.13.99.3","tryptophan 2'-dioxygenase"],["EC%3A1.14.11.37","kanamycin B dioxygenase"],["EC%3A1.14.12.1","anthranilate 1,2-dioxygenase (deaminating, decarboxylating)"],["EC%3A1.14.12.14","2-aminobenzenesulfonate 2,3-dioxygenase"]]},{"id":"GO:0016491","l":"oxidoreductase activity","na":1,"nb":695,"a":[["physiology/chemotrophic.html","chemotrophic"]],"b":[["GO%3A0047143","chlorate reductase activity"],["GO%3A0051213","dioxygenase activity"],["GO%3A0043364","glycyl-radical enzyme activating activity"],["GO%3A0004497","monooxygenase activity"],["GO%3A0050781","ortho-trichlorophenol reductive dehalogenase activity"],["GO%3A0016675","oxidoreductase activity, acting on a heme group of donors"]]},{"id":"GO:0003824","l":"catalytic activity","na":1,"nb":663,"a":[["upper/enzyme.html","enzyme"]],"b":[["GO%3A0140640","catalytic activity, acting on a nucleic acid"],["GO%3A0140096","catalytic activity, acting on a protein"],["GO%3A0003824","catalytic activity"],["GO%3A0009975","cyclase activity"],["GO%3A0160215","deacylase activity"],["GO%3A0032451","demethylase activity"]]},{"id":"GO:0071944","l":"cell periphery","na":1,"nb":440,"a":[["morphology/spiral_shaped.html","spiral shaped"]],"b":[["GO%3A0071944","cell periphery"],["PANTHER%3APTHR31468","1,3-BETA-GLUCANOSYLTRANSFERASE GAS1"],["PANTHER%3APTHR28145","12 KDA HEAT SHOCK PROTEIN"],["PANTHER%3APTHR42755","3-DEOXY-MANNO-OCTULOSONATE CYTIDYLYLTRANSFERASE"],["PANTHER%3APTHR46574","43 KDA RECEPTOR-ASSOCIATED PROTEIN OF THE SYNAPSE"],["PANTHER%3APTHR15182","A-KINASE ANCHOR PROTEIN 5-RELATED"]]},{"id":"GO:0005840","l":"ribosome","na":1,"nb":418,"a":[["physiology/dormancy.html","dormancy"]],"b":[["ComplexPortal%3ACPX-2854","Elongation Factor eEF1 complex, variant CAM1"],["ComplexPortal%3ACPX-425","Elongation Factor eEF1 complex, variant TEF4"],["ComplexPortal%3ACPX-427","Eukaryotic translation initiation factor 2 complex"],["ComplexPortal%3ACPX-430","Eukaryotic translation initiation factor 4F complex, variant TIF4631"],["ComplexPortal%3ACPX-431","Eukaryotic translation initiation factor 4F complex, variant TIF4632"],["ComplexPortal%3ACPX-1295","MKT1-PBP1 translation regulation complex"]]},{"id":"GO:0006260","l":"DNA replication","na":1,"nb":311,"a":[["genomics/gc_skew.html","GC skew"]],"b":[["ComplexPortal%3ACPX-6641","ASCC DNA alkylation repair complex"],["ComplexPortal%3ACPX-568","Chromatin assembly factor 1 complex"],["ComplexPortal%3ACPX-2671","CMG helicase complex"],["ComplexPortal%3ACPX-297","CMG helicase complex"],["ComplexPortal%3ACPX-4526","CMG helicase complex"],["ComplexPortal%3ACPX-4541","CMG helicase complex"]]},{"id":"GO:0008800","l":"beta-lactamase activity","na":1,"nb":311,"a":[["physiology/antibiotic_resistance.html","antibiotic resistance"]],"b":[["EC%3A3.5.2.6","beta-lactamase"],["RHEA%3A20401","a beta-lactam + H2O = a substituted beta-amino acid"],["GO%3A0008800","beta-lactamase activity"],["NCBIfam%3ANF038195","AAK family class A beta-lactamase"],["NCBIfam%3ANF000397","ACC family cephalosporin-hydrolyzing class C beta-lactamase"],["NCBIfam%3ANF000448","ACI family class A beta-lactamase"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":297,"a":[["physiology/dormancy.html","dormancy"]],"b":[["IDPO%3A0000002","disorder"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000045","phosphorylation display site"],["IDPO%3A0000059","self-inhibition"],["Pfam%3APF17837","4'-phosphopantetheinyl transferase N-terminal domain"]]},{"id":"GO:0006281","l":"DNA repair","na":1,"nb":272,"a":[["environment/radiotolerant.html","radiotolerant"]],"b":[["ComplexPortal%3ACPX-4426","BRCA1-B complex"],["ComplexPortal%3ACPX-4721","BRCA1-B complex"],["ComplexPortal%3ACPX-568","Chromatin assembly factor 1 complex"],["ComplexPortal%3ACPX-1959","HU complex, variant hupA"],["ComplexPortal%3ACPX-1958","HU complex, variant hupAB"],["ComplexPortal%3ACPX-863","INO80 chromatin remodeling complex"]]},{"id":"GO:0031090","l":"organelle membrane","na":1,"nb":270,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["GO%3A0098588","bounding membrane of organelle"],["GO%3A0005789","endoplasmic reticulum membrane"],["GO%3A0032580","Golgi cisterna membrane"],["GO%3A0110146","magnetosome membrane"],["GO%3A0031966","mitochondrial membrane"],["GO%3A0031965","nuclear membrane"]]},{"id":"GO:0016301","l":"kinase activity","na":1,"nb":246,"a":[["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["GO%3A0050515","4-(cytidine 5'-diphospho)-2-C-methyl-D-erythritol kinase activity"],["GO%3A0140383","4-hydroxytryptamine kinase activity"],["GO%3A0047590","5-dehydro-2-deoxygluconokinase activity"],["GO%3A0047336","5-methyldeoxycytidine-5'-phosphate kinase activity"],["GO%3A0008776","acetate kinase activity"],["GO%3A0047601","acetate kinase (diphosphate) activity"]]},{"id":"GO:0008152","l":"metabolic process","na":1,"nb":224,"a":[["metabolism/metabolism.html","metabolism"]],"b":[["GO%3A0006666","3-keto-sphinganine metabolic process"],["GO%3A0008291","acetylcholine metabolic process"],["GO%3A0006081","aldehyde metabolic process"],["GO%3A0019330","aldoxime metabolic process"],["GO%3A0009820","alkaloid metabolic process"],["GO%3A0000255","allantoin metabolic process"]]},{"id":"CHEBI:15740","l":"formate","na":1,"nb":173,"a":[["metabolism/syntrophy.html","Syntrophy"]],"b":[["EC%3A1.1.98.6","ribonucleoside-triphosphate reductase (formate)"],["EC%3A1.10.3.15","grixazone synthase"],["EC%3A1.13.11.41","2,4'-dihydroxyacetophenone dioxygenase"],["EC%3A1.13.11.53","acireductone dioxygenase (Ni(2+)-requiring)"],["EC%3A1.13.11.54","acireductone dioxygenase (Fe(2+)-requiring)"],["EC%3A1.13.11.72","2-hydroxyethylphosphonate dioxygenase"]]},{"id":"GO:0016791","l":"phosphatase activity","na":1,"nb":171,"a":[["physiology/naphthol_as_bi_phosphohydrolase_activity.html","naphthol-AS-BI-phosphohydrolase activity"]],"b":[["ComplexPortal%3ACPX-120","Prostatic acid phosphatase complex"],["ComplexPortal%3ACPX-121","Prostatic acid phosphatase complex"],["GO%3A0033885","10-hydroxy-9-(phosphonooxy)octadecanoate phosphatase activity"],["GO%3A0047538","2-carboxy-D-arabinitol-1-phosphatase activity"],["GO%3A0043716","2-hydroxy-3-keto-5-methylthiopentenyl-1-phosphate phosphatase activity"],["GO%3A0050532","2-phosphosulfolactate phosphatase activity"]]},{"id":"NCBITaxon:99287","l":"Salmonella typhimurium (strain LT2 / SGSC1412 / ATCC 700720)","na":1,"nb":167,"a":[["metabolism/tetrathionate_respiration.html","tetrathionate respiration"]],"b":[["Pfam%3APF16031","TonB polyproline region"],["Pfam%3APF13521","AAA domain"],["Pfam%3APF26341","tRNA 2-selenouridine synthase AAA domain"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"],["Pfam%3APF09317","Acyl-CoA dehydrogenase, C-terminal, bacterial type"],["Pfam%3APF06315","Isocitrate dehydrogenase kinase/phosphatase (AceK) kinase domain"]]},{"id":"GO:0015979","l":"photosynthesis","na":1,"nb":146,"a":[["metabolism/photosynthesis.html","photosynthesis"]],"b":[["GO%3A0015979","photosynthesis"],["NCBIfam%3ATIGR01337","allophycocyanin subunit beta"],["NCBIfam%3ATIGR03056","alpha/beta fold hydrolase BchO"],["NCBIfam%3ANF013497","Apocytochrome F, C-terminal"],["NCBIfam%3ANF014391","Bacteriochlorophyll A protein"],["NCBIfam%3ANF058502","C-phycocyanin alpha-cysteine-84 phycocyanobilin lyase subunit CpcE"]]},{"id":"NCBITaxon:71421","l":"Haemophilus influenzae (strain ATCC 51907 / DSM 11121 / KW20 / Rd)","na":1,"nb":133,"a":[["genomics/restriction_modification_system.html","restriction-modification system"]],"b":[["Pfam%3APF13521","AAA domain"],["Pfam%3APF13654","LonB-like, AAA domain"],["Pfam%3APF16326","ABC transporter C-terminal domain"],["Pfam%3APF13710","ACT domain"],["Pfam%3APF12633","Adenylate cyclase NT domain"],["Pfam%3APF26690","Adenylate cyclase, class-I, third domain"]]},{"id":"GO:0006457","l":"protein folding","na":1,"nb":129,"a":[["environment/temperature_range_high.html","temperature range high"]],"b":[["ComplexPortal%3ACPX-2156","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-2772","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-6030","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-2113","GroEL-GroES complex"],["ComplexPortal%3ACPX-1671","Prefoldin co-chaperone complex"],["ComplexPortal%3ACPX-2389","Prefoldin co-chaperone complex"]]},{"id":"GO:0030154","l":"cell differentiation","na":1,"nb":108,"a":[["morphology/heterocyst.html","heterocyst"]],"b":[["GO%3A0048657","anther wall tapetum cell differentiation"],["GO%3A0009557","antipodal cell differentiation"],["GO%3A1903498","bundle sheath cell differentiation"],["GO%3A0035051","cardiocyte differentiation"],["GO%3A0030154","cell differentiation"],["GO%3A0021533","cell differentiation in hindbrain"]]},{"id":"CHEBI:15343","l":"acetaldehyde","na":1,"nb":88,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"]],"b":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.5.5","alcohol dehydrogenase (quinone)"],["EC%3A1.1.99.36","alcohol dehydrogenase (nicotinoprotein)"],["EC%3A1.13.11.88","isoeugenol monooxygenase"],["EC%3A1.13.12.16","nitronate monooxygenase"],["EC%3A1.2.1.10","acetaldehyde dehydrogenase (acetylating)"]]},{"id":"GO:0009307","l":"DNA restriction-modification system","na":1,"nb":83,"a":[["genomics/restriction_modification_system.html","restriction-modification system"]],"b":[["ComplexPortal%3ACPX-5285","McrBC 5-methylcytosine-specific restriction endonuclease complex"],["ComplexPortal%3ACPX-5628","Type I restriction-modification EcoKI complex"],["GO%3A0009307","DNA restriction-modification system"],["NCBIfam%3ANF007277","5-methylcytosine-specific restriction endonuclease system specificity protein McrC"],["NCBIfam%3ATIGR02986","Alw26I/Eco31I/Esp3I family type II restriction endonuclease"],["NCBIfam%3ANF020756","AvaI/BsoBI family type II restriction endonuclease"]]},{"id":"CHEBI:15354","l":"choline","na":1,"nb":78,"a":[["environment/euryhaline.html","euryhaline"]],"b":[["EC%3A1.1.3.17","choline oxidase"],["EC%3A1.1.99.1","choline dehydrogenase"],["EC%3A1.14.15.7","choline monooxygenase"],["EC%3A2.3.1.6","choline O-acetyltransferase"],["EC%3A2.3.1.91","sinapoylglucose--choline O-sinapoyltransferase"],["EC%3A2.7.1.32","choline kinase"]]},{"id":"CHEBI:29806","l":"fumarate(2-)","na":1,"nb":76,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["EC%3A1.3.1.6","fumarate reductase (NADH)"],["EC%3A1.3.2.4","fumarate reductase (cytochrome)"],["EC%3A1.3.4.1","fumarate reductase (CoM/CoB)"],["EC%3A1.3.5.1","succinate dehydrogenase"],["EC%3A1.3.98.1","dihydroorotate oxidase (fumarate)"],["EC%3A3.7.1.14","2-hydroxy-6-oxonona-2,4-dienedioate hydrolase"]]},{"id":"GO:0004803","l":"transposase activity","na":1,"nb":73,"a":[["genomics/transposable_element.html","transposable element"]],"b":[["GO%3A0004803","transposase activity"],["NCBIfam%3ANF015365","IS1 family transposase"],["NCBIfam%3ANF033558","IS1 family transposase"],["NCBIfam%3ANF033542","IS110 family RNA-guided transposase"],["NCBIfam%3ANF033551","IS1182 family transposase"],["NCBIfam%3ANF033544","IS1249 family transposase"]]},{"id":"GO:0006413","l":"translational initiation","na":1,"nb":67,"a":[["genomics/codon_usage_bias.html","codon usage bias"]],"b":[["ComplexPortal%3ACPX-427","Eukaryotic translation initiation factor 2 complex"],["ComplexPortal%3ACPX-1831","Eukaryotic translation initiation factor 3 core complex"],["ComplexPortal%3ACPX-3482","Eukaryotic translation initiation factor 4E-Mxt complex"],["ComplexPortal%3ACPX-2666","Eukaryotic translation initiation factor 4F, EIF4A1 and EIF4G1 variant"],["ComplexPortal%3ACPX-5863","Eukaryotic translation initiation factor 4F, EIF4A1 and EIF4G1 variant"],["ComplexPortal%3ACPX-5635","Eukaryotic translation initiation factor 4F, EIF4A1 and EIF4G3 variant"]]},{"id":"GO:0006950","l":"response to stress","na":1,"nb":67,"a":[["physiology/stress_response.html","stress response"]],"b":[["GO%3A0033554","cellular response to stress"],["GO%3A0006952","defense response"],["GO%3A0033555","multicellular organismal response to stress"],["GO%3A0003299","muscle hypertrophy in response to stress"],["GO%3A0009271","phage shock"],["GO%3A0034059","response to anoxia"]]},{"id":"GO:0031012","l":"extracellular matrix","na":1,"nb":64,"a":[["ecology/biofilm_formation.html","biofilm formation"]],"b":[["ComplexPortal%3ACPX-461","155 kDa platelet multimerin complex"],["ComplexPortal%3ACPX-960","Collagen type II trimer"],["ComplexPortal%3ACPX-1749","Collagen type X trimer"],["ComplexPortal%3ACPX-2971","Collagen type X trimer"],["ComplexPortal%3ACPX-1750","Collagen type XI trimer variant 1"],["ComplexPortal%3ACPX-2975","Collagen type XI trimer variant 1"]]},{"id":"GO:0006289","l":"nucleotide-excision repair","na":1,"nb":60,"a":[["environment/uv_radiation_tolerant.html","UV radiation tolerant"]],"b":[["ComplexPortal%3ACPX-2757","CRL4-ERCC8 E3 ubiquitin ligase complex, CUL4A variant"],["ComplexPortal%3ACPX-2758","CRL4-ERCC8 E3 ubiquitin ligase complex, CUL4B variant"],["ComplexPortal%3ACPX-1837","CUL3-HRT1-ELC1-ELA1 ubiquitin ligase complex"],["ComplexPortal%3ACPX-478","ERCC1-XPF endonuclease complex"],["ComplexPortal%3ACPX-491","Ercc1-Xpf endonuclease complex"],["ComplexPortal%3ACPX-1659","General transcription factor TFIIH complex"]]},{"id":"InterPro:IPR000792","l":"Transcription regulator LuxR-like, C-terminal","na":1,"nb":59,"a":[["physiology/quorum_sensing.html","quorum sensing"]],"b":[["GO%3A0071111","cyclic-guanylate-specific phosphodiesterase activity"],["GO%3A0048031","trisaccharide binding"],["GO%3A1990451","cellular stress response to acidic pH"],["GO%3A0000023","maltose metabolic process"],["GO%3A0000160","phosphorelay signal transduction system"],["GO%3A0045913","positive regulation of carbohydrate metabolic process"]]},{"id":"CHEBI:17976","l":"","na":1,"nb":56,"a":[["metabolism/electron_transfer.html","Electron transfer"]],"b":[["EC%3A1.1.5.14","fructose 5-dehydrogenase"],["EC%3A1.1.5.2","quinoprotein glucose dehydrogenase (PQQ, quinone)"],["EC%3A1.1.5.3","glycerol-3-phosphate dehydrogenase"],["EC%3A1.1.5.5","alcohol dehydrogenase (quinone)"],["EC%3A1.10.3.11","ubiquinol oxidase (non-electrogenic)"],["EC%3A1.10.3.17","superoxide oxidase"]]},{"id":"GO:0006979","l":"response to oxidative stress","na":1,"nb":50,"a":[["physiology/oxidative_stress_response.html","oxidative stress response"]],"b":[["ComplexPortal%3ACPX-9082","19S-20S-PA28-alphabeta hybrid proteasome complex"],["ComplexPortal%3ACPX-9085","19S-20S-PA28-gamma hybrid proteasome complex"],["ComplexPortal%3ACPX-8806","20S proteasome complex"],["ComplexPortal%3ACPX-4862","Alkyl hydroperoxide reductase complex"],["ComplexPortal%3ACPX-8842","PA28-alphabeta double-capped 20S proteasome complex"],["ComplexPortal%3ACPX-9002","PA28-alphabeta single-capped 20S proteasome complex"]]},{"id":"CHEBI:16947","l":"citrate(3-)","na":1,"nb":49,"a":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"]],"b":[["EC%3A2.3.3.1","citrate (Si)-synthase"],["EC%3A2.3.3.16","citrate synthase (unknown stereospecificity)"],["EC%3A2.3.3.3","citrate (Re)-synthase"],["EC%3A2.3.3.8","ATP citrate synthase"],["EC%3A2.8.3.10","citrate CoA-transferase"],["EC%3A4.1.3.6","citrate (pro-3S)-lyase"]]},{"id":"CHEBI:16199","l":"urea","na":1,"nb":48,"a":[["physiology/urease_activity.html","urease activity"]],"b":[["EC%3A3.5.1.5","urease"],["EC%3A3.5.1.95","N-malonylurea hydrolase"],["EC%3A3.5.3.1","arginase"],["EC%3A3.5.3.10","D-arginase"],["EC%3A3.5.3.11","agmatinase"],["EC%3A3.5.3.14","amidinoaspartase"]]},{"id":"NCBITaxon:93061","l":"Staphylococcus aureus (strain NCTC 8325 / PS 47)","na":1,"nb":47,"a":[["physiology/catalase_activity.html","catalase activity"]],"b":[["IDPO%3A0000033","flexible linker"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF07694","5TMR of 5TMR-LYT"],["Pfam%3APF01757","Acyltransferase domain"],["Pfam%3APF18719","ArlS sensor domain"],["Pfam%3APF02216","B domain"]]},{"id":"CHEBI:22563","l":"","na":1,"nb":46,"a":[["environment/euryhaline.html","euryhaline"]],"b":[["TCDB%3A1.C.55","The Agrobacterial VirE2 Target Host Cell Membrane Anion Channel (VirE2) Family"],["TCDB%3A1.A.46","The Anion Channel-forming Bestrophin (Bestrophin) Family"],["TCDB%3A1.A.48","The Anion Channel Tweety (Tweety) Family"],["TCDB%3A2.A.31","The Anion Exchanger (AE) Family"],["TCDB%3A2.A.85","The Aromatic Acid Exporter (ArAE) Family"],["TCDB%3A2.A.45","The Arsenite-Antimonite (ArsB) Efflux Family"]]},{"id":"GO:0006313","l":"DNA transposition","na":1,"nb":46,"a":[["genomics/transposable_element.html","transposable element"]],"b":[["GO%3A0006313","DNA transposition"],["GO%3A0098038","non-replicative DNA transposition"],["GO%3A0098039","replicative DNA transposition"],["NCBIfam%3ANF015365","IS1 family transposase"],["NCBIfam%3ANF038385","IS66-like element accessory protein TnpA"],["NCBIfam%3ANF040815","site-specific tyrosine recombinase/integron integrase"]]},{"id":"GO:0042254","l":"ribosome biogenesis","na":1,"nb":44,"a":[["genomics/rrna_operon_copy_number.html","rRNA operon copy number"]],"b":[["ComplexPortal%3ACPX-8940","Ribosome biogenesis complex"],["GO%3A0042254","ribosome biogenesis"],["NCBIfam%3ANF012679","50S ribosomal protein L10"],["NCBIfam%3ANF016308","Gar1/Naf1 RNA binding region"],["NCBIfam%3ANF016057","nucleolar RNA-binding Nop10p family protein"],["NCBIfam%3ATIGR01575","ribosomal protein S18-alanine N-acetyltransferase"]]},{"id":"CHEBI:16480","l":"nitric oxide","na":1,"nb":43,"a":[["ecology/biofilm_formation.html","biofilm formation"]],"b":[["EC%3A1.14.12.17","nitric oxide dioxygenase"],["EC%3A1.14.13.39","nitric-oxide synthase (NADPH)"],["EC%3A1.14.14.47","nitric-oxide synthase (flavodoxin)"],["EC%3A1.14.15.41","L-tryptophan 4-nitrase"],["EC%3A1.14.15.42","L-tyrosine 3-nitrase"],["EC%3A1.7.1.14","nitric oxide reductase [NAD(P)(+), nitrous oxide-forming]"]]},{"id":"GO:0045271","l":"respiratory chain complex I","na":1,"nb":43,"a":[["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"]],"b":[["ComplexPortal%3ACPX-266","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-577","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-8628","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-8638","Mitochondrial respiratory chain complex I, testis-specific variant"],["ComplexPortal%3ACPX-243","Respiratory chain complex I"],["GO%3A0045271","respiratory chain complex I"]]},{"id":"CHEBI:29036","l":"copper(2+)","na":1,"nb":40,"a":[["environment/copper_tolerant.html","copper tolerant"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29036","requires copper(2+)"],["EC%3A1.1.9.1","alcohol dehydrogenase (azurin)"],["EC%3A1.16.3.4","cuproxidase"],["EC%3A1.17.9.1","4-methylphenol dehydrogenase (hydroxylating)"],["EC%3A1.17.9.2","(+)-pinoresinol hydroxylase"],["EC%3A1.20.9.1","arsenate reductase (azurin)"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima (strain ATCC 43589 / DSM 3109 / JCM 10099 / NBRC 100826 / MSB8)","na":1,"nb":39,"a":[["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"]],"b":[["Pfam%3APF02829","3H domain"],["Pfam%3APF13175","AAA ATPase domain"],["Pfam%3APF01958","Aspartate dehydrogenase, C-terminal"],["Pfam%3APF05448","Acetyl xylan esterase (AXE1)"],["Pfam%3APF04509","CheC-like family"],["Pfam%3APF13690","Chemotaxis phosphatase CheX"]]},{"id":"CHEBI:17272","l":"propionate","na":1,"nb":34,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["EC%3A1.3.1.125","acrylate reductase"],["EC%3A2.7.2.15","propionate kinase"],["EC%3A2.8.3.1","propionate CoA-transferase"],["EC%3A2.8.3.27","propanoyl-CoA:succinate CoA transferase"],["EC%3A4.1.3.32","2,3-dimethylmalate lyase"],["EC%3A6.2.1.13","acetate--CoA ligase (ADP-forming)"]]},{"id":"GO:0003674","l":"molecular_function","na":1,"nb":34,"a":[["upper/biological_process.html","biological process"]],"b":[["GO%3A0016209","antioxidant activity"],["GO%3A0140657","ATP-dependent activity"],["GO%3A0005488","binding"],["GO%3A0038024","cargo receptor activity"],["GO%3A0003824","catalytic activity"],["GO%3A0003774","cytoskeletal motor activity"]]},{"id":"CHEBI:17968","l":"butyrate","na":1,"nb":33,"a":[["ecology/gut_associated.html","gut-associated"]],"b":[["EC%3A1.3.1.31","2-enoate reductase"],["EC%3A2.3.1.315","succinyl-CoA:cyclohexane-1-carboxylate CoA transferase"],["EC%3A2.7.2.7","butyrate kinase"],["EC%3A2.8.3.9","butyrate--acetoacetate CoA-transferase"],["EC%3A3.1.1.51","phorbol-diester hydrolase"],["EC%3A3.7.1.7","beta-diketone hydrolase"]]},{"id":"GO:0009522","l":"photosystem I","na":1,"nb":33,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"]],"b":[["GO%3A0030093","chloroplast photosystem I"],["GO%3A0009522","photosystem I"],["GO%3A0030094","plasma membrane-derived photosystem I"],["NCBIfam%3ANF014449","photosystem I assembly protein Ycf4"],["NCBIfam%3ATIGR01336","photosystem I core protein PsaB"],["NCBIfam%3ANF014578","photosystem I reaction center subunit II"]]},{"id":"CHEBI:29748","l":"","na":1,"nb":30,"a":[["morphology/green_pigmented.html","green pigmented"]],"b":[["EC%3A2.6.1.123","4-amino-4-deoxychorismate synthase (2-amino-4-deoxychorismate-forming)"],["EC%3A2.6.1.85","aminodeoxychorismate synthase"],["EC%3A2.6.1.86","2-amino-4-deoxychorismate synthase"],["EC%3A3.3.2.13","chorismatase"],["EC%3A4.1.3.27","anthranilate synthase"],["EC%3A4.1.3.40","chorismate lyase"]]},{"id":"CHEBI:24636","l":"","na":1,"nb":28,"a":[["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"]],"b":[["TCDB%3A3.A.4","The Arsenite-Antimonite (ArsAB) Efflux Family"],["TCDB%3A2.A.61","The C4-dicarboxylate Uptake C (DcuC) Family"],["TCDB%3A2.A.106","The Ca2+:H+ Antiporter-2 (CaCA2) Family"],["TCDB%3A1.A.110","The Channel-forming Otopetrin (OTOP) Family"],["TCDB%3A9.A.14","The G-protein-coupled receptor (GPCR) Family"],["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"]]},{"id":"GO:0004565","l":"beta-galactosidase activity","na":1,"nb":28,"a":[["physiology/beta_galactosidase_activity.html","beta-galactosidase activity"]],"b":[["EC%3A3.2.1.23","beta-galactosidase"],["GO%3A0004565","beta-galactosidase activity"],["GO%3A0033943","galactan 1,3-beta-galactosidase activity"],["NCBIfam%3ANF041004","beta-galactosidase BgaS"],["NCBIfam%3ANF041462","beta-galactosidase GalA"],["NCBIfam%3ANF041463","beta-galactosidase GalB"]]},{"id":"GO:0046148","l":"pigment biosynthetic process","na":1,"nb":27,"a":[["morphology/pigmentation.html","pigmentation"]],"b":[["GO%3A0120577","1,2-dehydro-N-acetyldopamine biosynthetic process"],["GO%3A0120576","1,2-dehydro-N-beta-alanyldopamine biosynthetic process"],["GO%3A0009718","anthocyanin-containing compound biosynthetic process"],["GO%3A0051551","aurone biosynthetic process"],["GO%3A0016117","carotenoid biosynthetic process"],["GO%3A0015995","chlorophyll biosynthetic process"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":1,"nb":26,"a":[["morphology/heterocyst.html","heterocyst"]],"b":[["Pfam%3APF27270","Alr1449"],["Pfam%3APF27301","Alr2735 N-terminal domain"],["Pfam%3APF27288","Alr2735"],["Pfam%3APF21571","Arginine dihydrolase ArgZ-like, C-terminal, first region"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF13205","Bacterial Ig-like domain"]]},{"id":"GO:0000910","l":"cytokinesis","na":1,"nb":24,"a":[["morphology/cell_length.html","cell length"]],"b":[["ComplexPortal%3ACPX-24856","GNAI1-RGS14, Gi-signalling regulatory complex"],["GO%3A0061639","Cdv-dependent cytokinesis"],["GO%3A0000911","cytokinesis by cell plate formation"],["GO%3A0000910","cytokinesis"],["GO%3A0061640","cytoskeleton-dependent cytokinesis"],["GO%3A0043093","FtsZ-dependent cytokinesis"]]},{"id":"GO:0006783","l":"heme biosynthetic process","na":1,"nb":24,"a":[["physiology/catalase_activity.html","catalase activity"]],"b":[["ComplexPortal%3ACPX-8302","ABCB10-ABCB7-FECH ABC transporter"],["GO%3A0006784","heme A biosynthetic process"],["GO%3A0006785","heme B biosynthetic process"],["GO%3A0006783","heme biosynthetic process"],["GO%3A0006786","heme C biosynthetic process"],["GO%3A0048034","heme O biosynthetic process"]]},{"id":"GO:0031412","l":"gas vesicle organization","na":1,"nb":24,"a":[["morphology/gas_vesicle.html","gas vesicle"]],"b":[["GO%3A0031412","gas vesicle organization"],["NCBIfam%3ANF041667","gas vesicle accessory protein GvpU"],["NCBIfam%3ANF046092","gas vesicle protein GvpA"],["NCBIfam%3ANF052351","gas vesicle protein GvpF"],["NCBIfam%3ANF045779","gas vesicle protein GvpG"],["NCBIfam%3ANF046090","gas vesicle protein GvpJ"]]},{"id":"CHEBI:24996","l":"lactate","na":1,"nb":23,"a":[["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]],"b":[["EC%3A1.1.1.436","lactate dehydrogenase (NAD(+),ferredoxin)"],["EC%3A3.5.1.124","protein deglycase"],["RHEA%3A57300","an N(2)-(1-hydroxy-2-oxopropyl)-2'-deoxyguanosine in DNA + H2O = a 2'-deoxyguanosine in DNA + lactate + H(+)"],["RHEA%3A57288","an N(2)-(1-hydroxy-2-oxopropyl)-guanosine in RNA + H2O = a guanosine in RNA + lactate + H(+)"],["RHEA%3A46964","lactate + 2 reduced [2Fe-2S]-[ferredoxin] + 2 NAD(+) = 2 oxidized [2Fe-2S]-[ferredoxin] + pyruvate + 2 NADH"],["RHEA%3A57244","N(2)-(1-hydroxy-2-oxopropyl)-dGTP + H2O = lactate + dGTP + H(+)"]]},{"id":"CHEBI:29242","l":"","na":1,"nb":23,"a":[["environment/arsenic_tolerant.html","arsenic tolerant"]],"b":[["EC%3A1.20.2.1","arsenate reductase (cytochrome c)"],["EC%3A1.20.4.1","arsenate reductase (glutathione/glutaredoxin)"],["EC%3A1.20.4.3","mycoredoxin"],["EC%3A1.20.4.4","arsenate reductase (thioredoxin)"],["EC%3A1.20.9.1","arsenate reductase (azurin)"],["EC%3A1.20.99.1","arsenate reductase (donor)"]]},{"id":"GO:0004563","l":"beta-N-acetylhexosaminidase activity","na":1,"nb":23,"a":[["physiology/beta_n_acetylhexosaminidase_activity.html","beta-N-acetylhexosaminidase activity"]],"b":[["EC%3A3.2.1.52","beta-N-acetylhexosaminidase"],["ComplexPortal%3ACPX-502","Beta-hexosaminidase A complex"],["ComplexPortal%3ACPX-689","Beta-hexosaminidase A complex"],["ComplexPortal%3ACPX-686","Beta-hexosaminidase B complex"],["ComplexPortal%3ACPX-690","Beta-hexosaminidase B complex"],["ComplexPortal%3ACPX-687","Beta-hexosaminidase S complex"]]},{"id":"GO:0008843","l":"endochitinase activity","na":1,"nb":23,"a":[["metabolism/biopolymer_degradation.html","biopolymer degradation"]],"b":[["EC%3A3.2.1.14","chitinase"],["GO%3A0008843","endochitinase activity"],["MCSA%3A819","chitinase C"],["MCSA%3A478","chitinase (GH18, Class II)"],["MCSA%3A817","chitinase (GH18, class II)"],["MCSA%3A475","chitinase (GH19, Class II)"]]},{"id":"GO:0009847","l":"spore germination","na":1,"nb":23,"a":[["physiology/spore_germination.html","spore germination"]],"b":[["GO%3A0120164","conidium germination"],["GO%3A0075226","encysted zoospore germination"],["GO%3A0009847","spore germination"],["proteintraitsmech%3ASEED_SUBSYSTEM_Spore_germination","Spore germination"],["NCBIfam%3ATIGR00912","endospore germination permease"],["NCBIfam%3ATIGR02887","Ger(x)C family spore germination protein"]]},{"id":"NCBITaxon:266834","l":"Rhizobium meliloti (strain 1021)","na":1,"nb":23,"a":[["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"]],"b":[["Pfam%3APF13279","Thioesterase-like superfamily"],["Pfam%3APF26956","ACR family N-terminal ACT domain"],["Pfam%3APF27143","Atu0565 family"],["Pfam%3APF27488","BioS helical-like domain"],["Pfam%3APF05853","beta-keto acid cleavage enzyme"],["Pfam%3APF13746","4Fe-4S dicluster domain"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":1,"nb":23,"a":[["ecology/biosafety_level_3.html","biosafety level 3"]],"b":[["Pfam%3APF09255","Caf1 Capsule antigen"],["Pfam%3APF02611","CDP-diacylglycerol pyrophosphatase"],["Pfam%3APF07411","Domain of unknown function (DUF1508)"],["Pfam%3APF05171","Haemin-degrading HemS.ChuX domain"],["Pfam%3APF21500","DNA polymerase III subunit delta', AAA+ ATPase lid domain"],["Pfam%3APF11004","3-deoxy-D-manno-oct-2-ulosonic acid (Kdo) hydroxylase"]]},{"id":"CHEBI:27547","l":"zeaxanthin","na":1,"nb":22,"a":[["morphology/orange_pigmented.html","orange pigmented"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_27547","requires zeaxanthin"],["EC%3A1.13.11.65","carotenoid isomerooxygenase"],["EC%3A1.13.11.84","crocetin dialdehyde synthase"],["EC%3A1.14.15.21","zeaxanthin epoxidase"],["EC%3A1.14.15.24","beta-carotene 3-hydroxylase"],["EC%3A1.14.99.64","zeaxanthin 4-ketolase"]]},{"id":"GO:0003341","l":"cilium movement","na":1,"nb":21,"a":[["ecology/soil_dwelling.html","soil-dwelling"]],"b":[["ComplexPortal%3ACPX-8086","Nexin-dynein regulatory complex"],["ComplexPortal%3ACPX-2626","Outer dynein arm-docking complex"],["ComplexPortal%3ACPX-8161","Radial spoke complex, ciliiar variant"],["ComplexPortal%3ACPX-8163","Radial spoke complex, ciliiar variant"],["ComplexPortal%3ACPX-8162","Radial spoke complex, flagellar variant"],["GO%3A0003341","cilium movement"]]},{"id":"NCBITaxon:243230","l":"Deinococcus radiodurans (strain ATCC 13939 / DSM 20539 / JCM 16871 / CCUG 27074 / LMG 4051 / NBRC 15346 / NCIMB 9279 / VKM B-1422 / R1)","na":1,"nb":21,"a":[["environment/radiotolerant.html","radiotolerant"]],"b":[["Pfam%3APF07282","Cas12f1-like, TNB domain"],["Pfam%3APF26517","DNA damage response protein D family"],["Pfam%3APF07733","Bacterial DNA polymerase III alpha NTPase domain"],["Pfam%3APF17657","Bacterial DNA polymerase III alpha subunit finger domain"],["Pfam%3APF11638","DnaA N-terminal domain"],["Pfam%3APF09348","Domain of unknown function (DUF1990)"]]},{"id":"CHEBI:18420","l":"","na":1,"nb":20,"a":[["morphology/cell_width_small.html","cell width small"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18420","requires magnesium(2+)"],["EC%3A4.99.1.10","magnesium dechelatase"],["EC%3A6.6.1.1","magnesium chelatase"],["EC%3A7.2.2.14","P-type Mg(2+) transporter"],["RHEA%3A52788","chlorophyll a + 2 H(+) = pheophytin a + Mg(2+)"],["RHEA%3A52792","chlorophyllide a + 2 H(+) = pheophorbide a + Mg(2+)"]]},{"id":"GO:0000725","l":"recombinational repair","na":1,"nb":20,"a":[["genomics/ploidy.html","ploidy"]],"b":[["ComplexPortal%3ACPX-2197","Exodeoxyribonuclease V complex"],["ComplexPortal%3ACPX-1732","Ku70:Ku80 complex"],["ComplexPortal%3ACPX-1993","Ku70:Ku80 complex"],["ComplexPortal%3ACPX-2047","Ku70:Ku80 complex"],["ComplexPortal%3ACPX-2048","Ku70:Ku80 complex"],["ComplexPortal%3ACPX-5124","RuvAB Holliday junction DNA helicase complex"]]},{"id":"GO:0003989","l":"acetyl-CoA carboxylase activity","na":1,"nb":20,"a":[["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"]],"b":[["EC%3A6.4.1.2","acetyl-CoA carboxylase"],["RHEA%3A11308","hydrogencarbonate + acetyl-CoA + ATP = malonyl-CoA + ADP + phosphate + H(+)"],["ComplexPortal%3ACPX-3206","Acetyl-CoA carboxylase complex"],["GO%3A0003989","acetyl-CoA carboxylase activity"],["NCBIfam%3ANF015228","Acetyl co-enzyme A carboxylase carboxyltransferase-like"],["NCBIfam%3ATIGR00531","acetyl-CoA carboxylase biotin carboxyl carrier protein"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":1,"nb":20,"a":[["morphology/s_layer.html","S-layer"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF27529","AMPT"],["Pfam%3APF24856","L-arabinose isomerase central domain"],["Pfam%3APF02610","L-arabinose isomerase N-terminal domain"],["Pfam%3APF11762","L-arabinose isomerase C-terminal domain"],["Pfam%3APF17727","CtsR C-terminal dimerization domain"]]},{"id":"CHEBI:17057","l":"cellobiose","na":1,"nb":19,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["EC%3A1.1.3.5","hexose oxidase"],["EC%3A1.1.99.18","cellobiose dehydrogenase (acceptor)"],["EC%3A2.4.1.20","cellobiose phosphorylase"],["EC%3A2.7.1.205","protein-N(pi)-phosphohistidine--D-cellobiose phosphotransferase"],["EC%3A2.7.1.85","beta-glucoside kinase"],["EC%3A5.1.3.11","cellobiose epimerase"]]},{"id":"GO:0003993","l":"acid phosphatase activity","na":1,"nb":19,"a":[["physiology/acid_phosphatase_activity.html","acid phosphatase activity"]],"b":[["EC%3A3.1.3.2","acid phosphatase"],["ComplexPortal%3ACPX-120","Prostatic acid phosphatase complex"],["ComplexPortal%3ACPX-121","Prostatic acid phosphatase complex"],["GO%3A0003993","acid phosphatase activity"],["NCBIfam%3ATIGR01672","acid phosphatase AphA"],["NCBIfam%3ANF045654","acid phosphatase PhoC"]]},{"id":"GO:0004559","l":"alpha-mannosidase activity","na":1,"nb":19,"a":[["physiology/alpha_mannosidase_activity.html","alpha-mannosidase activity"]],"b":[["EC%3A3.2.1.24","alpha-mannosidase"],["GO%3A0004559","alpha-mannosidase activity"],["GO%3A0004569","glycoprotein endo-alpha-1,2-mannosidase activity"],["GO%3A0033915","mannan 1,2-(1,3)-alpha-mannosidase activity"],["GO%3A0008496","mannan endo-1,6-alpha-mannosidase activity"],["GO%3A0033941","mannan exo-1,2-1,6-alpha-mannosidase activity"]]},{"id":"GO:0008150","l":"biological_process","na":1,"nb":19,"a":[["upper/biological_process.html","biological process"]],"b":[["GO%3A0044848","biological phase"],["GO%3A0008150","biological_process"],["GO%3A0044419","biological process involved in interspecies interaction between organisms"],["GO%3A0051703","biological process involved in intraspecies interaction between organisms"],["GO%3A0065007","biological regulation"],["GO%3A0009987","cellular process"]]},{"id":"GO:0019290","l":"siderophore biosynthetic process","na":1,"nb":19,"a":[["physiology/siderophore_production.html","siderophore production"]],"b":[["GO%3A0140614","1,8-dihydroxynaphthalene-melanin biosynthetic process"],["GO%3A0042861","achromobactin biosynthetic process"],["GO%3A0019540","catechol-containing siderophore biosynthetic process"],["GO%3A0042858","chrysobactin biosynthetic process"],["GO%3A0019539","hydroxymate-containing siderophore biosynthetic process"],["GO%3A0042864","pyochelin biosynthetic process"]]},{"id":"GO:0043885","l":"anaerobic carbon-monoxide dehydrogenase activity","na":1,"nb":19,"a":[["physiology/carboxydotrophic.html","carboxydotrophic"]],"b":[["EC%3A1.2.7.4","anaerobic carbon-monoxide dehydrogenase"],["RHEA%3A21040","CO + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O = 2 reduced [2Fe-2S]-[ferredoxin] + CO2 + 2 H(+)"],["GO%3A0043885","anaerobic carbon-monoxide dehydrogenase activity"],["NCBIfam%3ATIGR02416","aerobic carbon-monoxide dehydrogenase large subunit"],["NCBIfam%3ATIGR01702","anaerobic carbon-monoxide dehydrogenase catalytic subunit"],["NCBIfam%3ATIGR00314","CO dehydrogenase/acetyl-CoA synthase complex subunit alpha"]]},{"id":"GO:0045277","l":"respiratory chain complex IV","na":1,"nb":19,"a":[["physiology/oxidase_activity.html","oxidase activity"]],"b":[["ComplexPortal%3ACPX-1721","Mitochondrial respiratory chain complex IV, COX5A variant"],["ComplexPortal%3ACPX-1722","Mitochondrial respiratory chain complex IV, COX5B variant"],["ComplexPortal%3ACPX-6123","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-8620","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-9641","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-8621","Mitochondrial respiratory chain complex IV, testis-specific variant"]]},{"id":"GO:0045493","l":"xylan catabolic process","na":1,"nb":19,"a":[["metabolism/xylan_degradation.html","xylan degradation"]],"b":[["GO%3A2000888","arabinoxylan-containing compound catabolic process"],["GO%3A2000886","glucuronoxylan catabolic process"],["GO%3A0045493","xylan catabolic process"],["NCBIfam%3ANF042968","acetylxylan esterase AxeA1"],["NCBIfam%3ANF041579","beta-xylosidase"],["NCBIfam%3ANF042969","bifunctional acetylxylan esterase/glucomannan deacetylase AxeC2"]]},{"id":"CHEBI:16838","l":"polyphosphate","na":1,"nb":18,"a":[["environment/zinc_tolerant.html","zinc tolerant"]],"b":[["EC%3A2.7.1.63","polyphosphate--glucose phosphotransferase"],["EC%3A2.7.4.1","ATP-polyphosphate phosphotransferase"],["EC%3A2.7.4.17","3-phosphoglyceroyl-phosphate--polyphosphate phosphotransferase"],["EC%3A2.7.4.20","dolichyl-diphosphate--polyphosphate phosphotransferase"],["EC%3A2.7.4.33","AMP-polyphosphate phosphotransferase"],["EC%3A2.7.4.34","GDP-polyphosphate phosphotransferase"]]},{"id":"CHEBI:16169","l":"","na":1,"nb":17,"a":[["morphology/pigmentation.html","pigmentation"]],"b":[["EC%3A1.13.11.27","4-hydroxyphenylpyruvate dioxygenase"],["EC%3A1.13.11.5","homogentisate 1,2-dioxygenase"],["EC%3A1.14.13.18","4-hydroxyphenylacetate 1-monooxygenase"],["EC%3A1.14.13.63","3-hydroxyphenylacetate 6-hydroxylase"],["EC%3A2.5.1.115","homogentisate phytyltransferase"],["EC%3A2.5.1.116","homogentisate geranylgeranyltransferase"]]},{"id":"GO:0051701","l":"biological process involved in interaction with host","na":1,"nb":17,"a":[["ecology/plant_pathogen.html","plant pathogen"]],"b":[["GO%3A0044002","acquisition of nutrients from host"],["GO%3A0044406","adhesion of symbiont to host"],["GO%3A0051701","biological process involved in interaction with host"],["GO%3A0035891","exit from host cell"],["GO%3A0044001","migration in host"],["GO%3A0075136","response to host"]]},{"id":"GO:0106435","l":"carboxylesterase activity","na":1,"nb":17,"a":[["physiology/carboxylesterase_activity.html","carboxylesterase activity"]],"b":[["EC%3A3.1.1.1","carboxylesterase"],["RHEA%3A63052","1-O-methyl-(5Z,8Z,11Z,14Z)-eicosatetraenoate + H2O = methanol + (5Z,8Z,11Z,14Z)-eicosatetraenoate + H(+)"],["RHEA%3A21164","a carboxylic ester + H2O = an alcohol + a carboxylate + H(+)"],["RHEA%3A59388","a fatty acid ester + H2O = an aliphatic alcohol + a fatty acid + H(+)"],["RHEA%3A50148","a fatty acid ethyl ester + H2O = ethanol + a fatty acid + H(+)"],["RHEA%3A31779","an all-trans-retinyl ester + H2O = 13-cis-retinol + a fatty acid + H(+)"]]},{"id":"GO:0110143","l":"magnetosome","na":1,"nb":17,"a":[["morphology/magnetosome.html","magnetosome"]],"b":[["GO%3A0110143","magnetosome"],["NCBIfam%3ANF040997","liposome tubulation protein MamY"],["NCBIfam%3ANF040917","magnetic particle specific iron-binding protein Mms6"],["NCBIfam%3ANF040986","magnetosome biogenesis transporter MamH"],["NCBIfam%3ANF040989","magnetosome biogenesis transporter MamN"],["NCBIfam%3ANF040998","magnetosome biogenesis transporter MamZ"]]},{"id":"UniProt:P35149","l":"","na":1,"nb":17,"a":[["morphology/spore_shaped.html","spore shaped"]],"b":[["EC%3A3.6.1.-","In phosphorus-containing anhydrides"],["GO%3A0043595","endospore cortex"],["GO%3A0042601","endospore-forming forespore"],["GO%3A0031160","spore wall"],["GO%3A0000270","peptidoglycan metabolic process"],["GO%3A0009847","spore germination"]]},{"id":"CHEBI:48828","l":"cobalt(2+)","na":1,"nb":16,"a":[["environment/cobalt_tolerant.html","cobalt tolerant"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_48828","requires cobalt(2+)"],["EC%3A1.16.99.1","[Co(II) methylated amine-specific corrinoid protein] reductase"],["EC%3A4.99.1.3","sirohydrochlorin cobaltochelatase"],["EC%3A6.6.1.2","cobaltochelatase"],["RHEA%3A65832","2 Co(II)-[dimethylamine-specific corrinoid protein] + AH2 + ATP + H2O = 2 Co(I)-[dimethylamine-specific corrinoid protein] + A + ADP + phosphate + 3 H(+)"],["RHEA%3A65816","2 Co(II)-[methylamine-specific corrinoid protein] + AH2 + ATP + H2O = 2 Co(I)-[methylamine-specific corrinoid protein] + A + ADP + phosphate + 3 H(+)"]]},{"id":"GO:0004556","l":"alpha-amylase activity","na":1,"nb":16,"a":[["metabolism/starch_degradation.html","starch degradation"]],"b":[["EC%3A3.2.1.1","alpha-amylase"],["GO%3A0004556","alpha-amylase activity"],["NCBIfam%3ANF041321","alpha-amylase MalA"],["NCBIfam%3ANF006971","alpha-amylase"],["NCBIfam%3ANF007051","alpha-amylase"],["NCBIfam%3ANF007052","alpha-amylase"]]},{"id":"GO:0004566","l":"beta-glucuronidase activity","na":1,"nb":16,"a":[["physiology/beta_glucuronidase_activity.html","beta-glucuronidase activity"]],"b":[["EC%3A3.2.1.31","beta-glucuronidase"],["RHEA%3A76111","4-methylumbelliferone beta-D-glucuronate + H2O = 4-methylumbelliferone + D-glucuronate"],["RHEA%3A17633","a beta-D-glucuronoside + H2O = D-glucuronate + an alcohol"],["RHEA%3A30475","oroxylin A 7-O-beta-D-glucuronate + H2O = oroxylin A + D-glucuronate + H(+)"],["RHEA%3A28326","wogonin 7-O-beta-D-glucuronate + H2O = wogonin + D-glucuronate + H(+)"],["GO%3A0004566","beta-glucuronidase activity"]]},{"id":"InterPro:IPR002105","l":"Dockerin type I repeat","na":1,"nb":16,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["Pfam%3APF17996","Carbohydrate esterase 2 N-terminal"],["Pfam%3APF02927","Cellulase N-terminal ig-like domain"],["Pfam%3APF00963","Cohesin domain"],["Pfam%3APF00404","Dockerin type I domain"],["Pfam%3APF07554","FIVAR domain"]]},{"id":"GO:0045273","l":"respiratory chain complex II (succinate dehydrogenase)","na":1,"nb":15,"a":[["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"]],"b":[["ComplexPortal%3ACPX-561","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-562","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-564","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-565","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-566","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-8622","Mitochondrial respiratory chain complex II"]]},{"id":"GO:0045490","l":"pectin catabolic process","na":1,"nb":15,"a":[["metabolism/pectin_degradation.html","pectin degradation"]],"b":[["GO%3A0045490","pectin catabolic process"],["NCBIfam%3ANF002091","5-dehydro-4-deoxy-D-glucuronate isomerase"],["NCBIfam%3ANF025934","oligogalacturonate lyase family protein"],["NCBIfam%3ANF041904","pectate disaccharide-lyase PelW"],["NCBIfam%3ANF041903","pectate disaccharide-lyase PelX"],["NCBIfam%3ANF041898","pectate lyase PelI"]]},{"id":"InterPro:IPR028629","l":"","na":1,"nb":15,"a":[["genomics/crispr_cas_system.html","CRISPR-Cas system"]],"b":[["Pfam%3APF18470","Cas9 alpha-helical lobe domain"],["Pfam%3APF17893","CRISPR-associated endonuclease Cas9 beta-hairpin domain"],["Pfam%3APF18525","Cas9 C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"],["Pfam%3APF16595","PAM-interacting domain of CRISPR-associated endonuclease Cas9"],["Pfam%3APF18070","CRISPR-Cas9 PI domain"]]},{"id":"METPO:1000802","l":"Anaerobic respiration","na":15,"nb":1,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/arsenate_respiration.html","arsenate respiration"],["metabolism/chlorate_respiration.html","chlorate respiration"],["metabolism/dimethyl_sulfoxide_respiration.html","dimethyl sulfoxide respiration"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"]],"b":[["METPO%3A1000802","Anaerobic respiration"]]},{"id":"METPO:1002005","l":"Fermentation","na":15,"nb":1,"a":[["metabolism/acetone_butanol_ethanol_fermentation.html","acetone-butanol-ethanol fermentation"],["metabolism/butanediol_fermentation.html","2,3-butanediol fermentation"],["metabolism/butyric_acid_fermentation.html","butyric acid fermentation"],["metabolism/citrate_fermentation.html","citrate fermentation"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"]],"b":[["METPO%3A1002005","Fermentation"]]},{"id":"UniProt:P09373","l":"","na":1,"nb":15,"a":[["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"]],"b":[["EC%3A2.3.1.54","formate C-acetyltransferase"],["RHEA%3A11844","formate + acetyl-CoA = pyruvate + CoA"],["GO%3A0008861","formate C-acetyltransferase activity"],["NCBIfam%3ATIGR01255","formate C-acetyltransferase"],["InterPro%3AIPR019777","Formate C-acetyltransferase glycine radical, conserved site"],["CDD%3Acd01678","PFL1"]]},{"id":"GO:0004629","l":"C-type glycerophospholipase activity","na":1,"nb":14,"a":[["physiology/lecithinase_activity.html","lecithinase activity"]],"b":[["GO%3A0004629","C-type glycerophospholipase activity"],["GO%3A0140335","GPI anchor phospholipase C activity"],["GO%3A0140324","lysophospholipase C activity"],["GO%3A0034480","phosphatidylcholine phospholipase C activity"],["GO%3A0034479","phosphatidylglycerol phospholipase C activity"],["GO%3A0004435","phosphatidylinositol-4,5-bisphosphate phospholipase C activity"]]},{"id":"GO:0009408","l":"response to heat","na":1,"nb":14,"a":[["physiology/heat_shock_response.html","heat shock response"]],"b":[["ComplexPortal%3ACPX-4887","DNA-directed RNA polymerase holoenzyme complex, SigmaH variant"],["ComplexPortal%3ACPX-636","ISW1b chromatin remodeling complex"],["GO%3A0034605","cellular response to heat"],["GO%3A0036168","filamentous growth of a population of unicellular organisms in response to heat"],["GO%3A0010286","heat acclimation"],["GO%3A0009408","response to heat"]]},{"id":"GO:0015891","l":"siderophore transport","na":1,"nb":14,"a":[["physiology/siderophore_production.html","siderophore production"]],"b":[["GO%3A0042935","achromobactin transport"],["GO%3A0042932","chrysobactin transport"],["GO%3A0042930","enterobactin transport"],["GO%3A0044718","siderophore transmembrane transport"],["GO%3A0015891","siderophore transport"],["NCBIfam%3ANF007349","catecholate siderophore receptor Fiu"]]},{"id":"GO:0090599","l":"alpha-glucosidase activity","na":1,"nb":14,"a":[["physiology/alpha_glucosidase_activity.html","alpha-glucosidase activity"]],"b":[["GO%3A0004558","alpha-1,4-glucosidase activity"],["GO%3A0090599","alpha-glucosidase activity"],["GO%3A0004135","amylo-alpha-1,6-glucosidase activity"],["GO%3A0033933","branched-dextran exo-1,2-alpha-glucosidase activity"],["GO%3A0106407","Glc2Man9GlcNAc2 oligosaccharide glucosidase activity"],["GO%3A0004573","Glc3Man9GlcNAc2 oligosaccharide glucosidase activity"]]},{"id":"UniProt:Q58256","l":"","na":1,"nb":14,"a":[["metabolism/methanogenesis.html","Methanogenesis"]],"b":[["GO%3A0050524","coenzyme-B sulfoethylthiotransferase activity"],["GO%3A0015948","methanogenesis"],["NCBIfam%3ATIGR03256","coenzyme-B sulfoethylthiotransferase subunit alpha"],["InterPro%3AIPR009047","Methyl-coenzyme M reductase, alpha subunit, C-terminal"],["InterPro%3AIPR003183","Methyl-coenzyme M reductase, alpha subunit, N-terminal"],["Pfam%3APF02745","Methyl-coenzyme M reductase alpha subunit, N-terminal domain"]]},{"id":"GO:0004781","l":"sulfate adenylyltransferase (ATP) activity","na":1,"nb":13,"a":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["EC%3A2.7.7.4","sulfate adenylyltransferase"],["RHEA%3A18133","sulfate + ATP + H(+) = adenosine 5'-phosphosulfate + diphosphate"],["ComplexPortal%3ACPX-4471","Sulfate adenylyltransferase complex"],["GO%3A0004781","sulfate adenylyltransferase (ATP) activity"],["NCBIfam%3ATIGR02034","sulfate adenylyltransferase, large subunit"],["NCBIfam%3ATIGR02039","sulfate adenylyltransferase, small subunit"]]},{"id":"GO:0016859","l":"cis-trans isomerase activity","na":1,"nb":13,"a":[["environment/temperature_delta_high.html","temperature delta high"]],"b":[["GO%3A0047466","2-chloro-4-carboxymethylenebut-2-en-1,4-olide isomerase activity"],["GO%3A0090471","9,15,9'-tri-cis-zeta-carotene isomerase activity"],["GO%3A0106365","beta-carotene isomerase activity"],["GO%3A0046608","carotenoid isomerase activity"],["GO%3A0016859","cis-trans isomerase activity"],["GO%3A0047885","farnesol 2-isomerase activity"]]},{"id":"GO:0120253","l":"hydrocarbon catabolic process","na":1,"nb":13,"a":[["metabolism/hydrocarbon_degradation.html","hydrocarbon degradation"]],"b":[["GO%3A0043448","alkane catabolic process"],["GO%3A0043451","alkene catabolic process"],["GO%3A0043454","alkyne catabolic process"],["GO%3A1900996","benzene catabolic process"],["GO%3A0018915","ethylbenzene catabolic process"],["GO%3A0019429","fluorene catabolic process"]]},{"id":"InterPro:IPR000673","l":"Signal transduction response regulator, chemotaxis, protein-glutamate methylesterase","na":1,"nb":13,"a":[["physiology/chemotaxis.html","chemotaxis"]],"b":[["GO%3A1990827","deaminase binding"],["GO%3A0008984","protein-glutamate methylesterase activity"],["GO%3A0050568","protein-glutamine glutaminase activity"],["GO%3A0006482","protein demethylation"],["NCBIfam%3ANF001965","chemotaxis-specific protein-glutamate methyltransferase CheB"],["NCBIfam%3ANF009206","chemotaxis-specific protein-glutamate methyltransferase CheB"]]},{"id":"UniProt:P0A7G6","l":"","na":1,"nb":13,"a":[["physiology/sos_response.html","SOS response"]],"b":[["ComplexPortal%3ACPX-5544","DNA polymerase V mutasome complex"],["GO%3A0140664","ATP-dependent DNA damage sensor activity"],["NCBIfam%3ATIGR02012","recombinase RecA"],["InterPro%3AIPR020584","DNA recombination/repair protein RecA, conserved site"],["CDD%3Acd00983","RecA"],["InterPro%3AIPR020587","DNA recombination and repair protein RecA, monomer-monomer interface"]]},{"id":"GO:0004536","l":"DNA nuclease activity","na":1,"nb":12,"a":[["physiology/dnase_activity.html","DNase activity"]],"b":[["GO%3A0004520","DNA endonuclease activity"],["GO%3A0004529","DNA exonuclease activity"],["GO%3A0004536","DNA nuclease activity"],["NCBIfam%3ANF053575","GINS-associated RecJ family nuclease"],["NCBIfam%3ANF053577","Hef-associated nuclease"],["NCBIfam%3ANF053576","RecJ family nuclease"]]},{"id":"GO:0008964","l":"phosphoenolpyruvate carboxylase activity","na":1,"nb":12,"a":[["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"]],"b":[["EC%3A4.1.1.31","phosphoenolpyruvate carboxylase"],["RHEA%3A28370","oxaloacetate + phosphate = phosphoenolpyruvate + hydrogencarbonate"],["GO%3A0008964","phosphoenolpyruvate carboxylase activity"],["NCBIfam%3ANF000584","phosphoenolpyruvate carboxylase"],["NCBIfam%3ANF012532","phosphoenolpyruvate carboxylase"],["NCBIfam%3ANF025376","phosphoenolpyruvate carboxylase"]]},{"id":"GO:0009512","l":"cytochrome b6f complex","na":1,"nb":12,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"]],"b":[["GO%3A0009512","cytochrome b6f complex"],["NCBIfam%3ANF014576","cytochrome b6-f complex subunit PetG"],["NCBIfam%3ANF016971","cytochrome b6-f complex subunit PetL"],["NCBIfam%3ANF015687","cytochrome b6-f complex subunit PetN"],["NCBIfam%3ANF050003","cytochrome b6f subunit PetP"],["NCBIfam%3ANF019653","PetM family cytochrome b6-f complex subunit 7"]]},{"id":"GO:0045275","l":"respiratory chain complex III","na":1,"nb":12,"a":[["physiology/organoheterotrophic.html","organoheterotrophic"]],"b":[["ComplexPortal%3ACPX-560","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-563","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-567","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-8730","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-9308","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-8737","Mitochondrial respiratory chain complex III, testis-specific variant"]]},{"id":"InterPro:IPR000780","l":"MCP methyltransferase, CheR-type","na":1,"nb":12,"a":[["physiology/chemotaxis.html","chemotaxis"]],"b":[["GO%3A0098561","methyl accepting chemotaxis protein complex"],["GO%3A0008983","protein-glutamate O-methyltransferase activity"],["NCBIfam%3ANF007902","protein-glutamate O-methyltransferase CheR"],["InterPro%3AIPR022641","Chemotaxis receptor methyltransferase CheR, N-terminal"],["InterPro%3AIPR000780","MCP methyltransferase, CheR-type"],["InterPro%3AIPR022642","MCP methyltransferase, CheR-type, SAM-binding domain, C-terminal"]]},{"id":"UniProt:P04949","l":"","na":1,"nb":12,"a":[["morphology/flagellated.html","flagellated"]],"b":[["InterPro%3AIPR049365","Flagellin, barrel domain"],["InterPro%3AIPR046358","Flagellin, C-terminal domain"],["InterPro%3AIPR014981","Flagellin D3"],["InterPro%3AIPR001029","Flagellin, N-terminal domain"],["Pfam%3APF08884","Flagellin D3 domain"],["Pfam%3APF21504","Flagellin, barrel domain"]]},{"id":"UniProt:P23874","l":"","na":1,"nb":12,"a":[["physiology/persister_cell_formation.html","persister cell formation"]],"b":[["ComplexPortal%3ACPX-180","HipBA toxin-antitoxin complex"],["GO%3A0001217","DNA-binding transcription repressor activity"],["GO%3A0022611","dormancy process"],["GO%3A0036289","peptidyl-serine autophosphorylation"],["GO%3A0040008","regulation of growth"],["GO%3A0044010","single-species biofilm formation"]]},{"id":"CHEBI:16510","l":"","na":1,"nb":11,"a":[["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"]],"b":[["EC%3A1.1.1.298","3-hydroxypropionate dehydrogenase (NADP(+))"],["EC%3A1.1.1.59","3-hydroxypropionate dehydrogenase"],["EC%3A6.2.1.36","3-hydroxypropionyl-CoA synthase"],["RHEA%3A59432","3-hydroxypropanal + NAD(+) + H2O = 3-hydroxypropanoate + NADH + 2 H(+)"],["RHEA%3A59428","3-hydroxypropanal + NADP(+) + H2O = 3-hydroxypropanoate + NADPH + 2 H(+)"],["RHEA%3A67136","3-hydroxypropanoate + ATP + CoA = 3-hydroxypropanoyl-CoA + ADP + phosphate"]]},{"id":"CHEBI:16724","l":"4-hydroxybutyrate","na":1,"nb":11,"a":[["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]],"b":[["EC%3A1.1.1.61","4-hydroxybutyrate dehydrogenase"],["EC%3A1.1.1.n11","succinic semialdehyde reductase"],["EC%3A1.1.99.24","hydroxyacid-oxoacid transhydrogenase"],["EC%3A6.2.1.40","4-hydroxybutyrate--CoA ligase (AMP-forming)"],["EC%3A6.2.1.56","4-hydroxybutyrate--CoA ligase (ADP-forming)"],["RHEA%3A24734","4-hydroxybutanoate + 2-oxoglutarate = (R)-2-hydroxyglutarate + succinate semialdehyde"]]},{"id":"GO:0004737","l":"pyruvate decarboxylase activity","na":1,"nb":11,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"]],"b":[["EC%3A4.1.1.1","pyruvate decarboxylase"],["RHEA%3A55072","2-oxobutanoate + H(+) = propanal + CO2"],["RHEA%3A50312","2-oxopentanoate + H(+) = butanal + CO2"],["RHEA%3A54356","3-methyl-2-oxobutanoate + H(+) = 2-methylpropanal + CO2"],["RHEA%3A54360","4-methyl-2-oxopentanoate + H(+) = 3-methylbutanal + CO2"],["RHEA%3A11628","a 2-oxocarboxylate + H(+) = an aldehyde + CO2"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":1,"nb":11,"a":[["ecology/opportunistic_pathogen.html","opportunistic pathogen"]],"b":[["Pfam%3APF22829","HphA C-terminal domain"],["Pfam%3APF22828","HphA N-terminal heme-binding domain"],["Pfam%3APF28205","Ciprofloxacin tolerance protein"],["Pfam%3APF19582","Solute-binding protein AdeT 1/2"],["PROSITE%3APS00337","Beta-lactamase class-D active site"],["Pfam%3APF24575","Surface lipoprotein assembly modifier, N-terminal TPR repeats"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":1,"nb":11,"a":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF02085","Class III cytochrome C family"],["Pfam%3APF06397","Desulfoferrodoxin, N-terminal domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["Pfam%3APF12797","4Fe-4S binding domain"],["Pfam%3APF06180","Cobalt chelatase (CbiK)"]]},{"id":"UniProt:P0A7C2","l":"","na":1,"nb":11,"a":[["physiology/sos_response.html","SOS response"]],"b":[["NCBIfam%3ATIGR00498","transcriptional repressor LexA"],["proteintraitsmech%3AMEROPS_CLEAVAGE_S24_001","repressor LexA cleavage specificity"],["CDD%3Acd06529","S24_LexA-like"],["InterPro%3AIPR039418","LexA-like"],["InterPro%3AIPR006199","LexA repressor, DNA-binding domain"],["InterPro%3AIPR015927","Peptidase S24/S26A/S26B/S26C"]]},{"id":"UniProt:P0AEK4","l":"","na":1,"nb":11,"a":[["physiology/homeoviscous_adaptation.html","homeoviscous adaptation"]],"b":[["GO%3A1902494","catalytic complex"],["GO%3A0004318","enoyl-[acyl-carrier-protein] reductase (NADH) activity"],["GO%3A0070404","NADH binding"],["GO%3A0009102","biotin biosynthetic process"],["GO%3A0030497","fatty acid elongation"],["GO%3A0008610","lipid biosynthetic process"]]},{"id":"GO:0004557","l":"alpha-galactosidase activity","na":1,"nb":10,"a":[["physiology/alpha_galactosidase_activity.html","alpha-galactosidase activity"]],"b":[["EC%3A3.2.1.22","alpha-galactosidase"],["RHEA%3A21112","a globoside Gb3Cer (d18:1(4E)) + H2O = a beta-D-Gal-(1->4)-beta-D-Glc-(1<->1)-Cer(d18:1(4E)) + D-galactose"],["RHEA%3A28663","melibiose + H2O = D-galactose + D-glucose"],["GO%3A0004557","alpha-galactosidase activity"],["GO%3A0052692","raffinose alpha-galactosidase activity"],["NCBIfam%3ANF053652","beta-L-arabinopyranosidase"]]},{"id":"GO:0008218","l":"bioluminescence","na":1,"nb":10,"a":[["physiology/bioluminescence.html","bioluminescence"]],"b":[["GO%3A0008218","bioluminescence"],["NCBIfam%3ANF052253","fatty acid reductase transferase subunit LuxD"],["NCBIfam%3ANF052244","long-chain-fatty-acid--protein ligase LuxE"],["NCBIfam%3ANF052254","luciferase subunit alpha"],["NCBIfam%3ANF052255","luciferase subunit beta"],["InterPro%3AIPR007534","Acyl-protein synthetase, LuxE"]]},{"id":"GO:0030313","l":"cell envelope","na":1,"nb":10,"a":[["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"]],"b":[["GO%3A0030313","cell envelope"],["PANTHER%3APTHR39576","ATTACHING AND EFFACING PROTEIN HOMOLOG-RELATED-RELATED"],["PANTHER%3APTHR38762","CRYPTIC OUTER MEMBRANE PORIN BGLH-RELATED"],["PANTHER%3APTHR41164","CURLI PRODUCTION ASSEMBLY/TRANSPORT COMPONENT CSGG"],["PANTHER%3APTHR30036","D-XYLOSE-BINDING PERIPLASMIC PROTEIN"],["PANTHER%3APTHR30532","IRON III DICITRATE-BINDING PERIPLASMIC PROTEIN"]]},{"id":"GO:0035434","l":"copper ion transmembrane transport","na":1,"nb":10,"a":[["environment/copper_tolerant.html","copper tolerant"]],"b":[["ComplexPortal%3ACPX-2254","Cus cation efflux complex"],["GO%3A0140636","copper import into the mitochondrion"],["GO%3A0140145","copper ion export from vacuole"],["GO%3A0060003","copper ion export"],["GO%3A0097430","copper ion import across prospore membrane"],["GO%3A7770057","copper ion import into Golgi lumen"]]},{"id":"GO:0046274","l":"lignin catabolic process","na":1,"nb":10,"a":[["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["GO%3A1990487","anaerobic lignin catabolic process"],["GO%3A1901062","guaiacyl lignin catabolic process"],["GO%3A0046274","lignin catabolic process"],["GO%3A1901059","p-hydroxyphenyl lignin catabolic process"],["GO%3A1901065","syringal lignin catabolic process"],["NCBIfam%3ANF042997","beta-etherase"]]},{"id":"NCBITaxon:192222","l":"Campylobacter jejuni subsp. jejuni NCTC 11168 = ATCC 700819","na":1,"nb":10,"a":[["environment/capnophilic.html","capnophilic"]],"b":[["Pfam%3APF26365","Apolipoprotein N-acyltransferase integral membrane domain"],["Pfam%3APF22131","CRISPR-associated endonuclease CjCas9 PI-CTD domain"],["Pfam%3APF22129","CRISPR-associated endonuclease CjCas9 wedge domain"],["Pfam%3APF02554","Carbon starvation protein CstA"],["Pfam%3APF27310","HrcA C-terminal domain"],["Pfam%3APF05538","Campylobacter major outer membrane protein"]]},{"id":"NCBITaxon:224911","l":"Bradyrhizobium diazoefficiens USDA 110","na":1,"nb":10,"a":[["morphology/subpolar_flagellation.html","subpolar flagellation"]],"b":[["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["Pfam%3APF14715","N-terminal domain of cytochrome oxidase-cbb3, FixP"],["Pfam%3APF03886","ABC-type transport auxiliary lipoprotein component"],["Pfam%3APF10649","Protein of unknown function (DUF2478)"],["Pfam%3APF01924","Hydrogenase formation hypA family"],["PROSITE%3APS00882","Nickel-dependent hydrogenases b-type cytochrome subunit signature 1"]]},{"id":"UniProt:P06534","l":"","na":1,"nb":10,"a":[["morphology/spore_forming.html","spore forming"]],"b":[["GO%3A0090529","cell septum assembly"],["GO%3A0051606","detection of stimulus"],["GO%3A0000160","phosphorelay signal transduction system"],["GO%3A0045881","positive regulation of sporulation resulting in formation of a cellular spore"],["GO%3A0090606","single-species surface biofilm formation"],["NCBIfam%3ATIGR02875","sporulation transcription factor Spo0A"]]},{"id":"UniProt:P0A9X9","l":"","na":1,"nb":10,"a":[["physiology/cold_shock_response.html","cold shock response"]],"b":[["GO%3A0001072","transcription antitermination factor activity, RNA binding"],["GO%3A0060567","negative regulation of termination of DNA-templated transcription"],["NCBIfam%3ANF007679","RNA chaperone/antiterminator CspA"],["NCBIfam%3ANF049933","transcription antiterminator/RNA stability regulator CspE"],["InterPro%3AIPR019844","Cold-shock domain, conserved site"],["CDD%3Acd04458","CSP_CDS"]]},{"id":"CHEBI:17234","l":"glucose","na":9,"nb":1,"a":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/biopolymer_degradation.html","biopolymer degradation"],["metabolism/cellulolysis.html","cellulolysis"],["metabolism/does_not_use_as_carbon_source.html","does not use as carbon source"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/starch_degradation.html","starch degradation"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:48775","l":"cadmium(2+)","na":1,"nb":9,"a":[["environment/cadmium_tolerant.html","cadmium tolerant"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_48775","requires cadmium(2+)"],["EC%3A7.2.2.2","ABC-type Cd(2+) transporter"],["EC%3A7.2.2.21","Cd(2+)-exporting ATPase"],["RHEA%3A12132","Cd(2+)(in) + ATP + H2O = Cd(2+)(out) + ADP + phosphate + H(+)"],["RHEA%3A28707","Cd(2+)(in) = Cd(2+)(out)"],["RHEA%3A28739","Cd(2+)(in) + H(+)(out) = Cd(2+)(out) + H(+)(in)"]]},{"id":"GO:0004324","l":"ferredoxin-NADP+ reductase activity","na":1,"nb":9,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"]],"b":[["EC%3A1.18.1.2","ferredoxin--NADP(+) reductase"],["RHEA%3A20125","2 reduced [2Fe-2S]-[ferredoxin] + NADP(+) + H(+) = 2 oxidized [2Fe-2S]-[ferredoxin] + NADPH"],["GO%3A0004324","ferredoxin-NADP+ reductase activity"],["NCBIfam%3ANF008178","ferredoxin--NADP(+) reductase"],["NCBIfam%3ANF045929","ferredoxin--NADP reductase"],["MCSA%3A142","ferredoxin-NADP+ reductase (adrenodoxin-type)"]]},{"id":"GO:0004560","l":"alpha-L-fucosidase activity","na":1,"nb":9,"a":[["physiology/alpha_fucosidase_activity.html","alpha-fucosidase activity"]],"b":[["EC%3A3.2.1.51","alpha-L-fucosidase"],["RHEA%3A12288","an alpha-L-fucoside + H2O = L-fucose + an alcohol"],["GO%3A0047513","1,2-alpha-L-fucosidase activity"],["GO%3A0033932","1,3-alpha-L-fucosidase activity"],["GO%3A0033938","1,6-alpha-L-fucosidase activity"],["GO%3A0004560","alpha-L-fucosidase activity"]]},{"id":"GO:0004568","l":"chitinase activity","na":1,"nb":9,"a":[["metabolism/chitinolysis.html","chitinolysis"]],"b":[["GO%3A0004568","chitinase activity"],["GO%3A0008843","endochitinase activity"],["GO%3A0035885","exochitinase activity"],["InterPro%3AIPR013540","Chitinase A N-terminal"],["InterPro%3AIPR000726","Glycoside hydrolase, family 19, catalytic"],["NCBIfam%3ANF019930","chitinase N-terminal domain-containing protein"]]},{"id":"GO:0004586","l":"ornithine decarboxylase activity","na":1,"nb":9,"a":[["physiology/ornithine_decarboxylase_activity.html","ornithine decarboxylase activity"]],"b":[["EC%3A4.1.1.17","ornithine decarboxylase"],["RHEA%3A22964","L-ornithine + H(+) = putrescine + CO2"],["GO%3A0004586","ornithine decarboxylase activity"],["NCBIfam%3ATIGR04301","ornithine decarboxylase SpeF"],["MCSA%3A860","ornithine decarboxylase"],["MCSA%3A937","ornithine decarboxylase"]]},{"id":"GO:0006097","l":"glyoxylate cycle","na":1,"nb":9,"a":[["physiology/heterotrophic.html","heterotrophic"]],"b":[["GO%3A0006097","glyoxylate cycle"],["proteintraitsmech%3ASEED_SUBSYSTEM_Glyoxylate_bypass","Glyoxylate bypass"],["NCBIfam%3ATIGR02924","isocitrate dehydrogenase"],["NCBIfam%3ATIGR01344","malate synthase A"],["NCBIfam%3ANF041315","malate synthase AceB"],["NCBIfam%3ANF002825","malate synthase G"]]},{"id":"GO:0009423","l":"chorismate biosynthetic process","na":1,"nb":9,"a":[["morphology/pigmentation.html","pigmentation"]],"b":[["GO%3A0009423","chorismate biosynthetic process"],["proteintraitsmech%3ASEED_SUBSYSTEM_Chorismate_Synthesis","Chorismate Synthesis"],["NCBIfam%3ATIGR01357","3-dehydroquinate synthase"],["NCBIfam%3ATIGR01358","class II 3-deoxy-7-phosphoheptulonate synthase"],["NCBIfam%3ATIGR01920","shikimate kinase"],["NCBIfam%3ATIGR01088","type II 3-dehydroquinate dehydratase"]]},{"id":"GO:0030152","l":"bacteriocin biosynthetic process","na":1,"nb":9,"a":[["physiology/bacteriocin_production.html","bacteriocin production"]],"b":[["GO%3A0030152","bacteriocin biosynthetic process"],["NCBIfam%3ATIGR04067","Apre_1838 family putative sactipeptide bacteriocin"],["NCBIfam%3ATIGR04065","CLI_3235 family bacteriocin precursor"],["NCBIfam%3ATIGR04068","Cys-rich peptide radical SAM maturase CcpM"],["NCBIfam%3ATIGR04064","nif11-like peptide radical SAM maturase"],["NCBIfam%3ATIGR01295","PedC/BrcD family bacteriocin maturation disulfide isomerase"]]},{"id":"GO:0050421","l":"nitrite reductase (NO-forming) activity","na":1,"nb":9,"a":[["metabolism/denitrification.html","denitrification"]],"b":[["EC%3A1.7.2.1","nitrite reductase (NO-forming)"],["RHEA%3A15233","nitric oxide + Fe(III)-[cytochrome c] + H2O = Fe(II)-[cytochrome c] + nitrite + 2 H(+)"],["GO%3A0050421","nitrite reductase (NO-forming) activity"],["NCBIfam%3ATIGR02376","copper-containing nitrite reductase"],["MCSA%3A4","nitrite reductase (copper type)"],["MCSA%3A903","nitrite reductase (cytochrome cd1 type)"]]},{"id":"GO:0052716","l":"hydroquinone:oxygen oxidoreductase activity","na":1,"nb":9,"a":[["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["EC%3A1.10.3.2","laccase"],["RHEA%3A11276","4 hydroquinone + O2 = 4 benzosemiquinone + 2 H2O"],["GO%3A0052716","hydroquinone:oxygen oxidoreductase activity"],["MCSA%3A390","laccase"],["proteintraitsmech%3ABIOLIP_3DM","3DM-binding site"],["proteintraitsmech%3ABIOLIP_D2M","D2M-binding site"]]},{"id":"InterPro:IPR004090","l":"","na":1,"nb":9,"a":[["physiology/chemotaxis.html","chemotaxis"]],"b":[["Pfam%3APF05227","CHASE3 domain"],["Pfam%3APF02743","Cache domain"],["Pfam%3APF08269","Cache domain"],["Pfam%3APF18947","HAMP domain"],["Pfam%3APF18575","HAMP N-terminal domain 3"],["Pfam%3APF17909","Htr2 transmembrane domain"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":9,"a":[["morphology/motility.html","motility"]],"b":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF25954","CusB-like, beta-barrel domain"],["Pfam%3APF13438","Domain of unknown function (DUF4113)"],["Pfam%3APF03767","HAD superfamily, subfamily IIIB (Acid phosphatase)"],["Pfam%3APF03496","ADP-ribosyltransferase exoenzyme"]]},{"id":"UniProt:P09424","l":"","na":1,"nb":9,"a":[["physiology/chemoheterotrophic.html","chemoheterotrophic"]],"b":[["GO%3A0008926","mannitol-1-phosphate 5-dehydrogenase activity"],["GO%3A0019592","mannitol catabolic process"],["NCBIfam%3ANF002646","mannitol-1-phosphate 5-dehydrogenase"],["NCBIfam%3ANF002647","mannitol-1-phosphate 5-dehydrogenase"],["NCBIfam%3ANF002648","mannitol-1-phosphate 5-dehydrogenase"],["NCBIfam%3ANF002650","mannitol-1-phosphate 5-dehydrogenase"]]},{"id":"UniProt:P21458","l":"","na":1,"nb":9,"a":[["morphology/sporulation.html","sporulation"]],"b":[["CDD%3Acd01127","TrwB_TraG_TraD_VirD4"],["InterPro%3AIPR041027","FtsK alpha domain"],["InterPro%3AIPR002543","FtsK domain"],["InterPro%3AIPR018541","FtsK gamma domain"],["Pfam%3APF17854","FtsK alpha domain"],["Pfam%3APF09397","Ftsk gamma domain"]]},{"id":"CHEBI:17029","l":"chitin","na":1,"nb":8,"a":[["metabolism/chitinolysis.html","chitinolysis"]],"b":[["EC%3A2.4.1.16","chitin synthase"],["EC%3A3.5.1.41","chitin deacetylase"],["RHEA%3A85463","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-1)-N-acetyl-alpha-D-glucosamine"],["RHEA%3A50672","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-2) + N,N'-diacetylchitobiose"],["RHEA%3A85003","[(1->4)-N-acetyl-beta-D-glucosaminyl](n)-N-acetyl-alpha-D-glucosamine + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n) + N-acetyl-alpha-D-glucosamine"],["RHEA%3A10464","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + n H2O = chitosan + n acetate"]]},{"id":"GO:0003868","l":"4-hydroxyphenylpyruvate dioxygenase activity","na":1,"nb":8,"a":[["morphology/brown_pigmented.html","brown pigmented"]],"b":[["EC%3A1.13.11.27","4-hydroxyphenylpyruvate dioxygenase"],["RHEA%3A16189","3-(4-hydroxyphenyl)pyruvate + O2 = homogentisate + CO2"],["GO%3A0003868","4-hydroxyphenylpyruvate dioxygenase activity"],["NCBIfam%3ATIGR01263","4-hydroxyphenylpyruvate dioxygenase"],["proteintraitsmech%3ABIOLIP_869","869-binding site"],["proteintraitsmech%3ABIOLIP_AIY","AIY-binding site"]]},{"id":"GO:0006572","l":"L-tyrosine catabolic process","na":1,"nb":8,"a":[["morphology/brown_pigmented.html","brown pigmented"]],"b":[["GO%3A0006572","L-tyrosine catabolic process"],["Reactome%3AR-HSA-8963684","Tyrosine catabolism"],["NCBIfam%3ATIGR01263","4-hydroxyphenylpyruvate dioxygenase"],["NCBIfam%3ATIGR01266","fumarylacetoacetase"],["NCBIfam%3ATIGR01015","homogentisate 1,2-dioxygenase"],["NCBIfam%3ATIGR01262","maleylacetoacetate isomerase"]]},{"id":"GO:0008936","l":"nicotinamidase activity","na":1,"nb":8,"a":[["physiology/pyrazinamidase_activity.html","pyrazinamidase activity"]],"b":[["EC%3A3.5.1.19","nicotinamidase"],["RHEA%3A14545","nicotinamide + H2O = nicotinate + NH4(+)"],["GO%3A0008936","nicotinamidase activity"],["ARO%3A3004267","antibiotic resistant pncA"],["ARO%3A3003394","Mycobacterium tuberculosis pncA mutations conferring resistance to pyrazinamide"],["ARO%3A3003418","Pyrazinamide resistant pncA"]]},{"id":"GO:0009303","l":"rRNA transcription","na":1,"nb":8,"a":[["genomics/rrna_operon_copy_number.html","rRNA operon copy number"]],"b":[["GO%3A0042791","5S class rRNA transcription by RNA polymerase III"],["GO%3A0042790","nucleolar large rRNA transcription by RNA polymerase I"],["GO%3A0042794","plastid rRNA transcription"],["GO%3A0009303","rRNA transcription"],["PANTHER%3APTHR14440","DNA-DIRECTED RNA POLYMERASE I SUBUNIT RPA49"],["PANTHER%3APTHR10535","DNA-DIRECTED RNA POLYMERASES I, II, AND III SUBUNIT RPABC1"]]},{"id":"GO:0016049","l":"cell growth","na":1,"nb":8,"a":[["metabolism/metabolism.html","metabolism"]],"b":[["GO%3A0051211","anisotropic cell growth"],["GO%3A0016049","cell growth"],["GO%3A0048588","developmental cell growth"],["GO%3A0051210","isotropic cell growth"],["GO%3A0009825","multidimensional cell growth"],["GO%3A0007124","pseudohyphal growth"]]},{"id":"GO:0036374","l":"glutathione gamma-glutamate hydrolase","na":1,"nb":8,"a":[["physiology/gamma_glutamyltransferase_activity.html","gamma-glutamyltransferase activity"]],"b":[["EC%3A3.4.19.13","glutathione gamma-glutamate hydrolase"],["RHEA%3A28807","glutathione + H2O = L-cysteinylglycine + L-glutamate"],["ComplexPortal%3ACPX-325","Glutathione hydrolase complex"],["GO%3A0036374","glutathione gamma-glutamate hydrolase"],["NCBIfam%3ANF007187","gamma-glutamyltransferase"],["NCBIfam%3ATIGR00066","gamma-glutamyltransferase"]]},{"id":"GO:0042276","l":"error-prone translesion synthesis","na":1,"nb":8,"a":[["genomics/gc_content.html","GC content"]],"b":[["ComplexPortal%3ACPX-1091","DNA polymerase zeta complex"],["ComplexPortal%3ACPX-2426","DNA polymerase zeta complex"],["ComplexPortal%3ACPX-994","DNA polymerase zeta complex"],["GO%3A0042276","error-prone translesion synthesis"],["Reactome%3AR-HSA-5656121","Translesion synthesis by POLI"],["Reactome%3AR-HSA-5655862","Translesion synthesis by POLK"]]},{"id":"InterPro:IPR001492","l":"","na":1,"nb":8,"a":[["morphology/spirochete_shaped.html","spirochete shaped"]],"b":[["Pfam%3APF00700","Bacterial flagellin C-terminal helical region"],["Pfam%3APF08884","Flagellin D3 domain"],["Pfam%3APF21504","Flagellin, barrel domain"],["Pfam%3APF22370","Flagellin, beta sheet domain"],["PANTHER%3APTHR42792","FLAGELLIN"],["Pfam%3APF00669","Bacterial flagellin N-terminal helical region"]]},{"id":"InterPro:IPR050469","l":"","na":1,"nb":8,"a":[["ecology/biofilm_formation.html","biofilm formation"]],"b":[["Pfam%3APF17151","Periplasmic sensor domain"],["Pfam%3APF13682","Chemoreceptor zinc-binding domain"],["Pfam%3APF20975","DGC-associated coil"],["Pfam%3APF21118","DosC CZB-like middle domain"],["Pfam%3APF00990","Diguanylate cyclase, GGDEF domain"],["PANTHER%3APTHR45138","REGULATORY COMPONENTS OF SENSORY TRANSDUCTION SYSTEM"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":1,"nb":8,"a":[["other/catalase_negative.html","catalase negative"]],"b":[["Pfam%3APF01721","Class II bacteriocin"],["Pfam%3APF13700","Domain of unknown function (DUF4158)"],["Pfam%3APF07478","D-ala D-ala ligase C-terminus"],["Pfam%3APF01820","D-ala D-ala ligase N-terminus"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"],["PROSITE%3APS00843","D-alanine--D-alanine ligase signature 1"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":8,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["Pfam%3APF02927","Cellulase N-terminal ig-like domain"],["Pfam%3APF00404","Dockerin type I domain"],["PROSITE%3APS00448","Clostridium cellulosome enzymes repeated domain signature"],["PROSITE%3APS60032","Glycosyl hydrolases family 9 (GH9) active site signature 1"],["PROSITE%3APS00592","Glycosyl hydrolases family 9 (GH9) active site signature 2"],["PROSITE%3APS00698","Glycosyl hydrolases family 9 (GH9) active site signature 3"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK1622","na":1,"nb":8,"a":[["morphology/gliding.html","gliding"]],"b":[["Pfam%3APF27281","DevT C-terminal domain"],["Pfam%3APF27372","DevT N-terminal domain"],["Pfam%3APF17762","ParB HTH domain"],["Pfam%3APF01930","Domain of unknown function DUF83"],["Pfam%3APF09559","Cas6 Crispr"],["Pfam%3APF01905","CRISPR-associated negative auto-regulator DevR/Csa2"]]},{"id":"UniProt:P04189","l":"","na":1,"nb":8,"a":[["metabolism/proteolysis.html","proteolysis"]],"b":[["GO%3A0009274","peptidoglycan-based cell wall"],["GO%3A0004252","serine-type endopeptidase activity"],["GO%3A0009372","quorum sensing"],["GO%3A0140448","signaling receptor ligand precursor processing"],["InterPro%3AIPR023827","Peptidase S8, subtilisin, Asp-active site"],["InterPro%3AIPR022398","Peptidase S8, subtilisin, His-active site"]]},{"id":"UniProt:P0ABB4","l":"","na":8,"nb":1,"a":[["metabolism/metabolism.html","metabolism"],["metabolism/respiration.html","respiration"],["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"],["physiology/chemotrophic.html","chemotrophic"],["physiology/heterotrophic.html","heterotrophic"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"]]},{"id":"CHEBI:17593","l":"","na":1,"nb":7,"a":[["metabolism/starch_degradation.html","starch degradation"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.B.64","The Brucella Omp2 Porin (B-Omp2) Family"],["TCDB%3A1.B.26","The Cyclodextrin Porin (CDP) Family"],["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["TCDB%3A1.B.3","The Sugar Porin (SP) Family"]]},{"id":"CHEBI:30087","l":"","na":1,"nb":7,"a":[["metabolism/sulfur_oxidation.html","sulfur oxidation"]],"b":[["EC%3A1.14.20.7","2-oxoglutarate/L-arginine monooxygenase/decarboxylase (succinate- forming)"],["RHEA%3A31527","5-hydroxy-L-arginine = guanidine + L-glutamate 5-semialdehyde"],["RHEA%3A79843","6-hydroxy-L-homoarginine = guanidine + (S)-2-amino-6-oxohexanoate"],["RHEA%3A79567","guanidine + H2O = urea + NH4(+)"],["RHEA%3A73883","guanidine(out) = guanidine(in)"],["RHEA%3A31535","L-arginine + 2-oxoglutarate + O2 = guanidine + L-glutamate 5-semialdehyde + succinate + CO2"]]},{"id":"GO:0004411","l":"homogentisate 1,2-dioxygenase activity","na":1,"nb":7,"a":[["morphology/brown_pigmented.html","brown pigmented"]],"b":[["EC%3A1.13.11.5","homogentisate 1,2-dioxygenase"],["RHEA%3A15449","homogentisate + O2 = 4-maleylacetoacetate + H(+)"],["GO%3A0004411","homogentisate 1,2-dioxygenase activity"],["NCBIfam%3ATIGR01015","homogentisate 1,2-dioxygenase"],["NCBIfam%3ANF016125","homogentisate 1,2-dioxygenase domain-containing protein"],["MCSA%3A547","homogentisate 1,2-dioxygenase"]]},{"id":"GO:0004658","l":"propionyl-CoA carboxylase activity","na":1,"nb":7,"a":[["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"]],"b":[["EC%3A6.4.1.3","propionyl-CoA carboxylase"],["RHEA%3A23720","propanoyl-CoA + hydrogencarbonate + ATP = (S)-methylmalonyl-CoA + ADP + phosphate + H(+)"],["ComplexPortal%3ACPX-6169","Mitochondrial propionyl-CoA carboxylase complex"],["GO%3A0004658","propionyl-CoA carboxylase activity"],["NCBIfam%3ANF025192","acyl-CoA carboxylase epsilon subunit"],["Pfam%3APF13822","Acyl-CoA carboxylase epsilon subunit"]]},{"id":"GO:0008804","l":"carbamate kinase activity","na":1,"nb":7,"a":[["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["EC%3A2.7.2.2","carbamate kinase"],["RHEA%3A10152","hydrogencarbonate + NH4(+) + ATP = carbamoyl phosphate + ADP + H2O + H(+)"],["GO%3A0008804","carbamate kinase activity"],["NCBIfam%3ANF006926","carbamate kinase"],["NCBIfam%3ATIGR00746","carbamate kinase"],["MCSA%3A669","carbamate kinase"]]},{"id":"GO:0009424","l":"bacterial-type flagellum hook","na":1,"nb":7,"a":[["morphology/flagellated.html","flagellated"]],"b":[["GO%3A0009424","bacterial-type flagellum hook"],["NCBIfam%3ATIGR02492","flagellar hook-associated protein FlgK"],["NCBIfam%3ATIGR02550","flagellar hook-associated protein FlgL"],["NCBIfam%3ANF007514","flagellar hook length control protein FliK"],["InterPro%3AIPR003481","Flagellar hook-associated protein 2, N-terminal"],["NCBIfam%3ANF014518","flagellar cap protein FliD N-terminal domain-containing protein"]]},{"id":"GO:0009973","l":"adenylyl-sulfate reductase activity","na":1,"nb":7,"a":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["EC%3A1.8.99.2","adenylyl-sulfate reductase"],["RHEA%3A24240","sulfite + A + AMP + 2 H(+) = adenosine 5'-phosphosulfate + AH2"],["GO%3A0009973","adenylyl-sulfate reductase activity"],["NCBIfam%3ATIGR02061","adenylyl-sulfate reductase subunit alpha"],["NCBIfam%3ATIGR02060","adenylyl-sulfate reductase subunit beta"],["NCBIfam%3ATIGR02055","adenylylsulfate reductase, thioredoxin dependent"]]},{"id":"GO:0019420","l":"dissimilatory sulfate reduction","na":1,"nb":7,"a":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["GO%3A0019420","dissimilatory sulfate reduction"],["NCBIfam%3ATIGR02061","adenylyl-sulfate reductase subunit alpha"],["NCBIfam%3ATIGR02060","adenylyl-sulfate reductase subunit beta"],["NCBIfam%3ATIGR02066","dissimilatory-type sulfite reductase subunit beta"],["NCBIfam%3ANF045796","sulfate reduction electron transfer complex DsrMKJOP subunit DsrK"],["NCBIfam%3ANF045797","sulfate reduction electron transfer complex DsrMKJOP subunit DsrO"]]},{"id":"GO:0042744","l":"hydrogen peroxide catabolic process","na":1,"nb":7,"a":[["environment/aerotolerant.html","aerotolerant"]],"b":[["ComplexPortal%3ACPX-4862","Alkyl hydroperoxide reductase complex"],["ComplexPortal%3ACPX-4742","Catalase complex"],["ComplexPortal%3ACPX-4767","Catalase complex"],["ComplexPortal%3ACPX-4768","Catalase complex"],["GO%3A0033355","ascorbate glutathione cycle"],["GO%3A0042744","hydrogen peroxide catabolic process"]]},{"id":"InterPro:IPR018028","l":"","na":1,"nb":7,"a":[["physiology/catalase_activity.html","catalase activity"]],"b":[["Pfam%3APF18011","C-terminal domain found in long catalases"],["Pfam%3APF00199","Catalase"],["PANTHER%3APTHR11465","CATALASE"],["Pfam%3APF06628","Catalase-related immune-responsive"],["PRINTS%3APR00067","Catalase signature"],["PROSITE%3APS00437","Catalase proximal heme-ligand signature"]]},{"id":"InterPro:IPR045087","l":"","na":1,"nb":7,"a":[["metabolism/manganese_oxidation.html","manganese oxidation"]],"b":[["Pfam%3APF07731","Multicopper oxidase"],["Pfam%3APF07732","Multicopper oxidase"],["Pfam%3APF00394","Multicopper oxidase"],["PANTHER%3APTHR48267","CUPREDOXIN SUPERFAMILY PROTEIN"],["PANTHER%3APTHR11709","MULTI-COPPER OXIDASE"],["PROSITE%3APS00079","Multicopper oxidases signature 1"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":7,"nb":1,"a":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/copper_tolerant.html","copper tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["environment/metal_tolerant.html","metal tolerant"]],"b":[["TED%3AAF-A0A132HLN2-F1-model_v4_TED01","TED novel fold AF-A0A132HLN2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":1,"nb":7,"a":[["environment/microaerophilic.html","microaerophilic"]],"b":[["Pfam%3APF04439","Streptomycin adenylyltransferase"],["TED%3AAF-A0A696J2C3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A696J2C3-F1-model_v4_TED01"],["TED%3AAF-A0A825M6H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A825M6H4-F1-model_v4_TED01"],["TED%3AAF-A0A5T0SBG5-F1-model_v4_TED01","TED novel fold AF-A0A5T0SBG5-F1-model_v4_TED01"],["TED%3AAF-A0A698JVM3-F1-model_v4_TED03","TED novel fold AF-A0A698JVM3-F1-model_v4_TED03"],["TED%3AAF-A0A824N1N8-F1-model_v4_TED01","TED novel fold AF-A0A824N1N8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:264203","l":"Zymomonas mobilis subsp. mobilis (strain ATCC 31821 / ZM4 / CP4)","na":1,"nb":7,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"]],"b":[["Pfam%3APF13590","Domain of unknown function (DUF4136)"],["Pfam%3APF08436","1-deoxy-D-xylulose 5-phosphate reductoisomerase C-terminal domain"],["Pfam%3APF13288","DXP reductoisomerase C-terminal domain"],["Pfam%3APF02670","1-deoxy-D-xylulose 5-phosphate reductoisomerase"],["PROSITE%3APS01157","Class A bacterial acid phosphatases signature"],["PROSITE%3APS01320","Uncharacterized protein family UPF0067 signature"]]},{"id":"NCBITaxon:272623","l":"Lactococcus lactis subsp. lactis (strain IL1403)","na":1,"nb":7,"a":[["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]],"b":[["Pfam%3APF25935","LcnD-like, barrel-sandwich hybrid domain"],["Pfam%3APF27342","ComB N-terminal domain"],["Pfam%3APF06993","Protein of unknown function (DUF1304)"],["Pfam%3APF25887","LcnD-like, long helical bundle domain"],["Pfam%3APF13276","HTH-like domain"],["Pfam%3APF25940","LcnD-like, C-terminal domain"]]},{"id":"NCBITaxon:672","l":"Vibrio vulnificus","na":1,"nb":7,"a":[["physiology/viable_but_nonculturable_state.html","viable but nonculturable state"]],"b":[["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF08021","Siderophore-interacting FAD-binding domain"],["Pfam%3APF11575","FhuF 2Fe-2S C-terminal domain"],["Pfam%3APF27349","IcsB middle domain"],["Pfam%3APF21735","C-terminal repeat from RTX toxins"],["Pfam%3APF07634","RtxA repeat"]]},{"id":"NCBITaxon:837","l":"Porphyromonas gingivalis","na":1,"nb":7,"a":[["morphology/black_pigmented.html","black pigmented"]],"b":[["Pfam%3APF07675","Cleaved Adhesin Domain"],["Pfam%3APF22492","FimA4 pilin C-terminal domain"],["Pfam%3APF15495","Major fimbrial subunit protein type IV, Fimbrillin, C-terminal"],["Pfam%3APF26306","FimD protein third domain"],["Pfam%3APF27397","FimE C-terminal domain"],["Pfam%3APF10365","Domain of unknown function (DUF2436)"]]},{"id":"CHEBI:27592","l":"ectoine","na":6,"nb":1,"a":[["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"],["environment/nacl_delta_mid1.html","NaCl delta mid1"],["environment/nacl_optimum_mid2.html","NaCl optimum mid2"],["environment/nacl_range_mid2.html","NaCl range mid2"],["environment/slightly_halophilic.html","slightly halophilic"]],"b":[["proteintraitsmech%3ABIOLIP_4CS","4CS-binding site"]]},{"id":"CHEBI:29041","l":"","na":1,"nb":6,"a":[["metabolism/manganese_oxidation.html","manganese oxidation"]],"b":[["EC%3A1.11.1.13","manganese peroxidase"],["EC%3A1.11.1.16","versatile peroxidase"],["RHEA%3A22776","2 Mn(2+) + H2O2 + 2 H(+) = 2 Mn(3+) + 2 H2O"],["RHEA%3A52244","4 Mn(2+) + O2 + 4 H(+) = 4 Mn(3+) + 2 H2O"],["RHEA%3A52248","4 Mn(3+) + O2 + 6 H2O = 4 MnO2 + 12 H(+)"],["proteintraitsmech%3ABIOLIP_MN3","MN3-binding site"]]},{"id":"CHEBI:71578","l":"","na":6,"nb":1,"a":[["environment/nacl_delta_mid1.html","NaCl delta mid1"],["environment/nacl_delta_mid2.html","NaCl delta mid2"],["environment/nacl_optimum_low.html","NaCl optimum low"],["environment/nacl_range.html","NaCl range"],["environment/nacl_range_low.html","NaCl range low"],["environment/stenohaline.html","stenohaline"]],"b":[["proteintraitsmech%3ABIOLIP_2BA","2BA-binding site"]]},{"id":"GO:0009409","l":"response to cold","na":1,"nb":6,"a":[["physiology/cold_shock_response.html","cold shock response"]],"b":[["GO%3A0070417","cellular response to cold"],["GO%3A0009631","cold acclimation"],["GO%3A0009409","response to cold"],["GO%3A0050826","response to freezing"],["GO%3A0010048","vernalization response"],["NCBIfam%3ANF005952","kdo(2)-lipid IV(A) palmitoleoyltransferase"]]},{"id":"GO:0042279","l":"nitrite reductase (cytochrome, ammonia-forming) activity","na":1,"nb":6,"a":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]],"b":[["EC%3A1.7.2.2","nitrite reductase (cytochrome; ammonia-forming)"],["RHEA%3A13089","6 Fe(III)-[cytochrome c] + NH4(+) + 2 H2O = 6 Fe(II)-[cytochrome c] + nitrite + 8 H(+)"],["GO%3A0042279","nitrite reductase (cytochrome, ammonia-forming) activity"],["NCBIfam%3ANF014398","ammonia-forming cytochrome c nitrite reductase subunit c552"],["NCBIfam%3ATIGR03152","ammonia-forming nitrite reductase cytochrome c552 subunit"],["Pfam%3APF02335","Cytochrome c552"]]},{"id":"GO:0044409","l":"symbiont entry into host","na":1,"nb":6,"a":[["ecology/plant_pathogen.html","plant pathogen"]],"b":[["GO%3A0120326","appressorium-mediated entry into host"],["GO%3A0140717","entry into host through the stromata"],["GO%3A0035635","entry of bacterium into host cell"],["GO%3A0046718","symbiont entry into host cell"],["GO%3A0044409","symbiont entry into host"],["Reactome%3AR-HSA-173107","Binding and entry of HIV virion"]]},{"id":"METPO:1000845","l":"Acetogenesis","na":6,"nb":1,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"],["physiology/heterotrophic.html","heterotrophic"]],"b":[["METPO%3A1000845","Acetogenesis"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":1,"nb":6,"a":[["metabolism/starch_degradation.html","starch degradation"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF10779","Haemolysin XhlA"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF08181","DegQ (SacQ) family"],["Pfam%3APF08057","Erythromycin resistance leader peptide"],["Pfam%3APF14867","Lantibiotic alpha"]]},{"id":"NCBITaxon:272630","l":"Methylorubrum extorquens (strain ATCC 14718 / DSM 1338 / JCM 2805 / NCIMB 9133 / AM1)","na":1,"nb":6,"a":[["physiology/methylotrophic.html","methylotrophic"]],"b":[["Pfam%3APF07726","ATPase family associated with various cellular activities (AAA)"],["Pfam%3APF02741","FTR, proximal lobe"],["Pfam%3APF01913","Formylmethanofuran-tetrahydromethanopterin formyltransferase"],["Pfam%3APF10677","Protein of unknown function (DUF2490)"],["Pfam%3APF08714","Formaldehyde-activating enzyme (Fae)"],["PROSITE%3APS00363","Bacterial quinoprotein dehydrogenases signature 1"]]},{"id":"NCBITaxon:316401","l":"Escherichia coli O78:H11 (strain H10407 / ETEC)","na":1,"nb":6,"a":[["other/indole_test_positive.html","indole test positive"]],"b":[["Pfam%3APF26759","AcfD helical domain"],["Pfam%3APF04449","CS1 type fimbrial major subunit"],["Pfam%3APF13322","Domain of unknown function (DUF4092)"],["PROSITE%3APS01141","Bacterial type II secretion system protein C signature"],["Pfam%3APF16168","Adhesin of bacterial autotransporter system, probable stalk"],["Pfam%3APF24078","PIC/HAP1/IgA0 second beta-solenoid repeat region"]]},{"id":"UniProt:P0A6Y8","l":"","na":1,"nb":6,"a":[["physiology/heat_shock_response.html","heat shock response"]],"b":[["GO%3A0016989","sigma factor antagonist activity"],["GO%3A0043335","protein unfolding"],["GO%3A1990169","stress response to copper ion"],["NCBIfam%3ANF003520","Fe-S protein assembly chaperone HscA"],["NCBIfam%3ATIGR02350","molecular chaperone DnaK"],["CDD%3Acd10234","ASKHA_NBD_HSP70_DnaK-like"]]},{"id":"CHEBI:26672","l":"siderophore","na":1,"nb":5,"a":[["physiology/siderophore_production.html","siderophore production"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_26672","siderophore cofactor class"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.17","The Outer Membrane Factor (OMF) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]]},{"id":"GO:0004035","l":"alkaline phosphatase activity","na":1,"nb":5,"a":[["physiology/alkaline_phosphatase_activity.html","alkaline phosphatase activity"]],"b":[["EC%3A3.1.3.1","alkaline phosphatase"],["GO%3A0004035","alkaline phosphatase activity"],["NCBIfam%3ANF042991","alkaline phosphatase PafA"],["NCBIfam%3ANF058638","alkaline phosphatase PhoD"],["MCSA%3A44","alkaline phosphatase"]]},{"id":"GO:0004309","l":"exopolyphosphatase activity","na":1,"nb":5,"a":[["morphology/polyphosphate_granule.html","polyphosphate granule"]],"b":[["EC%3A3.6.1.11","exopolyphosphatase"],["RHEA%3A21528","[phosphate](n) + H2O = [phosphate](n-1) + phosphate + H(+)"],["GO%3A0004309","exopolyphosphatase activity"],["NCBIfam%3ATIGR03706","exopolyphosphatase"],["InterPro%3AIPR022371","Exopolyphosphatase"]]},{"id":"GO:0004457","l":"lactate dehydrogenase activity","na":1,"nb":5,"a":[["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]],"b":[["GO%3A0047809","D-lactate dehydrogenase activity"],["GO%3A0140171","L-lactate dehydrogenase activity"],["GO%3A0004457","lactate dehydrogenase activity"],["NCBIfam%3ANF033901","FMN-dependent L-lactate dehydrogenase LldD"],["NCBIfam%3ANF045670","L-lactate dehydrogenase (quinone) large subunit LdhH"]]},{"id":"GO:0006829","l":"zinc ion transport","na":1,"nb":5,"a":[["environment/zinc_tolerant.html","zinc tolerant"]],"b":[["GO%3A0071577","zinc ion transmembrane transport"],["GO%3A0006829","zinc ion transport"],["NCBIfam%3ANF002923","CDF family zinc transporter ZitB"],["NCBIfam%3ANF007090","zinc ABC transporter ATP-binding protein ZnuC"],["NCBIfam%3ANF007091","zinc ABC transporter substrate-binding protein ZnuA"]]},{"id":"GO:0008861","l":"formate C-acetyltransferase activity","na":1,"nb":5,"a":[["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"]],"b":[["EC%3A2.3.1.54","formate C-acetyltransferase"],["RHEA%3A11844","formate + acetyl-CoA = pyruvate + CoA"],["GO%3A0008861","formate C-acetyltransferase activity"],["NCBIfam%3ATIGR01255","formate C-acetyltransferase"],["MCSA%3A30","formate C-acetyltransferase"]]},{"id":"GO:0016692","l":"NADH peroxidase activity","na":1,"nb":5,"a":[["environment/aerotolerant.html","aerotolerant"]],"b":[["EC%3A1.11.1.1","NADH peroxidase"],["RHEA%3A18509","H2O2 + NADH + H(+) = NAD(+) + 2 H2O"],["GO%3A0016692","NADH peroxidase activity"],["NCBIfam%3ANF045767","rubrerythrin"],["MCSA%3A895","NADH peroxidase"]]},{"id":"GO:0016920","l":"pyroglutamyl-peptidase activity","na":1,"nb":5,"a":[["physiology/pyrrolidonyl_arylamidase_activity.html","pyrrolidonyl arylamidase activity"]],"b":[["EC%3A3.4.19.3","pyroglutamyl-peptidase I"],["EC%3A3.4.19.6","pyroglutamyl-peptidase II"],["GO%3A0016920","pyroglutamyl-peptidase activity"],["NCBIfam%3ATIGR00504","pyroglutamyl-peptidase I"],["MCSA%3A633","pyroglutamyl-peptidase I"]]},{"id":"GO:0016990","l":"arginine deiminase activity","na":1,"nb":5,"a":[["physiology/arginine_dihydrolase_activity.html","arginine dihydrolase activity"]],"b":[["EC%3A3.5.3.6","arginine deiminase"],["RHEA%3A19597","L-arginine + H2O = L-citrulline + NH4(+)"],["GO%3A0016990","arginine deiminase activity"],["NCBIfam%3ANF002381","arginine deiminase"],["NCBIfam%3ATIGR01078","arginine deiminase"]]},{"id":"GO:0030420","l":"establishment of competence for transformation","na":1,"nb":5,"a":[["physiology/natural_competence.html","natural competence"]],"b":[["GO%3A0030420","establishment of competence for transformation"],["NCBIfam%3ANF008580","ComEC family protein"],["NCBIfam%3ANF040999","competence type IV pilus major pilin ComGC"],["NCBIfam%3ANF018087","competence protein ComK"],["Pfam%3APF06338","ComK protein"]]},{"id":"GO:0030634","l":"carbon fixation by acetyl-CoA pathway","na":5,"nb":1,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"],["physiology/autotrophic.html","autotrophic"]],"b":[["GO%3A0030634","carbon fixation by acetyl-CoA pathway"]]},{"id":"GO:0044096","l":"type IV pilus","na":5,"nb":1,"a":[["ecology/predatory_bacterium.html","predatory bacterium"],["morphology/motile.html","motile"],["morphology/motility.html","motility"],["morphology/twitching_motility.html","twitching motility"],["morphology/type_iv_pilus.html","type IV pilus"]],"b":[["GO%3A0044096","type IV pilus"]]},{"id":"GO:0047646","l":"alkanal monooxygenase (FMN-linked) activity","na":1,"nb":5,"a":[["physiology/bioluminescence.html","bioluminescence"]],"b":[["EC%3A1.14.14.3","bacterial luciferase"],["RHEA%3A17181","a long-chain fatty aldehyde + FMNH2 + O2 = a long-chain fatty acid + hnu + FMN + H2O + 2 H(+)"],["GO%3A0047646","alkanal monooxygenase (FMN-linked) activity"],["InterPro%3AIPR018235","Bacterial luciferase, conserved site"],["MCSA%3A132","alkanal monooxygenase (FMN-linked)"]]},{"id":"GO:0160097","l":"reverse gyrase activity","na":5,"nb":1,"a":[["environment/extreme_hyperthermophilic.html","extreme hyperthermophilic"],["environment/hyperthermophilic.html","hyperthermophilic"],["environment/temperature_optimum_high.html","temperature optimum high"],["environment/temperature_range_high.html","temperature range high"],["environment/thermophilic.html","thermophilic"]],"b":[["GO%3A0160097","reverse gyrase activity"]]},{"id":"InterPro:IPR001425","l":"","na":1,"nb":5,"a":[["physiology/phototrophic.html","phototrophic"]],"b":[["Pfam%3APF01036","Bacteriorhodopsin-like protein"],["PANTHER%3APTHR28286","Archaeal/bacterial/fungal rhodopsins"],["PRINTS%3APR00251","Bacterial opsin signature"],["PROSITE%3APS00950","Bacterial rhodopsins signature 1"],["PROSITE%3APS00327","Bacterial rhodopsins retinal binding site"]]},{"id":"InterPro:IPR006314","l":"","na":1,"nb":5,"a":[["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["Pfam%3APF21105","DyP dimeric alpha+beta barrel domain"],["Pfam%3APF20628","Dyp-type peroxidase, C-terminal"],["Pfam%3APF04261","Dyp-type peroxidase, N-terminal"],["PANTHER%3APTHR30521","DEFERROCHELATASE/PEROXIDASE"],["Pfam%3APF10518","TAT (twin-arginine translocation) pathway signal sequence"]]},{"id":"InterPro:IPR013765","l":"","na":1,"nb":5,"a":[["physiology/natural_competence.html","natural competence"]],"b":[["HAMAP%3AMF_00268","Protein RecA [recA]"],["PANTHER%3APTHR45900","RECA"],["Pfam%3APF14890","Intein splicing domain"],["PRINTS%3APR00142","RecA protein signature"],["PROSITE%3APS00321","recA signature"]]},{"id":"METPO:1000844","l":"Methanogenesis","na":5,"nb":1,"a":[["metabolism/acetoclastic_methanogenesis.html","acetoclastic methanogenesis"],["metabolism/hydrogenotrophic_methanogenesis.html","hydrogenotrophic methanogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/methyl_based_methanogenesis.html","methyl-based methanogenesis"],["metabolism/syntrophy.html","Syntrophy"]],"b":[["METPO%3A1000844","Methanogenesis"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":5,"nb":1,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"],["physiology/hydrogenotrophic.html","hydrogenotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"]],"b":[["TED%3AAF-A0A367PA30-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A367PA30-F1-model_v4_TED01"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":1,"nb":5,"a":[["morphology/gliding.html","gliding"]],"b":[["TED%3AAF-A0A4Y6CF56-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y6CF56-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6CNZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Y6CNZ1-F1-model_v4_TED02"],["TED%3AAF-A0A7Y4IIX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4IIX4-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6B7F9-F1-model_v4_TED01","TED novel fold AF-A0A4Y6B7F9-F1-model_v4_TED01"],["TED%3AAF-A0A7Y4IR70-F1-model_v4_TED01","TED novel fold AF-A0A7Y4IR70-F1-model_v4_TED01"]]},{"id":"NCBITaxon:435","l":"Acetobacter aceti","na":1,"nb":5,"a":[["environment/acidotolerant.html","acidotolerant"]],"b":[["Pfam%3APF13336","Acetyl-CoA hydrolase/transferase C-terminal domain"],["Pfam%3APF02550","Acetyl-CoA hydrolase/transferase N-terminal domain"],["Pfam%3APF13442","Cytochrome C oxidase, cbb3-type, subunit III"],["Pfam%3APF06481","COX Aromatic Rich Motif"],["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"]]},{"id":"NCBITaxon:959","l":"Bdellovibrio bacteriovorus","na":1,"nb":5,"a":[["ecology/predatory_bacterium.html","predatory bacterium"]],"b":[["TED%3AAF-A0A150WJL7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A150WJL7-F1-model_v4_TED01"],["TED%3AAF-A0A150WK21-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A150WK21-F1-model_v4_TED01"],["TED%3AAF-A0A1Z3N7G2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Z3N7G2-F1-model_v4_TED02"],["TED%3AAF-A0A150WR18-F1-model_v4_TED04","TED novel fold AF-A0A150WR18-F1-model_v4_TED04"],["TED%3AAF-A0A162GEG0-F1-model_v4_TED02","TED novel fold AF-A0A162GEG0-F1-model_v4_TED02"]]},{"id":"UniProt:P00807","l":"","na":1,"nb":5,"a":[["physiology/antibiotic_resistance.html","antibiotic resistance"]],"b":[["proteintraitsmech%3AMEROPS_CLEAVAGE_S26_016","SpsB signal peptidase cleavage specificity"],["Pfam%3APF08139","Prokaryotic membrane lipoprotein lipid attachment site"],["proteintraitsmech%3ABIOLIP_CEM","CEM-binding site"],["proteintraitsmech%3ABIOLIP_CO3","CO3-binding site"],["proteintraitsmech%3ABIOLIP_TEM","TEM-binding site"]]},{"id":"UniProt:P0A953","l":"","na":1,"nb":5,"a":[["physiology/homeoviscous_adaptation.html","homeoviscous adaptation"]],"b":[["GO%3A1903966","monounsaturated fatty acid biosynthetic process"],["NCBIfam%3ANF005935","beta-ketoacyl-ACP synthase I"],["CDD%3Acd00834","KAS_I_II"],["MCSA%3A292","beta-ketoacyl-[acyl carrier protein] synthase I"],["proteintraitsmech%3ABIOLIP_6W5","6W5-binding site"]]},{"id":"UniProt:P0ACQ4","l":"","na":1,"nb":5,"a":[["physiology/oxidative_stress_response.html","oxidative stress response"]],"b":[["GO%3A2000142","regulation of DNA-templated transcription initiation"],["GO%3A0051409","response to nitrosative stress"],["NCBIfam%3ANF008361","DNA-binding transcriptional regulator OxyR"],["CDD%3Acd08411","PBP2_OxyR"],["Pfam%3APF00126","Bacterial regulatory helix-turn-helix protein, lysR family"]]},{"id":"UniProt:Q99ZW2","l":"","na":1,"nb":5,"a":[["genomics/crispr_cas_system.html","CRISPR-Cas system"]],"b":[["Pfam%3APF16595","PAM-interacting domain of CRISPR-associated endonuclease Cas9"],["Pfam%3APF22702","Cas9 RuvC domain"],["Pfam%3APF13395","HNH endonuclease"],["Pfam%3APF16593","Bridge helix of CRISPR-associated endonuclease Cas9"],["Pfam%3APF16592","REC lobe of CRISPR-associated endonuclease Cas9"]]},{"id":"CHEBI:16856","l":"glutathione","na":1,"nb":4,"a":[["environment/zinc_tolerant.html","zinc tolerant"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16856","requires glutathione"],["MCSA%3A359","lactoglutathione lyase"],["MCSA%3A32","lactoylglutathione lyase"],["proteintraitsmech%3ABIOLIP_GSH","GSH-binding site"]]},{"id":"CHEBI:25195","l":"","na":1,"nb":4,"a":[["environment/mercury_tolerant.html","mercury tolerant"]],"b":[["proteintraitsmech%3AMETALPDB_HG_DINUCLEAR","dinuclear mercury site"],["proteintraitsmech%3AMETALPDB_HG_MONONUCLEAR","mononuclear mercury site"],["proteintraitsmech%3AMETALPDB_HG_TETRANUCLEAR","tetranuclear mercury site"],["proteintraitsmech%3AMETALPDB_HG_TRINUCLEAR","trinuclear mercury site"]]},{"id":"CHEBI:38201","l":"","na":4,"nb":1,"a":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["physiology/aerobic_anoxygenic_phototrophy.html","aerobic anoxygenic phototrophy"],["physiology/photoheterotrophic.html","photoheterotrophic"],["physiology/phototrophic.html","phototrophic"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:64709","l":"organic acid","na":1,"nb":4,"a":[["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"]],"b":[["TCDB%3A2.A.28","The Bile Acid:Na+ Symporter (BASS) Family"],["TCDB%3A2.A.23","The Dicarboxylate/Amino Acid:Cation (Na+ or H+) Symporter (DAACS) Family"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.25","The Outer Membrane Porin (Opr) Family"]]},{"id":"GO:0004503","l":"tyrosinase activity","na":1,"nb":4,"a":[["morphology/black_pigmented.html","black pigmented"]],"b":[["EC%3A1.14.18.1","tyrosinase"],["RHEA%3A18117","L-tyrosine + O2 = L-dopaquinone + H2O"],["GO%3A0004503","tyrosinase activity"],["NCBIfam%3ANF047834","tyrosinase MelC2"]]},{"id":"GO:0005575","l":"cellular_component","na":1,"nb":4,"a":[["upper/biological_process.html","biological process"]],"b":[["GO%3A0110165","cellular anatomical structure"],["GO%3A0005575","cellular_component"],["GO%3A0032991","protein-containing complex"],["GO%3A0044423","virion component"]]},{"id":"GO:0008923","l":"lysine decarboxylase activity","na":1,"nb":4,"a":[["physiology/lysine_decarboxylase_activity.html","lysine decarboxylase activity"]],"b":[["EC%3A4.1.1.18","lysine decarboxylase"],["RHEA%3A22352","L-lysine + H(+) = cadaverine + CO2"],["GO%3A0008923","lysine decarboxylase activity"],["proteintraitsmech%3ABIOLIP_G4P","G4P-binding site"]]},{"id":"GO:0015386","l":"potassium:proton antiporter activity","na":1,"nb":4,"a":[["environment/ph_optimum_mid2.html","pH optimum mid2"]],"b":[["RHEA%3A29467","K(+)(in) + H(+)(out) = K(+)(out) + H(+)(in)"],["ComplexPortal%3ACPX-3090","Glutathione-regulated potassium-efflux system KefB-KefG complex"],["ComplexPortal%3ACPX-2543","Glutathione-regulated potassium-efflux system KefC-KefF complex"],["GO%3A0015386","potassium:proton antiporter activity"]]},{"id":"GO:0015946","l":"methanol oxidation","na":1,"nb":4,"a":[["metabolism/methanol_oxidation.html","methanol oxidation"]],"b":[["GO%3A0015946","methanol oxidation"],["NCBIfam%3ANF014379","Methanol dehydrogenase beta subunit"],["Pfam%3APF02315","Methanol dehydrogenase beta subunit"],["InterPro%3AIPR036557","Methanol dehydrogenase, beta subunit superfamily"]]},{"id":"GO:0016285","l":"alanyl aminopeptidase activity","na":1,"nb":4,"a":[["physiology/alanine_arylamidase_activity.html","alanine arylamidase activity"]],"b":[["EC%3A3.4.11.14","cytosol alanyl aminopeptidase"],["EC%3A3.4.11.2","membrane alanyl aminopeptidase"],["GO%3A0016285","alanyl aminopeptidase activity"],["proteintraitsmech%3ABIOLIP_37E","37E-binding site"]]},{"id":"GO:0019253","l":"reductive pentose-phosphate cycle","na":4,"nb":1,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["physiology/autotrophic.html","autotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["GO%3A0019253","reductive pentose-phosphate cycle"]]},{"id":"GO:0019333","l":"denitrification pathway","na":1,"nb":4,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"]],"b":[["GO%3A0019333","denitrification pathway"],["NCBIfam%3ATIGR02161","periplasmic nitrate (or nitrite) reductase c-type cytochrome, NapC/NirT family"],["NCBIfam%3ATIGR04244","TAT-dependent nitrous-oxide reductase"],["NCBIfam%3ATIGR04246","Sec-dependent nitrous-oxide reductase"]]},{"id":"GO:0019418","l":"sulfide oxidation","na":1,"nb":4,"a":[["morphology/intracellular_inclusion.html","intracellular inclusion"]],"b":[["GO%3A0019418","sulfide oxidation"],["Reactome%3AR-HSA-1614517","Sulfide oxidation to sulfate"],["NCBIfam%3ATIGR02061","adenylyl-sulfate reductase subunit alpha"],["NCBIfam%3ATIGR02060","adenylyl-sulfate reductase subunit beta"]]},{"id":"GO:0019746","l":"hopanoid biosynthetic process","na":1,"nb":4,"a":[["environment/facultatively_acidophilic.html","facultatively acidophilic"]],"b":[["GO%3A0019746","hopanoid biosynthetic process"],["proteintraitsmech%3ASEED_SUBSYSTEM_Hopanoid_biosynthesis","Hopanoid biosynthesis"],["NCBIfam%3ATIGR04367","hopanoid C-3 methylase HpnR"],["NCBIfam%3ATIGR01507","squalene--hopene cyclase"]]},{"id":"GO:0032196","l":"transposition","na":1,"nb":4,"a":[["genomics/mobile_genetic_element.html","mobile genetic element"]],"b":[["GO%3A0006313","DNA transposition"],["GO%3A0032197","retrotransposition"],["GO%3A0032196","transposition"],["NCBIfam%3ATIGR03783","TraG family conjugative transposon ATPase"]]},{"id":"GO:0033740","l":"hydroxylamine oxidoreductase activity","na":1,"nb":4,"a":[["physiology/lithotrophic.html","lithotrophic"]],"b":[["EC%3A1.7.2.9","hydroxylamine oxidase"],["RHEA%3A45036","hydroxylamine + 3 Fe(III)-[cytochrome c] = nitric oxide + 3 Fe(II)-[cytochrome c] + 3 H(+)"],["GO%3A0033740","hydroxylamine oxidoreductase activity"],["proteintraitsmech%3ABIOLIP_HG1","HG1-binding site"]]},{"id":"GO:0033755","l":"sulfur oxygenase/reductase activity","na":1,"nb":4,"a":[["metabolism/disproportionation.html","Disproportionation"]],"b":[["EC%3A1.13.11.55","sulfur oxygenase/reductase"],["RHEA%3A13957","4 sulfur + O2 + 4 H2O = 2 hydrogen sulfide + 2 sulfite + 6 H(+)"],["GO%3A0033755","sulfur oxygenase/reductase activity"],["NCBIfam%3ANF047630","sulfur oxygenase/reductase"]]},{"id":"GO:0044569","l":"[Ni-Fe] hydrogenase complex","na":1,"nb":4,"a":[["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["ComplexPortal%3ACPX-281","Hydrogenase-1 complex"],["ComplexPortal%3ACPX-282","Hydrogenase-2 complex"],["GO%3A0044569","[Ni-Fe] hydrogenase complex"],["NCBIfam%3ANF053600","membrane-bound hydrogenase complex subunit MbhI"]]},{"id":"GO:0045436","l":"lycopene beta cyclase activity","na":1,"nb":4,"a":[["morphology/orange_pigmented.html","orange pigmented"]],"b":[["RHEA%3A32219","all-trans-lycopene = gamma-carotene"],["GO%3A0045436","lycopene beta cyclase activity"],["NCBIfam%3ATIGR01789","lycopene beta-cyclase CrtY"],["NCBIfam%3ANF045687","lycopene beta cyclase"]]},{"id":"GO:0047154","l":"methylmalonyl-CoA carboxytransferase activity","na":1,"nb":4,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["EC%3A2.1.3.1","methylmalonyl-CoA carboxytransferase"],["RHEA%3A20764","(S)-methylmalonyl-CoA + pyruvate = propanoyl-CoA + oxaloacetate"],["GO%3A0047154","methylmalonyl-CoA carboxytransferase activity"],["proteintraitsmech%3ABIOLIP_MCA","MCA-binding site"]]},{"id":"GO:0050605","l":"superoxide reductase activity","na":1,"nb":4,"a":[["environment/microaerotolerant.html","microaerotolerant"]],"b":[["EC%3A1.15.1.2","superoxide reductase"],["RHEA%3A21324","reduced [rubredoxin] + superoxide + 2 H(+) = oxidized [rubredoxin] + H2O2"],["GO%3A0050605","superoxide reductase activity"],["MCSA%3A660","superoxide reductase"]]},{"id":"InterPro:IPR005936","l":"","na":1,"nb":4,"a":[["environment/temperature_optimum_mid4.html","temperature optimum mid4"]],"b":[["HAMAP%3AMF_01458","ATP-dependent zinc metalloprotease FtsH [ftsH]"],["Pfam%3APF06480","FtsH Extracellular"],["PROSITE%3APS00674","AAA-protein family signature"],["Pfam%3APF21232","Yme1-like, N-terminal"]]},{"id":"InterPro:IPR005977","l":"","na":1,"nb":4,"a":[["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["HAMAP%3AMF_00533","Nitrogenase iron protein [nifH]"],["PROSITE%3APS00746","NifH/frxC family signature 1"],["PROSITE%3APS00692","NifH/frxC family signature 2"]]},{"id":"InterPro:IPR051315","l":"","na":1,"nb":4,"a":[["physiology/chemotaxis.html","chemotaxis"]],"b":[["Pfam%3APF01584","CheW-like domain"],["Pfam%3APF09078","CheY binding"],["Pfam%3APF02895","Signal transducing histidine kinase, homodimeric domain"],["PANTHER%3APTHR43395","SENSOR HISTIDINE KINASE CHEA"]]},{"id":"METPO:1000620","l":"halophilic","na":1,"nb":4,"a":[["environment/halophilic.html","halophilic"]],"b":[["METPO%3A1000628","extremely halophilic"],["METPO%3A1000620","halophilic"],["METPO%3A1000623","moderately halophilic"],["METPO%3A1000625","slightly halophilic"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":1,"nb":4,"a":[["physiology/photoheterotrophic.html","photoheterotrophic"]],"b":[["TED%3AAF-A0A7W3UB61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W3UB61-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F4B3-F1-model_v4_TED01","TED novel fold AF-A0A0D7F4B3-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F6R4-F1-model_v4_TED01","TED novel fold AF-A0A0D7F6R4-F1-model_v4_TED01"],["TED%3AAF-A0A7W3YI15-F1-model_v4_TED02","TED novel fold AF-A0A7W3YI15-F1-model_v4_TED02"]]},{"id":"NCBITaxon:258594","l":"Rhodopseudomonas palustris CGA009","na":1,"nb":4,"a":[["physiology/photoorganoheterotrophic.html","photoorganoheterotrophic"]],"b":[["Pfam%3APF01322","Cytochrome C'"],["PROSITE%3APS00969","Antenna complexes beta subunits signature"],["PROSITE%3APS00936","Ribosomal protein L35 signature"],["PROSITE%3APS01181","Ribosomal protein S21 signature"]]},{"id":"NCBITaxon:2822231","l":"Phanerodontia chrysosporium","na":1,"nb":4,"a":[["metabolism/manganese_oxidation.html","manganese oxidation"]],"b":[["Pfam%3APF18637","Aldos-2-ulose dehydratase/isomerase (AUDH) Cupin domain"],["Pfam%3APF16010","Cytochrome domain of cellobiose dehydrogenase"],["PROSITE%3APS00623","GMC oxidoreductases signature 1"],["Pfam%3APF22301","Aldos-2-ulose dehydratase, beta-propeller domain"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":1,"nb":4,"a":[["ecology/plant_pathogen.html","plant pathogen"]],"b":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"],["TED%3AAF-A0A085UKV7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085UKV7-F1-model_v4_TED01"],["TED%3AAF-A0A4R6IU28-F1-model_v4_TED02","TED novel fold AF-A0A4R6IU28-F1-model_v4_TED02"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans Pd1222","na":1,"nb":4,"a":[["physiology/mixotrophic.html","mixotrophic"]],"b":[["Pfam%3APF27518","Heme exporter protein C"],["Pfam%3APF22039","Imidazolonepropionase-like composite domain, bacteria"],["PROSITE%3APS01181","Ribosomal protein S21 signature"],["Pfam%3APF02239","Cytochrome D1 heme domain"]]},{"id":"NCBITaxon:55601","l":"Vibrio anguillarum","na":1,"nb":4,"a":[["genomics/sspabcd_sspfgh_system.html","SspABCD-SspFGH system"]],"b":[["Pfam%3APF17327","Acyl homoserine lactone synthase"],["PROSITE%3APS00949","Autoinducer synthase family signature"],["TED%3AAF-A0A241NLV5-F1-model_v4_TED03","TED novel fold AF-A0A241NLV5-F1-model_v4_TED03"],["TED%3AAF-A0A290PUC4-F1-model_v4_TED02","TED novel fold AF-A0A290PUC4-F1-model_v4_TED02"]]},{"id":"UniProt:P00459","l":"","na":1,"nb":4,"a":[["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["PROSITE%3APS00746","NifH/frxC family signature 1"],["PROSITE%3APS00692","NifH/frxC family signature 2"],["MCSA%3A212","nitrogenase"]]},{"id":"UniProt:P0C2S5","l":"","na":1,"nb":4,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["EC%3A3.2.1.176","cellulose 1,4-beta-cellobiosidase (reducing end)"],["Pfam%3APF00404","Dockerin type I domain"],["PROSITE%3APS00448","Clostridium cellulosome enzymes repeated domain signature"],["Pfam%3APF02011","Glycosyl hydrolase family 48"]]},{"id":"UniProt:P16033","l":"","na":4,"nb":1,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["proteintraitsmech%3ABIOLIP_PHO","PHO-binding site"]]},{"id":"CHEBI:16170","l":"mercury(0)","na":1,"nb":3,"a":[["environment/mercury_tolerant.html","mercury tolerant"]],"b":[["EC%3A1.16.1.1","mercury(II) reductase"],["RHEA%3A23856","Hg + NADP(+) + H(+) = Hg(2+) + NADPH"],["MCSA%3A277","mercury(II) reductase"]]},{"id":"CHEBI:17203","l":"L-proline","na":1,"nb":3,"a":[["environment/non_halophilic.html","non halophilic"]],"b":[["MCSA%3A403","astacin"],["MCSA%3A379","Xaa-Pro aminopeptidase"],["proteintraitsmech%3ABIOLIP_PRO","PRO-binding site"]]},{"id":"CHEBI:17513","l":"","na":3,"nb":1,"a":[["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/fermentation.html","Fermentation"],["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"]],"b":[["MCSA%3A119","pyruvate:ferredoxin oxidoreducatse"]]},{"id":"CHEBI:49432","l":"","na":1,"nb":3,"a":[["environment/moderately_halophilic.html","moderately halophilic"]],"b":[["TCDB%3A2.A.15","The Betaine/Carnitine/Choline Transporter (BCCT) Family"],["TCDB%3A2.A.56","The Tripartite ATP-independent Periplasmic Transporter (TRAP-T) Family"],["proteintraitsmech%3ABIOLIP_6CS","6CS-binding site"]]},{"id":"CHEBI:50699","l":"oligosaccharide","na":1,"nb":3,"a":[["metabolism/biopolymer_degradation.html","biopolymer degradation"]],"b":[["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"]]},{"id":"CHEBI:72695","l":"","na":3,"nb":1,"a":[["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"],["physiology/heterotrophic.html","heterotrophic"]],"b":[["TCDB%3A1.A.24","The Gap Junction-forming Connexin (Connexin) Family"]]},{"id":"GO:0009505","l":"plant-type cell wall","na":1,"nb":3,"a":[["ecology/plant_pathogen.html","plant pathogen"]],"b":[["GO%3A0009505","plant-type cell wall"],["GO%3A0009530","primary cell wall"],["GO%3A0009531","secondary cell wall"]]},{"id":"GO:0016160","l":"amylase activity","na":1,"nb":3,"a":[["physiology/amylase_activity.html","amylase activity"]],"b":[["GO%3A0004556","alpha-amylase activity"],["GO%3A0016160","amylase activity"],["GO%3A0016161","beta-amylase activity"]]},{"id":"GO:0016690","l":"diarylpropane peroxidase activity","na":1,"nb":3,"a":[["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["EC%3A1.11.1.14","lignin peroxidase"],["RHEA%3A30271","2 (3,4-dimethoxyphenyl)methanol + H2O2 = 2 (3,4-dimethoxyphenyl)methanol radical + 2 H2O"],["GO%3A0016690","diarylpropane peroxidase activity"]]},{"id":"GO:0042763","l":"intracellular immature spore","na":1,"nb":3,"a":[["morphology/spore_forming.html","spore forming"]],"b":[["GO%3A0042764","ascospore-type prospore"],["GO%3A0042601","endospore-forming forespore"],["GO%3A0042763","intracellular immature spore"]]},{"id":"GO:0043158","l":"heterocyst development","na":1,"nb":3,"a":[["morphology/heterocyst.html","heterocyst"]],"b":[["GO%3A0043158","heterocyst development"],["NCBIfam%3ANF045514","heterocyst development glycosyltransferase HepC"],["NCBIfam%3ANF015533","Peptidase family S48"]]},{"id":"GO:0044297","l":"cell body","na":1,"nb":3,"a":[["morphology/spiral_shaped.html","spiral shaped"]],"b":[["GO%3A0044297","cell body"],["GO%3A0043025","neuronal cell body"],["GO%3A1990017","somatic portion of tanycyte"]]},{"id":"GO:0050137","l":"NADPH peroxidase activity","na":1,"nb":3,"a":[["environment/aerotolerant.html","aerotolerant"]],"b":[["EC%3A1.11.1.2","NADPH peroxidase"],["RHEA%3A15173","H2O2 + NADPH + H(+) = NADP(+) + 2 H2O"],["GO%3A0050137","NADPH peroxidase activity"]]},{"id":"GO:0102036","l":"methyltetrahydrofolate:corrinoid/iron-sulfur protein methyltransferase activity","na":1,"nb":3,"a":[["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"]],"b":[["EC%3A2.1.1.258","5-methyltetrahydrofolate:corrinoid/iron-sulfur protein Co-methyltransferase"],["RHEA%3A45200","methyl-Co(III)-[corrinoid Fe-S protein] + (6S)-5,6,7,8-tetrahydrofolate = Co(I)-[corrinoid Fe-S protein] + (6S)-5-methyl-5,6,7,8-tetrahydrofolate + H(+)"],["GO%3A0102036","methyltetrahydrofolate:corrinoid/iron-sulfur protein methyltransferase activity"]]},{"id":"InterPro:IPR005001","l":"","na":1,"nb":3,"a":[["physiology/stress_response.html","stress response"]],"b":[["Pfam%3APF17209","Hfq protein"],["HAMAP%3AMF_00436","RNA-binding protein Hfq [hfq]"],["PANTHER%3APTHR34772","RNA-BINDING PROTEIN HFQ"]]},{"id":"InterPro:IPR020823","l":"","na":1,"nb":3,"a":[["morphology/sarcina_arrangement.html","sarcina arrangement"]],"b":[["Pfam%3APF14450","Cell division protein FtsA"],["HAMAP%3AMF_02033","Cell division protein FtsA [ftsA]"],["Pfam%3APF11983","Cell division protein FtsA, C-terminal"]]},{"id":"InterPro:IPR052028","l":"","na":1,"nb":3,"a":[["physiology/persister_cell_formation.html","persister cell formation"]],"b":[["Pfam%3APF13657","HipA N-terminal domain"],["Pfam%3APF07804","HipA-like C-terminal domain"],["PANTHER%3APTHR37419","SERINE/THREONINE-PROTEIN KINASE TOXIN HIPA"]]},{"id":"InterPro:IPR052159","l":"","na":1,"nb":3,"a":[["physiology/natural_competence.html","natural competence"]],"b":[["Pfam%3APF13567","Domain of unknown function (DUF4131)"],["PANTHER%3APTHR30619","DNA INTERNALIZATION/COMPETENCE PROTEIN COMEC/REC2"],["Pfam%3APF03772","Competence protein"]]},{"id":"METPO:1000622","l":"halotolerant","na":3,"nb":1,"a":[["environment/halotolerant.html","halotolerant"],["environment/nacl_delta_low.html","NaCl delta low"],["environment/slightly_halophilic.html","slightly halophilic"]],"b":[["METPO%3A1000622","halotolerant"]]},{"id":"NCBITaxon:1639","l":"Listeria monocytogenes","na":1,"nb":3,"a":[["environment/psychrotolerant.html","psychrotolerant"]],"b":[["TED%3AAF-A0A6Z1JB74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6Z1JB74-F1-model_v4_TED01"],["TED%3AAF-A0A5Z1VYX2-F1-model_v4_TED01","TED novel fold AF-A0A5Z1VYX2-F1-model_v4_TED01"],["TED%3AAF-A0A823IT06-F1-model_v4_TED02","TED novel fold AF-A0A823IT06-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1665","l":"Arthrobacter globiformis","na":1,"nb":3,"a":[["morphology/gram_variable.html","gram variable"]],"b":[["Pfam%3APF21994","AGAO-like N2 domain"],["Pfam%3APF18835","Beta helix repeat of Inulin fructotransferase"],["TED%3AAF-A0A328HCX7-F1-model_v4_TED02","TED novel fold AF-A0A328HCX7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1708","l":"Cellulomonas fimi","na":1,"nb":3,"a":[["metabolism/biopolymer_degradation.html","biopolymer degradation"]],"b":[["Pfam%3APF00553","Cellulose binding domain"],["PROSITE%3APS00561","CBM2a (carbohydrate-binding type-2) domain signature"],["PROSITE%3APS00591","Glycosyl hydrolases family 10 (GH10) active site"]]},{"id":"NCBITaxon:1717","l":"Corynebacterium diphtheriae","na":1,"nb":3,"a":[["morphology/dumbbell_shaped.html","dumbbell shaped"]],"b":[["Pfam%3APF08051","Erythromycin resistance leader peptide"],["PROSITE%3APS01007","Transposases, Mutator family, signature"],["TED%3AAF-A0A811G0F8-F1-model_v4_TED05","TED novel fold AF-A0A811G0F8-F1-model_v4_TED05"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":1,"nb":3,"a":[["physiology/alkaline_phosphatase_activity.html","alkaline phosphatase activity"]],"b":[["Pfam%3APF03069","Acetamidase/Formamidase family"],["PROSITE%3APS00818","Dps protein family signature 1"],["Pfam%3APF13810","Domain of unknown function (DUF4185)"]]},{"id":"NCBITaxon:2242","l":"Halobacterium salinarum","na":3,"nb":1,"a":[["environment/extremely_halophilic.html","extremely halophilic"],["environment/halophilic.html","halophilic"],["morphology/intracellular_inclusion.html","intracellular inclusion"]],"b":[["Pfam%3APF07232","Putative rep protein (DUF1424)"]]},{"id":"NCBITaxon:2283","l":"Acidianus ambivalens","na":1,"nb":3,"a":[["metabolism/disproportionation.html","Disproportionation"]],"b":[["Pfam%3APF07680","TQO small subunit DoxA"],["Pfam%3APF04173","TQO small subunit DoxD"],["TED%3AAF-O57695-F1-model_v4_TED01","TED highly-symmetric fold AF-O57695-F1-model_v4_TED01"]]},{"id":"NCBITaxon:243233","l":"Methylococcus capsulatus Bath","na":1,"nb":3,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["Pfam%3APF17850","CysA C-terminal regulatory domain"],["Pfam%3APF02461","Ammonia monooxygenase"],["TED%3AAF-Q604F4-F1-model_v4_TED02","TED novel fold AF-Q604F4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:273121","l":"Wolinella succinogenes ATCC 29543","na":1,"nb":3,"a":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]],"b":[["Pfam%3APF26365","Apolipoprotein N-acyltransferase integral membrane domain"],["Pfam%3APF02335","Cytochrome c552"],["PROSITE%3APS00883","Nickel-dependent hydrogenases b-type cytochrome subunit signature 2"]]},{"id":"NCBITaxon:44001","l":"Caldicellulosiruptor saccharolyticus","na":1,"nb":3,"a":[["metabolism/xylan_degradation.html","xylan degradation"]],"b":[["Pfam%3APF12891","Glycoside hydrolase family 44"],["PROSITE%3APS01027","Glycosyl hydrolases family 39 active site"],["Pfam%3APF02011","Glycosyl hydrolase family 48"]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":1,"nb":3,"a":[["other/voges_proskauer_test_positive.html","Voges-Proskauer test positive"]],"b":[["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"],["PROSITE%3APS00896","LacY family proton/sugar symporters signature 1"],["PROSITE%3APS00897","LacY family proton/sugar symporters signature 2"]]},{"id":"NCBITaxon:584","l":"Proteus mirabilis","na":1,"nb":3,"a":[["morphology/swarming_motility.html","swarming motility"]],"b":[["Pfam%3APF05280","Flagellar transcriptional activator (FlhC)"],["TED%3AAF-A0A1Z1SXV6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z1SXV6-F1-model_v4_TED01"],["TED%3AAF-A0A7U1CMJ9-F1-model_v4_TED01","TED novel fold AF-A0A7U1CMJ9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":1,"nb":3,"a":[["morphology/polar_flagellation.html","polar flagellation"]],"b":[["Pfam%3APF04205","FMN-binding domain"],["Pfam%3APF10795","Protein of unknown function (DUF2607)"],["TED%3AAF-A0A1W6U0N2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W6U0N2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:94122","l":"Shewanella sp. ANA-3","na":1,"nb":3,"a":[["metabolism/arsenate_respiration.html","arsenate respiration"]],"b":[["Pfam%3APF03883","Peroxide stress protein YaaA"],["Pfam%3APF04751","Dual-action ribosomal maturation protein DarP"],["Pfam%3APF04356","Protein of unknown function (DUF489)"]]},{"id":"UniProt:P0AAI3","l":"","na":1,"nb":3,"a":[["physiology/heat_shock_response.html","heat shock response"]],"b":[["ComplexPortal%3ACPX-5046","FtsH-HflKC complex"],["NCBIfam%3ANF008004","ATP-dependent zinc metalloprotease FtsH"],["CATH%3A3.30.720.210","CATH homologous superfamily 3.30.720.210"]]},{"id":"UniProt:P0C0Y9","l":"","na":1,"nb":3,"a":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"]],"b":[["proteintraitsmech%3ABIOLIP_BPH","BPH-binding site"],["proteintraitsmech%3ABIOLIP_SPO","SPO-binding site"],["proteintraitsmech%3ABIOLIP_U10","U10-binding site"]]},{"id":"UniProt:P0CJ63","l":"","na":1,"nb":3,"a":[["physiology/quorum_sensing.html","quorum sensing"]],"b":[["EC%3A3.1.1.81","quorum-quenching N-acyl-homoserine lactonase"],["RHEA%3A22576","an N-acyl-L-homoserine lactone + H2O = an N-acyl-L-homoserine + H(+)"],["proteintraitsmech%3ABIOLIP_C6L","C6L-binding site"]]},{"id":"UniProt:P41020","l":"","na":1,"nb":3,"a":[["physiology/urease_activity.html","urease activity"]],"b":[["PROSITE%3APS01120","Urease nickel ligands signature"],["PROSITE%3APS00145","Urease active site"],["proteintraitsmech%3ABIOLIP_HQE","HQE-binding site"]]},{"id":"UniProt:Q8GBW6","l":"","na":1,"nb":3,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["EC%3A2.1.3.1","methylmalonyl-CoA carboxytransferase"],["RHEA%3A20764","(S)-methylmalonyl-CoA + pyruvate = propanoyl-CoA + oxaloacetate"],["proteintraitsmech%3ABIOLIP_MCA","MCA-binding site"]]},{"id":"CHEBI:15350","l":"","na":2,"nb":1,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["proteintraitsmech%3ABIOLIP_UVW","UVW-binding site"]]},{"id":"CHEBI:15539","l":"","na":2,"nb":1,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"],["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"]],"b":[["proteintraitsmech%3ABIOLIP_1VU","1VU-binding site"]]},{"id":"CHEBI:16136","l":"hydrogen sulfide","na":2,"nb":1,"a":[["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/photolithotrophic.html","photolithotrophic"]],"b":[["MCSA%3A398","sulfite reductase (NADPH)"]]},{"id":"CHEBI:16761","l":"","na":1,"nb":2,"a":[["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16761","requires ADP"],["proteintraitsmech%3ABIOLIP_ADP","ADP-binding site"]]},{"id":"CHEBI:26666","l":"","na":1,"nb":2,"a":[["physiology/chemoheterotrophic.html","chemoheterotrophic"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.73","The Short Chain Fatty Acid Uptake (AtoE) Family"]]},{"id":"CHEBI:28265","l":"","na":1,"nb":2,"a":[["metabolism/methanogenesis.html","Methanogenesis"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_28265","requires coenzyme F430"],["proteintraitsmech%3ABIOLIP_F43","F43-binding site"]]},{"id":"CHEBI:49537","l":"","na":2,"nb":1,"a":[["morphology/motility.html","motility"],["morphology/vibrio_shaped.html","vibrio shaped"]],"b":[["proteintraitsmech%3ABIOLIP_C2E","C2E-binding site"]]},{"id":"GO:0005983","l":"starch catabolic process","na":1,"nb":2,"a":[["metabolism/starch_degradation.html","starch degradation"]],"b":[["GO%3A0005983","starch catabolic process"],["NCBIfam%3ATIGR02103","pullulanase-type alpha-1,6-glucosidase"]]},{"id":"GO:0009321","l":"alkyl hydroperoxide reductase complex","na":1,"nb":2,"a":[["environment/microaerophilic.html","microaerophilic"]],"b":[["ComplexPortal%3ACPX-4862","Alkyl hydroperoxide reductase complex"],["GO%3A0009321","alkyl hydroperoxide reductase complex"]]},{"id":"GO:0009594","l":"detection of nutrient","na":1,"nb":2,"a":[["physiology/nutrient_adaptation.html","nutrient adaptation"]],"b":[["GO%3A0031318","detection of folic acid"],["GO%3A0009594","detection of nutrient"]]},{"id":"GO:0015250","l":"water channel activity","na":1,"nb":2,"a":[["environment/stenohaline.html","stenohaline"]],"b":[["GO%3A0015250","water channel activity"],["NCBIfam%3ANF003838","aquaporin Z"]]},{"id":"GO:0016231","l":"beta-N-acetylglucosaminidase activity","na":1,"nb":2,"a":[["metabolism/chitinolysis.html","chitinolysis"]],"b":[["GO%3A0016231","beta-N-acetylglucosaminidase activity"],["NCBIfam%3ANF041654","beta-N-acetylglucosaminidase"]]},{"id":"GO:0019332","l":"aerobic respiration, using nitrite as electron donor","na":2,"nb":1,"a":[["metabolism/complete_ammonia_oxidation.html","complete ammonia oxidation"],["metabolism/nitrification.html","nitrification"]],"b":[["GO%3A0019332","aerobic respiration, using nitrite as electron donor"]]},{"id":"GO:0044674","l":"methyl coenzyme M reductase complex","na":2,"nb":1,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/methanogenesis.html","Methanogenesis"]],"b":[["GO%3A0044674","methyl coenzyme M reductase complex"]]},{"id":"GO:0046358","l":"butyrate biosynthetic process","na":2,"nb":1,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"]],"b":[["GO%3A0046358","butyrate biosynthetic process"]]},{"id":"GO:0102252","l":"cellulose 1,4-beta-cellobiosidase activity (reducing end)","na":1,"nb":2,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["EC%3A3.2.1.176","cellulose 1,4-beta-cellobiosidase (reducing end)"],["GO%3A0102252","cellulose 1,4-beta-cellobiosidase activity (reducing end)"]]},{"id":"InterPro:IPR002102","l":"Cellulosome anchoring protein, cohesin domain","na":1,"nb":2,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["InterPro%3AIPR002102","Cellulosome anchoring protein, cohesin domain"],["Pfam%3APF00963","Cohesin domain"]]},{"id":"InterPro:IPR004596","l":"","na":2,"nb":1,"a":[["morphology/cell_length_large.html","cell length large"],["morphology/filament_shaped.html","filament shaped"]],"b":[["Pfam%3APF03846","Cell division inhibitor SulA"]]},{"id":"InterPro:IPR004753","l":"","na":1,"nb":2,"a":[["morphology/tailed_shaped.html","tailed shaped"]],"b":[["HAMAP%3AMF_02207","Cell shape-determining protein MreB [mreB]"],["PRINTS%3APR01652","Bacterial cell shape determinant MreB/Mbl protein signature"]]},{"id":"InterPro:IPR023028","l":"","na":1,"nb":2,"a":[["physiology/chemoheterotrophic.html","chemoheterotrophic"]],"b":[["HAMAP%3AMF_00196","Mannitol-1-phosphate 5-dehydrogenase [mtlD]"],["PROSITE%3APS00974","Mannitol dehydrogenases signature"]]},{"id":"InterPro:IPR039315","l":"","na":1,"nb":2,"a":[["physiology/chemotaxis.html","chemotaxis"]],"b":[["Pfam%3APF01584","CheW-like domain"],["PANTHER%3APTHR22617","CHEMOTAXIS SENSOR HISTIDINE KINASE-RELATED"]]},{"id":"METPO:1000604","l":"microaerophilic","na":2,"nb":1,"a":[["environment/microaerophilic.html","microaerophilic"],["environment/oxygen_preference.html","oxygen preference"]],"b":[["METPO%3A1000604","microaerophilic"]]},{"id":"METPO:1000609","l":"aerotolerant","na":2,"nb":1,"a":[["environment/aerotolerant.html","aerotolerant"],["environment/oxygen_preference.html","oxygen preference"]],"b":[["METPO%3A1000609","aerotolerant"]]},{"id":"METPO:1000612","l":"facultative oxygen preference","na":2,"nb":1,"a":[["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/oxygen_preference.html","oxygen preference"]],"b":[["METPO%3A1000612","facultative oxygen preference"]]},{"id":"METPO:1000617","l":"hyperthermophilic","na":1,"nb":2,"a":[["environment/hyperthermophilic.html","hyperthermophilic"]],"b":[["METPO%3A1000721","extreme hyperthermophilic"],["METPO%3A1000617","hyperthermophilic"]]},{"id":"METPO:1000632","l":"autotrophic","na":2,"nb":1,"a":[["physiology/autotrophic.html","autotrophic"],["physiology/trophic_type.html","trophic type"]],"b":[["METPO%3A1000632","autotrophic"]]},{"id":"METPO:1000641","l":"chemotrophic","na":2,"nb":1,"a":[["physiology/chemotrophic.html","chemotrophic"],["physiology/trophic_type.html","trophic type"]],"b":[["METPO%3A1000641","chemotrophic"]]},{"id":"METPO:1000642","l":"copiotrophic","na":2,"nb":1,"a":[["physiology/copiotrophic.html","copiotrophic"],["physiology/nutrient_adaptation.html","nutrient adaptation"]],"b":[["METPO%3A1000642","copiotrophic"]]},{"id":"METPO:1000644","l":"heterotrophic","na":2,"nb":1,"a":[["physiology/heterotrophic.html","heterotrophic"],["physiology/trophic_type.html","trophic type"]],"b":[["METPO%3A1000644","heterotrophic"]]},{"id":"METPO:1000654","l":"oligotrophic","na":2,"nb":1,"a":[["physiology/nutrient_adaptation.html","nutrient adaptation"],["physiology/oligotrophic.html","oligotrophic"]],"b":[["METPO%3A1000654","oligotrophic"]]},{"id":"METPO:1000657","l":"photoheterotrophic","na":2,"nb":1,"a":[["physiology/aerobic_anoxygenic_phototrophy.html","aerobic anoxygenic phototrophy"],["physiology/photoheterotrophic.html","photoheterotrophic"]],"b":[["METPO%3A1000657","photoheterotrophic"]]},{"id":"METPO:1000660","l":"phototrophic","na":2,"nb":1,"a":[["physiology/phototrophic.html","phototrophic"],["physiology/trophic_type.html","trophic type"]],"b":[["METPO%3A1000660","phototrophic"]]},{"id":"METPO:1000804","l":"Substrate-level phosphorylation","na":2,"nb":1,"a":[["metabolism/fermentation.html","Fermentation"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["METPO%3A1000804","Substrate-level phosphorylation"]]},{"id":"METPO:1003003","l":"acidophilic","na":1,"nb":2,"a":[["environment/acidophilic.html","acidophilic"]],"b":[["METPO%3A1003003","acidophilic"],["METPO%3A1003006","obligately acidophilic"]]},{"id":"METPO:1003008","l":"acidotolerant","na":2,"nb":1,"a":[["environment/acidotolerant.html","acidotolerant"],["environment/ph_delta.html","pH delta"]],"b":[["METPO%3A1003008","acidotolerant"]]},{"id":"METPO:1005001","l":"nitrification","na":2,"nb":1,"a":[["metabolism/complete_ammonia_oxidation.html","complete ammonia oxidation"],["metabolism/nitrification.html","nitrification"]],"b":[["METPO%3A1005001","nitrification"]]},{"id":"NCBITaxon:1032480","l":"Microlunatus phosphovorus NM-1","na":1,"nb":2,"a":[["morphology/polyphosphate_granule.html","polyphosphate granule"]],"b":[["TED%3AAF-F5XIG6-F1-model_v4_TED02","TED novel fold AF-F5XIG6-F1-model_v4_TED02"],["TED%3AAF-F5XQ24-F1-model_v4_TED04","TED novel fold AF-F5XQ24-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":1,"nb":2,"a":[["physiology/urease_activity.html","urease activity"]],"b":[["PROSITE%3APS01120","Urease nickel ligands signature"],["PROSITE%3APS00145","Urease active site"]]},{"id":"NCBITaxon:2190","l":"Methanocaldococcus jannaschii","na":2,"nb":1,"a":[["metabolism/methanogenesis.html","Methanogenesis"],["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["TED%3AAF-A0A832WL57-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A832WL57-F1-model_v4_TED02"]]},{"id":"NCBITaxon:240292","l":"Trichormus variabilis ATCC 29413","na":1,"nb":2,"a":[["morphology/akinete.html","akinete"]],"b":[["Pfam%3APF18921","Cyanophycin synthase-like N-terminal domain"],["Pfam%3APF13619","KTSC domain"]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":1,"nb":2,"a":[["physiology/alpha_fucosidase_activity.html","alpha-fucosidase activity"]],"b":[["Pfam%3APF21252","Glycosyl hydrolase 109, C-terminal domain"],["TED%3AAF-A0A3P1YJQ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3P1YJQ6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28132","l":"Prevotella melaninogenica","na":1,"nb":2,"a":[["morphology/black_pigmented.html","black pigmented"]],"b":[["TED%3AAF-A0A8B2A6Y8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B2A6Y8-F1-model_v4_TED01"],["TED%3AAF-A0A250KF16-F1-model_v4_TED03","TED novel fold AF-A0A250KF16-F1-model_v4_TED03"]]},{"id":"NCBITaxon:292415","l":"Thiobacillus denitrificans ATCC 25259","na":2,"nb":1,"a":[["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/chemoautotrophic.html","chemoautotrophic"]],"b":[["Pfam%3APF06804","Outer membrane protein assembly factor BamC-like C-terminal domain"]]},{"id":"NCBITaxon:317655","l":"Sphingopyxis alaskensis RB2256","na":2,"nb":1,"a":[["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"]],"b":[["Pfam%3APF10755","Protein of unknown function (DUF2585)"]]},{"id":"NCBITaxon:319224","l":"Shewanella putrefaciens CN-32","na":1,"nb":2,"a":[["morphology/flagellar_arrangement.html","flagellar arrangement"]],"b":[["Pfam%3APF17810","Arginine decarboxylase helical bundle domain"],["Pfam%3APF17944","Arginine decarboxylase C-terminal helical extension"]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":1,"nb":2,"a":[["morphology/yellow_pigmented.html","yellow pigmented"]],"b":[["TED%3AAF-A0A6N3WS12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N3WS12-F1-model_v4_TED01"],["TED%3AAF-A0A3R7GIU2-F1-model_v4_TED02","TED novel fold AF-A0A3R7GIU2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:408","l":"Methylorubrum extorquens","na":2,"nb":1,"a":[["morphology/pink_pigmented.html","pink pigmented"],["physiology/methylotrophic.html","methylotrophic"]],"b":[["Pfam%3APF04476","4-HFC-P synthase"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":1,"nb":2,"a":[["morphology/lateral_flagellation.html","lateral flagellation"]],"b":[["TED%3AAF-B5UAE0-F1-model_v4_TED01","TED highly-symmetric fold AF-B5UAE0-F1-model_v4_TED01"],["TED%3AAF-A0A3E1IF45-F1-model_v4_TED01","TED novel fold AF-A0A3E1IF45-F1-model_v4_TED01"]]},{"id":"NCBITaxon:69","l":"Lysobacter enzymogenes","na":1,"nb":2,"a":[["genomics/gasdermin_system.html","GasderMIN system"]],"b":[["TED%3AAF-A0A1J1E6A8-F1-model_v4_TED02","TED novel fold AF-A0A1J1E6A8-F1-model_v4_TED02"],["TED%3AAF-A0A7T8MLU2-F1-model_v4_TED03","TED novel fold AF-A0A7T8MLU2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:79885","l":"Alkalihalophilus pseudofirmus","na":2,"nb":1,"a":[["environment/alkalotolerant.html","alkalotolerant"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"]],"b":[["TED%3AAF-A0A1Q8TV17-F1-model_v4_TED02","TED novel fold AF-A0A1Q8TV17-F1-model_v4_TED02"]]},{"id":"NCBITaxon:913088","l":"Escherichia coli TW11681","na":1,"nb":2,"a":[["genomics/cbass_system.html","CBASS system"]],"b":[["Pfam%3APF21713","Cyclic GMP-AMP synthase, C-terminal domain"],["Pfam%3APF21654","Cyclic GMP-AMP synthase DncV-like, nucleotidyltransferase domain"]]},{"id":"UniProt:G1UBD1","l":"","na":1,"nb":2,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["EC%3A1.14.18.3","methane monooxygenase (particulate)"],["RHEA%3A30355","methane + a quinol + O2 = methanol + a quinone + H2O"]]},{"id":"UniProt:O52683","l":"","na":1,"nb":2,"a":[["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"]],"b":[["EC%3A1.12.1.4","hydrogenase (NAD(+), ferredoxin)"],["RHEA%3A30279","2 H2 + 2 oxidized [2Fe-2S]-[ferredoxin] + NAD(+) = 2 reduced [2Fe-2S]-[ferredoxin] + NADH + 3 H(+)"]]},{"id":"UniProt:P06278","l":"","na":1,"nb":2,"a":[["metabolism/starch_degradation.html","starch degradation"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["proteintraitsmech%3ABIOLIP_NA","NA-binding site"]]},{"id":"UniProt:P07254","l":"","na":1,"nb":2,"a":[["metabolism/chitinolysis.html","chitinolysis"]],"b":[["MCSA%3A478","chitinase (GH18, Class II)"],["proteintraitsmech%3ABIOLIP_AMI","AMI-binding site"]]},{"id":"UniProt:P0C916","l":"","na":1,"nb":2,"a":[["physiology/chemolithoautotrophic.html","chemolithoautotrophic"]],"b":[["EC%3A4.1.1.39","ribulose-bisphosphate carboxylase"],["RHEA%3A23124","2 (2R)-3-phosphoglycerate + 2 H(+) = D-ribulose 1,5-bisphosphate + CO2 + H2O"]]},{"id":"UniProt:P12747","l":"","na":2,"nb":1,"a":[["physiology/bioluminescence.html","bioluminescence"],["physiology/quorum_sensing.html","quorum sensing"]],"b":[["PROSITE%3APS00949","Autoinducer synthase family signature"]]},{"id":"UniProt:P16027","l":"","na":1,"nb":2,"a":[["physiology/methylotrophic.html","methylotrophic"]],"b":[["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["PROSITE%3APS00363","Bacterial quinoprotein dehydrogenases signature 1"]]},{"id":"UniProt:P29082","l":"","na":1,"nb":2,"a":[["metabolism/disproportionation.html","Disproportionation"]],"b":[["EC%3A1.13.11.55","sulfur oxygenase/reductase"],["RHEA%3A13957","4 sulfur + O2 + 4 H2O = 2 hydrogen sulfide + 2 sulfite + 6 H(+)"]]},{"id":"UniProt:P31891","l":"","na":1,"nb":2,"a":[["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["proteintraitsmech%3ABIOLIP_NFV","NFV-binding site"],["proteintraitsmech%3ABIOLIP_S3F","S3F-binding site"]]},{"id":"UniProt:P31896","l":"","na":1,"nb":2,"a":[["physiology/carboxydotrophic.html","carboxydotrophic"]],"b":[["proteintraitsmech%3ABIOLIP_RQM","RQM-binding site"],["proteintraitsmech%3AMETALPDB_NI_PENTANUCLEAR","pentanuclear nickel site"]]},{"id":"UniProt:P45574","l":"","na":1,"nb":2,"a":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["proteintraitsmech%3ABIOLIP_SH0","SH0-binding site"],["proteintraitsmech%3ABIOLIP_SRM","SRM-binding site"]]},{"id":"UniProt:Q02567","l":"","na":1,"nb":2,"a":[["metabolism/manganese_oxidation.html","manganese oxidation"]],"b":[["EC%3A1.11.1.13","manganese peroxidase"],["RHEA%3A22776","2 Mn(2+) + H2O2 + 2 H(+) = 2 Mn(3+) + 2 H2O"]]},{"id":"UniProt:Q9S1E5","l":"","na":1,"nb":2,"a":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]],"b":[["Pfam%3APF02335","Cytochrome c552"],["proteintraitsmech%3AMETALPDB_Y_TRINUCLEAR","trinuclear yttrium site"]]},{"id":"CHEBI:16412","l":"","na":1,"nb":1,"a":[["morphology/gram_negative.html","gram negative"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:17794","l":"","na":1,"nb":1,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"]],"b":[["proteintraitsmech%3ABIOLIP_3PG","3PG-binding site"]]},{"id":"CHEBI:193595","l":"","na":1,"nb":1,"a":[["environment/hyperthermophilic.html","hyperthermophilic"]],"b":[["RHEA%3A74675","archaeol + AH2 + 2 S-adenosyl-L-methionine = macrocyclic archaeol + 2 5'-deoxyadenosine + 2 L-methionine + A + 2 H(+)"]]},{"id":"CHEBI:23357","l":"","na":1,"nb":1,"a":[["upper/enzyme.html","enzyme"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_23357","cofactor cofactor class"]]},{"id":"CHEBI:25105","l":"","na":1,"nb":1,"a":[["physiology/antibiotic_resistance.html","antibiotic resistance"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:26710","l":"sodium chloride","na":1,"nb":1,"a":[["environment/halophilic.html","halophilic"]],"b":[["TCDB%3A2.A.30","The Cation-Chloride Cotransporter (CCC) Family"]]},{"id":"CHEBI:29125","l":"arsenate(3-)","na":1,"nb":1,"a":[["environment/arsenic_tolerant.html","arsenic tolerant"]],"b":[["proteintraitsmech%3ABIOLIP_ART","ART-binding site"]]},{"id":"CHEBI:35819","l":"","na":1,"nb":1,"a":[["environment/temperature_optimum_mid1.html","temperature optimum mid1"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:41688","l":"crystal violet","na":1,"nb":1,"a":[["morphology/gram_stain.html","gram stain"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:44747","l":"","na":1,"nb":1,"a":[["morphology/brown_pigmented.html","brown pigmented"]],"b":[["proteintraitsmech%3ABIOLIP_OMD","OMD-binding site"]]},{"id":"CHEBI:46837","l":"","na":1,"nb":1,"a":[["morphology/spore_forming.html","spore forming"]],"b":[["proteintraitsmech%3ABIOLIP_PDC","PDC-binding site"]]},{"id":"GO:0002047","l":"phenazine biosynthetic process","na":1,"nb":1,"a":[["morphology/green_pigmented.html","green pigmented"]],"b":[["GO%3A0002047","phenazine biosynthetic process"]]},{"id":"GO:0009420","l":"bacterial-type flagellum filament","na":1,"nb":1,"a":[["morphology/flagellated.html","flagellated"]],"b":[["GO%3A0009420","bacterial-type flagellum filament"]]},{"id":"GO:0015050","l":"methane monooxygenase complex","na":1,"nb":1,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["GO%3A0015050","methane monooxygenase complex"]]},{"id":"GO:0016218","l":"polyketide synthase activity","na":1,"nb":1,"a":[["morphology/black_pigmented.html","black pigmented"]],"b":[["GO%3A0016218","polyketide synthase activity"]]},{"id":"GO:0019643","l":"reductive tricarboxylic acid cycle","na":1,"nb":1,"a":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"]],"b":[["GO%3A0019643","reductive tricarboxylic acid cycle"]]},{"id":"GO:0019655","l":"pyruvate fermentation to ethanol","na":1,"nb":1,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"]],"b":[["GO%3A0019655","pyruvate fermentation to ethanol"]]},{"id":"GO:0033172","l":"gas vesicle shell","na":1,"nb":1,"a":[["morphology/gas_vesicle.html","gas vesicle"]],"b":[["GO%3A0033172","gas vesicle shell"]]},{"id":"GO:0033355","l":"ascorbate glutathione cycle","na":1,"nb":1,"a":[["environment/aerotolerant.html","aerotolerant"]],"b":[["GO%3A0033355","ascorbate glutathione cycle"]]},{"id":"GO:0042603","l":"capsule","na":1,"nb":1,"a":[["morphology/capsule.html","capsule"]],"b":[["GO%3A0042603","capsule"]]},{"id":"GO:0043263","l":"cellulosome","na":1,"nb":1,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["GO%3A0043263","cellulosome"]]},{"id":"GO:0098689","l":"latency-replication decision","na":1,"nb":1,"a":[["genomics/prophage.html","prophage"]],"b":[["GO%3A0098689","latency-replication decision"]]},{"id":"GO:0140649","l":"symbiont-mediated cell-to-cell migration by invasive hypha","na":1,"nb":1,"a":[["ecology/plant_pathogen.html","plant pathogen"]],"b":[["GO%3A0140649","symbiont-mediated cell-to-cell migration by invasive hypha"]]},{"id":"GO:1901177","l":"lycopene biosynthetic process","na":1,"nb":1,"a":[["morphology/yellow_pigmented.html","yellow pigmented"]],"b":[["GO%3A1901177","lycopene biosynthetic process"]]},{"id":"GO:1901812","l":"beta-carotene biosynthetic process","na":1,"nb":1,"a":[["morphology/pigmentation.html","pigmentation"]],"b":[["GO%3A1901812","beta-carotene biosynthetic process"]]},{"id":"InterPro:IPR000067","l":"","na":1,"nb":1,"a":[["morphology/lophotrichous.html","lophotrichous"]],"b":[["PRINTS%3APR01009","Flagellar M-ring protein signature"]]},{"id":"InterPro:IPR002798","l":"","na":1,"nb":1,"a":[["morphology/spore_forming.html","spore forming"]],"b":[["Pfam%3APF01944","Stage II sporulation protein M"]]},{"id":"InterPro:IPR007439","l":"","na":1,"nb":1,"a":[["physiology/chemotaxis.html","chemotaxis"]],"b":[["Pfam%3APF04344","Chemotaxis phosphatase, CheZ"]]},{"id":"InterPro:IPR011895","l":"","na":1,"nb":1,"a":[["metabolism/fermentation.html","Fermentation"]],"b":[["Pfam%3APF10371","Domain of unknown function"]]},{"id":"InterPro:IPR012609","l":"","na":1,"nb":1,"a":[["morphology/spore_shaped.html","spore shaped"]],"b":[["Pfam%3APF08183","Stage V sporulation protein family"]]},{"id":"InterPro:IPR018901","l":"","na":1,"nb":1,"a":[["morphology/spore_shaped.html","spore shaped"]],"b":[["Pfam%3APF10628","Outer spore coat protein E (CotE)"]]},{"id":"InterPro:IPR030858","l":"","na":1,"nb":1,"a":[["morphology/ovoid_shaped.html","ovoid shaped"]],"b":[["HAMAP%3AMF_01941","Mid-cell-anchored protein Z [mapZ]"]]},{"id":"InterPro:IPR047939","l":"","na":1,"nb":1,"a":[["genomics/brex_system.html","BREX system"]],"b":[["Pfam%3APF07669","Eco57I restriction-modification methylase"]]},{"id":"InterPro:IPR048240","l":"","na":1,"nb":1,"a":[["morphology/filament_shaped.html","filament shaped"]],"b":[["Pfam%3APF28068","Polarized growth protein Scy"]]},{"id":"InterPro:IPR052364","l":"","na":1,"nb":1,"a":[["environment/aerotolerant.html","aerotolerant"]],"b":[["PANTHER%3APTHR43865","RUBRERYTHRIN-RELATED"]]},{"id":"METPO:1000605","l":"facultatively anaerobic","na":1,"nb":1,"a":[["environment/facultatively_anaerobic.html","facultatively anaerobic"]],"b":[["METPO%3A1000605","facultatively anaerobic"]]},{"id":"METPO:1000606","l":"obligately aerobic","na":1,"nb":1,"a":[["environment/obligately_aerobic.html","obligately aerobic"]],"b":[["METPO%3A1000606","obligately aerobic"]]},{"id":"METPO:1000608","l":"facultatively aerobic","na":1,"nb":1,"a":[["environment/facultatively_aerobic.html","facultatively aerobic"]],"b":[["METPO%3A1000608","facultatively aerobic"]]},{"id":"METPO:1000610","l":"microaerotolerant","na":1,"nb":1,"a":[["environment/microaerotolerant.html","microaerotolerant"]],"b":[["METPO%3A1000610","microaerotolerant"]]},{"id":"METPO:1000611","l":"strictly anaerobic","na":1,"nb":1,"a":[["environment/strictly_anaerobic.html","strictly anaerobic"]],"b":[["METPO%3A1000611","strictly anaerobic"]]},{"id":"METPO:1000614","l":"psychrophilic","na":1,"nb":1,"a":[["environment/psychrophilic.html","psychrophilic"]],"b":[["METPO%3A1000614","psychrophilic"]]},{"id":"METPO:1000615","l":"mesophilic","na":1,"nb":1,"a":[["environment/mesophilic.html","mesophilic"]],"b":[["METPO%3A1000615","mesophilic"]]},{"id":"METPO:1000616","l":"thermophilic","na":1,"nb":1,"a":[["environment/thermophilic.html","thermophilic"]],"b":[["METPO%3A1000616","thermophilic"]]},{"id":"METPO:1000618","l":"psychrotolerant","na":1,"nb":1,"a":[["environment/psychrotolerant.html","psychrotolerant"]],"b":[["METPO%3A1000618","psychrotolerant"]]},{"id":"METPO:1000619","l":"thermotolerant","na":1,"nb":1,"a":[["environment/thermotolerant.html","thermotolerant"]],"b":[["METPO%3A1000619","thermotolerant"]]},{"id":"METPO:1000621","l":"haloalkaliphilic","na":1,"nb":1,"a":[["environment/haloalkaliphilic.html","haloalkaliphilic"]],"b":[["METPO%3A1000621","haloalkaliphilic"]]},{"id":"METPO:1000623","l":"moderately halophilic","na":1,"nb":1,"a":[["environment/moderately_halophilic.html","moderately halophilic"]],"b":[["METPO%3A1000623","moderately halophilic"]]},{"id":"METPO:1000624","l":"non halophilic","na":1,"nb":1,"a":[["environment/non_halophilic.html","non halophilic"]],"b":[["METPO%3A1000624","non halophilic"]]},{"id":"METPO:1000625","l":"slightly halophilic","na":1,"nb":1,"a":[["environment/slightly_halophilic.html","slightly halophilic"]],"b":[["METPO%3A1000625","slightly halophilic"]]},{"id":"METPO:1000626","l":"stenohaline","na":1,"nb":1,"a":[["environment/stenohaline.html","stenohaline"]],"b":[["METPO%3A1000626","stenohaline"]]},{"id":"METPO:1000627","l":"euryhaline","na":1,"nb":1,"a":[["environment/euryhaline.html","euryhaline"]],"b":[["METPO%3A1000627","euryhaline"]]},{"id":"METPO:1000628","l":"extremely halophilic","na":1,"nb":1,"a":[["environment/extremely_halophilic.html","extremely halophilic"]],"b":[["METPO%3A1000628","extremely halophilic"]]},{"id":"METPO:1000633","l":"carboxydotrophic","na":1,"nb":1,"a":[["physiology/carboxydotrophic.html","carboxydotrophic"]],"b":[["METPO%3A1000633","carboxydotrophic"]]},{"id":"METPO:1000634","l":"chemoautolithotrophic","na":1,"nb":1,"a":[["physiology/chemoautolithotrophic.html","chemoautolithotrophic"]],"b":[["METPO%3A1000634","chemoautolithotrophic"]]},{"id":"METPO:1000635","l":"chemoautotrophic","na":1,"nb":1,"a":[["physiology/chemoautotrophic.html","chemoautotrophic"]],"b":[["METPO%3A1000635","chemoautotrophic"]]},{"id":"METPO:1000636","l":"chemoheterotrophic","na":1,"nb":1,"a":[["physiology/chemoheterotrophic.html","chemoheterotrophic"]],"b":[["METPO%3A1000636","chemoheterotrophic"]]},{"id":"METPO:1000637","l":"chemolithoautotrophic","na":1,"nb":1,"a":[["physiology/chemolithoautotrophic.html","chemolithoautotrophic"]],"b":[["METPO%3A1000637","chemolithoautotrophic"]]},{"id":"METPO:1000638","l":"chemolithoheterotrophic","na":1,"nb":1,"a":[["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"]],"b":[["METPO%3A1000638","chemolithoheterotrophic"]]},{"id":"METPO:1000639","l":"chemolithotrophic","na":1,"nb":1,"a":[["physiology/chemolithotrophic.html","chemolithotrophic"]],"b":[["METPO%3A1000639","chemolithotrophic"]]},{"id":"METPO:1000640","l":"chemoorganoheterotrophic","na":1,"nb":1,"a":[["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"]],"b":[["METPO%3A1000640","chemoorganoheterotrophic"]]},{"id":"METPO:1000646","l":"hydrogenotrophic","na":1,"nb":1,"a":[["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["METPO%3A1000646","hydrogenotrophic"]]},{"id":"METPO:1000647","l":"lithoautotrophic","na":1,"nb":1,"a":[["physiology/lithoautotrophic.html","lithoautotrophic"]],"b":[["METPO%3A1000647","lithoautotrophic"]]},{"id":"METPO:1000648","l":"lithoheterotrophic","na":1,"nb":1,"a":[["physiology/lithoheterotrophic.html","lithoheterotrophic"]],"b":[["METPO%3A1000648","lithoheterotrophic"]]},{"id":"METPO:1000649","l":"lithotrophic","na":1,"nb":1,"a":[["physiology/lithotrophic.html","lithotrophic"]],"b":[["METPO%3A1000649","lithotrophic"]]},{"id":"METPO:1000650","l":"methanotrophic","na":1,"nb":1,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["METPO%3A1000650","methanotrophic"]]},{"id":"METPO:1000651","l":"methylotrophic","na":1,"nb":1,"a":[["physiology/methylotrophic.html","methylotrophic"]],"b":[["METPO%3A1000651","methylotrophic"]]},{"id":"METPO:1000652","l":"mixotrophic","na":1,"nb":1,"a":[["physiology/mixotrophic.html","mixotrophic"]],"b":[["METPO%3A1000652","mixotrophic"]]},{"id":"METPO:1000655","l":"organotrophic","na":1,"nb":1,"a":[["physiology/organotrophic.html","organotrophic"]],"b":[["METPO%3A1000655","organotrophic"]]},{"id":"METPO:1000656","l":"photoautotrophic","na":1,"nb":1,"a":[["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["METPO%3A1000656","photoautotrophic"]]},{"id":"METPO:1000658","l":"photolithotrophic","na":1,"nb":1,"a":[["physiology/photolithotrophic.html","photolithotrophic"]],"b":[["METPO%3A1000658","photolithotrophic"]]},{"id":"METPO:1000659","l":"photoorganoheterotrophic","na":1,"nb":1,"a":[["physiology/photoorganoheterotrophic.html","photoorganoheterotrophic"]],"b":[["METPO%3A1000659","photoorganoheterotrophic"]]},{"id":"METPO:1000663","l":"chemoorganotrophic","na":1,"nb":1,"a":[["physiology/chemoorganotrophic.html","chemoorganotrophic"]],"b":[["METPO%3A1000663","chemoorganotrophic"]]},{"id":"METPO:1000664","l":"organoheterotrophic","na":1,"nb":1,"a":[["physiology/organoheterotrophic.html","organoheterotrophic"]],"b":[["METPO%3A1000664","organoheterotrophic"]]},{"id":"METPO:1000665","l":"photolithoautotrophic","na":1,"nb":1,"a":[["physiology/photolithoautotrophic.html","photolithoautotrophic"]],"b":[["METPO%3A1000665","photolithoautotrophic"]]},{"id":"METPO:1000720","l":"facultative psychrophilic","na":1,"nb":1,"a":[["environment/facultative_psychrophilic.html","facultative psychrophilic"]],"b":[["METPO%3A1000720","facultative psychrophilic"]]},{"id":"METPO:1000721","l":"extreme hyperthermophilic","na":1,"nb":1,"a":[["environment/extreme_hyperthermophilic.html","extreme hyperthermophilic"]],"b":[["METPO%3A1000721","extreme hyperthermophilic"]]},{"id":"METPO:1000801","l":"Aerobic respiration","na":1,"nb":1,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"]],"b":[["METPO%3A1000801","Aerobic respiration"]]},{"id":"METPO:1000803","l":"Oxidative phosphorylation","na":1,"nb":1,"a":[["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"]],"b":[["METPO%3A1000803","Oxidative phosphorylation"]]},{"id":"METPO:1000805","l":"Electron transfer","na":1,"nb":1,"a":[["metabolism/electron_transfer.html","Electron transfer"]],"b":[["METPO%3A1000805","Electron transfer"]]},{"id":"METPO:1000806","l":"Disproportionation","na":1,"nb":1,"a":[["metabolism/disproportionation.html","Disproportionation"]],"b":[["METPO%3A1000806","Disproportionation"]]},{"id":"METPO:1000846","l":"Homoacetogenesis","na":1,"nb":1,"a":[["metabolism/homoacetogenesis.html","Homoacetogenesis"]],"b":[["METPO%3A1000846","Homoacetogenesis"]]},{"id":"METPO:1002003","l":"Cable bacteria metabolism","na":1,"nb":1,"a":[["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"]],"b":[["METPO%3A1002003","Cable bacteria metabolism"]]},{"id":"METPO:1002006","l":"Syntrophy","na":1,"nb":1,"a":[["metabolism/syntrophy.html","Syntrophy"]],"b":[["METPO%3A1002006","Syntrophy"]]},{"id":"METPO:1003001","l":"neutrophilic","na":1,"nb":1,"a":[["environment/neutrophilic.html","neutrophilic"]],"b":[["METPO%3A1003001","neutrophilic"]]},{"id":"METPO:1003004","l":"obligately alkaliphilic","na":1,"nb":1,"a":[["environment/obligately_alkaphilic.html","obligately alkaliphilic"]],"b":[["METPO%3A1003004","obligately alkaliphilic"]]},{"id":"METPO:1003005","l":"facultatively alkaliphilic","na":1,"nb":1,"a":[["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"]],"b":[["METPO%3A1003005","facultatively alkaliphilic"]]},{"id":"METPO:1003006","l":"obligately acidophilic","na":1,"nb":1,"a":[["environment/obligately_acidophilic.html","obligately acidophilic"]],"b":[["METPO%3A1003006","obligately acidophilic"]]},{"id":"METPO:1003007","l":"facultatively acidophilic","na":1,"nb":1,"a":[["environment/facultatively_acidophilic.html","facultatively acidophilic"]],"b":[["METPO%3A1003007","facultatively acidophilic"]]},{"id":"METPO:1003009","l":"alkalotolerant","na":1,"nb":1,"a":[["environment/alkalotolerant.html","alkalotolerant"]],"b":[["METPO%3A1003009","alkalotolerant"]]},{"id":"METPO:1005011","l":"indole test positive","na":1,"nb":1,"a":[["other/indole_test_positive.html","indole test positive"]],"b":[["METPO%3A1005011","indole test positive"]]},{"id":"METPO:1005012","l":"indole test negative","na":1,"nb":1,"a":[["other/indole_test_negative.html","indole test negative"]],"b":[["METPO%3A1005012","indole test negative"]]},{"id":"METPO:1005014","l":"methyl red test positive","na":1,"nb":1,"a":[["other/methyl_red_test_positive.html","methyl red test positive"]],"b":[["METPO%3A1005014","methyl red test positive"]]},{"id":"METPO:1005015","l":"methyl red test negative","na":1,"nb":1,"a":[["other/methyl_red_test_negative.html","methyl red test negative"]],"b":[["METPO%3A1005015","methyl red test negative"]]},{"id":"METPO:1005017","l":"Voges-Proskauer test positive","na":1,"nb":1,"a":[["other/voges_proskauer_test_positive.html","Voges-Proskauer test positive"]],"b":[["METPO%3A1005017","Voges-Proskauer test positive"]]},{"id":"METPO:1005018","l":"Voges-Proskauer test negative","na":1,"nb":1,"a":[["other/voges_proskauer_test_negative.html","Voges-Proskauer test negative"]],"b":[["METPO%3A1005018","Voges-Proskauer test negative"]]},{"id":"METPO:1005021","l":"capnophilic","na":1,"nb":1,"a":[["environment/capnophilic.html","capnophilic"]],"b":[["METPO%3A1005021","capnophilic"]]},{"id":"METPO:1007073","l":"osmotic tolerance","na":1,"nb":1,"a":[["other/osmotic_tolerance.html","osmotic tolerance"]],"b":[["METPO%3A1007073","osmotic tolerance"]]},{"id":"METPO:1007084","l":"catalase negative","na":1,"nb":1,"a":[["other/catalase_negative.html","catalase negative"]],"b":[["METPO%3A1007084","catalase negative"]]},{"id":"METPO:1007086","l":"oxidase negative","na":1,"nb":1,"a":[["other/oxidase_negative.html","oxidase negative"]],"b":[["METPO%3A1007086","oxidase negative"]]},{"id":"METPO:1007088","l":"urease negative","na":1,"nb":1,"a":[["other/urease_negative.html","urease negative"]],"b":[["METPO%3A1007088","urease negative"]]},{"id":"METPO:1007090","l":"coagulase positive","na":1,"nb":1,"a":[["other/coagulase_positive.html","coagulase positive"]],"b":[["METPO%3A1007090","coagulase positive"]]},{"id":"METPO:1007091","l":"coagulase negative","na":1,"nb":1,"a":[["other/coagulase_negative.html","coagulase negative"]],"b":[["METPO%3A1007091","coagulase negative"]]},{"id":"NCBITaxon:133804","l":"gamma proteobacterium EBAC31A08","na":1,"nb":1,"a":[["metabolism/proteorhodopsin_phototrophy.html","proteorhodopsin phototrophy"]],"b":[["PROSITE%3APS00950","Bacterial rhodopsins signature 1"]]},{"id":"NCBITaxon:1392998","l":"Candidatus Methanoperedens nitratireducens","na":1,"nb":1,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"]],"b":[["TED%3AAF-A0A062V4L1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A062V4L1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1473598","l":"Paludibaculum fermentans","na":1,"nb":1,"a":[["environment/facultatively_acidophilic.html","facultatively acidophilic"]],"b":[["TED%3AAF-A0A7S7NND6-F1-model_v4_TED01","TED novel fold AF-A0A7S7NND6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":1,"nb":1,"a":[["morphology/branched_shaped.html","branched shaped"]],"b":[["TED%3AAF-A0A415C3I8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A415C3I8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1752","l":"Propionibacterium freudenreichii subsp. shermanii","na":1,"nb":1,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["PROSITE%3APS00544","Methylmalonyl-CoA mutase signature"]]},{"id":"NCBITaxon:2306023","l":"Gemmobacter lutimaris","na":1,"nb":1,"a":[["environment/ph_delta_mid3.html","pH delta mid3"]],"b":[["TED%3AAF-A0A398BQ53-F1-model_v4_TED04","TED novel fold AF-A0A398BQ53-F1-model_v4_TED04"]]},{"id":"NCBITaxon:243164","l":"Dehalococcoides mccartyi 195","na":1,"nb":1,"a":[["metabolism/organohalide_respiration.html","organohalide respiration"]],"b":[["Pfam%3APF13486","Reductive dehalogenase subunit"]]},{"id":"NCBITaxon:29339","l":"Bacillus thuringiensis serovar kurstaki","na":1,"nb":1,"a":[["physiology/quorum_sensing.html","quorum sensing"]],"b":[["Pfam%3APF07029","CryBP1 protein"]]},{"id":"NCBITaxon:296","l":"Pseudomonas fragi","na":1,"nb":1,"a":[["environment/temperature_optimum_low.html","temperature optimum low"]],"b":[["TED%3AAF-A0A449IS41-F1-model_v4_TED01","TED novel fold AF-A0A449IS41-F1-model_v4_TED01"]]},{"id":"NCBITaxon:335541","l":"Syntrophomonas wolfei subsp. wolfei (strain DSM 2245B / Goettingen)","na":1,"nb":1,"a":[["metabolism/syntrophy.html","Syntrophy"]],"b":[["TED%3AAF-Q0AVF9-F1-model_v4_TED01","TED novel fold AF-Q0AVF9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["metabolism/photoferrotrophy.html","photoferrotrophy"]],"b":[["Pfam%3APF13282","Domain of unknown function (DUF4070)"]]},{"id":"NCBITaxon:399549","l":"Metallosphaera sedula DSM 5348","na":1,"nb":1,"a":[["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]],"b":[["Pfam%3APF18195","GatD N-terminal domain"]]},{"id":"NCBITaxon:412955","l":"Pseudomonas sp. SCT","na":1,"nb":1,"a":[["metabolism/iodate_respiration.html","iodate respiration"]],"b":[["Pfam%3APF03150","Di-haem cytochrome c peroxidase"]]},{"id":"NCBITaxon:521674","l":"Planctopirus limnophila DSM 3776","na":1,"nb":1,"a":[["morphology/flask_shaped.html","flask shaped"]],"b":[["TED%3AAF-D5SQH0-F1-model_v4_TED01","TED novel fold AF-D5SQH0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:747","l":"Pasteurella multocida","na":1,"nb":1,"a":[["ecology/animal_pathogen.html","animal pathogen"]],"b":[["TED%3AAF-A0A8A8HHD5-F1-model_v4_TED02","TED novel fold AF-A0A8A8HHD5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:766760","l":"Bacillus paralicheniformis ATCC 9945a","na":1,"nb":1,"a":[["genomics/disarm_system.html","DISARM system"]],"b":[["Pfam%3APF24957","DISARM protein DrmE, C-terminal domain"]]},{"id":"NCBITaxon:863","l":"Syntrophomonas wolfei","na":1,"nb":1,"a":[["metabolism/syntrophy.html","Syntrophy"]],"b":[["TED%3AAF-A0A354YY78-F1-model_v4_TED03","TED novel fold AF-A0A354YY78-F1-model_v4_TED03"]]},{"id":"UniProt:P07984","l":"","na":1,"nb":1,"a":[["metabolism/biopolymer_degradation.html","biopolymer degradation"]],"b":[["PROSITE%3APS00561","CBM2a (carbohydrate-binding type-2) domain signature"]]},{"id":"UniProt:P24559","l":"","na":1,"nb":1,"a":[["morphology/twitching_motility.html","twitching motility"]],"b":[["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]]},{"id":"UniProt:P27709","l":"","na":1,"nb":1,"a":[["morphology/heterocyst.html","heterocyst"]],"b":[["Pfam%3APF18460","Heterocyst differentiation regulator C-terminal Hood domain"]]},{"id":"UniProt:P44413","l":"","na":1,"nb":1,"a":[["genomics/restriction_modification_system.html","restriction-modification system"]],"b":[["Pfam%3APF09226","Restriction endonuclease HincII"]]},{"id":"UniProt:P45573","l":"","na":1,"nb":1,"a":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["Pfam%3APF04358","DsrC like protein"]]},{"id":"UniProt:P9WG29","l":"","na":1,"nb":1,"a":[["physiology/dormancy.html","dormancy"]],"b":[["Pfam%3APF03990","G5-linked-Ubiquitin-like domain"]]},{"id":"UniProt:Q03511","l":"","na":1,"nb":1,"a":[["morphology/carboxysome.html","carboxysome"]],"b":[["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"UniProt:Q9F7P4","l":"","na":1,"nb":1,"a":[["metabolism/proteorhodopsin_phototrophy.html","proteorhodopsin phototrophy"]],"b":[["PROSITE%3APS00950","Bacterial rhodopsins signature 1"]]},{"id":"UniProt:Q9HXT9","l":"","na":1,"nb":1,"a":[["ecology/biofilm_formation.html","biofilm formation"]],"b":[["proteintraitsmech%3ABIOLIP_C2E","C2E-binding site"]]},{"id":"UniProt:S5N020","l":"","na":1,"nb":1,"a":[["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"]],"b":[["proteintraitsmech%3ABIOLIP_1VU","1VU-binding site"]]}]} \ No newline at end of file +{"a":"TraitMech","b":"ProteinTraitsMech","base":{"TraitMech":"https://culturebotai.github.io/TraitMech/pages/traits/","ProteinTraitsMech":"https://culturebotai.github.io/proteintraitsmech/browse.html#record="},"n":707,"by":{"GO":248,"NCBITaxon":136,"METPO":111,"CHEBI":109,"UniProt":56,"InterPro":47},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":65,"nb":145,"a":[["ecology/biosafety_level.html","biosafety level"],["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/host_associated.html","host-associated"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/halophily_preference.html","halophily preference"]],"b":[["IDPO%3A0000033","flexible linker"],["IDPO%3A0000014","order to disorder"],["IDPO%3A0000004","pre-molten globule"],["IDPO%3A0000013","pre-molten globule to order"],["Pfam%3APF13304","AAA domain, putative AbiEii toxin, Type IV TA system"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"]]},{"id":"CHEBI:16526","l":"carbon dioxide","na":30,"nb":1616,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"]],"b":[["EC%3A1.1.1.170","3beta-hydroxysteroid-4alpha-carboxylate 3-dehydrogenase (decarboxylating)"],["EC%3A1.1.1.262","4-hydroxythreonine-4-phosphate dehydrogenase"],["EC%3A1.1.1.276","serine 3-dehydrogenase (NADP(+))"],["EC%3A1.1.1.286","isocitrate--homoisocitrate dehydrogenase"],["EC%3A1.1.1.305","UDP-glucuronic acid oxidase (UDP-4-keto-hexauronic acid decarboxylating)"],["EC%3A1.1.1.343","phosphogluconate dehydrogenase (NAD(+)-dependent, decarboxylating)"]]},{"id":"METPO:1000631","l":"trophic type","na":30,"nb":29,"a":[["physiology/autotrophic.html","autotrophic"],["physiology/carboxydotrophic.html","carboxydotrophic"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"]],"b":[["METPO%3A1000632","autotrophic"],["METPO%3A1000633","carboxydotrophic"],["METPO%3A1000634","chemoautolithotrophic"],["METPO%3A1000635","chemoautotrophic"],["METPO%3A1000636","chemoheterotrophic"],["METPO%3A1000637","chemolithoautotrophic"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli K-12","na":26,"nb":17470,"a":[["environment/ph_phenotype_with_numerical_limits.html","pH phenotype with numerical limits"],["environment/temperature_optimum_mid4.html","temperature optimum mid4"],["genomics/rnlab_system.html","RnlAB system"],["metabolism/metabolism.html","metabolism"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/respiration.html","respiration"]],"b":[["EC%3A1.1.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.14.13.-","With NADH or NADPH as one donor, and incorporation of one atom of oxygen"],["EC%3A1.16.-.-","Oxidizing metal ions"],["EC%3A1.18.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.2.7.-","With an iron-sulfur protein as acceptor"]]},{"id":"CHEBI:15379","l":"dioxygen","na":25,"nb":3896,"a":[["environment/aerobic.html","aerobic"],["environment/aerotolerant.html","aerotolerant"],["environment/anaerobic.html","anaerobic"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_aerobic.html","facultatively aerobic"],["environment/facultatively_anaerobic.html","facultatively anaerobic"]],"b":[["EC%3A1.1.3.10","pyranose oxidase"],["EC%3A1.1.3.11","L-sorbose oxidase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.3.13","alcohol oxidase"],["EC%3A1.1.3.14","catechol oxidase (dimerizing)"],["EC%3A1.1.3.15","(S)-2-hydroxy-acid oxidase"]]},{"id":"CHEBI:30616","l":"","na":24,"nb":2111,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/fermentation.html","Fermentation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/nitrogen_fixation.html","nitrogen fixation"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_30616","requires ATP(4−)"],["EC%3A1.13.12.7","firefly luciferase"],["EC%3A1.16.99.1","[Co(II) methylated amine-specific corrinoid protein] reductase"],["EC%3A1.18.6.1","nitrogenase"],["EC%3A1.18.6.2","vanadium-dependent nitrogenase"],["EC%3A1.19.6.1","nitrogenase (flavodoxin)"]]},{"id":"METPO:1000059","l":"phenotype","na":117,"nb":18,"a":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/habitat_association.html","habitat association"],["ecology/pathogenic_to_host.html","pathogenic to host"],["ecology/predatory_bacterium.html","predatory bacterium"],["ecology/saprotrophy.html","saprotrophy"],["ecology/symbiosis.html","symbiosis"]],"b":[["METPO%3A1000629","halophily preference"],["METPO%3A1007074","metal tolerance"],["METPO%3A1007073","osmotic tolerance"],["METPO%3A1000601","oxygen preference"],["METPO%3A1003000","pH growth preference"],["METPO%3A1000059","phenotype"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":15,"nb":46,"a":[["ecology/biosafety_level_2.html","biosafety level 2"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/coccus_shaped.html","coccus shaped"]],"b":[["IDPO%3A0000030","entropic chain"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF13166","AAA domain"],["Pfam%3APF02216","B domain"],["Pfam%3APF27533","CapK C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"]]},{"id":"GO:0015977","l":"carbon fixation","na":15,"nb":30,"a":[["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]],"b":[["GO%3A0009760","C4 photosynthesis"],["GO%3A0009761","CAM photosynthesis"],["GO%3A0043427","carbon fixation by 3-hydroxypropionate cycle"],["GO%3A0030634","carbon fixation by acetyl-CoA pathway"],["GO%3A0015977","carbon fixation"],["GO%3A0019643","reductive tricarboxylic acid cycle"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":18,"nb":15,"a":[["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/neutrophilic.html","neutrophilic"],["environment/non_halophilic.html","non halophilic"],["genomics/spbk_system.html","SpbK system"]],"b":[["Pfam%3APF13535","ATP-grasp domain"],["Pfam%3APF17728","BsuBI/PstI restriction endonuclease HTH domain"],["Pfam%3APF06616","BsuBI/PstI restriction endonuclease domain"],["Pfam%3APF14562","Restriction endonuclease BglI"],["Pfam%3APF09195","Restriction endonuclease BglII/BglIII"],["Pfam%3APF09208","Restriction endonuclease MspI"]]},{"id":"GO:0051453","l":"regulation of intracellular pH","na":17,"nb":15,"a":[["environment/acidophilic.html","acidophilic"],["environment/acidotolerant.html","acidotolerant"],["environment/alkalotolerant.html","alkalotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"]],"b":[["ComplexPortal%3ACPX-3090","Glutathione-regulated potassium-efflux system KefB-KefG complex"],["ComplexPortal%3ACPX-2543","Glutathione-regulated potassium-efflux system KefC-KefF complex"],["ComplexPortal%3ACPX-26449","Sodium/proton exchanger complex, NHE1-CHP1 variant"],["ComplexPortal%3ACPX-26462","Sodium/proton exchanger complex, NHE1-CHP2 variant"],["ComplexPortal%3ACPX-26464","Sodium/proton exchanger complex, NHE1-CHP3 variant"],["ComplexPortal%3ACPX-26469","Sodium/proton exchanger complex, NHE2-CHP1 variant"]]},{"id":"GO:0045259","l":"proton-transporting ATP synthase complex","na":13,"nb":52,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/fermentation.html","Fermentation"],["metabolism/metabolism.html","metabolism"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/carboxydotrophic.html","carboxydotrophic"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"],["ComplexPortal%3ACPX-25764","Mitochondrial proton translocating ATP synthase complex"],["ComplexPortal%3ACPX-3281","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-6151","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-8618","Mitochondrial proton-transporting ATP synthase complex"],["ComplexPortal%3ACPX-8619","Mitochondrial proton-transporting ATP synthase complex, testis-specific variant"]]},{"id":"CHEBI:18276","l":"dihydrogen","na":13,"nb":42,"a":[["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/does_not_use_as_electron_donor.html","does not use as electron donor"],["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"]],"b":[["EC%3A1.12.1.2","hydrogen dehydrogenase"],["EC%3A1.12.1.3","hydrogen dehydrogenase (NADP(+))"],["EC%3A1.12.1.4","hydrogenase (NAD(+), ferredoxin)"],["EC%3A1.12.1.5","hydrogen dehydrogenase [NAD(P)(+)]"],["EC%3A1.12.2.1","cytochrome-c3 hydrogenase"],["EC%3A1.12.5.1","hydrogen:quinone oxidoreductase"]]},{"id":"METPO:1000060","l":"metabolism","na":26,"nb":12,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/aromatic_compound_degradation.html","aromatic compound degradation"],["metabolism/arsenite_oxidation.html","arsenite oxidation"],["metabolism/biopolymer_degradation.html","biopolymer degradation"],["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"],["metabolism/carbon_fixation.html","carbon fixation"]],"b":[["METPO%3A1000845","Acetogenesis"],["METPO%3A1002003","Cable bacteria metabolism"],["METPO%3A1000806","Disproportionation"],["METPO%3A1000805","Electron transfer"],["METPO%3A1002005","Fermentation"],["METPO%3A1000846","Homoacetogenesis"]]},{"id":"CHEBI:17544","l":"hydrogencarbonate","na":11,"nb":93,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"],["morphology/carboxysome.html","carboxysome"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17544","requires hydrogencarbonate"],["EC%3A1.13.11.73","methylphosphonate synthase"],["EC%3A1.2.1.27","methylmalonate-semialdehyde dehydrogenase (CoA acylating)"],["EC%3A2.5.1.120","aminodeoxyfutalosine synthase"],["EC%3A2.5.1.143","pyridinium-3,5-biscarboxylic acid mononucleotide synthase"],["EC%3A2.7.2.2","carbamate kinase"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":11,"nb":19,"a":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/aerobic.html","aerobic"],["genomics/avast_system.html","AVAST system"],["genomics/jukab_system.html","JukAB system"],["morphology/motile.html","motile"]],"b":[["Pfam%3APF02522","Aminoglycoside 3-N-acetyltransferase"],["Pfam%3APF18173","Bacterial HORMA domain 2"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF26107","BrxR transcriptional regulator, C-terminal dimerization domain"],["Pfam%3APF27322","Cap8 HORMA domain"],["Pfam%3APF01526","Tn3 transposase DDE domain"]]},{"id":"GO:0006113","l":"fermentation","na":11,"nb":14,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"],["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["ComplexPortal%3ACPX-281","Hydrogenase-1 complex"],["GO%3A0030645","acetyl-CoA fermentation to butanoate"],["GO%3A0019665","amino acid fermentation"],["GO%3A0019588","anaerobic glycerol catabolic process"],["GO%3A0019658","bifid shunt"],["GO%3A0044577","D-xylose fermentation"]]},{"id":"GO:0004177","l":"aminopeptidase activity","na":10,"nb":58,"a":[["physiology/arginine_arylamidase_activity.html","arginine arylamidase activity"],["physiology/cystine_arylamidase_activity.html","cystine arylamidase activity"],["physiology/glycine_arylamidase_activity.html","glycine arylamidase activity"],["physiology/histidine_arylamidase_activity.html","histidine arylamidase activity"],["physiology/leucine_arylamidase_activity.html","leucine arylamidase activity"],["physiology/phenylalanine_arylamidase_activity.html","phenylalanine arylamidase activity"]],"b":[["EC%3A3.4.11.1","leucyl aminopeptidase"],["EC%3A3.4.11.21","aspartyl aminopeptidase"],["EC%3A3.4.11.22","aminopeptidase I"],["EC%3A3.4.11.5","prolyl aminopeptidase"],["EC%3A3.4.11.6","aminopeptidase B"],["EC%3A3.4.11.9","Xaa-Pro aminopeptidase"]]},{"id":"GO:0022900","l":"electron transport chain","na":10,"nb":50,"a":[["environment/obligately_aerobic.html","obligately aerobic"],["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/electron_transfer.html","Electron transfer"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"]],"b":[["GO%3A0022900","electron transport chain"],["GO%3A0140647","P450-containing electron transport chain"],["GO%3A0009767","photosynthetic electron transport chain"],["GO%3A0022904","respiratory electron transport chain"],["NCBIfam%3ANF058577","4Fe-4S ferredoxin"],["NCBIfam%3ANF042982","8-methylmenaquinol:fumarate reductase flavoprotein subunit"]]},{"id":"GO:0022904","l":"respiratory electron transport chain","na":10,"nb":30,"a":[["metabolism/metabolism.html","metabolism"],["physiology/carboxydotrophic.html","carboxydotrophic"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"]],"b":[["ComplexPortal%3ACPX-865","Electron transfer flavoprotein complex"],["ComplexPortal%3ACPX-2731","Mitochondrial electron transfer flavoprotein complex"],["ComplexPortal%3ACPX-243","Respiratory chain complex I"],["GO%3A0019646","aerobic electron transport chain"],["GO%3A0019645","anaerobic electron transport chain"],["GO%3A0042773","ATP synthesis coupled electron transport"]]},{"id":"METPO:1000601","l":"oxygen preference","na":12,"nb":10,"a":[["environment/aerobic.html","aerobic"],["environment/aerotolerant.html","aerotolerant"],["environment/anaerobic.html","anaerobic"],["environment/capnophilic.html","capnophilic"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_aerobic.html","facultatively aerobic"]],"b":[["METPO%3A1000602","aerobic"],["METPO%3A1000609","aerotolerant"],["METPO%3A1000603","anaerobic"],["METPO%3A1005021","capnophilic"],["METPO%3A1000612","facultative oxygen preference"],["METPO%3A1000608","facultatively aerobic"]]},{"id":"CHEBI:17632","l":"nitrate","na":9,"nb":40,"a":[["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"],["metabolism/does_not_use_as_electron_acceptor.html","does not use as electron acceptor"]],"b":[["EC%3A1.14.12.17","nitric oxide dioxygenase"],["EC%3A1.7.1.1","nitrate reductase (NADH)"],["EC%3A1.7.1.2","nitrate reductase [NAD(P)H]"],["EC%3A1.7.1.3","nitrate reductase (NADPH)"],["EC%3A1.7.5.1","nitrate reductase (quinone)"],["EC%3A1.7.6.1","nitrite dismutase"]]},{"id":"GO:0006970","l":"response to osmotic stress","na":9,"nb":15,"a":[["environment/extremely_halophilic.html","extremely halophilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/halotolerant.html","halotolerant"],["environment/moderately_halophilic.html","moderately halophilic"],["environment/nacl_delta.html","NaCl delta"]],"b":[["GO%3A0071470","cellular response to osmotic stress"],["GO%3A0043575","detection of osmotic stimulus"],["GO%3A0006972","hyperosmotic response"],["GO%3A0006971","hypotonic response"],["GO%3A0010335","response to non-ionic osmotic stress"],["GO%3A0006970","response to osmotic stress"]]},{"id":"GO:0009767","l":"photosynthetic electron transport chain","na":9,"nb":13,"a":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["metabolism/phototrophy.html","phototrophy"],["physiology/photoautotrophic.html","photoautotrophic"],["physiology/photoheterotrophic.html","photoheterotrophic"]],"b":[["GO%3A0009767","photosynthetic electron transport chain"],["GO%3A0009773","photosynthetic electron transport in photosystem I"],["GO%3A0009772","photosynthetic electron transport in photosystem II"],["NCBIfam%3ATIGR01332","cytochrome b559 subunit alpha"],["NCBIfam%3ATIGR01333","cytochrome b559 subunit beta"],["NCBIfam%3ATIGR01156","cytochrome b6-f complex subunit IV"]]},{"id":"CHEBI:15378","l":"hydron","na":8,"nb":14383,"a":[["environment/acidophilic.html","acidophilic"],["environment/acidotolerant.html","acidotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"],["environment/obligately_acidophilic.html","obligately acidophilic"]],"b":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.1.10","L-xylulose reductase"],["EC%3A1.1.1.100","3-oxoacyl-[acyl-carrier-protein] reductase"],["EC%3A1.1.1.101","acylglycerone-phosphate reductase"],["EC%3A1.1.1.102","3-dehydrosphinganine reductase"],["EC%3A1.1.1.103","L-threonine 3-dehydrogenase"]]},{"id":"CHEBI:16240","l":"hydrogen peroxide","na":8,"nb":680,"a":[["environment/aerotolerant.html","aerotolerant"],["environment/microaerophilic.html","microaerophilic"],["environment/microaerotolerant.html","microaerotolerant"],["environment/obligately_aerobic.html","obligately aerobic"],["environment/obligately_anaerobic.html","obligately anaerobic"],["environment/oxygen_preference.html","oxygen preference"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16240","requires hydrogen peroxide"],["EC%3A1.1.3.10","pyranose oxidase"],["EC%3A1.1.3.11","L-sorbose oxidase"],["EC%3A1.1.3.12","pyridoxine 4-oxidase"],["EC%3A1.1.3.13","alcohol oxidase"],["EC%3A1.1.3.15","(S)-2-hydroxy-acid oxidase"]]},{"id":"GO:0009061","l":"anaerobic respiration","na":8,"nb":36,"a":[["environment/anaerobic.html","anaerobic"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["ComplexPortal%3ACPX-4841","Anaerobic glycerol-3-phosphate dehydrogenase complex"],["ComplexPortal%3ACPX-317","Formate hydrogenlyase-H/Hydrogenase-3 complex"],["ComplexPortal%3ACPX-6028","Formate hydrogenlyase-H/Hydrogenase-4 complex"],["ComplexPortal%3ACPX-281","Hydrogenase-1 complex"],["ComplexPortal%3ACPX-282","Hydrogenase-2 complex"],["ComplexPortal%3ACPX-3447","NapAB nitrate reductase complex"]]},{"id":"CHEBI:17750","l":"glycine betaine","na":8,"nb":33,"a":[["environment/euryhaline.html","euryhaline"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/moderately_halophilic.html","moderately halophilic"],["environment/nacl_optimum_mid1.html","NaCl optimum mid1"],["environment/nacl_optimum_mid2.html","NaCl optimum mid2"],["environment/nacl_range_mid2.html","NaCl range mid2"]],"b":[["EC%3A1.1.3.17","choline oxidase"],["EC%3A1.13.11.90","[1-hydroxy-2-(trimethylamino)ethyl]phosphonate dioxygenase (glycine- betaine-forming)"],["EC%3A1.14.13.251","glycine betaine monooxygenase"],["EC%3A1.2.1.8","betaine-aldehyde dehydrogenase"],["EC%3A1.21.4.4","betaine reductase"],["EC%3A2.1.1.157","sarcosine/dimethylglycine N-methyltransferase"]]},{"id":"GO:0009060","l":"aerobic respiration","na":8,"nb":25,"a":[["environment/aerobic.html","aerobic"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_aerobic.html","facultatively aerobic"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/obligately_aerobic.html","obligately aerobic"],["metabolism/aerobic_respiration.html","Aerobic respiration"]],"b":[["ComplexPortal%3ACPX-266","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-577","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-319","Trimethylamine-N-oxide reductase TorAC complex"],["GO%3A0019646","aerobic electron transport chain"],["GO%3A0009060","aerobic respiration"],["GO%3A0019409","aerobic respiration, using ammonia as electron donor"]]},{"id":"METPO:1003000","l":"pH growth preference","na":10,"nb":8,"a":[["environment/acidophilic.html","acidophilic"],["environment/acidotolerant.html","acidotolerant"],["environment/alkalotolerant.html","alkalotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"]],"b":[["METPO%3A1003003","acidophilic"],["METPO%3A1003008","acidotolerant"],["METPO%3A1003002","alkaliphilic"],["METPO%3A1003009","alkalotolerant"],["METPO%3A1003007","facultatively acidophilic"],["METPO%3A1003005","facultatively alkaliphilic"]]},{"id":"METPO:1000613","l":"temperature preference","na":9,"nb":8,"a":[["environment/extreme_hyperthermophilic.html","extreme hyperthermophilic"],["environment/facultative_psychrophilic.html","facultative psychrophilic"],["environment/hyperthermophilic.html","hyperthermophilic"],["environment/mesophilic.html","mesophilic"],["environment/psychrophilic.html","psychrophilic"],["environment/psychrotolerant.html","psychrotolerant"]],"b":[["METPO%3A1000720","facultative psychrophilic"],["METPO%3A1000617","hyperthermophilic"],["METPO%3A1000615","mesophilic"],["METPO%3A1000614","psychrophilic"],["METPO%3A1000618","psychrotolerant"],["METPO%3A1000613","temperature preference"]]},{"id":"CHEBI:15361","l":"pyruvate","na":7,"nb":410,"a":[["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15361","requires pyruvate"],["EC%3A1.1.1.27","L-lactate dehydrogenase"],["EC%3A1.1.1.28","D-lactate dehydrogenase"],["EC%3A1.1.1.38","malate dehydrogenase (oxaloacetate-decarboxylating)"],["EC%3A1.1.1.39","malate dehydrogenase (decarboxylating)"],["EC%3A1.1.1.40","malate dehydrogenase (oxaloacetate-decarboxylating) (NADP(+))"]]},{"id":"CHEBI:29033","l":"iron(2+)","na":7,"nb":396,"a":[["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/iron_oxidation.html","iron oxidation"],["metabolism/photoferrotrophy.html","photoferrotrophy"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29033","requires iron(2+)"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.11","glucoside 3-dehydrogenase (cytochrome c)"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.2.3","L-lactate dehydrogenase (cytochrome)"],["EC%3A1.1.2.4","D-lactate dehydrogenase (cytochrome)"]]},{"id":"CHEBI:29101","l":"sodium(1+)","na":7,"nb":292,"a":[["environment/alkaphilic.html","alkaliphilic"],["environment/euryhaline.html","euryhaline"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/nacl_delta_mid2.html","NaCl delta mid2"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29101","requires sodium(1+)"],["EC%3A7.2.1.1","NADH:ubiquinone reductase (Na(+)-transporting)"],["EC%3A7.2.1.2","ferredoxin--NAD(+) oxidoreductase (Na(+)-transporting)"],["EC%3A7.2.1.4","tetrahydromethanopterin S-methyltransferase"],["EC%3A7.2.2.1","Na(+)-transporting two-sector ATPase"],["EC%3A7.2.2.13","Na(+)/K(+)-exchanging ATPase"]]},{"id":"CHEBI:16189","l":"sulfate","na":7,"nb":133,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"],["metabolism/disproportionation.html","Disproportionation"],["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"],["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16189","requires sulfate"],["EC%3A1.14.11.77","alkyl sulfatase"],["EC%3A1.8.2.1","sulfite dehydrogenase (cytochrome)"],["EC%3A1.8.3.1","sulfite oxidase"],["EC%3A1.8.5.6","sulfite dehydrogenase (quinone)"],["EC%3A2.7.7.4","sulfate adenylyltransferase"]]},{"id":"GO:0009288","l":"bacterial-type flagellum","na":7,"nb":31,"a":[["morphology/amphitrichous.html","amphitrichous"],["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/lophotrichous.html","lophotrichous"],["morphology/monotrichous.html","monotrichous"],["morphology/non_motile.html","non motile"],["morphology/peritrichous.html","peritrichous"]],"b":[["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009288","bacterial-type flagellum"]]},{"id":"GO:0004096","l":"catalase activity","na":7,"nb":20,"a":[["environment/aerotolerant.html","aerotolerant"],["environment/desiccation_tolerant.html","desiccation tolerant"],["environment/microaerophilic.html","microaerophilic"],["environment/oxygen_preference.html","oxygen preference"],["environment/uv_radiation_tolerant.html","UV radiation tolerant"],["other/catalase_negative.html","catalase negative"]],"b":[["EC%3A1.11.1.6","catalase"],["METPO%3A1007084","catalase negative"],["METPO%3A1007083","catalase positive"],["RHEA%3A20309","2 H2O2 = O2 + 2 H2O"],["ComplexPortal%3ACPX-4742","Catalase complex"],["ComplexPortal%3ACPX-4767","Catalase complex"]]},{"id":"METPO:1000629","l":"halophily preference","na":10,"nb":7,"a":[["environment/euryhaline.html","euryhaline"],["environment/extremely_halophilic.html","extremely halophilic"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/halotolerant.html","halotolerant"]],"b":[["METPO%3A1000627","euryhaline"],["METPO%3A1000621","haloalkaliphilic"],["METPO%3A1000620","halophilic"],["METPO%3A1000629","halophily preference"],["METPO%3A1000622","halotolerant"],["METPO%3A1000624","non halophilic"]]},{"id":"CHEBI:65015","l":"","na":7,"nb":7,"a":[["environment/euryhaline.html","euryhaline"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/halotolerant.html","halotolerant"],["environment/nacl_optimum.html","NaCl optimum"]],"b":[["EC%3A1.1.3.43","paromamine 6'-oxidase"],["EC%3A2.4.1.301","2'-deamino-2'-hydroxyneamine 1-alpha-D-kanosaminyltransferase"],["EC%3A3.5.1.112","2'-N-acetylparomamine deacetylase"],["RHEA%3A34031","2'-N-acetylparomamine + H2O = paromamine + acetate"],["RHEA%3A34035","paromamine + O2 = 6'-oxoparomamine + H2O2"],["RHEA%3A35927","paromamine + UDP-alpha-D-glucose = 3'-deamino-3'-hydroxykanamycin C + UDP + H(+)"]]},{"id":"GO:0042710","l":"biofilm formation","na":7,"nb":7,"a":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/host_associated.html","host-associated"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["ecology/plant_pathogen.html","plant pathogen"],["ecology/rhizosphere_association.html","rhizosphere association"]],"b":[["GO%3A0042710","biofilm formation"],["GO%3A0044399","multi-species biofilm formation"],["GO%3A0044010","single-species biofilm formation"],["GO%3A0090605","submerged biofilm formation"],["GO%3A0090604","surface biofilm formation"],["Reactome%3AR-HSA-9931953","Biofilm formation"]]},{"id":"NCBITaxon:1111708","l":"Synechocystis sp. PCC 6803 substr. Kazusa","na":6,"nb":61,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/photoautotrophic.html","photoautotrophic"],["physiology/photolithotrophic.html","photolithotrophic"],["physiology/phototrophic.html","phototrophic"]],"b":[["Pfam%3APF07698","7TM receptor with intracellular HD hydrolase"],["Pfam%3APF07697","7TM-HD extracellular"],["Pfam%3APF11266","Long-chain fatty aldehyde decarbonylase"],["Pfam%3APF21571","Arginine dihydrolase ArgZ-like, C-terminal, first region"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF17886","HSP20-like domain found in ArsA"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":6,"nb":30,"a":[["metabolism/butanediol_fermentation.html","2,3-butanediol fermentation"],["metabolism/citrate_fermentation.html","citrate fermentation"],["morphology/capsule.html","capsule"],["morphology/non_motile.html","non motile"],["other/indole_test_negative.html","indole test negative"],["other/methyl_red_test_negative.html","methyl red test negative"]],"b":[["Pfam%3APF08787","Alginate lyase"],["Pfam%3APF13354","Beta-lactamase enzyme family"],["Pfam%3APF08218","Citrate lyase ligase C-terminal domain"],["Pfam%3APF13727","CoA-binding domain"],["Pfam%3APF12324","Helix-turn-helix domain of alkylmercury lyase"],["Pfam%3APF20714","DpiA-like helix-turn-helix domain"]]},{"id":"GO:0016117","l":"carotenoid biosynthetic process","na":6,"nb":26,"a":[["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/cream_pigmented.html","cream pigmented"],["morphology/orange_pigmented.html","orange pigmented"],["morphology/pigmentation.html","pigmentation"],["morphology/pink_pigmented.html","pink pigmented"],["morphology/yellow_pigmented.html","yellow pigmented"]],"b":[["GO%3A1901824","alpha-carotene biosynthetic process"],["GO%3A1901821","alpha-zeacarotene biosynthetic process"],["GO%3A1901812","beta-carotene biosynthetic process"],["GO%3A1901818","beta-zeacarotene biosynthetic process"],["GO%3A0016117","carotenoid biosynthetic process"],["GO%3A0016123","xanthophyll biosynthetic process"]]},{"id":"GO:0006754","l":"ATP biosynthetic process","na":6,"nb":22,"a":[["environment/aerobic.html","aerobic"],["environment/ph_range_mid2.html","pH range mid2"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/lithoautotrophic.html","lithoautotrophic"],["physiology/mixotrophic.html","mixotrophic"]],"b":[["GO%3A0006756","AMP phosphorylation"],["GO%3A0006754","ATP biosynthetic process"],["GO%3A0015986","proton motive force-driven ATP synthesis"],["NCBIfam%3ATIGR02546","type III secretion system ATPase SctN"],["InterPro%3AIPR020971","ATP synthase, F1 beta subunit"],["PANTHER%3APTHR11910","ATP SYNTHASE DELTA CHAIN"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":6,"nb":20,"a":[["ecology/free_living.html","free-living"],["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["genomics/transposable_element.html","transposable element"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"]],"b":[["Pfam%3APF14535","AMP-binding enzyme C-terminal domain"],["Pfam%3APF13442","Cytochrome C oxidase, cbb3-type, subunit III"],["Pfam%3APF22247","Catechol 2,3-dioxygenase-like N-terminal domain"],["Pfam%3APF25371","Domain of unknown function (DUF7884)"],["Pfam%3APF19301","LigXa C-terminal domain like"],["Pfam%3APF12729","Four helix bundle sensory module for signal transduction"]]},{"id":"CHEBI:16134","l":"ammonia","na":6,"nb":11,"a":[["environment/ph_delta_mid1.html","pH delta mid1"],["metabolism/nitrogen_fixation.html","nitrogen fixation"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"],["physiology/urease_activity.html","urease activity"]],"b":[["TCDB%3A1.A.11","The Ammonium Transporter Channel (Amt) Family"],["MCSA%3A376","adenosine deaminase"],["MCSA%3A75","aspartate-ammonia ligase"],["MCSA%3A449","cystathionine beta-lyase"],["MCSA%3A97","cytidine deaminase"],["MCSA%3A710","cytosine deaminase (bacterial)"]]},{"id":"NCBITaxon:266264","l":"Cupriavidus metallidurans CH34","na":6,"nb":10,"a":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/copper_tolerant.html","copper tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["environment/zinc_tolerant.html","zinc tolerant"]],"b":[["Pfam%3APF25973","CzcB-like, barrel-sandwich hybrid domain"],["Pfam%3APF09828","ChrB, C-terminal domain"],["Pfam%3APF20229","Protein ChrB, N-terminal"],["Pfam%3APF01923","Cobalamin adenosyltransferase"],["Pfam%3APF25975","CzcB C-terminal circularly permuted SH3-like domain"],["Pfam%3APF25971","CzcB, N-terminal domain"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":6,"nb":10,"a":[["ecology/animal_pathogen.html","animal pathogen"],["ecology/biosafety_level_2.html","biosafety level 2"],["genomics/genomic_island.html","genomic island"],["genomics/prophage.html","prophage"],["morphology/flagellated.html","flagellated"],["morphology/peritrichous.html","peritrichous"]],"b":[["TED%3AAF-A0A5T2E4X7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5T2E4X7-F1-model_v4_TED01"],["TED%3AAF-A0A5Y4BP44-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A5Y4BP44-F1-model_v4_TED01"],["TED%3AAF-A0A623P6F3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A623P6F3-F1-model_v4_TED02"],["TED%3AAF-A0A721BDS7-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A721BDS7-F1-model_v4_TED02"],["TED%3AAF-A0A743P324-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A743P324-F1-model_v4_TED01"],["TED%3AAF-A0A757VWR3-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A757VWR3-F1-model_v4_TED02"]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":6,"nb":9,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/oxidase_activity.html","oxidase activity"]],"b":[["Pfam%3APF07835","Bacterial aa3 type cytochrome c oxidase subunit IV"],["Pfam%3APF04828","Glutathione-dependent formaldehyde-activating enzyme"],["Pfam%3APF16448","LapD/MoxY periplasmic domain"],["Pfam%3APF17267","Family of unknown function (DUF5333)"],["Pfam%3APF17272","Family of unknown function (DUF5337)"],["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"]]},{"id":"GO:0009292","l":"horizontal gene transfer","na":6,"nb":7,"a":[["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["genomics/genome_size.html","genome size"],["genomics/genomic_island.html","genomic island"],["genomics/mobile_genetic_element.html","mobile genetic element"],["genomics/pangenome_openness.html","pangenome openness"]],"b":[["GO%3A0009294","DNA-mediated transformation"],["GO%3A0009292","horizontal gene transfer"],["GO%3A0009293","transduction"],["GO%3A0009291","unidirectional conjugation"],["NCBIfam%3ATIGR04359","entry exclusion lipoprotein TrbK"],["NCBIfam%3ATIGR04361","entry exclusion protein TrbK"]]},{"id":"CHEBI:16474","l":"","na":6,"nb":6,"a":[["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16474","requires NADPH"],["MCSA%3A112","dihydrofolate reductase (bacterial)"],["MCSA%3A6","glutathione-disulfide reductase"],["MCSA%3A7","isocitrate dehydrogenase (NADP+)"],["MCSA%3A21","malate dehydrogenase (oxaloacetate-decarboxylating)"],["proteintraitsmech%3ABIOLIP_NDP","NDP-binding site"]]},{"id":"CHEBI:16301","l":"nitrite","na":5,"nb":116,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["EC%3A1.13.11.64","5-nitrosalicylate dioxygenase"],["EC%3A1.13.12.16","nitronate monooxygenase"],["EC%3A1.14.12.23","nitroarene dioxygenase"],["EC%3A1.14.12.24","2,4-dinitrotoluene dioxygenase"],["EC%3A1.14.13.166","4-nitrocatechol 4-monooxygenase"],["EC%3A1.14.13.167","4-nitrophenol 4-monooxygenase"]]},{"id":"GO:0009056","l":"catabolic process","na":5,"nb":109,"a":[["metabolism/metabolism.html","metabolism"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"],["physiology/heterotrophic.html","heterotrophic"],["physiology/organotrophic.html","organotrophic"]],"b":[["GO%3A0018911","1,2,4-trichlorobenzene catabolic process"],["GO%3A0019261","1,4-dichlorobenzene catabolic process"],["GO%3A0046302","2-chloro-N-isopropylacetanilide catabolic process"],["GO%3A1901851","7,8-didemethyl-8-hydroxy-5-deazariboflavin catabolic process"],["GO%3A0006581","acetylcholine catabolic process"],["GO%3A0046185","aldehyde catabolic process"]]},{"id":"GO:0006935","l":"chemotaxis","na":5,"nb":64,"a":[["morphology/flagellated.html","flagellated"],["morphology/motile.html","motile"],["morphology/motility.html","motility"],["physiology/chemotaxis.html","chemotaxis"],["physiology/copiotrophic.html","copiotrophic"]],"b":[["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["ComplexPortal%3ACPX-1085","Flagellar Motor Switch Complex, CCW variant"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009454","aerotaxis"]]},{"id":"CHEBI:29103","l":"potassium(1+)","na":5,"nb":32,"a":[["environment/extremely_halophilic.html","extremely halophilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/non_halophilic.html","non halophilic"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29103","requires potassium(1+)"],["EC%3A7.2.2.13","Na(+)/K(+)-exchanging ATPase"],["EC%3A7.2.2.19","H(+)/K(+)-exchanging ATPase"],["EC%3A7.2.2.6","P-type K(+) transporter"],["RHEA%3A18353","2 K(+)(out) + 3 Na(+)(in) + ATP + H2O = 2 K(+)(in) + 3 Na(+)(out) + ADP + phosphate + H(+)"],["RHEA%3A69967","Ca(2+)(out) + K(+)(out) + 4 Na(+)(in) = Ca(2+)(in) + K(+)(in) + 4 Na(+)(out)"]]},{"id":"GO:0004784","l":"superoxide dismutase activity","na":5,"nb":27,"a":[["environment/aerotolerant.html","aerotolerant"],["environment/desiccation_tolerant.html","desiccation tolerant"],["environment/microaerophilic.html","microaerophilic"],["environment/obligately_aerobic.html","obligately aerobic"],["environment/oxygen_preference.html","oxygen preference"]],"b":[["EC%3A1.15.1.1","superoxide dismutase"],["RHEA%3A20696","2 superoxide + 2 H(+) = H2O2 + O2"],["ComplexPortal%3ACPX-21824","CCS-SOD1, oxidative stress response complex"],["ComplexPortal%3ACPX-2896","[Cu-Zn] Superoxide dismutase complex"],["ComplexPortal%3ACPX-2897","[Cu-Zn] Superoxide dismutase complex"],["ComplexPortal%3ACPX-2898","[Cu-Zn] Superoxide dismutase complex"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":5,"nb":23,"a":[["genomics/gabija_system.html","Gabija system"],["genomics/shedu_system.html","Shedu system"],["genomics/thoeris_system.html","Thoeris system"],["physiology/caseinase_activity.html","caseinase activity"],["physiology/lecithinase_activity.html","lecithinase activity"]],"b":[["Pfam%3APF08878","HamA"],["Pfam%3APF05791","Bacillus haemolytic enterotoxin (HBL)"],["Pfam%3APF10803","Spore germination GerPB"],["Pfam%3APF10737","Spore germination protein GerPC"],["Pfam%3APF10970","Spore germination protein GerPE"],["Pfam%3APF07486","Cell Wall Hydrolase"]]},{"id":"CHEBI:15948","l":"","na":5,"nb":20,"a":[["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/orange_pigmented.html","orange pigmented"],["morphology/pink_pigmented.html","pink pigmented"],["morphology/red_pigmented.html","red pigmented"],["morphology/yellow_pigmented.html","yellow pigmented"]],"b":[["EC%3A1.3.99.26","all-trans-zeta-carotene desaturase"],["EC%3A1.3.99.31","phytoene desaturase (lycopene-forming)"],["EC%3A2.5.1.149","lycopene elongase/hydratase (flavuxanthin-forming)"],["EC%3A2.5.1.150","lycopene elongase/hydratase (dihydrobisanhydrobacterioruberin-forming)"],["EC%3A4.2.1.131","carotenoid 1,2-hydratase"],["EC%3A5.2.1.13","prolycopene isomerase"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":13,"a":[["metabolism/chitinolysis.html","chitinolysis"],["morphology/pigmentation.html","pigmentation"],["morphology/red_pigmented.html","red pigmented"],["morphology/white_pigmented.html","white pigmented"],["physiology/beta_n_acetylhexosaminidase_activity.html","beta-N-acetylhexosaminidase activity"]],"b":[["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF03173","Putative carbohydrate binding domain"],["Pfam%3APF02838","Glycosyl hydrolase family 20, domain 2"],["Pfam%3APF06438","Heme-binding protein A (HasA)"],["Pfam%3APF02974","Protease inhibitor Inh"],["Pfam%3APF05247","Flagellar transcriptional activator (FlhD)"]]},{"id":"GO:0031470","l":"carboxysome","na":5,"nb":10,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["morphology/carboxysome.html","carboxysome"],["physiology/autotrophic.html","autotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["GO%3A0031470","carboxysome"],["NCBIfam%3ANF053791","alpha-carboxysome major shell protein CsoS1"],["NCBIfam%3ANF049993","beta-carboxysome assembly chaperone CcmS"],["NCBIfam%3ANF053792","beta-carboxysome assembly protein CcmO"],["NCBIfam%3ANF053796","beta-carboxysome protein CcmP"],["NCBIfam%3ANF053793","beta-carboxysome scaffolding protein CcmN"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":5,"nb":10,"a":[["metabolism/dimethyl_sulfoxide_respiration.html","dimethyl sulfoxide respiration"],["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/electron_transfer.html","Electron transfer"]],"b":[["Pfam%3APF27445","Adaptation to cold protein A"],["Pfam%3APF27450","AtcB C-terminal domain"],["Pfam%3APF27486","AtcB N-terminal domain"],["Pfam%3APF02464","CinA C-terminal domain"],["Pfam%3APF13657","HipA N-terminal domain"],["Pfam%3APF01934","Ribonuclease HepT-like"]]},{"id":"GO:0009274","l":"peptidoglycan-based cell wall","na":5,"nb":8,"a":[["morphology/cell_shape.html","cell shape"],["morphology/cell_width.html","cell width"],["morphology/gram_stain.html","gram stain"],["morphology/pleomorphic_shaped.html","pleomorphic shaped"],["morphology/sphere_shaped.html","sphere shaped"]],"b":[["GO%3A0009276","Gram-negative-bacterium-type cell wall"],["GO%3A0009275","Gram-positive-bacterium-type cell wall"],["GO%3A0009274","peptidoglycan-based cell wall"],["NCBIfam%3ANF007061","bifunctional glycosyl transferase/transpeptidase"],["NCBIfam%3ATIGR03656","heme uptake protein IsdC"],["NCBIfam%3ATIGR02070","monofunctional biosynthetic peptidoglycan transglycosylase"]]},{"id":"InterPro:IPR001765","l":"","na":6,"nb":5,"a":[["metabolism/carbon_fixation.html","carbon fixation"],["morphology/carboxysome.html","carboxysome"],["physiology/autotrophic.html","autotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]],"b":[["Pfam%3APF00484","Carbonic anhydrase"],["PANTHER%3APTHR11002","CARBONIC ANHYDRASE"],["PANTHER%3APTHR43175","CARBONIC ANHYDRASE"],["PROSITE%3APS00704","Prokaryotic-type carbonic anhydrases signature 1"],["PROSITE%3APS00705","Prokaryotic-type carbonic anhydrases signature 2"]]},{"id":"NCBITaxon:224308","l":"Bacillus subtilis subsp. subtilis str. 168","na":4,"nb":11310,"a":[["metabolism/proteolysis.html","proteolysis"],["morphology/spore_forming.html","spore forming"],["morphology/spore_shaped.html","spore shaped"],["morphology/sporulation.html","sporulation"]],"b":[["EC%3A1.1.-.-","Acting on the CH-OH group of donors"],["EC%3A1.10.3.-","With oxygen as acceptor"],["EC%3A1.13.12.-","With incorporation of one atom of oxygen (internal monooxygenases or internal mixed function oxidases)"],["EC%3A1.14.19.-","With oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water"],["EC%3A1.17.5.-","With a quinone or similar compound as acceptor"],["EC%3A1.21.98.-","With other, known acceptors"]]},{"id":"CHEBI:15377","l":"water","na":4,"nb":9376,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["physiology/catalase_activity.html","catalase activity"],["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["EC%3A1.1.1.115","ribose 1-dehydrogenase (NADP(+))"],["EC%3A1.1.1.132","GDP-mannose 6-dehydrogenase"],["EC%3A1.1.1.136","UDP-N-acetylglucosamine 6-dehydrogenase"],["EC%3A1.1.1.186","dTDP-galactose 6-dehydrogenase"],["EC%3A1.1.1.192","long-chain-alcohol dehydrogenase"],["EC%3A1.1.1.205","IMP dehydrogenase"]]},{"id":"GO:0006412","l":"translation","na":4,"nb":455,"a":[["environment/mesophilic.html","mesophilic"],["genomics/codon_usage_bias.html","codon usage bias"],["physiology/cold_shock_response.html","cold shock response"],["physiology/dormancy.html","dormancy"]],"b":[["GO%3A0002181","cytoplasmic translation"],["GO%3A0032543","mitochondrial translation"],["GO%3A0032544","plastid translation"],["GO%3A0140241","translation at synapse"],["GO%3A0006412","translation"],["Reactome%3AR-HSA-72766","Translation"]]},{"id":"CHEBI:30089","l":"acetate","na":4,"nb":302,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["EC%3A1.1.1.318","eugenol synthase"],["EC%3A1.1.1.319","isoeugenol synthase"],["EC%3A1.13.11.50","acetylacetone-cleaving enzyme"],["EC%3A1.13.12.4","lactate 2-monooxygenase"],["EC%3A1.14.13.54","ketosteroid monooxygenase"],["EC%3A1.14.14.19","steroid 17alpha-monooxygenase"]]},{"id":"GO:0009252","l":"peptidoglycan biosynthetic process","na":4,"nb":90,"a":[["morphology/bacillus_shaped.html","bacillus shaped"],["morphology/cell_shape.html","cell shape"],["morphology/coccobacillus_shaped.html","coccobacillus shaped"],["morphology/rod_shaped.html","rod shaped"]],"b":[["ComplexPortal%3ACPX-5718","Elongasome complex"],["GO%3A0009252","peptidoglycan biosynthetic process"],["GO%3A0018104","peptidoglycan-protein cross-linking"],["NCBIfam%3ATIGR00492","alanine racemase"],["NCBIfam%3ANF007061","bifunctional glycosyl transferase/transpeptidase"],["NCBIfam%3ANF006986","bifunctional UDP-N-acetylglucosamine diphosphorylase/glucosamine-1-phosphate N-acetyltransferase GlmU"]]},{"id":"GO:0051301","l":"cell division","na":4,"nb":86,"a":[["morphology/sarcina_arrangement.html","sarcina arrangement"],["morphology/staphylococcus_arrangement.html","staphylococcus arrangement"],["morphology/streptococcus_arrangement.html","streptococcus arrangement"],["morphology/tetrad_arrangement.html","tetrad arrangement"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["ComplexPortal%3ACPX-5782","Tol-Pal cell envelope complex"],["GO%3A0090510","anticlinal cell division"],["GO%3A0008356","asymmetric cell division"],["GO%3A0007114","cell budding"],["GO%3A0051301","cell division"]]},{"id":"GO:0042597","l":"periplasmic space","na":4,"nb":76,"a":[["morphology/axially_filamented.html","axially filamented"],["morphology/gram_negative.html","gram negative"],["physiology/methylotrophic.html","methylotrophic"],["physiology/natural_competence.html","natural competence"]],"b":[["ComplexPortal%3ACPX-3447","NapAB nitrate reductase complex"],["ComplexPortal%3ACPX-4281","PaoABC periplasmic aldehyde oxidoreductase"],["GO%3A0030287","cell wall-bounded periplasmic space"],["GO%3A0030288","outer membrane-bounded periplasmic space"],["GO%3A0042597","periplasmic space"],["GO%3A0036240","septal periplasm"]]},{"id":"GO:0030001","l":"metal ion transport","na":4,"nb":66,"a":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/metal_tolerant.html","metal tolerant"]],"b":[["GO%3A0015690","aluminum cation transport"],["GO%3A0006816","calcium ion transport"],["GO%3A0015692","lead ion transport"],["GO%3A0010351","lithium ion transport"],["GO%3A0015693","magnesium ion transport"],["GO%3A0030001","metal ion transport"]]},{"id":"GO:0009523","l":"photosystem II","na":4,"nb":59,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["GO%3A0030095","chloroplast photosystem II"],["GO%3A0009523","photosystem II"],["GO%3A0030096","plasma membrane-derived thylakoid photosystem II"],["NCBIfam%3ATIGR01332","cytochrome b559 subunit alpha"],["NCBIfam%3ATIGR01333","cytochrome b559 subunit beta"],["NCBIfam%3ANF012505","Lumenal portion of Cytochrome b559, alpha (gene psbE) subunit"]]},{"id":"CHEBI:17245","l":"carbon monoxide","na":4,"nb":31,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["physiology/carboxydotrophic.html","carboxydotrophic"],["physiology/oxidase_activity.html","oxidase activity"]],"b":[["EC%3A1.13.11.24","quercetin 2,3-dioxygenase"],["EC%3A1.13.11.47","3-hydroxy-4-oxoquinoline 2,4-dioxygenase"],["EC%3A1.13.11.48","3-hydroxy-2-methylquinolin-4-one 2,4-dioxygenase"],["EC%3A1.13.11.53","acireductone dioxygenase (Ni(2+)-requiring)"],["EC%3A1.14.14.18","heme oxygenase (biliverdin-producing)"],["EC%3A1.14.15.20","heme oxygenase (biliverdin-producing, ferredoxin)"]]},{"id":"NCBITaxon:171101","l":"Streptococcus pneumoniae R6","na":4,"nb":31,"a":[["morphology/ellipsoidal.html","ellipsoidal"],["morphology/oval_shaped.html","oval shaped"],["morphology/ovoid_shaped.html","ovoid shaped"],["physiology/natural_competence.html","natural competence"]],"b":[["Pfam%3APF03590","Aspartate-ammonia ligase"],["Pfam%3APF25935","LcnD-like, barrel-sandwich hybrid domain"],["Pfam%3APF24568","Peptidoglycan hydrolase PcsB, coiled-coil domain"],["Pfam%3APF05257","CHAP domain"],["Pfam%3APF27342","ComB N-terminal domain"],["Pfam%3APF26697","Competence protein ComGC, C-terminal domain"]]},{"id":"CHEBI:26833","l":"sulfur atom","na":4,"nb":24,"a":[["metabolism/disproportionation.html","Disproportionation"],["morphology/sulfur_globule.html","sulfur globule"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/photolithotrophic.html","photolithotrophic"]],"b":[["EC%3A1.12.98.4","sulfhydrogenase"],["EC%3A1.13.11.55","sulfur oxygenase/reductase"],["EC%3A1.8.1.18","NAD(P)H sulfur oxidoreductase (CoA-dependent)"],["EC%3A1.8.1.19","sulfide dehydrogenase"],["EC%3A1.8.2.3","sulfide-cytochrome-c reductase (flavocytochrome c)"],["EC%3A1.8.2.7","thiocyanate desulfurase"]]},{"id":"GO:0009372","l":"quorum sensing","na":4,"nb":21,"a":[["ecology/plant_pathogen.html","plant pathogen"],["morphology/green_pigmented.html","green pigmented"],["morphology/swarming_motility.html","swarming motility"],["physiology/quorum_sensing.html","quorum sensing"]],"b":[["ComplexPortal%3ACPX-4315","Autoinducer-2 ABC transporter complex"],["GO%3A0120218","host interaction involved in quorum sensing"],["GO%3A0009372","quorum sensing"],["NCBIfam%3ANF052393","acyl-homoserine-lactone synthase"],["NCBIfam%3ANF008187","autoinducer-2 kinase"],["NCBIfam%3ANF010444","autoinducer-binding transcriptional regulator TraR"]]},{"id":"GO:0009432","l":"SOS response","na":4,"nb":14,"a":[["genomics/prophage.html","prophage"],["morphology/cell_length_large.html","cell length large"],["morphology/filament_shaped.html","filament shaped"],["physiology/sos_response.html","SOS response"]],"b":[["ComplexPortal%3ACPX-5544","DNA polymerase V mutasome complex"],["ComplexPortal%3ACPX-6026","YafNO toxin-antitoxin complex"],["GO%3A0009432","SOS response"],["NCBIfam%3ATIGR01389","DNA helicase RecQ"],["NCBIfam%3ATIGR00611","DNA replication/repair protein RecF"],["NCBIfam%3ANF041583","SOS-induced cell division inhibitor SulA"]]},{"id":"CHEBI:25728","l":"","na":11,"nb":4,"a":[["environment/euryhaline.html","euryhaline"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/halotolerant.html","halotolerant"],["environment/nacl_optimum.html","NaCl optimum"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.A.22","The Large Conductance Mechanosensitive Ion Channel (MscL) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.A.23","The Small Conductance Mechanosensitive Ion Channel (MscS) Family"]]},{"id":"GO:0009326","l":"formate dehydrogenase complex","na":4,"nb":9,"a":[["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/syntrophy.html","Syntrophy"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"],["physiology/methylotrophic.html","methylotrophic"]],"b":[["ComplexPortal%3ACPX-1975","Formate dehydrogenase N complex"],["ComplexPortal%3ACPX-6029","Formate dehydrogenase Z complex"],["ComplexPortal%3ACPX-317","Formate hydrogenlyase-H/Hydrogenase-3 complex"],["ComplexPortal%3ACPX-6028","Formate hydrogenlyase-H/Hydrogenase-4 complex"],["GO%3A0009326","formate dehydrogenase complex"],["NCBIfam%3ATIGR00129","formate dehydrogenase accessory sulfurtransferase FdhD"]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":4,"nb":9,"a":[["morphology/diplococcus_shaped.html","diplococcus shaped"],["morphology/non_motile.html","non motile"],["morphology/sphere_shaped.html","sphere shaped"],["physiology/natural_competence.html","natural competence"]],"b":[["Pfam%3APF19567","Capsular polysaccharide synthesis, CpsB/CapC"],["Pfam%3APF07501","G5 domain"],["Pfam%3APF13551","Winged helix-turn helix"],["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF03047","COMC family"],["Pfam%3APF04556","DpnII restriction endonuclease"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":9,"nb":4,"a":[["environment/euryhaline.html","euryhaline"],["genomics/dartg_system.html","DarTG system"],["genomics/ddmde_system.html","DdmDE system"],["genomics/genomic_island.html","genomic island"],["genomics/lamassu_system.html","Lamassu system"],["genomics/nixi_system.html","NixI system"]],"b":[["Pfam%3APF01375","Heat-labile enterotoxin alpha chain"],["Pfam%3APF09101","Exotoxin A binding"],["Pfam%3APF09009","Exotoxin A catalytic"],["Pfam%3APF09102","Exotoxin A, targeting"]]},{"id":"GO:0006119","l":"oxidative phosphorylation","na":4,"nb":8,"a":[["environment/ph_delta.html","pH delta"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["physiology/organoheterotrophic.html","organoheterotrophic"],["physiology/persister_cell_formation.html","persister cell formation"]],"b":[["ComplexPortal%3ACPX-268","Cytochrome bd-I ubiquinol oxidase complex"],["ComplexPortal%3ACPX-269","Cytochrome bd-II ubiquinol oxidase complex"],["GO%3A0006119","oxidative phosphorylation"],["PANTHER%3APTHR12448","ATP SYNTHASE EPSILON CHAIN, MITOCHONDRIAL"],["PANTHER%3APTHR13080","ATP SYNTHASE F CHAIN, MITOCHONDRIAL-RELATED"],["PANTHER%3APTHR43141","CYTOCHROME BD2 SUBUNIT II"]]},{"id":"GO:0030964","l":"NADH dehydrogenase complex","na":4,"nb":8,"a":[["metabolism/electron_transfer.html","Electron transfer"],["metabolism/respiration.html","respiration"],["physiology/organoheterotrophic.html","organoheterotrophic"],["physiology/organotrophic.html","organotrophic"]],"b":[["GO%3A0030964","NADH dehydrogenase complex"],["GO%3A0071685","NADH dehydrogenase complex (plastoquinone)"],["GO%3A0045271","respiratory chain complex I"],["NCBIfam%3ATIGR00403","NAD(P)H-quinone oxidoreductase subunit I"],["NCBIfam%3ATIGR01957","NADH-quinone oxidoreductase subunit B"],["NCBIfam%3ANF008728","NADH-quinone oxidoreductase subunit C/D"]]},{"id":"InterPro:IPR000158","l":"","na":6,"nb":4,"a":[["morphology/bacillus_shaped.html","bacillus shaped"],["morphology/cell_length_large.html","cell length large"],["morphology/cell_shape.html","cell shape"],["morphology/rod_shaped.html","rod shaped"],["morphology/sarcina_arrangement.html","sarcina arrangement"],["morphology/staphylococcus_arrangement.html","staphylococcus arrangement"]],"b":[["Pfam%3APF12327","FtsZ family, C-terminal domain"],["HAMAP%3AMF_00909","Cell division protein FtsZ [ftsZ]"],["PROSITE%3APS01134","FtsZ protein signature 1"],["PROSITE%3APS01135","FtsZ protein signature 2"]]},{"id":"NCBITaxon:1085","l":"Rhodospirillum rubrum","na":6,"nb":4,"a":[["metabolism/phototrophy.html","phototrophy"],["morphology/spiral_shaped.html","spiral shaped"],["physiology/carboxydotrophic.html","carboxydotrophic"],["physiology/photoheterotrophic.html","photoheterotrophic"],["physiology/photoorganoheterotrophic.html","photoorganoheterotrophic"],["physiology/phototrophic.html","phototrophic"]],"b":[["Pfam%3APF00556","Antenna complex alpha/beta subunit"],["Pfam%3APF09527","Putative F0F1-ATPase subunit Ca2+/Mg2+ transporter"],["Pfam%3APF07357","Dinitrogenase reductase ADP-ribosyltransferase (DRAT)"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"]]},{"id":"NCBITaxon:194439","l":"Chlorobaculum tepidum TLS","na":4,"nb":6,"a":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"],["physiology/photoautotrophic.html","photoautotrophic"],["physiology/photolithoautotrophic.html","photolithoautotrophic"],["physiology/photolithotrophic.html","photolithotrophic"]],"b":[["Pfam%3APF02327","Bacteriochlorophyll A protein"],["Pfam%3APF27499","CsmB chlorosome envelope protein"],["Pfam%3APF28537","Probable trigger factor, FKBP-like domain"],["Pfam%3APF02043","Bacteriochlorophyll C binding protein"],["Pfam%3APF11098","Chlorosome envelope protein C"],["Pfam%3APF10643","Photosystem P840 reaction-centre cytochrome c-551"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":4,"nb":6,"a":[["ecology/mutualism.html","mutualism"],["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["ecology/symbiosis.html","symbiosis"],["genomics/hna_system.html","Hna system"]],"b":[["Pfam%3APF01177","Asp/Glu/Hydantoin racemase"],["Pfam%3APF11339","Protein of unknown function (DUF3141)"],["PROSITE%3APS01303","BCCT family of transporters signature"],["PROSITE%3APS00665","Dihydrodipicolinate synthase signature 1"],["TED%3AAF-A0A2J0YSD4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2J0YSD4-F1-model_v4_TED01"],["TED%3AAF-A0A843ZNG8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A843ZNG8-F1-model_v4_TED01"]]},{"id":"CHEBI:24431","l":"","na":5,"nb":4,"a":[["metabolism/does_not_use_as_nitrogen_source.html","does not use as nitrogen source"],["metabolism/does_not_use_as_sulfur_source.html","does not use as sulfur source"],["metabolism/uses_as_nitrogen_source.html","uses as nitrogen source"],["metabolism/uses_as_sulfur_source.html","uses as sulfur source"],["upper/chemical_entity.html","chemical entity"]],"b":[["EC%3A1.13.12.16","nitronate monooxygenase"],["EC%3A1.17.3.1","pteridine oxidase"],["RHEA%3A12777","2-amino-4-hydroxypteridine + O2 = 2-amino-4,7-dihydroxypteridine + chemical entity"],["RHEA%3A28767","ethylnitronate + O2 = chemical entity + acetaldehyde + nitrite + H(+)"]]},{"id":"GO:0043684","l":"type IV secretion system complex","na":4,"nb":5,"a":[["ecology/animal_pathogen.html","animal pathogen"],["ecology/human_pathogen.html","human pathogen"],["genomics/genomic_island.html","genomic island"],["genomics/mobile_genetic_element.html","mobile genetic element"]],"b":[["GO%3A0043684","type IV secretion system complex"],["NCBIfam%3ANF049884","Dot/Icm T4SS effector Ceg23"],["NCBIfam%3ATIGR02788","P-type DNA transfer ATPase VirB11"],["NCBIfam%3ATIGR02791","P-type DNA transfer protein VirB5"],["NCBIfam%3ANF047983","T4SS effector phosphatidylinositol 3-Kinase RisK1"]]},{"id":"METPO:1000630","l":"biological process","na":4,"nb":5,"a":[["metabolism/metabolism.html","metabolism"],["metabolism/nitrification.html","nitrification"],["upper/biological_process.html","biological process"],["upper/material_entity.html","material entity"]],"b":[["METPO%3A1000630","biological process"],["METPO%3A1005038","denitrification"],["METPO%3A1000060","metabolism"],["METPO%3A1005001","nitrification"],["METPO%3A1005039","nitrogen fixation"]]},{"id":"METPO:2000303","l":"does not show activity of","na":5,"nb":4,"a":[["metabolism/does_not_show_activity_of.html","does not show activity of"],["other/catalase_negative.html","catalase negative"],["other/coagulase_negative.html","coagulase negative"],["other/oxidase_negative.html","oxidase negative"],["other/urease_negative.html","urease negative"]],"b":[["METPO%3A1007084","catalase negative"],["METPO%3A1007091","coagulase negative"],["METPO%3A1007086","oxidase negative"],["METPO%3A1007088","urease negative"]]},{"id":"InterPro:IPR033875","l":"Flagellum site-determining protein FlhG","na":4,"nb":4,"a":[["morphology/amphitrichous.html","amphitrichous"],["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/lophotrichous.html","lophotrichous"],["morphology/monotrichous.html","monotrichous"]],"b":[["GO%3A0044781","bacterial-type flagellum organization"],["CDD%3Acd02038","FlhG-like"],["InterPro%3AIPR033875","Flagellum site-determining protein FlhG"],["Pfam%3APF10609","NUBPL iron-transfer P-loop NTPase"]]},{"id":"GO:0005737","l":"cytoplasm","na":3,"nb":2018,"a":[["environment/ph_range_mid2.html","pH range mid2"],["environment/ph_range_very_low.html","pH range very low"],["morphology/spiral_shaped.html","spiral shaped"]],"b":[["ComplexPortal%3ACPX-3921","2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-3802","30S small ribosomal subunit"],["ComplexPortal%3ACPX-1599","40S cytosolic small ribosomal subunit"],["ComplexPortal%3ACPX-5223","40S cytosolic small ribosomal subunit"],["ComplexPortal%3ACPX-5261","40S cytosolic small ribosomal subunit"],["ComplexPortal%3ACPX-3807","50S large ribosomal subunit"]]},{"id":"CHEBI:29034","l":"iron(3+)","na":3,"nb":376,"a":[["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/iron_oxidation.html","iron oxidation"],["metabolism/photoferrotrophy.html","photoferrotrophy"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29034","requires iron(3+)"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.11","glucoside 3-dehydrogenase (cytochrome c)"],["EC%3A1.1.2.2","mannitol dehydrogenase (cytochrome)"],["EC%3A1.1.2.3","L-lactate dehydrogenase (cytochrome)"],["EC%3A1.1.2.4","D-lactate dehydrogenase (cytochrome)"]]},{"id":"CHEBI:15351","l":"","na":3,"nb":169,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["physiology/autotrophic.html","autotrophic"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15351","requires acetyl-CoA"],["ARO%3A3000341","AAC(2')"],["ARO%3A3007393","AAC(2')-I"],["ARO%3A3002523","AAC(2')-Ia"],["ARO%3A3002524","AAC(2')-Ib"],["ARO%3A3002525","AAC(2')-Ic"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa PAO1","na":3,"nb":162,"a":[["ecology/biofilm_formation.html","biofilm formation"],["morphology/twitching_motility.html","twitching motility"],["morphology/type_iv_pilus.html","type IV pilus"]],"b":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF06750","Bacterial Peptidase A24 N-terminal domain"],["Pfam%3APF12679","ABC-2 family transporter protein"],["Pfam%3APF28403","Aconitase X second domain"],["Pfam%3APF28406","Aconitase X third domain"],["Pfam%3APF04412","Aconitase X first domain"]]},{"id":"GO:0019867","l":"outer membrane","na":3,"nb":143,"a":[["morphology/gram_negative.html","gram negative"],["morphology/gram_stain.html","gram stain"],["morphology/triangular_shaped.html","triangular shaped"]],"b":[["GO%3A0009279","cell outer membrane"],["GO%3A0031968","organelle outer membrane"],["GO%3A0043594","outer endospore membrane"],["GO%3A0019867","outer membrane"],["NCBIfam%3ANF047447","adhesin OmpL37 family surface protein"],["NCBIfam%3ANF007285","AIDA-I family autotransporter adhesin YfaL/EhaC"]]},{"id":"GO:0015948","l":"methanogenesis","na":3,"nb":82,"a":[["metabolism/acetoclastic_methanogenesis.html","acetoclastic methanogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/methyl_based_methanogenesis.html","methyl-based methanogenesis"]],"b":[["GO%3A0019385","methanogenesis, from acetate"],["GO%3A0019386","methanogenesis, from carbon dioxide"],["GO%3A0019387","methanogenesis, from methanol"],["GO%3A0015948","methanogenesis"],["proteintraitsmech%3ASEED_SUBSYSTEM_Methanogenesis","Methanogenesis"],["NCBIfam%3ATIGR03957","5,10-methenyltetrahydromethanopterin hydrogenase cofactor biosynthesis protein HmdB"]]},{"id":"CHEBI:29035","l":"manganese(2+)","na":3,"nb":44,"a":[["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/lignin_degradation.html","lignin degradation"],["metabolism/manganese_oxidation.html","manganese oxidation"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29035","requires manganese(2+)"],["EC%3A1.11.1.13","manganese peroxidase"],["EC%3A1.11.1.16","versatile peroxidase"],["EC%3A1.16.3.3","manganese oxidase"],["EC%3A7.2.2.22","P-type Mn(2+) transporter"],["EC%3A7.2.2.5","ABC-type Mn(2+) transporter"]]},{"id":"GO:0004129","l":"cytochrome-c oxidase activity","na":3,"nb":41,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["other/oxidase_negative.html","oxidase negative"],["physiology/oxidase_activity.html","oxidase activity"]],"b":[["EC%3A7.1.1.9","cytochrome-c oxidase"],["METPO%3A1007086","oxidase negative"],["METPO%3A1007085","oxidase positive"],["RHEA%3A11436","4 Fe(II)-[cytochrome c] + O2 + 8 H(+)(in) = 4 Fe(III)-[cytochrome c] + 2 H2O + 4 H(+)(out)"],["ComplexPortal%3ACPX-1721","Mitochondrial respiratory chain complex IV, COX5A variant"],["ComplexPortal%3ACPX-1722","Mitochondrial respiratory chain complex IV, COX5B variant"]]},{"id":"GO:0009399","l":"nitrogen fixation","na":3,"nb":36,"a":[["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["metabolism/nitrogen_fixation.html","nitrogen fixation"],["morphology/heterocyst.html","heterocyst"]],"b":[["GO%3A0009399","nitrogen fixation"],["proteintraitsmech%3ASEED_SUBSYSTEM_Nitrogen_fixation","Nitrogen fixation"],["NCBIfam%3ATIGR02662","ADP-ribosyl-[dinitrogen reductase] hydrolase"],["NCBIfam%3ATIGR02931","Fe-only nitrogenase subunit beta"],["NCBIfam%3ATIGR02929","Fe-only nitrogenase subunit delta"],["NCBIfam%3ATIGR02000","Fe-S cluster assembly protein NifU"]]},{"id":"GO:0008422","l":"beta-glucosidase activity","na":3,"nb":31,"a":[["metabolism/biopolymer_degradation.html","biopolymer degradation"],["metabolism/cellulolysis.html","cellulolysis"],["physiology/beta_glucosidase_activity.html","beta-glucosidase activity"]],"b":[["EC%3A3.2.1.21","beta-glucosidase"],["RHEA%3A69655","quercetin 3-O-beta-D-glucoside + H2O = quercetin + beta-D-glucose"],["RHEA%3A69647","quercetin 4'-O-beta-D-glucoside + H2O = quercetin + beta-D-glucose"],["GO%3A0080081","4-methylumbelliferyl-beta-D-glucopyranoside beta-glucosidase activity"],["GO%3A0008706","6-phospho-beta-glucosidase activity"],["GO%3A0051993","abscisic acid glucose ester beta-glucosidase activity"]]},{"id":"GO:0022611","l":"dormancy process","na":3,"nb":19,"a":[["physiology/dormancy.html","dormancy"],["physiology/persister_cell_formation.html","persister cell formation"],["physiology/viable_but_nonculturable_state.html","viable but nonculturable state"]],"b":[["GO%3A0097439","acquisition of desiccation tolerance"],["GO%3A0097207","bud dormancy process"],["GO%3A0085014","dormancy entry of symbiont in host"],["GO%3A0085016","dormancy exit of symbiont in host"],["GO%3A0085015","dormancy maintenance of symbiont in host"],["GO%3A0022611","dormancy process"]]},{"id":"CHEBI:17997","l":"dinitrogen","na":3,"nb":18,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["EC%3A1.18.6.1","nitrogenase"],["EC%3A1.18.6.2","vanadium-dependent nitrogenase"],["EC%3A1.19.6.1","nitrogenase (flavodoxin)"],["EC%3A1.7.2.4","nitrous-oxide reductase"],["EC%3A1.7.2.8","hydrazine dehydrogenase"],["RHEA%3A79967","3-diazoavenalumate + NADH + H(+) = avenalumate + N2 + NAD(+)"]]},{"id":"CHEBI:17579","l":"β-carotene","na":3,"nb":16,"a":[["metabolism/proteorhodopsin_phototrophy.html","proteorhodopsin phototrophy"],["morphology/orange_pigmented.html","orange pigmented"],["morphology/yellow_pigmented.html","yellow pigmented"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_17579","requires β-carotene"],["EC%3A1.13.11.63","beta-carotene 15,15'-dioxygenase"],["EC%3A1.13.11.71","carotenoid-9',10'-cleaving dioxygenase"],["EC%3A1.14.15.24","beta-carotene 3-hydroxylase"],["EC%3A1.14.99.63","beta-carotene 4-ketolase"],["EC%3A5.2.1.14","beta-carotene isomerase"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":3,"nb":16,"a":[["ecology/rhizosphere_association.html","rhizosphere association"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/psychrotolerant.html","psychrotolerant"]],"b":[["Pfam%3APF16822","SGNH hydrolase-like domain, acetyltransferase AlgX"],["Pfam%3APF19298","3-Ketosteroid 9alpha-hydroxylase C-terminal domain"],["Pfam%3APF11182","Alginate O-acetyl transferase AlgF"],["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF27129","Functional amyloid protein FapB/FapC family"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"]]},{"id":"CHEBI:16183","l":"methane","na":3,"nb":13,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/methanogenesis.html","Methanogenesis"],["physiology/methanotrophic.html","methanotrophic"]],"b":[["EC%3A1.14.13.25","methane monooxygenase (soluble)"],["EC%3A1.14.18.3","methane monooxygenase (particulate)"],["EC%3A2.8.4.1","coenzyme-B sulfoethylthiotransferase"],["EC%3A4.7.1.1","alpha-D-ribose 1-methylphosphonate 5-phosphate C-P-lyase"],["RHEA%3A34707","alpha-D-ribose 1-methylphosphonate 5-phosphate + AH2 + S-adenosyl-L-methionine = alpha-D-ribose 1,2-cyclic phosphate 5-phosphate + methane + 5'-deoxyadenosine + L-methionine + A + H(+)"],["RHEA%3A12532","coenzyme B + methyl-coenzyme M = methane + coenzyme M-coenzyme B heterodisulfide"]]},{"id":"GO:0060187","l":"cell pole","na":3,"nb":10,"a":[["morphology/amphitrichous.html","amphitrichous"],["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/lophotrichous.html","lophotrichous"]],"b":[["GO%3A0044225","apical pole of neuron"],["GO%3A0044226","basal pole of neuron"],["GO%3A0090712","basal pole of outer hair cell"],["GO%3A0060187","cell pole"],["GO%3A0051286","cell tip"],["GO%3A1990902","new cell pole"]]},{"id":"GO:0009325","l":"nitrate reductase complex","na":3,"nb":9,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]],"b":[["ComplexPortal%3ACPX-3447","NapAB nitrate reductase complex"],["ComplexPortal%3ACPX-5581","Nitrate reductase Z complex"],["GO%3A0044799","NarGHI complex"],["GO%3A0009325","nitrate reductase complex"],["NCBIfam%3ATIGR01580","nitrate reductase subunit alpha"],["NCBIfam%3ATIGR01660","nitrate reductase subunit beta"]]},{"id":"InterPro:IPR033966","l":"","na":9,"nb":3,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["physiology/autotrophic.html","autotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"]],"b":[["SFLD%3ASFLDS00014","RuBisCO"],["PANTHER%3APTHR42704","RIBULOSE BISPHOSPHATE CARBOXYLASE"],["PROSITE%3APS00157","Ribulose bisphosphate carboxylase large chain active site"]]},{"id":"NCBITaxon:210","l":"Helicobacter pylori","na":3,"nb":9,"a":[["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/helical_shaped.html","helical shaped"],["morphology/lophotrichous.html","lophotrichous"]],"b":[["Pfam%3APF18025","Alpha-(1,3)-fucosyltransferase FucT N-terminal domain"],["Pfam%3APF18971","CagA protein"],["Pfam%3APF03507","CagA exotoxin phosphopeptide substrate mimic region"],["Pfam%3APF02691","Vacuolating cyotoxin beta-helical domain"],["TED%3AAF-A0A2T6UWI4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A2T6UWI4-F1-model_v4_TED01"],["TED%3AAF-A0A1Q9JB12-F1-model_v4_TED01","TED novel fold AF-A0A1Q9JB12-F1-model_v4_TED01"]]},{"id":"GO:0019491","l":"ectoine biosynthetic process","na":3,"nb":8,"a":[["environment/euryhaline.html","euryhaline"],["environment/halotolerant.html","halotolerant"],["environment/slightly_halophilic.html","slightly halophilic"]],"b":[["GO%3A0019491","ectoine biosynthetic process"],["proteintraitsmech%3ASEED_SUBSYSTEM_Ectoine_synthesis","Ectoine synthesis"],["NCBIfam%3ATIGR00709","diaminobutyrate--2-oxoglutarate transaminase family protein"],["NCBIfam%3ATIGR02407","diaminobutyrate--2-oxoglutarate transaminase"],["NCBIfam%3ATIGR02406","diaminobutyrate acetyltransferase"],["NCBIfam%3ANF009806","ectoine synthase"]]},{"id":"GO:0031456","l":"glycine betaine biosynthetic process","na":3,"nb":8,"a":[["environment/euryhaline.html","euryhaline"],["environment/halotolerant.html","halotolerant"],["environment/nacl_range_low.html","NaCl range low"]],"b":[["GO%3A0031456","glycine betaine biosynthetic process"],["NCBIfam%3ANF009725","betaine-aldehyde dehydrogenase"],["NCBIfam%3ATIGR01804","betaine-aldehyde dehydrogenase"],["NCBIfam%3ATIGR03384","choline-binding transcriptional repressor BetI"],["NCBIfam%3ANF053866","choline dehydrogenase"],["NCBIfam%3ATIGR01810","choline dehydrogenase"]]},{"id":"GO:0006636","l":"unsaturated fatty acid biosynthetic process","na":3,"nb":7,"a":[["environment/pressure_range.html","pressure range"],["environment/temperature_delta_high.html","temperature delta high"],["environment/thermotolerant.html","thermotolerant"]],"b":[["GO%3A2001303","lipoxin A4 biosynthetic process"],["GO%3A2001306","lipoxin B4 biosynthetic process"],["GO%3A2001280","positive regulation of unsaturated fatty acid biosynthetic process"],["GO%3A0046457","prostanoid biosynthetic process"],["GO%3A1902609","(R)-2-hydroxy-alpha-linolenic acid biosynthetic process"],["GO%3A2001279","regulation of unsaturated fatty acid biosynthetic process"]]},{"id":"NCBITaxon:1314","l":"Streptococcus pyogenes","na":3,"nb":7,"a":[["environment/aerotolerant.html","aerotolerant"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"],["morphology/streptococcus_arrangement.html","streptococcus arrangement"]],"b":[["Pfam%3APF13585","CHU_C Type IX secretion signal domain"],["Pfam%3APF24547","Domain of unknown function (DUF7601)"],["Pfam%3APF08998","Bacterial epsilon antitoxin"],["Pfam%3APF06280","Fn3-like domain"],["Pfam%3APF02274","Arginine deiminase"],["Pfam%3APF13734","Spi protease inhibitor"]]},{"id":"GO:0070224","l":"sulfide:quinone oxidoreductase activity","na":3,"nb":6,"a":[["metabolism/sulfur_oxidation.html","sulfur oxidation"],["morphology/sulfur_globule.html","sulfur globule"],["physiology/lithoheterotrophic.html","lithoheterotrophic"]],"b":[["EC%3A1.8.5.4","bacterial sulfide:quinone reductase"],["RHEA%3A30239","n a quinone + n hydrogen sulfide + n H(+) = polysulfur(n-2) + n a quinol"],["GO%3A0070224","sulfide:quinone oxidoreductase activity"],["MCSA%3A320","sulfide:quinone oxidoreductase"],["proteintraitsmech%3ABIOLIP_PS9","PS9-binding site"],["proteintraitsmech%3ABIOLIP_S3H","S3H-binding site"]]},{"id":"METPO:1000800","l":"respiration","na":6,"nb":3,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/fermentation.html","Fermentation"],["metabolism/respiration.html","respiration"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"]],"b":[["METPO%3A1000801","Aerobic respiration"],["METPO%3A1000802","Anaerobic respiration"],["METPO%3A1000800","respiration"]]},{"id":"NCBITaxon:381666","l":"Cupriavidus necator H16","na":6,"nb":3,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"],["physiology/autotrophic.html","autotrophic"],["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["Pfam%3APF13473","Cupredoxin-like domain"],["Pfam%3APF10605","3HB-oligomer hydrolase (3HBOH)"],["Pfam%3APF21783","YNCE-like beta-propeller"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":3,"nb":6,"a":[["environment/anaerobic.html","anaerobic"],["environment/strictly_anaerobic.html","strictly anaerobic"],["metabolism/fumarate_respiration.html","fumarate respiration"]],"b":[["Pfam%3APF16376","N-terminal domain of fragilysin"],["TED%3AAF-A0A412XR06-F1-model_v4_TED03","TED novel fold AF-A0A412XR06-F1-model_v4_TED03"],["TED%3AAF-A0A4V1EUI2-F1-model_v4_TED02","TED novel fold AF-A0A4V1EUI2-F1-model_v4_TED02"],["TED%3AAF-A0A5C6IXH5-F1-model_v4_TED01","TED novel fold AF-A0A5C6IXH5-F1-model_v4_TED01"],["TED%3AAF-A0A5C6L6G9-F1-model_v4_TED02","TED novel fold AF-A0A5C6L6G9-F1-model_v4_TED02"],["TED%3AAF-A0A642KY52-F1-model_v4_TED01","TED novel fold AF-A0A642KY52-F1-model_v4_TED01"]]},{"id":"UniProt:P27988","l":"","na":3,"nb":6,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"]],"b":[["Pfam%3APF18537","Carbon monoxide dehydrogenase subunit alpha N-terminal domain"],["proteintraitsmech%3AMETALPDB_CU_HEXANUCLEAR","hexanuclear copper site"],["proteintraitsmech%3AMETALPDB_FE_HEXANUCLEAR","hexanuclear iron site"],["proteintraitsmech%3AMETALPDB_NI_HEXANUCLEAR","hexanuclear nickel site"],["proteintraitsmech%3AMETALPDB_ZN_HEXANUCLEAR","hexanuclear zinc site"],["proteintraitsmech%3AMETALPDB_ZN_PENTANUCLEAR","pentanuclear zinc site"]]},{"id":"NCBITaxon:228410","l":"Nitrosomonas europaea ATCC 19718","na":5,"nb":3,"a":[["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["Pfam%3APF02461","Ammonia monooxygenase"],["Pfam%3APF13435","Cytochrome c554 and c-prime"],["TED%3AAF-Q82SR8-F1-model_v4_TED01","TED highly-symmetric fold AF-Q82SR8-F1-model_v4_TED01"]]},{"id":"GO:0008776","l":"acetate kinase activity","na":3,"nb":4,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["EC%3A2.7.2.1","acetate kinase"],["RHEA%3A11352","acetate + ATP = acetyl phosphate + ADP"],["GO%3A0008776","acetate kinase activity"],["MCSA%3A643","acetate kinase"]]},{"id":"GO:0018597","l":"ammonia monooxygenase activity","na":3,"nb":4,"a":[["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["EC%3A1.14.99.39","ammonia monooxygenase"],["RHEA%3A27341","AH2 + NH4(+) + O2 = hydroxylamine + A + H2O + H(+)"],["GO%3A0018597","ammonia monooxygenase activity"],["NCBIfam%3ANF041557","bacterial ammonia monooxygenase, subunit AmoA"]]},{"id":"InterPro:IPR001182","l":"","na":4,"nb":3,"a":[["morphology/fusiform_shaped.html","fusiform shaped"],["morphology/oval_shaped.html","oval shaped"],["morphology/prosthecate.html","prosthecate"],["morphology/tailed_shaped.html","tailed shaped"]],"b":[["PANTHER%3APTHR30474","CELL CYCLE PROTEIN"],["Pfam%3APF01098","Cell cycle protein"],["PROSITE%3APS00428","Cell cycle proteins ftsW / rodA / spoVE signature"]]},{"id":"NCBITaxon:1525","l":"Neomoorella thermoacetica","na":3,"nb":4,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"]],"b":[["Pfam%3APF25461","Selenocysteine-specific elongation factor, beta-barrel domain"],["Pfam%3APF18537","Carbon monoxide dehydrogenase subunit alpha N-terminal domain"],["Pfam%3APF04060","Putative Fe-S cluster"],["Pfam%3APF03599","CO dehydrogenase/acetyl-CoA synthase delta subunit"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":3,"nb":4,"a":[["ecology/mutualism.html","mutualism"],["physiology/bioluminescence.html","bioluminescence"],["physiology/quorum_sensing.html","quorum sensing"]],"b":[["PROSITE%3APS00949","Autoinducer synthase family signature"],["PROSITE%3APS00494","Bacterial luciferase subunits signature"],["PROSITE%3APS00607","cAMP phosphodiesterases class-II signature"],["TED%3AAF-A0A844NWZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A844NWZ1-F1-model_v4_TED02"]]},{"id":"GO:0016689","l":"manganese peroxidase activity","na":3,"nb":3,"a":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/lignin_degradation.html","lignin degradation"],["metabolism/manganese_oxidation.html","manganese oxidation"]],"b":[["EC%3A1.11.1.13","manganese peroxidase"],["RHEA%3A22776","2 Mn(2+) + H2O2 + 2 H(+) = 2 Mn(3+) + 2 H2O"],["GO%3A0016689","manganese peroxidase activity"]]},{"id":"METPO:1000731","l":"nutrient adaptation","na":3,"nb":3,"a":[["physiology/copiotrophic.html","copiotrophic"],["physiology/nutrient_adaptation.html","nutrient adaptation"],["physiology/oligotrophic.html","oligotrophic"]],"b":[["METPO%3A1000642","copiotrophic"],["METPO%3A1000731","nutrient adaptation"],["METPO%3A1000654","oligotrophic"]]},{"id":"METPO:1005010","l":"indole test","na":3,"nb":3,"a":[["other/indole_test.html","indole test"],["other/indole_test_negative.html","indole test negative"],["other/indole_test_positive.html","indole test positive"]],"b":[["METPO%3A1005010","indole test"],["METPO%3A1005012","indole test negative"],["METPO%3A1005011","indole test positive"]]},{"id":"METPO:1005013","l":"methyl red test","na":3,"nb":3,"a":[["other/methyl_red_test.html","methyl red test"],["other/methyl_red_test_negative.html","methyl red test negative"],["other/methyl_red_test_positive.html","methyl red test positive"]],"b":[["METPO%3A1005013","methyl red test"],["METPO%3A1005015","methyl red test negative"],["METPO%3A1005014","methyl red test positive"]]},{"id":"METPO:1005016","l":"Voges-Proskauer test","na":3,"nb":3,"a":[["other/voges_proskauer_test.html","Voges-Proskauer test"],["other/voges_proskauer_test_negative.html","Voges-Proskauer test negative"],["other/voges_proskauer_test_positive.html","Voges-Proskauer test positive"]],"b":[["METPO%3A1005016","Voges-Proskauer test"],["METPO%3A1005018","Voges-Proskauer test negative"],["METPO%3A1005017","Voges-Proskauer test positive"]]},{"id":"METPO:1007089","l":"coagulase activity","na":3,"nb":3,"a":[["other/coagulase_negative.html","coagulase negative"],["other/coagulase_positive.html","coagulase positive"],["physiology/coagulase_activity.html","coagulase activity"]],"b":[["METPO%3A1007089","coagulase activity"],["METPO%3A1007091","coagulase negative"],["METPO%3A1007090","coagulase positive"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":3,"nb":3,"a":[["ecology/commensalism.html","commensalism"],["genomics/nhi_system.html","Nhi system"],["other/coagulase_negative.html","coagulase negative"]],"b":[["Pfam%3APF14028","Lantibiotic biosynthesis dehydratase C-term"],["Pfam%3APF08130","Type A lantibiotic family"],["Pfam%3APF04738","Lantibiotic dehydratase, N terminus"]]},{"id":"NCBITaxon:2257","l":"Natronomonas pharaonis","na":3,"nb":3,"a":[["environment/alkaphilic.html","alkaliphilic"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/obligately_alkaphilic.html","obligately alkaliphilic"]],"b":[["Pfam%3APF17909","Htr2 transmembrane domain"],["PROSITE%3APS00950","Bacterial rhodopsins signature 1"],["PROSITE%3APS00327","Bacterial rhodopsins retinal binding site"]]},{"id":"NCBITaxon:431944","l":"Magnetospirillum gryphiswaldense MSR-1","na":3,"nb":3,"a":[["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/magnetosome.html","magnetosome"],["physiology/magnetotaxis.html","magnetotaxis"]],"b":[["Pfam%3APF12728","Helix-turn-helix domain"],["Pfam%3APF04011","LemA family"],["Pfam%3APF07219","HemY protein N-terminus"]]},{"id":"UniProt:P10717","l":"","na":3,"nb":3,"a":[["physiology/photoheterotrophic.html","photoheterotrophic"],["physiology/photoorganoheterotrophic.html","photoorganoheterotrophic"],["physiology/phototrophic.html","phototrophic"]],"b":[["proteintraitsmech%3ABIOLIP_07D","07D-binding site"],["proteintraitsmech%3ABIOLIP_08I","08I-binding site"],["proteintraitsmech%3ABIOLIP_RQ0","RQ0-binding site"]]},{"id":"UniProt:Q04507","l":"","na":3,"nb":3,"a":[["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["EC%3A1.14.99.39","ammonia monooxygenase"],["RHEA%3A27341","AH2 + NH4(+) + O2 = hydroxylamine + A + H2O + H(+)"],["Pfam%3APF02461","Ammonia monooxygenase"]]},{"id":"GO:0009058","l":"biosynthetic process","na":2,"nb":733,"a":[["metabolism/metabolism.html","metabolism"],["physiology/heterotrophic.html","heterotrophic"]],"b":[["GO%3A1901852","7,8-didemethyl-8-hydroxy-5-deazariboflavin biosynthetic process"],["GO%3A0008292","acetylcholine biosynthetic process"],["GO%3A0046184","aldehyde biosynthetic process"],["GO%3A0019428","allantoin biosynthetic process"],["GO%3A0009309","amine biosynthetic process"],["GO%3A0008652","amino acid biosynthetic process"]]},{"id":"CHEBI:17499","l":"","na":2,"nb":633,"a":[["metabolism/electron_transfer.html","Electron transfer"],["metabolism/respiration.html","respiration"]],"b":[["EC%3A1.1.99.1","choline dehydrogenase"],["EC%3A1.1.99.12","sorbose dehydrogenase"],["EC%3A1.1.99.13","glucoside 3-dehydrogenase (acceptor)"],["EC%3A1.1.99.14","glycolate dehydrogenase"],["EC%3A1.1.99.18","cellobiose dehydrogenase (acceptor)"],["EC%3A1.1.99.2","L-2-hydroxyglutarate dehydrogenase"]]},{"id":"GO:0004252","l":"serine-type endopeptidase activity","na":2,"nb":281,"a":[["physiology/alpha_chymotrypsin_activity.html","alpha-chymotrypsin activity"],["physiology/trypsin_activity.html","trypsin activity"]],"b":[["EC%3A3.4.21.1","chymotrypsin"],["EC%3A3.4.21.10","acrosin"],["EC%3A3.4.21.102","C-terminal processing peptidase"],["EC%3A3.4.21.20","cathepsin G"],["EC%3A3.4.21.21","coagulation factor VIIa"],["EC%3A3.4.21.22","coagulation factor IXa"]]},{"id":"CHEBI:16842","l":"formaldehyde","na":2,"nb":212,"a":[["physiology/methanotrophic.html","methanotrophic"],["physiology/methylotrophic.html","methylotrophic"]],"b":[["EC%3A1.1.1.244","methanol dehydrogenase"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.99.37","methanol dehydrogenase (nicotinoprotein)"],["EC%3A1.13.11.94","4-vinylguaiacol dioxygenase"],["EC%3A1.14.11.27","[histone H3]-dimethyl-L-lysine(36) demethylase"]]},{"id":"GO:0008233","l":"peptidase activity","na":2,"nb":141,"a":[["physiology/caseinase_activity.html","caseinase activity"],["physiology/gelatinase_activity.html","gelatinase activity"]],"b":[["ComplexPortal%3ACPX-9002","PA28-alphabeta single-capped 20S proteasome complex"],["ComplexPortal%3ACPX-9022","PA28-gamma double-capped 20S proteasome complex"],["ComplexPortal%3ACPX-9001","PA28-gamma single-capped 20S proteasome complex"],["ComplexPortal%3ACPX-3785","Tryptase alpha/beta-1 complex"],["ComplexPortal%3ACPX-3804","Tryptase alpha/beta-1 complex"],["ComplexPortal%3ACPX-3805","Tryptase beta-2 complex"]]},{"id":"CHEBI:16452","l":"","na":2,"nb":117,"a":[["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["EC%3A1.1.1.299","malate dehydrogenase [NAD(P)(+)]"],["EC%3A1.1.1.37","(S)-malate dehydrogenase (NAD(+), oxaloacetate-forming)"],["EC%3A1.1.1.38","malate dehydrogenase (oxaloacetate-decarboxylating)"],["EC%3A1.1.1.40","malate dehydrogenase (oxaloacetate-decarboxylating) (NADP(+))"],["EC%3A1.1.1.82","malate dehydrogenase (NADP(+))"],["EC%3A1.1.5.4","malate dehydrogenase (quinone)"]]},{"id":"GO:0006099","l":"tricarboxylic acid cycle","na":2,"nb":92,"a":[["physiology/heterotrophic.html","heterotrophic"],["physiology/organoheterotrophic.html","organoheterotrophic"]],"b":[["ComplexPortal%3ACPX-3921","2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-9044","Mitochondrial 2-oxoglutarate dehydrogenase complex,CG1544 variant"],["ComplexPortal%3ACPX-9043","Mitochondrial 2-oxoglutarate dehydrogenase complex, CG33791 variant"],["ComplexPortal%3ACPX-1293","Mitochondrial 2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-9061","Mitochondrial 2-oxoglutarate dehydrogenase complex"],["ComplexPortal%3ACPX-9042","Mitochondrial 2-oxoglutarate dehydrogenase complex, ODGH variant"]]},{"id":"CHEBI:17790","l":"methanol","na":2,"nb":86,"a":[["physiology/methanotrophic.html","methanotrophic"],["physiology/methylotrophic.html","methylotrophic"]],"b":[["EC%3A1.1.1.244","methanol dehydrogenase"],["EC%3A1.1.2.10","lanthanide-dependent methanol dehydrogenase"],["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["EC%3A1.1.99.37","methanol dehydrogenase (nicotinoprotein)"],["EC%3A1.14.13.25","methane monooxygenase (soluble)"],["EC%3A1.14.14.117","aflatoxin B synthase"]]},{"id":"GO:0006302","l":"double-strand break repair","na":2,"nb":85,"a":[["environment/desiccation_tolerant.html","desiccation tolerant"],["environment/ionizing_radiation_tolerant.html","ionizing radiation tolerant"]],"b":[["ComplexPortal%3ACPX-10302","MRN double-strand break repair complex"],["ComplexPortal%3ACPX-1872","MRX double-strand break repair complex"],["ComplexPortal%3ACPX-511","MUS81-EME1 structure-specific endonuclease complex"],["ComplexPortal%3ACPX-585","MUS81-EME1 structure-specific endonuclease complex"],["ComplexPortal%3ACPX-586","MUS81-EME2 structure-specific endonuclease complex"],["ComplexPortal%3ACPX-587","MUS81-EME2 structure-specific endonuclease complex"]]},{"id":"GO:0051607","l":"defense response to virus","na":2,"nb":80,"a":[["genomics/crispr_cas_system.html","CRISPR-Cas system"],["genomics/phage_defense_system.html","phage defense system"]],"b":[["UniProtKB-KW%3AKW-0051","Antiviral defense"],["ComplexPortal%3ACPX-4142","AIM2 inflammasome"],["ComplexPortal%3ACPX-4243","AIM2 inflammasome"],["ComplexPortal%3ACPX-6037","MAVS-TRAF3 E3 ubiquitin ligase complex"],["ComplexPortal%3ACPX-2128","Sting complex"],["ComplexPortal%3ACPX-6018","STING-TRAF3-TBK1 complex"]]},{"id":"GO:0071973","l":"bacterial-type flagellum-dependent cell motility","na":2,"nb":60,"a":[["ecology/soil_dwelling.html","soil-dwelling"],["morphology/swarming_motility.html","swarming motility"]],"b":[["ComplexPortal%3ACPX-4886","DNA-directed RNA polymerase holoenzyme complex, SigmaF variant"],["ComplexPortal%3ACPX-5887","Flagellar basal-body rod complex"],["ComplexPortal%3ACPX-5885","Flagellar export complex"],["ComplexPortal%3ACPX-5884","Flagellar motor stator complex"],["GO%3A0071973","bacterial-type flagellum-dependent cell motility"],["GO%3A0071978","bacterial-type flagellum-dependent swarming motility"]]},{"id":"CHEBI:33542","l":"","na":2,"nb":38,"a":[["metabolism/disproportionation.html","Disproportionation"],["physiology/chemolithotrophic.html","chemolithotrophic"]],"b":[["EC%3A1.8.2.2","thiosulfate dehydrogenase"],["EC%3A1.8.2.5","thiosulfate reductase (cytochrome)"],["EC%3A1.8.5.2","thiosulfate dehydrogenase (quinone)"],["EC%3A1.8.5.5","thiosulfate reductase (quinone)"],["EC%3A2.5.1.144","S-sulfo-L-cysteine synthase (O-acetyl-L-serine-dependent)"],["EC%3A2.8.1.1","thiosulfate sulfurtransferase"]]},{"id":"GO:0004022","l":"alcohol dehydrogenase (NAD+) activity","na":2,"nb":38,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["physiology/nad_dependent_alcohol_dehydrogenase_activity.html","NAD-dependent alcohol dehydrogenase activity"]],"b":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["RHEA%3A10736","a primary alcohol + NAD(+) = an aldehyde + NADH + H(+)"],["RHEA%3A10740","a secondary alcohol + NAD(+) = a ketone + NADH + H(+)"],["GO%3A0106429","11-cis-retinol dehydrogenase (NAD+) activity"],["GO%3A0052676","3-methylbutanal reductase (NADH) activity"],["GO%3A0004022","alcohol dehydrogenase (NAD+) activity"]]},{"id":"GO:0016805","l":"dipeptidase activity","na":2,"nb":36,"a":[["physiology/glutamyl_glutamic_acid_arylamidase_activity.html","glutamyl glutamic acid arylamidase activity"],["physiology/leucyl_glycine_arylamidase_activity.html","leucyl glycine arylamidase activity"]],"b":[["EC%3A3.4.13.18","cytosol non-specific dipeptidase"],["EC%3A3.4.13.19","membrane dipeptidase"],["EC%3A3.4.13.21","dipeptidase E"],["GO%3A0160237","D-Ala-D-Ala dipeptidase activity"],["GO%3A0016805","dipeptidase activity"],["GO%3A0070573","metallodipeptidase activity"]]},{"id":"GO:0016298","l":"lipase activity","na":2,"nb":33,"a":[["metabolism/lipolysis.html","lipolysis"],["physiology/lipase_activity.html","lipase activity"]],"b":[["GO%3A0120516","diacylglycerol lipase activity"],["GO%3A0047714","galactolipase activity"],["GO%3A0016298","lipase activity"],["GO%3A0047372","monoacylglycerol lipase activity"],["GO%3A0120569","phospholipase activity"],["GO%3A0004771","sterol ester esterase activity"]]},{"id":"CHEBI:36242","l":"","na":2,"nb":32,"a":[["morphology/black_pigmented.html","black pigmented"],["morphology/brown_pigmented.html","brown pigmented"]],"b":[["EC%3A1.1.1.110","aromatic 2-oxoacid reductase"],["EC%3A1.1.1.237","hydroxyphenylpyruvate reductase"],["EC%3A1.13.11.27","4-hydroxyphenylpyruvate dioxygenase"],["EC%3A1.13.11.46","4-hydroxymandelate synthase"],["EC%3A1.2.3.13","4-hydroxyphenylpyruvate oxidase"],["EC%3A1.3.1.12","prephenate dehydrogenase"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":2,"nb":32,"a":[["genomics/gc_mid1.html","GC mid1"],["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["Pfam%3APF25848","Rodlin protein"],["Pfam%3APF13420","Acetyltransferase (GNAT) domain"],["Pfam%3APF21086","ACT domain"],["Pfam%3APF03756","A-factor biosynthesis hotdog domain"],["Pfam%3APF26381","BREX System ATPase PglY protein 5th domain"],["Pfam%3APF26382","BREX System ATPase PglY protein 6th domain"]]},{"id":"CHEBI:16236","l":"ethanol","na":2,"nb":31,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]],"b":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.5.5","alcohol dehydrogenase (quinone)"],["EC%3A1.1.99.36","alcohol dehydrogenase (nicotinoprotein)"],["EC%3A2.3.1.268","ethanol O-acetyltransferase"],["EC%3A3.1.1.113","ethyl acetate hydrolase"],["EC%3A3.1.1.67","fatty-acyl-ethyl-ester synthase"]]},{"id":"NCBITaxon:243273","l":"Mycoplasmoides genitalium G37","na":2,"nb":31,"a":[["genomics/gc_high.html","GC high"],["genomics/genome_size.html","genome size"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF03257","Mycoplasma adhesin P1, C-terminal"],["Pfam%3APF09185","Domain of unknown function (DUF1948)"],["Pfam%3APF09188","Domain of unknown function (DUF1951)"],["Pfam%3APF03072","Domain of unknown function (DUF237)"],["Pfam%3APF03086","Domain of unknown function (DUF240)"]]},{"id":"GO:0008810","l":"cellulase activity","na":2,"nb":28,"a":[["metabolism/biopolymer_degradation.html","biopolymer degradation"],["metabolism/cellulolysis.html","cellulolysis"]],"b":[["EC%3A3.2.1.4","cellulase"],["GO%3A0008810","cellulase activity"],["InterPro%3AIPR005087","Carbohydrate binding module family 11"],["InterPro%3AIPR005086","Carbohydrate binding module family 17/28"],["InterPro%3AIPR004197","Cellulase, Ig-like domain"],["InterPro%3AIPR000334","Glycoside hydrolase, family 45"]]},{"id":"GO:0051139","l":"metal cation:proton antiporter activity","na":2,"nb":26,"a":[["environment/alkalotolerant.html","alkalotolerant"],["environment/neutrophilic.html","neutrophilic"]],"b":[["GO%3A0015369","calcium:proton antiporter activity"],["GO%3A0010348","lithium:proton antiporter activity"],["GO%3A0010486","manganese:proton antiporter activity"],["GO%3A0051139","metal cation:proton antiporter activity"],["GO%3A0015386","potassium:proton antiporter activity"],["GO%3A0015385","sodium:proton antiporter activity"]]},{"id":"GO:1990573","l":"potassium ion import across plasma membrane","na":2,"nb":25,"a":[["environment/nacl_delta.html","NaCl delta"],["environment/nacl_delta_mid1.html","NaCl delta mid1"]],"b":[["ComplexPortal%3ACPX-260","HCN1 channel complex"],["ComplexPortal%3ACPX-142","HCN2 channel complex"],["ComplexPortal%3ACPX-270","HCN3 channel complex"],["ComplexPortal%3ACPX-139","HCN4 channel complex"],["ComplexPortal%3ACPX-186","Inward rectifying potassium channel complex, Kir6.2-SUR1"],["ComplexPortal%3ACPX-194","Inward rectifying potassium channel complex, Kir6.2-SUR1"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":2,"nb":25,"a":[["genomics/ploidy.html","ploidy"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["Pfam%3APF13372","Alginate export"],["Pfam%3APF25965","ALG44 beta-barrel domain"],["Pfam%3APF25964","ALG44, barrel-sandwich hybrid domain"],["Pfam%3APF16844","Dinitrogenase iron-molybdenum cofactor, N-terminal"],["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"]]},{"id":"GO:0004089","l":"carbonate dehydratase activity","na":2,"nb":24,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["physiology/urease_activity.html","urease activity"]],"b":[["EC%3A4.2.1.1","carbonic anhydrase"],["RHEA%3A10748","hydrogencarbonate + H(+) = CO2 + H2O"],["GO%3A0004089","carbonate dehydratase activity"],["NCBIfam%3ANF007756","carbonate dehydratase"],["NCBIfam%3ANF011765","carbonic anhydrase family protein"],["NCBIfam%3ANF040597","carbonic anhydrase"]]},{"id":"UniProt:P0AE67","l":"","na":2,"nb":24,"a":[["morphology/motile.html","motile"],["physiology/chemotaxis.html","chemotaxis"]],"b":[["ComplexPortal%3ACPX-1077","Chemotaxis phosphorelay complex CheA-CheY"],["ComplexPortal%3ACPX-1088","Chemotaxis phosphorelay complex CheY-CheZ"],["ComplexPortal%3ACPX-1082","Flagellar Motor Switch Complex, CW variant"],["GO%3A0009433","bacterial-type flagellum basal body, C ring"],["GO%3A0009288","bacterial-type flagellum"],["GO%3A0120107","bacterial-type flagellum rotor complex"]]},{"id":"CHEBI:15429","l":"","na":2,"nb":23,"a":[["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["EC%3A1.14.99.39","ammonia monooxygenase"],["EC%3A1.3.7.8","benzoyl-CoA reductase"],["EC%3A1.7.1.10","hydroxylamine reductase (NADH)"],["EC%3A1.7.1.5","hyponitrite reductase"],["EC%3A1.7.2.6","hydroxylamine dehydrogenase"],["EC%3A1.7.2.9","hydroxylamine oxidase"]]},{"id":"CHEBI:29105","l":"zinc(2+)","na":2,"nb":20,"a":[["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/zinc_tolerant.html","zinc tolerant"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29105","requires zinc(2+)"],["EC%3A7.2.2.12","P-type Zn(2+) transporter"],["EC%3A7.2.2.20","ABC-type Zn(2+) transporter"],["RHEA%3A62264","selenite(out) + Zn(2+)(out) + hydrogencarbonate(out) = selenite(in) + Zn(2+)(in) + hydrogencarbonate(in)"],["RHEA%3A72627","Zn(2+)(in) + 2 H(+)(out) = Zn(2+)(out) + 2 H(+)(in)"],["RHEA%3A20621","Zn(2+)(in) + ATP + H2O = Zn(2+)(out) + ADP + phosphate + H(+)"]]},{"id":"CHEBI:18421","l":"","na":2,"nb":19,"a":[["environment/microaerotolerant.html","microaerotolerant"],["environment/obligately_aerobic.html","obligately aerobic"]],"b":[["EC%3A1.10.3.17","superoxide oxidase"],["EC%3A1.15.1.1","superoxide dismutase"],["EC%3A1.15.1.2","superoxide reductase"],["RHEA%3A80515","2,4,6-trinitrotoluene radical + O2 = 2,4,6-trinitrotoluene + superoxide + H(+)"],["RHEA%3A20696","2 superoxide + 2 H(+) = H2O2 + O2"],["RHEA%3A29179","a menaquinol + 2 O2 = 2 superoxide + a menaquinone + 2 H(+)"]]},{"id":"GO:0009039","l":"urease activity","na":2,"nb":19,"a":[["other/urease_negative.html","urease negative"],["physiology/urease_activity.html","urease activity"]],"b":[["EC%3A3.5.1.5","urease"],["METPO%3A1007088","urease negative"],["METPO%3A1007087","urease positive"],["RHEA%3A20557","urea + 2 H2O + H(+) = hydrogencarbonate + 2 NH4(+)"],["GO%3A0009039","urease activity"],["NCBIfam%3ANF009685","urease subunit alpha"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":2,"nb":19,"a":[["genomics/crispr_cas_system.html","CRISPR-Cas system"],["genomics/phage_defense_system.html","phage defense system"]],"b":[["Pfam%3APF03306","Alpha-acetolactate decarboxylase"],["Pfam%3APF22208","Cas_Csm6 CARF domain"],["Pfam%3APF09659","Cas_Csm6 HEPN domain"],["Pfam%3APF22335","Cas10/Cmr2, second palm domain"],["Pfam%3APF18395","Cas3 C-terminal domain"],["Pfam%3APF18019","Cas3, HD domain"]]},{"id":"GO:0031411","l":"gas vesicle","na":2,"nb":18,"a":[["morphology/gas_vesicle.html","gas vesicle"],["morphology/intracellular_inclusion.html","intracellular inclusion"]],"b":[["GO%3A0031411","gas vesicle"],["NCBIfam%3ANF041667","gas vesicle accessory protein GvpU"],["NCBIfam%3ANF046092","gas vesicle protein GvpA"],["NCBIfam%3ANF045779","gas vesicle protein GvpG"],["NCBIfam%3ANF046090","gas vesicle protein GvpJ"],["NCBIfam%3ANF045778","gas vesicle protein GvpL"]]},{"id":"UniProt:P13445","l":"","na":2,"nb":15,"a":[["physiology/stress_response.html","stress response"],["physiology/viable_but_nonculturable_state.html","viable but nonculturable state"]],"b":[["ComplexPortal%3ACPX-4883","DNA-directed RNA polymerase holoenzyme complex, SigmaS variant"],["ComplexPortal%3ACPX-5024","rpoS-rssB sigma-antisigma complex"],["GO%3A1903865","sigma factor antagonist complex"],["GO%3A0001000","bacterial-type RNA polymerase core enzyme binding"],["GO%3A0016987","sigma factor activity"],["GO%3A0006352","DNA-templated transcription initiation"]]},{"id":"CHEBI:15846","l":"NAD(+)","na":2,"nb":14,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_15846","requires NAD+"],["ARO%3A3002846","arr-1"],["ARO%3A3002847","arr-2"],["ARO%3A3002848","arr-3"],["ARO%3A3002849","arr-4"],["ARO%3A3002850","arr-5"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":2,"nb":14,"a":[["morphology/carboxysome.html","carboxysome"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]],"b":[["Pfam%3APF27545","CsoS1D N-terminal domain"],["Pfam%3APF02224","Cytidylate kinase"],["Pfam%3APF03319","Ethanolamine utilisation protein EutN/carboxysome"],["Pfam%3APF22019","alpha-1,4-glucan branching enzyme GlgB, N-terminal domain"],["Pfam%3APF21714","Circadian clock protein KaiA, N-terminal domain"],["Pfam%3APF07688","KaiA C-terminal domain"]]},{"id":"CHEBI:17045","l":"dinitrogen oxide","na":2,"nb":13,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["physiology/chemolithotrophic.html","chemolithotrophic"]],"b":[["EC%3A1.7.1.14","nitric oxide reductase [NAD(P)(+), nitrous oxide-forming]"],["EC%3A1.7.2.4","nitrous-oxide reductase"],["EC%3A1.7.2.5","nitric-oxide reductase (cytochrome c)"],["EC%3A1.7.5.2","nitric oxide reductase (menaquinol)"],["RHEA%3A30215","a menaquinol + 2 nitric oxide = nitrous oxide + a menaquinone + H2O"],["RHEA%3A43108","N2 + 2 Fe(III)-[cytochrome c] + H2O = nitrous oxide + 2 Fe(II)-[cytochrome c] + 2 H(+)"]]},{"id":"NCBITaxon:272562","l":"Clostridium acetobutylicum ATCC 824","na":2,"nb":13,"a":[["metabolism/acetone_butanol_ethanol_fermentation.html","acetone-butanol-ethanol fermentation"],["metabolism/fermentation.html","Fermentation"]],"b":[["Pfam%3APF10882","Bacterial PH domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["Pfam%3APF09940","Domain of unknown function (DUF2172)"],["Pfam%3APF16254","Domain of unknown function (DUF4910)"],["Pfam%3APF01183","Glycosyl hydrolases family 25"],["Pfam%3APF16221","winged helix-turn-helix"]]},{"id":"GO:0031469","l":"bacterial microcompartment","na":2,"nb":12,"a":[["morphology/carboxysome.html","carboxysome"],["morphology/intracellular_inclusion.html","intracellular inclusion"]],"b":[["GO%3A0031469","bacterial microcompartment"],["GO%3A0031470","carboxysome"],["GO%3A0031471","ethanolamine degradation polyhedral organelle"],["GO%3A0031472","propanediol degradation polyhedral organelle"],["NCBIfam%3ATIGR02704","carboxysome peptide B"],["NCBIfam%3ANF011934","ethanolamine utilization microcompartment protein EutL"]]},{"id":"NCBITaxon:301447","l":"Streptococcus pyogenes serotype M1","na":2,"nb":12,"a":[["genomics/crispr_cas_system.html","CRISPR-Cas system"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["Pfam%3APF16595","PAM-interacting domain of CRISPR-associated endonuclease Cas9"],["Pfam%3APF22702","Cas9 RuvC domain"],["Pfam%3APF24547","Domain of unknown function (DUF7601)"],["Pfam%3APF22382","Endo-beta-N-acetylglucosaminidase, helical bundle"],["Pfam%3APF20746","Endo-beta-N-acetylglucosaminidase F2, Ig-like domain"],["Pfam%3APF12892","Spy0128-like isopeptide containing domain"]]},{"id":"NCBITaxon:485","l":"Neisseria gonorrhoeae","na":2,"nb":12,"a":[["physiology/oxidase_activity.html","oxidase activity"],["physiology/prolyl_aminopeptidase_activity.html","prolyl aminopeptidase activity"]],"b":[["Pfam%3APF25860","Cryptic plasmid protein A"],["Pfam%3APF12852","Cupin"],["Pfam%3APF17845","FbpC C-terminal regulatory nucleotide binding domain"],["Pfam%3APF22443","FbpC-like, regulatory domain"],["Pfam%3APF18053","DNA gyrase B subunit insert domain"],["Pfam%3APF25885","EMRA, alpha-helical hairpin domain"]]},{"id":"GO:0030641","l":"","na":11,"nb":2,"a":[["environment/acidophilic.html","acidophilic"],["environment/acidotolerant.html","acidotolerant"],["environment/alkalotolerant.html","alkalotolerant"],["environment/alkaphilic.html","alkaliphilic"],["environment/facultatively_acidophilic.html","facultatively acidophilic"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"]],"b":[["PANTHER%3APTHR10110","SODIUM/HYDROGEN EXCHANGER"],["PANTHER%3APTHR12471","VACUOLAR ATP SYNTHASE SUBUNIT S1"]]},{"id":"GO:0035825","l":"homologous recombination","na":2,"nb":11,"a":[["environment/radiotolerant.html","radiotolerant"],["genomics/gc_mid2.html","GC mid2"]],"b":[["ComplexPortal%3ACPX-4426","BRCA1-B complex"],["ComplexPortal%3ACPX-4721","BRCA1-B complex"],["ComplexPortal%3ACPX-4441","BRCA1-C complex"],["ComplexPortal%3ACPX-4722","BRCA1-C complex"],["ComplexPortal%3ACPX-9561","FLIP-FIGNL1 DNA interstrand crosslink repair complex"],["ComplexPortal%3ACPX-1386","Synapsis initiation complex"]]},{"id":"GO:0044403","l":"biological process involved in symbiotic interaction","na":2,"nb":11,"a":[["ecology/plant_pathogen.html","plant pathogen"],["ecology/symbiosis.html","symbiosis"]],"b":[["GO%3A0036377","arbuscular mycorrhizal association"],["GO%3A0051701","biological process involved in interaction with host"],["GO%3A0051702","biological process involved in interaction with symbiont"],["GO%3A0044403","biological process involved in symbiotic interaction"],["GO%3A0075733","intracellular transport of virus"],["GO%3A0044399","multi-species biofilm formation"]]},{"id":"GO:1990586","l":"divisome complex","na":2,"nb":11,"a":[["morphology/coccus_shaped.html","coccus shaped"],["morphology/ellipsoidal.html","ellipsoidal"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["ComplexPortal%3ACPX-3299","FtsBL complex"],["ComplexPortal%3ACPX-3099","FtsQBL complex"],["GO%3A1990586","divisome complex"],["GO%3A1990588","FtsBL complex"],["GO%3A1990587","FtsQBL complex"]]},{"id":"GO:0008976","l":"polyphosphate kinase activity","na":2,"nb":10,"a":[["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/polyphosphate_granule.html","polyphosphate granule"]],"b":[["EC%3A2.7.4.1","ATP-polyphosphate phosphotransferase"],["RHEA%3A19573","[phosphate](n) + ATP = [phosphate](n+1) + ADP"],["GO%3A0008976","polyphosphate kinase activity"],["NCBIfam%3ANF042973","ADP-polyphosphate phosphotransferase"],["NCBIfam%3ATIGR03705","polyphosphate kinase 1"],["NCBIfam%3ATIGR03707","polyphosphate kinase 2"]]},{"id":"GO:0004329","l":"formate-tetrahydrofolate ligase activity","na":2,"nb":9,"a":[["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"]],"b":[["EC%3A6.3.4.3","formate--tetrahydrofolate ligase"],["RHEA%3A20221","(6S)-5,6,7,8-tetrahydrofolate + formate + ATP = (6R)-10-formyltetrahydrofolate + ADP + phosphate"],["GO%3A0004329","formate-tetrahydrofolate ligase activity"],["NCBIfam%3ANF010030","formate--tetrahydrofolate ligase"],["NCBIfam%3ANF010031","formate--tetrahydrofolate ligase"],["NCBIfam%3ANF013436","formate--tetrahydrofolate ligase"]]},{"id":"GO:0019164","l":"pyruvate synthase activity","na":2,"nb":9,"a":[["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"],["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"]],"b":[["EC%3A1.2.7.1","pyruvate synthase"],["RHEA%3A12765","2 oxidized [2Fe-2S]-[ferredoxin] + pyruvate + CoA = 2 reduced [2Fe-2S]-[ferredoxin] + acetyl-CoA + CO2 + H(+)"],["GO%3A0019164","pyruvate synthase activity"],["NCBIfam%3ANF041170","2-oxoacid:ferredoxin oxidoreductase subunit alpha"],["NCBIfam%3ANF041171","2-oxoacid:ferredoxin oxidoreductase subunit beta"],["NCBIfam%3ANF040682","pyruvate synthase subunit PorA"]]},{"id":"GO:0031160","l":"spore wall","na":2,"nb":9,"a":[["morphology/spore_forming.html","spore forming"],["morphology/spore_shaped.html","spore shaped"]],"b":[["ComplexPortal%3ACPX-3028","1,3-beta-D-glucan synthase complex, FKS3-RHO1 variant"],["GO%3A0005619","ascospore wall"],["GO%3A0097515","asexual spore wall"],["GO%3A0043591","endospore external encapsulating structure"],["GO%3A0097514","sexual spore wall"],["GO%3A0031160","spore wall"]]},{"id":"NCBITaxon:818","l":"Bacteroides thetaiotaomicron","na":2,"nb":9,"a":[["ecology/gut_associated.html","gut-associated"],["ecology/host_associated.html","host-associated"]],"b":[["Pfam%3APF09093","Lyase, catalytic"],["TED%3AAF-A0A174W9M0-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A174W9M0-F1-model_v4_TED01"],["TED%3AAF-A0A679HCU6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A679HCU6-F1-model_v4_TED01"],["TED%3AAF-A0A139L295-F1-model_v4_TED04","TED novel fold AF-A0A139L295-F1-model_v4_TED04"],["TED%3AAF-A0A174QBB7-F1-model_v4_TED02","TED novel fold AF-A0A174QBB7-F1-model_v4_TED02"],["TED%3AAF-A0A679H9T4-F1-model_v4_TED03","TED novel fold AF-A0A679H9T4-F1-model_v4_TED03"]]},{"id":"GO:0000917","l":"division septum assembly","na":2,"nb":8,"a":[["morphology/sarcina_arrangement.html","sarcina arrangement"],["morphology/tetrad_arrangement.html","tetrad arrangement"]],"b":[["ComplexPortal%3ACPX-1936","Divisome complex"],["GO%3A0000917","division septum assembly"],["GO%3A0140278","mitotic division septum assembly"],["NCBIfam%3ATIGR02205","cell division protein ZipA"],["NCBIfam%3ATIGR00172","Maf family nucleotide pyrophosphatase"],["PANTHER%3APTHR36419","ARRESTIN FAMILY PROTEIN 1"]]},{"id":"GO:0061579","l":"N-acyl homoserine lactone synthase activity","na":2,"nb":8,"a":[["physiology/bioluminescence.html","bioluminescence"],["physiology/quorum_sensing.html","quorum sensing"]],"b":[["EC%3A2.3.1.184","acyl-homoserine-lactone synthase"],["RHEA%3A10096","a fatty acyl-[ACP] + S-adenosyl-L-methionine = an N-acyl-L-homoserine lactone + S-methyl-5'-thioadenosine + holo-[ACP] + H(+)"],["GO%3A0061579","N-acyl homoserine lactone synthase activity"],["NCBIfam%3ANF052393","acyl-homoserine-lactone synthase"],["NCBIfam%3ANF036435","acyl-homoserine-lactone synthase"],["Pfam%3APF17327","Acyl homoserine lactone synthase"]]},{"id":"NCBITaxon:565050","l":"Caulobacter vibrioides NA1000","na":2,"nb":8,"a":[["morphology/crescent_shaped.html","crescent shaped"],["morphology/tailed_shaped.html","tailed shaped"]],"b":[["Pfam%3APF02767","DNA polymerase III beta subunit, central domain"],["Pfam%3APF02768","DNA polymerase III beta subunit, C-terminal domain"],["Pfam%3APF00712","DNA polymerase III beta subunit, N-terminal domain"],["Pfam%3APF21249","GyrB, hook"],["Pfam%3APF07378","Flagellar protein FlbT"],["Pfam%3APF03748","Flagellar basal body-associated protein FliL"]]},{"id":"GO:0042438","l":"melanin biosynthetic process","na":2,"nb":7,"a":[["morphology/black_pigmented.html","black pigmented"],["morphology/white_pigmented.html","white pigmented"]],"b":[["GO%3A0140614","1,8-dihydroxynaphthalene-melanin biosynthetic process"],["GO%3A0006583","melanin biosynthetic process from tyrosine"],["GO%3A0042438","melanin biosynthetic process"],["Reactome%3AR-HSA-5662702","Melanin biosynthesis"],["NCBIfam%3ANF017995","tyrosinase family oxidase copper chaperone"],["NCBIfam%3ANF047834","tyrosinase MelC2"]]},{"id":"GO:0050304","l":"nitrous-oxide reductase activity","na":2,"nb":7,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"]],"b":[["EC%3A1.7.2.4","nitrous-oxide reductase"],["RHEA%3A43108","N2 + 2 Fe(III)-[cytochrome c] + H2O = nitrous oxide + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["GO%3A0050304","nitrous-oxide reductase activity"],["NCBIfam%3ANF052460","clade III lactonase-type nitrous-oxide reductase"],["NCBIfam%3ATIGR04244","TAT-dependent nitrous-oxide reductase"],["NCBIfam%3ATIGR04246","Sec-dependent nitrous-oxide reductase"]]},{"id":"NCBITaxon:28116","l":"Bacteroides ovatus","na":2,"nb":7,"a":[["metabolism/xylan_degradation.html","xylan degradation"],["physiology/amylase_activity.html","amylase activity"]],"b":[["TED%3AAF-A0A515J030-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A515J030-F1-model_v4_TED01"],["TED%3AAF-A0A5M5C3M7-F1-model_v4_TED01","TED novel fold AF-A0A5M5C3M7-F1-model_v4_TED01"],["TED%3AAF-A0A641PL20-F1-model_v4_TED01","TED novel fold AF-A0A641PL20-F1-model_v4_TED01"],["TED%3AAF-A0A641V3P9-F1-model_v4_TED03","TED novel fold AF-A0A641V3P9-F1-model_v4_TED03"],["TED%3AAF-A0A641VT79-F1-model_v4_TED01","TED novel fold AF-A0A641VT79-F1-model_v4_TED01"],["TED%3AAF-A0A642C648-F1-model_v4_TED01","TED novel fold AF-A0A642C648-F1-model_v4_TED01"]]},{"id":"CHEBI:18246","l":"(1->4)-beta-D-glucan","na":2,"nb":6,"a":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/cellulolysis.html","cellulolysis"]],"b":[["EC%3A2.4.1.12","cellulose synthase (UDP-forming)"],["EC%3A2.4.1.29","cellulose synthase (GDP-forming)"],["EC%3A2.4.1.49","cellodextrin phosphorylase"],["RHEA%3A17797","[(1->4)-beta-D-glucosyl](n) + GDP-alpha-D-glucose = [(1->4)-beta-D-glucosyl](n+1) + GDP + H(+)"],["RHEA%3A23024","[(1->4)-beta-D-glucosyl](n) + phosphate = [(1->4)-beta-D-glucosyl](n-1) + alpha-D-glucose 1-phosphate"],["RHEA%3A19929","[(1->4)-beta-D-glucosyl](n) + UDP-alpha-D-glucose = [(1->4)-beta-D-glucosyl](n+1) + UDP + H(+)"]]},{"id":"CHEBI:27208","l":"","na":6,"nb":2,"a":[["environment/mesophilic.html","mesophilic"],["environment/temperature_delta.html","temperature delta"],["environment/temperature_delta_mid2.html","temperature delta mid2"],["environment/temperature_optimum_mid1.html","temperature optimum mid1"],["environment/temperature_optimum_mid2.html","temperature optimum mid2"],["environment/temperature_optimum_very_low.html","temperature optimum very low"]],"b":[["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"],["TCDB%3A9.A.76","The Omega3 Fatty Acid Desaturase 3/Putative Transporter (FAD3) Family"]]},{"id":"InterPro:IPR012171","l":"","na":2,"nb":6,"a":[["environment/facultative_psychrophilic.html","facultative psychrophilic"],["environment/temperature_preference.html","temperature preference"]],"b":[["Pfam%3APF00173","Cytochrome b5-like Heme/Steroid binding domain"],["Pfam%3APF00487","Fatty acid desaturase"],["PANTHER%3APTHR19353","FATTY ACID DESATURASE 2"],["PANTHER%3APTHR32100","OMEGA-6 FATTY ACID DESATURASE, CHLOROPLASTIC"],["Pfam%3APF11960","Domain of unknown function (DUF3474)"],["PROSITE%3APS00574","Fatty acid desaturases family 2 signature"]]},{"id":"NCBITaxon:727","l":"Haemophilus influenzae","na":2,"nb":6,"a":[["genomics/restriction_modification_system.html","restriction-modification system"],["morphology/coccobacillus_shaped.html","coccobacillus shaped"]],"b":[["Pfam%3APF06808","Tripartite ATP-independent periplasmic transporter, DctM component"],["Pfam%3APF04290","Tripartite ATP-independent periplasmic transporters, DctQ component"],["Pfam%3APF09226","Restriction endonuclease HincII"],["Pfam%3APF09520","Type II restriction endonuclease, HinfI"],["Pfam%3APF24077","Immunoglobulin A1 protease autotransporter domain 2"],["PROSITE%3APS01068","OmpA-like domain"]]},{"id":"CHEBI:16094","l":"thiosulfate(2-)","na":5,"nb":2,"a":[["metabolism/disproportionation.html","Disproportionation"],["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["TCDB%3A2.A.29","The Mitochondrial Carrier (MC) Family"],["proteintraitsmech%3ABIOLIP_THJ","THJ-binding site"]]},{"id":"GO:0009291","l":"unidirectional conjugation","na":2,"nb":5,"a":[["genomics/genomic_island.html","genomic island"],["genomics/plasmid_carriage.html","plasmid carriage"]],"b":[["GO%3A0000762","pheromone-induced unidirectional conjugation"],["GO%3A0009291","unidirectional conjugation"],["NCBIfam%3ATIGR02775","P-type conjugative transfer protein TrbG"],["NCBIfam%3ATIGR02780","P-type conjugative transfer protein TrbJ"],["NCBIfam%3ATIGR02783","P-type conjugative transfer protein TrbL"]]},{"id":"GO:0016610","l":"nitrogenase complex","na":2,"nb":5,"a":[["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["GO%3A0016611","iron-iron nitrogenase complex"],["GO%3A0016612","molybdenum-iron nitrogenase complex"],["GO%3A0016610","nitrogenase complex"],["GO%3A0016613","vanadium-iron nitrogenase complex"],["NCBIfam%3ATIGR01287","nitrogenase iron protein"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":2,"nb":5,"a":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"]],"b":[["Pfam%3APF25323","PilS-like transmembrane domain"],["Pfam%3APF02963","Restriction endonuclease EcoRI"],["PROSITE%3APS00968","Antenna complexes alpha subunits signature"],["PROSITE%3APS00974","Mannitol dehydrogenases signature"],["PROSITE%3APS00567","Phosphoribulokinase signature"]]},{"id":"NCBITaxon:920","l":"Acidithiobacillus ferrooxidans","na":5,"nb":2,"a":[["environment/obligately_acidophilic.html","obligately acidophilic"],["environment/ph_range_low.html","pH range low"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["Pfam%3APF20538","Family of unknown function (DUF6753)"],["PROSITE%3APS01007","Transposases, Mutator family, signature"]]},{"id":"CHEBI:16234","l":"","na":2,"nb":4,"a":[["environment/alkalotolerant.html","alkalotolerant"],["physiology/urease_activity.html","urease activity"]],"b":[["TCDB%3A2.A.53","The Sulfate Permease (SulP) Family"],["MCSA%3A172","isoaspartyl dipeptidase"],["MCSA%3A989","Retroviral integrase"],["MCSA%3A965","Viperin"]]},{"id":"GO:0000920","l":"septum digestion after cytokinesis","na":2,"nb":4,"a":[["morphology/diplococcus_shaped.html","diplococcus shaped"],["morphology/dumbbell_shaped.html","dumbbell shaped"]],"b":[["ComplexPortal%3ACPX-1684","CBK1-MOB2 kinase complex"],["ComplexPortal%3ACPX-1712","Gin4 serine/threonine kinase complex"],["ComplexPortal%3ACPX-1426","Myosin class II complex"],["GO%3A0000920","septum digestion after cytokinesis"]]},{"id":"GO:0030115","l":"S-layer","na":2,"nb":4,"a":[["morphology/square_shaped.html","square shaped"],["morphology/triangular_shaped.html","triangular shaped"]],"b":[["GO%3A0030115","S-layer"],["NCBIfam%3ANF041335","ArtA-dependent S-layer glycoprotein"],["NCBIfam%3ANF053619","BT1927 family outer membrane S-layer protein"],["NCBIfam%3ANF041073","S-layer protein SlaA"]]},{"id":"GO:0043107","l":"type IV pilus-dependent motility","na":2,"nb":4,"a":[["morphology/motile.html","motile"],["morphology/twitching_motility.html","twitching motility"]],"b":[["GO%3A0043107","type IV pilus-dependent motility"],["NCBIfam%3ATIGR01420","PilT/PilU family type 4a pilus ATPase"],["NCBIfam%3ANF016253","type 4a pilus biogenesis protein PilO"],["Pfam%3APF04350","Type IVa pilus alignment subcomplex PilO C-terminal domain"]]},{"id":"GO:0043884","l":"CO-methylating acetyl-CoA synthase activity","na":2,"nb":4,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"]],"b":[["EC%3A2.3.1.169","CO-methylating acetyl-CoA synthase"],["RHEA%3A45212","Co(I)-[corrinoid Fe-S protein] + acetyl-CoA + H(+) = methyl-Co(III)-[corrinoid Fe-S protein] + CO + CoA"],["GO%3A0043884","CO-methylating acetyl-CoA synthase activity"],["NCBIfam%3ATIGR00316","CO dehydrogenase/CO-methylating acetyl-CoA synthase complex subunit beta"]]},{"id":"GO:0050338","l":"thiosulfate dehydrogenase activity","na":2,"nb":4,"a":[["metabolism/disproportionation.html","Disproportionation"],["metabolism/sulfur_oxidation.html","sulfur oxidation"]],"b":[["EC%3A1.8.2.2","thiosulfate dehydrogenase"],["RHEA%3A20549","2 thiosulfate + 2 Fe(III)-[cytochrome c] = tetrathionate + 2 Fe(II)-[cytochrome c] + 2 H(+)"],["GO%3A0050338","thiosulfate dehydrogenase activity"],["MCSA%3A986","Thiosulfate dehydrogenase"]]},{"id":"METPO:2000302","l":"shows activity of","na":2,"nb":4,"a":[["metabolism/shows_activity_of.html","shows activity of"],["other/coagulase_positive.html","coagulase positive"]],"b":[["METPO%3A1007083","catalase positive"],["METPO%3A1007090","coagulase positive"],["METPO%3A1007085","oxidase positive"],["METPO%3A1007087","urease positive"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":2,"nb":4,"a":[["genomics/abialpha_system.html","AbiAlpha system"],["physiology/gelatinase_activity.html","gelatinase activity"]],"b":[["Pfam%3APF02920","DNA binding domain of tn916 integrase"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF09711","CRISPR-associated protein (Cas_Csn2)"],["Pfam%3APF06308","23S rRNA methylastransferase leader peptide (ErmCL)"]]},{"id":"GO:0019329","l":"ammonia oxidation","na":2,"nb":3,"a":[["metabolism/complete_ammonia_oxidation.html","complete ammonia oxidation"],["metabolism/nitrification.html","nitrification"]],"b":[["GO%3A0019409","aerobic respiration, using ammonia as electron donor"],["GO%3A0019329","ammonia oxidation"],["GO%3A0019331","anaerobic respiration, using ammonium as electron donor"]]},{"id":"GO:0070088","l":"polyhydroxyalkanoate granule","na":2,"nb":3,"a":[["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"]],"b":[["GO%3A0070088","polyhydroxyalkanoate granule"],["NCBIfam%3ANF045536","polyhydroxyalkanoate granule-associated phasin"],["NCBIfam%3ANF045537","polyhydroxyalkanoate granule-associated phasin"]]},{"id":"InterPro:IPR007793","l":"","na":3,"nb":2,"a":[["morphology/ellipsoidal.html","ellipsoidal"],["morphology/filament_shaped.html","filament shaped"],["morphology/ovoid_shaped.html","ovoid shaped"]],"b":[["PANTHER%3APTHR35794","CELL DIVISION PROTEIN DIVIVA"],["Pfam%3APF05103","DivIVA protein"]]},{"id":"InterPro:IPR012761","l":"","na":3,"nb":2,"a":[["physiology/oxidative_stress_response.html","oxidative stress response"],["physiology/stress_response.html","stress response"],["physiology/viable_but_nonculturable_state.html","viable but nonculturable state"]],"b":[["HAMAP%3AMF_00959","RNA polymerase sigma factor RpoS [rpoS]"],["PROSITE%3APS00716","Sigma-70 factors family signature 2"]]},{"id":"InterPro:IPR050077","l":"","na":2,"nb":3,"a":[["genomics/prophage.html","prophage"],["physiology/sos_response.html","SOS response"]],"b":[["Pfam%3APF12840","Helix-turn-helix domain"],["Pfam%3APF01726","LexA DNA binding domain"],["PANTHER%3APTHR33516","LEXA REPRESSOR"]]},{"id":"METPO:1000602","l":"aerobic","na":3,"nb":2,"a":[["environment/aerobic.html","aerobic"],["environment/oxygen_preference.html","oxygen preference"],["physiology/aerobic_anoxygenic_phototrophy.html","aerobic anoxygenic phototrophy"]],"b":[["METPO%3A1000602","aerobic"],["METPO%3A1000606","obligately aerobic"]]},{"id":"METPO:1007080","l":"catalase test","na":2,"nb":3,"a":[["other/catalase_negative.html","catalase negative"],["other/catalase_test.html","catalase test"]],"b":[["METPO%3A1007084","catalase negative"],["METPO%3A1007083","catalase positive"],["METPO%3A1007080","catalase test"]]},{"id":"METPO:1007081","l":"oxidase test","na":2,"nb":3,"a":[["other/oxidase_negative.html","oxidase negative"],["other/oxidase_test.html","oxidase test"]],"b":[["METPO%3A1007086","oxidase negative"],["METPO%3A1007085","oxidase positive"],["METPO%3A1007081","oxidase test"]]},{"id":"METPO:1007082","l":"urease test","na":2,"nb":3,"a":[["other/urease_negative.html","urease negative"],["other/urease_test.html","urease test"]],"b":[["METPO%3A1007088","urease negative"],["METPO%3A1007087","urease positive"],["METPO%3A1007082","urease test"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":3,"nb":2,"a":[["environment/aerobic.html","aerobic"],["environment/obligately_aerobic.html","obligately aerobic"],["morphology/tetrad_arrangement.html","tetrad arrangement"]],"b":[["Pfam%3APF22538","Hexaprenyl diphosphate synthase, small subunit"],["PROSITE%3APS01066","Undecaprenyl pyrophosphate synthase family signature"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":2,"nb":3,"a":[["genomics/wadjet_system.html","Wadjet system"],["morphology/irregular_shaped.html","irregular shaped"]],"b":[["TED%3AAF-A0A142EAM9-F1-model_v4_TED03","TED highly-symmetric fold AF-A0A142EAM9-F1-model_v4_TED03"],["TED%3AAF-A0A1Q3DTY6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Q3DTY6-F1-model_v4_TED01"],["TED%3AAF-A0A1Q3DNE3-F1-model_v4_TED01","TED novel fold AF-A0A1Q3DNE3-F1-model_v4_TED01"]]},{"id":"NCBITaxon:274","l":"Thermus thermophilus","na":2,"nb":3,"a":[["environment/thermophilic.html","thermophilic"],["morphology/cell_width.html","cell width"]],"b":[["IDPO%3A0000032","flexible N-terminal tail"],["Pfam%3APF01861","Branched-chain polyamine synthase A C-terminal domain"],["Pfam%3APF07736","Chorismate mutase type I"]]},{"id":"UniProt:Q51705","l":"","na":2,"nb":3,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"]],"b":[["Pfam%3APF18793","Nitrous oxide reductase propeller repeat 2"],["Pfam%3APF18764","Nitrous oxide reductase propeller repeat"],["proteintraitsmech%3ABIOLIP_CUA","CUA-binding site"]]},{"id":"GO:0019417","l":"sulfur oxidation","na":2,"nb":2,"a":[["physiology/lithotrophic.html","lithotrophic"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]],"b":[["GO%3A0019417","sulfur oxidation"],["NCBIfam%3ATIGR04484","sulfur oxidation c-type cytochrome SoxA"]]},{"id":"GO:0019649","l":"formaldehyde assimilation","na":2,"nb":2,"a":[["physiology/methanotrophic.html","methanotrophic"],["physiology/methylotrophic.html","methylotrophic"]],"b":[["GO%3A0019649","formaldehyde assimilation"],["NCBIfam%3ATIGR03128","3-hexulose-6-phosphate synthase"]]},{"id":"InterPro:IPR017402","l":"","na":2,"nb":2,"a":[["metabolism/proteorhodopsin_phototrophy.html","proteorhodopsin phototrophy"],["physiology/photoheterotrophic.html","photoheterotrophic"]],"b":[["Pfam%3APF01036","Bacteriorhodopsin-like protein"],["PROSITE%3APS00950","Bacterial rhodopsins signature 1"]]},{"id":"InterPro:IPR017761","l":"","na":2,"nb":2,"a":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["Pfam%3APF00394","Multicopper oxidase"],["PROSITE%3APS00080","Multicopper oxidases signature 2"]]},{"id":"InterPro:IPR023690","l":"","na":2,"nb":2,"a":[["morphology/bacillus_shaped.html","bacillus shaped"],["morphology/fusiform_shaped.html","fusiform shaped"]],"b":[["Pfam%3APF13413","Helix-turn-helix domain"],["HAMAP%3AMF_02017","Cytoskeleton protein RodZ [rodZ]"]]},{"id":"METPO:1000603","l":"anaerobic","na":2,"nb":2,"a":[["environment/anaerobic.html","anaerobic"],["environment/oxygen_preference.html","oxygen preference"]],"b":[["METPO%3A1000603","anaerobic"],["METPO%3A1000607","obligately anaerobic"]]},{"id":"METPO:1000607","l":"obligately anaerobic","na":2,"nb":2,"a":[["environment/obligately_anaerobic.html","obligately anaerobic"],["environment/strictly_anaerobic.html","strictly anaerobic"]],"b":[["METPO%3A1000607","obligately anaerobic"],["METPO%3A1000611","strictly anaerobic"]]},{"id":"METPO:1003002","l":"alkaliphilic","na":2,"nb":2,"a":[["environment/alkaphilic.html","alkaliphilic"],["environment/obligately_alkaphilic.html","obligately alkaliphilic"]],"b":[["METPO%3A1003002","alkaliphilic"],["METPO%3A1003004","obligately alkaliphilic"]]},{"id":"NCBITaxon:1232683","l":"Marinobacterium lacunae","na":2,"nb":2,"a":[["morphology/cell_length_medium.html","cell length medium"],["morphology/cell_width_large.html","cell width large"]],"b":[["TED%3AAF-A0A081FTJ9-F1-model_v4_TED01","TED novel fold AF-A0A081FTJ9-F1-model_v4_TED01"],["TED%3AAF-A0A081FX50-F1-model_v4_TED01","TED novel fold AF-A0A081FX50-F1-model_v4_TED01"]]},{"id":"GO:0046677","l":"response to antibiotic","na":1,"nb":7410,"a":[["physiology/antibiotic_resistance.html","antibiotic resistance"]],"b":[["UniProtKB-KW%3AKW-0046","Antibiotic resistance"],["GO%3A0071236","cellular response to antibiotic"],["GO%3A0072716","response to actinomycin D"],["GO%3A0046677","response to antibiotic"],["GO%3A0046678","response to bacteriocin"],["GO%3A0031001","response to brefeldin A"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii DSM 2661","na":1,"nb":5181,"a":[["metabolism/methanogenesis.html","Methanogenesis"]],"b":[["EC%3A1.12.99.-","With other acceptors"],["EC%3A1.3.1.-","With NAD(+) or NADP(+) as acceptor"],["EC%3A1.3.-.-","Acting on the CH-CH group of donors"],["EC%3A1.8.98.-","With other, known, acceptors"],["EC%3A1.97.1.-","Other oxidoreductases"],["EC%3A2.1.2.-","Hydroxymethyl-, formyl- and related transferases"]]},{"id":"GO:0016020","l":"membrane","na":1,"nb":3003,"a":[["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"]],"b":[["ComplexPortal%3ACPX-1813","1,3-beta-D-glucan synthase complex, FKS2-RHO1 variant"],["ComplexPortal%3ACPX-4313","Aliphatic sulfonate ABC transporter complex"],["ComplexPortal%3ACPX-4314","Arabinose ABC transporter complex"],["ComplexPortal%3ACPX-4318","Arginine ABC transporter complex, artI variant"],["ComplexPortal%3ACPX-4319","Arginine ABC transporter complex, artJ variant"],["ComplexPortal%3ACPX-6308","ATP10B-CDC50A P4-ATPase complex"]]},{"id":"GO:0005886","l":"plasma membrane","na":1,"nb":861,"a":[["environment/desiccation_tolerant.html","desiccation tolerant"]],"b":[["ComplexPortal%3ACPX-2838","3M complex"],["ComplexPortal%3ACPX-850","AHNAK - Annexin A2 - S100-A10 complex"],["ComplexPortal%3ACPX-6581","Alpha-beta T cell receptor complex, TRBC1 variant"],["ComplexPortal%3ACPX-6482","Alpha-beta T cell receptor complex, TRBC2 variant"],["ComplexPortal%3ACPX-2188","Amiloride-sensitive sodium channel complex, alpha-beta-gamma"],["ComplexPortal%3ACPX-3582","AMT1-1 - AMT1-3 heterotrimer, variant 1"]]},{"id":"CHEBI:28938","l":"ammonium","na":1,"nb":837,"a":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_28938","requires ammonium"],["EC%3A1.13.12.15","3,4-dihydroxyphenylalanine oxidative deaminase"],["EC%3A1.13.99.3","tryptophan 2'-dioxygenase"],["EC%3A1.14.11.37","kanamycin B dioxygenase"],["EC%3A1.14.12.1","anthranilate 1,2-dioxygenase (deaminating, decarboxylating)"],["EC%3A1.14.12.14","2-aminobenzenesulfonate 2,3-dioxygenase"]]},{"id":"GO:0016491","l":"oxidoreductase activity","na":1,"nb":695,"a":[["physiology/chemotrophic.html","chemotrophic"]],"b":[["GO%3A0047143","chlorate reductase activity"],["GO%3A0051213","dioxygenase activity"],["GO%3A0043364","glycyl-radical enzyme activating activity"],["GO%3A0004497","monooxygenase activity"],["GO%3A0050781","ortho-trichlorophenol reductive dehalogenase activity"],["GO%3A0016675","oxidoreductase activity, acting on a heme group of donors"]]},{"id":"GO:0003824","l":"catalytic activity","na":1,"nb":663,"a":[["upper/enzyme.html","enzyme"]],"b":[["GO%3A0140640","catalytic activity, acting on a nucleic acid"],["GO%3A0140096","catalytic activity, acting on a protein"],["GO%3A0003824","catalytic activity"],["GO%3A0009975","cyclase activity"],["GO%3A0160215","deacylase activity"],["GO%3A0032451","demethylase activity"]]},{"id":"GO:0071944","l":"cell periphery","na":1,"nb":440,"a":[["morphology/spiral_shaped.html","spiral shaped"]],"b":[["GO%3A0071944","cell periphery"],["PANTHER%3APTHR31468","1,3-BETA-GLUCANOSYLTRANSFERASE GAS1"],["PANTHER%3APTHR28145","12 KDA HEAT SHOCK PROTEIN"],["PANTHER%3APTHR42755","3-DEOXY-MANNO-OCTULOSONATE CYTIDYLYLTRANSFERASE"],["PANTHER%3APTHR46574","43 KDA RECEPTOR-ASSOCIATED PROTEIN OF THE SYNAPSE"],["PANTHER%3APTHR15182","A-KINASE ANCHOR PROTEIN 5-RELATED"]]},{"id":"GO:0005840","l":"ribosome","na":1,"nb":418,"a":[["physiology/dormancy.html","dormancy"]],"b":[["ComplexPortal%3ACPX-2854","Elongation Factor eEF1 complex, variant CAM1"],["ComplexPortal%3ACPX-425","Elongation Factor eEF1 complex, variant TEF4"],["ComplexPortal%3ACPX-427","Eukaryotic translation initiation factor 2 complex"],["ComplexPortal%3ACPX-430","Eukaryotic translation initiation factor 4F complex, variant TIF4631"],["ComplexPortal%3ACPX-431","Eukaryotic translation initiation factor 4F complex, variant TIF4632"],["ComplexPortal%3ACPX-1295","MKT1-PBP1 translation regulation complex"]]},{"id":"GO:0006260","l":"DNA replication","na":1,"nb":311,"a":[["genomics/gc_skew.html","GC skew"]],"b":[["ComplexPortal%3ACPX-6641","ASCC DNA alkylation repair complex"],["ComplexPortal%3ACPX-568","Chromatin assembly factor 1 complex"],["ComplexPortal%3ACPX-2671","CMG helicase complex"],["ComplexPortal%3ACPX-297","CMG helicase complex"],["ComplexPortal%3ACPX-4526","CMG helicase complex"],["ComplexPortal%3ACPX-4541","CMG helicase complex"]]},{"id":"GO:0008800","l":"beta-lactamase activity","na":1,"nb":311,"a":[["physiology/antibiotic_resistance.html","antibiotic resistance"]],"b":[["EC%3A3.5.2.6","beta-lactamase"],["RHEA%3A20401","a beta-lactam + H2O = a substituted beta-amino acid"],["GO%3A0008800","beta-lactamase activity"],["NCBIfam%3ANF038195","AAK family class A beta-lactamase"],["NCBIfam%3ANF000397","ACC family cephalosporin-hydrolyzing class C beta-lactamase"],["NCBIfam%3ANF000448","ACI family class A beta-lactamase"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis H37Rv","na":1,"nb":297,"a":[["physiology/dormancy.html","dormancy"]],"b":[["IDPO%3A0000002","disorder"],["IDPO%3A0000031","flexible C-terminal tail"],["IDPO%3A0000032","flexible N-terminal tail"],["IDPO%3A0000045","phosphorylation display site"],["IDPO%3A0000059","self-inhibition"],["Pfam%3APF17837","4'-phosphopantetheinyl transferase N-terminal domain"]]},{"id":"GO:0006281","l":"DNA repair","na":1,"nb":272,"a":[["environment/radiotolerant.html","radiotolerant"]],"b":[["ComplexPortal%3ACPX-4426","BRCA1-B complex"],["ComplexPortal%3ACPX-4721","BRCA1-B complex"],["ComplexPortal%3ACPX-568","Chromatin assembly factor 1 complex"],["ComplexPortal%3ACPX-1959","HU complex, variant hupA"],["ComplexPortal%3ACPX-1958","HU complex, variant hupAB"],["ComplexPortal%3ACPX-863","INO80 chromatin remodeling complex"]]},{"id":"GO:0031090","l":"organelle membrane","na":1,"nb":270,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["GO%3A0098588","bounding membrane of organelle"],["GO%3A0005789","endoplasmic reticulum membrane"],["GO%3A0032580","Golgi cisterna membrane"],["GO%3A0110146","magnetosome membrane"],["GO%3A0031966","mitochondrial membrane"],["GO%3A0031965","nuclear membrane"]]},{"id":"GO:0016301","l":"kinase activity","na":1,"nb":246,"a":[["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["GO%3A0050515","4-(cytidine 5'-diphospho)-2-C-methyl-D-erythritol kinase activity"],["GO%3A0140383","4-hydroxytryptamine kinase activity"],["GO%3A0047590","5-dehydro-2-deoxygluconokinase activity"],["GO%3A0047336","5-methyldeoxycytidine-5'-phosphate kinase activity"],["GO%3A0008776","acetate kinase activity"],["GO%3A0047601","acetate kinase (diphosphate) activity"]]},{"id":"GO:0008152","l":"metabolic process","na":1,"nb":224,"a":[["metabolism/metabolism.html","metabolism"]],"b":[["GO%3A0006666","3-keto-sphinganine metabolic process"],["GO%3A0008291","acetylcholine metabolic process"],["GO%3A0006081","aldehyde metabolic process"],["GO%3A0019330","aldoxime metabolic process"],["GO%3A0009820","alkaloid metabolic process"],["GO%3A0000255","allantoin metabolic process"]]},{"id":"CHEBI:15740","l":"formate","na":1,"nb":173,"a":[["metabolism/syntrophy.html","Syntrophy"]],"b":[["EC%3A1.1.98.6","ribonucleoside-triphosphate reductase (formate)"],["EC%3A1.10.3.15","grixazone synthase"],["EC%3A1.13.11.41","2,4'-dihydroxyacetophenone dioxygenase"],["EC%3A1.13.11.53","acireductone dioxygenase (Ni(2+)-requiring)"],["EC%3A1.13.11.54","acireductone dioxygenase (Fe(2+)-requiring)"],["EC%3A1.13.11.72","2-hydroxyethylphosphonate dioxygenase"]]},{"id":"GO:0016791","l":"phosphatase activity","na":1,"nb":171,"a":[["physiology/naphthol_as_bi_phosphohydrolase_activity.html","naphthol-AS-BI-phosphohydrolase activity"]],"b":[["ComplexPortal%3ACPX-120","Prostatic acid phosphatase complex"],["ComplexPortal%3ACPX-121","Prostatic acid phosphatase complex"],["GO%3A0033885","10-hydroxy-9-(phosphonooxy)octadecanoate phosphatase activity"],["GO%3A0047538","2-carboxy-D-arabinitol-1-phosphatase activity"],["GO%3A0043716","2-hydroxy-3-keto-5-methylthiopentenyl-1-phosphate phosphatase activity"],["GO%3A0050532","2-phosphosulfolactate phosphatase activity"]]},{"id":"NCBITaxon:99287","l":"Salmonella enterica subsp. enterica serovar Typhimurium str. LT2","na":1,"nb":167,"a":[["metabolism/tetrathionate_respiration.html","tetrathionate respiration"]],"b":[["Pfam%3APF16031","TonB polyproline region"],["Pfam%3APF13521","AAA domain"],["Pfam%3APF26341","tRNA 2-selenouridine synthase AAA domain"],["Pfam%3APF13427","Aminoglycoside adenylyltransferase, C-terminal domain"],["Pfam%3APF09317","Acyl-CoA dehydrogenase, C-terminal, bacterial type"],["Pfam%3APF06315","Isocitrate dehydrogenase kinase/phosphatase (AceK) kinase domain"]]},{"id":"GO:0015979","l":"photosynthesis","na":1,"nb":146,"a":[["metabolism/photosynthesis.html","photosynthesis"]],"b":[["GO%3A0015979","photosynthesis"],["NCBIfam%3ATIGR01337","allophycocyanin subunit beta"],["NCBIfam%3ATIGR03056","alpha/beta fold hydrolase BchO"],["NCBIfam%3ANF013497","Apocytochrome F, C-terminal"],["NCBIfam%3ANF014391","Bacteriochlorophyll A protein"],["NCBIfam%3ANF058502","C-phycocyanin alpha-cysteine-84 phycocyanobilin lyase subunit CpcE"]]},{"id":"NCBITaxon:71421","l":"Haemophilus influenzae Rd KW20","na":1,"nb":133,"a":[["genomics/restriction_modification_system.html","restriction-modification system"]],"b":[["Pfam%3APF13521","AAA domain"],["Pfam%3APF13654","LonB-like, AAA domain"],["Pfam%3APF16326","ABC transporter C-terminal domain"],["Pfam%3APF13710","ACT domain"],["Pfam%3APF12633","Adenylate cyclase NT domain"],["Pfam%3APF26690","Adenylate cyclase, class-I, third domain"]]},{"id":"GO:0006457","l":"protein folding","na":1,"nb":129,"a":[["environment/temperature_range_high.html","temperature range high"]],"b":[["ComplexPortal%3ACPX-2156","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-2772","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-6030","Chaperonin-containing T-complex"],["ComplexPortal%3ACPX-2113","GroEL-GroES complex"],["ComplexPortal%3ACPX-1671","Prefoldin co-chaperone complex"],["ComplexPortal%3ACPX-2389","Prefoldin co-chaperone complex"]]},{"id":"GO:0030154","l":"cell differentiation","na":1,"nb":108,"a":[["morphology/heterocyst.html","heterocyst"]],"b":[["GO%3A0048657","anther wall tapetum cell differentiation"],["GO%3A0009557","antipodal cell differentiation"],["GO%3A1903498","bundle sheath cell differentiation"],["GO%3A0035051","cardiocyte differentiation"],["GO%3A0030154","cell differentiation"],["GO%3A0021533","cell differentiation in hindbrain"]]},{"id":"CHEBI:15343","l":"acetaldehyde","na":1,"nb":88,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"]],"b":[["EC%3A1.1.1.1","alcohol dehydrogenase"],["EC%3A1.1.5.5","alcohol dehydrogenase (quinone)"],["EC%3A1.1.99.36","alcohol dehydrogenase (nicotinoprotein)"],["EC%3A1.13.11.88","isoeugenol monooxygenase"],["EC%3A1.13.12.16","nitronate monooxygenase"],["EC%3A1.2.1.10","acetaldehyde dehydrogenase (acetylating)"]]},{"id":"GO:0009307","l":"DNA restriction-modification system","na":1,"nb":83,"a":[["genomics/restriction_modification_system.html","restriction-modification system"]],"b":[["ComplexPortal%3ACPX-5285","McrBC 5-methylcytosine-specific restriction endonuclease complex"],["ComplexPortal%3ACPX-5628","Type I restriction-modification EcoKI complex"],["GO%3A0009307","DNA restriction-modification system"],["NCBIfam%3ANF007277","5-methylcytosine-specific restriction endonuclease system specificity protein McrC"],["NCBIfam%3ATIGR02986","Alw26I/Eco31I/Esp3I family type II restriction endonuclease"],["NCBIfam%3ANF020756","AvaI/BsoBI family type II restriction endonuclease"]]},{"id":"CHEBI:15354","l":"choline","na":1,"nb":78,"a":[["environment/euryhaline.html","euryhaline"]],"b":[["EC%3A1.1.3.17","choline oxidase"],["EC%3A1.1.99.1","choline dehydrogenase"],["EC%3A1.14.15.7","choline monooxygenase"],["EC%3A2.3.1.6","choline O-acetyltransferase"],["EC%3A2.3.1.91","sinapoylglucose--choline O-sinapoyltransferase"],["EC%3A2.7.1.32","choline kinase"]]},{"id":"CHEBI:29806","l":"fumarate(2-)","na":1,"nb":76,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["EC%3A1.3.1.6","fumarate reductase (NADH)"],["EC%3A1.3.2.4","fumarate reductase (cytochrome)"],["EC%3A1.3.4.1","fumarate reductase (CoM/CoB)"],["EC%3A1.3.5.1","succinate dehydrogenase"],["EC%3A1.3.98.1","dihydroorotate oxidase (fumarate)"],["EC%3A3.7.1.14","2-hydroxy-6-oxonona-2,4-dienedioate hydrolase"]]},{"id":"GO:0004803","l":"transposase activity","na":1,"nb":73,"a":[["genomics/transposable_element.html","transposable element"]],"b":[["GO%3A0004803","transposase activity"],["NCBIfam%3ANF015365","IS1 family transposase"],["NCBIfam%3ANF033558","IS1 family transposase"],["NCBIfam%3ANF033542","IS110 family RNA-guided transposase"],["NCBIfam%3ANF033551","IS1182 family transposase"],["NCBIfam%3ANF033544","IS1249 family transposase"]]},{"id":"GO:0006413","l":"translational initiation","na":1,"nb":67,"a":[["genomics/codon_usage_bias.html","codon usage bias"]],"b":[["ComplexPortal%3ACPX-427","Eukaryotic translation initiation factor 2 complex"],["ComplexPortal%3ACPX-1831","Eukaryotic translation initiation factor 3 core complex"],["ComplexPortal%3ACPX-3482","Eukaryotic translation initiation factor 4E-Mxt complex"],["ComplexPortal%3ACPX-2666","Eukaryotic translation initiation factor 4F, EIF4A1 and EIF4G1 variant"],["ComplexPortal%3ACPX-5863","Eukaryotic translation initiation factor 4F, EIF4A1 and EIF4G1 variant"],["ComplexPortal%3ACPX-5635","Eukaryotic translation initiation factor 4F, EIF4A1 and EIF4G3 variant"]]},{"id":"GO:0006950","l":"response to stress","na":1,"nb":67,"a":[["physiology/stress_response.html","stress response"]],"b":[["GO%3A0033554","cellular response to stress"],["GO%3A0006952","defense response"],["GO%3A0033555","multicellular organismal response to stress"],["GO%3A0003299","muscle hypertrophy in response to stress"],["GO%3A0009271","phage shock"],["GO%3A0034059","response to anoxia"]]},{"id":"GO:0031012","l":"extracellular matrix","na":1,"nb":64,"a":[["ecology/biofilm_formation.html","biofilm formation"]],"b":[["ComplexPortal%3ACPX-461","155 kDa platelet multimerin complex"],["ComplexPortal%3ACPX-960","Collagen type II trimer"],["ComplexPortal%3ACPX-1749","Collagen type X trimer"],["ComplexPortal%3ACPX-2971","Collagen type X trimer"],["ComplexPortal%3ACPX-1750","Collagen type XI trimer variant 1"],["ComplexPortal%3ACPX-2975","Collagen type XI trimer variant 1"]]},{"id":"GO:0006289","l":"nucleotide-excision repair","na":1,"nb":60,"a":[["environment/uv_radiation_tolerant.html","UV radiation tolerant"]],"b":[["ComplexPortal%3ACPX-2757","CRL4-ERCC8 E3 ubiquitin ligase complex, CUL4A variant"],["ComplexPortal%3ACPX-2758","CRL4-ERCC8 E3 ubiquitin ligase complex, CUL4B variant"],["ComplexPortal%3ACPX-1837","CUL3-HRT1-ELC1-ELA1 ubiquitin ligase complex"],["ComplexPortal%3ACPX-478","ERCC1-XPF endonuclease complex"],["ComplexPortal%3ACPX-491","Ercc1-Xpf endonuclease complex"],["ComplexPortal%3ACPX-1659","General transcription factor TFIIH complex"]]},{"id":"InterPro:IPR000792","l":"Transcription regulator LuxR-like, C-terminal","na":1,"nb":59,"a":[["physiology/quorum_sensing.html","quorum sensing"]],"b":[["GO%3A0071111","cyclic-guanylate-specific phosphodiesterase activity"],["GO%3A0048031","trisaccharide binding"],["GO%3A1990451","cellular stress response to acidic pH"],["GO%3A0000023","maltose metabolic process"],["GO%3A0000160","phosphorelay signal transduction system"],["GO%3A0045913","positive regulation of carbohydrate metabolic process"]]},{"id":"CHEBI:17976","l":"","na":1,"nb":56,"a":[["metabolism/electron_transfer.html","Electron transfer"]],"b":[["EC%3A1.1.5.14","fructose 5-dehydrogenase"],["EC%3A1.1.5.2","quinoprotein glucose dehydrogenase (PQQ, quinone)"],["EC%3A1.1.5.3","glycerol-3-phosphate dehydrogenase"],["EC%3A1.1.5.5","alcohol dehydrogenase (quinone)"],["EC%3A1.10.3.11","ubiquinol oxidase (non-electrogenic)"],["EC%3A1.10.3.17","superoxide oxidase"]]},{"id":"GO:0006979","l":"response to oxidative stress","na":1,"nb":50,"a":[["physiology/oxidative_stress_response.html","oxidative stress response"]],"b":[["ComplexPortal%3ACPX-9082","19S-20S-PA28-alphabeta hybrid proteasome complex"],["ComplexPortal%3ACPX-9085","19S-20S-PA28-gamma hybrid proteasome complex"],["ComplexPortal%3ACPX-8806","20S proteasome complex"],["ComplexPortal%3ACPX-4862","Alkyl hydroperoxide reductase complex"],["ComplexPortal%3ACPX-8842","PA28-alphabeta double-capped 20S proteasome complex"],["ComplexPortal%3ACPX-9002","PA28-alphabeta single-capped 20S proteasome complex"]]},{"id":"CHEBI:16947","l":"citrate(3-)","na":1,"nb":49,"a":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"]],"b":[["EC%3A2.3.3.1","citrate (Si)-synthase"],["EC%3A2.3.3.16","citrate synthase (unknown stereospecificity)"],["EC%3A2.3.3.3","citrate (Re)-synthase"],["EC%3A2.3.3.8","ATP citrate synthase"],["EC%3A2.8.3.10","citrate CoA-transferase"],["EC%3A4.1.3.6","citrate (pro-3S)-lyase"]]},{"id":"CHEBI:16199","l":"urea","na":1,"nb":48,"a":[["physiology/urease_activity.html","urease activity"]],"b":[["EC%3A3.5.1.5","urease"],["EC%3A3.5.1.95","N-malonylurea hydrolase"],["EC%3A3.5.3.1","arginase"],["EC%3A3.5.3.10","D-arginase"],["EC%3A3.5.3.11","agmatinase"],["EC%3A3.5.3.14","amidinoaspartase"]]},{"id":"NCBITaxon:93061","l":"Staphylococcus aureus subsp. aureus NCTC 8325","na":1,"nb":47,"a":[["physiology/catalase_activity.html","catalase activity"]],"b":[["IDPO%3A0000033","flexible linker"],["Pfam%3APF03373","Octapeptide repeat"],["Pfam%3APF07694","5TMR of 5TMR-LYT"],["Pfam%3APF01757","Acyltransferase domain"],["Pfam%3APF18719","ArlS sensor domain"],["Pfam%3APF02216","B domain"]]},{"id":"CHEBI:22563","l":"","na":1,"nb":46,"a":[["environment/euryhaline.html","euryhaline"]],"b":[["TCDB%3A1.C.55","The Agrobacterial VirE2 Target Host Cell Membrane Anion Channel (VirE2) Family"],["TCDB%3A1.A.46","The Anion Channel-forming Bestrophin (Bestrophin) Family"],["TCDB%3A1.A.48","The Anion Channel Tweety (Tweety) Family"],["TCDB%3A2.A.31","The Anion Exchanger (AE) Family"],["TCDB%3A2.A.85","The Aromatic Acid Exporter (ArAE) Family"],["TCDB%3A2.A.45","The Arsenite-Antimonite (ArsB) Efflux Family"]]},{"id":"GO:0006313","l":"DNA transposition","na":1,"nb":46,"a":[["genomics/transposable_element.html","transposable element"]],"b":[["GO%3A0006313","DNA transposition"],["GO%3A0098038","non-replicative DNA transposition"],["GO%3A0098039","replicative DNA transposition"],["NCBIfam%3ANF015365","IS1 family transposase"],["NCBIfam%3ANF038385","IS66-like element accessory protein TnpA"],["NCBIfam%3ANF040815","site-specific tyrosine recombinase/integron integrase"]]},{"id":"GO:0042254","l":"ribosome biogenesis","na":1,"nb":44,"a":[["genomics/rrna_operon_copy_number.html","rRNA operon copy number"]],"b":[["ComplexPortal%3ACPX-8940","Ribosome biogenesis complex"],["GO%3A0042254","ribosome biogenesis"],["NCBIfam%3ANF012679","50S ribosomal protein L10"],["NCBIfam%3ANF016308","Gar1/Naf1 RNA binding region"],["NCBIfam%3ANF016057","nucleolar RNA-binding Nop10p family protein"],["NCBIfam%3ATIGR01575","ribosomal protein S18-alanine N-acetyltransferase"]]},{"id":"CHEBI:16480","l":"nitric oxide","na":1,"nb":43,"a":[["ecology/biofilm_formation.html","biofilm formation"]],"b":[["EC%3A1.14.12.17","nitric oxide dioxygenase"],["EC%3A1.14.13.39","nitric-oxide synthase (NADPH)"],["EC%3A1.14.14.47","nitric-oxide synthase (flavodoxin)"],["EC%3A1.14.15.41","L-tryptophan 4-nitrase"],["EC%3A1.14.15.42","L-tyrosine 3-nitrase"],["EC%3A1.7.1.14","nitric oxide reductase [NAD(P)(+), nitrous oxide-forming]"]]},{"id":"GO:0045271","l":"respiratory chain complex I","na":1,"nb":43,"a":[["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"]],"b":[["ComplexPortal%3ACPX-266","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-577","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-8628","Mitochondrial respiratory chain complex I"],["ComplexPortal%3ACPX-8638","Mitochondrial respiratory chain complex I, testis-specific variant"],["ComplexPortal%3ACPX-243","Respiratory chain complex I"],["GO%3A0045271","respiratory chain complex I"]]},{"id":"CHEBI:29036","l":"copper(2+)","na":1,"nb":40,"a":[["environment/copper_tolerant.html","copper tolerant"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_29036","requires copper(2+)"],["EC%3A1.1.9.1","alcohol dehydrogenase (azurin)"],["EC%3A1.16.3.4","cuproxidase"],["EC%3A1.17.9.1","4-methylphenol dehydrogenase (hydroxylating)"],["EC%3A1.17.9.2","(+)-pinoresinol hydroxylase"],["EC%3A1.20.9.1","arsenate reductase (azurin)"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima MSB8","na":1,"nb":39,"a":[["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"]],"b":[["Pfam%3APF02829","3H domain"],["Pfam%3APF13175","AAA ATPase domain"],["Pfam%3APF01958","Aspartate dehydrogenase, C-terminal"],["Pfam%3APF05448","Acetyl xylan esterase (AXE1)"],["Pfam%3APF04509","CheC-like family"],["Pfam%3APF13690","Chemotaxis phosphatase CheX"]]},{"id":"CHEBI:17272","l":"propionate","na":1,"nb":34,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["EC%3A1.3.1.125","acrylate reductase"],["EC%3A2.7.2.15","propionate kinase"],["EC%3A2.8.3.1","propionate CoA-transferase"],["EC%3A2.8.3.27","propanoyl-CoA:succinate CoA transferase"],["EC%3A4.1.3.32","2,3-dimethylmalate lyase"],["EC%3A6.2.1.13","acetate--CoA ligase (ADP-forming)"]]},{"id":"GO:0003674","l":"molecular_function","na":1,"nb":34,"a":[["upper/biological_process.html","biological process"]],"b":[["GO%3A0016209","antioxidant activity"],["GO%3A0140657","ATP-dependent activity"],["GO%3A0005488","binding"],["GO%3A0038024","cargo receptor activity"],["GO%3A0003824","catalytic activity"],["GO%3A0003774","cytoskeletal motor activity"]]},{"id":"CHEBI:17968","l":"butyrate","na":1,"nb":33,"a":[["ecology/gut_associated.html","gut-associated"]],"b":[["EC%3A1.3.1.31","2-enoate reductase"],["EC%3A2.3.1.315","succinyl-CoA:cyclohexane-1-carboxylate CoA transferase"],["EC%3A2.7.2.7","butyrate kinase"],["EC%3A2.8.3.9","butyrate--acetoacetate CoA-transferase"],["EC%3A3.1.1.51","phorbol-diester hydrolase"],["EC%3A3.7.1.7","beta-diketone hydrolase"]]},{"id":"GO:0009522","l":"photosystem I","na":1,"nb":33,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"]],"b":[["GO%3A0030093","chloroplast photosystem I"],["GO%3A0009522","photosystem I"],["GO%3A0030094","plasma membrane-derived photosystem I"],["NCBIfam%3ANF014449","photosystem I assembly protein Ycf4"],["NCBIfam%3ATIGR01336","photosystem I core protein PsaB"],["NCBIfam%3ANF014578","photosystem I reaction center subunit II"]]},{"id":"CHEBI:29748","l":"","na":1,"nb":30,"a":[["morphology/green_pigmented.html","green pigmented"]],"b":[["EC%3A2.6.1.123","4-amino-4-deoxychorismate synthase (2-amino-4-deoxychorismate-forming)"],["EC%3A2.6.1.85","aminodeoxychorismate synthase"],["EC%3A2.6.1.86","2-amino-4-deoxychorismate synthase"],["EC%3A3.3.2.13","chorismatase"],["EC%3A4.1.3.27","anthranilate synthase"],["EC%3A4.1.3.40","chorismate lyase"]]},{"id":"CHEBI:24636","l":"","na":1,"nb":28,"a":[["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"]],"b":[["TCDB%3A3.A.4","The Arsenite-Antimonite (ArsAB) Efflux Family"],["TCDB%3A2.A.61","The C4-dicarboxylate Uptake C (DcuC) Family"],["TCDB%3A2.A.106","The Ca2+:H+ Antiporter-2 (CaCA2) Family"],["TCDB%3A1.A.110","The Channel-forming Otopetrin (OTOP) Family"],["TCDB%3A9.A.14","The G-protein-coupled receptor (GPCR) Family"],["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"]]},{"id":"GO:0004565","l":"beta-galactosidase activity","na":1,"nb":28,"a":[["physiology/beta_galactosidase_activity.html","beta-galactosidase activity"]],"b":[["EC%3A3.2.1.23","beta-galactosidase"],["GO%3A0004565","beta-galactosidase activity"],["GO%3A0033943","galactan 1,3-beta-galactosidase activity"],["NCBIfam%3ANF041004","beta-galactosidase BgaS"],["NCBIfam%3ANF041462","beta-galactosidase GalA"],["NCBIfam%3ANF041463","beta-galactosidase GalB"]]},{"id":"GO:0046148","l":"pigment biosynthetic process","na":1,"nb":27,"a":[["morphology/pigmentation.html","pigmentation"]],"b":[["GO%3A0120577","1,2-dehydro-N-acetyldopamine biosynthetic process"],["GO%3A0120576","1,2-dehydro-N-beta-alanyldopamine biosynthetic process"],["GO%3A0009718","anthocyanin-containing compound biosynthetic process"],["GO%3A0051551","aurone biosynthetic process"],["GO%3A0016117","carotenoid biosynthetic process"],["GO%3A0015995","chlorophyll biosynthetic process"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. PCC 7120 = FACHB-418","na":1,"nb":26,"a":[["morphology/heterocyst.html","heterocyst"]],"b":[["Pfam%3APF27270","Alr1449"],["Pfam%3APF27301","Alr2735 N-terminal domain"],["Pfam%3APF27288","Alr2735"],["Pfam%3APF21571","Arginine dihydrolase ArgZ-like, C-terminal, first region"],["Pfam%3APF21570","Arginine dihydrolase ArgZ-like, C-terminal, Rossmann fold"],["Pfam%3APF13205","Bacterial Ig-like domain"]]},{"id":"GO:0000910","l":"cytokinesis","na":1,"nb":24,"a":[["morphology/cell_length.html","cell length"]],"b":[["ComplexPortal%3ACPX-24856","GNAI1-RGS14, Gi-signalling regulatory complex"],["GO%3A0061639","Cdv-dependent cytokinesis"],["GO%3A0000911","cytokinesis by cell plate formation"],["GO%3A0000910","cytokinesis"],["GO%3A0061640","cytoskeleton-dependent cytokinesis"],["GO%3A0043093","FtsZ-dependent cytokinesis"]]},{"id":"GO:0006783","l":"heme biosynthetic process","na":1,"nb":24,"a":[["physiology/catalase_activity.html","catalase activity"]],"b":[["ComplexPortal%3ACPX-8302","ABCB10-ABCB7-FECH ABC transporter"],["GO%3A0006784","heme A biosynthetic process"],["GO%3A0006785","heme B biosynthetic process"],["GO%3A0006783","heme biosynthetic process"],["GO%3A0006786","heme C biosynthetic process"],["GO%3A0048034","heme O biosynthetic process"]]},{"id":"GO:0031412","l":"gas vesicle organization","na":1,"nb":24,"a":[["morphology/gas_vesicle.html","gas vesicle"]],"b":[["GO%3A0031412","gas vesicle organization"],["NCBIfam%3ANF041667","gas vesicle accessory protein GvpU"],["NCBIfam%3ANF046092","gas vesicle protein GvpA"],["NCBIfam%3ANF052351","gas vesicle protein GvpF"],["NCBIfam%3ANF045779","gas vesicle protein GvpG"],["NCBIfam%3ANF046090","gas vesicle protein GvpJ"]]},{"id":"CHEBI:24996","l":"lactate","na":1,"nb":23,"a":[["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]],"b":[["EC%3A1.1.1.436","lactate dehydrogenase (NAD(+),ferredoxin)"],["EC%3A3.5.1.124","protein deglycase"],["RHEA%3A57300","an N(2)-(1-hydroxy-2-oxopropyl)-2'-deoxyguanosine in DNA + H2O = a 2'-deoxyguanosine in DNA + lactate + H(+)"],["RHEA%3A57288","an N(2)-(1-hydroxy-2-oxopropyl)-guanosine in RNA + H2O = a guanosine in RNA + lactate + H(+)"],["RHEA%3A46964","lactate + 2 reduced [2Fe-2S]-[ferredoxin] + 2 NAD(+) = 2 oxidized [2Fe-2S]-[ferredoxin] + pyruvate + 2 NADH"],["RHEA%3A57244","N(2)-(1-hydroxy-2-oxopropyl)-dGTP + H2O = lactate + dGTP + H(+)"]]},{"id":"CHEBI:29242","l":"","na":1,"nb":23,"a":[["environment/arsenic_tolerant.html","arsenic tolerant"]],"b":[["EC%3A1.20.2.1","arsenate reductase (cytochrome c)"],["EC%3A1.20.4.1","arsenate reductase (glutathione/glutaredoxin)"],["EC%3A1.20.4.3","mycoredoxin"],["EC%3A1.20.4.4","arsenate reductase (thioredoxin)"],["EC%3A1.20.9.1","arsenate reductase (azurin)"],["EC%3A1.20.99.1","arsenate reductase (donor)"]]},{"id":"GO:0004563","l":"beta-N-acetylhexosaminidase activity","na":1,"nb":23,"a":[["physiology/beta_n_acetylhexosaminidase_activity.html","beta-N-acetylhexosaminidase activity"]],"b":[["EC%3A3.2.1.52","beta-N-acetylhexosaminidase"],["ComplexPortal%3ACPX-502","Beta-hexosaminidase A complex"],["ComplexPortal%3ACPX-689","Beta-hexosaminidase A complex"],["ComplexPortal%3ACPX-686","Beta-hexosaminidase B complex"],["ComplexPortal%3ACPX-690","Beta-hexosaminidase B complex"],["ComplexPortal%3ACPX-687","Beta-hexosaminidase S complex"]]},{"id":"GO:0008843","l":"endochitinase activity","na":1,"nb":23,"a":[["metabolism/biopolymer_degradation.html","biopolymer degradation"]],"b":[["EC%3A3.2.1.14","chitinase"],["GO%3A0008843","endochitinase activity"],["MCSA%3A819","chitinase C"],["MCSA%3A478","chitinase (GH18, Class II)"],["MCSA%3A817","chitinase (GH18, class II)"],["MCSA%3A475","chitinase (GH19, Class II)"]]},{"id":"GO:0009847","l":"spore germination","na":1,"nb":23,"a":[["physiology/spore_germination.html","spore germination"]],"b":[["GO%3A0120164","conidium germination"],["GO%3A0075226","encysted zoospore germination"],["GO%3A0009847","spore germination"],["proteintraitsmech%3ASEED_SUBSYSTEM_Spore_germination","Spore germination"],["NCBIfam%3ATIGR00912","endospore germination permease"],["NCBIfam%3ATIGR02887","Ger(x)C family spore germination protein"]]},{"id":"NCBITaxon:266834","l":"Sinorhizobium meliloti 1021","na":1,"nb":23,"a":[["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"]],"b":[["Pfam%3APF13279","Thioesterase-like superfamily"],["Pfam%3APF26956","ACR family N-terminal ACT domain"],["Pfam%3APF27143","Atu0565 family"],["Pfam%3APF27488","BioS helical-like domain"],["Pfam%3APF05853","beta-keto acid cleavage enzyme"],["Pfam%3APF13746","4Fe-4S dicluster domain"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":1,"nb":23,"a":[["ecology/biosafety_level_3.html","biosafety level 3"]],"b":[["Pfam%3APF09255","Caf1 Capsule antigen"],["Pfam%3APF02611","CDP-diacylglycerol pyrophosphatase"],["Pfam%3APF07411","Domain of unknown function (DUF1508)"],["Pfam%3APF05171","Haemin-degrading HemS.ChuX domain"],["Pfam%3APF21500","DNA polymerase III subunit delta', AAA+ ATPase lid domain"],["Pfam%3APF11004","3-deoxy-D-manno-oct-2-ulosonic acid (Kdo) hydroxylase"]]},{"id":"CHEBI:27547","l":"zeaxanthin","na":1,"nb":22,"a":[["morphology/orange_pigmented.html","orange pigmented"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_27547","requires zeaxanthin"],["EC%3A1.13.11.65","carotenoid isomerooxygenase"],["EC%3A1.13.11.84","crocetin dialdehyde synthase"],["EC%3A1.14.15.21","zeaxanthin epoxidase"],["EC%3A1.14.15.24","beta-carotene 3-hydroxylase"],["EC%3A1.14.99.64","zeaxanthin 4-ketolase"]]},{"id":"GO:0003341","l":"cilium movement","na":1,"nb":21,"a":[["ecology/soil_dwelling.html","soil-dwelling"]],"b":[["ComplexPortal%3ACPX-8086","Nexin-dynein regulatory complex"],["ComplexPortal%3ACPX-2626","Outer dynein arm-docking complex"],["ComplexPortal%3ACPX-8161","Radial spoke complex, ciliiar variant"],["ComplexPortal%3ACPX-8163","Radial spoke complex, ciliiar variant"],["ComplexPortal%3ACPX-8162","Radial spoke complex, flagellar variant"],["GO%3A0003341","cilium movement"]]},{"id":"NCBITaxon:243230","l":"Deinococcus radiodurans R1 = ATCC 13939 = DSM 20539","na":1,"nb":21,"a":[["environment/radiotolerant.html","radiotolerant"]],"b":[["Pfam%3APF07282","Cas12f1-like, TNB domain"],["Pfam%3APF26517","DNA damage response protein D family"],["Pfam%3APF07733","Bacterial DNA polymerase III alpha NTPase domain"],["Pfam%3APF17657","Bacterial DNA polymerase III alpha subunit finger domain"],["Pfam%3APF11638","DnaA N-terminal domain"],["Pfam%3APF09348","Domain of unknown function (DUF1990)"]]},{"id":"CHEBI:18420","l":"","na":1,"nb":20,"a":[["morphology/cell_width_small.html","cell width small"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_18420","requires magnesium(2+)"],["EC%3A4.99.1.10","magnesium dechelatase"],["EC%3A6.6.1.1","magnesium chelatase"],["EC%3A7.2.2.14","P-type Mg(2+) transporter"],["RHEA%3A52788","chlorophyll a + 2 H(+) = pheophytin a + Mg(2+)"],["RHEA%3A52792","chlorophyllide a + 2 H(+) = pheophorbide a + Mg(2+)"]]},{"id":"GO:0000725","l":"recombinational repair","na":1,"nb":20,"a":[["genomics/ploidy.html","ploidy"]],"b":[["ComplexPortal%3ACPX-2197","Exodeoxyribonuclease V complex"],["ComplexPortal%3ACPX-1732","Ku70:Ku80 complex"],["ComplexPortal%3ACPX-1993","Ku70:Ku80 complex"],["ComplexPortal%3ACPX-2047","Ku70:Ku80 complex"],["ComplexPortal%3ACPX-2048","Ku70:Ku80 complex"],["ComplexPortal%3ACPX-5124","RuvAB Holliday junction DNA helicase complex"]]},{"id":"GO:0003989","l":"acetyl-CoA carboxylase activity","na":1,"nb":20,"a":[["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"]],"b":[["EC%3A6.4.1.2","acetyl-CoA carboxylase"],["RHEA%3A11308","hydrogencarbonate + acetyl-CoA + ATP = malonyl-CoA + ADP + phosphate + H(+)"],["ComplexPortal%3ACPX-3206","Acetyl-CoA carboxylase complex"],["GO%3A0003989","acetyl-CoA carboxylase activity"],["NCBIfam%3ANF015228","Acetyl co-enzyme A carboxylase carboxyltransferase-like"],["NCBIfam%3ATIGR00531","acetyl-CoA carboxylase biotin carboxyl carrier protein"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":1,"nb":20,"a":[["morphology/s_layer.html","S-layer"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF27529","AMPT"],["Pfam%3APF24856","L-arabinose isomerase central domain"],["Pfam%3APF02610","L-arabinose isomerase N-terminal domain"],["Pfam%3APF11762","L-arabinose isomerase C-terminal domain"],["Pfam%3APF17727","CtsR C-terminal dimerization domain"]]},{"id":"CHEBI:17057","l":"cellobiose","na":1,"nb":19,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["EC%3A1.1.3.5","hexose oxidase"],["EC%3A1.1.99.18","cellobiose dehydrogenase (acceptor)"],["EC%3A2.4.1.20","cellobiose phosphorylase"],["EC%3A2.7.1.205","protein-N(pi)-phosphohistidine--D-cellobiose phosphotransferase"],["EC%3A2.7.1.85","beta-glucoside kinase"],["EC%3A5.1.3.11","cellobiose epimerase"]]},{"id":"GO:0003993","l":"acid phosphatase activity","na":1,"nb":19,"a":[["physiology/acid_phosphatase_activity.html","acid phosphatase activity"]],"b":[["EC%3A3.1.3.2","acid phosphatase"],["ComplexPortal%3ACPX-120","Prostatic acid phosphatase complex"],["ComplexPortal%3ACPX-121","Prostatic acid phosphatase complex"],["GO%3A0003993","acid phosphatase activity"],["NCBIfam%3ATIGR01672","acid phosphatase AphA"],["NCBIfam%3ANF045654","acid phosphatase PhoC"]]},{"id":"GO:0004559","l":"alpha-mannosidase activity","na":1,"nb":19,"a":[["physiology/alpha_mannosidase_activity.html","alpha-mannosidase activity"]],"b":[["EC%3A3.2.1.24","alpha-mannosidase"],["GO%3A0004559","alpha-mannosidase activity"],["GO%3A0004569","glycoprotein endo-alpha-1,2-mannosidase activity"],["GO%3A0033915","mannan 1,2-(1,3)-alpha-mannosidase activity"],["GO%3A0008496","mannan endo-1,6-alpha-mannosidase activity"],["GO%3A0033941","mannan exo-1,2-1,6-alpha-mannosidase activity"]]},{"id":"GO:0008150","l":"biological_process","na":1,"nb":19,"a":[["upper/biological_process.html","biological process"]],"b":[["GO%3A0044848","biological phase"],["GO%3A0008150","biological_process"],["GO%3A0044419","biological process involved in interspecies interaction between organisms"],["GO%3A0051703","biological process involved in intraspecies interaction between organisms"],["GO%3A0065007","biological regulation"],["GO%3A0009987","cellular process"]]},{"id":"GO:0019290","l":"siderophore biosynthetic process","na":1,"nb":19,"a":[["physiology/siderophore_production.html","siderophore production"]],"b":[["GO%3A0140614","1,8-dihydroxynaphthalene-melanin biosynthetic process"],["GO%3A0042861","achromobactin biosynthetic process"],["GO%3A0019540","catechol-containing siderophore biosynthetic process"],["GO%3A0042858","chrysobactin biosynthetic process"],["GO%3A0019539","hydroxymate-containing siderophore biosynthetic process"],["GO%3A0042864","pyochelin biosynthetic process"]]},{"id":"GO:0043885","l":"anaerobic carbon-monoxide dehydrogenase activity","na":1,"nb":19,"a":[["physiology/carboxydotrophic.html","carboxydotrophic"]],"b":[["EC%3A1.2.7.4","anaerobic carbon-monoxide dehydrogenase"],["RHEA%3A21040","CO + 2 oxidized [2Fe-2S]-[ferredoxin] + H2O = 2 reduced [2Fe-2S]-[ferredoxin] + CO2 + 2 H(+)"],["GO%3A0043885","anaerobic carbon-monoxide dehydrogenase activity"],["NCBIfam%3ATIGR02416","aerobic carbon-monoxide dehydrogenase large subunit"],["NCBIfam%3ATIGR01702","anaerobic carbon-monoxide dehydrogenase catalytic subunit"],["NCBIfam%3ATIGR00314","CO dehydrogenase/acetyl-CoA synthase complex subunit alpha"]]},{"id":"GO:0045277","l":"respiratory chain complex IV","na":1,"nb":19,"a":[["physiology/oxidase_activity.html","oxidase activity"]],"b":[["ComplexPortal%3ACPX-1721","Mitochondrial respiratory chain complex IV, COX5A variant"],["ComplexPortal%3ACPX-1722","Mitochondrial respiratory chain complex IV, COX5B variant"],["ComplexPortal%3ACPX-6123","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-8620","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-9641","Mitochondrial respiratory chain complex IV"],["ComplexPortal%3ACPX-8621","Mitochondrial respiratory chain complex IV, testis-specific variant"]]},{"id":"GO:0045493","l":"xylan catabolic process","na":1,"nb":19,"a":[["metabolism/xylan_degradation.html","xylan degradation"]],"b":[["GO%3A2000888","arabinoxylan-containing compound catabolic process"],["GO%3A2000886","glucuronoxylan catabolic process"],["GO%3A0045493","xylan catabolic process"],["NCBIfam%3ANF042968","acetylxylan esterase AxeA1"],["NCBIfam%3ANF041579","beta-xylosidase"],["NCBIfam%3ANF042969","bifunctional acetylxylan esterase/glucomannan deacetylase AxeC2"]]},{"id":"CHEBI:16838","l":"polyphosphate","na":1,"nb":18,"a":[["environment/zinc_tolerant.html","zinc tolerant"]],"b":[["EC%3A2.7.1.63","polyphosphate--glucose phosphotransferase"],["EC%3A2.7.4.1","ATP-polyphosphate phosphotransferase"],["EC%3A2.7.4.17","3-phosphoglyceroyl-phosphate--polyphosphate phosphotransferase"],["EC%3A2.7.4.20","dolichyl-diphosphate--polyphosphate phosphotransferase"],["EC%3A2.7.4.33","AMP-polyphosphate phosphotransferase"],["EC%3A2.7.4.34","GDP-polyphosphate phosphotransferase"]]},{"id":"CHEBI:16169","l":"","na":1,"nb":17,"a":[["morphology/pigmentation.html","pigmentation"]],"b":[["EC%3A1.13.11.27","4-hydroxyphenylpyruvate dioxygenase"],["EC%3A1.13.11.5","homogentisate 1,2-dioxygenase"],["EC%3A1.14.13.18","4-hydroxyphenylacetate 1-monooxygenase"],["EC%3A1.14.13.63","3-hydroxyphenylacetate 6-hydroxylase"],["EC%3A2.5.1.115","homogentisate phytyltransferase"],["EC%3A2.5.1.116","homogentisate geranylgeranyltransferase"]]},{"id":"GO:0051701","l":"biological process involved in interaction with host","na":1,"nb":17,"a":[["ecology/plant_pathogen.html","plant pathogen"]],"b":[["GO%3A0044002","acquisition of nutrients from host"],["GO%3A0044406","adhesion of symbiont to host"],["GO%3A0051701","biological process involved in interaction with host"],["GO%3A0035891","exit from host cell"],["GO%3A0044001","migration in host"],["GO%3A0075136","response to host"]]},{"id":"GO:0106435","l":"carboxylesterase activity","na":1,"nb":17,"a":[["physiology/carboxylesterase_activity.html","carboxylesterase activity"]],"b":[["EC%3A3.1.1.1","carboxylesterase"],["RHEA%3A63052","1-O-methyl-(5Z,8Z,11Z,14Z)-eicosatetraenoate + H2O = methanol + (5Z,8Z,11Z,14Z)-eicosatetraenoate + H(+)"],["RHEA%3A21164","a carboxylic ester + H2O = an alcohol + a carboxylate + H(+)"],["RHEA%3A59388","a fatty acid ester + H2O = an aliphatic alcohol + a fatty acid + H(+)"],["RHEA%3A50148","a fatty acid ethyl ester + H2O = ethanol + a fatty acid + H(+)"],["RHEA%3A31779","an all-trans-retinyl ester + H2O = 13-cis-retinol + a fatty acid + H(+)"]]},{"id":"GO:0110143","l":"magnetosome","na":1,"nb":17,"a":[["morphology/magnetosome.html","magnetosome"]],"b":[["GO%3A0110143","magnetosome"],["NCBIfam%3ANF040997","liposome tubulation protein MamY"],["NCBIfam%3ANF040917","magnetic particle specific iron-binding protein Mms6"],["NCBIfam%3ANF040986","magnetosome biogenesis transporter MamH"],["NCBIfam%3ANF040989","magnetosome biogenesis transporter MamN"],["NCBIfam%3ANF040998","magnetosome biogenesis transporter MamZ"]]},{"id":"UniProt:P35149","l":"","na":1,"nb":17,"a":[["morphology/spore_shaped.html","spore shaped"]],"b":[["EC%3A3.6.1.-","In phosphorus-containing anhydrides"],["GO%3A0043595","endospore cortex"],["GO%3A0042601","endospore-forming forespore"],["GO%3A0031160","spore wall"],["GO%3A0000270","peptidoglycan metabolic process"],["GO%3A0009847","spore germination"]]},{"id":"CHEBI:48828","l":"cobalt(2+)","na":1,"nb":16,"a":[["environment/cobalt_tolerant.html","cobalt tolerant"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_48828","requires cobalt(2+)"],["EC%3A1.16.99.1","[Co(II) methylated amine-specific corrinoid protein] reductase"],["EC%3A4.99.1.3","sirohydrochlorin cobaltochelatase"],["EC%3A6.6.1.2","cobaltochelatase"],["RHEA%3A65832","2 Co(II)-[dimethylamine-specific corrinoid protein] + AH2 + ATP + H2O = 2 Co(I)-[dimethylamine-specific corrinoid protein] + A + ADP + phosphate + 3 H(+)"],["RHEA%3A65816","2 Co(II)-[methylamine-specific corrinoid protein] + AH2 + ATP + H2O = 2 Co(I)-[methylamine-specific corrinoid protein] + A + ADP + phosphate + 3 H(+)"]]},{"id":"GO:0004556","l":"alpha-amylase activity","na":1,"nb":16,"a":[["metabolism/starch_degradation.html","starch degradation"]],"b":[["EC%3A3.2.1.1","alpha-amylase"],["GO%3A0004556","alpha-amylase activity"],["NCBIfam%3ANF041321","alpha-amylase MalA"],["NCBIfam%3ANF006971","alpha-amylase"],["NCBIfam%3ANF007051","alpha-amylase"],["NCBIfam%3ANF007052","alpha-amylase"]]},{"id":"GO:0004566","l":"beta-glucuronidase activity","na":1,"nb":16,"a":[["physiology/beta_glucuronidase_activity.html","beta-glucuronidase activity"]],"b":[["EC%3A3.2.1.31","beta-glucuronidase"],["RHEA%3A76111","4-methylumbelliferone beta-D-glucuronate + H2O = 4-methylumbelliferone + D-glucuronate"],["RHEA%3A17633","a beta-D-glucuronoside + H2O = D-glucuronate + an alcohol"],["RHEA%3A30475","oroxylin A 7-O-beta-D-glucuronate + H2O = oroxylin A + D-glucuronate + H(+)"],["RHEA%3A28326","wogonin 7-O-beta-D-glucuronate + H2O = wogonin + D-glucuronate + H(+)"],["GO%3A0004566","beta-glucuronidase activity"]]},{"id":"InterPro:IPR002105","l":"Dockerin type I repeat","na":1,"nb":16,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["Pfam%3APF03425","Carbohydrate binding domain (family 11)"],["Pfam%3APF17996","Carbohydrate esterase 2 N-terminal"],["Pfam%3APF02927","Cellulase N-terminal ig-like domain"],["Pfam%3APF00963","Cohesin domain"],["Pfam%3APF00404","Dockerin type I domain"],["Pfam%3APF07554","FIVAR domain"]]},{"id":"GO:0045273","l":"respiratory chain complex II (succinate dehydrogenase)","na":1,"nb":15,"a":[["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"]],"b":[["ComplexPortal%3ACPX-561","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-562","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-564","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-565","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-566","Mitochondrial respiratory chain complex II"],["ComplexPortal%3ACPX-8622","Mitochondrial respiratory chain complex II"]]},{"id":"GO:0045490","l":"pectin catabolic process","na":1,"nb":15,"a":[["metabolism/pectin_degradation.html","pectin degradation"]],"b":[["GO%3A0045490","pectin catabolic process"],["NCBIfam%3ANF002091","5-dehydro-4-deoxy-D-glucuronate isomerase"],["NCBIfam%3ANF025934","oligogalacturonate lyase family protein"],["NCBIfam%3ANF041904","pectate disaccharide-lyase PelW"],["NCBIfam%3ANF041903","pectate disaccharide-lyase PelX"],["NCBIfam%3ANF041898","pectate lyase PelI"]]},{"id":"InterPro:IPR028629","l":"","na":1,"nb":15,"a":[["genomics/crispr_cas_system.html","CRISPR-Cas system"]],"b":[["Pfam%3APF18470","Cas9 alpha-helical lobe domain"],["Pfam%3APF17893","CRISPR-associated endonuclease Cas9 beta-hairpin domain"],["Pfam%3APF18525","Cas9 C-terminal domain"],["Pfam%3APF21574","CRISPR-associated endonuclease Cas9, C-terminal domain"],["Pfam%3APF16595","PAM-interacting domain of CRISPR-associated endonuclease Cas9"],["Pfam%3APF18070","CRISPR-Cas9 PI domain"]]},{"id":"METPO:1000802","l":"Anaerobic respiration","na":15,"nb":1,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/arsenate_respiration.html","arsenate respiration"],["metabolism/chlorate_respiration.html","chlorate respiration"],["metabolism/dimethyl_sulfoxide_respiration.html","dimethyl sulfoxide respiration"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"]],"b":[["METPO%3A1000802","Anaerobic respiration"]]},{"id":"METPO:1002005","l":"Fermentation","na":15,"nb":1,"a":[["metabolism/acetone_butanol_ethanol_fermentation.html","acetone-butanol-ethanol fermentation"],["metabolism/butanediol_fermentation.html","2,3-butanediol fermentation"],["metabolism/butyric_acid_fermentation.html","butyric acid fermentation"],["metabolism/citrate_fermentation.html","citrate fermentation"],["metabolism/ethanol_fermentation.html","ethanol fermentation"],["metabolism/fermentation.html","Fermentation"]],"b":[["METPO%3A1002005","Fermentation"]]},{"id":"UniProt:P09373","l":"","na":1,"nb":15,"a":[["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"]],"b":[["EC%3A2.3.1.54","formate C-acetyltransferase"],["RHEA%3A11844","formate + acetyl-CoA = pyruvate + CoA"],["GO%3A0008861","formate C-acetyltransferase activity"],["NCBIfam%3ATIGR01255","formate C-acetyltransferase"],["InterPro%3AIPR019777","Formate C-acetyltransferase glycine radical, conserved site"],["CDD%3Acd01678","PFL1"]]},{"id":"GO:0004629","l":"C-type glycerophospholipase activity","na":1,"nb":14,"a":[["physiology/lecithinase_activity.html","lecithinase activity"]],"b":[["GO%3A0004629","C-type glycerophospholipase activity"],["GO%3A0140335","GPI anchor phospholipase C activity"],["GO%3A0140324","lysophospholipase C activity"],["GO%3A0034480","phosphatidylcholine phospholipase C activity"],["GO%3A0034479","phosphatidylglycerol phospholipase C activity"],["GO%3A0004435","phosphatidylinositol-4,5-bisphosphate phospholipase C activity"]]},{"id":"GO:0009408","l":"response to heat","na":1,"nb":14,"a":[["physiology/heat_shock_response.html","heat shock response"]],"b":[["ComplexPortal%3ACPX-4887","DNA-directed RNA polymerase holoenzyme complex, SigmaH variant"],["ComplexPortal%3ACPX-636","ISW1b chromatin remodeling complex"],["GO%3A0034605","cellular response to heat"],["GO%3A0036168","filamentous growth of a population of unicellular organisms in response to heat"],["GO%3A0010286","heat acclimation"],["GO%3A0009408","response to heat"]]},{"id":"GO:0015891","l":"siderophore transport","na":1,"nb":14,"a":[["physiology/siderophore_production.html","siderophore production"]],"b":[["GO%3A0042935","achromobactin transport"],["GO%3A0042932","chrysobactin transport"],["GO%3A0042930","enterobactin transport"],["GO%3A0044718","siderophore transmembrane transport"],["GO%3A0015891","siderophore transport"],["NCBIfam%3ANF007349","catecholate siderophore receptor Fiu"]]},{"id":"GO:0090599","l":"alpha-glucosidase activity","na":1,"nb":14,"a":[["physiology/alpha_glucosidase_activity.html","alpha-glucosidase activity"]],"b":[["GO%3A0004558","alpha-1,4-glucosidase activity"],["GO%3A0090599","alpha-glucosidase activity"],["GO%3A0004135","amylo-alpha-1,6-glucosidase activity"],["GO%3A0033933","branched-dextran exo-1,2-alpha-glucosidase activity"],["GO%3A0106407","Glc2Man9GlcNAc2 oligosaccharide glucosidase activity"],["GO%3A0004573","Glc3Man9GlcNAc2 oligosaccharide glucosidase activity"]]},{"id":"UniProt:Q58256","l":"","na":1,"nb":14,"a":[["metabolism/methanogenesis.html","Methanogenesis"]],"b":[["GO%3A0050524","coenzyme-B sulfoethylthiotransferase activity"],["GO%3A0015948","methanogenesis"],["NCBIfam%3ATIGR03256","coenzyme-B sulfoethylthiotransferase subunit alpha"],["InterPro%3AIPR009047","Methyl-coenzyme M reductase, alpha subunit, C-terminal"],["InterPro%3AIPR003183","Methyl-coenzyme M reductase, alpha subunit, N-terminal"],["Pfam%3APF02745","Methyl-coenzyme M reductase alpha subunit, N-terminal domain"]]},{"id":"GO:0004781","l":"sulfate adenylyltransferase (ATP) activity","na":1,"nb":13,"a":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["EC%3A2.7.7.4","sulfate adenylyltransferase"],["RHEA%3A18133","sulfate + ATP + H(+) = adenosine 5'-phosphosulfate + diphosphate"],["ComplexPortal%3ACPX-4471","Sulfate adenylyltransferase complex"],["GO%3A0004781","sulfate adenylyltransferase (ATP) activity"],["NCBIfam%3ATIGR02034","sulfate adenylyltransferase, large subunit"],["NCBIfam%3ATIGR02039","sulfate adenylyltransferase, small subunit"]]},{"id":"GO:0016859","l":"cis-trans isomerase activity","na":1,"nb":13,"a":[["environment/temperature_delta_high.html","temperature delta high"]],"b":[["GO%3A0047466","2-chloro-4-carboxymethylenebut-2-en-1,4-olide isomerase activity"],["GO%3A0090471","9,15,9'-tri-cis-zeta-carotene isomerase activity"],["GO%3A0106365","beta-carotene isomerase activity"],["GO%3A0046608","carotenoid isomerase activity"],["GO%3A0016859","cis-trans isomerase activity"],["GO%3A0047885","farnesol 2-isomerase activity"]]},{"id":"GO:0120253","l":"hydrocarbon catabolic process","na":1,"nb":13,"a":[["metabolism/hydrocarbon_degradation.html","hydrocarbon degradation"]],"b":[["GO%3A0043448","alkane catabolic process"],["GO%3A0043451","alkene catabolic process"],["GO%3A0043454","alkyne catabolic process"],["GO%3A1900996","benzene catabolic process"],["GO%3A0018915","ethylbenzene catabolic process"],["GO%3A0019429","fluorene catabolic process"]]},{"id":"InterPro:IPR000673","l":"Signal transduction response regulator, chemotaxis, protein-glutamate methylesterase","na":1,"nb":13,"a":[["physiology/chemotaxis.html","chemotaxis"]],"b":[["GO%3A1990827","deaminase binding"],["GO%3A0008984","protein-glutamate methylesterase activity"],["GO%3A0050568","protein-glutamine glutaminase activity"],["GO%3A0006482","protein demethylation"],["NCBIfam%3ANF001965","chemotaxis-specific protein-glutamate methyltransferase CheB"],["NCBIfam%3ANF009206","chemotaxis-specific protein-glutamate methyltransferase CheB"]]},{"id":"UniProt:P0A7G6","l":"","na":1,"nb":13,"a":[["physiology/sos_response.html","SOS response"]],"b":[["ComplexPortal%3ACPX-5544","DNA polymerase V mutasome complex"],["GO%3A0140664","ATP-dependent DNA damage sensor activity"],["NCBIfam%3ATIGR02012","recombinase RecA"],["InterPro%3AIPR020584","DNA recombination/repair protein RecA, conserved site"],["CDD%3Acd00983","RecA"],["InterPro%3AIPR020587","DNA recombination and repair protein RecA, monomer-monomer interface"]]},{"id":"GO:0004536","l":"DNA nuclease activity","na":1,"nb":12,"a":[["physiology/dnase_activity.html","DNase activity"]],"b":[["GO%3A0004520","DNA endonuclease activity"],["GO%3A0004529","DNA exonuclease activity"],["GO%3A0004536","DNA nuclease activity"],["NCBIfam%3ANF053575","GINS-associated RecJ family nuclease"],["NCBIfam%3ANF053577","Hef-associated nuclease"],["NCBIfam%3ANF053576","RecJ family nuclease"]]},{"id":"GO:0008964","l":"phosphoenolpyruvate carboxylase activity","na":1,"nb":12,"a":[["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"]],"b":[["EC%3A4.1.1.31","phosphoenolpyruvate carboxylase"],["RHEA%3A28370","oxaloacetate + phosphate = phosphoenolpyruvate + hydrogencarbonate"],["GO%3A0008964","phosphoenolpyruvate carboxylase activity"],["NCBIfam%3ANF000584","phosphoenolpyruvate carboxylase"],["NCBIfam%3ANF012532","phosphoenolpyruvate carboxylase"],["NCBIfam%3ANF025376","phosphoenolpyruvate carboxylase"]]},{"id":"GO:0009512","l":"cytochrome b6f complex","na":1,"nb":12,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"]],"b":[["GO%3A0009512","cytochrome b6f complex"],["NCBIfam%3ANF014576","cytochrome b6-f complex subunit PetG"],["NCBIfam%3ANF016971","cytochrome b6-f complex subunit PetL"],["NCBIfam%3ANF015687","cytochrome b6-f complex subunit PetN"],["NCBIfam%3ANF050003","cytochrome b6f subunit PetP"],["NCBIfam%3ANF019653","PetM family cytochrome b6-f complex subunit 7"]]},{"id":"GO:0045275","l":"respiratory chain complex III","na":1,"nb":12,"a":[["physiology/organoheterotrophic.html","organoheterotrophic"]],"b":[["ComplexPortal%3ACPX-560","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-563","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-567","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-8730","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-9308","Mitochondrial respiratory chain complex III"],["ComplexPortal%3ACPX-8737","Mitochondrial respiratory chain complex III, testis-specific variant"]]},{"id":"InterPro:IPR000780","l":"MCP methyltransferase, CheR-type","na":1,"nb":12,"a":[["physiology/chemotaxis.html","chemotaxis"]],"b":[["GO%3A0098561","methyl accepting chemotaxis protein complex"],["GO%3A0008983","protein-glutamate O-methyltransferase activity"],["NCBIfam%3ANF007902","protein-glutamate O-methyltransferase CheR"],["InterPro%3AIPR022641","Chemotaxis receptor methyltransferase CheR, N-terminal"],["InterPro%3AIPR000780","MCP methyltransferase, CheR-type"],["InterPro%3AIPR022642","MCP methyltransferase, CheR-type, SAM-binding domain, C-terminal"]]},{"id":"UniProt:P04949","l":"","na":1,"nb":12,"a":[["morphology/flagellated.html","flagellated"]],"b":[["InterPro%3AIPR049365","Flagellin, barrel domain"],["InterPro%3AIPR046358","Flagellin, C-terminal domain"],["InterPro%3AIPR014981","Flagellin D3"],["InterPro%3AIPR001029","Flagellin, N-terminal domain"],["Pfam%3APF08884","Flagellin D3 domain"],["Pfam%3APF21504","Flagellin, barrel domain"]]},{"id":"UniProt:P23874","l":"","na":1,"nb":12,"a":[["physiology/persister_cell_formation.html","persister cell formation"]],"b":[["ComplexPortal%3ACPX-180","HipBA toxin-antitoxin complex"],["GO%3A0001217","DNA-binding transcription repressor activity"],["GO%3A0022611","dormancy process"],["GO%3A0036289","peptidyl-serine autophosphorylation"],["GO%3A0040008","regulation of growth"],["GO%3A0044010","single-species biofilm formation"]]},{"id":"CHEBI:16510","l":"","na":1,"nb":11,"a":[["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"]],"b":[["EC%3A1.1.1.298","3-hydroxypropionate dehydrogenase (NADP(+))"],["EC%3A1.1.1.59","3-hydroxypropionate dehydrogenase"],["EC%3A6.2.1.36","3-hydroxypropionyl-CoA synthase"],["RHEA%3A59432","3-hydroxypropanal + NAD(+) + H2O = 3-hydroxypropanoate + NADH + 2 H(+)"],["RHEA%3A59428","3-hydroxypropanal + NADP(+) + H2O = 3-hydroxypropanoate + NADPH + 2 H(+)"],["RHEA%3A67136","3-hydroxypropanoate + ATP + CoA = 3-hydroxypropanoyl-CoA + ADP + phosphate"]]},{"id":"CHEBI:16724","l":"4-hydroxybutyrate","na":1,"nb":11,"a":[["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]],"b":[["EC%3A1.1.1.61","4-hydroxybutyrate dehydrogenase"],["EC%3A1.1.1.n11","succinic semialdehyde reductase"],["EC%3A1.1.99.24","hydroxyacid-oxoacid transhydrogenase"],["EC%3A6.2.1.40","4-hydroxybutyrate--CoA ligase (AMP-forming)"],["EC%3A6.2.1.56","4-hydroxybutyrate--CoA ligase (ADP-forming)"],["RHEA%3A24734","4-hydroxybutanoate + 2-oxoglutarate = (R)-2-hydroxyglutarate + succinate semialdehyde"]]},{"id":"GO:0004737","l":"pyruvate decarboxylase activity","na":1,"nb":11,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"]],"b":[["EC%3A4.1.1.1","pyruvate decarboxylase"],["RHEA%3A55072","2-oxobutanoate + H(+) = propanal + CO2"],["RHEA%3A50312","2-oxopentanoate + H(+) = butanal + CO2"],["RHEA%3A54356","3-methyl-2-oxobutanoate + H(+) = 2-methylpropanal + CO2"],["RHEA%3A54360","4-methyl-2-oxopentanoate + H(+) = 3-methylbutanal + CO2"],["RHEA%3A11628","a 2-oxocarboxylate + H(+) = an aldehyde + CO2"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":1,"nb":11,"a":[["ecology/opportunistic_pathogen.html","opportunistic pathogen"]],"b":[["Pfam%3APF22829","HphA C-terminal domain"],["Pfam%3APF22828","HphA N-terminal heme-binding domain"],["Pfam%3APF28205","Ciprofloxacin tolerance protein"],["Pfam%3APF19582","Solute-binding protein AdeT 1/2"],["PROSITE%3APS00337","Beta-lactamase class-D active site"],["Pfam%3APF24575","Surface lipoprotein assembly modifier, N-terminal TPR repeats"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":1,"nb":11,"a":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["IDPO%3A0000031","flexible C-terminal tail"],["Pfam%3APF02085","Class III cytochrome C family"],["Pfam%3APF06397","Desulfoferrodoxin, N-terminal domain"],["Pfam%3APF01880","Desulfoferrodoxin"],["Pfam%3APF12797","4Fe-4S binding domain"],["Pfam%3APF06180","Cobalt chelatase (CbiK)"]]},{"id":"UniProt:P0A7C2","l":"","na":1,"nb":11,"a":[["physiology/sos_response.html","SOS response"]],"b":[["NCBIfam%3ATIGR00498","transcriptional repressor LexA"],["proteintraitsmech%3AMEROPS_CLEAVAGE_S24_001","repressor LexA cleavage specificity"],["CDD%3Acd06529","S24_LexA-like"],["InterPro%3AIPR039418","LexA-like"],["InterPro%3AIPR006199","LexA repressor, DNA-binding domain"],["InterPro%3AIPR015927","Peptidase S24/S26A/S26B/S26C"]]},{"id":"UniProt:P0AEK4","l":"","na":1,"nb":11,"a":[["physiology/homeoviscous_adaptation.html","homeoviscous adaptation"]],"b":[["GO%3A1902494","catalytic complex"],["GO%3A0004318","enoyl-[acyl-carrier-protein] reductase (NADH) activity"],["GO%3A0070404","NADH binding"],["GO%3A0009102","biotin biosynthetic process"],["GO%3A0030497","fatty acid elongation"],["GO%3A0008610","lipid biosynthetic process"]]},{"id":"GO:0004557","l":"alpha-galactosidase activity","na":1,"nb":10,"a":[["physiology/alpha_galactosidase_activity.html","alpha-galactosidase activity"]],"b":[["EC%3A3.2.1.22","alpha-galactosidase"],["RHEA%3A21112","a globoside Gb3Cer (d18:1(4E)) + H2O = a beta-D-Gal-(1->4)-beta-D-Glc-(1<->1)-Cer(d18:1(4E)) + D-galactose"],["RHEA%3A28663","melibiose + H2O = D-galactose + D-glucose"],["GO%3A0004557","alpha-galactosidase activity"],["GO%3A0052692","raffinose alpha-galactosidase activity"],["NCBIfam%3ANF053652","beta-L-arabinopyranosidase"]]},{"id":"GO:0008218","l":"bioluminescence","na":1,"nb":10,"a":[["physiology/bioluminescence.html","bioluminescence"]],"b":[["GO%3A0008218","bioluminescence"],["NCBIfam%3ANF052253","fatty acid reductase transferase subunit LuxD"],["NCBIfam%3ANF052244","long-chain-fatty-acid--protein ligase LuxE"],["NCBIfam%3ANF052254","luciferase subunit alpha"],["NCBIfam%3ANF052255","luciferase subunit beta"],["InterPro%3AIPR007534","Acyl-protein synthetase, LuxE"]]},{"id":"GO:0030313","l":"cell envelope","na":1,"nb":10,"a":[["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"]],"b":[["GO%3A0030313","cell envelope"],["PANTHER%3APTHR39576","ATTACHING AND EFFACING PROTEIN HOMOLOG-RELATED-RELATED"],["PANTHER%3APTHR38762","CRYPTIC OUTER MEMBRANE PORIN BGLH-RELATED"],["PANTHER%3APTHR41164","CURLI PRODUCTION ASSEMBLY/TRANSPORT COMPONENT CSGG"],["PANTHER%3APTHR30036","D-XYLOSE-BINDING PERIPLASMIC PROTEIN"],["PANTHER%3APTHR30532","IRON III DICITRATE-BINDING PERIPLASMIC PROTEIN"]]},{"id":"GO:0035434","l":"copper ion transmembrane transport","na":1,"nb":10,"a":[["environment/copper_tolerant.html","copper tolerant"]],"b":[["ComplexPortal%3ACPX-2254","Cus cation efflux complex"],["GO%3A0140636","copper import into the mitochondrion"],["GO%3A0140145","copper ion export from vacuole"],["GO%3A0060003","copper ion export"],["GO%3A0097430","copper ion import across prospore membrane"],["GO%3A7770057","copper ion import into Golgi lumen"]]},{"id":"GO:0046274","l":"lignin catabolic process","na":1,"nb":10,"a":[["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["GO%3A1990487","anaerobic lignin catabolic process"],["GO%3A1901062","guaiacyl lignin catabolic process"],["GO%3A0046274","lignin catabolic process"],["GO%3A1901059","p-hydroxyphenyl lignin catabolic process"],["GO%3A1901065","syringal lignin catabolic process"],["NCBIfam%3ANF042997","beta-etherase"]]},{"id":"NCBITaxon:192222","l":"Campylobacter jejuni subsp. jejuni NCTC 11168 = ATCC 700819","na":1,"nb":10,"a":[["environment/capnophilic.html","capnophilic"]],"b":[["Pfam%3APF26365","Apolipoprotein N-acyltransferase integral membrane domain"],["Pfam%3APF22131","CRISPR-associated endonuclease CjCas9 PI-CTD domain"],["Pfam%3APF22129","CRISPR-associated endonuclease CjCas9 wedge domain"],["Pfam%3APF02554","Carbon starvation protein CstA"],["Pfam%3APF27310","HrcA C-terminal domain"],["Pfam%3APF05538","Campylobacter major outer membrane protein"]]},{"id":"NCBITaxon:224911","l":"Bradyrhizobium diazoefficiens USDA 110","na":1,"nb":10,"a":[["morphology/subpolar_flagellation.html","subpolar flagellation"]],"b":[["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["Pfam%3APF14715","N-terminal domain of cytochrome oxidase-cbb3, FixP"],["Pfam%3APF03886","ABC-type transport auxiliary lipoprotein component"],["Pfam%3APF10649","Protein of unknown function (DUF2478)"],["Pfam%3APF01924","Hydrogenase formation hypA family"],["PROSITE%3APS00882","Nickel-dependent hydrogenases b-type cytochrome subunit signature 1"]]},{"id":"UniProt:P06534","l":"","na":1,"nb":10,"a":[["morphology/spore_forming.html","spore forming"]],"b":[["GO%3A0090529","cell septum assembly"],["GO%3A0051606","detection of stimulus"],["GO%3A0000160","phosphorelay signal transduction system"],["GO%3A0045881","positive regulation of sporulation resulting in formation of a cellular spore"],["GO%3A0090606","single-species surface biofilm formation"],["NCBIfam%3ATIGR02875","sporulation transcription factor Spo0A"]]},{"id":"UniProt:P0A9X9","l":"","na":1,"nb":10,"a":[["physiology/cold_shock_response.html","cold shock response"]],"b":[["GO%3A0001072","transcription antitermination factor activity, RNA binding"],["GO%3A0060567","negative regulation of termination of DNA-templated transcription"],["NCBIfam%3ANF007679","RNA chaperone/antiterminator CspA"],["NCBIfam%3ANF049933","transcription antiterminator/RNA stability regulator CspE"],["InterPro%3AIPR019844","Cold-shock domain, conserved site"],["CDD%3Acd04458","CSP_CDS"]]},{"id":"CHEBI:17234","l":"glucose","na":9,"nb":1,"a":[["ecology/saprotrophy.html","saprotrophy"],["metabolism/biopolymer_degradation.html","biopolymer degradation"],["metabolism/cellulolysis.html","cellulolysis"],["metabolism/does_not_use_as_carbon_source.html","does not use as carbon source"],["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"],["metabolism/starch_degradation.html","starch degradation"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:48775","l":"cadmium(2+)","na":1,"nb":9,"a":[["environment/cadmium_tolerant.html","cadmium tolerant"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_48775","requires cadmium(2+)"],["EC%3A7.2.2.2","ABC-type Cd(2+) transporter"],["EC%3A7.2.2.21","Cd(2+)-exporting ATPase"],["RHEA%3A12132","Cd(2+)(in) + ATP + H2O = Cd(2+)(out) + ADP + phosphate + H(+)"],["RHEA%3A28707","Cd(2+)(in) = Cd(2+)(out)"],["RHEA%3A28739","Cd(2+)(in) + H(+)(out) = Cd(2+)(out) + H(+)(in)"]]},{"id":"GO:0004324","l":"ferredoxin-NADP+ reductase activity","na":1,"nb":9,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"]],"b":[["EC%3A1.18.1.2","ferredoxin--NADP(+) reductase"],["RHEA%3A20125","2 reduced [2Fe-2S]-[ferredoxin] + NADP(+) + H(+) = 2 oxidized [2Fe-2S]-[ferredoxin] + NADPH"],["GO%3A0004324","ferredoxin-NADP+ reductase activity"],["NCBIfam%3ANF008178","ferredoxin--NADP(+) reductase"],["NCBIfam%3ANF045929","ferredoxin--NADP reductase"],["MCSA%3A142","ferredoxin-NADP+ reductase (adrenodoxin-type)"]]},{"id":"GO:0004560","l":"alpha-L-fucosidase activity","na":1,"nb":9,"a":[["physiology/alpha_fucosidase_activity.html","alpha-fucosidase activity"]],"b":[["EC%3A3.2.1.51","alpha-L-fucosidase"],["RHEA%3A12288","an alpha-L-fucoside + H2O = L-fucose + an alcohol"],["GO%3A0047513","1,2-alpha-L-fucosidase activity"],["GO%3A0033932","1,3-alpha-L-fucosidase activity"],["GO%3A0033938","1,6-alpha-L-fucosidase activity"],["GO%3A0004560","alpha-L-fucosidase activity"]]},{"id":"GO:0004568","l":"chitinase activity","na":1,"nb":9,"a":[["metabolism/chitinolysis.html","chitinolysis"]],"b":[["GO%3A0004568","chitinase activity"],["GO%3A0008843","endochitinase activity"],["GO%3A0035885","exochitinase activity"],["InterPro%3AIPR013540","Chitinase A N-terminal"],["InterPro%3AIPR000726","Glycoside hydrolase, family 19, catalytic"],["NCBIfam%3ANF019930","chitinase N-terminal domain-containing protein"]]},{"id":"GO:0004586","l":"ornithine decarboxylase activity","na":1,"nb":9,"a":[["physiology/ornithine_decarboxylase_activity.html","ornithine decarboxylase activity"]],"b":[["EC%3A4.1.1.17","ornithine decarboxylase"],["RHEA%3A22964","L-ornithine + H(+) = putrescine + CO2"],["GO%3A0004586","ornithine decarboxylase activity"],["NCBIfam%3ATIGR04301","ornithine decarboxylase SpeF"],["MCSA%3A860","ornithine decarboxylase"],["MCSA%3A937","ornithine decarboxylase"]]},{"id":"GO:0006097","l":"glyoxylate cycle","na":1,"nb":9,"a":[["physiology/heterotrophic.html","heterotrophic"]],"b":[["GO%3A0006097","glyoxylate cycle"],["proteintraitsmech%3ASEED_SUBSYSTEM_Glyoxylate_bypass","Glyoxylate bypass"],["NCBIfam%3ATIGR02924","isocitrate dehydrogenase"],["NCBIfam%3ATIGR01344","malate synthase A"],["NCBIfam%3ANF041315","malate synthase AceB"],["NCBIfam%3ANF002825","malate synthase G"]]},{"id":"GO:0009423","l":"chorismate biosynthetic process","na":1,"nb":9,"a":[["morphology/pigmentation.html","pigmentation"]],"b":[["GO%3A0009423","chorismate biosynthetic process"],["proteintraitsmech%3ASEED_SUBSYSTEM_Chorismate_Synthesis","Chorismate Synthesis"],["NCBIfam%3ATIGR01357","3-dehydroquinate synthase"],["NCBIfam%3ATIGR01358","class II 3-deoxy-7-phosphoheptulonate synthase"],["NCBIfam%3ATIGR01920","shikimate kinase"],["NCBIfam%3ATIGR01088","type II 3-dehydroquinate dehydratase"]]},{"id":"GO:0030152","l":"bacteriocin biosynthetic process","na":1,"nb":9,"a":[["physiology/bacteriocin_production.html","bacteriocin production"]],"b":[["GO%3A0030152","bacteriocin biosynthetic process"],["NCBIfam%3ATIGR04067","Apre_1838 family putative sactipeptide bacteriocin"],["NCBIfam%3ATIGR04065","CLI_3235 family bacteriocin precursor"],["NCBIfam%3ATIGR04068","Cys-rich peptide radical SAM maturase CcpM"],["NCBIfam%3ATIGR04064","nif11-like peptide radical SAM maturase"],["NCBIfam%3ATIGR01295","PedC/BrcD family bacteriocin maturation disulfide isomerase"]]},{"id":"GO:0050421","l":"nitrite reductase (NO-forming) activity","na":1,"nb":9,"a":[["metabolism/denitrification.html","denitrification"]],"b":[["EC%3A1.7.2.1","nitrite reductase (NO-forming)"],["RHEA%3A15233","nitric oxide + Fe(III)-[cytochrome c] + H2O = Fe(II)-[cytochrome c] + nitrite + 2 H(+)"],["GO%3A0050421","nitrite reductase (NO-forming) activity"],["NCBIfam%3ATIGR02376","copper-containing nitrite reductase"],["MCSA%3A4","nitrite reductase (copper type)"],["MCSA%3A903","nitrite reductase (cytochrome cd1 type)"]]},{"id":"GO:0052716","l":"hydroquinone:oxygen oxidoreductase activity","na":1,"nb":9,"a":[["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["EC%3A1.10.3.2","laccase"],["RHEA%3A11276","4 hydroquinone + O2 = 4 benzosemiquinone + 2 H2O"],["GO%3A0052716","hydroquinone:oxygen oxidoreductase activity"],["MCSA%3A390","laccase"],["proteintraitsmech%3ABIOLIP_3DM","3DM-binding site"],["proteintraitsmech%3ABIOLIP_D2M","D2M-binding site"]]},{"id":"InterPro:IPR004090","l":"","na":1,"nb":9,"a":[["physiology/chemotaxis.html","chemotaxis"]],"b":[["Pfam%3APF05227","CHASE3 domain"],["Pfam%3APF02743","Cache domain"],["Pfam%3APF08269","Cache domain"],["Pfam%3APF18947","HAMP domain"],["Pfam%3APF18575","HAMP N-terminal domain 3"],["Pfam%3APF17909","Htr2 transmembrane domain"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":9,"a":[["morphology/motility.html","motility"]],"b":[["IDPO%3A0000011","disorder to order"],["Pfam%3APF25869","CusB, three alpha-helical bundle domain"],["Pfam%3APF25954","CusB-like, beta-barrel domain"],["Pfam%3APF13438","Domain of unknown function (DUF4113)"],["Pfam%3APF03767","HAD superfamily, subfamily IIIB (Acid phosphatase)"],["Pfam%3APF03496","ADP-ribosyltransferase exoenzyme"]]},{"id":"UniProt:P09424","l":"","na":1,"nb":9,"a":[["physiology/chemoheterotrophic.html","chemoheterotrophic"]],"b":[["GO%3A0008926","mannitol-1-phosphate 5-dehydrogenase activity"],["GO%3A0019592","mannitol catabolic process"],["NCBIfam%3ANF002646","mannitol-1-phosphate 5-dehydrogenase"],["NCBIfam%3ANF002647","mannitol-1-phosphate 5-dehydrogenase"],["NCBIfam%3ANF002648","mannitol-1-phosphate 5-dehydrogenase"],["NCBIfam%3ANF002650","mannitol-1-phosphate 5-dehydrogenase"]]},{"id":"UniProt:P21458","l":"","na":1,"nb":9,"a":[["morphology/sporulation.html","sporulation"]],"b":[["CDD%3Acd01127","TrwB_TraG_TraD_VirD4"],["InterPro%3AIPR041027","FtsK alpha domain"],["InterPro%3AIPR002543","FtsK domain"],["InterPro%3AIPR018541","FtsK gamma domain"],["Pfam%3APF17854","FtsK alpha domain"],["Pfam%3APF09397","Ftsk gamma domain"]]},{"id":"CHEBI:17029","l":"chitin","na":1,"nb":8,"a":[["metabolism/chitinolysis.html","chitinolysis"]],"b":[["EC%3A2.4.1.16","chitin synthase"],["EC%3A3.5.1.41","chitin deacetylase"],["RHEA%3A85463","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-1)-N-acetyl-alpha-D-glucosamine"],["RHEA%3A50672","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n-2) + N,N'-diacetylchitobiose"],["RHEA%3A85003","[(1->4)-N-acetyl-beta-D-glucosaminyl](n)-N-acetyl-alpha-D-glucosamine + H2O = [(1->4)-N-acetyl-beta-D-glucosaminyl](n) + N-acetyl-alpha-D-glucosamine"],["RHEA%3A10464","[(1->4)-N-acetyl-beta-D-glucosaminyl](n) + n H2O = chitosan + n acetate"]]},{"id":"GO:0003868","l":"4-hydroxyphenylpyruvate dioxygenase activity","na":1,"nb":8,"a":[["morphology/brown_pigmented.html","brown pigmented"]],"b":[["EC%3A1.13.11.27","4-hydroxyphenylpyruvate dioxygenase"],["RHEA%3A16189","3-(4-hydroxyphenyl)pyruvate + O2 = homogentisate + CO2"],["GO%3A0003868","4-hydroxyphenylpyruvate dioxygenase activity"],["NCBIfam%3ATIGR01263","4-hydroxyphenylpyruvate dioxygenase"],["proteintraitsmech%3ABIOLIP_869","869-binding site"],["proteintraitsmech%3ABIOLIP_AIY","AIY-binding site"]]},{"id":"GO:0006572","l":"L-tyrosine catabolic process","na":1,"nb":8,"a":[["morphology/brown_pigmented.html","brown pigmented"]],"b":[["GO%3A0006572","L-tyrosine catabolic process"],["Reactome%3AR-HSA-8963684","Tyrosine catabolism"],["NCBIfam%3ATIGR01263","4-hydroxyphenylpyruvate dioxygenase"],["NCBIfam%3ATIGR01266","fumarylacetoacetase"],["NCBIfam%3ATIGR01015","homogentisate 1,2-dioxygenase"],["NCBIfam%3ATIGR01262","maleylacetoacetate isomerase"]]},{"id":"GO:0008936","l":"nicotinamidase activity","na":1,"nb":8,"a":[["physiology/pyrazinamidase_activity.html","pyrazinamidase activity"]],"b":[["EC%3A3.5.1.19","nicotinamidase"],["RHEA%3A14545","nicotinamide + H2O = nicotinate + NH4(+)"],["GO%3A0008936","nicotinamidase activity"],["ARO%3A3004267","antibiotic resistant pncA"],["ARO%3A3003394","Mycobacterium tuberculosis pncA mutations conferring resistance to pyrazinamide"],["ARO%3A3003418","Pyrazinamide resistant pncA"]]},{"id":"GO:0009303","l":"rRNA transcription","na":1,"nb":8,"a":[["genomics/rrna_operon_copy_number.html","rRNA operon copy number"]],"b":[["GO%3A0042791","5S class rRNA transcription by RNA polymerase III"],["GO%3A0042790","nucleolar large rRNA transcription by RNA polymerase I"],["GO%3A0042794","plastid rRNA transcription"],["GO%3A0009303","rRNA transcription"],["PANTHER%3APTHR14440","DNA-DIRECTED RNA POLYMERASE I SUBUNIT RPA49"],["PANTHER%3APTHR10535","DNA-DIRECTED RNA POLYMERASES I, II, AND III SUBUNIT RPABC1"]]},{"id":"GO:0016049","l":"cell growth","na":1,"nb":8,"a":[["metabolism/metabolism.html","metabolism"]],"b":[["GO%3A0051211","anisotropic cell growth"],["GO%3A0016049","cell growth"],["GO%3A0048588","developmental cell growth"],["GO%3A0051210","isotropic cell growth"],["GO%3A0009825","multidimensional cell growth"],["GO%3A0007124","pseudohyphal growth"]]},{"id":"GO:0036374","l":"glutathione gamma-glutamate hydrolase","na":1,"nb":8,"a":[["physiology/gamma_glutamyltransferase_activity.html","gamma-glutamyltransferase activity"]],"b":[["EC%3A3.4.19.13","glutathione gamma-glutamate hydrolase"],["RHEA%3A28807","glutathione + H2O = L-cysteinylglycine + L-glutamate"],["ComplexPortal%3ACPX-325","Glutathione hydrolase complex"],["GO%3A0036374","glutathione gamma-glutamate hydrolase"],["NCBIfam%3ANF007187","gamma-glutamyltransferase"],["NCBIfam%3ATIGR00066","gamma-glutamyltransferase"]]},{"id":"GO:0042276","l":"error-prone translesion synthesis","na":1,"nb":8,"a":[["genomics/gc_content.html","GC content"]],"b":[["ComplexPortal%3ACPX-1091","DNA polymerase zeta complex"],["ComplexPortal%3ACPX-2426","DNA polymerase zeta complex"],["ComplexPortal%3ACPX-994","DNA polymerase zeta complex"],["GO%3A0042276","error-prone translesion synthesis"],["Reactome%3AR-HSA-5656121","Translesion synthesis by POLI"],["Reactome%3AR-HSA-5655862","Translesion synthesis by POLK"]]},{"id":"InterPro:IPR001492","l":"","na":1,"nb":8,"a":[["morphology/spirochete_shaped.html","spirochete shaped"]],"b":[["Pfam%3APF00700","Bacterial flagellin C-terminal helical region"],["Pfam%3APF08884","Flagellin D3 domain"],["Pfam%3APF21504","Flagellin, barrel domain"],["Pfam%3APF22370","Flagellin, beta sheet domain"],["PANTHER%3APTHR42792","FLAGELLIN"],["Pfam%3APF00669","Bacterial flagellin N-terminal helical region"]]},{"id":"InterPro:IPR050469","l":"","na":1,"nb":8,"a":[["ecology/biofilm_formation.html","biofilm formation"]],"b":[["Pfam%3APF17151","Periplasmic sensor domain"],["Pfam%3APF13682","Chemoreceptor zinc-binding domain"],["Pfam%3APF20975","DGC-associated coil"],["Pfam%3APF21118","DosC CZB-like middle domain"],["Pfam%3APF00990","Diguanylate cyclase, GGDEF domain"],["PANTHER%3APTHR45138","REGULATORY COMPONENTS OF SENSORY TRANSDUCTION SYSTEM"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":1,"nb":8,"a":[["other/catalase_negative.html","catalase negative"]],"b":[["Pfam%3APF01721","Class II bacteriocin"],["Pfam%3APF13700","Domain of unknown function (DUF4158)"],["Pfam%3APF07478","D-ala D-ala ligase C-terminus"],["Pfam%3APF01820","D-ala D-ala ligase N-terminus"],["PROSITE%3APS60030","Bacteriocin class IIa family signature"],["PROSITE%3APS00843","D-alanine--D-alanine ligase signature 1"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":8,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["Pfam%3APF02927","Cellulase N-terminal ig-like domain"],["Pfam%3APF00404","Dockerin type I domain"],["PROSITE%3APS00448","Clostridium cellulosome enzymes repeated domain signature"],["PROSITE%3APS60032","Glycosyl hydrolases family 9 (GH9) active site signature 1"],["PROSITE%3APS00592","Glycosyl hydrolases family 9 (GH9) active site signature 2"],["PROSITE%3APS00698","Glycosyl hydrolases family 9 (GH9) active site signature 3"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK 1622","na":1,"nb":8,"a":[["morphology/gliding.html","gliding"]],"b":[["Pfam%3APF27281","DevT C-terminal domain"],["Pfam%3APF27372","DevT N-terminal domain"],["Pfam%3APF17762","ParB HTH domain"],["Pfam%3APF01930","Domain of unknown function DUF83"],["Pfam%3APF09559","Cas6 Crispr"],["Pfam%3APF01905","CRISPR-associated negative auto-regulator DevR/Csa2"]]},{"id":"UniProt:P04189","l":"","na":1,"nb":8,"a":[["metabolism/proteolysis.html","proteolysis"]],"b":[["GO%3A0009274","peptidoglycan-based cell wall"],["GO%3A0004252","serine-type endopeptidase activity"],["GO%3A0009372","quorum sensing"],["GO%3A0140448","signaling receptor ligand precursor processing"],["InterPro%3AIPR023827","Peptidase S8, subtilisin, Asp-active site"],["InterPro%3AIPR022398","Peptidase S8, subtilisin, His-active site"]]},{"id":"UniProt:P0ABB4","l":"","na":8,"nb":1,"a":[["metabolism/metabolism.html","metabolism"],["metabolism/respiration.html","respiration"],["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"],["physiology/chemotrophic.html","chemotrophic"],["physiology/heterotrophic.html","heterotrophic"]],"b":[["ComplexPortal%3ACPX-4022","ATP synthase complex"]]},{"id":"CHEBI:17593","l":"","na":1,"nb":7,"a":[["metabolism/starch_degradation.html","starch degradation"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A1.B.64","The Brucella Omp2 Porin (B-Omp2) Family"],["TCDB%3A1.B.26","The Cyclodextrin Porin (CDP) Family"],["TCDB%3A2.A.2","The Glycoside-Pentoside-Hexuronide (GPH):Cation Symporter Family"],["TCDB%3A1.B.14","The Outer Membrane Receptor (OMR) Family"],["TCDB%3A1.B.3","The Sugar Porin (SP) Family"]]},{"id":"CHEBI:30087","l":"","na":1,"nb":7,"a":[["metabolism/sulfur_oxidation.html","sulfur oxidation"]],"b":[["EC%3A1.14.20.7","2-oxoglutarate/L-arginine monooxygenase/decarboxylase (succinate- forming)"],["RHEA%3A31527","5-hydroxy-L-arginine = guanidine + L-glutamate 5-semialdehyde"],["RHEA%3A79843","6-hydroxy-L-homoarginine = guanidine + (S)-2-amino-6-oxohexanoate"],["RHEA%3A79567","guanidine + H2O = urea + NH4(+)"],["RHEA%3A73883","guanidine(out) = guanidine(in)"],["RHEA%3A31535","L-arginine + 2-oxoglutarate + O2 = guanidine + L-glutamate 5-semialdehyde + succinate + CO2"]]},{"id":"GO:0004411","l":"homogentisate 1,2-dioxygenase activity","na":1,"nb":7,"a":[["morphology/brown_pigmented.html","brown pigmented"]],"b":[["EC%3A1.13.11.5","homogentisate 1,2-dioxygenase"],["RHEA%3A15449","homogentisate + O2 = 4-maleylacetoacetate + H(+)"],["GO%3A0004411","homogentisate 1,2-dioxygenase activity"],["NCBIfam%3ATIGR01015","homogentisate 1,2-dioxygenase"],["NCBIfam%3ANF016125","homogentisate 1,2-dioxygenase domain-containing protein"],["MCSA%3A547","homogentisate 1,2-dioxygenase"]]},{"id":"GO:0004658","l":"propionyl-CoA carboxylase activity","na":1,"nb":7,"a":[["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"]],"b":[["EC%3A6.4.1.3","propionyl-CoA carboxylase"],["RHEA%3A23720","propanoyl-CoA + hydrogencarbonate + ATP = (S)-methylmalonyl-CoA + ADP + phosphate + H(+)"],["ComplexPortal%3ACPX-6169","Mitochondrial propionyl-CoA carboxylase complex"],["GO%3A0004658","propionyl-CoA carboxylase activity"],["NCBIfam%3ANF025192","acyl-CoA carboxylase epsilon subunit"],["Pfam%3APF13822","Acyl-CoA carboxylase epsilon subunit"]]},{"id":"GO:0008804","l":"carbamate kinase activity","na":1,"nb":7,"a":[["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["EC%3A2.7.2.2","carbamate kinase"],["RHEA%3A10152","hydrogencarbonate + NH4(+) + ATP = carbamoyl phosphate + ADP + H2O + H(+)"],["GO%3A0008804","carbamate kinase activity"],["NCBIfam%3ANF006926","carbamate kinase"],["NCBIfam%3ATIGR00746","carbamate kinase"],["MCSA%3A669","carbamate kinase"]]},{"id":"GO:0009424","l":"bacterial-type flagellum hook","na":1,"nb":7,"a":[["morphology/flagellated.html","flagellated"]],"b":[["GO%3A0009424","bacterial-type flagellum hook"],["NCBIfam%3ATIGR02492","flagellar hook-associated protein FlgK"],["NCBIfam%3ATIGR02550","flagellar hook-associated protein FlgL"],["NCBIfam%3ANF007514","flagellar hook length control protein FliK"],["InterPro%3AIPR003481","Flagellar hook-associated protein 2, N-terminal"],["NCBIfam%3ANF014518","flagellar cap protein FliD N-terminal domain-containing protein"]]},{"id":"GO:0009973","l":"adenylyl-sulfate reductase activity","na":1,"nb":7,"a":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["EC%3A1.8.99.2","adenylyl-sulfate reductase"],["RHEA%3A24240","sulfite + A + AMP + 2 H(+) = adenosine 5'-phosphosulfate + AH2"],["GO%3A0009973","adenylyl-sulfate reductase activity"],["NCBIfam%3ATIGR02061","adenylyl-sulfate reductase subunit alpha"],["NCBIfam%3ATIGR02060","adenylyl-sulfate reductase subunit beta"],["NCBIfam%3ATIGR02055","adenylylsulfate reductase, thioredoxin dependent"]]},{"id":"GO:0019420","l":"dissimilatory sulfate reduction","na":1,"nb":7,"a":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["GO%3A0019420","dissimilatory sulfate reduction"],["NCBIfam%3ATIGR02061","adenylyl-sulfate reductase subunit alpha"],["NCBIfam%3ATIGR02060","adenylyl-sulfate reductase subunit beta"],["NCBIfam%3ATIGR02066","dissimilatory-type sulfite reductase subunit beta"],["NCBIfam%3ANF045796","sulfate reduction electron transfer complex DsrMKJOP subunit DsrK"],["NCBIfam%3ANF045797","sulfate reduction electron transfer complex DsrMKJOP subunit DsrO"]]},{"id":"GO:0042744","l":"hydrogen peroxide catabolic process","na":1,"nb":7,"a":[["environment/aerotolerant.html","aerotolerant"]],"b":[["ComplexPortal%3ACPX-4862","Alkyl hydroperoxide reductase complex"],["ComplexPortal%3ACPX-4742","Catalase complex"],["ComplexPortal%3ACPX-4767","Catalase complex"],["ComplexPortal%3ACPX-4768","Catalase complex"],["GO%3A0033355","ascorbate glutathione cycle"],["GO%3A0042744","hydrogen peroxide catabolic process"]]},{"id":"InterPro:IPR018028","l":"","na":1,"nb":7,"a":[["physiology/catalase_activity.html","catalase activity"]],"b":[["Pfam%3APF18011","C-terminal domain found in long catalases"],["Pfam%3APF00199","Catalase"],["PANTHER%3APTHR11465","CATALASE"],["Pfam%3APF06628","Catalase-related immune-responsive"],["PRINTS%3APR00067","Catalase signature"],["PROSITE%3APS00437","Catalase proximal heme-ligand signature"]]},{"id":"InterPro:IPR045087","l":"","na":1,"nb":7,"a":[["metabolism/manganese_oxidation.html","manganese oxidation"]],"b":[["Pfam%3APF07731","Multicopper oxidase"],["Pfam%3APF07732","Multicopper oxidase"],["Pfam%3APF00394","Multicopper oxidase"],["PANTHER%3APTHR48267","CUPREDOXIN SUPERFAMILY PROTEIN"],["PANTHER%3APTHR11709","MULTI-COPPER OXIDASE"],["PROSITE%3APS00079","Multicopper oxidases signature 1"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":7,"nb":1,"a":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/copper_tolerant.html","copper tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["environment/metal_tolerant.html","metal tolerant"]],"b":[["TED%3AAF-A0A132HLN2-F1-model_v4_TED01","TED novel fold AF-A0A132HLN2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":1,"nb":7,"a":[["environment/microaerophilic.html","microaerophilic"]],"b":[["Pfam%3APF04439","Streptomycin adenylyltransferase"],["TED%3AAF-A0A696J2C3-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A696J2C3-F1-model_v4_TED01"],["TED%3AAF-A0A825M6H4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A825M6H4-F1-model_v4_TED01"],["TED%3AAF-A0A5T0SBG5-F1-model_v4_TED01","TED novel fold AF-A0A5T0SBG5-F1-model_v4_TED01"],["TED%3AAF-A0A698JVM3-F1-model_v4_TED03","TED novel fold AF-A0A698JVM3-F1-model_v4_TED03"],["TED%3AAF-A0A824N1N8-F1-model_v4_TED01","TED novel fold AF-A0A824N1N8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:264203","l":"Zymomonas mobilis subsp. mobilis ZM4 = ATCC 31821","na":1,"nb":7,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"]],"b":[["Pfam%3APF13590","Domain of unknown function (DUF4136)"],["Pfam%3APF08436","1-deoxy-D-xylulose 5-phosphate reductoisomerase C-terminal domain"],["Pfam%3APF13288","DXP reductoisomerase C-terminal domain"],["Pfam%3APF02670","1-deoxy-D-xylulose 5-phosphate reductoisomerase"],["PROSITE%3APS01157","Class A bacterial acid phosphatases signature"],["PROSITE%3APS01320","Uncharacterized protein family UPF0067 signature"]]},{"id":"NCBITaxon:272623","l":"Lactococcus lactis subsp. lactis Il1403","na":1,"nb":7,"a":[["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]],"b":[["Pfam%3APF25935","LcnD-like, barrel-sandwich hybrid domain"],["Pfam%3APF27342","ComB N-terminal domain"],["Pfam%3APF06993","Protein of unknown function (DUF1304)"],["Pfam%3APF25887","LcnD-like, long helical bundle domain"],["Pfam%3APF13276","HTH-like domain"],["Pfam%3APF25940","LcnD-like, C-terminal domain"]]},{"id":"NCBITaxon:672","l":"Vibrio vulnificus","na":1,"nb":7,"a":[["physiology/viable_but_nonculturable_state.html","viable but nonculturable state"]],"b":[["Pfam%3APF03174","Chitobiase/beta-hexosaminidase C-terminal domain"],["Pfam%3APF08021","Siderophore-interacting FAD-binding domain"],["Pfam%3APF11575","FhuF 2Fe-2S C-terminal domain"],["Pfam%3APF27349","IcsB middle domain"],["Pfam%3APF21735","C-terminal repeat from RTX toxins"],["Pfam%3APF07634","RtxA repeat"]]},{"id":"NCBITaxon:837","l":"Porphyromonas gingivalis","na":1,"nb":7,"a":[["morphology/black_pigmented.html","black pigmented"]],"b":[["Pfam%3APF07675","Cleaved Adhesin Domain"],["Pfam%3APF22492","FimA4 pilin C-terminal domain"],["Pfam%3APF15495","Major fimbrial subunit protein type IV, Fimbrillin, C-terminal"],["Pfam%3APF26306","FimD protein third domain"],["Pfam%3APF27397","FimE C-terminal domain"],["Pfam%3APF10365","Domain of unknown function (DUF2436)"]]},{"id":"CHEBI:27592","l":"ectoine","na":6,"nb":1,"a":[["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/halophilic.html","halophilic"],["environment/nacl_delta_mid1.html","NaCl delta mid1"],["environment/nacl_optimum_mid2.html","NaCl optimum mid2"],["environment/nacl_range_mid2.html","NaCl range mid2"],["environment/slightly_halophilic.html","slightly halophilic"]],"b":[["proteintraitsmech%3ABIOLIP_4CS","4CS-binding site"]]},{"id":"CHEBI:29041","l":"","na":1,"nb":6,"a":[["metabolism/manganese_oxidation.html","manganese oxidation"]],"b":[["EC%3A1.11.1.13","manganese peroxidase"],["EC%3A1.11.1.16","versatile peroxidase"],["RHEA%3A22776","2 Mn(2+) + H2O2 + 2 H(+) = 2 Mn(3+) + 2 H2O"],["RHEA%3A52244","4 Mn(2+) + O2 + 4 H(+) = 4 Mn(3+) + 2 H2O"],["RHEA%3A52248","4 Mn(3+) + O2 + 6 H2O = 4 MnO2 + 12 H(+)"],["proteintraitsmech%3ABIOLIP_MN3","MN3-binding site"]]},{"id":"CHEBI:71578","l":"","na":6,"nb":1,"a":[["environment/nacl_delta_mid1.html","NaCl delta mid1"],["environment/nacl_delta_mid2.html","NaCl delta mid2"],["environment/nacl_optimum_low.html","NaCl optimum low"],["environment/nacl_range.html","NaCl range"],["environment/nacl_range_low.html","NaCl range low"],["environment/stenohaline.html","stenohaline"]],"b":[["proteintraitsmech%3ABIOLIP_2BA","2BA-binding site"]]},{"id":"GO:0009409","l":"response to cold","na":1,"nb":6,"a":[["physiology/cold_shock_response.html","cold shock response"]],"b":[["GO%3A0070417","cellular response to cold"],["GO%3A0009631","cold acclimation"],["GO%3A0009409","response to cold"],["GO%3A0050826","response to freezing"],["GO%3A0010048","vernalization response"],["NCBIfam%3ANF005952","kdo(2)-lipid IV(A) palmitoleoyltransferase"]]},{"id":"GO:0042279","l":"nitrite reductase (cytochrome, ammonia-forming) activity","na":1,"nb":6,"a":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]],"b":[["EC%3A1.7.2.2","nitrite reductase (cytochrome; ammonia-forming)"],["RHEA%3A13089","6 Fe(III)-[cytochrome c] + NH4(+) + 2 H2O = 6 Fe(II)-[cytochrome c] + nitrite + 8 H(+)"],["GO%3A0042279","nitrite reductase (cytochrome, ammonia-forming) activity"],["NCBIfam%3ANF014398","ammonia-forming cytochrome c nitrite reductase subunit c552"],["NCBIfam%3ATIGR03152","ammonia-forming nitrite reductase cytochrome c552 subunit"],["Pfam%3APF02335","Cytochrome c552"]]},{"id":"GO:0044409","l":"symbiont entry into host","na":1,"nb":6,"a":[["ecology/plant_pathogen.html","plant pathogen"]],"b":[["GO%3A0120326","appressorium-mediated entry into host"],["GO%3A0140717","entry into host through the stromata"],["GO%3A0035635","entry of bacterium into host cell"],["GO%3A0046718","symbiont entry into host cell"],["GO%3A0044409","symbiont entry into host"],["Reactome%3AR-HSA-173107","Binding and entry of HIV virion"]]},{"id":"METPO:1000845","l":"Acetogenesis","na":6,"nb":1,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"],["physiology/heterotrophic.html","heterotrophic"]],"b":[["METPO%3A1000845","Acetogenesis"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":1,"nb":6,"a":[["metabolism/starch_degradation.html","starch degradation"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["Pfam%3APF10779","Haemolysin XhlA"],["Pfam%3APF12730","ABC-2 family transporter protein"],["Pfam%3APF08181","DegQ (SacQ) family"],["Pfam%3APF08057","Erythromycin resistance leader peptide"],["Pfam%3APF14867","Lantibiotic alpha"]]},{"id":"NCBITaxon:272630","l":"Methylorubrum extorquens AM1","na":1,"nb":6,"a":[["physiology/methylotrophic.html","methylotrophic"]],"b":[["Pfam%3APF07726","ATPase family associated with various cellular activities (AAA)"],["Pfam%3APF02741","FTR, proximal lobe"],["Pfam%3APF01913","Formylmethanofuran-tetrahydromethanopterin formyltransferase"],["Pfam%3APF10677","Protein of unknown function (DUF2490)"],["Pfam%3APF08714","Formaldehyde-activating enzyme (Fae)"],["PROSITE%3APS00363","Bacterial quinoprotein dehydrogenases signature 1"]]},{"id":"NCBITaxon:316401","l":"Escherichia coli ETEC H10407","na":1,"nb":6,"a":[["other/indole_test_positive.html","indole test positive"]],"b":[["Pfam%3APF26759","AcfD helical domain"],["Pfam%3APF04449","CS1 type fimbrial major subunit"],["Pfam%3APF13322","Domain of unknown function (DUF4092)"],["PROSITE%3APS01141","Bacterial type II secretion system protein C signature"],["Pfam%3APF16168","Adhesin of bacterial autotransporter system, probable stalk"],["Pfam%3APF24078","PIC/HAP1/IgA0 second beta-solenoid repeat region"]]},{"id":"UniProt:P0A6Y8","l":"","na":1,"nb":6,"a":[["physiology/heat_shock_response.html","heat shock response"]],"b":[["GO%3A0016989","sigma factor antagonist activity"],["GO%3A0043335","protein unfolding"],["GO%3A1990169","stress response to copper ion"],["NCBIfam%3ANF003520","Fe-S protein assembly chaperone HscA"],["NCBIfam%3ATIGR02350","molecular chaperone DnaK"],["CDD%3Acd10234","ASKHA_NBD_HSP70_DnaK-like"]]},{"id":"CHEBI:26672","l":"siderophore","na":1,"nb":5,"a":[["physiology/siderophore_production.html","siderophore production"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_26672","siderophore cofactor class"],["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A1.B.17","The Outer Membrane Factor (OMF) Family"],["TCDB%3A2.A.6","The Resistance-Nodulation-Cell Division (RND) Superfamily"]]},{"id":"GO:0004035","l":"alkaline phosphatase activity","na":1,"nb":5,"a":[["physiology/alkaline_phosphatase_activity.html","alkaline phosphatase activity"]],"b":[["EC%3A3.1.3.1","alkaline phosphatase"],["GO%3A0004035","alkaline phosphatase activity"],["NCBIfam%3ANF042991","alkaline phosphatase PafA"],["NCBIfam%3ANF058638","alkaline phosphatase PhoD"],["MCSA%3A44","alkaline phosphatase"]]},{"id":"GO:0004309","l":"exopolyphosphatase activity","na":1,"nb":5,"a":[["morphology/polyphosphate_granule.html","polyphosphate granule"]],"b":[["EC%3A3.6.1.11","exopolyphosphatase"],["RHEA%3A21528","[phosphate](n) + H2O = [phosphate](n-1) + phosphate + H(+)"],["GO%3A0004309","exopolyphosphatase activity"],["NCBIfam%3ATIGR03706","exopolyphosphatase"],["InterPro%3AIPR022371","Exopolyphosphatase"]]},{"id":"GO:0004457","l":"lactate dehydrogenase activity","na":1,"nb":5,"a":[["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]],"b":[["GO%3A0047809","D-lactate dehydrogenase activity"],["GO%3A0140171","L-lactate dehydrogenase activity"],["GO%3A0004457","lactate dehydrogenase activity"],["NCBIfam%3ANF033901","FMN-dependent L-lactate dehydrogenase LldD"],["NCBIfam%3ANF045670","L-lactate dehydrogenase (quinone) large subunit LdhH"]]},{"id":"GO:0006829","l":"zinc ion transport","na":1,"nb":5,"a":[["environment/zinc_tolerant.html","zinc tolerant"]],"b":[["GO%3A0071577","zinc ion transmembrane transport"],["GO%3A0006829","zinc ion transport"],["NCBIfam%3ANF002923","CDF family zinc transporter ZitB"],["NCBIfam%3ANF007090","zinc ABC transporter ATP-binding protein ZnuC"],["NCBIfam%3ANF007091","zinc ABC transporter substrate-binding protein ZnuA"]]},{"id":"GO:0008861","l":"formate C-acetyltransferase activity","na":1,"nb":5,"a":[["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"]],"b":[["EC%3A2.3.1.54","formate C-acetyltransferase"],["RHEA%3A11844","formate + acetyl-CoA = pyruvate + CoA"],["GO%3A0008861","formate C-acetyltransferase activity"],["NCBIfam%3ATIGR01255","formate C-acetyltransferase"],["MCSA%3A30","formate C-acetyltransferase"]]},{"id":"GO:0016692","l":"NADH peroxidase activity","na":1,"nb":5,"a":[["environment/aerotolerant.html","aerotolerant"]],"b":[["EC%3A1.11.1.1","NADH peroxidase"],["RHEA%3A18509","H2O2 + NADH + H(+) = NAD(+) + 2 H2O"],["GO%3A0016692","NADH peroxidase activity"],["NCBIfam%3ANF045767","rubrerythrin"],["MCSA%3A895","NADH peroxidase"]]},{"id":"GO:0016920","l":"pyroglutamyl-peptidase activity","na":1,"nb":5,"a":[["physiology/pyrrolidonyl_arylamidase_activity.html","pyrrolidonyl arylamidase activity"]],"b":[["EC%3A3.4.19.3","pyroglutamyl-peptidase I"],["EC%3A3.4.19.6","pyroglutamyl-peptidase II"],["GO%3A0016920","pyroglutamyl-peptidase activity"],["NCBIfam%3ATIGR00504","pyroglutamyl-peptidase I"],["MCSA%3A633","pyroglutamyl-peptidase I"]]},{"id":"GO:0016990","l":"arginine deiminase activity","na":1,"nb":5,"a":[["physiology/arginine_dihydrolase_activity.html","arginine dihydrolase activity"]],"b":[["EC%3A3.5.3.6","arginine deiminase"],["RHEA%3A19597","L-arginine + H2O = L-citrulline + NH4(+)"],["GO%3A0016990","arginine deiminase activity"],["NCBIfam%3ANF002381","arginine deiminase"],["NCBIfam%3ATIGR01078","arginine deiminase"]]},{"id":"GO:0030420","l":"establishment of competence for transformation","na":1,"nb":5,"a":[["physiology/natural_competence.html","natural competence"]],"b":[["GO%3A0030420","establishment of competence for transformation"],["NCBIfam%3ANF008580","ComEC family protein"],["NCBIfam%3ANF040999","competence type IV pilus major pilin ComGC"],["NCBIfam%3ANF018087","competence protein ComK"],["Pfam%3APF06338","ComK protein"]]},{"id":"GO:0030634","l":"carbon fixation by acetyl-CoA pathway","na":5,"nb":1,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"],["physiology/autotrophic.html","autotrophic"]],"b":[["GO%3A0030634","carbon fixation by acetyl-CoA pathway"]]},{"id":"GO:0044096","l":"type IV pilus","na":5,"nb":1,"a":[["ecology/predatory_bacterium.html","predatory bacterium"],["morphology/motile.html","motile"],["morphology/motility.html","motility"],["morphology/twitching_motility.html","twitching motility"],["morphology/type_iv_pilus.html","type IV pilus"]],"b":[["GO%3A0044096","type IV pilus"]]},{"id":"GO:0047646","l":"alkanal monooxygenase (FMN-linked) activity","na":1,"nb":5,"a":[["physiology/bioluminescence.html","bioluminescence"]],"b":[["EC%3A1.14.14.3","bacterial luciferase"],["RHEA%3A17181","a long-chain fatty aldehyde + FMNH2 + O2 = a long-chain fatty acid + hnu + FMN + H2O + 2 H(+)"],["GO%3A0047646","alkanal monooxygenase (FMN-linked) activity"],["InterPro%3AIPR018235","Bacterial luciferase, conserved site"],["MCSA%3A132","alkanal monooxygenase (FMN-linked)"]]},{"id":"GO:0160097","l":"reverse gyrase activity","na":5,"nb":1,"a":[["environment/extreme_hyperthermophilic.html","extreme hyperthermophilic"],["environment/hyperthermophilic.html","hyperthermophilic"],["environment/temperature_optimum_high.html","temperature optimum high"],["environment/temperature_range_high.html","temperature range high"],["environment/thermophilic.html","thermophilic"]],"b":[["GO%3A0160097","reverse gyrase activity"]]},{"id":"InterPro:IPR001425","l":"","na":1,"nb":5,"a":[["physiology/phototrophic.html","phototrophic"]],"b":[["Pfam%3APF01036","Bacteriorhodopsin-like protein"],["PANTHER%3APTHR28286","Archaeal/bacterial/fungal rhodopsins"],["PRINTS%3APR00251","Bacterial opsin signature"],["PROSITE%3APS00950","Bacterial rhodopsins signature 1"],["PROSITE%3APS00327","Bacterial rhodopsins retinal binding site"]]},{"id":"InterPro:IPR006314","l":"","na":1,"nb":5,"a":[["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["Pfam%3APF21105","DyP dimeric alpha+beta barrel domain"],["Pfam%3APF20628","Dyp-type peroxidase, C-terminal"],["Pfam%3APF04261","Dyp-type peroxidase, N-terminal"],["PANTHER%3APTHR30521","DEFERROCHELATASE/PEROXIDASE"],["Pfam%3APF10518","TAT (twin-arginine translocation) pathway signal sequence"]]},{"id":"InterPro:IPR013765","l":"","na":1,"nb":5,"a":[["physiology/natural_competence.html","natural competence"]],"b":[["HAMAP%3AMF_00268","Protein RecA [recA]"],["PANTHER%3APTHR45900","RECA"],["Pfam%3APF14890","Intein splicing domain"],["PRINTS%3APR00142","RecA protein signature"],["PROSITE%3APS00321","recA signature"]]},{"id":"METPO:1000844","l":"Methanogenesis","na":5,"nb":1,"a":[["metabolism/acetoclastic_methanogenesis.html","acetoclastic methanogenesis"],["metabolism/hydrogenotrophic_methanogenesis.html","hydrogenotrophic methanogenesis"],["metabolism/methanogenesis.html","Methanogenesis"],["metabolism/methyl_based_methanogenesis.html","methyl-based methanogenesis"],["metabolism/syntrophy.html","Syntrophy"]],"b":[["METPO%3A1000844","Methanogenesis"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":5,"nb":1,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"],["physiology/hydrogenotrophic.html","hydrogenotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"]],"b":[["TED%3AAF-A0A367PA30-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A367PA30-F1-model_v4_TED01"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":1,"nb":5,"a":[["morphology/gliding.html","gliding"]],"b":[["TED%3AAF-A0A4Y6CF56-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A4Y6CF56-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6CNZ1-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A4Y6CNZ1-F1-model_v4_TED02"],["TED%3AAF-A0A7Y4IIX4-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7Y4IIX4-F1-model_v4_TED01"],["TED%3AAF-A0A4Y6B7F9-F1-model_v4_TED01","TED novel fold AF-A0A4Y6B7F9-F1-model_v4_TED01"],["TED%3AAF-A0A7Y4IR70-F1-model_v4_TED01","TED novel fold AF-A0A7Y4IR70-F1-model_v4_TED01"]]},{"id":"NCBITaxon:435","l":"Acetobacter aceti","na":1,"nb":5,"a":[["environment/acidotolerant.html","acidotolerant"]],"b":[["Pfam%3APF13336","Acetyl-CoA hydrolase/transferase C-terminal domain"],["Pfam%3APF02550","Acetyl-CoA hydrolase/transferase N-terminal domain"],["Pfam%3APF13442","Cytochrome C oxidase, cbb3-type, subunit III"],["Pfam%3APF06481","COX Aromatic Rich Motif"],["PROSITE%3APS00364","Bacterial quinoprotein dehydrogenases signature 2"]]},{"id":"NCBITaxon:959","l":"Bdellovibrio bacteriovorus","na":1,"nb":5,"a":[["ecology/predatory_bacterium.html","predatory bacterium"]],"b":[["TED%3AAF-A0A150WJL7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A150WJL7-F1-model_v4_TED01"],["TED%3AAF-A0A150WK21-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A150WK21-F1-model_v4_TED01"],["TED%3AAF-A0A1Z3N7G2-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A1Z3N7G2-F1-model_v4_TED02"],["TED%3AAF-A0A150WR18-F1-model_v4_TED04","TED novel fold AF-A0A150WR18-F1-model_v4_TED04"],["TED%3AAF-A0A162GEG0-F1-model_v4_TED02","TED novel fold AF-A0A162GEG0-F1-model_v4_TED02"]]},{"id":"UniProt:P00807","l":"","na":1,"nb":5,"a":[["physiology/antibiotic_resistance.html","antibiotic resistance"]],"b":[["proteintraitsmech%3AMEROPS_CLEAVAGE_S26_016","SpsB signal peptidase cleavage specificity"],["Pfam%3APF08139","Prokaryotic membrane lipoprotein lipid attachment site"],["proteintraitsmech%3ABIOLIP_CEM","CEM-binding site"],["proteintraitsmech%3ABIOLIP_CO3","CO3-binding site"],["proteintraitsmech%3ABIOLIP_TEM","TEM-binding site"]]},{"id":"UniProt:P0A953","l":"","na":1,"nb":5,"a":[["physiology/homeoviscous_adaptation.html","homeoviscous adaptation"]],"b":[["GO%3A1903966","monounsaturated fatty acid biosynthetic process"],["NCBIfam%3ANF005935","beta-ketoacyl-ACP synthase I"],["CDD%3Acd00834","KAS_I_II"],["MCSA%3A292","beta-ketoacyl-[acyl carrier protein] synthase I"],["proteintraitsmech%3ABIOLIP_6W5","6W5-binding site"]]},{"id":"UniProt:P0ACQ4","l":"","na":1,"nb":5,"a":[["physiology/oxidative_stress_response.html","oxidative stress response"]],"b":[["GO%3A2000142","regulation of DNA-templated transcription initiation"],["GO%3A0051409","response to nitrosative stress"],["NCBIfam%3ANF008361","DNA-binding transcriptional regulator OxyR"],["CDD%3Acd08411","PBP2_OxyR"],["Pfam%3APF00126","Bacterial regulatory helix-turn-helix protein, lysR family"]]},{"id":"UniProt:Q99ZW2","l":"","na":1,"nb":5,"a":[["genomics/crispr_cas_system.html","CRISPR-Cas system"]],"b":[["Pfam%3APF16595","PAM-interacting domain of CRISPR-associated endonuclease Cas9"],["Pfam%3APF22702","Cas9 RuvC domain"],["Pfam%3APF13395","HNH endonuclease"],["Pfam%3APF16593","Bridge helix of CRISPR-associated endonuclease Cas9"],["Pfam%3APF16592","REC lobe of CRISPR-associated endonuclease Cas9"]]},{"id":"CHEBI:16856","l":"glutathione","na":1,"nb":4,"a":[["environment/zinc_tolerant.html","zinc tolerant"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16856","requires glutathione"],["MCSA%3A359","lactoglutathione lyase"],["MCSA%3A32","lactoylglutathione lyase"],["proteintraitsmech%3ABIOLIP_GSH","GSH-binding site"]]},{"id":"CHEBI:25195","l":"","na":1,"nb":4,"a":[["environment/mercury_tolerant.html","mercury tolerant"]],"b":[["proteintraitsmech%3AMETALPDB_HG_DINUCLEAR","dinuclear mercury site"],["proteintraitsmech%3AMETALPDB_HG_MONONUCLEAR","mononuclear mercury site"],["proteintraitsmech%3AMETALPDB_HG_TETRANUCLEAR","tetranuclear mercury site"],["proteintraitsmech%3AMETALPDB_HG_TRINUCLEAR","trinuclear mercury site"]]},{"id":"CHEBI:38201","l":"","na":4,"nb":1,"a":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["physiology/aerobic_anoxygenic_phototrophy.html","aerobic anoxygenic phototrophy"],["physiology/photoheterotrophic.html","photoheterotrophic"],["physiology/phototrophic.html","phototrophic"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:64709","l":"organic acid","na":1,"nb":4,"a":[["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"]],"b":[["TCDB%3A2.A.28","The Bile Acid:Na+ Symporter (BASS) Family"],["TCDB%3A2.A.23","The Dicarboxylate/Amino Acid:Cation (Na+ or H+) Symporter (DAACS) Family"],["TCDB%3A2.A.66","The Multidrug/Oligosaccharidyl-lipid/Polysaccharide (MOP) Flippase Superfamily"],["TCDB%3A1.B.25","The Outer Membrane Porin (Opr) Family"]]},{"id":"GO:0004503","l":"tyrosinase activity","na":1,"nb":4,"a":[["morphology/black_pigmented.html","black pigmented"]],"b":[["EC%3A1.14.18.1","tyrosinase"],["RHEA%3A18117","L-tyrosine + O2 = L-dopaquinone + H2O"],["GO%3A0004503","tyrosinase activity"],["NCBIfam%3ANF047834","tyrosinase MelC2"]]},{"id":"GO:0005575","l":"cellular_component","na":1,"nb":4,"a":[["upper/biological_process.html","biological process"]],"b":[["GO%3A0110165","cellular anatomical structure"],["GO%3A0005575","cellular_component"],["GO%3A0032991","protein-containing complex"],["GO%3A0044423","virion component"]]},{"id":"GO:0008923","l":"lysine decarboxylase activity","na":1,"nb":4,"a":[["physiology/lysine_decarboxylase_activity.html","lysine decarboxylase activity"]],"b":[["EC%3A4.1.1.18","lysine decarboxylase"],["RHEA%3A22352","L-lysine + H(+) = cadaverine + CO2"],["GO%3A0008923","lysine decarboxylase activity"],["proteintraitsmech%3ABIOLIP_G4P","G4P-binding site"]]},{"id":"GO:0015386","l":"potassium:proton antiporter activity","na":1,"nb":4,"a":[["environment/ph_optimum_mid2.html","pH optimum mid2"]],"b":[["RHEA%3A29467","K(+)(in) + H(+)(out) = K(+)(out) + H(+)(in)"],["ComplexPortal%3ACPX-3090","Glutathione-regulated potassium-efflux system KefB-KefG complex"],["ComplexPortal%3ACPX-2543","Glutathione-regulated potassium-efflux system KefC-KefF complex"],["GO%3A0015386","potassium:proton antiporter activity"]]},{"id":"GO:0015946","l":"methanol oxidation","na":1,"nb":4,"a":[["metabolism/methanol_oxidation.html","methanol oxidation"]],"b":[["GO%3A0015946","methanol oxidation"],["NCBIfam%3ANF014379","Methanol dehydrogenase beta subunit"],["Pfam%3APF02315","Methanol dehydrogenase beta subunit"],["InterPro%3AIPR036557","Methanol dehydrogenase, beta subunit superfamily"]]},{"id":"GO:0016285","l":"alanyl aminopeptidase activity","na":1,"nb":4,"a":[["physiology/alanine_arylamidase_activity.html","alanine arylamidase activity"]],"b":[["EC%3A3.4.11.14","cytosol alanyl aminopeptidase"],["EC%3A3.4.11.2","membrane alanyl aminopeptidase"],["GO%3A0016285","alanyl aminopeptidase activity"],["proteintraitsmech%3ABIOLIP_37E","37E-binding site"]]},{"id":"GO:0019253","l":"reductive pentose-phosphate cycle","na":4,"nb":1,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["physiology/autotrophic.html","autotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["GO%3A0019253","reductive pentose-phosphate cycle"]]},{"id":"GO:0019333","l":"denitrification pathway","na":1,"nb":4,"a":[["metabolism/anaerobic_respiration.html","Anaerobic respiration"]],"b":[["GO%3A0019333","denitrification pathway"],["NCBIfam%3ATIGR02161","periplasmic nitrate (or nitrite) reductase c-type cytochrome, NapC/NirT family"],["NCBIfam%3ATIGR04244","TAT-dependent nitrous-oxide reductase"],["NCBIfam%3ATIGR04246","Sec-dependent nitrous-oxide reductase"]]},{"id":"GO:0019418","l":"sulfide oxidation","na":1,"nb":4,"a":[["morphology/intracellular_inclusion.html","intracellular inclusion"]],"b":[["GO%3A0019418","sulfide oxidation"],["Reactome%3AR-HSA-1614517","Sulfide oxidation to sulfate"],["NCBIfam%3ATIGR02061","adenylyl-sulfate reductase subunit alpha"],["NCBIfam%3ATIGR02060","adenylyl-sulfate reductase subunit beta"]]},{"id":"GO:0019746","l":"hopanoid biosynthetic process","na":1,"nb":4,"a":[["environment/facultatively_acidophilic.html","facultatively acidophilic"]],"b":[["GO%3A0019746","hopanoid biosynthetic process"],["proteintraitsmech%3ASEED_SUBSYSTEM_Hopanoid_biosynthesis","Hopanoid biosynthesis"],["NCBIfam%3ATIGR04367","hopanoid C-3 methylase HpnR"],["NCBIfam%3ATIGR01507","squalene--hopene cyclase"]]},{"id":"GO:0032196","l":"transposition","na":1,"nb":4,"a":[["genomics/mobile_genetic_element.html","mobile genetic element"]],"b":[["GO%3A0006313","DNA transposition"],["GO%3A0032197","retrotransposition"],["GO%3A0032196","transposition"],["NCBIfam%3ATIGR03783","TraG family conjugative transposon ATPase"]]},{"id":"GO:0033740","l":"hydroxylamine oxidoreductase activity","na":1,"nb":4,"a":[["physiology/lithotrophic.html","lithotrophic"]],"b":[["EC%3A1.7.2.9","hydroxylamine oxidase"],["RHEA%3A45036","hydroxylamine + 3 Fe(III)-[cytochrome c] = nitric oxide + 3 Fe(II)-[cytochrome c] + 3 H(+)"],["GO%3A0033740","hydroxylamine oxidoreductase activity"],["proteintraitsmech%3ABIOLIP_HG1","HG1-binding site"]]},{"id":"GO:0033755","l":"sulfur oxygenase/reductase activity","na":1,"nb":4,"a":[["metabolism/disproportionation.html","Disproportionation"]],"b":[["EC%3A1.13.11.55","sulfur oxygenase/reductase"],["RHEA%3A13957","4 sulfur + O2 + 4 H2O = 2 hydrogen sulfide + 2 sulfite + 6 H(+)"],["GO%3A0033755","sulfur oxygenase/reductase activity"],["NCBIfam%3ANF047630","sulfur oxygenase/reductase"]]},{"id":"GO:0044569","l":"[Ni-Fe] hydrogenase complex","na":1,"nb":4,"a":[["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["ComplexPortal%3ACPX-281","Hydrogenase-1 complex"],["ComplexPortal%3ACPX-282","Hydrogenase-2 complex"],["GO%3A0044569","[Ni-Fe] hydrogenase complex"],["NCBIfam%3ANF053600","membrane-bound hydrogenase complex subunit MbhI"]]},{"id":"GO:0045436","l":"lycopene beta cyclase activity","na":1,"nb":4,"a":[["morphology/orange_pigmented.html","orange pigmented"]],"b":[["RHEA%3A32219","all-trans-lycopene = gamma-carotene"],["GO%3A0045436","lycopene beta cyclase activity"],["NCBIfam%3ATIGR01789","lycopene beta-cyclase CrtY"],["NCBIfam%3ANF045687","lycopene beta cyclase"]]},{"id":"GO:0047154","l":"methylmalonyl-CoA carboxytransferase activity","na":1,"nb":4,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["EC%3A2.1.3.1","methylmalonyl-CoA carboxytransferase"],["RHEA%3A20764","(S)-methylmalonyl-CoA + pyruvate = propanoyl-CoA + oxaloacetate"],["GO%3A0047154","methylmalonyl-CoA carboxytransferase activity"],["proteintraitsmech%3ABIOLIP_MCA","MCA-binding site"]]},{"id":"GO:0050605","l":"superoxide reductase activity","na":1,"nb":4,"a":[["environment/microaerotolerant.html","microaerotolerant"]],"b":[["EC%3A1.15.1.2","superoxide reductase"],["RHEA%3A21324","reduced [rubredoxin] + superoxide + 2 H(+) = oxidized [rubredoxin] + H2O2"],["GO%3A0050605","superoxide reductase activity"],["MCSA%3A660","superoxide reductase"]]},{"id":"InterPro:IPR005936","l":"","na":1,"nb":4,"a":[["environment/temperature_optimum_mid4.html","temperature optimum mid4"]],"b":[["HAMAP%3AMF_01458","ATP-dependent zinc metalloprotease FtsH [ftsH]"],["Pfam%3APF06480","FtsH Extracellular"],["PROSITE%3APS00674","AAA-protein family signature"],["Pfam%3APF21232","Yme1-like, N-terminal"]]},{"id":"InterPro:IPR005977","l":"","na":1,"nb":4,"a":[["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["HAMAP%3AMF_00533","Nitrogenase iron protein [nifH]"],["PROSITE%3APS00746","NifH/frxC family signature 1"],["PROSITE%3APS00692","NifH/frxC family signature 2"]]},{"id":"InterPro:IPR051315","l":"","na":1,"nb":4,"a":[["physiology/chemotaxis.html","chemotaxis"]],"b":[["Pfam%3APF01584","CheW-like domain"],["Pfam%3APF09078","CheY binding"],["Pfam%3APF02895","Signal transducing histidine kinase, homodimeric domain"],["PANTHER%3APTHR43395","SENSOR HISTIDINE KINASE CHEA"]]},{"id":"METPO:1000620","l":"halophilic","na":1,"nb":4,"a":[["environment/halophilic.html","halophilic"]],"b":[["METPO%3A1000628","extremely halophilic"],["METPO%3A1000620","halophilic"],["METPO%3A1000623","moderately halophilic"],["METPO%3A1000625","slightly halophilic"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":1,"nb":4,"a":[["physiology/photoheterotrophic.html","photoheterotrophic"]],"b":[["TED%3AAF-A0A7W3UB61-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A7W3UB61-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F4B3-F1-model_v4_TED01","TED novel fold AF-A0A0D7F4B3-F1-model_v4_TED01"],["TED%3AAF-A0A0D7F6R4-F1-model_v4_TED01","TED novel fold AF-A0A0D7F6R4-F1-model_v4_TED01"],["TED%3AAF-A0A7W3YI15-F1-model_v4_TED02","TED novel fold AF-A0A7W3YI15-F1-model_v4_TED02"]]},{"id":"NCBITaxon:258594","l":"Rhodopseudomonas palustris CGA009","na":1,"nb":4,"a":[["physiology/photoorganoheterotrophic.html","photoorganoheterotrophic"]],"b":[["Pfam%3APF01322","Cytochrome C'"],["PROSITE%3APS00969","Antenna complexes beta subunits signature"],["PROSITE%3APS00936","Ribosomal protein L35 signature"],["PROSITE%3APS01181","Ribosomal protein S21 signature"]]},{"id":"NCBITaxon:2822231","l":"Phanerodontia chrysosporium","na":1,"nb":4,"a":[["metabolism/manganese_oxidation.html","manganese oxidation"]],"b":[["Pfam%3APF18637","Aldos-2-ulose dehydratase/isomerase (AUDH) Cupin domain"],["Pfam%3APF16010","Cytochrome domain of cellobiose dehydrogenase"],["PROSITE%3APS00623","GMC oxidoreductases signature 1"],["Pfam%3APF22301","Aldos-2-ulose dehydratase, beta-propeller domain"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":1,"nb":4,"a":[["ecology/plant_pathogen.html","plant pathogen"]],"b":[["PROSITE%3APS00314","Bacterial ice-nucleation proteins octamer repeat"],["Pfam%3APF00818","Ice nucleation protein repeat (2 copies)"],["TED%3AAF-A0A085UKV7-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A085UKV7-F1-model_v4_TED01"],["TED%3AAF-A0A4R6IU28-F1-model_v4_TED02","TED novel fold AF-A0A4R6IU28-F1-model_v4_TED02"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans PD1222","na":1,"nb":4,"a":[["physiology/mixotrophic.html","mixotrophic"]],"b":[["Pfam%3APF27518","Heme exporter protein C"],["Pfam%3APF22039","Imidazolonepropionase-like composite domain, bacteria"],["PROSITE%3APS01181","Ribosomal protein S21 signature"],["Pfam%3APF02239","Cytochrome D1 heme domain"]]},{"id":"NCBITaxon:55601","l":"Vibrio anguillarum","na":1,"nb":4,"a":[["genomics/sspabcd_sspfgh_system.html","SspABCD-SspFGH system"]],"b":[["Pfam%3APF17327","Acyl homoserine lactone synthase"],["PROSITE%3APS00949","Autoinducer synthase family signature"],["TED%3AAF-A0A241NLV5-F1-model_v4_TED03","TED novel fold AF-A0A241NLV5-F1-model_v4_TED03"],["TED%3AAF-A0A290PUC4-F1-model_v4_TED02","TED novel fold AF-A0A290PUC4-F1-model_v4_TED02"]]},{"id":"UniProt:P00459","l":"","na":1,"nb":4,"a":[["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["Pfam%3APF00142","4Fe-4S iron sulfur cluster binding proteins, NifH/frxC family"],["PROSITE%3APS00746","NifH/frxC family signature 1"],["PROSITE%3APS00692","NifH/frxC family signature 2"],["MCSA%3A212","nitrogenase"]]},{"id":"UniProt:P0C2S5","l":"","na":1,"nb":4,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["EC%3A3.2.1.176","cellulose 1,4-beta-cellobiosidase (reducing end)"],["Pfam%3APF00404","Dockerin type I domain"],["PROSITE%3APS00448","Clostridium cellulosome enzymes repeated domain signature"],["Pfam%3APF02011","Glycosyl hydrolase family 48"]]},{"id":"UniProt:P16033","l":"","na":4,"nb":1,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["proteintraitsmech%3ABIOLIP_PHO","PHO-binding site"]]},{"id":"CHEBI:16170","l":"mercury(0)","na":1,"nb":3,"a":[["environment/mercury_tolerant.html","mercury tolerant"]],"b":[["EC%3A1.16.1.1","mercury(II) reductase"],["RHEA%3A23856","Hg + NADP(+) + H(+) = Hg(2+) + NADPH"],["MCSA%3A277","mercury(II) reductase"]]},{"id":"CHEBI:17203","l":"L-proline","na":1,"nb":3,"a":[["environment/non_halophilic.html","non halophilic"]],"b":[["MCSA%3A403","astacin"],["MCSA%3A379","Xaa-Pro aminopeptidase"],["proteintraitsmech%3ABIOLIP_PRO","PRO-binding site"]]},{"id":"CHEBI:17513","l":"","na":3,"nb":1,"a":[["metabolism/carbon_fixation.html","carbon fixation"],["metabolism/fermentation.html","Fermentation"],["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"]],"b":[["MCSA%3A119","pyruvate:ferredoxin oxidoreducatse"]]},{"id":"CHEBI:49432","l":"","na":1,"nb":3,"a":[["environment/moderately_halophilic.html","moderately halophilic"]],"b":[["TCDB%3A2.A.15","The Betaine/Carnitine/Choline Transporter (BCCT) Family"],["TCDB%3A2.A.56","The Tripartite ATP-independent Periplasmic Transporter (TRAP-T) Family"],["proteintraitsmech%3ABIOLIP_6CS","6CS-binding site"]]},{"id":"CHEBI:50699","l":"oligosaccharide","na":1,"nb":3,"a":[["metabolism/biopolymer_degradation.html","biopolymer degradation"]],"b":[["TCDB%3A1.B.1","The General Bacterial Porin (GBP) Family"],["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"],["TCDB%3A4.A.1","The PTS Glucose-Glucoside (Glc) Family"]]},{"id":"CHEBI:72695","l":"","na":3,"nb":1,"a":[["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"],["physiology/heterotrophic.html","heterotrophic"]],"b":[["TCDB%3A1.A.24","The Gap Junction-forming Connexin (Connexin) Family"]]},{"id":"GO:0009505","l":"plant-type cell wall","na":1,"nb":3,"a":[["ecology/plant_pathogen.html","plant pathogen"]],"b":[["GO%3A0009505","plant-type cell wall"],["GO%3A0009530","primary cell wall"],["GO%3A0009531","secondary cell wall"]]},{"id":"GO:0016160","l":"amylase activity","na":1,"nb":3,"a":[["physiology/amylase_activity.html","amylase activity"]],"b":[["GO%3A0004556","alpha-amylase activity"],["GO%3A0016160","amylase activity"],["GO%3A0016161","beta-amylase activity"]]},{"id":"GO:0016690","l":"diarylpropane peroxidase activity","na":1,"nb":3,"a":[["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["EC%3A1.11.1.14","lignin peroxidase"],["RHEA%3A30271","2 (3,4-dimethoxyphenyl)methanol + H2O2 = 2 (3,4-dimethoxyphenyl)methanol radical + 2 H2O"],["GO%3A0016690","diarylpropane peroxidase activity"]]},{"id":"GO:0042763","l":"intracellular immature spore","na":1,"nb":3,"a":[["morphology/spore_forming.html","spore forming"]],"b":[["GO%3A0042764","ascospore-type prospore"],["GO%3A0042601","endospore-forming forespore"],["GO%3A0042763","intracellular immature spore"]]},{"id":"GO:0043158","l":"heterocyst development","na":1,"nb":3,"a":[["morphology/heterocyst.html","heterocyst"]],"b":[["GO%3A0043158","heterocyst development"],["NCBIfam%3ANF045514","heterocyst development glycosyltransferase HepC"],["NCBIfam%3ANF015533","Peptidase family S48"]]},{"id":"GO:0044297","l":"cell body","na":1,"nb":3,"a":[["morphology/spiral_shaped.html","spiral shaped"]],"b":[["GO%3A0044297","cell body"],["GO%3A0043025","neuronal cell body"],["GO%3A1990017","somatic portion of tanycyte"]]},{"id":"GO:0050137","l":"NADPH peroxidase activity","na":1,"nb":3,"a":[["environment/aerotolerant.html","aerotolerant"]],"b":[["EC%3A1.11.1.2","NADPH peroxidase"],["RHEA%3A15173","H2O2 + NADPH + H(+) = NADP(+) + 2 H2O"],["GO%3A0050137","NADPH peroxidase activity"]]},{"id":"GO:0102036","l":"methyltetrahydrofolate:corrinoid/iron-sulfur protein methyltransferase activity","na":1,"nb":3,"a":[["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"]],"b":[["EC%3A2.1.1.258","5-methyltetrahydrofolate:corrinoid/iron-sulfur protein Co-methyltransferase"],["RHEA%3A45200","methyl-Co(III)-[corrinoid Fe-S protein] + (6S)-5,6,7,8-tetrahydrofolate = Co(I)-[corrinoid Fe-S protein] + (6S)-5-methyl-5,6,7,8-tetrahydrofolate + H(+)"],["GO%3A0102036","methyltetrahydrofolate:corrinoid/iron-sulfur protein methyltransferase activity"]]},{"id":"InterPro:IPR005001","l":"","na":1,"nb":3,"a":[["physiology/stress_response.html","stress response"]],"b":[["Pfam%3APF17209","Hfq protein"],["HAMAP%3AMF_00436","RNA-binding protein Hfq [hfq]"],["PANTHER%3APTHR34772","RNA-BINDING PROTEIN HFQ"]]},{"id":"InterPro:IPR020823","l":"","na":1,"nb":3,"a":[["morphology/sarcina_arrangement.html","sarcina arrangement"]],"b":[["Pfam%3APF14450","Cell division protein FtsA"],["HAMAP%3AMF_02033","Cell division protein FtsA [ftsA]"],["Pfam%3APF11983","Cell division protein FtsA, C-terminal"]]},{"id":"InterPro:IPR052028","l":"","na":1,"nb":3,"a":[["physiology/persister_cell_formation.html","persister cell formation"]],"b":[["Pfam%3APF13657","HipA N-terminal domain"],["Pfam%3APF07804","HipA-like C-terminal domain"],["PANTHER%3APTHR37419","SERINE/THREONINE-PROTEIN KINASE TOXIN HIPA"]]},{"id":"InterPro:IPR052159","l":"","na":1,"nb":3,"a":[["physiology/natural_competence.html","natural competence"]],"b":[["Pfam%3APF13567","Domain of unknown function (DUF4131)"],["PANTHER%3APTHR30619","DNA INTERNALIZATION/COMPETENCE PROTEIN COMEC/REC2"],["Pfam%3APF03772","Competence protein"]]},{"id":"METPO:1000622","l":"halotolerant","na":3,"nb":1,"a":[["environment/halotolerant.html","halotolerant"],["environment/nacl_delta_low.html","NaCl delta low"],["environment/slightly_halophilic.html","slightly halophilic"]],"b":[["METPO%3A1000622","halotolerant"]]},{"id":"NCBITaxon:1639","l":"Listeria monocytogenes","na":1,"nb":3,"a":[["environment/psychrotolerant.html","psychrotolerant"]],"b":[["TED%3AAF-A0A6Z1JB74-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6Z1JB74-F1-model_v4_TED01"],["TED%3AAF-A0A5Z1VYX2-F1-model_v4_TED01","TED novel fold AF-A0A5Z1VYX2-F1-model_v4_TED01"],["TED%3AAF-A0A823IT06-F1-model_v4_TED02","TED novel fold AF-A0A823IT06-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1665","l":"Arthrobacter globiformis","na":1,"nb":3,"a":[["morphology/gram_variable.html","gram variable"]],"b":[["Pfam%3APF21994","AGAO-like N2 domain"],["Pfam%3APF18835","Beta helix repeat of Inulin fructotransferase"],["TED%3AAF-A0A328HCX7-F1-model_v4_TED02","TED novel fold AF-A0A328HCX7-F1-model_v4_TED02"]]},{"id":"NCBITaxon:1708","l":"Cellulomonas fimi","na":1,"nb":3,"a":[["metabolism/biopolymer_degradation.html","biopolymer degradation"]],"b":[["Pfam%3APF00553","Cellulose binding domain"],["PROSITE%3APS00561","CBM2a (carbohydrate-binding type-2) domain signature"],["PROSITE%3APS00591","Glycosyl hydrolases family 10 (GH10) active site"]]},{"id":"NCBITaxon:1717","l":"Corynebacterium diphtheriae","na":1,"nb":3,"a":[["morphology/dumbbell_shaped.html","dumbbell shaped"]],"b":[["Pfam%3APF08051","Erythromycin resistance leader peptide"],["PROSITE%3APS01007","Transposases, Mutator family, signature"],["TED%3AAF-A0A811G0F8-F1-model_v4_TED05","TED novel fold AF-A0A811G0F8-F1-model_v4_TED05"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":1,"nb":3,"a":[["physiology/alkaline_phosphatase_activity.html","alkaline phosphatase activity"]],"b":[["Pfam%3APF03069","Acetamidase/Formamidase family"],["PROSITE%3APS00818","Dps protein family signature 1"],["Pfam%3APF13810","Domain of unknown function (DUF4185)"]]},{"id":"NCBITaxon:2242","l":"Halobacterium salinarum","na":3,"nb":1,"a":[["environment/extremely_halophilic.html","extremely halophilic"],["environment/halophilic.html","halophilic"],["morphology/intracellular_inclusion.html","intracellular inclusion"]],"b":[["Pfam%3APF07232","Putative rep protein (DUF1424)"]]},{"id":"NCBITaxon:2283","l":"Acidianus ambivalens","na":1,"nb":3,"a":[["metabolism/disproportionation.html","Disproportionation"]],"b":[["Pfam%3APF07680","TQO small subunit DoxA"],["Pfam%3APF04173","TQO small subunit DoxD"],["TED%3AAF-O57695-F1-model_v4_TED01","TED highly-symmetric fold AF-O57695-F1-model_v4_TED01"]]},{"id":"NCBITaxon:243233","l":"Methylococcus capsulatus str. Bath","na":1,"nb":3,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["Pfam%3APF17850","CysA C-terminal regulatory domain"],["Pfam%3APF02461","Ammonia monooxygenase"],["TED%3AAF-Q604F4-F1-model_v4_TED02","TED novel fold AF-Q604F4-F1-model_v4_TED02"]]},{"id":"NCBITaxon:273121","l":"Wolinella succinogenes DSM 1740","na":1,"nb":3,"a":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]],"b":[["Pfam%3APF26365","Apolipoprotein N-acyltransferase integral membrane domain"],["Pfam%3APF02335","Cytochrome c552"],["PROSITE%3APS00883","Nickel-dependent hydrogenases b-type cytochrome subunit signature 2"]]},{"id":"NCBITaxon:44001","l":"Caldicellulosiruptor saccharolyticus","na":1,"nb":3,"a":[["metabolism/xylan_degradation.html","xylan degradation"]],"b":[["Pfam%3APF12891","Glycoside hydrolase family 44"],["PROSITE%3APS01027","Glycosyl hydrolases family 39 active site"],["Pfam%3APF02011","Glycosyl hydrolase family 48"]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":1,"nb":3,"a":[["other/voges_proskauer_test_positive.html","Voges-Proskauer test positive"]],"b":[["Pfam%3APF27446","Uridylyltransferase GlnD fifth domain"],["PROSITE%3APS00896","LacY family proton/sugar symporters signature 1"],["PROSITE%3APS00897","LacY family proton/sugar symporters signature 2"]]},{"id":"NCBITaxon:584","l":"Proteus mirabilis","na":1,"nb":3,"a":[["morphology/swarming_motility.html","swarming motility"]],"b":[["Pfam%3APF05280","Flagellar transcriptional activator (FlhC)"],["TED%3AAF-A0A1Z1SXV6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1Z1SXV6-F1-model_v4_TED01"],["TED%3AAF-A0A7U1CMJ9-F1-model_v4_TED01","TED novel fold AF-A0A7U1CMJ9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":1,"nb":3,"a":[["morphology/polar_flagellation.html","polar flagellation"]],"b":[["Pfam%3APF04205","FMN-binding domain"],["Pfam%3APF10795","Protein of unknown function (DUF2607)"],["TED%3AAF-A0A1W6U0N2-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A1W6U0N2-F1-model_v4_TED01"]]},{"id":"NCBITaxon:94122","l":"Shewanella sp. ANA-3","na":1,"nb":3,"a":[["metabolism/arsenate_respiration.html","arsenate respiration"]],"b":[["Pfam%3APF03883","Peroxide stress protein YaaA"],["Pfam%3APF04751","Dual-action ribosomal maturation protein DarP"],["Pfam%3APF04356","Protein of unknown function (DUF489)"]]},{"id":"UniProt:P0AAI3","l":"","na":1,"nb":3,"a":[["physiology/heat_shock_response.html","heat shock response"]],"b":[["ComplexPortal%3ACPX-5046","FtsH-HflKC complex"],["NCBIfam%3ANF008004","ATP-dependent zinc metalloprotease FtsH"],["CATH%3A3.30.720.210","CATH homologous superfamily 3.30.720.210"]]},{"id":"UniProt:P0C0Y9","l":"","na":1,"nb":3,"a":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"]],"b":[["proteintraitsmech%3ABIOLIP_BPH","BPH-binding site"],["proteintraitsmech%3ABIOLIP_SPO","SPO-binding site"],["proteintraitsmech%3ABIOLIP_U10","U10-binding site"]]},{"id":"UniProt:P0CJ63","l":"","na":1,"nb":3,"a":[["physiology/quorum_sensing.html","quorum sensing"]],"b":[["EC%3A3.1.1.81","quorum-quenching N-acyl-homoserine lactonase"],["RHEA%3A22576","an N-acyl-L-homoserine lactone + H2O = an N-acyl-L-homoserine + H(+)"],["proteintraitsmech%3ABIOLIP_C6L","C6L-binding site"]]},{"id":"UniProt:P41020","l":"","na":1,"nb":3,"a":[["physiology/urease_activity.html","urease activity"]],"b":[["PROSITE%3APS01120","Urease nickel ligands signature"],["PROSITE%3APS00145","Urease active site"],["proteintraitsmech%3ABIOLIP_HQE","HQE-binding site"]]},{"id":"UniProt:Q8GBW6","l":"","na":1,"nb":3,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["EC%3A2.1.3.1","methylmalonyl-CoA carboxytransferase"],["RHEA%3A20764","(S)-methylmalonyl-CoA + pyruvate = propanoyl-CoA + oxaloacetate"],["proteintraitsmech%3ABIOLIP_MCA","MCA-binding site"]]},{"id":"CHEBI:15350","l":"","na":2,"nb":1,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["proteintraitsmech%3ABIOLIP_UVW","UVW-binding site"]]},{"id":"CHEBI:15539","l":"","na":2,"nb":1,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"],["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"]],"b":[["proteintraitsmech%3ABIOLIP_1VU","1VU-binding site"]]},{"id":"CHEBI:16136","l":"hydrogen sulfide","na":2,"nb":1,"a":[["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/photolithotrophic.html","photolithotrophic"]],"b":[["MCSA%3A398","sulfite reductase (NADPH)"]]},{"id":"CHEBI:16761","l":"","na":1,"nb":2,"a":[["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_16761","requires ADP"],["proteintraitsmech%3ABIOLIP_ADP","ADP-binding site"]]},{"id":"CHEBI:26666","l":"","na":1,"nb":2,"a":[["physiology/chemoheterotrophic.html","chemoheterotrophic"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"],["TCDB%3A2.A.73","The Short Chain Fatty Acid Uptake (AtoE) Family"]]},{"id":"CHEBI:28265","l":"","na":1,"nb":2,"a":[["metabolism/methanogenesis.html","Methanogenesis"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_28265","requires coenzyme F430"],["proteintraitsmech%3ABIOLIP_F43","F43-binding site"]]},{"id":"CHEBI:49537","l":"","na":2,"nb":1,"a":[["morphology/motility.html","motility"],["morphology/vibrio_shaped.html","vibrio shaped"]],"b":[["proteintraitsmech%3ABIOLIP_C2E","C2E-binding site"]]},{"id":"GO:0005983","l":"starch catabolic process","na":1,"nb":2,"a":[["metabolism/starch_degradation.html","starch degradation"]],"b":[["GO%3A0005983","starch catabolic process"],["NCBIfam%3ATIGR02103","pullulanase-type alpha-1,6-glucosidase"]]},{"id":"GO:0009321","l":"alkyl hydroperoxide reductase complex","na":1,"nb":2,"a":[["environment/microaerophilic.html","microaerophilic"]],"b":[["ComplexPortal%3ACPX-4862","Alkyl hydroperoxide reductase complex"],["GO%3A0009321","alkyl hydroperoxide reductase complex"]]},{"id":"GO:0009594","l":"detection of nutrient","na":1,"nb":2,"a":[["physiology/nutrient_adaptation.html","nutrient adaptation"]],"b":[["GO%3A0031318","detection of folic acid"],["GO%3A0009594","detection of nutrient"]]},{"id":"GO:0015250","l":"water channel activity","na":1,"nb":2,"a":[["environment/stenohaline.html","stenohaline"]],"b":[["GO%3A0015250","water channel activity"],["NCBIfam%3ANF003838","aquaporin Z"]]},{"id":"GO:0016231","l":"beta-N-acetylglucosaminidase activity","na":1,"nb":2,"a":[["metabolism/chitinolysis.html","chitinolysis"]],"b":[["GO%3A0016231","beta-N-acetylglucosaminidase activity"],["NCBIfam%3ANF041654","beta-N-acetylglucosaminidase"]]},{"id":"GO:0019332","l":"aerobic respiration, using nitrite as electron donor","na":2,"nb":1,"a":[["metabolism/complete_ammonia_oxidation.html","complete ammonia oxidation"],["metabolism/nitrification.html","nitrification"]],"b":[["GO%3A0019332","aerobic respiration, using nitrite as electron donor"]]},{"id":"GO:0044674","l":"methyl coenzyme M reductase complex","na":2,"nb":1,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"],["metabolism/methanogenesis.html","Methanogenesis"]],"b":[["GO%3A0044674","methyl coenzyme M reductase complex"]]},{"id":"GO:0046358","l":"butyrate biosynthetic process","na":2,"nb":1,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"]],"b":[["GO%3A0046358","butyrate biosynthetic process"]]},{"id":"GO:0102252","l":"cellulose 1,4-beta-cellobiosidase activity (reducing end)","na":1,"nb":2,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["EC%3A3.2.1.176","cellulose 1,4-beta-cellobiosidase (reducing end)"],["GO%3A0102252","cellulose 1,4-beta-cellobiosidase activity (reducing end)"]]},{"id":"InterPro:IPR002102","l":"Cellulosome anchoring protein, cohesin domain","na":1,"nb":2,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["InterPro%3AIPR002102","Cellulosome anchoring protein, cohesin domain"],["Pfam%3APF00963","Cohesin domain"]]},{"id":"InterPro:IPR004596","l":"","na":2,"nb":1,"a":[["morphology/cell_length_large.html","cell length large"],["morphology/filament_shaped.html","filament shaped"]],"b":[["Pfam%3APF03846","Cell division inhibitor SulA"]]},{"id":"InterPro:IPR004753","l":"","na":1,"nb":2,"a":[["morphology/tailed_shaped.html","tailed shaped"]],"b":[["HAMAP%3AMF_02207","Cell shape-determining protein MreB [mreB]"],["PRINTS%3APR01652","Bacterial cell shape determinant MreB/Mbl protein signature"]]},{"id":"InterPro:IPR023028","l":"","na":1,"nb":2,"a":[["physiology/chemoheterotrophic.html","chemoheterotrophic"]],"b":[["HAMAP%3AMF_00196","Mannitol-1-phosphate 5-dehydrogenase [mtlD]"],["PROSITE%3APS00974","Mannitol dehydrogenases signature"]]},{"id":"InterPro:IPR039315","l":"","na":1,"nb":2,"a":[["physiology/chemotaxis.html","chemotaxis"]],"b":[["Pfam%3APF01584","CheW-like domain"],["PANTHER%3APTHR22617","CHEMOTAXIS SENSOR HISTIDINE KINASE-RELATED"]]},{"id":"METPO:1000604","l":"microaerophilic","na":2,"nb":1,"a":[["environment/microaerophilic.html","microaerophilic"],["environment/oxygen_preference.html","oxygen preference"]],"b":[["METPO%3A1000604","microaerophilic"]]},{"id":"METPO:1000609","l":"aerotolerant","na":2,"nb":1,"a":[["environment/aerotolerant.html","aerotolerant"],["environment/oxygen_preference.html","oxygen preference"]],"b":[["METPO%3A1000609","aerotolerant"]]},{"id":"METPO:1000612","l":"facultative oxygen preference","na":2,"nb":1,"a":[["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/oxygen_preference.html","oxygen preference"]],"b":[["METPO%3A1000612","facultative oxygen preference"]]},{"id":"METPO:1000617","l":"hyperthermophilic","na":1,"nb":2,"a":[["environment/hyperthermophilic.html","hyperthermophilic"]],"b":[["METPO%3A1000721","extreme hyperthermophilic"],["METPO%3A1000617","hyperthermophilic"]]},{"id":"METPO:1000632","l":"autotrophic","na":2,"nb":1,"a":[["physiology/autotrophic.html","autotrophic"],["physiology/trophic_type.html","trophic type"]],"b":[["METPO%3A1000632","autotrophic"]]},{"id":"METPO:1000641","l":"chemotrophic","na":2,"nb":1,"a":[["physiology/chemotrophic.html","chemotrophic"],["physiology/trophic_type.html","trophic type"]],"b":[["METPO%3A1000641","chemotrophic"]]},{"id":"METPO:1000642","l":"copiotrophic","na":2,"nb":1,"a":[["physiology/copiotrophic.html","copiotrophic"],["physiology/nutrient_adaptation.html","nutrient adaptation"]],"b":[["METPO%3A1000642","copiotrophic"]]},{"id":"METPO:1000644","l":"heterotrophic","na":2,"nb":1,"a":[["physiology/heterotrophic.html","heterotrophic"],["physiology/trophic_type.html","trophic type"]],"b":[["METPO%3A1000644","heterotrophic"]]},{"id":"METPO:1000654","l":"oligotrophic","na":2,"nb":1,"a":[["physiology/nutrient_adaptation.html","nutrient adaptation"],["physiology/oligotrophic.html","oligotrophic"]],"b":[["METPO%3A1000654","oligotrophic"]]},{"id":"METPO:1000657","l":"photoheterotrophic","na":2,"nb":1,"a":[["physiology/aerobic_anoxygenic_phototrophy.html","aerobic anoxygenic phototrophy"],["physiology/photoheterotrophic.html","photoheterotrophic"]],"b":[["METPO%3A1000657","photoheterotrophic"]]},{"id":"METPO:1000660","l":"phototrophic","na":2,"nb":1,"a":[["physiology/phototrophic.html","phototrophic"],["physiology/trophic_type.html","trophic type"]],"b":[["METPO%3A1000660","phototrophic"]]},{"id":"METPO:1000804","l":"Substrate-level phosphorylation","na":2,"nb":1,"a":[["metabolism/fermentation.html","Fermentation"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["METPO%3A1000804","Substrate-level phosphorylation"]]},{"id":"METPO:1003003","l":"acidophilic","na":1,"nb":2,"a":[["environment/acidophilic.html","acidophilic"]],"b":[["METPO%3A1003003","acidophilic"],["METPO%3A1003006","obligately acidophilic"]]},{"id":"METPO:1003008","l":"acidotolerant","na":2,"nb":1,"a":[["environment/acidotolerant.html","acidotolerant"],["environment/ph_delta.html","pH delta"]],"b":[["METPO%3A1003008","acidotolerant"]]},{"id":"METPO:1005001","l":"nitrification","na":2,"nb":1,"a":[["metabolism/complete_ammonia_oxidation.html","complete ammonia oxidation"],["metabolism/nitrification.html","nitrification"]],"b":[["METPO%3A1005001","nitrification"]]},{"id":"NCBITaxon:1032480","l":"Microlunatus phosphovorus NM-1","na":1,"nb":2,"a":[["morphology/polyphosphate_granule.html","polyphosphate granule"]],"b":[["TED%3AAF-F5XIG6-F1-model_v4_TED02","TED novel fold AF-F5XIG6-F1-model_v4_TED02"],["TED%3AAF-F5XQ24-F1-model_v4_TED04","TED novel fold AF-F5XQ24-F1-model_v4_TED04"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":1,"nb":2,"a":[["physiology/urease_activity.html","urease activity"]],"b":[["PROSITE%3APS01120","Urease nickel ligands signature"],["PROSITE%3APS00145","Urease active site"]]},{"id":"NCBITaxon:2190","l":"Methanocaldococcus jannaschii","na":2,"nb":1,"a":[["metabolism/methanogenesis.html","Methanogenesis"],["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["TED%3AAF-A0A832WL57-F1-model_v4_TED02","TED highly-symmetric fold AF-A0A832WL57-F1-model_v4_TED02"]]},{"id":"NCBITaxon:240292","l":"Trichormus variabilis ATCC 29413","na":1,"nb":2,"a":[["morphology/akinete.html","akinete"]],"b":[["Pfam%3APF18921","Cyanophycin synthase-like N-terminal domain"],["Pfam%3APF13619","KTSC domain"]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":1,"nb":2,"a":[["physiology/alpha_fucosidase_activity.html","alpha-fucosidase activity"]],"b":[["Pfam%3APF21252","Glycosyl hydrolase 109, C-terminal domain"],["TED%3AAF-A0A3P1YJQ6-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A3P1YJQ6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:28132","l":"Prevotella melaninogenica","na":1,"nb":2,"a":[["morphology/black_pigmented.html","black pigmented"]],"b":[["TED%3AAF-A0A8B2A6Y8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A8B2A6Y8-F1-model_v4_TED01"],["TED%3AAF-A0A250KF16-F1-model_v4_TED03","TED novel fold AF-A0A250KF16-F1-model_v4_TED03"]]},{"id":"NCBITaxon:292415","l":"Thiobacillus denitrificans ATCC 25259","na":2,"nb":1,"a":[["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/chemoautotrophic.html","chemoautotrophic"]],"b":[["Pfam%3APF06804","Outer membrane protein assembly factor BamC-like C-terminal domain"]]},{"id":"NCBITaxon:317655","l":"Sphingopyxis alaskensis RB2256","na":2,"nb":1,"a":[["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"]],"b":[["Pfam%3APF10755","Protein of unknown function (DUF2585)"]]},{"id":"NCBITaxon:319224","l":"Shewanella putrefaciens CN-32","na":1,"nb":2,"a":[["morphology/flagellar_arrangement.html","flagellar arrangement"]],"b":[["Pfam%3APF17810","Arginine decarboxylase helical bundle domain"],["Pfam%3APF17944","Arginine decarboxylase C-terminal helical extension"]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":1,"nb":2,"a":[["morphology/yellow_pigmented.html","yellow pigmented"]],"b":[["TED%3AAF-A0A6N3WS12-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A6N3WS12-F1-model_v4_TED01"],["TED%3AAF-A0A3R7GIU2-F1-model_v4_TED02","TED novel fold AF-A0A3R7GIU2-F1-model_v4_TED02"]]},{"id":"NCBITaxon:408","l":"Methylorubrum extorquens","na":2,"nb":1,"a":[["morphology/pink_pigmented.html","pink pigmented"],["physiology/methylotrophic.html","methylotrophic"]],"b":[["Pfam%3APF04476","4-HFC-P synthase"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":1,"nb":2,"a":[["morphology/lateral_flagellation.html","lateral flagellation"]],"b":[["TED%3AAF-B5UAE0-F1-model_v4_TED01","TED highly-symmetric fold AF-B5UAE0-F1-model_v4_TED01"],["TED%3AAF-A0A3E1IF45-F1-model_v4_TED01","TED novel fold AF-A0A3E1IF45-F1-model_v4_TED01"]]},{"id":"NCBITaxon:69","l":"Lysobacter enzymogenes","na":1,"nb":2,"a":[["genomics/gasdermin_system.html","GasderMIN system"]],"b":[["TED%3AAF-A0A1J1E6A8-F1-model_v4_TED02","TED novel fold AF-A0A1J1E6A8-F1-model_v4_TED02"],["TED%3AAF-A0A7T8MLU2-F1-model_v4_TED03","TED novel fold AF-A0A7T8MLU2-F1-model_v4_TED03"]]},{"id":"NCBITaxon:79885","l":"Alkalihalophilus pseudofirmus","na":2,"nb":1,"a":[["environment/alkalotolerant.html","alkalotolerant"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"]],"b":[["TED%3AAF-A0A1Q8TV17-F1-model_v4_TED02","TED novel fold AF-A0A1Q8TV17-F1-model_v4_TED02"]]},{"id":"NCBITaxon:913088","l":"Escherichia coli TW11681","na":1,"nb":2,"a":[["genomics/cbass_system.html","CBASS system"]],"b":[["Pfam%3APF21713","Cyclic GMP-AMP synthase, C-terminal domain"],["Pfam%3APF21654","Cyclic GMP-AMP synthase DncV-like, nucleotidyltransferase domain"]]},{"id":"UniProt:G1UBD1","l":"","na":1,"nb":2,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["EC%3A1.14.18.3","methane monooxygenase (particulate)"],["RHEA%3A30355","methane + a quinol + O2 = methanol + a quinone + H2O"]]},{"id":"UniProt:O52683","l":"","na":1,"nb":2,"a":[["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"]],"b":[["EC%3A1.12.1.4","hydrogenase (NAD(+), ferredoxin)"],["RHEA%3A30279","2 H2 + 2 oxidized [2Fe-2S]-[ferredoxin] + NAD(+) = 2 reduced [2Fe-2S]-[ferredoxin] + NADH + 3 H(+)"]]},{"id":"UniProt:P06278","l":"","na":1,"nb":2,"a":[["metabolism/starch_degradation.html","starch degradation"]],"b":[["Pfam%3APF09154","Alpha-amylase C-terminal"],["proteintraitsmech%3ABIOLIP_NA","NA-binding site"]]},{"id":"UniProt:P07254","l":"","na":1,"nb":2,"a":[["metabolism/chitinolysis.html","chitinolysis"]],"b":[["MCSA%3A478","chitinase (GH18, Class II)"],["proteintraitsmech%3ABIOLIP_AMI","AMI-binding site"]]},{"id":"UniProt:P0C916","l":"","na":1,"nb":2,"a":[["physiology/chemolithoautotrophic.html","chemolithoautotrophic"]],"b":[["EC%3A4.1.1.39","ribulose-bisphosphate carboxylase"],["RHEA%3A23124","2 (2R)-3-phosphoglycerate + 2 H(+) = D-ribulose 1,5-bisphosphate + CO2 + H2O"]]},{"id":"UniProt:P12747","l":"","na":2,"nb":1,"a":[["physiology/bioluminescence.html","bioluminescence"],["physiology/quorum_sensing.html","quorum sensing"]],"b":[["PROSITE%3APS00949","Autoinducer synthase family signature"]]},{"id":"UniProt:P16027","l":"","na":1,"nb":2,"a":[["physiology/methylotrophic.html","methylotrophic"]],"b":[["EC%3A1.1.2.7","methanol dehydrogenase (cytochrome c)"],["PROSITE%3APS00363","Bacterial quinoprotein dehydrogenases signature 1"]]},{"id":"UniProt:P29082","l":"","na":1,"nb":2,"a":[["metabolism/disproportionation.html","Disproportionation"]],"b":[["EC%3A1.13.11.55","sulfur oxygenase/reductase"],["RHEA%3A13957","4 sulfur + O2 + 4 H2O = 2 hydrogen sulfide + 2 sulfite + 6 H(+)"]]},{"id":"UniProt:P31891","l":"","na":1,"nb":2,"a":[["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["proteintraitsmech%3ABIOLIP_NFV","NFV-binding site"],["proteintraitsmech%3ABIOLIP_S3F","S3F-binding site"]]},{"id":"UniProt:P31896","l":"","na":1,"nb":2,"a":[["physiology/carboxydotrophic.html","carboxydotrophic"]],"b":[["proteintraitsmech%3ABIOLIP_RQM","RQM-binding site"],["proteintraitsmech%3AMETALPDB_NI_PENTANUCLEAR","pentanuclear nickel site"]]},{"id":"UniProt:P45574","l":"","na":1,"nb":2,"a":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["proteintraitsmech%3ABIOLIP_SH0","SH0-binding site"],["proteintraitsmech%3ABIOLIP_SRM","SRM-binding site"]]},{"id":"UniProt:Q02567","l":"","na":1,"nb":2,"a":[["metabolism/manganese_oxidation.html","manganese oxidation"]],"b":[["EC%3A1.11.1.13","manganese peroxidase"],["RHEA%3A22776","2 Mn(2+) + H2O2 + 2 H(+) = 2 Mn(3+) + 2 H2O"]]},{"id":"UniProt:Q9S1E5","l":"","na":1,"nb":2,"a":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]],"b":[["Pfam%3APF02335","Cytochrome c552"],["proteintraitsmech%3AMETALPDB_Y_TRINUCLEAR","trinuclear yttrium site"]]},{"id":"CHEBI:16412","l":"","na":1,"nb":1,"a":[["morphology/gram_negative.html","gram negative"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:17794","l":"","na":1,"nb":1,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"]],"b":[["proteintraitsmech%3ABIOLIP_3PG","3PG-binding site"]]},{"id":"CHEBI:193595","l":"","na":1,"nb":1,"a":[["environment/hyperthermophilic.html","hyperthermophilic"]],"b":[["RHEA%3A74675","archaeol + AH2 + 2 S-adenosyl-L-methionine = macrocyclic archaeol + 2 5'-deoxyadenosine + 2 L-methionine + A + 2 H(+)"]]},{"id":"CHEBI:23357","l":"","na":1,"nb":1,"a":[["upper/enzyme.html","enzyme"]],"b":[["proteintraitsmech%3ACOFACTOR_REQ_CHEBI_23357","cofactor cofactor class"]]},{"id":"CHEBI:25105","l":"","na":1,"nb":1,"a":[["physiology/antibiotic_resistance.html","antibiotic resistance"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:26710","l":"sodium chloride","na":1,"nb":1,"a":[["environment/halophilic.html","halophilic"]],"b":[["TCDB%3A2.A.30","The Cation-Chloride Cotransporter (CCC) Family"]]},{"id":"CHEBI:29125","l":"arsenate(3-)","na":1,"nb":1,"a":[["environment/arsenic_tolerant.html","arsenic tolerant"]],"b":[["proteintraitsmech%3ABIOLIP_ART","ART-binding site"]]},{"id":"CHEBI:35819","l":"","na":1,"nb":1,"a":[["environment/temperature_optimum_mid1.html","temperature optimum mid1"]],"b":[["TCDB%3A3.A.1","The ATP-binding Cassette (ABC) Superfamily"]]},{"id":"CHEBI:41688","l":"crystal violet","na":1,"nb":1,"a":[["morphology/gram_stain.html","gram stain"]],"b":[["TCDB%3A2.A.1","The Major Facilitator Superfamily (MFS)"]]},{"id":"CHEBI:44747","l":"","na":1,"nb":1,"a":[["morphology/brown_pigmented.html","brown pigmented"]],"b":[["proteintraitsmech%3ABIOLIP_OMD","OMD-binding site"]]},{"id":"CHEBI:46837","l":"","na":1,"nb":1,"a":[["morphology/spore_forming.html","spore forming"]],"b":[["proteintraitsmech%3ABIOLIP_PDC","PDC-binding site"]]},{"id":"GO:0002047","l":"phenazine biosynthetic process","na":1,"nb":1,"a":[["morphology/green_pigmented.html","green pigmented"]],"b":[["GO%3A0002047","phenazine biosynthetic process"]]},{"id":"GO:0009420","l":"bacterial-type flagellum filament","na":1,"nb":1,"a":[["morphology/flagellated.html","flagellated"]],"b":[["GO%3A0009420","bacterial-type flagellum filament"]]},{"id":"GO:0015050","l":"methane monooxygenase complex","na":1,"nb":1,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["GO%3A0015050","methane monooxygenase complex"]]},{"id":"GO:0016218","l":"polyketide synthase activity","na":1,"nb":1,"a":[["morphology/black_pigmented.html","black pigmented"]],"b":[["GO%3A0016218","polyketide synthase activity"]]},{"id":"GO:0019643","l":"reductive tricarboxylic acid cycle","na":1,"nb":1,"a":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"]],"b":[["GO%3A0019643","reductive tricarboxylic acid cycle"]]},{"id":"GO:0019655","l":"pyruvate fermentation to ethanol","na":1,"nb":1,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"]],"b":[["GO%3A0019655","pyruvate fermentation to ethanol"]]},{"id":"GO:0033172","l":"gas vesicle shell","na":1,"nb":1,"a":[["morphology/gas_vesicle.html","gas vesicle"]],"b":[["GO%3A0033172","gas vesicle shell"]]},{"id":"GO:0033355","l":"ascorbate glutathione cycle","na":1,"nb":1,"a":[["environment/aerotolerant.html","aerotolerant"]],"b":[["GO%3A0033355","ascorbate glutathione cycle"]]},{"id":"GO:0042603","l":"capsule","na":1,"nb":1,"a":[["morphology/capsule.html","capsule"]],"b":[["GO%3A0042603","capsule"]]},{"id":"GO:0043263","l":"cellulosome","na":1,"nb":1,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["GO%3A0043263","cellulosome"]]},{"id":"GO:0098689","l":"latency-replication decision","na":1,"nb":1,"a":[["genomics/prophage.html","prophage"]],"b":[["GO%3A0098689","latency-replication decision"]]},{"id":"GO:0140649","l":"symbiont-mediated cell-to-cell migration by invasive hypha","na":1,"nb":1,"a":[["ecology/plant_pathogen.html","plant pathogen"]],"b":[["GO%3A0140649","symbiont-mediated cell-to-cell migration by invasive hypha"]]},{"id":"GO:1901177","l":"lycopene biosynthetic process","na":1,"nb":1,"a":[["morphology/yellow_pigmented.html","yellow pigmented"]],"b":[["GO%3A1901177","lycopene biosynthetic process"]]},{"id":"GO:1901812","l":"beta-carotene biosynthetic process","na":1,"nb":1,"a":[["morphology/pigmentation.html","pigmentation"]],"b":[["GO%3A1901812","beta-carotene biosynthetic process"]]},{"id":"InterPro:IPR000067","l":"","na":1,"nb":1,"a":[["morphology/lophotrichous.html","lophotrichous"]],"b":[["PRINTS%3APR01009","Flagellar M-ring protein signature"]]},{"id":"InterPro:IPR002798","l":"","na":1,"nb":1,"a":[["morphology/spore_forming.html","spore forming"]],"b":[["Pfam%3APF01944","Stage II sporulation protein M"]]},{"id":"InterPro:IPR007439","l":"","na":1,"nb":1,"a":[["physiology/chemotaxis.html","chemotaxis"]],"b":[["Pfam%3APF04344","Chemotaxis phosphatase, CheZ"]]},{"id":"InterPro:IPR011895","l":"","na":1,"nb":1,"a":[["metabolism/fermentation.html","Fermentation"]],"b":[["Pfam%3APF10371","Domain of unknown function"]]},{"id":"InterPro:IPR012609","l":"","na":1,"nb":1,"a":[["morphology/spore_shaped.html","spore shaped"]],"b":[["Pfam%3APF08183","Stage V sporulation protein family"]]},{"id":"InterPro:IPR018901","l":"","na":1,"nb":1,"a":[["morphology/spore_shaped.html","spore shaped"]],"b":[["Pfam%3APF10628","Outer spore coat protein E (CotE)"]]},{"id":"InterPro:IPR030858","l":"","na":1,"nb":1,"a":[["morphology/ovoid_shaped.html","ovoid shaped"]],"b":[["HAMAP%3AMF_01941","Mid-cell-anchored protein Z [mapZ]"]]},{"id":"InterPro:IPR047939","l":"","na":1,"nb":1,"a":[["genomics/brex_system.html","BREX system"]],"b":[["Pfam%3APF07669","Eco57I restriction-modification methylase"]]},{"id":"InterPro:IPR048240","l":"","na":1,"nb":1,"a":[["morphology/filament_shaped.html","filament shaped"]],"b":[["Pfam%3APF28068","Polarized growth protein Scy"]]},{"id":"InterPro:IPR052364","l":"","na":1,"nb":1,"a":[["environment/aerotolerant.html","aerotolerant"]],"b":[["PANTHER%3APTHR43865","RUBRERYTHRIN-RELATED"]]},{"id":"METPO:1000605","l":"facultatively anaerobic","na":1,"nb":1,"a":[["environment/facultatively_anaerobic.html","facultatively anaerobic"]],"b":[["METPO%3A1000605","facultatively anaerobic"]]},{"id":"METPO:1000606","l":"obligately aerobic","na":1,"nb":1,"a":[["environment/obligately_aerobic.html","obligately aerobic"]],"b":[["METPO%3A1000606","obligately aerobic"]]},{"id":"METPO:1000608","l":"facultatively aerobic","na":1,"nb":1,"a":[["environment/facultatively_aerobic.html","facultatively aerobic"]],"b":[["METPO%3A1000608","facultatively aerobic"]]},{"id":"METPO:1000610","l":"microaerotolerant","na":1,"nb":1,"a":[["environment/microaerotolerant.html","microaerotolerant"]],"b":[["METPO%3A1000610","microaerotolerant"]]},{"id":"METPO:1000611","l":"strictly anaerobic","na":1,"nb":1,"a":[["environment/strictly_anaerobic.html","strictly anaerobic"]],"b":[["METPO%3A1000611","strictly anaerobic"]]},{"id":"METPO:1000614","l":"psychrophilic","na":1,"nb":1,"a":[["environment/psychrophilic.html","psychrophilic"]],"b":[["METPO%3A1000614","psychrophilic"]]},{"id":"METPO:1000615","l":"mesophilic","na":1,"nb":1,"a":[["environment/mesophilic.html","mesophilic"]],"b":[["METPO%3A1000615","mesophilic"]]},{"id":"METPO:1000616","l":"thermophilic","na":1,"nb":1,"a":[["environment/thermophilic.html","thermophilic"]],"b":[["METPO%3A1000616","thermophilic"]]},{"id":"METPO:1000618","l":"psychrotolerant","na":1,"nb":1,"a":[["environment/psychrotolerant.html","psychrotolerant"]],"b":[["METPO%3A1000618","psychrotolerant"]]},{"id":"METPO:1000619","l":"thermotolerant","na":1,"nb":1,"a":[["environment/thermotolerant.html","thermotolerant"]],"b":[["METPO%3A1000619","thermotolerant"]]},{"id":"METPO:1000621","l":"haloalkaliphilic","na":1,"nb":1,"a":[["environment/haloalkaliphilic.html","haloalkaliphilic"]],"b":[["METPO%3A1000621","haloalkaliphilic"]]},{"id":"METPO:1000623","l":"moderately halophilic","na":1,"nb":1,"a":[["environment/moderately_halophilic.html","moderately halophilic"]],"b":[["METPO%3A1000623","moderately halophilic"]]},{"id":"METPO:1000624","l":"non halophilic","na":1,"nb":1,"a":[["environment/non_halophilic.html","non halophilic"]],"b":[["METPO%3A1000624","non halophilic"]]},{"id":"METPO:1000625","l":"slightly halophilic","na":1,"nb":1,"a":[["environment/slightly_halophilic.html","slightly halophilic"]],"b":[["METPO%3A1000625","slightly halophilic"]]},{"id":"METPO:1000626","l":"stenohaline","na":1,"nb":1,"a":[["environment/stenohaline.html","stenohaline"]],"b":[["METPO%3A1000626","stenohaline"]]},{"id":"METPO:1000627","l":"euryhaline","na":1,"nb":1,"a":[["environment/euryhaline.html","euryhaline"]],"b":[["METPO%3A1000627","euryhaline"]]},{"id":"METPO:1000628","l":"extremely halophilic","na":1,"nb":1,"a":[["environment/extremely_halophilic.html","extremely halophilic"]],"b":[["METPO%3A1000628","extremely halophilic"]]},{"id":"METPO:1000633","l":"carboxydotrophic","na":1,"nb":1,"a":[["physiology/carboxydotrophic.html","carboxydotrophic"]],"b":[["METPO%3A1000633","carboxydotrophic"]]},{"id":"METPO:1000634","l":"chemoautolithotrophic","na":1,"nb":1,"a":[["physiology/chemoautolithotrophic.html","chemoautolithotrophic"]],"b":[["METPO%3A1000634","chemoautolithotrophic"]]},{"id":"METPO:1000635","l":"chemoautotrophic","na":1,"nb":1,"a":[["physiology/chemoautotrophic.html","chemoautotrophic"]],"b":[["METPO%3A1000635","chemoautotrophic"]]},{"id":"METPO:1000636","l":"chemoheterotrophic","na":1,"nb":1,"a":[["physiology/chemoheterotrophic.html","chemoheterotrophic"]],"b":[["METPO%3A1000636","chemoheterotrophic"]]},{"id":"METPO:1000637","l":"chemolithoautotrophic","na":1,"nb":1,"a":[["physiology/chemolithoautotrophic.html","chemolithoautotrophic"]],"b":[["METPO%3A1000637","chemolithoautotrophic"]]},{"id":"METPO:1000638","l":"chemolithoheterotrophic","na":1,"nb":1,"a":[["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"]],"b":[["METPO%3A1000638","chemolithoheterotrophic"]]},{"id":"METPO:1000639","l":"chemolithotrophic","na":1,"nb":1,"a":[["physiology/chemolithotrophic.html","chemolithotrophic"]],"b":[["METPO%3A1000639","chemolithotrophic"]]},{"id":"METPO:1000640","l":"chemoorganoheterotrophic","na":1,"nb":1,"a":[["physiology/chemoorganoheterotrophic.html","chemoorganoheterotrophic"]],"b":[["METPO%3A1000640","chemoorganoheterotrophic"]]},{"id":"METPO:1000646","l":"hydrogenotrophic","na":1,"nb":1,"a":[["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["METPO%3A1000646","hydrogenotrophic"]]},{"id":"METPO:1000647","l":"lithoautotrophic","na":1,"nb":1,"a":[["physiology/lithoautotrophic.html","lithoautotrophic"]],"b":[["METPO%3A1000647","lithoautotrophic"]]},{"id":"METPO:1000648","l":"lithoheterotrophic","na":1,"nb":1,"a":[["physiology/lithoheterotrophic.html","lithoheterotrophic"]],"b":[["METPO%3A1000648","lithoheterotrophic"]]},{"id":"METPO:1000649","l":"lithotrophic","na":1,"nb":1,"a":[["physiology/lithotrophic.html","lithotrophic"]],"b":[["METPO%3A1000649","lithotrophic"]]},{"id":"METPO:1000650","l":"methanotrophic","na":1,"nb":1,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["METPO%3A1000650","methanotrophic"]]},{"id":"METPO:1000651","l":"methylotrophic","na":1,"nb":1,"a":[["physiology/methylotrophic.html","methylotrophic"]],"b":[["METPO%3A1000651","methylotrophic"]]},{"id":"METPO:1000652","l":"mixotrophic","na":1,"nb":1,"a":[["physiology/mixotrophic.html","mixotrophic"]],"b":[["METPO%3A1000652","mixotrophic"]]},{"id":"METPO:1000655","l":"organotrophic","na":1,"nb":1,"a":[["physiology/organotrophic.html","organotrophic"]],"b":[["METPO%3A1000655","organotrophic"]]},{"id":"METPO:1000656","l":"photoautotrophic","na":1,"nb":1,"a":[["physiology/photoautotrophic.html","photoautotrophic"]],"b":[["METPO%3A1000656","photoautotrophic"]]},{"id":"METPO:1000658","l":"photolithotrophic","na":1,"nb":1,"a":[["physiology/photolithotrophic.html","photolithotrophic"]],"b":[["METPO%3A1000658","photolithotrophic"]]},{"id":"METPO:1000659","l":"photoorganoheterotrophic","na":1,"nb":1,"a":[["physiology/photoorganoheterotrophic.html","photoorganoheterotrophic"]],"b":[["METPO%3A1000659","photoorganoheterotrophic"]]},{"id":"METPO:1000663","l":"chemoorganotrophic","na":1,"nb":1,"a":[["physiology/chemoorganotrophic.html","chemoorganotrophic"]],"b":[["METPO%3A1000663","chemoorganotrophic"]]},{"id":"METPO:1000664","l":"organoheterotrophic","na":1,"nb":1,"a":[["physiology/organoheterotrophic.html","organoheterotrophic"]],"b":[["METPO%3A1000664","organoheterotrophic"]]},{"id":"METPO:1000665","l":"photolithoautotrophic","na":1,"nb":1,"a":[["physiology/photolithoautotrophic.html","photolithoautotrophic"]],"b":[["METPO%3A1000665","photolithoautotrophic"]]},{"id":"METPO:1000720","l":"facultative psychrophilic","na":1,"nb":1,"a":[["environment/facultative_psychrophilic.html","facultative psychrophilic"]],"b":[["METPO%3A1000720","facultative psychrophilic"]]},{"id":"METPO:1000721","l":"extreme hyperthermophilic","na":1,"nb":1,"a":[["environment/extreme_hyperthermophilic.html","extreme hyperthermophilic"]],"b":[["METPO%3A1000721","extreme hyperthermophilic"]]},{"id":"METPO:1000801","l":"Aerobic respiration","na":1,"nb":1,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"]],"b":[["METPO%3A1000801","Aerobic respiration"]]},{"id":"METPO:1000803","l":"Oxidative phosphorylation","na":1,"nb":1,"a":[["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"]],"b":[["METPO%3A1000803","Oxidative phosphorylation"]]},{"id":"METPO:1000805","l":"Electron transfer","na":1,"nb":1,"a":[["metabolism/electron_transfer.html","Electron transfer"]],"b":[["METPO%3A1000805","Electron transfer"]]},{"id":"METPO:1000806","l":"Disproportionation","na":1,"nb":1,"a":[["metabolism/disproportionation.html","Disproportionation"]],"b":[["METPO%3A1000806","Disproportionation"]]},{"id":"METPO:1000846","l":"Homoacetogenesis","na":1,"nb":1,"a":[["metabolism/homoacetogenesis.html","Homoacetogenesis"]],"b":[["METPO%3A1000846","Homoacetogenesis"]]},{"id":"METPO:1002003","l":"Cable bacteria metabolism","na":1,"nb":1,"a":[["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"]],"b":[["METPO%3A1002003","Cable bacteria metabolism"]]},{"id":"METPO:1002006","l":"Syntrophy","na":1,"nb":1,"a":[["metabolism/syntrophy.html","Syntrophy"]],"b":[["METPO%3A1002006","Syntrophy"]]},{"id":"METPO:1003001","l":"neutrophilic","na":1,"nb":1,"a":[["environment/neutrophilic.html","neutrophilic"]],"b":[["METPO%3A1003001","neutrophilic"]]},{"id":"METPO:1003004","l":"obligately alkaliphilic","na":1,"nb":1,"a":[["environment/obligately_alkaphilic.html","obligately alkaliphilic"]],"b":[["METPO%3A1003004","obligately alkaliphilic"]]},{"id":"METPO:1003005","l":"facultatively alkaliphilic","na":1,"nb":1,"a":[["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"]],"b":[["METPO%3A1003005","facultatively alkaliphilic"]]},{"id":"METPO:1003006","l":"obligately acidophilic","na":1,"nb":1,"a":[["environment/obligately_acidophilic.html","obligately acidophilic"]],"b":[["METPO%3A1003006","obligately acidophilic"]]},{"id":"METPO:1003007","l":"facultatively acidophilic","na":1,"nb":1,"a":[["environment/facultatively_acidophilic.html","facultatively acidophilic"]],"b":[["METPO%3A1003007","facultatively acidophilic"]]},{"id":"METPO:1003009","l":"alkalotolerant","na":1,"nb":1,"a":[["environment/alkalotolerant.html","alkalotolerant"]],"b":[["METPO%3A1003009","alkalotolerant"]]},{"id":"METPO:1005011","l":"indole test positive","na":1,"nb":1,"a":[["other/indole_test_positive.html","indole test positive"]],"b":[["METPO%3A1005011","indole test positive"]]},{"id":"METPO:1005012","l":"indole test negative","na":1,"nb":1,"a":[["other/indole_test_negative.html","indole test negative"]],"b":[["METPO%3A1005012","indole test negative"]]},{"id":"METPO:1005014","l":"methyl red test positive","na":1,"nb":1,"a":[["other/methyl_red_test_positive.html","methyl red test positive"]],"b":[["METPO%3A1005014","methyl red test positive"]]},{"id":"METPO:1005015","l":"methyl red test negative","na":1,"nb":1,"a":[["other/methyl_red_test_negative.html","methyl red test negative"]],"b":[["METPO%3A1005015","methyl red test negative"]]},{"id":"METPO:1005017","l":"Voges-Proskauer test positive","na":1,"nb":1,"a":[["other/voges_proskauer_test_positive.html","Voges-Proskauer test positive"]],"b":[["METPO%3A1005017","Voges-Proskauer test positive"]]},{"id":"METPO:1005018","l":"Voges-Proskauer test negative","na":1,"nb":1,"a":[["other/voges_proskauer_test_negative.html","Voges-Proskauer test negative"]],"b":[["METPO%3A1005018","Voges-Proskauer test negative"]]},{"id":"METPO:1005021","l":"capnophilic","na":1,"nb":1,"a":[["environment/capnophilic.html","capnophilic"]],"b":[["METPO%3A1005021","capnophilic"]]},{"id":"METPO:1007073","l":"osmotic tolerance","na":1,"nb":1,"a":[["other/osmotic_tolerance.html","osmotic tolerance"]],"b":[["METPO%3A1007073","osmotic tolerance"]]},{"id":"METPO:1007084","l":"catalase negative","na":1,"nb":1,"a":[["other/catalase_negative.html","catalase negative"]],"b":[["METPO%3A1007084","catalase negative"]]},{"id":"METPO:1007086","l":"oxidase negative","na":1,"nb":1,"a":[["other/oxidase_negative.html","oxidase negative"]],"b":[["METPO%3A1007086","oxidase negative"]]},{"id":"METPO:1007088","l":"urease negative","na":1,"nb":1,"a":[["other/urease_negative.html","urease negative"]],"b":[["METPO%3A1007088","urease negative"]]},{"id":"METPO:1007090","l":"coagulase positive","na":1,"nb":1,"a":[["other/coagulase_positive.html","coagulase positive"]],"b":[["METPO%3A1007090","coagulase positive"]]},{"id":"METPO:1007091","l":"coagulase negative","na":1,"nb":1,"a":[["other/coagulase_negative.html","coagulase negative"]],"b":[["METPO%3A1007091","coagulase negative"]]},{"id":"NCBITaxon:133804","l":"uncultured marine gamma proteobacterium EBAC31A08","na":1,"nb":1,"a":[["metabolism/proteorhodopsin_phototrophy.html","proteorhodopsin phototrophy"]],"b":[["PROSITE%3APS00950","Bacterial rhodopsins signature 1"]]},{"id":"NCBITaxon:1392998","l":"Candidatus Methanoperedens nitratireducens","na":1,"nb":1,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"]],"b":[["TED%3AAF-A0A062V4L1-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A062V4L1-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1473598","l":"Paludibaculum fermentans","na":1,"nb":1,"a":[["environment/facultatively_acidophilic.html","facultatively acidophilic"]],"b":[["TED%3AAF-A0A7S7NND6-F1-model_v4_TED01","TED novel fold AF-A0A7S7NND6-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":1,"nb":1,"a":[["morphology/branched_shaped.html","branched shaped"]],"b":[["TED%3AAF-A0A415C3I8-F1-model_v4_TED01","TED highly-symmetric fold AF-A0A415C3I8-F1-model_v4_TED01"]]},{"id":"NCBITaxon:1752","l":"Propionibacterium freudenreichii subsp. shermanii","na":1,"nb":1,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["PROSITE%3APS00544","Methylmalonyl-CoA mutase signature"]]},{"id":"NCBITaxon:2306023","l":"Gemmobacter lutimaris","na":1,"nb":1,"a":[["environment/ph_delta_mid3.html","pH delta mid3"]],"b":[["TED%3AAF-A0A398BQ53-F1-model_v4_TED04","TED novel fold AF-A0A398BQ53-F1-model_v4_TED04"]]},{"id":"NCBITaxon:243164","l":"Dehalococcoides mccartyi 195","na":1,"nb":1,"a":[["metabolism/organohalide_respiration.html","organohalide respiration"]],"b":[["Pfam%3APF13486","Reductive dehalogenase subunit"]]},{"id":"NCBITaxon:29339","l":"Bacillus thuringiensis serovar kurstaki","na":1,"nb":1,"a":[["physiology/quorum_sensing.html","quorum sensing"]],"b":[["Pfam%3APF07029","CryBP1 protein"]]},{"id":"NCBITaxon:296","l":"Pseudomonas fragi","na":1,"nb":1,"a":[["environment/temperature_optimum_low.html","temperature optimum low"]],"b":[["TED%3AAF-A0A449IS41-F1-model_v4_TED01","TED novel fold AF-A0A449IS41-F1-model_v4_TED01"]]},{"id":"NCBITaxon:335541","l":"Syntrophomonas wolfei subsp. wolfei str. Goettingen G311","na":1,"nb":1,"a":[["metabolism/syntrophy.html","Syntrophy"]],"b":[["TED%3AAF-Q0AVF9-F1-model_v4_TED01","TED novel fold AF-Q0AVF9-F1-model_v4_TED01"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["metabolism/photoferrotrophy.html","photoferrotrophy"]],"b":[["Pfam%3APF13282","Domain of unknown function (DUF4070)"]]},{"id":"NCBITaxon:399549","l":"Metallosphaera sedula DSM 5348","na":1,"nb":1,"a":[["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]],"b":[["Pfam%3APF18195","GatD N-terminal domain"]]},{"id":"NCBITaxon:412955","l":"Pseudomonas sp. SCT","na":1,"nb":1,"a":[["metabolism/iodate_respiration.html","iodate respiration"]],"b":[["Pfam%3APF03150","Di-haem cytochrome c peroxidase"]]},{"id":"NCBITaxon:521674","l":"Planctopirus limnophila DSM 3776","na":1,"nb":1,"a":[["morphology/flask_shaped.html","flask shaped"]],"b":[["TED%3AAF-D5SQH0-F1-model_v4_TED01","TED novel fold AF-D5SQH0-F1-model_v4_TED01"]]},{"id":"NCBITaxon:747","l":"Pasteurella multocida","na":1,"nb":1,"a":[["ecology/animal_pathogen.html","animal pathogen"]],"b":[["TED%3AAF-A0A8A8HHD5-F1-model_v4_TED02","TED novel fold AF-A0A8A8HHD5-F1-model_v4_TED02"]]},{"id":"NCBITaxon:766760","l":"Bacillus paralicheniformis ATCC 9945a","na":1,"nb":1,"a":[["genomics/disarm_system.html","DISARM system"]],"b":[["Pfam%3APF24957","DISARM protein DrmE, C-terminal domain"]]},{"id":"NCBITaxon:863","l":"Syntrophomonas wolfei","na":1,"nb":1,"a":[["metabolism/syntrophy.html","Syntrophy"]],"b":[["TED%3AAF-A0A354YY78-F1-model_v4_TED03","TED novel fold AF-A0A354YY78-F1-model_v4_TED03"]]},{"id":"UniProt:P07984","l":"","na":1,"nb":1,"a":[["metabolism/biopolymer_degradation.html","biopolymer degradation"]],"b":[["PROSITE%3APS00561","CBM2a (carbohydrate-binding type-2) domain signature"]]},{"id":"UniProt:P24559","l":"","na":1,"nb":1,"a":[["morphology/twitching_motility.html","twitching motility"]],"b":[["PROSITE%3APS00662","Bacterial type II secretion system protein E signature"]]},{"id":"UniProt:P27709","l":"","na":1,"nb":1,"a":[["morphology/heterocyst.html","heterocyst"]],"b":[["Pfam%3APF18460","Heterocyst differentiation regulator C-terminal Hood domain"]]},{"id":"UniProt:P44413","l":"","na":1,"nb":1,"a":[["genomics/restriction_modification_system.html","restriction-modification system"]],"b":[["Pfam%3APF09226","Restriction endonuclease HincII"]]},{"id":"UniProt:P45573","l":"","na":1,"nb":1,"a":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["Pfam%3APF04358","DsrC like protein"]]},{"id":"UniProt:P9WG29","l":"","na":1,"nb":1,"a":[["physiology/dormancy.html","dormancy"]],"b":[["Pfam%3APF03990","G5-linked-Ubiquitin-like domain"]]},{"id":"UniProt:Q03511","l":"","na":1,"nb":1,"a":[["morphology/carboxysome.html","carboxysome"]],"b":[["PROSITE%3APS01139","Bacterial microcompartment (BMC) domain signature"]]},{"id":"UniProt:Q9F7P4","l":"","na":1,"nb":1,"a":[["metabolism/proteorhodopsin_phototrophy.html","proteorhodopsin phototrophy"]],"b":[["PROSITE%3APS00950","Bacterial rhodopsins signature 1"]]},{"id":"UniProt:Q9HXT9","l":"","na":1,"nb":1,"a":[["ecology/biofilm_formation.html","biofilm formation"]],"b":[["proteintraitsmech%3ABIOLIP_C2E","C2E-binding site"]]},{"id":"UniProt:S5N020","l":"","na":1,"nb":1,"a":[["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"]],"b":[["proteintraitsmech%3ABIOLIP_1VU","1VU-binding site"]]}]} \ No newline at end of file diff --git a/assets/fleet/edges/TraitMech--TaxonMech.json b/assets/fleet/edges/TraitMech--TaxonMech.json index d8b1b18..30d045e 100644 --- a/assets/fleet/edges/TraitMech--TaxonMech.json +++ b/assets/fleet/edges/TraitMech--TaxonMech.json @@ -1 +1 @@ -{"a":"TraitMech","b":"TaxonMech","base":{"TraitMech":"https://culturebotai.github.io/TraitMech/pages/traits/","TaxonMech":"https://culturebotai.github.io/TaxonMech/pages/taxon.html?id="},"n":274,"by":{"NCBITaxon":274},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":65,"nb":3868,"a":[["ecology/biosafety_level.html","biosafety level"],["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/host_associated.html","host-associated"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/halophily_preference.html","halophily preference"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A196023","Aeromonas hydrophila subsp. hydrophila"],["NCBITaxon%3A380703","Aeromonas hydrophila subsp. hydrophila ATCC 7966"],["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A35703","Citrobacter amalonaticus"],["NCBITaxon%3A163202","Corynebacterium appendicis"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli (strain K12)","na":26,"nb":39,"a":[["environment/ph_phenotype_with_numerical_limits.html","pH phenotype with numerical limits"],["environment/temperature_optimum_mid4.html","temperature optimum mid4"],["genomics/rnlab_system.html","RnlAB system"],["metabolism/metabolism.html","metabolism"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/respiration.html","respiration"]],"b":[["NCBITaxon%3A679895","Escherichia coli BW25113"],["NCBITaxon%3A595496","Escherichia coli BW2952"],["NCBITaxon%3A1318715","Escherichia coli BW38028"],["NCBITaxon%3A1245474","Escherichia coli ER2796"],["NCBITaxon%3A83333","Escherichia coli K-12"],["NCBITaxon%3A527799","Escherichia coli LW1655F+"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":19,"nb":32,"a":[["environment/aerotolerant.html","aerotolerant"],["genomics/abia_system.html","AbiA system"],["genomics/abib_system.html","AbiB system"],["genomics/abic_system.html","AbiC system"],["genomics/abid_system.html","AbiD system"],["genomics/abie_system.html","AbiE system"]],"b":[["NCBITaxon%3A1359","Lactococcus cremoris"],["NCBITaxon%3A2816960","Lactococcus cremoris subsp. cremoris"],["NCBITaxon%3A1348655","Lactococcus cremoris subsp. cremoris NBRC 100676"],["NCBITaxon%3A1363","Lactococcus garvieae"],["NCBITaxon%3A1358","Lactococcus lactis"],["NCBITaxon%3A2731284","Lactococcus lactis (ex Latorre-Guzman et al. 1977) Schleifer et al. 1986"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":18,"nb":82,"a":[["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/neutrophilic.html","neutrophilic"],["environment/non_halophilic.html","non halophilic"],["genomics/spbk_system.html","SpbK system"]],"b":[["NCBITaxon%3A1390","Bacillus amyloliquefaciens"],["NCBITaxon%3A1452","Bacillus atrophaeus"],["NCBITaxon%3A640707","Bacillus atrophaeus ATCC 9372"],["NCBITaxon%3A483913","Bacillus inaquosorum"],["NCBITaxon%3A1236548","Bacillus inaquosorum KCTC 13429"],["NCBITaxon%3A1402","Bacillus licheniformis"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":15,"nb":4740,"a":[["ecology/biosafety_level_2.html","biosafety level 2"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/coccus_shaped.html","coccus shaped"]],"b":[["NCBITaxon%3A475088","Methanosphaerula palustris"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1389955","Escherichia coli ATCC 35150"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A574","Klebsiella pneumoniae subsp. ozaenae"],["NCBITaxon%3A1218098","Klebsiella pneumoniae subsp. ozaenae NBRC 105683"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":11,"nb":557,"a":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/aerobic.html","aerobic"],["genomics/avast_system.html","AVAST system"],["genomics/jukab_system.html","JukAB system"],["morphology/motile.html","motile"]],"b":[["NCBITaxon%3A2073169","Chromobacterium alticapitis"],["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1454219","Pseudomonas aeruginosa 059A"],["NCBITaxon%3A1421538","Pseudomonas aeruginosa 0812"],["NCBITaxon%3A1421545","Pseudomonas aeruginosa 0822"],["NCBITaxon%3A1421531","Pseudomonas aeruginosa 0C2E"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":9,"nb":287,"a":[["environment/euryhaline.html","euryhaline"],["genomics/dartg_system.html","DarTG system"],["genomics/ddmde_system.html","DdmDE system"],["genomics/genomic_island.html","genomic island"],["genomics/lamassu_system.html","Lamassu system"],["genomics/nixi_system.html","NixI system"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A666","Vibrio cholerae"],["NCBITaxon%3A693741","Vibrio cholerae 0139-ARG"],["NCBITaxon%3A1294144","Vibrio cholerae 01-1751"],["NCBITaxon%3A592313","Vibrio cholerae 12129(1)"],["NCBITaxon%3A412966","Vibrio cholerae 1587"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":6,"nb":5776,"a":[["ecology/animal_pathogen.html","animal pathogen"],["ecology/biosafety_level_2.html","biosafety level 2"],["genomics/genomic_island.html","genomic island"],["genomics/prophage.html","prophage"],["morphology/flagellated.html","flagellated"],["morphology/peritrichous.html","peritrichous"]],"b":[["NCBITaxon%3A54736","Salmonella bongori"],["NCBITaxon%3A218493","Salmonella bongori NCTC 12419"],["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59203","Salmonella enterica subsp. arizonae"],["NCBITaxon%3A2577126","Salmonella enterica subsp. arizonae serovar 11:z4,z23:-"],["NCBITaxon%3A2577127","Salmonella enterica subsp. arizonae serovar 13,22:z4,z23:-"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":6,"nb":422,"a":[["metabolism/butanediol_fermentation.html","2,3-butanediol fermentation"],["metabolism/citrate_fermentation.html","citrate fermentation"],["morphology/capsule.html","capsule"],["morphology/non_motile.html","non motile"],["other/indole_test_negative.html","indole test negative"],["other/methyl_red_test_negative.html","methyl red test negative"]],"b":[["NCBITaxon%3A1653844","Erwinia carnegieana"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A2058152","Klebsiella grimontii"],["NCBITaxon%3A54291","Klebsiella ornithinolytica"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A1443592","Klebsiella pneumoniae 07A044"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":6,"nb":53,"a":[["ecology/free_living.html","free-living"],["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["genomics/transposable_element.html","transposable element"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"]],"b":[["NCBITaxon%3A47920","Acidovorax delafieldii"],["NCBITaxon%3A301","Ectopseudomonas oleovorans"],["NCBITaxon%3A29581","Janthinobacterium lividum"],["NCBITaxon%3A294","Pseudomonas fluorescens"],["NCBITaxon%3A77298","Pseudomonas jessenii"],["NCBITaxon%3A1968891","Pseudomonas jessenii subsp. pseudoputida"]]},{"id":"NCBITaxon:1488","l":"Clostridium acetobutylicum","na":7,"nb":6,"a":[["environment/anaerobic.html","anaerobic"],["environment/obligately_anaerobic.html","obligately anaerobic"],["metabolism/fermentation.html","Fermentation"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"],["morphology/gram_variable.html","gram variable"],["morphology/spindle_shaped.html","spindle shaped"]],"b":[["NCBITaxon%3A1488","Clostridium acetobutylicum"],["NCBITaxon%3A272562","Clostridium acetobutylicum ATCC 824"],["NCBITaxon%3A991791","Clostridium acetobutylicum DSM 1731"],["NCBITaxon%3A863638","Clostridium acetobutylicum EA 2018"],["NCBITaxon%3A1520","Clostridium beijerinckii"],["NCBITaxon%3A1506","Clostridium sp."]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":6,"nb":6,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/oxidase_activity.html","oxidase activity"]],"b":[["NCBITaxon%3A266","Paracoccus denitrificans"],["NCBITaxon%3A1302247","Paracoccus denitrificans JCM 21484"],["NCBITaxon%3A318586","Paracoccus denitrificans PD1222"],["NCBITaxon%3A1051075","Paracoccus denitrificans SD1"],["NCBITaxon%3A82367","Paracoccus pantotrophus"],["NCBITaxon%3A189685","uncultured Paracoccus sp."]]},{"id":"NCBITaxon:1773","l":"Mycobacterium tuberculosis","na":5,"nb":2946,"a":[["ecology/biosafety_level_3.html","biosafety level 3"],["ecology/human_pathogen.html","human pathogen"],["physiology/acid_phosphatase_activity.html","acid phosphatase activity"],["physiology/dormancy.html","dormancy"],["physiology/pyrazinamidase_activity.html","pyrazinamidase activity"]],"b":[["NCBITaxon%3A1773","Mycobacterium tuberculosis"],["NCBITaxon%3A668339","Mycobacterium tuberculosis 00_1695"],["NCBITaxon%3A1455192","Mycobacterium tuberculosis 01-Cr4_ND_3_A"],["NCBITaxon%3A1455078","Mycobacterium tuberculosis 01-Ps1_0_A"],["NCBITaxon%3A515616","Mycobacterium tuberculosis 02_1987"],["NCBITaxon%3A1455200","Mycobacterium tuberculosis 02-Cr4_ND_3_B"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":5,"nb":168,"a":[["genomics/gabija_system.html","Gabija system"],["genomics/shedu_system.html","Shedu system"],["genomics/thoeris_system.html","Thoeris system"],["physiology/caseinase_activity.html","caseinase activity"],["physiology/lecithinase_activity.html","lecithinase activity"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A572264","Bacillus cereus 03BB102"],["NCBITaxon%3A451709","Bacillus cereus 03BB108"],["NCBITaxon%3A526967","Bacillus cereus 172560W"],["NCBITaxon%3A363751","Bacillus cereus 31673"],["NCBITaxon%3A526979","Bacillus cereus 95/8201"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":32,"a":[["metabolism/chitinolysis.html","chitinolysis"],["morphology/pigmentation.html","pigmentation"],["morphology/red_pigmented.html","red pigmented"],["morphology/white_pigmented.html","white pigmented"],["physiology/beta_n_acetylhexosaminidase_activity.html","beta-N-acetylhexosaminidase activity"]],"b":[["NCBITaxon%3A2703793","Serratia bockelmannii"],["NCBITaxon%3A615","Serratia marcescens"],["NCBITaxon%3A1257036","Serratia marcescens 12"],["NCBITaxon%3A1255611","Serratia marcescens 448"],["NCBITaxon%3A1333586","Serratia marcescens AB42556419-isolate1"],["NCBITaxon%3A1400186","Serratia marcescens BIDMC 44"]]},{"id":"NCBITaxon:920","l":"Acidithiobacillus ferrooxidans","na":5,"nb":10,"a":[["environment/obligately_acidophilic.html","obligately acidophilic"],["environment/ph_range_low.html","pH range low"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["NCBITaxon%3A163359","Acidiferrobacter thiooxydans"],["NCBITaxon%3A1232575","Acidithiobacillus ferridurans"],["NCBITaxon%3A920","Acidithiobacillus ferrooxidans"],["NCBITaxon%3A243159","Acidithiobacillus ferrooxidans ATCC 23270"],["NCBITaxon%3A380394","Acidithiobacillus ferrooxidans ATCC 53993"],["NCBITaxon%3A1433292","Acidithiobacillus ferrooxidans BY-3"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":5,"nb":8,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"],["physiology/hydrogenotrophic.html","hydrogenotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"]],"b":[["NCBITaxon%3A119219","Cupriavidus metallidurans"],["NCBITaxon%3A106590","Cupriavidus necator"],["NCBITaxon%3A1304882","Cupriavidus necator A5-1"],["NCBITaxon%3A381666","Cupriavidus necator H16"],["NCBITaxon%3A53482","Cupriavidus necator H850"],["NCBITaxon%3A1042878","Cupriavidus necator N-1"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":7,"nb":5,"a":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/copper_tolerant.html","copper tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["environment/metal_tolerant.html","metal tolerant"]],"b":[["NCBITaxon%3A119219","Cupriavidus metallidurans"],["NCBITaxon%3A266264","Cupriavidus metallidurans CH34"],["NCBITaxon%3A1395123","Cupriavidus metallidurans H1130"],["NCBITaxon%3A1218106","Cupriavidus metallidurans NBRC 101272"],["NCBITaxon%3A1873897","Cupriavidus sp."]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":4,"nb":389,"a":[["morphology/diplococcus_shaped.html","diplococcus shaped"],["morphology/non_motile.html","non motile"],["morphology/sphere_shaped.html","sphere shaped"],["physiology/natural_competence.html","natural competence"]],"b":[["NCBITaxon%3A1503055","Burkholderia territorii"],["NCBITaxon%3A1270","Micrococcus luteus"],["NCBITaxon%3A465515","Micrococcus luteus NCTC 2665"],["NCBITaxon%3A33051","Sphingomonas sanguinis"],["NCBITaxon%3A1219054","Sphingomonas sanguinis NBRC 13937"],["NCBITaxon%3A1313","Streptococcus pneumoniae"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":4,"nb":66,"a":[["ecology/mutualism.html","mutualism"],["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["ecology/symbiosis.html","symbiosis"],["genomics/hna_system.html","Hna system"]],"b":[["NCBITaxon%3A382","Sinorhizobium meliloti"],["NCBITaxon%3A266834","Sinorhizobium meliloti 1021"],["NCBITaxon%3A1194706","Sinorhizobium meliloti 1A42"],["NCBITaxon%3A1286640","Sinorhizobium meliloti 2011"],["NCBITaxon%3A1041151","Sinorhizobium meliloti 4H41"],["NCBITaxon%3A1194707","Sinorhizobium meliloti 5A14"]]},{"id":"NCBITaxon:1148","l":"Synechocystis sp. PCC 6803","na":4,"nb":12,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/trophic_type.html","trophic type"]],"b":[["NCBITaxon%3A1148","Synechocystis sp. PCC 6803"],["NCBITaxon%3A2932627","Synechocystis sp. PCC 6803 subst. PCC-Mn"],["NCBITaxon%3A2932628","Synechocystis sp. PCC 6803 subst. PCC-Pn"],["NCBITaxon%3A2962876","Synechocystis sp. PCC 6803 substr. D1-D170H"],["NCBITaxon%3A1080228","Synechocystis sp. PCC 6803 substr. GT-I"],["NCBITaxon%3A2932626","Synechocystis sp. PCC 6803 substr. GT-In"]]},{"id":"NCBITaxon:155892","l":"Caulobacter vibrioides","na":7,"nb":4,"a":[["ecology/free_living.html","free-living"],["morphology/cell_width.html","cell width"],["morphology/crescent_shaped.html","crescent shaped"],["morphology/curved_shaped.html","curved shaped"],["morphology/holdfast.html","holdfast"],["morphology/monotrichous.html","monotrichous"]],"b":[["NCBITaxon%3A155892","Caulobacter vibrioides"],["NCBITaxon%3A190650","Caulobacter vibrioides CB15"],["NCBITaxon%3A565050","Caulobacter vibrioides NA1000"],["NCBITaxon%3A1292034","Caulobacter vibrioides OR37"]]},{"id":"NCBITaxon:224308","l":"Bacillus subtilis (strain 168)","na":4,"nb":5,"a":[["metabolism/proteolysis.html","proteolysis"],["morphology/spore_forming.html","spore forming"],["morphology/spore_shaped.html","spore shaped"],["morphology/sporulation.html","sporulation"]],"b":[["NCBITaxon%3A1423","Bacillus subtilis"],["NCBITaxon%3A135461","Bacillus subtilis subsp. subtilis"],["NCBITaxon%3A224308","Bacillus subtilis subsp. subtilis str. 168"],["NCBITaxon%3A536088","Bacillus subtilis subsp. subtilis str. L170"],["NCBITaxon%3A536089","Bacillus subtilis subsp. subtilis str. N170"]]},{"id":"NCBITaxon:1314","l":"Streptococcus pyogenes","na":3,"nb":839,"a":[["environment/aerotolerant.html","aerotolerant"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"],["morphology/streptococcus_arrangement.html","streptococcus arrangement"]],"b":[["NCBITaxon%3A45634","Streptococcus cristatus"],["NCBITaxon%3A1314","Streptococcus pyogenes"],["NCBITaxon%3A1050217","Streptococcus pyogenes 005-D5"],["NCBITaxon%3A1210041","Streptococcus pyogenes 06BA18369"],["NCBITaxon%3A1235829","Streptococcus pyogenes A20"],["NCBITaxon%3A562016","Streptococcus pyogenes AA216"]]},{"id":"NCBITaxon:210","l":"Helicobacter pylori","na":3,"nb":631,"a":[["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/helical_shaped.html","helical shaped"],["morphology/lophotrichous.html","lophotrichous"]],"b":[["NCBITaxon%3A210","Helicobacter pylori"],["NCBITaxon%3A1028810","Helicobacter pylori 10700"],["NCBITaxon%3A585532","Helicobacter pylori 118"],["NCBITaxon%3A102610","Helicobacter pylori #12"],["NCBITaxon%3A585533","Helicobacter pylori 120"],["NCBITaxon%3A103187","Helicobacter pylori 15818"]]},{"id":"NCBITaxon:54298","l":"Chroococcidiopsis","na":3,"nb":302,"a":[["environment/desiccation_tolerant.html","desiccation tolerant"],["environment/uv_radiation_tolerant.html","UV radiation tolerant"],["environment/xerophilic.html","xerophilic"]],"b":[["NCBITaxon%3A2138304","Chroococcidiopsis bourrellyana"],["NCBITaxon%3A2138305","Chroococcidiopsis bourrellyana NTLRM1"],["NCBITaxon%3A869946","Chroococcidiopsis cf. cubana CCALA 047"],["NCBITaxon%3A171392","Chroococcidiopsis cubana"],["NCBITaxon%3A3024990","Chroococcidiopsis cubana C108"],["NCBITaxon%3A2942199","Chroococcidiopsis cubana C148"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":3,"nb":118,"a":[["ecology/commensalism.html","commensalism"],["genomics/nhi_system.html","Nhi system"],["other/coagulase_negative.html","coagulase negative"]],"b":[["NCBITaxon%3A69966","Macrococcoides caseolyticum"],["NCBITaxon%3A1822","Nocardia vaccinii"],["NCBITaxon%3A1210098","Nocardia vaccinii NBRC 15922"],["NCBITaxon%3A1282","Staphylococcus epidermidis"],["NCBITaxon%3A1235440","Staphylococcus epidermidis 12142587"],["NCBITaxon%3A1000590","Staphylococcus epidermidis 14.1.R1.SE"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":3,"nb":101,"a":[["environment/anaerobic.html","anaerobic"],["environment/strictly_anaerobic.html","strictly anaerobic"],["metabolism/fumarate_respiration.html","fumarate respiration"]],"b":[["NCBITaxon%3A817","Bacteroides fragilis"],["NCBITaxon%3A457424","Bacteroides fragilis 3_1_12"],["NCBITaxon%3A862962","Bacteroides fragilis 638R"],["NCBITaxon%3A1308728","Bacteroides fragilis ADL-402"],["NCBITaxon%3A1263046","Bacteroides fragilis CAG:47"],["NCBITaxon%3A1263047","Bacteroides fragilis CAG:558"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":3,"nb":79,"a":[["ecology/rhizosphere_association.html","rhizosphere association"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/psychrotolerant.html","psychrotolerant"]],"b":[["NCBITaxon%3A1931223","Caballeronia sp."],["NCBITaxon%3A89065","Pseudomonas abietaniphila"],["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1123912","Pseudomonas auricularis"],["NCBITaxon%3A930166","Pseudomonas brassicacearum"],["NCBITaxon%3A129817","Pseudomonas brenneri"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa (strain ATCC 15692 / DSM 22644 / CIP 104116 / JCM 14847 / LMG 12228 / 1C / PRS 101 / PAO1)","na":3,"nb":23,"a":[["ecology/biofilm_formation.html","biofilm formation"],["morphology/twitching_motility.html","twitching motility"],["morphology/type_iv_pilus.html","type IV pilus"]],"b":[["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1453991","Pseudomonas aeruginosa BK1"],["NCBITaxon%3A1236530","Pseudomonas aeruginosa JCM 14847"],["NCBITaxon%3A1131757","Pseudomonas aeruginosa MPAO1/P1"],["NCBITaxon%3A1131758","Pseudomonas aeruginosa MPAO1/P2"],["NCBITaxon%3A208964","Pseudomonas aeruginosa PAO1"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":3,"nb":15,"a":[["ecology/mutualism.html","mutualism"],["physiology/bioluminescence.html","bioluminescence"],["physiology/quorum_sensing.html","quorum sensing"]],"b":[["NCBITaxon%3A668","Aliivibrio fischeri"],["NCBITaxon%3A617136","Aliivibrio fischeri 1-C10"],["NCBITaxon%3A617138","Aliivibrio fischeri 9ZB36"],["NCBITaxon%3A1298605","Aliivibrio fischeri ATCC 7744 = JCM 18803 = DSM 507"],["NCBITaxon%3A1367486","Aliivibrio fischeri CB37"],["NCBITaxon%3A1367487","Aliivibrio fischeri EM17"]]},{"id":"NCBITaxon:2242","l":"Halobacterium salinarum","na":3,"nb":14,"a":[["environment/extremely_halophilic.html","extremely halophilic"],["environment/halophilic.html","halophilic"],["morphology/intracellular_inclusion.html","intracellular inclusion"]],"b":[["NCBITaxon%3A2242","Halobacterium salinarum"],["NCBITaxon%3A2597657","Halobacterium salinarum DSM 3754"],["NCBITaxon%3A64091","Halobacterium salinarum NRC-1"],["NCBITaxon%3A2886895","Halobacterium salinarum NRC-34001"],["NCBITaxon%3A478009","Halobacterium salinarum R1"],["NCBITaxon%3A2109941","Halobacterium salinarum str. WSR1 (ex H. Halobium)"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":3,"nb":12,"a":[["environment/aerobic.html","aerobic"],["environment/obligately_aerobic.html","obligately aerobic"],["morphology/tetrad_arrangement.html","tetrad arrangement"]],"b":[["NCBITaxon%3A72000","Kocuria rhizophila"],["NCBITaxon%3A378753","Kocuria rhizophila DC2201"],["NCBITaxon%3A1272","Kocuria varians"],["NCBITaxon%3A1270","Micrococcus luteus"],["NCBITaxon%3A1357403","Micrococcus luteus CD1_FAA_NB_1"],["NCBITaxon%3A935864","Micrococcus luteus J28"]]},{"id":"NCBITaxon:1085","l":"Rhodospirillum rubrum","na":6,"nb":3,"a":[["metabolism/phototrophy.html","phototrophy"],["morphology/spiral_shaped.html","spiral shaped"],["physiology/carboxydotrophic.html","carboxydotrophic"],["physiology/photoheterotrophic.html","photoheterotrophic"],["physiology/photoorganoheterotrophic.html","photoorganoheterotrophic"],["physiology/phototrophic.html","phototrophic"]],"b":[["NCBITaxon%3A1085","Rhodospirillum rubrum"],["NCBITaxon%3A269796","Rhodospirillum rubrum ATCC 11170"],["NCBITaxon%3A1036743","Rhodospirillum rubrum F11"]]},{"id":"NCBITaxon:1299","l":"Deinococcus radiodurans","na":6,"nb":3,"a":[["environment/ionizing_radiation_tolerant.html","ionizing radiation tolerant"],["environment/radiotolerant.html","radiotolerant"],["environment/uv_radiation_tolerant.html","UV radiation tolerant"],["environment/xerophilic.html","xerophilic"],["morphology/orange_pigmented.html","orange pigmented"],["physiology/stress_response.html","stress response"]],"b":[["NCBITaxon%3A1299","Deinococcus radiodurans"],["NCBITaxon%3A243230","Deinococcus radiodurans R1 = ATCC 13939 = DSM 20539"],["NCBITaxon%3A47478","Deinococcus sp."]]},{"id":"NCBITaxon:1525","l":"Neomoorella thermoacetica","na":3,"nb":5,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"]],"b":[["NCBITaxon%3A264732","Moorella thermoacetica ATCC 39073"],["NCBITaxon%3A1122242","Moorella thermoacetica DSM 1974"],["NCBITaxon%3A1325331","Moorella thermoacetica Y72"],["NCBITaxon%3A3051332","Neomoorella caeni"],["NCBITaxon%3A1525","Neomoorella thermoacetica"]]},{"id":"NCBITaxon:35554","l":"Geobacter sulfurreducens","na":3,"nb":5,"a":[["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/electron_transfer.html","Electron transfer"]],"b":[["NCBITaxon%3A35554","Geobacter sulfurreducens"],["NCBITaxon%3A663917","Geobacter sulfurreducens KN400"],["NCBITaxon%3A243231","Geobacter sulfurreducens PCA"],["NCBITaxon%3A1260928","Geobacter sulfurreducens subsp. ethanolicus"],["NCBITaxon%3A1649546","Geobacter sulfurreducens subsp. sulfurreducens"]]},{"id":"NCBITaxon:1902","l":"Streptomyces coelicolor","na":3,"nb":3,"a":[["ecology/saprotrophy.html","saprotrophy"],["ecology/soil_dwelling.html","soil-dwelling"],["morphology/mycelial_growth.html","mycelial growth"]],"b":[["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A1902","Streptomyces coelicolor"],["NCBITaxon%3A100226","Streptomyces coelicolor A3(2)"]]},{"id":"NCBITaxon:431944","l":"Magnetospirillum gryphiswaldense MSR-1","na":3,"nb":3,"a":[["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/magnetosome.html","magnetosome"],["physiology/magnetotaxis.html","magnetotaxis"]],"b":[["NCBITaxon%3A55518","Magnetospirillum gryphiswaldense"],["NCBITaxon%3A431944","Magnetospirillum gryphiswaldense MSR-1"],["NCBITaxon%3A1430440","Magnetospirillum gryphiswaldense MSR-1 v2"]]},{"id":"NCBITaxon:9","l":"Buchnera aphidicola","na":2,"nb":539,"a":[["ecology/endosymbiosis.html","endosymbiosis"],["ecology/symbiosis.html","symbiosis"]],"b":[["NCBITaxon%3A9","Buchnera aphidicola"],["NCBITaxon%3A2994845","Buchnera aphidicola (Acyrthosiphon caraganae)"],["NCBITaxon%3A668607","Buchnera aphidicola (Acyrthosiphon kondoi)"],["NCBITaxon%3A1241832","Buchnera aphidicola (Acyrthosiphon lactucae)"],["NCBITaxon%3A118099","Buchnera aphidicola (Acyrthosiphon pisum)"],["NCBITaxon%3A1499971","Buchnera aphidicola (Acyrthosiphon solani)"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":2,"nb":391,"a":[["genomics/abialpha_system.html","AbiAlpha system"],["physiology/gelatinase_activity.html","gelatinase activity"]],"b":[["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A1260363","Enterococcus faecalis 02-MB-BW-10"],["NCBITaxon%3A1260365","Enterococcus faecalis 02-MB-P-10"],["NCBITaxon%3A1260358","Enterococcus faecalis 06-MB-DW-09"],["NCBITaxon%3A1260359","Enterococcus faecalis 06-MB-S-04"],["NCBITaxon%3A1260360","Enterococcus faecalis 06-MB-S-10"]]},{"id":"NCBITaxon:485","l":"Neisseria gonorrhoeae","na":2,"nb":90,"a":[["physiology/oxidase_activity.html","oxidase activity"],["physiology/prolyl_aminopeptidase_activity.html","prolyl aminopeptidase activity"]],"b":[["NCBITaxon%3A485","Neisseria gonorrhoeae"],["NCBITaxon%3A528345","Neisseria gonorrhoeae 1291"],["NCBITaxon%3A1193404","Neisseria gonorrhoeae 3502"],["NCBITaxon%3A528346","Neisseria gonorrhoeae 35/02"],["NCBITaxon%3A1352347","Neisseria gonorrhoeae ALB_2011_01-02"],["NCBITaxon%3A1351778","Neisseria gonorrhoeae ALB_2011_03_03"]]},{"id":"NCBITaxon:32046","l":"Synechococcus elongatus","na":2,"nb":64,"a":[["morphology/carboxysome.html","carboxysome"],["physiology/autotrophic.html","autotrophic"]],"b":[["NCBITaxon%3A326333","Synechococcus cf. elongatus CCMP1379"],["NCBITaxon%3A32046","Synechococcus elongatus"],["NCBITaxon%3A1665532","Synechococcus elongatus 0814_107_005_M13_Fp"],["NCBITaxon%3A2729336","Synechococcus elongatus AARL T012"],["NCBITaxon%3A3073440","Synechococcus elongatus ACC1"],["NCBITaxon%3A1130982","Synechococcus elongatus ARKK1"]]},{"id":"NCBITaxon:727","l":"Haemophilus influenzae","na":2,"nb":43,"a":[["genomics/restriction_modification_system.html","restriction-modification system"],["morphology/coccobacillus_shaped.html","coccobacillus shaped"]],"b":[["NCBITaxon%3A727","Haemophilus influenzae"],["NCBITaxon%3A862964","Haemophilus influenzae 10810"],["NCBITaxon%3A1232659","Haemophilus influenzae 2019"],["NCBITaxon%3A374927","Haemophilus influenzae 22.1-21"],["NCBITaxon%3A520729","Haemophilus influenzae 22.1-24"],["NCBITaxon%3A375063","Haemophilus influenzae 22.4-21"]]},{"id":"NCBITaxon:1021","l":"Beggiatoa","na":2,"nb":33,"a":[["morphology/filament_shaped.html","filament shaped"],["physiology/mixotrophic.html","mixotrophic"]],"b":[["NCBITaxon%3A1022","Beggiatoa alba"],["NCBITaxon%3A395493","Beggiatoa alba B18LD"],["NCBITaxon%3A288004","Beggiatoa leptomitoformis"],["NCBITaxon%3A1962953","Beggiatoa sp."],["NCBITaxon%3A1579656","Beggiatoa sp. 11.1"],["NCBITaxon%3A1579657","Beggiatoa sp. 13.1"]]},{"id":"NCBITaxon:28116","l":"Bacteroides ovatus","na":2,"nb":33,"a":[["metabolism/xylan_degradation.html","xylan degradation"],["physiology/amylase_activity.html","amylase activity"]],"b":[["NCBITaxon%3A28116","Bacteroides ovatus"],["NCBITaxon%3A665954","Bacteroides ovatus 3_8_47FAA"],["NCBITaxon%3A411476","Bacteroides ovatus ATCC 8483"],["NCBITaxon%3A1263050","Bacteroides ovatus CAG:22"],["NCBITaxon%3A997885","Bacteroides ovatus CL02T12C04"],["NCBITaxon%3A997886","Bacteroides ovatus CL03T12C18"]]},{"id":"NCBITaxon:818","l":"Bacteroides thetaiotaomicron","na":2,"nb":32,"a":[["ecology/gut_associated.html","gut-associated"],["ecology/host_associated.html","host-associated"]],"b":[["NCBITaxon%3A47678","Bacteroides caccae"],["NCBITaxon%3A411901","Bacteroides caccae ATCC 43185"],["NCBITaxon%3A29523","Bacteroides sp."],["NCBITaxon%3A818","Bacteroides thetaiotaomicron"],["NCBITaxon%3A1263054","Bacteroides thetaiotaomicron CAG:40"],["NCBITaxon%3A1235785","Bacteroides thetaiotaomicron dnLKV9"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":2,"nb":25,"a":[["genomics/crispr_cas_system.html","CRISPR-Cas system"],["genomics/phage_defense_system.html","phage defense system"]],"b":[["NCBITaxon%3A35783","Enterococcus sp."],["NCBITaxon%3A1308","Streptococcus thermophilus"],["NCBITaxon%3A1435981","Streptococcus thermophilus 1F8CT"],["NCBITaxon%3A1408178","Streptococcus thermophilus ASCC 1275"],["NCBITaxon%3A1263110","Streptococcus thermophilus CAG:236"],["NCBITaxon%3A1042404","Streptococcus thermophilus CNCM I-1630"]]},{"id":"NCBITaxon:43080","l":"Saccharolobus islandicus","na":2,"nb":22,"a":[["environment/temperature_optimum_high.html","temperature optimum high"],["environment/temperature_range_high.html","temperature range high"]],"b":[["NCBITaxon%3A43080","Saccharolobus islandicus"],["NCBITaxon%3A930943","Saccharolobus islandicus HVE10/4"],["NCBITaxon%3A425944","Saccharolobus islandicus L.D.8.5"],["NCBITaxon%3A429572","Saccharolobus islandicus L.S.2.15"],["NCBITaxon%3A1241935","Saccharolobus islandicus LAL14/1"],["NCBITaxon%3A427317","Saccharolobus islandicus M.14.25"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":2,"nb":15,"a":[["genomics/wadjet_system.html","Wadjet system"],["morphology/irregular_shaped.html","irregular shaped"]],"b":[["NCBITaxon%3A38285","Corynebacterium acetoacidophilum"],["NCBITaxon%3A1718","Corynebacterium glutamicum"],["NCBITaxon%3A196627","Corynebacterium glutamicum ATCC 13032"],["NCBITaxon%3A1079988","Corynebacterium glutamicum ATCC 14067"],["NCBITaxon%3A1204414","Corynebacterium glutamicum K051"],["NCBITaxon%3A1310161","Corynebacterium glutamicum MB001"]]},{"id":"NCBITaxon:542","l":"Zymomonas mobilis","na":2,"nb":15,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["physiology/nad_dependent_alcohol_dehydrogenase_activity.html","NAD-dependent alcohol dehydrogenase activity"]],"b":[["NCBITaxon%3A223958","Exiguobacterium oxidotolerans"],["NCBITaxon%3A1397699","Exiguobacterium oxidotolerans JCM 12280"],["NCBITaxon%3A542","Zymomonas mobilis"],["NCBITaxon%3A325472","Zymomonas mobilis subsp. francensis"],["NCBITaxon%3A120045","Zymomonas mobilis subsp. mobilis"],["NCBITaxon%3A555217","Zymomonas mobilis subsp. mobilis ATCC 10988"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":2,"nb":11,"a":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"]],"b":[["NCBITaxon%3A1063","Cereibacter sphaeroides"],["NCBITaxon%3A272943","Cereibacter sphaeroides 2.4.1"],["NCBITaxon%3A349102","Cereibacter sphaeroides ATCC 17025"],["NCBITaxon%3A349101","Cereibacter sphaeroides ATCC 17029"],["NCBITaxon%3A39723","Cereibacter sphaeroides f. sp. denitrificans"],["NCBITaxon%3A633146","Cereibacter sphaeroides GA"]]},{"id":"NCBITaxon:274","l":"Thermus thermophilus","na":2,"nb":8,"a":[["environment/thermophilic.html","thermophilic"],["morphology/cell_width.html","cell width"]],"b":[["NCBITaxon%3A274","Thermus thermophilus"],["NCBITaxon%3A1316935","Thermus thermophilus ATCC 33923"],["NCBITaxon%3A262724","Thermus thermophilus HB27"],["NCBITaxon%3A300852","Thermus thermophilus HB8"],["NCBITaxon%3A798128","Thermus thermophilus JL-18"],["NCBITaxon%3A762633","Thermus thermophilus SG0.5JP17-16"]]},{"id":"NCBITaxon:408","l":"Methylorubrum extorquens","na":2,"nb":7,"a":[["morphology/pink_pigmented.html","pink pigmented"],["physiology/methylotrophic.html","methylotrophic"]],"b":[["NCBITaxon%3A408","Methylorubrum extorquens"],["NCBITaxon%3A272630","Methylorubrum extorquens AM1"],["NCBITaxon%3A440085","Methylorubrum extorquens CM4"],["NCBITaxon%3A661410","Methylorubrum extorquens DM4"],["NCBITaxon%3A882800","Methylorubrum extorquens DSM 13060"],["NCBITaxon%3A419610","Methylorubrum extorquens PA1"]]},{"id":"NCBITaxon:266264","l":"Cupriavidus metallidurans CH34","na":6,"nb":2,"a":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/copper_tolerant.html","copper tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["environment/zinc_tolerant.html","zinc tolerant"]],"b":[["NCBITaxon%3A119219","Cupriavidus metallidurans"],["NCBITaxon%3A266264","Cupriavidus metallidurans CH34"]]},{"id":"NCBITaxon:29471","l":"Pectobacterium atrosepticum","na":2,"nb":6,"a":[["genomics/abortive_infection_system.html","abortive infection system"],["genomics/toxin_system.html","ToxIN system"]],"b":[["NCBITaxon%3A29471","Pectobacterium atrosepticum"],["NCBITaxon%3A1289594","Pectobacterium atrosepticum CFBP 6276"],["NCBITaxon%3A1267546","Pectobacterium atrosepticum [Delta]HAI2-SCRI1043"],["NCBITaxon%3A1076138","Pectobacterium atrosepticum ICMP 1526"],["NCBITaxon%3A218491","Pectobacterium atrosepticum SCRI1043"],["NCBITaxon%3A77097","Vreelandella aquamarina"]]},{"id":"NCBITaxon:381666","l":"Cupriavidus necator H16","na":6,"nb":2,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"],["physiology/autotrophic.html","autotrophic"],["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["NCBITaxon%3A106590","Cupriavidus necator"],["NCBITaxon%3A381666","Cupriavidus necator H16"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":5,"nb":2,"a":[["metabolism/dimethyl_sulfoxide_respiration.html","dimethyl sulfoxide respiration"],["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/electron_transfer.html","Electron transfer"]],"b":[["NCBITaxon%3A70863","Shewanella oneidensis"],["NCBITaxon%3A211586","Shewanella oneidensis MR-1"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":2,"nb":5,"a":[["genomics/ploidy.html","ploidy"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["NCBITaxon%3A354","Azotobacter vinelandii"],["NCBITaxon%3A1283330","Azotobacter vinelandii CA"],["NCBITaxon%3A1283331","Azotobacter vinelandii CA6"],["NCBITaxon%3A322710","Azotobacter vinelandii DJ"],["NCBITaxon%3A1314750","Azotobacter vinelandii NBRC 13581"]]},{"id":"NCBITaxon:36861","l":"Thiobacillus denitrificans","na":2,"nb":5,"a":[["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/chemolithotrophic.html","chemolithotrophic"]],"b":[["NCBITaxon%3A274539","Chlorobaculum parvum"],["NCBITaxon%3A517417","Chlorobaculum parvum NCIB 8327"],["NCBITaxon%3A36861","Thiobacillus denitrificans"],["NCBITaxon%3A292415","Thiobacillus denitrificans ATCC 25259"],["NCBITaxon%3A1123392","Thiobacillus denitrificans DSM 12475"]]},{"id":"NCBITaxon:46632","l":"Picrophilus oshimae","na":5,"nb":2,"a":[["environment/acidophilic.html","acidophilic"],["environment/obligately_acidophilic.html","obligately acidophilic"],["environment/ph_growth_preference.html","pH growth preference"],["environment/ph_optimum_low.html","pH optimum low"],["environment/ph_range_very_low.html","pH range very low"]],"b":[["NCBITaxon%3A46632","Picrophilus oshimae"],["NCBITaxon%3A1122961","Picrophilus oshimae DSM 9789"]]},{"id":"NCBITaxon:915","l":"Nitrosomonas europaea","na":5,"nb":2,"a":[["physiology/autotrophic.html","autotrophic"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["NCBITaxon%3A915","Nitrosomonas europaea"],["NCBITaxon%3A228410","Nitrosomonas europaea ATCC 19718"]]},{"id":"NCBITaxon:171101","l":"Streptococcus pneumoniae (strain ATCC BAA-255 / R6)","na":4,"nb":2,"a":[["morphology/ellipsoidal.html","ellipsoidal"],["morphology/oval_shaped.html","oval shaped"],["morphology/ovoid_shaped.html","ovoid shaped"],["physiology/natural_competence.html","natural competence"]],"b":[["NCBITaxon%3A1165093","Streptococcus pneumoniae CCCB"],["NCBITaxon%3A171101","Streptococcus pneumoniae R6"]]},{"id":"NCBITaxon:194439","l":"Chlorobaculum tepidum TLS","na":4,"nb":2,"a":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"],["physiology/photoautotrophic.html","photoautotrophic"],["physiology/photolithoautotrophic.html","photolithoautotrophic"],["physiology/photolithotrophic.html","photolithotrophic"]],"b":[["NCBITaxon%3A1097","Chlorobaculum tepidum"],["NCBITaxon%3A194439","Chlorobaculum tepidum TLS"]]},{"id":"NCBITaxon:2746","l":"Halomonas elongata","na":4,"nb":2,"a":[["environment/euryhaline.html","euryhaline"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/moderately_halophilic.html","moderately halophilic"]],"b":[["NCBITaxon%3A2746","Halomonas elongata"],["NCBITaxon%3A768066","Halomonas elongata DSM 2581"]]},{"id":"NCBITaxon:301447","l":"Streptococcus pyogenes serotype M1","na":2,"nb":4,"a":[["genomics/crispr_cas_system.html","CRISPR-Cas system"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["NCBITaxon%3A1207470","Streptococcus pyogenes M1 476"],["NCBITaxon%3A160490","Streptococcus pyogenes M1 GAS"],["NCBITaxon%3A293653","Streptococcus pyogenes MGAS5005"],["NCBITaxon%3A301447","Streptococcus pyogenes serotype M1"]]},{"id":"NCBITaxon:70863","l":"Shewanella oneidensis","na":4,"nb":2,"a":[["environment/piezotolerant.html","piezotolerant"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/electron_transfer.html","Electron transfer"]],"b":[["NCBITaxon%3A70863","Shewanella oneidensis"],["NCBITaxon%3A211586","Shewanella oneidensis MR-1"]]},{"id":"NCBITaxon:735518","l":"Lederbergia graminis","na":4,"nb":2,"a":[["environment/nacl_delta.html","NaCl delta"],["environment/nacl_optimum_mid2.html","NaCl optimum mid2"],["environment/ph_delta_mid1.html","pH delta mid1"],["environment/temperature_range.html","temperature range"]],"b":[["NCBITaxon%3A1126234","Salinirubrum litoreum"],["NCBITaxon%3A735518","Lederbergia graminis"]]},{"id":"NCBITaxon:1108","l":"Chloroflexus aurantiacus","na":2,"nb":3,"a":[["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["morphology/green_pigmented.html","green pigmented"]],"b":[["NCBITaxon%3A1108","Chloroflexus aurantiacus"],["NCBITaxon%3A324602","Chloroflexus aurantiacus J-10-fl"],["NCBITaxon%3A480224","Chloroflexus aurantiacus Y-400-fl"]]},{"id":"NCBITaxon:2257","l":"Natronomonas pharaonis","na":3,"nb":2,"a":[["environment/alkaphilic.html","alkaliphilic"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/obligately_alkaphilic.html","obligately alkaliphilic"]],"b":[["NCBITaxon%3A2257","Natronomonas pharaonis"],["NCBITaxon%3A348780","Natronomonas pharaonis DSM 2160"]]},{"id":"NCBITaxon:2261","l":"Pyrococcus furiosus","na":2,"nb":3,"a":[["environment/hyperthermophilic.html","hyperthermophilic"],["environment/temperature_range_high.html","temperature range high"]],"b":[["NCBITaxon%3A2261","Pyrococcus furiosus"],["NCBITaxon%3A1185654","Pyrococcus furiosus COM1"],["NCBITaxon%3A186497","Pyrococcus furiosus DSM 3638"]]},{"id":"NCBITaxon:258224","l":"Corynebacterium resistens","na":2,"nb":3,"a":[["physiology/carboxylesterase_activity.html","carboxylesterase activity"],["physiology/naphthol_as_bi_phosphohydrolase_activity.html","naphthol-AS-BI-phosphohydrolase activity"]],"b":[["NCBITaxon%3A99807","Corynebacterium auriscanis"],["NCBITaxon%3A258224","Corynebacterium resistens"],["NCBITaxon%3A662755","Corynebacterium resistens DSM 45100"]]},{"id":"NCBITaxon:691","l":"Vibrio natriegens","na":2,"nb":3,"a":[["genomics/rrna_operon_copy_number.html","rRNA operon copy number"],["physiology/copiotrophic.html","copiotrophic"]],"b":[["NCBITaxon%3A691","Vibrio natriegens"],["NCBITaxon%3A1219067","Vibrio natriegens NBRC 15636 = ATCC 14048 = DSM 759"],["NCBITaxon%3A28169","Vibrio pelagius"]]},{"id":"NCBITaxon:69823","l":"Selenomonas sputigena","na":2,"nb":3,"a":[["physiology/alpha_galactosidase_activity.html","alpha-galactosidase activity"],["physiology/beta_galactosidase_activity.html","beta-galactosidase activity"]],"b":[["NCBITaxon%3A2053611","Selenomonas sp."],["NCBITaxon%3A69823","Selenomonas sputigena"],["NCBITaxon%3A546271","Selenomonas sputigena ATCC 35185"]]},{"id":"NCBITaxon:74109","l":"Photobacterium profundum","na":2,"nb":3,"a":[["environment/piezophilic.html","piezophilic"],["environment/piezotolerant.html","piezotolerant"]],"b":[["NCBITaxon%3A74109","Photobacterium profundum"],["NCBITaxon%3A314280","Photobacterium profundum 3TCK"],["NCBITaxon%3A298386","Photobacterium profundum SS9"]]},{"id":"NCBITaxon:79885","l":"Alkalihalophilus pseudofirmus","na":2,"nb":3,"a":[["environment/alkalotolerant.html","alkalotolerant"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"]],"b":[["NCBITaxon%3A79885","Alkalihalophilus pseudofirmus"],["NCBITaxon%3A398511","Alkalihalophilus pseudofirmus OF4"],["NCBITaxon%3A83428","uncultured Bacillus sp."]]},{"id":"NCBITaxon:86665","l":"Halalkalibacterium halodurans","na":2,"nb":3,"a":[["environment/alkalotolerant.html","alkalotolerant"],["environment/alkaphilic.html","alkaliphilic"]],"b":[["NCBITaxon%3A86665","Halalkalibacterium halodurans"],["NCBITaxon%3A272558","Halalkalibacterium halodurans C-125"],["NCBITaxon%3A83428","uncultured Bacillus sp."]]},{"id":"NCBITaxon:1097","l":"Chlorobaculum tepidum","na":2,"nb":2,"a":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"],["morphology/green_pigmented.html","green pigmented"]],"b":[["NCBITaxon%3A1097","Chlorobaculum tepidum"],["NCBITaxon%3A194439","Chlorobaculum tepidum TLS"]]},{"id":"NCBITaxon:2069301","l":"Evansella tamaricis","na":2,"nb":2,"a":[["environment/ph_growth_preference.html","pH growth preference"],["environment/ph_range_mid3.html","pH range mid3"]],"b":[["NCBITaxon%3A1505037","Emcibacter nanhaiensis"],["NCBITaxon%3A2069301","Evansella tamaricis"]]},{"id":"NCBITaxon:2190","l":"Methanocaldococcus jannaschii","na":2,"nb":2,"a":[["metabolism/methanogenesis.html","Methanogenesis"],["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["NCBITaxon%3A2190","Methanocaldococcus jannaschii"],["NCBITaxon%3A243232","Methanocaldococcus jannaschii DSM 2661"]]},{"id":"NCBITaxon:243273","l":"Mycoplasmoides genitalium (strain ATCC 33530 / DSM 19775 / NCTC 10195 / G37)","na":2,"nb":2,"a":[["genomics/gc_high.html","GC high"],["genomics/genome_size.html","genome size"]],"b":[["NCBITaxon%3A2097","Mycoplasmoides genitalium"],["NCBITaxon%3A243273","Mycoplasmoides genitalium G37"]]},{"id":"NCBITaxon:272562","l":"Clostridium acetobutylicum (strain ATCC 824 / DSM 792 / JCM 1419 / IAM 19013 / LMG 5710 / NBRC 13948 / NRRL B-527 / VKM B-1787 / 2291 / W)","na":2,"nb":2,"a":[["metabolism/acetone_butanol_ethanol_fermentation.html","acetone-butanol-ethanol fermentation"],["metabolism/fermentation.html","Fermentation"]],"b":[["NCBITaxon%3A1488","Clostridium acetobutylicum"],["NCBITaxon%3A272562","Clostridium acetobutylicum ATCC 824"]]},{"id":"NCBITaxon:317655","l":"Sphingopyxis alaskensis RB2256","na":2,"nb":2,"a":[["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"]],"b":[["NCBITaxon%3A117207","Sphingopyxis alaskensis"],["NCBITaxon%3A317655","Sphingopyxis alaskensis RB2256"]]},{"id":"NCBITaxon:334543","l":"Psychrobacter arcticus","na":2,"nb":2,"a":[["environment/delta_phenotype_with_numerical_limits.html","delta phenotype with numerical limits"],["environment/facultative_psychrophilic.html","facultative psychrophilic"]],"b":[["NCBITaxon%3A334543","Psychrobacter arcticus"],["NCBITaxon%3A259536","Psychrobacter arcticus 273-4"]]},{"id":"NCBITaxon:375929","l":"Natranaerobius thermophilus","na":2,"nb":2,"a":[["environment/growth_range_phenotype_with_numerical_limits.html","growth range phenotype with numerical limits"],["environment/salinity_phenotype_with_numerical_limits.html","salinity phenotype with numerical limits"]],"b":[["NCBITaxon%3A375929","Natranaerobius thermophilus"],["NCBITaxon%3A457570","Natranaerobius thermophilus JW/NM-WN-LF"]]},{"id":"NCBITaxon:504092","l":"Kushneria aurantia","na":2,"nb":2,"a":[["environment/nacl_range.html","NaCl range"],["environment/temperature_delta.html","temperature delta"]],"b":[["NCBITaxon%3A504092","Kushneria aurantia"],["NCBITaxon%3A1122139","Kushneria aurantia DSM 21353"]]},{"id":"NCBITaxon:1126","l":"Microcystis aeruginosa","na":1,"nb":1085,"a":[["morphology/gas_vesicle.html","gas vesicle"]],"b":[["NCBITaxon%3A1126","Microcystis aeruginosa"],["NCBITaxon%3A270630","Microcystis aeruginosa 0BB35S02"],["NCBITaxon%3A270631","Microcystis aeruginosa 0BF29S01"],["NCBITaxon%3A270632","Microcystis aeruginosa 0BF29S03"],["NCBITaxon%3A2358142","Microcystis aeruginosa 11-30S32"],["NCBITaxon%3A3113711","Microcystis aeruginosa 1339"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":1,"nb":1075,"a":[["ecology/opportunistic_pathogen.html","opportunistic pathogen"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A1311139","Acinetobacter baumannii 016901DP_1"],["NCBITaxon%3A1311140","Acinetobacter baumannii 016901DP_2"],["NCBITaxon%3A1310784","Acinetobacter baumannii 1007214"],["NCBITaxon%3A1310751","Acinetobacter baumannii 1022959"],["NCBITaxon%3A1310586","Acinetobacter baumannii 1031433"]]},{"id":"NCBITaxon:165695","l":"Sphingobium","na":1,"nb":663,"a":[["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["NCBITaxon%3A86193","Sphingobium abikonense"],["NCBITaxon%3A1219036","Sphingobium abikonense NBRC 16140"],["NCBITaxon%3A2933566","Sphingobium agri"],["NCBITaxon%3A3341828","Sphingobium agrisoli"],["NCBITaxon%3A2008318","Sphingobium algorifonticola"],["NCBITaxon%3A135719","Sphingobium amiense"]]},{"id":"NCBITaxon:2093","l":"Mycoplasma","na":1,"nb":495,"a":[["morphology/pleomorphic_shaped.html","pleomorphic shaped"]],"b":[["NCBITaxon%3A871300","Candidatus Mycoplasma aoti"],["NCBITaxon%3A762822","Candidatus Mycoplasma erythrocervae"],["NCBITaxon%3A432608","Candidatus Mycoplasma haematobovis"],["NCBITaxon%3A3385516","Candidatus Mycoplasma haematobrackenitadaridae"],["NCBITaxon%3A762824","Candidatus Mycoplasma haematocervi"],["NCBITaxon%3A112247","Candidatus Mycoplasma haematodidelphidis"]]},{"id":"NCBITaxon:1639","l":"Listeria monocytogenes","na":1,"nb":478,"a":[["environment/psychrotolerant.html","psychrotolerant"]],"b":[["NCBITaxon%3A1639","Listeria monocytogenes"],["NCBITaxon%3A1126011","Listeria monocytogenes 07PF0776"],["NCBITaxon%3A653938","Listeria monocytogenes 08-5578"],["NCBITaxon%3A637381","Listeria monocytogenes 08-5923"],["NCBITaxon%3A393133","Listeria monocytogenes 10403S"],["NCBITaxon%3A1380708","Listeria monocytogenes 36-25-1"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":1,"nb":375,"a":[["other/catalase_negative.html","catalase negative"]],"b":[["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A1352","Enterococcus faecium"],["NCBITaxon%3A1391465","Enterococcus faecium 10/96A"],["NCBITaxon%3A1259824","Enterococcus faecium 13.SD.W.09"],["NCBITaxon%3A1429401","Enterococcus faecium 17282"],["NCBITaxon%3A565659","Enterococcus faecium 1,141,733"]]},{"id":"NCBITaxon:173","l":"Leptospira interrogans","na":1,"nb":312,"a":[["morphology/axially_filamented.html","axially filamented"]],"b":[["NCBITaxon%3A173","Leptospira interrogans"],["NCBITaxon%3A860644","Leptospira interrogans serovar Akiyami"],["NCBITaxon%3A428408","Leptospira interrogans serovar Anhui"],["NCBITaxon%3A211882","Leptospira interrogans serovar Australis"],["NCBITaxon%3A1085541","Leptospira interrogans serovar Australis str. 200703203"],["NCBITaxon%3A1308441","Leptospira interrogans serovar Australis str. LT2080"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":1,"nb":287,"a":[["ecology/biosafety_level_3.html","biosafety level 3"]],"b":[["NCBITaxon%3A632","Yersinia pestis"],["NCBITaxon%3A1345710","Yersinia pestis 1045"],["NCBITaxon%3A1330535","Yersinia pestis 113"],["NCBITaxon%3A755859","Yersinia pestis 12"],["NCBITaxon%3A1345703","Yersinia pestis 1412"],["NCBITaxon%3A1345704","Yersinia pestis 1413"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":1,"nb":264,"a":[["morphology/lateral_flagellation.html","lateral flagellation"]],"b":[["NCBITaxon%3A663","Vibrio alginolyticus"],["NCBITaxon%3A29494","Vibrio furnissii"],["NCBITaxon%3A675811","Vibrio furnissii CIP 102972"],["NCBITaxon%3A670","Vibrio parahaemolyticus"],["NCBITaxon%3A1238231","Vibrio parahaemolyticus 10290"],["NCBITaxon%3A1238195","Vibrio parahaemolyticus 10296"]]},{"id":"NCBITaxon:125216","l":"Roseomonas","na":1,"nb":244,"a":[["morphology/pink_pigmented.html","pink pigmented"]],"b":[["NCBITaxon%3A204091","Candidatus Roseomonas massiliae"],["NCBITaxon%3A287609","Neoroseomonas lacus"],["NCBITaxon%3A525371","Pseudoroseomonas cervicalis ATCC 49957"],["NCBITaxon%3A1225642","Roseomonas aceris"],["NCBITaxon%3A2937791","Roseomonas acroporae"],["NCBITaxon%3A2846776","Roseomonas alba"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":1,"nb":216,"a":[["environment/microaerophilic.html","microaerophilic"]],"b":[["NCBITaxon%3A863522","Bryocella elongata"],["NCBITaxon%3A195","Campylobacter coli"],["NCBITaxon%3A197","Campylobacter jejuni"],["NCBITaxon%3A1365653","Campylobacter jejuni 10186"],["NCBITaxon%3A1365189","Campylobacter jejuni 10187"],["NCBITaxon%3A1327986","Campylobacter jejuni 10227"]]},{"id":"NCBITaxon:1219","l":"Prochlorococcus marinus","na":1,"nb":214,"a":[["genomics/genome_streamlining.html","genome streamlining"]],"b":[["NCBITaxon%3A379362","environmental samples"],["NCBITaxon%3A1219","Prochlorococcus marinus"],["NCBITaxon%3A2724906","Prochlorococcus marinus 150NLHA"],["NCBITaxon%3A2724907","Prochlorococcus marinus 150SLHA"],["NCBITaxon%3A2724908","Prochlorococcus marinus 150SLHB"],["NCBITaxon%3A1041938","Prochlorococcus marinus bv. HNLC1"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":1,"nb":183,"a":[["ecology/plant_pathogen.html","plant pathogen"]],"b":[["NCBITaxon%3A86840","Pseudomonas cannabina"],["NCBITaxon%3A53409","Pseudomonas coronafaciens"],["NCBITaxon%3A29438","Pseudomonas savastanoi"],["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A1204471","Pseudomonas syringae BRIP34876"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":176,"a":[["morphology/motility.html","motility"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A90371","Salmonella enterica subsp. enterica serovar Typhimurium"],["NCBITaxon%3A1173928","Salmonella enterica subsp. enterica serovar Typhimurium str. 0052"],["NCBITaxon%3A1114946","Salmonella enterica subsp. enterica serovar Typhimurium str. 00-01036"],["NCBITaxon%3A1173930","Salmonella enterica subsp. enterica serovar Typhimurium str. 0364"]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":1,"nb":88,"a":[["morphology/yellow_pigmented.html","yellow pigmented"]],"b":[["NCBITaxon%3A298","Pseudomonas marginalis"],["NCBITaxon%3A56448","Xanthomonas arboricola"],["NCBITaxon%3A339","Xanthomonas campestris"],["NCBITaxon%3A1281290","Xanthomonas campestris CFBP 5824"],["NCBITaxon%3A1281289","Xanthomonas campestris CFBP 5825"],["NCBITaxon%3A1182783","Xanthomonas campestris JX"]]},{"id":"NCBITaxon:139","l":"Borreliella burgdorferi","na":1,"nb":43,"a":[["genomics/plasmid_carriage.html","plasmid carriage"]],"b":[["NCBITaxon%3A139","Borreliella burgdorferi"],["NCBITaxon%3A476210","Borreliella burgdorferi 118a"],["NCBITaxon%3A445983","Borreliella burgdorferi 156a"],["NCBITaxon%3A521009","Borreliella burgdorferi 297"],["NCBITaxon%3A498738","Borreliella burgdorferi 29805"],["NCBITaxon%3A498740","Borreliella burgdorferi 64b"]]},{"id":"NCBITaxon:747","l":"Pasteurella multocida","na":1,"nb":38,"a":[["ecology/animal_pathogen.html","animal pathogen"]],"b":[["NCBITaxon%3A714","Aggregatibacter actinomycetemcomitans"],["NCBITaxon%3A747","Pasteurella multocida"],["NCBITaxon%3A1298929","Pasteurella multocida 1500C"],["NCBITaxon%3A1298924","Pasteurella multocida 1500E"],["NCBITaxon%3A1298925","Pasteurella multocida 2000"],["NCBITaxon%3A1075089","Pasteurella multocida 36950"]]},{"id":"NCBITaxon:851","l":"Fusobacterium nucleatum","na":1,"nb":35,"a":[["morphology/fusiform_shaped.html","fusiform shaped"]],"b":[["NCBITaxon%3A76859","Fusobacterium animalis"],["NCBITaxon%3A997347","Fusobacterium animalis ATCC 51191"],["NCBITaxon%3A1583098","Fusobacterium hwasookii"],["NCBITaxon%3A1216362","Fusobacterium hwasookii ChDC F128"],["NCBITaxon%3A1307441","Fusobacterium hwasookii ChDC F145"],["NCBITaxon%3A1307442","Fusobacterium hwasookii ChDC F174"]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":1,"nb":31,"a":[["other/voges_proskauer_test_positive.html","Voges-Proskauer test positive"]],"b":[["NCBITaxon%3A571","Klebsiella oxytoca"],["NCBITaxon%3A883116","Klebsiella oxytoca 09-7231"],["NCBITaxon%3A883117","Klebsiella oxytoca 10-5242"],["NCBITaxon%3A883118","Klebsiella oxytoca 10-5243"],["NCBITaxon%3A883119","Klebsiella oxytoca 10-5244"],["NCBITaxon%3A883120","Klebsiella oxytoca 10-5245"]]},{"id":"NCBITaxon:1717","l":"Corynebacterium diphtheriae","na":1,"nb":28,"a":[["morphology/dumbbell_shaped.html","dumbbell shaped"]],"b":[["NCBITaxon%3A1717","Corynebacterium diphtheriae"],["NCBITaxon%3A698966","Corynebacterium diphtheriae 241"],["NCBITaxon%3A698962","Corynebacterium diphtheriae 31A"],["NCBITaxon%3A698973","Corynebacterium diphtheriae BH8"],["NCBITaxon%3A1720349","Corynebacterium diphtheriae bv. gravis"],["NCBITaxon%3A1450521","Corynebacterium diphtheriae bv. gravis str. ISS 4060"]]},{"id":"NCBITaxon:1859128","l":"Candidatus Electrothrix","na":1,"nb":25,"a":[["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"]],"b":[["NCBITaxon%3A1859131","Candidatus Electrothrix aarhusensis"],["NCBITaxon%3A3062594","Candidatus Electrothrix aestuarii"],["NCBITaxon%3A1859133","Candidatus Electrothrix communis"],["NCBITaxon%3A2202844","Candidatus Electrothrix gigas"],["NCBITaxon%3A1859132","Candidatus Electrothrix japonica"],["NCBITaxon%3A3036123","Candidatus Electrothrix laxa"]]},{"id":"NCBITaxon:47951","l":"Vibrio cyclitrophicus","na":1,"nb":23,"a":[["genomics/sspabcd_sspe_system.html","SspABCD-SspE system"]],"b":[["NCBITaxon%3A47951","Vibrio cyclitrophicus"],["NCBITaxon%3A1136156","Vibrio cyclitrophicus 12F01"],["NCBITaxon%3A1136159","Vibrio cyclitrophicus 1F111"],["NCBITaxon%3A1136160","Vibrio cyclitrophicus 1F175"],["NCBITaxon%3A1136161","Vibrio cyclitrophicus 1F273"],["NCBITaxon%3A1136162","Vibrio cyclitrophicus 1F289"]]},{"id":"NCBITaxon:837","l":"Porphyromonas gingivalis","na":1,"nb":22,"a":[["morphology/black_pigmented.html","black pigmented"]],"b":[["NCBITaxon%3A837","Porphyromonas gingivalis"],["NCBITaxon%3A1403335","Porphyromonas gingivalis 381"],["NCBITaxon%3A1403337","Porphyromonas gingivalis A7436"],["NCBITaxon%3A1403338","Porphyromonas gingivalis A7A1-28"],["NCBITaxon%3A1403336","Porphyromonas gingivalis AJW4"],["NCBITaxon%3A431947","Porphyromonas gingivalis ATCC 33277"]]},{"id":"NCBITaxon:1579","l":"Lactobacillus acidophilus","na":1,"nb":20,"a":[["environment/acidotolerant.html","acidotolerant"]],"b":[["NCBITaxon%3A1597","Lacticaseibacillus paracasei"],["NCBITaxon%3A1590","Lactiplantibacillus plantarum"],["NCBITaxon%3A1579","Lactobacillus acidophilus"],["NCBITaxon%3A891391","Lactobacillus acidophilus 30SC"],["NCBITaxon%3A525306","Lactobacillus acidophilus ATCC 4796"],["NCBITaxon%3A1421011","Lactobacillus acidophilus CFH"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":1,"nb":19,"a":[["metabolism/starch_degradation.html","starch degradation"]],"b":[["NCBITaxon%3A1402","Bacillus licheniformis"],["NCBITaxon%3A1169411","Bacillus licheniformis 10-1-A"],["NCBITaxon%3A44097","Bacillus licheniformis 2709"],["NCBITaxon%3A1169412","Bacillus licheniformis 5-2-D"],["NCBITaxon%3A1368424","Bacillus licheniformis CG-B52"],["NCBITaxon%3A1232672","Bacillus licheniformis CGMCC 3963"]]},{"id":"NCBITaxon:672","l":"Vibrio vulnificus","na":1,"nb":19,"a":[["physiology/viable_but_nonculturable_state.html","viable but nonculturable state"]],"b":[["NCBITaxon%3A678","Vibrio sp."],["NCBITaxon%3A672","Vibrio vulnificus"],["NCBITaxon%3A701179","Vibrio vulnificus 06-2450"],["NCBITaxon%3A1246308","Vibrio vulnificus 96-11-17M"],["NCBITaxon%3A1246309","Vibrio vulnificus A1402"],["NCBITaxon%3A1229202","Vibrio vulnificus B2"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":1,"nb":16,"a":[["physiology/lipase_activity.html","lipase activity"]],"b":[["NCBITaxon%3A1408","Bacillus pumilus"],["NCBITaxon%3A536229","Bacillus pumilus ATCC 7061"],["NCBITaxon%3A1227811","Bacillus pumilus BA06"],["NCBITaxon%3A1189615","Bacillus pumilus BL8"],["NCBITaxon%3A1350468","Bacillus pumilus CCMA-560"],["NCBITaxon%3A1330463","Bacillus pumilus CIMFR"]]},{"id":"NCBITaxon:160","l":"Treponema pallidum","na":1,"nb":15,"a":[["morphology/spirochete_shaped.html","spirochete shaped"]],"b":[["NCBITaxon%3A160","Treponema pallidum"],["NCBITaxon%3A1155775","Treponema pallidum str. Fribourg-Blanc"],["NCBITaxon%3A53436","Treponema pallidum subsp. endemicum"],["NCBITaxon%3A1155776","Treponema pallidum subsp. endemicum str. Bosnia A"],["NCBITaxon%3A161","Treponema pallidum subsp. pallidum"],["NCBITaxon%3A491081","Treponema pallidum subsp. pallidum DAL-1"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":1,"nb":15,"a":[["morphology/branched_shaped.html","branched shaped"]],"b":[["NCBITaxon%3A1681","Bifidobacterium bifidum"],["NCBITaxon%3A500634","Bifidobacterium bifidum ATCC 29521 = JCM 1255 = DSM 20456"],["NCBITaxon%3A484020","Bifidobacterium bifidum BGN4"],["NCBITaxon%3A1263058","Bifidobacterium bifidum CAG:234"],["NCBITaxon%3A1173065","Bifidobacterium bifidum CECT 7366"],["NCBITaxon%3A398515","Bifidobacterium bifidum DSM 20215"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":1,"nb":15,"a":[["physiology/alkaline_phosphatase_activity.html","alkaline phosphatase activity"]],"b":[["NCBITaxon%3A175628","Gordonia paraffinivorans"],["NCBITaxon%3A1785","Mycobacterium sp."],["NCBITaxon%3A1772","Mycolicibacterium smegmatis"],["NCBITaxon%3A1455235","Mycolicibacterium smegmatis 30-MsmegS_ND_60_A"],["NCBITaxon%3A1455243","Mycolicibacterium smegmatis 31-MsmegS_CIP_60_A"],["NCBITaxon%3A1455251","Mycolicibacterium smegmatis 32-MsmegS_CIP_30_A"]]},{"id":"NCBITaxon:55601","l":"Vibrio anguillarum","na":1,"nb":15,"a":[["genomics/sspabcd_sspfgh_system.html","SspABCD-SspFGH system"]],"b":[["NCBITaxon%3A1056982","Gordonia phosphorivorans"],["NCBITaxon%3A55601","Vibrio anguillarum"],["NCBITaxon%3A1161910","Vibrio anguillarum 13YK-003"],["NCBITaxon%3A882102","Vibrio anguillarum 775"],["NCBITaxon%3A990314","Vibrio anguillarum 96F"],["NCBITaxon%3A882846","Vibrio anguillarum ATCC 43308"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":1,"nb":14,"a":[["physiology/photoheterotrophic.html","photoheterotrophic"]],"b":[["NCBITaxon%3A1076","Rhodopseudomonas palustris"],["NCBITaxon%3A74570","Rhodopseudomonas palustris ATCC 17001"],["NCBITaxon%3A74573","Rhodopseudomonas palustris ATCC 17007"],["NCBITaxon%3A316055","Rhodopseudomonas palustris BisA53"],["NCBITaxon%3A316056","Rhodopseudomonas palustris BisB18"],["NCBITaxon%3A316057","Rhodopseudomonas palustris BisB5"]]},{"id":"NCBITaxon:28132","l":"Prevotella melaninogenica","na":1,"nb":14,"a":[["morphology/black_pigmented.html","black pigmented"]],"b":[["NCBITaxon%3A840","Hoylesella loescheii"],["NCBITaxon%3A1122985","Hoylesella loescheii DSM 19665 = JCM 12249 = ATCC 15930"],["NCBITaxon%3A28123","Porphyromonas asaccharolytica"],["NCBITaxon%3A837","Porphyromonas gingivalis"],["NCBITaxon%3A28114","Porphyromonas levii"],["NCBITaxon%3A1122973","Porphyromonas levii DSM 23370"]]},{"id":"NCBITaxon:782","l":"Rickettsia prowazekii","na":1,"nb":13,"a":[["ecology/parasitism.html","parasitism"]],"b":[["NCBITaxon%3A782","Rickettsia prowazekii"],["NCBITaxon%3A1290428","Rickettsia prowazekii str. Breinl"],["NCBITaxon%3A1105096","Rickettsia prowazekii str. BuV67-CWPP"],["NCBITaxon%3A1290430","Rickettsia prowazekii str. Cairo 3"],["NCBITaxon%3A1105094","Rickettsia prowazekii str. Chernikova"],["NCBITaxon%3A1105097","Rickettsia prowazekii str. Dachau"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis (strain ATCC 25618 / H37Rv)","na":1,"nb":13,"a":[["physiology/dormancy.html","dormancy"]],"b":[["NCBITaxon%3A1773","Mycobacterium tuberculosis"],["NCBITaxon%3A83332","Mycobacterium tuberculosis H37Rv"],["NCBITaxon%3A747078","Mycobacterium tuberculosis H37Rv_2009"],["NCBITaxon%3A928249","Mycobacterium tuberculosis H37Rv_ideR_mutant_ST22"],["NCBITaxon%3A757417","Mycobacterium tuberculosis H37RvAE"],["NCBITaxon%3A757419","Mycobacterium tuberculosis H37RvCO"]]},{"id":"NCBITaxon:435","l":"Acetobacter aceti","na":1,"nb":12,"a":[["environment/acidotolerant.html","acidotolerant"]],"b":[["NCBITaxon%3A435","Acetobacter aceti"],["NCBITaxon%3A1457393","Acetobacter aceti 1023"],["NCBITaxon%3A663932","Acetobacter aceti ATCC 23746"],["NCBITaxon%3A887700","Acetobacter aceti NBRC 14818"],["NCBITaxon%3A1206747","Acetobacter aceti NRIC 0242"],["NCBITaxon%3A178900","Acetobacter cerevisiae"]]},{"id":"NCBITaxon:54291","l":"Klebsiella ornithinolytica","na":1,"nb":12,"a":[["other/methyl_red_test_positive.html","methyl red test positive"]],"b":[["NCBITaxon%3A54291","Klebsiella ornithinolytica"],["NCBITaxon%3A883121","Klebsiella ornithinolytica 10-5246"],["NCBITaxon%3A1444039","Klebsiella ornithinolytica 2-156-04_S1_C1"],["NCBITaxon%3A1444067","Klebsiella ornithinolytica 2-156-04_S1_C2"],["NCBITaxon%3A1286170","Klebsiella ornithinolytica B6"],["NCBITaxon%3A1357411","Klebsiella ornithinolytica CD1_MRS_4"]]},{"id":"NCBITaxon:584","l":"Proteus mirabilis","na":1,"nb":12,"a":[["morphology/swarming_motility.html","swarming motility"]],"b":[["NCBITaxon%3A584","Proteus mirabilis"],["NCBITaxon%3A1285374","Proteus mirabilis 1014"],["NCBITaxon%3A1308721","Proteus mirabilis ADL-319"],["NCBITaxon%3A1308722","Proteus mirabilis ADL-321"],["NCBITaxon%3A1308723","Proteus mirabilis ADL-401"],["NCBITaxon%3A525369","Proteus mirabilis ATCC 29906"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":1,"nb":10,"a":[["morphology/s_layer.html","S-layer"]],"b":[["NCBITaxon%3A1891658","Geobacillus sp."],["NCBITaxon%3A1422","Geobacillus stearothermophilus"],["NCBITaxon%3A272567","Geobacillus stearothermophilus 10"],["NCBITaxon%3A1366047","Geobacillus stearothermophilus ATCC 12980"],["NCBITaxon%3A937593","Geobacillus stearothermophilus ATCC 7953"],["NCBITaxon%3A664733","Geobacillus stearothermophilus C56-N21"]]},{"id":"NCBITaxon:1599","l":"Latilactobacillus sakei","na":1,"nb":9,"a":[["physiology/arginine_dihydrolase_activity.html","arginine dihydrolase activity"]],"b":[["NCBITaxon%3A1599","Latilactobacillus sakei"],["NCBITaxon%3A1381395","Latilactobacillus sakei dgh6"],["NCBITaxon%3A1634","Latilactobacillus sakei L45"],["NCBITaxon%3A214325","Latilactobacillus sakei subsp. carnosus"],["NCBITaxon%3A525363","Latilactobacillus sakei subsp. carnosus DSM 15831"],["NCBITaxon%3A214326","Latilactobacillus sakei subsp. sakei"]]},{"id":"NCBITaxon:1830","l":"Rhodococcus ruber","na":1,"nb":9,"a":[["morphology/orange_pigmented.html","orange pigmented"]],"b":[["NCBITaxon%3A941184","Nocardia salmonicolor"],["NCBITaxon%3A1830","Rhodococcus ruber"],["NCBITaxon%3A1278076","Rhodococcus ruber BKS 20-38"],["NCBITaxon%3A1240349","Rhodococcus ruber Chol-4"],["NCBITaxon%3A3392186","Rhodococcus ruber IEGM1217"],["NCBITaxon%3A3392194","Rhodococcus ruber IEGM453"]]},{"id":"NCBITaxon:192222","l":"Campylobacter jejuni subsp. jejuni NCTC 11168 = ATCC 700819","na":1,"nb":9,"a":[["environment/capnophilic.html","capnophilic"]],"b":[["NCBITaxon%3A197","Campylobacter jejuni"],["NCBITaxon%3A192222","Campylobacter jejuni subsp. jejuni NCTC 11168 = ATCC 700819"],["NCBITaxon%3A1211776","Campylobacter jejuni subsp. jejuni NCTC 11168-BN148"],["NCBITaxon%3A1385724","Campylobacter jejuni subsp. jejuni NCTC 11168-GSv"],["NCBITaxon%3A1385720","Campylobacter jejuni subsp. jejuni NCTC 11168-K12E5"],["NCBITaxon%3A1385723","Campylobacter jejuni subsp. jejuni NCTC 11168-Kf1"]]},{"id":"NCBITaxon:3029272","l":"Amygdalobacter indicium","na":9,"nb":1,"a":[["physiology/alanine_arylamidase_activity.html","alanine arylamidase activity"],["physiology/alpha_chymotrypsin_activity.html","alpha-chymotrypsin activity"],["physiology/glutamyl_glutamic_acid_arylamidase_activity.html","glutamyl glutamic acid arylamidase activity"],["physiology/glycine_arylamidase_activity.html","glycine arylamidase activity"],["physiology/histidine_arylamidase_activity.html","histidine arylamidase activity"],["physiology/leucyl_glycine_arylamidase_activity.html","leucyl glycine arylamidase activity"]],"b":[["NCBITaxon%3A3029272","Amygdalobacter indicium"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":8,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["NCBITaxon%3A1515","Acetivibrio thermocellus"],["NCBITaxon%3A1138384","Acetivibrio thermocellus AD2"],["NCBITaxon%3A203119","Acetivibrio thermocellus ATCC 27405"],["NCBITaxon%3A1349417","Acetivibrio thermocellus BC1"],["NCBITaxon%3A637887","Acetivibrio thermocellus DSM 1313"],["NCBITaxon%3A572545","Acetivibrio thermocellus DSM 2360"]]},{"id":"NCBITaxon:1744","l":"Propionibacterium freudenreichii","na":1,"nb":8,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["NCBITaxon%3A1591","Lactobacillus sp."],["NCBITaxon%3A1744","Propionibacterium freudenreichii"],["NCBITaxon%3A66712","Propionibacterium freudenreichii subsp. freudenreichii"],["NCBITaxon%3A1408888","Propionibacterium freudenreichii subsp. freudenreichii ITG P20"],["NCBITaxon%3A1219357","Propionibacterium freudenreichii subsp. freudenreichii NBRC 12424"],["NCBITaxon%3A1752","Propionibacterium freudenreichii subsp. shermanii"]]},{"id":"NCBITaxon:3028314","l":"Oceanimonas pelagia","na":8,"nb":1,"a":[["environment/optimum_phenotype_with_numerical_limits.html","optimum phenotype with numerical limits"],["environment/ph_delta.html","pH delta"],["environment/ph_range.html","pH range"],["environment/temperature_optimum.html","temperature optimum"],["environment/temperature_range_mid4.html","temperature range mid4"],["genomics/gc_mid2.html","GC mid2"]],"b":[["NCBITaxon%3A3028314","Oceanimonas pelagia"]]},{"id":"NCBITaxon:99287","l":"Salmonella typhimurium (strain LT2 / SGSC1412 / ATCC 700720)","na":1,"nb":8,"a":[["metabolism/tetrathionate_respiration.html","tetrathionate respiration"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A588858","Salmonella enterica subsp. enterica serovar Typhimurium str. 14028S"],["NCBITaxon%3A1094461","Salmonella enterica subsp. enterica serovar Typhimurium str. G455"],["NCBITaxon%3A99287","Salmonella enterica subsp. enterica serovar Typhimurium str. LT2"],["NCBITaxon%3A1159899","Salmonella enterica subsp. enterica serovar Typhimurium str. LT2-4"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":1,"nb":7,"a":[["morphology/polar_flagellation.html","polar flagellation"]],"b":[["NCBITaxon%3A663","Vibrio alginolyticus"],["NCBITaxon%3A314288","Vibrio alginolyticus 12G01"],["NCBITaxon%3A674977","Vibrio alginolyticus 40B"],["NCBITaxon%3A664","Vibrio alginolyticus chemovar iophagus"],["NCBITaxon%3A1219076","Vibrio alginolyticus NBRC 15630 = ATCC 17749"],["NCBITaxon%3A669","Vibrio harveyi"]]},{"id":"NCBITaxon:1111708","l":"Synechocystis sp. (strain ATCC 27184 / PCC 6803 / Kazusa)","na":6,"nb":1,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/photoautotrophic.html","photoautotrophic"],["physiology/photolithotrophic.html","photolithotrophic"],["physiology/phototrophic.html","phototrophic"]],"b":[["NCBITaxon%3A1111708","Synechocystis sp. PCC 6803 substr. Kazusa"]]},{"id":"NCBITaxon:1377","l":"Aerococcus viridans","na":1,"nb":6,"a":[["morphology/tetrad_arrangement.html","tetrad arrangement"]],"b":[["NCBITaxon%3A1872398","Aerococcus sp."],["NCBITaxon%3A1377","Aerococcus viridans"],["NCBITaxon%3A655812","Aerococcus viridans ATCC 11563 = CCUG 4311"],["NCBITaxon%3A1175629","Aerococcus viridans LL1"],["NCBITaxon%3A1255702","Aerococcus viridans TL327A"],["NCBITaxon%3A1254","Pediococcus acidilactici"]]},{"id":"NCBITaxon:2285","l":"Sulfolobus acidocaldarius","na":1,"nb":6,"a":[["environment/temperature_range_high.html","temperature range high"]],"b":[["NCBITaxon%3A2287","Saccharolobus solfataricus"],["NCBITaxon%3A2285","Sulfolobus acidocaldarius"],["NCBITaxon%3A330779","Sulfolobus acidocaldarius DSM 639"],["NCBITaxon%3A1028566","Sulfolobus acidocaldarius N8"],["NCBITaxon%3A1028567","Sulfolobus acidocaldarius Ron12/I"],["NCBITaxon%3A1435377","Sulfolobus acidocaldarius SUSAZ"]]},{"id":"NCBITaxon:29339","l":"Bacillus thuringiensis serovar kurstaki","na":1,"nb":6,"a":[["physiology/quorum_sensing.html","quorum sensing"]],"b":[["NCBITaxon%3A714359","Bacillus thuringiensis BMB171"],["NCBITaxon%3A29339","Bacillus thuringiensis serovar kurstaki"],["NCBITaxon%3A1279365","Bacillus thuringiensis serovar kurstaki str. HD73"],["NCBITaxon%3A1261129","Bacillus thuringiensis serovar kurstaki str. HD-1"],["NCBITaxon%3A527023","Bacillus thuringiensis serovar kurstaki str. T03a001"],["NCBITaxon%3A570416","Bacillus thuringiensis serovar kurstaki str. YBT-1520"]]},{"id":"NCBITaxon:1513592","l":"Colwellia marinimaniae","na":5,"nb":1,"a":[["environment/obligately_piezophilic.html","obligately piezophilic"],["environment/piezophilic.html","piezophilic"],["environment/pressure_delta.html","pressure delta"],["environment/pressure_optimum.html","pressure optimum"],["environment/pressure_range.html","pressure range"]],"b":[["NCBITaxon%3A1513592","Colwellia marinimaniae"]]},{"id":"NCBITaxon:1665","l":"Arthrobacter globiformis","na":1,"nb":5,"a":[["morphology/gram_variable.html","gram variable"]],"b":[["NCBITaxon%3A1665","Arthrobacter globiformis"],["NCBITaxon%3A1077972","Arthrobacter globiformis NBRC 12137"],["NCBITaxon%3A1667","Arthrobacter sp."],["NCBITaxon%3A169875","Arthrobacter sp. JCM 1339"],["NCBITaxon%3A1701","Brevibacterium sp."]]},{"id":"NCBITaxon:1752","l":"Propionibacterium freudenreichii subsp. shermanii","na":1,"nb":5,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["NCBITaxon%3A1591","Lactobacillus sp."],["NCBITaxon%3A1744","Propionibacterium freudenreichii"],["NCBITaxon%3A1752","Propionibacterium freudenreichii subsp. shermanii"],["NCBITaxon%3A754252","Propionibacterium freudenreichii subsp. shermanii CIRM-BIA1"],["NCBITaxon%3A1445610","Propionibacterium freudenreichii subsp. shermanii SANPR8"]]},{"id":"NCBITaxon:2246","l":"Haloferax volcanii","na":1,"nb":5,"a":[["morphology/disc_shaped.html","disc shaped"]],"b":[["NCBITaxon%3A2246","Haloferax volcanii"],["NCBITaxon%3A309800","Haloferax volcanii DS2"],["NCBITaxon%3A1230452","Haloferax volcanii DSM 14919"],["NCBITaxon%3A1227458","Haloferax volcanii JCM 10717"],["NCBITaxon%3A523840","Haloferax volcanii SB1"]]},{"id":"NCBITaxon:228410","l":"Nitrosomonas europaea ATCC 19718","na":5,"nb":1,"a":[["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["NCBITaxon%3A228410","Nitrosomonas europaea ATCC 19718"]]},{"id":"NCBITaxon:293091","l":"Haloquadratum walsbyi","na":1,"nb":5,"a":[["morphology/square_shaped.html","square shaped"]],"b":[["NCBITaxon%3A293091","Haloquadratum walsbyi"],["NCBITaxon%3A768065","Haloquadratum walsbyi C23"],["NCBITaxon%3A362976","Haloquadratum walsbyi DSM 16790"],["NCBITaxon%3A1238424","Haloquadratum walsbyi J07HQW1"],["NCBITaxon%3A1238425","Haloquadratum walsbyi J07HQW2"]]},{"id":"NCBITaxon:296","l":"Pseudomonas fragi","na":1,"nb":5,"a":[["environment/temperature_optimum_low.html","temperature optimum low"]],"b":[["NCBITaxon%3A296","Pseudomonas fragi"],["NCBITaxon%3A1255586","Pseudomonas fragi 1E26"],["NCBITaxon%3A1134475","Pseudomonas fragi A22"],["NCBITaxon%3A1136138","Pseudomonas fragi B25"],["NCBITaxon%3A1215101","Pseudomonas fragi NBRC 3458"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":1,"nb":5,"a":[["morphology/gliding.html","gliding"]],"b":[["NCBITaxon%3A34","Myxococcus xanthus"],["NCBITaxon%3A246197","Myxococcus xanthus DK 1622"],["NCBITaxon%3A1198133","Myxococcus xanthus DZ2"],["NCBITaxon%3A1198538","Myxococcus xanthus DZF1"],["NCBITaxon%3A675543","Myxococcus xanthus NewJersey2"]]},{"id":"NCBITaxon:575322","l":"Sphingomonas oligoaromativorans","na":5,"nb":1,"a":[["environment/nacl_delta_low.html","NaCl delta low"],["environment/nacl_optimum_low.html","NaCl optimum low"],["environment/nacl_range_low.html","NaCl range low"],["environment/ph_delta_very_low.html","pH delta very low"],["environment/ph_range_mid1.html","pH range mid1"]],"b":[["NCBITaxon%3A575322","Sphingomonas oligoaromativorans"]]},{"id":"NCBITaxon:863","l":"Syntrophomonas wolfei","na":1,"nb":5,"a":[["metabolism/syntrophy.html","Syntrophy"]],"b":[["NCBITaxon%3A863","Syntrophomonas wolfei"],["NCBITaxon%3A378794","Syntrophomonas wolfei subsp. methylbutyratica"],["NCBITaxon%3A373074","Syntrophomonas wolfei subsp. saponavida"],["NCBITaxon%3A370885","Syntrophomonas wolfei subsp. wolfei"],["NCBITaxon%3A335541","Syntrophomonas wolfei subsp. wolfei str. Goettingen G311"]]},{"id":"NCBITaxon:132919","l":"Rhodococcus jostii","na":1,"nb":4,"a":[["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["NCBITaxon%3A1850366","Paenibacillus rhizophilus"],["NCBITaxon%3A132919","Rhodococcus jostii"],["NCBITaxon%3A1219017","Rhodococcus jostii NBRC 16295"],["NCBITaxon%3A101510","Rhodococcus jostii RHA1"]]},{"id":"NCBITaxon:1519","l":"Clostridium tyrobutyricum","na":1,"nb":4,"a":[["metabolism/butyric_acid_fermentation.html","butyric acid fermentation"]],"b":[["NCBITaxon%3A1519","Clostridium tyrobutyricum"],["NCBITaxon%3A1408889","Clostridium tyrobutyricum DIVETGP"],["NCBITaxon%3A1121342","Clostridium tyrobutyricum DSM 2637 = ATCC 25755 = JCM 11008"],["NCBITaxon%3A1212547","Clostridium tyrobutyricum UC7086"]]},{"id":"NCBITaxon:265546","l":"Anoxybacillus ayderensis","na":1,"nb":4,"a":[["environment/facultatively_aerobic.html","facultatively aerobic"]],"b":[["NCBITaxon%3A265546","Anoxybacillus ayderensis"],["NCBITaxon%3A1212546","Anoxybacillus ayderensis G10"],["NCBITaxon%3A529374","Anoxybacillus kamchatkensis subsp. asaccharedens"],["NCBITaxon%3A1872573","Anoxybacillus sp."]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":1,"nb":4,"a":[["physiology/alpha_fucosidase_activity.html","alpha-fucosidase activity"]],"b":[["NCBITaxon%3A28112","Tannerella forsythia"],["NCBITaxon%3A1307832","Tannerella forsythia 3313"],["NCBITaxon%3A203275","Tannerella forsythia 92A2"],["NCBITaxon%3A1307833","Tannerella forsythia KS16"]]},{"id":"NCBITaxon:959","l":"Bdellovibrio bacteriovorus","na":1,"nb":4,"a":[["ecology/predatory_bacterium.html","predatory bacterium"]],"b":[["NCBITaxon%3A959","Bdellovibrio bacteriovorus"],["NCBITaxon%3A264462","Bdellovibrio bacteriovorus HD100"],["NCBITaxon%3A1069642","Bdellovibrio bacteriovorus str. Tiberius"],["NCBITaxon%3A765869","Bdellovibrio bacteriovorus W"]]},{"id":"NCBITaxon:1570","l":"Halobacillus halophilus","na":1,"nb":3,"a":[["environment/halotolerant.html","halotolerant"]],"b":[["NCBITaxon%3A1570","Halobacillus halophilus"],["NCBITaxon%3A866895","Halobacillus halophilus DSM 2266"],["NCBITaxon%3A56800","Halobacillus sp."]]},{"id":"NCBITaxon:157784","l":"Zestomonas thermotolerans","na":1,"nb":3,"a":[["environment/thermotolerant.html","thermotolerant"]],"b":[["NCBITaxon%3A1123021","Pseudomonas thermotolerans DSM 14292"],["NCBITaxon%3A935867","Pseudomonas thermotolerans J53"],["NCBITaxon%3A157784","Zestomonas thermotolerans"]]},{"id":"NCBITaxon:245174","l":"Wallemia ichthyophaga","na":3,"nb":1,"a":[["environment/nacl_delta_high.html","NaCl delta high"],["environment/nacl_optimum.html","NaCl optimum"],["environment/nacl_optimum_high.html","NaCl optimum high"]],"b":[["NCBITaxon%3A245174","Wallemia ichthyophaga"]]},{"id":"NCBITaxon:2593654","l":"Pseudomonas mangiferae","na":3,"nb":1,"a":[["environment/ph_optimum_mid1.html","pH optimum mid1"],["environment/temperature_delta_mid2.html","temperature delta mid2"],["environment/temperature_range_mid2.html","temperature range mid2"]],"b":[["NCBITaxon%3A2593654","Pseudomonas mangiferae"]]},{"id":"NCBITaxon:28264","l":"Arcanobacterium haemolyticum","na":1,"nb":3,"a":[["physiology/alpha_mannosidase_activity.html","alpha-mannosidase activity"]],"b":[["NCBITaxon%3A28264","Arcanobacterium haemolyticum"],["NCBITaxon%3A644284","Arcanobacterium haemolyticum DSM 20595"],["NCBITaxon%3A1328","Streptococcus anginosus"]]},{"id":"NCBITaxon:316401","l":"Escherichia coli O78:H11 (strain H10407 / ETEC)","na":1,"nb":3,"a":[["other/indole_test_positive.html","indole test positive"]],"b":[["NCBITaxon%3A316401","Escherichia coli ETEC H10407"],["NCBITaxon%3A1213735","Escherichia coli H10407_1968"],["NCBITaxon%3A1213736","Escherichia coli H10407_1970"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans Pd1222","na":1,"nb":3,"a":[["physiology/mixotrophic.html","mixotrophic"]],"b":[["NCBITaxon%3A266","Paracoccus denitrificans"],["NCBITaxon%3A1302247","Paracoccus denitrificans JCM 21484"],["NCBITaxon%3A318586","Paracoccus denitrificans PD1222"]]},{"id":"NCBITaxon:335992","l":"Candidatus Pelagibacter ubique HTCC1062","na":3,"nb":1,"a":[["ecology/habitat_association.html","habitat association"],["physiology/nutrient_adaptation.html","nutrient adaptation"],["physiology/oligotrophic.html","oligotrophic"]],"b":[["NCBITaxon%3A335992","Candidatus Pelagibacter ubique HTCC1062"]]},{"id":"NCBITaxon:414","l":"Methylococcus capsulatus","na":1,"nb":3,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["NCBITaxon%3A414","Methylococcus capsulatus"],["NCBITaxon%3A243233","Methylococcus capsulatus str. Bath"],["NCBITaxon%3A1224744","Methylococcus capsulatus str. Texas = ATCC 19069"]]},{"id":"NCBITaxon:75906","l":"Thermocrinis ruber","na":1,"nb":3,"a":[["morphology/polytrichous_flagellation.html","polytrichous flagellation"]],"b":[["NCBITaxon%3A136094","Thermocrinis albus"],["NCBITaxon%3A932678","Thermocrinis albus DSM 12173"],["NCBITaxon%3A75906","Thermocrinis ruber"]]},{"id":"NCBITaxon:93061","l":"Staphylococcus aureus (strain NCTC 8325 / PS 47)","na":1,"nb":3,"a":[["physiology/catalase_activity.html","catalase activity"]],"b":[["NCBITaxon%3A1280","Staphylococcus aureus"],["NCBITaxon%3A93061","Staphylococcus aureus subsp. aureus NCTC 8325"],["NCBITaxon%3A561307","Staphylococcus aureus subsp. aureus RN4220"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":2,"nb":1,"a":[["genomics/gc_mid1.html","GC mid1"],["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["NCBITaxon%3A100226","Streptomyces coelicolor A3(2)"]]},{"id":"NCBITaxon:1032480","l":"Microlunatus phosphovorus NM-1","na":1,"nb":2,"a":[["morphology/polyphosphate_granule.html","polyphosphate granule"]],"b":[["NCBITaxon%3A29405","Microlunatus phosphovorus"],["NCBITaxon%3A1032480","Microlunatus phosphovorus NM-1"]]},{"id":"NCBITaxon:1053","l":"Halorhodospira halophila","na":1,"nb":2,"a":[["environment/haloalkaliphilic.html","haloalkaliphilic"]],"b":[["NCBITaxon%3A1053","Halorhodospira halophila"],["NCBITaxon%3A349124","Halorhodospira halophila SL1"]]},{"id":"NCBITaxon:1111735","l":"Sedimenticola selenatireducens DSM 17993","na":1,"nb":2,"a":[["metabolism/selenate_respiration.html","selenate respiration"]],"b":[["NCBITaxon%3A191960","Sedimenticola selenatireducens"],["NCBITaxon%3A1111735","Sedimenticola selenatireducens DSM 17993"]]},{"id":"NCBITaxon:1123295","l":"Stella vacuolata DSM 5901 = ATCC 43931","na":1,"nb":2,"a":[["morphology/star_shaped.html","star shaped"]],"b":[["NCBITaxon%3A217070","Allostella vacuolata"],["NCBITaxon%3A1123295","Stella vacuolata DSM 5901 = ATCC 43931"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":2,"nb":1,"a":[["morphology/carboxysome.html","carboxysome"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]],"b":[["NCBITaxon%3A1140","Synechococcus elongatus PCC 7942 = FACHB-805"]]},{"id":"NCBITaxon:1182451","l":"Aureivirga marina","na":2,"nb":1,"a":[["environment/nacl_delta_mid1.html","NaCl delta mid1"],["environment/nacl_range_mid2.html","NaCl range mid2"]],"b":[["NCBITaxon%3A1182451","Aureivirga marina"]]},{"id":"NCBITaxon:1232683","l":"Marinobacterium lacunae","na":2,"nb":1,"a":[["morphology/cell_length_medium.html","cell length medium"],["morphology/cell_width_large.html","cell width large"]],"b":[["NCBITaxon%3A1232683","Marinobacterium lacunae"]]},{"id":"NCBITaxon:129958","l":"Carboxydothermus hydrogenoformans","na":1,"nb":2,"a":[["physiology/carboxydotrophic.html","carboxydotrophic"]],"b":[["NCBITaxon%3A129958","Carboxydothermus hydrogenoformans"],["NCBITaxon%3A246194","Carboxydothermus hydrogenoformans Z-2901"]]},{"id":"NCBITaxon:132926","l":"Clostridium psychrophilum","na":2,"nb":1,"a":[["environment/temperature_optimum_very_low.html","temperature optimum very low"],["environment/temperature_preference.html","temperature preference"]],"b":[["NCBITaxon%3A132926","Clostridium psychrophilum"]]},{"id":"NCBITaxon:1385984","l":"Exiguobacterium chiriqhucha","na":1,"nb":2,"a":[["environment/temperature_delta_high.html","temperature delta high"]],"b":[["NCBITaxon%3A1385984","Exiguobacterium chiriqhucha"],["NCBITaxon%3A1345023","Exiguobacterium chiriqhucha RW-2"]]},{"id":"NCBITaxon:1455609","l":"Natrinema thermotolerans A29","na":1,"nb":2,"a":[["genomics/dndcdea_pbeabcd_system.html","DndCDEA-PbeABCD system"]],"b":[["NCBITaxon%3A121872","Natrinema thermotolerans"],["NCBITaxon%3A1455609","Natrinema thermotolerans A29"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":1,"nb":2,"a":[["physiology/urease_activity.html","urease activity"]],"b":[["NCBITaxon%3A1474","Sporosarcina pasteurii"],["NCBITaxon%3A1415631","Sporosarcina pasteurii NCIM 2477"]]},{"id":"NCBITaxon:160233","l":"Ignicoccus hospitalis","na":1,"nb":2,"a":[["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"]],"b":[["NCBITaxon%3A160233","Ignicoccus hospitalis"],["NCBITaxon%3A453591","Ignicoccus hospitalis KIN4/I"]]},{"id":"NCBITaxon:1708","l":"Cellulomonas fimi","na":1,"nb":2,"a":[["metabolism/biopolymer_degradation.html","biopolymer degradation"]],"b":[["NCBITaxon%3A1708","Cellulomonas fimi"],["NCBITaxon%3A590998","Cellulomonas fimi ATCC 484"]]},{"id":"NCBITaxon:1793963","l":"Bacillus nakamurai","na":2,"nb":1,"a":[["environment/temperature_range_mid3.html","temperature range mid3"],["genomics/gc_low.html","GC low"]],"b":[["NCBITaxon%3A1793963","Bacillus nakamurai"]]},{"id":"NCBITaxon:180","l":"Leptospirillum ferrooxidans","na":1,"nb":2,"a":[["metabolism/iron_oxidation.html","iron oxidation"]],"b":[["NCBITaxon%3A180","Leptospirillum ferrooxidans"],["NCBITaxon%3A1162668","Leptospirillum ferrooxidans C2-3"]]},{"id":"NCBITaxon:200904","l":"Paraliobacillus ryukyuensis","na":2,"nb":1,"a":[["environment/nacl_optimum.html","NaCl optimum"],["environment/slightly_halophilic.html","slightly halophilic"]],"b":[["NCBITaxon%3A200904","Paraliobacillus ryukyuensis"]]},{"id":"NCBITaxon:224911","l":"Bradyrhizobium diazoefficiens USDA 110","na":1,"nb":2,"a":[["morphology/subpolar_flagellation.html","subpolar flagellation"]],"b":[["NCBITaxon%3A1355477","Bradyrhizobium diazoefficiens"],["NCBITaxon%3A224911","Bradyrhizobium diazoefficiens USDA 110"]]},{"id":"NCBITaxon:2325","l":"Thermoanaerobacter kivui","na":2,"nb":1,"a":[["environment/temperature_phenotype_with_numerical_limits.html","temperature phenotype with numerical limits"],["environment/temperature_preference.html","temperature preference"]],"b":[["NCBITaxon%3A2325","Thermoanaerobacter kivui"]]},{"id":"NCBITaxon:2336","l":"Thermotoga maritima","na":1,"nb":2,"a":[["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"]],"b":[["NCBITaxon%3A2336","Thermotoga maritima"],["NCBITaxon%3A243274","Thermotoga maritima MSB8"]]},{"id":"NCBITaxon:243159","l":"Acidithiobacillus ferrooxidans ATCC 23270","na":1,"nb":2,"a":[["metabolism/iron_oxidation.html","iron oxidation"]],"b":[["NCBITaxon%3A920","Acidithiobacillus ferrooxidans"],["NCBITaxon%3A243159","Acidithiobacillus ferrooxidans ATCC 23270"]]},{"id":"NCBITaxon:243164","l":"Dehalococcoides mccartyi 195","na":1,"nb":2,"a":[["metabolism/organohalide_respiration.html","organohalide respiration"]],"b":[["NCBITaxon%3A61435","Dehalococcoides mccartyi"],["NCBITaxon%3A243164","Dehalococcoides mccartyi 195"]]},{"id":"NCBITaxon:243230","l":"Deinococcus radiodurans (strain ATCC 13939 / DSM 20539 / JCM 16871 / CCUG 27074 / LMG 4051 / NBRC 15346 / NCIMB 9279 / VKM B-1422 / R1)","na":1,"nb":2,"a":[["environment/radiotolerant.html","radiotolerant"]],"b":[["NCBITaxon%3A1299","Deinococcus radiodurans"],["NCBITaxon%3A243230","Deinococcus radiodurans R1 = ATCC 13939 = DSM 20539"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii (strain ATCC 43067 / DSM 2661 / JAL-1 / JCM 10045 / NBRC 100440)","na":1,"nb":2,"a":[["metabolism/methanogenesis.html","Methanogenesis"]],"b":[["NCBITaxon%3A2190","Methanocaldococcus jannaschii"],["NCBITaxon%3A243232","Methanocaldococcus jannaschii DSM 2661"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima (strain ATCC 43589 / DSM 3109 / JCM 10099 / NBRC 100826 / MSB8)","na":1,"nb":2,"a":[["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"]],"b":[["NCBITaxon%3A2336","Thermotoga maritima"],["NCBITaxon%3A243274","Thermotoga maritima MSB8"]]},{"id":"NCBITaxon:2498453","l":"Geminicoccus harenae","na":2,"nb":1,"a":[["physiology/cystine_arylamidase_activity.html","cystine arylamidase activity"],["physiology/valine_arylamidase_activity.html","valine arylamidase activity"]],"b":[["NCBITaxon%3A2498453","Geminicoccus harenae"]]},{"id":"NCBITaxon:2585141","l":"Flavicella sediminum","na":2,"nb":1,"a":[["environment/nacl_optimum_mid1.html","NaCl optimum mid1"],["morphology/cell_length_very_small.html","cell length very small"]],"b":[["NCBITaxon%3A2585141","Flavicella sediminum"]]},{"id":"NCBITaxon:272630","l":"Methylorubrum extorquens (strain ATCC 14718 / DSM 1338 / JCM 2805 / NCIMB 9133 / AM1)","na":1,"nb":2,"a":[["physiology/methylotrophic.html","methylotrophic"]],"b":[["NCBITaxon%3A408","Methylorubrum extorquens"],["NCBITaxon%3A272630","Methylorubrum extorquens AM1"]]},{"id":"NCBITaxon:273121","l":"Wolinella succinogenes ATCC 29543","na":1,"nb":2,"a":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]],"b":[["NCBITaxon%3A844","Wolinella succinogenes"],["NCBITaxon%3A273121","Wolinella succinogenes DSM 1740"]]},{"id":"NCBITaxon:2781979","l":"Pontibacterium sinense","na":2,"nb":1,"a":[["environment/temperature_delta_mid1.html","temperature delta mid1"],["environment/temperature_optimum_mid2.html","temperature optimum mid2"]],"b":[["NCBITaxon%3A2781979","Pontibacterium sinense"]]},{"id":"NCBITaxon:292415","l":"Thiobacillus denitrificans ATCC 25259","na":2,"nb":1,"a":[["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/chemoautotrophic.html","chemoautotrophic"]],"b":[["NCBITaxon%3A292415","Thiobacillus denitrificans ATCC 25259"]]},{"id":"NCBITaxon:29282","l":"Haloarcula japonica","na":1,"nb":2,"a":[["morphology/triangular_shaped.html","triangular shaped"]],"b":[["NCBITaxon%3A29282","Haloarcula japonica"],["NCBITaxon%3A1227453","Haloarcula japonica DSM 6131"]]},{"id":"NCBITaxon:29405","l":"Microlunatus phosphovorus","na":1,"nb":2,"a":[["morphology/polyphosphate_granule.html","polyphosphate granule"]],"b":[["NCBITaxon%3A29405","Microlunatus phosphovorus"],["NCBITaxon%3A1032480","Microlunatus phosphovorus NM-1"]]},{"id":"NCBITaxon:2974574","l":"Helicobacter zhangjianzhongii","na":2,"nb":1,"a":[["physiology/arginine_arylamidase_activity.html","arginine arylamidase activity"],["physiology/gamma_glutamyltransferase_activity.html","gamma-glutamyltransferase activity"]],"b":[["NCBITaxon%3A2974574","Helicobacter zhangjianzhongii"]]},{"id":"NCBITaxon:3037259","l":"Flexibacterium corallicola","na":2,"nb":1,"a":[["physiology/alpha_glucosidase_activity.html","alpha-glucosidase activity"],["physiology/trypsin_activity.html","trypsin activity"]],"b":[["NCBITaxon%3A3037259","Flexibacterium corallicola"]]},{"id":"NCBITaxon:3080537","l":"Rubellicoccus peritrichatus","na":2,"nb":1,"a":[["environment/ph_optimum_mid2.html","pH optimum mid2"],["environment/temperature_optimum_mid1.html","temperature optimum mid1"]],"b":[["NCBITaxon%3A3080537","Rubellicoccus peritrichatus"]]},{"id":"NCBITaxon:324679","l":"Spirochaeta dissipatitropha","na":2,"nb":1,"a":[["morphology/cell_length_large.html","cell length large"],["morphology/cell_width_very_small.html","cell width very small"]],"b":[["NCBITaxon%3A324679","Spirochaeta dissipatitropha"]]},{"id":"NCBITaxon:33952","l":"Acetobacterium woodii","na":1,"nb":2,"a":[["metabolism/homoacetogenesis.html","Homoacetogenesis"]],"b":[["NCBITaxon%3A33952","Acetobacterium woodii"],["NCBITaxon%3A931626","Acetobacterium woodii DSM 1030"]]},{"id":"NCBITaxon:340184","l":"Escherichia coli B7A","na":2,"nb":1,"a":[["genomics/dnd_system.html","Dnd system"],["genomics/phosphorothioate_defense_system.html","phosphorothioate defense system"]],"b":[["NCBITaxon%3A340184","Escherichia coli B7A"]]},{"id":"NCBITaxon:3447298","l":"Microbaculum mangrovi","na":2,"nb":1,"a":[["environment/ph_delta_mid2.html","pH delta mid2"],["environment/ph_optimum.html","pH optimum"]],"b":[["NCBITaxon%3A3447298","Microbaculum mangrovi"]]},{"id":"NCBITaxon:357794","l":"Psychromonas ingrahamii","na":1,"nb":2,"a":[["environment/temperature_range_very_low.html","temperature range very low"]],"b":[["NCBITaxon%3A357794","Psychromonas ingrahamii"],["NCBITaxon%3A357804","Psychromonas ingrahamii 37"]]},{"id":"NCBITaxon:399549","l":"Metallosphaera sedula DSM 5348","na":1,"nb":2,"a":[["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]],"b":[["NCBITaxon%3A43687","Metallosphaera sedula"],["NCBITaxon%3A399549","Metallosphaera sedula DSM 5348"]]},{"id":"NCBITaxon:43687","l":"Metallosphaera sedula","na":1,"nb":2,"a":[["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]],"b":[["NCBITaxon%3A43687","Metallosphaera sedula"],["NCBITaxon%3A399549","Metallosphaera sedula DSM 5348"]]},{"id":"NCBITaxon:44001","l":"Caldicellulosiruptor saccharolyticus","na":1,"nb":2,"a":[["metabolism/xylan_degradation.html","xylan degradation"]],"b":[["NCBITaxon%3A44001","Caldicellulosiruptor saccharolyticus"],["NCBITaxon%3A351627","Caldicellulosiruptor saccharolyticus DSM 8903"]]},{"id":"NCBITaxon:453591","l":"Ignicoccus hospitalis KIN4/I","na":1,"nb":2,"a":[["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"]],"b":[["NCBITaxon%3A160233","Ignicoccus hospitalis"],["NCBITaxon%3A453591","Ignicoccus hospitalis KIN4/I"]]},{"id":"NCBITaxon:486505","l":"Amycolatopsis flava","na":2,"nb":1,"a":[["environment/nacl_range_high.html","NaCl range high"],["environment/ph_delta_high.html","pH delta high"]],"b":[["NCBITaxon%3A486505","Amycolatopsis flava"]]},{"id":"NCBITaxon:521674","l":"Planctopirus limnophila DSM 3776","na":1,"nb":2,"a":[["morphology/flask_shaped.html","flask shaped"]],"b":[["NCBITaxon%3A120","Planctopirus limnophila"],["NCBITaxon%3A521674","Planctopirus limnophila DSM 3776"]]},{"id":"NCBITaxon:54252","l":"Pyrolobus fumarii","na":1,"nb":2,"a":[["environment/extreme_hyperthermophilic.html","extreme hyperthermophilic"]],"b":[["NCBITaxon%3A54252","Pyrolobus fumarii"],["NCBITaxon%3A694429","Pyrolobus fumarii 1A"]]},{"id":"NCBITaxon:565050","l":"Caulobacter vibrioides NA1000","na":2,"nb":1,"a":[["morphology/crescent_shaped.html","crescent shaped"],["morphology/tailed_shaped.html","tailed shaped"]],"b":[["NCBITaxon%3A565050","Caulobacter vibrioides NA1000"]]},{"id":"NCBITaxon:651","l":"Aeromonas media","na":1,"nb":2,"a":[["morphology/brown_pigmented.html","brown pigmented"]],"b":[["NCBITaxon%3A651","Aeromonas media"],["NCBITaxon%3A1208104","Aeromonas media WS"]]},{"id":"NCBITaxon:65555","l":"Desulfocapsa sulfexigens","na":1,"nb":2,"a":[["metabolism/disproportionation.html","Disproportionation"]],"b":[["NCBITaxon%3A65555","Desulfocapsa sulfexigens"],["NCBITaxon%3A1167006","Desulfocapsa sulfexigens DSM 10523"]]},{"id":"NCBITaxon:69","l":"Lysobacter enzymogenes","na":1,"nb":2,"a":[["genomics/gasdermin_system.html","GasderMIN system"]],"b":[["NCBITaxon%3A69","Lysobacter enzymogenes"],["NCBITaxon%3A262324","Lysobacter gummosus"]]},{"id":"NCBITaxon:844","l":"Wolinella succinogenes","na":1,"nb":2,"a":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]],"b":[["NCBITaxon%3A844","Wolinella succinogenes"],["NCBITaxon%3A273121","Wolinella succinogenes DSM 1740"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":1,"nb":2,"a":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["NCBITaxon%3A881","Nitratidesulfovibrio vulgaris"],["NCBITaxon%3A882","Nitratidesulfovibrio vulgaris str. Hildenborough"]]},{"id":"NCBITaxon:968","l":"Spirillum volutans","na":2,"nb":1,"a":[["morphology/amphitrichous.html","amphitrichous"],["morphology/lophotrichous.html","lophotrichous"]],"b":[["NCBITaxon%3A968","Spirillum volutans"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. (strain PCC 7120 / SAG 25.82 / UTEX 2576)","na":1,"nb":1,"a":[["morphology/heterocyst.html","heterocyst"]],"b":[["NCBITaxon%3A103690","Nostoc sp. PCC 7120 = FACHB-418"]]},{"id":"NCBITaxon:1067","l":"Rhodocyclus purpureus","na":1,"nb":1,"a":[["morphology/ring_shaped.html","ring shaped"]],"b":[["NCBITaxon%3A1067","Rhodocyclus purpureus"]]},{"id":"NCBITaxon:1156985","l":"Epibacterium ulvae","na":1,"nb":1,"a":[["other/epibiont_phenotype.html","epibiont phenotype"]],"b":[["NCBITaxon%3A1156985","Epibacterium ulvae"]]},{"id":"NCBITaxon:1222002","l":"Flavobacterium panaciterrae","na":1,"nb":1,"a":[["physiology/beta_glucosidase_activity.html","beta-glucosidase activity"]],"b":[["NCBITaxon%3A1222002","Flavobacterium panaciterrae"]]},{"id":"NCBITaxon:1267","l":"Sarcina ventriculi","na":1,"nb":1,"a":[["morphology/sarcina_arrangement.html","sarcina arrangement"]],"b":[["NCBITaxon%3A1267","Sarcina ventriculi"]]},{"id":"NCBITaxon:133804","l":"gamma proteobacterium EBAC31A08","na":1,"nb":1,"a":[["metabolism/proteorhodopsin_phototrophy.html","proteorhodopsin phototrophy"]],"b":[["NCBITaxon%3A133804","uncultured marine gamma proteobacterium EBAC31A08"]]},{"id":"NCBITaxon:1392998","l":"Candidatus Methanoperedens nitratireducens","na":1,"nb":1,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"]],"b":[["NCBITaxon%3A1392998","Candidatus Methanoperedens nitratireducens"]]},{"id":"NCBITaxon:1463663","l":"Bacillus aequororis","na":1,"nb":1,"a":[["environment/ph_optimum_high.html","pH optimum high"]],"b":[["NCBITaxon%3A1463663","Bacillus aequororis"]]},{"id":"NCBITaxon:1473598","l":"Paludibaculum fermentans","na":1,"nb":1,"a":[["environment/facultatively_acidophilic.html","facultatively acidophilic"]],"b":[["NCBITaxon%3A1473598","Paludibaculum fermentans"]]},{"id":"NCBITaxon:1656892","l":"Nakamurella aerolata","na":1,"nb":1,"a":[["environment/temperature_range_mid1.html","temperature range mid1"]],"b":[["NCBITaxon%3A1656892","Nakamurella aerolata"]]},{"id":"NCBITaxon:167879","l":"Colwellia psychrerythraea 34H","na":1,"nb":1,"a":[["environment/psychrophilic.html","psychrophilic"]],"b":[["NCBITaxon%3A167879","Colwellia psychrerythraea 34H"]]},{"id":"NCBITaxon:1715645","l":"Paracoccus mangrovi","na":1,"nb":1,"a":[["environment/ph_delta_low.html","pH delta low"]],"b":[["NCBITaxon%3A1715645","Paracoccus mangrovi"]]},{"id":"NCBITaxon:1715989","l":"Candidatus Nitrospira inopinata","na":1,"nb":1,"a":[["metabolism/complete_ammonia_oxidation.html","complete ammonia oxidation"]],"b":[["NCBITaxon%3A1715989","Candidatus Nitrospira inopinata"]]},{"id":"NCBITaxon:1847728","l":"Companilactobacillus allii","na":1,"nb":1,"a":[["physiology/leucine_arylamidase_activity.html","leucine arylamidase activity"]],"b":[["NCBITaxon%3A1847728","Companilactobacillus allii"]]},{"id":"NCBITaxon:1880678","l":"Pseudomonas sivasensis","na":1,"nb":1,"a":[["environment/temperature_optimum_low.html","temperature optimum low"]],"b":[["NCBITaxon%3A1880678","Pseudomonas sivasensis"]]},{"id":"NCBITaxon:1979153","l":"Synechococcus sp. YX04-3","na":1,"nb":1,"a":[["environment/stenohaline.html","stenohaline"]],"b":[["NCBITaxon%3A1979153","Synechococcus sp. YX04-3"]]},{"id":"NCBITaxon:2005002","l":"Candidatus Electronema aureum","na":1,"nb":1,"a":[["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"]],"b":[["NCBITaxon%3A2005002","Candidatus Electronema aureum"]]},{"id":"NCBITaxon:2026187","l":"Bacillus pacificus","na":1,"nb":1,"a":[["physiology/dnase_activity.html","DNase activity"]],"b":[["NCBITaxon%3A2026187","Bacillus pacificus"]]},{"id":"NCBITaxon:2086571","l":"Solimonas fluminis","na":1,"nb":1,"a":[["environment/ph_range_mid2.html","pH range mid2"]],"b":[["NCBITaxon%3A2086571","Solimonas fluminis"]]},{"id":"NCBITaxon:2283","l":"Acidianus ambivalens","na":1,"nb":1,"a":[["metabolism/disproportionation.html","Disproportionation"]],"b":[["NCBITaxon%3A2283","Acidianus ambivalens"]]},{"id":"NCBITaxon:2303410","l":"Simulacricoccus ruber","na":1,"nb":1,"a":[["environment/microaerotolerant.html","microaerotolerant"]],"b":[["NCBITaxon%3A2303410","Simulacricoccus ruber"]]},{"id":"NCBITaxon:2306023","l":"Gemmobacter lutimaris","na":1,"nb":1,"a":[["environment/ph_delta_mid3.html","pH delta mid3"]],"b":[["NCBITaxon%3A2306023","Gemmobacter lutimaris"]]},{"id":"NCBITaxon:237727","l":"Erythrobacter sp. NAP1","na":1,"nb":1,"a":[["physiology/aerobic_anoxygenic_phototrophy.html","aerobic anoxygenic phototrophy"]],"b":[["NCBITaxon%3A237727","Erythrobacter sp. NAP1"]]},{"id":"NCBITaxon:240292","l":"Trichormus variabilis ATCC 29413","na":1,"nb":1,"a":[["morphology/akinete.html","akinete"]],"b":[["NCBITaxon%3A240292","Trichormus variabilis ATCC 29413"]]},{"id":"NCBITaxon:243233","l":"Methylococcus capsulatus Bath","na":1,"nb":1,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["NCBITaxon%3A243233","Methylococcus capsulatus str. Bath"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK1622","na":1,"nb":1,"a":[["morphology/gliding.html","gliding"]],"b":[["NCBITaxon%3A246197","Myxococcus xanthus DK 1622"]]},{"id":"NCBITaxon:2547392","l":"Seongchinamella unica","na":1,"nb":1,"a":[["morphology/cream_pigmented.html","cream pigmented"]],"b":[["NCBITaxon%3A2547392","Seongchinamella unica"]]},{"id":"NCBITaxon:258594","l":"Rhodopseudomonas palustris CGA009","na":1,"nb":1,"a":[["physiology/photoorganoheterotrophic.html","photoorganoheterotrophic"]],"b":[["NCBITaxon%3A258594","Rhodopseudomonas palustris CGA009"]]},{"id":"NCBITaxon:264203","l":"Zymomonas mobilis subsp. mobilis (strain ATCC 31821 / ZM4 / CP4)","na":1,"nb":1,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"]],"b":[["NCBITaxon%3A264203","Zymomonas mobilis subsp. mobilis ZM4 = ATCC 31821"]]},{"id":"NCBITaxon:266834","l":"Rhizobium meliloti (strain 1021)","na":1,"nb":1,"a":[["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"]],"b":[["NCBITaxon%3A266834","Sinorhizobium meliloti 1021"]]},{"id":"NCBITaxon:272623","l":"Lactococcus lactis subsp. lactis (strain IL1403)","na":1,"nb":1,"a":[["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]],"b":[["NCBITaxon%3A272623","Lactococcus lactis subsp. lactis Il1403"]]},{"id":"NCBITaxon:2822231","l":"Phanerodontia chrysosporium","na":1,"nb":1,"a":[["metabolism/manganese_oxidation.html","manganese oxidation"]],"b":[["NCBITaxon%3A2822231","Phanerodontia chrysosporium"]]},{"id":"NCBITaxon:2995321","l":"Spongorhabdus nitratireducens","na":1,"nb":1,"a":[["environment/nacl_range_mid1.html","NaCl range mid1"]],"b":[["NCBITaxon%3A2995321","Spongorhabdus nitratireducens"]]},{"id":"NCBITaxon:3073604","l":"Ruixingdingia sedimenti","na":1,"nb":1,"a":[["morphology/cell_width_medium.html","cell width medium"]],"b":[["NCBITaxon%3A3073604","Ruixingdingia sedimenti"]]},{"id":"NCBITaxon:313590","l":"Dokdonia sp. MED134","na":1,"nb":1,"a":[["metabolism/proteorhodopsin_phototrophy.html","proteorhodopsin phototrophy"]],"b":[["NCBITaxon%3A313590","Dokdonia sp. MED134"]]},{"id":"NCBITaxon:319224","l":"Shewanella putrefaciens CN-32","na":1,"nb":1,"a":[["morphology/flagellar_arrangement.html","flagellar arrangement"]],"b":[["NCBITaxon%3A319224","Shewanella putrefaciens CN-32"]]},{"id":"NCBITaxon:3234132","l":"Aestuariibius violaceus","na":1,"nb":1,"a":[["environment/temperature_range_low.html","temperature range low"]],"b":[["NCBITaxon%3A3234132","Aestuariibius violaceus"]]},{"id":"NCBITaxon:335541","l":"Syntrophomonas wolfei subsp. wolfei (strain DSM 2245B / Goettingen)","na":1,"nb":1,"a":[["metabolism/syntrophy.html","Syntrophy"]],"b":[["NCBITaxon%3A335541","Syntrophomonas wolfei subsp. wolfei str. Goettingen G311"]]},{"id":"NCBITaxon:36080","l":"Mucor circinelloides","na":1,"nb":1,"a":[["environment/temperature_optimum_mid3.html","temperature optimum mid3"]],"b":[["NCBITaxon%3A36080","Mucor circinelloides"]]},{"id":"NCBITaxon:36863","l":"Ideonella dechloratans","na":1,"nb":1,"a":[["metabolism/chlorate_respiration.html","chlorate respiration"]],"b":[["NCBITaxon%3A36863","Ideonella dechloratans"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["metabolism/photoferrotrophy.html","photoferrotrophy"]],"b":[["NCBITaxon%3A395960","Rhodopseudomonas palustris TIE-1"]]},{"id":"NCBITaxon:412955","l":"Pseudomonas sp. SCT","na":1,"nb":1,"a":[["metabolism/iodate_respiration.html","iodate respiration"]],"b":[["NCBITaxon%3A412955","Pseudomonas sp. SCT"]]},{"id":"NCBITaxon:449447","l":"Microcystis aeruginosa NIES-843","na":1,"nb":1,"a":[["morphology/gas_vesicle.html","gas vesicle"]],"b":[["NCBITaxon%3A449447","Microcystis aeruginosa NIES-843"]]},{"id":"NCBITaxon:498216","l":"Lacticaseibacillus casei str. Zhang","na":1,"nb":1,"a":[["genomics/brex_system.html","BREX system"]],"b":[["NCBITaxon%3A498216","Lacticaseibacillus casei str. Zhang"]]},{"id":"NCBITaxon:568708","l":"Salmonella enterica subsp. enterica serovar Typhimurium str. D23580","na":1,"nb":1,"a":[["genomics/bsta_system.html","BstA system"]],"b":[["NCBITaxon%3A568708","Salmonella enterica subsp. enterica serovar Typhimurium str. D23580"]]},{"id":"NCBITaxon:71421","l":"Haemophilus influenzae (strain ATCC 51907 / DSM 11121 / KW20 / Rd)","na":1,"nb":1,"a":[["genomics/restriction_modification_system.html","restriction-modification system"]],"b":[["NCBITaxon%3A71421","Haemophilus influenzae Rd KW20"]]},{"id":"NCBITaxon:718002","l":"Peribacillus endoradicis","na":1,"nb":1,"a":[["environment/nacl_delta_mid2.html","NaCl delta mid2"]],"b":[["NCBITaxon%3A718002","Peribacillus endoradicis"]]},{"id":"NCBITaxon:75750","l":"Aspergillus sydowii","na":1,"nb":1,"a":[["environment/nacl_delta_high.html","NaCl delta high"]],"b":[["NCBITaxon%3A75750","Aspergillus sydowii"]]},{"id":"NCBITaxon:766760","l":"Bacillus paralicheniformis ATCC 9945a","na":1,"nb":1,"a":[["genomics/disarm_system.html","DISARM system"]],"b":[["NCBITaxon%3A766760","Bacillus paralicheniformis ATCC 9945a"]]},{"id":"NCBITaxon:89","l":"Leptothrix discophora","na":1,"nb":1,"a":[["metabolism/manganese_oxidation.html","manganese oxidation"]],"b":[["NCBITaxon%3A89","Leptothrix discophora"]]},{"id":"NCBITaxon:90373","l":"Thiomargarita namibiensis","na":1,"nb":1,"a":[["morphology/sulfur_globule.html","sulfur globule"]],"b":[["NCBITaxon%3A90373","Thiomargarita namibiensis"]]},{"id":"NCBITaxon:913088","l":"Escherichia coli TW11681","na":1,"nb":1,"a":[["genomics/cbass_system.html","CBASS system"]],"b":[["NCBITaxon%3A913088","Escherichia coli TW11681"]]},{"id":"NCBITaxon:94122","l":"Shewanella sp. ANA-3","na":1,"nb":1,"a":[["metabolism/arsenate_respiration.html","arsenate respiration"]],"b":[["NCBITaxon%3A94122","Shewanella sp. ANA-3"]]},{"id":"NCBITaxon:99807","l":"Corynebacterium auriscanis","na":1,"nb":1,"a":[["physiology/pyrrolidonyl_arylamidase_activity.html","pyrrolidonyl arylamidase activity"]],"b":[["NCBITaxon%3A99807","Corynebacterium auriscanis"]]}]} \ No newline at end of file +{"a":"TraitMech","b":"TaxonMech","base":{"TraitMech":"https://culturebotai.github.io/TraitMech/pages/traits/","TaxonMech":"https://culturebotai.github.io/TaxonMech/pages/taxon.html?id="},"n":274,"by":{"NCBITaxon":274},"terms":[{"id":"NCBITaxon:562","l":"Escherichia coli","na":65,"nb":3868,"a":[["ecology/biosafety_level.html","biosafety level"],["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/host_associated.html","host-associated"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["environment/halophily_preference.html","halophily preference"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A196023","Aeromonas hydrophila subsp. hydrophila"],["NCBITaxon%3A380703","Aeromonas hydrophila subsp. hydrophila ATCC 7966"],["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A35703","Citrobacter amalonaticus"],["NCBITaxon%3A163202","Corynebacterium appendicis"]]},{"id":"NCBITaxon:83333","l":"Escherichia coli K-12","na":26,"nb":39,"a":[["environment/ph_phenotype_with_numerical_limits.html","pH phenotype with numerical limits"],["environment/temperature_optimum_mid4.html","temperature optimum mid4"],["genomics/rnlab_system.html","RnlAB system"],["metabolism/metabolism.html","metabolism"],["metabolism/mixed_acid_fermentation.html","mixed-acid fermentation"],["metabolism/respiration.html","respiration"]],"b":[["NCBITaxon%3A679895","Escherichia coli BW25113"],["NCBITaxon%3A595496","Escherichia coli BW2952"],["NCBITaxon%3A1318715","Escherichia coli BW38028"],["NCBITaxon%3A1245474","Escherichia coli ER2796"],["NCBITaxon%3A83333","Escherichia coli K-12"],["NCBITaxon%3A527799","Escherichia coli LW1655F+"]]},{"id":"NCBITaxon:1358","l":"Lactococcus lactis","na":19,"nb":32,"a":[["environment/aerotolerant.html","aerotolerant"],["genomics/abia_system.html","AbiA system"],["genomics/abib_system.html","AbiB system"],["genomics/abic_system.html","AbiC system"],["genomics/abid_system.html","AbiD system"],["genomics/abie_system.html","AbiE system"]],"b":[["NCBITaxon%3A1359","Lactococcus cremoris"],["NCBITaxon%3A2816960","Lactococcus cremoris subsp. cremoris"],["NCBITaxon%3A1348655","Lactococcus cremoris subsp. cremoris NBRC 100676"],["NCBITaxon%3A1363","Lactococcus garvieae"],["NCBITaxon%3A1358","Lactococcus lactis"],["NCBITaxon%3A2731284","Lactococcus lactis (ex Latorre-Guzman et al. 1977) Schleifer et al. 1986"]]},{"id":"NCBITaxon:1423","l":"Bacillus subtilis","na":18,"nb":82,"a":[["ecology/biosafety_level_1.html","biosafety level 1"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/facultative_oxygen_preference.html","facultative oxygen preference"],["environment/neutrophilic.html","neutrophilic"],["environment/non_halophilic.html","non halophilic"],["genomics/spbk_system.html","SpbK system"]],"b":[["NCBITaxon%3A1390","Bacillus amyloliquefaciens"],["NCBITaxon%3A1452","Bacillus atrophaeus"],["NCBITaxon%3A640707","Bacillus atrophaeus ATCC 9372"],["NCBITaxon%3A483913","Bacillus inaquosorum"],["NCBITaxon%3A1236548","Bacillus inaquosorum KCTC 13429"],["NCBITaxon%3A1402","Bacillus licheniformis"]]},{"id":"NCBITaxon:1280","l":"Staphylococcus aureus","na":15,"nb":4740,"a":[["ecology/biosafety_level_2.html","biosafety level 2"],["ecology/human_pathogen.html","human pathogen"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/facultatively_anaerobic.html","facultatively anaerobic"],["morphology/carotenoid_pigmentation.html","carotenoid pigmentation"],["morphology/coccus_shaped.html","coccus shaped"]],"b":[["NCBITaxon%3A475088","Methanosphaerula palustris"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A1389955","Escherichia coli ATCC 35150"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A574","Klebsiella pneumoniae subsp. ozaenae"],["NCBITaxon%3A1218098","Klebsiella pneumoniae subsp. ozaenae NBRC 105683"]]},{"id":"NCBITaxon:287","l":"Pseudomonas aeruginosa","na":11,"nb":557,"a":[["ecology/biofilm_formation.html","biofilm formation"],["ecology/pathogenic_to_host.html","pathogenic to host"],["environment/aerobic.html","aerobic"],["genomics/avast_system.html","AVAST system"],["genomics/jukab_system.html","JukAB system"],["morphology/motile.html","motile"]],"b":[["NCBITaxon%3A2073169","Chromobacterium alticapitis"],["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1454219","Pseudomonas aeruginosa 059A"],["NCBITaxon%3A1421538","Pseudomonas aeruginosa 0812"],["NCBITaxon%3A1421545","Pseudomonas aeruginosa 0822"],["NCBITaxon%3A1421531","Pseudomonas aeruginosa 0C2E"]]},{"id":"NCBITaxon:666","l":"Vibrio cholerae","na":9,"nb":287,"a":[["environment/euryhaline.html","euryhaline"],["genomics/dartg_system.html","DarTG system"],["genomics/ddmde_system.html","DdmDE system"],["genomics/genomic_island.html","genomic island"],["genomics/lamassu_system.html","Lamassu system"],["genomics/nixi_system.html","NixI system"]],"b":[["NCBITaxon%3A644","Aeromonas hydrophila"],["NCBITaxon%3A666","Vibrio cholerae"],["NCBITaxon%3A693741","Vibrio cholerae 0139-ARG"],["NCBITaxon%3A1294144","Vibrio cholerae 01-1751"],["NCBITaxon%3A592313","Vibrio cholerae 12129(1)"],["NCBITaxon%3A412966","Vibrio cholerae 1587"]]},{"id":"NCBITaxon:28901","l":"Salmonella enterica","na":6,"nb":5776,"a":[["ecology/animal_pathogen.html","animal pathogen"],["ecology/biosafety_level_2.html","biosafety level 2"],["genomics/genomic_island.html","genomic island"],["genomics/prophage.html","prophage"],["morphology/flagellated.html","flagellated"],["morphology/peritrichous.html","peritrichous"]],"b":[["NCBITaxon%3A54736","Salmonella bongori"],["NCBITaxon%3A218493","Salmonella bongori NCTC 12419"],["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59203","Salmonella enterica subsp. arizonae"],["NCBITaxon%3A2577126","Salmonella enterica subsp. arizonae serovar 11:z4,z23:-"],["NCBITaxon%3A2577127","Salmonella enterica subsp. arizonae serovar 13,22:z4,z23:-"]]},{"id":"NCBITaxon:573","l":"Klebsiella pneumoniae","na":6,"nb":422,"a":[["metabolism/butanediol_fermentation.html","2,3-butanediol fermentation"],["metabolism/citrate_fermentation.html","citrate fermentation"],["morphology/capsule.html","capsule"],["morphology/non_motile.html","non motile"],["other/indole_test_negative.html","indole test negative"],["other/methyl_red_test_negative.html","methyl red test negative"]],"b":[["NCBITaxon%3A1653844","Erwinia carnegieana"],["NCBITaxon%3A562","Escherichia coli"],["NCBITaxon%3A2058152","Klebsiella grimontii"],["NCBITaxon%3A54291","Klebsiella ornithinolytica"],["NCBITaxon%3A573","Klebsiella pneumoniae"],["NCBITaxon%3A1443592","Klebsiella pneumoniae 07A044"]]},{"id":"NCBITaxon:303","l":"Pseudomonas putida","na":6,"nb":53,"a":[["ecology/free_living.html","free-living"],["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["genomics/transposable_element.html","transposable element"],["physiology/chemoheterotrophic.html","chemoheterotrophic"],["physiology/chemoorganotrophic.html","chemoorganotrophic"]],"b":[["NCBITaxon%3A47920","Acidovorax delafieldii"],["NCBITaxon%3A301","Ectopseudomonas oleovorans"],["NCBITaxon%3A29581","Janthinobacterium lividum"],["NCBITaxon%3A294","Pseudomonas fluorescens"],["NCBITaxon%3A77298","Pseudomonas jessenii"],["NCBITaxon%3A1968891","Pseudomonas jessenii subsp. pseudoputida"]]},{"id":"NCBITaxon:1488","l":"Clostridium acetobutylicum","na":7,"nb":6,"a":[["environment/anaerobic.html","anaerobic"],["environment/obligately_anaerobic.html","obligately anaerobic"],["metabolism/fermentation.html","Fermentation"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"],["morphology/gram_variable.html","gram variable"],["morphology/spindle_shaped.html","spindle shaped"]],"b":[["NCBITaxon%3A1488","Clostridium acetobutylicum"],["NCBITaxon%3A272562","Clostridium acetobutylicum ATCC 824"],["NCBITaxon%3A991791","Clostridium acetobutylicum DSM 1731"],["NCBITaxon%3A863638","Clostridium acetobutylicum EA 2018"],["NCBITaxon%3A1520","Clostridium beijerinckii"],["NCBITaxon%3A1506","Clostridium sp."]]},{"id":"NCBITaxon:266","l":"Paracoccus denitrificans","na":6,"nb":6,"a":[["metabolism/aerobic_respiration.html","Aerobic respiration"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/denitrification.html","denitrification"],["metabolism/oxidative_phosphorylation.html","Oxidative phosphorylation"],["metabolism/respiration.html","respiration"],["physiology/oxidase_activity.html","oxidase activity"]],"b":[["NCBITaxon%3A266","Paracoccus denitrificans"],["NCBITaxon%3A1302247","Paracoccus denitrificans JCM 21484"],["NCBITaxon%3A318586","Paracoccus denitrificans PD1222"],["NCBITaxon%3A1051075","Paracoccus denitrificans SD1"],["NCBITaxon%3A82367","Paracoccus pantotrophus"],["NCBITaxon%3A189685","uncultured Paracoccus sp."]]},{"id":"NCBITaxon:1773","l":"Mycobacterium tuberculosis","na":5,"nb":2946,"a":[["ecology/biosafety_level_3.html","biosafety level 3"],["ecology/human_pathogen.html","human pathogen"],["physiology/acid_phosphatase_activity.html","acid phosphatase activity"],["physiology/dormancy.html","dormancy"],["physiology/pyrazinamidase_activity.html","pyrazinamidase activity"]],"b":[["NCBITaxon%3A1773","Mycobacterium tuberculosis"],["NCBITaxon%3A668339","Mycobacterium tuberculosis 00_1695"],["NCBITaxon%3A1455192","Mycobacterium tuberculosis 01-Cr4_ND_3_A"],["NCBITaxon%3A1455078","Mycobacterium tuberculosis 01-Ps1_0_A"],["NCBITaxon%3A515616","Mycobacterium tuberculosis 02_1987"],["NCBITaxon%3A1455200","Mycobacterium tuberculosis 02-Cr4_ND_3_B"]]},{"id":"NCBITaxon:1396","l":"Bacillus cereus","na":5,"nb":168,"a":[["genomics/gabija_system.html","Gabija system"],["genomics/shedu_system.html","Shedu system"],["genomics/thoeris_system.html","Thoeris system"],["physiology/caseinase_activity.html","caseinase activity"],["physiology/lecithinase_activity.html","lecithinase activity"]],"b":[["NCBITaxon%3A1396","Bacillus cereus"],["NCBITaxon%3A572264","Bacillus cereus 03BB102"],["NCBITaxon%3A451709","Bacillus cereus 03BB108"],["NCBITaxon%3A526967","Bacillus cereus 172560W"],["NCBITaxon%3A363751","Bacillus cereus 31673"],["NCBITaxon%3A526979","Bacillus cereus 95/8201"]]},{"id":"NCBITaxon:615","l":"Serratia marcescens","na":5,"nb":32,"a":[["metabolism/chitinolysis.html","chitinolysis"],["morphology/pigmentation.html","pigmentation"],["morphology/red_pigmented.html","red pigmented"],["morphology/white_pigmented.html","white pigmented"],["physiology/beta_n_acetylhexosaminidase_activity.html","beta-N-acetylhexosaminidase activity"]],"b":[["NCBITaxon%3A2703793","Serratia bockelmannii"],["NCBITaxon%3A615","Serratia marcescens"],["NCBITaxon%3A1257036","Serratia marcescens 12"],["NCBITaxon%3A1255611","Serratia marcescens 448"],["NCBITaxon%3A1333586","Serratia marcescens AB42556419-isolate1"],["NCBITaxon%3A1400186","Serratia marcescens BIDMC 44"]]},{"id":"NCBITaxon:920","l":"Acidithiobacillus ferrooxidans","na":5,"nb":10,"a":[["environment/obligately_acidophilic.html","obligately acidophilic"],["environment/ph_range_low.html","pH range low"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithoautotrophic.html","chemolithoautotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["NCBITaxon%3A163359","Acidiferrobacter thiooxydans"],["NCBITaxon%3A1232575","Acidithiobacillus ferridurans"],["NCBITaxon%3A920","Acidithiobacillus ferrooxidans"],["NCBITaxon%3A243159","Acidithiobacillus ferrooxidans ATCC 23270"],["NCBITaxon%3A380394","Acidithiobacillus ferrooxidans ATCC 53993"],["NCBITaxon%3A1433292","Acidithiobacillus ferrooxidans BY-3"]]},{"id":"NCBITaxon:106590","l":"Cupriavidus necator","na":5,"nb":8,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"],["physiology/hydrogenotrophic.html","hydrogenotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"]],"b":[["NCBITaxon%3A119219","Cupriavidus metallidurans"],["NCBITaxon%3A106590","Cupriavidus necator"],["NCBITaxon%3A1304882","Cupriavidus necator A5-1"],["NCBITaxon%3A381666","Cupriavidus necator H16"],["NCBITaxon%3A53482","Cupriavidus necator H850"],["NCBITaxon%3A1042878","Cupriavidus necator N-1"]]},{"id":"NCBITaxon:119219","l":"Cupriavidus metallidurans","na":7,"nb":5,"a":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/copper_tolerant.html","copper tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["environment/metal_tolerant.html","metal tolerant"]],"b":[["NCBITaxon%3A119219","Cupriavidus metallidurans"],["NCBITaxon%3A266264","Cupriavidus metallidurans CH34"],["NCBITaxon%3A1395123","Cupriavidus metallidurans H1130"],["NCBITaxon%3A1218106","Cupriavidus metallidurans NBRC 101272"],["NCBITaxon%3A1873897","Cupriavidus sp."]]},{"id":"NCBITaxon:1313","l":"Streptococcus pneumoniae","na":4,"nb":389,"a":[["morphology/diplococcus_shaped.html","diplococcus shaped"],["morphology/non_motile.html","non motile"],["morphology/sphere_shaped.html","sphere shaped"],["physiology/natural_competence.html","natural competence"]],"b":[["NCBITaxon%3A1503055","Burkholderia territorii"],["NCBITaxon%3A1270","Micrococcus luteus"],["NCBITaxon%3A465515","Micrococcus luteus NCTC 2665"],["NCBITaxon%3A33051","Sphingomonas sanguinis"],["NCBITaxon%3A1219054","Sphingomonas sanguinis NBRC 13937"],["NCBITaxon%3A1313","Streptococcus pneumoniae"]]},{"id":"NCBITaxon:382","l":"Sinorhizobium meliloti","na":4,"nb":66,"a":[["ecology/mutualism.html","mutualism"],["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"],["ecology/symbiosis.html","symbiosis"],["genomics/hna_system.html","Hna system"]],"b":[["NCBITaxon%3A382","Sinorhizobium meliloti"],["NCBITaxon%3A266834","Sinorhizobium meliloti 1021"],["NCBITaxon%3A1194706","Sinorhizobium meliloti 1A42"],["NCBITaxon%3A1286640","Sinorhizobium meliloti 2011"],["NCBITaxon%3A1041151","Sinorhizobium meliloti 4H41"],["NCBITaxon%3A1194707","Sinorhizobium meliloti 5A14"]]},{"id":"NCBITaxon:1148","l":"Synechocystis sp. PCC 6803","na":4,"nb":12,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/trophic_type.html","trophic type"]],"b":[["NCBITaxon%3A1148","Synechocystis sp. PCC 6803"],["NCBITaxon%3A2932627","Synechocystis sp. PCC 6803 subst. PCC-Mn"],["NCBITaxon%3A2932628","Synechocystis sp. PCC 6803 subst. PCC-Pn"],["NCBITaxon%3A2962876","Synechocystis sp. PCC 6803 substr. D1-D170H"],["NCBITaxon%3A1080228","Synechocystis sp. PCC 6803 substr. GT-I"],["NCBITaxon%3A2932626","Synechocystis sp. PCC 6803 substr. GT-In"]]},{"id":"NCBITaxon:155892","l":"Caulobacter vibrioides","na":7,"nb":4,"a":[["ecology/free_living.html","free-living"],["morphology/cell_width.html","cell width"],["morphology/crescent_shaped.html","crescent shaped"],["morphology/curved_shaped.html","curved shaped"],["morphology/holdfast.html","holdfast"],["morphology/monotrichous.html","monotrichous"]],"b":[["NCBITaxon%3A155892","Caulobacter vibrioides"],["NCBITaxon%3A190650","Caulobacter vibrioides CB15"],["NCBITaxon%3A565050","Caulobacter vibrioides NA1000"],["NCBITaxon%3A1292034","Caulobacter vibrioides OR37"]]},{"id":"NCBITaxon:224308","l":"Bacillus subtilis subsp. subtilis str. 168","na":4,"nb":5,"a":[["metabolism/proteolysis.html","proteolysis"],["morphology/spore_forming.html","spore forming"],["morphology/spore_shaped.html","spore shaped"],["morphology/sporulation.html","sporulation"]],"b":[["NCBITaxon%3A1423","Bacillus subtilis"],["NCBITaxon%3A135461","Bacillus subtilis subsp. subtilis"],["NCBITaxon%3A224308","Bacillus subtilis subsp. subtilis str. 168"],["NCBITaxon%3A536088","Bacillus subtilis subsp. subtilis str. L170"],["NCBITaxon%3A536089","Bacillus subtilis subsp. subtilis str. N170"]]},{"id":"NCBITaxon:1314","l":"Streptococcus pyogenes","na":3,"nb":839,"a":[["environment/aerotolerant.html","aerotolerant"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"],["morphology/streptococcus_arrangement.html","streptococcus arrangement"]],"b":[["NCBITaxon%3A45634","Streptococcus cristatus"],["NCBITaxon%3A1314","Streptococcus pyogenes"],["NCBITaxon%3A1050217","Streptococcus pyogenes 005-D5"],["NCBITaxon%3A1210041","Streptococcus pyogenes 06BA18369"],["NCBITaxon%3A1235829","Streptococcus pyogenes A20"],["NCBITaxon%3A562016","Streptococcus pyogenes AA216"]]},{"id":"NCBITaxon:210","l":"Helicobacter pylori","na":3,"nb":631,"a":[["morphology/flagellar_arrangement.html","flagellar arrangement"],["morphology/helical_shaped.html","helical shaped"],["morphology/lophotrichous.html","lophotrichous"]],"b":[["NCBITaxon%3A210","Helicobacter pylori"],["NCBITaxon%3A1028810","Helicobacter pylori 10700"],["NCBITaxon%3A585532","Helicobacter pylori 118"],["NCBITaxon%3A102610","Helicobacter pylori #12"],["NCBITaxon%3A585533","Helicobacter pylori 120"],["NCBITaxon%3A103187","Helicobacter pylori 15818"]]},{"id":"NCBITaxon:54298","l":"Chroococcidiopsis","na":3,"nb":302,"a":[["environment/desiccation_tolerant.html","desiccation tolerant"],["environment/uv_radiation_tolerant.html","UV radiation tolerant"],["environment/xerophilic.html","xerophilic"]],"b":[["NCBITaxon%3A2138304","Chroococcidiopsis bourrellyana"],["NCBITaxon%3A2138305","Chroococcidiopsis bourrellyana NTLRM1"],["NCBITaxon%3A869946","Chroococcidiopsis cf. cubana CCALA 047"],["NCBITaxon%3A171392","Chroococcidiopsis cubana"],["NCBITaxon%3A3024990","Chroococcidiopsis cubana C108"],["NCBITaxon%3A2942199","Chroococcidiopsis cubana C148"]]},{"id":"NCBITaxon:1282","l":"Staphylococcus epidermidis","na":3,"nb":118,"a":[["ecology/commensalism.html","commensalism"],["genomics/nhi_system.html","Nhi system"],["other/coagulase_negative.html","coagulase negative"]],"b":[["NCBITaxon%3A69966","Macrococcoides caseolyticum"],["NCBITaxon%3A1822","Nocardia vaccinii"],["NCBITaxon%3A1210098","Nocardia vaccinii NBRC 15922"],["NCBITaxon%3A1282","Staphylococcus epidermidis"],["NCBITaxon%3A1235440","Staphylococcus epidermidis 12142587"],["NCBITaxon%3A1000590","Staphylococcus epidermidis 14.1.R1.SE"]]},{"id":"NCBITaxon:817","l":"Bacteroides fragilis","na":3,"nb":101,"a":[["environment/anaerobic.html","anaerobic"],["environment/strictly_anaerobic.html","strictly anaerobic"],["metabolism/fumarate_respiration.html","fumarate respiration"]],"b":[["NCBITaxon%3A817","Bacteroides fragilis"],["NCBITaxon%3A457424","Bacteroides fragilis 3_1_12"],["NCBITaxon%3A862962","Bacteroides fragilis 638R"],["NCBITaxon%3A1308728","Bacteroides fragilis ADL-402"],["NCBITaxon%3A1263046","Bacteroides fragilis CAG:47"],["NCBITaxon%3A1263047","Bacteroides fragilis CAG:558"]]},{"id":"NCBITaxon:294","l":"Pseudomonas fluorescens","na":3,"nb":79,"a":[["ecology/rhizosphere_association.html","rhizosphere association"],["ecology/soil_dwelling.html","soil-dwelling"],["environment/psychrotolerant.html","psychrotolerant"]],"b":[["NCBITaxon%3A1931223","Caballeronia sp."],["NCBITaxon%3A89065","Pseudomonas abietaniphila"],["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1123912","Pseudomonas auricularis"],["NCBITaxon%3A930166","Pseudomonas brassicacearum"],["NCBITaxon%3A129817","Pseudomonas brenneri"]]},{"id":"NCBITaxon:208964","l":"Pseudomonas aeruginosa PAO1","na":3,"nb":23,"a":[["ecology/biofilm_formation.html","biofilm formation"],["morphology/twitching_motility.html","twitching motility"],["morphology/type_iv_pilus.html","type IV pilus"]],"b":[["NCBITaxon%3A287","Pseudomonas aeruginosa"],["NCBITaxon%3A1453991","Pseudomonas aeruginosa BK1"],["NCBITaxon%3A1236530","Pseudomonas aeruginosa JCM 14847"],["NCBITaxon%3A1131757","Pseudomonas aeruginosa MPAO1/P1"],["NCBITaxon%3A1131758","Pseudomonas aeruginosa MPAO1/P2"],["NCBITaxon%3A208964","Pseudomonas aeruginosa PAO1"]]},{"id":"NCBITaxon:668","l":"Aliivibrio fischeri","na":3,"nb":15,"a":[["ecology/mutualism.html","mutualism"],["physiology/bioluminescence.html","bioluminescence"],["physiology/quorum_sensing.html","quorum sensing"]],"b":[["NCBITaxon%3A668","Aliivibrio fischeri"],["NCBITaxon%3A617136","Aliivibrio fischeri 1-C10"],["NCBITaxon%3A617138","Aliivibrio fischeri 9ZB36"],["NCBITaxon%3A1298605","Aliivibrio fischeri ATCC 7744 = JCM 18803 = DSM 507"],["NCBITaxon%3A1367486","Aliivibrio fischeri CB37"],["NCBITaxon%3A1367487","Aliivibrio fischeri EM17"]]},{"id":"NCBITaxon:2242","l":"Halobacterium salinarum","na":3,"nb":14,"a":[["environment/extremely_halophilic.html","extremely halophilic"],["environment/halophilic.html","halophilic"],["morphology/intracellular_inclusion.html","intracellular inclusion"]],"b":[["NCBITaxon%3A2242","Halobacterium salinarum"],["NCBITaxon%3A2597657","Halobacterium salinarum DSM 3754"],["NCBITaxon%3A64091","Halobacterium salinarum NRC-1"],["NCBITaxon%3A2886895","Halobacterium salinarum NRC-34001"],["NCBITaxon%3A478009","Halobacterium salinarum R1"],["NCBITaxon%3A2109941","Halobacterium salinarum str. WSR1 (ex H. Halobium)"]]},{"id":"NCBITaxon:1270","l":"Micrococcus luteus","na":3,"nb":12,"a":[["environment/aerobic.html","aerobic"],["environment/obligately_aerobic.html","obligately aerobic"],["morphology/tetrad_arrangement.html","tetrad arrangement"]],"b":[["NCBITaxon%3A72000","Kocuria rhizophila"],["NCBITaxon%3A378753","Kocuria rhizophila DC2201"],["NCBITaxon%3A1272","Kocuria varians"],["NCBITaxon%3A1270","Micrococcus luteus"],["NCBITaxon%3A1357403","Micrococcus luteus CD1_FAA_NB_1"],["NCBITaxon%3A935864","Micrococcus luteus J28"]]},{"id":"NCBITaxon:1085","l":"Rhodospirillum rubrum","na":6,"nb":3,"a":[["metabolism/phototrophy.html","phototrophy"],["morphology/spiral_shaped.html","spiral shaped"],["physiology/carboxydotrophic.html","carboxydotrophic"],["physiology/photoheterotrophic.html","photoheterotrophic"],["physiology/photoorganoheterotrophic.html","photoorganoheterotrophic"],["physiology/phototrophic.html","phototrophic"]],"b":[["NCBITaxon%3A1085","Rhodospirillum rubrum"],["NCBITaxon%3A269796","Rhodospirillum rubrum ATCC 11170"],["NCBITaxon%3A1036743","Rhodospirillum rubrum F11"]]},{"id":"NCBITaxon:1299","l":"Deinococcus radiodurans","na":6,"nb":3,"a":[["environment/ionizing_radiation_tolerant.html","ionizing radiation tolerant"],["environment/radiotolerant.html","radiotolerant"],["environment/uv_radiation_tolerant.html","UV radiation tolerant"],["environment/xerophilic.html","xerophilic"],["morphology/orange_pigmented.html","orange pigmented"],["physiology/stress_response.html","stress response"]],"b":[["NCBITaxon%3A1299","Deinococcus radiodurans"],["NCBITaxon%3A243230","Deinococcus radiodurans R1 = ATCC 13939 = DSM 20539"],["NCBITaxon%3A47478","Deinococcus sp."]]},{"id":"NCBITaxon:1525","l":"Neomoorella thermoacetica","na":3,"nb":5,"a":[["metabolism/acetogenesis.html","Acetogenesis"],["metabolism/homoacetogenesis.html","Homoacetogenesis"],["metabolism/wood_ljungdahl_pathway.html","Wood-Ljungdahl pathway"]],"b":[["NCBITaxon%3A264732","Moorella thermoacetica ATCC 39073"],["NCBITaxon%3A1122242","Moorella thermoacetica DSM 1974"],["NCBITaxon%3A1325331","Moorella thermoacetica Y72"],["NCBITaxon%3A3051332","Neomoorella caeni"],["NCBITaxon%3A1525","Neomoorella thermoacetica"]]},{"id":"NCBITaxon:35554","l":"Geobacter sulfurreducens","na":3,"nb":5,"a":[["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/electron_transfer.html","Electron transfer"]],"b":[["NCBITaxon%3A35554","Geobacter sulfurreducens"],["NCBITaxon%3A663917","Geobacter sulfurreducens KN400"],["NCBITaxon%3A243231","Geobacter sulfurreducens PCA"],["NCBITaxon%3A1260928","Geobacter sulfurreducens subsp. ethanolicus"],["NCBITaxon%3A1649546","Geobacter sulfurreducens subsp. sulfurreducens"]]},{"id":"NCBITaxon:1902","l":"Streptomyces coelicolor","na":3,"nb":3,"a":[["ecology/saprotrophy.html","saprotrophy"],["ecology/soil_dwelling.html","soil-dwelling"],["morphology/mycelial_growth.html","mycelial growth"]],"b":[["NCBITaxon%3A1886","Streptomyces albidoflavus"],["NCBITaxon%3A1902","Streptomyces coelicolor"],["NCBITaxon%3A100226","Streptomyces coelicolor A3(2)"]]},{"id":"NCBITaxon:431944","l":"Magnetospirillum gryphiswaldense MSR-1","na":3,"nb":3,"a":[["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/magnetosome.html","magnetosome"],["physiology/magnetotaxis.html","magnetotaxis"]],"b":[["NCBITaxon%3A55518","Magnetospirillum gryphiswaldense"],["NCBITaxon%3A431944","Magnetospirillum gryphiswaldense MSR-1"],["NCBITaxon%3A1430440","Magnetospirillum gryphiswaldense MSR-1 v2"]]},{"id":"NCBITaxon:9","l":"Buchnera aphidicola","na":2,"nb":539,"a":[["ecology/endosymbiosis.html","endosymbiosis"],["ecology/symbiosis.html","symbiosis"]],"b":[["NCBITaxon%3A9","Buchnera aphidicola"],["NCBITaxon%3A2994845","Buchnera aphidicola (Acyrthosiphon caraganae)"],["NCBITaxon%3A668607","Buchnera aphidicola (Acyrthosiphon kondoi)"],["NCBITaxon%3A1241832","Buchnera aphidicola (Acyrthosiphon lactucae)"],["NCBITaxon%3A118099","Buchnera aphidicola (Acyrthosiphon pisum)"],["NCBITaxon%3A1499971","Buchnera aphidicola (Acyrthosiphon solani)"]]},{"id":"NCBITaxon:1351","l":"Enterococcus faecalis","na":2,"nb":391,"a":[["genomics/abialpha_system.html","AbiAlpha system"],["physiology/gelatinase_activity.html","gelatinase activity"]],"b":[["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A1260363","Enterococcus faecalis 02-MB-BW-10"],["NCBITaxon%3A1260365","Enterococcus faecalis 02-MB-P-10"],["NCBITaxon%3A1260358","Enterococcus faecalis 06-MB-DW-09"],["NCBITaxon%3A1260359","Enterococcus faecalis 06-MB-S-04"],["NCBITaxon%3A1260360","Enterococcus faecalis 06-MB-S-10"]]},{"id":"NCBITaxon:485","l":"Neisseria gonorrhoeae","na":2,"nb":90,"a":[["physiology/oxidase_activity.html","oxidase activity"],["physiology/prolyl_aminopeptidase_activity.html","prolyl aminopeptidase activity"]],"b":[["NCBITaxon%3A485","Neisseria gonorrhoeae"],["NCBITaxon%3A528345","Neisseria gonorrhoeae 1291"],["NCBITaxon%3A1193404","Neisseria gonorrhoeae 3502"],["NCBITaxon%3A528346","Neisseria gonorrhoeae 35/02"],["NCBITaxon%3A1352347","Neisseria gonorrhoeae ALB_2011_01-02"],["NCBITaxon%3A1351778","Neisseria gonorrhoeae ALB_2011_03_03"]]},{"id":"NCBITaxon:32046","l":"Synechococcus elongatus","na":2,"nb":64,"a":[["morphology/carboxysome.html","carboxysome"],["physiology/autotrophic.html","autotrophic"]],"b":[["NCBITaxon%3A326333","Synechococcus cf. elongatus CCMP1379"],["NCBITaxon%3A32046","Synechococcus elongatus"],["NCBITaxon%3A1665532","Synechococcus elongatus 0814_107_005_M13_Fp"],["NCBITaxon%3A2729336","Synechococcus elongatus AARL T012"],["NCBITaxon%3A3073440","Synechococcus elongatus ACC1"],["NCBITaxon%3A1130982","Synechococcus elongatus ARKK1"]]},{"id":"NCBITaxon:727","l":"Haemophilus influenzae","na":2,"nb":43,"a":[["genomics/restriction_modification_system.html","restriction-modification system"],["morphology/coccobacillus_shaped.html","coccobacillus shaped"]],"b":[["NCBITaxon%3A727","Haemophilus influenzae"],["NCBITaxon%3A862964","Haemophilus influenzae 10810"],["NCBITaxon%3A1232659","Haemophilus influenzae 2019"],["NCBITaxon%3A374927","Haemophilus influenzae 22.1-21"],["NCBITaxon%3A520729","Haemophilus influenzae 22.1-24"],["NCBITaxon%3A375063","Haemophilus influenzae 22.4-21"]]},{"id":"NCBITaxon:1021","l":"Beggiatoa","na":2,"nb":33,"a":[["morphology/filament_shaped.html","filament shaped"],["physiology/mixotrophic.html","mixotrophic"]],"b":[["NCBITaxon%3A1022","Beggiatoa alba"],["NCBITaxon%3A395493","Beggiatoa alba B18LD"],["NCBITaxon%3A288004","Beggiatoa leptomitoformis"],["NCBITaxon%3A1962953","Beggiatoa sp."],["NCBITaxon%3A1579656","Beggiatoa sp. 11.1"],["NCBITaxon%3A1579657","Beggiatoa sp. 13.1"]]},{"id":"NCBITaxon:28116","l":"Bacteroides ovatus","na":2,"nb":33,"a":[["metabolism/xylan_degradation.html","xylan degradation"],["physiology/amylase_activity.html","amylase activity"]],"b":[["NCBITaxon%3A28116","Bacteroides ovatus"],["NCBITaxon%3A665954","Bacteroides ovatus 3_8_47FAA"],["NCBITaxon%3A411476","Bacteroides ovatus ATCC 8483"],["NCBITaxon%3A1263050","Bacteroides ovatus CAG:22"],["NCBITaxon%3A997885","Bacteroides ovatus CL02T12C04"],["NCBITaxon%3A997886","Bacteroides ovatus CL03T12C18"]]},{"id":"NCBITaxon:818","l":"Bacteroides thetaiotaomicron","na":2,"nb":32,"a":[["ecology/gut_associated.html","gut-associated"],["ecology/host_associated.html","host-associated"]],"b":[["NCBITaxon%3A47678","Bacteroides caccae"],["NCBITaxon%3A411901","Bacteroides caccae ATCC 43185"],["NCBITaxon%3A29523","Bacteroides sp."],["NCBITaxon%3A818","Bacteroides thetaiotaomicron"],["NCBITaxon%3A1263054","Bacteroides thetaiotaomicron CAG:40"],["NCBITaxon%3A1235785","Bacteroides thetaiotaomicron dnLKV9"]]},{"id":"NCBITaxon:1308","l":"Streptococcus thermophilus","na":2,"nb":25,"a":[["genomics/crispr_cas_system.html","CRISPR-Cas system"],["genomics/phage_defense_system.html","phage defense system"]],"b":[["NCBITaxon%3A35783","Enterococcus sp."],["NCBITaxon%3A1308","Streptococcus thermophilus"],["NCBITaxon%3A1435981","Streptococcus thermophilus 1F8CT"],["NCBITaxon%3A1408178","Streptococcus thermophilus ASCC 1275"],["NCBITaxon%3A1263110","Streptococcus thermophilus CAG:236"],["NCBITaxon%3A1042404","Streptococcus thermophilus CNCM I-1630"]]},{"id":"NCBITaxon:43080","l":"Saccharolobus islandicus","na":2,"nb":22,"a":[["environment/temperature_optimum_high.html","temperature optimum high"],["environment/temperature_range_high.html","temperature range high"]],"b":[["NCBITaxon%3A43080","Saccharolobus islandicus"],["NCBITaxon%3A930943","Saccharolobus islandicus HVE10/4"],["NCBITaxon%3A425944","Saccharolobus islandicus L.D.8.5"],["NCBITaxon%3A429572","Saccharolobus islandicus L.S.2.15"],["NCBITaxon%3A1241935","Saccharolobus islandicus LAL14/1"],["NCBITaxon%3A427317","Saccharolobus islandicus M.14.25"]]},{"id":"NCBITaxon:1718","l":"Corynebacterium glutamicum","na":2,"nb":15,"a":[["genomics/wadjet_system.html","Wadjet system"],["morphology/irregular_shaped.html","irregular shaped"]],"b":[["NCBITaxon%3A38285","Corynebacterium acetoacidophilum"],["NCBITaxon%3A1718","Corynebacterium glutamicum"],["NCBITaxon%3A196627","Corynebacterium glutamicum ATCC 13032"],["NCBITaxon%3A1079988","Corynebacterium glutamicum ATCC 14067"],["NCBITaxon%3A1204414","Corynebacterium glutamicum K051"],["NCBITaxon%3A1310161","Corynebacterium glutamicum MB001"]]},{"id":"NCBITaxon:542","l":"Zymomonas mobilis","na":2,"nb":15,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"],["physiology/nad_dependent_alcohol_dehydrogenase_activity.html","NAD-dependent alcohol dehydrogenase activity"]],"b":[["NCBITaxon%3A223958","Exiguobacterium oxidotolerans"],["NCBITaxon%3A1397699","Exiguobacterium oxidotolerans JCM 12280"],["NCBITaxon%3A542","Zymomonas mobilis"],["NCBITaxon%3A325472","Zymomonas mobilis subsp. francensis"],["NCBITaxon%3A120045","Zymomonas mobilis subsp. mobilis"],["NCBITaxon%3A555217","Zymomonas mobilis subsp. mobilis ATCC 10988"]]},{"id":"NCBITaxon:1063","l":"Cereibacter sphaeroides","na":2,"nb":11,"a":[["metabolism/anoxygenic_photosynthesis.html","anoxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"]],"b":[["NCBITaxon%3A1063","Cereibacter sphaeroides"],["NCBITaxon%3A272943","Cereibacter sphaeroides 2.4.1"],["NCBITaxon%3A349102","Cereibacter sphaeroides ATCC 17025"],["NCBITaxon%3A349101","Cereibacter sphaeroides ATCC 17029"],["NCBITaxon%3A39723","Cereibacter sphaeroides f. sp. denitrificans"],["NCBITaxon%3A633146","Cereibacter sphaeroides GA"]]},{"id":"NCBITaxon:274","l":"Thermus thermophilus","na":2,"nb":8,"a":[["environment/thermophilic.html","thermophilic"],["morphology/cell_width.html","cell width"]],"b":[["NCBITaxon%3A274","Thermus thermophilus"],["NCBITaxon%3A1316935","Thermus thermophilus ATCC 33923"],["NCBITaxon%3A262724","Thermus thermophilus HB27"],["NCBITaxon%3A300852","Thermus thermophilus HB8"],["NCBITaxon%3A798128","Thermus thermophilus JL-18"],["NCBITaxon%3A762633","Thermus thermophilus SG0.5JP17-16"]]},{"id":"NCBITaxon:408","l":"Methylorubrum extorquens","na":2,"nb":7,"a":[["morphology/pink_pigmented.html","pink pigmented"],["physiology/methylotrophic.html","methylotrophic"]],"b":[["NCBITaxon%3A408","Methylorubrum extorquens"],["NCBITaxon%3A272630","Methylorubrum extorquens AM1"],["NCBITaxon%3A440085","Methylorubrum extorquens CM4"],["NCBITaxon%3A661410","Methylorubrum extorquens DM4"],["NCBITaxon%3A882800","Methylorubrum extorquens DSM 13060"],["NCBITaxon%3A419610","Methylorubrum extorquens PA1"]]},{"id":"NCBITaxon:266264","l":"Cupriavidus metallidurans CH34","na":6,"nb":2,"a":[["environment/arsenic_tolerant.html","arsenic tolerant"],["environment/cadmium_tolerant.html","cadmium tolerant"],["environment/cobalt_tolerant.html","cobalt tolerant"],["environment/copper_tolerant.html","copper tolerant"],["environment/mercury_tolerant.html","mercury tolerant"],["environment/zinc_tolerant.html","zinc tolerant"]],"b":[["NCBITaxon%3A119219","Cupriavidus metallidurans"],["NCBITaxon%3A266264","Cupriavidus metallidurans CH34"]]},{"id":"NCBITaxon:29471","l":"Pectobacterium atrosepticum","na":2,"nb":6,"a":[["genomics/abortive_infection_system.html","abortive infection system"],["genomics/toxin_system.html","ToxIN system"]],"b":[["NCBITaxon%3A29471","Pectobacterium atrosepticum"],["NCBITaxon%3A1289594","Pectobacterium atrosepticum CFBP 6276"],["NCBITaxon%3A1267546","Pectobacterium atrosepticum [Delta]HAI2-SCRI1043"],["NCBITaxon%3A1076138","Pectobacterium atrosepticum ICMP 1526"],["NCBITaxon%3A218491","Pectobacterium atrosepticum SCRI1043"],["NCBITaxon%3A77097","Vreelandella aquamarina"]]},{"id":"NCBITaxon:381666","l":"Cupriavidus necator H16","na":6,"nb":2,"a":[["metabolism/calvin_benson_bassham_cycle.html","Calvin-Benson-Bassham cycle"],["metabolism/carbon_fixation.html","carbon fixation"],["morphology/intracellular_inclusion.html","intracellular inclusion"],["morphology/polyhydroxyalkanoate_granule.html","polyhydroxyalkanoate granule"],["physiology/autotrophic.html","autotrophic"],["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["NCBITaxon%3A106590","Cupriavidus necator"],["NCBITaxon%3A381666","Cupriavidus necator H16"]]},{"id":"NCBITaxon:211586","l":"Shewanella oneidensis MR-1","na":5,"nb":2,"a":[["metabolism/dimethyl_sulfoxide_respiration.html","dimethyl sulfoxide respiration"],["metabolism/dissimilatory_iron_reduction.html","dissimilatory iron reduction"],["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/dissimilatory_metal_reduction.html","dissimilatory metal reduction"],["metabolism/electron_transfer.html","Electron transfer"]],"b":[["NCBITaxon%3A70863","Shewanella oneidensis"],["NCBITaxon%3A211586","Shewanella oneidensis MR-1"]]},{"id":"NCBITaxon:354","l":"Azotobacter vinelandii","na":2,"nb":5,"a":[["genomics/ploidy.html","ploidy"],["metabolism/nitrogen_fixation.html","nitrogen fixation"]],"b":[["NCBITaxon%3A354","Azotobacter vinelandii"],["NCBITaxon%3A1283330","Azotobacter vinelandii CA"],["NCBITaxon%3A1283331","Azotobacter vinelandii CA6"],["NCBITaxon%3A322710","Azotobacter vinelandii DJ"],["NCBITaxon%3A1314750","Azotobacter vinelandii NBRC 13581"]]},{"id":"NCBITaxon:36861","l":"Thiobacillus denitrificans","na":2,"nb":5,"a":[["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/chemolithotrophic.html","chemolithotrophic"]],"b":[["NCBITaxon%3A274539","Chlorobaculum parvum"],["NCBITaxon%3A517417","Chlorobaculum parvum NCIB 8327"],["NCBITaxon%3A36861","Thiobacillus denitrificans"],["NCBITaxon%3A292415","Thiobacillus denitrificans ATCC 25259"],["NCBITaxon%3A1123392","Thiobacillus denitrificans DSM 12475"]]},{"id":"NCBITaxon:46632","l":"Picrophilus oshimae","na":5,"nb":2,"a":[["environment/acidophilic.html","acidophilic"],["environment/obligately_acidophilic.html","obligately acidophilic"],["environment/ph_growth_preference.html","pH growth preference"],["environment/ph_optimum_low.html","pH optimum low"],["environment/ph_range_very_low.html","pH range very low"]],"b":[["NCBITaxon%3A46632","Picrophilus oshimae"],["NCBITaxon%3A1122961","Picrophilus oshimae DSM 9789"]]},{"id":"NCBITaxon:915","l":"Nitrosomonas europaea","na":5,"nb":2,"a":[["physiology/autotrophic.html","autotrophic"],["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["NCBITaxon%3A915","Nitrosomonas europaea"],["NCBITaxon%3A228410","Nitrosomonas europaea ATCC 19718"]]},{"id":"NCBITaxon:171101","l":"Streptococcus pneumoniae R6","na":4,"nb":2,"a":[["morphology/ellipsoidal.html","ellipsoidal"],["morphology/oval_shaped.html","oval shaped"],["morphology/ovoid_shaped.html","ovoid shaped"],["physiology/natural_competence.html","natural competence"]],"b":[["NCBITaxon%3A1165093","Streptococcus pneumoniae CCCB"],["NCBITaxon%3A171101","Streptococcus pneumoniae R6"]]},{"id":"NCBITaxon:194439","l":"Chlorobaculum tepidum TLS","na":4,"nb":2,"a":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"],["physiology/photoautotrophic.html","photoautotrophic"],["physiology/photolithoautotrophic.html","photolithoautotrophic"],["physiology/photolithotrophic.html","photolithotrophic"]],"b":[["NCBITaxon%3A1097","Chlorobaculum tepidum"],["NCBITaxon%3A194439","Chlorobaculum tepidum TLS"]]},{"id":"NCBITaxon:2746","l":"Halomonas elongata","na":4,"nb":2,"a":[["environment/euryhaline.html","euryhaline"],["environment/halophilic.html","halophilic"],["environment/halophily_preference.html","halophily preference"],["environment/moderately_halophilic.html","moderately halophilic"]],"b":[["NCBITaxon%3A2746","Halomonas elongata"],["NCBITaxon%3A768066","Halomonas elongata DSM 2581"]]},{"id":"NCBITaxon:301447","l":"Streptococcus pyogenes serotype M1","na":2,"nb":4,"a":[["genomics/crispr_cas_system.html","CRISPR-Cas system"],["metabolism/substrate_level_phosphorylation.html","Substrate-level phosphorylation"]],"b":[["NCBITaxon%3A1207470","Streptococcus pyogenes M1 476"],["NCBITaxon%3A160490","Streptococcus pyogenes M1 GAS"],["NCBITaxon%3A293653","Streptococcus pyogenes MGAS5005"],["NCBITaxon%3A301447","Streptococcus pyogenes serotype M1"]]},{"id":"NCBITaxon:70863","l":"Shewanella oneidensis","na":4,"nb":2,"a":[["environment/piezotolerant.html","piezotolerant"],["metabolism/anaerobic_respiration.html","Anaerobic respiration"],["metabolism/dissimilatory_manganese_reduction.html","dissimilatory manganese reduction"],["metabolism/electron_transfer.html","Electron transfer"]],"b":[["NCBITaxon%3A70863","Shewanella oneidensis"],["NCBITaxon%3A211586","Shewanella oneidensis MR-1"]]},{"id":"NCBITaxon:735518","l":"Lederbergia graminis","na":4,"nb":2,"a":[["environment/nacl_delta.html","NaCl delta"],["environment/nacl_optimum_mid2.html","NaCl optimum mid2"],["environment/ph_delta_mid1.html","pH delta mid1"],["environment/temperature_range.html","temperature range"]],"b":[["NCBITaxon%3A1126234","Salinirubrum litoreum"],["NCBITaxon%3A735518","Lederbergia graminis"]]},{"id":"NCBITaxon:1108","l":"Chloroflexus aurantiacus","na":2,"nb":3,"a":[["metabolism/three_hydroxypropionate_bicycle.html","3-hydroxypropionate bicycle"],["morphology/green_pigmented.html","green pigmented"]],"b":[["NCBITaxon%3A1108","Chloroflexus aurantiacus"],["NCBITaxon%3A324602","Chloroflexus aurantiacus J-10-fl"],["NCBITaxon%3A480224","Chloroflexus aurantiacus Y-400-fl"]]},{"id":"NCBITaxon:2257","l":"Natronomonas pharaonis","na":3,"nb":2,"a":[["environment/alkaphilic.html","alkaliphilic"],["environment/haloalkaliphilic.html","haloalkaliphilic"],["environment/obligately_alkaphilic.html","obligately alkaliphilic"]],"b":[["NCBITaxon%3A2257","Natronomonas pharaonis"],["NCBITaxon%3A348780","Natronomonas pharaonis DSM 2160"]]},{"id":"NCBITaxon:2261","l":"Pyrococcus furiosus","na":2,"nb":3,"a":[["environment/hyperthermophilic.html","hyperthermophilic"],["environment/temperature_range_high.html","temperature range high"]],"b":[["NCBITaxon%3A2261","Pyrococcus furiosus"],["NCBITaxon%3A1185654","Pyrococcus furiosus COM1"],["NCBITaxon%3A186497","Pyrococcus furiosus DSM 3638"]]},{"id":"NCBITaxon:258224","l":"Corynebacterium resistens","na":2,"nb":3,"a":[["physiology/carboxylesterase_activity.html","carboxylesterase activity"],["physiology/naphthol_as_bi_phosphohydrolase_activity.html","naphthol-AS-BI-phosphohydrolase activity"]],"b":[["NCBITaxon%3A99807","Corynebacterium auriscanis"],["NCBITaxon%3A258224","Corynebacterium resistens"],["NCBITaxon%3A662755","Corynebacterium resistens DSM 45100"]]},{"id":"NCBITaxon:691","l":"Vibrio natriegens","na":2,"nb":3,"a":[["genomics/rrna_operon_copy_number.html","rRNA operon copy number"],["physiology/copiotrophic.html","copiotrophic"]],"b":[["NCBITaxon%3A691","Vibrio natriegens"],["NCBITaxon%3A1219067","Vibrio natriegens NBRC 15636 = ATCC 14048 = DSM 759"],["NCBITaxon%3A28169","Vibrio pelagius"]]},{"id":"NCBITaxon:69823","l":"Selenomonas sputigena","na":2,"nb":3,"a":[["physiology/alpha_galactosidase_activity.html","alpha-galactosidase activity"],["physiology/beta_galactosidase_activity.html","beta-galactosidase activity"]],"b":[["NCBITaxon%3A2053611","Selenomonas sp."],["NCBITaxon%3A69823","Selenomonas sputigena"],["NCBITaxon%3A546271","Selenomonas sputigena ATCC 35185"]]},{"id":"NCBITaxon:74109","l":"Photobacterium profundum","na":2,"nb":3,"a":[["environment/piezophilic.html","piezophilic"],["environment/piezotolerant.html","piezotolerant"]],"b":[["NCBITaxon%3A74109","Photobacterium profundum"],["NCBITaxon%3A314280","Photobacterium profundum 3TCK"],["NCBITaxon%3A298386","Photobacterium profundum SS9"]]},{"id":"NCBITaxon:79885","l":"Alkalihalophilus pseudofirmus","na":2,"nb":3,"a":[["environment/alkalotolerant.html","alkalotolerant"],["environment/facultatively_alkaphilic.html","facultatively alkaliphilic"]],"b":[["NCBITaxon%3A79885","Alkalihalophilus pseudofirmus"],["NCBITaxon%3A398511","Alkalihalophilus pseudofirmus OF4"],["NCBITaxon%3A83428","uncultured Bacillus sp."]]},{"id":"NCBITaxon:86665","l":"Halalkalibacterium halodurans","na":2,"nb":3,"a":[["environment/alkalotolerant.html","alkalotolerant"],["environment/alkaphilic.html","alkaliphilic"]],"b":[["NCBITaxon%3A86665","Halalkalibacterium halodurans"],["NCBITaxon%3A272558","Halalkalibacterium halodurans C-125"],["NCBITaxon%3A83428","uncultured Bacillus sp."]]},{"id":"NCBITaxon:1097","l":"Chlorobaculum tepidum","na":2,"nb":2,"a":[["metabolism/reductive_tca_cycle.html","reductive tricarboxylic acid cycle"],["morphology/green_pigmented.html","green pigmented"]],"b":[["NCBITaxon%3A1097","Chlorobaculum tepidum"],["NCBITaxon%3A194439","Chlorobaculum tepidum TLS"]]},{"id":"NCBITaxon:2069301","l":"Evansella tamaricis","na":2,"nb":2,"a":[["environment/ph_growth_preference.html","pH growth preference"],["environment/ph_range_mid3.html","pH range mid3"]],"b":[["NCBITaxon%3A1505037","Emcibacter nanhaiensis"],["NCBITaxon%3A2069301","Evansella tamaricis"]]},{"id":"NCBITaxon:2190","l":"Methanocaldococcus jannaschii","na":2,"nb":2,"a":[["metabolism/methanogenesis.html","Methanogenesis"],["physiology/hydrogenotrophic.html","hydrogenotrophic"]],"b":[["NCBITaxon%3A2190","Methanocaldococcus jannaschii"],["NCBITaxon%3A243232","Methanocaldococcus jannaschii DSM 2661"]]},{"id":"NCBITaxon:243273","l":"Mycoplasmoides genitalium G37","na":2,"nb":2,"a":[["genomics/gc_high.html","GC high"],["genomics/genome_size.html","genome size"]],"b":[["NCBITaxon%3A2097","Mycoplasmoides genitalium"],["NCBITaxon%3A243273","Mycoplasmoides genitalium G37"]]},{"id":"NCBITaxon:272562","l":"Clostridium acetobutylicum ATCC 824","na":2,"nb":2,"a":[["metabolism/acetone_butanol_ethanol_fermentation.html","acetone-butanol-ethanol fermentation"],["metabolism/fermentation.html","Fermentation"]],"b":[["NCBITaxon%3A1488","Clostridium acetobutylicum"],["NCBITaxon%3A272562","Clostridium acetobutylicum ATCC 824"]]},{"id":"NCBITaxon:317655","l":"Sphingopyxis alaskensis RB2256","na":2,"nb":2,"a":[["physiology/chemolithoheterotrophic.html","chemolithoheterotrophic"],["physiology/lithoheterotrophic.html","lithoheterotrophic"]],"b":[["NCBITaxon%3A117207","Sphingopyxis alaskensis"],["NCBITaxon%3A317655","Sphingopyxis alaskensis RB2256"]]},{"id":"NCBITaxon:334543","l":"Psychrobacter arcticus","na":2,"nb":2,"a":[["environment/delta_phenotype_with_numerical_limits.html","delta phenotype with numerical limits"],["environment/facultative_psychrophilic.html","facultative psychrophilic"]],"b":[["NCBITaxon%3A334543","Psychrobacter arcticus"],["NCBITaxon%3A259536","Psychrobacter arcticus 273-4"]]},{"id":"NCBITaxon:375929","l":"Natranaerobius thermophilus","na":2,"nb":2,"a":[["environment/growth_range_phenotype_with_numerical_limits.html","growth range phenotype with numerical limits"],["environment/salinity_phenotype_with_numerical_limits.html","salinity phenotype with numerical limits"]],"b":[["NCBITaxon%3A375929","Natranaerobius thermophilus"],["NCBITaxon%3A457570","Natranaerobius thermophilus JW/NM-WN-LF"]]},{"id":"NCBITaxon:504092","l":"Kushneria aurantia","na":2,"nb":2,"a":[["environment/nacl_range.html","NaCl range"],["environment/temperature_delta.html","temperature delta"]],"b":[["NCBITaxon%3A504092","Kushneria aurantia"],["NCBITaxon%3A1122139","Kushneria aurantia DSM 21353"]]},{"id":"NCBITaxon:1126","l":"Microcystis aeruginosa","na":1,"nb":1085,"a":[["morphology/gas_vesicle.html","gas vesicle"]],"b":[["NCBITaxon%3A1126","Microcystis aeruginosa"],["NCBITaxon%3A270630","Microcystis aeruginosa 0BB35S02"],["NCBITaxon%3A270631","Microcystis aeruginosa 0BF29S01"],["NCBITaxon%3A270632","Microcystis aeruginosa 0BF29S03"],["NCBITaxon%3A2358142","Microcystis aeruginosa 11-30S32"],["NCBITaxon%3A3113711","Microcystis aeruginosa 1339"]]},{"id":"NCBITaxon:470","l":"Acinetobacter baumannii","na":1,"nb":1075,"a":[["ecology/opportunistic_pathogen.html","opportunistic pathogen"]],"b":[["NCBITaxon%3A470","Acinetobacter baumannii"],["NCBITaxon%3A1311139","Acinetobacter baumannii 016901DP_1"],["NCBITaxon%3A1311140","Acinetobacter baumannii 016901DP_2"],["NCBITaxon%3A1310784","Acinetobacter baumannii 1007214"],["NCBITaxon%3A1310751","Acinetobacter baumannii 1022959"],["NCBITaxon%3A1310586","Acinetobacter baumannii 1031433"]]},{"id":"NCBITaxon:165695","l":"Sphingobium","na":1,"nb":663,"a":[["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["NCBITaxon%3A86193","Sphingobium abikonense"],["NCBITaxon%3A1219036","Sphingobium abikonense NBRC 16140"],["NCBITaxon%3A2933566","Sphingobium agri"],["NCBITaxon%3A3341828","Sphingobium agrisoli"],["NCBITaxon%3A2008318","Sphingobium algorifonticola"],["NCBITaxon%3A135719","Sphingobium amiense"]]},{"id":"NCBITaxon:2093","l":"Mycoplasma","na":1,"nb":495,"a":[["morphology/pleomorphic_shaped.html","pleomorphic shaped"]],"b":[["NCBITaxon%3A871300","Candidatus Mycoplasma aoti"],["NCBITaxon%3A762822","Candidatus Mycoplasma erythrocervae"],["NCBITaxon%3A432608","Candidatus Mycoplasma haematobovis"],["NCBITaxon%3A3385516","Candidatus Mycoplasma haematobrackenitadaridae"],["NCBITaxon%3A762824","Candidatus Mycoplasma haematocervi"],["NCBITaxon%3A112247","Candidatus Mycoplasma haematodidelphidis"]]},{"id":"NCBITaxon:1639","l":"Listeria monocytogenes","na":1,"nb":478,"a":[["environment/psychrotolerant.html","psychrotolerant"]],"b":[["NCBITaxon%3A1639","Listeria monocytogenes"],["NCBITaxon%3A1126011","Listeria monocytogenes 07PF0776"],["NCBITaxon%3A653938","Listeria monocytogenes 08-5578"],["NCBITaxon%3A637381","Listeria monocytogenes 08-5923"],["NCBITaxon%3A393133","Listeria monocytogenes 10403S"],["NCBITaxon%3A1380708","Listeria monocytogenes 36-25-1"]]},{"id":"NCBITaxon:1352","l":"Enterococcus faecium","na":1,"nb":375,"a":[["other/catalase_negative.html","catalase negative"]],"b":[["NCBITaxon%3A1351","Enterococcus faecalis"],["NCBITaxon%3A1352","Enterococcus faecium"],["NCBITaxon%3A1391465","Enterococcus faecium 10/96A"],["NCBITaxon%3A1259824","Enterococcus faecium 13.SD.W.09"],["NCBITaxon%3A1429401","Enterococcus faecium 17282"],["NCBITaxon%3A565659","Enterococcus faecium 1,141,733"]]},{"id":"NCBITaxon:173","l":"Leptospira interrogans","na":1,"nb":312,"a":[["morphology/axially_filamented.html","axially filamented"]],"b":[["NCBITaxon%3A173","Leptospira interrogans"],["NCBITaxon%3A860644","Leptospira interrogans serovar Akiyami"],["NCBITaxon%3A428408","Leptospira interrogans serovar Anhui"],["NCBITaxon%3A211882","Leptospira interrogans serovar Australis"],["NCBITaxon%3A1085541","Leptospira interrogans serovar Australis str. 200703203"],["NCBITaxon%3A1308441","Leptospira interrogans serovar Australis str. LT2080"]]},{"id":"NCBITaxon:632","l":"Yersinia pestis","na":1,"nb":287,"a":[["ecology/biosafety_level_3.html","biosafety level 3"]],"b":[["NCBITaxon%3A632","Yersinia pestis"],["NCBITaxon%3A1345710","Yersinia pestis 1045"],["NCBITaxon%3A1330535","Yersinia pestis 113"],["NCBITaxon%3A755859","Yersinia pestis 12"],["NCBITaxon%3A1345703","Yersinia pestis 1412"],["NCBITaxon%3A1345704","Yersinia pestis 1413"]]},{"id":"NCBITaxon:670","l":"Vibrio parahaemolyticus","na":1,"nb":264,"a":[["morphology/lateral_flagellation.html","lateral flagellation"]],"b":[["NCBITaxon%3A663","Vibrio alginolyticus"],["NCBITaxon%3A29494","Vibrio furnissii"],["NCBITaxon%3A675811","Vibrio furnissii CIP 102972"],["NCBITaxon%3A670","Vibrio parahaemolyticus"],["NCBITaxon%3A1238231","Vibrio parahaemolyticus 10290"],["NCBITaxon%3A1238195","Vibrio parahaemolyticus 10296"]]},{"id":"NCBITaxon:125216","l":"Roseomonas","na":1,"nb":244,"a":[["morphology/pink_pigmented.html","pink pigmented"]],"b":[["NCBITaxon%3A204091","Candidatus Roseomonas massiliae"],["NCBITaxon%3A287609","Neoroseomonas lacus"],["NCBITaxon%3A525371","Pseudoroseomonas cervicalis ATCC 49957"],["NCBITaxon%3A1225642","Roseomonas aceris"],["NCBITaxon%3A2937791","Roseomonas acroporae"],["NCBITaxon%3A2846776","Roseomonas alba"]]},{"id":"NCBITaxon:197","l":"Campylobacter jejuni","na":1,"nb":216,"a":[["environment/microaerophilic.html","microaerophilic"]],"b":[["NCBITaxon%3A863522","Bryocella elongata"],["NCBITaxon%3A195","Campylobacter coli"],["NCBITaxon%3A197","Campylobacter jejuni"],["NCBITaxon%3A1365653","Campylobacter jejuni 10186"],["NCBITaxon%3A1365189","Campylobacter jejuni 10187"],["NCBITaxon%3A1327986","Campylobacter jejuni 10227"]]},{"id":"NCBITaxon:1219","l":"Prochlorococcus marinus","na":1,"nb":214,"a":[["genomics/genome_streamlining.html","genome streamlining"]],"b":[["NCBITaxon%3A379362","environmental samples"],["NCBITaxon%3A1219","Prochlorococcus marinus"],["NCBITaxon%3A2724906","Prochlorococcus marinus 150NLHA"],["NCBITaxon%3A2724907","Prochlorococcus marinus 150SLHA"],["NCBITaxon%3A2724908","Prochlorococcus marinus 150SLHB"],["NCBITaxon%3A1041938","Prochlorococcus marinus bv. HNLC1"]]},{"id":"NCBITaxon:317","l":"Pseudomonas syringae","na":1,"nb":183,"a":[["ecology/plant_pathogen.html","plant pathogen"]],"b":[["NCBITaxon%3A86840","Pseudomonas cannabina"],["NCBITaxon%3A53409","Pseudomonas coronafaciens"],["NCBITaxon%3A29438","Pseudomonas savastanoi"],["NCBITaxon%3A306","Pseudomonas sp."],["NCBITaxon%3A317","Pseudomonas syringae"],["NCBITaxon%3A1204471","Pseudomonas syringae BRIP34876"]]},{"id":"NCBITaxon:90371","l":"Salmonella enterica subsp. enterica serovar Typhimurium","na":1,"nb":176,"a":[["morphology/motility.html","motility"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A90371","Salmonella enterica subsp. enterica serovar Typhimurium"],["NCBITaxon%3A1173928","Salmonella enterica subsp. enterica serovar Typhimurium str. 0052"],["NCBITaxon%3A1114946","Salmonella enterica subsp. enterica serovar Typhimurium str. 00-01036"],["NCBITaxon%3A1173930","Salmonella enterica subsp. enterica serovar Typhimurium str. 0364"]]},{"id":"NCBITaxon:339","l":"Xanthomonas campestris","na":1,"nb":88,"a":[["morphology/yellow_pigmented.html","yellow pigmented"]],"b":[["NCBITaxon%3A298","Pseudomonas marginalis"],["NCBITaxon%3A56448","Xanthomonas arboricola"],["NCBITaxon%3A339","Xanthomonas campestris"],["NCBITaxon%3A1281290","Xanthomonas campestris CFBP 5824"],["NCBITaxon%3A1281289","Xanthomonas campestris CFBP 5825"],["NCBITaxon%3A1182783","Xanthomonas campestris JX"]]},{"id":"NCBITaxon:139","l":"Borreliella burgdorferi","na":1,"nb":43,"a":[["genomics/plasmid_carriage.html","plasmid carriage"]],"b":[["NCBITaxon%3A139","Borreliella burgdorferi"],["NCBITaxon%3A476210","Borreliella burgdorferi 118a"],["NCBITaxon%3A445983","Borreliella burgdorferi 156a"],["NCBITaxon%3A521009","Borreliella burgdorferi 297"],["NCBITaxon%3A498738","Borreliella burgdorferi 29805"],["NCBITaxon%3A498740","Borreliella burgdorferi 64b"]]},{"id":"NCBITaxon:747","l":"Pasteurella multocida","na":1,"nb":38,"a":[["ecology/animal_pathogen.html","animal pathogen"]],"b":[["NCBITaxon%3A714","Aggregatibacter actinomycetemcomitans"],["NCBITaxon%3A747","Pasteurella multocida"],["NCBITaxon%3A1298929","Pasteurella multocida 1500C"],["NCBITaxon%3A1298924","Pasteurella multocida 1500E"],["NCBITaxon%3A1298925","Pasteurella multocida 2000"],["NCBITaxon%3A1075089","Pasteurella multocida 36950"]]},{"id":"NCBITaxon:851","l":"Fusobacterium nucleatum","na":1,"nb":35,"a":[["morphology/fusiform_shaped.html","fusiform shaped"]],"b":[["NCBITaxon%3A76859","Fusobacterium animalis"],["NCBITaxon%3A997347","Fusobacterium animalis ATCC 51191"],["NCBITaxon%3A1583098","Fusobacterium hwasookii"],["NCBITaxon%3A1216362","Fusobacterium hwasookii ChDC F128"],["NCBITaxon%3A1307441","Fusobacterium hwasookii ChDC F145"],["NCBITaxon%3A1307442","Fusobacterium hwasookii ChDC F174"]]},{"id":"NCBITaxon:571","l":"Klebsiella oxytoca","na":1,"nb":31,"a":[["other/voges_proskauer_test_positive.html","Voges-Proskauer test positive"]],"b":[["NCBITaxon%3A571","Klebsiella oxytoca"],["NCBITaxon%3A883116","Klebsiella oxytoca 09-7231"],["NCBITaxon%3A883117","Klebsiella oxytoca 10-5242"],["NCBITaxon%3A883118","Klebsiella oxytoca 10-5243"],["NCBITaxon%3A883119","Klebsiella oxytoca 10-5244"],["NCBITaxon%3A883120","Klebsiella oxytoca 10-5245"]]},{"id":"NCBITaxon:1717","l":"Corynebacterium diphtheriae","na":1,"nb":28,"a":[["morphology/dumbbell_shaped.html","dumbbell shaped"]],"b":[["NCBITaxon%3A1717","Corynebacterium diphtheriae"],["NCBITaxon%3A698966","Corynebacterium diphtheriae 241"],["NCBITaxon%3A698962","Corynebacterium diphtheriae 31A"],["NCBITaxon%3A698973","Corynebacterium diphtheriae BH8"],["NCBITaxon%3A1720349","Corynebacterium diphtheriae bv. gravis"],["NCBITaxon%3A1450521","Corynebacterium diphtheriae bv. gravis str. ISS 4060"]]},{"id":"NCBITaxon:1859128","l":"Candidatus Electrothrix","na":1,"nb":25,"a":[["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"]],"b":[["NCBITaxon%3A1859131","Candidatus Electrothrix aarhusensis"],["NCBITaxon%3A3062594","Candidatus Electrothrix aestuarii"],["NCBITaxon%3A1859133","Candidatus Electrothrix communis"],["NCBITaxon%3A2202844","Candidatus Electrothrix gigas"],["NCBITaxon%3A1859132","Candidatus Electrothrix japonica"],["NCBITaxon%3A3036123","Candidatus Electrothrix laxa"]]},{"id":"NCBITaxon:47951","l":"Vibrio cyclitrophicus","na":1,"nb":23,"a":[["genomics/sspabcd_sspe_system.html","SspABCD-SspE system"]],"b":[["NCBITaxon%3A47951","Vibrio cyclitrophicus"],["NCBITaxon%3A1136156","Vibrio cyclitrophicus 12F01"],["NCBITaxon%3A1136159","Vibrio cyclitrophicus 1F111"],["NCBITaxon%3A1136160","Vibrio cyclitrophicus 1F175"],["NCBITaxon%3A1136161","Vibrio cyclitrophicus 1F273"],["NCBITaxon%3A1136162","Vibrio cyclitrophicus 1F289"]]},{"id":"NCBITaxon:837","l":"Porphyromonas gingivalis","na":1,"nb":22,"a":[["morphology/black_pigmented.html","black pigmented"]],"b":[["NCBITaxon%3A837","Porphyromonas gingivalis"],["NCBITaxon%3A1403335","Porphyromonas gingivalis 381"],["NCBITaxon%3A1403337","Porphyromonas gingivalis A7436"],["NCBITaxon%3A1403338","Porphyromonas gingivalis A7A1-28"],["NCBITaxon%3A1403336","Porphyromonas gingivalis AJW4"],["NCBITaxon%3A431947","Porphyromonas gingivalis ATCC 33277"]]},{"id":"NCBITaxon:1579","l":"Lactobacillus acidophilus","na":1,"nb":20,"a":[["environment/acidotolerant.html","acidotolerant"]],"b":[["NCBITaxon%3A1597","Lacticaseibacillus paracasei"],["NCBITaxon%3A1590","Lactiplantibacillus plantarum"],["NCBITaxon%3A1579","Lactobacillus acidophilus"],["NCBITaxon%3A891391","Lactobacillus acidophilus 30SC"],["NCBITaxon%3A525306","Lactobacillus acidophilus ATCC 4796"],["NCBITaxon%3A1421011","Lactobacillus acidophilus CFH"]]},{"id":"NCBITaxon:1402","l":"Bacillus licheniformis","na":1,"nb":19,"a":[["metabolism/starch_degradation.html","starch degradation"]],"b":[["NCBITaxon%3A1402","Bacillus licheniformis"],["NCBITaxon%3A1169411","Bacillus licheniformis 10-1-A"],["NCBITaxon%3A44097","Bacillus licheniformis 2709"],["NCBITaxon%3A1169412","Bacillus licheniformis 5-2-D"],["NCBITaxon%3A1368424","Bacillus licheniformis CG-B52"],["NCBITaxon%3A1232672","Bacillus licheniformis CGMCC 3963"]]},{"id":"NCBITaxon:672","l":"Vibrio vulnificus","na":1,"nb":19,"a":[["physiology/viable_but_nonculturable_state.html","viable but nonculturable state"]],"b":[["NCBITaxon%3A678","Vibrio sp."],["NCBITaxon%3A672","Vibrio vulnificus"],["NCBITaxon%3A701179","Vibrio vulnificus 06-2450"],["NCBITaxon%3A1246308","Vibrio vulnificus 96-11-17M"],["NCBITaxon%3A1246309","Vibrio vulnificus A1402"],["NCBITaxon%3A1229202","Vibrio vulnificus B2"]]},{"id":"NCBITaxon:1408","l":"Bacillus pumilus","na":1,"nb":16,"a":[["physiology/lipase_activity.html","lipase activity"]],"b":[["NCBITaxon%3A1408","Bacillus pumilus"],["NCBITaxon%3A536229","Bacillus pumilus ATCC 7061"],["NCBITaxon%3A1227811","Bacillus pumilus BA06"],["NCBITaxon%3A1189615","Bacillus pumilus BL8"],["NCBITaxon%3A1350468","Bacillus pumilus CCMA-560"],["NCBITaxon%3A1330463","Bacillus pumilus CIMFR"]]},{"id":"NCBITaxon:160","l":"Treponema pallidum","na":1,"nb":15,"a":[["morphology/spirochete_shaped.html","spirochete shaped"]],"b":[["NCBITaxon%3A160","Treponema pallidum"],["NCBITaxon%3A1155775","Treponema pallidum str. Fribourg-Blanc"],["NCBITaxon%3A53436","Treponema pallidum subsp. endemicum"],["NCBITaxon%3A1155776","Treponema pallidum subsp. endemicum str. Bosnia A"],["NCBITaxon%3A161","Treponema pallidum subsp. pallidum"],["NCBITaxon%3A491081","Treponema pallidum subsp. pallidum DAL-1"]]},{"id":"NCBITaxon:1681","l":"Bifidobacterium bifidum","na":1,"nb":15,"a":[["morphology/branched_shaped.html","branched shaped"]],"b":[["NCBITaxon%3A1681","Bifidobacterium bifidum"],["NCBITaxon%3A500634","Bifidobacterium bifidum ATCC 29521 = JCM 1255 = DSM 20456"],["NCBITaxon%3A484020","Bifidobacterium bifidum BGN4"],["NCBITaxon%3A1263058","Bifidobacterium bifidum CAG:234"],["NCBITaxon%3A1173065","Bifidobacterium bifidum CECT 7366"],["NCBITaxon%3A398515","Bifidobacterium bifidum DSM 20215"]]},{"id":"NCBITaxon:1772","l":"Mycolicibacterium smegmatis","na":1,"nb":15,"a":[["physiology/alkaline_phosphatase_activity.html","alkaline phosphatase activity"]],"b":[["NCBITaxon%3A175628","Gordonia paraffinivorans"],["NCBITaxon%3A1785","Mycobacterium sp."],["NCBITaxon%3A1772","Mycolicibacterium smegmatis"],["NCBITaxon%3A1455235","Mycolicibacterium smegmatis 30-MsmegS_ND_60_A"],["NCBITaxon%3A1455243","Mycolicibacterium smegmatis 31-MsmegS_CIP_60_A"],["NCBITaxon%3A1455251","Mycolicibacterium smegmatis 32-MsmegS_CIP_30_A"]]},{"id":"NCBITaxon:55601","l":"Vibrio anguillarum","na":1,"nb":15,"a":[["genomics/sspabcd_sspfgh_system.html","SspABCD-SspFGH system"]],"b":[["NCBITaxon%3A1056982","Gordonia phosphorivorans"],["NCBITaxon%3A55601","Vibrio anguillarum"],["NCBITaxon%3A1161910","Vibrio anguillarum 13YK-003"],["NCBITaxon%3A882102","Vibrio anguillarum 775"],["NCBITaxon%3A990314","Vibrio anguillarum 96F"],["NCBITaxon%3A882846","Vibrio anguillarum ATCC 43308"]]},{"id":"NCBITaxon:1076","l":"Rhodopseudomonas palustris","na":1,"nb":14,"a":[["physiology/photoheterotrophic.html","photoheterotrophic"]],"b":[["NCBITaxon%3A1076","Rhodopseudomonas palustris"],["NCBITaxon%3A74570","Rhodopseudomonas palustris ATCC 17001"],["NCBITaxon%3A74573","Rhodopseudomonas palustris ATCC 17007"],["NCBITaxon%3A316055","Rhodopseudomonas palustris BisA53"],["NCBITaxon%3A316056","Rhodopseudomonas palustris BisB18"],["NCBITaxon%3A316057","Rhodopseudomonas palustris BisB5"]]},{"id":"NCBITaxon:28132","l":"Prevotella melaninogenica","na":1,"nb":14,"a":[["morphology/black_pigmented.html","black pigmented"]],"b":[["NCBITaxon%3A840","Hoylesella loescheii"],["NCBITaxon%3A1122985","Hoylesella loescheii DSM 19665 = JCM 12249 = ATCC 15930"],["NCBITaxon%3A28123","Porphyromonas asaccharolytica"],["NCBITaxon%3A837","Porphyromonas gingivalis"],["NCBITaxon%3A28114","Porphyromonas levii"],["NCBITaxon%3A1122973","Porphyromonas levii DSM 23370"]]},{"id":"NCBITaxon:782","l":"Rickettsia prowazekii","na":1,"nb":13,"a":[["ecology/parasitism.html","parasitism"]],"b":[["NCBITaxon%3A782","Rickettsia prowazekii"],["NCBITaxon%3A1290428","Rickettsia prowazekii str. Breinl"],["NCBITaxon%3A1105096","Rickettsia prowazekii str. BuV67-CWPP"],["NCBITaxon%3A1290430","Rickettsia prowazekii str. Cairo 3"],["NCBITaxon%3A1105094","Rickettsia prowazekii str. Chernikova"],["NCBITaxon%3A1105097","Rickettsia prowazekii str. Dachau"]]},{"id":"NCBITaxon:83332","l":"Mycobacterium tuberculosis H37Rv","na":1,"nb":13,"a":[["physiology/dormancy.html","dormancy"]],"b":[["NCBITaxon%3A1773","Mycobacterium tuberculosis"],["NCBITaxon%3A83332","Mycobacterium tuberculosis H37Rv"],["NCBITaxon%3A747078","Mycobacterium tuberculosis H37Rv_2009"],["NCBITaxon%3A928249","Mycobacterium tuberculosis H37Rv_ideR_mutant_ST22"],["NCBITaxon%3A757417","Mycobacterium tuberculosis H37RvAE"],["NCBITaxon%3A757419","Mycobacterium tuberculosis H37RvCO"]]},{"id":"NCBITaxon:435","l":"Acetobacter aceti","na":1,"nb":12,"a":[["environment/acidotolerant.html","acidotolerant"]],"b":[["NCBITaxon%3A435","Acetobacter aceti"],["NCBITaxon%3A1457393","Acetobacter aceti 1023"],["NCBITaxon%3A663932","Acetobacter aceti ATCC 23746"],["NCBITaxon%3A887700","Acetobacter aceti NBRC 14818"],["NCBITaxon%3A1206747","Acetobacter aceti NRIC 0242"],["NCBITaxon%3A178900","Acetobacter cerevisiae"]]},{"id":"NCBITaxon:54291","l":"Klebsiella ornithinolytica","na":1,"nb":12,"a":[["other/methyl_red_test_positive.html","methyl red test positive"]],"b":[["NCBITaxon%3A54291","Klebsiella ornithinolytica"],["NCBITaxon%3A883121","Klebsiella ornithinolytica 10-5246"],["NCBITaxon%3A1444039","Klebsiella ornithinolytica 2-156-04_S1_C1"],["NCBITaxon%3A1444067","Klebsiella ornithinolytica 2-156-04_S1_C2"],["NCBITaxon%3A1286170","Klebsiella ornithinolytica B6"],["NCBITaxon%3A1357411","Klebsiella ornithinolytica CD1_MRS_4"]]},{"id":"NCBITaxon:584","l":"Proteus mirabilis","na":1,"nb":12,"a":[["morphology/swarming_motility.html","swarming motility"]],"b":[["NCBITaxon%3A584","Proteus mirabilis"],["NCBITaxon%3A1285374","Proteus mirabilis 1014"],["NCBITaxon%3A1308721","Proteus mirabilis ADL-319"],["NCBITaxon%3A1308722","Proteus mirabilis ADL-321"],["NCBITaxon%3A1308723","Proteus mirabilis ADL-401"],["NCBITaxon%3A525369","Proteus mirabilis ATCC 29906"]]},{"id":"NCBITaxon:1422","l":"Geobacillus stearothermophilus","na":1,"nb":10,"a":[["morphology/s_layer.html","S-layer"]],"b":[["NCBITaxon%3A1891658","Geobacillus sp."],["NCBITaxon%3A1422","Geobacillus stearothermophilus"],["NCBITaxon%3A272567","Geobacillus stearothermophilus 10"],["NCBITaxon%3A1366047","Geobacillus stearothermophilus ATCC 12980"],["NCBITaxon%3A937593","Geobacillus stearothermophilus ATCC 7953"],["NCBITaxon%3A664733","Geobacillus stearothermophilus C56-N21"]]},{"id":"NCBITaxon:1599","l":"Latilactobacillus sakei","na":1,"nb":9,"a":[["physiology/arginine_dihydrolase_activity.html","arginine dihydrolase activity"]],"b":[["NCBITaxon%3A1599","Latilactobacillus sakei"],["NCBITaxon%3A1381395","Latilactobacillus sakei dgh6"],["NCBITaxon%3A1634","Latilactobacillus sakei L45"],["NCBITaxon%3A214325","Latilactobacillus sakei subsp. carnosus"],["NCBITaxon%3A525363","Latilactobacillus sakei subsp. carnosus DSM 15831"],["NCBITaxon%3A214326","Latilactobacillus sakei subsp. sakei"]]},{"id":"NCBITaxon:1830","l":"Rhodococcus ruber","na":1,"nb":9,"a":[["morphology/orange_pigmented.html","orange pigmented"]],"b":[["NCBITaxon%3A941184","Nocardia salmonicolor"],["NCBITaxon%3A1830","Rhodococcus ruber"],["NCBITaxon%3A1278076","Rhodococcus ruber BKS 20-38"],["NCBITaxon%3A1240349","Rhodococcus ruber Chol-4"],["NCBITaxon%3A3392186","Rhodococcus ruber IEGM1217"],["NCBITaxon%3A3392194","Rhodococcus ruber IEGM453"]]},{"id":"NCBITaxon:192222","l":"Campylobacter jejuni subsp. jejuni NCTC 11168 = ATCC 700819","na":1,"nb":9,"a":[["environment/capnophilic.html","capnophilic"]],"b":[["NCBITaxon%3A197","Campylobacter jejuni"],["NCBITaxon%3A192222","Campylobacter jejuni subsp. jejuni NCTC 11168 = ATCC 700819"],["NCBITaxon%3A1211776","Campylobacter jejuni subsp. jejuni NCTC 11168-BN148"],["NCBITaxon%3A1385724","Campylobacter jejuni subsp. jejuni NCTC 11168-GSv"],["NCBITaxon%3A1385720","Campylobacter jejuni subsp. jejuni NCTC 11168-K12E5"],["NCBITaxon%3A1385723","Campylobacter jejuni subsp. jejuni NCTC 11168-Kf1"]]},{"id":"NCBITaxon:3029272","l":"Amygdalobacter indicium","na":9,"nb":1,"a":[["physiology/alanine_arylamidase_activity.html","alanine arylamidase activity"],["physiology/alpha_chymotrypsin_activity.html","alpha-chymotrypsin activity"],["physiology/glutamyl_glutamic_acid_arylamidase_activity.html","glutamyl glutamic acid arylamidase activity"],["physiology/glycine_arylamidase_activity.html","glycine arylamidase activity"],["physiology/histidine_arylamidase_activity.html","histidine arylamidase activity"],["physiology/leucyl_glycine_arylamidase_activity.html","leucyl glycine arylamidase activity"]],"b":[["NCBITaxon%3A3029272","Amygdalobacter indicium"]]},{"id":"NCBITaxon:1515","l":"Acetivibrio thermocellus","na":1,"nb":8,"a":[["metabolism/cellulolysis.html","cellulolysis"]],"b":[["NCBITaxon%3A1515","Acetivibrio thermocellus"],["NCBITaxon%3A1138384","Acetivibrio thermocellus AD2"],["NCBITaxon%3A203119","Acetivibrio thermocellus ATCC 27405"],["NCBITaxon%3A1349417","Acetivibrio thermocellus BC1"],["NCBITaxon%3A637887","Acetivibrio thermocellus DSM 1313"],["NCBITaxon%3A572545","Acetivibrio thermocellus DSM 2360"]]},{"id":"NCBITaxon:1744","l":"Propionibacterium freudenreichii","na":1,"nb":8,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["NCBITaxon%3A1591","Lactobacillus sp."],["NCBITaxon%3A1744","Propionibacterium freudenreichii"],["NCBITaxon%3A66712","Propionibacterium freudenreichii subsp. freudenreichii"],["NCBITaxon%3A1408888","Propionibacterium freudenreichii subsp. freudenreichii ITG P20"],["NCBITaxon%3A1219357","Propionibacterium freudenreichii subsp. freudenreichii NBRC 12424"],["NCBITaxon%3A1752","Propionibacterium freudenreichii subsp. shermanii"]]},{"id":"NCBITaxon:3028314","l":"Oceanimonas pelagia","na":8,"nb":1,"a":[["environment/optimum_phenotype_with_numerical_limits.html","optimum phenotype with numerical limits"],["environment/ph_delta.html","pH delta"],["environment/ph_range.html","pH range"],["environment/temperature_optimum.html","temperature optimum"],["environment/temperature_range_mid4.html","temperature range mid4"],["genomics/gc_mid2.html","GC mid2"]],"b":[["NCBITaxon%3A3028314","Oceanimonas pelagia"]]},{"id":"NCBITaxon:99287","l":"Salmonella enterica subsp. enterica serovar Typhimurium str. LT2","na":1,"nb":8,"a":[["metabolism/tetrathionate_respiration.html","tetrathionate respiration"]],"b":[["NCBITaxon%3A28901","Salmonella enterica"],["NCBITaxon%3A59201","Salmonella enterica subsp. enterica"],["NCBITaxon%3A588858","Salmonella enterica subsp. enterica serovar Typhimurium str. 14028S"],["NCBITaxon%3A1094461","Salmonella enterica subsp. enterica serovar Typhimurium str. G455"],["NCBITaxon%3A99287","Salmonella enterica subsp. enterica serovar Typhimurium str. LT2"],["NCBITaxon%3A1159899","Salmonella enterica subsp. enterica serovar Typhimurium str. LT2-4"]]},{"id":"NCBITaxon:663","l":"Vibrio alginolyticus","na":1,"nb":7,"a":[["morphology/polar_flagellation.html","polar flagellation"]],"b":[["NCBITaxon%3A663","Vibrio alginolyticus"],["NCBITaxon%3A314288","Vibrio alginolyticus 12G01"],["NCBITaxon%3A674977","Vibrio alginolyticus 40B"],["NCBITaxon%3A664","Vibrio alginolyticus chemovar iophagus"],["NCBITaxon%3A1219076","Vibrio alginolyticus NBRC 15630 = ATCC 17749"],["NCBITaxon%3A669","Vibrio harveyi"]]},{"id":"NCBITaxon:1111708","l":"Synechocystis sp. PCC 6803 substr. Kazusa","na":6,"nb":1,"a":[["metabolism/oxygenic_photosynthesis.html","oxygenic photosynthesis"],["metabolism/photosynthesis.html","photosynthesis"],["metabolism/phototrophy.html","phototrophy"],["physiology/photoautotrophic.html","photoautotrophic"],["physiology/photolithotrophic.html","photolithotrophic"],["physiology/phototrophic.html","phototrophic"]],"b":[["NCBITaxon%3A1111708","Synechocystis sp. PCC 6803 substr. Kazusa"]]},{"id":"NCBITaxon:1377","l":"Aerococcus viridans","na":1,"nb":6,"a":[["morphology/tetrad_arrangement.html","tetrad arrangement"]],"b":[["NCBITaxon%3A1872398","Aerococcus sp."],["NCBITaxon%3A1377","Aerococcus viridans"],["NCBITaxon%3A655812","Aerococcus viridans ATCC 11563 = CCUG 4311"],["NCBITaxon%3A1175629","Aerococcus viridans LL1"],["NCBITaxon%3A1255702","Aerococcus viridans TL327A"],["NCBITaxon%3A1254","Pediococcus acidilactici"]]},{"id":"NCBITaxon:2285","l":"Sulfolobus acidocaldarius","na":1,"nb":6,"a":[["environment/temperature_range_high.html","temperature range high"]],"b":[["NCBITaxon%3A2287","Saccharolobus solfataricus"],["NCBITaxon%3A2285","Sulfolobus acidocaldarius"],["NCBITaxon%3A330779","Sulfolobus acidocaldarius DSM 639"],["NCBITaxon%3A1028566","Sulfolobus acidocaldarius N8"],["NCBITaxon%3A1028567","Sulfolobus acidocaldarius Ron12/I"],["NCBITaxon%3A1435377","Sulfolobus acidocaldarius SUSAZ"]]},{"id":"NCBITaxon:29339","l":"Bacillus thuringiensis serovar kurstaki","na":1,"nb":6,"a":[["physiology/quorum_sensing.html","quorum sensing"]],"b":[["NCBITaxon%3A714359","Bacillus thuringiensis BMB171"],["NCBITaxon%3A29339","Bacillus thuringiensis serovar kurstaki"],["NCBITaxon%3A1279365","Bacillus thuringiensis serovar kurstaki str. HD73"],["NCBITaxon%3A1261129","Bacillus thuringiensis serovar kurstaki str. HD-1"],["NCBITaxon%3A527023","Bacillus thuringiensis serovar kurstaki str. T03a001"],["NCBITaxon%3A570416","Bacillus thuringiensis serovar kurstaki str. YBT-1520"]]},{"id":"NCBITaxon:1513592","l":"Colwellia marinimaniae","na":5,"nb":1,"a":[["environment/obligately_piezophilic.html","obligately piezophilic"],["environment/piezophilic.html","piezophilic"],["environment/pressure_delta.html","pressure delta"],["environment/pressure_optimum.html","pressure optimum"],["environment/pressure_range.html","pressure range"]],"b":[["NCBITaxon%3A1513592","Colwellia marinimaniae"]]},{"id":"NCBITaxon:1665","l":"Arthrobacter globiformis","na":1,"nb":5,"a":[["morphology/gram_variable.html","gram variable"]],"b":[["NCBITaxon%3A1665","Arthrobacter globiformis"],["NCBITaxon%3A1077972","Arthrobacter globiformis NBRC 12137"],["NCBITaxon%3A1667","Arthrobacter sp."],["NCBITaxon%3A169875","Arthrobacter sp. JCM 1339"],["NCBITaxon%3A1701","Brevibacterium sp."]]},{"id":"NCBITaxon:1752","l":"Propionibacterium freudenreichii subsp. shermanii","na":1,"nb":5,"a":[["metabolism/propionic_acid_fermentation.html","propionic acid fermentation"]],"b":[["NCBITaxon%3A1591","Lactobacillus sp."],["NCBITaxon%3A1744","Propionibacterium freudenreichii"],["NCBITaxon%3A1752","Propionibacterium freudenreichii subsp. shermanii"],["NCBITaxon%3A754252","Propionibacterium freudenreichii subsp. shermanii CIRM-BIA1"],["NCBITaxon%3A1445610","Propionibacterium freudenreichii subsp. shermanii SANPR8"]]},{"id":"NCBITaxon:2246","l":"Haloferax volcanii","na":1,"nb":5,"a":[["morphology/disc_shaped.html","disc shaped"]],"b":[["NCBITaxon%3A2246","Haloferax volcanii"],["NCBITaxon%3A309800","Haloferax volcanii DS2"],["NCBITaxon%3A1230452","Haloferax volcanii DSM 14919"],["NCBITaxon%3A1227458","Haloferax volcanii JCM 10717"],["NCBITaxon%3A523840","Haloferax volcanii SB1"]]},{"id":"NCBITaxon:228410","l":"Nitrosomonas europaea ATCC 19718","na":5,"nb":1,"a":[["physiology/chemoautolithotrophic.html","chemoautolithotrophic"],["physiology/chemoautotrophic.html","chemoautotrophic"],["physiology/chemolithotrophic.html","chemolithotrophic"],["physiology/lithoautotrophic.html","lithoautotrophic"],["physiology/lithotrophic.html","lithotrophic"]],"b":[["NCBITaxon%3A228410","Nitrosomonas europaea ATCC 19718"]]},{"id":"NCBITaxon:293091","l":"Haloquadratum walsbyi","na":1,"nb":5,"a":[["morphology/square_shaped.html","square shaped"]],"b":[["NCBITaxon%3A293091","Haloquadratum walsbyi"],["NCBITaxon%3A768065","Haloquadratum walsbyi C23"],["NCBITaxon%3A362976","Haloquadratum walsbyi DSM 16790"],["NCBITaxon%3A1238424","Haloquadratum walsbyi J07HQW1"],["NCBITaxon%3A1238425","Haloquadratum walsbyi J07HQW2"]]},{"id":"NCBITaxon:296","l":"Pseudomonas fragi","na":1,"nb":5,"a":[["environment/temperature_optimum_low.html","temperature optimum low"]],"b":[["NCBITaxon%3A296","Pseudomonas fragi"],["NCBITaxon%3A1255586","Pseudomonas fragi 1E26"],["NCBITaxon%3A1134475","Pseudomonas fragi A22"],["NCBITaxon%3A1136138","Pseudomonas fragi B25"],["NCBITaxon%3A1215101","Pseudomonas fragi NBRC 3458"]]},{"id":"NCBITaxon:34","l":"Myxococcus xanthus","na":1,"nb":5,"a":[["morphology/gliding.html","gliding"]],"b":[["NCBITaxon%3A34","Myxococcus xanthus"],["NCBITaxon%3A246197","Myxococcus xanthus DK 1622"],["NCBITaxon%3A1198133","Myxococcus xanthus DZ2"],["NCBITaxon%3A1198538","Myxococcus xanthus DZF1"],["NCBITaxon%3A675543","Myxococcus xanthus NewJersey2"]]},{"id":"NCBITaxon:575322","l":"Sphingomonas oligoaromativorans","na":5,"nb":1,"a":[["environment/nacl_delta_low.html","NaCl delta low"],["environment/nacl_optimum_low.html","NaCl optimum low"],["environment/nacl_range_low.html","NaCl range low"],["environment/ph_delta_very_low.html","pH delta very low"],["environment/ph_range_mid1.html","pH range mid1"]],"b":[["NCBITaxon%3A575322","Sphingomonas oligoaromativorans"]]},{"id":"NCBITaxon:863","l":"Syntrophomonas wolfei","na":1,"nb":5,"a":[["metabolism/syntrophy.html","Syntrophy"]],"b":[["NCBITaxon%3A863","Syntrophomonas wolfei"],["NCBITaxon%3A378794","Syntrophomonas wolfei subsp. methylbutyratica"],["NCBITaxon%3A373074","Syntrophomonas wolfei subsp. saponavida"],["NCBITaxon%3A370885","Syntrophomonas wolfei subsp. wolfei"],["NCBITaxon%3A335541","Syntrophomonas wolfei subsp. wolfei str. Goettingen G311"]]},{"id":"NCBITaxon:132919","l":"Rhodococcus jostii","na":1,"nb":4,"a":[["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["NCBITaxon%3A1850366","Paenibacillus rhizophilus"],["NCBITaxon%3A132919","Rhodococcus jostii"],["NCBITaxon%3A1219017","Rhodococcus jostii NBRC 16295"],["NCBITaxon%3A101510","Rhodococcus jostii RHA1"]]},{"id":"NCBITaxon:1519","l":"Clostridium tyrobutyricum","na":1,"nb":4,"a":[["metabolism/butyric_acid_fermentation.html","butyric acid fermentation"]],"b":[["NCBITaxon%3A1519","Clostridium tyrobutyricum"],["NCBITaxon%3A1408889","Clostridium tyrobutyricum DIVETGP"],["NCBITaxon%3A1121342","Clostridium tyrobutyricum DSM 2637 = ATCC 25755 = JCM 11008"],["NCBITaxon%3A1212547","Clostridium tyrobutyricum UC7086"]]},{"id":"NCBITaxon:265546","l":"Anoxybacillus ayderensis","na":1,"nb":4,"a":[["environment/facultatively_aerobic.html","facultatively aerobic"]],"b":[["NCBITaxon%3A265546","Anoxybacillus ayderensis"],["NCBITaxon%3A1212546","Anoxybacillus ayderensis G10"],["NCBITaxon%3A529374","Anoxybacillus kamchatkensis subsp. asaccharedens"],["NCBITaxon%3A1872573","Anoxybacillus sp."]]},{"id":"NCBITaxon:28112","l":"Tannerella forsythia","na":1,"nb":4,"a":[["physiology/alpha_fucosidase_activity.html","alpha-fucosidase activity"]],"b":[["NCBITaxon%3A28112","Tannerella forsythia"],["NCBITaxon%3A1307832","Tannerella forsythia 3313"],["NCBITaxon%3A203275","Tannerella forsythia 92A2"],["NCBITaxon%3A1307833","Tannerella forsythia KS16"]]},{"id":"NCBITaxon:959","l":"Bdellovibrio bacteriovorus","na":1,"nb":4,"a":[["ecology/predatory_bacterium.html","predatory bacterium"]],"b":[["NCBITaxon%3A959","Bdellovibrio bacteriovorus"],["NCBITaxon%3A264462","Bdellovibrio bacteriovorus HD100"],["NCBITaxon%3A1069642","Bdellovibrio bacteriovorus str. Tiberius"],["NCBITaxon%3A765869","Bdellovibrio bacteriovorus W"]]},{"id":"NCBITaxon:1570","l":"Halobacillus halophilus","na":1,"nb":3,"a":[["environment/halotolerant.html","halotolerant"]],"b":[["NCBITaxon%3A1570","Halobacillus halophilus"],["NCBITaxon%3A866895","Halobacillus halophilus DSM 2266"],["NCBITaxon%3A56800","Halobacillus sp."]]},{"id":"NCBITaxon:157784","l":"Zestomonas thermotolerans","na":1,"nb":3,"a":[["environment/thermotolerant.html","thermotolerant"]],"b":[["NCBITaxon%3A1123021","Pseudomonas thermotolerans DSM 14292"],["NCBITaxon%3A935867","Pseudomonas thermotolerans J53"],["NCBITaxon%3A157784","Zestomonas thermotolerans"]]},{"id":"NCBITaxon:245174","l":"Wallemia ichthyophaga","na":3,"nb":1,"a":[["environment/nacl_delta_high.html","NaCl delta high"],["environment/nacl_optimum.html","NaCl optimum"],["environment/nacl_optimum_high.html","NaCl optimum high"]],"b":[["NCBITaxon%3A245174","Wallemia ichthyophaga"]]},{"id":"NCBITaxon:2593654","l":"Pseudomonas mangiferae","na":3,"nb":1,"a":[["environment/ph_optimum_mid1.html","pH optimum mid1"],["environment/temperature_delta_mid2.html","temperature delta mid2"],["environment/temperature_range_mid2.html","temperature range mid2"]],"b":[["NCBITaxon%3A2593654","Pseudomonas mangiferae"]]},{"id":"NCBITaxon:28264","l":"Arcanobacterium haemolyticum","na":1,"nb":3,"a":[["physiology/alpha_mannosidase_activity.html","alpha-mannosidase activity"]],"b":[["NCBITaxon%3A28264","Arcanobacterium haemolyticum"],["NCBITaxon%3A644284","Arcanobacterium haemolyticum DSM 20595"],["NCBITaxon%3A1328","Streptococcus anginosus"]]},{"id":"NCBITaxon:316401","l":"Escherichia coli ETEC H10407","na":1,"nb":3,"a":[["other/indole_test_positive.html","indole test positive"]],"b":[["NCBITaxon%3A316401","Escherichia coli ETEC H10407"],["NCBITaxon%3A1213735","Escherichia coli H10407_1968"],["NCBITaxon%3A1213736","Escherichia coli H10407_1970"]]},{"id":"NCBITaxon:318586","l":"Paracoccus denitrificans PD1222","na":1,"nb":3,"a":[["physiology/mixotrophic.html","mixotrophic"]],"b":[["NCBITaxon%3A266","Paracoccus denitrificans"],["NCBITaxon%3A1302247","Paracoccus denitrificans JCM 21484"],["NCBITaxon%3A318586","Paracoccus denitrificans PD1222"]]},{"id":"NCBITaxon:335992","l":"Candidatus Pelagibacter ubique HTCC1062","na":3,"nb":1,"a":[["ecology/habitat_association.html","habitat association"],["physiology/nutrient_adaptation.html","nutrient adaptation"],["physiology/oligotrophic.html","oligotrophic"]],"b":[["NCBITaxon%3A335992","Candidatus Pelagibacter ubique HTCC1062"]]},{"id":"NCBITaxon:414","l":"Methylococcus capsulatus","na":1,"nb":3,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["NCBITaxon%3A414","Methylococcus capsulatus"],["NCBITaxon%3A243233","Methylococcus capsulatus str. Bath"],["NCBITaxon%3A1224744","Methylococcus capsulatus str. Texas = ATCC 19069"]]},{"id":"NCBITaxon:75906","l":"Thermocrinis ruber","na":1,"nb":3,"a":[["morphology/polytrichous_flagellation.html","polytrichous flagellation"]],"b":[["NCBITaxon%3A136094","Thermocrinis albus"],["NCBITaxon%3A932678","Thermocrinis albus DSM 12173"],["NCBITaxon%3A75906","Thermocrinis ruber"]]},{"id":"NCBITaxon:93061","l":"Staphylococcus aureus subsp. aureus NCTC 8325","na":1,"nb":3,"a":[["physiology/catalase_activity.html","catalase activity"]],"b":[["NCBITaxon%3A1280","Staphylococcus aureus"],["NCBITaxon%3A93061","Staphylococcus aureus subsp. aureus NCTC 8325"],["NCBITaxon%3A561307","Staphylococcus aureus subsp. aureus RN4220"]]},{"id":"NCBITaxon:100226","l":"Streptomyces coelicolor A3(2)","na":2,"nb":1,"a":[["genomics/gc_mid1.html","GC mid1"],["metabolism/lignin_degradation.html","lignin degradation"]],"b":[["NCBITaxon%3A100226","Streptomyces coelicolor A3(2)"]]},{"id":"NCBITaxon:1032480","l":"Microlunatus phosphovorus NM-1","na":1,"nb":2,"a":[["morphology/polyphosphate_granule.html","polyphosphate granule"]],"b":[["NCBITaxon%3A29405","Microlunatus phosphovorus"],["NCBITaxon%3A1032480","Microlunatus phosphovorus NM-1"]]},{"id":"NCBITaxon:1053","l":"Halorhodospira halophila","na":1,"nb":2,"a":[["environment/haloalkaliphilic.html","haloalkaliphilic"]],"b":[["NCBITaxon%3A1053","Halorhodospira halophila"],["NCBITaxon%3A349124","Halorhodospira halophila SL1"]]},{"id":"NCBITaxon:1111735","l":"Sedimenticola selenatireducens DSM 17993","na":1,"nb":2,"a":[["metabolism/selenate_respiration.html","selenate respiration"]],"b":[["NCBITaxon%3A191960","Sedimenticola selenatireducens"],["NCBITaxon%3A1111735","Sedimenticola selenatireducens DSM 17993"]]},{"id":"NCBITaxon:1123295","l":"Stella vacuolata DSM 5901 = ATCC 43931","na":1,"nb":2,"a":[["morphology/star_shaped.html","star shaped"]],"b":[["NCBITaxon%3A217070","Allostella vacuolata"],["NCBITaxon%3A1123295","Stella vacuolata DSM 5901 = ATCC 43931"]]},{"id":"NCBITaxon:1140","l":"Synechococcus elongatus PCC 7942 = FACHB-805","na":2,"nb":1,"a":[["morphology/carboxysome.html","carboxysome"],["physiology/photolithoautotrophic.html","photolithoautotrophic"]],"b":[["NCBITaxon%3A1140","Synechococcus elongatus PCC 7942 = FACHB-805"]]},{"id":"NCBITaxon:1182451","l":"Aureivirga marina","na":2,"nb":1,"a":[["environment/nacl_delta_mid1.html","NaCl delta mid1"],["environment/nacl_range_mid2.html","NaCl range mid2"]],"b":[["NCBITaxon%3A1182451","Aureivirga marina"]]},{"id":"NCBITaxon:1232683","l":"Marinobacterium lacunae","na":2,"nb":1,"a":[["morphology/cell_length_medium.html","cell length medium"],["morphology/cell_width_large.html","cell width large"]],"b":[["NCBITaxon%3A1232683","Marinobacterium lacunae"]]},{"id":"NCBITaxon:129958","l":"Carboxydothermus hydrogenoformans","na":1,"nb":2,"a":[["physiology/carboxydotrophic.html","carboxydotrophic"]],"b":[["NCBITaxon%3A129958","Carboxydothermus hydrogenoformans"],["NCBITaxon%3A246194","Carboxydothermus hydrogenoformans Z-2901"]]},{"id":"NCBITaxon:132926","l":"Clostridium psychrophilum","na":2,"nb":1,"a":[["environment/temperature_optimum_very_low.html","temperature optimum very low"],["environment/temperature_preference.html","temperature preference"]],"b":[["NCBITaxon%3A132926","Clostridium psychrophilum"]]},{"id":"NCBITaxon:1385984","l":"Exiguobacterium chiriqhucha","na":1,"nb":2,"a":[["environment/temperature_delta_high.html","temperature delta high"]],"b":[["NCBITaxon%3A1385984","Exiguobacterium chiriqhucha"],["NCBITaxon%3A1345023","Exiguobacterium chiriqhucha RW-2"]]},{"id":"NCBITaxon:1455609","l":"Natrinema thermotolerans A29","na":1,"nb":2,"a":[["genomics/dndcdea_pbeabcd_system.html","DndCDEA-PbeABCD system"]],"b":[["NCBITaxon%3A121872","Natrinema thermotolerans"],["NCBITaxon%3A1455609","Natrinema thermotolerans A29"]]},{"id":"NCBITaxon:1474","l":"Sporosarcina pasteurii","na":1,"nb":2,"a":[["physiology/urease_activity.html","urease activity"]],"b":[["NCBITaxon%3A1474","Sporosarcina pasteurii"],["NCBITaxon%3A1415631","Sporosarcina pasteurii NCIM 2477"]]},{"id":"NCBITaxon:160233","l":"Ignicoccus hospitalis","na":1,"nb":2,"a":[["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"]],"b":[["NCBITaxon%3A160233","Ignicoccus hospitalis"],["NCBITaxon%3A453591","Ignicoccus hospitalis KIN4/I"]]},{"id":"NCBITaxon:1708","l":"Cellulomonas fimi","na":1,"nb":2,"a":[["metabolism/biopolymer_degradation.html","biopolymer degradation"]],"b":[["NCBITaxon%3A1708","Cellulomonas fimi"],["NCBITaxon%3A590998","Cellulomonas fimi ATCC 484"]]},{"id":"NCBITaxon:1793963","l":"Bacillus nakamurai","na":2,"nb":1,"a":[["environment/temperature_range_mid3.html","temperature range mid3"],["genomics/gc_low.html","GC low"]],"b":[["NCBITaxon%3A1793963","Bacillus nakamurai"]]},{"id":"NCBITaxon:180","l":"Leptospirillum ferrooxidans","na":1,"nb":2,"a":[["metabolism/iron_oxidation.html","iron oxidation"]],"b":[["NCBITaxon%3A180","Leptospirillum ferrooxidans"],["NCBITaxon%3A1162668","Leptospirillum ferrooxidans C2-3"]]},{"id":"NCBITaxon:200904","l":"Paraliobacillus ryukyuensis","na":2,"nb":1,"a":[["environment/nacl_optimum.html","NaCl optimum"],["environment/slightly_halophilic.html","slightly halophilic"]],"b":[["NCBITaxon%3A200904","Paraliobacillus ryukyuensis"]]},{"id":"NCBITaxon:224911","l":"Bradyrhizobium diazoefficiens USDA 110","na":1,"nb":2,"a":[["morphology/subpolar_flagellation.html","subpolar flagellation"]],"b":[["NCBITaxon%3A1355477","Bradyrhizobium diazoefficiens"],["NCBITaxon%3A224911","Bradyrhizobium diazoefficiens USDA 110"]]},{"id":"NCBITaxon:2325","l":"Thermoanaerobacter kivui","na":2,"nb":1,"a":[["environment/temperature_phenotype_with_numerical_limits.html","temperature phenotype with numerical limits"],["environment/temperature_preference.html","temperature preference"]],"b":[["NCBITaxon%3A2325","Thermoanaerobacter kivui"]]},{"id":"NCBITaxon:2336","l":"Thermotoga maritima","na":1,"nb":2,"a":[["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"]],"b":[["NCBITaxon%3A2336","Thermotoga maritima"],["NCBITaxon%3A243274","Thermotoga maritima MSB8"]]},{"id":"NCBITaxon:243159","l":"Acidithiobacillus ferrooxidans ATCC 23270","na":1,"nb":2,"a":[["metabolism/iron_oxidation.html","iron oxidation"]],"b":[["NCBITaxon%3A920","Acidithiobacillus ferrooxidans"],["NCBITaxon%3A243159","Acidithiobacillus ferrooxidans ATCC 23270"]]},{"id":"NCBITaxon:243164","l":"Dehalococcoides mccartyi 195","na":1,"nb":2,"a":[["metabolism/organohalide_respiration.html","organohalide respiration"]],"b":[["NCBITaxon%3A61435","Dehalococcoides mccartyi"],["NCBITaxon%3A243164","Dehalococcoides mccartyi 195"]]},{"id":"NCBITaxon:243230","l":"Deinococcus radiodurans R1 = ATCC 13939 = DSM 20539","na":1,"nb":2,"a":[["environment/radiotolerant.html","radiotolerant"]],"b":[["NCBITaxon%3A1299","Deinococcus radiodurans"],["NCBITaxon%3A243230","Deinococcus radiodurans R1 = ATCC 13939 = DSM 20539"]]},{"id":"NCBITaxon:243232","l":"Methanocaldococcus jannaschii DSM 2661","na":1,"nb":2,"a":[["metabolism/methanogenesis.html","Methanogenesis"]],"b":[["NCBITaxon%3A2190","Methanocaldococcus jannaschii"],["NCBITaxon%3A243232","Methanocaldococcus jannaschii DSM 2661"]]},{"id":"NCBITaxon:243274","l":"Thermotoga maritima MSB8","na":1,"nb":2,"a":[["metabolism/fermentative_hydrogen_production.html","fermentative hydrogen production"]],"b":[["NCBITaxon%3A2336","Thermotoga maritima"],["NCBITaxon%3A243274","Thermotoga maritima MSB8"]]},{"id":"NCBITaxon:2498453","l":"Geminicoccus harenae","na":2,"nb":1,"a":[["physiology/cystine_arylamidase_activity.html","cystine arylamidase activity"],["physiology/valine_arylamidase_activity.html","valine arylamidase activity"]],"b":[["NCBITaxon%3A2498453","Geminicoccus harenae"]]},{"id":"NCBITaxon:2585141","l":"Flavicella sediminum","na":2,"nb":1,"a":[["environment/nacl_optimum_mid1.html","NaCl optimum mid1"],["morphology/cell_length_very_small.html","cell length very small"]],"b":[["NCBITaxon%3A2585141","Flavicella sediminum"]]},{"id":"NCBITaxon:272630","l":"Methylorubrum extorquens AM1","na":1,"nb":2,"a":[["physiology/methylotrophic.html","methylotrophic"]],"b":[["NCBITaxon%3A408","Methylorubrum extorquens"],["NCBITaxon%3A272630","Methylorubrum extorquens AM1"]]},{"id":"NCBITaxon:273121","l":"Wolinella succinogenes DSM 1740","na":1,"nb":2,"a":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]],"b":[["NCBITaxon%3A844","Wolinella succinogenes"],["NCBITaxon%3A273121","Wolinella succinogenes DSM 1740"]]},{"id":"NCBITaxon:2781979","l":"Pontibacterium sinense","na":2,"nb":1,"a":[["environment/temperature_delta_mid1.html","temperature delta mid1"],["environment/temperature_optimum_mid2.html","temperature optimum mid2"]],"b":[["NCBITaxon%3A2781979","Pontibacterium sinense"]]},{"id":"NCBITaxon:292415","l":"Thiobacillus denitrificans ATCC 25259","na":2,"nb":1,"a":[["metabolism/sulfur_oxidation.html","sulfur oxidation"],["physiology/chemoautotrophic.html","chemoautotrophic"]],"b":[["NCBITaxon%3A292415","Thiobacillus denitrificans ATCC 25259"]]},{"id":"NCBITaxon:29282","l":"Haloarcula japonica","na":1,"nb":2,"a":[["morphology/triangular_shaped.html","triangular shaped"]],"b":[["NCBITaxon%3A29282","Haloarcula japonica"],["NCBITaxon%3A1227453","Haloarcula japonica DSM 6131"]]},{"id":"NCBITaxon:29405","l":"Microlunatus phosphovorus","na":1,"nb":2,"a":[["morphology/polyphosphate_granule.html","polyphosphate granule"]],"b":[["NCBITaxon%3A29405","Microlunatus phosphovorus"],["NCBITaxon%3A1032480","Microlunatus phosphovorus NM-1"]]},{"id":"NCBITaxon:2974574","l":"Helicobacter zhangjianzhongii","na":2,"nb":1,"a":[["physiology/arginine_arylamidase_activity.html","arginine arylamidase activity"],["physiology/gamma_glutamyltransferase_activity.html","gamma-glutamyltransferase activity"]],"b":[["NCBITaxon%3A2974574","Helicobacter zhangjianzhongii"]]},{"id":"NCBITaxon:3037259","l":"Flexibacterium corallicola","na":2,"nb":1,"a":[["physiology/alpha_glucosidase_activity.html","alpha-glucosidase activity"],["physiology/trypsin_activity.html","trypsin activity"]],"b":[["NCBITaxon%3A3037259","Flexibacterium corallicola"]]},{"id":"NCBITaxon:3080537","l":"Rubellicoccus peritrichatus","na":2,"nb":1,"a":[["environment/ph_optimum_mid2.html","pH optimum mid2"],["environment/temperature_optimum_mid1.html","temperature optimum mid1"]],"b":[["NCBITaxon%3A3080537","Rubellicoccus peritrichatus"]]},{"id":"NCBITaxon:324679","l":"Spirochaeta dissipatitropha","na":2,"nb":1,"a":[["morphology/cell_length_large.html","cell length large"],["morphology/cell_width_very_small.html","cell width very small"]],"b":[["NCBITaxon%3A324679","Spirochaeta dissipatitropha"]]},{"id":"NCBITaxon:33952","l":"Acetobacterium woodii","na":1,"nb":2,"a":[["metabolism/homoacetogenesis.html","Homoacetogenesis"]],"b":[["NCBITaxon%3A33952","Acetobacterium woodii"],["NCBITaxon%3A931626","Acetobacterium woodii DSM 1030"]]},{"id":"NCBITaxon:340184","l":"Escherichia coli B7A","na":2,"nb":1,"a":[["genomics/dnd_system.html","Dnd system"],["genomics/phosphorothioate_defense_system.html","phosphorothioate defense system"]],"b":[["NCBITaxon%3A340184","Escherichia coli B7A"]]},{"id":"NCBITaxon:3447298","l":"Microbaculum mangrovi","na":2,"nb":1,"a":[["environment/ph_delta_mid2.html","pH delta mid2"],["environment/ph_optimum.html","pH optimum"]],"b":[["NCBITaxon%3A3447298","Microbaculum mangrovi"]]},{"id":"NCBITaxon:357794","l":"Psychromonas ingrahamii","na":1,"nb":2,"a":[["environment/temperature_range_very_low.html","temperature range very low"]],"b":[["NCBITaxon%3A357794","Psychromonas ingrahamii"],["NCBITaxon%3A357804","Psychromonas ingrahamii 37"]]},{"id":"NCBITaxon:399549","l":"Metallosphaera sedula DSM 5348","na":1,"nb":2,"a":[["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]],"b":[["NCBITaxon%3A43687","Metallosphaera sedula"],["NCBITaxon%3A399549","Metallosphaera sedula DSM 5348"]]},{"id":"NCBITaxon:43687","l":"Metallosphaera sedula","na":1,"nb":2,"a":[["metabolism/three_hydroxypropionate_four_hydroxybutyrate_cycle.html","3-hydroxypropionate/4-hydroxybutyrate cycle"]],"b":[["NCBITaxon%3A43687","Metallosphaera sedula"],["NCBITaxon%3A399549","Metallosphaera sedula DSM 5348"]]},{"id":"NCBITaxon:44001","l":"Caldicellulosiruptor saccharolyticus","na":1,"nb":2,"a":[["metabolism/xylan_degradation.html","xylan degradation"]],"b":[["NCBITaxon%3A44001","Caldicellulosiruptor saccharolyticus"],["NCBITaxon%3A351627","Caldicellulosiruptor saccharolyticus DSM 8903"]]},{"id":"NCBITaxon:453591","l":"Ignicoccus hospitalis KIN4/I","na":1,"nb":2,"a":[["metabolism/dicarboxylate_four_hydroxybutyrate_cycle.html","dicarboxylate/4-hydroxybutyrate cycle"]],"b":[["NCBITaxon%3A160233","Ignicoccus hospitalis"],["NCBITaxon%3A453591","Ignicoccus hospitalis KIN4/I"]]},{"id":"NCBITaxon:486505","l":"Amycolatopsis flava","na":2,"nb":1,"a":[["environment/nacl_range_high.html","NaCl range high"],["environment/ph_delta_high.html","pH delta high"]],"b":[["NCBITaxon%3A486505","Amycolatopsis flava"]]},{"id":"NCBITaxon:521674","l":"Planctopirus limnophila DSM 3776","na":1,"nb":2,"a":[["morphology/flask_shaped.html","flask shaped"]],"b":[["NCBITaxon%3A120","Planctopirus limnophila"],["NCBITaxon%3A521674","Planctopirus limnophila DSM 3776"]]},{"id":"NCBITaxon:54252","l":"Pyrolobus fumarii","na":1,"nb":2,"a":[["environment/extreme_hyperthermophilic.html","extreme hyperthermophilic"]],"b":[["NCBITaxon%3A54252","Pyrolobus fumarii"],["NCBITaxon%3A694429","Pyrolobus fumarii 1A"]]},{"id":"NCBITaxon:565050","l":"Caulobacter vibrioides NA1000","na":2,"nb":1,"a":[["morphology/crescent_shaped.html","crescent shaped"],["morphology/tailed_shaped.html","tailed shaped"]],"b":[["NCBITaxon%3A565050","Caulobacter vibrioides NA1000"]]},{"id":"NCBITaxon:651","l":"Aeromonas media","na":1,"nb":2,"a":[["morphology/brown_pigmented.html","brown pigmented"]],"b":[["NCBITaxon%3A651","Aeromonas media"],["NCBITaxon%3A1208104","Aeromonas media WS"]]},{"id":"NCBITaxon:65555","l":"Desulfocapsa sulfexigens","na":1,"nb":2,"a":[["metabolism/disproportionation.html","Disproportionation"]],"b":[["NCBITaxon%3A65555","Desulfocapsa sulfexigens"],["NCBITaxon%3A1167006","Desulfocapsa sulfexigens DSM 10523"]]},{"id":"NCBITaxon:69","l":"Lysobacter enzymogenes","na":1,"nb":2,"a":[["genomics/gasdermin_system.html","GasderMIN system"]],"b":[["NCBITaxon%3A69","Lysobacter enzymogenes"],["NCBITaxon%3A262324","Lysobacter gummosus"]]},{"id":"NCBITaxon:844","l":"Wolinella succinogenes","na":1,"nb":2,"a":[["metabolism/dissimilatory_nitrate_reduction_to_ammonium.html","dissimilatory nitrate reduction to ammonium"]],"b":[["NCBITaxon%3A844","Wolinella succinogenes"],["NCBITaxon%3A273121","Wolinella succinogenes DSM 1740"]]},{"id":"NCBITaxon:882","l":"Nitratidesulfovibrio vulgaris str. Hildenborough","na":1,"nb":2,"a":[["metabolism/dissimilatory_sulfate_reduction.html","dissimilatory sulfate reduction"]],"b":[["NCBITaxon%3A881","Nitratidesulfovibrio vulgaris"],["NCBITaxon%3A882","Nitratidesulfovibrio vulgaris str. Hildenborough"]]},{"id":"NCBITaxon:968","l":"Spirillum volutans","na":2,"nb":1,"a":[["morphology/amphitrichous.html","amphitrichous"],["morphology/lophotrichous.html","lophotrichous"]],"b":[["NCBITaxon%3A968","Spirillum volutans"]]},{"id":"NCBITaxon:103690","l":"Nostoc sp. PCC 7120 = FACHB-418","na":1,"nb":1,"a":[["morphology/heterocyst.html","heterocyst"]],"b":[["NCBITaxon%3A103690","Nostoc sp. PCC 7120 = FACHB-418"]]},{"id":"NCBITaxon:1067","l":"Rhodocyclus purpureus","na":1,"nb":1,"a":[["morphology/ring_shaped.html","ring shaped"]],"b":[["NCBITaxon%3A1067","Rhodocyclus purpureus"]]},{"id":"NCBITaxon:1156985","l":"Epibacterium ulvae","na":1,"nb":1,"a":[["other/epibiont_phenotype.html","epibiont phenotype"]],"b":[["NCBITaxon%3A1156985","Epibacterium ulvae"]]},{"id":"NCBITaxon:1222002","l":"Flavobacterium panaciterrae","na":1,"nb":1,"a":[["physiology/beta_glucosidase_activity.html","beta-glucosidase activity"]],"b":[["NCBITaxon%3A1222002","Flavobacterium panaciterrae"]]},{"id":"NCBITaxon:1267","l":"Sarcina ventriculi","na":1,"nb":1,"a":[["morphology/sarcina_arrangement.html","sarcina arrangement"]],"b":[["NCBITaxon%3A1267","Sarcina ventriculi"]]},{"id":"NCBITaxon:133804","l":"uncultured marine gamma proteobacterium EBAC31A08","na":1,"nb":1,"a":[["metabolism/proteorhodopsin_phototrophy.html","proteorhodopsin phototrophy"]],"b":[["NCBITaxon%3A133804","uncultured marine gamma proteobacterium EBAC31A08"]]},{"id":"NCBITaxon:1392998","l":"Candidatus Methanoperedens nitratireducens","na":1,"nb":1,"a":[["metabolism/anaerobic_oxidation_of_methane.html","anaerobic oxidation of methane"]],"b":[["NCBITaxon%3A1392998","Candidatus Methanoperedens nitratireducens"]]},{"id":"NCBITaxon:1463663","l":"Bacillus aequororis","na":1,"nb":1,"a":[["environment/ph_optimum_high.html","pH optimum high"]],"b":[["NCBITaxon%3A1463663","Bacillus aequororis"]]},{"id":"NCBITaxon:1473598","l":"Paludibaculum fermentans","na":1,"nb":1,"a":[["environment/facultatively_acidophilic.html","facultatively acidophilic"]],"b":[["NCBITaxon%3A1473598","Paludibaculum fermentans"]]},{"id":"NCBITaxon:1656892","l":"Nakamurella aerolata","na":1,"nb":1,"a":[["environment/temperature_range_mid1.html","temperature range mid1"]],"b":[["NCBITaxon%3A1656892","Nakamurella aerolata"]]},{"id":"NCBITaxon:167879","l":"Colwellia psychrerythraea 34H","na":1,"nb":1,"a":[["environment/psychrophilic.html","psychrophilic"]],"b":[["NCBITaxon%3A167879","Colwellia psychrerythraea 34H"]]},{"id":"NCBITaxon:1715645","l":"Paracoccus mangrovi","na":1,"nb":1,"a":[["environment/ph_delta_low.html","pH delta low"]],"b":[["NCBITaxon%3A1715645","Paracoccus mangrovi"]]},{"id":"NCBITaxon:1715989","l":"Candidatus Nitrospira inopinata","na":1,"nb":1,"a":[["metabolism/complete_ammonia_oxidation.html","complete ammonia oxidation"]],"b":[["NCBITaxon%3A1715989","Candidatus Nitrospira inopinata"]]},{"id":"NCBITaxon:1847728","l":"Companilactobacillus allii","na":1,"nb":1,"a":[["physiology/leucine_arylamidase_activity.html","leucine arylamidase activity"]],"b":[["NCBITaxon%3A1847728","Companilactobacillus allii"]]},{"id":"NCBITaxon:1880678","l":"Pseudomonas sivasensis","na":1,"nb":1,"a":[["environment/temperature_optimum_low.html","temperature optimum low"]],"b":[["NCBITaxon%3A1880678","Pseudomonas sivasensis"]]},{"id":"NCBITaxon:1979153","l":"Synechococcus sp. YX04-3","na":1,"nb":1,"a":[["environment/stenohaline.html","stenohaline"]],"b":[["NCBITaxon%3A1979153","Synechococcus sp. YX04-3"]]},{"id":"NCBITaxon:2005002","l":"Candidatus Electronema aureum","na":1,"nb":1,"a":[["metabolism/cable_bacteria_metabolism.html","Cable bacteria metabolism"]],"b":[["NCBITaxon%3A2005002","Candidatus Electronema aureum"]]},{"id":"NCBITaxon:2026187","l":"Bacillus pacificus","na":1,"nb":1,"a":[["physiology/dnase_activity.html","DNase activity"]],"b":[["NCBITaxon%3A2026187","Bacillus pacificus"]]},{"id":"NCBITaxon:2086571","l":"Solimonas fluminis","na":1,"nb":1,"a":[["environment/ph_range_mid2.html","pH range mid2"]],"b":[["NCBITaxon%3A2086571","Solimonas fluminis"]]},{"id":"NCBITaxon:2283","l":"Acidianus ambivalens","na":1,"nb":1,"a":[["metabolism/disproportionation.html","Disproportionation"]],"b":[["NCBITaxon%3A2283","Acidianus ambivalens"]]},{"id":"NCBITaxon:2303410","l":"Simulacricoccus ruber","na":1,"nb":1,"a":[["environment/microaerotolerant.html","microaerotolerant"]],"b":[["NCBITaxon%3A2303410","Simulacricoccus ruber"]]},{"id":"NCBITaxon:2306023","l":"Gemmobacter lutimaris","na":1,"nb":1,"a":[["environment/ph_delta_mid3.html","pH delta mid3"]],"b":[["NCBITaxon%3A2306023","Gemmobacter lutimaris"]]},{"id":"NCBITaxon:237727","l":"Erythrobacter sp. NAP1","na":1,"nb":1,"a":[["physiology/aerobic_anoxygenic_phototrophy.html","aerobic anoxygenic phototrophy"]],"b":[["NCBITaxon%3A237727","Erythrobacter sp. NAP1"]]},{"id":"NCBITaxon:240292","l":"Trichormus variabilis ATCC 29413","na":1,"nb":1,"a":[["morphology/akinete.html","akinete"]],"b":[["NCBITaxon%3A240292","Trichormus variabilis ATCC 29413"]]},{"id":"NCBITaxon:243233","l":"Methylococcus capsulatus str. Bath","na":1,"nb":1,"a":[["physiology/methanotrophic.html","methanotrophic"]],"b":[["NCBITaxon%3A243233","Methylococcus capsulatus str. Bath"]]},{"id":"NCBITaxon:246197","l":"Myxococcus xanthus DK 1622","na":1,"nb":1,"a":[["morphology/gliding.html","gliding"]],"b":[["NCBITaxon%3A246197","Myxococcus xanthus DK 1622"]]},{"id":"NCBITaxon:2547392","l":"Seongchinamella unica","na":1,"nb":1,"a":[["morphology/cream_pigmented.html","cream pigmented"]],"b":[["NCBITaxon%3A2547392","Seongchinamella unica"]]},{"id":"NCBITaxon:258594","l":"Rhodopseudomonas palustris CGA009","na":1,"nb":1,"a":[["physiology/photoorganoheterotrophic.html","photoorganoheterotrophic"]],"b":[["NCBITaxon%3A258594","Rhodopseudomonas palustris CGA009"]]},{"id":"NCBITaxon:264203","l":"Zymomonas mobilis subsp. mobilis ZM4 = ATCC 31821","na":1,"nb":1,"a":[["metabolism/ethanol_fermentation.html","ethanol fermentation"]],"b":[["NCBITaxon%3A264203","Zymomonas mobilis subsp. mobilis ZM4 = ATCC 31821"]]},{"id":"NCBITaxon:266834","l":"Sinorhizobium meliloti 1021","na":1,"nb":1,"a":[["ecology/nitrogen_fixing_symbiosis.html","nitrogen-fixing symbiosis"]],"b":[["NCBITaxon%3A266834","Sinorhizobium meliloti 1021"]]},{"id":"NCBITaxon:272623","l":"Lactococcus lactis subsp. lactis Il1403","na":1,"nb":1,"a":[["metabolism/lactic_acid_fermentation.html","lactic acid fermentation"]],"b":[["NCBITaxon%3A272623","Lactococcus lactis subsp. lactis Il1403"]]},{"id":"NCBITaxon:2822231","l":"Phanerodontia chrysosporium","na":1,"nb":1,"a":[["metabolism/manganese_oxidation.html","manganese oxidation"]],"b":[["NCBITaxon%3A2822231","Phanerodontia chrysosporium"]]},{"id":"NCBITaxon:2995321","l":"Spongorhabdus nitratireducens","na":1,"nb":1,"a":[["environment/nacl_range_mid1.html","NaCl range mid1"]],"b":[["NCBITaxon%3A2995321","Spongorhabdus nitratireducens"]]},{"id":"NCBITaxon:3073604","l":"Ruixingdingia sedimenti","na":1,"nb":1,"a":[["morphology/cell_width_medium.html","cell width medium"]],"b":[["NCBITaxon%3A3073604","Ruixingdingia sedimenti"]]},{"id":"NCBITaxon:313590","l":"Dokdonia sp. MED134","na":1,"nb":1,"a":[["metabolism/proteorhodopsin_phototrophy.html","proteorhodopsin phototrophy"]],"b":[["NCBITaxon%3A313590","Dokdonia sp. MED134"]]},{"id":"NCBITaxon:319224","l":"Shewanella putrefaciens CN-32","na":1,"nb":1,"a":[["morphology/flagellar_arrangement.html","flagellar arrangement"]],"b":[["NCBITaxon%3A319224","Shewanella putrefaciens CN-32"]]},{"id":"NCBITaxon:3234132","l":"Aestuariibius violaceus","na":1,"nb":1,"a":[["environment/temperature_range_low.html","temperature range low"]],"b":[["NCBITaxon%3A3234132","Aestuariibius violaceus"]]},{"id":"NCBITaxon:335541","l":"Syntrophomonas wolfei subsp. wolfei str. Goettingen G311","na":1,"nb":1,"a":[["metabolism/syntrophy.html","Syntrophy"]],"b":[["NCBITaxon%3A335541","Syntrophomonas wolfei subsp. wolfei str. Goettingen G311"]]},{"id":"NCBITaxon:36080","l":"Mucor circinelloides","na":1,"nb":1,"a":[["environment/temperature_optimum_mid3.html","temperature optimum mid3"]],"b":[["NCBITaxon%3A36080","Mucor circinelloides"]]},{"id":"NCBITaxon:36863","l":"Ideonella dechloratans","na":1,"nb":1,"a":[["metabolism/chlorate_respiration.html","chlorate respiration"]],"b":[["NCBITaxon%3A36863","Ideonella dechloratans"]]},{"id":"NCBITaxon:395960","l":"Rhodopseudomonas palustris TIE-1","na":1,"nb":1,"a":[["metabolism/photoferrotrophy.html","photoferrotrophy"]],"b":[["NCBITaxon%3A395960","Rhodopseudomonas palustris TIE-1"]]},{"id":"NCBITaxon:412955","l":"Pseudomonas sp. SCT","na":1,"nb":1,"a":[["metabolism/iodate_respiration.html","iodate respiration"]],"b":[["NCBITaxon%3A412955","Pseudomonas sp. SCT"]]},{"id":"NCBITaxon:449447","l":"Microcystis aeruginosa NIES-843","na":1,"nb":1,"a":[["morphology/gas_vesicle.html","gas vesicle"]],"b":[["NCBITaxon%3A449447","Microcystis aeruginosa NIES-843"]]},{"id":"NCBITaxon:498216","l":"Lacticaseibacillus casei str. Zhang","na":1,"nb":1,"a":[["genomics/brex_system.html","BREX system"]],"b":[["NCBITaxon%3A498216","Lacticaseibacillus casei str. Zhang"]]},{"id":"NCBITaxon:568708","l":"Salmonella enterica subsp. enterica serovar Typhimurium str. D23580","na":1,"nb":1,"a":[["genomics/bsta_system.html","BstA system"]],"b":[["NCBITaxon%3A568708","Salmonella enterica subsp. enterica serovar Typhimurium str. D23580"]]},{"id":"NCBITaxon:71421","l":"Haemophilus influenzae Rd KW20","na":1,"nb":1,"a":[["genomics/restriction_modification_system.html","restriction-modification system"]],"b":[["NCBITaxon%3A71421","Haemophilus influenzae Rd KW20"]]},{"id":"NCBITaxon:718002","l":"Peribacillus endoradicis","na":1,"nb":1,"a":[["environment/nacl_delta_mid2.html","NaCl delta mid2"]],"b":[["NCBITaxon%3A718002","Peribacillus endoradicis"]]},{"id":"NCBITaxon:75750","l":"Aspergillus sydowii","na":1,"nb":1,"a":[["environment/nacl_delta_high.html","NaCl delta high"]],"b":[["NCBITaxon%3A75750","Aspergillus sydowii"]]},{"id":"NCBITaxon:766760","l":"Bacillus paralicheniformis ATCC 9945a","na":1,"nb":1,"a":[["genomics/disarm_system.html","DISARM system"]],"b":[["NCBITaxon%3A766760","Bacillus paralicheniformis ATCC 9945a"]]},{"id":"NCBITaxon:89","l":"Leptothrix discophora","na":1,"nb":1,"a":[["metabolism/manganese_oxidation.html","manganese oxidation"]],"b":[["NCBITaxon%3A89","Leptothrix discophora"]]},{"id":"NCBITaxon:90373","l":"Thiomargarita namibiensis","na":1,"nb":1,"a":[["morphology/sulfur_globule.html","sulfur globule"]],"b":[["NCBITaxon%3A90373","Thiomargarita namibiensis"]]},{"id":"NCBITaxon:913088","l":"Escherichia coli TW11681","na":1,"nb":1,"a":[["genomics/cbass_system.html","CBASS system"]],"b":[["NCBITaxon%3A913088","Escherichia coli TW11681"]]},{"id":"NCBITaxon:94122","l":"Shewanella sp. ANA-3","na":1,"nb":1,"a":[["metabolism/arsenate_respiration.html","arsenate respiration"]],"b":[["NCBITaxon%3A94122","Shewanella sp. ANA-3"]]},{"id":"NCBITaxon:99807","l":"Corynebacterium auriscanis","na":1,"nb":1,"a":[["physiology/pyrrolidonyl_arylamidase_activity.html","pyrrolidonyl arylamidase activity"]],"b":[["NCBITaxon%3A99807","Corynebacterium auriscanis"]]}]} \ No newline at end of file diff --git a/mechs.md b/mechs.md index 02737a0..7e488c6 100644 --- a/mechs.md +++ b/mechs.md @@ -129,6 +129,8 @@ Each X-Mech is an **autonomous knowledge factory** that curates, validates, and .fleet-stage .hub-sub { font-size: 9px; fill: var(--muted); } .fleet-stage .node-label { font-size: 13px; font-weight: 700; } .fleet-stage .node-sub { font-size: 10.5px; fill: var(--muted); font-variant-numeric: tabular-nums; } + /* A halo in the card colour keeps labels readable where cross-reference arcs pass behind them. */ + .fleet-stage .node-label, .fleet-stage .node-sub { paint-order: stroke; stroke: var(--card); stroke-width: 4px; stroke-linejoin: round; } .fleet-stage .node { cursor: pointer; } .fleet-stage a.node-link { outline: none; } .fleet-stage a.node-link:hover .node-label, .fleet-stage a.node-link:focus-visible .node-label { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; } @@ -205,6 +207,7 @@ Each X-Mech is an **autonomous knowledge factory** that curates, validates, and .fleet-legend { display: flex; flex-wrap: wrap; gap: .4rem 1.1rem; padding: .55rem 1rem; font-size: .78rem; color: var(--muted); border-top: 1px solid var(--line); } .fleet-legend i { display: inline-block; width: 26px; height: 0; margin-right: .4rem; vertical-align: middle; border-top: 3px solid var(--fleet-edge); } .fleet-legend i.x { border-top: 2px dashed var(--accent); } + .fleet-legend i.xw { border-top: 2px dotted var(--accent); opacity: .8; } .fleet-legend i.h { border-top: 2px solid var(--accent-2); } .fleet-legend i.g { border-top: 1.5px dashed var(--muted); } @@ -378,7 +381,7 @@ Each X-Mech is an **autonomous knowledge factory** that curates, validates, and
-

This vocabulary census covers all ten Mechs. Counts are prefix occurrences in the canonical record directories (merged recipes for CultureMech, communities and isolate records for CommunityMech, habitat records for HabitatMech, species-level taxon records for TaxonMech, each carrying its lineage, so a higher taxon is counted once per record under it) as of 24 September 2026. Columns are ordered by how many Mechs ground anything in each vocabulary, then by the total records citing it across the fleet; PMID and DOI sit at the right because every Mech cites literature. ChEBI binds the chemistry arm (media, ingredients, antibiotics, proteins); NCBITaxon and ENVO bind the organism arm (habitat, community, traits); GO and METPO bridge phenotype, structure and protein.

+

This vocabulary census covers all ten Mechs. Counts are prefix occurrences in the canonical record directories (merged recipes for CultureMech, communities and isolate records for CommunityMech, habitat records for HabitatMech, species-level and infraspecific taxon records for TaxonMech, each carrying its lineage, so a higher taxon is counted once per record under it) as of 24 September 2026. Columns are ordered by how many Mechs ground anything in each vocabulary, then by the total records citing it across the fleet; PMID and DOI sit at the right because every Mech cites literature. ChEBI binds the chemistry arm (media, ingredients, antibiotics, proteins); NCBITaxon and ENVO bind the organism arm (habitat, community, taxa, traits); GO and METPO bridge phenotype, structure and protein.

@@ -439,7 +442,8 @@ Each X-Mech is an **autonomous knowledge factory** that curates, validates, and
shared identifiers, one chord per vocabulary (width = how many): ChEBINCBITaxonGOMETPOENVOAROUniProtcitationsother - direct cross-reference (arrow = who consumes or is deferred to) + direct cross-reference in record data + in a schema or curation practice (arrow = who consumes or is deferred to) export to / input from kg-microbe (dotted = namespace only) fleet manifest membership
@@ -451,7 +455,7 @@ Each X-Mech is an **autonomous knowledge factory** that curates, validates, and "use strict"; if (document.readyState === "loading") { document.addEventListener("DOMContentLoaded", init); } else { init(); } function init() { - var DATA = {"order":["HabitatMech","CommunityMech","TraitMech","CellStructureMech","ProteinTraitsMech","NaturalProductMech","AntibioticMech","MediaIngredientMech","CultureMech","TaxonMech"],"voc":["NCBITaxon","CHEBI","GO","UniProt","ENVO","UBERON","InterPro","PDB","CAS","METPO","KEGG","FOODON","PATO","GTDB","Pfam","RHEA","ARO","BTO","MIBiG","NPAtlas","PMID","DOI"],"heat":{"HabitatMech":{"CHEBI":24,"NCBITaxon":13227,"GO":7,"ENVO":3368,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":4,"UBERON":1123,"FOODON":198,"BTO":1367,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":516,"DOI":116},"CommunityMech":{"CHEBI":2971,"NCBITaxon":4253,"GO":1537,"ENVO":538,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":10,"FOODON":0,"BTO":0,"GTDB":2037,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":7320,"DOI":1223},"TraitMech":{"CHEBI":673,"NCBITaxon":996,"GO":886,"ENVO":22,"METPO":3617,"ARO":0,"UniProt":399,"InterPro":115,"Pfam":0,"RHEA":0,"PDB":0,"PATO":99,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":621,"DOI":7190},"CellStructureMech":{"CHEBI":65,"NCBITaxon":1438,"GO":11688,"ENVO":0,"METPO":14,"ARO":0,"UniProt":337,"InterPro":206,"Pfam":22,"RHEA":0,"PDB":277,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":698,"DOI":6636},"ProteinTraitsMech":{"CHEBI":374424,"NCBITaxon":358320,"GO":421586,"ENVO":0,"METPO":244,"ARO":397717,"UniProt":658574,"InterPro":1480044,"Pfam":521966,"RHEA":613456,"PDB":235957,"PATO":124,"UBERON":43,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":245,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":657527,"DOI":193845},"NaturalProductMech":{"CHEBI":1659,"NCBITaxon":13960,"GO":0,"ENVO":0,"METPO":0,"ARO":0,"UniProt":613,"InterPro":0,"Pfam":0,"RHEA":14,"PDB":0,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":10133,"NPAtlas":1756,"PMID":5703,"DOI":8437},"AntibioticMech":{"CHEBI":22104,"NCBITaxon":1085,"GO":3,"ENVO":0,"METPO":0,"ARO":16653,"UniProt":278,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":6,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":1823,"MIBiG":0,"NPAtlas":0,"PMID":1207,"DOI":216},"MediaIngredientMech":{"CHEBI":8220,"NCBITaxon":1,"GO":0,"ENVO":110,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":23,"FOODON":273,"BTO":3,"GTDB":0,"KEGG":61,"CAS":727,"MIBiG":0,"NPAtlas":0,"PMID":29,"DOI":9},"CultureMech":{"CHEBI":160678,"NCBITaxon":63,"GO":0,"ENVO":13,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":138,"FOODON":223,"BTO":0,"GTDB":0,"KEGG":1406,"CAS":1,"MIBiG":0,"NPAtlas":0,"PMID":68,"DOI":76},"TaxonMech":{"CHEBI":0,"NCBITaxon":9250364,"GO":0,"ENVO":0,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":648112,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":20558,"DOI":402247}},"cells":{"HabitatMech--BTO":587,"HabitatMech--CHEBI":11,"HabitatMech--ENVO":1296,"HabitatMech--FOODON":85,"HabitatMech--GO":2,"HabitatMech--NCBITaxon":896,"HabitatMech--PATO":3,"HabitatMech--UBERON":704,"CommunityMech--CHEBI":357,"CommunityMech--ENVO":408,"CommunityMech--GO":394,"CommunityMech--GTDB":367,"CommunityMech--NCBITaxon":422,"CommunityMech--UBERON":10,"TraitMech--CHEBI":183,"TraitMech--ENVO":14,"TraitMech--GO":292,"TraitMech--InterPro":61,"TraitMech--METPO":749,"TraitMech--NCBITaxon":484,"TraitMech--PATO":49,"TraitMech--UniProt":182,"CellStructureMech--CHEBI":24,"CellStructureMech--GO":535,"CellStructureMech--InterPro":33,"CellStructureMech--METPO":5,"CellStructureMech--NCBITaxon":531,"CellStructureMech--PDB":19,"CellStructureMech--Pfam":8,"CellStructureMech--UniProt":65,"ProteinTraitsMech--ARO":7452,"ProteinTraitsMech--CHEBI":30122,"ProteinTraitsMech--GO":110744,"ProteinTraitsMech--InterPro":120090,"ProteinTraitsMech--KEGG":231,"ProteinTraitsMech--METPO":119,"ProteinTraitsMech--NCBITaxon":98697,"ProteinTraitsMech--PATO":81,"ProteinTraitsMech--PDB":51718,"ProteinTraitsMech--Pfam":107455,"ProteinTraitsMech--RHEA":29550,"ProteinTraitsMech--UBERON":43,"ProteinTraitsMech--UniProt":159595,"NaturalProductMech--CHEBI":405,"NaturalProductMech--MIBiG":3115,"NaturalProductMech--NCBITaxon":3115,"NaturalProductMech--NPAtlas":1740,"NaturalProductMech--RHEA":1,"NaturalProductMech--UniProt":102,"AntibioticMech--ARO":568,"AntibioticMech--CAS":1797,"AntibioticMech--CHEBI":2814,"AntibioticMech--GO":3,"AntibioticMech--NCBITaxon":163,"AntibioticMech--PDB":5,"AntibioticMech--UniProt":47,"MediaIngredientMech--BTO":1,"MediaIngredientMech--CAS":287,"MediaIngredientMech--CHEBI":2232,"MediaIngredientMech--ENVO":26,"MediaIngredientMech--FOODON":99,"MediaIngredientMech--KEGG":58,"MediaIngredientMech--NCBITaxon":1,"MediaIngredientMech--UBERON":10,"CultureMech--CAS":1,"CultureMech--CHEBI":6125,"CultureMech--ENVO":12,"CultureMech--FOODON":203,"CultureMech--KEGG":329,"CultureMech--NCBITaxon":30,"CultureMech--UBERON":72,"TaxonMech--GTDB":118801,"TaxonMech--NCBITaxon":625960},"vocab_edges":[{"a":"HabitatMech","b":"CommunityMech","n":313,"by":{"NCBITaxon":265,"ENVO":42,"UBERON":4,"CHEBI":2},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"ENVO:00001998","label":"soil"},{"id":"ENVO:01001001","label":"plant-associated environment"}]},{"a":"HabitatMech","b":"TraitMech","n":122,"by":{"NCBITaxon":115,"ENVO":4,"PATO":2,"CHEBI":1},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"HabitatMech","b":"CellStructureMech","n":41,"by":{"NCBITaxon":41},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1117","label":"Cyanobacteriota"}]},{"a":"HabitatMech","b":"ProteinTraitsMech","n":1250,"by":{"NCBITaxon":1234,"UBERON":12,"CHEBI":2,"GO":2},"ex":[{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1869227","label":"bacterium"}]},{"a":"HabitatMech","b":"NaturalProductMech","n":312,"by":{"NCBITaxon":312},"ex":[{"id":"NCBITaxon:56","label":"Sorangium cellulosum"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1931","label":"Streptomyces sp."}]},{"a":"HabitatMech","b":"AntibioticMech","n":32,"by":{"NCBITaxon":32},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:573","label":"Klebsiella pneumoniae"}]},{"a":"HabitatMech","b":"MediaIngredientMech","n":22,"by":{"ENVO":15,"UBERON":4,"CHEBI":3},"ex":[{"id":"ENVO:00002149","label":"sea water"},{"id":"ENVO:00001998","label":"soil"},{"id":"ENVO:00002263","label":"garden soil"}]},{"a":"HabitatMech","b":"CultureMech","n":25,"by":{"NCBITaxon":13,"ENVO":7,"UBERON":4,"FOODON":1},"ex":[{"id":"UBERON:0000948","label":"heart"},{"id":"UBERON:0000955","label":"brain"},{"id":"UBERON:0000178","label":"blood"}]},{"a":"HabitatMech","b":"TaxonMech","n":6423,"by":{"NCBITaxon":6423},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:562","label":"Escherichia coli"}]},{"a":"CommunityMech","b":"TraitMech","n":157,"by":{"CHEBI":61,"NCBITaxon":61,"GO":35},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:15379","label":"dioxygen"},{"id":"GO:0015977","label":"carbon fixation"}]},{"a":"CommunityMech","b":"CellStructureMech","n":60,"by":{"NCBITaxon":36,"CHEBI":13,"GO":11},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:2157","label":"Archaea"},{"id":"NCBITaxon:562","label":"Escherichia coli"}]},{"a":"CommunityMech","b":"ProteinTraitsMech","n":689,"by":{"CHEBI":276,"NCBITaxon":226,"GO":186,"UBERON":1},"ex":[{"id":"CHEBI:30089","label":"acetate"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"GO:0015979","label":"photosynthesis"}]},{"a":"CommunityMech","b":"NaturalProductMech","n":128,"by":{"NCBITaxon":123,"CHEBI":5},"ex":[{"id":"NCBITaxon:286","label":"Pseudomonas"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:562","label":"Escherichia coli"}]},{"a":"CommunityMech","b":"AntibioticMech","n":63,"by":{"CHEBI":42,"NCBITaxon":21},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"},{"id":"CHEBI:33709","label":"amino acid"}]},{"a":"CommunityMech","b":"MediaIngredientMech","n":240,"by":{"CHEBI":238,"ENVO":2},"ex":[{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:33709","label":"amino acid"},{"id":"CHEBI:3312","label":"calcium dichloride"}]},{"a":"CommunityMech","b":"CultureMech","n":151,"by":{"CHEBI":138,"NCBITaxon":8,"ENVO":5},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:30089","label":"acetate"}]},{"a":"CommunityMech","b":"TaxonMech","n":1167,"by":{"NCBITaxon":784,"GTDB":383},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:286","label":"Pseudomonas"},{"id":"NCBITaxon:1386","label":"Bacillus"}]},{"a":"TraitMech","b":"CellStructureMech","n":114,"by":{"GO":53,"NCBITaxon":40,"CHEBI":7,"UniProt":6,"METPO":5,"InterPro":3},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:83333","label":"Escherichia coli (strain K12)"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"}]},{"a":"TraitMech","b":"ProteinTraitsMech","n":707,"by":{"GO":248,"NCBITaxon":136,"METPO":111,"CHEBI":109,"UniProt":56,"InterPro":47},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"METPO:1000631","label":"trophic type"}]},{"a":"TraitMech","b":"NaturalProductMech","n":57,"by":{"NCBITaxon":53,"CHEBI":4},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"TraitMech","b":"AntibioticMech","n":31,"by":{"NCBITaxon":21,"CHEBI":10},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"TraitMech","b":"MediaIngredientMech","n":59,"by":{"CHEBI":59},"ex":[{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:16526","label":"carbon dioxide"}]},{"a":"TraitMech","b":"CultureMech","n":36,"by":{"CHEBI":26,"NCBITaxon":10},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:17234","label":"glucose"}]},{"a":"TraitMech","b":"TaxonMech","n":274,"by":{"NCBITaxon":274},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:83333","label":"Escherichia coli (strain K12)"},{"id":"NCBITaxon:1358","label":"Lactococcus lactis"}]},{"a":"CellStructureMech","b":"ProteinTraitsMech","n":1058,"by":{"GO":737,"UniProt":155,"NCBITaxon":77,"InterPro":64,"CHEBI":15,"Pfam":10},"ex":[{"id":"GO:0032991","label":"protein-containing complex"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:3055","label":"Chlamydomonas reinhardtii"}]},{"a":"CellStructureMech","b":"NaturalProductMech","n":23,"by":{"NCBITaxon":23},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:9606","label":"Homo sapiens"}]},{"a":"CellStructureMech","b":"AntibioticMech","n":18,"by":{"NCBITaxon":13,"CHEBI":5},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:4932","label":"Saccharomyces cerevisiae"},{"id":"NCBITaxon:90371","label":"Salmonella enterica subsp. enterica serovar Typhimurium"}]},{"a":"CellStructureMech","b":"MediaIngredientMech","n":14,"by":{"CHEBI":14},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:17029","label":"chitin"},{"id":"CHEBI:33403","label":"elemental sulfur"}]},{"a":"CellStructureMech","b":"CultureMech","n":7,"by":{"CHEBI":4,"NCBITaxon":3},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:16261","label":"chitosan"},{"id":"CHEBI:33403","label":"elemental sulfur"}]},{"a":"CellStructureMech","b":"TaxonMech","n":124,"by":{"NCBITaxon":124},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:2759","label":"Eukaryota"},{"id":"NCBITaxon:2157","label":"Archaea"}]},{"a":"ProteinTraitsMech","b":"NaturalProductMech","n":794,"by":{"NCBITaxon":487,"UniProt":156,"CHEBI":148,"RHEA":3},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:100226","label":"Streptomyces coelicolor A3(2)"},{"id":"NCBITaxon:227321","label":"Emericella nidulans (strain FGSC A4 / ATCC 38163 / CBS 112.46 / NRRL 194 / M139)"}]},{"a":"ProteinTraitsMech","b":"AntibioticMech","n":2435,"by":{"ARO":1740,"CHEBI":594,"NCBITaxon":79,"UniProt":20,"GO":2},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:573","label":"Klebsiella pneumoniae"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"}]},{"a":"ProteinTraitsMech","b":"MediaIngredientMech","n":798,"by":{"CHEBI":797,"UBERON":1},"ex":[{"id":"CHEBI:15377","label":"water"},{"id":"CHEBI:15740","label":"formate"},{"id":"CHEBI:33709","label":"amino acid"}]},{"a":"ProteinTraitsMech","b":"CultureMech","n":233,"by":{"CHEBI":221,"NCBITaxon":10,"UBERON":2},"ex":[{"id":"CHEBI:15377","label":"water"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:17754","label":"glycerol"}]},{"a":"ProteinTraitsMech","b":"TaxonMech","n":7444,"by":{"NCBITaxon":7444},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:83334","label":"Escherichia coli O157:H7"},{"id":"NCBITaxon:623","label":"Shigella flexneri"}]},{"a":"NaturalProductMech","b":"AntibioticMech","n":278,"by":{"CHEBI":180,"NCBITaxon":96,"UniProt":2},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"},{"id":"NCBITaxon:330879","label":"Aspergillus fumigatus (strain ATCC MYA-4609 / CBS 101355 / FGSC A1100 / Af293)"}]},{"a":"NaturalProductMech","b":"MediaIngredientMech","n":51,"by":{"CHEBI":51},"ex":[{"id":"CHEBI:15956","label":"biotin"},{"id":"CHEBI:16349","label":"L-citrulline"},{"id":"CHEBI:27592","label":"ectoine"}]},{"a":"NaturalProductMech","b":"CultureMech","n":5,"by":{"CHEBI":3,"NCBITaxon":2},"ex":[{"id":"CHEBI:15956","label":"biotin"},{"id":"CHEBI:16349","label":"L-citrulline"},{"id":"CHEBI:27592","label":"ectoine"}]},{"a":"NaturalProductMech","b":"TaxonMech","n":1708,"by":{"NCBITaxon":1708},"ex":[{"id":"NCBITaxon:1883","label":"Streptomyces"},{"id":"NCBITaxon:1873","label":"Micromonospora"},{"id":"NCBITaxon:286","label":"Pseudomonas"}]},{"a":"AntibioticMech","b":"MediaIngredientMech","n":324,"by":{"CHEBI":324},"ex":[{"id":"CHEBI:33709","label":"amino acid"},{"id":"CHEBI:30746","label":"benzoic acid"},{"id":"CHEBI:17334","label":"penicillin"}]},{"a":"AntibioticMech","b":"CultureMech","n":29,"by":{"CHEBI":29},"ex":[{"id":"CHEBI:17334","label":"penicillin"},{"id":"CHEBI:48923","label":"erythromycin"},{"id":"CHEBI:30746","label":"benzoic acid"}]},{"a":"AntibioticMech","b":"TaxonMech","n":109,"by":{"NCBITaxon":109},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:573","label":"Klebsiella pneumoniae"},{"id":"NCBITaxon:470","label":"Acinetobacter baumannii"}]},{"a":"MediaIngredientMech","b":"CultureMech","n":612,"by":{"CHEBI":545,"KEGG":56,"FOODON":6,"UBERON":3,"CAS":1,"ENVO":1},"ex":[{"id":"FOODON:03315426","label":"yeast extract"},{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:2509","label":"agar"}]},{"a":"CultureMech","b":"TaxonMech","n":54,"by":{"NCBITaxon":54},"ex":[{"id":"NCBITaxon:210","label":"Helicobacter pylori"},{"id":"NCBITaxon:823","label":"Parabacteroides distasonis"},{"id":"NCBITaxon:851","label":"Fusobacterium nucleatum"}]}]}; + var DATA = {"order":["HabitatMech","CommunityMech","TraitMech","CellStructureMech","ProteinTraitsMech","NaturalProductMech","AntibioticMech","MediaIngredientMech","CultureMech","TaxonMech"],"voc":["NCBITaxon","CHEBI","GO","UniProt","ENVO","UBERON","InterPro","PDB","CAS","METPO","KEGG","FOODON","PATO","GTDB","Pfam","RHEA","ARO","BTO","MIBiG","NPAtlas","PMID","DOI"],"heat":{"HabitatMech":{"CHEBI":24,"NCBITaxon":13227,"GO":7,"ENVO":3368,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":4,"UBERON":1123,"FOODON":198,"BTO":1367,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":516,"DOI":116},"CommunityMech":{"CHEBI":2971,"NCBITaxon":4253,"GO":1537,"ENVO":538,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":10,"FOODON":0,"BTO":0,"GTDB":2037,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":7320,"DOI":1223},"TraitMech":{"CHEBI":673,"NCBITaxon":996,"GO":886,"ENVO":22,"METPO":3617,"ARO":0,"UniProt":399,"InterPro":115,"Pfam":0,"RHEA":0,"PDB":0,"PATO":99,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":621,"DOI":7190},"CellStructureMech":{"CHEBI":65,"NCBITaxon":1438,"GO":11688,"ENVO":0,"METPO":14,"ARO":0,"UniProt":337,"InterPro":206,"Pfam":22,"RHEA":0,"PDB":277,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":698,"DOI":6636},"ProteinTraitsMech":{"CHEBI":374424,"NCBITaxon":358320,"GO":421586,"ENVO":0,"METPO":244,"ARO":397717,"UniProt":658574,"InterPro":1480044,"Pfam":521966,"RHEA":613456,"PDB":235957,"PATO":124,"UBERON":43,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":245,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":657527,"DOI":193845},"NaturalProductMech":{"CHEBI":1659,"NCBITaxon":13960,"GO":0,"ENVO":0,"METPO":0,"ARO":0,"UniProt":613,"InterPro":0,"Pfam":0,"RHEA":14,"PDB":0,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":0,"MIBiG":10133,"NPAtlas":1756,"PMID":5703,"DOI":8437},"AntibioticMech":{"CHEBI":22104,"NCBITaxon":1085,"GO":3,"ENVO":0,"METPO":0,"ARO":16653,"UniProt":278,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":6,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":0,"KEGG":0,"CAS":1823,"MIBiG":0,"NPAtlas":0,"PMID":1207,"DOI":216},"MediaIngredientMech":{"CHEBI":8220,"NCBITaxon":1,"GO":0,"ENVO":110,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":23,"FOODON":273,"BTO":3,"GTDB":0,"KEGG":61,"CAS":727,"MIBiG":0,"NPAtlas":0,"PMID":29,"DOI":9},"CultureMech":{"CHEBI":160678,"NCBITaxon":63,"GO":0,"ENVO":13,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":138,"FOODON":223,"BTO":0,"GTDB":0,"KEGG":1406,"CAS":1,"MIBiG":0,"NPAtlas":0,"PMID":68,"DOI":76},"TaxonMech":{"CHEBI":0,"NCBITaxon":9250364,"GO":0,"ENVO":0,"METPO":0,"ARO":0,"UniProt":0,"InterPro":0,"Pfam":0,"RHEA":0,"PDB":0,"PATO":0,"UBERON":0,"FOODON":0,"BTO":0,"GTDB":648112,"KEGG":0,"CAS":0,"MIBiG":0,"NPAtlas":0,"PMID":20558,"DOI":402247}},"cells":{"HabitatMech--BTO":587,"HabitatMech--CHEBI":11,"HabitatMech--ENVO":1296,"HabitatMech--FOODON":85,"HabitatMech--GO":2,"HabitatMech--NCBITaxon":896,"HabitatMech--PATO":3,"HabitatMech--UBERON":704,"CommunityMech--CHEBI":357,"CommunityMech--ENVO":408,"CommunityMech--GO":394,"CommunityMech--GTDB":367,"CommunityMech--NCBITaxon":422,"CommunityMech--UBERON":10,"TraitMech--CHEBI":183,"TraitMech--ENVO":14,"TraitMech--GO":292,"TraitMech--InterPro":61,"TraitMech--METPO":749,"TraitMech--NCBITaxon":484,"TraitMech--PATO":49,"TraitMech--UniProt":182,"CellStructureMech--CHEBI":24,"CellStructureMech--GO":535,"CellStructureMech--InterPro":33,"CellStructureMech--METPO":5,"CellStructureMech--NCBITaxon":531,"CellStructureMech--PDB":19,"CellStructureMech--Pfam":8,"CellStructureMech--UniProt":65,"ProteinTraitsMech--ARO":7452,"ProteinTraitsMech--CHEBI":30122,"ProteinTraitsMech--GO":110744,"ProteinTraitsMech--InterPro":120090,"ProteinTraitsMech--KEGG":231,"ProteinTraitsMech--METPO":119,"ProteinTraitsMech--NCBITaxon":98697,"ProteinTraitsMech--PATO":81,"ProteinTraitsMech--PDB":51718,"ProteinTraitsMech--Pfam":107455,"ProteinTraitsMech--RHEA":29550,"ProteinTraitsMech--UBERON":43,"ProteinTraitsMech--UniProt":159595,"NaturalProductMech--CHEBI":405,"NaturalProductMech--MIBiG":3115,"NaturalProductMech--NCBITaxon":3115,"NaturalProductMech--NPAtlas":1740,"NaturalProductMech--RHEA":1,"NaturalProductMech--UniProt":102,"AntibioticMech--ARO":568,"AntibioticMech--CAS":1797,"AntibioticMech--CHEBI":2814,"AntibioticMech--GO":3,"AntibioticMech--NCBITaxon":163,"AntibioticMech--PDB":5,"AntibioticMech--UniProt":47,"MediaIngredientMech--BTO":1,"MediaIngredientMech--CAS":287,"MediaIngredientMech--CHEBI":2232,"MediaIngredientMech--ENVO":26,"MediaIngredientMech--FOODON":99,"MediaIngredientMech--KEGG":58,"MediaIngredientMech--NCBITaxon":1,"MediaIngredientMech--UBERON":10,"CultureMech--CAS":1,"CultureMech--CHEBI":6125,"CultureMech--ENVO":12,"CultureMech--FOODON":203,"CultureMech--KEGG":329,"CultureMech--NCBITaxon":30,"CultureMech--UBERON":72,"TaxonMech--GTDB":118801,"TaxonMech--NCBITaxon":625960},"vocab_edges":[{"a":"HabitatMech","b":"CommunityMech","n":313,"by":{"NCBITaxon":265,"ENVO":42,"UBERON":4,"CHEBI":2},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"ENVO:00001998","label":"soil"},{"id":"ENVO:01001001","label":"plant-associated environment"}]},{"a":"HabitatMech","b":"TraitMech","n":122,"by":{"NCBITaxon":115,"ENVO":4,"PATO":2,"CHEBI":1},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"HabitatMech","b":"CellStructureMech","n":41,"by":{"NCBITaxon":41},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1117","label":"Cyanobacteriota"}]},{"a":"HabitatMech","b":"ProteinTraitsMech","n":1250,"by":{"NCBITaxon":1234,"UBERON":12,"CHEBI":2,"GO":2},"ex":[{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1869227","label":"bacterium"}]},{"a":"HabitatMech","b":"NaturalProductMech","n":312,"by":{"NCBITaxon":312},"ex":[{"id":"NCBITaxon:56","label":"Sorangium cellulosum"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1931","label":"Streptomyces sp."}]},{"a":"HabitatMech","b":"AntibioticMech","n":32,"by":{"NCBITaxon":32},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:573","label":"Klebsiella pneumoniae"}]},{"a":"HabitatMech","b":"MediaIngredientMech","n":22,"by":{"ENVO":15,"UBERON":4,"CHEBI":3},"ex":[{"id":"ENVO:00002149","label":"sea water"},{"id":"ENVO:00001998","label":"soil"},{"id":"ENVO:00002263","label":"garden soil"}]},{"a":"HabitatMech","b":"CultureMech","n":25,"by":{"NCBITaxon":13,"ENVO":7,"UBERON":4,"FOODON":1},"ex":[{"id":"UBERON:0000948","label":"heart"},{"id":"UBERON:0000955","label":"brain"},{"id":"UBERON:0000178","label":"blood"}]},{"a":"HabitatMech","b":"TaxonMech","n":6423,"by":{"NCBITaxon":6423},"ex":[{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"CommunityMech","b":"TraitMech","n":157,"by":{"CHEBI":61,"NCBITaxon":61,"GO":35},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:15379","label":"dioxygen"},{"id":"GO:0015977","label":"carbon fixation"}]},{"a":"CommunityMech","b":"CellStructureMech","n":60,"by":{"NCBITaxon":36,"CHEBI":13,"GO":11},"ex":[{"id":"NCBITaxon:2","label":"Bacteria"},{"id":"NCBITaxon:2157","label":"Archaea"},{"id":"NCBITaxon:562","label":"Escherichia coli"}]},{"a":"CommunityMech","b":"ProteinTraitsMech","n":689,"by":{"CHEBI":276,"NCBITaxon":226,"GO":186,"UBERON":1},"ex":[{"id":"CHEBI:30089","label":"acetate"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"GO:0015979","label":"photosynthesis"}]},{"a":"CommunityMech","b":"NaturalProductMech","n":128,"by":{"NCBITaxon":123,"CHEBI":5},"ex":[{"id":"NCBITaxon:286","label":"Pseudomonas"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:562","label":"Escherichia coli"}]},{"a":"CommunityMech","b":"AntibioticMech","n":63,"by":{"CHEBI":42,"NCBITaxon":21},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"},{"id":"CHEBI:33709","label":"amino acid"}]},{"a":"CommunityMech","b":"MediaIngredientMech","n":240,"by":{"CHEBI":238,"ENVO":2},"ex":[{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:33709","label":"amino acid"},{"id":"CHEBI:3312","label":"calcium dichloride"}]},{"a":"CommunityMech","b":"CultureMech","n":151,"by":{"CHEBI":138,"NCBITaxon":8,"ENVO":5},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:30089","label":"acetate"}]},{"a":"CommunityMech","b":"TaxonMech","n":1167,"by":{"NCBITaxon":784,"GTDB":383},"ex":[{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"TraitMech","b":"CellStructureMech","n":114,"by":{"GO":53,"NCBITaxon":40,"CHEBI":7,"UniProt":6,"METPO":5,"InterPro":3},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:83333","label":"Escherichia coli K-12"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"}]},{"a":"TraitMech","b":"ProteinTraitsMech","n":707,"by":{"GO":248,"NCBITaxon":136,"METPO":111,"CHEBI":109,"UniProt":56,"InterPro":47},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"METPO:1000631","label":"trophic type"}]},{"a":"TraitMech","b":"NaturalProductMech","n":57,"by":{"NCBITaxon":53,"CHEBI":4},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"TraitMech","b":"AntibioticMech","n":31,"by":{"NCBITaxon":21,"CHEBI":10},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"}]},{"a":"TraitMech","b":"MediaIngredientMech","n":59,"by":{"CHEBI":59},"ex":[{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:16526","label":"carbon dioxide"}]},{"a":"TraitMech","b":"CultureMech","n":36,"by":{"CHEBI":26,"NCBITaxon":10},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:18276","label":"dihydrogen"},{"id":"CHEBI:17234","label":"glucose"}]},{"a":"TraitMech","b":"TaxonMech","n":274,"by":{"NCBITaxon":274},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:83333","label":"Escherichia coli K-12"},{"id":"NCBITaxon:1358","label":"Lactococcus lactis"}]},{"a":"CellStructureMech","b":"ProteinTraitsMech","n":1058,"by":{"GO":737,"UniProt":155,"NCBITaxon":77,"InterPro":64,"CHEBI":15,"Pfam":10},"ex":[{"id":"GO:0032991","label":"protein-containing complex"},{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:3055","label":"Chlamydomonas reinhardtii"}]},{"a":"CellStructureMech","b":"NaturalProductMech","n":23,"by":{"NCBITaxon":23},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:1423","label":"Bacillus subtilis"},{"id":"NCBITaxon:9606","label":"Homo sapiens"}]},{"a":"CellStructureMech","b":"AntibioticMech","n":18,"by":{"NCBITaxon":13,"CHEBI":5},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:4932","label":"Saccharomyces cerevisiae"},{"id":"NCBITaxon:90371","label":"Salmonella enterica subsp. enterica serovar Typhimurium"}]},{"a":"CellStructureMech","b":"MediaIngredientMech","n":14,"by":{"CHEBI":14},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:17029","label":"chitin"},{"id":"CHEBI:33403","label":"elemental sulfur"}]},{"a":"CellStructureMech","b":"CultureMech","n":7,"by":{"CHEBI":4,"NCBITaxon":3},"ex":[{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:16261","label":"chitosan"},{"id":"CHEBI:33403","label":"elemental sulfur"}]},{"a":"CellStructureMech","b":"TaxonMech","n":124,"by":{"NCBITaxon":124},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:90371","label":"Salmonella enterica subsp. enterica serovar Typhimurium"},{"id":"NCBITaxon:83333","label":"Escherichia coli K-12"}]},{"a":"ProteinTraitsMech","b":"NaturalProductMech","n":794,"by":{"NCBITaxon":487,"UniProt":156,"CHEBI":148,"RHEA":3},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:100226","label":"Streptomyces coelicolor A3(2)"},{"id":"NCBITaxon:227321","label":"Emericella nidulans (strain FGSC A4 / ATCC 38163 / CBS 112.46 / NRRL 194 / M139)"}]},{"a":"ProteinTraitsMech","b":"AntibioticMech","n":2435,"by":{"ARO":1740,"CHEBI":594,"NCBITaxon":79,"UniProt":20,"GO":2},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:573","label":"Klebsiella pneumoniae"},{"id":"NCBITaxon:1280","label":"Staphylococcus aureus"}]},{"a":"ProteinTraitsMech","b":"MediaIngredientMech","n":798,"by":{"CHEBI":797,"UBERON":1},"ex":[{"id":"CHEBI:15377","label":"water"},{"id":"CHEBI:15740","label":"formate"},{"id":"CHEBI:33709","label":"amino acid"}]},{"a":"ProteinTraitsMech","b":"CultureMech","n":233,"by":{"CHEBI":221,"NCBITaxon":10,"UBERON":2},"ex":[{"id":"CHEBI:15377","label":"water"},{"id":"CHEBI:16526","label":"carbon dioxide"},{"id":"CHEBI:17754","label":"glycerol"}]},{"a":"ProteinTraitsMech","b":"TaxonMech","n":7444,"by":{"NCBITaxon":7444},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:83334","label":"Escherichia coli O157:H7"},{"id":"NCBITaxon:623","label":"Shigella flexneri"}]},{"a":"NaturalProductMech","b":"AntibioticMech","n":278,"by":{"CHEBI":180,"NCBITaxon":96,"UniProt":2},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:287","label":"Pseudomonas aeruginosa"},{"id":"NCBITaxon:330879","label":"Aspergillus fumigatus (strain ATCC MYA-4609 / CBS 101355 / FGSC A1100 / Af293)"}]},{"a":"NaturalProductMech","b":"MediaIngredientMech","n":51,"by":{"CHEBI":51},"ex":[{"id":"CHEBI:15956","label":"biotin"},{"id":"CHEBI:16349","label":"L-citrulline"},{"id":"CHEBI:27592","label":"ectoine"}]},{"a":"NaturalProductMech","b":"CultureMech","n":5,"by":{"CHEBI":3,"NCBITaxon":2},"ex":[{"id":"CHEBI:15956","label":"biotin"},{"id":"CHEBI:16349","label":"L-citrulline"},{"id":"CHEBI:27592","label":"ectoine"}]},{"a":"NaturalProductMech","b":"TaxonMech","n":1708,"by":{"NCBITaxon":1708},"ex":[{"id":"NCBITaxon:1126","label":"Microcystis aeruginosa"},{"id":"NCBITaxon:1912","label":"Streptomyces hygroscopicus"},{"id":"NCBITaxon:294","label":"Pseudomonas fluorescens"}]},{"a":"AntibioticMech","b":"MediaIngredientMech","n":324,"by":{"CHEBI":324},"ex":[{"id":"CHEBI:33709","label":"amino acid"},{"id":"CHEBI:30746","label":"benzoic acid"},{"id":"CHEBI:17334","label":"penicillin"}]},{"a":"AntibioticMech","b":"CultureMech","n":29,"by":{"CHEBI":29},"ex":[{"id":"CHEBI:17334","label":"penicillin"},{"id":"CHEBI:48923","label":"erythromycin"},{"id":"CHEBI:30746","label":"benzoic acid"}]},{"a":"AntibioticMech","b":"TaxonMech","n":109,"by":{"NCBITaxon":109},"ex":[{"id":"NCBITaxon:562","label":"Escherichia coli"},{"id":"NCBITaxon:573","label":"Klebsiella pneumoniae"},{"id":"NCBITaxon:470","label":"Acinetobacter baumannii"}]},{"a":"MediaIngredientMech","b":"CultureMech","n":612,"by":{"CHEBI":545,"KEGG":56,"FOODON":6,"UBERON":3,"CAS":1,"ENVO":1},"ex":[{"id":"FOODON:03315426","label":"yeast extract"},{"id":"CHEBI:17234","label":"glucose"},{"id":"CHEBI:2509","label":"agar"}]},{"a":"CultureMech","b":"TaxonMech","n":54,"by":{"NCBITaxon":54},"ex":[{"id":"NCBITaxon:210","label":"Helicobacter pylori"},{"id":"NCBITaxon:823","label":"Parabacteroides distasonis"},{"id":"NCBITaxon:851","label":"Fusobacterium nucleatum"}]}]}; var MANIFEST = {"version":1,"source":{"repository":"CultureBotAI/culturebotai-claw","revision":"2637172e6fdbfacf163f0b12d289a9828dda2f30","url":"https://github.com/CultureBotAI/culturebotai-claw/blob/2637172e6fdbfacf163f0b12d289a9828dda2f30/src/kg_microbe_fleet/fleet.yaml"},"capability_catalogue":{"id_label_validation":{},"curation_history":{},"strict_validation":{},"schema_sync":{},"release_management":{},"build_coordination":{},"documentation":{},"testing":{},"refactoring":{},"coordination_hooks":{},"deep_research":{},"edison_key_discovery":{},"environment_coverage":{"settings":{"record_globs":{"type":"string_list","required_when_enabled":true}}},"knowledge_gap_scan":{"settings":{"window":{"type":"integer","required_when_enabled":true,"minimum":1}}},"vendored_sync":{},"unmapped_inventory_input":{},"source_catalogue":{},"corpus_statistics":{"settings":{"fields":{"type":"string_list","required_when_enabled":true}}},"page_budgets":{"settings":{"site_path":{"type":"string","required_when_enabled":true},"budgets_path":{"type":"string","required_when_enabled":true}}},"kgx_export":{"settings":{"nodes_path":{"type":"string","required_when_enabled":true},"edges_path":{"type":"string","required_when_enabled":true},"extra_prefixes":{"type":"string_list"}}},"source_queue":{"settings":{"queue_path":{"type":"string","required_when_enabled":true},"extensions":{"type":"string_list"},"required_when_adopted":{"type":"string_list"}}},"metpo_proposal":{"settings":{"class_glob":{"type":"string","required_when_enabled":true},"property_glob":{"type":"string"}}},"sssom_export":{"settings":{"mapping_globs":{"type":"string_list","required_when_enabled":true},"extensions":{"type":"string_list"}}},"writer_audit":{"settings":{"search_dirs":{"type":"string_list","required_when_enabled":true},"save_helpers":{"type":"string_list"},"validators":{"type":"string_list"},"curation_markers":{"type":"string_list"},"exclude":{"type":"string_list"}}},"site_contract":{"settings":{"site_path":{"type":"string","required_when_enabled":true},"published_root":{"type":"string"},"allowed_hosts":{"type":"string_list"}}}},"mechs":{"CultureMech":{"key":"culturemech","github":"CultureBotAI/CultureMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"enabled"},"edison_key_discovery":{"status":"enabled"},"environment_coverage":{"status":"enabled","settings":{"record_globs":["data/merge_yaml/merged/*.yaml"]}},"knowledge_gap_scan":{"status":"enabled","settings":{"window":300}},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["source_environment","medium_type"]}},"page_budgets":{"status":"disabled","reason":"Generates a site through .github/workflows/generate-pages.yaml but declares no size or file-count budgets, so nothing watches it grow. Adopting them applies here; the limits are the repository's to set.","reason_claims":{"present":[".github/workflows/generate-pages.yaml"]}},"writer_audit":{"status":"enabled","settings":{"search_dirs":["scripts","src/culturemech"],"save_helpers":["write_validated_recipe"],"exclude":["scripts/audit_writers.py"]}},"sssom_export":{"status":"enabled","settings":{"mapping_globs":["output/*.sssom.tsv"],"extensions":["mapping_method"]}},"metpo_proposal":{"status":"disabled","reason":"Carries .claude/commands/ground-or-propose-metpo.md, so the grounding half is present, but has no proposals/ directory and has never minted a METPO id. Adopting applies once a CultureMech term needs one.","reason_claims":{"absent":["proposals"],"present":[".claude/commands/ground-or-propose-metpo.md"]}},"kgx_export":{"status":"disabled","reason":"scripts/export_kgx.py writes to output/kgx but has produced nothing tracked, so there is no graph for this contract to judge. Adopting it means running the exporter first; the check applies here once it does.","reason_claims":{"present":["scripts/export_kgx.py"],"absent":["output/kgx"]}},"source_queue":{"status":"disabled","reason":"Has no curation/source_queue.tsv. AntibioticMech wrote the pattern and CellStructureMech adapted it; adopting it here means ranking this corpus's own candidate sources and verifying their licences, which is curation work rather than a file copy.","reason_claims":{"absent":["curation/source_queue.tsv"]}},"site_contract":{"status":"disabled","reason":"Publishes a site built in CI, so no directory in the checkout is the output the check would judge; running it on the Jekyll or template sources reports missing .html files that the build creates. Adopting it means running the check on the build product, which applies here and is not yet wired."},"source_catalogue":{"status":"disabled","reason":"Fetches each source from its own script -- scripts/fetch_komodo_base_volumes.py, scripts/fetch_mediadive_solution_volumes.py, scripts/fetch_pubmed_abstracts.py -- with no download.yaml declaring them, so there is no catalogue to validate. Adopting one would apply here; it has not been written.","reason_claims":{"present":["scripts/fetch_komodo_base_volumes.py","scripts/fetch_mediadive_solution_volumes.py","scripts/fetch_pubmed_abstracts.py"],"absent":["download.yaml"]}},"unmapped_inventory_input":{"status":"enabled"}}},"MediaIngredientMech":{"key":"mediaingredientmech","github":"CultureBotAI/MediaIngredientMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"enabled"},"edison_key_discovery":{"status":"enabled"},"environment_coverage":{"status":"enabled","settings":{"record_globs":["data/ingredients/**/*.yaml"]}},"knowledge_gap_scan":{"status":"enabled","settings":{"window":300}},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["ingredient_type","ontology_mapping.mapping_quality"]}},"page_budgets":{"status":"disabled","reason":"Generates a site through .github/workflows/generate-pages.yaml but declares no size or file-count budgets, so nothing watches it grow. Adopting them applies here; the limits are the repository's to set.","reason_claims":{"present":[".github/workflows/generate-pages.yaml"]}},"writer_audit":{"status":"enabled","settings":{"search_dirs":["scripts","src/mediaingredientmech"],"save_helpers":["save_yaml","write_validated_ingredient"],"exclude":["scripts/audit_writers.py"]}},"sssom_export":{"status":"enabled","settings":{"mapping_globs":["mappings/*.sssom.tsv"],"extensions":["source","validation_method"]}},"metpo_proposal":{"status":"not_applicable","reason":"MIM grounds ingredients in ChEBI and FOODON and publishes SSSOM mappings; METPO models microbial phenotypes and processes, which is not the axis this corpus curates."},"kgx_export":{"status":"disabled","reason":"Publishes term mappings rather than a graph; its contribution to kg-microbe is SSSOM. Adopting KGX would apply here only if it starts emitting nodes and edges."},"source_queue":{"status":"disabled","reason":"Has no curation/source_queue.tsv. AntibioticMech wrote the pattern and CellStructureMech adapted it; adopting it here means ranking this corpus's own candidate sources and verifying their licences, which is curation work rather than a file copy.","reason_claims":{"absent":["curation/source_queue.tsv"]}},"site_contract":{"status":"disabled","reason":"Publishes a site built in CI, so no directory in the checkout is the output the check would judge; running it on the Jekyll or template sources reports missing .html files that the build creates. Adopting it means running the check on the build product, which applies here and is not yet wired."},"source_catalogue":{"status":"disabled","reason":"Fetches ontologies through download_ontologies.py rather than a declared catalogue, so there is no download.yaml to validate. Adopting one would apply here; it has not been written.","reason_claims":{"present":["scripts/download_ontologies.py"],"absent":["download.yaml"]}},"unmapped_inventory_input":{"status":"enabled"}}},"CommunityMech":{"key":"communitymech","github":"CultureBotAI/CommunityMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"enabled"},"edison_key_discovery":{"status":"enabled"},"environment_coverage":{"status":"enabled","settings":{"record_globs":["data/isolates/*.yaml"]}},"knowledge_gap_scan":{"status":"enabled","settings":{"window":305}},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["environment_term"]}},"page_budgets":{"status":"disabled","reason":"Generates a site through .github/workflows/generate-pages.yaml but declares no size or file-count budgets, so nothing watches it grow. Adopting them applies here; the limits are the repository's to set.","reason_claims":{"present":[".github/workflows/generate-pages.yaml"]}},"writer_audit":{"status":"enabled","settings":{"search_dirs":["scripts","src/communitymech"],"save_helpers":["write_validated_community"],"curation_markers":["record_curation_event"],"exclude":["scripts/audit_writers.py"]}},"sssom_export":{"status":"not_applicable","reason":"Publishes KGX nodes and edges rather than term mappings; its contribution to kg-microbe is a graph, not a mapping set, so there is no SSSOM file for this contract to judge."},"metpo_proposal":{"status":"enabled","settings":{"class_glob":"proposals/*/metpo_proposal_classes_robot.tsv","property_glob":"proposals/*/metpo_proposal_properties_robot.tsv"}},"kgx_export":{"status":"enabled","settings":{"nodes_path":"output/kgx/nodes.tsv","edges_path":"output/kgx/edges.tsv"}},"source_queue":{"status":"disabled","reason":"Has no curation/source_queue.tsv. AntibioticMech wrote the pattern and CellStructureMech adapted it; adopting it here means ranking this corpus's own candidate sources and verifying their licences, which is curation work rather than a file copy.","reason_claims":{"absent":["curation/source_queue.tsv"]}},"site_contract":{"status":"enabled","settings":{"site_path":"docs"}},"source_catalogue":{"status":"disabled","reason":"Has no download.yaml; its inputs arrive through per-source scripts rather than a declared catalogue. Adopting one would apply here; it has not been written.","reason_claims":{"absent":["download.yaml"]}},"unmapped_inventory_input":{"status":"enabled"}}},"TraitMech":{"key":"traitmech","github":"CultureBotAI/TraitMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"enabled"},"edison_key_discovery":{"status":"enabled"},"environment_coverage":{"status":"not_applicable","reason":"Environment coverage currently compares culture media, ingredients, and microbial communities; trait records are not an environment inventory input."},"knowledge_gap_scan":{"status":"enabled","settings":{"window":300}},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["mapping_status","trait_category"]}},"page_budgets":{"status":"disabled","reason":"Serves 490 tracked pages under pages/ straight from main via GitHub Pages -- it has no generate-pages.yaml, unlike the other four -- and declares no size or file-count budgets, so nothing watches them grow. Adopting them applies here; the limits are the repository's to set.","reason_claims":{"present":["pages"],"absent":[".github/workflows/generate-pages.yaml"]}},"writer_audit":{"status":"enabled","settings":{"search_dirs":["scripts","src/traitmech"],"save_helpers":["write_validated_trait"],"curation_markers":["record_curation"],"exclude":["scripts/audit_writers.py"]}},"sssom_export":{"status":"enabled","settings":{"mapping_globs":["proposals/*/metpo_proposal_mappings.sssom.tsv"]}},"metpo_proposal":{"status":"enabled","settings":{"class_glob":"proposals/*/metpo_proposal_classes_robot.tsv","property_glob":"proposals/*/metpo_proposal_properties_robot.tsv"}},"kgx_export":{"status":"disabled","reason":"Publishes trait records and METPO mapping proposals, not a KGX graph."},"source_queue":{"status":"disabled","reason":"Has no curation/source_queue.tsv. AntibioticMech wrote the pattern and CellStructureMech adapted it; adopting it here means ranking this corpus's own candidate sources and verifying their licences, which is curation work rather than a file copy.","reason_claims":{"absent":["curation/source_queue.tsv"]}},"site_contract":{"status":"enabled","settings":{"site_path":"pages","published_root":".","allowed_hosts":["cdn.jsdelivr.net"]}},"source_catalogue":{"status":"enabled"},"unmapped_inventory_input":{"status":"not_applicable","reason":"The unmapped-ingredient inventory reads culture-media and ingredient corpora; TraitMech curates traits and has no ingredient records, so scripts/inventory_unmapped_ingredients.py defines no loader for it.","reason_claims":{"present":["claw:scripts/inventory_unmapped_ingredients.py"]}}}},"ProteinTraitsMech":{"key":"proteintraitsmech","github":"CultureBotAI/proteintraitsmech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"enabled"},"edison_key_discovery":{"status":"not_applicable","reason":"ProteinTraitsMech does not use an Edison research-provider key; provider integration is configured through its own supported credential surfaces."},"environment_coverage":{"status":"not_applicable","reason":"Environment coverage currently compares culture media, ingredients, and microbial communities; protein-trait records are not an environment inventory input."},"knowledge_gap_scan":{"status":"not_applicable","reason":"Record-level knowledge-gap scanning targets curated per-record discussion text. This corpus is ontology-derived, so there is no per-record gap surface to scan; the repository is correspondingly absent from the knowledge-gap-scan workflow matrix."},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["trait_axis","mapping_status"]}},"page_budgets":{"status":"enabled","settings":{"site_path":"_site","budgets_path":"conf/pages_budgets.json"}},"writer_audit":{"status":"not_applicable","reason":"Its scripts/audit_writers.py shares the name and nothing else -- a different tool built on registered editors and guard tests, ~600 lines apart from the other four. This audit does not describe what that one checks, and consolidating them would mean choosing one model over the other rather than removing a duplicate.","reason_claims":{"present":["scripts/audit_writers.py"]}},"sssom_export":{"status":"disabled","reason":"Grounds protein traits directly in its own records rather than publishing a mapping set. Adopting one would apply here; none has been written."},"metpo_proposal":{"status":"disabled","reason":"Carries METPO-grounded records under data/traits/**/metpo/, so it consumes METPO, but proposes no new terms and has no proposals/ directory. Adopting applies once a protein trait needs a term METPO lacks.","reason_claims":{"absent":["proposals"]}},"kgx_export":{"status":"disabled","reason":"Publishes protein-trait records rather than a graph."},"source_queue":{"status":"disabled","reason":"Has no curation/source_queue.tsv. AntibioticMech wrote the pattern and CellStructureMech adapted it; adopting it here means ranking this corpus's own candidate sources and verifying their licences, which is curation work rather than a file copy.","reason_claims":{"absent":["curation/source_queue.tsv"]}},"site_contract":{"status":"disabled","reason":"Publishes a site built in CI, so no directory in the checkout is the output the check would judge; running it on the Jekyll or template sources reports missing .html files that the build creates. Adopting it means running the check on the build product, which applies here and is not yet wired."},"source_catalogue":{"status":"enabled"},"unmapped_inventory_input":{"status":"not_applicable","reason":"The unmapped-ingredient inventory reads culture-media and ingredient corpora; ProteinTraitsMech curates protein-trait records and has no ingredient corpus, so scripts/inventory_unmapped_ingredients.py defines no loader for it.","reason_claims":{"present":["claw:scripts/inventory_unmapped_ingredients.py"]}}}},"AntibioticMech":{"key":"antibioticmech","github":"CultureBotAI/AntibioticMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"vendored_sync":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"testing":{"status":"enabled"},"documentation":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"disabled","reason":"Has research-antibiotic, research-entity and deep-research-canary recipes and a research/ tree, but no conf/deep_research_provider.yaml -- the profile every deep-research Mech declares and the contract resolves. Enabled on the recipes alone this would assert a profile that does not exist; the recipes are a research route, not the declared provider contract.","reason_claims":{"present":["research"],"absent":["conf/deep_research_provider.yaml"]}},"edison_key_discovery":{"status":"not_applicable","reason":"Research runs through this repository's own research-antibiotic and research-entity recipes; it uses no Edison provider key."},"environment_coverage":{"status":"not_applicable","reason":"Environment coverage compares culture media, ingredients and microbial communities. An antimicrobial-compound corpus is not an environment inventory input."},"unmapped_inventory_input":{"status":"not_applicable","reason":"The unmapped inventory reconciles ingredient names across media corpora; antimicrobial compounds are not one of its sources."},"knowledge_gap_scan":{"status":"disabled","reason":"Records do not carry the shared Discussion section the scan reads, and this repository is not in the knowledge-gap-scan workflow matrix. Enable once records carry it."},"source_catalogue":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["antimicrobial_class","grounding_status"]}},"source_queue":{"status":"enabled","settings":{"queue_path":"curation/source_queue.tsv"}},"site_contract":{"status":"enabled","settings":{"site_path":"pages"}},"page_budgets":{"status":"disabled","reason":"Serves tracked pages under pages/ from main via GitHub Pages and declares no size or file-count budgets, so nothing watches them grow -- 2,956 files and 30.1 MB measured at admission (#230). Adopting them applies here; the limits are this repository's to set.","reason_claims":{"present":["pages"]}},"writer_audit":{"status":"disabled","reason":"Has no scripts/audit_writers.py, so there is no drift between writer copies to remove yet. Adopting it applies once more writers exist.","reason_claims":{"absent":["scripts/audit_writers.py"]}},"sssom_export":{"status":"disabled","reason":"Records carry ChEBI and ARO identifiers inline rather than through a mapping file. Adopting SSSOM applies once a mapping product exists."},"metpo_proposal":{"status":"disabled","reason":"No proposals/ directory and no METPO grounding. Antimicrobial compounds are grounded in ChEBI and ARO inline; adopting applies once a resistance or activity phenotype needs a METPO term.","reason_claims":{"absent":["proposals"]}},"kgx_export":{"status":"disabled","reason":"No exporter and no graph product yet; adopting KGX applies once the corpus is consumed as a graph."}}},"CellStructureMech":{"key":"cellstructuremech","github":"CultureBotAI/CellStructureMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"disabled","reason":"Research so far is source assessment written by hand under research/ with no provider client or research recipe in the justfile; the repository has not decided on a paid research route.","reason_claims":{"present":["research"]}},"edison_key_discovery":{"status":"not_applicable","reason":"CellStructureMech does not use an Edison research-provider key; it has no research provider integration at all."},"environment_coverage":{"status":"not_applicable","reason":"Environment coverage currently compares culture media, ingredients, and microbial communities; cell-structure records are not an environment inventory input."},"knowledge_gap_scan":{"status":"disabled","reason":"Records carry the shared Discussion section, so the scan applies, but the corpus is four records and the repository is not yet in the knowledge-gap-scan workflow matrix; enable once the first tranche of records lands (CellStructureMech#12)."},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["structure_category","mapping_status"]}},"page_budgets":{"status":"disabled","reason":"Serves tracked pages under pages/ straight from main via GitHub Pages -- it has no generate-pages.yaml -- and declares no size or file-count budgets, so nothing watches them grow. Adopting them applies here; the limits are the repository's to set.","reason_claims":{"present":["pages"],"absent":[".github/workflows/generate-pages.yaml"]}},"writer_audit":{"status":"disabled","reason":"Has no scripts/audit_writers.py, so there is no drift to remove yet. Adopting it applies here once the corpus grows; the settings are the repository's to declare.","reason_claims":{"absent":["scripts/audit_writers.py"]}},"sssom_export":{"status":"disabled","reason":"Records carry GO cellular-component identifiers inline rather than through a mapping file, and the corpus is four records. Adopting one applies once it grows."},"metpo_proposal":{"status":"disabled","reason":"Structures are grounded in GO cellular-component terms inline and there is no proposals/ directory. Adopting applies once a structure phenotype needs a METPO term GO does not carry.","reason_claims":{"absent":["proposals"]}},"kgx_export":{"status":"disabled","reason":"Four structure records and no exporter; adopting KGX applies once the corpus grows."},"source_queue":{"status":"enabled","settings":{"queue_path":"curation/source_queue.tsv","extensions":["taxon_link","item_id","script"],"required_when_adopted":["script"]}},"site_contract":{"status":"enabled","settings":{"site_path":"pages","published_root":"."}},"source_catalogue":{"status":"disabled","reason":"The repository keeps its ranked source list as curation/source_queue.tsv, machine-checked by scripts/check_source_queue.py inside its qc gate, rather than a download.yaml in the fleet's catalogue shape; there is no download.yaml to parse. Converging on one shape is open.","reason_claims":{"present":["curation/source_queue.tsv","scripts/check_source_queue.py"],"absent":["download.yaml"]}},"unmapped_inventory_input":{"status":"not_applicable","reason":"The unmapped-ingredient inventory reads culture-media and ingredient corpora; CellStructureMech curates cell structures and has no ingredient records, so scripts/inventory_unmapped_ingredients.py defines no loader for it.","reason_claims":{"present":["claw:scripts/inventory_unmapped_ingredients.py"]}}}},"HabitatMech":{"key":"habitatmech","github":"CultureBotAI/HabitatMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"disabled","reason":"Has research, research-dry and deep-research-canary recipes, a research/ tree and the vendored scripts/deep_research_contract.py, but no conf/deep_research_provider.yaml -- the profile every deep-research Mech declares and the contract resolves. Enabled on the recipes alone this would assert a profile that does not exist.","reason_claims":{"present":["research","scripts/deep_research_contract.py"],"absent":["conf/deep_research_provider.yaml"]}},"edison_key_discovery":{"status":"not_applicable","reason":"HabitatMech does not use an Edison research-provider key; its research recipes run through its own provider surface."},"environment_coverage":{"status":"disabled","reason":"HabitatMech is itself an environment vocabulary: 3,213 habitat records grounded in ENVO, UBERON, FOODON and BTO. Environment coverage compares culture media, ingredients and communities against ENVO and has no loader for HabitatRecord, so it cannot yet read this corpus as either an input or the reference set. Adopting it applies here and is the more valuable direction: teach environment_coverage_dashboard.py to treat habitat records as the reference the other corpora are measured against.","reason_claims":{"present":["claw:scripts/environment_coverage_dashboard.py"]}},"knowledge_gap_scan":{"status":"disabled","reason":"Records carry the shared Discussion section, so the scan applies. The workflow matrix is generated from this manifest, so enabling the capability here with a settings.window is what adds the repository to it. Left disabled until HabitatMech has run the scan once locally and chosen its window."},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["habitat_category","grounding_status","mapping_status"]}},"page_budgets":{"status":"disabled","reason":"Serves 3,404 published HTML pages under pages/ straight from main via GitHub Pages -- it has no generate-pages.yaml -- and declares no size or file-count budgets, so nothing watches them grow. Adopting them applies here; the limits are the repository's to set.","reason_claims":{"present":["pages"],"absent":[".github/workflows/generate-pages.yaml"]}},"writer_audit":{"status":"disabled","reason":"Has no scripts/audit_writers.py. Its writers exist (write_validated_habitat and record_curation_event in the seeder) and records are seeded as build products, so there is drift to audit; adopting it applies here once the audit is written.","reason_claims":{"absent":["scripts/audit_writers.py"]}},"sssom_export":{"status":"disabled","reason":"Grounds each habitat inline on the record (ENVO, UBERON, FOODON, BTO) and keeps its ontology requests as curation/term_requests.tsv rather than publishing a mapping set; there is no SSSOM file for this contract to judge. Adopting one would apply here.","reason_claims":{"present":["curation/term_requests.tsv"]}},"metpo_proposal":{"status":"disabled","reason":"Habitats are grounded in ENVO and the repository raises its gaps through term requests rather than METPO cohorts, so it has no proposals directory. Adopting applies once a habitat-associated phenotype needs a METPO term.","reason_claims":{"absent":["proposals"]}},"kgx_export":{"status":"disabled","reason":"Consumes kg-microbe's KGX as an input -- conf/sources.yaml names the checkout that supplies ENVO, UBERON, FOODON and BTO -- and publishes habitat records, not a graph. Adopting KGX would apply here only if it starts emitting nodes and edges.","reason_claims":{"present":["conf/sources.yaml"]}},"source_queue":{"status":"disabled","reason":"Has no curation/source_queue.tsv; its sources are declared in conf/sources.yaml and the raw payloads in data/raw/MANIFEST.yaml. AntibioticMech wrote the pattern and CellStructureMech adapted it; adopting it here means ranking candidate habitat sources and verifying their licences, which is curation work rather than a file copy.","reason_claims":{"present":["conf/sources.yaml","data/raw/MANIFEST.yaml"],"absent":["curation/source_queue.tsv"]}},"site_contract":{"status":"disabled","reason":"Publishes 3,404 HTML pages under pages/ straight from main, so the check has a directory to judge, but it has not been measured on this site yet. Enable after measuring on joining, as AntibioticMech did, so the contract's numbers keep describing what it runs on.","reason_claims":{"present":["pages"]}},"source_catalogue":{"status":"disabled","reason":"Declares its sources in conf/sources.yaml and the fetched payloads in data/raw/MANIFEST.yaml rather than a download.yaml in the fleet's catalogue shape; there is no download.yaml to parse. Converging on one shape is open.","reason_claims":{"present":["conf/sources.yaml","data/raw/MANIFEST.yaml"],"absent":["download.yaml"]}},"unmapped_inventory_input":{"status":"not_applicable","reason":"The unmapped-ingredient inventory reads culture-media and ingredient corpora; HabitatMech curates habitats and has no ingredient records, so scripts/inventory_unmapped_ingredients.py defines no loader for it.","reason_claims":{"present":["claw:scripts/inventory_unmapped_ingredients.py"]}}}},"NaturalProductMech":{"key":"naturalproductmech","github":"CultureBotAI/NaturalProductMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"disabled","reason":"Vendors the governed curation-history schema and carries a new-history recipe, but has no history directory yet, so no record can append an event. Adopting applies once the tree exists and the recipe is wired into CI.","reason_claims":{"absent":["history"]}},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"disabled","reason":"No conf/deep_research_provider.yaml and no research recipe; sources are assessed through the source queue. Adopting applies once a provider profile exists under claw's contract.","reason_claims":{"absent":["conf/deep_research_provider.yaml"]}},"edison_key_discovery":{"status":"not_applicable","reason":"NaturalProductMech does not use an Edison research-provider key; it has no research provider integration at all."},"environment_coverage":{"status":"not_applicable","reason":"Environment coverage compares culture media, ingredients and microbial communities. A natural-product structure corpus is not one of those inputs."},"knowledge_gap_scan":{"status":"disabled","reason":"Records do not carry the shared Discussion section the scan reads, and this repository is not in the knowledge-gap-scan workflow matrix. Enable once records carry it."},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["np_pathway","np_classification","grounding_status","curation_status"]}},"page_budgets":{"status":"disabled","reason":"Serves tracked pages under pages/ straight from main via GitHub Pages and declares no size or file-count budgets, so no conf/pages_budgets.json exists for the audit to read.","reason_claims":{"present":["pages"],"absent":["conf/pages_budgets.json"]}},"writer_audit":{"status":"disabled","reason":"Has no scripts/audit_writers.py, so there is no drift between writer copies to remove yet. Adopting it applies here once the corpus is edited by more than one writer.","reason_claims":{"absent":["scripts/audit_writers.py"]}},"sssom_export":{"status":"disabled","reason":"Records carry ChEBI, NPAtlas and PubChem identifiers inline rather than through a mapping file. Adopting SSSOM applies once a mapping product exists."},"metpo_proposal":{"status":"disabled","reason":"No proposals directory and no METPO grounding; structures are grounded in ChEBI. Adopting applies once a natural-product phenotype needs a METPO term.","reason_claims":{"absent":["proposals"]}},"kgx_export":{"status":"disabled","reason":"No exporter and no graph product yet; adopting KGX applies once the corpus is consumed as a graph."},"source_queue":{"status":"enabled","settings":{"queue_path":"curation/source_queue.tsv","extensions":["structures"]}},"site_contract":{"status":"enabled","settings":{"site_path":"pages"}},"source_catalogue":{"status":"disabled","reason":"Keeps its ranked source list as curation/source_queue.tsv and fetches each adopted source through its own extract recipe; there is no download.yaml for the catalogue check to read. Adopting means deriving the machine-fetchable half from the queue.","reason_claims":{"present":["curation/source_queue.tsv"],"absent":["download.yaml"]}},"unmapped_inventory_input":{"status":"not_applicable","reason":"The unmapped inventory reconciles ingredient names across media corpora; natural-product structures are not one of its inputs."}}},"TaxonMech":{"key":"taxonmech","github":"CultureBotAI/TaxonMech","capabilities":{"id_label_validation":{"status":"enabled"},"curation_history":{"status":"enabled"},"strict_validation":{"status":"enabled"},"schema_sync":{"status":"enabled"},"release_management":{"status":"enabled"},"build_coordination":{"status":"enabled"},"documentation":{"status":"enabled"},"testing":{"status":"enabled"},"refactoring":{"status":"enabled"},"coordination_hooks":{"status":"enabled"},"deep_research":{"status":"disabled","reason":"Vendors scripts/deep_research_contract.py but has no conf/deep_research_provider.yaml or provider recipe. Enable once a research provider is configured and exercised under the shared contract.","reason_claims":{"present":["scripts/deep_research_contract.py"],"absent":["conf/deep_research_provider.yaml"]}},"edison_key_discovery":{"status":"not_applicable","reason":"TaxonMech has no Edison integration or Edison research-provider key."},"environment_coverage":{"status":"not_applicable","reason":"Environment coverage compares culture media, ingredients and microbial communities; taxon identity records are not one of its inputs."},"knowledge_gap_scan":{"status":"disabled","reason":"The schema supports Discussion but no shared scan window or workflow is configured. Enable after adding a durable curated overlay that the generated-corpus pipeline preserves and wiring the scanner to it."},"vendored_sync":{"status":"enabled"},"corpus_statistics":{"status":"enabled","settings":{"fields":["taxon_domain","rank","grounding_status","mapping_status"]}},"page_budgets":{"status":"disabled","reason":"Publishes tracked pages under pages/ but has no conf/pages_budgets.json. Enable once explicit size and file-count budgets are configured and measured.","reason_claims":{"present":["pages"],"absent":["conf/pages_budgets.json"]}},"writer_audit":{"status":"disabled","reason":"Has no scripts/audit_writers.py. Records use a native seeder and validated writer, but no shared audit profile has been adopted. Enable after configuring the profile and measuring its writer coverage.","reason_claims":{"absent":["scripts/audit_writers.py"]}},"sssom_export":{"status":"disabled","reason":"Stores taxonomy mappings and cross-references inline; no SSSOM mapping product is emitted. Enable once a validated export exists."},"metpo_proposal":{"status":"disabled","reason":"The schema references METPO but there is no proposals/ directory or proposal cohort. Enable once the repository produces terms under the shared proposal contract.","reason_claims":{"absent":["proposals"]}},"kgx_export":{"status":"disabled","reason":"Consumes kg-microbe KGX as an input but does not emit a graph product. Enable when an exporter produces validated nodes and edges."},"source_queue":{"status":"disabled","reason":"Sources are configured in conf/sources.yaml and inventoried in data/raw/MANIFEST.yaml; no curation/source_queue.tsv ranks candidate sources. Enable once that review queue is adopted.","reason_claims":{"present":["conf/sources.yaml","data/raw/MANIFEST.yaml"],"absent":["curation/source_queue.tsv"]}},"site_contract":{"status":"enabled","settings":{"site_path":"pages"}},"source_catalogue":{"status":"disabled","reason":"Uses conf/sources.yaml and data/raw/MANIFEST.yaml but has no download.yaml in the shared catalogue shape. Enable after adapting the source declarations to that contract.","reason_claims":{"present":["conf/sources.yaml","data/raw/MANIFEST.yaml"],"absent":["download.yaml"]}},"unmapped_inventory_input":{"status":"not_applicable","reason":"The unmapped inventory reconciles ingredient names across media corpora; taxon identity records are not one of its inputs."}}}},"artifact_count":16}; var MECHS = { @@ -471,9 +475,9 @@ Each X-Mech is an **autonomous knowledge factory** that curates, validates, and var XREFS = [ { from: "HabitatMech", to: "TaxonMech", kind: "schema", what: "TaxonMech's causal-graph node types are the same 16 as HabitatMech's. A habitat node may be a HabitatMech or ENVO term, the schema declares the habitatmech: prefix, and TaxonMech's curation-event helper and closed-schema write gate are ported from HabitatMech's and CellStructureMech's; no TaxonMech record has a causal graph yet.", ev: "TaxonMech schema CausalNodeTypeEnum and prefixes; src/taxonmech/curate/curation_event.py, src/taxonmech/validation/write_validated.py", url: "https://github.com/CultureBotAI/TaxonMech/blob/main/src/taxonmech/schema/taxonmech.yaml" }, { from: "HabitatMech", to: "CellStructureMech", kind: "practice", what: "CellStructureMech's curation-event helper and closed-schema write gate are ported from HabitatMech's modules of the same names, which HabitatMech had itself ported from TraitMech. 17 of CellStructureMech's writer scripts use both.", ev: "CellStructureMech src/cellstructuremech/curate/curation_event.py; validation/write_validated.py", url: "https://github.com/CultureBotAI/CellStructureMech/blob/main/src/cellstructuremech/curate/curation_event.py" }, - { from: "HabitatMech", to: "AntibioticMech", kind: "practice", what: "AntibioticMech's static-site generator is ported from HabitatMech's render_pages.py, including its paged category pages that filter through a JSON index, and its stylesheet is ported from HabitatMech's. Together they render AntibioticMech's whole browser.", ev: "AntibioticMech scripts/render_pages.py; src/antibioticmech/templates/style.css", url: "https://github.com/CultureBotAI/AntibioticMech/blob/main/scripts/render_pages.py" }, + { from: "HabitatMech", to: "AntibioticMech", kind: "practice", what: "AntibioticMech's static-site generator is ported from HabitatMech's render_pages.py, including its paged category pages that filter through a JSON index, and its stylesheet is ported from HabitatMech's. Together they render AntibioticMech's whole browser. Its curation-event helper and closed-schema write gate are HabitatMech's copies as well; their docstrings still credit TraitMech, which HabitatMech ported them from.", ev: "AntibioticMech scripts/render_pages.py; src/antibioticmech/templates/style.css; src/antibioticmech/curate/curation_event.py", url: "https://github.com/CultureBotAI/AntibioticMech/blob/main/scripts/render_pages.py" }, { from: "CommunityMech", to: "TraitMech", kind: "practice", what: "TraitMech's Edison deep-research runner and skill are ports of CommunityMech's research_community_edison.py and deep-research-community skill. Its METPO proposal skill takes CommunityMech's v1 proposal cohort as the worked example to follow, and keeps TraitMech's placeholder ID blocks clear of that cohort's.", ev: "TraitMech scripts/research_trait_edison.py; .claude/skills/deep-research-trait and metpo-proposal", url: "https://github.com/CultureBotAI/TraitMech/blob/main/scripts/research_trait_edison.py" }, - { from: "CommunityMech", to: "MediaIngredientMech", kind: "data", what: "MediaIngredientMech imported 17 growth-media ingredient names that CommunityMech could not match to an existing ingredient. Each record keeps the name as a synonym from communitymech-unmapped and cites its CommunityMech source id (communitymech.ingredient:name). 10 records are still live; the other 7 were merged into existing records.", ev: "MIM data/ingredients (source communitymech-unmapped); CommunityMech reports/ingredient_mapping.csv", url: "https://github.com/CultureBotAI/MediaIngredientMech/blob/main/data/ingredients/mapped/Trace_Element_Solution_SL-10.yaml" }, + { from: "CommunityMech", to: "MediaIngredientMech", kind: "data", what: "MediaIngredientMech imported 17 growth-media ingredient names that CommunityMech could not match to an existing ingredient. Each record keeps the name as a synonym from communitymech-unmapped and cites its CommunityMech source id (communitymech.ingredient:name). 10 records are still live; the other 7 were merged into existing records.", ev: "MIM data/ingredients (synonym source communitymech-unmapped)", url: "https://github.com/CultureBotAI/MediaIngredientMech/blob/main/data/ingredients/mapped/Trace_Element_Solution_SL-10.yaml" }, { from: "CommunityMech", to: "CultureMech", kind: "data", what: "CultureMech turned CommunityMech growth media into recipes that keep their CommunityMech ids as provenance. It also backfilled recipe source environments from the ENVO terms of CommunityMech records that point at those recipes.", ev: "CultureMech scripts/import_from_communitymech.py, scripts/backfill_source_environment.py; schema SourceData.community_ids", url: "https://github.com/CultureBotAI/CultureMech/blob/main/scripts/import_from_communitymech.py" }, { from: "TaxonMech", to: "HabitatMech", kind: "practice", what: "TaxonMech's curation rules leave a taxon's habitats and its strains' isolation sources to HabitatMech. A TaxonMech record keeps only source attestation counts, and none of its records carries habitat data.", ev: "TaxonMech docs/CURATION.md (record-scope table, Strains); README Known limitations", url: "https://github.com/CultureBotAI/TaxonMech/blob/main/docs/CURATION.md" }, { from: "TaxonMech", to: "TraitMech", kind: "practice", what: "TaxonMech's curation rules leave the traits and phenotypes of a taxon or strain to TraitMech, so they are never TaxonMech records. A TaxonMech record keeps only a count of the Madin and BactoTraits trait assertions about the taxon, never the trait values.", ev: "TaxonMech docs/CURATION.md record table; README Known limitations", url: "https://github.com/CultureBotAI/TaxonMech/blob/main/docs/CURATION.md" }, @@ -485,16 +489,17 @@ Each X-Mech is an **autonomous knowledge factory** that curates, validates, and { from: "TraitMech", to: "ProteinTraitsMech", kind: "schema", what: "ProteinTraitsMech keeps a reviewed snapshot of TraitMech's TraitCategoryEnum. A CI audit that also fetches TraitMech's live schema reports a notice, never a failure, when the snapshot goes stale or when UPPER or OTHER, the only tokens both vocabularies use, is described differently (UPPER currently is). Its fallback history-record scaffolder is adapted from TraitMech's new_history_record.py.", ev: "ProteinTraitsMech conf/traitmech_category_vocabulary.yaml; scripts/audit_cross_mech_categories.py; scripts/new_history_record.py", url: "https://github.com/CultureBotAI/proteintraitsmech/blob/main/conf/traitmech_category_vocabulary.yaml" }, { from: "TraitMech", to: "MediaIngredientMech", kind: "practice", what: "TraitMech leaves chemicals to MediaIngredientMech: its METPO seeder skips the material-entity subtree, which its docs say belongs in MIM rather than TraitMech. MIM's /ground-or-propose-ingredient curation command is ported from TraitMech's /ground-or-propose-metpo, re-aimed at chemical identity instead of phenotype.", ev: "TraitMech docs/SCHEMA.md, README.md, scripts/seed_from_metpo.py; MIM .claude/commands/ground-or-propose-ingredient.md (MIM#92)", url: "https://github.com/CultureBotAI/MediaIngredientMech/blob/main/.claude/commands/ground-or-propose-ingredient.md" }, { from: "CellStructureMech", to: "TaxonMech", kind: "practice", what: "TaxonMech's closed-schema write gate and its curation-history helper are ported from CellStructureMech's modules, which the code credits jointly to HabitatMech and CellStructureMech. Every TaxonMech record is written through them.", ev: "TaxonMech src/taxonmech/validation/write_validated.py; src/taxonmech/curate/curation_event.py", url: "https://github.com/CultureBotAI/TaxonMech/blob/main/src/taxonmech/validation/write_validated.py" }, + { from: "CellStructureMech", to: "TraitMech", kind: "practice", what: "CellStructureMech's scope rule leaves the phenotypes a structure confers, such as motile, flagellated or Gram-negative, to TraitMech. They are never CellStructureMech records, only associated_traits links to TraitMech or METPO terms.", ev: "CellStructureMech docs/CURATION.md (record-scope table); schema description", url: "https://github.com/CultureBotAI/CellStructureMech/blob/main/docs/CURATION.md" }, { from: "CellStructureMech", to: "ProteinTraitsMech", kind: "practice", what: "CellStructureMech's scope rule makes a single protein or protein family a component of a structure, never a record of its own: it grounds to InterPro, Pfam or UniProtKB and is left to ProteinTraitsMech. The schema also declares a proteintraitsmech: prefix, but no record uses it.", ev: "CellStructureMech docs/CURATION.md; schema components slot", url: "https://github.com/CultureBotAI/CellStructureMech/blob/main/docs/CURATION.md" }, { from: "ProteinTraitsMech", to: "TraitMech", kind: "practice", what: "TraitMech's download.yaml source catalogue follows the shape of ProteinTraitsMech's, and its check_sources.py validator is adapted from ProteinTraitsMech's. Unlike the original, it fails a source that records no licence.", ev: "TraitMech download.yaml; scripts/check_sources.py; justfile sources-check", url: "https://github.com/CultureBotAI/TraitMech/blob/main/download.yaml" }, { from: "NaturalProductMech", to: "AntibioticMech", kind: "practice", what: "NaturalProductMech leaves antimicrobial mechanism to AntibioticMech. For the 205 compounds that share a structure with an AntibioticMech record, it links to that record and does not copy its targets, resistance determinants or MIC data.", ev: "NaturalProductMech schema molecular_targets; CLAUDE.md; docs/HARMONIZATION.md", url: "https://github.com/CultureBotAI/NaturalProductMech/blob/main/src/naturalproductmech/schema/naturalproductmech.yaml" }, { from: "AntibioticMech", to: "CellStructureMech", kind: "practice", what: "CellStructureMech's source-queue skill, which ranks the sources in its curation/source_queue.tsv, is adapted from AntibioticMech's skill and keeps its ranking rule and adoption gate. Its stylesheet contract test is ported from AntibioticMech's.", ev: "CellStructureMech .claude/skills/source-queue/SKILL.md; tests/test_stylesheet_contract.py", url: "https://github.com/CultureBotAI/CellStructureMech/blob/main/.claude/skills/source-queue/SKILL.md" }, - { from: "AntibioticMech", to: "NaturalProductMech", kind: "data", what: "NaturalProductMech pins AntibioticMech's structures in an InChIKey inventory. A natural product that shares an InChIKey with an AntibioticMech record links to it and takes its antimicrobial class, but not its targets or resistance data. NaturalProductMech also used AntibioticMech as its template: its source-queue, add-record, curate-record and review-issues skills are adapted from AntibioticMech's.", ev: "NaturalProductMech scripts/extract_antibioticmech.py; data/raw/antibioticmech_inchikeys.tsv; .claude/skills", url: "https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/raw/antibioticmech_inchikeys.tsv" }, + { from: "AntibioticMech", to: "NaturalProductMech", kind: "data", what: "NaturalProductMech pins AntibioticMech's structures in an InChIKey inventory. A natural product that shares an InChIKey with an AntibioticMech record links to it and takes its antimicrobial class, but not its targets or resistance data. NaturalProductMech also used AntibioticMech as its template: its source-queue, add-natural-product (from add-antibiotic), curate-yaml-record and review-open-issues skills, its curation-event helper and its closed-schema write gate are adapted from AntibioticMech's.", ev: "NaturalProductMech scripts/extract_antibioticmech.py; data/raw/antibioticmech_inchikeys.tsv; .claude/skills", url: "https://github.com/CultureBotAI/NaturalProductMech/blob/main/data/raw/antibioticmech_inchikeys.tsv" }, { from: "MediaIngredientMech", to: "HabitatMech", kind: "practice", what: "HabitatMech's seeder checks the label claimed by each upstream kg-microbe isolation-source mapping and, following MediaIngredientMech's SSSOM Rule B4, accepts an exact ontology synonym as well as the canonical label. Per the code, the rule changes no current record.", ev: "HabitatMech src/habitatmech/seed.py verified_mapping_target; tests/test_seed_harmonization.py", url: "https://github.com/CultureBotAI/HabitatMech/blob/main/src/habitatmech/seed.py" }, { from: "MediaIngredientMech", to: "CommunityMech", kind: "data", what: "CommunityMech growth-media components cite MIM ingredients by id (media_ingredient_mech_id), but they use MIM's retired MediaIngredientMech:NNNNNN scheme, so the ids no longer resolve. Its environment-matching tools read MIM's ingredient records and SSSOM mappings. They join on the exactMatch CHEBI term, which is what MIM's CURIE standard recommends; MIM wrote that standard for CommunityMech (MIM#119).", ev: "CommunityMech schema GrowthMediaComponent, src/communitymech/cross_repo_environment.py; MIM docs/CURIE_STANDARD.md", url: "https://github.com/CultureBotAI/CommunityMech/blob/main/src/communitymech/cross_repo_environment.py" }, { from: "MediaIngredientMech", to: "TraitMech", kind: "practice", what: "TraitMech ported its write-time validation gate and curation-event helper from CultureMech by way of MediaIngredientMech's versions, and its composite qc target mirrors MIM's. Its FAPROTAX synonym script follows MIM's rule: correct the label and keep the raw string.", ev: "TraitMech src/traitmech/validation/write_validated.py; src/traitmech/curate/curation_event.py; justfile qc; scripts/add_faprotax_synonyms.py", url: "https://github.com/CultureBotAI/TraitMech/blob/main/src/traitmech/validation/write_validated.py" }, { from: "MediaIngredientMech", to: "ProteinTraitsMech", kind: "practice", what: "ProteinTraitsMech's trait-merge rules, where only an exact identity match is merged and a similar name is only flagged for review, are adapted from MediaIngredientMech's same-ChEBI merge rule. Its oaklib version-pin test is ported from MediaIngredientMech's test of the same name.", ev: "ProteinTraitsMech .claude/skills/merge-traits/SKILL.md (just analyze-merges); tests/test_oaklib_semsql_pin.py", url: "https://github.com/CultureBotAI/proteintraitsmech/blob/main/.claude/skills/merge-traits/SKILL.md" }, - { from: "MediaIngredientMech", to: "CultureMech", kind: "data", what: "About two-thirds of CultureMech recipes link each ingredient to its curated MIM record through mediaingredientmech_chebi_term, and older records keep legacy MediaIngredientMech:NNNNNN ids. CultureMech also resolves ingredient labels against a pinned copy of MIM's label index, types its role slots with MIM's vendored role enums and took over stock solutions from MIM's complex-media list, while MIM's schema leaves recipe bodies to CultureMech.", ev: "CultureMech schema mediaingredientmech_chebi_term, mim_roles.yaml; src/culturemech/ingredients/mim_label_index.py", url: "https://github.com/CultureBotAI/CultureMech/blob/main/src/culturemech/schema/culturemech.yaml" }, + { from: "MediaIngredientMech", to: "CultureMech", kind: "data", what: "5,696 of CultureMech's 6,288 canonical media link ingredients to their curated MIM records through mediaingredientmech_chebi_term, about 70% of all ingredient rows, and older records keep legacy MediaIngredientMech:NNNNNN ids. CultureMech also resolves ingredient labels against a pinned copy of MIM's label index, types its role slots with MIM's vendored role enums and took over stock solutions from MIM's complex-media list, while MIM's schema leaves recipe bodies to CultureMech.", ev: "CultureMech schema mediaingredientmech_chebi_term, mim_roles.yaml; src/culturemech/ingredients/mim_label_index.py", url: "https://github.com/CultureBotAI/CultureMech/blob/main/src/culturemech/schema/culturemech.yaml" }, { from: "CultureMech", to: "CommunityMech", kind: "data", what: "Community records name the CultureMech medium they were grown in, or an environment-matched one, by culturemech_id, and CommunityMech's media linker copies CultureMech recipe components into them. CommunityMech also ported CultureMech's schema-validated writer and its Edison deep-research runner.", ev: "CommunityMech schema GrowthMedia/RelatedMedia culturemech_id; scripts/link_growth_media.py; src/communitymech/validation/write_validated.py", url: "https://github.com/CultureBotAI/CommunityMech/blob/main/src/communitymech/schema/communitymech.yaml" }, { from: "CultureMech", to: "TraitMech", kind: "practice", what: "TraitMech's curation-history helper and its schema-validated YAML writer are ports of CultureMech's, by way of MediaIngredientMech's versions, and nearly every TraitMech write script goes through them. TraitMech's qc recipe also mirrors CultureMech's.", ev: "TraitMech src/traitmech/curate/curation_event.py; src/traitmech/validation/write_validated.py", url: "https://github.com/CultureBotAI/TraitMech/blob/main/src/traitmech/curate/curation_event.py" }, { from: "CultureMech", to: "MediaIngredientMech", kind: "data", what: "MIM reads CultureMech's ingredient-occurrence table to set each record's occurrence counts, to publish a recipe-membership edge list keyed on CultureMech:NNNNNN ids, and to turn labels it cannot resolve into new records and synonyms. CultureMech leaves questions about an ingredient's chemical form to MIM, and MIM's validated record writer and curation-event helper are ported from CultureMech.", ev: "MIM mappings/culturemech_recipe_membership.tsv, scripts/refresh_occurrence_statistics.py; CultureMech docs/DATA_LAYERS.md", url: "https://github.com/CultureBotAI/MediaIngredientMech/blob/main/scripts/build_culturemech_membership.py" } @@ -526,6 +531,7 @@ Each X-Mech is an **autonomous knowledge factory** that curates, validates, and var VOCS = ["CHEBI", "NCBITaxon", "GO", "METPO", "ENVO", "ARO", "UniProt", "DOI"]; var VOC_LABEL = { CHEBI: "ChEBI", NCBITaxon: "NCBITaxon", GO: "GO", METPO: "METPO", ENVO: "ENVO", ARO: "ARO", UniProt: "UniProt", DOI: "citations", other: "other vocabularies" }; var W = 900, H = 760, CX = 450, CY = 372, R = 262; + var HUB_R = 46; // declared here because the cross-reference arcs are routed before the hub is drawn var pos = {}; order.forEach(function (m, i) { var a = -Math.PI / 2 + i * (2 * Math.PI / N); @@ -556,6 +562,67 @@ Each X-Mech is an **autonomous knowledge factory** that curates, validates, and return "M" + s[0] + "," + s[1] + " Q" + cx + "," + cy + " " + e[0] + "," + e[1]; } + // Cross-reference arcs. Pulling the control point away from the chord midpoint + // (curve() above) fails for opposite nodes, whose midpoint is the hub, and lets + // short arcs dip under their neighbours. So an arc first tries to run outside the + // ring: its control point sits on the bisector of the two node angles, the shorter + // way round, and moves outward until the curve clears every other node, but no + // further than the canvas allows. If that fails, as it always does for opposite + // nodes, the arc bows sideways through the interior, around the hub. The second + // arrow of a reverse pair starts one lane wider, or takes the other side inside. + function arcPath(p, q, c, ra, rb) { + function tow(fx, fy, tx, ty, r) { var ddx = tx - fx, ddy = ty - fy, dd = Math.hypot(ddx, ddy); return [fx + ddx / dd * r, fy + ddy / dd * r]; } + var s0 = tow(p.x, p.y, c[0], c[1], ra), e0 = tow(q.x, q.y, c[0], c[1], rb); + return "M" + s0[0] + "," + s0[1] + " Q" + c[0] + "," + c[1] + " " + e0[0] + "," + e0[1]; + } + function arcClears(a, b, c, inside) { + var p = pos[a], q = pos[b]; + for (var t = 0.04; t < 0.97; t += 0.03) { + var u = 1 - t, x = u * u * p.x + 2 * u * t * c[0] + t * t * q.x, y = u * u * p.y + 2 * u * t * c[1] + t * t * q.y; + if (x < 8 || x > W - 8 || y < 8 || y > H - 8) return false; + var fromHub = Math.hypot(x - CX, y - CY); + if (inside ? fromHub < HUB_R + 22 : fromHub < R - 30) return false; + for (var i = 0; i < order.length; i++) { + var o = order[i]; + if (o !== a && o !== b && Math.hypot(x - pos[o].x, y - pos[o].y) < radius(o) + 10) return false; + } + } + return true; + } + function arcControl(a, b, lane, laneBase) { + var p = pos[a], q = pos[b], diff = q.a - p.a; + while (diff > Math.PI) diff -= 2 * Math.PI; + while (diff < -Math.PI) diff += 2 * Math.PI; + var mid = p.a + diff / 2, half = Math.abs(diff) / 2; + if (Math.abs(half - Math.PI / 2) > 1e-6) { + for (var m = laneBase; m <= 84; m += 6) { + var rc = 2 * (R + m) - R * Math.cos(half); // puts the curve's apex at R + m + var c = [CX + rc * Math.cos(mid), CY + rc * Math.sin(mid)]; + if (arcClears(a, b, c, false)) return { c: c, m: m }; + } + } + // Interior route: bow sideways from the chord, on the lane's side, clear of the hub. + var mx = (p.x + q.x) / 2, my = (p.y + q.y) / 2, dx = q.x - p.x, dy = q.y - p.y, d = Math.hypot(dx, dy); + // The normal is taken from the pair in a fixed order, so swapping the ends of a + // reverse pair does not flip it and the two arrows really take opposite sides. + var flip = a < b ? 1 : -1, nx = -dy / d * flip, ny = dx / d * flip, side = lane ? -1 : 1; + for (var k = 140; k <= 420; k += 20) { + for (var sgn = 0; sgn < 2; sgn++) { + var sd = sgn ? -side : side, c2 = [mx + nx * k * sd, my + ny * k * sd]; + if (arcClears(a, b, c2, true)) return { c: c2, m: null }; + } + } + return { c: [mx + nx * 180 * side, my + ny * 180 * side], m: null }; + } + var arcLanes = {}; + function arcOut(a, b, lane, ra, rb) { + var key = [a, b].sort().join("|"), prior = arcLanes[key]; + var base = lane && prior && prior.m !== null ? prior.m + 20 : 18; + var got = arcControl(a, b, lane, base); + if (!lane) arcLanes[key] = got; + return arcPath(pos[a], pos[b], got.c, ra, rb); + } + var svg = document.getElementById("fleet-svg"); var gGov = document.getElementById("fleet-gov"), gEdges = document.getElementById("fleet-edges"), gXrefs = document.getElementById("fleet-xrefs"), gHubE = document.getElementById("fleet-hubedges"), gHub = document.getElementById("fleet-hub"), gNodes = document.getElementById("fleet-nodes"); var tip = document.getElementById("fleet-tip"), detail = document.getElementById("fleet-detail"); @@ -604,7 +671,7 @@ Each X-Mech is an **autonomous knowledge factory** that curates, validates, and // ---- Cross-reference arcs ---- var xrefEls = XREFS.map(function (x, i) { var reverse = XREFS.some(function (y, j) { return j < i && y.from === x.to && y.to === x.from; }); - var d = curve(x.from, x.to, reverse ? -0.62 : -0.38, 0, radius(x.from) + 3, radius(x.to) + 5); + var d = arcOut(x.from, x.to, reverse ? 1 : 0, radius(x.from) + 3, radius(x.to) + 5); var path = el("path", { "class": "edge xref" + (x.kind === "data" ? "" : " weak"), d: d, "marker-end": "url(#fleet-arrow)", tabindex: 0, role: "button", "aria-label": x.from + " to " + x.to + ": " + x.what }, gXrefs); var hit = el("path", { "class": "edge hit", d: d }, gXrefs); path.addEventListener("keydown", function (ev) { if (ev.key === "Enter" || ev.key === " ") { ev.preventDefault(); selectXref(rec); } }); @@ -618,7 +685,7 @@ Each X-Mech is an **autonomous knowledge factory** that curates, validates, and }); // ---- Hub and spokes ---- - var hubR = 46; + var hubR = HUB_R; var hubEls = HUB.map(function (h) { var p = pos[h.mech], dx = CX - p.x, dy = CY - p.y, d = Math.hypot(dx, dy); var ux = dx / d, uy = dy / d, off = h.dir === "out" ? 6 : -6; @@ -734,7 +801,7 @@ Each X-Mech is an **autonomous knowledge factory** that curates, validates, and detail.innerHTML = '

Reading the graph

' + N + ' views of one microbe

' + '

Clockwise from the top the ring walks from the environment a microbe lives in to the medium it is grown in: habitat, community, taxon identity, traits, cell structures, proteins, natural products, antibiotics, ingredients, media. A culture medium is a synthetic habitat, so the ring closes.

' + - '

Dashed arcs outside the ring are direct cross-references, where one Mech\'s records, schema or curation practice name another; spokes tie each Mech to the central kg-microbe graph. Turn on the shared-vocabulary layer to see one colored chord per ontology that two measured Mechs both cite. The September 2026 census covers all ten Mechs; TaxonMech shares taxon identifiers with most of the others. Hover a node for its detail and click it to open that Mech; click a chord, arc or spoke to see what it carries and to jump to the matching records.

' + + '

Arcs outside the ring are direct cross-references, where one Mech\'s records, schema or curation practice name another, dashed for record data and dotted for schema or practice; spokes tie each Mech to the central kg-microbe graph. Turn on the shared-vocabulary layer to see one colored chord per ontology that two measured Mechs both cite. The September 2026 census covers all ten Mechs; TaxonMech shares taxon identifiers with most of the others. Hover a node for its detail and click it to open that Mech; click a chord, arc or spoke to see what it carries and to jump to the matching records.

' + '

Strongest shared vocabulary' + (state.voc ? ' (' + esc(state.voc) + ')' : '') + '

' + strongest() + '
'; } function selectNode(m) { @@ -993,14 +1060,14 @@ Alongside record browsing, the Mechs publish complementary ways to explore their ## How the Mechs reference each other -Beyond shared vocabulary, Mechs name one another directly, in record fields, in schema slots, and in the curation practices they adopt from each other. Arrows point at the Mech that consumes, or at the one a scope decision defers to. Taxa tie TaxonMech to most of the fleet in a different way: the other Mechs cite NCBI Taxonomy identifiers, and most of the species and strains they cite are TaxonMech records. Those links are shared identifiers rather than direct references, so they appear as chords in the graph's shared-vocabulary layer, not as arrows. +Beyond shared vocabulary, Mechs name one another directly, in record fields, in schema slots, and in the curation practices they adopt from each other. Arrows point at the Mech that consumes, or at the one a scope decision defers to. Taxa tie TaxonMech to most of the fleet in a different way: eight of the other nine Mechs cite NCBI Taxonomy identifiers (MediaIngredientMech cites none), and most of the species and strains they cite are TaxonMech records. Those links are shared identifiers rather than direct references, so they appear as chords in the graph's shared-vocabulary layer, not as arrows.
HabitatMech→TaxonMech
TaxonMech's causal-graph node types are the same 16 as HabitatMech's. A habitat node may be a HabitatMech or ENVO term, the schema declares the habitatmech: prefix, and TaxonMech's curation-event helper and closed-schema write gate are ported from HabitatMech's and CellStructureMech's; no TaxonMech record has a causal graph yet.Schema · TaxonMech schema CausalNodeTypeEnum and prefixes; src/taxonmech/curate/curation_event.py, src/taxonmech/validation/write_validated.py
HabitatMech→CellStructureMech
CellStructureMech's curation-event helper and closed-schema write gate are ported from HabitatMech's modules of the same names, which HabitatMech had itself ported from TraitMech. 17 of CellStructureMech's writer scripts use both.Practice · CellStructureMech src/cellstructuremech/curate/curation_event.py; validation/write_validated.py
-
HabitatMech→AntibioticMech
AntibioticMech's static-site generator is ported from HabitatMech's render_pages.py, including its paged category pages that filter through a JSON index, and its stylesheet is ported from HabitatMech's. Together they render AntibioticMech's whole browser.Practice · AntibioticMech scripts/render_pages.py; src/antibioticmech/templates/style.css
+
HabitatMech→AntibioticMech
AntibioticMech's static-site generator is ported from HabitatMech's render_pages.py, including its paged category pages that filter through a JSON index, and its stylesheet is ported from HabitatMech's. Together they render AntibioticMech's whole browser. Its curation-event helper and closed-schema write gate are HabitatMech's copies as well; their docstrings still credit TraitMech, which HabitatMech ported them from.Practice · AntibioticMech scripts/render_pages.py; src/antibioticmech/templates/style.css; src/antibioticmech/curate/curation_event.py
CommunityMech→TraitMech
TraitMech's Edison deep-research runner and skill are ports of CommunityMech's research_community_edison.py and deep-research-community skill. Its METPO proposal skill takes CommunityMech's v1 proposal cohort as the worked example to follow, and keeps TraitMech's placeholder ID blocks clear of that cohort's.Practice · TraitMech scripts/research_trait_edison.py; .claude/skills/deep-research-trait and metpo-proposal
-
CommunityMech→MediaIngredientMech
MediaIngredientMech imported 17 growth-media ingredient names that CommunityMech could not match to an existing ingredient. Each record keeps the name as a synonym from communitymech-unmapped and cites its CommunityMech source id (communitymech.ingredient:name). 10 records are still live; the other 7 were merged into existing records.Record data · MIM data/ingredients (source communitymech-unmapped); CommunityMech reports/ingredient_mapping.csv
+
CommunityMech→MediaIngredientMech
MediaIngredientMech imported 17 growth-media ingredient names that CommunityMech could not match to an existing ingredient. Each record keeps the name as a synonym from communitymech-unmapped and cites its CommunityMech source id (communitymech.ingredient:name). 10 records are still live; the other 7 were merged into existing records.Record data · MIM data/ingredients (synonym source communitymech-unmapped)
CommunityMech→CultureMech
CultureMech turned CommunityMech growth media into recipes that keep their CommunityMech ids as provenance. It also backfilled recipe source environments from the ENVO terms of CommunityMech records that point at those recipes.Record data · CultureMech scripts/import_from_communitymech.py, scripts/backfill_source_environment.py; schema SourceData.community_ids
TaxonMech→HabitatMech
TaxonMech's curation rules leave a taxon's habitats and its strains' isolation sources to HabitatMech. A TaxonMech record keeps only source attestation counts, and none of its records carries habitat data.Practice · TaxonMech docs/CURATION.md (record-scope table, Strains); README Known limitations
TaxonMech→TraitMech
TaxonMech's curation rules leave the traits and phenotypes of a taxon or strain to TraitMech, so they are never TaxonMech records. A TaxonMech record keeps only a count of the Madin and BactoTraits trait assertions about the taxon, never the trait values.Practice · TaxonMech docs/CURATION.md record table; README Known limitations
@@ -1012,16 +1079,17 @@ Beyond shared vocabulary, Mechs name one another directly, in record fields, in
TraitMech→ProteinTraitsMech
ProteinTraitsMech keeps a reviewed snapshot of TraitMech's TraitCategoryEnum. A CI audit that also fetches TraitMech's live schema reports a notice, never a failure, when the snapshot goes stale or when UPPER or OTHER, the only tokens both vocabularies use, is described differently (UPPER currently is). Its fallback history-record scaffolder is adapted from TraitMech's new_history_record.py.Schema · ProteinTraitsMech conf/traitmech_category_vocabulary.yaml; scripts/audit_cross_mech_categories.py; scripts/new_history_record.py
TraitMech→MediaIngredientMech
TraitMech leaves chemicals to MediaIngredientMech: its METPO seeder skips the material-entity subtree, which its docs say belongs in MIM rather than TraitMech. MIM's /ground-or-propose-ingredient curation command is ported from TraitMech's /ground-or-propose-metpo, re-aimed at chemical identity instead of phenotype.Practice · TraitMech docs/SCHEMA.md, README.md, scripts/seed_from_metpo.py; MIM .claude/commands/ground-or-propose-ingredient.md (MIM#92)
CellStructureMech→TaxonMech
TaxonMech's closed-schema write gate and its curation-history helper are ported from CellStructureMech's modules, which the code credits jointly to HabitatMech and CellStructureMech. Every TaxonMech record is written through them.Practice · TaxonMech src/taxonmech/validation/write_validated.py; src/taxonmech/curate/curation_event.py
+
CellStructureMech→TraitMech
CellStructureMech's scope rule leaves the phenotypes a structure confers, such as motile, flagellated or Gram-negative, to TraitMech. They are never CellStructureMech records, only associated_traits links to TraitMech or METPO terms.Practice · CellStructureMech docs/CURATION.md (record-scope table); schema description
CellStructureMech→ProteinTraitsMech
CellStructureMech's scope rule makes a single protein or protein family a component of a structure, never a record of its own: it grounds to InterPro, Pfam or UniProtKB and is left to ProteinTraitsMech. The schema also declares a proteintraitsmech: prefix, but no record uses it.Practice · CellStructureMech docs/CURATION.md; schema components slot
ProteinTraitsMech→TraitMech
TraitMech's download.yaml source catalogue follows the shape of ProteinTraitsMech's, and its check_sources.py validator is adapted from ProteinTraitsMech's. Unlike the original, it fails a source that records no licence.Practice · TraitMech download.yaml; scripts/check_sources.py; justfile sources-check
NaturalProductMech→AntibioticMech
NaturalProductMech leaves antimicrobial mechanism to AntibioticMech. For the 205 compounds that share a structure with an AntibioticMech record, it links to that record and does not copy its targets, resistance determinants or MIC data.Practice · NaturalProductMech schema molecular_targets; CLAUDE.md; docs/HARMONIZATION.md
AntibioticMech→CellStructureMech
CellStructureMech's source-queue skill, which ranks the sources in its curation/source_queue.tsv, is adapted from AntibioticMech's skill and keeps its ranking rule and adoption gate. Its stylesheet contract test is ported from AntibioticMech's.Practice · CellStructureMech .claude/skills/source-queue/SKILL.md; tests/test_stylesheet_contract.py
-
AntibioticMech→NaturalProductMech
NaturalProductMech pins AntibioticMech's structures in an InChIKey inventory. A natural product that shares an InChIKey with an AntibioticMech record links to it and takes its antimicrobial class, but not its targets or resistance data. NaturalProductMech also used AntibioticMech as its template: its source-queue, add-record, curate-record and review-issues skills are adapted from AntibioticMech's.Record data · NaturalProductMech scripts/extract_antibioticmech.py; data/raw/antibioticmech_inchikeys.tsv; .claude/skills
+
AntibioticMech→NaturalProductMech
NaturalProductMech pins AntibioticMech's structures in an InChIKey inventory. A natural product that shares an InChIKey with an AntibioticMech record links to it and takes its antimicrobial class, but not its targets or resistance data. NaturalProductMech also used AntibioticMech as its template: its source-queue, add-natural-product (from add-antibiotic), curate-yaml-record and review-open-issues skills, its curation-event helper and its closed-schema write gate are adapted from AntibioticMech's.Record data · NaturalProductMech scripts/extract_antibioticmech.py; data/raw/antibioticmech_inchikeys.tsv; .claude/skills
MediaIngredientMech→HabitatMech
HabitatMech's seeder checks the label claimed by each upstream kg-microbe isolation-source mapping and, following MediaIngredientMech's SSSOM Rule B4, accepts an exact ontology synonym as well as the canonical label. Per the code, the rule changes no current record.Practice · HabitatMech src/habitatmech/seed.py verified_mapping_target; tests/test_seed_harmonization.py
MediaIngredientMech→CommunityMech
CommunityMech growth-media components cite MIM ingredients by id (media_ingredient_mech_id), but they use MIM's retired MediaIngredientMech:NNNNNN scheme, so the ids no longer resolve. Its environment-matching tools read MIM's ingredient records and SSSOM mappings. They join on the exactMatch CHEBI term, which is what MIM's CURIE standard recommends; MIM wrote that standard for CommunityMech (MIM#119).Record data · CommunityMech schema GrowthMediaComponent, src/communitymech/cross_repo_environment.py; MIM docs/CURIE_STANDARD.md
MediaIngredientMech→TraitMech
TraitMech ported its write-time validation gate and curation-event helper from CultureMech by way of MediaIngredientMech's versions, and its composite qc target mirrors MIM's. Its FAPROTAX synonym script follows MIM's rule: correct the label and keep the raw string.Practice · TraitMech src/traitmech/validation/write_validated.py; src/traitmech/curate/curation_event.py; justfile qc; scripts/add_faprotax_synonyms.py
MediaIngredientMech→ProteinTraitsMech
ProteinTraitsMech's trait-merge rules, where only an exact identity match is merged and a similar name is only flagged for review, are adapted from MediaIngredientMech's same-ChEBI merge rule. Its oaklib version-pin test is ported from MediaIngredientMech's test of the same name.Practice · ProteinTraitsMech .claude/skills/merge-traits/SKILL.md (just analyze-merges); tests/test_oaklib_semsql_pin.py
-
MediaIngredientMech→CultureMech
About two-thirds of CultureMech recipes link each ingredient to its curated MIM record through mediaingredientmech_chebi_term, and older records keep legacy MediaIngredientMech:NNNNNN ids. CultureMech also resolves ingredient labels against a pinned copy of MIM's label index, types its role slots with MIM's vendored role enums and took over stock solutions from MIM's complex-media list, while MIM's schema leaves recipe bodies to CultureMech.Record data · CultureMech schema mediaingredientmech_chebi_term, mim_roles.yaml; src/culturemech/ingredients/mim_label_index.py
+
MediaIngredientMech→CultureMech
5,696 of CultureMech's 6,288 canonical media link ingredients to their curated MIM records through mediaingredientmech_chebi_term, about 70% of all ingredient rows, and older records keep legacy MediaIngredientMech:NNNNNN ids. CultureMech also resolves ingredient labels against a pinned copy of MIM's label index, types its role slots with MIM's vendored role enums and took over stock solutions from MIM's complex-media list, while MIM's schema leaves recipe bodies to CultureMech.Record data · CultureMech schema mediaingredientmech_chebi_term, mim_roles.yaml; src/culturemech/ingredients/mim_label_index.py
CultureMech→CommunityMech
Community records name the CultureMech medium they were grown in, or an environment-matched one, by culturemech_id, and CommunityMech's media linker copies CultureMech recipe components into them. CommunityMech also ported CultureMech's schema-validated writer and its Edison deep-research runner.Record data · CommunityMech schema GrowthMedia/RelatedMedia culturemech_id; scripts/link_growth_media.py; src/communitymech/validation/write_validated.py
CultureMech→TraitMech
TraitMech's curation-history helper and its schema-validated YAML writer are ports of CultureMech's, by way of MediaIngredientMech's versions, and nearly every TraitMech write script goes through them. TraitMech's qc recipe also mirrors CultureMech's.Practice · TraitMech src/traitmech/curate/curation_event.py; src/traitmech/validation/write_validated.py
CultureMech→MediaIngredientMech
MIM reads CultureMech's ingredient-occurrence table to set each record's occurrence counts, to publish a recipe-membership edge list keyed on CultureMech:NNNNNN ids, and to turn labels it cannot resolve into new records and synonyms. CultureMech leaves questions about an ingredient's chemical form to MIM, and MIM's validated record writer and curation-event helper are ported from CultureMech.Record data · MIM mappings/culturemech_recipe_membership.tsv, scripts/refresh_occurrence_statistics.py; CultureMech docs/DATA_LAYERS.md
diff --git a/resources.md b/resources.md index 0a10ecc..52a51ef 100644 --- a/resources.md +++ b/resources.md @@ -218,7 +218,7 @@ Autonomous knowledge factory for protein sequence, structure, and function trait **What it does**: Gives the fleet one record per habitat concept, so that isolation sources expressed differently by each upstream database resolve to a single identity. -**Related**: Grounds GOLD's culture-media habitat to BTO:0000316 culture medium and points to [CultureMech](/culturemech/) for related curation. +**Related**: Its causal graphs reuse most of [TraitMech](https://culturebotai.github.io/TraitMech/)'s node types; TaxonMech leaves a taxon's habitats and isolation sources to it; its site generator became AntibioticMech's. See the [relationship graph](/mechs/#fleet-graph). --- @@ -247,6 +247,8 @@ Autonomous knowledge factory for protein sequence, structure, and function trait **What it does**: Serves as the taxonomic counterpart of the other Mechs. Its 21,071 listed strains with genome links carry NCBI, GTDB, BV-BRC/PATRIC, IMG or AllTheBacteria identifiers; taxon pages also show StrainInfo references and the supporting evidence. Higher taxa appear only in a record's lineage, never as records of their own. +**Related**: Leaves a taxon's traits to [TraitMech](https://culturebotai.github.io/TraitMech/), its habitats to [HabitatMech](https://culturebotai.github.io/HabitatMech/) and its growth media to [CultureMech](/culturemech/), keeping only attestation counts. Most taxa the other Mechs cite are TaxonMech records, which the [relationship graph](/mechs/#fleet-graph) shows as shared NCBI Taxonomy identifiers. + --- ### Common Workflows diff --git a/scripts/fleet/assemble_page.py b/scripts/fleet/assemble_page.py index 228a47e..b35391a 100644 --- a/scripts/fleet/assemble_page.py +++ b/scripts/fleet/assemble_page.py @@ -115,8 +115,8 @@ def assemble(template, fragment, data, snapshot, stats, census): counts = fleet_records(template) if len(counts) != len(names): raise ValueError("Every Mech card must carry a record count") - # The census measures fewer members than the fleet has, so its vocabulary - # tally is labelled as the dated census on the page rather than as current. + # The census is a dated scan, so its vocabulary tally is labelled with its own + # run date rather than as current, and its coverage is stated below. # Keys beginning with an underscore are the scan's own metadata, not Mechs. # Read rather than pop: assemble() is handed a parsed document and must not # consume it, or a second call with the same object fails (#81). diff --git a/scripts/fleet/build_subsets.py b/scripts/fleet/build_subsets.py index 8def209..59ade46 100644 --- a/scripts/fleet/build_subsets.py +++ b/scripts/fleet/build_subsets.py @@ -46,7 +46,7 @@ STRICT=re.compile(r"^\s*(?:-\s*)?(?:id|identifier|term|term_id|ontology_id|curie|taxon_id|taxon|organism)\s*:\s*['\"]?(CHEBI|NCBITaxon|GO|ENVO|METPO|ARO|UniProtKB|UniProt|InterPro|IPR|Pfam|PFAM|PATO|UBERON|FOODON|KEGG|CAS|cas):([A-Za-z0-9_.\-]+)['\"]?\s*$") strict=collections.defaultdict(collections.Counter) LAB=re.compile(r"^\s*(?:-\s*)?(?:label|name|term_label|preferred_label|preferred_term|taxon_label|organism_label|ontology_label)\s*:\s*(.+?)\s*$") -AUTH={"MIBiG":["NaturalProductMech"],"NPAtlas":["NaturalProductMech"],"CHEBI":["MediaIngredientMech","AntibioticMech","CultureMech"],"NCBITaxon":["HabitatMech","CommunityMech","TraitMech"],"GO":["CellStructureMech","CommunityMech","TraitMech"],"METPO":["TraitMech"],"ARO":["AntibioticMech"],"ENVO":["HabitatMech","CommunityMech","MediaIngredientMech"],"UBERON":["HabitatMech","MediaIngredientMech","CultureMech"],"FOODON":["HabitatMech","MediaIngredientMech","CultureMech"],"UniProt":["CellStructureMech","TraitMech"],"InterPro":["TraitMech"],"Pfam":["CellStructureMech"],"KEGG":["CultureMech"],"PATO":["TraitMech"],"CAS":["MediaIngredientMech"],"DOI":[]} +AUTH={"MIBiG":["NaturalProductMech"],"NPAtlas":["NaturalProductMech"],"CHEBI":["MediaIngredientMech","AntibioticMech","CultureMech"],"NCBITaxon":["TaxonMech","HabitatMech","CommunityMech","TraitMech"],"GO":["CellStructureMech","CommunityMech","TraitMech"],"METPO":["TraitMech"],"ARO":["AntibioticMech"],"ENVO":["HabitatMech","CommunityMech","MediaIngredientMech"],"UBERON":["HabitatMech","MediaIngredientMech","CultureMech"],"FOODON":["HabitatMech","MediaIngredientMech","CultureMech"],"UniProt":["CellStructureMech","TraitMech"],"InterPro":["TraitMech"],"Pfam":["CellStructureMech"],"KEGG":["CultureMech"],"PATO":["TraitMech"],"CAS":["MediaIngredientMech"],"DOI":[]} def unq(v): v=v.strip() while len(v)>=2 and v[0]==v[-1] and v[0] in "'\"": v=v[1:-1].strip() @@ -102,13 +102,18 @@ def slug_for(m, f, doc_id, doc_label=""): return None def scan(m, keep=None, cap_cell=300, keep_prefixes=()): """Return per-mech index: term -> [(slug,label)], prefix -> (count, first refs), term labels votes.""" - cfg=MECHS[m]; root=cfg["root"]; terms=collections.defaultdict(list); cells=collections.defaultdict(lambda:[0,[]]); votes=collections.defaultdict(collections.Counter); nfiles=0; nolink=0 + cfg=MECHS[m]; root=cfg["root"]; terms=collections.defaultdict(list); cells=collections.defaultdict(lambda:[0,[]]); votes=collections.defaultdict(collections.Counter); own={}; nfiles=0; nolink=0 for f in record_paths(m): txt=read_record(f) nfiles+=1 head=txt[:4000] mid=re.search(r"^(?:identifier|id)\s*:\s*(\S+)",head,flags=re.M); doc_id=mid.group(1).strip("'\"") if mid else "" - ml=re.search(r"^(?:label|preferred_term|display_name|title|name)\s*:\s*(.+)$",head,flags=re.M); doc_label=unq(ml.group(1)) if ml else os.path.basename(f)[:-5] + # A long label can be folded onto indented continuation lines; read them all + # rather than stopping at the first line (#165). + ml=re.search(r"^(?:label|preferred_term|display_name|title|name)\s*:\s*(.+(?:\n[ \t]+(?![\w-]+\s*:)(?!-\s)\S.*)*)$",head,flags=re.M) + doc_label=unq(" ".join(part.strip() for part in ml.group(1).split("\n"))) if ml else os.path.basename(f)[:-5] + # A TaxonMech record's own label names the taxon it is keyed by (#163). + if m=="TaxonMech" and doc_id and ml: own[doc_id]=doc_label slug=slug_for(m,f,doc_id,doc_label) if slug is None: nolink+=1; continue assert re.fullmatch(r"[A-Za-z0-9_.~%\-/]+",slug), (m,slug) @@ -152,7 +157,7 @@ def scan(m, keep=None, cap_cell=300, keep_prefixes=()): if v and not v.startswith("http") and "#" not in v: votes[t][v]+=1 break print(m,"files",nfiles,"unlinked",nolink,"terms",len(terms),flush=True) - return dict(terms=terms,cells=cells,votes=votes) + return dict(terms=terms,cells=cells,votes=votes,own=own) def main(): prepare() # Recorded like the census's, so a test can check both passes read the same @@ -175,8 +180,12 @@ def main(): # labels labels={} allterms=set().union(*[set(idx[m]["terms"]) for m in ORDER]) + taxon_own=idx["TaxonMech"]["own"] for t in allterms: p=t.split(":")[0] + # A taxon TaxonMech keys a record by takes that record's label: other Mechs + # spell taxa variously, and a split vote otherwise left the term unnamed (#163). + if t in taxon_own: labels[t]=taxon_own[t]; continue c=strict.get(t) if c: l,n=c.most_common(1)[0] @@ -211,7 +220,11 @@ def main(): by=dict(sorted(byp.items(), key=lambda kv:(-kv[1], kv[0]))) doc={"a":a,"b":b,"base":{a:MECHS[a]["base"],b:MECHS[b]["base"]},"n":len(shared),"by":by,"terms":rows} fn=f"{a}--{b}.json"; json.dump(doc,open(f"{OUT}/edges/{fn}","w"),separators=(",",":"),ensure_ascii=False) - summary["edges"][f"{a}|{b}"]={"n":len(shared),"by":by,"ex":[{"id":r["id"],"label":r["l"]} for r in rows if r["l"] and r["id"].split(":")[0] not in CITATION][:3]} + ex=[r for r in rows if r["l"] and r["id"].split(":")[0] not in CITATION] + # A TaxonMech overlap also holds higher taxa that appear only in lineages, and + # they sort first by record count. Show taxa TaxonMech has records for (#164). + if "TaxonMech" in (a,b): ex.sort(key=lambda r: r["id"] not in taxon_own) + summary["edges"][f"{a}|{b}"]={"n":len(shared),"by":by,"ex":[{"id":r["id"],"label":r["l"]} for r in ex][:3]} print("edge",a,b,len(shared),os.path.getsize(f"{OUT}/edges/{fn}")//1024,"KB") for m in ORDER: # Sorted for the same reason: cells are keyed in the order a set of diff --git a/tests/test_fleet_page.py b/tests/test_fleet_page.py index c2cfc7f..10858b9 100644 --- a/tests/test_fleet_page.py +++ b/tests/test_fleet_page.py @@ -92,6 +92,18 @@ def test_the_meta_description_opens_like_a_sentence(self): self.assertTrue(description.group(1).isupper(), f"description opens with {description.group(1)!r}, not a capital") + def test_census_coverage_reads_as_a_fraction_while_a_member_is_unmeasured(self): + # The page said "nine of the ten Mechs" until TaxonMech was measured (#87); + # the same wording has to come back if a member ever drops out (#171). + self.census.pop("TaxonMech") + self.data["order"].remove("TaxonMech") + self.data["heat"].pop("TaxonMech") + self.data["vocab_edges"] = [e for e in self.data["vocab_edges"] if "TaxonMech" not in (e["a"], e["b"])] + self.data["cells"] = {k: v for k, v in self.data["cells"].items() if not k.startswith("TaxonMech--")} + page = self.render() + self.assertIn("census covers nine of the ten Mechs", page) + self.assertNotIn("all ten Mechs", page) + def test_number_word_falls_back_to_a_numeral_past_the_short_words(self): self.assertEqual(number_word(9), 'nine') self.assertEqual(number_word(10), 'ten') @@ -573,6 +585,17 @@ def run_once(self, fixture, out, seed): self.assertEqual(done.returncode, 0, done.stderr[-2000:]) return {str(p.relative_to(out)): p.read_bytes() for p in sorted(out.rglob("*.json"))} + def test_a_folded_label_is_read_whole(self): + # YAML folds a long label onto indented continuation lines; the record + # link used to carry only the first line (#165). + tmp = Path(tempfile.mkdtemp()); self.addCleanup(shutil.rmtree, tmp, ignore_errors=True) + self.build_fixture(tmp / "mechs") + folder = tmp / "mechs" / "TaxonMech" / roots._record_dirs("TaxonMech")[0] + (folder / "folded.yaml").write_text("identifier: NCBITaxon:4\nlabel: Bacterium with a name long enough\n to fold onto a second line\nterms: " + self.SHARED + "\n") + run = self.run_once(tmp / "mechs", tmp / "run", 1) + cells = run["fleet/cells/TaxonMech--NCBITaxon.json"].decode() + self.assertIn("Bacterium with a name long enough to fold onto a second line", cells) + def test_output_does_not_depend_on_the_hash_seed(self): tmp = Path(tempfile.mkdtemp()); self.addCleanup(shutil.rmtree, tmp, ignore_errors=True) self.build_fixture(tmp / "mechs") From d0bbb19bac64c12e6f99598497b87b655ed747df Mon Sep 17 00:00:00 2001 From: "marcin p. joachimiak" <4625870+realmarcin@users.noreply.github.com> Date: Fri, 25 Sep 2026 11:27:50 -0700 Subject: [PATCH 09/16] Cite CultureMech's committed README now that its pages/ index is gone again #120 had pointed CultureMech's Browse link and its card check at culturebotai.github.io/CultureMech/pages/, which was live on 2026-09-24 and stated the canonical 6,288 merged records. It returns 404 again on 2026-09-25 (#175): CultureMech publishes only committed files from main, pages/index.html has been untracked since CultureMech #320, and the copy that was served was a leftover the 16:22Z Pages rebuild removed. It had also been 404 on 2026-09-20. The Browse link goes back to the site root, which serves the app/ browser. The card note cites the README's corpus snapshot at the pin. check_cards.py reads the committed README (it now accepts an absolute URL), and the audit records it as CultureMech's source; the live README is byte-identical to the pinned one. culturemech.md and _fleet/README.md stop saying the index is live. Closes #175. Co-Authored-By: Claude Opus 5.5 (1M context) --- _fleet/README.md | 15 +++++++++------ _fleet/data/site_audit.json | 21 +++++++++++---------- _fleet/mechs_template.md | 4 ++-- culturemech.md | 2 +- mechs.md | 4 ++-- scripts/fleet/check_cards.py | 12 +++++++----- 6 files changed, 32 insertions(+), 26 deletions(-) diff --git a/_fleet/README.md b/_fleet/README.md index 94c9a33..837e21c 100644 --- a/_fleet/README.md +++ b/_fleet/README.md @@ -130,8 +130,8 @@ Record links resolve to each Mech's published page where one exists (TraitMech, CellStructureMech, AntibioticMech, HabitatMech, CommunityMech, TaxonMech's taxon.html route, ProteinTraitsMech hash routes) and to the record's source file on GitHub for CultureMech, MediaIngredientMech and NaturalProductMech in the existing census indexes, -although CultureMech (`pages/media/`) and NaturalProductMech (`pages//`) -now publish per-record pages. CommunityMech's four `data/isolates` records have no +although NaturalProductMech now publishes per-record pages (`pages//`); +CultureMech's `pages/media/` pages come and go with its untracked `pages/` (#175). CommunityMech's four `data/isolates` records have no published page, so they get no record link and are left out of the record lists and overlaps; the census still counts them. TaxonMech's record links open its taxon pages. NaturalProductMech's browse site @@ -182,10 +182,13 @@ changed after the pins without changing their figures; the audit records each live hash beside the hash of the committed copy at the pin. CultureMech's README inventory at the pinned revision reports 15,878 normalized -records and 6,288 merged records. `/pages/` is live again and lists the same -6,288 merged media records, so the card links there and `check_cards.py` reads -it. The `app/` landing tile, which the site root redirects to, still reads -10,657; the `app/` browser itself serves the 15,878 normalized records. +records and 6,288 merged records, and the card cites it: no published page states +the canonical count. The `app/` landing tile, which the site root redirects to, +still reads 10,657; the `app/` browser itself serves the 15,878 normalized +records. Its `/pages/` media index was live on September 24 and gone again on +September 25: `pages/index.html` has been untracked since CultureMech #320, so it +survives only in stale deployments (#175). `check_cards.py` therefore reads the +committed README. Reviewed-record counts come from `mech_stats.py`, which counts a record as reviewed only where the Mech's schema has a status that can say REVIEWED; the diff --git a/_fleet/data/site_audit.json b/_fleet/data/site_audit.json index 61c4392..e677033 100644 --- a/_fleet/data/site_audit.json +++ b/_fleet/data/site_audit.json @@ -1,5 +1,5 @@ { - "checked_at_utc": "2026-09-25T05:58:30+00:00", + "checked_at_utc": "2026-09-25T18:27:30+00:00", "local_date": "2026-09-24", "pinned_at_utc": "2026-09-25T02:06:03+00:00", "scope": "Public main revisions pinned once for the whole refresh, and the deployed GitHub Pages responses; the vocabulary census, subsets and card stats were regenerated at the same pins.", @@ -24,10 +24,10 @@ "card_records": 542, "merged_prs": 611, "site": "https://culturebotai.github.io/CellStructureMech/pages/index.html", - "site_html_sha256": "46582d729ff175f3e5cda8fd6040d73492aeb3debacaaeffbf228a0277f69d10", + "site_html_sha256": "30ce6df279536883e8f65b2091a25e36ca0093864aba4a65996e424ff841363c", "site_html_sha256_at_pin": "55909b291392a027c58b9206fd49ea13d67b83165a593920fdb65a62ef0bac66", - "notes": "542 data/structures records at the pin, equal to the stat tile (13 categories, 475 GO-grounded, 196 membrane organelles). All 542 are PROPOSED, so none is reviewed. The live index.html had moved past the pin when this audit was written; site_html_sha256 is the live copy and site_html_sha256_at_pin is pages/index.html at the pin. The site moved past the pin during the refresh and showed 548 when this audit was written; the card keeps the pinned figure, 542.", - "site_figure_at_check": 548 + "notes": "542 data/structures records at the pin, equal to the stat tile (13 categories, 475 GO-grounded, 196 membrane organelles). All 542 are PROPOSED, so none is reviewed. The live index.html had moved past the pin when this audit was written; site_html_sha256 is the live copy and site_html_sha256_at_pin is pages/index.html at the pin. The site moved past the pin during the refresh and showed 575 when this audit was written; the card keeps the pinned figure, 542.", + "site_figure_at_check": 575 }, { "repo": "CommunityMech", @@ -55,9 +55,10 @@ "readme_url": "https://github.com/CultureBotAI/CultureMech/blob/faaf033b8c5386aaf2cb6f28fc527678d00cf83b/README.md", "card_records": 6288, "merged_prs": 253, - "site": "https://culturebotai.github.io/CultureMech/pages/", - "site_html_sha256": "253608644e3542df93206f8480a1d5d39aafe43456aaabcd9d4d3141befb794a", - "notes": "pages/ states 6,288 media records, equal to data/merge_yaml/merged at the pin and to the README corpus snapshot (15,878 normalized, 6,288 merged). The app/ landing tile still reads 10,657, a legacy figure that matches no data layer. The served file is built in CI rather than committed, so there is no copy at the pin to compare." + "site": "https://raw.githubusercontent.com/CultureBotAI/CultureMech/main/README.md", + "site_html_sha256": "9bc06d232a67fa55cdef539fec2f52fa2644f7cf50e2820e223cc26106ee6f51", + "site_html_sha256_at_pin": "9bc06d232a67fa55cdef539fec2f52fa2644f7cf50e2820e223cc26106ee6f51", + "notes": "The committed README's corpus snapshot states 15,878 normalized and 6,288 merged records, equal to data/merge_yaml/merged at the pin; no published page states the canonical count. The app/ landing tile still reads 10,657, a legacy figure that matches no data layer, and the pages/ media index, untracked upstream, was removed by the 2026-09-25 Pages rebuild (#175). The live README.md is byte-identical to README.md at the pin." }, { "repo": "HabitatMech", @@ -130,10 +131,10 @@ "card_records": 763, "merged_prs": 656, "site": "https://culturebotai.github.io/TraitMech/pages/index.html", - "site_html_sha256": "643c043069d913f8f2ea4dfec41c4faefdcd1ce569a2b45e87e16b3e4b154597", + "site_html_sha256": "21fd928ae51ddaca7a9f1e5cafce81a37b055c97ab8a83442ba19021acc2daeb", "site_html_sha256_at_pin": "e36417a4650c1e05cdee1bcc750082c1541c57530c5bb60d795a6c3eb061120b", - "notes": "763 data/traits records at the pin (427 REVIEWED, 248 PROPOSED, 50 DEPRECATED, 38 SEEDED; 519 with causal graphs), equal to the landing page, which shows 62.5% embedded (477 of 763). The live index.html had moved past the pin when this audit was written; site_html_sha256 is the live copy and site_html_sha256_at_pin is pages/index.html at the pin. The site moved past the pin during the refresh and showed 767 when this audit was written; the card keeps the pinned figure, 763.", - "site_figure_at_check": 767 + "notes": "763 data/traits records at the pin (427 REVIEWED, 248 PROPOSED, 50 DEPRECATED, 38 SEEDED; 519 with causal graphs), equal to the landing page, which shows 62.5% embedded (477 of 763). The live index.html had moved past the pin when this audit was written; site_html_sha256 is the live copy and site_html_sha256_at_pin is pages/index.html at the pin. The site moved past the pin during the refresh and showed 768 when this audit was written; the card keeps the pinned figure, 763.", + "site_figure_at_check": 768 } ] } diff --git a/_fleet/mechs_template.md b/_fleet/mechs_template.md index 6ba849d..b54d8b5 100644 --- a/_fleet/mechs_template.md +++ b/_fleet/mechs_template.md @@ -15,7 +15,7 @@ Each X-Mech is an **autonomous knowledge factory** that curates, validates, and ## The Mechs -Each card carries its Mech's own site color. Hover a card to trace its ties in the graph above; use "Show in graph" to select it. The small print under each headline number gives reviewed records and merged pull requests; a Mech whose schema has no field recording review shows only the pull-request count, rather than a zero that would claim more than it knows. Card and graph totals reflect the published Mech pages checked on September 24, 2026. Each Browse link is the source for its card. For CultureMech that is its index of merged media records, not its landing page, whose recipe total is stale. CommunityMech lists 422 communities online and keeps four additional isolate records in its repository; its landing page's category tile reads 16, while its schema, records and browser facet have 15. These published-browser totals may differ from the record-corpus census below. Fleet membership and capability declarations come from . +Each card carries its Mech's own site color. Hover a card to trace its ties in the graph above; use "Show in graph" to select it. The small print under each headline number gives reviewed records and merged pull requests; a Mech whose schema has no field recording review shows only the pull-request count, rather than a zero that would claim more than it knows. Card and graph totals reflect the published Mech pages checked on September 24, 2026. Each Browse link is the source for its card, except CultureMech, whose count comes from its repository's corpus snapshot: its published landing tile is stale, and its media index is not currently published. CommunityMech lists 422 communities online and keeps four additional isolate records in its repository; its landing page's category tile reads 16, while its schema, records and browser facet have 15. These published-browser totals may differ from the record-corpus census below. Fleet membership and capability declarations come from .
diff --git a/culturemech.md b/culturemech.md index 102affa..86dfc26 100644 --- a/culturemech.md +++ b/culturemech.md @@ -18,7 +18,7 @@ permalink: /culturemech/ - **[Direct media map](https://culturebotai.github.io/CultureMech/app/umap.html#umap-direct)** — explore the medium nodes' own KG-Microbe embeddings. - **[Graph layout](https://culturebotai.github.io/CultureMech/app/umap_graph.html)** — another view of media similarity. -Counts and links were checked on September 24, 2026. The published landing page still displays a legacy recipe total; the counts above come from the current repository's generated corpus inventory, and the published [media index](https://culturebotai.github.io/CultureMech/pages/) lists the same 6,288 merged records. +Counts and links were checked on September 24, 2026. The published landing page still displays a legacy recipe total; the counts above come from the current repository's generated corpus inventory. ## Data Architecture diff --git a/mechs.md b/mechs.md index 7e488c6..a35b274 100644 --- a/mechs.md +++ b/mechs.md @@ -962,7 +962,7 @@ Each X-Mech is an **autonomous knowledge factory** that curates, validates, and ## The ten Mechs -Each card carries its Mech's own site color. Hover a card to trace its ties in the graph above; use "Show in graph" to select it. The small print under each headline number gives reviewed records and merged pull requests; a Mech whose schema has no field recording review shows only the pull-request count, rather than a zero that would claim more than it knows. Card and graph totals reflect the published Mech pages checked on September 24, 2026. Each Browse link is the source for its card. For CultureMech that is its index of merged media records, not its landing page, whose recipe total is stale. CommunityMech lists 422 communities online and keeps four additional isolate records in its repository; its landing page's category tile reads 16, while its schema, records and browser facet have 15. These published-browser totals may differ from the record-corpus census below. Fleet membership and capability declarations come from CLAW fleet manifest at 2637172. +Each card carries its Mech's own site color. Hover a card to trace its ties in the graph above; use "Show in graph" to select it. The small print under each headline number gives reviewed records and merged pull requests; a Mech whose schema has no field recording review shows only the pull-request count, rather than a zero that would claim more than it knows. Card and graph totals reflect the published Mech pages checked on September 24, 2026. Each Browse link is the source for its card, except CultureMech, whose count comes from its repository's corpus snapshot: its published landing tile is stale, and its media index is not currently published. CommunityMech lists 422 communities online and keeps four additional isolate records in its repository; its landing page's category tile reads 16, while its schema, records and browser facet have 15. These published-browser totals may differ from the record-corpus census below. Fleet membership and capability declarations come from CLAW fleet manifest at 2637172.
diff --git a/scripts/fleet/check_cards.py b/scripts/fleet/check_cards.py index 35604f5..45f11d5 100644 --- a/scripts/fleet/check_cards.py +++ b/scripts/fleet/check_cards.py @@ -39,7 +39,7 @@ # and only the data file has the number (#86) # # Several repo roots are client-side meta-refresh shells that return 200, so -# these are the pages/ or app/ URLs, never the root. +# these are the pages/ or app/ URLs, never the root. CultureMech's is its README. SOURCES: dict[str, tuple[str, str, str]] = { "HabitatMech": ("html", "HabitatMech/pages/index.html", "habitat records"), "CommunityMech": ("html", "CommunityMech/", "communities"), @@ -48,9 +48,11 @@ "CellStructureMech": ("html", "CellStructureMech/pages/index.html", "structure records"), "AntibioticMech": ("html", "AntibioticMech/pages/index.html", "compound records"), "NaturalProductMech": ("text", "NaturalProductMech/pages/index.html", "natural product structures"), - # Not the app/ landing tile, which is a legacy hand-typed figure matching no - # data layer; pages/ is the merged canonical count the card states (#86). - "CultureMech": ("text", "CultureMech/pages/", "media records"), + # CultureMech publishes no page carrying its canonical count: the app/ landing + # tile is a legacy hand-typed figure (#86), and its pages/ media index is + # untracked, so it comes and goes with stale deployments (#175). The committed + # README's corpus snapshot states it ("6,288 merged records"). + "CultureMech": ("text", "https://raw.githubusercontent.com/CultureBotAI/CultureMech/main/README.md", "merged records"), "ProteinTraitsMech": ("json", "proteintraitsmech/data/facets.json", "total"), "MediaIngredientMech": ("json", "MediaIngredientMech/data/ingredients.json", "ingredients"), } @@ -106,7 +108,7 @@ def main() -> int: unreadable.append((mech, "no card in the template")) continue try: - body = fetch(SITE + path) + body = fetch(path if path.startswith("https://") else SITE + path) except (urllib.error.URLError, TimeoutError, OSError) as error: unreadable.append((mech, f"fetch failed: {error}")) continue From bdcc903a07f624721ded643d88b8d6b59839abd3 Mon Sep 17 00:00:00 2001 From: "marcin p. joachimiak" <4625870+realmarcin@users.noreply.github.com> Date: Fri, 25 Sep 2026 11:42:36 -0700 Subject: [PATCH 10/16] State why CultureMech's pages/ comes and goes, and test the README source Review of d0bbb19. The stated cause was wrong (#180): pages/index.html was never committed and is gitignored since April; CultureMech's generate-pages workflow builds pages/ and deploys it through GitHub Actions, and the branch-based Pages build replaces that deployment on other pushes to main. So the index appears and disappears, and the card intro now says it is intermittently published rather than "not currently" (#181). The README's description of the audit names CultureMech's committed README as the one non-Pages source (#179), and the audit's local_date is derived from its own timestamp (#178). check_cards.py gains source_url() for the absolute-URL case, and its text parser ignores Markdown emphasis, so a README that bolds the number alone still reads; tests cover both and the wrapped-line case (#177). Whether a 404 or reworded source should fail rather than warn is #176, handled with #148. Closes #177. Closes #178. Closes #179. Closes #180. Closes #181. Co-Authored-By: Claude Opus 5.5 (1M context) --- _fleet/README.md | 16 +++++++++------- _fleet/data/site_audit.json | 12 ++++++------ _fleet/mechs_template.md | 2 +- mechs.md | 2 +- scripts/fleet/check_cards.py | 20 ++++++++++++++------ tests/test_fleet_page.py | 16 ++++++++++++++++ 6 files changed, 47 insertions(+), 21 deletions(-) diff --git a/_fleet/README.md b/_fleet/README.md index 837e21c..1161ca7 100644 --- a/_fleet/README.md +++ b/_fleet/README.md @@ -131,7 +131,7 @@ CellStructureMech, AntibioticMech, HabitatMech, CommunityMech, TaxonMech's taxon.html route, ProteinTraitsMech hash routes) and to the record's source file on GitHub for CultureMech, MediaIngredientMech and NaturalProductMech in the existing census indexes, although NaturalProductMech now publishes per-record pages (`pages//`); -CultureMech's `pages/media/` pages come and go with its untracked `pages/` (#175). CommunityMech's four `data/isolates` records have no +CultureMech's `pages/media/` pages come and go with its `pages/` deployment (#175). CommunityMech's four `data/isolates` records have no published page, so they get no record link and are left out of the record lists and overlaps; the census still counts them. TaxonMech's record links open its taxon pages. NaturalProductMech's browse site @@ -159,8 +159,9 @@ checkouts' working trees, several of which lagged their remotes by dozens of commits or carried uncommitted files. `.claude/skills/update-xmech-page/` is the procedure. -`data/site_audit.json` records, per repository, the pinned revision, the Pages -URL each card figure is read from, the figure, response hashes and merged +`data/site_audit.json` records, per repository, the pinned revision, the URL each +card figure is read from (a Pages URL, except CultureMech's committed README on +`main`), the figure, response hashes and merged pull-request totals. The three dedicated pages link their descriptions and commands to those same revisions. @@ -185,10 +186,11 @@ CultureMech's README inventory at the pinned revision reports 15,878 normalized records and 6,288 merged records, and the card cites it: no published page states the canonical count. The `app/` landing tile, which the site root redirects to, still reads 10,657; the `app/` browser itself serves the 15,878 normalized -records. Its `/pages/` media index was live on September 24 and gone again on -September 25: `pages/index.html` has been untracked since CultureMech #320, so it -survives only in stale deployments (#175). `check_cards.py` therefore reads the -committed README. +records. Its `/pages/` media index is built and deployed by CultureMech's +generate-pages workflow, and the branch-based Pages build replaces that +deployment on other pushes to `main`, so the index appears and disappears: live +on September 24, gone on September 25 (#175). `check_cards.py` therefore reads +the committed README on `main`. Reviewed-record counts come from `mech_stats.py`, which counts a record as reviewed only where the Mech's schema has a status that can say REVIEWED; the diff --git a/_fleet/data/site_audit.json b/_fleet/data/site_audit.json index e677033..9174d84 100644 --- a/_fleet/data/site_audit.json +++ b/_fleet/data/site_audit.json @@ -1,6 +1,6 @@ { - "checked_at_utc": "2026-09-25T18:27:30+00:00", - "local_date": "2026-09-24", + "checked_at_utc": "2026-09-25T18:42:21+00:00", + "local_date": "2026-09-25", "pinned_at_utc": "2026-09-25T02:06:03+00:00", "scope": "Public main revisions pinned once for the whole refresh, and the deployed GitHub Pages responses; the vocabulary census, subsets and card stats were regenerated at the same pins.", "repositories": [ @@ -24,10 +24,10 @@ "card_records": 542, "merged_prs": 611, "site": "https://culturebotai.github.io/CellStructureMech/pages/index.html", - "site_html_sha256": "30ce6df279536883e8f65b2091a25e36ca0093864aba4a65996e424ff841363c", + "site_html_sha256": "372625d73788a9629f4365a74fffa042c1ef8d9ddbfa42db23799fe20ec7b2d1", "site_html_sha256_at_pin": "55909b291392a027c58b9206fd49ea13d67b83165a593920fdb65a62ef0bac66", - "notes": "542 data/structures records at the pin, equal to the stat tile (13 categories, 475 GO-grounded, 196 membrane organelles). All 542 are PROPOSED, so none is reviewed. The live index.html had moved past the pin when this audit was written; site_html_sha256 is the live copy and site_html_sha256_at_pin is pages/index.html at the pin. The site moved past the pin during the refresh and showed 575 when this audit was written; the card keeps the pinned figure, 542.", - "site_figure_at_check": 575 + "notes": "542 data/structures records at the pin, equal to the stat tile (13 categories, 475 GO-grounded, 196 membrane organelles). All 542 are PROPOSED, so none is reviewed. The live index.html had moved past the pin when this audit was written; site_html_sha256 is the live copy and site_html_sha256_at_pin is pages/index.html at the pin. The site moved past the pin during the refresh and showed 576 when this audit was written; the card keeps the pinned figure, 542.", + "site_figure_at_check": 576 }, { "repo": "CommunityMech", @@ -58,7 +58,7 @@ "site": "https://raw.githubusercontent.com/CultureBotAI/CultureMech/main/README.md", "site_html_sha256": "9bc06d232a67fa55cdef539fec2f52fa2644f7cf50e2820e223cc26106ee6f51", "site_html_sha256_at_pin": "9bc06d232a67fa55cdef539fec2f52fa2644f7cf50e2820e223cc26106ee6f51", - "notes": "The committed README's corpus snapshot states 15,878 normalized and 6,288 merged records, equal to data/merge_yaml/merged at the pin; no published page states the canonical count. The app/ landing tile still reads 10,657, a legacy figure that matches no data layer, and the pages/ media index, untracked upstream, was removed by the 2026-09-25 Pages rebuild (#175). The live README.md is byte-identical to README.md at the pin." + "notes": "The committed README's corpus snapshot states 15,878 normalized and 6,288 merged records, equal to data/merge_yaml/merged at the pin; no page CultureMech reliably serves states the canonical count. The app/ landing tile still reads 10,657, a legacy figure that matches no data layer. The pages/ media index is deployed by CultureMech's generate-pages workflow and replaced by the branch-based Pages build on other pushes to main, so it was live on 2026-09-24 and gone on 2026-09-25 (#175). The live README.md is byte-identical to README.md at the pin." }, { "repo": "HabitatMech", diff --git a/_fleet/mechs_template.md b/_fleet/mechs_template.md index b54d8b5..6c07067 100644 --- a/_fleet/mechs_template.md +++ b/_fleet/mechs_template.md @@ -15,7 +15,7 @@ Each X-Mech is an **autonomous knowledge factory** that curates, validates, and ## The Mechs -Each card carries its Mech's own site color. Hover a card to trace its ties in the graph above; use "Show in graph" to select it. The small print under each headline number gives reviewed records and merged pull requests; a Mech whose schema has no field recording review shows only the pull-request count, rather than a zero that would claim more than it knows. Card and graph totals reflect the published Mech pages checked on September 24, 2026. Each Browse link is the source for its card, except CultureMech, whose count comes from its repository's corpus snapshot: its published landing tile is stale, and its media index is not currently published. CommunityMech lists 422 communities online and keeps four additional isolate records in its repository; its landing page's category tile reads 16, while its schema, records and browser facet have 15. These published-browser totals may differ from the record-corpus census below. Fleet membership and capability declarations come from . +Each card carries its Mech's own site color. Hover a card to trace its ties in the graph above; use "Show in graph" to select it. The small print under each headline number gives reviewed records and merged pull requests; a Mech whose schema has no field recording review shows only the pull-request count, rather than a zero that would claim more than it knows. Card and graph totals reflect the published Mech pages checked on September 24, 2026. Each Browse link is the source for its card, except CultureMech, whose count comes from its repository's corpus snapshot: its published landing tile is stale, and its media index is only intermittently published (#175). CommunityMech lists 422 communities online and keeps four additional isolate records in its repository; its landing page's category tile reads 16, while its schema, records and browser facet have 15. These published-browser totals may differ from the record-corpus census below. Fleet membership and capability declarations come from .
diff --git a/mechs.md b/mechs.md index a35b274..71e79d6 100644 --- a/mechs.md +++ b/mechs.md @@ -962,7 +962,7 @@ Each X-Mech is an **autonomous knowledge factory** that curates, validates, and ## The ten Mechs -Each card carries its Mech's own site color. Hover a card to trace its ties in the graph above; use "Show in graph" to select it. The small print under each headline number gives reviewed records and merged pull requests; a Mech whose schema has no field recording review shows only the pull-request count, rather than a zero that would claim more than it knows. Card and graph totals reflect the published Mech pages checked on September 24, 2026. Each Browse link is the source for its card, except CultureMech, whose count comes from its repository's corpus snapshot: its published landing tile is stale, and its media index is not currently published. CommunityMech lists 422 communities online and keeps four additional isolate records in its repository; its landing page's category tile reads 16, while its schema, records and browser facet have 15. These published-browser totals may differ from the record-corpus census below. Fleet membership and capability declarations come from CLAW fleet manifest at 2637172. +Each card carries its Mech's own site color. Hover a card to trace its ties in the graph above; use "Show in graph" to select it. The small print under each headline number gives reviewed records and merged pull requests; a Mech whose schema has no field recording review shows only the pull-request count, rather than a zero that would claim more than it knows. Card and graph totals reflect the published Mech pages checked on September 24, 2026. Each Browse link is the source for its card, except CultureMech, whose count comes from its repository's corpus snapshot: its published landing tile is stale, and its media index is only intermittently published (#175). CommunityMech lists 422 communities online and keeps four additional isolate records in its repository; its landing page's category tile reads 16, while its schema, records and browser facet have 15. These published-browser totals may differ from the record-corpus census below. Fleet membership and capability declarations come from CLAW fleet manifest at 2637172.
diff --git a/scripts/fleet/check_cards.py b/scripts/fleet/check_cards.py index 45f11d5..3c0f6c0 100644 --- a/scripts/fleet/check_cards.py +++ b/scripts/fleet/check_cards.py @@ -48,10 +48,12 @@ "CellStructureMech": ("html", "CellStructureMech/pages/index.html", "structure records"), "AntibioticMech": ("html", "AntibioticMech/pages/index.html", "compound records"), "NaturalProductMech": ("text", "NaturalProductMech/pages/index.html", "natural product structures"), - # CultureMech publishes no page carrying its canonical count: the app/ landing - # tile is a legacy hand-typed figure (#86), and its pages/ media index is - # untracked, so it comes and goes with stale deployments (#175). The committed - # README's corpus snapshot states it ("6,288 merged records"). + # No page CultureMech reliably serves states its canonical count. The app/ + # landing tile is a legacy hand-typed figure (#86). Its pages/ media index is + # built and deployed by the generate-pages workflow, and the branch-based + # Pages build replaces that deployment on other pushes to main, so the index + # appears and disappears (#175, #180). The README on main is committed and + # states the count in its generated corpus snapshot ("6,288 merged records"). "CultureMech": ("text", "https://raw.githubusercontent.com/CultureBotAI/CultureMech/main/README.md", "merged records"), "ProteinTraitsMech": ("json", "proteintraitsmech/data/facets.json", "total"), "MediaIngredientMech": ("json", "MediaIngredientMech/data/ingredients.json", "ingredients"), @@ -65,6 +67,11 @@ def cards(template: str) -> dict[str, int]: return {m.group(1): int(m.group(2).replace(",", "")) for m in CARD.finditer(template)} +def source_url(path: str) -> str: + """A SOURCES path relative to the Pages host, or an absolute https URL.""" + return path if path.startswith("https://") else SITE + path + + def fetch(url: str, timeout: int = 30) -> str: request = urllib.request.Request(url, headers={"User-Agent": "culturebotai-card-check"}) return urllib.request.urlopen(request, timeout=timeout).read().decode("utf-8", "replace") @@ -91,7 +98,8 @@ def published(kind: str, body: str, selector: str) -> int | None: if kind == "text": # The figure sits in a sentence. Strip tags first so markup between the # number and the words it belongs to cannot hide the pairing. - prose = re.sub(r"<[^>]+>", " ", body) + # Markdown emphasis goes too: a README may bold the number alone. + prose = re.sub(r"[*_]", "", re.sub(r"<[^>]+>", " ", body)) hit = re.search(r"([\d,]+)\s+" + re.escape(selector), prose) return int(hit.group(1).replace(",", "")) if hit else None hit = re.search(r"([\d,]+)\s*\s*" + re.escape(selector), body) @@ -108,7 +116,7 @@ def main() -> int: unreadable.append((mech, "no card in the template")) continue try: - body = fetch(path if path.startswith("https://") else SITE + path) + body = fetch(source_url(path)) except (urllib.error.URLError, TimeoutError, OSError) as error: unreadable.append((mech, f"fetch failed: {error}")) continue diff --git a/tests/test_fleet_page.py b/tests/test_fleet_page.py index 10858b9..2424d3a 100644 --- a/tests/test_fleet_page.py +++ b/tests/test_fleet_page.py @@ -406,6 +406,22 @@ def test_every_card_has_a_published_source(self): self.assertEqual(sorted(set(check_cards.SOURCES) - set(stated)), [], "SOURCES entry with no card") + def test_a_source_is_relative_to_the_pages_host_unless_absolute(self): + # CultureMech's figure is read from its committed README, not a Pages URL (#175, #177). + import check_cards + self.assertEqual(check_cards.source_url("TraitMech/pages/index.html"), + "https://culturebotai.github.io/TraitMech/pages/index.html") + readme = "https://raw.githubusercontent.com/CultureBotAI/CultureMech/main/README.md" + self.assertEqual(check_cards.source_url(readme), readme) + + def test_the_text_parser_reads_the_culturemech_readme_line(self): + import check_cards + line = "The tracked corpus currently contains **15,878 normalized records** and **6,288 merged records**." + self.assertEqual(check_cards.published("text", line, "merged records"), 6288) + # The number alone in bold, or the line wrapped, must still read. + self.assertEqual(check_cards.published("text", "and **6,288** merged records.", "merged records"), 6288) + self.assertEqual(check_cards.published("text", "and 6,288\nmerged records.", "merged records"), 6288) + def test_the_card_parser_reads_every_member(self): snapshot = json.loads((ROOT / "_fleet/data/manifest.json").read_text()) import check_cards From 71685dbc744c56d51103b18624d062e290eefb8e Mon Sep 17 00:00:00 2001 From: "marcin p. joachimiak" <4625870+realmarcin@users.noreply.github.com> Date: Fri, 25 Sep 2026 11:56:54 -0700 Subject: [PATCH 11/16] Say that CultureMech's browser data comes and goes too, and pin the tests to SOURCES Round-2 review of the #175 fix. The branch-based Pages build removes CultureMech's app/data.js along with pages/ and the dashboard, so the app/ browser loaded with no records on September 25; _fleet/README.md now says so and names the upstream fix, setting CultureMech's Pages source to GitHub Actions (#182, recorded on #172). The README and the audit scope describe CultureMech's source as its committed README, the one non-Pages source (#185). The card intro drops a bare "(#175)" that read as CultureMech's own issue (#184). The CultureMech test reads the SOURCES entry, so a mistyped URL or selector now fails it; both mutations were checked (#183). Closes #182. Closes #183. Closes #184. Closes #185. Co-Authored-By: Claude Opus 5.5 (1M context) --- _fleet/README.md | 19 +++++++++++-------- _fleet/data/site_audit.json | 10 +++++----- _fleet/mechs_template.md | 2 +- mechs.md | 2 +- tests/test_fleet_page.py | 27 +++++++++++++++------------ 5 files changed, 33 insertions(+), 27 deletions(-) diff --git a/_fleet/README.md b/_fleet/README.md index 1161ca7..5ef19e3 100644 --- a/_fleet/README.md +++ b/_fleet/README.md @@ -183,14 +183,17 @@ changed after the pins without changing their figures; the audit records each live hash beside the hash of the committed copy at the pin. CultureMech's README inventory at the pinned revision reports 15,878 normalized -records and 6,288 merged records, and the card cites it: no published page states -the canonical count. The `app/` landing tile, which the site root redirects to, -still reads 10,657; the `app/` browser itself serves the 15,878 normalized -records. Its `/pages/` media index is built and deployed by CultureMech's -generate-pages workflow, and the branch-based Pages build replaces that -deployment on other pushes to `main`, so the index appears and disappears: live -on September 24, gone on September 25 (#175). `check_cards.py` therefore reads -the committed README on `main`. +records and 6,288 merged records, and the card cites it: no page CultureMech +reliably serves states the canonical count. The `app/` landing tile, which the +site root redirects to, still reads 10,657. The `app/` browser's data +(`app/data.js`), the `/pages/` media index and the dashboard are all built and +deployed by CultureMech's generate-pages workflow through GitHub Actions, while +the site's Pages source is set to branch builds; a push to `main` outside the +workflow's paths triggers a branch build that replaces the deployment. So all +three appear and disappear: live on September 24, gone on September 25, when the +browser loaded with no records (#175, #182). The fix is upstream, setting the +Pages source to GitHub Actions (#172). `check_cards.py` therefore reads the +committed README on `main`. Reviewed-record counts come from `mech_stats.py`, which counts a record as reviewed only where the Mech's schema has a status that can say REVIEWED; the diff --git a/_fleet/data/site_audit.json b/_fleet/data/site_audit.json index 9174d84..0ac5081 100644 --- a/_fleet/data/site_audit.json +++ b/_fleet/data/site_audit.json @@ -1,8 +1,8 @@ { - "checked_at_utc": "2026-09-25T18:42:21+00:00", + "checked_at_utc": "2026-09-25T18:56:26+00:00", "local_date": "2026-09-25", "pinned_at_utc": "2026-09-25T02:06:03+00:00", - "scope": "Public main revisions pinned once for the whole refresh, and the deployed GitHub Pages responses; the vocabulary census, subsets and card stats were regenerated at the same pins.", + "scope": "Public main revisions pinned once for the whole refresh, and the deployed GitHub Pages responses, except CultureMech, whose figure is read from its committed README on main because no page it reliably serves states the count; the vocabulary census, subsets and card stats were regenerated at the same pins.", "repositories": [ { "repo": "AntibioticMech", @@ -24,10 +24,10 @@ "card_records": 542, "merged_prs": 611, "site": "https://culturebotai.github.io/CellStructureMech/pages/index.html", - "site_html_sha256": "372625d73788a9629f4365a74fffa042c1ef8d9ddbfa42db23799fe20ec7b2d1", + "site_html_sha256": "aa3a2b8d51d6cd1bbac33c472b0b40279538779c514f384437f818b3c665d679", "site_html_sha256_at_pin": "55909b291392a027c58b9206fd49ea13d67b83165a593920fdb65a62ef0bac66", - "notes": "542 data/structures records at the pin, equal to the stat tile (13 categories, 475 GO-grounded, 196 membrane organelles). All 542 are PROPOSED, so none is reviewed. The live index.html had moved past the pin when this audit was written; site_html_sha256 is the live copy and site_html_sha256_at_pin is pages/index.html at the pin. The site moved past the pin during the refresh and showed 576 when this audit was written; the card keeps the pinned figure, 542.", - "site_figure_at_check": 576 + "notes": "542 data/structures records at the pin, equal to the stat tile (13 categories, 475 GO-grounded, 196 membrane organelles). All 542 are PROPOSED, so none is reviewed. The live index.html had moved past the pin when this audit was written; site_html_sha256 is the live copy and site_html_sha256_at_pin is pages/index.html at the pin. The site moved past the pin during the refresh and showed 577 when this audit was written; the card keeps the pinned figure, 542.", + "site_figure_at_check": 577 }, { "repo": "CommunityMech", diff --git a/_fleet/mechs_template.md b/_fleet/mechs_template.md index 6c07067..400cbc7 100644 --- a/_fleet/mechs_template.md +++ b/_fleet/mechs_template.md @@ -15,7 +15,7 @@ Each X-Mech is an **autonomous knowledge factory** that curates, validates, and ## The Mechs -Each card carries its Mech's own site color. Hover a card to trace its ties in the graph above; use "Show in graph" to select it. The small print under each headline number gives reviewed records and merged pull requests; a Mech whose schema has no field recording review shows only the pull-request count, rather than a zero that would claim more than it knows. Card and graph totals reflect the published Mech pages checked on September 24, 2026. Each Browse link is the source for its card, except CultureMech, whose count comes from its repository's corpus snapshot: its published landing tile is stale, and its media index is only intermittently published (#175). CommunityMech lists 422 communities online and keeps four additional isolate records in its repository; its landing page's category tile reads 16, while its schema, records and browser facet have 15. These published-browser totals may differ from the record-corpus census below. Fleet membership and capability declarations come from . +Each card carries its Mech's own site color. Hover a card to trace its ties in the graph above; use "Show in graph" to select it. The small print under each headline number gives reviewed records and merged pull requests; a Mech whose schema has no field recording review shows only the pull-request count, rather than a zero that would claim more than it knows. Card and graph totals reflect the published Mech pages checked on September 24, 2026. Each Browse link is the source for its card, except CultureMech, whose count comes from its repository's corpus snapshot: its published landing tile is stale, and its media index is only intermittently published. CommunityMech lists 422 communities online and keeps four additional isolate records in its repository; its landing page's category tile reads 16, while its schema, records and browser facet have 15. These published-browser totals may differ from the record-corpus census below. Fleet membership and capability declarations come from .
diff --git a/mechs.md b/mechs.md index 71e79d6..15f7d6e 100644 --- a/mechs.md +++ b/mechs.md @@ -962,7 +962,7 @@ Each X-Mech is an **autonomous knowledge factory** that curates, validates, and ## The ten Mechs -Each card carries its Mech's own site color. Hover a card to trace its ties in the graph above; use "Show in graph" to select it. The small print under each headline number gives reviewed records and merged pull requests; a Mech whose schema has no field recording review shows only the pull-request count, rather than a zero that would claim more than it knows. Card and graph totals reflect the published Mech pages checked on September 24, 2026. Each Browse link is the source for its card, except CultureMech, whose count comes from its repository's corpus snapshot: its published landing tile is stale, and its media index is only intermittently published (#175). CommunityMech lists 422 communities online and keeps four additional isolate records in its repository; its landing page's category tile reads 16, while its schema, records and browser facet have 15. These published-browser totals may differ from the record-corpus census below. Fleet membership and capability declarations come from CLAW fleet manifest at 2637172. +Each card carries its Mech's own site color. Hover a card to trace its ties in the graph above; use "Show in graph" to select it. The small print under each headline number gives reviewed records and merged pull requests; a Mech whose schema has no field recording review shows only the pull-request count, rather than a zero that would claim more than it knows. Card and graph totals reflect the published Mech pages checked on September 24, 2026. Each Browse link is the source for its card, except CultureMech, whose count comes from its repository's corpus snapshot: its published landing tile is stale, and its media index is only intermittently published. CommunityMech lists 422 communities online and keeps four additional isolate records in its repository; its landing page's category tile reads 16, while its schema, records and browser facet have 15. These published-browser totals may differ from the record-corpus census below. Fleet membership and capability declarations come from CLAW fleet manifest at 2637172.
diff --git a/tests/test_fleet_page.py b/tests/test_fleet_page.py index 2424d3a..58d4314 100644 --- a/tests/test_fleet_page.py +++ b/tests/test_fleet_page.py @@ -406,21 +406,24 @@ def test_every_card_has_a_published_source(self): self.assertEqual(sorted(set(check_cards.SOURCES) - set(stated)), [], "SOURCES entry with no card") - def test_a_source_is_relative_to_the_pages_host_unless_absolute(self): - # CultureMech's figure is read from its committed README, not a Pages URL (#175, #177). - import check_cards - self.assertEqual(check_cards.source_url("TraitMech/pages/index.html"), - "https://culturebotai.github.io/TraitMech/pages/index.html") - readme = "https://raw.githubusercontent.com/CultureBotAI/CultureMech/main/README.md" - self.assertEqual(check_cards.source_url(readme), readme) - - def test_the_text_parser_reads_the_culturemech_readme_line(self): + def test_culturemech_is_read_from_its_committed_readme(self): + # CultureMech's figure comes from its README, not a Pages URL (#175). The + # test reads the SOURCES entry itself, so a mistyped URL or selector fails + # here rather than turning into a silent "unread" at night (#177, #183). import check_cards + kind, path, selector = check_cards.SOURCES["CultureMech"] + self.assertEqual(check_cards.source_url(path), path) + self.assertTrue(path.startswith("https://raw.githubusercontent.com/CultureBotAI/CultureMech/"), path) line = "The tracked corpus currently contains **15,878 normalized records** and **6,288 merged records**." - self.assertEqual(check_cards.published("text", line, "merged records"), 6288) + self.assertEqual(check_cards.published(kind, line, selector), 6288) # The number alone in bold, or the line wrapped, must still read. - self.assertEqual(check_cards.published("text", "and **6,288** merged records.", "merged records"), 6288) - self.assertEqual(check_cards.published("text", "and 6,288\nmerged records.", "merged records"), 6288) + self.assertEqual(check_cards.published(kind, "and **6,288** merged records.", selector), 6288) + self.assertEqual(check_cards.published(kind, "and 6,288\nmerged records.", selector), 6288) + + def test_a_relative_source_is_read_from_the_pages_host(self): + import check_cards + self.assertEqual(check_cards.source_url("TraitMech/pages/index.html"), + "https://culturebotai.github.io/TraitMech/pages/index.html") def test_the_card_parser_reads_every_member(self): snapshot = json.loads((ROOT / "_fleet/data/manifest.json").read_text()) From 51cb29deab985f6de78de92b89549c11abe56a31 Mon Sep 17 00:00:00 2001 From: "marcin p. joachimiak" <4625870+realmarcin@users.noreply.github.com> Date: Fri, 25 Sep 2026 12:08:06 -0700 Subject: [PATCH 12/16] Stop saying CultureMech's published browser serves its records Round-3 review of the #175 fix. CultureMech's recipe browser loads app/data.js, which only its Actions deployment carries, so it opens empty whenever a branch build has replaced that deployment, as on September 25. The graph panel no longer says the published browser serves the 15,878 records, culturemech.md says the browser can open empty, and the review skill's worked example says the same (#188). The embedding maps are unaffected: their data is inline and committed. The CultureMech source test now pins the whole README URL, so a typo in the branch or file name fails too (#189). Closes #188. Closes #189. Co-Authored-By: Claude Opus 5.5 (1M context) --- .claude/skills/review-open-issues/SKILL.md | 5 +++-- _fleet/fleet_fragment.html | 2 +- culturemech.md | 2 +- mechs.md | 2 +- tests/test_fleet_page.py | 3 ++- 5 files changed, 8 insertions(+), 6 deletions(-) diff --git a/.claude/skills/review-open-issues/SKILL.md b/.claude/skills/review-open-issues/SKILL.md index a045c3d..20ec365 100644 --- a/.claude/skills/review-open-issues/SKILL.md +++ b/.claude/skills/review-open-issues/SKILL.md @@ -83,8 +83,9 @@ Before quoting any figure, say which it is: | **local-checkout count** | `record_paths()` over `MECHS_ROOT` | `prefix_census.py` / `mech_stats.py` | | **census/heatmap count** | `_fleet/data/prefix_census.json` | the full pipeline | -They legitimately disagree. CultureMech publishes 6,288 merged canonical media -and serves 15,878 normalized records from the same site. CommunityMech's hero +They legitimately disagree. CultureMech's README reports 6,288 merged canonical media +and 15,878 normalized records; its browser serves the normalized ones only while +its Actions deployment is live (#175). CommunityMech's hero counts `kb/communities` only while the fleet glob also takes `data/isolates`, so the site is permanently four below the fleet number. A local checkout can be twenty commits behind its remote. diff --git a/_fleet/fleet_fragment.html b/_fleet/fleet_fragment.html index e6a8032..646bbff 100644 --- a/_fleet/fleet_fragment.html +++ b/_fleet/fleet_fragment.html @@ -455,7 +455,7 @@

Shared vocabulary

NaturalProductMech: { key: "naturalproductmech", scale: "Natural products", tag: "One record per natural product structure: who makes it, from which gene cluster, and what it does.", records: 3115, unit: "natural product structures", root: "NaturalProductRecord", vocab: ["MIBiG", "NCBITaxon", "ChEBI", "NPAtlas", "PubChem", "UniProt"], github: "https://github.com/CultureBotAI/NaturalProductMech", site: "https://culturebotai.github.io/NaturalProductMech/", page: "", license: "CC0-1.0 code · CC BY 4.0 data", sources: "ChEBI, MIBiG gene clusters, LOTUS occurrences, CyanoMetDB, NPClassifier, PubChem BioAssay, BindingDB, NCBI Taxonomy, AntibioticMech", extra: "3,407 producer claims, including 805 supported by evidence addressing the organism; 2,342 records carry cited occurrences. Structure and corpus maps complement the record browser." }, AntibioticMech: { key: "antibioticmech", scale: "Antibiotics", tag: "One record per antimicrobial structure, harmonizing ChEBI and CARD with mechanism and evidence.", records: 2939, unit: "antimicrobial structures", root: "AntibioticRecord", vocab: ["CHEBI", "ARO", "CAS", "NCBITaxon", "PubChem", "DrugBank"], github: "https://github.com/CultureBotAI/AntibioticMech", site: "https://culturebotai.github.io/AntibioticMech/", page: "", license: "CC0-1.0 code · CC BY 4.0 data", sources: "ChEBI 3-star antimicrobial roles, CARD/ARO antibiotic molecules, PubChem structures, PHI-base, MIBiG, BindingDB, Drugs@FDA", extra: "2,669 ontology-grounded and 270 minted identities; 454 records with mode of action, 282 with molecular targets and 16 with causal graphs. The chemical map places all 2,939 records by chiral molecular fingerprints; a corpus map places them by record text." }, MediaIngredientMech: { key: "mediaingredientmech", scale: "Ingredients", tag: "LLM-assisted curation of media-ingredient ontology mappings with full audit trails.", records: 2953, unit: "ingredient records", root: "IngredientRecord", vocab: ["CHEBI", "CAS", "NCIT", "FOODON", "ENVO"], github: "https://github.com/CultureBotAI/MediaIngredientMech", site: "https://culturebotai.github.io/MediaIngredientMech/", page: "/mediaingredientmech/", license: "CC0-1.0", sources: "MIM-owned ingredient records; CultureMech recipe changes as diagnostic inputs; OAK/OLS term services; ChEBI, FOODON, NCIT, MeSH, METPO", extra: "2,611 of 2,953 ingredients mapped (88%). Search by mapping status and quality, or explore ingredient PaCMAP and graph layouts." }, - CultureMech: { key: "culturemech", scale: "Media", tag: "Autonomous knowledge factory curating versioned, ontology-grounded microbial culture-media recipes.", records: 6288, unit: "canonical media", root: "MediaRecipe", vocab: ["CHEBI", "KEGG", "FOODON", "UBERON", "CAS"], github: "https://github.com/CultureBotAI/CultureMech", site: "https://culturebotai.github.io/CultureMech/", page: "/culturemech/", license: "CC0-1.0", sources: "MediaDive/DSMZ, TogoMedium, KOMODO, ATCC, JCM, BacDive (queued)", extra: "6,288 deduplicated canonical media, merged from 15,878 source-specific normalized records that the published browser serves across five categories, with filters for target organisms and ingredients. Explore derived ingredient-based and direct medium-node embeddings, plus a graph layout." } + CultureMech: { key: "culturemech", scale: "Media", tag: "Autonomous knowledge factory curating versioned, ontology-grounded microbial culture-media recipes.", records: 6288, unit: "canonical media", root: "MediaRecipe", vocab: ["CHEBI", "KEGG", "FOODON", "UBERON", "CAS"], github: "https://github.com/CultureBotAI/CultureMech", site: "https://culturebotai.github.io/CultureMech/", page: "/culturemech/", license: "CC0-1.0", sources: "MediaDive/DSMZ, TogoMedium, KOMODO, ATCC, JCM, BacDive (queued)", extra: "6,288 deduplicated canonical media, merged from 15,878 source-specific normalized records across five categories. Explore derived ingredient-based and direct medium-node embeddings and a graph layout; the recipe browser, with filters for target organisms and ingredients, works only while CultureMech's Pages deployment carries its data." } }; // Directed cross-references between Mech records, schemas and curation practice. diff --git a/culturemech.md b/culturemech.md index 86dfc26..ac0e9d4 100644 --- a/culturemech.md +++ b/culturemech.md @@ -13,7 +13,7 @@ permalink: /culturemech/ ## Explore the Published Site -- **[Recipe browser](https://culturebotai.github.io/CultureMech/app/browser.html)** — search source-specific recipes and filter by category, medium type, physical state, target organism, and ingredients. +- **[Recipe browser](https://culturebotai.github.io/CultureMech/app/browser.html)** — search source-specific recipes and filter by category, medium type, physical state, target organism, and ingredients. It loads its records from a data file that CultureMech's Pages deployment does not always carry, so at times it opens empty. - **[Ingredient-derived media map](https://culturebotai.github.io/CultureMech/app/umap.html#umap-derived)** — explore media using aggregated ingredient embeddings. - **[Direct media map](https://culturebotai.github.io/CultureMech/app/umap.html#umap-direct)** — explore the medium nodes' own KG-Microbe embeddings. - **[Graph layout](https://culturebotai.github.io/CultureMech/app/umap_graph.html)** — another view of media similarity. diff --git a/mechs.md b/mechs.md index 15f7d6e..5b51358 100644 --- a/mechs.md +++ b/mechs.md @@ -468,7 +468,7 @@ Each X-Mech is an **autonomous knowledge factory** that curates, validates, and NaturalProductMech: { key: "naturalproductmech", scale: "Natural products", tag: "One record per natural product structure: who makes it, from which gene cluster, and what it does.", records: 3115, unit: "natural product structures", root: "NaturalProductRecord", vocab: ["MIBiG", "NCBITaxon", "ChEBI", "NPAtlas", "PubChem", "UniProt"], github: "https://github.com/CultureBotAI/NaturalProductMech", site: "https://culturebotai.github.io/NaturalProductMech/", page: "", license: "CC0-1.0 code · CC BY 4.0 data", sources: "ChEBI, MIBiG gene clusters, LOTUS occurrences, CyanoMetDB, NPClassifier, PubChem BioAssay, BindingDB, NCBI Taxonomy, AntibioticMech", extra: "3,407 producer claims, including 805 supported by evidence addressing the organism; 2,342 records carry cited occurrences. Structure and corpus maps complement the record browser." }, AntibioticMech: { key: "antibioticmech", scale: "Antibiotics", tag: "One record per antimicrobial structure, harmonizing ChEBI and CARD with mechanism and evidence.", records: 2939, unit: "antimicrobial structures", root: "AntibioticRecord", vocab: ["CHEBI", "ARO", "CAS", "NCBITaxon", "PubChem", "DrugBank"], github: "https://github.com/CultureBotAI/AntibioticMech", site: "https://culturebotai.github.io/AntibioticMech/", page: "", license: "CC0-1.0 code · CC BY 4.0 data", sources: "ChEBI 3-star antimicrobial roles, CARD/ARO antibiotic molecules, PubChem structures, PHI-base, MIBiG, BindingDB, Drugs@FDA", extra: "2,669 ontology-grounded and 270 minted identities; 454 records with mode of action, 282 with molecular targets and 16 with causal graphs. The chemical map places all 2,939 records by chiral molecular fingerprints; a corpus map places them by record text." }, MediaIngredientMech: { key: "mediaingredientmech", scale: "Ingredients", tag: "LLM-assisted curation of media-ingredient ontology mappings with full audit trails.", records: 2953, unit: "ingredient records", root: "IngredientRecord", vocab: ["CHEBI", "CAS", "NCIT", "FOODON", "ENVO"], github: "https://github.com/CultureBotAI/MediaIngredientMech", site: "https://culturebotai.github.io/MediaIngredientMech/", page: "/mediaingredientmech/", license: "CC0-1.0", sources: "MIM-owned ingredient records; CultureMech recipe changes as diagnostic inputs; OAK/OLS term services; ChEBI, FOODON, NCIT, MeSH, METPO", extra: "2,611 of 2,953 ingredients mapped (88%). Search by mapping status and quality, or explore ingredient PaCMAP and graph layouts." }, - CultureMech: { key: "culturemech", scale: "Media", tag: "Autonomous knowledge factory curating versioned, ontology-grounded microbial culture-media recipes.", records: 6288, unit: "canonical media", root: "MediaRecipe", vocab: ["CHEBI", "KEGG", "FOODON", "UBERON", "CAS"], github: "https://github.com/CultureBotAI/CultureMech", site: "https://culturebotai.github.io/CultureMech/", page: "/culturemech/", license: "CC0-1.0", sources: "MediaDive/DSMZ, TogoMedium, KOMODO, ATCC, JCM, BacDive (queued)", extra: "6,288 deduplicated canonical media, merged from 15,878 source-specific normalized records that the published browser serves across five categories, with filters for target organisms and ingredients. Explore derived ingredient-based and direct medium-node embeddings, plus a graph layout." } + CultureMech: { key: "culturemech", scale: "Media", tag: "Autonomous knowledge factory curating versioned, ontology-grounded microbial culture-media recipes.", records: 6288, unit: "canonical media", root: "MediaRecipe", vocab: ["CHEBI", "KEGG", "FOODON", "UBERON", "CAS"], github: "https://github.com/CultureBotAI/CultureMech", site: "https://culturebotai.github.io/CultureMech/", page: "/culturemech/", license: "CC0-1.0", sources: "MediaDive/DSMZ, TogoMedium, KOMODO, ATCC, JCM, BacDive (queued)", extra: "6,288 deduplicated canonical media, merged from 15,878 source-specific normalized records across five categories. Explore derived ingredient-based and direct medium-node embeddings and a graph layout; the recipe browser, with filters for target organisms and ingredients, works only while CultureMech's Pages deployment carries its data." } }; // Directed cross-references between Mech records, schemas and curation practice. diff --git a/tests/test_fleet_page.py b/tests/test_fleet_page.py index 58d4314..d4fcb48 100644 --- a/tests/test_fleet_page.py +++ b/tests/test_fleet_page.py @@ -412,8 +412,9 @@ def test_culturemech_is_read_from_its_committed_readme(self): # here rather than turning into a silent "unread" at night (#177, #183). import check_cards kind, path, selector = check_cards.SOURCES["CultureMech"] + # The whole URL, not a prefix: a typo in the branch or file name also 404s (#189). + self.assertEqual(path, "https://raw.githubusercontent.com/CultureBotAI/CultureMech/main/README.md") self.assertEqual(check_cards.source_url(path), path) - self.assertTrue(path.startswith("https://raw.githubusercontent.com/CultureBotAI/CultureMech/"), path) line = "The tracked corpus currently contains **15,878 normalized records** and **6,288 merged records**." self.assertEqual(check_cards.published(kind, line, selector), 6288) # The number alone in bold, or the line wrapped, must still read. From d47e0cbe355439bc92824a7613b18ebc84e0a024 Mon Sep 17 00:00:00 2001 From: "marcin p. joachimiak" <4625870+realmarcin@users.noreply.github.com> Date: Fri, 25 Sep 2026 12:20:38 -0700 Subject: [PATCH 13/16] Describe what CultureMech's recipe browser shows without its data Round-4 review of the #175 fix: without app/data.js the browser never leaves "Loading recipes...", it does not open empty (#193). Closes #193. Co-Authored-By: Claude Opus 5.5 (1M context) --- culturemech.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/culturemech.md b/culturemech.md index ac0e9d4..cfd780b 100644 --- a/culturemech.md +++ b/culturemech.md @@ -13,7 +13,7 @@ permalink: /culturemech/ ## Explore the Published Site -- **[Recipe browser](https://culturebotai.github.io/CultureMech/app/browser.html)** — search source-specific recipes and filter by category, medium type, physical state, target organism, and ingredients. It loads its records from a data file that CultureMech's Pages deployment does not always carry, so at times it opens empty. +- **[Recipe browser](https://culturebotai.github.io/CultureMech/app/browser.html)** — search source-specific recipes and filter by category, medium type, physical state, target organism, and ingredients. It loads its records from a data file that CultureMech's Pages deployment does not always carry, so at times it never finishes loading and shows no recipes. - **[Ingredient-derived media map](https://culturebotai.github.io/CultureMech/app/umap.html#umap-derived)** — explore media using aggregated ingredient embeddings. - **[Direct media map](https://culturebotai.github.io/CultureMech/app/umap.html#umap-direct)** — explore the medium nodes' own KG-Microbe embeddings. - **[Graph layout](https://culturebotai.github.io/CultureMech/app/umap_graph.html)** — another view of media similarity. From 3946199fcac7e208a4f177b84cce4768770d9a79 Mon Sep 17 00:00:00 2001 From: "marcin p. joachimiak" <4625870+realmarcin@users.noreply.github.com> Date: Fri, 25 Sep 2026 12:34:07 -0700 Subject: [PATCH 14/16] Say CultureMech's browser never finished loading, as culturemech.md does Round-5 review of the #175 fix: the fleet README still described September 25 as the day the browser "loaded with no records"; without app/data.js it never leaves "Loading recipes..." (#204). Closes #204. Co-Authored-By: Claude Opus 5.5 (1M context) --- _fleet/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_fleet/README.md b/_fleet/README.md index 5ef19e3..e37b489 100644 --- a/_fleet/README.md +++ b/_fleet/README.md @@ -191,7 +191,7 @@ deployed by CultureMech's generate-pages workflow through GitHub Actions, while the site's Pages source is set to branch builds; a push to `main` outside the workflow's paths triggers a branch build that replaces the deployment. So all three appear and disappear: live on September 24, gone on September 25, when the -browser loaded with no records (#175, #182). The fix is upstream, setting the +browser never finished loading (#175, #182, #204). The fix is upstream, setting the Pages source to GitHub Actions (#172). `check_cards.py` therefore reads the committed README on `main`. From e115229f36e4d72d67369d0b6f3b70f8aec46036 Mon Sep 17 00:00:00 2001 From: "marcin p. joachimiak" <4625870+realmarcin@users.noreply.github.com> Date: Fri, 25 Sep 2026 12:51:43 -0700 Subject: [PATCH 15/16] Let the README parser survive a wrap inside the label, and name the README exception everywhere From the Codex review of the #175 fix. The text parser collapsed no whitespace, so a formatting-only wrap between "merged" and "records" in CultureMech's README returned None; whitespace now collapses before matching, with a test for a wrap inside the label (#207). _fleet/README.md and the review skill's general descriptions of the card sources now name CultureMech's README exception (#208). Closes #207. Closes #208. Co-Authored-By: Claude Opus 5.5 (1M context) --- .claude/skills/review-open-issues/SKILL.md | 3 ++- _fleet/README.md | 3 ++- scripts/fleet/check_cards.py | 6 +++++- tests/test_fleet_page.py | 2 ++ 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.claude/skills/review-open-issues/SKILL.md b/.claude/skills/review-open-issues/SKILL.md index 20ec365..6084fce 100644 --- a/.claude/skills/review-open-issues/SKILL.md +++ b/.claude/skills/review-open-issues/SKILL.md @@ -137,7 +137,8 @@ Mech checkouts (MECHS_ROOT) + CLAW fleet manifest Alongside it runs a **hand-curated layer**: the card headline numbers in `_fleet/mechs_template.md` and the `MECHS` / `XREFS` / `HUB` blocks in -`_fleet/fleet_fragment.html`, each taken from a Mech's published site. The +`_fleet/fleet_fragment.html`, each taken from a Mech's published site (CultureMech's +card figure from its committed README instead, #175). The records tile sums the cards by construction. A fault in the hand-curated layer is invisible to the pipeline and vice versa; say which layer an issue is in. diff --git a/_fleet/README.md b/_fleet/README.md index e37b489..f5bce7d 100644 --- a/_fleet/README.md +++ b/_fleet/README.md @@ -29,7 +29,8 @@ a manifest member from the cards or graph. Its capability table and badges must never be maintained by hand. The rendered page links to the source revision. The card headline figures are hand-curated from each Mech's published browser, -so nothing regenerates them. `scripts/fleet/check_cards.py` compares each card +except CultureMech's, which comes from its committed README (see below), so +nothing regenerates them. `scripts/fleet/check_cards.py` compares each card against the page it cites and is the one script here that needs the network: ```bash diff --git a/scripts/fleet/check_cards.py b/scripts/fleet/check_cards.py index 3c0f6c0..ab8e3fd 100644 --- a/scripts/fleet/check_cards.py +++ b/scripts/fleet/check_cards.py @@ -100,7 +100,11 @@ def published(kind: str, body: str, selector: str) -> int | None: # number and the words it belongs to cannot hide the pairing. # Markdown emphasis goes too: a README may bold the number alone. prose = re.sub(r"[*_]", "", re.sub(r"<[^>]+>", " ", body)) - hit = re.search(r"([\d,]+)\s+" + re.escape(selector), prose) + # Whitespace runs collapse, so a line wrapped inside the label still + # matches (#207). + prose = re.sub(r"\s+", " ", prose) + label = re.escape(" ".join(selector.split())).replace(r"\ ", " ") + hit = re.search(r"([\d,]+) " + label, prose) return int(hit.group(1).replace(",", "")) if hit else None hit = re.search(r"([\d,]+)\s*\s*" + re.escape(selector), body) return int(hit.group(1).replace(",", "")) if hit else None diff --git a/tests/test_fleet_page.py b/tests/test_fleet_page.py index d4fcb48..6b02746 100644 --- a/tests/test_fleet_page.py +++ b/tests/test_fleet_page.py @@ -420,6 +420,8 @@ def test_culturemech_is_read_from_its_committed_readme(self): # The number alone in bold, or the line wrapped, must still read. self.assertEqual(check_cards.published(kind, "and **6,288** merged records.", selector), 6288) self.assertEqual(check_cards.published(kind, "and 6,288\nmerged records.", selector), 6288) + # A wrap inside the label too (#207). + self.assertEqual(check_cards.published(kind, "and 6,288 merged\n records.", selector), 6288) def test_a_relative_source_is_read_from_the_pages_host(self): import check_cards From 8cdea9a3d9bc6c86faf2c84dc8bf26e276fa1c8b Mon Sep 17 00:00:00 2001 From: "marcin p. joachimiak" <4625870+realmarcin@users.noreply.github.com> Date: Fri, 25 Sep 2026 12:59:11 -0700 Subject: [PATCH 16/16] Name CultureMech's README exception in the remaining general statements Verification review of e115229: the fleet README's census paragraph, the check_cards.py docstring and assemble_page.py's fleet_records docstring still said every card follows a published site; the review skill now says the README figure is on the card and in MECHS (#211). Closes #211. Co-Authored-By: Claude Opus 5.5 (1M context) --- .claude/skills/review-open-issues/SKILL.md | 2 +- _fleet/README.md | 4 ++-- scripts/fleet/assemble_page.py | 3 ++- scripts/fleet/check_cards.py | 3 ++- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.claude/skills/review-open-issues/SKILL.md b/.claude/skills/review-open-issues/SKILL.md index 6084fce..abf3607 100644 --- a/.claude/skills/review-open-issues/SKILL.md +++ b/.claude/skills/review-open-issues/SKILL.md @@ -138,7 +138,7 @@ Mech checkouts (MECHS_ROOT) + CLAW fleet manifest Alongside it runs a **hand-curated layer**: the card headline numbers in `_fleet/mechs_template.md` and the `MECHS` / `XREFS` / `HUB` blocks in `_fleet/fleet_fragment.html`, each taken from a Mech's published site (CultureMech's -card figure from its committed README instead, #175). The +figure, on its card and in `MECHS`, from its committed README instead, #175). The records tile sums the cards by construction. A fault in the hand-curated layer is invisible to the pipeline and vice versa; say which layer an issue is in. diff --git a/_fleet/README.md b/_fleet/README.md index f5bce7d..cf07cb5 100644 --- a/_fleet/README.md +++ b/_fleet/README.md @@ -172,8 +172,8 @@ JavaScript-backed headline counts from the data files they load: MIM uses uses `data/facets.json` (429,293 records; 34 source labels). The latter's static HTML still has a legacy fallback count. -Card figures follow the published sites, and the census follows the pinned -repositories. At this refresh they agree for every Mech except CommunityMech: +Card figures follow the published sites, CultureMech's its committed README +instead, and the census follows the pinned repositories. At this refresh they agree for every Mech except CommunityMech: its site lists 422 communities, while its record glob also takes four isolate records, so the census and `mech_stats.json` count 426. CellStructureMech and TraitMech published new records after the pins were taken; their cards keep the diff --git a/scripts/fleet/assemble_page.py b/scripts/fleet/assemble_page.py index b35391a..be60cfd 100644 --- a/scripts/fleet/assemble_page.py +++ b/scripts/fleet/assemble_page.py @@ -61,7 +61,8 @@ def fleet_records(template): 1,059,170, short by roughly the whole of TaxonMech, which was admitted after the tile was last edited (CultureBotAI.github.io#76). Summing the cards keeps the two true to each other by construction, and it is the - right source because the cards cite each Mech's published browser, which + right source because the cards cite each Mech's published browser (or, for + CultureMech, its committed README), which the record-corpus census does not measure the same way. The ten are not ten counts of the same thing: the cards call theirs taxon diff --git a/scripts/fleet/check_cards.py b/scripts/fleet/check_cards.py index ab8e3fd..cf8c064 100644 --- a/scripts/fleet/check_cards.py +++ b/scripts/fleet/check_cards.py @@ -4,7 +4,8 @@ the only script here that needs the network. The card numbers in _fleet/mechs_template.md are hand-curated from each Mech's -published browser, so nothing regenerates them and nothing noticed when they +published browser (CultureMech's from its committed README; see SOURCES), so +nothing regenerates them and nothing noticed when they went stale — two of six had drifted within two days of a refresh (CultureBotAI.github.io#104). This reports that, and is meant to run on the nightly schedule rather than on a pull request: the corpora move fast enough